
    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_c00000 {
    display:none;
  }
  .loading-indicator_c00000.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00000 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_c00000 { 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_c00000" -> "#page-container .classname_c00000")
 */
.pf_c00000 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00000 { /* 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_c00000.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00000 { /* 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_c00000 { /* 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_c00000 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00000 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00000 {overflow:visible;}
  }
}
.c_c00000 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00000 { /* 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_c00000:after { /* webkit #35443 */
  content: '';
}
.t_c00000:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00000 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 */
}
.__c00000 { /* 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_c00000 { /* info for Javascript */
  display:none;
}
.l_c00000 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00000 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00000 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00000: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_c00000 {
    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_c00000.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00000.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_c00000 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00000{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00000;src:url('chunks/assets/font_b11a17f404e7258299fdf971.woff2')format("woff");}.ff1_c00000{font-family:ff1_c00000;line-height:1.000000;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;}
.ma_c00000{transform:matrix(0.196455,0.001375,-0.001750,0.249994,0,0);-ms-transform:matrix(0.196455,0.001375,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.196455,0.001375,-0.001750,0.249994,0,0);}
.m18_c00000{transform:matrix(0.241465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241465,0.000000,0.000000,0.250000,0,0);}
.m23_c00000{transform:matrix(0.243705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243705,0.000000,0.000000,0.250000,0,0);}
.m17_c00000{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m32_c00000{transform:matrix(0.245590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245590,0.000000,0.000000,0.250000,0,0);}
.me_c00000{transform:matrix(0.249014,0.001743,-0.001750,0.249994,0,0);-ms-transform:matrix(0.249014,0.001743,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.249014,0.001743,-0.001750,0.249994,0,0);}
.m6_c00000{transform:matrix(0.253789,0.001777,-0.001750,0.249994,0,0);-ms-transform:matrix(0.253789,0.001777,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.253789,0.001777,-0.001750,0.249994,0,0);}
.m34_c00000{transform:matrix(0.256325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256325,0.000000,0.000000,0.250000,0,0);}
.m1e_c00000{transform:matrix(0.256670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256670,0.000000,0.000000,0.250000,0,0);}
.m12_c00000{transform:matrix(0.256824,0.001798,-0.001750,0.249994,0,0);-ms-transform:matrix(0.256824,0.001798,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.256824,0.001798,-0.001750,0.249994,0,0);}
.m21_c00000{transform:matrix(0.257020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257020,0.000000,0.000000,0.250000,0,0);}
.m4_c00000{transform:matrix(0.259819,0.001819,-0.001750,0.249994,0,0);-ms-transform:matrix(0.259819,0.001819,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.259819,0.001819,-0.001750,0.249994,0,0);}
.m28_c00000{transform:matrix(0.261010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261010,0.000000,0.000000,0.250000,0,0);}
.m16_c00000{transform:matrix(0.264495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264495,0.000000,0.000000,0.250000,0,0);}
.m33_c00000{transform:matrix(0.266740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266740,0.000000,0.000000,0.250000,0,0);}
.m11_c00000{transform:matrix(0.268658,0.001881,-0.001750,0.249994,0,0);-ms-transform:matrix(0.268658,0.001881,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.268658,0.001881,-0.001750,0.249994,0,0);}
.m8_c00000{transform:matrix(0.272463,0.001907,-0.001750,0.249994,0,0);-ms-transform:matrix(0.272463,0.001907,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.272463,0.001907,-0.001750,0.249994,0,0);}
.mf_c00000{transform:matrix(0.272718,0.001909,-0.001750,0.249994,0,0);-ms-transform:matrix(0.272718,0.001909,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.272718,0.001909,-0.001750,0.249994,0,0);}
.m15_c00000{transform:matrix(0.283925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283925,0.000000,0.000000,0.250000,0,0);}
.m1d_c00000{transform:matrix(0.285010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285010,0.000000,0.000000,0.250000,0,0);}
.m1_c00000{transform:matrix(0.285458,0.001998,-0.001750,0.249994,0,0);-ms-transform:matrix(0.285458,0.001998,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.285458,0.001998,-0.001750,0.249994,0,0);}
.m30_c00000{transform:matrix(0.287165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287165,0.000000,0.000000,0.250000,0,0);}
.m20_c00000{transform:matrix(0.287715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287715,0.000000,0.000000,0.250000,0,0);}
.m31_c00000{transform:matrix(0.288540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288540,0.000000,0.000000,0.250000,0,0);}
.m24_c00000{transform:matrix(0.290955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290955,0.000000,0.000000,0.250000,0,0);}
.m1c_c00000{transform:matrix(0.291075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291075,0.000000,0.000000,0.250000,0,0);}
.m14_c00000{transform:matrix(0.291370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291370,0.000000,0.000000,0.250000,0,0);}
.m25_c00000{transform:matrix(0.291815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291815,0.000000,0.000000,0.250000,0,0);}
.m3_c00000{transform:matrix(0.298718,0.002091,-0.001750,0.249994,0,0);-ms-transform:matrix(0.298718,0.002091,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.298718,0.002091,-0.001750,0.249994,0,0);}
.m22_c00000{transform:matrix(0.298915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298915,0.000000,0.000000,0.250000,0,0);}
.m1f_c00000{transform:matrix(0.299655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299655,0.000000,0.000000,0.250000,0,0);}
.m19_c00000{transform:matrix(0.300560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300560,0.000000,0.000000,0.250000,0,0);}
.m2e_c00000{transform:matrix(0.301540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301540,0.000000,0.000000,0.250000,0,0);}
.m2_c00000{transform:matrix(0.304568,0.002132,-0.001750,0.249994,0,0);-ms-transform:matrix(0.304568,0.002132,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.304568,0.002132,-0.001750,0.249994,0,0);}
.m1a_c00000{transform:matrix(0.305290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305290,0.000000,0.000000,0.250000,0,0);}
.mc_c00000{transform:matrix(0.314572,0.002202,-0.001750,0.249994,0,0);-ms-transform:matrix(0.314572,0.002202,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.314572,0.002202,-0.001750,0.249994,0,0);}
.m1b_c00000{transform:matrix(0.315770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315770,0.000000,0.000000,0.250000,0,0);}
.m7_c00000{transform:matrix(0.319397,0.002236,-0.001750,0.249994,0,0);-ms-transform:matrix(0.319397,0.002236,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.319397,0.002236,-0.001750,0.249994,0,0);}
.m5_c00000{transform:matrix(0.321447,0.002250,-0.001750,0.249994,0,0);-ms-transform:matrix(0.321447,0.002250,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.321447,0.002250,-0.001750,0.249994,0,0);}
.mb_c00000{transform:matrix(0.322592,0.002258,-0.001750,0.249994,0,0);-ms-transform:matrix(0.322592,0.002258,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.322592,0.002258,-0.001750,0.249994,0,0);}
.md_c00000{transform:matrix(0.324842,0.002274,-0.001750,0.249994,0,0);-ms-transform:matrix(0.324842,0.002274,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.324842,0.002274,-0.001750,0.249994,0,0);}
.m13_c00000{transform:matrix(0.325580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325580,0.000000,0.000000,0.250000,0,0);}
.m27_c00000{transform:matrix(0.330415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330415,0.000000,0.000000,0.250000,0,0);}
.m10_c00000{transform:matrix(0.330872,0.002316,-0.001750,0.249994,0,0);-ms-transform:matrix(0.330872,0.002316,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.330872,0.002316,-0.001750,0.249994,0,0);}
.m2c_c00000{transform:matrix(0.333475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333475,0.000000,0.000000,0.250000,0,0);}
.m2b_c00000{transform:matrix(0.334800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334800,0.000000,0.000000,0.250000,0,0);}
.m2d_c00000{transform:matrix(0.347935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347935,0.000000,0.000000,0.250000,0,0);}
.m26_c00000{transform:matrix(0.362665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362665,0.000000,0.000000,0.250000,0,0);}
.m2f_c00000{transform:matrix(0.370255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370255,0.000000,0.000000,0.250000,0,0);}
.m29_c00000{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00000{transform:matrix(0.667085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667085,0.000000,0.000000,0.250000,0,0);}
.m0_c00000{transform:matrix(0.773436,0.005414,-0.001750,0.249994,0,0);-ms-transform:matrix(0.773436,0.005414,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.773436,0.005414,-0.001750,0.249994,0,0);}
.m9_c00000{transform:matrix(0.875759,0.006130,-0.001750,0.249994,0,0);-ms-transform:matrix(0.875759,0.006130,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.875759,0.006130,-0.001750,0.249994,0,0);}
.v0_c00000{vertical-align:0.000000px;}
.ls0_c00000{letter-spacing:0.000000px;}
.sc__c00000{text-shadow:none;}
.sc0_c00000{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__c00000{-webkit-text-stroke:0px transparent;}
.sc0_c00000{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00000{word-spacing:0.000000px;}
.fc0_c00000{color:transparent;}
.fs6_c00000{font-size:18.000000px;}
.fs7_c00000{font-size:36.000000px;}
.fs5_c00000{font-size:54.000000px;}
.fs2_c00000{font-size:60.000000px;}
.fs0_c00000{font-size:60.001470px;}
.fs4_c00000{font-size:66.000000px;}
.fs3_c00000{font-size:72.000000px;}
.fs1_c00000{font-size:72.001764px;}
.y0_c00000{bottom:0.000000px;}
.y1f_c00000{bottom:286.095000px;}
.y1e_c00000{bottom:314.820000px;}
.y1d_c00000{bottom:317.757000px;}
.y1c_c00000{bottom:319.057500px;}
.y1b_c00000{bottom:351.427500px;}
.y1a_c00000{bottom:382.407000px;}
.y19_c00000{bottom:415.417500px;}
.y18_c00000{bottom:448.056000px;}
.y17_c00000{bottom:480.121500px;}
.y16_c00000{bottom:512.896500px;}
.y15_c00000{bottom:543.877500px;}
.y14_c00000{bottom:606.947089px;}
.y13_c00000{bottom:627.050393px;}
.y12_c00000{bottom:627.712413px;}
.y11_c00000{bottom:627.913773px;}
.y10_c00000{bottom:628.043973px;}
.yf_c00000{bottom:628.237794px;}
.ye_c00000{bottom:628.899825px;}
.yd_c00000{bottom:629.506711px;}
.yc_c00000{bottom:630.036126px;}
.yb_c00000{bottom:630.136806px;}
.ya_c00000{bottom:631.261249px;}
.y9_c00000{bottom:648.610537px;}
.y8_c00000{bottom:649.222908px;}
.y7_c00000{bottom:649.451587px;}
.y6_c00000{bottom:650.147139px;}
.y5_c00000{bottom:650.390938px;}
.y4_c00000{bottom:650.850219px;}
.y3_c00000{bottom:651.318939px;}
.y2_c00000{bottom:651.636469px;}
.y1_c00000{bottom:652.332000px;}
.h8_c00000{height:18.000000px;}
.h9_c00000{height:36.000000px;}
.h7_c00000{height:54.000000px;}
.h4_c00000{height:60.000000px;}
.h2_c00000{height:60.001470px;}
.h6_c00000{height:66.000000px;}
.h5_c00000{height:72.000000px;}
.h3_c00000{height:72.001764px;}
.h0_c00000{height:775.170000px;}
.h1_c00000{height:775.500000px;}
.w0_c00000{width:967.350000px;}
.w1_c00000{width:967.500000px;}
.x0_c00000{left:0.000000px;}
.xa_c00000{left:105.998205px;}
.x2b_c00000{left:241.110000px;}
.x1d_c00000{left:242.190000px;}
.x15_c00000{left:243.270000px;}
.x26_c00000{left:244.620000px;}
.x22_c00000{left:246.780000px;}
.x1_c00000{left:265.332000px;}
.xb_c00000{left:293.420017px;}
.x23_c00000{left:297.540000px;}
.x19_c00000{left:298.890000px;}
.x2c_c00000{left:307.260000px;}
.xc_c00000{left:310.160133px;}
.x27_c00000{left:321.300000px;}
.x1b_c00000{left:330.750000px;}
.x25_c00000{left:335.610000px;}
.x1e_c00000{left:341.820000px;}
.x16_c00000{left:353.430000px;}
.x2_c00000{left:364.693500px;}
.x20_c00000{left:375.300000px;}
.x18_c00000{left:388.260000px;}
.x1a_c00000{left:389.340000px;}
.xd_c00000{left:398.434252px;}
.x3_c00000{left:410.055000px;}
.x24_c00000{left:420.390000px;}
.x17_c00000{left:421.740000px;}
.x28_c00000{left:430.920000px;}
.x1c_c00000{left:432.000000px;}
.x1f_c00000{left:453.870000px;}
.x14_c00000{left:455.225125px;}
.x4_c00000{left:477.015000px;}
.x21_c00000{left:497.880000px;}
.xe_c00000{left:499.704466px;}
.x29_c00000{left:518.400000px;}
.x2a_c00000{left:540.540000px;}
.x5_c00000{left:542.626500px;}
.x6_c00000{left:577.455000px;}
.xf_c00000{left:610.138244px;}
.x10_c00000{left:642.541474px;}
.x11_c00000{left:664.141621px;}
.x7_c00000{left:676.819500px;}
.x12_c00000{left:697.621852px;}
.x8_c00000{left:709.488000px;}
.x9_c00000{left:796.969500px;}
.x13_c00000{left:808.054129px;}
@media print{
.v0_c00000{vertical-align:0.000000pt;}
.ls0_c00000{letter-spacing:0.000000pt;}
.ws0_c00000{word-spacing:0.000000pt;}
.fs6_c00000{font-size:16.000000pt;}
.fs7_c00000{font-size:32.000000pt;}
.fs5_c00000{font-size:48.000000pt;}
.fs2_c00000{font-size:53.333333pt;}
.fs0_c00000{font-size:53.334640pt;}
.fs4_c00000{font-size:58.666667pt;}
.fs3_c00000{font-size:64.000000pt;}
.fs1_c00000{font-size:64.001568pt;}
.y0_c00000{bottom:0.000000pt;}
.y1f_c00000{bottom:254.306667pt;}
.y1e_c00000{bottom:279.840000pt;}
.y1d_c00000{bottom:282.450667pt;}
.y1c_c00000{bottom:283.606667pt;}
.y1b_c00000{bottom:312.380000pt;}
.y1a_c00000{bottom:339.917333pt;}
.y19_c00000{bottom:369.260000pt;}
.y18_c00000{bottom:398.272000pt;}
.y17_c00000{bottom:426.774667pt;}
.y16_c00000{bottom:455.908000pt;}
.y15_c00000{bottom:483.446667pt;}
.y14_c00000{bottom:539.508524pt;}
.y13_c00000{bottom:557.378127pt;}
.y12_c00000{bottom:557.966589pt;}
.y11_c00000{bottom:558.145576pt;}
.y10_c00000{bottom:558.261309pt;}
.yf_c00000{bottom:558.433595pt;}
.ye_c00000{bottom:559.022067pt;}
.yd_c00000{bottom:559.561521pt;}
.yc_c00000{bottom:560.032112pt;}
.yb_c00000{bottom:560.121605pt;}
.ya_c00000{bottom:561.121111pt;}
.y9_c00000{bottom:576.542700pt;}
.y8_c00000{bottom:577.087029pt;}
.y7_c00000{bottom:577.290300pt;}
.y6_c00000{bottom:577.908568pt;}
.y5_c00000{bottom:578.125279pt;}
.y4_c00000{bottom:578.533528pt;}
.y3_c00000{bottom:578.950168pt;}
.y2_c00000{bottom:579.232417pt;}
.y1_c00000{bottom:579.850667pt;}
.h8_c00000{height:16.000000pt;}
.h9_c00000{height:32.000000pt;}
.h7_c00000{height:48.000000pt;}
.h4_c00000{height:53.333333pt;}
.h2_c00000{height:53.334640pt;}
.h6_c00000{height:58.666667pt;}
.h5_c00000{height:64.000000pt;}
.h3_c00000{height:64.001568pt;}
.h0_c00000{height:689.040000pt;}
.h1_c00000{height:689.333333pt;}
.w0_c00000{width:859.866667pt;}
.w1_c00000{width:860.000000pt;}
.x0_c00000{left:0.000000pt;}
.xa_c00000{left:94.220627pt;}
.x2b_c00000{left:214.320000pt;}
.x1d_c00000{left:215.280000pt;}
.x15_c00000{left:216.240000pt;}
.x26_c00000{left:217.440000pt;}
.x22_c00000{left:219.360000pt;}
.x1_c00000{left:235.850667pt;}
.xb_c00000{left:260.817793pt;}
.x23_c00000{left:264.480000pt;}
.x19_c00000{left:265.680000pt;}
.x2c_c00000{left:273.120000pt;}
.xc_c00000{left:275.697896pt;}
.x27_c00000{left:285.600000pt;}
.x1b_c00000{left:294.000000pt;}
.x25_c00000{left:298.320000pt;}
.x1e_c00000{left:303.840000pt;}
.x16_c00000{left:314.160000pt;}
.x2_c00000{left:324.172000pt;}
.x20_c00000{left:333.600000pt;}
.x18_c00000{left:345.120000pt;}
.x1a_c00000{left:346.080000pt;}
.xd_c00000{left:354.163780pt;}
.x3_c00000{left:364.493333pt;}
.x24_c00000{left:373.680000pt;}
.x17_c00000{left:374.880000pt;}
.x28_c00000{left:383.040000pt;}
.x1c_c00000{left:384.000000pt;}
.x1f_c00000{left:403.440000pt;}
.x14_c00000{left:404.644556pt;}
.x4_c00000{left:424.013333pt;}
.x21_c00000{left:442.560000pt;}
.xe_c00000{left:444.181748pt;}
.x29_c00000{left:460.800000pt;}
.x2a_c00000{left:480.480000pt;}
.x5_c00000{left:482.334667pt;}
.x6_c00000{left:513.293333pt;}
.xf_c00000{left:542.345105pt;}
.x10_c00000{left:571.147977pt;}
.x11_c00000{left:590.348108pt;}
.x7_c00000{left:601.617333pt;}
.x12_c00000{left:620.108313pt;}
.x8_c00000{left:630.656000pt;}
.x9_c00000{left:708.417333pt;}
.x13_c00000{left:718.270337pt;}
}





/* 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_c00001 {
    display:none;
  }
  .loading-indicator_c00001.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00001 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_c00001 { 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_c00001" -> "#page-container .classname_c00001")
 */
.pf_c00001 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00001 { /* 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_c00001.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00001 { /* 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_c00001 { /* 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_c00001 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00001 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00001 {overflow:visible;}
  }
}
.c_c00001 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00001 { /* 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_c00001:after { /* webkit #35443 */
  content: '';
}
.t_c00001:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00001 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 */
}
.__c00001 { /* 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_c00001 { /* info for Javascript */
  display:none;
}
.l_c00001 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00001 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00001 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00001: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_c00001 {
    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_c00001.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00001.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_c00001 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00001{font-family:sans-serif;visibility:hidden;}
.sc__c00001{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00001{-webkit-text-stroke:0px transparent;}
}
.y0_c00001{bottom:0.000000px;}
.h1_c00001{height:1028.250000px;}
.h0_c00001{height:1028.400000px;}
.w0_c00001{width:992.250000px;}
.x0_c00001{left:0.000000px;}
@media print{
.y0_c00001{bottom:0.000000pt;}
.h1_c00001{height:914.000000pt;}
.h0_c00001{height:914.133333pt;}
.w0_c00001{width:882.000000pt;}
.x0_c00001{left:0.000000pt;}
}





/* 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_c00002 {
    display:none;
  }
  .loading-indicator_c00002.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00002 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_c00002 { 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_c00002" -> "#page-container .classname_c00002")
 */
.pf_c00002 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00002 { /* 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_c00002.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00002 { /* 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_c00002 { /* 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_c00002 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00002 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00002 {overflow:visible;}
  }
}
.c_c00002 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00002 { /* 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_c00002:after { /* webkit #35443 */
  content: '';
}
.t_c00002:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00002 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 */
}
.__c00002 { /* 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_c00002 { /* info for Javascript */
  display:none;
}
.l_c00002 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00002 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00002 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00002: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_c00002 {
    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_c00002.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00002.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_c00002 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00002{font-family:sans-serif;visibility:hidden;}
.sc__c00002{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00002{-webkit-text-stroke:0px transparent;}
}
.y0_c00002{bottom:0.000000px;}
.h1_c00002{height:760.500000px;}
.h0_c00002{height:760.590000px;}
.w0_c00002{width:1028.100000px;}
.w1_c00002{width:1028.250000px;}
.x0_c00002{left:0.000000px;}
@media print{
.y0_c00002{bottom:0.000000pt;}
.h1_c00002{height:676.000000pt;}
.h0_c00002{height:676.080000pt;}
.w0_c00002{width:913.866667pt;}
.w1_c00002{width:914.000000pt;}
.x0_c00002{left:0.000000pt;}
}





/* 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_c00003 {
    display:none;
  }
  .loading-indicator_c00003.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00003 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_c00003 { 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_c00003" -> "#page-container .classname_c00003")
 */
.pf_c00003 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00003 { /* 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_c00003.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00003 { /* 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_c00003 { /* 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_c00003 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00003 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00003 {overflow:visible;}
  }
}
.c_c00003 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00003 { /* 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_c00003:after { /* webkit #35443 */
  content: '';
}
.t_c00003:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00003 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 */
}
.__c00003 { /* 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_c00003 { /* info for Javascript */
  display:none;
}
.l_c00003 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00003 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00003 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00003: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_c00003 {
    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_c00003.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00003.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_c00003 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00003{font-family:sans-serif;visibility:hidden;}
.sc__c00003{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00003{-webkit-text-stroke:0px transparent;}
}
.y0_c00003{bottom:0.000000px;}
.h1_c00003{height:693.750000px;}
.h0_c00003{height:693.900000px;}
.w1_c00003{width:950.250000px;}
.w0_c00003{width:950.400000px;}
.x0_c00003{left:0.000000px;}
@media print{
.y0_c00003{bottom:0.000000pt;}
.h1_c00003{height:616.666667pt;}
.h0_c00003{height:616.800000pt;}
.w1_c00003{width:844.666667pt;}
.w0_c00003{width:844.800000pt;}
.x0_c00003{left:0.000000pt;}
}





/* 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_c00004 {
    display:none;
  }
  .loading-indicator_c00004.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00004 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_c00004 { 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_c00004" -> "#page-container .classname_c00004")
 */
.pf_c00004 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00004 { /* 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_c00004.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00004 { /* 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_c00004 { /* 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_c00004 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00004 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00004 {overflow:visible;}
  }
}
.c_c00004 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00004 { /* 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_c00004:after { /* webkit #35443 */
  content: '';
}
.t_c00004:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00004 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 */
}
.__c00004 { /* 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_c00004 { /* info for Javascript */
  display:none;
}
.l_c00004 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00004 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00004 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00004: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_c00004 {
    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_c00004.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00004.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_c00004 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00004{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00004;src:url('chunks/assets/font_cfe63ee56e9e10a97d33a3db.woff2')format("woff");}.ff1_c00004{font-family:ff1_c00004;line-height:1.000000;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;}
.m1e_c00004{transform:matrix(0.012729,0.000191,-0.003750,0.249972,0,0);-ms-transform:matrix(0.012729,0.000191,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.012729,0.000191,-0.003750,0.249972,0,0);}
.m13_c00004{transform:matrix(0.017670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.017670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.017670,0.000000,0.000000,0.250000,0,0);}
.m32_c00004{transform:matrix(0.020280,-0.000142,0.001750,0.249994,0,0);-ms-transform:matrix(0.020280,-0.000142,0.001750,0.249994,0,0);-webkit-transform:matrix(0.020280,-0.000142,0.001750,0.249994,0,0);}
.m1d_c00004{transform:matrix(0.024182,0.000363,-0.003750,0.249972,0,0);-ms-transform:matrix(0.024182,0.000363,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.024182,0.000363,-0.003750,0.249972,0,0);}
.m14_c00004{transform:matrix(0.027275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.027275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.027275,0.000000,0.000000,0.250000,0,0);}
.m2f_c00004{transform:matrix(0.039774,-0.000278,0.001750,0.249994,0,0);-ms-transform:matrix(0.039774,-0.000278,0.001750,0.249994,0,0);-webkit-transform:matrix(0.039774,-0.000278,0.001750,0.249994,0,0);}
.m4_c00004{transform:matrix(0.080550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080550,0.000000,0.000000,0.250000,0,0);}
.m3a_c00004{transform:matrix(0.091473,-0.000640,0.001750,0.249994,0,0);-ms-transform:matrix(0.091473,-0.000640,0.001750,0.249994,0,0);-webkit-transform:matrix(0.091473,-0.000640,0.001750,0.249994,0,0);}
.m9_c00004{transform:matrix(0.144465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144465,0.000000,0.000000,0.250000,0,0);}
.m1_c00004{transform:matrix(0.162790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162790,0.000000,0.000000,0.250000,0,0);}
.m20_c00004{transform:matrix(0.163097,0.002446,-0.003750,0.249972,0,0);-ms-transform:matrix(0.163097,0.002446,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.163097,0.002446,-0.003750,0.249972,0,0);}
.m11_c00004{transform:matrix(0.163645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163645,0.000000,0.000000,0.250000,0,0);}
.m28_c00004{transform:matrix(0.167006,-0.001169,0.001750,0.249994,0,0);-ms-transform:matrix(0.167006,-0.001169,0.001750,0.249994,0,0);-webkit-transform:matrix(0.167006,-0.001169,0.001750,0.249994,0,0);}
.m8_c00004{transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);}
.m1f_c00004{transform:matrix(0.170736,0.002561,-0.003750,0.249972,0,0);-ms-transform:matrix(0.170736,0.002561,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.170736,0.002561,-0.003750,0.249972,0,0);}
.m2b_c00004{transform:matrix(0.176671,-0.001237,0.001750,0.249994,0,0);-ms-transform:matrix(0.176671,-0.001237,0.001750,0.249994,0,0);-webkit-transform:matrix(0.176671,-0.001237,0.001750,0.249994,0,0);}
.m42_c00004{transform:matrix(0.204750,-0.001433,0.001750,0.249994,0,0);-ms-transform:matrix(0.204750,-0.001433,0.001750,0.249994,0,0);-webkit-transform:matrix(0.204750,-0.001433,0.001750,0.249994,0,0);}
.m2c_c00004{transform:matrix(0.212390,-0.001487,0.001750,0.249994,0,0);-ms-transform:matrix(0.212390,-0.001487,0.001750,0.249994,0,0);-webkit-transform:matrix(0.212390,-0.001487,0.001750,0.249994,0,0);}
.m23_c00004{transform:matrix(0.220470,0.003307,-0.003750,0.249972,0,0);-ms-transform:matrix(0.220470,0.003307,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.220470,0.003307,-0.003750,0.249972,0,0);}
.m1a_c00004{transform:matrix(0.221245,0.003319,-0.003750,0.249972,0,0);-ms-transform:matrix(0.221245,0.003319,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.221245,0.003319,-0.003750,0.249972,0,0);}
.m15_c00004{transform:matrix(0.221360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221360,0.000000,0.000000,0.250000,0,0);}
.m21_c00004{transform:matrix(0.240758,0.003611,-0.003750,0.249972,0,0);-ms-transform:matrix(0.240758,0.003611,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.240758,0.003611,-0.003750,0.249972,0,0);}
.m27_c00004{transform:matrix(0.248089,-0.001737,0.001750,0.249994,0,0);-ms-transform:matrix(0.248089,-0.001737,0.001750,0.249994,0,0);-webkit-transform:matrix(0.248089,-0.001737,0.001750,0.249994,0,0);}
.md_c00004{transform:matrix(0.248395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248395,0.000000,0.000000,0.250000,0,0);}
.m10_c00004{transform:matrix(0.250385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250385,0.000000,0.000000,0.250000,0,0);}
.mf_c00004{transform:matrix(0.253010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253010,0.000000,0.000000,0.250000,0,0);}
.m41_c00004{transform:matrix(0.263589,-0.001845,0.001750,0.249994,0,0);-ms-transform:matrix(0.263589,-0.001845,0.001750,0.249994,0,0);-webkit-transform:matrix(0.263589,-0.001845,0.001750,0.249994,0,0);}
.ma_c00004{transform:matrix(0.265055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265055,0.000000,0.000000,0.250000,0,0);}
.m26_c00004{transform:matrix(0.275858,-0.001931,0.001750,0.249994,0,0);-ms-transform:matrix(0.275858,-0.001931,0.001750,0.249994,0,0);-webkit-transform:matrix(0.275858,-0.001931,0.001750,0.249994,0,0);}
.mc_c00004{transform:matrix(0.282600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282600,0.000000,0.000000,0.250000,0,0);}
.m12_c00004{transform:matrix(0.291335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291335,0.000000,0.000000,0.250000,0,0);}
.mb_c00004{transform:matrix(0.294455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294455,0.000000,0.000000,0.250000,0,0);}
.m2a_c00004{transform:matrix(0.303708,-0.002126,0.001750,0.249994,0,0);-ms-transform:matrix(0.303708,-0.002126,0.001750,0.249994,0,0);-webkit-transform:matrix(0.303708,-0.002126,0.001750,0.249994,0,0);}
.m6_c00004{transform:matrix(0.307835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307835,0.000000,0.000000,0.250000,0,0);}
.m1c_c00004{transform:matrix(0.315974,0.004740,-0.003750,0.249972,0,0);-ms-transform:matrix(0.315974,0.004740,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.315974,0.004740,-0.003750,0.249972,0,0);}
.m17_c00004{transform:matrix(0.322434,0.004837,-0.003750,0.249972,0,0);-ms-transform:matrix(0.322434,0.004837,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.322434,0.004837,-0.003750,0.249972,0,0);}
.m3b_c00004{transform:matrix(0.326262,-0.002284,0.001750,0.249994,0,0);-ms-transform:matrix(0.326262,-0.002284,0.001750,0.249994,0,0);-webkit-transform:matrix(0.326262,-0.002284,0.001750,0.249994,0,0);}
.m0_c00004{transform:matrix(0.327565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327565,0.000000,0.000000,0.250000,0,0);}
.m3d_c00004{transform:matrix(0.336092,-0.002353,0.001750,0.249994,0,0);-ms-transform:matrix(0.336092,-0.002353,0.001750,0.249994,0,0);-webkit-transform:matrix(0.336092,-0.002353,0.001750,0.249994,0,0);}
.m19_c00004{transform:matrix(0.346386,0.005196,-0.003750,0.249972,0,0);-ms-transform:matrix(0.346386,0.005196,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.346386,0.005196,-0.003750,0.249972,0,0);}
.m29_c00004{transform:matrix(0.350576,-0.002454,0.001750,0.249994,0,0);-ms-transform:matrix(0.350576,-0.002454,0.001750,0.249994,0,0);-webkit-transform:matrix(0.350576,-0.002454,0.001750,0.249994,0,0);}
.m37_c00004{transform:matrix(0.364291,-0.002550,0.001750,0.249994,0,0);-ms-transform:matrix(0.364291,-0.002550,0.001750,0.249994,0,0);-webkit-transform:matrix(0.364291,-0.002550,0.001750,0.249994,0,0);}
.m2e_c00004{transform:matrix(0.369801,-0.002589,0.001750,0.249994,0,0);-ms-transform:matrix(0.369801,-0.002589,0.001750,0.249994,0,0);-webkit-transform:matrix(0.369801,-0.002589,0.001750,0.249994,0,0);}
.m31_c00004{transform:matrix(0.375981,-0.002632,0.001750,0.249994,0,0);-ms-transform:matrix(0.375981,-0.002632,0.001750,0.249994,0,0);-webkit-transform:matrix(0.375981,-0.002632,0.001750,0.249994,0,0);}
.m25_c00004{transform:matrix(0.384781,-0.002693,0.001750,0.249994,0,0);-ms-transform:matrix(0.384781,-0.002693,0.001750,0.249994,0,0);-webkit-transform:matrix(0.384781,-0.002693,0.001750,0.249994,0,0);}
.m7_c00004{transform:matrix(0.403060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403060,0.000000,0.000000,0.250000,0,0);}
.m38_c00004{transform:matrix(0.460024,-0.003220,0.001750,0.249994,0,0);-ms-transform:matrix(0.460024,-0.003220,0.001750,0.249994,0,0);-webkit-transform:matrix(0.460024,-0.003220,0.001750,0.249994,0,0);}
.m22_c00004{transform:matrix(0.467802,0.007017,-0.003750,0.249972,0,0);-ms-transform:matrix(0.467802,0.007017,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.467802,0.007017,-0.003750,0.249972,0,0);}
.m18_c00004{transform:matrix(0.483541,0.007253,-0.003750,0.249972,0,0);-ms-transform:matrix(0.483541,0.007253,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.483541,0.007253,-0.003750,0.249972,0,0);}
.me_c00004{transform:matrix(0.531245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531245,0.000000,0.000000,0.250000,0,0);}
.m3f_c00004{transform:matrix(0.547002,-0.003829,0.001750,0.249994,0,0);-ms-transform:matrix(0.547002,-0.003829,0.001750,0.249994,0,0);-webkit-transform:matrix(0.547002,-0.003829,0.001750,0.249994,0,0);}
.m30_c00004{transform:matrix(0.548417,-0.003839,0.001750,0.249994,0,0);-ms-transform:matrix(0.548417,-0.003839,0.001750,0.249994,0,0);-webkit-transform:matrix(0.548417,-0.003839,0.001750,0.249994,0,0);}
.m3_c00004{transform:matrix(0.553455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553455,0.000000,0.000000,0.250000,0,0);}
.m5_c00004{transform:matrix(0.580645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.580645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.580645,0.000000,0.000000,0.250000,0,0);}
.m2_c00004{transform:matrix(0.583140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583140,0.000000,0.000000,0.250000,0,0);}
.m1b_c00004{transform:matrix(0.599008,0.008985,-0.003750,0.249972,0,0);-ms-transform:matrix(0.599008,0.008985,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.599008,0.008985,-0.003750,0.249972,0,0);}
.m35_c00004{transform:matrix(0.600945,-0.004207,0.001750,0.249994,0,0);-ms-transform:matrix(0.600945,-0.004207,0.001750,0.249994,0,0);-webkit-transform:matrix(0.600945,-0.004207,0.001750,0.249994,0,0);}
.m3c_c00004{transform:matrix(0.606070,-0.004242,0.001750,0.249994,0,0);-ms-transform:matrix(0.606070,-0.004242,0.001750,0.249994,0,0);-webkit-transform:matrix(0.606070,-0.004242,0.001750,0.249994,0,0);}
.m46_c00004{transform:matrix(0.610110,-0.004271,0.001750,0.249994,0,0);-ms-transform:matrix(0.610110,-0.004271,0.001750,0.249994,0,0);-webkit-transform:matrix(0.610110,-0.004271,0.001750,0.249994,0,0);}
.m2d_c00004{transform:matrix(0.644384,-0.004511,0.001750,0.249994,0,0);-ms-transform:matrix(0.644384,-0.004511,0.001750,0.249994,0,0);-webkit-transform:matrix(0.644384,-0.004511,0.001750,0.249994,0,0);}
.m43_c00004{transform:matrix(0.655299,-0.004587,0.001750,0.249994,0,0);-ms-transform:matrix(0.655299,-0.004587,0.001750,0.249994,0,0);-webkit-transform:matrix(0.655299,-0.004587,0.001750,0.249994,0,0);}
.m3e_c00004{transform:matrix(0.679653,-0.004758,0.001750,0.249994,0,0);-ms-transform:matrix(0.679653,-0.004758,0.001750,0.249994,0,0);-webkit-transform:matrix(0.679653,-0.004758,0.001750,0.249994,0,0);}
.m39_c00004{transform:matrix(0.688698,-0.004821,0.001750,0.249994,0,0);-ms-transform:matrix(0.688698,-0.004821,0.001750,0.249994,0,0);-webkit-transform:matrix(0.688698,-0.004821,0.001750,0.249994,0,0);}
.m34_c00004{transform:matrix(0.718597,-0.005030,0.001750,0.249994,0,0);-ms-transform:matrix(0.718597,-0.005030,0.001750,0.249994,0,0);-webkit-transform:matrix(0.718597,-0.005030,0.001750,0.249994,0,0);}
.m16_c00004{transform:matrix(0.766945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.766945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.766945,0.000000,0.000000,0.250000,0,0);}
.m40_c00004{transform:matrix(0.775966,-0.005432,0.001750,0.249994,0,0);-ms-transform:matrix(0.775966,-0.005432,0.001750,0.249994,0,0);-webkit-transform:matrix(0.775966,-0.005432,0.001750,0.249994,0,0);}
.m49_c00004{transform:matrix(0.816750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.816750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.816750,0.000000,0.000000,0.250000,0,0);}
.m33_c00004{transform:matrix(0.907158,-0.006350,0.001750,0.249994,0,0);-ms-transform:matrix(0.907158,-0.006350,0.001750,0.249994,0,0);-webkit-transform:matrix(0.907158,-0.006350,0.001750,0.249994,0,0);}
.m44_c00004{transform:matrix(1.009580,-0.007067,0.001750,0.249994,0,0);-ms-transform:matrix(1.009580,-0.007067,0.001750,0.249994,0,0);-webkit-transform:matrix(1.009580,-0.007067,0.001750,0.249994,0,0);}
.m45_c00004{transform:matrix(1.165976,-0.008162,0.001750,0.249994,0,0);-ms-transform:matrix(1.165976,-0.008162,0.001750,0.249994,0,0);-webkit-transform:matrix(1.165976,-0.008162,0.001750,0.249994,0,0);}
.m24_c00004{transform:matrix(1.255874,0.018838,-0.003750,0.249972,0,0);-ms-transform:matrix(1.255874,0.018838,-0.003750,0.249972,0,0);-webkit-transform:matrix(1.255874,0.018838,-0.003750,0.249972,0,0);}
.m36_c00004{transform:matrix(1.537522,-0.010763,0.001750,0.249994,0,0);-ms-transform:matrix(1.537522,-0.010763,0.001750,0.249994,0,0);-webkit-transform:matrix(1.537522,-0.010763,0.001750,0.249994,0,0);}
.m47_c00004{transform:matrix(1.564085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.564085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.564085,0.000000,0.000000,0.250000,0,0);}
.m48_c00004{transform:matrix(1.584740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.584740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.584740,0.000000,0.000000,0.250000,0,0);}
.v0_c00004{vertical-align:0.000000px;}
.ls0_c00004{letter-spacing:0.000000px;}
.sc__c00004{text-shadow:none;}
.sc0_c00004{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__c00004{-webkit-text-stroke:0px transparent;}
.sc0_c00004{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00004{word-spacing:0.000000px;}
.fc0_c00004{color:transparent;}
.fs0_c00004{font-size:18.000000px;}
.fs8_c00004{font-size:30.000000px;}
.fs2_c00004{font-size:36.000000px;}
.fs1_c00004{font-size:42.000000px;}
.fs6_c00004{font-size:48.001176px;}
.fs7_c00004{font-size:66.001617px;}
.fs3_c00004{font-size:90.010124px;}
.fs5_c00004{font-size:150.003675px;}
.fs4_c00004{font-size:216.024299px;}
.y0_c00004{bottom:0.000000px;}
.y34_c00004{bottom:7.986000px;}
.y2c_c00004{bottom:95.378301px;}
.y28_c00004{bottom:95.378424px;}
.y2d_c00004{bottom:95.378749px;}
.y29_c00004{bottom:95.379013px;}
.y2b_c00004{bottom:95.379053px;}
.y2a_c00004{bottom:95.379273px;}
.y2e_c00004{bottom:95.379459px;}
.y2f_c00004{bottom:95.379628px;}
.y33_c00004{bottom:95.379696px;}
.y32_c00004{bottom:95.379777px;}
.y31_c00004{bottom:95.379787px;}
.y30_c00004{bottom:95.380248px;}
.y27_c00004{bottom:193.787826px;}
.y26_c00004{bottom:193.788203px;}
.y25_c00004{bottom:193.788873px;}
.y24_c00004{bottom:193.789243px;}
.y19_c00004{bottom:233.550169px;}
.y1a_c00004{bottom:233.847239px;}
.y1b_c00004{bottom:234.102469px;}
.y1c_c00004{bottom:234.224613px;}
.y1d_c00004{bottom:235.044664px;}
.y1e_c00004{bottom:235.312563px;}
.y1f_c00004{bottom:235.657038px;}
.y20_c00004{bottom:236.165031px;}
.y21_c00004{bottom:236.505242px;}
.y22_c00004{bottom:237.105872px;}
.y23_c00004{bottom:237.886397px;}
.y12_c00004{bottom:261.616500px;}
.y13_c00004{bottom:262.470822px;}
.y14_c00004{bottom:262.947165px;}
.y15_c00004{bottom:263.747633px;}
.y16_c00004{bottom:263.967797px;}
.y17_c00004{bottom:266.178194px;}
.y18_c00004{bottom:268.136612px;}
.yd_c00004{bottom:297.411660px;}
.yc_c00004{bottom:297.412193px;}
.ye_c00004{bottom:297.412312px;}
.y11_c00004{bottom:297.412717px;}
.yf_c00004{bottom:297.412852px;}
.y10_c00004{bottom:297.413093px;}
.yb_c00004{bottom:368.397720px;}
.ya_c00004{bottom:373.493385px;}
.y9_c00004{bottom:375.805822px;}
.y8_c00004{bottom:376.530683px;}
.y7_c00004{bottom:377.428523px;}
.y6_c00004{bottom:378.173767px;}
.y5_c00004{bottom:378.766553px;}
.y4_c00004{bottom:381.235500px;}
.y3_c00004{bottom:642.516000px;}
.y1_c00004{bottom:685.666500px;}
.y2_c00004{bottom:688.770000px;}
.h2_c00004{height:18.000000px;}
.ha_c00004{height:30.000000px;}
.h4_c00004{height:36.000000px;}
.h3_c00004{height:42.000000px;}
.h8_c00004{height:48.001176px;}
.h9_c00004{height:66.001617px;}
.h5_c00004{height:90.010124px;}
.h7_c00004{height:150.003675px;}
.h6_c00004{height:216.024299px;}
.h1_c00004{height:693.750000px;}
.h0_c00004{height:693.900000px;}
.w1_c00004{width:950.250000px;}
.w0_c00004{width:950.400000px;}
.x0_c00004{left:0.000000px;}
.x18_c00004{left:1.636500px;}
.x40_c00004{left:18.900000px;}
.x16_c00004{left:23.490000px;}
.x3_c00004{left:26.460000px;}
.x20_c00004{left:46.445505px;}
.x29_c00004{left:60.006805px;}
.x33_c00004{left:61.020750px;}
.x36_c00004{left:64.801270px;}
.x41_c00004{left:80.460000px;}
.x4_c00004{left:92.880000px;}
.x2a_c00004{left:111.040519px;}
.x34_c00004{left:116.641980px;}
.x23_c00004{left:122.250000px;}
.x2b_c00004{left:135.561366px;}
.x5_c00004{left:147.960000px;}
.x42_c00004{left:150.660000px;}
.x6_c00004{left:156.060000px;}
.x37_c00004{left:160.382953px;}
.x19_c00004{left:166.233000px;}
.x24_c00004{left:190.299000px;}
.x1a_c00004{left:205.752000px;}
.x7_c00004{left:212.220000px;}
.x21_c00004{left:217.104413px;}
.x8_c00004{left:231.930000px;}
.x1b_c00004{left:255.435000px;}
.x9_c00004{left:271.080000px;}
.xa_c00004{left:289.170000px;}
.x2c_c00004{left:299.428155px;}
.x25_c00004{left:304.651500px;}
.xb_c00004{left:306.990000px;}
.x1c_c00004{left:315.291000px;}
.x38_c00004{left:322.926423px;}
.x26_c00004{left:336.103500px;}
.xc_c00004{left:337.500000px;}
.x2d_c00004{left:352.914400px;}
.xd_c00004{left:358.290000px;}
.x1d_c00004{left:363.615000px;}
.x17_c00004{left:369.630000px;}
.xe_c00004{left:379.890000px;}
.x1_c00004{left:394.470000px;}
.x2_c00004{left:412.290000px;}
.xf_c00004{left:420.660000px;}
.x2e_c00004{left:421.840366px;}
.x10_c00004{left:470.880000px;}
.x39_c00004{left:480.069619px;}
.x11_c00004{left:505.440000px;}
.x1e_c00004{left:517.777500px;}
.x2f_c00004{left:523.340784px;}
.x12_c00004{left:534.600000px;}
.x3a_c00004{left:547.031395px;}
.x13_c00004{left:555.660000px;}
.x30_c00004{left:591.443239px;}
.x14_c00004{left:595.890000px;}
.x15_c00004{left:610.740000px;}
.x3b_c00004{left:617.773360px;}
.x27_c00004{left:651.874500px;}
.x22_c00004{left:667.514730px;}
.x3c_c00004{left:676.364727px;}
.x31_c00004{left:711.534920px;}
.x3d_c00004{left:742.516472px;}
.x3e_c00004{left:823.518940px;}
.x1f_c00004{left:857.488500px;}
.x32_c00004{left:867.612103px;}
.x3f_c00004{left:930.441180px;}
.x28_c00004{left:931.648500px;}
.x35_c00004{left:935.842621px;}
@media print{
.v0_c00004{vertical-align:0.000000pt;}
.ls0_c00004{letter-spacing:0.000000pt;}
.ws0_c00004{word-spacing:0.000000pt;}
.fs0_c00004{font-size:16.000000pt;}
.fs8_c00004{font-size:26.666667pt;}
.fs2_c00004{font-size:32.000000pt;}
.fs1_c00004{font-size:37.333333pt;}
.fs6_c00004{font-size:42.667712pt;}
.fs7_c00004{font-size:58.668104pt;}
.fs3_c00004{font-size:80.008999pt;}
.fs5_c00004{font-size:133.336600pt;}
.fs4_c00004{font-size:192.021599pt;}
.y0_c00004{bottom:0.000000pt;}
.y34_c00004{bottom:7.098667pt;}
.y2c_c00004{bottom:84.780712pt;}
.y28_c00004{bottom:84.780821pt;}
.y2d_c00004{bottom:84.781111pt;}
.y29_c00004{bottom:84.781345pt;}
.y2b_c00004{bottom:84.781380pt;}
.y2a_c00004{bottom:84.781576pt;}
.y2e_c00004{bottom:84.781741pt;}
.y2f_c00004{bottom:84.781892pt;}
.y33_c00004{bottom:84.781952pt;}
.y32_c00004{bottom:84.782024pt;}
.y31_c00004{bottom:84.782033pt;}
.y30_c00004{bottom:84.782443pt;}
.y27_c00004{bottom:172.255845pt;}
.y26_c00004{bottom:172.256180pt;}
.y25_c00004{bottom:172.256776pt;}
.y24_c00004{bottom:172.257105pt;}
.y19_c00004{bottom:207.600151pt;}
.y1a_c00004{bottom:207.864212pt;}
.y1b_c00004{bottom:208.091084pt;}
.y1c_c00004{bottom:208.199656pt;}
.y1d_c00004{bottom:208.928591pt;}
.y1e_c00004{bottom:209.166723pt;}
.y1f_c00004{bottom:209.472923pt;}
.y20_c00004{bottom:209.924472pt;}
.y21_c00004{bottom:210.226881pt;}
.y22_c00004{bottom:210.760775pt;}
.y23_c00004{bottom:211.454575pt;}
.y12_c00004{bottom:232.548000pt;}
.y13_c00004{bottom:233.307397pt;}
.y14_c00004{bottom:233.730813pt;}
.y15_c00004{bottom:234.442340pt;}
.y16_c00004{bottom:234.638041pt;}
.y17_c00004{bottom:236.602839pt;}
.y18_c00004{bottom:238.343655pt;}
.yd_c00004{bottom:264.365920pt;}
.yc_c00004{bottom:264.366393pt;}
.ye_c00004{bottom:264.366500pt;}
.y11_c00004{bottom:264.366860pt;}
.yf_c00004{bottom:264.366980pt;}
.y10_c00004{bottom:264.367193pt;}
.yb_c00004{bottom:327.464640pt;}
.ya_c00004{bottom:331.994120pt;}
.y9_c00004{bottom:334.049620pt;}
.y8_c00004{bottom:334.693940pt;}
.y7_c00004{bottom:335.492020pt;}
.y6_c00004{bottom:336.154460pt;}
.y5_c00004{bottom:336.681380pt;}
.y4_c00004{bottom:338.876000pt;}
.y3_c00004{bottom:571.125333pt;}
.y1_c00004{bottom:609.481333pt;}
.y2_c00004{bottom:612.240000pt;}
.h2_c00004{height:16.000000pt;}
.ha_c00004{height:26.666667pt;}
.h4_c00004{height:32.000000pt;}
.h3_c00004{height:37.333333pt;}
.h8_c00004{height:42.667712pt;}
.h9_c00004{height:58.668104pt;}
.h5_c00004{height:80.008999pt;}
.h7_c00004{height:133.336600pt;}
.h6_c00004{height:192.021599pt;}
.h1_c00004{height:616.666667pt;}
.h0_c00004{height:616.800000pt;}
.w1_c00004{width:844.666667pt;}
.w0_c00004{width:844.800000pt;}
.x0_c00004{left:0.000000pt;}
.x18_c00004{left:1.454667pt;}
.x40_c00004{left:16.800000pt;}
.x16_c00004{left:20.880000pt;}
.x3_c00004{left:23.520000pt;}
.x20_c00004{left:41.284893pt;}
.x29_c00004{left:53.339383pt;}
.x33_c00004{left:54.240667pt;}
.x36_c00004{left:57.601129pt;}
.x41_c00004{left:71.520000pt;}
.x4_c00004{left:82.560000pt;}
.x2a_c00004{left:98.702684pt;}
.x34_c00004{left:103.681760pt;}
.x23_c00004{left:108.666667pt;}
.x2b_c00004{left:120.498992pt;}
.x5_c00004{left:131.520000pt;}
.x42_c00004{left:133.920000pt;}
.x6_c00004{left:138.720000pt;}
.x37_c00004{left:142.562625pt;}
.x19_c00004{left:147.762667pt;}
.x24_c00004{left:169.154667pt;}
.x1a_c00004{left:182.890667pt;}
.x7_c00004{left:188.640000pt;}
.x21_c00004{left:192.981700pt;}
.x8_c00004{left:206.160000pt;}
.x1b_c00004{left:227.053333pt;}
.x9_c00004{left:240.960000pt;}
.xa_c00004{left:257.040000pt;}
.x2c_c00004{left:266.158360pt;}
.x25_c00004{left:270.801333pt;}
.xb_c00004{left:272.880000pt;}
.x1c_c00004{left:280.258667pt;}
.x38_c00004{left:287.045709pt;}
.x26_c00004{left:298.758667pt;}
.xc_c00004{left:300.000000pt;}
.x2d_c00004{left:313.701689pt;}
.xd_c00004{left:318.480000pt;}
.x1d_c00004{left:323.213333pt;}
.x17_c00004{left:328.560000pt;}
.xe_c00004{left:337.680000pt;}
.x1_c00004{left:350.640000pt;}
.x2_c00004{left:366.480000pt;}
.xf_c00004{left:373.920000pt;}
.x2e_c00004{left:374.969215pt;}
.x10_c00004{left:418.560000pt;}
.x39_c00004{left:426.728551pt;}
.x11_c00004{left:449.280000pt;}
.x1e_c00004{left:460.246667pt;}
.x2f_c00004{left:465.191808pt;}
.x12_c00004{left:475.200000pt;}
.x3a_c00004{left:486.250129pt;}
.x13_c00004{left:493.920000pt;}
.x30_c00004{left:525.727324pt;}
.x14_c00004{left:529.680000pt;}
.x15_c00004{left:542.880000pt;}
.x3b_c00004{left:549.131876pt;}
.x27_c00004{left:579.444000pt;}
.x22_c00004{left:593.346427pt;}
.x3c_c00004{left:601.213091pt;}
.x31_c00004{left:632.475484pt;}
.x3d_c00004{left:660.014641pt;}
.x3e_c00004{left:732.016836pt;}
.x1f_c00004{left:762.212000pt;}
.x32_c00004{left:771.210759pt;}
.x3f_c00004{left:827.058827pt;}
.x28_c00004{left:828.132000pt;}
.x35_c00004{left:831.860108pt;}
}





/* 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_c00005 {
    display:none;
  }
  .loading-indicator_c00005.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00005 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_c00005 { 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_c00005" -> "#page-container .classname_c00005")
 */
.pf_c00005 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00005 { /* 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_c00005.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00005 { /* 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_c00005 { /* 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_c00005 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00005 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00005 {overflow:visible;}
  }
}
.c_c00005 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00005 { /* 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_c00005:after { /* webkit #35443 */
  content: '';
}
.t_c00005:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00005 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 */
}
.__c00005 { /* 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_c00005 { /* info for Javascript */
  display:none;
}
.l_c00005 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00005 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00005 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00005: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_c00005 {
    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_c00005.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00005.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_c00005 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00005{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00005;src:url('chunks/assets/font_c605e72f209fc835e906f064.woff2')format("woff");}.ff1_c00005{font-family:ff1_c00005;line-height:1.000000;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;}
.m2_c00005{transform:matrix(0.031820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.031820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.031820,0.000000,0.000000,0.250000,0,0);}
.m32_c00005{transform:matrix(0.032800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032800,0.000000,0.000000,0.250000,0,0);}
.m37_c00005{transform:matrix(0.035375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.035375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.035375,0.000000,0.000000,0.250000,0,0);}
.m1f_c00005{transform:matrix(0.045455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.045455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.045455,0.000000,0.000000,0.250000,0,0);}
.m3e_c00005{transform:matrix(0.047725,0.000668,-0.003500,0.249976,0,0);-ms-transform:matrix(0.047725,0.000668,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.047725,0.000668,-0.003500,0.249976,0,0);}
.m2f_c00005{transform:matrix(0.053150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.053150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.053150,0.000000,0.000000,0.250000,0,0);}
.m36_c00005{transform:matrix(0.055685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.055685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.055685,0.000000,0.000000,0.250000,0,0);}
.m3f_c00005{transform:matrix(0.057359,0.000803,-0.003500,0.249976,0,0);-ms-transform:matrix(0.057359,0.000803,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.057359,0.000803,-0.003500,0.249976,0,0);}
.m31_c00005{transform:matrix(0.064135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.064135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.064135,0.000000,0.000000,0.250000,0,0);}
.m21_c00005{transform:matrix(0.068335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.068335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.068335,0.000000,0.000000,0.250000,0,0);}
.m41_c00005{transform:matrix(0.072028,0.001008,-0.003500,0.249976,0,0);-ms-transform:matrix(0.072028,0.001008,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.072028,0.001008,-0.003500,0.249976,0,0);}
.m9_c00005{transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00005{transform:matrix(0.079550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.079550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.079550,0.000000,0.000000,0.250000,0,0);}
.md_c00005{transform:matrix(0.081125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.081125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.081125,0.000000,0.000000,0.250000,0,0);}
.m1d_c00005{transform:matrix(0.085515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.085515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.085515,0.000000,0.000000,0.250000,0,0);}
.m17_c00005{transform:matrix(0.085675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.085675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.085675,0.000000,0.000000,0.250000,0,0);}
.m4_c00005{transform:matrix(0.090700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090700,0.000000,0.000000,0.250000,0,0);}
.m2c_c00005{transform:matrix(0.094340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.094340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.094340,0.000000,0.000000,0.250000,0,0);}
.m30_c00005{transform:matrix(0.099245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.099245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.099245,0.000000,0.000000,0.250000,0,0);}
.m51_c00005{transform:matrix(0.100625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100625,0.000000,0.000000,0.250000,0,0);}
.m43_c00005{transform:matrix(0.109189,0.001529,-0.003500,0.249976,0,0);-ms-transform:matrix(0.109189,0.001529,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.109189,0.001529,-0.003500,0.249976,0,0);}
.m2e_c00005{transform:matrix(0.111020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111020,0.000000,0.000000,0.250000,0,0);}
.m44_c00005{transform:matrix(0.127268,0.001782,-0.003500,0.249976,0,0);-ms-transform:matrix(0.127268,0.001782,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.127268,0.001782,-0.003500,0.249976,0,0);}
.m6_c00005{transform:matrix(0.127280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127280,0.000000,0.000000,0.250000,0,0);}
.m4d_c00005{transform:matrix(0.128270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128270,0.000000,0.000000,0.250000,0,0);}
.mf_c00005{transform:matrix(0.129035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129035,0.000000,0.000000,0.250000,0,0);}
.m50_c00005{transform:matrix(0.131195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131195,0.000000,0.000000,0.250000,0,0);}
.m3_c00005{transform:matrix(0.135210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135210,0.000000,0.000000,0.250000,0,0);}
.m1c_c00005{transform:matrix(0.153885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153885,0.000000,0.000000,0.250000,0,0);}
.m47_c00005{transform:matrix(0.156510,0.002191,-0.003500,0.249976,0,0);-ms-transform:matrix(0.156510,0.002191,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.156510,0.002191,-0.003500,0.249976,0,0);}
.m1_c00005{transform:matrix(0.168750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168750,0.000000,0.000000,0.250000,0,0);}
.ma_c00005{transform:matrix(0.172045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172045,0.000000,0.000000,0.250000,0,0);}
.m1e_c00005{transform:matrix(0.176525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176525,0.000000,0.000000,0.250000,0,0);}
.m24_c00005{transform:matrix(0.187950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187950,0.000000,0.000000,0.250000,0,0);}
.m11_c00005{transform:matrix(0.192095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192095,0.000000,0.000000,0.250000,0,0);}
.m20_c00005{transform:matrix(0.198560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198560,0.000000,0.000000,0.250000,0,0);}
.m2d_c00005{transform:matrix(0.201120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201120,0.000000,0.000000,0.250000,0,0);}
.m15_c00005{transform:matrix(0.201245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201245,0.000000,0.000000,0.250000,0,0);}
.m1b_c00005{transform:matrix(0.201805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201805,0.000000,0.000000,0.250000,0,0);}
.m40_c00005{transform:matrix(0.207420,0.002904,-0.003500,0.249976,0,0);-ms-transform:matrix(0.207420,0.002904,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.207420,0.002904,-0.003500,0.249976,0,0);}
.m0_c00005{transform:matrix(0.216205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216205,0.000000,0.000000,0.250000,0,0);}
.m5_c00005{transform:matrix(0.222990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222990,0.000000,0.000000,0.250000,0,0);}
.m2a_c00005{transform:matrix(0.230830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230830,0.000000,0.000000,0.250000,0,0);}
.m4e_c00005{transform:matrix(0.231925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231925,0.000000,0.000000,0.250000,0,0);}
.m49_c00005{transform:matrix(0.244156,0.003418,-0.003500,0.249976,0,0);-ms-transform:matrix(0.244156,0.003418,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.244156,0.003418,-0.003500,0.249976,0,0);}
.m4f_c00005{transform:matrix(0.245675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245675,0.000000,0.000000,0.250000,0,0);}
.m16_c00005{transform:matrix(0.246990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246990,0.000000,0.000000,0.250000,0,0);}
.m18_c00005{transform:matrix(0.248295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248295,0.000000,0.000000,0.250000,0,0);}
.m38_c00005{transform:matrix(0.253440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253440,0.000000,0.000000,0.250000,0,0);}
.m4b_c00005{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00005{transform:matrix(0.262085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262085,0.000000,0.000000,0.250000,0,0);}
.m52_c00005{transform:matrix(0.274650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274650,0.000000,0.000000,0.250000,0,0);}
.m39_c00005{transform:matrix(0.282525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282525,0.000000,0.000000,0.250000,0,0);}
.m35_c00005{transform:matrix(0.288190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288190,0.000000,0.000000,0.250000,0,0);}
.m1a_c00005{transform:matrix(0.307775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307775,0.000000,0.000000,0.250000,0,0);}
.m19_c00005{transform:matrix(0.315355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315355,0.000000,0.000000,0.250000,0,0);}
.m33_c00005{transform:matrix(0.316805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316805,0.000000,0.000000,0.250000,0,0);}
.m23_c00005{transform:matrix(0.324500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324500,0.000000,0.000000,0.250000,0,0);}
.m14_c00005{transform:matrix(0.337085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337085,0.000000,0.000000,0.250000,0,0);}
.mb_c00005{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m45_c00005{transform:matrix(0.361915,0.005067,-0.003500,0.249976,0,0);-ms-transform:matrix(0.361915,0.005067,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.361915,0.005067,-0.003500,0.249976,0,0);}
.m13_c00005{transform:matrix(0.378585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378585,0.000000,0.000000,0.250000,0,0);}
.mc_c00005{transform:matrix(0.387105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387105,0.000000,0.000000,0.250000,0,0);}
.m42_c00005{transform:matrix(0.388877,0.005444,-0.003500,0.249976,0,0);-ms-transform:matrix(0.388877,0.005444,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.388877,0.005444,-0.003500,0.249976,0,0);}
.m8_c00005{transform:matrix(0.408535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408535,0.000000,0.000000,0.250000,0,0);}
.m22_c00005{transform:matrix(0.415965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415965,0.000000,0.000000,0.250000,0,0);}
.m2b_c00005{transform:matrix(0.448470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448470,0.000000,0.000000,0.250000,0,0);}
.m29_c00005{transform:matrix(0.585975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.585975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.585975,0.000000,0.000000,0.250000,0,0);}
.m3b_c00005{transform:matrix(0.603166,0.008444,-0.003500,0.249976,0,0);-ms-transform:matrix(0.603166,0.008444,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.603166,0.008444,-0.003500,0.249976,0,0);}
.m25_c00005{transform:matrix(0.610595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.610595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.610595,0.000000,0.000000,0.250000,0,0);}
.m48_c00005{transform:matrix(0.616140,0.008626,-0.003500,0.249976,0,0);-ms-transform:matrix(0.616140,0.008626,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.616140,0.008626,-0.003500,0.249976,0,0);}
.m3c_c00005{transform:matrix(0.654566,0.009164,-0.003500,0.249976,0,0);-ms-transform:matrix(0.654566,0.009164,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.654566,0.009164,-0.003500,0.249976,0,0);}
.m4a_c00005{transform:matrix(0.658390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.658390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.658390,0.000000,0.000000,0.250000,0,0);}
.m12_c00005{transform:matrix(0.665770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665770,0.000000,0.000000,0.250000,0,0);}
.m7_c00005{transform:matrix(0.711355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.711355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.711355,0.000000,0.000000,0.250000,0,0);}
.m27_c00005{transform:matrix(0.711655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.711655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.711655,0.000000,0.000000,0.250000,0,0);}
.m46_c00005{transform:matrix(0.714440,0.010002,-0.003500,0.249976,0,0);-ms-transform:matrix(0.714440,0.010002,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.714440,0.010002,-0.003500,0.249976,0,0);}
.m26_c00005{transform:matrix(0.726995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.726995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.726995,0.000000,0.000000,0.250000,0,0);}
.m28_c00005{transform:matrix(0.790350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.790350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.790350,0.000000,0.000000,0.250000,0,0);}
.me_c00005{transform:matrix(1.280635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.280635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.280635,0.000000,0.000000,0.250000,0,0);}
.m10_c00005{transform:matrix(1.715845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.715845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.715845,0.000000,0.000000,0.250000,0,0);}
.m3d_c00005{transform:matrix(1.749664,0.024495,-0.003500,0.249976,0,0);-ms-transform:matrix(1.749664,0.024495,-0.003500,0.249976,0,0);-webkit-transform:matrix(1.749664,0.024495,-0.003500,0.249976,0,0);}
.m34_c00005{transform:matrix(2.404585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.404585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.404585,0.000000,0.000000,0.250000,0,0);}
.v1_c00005{vertical-align:-3.930000px;}
.v0_c00005{vertical-align:0.000000px;}
.ls0_c00005{letter-spacing:0.000000px;}
.sc__c00005{text-shadow:none;}
.sc0_c00005{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__c00005{-webkit-text-stroke:0px transparent;}
.sc0_c00005{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00005{word-spacing:0.000000px;}
._0_c00005{width:1084.985544px;}
.fc0_c00005{color:transparent;}
.fs3_c00005{font-size:12.000000px;}
.fs2_c00005{font-size:18.000000px;}
.fs9_c00005{font-size:18.001764px;}
.fs1_c00005{font-size:24.000000px;}
.fs8_c00005{font-size:24.002352px;}
.fs4_c00005{font-size:36.000000px;}
.fs0_c00005{font-size:42.000000px;}
.fs6_c00005{font-size:48.000000px;}
.fs5_c00005{font-size:54.000000px;}
.fs7_c00005{font-size:60.000000px;}
.y0_c00005{bottom:0.000000px;}
.y3d_c00005{bottom:67.765500px;}
.y3c_c00005{bottom:72.753000px;}
.y3b_c00005{bottom:77.220000px;}
.y3a_c00005{bottom:80.730000px;}
.y39_c00005{bottom:172.617000px;}
.y37_c00005{bottom:192.748572px;}
.y34_c00005{bottom:192.748770px;}
.y31_c00005{bottom:192.748926px;}
.y38_c00005{bottom:192.748974px;}
.y33_c00005{bottom:192.748989px;}
.y36_c00005{bottom:192.749034px;}
.y32_c00005{bottom:192.749127px;}
.y35_c00005{bottom:192.749352px;}
.y29_c00005{bottom:202.750500px;}
.y30_c00005{bottom:202.795599px;}
.y2f_c00005{bottom:203.128302px;}
.y28_c00005{bottom:203.490000px;}
.y2e_c00005{bottom:206.207532px;}
.y2d_c00005{bottom:206.491116px;}
.y27_c00005{bottom:206.820000px;}
.y2c_c00005{bottom:207.849795px;}
.y2b_c00005{bottom:208.103139px;}
.y2a_c00005{bottom:208.440000px;}
.y26_c00005{bottom:212.908500px;}
.y25_c00005{bottom:213.060000px;}
.y24_c00005{bottom:213.363000px;}
.y23_c00005{bottom:214.557000px;}
.y22_c00005{bottom:215.280000px;}
.y21_c00005{bottom:216.018000px;}
.y20_c00005{bottom:216.540000px;}
.y1f_c00005{bottom:218.980500px;}
.y1e_c00005{bottom:232.510500px;}
.y1d_c00005{bottom:371.667000px;}
.y1c_c00005{bottom:372.700500px;}
.y1b_c00005{bottom:373.654500px;}
.y1a_c00005{bottom:375.300000px;}
.y19_c00005{bottom:379.683000px;}
.y18_c00005{bottom:380.626500px;}
.y17_c00005{bottom:382.933500px;}
.y16_c00005{bottom:383.245500px;}
.y15_c00005{bottom:383.670000px;}
.y14_c00005{bottom:389.745000px;}
.y13_c00005{bottom:401.142000px;}
.y12_c00005{bottom:409.320000px;}
.y11_c00005{bottom:410.130000px;}
.ye_c00005{bottom:419.040000px;}
.y10_c00005{bottom:422.550000px;}
.yf_c00005{bottom:423.090000px;}
.yd_c00005{bottom:424.980000px;}
.yc_c00005{bottom:443.880000px;}
.ya_c00005{bottom:444.960000px;}
.y9_c00005{bottom:446.850000px;}
.yb_c00005{bottom:483.030000px;}
.y8_c00005{bottom:547.257000px;}
.y7_c00005{bottom:547.771500px;}
.y6_c00005{bottom:548.088000px;}
.y5_c00005{bottom:548.616000px;}
.y4_c00005{bottom:549.846000px;}
.y3_c00005{bottom:550.530000px;}
.y2_c00005{bottom:551.674500px;}
.y1_c00005{bottom:596.709000px;}
.h5_c00005{height:12.000000px;}
.h4_c00005{height:18.000000px;}
.hb_c00005{height:18.001764px;}
.h3_c00005{height:24.000000px;}
.ha_c00005{height:24.002352px;}
.h6_c00005{height:36.000000px;}
.h2_c00005{height:42.000000px;}
.h8_c00005{height:48.000000px;}
.h7_c00005{height:54.000000px;}
.h9_c00005{height:60.000000px;}
.h1_c00005{height:693.750000px;}
.h0_c00005{height:693.900000px;}
.w1_c00005{width:950.250000px;}
.w0_c00005{width:950.400000px;}
.x0_c00005{left:0.000000px;}
.x14_c00005{left:2.700000px;}
.xe_c00005{left:3.780000px;}
.xd_c00005{left:5.400000px;}
.x16_c00005{left:57.240000px;}
.x19_c00005{left:59.352000px;}
.x1d_c00005{left:65.610000px;}
.x6_c00005{left:70.719000px;}
.x2_c00005{left:75.870000px;}
.x10_c00005{left:78.300000px;}
.x12_c00005{left:88.020000px;}
.x17_c00005{left:91.530000px;}
.x3_c00005{left:108.810000px;}
.x18_c00005{left:127.980000px;}
.x1a_c00005{left:130.098000px;}
.x13_c00005{left:141.210000px;}
.x7_c00005{left:168.475500px;}
.x1b_c00005{left:182.220000px;}
.x1e_c00005{left:184.140000px;}
.xc_c00005{left:227.880000px;}
.x15_c00005{left:251.100000px;}
.x11_c00005{left:284.040000px;}
.x4_c00005{left:285.120000px;}
.x44_c00005{left:302.670000px;}
.x20_c00005{left:326.917500px;}
.x39_c00005{left:328.833000px;}
.x8_c00005{left:344.227500px;}
.x24_c00005{left:353.430000px;}
.x36_c00005{left:355.302000px;}
.x3a_c00005{left:370.990500px;}
.x1f_c00005{left:373.410000px;}
.x25_c00005{left:381.780000px;}
.x2f_c00005{left:391.761000px;}
.x26_c00005{left:404.190000px;}
.x9_c00005{left:419.551500px;}
.x21_c00005{left:429.795000px;}
.x2a_c00005{left:441.450000px;}
.xf_c00005{left:442.800000px;}
.xa_c00005{left:464.665500px;}
.x30_c00005{left:466.257000px;}
.x27_c00005{left:468.990000px;}
.x2b_c00005{left:475.200000px;}
.x5_c00005{left:484.110000px;}
.x3b_c00005{left:488.295000px;}
.x22_c00005{left:489.450000px;}
.x3e_c00005{left:511.935750px;}
.x3f_c00005{left:527.597316px;}
.x28_c00005{left:532.710000px;}
.xb_c00005{left:538.083000px;}
.x23_c00005{left:554.016000px;}
.x40_c00005{left:556.489986px;}
.x1c_c00005{left:566.698500px;}
.x31_c00005{left:571.582500px;}
.x41_c00005{left:579.981585px;}
.x2c_c00005{left:634.500000px;}
.x32_c00005{left:674.932500px;}
.x29_c00005{left:695.790000px;}
.x3c_c00005{left:708.240000px;}
.x37_c00005{left:725.367000px;}
.x3d_c00005{left:732.004500px;}
.x38_c00005{left:807.457500px;}
.x2d_c00005{left:819.450000px;}
.x47_c00005{left:827.010000px;}
.x46_c00005{left:830.520000px;}
.x33_c00005{left:845.560500px;}
.x42_c00005{left:850.817652px;}
.x48_c00005{left:864.000000px;}
.x49_c00005{left:879.390000px;}
.x43_c00005{left:881.330637px;}
.x2e_c00005{left:883.980000px;}
.x34_c00005{left:888.789000px;}
.x35_c00005{left:910.425000px;}
.x45_c00005{left:932.310000px;}
.x1_c00005{left:934.740000px;}
@media print{
.v1_c00005{vertical-align:-3.493333pt;}
.v0_c00005{vertical-align:0.000000pt;}
.ls0_c00005{letter-spacing:0.000000pt;}
.ws0_c00005{word-spacing:0.000000pt;}
._0_c00005{width:964.431594pt;}
.fs3_c00005{font-size:10.666667pt;}
.fs2_c00005{font-size:16.000000pt;}
.fs9_c00005{font-size:16.001568pt;}
.fs1_c00005{font-size:21.333333pt;}
.fs8_c00005{font-size:21.335424pt;}
.fs4_c00005{font-size:32.000000pt;}
.fs0_c00005{font-size:37.333333pt;}
.fs6_c00005{font-size:42.666667pt;}
.fs5_c00005{font-size:48.000000pt;}
.fs7_c00005{font-size:53.333333pt;}
.y0_c00005{bottom:0.000000pt;}
.y3d_c00005{bottom:60.236000pt;}
.y3c_c00005{bottom:64.669333pt;}
.y3b_c00005{bottom:68.640000pt;}
.y3a_c00005{bottom:71.760000pt;}
.y39_c00005{bottom:153.437333pt;}
.y37_c00005{bottom:171.332064pt;}
.y34_c00005{bottom:171.332240pt;}
.y31_c00005{bottom:171.332379pt;}
.y38_c00005{bottom:171.332421pt;}
.y33_c00005{bottom:171.332435pt;}
.y36_c00005{bottom:171.332475pt;}
.y32_c00005{bottom:171.332557pt;}
.y35_c00005{bottom:171.332757pt;}
.y29_c00005{bottom:180.222667pt;}
.y30_c00005{bottom:180.262755pt;}
.y2f_c00005{bottom:180.558491pt;}
.y28_c00005{bottom:180.880000pt;}
.y2e_c00005{bottom:183.295584pt;}
.y2d_c00005{bottom:183.547659pt;}
.y27_c00005{bottom:183.840000pt;}
.y2c_c00005{bottom:184.755373pt;}
.y2b_c00005{bottom:184.980568pt;}
.y2a_c00005{bottom:185.280000pt;}
.y26_c00005{bottom:189.252000pt;}
.y25_c00005{bottom:189.386667pt;}
.y24_c00005{bottom:189.656000pt;}
.y23_c00005{bottom:190.717333pt;}
.y22_c00005{bottom:191.360000pt;}
.y21_c00005{bottom:192.016000pt;}
.y20_c00005{bottom:192.480000pt;}
.y1f_c00005{bottom:194.649333pt;}
.y1e_c00005{bottom:206.676000pt;}
.y1d_c00005{bottom:330.370667pt;}
.y1c_c00005{bottom:331.289333pt;}
.y1b_c00005{bottom:332.137333pt;}
.y1a_c00005{bottom:333.600000pt;}
.y19_c00005{bottom:337.496000pt;}
.y18_c00005{bottom:338.334667pt;}
.y17_c00005{bottom:340.385333pt;}
.y16_c00005{bottom:340.662667pt;}
.y15_c00005{bottom:341.040000pt;}
.y14_c00005{bottom:346.440000pt;}
.y13_c00005{bottom:356.570667pt;}
.y12_c00005{bottom:363.840000pt;}
.y11_c00005{bottom:364.560000pt;}
.ye_c00005{bottom:372.480000pt;}
.y10_c00005{bottom:375.600000pt;}
.yf_c00005{bottom:376.080000pt;}
.yd_c00005{bottom:377.760000pt;}
.yc_c00005{bottom:394.560000pt;}
.ya_c00005{bottom:395.520000pt;}
.y9_c00005{bottom:397.200000pt;}
.yb_c00005{bottom:429.360000pt;}
.y8_c00005{bottom:486.450667pt;}
.y7_c00005{bottom:486.908000pt;}
.y6_c00005{bottom:487.189333pt;}
.y5_c00005{bottom:487.658667pt;}
.y4_c00005{bottom:488.752000pt;}
.y3_c00005{bottom:489.360000pt;}
.y2_c00005{bottom:490.377333pt;}
.y1_c00005{bottom:530.408000pt;}
.h5_c00005{height:10.666667pt;}
.h4_c00005{height:16.000000pt;}
.hb_c00005{height:16.001568pt;}
.h3_c00005{height:21.333333pt;}
.ha_c00005{height:21.335424pt;}
.h6_c00005{height:32.000000pt;}
.h2_c00005{height:37.333333pt;}
.h8_c00005{height:42.666667pt;}
.h7_c00005{height:48.000000pt;}
.h9_c00005{height:53.333333pt;}
.h1_c00005{height:616.666667pt;}
.h0_c00005{height:616.800000pt;}
.w1_c00005{width:844.666667pt;}
.w0_c00005{width:844.800000pt;}
.x0_c00005{left:0.000000pt;}
.x14_c00005{left:2.400000pt;}
.xe_c00005{left:3.360000pt;}
.xd_c00005{left:4.800000pt;}
.x16_c00005{left:50.880000pt;}
.x19_c00005{left:52.757333pt;}
.x1d_c00005{left:58.320000pt;}
.x6_c00005{left:62.861333pt;}
.x2_c00005{left:67.440000pt;}
.x10_c00005{left:69.600000pt;}
.x12_c00005{left:78.240000pt;}
.x17_c00005{left:81.360000pt;}
.x3_c00005{left:96.720000pt;}
.x18_c00005{left:113.760000pt;}
.x1a_c00005{left:115.642667pt;}
.x13_c00005{left:125.520000pt;}
.x7_c00005{left:149.756000pt;}
.x1b_c00005{left:161.973333pt;}
.x1e_c00005{left:163.680000pt;}
.xc_c00005{left:202.560000pt;}
.x15_c00005{left:223.200000pt;}
.x11_c00005{left:252.480000pt;}
.x4_c00005{left:253.440000pt;}
.x44_c00005{left:269.040000pt;}
.x20_c00005{left:290.593333pt;}
.x39_c00005{left:292.296000pt;}
.x8_c00005{left:305.980000pt;}
.x24_c00005{left:314.160000pt;}
.x36_c00005{left:315.824000pt;}
.x3a_c00005{left:329.769333pt;}
.x1f_c00005{left:331.920000pt;}
.x25_c00005{left:339.360000pt;}
.x2f_c00005{left:348.232000pt;}
.x26_c00005{left:359.280000pt;}
.x9_c00005{left:372.934667pt;}
.x21_c00005{left:382.040000pt;}
.x2a_c00005{left:392.400000pt;}
.xf_c00005{left:393.600000pt;}
.xa_c00005{left:413.036000pt;}
.x30_c00005{left:414.450667pt;}
.x27_c00005{left:416.880000pt;}
.x2b_c00005{left:422.400000pt;}
.x5_c00005{left:430.320000pt;}
.x3b_c00005{left:434.040000pt;}
.x22_c00005{left:435.066667pt;}
.x3e_c00005{left:455.054000pt;}
.x3f_c00005{left:468.975392pt;}
.x28_c00005{left:473.520000pt;}
.xb_c00005{left:478.296000pt;}
.x23_c00005{left:492.458667pt;}
.x40_c00005{left:494.657765pt;}
.x1c_c00005{left:503.732000pt;}
.x31_c00005{left:508.073333pt;}
.x41_c00005{left:515.539187pt;}
.x2c_c00005{left:564.000000pt;}
.x32_c00005{left:599.940000pt;}
.x29_c00005{left:618.480000pt;}
.x3c_c00005{left:629.546667pt;}
.x37_c00005{left:644.770667pt;}
.x3d_c00005{left:650.670667pt;}
.x38_c00005{left:717.740000pt;}
.x2d_c00005{left:728.400000pt;}
.x47_c00005{left:735.120000pt;}
.x46_c00005{left:738.240000pt;}
.x33_c00005{left:751.609333pt;}
.x42_c00005{left:756.282357pt;}
.x48_c00005{left:768.000000pt;}
.x49_c00005{left:781.680000pt;}
.x43_c00005{left:783.405011pt;}
.x2e_c00005{left:785.760000pt;}
.x34_c00005{left:790.034667pt;}
.x35_c00005{left:809.266667pt;}
.x45_c00005{left:828.720000pt;}
.x1_c00005{left:830.880000pt;}
}





/* 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_c00006 {
    display:none;
  }
  .loading-indicator_c00006.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00006 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_c00006 { 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_c00006" -> "#page-container .classname_c00006")
 */
.pf_c00006 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00006 { /* 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_c00006.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00006 { /* 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_c00006 { /* 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_c00006 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00006 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00006 {overflow:visible;}
  }
}
.c_c00006 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00006 { /* 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_c00006:after { /* webkit #35443 */
  content: '';
}
.t_c00006:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00006 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 */
}
.__c00006 { /* 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_c00006 { /* info for Javascript */
  display:none;
}
.l_c00006 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00006 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00006 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00006: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_c00006 {
    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_c00006.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00006.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_c00006 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00006{font-family:sans-serif;visibility:hidden;}
.sc__c00006{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00006{-webkit-text-stroke:0px transparent;}
}
.y0_c00006{bottom:0.000000px;}
.h1_c00006{height:693.750000px;}
.h0_c00006{height:693.900000px;}
.w1_c00006{width:950.250000px;}
.w0_c00006{width:950.400000px;}
.x0_c00006{left:0.000000px;}
@media print{
.y0_c00006{bottom:0.000000pt;}
.h1_c00006{height:616.666667pt;}
.h0_c00006{height:616.800000pt;}
.w1_c00006{width:844.666667pt;}
.w0_c00006{width:844.800000pt;}
.x0_c00006{left:0.000000pt;}
}





/* 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_c00007 {
    display:none;
  }
  .loading-indicator_c00007.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00007 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_c00007 { 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_c00007" -> "#page-container .classname_c00007")
 */
.pf_c00007 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00007 { /* 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_c00007.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00007 { /* 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_c00007 { /* 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_c00007 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00007 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00007 {overflow:visible;}
  }
}
.c_c00007 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00007 { /* 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_c00007:after { /* webkit #35443 */
  content: '';
}
.t_c00007:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00007 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 */
}
.__c00007 { /* 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_c00007 { /* info for Javascript */
  display:none;
}
.l_c00007 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00007 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00007 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00007: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_c00007 {
    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_c00007.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00007.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_c00007 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00007{font-family:sans-serif;visibility:hidden;}
.sc__c00007{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00007{-webkit-text-stroke:0px transparent;}
}
.y0_c00007{bottom:0.000000px;}
.h1_c00007{height:693.750000px;}
.h0_c00007{height:693.900000px;}
.w1_c00007{width:950.250000px;}
.w0_c00007{width:950.400000px;}
.x0_c00007{left:0.000000px;}
@media print{
.y0_c00007{bottom:0.000000pt;}
.h1_c00007{height:616.666667pt;}
.h0_c00007{height:616.800000pt;}
.w1_c00007{width:844.666667pt;}
.w0_c00007{width:844.800000pt;}
.x0_c00007{left:0.000000pt;}
}





/* 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_c00008 {
    display:none;
  }
  .loading-indicator_c00008.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00008 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_c00008 { 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_c00008" -> "#page-container .classname_c00008")
 */
.pf_c00008 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00008 { /* 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_c00008.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00008 { /* 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_c00008 { /* 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_c00008 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00008 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00008 {overflow:visible;}
  }
}
.c_c00008 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00008 { /* 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_c00008:after { /* webkit #35443 */
  content: '';
}
.t_c00008:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00008 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 */
}
.__c00008 { /* 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_c00008 { /* info for Javascript */
  display:none;
}
.l_c00008 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00008 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00008 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00008: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_c00008 {
    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_c00008.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00008.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_c00008 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00008{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00008;src:url('chunks/assets/font_59dc3ab2e04ed21d4ac9992b.woff2')format("woff");}.ff1_c00008{font-family:ff1_c00008;line-height:1.000000;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;}
.m2_c00008{transform:matrix(0.000109,-0.054600,0.250000,0.000500,0,0);-ms-transform:matrix(0.000109,-0.054600,0.250000,0.000500,0,0);-webkit-transform:matrix(0.000109,-0.054600,0.250000,0.000500,0,0);}
.m6_c00008{transform:matrix(0.000406,-0.202810,0.250000,0.000500,0,0);-ms-transform:matrix(0.000406,-0.202810,0.250000,0.000500,0,0);-webkit-transform:matrix(0.000406,-0.202810,0.250000,0.000500,0,0);}
.m1_c00008{transform:matrix(0.001730,-0.865153,0.250000,0.000500,0,0);-ms-transform:matrix(0.001730,-0.865153,0.250000,0.000500,0,0);-webkit-transform:matrix(0.001730,-0.865153,0.250000,0.000500,0,0);}
.m4_c00008{transform:matrix(0.001746,-0.873128,0.250000,0.000500,0,0);-ms-transform:matrix(0.001746,-0.873128,0.250000,0.000500,0,0);-webkit-transform:matrix(0.001746,-0.873128,0.250000,0.000500,0,0);}
.m5_c00008{transform:matrix(0.001988,-0.994078,0.250000,0.000500,0,0);-ms-transform:matrix(0.001988,-0.994078,0.250000,0.000500,0,0);-webkit-transform:matrix(0.001988,-0.994078,0.250000,0.000500,0,0);}
.m3_c00008{transform:matrix(0.010720,-5.360199,0.250000,0.000500,0,0);-ms-transform:matrix(0.010720,-5.360199,0.250000,0.000500,0,0);-webkit-transform:matrix(0.010720,-5.360199,0.250000,0.000500,0,0);}
.m0_c00008{transform:matrix(0.013281,-6.640352,0.250000,0.000500,0,0);-ms-transform:matrix(0.013281,-6.640352,0.250000,0.000500,0,0);-webkit-transform:matrix(0.013281,-6.640352,0.250000,0.000500,0,0);}
.m7_c00008{transform:matrix(0.190670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190670,0.000000,0.000000,0.250000,0,0);}
.m8_c00008{transform:matrix(0.349475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349475,0.000000,0.000000,0.250000,0,0);}
.v0_c00008{vertical-align:0.000000px;}
.ls0_c00008{letter-spacing:0.000000px;}
.sc__c00008{text-shadow:none;}
.sc0_c00008{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__c00008{-webkit-text-stroke:0px transparent;}
.sc0_c00008{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00008{word-spacing:0.000000px;}
.fc0_c00008{color:transparent;}
.fs2_c00008{font-size:24.000000px;}
.fs0_c00008{font-size:24.000048px;}
.fs1_c00008{font-size:78.000000px;}
.y0_c00008{bottom:0.000000px;}
.y7_c00008{bottom:38.338500px;}
.y6_c00008{bottom:88.018500px;}
.y5_c00008{bottom:125.268000px;}
.y4_c00008{bottom:330.745500px;}
.y3_c00008{bottom:347.490000px;}
.y2_c00008{bottom:375.297000px;}
.y1_c00008{bottom:629.095500px;}
.y8_c00008{bottom:693.090000px;}
.y9_c00008{bottom:693.360000px;}
.h4_c00008{height:24.000000px;}
.h2_c00008{height:24.000048px;}
.h3_c00008{height:78.000000px;}
.h1_c00008{height:693.750000px;}
.h0_c00008{height:693.900000px;}
.w1_c00008{width:950.250000px;}
.w0_c00008{width:950.400000px;}
.x0_c00008{left:0.000000px;}
.x4_c00008{left:560.790000px;}
.x3_c00008{left:581.310000px;}
.x2_c00008{left:934.542345px;}
.x1_c00008{left:935.550000px;}
@media print{
.v0_c00008{vertical-align:0.000000pt;}
.ls0_c00008{letter-spacing:0.000000pt;}
.ws0_c00008{word-spacing:0.000000pt;}
.fs2_c00008{font-size:21.333333pt;}
.fs0_c00008{font-size:21.333376pt;}
.fs1_c00008{font-size:69.333333pt;}
.y0_c00008{bottom:0.000000pt;}
.y7_c00008{bottom:34.078667pt;}
.y6_c00008{bottom:78.238667pt;}
.y5_c00008{bottom:111.349333pt;}
.y4_c00008{bottom:293.996000pt;}
.y3_c00008{bottom:308.880000pt;}
.y2_c00008{bottom:333.597333pt;}
.y1_c00008{bottom:559.196000pt;}
.y8_c00008{bottom:616.080000pt;}
.y9_c00008{bottom:616.320000pt;}
.h4_c00008{height:21.333333pt;}
.h2_c00008{height:21.333376pt;}
.h3_c00008{height:69.333333pt;}
.h1_c00008{height:616.666667pt;}
.h0_c00008{height:616.800000pt;}
.w1_c00008{width:844.666667pt;}
.w0_c00008{width:844.800000pt;}
.x0_c00008{left:0.000000pt;}
.x4_c00008{left:498.480000pt;}
.x3_c00008{left:516.720000pt;}
.x2_c00008{left:830.704307pt;}
.x1_c00008{left:831.600000pt;}
}





/* 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_c00009 {
    display:none;
  }
  .loading-indicator_c00009.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00009 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_c00009 { 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_c00009" -> "#page-container .classname_c00009")
 */
.pf_c00009 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00009 { /* 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_c00009.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00009 { /* 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_c00009 { /* 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_c00009 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00009 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00009 {overflow:visible;}
  }
}
.c_c00009 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00009 { /* 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_c00009:after { /* webkit #35443 */
  content: '';
}
.t_c00009:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00009 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 */
}
.__c00009 { /* 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_c00009 { /* info for Javascript */
  display:none;
}
.l_c00009 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00009 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00009 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00009: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_c00009 {
    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_c00009.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00009.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_c00009 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00009{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00009;src:url('chunks/assets/font_cfe63ee56e9e10a97d33a3db.woff2')format("woff");}.ff1_c00009{font-family:ff1_c00009;line-height:1.000000;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;}
.m50_c00009{transform:matrix(0.000071,0.011860,-0.249996,0.001500,0,0);-ms-transform:matrix(0.000071,0.011860,-0.249996,0.001500,0,0);-webkit-transform:matrix(0.000071,0.011860,-0.249996,0.001500,0,0);}
.m7_c00009{transform:matrix(0.000097,-0.032450,0.249999,0.000750,0,0);-ms-transform:matrix(0.000097,-0.032450,0.249999,0.000750,0,0);-webkit-transform:matrix(0.000097,-0.032450,0.249999,0.000750,0,0);}
.m42_c00009{transform:matrix(0.000101,0.005029,-0.249950,0.004999,0,0);-ms-transform:matrix(0.000101,0.005029,-0.249950,0.004999,0,0);-webkit-transform:matrix(0.000101,0.005029,-0.249950,0.004999,0,0);}
.m5f_c00009{transform:matrix(0.000122,0.024475,-0.249997,0.001250,0,0);-ms-transform:matrix(0.000122,0.024475,-0.249997,0.001250,0,0);-webkit-transform:matrix(0.000122,0.024475,-0.249997,0.001250,0,0);}
.m0_c00009{transform:matrix(0.000145,-0.048465,0.249999,0.000750,0,0);-ms-transform:matrix(0.000145,-0.048465,0.249999,0.000750,0,0);-webkit-transform:matrix(0.000145,-0.048465,0.249999,0.000750,0,0);}
.m15_c00009{transform:matrix(0.000151,-0.050450,0.249999,0.000750,0,0);-ms-transform:matrix(0.000151,-0.050450,0.249999,0.000750,0,0);-webkit-transform:matrix(0.000151,-0.050450,0.249999,0.000750,0,0);}
.m22_c00009{transform:matrix(0.000175,-0.058335,0.249999,0.000750,0,0);-ms-transform:matrix(0.000175,-0.058335,0.249999,0.000750,0,0);-webkit-transform:matrix(0.000175,-0.058335,0.249999,0.000750,0,0);}
.m11_c00009{transform:matrix(0.000223,-0.074330,0.249999,0.000750,0,0);-ms-transform:matrix(0.000223,-0.074330,0.249999,0.000750,0,0);-webkit-transform:matrix(0.000223,-0.074330,0.249999,0.000750,0,0);}
.m2d_c00009{transform:matrix(0.000243,0.034714,-0.249994,0.001750,0,0);-ms-transform:matrix(0.000243,0.034714,-0.249994,0.001750,0,0);-webkit-transform:matrix(0.000243,0.034714,-0.249994,0.001750,0,0);}
.m59_c00009{transform:matrix(0.000271,0.045154,-0.249996,0.001500,0,0);-ms-transform:matrix(0.000271,0.045154,-0.249996,0.001500,0,0);-webkit-transform:matrix(0.000271,0.045154,-0.249996,0.001500,0,0);}
.md_c00009{transform:matrix(0.000290,-0.096565,0.249999,0.000750,0,0);-ms-transform:matrix(0.000290,-0.096565,0.249999,0.000750,0,0);-webkit-transform:matrix(0.000290,-0.096565,0.249999,0.000750,0,0);}
.m77_c00009{transform:matrix(0.000306,0.102100,-0.249999,0.000750,0,0);-ms-transform:matrix(0.000306,0.102100,-0.249999,0.000750,0,0);-webkit-transform:matrix(0.000306,0.102100,-0.249999,0.000750,0,0);}
.m69_c00009{transform:matrix(0.000334,0.111394,-0.249999,0.000750,0,0);-ms-transform:matrix(0.000334,0.111394,-0.249999,0.000750,0,0);-webkit-transform:matrix(0.000334,0.111394,-0.249999,0.000750,0,0);}
.m2c_c00009{transform:matrix(0.000345,0.049259,-0.249994,0.001750,0,0);-ms-transform:matrix(0.000345,0.049259,-0.249994,0.001750,0,0);-webkit-transform:matrix(0.000345,0.049259,-0.249994,0.001750,0,0);}
.m6e_c00009{transform:matrix(0.000397,0.132264,-0.249999,0.000750,0,0);-ms-transform:matrix(0.000397,0.132264,-0.249999,0.000750,0,0);-webkit-transform:matrix(0.000397,0.132264,-0.249999,0.000750,0,0);}
.m70_c00009{transform:matrix(0.000409,0.136369,-0.249999,0.000750,0,0);-ms-transform:matrix(0.000409,0.136369,-0.249999,0.000750,0,0);-webkit-transform:matrix(0.000409,0.136369,-0.249999,0.000750,0,0);}
.m75_c00009{transform:matrix(0.000441,0.146874,-0.249999,0.000750,0,0);-ms-transform:matrix(0.000441,0.146874,-0.249999,0.000750,0,0);-webkit-transform:matrix(0.000441,0.146874,-0.249999,0.000750,0,0);}
.m6f_c00009{transform:matrix(0.000464,0.154689,-0.249999,0.000750,0,0);-ms-transform:matrix(0.000464,0.154689,-0.249999,0.000750,0,0);-webkit-transform:matrix(0.000464,0.154689,-0.249999,0.000750,0,0);}
.m7d_c00009{transform:matrix(0.000476,0.237915,-0.250000,0.000500,0,0);-ms-transform:matrix(0.000476,0.237915,-0.250000,0.000500,0,0);-webkit-transform:matrix(0.000476,0.237915,-0.250000,0.000500,0,0);}
.m74_c00009{transform:matrix(0.000494,0.164649,-0.249999,0.000750,0,0);-ms-transform:matrix(0.000494,0.164649,-0.249999,0.000750,0,0);-webkit-transform:matrix(0.000494,0.164649,-0.249999,0.000750,0,0);}
.m80_c00009{transform:matrix(0.000507,0.253369,-0.250000,0.000500,0,0);-ms-transform:matrix(0.000507,0.253369,-0.250000,0.000500,0,0);-webkit-transform:matrix(0.000507,0.253369,-0.250000,0.000500,0,0);}
.m20_c00009{transform:matrix(0.000514,-0.171354,0.249999,0.000750,0,0);-ms-transform:matrix(0.000514,-0.171354,0.249999,0.000750,0,0);-webkit-transform:matrix(0.000514,-0.171354,0.249999,0.000750,0,0);}
.m17_c00009{transform:matrix(0.000514,-0.171394,0.249999,0.000750,0,0);-ms-transform:matrix(0.000514,-0.171394,0.249999,0.000750,0,0);-webkit-transform:matrix(0.000514,-0.171394,0.249999,0.000750,0,0);}
.m1a_c00009{transform:matrix(0.000551,-0.183524,0.249999,0.000750,0,0);-ms-transform:matrix(0.000551,-0.183524,0.249999,0.000750,0,0);-webkit-transform:matrix(0.000551,-0.183524,0.249999,0.000750,0,0);}
.m3_c00009{transform:matrix(0.000557,-0.185539,0.249999,0.000750,0,0);-ms-transform:matrix(0.000557,-0.185539,0.249999,0.000750,0,0);-webkit-transform:matrix(0.000557,-0.185539,0.249999,0.000750,0,0);}
.m6a_c00009{transform:matrix(0.000557,0.185584,-0.249999,0.000750,0,0);-ms-transform:matrix(0.000557,0.185584,-0.249999,0.000750,0,0);-webkit-transform:matrix(0.000557,0.185584,-0.249999,0.000750,0,0);}
.m1f_c00009{transform:matrix(0.000564,-0.187834,0.249999,0.000750,0,0);-ms-transform:matrix(0.000564,-0.187834,0.249999,0.000750,0,0);-webkit-transform:matrix(0.000564,-0.187834,0.249999,0.000750,0,0);}
.m6b_c00009{transform:matrix(0.000579,0.192964,-0.249999,0.000750,0,0);-ms-transform:matrix(0.000579,0.192964,-0.249999,0.000750,0,0);-webkit-transform:matrix(0.000579,0.192964,-0.249999,0.000750,0,0);}
.m16_c00009{transform:matrix(0.000591,-0.197039,0.249999,0.000750,0,0);-ms-transform:matrix(0.000591,-0.197039,0.249999,0.000750,0,0);-webkit-transform:matrix(0.000591,-0.197039,0.249999,0.000750,0,0);}
.m1b_c00009{transform:matrix(0.000592,-0.197284,0.249999,0.000750,0,0);-ms-transform:matrix(0.000592,-0.197284,0.249999,0.000750,0,0);-webkit-transform:matrix(0.000592,-0.197284,0.249999,0.000750,0,0);}
.m6c_c00009{transform:matrix(0.000595,0.198369,-0.249999,0.000750,0,0);-ms-transform:matrix(0.000595,0.198369,-0.249999,0.000750,0,0);-webkit-transform:matrix(0.000595,0.198369,-0.249999,0.000750,0,0);}
.m3a_c00009{transform:matrix(0.000603,0.120523,-0.249997,0.001250,0,0);-ms-transform:matrix(0.000603,0.120523,-0.249997,0.001250,0,0);-webkit-transform:matrix(0.000603,0.120523,-0.249997,0.001250,0,0);}
.m76_c00009{transform:matrix(0.000604,0.201244,-0.249999,0.000750,0,0);-ms-transform:matrix(0.000604,0.201244,-0.249999,0.000750,0,0);-webkit-transform:matrix(0.000604,0.201244,-0.249999,0.000750,0,0);}
.m13_c00009{transform:matrix(0.000624,-0.208144,0.249999,0.000750,0,0);-ms-transform:matrix(0.000624,-0.208144,0.249999,0.000750,0,0);-webkit-transform:matrix(0.000624,-0.208144,0.249999,0.000750,0,0);}
.m1c_c00009{transform:matrix(0.000625,-0.208169,0.249999,0.000750,0,0);-ms-transform:matrix(0.000625,-0.208169,0.249999,0.000750,0,0);-webkit-transform:matrix(0.000625,-0.208169,0.249999,0.000750,0,0);}
.m4b_c00009{transform:matrix(0.000639,0.033629,-0.249955,0.004749,0,0);-ms-transform:matrix(0.000639,0.033629,-0.249955,0.004749,0,0);-webkit-transform:matrix(0.000639,0.033629,-0.249955,0.004749,0,0);}
.m19_c00009{transform:matrix(0.000644,-0.214564,0.249999,0.000750,0,0);-ms-transform:matrix(0.000644,-0.214564,0.249999,0.000750,0,0);-webkit-transform:matrix(0.000644,-0.214564,0.249999,0.000750,0,0);}
.m21_c00009{transform:matrix(0.000645,-0.214874,0.249999,0.000750,0,0);-ms-transform:matrix(0.000645,-0.214874,0.249999,0.000750,0,0);-webkit-transform:matrix(0.000645,-0.214874,0.249999,0.000750,0,0);}
.m71_c00009{transform:matrix(0.000658,0.219419,-0.249999,0.000750,0,0);-ms-transform:matrix(0.000658,0.219419,-0.249999,0.000750,0,0);-webkit-transform:matrix(0.000658,0.219419,-0.249999,0.000750,0,0);}
.m1e_c00009{transform:matrix(0.000668,-0.222769,0.249999,0.000750,0,0);-ms-transform:matrix(0.000668,-0.222769,0.249999,0.000750,0,0);-webkit-transform:matrix(0.000668,-0.222769,0.249999,0.000750,0,0);}
.m81_c00009{transform:matrix(0.000675,0.337254,-0.250000,0.000500,0,0);-ms-transform:matrix(0.000675,0.337254,-0.250000,0.000500,0,0);-webkit-transform:matrix(0.000675,0.337254,-0.250000,0.000500,0,0);}
.m1d_c00009{transform:matrix(0.000684,-0.228164,0.249999,0.000750,0,0);-ms-transform:matrix(0.000684,-0.228164,0.249999,0.000750,0,0);-webkit-transform:matrix(0.000684,-0.228164,0.249999,0.000750,0,0);}
.m7e_c00009{transform:matrix(0.000687,0.343529,-0.250000,0.000500,0,0);-ms-transform:matrix(0.000687,0.343529,-0.250000,0.000500,0,0);-webkit-transform:matrix(0.000687,0.343529,-0.250000,0.000500,0,0);}
.m73_c00009{transform:matrix(0.000696,0.231874,-0.249999,0.000750,0,0);-ms-transform:matrix(0.000696,0.231874,-0.249999,0.000750,0,0);-webkit-transform:matrix(0.000696,0.231874,-0.249999,0.000750,0,0);}
.m72_c00009{transform:matrix(0.000723,0.240964,-0.249999,0.000750,0,0);-ms-transform:matrix(0.000723,0.240964,-0.249999,0.000750,0,0);-webkit-transform:matrix(0.000723,0.240964,-0.249999,0.000750,0,0);}
.m4f_c00009{transform:matrix(0.000745,0.124193,-0.249996,0.001500,0,0);-ms-transform:matrix(0.000745,0.124193,-0.249996,0.001500,0,0);-webkit-transform:matrix(0.000745,0.124193,-0.249996,0.001500,0,0);}
.m82_c00009{transform:matrix(0.000747,0.106722,-0.249994,0.001750,0,0);-ms-transform:matrix(0.000747,0.106722,-0.249994,0.001750,0,0);-webkit-transform:matrix(0.000747,0.106722,-0.249994,0.001750,0,0);}
.m7f_c00009{transform:matrix(0.000756,0.378014,-0.250000,0.000500,0,0);-ms-transform:matrix(0.000756,0.378014,-0.250000,0.000500,0,0);-webkit-transform:matrix(0.000756,0.378014,-0.250000,0.000500,0,0);}
.m12_c00009{transform:matrix(0.000766,-0.255329,0.249999,0.000750,0,0);-ms-transform:matrix(0.000766,-0.255329,0.249999,0.000750,0,0);-webkit-transform:matrix(0.000766,-0.255329,0.249999,0.000750,0,0);}
.mf_c00009{transform:matrix(0.000768,-0.255884,0.249999,0.000750,0,0);-ms-transform:matrix(0.000768,-0.255884,0.249999,0.000750,0,0);-webkit-transform:matrix(0.000768,-0.255884,0.249999,0.000750,0,0);}
.m10_c00009{transform:matrix(0.000800,-0.266824,0.249999,0.000750,0,0);-ms-transform:matrix(0.000800,-0.266824,0.249999,0.000750,0,0);-webkit-transform:matrix(0.000800,-0.266824,0.249999,0.000750,0,0);}
.me_c00009{transform:matrix(0.000803,-0.267674,0.249999,0.000750,0,0);-ms-transform:matrix(0.000803,-0.267674,0.249999,0.000750,0,0);-webkit-transform:matrix(0.000803,-0.267674,0.249999,0.000750,0,0);}
.m7c_c00009{transform:matrix(0.000805,0.201148,-0.249998,0.001000,0,0);-ms-transform:matrix(0.000805,0.201148,-0.249998,0.001000,0,0);-webkit-transform:matrix(0.000805,0.201148,-0.249998,0.001000,0,0);}
.m7b_c00009{transform:matrix(0.000823,0.205823,-0.249998,0.001000,0,0);-ms-transform:matrix(0.000823,0.205823,-0.249998,0.001000,0,0);-webkit-transform:matrix(0.000823,0.205823,-0.249998,0.001000,0,0);}
.m6d_c00009{transform:matrix(0.000846,0.282074,-0.249999,0.000750,0,0);-ms-transform:matrix(0.000846,0.282074,-0.249999,0.000750,0,0);-webkit-transform:matrix(0.000846,0.282074,-0.249999,0.000750,0,0);}
.ma4_c00009{transform:matrix(0.000878,-0.109726,0.249992,0.002000,0,0);-ms-transform:matrix(0.000878,-0.109726,0.249992,0.002000,0,0);-webkit-transform:matrix(0.000878,-0.109726,0.249992,0.002000,0,0);}
.m7a_c00009{transform:matrix(0.000879,0.219648,-0.249998,0.001000,0,0);-ms-transform:matrix(0.000879,0.219648,-0.249998,0.001000,0,0);-webkit-transform:matrix(0.000879,0.219648,-0.249998,0.001000,0,0);}
.m9_c00009{transform:matrix(0.000882,-0.293844,0.249999,0.000750,0,0);-ms-transform:matrix(0.000882,-0.293844,0.249999,0.000750,0,0);-webkit-transform:matrix(0.000882,-0.293844,0.249999,0.000750,0,0);}
.m79_c00009{transform:matrix(0.000890,0.222553,-0.249998,0.001000,0,0);-ms-transform:matrix(0.000890,0.222553,-0.249998,0.001000,0,0);-webkit-transform:matrix(0.000890,0.222553,-0.249998,0.001000,0,0);}
.m2f_c00009{transform:matrix(0.000925,0.132177,-0.249994,0.001750,0,0);-ms-transform:matrix(0.000925,0.132177,-0.249994,0.001750,0,0);-webkit-transform:matrix(0.000925,0.132177,-0.249994,0.001750,0,0);}
.m5a_c00009{transform:matrix(0.000936,0.156082,-0.249996,0.001500,0,0);-ms-transform:matrix(0.000936,0.156082,-0.249996,0.001500,0,0);-webkit-transform:matrix(0.000936,0.156082,-0.249996,0.001500,0,0);}
.m18_c00009{transform:matrix(0.000947,-0.315784,0.249999,0.000750,0,0);-ms-transform:matrix(0.000947,-0.315784,0.249999,0.000750,0,0);-webkit-transform:matrix(0.000947,-0.315784,0.249999,0.000750,0,0);}
.m4a_c00009{transform:matrix(0.000958,0.050441,-0.249955,0.004749,0,0);-ms-transform:matrix(0.000958,0.050441,-0.249955,0.004749,0,0);-webkit-transform:matrix(0.000958,0.050441,-0.249955,0.004749,0,0);}
.m5c_c00009{transform:matrix(0.000987,0.197423,-0.249997,0.001250,0,0);-ms-transform:matrix(0.000987,0.197423,-0.249997,0.001250,0,0);-webkit-transform:matrix(0.000987,0.197423,-0.249997,0.001250,0,0);}
.m85_c00009{transform:matrix(0.001000,0.100045,-0.249988,0.002500,0,0);-ms-transform:matrix(0.001000,0.100045,-0.249988,0.002500,0,0);-webkit-transform:matrix(0.001000,0.100045,-0.249988,0.002500,0,0);}
.m78_c00009{transform:matrix(0.001003,0.250653,-0.249998,0.001000,0,0);-ms-transform:matrix(0.001003,0.250653,-0.249998,0.001000,0,0);-webkit-transform:matrix(0.001003,0.250653,-0.249998,0.001000,0,0);}
.m3b_c00009{transform:matrix(0.001016,0.203212,-0.249997,0.001250,0,0);-ms-transform:matrix(0.001016,0.203212,-0.249997,0.001250,0,0);-webkit-transform:matrix(0.001016,0.203212,-0.249997,0.001250,0,0);}
.m4_c00009{transform:matrix(0.001037,-0.345768,0.249999,0.000750,0,0);-ms-transform:matrix(0.001037,-0.345768,0.249999,0.000750,0,0);-webkit-transform:matrix(0.001037,-0.345768,0.249999,0.000750,0,0);}
.m5d_c00009{transform:matrix(0.001115,0.222917,-0.249997,0.001250,0,0);-ms-transform:matrix(0.001115,0.222917,-0.249997,0.001250,0,0);-webkit-transform:matrix(0.001115,0.222917,-0.249997,0.001250,0,0);}
.m37_c00009{transform:matrix(0.001132,0.226312,-0.249997,0.001250,0,0);-ms-transform:matrix(0.001132,0.226312,-0.249997,0.001250,0,0);-webkit-transform:matrix(0.001132,0.226312,-0.249997,0.001250,0,0);}
.m38_c00009{transform:matrix(0.001147,0.229467,-0.249997,0.001250,0,0);-ms-transform:matrix(0.001147,0.229467,-0.249997,0.001250,0,0);-webkit-transform:matrix(0.001147,0.229467,-0.249997,0.001250,0,0);}
.m56_c00009{transform:matrix(0.001157,0.192797,-0.249996,0.001500,0,0);-ms-transform:matrix(0.001157,0.192797,-0.249996,0.001500,0,0);-webkit-transform:matrix(0.001157,0.192797,-0.249996,0.001500,0,0);}
.m53_c00009{transform:matrix(0.001174,0.195586,-0.249996,0.001500,0,0);-ms-transform:matrix(0.001174,0.195586,-0.249996,0.001500,0,0);-webkit-transform:matrix(0.001174,0.195586,-0.249996,0.001500,0,0);}
.m34_c00009{transform:matrix(0.001198,0.199661,-0.249996,0.001500,0,0);-ms-transform:matrix(0.001198,0.199661,-0.249996,0.001500,0,0);-webkit-transform:matrix(0.001198,0.199661,-0.249996,0.001500,0,0);}
.m58_c00009{transform:matrix(0.001210,0.201676,-0.249996,0.001500,0,0);-ms-transform:matrix(0.001210,0.201676,-0.249996,0.001500,0,0);-webkit-transform:matrix(0.001210,0.201676,-0.249996,0.001500,0,0);}
.m55_c00009{transform:matrix(0.001211,0.201771,-0.249996,0.001500,0,0);-ms-transform:matrix(0.001211,0.201771,-0.249996,0.001500,0,0);-webkit-transform:matrix(0.001211,0.201771,-0.249996,0.001500,0,0);}
.m39_c00009{transform:matrix(0.001270,0.254092,-0.249997,0.001250,0,0);-ms-transform:matrix(0.001270,0.254092,-0.249997,0.001250,0,0);-webkit-transform:matrix(0.001270,0.254092,-0.249997,0.001250,0,0);}
.m6_c00009{transform:matrix(0.001344,-0.447923,0.249999,0.000750,0,0);-ms-transform:matrix(0.001344,-0.447923,0.249999,0.000750,0,0);-webkit-transform:matrix(0.001344,-0.447923,0.249999,0.000750,0,0);}
.m3f_c00009{transform:matrix(0.001370,0.342577,-0.249998,0.001000,0,0);-ms-transform:matrix(0.001370,0.342577,-0.249998,0.001000,0,0);-webkit-transform:matrix(0.001370,0.342577,-0.249998,0.001000,0,0);}
.mc_c00009{transform:matrix(0.001372,-0.457418,0.249999,0.000750,0,0);-ms-transform:matrix(0.001372,-0.457418,0.249999,0.000750,0,0);-webkit-transform:matrix(0.001372,-0.457418,0.249999,0.000750,0,0);}
.m54_c00009{transform:matrix(0.001389,0.231436,-0.249996,0.001500,0,0);-ms-transform:matrix(0.001389,0.231436,-0.249996,0.001500,0,0);-webkit-transform:matrix(0.001389,0.231436,-0.249996,0.001500,0,0);}
.m87_c00009{transform:matrix(0.001436,0.143623,-0.249988,0.002500,0,0);-ms-transform:matrix(0.001436,0.143623,-0.249988,0.002500,0,0);-webkit-transform:matrix(0.001436,0.143623,-0.249988,0.002500,0,0);}
.m2a_c00009{transform:matrix(0.001455,0.207790,-0.249994,0.001750,0,0);-ms-transform:matrix(0.001455,0.207790,-0.249994,0.001750,0,0);-webkit-transform:matrix(0.001455,0.207790,-0.249994,0.001750,0,0);}
.m1_c00009{transform:matrix(0.001517,-0.505623,0.249999,0.000750,0,0);-ms-transform:matrix(0.001517,-0.505623,0.249999,0.000750,0,0);-webkit-transform:matrix(0.001517,-0.505623,0.249999,0.000750,0,0);}
.m2_c00009{transform:matrix(0.001576,-0.525188,0.249999,0.000750,0,0);-ms-transform:matrix(0.001576,-0.525188,0.249999,0.000750,0,0);-webkit-transform:matrix(0.001576,-0.525188,0.249999,0.000750,0,0);}
.m2e_c00009{transform:matrix(0.001604,0.229184,-0.249994,0.001750,0,0);-ms-transform:matrix(0.001604,0.229184,-0.249994,0.001750,0,0);-webkit-transform:matrix(0.001604,0.229184,-0.249994,0.001750,0,0);}
.m5_c00009{transform:matrix(0.001612,-0.537463,0.249999,0.000750,0,0);-ms-transform:matrix(0.001612,-0.537463,0.249999,0.000750,0,0);-webkit-transform:matrix(0.001612,-0.537463,0.249999,0.000750,0,0);}
.m61_c00009{transform:matrix(0.001653,0.275425,-0.249996,0.001500,0,0);-ms-transform:matrix(0.001653,0.275425,-0.249996,0.001500,0,0);-webkit-transform:matrix(0.001653,0.275425,-0.249996,0.001500,0,0);}
.m60_c00009{transform:matrix(0.001680,0.335956,-0.249997,0.001250,0,0);-ms-transform:matrix(0.001680,0.335956,-0.249997,0.001250,0,0);-webkit-transform:matrix(0.001680,0.335956,-0.249997,0.001250,0,0);}
.m36_c00009{transform:matrix(0.001710,0.341926,-0.249997,0.001250,0,0);-ms-transform:matrix(0.001710,0.341926,-0.249997,0.001250,0,0);-webkit-transform:matrix(0.001710,0.341926,-0.249997,0.001250,0,0);}
.m9e_c00009{transform:matrix(0.001799,-0.224833,0.249992,0.002000,0,0);-ms-transform:matrix(0.001799,-0.224833,0.249992,0.002000,0,0);-webkit-transform:matrix(0.001799,-0.224833,0.249992,0.002000,0,0);}
.m43_c00009{transform:matrix(0.001859,0.092926,-0.249950,0.004999,0,0);-ms-transform:matrix(0.001859,0.092926,-0.249950,0.004999,0,0);-webkit-transform:matrix(0.001859,0.092926,-0.249950,0.004999,0,0);}
.m14_c00009{transform:matrix(0.001867,-0.622317,0.249999,0.000750,0,0);-ms-transform:matrix(0.001867,-0.622317,0.249999,0.000750,0,0);-webkit-transform:matrix(0.001867,-0.622317,0.249999,0.000750,0,0);}
.m2b_c00009{transform:matrix(0.001895,0.270698,-0.249994,0.001750,0,0);-ms-transform:matrix(0.001895,0.270698,-0.249994,0.001750,0,0);-webkit-transform:matrix(0.001895,0.270698,-0.249994,0.001750,0,0);}
.m51_c00009{transform:matrix(0.002032,0.338614,-0.249996,0.001500,0,0);-ms-transform:matrix(0.002032,0.338614,-0.249996,0.001500,0,0);-webkit-transform:matrix(0.002032,0.338614,-0.249996,0.001500,0,0);}
.m4c_c00009{transform:matrix(0.002117,0.352814,-0.249996,0.001500,0,0);-ms-transform:matrix(0.002117,0.352814,-0.249996,0.001500,0,0);-webkit-transform:matrix(0.002117,0.352814,-0.249996,0.001500,0,0);}
.ma1_c00009{transform:matrix(0.002142,-0.267746,0.249992,0.002000,0,0);-ms-transform:matrix(0.002142,-0.267746,0.249992,0.002000,0,0);-webkit-transform:matrix(0.002142,-0.267746,0.249992,0.002000,0,0);}
.m86_c00009{transform:matrix(0.002184,0.218444,-0.249988,0.002500,0,0);-ms-transform:matrix(0.002184,0.218444,-0.249988,0.002500,0,0);-webkit-transform:matrix(0.002184,0.218444,-0.249988,0.002500,0,0);}
.ma3_c00009{transform:matrix(0.002299,-0.287411,0.249992,0.002000,0,0);-ms-transform:matrix(0.002299,-0.287411,0.249992,0.002000,0,0);-webkit-transform:matrix(0.002299,-0.287411,0.249992,0.002000,0,0);}
.m5e_c00009{transform:matrix(0.002343,0.468584,-0.249997,0.001250,0,0);-ms-transform:matrix(0.002343,0.468584,-0.249997,0.001250,0,0);-webkit-transform:matrix(0.002343,0.468584,-0.249997,0.001250,0,0);}
.m57_c00009{transform:matrix(0.002415,0.402493,-0.249996,0.001500,0,0);-ms-transform:matrix(0.002415,0.402493,-0.249996,0.001500,0,0);-webkit-transform:matrix(0.002415,0.402493,-0.249996,0.001500,0,0);}
.ma2_c00009{transform:matrix(0.002508,-0.313455,0.249992,0.002000,0,0);-ms-transform:matrix(0.002508,-0.313455,0.249992,0.002000,0,0);-webkit-transform:matrix(0.002508,-0.313455,0.249992,0.002000,0,0);}
.m9d_c00009{transform:matrix(0.002557,-0.319670,0.249992,0.002000,0,0);-ms-transform:matrix(0.002557,-0.319670,0.249992,0.002000,0,0);-webkit-transform:matrix(0.002557,-0.319670,0.249992,0.002000,0,0);}
.m3e_c00009{transform:matrix(0.002561,0.640170,-0.249998,0.001000,0,0);-ms-transform:matrix(0.002561,0.640170,-0.249998,0.001000,0,0);-webkit-transform:matrix(0.002561,0.640170,-0.249998,0.001000,0,0);}
.ma0_c00009{transform:matrix(0.002612,-0.326485,0.249992,0.002000,0,0);-ms-transform:matrix(0.002612,-0.326485,0.249992,0.002000,0,0);-webkit-transform:matrix(0.002612,-0.326485,0.249992,0.002000,0,0);}
.m63_c00009{transform:matrix(0.002637,0.188327,-0.249976,0.003500,0,0);-ms-transform:matrix(0.002637,0.188327,-0.249976,0.003500,0,0);-webkit-transform:matrix(0.002637,0.188327,-0.249976,0.003500,0,0);}
.m67_c00009{transform:matrix(0.002660,0.189971,-0.249976,0.003500,0,0);-ms-transform:matrix(0.002660,0.189971,-0.249976,0.003500,0,0);-webkit-transform:matrix(0.002660,0.189971,-0.249976,0.003500,0,0);}
.m65_c00009{transform:matrix(0.002836,0.202595,-0.249976,0.003500,0,0);-ms-transform:matrix(0.002836,0.202595,-0.249976,0.003500,0,0);-webkit-transform:matrix(0.002836,0.202595,-0.249976,0.003500,0,0);}
.m4e_c00009{transform:matrix(0.002983,0.497191,-0.249996,0.001500,0,0);-ms-transform:matrix(0.002983,0.497191,-0.249996,0.001500,0,0);-webkit-transform:matrix(0.002983,0.497191,-0.249996,0.001500,0,0);}
.m4d_c00009{transform:matrix(0.003053,0.508916,-0.249996,0.001500,0,0);-ms-transform:matrix(0.003053,0.508916,-0.249996,0.001500,0,0);-webkit-transform:matrix(0.003053,0.508916,-0.249996,0.001500,0,0);}
.m62_c00009{transform:matrix(0.003056,0.218274,-0.249976,0.003500,0,0);-ms-transform:matrix(0.003056,0.218274,-0.249976,0.003500,0,0);-webkit-transform:matrix(0.003056,0.218274,-0.249976,0.003500,0,0);}
.m68_c00009{transform:matrix(0.003107,0.221903,-0.249976,0.003500,0,0);-ms-transform:matrix(0.003107,0.221903,-0.249976,0.003500,0,0);-webkit-transform:matrix(0.003107,0.221903,-0.249976,0.003500,0,0);}
.m66_c00009{transform:matrix(0.003210,0.229293,-0.249976,0.003500,0,0);-ms-transform:matrix(0.003210,0.229293,-0.249976,0.003500,0,0);-webkit-transform:matrix(0.003210,0.229293,-0.249976,0.003500,0,0);}
.mb_c00009{transform:matrix(0.003247,-1.082390,0.249999,0.000750,0,0);-ms-transform:matrix(0.003247,-1.082390,0.249999,0.000750,0,0);-webkit-transform:matrix(0.003247,-1.082390,0.249999,0.000750,0,0);}
.m52_c00009{transform:matrix(0.003263,0.543785,-0.249996,0.001500,0,0);-ms-transform:matrix(0.003263,0.543785,-0.249996,0.001500,0,0);-webkit-transform:matrix(0.003263,0.543785,-0.249996,0.001500,0,0);}
.m9f_c00009{transform:matrix(0.003386,-0.423286,0.249992,0.002000,0,0);-ms-transform:matrix(0.003386,-0.423286,0.249992,0.002000,0,0);-webkit-transform:matrix(0.003386,-0.423286,0.249992,0.002000,0,0);}
.m64_c00009{transform:matrix(0.003518,0.251305,-0.249976,0.003500,0,0);-ms-transform:matrix(0.003518,0.251305,-0.249976,0.003500,0,0);-webkit-transform:matrix(0.003518,0.251305,-0.249976,0.003500,0,0);}
.m27_c00009{transform:matrix(0.003552,-0.208915,0.249964,0.004249,0,0);-ms-transform:matrix(0.003552,-0.208915,0.249964,0.004249,0,0);-webkit-transform:matrix(0.003552,-0.208915,0.249964,0.004249,0,0);}
.m3d_c00009{transform:matrix(0.003557,0.889323,-0.249998,0.001000,0,0);-ms-transform:matrix(0.003557,0.889323,-0.249998,0.001000,0,0);-webkit-transform:matrix(0.003557,0.889323,-0.249998,0.001000,0,0);}
.m44_c00009{transform:matrix(0.003678,0.193555,-0.249955,0.004749,0,0);-ms-transform:matrix(0.003678,0.193555,-0.249955,0.004749,0,0);-webkit-transform:matrix(0.003678,0.193555,-0.249955,0.004749,0,0);}
.m9b_c00009{transform:matrix(0.003714,-0.464200,0.249992,0.002000,0,0);-ms-transform:matrix(0.003714,-0.464200,0.249992,0.002000,0,0);-webkit-transform:matrix(0.003714,-0.464200,0.249992,0.002000,0,0);}
.m23_c00009{transform:matrix(0.003854,-0.226712,0.249964,0.004249,0,0);-ms-transform:matrix(0.003854,-0.226712,0.249964,0.004249,0,0);-webkit-transform:matrix(0.003854,-0.226712,0.249964,0.004249,0,0);}
.m49_c00009{transform:matrix(0.003886,0.204523,-0.249955,0.004749,0,0);-ms-transform:matrix(0.003886,0.204523,-0.249955,0.004749,0,0);-webkit-transform:matrix(0.003886,0.204523,-0.249955,0.004749,0,0);}
.m47_c00009{transform:matrix(0.003904,0.205463,-0.249955,0.004749,0,0);-ms-transform:matrix(0.003904,0.205463,-0.249955,0.004749,0,0);-webkit-transform:matrix(0.003904,0.205463,-0.249955,0.004749,0,0);}
.m30_c00009{transform:matrix(0.003940,0.197001,-0.249950,0.004999,0,0);-ms-transform:matrix(0.003940,0.197001,-0.249950,0.004999,0,0);-webkit-transform:matrix(0.003940,0.197001,-0.249950,0.004999,0,0);}
.m48_c00009{transform:matrix(0.004099,0.215721,-0.249955,0.004749,0,0);-ms-transform:matrix(0.004099,0.215721,-0.249955,0.004749,0,0);-webkit-transform:matrix(0.004099,0.215721,-0.249955,0.004749,0,0);}
.m33_c00009{transform:matrix(0.004101,0.205074,-0.249950,0.004999,0,0);-ms-transform:matrix(0.004101,0.205074,-0.249950,0.004999,0,0);-webkit-transform:matrix(0.004101,0.205074,-0.249950,0.004999,0,0);}
.m24_c00009{transform:matrix(0.004198,-0.246914,0.249964,0.004249,0,0);-ms-transform:matrix(0.004198,-0.246914,0.249964,0.004249,0,0);-webkit-transform:matrix(0.004198,-0.246914,0.249964,0.004249,0,0);}
.m32_c00009{transform:matrix(0.004245,0.212243,-0.249950,0.004999,0,0);-ms-transform:matrix(0.004245,0.212243,-0.249950,0.004999,0,0);-webkit-transform:matrix(0.004245,0.212243,-0.249950,0.004999,0,0);}
.m31_c00009{transform:matrix(0.004368,0.218391,-0.249950,0.004999,0,0);-ms-transform:matrix(0.004368,0.218391,-0.249950,0.004999,0,0);-webkit-transform:matrix(0.004368,0.218391,-0.249950,0.004999,0,0);}
.m46_c00009{transform:matrix(0.004439,0.233653,-0.249955,0.004749,0,0);-ms-transform:matrix(0.004439,0.233653,-0.249955,0.004749,0,0);-webkit-transform:matrix(0.004439,0.233653,-0.249955,0.004749,0,0);}
.m40_c00009{transform:matrix(0.004448,1.111906,-0.249998,0.001000,0,0);-ms-transform:matrix(0.004448,1.111906,-0.249998,0.001000,0,0);-webkit-transform:matrix(0.004448,1.111906,-0.249998,0.001000,0,0);}
.m45_c00009{transform:matrix(0.004506,0.237182,-0.249955,0.004749,0,0);-ms-transform:matrix(0.004506,0.237182,-0.249955,0.004749,0,0);-webkit-transform:matrix(0.004506,0.237182,-0.249955,0.004749,0,0);}
.m84_c00009{transform:matrix(0.004718,0.673953,-0.249994,0.001750,0,0);-ms-transform:matrix(0.004718,0.673953,-0.249994,0.001750,0,0);-webkit-transform:matrix(0.004718,0.673953,-0.249994,0.001750,0,0);}
.m3c_c00009{transform:matrix(0.004844,0.968713,-0.249997,0.001250,0,0);-ms-transform:matrix(0.004844,0.968713,-0.249997,0.001250,0,0);-webkit-transform:matrix(0.004844,0.968713,-0.249997,0.001250,0,0);}
.ma_c00009{transform:matrix(0.004960,-1.653278,0.249999,0.000750,0,0);-ms-transform:matrix(0.004960,-1.653278,0.249999,0.000750,0,0);-webkit-transform:matrix(0.004960,-1.653278,0.249999,0.000750,0,0);}
.m5b_c00009{transform:matrix(0.005235,1.047042,-0.249997,0.001250,0,0);-ms-transform:matrix(0.005235,1.047042,-0.249997,0.001250,0,0);-webkit-transform:matrix(0.005235,1.047042,-0.249997,0.001250,0,0);}
.m25_c00009{transform:matrix(0.005241,-0.308275,0.249964,0.004249,0,0);-ms-transform:matrix(0.005241,-0.308275,0.249964,0.004249,0,0);-webkit-transform:matrix(0.005241,-0.308275,0.249964,0.004249,0,0);}
.m26_c00009{transform:matrix(0.005359,-0.315244,0.249964,0.004249,0,0);-ms-transform:matrix(0.005359,-0.315244,0.249964,0.004249,0,0);-webkit-transform:matrix(0.005359,-0.315244,0.249964,0.004249,0,0);}
.m29_c00009{transform:matrix(0.005602,-0.329532,0.249964,0.004249,0,0);-ms-transform:matrix(0.005602,-0.329532,0.249964,0.004249,0,0);-webkit-transform:matrix(0.005602,-0.329532,0.249964,0.004249,0,0);}
.m8_c00009{transform:matrix(0.007416,-2.471909,0.249999,0.000750,0,0);-ms-transform:matrix(0.007416,-2.471909,0.249999,0.000750,0,0);-webkit-transform:matrix(0.007416,-2.471909,0.249999,0.000750,0,0);}
.m28_c00009{transform:matrix(0.008697,-0.511591,0.249964,0.004249,0,0);-ms-transform:matrix(0.008697,-0.511591,0.249964,0.004249,0,0);-webkit-transform:matrix(0.008697,-0.511591,0.249964,0.004249,0,0);}
.m35_c00009{transform:matrix(0.008853,1.475493,-0.249996,0.001500,0,0);-ms-transform:matrix(0.008853,1.475493,-0.249996,0.001500,0,0);-webkit-transform:matrix(0.008853,1.475493,-0.249996,0.001500,0,0);}
.m9c_c00009{transform:matrix(0.015787,-1.973422,0.249992,0.002000,0,0);-ms-transform:matrix(0.015787,-1.973422,0.249992,0.002000,0,0);-webkit-transform:matrix(0.015787,-1.973422,0.249992,0.002000,0,0);}
.m83_c00009{transform:matrix(0.023486,3.355133,-0.249994,0.001750,0,0);-ms-transform:matrix(0.023486,3.355133,-0.249994,0.001750,0,0);-webkit-transform:matrix(0.023486,3.355133,-0.249994,0.001750,0,0);}
.m41_c00009{transform:matrix(0.035349,1.767442,-0.249950,0.004999,0,0);-ms-transform:matrix(0.035349,1.767442,-0.249950,0.004999,0,0);-webkit-transform:matrix(0.035349,1.767442,-0.249950,0.004999,0,0);}
.m88_c00009{transform:matrix(0.148490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148490,0.000000,0.000000,0.250000,0,0);}
.maf_c00009{transform:matrix(0.174871,0.001224,-0.001750,0.249994,0,0);-ms-transform:matrix(0.174871,0.001224,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.174871,0.001224,-0.001750,0.249994,0,0);}
.m95_c00009{transform:matrix(0.178885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178885,0.000000,0.000000,0.250000,0,0);}
.m92_c00009{transform:matrix(0.183850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183850,0.000000,0.000000,0.250000,0,0);}
.m93_c00009{transform:matrix(0.193130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193130,0.000000,0.000000,0.250000,0,0);}
.mb4_c00009{transform:matrix(0.196565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196565,0.000000,0.000000,0.250000,0,0);}
.mb0_c00009{transform:matrix(0.215375,0.001508,-0.001750,0.249994,0,0);-ms-transform:matrix(0.215375,0.001508,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.215375,0.001508,-0.001750,0.249994,0,0);}
.ma5_c00009{transform:matrix(0.257569,0.001803,-0.001750,0.249994,0,0);-ms-transform:matrix(0.257569,0.001803,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.257569,0.001803,-0.001750,0.249994,0,0);}
.mac_c00009{transform:matrix(0.285343,0.001997,-0.001750,0.249994,0,0);-ms-transform:matrix(0.285343,0.001997,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.285343,0.001997,-0.001750,0.249994,0,0);}
.m8f_c00009{transform:matrix(0.296985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296985,0.000000,0.000000,0.250000,0,0);}
.m94_c00009{transform:matrix(0.298330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298330,0.000000,0.000000,0.250000,0,0);}
.m8c_c00009{transform:matrix(0.303950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303950,0.000000,0.000000,0.250000,0,0);}
.mb1_c00009{transform:matrix(0.306512,0.002146,-0.001750,0.249994,0,0);-ms-transform:matrix(0.306512,0.002146,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.306512,0.002146,-0.001750,0.249994,0,0);}
.ma8_c00009{transform:matrix(0.307072,0.002150,-0.001750,0.249994,0,0);-ms-transform:matrix(0.307072,0.002150,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.307072,0.002150,-0.001750,0.249994,0,0);}
.m90_c00009{transform:matrix(0.311210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311210,0.000000,0.000000,0.250000,0,0);}
.ma7_c00009{transform:matrix(0.333342,0.002333,-0.001750,0.249994,0,0);-ms-transform:matrix(0.333342,0.002333,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.333342,0.002333,-0.001750,0.249994,0,0);}
.mab_c00009{transform:matrix(0.346687,0.002427,-0.001750,0.249994,0,0);-ms-transform:matrix(0.346687,0.002427,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.346687,0.002427,-0.001750,0.249994,0,0);}
.m8e_c00009{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00009{transform:matrix(0.375840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375840,0.000000,0.000000,0.250000,0,0);}
.mae_c00009{transform:matrix(0.380316,0.002662,-0.001750,0.249994,0,0);-ms-transform:matrix(0.380316,0.002662,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.380316,0.002662,-0.001750,0.249994,0,0);}
.mb2_c00009{transform:matrix(0.394240,0.002760,-0.001750,0.249994,0,0);-ms-transform:matrix(0.394240,0.002760,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.394240,0.002760,-0.001750,0.249994,0,0);}
.maa_c00009{transform:matrix(0.402270,0.002816,-0.001750,0.249994,0,0);-ms-transform:matrix(0.402270,0.002816,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.402270,0.002816,-0.001750,0.249994,0,0);}
.ma9_c00009{transform:matrix(0.409815,0.002869,-0.001750,0.249994,0,0);-ms-transform:matrix(0.409815,0.002869,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.409815,0.002869,-0.001750,0.249994,0,0);}
.m8d_c00009{transform:matrix(0.472015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472015,0.000000,0.000000,0.250000,0,0);}
.m89_c00009{transform:matrix(0.517880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517880,0.000000,0.000000,0.250000,0,0);}
.m8b_c00009{transform:matrix(0.523925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523925,0.000000,0.000000,0.250000,0,0);}
.ma6_c00009{transform:matrix(0.533872,0.003737,-0.001750,0.249994,0,0);-ms-transform:matrix(0.533872,0.003737,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.533872,0.003737,-0.001750,0.249994,0,0);}
.m91_c00009{transform:matrix(0.536005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536005,0.000000,0.000000,0.250000,0,0);}
.m96_c00009{transform:matrix(0.664830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.664830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.664830,0.000000,0.000000,0.250000,0,0);}
.m97_c00009{transform:matrix(0.738240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.738240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.738240,0.000000,0.000000,0.250000,0,0);}
.m8a_c00009{transform:matrix(0.820625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.820625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.820625,0.000000,0.000000,0.250000,0,0);}
.m98_c00009{transform:matrix(1.135340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.135340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.135340,0.000000,0.000000,0.250000,0,0);}
.mad_c00009{transform:matrix(1.414325,0.009900,-0.001750,0.249994,0,0);-ms-transform:matrix(1.414325,0.009900,-0.001750,0.249994,0,0);-webkit-transform:matrix(1.414325,0.009900,-0.001750,0.249994,0,0);}
.m99_c00009{transform:matrix(1.552065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.552065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.552065,0.000000,0.000000,0.250000,0,0);}
.mb3_c00009{transform:matrix(1.770517,0.012394,-0.001750,0.249994,0,0);-ms-transform:matrix(1.770517,0.012394,-0.001750,0.249994,0,0);-webkit-transform:matrix(1.770517,0.012394,-0.001750,0.249994,0,0);}
.v0_c00009{vertical-align:0.000000px;}
.ls0_c00009{letter-spacing:0.000000px;}
.sc__c00009{text-shadow:none;}
.sc0_c00009{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__c00009{-webkit-text-stroke:0px transparent;}
.sc0_c00009{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00009{word-spacing:0.000000px;}
.fc0_c00009{color:transparent;}
.fs15_c00009{font-size:18.000000px;}
.fs13_c00009{font-size:24.000588px;}
.fs19_c00009{font-size:30.000000px;}
.fs0_c00009{font-size:30.000135px;}
.fs16_c00009{font-size:30.000960px;}
.fs17_c00009{font-size:36.001152px;}
.fs11_c00009{font-size:42.000189px;}
.fs18_c00009{font-size:42.001029px;}
.fs1_c00009{font-size:54.000243px;}
.fs4_c00009{font-size:66.001617px;}
.fs12_c00009{font-size:72.000144px;}
.fs2_c00009{font-size:72.000324px;}
.fs8_c00009{font-size:72.000576px;}
.fs7_c00009{font-size:72.000900px;}
.fs6_c00009{font-size:72.001296px;}
.fs3_c00009{font-size:72.010403px;}
.fsa_c00009{font-size:72.012995px;}
.fs5_c00009{font-size:72.014399px;}
.fs10_c00009{font-size:78.000351px;}
.fsb_c00009{font-size:78.000975px;}
.fsc_c00009{font-size:78.001404px;}
.fse_c00009{font-size:78.007644px;}
.fsf_c00009{font-size:84.000378px;}
.fsd_c00009{font-size:84.008232px;}
.fs9_c00009{font-size:120.023998px;}
.fs14_c00009{font-size:342.017100px;}
.y0_c00009{bottom:0.000000px;}
.y30_c00009{bottom:3.232500px;}
.y71_c00009{bottom:4.881744px;}
.y75_c00009{bottom:4.883784px;}
.y74_c00009{bottom:4.883904px;}
.y72_c00009{bottom:4.884474px;}
.y73_c00009{bottom:4.884594px;}
.y70_c00009{bottom:12.159990px;}
.y5b_c00009{bottom:14.301000px;}
.y99_c00009{bottom:14.848956px;}
.y20_c00009{bottom:18.064634px;}
.y14_c00009{bottom:20.513419px;}
.y23_c00009{bottom:22.636713px;}
.y8e_c00009{bottom:30.240000px;}
.y1f_c00009{bottom:36.154908px;}
.yd_c00009{bottom:38.335500px;}
.y1a_c00009{bottom:50.746979px;}
.y6b_c00009{bottom:51.567000px;}
.y7d_c00009{bottom:55.641000px;}
.y16_c00009{bottom:56.144123px;}
.y53_c00009{bottom:58.585500px;}
.y61_c00009{bottom:64.009500px;}
.y85_c00009{bottom:73.998000px;}
.y13_c00009{bottom:74.251747px;}
.y6f_c00009{bottom:78.848832px;}
.y2a_c00009{bottom:80.826000px;}
.y82_c00009{bottom:83.431500px;}
.y7c_c00009{bottom:88.848000px;}
.y12_c00009{bottom:89.890990px;}
.y4c_c00009{bottom:91.953000px;}
.y2f_c00009{bottom:92.103000px;}
.y60_c00009{bottom:92.307000px;}
.y98_c00009{bottom:93.703032px;}
.y8d_c00009{bottom:98.280000px;}
.y1e_c00009{bottom:100.421885px;}
.y69_c00009{bottom:117.158820px;}
.y90_c00009{bottom:118.252500px;}
.y84_c00009{bottom:120.687000px;}
.y2e_c00009{bottom:124.684500px;}
.y52_c00009{bottom:126.084000px;}
.y83_c00009{bottom:129.586500px;}
.y8b_c00009{bottom:130.140000px;}
.y8c_c00009{bottom:135.000000px;}
.y8f_c00009{bottom:137.944500px;}
.y89_c00009{bottom:141.480000px;}
.y68_c00009{bottom:150.909243px;}
.y97_c00009{bottom:150.944808px;}
.y8a_c00009{bottom:152.799000px;}
.y81_c00009{bottom:154.708500px;}
.yc_c00009{bottom:156.595500px;}
.y2d_c00009{bottom:158.163000px;}
.y29_c00009{bottom:158.242500px;}
.y3d_c00009{bottom:158.722500px;}
.y41_c00009{bottom:158.781000px;}
.y36_c00009{bottom:158.782500px;}
.y4b_c00009{bottom:158.905500px;}
.y7b_c00009{bottom:159.051000px;}
.y5a_c00009{bottom:159.522000px;}
.y5f_c00009{bottom:159.805500px;}
.y78_c00009{bottom:182.813256px;}
.y7a_c00009{bottom:186.049500px;}
.ya9_c00009{bottom:193.050000px;}
.y6e_c00009{bottom:210.081502px;}
.y88_c00009{bottom:212.362500px;}
.yb_c00009{bottom:217.345500px;}
.y67_c00009{bottom:220.576320px;}
.ya_c00009{bottom:227.877000px;}
.y80_c00009{bottom:230.040000px;}
.y44_c00009{bottom:233.199000px;}
.y2c_c00009{bottom:236.010000px;}
.y6d_c00009{bottom:242.751669px;}
.y66_c00009{bottom:245.417340px;}
.y51_c00009{bottom:253.449000px;}
.y7f_c00009{bottom:259.743000px;}
.y40_c00009{bottom:264.354000px;}
.y11_c00009{bottom:268.924749px;}
.y19_c00009{bottom:269.178021px;}
.y1d_c00009{bottom:269.447450px;}
.y28_c00009{bottom:269.505000px;}
.y3c_c00009{bottom:270.564000px;}
.y4a_c00009{bottom:270.661500px;}
.y59_c00009{bottom:270.840000px;}
.y5e_c00009{bottom:271.377000px;}
.y79_c00009{bottom:271.908000px;}
.y77_c00009{bottom:278.425653px;}
.y22_c00009{bottom:287.787584px;}
.y35_c00009{bottom:289.467000px;}
.y9_c00009{bottom:304.825500px;}
.y62_c00009{bottom:309.150000px;}
.y2b_c00009{bottom:310.801500px;}
.y6c_c00009{bottom:313.222029px;}
.y65_c00009{bottom:318.321753px;}
.y3b_c00009{bottom:318.502500px;}
.y50_c00009{bottom:320.458500px;}
.y43_c00009{bottom:321.432000px;}
.y8_c00009{bottom:323.460000px;}
.y7e_c00009{bottom:336.150000px;}
.y27_c00009{bottom:355.779000px;}
.y4f_c00009{bottom:380.412000px;}
.y26_c00009{bottom:388.216500px;}
.y6a_c00009{bottom:390.700500px;}
.y10_c00009{bottom:392.579157px;}
.y3f_c00009{bottom:397.119000px;}
.y49_c00009{bottom:400.459500px;}
.y58_c00009{bottom:404.208000px;}
.y34_c00009{bottom:405.861000px;}
.y3a_c00009{bottom:406.362000px;}
.y7_c00009{bottom:410.668500px;}
.yf_c00009{bottom:411.209445px;}
.y18_c00009{bottom:418.756763px;}
.y5d_c00009{bottom:423.111000px;}
.y64_c00009{bottom:423.883500px;}
.y48_c00009{bottom:425.845500px;}
.y1c_c00009{bottom:430.900902px;}
.y47_c00009{bottom:441.300000px;}
.y96_c00009{bottom:442.009596px;}
.y6_c00009{bottom:444.415500px;}
.y17_c00009{bottom:447.917100px;}
.y15_c00009{bottom:448.455784px;}
.y1b_c00009{bottom:454.122753px;}
.y39_c00009{bottom:456.585000px;}
.y5_c00009{bottom:456.835500px;}
.y4e_c00009{bottom:457.920000px;}
.y57_c00009{bottom:460.915500px;}
.y76_c00009{bottom:470.683943px;}
.y25_c00009{bottom:474.319500px;}
.y46_c00009{bottom:480.151500px;}
.y4_c00009{bottom:482.484000px;}
.y4d_c00009{bottom:485.385000px;}
.y56_c00009{bottom:487.374000px;}
.y33_c00009{bottom:487.962000px;}
.y24_c00009{bottom:489.702000px;}
.y45_c00009{bottom:494.152500px;}
.y55_c00009{bottom:503.821500px;}
.y32_c00009{bottom:504.090000px;}
.y95_c00009{bottom:509.521224px;}
.y3e_c00009{bottom:510.292500px;}
.y5c_c00009{bottom:511.938000px;}
.y94_c00009{bottom:521.399220px;}
.y38_c00009{bottom:525.708000px;}
.y31_c00009{bottom:528.199500px;}
.y54_c00009{bottom:528.955500px;}
.y3_c00009{bottom:530.545500px;}
.y63_c00009{bottom:531.630000px;}
.y37_c00009{bottom:543.261000px;}
.y93_c00009{bottom:555.686076px;}
.y42_c00009{bottom:556.069500px;}
.y2_c00009{bottom:565.642500px;}
.y87_c00009{bottom:568.002000px;}
.y92_c00009{bottom:576.473316px;}
.ye_c00009{bottom:580.479555px;}
.y21_c00009{bottom:581.546819px;}
.y1_c00009{bottom:594.270000px;}
.y86_c00009{bottom:596.275500px;}
.ya8_c00009{bottom:608.442444px;}
.ya7_c00009{bottom:608.926326px;}
.ya6_c00009{bottom:609.254976px;}
.ya5_c00009{bottom:609.344006px;}
.ya4_c00009{bottom:609.502566px;}
.ya3_c00009{bottom:610.164287px;}
.ya2_c00009{bottom:610.967421px;}
.ya1_c00009{bottom:611.385195px;}
.ya0_c00009{bottom:611.691239px;}
.y9f_c00009{bottom:612.107322px;}
.y9e_c00009{bottom:612.593042px;}
.y9d_c00009{bottom:612.808491px;}
.y9c_c00009{bottom:612.972921px;}
.y9b_c00009{bottom:613.449190px;}
.y9a_c00009{bottom:613.710000px;}
.y91_c00009{bottom:622.651668px;}
.h17_c00009{height:18.000000px;}
.h15_c00009{height:24.000588px;}
.h1b_c00009{height:30.000000px;}
.h2_c00009{height:30.000135px;}
.h18_c00009{height:30.000960px;}
.h19_c00009{height:36.001152px;}
.h13_c00009{height:42.000189px;}
.h1a_c00009{height:42.001029px;}
.h3_c00009{height:54.000243px;}
.h6_c00009{height:66.001617px;}
.h14_c00009{height:72.000144px;}
.h4_c00009{height:72.000324px;}
.ha_c00009{height:72.000576px;}
.h9_c00009{height:72.000900px;}
.h8_c00009{height:72.001296px;}
.h5_c00009{height:72.010403px;}
.hc_c00009{height:72.012995px;}
.h7_c00009{height:72.014399px;}
.h12_c00009{height:78.000351px;}
.hd_c00009{height:78.000975px;}
.he_c00009{height:78.001404px;}
.h10_c00009{height:78.007644px;}
.h11_c00009{height:84.000378px;}
.hf_c00009{height:84.008232px;}
.hb_c00009{height:120.023998px;}
.h16_c00009{height:342.017100px;}
.h1_c00009{height:693.750000px;}
.h0_c00009{height:693.900000px;}
.w1_c00009{width:950.250000px;}
.w0_c00009{width:950.400000px;}
.x0_c00009{left:0.000000px;}
.x4b_c00009{left:12.150000px;}
.x3f_c00009{left:31.403016px;}
.x40_c00009{left:32.549676px;}
.x41_c00009{left:38.005500px;}
.x3e_c00009{left:45.360000px;}
.x3d_c00009{left:65.400000px;}
.x3c_c00009{left:66.420000px;}
.x3b_c00009{left:68.580000px;}
.x3a_c00009{left:69.660000px;}
.x39_c00009{left:72.898500px;}
.x38_c00009{left:74.250000px;}
.x42_c00009{left:75.264000px;}
.x36_c00009{left:138.775500px;}
.x37_c00009{left:142.614630px;}
.x43_c00009{left:166.792500px;}
.x44_c00009{left:197.571000px;}
.x35_c00009{left:248.877000px;}
.x45_c00009{left:266.959500px;}
.x34_c00009{left:279.180000px;}
.x33_c00009{left:313.470000px;}
.x46_c00009{left:326.400000px;}
.x32_c00009{left:342.127020px;}
.x31_c00009{left:343.534918px;}
.x30_c00009{left:348.124968px;}
.x47_c00009{left:370.120500px;}
.x2f_c00009{left:372.295173px;}
.x2d_c00009{left:401.220000px;}
.x2e_c00009{left:402.237400px;}
.x2b_c00009{left:430.165347px;}
.x2c_c00009{left:431.293884px;}
.x2a_c00009{left:480.600000px;}
.x29_c00009{left:482.490000px;}
.x26_c00009{left:534.600000px;}
.x27_c00009{left:535.802805px;}
.x28_c00009{left:536.839642px;}
.x48_c00009{left:544.536000px;}
.x23_c00009{left:570.780000px;}
.x24_c00009{left:572.328693px;}
.x25_c00009{left:573.867927px;}
.x20_c00009{left:577.530000px;}
.x21_c00009{left:578.921616px;}
.x22_c00009{left:580.090797px;}
.x1b_c00009{left:607.498500px;}
.x1c_c00009{left:608.502697px;}
.x1d_c00009{left:611.744829px;}
.x1e_c00009{left:613.868193px;}
.x1f_c00009{left:615.140290px;}
.x18_c00009{left:634.767000px;}
.x19_c00009{left:639.459750px;}
.x1a_c00009{left:641.224410px;}
.x16_c00009{left:652.590000px;}
.x17_c00009{left:653.996046px;}
.x49_c00009{left:661.719000px;}
.x4a_c00009{left:674.437500px;}
.x14_c00009{left:682.627500px;}
.x15_c00009{left:683.751292px;}
.x13_c00009{left:722.250000px;}
.x11_c00009{left:730.348500px;}
.x12_c00009{left:732.795270px;}
.xe_c00009{left:744.930000px;}
.xf_c00009{left:745.998470px;}
.x10_c00009{left:747.082983px;}
.xd_c00009{left:788.467608px;}
.xc_c00009{left:789.783689px;}
.xb_c00009{left:791.675151px;}
.xa_c00009{left:793.693247px;}
.x9_c00009{left:795.418500px;}
.x8_c00009{left:808.381179px;}
.x7_c00009{left:849.187778px;}
.x6_c00009{left:886.720499px;}
.x5_c00009{left:892.660668px;}
.x3_c00009{left:923.133510px;}
.x4_c00009{left:924.183267px;}
.x2_c00009{left:935.260821px;}
.x1_c00009{left:936.360000px;}
@media print{
.v0_c00009{vertical-align:0.000000pt;}
.ls0_c00009{letter-spacing:0.000000pt;}
.ws0_c00009{word-spacing:0.000000pt;}
.fs15_c00009{font-size:16.000000pt;}
.fs13_c00009{font-size:21.333856pt;}
.fs19_c00009{font-size:26.666667pt;}
.fs0_c00009{font-size:26.666787pt;}
.fs16_c00009{font-size:26.667520pt;}
.fs17_c00009{font-size:32.001024pt;}
.fs11_c00009{font-size:37.333501pt;}
.fs18_c00009{font-size:37.334248pt;}
.fs1_c00009{font-size:48.000216pt;}
.fs4_c00009{font-size:58.668104pt;}
.fs12_c00009{font-size:64.000128pt;}
.fs2_c00009{font-size:64.000288pt;}
.fs8_c00009{font-size:64.000512pt;}
.fs7_c00009{font-size:64.000800pt;}
.fs6_c00009{font-size:64.001152pt;}
.fs3_c00009{font-size:64.009247pt;}
.fsa_c00009{font-size:64.011551pt;}
.fs5_c00009{font-size:64.012799pt;}
.fs10_c00009{font-size:69.333645pt;}
.fsb_c00009{font-size:69.334200pt;}
.fsc_c00009{font-size:69.334581pt;}
.fse_c00009{font-size:69.340128pt;}
.fsf_c00009{font-size:74.667003pt;}
.fsd_c00009{font-size:74.673984pt;}
.fs9_c00009{font-size:106.687998pt;}
.fs14_c00009{font-size:304.015200pt;}
.y0_c00009{bottom:0.000000pt;}
.y30_c00009{bottom:2.873333pt;}
.y71_c00009{bottom:4.339328pt;}
.y75_c00009{bottom:4.341141pt;}
.y74_c00009{bottom:4.341248pt;}
.y72_c00009{bottom:4.341755pt;}
.y73_c00009{bottom:4.341861pt;}
.y70_c00009{bottom:10.808880pt;}
.y5b_c00009{bottom:12.712000pt;}
.y99_c00009{bottom:13.199072pt;}
.y20_c00009{bottom:16.057452pt;}
.y14_c00009{bottom:18.234151pt;}
.y23_c00009{bottom:20.121523pt;}
.y8e_c00009{bottom:26.880000pt;}
.y1f_c00009{bottom:32.137696pt;}
.yd_c00009{bottom:34.076000pt;}
.y1a_c00009{bottom:45.108425pt;}
.y6b_c00009{bottom:45.837333pt;}
.y7d_c00009{bottom:49.458667pt;}
.y16_c00009{bottom:49.905887pt;}
.y53_c00009{bottom:52.076000pt;}
.y61_c00009{bottom:56.897333pt;}
.y85_c00009{bottom:65.776000pt;}
.y13_c00009{bottom:66.001553pt;}
.y6f_c00009{bottom:70.087851pt;}
.y2a_c00009{bottom:71.845333pt;}
.y82_c00009{bottom:74.161333pt;}
.y7c_c00009{bottom:78.976000pt;}
.y12_c00009{bottom:79.903103pt;}
.y4c_c00009{bottom:81.736000pt;}
.y2f_c00009{bottom:81.869333pt;}
.y60_c00009{bottom:82.050667pt;}
.y98_c00009{bottom:83.291584pt;}
.y8d_c00009{bottom:87.360000pt;}
.y1e_c00009{bottom:89.263897pt;}
.y69_c00009{bottom:104.141173pt;}
.y90_c00009{bottom:105.113333pt;}
.y84_c00009{bottom:107.277333pt;}
.y2e_c00009{bottom:110.830667pt;}
.y52_c00009{bottom:112.074667pt;}
.y83_c00009{bottom:115.188000pt;}
.y8b_c00009{bottom:115.680000pt;}
.y8c_c00009{bottom:120.000000pt;}
.y8f_c00009{bottom:122.617333pt;}
.y89_c00009{bottom:125.760000pt;}
.y68_c00009{bottom:134.141549pt;}
.y97_c00009{bottom:134.173163pt;}
.y8a_c00009{bottom:135.821333pt;}
.y81_c00009{bottom:137.518667pt;}
.yc_c00009{bottom:139.196000pt;}
.y2d_c00009{bottom:140.589333pt;}
.y29_c00009{bottom:140.660000pt;}
.y3d_c00009{bottom:141.086667pt;}
.y41_c00009{bottom:141.138667pt;}
.y36_c00009{bottom:141.140000pt;}
.y4b_c00009{bottom:141.249333pt;}
.y7b_c00009{bottom:141.378667pt;}
.y5a_c00009{bottom:141.797333pt;}
.y5f_c00009{bottom:142.049333pt;}
.y78_c00009{bottom:162.500672pt;}
.y7a_c00009{bottom:165.377333pt;}
.ya9_c00009{bottom:171.600000pt;}
.y6e_c00009{bottom:186.739113pt;}
.y88_c00009{bottom:188.766667pt;}
.yb_c00009{bottom:193.196000pt;}
.y67_c00009{bottom:196.067840pt;}
.ya_c00009{bottom:202.557333pt;}
.y80_c00009{bottom:204.480000pt;}
.y44_c00009{bottom:207.288000pt;}
.y2c_c00009{bottom:209.786667pt;}
.y6d_c00009{bottom:215.779261pt;}
.y66_c00009{bottom:218.148747pt;}
.y51_c00009{bottom:225.288000pt;}
.y7f_c00009{bottom:230.882667pt;}
.y40_c00009{bottom:234.981333pt;}
.y11_c00009{bottom:239.044221pt;}
.y19_c00009{bottom:239.269352pt;}
.y1d_c00009{bottom:239.508844pt;}
.y28_c00009{bottom:239.560000pt;}
.y3c_c00009{bottom:240.501333pt;}
.y4a_c00009{bottom:240.588000pt;}
.y59_c00009{bottom:240.746667pt;}
.y5e_c00009{bottom:241.224000pt;}
.y79_c00009{bottom:241.696000pt;}
.y77_c00009{bottom:247.489469pt;}
.y22_c00009{bottom:255.811185pt;}
.y35_c00009{bottom:257.304000pt;}
.y9_c00009{bottom:270.956000pt;}
.y62_c00009{bottom:274.800000pt;}
.y2b_c00009{bottom:276.268000pt;}
.y6c_c00009{bottom:278.419581pt;}
.y65_c00009{bottom:282.952669pt;}
.y3b_c00009{bottom:283.113333pt;}
.y50_c00009{bottom:284.852000pt;}
.y43_c00009{bottom:285.717333pt;}
.y8_c00009{bottom:287.520000pt;}
.y7e_c00009{bottom:298.800000pt;}
.y27_c00009{bottom:316.248000pt;}
.y4f_c00009{bottom:338.144000pt;}
.y26_c00009{bottom:345.081333pt;}
.y6a_c00009{bottom:347.289333pt;}
.y10_c00009{bottom:348.959251pt;}
.y3f_c00009{bottom:352.994667pt;}
.y49_c00009{bottom:355.964000pt;}
.y58_c00009{bottom:359.296000pt;}
.y34_c00009{bottom:360.765333pt;}
.y3a_c00009{bottom:361.210667pt;}
.y7_c00009{bottom:365.038667pt;}
.yf_c00009{bottom:365.519507pt;}
.y18_c00009{bottom:372.228233pt;}
.y5d_c00009{bottom:376.098667pt;}
.y64_c00009{bottom:376.785333pt;}
.y48_c00009{bottom:378.529333pt;}
.y1c_c00009{bottom:383.023024pt;}
.y47_c00009{bottom:392.266667pt;}
.y96_c00009{bottom:392.897419pt;}
.y6_c00009{bottom:395.036000pt;}
.y17_c00009{bottom:398.148533pt;}
.y15_c00009{bottom:398.627364pt;}
.y1b_c00009{bottom:403.664669pt;}
.y39_c00009{bottom:405.853333pt;}
.y5_c00009{bottom:406.076000pt;}
.y4e_c00009{bottom:407.040000pt;}
.y57_c00009{bottom:409.702667pt;}
.y76_c00009{bottom:418.385727pt;}
.y25_c00009{bottom:421.617333pt;}
.y46_c00009{bottom:426.801333pt;}
.y4_c00009{bottom:428.874667pt;}
.y4d_c00009{bottom:431.453333pt;}
.y56_c00009{bottom:433.221333pt;}
.y33_c00009{bottom:433.744000pt;}
.y24_c00009{bottom:435.290667pt;}
.y45_c00009{bottom:439.246667pt;}
.y55_c00009{bottom:447.841333pt;}
.y32_c00009{bottom:448.080000pt;}
.y95_c00009{bottom:452.907755pt;}
.y3e_c00009{bottom:453.593333pt;}
.y5c_c00009{bottom:455.056000pt;}
.y94_c00009{bottom:463.465973pt;}
.y38_c00009{bottom:467.296000pt;}
.y31_c00009{bottom:469.510667pt;}
.y54_c00009{bottom:470.182667pt;}
.y3_c00009{bottom:471.596000pt;}
.y63_c00009{bottom:472.560000pt;}
.y37_c00009{bottom:482.898667pt;}
.y93_c00009{bottom:493.943179pt;}
.y42_c00009{bottom:494.284000pt;}
.y2_c00009{bottom:502.793333pt;}
.y87_c00009{bottom:504.890667pt;}
.y92_c00009{bottom:512.420725pt;}
.ye_c00009{bottom:515.981827pt;}
.y21_c00009{bottom:516.930505pt;}
.y1_c00009{bottom:528.240000pt;}
.y86_c00009{bottom:530.022667pt;}
.ya8_c00009{bottom:540.837728pt;}
.ya7_c00009{bottom:541.267845pt;}
.ya6_c00009{bottom:541.559979pt;}
.ya5_c00009{bottom:541.639116pt;}
.ya4_c00009{bottom:541.780059pt;}
.ya3_c00009{bottom:542.368255pt;}
.ya2_c00009{bottom:543.082152pt;}
.ya1_c00009{bottom:543.453507pt;}
.ya0_c00009{bottom:543.725545pt;}
.y9f_c00009{bottom:544.095397pt;}
.y9e_c00009{bottom:544.527148pt;}
.y9d_c00009{bottom:544.718659pt;}
.y9c_c00009{bottom:544.864819pt;}
.y9b_c00009{bottom:545.288169pt;}
.y9a_c00009{bottom:545.520000pt;}
.y91_c00009{bottom:553.468149pt;}
.h17_c00009{height:16.000000pt;}
.h15_c00009{height:21.333856pt;}
.h1b_c00009{height:26.666667pt;}
.h2_c00009{height:26.666787pt;}
.h18_c00009{height:26.667520pt;}
.h19_c00009{height:32.001024pt;}
.h13_c00009{height:37.333501pt;}
.h1a_c00009{height:37.334248pt;}
.h3_c00009{height:48.000216pt;}
.h6_c00009{height:58.668104pt;}
.h14_c00009{height:64.000128pt;}
.h4_c00009{height:64.000288pt;}
.ha_c00009{height:64.000512pt;}
.h9_c00009{height:64.000800pt;}
.h8_c00009{height:64.001152pt;}
.h5_c00009{height:64.009247pt;}
.hc_c00009{height:64.011551pt;}
.h7_c00009{height:64.012799pt;}
.h12_c00009{height:69.333645pt;}
.hd_c00009{height:69.334200pt;}
.he_c00009{height:69.334581pt;}
.h10_c00009{height:69.340128pt;}
.h11_c00009{height:74.667003pt;}
.hf_c00009{height:74.673984pt;}
.hb_c00009{height:106.687998pt;}
.h16_c00009{height:304.015200pt;}
.h1_c00009{height:616.666667pt;}
.h0_c00009{height:616.800000pt;}
.w1_c00009{width:844.666667pt;}
.w0_c00009{width:844.800000pt;}
.x0_c00009{left:0.000000pt;}
.x4b_c00009{left:10.800000pt;}
.x3f_c00009{left:27.913792pt;}
.x40_c00009{left:28.933045pt;}
.x41_c00009{left:33.782667pt;}
.x3e_c00009{left:40.320000pt;}
.x3d_c00009{left:58.133333pt;}
.x3c_c00009{left:59.040000pt;}
.x3b_c00009{left:60.960000pt;}
.x3a_c00009{left:61.920000pt;}
.x39_c00009{left:64.798667pt;}
.x38_c00009{left:66.000000pt;}
.x42_c00009{left:66.901333pt;}
.x36_c00009{left:123.356000pt;}
.x37_c00009{left:126.768560pt;}
.x43_c00009{left:148.260000pt;}
.x44_c00009{left:175.618667pt;}
.x35_c00009{left:221.224000pt;}
.x45_c00009{left:237.297333pt;}
.x34_c00009{left:248.160000pt;}
.x33_c00009{left:278.640000pt;}
.x46_c00009{left:290.133333pt;}
.x32_c00009{left:304.112907pt;}
.x31_c00009{left:305.364372pt;}
.x30_c00009{left:309.444416pt;}
.x47_c00009{left:328.996000pt;}
.x2f_c00009{left:330.929043pt;}
.x2d_c00009{left:356.640000pt;}
.x2e_c00009{left:357.544356pt;}
.x2b_c00009{left:382.369197pt;}
.x2c_c00009{left:383.372341pt;}
.x2a_c00009{left:427.200000pt;}
.x29_c00009{left:428.880000pt;}
.x26_c00009{left:475.200000pt;}
.x27_c00009{left:476.269160pt;}
.x28_c00009{left:477.190793pt;}
.x48_c00009{left:484.032000pt;}
.x23_c00009{left:507.360000pt;}
.x24_c00009{left:508.736616pt;}
.x25_c00009{left:510.104824pt;}
.x20_c00009{left:513.360000pt;}
.x21_c00009{left:514.596992pt;}
.x22_c00009{left:515.636264pt;}
.x1b_c00009{left:539.998667pt;}
.x1c_c00009{left:540.891287pt;}
.x1d_c00009{left:543.773181pt;}
.x1e_c00009{left:545.660616pt;}
.x1f_c00009{left:546.791369pt;}
.x18_c00009{left:564.237333pt;}
.x19_c00009{left:568.408667pt;}
.x1a_c00009{left:569.977253pt;}
.x16_c00009{left:580.080000pt;}
.x17_c00009{left:581.329819pt;}
.x49_c00009{left:588.194667pt;}
.x4a_c00009{left:599.500000pt;}
.x14_c00009{left:606.780000pt;}
.x15_c00009{left:607.778927pt;}
.x13_c00009{left:642.000000pt;}
.x11_c00009{left:649.198667pt;}
.x12_c00009{left:651.373573pt;}
.xe_c00009{left:662.160000pt;}
.xf_c00009{left:663.109751pt;}
.x10_c00009{left:664.073763pt;}
.xd_c00009{left:700.860096pt;}
.xc_c00009{left:702.029945pt;}
.xb_c00009{left:703.711245pt;}
.xa_c00009{left:705.505108pt;}
.x9_c00009{left:707.038667pt;}
.x8_c00009{left:718.561048pt;}
.x7_c00009{left:754.833580pt;}
.x6_c00009{left:788.195999pt;}
.x5_c00009{left:793.476149pt;}
.x3_c00009{left:820.563120pt;}
.x4_c00009{left:821.496237pt;}
.x2_c00009{left:831.342952pt;}
.x1_c00009{left:832.320000pt;}
}





/* 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_c00010 {
    display:none;
  }
  .loading-indicator_c00010.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00010 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_c00010 { 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_c00010" -> "#page-container .classname_c00010")
 */
.pf_c00010 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00010 { /* 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_c00010.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00010 { /* 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_c00010 { /* 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_c00010 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00010 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00010 {overflow:visible;}
  }
}
.c_c00010 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00010 { /* 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_c00010:after { /* webkit #35443 */
  content: '';
}
.t_c00010:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00010 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 */
}
.__c00010 { /* 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_c00010 { /* info for Javascript */
  display:none;
}
.l_c00010 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00010 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00010 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00010: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_c00010 {
    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_c00010.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00010.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_c00010 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00010{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00010;src:url('chunks/assets/font_b11a17f404e7258299fdf971.woff2')format("woff");}.ff1_c00010{font-family:ff1_c00010;line-height:1.000000;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;}
.m13_c00010{transform:matrix(0.031820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.031820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.031820,0.000000,0.000000,0.250000,0,0);}
.me_c00010{transform:matrix(0.163983,-0.001968,0.003000,0.249982,0,0);-ms-transform:matrix(0.163983,-0.001968,0.003000,0.249982,0,0);-webkit-transform:matrix(0.163983,-0.001968,0.003000,0.249982,0,0);}
.m17_c00010{transform:matrix(0.164490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164490,0.000000,0.000000,0.250000,0,0);}
.mc_c00010{transform:matrix(0.229285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229285,0.000000,0.000000,0.250000,0,0);}
.mf_c00010{transform:matrix(0.236248,-0.002835,0.003000,0.249982,0,0);-ms-transform:matrix(0.236248,-0.002835,0.003000,0.249982,0,0);-webkit-transform:matrix(0.236248,-0.002835,0.003000,0.249982,0,0);}
.m10_c00010{transform:matrix(0.260166,-0.003122,0.003000,0.249982,0,0);-ms-transform:matrix(0.260166,-0.003122,0.003000,0.249982,0,0);-webkit-transform:matrix(0.260166,-0.003122,0.003000,0.249982,0,0);}
.ma_c00010{transform:matrix(0.260840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260840,0.000000,0.000000,0.250000,0,0);}
.m14_c00010{transform:matrix(0.265510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265510,0.000000,0.000000,0.250000,0,0);}
.m6_c00010{transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);}
.mb_c00010{transform:matrix(0.305905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305905,0.000000,0.000000,0.250000,0,0);}
.m7_c00010{transform:matrix(0.333435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333435,0.000000,0.000000,0.250000,0,0);}
.md_c00010{transform:matrix(0.340665,-0.004088,0.003000,0.249982,0,0);-ms-transform:matrix(0.340665,-0.004088,0.003000,0.249982,0,0);-webkit-transform:matrix(0.340665,-0.004088,0.003000,0.249982,0,0);}
.m5_c00010{transform:matrix(0.360945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360945,0.000000,0.000000,0.250000,0,0);}
.m1_c00010{transform:matrix(0.369325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369325,0.000000,0.000000,0.250000,0,0);}
.m18_c00010{transform:matrix(0.373045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373045,0.000000,0.000000,0.250000,0,0);}
.m8_c00010{transform:matrix(0.402605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402605,0.000000,0.000000,0.250000,0,0);}
.m0_c00010{transform:matrix(0.454730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.454730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.454730,0.000000,0.000000,0.250000,0,0);}
.m3_c00010{transform:matrix(0.475075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475075,0.000000,0.000000,0.250000,0,0);}
.m2_c00010{transform:matrix(0.630895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630895,0.000000,0.000000,0.250000,0,0);}
.m4_c00010{transform:matrix(0.723855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.723855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.723855,0.000000,0.000000,0.250000,0,0);}
.m9_c00010{transform:matrix(0.741770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.741770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.741770,0.000000,0.000000,0.250000,0,0);}
.m12_c00010{transform:matrix(0.859933,-0.010319,0.003000,0.249982,0,0);-ms-transform:matrix(0.859933,-0.010319,0.003000,0.249982,0,0);-webkit-transform:matrix(0.859933,-0.010319,0.003000,0.249982,0,0);}
.m11_c00010{transform:matrix(0.908585,-0.010903,0.003000,0.249982,0,0);-ms-transform:matrix(0.908585,-0.010903,0.003000,0.249982,0,0);-webkit-transform:matrix(0.908585,-0.010903,0.003000,0.249982,0,0);}
.m15_c00010{transform:matrix(1.129940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.129940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.129940,0.000000,0.000000,0.250000,0,0);}
.m16_c00010{transform:matrix(1.465130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.465130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.465130,0.000000,0.000000,0.250000,0,0);}
.v0_c00010{vertical-align:0.000000px;}
.ls0_c00010{letter-spacing:0.000000px;}
.sc__c00010{text-shadow:none;}
.sc0_c00010{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__c00010{-webkit-text-stroke:0px transparent;}
.sc0_c00010{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00010{word-spacing:0.000000px;}
.fc0_c00010{color:transparent;}
.fs4_c00010{font-size:24.000000px;}
.fs0_c00010{font-size:84.000000px;}
.fs1_c00010{font-size:126.000000px;}
.fs3_c00010{font-size:168.012096px;}
.fs2_c00010{font-size:186.000000px;}
.y0_c00010{bottom:0.000000px;}
.ya_c00010{bottom:0.163500px;}
.y4_c00010{bottom:54.814500px;}
.y5_c00010{bottom:56.642940px;}
.y6_c00010{bottom:57.979494px;}
.y7_c00010{bottom:59.071536px;}
.y8_c00010{bottom:59.945814px;}
.y9_c00010{bottom:61.912980px;}
.y3_c00010{bottom:167.224500px;}
.y2_c00010{bottom:248.334000px;}
.y1_c00010{bottom:282.216000px;}
.h6_c00010{height:24.000000px;}
.h2_c00010{height:84.000000px;}
.h3_c00010{height:126.000000px;}
.h5_c00010{height:168.012096px;}
.h4_c00010{height:186.000000px;}
.h1_c00010{height:693.750000px;}
.h0_c00010{height:693.900000px;}
.w1_c00010{width:950.250000px;}
.w0_c00010{width:950.400000px;}
.x0_c00010{left:0.000000px;}
.xe_c00010{left:20.638500px;}
.xb_c00010{left:21.870000px;}
.x1_c00010{left:34.020000px;}
.x5_c00010{left:74.250000px;}
.xc_c00010{left:100.710000px;}
.xf_c00010{left:173.008500px;}
.x6_c00010{left:232.200000px;}
.x2_c00010{left:247.320000px;}
.xd_c00010{left:254.070000px;}
.x7_c00010{left:285.120000px;}
.x3_c00010{left:304.560000px;}
.x8_c00010{left:366.120000px;}
.x10_c00010{left:375.391500px;}
.x11_c00010{left:448.248000px;}
.x4_c00010{left:463.050000px;}
.x9_c00010{left:487.080000px;}
.xa_c00010{left:560.520000px;}
.x12_c00010{left:612.178500px;}
.x13_c00010{left:753.030000px;}
.x14_c00010{left:771.930000px;}
.x15_c00010{left:792.450000px;}
.x16_c00010{left:832.140000px;}
.x17_c00010{left:848.340000px;}
.x18_c00010{left:882.090000px;}
@media print{
.v0_c00010{vertical-align:0.000000pt;}
.ls0_c00010{letter-spacing:0.000000pt;}
.ws0_c00010{word-spacing:0.000000pt;}
.fs4_c00010{font-size:21.333333pt;}
.fs0_c00010{font-size:74.666667pt;}
.fs1_c00010{font-size:112.000000pt;}
.fs3_c00010{font-size:149.344085pt;}
.fs2_c00010{font-size:165.333333pt;}
.y0_c00010{bottom:0.000000pt;}
.ya_c00010{bottom:0.145333pt;}
.y4_c00010{bottom:48.724000pt;}
.y5_c00010{bottom:50.349280pt;}
.y6_c00010{bottom:51.537328pt;}
.y7_c00010{bottom:52.508032pt;}
.y8_c00010{bottom:53.285168pt;}
.y9_c00010{bottom:55.033760pt;}
.y3_c00010{bottom:148.644000pt;}
.y2_c00010{bottom:220.741333pt;}
.y1_c00010{bottom:250.858667pt;}
.h6_c00010{height:21.333333pt;}
.h2_c00010{height:74.666667pt;}
.h3_c00010{height:112.000000pt;}
.h5_c00010{height:149.344085pt;}
.h4_c00010{height:165.333333pt;}
.h1_c00010{height:616.666667pt;}
.h0_c00010{height:616.800000pt;}
.w1_c00010{width:844.666667pt;}
.w0_c00010{width:844.800000pt;}
.x0_c00010{left:0.000000pt;}
.xe_c00010{left:18.345333pt;}
.xb_c00010{left:19.440000pt;}
.x1_c00010{left:30.240000pt;}
.x5_c00010{left:66.000000pt;}
.xc_c00010{left:89.520000pt;}
.xf_c00010{left:153.785333pt;}
.x6_c00010{left:206.400000pt;}
.x2_c00010{left:219.840000pt;}
.xd_c00010{left:225.840000pt;}
.x7_c00010{left:253.440000pt;}
.x3_c00010{left:270.720000pt;}
.x8_c00010{left:325.440000pt;}
.x10_c00010{left:333.681333pt;}
.x11_c00010{left:398.442667pt;}
.x4_c00010{left:411.600000pt;}
.x9_c00010{left:432.960000pt;}
.xa_c00010{left:498.240000pt;}
.x12_c00010{left:544.158667pt;}
.x13_c00010{left:669.360000pt;}
.x14_c00010{left:686.160000pt;}
.x15_c00010{left:704.400000pt;}
.x16_c00010{left:739.680000pt;}
.x17_c00010{left:754.080000pt;}
.x18_c00010{left:784.080000pt;}
}





/* 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_c00011 {
    display:none;
  }
  .loading-indicator_c00011.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00011 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_c00011 { 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_c00011" -> "#page-container .classname_c00011")
 */
.pf_c00011 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00011 { /* 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_c00011.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00011 { /* 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_c00011 { /* 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_c00011 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00011 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00011 {overflow:visible;}
  }
}
.c_c00011 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00011 { /* 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_c00011:after { /* webkit #35443 */
  content: '';
}
.t_c00011:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00011 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 */
}
.__c00011 { /* 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_c00011 { /* info for Javascript */
  display:none;
}
.l_c00011 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00011 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00011 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00011: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_c00011 {
    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_c00011.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00011.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_c00011 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00011{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00011;src:url('chunks/assets/font_944db81570d4ec07251d83b9.woff2')format("woff");}.ff1_c00011{font-family:ff1_c00011;line-height:1.000000;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;}
.m2_c00011{transform:matrix(0.060845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060845,0.000000,0.000000,0.250000,0,0);}
.m3_c00011{transform:matrix(0.183445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183445,0.000000,0.000000,0.250000,0,0);}
.mc_c00011{transform:matrix(0.184255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184255,0.000000,0.000000,0.250000,0,0);}
.m9_c00011{transform:matrix(0.186985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186985,0.000000,0.000000,0.250000,0,0);}
.m5_c00011{transform:matrix(0.196220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196220,0.000000,0.000000,0.250000,0,0);}
.md_c00011{transform:matrix(0.229335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229335,0.000000,0.000000,0.250000,0,0);}
.m7_c00011{transform:matrix(0.236585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236585,0.000000,0.000000,0.250000,0,0);}
.m4_c00011{transform:matrix(0.239070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239070,0.000000,0.000000,0.250000,0,0);}
.ma_c00011{transform:matrix(0.255110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255110,0.000000,0.000000,0.250000,0,0);}
.m8_c00011{transform:matrix(0.258565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258565,0.000000,0.000000,0.250000,0,0);}
.mb_c00011{transform:matrix(0.290925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290925,0.000000,0.000000,0.250000,0,0);}
.m0_c00011{transform:matrix(0.404600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404600,0.000000,0.000000,0.250000,0,0);}
.m6_c00011{transform:matrix(0.597875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.597875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.597875,0.000000,0.000000,0.250000,0,0);}
.m1_c00011{transform:matrix(0.850000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.850000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.850000,0.000000,0.000000,0.250000,0,0);}
.v0_c00011{vertical-align:0.000000px;}
.ls0_c00011{letter-spacing:0.000000px;}
.sc__c00011{text-shadow:none;}
.sc0_c00011{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__c00011{-webkit-text-stroke:0px transparent;}
.sc0_c00011{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00011{word-spacing:0.000000px;}
.fc0_c00011{color:transparent;}
.fs0_c00011{font-size:18.000000px;}
.fs2_c00011{font-size:42.000000px;}
.fs1_c00011{font-size:48.000000px;}
.y0_c00011{bottom:0.000000px;}
.y3_c00011{bottom:0.540000px;}
.y2_c00011{bottom:4.993500px;}
.y1_c00011{bottom:567.810000px;}
.h2_c00011{height:18.000000px;}
.h4_c00011{height:42.000000px;}
.h3_c00011{height:48.000000px;}
.h1_c00011{height:693.750000px;}
.h0_c00011{height:693.900000px;}
.w1_c00011{width:950.250000px;}
.w0_c00011{width:950.400000px;}
.x0_c00011{left:0.000000px;}
.x3_c00011{left:21.330000px;}
.x1_c00011{left:27.000000px;}
.x2_c00011{left:28.350000px;}
.x4_c00011{left:33.480000px;}
.x5_c00011{left:45.090000px;}
.x6_c00011{left:127.170000px;}
.x7_c00011{left:132.030000px;}
.x8_c00011{left:184.140000px;}
.x9_c00011{left:537.840000px;}
.xa_c00011{left:555.930000px;}
.xb_c00011{left:574.830000px;}
.xc_c00011{left:648.810000px;}
.xd_c00011{left:667.170000px;}
.xe_c00011{left:686.340000px;}
@media print{
.v0_c00011{vertical-align:0.000000pt;}
.ls0_c00011{letter-spacing:0.000000pt;}
.ws0_c00011{word-spacing:0.000000pt;}
.fs0_c00011{font-size:16.000000pt;}
.fs2_c00011{font-size:37.333333pt;}
.fs1_c00011{font-size:42.666667pt;}
.y0_c00011{bottom:0.000000pt;}
.y3_c00011{bottom:0.480000pt;}
.y2_c00011{bottom:4.438667pt;}
.y1_c00011{bottom:504.720000pt;}
.h2_c00011{height:16.000000pt;}
.h4_c00011{height:37.333333pt;}
.h3_c00011{height:42.666667pt;}
.h1_c00011{height:616.666667pt;}
.h0_c00011{height:616.800000pt;}
.w1_c00011{width:844.666667pt;}
.w0_c00011{width:844.800000pt;}
.x0_c00011{left:0.000000pt;}
.x3_c00011{left:18.960000pt;}
.x1_c00011{left:24.000000pt;}
.x2_c00011{left:25.200000pt;}
.x4_c00011{left:29.760000pt;}
.x5_c00011{left:40.080000pt;}
.x6_c00011{left:113.040000pt;}
.x7_c00011{left:117.360000pt;}
.x8_c00011{left:163.680000pt;}
.x9_c00011{left:478.080000pt;}
.xa_c00011{left:494.160000pt;}
.xb_c00011{left:510.960000pt;}
.xc_c00011{left:576.720000pt;}
.xd_c00011{left:593.040000pt;}
.xe_c00011{left:610.080000pt;}
}





/* 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_c00012 {
    display:none;
  }
  .loading-indicator_c00012.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00012 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_c00012 { 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_c00012" -> "#page-container .classname_c00012")
 */
.pf_c00012 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00012 { /* 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_c00012.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00012 { /* 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_c00012 { /* 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_c00012 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00012 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00012 {overflow:visible;}
  }
}
.c_c00012 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00012 { /* 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_c00012:after { /* webkit #35443 */
  content: '';
}
.t_c00012:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00012 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 */
}
.__c00012 { /* 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_c00012 { /* info for Javascript */
  display:none;
}
.l_c00012 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00012 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00012 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00012: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_c00012 {
    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_c00012.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00012.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_c00012 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00012{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00012;src:url('chunks/assets/font_53ec0c54e60da7c2d414b553.woff2')format("woff");}.ff1_c00012{font-family:ff1_c00012;line-height:1.000000;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;}
.m6f_c00012{transform:matrix(0.000431,-0.019575,0.249940,0.005499,0,0);-ms-transform:matrix(0.000431,-0.019575,0.249940,0.005499,0,0);-webkit-transform:matrix(0.000431,-0.019575,0.249940,0.005499,0,0);}
.m70_c00012{transform:matrix(0.001189,-0.054057,0.249940,0.005499,0,0);-ms-transform:matrix(0.001189,-0.054057,0.249940,0.005499,0,0);-webkit-transform:matrix(0.001189,-0.054057,0.249940,0.005499,0,0);}
.m17_c00012{transform:matrix(0.001311,-0.050433,0.249916,0.006498,0,0);-ms-transform:matrix(0.001311,-0.050433,0.249916,0.006498,0,0);-webkit-transform:matrix(0.001311,-0.050433,0.249916,0.006498,0,0);}
.m6d_c00012{transform:matrix(0.001498,-0.071344,0.249945,0.005249,0,0);-ms-transform:matrix(0.001498,-0.071344,0.249945,0.005249,0,0);-webkit-transform:matrix(0.001498,-0.071344,0.249945,0.005249,0,0);}
.m11_c00012{transform:matrix(0.001537,-0.085401,0.249960,0.004499,0,0);-ms-transform:matrix(0.001537,-0.085401,0.249960,0.004499,0,0);-webkit-transform:matrix(0.001537,-0.085401,0.249960,0.004499,0,0);}
.m22_c00012{transform:matrix(0.001588,-0.083605,0.249955,0.004749,0,0);-ms-transform:matrix(0.001588,-0.083605,0.249955,0.004749,0,0);-webkit-transform:matrix(0.001588,-0.083605,0.249955,0.004749,0,0);}
.m29_c00012{transform:matrix(0.001691,-0.089004,0.249955,0.004749,0,0);-ms-transform:matrix(0.001691,-0.089004,0.249955,0.004749,0,0);-webkit-transform:matrix(0.001691,-0.089004,0.249955,0.004749,0,0);}
.m3f_c00012{transform:matrix(0.001834,-0.101893,0.249960,0.004499,0,0);-ms-transform:matrix(0.001834,-0.101893,0.249960,0.004499,0,0);-webkit-transform:matrix(0.001834,-0.101893,0.249960,0.004499,0,0);}
.mc_c00012{transform:matrix(0.001902,-0.090570,0.249945,0.005249,0,0);-ms-transform:matrix(0.001902,-0.090570,0.249945,0.005249,0,0);-webkit-transform:matrix(0.001902,-0.090570,0.249945,0.005249,0,0);}
.m3b_c00012{transform:matrix(0.001909,-0.095441,0.249950,0.004999,0,0);-ms-transform:matrix(0.001909,-0.095441,0.249950,0.004999,0,0);-webkit-transform:matrix(0.001909,-0.095441,0.249950,0.004999,0,0);}
.m4e_c00012{transform:matrix(0.002047,-0.088996,0.249934,0.005748,0,0);-ms-transform:matrix(0.002047,-0.088996,0.249934,0.005748,0,0);-webkit-transform:matrix(0.002047,-0.088996,0.249934,0.005748,0,0);}
.m45_c00012{transform:matrix(0.002136,-0.088994,0.249928,0.005998,0,0);-ms-transform:matrix(0.002136,-0.088994,0.249928,0.005998,0,0);-webkit-transform:matrix(0.002136,-0.088994,0.249928,0.005998,0,0);}
.m68_c00012{transform:matrix(0.002237,-0.131596,0.249964,0.004249,0,0);-ms-transform:matrix(0.002237,-0.131596,0.249964,0.004249,0,0);-webkit-transform:matrix(0.002237,-0.131596,0.249964,0.004249,0,0);}
.m2e_c00012{transform:matrix(0.002321,-0.116072,0.249950,0.004999,0,0);-ms-transform:matrix(0.002321,-0.116072,0.249950,0.004999,0,0);-webkit-transform:matrix(0.002321,-0.116072,0.249950,0.004999,0,0);}
.m6a_c00012{transform:matrix(0.002343,-0.111555,0.249945,0.005249,0,0);-ms-transform:matrix(0.002343,-0.111555,0.249945,0.005249,0,0);-webkit-transform:matrix(0.002343,-0.111555,0.249945,0.005249,0,0);}
.m10_c00012{transform:matrix(0.002405,-0.133593,0.249960,0.004499,0,0);-ms-transform:matrix(0.002405,-0.133593,0.249960,0.004499,0,0);-webkit-transform:matrix(0.002405,-0.133593,0.249960,0.004499,0,0);}
.m66_c00012{transform:matrix(0.002448,-0.143999,0.249964,0.004249,0,0);-ms-transform:matrix(0.002448,-0.143999,0.249964,0.004249,0,0);-webkit-transform:matrix(0.002448,-0.143999,0.249964,0.004249,0,0);}
.m49_c00012{transform:matrix(0.002507,-0.104455,0.249928,0.005998,0,0);-ms-transform:matrix(0.002507,-0.104455,0.249928,0.005998,0,0);-webkit-transform:matrix(0.002507,-0.104455,0.249928,0.005998,0,0);}
.m28_c00012{transform:matrix(0.002581,-0.135860,0.249955,0.004749,0,0);-ms-transform:matrix(0.002581,-0.135860,0.249955,0.004749,0,0);-webkit-transform:matrix(0.002581,-0.135860,0.249955,0.004749,0,0);}
.m54_c00012{transform:matrix(0.002593,-0.123463,0.249945,0.005249,0,0);-ms-transform:matrix(0.002593,-0.123463,0.249945,0.005249,0,0);-webkit-transform:matrix(0.002593,-0.123463,0.249945,0.005249,0,0);}
.m48_c00012{transform:matrix(0.002608,-0.108674,0.249928,0.005998,0,0);-ms-transform:matrix(0.002608,-0.108674,0.249928,0.005998,0,0);-webkit-transform:matrix(0.002608,-0.108674,0.249928,0.005998,0,0);}
.m5e_c00012{transform:matrix(0.002629,-0.175280,0.249972,0.003750,0,0);-ms-transform:matrix(0.002629,-0.175280,0.249972,0.003750,0,0);-webkit-transform:matrix(0.002629,-0.175280,0.249972,0.003750,0,0);}
.m3a_c00012{transform:matrix(0.002653,-0.132663,0.249950,0.004999,0,0);-ms-transform:matrix(0.002653,-0.132663,0.249950,0.004999,0,0);-webkit-transform:matrix(0.002653,-0.132663,0.249950,0.004999,0,0);}
.m67_c00012{transform:matrix(0.002684,-0.157867,0.249964,0.004249,0,0);-ms-transform:matrix(0.002684,-0.157867,0.249964,0.004249,0,0);-webkit-transform:matrix(0.002684,-0.157867,0.249964,0.004249,0,0);}
.m51_c00012{transform:matrix(0.002727,-0.129836,0.249945,0.005249,0,0);-ms-transform:matrix(0.002727,-0.129836,0.249945,0.005249,0,0);-webkit-transform:matrix(0.002727,-0.129836,0.249945,0.005249,0,0);}
.m37_c00012{transform:matrix(0.002765,-0.138267,0.249950,0.004999,0,0);-ms-transform:matrix(0.002765,-0.138267,0.249950,0.004999,0,0);-webkit-transform:matrix(0.002765,-0.138267,0.249950,0.004999,0,0);}
.m53_c00012{transform:matrix(0.002783,-0.132501,0.249945,0.005249,0,0);-ms-transform:matrix(0.002783,-0.132501,0.249945,0.005249,0,0);-webkit-transform:matrix(0.002783,-0.132501,0.249945,0.005249,0,0);}
.m35_c00012{transform:matrix(0.002790,-0.139482,0.249950,0.004999,0,0);-ms-transform:matrix(0.002790,-0.139482,0.249950,0.004999,0,0);-webkit-transform:matrix(0.002790,-0.139482,0.249950,0.004999,0,0);}
.mb_c00012{transform:matrix(0.002866,-0.136470,0.249945,0.005249,0,0);-ms-transform:matrix(0.002866,-0.136470,0.249945,0.005249,0,0);-webkit-transform:matrix(0.002866,-0.136470,0.249945,0.005249,0,0);}
.m36_c00012{transform:matrix(0.002881,-0.144041,0.249950,0.004999,0,0);-ms-transform:matrix(0.002881,-0.144041,0.249950,0.004999,0,0);-webkit-transform:matrix(0.002881,-0.144041,0.249950,0.004999,0,0);}
.m7d_c00012{transform:matrix(0.002904,-0.152822,0.249955,0.004749,0,0);-ms-transform:matrix(0.002904,-0.152822,0.249955,0.004749,0,0);-webkit-transform:matrix(0.002904,-0.152822,0.249955,0.004749,0,0);}
.m60_c00012{transform:matrix(0.002939,-0.163294,0.249960,0.004499,0,0);-ms-transform:matrix(0.002939,-0.163294,0.249960,0.004499,0,0);-webkit-transform:matrix(0.002939,-0.163294,0.249960,0.004499,0,0);}
.m39_c00012{transform:matrix(0.002977,-0.148840,0.249950,0.004999,0,0);-ms-transform:matrix(0.002977,-0.148840,0.249950,0.004999,0,0);-webkit-transform:matrix(0.002977,-0.148840,0.249950,0.004999,0,0);}
.m52_c00012{transform:matrix(0.002997,-0.142704,0.249945,0.005249,0,0);-ms-transform:matrix(0.002997,-0.142704,0.249945,0.005249,0,0);-webkit-transform:matrix(0.002997,-0.142704,0.249945,0.005249,0,0);}
.m38_c00012{transform:matrix(0.002999,-0.149970,0.249950,0.004999,0,0);-ms-transform:matrix(0.002999,-0.149970,0.249950,0.004999,0,0);-webkit-transform:matrix(0.002999,-0.149970,0.249950,0.004999,0,0);}
.m57_c00012{transform:matrix(0.003003,-0.130580,0.249934,0.005748,0,0);-ms-transform:matrix(0.003003,-0.130580,0.249934,0.005748,0,0);-webkit-transform:matrix(0.003003,-0.130580,0.249934,0.005748,0,0);}
.m3d_c00012{transform:matrix(0.003008,-0.167088,0.249960,0.004499,0,0);-ms-transform:matrix(0.003008,-0.167088,0.249960,0.004499,0,0);-webkit-transform:matrix(0.003008,-0.167088,0.249960,0.004499,0,0);}
.m4d_c00012{transform:matrix(0.003070,-0.133500,0.249934,0.005748,0,0);-ms-transform:matrix(0.003070,-0.133500,0.249934,0.005748,0,0);-webkit-transform:matrix(0.003070,-0.133500,0.249934,0.005748,0,0);}
.m5a_c00012{transform:matrix(0.003102,-0.134874,0.249934,0.005748,0,0);-ms-transform:matrix(0.003102,-0.134874,0.249934,0.005748,0,0);-webkit-transform:matrix(0.003102,-0.134874,0.249934,0.005748,0,0);}
.m5d_c00012{transform:matrix(0.003133,-0.208867,0.249972,0.003750,0,0);-ms-transform:matrix(0.003133,-0.208867,0.249972,0.003750,0,0);-webkit-transform:matrix(0.003133,-0.208867,0.249972,0.003750,0,0);}
.m44_c00012{transform:matrix(0.003260,-0.135846,0.249928,0.005998,0,0);-ms-transform:matrix(0.003260,-0.135846,0.249928,0.005998,0,0);-webkit-transform:matrix(0.003260,-0.135846,0.249928,0.005998,0,0);}
.m58_c00012{transform:matrix(0.003331,-0.144812,0.249934,0.005748,0,0);-ms-transform:matrix(0.003331,-0.144812,0.249934,0.005748,0,0);-webkit-transform:matrix(0.003331,-0.144812,0.249934,0.005748,0,0);}
.mf_c00012{transform:matrix(0.003361,-0.186730,0.249960,0.004499,0,0);-ms-transform:matrix(0.003361,-0.186730,0.249960,0.004499,0,0);-webkit-transform:matrix(0.003361,-0.186730,0.249960,0.004499,0,0);}
.m6_c00012{transform:matrix(0.003401,-0.147886,0.249934,0.005748,0,0);-ms-transform:matrix(0.003401,-0.147886,0.249934,0.005748,0,0);-webkit-transform:matrix(0.003401,-0.147886,0.249934,0.005748,0,0);}
.m2f_c00012{transform:matrix(0.003482,-0.174105,0.249950,0.004999,0,0);-ms-transform:matrix(0.003482,-0.174105,0.249950,0.004999,0,0);-webkit-transform:matrix(0.003482,-0.174105,0.249950,0.004999,0,0);}
.m59_c00012{transform:matrix(0.003489,-0.151675,0.249934,0.005748,0,0);-ms-transform:matrix(0.003489,-0.151675,0.249934,0.005748,0,0);-webkit-transform:matrix(0.003489,-0.151675,0.249934,0.005748,0,0);}
.m33_c00012{transform:matrix(0.003499,-0.174965,0.249950,0.004999,0,0);-ms-transform:matrix(0.003499,-0.174965,0.249950,0.004999,0,0);-webkit-transform:matrix(0.003499,-0.174965,0.249950,0.004999,0,0);}
.m5f_c00012{transform:matrix(0.003513,-0.234174,0.249972,0.003750,0,0);-ms-transform:matrix(0.003513,-0.234174,0.249972,0.003750,0,0);-webkit-transform:matrix(0.003513,-0.234174,0.249972,0.003750,0,0);}
.m34_c00012{transform:matrix(0.003623,-0.181139,0.249950,0.004999,0,0);-ms-transform:matrix(0.003623,-0.181139,0.249950,0.004999,0,0);-webkit-transform:matrix(0.003623,-0.181139,0.249950,0.004999,0,0);}
.m26_c00012{transform:matrix(0.003722,-0.195875,0.249955,0.004749,0,0);-ms-transform:matrix(0.003722,-0.195875,0.249955,0.004749,0,0);-webkit-transform:matrix(0.003722,-0.195875,0.249955,0.004749,0,0);}
.md_c00012{transform:matrix(0.003763,-0.209081,0.249960,0.004499,0,0);-ms-transform:matrix(0.003763,-0.209081,0.249960,0.004499,0,0);-webkit-transform:matrix(0.003763,-0.209081,0.249960,0.004499,0,0);}
.m25_c00012{transform:matrix(0.003805,-0.200264,0.249955,0.004749,0,0);-ms-transform:matrix(0.003805,-0.200264,0.249955,0.004749,0,0);-webkit-transform:matrix(0.003805,-0.200264,0.249955,0.004749,0,0);}
.m69_c00012{transform:matrix(0.003889,-0.228787,0.249964,0.004249,0,0);-ms-transform:matrix(0.003889,-0.228787,0.249964,0.004249,0,0);-webkit-transform:matrix(0.003889,-0.228787,0.249964,0.004249,0,0);}
.m7c_c00012{transform:matrix(0.003903,-0.205418,0.249955,0.004749,0,0);-ms-transform:matrix(0.003903,-0.205418,0.249955,0.004749,0,0);-webkit-transform:matrix(0.003903,-0.205418,0.249955,0.004749,0,0);}
.m50_c00012{transform:matrix(0.003957,-0.188418,0.249945,0.005249,0,0);-ms-transform:matrix(0.003957,-0.188418,0.249945,0.005249,0,0);-webkit-transform:matrix(0.003957,-0.188418,0.249945,0.005249,0,0);}
.m5b_c00012{transform:matrix(0.004014,-0.174514,0.249934,0.005748,0,0);-ms-transform:matrix(0.004014,-0.174514,0.249934,0.005748,0,0);-webkit-transform:matrix(0.004014,-0.174514,0.249934,0.005748,0,0);}
.m46_c00012{transform:matrix(0.004046,-0.168571,0.249928,0.005998,0,0);-ms-transform:matrix(0.004046,-0.168571,0.249928,0.005998,0,0);-webkit-transform:matrix(0.004046,-0.168571,0.249928,0.005998,0,0);}
.m7a_c00012{transform:matrix(0.004084,-0.272294,0.249972,0.003750,0,0);-ms-transform:matrix(0.004084,-0.272294,0.249972,0.003750,0,0);-webkit-transform:matrix(0.004084,-0.272294,0.249972,0.003750,0,0);}
.m9_c00012{transform:matrix(0.004171,-0.198641,0.249945,0.005249,0,0);-ms-transform:matrix(0.004171,-0.198641,0.249945,0.005249,0,0);-webkit-transform:matrix(0.004171,-0.198641,0.249945,0.005249,0,0);}
.m27_c00012{transform:matrix(0.004209,-0.221535,0.249955,0.004749,0,0);-ms-transform:matrix(0.004209,-0.221535,0.249955,0.004749,0,0);-webkit-transform:matrix(0.004209,-0.221535,0.249955,0.004749,0,0);}
.m6c_c00012{transform:matrix(0.004271,-0.203370,0.249945,0.005249,0,0);-ms-transform:matrix(0.004271,-0.203370,0.249945,0.005249,0,0);-webkit-transform:matrix(0.004271,-0.203370,0.249945,0.005249,0,0);}
.m6b_c00012{transform:matrix(0.004401,-0.209559,0.249945,0.005249,0,0);-ms-transform:matrix(0.004401,-0.209559,0.249945,0.005249,0,0);-webkit-transform:matrix(0.004401,-0.209559,0.249945,0.005249,0,0);}
.m77_c00012{transform:matrix(0.004414,-0.259672,0.249964,0.004249,0,0);-ms-transform:matrix(0.004414,-0.259672,0.249964,0.004249,0,0);-webkit-transform:matrix(0.004414,-0.259672,0.249964,0.004249,0,0);}
.m1d_c00012{transform:matrix(0.004633,-0.308880,0.249972,0.003750,0,0);-ms-transform:matrix(0.004633,-0.308880,0.249972,0.003750,0,0);-webkit-transform:matrix(0.004633,-0.308880,0.249972,0.003750,0,0);}
.m19_c00012{transform:matrix(0.004635,-0.178275,0.249916,0.006498,0,0);-ms-transform:matrix(0.004635,-0.178275,0.249916,0.006498,0,0);-webkit-transform:matrix(0.004635,-0.178275,0.249916,0.006498,0,0);}
.m16_c00012{transform:matrix(0.004687,-0.180284,0.249916,0.006498,0,0);-ms-transform:matrix(0.004687,-0.180284,0.249916,0.006498,0,0);-webkit-transform:matrix(0.004687,-0.180284,0.249916,0.006498,0,0);}
.m47_c00012{transform:matrix(0.004703,-0.195969,0.249928,0.005998,0,0);-ms-transform:matrix(0.004703,-0.195969,0.249928,0.005998,0,0);-webkit-transform:matrix(0.004703,-0.195969,0.249928,0.005998,0,0);}
.m56_c00012{transform:matrix(0.004775,-0.207625,0.249934,0.005748,0,0);-ms-transform:matrix(0.004775,-0.207625,0.249934,0.005748,0,0);-webkit-transform:matrix(0.004775,-0.207625,0.249934,0.005748,0,0);}
.me_c00012{transform:matrix(0.004956,-0.275340,0.249960,0.004499,0,0);-ms-transform:matrix(0.004956,-0.275340,0.249960,0.004499,0,0);-webkit-transform:matrix(0.004956,-0.275340,0.249960,0.004499,0,0);}
.m72_c00012{transform:matrix(0.005193,-0.305456,0.249964,0.004249,0,0);-ms-transform:matrix(0.005193,-0.305456,0.249964,0.004249,0,0);-webkit-transform:matrix(0.005193,-0.305456,0.249964,0.004249,0,0);}
.m20_c00012{transform:matrix(0.005250,-0.349981,0.249972,0.003750,0,0);-ms-transform:matrix(0.005250,-0.349981,0.249972,0.003750,0,0);-webkit-transform:matrix(0.005250,-0.349981,0.249972,0.003750,0,0);}
.m5c_c00012{transform:matrix(0.005273,-0.351500,0.249972,0.003750,0,0);-ms-transform:matrix(0.005273,-0.351500,0.249972,0.003750,0,0);-webkit-transform:matrix(0.005273,-0.351500,0.249972,0.003750,0,0);}
.m71_c00012{transform:matrix(0.005286,-0.240267,0.249940,0.005499,0,0);-ms-transform:matrix(0.005286,-0.240267,0.249940,0.005499,0,0);-webkit-transform:matrix(0.005286,-0.240267,0.249940,0.005499,0,0);}
.m4c_c00012{transform:matrix(0.005294,-0.230159,0.249934,0.005748,0,0);-ms-transform:matrix(0.005294,-0.230159,0.249934,0.005748,0,0);-webkit-transform:matrix(0.005294,-0.230159,0.249934,0.005748,0,0);}
.m41_c00012{transform:matrix(0.005294,-0.220581,0.249928,0.005998,0,0);-ms-transform:matrix(0.005294,-0.220581,0.249928,0.005998,0,0);-webkit-transform:matrix(0.005294,-0.220581,0.249928,0.005998,0,0);}
.ma_c00012{transform:matrix(0.005361,-0.255269,0.249945,0.005249,0,0);-ms-transform:matrix(0.005361,-0.255269,0.249945,0.005249,0,0);-webkit-transform:matrix(0.005361,-0.255269,0.249945,0.005249,0,0);}
.m2c_c00012{transform:matrix(0.005442,-0.272116,0.249950,0.004999,0,0);-ms-transform:matrix(0.005442,-0.272116,0.249950,0.004999,0,0);-webkit-transform:matrix(0.005442,-0.272116,0.249950,0.004999,0,0);}
.m65_c00012{transform:matrix(0.005464,-0.420299,0.249979,0.003250,0,0);-ms-transform:matrix(0.005464,-0.420299,0.249979,0.003250,0,0);-webkit-transform:matrix(0.005464,-0.420299,0.249979,0.003250,0,0);}
.m4_c00012{transform:matrix(0.005518,-0.239902,0.249934,0.005748,0,0);-ms-transform:matrix(0.005518,-0.239902,0.249934,0.005748,0,0);-webkit-transform:matrix(0.005518,-0.239902,0.249934,0.005748,0,0);}
.m2d_c00012{transform:matrix(0.005546,-0.277300,0.249950,0.004999,0,0);-ms-transform:matrix(0.005546,-0.277300,0.249950,0.004999,0,0);-webkit-transform:matrix(0.005546,-0.277300,0.249950,0.004999,0,0);}
.m6e_c00012{transform:matrix(0.005581,-0.265761,0.249945,0.005249,0,0);-ms-transform:matrix(0.005581,-0.265761,0.249945,0.005249,0,0);-webkit-transform:matrix(0.005581,-0.265761,0.249945,0.005249,0,0);}
.m74_c00012{transform:matrix(0.005619,-0.330527,0.249964,0.004249,0,0);-ms-transform:matrix(0.005619,-0.330527,0.249964,0.004249,0,0);-webkit-transform:matrix(0.005619,-0.330527,0.249964,0.004249,0,0);}
.m30_c00012{transform:matrix(0.005620,-0.280994,0.249950,0.004999,0,0);-ms-transform:matrix(0.005620,-0.280994,0.249950,0.004999,0,0);-webkit-transform:matrix(0.005620,-0.280994,0.249950,0.004999,0,0);}
.m75_c00012{transform:matrix(0.005736,-0.337431,0.249964,0.004249,0,0);-ms-transform:matrix(0.005736,-0.337431,0.249964,0.004249,0,0);-webkit-transform:matrix(0.005736,-0.337431,0.249964,0.004249,0,0);}
.m3e_c00012{transform:matrix(0.005789,-0.321638,0.249960,0.004499,0,0);-ms-transform:matrix(0.005789,-0.321638,0.249960,0.004499,0,0);-webkit-transform:matrix(0.005789,-0.321638,0.249960,0.004499,0,0);}
.m2a_c00012{transform:matrix(0.005823,-0.291167,0.249950,0.004999,0,0);-ms-transform:matrix(0.005823,-0.291167,0.249950,0.004999,0,0);-webkit-transform:matrix(0.005823,-0.291167,0.249950,0.004999,0,0);}
.m18_c00012{transform:matrix(0.005909,-0.227263,0.249916,0.006498,0,0);-ms-transform:matrix(0.005909,-0.227263,0.249916,0.006498,0,0);-webkit-transform:matrix(0.005909,-0.227263,0.249916,0.006498,0,0);}
.m3_c00012{transform:matrix(0.005950,-0.258717,0.249934,0.005748,0,0);-ms-transform:matrix(0.005950,-0.258717,0.249934,0.005748,0,0);-webkit-transform:matrix(0.005950,-0.258717,0.249934,0.005748,0,0);}
.m76_c00012{transform:matrix(0.005980,-0.351789,0.249964,0.004249,0,0);-ms-transform:matrix(0.005980,-0.351789,0.249964,0.004249,0,0);-webkit-transform:matrix(0.005980,-0.351789,0.249964,0.004249,0,0);}
.m2b_c00012{transform:matrix(0.005990,-0.299480,0.249950,0.004999,0,0);-ms-transform:matrix(0.005990,-0.299480,0.249950,0.004999,0,0);-webkit-transform:matrix(0.005990,-0.299480,0.249950,0.004999,0,0);}
.m31_c00012{transform:matrix(0.006184,-0.309223,0.249950,0.004999,0,0);-ms-transform:matrix(0.006184,-0.309223,0.249950,0.004999,0,0);-webkit-transform:matrix(0.006184,-0.309223,0.249950,0.004999,0,0);}
.m78_c00012{transform:matrix(0.006243,-0.367247,0.249964,0.004249,0,0);-ms-transform:matrix(0.006243,-0.367247,0.249964,0.004249,0,0);-webkit-transform:matrix(0.006243,-0.367247,0.249964,0.004249,0,0);}
.m5_c00012{transform:matrix(0.006326,-0.275062,0.249934,0.005748,0,0);-ms-transform:matrix(0.006326,-0.275062,0.249934,0.005748,0,0);-webkit-transform:matrix(0.006326,-0.275062,0.249934,0.005748,0,0);}
.m7b_c00012{transform:matrix(0.006525,-0.343403,0.249955,0.004749,0,0);-ms-transform:matrix(0.006525,-0.343403,0.249955,0.004749,0,0);-webkit-transform:matrix(0.006525,-0.343403,0.249955,0.004749,0,0);}
.m79_c00012{transform:matrix(0.006646,-0.390964,0.249964,0.004249,0,0);-ms-transform:matrix(0.006646,-0.390964,0.249964,0.004249,0,0);-webkit-transform:matrix(0.006646,-0.390964,0.249964,0.004249,0,0);}
.m24_c00012{transform:matrix(0.006677,-0.351427,0.249955,0.004749,0,0);-ms-transform:matrix(0.006677,-0.351427,0.249955,0.004749,0,0);-webkit-transform:matrix(0.006677,-0.351427,0.249955,0.004749,0,0);}
.m55_c00012{transform:matrix(0.006728,-0.320379,0.249945,0.005249,0,0);-ms-transform:matrix(0.006728,-0.320379,0.249945,0.005249,0,0);-webkit-transform:matrix(0.006728,-0.320379,0.249945,0.005249,0,0);}
.m3c_c00012{transform:matrix(0.006764,-0.338217,0.249950,0.004999,0,0);-ms-transform:matrix(0.006764,-0.338217,0.249950,0.004999,0,0);-webkit-transform:matrix(0.006764,-0.338217,0.249950,0.004999,0,0);}
.m32_c00012{transform:matrix(0.006791,-0.339527,0.249950,0.004999,0,0);-ms-transform:matrix(0.006791,-0.339527,0.249950,0.004999,0,0);-webkit-transform:matrix(0.006791,-0.339527,0.249950,0.004999,0,0);}
.m7_c00012{transform:matrix(0.006918,-0.300770,0.249934,0.005748,0,0);-ms-transform:matrix(0.006918,-0.300770,0.249934,0.005748,0,0);-webkit-transform:matrix(0.006918,-0.300770,0.249934,0.005748,0,0);}
.m42_c00012{transform:matrix(0.007142,-0.297584,0.249928,0.005998,0,0);-ms-transform:matrix(0.007142,-0.297584,0.249928,0.005998,0,0);-webkit-transform:matrix(0.007142,-0.297584,0.249928,0.005998,0,0);}
.m63_c00012{transform:matrix(0.007610,-0.422787,0.249960,0.004499,0,0);-ms-transform:matrix(0.007610,-0.422787,0.249960,0.004499,0,0);-webkit-transform:matrix(0.007610,-0.422787,0.249960,0.004499,0,0);}
.m43_c00012{transform:matrix(0.007681,-0.320053,0.249928,0.005998,0,0);-ms-transform:matrix(0.007681,-0.320053,0.249928,0.005998,0,0);-webkit-transform:matrix(0.007681,-0.320053,0.249928,0.005998,0,0);}
.m23_c00012{transform:matrix(0.008026,-0.422429,0.249955,0.004749,0,0);-ms-transform:matrix(0.008026,-0.422429,0.249955,0.004749,0,0);-webkit-transform:matrix(0.008026,-0.422429,0.249955,0.004749,0,0);}
.m64_c00012{transform:matrix(0.008681,-0.434068,0.249950,0.004999,0,0);-ms-transform:matrix(0.008681,-0.434068,0.249950,0.004999,0,0);-webkit-transform:matrix(0.008681,-0.434068,0.249950,0.004999,0,0);}
.m40_c00012{transform:matrix(0.009193,-0.340476,0.249909,0.006748,0,0);-ms-transform:matrix(0.009193,-0.340476,0.249909,0.006748,0,0);-webkit-transform:matrix(0.009193,-0.340476,0.249909,0.006748,0,0);}
.m4b_c00012{transform:matrix(0.009925,-0.431541,0.249934,0.005748,0,0);-ms-transform:matrix(0.009925,-0.431541,0.249934,0.005748,0,0);-webkit-transform:matrix(0.009925,-0.431541,0.249934,0.005748,0,0);}
.m1a_c00012{transform:matrix(0.010725,-0.714980,0.249972,0.003750,0,0);-ms-transform:matrix(0.010725,-0.714980,0.249972,0.003750,0,0);-webkit-transform:matrix(0.010725,-0.714980,0.249972,0.003750,0,0);}
.m1e_c00012{transform:matrix(0.010893,-0.726218,0.249972,0.003750,0,0);-ms-transform:matrix(0.010893,-0.726218,0.249972,0.003750,0,0);-webkit-transform:matrix(0.010893,-0.726218,0.249972,0.003750,0,0);}
.m4f_c00012{transform:matrix(0.011219,-0.534217,0.249945,0.005249,0,0);-ms-transform:matrix(0.011219,-0.534217,0.249945,0.005249,0,0);-webkit-transform:matrix(0.011219,-0.534217,0.249945,0.005249,0,0);}
.m1f_c00012{transform:matrix(0.011958,-0.797170,0.249972,0.003750,0,0);-ms-transform:matrix(0.011958,-0.797170,0.249972,0.003750,0,0);-webkit-transform:matrix(0.011958,-0.797170,0.249972,0.003750,0,0);}
.m1c_c00012{transform:matrix(0.012239,-0.815903,0.249972,0.003750,0,0);-ms-transform:matrix(0.012239,-0.815903,0.249972,0.003750,0,0);-webkit-transform:matrix(0.012239,-0.815903,0.249972,0.003750,0,0);}
.m62_c00012{transform:matrix(0.012483,-0.693498,0.249960,0.004499,0,0);-ms-transform:matrix(0.012483,-0.693498,0.249960,0.004499,0,0);-webkit-transform:matrix(0.012483,-0.693498,0.249960,0.004499,0,0);}
.m73_c00012{transform:matrix(0.017144,-1.008499,0.249964,0.004249,0,0);-ms-transform:matrix(0.017144,-1.008499,0.249964,0.004249,0,0);-webkit-transform:matrix(0.017144,-1.008499,0.249964,0.004249,0,0);}
.m15_c00012{transform:matrix(0.018663,-0.777611,0.249928,0.005998,0,0);-ms-transform:matrix(0.018663,-0.777611,0.249928,0.005998,0,0);-webkit-transform:matrix(0.018663,-0.777611,0.249928,0.005998,0,0);}
.m8_c00012{transform:matrix(0.018962,-0.902956,0.249945,0.005249,0,0);-ms-transform:matrix(0.018962,-0.902956,0.249945,0.005249,0,0);-webkit-transform:matrix(0.018962,-0.902956,0.249945,0.005249,0,0);}
.m1b_c00012{transform:matrix(0.041353,-2.756860,0.249972,0.003750,0,0);-ms-transform:matrix(0.041353,-2.756860,0.249972,0.003750,0,0);-webkit-transform:matrix(0.041353,-2.756860,0.249972,0.003750,0,0);}
.m4a_c00012{transform:matrix(0.045446,-2.840346,0.249968,0.003999,0,0);-ms-transform:matrix(0.045446,-2.840346,0.249968,0.003999,0,0);-webkit-transform:matrix(0.045446,-2.840346,0.249968,0.003999,0,0);}
.m14_c00012{transform:matrix(0.047097,-1.962375,0.249928,0.005998,0,0);-ms-transform:matrix(0.047097,-1.962375,0.249928,0.005998,0,0);-webkit-transform:matrix(0.047097,-1.962375,0.249928,0.005998,0,0);}
.m61_c00012{transform:matrix(0.057887,-3.215944,0.249960,0.004499,0,0);-ms-transform:matrix(0.057887,-3.215944,0.249960,0.004499,0,0);-webkit-transform:matrix(0.057887,-3.215944,0.249960,0.004499,0,0);}
.m13_c00012{transform:matrix(0.060559,-2.523288,0.249928,0.005998,0,0);-ms-transform:matrix(0.060559,-2.523288,0.249928,0.005998,0,0);-webkit-transform:matrix(0.060559,-2.523288,0.249928,0.005998,0,0);}
.m0_c00012{transform:matrix(0.119590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119590,0.000000,0.000000,0.250000,0,0);}
.m12_c00012{transform:matrix(0.134330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134330,0.000000,0.000000,0.250000,0,0);}
.m21_c00012{transform:matrix(0.183850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183850,0.000000,0.000000,0.250000,0,0);}
.m88_c00012{transform:matrix(0.198075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198075,0.000000,0.000000,0.250000,0,0);}
.m7f_c00012{transform:matrix(0.240100,0.003121,-0.003250,0.249979,0,0);-ms-transform:matrix(0.240100,0.003121,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.240100,0.003121,-0.003250,0.249979,0,0);}
.m7e_c00012{transform:matrix(0.246624,0.003206,-0.003250,0.249979,0,0);-ms-transform:matrix(0.246624,0.003206,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.246624,0.003206,-0.003250,0.249979,0,0);}
.m82_c00012{transform:matrix(0.261648,0.003401,-0.003250,0.249979,0,0);-ms-transform:matrix(0.261648,0.003401,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.261648,0.003401,-0.003250,0.249979,0,0);}
.m81_c00012{transform:matrix(0.277267,0.003604,-0.003250,0.249979,0,0);-ms-transform:matrix(0.277267,0.003604,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.277267,0.003604,-0.003250,0.249979,0,0);}
.m80_c00012{transform:matrix(0.317093,0.004122,-0.003250,0.249979,0,0);-ms-transform:matrix(0.317093,0.004122,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.317093,0.004122,-0.003250,0.249979,0,0);}
.m85_c00012{transform:matrix(0.346846,0.004509,-0.003250,0.249979,0,0);-ms-transform:matrix(0.346846,0.004509,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.346846,0.004509,-0.003250,0.249979,0,0);}
.m84_c00012{transform:matrix(0.373933,0.004861,-0.003250,0.249979,0,0);-ms-transform:matrix(0.373933,0.004861,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.373933,0.004861,-0.003250,0.249979,0,0);}
.m86_c00012{transform:matrix(0.507417,0.006596,-0.003250,0.249979,0,0);-ms-transform:matrix(0.507417,0.006596,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.507417,0.006596,-0.003250,0.249979,0,0);}
.m83_c00012{transform:matrix(0.647865,0.008422,-0.003250,0.249979,0,0);-ms-transform:matrix(0.647865,0.008422,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.647865,0.008422,-0.003250,0.249979,0,0);}
.m87_c00012{transform:matrix(1.359560,0.017674,-0.003250,0.249979,0,0);-ms-transform:matrix(1.359560,0.017674,-0.003250,0.249979,0,0);-webkit-transform:matrix(1.359560,0.017674,-0.003250,0.249979,0,0);}
.m2_c00012{transform:matrix(1.464325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.464325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.464325,0.000000,0.000000,0.250000,0,0);}
.m1_c00012{transform:matrix(1.707110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.707110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.707110,0.000000,0.000000,0.250000,0,0);}
.v0_c00012{vertical-align:0.000000px;}
.ls0_c00012{letter-spacing:0.000000px;}
.sc__c00012{text-shadow:none;}
.sc0_c00012{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__c00012{-webkit-text-stroke:0px transparent;}
.sc0_c00012{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00012{word-spacing:0.000000px;}
._2_c00012{margin-left:-294.754929px;}
._1_c00012{margin-left:-292.683243px;}
._0_c00012{margin-left:-242.145043px;}
.fc0_c00012{color:transparent;}
.fsa_c00012{font-size:12.001350px;}
.fsb_c00012{font-size:18.000000px;}
.fs14_c00012{font-size:18.002304px;}
.fs6_c00012{font-size:18.005183px;}
.fs11_c00012{font-size:18.006560px;}
.fs0_c00012{font-size:24.000000px;}
.fs9_c00012{font-size:24.002700px;}
.fs2_c00012{font-size:30.006614px;}
.fsf_c00012{font-size:36.007199px;}
.fs18_c00012{font-size:42.009260px;}
.fs24_c00012{font-size:48.004056px;}
.fsc_c00012{font-size:48.008663px;}
.fse_c00012{font-size:54.010799px;}
.fs1a_c00012{font-size:72.008100px;}
.fsd_c00012{font-size:72.012995px;}
.fs3_c00012{font-size:72.015874px;}
.fs15_c00012{font-size:72.019041px;}
.fs12_c00012{font-size:72.020733px;}
.fs8_c00012{font-size:72.024332px;}
.fs21_c00012{font-size:78.011270px;}
.fs4_c00012{font-size:78.012635px;}
.fs1f_c00012{font-size:78.017197px;}
.fs20_c00012{font-size:78.018874px;}
.fs7_c00012{font-size:78.026360px;}
.fs1c_c00012{font-size:84.007098px;}
.fs1b_c00012{font-size:84.016798px;}
.fs1e_c00012{font-size:84.018520px;}
.fs5_c00012{font-size:90.000000px;}
.fs19_c00012{font-size:90.023802px;}
.fs13_c00012{font-size:90.025916px;}
.fs10_c00012{font-size:96.015551px;}
.fs16_c00012{font-size:96.021166px;}
.fs1_c00012{font-size:108.028562px;}
.fs22_c00012{font-size:114.012824px;}
.fs1d_c00012{font-size:114.016472px;}
.fs17_c00012{font-size:132.029103px;}
.fs25_c00012{font-size:138.000000px;}
.fs23_c00012{font-size:312.056311px;}
.y0_c00012{bottom:0.000000px;}
.y8b_c00012{bottom:101.097317px;}
.y8a_c00012{bottom:102.231593px;}
.y8c_c00012{bottom:102.600000px;}
.y89_c00012{bottom:103.091465px;}
.y88_c00012{bottom:103.723206px;}
.y87_c00012{bottom:107.180088px;}
.y86_c00012{bottom:107.640035px;}
.y85_c00012{bottom:108.321287px;}
.y84_c00012{bottom:108.805218px;}
.y83_c00012{bottom:109.401957px;}
.y82_c00012{bottom:110.160000px;}
.y52_c00012{bottom:124.648245px;}
.y53_c00012{bottom:124.913658px;}
.y23_c00012{bottom:143.640000px;}
.y20_c00012{bottom:155.727000px;}
.y13_c00012{bottom:173.880000px;}
.y17_c00012{bottom:204.553500px;}
.y1a_c00012{bottom:208.349058px;}
.y67_c00012{bottom:210.528537px;}
.y3f_c00012{bottom:211.917000px;}
.y1f_c00012{bottom:212.710500px;}
.y3e_c00012{bottom:225.949500px;}
.y5f_c00012{bottom:227.781000px;}
.y64_c00012{bottom:235.348500px;}
.y59_c00012{bottom:238.638000px;}
.y19_c00012{bottom:245.359539px;}
.y1e_c00012{bottom:246.481500px;}
.y5e_c00012{bottom:251.854500px;}
.y18_c00012{bottom:259.376691px;}
.y3d_c00012{bottom:261.324000px;}
.y58_c00012{bottom:263.485500px;}
.y1d_c00012{bottom:276.436500px;}
.y5d_c00012{bottom:292.890000px;}
.y3c_c00012{bottom:294.808500px;}
.y16_c00012{bottom:302.812500px;}
.y51_c00012{bottom:326.562000px;}
.y66_c00012{bottom:326.582157px;}
.y22_c00012{bottom:327.225188px;}
.y3b_c00012{bottom:328.293000px;}
.y5c_c00012{bottom:355.537500px;}
.y21_c00012{bottom:361.249935px;}
.y3a_c00012{bottom:361.782000px;}
.y57_c00012{bottom:363.678000px;}
.y15_c00012{bottom:371.733000px;}
.y1c_c00012{bottom:376.864500px;}
.y68_c00012{bottom:393.331500px;}
.y39_c00012{bottom:395.811000px;}
.y56_c00012{bottom:396.897000px;}
.y79_c00012{bottom:409.729500px;}
.y5b_c00012{bottom:411.174000px;}
.y38_c00012{bottom:429.295500px;}
.y55_c00012{bottom:430.111500px;}
.y1b_c00012{bottom:432.220500px;}
.y6d_c00012{bottom:447.901500px;}
.y81_c00012{bottom:459.975000px;}
.y37_c00012{bottom:462.780000px;}
.y14_c00012{bottom:463.687500px;}
.y54_c00012{bottom:463.854000px;}
.y5a_c00012{bottom:464.370000px;}
.y65_c00012{bottom:465.082482px;}
.y6c_c00012{bottom:481.399500px;}
.y78_c00012{bottom:487.837500px;}
.y7d_c00012{bottom:503.194275px;}
.y72_c00012{bottom:521.047500px;}
.yd_c00012{bottom:522.002913px;}
.y12_c00012{bottom:522.286500px;}
.y31_c00012{bottom:522.414000px;}
.y36_c00012{bottom:522.419580px;}
.y2b_c00012{bottom:522.545228px;}
.y48_c00012{bottom:522.582000px;}
.y4c_c00012{bottom:522.945000px;}
.y50_c00012{bottom:523.642500px;}
.y71_c00012{bottom:539.406000px;}
.y63_c00012{bottom:540.180000px;}
.y75_c00012{bottom:541.245000px;}
.y8_c00012{bottom:544.549500px;}
.y80_c00012{bottom:547.149000px;}
.y6b_c00012{bottom:551.329500px;}
.y7_c00012{bottom:559.125000px;}
.yc_c00012{bottom:560.618275px;}
.y30_c00012{bottom:560.752500px;}
.y27_c00012{bottom:560.757000px;}
.y11_c00012{bottom:560.890500px;}
.y2a_c00012{bottom:561.146494px;}
.y47_c00012{bottom:561.187500px;}
.y35_c00012{bottom:561.301440px;}
.y4b_c00012{bottom:561.550500px;}
.y42_c00012{bottom:561.778500px;}
.y4f_c00012{bottom:562.255500px;}
.y74_c00012{bottom:566.658000px;}
.y62_c00012{bottom:569.889000px;}
.y6a_c00012{bottom:576.180000px;}
.y2f_c00012{bottom:583.491000px;}
.y6_c00012{bottom:584.358000px;}
.y77_c00012{bottom:589.032000px;}
.y7c_c00012{bottom:597.745351px;}
.y26_c00012{bottom:615.627000px;}
.y4a_c00012{bottom:627.708000px;}
.y46_c00012{bottom:633.003000px;}
.y2e_c00012{bottom:635.299500px;}
.y34_c00012{bottom:636.362220px;}
.y41_c00012{bottom:637.180500px;}
.y5_c00012{bottom:637.438500px;}
.yb_c00012{bottom:638.450563px;}
.y29_c00012{bottom:639.003028px;}
.y10_c00012{bottom:639.802500px;}
.y4e_c00012{bottom:642.460500px;}
.y61_c00012{bottom:644.404500px;}
.y7b_c00012{bottom:646.366403px;}
.y45_c00012{bottom:648.363000px;}
.yf_c00012{bottom:652.191000px;}
.y3_c00012{bottom:663.070500px;}
.y6f_c00012{bottom:668.383500px;}
.y2d_c00012{bottom:669.885000px;}
.y33_c00012{bottom:671.758170px;}
.y25_c00012{bottom:674.481000px;}
.y2_c00012{bottom:675.496500px;}
.y73_c00012{bottom:678.280500px;}
.y4_c00012{bottom:683.878500px;}
.y24_c00012{bottom:684.954000px;}
.y49_c00012{bottom:685.761000px;}
.y6e_c00012{bottom:687.339000px;}
.y1_c00012{bottom:692.010000px;}
.y7f_c00012{bottom:693.514500px;}
.y32_c00012{bottom:693.657510px;}
.y2c_c00012{bottom:693.667500px;}
.y44_c00012{bottom:693.756000px;}
.y9_c00012{bottom:693.759000px;}
.y4d_c00012{bottom:693.765000px;}
.ye_c00012{bottom:693.798000px;}
.ya_c00012{bottom:693.803965px;}
.y70_c00012{bottom:693.805248px;}
.y60_c00012{bottom:693.805500px;}
.y28_c00012{bottom:693.812536px;}
.y7e_c00012{bottom:693.846000px;}
.y76_c00012{bottom:693.858000px;}
.y7a_c00012{bottom:693.878953px;}
.y43_c00012{bottom:693.879000px;}
.y40_c00012{bottom:693.880500px;}
.y69_c00012{bottom:693.886500px;}
.hc_c00012{height:12.001350px;}
.hd_c00012{height:18.000000px;}
.h16_c00012{height:18.002304px;}
.h8_c00012{height:18.005183px;}
.h13_c00012{height:18.006560px;}
.h2_c00012{height:24.000000px;}
.hb_c00012{height:24.002700px;}
.h4_c00012{height:30.006614px;}
.h11_c00012{height:36.007199px;}
.h1a_c00012{height:42.009260px;}
.h26_c00012{height:48.004056px;}
.he_c00012{height:48.008663px;}
.h10_c00012{height:54.010799px;}
.h1c_c00012{height:72.008100px;}
.hf_c00012{height:72.012995px;}
.h5_c00012{height:72.015874px;}
.h17_c00012{height:72.019041px;}
.h14_c00012{height:72.020733px;}
.ha_c00012{height:72.024332px;}
.h23_c00012{height:78.011270px;}
.h6_c00012{height:78.012635px;}
.h21_c00012{height:78.017197px;}
.h22_c00012{height:78.018874px;}
.h9_c00012{height:78.026360px;}
.h1e_c00012{height:84.007098px;}
.h1d_c00012{height:84.016798px;}
.h20_c00012{height:84.018520px;}
.h7_c00012{height:90.000000px;}
.h1b_c00012{height:90.023802px;}
.h15_c00012{height:90.025916px;}
.h12_c00012{height:96.015551px;}
.h18_c00012{height:96.021166px;}
.h3_c00012{height:108.028562px;}
.h24_c00012{height:114.012824px;}
.h1f_c00012{height:114.016472px;}
.h19_c00012{height:132.029103px;}
.h27_c00012{height:138.000000px;}
.h25_c00012{height:312.056311px;}
.h1_c00012{height:693.750000px;}
.h0_c00012{height:693.900000px;}
.w1_c00012{width:950.250000px;}
.w0_c00012{width:950.400000px;}
.x0_c00012{left:0.000000px;}
.x63_c00012{left:17.550000px;}
.x5a_c00012{left:28.353000px;}
.x5b_c00012{left:86.664000px;}
.x5c_c00012{left:132.567000px;}
.x59_c00012{left:140.005249px;}
.x58_c00012{left:141.661555px;}
.x57_c00012{left:144.442500px;}
.x5d_c00012{left:169.792500px;}
.x56_c00012{left:211.678500px;}
.x5e_c00012{left:222.196500px;}
.x5f_c00012{left:257.577000px;}
.x55_c00012{left:275.943091px;}
.x54_c00012{left:277.545958px;}
.x53_c00012{left:279.174228px;}
.x52_c00012{left:305.938315px;}
.x51_c00012{left:307.266151px;}
.x50_c00012{left:308.986458px;}
.x4f_c00012{left:310.768500px;}
.x4e_c00012{left:338.819805px;}
.x4d_c00012{left:341.275500px;}
.x4c_c00012{left:366.664500px;}
.x4b_c00012{left:404.449728px;}
.x49_c00012{left:423.638731px;}
.x48_c00012{left:425.250000px;}
.x4a_c00012{left:432.814500px;}
.x46_c00012{left:478.978500px;}
.x47_c00012{left:484.380000px;}
.x45_c00012{left:508.599588px;}
.x44_c00012{left:511.348767px;}
.x43_c00012{left:514.629528px;}
.x60_c00012{left:523.491000px;}
.x42_c00012{left:526.498500px;}
.x41_c00012{left:535.979753px;}
.x40_c00012{left:537.838500px;}
.x3f_c00012{left:560.214453px;}
.x3e_c00012{left:561.711960px;}
.x3d_c00012{left:563.152853px;}
.x3c_c00012{left:564.432492px;}
.x3b_c00012{left:565.656000px;}
.x34_c00012{left:572.342281px;}
.x33_c00012{left:574.186996px;}
.x32_c00012{left:575.367000px;}
.x31_c00012{left:593.460000px;}
.x37_c00012{left:604.004256px;}
.x30_c00012{left:605.057448px;}
.x2f_c00012{left:606.645228px;}
.x2e_c00012{left:608.038500px;}
.x3a_c00012{left:609.502262px;}
.x39_c00012{left:612.303903px;}
.x38_c00012{left:613.710000px;}
.x36_c00012{left:618.858233px;}
.x61_c00012{left:638.230500px;}
.x2d_c00012{left:646.165356px;}
.x2c_c00012{left:648.257568px;}
.x2b_c00012{left:649.347000px;}
.x2a_c00012{left:667.440000px;}
.x29_c00012{left:679.912164px;}
.x28_c00012{left:681.269400px;}
.x27_c00012{left:682.290000px;}
.x62_c00012{left:725.482500px;}
.x22_c00012{left:729.657030px;}
.x21_c00012{left:731.269290px;}
.x20_c00012{left:732.500730px;}
.x26_c00012{left:733.610880px;}
.x25_c00012{left:734.950260px;}
.x24_c00012{left:736.300620px;}
.x23_c00012{left:737.640000px;}
.x1f_c00012{left:751.760430px;}
.x1e_c00012{left:752.981970px;}
.x1d_c00012{left:754.018140px;}
.x1c_c00012{left:755.185500px;}
.x1b_c00012{left:785.379894px;}
.x1a_c00012{left:787.582434px;}
.x35_c00012{left:790.017000px;}
.x19_c00012{left:815.198757px;}
.x18_c00012{left:816.241287px;}
.x17_c00012{left:817.558500px;}
.x12_c00012{left:841.833483px;}
.xc_c00012{left:848.376165px;}
.xb_c00012{left:850.768500px;}
.x11_c00012{left:878.037000px;}
.xa_c00012{left:885.347622px;}
.x9_c00012{left:886.754000px;}
.x8_c00012{left:887.754350px;}
.x10_c00012{left:900.930000px;}
.xf_c00012{left:902.584092px;}
.xe_c00012{left:904.791000px;}
.x7_c00012{left:906.117000px;}
.xd_c00012{left:911.790000px;}
.x6_c00012{left:918.411028px;}
.x5_c00012{left:919.631880px;}
.x4_c00012{left:920.700000px;}
.x16_c00012{left:926.914252px;}
.x15_c00012{left:933.562597px;}
.x14_c00012{left:934.923915px;}
.x3_c00012{left:936.360000px;}
.x13_c00012{left:937.710000px;}
.x2_c00012{left:940.950000px;}
.x1_c00012{left:946.890000px;}
@media print{
.v0_c00012{vertical-align:0.000000pt;}
.ls0_c00012{letter-spacing:0.000000pt;}
.ws0_c00012{word-spacing:0.000000pt;}
._2_c00012{margin-left:-262.004381pt;}
._1_c00012{margin-left:-260.162883pt;}
._0_c00012{margin-left:-215.240039pt;}
.fsa_c00012{font-size:10.667867pt;}
.fsb_c00012{font-size:16.000000pt;}
.fs14_c00012{font-size:16.002048pt;}
.fs6_c00012{font-size:16.004607pt;}
.fs11_c00012{font-size:16.005831pt;}
.fs0_c00012{font-size:21.333333pt;}
.fs9_c00012{font-size:21.335733pt;}
.fs2_c00012{font-size:26.672546pt;}
.fsf_c00012{font-size:32.006399pt;}
.fs18_c00012{font-size:37.341564pt;}
.fs24_c00012{font-size:42.670272pt;}
.fsc_c00012{font-size:42.674367pt;}
.fse_c00012{font-size:48.009599pt;}
.fs1a_c00012{font-size:64.007200pt;}
.fsd_c00012{font-size:64.011551pt;}
.fs3_c00012{font-size:64.014110pt;}
.fs15_c00012{font-size:64.016926pt;}
.fs12_c00012{font-size:64.018429pt;}
.fs8_c00012{font-size:64.021628pt;}
.fs21_c00012{font-size:69.343351pt;}
.fs4_c00012{font-size:69.344564pt;}
.fs1f_c00012{font-size:69.348620pt;}
.fs20_c00012{font-size:69.350110pt;}
.fs7_c00012{font-size:69.356764pt;}
.fs1c_c00012{font-size:74.672976pt;}
.fs1b_c00012{font-size:74.681599pt;}
.fs1e_c00012{font-size:74.683129pt;}
.fs5_c00012{font-size:80.000000pt;}
.fs19_c00012{font-size:80.021157pt;}
.fs13_c00012{font-size:80.023037pt;}
.fs10_c00012{font-size:85.347156pt;}
.fs16_c00012{font-size:85.352147pt;}
.fs1_c00012{font-size:96.025389pt;}
.fs22_c00012{font-size:101.344733pt;}
.fs1d_c00012{font-size:101.347975pt;}
.fs17_c00012{font-size:117.359202pt;}
.fs25_c00012{font-size:122.666667pt;}
.fs23_c00012{font-size:277.383387pt;}
.y0_c00012{bottom:0.000000pt;}
.y8b_c00012{bottom:89.864281pt;}
.y8a_c00012{bottom:90.872527pt;}
.y8c_c00012{bottom:91.200000pt;}
.y89_c00012{bottom:91.636857pt;}
.y88_c00012{bottom:92.198405pt;}
.y87_c00012{bottom:95.271189pt;}
.y86_c00012{bottom:95.680031pt;}
.y85_c00012{bottom:96.285588pt;}
.y84_c00012{bottom:96.715749pt;}
.y83_c00012{bottom:97.246184pt;}
.y82_c00012{bottom:97.920000pt;}
.y52_c00012{bottom:110.798440pt;}
.y53_c00012{bottom:111.034363pt;}
.y23_c00012{bottom:127.680000pt;}
.y20_c00012{bottom:138.424000pt;}
.y13_c00012{bottom:154.560000pt;}
.y17_c00012{bottom:181.825333pt;}
.y1a_c00012{bottom:185.199163pt;}
.y67_c00012{bottom:187.136477pt;}
.y3f_c00012{bottom:188.370667pt;}
.y1f_c00012{bottom:189.076000pt;}
.y3e_c00012{bottom:200.844000pt;}
.y5f_c00012{bottom:202.472000pt;}
.y64_c00012{bottom:209.198667pt;}
.y59_c00012{bottom:212.122667pt;}
.y19_c00012{bottom:218.097368pt;}
.y1e_c00012{bottom:219.094667pt;}
.y5e_c00012{bottom:223.870667pt;}
.y18_c00012{bottom:230.557059pt;}
.y3d_c00012{bottom:232.288000pt;}
.y58_c00012{bottom:234.209333pt;}
.y1d_c00012{bottom:245.721333pt;}
.y5d_c00012{bottom:260.346667pt;}
.y3c_c00012{bottom:262.052000pt;}
.y16_c00012{bottom:269.166667pt;}
.y51_c00012{bottom:290.277333pt;}
.y66_c00012{bottom:290.295251pt;}
.y22_c00012{bottom:290.866833pt;}
.y3b_c00012{bottom:291.816000pt;}
.y5c_c00012{bottom:316.033333pt;}
.y21_c00012{bottom:321.111053pt;}
.y3a_c00012{bottom:321.584000pt;}
.y57_c00012{bottom:323.269333pt;}
.y15_c00012{bottom:330.429333pt;}
.y1c_c00012{bottom:334.990667pt;}
.y68_c00012{bottom:349.628000pt;}
.y39_c00012{bottom:351.832000pt;}
.y56_c00012{bottom:352.797333pt;}
.y79_c00012{bottom:364.204000pt;}
.y5b_c00012{bottom:365.488000pt;}
.y38_c00012{bottom:381.596000pt;}
.y55_c00012{bottom:382.321333pt;}
.y1b_c00012{bottom:384.196000pt;}
.y6d_c00012{bottom:398.134667pt;}
.y81_c00012{bottom:408.866667pt;}
.y37_c00012{bottom:411.360000pt;}
.y14_c00012{bottom:412.166667pt;}
.y54_c00012{bottom:412.314667pt;}
.y5a_c00012{bottom:412.773333pt;}
.y65_c00012{bottom:413.406651pt;}
.y6c_c00012{bottom:427.910667pt;}
.y78_c00012{bottom:433.633333pt;}
.y7d_c00012{bottom:447.283800pt;}
.y72_c00012{bottom:463.153333pt;}
.yd_c00012{bottom:464.002589pt;}
.y12_c00012{bottom:464.254667pt;}
.y31_c00012{bottom:464.368000pt;}
.y36_c00012{bottom:464.372960pt;}
.y2b_c00012{bottom:464.484647pt;}
.y48_c00012{bottom:464.517333pt;}
.y4c_c00012{bottom:464.840000pt;}
.y50_c00012{bottom:465.460000pt;}
.y71_c00012{bottom:479.472000pt;}
.y63_c00012{bottom:480.160000pt;}
.y75_c00012{bottom:481.106667pt;}
.y8_c00012{bottom:484.044000pt;}
.y80_c00012{bottom:486.354667pt;}
.y6b_c00012{bottom:490.070667pt;}
.y7_c00012{bottom:497.000000pt;}
.yc_c00012{bottom:498.327356pt;}
.y30_c00012{bottom:498.446667pt;}
.y27_c00012{bottom:498.450667pt;}
.y11_c00012{bottom:498.569333pt;}
.y2a_c00012{bottom:498.796884pt;}
.y47_c00012{bottom:498.833333pt;}
.y35_c00012{bottom:498.934613pt;}
.y4b_c00012{bottom:499.156000pt;}
.y42_c00012{bottom:499.358667pt;}
.y4f_c00012{bottom:499.782667pt;}
.y74_c00012{bottom:503.696000pt;}
.y62_c00012{bottom:506.568000pt;}
.y6a_c00012{bottom:512.160000pt;}
.y2f_c00012{bottom:518.658667pt;}
.y6_c00012{bottom:519.429333pt;}
.y77_c00012{bottom:523.584000pt;}
.y7c_c00012{bottom:531.329201pt;}
.y26_c00012{bottom:547.224000pt;}
.y4a_c00012{bottom:557.962667pt;}
.y46_c00012{bottom:562.669333pt;}
.y2e_c00012{bottom:564.710667pt;}
.y34_c00012{bottom:565.655307pt;}
.y41_c00012{bottom:566.382667pt;}
.y5_c00012{bottom:566.612000pt;}
.yb_c00012{bottom:567.511612pt;}
.y29_c00012{bottom:568.002692pt;}
.y10_c00012{bottom:568.713333pt;}
.y4e_c00012{bottom:571.076000pt;}
.y61_c00012{bottom:572.804000pt;}
.y7b_c00012{bottom:574.547913pt;}
.y45_c00012{bottom:576.322667pt;}
.yf_c00012{bottom:579.725333pt;}
.y3_c00012{bottom:589.396000pt;}
.y6f_c00012{bottom:594.118667pt;}
.y2d_c00012{bottom:595.453333pt;}
.y33_c00012{bottom:597.118373pt;}
.y25_c00012{bottom:599.538667pt;}
.y2_c00012{bottom:600.441333pt;}
.y73_c00012{bottom:602.916000pt;}
.y4_c00012{bottom:607.892000pt;}
.y24_c00012{bottom:608.848000pt;}
.y49_c00012{bottom:609.565333pt;}
.y6e_c00012{bottom:610.968000pt;}
.y1_c00012{bottom:615.120000pt;}
.y7f_c00012{bottom:616.457333pt;}
.y32_c00012{bottom:616.584453pt;}
.y2c_c00012{bottom:616.593333pt;}
.y44_c00012{bottom:616.672000pt;}
.y9_c00012{bottom:616.674667pt;}
.y4d_c00012{bottom:616.680000pt;}
.ye_c00012{bottom:616.709333pt;}
.ya_c00012{bottom:616.714636pt;}
.y70_c00012{bottom:616.715776pt;}
.y60_c00012{bottom:616.716000pt;}
.y28_c00012{bottom:616.722255pt;}
.y7e_c00012{bottom:616.752000pt;}
.y76_c00012{bottom:616.762667pt;}
.y7a_c00012{bottom:616.781292pt;}
.y43_c00012{bottom:616.781333pt;}
.y40_c00012{bottom:616.782667pt;}
.y69_c00012{bottom:616.788000pt;}
.hc_c00012{height:10.667867pt;}
.hd_c00012{height:16.000000pt;}
.h16_c00012{height:16.002048pt;}
.h8_c00012{height:16.004607pt;}
.h13_c00012{height:16.005831pt;}
.h2_c00012{height:21.333333pt;}
.hb_c00012{height:21.335733pt;}
.h4_c00012{height:26.672546pt;}
.h11_c00012{height:32.006399pt;}
.h1a_c00012{height:37.341564pt;}
.h26_c00012{height:42.670272pt;}
.he_c00012{height:42.674367pt;}
.h10_c00012{height:48.009599pt;}
.h1c_c00012{height:64.007200pt;}
.hf_c00012{height:64.011551pt;}
.h5_c00012{height:64.014110pt;}
.h17_c00012{height:64.016926pt;}
.h14_c00012{height:64.018429pt;}
.ha_c00012{height:64.021628pt;}
.h23_c00012{height:69.343351pt;}
.h6_c00012{height:69.344564pt;}
.h21_c00012{height:69.348620pt;}
.h22_c00012{height:69.350110pt;}
.h9_c00012{height:69.356764pt;}
.h1e_c00012{height:74.672976pt;}
.h1d_c00012{height:74.681599pt;}
.h20_c00012{height:74.683129pt;}
.h7_c00012{height:80.000000pt;}
.h1b_c00012{height:80.021157pt;}
.h15_c00012{height:80.023037pt;}
.h12_c00012{height:85.347156pt;}
.h18_c00012{height:85.352147pt;}
.h3_c00012{height:96.025389pt;}
.h24_c00012{height:101.344733pt;}
.h1f_c00012{height:101.347975pt;}
.h19_c00012{height:117.359202pt;}
.h27_c00012{height:122.666667pt;}
.h25_c00012{height:277.383387pt;}
.h1_c00012{height:616.666667pt;}
.h0_c00012{height:616.800000pt;}
.w1_c00012{width:844.666667pt;}
.w0_c00012{width:844.800000pt;}
.x0_c00012{left:0.000000pt;}
.x63_c00012{left:15.600000pt;}
.x5a_c00012{left:25.202667pt;}
.x5b_c00012{left:77.034667pt;}
.x5c_c00012{left:117.837333pt;}
.x59_c00012{left:124.449111pt;}
.x58_c00012{left:125.921383pt;}
.x57_c00012{left:128.393333pt;}
.x5d_c00012{left:150.926667pt;}
.x56_c00012{left:188.158667pt;}
.x5e_c00012{left:197.508000pt;}
.x5f_c00012{left:228.957333pt;}
.x55_c00012{left:245.282748pt;}
.x54_c00012{left:246.707519pt;}
.x53_c00012{left:248.154869pt;}
.x52_c00012{left:271.945169pt;}
.x51_c00012{left:273.125468pt;}
.x50_c00012{left:274.654629pt;}
.x4f_c00012{left:276.238667pt;}
.x4e_c00012{left:301.173160pt;}
.x4d_c00012{left:303.356000pt;}
.x4c_c00012{left:325.924000pt;}
.x4b_c00012{left:359.510869pt;}
.x49_c00012{left:376.567761pt;}
.x48_c00012{left:378.000000pt;}
.x4a_c00012{left:384.724000pt;}
.x46_c00012{left:425.758667pt;}
.x47_c00012{left:430.560000pt;}
.x45_c00012{left:452.088523pt;}
.x44_c00012{left:454.532237pt;}
.x43_c00012{left:457.448469pt;}
.x60_c00012{left:465.325333pt;}
.x42_c00012{left:467.998667pt;}
.x41_c00012{left:476.426447pt;}
.x40_c00012{left:478.078667pt;}
.x3f_c00012{left:497.968403pt;}
.x3e_c00012{left:499.299520pt;}
.x3d_c00012{left:500.580313pt;}
.x3c_c00012{left:501.717771pt;}
.x3b_c00012{left:502.805333pt;}
.x34_c00012{left:508.748695pt;}
.x33_c00012{left:510.388441pt;}
.x32_c00012{left:511.437333pt;}
.x31_c00012{left:527.520000pt;}
.x37_c00012{left:536.892672pt;}
.x30_c00012{left:537.828843pt;}
.x2f_c00012{left:539.240203pt;}
.x2e_c00012{left:540.478667pt;}
.x3a_c00012{left:541.779788pt;}
.x39_c00012{left:544.270136pt;}
.x38_c00012{left:545.520000pt;}
.x36_c00012{left:550.096207pt;}
.x61_c00012{left:567.316000pt;}
.x2d_c00012{left:574.369205pt;}
.x2c_c00012{left:576.228949pt;}
.x2b_c00012{left:577.197333pt;}
.x2a_c00012{left:593.280000pt;}
.x29_c00012{left:604.366368pt;}
.x28_c00012{left:605.572800pt;}
.x27_c00012{left:606.480000pt;}
.x62_c00012{left:644.873333pt;}
.x22_c00012{left:648.584027pt;}
.x21_c00012{left:650.017147pt;}
.x20_c00012{left:651.111760pt;}
.x26_c00012{left:652.098560pt;}
.x25_c00012{left:653.289120pt;}
.x24_c00012{left:654.489440pt;}
.x23_c00012{left:655.680000pt;}
.x1f_c00012{left:668.231493pt;}
.x1e_c00012{left:669.317307pt;}
.x1d_c00012{left:670.238347pt;}
.x1c_c00012{left:671.276000pt;}
.x1b_c00012{left:698.115461pt;}
.x1a_c00012{left:700.073275pt;}
.x35_c00012{left:702.237333pt;}
.x19_c00012{left:724.621117pt;}
.x18_c00012{left:725.547811pt;}
.x17_c00012{left:726.718667pt;}
.x12_c00012{left:748.296429pt;}
.xc_c00012{left:754.112147pt;}
.xb_c00012{left:756.238667pt;}
.x11_c00012{left:780.477333pt;}
.xa_c00012{left:786.975664pt;}
.x9_c00012{left:788.225777pt;}
.x8_c00012{left:789.114977pt;}
.x10_c00012{left:800.826667pt;}
.xf_c00012{left:802.296971pt;}
.xe_c00012{left:804.258667pt;}
.x7_c00012{left:805.437333pt;}
.xd_c00012{left:810.480000pt;}
.x6_c00012{left:816.365359pt;}
.x5_c00012{left:817.450560pt;}
.x4_c00012{left:818.400000pt;}
.x16_c00012{left:823.923780pt;}
.x15_c00012{left:829.833420pt;}
.x14_c00012{left:831.043480pt;}
.x3_c00012{left:832.320000pt;}
.x13_c00012{left:833.520000pt;}
.x2_c00012{left:836.400000pt;}
.x1_c00012{left:841.680000pt;}
}





/* 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_c00013 {
    display:none;
  }
  .loading-indicator_c00013.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00013 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_c00013 { 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_c00013" -> "#page-container .classname_c00013")
 */
.pf_c00013 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00013 { /* 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_c00013.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00013 { /* 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_c00013 { /* 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_c00013 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00013 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00013 {overflow:visible;}
  }
}
.c_c00013 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00013 { /* 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_c00013:after { /* webkit #35443 */
  content: '';
}
.t_c00013:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00013 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 */
}
.__c00013 { /* 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_c00013 { /* info for Javascript */
  display:none;
}
.l_c00013 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00013 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00013 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00013: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_c00013 {
    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_c00013.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00013.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_c00013 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00013{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00013;src:url('chunks/assets/font_91338875028c1bc55e42d757.woff2')format("woff");}.ff1_c00013{font-family:ff1_c00013;line-height:1.000000;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;}
.m8_c00013{transform:matrix(0.002953,-0.032315,0.248963,0.022747,0,0);-ms-transform:matrix(0.002953,-0.032315,0.248963,0.022747,0,0);-webkit-transform:matrix(0.002953,-0.032315,0.248963,0.022747,0,0);}
.m9_c00013{transform:matrix(0.007550,-0.082631,0.248963,0.022747,0,0);-ms-transform:matrix(0.007550,-0.082631,0.248963,0.022747,0,0);-webkit-transform:matrix(0.007550,-0.082631,0.248963,0.022747,0,0);}
.m6_c00013{transform:matrix(0.008431,-0.092276,0.248963,0.022747,0,0);-ms-transform:matrix(0.008431,-0.092276,0.248963,0.022747,0,0);-webkit-transform:matrix(0.008431,-0.092276,0.248963,0.022747,0,0);}
.m2_c00013{transform:matrix(0.013915,-0.308922,0.249747,0.011250,0,0);-ms-transform:matrix(0.013915,-0.308922,0.249747,0.011250,0,0);-webkit-transform:matrix(0.013915,-0.308922,0.249747,0.011250,0,0);}
.ma_c00013{transform:matrix(0.015750,-0.172382,0.248963,0.022747,0,0);-ms-transform:matrix(0.015750,-0.172382,0.248963,0.022747,0,0);-webkit-transform:matrix(0.015750,-0.172382,0.248963,0.022747,0,0);}
.m7_c00013{transform:matrix(0.017959,-0.196566,0.248963,0.022747,0,0);-ms-transform:matrix(0.017959,-0.196566,0.248963,0.022747,0,0);-webkit-transform:matrix(0.017959,-0.196566,0.248963,0.022747,0,0);}
.m5_c00013{transform:matrix(0.024736,-0.270732,0.248963,0.022747,0,0);-ms-transform:matrix(0.024736,-0.270732,0.248963,0.022747,0,0);-webkit-transform:matrix(0.024736,-0.270732,0.248963,0.022747,0,0);}
.m4_c00013{transform:matrix(0.025398,-0.277987,0.248963,0.022747,0,0);-ms-transform:matrix(0.025398,-0.277987,0.248963,0.022747,0,0);-webkit-transform:matrix(0.025398,-0.277987,0.248963,0.022747,0,0);}
.m1_c00013{transform:matrix(0.032238,-0.715689,0.249747,0.011250,0,0);-ms-transform:matrix(0.032238,-0.715689,0.249747,0.011250,0,0);-webkit-transform:matrix(0.032238,-0.715689,0.249747,0.011250,0,0);}
.m0_c00013{transform:matrix(0.040304,-0.894738,0.249747,0.011250,0,0);-ms-transform:matrix(0.040304,-0.894738,0.249747,0.011250,0,0);-webkit-transform:matrix(0.040304,-0.894738,0.249747,0.011250,0,0);}
.m3_c00013{transform:matrix(0.059495,-1.320791,0.249747,0.011250,0,0);-ms-transform:matrix(0.059495,-1.320791,0.249747,0.011250,0,0);-webkit-transform:matrix(0.059495,-1.320791,0.249747,0.011250,0,0);}
.v0_c00013{vertical-align:0.000000px;}
.ls0_c00013{letter-spacing:0.000000px;}
.sc__c00013{text-shadow:none;}
.sc0_c00013{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__c00013{-webkit-text-stroke:0px transparent;}
.sc0_c00013{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00013{word-spacing:0.000000px;}
.fc0_c00013{color:transparent;}
.fs0_c00013{font-size:18.000234px;}
.fs1_c00013{font-size:30.004455px;}
.y0_c00013{bottom:0.000000px;}
.y4_c00013{bottom:39.366269px;}
.y3_c00013{bottom:60.665948px;}
.y2_c00013{bottom:108.628437px;}
.y1_c00013{bottom:152.022000px;}
.y5_c00013{bottom:153.214500px;}
.y7_c00013{bottom:153.366888px;}
.ya_c00013{bottom:154.170656px;}
.y6_c00013{bottom:154.676266px;}
.y8_c00013{bottom:154.720765px;}
.yb_c00013{bottom:155.044873px;}
.y9_c00013{bottom:161.602092px;}
.h2_c00013{height:18.000234px;}
.h3_c00013{height:30.004455px;}
.h1_c00013{height:693.750000px;}
.h0_c00013{height:693.900000px;}
.w1_c00013{width:950.250000px;}
.w0_c00013{width:950.400000px;}
.x0_c00013{left:0.000000px;}
.x9_c00013{left:133.090467px;}
.x8_c00013{left:139.575354px;}
.x7_c00013{left:143.365119px;}
.x6_c00013{left:151.736413px;}
.x5_c00013{left:160.357063px;}
.x4_c00013{left:165.226500px;}
.x3_c00013{left:940.344862px;}
.x2_c00013{left:942.505335px;}
.x1_c00013{left:944.460000px;}
@media print{
.v0_c00013{vertical-align:0.000000pt;}
.ls0_c00013{letter-spacing:0.000000pt;}
.ws0_c00013{word-spacing:0.000000pt;}
.fs0_c00013{font-size:16.000208pt;}
.fs1_c00013{font-size:26.670626pt;}
.y0_c00013{bottom:0.000000pt;}
.y4_c00013{bottom:34.992239pt;}
.y3_c00013{bottom:53.925287pt;}
.y2_c00013{bottom:96.558611pt;}
.y1_c00013{bottom:135.130667pt;}
.y5_c00013{bottom:136.190667pt;}
.y7_c00013{bottom:136.326123pt;}
.ya_c00013{bottom:137.040583pt;}
.y6_c00013{bottom:137.490015pt;}
.y8_c00013{bottom:137.529569pt;}
.yb_c00013{bottom:137.817665pt;}
.y9_c00013{bottom:143.646304pt;}
.h2_c00013{height:16.000208pt;}
.h3_c00013{height:26.670626pt;}
.h1_c00013{height:616.666667pt;}
.h0_c00013{height:616.800000pt;}
.w1_c00013{width:844.666667pt;}
.w0_c00013{width:844.800000pt;}
.x0_c00013{left:0.000000pt;}
.x9_c00013{left:118.302637pt;}
.x8_c00013{left:124.066981pt;}
.x7_c00013{left:127.435661pt;}
.x6_c00013{left:134.876812pt;}
.x5_c00013{left:142.539612pt;}
.x4_c00013{left:146.868000pt;}
.x3_c00013{left:835.862100pt;}
.x2_c00013{left:837.782520pt;}
.x1_c00013{left:839.520000pt;}
}





/* 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_c00014 {
    display:none;
  }
  .loading-indicator_c00014.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00014 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_c00014 { 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_c00014" -> "#page-container .classname_c00014")
 */
.pf_c00014 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00014 { /* 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_c00014.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00014 { /* 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_c00014 { /* 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_c00014 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00014 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00014 {overflow:visible;}
  }
}
.c_c00014 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00014 { /* 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_c00014:after { /* webkit #35443 */
  content: '';
}
.t_c00014:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00014 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 */
}
.__c00014 { /* 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_c00014 { /* info for Javascript */
  display:none;
}
.l_c00014 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00014 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00014 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00014: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_c00014 {
    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_c00014.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00014.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_c00014 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00014{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00014;src:url('chunks/assets/font_fe3cd3c6b9706b260f6e1774.woff2')format("woff");}.ff1_c00014{font-family:ff1_c00014;line-height:1.000000;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;}
.m4_c00014{transform:matrix(0.006597,0.160735,-0.249790,0.010252,0,0);-ms-transform:matrix(0.006597,0.160735,-0.249790,0.010252,0,0);-webkit-transform:matrix(0.006597,0.160735,-0.249790,0.010252,0,0);}
.m5_c00014{transform:matrix(0.007720,0.188102,-0.249790,0.010252,0,0);-ms-transform:matrix(0.007720,0.188102,-0.249790,0.010252,0,0);-webkit-transform:matrix(0.007720,0.188102,-0.249790,0.010252,0,0);}
.m2_c00014{transform:matrix(0.008496,0.207001,-0.249790,0.010252,0,0);-ms-transform:matrix(0.008496,0.207001,-0.249790,0.010252,0,0);-webkit-transform:matrix(0.008496,0.207001,-0.249790,0.010252,0,0);}
.m1_c00014{transform:matrix(0.008807,0.214584,-0.249790,0.010252,0,0);-ms-transform:matrix(0.008807,0.214584,-0.249790,0.010252,0,0);-webkit-transform:matrix(0.008807,0.214584,-0.249790,0.010252,0,0);}
.m3_c00014{transform:matrix(0.009072,0.221059,-0.249790,0.010252,0,0);-ms-transform:matrix(0.009072,0.221059,-0.249790,0.010252,0,0);-webkit-transform:matrix(0.009072,0.221059,-0.249790,0.010252,0,0);}
.m6_c00014{transform:matrix(0.010893,0.265427,-0.249790,0.010252,0,0);-ms-transform:matrix(0.010893,0.265427,-0.249790,0.010252,0,0);-webkit-transform:matrix(0.010893,0.265427,-0.249790,0.010252,0,0);}
.m0_c00014{transform:matrix(0.011116,0.270857,-0.249790,0.010252,0,0);-ms-transform:matrix(0.011116,0.270857,-0.249790,0.010252,0,0);-webkit-transform:matrix(0.011116,0.270857,-0.249790,0.010252,0,0);}
.md_c00014{transform:matrix(0.118585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118585,0.000000,0.000000,0.250000,0,0);}
.m20_c00014{transform:matrix(0.146218,-0.059910,0.094785,0.231335,0,0);-ms-transform:matrix(0.146218,-0.059910,0.094785,0.231335,0,0);-webkit-transform:matrix(0.146218,-0.059910,0.094785,0.231335,0,0);}
.m16_c00014{transform:matrix(0.172755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172755,0.000000,0.000000,0.250000,0,0);}
.m18_c00014{transform:matrix(0.187885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187885,0.000000,0.000000,0.250000,0,0);}
.m1e_c00014{transform:matrix(0.219602,-0.089977,0.094785,0.231335,0,0);-ms-transform:matrix(0.219602,-0.089977,0.094785,0.231335,0,0);-webkit-transform:matrix(0.219602,-0.089977,0.094785,0.231335,0,0);}
.m17_c00014{transform:matrix(0.234165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234165,0.000000,0.000000,0.250000,0,0);}
.m14_c00014{transform:matrix(0.248910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248910,0.000000,0.000000,0.250000,0,0);}
.m15_c00014{transform:matrix(0.274765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274765,0.000000,0.000000,0.250000,0,0);}
.m1b_c00014{transform:matrix(0.316085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316085,0.000000,0.000000,0.250000,0,0);}
.m11_c00014{transform:matrix(0.373965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373965,0.000000,0.000000,0.250000,0,0);}
.mb_c00014{transform:matrix(0.382425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382425,0.000000,0.000000,0.250000,0,0);}
.m1a_c00014{transform:matrix(0.409420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409420,0.000000,0.000000,0.250000,0,0);}
.m13_c00014{transform:matrix(0.431690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431690,0.000000,0.000000,0.250000,0,0);}
.m9_c00014{transform:matrix(0.433820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433820,0.000000,0.000000,0.250000,0,0);}
.mc_c00014{transform:matrix(0.455410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455410,0.000000,0.000000,0.250000,0,0);}
.m7_c00014{transform:matrix(0.483735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483735,0.000000,0.000000,0.250000,0,0);}
.mf_c00014{transform:matrix(0.500370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.500370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.500370,0.000000,0.000000,0.250000,0,0);}
.m10_c00014{transform:matrix(0.549410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549410,0.000000,0.000000,0.250000,0,0);}
.m1d_c00014{transform:matrix(0.559146,-0.229099,0.094785,0.231335,0,0);-ms-transform:matrix(0.559146,-0.229099,0.094785,0.231335,0,0);-webkit-transform:matrix(0.559146,-0.229099,0.094785,0.231335,0,0);}
.m1f_c00014{transform:matrix(0.570278,-0.233660,0.094785,0.231335,0,0);-ms-transform:matrix(0.570278,-0.233660,0.094785,0.231335,0,0);-webkit-transform:matrix(0.570278,-0.233660,0.094785,0.231335,0,0);}
.m1c_c00014{transform:matrix(0.596654,-0.244467,0.094785,0.231335,0,0);-ms-transform:matrix(0.596654,-0.244467,0.094785,0.231335,0,0);-webkit-transform:matrix(0.596654,-0.244467,0.094785,0.231335,0,0);}
.ma_c00014{transform:matrix(0.625140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625140,0.000000,0.000000,0.250000,0,0);}
.m19_c00014{transform:matrix(0.696350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.696350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.696350,0.000000,0.000000,0.250000,0,0);}
.m8_c00014{transform:matrix(0.700760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.700760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.700760,0.000000,0.000000,0.250000,0,0);}
.m12_c00014{transform:matrix(0.937710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.937710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.937710,0.000000,0.000000,0.250000,0,0);}
.me_c00014{transform:matrix(1.309840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.309840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.309840,0.000000,0.000000,0.250000,0,0);}
.v0_c00014{vertical-align:0.000000px;}
.ls0_c00014{letter-spacing:0.000000px;}
.sc__c00014{text-shadow:none;}
.sc0_c00014{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__c00014{-webkit-text-stroke:0px transparent;}
.sc0_c00014{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00014{word-spacing:0.000000px;}
.fc0_c00014{color:transparent;}
.fs5_c00014{font-size:12.000000px;}
.fs6_c00014{font-size:18.000000px;}
.fsa_c00014{font-size:23.991190px;}
.fs7_c00014{font-size:24.000000px;}
.fs8_c00014{font-size:30.000000px;}
.fs0_c00014{font-size:41.993321px;}
.fs2_c00014{font-size:47.992367px;}
.fs4_c00014{font-size:65.989505px;}
.fs9_c00014{font-size:78.000000px;}
.fs1_c00014{font-size:89.985689px;}
.fs3_c00014{font-size:95.984735px;}
.y0_c00014{bottom:0.000000px;}
.y13_c00014{bottom:7.965000px;}
.y14_c00014{bottom:8.910000px;}
.y10_c00014{bottom:9.888000px;}
.yf_c00014{bottom:10.926000px;}
.ye_c00014{bottom:11.184000px;}
.yd_c00014{bottom:11.487000px;}
.yc_c00014{bottom:12.010500px;}
.yb_c00014{bottom:12.690000px;}
.y1b_c00014{bottom:13.784299px;}
.y1a_c00014{bottom:13.797130px;}
.y19_c00014{bottom:13.801120px;}
.y18_c00014{bottom:13.804854px;}
.y15_c00014{bottom:14.716500px;}
.ya_c00014{bottom:16.740000px;}
.y16_c00014{bottom:17.473500px;}
.y12_c00014{bottom:18.360000px;}
.y11_c00014{bottom:23.625000px;}
.y17_c00014{bottom:543.555000px;}
.y8_c00014{bottom:682.290000px;}
.y1_c00014{bottom:687.690000px;}
.y2_c00014{bottom:687.956764px;}
.y3_c00014{bottom:688.607511px;}
.y4_c00014{bottom:688.753749px;}
.y6_c00014{bottom:689.735786px;}
.y5_c00014{bottom:690.313755px;}
.y7_c00014{bottom:690.628825px;}
.y9_c00014{bottom:691.603500px;}
.h7_c00014{height:12.000000px;}
.h8_c00014{height:18.000000px;}
.hc_c00014{height:23.991190px;}
.h9_c00014{height:24.000000px;}
.ha_c00014{height:30.000000px;}
.h2_c00014{height:41.993321px;}
.h4_c00014{height:47.992367px;}
.h6_c00014{height:65.989505px;}
.hb_c00014{height:78.000000px;}
.h3_c00014{height:89.985689px;}
.h5_c00014{height:95.984735px;}
.h1_c00014{height:693.750000px;}
.h0_c00014{height:693.900000px;}
.w1_c00014{width:950.250000px;}
.w0_c00014{width:950.400000px;}
.x0_c00014{left:0.000000px;}
.x1c_c00014{left:1.350000px;}
.x19_c00014{left:16.470000px;}
.x18_c00014{left:20.250000px;}
.x1a_c00014{left:24.300000px;}
.x16_c00014{left:39.960000px;}
.x15_c00014{left:42.660000px;}
.x1b_c00014{left:49.950000px;}
.x17_c00014{left:53.460000px;}
.x1e_c00014{left:64.813812px;}
.x1f_c00014{left:82.087519px;}
.x20_c00014{left:96.932305px;}
.x21_c00014{left:154.420744px;}
.xf_c00014{left:163.323000px;}
.x10_c00014{left:197.335500px;}
.x11_c00014{left:223.536000px;}
.x12_c00014{left:238.650000px;}
.xe_c00014{left:250.560000px;}
.x13_c00014{left:251.578500px;}
.x14_c00014{left:303.451500px;}
.x9_c00014{left:395.010000px;}
.x8_c00014{left:418.770000px;}
.xa_c00014{left:427.950000px;}
.x1d_c00014{left:436.245000px;}
.xb_c00014{left:438.750000px;}
.xc_c00014{left:457.380000px;}
.xd_c00014{left:465.210000px;}
.x7_c00014{left:527.055986px;}
.x6_c00014{left:548.380159px;}
.x5_c00014{left:559.975866px;}
.x4_c00014{left:599.135562px;}
.x3_c00014{left:609.653235px;}
.x2_c00014{left:621.812719px;}
.x1_c00014{left:634.770000px;}
@media print{
.v0_c00014{vertical-align:0.000000pt;}
.ls0_c00014{letter-spacing:0.000000pt;}
.ws0_c00014{word-spacing:0.000000pt;}
.fs5_c00014{font-size:10.666667pt;}
.fs6_c00014{font-size:16.000000pt;}
.fsa_c00014{font-size:21.325503pt;}
.fs7_c00014{font-size:21.333333pt;}
.fs8_c00014{font-size:26.666667pt;}
.fs0_c00014{font-size:37.327397pt;}
.fs2_c00014{font-size:42.659882pt;}
.fs4_c00014{font-size:58.657338pt;}
.fs9_c00014{font-size:69.333333pt;}
.fs1_c00014{font-size:79.987279pt;}
.fs3_c00014{font-size:85.319764pt;}
.y0_c00014{bottom:0.000000pt;}
.y13_c00014{bottom:7.080000pt;}
.y14_c00014{bottom:7.920000pt;}
.y10_c00014{bottom:8.789333pt;}
.yf_c00014{bottom:9.712000pt;}
.ye_c00014{bottom:9.941333pt;}
.yd_c00014{bottom:10.210667pt;}
.yc_c00014{bottom:10.676000pt;}
.yb_c00014{bottom:11.280000pt;}
.y1b_c00014{bottom:12.252711pt;}
.y1a_c00014{bottom:12.264116pt;}
.y19_c00014{bottom:12.267663pt;}
.y18_c00014{bottom:12.270981pt;}
.y15_c00014{bottom:13.081333pt;}
.ya_c00014{bottom:14.880000pt;}
.y16_c00014{bottom:15.532000pt;}
.y12_c00014{bottom:16.320000pt;}
.y11_c00014{bottom:21.000000pt;}
.y17_c00014{bottom:483.160000pt;}
.y8_c00014{bottom:606.480000pt;}
.y1_c00014{bottom:611.280000pt;}
.y2_c00014{bottom:611.517124pt;}
.y3_c00014{bottom:612.095565pt;}
.y4_c00014{bottom:612.225555pt;}
.y6_c00014{bottom:613.098476pt;}
.y5_c00014{bottom:613.612227pt;}
.y7_c00014{bottom:613.892289pt;}
.y9_c00014{bottom:614.758667pt;}
.h7_c00014{height:10.666667pt;}
.h8_c00014{height:16.000000pt;}
.hc_c00014{height:21.325503pt;}
.h9_c00014{height:21.333333pt;}
.ha_c00014{height:26.666667pt;}
.h2_c00014{height:37.327397pt;}
.h4_c00014{height:42.659882pt;}
.h6_c00014{height:58.657338pt;}
.hb_c00014{height:69.333333pt;}
.h3_c00014{height:79.987279pt;}
.h5_c00014{height:85.319764pt;}
.h1_c00014{height:616.666667pt;}
.h0_c00014{height:616.800000pt;}
.w1_c00014{width:844.666667pt;}
.w0_c00014{width:844.800000pt;}
.x0_c00014{left:0.000000pt;}
.x1c_c00014{left:1.200000pt;}
.x19_c00014{left:14.640000pt;}
.x18_c00014{left:18.000000pt;}
.x1a_c00014{left:21.600000pt;}
.x16_c00014{left:35.520000pt;}
.x15_c00014{left:37.920000pt;}
.x1b_c00014{left:44.400000pt;}
.x17_c00014{left:47.520000pt;}
.x1e_c00014{left:57.612277pt;}
.x1f_c00014{left:72.966684pt;}
.x20_c00014{left:86.162049pt;}
.x21_c00014{left:137.262884pt;}
.xf_c00014{left:145.176000pt;}
.x10_c00014{left:175.409333pt;}
.x11_c00014{left:198.698667pt;}
.x12_c00014{left:212.133333pt;}
.xe_c00014{left:222.720000pt;}
.x13_c00014{left:223.625333pt;}
.x14_c00014{left:269.734667pt;}
.x9_c00014{left:351.120000pt;}
.x8_c00014{left:372.240000pt;}
.xa_c00014{left:380.400000pt;}
.x1d_c00014{left:387.773333pt;}
.xb_c00014{left:390.000000pt;}
.xc_c00014{left:406.560000pt;}
.xd_c00014{left:413.520000pt;}
.x7_c00014{left:468.494209pt;}
.x6_c00014{left:487.449031pt;}
.x5_c00014{left:497.756325pt;}
.x4_c00014{left:532.564944pt;}
.x3_c00014{left:541.913987pt;}
.x2_c00014{left:552.722417pt;}
.x1_c00014{left:564.240000pt;}
}





/* 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_c00015 {
    display:none;
  }
  .loading-indicator_c00015.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00015 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_c00015 { 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_c00015" -> "#page-container .classname_c00015")
 */
.pf_c00015 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00015 { /* 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_c00015.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00015 { /* 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_c00015 { /* 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_c00015 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00015 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00015 {overflow:visible;}
  }
}
.c_c00015 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00015 { /* 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_c00015:after { /* webkit #35443 */
  content: '';
}
.t_c00015:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00015 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 */
}
.__c00015 { /* 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_c00015 { /* info for Javascript */
  display:none;
}
.l_c00015 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00015 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00015 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00015: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_c00015 {
    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_c00015.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00015.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_c00015 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00015{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00015;src:url('chunks/assets/font_53ec0c54e60da7c2d414b553.woff2')format("woff");}.ff1_c00015{font-family:ff1_c00015;line-height:1.000000;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;}
.m77_c00015{transform:matrix(0.136200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136200,0.000000,0.000000,0.250000,0,0);}
.m76_c00015{transform:matrix(0.140910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140910,0.000000,0.000000,0.250000,0,0);}
.m2f_c00015{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m66_c00015{transform:matrix(0.157819,0.004735,-0.007497,0.249888,0,0);-ms-transform:matrix(0.157819,0.004735,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.157819,0.004735,-0.007497,0.249888,0,0);}
.m72_c00015{transform:matrix(0.168334,0.004545,-0.006748,0.249909,0,0);-ms-transform:matrix(0.168334,0.004545,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.168334,0.004545,-0.006748,0.249909,0,0);}
.m70_c00015{transform:matrix(0.168918,0.004561,-0.006748,0.249909,0,0);-ms-transform:matrix(0.168918,0.004561,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.168918,0.004561,-0.006748,0.249909,0,0);}
.m78_c00015{transform:matrix(0.175010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175010,0.000000,0.000000,0.250000,0,0);}
.m6d_c00015{transform:matrix(0.177185,0.004784,-0.006748,0.249909,0,0);-ms-transform:matrix(0.177185,0.004784,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.177185,0.004784,-0.006748,0.249909,0,0);}
.m73_c00015{transform:matrix(0.181624,0.004904,-0.006748,0.249909,0,0);-ms-transform:matrix(0.181624,0.004904,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.181624,0.004904,-0.006748,0.249909,0,0);}
.m0_c00015{transform:matrix(0.183135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183135,0.000000,0.000000,0.250000,0,0);}
.m9_c00015{transform:matrix(0.183908,0.005333,-0.007247,0.249895,0,0);-ms-transform:matrix(0.183908,0.005333,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.183908,0.005333,-0.007247,0.249895,0,0);}
.m56_c00015{transform:matrix(0.184877,0.005361,-0.007247,0.249895,0,0);-ms-transform:matrix(0.184877,0.005361,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.184877,0.005361,-0.007247,0.249895,0,0);}
.m59_c00015{transform:matrix(0.187746,0.005445,-0.007247,0.249895,0,0);-ms-transform:matrix(0.187746,0.005445,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.187746,0.005445,-0.007247,0.249895,0,0);}
.m62_c00015{transform:matrix(0.193124,0.005601,-0.007247,0.249895,0,0);-ms-transform:matrix(0.193124,0.005601,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.193124,0.005601,-0.007247,0.249895,0,0);}
.m53_c00015{transform:matrix(0.193229,0.005604,-0.007247,0.249895,0,0);-ms-transform:matrix(0.193229,0.005604,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.193229,0.005604,-0.007247,0.249895,0,0);}
.m6_c00015{transform:matrix(0.193404,0.005609,-0.007247,0.249895,0,0);-ms-transform:matrix(0.193404,0.005609,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.193404,0.005609,-0.007247,0.249895,0,0);}
.m2c_c00015{transform:matrix(0.193474,0.005417,-0.006997,0.249902,0,0);-ms-transform:matrix(0.193474,0.005417,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.193474,0.005417,-0.006997,0.249902,0,0);}
.m61_c00015{transform:matrix(0.195078,0.005657,-0.007247,0.249895,0,0);-ms-transform:matrix(0.195078,0.005657,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.195078,0.005657,-0.007247,0.249895,0,0);}
.m5c_c00015{transform:matrix(0.195528,0.005670,-0.007247,0.249895,0,0);-ms-transform:matrix(0.195528,0.005670,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.195528,0.005670,-0.007247,0.249895,0,0);}
.m71_c00015{transform:matrix(0.195614,0.005282,-0.006748,0.249909,0,0);-ms-transform:matrix(0.195614,0.005282,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.195614,0.005282,-0.006748,0.249909,0,0);}
.m64_c00015{transform:matrix(0.195893,0.005681,-0.007247,0.249895,0,0);-ms-transform:matrix(0.195893,0.005681,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.195893,0.005681,-0.007247,0.249895,0,0);}
.m20_c00015{transform:matrix(0.198072,0.005546,-0.006997,0.249902,0,0);-ms-transform:matrix(0.198072,0.005546,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.198072,0.005546,-0.006997,0.249902,0,0);}
.m7c_c00015{transform:matrix(0.200390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200390,0.000000,0.000000,0.250000,0,0);}
.m14_c00015{transform:matrix(0.203175,0.005689,-0.006997,0.249902,0,0);-ms-transform:matrix(0.203175,0.005689,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.203175,0.005689,-0.006997,0.249902,0,0);}
.m5a_c00015{transform:matrix(0.203519,0.005902,-0.007247,0.249895,0,0);-ms-transform:matrix(0.203519,0.005902,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.203519,0.005902,-0.007247,0.249895,0,0);}
.m21_c00015{transform:matrix(0.209958,0.005879,-0.006997,0.249902,0,0);-ms-transform:matrix(0.209958,0.005879,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.209958,0.005879,-0.006997,0.249902,0,0);}
.m4c_c00015{transform:matrix(0.210317,0.006099,-0.007247,0.249895,0,0);-ms-transform:matrix(0.210317,0.006099,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.210317,0.006099,-0.007247,0.249895,0,0);}
.m29_c00015{transform:matrix(0.214716,0.006012,-0.006997,0.249902,0,0);-ms-transform:matrix(0.214716,0.006012,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.214716,0.006012,-0.006997,0.249902,0,0);}
.m17_c00015{transform:matrix(0.214861,0.006016,-0.006997,0.249902,0,0);-ms-transform:matrix(0.214861,0.006016,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.214861,0.006016,-0.006997,0.249902,0,0);}
.m6b_c00015{transform:matrix(0.215498,0.006465,-0.007497,0.249888,0,0);-ms-transform:matrix(0.215498,0.006465,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.215498,0.006465,-0.007497,0.249888,0,0);}
.m24_c00015{transform:matrix(0.215795,0.006042,-0.006997,0.249902,0,0);-ms-transform:matrix(0.215795,0.006042,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.215795,0.006042,-0.006997,0.249902,0,0);}
.m16_c00015{transform:matrix(0.217000,0.006076,-0.006997,0.249902,0,0);-ms-transform:matrix(0.217000,0.006076,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.217000,0.006076,-0.006997,0.249902,0,0);}
.m8_c00015{transform:matrix(0.217599,0.006310,-0.007247,0.249895,0,0);-ms-transform:matrix(0.217599,0.006310,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.217599,0.006310,-0.007247,0.249895,0,0);}
.m74_c00015{transform:matrix(0.217708,0.008281,-0.009503,0.249819,0,0);-ms-transform:matrix(0.217708,0.008281,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.217708,0.008281,-0.009503,0.249819,0,0);}
.m25_c00015{transform:matrix(0.218999,0.006132,-0.006997,0.249902,0,0);-ms-transform:matrix(0.218999,0.006132,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.218999,0.006132,-0.006997,0.249902,0,0);}
.m6f_c00015{transform:matrix(0.220565,0.005955,-0.006748,0.249909,0,0);-ms-transform:matrix(0.220565,0.005955,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.220565,0.005955,-0.006748,0.249909,0,0);}
.m11_c00015{transform:matrix(0.221248,0.006195,-0.006997,0.249902,0,0);-ms-transform:matrix(0.221248,0.006195,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.221248,0.006195,-0.006997,0.249902,0,0);}
.me_c00015{transform:matrix(0.221752,0.006431,-0.007247,0.249895,0,0);-ms-transform:matrix(0.221752,0.006431,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.221752,0.006431,-0.007247,0.249895,0,0);}
.m7_c00015{transform:matrix(0.223266,0.006475,-0.007247,0.249895,0,0);-ms-transform:matrix(0.223266,0.006475,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.223266,0.006475,-0.007247,0.249895,0,0);}
.m63_c00015{transform:matrix(0.223386,0.006478,-0.007247,0.249895,0,0);-ms-transform:matrix(0.223386,0.006478,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.223386,0.006478,-0.007247,0.249895,0,0);}
.m51_c00015{transform:matrix(0.223536,0.006483,-0.007247,0.249895,0,0);-ms-transform:matrix(0.223536,0.006483,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.223536,0.006483,-0.007247,0.249895,0,0);}
.m50_c00015{transform:matrix(0.224880,0.006522,-0.007247,0.249895,0,0);-ms-transform:matrix(0.224880,0.006522,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.224880,0.006522,-0.007247,0.249895,0,0);}
.m27_c00015{transform:matrix(0.227281,0.006364,-0.006997,0.249902,0,0);-ms-transform:matrix(0.227281,0.006364,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.227281,0.006364,-0.006997,0.249902,0,0);}
.m5e_c00015{transform:matrix(0.228209,0.006618,-0.007247,0.249895,0,0);-ms-transform:matrix(0.228209,0.006618,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.228209,0.006618,-0.007247,0.249895,0,0);}
.m57_c00015{transform:matrix(0.228474,0.006626,-0.007247,0.249895,0,0);-ms-transform:matrix(0.228474,0.006626,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.228474,0.006626,-0.007247,0.249895,0,0);}
.m22_c00015{transform:matrix(0.229315,0.006421,-0.006997,0.249902,0,0);-ms-transform:matrix(0.229315,0.006421,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.229315,0.006421,-0.006997,0.249902,0,0);}
.m5f_c00015{transform:matrix(0.233487,0.006771,-0.007247,0.249895,0,0);-ms-transform:matrix(0.233487,0.006771,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.233487,0.006771,-0.007247,0.249895,0,0);}
.md_c00015{transform:matrix(0.233547,0.006773,-0.007247,0.249895,0,0);-ms-transform:matrix(0.233547,0.006773,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.233547,0.006773,-0.007247,0.249895,0,0);}
.m4b_c00015{transform:matrix(0.234366,0.006797,-0.007247,0.249895,0,0);-ms-transform:matrix(0.234366,0.006797,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.234366,0.006797,-0.007247,0.249895,0,0);}
.m5d_c00015{transform:matrix(0.234661,0.006805,-0.007247,0.249895,0,0);-ms-transform:matrix(0.234661,0.006805,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.234661,0.006805,-0.007247,0.249895,0,0);}
.m28_c00015{transform:matrix(0.234733,0.006573,-0.006997,0.249902,0,0);-ms-transform:matrix(0.234733,0.006573,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.234733,0.006573,-0.006997,0.249902,0,0);}
.m4d_c00015{transform:matrix(0.234886,0.006812,-0.007247,0.249895,0,0);-ms-transform:matrix(0.234886,0.006812,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.234886,0.006812,-0.007247,0.249895,0,0);}
.m3c_c00015{transform:matrix(0.235897,0.007313,-0.007746,0.249880,0,0);-ms-transform:matrix(0.235897,0.007313,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.235897,0.007313,-0.007746,0.249880,0,0);}
.m4f_c00015{transform:matrix(0.236621,0.006862,-0.007247,0.249895,0,0);-ms-transform:matrix(0.236621,0.006862,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.236621,0.006862,-0.007247,0.249895,0,0);}
.m36_c00015{transform:matrix(0.237886,0.007374,-0.007746,0.249880,0,0);-ms-transform:matrix(0.237886,0.007374,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.237886,0.007374,-0.007746,0.249880,0,0);}
.m1c_c00015{transform:matrix(0.238097,0.006667,-0.006997,0.249902,0,0);-ms-transform:matrix(0.238097,0.006667,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.238097,0.006667,-0.006997,0.249902,0,0);}
.mc_c00015{transform:matrix(0.238385,0.006913,-0.007247,0.249895,0,0);-ms-transform:matrix(0.238385,0.006913,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.238385,0.006913,-0.007247,0.249895,0,0);}
.ma_c00015{transform:matrix(0.240509,0.006975,-0.007247,0.249895,0,0);-ms-transform:matrix(0.240509,0.006975,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.240509,0.006975,-0.007247,0.249895,0,0);}
.m26_c00015{transform:matrix(0.241870,0.006772,-0.006997,0.249902,0,0);-ms-transform:matrix(0.241870,0.006772,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.241870,0.006772,-0.006997,0.249902,0,0);}
.m38_c00015{transform:matrix(0.242538,0.007519,-0.007746,0.249880,0,0);-ms-transform:matrix(0.242538,0.007519,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.242538,0.007519,-0.007746,0.249880,0,0);}
.m6c_c00015{transform:matrix(0.243056,0.007292,-0.007497,0.249888,0,0);-ms-transform:matrix(0.243056,0.007292,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.243056,0.007292,-0.007497,0.249888,0,0);}
.m12_c00015{transform:matrix(0.243205,0.006810,-0.006997,0.249902,0,0);-ms-transform:matrix(0.243205,0.006810,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.243205,0.006810,-0.006997,0.249902,0,0);}
.m6e_c00015{transform:matrix(0.246925,0.006667,-0.006748,0.249909,0,0);-ms-transform:matrix(0.246925,0.006667,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.246925,0.006667,-0.006748,0.249909,0,0);}
.mb_c00015{transform:matrix(0.247446,0.007176,-0.007247,0.249895,0,0);-ms-transform:matrix(0.247446,0.007176,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.247446,0.007176,-0.007247,0.249895,0,0);}
.m18_c00015{transform:matrix(0.249227,0.006978,-0.006997,0.249902,0,0);-ms-transform:matrix(0.249227,0.006978,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.249227,0.006978,-0.006997,0.249902,0,0);}
.m68_c00015{transform:matrix(0.249608,0.007488,-0.007497,0.249888,0,0);-ms-transform:matrix(0.249608,0.007488,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.249608,0.007488,-0.007497,0.249888,0,0);}
.m1a_c00015{transform:matrix(0.251461,0.007041,-0.006997,0.249902,0,0);-ms-transform:matrix(0.251461,0.007041,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.251461,0.007041,-0.006997,0.249902,0,0);}
.m15_c00015{transform:matrix(0.251491,0.007042,-0.006997,0.249902,0,0);-ms-transform:matrix(0.251491,0.007042,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.251491,0.007042,-0.006997,0.249902,0,0);}
.m33_c00015{transform:matrix(0.251524,0.007797,-0.007746,0.249880,0,0);-ms-transform:matrix(0.251524,0.007797,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.251524,0.007797,-0.007746,0.249880,0,0);}
.m47_c00015{transform:matrix(0.252564,0.007829,-0.007746,0.249880,0,0);-ms-transform:matrix(0.252564,0.007829,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.252564,0.007829,-0.007746,0.249880,0,0);}
.m60_c00015{transform:matrix(0.252799,0.007331,-0.007247,0.249895,0,0);-ms-transform:matrix(0.252799,0.007331,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.252799,0.007331,-0.007247,0.249895,0,0);}
.m5b_c00015{transform:matrix(0.253049,0.007338,-0.007247,0.249895,0,0);-ms-transform:matrix(0.253049,0.007338,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.253049,0.007338,-0.007247,0.249895,0,0);}
.m39_c00015{transform:matrix(0.254828,0.007900,-0.007746,0.249880,0,0);-ms-transform:matrix(0.254828,0.007900,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.254828,0.007900,-0.007746,0.249880,0,0);}
.m55_c00015{transform:matrix(0.255683,0.007415,-0.007247,0.249895,0,0);-ms-transform:matrix(0.255683,0.007415,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.255683,0.007415,-0.007247,0.249895,0,0);}
.mf_c00015{transform:matrix(0.256077,0.007426,-0.007247,0.249895,0,0);-ms-transform:matrix(0.256077,0.007426,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.256077,0.007426,-0.007247,0.249895,0,0);}
.m49_c00015{transform:matrix(0.256702,0.007958,-0.007746,0.249880,0,0);-ms-transform:matrix(0.256702,0.007958,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.256702,0.007958,-0.007746,0.249880,0,0);}
.m40_c00015{transform:matrix(0.257086,0.007970,-0.007746,0.249880,0,0);-ms-transform:matrix(0.257086,0.007970,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.257086,0.007970,-0.007746,0.249880,0,0);}
.m1b_c00015{transform:matrix(0.258209,0.007230,-0.006997,0.249902,0,0);-ms-transform:matrix(0.258209,0.007230,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.258209,0.007230,-0.006997,0.249902,0,0);}
.m13_c00015{transform:matrix(0.259423,0.007264,-0.006997,0.249902,0,0);-ms-transform:matrix(0.259423,0.007264,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.259423,0.007264,-0.006997,0.249902,0,0);}
.m4a_c00015{transform:matrix(0.259761,0.007533,-0.007247,0.249895,0,0);-ms-transform:matrix(0.259761,0.007533,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.259761,0.007533,-0.007247,0.249895,0,0);}
.m5_c00015{transform:matrix(0.260051,0.007541,-0.007247,0.249895,0,0);-ms-transform:matrix(0.260051,0.007541,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.260051,0.007541,-0.007247,0.249895,0,0);}
.m37_c00015{transform:matrix(0.260485,0.008075,-0.007746,0.249880,0,0);-ms-transform:matrix(0.260485,0.008075,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.260485,0.008075,-0.007746,0.249880,0,0);}
.m1d_c00015{transform:matrix(0.263657,0.007382,-0.006997,0.249902,0,0);-ms-transform:matrix(0.263657,0.007382,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.263657,0.007382,-0.006997,0.249902,0,0);}
.m54_c00015{transform:matrix(0.264039,0.007657,-0.007247,0.249895,0,0);-ms-transform:matrix(0.264039,0.007657,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.264039,0.007657,-0.007247,0.249895,0,0);}
.m69_c00015{transform:matrix(0.265935,0.007978,-0.007497,0.249888,0,0);-ms-transform:matrix(0.265935,0.007978,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.265935,0.007978,-0.007497,0.249888,0,0);}
.m19_c00015{transform:matrix(0.268690,0.007523,-0.006997,0.249902,0,0);-ms-transform:matrix(0.268690,0.007523,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.268690,0.007523,-0.006997,0.249902,0,0);}
.m23_c00015{transform:matrix(0.269000,0.007532,-0.006997,0.249902,0,0);-ms-transform:matrix(0.269000,0.007532,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.269000,0.007532,-0.006997,0.249902,0,0);}
.m10_c00015{transform:matrix(0.269194,0.007537,-0.006997,0.249902,0,0);-ms-transform:matrix(0.269194,0.007537,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.269194,0.007537,-0.006997,0.249902,0,0);}
.m34_c00015{transform:matrix(0.271170,0.008406,-0.007746,0.249880,0,0);-ms-transform:matrix(0.271170,0.008406,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.271170,0.008406,-0.007746,0.249880,0,0);}
.m2d_c00015{transform:matrix(0.272983,0.007644,-0.006997,0.249902,0,0);-ms-transform:matrix(0.272983,0.007644,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.272983,0.007644,-0.006997,0.249902,0,0);}
.m30_c00015{transform:matrix(0.273324,0.008473,-0.007746,0.249880,0,0);-ms-transform:matrix(0.273324,0.008473,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.273324,0.008473,-0.007746,0.249880,0,0);}
.m52_c00015{transform:matrix(0.273925,0.007944,-0.007247,0.249895,0,0);-ms-transform:matrix(0.273925,0.007944,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.273925,0.007944,-0.007247,0.249895,0,0);}
.m41_c00015{transform:matrix(0.276002,0.008556,-0.007746,0.249880,0,0);-ms-transform:matrix(0.276002,0.008556,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.276002,0.008556,-0.007746,0.249880,0,0);}
.m65_c00015{transform:matrix(0.276919,0.008031,-0.007247,0.249895,0,0);-ms-transform:matrix(0.276919,0.008031,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.276919,0.008031,-0.007247,0.249895,0,0);}
.m1e_c00015{transform:matrix(0.278631,0.007802,-0.006997,0.249902,0,0);-ms-transform:matrix(0.278631,0.007802,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.278631,0.007802,-0.006997,0.249902,0,0);}
.m2a_c00015{transform:matrix(0.279121,0.007815,-0.006997,0.249902,0,0);-ms-transform:matrix(0.279121,0.007815,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.279121,0.007815,-0.006997,0.249902,0,0);}
.m32_c00015{transform:matrix(0.279216,0.008656,-0.007746,0.249880,0,0);-ms-transform:matrix(0.279216,0.008656,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.279216,0.008656,-0.007746,0.249880,0,0);}
.m7a_c00015{transform:matrix(0.281770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281770,0.000000,0.000000,0.250000,0,0);}
.m2b_c00015{transform:matrix(0.285213,0.007986,-0.006997,0.249902,0,0);-ms-transform:matrix(0.285213,0.007986,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.285213,0.007986,-0.006997,0.249902,0,0);}
.m43_c00015{transform:matrix(0.289706,0.008981,-0.007746,0.249880,0,0);-ms-transform:matrix(0.289706,0.008981,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.289706,0.008981,-0.007746,0.249880,0,0);}
.m31_c00015{transform:matrix(0.292115,0.009056,-0.007746,0.249880,0,0);-ms-transform:matrix(0.292115,0.009056,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.292115,0.009056,-0.007746,0.249880,0,0);}
.m67_c00015{transform:matrix(0.294922,0.008848,-0.007497,0.249888,0,0);-ms-transform:matrix(0.294922,0.008848,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.294922,0.008848,-0.007497,0.249888,0,0);}
.m1f_c00015{transform:matrix(0.296654,0.008306,-0.006997,0.249902,0,0);-ms-transform:matrix(0.296654,0.008306,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.296654,0.008306,-0.006997,0.249902,0,0);}
.m42_c00015{transform:matrix(0.297777,0.009231,-0.007746,0.249880,0,0);-ms-transform:matrix(0.297777,0.009231,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.297777,0.009231,-0.007746,0.249880,0,0);}
.m3d_c00015{transform:matrix(0.298372,0.009250,-0.007746,0.249880,0,0);-ms-transform:matrix(0.298372,0.009250,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.298372,0.009250,-0.007746,0.249880,0,0);}
.m3e_c00015{transform:matrix(0.300311,0.009310,-0.007746,0.249880,0,0);-ms-transform:matrix(0.300311,0.009310,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.300311,0.009310,-0.007746,0.249880,0,0);}
.m3a_c00015{transform:matrix(0.305158,0.009460,-0.007746,0.249880,0,0);-ms-transform:matrix(0.305158,0.009460,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.305158,0.009460,-0.007746,0.249880,0,0);}
.m6a_c00015{transform:matrix(0.306922,0.009208,-0.007497,0.249888,0,0);-ms-transform:matrix(0.306922,0.009208,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.306922,0.009208,-0.007497,0.249888,0,0);}
.m48_c00015{transform:matrix(0.319532,0.009905,-0.007746,0.249880,0,0);-ms-transform:matrix(0.319532,0.009905,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.319532,0.009905,-0.007746,0.249880,0,0);}
.m44_c00015{transform:matrix(0.320006,0.009920,-0.007746,0.249880,0,0);-ms-transform:matrix(0.320006,0.009920,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.320006,0.009920,-0.007746,0.249880,0,0);}
.m3b_c00015{transform:matrix(0.320191,0.009926,-0.007746,0.249880,0,0);-ms-transform:matrix(0.320191,0.009926,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.320191,0.009926,-0.007746,0.249880,0,0);}
.m35_c00015{transform:matrix(0.321281,0.009960,-0.007746,0.249880,0,0);-ms-transform:matrix(0.321281,0.009960,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.321281,0.009960,-0.007746,0.249880,0,0);}
.m1_c00015{transform:matrix(0.328975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328975,0.000000,0.000000,0.250000,0,0);}
.m3f_c00015{transform:matrix(0.329327,0.010209,-0.007746,0.249880,0,0);-ms-transform:matrix(0.329327,0.010209,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.329327,0.010209,-0.007746,0.249880,0,0);}
.m45_c00015{transform:matrix(0.331361,0.010272,-0.007746,0.249880,0,0);-ms-transform:matrix(0.331361,0.010272,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.331361,0.010272,-0.007746,0.249880,0,0);}
.m46_c00015{transform:matrix(0.331876,0.010288,-0.007746,0.249880,0,0);-ms-transform:matrix(0.331876,0.010288,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.331876,0.010288,-0.007746,0.249880,0,0);}
.m4_c00015{transform:matrix(0.357945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357945,0.000000,0.000000,0.250000,0,0);}
.m4e_c00015{transform:matrix(0.386088,0.011197,-0.007247,0.249895,0,0);-ms-transform:matrix(0.386088,0.011197,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.386088,0.011197,-0.007247,0.249895,0,0);}
.m2_c00015{transform:matrix(0.398700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398700,0.000000,0.000000,0.250000,0,0);}
.m58_c00015{transform:matrix(0.418124,0.012126,-0.007247,0.249895,0,0);-ms-transform:matrix(0.418124,0.012126,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.418124,0.012126,-0.007247,0.249895,0,0);}
.m75_c00015{transform:matrix(0.463865,0.017644,-0.009503,0.249819,0,0);-ms-transform:matrix(0.463865,0.017644,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.463865,0.017644,-0.009503,0.249819,0,0);}
.m79_c00015{transform:matrix(0.561295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.561295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.561295,0.000000,0.000000,0.250000,0,0);}
.m7b_c00015{transform:matrix(0.662745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662745,0.000000,0.000000,0.250000,0,0);}
.m2e_c00015{transform:matrix(0.700355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.700355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.700355,0.000000,0.000000,0.250000,0,0);}
.m3_c00015{transform:matrix(0.832300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.832300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.832300,0.000000,0.000000,0.250000,0,0);}
.v0_c00015{vertical-align:0.000000px;}
.ls0_c00015{letter-spacing:0.000000px;}
.sc__c00015{text-shadow:none;}
.sc0_c00015{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__c00015{-webkit-text-stroke:0px transparent;}
.sc0_c00015{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00015{word-spacing:0.000000px;}
.fc0_c00015{color:transparent;}
.fs5_c00015{font-size:18.000000px;}
.fs0_c00015{font-size:24.000000px;}
.fsb_c00015{font-size:42.000000px;}
.fs4_c00015{font-size:48.018812px;}
.fs1_c00015{font-size:54.000000px;}
.fs3_c00015{font-size:54.021164px;}
.fs2_c00015{font-size:54.022702px;}
.fs6_c00015{font-size:54.025941px;}
.fs8_c00015{font-size:60.026994px;}
.fsa_c00015{font-size:65.981682px;}
.fsc_c00015{font-size:66.000000px;}
.fse_c00015{font-size:72.000000px;}
.fs7_c00015{font-size:84.035315px;}
.fs9_c00015{font-size:204.074344px;}
.fsd_c00015{font-size:228.000000px;}
.y0_c00015{bottom:0.000000px;}
.y3_c00015{bottom:5.854500px;}
.y2_c00015{bottom:8.926500px;}
.y1_c00015{bottom:17.535000px;}
.y74_c00015{bottom:57.016200px;}
.y73_c00015{bottom:58.606500px;}
.y72_c00015{bottom:84.582068px;}
.y71_c00015{bottom:88.753365px;}
.y70_c00015{bottom:89.920130px;}
.y6f_c00015{bottom:94.871781px;}
.y6e_c00015{bottom:96.404463px;}
.y6d_c00015{bottom:98.007089px;}
.y6c_c00015{bottom:99.391500px;}
.y6b_c00015{bottom:146.883090px;}
.y6a_c00015{bottom:148.082340px;}
.y69_c00015{bottom:149.970495px;}
.y68_c00015{bottom:150.885885px;}
.y67_c00015{bottom:151.768875px;}
.y66_c00015{bottom:154.143030px;}
.y65_c00015{bottom:161.467500px;}
.y7a_c00015{bottom:184.950000px;}
.y79_c00015{bottom:201.420000px;}
.y64_c00015{bottom:205.278203px;}
.y63_c00015{bottom:206.388234px;}
.y62_c00015{bottom:207.869799px;}
.y61_c00015{bottom:208.515725px;}
.y60_c00015{bottom:209.617926px;}
.y5f_c00015{bottom:211.254099px;}
.y5e_c00015{bottom:211.825766px;}
.y5d_c00015{bottom:213.874233px;}
.y5c_c00015{bottom:214.856651px;}
.y5b_c00015{bottom:215.755869px;}
.y5a_c00015{bottom:217.728360px;}
.y59_c00015{bottom:218.641913px;}
.y58_c00015{bottom:219.779829px;}
.y57_c00015{bottom:221.128016px;}
.y56_c00015{bottom:233.044970px;}
.y55_c00015{bottom:233.718998px;}
.y54_c00015{bottom:235.614794px;}
.y53_c00015{bottom:238.139897px;}
.y52_c00015{bottom:238.669997px;}
.y51_c00015{bottom:242.469419px;}
.y50_c00015{bottom:244.669536px;}
.y4f_c00015{bottom:247.543072px;}
.y4e_c00015{bottom:248.985942px;}
.y4d_c00015{bottom:249.523785px;}
.y4c_c00015{bottom:250.290190px;}
.y4b_c00015{bottom:262.357047px;}
.y4a_c00015{bottom:263.073797px;}
.y49_c00015{bottom:265.960500px;}
.y48_c00015{bottom:314.182194px;}
.y47_c00015{bottom:316.600473px;}
.y46_c00015{bottom:317.494404px;}
.y45_c00015{bottom:320.754072px;}
.y44_c00015{bottom:321.519727px;}
.y43_c00015{bottom:322.643346px;}
.y42_c00015{bottom:324.652550px;}
.y41_c00015{bottom:325.445452px;}
.y40_c00015{bottom:326.709378px;}
.y3f_c00015{bottom:327.189224px;}
.y3e_c00015{bottom:328.072670px;}
.y3d_c00015{bottom:329.661324px;}
.y3c_c00015{bottom:336.029865px;}
.y3b_c00015{bottom:336.845898px;}
.y3a_c00015{bottom:337.517310px;}
.y39_c00015{bottom:339.816196px;}
.y38_c00015{bottom:342.047602px;}
.y37_c00015{bottom:342.594120px;}
.y36_c00015{bottom:343.505649px;}
.y35_c00015{bottom:345.022074px;}
.y34_c00015{bottom:345.707226px;}
.y33_c00015{bottom:347.808402px;}
.y32_c00015{bottom:350.426464px;}
.y31_c00015{bottom:350.951337px;}
.y30_c00015{bottom:352.351702px;}
.y2f_c00015{bottom:358.617244px;}
.y2e_c00015{bottom:361.641000px;}
.y2c_c00015{bottom:405.316338px;}
.y2b_c00015{bottom:405.850608px;}
.y2a_c00015{bottom:406.890198px;}
.y29_c00015{bottom:407.679186px;}
.y28_c00015{bottom:408.176682px;}
.y27_c00015{bottom:409.405896px;}
.y26_c00015{bottom:410.403714px;}
.y25_c00015{bottom:411.316266px;}
.y24_c00015{bottom:411.731058px;}
.y2d_c00015{bottom:412.420500px;}
.y23_c00015{bottom:412.706940px;}
.y22_c00015{bottom:414.042012px;}
.y21_c00015{bottom:414.614610px;}
.y20_c00015{bottom:415.961370px;}
.y1f_c00015{bottom:416.521074px;}
.y1e_c00015{bottom:417.583818px;}
.y1d_c00015{bottom:419.832072px;}
.y1c_c00015{bottom:421.468140px;}
.y1b_c00015{bottom:429.425484px;}
.y1a_c00015{bottom:429.933096px;}
.y77_c00015{bottom:432.000000px;}
.y19_c00015{bottom:432.405720px;}
.y18_c00015{bottom:432.875532px;}
.y17_c00015{bottom:433.707006px;}
.y78_c00015{bottom:433.890000px;}
.y16_c00015{bottom:435.550092px;}
.y15_c00015{bottom:436.359348px;}
.y14_c00015{bottom:437.826912px;}
.y13_c00015{bottom:438.643476px;}
.y12_c00015{bottom:440.715378px;}
.y11_c00015{bottom:442.714242px;}
.y10_c00015{bottom:443.377128px;}
.yf_c00015{bottom:444.967500px;}
.ye_c00015{bottom:453.185553px;}
.yd_c00015{bottom:454.227204px;}
.yc_c00015{bottom:454.900976px;}
.yb_c00015{bottom:456.360836px;}
.ya_c00015{bottom:457.426194px;}
.y9_c00015{bottom:459.499578px;}
.y8_c00015{bottom:459.991302px;}
.y7_c00015{bottom:462.241427px;}
.y6_c00015{bottom:462.897276px;}
.y5_c00015{bottom:463.993911px;}
.y4_c00015{bottom:465.216000px;}
.y75_c00015{bottom:527.850000px;}
.y76_c00015{bottom:528.120000px;}
.h7_c00015{height:18.000000px;}
.h2_c00015{height:24.000000px;}
.hd_c00015{height:42.000000px;}
.h6_c00015{height:48.018812px;}
.h3_c00015{height:54.000000px;}
.h5_c00015{height:54.021164px;}
.h4_c00015{height:54.022702px;}
.h8_c00015{height:54.025941px;}
.ha_c00015{height:60.026994px;}
.hc_c00015{height:65.981682px;}
.he_c00015{height:66.000000px;}
.h10_c00015{height:72.000000px;}
.h9_c00015{height:84.035315px;}
.hb_c00015{height:204.074344px;}
.hf_c00015{height:228.000000px;}
.h1_c00015{height:693.750000px;}
.h0_c00015{height:693.900000px;}
.w1_c00015{width:950.250000px;}
.w0_c00015{width:950.400000px;}
.x0_c00015{left:0.000000px;}
.x4_c00015{left:63.580500px;}
.x66_c00015{left:84.717000px;}
.x55_c00015{left:87.465603px;}
.x4b_c00015{left:89.737504px;}
.x1_c00015{left:95.310000px;}
.x4c_c00015{left:119.219571px;}
.x2_c00015{left:129.870000px;}
.x67_c00015{left:135.991500px;}
.x56_c00015{left:139.338627px;}
.x5_c00015{left:140.386500px;}
.x33_c00015{left:141.809754px;}
.x3_c00015{left:148.500000px;}
.x1e_c00015{left:159.545760px;}
.x11_c00015{left:163.086000px;}
.x57_c00015{left:183.080912px;}
.x34_c00015{left:193.666671px;}
.x4d_c00015{left:195.388683px;}
.x3f_c00015{left:202.859439px;}
.x35_c00015{left:213.116589px;}
.x58_c00015{left:218.206457px;}
.x12_c00015{left:219.885000px;}
.x1f_c00015{left:222.480288px;}
.x40_c00015{left:236.830694px;}
.x13_c00015{left:243.559500px;}
.x68_c00015{left:252.114000px;}
.x6_c00015{left:254.128500px;}
.x41_c00015{left:255.264030px;}
.x59_c00015{left:294.092069px;}
.x7_c00015{left:296.269500px;}
.x42_c00015{left:303.882063px;}
.x4e_c00015{left:305.916797px;}
.x20_c00015{left:308.940618px;}
.x36_c00015{left:310.066086px;}
.x14_c00015{left:314.947500px;}
.x5a_c00015{left:328.671570px;}
.x8_c00015{left:334.084500px;}
.x61_c00015{left:340.272000px;}
.x21_c00015{left:349.790886px;}
.x9_c00015{left:356.700000px;}
.x5b_c00015{left:366.482376px;}
.x22_c00015{left:371.335104px;}
.x2f_c00015{left:386.640000px;}
.x37_c00015{left:387.871712px;}
.x15_c00015{left:388.944000px;}
.x4f_c00015{left:390.531648px;}
.x43_c00015{left:411.660256px;}
.x38_c00015{left:413.266874px;}
.x16_c00015{left:418.107000px;}
.x30_c00015{left:420.120000px;}
.x23_c00015{left:423.133002px;}
.xa_c00015{left:434.290500px;}
.x69_c00015{left:435.508500px;}
.x24_c00015{left:445.137720px;}
.x62_c00015{left:448.843500px;}
.xb_c00015{left:451.246500px;}
.x44_c00015{left:454.880453px;}
.x6a_c00015{left:462.318150px;}
.x5c_c00015{left:467.237120px;}
.x39_c00015{left:469.448848px;}
.x17_c00015{left:470.520000px;}
.x63_c00015{left:479.356500px;}
.x45_c00015{left:484.325509px;}
.x25_c00015{left:496.464576px;}
.x18_c00015{left:499.422000px;}
.x3a_c00015{left:503.212034px;}
.xc_c00015{left:522.742500px;}
.x5d_c00015{left:530.179601px;}
.x26_c00015{left:533.998176px;}
.x50_c00015{left:536.662350px;}
.x64_c00015{left:542.295000px;}
.x27_c00015{left:549.938058px;}
.x51_c00015{left:557.064134px;}
.xd_c00015{left:559.479000px;}
.x19_c00015{left:565.246500px;}
.x5e_c00015{left:572.586798px;}
.x65_c00015{left:582.270000px;}
.x28_c00015{left:585.049032px;}
.x1a_c00015{left:594.942000px;}
.x5f_c00015{left:597.448473px;}
.x3b_c00015{left:606.093275px;}
.xe_c00015{left:609.819000px;}
.x1b_c00015{left:611.721000px;}
.x29_c00015{left:623.419674px;}
.x48_c00015{left:625.786500px;}
.xf_c00015{left:633.052500px;}
.x46_c00015{left:644.079248px;}
.x52_c00015{left:654.179573px;}
.x31_c00015{left:657.970500px;}
.x10_c00015{left:668.971500px;}
.x2a_c00015{left:670.697820px;}
.x2b_c00015{left:689.805870px;}
.x3c_c00015{left:691.245330px;}
.x60_c00015{left:697.115630px;}
.x1c_c00015{left:700.029000px;}
.x3d_c00015{left:716.100399px;}
.x1d_c00015{left:718.158000px;}
.x2c_c00015{left:720.128550px;}
.x49_c00015{left:725.328000px;}
.x53_c00015{left:727.109924px;}
.x47_c00015{left:737.102662px;}
.x3e_c00015{left:746.347165px;}
.x4a_c00015{left:750.043500px;}
.x54_c00015{left:753.044186px;}
.x32_c00015{left:755.511000px;}
.x2d_c00015{left:760.098276px;}
.x2e_c00015{left:780.626910px;}
.x6f_c00015{left:824.310000px;}
.x6b_c00015{left:825.390000px;}
.x6c_c00015{left:831.330000px;}
.x70_c00015{left:833.490000px;}
.x6e_c00015{left:842.130000px;}
.x6d_c00015{left:846.450000px;}
@media print{
.v0_c00015{vertical-align:0.000000pt;}
.ls0_c00015{letter-spacing:0.000000pt;}
.ws0_c00015{word-spacing:0.000000pt;}
.fs5_c00015{font-size:16.000000pt;}
.fs0_c00015{font-size:21.333333pt;}
.fsb_c00015{font-size:37.333333pt;}
.fs4_c00015{font-size:42.683389pt;}
.fs1_c00015{font-size:48.000000pt;}
.fs3_c00015{font-size:48.018812pt;}
.fs2_c00015{font-size:48.020180pt;}
.fs6_c00015{font-size:48.023058pt;}
.fs8_c00015{font-size:53.357328pt;}
.fsa_c00015{font-size:58.650384pt;}
.fsc_c00015{font-size:58.666667pt;}
.fse_c00015{font-size:64.000000pt;}
.fs7_c00015{font-size:74.698057pt;}
.fs9_c00015{font-size:181.399417pt;}
.fsd_c00015{font-size:202.666667pt;}
.y0_c00015{bottom:0.000000pt;}
.y3_c00015{bottom:5.204000pt;}
.y2_c00015{bottom:7.934667pt;}
.y1_c00015{bottom:15.586667pt;}
.y74_c00015{bottom:50.681067pt;}
.y73_c00015{bottom:52.094667pt;}
.y72_c00015{bottom:75.184060pt;}
.y71_c00015{bottom:78.891880pt;}
.y70_c00015{bottom:79.929004pt;}
.y6f_c00015{bottom:84.330472pt;}
.y6e_c00015{bottom:85.692856pt;}
.y6d_c00015{bottom:87.117412pt;}
.y6c_c00015{bottom:88.348000pt;}
.y6b_c00015{bottom:130.562747pt;}
.y6a_c00015{bottom:131.628747pt;}
.y69_c00015{bottom:133.307107pt;}
.y68_c00015{bottom:134.120787pt;}
.y67_c00015{bottom:134.905667pt;}
.y66_c00015{bottom:137.016027pt;}
.y65_c00015{bottom:143.526667pt;}
.y7a_c00015{bottom:164.400000pt;}
.y79_c00015{bottom:179.040000pt;}
.y64_c00015{bottom:182.469513pt;}
.y63_c00015{bottom:183.456208pt;}
.y62_c00015{bottom:184.773155pt;}
.y61_c00015{bottom:185.347311pt;}
.y60_c00015{bottom:186.327045pt;}
.y5f_c00015{bottom:187.781421pt;}
.y5e_c00015{bottom:188.289569pt;}
.y5d_c00015{bottom:190.110429pt;}
.y5c_c00015{bottom:190.983689pt;}
.y5b_c00015{bottom:191.782995pt;}
.y5a_c00015{bottom:193.536320pt;}
.y59_c00015{bottom:194.348367pt;}
.y58_c00015{bottom:195.359848pt;}
.y57_c00015{bottom:196.558236pt;}
.y56_c00015{bottom:207.151084pt;}
.y55_c00015{bottom:207.750220pt;}
.y54_c00015{bottom:209.435372pt;}
.y53_c00015{bottom:211.679908pt;}
.y52_c00015{bottom:212.151108pt;}
.y51_c00015{bottom:215.528372pt;}
.y50_c00015{bottom:217.484032pt;}
.y4f_c00015{bottom:220.038287pt;}
.y4e_c00015{bottom:221.320837pt;}
.y4d_c00015{bottom:221.798920pt;}
.y4c_c00015{bottom:222.480169pt;}
.y4b_c00015{bottom:233.206264pt;}
.y4a_c00015{bottom:233.843375pt;}
.y49_c00015{bottom:236.409333pt;}
.y48_c00015{bottom:279.273061pt;}
.y47_c00015{bottom:281.422643pt;}
.y46_c00015{bottom:282.217248pt;}
.y45_c00015{bottom:285.114731pt;}
.y44_c00015{bottom:285.795313pt;}
.y43_c00015{bottom:286.794085pt;}
.y42_c00015{bottom:288.580044pt;}
.y41_c00015{bottom:289.284847pt;}
.y40_c00015{bottom:290.408336pt;}
.y3f_c00015{bottom:290.834865pt;}
.y3e_c00015{bottom:291.620151pt;}
.y3d_c00015{bottom:293.032288pt;}
.y3c_c00015{bottom:298.693213pt;}
.y3b_c00015{bottom:299.418576pt;}
.y3a_c00015{bottom:300.015387pt;}
.y39_c00015{bottom:302.058841pt;}
.y38_c00015{bottom:304.042313pt;}
.y37_c00015{bottom:304.528107pt;}
.y36_c00015{bottom:305.338355pt;}
.y35_c00015{bottom:306.686288pt;}
.y34_c00015{bottom:307.295312pt;}
.y33_c00015{bottom:309.163024pt;}
.y32_c00015{bottom:311.490191pt;}
.y31_c00015{bottom:311.956744pt;}
.y30_c00015{bottom:313.201513pt;}
.y2f_c00015{bottom:318.770884pt;}
.y2e_c00015{bottom:321.458667pt;}
.y2c_c00015{bottom:360.281189pt;}
.y2b_c00015{bottom:360.756096pt;}
.y2a_c00015{bottom:361.680176pt;}
.y29_c00015{bottom:362.381499pt;}
.y28_c00015{bottom:362.823717pt;}
.y27_c00015{bottom:363.916352pt;}
.y26_c00015{bottom:364.803301pt;}
.y25_c00015{bottom:365.614459pt;}
.y24_c00015{bottom:365.983163pt;}
.y2d_c00015{bottom:366.596000pt;}
.y23_c00015{bottom:366.850613pt;}
.y22_c00015{bottom:368.037344pt;}
.y21_c00015{bottom:368.546320pt;}
.y20_c00015{bottom:369.743440pt;}
.y1f_c00015{bottom:370.240955pt;}
.y1e_c00015{bottom:371.185616pt;}
.y1d_c00015{bottom:373.184064pt;}
.y1c_c00015{bottom:374.638347pt;}
.y1b_c00015{bottom:381.711541pt;}
.y1a_c00015{bottom:382.162752pt;}
.y77_c00015{bottom:384.000000pt;}
.y19_c00015{bottom:384.360640pt;}
.y18_c00015{bottom:384.778251pt;}
.y17_c00015{bottom:385.517339pt;}
.y78_c00015{bottom:385.680000pt;}
.y16_c00015{bottom:387.155637pt;}
.y15_c00015{bottom:387.874976pt;}
.y14_c00015{bottom:389.179477pt;}
.y13_c00015{bottom:389.905312pt;}
.y12_c00015{bottom:391.747003pt;}
.y11_c00015{bottom:393.523771pt;}
.y10_c00015{bottom:394.113003pt;}
.yf_c00015{bottom:395.526667pt;}
.ye_c00015{bottom:402.831603pt;}
.yd_c00015{bottom:403.757515pt;}
.yc_c00015{bottom:404.356423pt;}
.yb_c00015{bottom:405.654076pt;}
.ya_c00015{bottom:406.601061pt;}
.y9_c00015{bottom:408.444069pt;}
.y8_c00015{bottom:408.881157pt;}
.y7_c00015{bottom:410.881268pt;}
.y6_c00015{bottom:411.464245pt;}
.y5_c00015{bottom:412.439032pt;}
.y4_c00015{bottom:413.525333pt;}
.y75_c00015{bottom:469.200000pt;}
.y76_c00015{bottom:469.440000pt;}
.h7_c00015{height:16.000000pt;}
.h2_c00015{height:21.333333pt;}
.hd_c00015{height:37.333333pt;}
.h6_c00015{height:42.683389pt;}
.h3_c00015{height:48.000000pt;}
.h5_c00015{height:48.018812pt;}
.h4_c00015{height:48.020180pt;}
.h8_c00015{height:48.023058pt;}
.ha_c00015{height:53.357328pt;}
.hc_c00015{height:58.650384pt;}
.he_c00015{height:58.666667pt;}
.h10_c00015{height:64.000000pt;}
.h9_c00015{height:74.698057pt;}
.hb_c00015{height:181.399417pt;}
.hf_c00015{height:202.666667pt;}
.h1_c00015{height:616.666667pt;}
.h0_c00015{height:616.800000pt;}
.w1_c00015{width:844.666667pt;}
.w0_c00015{width:844.800000pt;}
.x0_c00015{left:0.000000pt;}
.x4_c00015{left:56.516000pt;}
.x66_c00015{left:75.304000pt;}
.x55_c00015{left:77.747203pt;}
.x4b_c00015{left:79.766671pt;}
.x1_c00015{left:84.720000pt;}
.x4c_c00015{left:105.972952pt;}
.x2_c00015{left:115.440000pt;}
.x67_c00015{left:120.881333pt;}
.x56_c00015{left:123.856557pt;}
.x5_c00015{left:124.788000pt;}
.x33_c00015{left:126.053115pt;}
.x3_c00015{left:132.000000pt;}
.x1e_c00015{left:141.818453pt;}
.x11_c00015{left:144.965333pt;}
.x57_c00015{left:162.738588pt;}
.x34_c00015{left:172.148152pt;}
.x4d_c00015{left:173.678829pt;}
.x3f_c00015{left:180.319501pt;}
.x35_c00015{left:189.436968pt;}
.x58_c00015{left:193.961295pt;}
.x12_c00015{left:195.453333pt;}
.x1f_c00015{left:197.760256pt;}
.x40_c00015{left:210.516172pt;}
.x13_c00015{left:216.497333pt;}
.x68_c00015{left:224.101333pt;}
.x6_c00015{left:225.892000pt;}
.x41_c00015{left:226.901360pt;}
.x59_c00015{left:261.415172pt;}
.x7_c00015{left:263.350667pt;}
.x42_c00015{left:270.117389pt;}
.x4e_c00015{left:271.926041pt;}
.x20_c00015{left:274.613883pt;}
.x36_c00015{left:275.614299pt;}
.x14_c00015{left:279.953333pt;}
.x5a_c00015{left:292.152507pt;}
.x8_c00015{left:296.964000pt;}
.x61_c00015{left:302.464000pt;}
.x21_c00015{left:310.925232pt;}
.x9_c00015{left:317.066667pt;}
.x5b_c00015{left:325.762112pt;}
.x22_c00015{left:330.075648pt;}
.x2f_c00015{left:343.680000pt;}
.x37_c00015{left:344.774855pt;}
.x15_c00015{left:345.728000pt;}
.x4f_c00015{left:347.139243pt;}
.x43_c00015{left:365.920228pt;}
.x38_c00015{left:367.348332pt;}
.x16_c00015{left:371.650667pt;}
.x30_c00015{left:373.440000pt;}
.x23_c00015{left:376.118224pt;}
.xa_c00015{left:386.036000pt;}
.x69_c00015{left:387.118667pt;}
.x24_c00015{left:395.677973pt;}
.x62_c00015{left:398.972000pt;}
.xb_c00015{left:401.108000pt;}
.x44_c00015{left:404.338180pt;}
.x6a_c00015{left:410.949467pt;}
.x5c_c00015{left:415.321884pt;}
.x39_c00015{left:417.287865pt;}
.x17_c00015{left:418.240000pt;}
.x63_c00015{left:426.094667pt;}
.x45_c00015{left:430.511564pt;}
.x25_c00015{left:441.301845pt;}
.x18_c00015{left:443.930667pt;}
.x3a_c00015{left:447.299585pt;}
.xc_c00015{left:464.660000pt;}
.x5d_c00015{left:471.270756pt;}
.x26_c00015{left:474.665045pt;}
.x50_c00015{left:477.033200pt;}
.x64_c00015{left:482.040000pt;}
.x27_c00015{left:488.833829pt;}
.x51_c00015{left:495.168119pt;}
.xd_c00015{left:497.314667pt;}
.x19_c00015{left:502.441333pt;}
.x5e_c00015{left:508.966043pt;}
.x65_c00015{left:517.573333pt;}
.x28_c00015{left:520.043584pt;}
.x1a_c00015{left:528.837333pt;}
.x5f_c00015{left:531.065309pt;}
.x3b_c00015{left:538.749577pt;}
.xe_c00015{left:542.061333pt;}
.x1b_c00015{left:543.752000pt;}
.x29_c00015{left:554.150821pt;}
.x48_c00015{left:556.254667pt;}
.xf_c00015{left:562.713333pt;}
.x46_c00015{left:572.514887pt;}
.x52_c00015{left:581.492953pt;}
.x31_c00015{left:584.862667pt;}
.x10_c00015{left:594.641333pt;}
.x2a_c00015{left:596.175840pt;}
.x2b_c00015{left:613.160773pt;}
.x3c_c00015{left:614.440293pt;}
.x60_c00015{left:619.658337pt;}
.x1c_c00015{left:622.248000pt;}
.x3d_c00015{left:636.533688pt;}
.x1d_c00015{left:638.362667pt;}
.x2c_c00015{left:640.114267pt;}
.x49_c00015{left:644.736000pt;}
.x53_c00015{left:646.319932pt;}
.x47_c00015{left:655.202367pt;}
.x3e_c00015{left:663.419703pt;}
.x4a_c00015{left:666.705333pt;}
.x54_c00015{left:669.372609pt;}
.x32_c00015{left:671.565333pt;}
.x2d_c00015{left:675.642912pt;}
.x2e_c00015{left:693.890587pt;}
.x6f_c00015{left:732.720000pt;}
.x6b_c00015{left:733.680000pt;}
.x6c_c00015{left:738.960000pt;}
.x70_c00015{left:740.880000pt;}
.x6e_c00015{left:748.560000pt;}
.x6d_c00015{left:752.400000pt;}
}





/* 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_c00016 {
    display:none;
  }
  .loading-indicator_c00016.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00016 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_c00016 { 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_c00016" -> "#page-container .classname_c00016")
 */
.pf_c00016 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00016 { /* 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_c00016.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00016 { /* 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_c00016 { /* 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_c00016 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00016 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00016 {overflow:visible;}
  }
}
.c_c00016 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00016 { /* 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_c00016:after { /* webkit #35443 */
  content: '';
}
.t_c00016:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00016 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 */
}
.__c00016 { /* 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_c00016 { /* info for Javascript */
  display:none;
}
.l_c00016 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00016 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00016 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00016: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_c00016 {
    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_c00016.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00016.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_c00016 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00016{font-family:sans-serif;visibility:hidden;}
.sc__c00016{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00016{-webkit-text-stroke:0px transparent;}
}
.y0_c00016{bottom:0.000000px;}
.h1_c00016{height:693.750000px;}
.h0_c00016{height:693.900000px;}
.w1_c00016{width:950.250000px;}
.w0_c00016{width:950.400000px;}
.x0_c00016{left:0.000000px;}
@media print{
.y0_c00016{bottom:0.000000pt;}
.h1_c00016{height:616.666667pt;}
.h0_c00016{height:616.800000pt;}
.w1_c00016{width:844.666667pt;}
.w0_c00016{width:844.800000pt;}
.x0_c00016{left:0.000000pt;}
}





/* 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_c00017 {
    display:none;
  }
  .loading-indicator_c00017.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00017 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_c00017 { 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_c00017" -> "#page-container .classname_c00017")
 */
.pf_c00017 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00017 { /* 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_c00017.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00017 { /* 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_c00017 { /* 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_c00017 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00017 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00017 {overflow:visible;}
  }
}
.c_c00017 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00017 { /* 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_c00017:after { /* webkit #35443 */
  content: '';
}
.t_c00017:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00017 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 */
}
.__c00017 { /* 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_c00017 { /* info for Javascript */
  display:none;
}
.l_c00017 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00017 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00017 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00017: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_c00017 {
    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_c00017.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00017.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_c00017 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00017{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00017;src:url('chunks/assets/font_c605e72f209fc835e906f064.woff2')format("woff");}.ff1_c00017{font-family:ff1_c00017;line-height:1.000000;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;}
.mf6_c00017{transform:matrix(0.011570,0.000069,-0.001500,0.249996,0,0);-ms-transform:matrix(0.011570,0.000069,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.011570,0.000069,-0.001500,0.249996,0,0);}
.mdf_c00017{transform:matrix(0.022030,0.000132,-0.001500,0.249996,0,0);-ms-transform:matrix(0.022030,0.000132,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.022030,0.000132,-0.001500,0.249996,0,0);}
.mbe_c00017{transform:matrix(0.022500,0.000135,-0.001500,0.249996,0,0);-ms-transform:matrix(0.022500,0.000135,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.022500,0.000135,-0.001500,0.249996,0,0);}
.maf_c00017{transform:matrix(0.038709,0.000232,-0.001500,0.249996,0,0);-ms-transform:matrix(0.038709,0.000232,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.038709,0.000232,-0.001500,0.249996,0,0);}
.m97_c00017{transform:matrix(0.075839,0.000455,-0.001500,0.249996,0,0);-ms-transform:matrix(0.075839,0.000455,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.075839,0.000455,-0.001500,0.249996,0,0);}
.m48_c00017{transform:matrix(0.092660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092660,0.000000,0.000000,0.250000,0,0);}
.m70_c00017{transform:matrix(0.107384,0.000537,-0.001250,0.249997,0,0);-ms-transform:matrix(0.107384,0.000537,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.107384,0.000537,-0.001250,0.249997,0,0);}
.m43_c00017{transform:matrix(0.127995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127995,0.000000,0.000000,0.250000,0,0);}
.md2_c00017{transform:matrix(0.139627,0.000838,-0.001500,0.249996,0,0);-ms-transform:matrix(0.139627,0.000838,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.139627,0.000838,-0.001500,0.249996,0,0);}
.m8b_c00017{transform:matrix(0.141467,0.000849,-0.001500,0.249996,0,0);-ms-transform:matrix(0.141467,0.000849,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.141467,0.000849,-0.001500,0.249996,0,0);}
.m15_c00017{transform:matrix(0.144385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144385,0.000000,0.000000,0.250000,0,0);}
.m16_c00017{transform:matrix(0.145303,0.000727,-0.001250,0.249997,0,0);-ms-transform:matrix(0.145303,0.000727,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.145303,0.000727,-0.001250,0.249997,0,0);}
.m7_c00017{transform:matrix(0.146145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146145,0.000000,0.000000,0.250000,0,0);}
.m17_c00017{transform:matrix(0.147288,0.000736,-0.001250,0.249997,0,0);-ms-transform:matrix(0.147288,0.000736,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.147288,0.000736,-0.001250,0.249997,0,0);}
.m19_c00017{transform:matrix(0.147328,0.000737,-0.001250,0.249997,0,0);-ms-transform:matrix(0.147328,0.000737,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.147328,0.000737,-0.001250,0.249997,0,0);}
.ma_c00017{transform:matrix(0.147955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147955,0.000000,0.000000,0.250000,0,0);}
.m11_c00017{transform:matrix(0.148215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148215,0.000000,0.000000,0.250000,0,0);}
.m20_c00017{transform:matrix(0.148848,0.000744,-0.001250,0.249997,0,0);-ms-transform:matrix(0.148848,0.000744,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.148848,0.000744,-0.001250,0.249997,0,0);}
.mfd_c00017{transform:matrix(0.151865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151865,0.000000,0.000000,0.250000,0,0);}
.m1b_c00017{transform:matrix(0.152698,0.000763,-0.001250,0.249997,0,0);-ms-transform:matrix(0.152698,0.000763,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.152698,0.000763,-0.001250,0.249997,0,0);}
.me_c00017{transform:matrix(0.154040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154040,0.000000,0.000000,0.250000,0,0);}
.mf_c00017{transform:matrix(0.154470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154470,0.000000,0.000000,0.250000,0,0);}
.m8_c00017{transform:matrix(0.154625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154625,0.000000,0.000000,0.250000,0,0);}
.m13_c00017{transform:matrix(0.156195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156195,0.000000,0.000000,0.250000,0,0);}
.mca_c00017{transform:matrix(0.156582,0.000939,-0.001500,0.249996,0,0);-ms-transform:matrix(0.156582,0.000939,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.156582,0.000939,-0.001500,0.249996,0,0);}
.m1f_c00017{transform:matrix(0.156908,0.000785,-0.001250,0.249997,0,0);-ms-transform:matrix(0.156908,0.000785,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.156908,0.000785,-0.001250,0.249997,0,0);}
.m91_c00017{transform:matrix(0.159447,0.000957,-0.001500,0.249996,0,0);-ms-transform:matrix(0.159447,0.000957,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.159447,0.000957,-0.001500,0.249996,0,0);}
.m1e_c00017{transform:matrix(0.159858,0.000799,-0.001250,0.249997,0,0);-ms-transform:matrix(0.159858,0.000799,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.159858,0.000799,-0.001250,0.249997,0,0);}
.me3_c00017{transform:matrix(0.160212,0.000961,-0.001500,0.249996,0,0);-ms-transform:matrix(0.160212,0.000961,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.160212,0.000961,-0.001500,0.249996,0,0);}
.m1a_c00017{transform:matrix(0.160248,0.000801,-0.001250,0.249997,0,0);-ms-transform:matrix(0.160248,0.000801,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.160248,0.000801,-0.001250,0.249997,0,0);}
.m9_c00017{transform:matrix(0.166270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166270,0.000000,0.000000,0.250000,0,0);}
.m14_c00017{transform:matrix(0.168020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168020,0.000000,0.000000,0.250000,0,0);}
.m12_c00017{transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);}
.m68_c00017{transform:matrix(0.168973,0.000845,-0.001250,0.249997,0,0);-ms-transform:matrix(0.168973,0.000845,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.168973,0.000845,-0.001250,0.249997,0,0);}
.md_c00017{transform:matrix(0.169725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169725,0.000000,0.000000,0.250000,0,0);}
.m1d_c00017{transform:matrix(0.169778,0.000849,-0.001250,0.249997,0,0);-ms-transform:matrix(0.169778,0.000849,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.169778,0.000849,-0.001250,0.249997,0,0);}
.mb_c00017{transform:matrix(0.169780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169780,0.000000,0.000000,0.250000,0,0);}
.mcf_c00017{transform:matrix(0.171727,0.001030,-0.001500,0.249996,0,0);-ms-transform:matrix(0.171727,0.001030,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.171727,0.001030,-0.001500,0.249996,0,0);}
.mc_c00017{transform:matrix(0.172220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172220,0.000000,0.000000,0.250000,0,0);}
.me9_c00017{transform:matrix(0.173602,0.001042,-0.001500,0.249996,0,0);-ms-transform:matrix(0.173602,0.001042,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.173602,0.001042,-0.001500,0.249996,0,0);}
.mb5_c00017{transform:matrix(0.174237,0.001045,-0.001500,0.249996,0,0);-ms-transform:matrix(0.174237,0.001045,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.174237,0.001045,-0.001500,0.249996,0,0);}
.m3c_c00017{transform:matrix(0.176918,0.000885,-0.001250,0.249997,0,0);-ms-transform:matrix(0.176918,0.000885,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.176918,0.000885,-0.001250,0.249997,0,0);}
.m30_c00017{transform:matrix(0.178973,0.000895,-0.001250,0.249997,0,0);-ms-transform:matrix(0.178973,0.000895,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.178973,0.000895,-0.001250,0.249997,0,0);}
.mc1_c00017{transform:matrix(0.180422,0.001083,-0.001500,0.249996,0,0);-ms-transform:matrix(0.180422,0.001083,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.180422,0.001083,-0.001500,0.249996,0,0);}
.m39_c00017{transform:matrix(0.180863,0.000904,-0.001250,0.249997,0,0);-ms-transform:matrix(0.180863,0.000904,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.180863,0.000904,-0.001250,0.249997,0,0);}
.m34_c00017{transform:matrix(0.183958,0.000920,-0.001250,0.249997,0,0);-ms-transform:matrix(0.183958,0.000920,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.183958,0.000920,-0.001250,0.249997,0,0);}
.ma4_c00017{transform:matrix(0.184562,0.001107,-0.001500,0.249996,0,0);-ms-transform:matrix(0.184562,0.001107,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.184562,0.001107,-0.001500,0.249996,0,0);}
.m31_c00017{transform:matrix(0.184658,0.000923,-0.001250,0.249997,0,0);-ms-transform:matrix(0.184658,0.000923,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.184658,0.000923,-0.001250,0.249997,0,0);}
.m18_c00017{transform:matrix(0.184673,0.000923,-0.001250,0.249997,0,0);-ms-transform:matrix(0.184673,0.000923,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.184673,0.000923,-0.001250,0.249997,0,0);}
.m10_c00017{transform:matrix(0.184860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184860,0.000000,0.000000,0.250000,0,0);}
.md1_c00017{transform:matrix(0.184962,0.001110,-0.001500,0.249996,0,0);-ms-transform:matrix(0.184962,0.001110,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.184962,0.001110,-0.001500,0.249996,0,0);}
.mcc_c00017{transform:matrix(0.185967,0.001116,-0.001500,0.249996,0,0);-ms-transform:matrix(0.185967,0.001116,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.185967,0.001116,-0.001500,0.249996,0,0);}
.m8a_c00017{transform:matrix(0.186652,0.001120,-0.001500,0.249996,0,0);-ms-transform:matrix(0.186652,0.001120,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.186652,0.001120,-0.001500,0.249996,0,0);}
.me0_c00017{transform:matrix(0.187087,0.001123,-0.001500,0.249996,0,0);-ms-transform:matrix(0.187087,0.001123,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.187087,0.001123,-0.001500,0.249996,0,0);}
.meb_c00017{transform:matrix(0.187577,0.001125,-0.001500,0.249996,0,0);-ms-transform:matrix(0.187577,0.001125,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.187577,0.001125,-0.001500,0.249996,0,0);}
.md5_c00017{transform:matrix(0.188092,0.001129,-0.001500,0.249996,0,0);-ms-transform:matrix(0.188092,0.001129,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.188092,0.001129,-0.001500,0.249996,0,0);}
.ma9_c00017{transform:matrix(0.188807,0.001133,-0.001500,0.249996,0,0);-ms-transform:matrix(0.188807,0.001133,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.188807,0.001133,-0.001500,0.249996,0,0);}
.ma3_c00017{transform:matrix(0.189267,0.001136,-0.001500,0.249996,0,0);-ms-transform:matrix(0.189267,0.001136,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.189267,0.001136,-0.001500,0.249996,0,0);}
.mc6_c00017{transform:matrix(0.190907,0.001145,-0.001500,0.249996,0,0);-ms-transform:matrix(0.190907,0.001145,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.190907,0.001145,-0.001500,0.249996,0,0);}
.m7f_c00017{transform:matrix(0.193423,0.000967,-0.001250,0.249997,0,0);-ms-transform:matrix(0.193423,0.000967,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.193423,0.000967,-0.001250,0.249997,0,0);}
.mee_c00017{transform:matrix(0.194237,0.001165,-0.001500,0.249996,0,0);-ms-transform:matrix(0.194237,0.001165,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.194237,0.001165,-0.001500,0.249996,0,0);}
.m32_c00017{transform:matrix(0.194338,0.000972,-0.001250,0.249997,0,0);-ms-transform:matrix(0.194338,0.000972,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.194338,0.000972,-0.001250,0.249997,0,0);}
.m3b_c00017{transform:matrix(0.194563,0.000973,-0.001250,0.249997,0,0);-ms-transform:matrix(0.194563,0.000973,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.194563,0.000973,-0.001250,0.249997,0,0);}
.mbb_c00017{transform:matrix(0.195156,0.001171,-0.001500,0.249996,0,0);-ms-transform:matrix(0.195156,0.001171,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.195156,0.001171,-0.001500,0.249996,0,0);}
.me5_c00017{transform:matrix(0.195296,0.001172,-0.001500,0.249996,0,0);-ms-transform:matrix(0.195296,0.001172,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.195296,0.001172,-0.001500,0.249996,0,0);}
.m7a_c00017{transform:matrix(0.195558,0.000978,-0.001250,0.249997,0,0);-ms-transform:matrix(0.195558,0.000978,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.195558,0.000978,-0.001250,0.249997,0,0);}
.ma0_c00017{transform:matrix(0.195641,0.001174,-0.001500,0.249996,0,0);-ms-transform:matrix(0.195641,0.001174,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.195641,0.001174,-0.001500,0.249996,0,0);}
.m36_c00017{transform:matrix(0.195818,0.000979,-0.001250,0.249997,0,0);-ms-transform:matrix(0.195818,0.000979,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.195818,0.000979,-0.001250,0.249997,0,0);}
.m1c_c00017{transform:matrix(0.196738,0.000984,-0.001250,0.249997,0,0);-ms-transform:matrix(0.196738,0.000984,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.196738,0.000984,-0.001250,0.249997,0,0);}
.m8c_c00017{transform:matrix(0.197286,0.001184,-0.001500,0.249996,0,0);-ms-transform:matrix(0.197286,0.001184,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.197286,0.001184,-0.001500,0.249996,0,0);}
.m89_c00017{transform:matrix(0.197288,0.000986,-0.001250,0.249997,0,0);-ms-transform:matrix(0.197288,0.000986,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.197288,0.000986,-0.001250,0.249997,0,0);}
.m28_c00017{transform:matrix(0.197995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197995,0.000000,0.000000,0.250000,0,0);}
.mce_c00017{transform:matrix(0.199346,0.001196,-0.001500,0.249996,0,0);-ms-transform:matrix(0.199346,0.001196,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.199346,0.001196,-0.001500,0.249996,0,0);}
.me7_c00017{transform:matrix(0.200436,0.001203,-0.001500,0.249996,0,0);-ms-transform:matrix(0.200436,0.001203,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.200436,0.001203,-0.001500,0.249996,0,0);}
.med_c00017{transform:matrix(0.200511,0.001203,-0.001500,0.249996,0,0);-ms-transform:matrix(0.200511,0.001203,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.200511,0.001203,-0.001500,0.249996,0,0);}
.m35_c00017{transform:matrix(0.200552,0.001003,-0.001250,0.249997,0,0);-ms-transform:matrix(0.200552,0.001003,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.200552,0.001003,-0.001250,0.249997,0,0);}
.m96_c00017{transform:matrix(0.200606,0.001204,-0.001500,0.249996,0,0);-ms-transform:matrix(0.200606,0.001204,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.200606,0.001204,-0.001500,0.249996,0,0);}
.m72_c00017{transform:matrix(0.200887,0.001004,-0.001250,0.249997,0,0);-ms-transform:matrix(0.200887,0.001004,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.200887,0.001004,-0.001250,0.249997,0,0);}
.m62_c00017{transform:matrix(0.201332,0.001007,-0.001250,0.249997,0,0);-ms-transform:matrix(0.201332,0.001007,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.201332,0.001007,-0.001250,0.249997,0,0);}
.m59_c00017{transform:matrix(0.201757,0.001009,-0.001250,0.249997,0,0);-ms-transform:matrix(0.201757,0.001009,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.201757,0.001009,-0.001250,0.249997,0,0);}
.mbd_c00017{transform:matrix(0.202371,0.001214,-0.001500,0.249996,0,0);-ms-transform:matrix(0.202371,0.001214,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.202371,0.001214,-0.001500,0.249996,0,0);}
.m33_c00017{transform:matrix(0.202947,0.001015,-0.001250,0.249997,0,0);-ms-transform:matrix(0.202947,0.001015,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.202947,0.001015,-0.001250,0.249997,0,0);}
.md4_c00017{transform:matrix(0.203106,0.001219,-0.001500,0.249996,0,0);-ms-transform:matrix(0.203106,0.001219,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.203106,0.001219,-0.001500,0.249996,0,0);}
.mc8_c00017{transform:matrix(0.203541,0.001221,-0.001500,0.249996,0,0);-ms-transform:matrix(0.203541,0.001221,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.203541,0.001221,-0.001500,0.249996,0,0);}
.m9b_c00017{transform:matrix(0.203961,0.001224,-0.001500,0.249996,0,0);-ms-transform:matrix(0.203961,0.001224,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.203961,0.001224,-0.001500,0.249996,0,0);}
.mb7_c00017{transform:matrix(0.204561,0.001227,-0.001500,0.249996,0,0);-ms-transform:matrix(0.204561,0.001227,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.204561,0.001227,-0.001500,0.249996,0,0);}
.mc9_c00017{transform:matrix(0.205686,0.001234,-0.001500,0.249996,0,0);-ms-transform:matrix(0.205686,0.001234,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.205686,0.001234,-0.001500,0.249996,0,0);}
.me2_c00017{transform:matrix(0.205851,0.001235,-0.001500,0.249996,0,0);-ms-transform:matrix(0.205851,0.001235,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.205851,0.001235,-0.001500,0.249996,0,0);}
.m2f_c00017{transform:matrix(0.206152,0.001031,-0.001250,0.249997,0,0);-ms-transform:matrix(0.206152,0.001031,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.206152,0.001031,-0.001250,0.249997,0,0);}
.m37_c00017{transform:matrix(0.206417,0.001032,-0.001250,0.249997,0,0);-ms-transform:matrix(0.206417,0.001032,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.206417,0.001032,-0.001250,0.249997,0,0);}
.mf0_c00017{transform:matrix(0.207301,0.001244,-0.001500,0.249996,0,0);-ms-transform:matrix(0.207301,0.001244,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.207301,0.001244,-0.001500,0.249996,0,0);}
.mb1_c00017{transform:matrix(0.207606,0.001246,-0.001500,0.249996,0,0);-ms-transform:matrix(0.207606,0.001246,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.207606,0.001246,-0.001500,0.249996,0,0);}
.me8_c00017{transform:matrix(0.209571,0.001257,-0.001500,0.249996,0,0);-ms-transform:matrix(0.209571,0.001257,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.209571,0.001257,-0.001500,0.249996,0,0);}
.m98_c00017{transform:matrix(0.209996,0.001260,-0.001500,0.249996,0,0);-ms-transform:matrix(0.209996,0.001260,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.209996,0.001260,-0.001500,0.249996,0,0);}
.mcb_c00017{transform:matrix(0.210126,0.001261,-0.001500,0.249996,0,0);-ms-transform:matrix(0.210126,0.001261,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.210126,0.001261,-0.001500,0.249996,0,0);}
.mde_c00017{transform:matrix(0.210431,0.001263,-0.001500,0.249996,0,0);-ms-transform:matrix(0.210431,0.001263,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.210431,0.001263,-0.001500,0.249996,0,0);}
.ma2_c00017{transform:matrix(0.212071,0.001272,-0.001500,0.249996,0,0);-ms-transform:matrix(0.212071,0.001272,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.212071,0.001272,-0.001500,0.249996,0,0);}
.mf7_c00017{transform:matrix(0.213321,0.001280,-0.001500,0.249996,0,0);-ms-transform:matrix(0.213321,0.001280,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.213321,0.001280,-0.001500,0.249996,0,0);}
.m9e_c00017{transform:matrix(0.214681,0.001288,-0.001500,0.249996,0,0);-ms-transform:matrix(0.214681,0.001288,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.214681,0.001288,-0.001500,0.249996,0,0);}
.mea_c00017{transform:matrix(0.214811,0.001289,-0.001500,0.249996,0,0);-ms-transform:matrix(0.214811,0.001289,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.214811,0.001289,-0.001500,0.249996,0,0);}
.md0_c00017{transform:matrix(0.215011,0.001290,-0.001500,0.249996,0,0);-ms-transform:matrix(0.215011,0.001290,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.215011,0.001290,-0.001500,0.249996,0,0);}
.m44_c00017{transform:matrix(0.217475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217475,0.000000,0.000000,0.250000,0,0);}
.mc0_c00017{transform:matrix(0.217721,0.001306,-0.001500,0.249996,0,0);-ms-transform:matrix(0.217721,0.001306,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.217721,0.001306,-0.001500,0.249996,0,0);}
.mc7_c00017{transform:matrix(0.219401,0.001316,-0.001500,0.249996,0,0);-ms-transform:matrix(0.219401,0.001316,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.219401,0.001316,-0.001500,0.249996,0,0);}
.me1_c00017{transform:matrix(0.220956,0.001326,-0.001500,0.249996,0,0);-ms-transform:matrix(0.220956,0.001326,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.220956,0.001326,-0.001500,0.249996,0,0);}
.mad_c00017{transform:matrix(0.221446,0.001329,-0.001500,0.249996,0,0);-ms-transform:matrix(0.221446,0.001329,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.221446,0.001329,-0.001500,0.249996,0,0);}
.mb3_c00017{transform:matrix(0.222176,0.001333,-0.001500,0.249996,0,0);-ms-transform:matrix(0.222176,0.001333,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.222176,0.001333,-0.001500,0.249996,0,0);}
.me4_c00017{transform:matrix(0.223046,0.001338,-0.001500,0.249996,0,0);-ms-transform:matrix(0.223046,0.001338,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.223046,0.001338,-0.001500,0.249996,0,0);}
.ma6_c00017{transform:matrix(0.224386,0.001346,-0.001500,0.249996,0,0);-ms-transform:matrix(0.224386,0.001346,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.224386,0.001346,-0.001500,0.249996,0,0);}
.mae_c00017{transform:matrix(0.225831,0.001355,-0.001500,0.249996,0,0);-ms-transform:matrix(0.225831,0.001355,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.225831,0.001355,-0.001500,0.249996,0,0);}
.m3a_c00017{transform:matrix(0.226272,0.001131,-0.001250,0.249997,0,0);-ms-transform:matrix(0.226272,0.001131,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.226272,0.001131,-0.001250,0.249997,0,0);}
.mb4_c00017{transform:matrix(0.226751,0.001361,-0.001500,0.249996,0,0);-ms-transform:matrix(0.226751,0.001361,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.226751,0.001361,-0.001500,0.249996,0,0);}
.m9a_c00017{transform:matrix(0.228076,0.001368,-0.001500,0.249996,0,0);-ms-transform:matrix(0.228076,0.001368,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.228076,0.001368,-0.001500,0.249996,0,0);}
.m2d_c00017{transform:matrix(0.229610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229610,0.000000,0.000000,0.250000,0,0);}
.mc5_c00017{transform:matrix(0.231476,0.001389,-0.001500,0.249996,0,0);-ms-transform:matrix(0.231476,0.001389,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.231476,0.001389,-0.001500,0.249996,0,0);}
.m9c_c00017{transform:matrix(0.231676,0.001390,-0.001500,0.249996,0,0);-ms-transform:matrix(0.231676,0.001390,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.231676,0.001390,-0.001500,0.249996,0,0);}
.mb0_c00017{transform:matrix(0.231721,0.001390,-0.001500,0.249996,0,0);-ms-transform:matrix(0.231721,0.001390,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.231721,0.001390,-0.001500,0.249996,0,0);}
.m50_c00017{transform:matrix(0.232595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232595,0.000000,0.000000,0.250000,0,0);}
.m9d_c00017{transform:matrix(0.232836,0.001397,-0.001500,0.249996,0,0);-ms-transform:matrix(0.232836,0.001397,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.232836,0.001397,-0.001500,0.249996,0,0);}
.mb6_c00017{transform:matrix(0.234056,0.001404,-0.001500,0.249996,0,0);-ms-transform:matrix(0.234056,0.001404,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.234056,0.001404,-0.001500,0.249996,0,0);}
.mc2_c00017{transform:matrix(0.234171,0.001405,-0.001500,0.249996,0,0);-ms-transform:matrix(0.234171,0.001405,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.234171,0.001405,-0.001500,0.249996,0,0);}
.mf3_c00017{transform:matrix(0.235036,0.001410,-0.001500,0.249996,0,0);-ms-transform:matrix(0.235036,0.001410,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.235036,0.001410,-0.001500,0.249996,0,0);}
.mbc_c00017{transform:matrix(0.235411,0.001412,-0.001500,0.249996,0,0);-ms-transform:matrix(0.235411,0.001412,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.235411,0.001412,-0.001500,0.249996,0,0);}
.md3_c00017{transform:matrix(0.235561,0.001413,-0.001500,0.249996,0,0);-ms-transform:matrix(0.235561,0.001413,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.235561,0.001413,-0.001500,0.249996,0,0);}
.mf5_c00017{transform:matrix(0.236121,0.001417,-0.001500,0.249996,0,0);-ms-transform:matrix(0.236121,0.001417,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.236121,0.001417,-0.001500,0.249996,0,0);}
.m3d_c00017{transform:matrix(0.236437,0.001182,-0.001250,0.249997,0,0);-ms-transform:matrix(0.236437,0.001182,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.236437,0.001182,-0.001250,0.249997,0,0);}
.mdc_c00017{transform:matrix(0.236861,0.001421,-0.001500,0.249996,0,0);-ms-transform:matrix(0.236861,0.001421,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.236861,0.001421,-0.001500,0.249996,0,0);}
.ma5_c00017{transform:matrix(0.237616,0.001426,-0.001500,0.249996,0,0);-ms-transform:matrix(0.237616,0.001426,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.237616,0.001426,-0.001500,0.249996,0,0);}
.m22_c00017{transform:matrix(0.237835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237835,0.000000,0.000000,0.250000,0,0);}
.mec_c00017{transform:matrix(0.238671,0.001432,-0.001500,0.249996,0,0);-ms-transform:matrix(0.238671,0.001432,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.238671,0.001432,-0.001500,0.249996,0,0);}
.ma7_c00017{transform:matrix(0.238731,0.001432,-0.001500,0.249996,0,0);-ms-transform:matrix(0.238731,0.001432,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.238731,0.001432,-0.001500,0.249996,0,0);}
.mb9_c00017{transform:matrix(0.238801,0.001433,-0.001500,0.249996,0,0);-ms-transform:matrix(0.238801,0.001433,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.238801,0.001433,-0.001500,0.249996,0,0);}
.m95_c00017{transform:matrix(0.238856,0.001433,-0.001500,0.249996,0,0);-ms-transform:matrix(0.238856,0.001433,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.238856,0.001433,-0.001500,0.249996,0,0);}
.m26_c00017{transform:matrix(0.239070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239070,0.000000,0.000000,0.250000,0,0);}
.m76_c00017{transform:matrix(0.239437,0.001197,-0.001250,0.249997,0,0);-ms-transform:matrix(0.239437,0.001197,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.239437,0.001197,-0.001250,0.249997,0,0);}
.mdb_c00017{transform:matrix(0.240186,0.001441,-0.001500,0.249996,0,0);-ms-transform:matrix(0.240186,0.001441,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.240186,0.001441,-0.001500,0.249996,0,0);}
.m4d_c00017{transform:matrix(0.242165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242165,0.000000,0.000000,0.250000,0,0);}
.mcd_c00017{transform:matrix(0.243701,0.001462,-0.001500,0.249996,0,0);-ms-transform:matrix(0.243701,0.001462,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.243701,0.001462,-0.001500,0.249996,0,0);}
.m90_c00017{transform:matrix(0.244346,0.001466,-0.001500,0.249996,0,0);-ms-transform:matrix(0.244346,0.001466,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.244346,0.001466,-0.001500,0.249996,0,0);}
.md6_c00017{transform:matrix(0.244701,0.001468,-0.001500,0.249996,0,0);-ms-transform:matrix(0.244701,0.001468,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.244701,0.001468,-0.001500,0.249996,0,0);}
.mac_c00017{transform:matrix(0.244936,0.001470,-0.001500,0.249996,0,0);-ms-transform:matrix(0.244936,0.001470,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.244936,0.001470,-0.001500,0.249996,0,0);}
.m94_c00017{transform:matrix(0.246266,0.001478,-0.001500,0.249996,0,0);-ms-transform:matrix(0.246266,0.001478,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.246266,0.001478,-0.001500,0.249996,0,0);}
.m2b_c00017{transform:matrix(0.248240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248240,0.000000,0.000000,0.250000,0,0);}
.me6_c00017{transform:matrix(0.248306,0.001490,-0.001500,0.249996,0,0);-ms-transform:matrix(0.248306,0.001490,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.248306,0.001490,-0.001500,0.249996,0,0);}
.mb2_c00017{transform:matrix(0.251595,0.001510,-0.001500,0.249996,0,0);-ms-transform:matrix(0.251595,0.001510,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.251595,0.001510,-0.001500,0.249996,0,0);}
.m38_c00017{transform:matrix(0.252307,0.001262,-0.001250,0.249997,0,0);-ms-transform:matrix(0.252307,0.001262,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.252307,0.001262,-0.001250,0.249997,0,0);}
.ma8_c00017{transform:matrix(0.252400,0.001514,-0.001500,0.249996,0,0);-ms-transform:matrix(0.252400,0.001514,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.252400,0.001514,-0.001500,0.249996,0,0);}
.m24_c00017{transform:matrix(0.252695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252695,0.000000,0.000000,0.250000,0,0);}
.m2a_c00017{transform:matrix(0.253400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253400,0.000000,0.000000,0.250000,0,0);}
.m9f_c00017{transform:matrix(0.254605,0.001528,-0.001500,0.249996,0,0);-ms-transform:matrix(0.254605,0.001528,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.254605,0.001528,-0.001500,0.249996,0,0);}
.m23_c00017{transform:matrix(0.255665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255665,0.000000,0.000000,0.250000,0,0);}
.m99_c00017{transform:matrix(0.255855,0.001535,-0.001500,0.249996,0,0);-ms-transform:matrix(0.255855,0.001535,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.255855,0.001535,-0.001500,0.249996,0,0);}
.mbf_c00017{transform:matrix(0.256740,0.001540,-0.001500,0.249996,0,0);-ms-transform:matrix(0.256740,0.001540,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.256740,0.001540,-0.001500,0.249996,0,0);}
.maa_c00017{transform:matrix(0.258370,0.001550,-0.001500,0.249996,0,0);-ms-transform:matrix(0.258370,0.001550,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.258370,0.001550,-0.001500,0.249996,0,0);}
.m78_c00017{transform:matrix(0.260937,0.001305,-0.001250,0.249997,0,0);-ms-transform:matrix(0.260937,0.001305,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.260937,0.001305,-0.001250,0.249997,0,0);}
.m4f_c00017{transform:matrix(0.262865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262865,0.000000,0.000000,0.250000,0,0);}
.m56_c00017{transform:matrix(0.262947,0.001315,-0.001250,0.249997,0,0);-ms-transform:matrix(0.262947,0.001315,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.262947,0.001315,-0.001250,0.249997,0,0);}
.m4e_c00017{transform:matrix(0.263715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263715,0.000000,0.000000,0.250000,0,0);}
.ma1_c00017{transform:matrix(0.264145,0.001585,-0.001500,0.249996,0,0);-ms-transform:matrix(0.264145,0.001585,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.264145,0.001585,-0.001500,0.249996,0,0);}
.m6_c00017{transform:matrix(0.265870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265870,0.000000,0.000000,0.250000,0,0);}
.mb8_c00017{transform:matrix(0.271810,0.001631,-0.001500,0.249996,0,0);-ms-transform:matrix(0.271810,0.001631,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.271810,0.001631,-0.001500,0.249996,0,0);}
.m2e_c00017{transform:matrix(0.273385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273385,0.000000,0.000000,0.250000,0,0);}
.mdd_c00017{transform:matrix(0.274085,0.001645,-0.001500,0.249996,0,0);-ms-transform:matrix(0.274085,0.001645,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.274085,0.001645,-0.001500,0.249996,0,0);}
.m0_c00017{transform:matrix(0.274975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274975,0.000000,0.000000,0.250000,0,0);}
.mef_c00017{transform:matrix(0.278605,0.001672,-0.001500,0.249996,0,0);-ms-transform:matrix(0.278605,0.001672,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.278605,0.001672,-0.001500,0.249996,0,0);}
.m25_c00017{transform:matrix(0.279480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279480,0.000000,0.000000,0.250000,0,0);}
.md9_c00017{transform:matrix(0.279950,0.001680,-0.001500,0.249996,0,0);-ms-transform:matrix(0.279950,0.001680,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.279950,0.001680,-0.001500,0.249996,0,0);}
.m4a_c00017{transform:matrix(0.283355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283355,0.000000,0.000000,0.250000,0,0);}
.m8e_c00017{transform:matrix(0.283390,0.001700,-0.001500,0.249996,0,0);-ms-transform:matrix(0.283390,0.001700,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.283390,0.001700,-0.001500,0.249996,0,0);}
.m21_c00017{transform:matrix(0.283610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283610,0.000000,0.000000,0.250000,0,0);}
.m3_c00017{transform:matrix(0.287655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287655,0.000000,0.000000,0.250000,0,0);}
.m4c_c00017{transform:matrix(0.288735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288735,0.000000,0.000000,0.250000,0,0);}
.mda_c00017{transform:matrix(0.290370,0.001742,-0.001500,0.249996,0,0);-ms-transform:matrix(0.290370,0.001742,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.290370,0.001742,-0.001500,0.249996,0,0);}
.m75_c00017{transform:matrix(0.293606,0.001468,-0.001250,0.249997,0,0);-ms-transform:matrix(0.293606,0.001468,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.293606,0.001468,-0.001250,0.249997,0,0);}
.m27_c00017{transform:matrix(0.295520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295520,0.000000,0.000000,0.250000,0,0);}
.m1_c00017{transform:matrix(0.296820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296820,0.000000,0.000000,0.250000,0,0);}
.m83_c00017{transform:matrix(0.306901,0.001535,-0.001250,0.249997,0,0);-ms-transform:matrix(0.306901,0.001535,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.306901,0.001535,-0.001250,0.249997,0,0);}
.m3f_c00017{transform:matrix(0.310650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310650,0.000000,0.000000,0.250000,0,0);}
.m93_c00017{transform:matrix(0.311909,0.001871,-0.001500,0.249996,0,0);-ms-transform:matrix(0.311909,0.001871,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.311909,0.001871,-0.001500,0.249996,0,0);}
.mab_c00017{transform:matrix(0.313044,0.001878,-0.001500,0.249996,0,0);-ms-transform:matrix(0.313044,0.001878,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.313044,0.001878,-0.001500,0.249996,0,0);}
.mba_c00017{transform:matrix(0.316134,0.001897,-0.001500,0.249996,0,0);-ms-transform:matrix(0.316134,0.001897,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.316134,0.001897,-0.001500,0.249996,0,0);}
.m87_c00017{transform:matrix(0.317596,0.001588,-0.001250,0.249997,0,0);-ms-transform:matrix(0.317596,0.001588,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.317596,0.001588,-0.001250,0.249997,0,0);}
.m73_c00017{transform:matrix(0.318371,0.001592,-0.001250,0.249997,0,0);-ms-transform:matrix(0.318371,0.001592,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.318371,0.001592,-0.001250,0.249997,0,0);}
.m85_c00017{transform:matrix(0.319701,0.001599,-0.001250,0.249997,0,0);-ms-transform:matrix(0.319701,0.001599,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.319701,0.001599,-0.001250,0.249997,0,0);}
.m8d_c00017{transform:matrix(0.323664,0.001942,-0.001500,0.249996,0,0);-ms-transform:matrix(0.323664,0.001942,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.323664,0.001942,-0.001500,0.249996,0,0);}
.m6f_c00017{transform:matrix(0.331801,0.001659,-0.001250,0.249997,0,0);-ms-transform:matrix(0.331801,0.001659,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.331801,0.001659,-0.001250,0.249997,0,0);}
.m84_c00017{transform:matrix(0.332131,0.001661,-0.001250,0.249997,0,0);-ms-transform:matrix(0.332131,0.001661,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.332131,0.001661,-0.001250,0.249997,0,0);}
.m5c_c00017{transform:matrix(0.335391,0.001677,-0.001250,0.249997,0,0);-ms-transform:matrix(0.335391,0.001677,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.335391,0.001677,-0.001250,0.249997,0,0);}
.m4b_c00017{transform:matrix(0.338880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338880,0.000000,0.000000,0.250000,0,0);}
.m2c_c00017{transform:matrix(0.342620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342620,0.000000,0.000000,0.250000,0,0);}
.m6e_c00017{transform:matrix(0.342746,0.001714,-0.001250,0.249997,0,0);-ms-transform:matrix(0.342746,0.001714,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.342746,0.001714,-0.001250,0.249997,0,0);}
.m82_c00017{transform:matrix(0.345016,0.001725,-0.001250,0.249997,0,0);-ms-transform:matrix(0.345016,0.001725,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.345016,0.001725,-0.001250,0.249997,0,0);}
.m5_c00017{transform:matrix(0.355820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355820,0.000000,0.000000,0.250000,0,0);}
.md8_c00017{transform:matrix(0.358739,0.002152,-0.001500,0.249996,0,0);-ms-transform:matrix(0.358739,0.002152,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.358739,0.002152,-0.001500,0.249996,0,0);}
.m65_c00017{transform:matrix(0.367830,0.001839,-0.001250,0.249997,0,0);-ms-transform:matrix(0.367830,0.001839,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.367830,0.001839,-0.001250,0.249997,0,0);}
.m100_c00017{transform:matrix(0.368515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368515,0.000000,0.000000,0.250000,0,0);}
.m29_c00017{transform:matrix(0.368750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368750,0.000000,0.000000,0.250000,0,0);}
.m2_c00017{transform:matrix(0.373780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373780,0.000000,0.000000,0.250000,0,0);}
.m47_c00017{transform:matrix(0.379390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379390,0.000000,0.000000,0.250000,0,0);}
.m4_c00017{transform:matrix(0.387120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387120,0.000000,0.000000,0.250000,0,0);}
.m61_c00017{transform:matrix(0.390795,0.001954,-0.001250,0.249997,0,0);-ms-transform:matrix(0.390795,0.001954,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.390795,0.001954,-0.001250,0.249997,0,0);}
.m8f_c00017{transform:matrix(0.393638,0.002362,-0.001500,0.249996,0,0);-ms-transform:matrix(0.393638,0.002362,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.393638,0.002362,-0.001500,0.249996,0,0);}
.m71_c00017{transform:matrix(0.412920,0.002065,-0.001250,0.249997,0,0);-ms-transform:matrix(0.412920,0.002065,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.412920,0.002065,-0.001250,0.249997,0,0);}
.m3e_c00017{transform:matrix(0.421615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421615,0.000000,0.000000,0.250000,0,0);}
.m77_c00017{transform:matrix(0.423015,0.002115,-0.001250,0.249997,0,0);-ms-transform:matrix(0.423015,0.002115,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.423015,0.002115,-0.001250,0.249997,0,0);}
.mf2_c00017{transform:matrix(0.427822,0.002567,-0.001500,0.249996,0,0);-ms-transform:matrix(0.427822,0.002567,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.427822,0.002567,-0.001500,0.249996,0,0);}
.m40_c00017{transform:matrix(0.433725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433725,0.000000,0.000000,0.250000,0,0);}
.mf1_c00017{transform:matrix(0.434487,0.002607,-0.001500,0.249996,0,0);-ms-transform:matrix(0.434487,0.002607,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.434487,0.002607,-0.001500,0.249996,0,0);}
.m6b_c00017{transform:matrix(0.440409,0.002202,-0.001250,0.249997,0,0);-ms-transform:matrix(0.440409,0.002202,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.440409,0.002202,-0.001250,0.249997,0,0);}
.m60_c00017{transform:matrix(0.445694,0.002228,-0.001250,0.249997,0,0);-ms-transform:matrix(0.445694,0.002228,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.445694,0.002228,-0.001250,0.249997,0,0);}
.mf4_c00017{transform:matrix(0.450232,0.002701,-0.001500,0.249996,0,0);-ms-transform:matrix(0.450232,0.002701,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.450232,0.002701,-0.001500,0.249996,0,0);}
.m41_c00017{transform:matrix(0.461670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461670,0.000000,0.000000,0.250000,0,0);}
.m51_c00017{transform:matrix(0.465079,0.002325,-0.001250,0.249997,0,0);-ms-transform:matrix(0.465079,0.002325,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.465079,0.002325,-0.001250,0.249997,0,0);}
.mfc_c00017{transform:matrix(0.465295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465295,0.000000,0.000000,0.250000,0,0);}
.m86_c00017{transform:matrix(0.474929,0.002375,-0.001250,0.249997,0,0);-ms-transform:matrix(0.474929,0.002375,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.474929,0.002375,-0.001250,0.249997,0,0);}
.m92_c00017{transform:matrix(0.481761,0.002891,-0.001500,0.249996,0,0);-ms-transform:matrix(0.481761,0.002891,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.481761,0.002891,-0.001500,0.249996,0,0);}
.mc4_c00017{transform:matrix(0.483591,0.002902,-0.001500,0.249996,0,0);-ms-transform:matrix(0.483591,0.002902,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.483591,0.002902,-0.001500,0.249996,0,0);}
.m64_c00017{transform:matrix(0.512519,0.002563,-0.001250,0.249997,0,0);-ms-transform:matrix(0.512519,0.002563,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.512519,0.002563,-0.001250,0.249997,0,0);}
.mff_c00017{transform:matrix(0.522380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522380,0.000000,0.000000,0.250000,0,0);}
.m6c_c00017{transform:matrix(0.536363,0.002682,-0.001250,0.249997,0,0);-ms-transform:matrix(0.536363,0.002682,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.536363,0.002682,-0.001250,0.249997,0,0);}
.m5b_c00017{transform:matrix(0.555868,0.002779,-0.001250,0.249997,0,0);-ms-transform:matrix(0.555868,0.002779,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.555868,0.002779,-0.001250,0.249997,0,0);}
.m5e_c00017{transform:matrix(0.560553,0.002803,-0.001250,0.249997,0,0);-ms-transform:matrix(0.560553,0.002803,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.560553,0.002803,-0.001250,0.249997,0,0);}
.m54_c00017{transform:matrix(0.580228,0.002901,-0.001250,0.249997,0,0);-ms-transform:matrix(0.580228,0.002901,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.580228,0.002901,-0.001250,0.249997,0,0);}
.mfe_c00017{transform:matrix(0.587700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.587700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.587700,0.000000,0.000000,0.250000,0,0);}
.m80_c00017{transform:matrix(0.593393,0.002967,-0.001250,0.249997,0,0);-ms-transform:matrix(0.593393,0.002967,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.593393,0.002967,-0.001250,0.249997,0,0);}
.m6a_c00017{transform:matrix(0.615472,0.003077,-0.001250,0.249997,0,0);-ms-transform:matrix(0.615472,0.003077,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.615472,0.003077,-0.001250,0.249997,0,0);}
.m5f_c00017{transform:matrix(0.619067,0.003095,-0.001250,0.249997,0,0);-ms-transform:matrix(0.619067,0.003095,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.619067,0.003095,-0.001250,0.249997,0,0);}
.mfa_c00017{transform:matrix(0.625205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625205,0.000000,0.000000,0.250000,0,0);}
.mf8_c00017{transform:matrix(0.636395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636395,0.000000,0.000000,0.250000,0,0);}
.m53_c00017{transform:matrix(0.652087,0.003260,-0.001250,0.249997,0,0);-ms-transform:matrix(0.652087,0.003260,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.652087,0.003260,-0.001250,0.249997,0,0);}
.m5d_c00017{transform:matrix(0.670332,0.003352,-0.001250,0.249997,0,0);-ms-transform:matrix(0.670332,0.003352,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.670332,0.003352,-0.001250,0.249997,0,0);}
.m52_c00017{transform:matrix(0.690306,0.003452,-0.001250,0.249997,0,0);-ms-transform:matrix(0.690306,0.003452,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.690306,0.003452,-0.001250,0.249997,0,0);}
.m79_c00017{transform:matrix(0.700866,0.003504,-0.001250,0.249997,0,0);-ms-transform:matrix(0.700866,0.003504,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.700866,0.003504,-0.001250,0.249997,0,0);}
.m49_c00017{transform:matrix(0.743470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.743470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.743470,0.000000,0.000000,0.250000,0,0);}
.m46_c00017{transform:matrix(0.779645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779645,0.000000,0.000000,0.250000,0,0);}
.m42_c00017{transform:matrix(0.780035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.780035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.780035,0.000000,0.000000,0.250000,0,0);}
.m63_c00017{transform:matrix(0.793760,0.003969,-0.001250,0.249997,0,0);-ms-transform:matrix(0.793760,0.003969,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.793760,0.003969,-0.001250,0.249997,0,0);}
.mfb_c00017{transform:matrix(0.811250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811250,0.000000,0.000000,0.250000,0,0);}
.md7_c00017{transform:matrix(0.851415,0.005108,-0.001500,0.249996,0,0);-ms-transform:matrix(0.851415,0.005108,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.851415,0.005108,-0.001500,0.249996,0,0);}
.m67_c00017{transform:matrix(0.855314,0.004277,-0.001250,0.249997,0,0);-ms-transform:matrix(0.855314,0.004277,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.855314,0.004277,-0.001250,0.249997,0,0);}
.m7c_c00017{transform:matrix(0.872259,0.004361,-0.001250,0.249997,0,0);-ms-transform:matrix(0.872259,0.004361,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.872259,0.004361,-0.001250,0.249997,0,0);}
.mc3_c00017{transform:matrix(0.902079,0.005412,-0.001500,0.249996,0,0);-ms-transform:matrix(0.902079,0.005412,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.902079,0.005412,-0.001500,0.249996,0,0);}
.m7d_c00017{transform:matrix(0.953113,0.004766,-0.001250,0.249997,0,0);-ms-transform:matrix(0.953113,0.004766,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.953113,0.004766,-0.001250,0.249997,0,0);}
.m88_c00017{transform:matrix(0.992803,0.004964,-0.001250,0.249997,0,0);-ms-transform:matrix(0.992803,0.004964,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.992803,0.004964,-0.001250,0.249997,0,0);}
.m7e_c00017{transform:matrix(1.000367,0.005002,-0.001250,0.249997,0,0);-ms-transform:matrix(1.000367,0.005002,-0.001250,0.249997,0,0);-webkit-transform:matrix(1.000367,0.005002,-0.001250,0.249997,0,0);}
.m101_c00017{transform:matrix(1.081380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.081380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.081380,0.000000,0.000000,0.250000,0,0);}
.m66_c00017{transform:matrix(1.114606,0.005573,-0.001250,0.249997,0,0);-ms-transform:matrix(1.114606,0.005573,-0.001250,0.249997,0,0);-webkit-transform:matrix(1.114606,0.005573,-0.001250,0.249997,0,0);}
.m6d_c00017{transform:matrix(1.184255,0.005921,-0.001250,0.249997,0,0);-ms-transform:matrix(1.184255,0.005921,-0.001250,0.249997,0,0);-webkit-transform:matrix(1.184255,0.005921,-0.001250,0.249997,0,0);}
.m5a_c00017{transform:matrix(1.203520,0.006018,-0.001250,0.249997,0,0);-ms-transform:matrix(1.203520,0.006018,-0.001250,0.249997,0,0);-webkit-transform:matrix(1.203520,0.006018,-0.001250,0.249997,0,0);}
.m57_c00017{transform:matrix(1.222445,0.006112,-0.001250,0.249997,0,0);-ms-transform:matrix(1.222445,0.006112,-0.001250,0.249997,0,0);-webkit-transform:matrix(1.222445,0.006112,-0.001250,0.249997,0,0);}
.m55_c00017{transform:matrix(1.274509,0.006373,-0.001250,0.249997,0,0);-ms-transform:matrix(1.274509,0.006373,-0.001250,0.249997,0,0);-webkit-transform:matrix(1.274509,0.006373,-0.001250,0.249997,0,0);}
.m69_c00017{transform:matrix(1.437887,0.007189,-0.001250,0.249997,0,0);-ms-transform:matrix(1.437887,0.007189,-0.001250,0.249997,0,0);-webkit-transform:matrix(1.437887,0.007189,-0.001250,0.249997,0,0);}
.m7b_c00017{transform:matrix(1.755248,0.008776,-0.001250,0.249997,0,0);-ms-transform:matrix(1.755248,0.008776,-0.001250,0.249997,0,0);-webkit-transform:matrix(1.755248,0.008776,-0.001250,0.249997,0,0);}
.mf9_c00017{transform:matrix(1.802250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.802250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.802250,0.000000,0.000000,0.250000,0,0);}
.m102_c00017{transform:matrix(2.049910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.049910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.049910,0.000000,0.000000,0.250000,0,0);}
.m81_c00017{transform:matrix(2.069899,0.010349,-0.001250,0.249997,0,0);-ms-transform:matrix(2.069899,0.010349,-0.001250,0.249997,0,0);-webkit-transform:matrix(2.069899,0.010349,-0.001250,0.249997,0,0);}
.m58_c00017{transform:matrix(2.275677,0.011378,-0.001250,0.249997,0,0);-ms-transform:matrix(2.275677,0.011378,-0.001250,0.249997,0,0);-webkit-transform:matrix(2.275677,0.011378,-0.001250,0.249997,0,0);}
.m74_c00017{transform:matrix(3.457692,0.017288,-0.001250,0.249997,0,0);-ms-transform:matrix(3.457692,0.017288,-0.001250,0.249997,0,0);-webkit-transform:matrix(3.457692,0.017288,-0.001250,0.249997,0,0);}
.m45_c00017{transform:matrix(4.761820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.761820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.761820,0.000000,0.000000,0.250000,0,0);}
.v0_c00017{vertical-align:0.000000px;}
.ls0_c00017{letter-spacing:0.000000px;}
.sc__c00017{text-shadow:none;}
.sc0_c00017{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__c00017{-webkit-text-stroke:0px transparent;}
.sc0_c00017{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00017{word-spacing:0.000000px;}
.fc0_c00017{color:transparent;}
.fsf_c00017{font-size:18.000000px;}
.fs10_c00017{font-size:24.000000px;}
.fsa_c00017{font-size:42.000525px;}
.fs6_c00017{font-size:48.000000px;}
.fs8_c00017{font-size:54.000000px;}
.fs7_c00017{font-size:60.000000px;}
.fsd_c00017{font-size:60.001080px;}
.fs4_c00017{font-size:66.000000px;}
.fse_c00017{font-size:66.001188px;}
.fs5_c00017{font-size:72.000900px;}
.fsc_c00017{font-size:72.001296px;}
.fs9_c00017{font-size:78.000975px;}
.fs1_c00017{font-size:84.000000px;}
.fsb_c00017{font-size:84.001050px;}
.fs2_c00017{font-size:102.000000px;}
.fs3_c00017{font-size:102.001275px;}
.fs0_c00017{font-size:258.000000px;}
.y0_c00017{bottom:0.000000px;}
.ye9_c00017{bottom:0.628500px;}
.ye8_c00017{bottom:6.657831px;}
.ye7_c00017{bottom:6.916677px;}
.ye6_c00017{bottom:7.083498px;}
.ye5_c00017{bottom:7.501797px;}
.ye4_c00017{bottom:7.802625px;}
.ye3_c00017{bottom:8.355183px;}
.ye2_c00017{bottom:8.957463px;}
.ye1_c00017{bottom:9.359865px;}
.ye0_c00017{bottom:9.581265px;}
.ydf_c00017{bottom:9.789177px;}
.yde_c00017{bottom:10.008408px;}
.ydd_c00017{bottom:10.529043px;}
.ydc_c00017{bottom:24.955116px;}
.ydb_c00017{bottom:25.342278px;}
.yda_c00017{bottom:25.470303px;}
.yd9_c00017{bottom:25.622583px;}
.yd8_c00017{bottom:26.064825px;}
.yd7_c00017{bottom:26.492532px;}
.yd6_c00017{bottom:26.631852px;}
.yd5_c00017{bottom:26.805210px;}
.yd4_c00017{bottom:27.056229px;}
.yd3_c00017{bottom:27.234501px;}
.yd2_c00017{bottom:27.519612px;}
.yd1_c00017{bottom:27.676761px;}
.yd0_c00017{bottom:27.935970px;}
.ycf_c00017{bottom:28.078530px;}
.yce_c00017{bottom:41.334966px;}
.ycd_c00017{bottom:42.036417px;}
.ycc_c00017{bottom:42.421689px;}
.ycb_c00017{bottom:42.618123px;}
.yca_c00017{bottom:42.980607px;}
.yc9_c00017{bottom:43.204176px;}
.yc8_c00017{bottom:43.373034px;}
.yc7_c00017{bottom:43.605954px;}
.yc6_c00017{bottom:44.353053px;}
.yc5_c00017{bottom:44.541297px;}
.yc4_c00017{bottom:44.720811px;}
.yc3_c00017{bottom:44.911881px;}
.yc2_c00017{bottom:45.359109px;}
.yc1_c00017{bottom:59.014464px;}
.yc0_c00017{bottom:60.054774px;}
.ybf_c00017{bottom:60.440325px;}
.ybe_c00017{bottom:60.568332px;}
.ybd_c00017{bottom:60.720603px;}
.ybc_c00017{bottom:61.166094px;}
.ybb_c00017{bottom:61.590561px;}
.yba_c00017{bottom:61.729881px;}
.yb9_c00017{bottom:61.903239px;}
.yb8_c00017{bottom:62.149344px;}
.yb7_c00017{bottom:62.332530px;}
.yb6_c00017{bottom:62.617704px;}
.yb5_c00017{bottom:62.776410px;}
.yb4_c00017{bottom:63.037239px;}
.yb3_c00017{bottom:63.179808px;}
.yb2_c00017{bottom:77.140584px;}
.yb1_c00017{bottom:78.413625px;}
.yb0_c00017{bottom:79.536591px;}
.yaf_c00017{bottom:79.731288px;}
.yae_c00017{bottom:79.821702px;}
.yad_c00017{bottom:80.014374px;}
.yac_c00017{bottom:80.460000px;}
.yab_c00017{bottom:95.223123px;}
.yaa_c00017{bottom:95.671116px;}
.ya9_c00017{bottom:95.993787px;}
.ya8_c00017{bottom:96.102414px;}
.ya7_c00017{bottom:96.240900px;}
.ya6_c00017{bottom:96.589851px;}
.ya5_c00017{bottom:96.942081px;}
.ya4_c00017{bottom:97.055634px;}
.ya3_c00017{bottom:97.200492px;}
.ya2_c00017{bottom:97.409493px;}
.ya1_c00017{bottom:97.562772px;}
.ya0_c00017{bottom:97.799910px;}
.y9f_c00017{bottom:97.931532px;}
.y9e_c00017{bottom:98.160321px;}
.y9d_c00017{bottom:98.275530px;}
.y9c_c00017{bottom:112.790055px;}
.y9b_c00017{bottom:112.852116px;}
.y9a_c00017{bottom:113.273988px;}
.y99_c00017{bottom:113.395824px;}
.y98_c00017{bottom:113.784438px;}
.y97_c00017{bottom:113.924409px;}
.y96_c00017{bottom:114.187782px;}
.y95_c00017{bottom:114.276711px;}
.y94_c00017{bottom:114.601002px;}
.y93_c00017{bottom:114.765552px;}
.y92_c00017{bottom:114.917100px;}
.y91_c00017{bottom:115.218333px;}
.y90_c00017{bottom:115.312140px;}
.y8f_c00017{bottom:115.427340px;}
.y8e_c00017{bottom:115.558962px;}
.y8d_c00017{bottom:130.693419px;}
.y8c_c00017{bottom:131.238099px;}
.y8b_c00017{bottom:131.398164px;}
.y8a_c00017{bottom:131.625000px;}
.y89_c00017{bottom:131.841918px;}
.y88_c00017{bottom:132.063984px;}
.y87_c00017{bottom:132.417126px;}
.y86_c00017{bottom:132.655284px;}
.y85_c00017{bottom:132.791373px;}
.y84_c00017{bottom:133.507422px;}
.y83_c00017{bottom:133.650000px;}
.y82_c00017{bottom:147.223566px;}
.y81_c00017{bottom:147.962619px;}
.y80_c00017{bottom:148.289562px;}
.y7f_c00017{bottom:148.532571px;}
.y7e_c00017{bottom:148.869828px;}
.y7d_c00017{bottom:149.062320px;}
.y7c_c00017{bottom:149.161500px;}
.y7b_c00017{bottom:149.488398px;}
.y7a_c00017{bottom:149.922558px;}
.y79_c00017{bottom:150.368400px;}
.y78_c00017{bottom:150.606198px;}
.y77_c00017{bottom:150.967764px;}
.y76_c00017{bottom:151.184862px;}
.y75_c00017{bottom:151.470000px;}
.y74_c00017{bottom:165.863850px;}
.y73_c00017{bottom:166.580497px;}
.y72_c00017{bottom:166.690170px;}
.y71_c00017{bottom:166.938525px;}
.y70_c00017{bottom:167.285535px;}
.y6f_c00017{bottom:167.506935px;}
.y6e_c00017{bottom:167.645985px;}
.y6d_c00017{bottom:167.810685px;}
.y6c_c00017{bottom:168.455887px;}
.y6b_c00017{bottom:168.748845px;}
.y6a_c00017{bottom:182.882587px;}
.y69_c00017{bottom:183.749947px;}
.y68_c00017{bottom:184.190745px;}
.y67_c00017{bottom:184.974585px;}
.y66_c00017{bottom:186.298290px;}
.y65_c00017{bottom:200.433075px;}
.y64_c00017{bottom:201.154890px;}
.y63_c00017{bottom:201.301740px;}
.y62_c00017{bottom:201.656318px;}
.y61_c00017{bottom:201.882818px;}
.y60_c00017{bottom:202.178010px;}
.y5f_c00017{bottom:203.542575px;}
.y5e_c00017{bottom:203.847390px;}
.y5d_c00017{bottom:218.554635px;}
.y5c_c00017{bottom:219.030968px;}
.y5b_c00017{bottom:219.117375px;}
.y5a_c00017{bottom:219.248648px;}
.y59_c00017{bottom:219.371498px;}
.y58_c00017{bottom:219.579278px;}
.y57_c00017{bottom:219.753570px;}
.y56_c00017{bottom:219.983070px;}
.y55_c00017{bottom:220.385362px;}
.y54_c00017{bottom:221.397780px;}
.y53_c00017{bottom:235.836623px;}
.y52_c00017{bottom:236.557268px;}
.y51_c00017{bottom:237.516053px;}
.y50_c00017{bottom:237.696690px;}
.y4f_c00017{bottom:238.123298px;}
.y4e_c00017{bottom:238.678365px;}
.y4d_c00017{bottom:253.586415px;}
.y4c_c00017{bottom:253.977660px;}
.y4b_c00017{bottom:254.290868px;}
.y4a_c00017{bottom:254.670473px;}
.y49_c00017{bottom:255.653048px;}
.y48_c00017{bottom:256.498357px;}
.y47_c00017{bottom:271.477455px;}
.y46_c00017{bottom:271.775602px;}
.y45_c00017{bottom:272.194110px;}
.y44_c00017{bottom:272.252168px;}
.y43_c00017{bottom:273.495653px;}
.y42_c00017{bottom:274.319258px;}
.y41_c00017{bottom:289.252485px;}
.y40_c00017{bottom:289.746210px;}
.y3f_c00017{bottom:290.290733px;}
.y3e_c00017{bottom:290.824883px;}
.y3d_c00017{bottom:291.402818px;}
.y3c_c00017{bottom:291.870000px;}
.y3b_c00017{bottom:306.505500px;}
.y3a_c00017{bottom:306.655500px;}
.y39_c00017{bottom:306.778500px;}
.y38_c00017{bottom:307.138500px;}
.y37_c00017{bottom:307.413000px;}
.y36_c00017{bottom:307.450500px;}
.y35_c00017{bottom:307.654500px;}
.y34_c00017{bottom:307.702500px;}
.y33_c00017{bottom:307.927500px;}
.y32_c00017{bottom:308.316000px;}
.y31_c00017{bottom:309.145500px;}
.y30_c00017{bottom:309.420000px;}
.y2f_c00017{bottom:325.824000px;}
.y2e_c00017{bottom:358.585875px;}
.y2d_c00017{bottom:358.708380px;}
.y2c_c00017{bottom:358.796122px;}
.y2b_c00017{bottom:359.134028px;}
.y2a_c00017{bottom:359.264580px;}
.y29_c00017{bottom:359.720040px;}
.y28_c00017{bottom:359.841052px;}
.y27_c00017{bottom:360.058402px;}
.y26_c00017{bottom:360.393210px;}
.y25_c00017{bottom:360.564667px;}
.y24_c00017{bottom:360.651060px;}
.y23_c00017{bottom:361.014217px;}
.y22_c00017{bottom:361.292348px;}
.y21_c00017{bottom:361.419218px;}
.y20_c00017{bottom:361.800000px;}
.y1f_c00017{bottom:401.371500px;}
.y1e_c00017{bottom:434.770268px;}
.y1d_c00017{bottom:435.185963px;}
.y1c_c00017{bottom:435.412778px;}
.y1b_c00017{bottom:435.538320px;}
.y1a_c00017{bottom:435.613770px;}
.y19_c00017{bottom:436.263278px;}
.y18_c00017{bottom:436.525178px;}
.y17_c00017{bottom:436.630493px;}
.y16_c00017{bottom:436.872000px;}
.y15_c00017{bottom:437.243400px;}
.y14_c00017{bottom:437.400000px;}
.y13_c00017{bottom:471.063000px;}
.y12_c00017{bottom:471.312000px;}
.y11_c00017{bottom:471.424500px;}
.y10_c00017{bottom:471.570000px;}
.yf_c00017{bottom:472.044000px;}
.ye_c00017{bottom:472.111500px;}
.yd_c00017{bottom:472.348500px;}
.yc_c00017{bottom:472.486500px;}
.yb_c00017{bottom:472.884000px;}
.ya_c00017{bottom:473.031000px;}
.y9_c00017{bottom:473.178000px;}
.y8_c00017{bottom:473.319000px;}
.y7_c00017{bottom:473.703000px;}
.y6_c00017{bottom:473.932500px;}
.y5_c00017{bottom:474.120000px;}
.y4_c00017{bottom:474.637500px;}
.y3_c00017{bottom:474.741000px;}
.y2_c00017{bottom:510.610500px;}
.y1_c00017{bottom:543.025500px;}
.h11_c00017{height:18.000000px;}
.h12_c00017{height:24.000000px;}
.hc_c00017{height:42.000525px;}
.h8_c00017{height:48.000000px;}
.ha_c00017{height:54.000000px;}
.h9_c00017{height:60.000000px;}
.hf_c00017{height:60.001080px;}
.h6_c00017{height:66.000000px;}
.h10_c00017{height:66.001188px;}
.h7_c00017{height:72.000900px;}
.he_c00017{height:72.001296px;}
.hb_c00017{height:78.000975px;}
.h3_c00017{height:84.000000px;}
.hd_c00017{height:84.001050px;}
.h4_c00017{height:102.000000px;}
.h5_c00017{height:102.001275px;}
.h2_c00017{height:258.000000px;}
.h1_c00017{height:693.750000px;}
.h0_c00017{height:693.900000px;}
.w1_c00017{width:950.250000px;}
.w0_c00017{width:950.400000px;}
.x0_c00017{left:0.000000px;}
.x7_c00017{left:84.718500px;}
.x8_c00017{left:101.947500px;}
.x18_c00017{left:115.737000px;}
.x68_c00017{left:135.472500px;}
.x19_c00017{left:147.057000px;}
.x52_c00017{left:154.114275px;}
.x23_c00017{left:157.140000px;}
.x62_c00017{left:158.978160px;}
.x4b_c00017{left:168.480000px;}
.x7f_c00017{left:182.196906px;}
.x40_c00017{left:183.271500px;}
.x9_c00017{left:188.113500px;}
.x2e_c00017{left:191.367000px;}
.x1_c00017{left:195.750000px;}
.x3_c00017{left:199.260000px;}
.x24_c00017{left:201.150000px;}
.x9e_c00017{left:205.470000px;}
.x74_c00017{left:209.464986px;}
.x2f_c00017{left:216.741000px;}
.xa_c00017{left:219.337500px;}
.x1a_c00017{left:221.337000px;}
.x8a_c00017{left:225.652938px;}
.x80_c00017{left:227.828676px;}
.x25_c00017{left:229.500000px;}
.x75_c00017{left:232.415121px;}
.x41_c00017{left:238.078500px;}
.x76_c00017{left:251.049729px;}
.x8b_c00017{left:252.103938px;}
.x81_c00017{left:254.015829px;}
.xb_c00017{left:257.469000px;}
.x26_c00017{left:260.550000px;}
.x4c_c00017{left:262.399500px;}
.x9f_c00017{left:266.490000px;}
.x1b_c00017{left:269.638500px;}
.x30_c00017{left:272.367000px;}
.x56_c00017{left:279.437535px;}
.x3a_c00017{left:282.420000px;}
.x86_c00017{left:289.375500px;}
.x1c_c00017{left:290.701500px;}
.x8c_c00017{left:299.632938px;}
.x6f_c00017{left:302.067000px;}
.x87_c00017{left:304.444500px;}
.x77_c00017{left:311.255589px;}
.x69_c00017{left:319.072500px;}
.xc_c00017{left:321.459000px;}
.x4_c00017{left:322.920000px;}
.x70_c00017{left:324.748500px;}
.x95_c00017{left:328.805838px;}
.x8d_c00017{left:330.163938px;}
.x50_c00017{left:333.144735px;}
.x88_c00017{left:336.894000px;}
.x78_c00017{left:341.513769px;}
.x1d_c00017{left:343.081500px;}
.xd_c00017{left:344.947500px;}
.x63_c00017{left:346.610160px;}
.x90_c00017{left:349.856373px;}
.x31_c00017{left:362.277000px;}
.x57_c00017{left:364.759035px;}
.xe_c00017{left:369.517500px;}
.x59_c00017{left:370.638127px;}
.x5_c00017{left:372.330000px;}
.x3b_c00017{left:374.760000px;}
.x4d_c00017{left:377.986500px;}
.x64_c00017{left:379.550160px;}
.x27_c00017{left:383.400000px;}
.x61_c00017{left:388.517025px;}
.xf_c00017{left:394.087500px;}
.x32_c00017{left:396.568500px;}
.x3c_c00017{left:400.140000px;}
.x42_c00017{left:403.849500px;}
.x65_c00017{left:407.360160px;}
.x28_c00017{left:414.180000px;}
.x71_c00017{left:423.298500px;}
.x9a_c00017{left:424.440000px;}
.x82_c00017{left:425.738364px;}
.x79_c00017{left:439.237854px;}
.x5e_c00017{left:446.219482px;}
.x5a_c00017{left:451.096628px;}
.x7a_c00017{left:457.059462px;}
.x10_c00017{left:460.236000px;}
.x33_c00017{left:463.530000px;}
.x6a_c00017{left:465.739500px;}
.x1e_c00017{left:472.983000px;}
.x91_c00017{left:474.372873px;}
.x43_c00017{left:481.608000px;}
.x11_c00017{left:483.184500px;}
.x4e_c00017{left:484.816500px;}
.x1f_c00017{left:488.073000px;}
.x29_c00017{left:491.130000px;}
.x8e_c00017{left:494.038938px;}
.x5f_c00017{left:495.357735px;}
.x5b_c00017{left:496.996627px;}
.x2_c00017{left:506.250000px;}
.x7b_c00017{left:509.705277px;}
.x20_c00017{left:513.181500px;}
.x6_c00017{left:517.320000px;}
.x53_c00017{left:519.691275px;}
.x66_c00017{left:521.042160px;}
.x12_c00017{left:522.640500px;}
.x89_c00017{left:524.055000px;}
.x9b_c00017{left:525.960000px;}
.x3d_c00017{left:527.040000px;}
.x34_c00017{left:531.202500px;}
.x13_c00017{left:533.944500px;}
.x44_c00017{left:536.475000px;}
.x7c_c00017{left:537.783948px;}
.x92_c00017{left:541.335873px;}
.x9c_c00017{left:548.370000px;}
.x2a_c00017{left:550.800000px;}
.x21_c00017{left:558.544500px;}
.x72_c00017{left:560.946000px;}
.x83_c00017{left:565.852701px;}
.x96_c00017{left:567.746838px;}
.x6b_c00017{left:568.834500px;}
.x67_c00017{left:570.713160px;}
.x98_c00017{left:572.383089px;}
.x3e_c00017{left:574.290000px;}
.x45_c00017{left:577.192500px;}
.x93_c00017{left:578.597373px;}
.x9d_c00017{left:580.770000px;}
.x2b_c00017{left:582.120000px;}
.x46_c00017{left:584.806500px;}
.x58_c00017{left:592.643535px;}
.x4f_c00017{left:593.721000px;}
.x54_c00017{left:595.612275px;}
.x5c_c00017{left:597.981127px;}
.x14_c00017{left:613.054500px;}
.x97_c00017{left:614.464338px;}
.x7d_c00017{left:615.553416px;}
.x60_c00017{left:616.942635px;}
.x35_c00017{left:622.294500px;}
.x5d_c00017{left:624.235627px;}
.x15_c00017{left:637.354500px;}
.x47_c00017{left:639.804000px;}
.x22_c00017{left:641.683500px;}
.x36_c00017{left:648.405000px;}
.x73_c00017{left:651.726000px;}
.x16_c00017{left:656.218500px;}
.x55_c00017{left:658.253775px;}
.x6c_c00017{left:665.545500px;}
.x94_c00017{left:671.750373px;}
.x99_c00017{left:674.986968px;}
.x51_c00017{left:677.154735px;}
.x84_c00017{left:679.817385px;}
.x2c_c00017{left:692.280000px;}
.x17_c00017{left:697.834500px;}
.x48_c00017{left:711.894000px;}
.x3f_c00017{left:714.960000px;}
.x37_c00017{left:715.986000px;}
.x6d_c00017{left:720.036000px;}
.x7e_c00017{left:724.172064px;}
.x2d_c00017{left:730.080000px;}
.x38_c00017{left:733.534500px;}
.x49_c00017{left:736.446000px;}
.x39_c00017{left:758.035500px;}
.x4a_c00017{left:766.443000px;}
.x85_c00017{left:769.483425px;}
.x6e_c00017{left:843.211500px;}
.x8f_c00017{left:852.643938px;}
@media print{
.v0_c00017{vertical-align:0.000000pt;}
.ls0_c00017{letter-spacing:0.000000pt;}
.ws0_c00017{word-spacing:0.000000pt;}
.fsf_c00017{font-size:16.000000pt;}
.fs10_c00017{font-size:21.333333pt;}
.fsa_c00017{font-size:37.333800pt;}
.fs6_c00017{font-size:42.666667pt;}
.fs8_c00017{font-size:48.000000pt;}
.fs7_c00017{font-size:53.333333pt;}
.fsd_c00017{font-size:53.334293pt;}
.fs4_c00017{font-size:58.666667pt;}
.fse_c00017{font-size:58.667723pt;}
.fs5_c00017{font-size:64.000800pt;}
.fsc_c00017{font-size:64.001152pt;}
.fs9_c00017{font-size:69.334200pt;}
.fs1_c00017{font-size:74.666667pt;}
.fsb_c00017{font-size:74.667600pt;}
.fs2_c00017{font-size:90.666667pt;}
.fs3_c00017{font-size:90.667800pt;}
.fs0_c00017{font-size:229.333333pt;}
.y0_c00017{bottom:0.000000pt;}
.ye9_c00017{bottom:0.558667pt;}
.ye8_c00017{bottom:5.918072pt;}
.ye7_c00017{bottom:6.148157pt;}
.ye6_c00017{bottom:6.296443pt;}
.ye5_c00017{bottom:6.668264pt;}
.ye4_c00017{bottom:6.935667pt;}
.ye3_c00017{bottom:7.426829pt;}
.ye2_c00017{bottom:7.962189pt;}
.ye1_c00017{bottom:8.319880pt;}
.ye0_c00017{bottom:8.516680pt;}
.ydf_c00017{bottom:8.701491pt;}
.yde_c00017{bottom:8.896363pt;}
.ydd_c00017{bottom:9.359149pt;}
.ydc_c00017{bottom:22.182325pt;}
.ydb_c00017{bottom:22.526469pt;}
.yda_c00017{bottom:22.640269pt;}
.yd9_c00017{bottom:22.775629pt;}
.yd8_c00017{bottom:23.168733pt;}
.yd7_c00017{bottom:23.548917pt;}
.yd6_c00017{bottom:23.672757pt;}
.yd5_c00017{bottom:23.826853pt;}
.yd4_c00017{bottom:24.049981pt;}
.yd3_c00017{bottom:24.208445pt;}
.yd2_c00017{bottom:24.461877pt;}
.yd1_c00017{bottom:24.601565pt;}
.yd0_c00017{bottom:24.831973pt;}
.ycf_c00017{bottom:24.958693pt;}
.yce_c00017{bottom:36.742192pt;}
.ycd_c00017{bottom:37.365704pt;}
.ycc_c00017{bottom:37.708168pt;}
.ycb_c00017{bottom:37.882776pt;}
.yca_c00017{bottom:38.204984pt;}
.yc9_c00017{bottom:38.403712pt;}
.yc8_c00017{bottom:38.553808pt;}
.yc7_c00017{bottom:38.760848pt;}
.yc6_c00017{bottom:39.424936pt;}
.yc5_c00017{bottom:39.592264pt;}
.yc4_c00017{bottom:39.751832pt;}
.yc3_c00017{bottom:39.921672pt;}
.yc2_c00017{bottom:40.319208pt;}
.yc1_c00017{bottom:52.457301pt;}
.yc0_c00017{bottom:53.382021pt;}
.ybf_c00017{bottom:53.724733pt;}
.ybe_c00017{bottom:53.838517pt;}
.ybd_c00017{bottom:53.973869pt;}
.ybc_c00017{bottom:54.369861pt;}
.ybb_c00017{bottom:54.747165pt;}
.yba_c00017{bottom:54.871005pt;}
.yb9_c00017{bottom:55.025101pt;}
.yb8_c00017{bottom:55.243861pt;}
.yb7_c00017{bottom:55.406693pt;}
.yb6_c00017{bottom:55.660181pt;}
.yb5_c00017{bottom:55.801253pt;}
.yb4_c00017{bottom:56.033101pt;}
.yb3_c00017{bottom:56.159829pt;}
.yb2_c00017{bottom:68.569408pt;}
.yb1_c00017{bottom:69.701000pt;}
.yb0_c00017{bottom:70.699192pt;}
.yaf_c00017{bottom:70.872256pt;}
.yae_c00017{bottom:70.952624pt;}
.yad_c00017{bottom:71.123888pt;}
.yac_c00017{bottom:71.520000pt;}
.yab_c00017{bottom:84.642776pt;}
.yaa_c00017{bottom:85.040992pt;}
.ya9_c00017{bottom:85.327811pt;}
.ya8_c00017{bottom:85.424368pt;}
.ya7_c00017{bottom:85.547467pt;}
.ya6_c00017{bottom:85.857645pt;}
.ya5_c00017{bottom:86.170739pt;}
.ya4_c00017{bottom:86.271675pt;}
.ya3_c00017{bottom:86.400437pt;}
.ya2_c00017{bottom:86.586216pt;}
.ya1_c00017{bottom:86.722464pt;}
.ya0_c00017{bottom:86.933253pt;}
.y9f_c00017{bottom:87.050251pt;}
.y9e_c00017{bottom:87.253619pt;}
.y9d_c00017{bottom:87.356027pt;}
.y9c_c00017{bottom:100.257827pt;}
.y9b_c00017{bottom:100.312992pt;}
.y9a_c00017{bottom:100.687989pt;}
.y99_c00017{bottom:100.796288pt;}
.y98_c00017{bottom:101.141723pt;}
.y97_c00017{bottom:101.266141pt;}
.y96_c00017{bottom:101.500251pt;}
.y95_c00017{bottom:101.579299pt;}
.y94_c00017{bottom:101.867557pt;}
.y93_c00017{bottom:102.013824pt;}
.y92_c00017{bottom:102.148533pt;}
.y91_c00017{bottom:102.416296pt;}
.y90_c00017{bottom:102.499680pt;}
.y8f_c00017{bottom:102.602080pt;}
.y8e_c00017{bottom:102.719077pt;}
.y8d_c00017{bottom:116.171928pt;}
.y8c_c00017{bottom:116.656088pt;}
.y8b_c00017{bottom:116.798368pt;}
.y8a_c00017{bottom:117.000000pt;}
.y89_c00017{bottom:117.192816pt;}
.y88_c00017{bottom:117.390208pt;}
.y87_c00017{bottom:117.704112pt;}
.y86_c00017{bottom:117.915808pt;}
.y85_c00017{bottom:118.036776pt;}
.y84_c00017{bottom:118.673264pt;}
.y83_c00017{bottom:118.800000pt;}
.y82_c00017{bottom:130.865392pt;}
.y81_c00017{bottom:131.522328pt;}
.y80_c00017{bottom:131.812944pt;}
.y7f_c00017{bottom:132.028952pt;}
.y7e_c00017{bottom:132.328736pt;}
.y7d_c00017{bottom:132.499840pt;}
.y7c_c00017{bottom:132.588000pt;}
.y7b_c00017{bottom:132.878576pt;}
.y7a_c00017{bottom:133.264496pt;}
.y79_c00017{bottom:133.660800pt;}
.y78_c00017{bottom:133.872176pt;}
.y77_c00017{bottom:134.193568pt;}
.y76_c00017{bottom:134.386544pt;}
.y75_c00017{bottom:134.640000pt;}
.y74_c00017{bottom:147.434533pt;}
.y73_c00017{bottom:148.071553pt;}
.y72_c00017{bottom:148.169040pt;}
.y71_c00017{bottom:148.389800pt;}
.y70_c00017{bottom:148.698253pt;}
.y6f_c00017{bottom:148.895053pt;}
.y6e_c00017{bottom:149.018653pt;}
.y6d_c00017{bottom:149.165053pt;}
.y6c_c00017{bottom:149.738567pt;}
.y6b_c00017{bottom:149.998973pt;}
.y6a_c00017{bottom:162.562300pt;}
.y69_c00017{bottom:163.333287pt;}
.y68_c00017{bottom:163.725107pt;}
.y67_c00017{bottom:164.421853pt;}
.y66_c00017{bottom:165.598480pt;}
.y65_c00017{bottom:178.162733pt;}
.y64_c00017{bottom:178.804347pt;}
.y63_c00017{bottom:178.934880pt;}
.y62_c00017{bottom:179.250060pt;}
.y61_c00017{bottom:179.451393pt;}
.y60_c00017{bottom:179.713787pt;}
.y5f_c00017{bottom:180.926733pt;}
.y5e_c00017{bottom:181.197680pt;}
.y5d_c00017{bottom:194.270787pt;}
.y5c_c00017{bottom:194.694193pt;}
.y5b_c00017{bottom:194.771000pt;}
.y5a_c00017{bottom:194.887687pt;}
.y59_c00017{bottom:194.996887pt;}
.y58_c00017{bottom:195.181580pt;}
.y57_c00017{bottom:195.336507pt;}
.y56_c00017{bottom:195.540507pt;}
.y55_c00017{bottom:195.898100pt;}
.y54_c00017{bottom:196.798027pt;}
.y53_c00017{bottom:209.632553pt;}
.y52_c00017{bottom:210.273127pt;}
.y51_c00017{bottom:211.125380pt;}
.y50_c00017{bottom:211.285947pt;}
.y4f_c00017{bottom:211.665153pt;}
.y4e_c00017{bottom:212.158547pt;}
.y4d_c00017{bottom:225.410147pt;}
.y4c_c00017{bottom:225.757920pt;}
.y4b_c00017{bottom:226.036327pt;}
.y4a_c00017{bottom:226.373753pt;}
.y49_c00017{bottom:227.247153pt;}
.y48_c00017{bottom:227.998540pt;}
.y47_c00017{bottom:241.313293pt;}
.y46_c00017{bottom:241.578313pt;}
.y45_c00017{bottom:241.950320pt;}
.y44_c00017{bottom:242.001927pt;}
.y43_c00017{bottom:243.107247pt;}
.y42_c00017{bottom:243.839340pt;}
.y41_c00017{bottom:257.113320pt;}
.y40_c00017{bottom:257.552187pt;}
.y3f_c00017{bottom:258.036207pt;}
.y3e_c00017{bottom:258.511007pt;}
.y3d_c00017{bottom:259.024727pt;}
.y3c_c00017{bottom:259.440000pt;}
.y3b_c00017{bottom:272.449333pt;}
.y3a_c00017{bottom:272.582667pt;}
.y39_c00017{bottom:272.692000pt;}
.y38_c00017{bottom:273.012000pt;}
.y37_c00017{bottom:273.256000pt;}
.y36_c00017{bottom:273.289333pt;}
.y35_c00017{bottom:273.470667pt;}
.y34_c00017{bottom:273.513333pt;}
.y33_c00017{bottom:273.713333pt;}
.y32_c00017{bottom:274.058667pt;}
.y31_c00017{bottom:274.796000pt;}
.y30_c00017{bottom:275.040000pt;}
.y2f_c00017{bottom:289.621333pt;}
.y2e_c00017{bottom:318.743000pt;}
.y2d_c00017{bottom:318.851893pt;}
.y2c_c00017{bottom:318.929887pt;}
.y2b_c00017{bottom:319.230247pt;}
.y2a_c00017{bottom:319.346293pt;}
.y29_c00017{bottom:319.751147pt;}
.y28_c00017{bottom:319.858713pt;}
.y27_c00017{bottom:320.051913pt;}
.y26_c00017{bottom:320.349520pt;}
.y25_c00017{bottom:320.501927pt;}
.y24_c00017{bottom:320.578720pt;}
.y23_c00017{bottom:320.901527pt;}
.y22_c00017{bottom:321.148753pt;}
.y21_c00017{bottom:321.261527pt;}
.y20_c00017{bottom:321.600000pt;}
.y1f_c00017{bottom:356.774667pt;}
.y1e_c00017{bottom:386.462460pt;}
.y1d_c00017{bottom:386.831967pt;}
.y1c_c00017{bottom:387.033580pt;}
.y1b_c00017{bottom:387.145173pt;}
.y1a_c00017{bottom:387.212240pt;}
.y19_c00017{bottom:387.789580pt;}
.y18_c00017{bottom:388.022380pt;}
.y17_c00017{bottom:388.115993pt;}
.y16_c00017{bottom:388.330667pt;}
.y15_c00017{bottom:388.660800pt;}
.y14_c00017{bottom:388.800000pt;}
.y13_c00017{bottom:418.722667pt;}
.y12_c00017{bottom:418.944000pt;}
.y11_c00017{bottom:419.044000pt;}
.y10_c00017{bottom:419.173333pt;}
.yf_c00017{bottom:419.594667pt;}
.ye_c00017{bottom:419.654667pt;}
.yd_c00017{bottom:419.865333pt;}
.yc_c00017{bottom:419.988000pt;}
.yb_c00017{bottom:420.341333pt;}
.ya_c00017{bottom:420.472000pt;}
.y9_c00017{bottom:420.602667pt;}
.y8_c00017{bottom:420.728000pt;}
.y7_c00017{bottom:421.069333pt;}
.y6_c00017{bottom:421.273333pt;}
.y5_c00017{bottom:421.440000pt;}
.y4_c00017{bottom:421.900000pt;}
.y3_c00017{bottom:421.992000pt;}
.y2_c00017{bottom:453.876000pt;}
.y1_c00017{bottom:482.689333pt;}
.h11_c00017{height:16.000000pt;}
.h12_c00017{height:21.333333pt;}
.hc_c00017{height:37.333800pt;}
.h8_c00017{height:42.666667pt;}
.ha_c00017{height:48.000000pt;}
.h9_c00017{height:53.333333pt;}
.hf_c00017{height:53.334293pt;}
.h6_c00017{height:58.666667pt;}
.h10_c00017{height:58.667723pt;}
.h7_c00017{height:64.000800pt;}
.he_c00017{height:64.001152pt;}
.hb_c00017{height:69.334200pt;}
.h3_c00017{height:74.666667pt;}
.hd_c00017{height:74.667600pt;}
.h4_c00017{height:90.666667pt;}
.h5_c00017{height:90.667800pt;}
.h2_c00017{height:229.333333pt;}
.h1_c00017{height:616.666667pt;}
.h0_c00017{height:616.800000pt;}
.w1_c00017{width:844.666667pt;}
.w0_c00017{width:844.800000pt;}
.x0_c00017{left:0.000000pt;}
.x7_c00017{left:75.305333pt;}
.x8_c00017{left:90.620000pt;}
.x18_c00017{left:102.877333pt;}
.x68_c00017{left:120.420000pt;}
.x19_c00017{left:130.717333pt;}
.x52_c00017{left:136.990467pt;}
.x23_c00017{left:139.680000pt;}
.x62_c00017{left:141.313920pt;}
.x4b_c00017{left:149.760000pt;}
.x7f_c00017{left:161.952805pt;}
.x40_c00017{left:162.908000pt;}
.x9_c00017{left:167.212000pt;}
.x2e_c00017{left:170.104000pt;}
.x1_c00017{left:174.000000pt;}
.x3_c00017{left:177.120000pt;}
.x24_c00017{left:178.800000pt;}
.x9e_c00017{left:182.640000pt;}
.x74_c00017{left:186.191099pt;}
.x2f_c00017{left:192.658667pt;}
.xa_c00017{left:194.966667pt;}
.x1a_c00017{left:196.744000pt;}
.x8a_c00017{left:200.580389pt;}
.x80_c00017{left:202.514379pt;}
.x25_c00017{left:204.000000pt;}
.x75_c00017{left:206.591219pt;}
.x41_c00017{left:211.625333pt;}
.x76_c00017{left:223.155315pt;}
.x8b_c00017{left:224.092389pt;}
.x81_c00017{left:225.791848pt;}
.xb_c00017{left:228.861333pt;}
.x26_c00017{left:231.600000pt;}
.x4c_c00017{left:233.244000pt;}
.x9f_c00017{left:236.880000pt;}
.x1b_c00017{left:239.678667pt;}
.x30_c00017{left:242.104000pt;}
.x56_c00017{left:248.388920pt;}
.x3a_c00017{left:251.040000pt;}
.x86_c00017{left:257.222667pt;}
.x1c_c00017{left:258.401333pt;}
.x8c_c00017{left:266.340389pt;}
.x6f_c00017{left:268.504000pt;}
.x87_c00017{left:270.617333pt;}
.x77_c00017{left:276.671635pt;}
.x69_c00017{left:283.620000pt;}
.xc_c00017{left:285.741333pt;}
.x4_c00017{left:287.040000pt;}
.x70_c00017{left:288.665333pt;}
.x95_c00017{left:292.271856pt;}
.x8d_c00017{left:293.479056pt;}
.x50_c00017{left:296.128653pt;}
.x88_c00017{left:299.461333pt;}
.x78_c00017{left:303.567795pt;}
.x1d_c00017{left:304.961333pt;}
.xd_c00017{left:306.620000pt;}
.x63_c00017{left:308.097920pt;}
.x90_c00017{left:310.983443pt;}
.x31_c00017{left:322.024000pt;}
.x57_c00017{left:324.230253pt;}
.xe_c00017{left:328.460000pt;}
.x59_c00017{left:329.456113pt;}
.x5_c00017{left:330.960000pt;}
.x3b_c00017{left:333.120000pt;}
.x4d_c00017{left:335.988000pt;}
.x64_c00017{left:337.377920pt;}
.x27_c00017{left:340.800000pt;}
.x61_c00017{left:345.348467pt;}
.xf_c00017{left:350.300000pt;}
.x32_c00017{left:352.505333pt;}
.x3c_c00017{left:355.680000pt;}
.x42_c00017{left:358.977333pt;}
.x65_c00017{left:362.097920pt;}
.x28_c00017{left:368.160000pt;}
.x71_c00017{left:376.265333pt;}
.x9a_c00017{left:377.280000pt;}
.x82_c00017{left:378.434101pt;}
.x79_c00017{left:390.433648pt;}
.x5e_c00017{left:396.639540pt;}
.x5a_c00017{left:400.974780pt;}
.x7a_c00017{left:406.275077pt;}
.x10_c00017{left:409.098667pt;}
.x33_c00017{left:412.026667pt;}
.x6a_c00017{left:413.990667pt;}
.x1e_c00017{left:420.429333pt;}
.x91_c00017{left:421.664776pt;}
.x43_c00017{left:428.096000pt;}
.x11_c00017{left:429.497333pt;}
.x4e_c00017{left:430.948000pt;}
.x1f_c00017{left:433.842667pt;}
.x29_c00017{left:436.560000pt;}
.x8e_c00017{left:439.145723pt;}
.x5f_c00017{left:440.317987pt;}
.x5b_c00017{left:441.774780pt;}
.x2_c00017{left:450.000000pt;}
.x7b_c00017{left:453.071357pt;}
.x20_c00017{left:456.161333pt;}
.x6_c00017{left:459.840000pt;}
.x53_c00017{left:461.947800pt;}
.x66_c00017{left:463.148587pt;}
.x12_c00017{left:464.569333pt;}
.x89_c00017{left:465.826667pt;}
.x9b_c00017{left:467.520000pt;}
.x3d_c00017{left:468.480000pt;}
.x34_c00017{left:472.180000pt;}
.x13_c00017{left:474.617333pt;}
.x44_c00017{left:476.866667pt;}
.x7c_c00017{left:478.030176pt;}
.x92_c00017{left:481.187443pt;}
.x9c_c00017{left:487.440000pt;}
.x2a_c00017{left:489.600000pt;}
.x21_c00017{left:496.484000pt;}
.x72_c00017{left:498.618667pt;}
.x83_c00017{left:502.980179pt;}
.x96_c00017{left:504.663856pt;}
.x6b_c00017{left:505.630667pt;}
.x67_c00017{left:507.300587pt;}
.x98_c00017{left:508.784968pt;}
.x3e_c00017{left:510.480000pt;}
.x45_c00017{left:513.060000pt;}
.x93_c00017{left:514.308776pt;}
.x9d_c00017{left:516.240000pt;}
.x2b_c00017{left:517.440000pt;}
.x46_c00017{left:519.828000pt;}
.x58_c00017{left:526.794253pt;}
.x4f_c00017{left:527.752000pt;}
.x54_c00017{left:529.433133pt;}
.x5c_c00017{left:531.538780pt;}
.x14_c00017{left:544.937333pt;}
.x97_c00017{left:546.190523pt;}
.x7d_c00017{left:547.158592pt;}
.x60_c00017{left:548.393453pt;}
.x35_c00017{left:553.150667pt;}
.x5d_c00017{left:554.876113pt;}
.x15_c00017{left:566.537333pt;}
.x47_c00017{left:568.714667pt;}
.x22_c00017{left:570.385333pt;}
.x36_c00017{left:576.360000pt;}
.x73_c00017{left:579.312000pt;}
.x16_c00017{left:583.305333pt;}
.x55_c00017{left:585.114467pt;}
.x6c_c00017{left:591.596000pt;}
.x94_c00017{left:597.111443pt;}
.x99_c00017{left:599.988416pt;}
.x51_c00017{left:601.915320pt;}
.x84_c00017{left:604.282120pt;}
.x2c_c00017{left:615.360000pt;}
.x17_c00017{left:620.297333pt;}
.x48_c00017{left:632.794667pt;}
.x3f_c00017{left:635.520000pt;}
.x37_c00017{left:636.432000pt;}
.x6d_c00017{left:640.032000pt;}
.x7e_c00017{left:643.708501pt;}
.x2d_c00017{left:648.960000pt;}
.x38_c00017{left:652.030667pt;}
.x49_c00017{left:654.618667pt;}
.x39_c00017{left:673.809333pt;}
.x4a_c00017{left:681.282667pt;}
.x85_c00017{left:683.985267pt;}
.x6e_c00017{left:749.521333pt;}
.x8f_c00017{left:757.905723pt;}
}





/* 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_c00018 {
    display:none;
  }
  .loading-indicator_c00018.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00018 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_c00018 { 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_c00018" -> "#page-container .classname_c00018")
 */
.pf_c00018 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00018 { /* 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_c00018.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00018 { /* 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_c00018 { /* 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_c00018 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00018 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00018 {overflow:visible;}
  }
}
.c_c00018 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00018 { /* 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_c00018:after { /* webkit #35443 */
  content: '';
}
.t_c00018:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00018 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 */
}
.__c00018 { /* 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_c00018 { /* info for Javascript */
  display:none;
}
.l_c00018 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00018 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00018 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00018: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_c00018 {
    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_c00018.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00018.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_c00018 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00018{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00018;src:url('chunks/assets/font_b11a17f404e7258299fdf971.woff2')format("woff");}.ff1_c00018{font-family:ff1_c00018;line-height:1.000000;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;}
.m28_c00018{transform:matrix(0.012478,-0.000225,0.004499,0.249960,0,0);-ms-transform:matrix(0.012478,-0.000225,0.004499,0.249960,0,0);-webkit-transform:matrix(0.012478,-0.000225,0.004499,0.249960,0,0);}
.m38_c00018{transform:matrix(0.018177,-0.000545,0.007497,0.249888,0,0);-ms-transform:matrix(0.018177,-0.000545,0.007497,0.249888,0,0);-webkit-transform:matrix(0.018177,-0.000545,0.007497,0.249888,0,0);}
.m12_c00018{transform:matrix(0.018744,-0.000487,0.006498,0.249916,0,0);-ms-transform:matrix(0.018744,-0.000487,0.006498,0.249916,0,0);-webkit-transform:matrix(0.018744,-0.000487,0.006498,0.249916,0,0);}
.m0_c00018{transform:matrix(0.067080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.067080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.067080,0.000000,0.000000,0.250000,0,0);}
.m30_c00018{transform:matrix(0.074936,-0.002248,0.007497,0.249888,0,0);-ms-transform:matrix(0.074936,-0.002248,0.007497,0.249888,0,0);-webkit-transform:matrix(0.074936,-0.002248,0.007497,0.249888,0,0);}
.m3_c00018{transform:matrix(0.107871,-0.002913,0.006748,0.249909,0,0);-ms-transform:matrix(0.107871,-0.002913,0.006748,0.249909,0,0);-webkit-transform:matrix(0.107871,-0.002913,0.006748,0.249909,0,0);}
.m3f_c00018{transform:matrix(0.128611,-0.001929,0.003750,0.249972,0,0);-ms-transform:matrix(0.128611,-0.001929,0.003750,0.249972,0,0);-webkit-transform:matrix(0.128611,-0.001929,0.003750,0.249972,0,0);}
.m37_c00018{transform:matrix(0.131096,-0.003933,0.007497,0.249888,0,0);-ms-transform:matrix(0.131096,-0.003933,0.007497,0.249888,0,0);-webkit-transform:matrix(0.131096,-0.003933,0.007497,0.249888,0,0);}
.m2f_c00018{transform:matrix(0.132945,-0.003988,0.007497,0.249888,0,0);-ms-transform:matrix(0.132945,-0.003988,0.007497,0.249888,0,0);-webkit-transform:matrix(0.132945,-0.003988,0.007497,0.249888,0,0);}
.m29_c00018{transform:matrix(0.135378,-0.002437,0.004499,0.249960,0,0);-ms-transform:matrix(0.135378,-0.002437,0.004499,0.249960,0,0);-webkit-transform:matrix(0.135378,-0.002437,0.004499,0.249960,0,0);}
.m5_c00018{transform:matrix(0.148696,-0.004015,0.006748,0.249909,0,0);-ms-transform:matrix(0.148696,-0.004015,0.006748,0.249909,0,0);-webkit-transform:matrix(0.148696,-0.004015,0.006748,0.249909,0,0);}
.m6_c00018{transform:matrix(0.148831,-0.004018,0.006748,0.249909,0,0);-ms-transform:matrix(0.148831,-0.004018,0.006748,0.249909,0,0);-webkit-transform:matrix(0.148831,-0.004018,0.006748,0.249909,0,0);}
.m2_c00018{transform:matrix(0.154779,-0.004179,0.006748,0.249909,0,0);-ms-transform:matrix(0.154779,-0.004179,0.006748,0.249909,0,0);-webkit-transform:matrix(0.154779,-0.004179,0.006748,0.249909,0,0);}
.m4_c00018{transform:matrix(0.155383,-0.004195,0.006748,0.249909,0,0);-ms-transform:matrix(0.155383,-0.004195,0.006748,0.249909,0,0);-webkit-transform:matrix(0.155383,-0.004195,0.006748,0.249909,0,0);}
.m26_c00018{transform:matrix(0.156970,-0.002825,0.004499,0.249960,0,0);-ms-transform:matrix(0.156970,-0.002825,0.004499,0.249960,0,0);-webkit-transform:matrix(0.156970,-0.002825,0.004499,0.249960,0,0);}
.m42_c00018{transform:matrix(0.162792,-0.002442,0.003750,0.249972,0,0);-ms-transform:matrix(0.162792,-0.002442,0.003750,0.249972,0,0);-webkit-transform:matrix(0.162792,-0.002442,0.003750,0.249972,0,0);}
.m7_c00018{transform:matrix(0.169868,-0.004586,0.006748,0.249909,0,0);-ms-transform:matrix(0.169868,-0.004586,0.006748,0.249909,0,0);-webkit-transform:matrix(0.169868,-0.004586,0.006748,0.249909,0,0);}
.m3b_c00018{transform:matrix(0.177200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177200,0.000000,0.000000,0.250000,0,0);}
.m2e_c00018{transform:matrix(0.178010,-0.005340,0.007497,0.249888,0,0);-ms-transform:matrix(0.178010,-0.005340,0.007497,0.249888,0,0);-webkit-transform:matrix(0.178010,-0.005340,0.007497,0.249888,0,0);}
.m40_c00018{transform:matrix(0.178185,-0.002673,0.003750,0.249972,0,0);-ms-transform:matrix(0.178185,-0.002673,0.003750,0.249972,0,0);-webkit-transform:matrix(0.178185,-0.002673,0.003750,0.249972,0,0);}
.m9_c00018{transform:matrix(0.178645,-0.004823,0.006748,0.249909,0,0);-ms-transform:matrix(0.178645,-0.004823,0.006748,0.249909,0,0);-webkit-transform:matrix(0.178645,-0.004823,0.006748,0.249909,0,0);}
.m8_c00018{transform:matrix(0.185737,-0.005015,0.006748,0.249909,0,0);-ms-transform:matrix(0.185737,-0.005015,0.006748,0.249909,0,0);-webkit-transform:matrix(0.185737,-0.005015,0.006748,0.249909,0,0);}
.m2c_c00018{transform:matrix(0.187151,-0.005615,0.007497,0.249888,0,0);-ms-transform:matrix(0.187151,-0.005615,0.007497,0.249888,0,0);-webkit-transform:matrix(0.187151,-0.005615,0.007497,0.249888,0,0);}
.m39_c00018{transform:matrix(0.197640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197640,0.000000,0.000000,0.250000,0,0);}
.m2a_c00018{transform:matrix(0.208221,-0.006247,0.007497,0.249888,0,0);-ms-transform:matrix(0.208221,-0.006247,0.007497,0.249888,0,0);-webkit-transform:matrix(0.208221,-0.006247,0.007497,0.249888,0,0);}
.m3d_c00018{transform:matrix(0.225565,-0.003383,0.003750,0.249972,0,0);-ms-transform:matrix(0.225565,-0.003383,0.003750,0.249972,0,0);-webkit-transform:matrix(0.225565,-0.003383,0.003750,0.249972,0,0);}
.m2b_c00018{transform:matrix(0.240182,-0.007205,0.007497,0.249888,0,0);-ms-transform:matrix(0.240182,-0.007205,0.007497,0.249888,0,0);-webkit-transform:matrix(0.240182,-0.007205,0.007497,0.249888,0,0);}
.m2d_c00018{transform:matrix(0.243400,-0.007302,0.007497,0.249888,0,0);-ms-transform:matrix(0.243400,-0.007302,0.007497,0.249888,0,0);-webkit-transform:matrix(0.243400,-0.007302,0.007497,0.249888,0,0);}
.m16_c00018{transform:matrix(0.245627,-0.006386,0.006498,0.249916,0,0);-ms-transform:matrix(0.245627,-0.006386,0.006498,0.249916,0,0);-webkit-transform:matrix(0.245627,-0.006386,0.006498,0.249916,0,0);}
.m1d_c00018{transform:matrix(0.249571,-0.006489,0.006498,0.249916,0,0);-ms-transform:matrix(0.249571,-0.006489,0.006498,0.249916,0,0);-webkit-transform:matrix(0.249571,-0.006489,0.006498,0.249916,0,0);}
.m41_c00018{transform:matrix(0.264795,-0.003972,0.003750,0.249972,0,0);-ms-transform:matrix(0.264795,-0.003972,0.003750,0.249972,0,0);-webkit-transform:matrix(0.264795,-0.003972,0.003750,0.249972,0,0);}
.m21_c00018{transform:matrix(0.267192,-0.004809,0.004499,0.249960,0,0);-ms-transform:matrix(0.267192,-0.004809,0.004499,0.249960,0,0);-webkit-transform:matrix(0.267192,-0.004809,0.004499,0.249960,0,0);}
.m23_c00018{transform:matrix(0.276415,-0.004975,0.004499,0.249960,0,0);-ms-transform:matrix(0.276415,-0.004975,0.004499,0.249960,0,0);-webkit-transform:matrix(0.276415,-0.004975,0.004499,0.249960,0,0);}
.m36_c00018{transform:matrix(0.315613,-0.009468,0.007497,0.249888,0,0);-ms-transform:matrix(0.315613,-0.009468,0.007497,0.249888,0,0);-webkit-transform:matrix(0.315613,-0.009468,0.007497,0.249888,0,0);}
.m22_c00018{transform:matrix(0.349068,-0.006283,0.004499,0.249960,0,0);-ms-transform:matrix(0.349068,-0.006283,0.004499,0.249960,0,0);-webkit-transform:matrix(0.349068,-0.006283,0.004499,0.249960,0,0);}
.m3e_c00018{transform:matrix(0.357575,-0.005364,0.003750,0.249972,0,0);-ms-transform:matrix(0.357575,-0.005364,0.003750,0.249972,0,0);-webkit-transform:matrix(0.357575,-0.005364,0.003750,0.249972,0,0);}
.m1f_c00018{transform:matrix(0.360787,-0.006494,0.004499,0.249960,0,0);-ms-transform:matrix(0.360787,-0.006494,0.004499,0.249960,0,0);-webkit-transform:matrix(0.360787,-0.006494,0.004499,0.249960,0,0);}
.m15_c00018{transform:matrix(0.364382,-0.009474,0.006498,0.249916,0,0);-ms-transform:matrix(0.364382,-0.009474,0.006498,0.249916,0,0);-webkit-transform:matrix(0.364382,-0.009474,0.006498,0.249916,0,0);}
.m1b_c00018{transform:matrix(0.374818,-0.009745,0.006498,0.249916,0,0);-ms-transform:matrix(0.374818,-0.009745,0.006498,0.249916,0,0);-webkit-transform:matrix(0.374818,-0.009745,0.006498,0.249916,0,0);}
.m32_c00018{transform:matrix(0.380584,-0.011418,0.007497,0.249888,0,0);-ms-transform:matrix(0.380584,-0.011418,0.007497,0.249888,0,0);-webkit-transform:matrix(0.380584,-0.011418,0.007497,0.249888,0,0);}
.m20_c00018{transform:matrix(0.384098,-0.006914,0.004499,0.249960,0,0);-ms-transform:matrix(0.384098,-0.006914,0.004499,0.249960,0,0);-webkit-transform:matrix(0.384098,-0.006914,0.004499,0.249960,0,0);}
.m14_c00018{transform:matrix(0.389983,-0.010140,0.006498,0.249916,0,0);-ms-transform:matrix(0.389983,-0.010140,0.006498,0.249916,0,0);-webkit-transform:matrix(0.389983,-0.010140,0.006498,0.249916,0,0);}
.mc_c00018{transform:matrix(0.408937,-0.010632,0.006498,0.249916,0,0);-ms-transform:matrix(0.408937,-0.010632,0.006498,0.249916,0,0);-webkit-transform:matrix(0.408937,-0.010632,0.006498,0.249916,0,0);}
.m25_c00018{transform:matrix(0.423386,-0.007621,0.004499,0.249960,0,0);-ms-transform:matrix(0.423386,-0.007621,0.004499,0.249960,0,0);-webkit-transform:matrix(0.423386,-0.007621,0.004499,0.249960,0,0);}
.m10_c00018{transform:matrix(0.424597,-0.011040,0.006498,0.249916,0,0);-ms-transform:matrix(0.424597,-0.011040,0.006498,0.249916,0,0);-webkit-transform:matrix(0.424597,-0.011040,0.006498,0.249916,0,0);}
.m13_c00018{transform:matrix(0.427670,-0.011119,0.006498,0.249916,0,0);-ms-transform:matrix(0.427670,-0.011119,0.006498,0.249916,0,0);-webkit-transform:matrix(0.427670,-0.011119,0.006498,0.249916,0,0);}
.mf_c00018{transform:matrix(0.430564,-0.011195,0.006498,0.249916,0,0);-ms-transform:matrix(0.430564,-0.011195,0.006498,0.249916,0,0);-webkit-transform:matrix(0.430564,-0.011195,0.006498,0.249916,0,0);}
.m1e_c00018{transform:matrix(0.432500,-0.007785,0.004499,0.249960,0,0);-ms-transform:matrix(0.432500,-0.007785,0.004499,0.249960,0,0);-webkit-transform:matrix(0.432500,-0.007785,0.004499,0.249960,0,0);}
.mb_c00018{transform:matrix(0.456981,-0.011881,0.006498,0.249916,0,0);-ms-transform:matrix(0.456981,-0.011881,0.006498,0.249916,0,0);-webkit-transform:matrix(0.456981,-0.011881,0.006498,0.249916,0,0);}
.me_c00018{transform:matrix(0.487740,-0.012681,0.006498,0.249916,0,0);-ms-transform:matrix(0.487740,-0.012681,0.006498,0.249916,0,0);-webkit-transform:matrix(0.487740,-0.012681,0.006498,0.249916,0,0);}
.m33_c00018{transform:matrix(0.497886,-0.014937,0.007497,0.249888,0,0);-ms-transform:matrix(0.497886,-0.014937,0.007497,0.249888,0,0);-webkit-transform:matrix(0.497886,-0.014937,0.007497,0.249888,0,0);}
.m34_c00018{transform:matrix(0.504368,-0.015131,0.007497,0.249888,0,0);-ms-transform:matrix(0.504368,-0.015131,0.007497,0.249888,0,0);-webkit-transform:matrix(0.504368,-0.015131,0.007497,0.249888,0,0);}
.m19_c00018{transform:matrix(0.517055,-0.013443,0.006498,0.249916,0,0);-ms-transform:matrix(0.517055,-0.013443,0.006498,0.249916,0,0);-webkit-transform:matrix(0.517055,-0.013443,0.006498,0.249916,0,0);}
.m18_c00018{transform:matrix(0.531101,-0.013809,0.006498,0.249916,0,0);-ms-transform:matrix(0.531101,-0.013809,0.006498,0.249916,0,0);-webkit-transform:matrix(0.531101,-0.013809,0.006498,0.249916,0,0);}
.ma_c00018{transform:matrix(0.545995,-0.014196,0.006498,0.249916,0,0);-ms-transform:matrix(0.545995,-0.014196,0.006498,0.249916,0,0);-webkit-transform:matrix(0.545995,-0.014196,0.006498,0.249916,0,0);}
.m3c_c00018{transform:matrix(0.569991,-0.008550,0.003750,0.249972,0,0);-ms-transform:matrix(0.569991,-0.008550,0.003750,0.249972,0,0);-webkit-transform:matrix(0.569991,-0.008550,0.003750,0.249972,0,0);}
.m24_c00018{transform:matrix(0.598703,-0.010777,0.004499,0.249960,0,0);-ms-transform:matrix(0.598703,-0.010777,0.004499,0.249960,0,0);-webkit-transform:matrix(0.598703,-0.010777,0.004499,0.249960,0,0);}
.m31_c00018{transform:matrix(0.629272,-0.018878,0.007497,0.249888,0,0);-ms-transform:matrix(0.629272,-0.018878,0.007497,0.249888,0,0);-webkit-transform:matrix(0.629272,-0.018878,0.007497,0.249888,0,0);}
.m17_c00018{transform:matrix(0.630092,-0.016382,0.006498,0.249916,0,0);-ms-transform:matrix(0.630092,-0.016382,0.006498,0.249916,0,0);-webkit-transform:matrix(0.630092,-0.016382,0.006498,0.249916,0,0);}
.md_c00018{transform:matrix(0.645572,-0.016785,0.006498,0.249916,0,0);-ms-transform:matrix(0.645572,-0.016785,0.006498,0.249916,0,0);-webkit-transform:matrix(0.645572,-0.016785,0.006498,0.249916,0,0);}
.m1c_c00018{transform:matrix(0.682309,-0.017740,0.006498,0.249916,0,0);-ms-transform:matrix(0.682309,-0.017740,0.006498,0.249916,0,0);-webkit-transform:matrix(0.682309,-0.017740,0.006498,0.249916,0,0);}
.m27_c00018{transform:matrix(0.813513,-0.014643,0.004499,0.249960,0,0);-ms-transform:matrix(0.813513,-0.014643,0.004499,0.249960,0,0);-webkit-transform:matrix(0.813513,-0.014643,0.004499,0.249960,0,0);}
.m35_c00018{transform:matrix(0.859418,-0.025783,0.007497,0.249888,0,0);-ms-transform:matrix(0.859418,-0.025783,0.007497,0.249888,0,0);-webkit-transform:matrix(0.859418,-0.025783,0.007497,0.249888,0,0);}
.m1a_c00018{transform:matrix(0.886191,-0.023041,0.006498,0.249916,0,0);-ms-transform:matrix(0.886191,-0.023041,0.006498,0.249916,0,0);-webkit-transform:matrix(0.886191,-0.023041,0.006498,0.249916,0,0);}
.m11_c00018{transform:matrix(0.897417,-0.023333,0.006498,0.249916,0,0);-ms-transform:matrix(0.897417,-0.023333,0.006498,0.249916,0,0);-webkit-transform:matrix(0.897417,-0.023333,0.006498,0.249916,0,0);}
.m3a_c00018{transform:matrix(1.577150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.577150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.577150,0.000000,0.000000,0.250000,0,0);}
.m1_c00018{transform:matrix(2.741170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.741170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.741170,0.000000,0.000000,0.250000,0,0);}
.v0_c00018{vertical-align:0.000000px;}
.ls0_c00018{letter-spacing:0.000000px;}
.sc__c00018{text-shadow:none;}
.sc0_c00018{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__c00018{-webkit-text-stroke:0px transparent;}
.sc0_c00018{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00018{word-spacing:0.000000px;}
.fc0_c00018{color:transparent;}
.fs0_c00018{font-size:18.000000px;}
.fs8_c00018{font-size:72.008100px;}
.fs3_c00018{font-size:72.024332px;}
.fs4_c00018{font-size:78.012635px;}
.fs2_c00018{font-size:78.026360px;}
.fs6_c00018{font-size:84.037791px;}
.fs5_c00018{font-size:180.080982px;}
.fs7_c00018{font-size:216.000000px;}
.fs1_c00018{font-size:234.085277px;}
.y3c_c00018{bottom:-1.348500px;}
.y3d_c00018{bottom:-0.113520px;}
.y0_c00018{bottom:0.000000px;}
.y3e_c00018{bottom:0.724808px;}
.y3f_c00018{bottom:1.245278px;}
.y40_c00018{bottom:1.443705px;}
.y41_c00018{bottom:1.752788px;}
.y42_c00018{bottom:2.515988px;}
.y3b_c00018{bottom:16.888500px;}
.y3a_c00018{bottom:83.674500px;}
.y31_c00018{bottom:161.726850px;}
.y32_c00018{bottom:161.817090px;}
.y33_c00018{bottom:162.440070px;}
.y34_c00018{bottom:163.269480px;}
.y35_c00018{bottom:163.511850px;}
.y36_c00018{bottom:163.800885px;}
.y37_c00018{bottom:164.572590px;}
.y38_c00018{bottom:164.698575px;}
.y39_c00018{bottom:165.329820px;}
.y2b_c00018{bottom:170.409000px;}
.y2c_c00018{bottom:178.131720px;}
.y2d_c00018{bottom:181.728705px;}
.y2e_c00018{bottom:188.841900px;}
.y2f_c00018{bottom:193.140255px;}
.y30_c00018{bottom:197.081715px;}
.y1f_c00018{bottom:224.088000px;}
.y20_c00018{bottom:224.709972px;}
.y21_c00018{bottom:226.731408px;}
.y22_c00018{bottom:227.725791px;}
.y23_c00018{bottom:229.072497px;}
.y24_c00018{bottom:229.956180px;}
.y25_c00018{bottom:231.080919px;}
.y26_c00018{bottom:232.878444px;}
.y27_c00018{bottom:233.619945px;}
.y28_c00018{bottom:235.527846px;}
.y29_c00018{bottom:238.365789px;}
.y2a_c00018{bottom:239.991378px;}
.y14_c00018{bottom:520.811802px;}
.y15_c00018{bottom:522.728730px;}
.y16_c00018{bottom:523.636437px;}
.y17_c00018{bottom:524.283942px;}
.y18_c00018{bottom:525.067227px;}
.y19_c00018{bottom:526.498659px;}
.y1a_c00018{bottom:527.612595px;}
.y1b_c00018{bottom:528.431454px;}
.y1c_c00018{bottom:529.646493px;}
.y1d_c00018{bottom:530.323776px;}
.y1e_c00018{bottom:532.561794px;}
.y13_c00018{bottom:542.955144px;}
.yb_c00018{bottom:585.378000px;}
.yc_c00018{bottom:588.367506px;}
.yd_c00018{bottom:590.325423px;}
.ye_c00018{bottom:594.609573px;}
.yf_c00018{bottom:596.161188px;}
.y10_c00018{bottom:597.567333px;}
.y11_c00018{bottom:602.567601px;}
.y12_c00018{bottom:604.124715px;}
.y3_c00018{bottom:623.169000px;}
.y4_c00018{bottom:626.127646px;}
.y5_c00018{bottom:629.363232px;}
.y6_c00018{bottom:630.915435px;}
.y7_c00018{bottom:634.138222px;}
.y8_c00018{bottom:635.564754px;}
.y9_c00018{bottom:639.230287px;}
.ya_c00018{bottom:642.327403px;}
.y2_c00018{bottom:679.060500px;}
.y1_c00018{bottom:680.940000px;}
.h2_c00018{height:18.000000px;}
.ha_c00018{height:72.008100px;}
.h5_c00018{height:72.024332px;}
.h6_c00018{height:78.012635px;}
.h4_c00018{height:78.026360px;}
.h8_c00018{height:84.037791px;}
.h7_c00018{height:180.080982px;}
.h9_c00018{height:216.000000px;}
.h3_c00018{height:234.085277px;}
.h1_c00018{height:693.750000px;}
.h0_c00018{height:693.900000px;}
.w1_c00018{width:950.250000px;}
.w0_c00018{width:950.400000px;}
.x0_c00018{left:0.000000px;}
.x2c_c00018{left:1.890960px;}
.x3_c00018{left:7.645500px;}
.x14_c00018{left:12.679578px;}
.x34_c00018{left:21.330000px;}
.x2d_c00018{left:24.366465px;}
.x28_c00018{left:26.658000px;}
.x1d_c00018{left:31.708500px;}
.x1e_c00018{left:66.262500px;}
.xb_c00018{left:71.164500px;}
.x4_c00018{left:117.225000px;}
.x15_c00018{left:140.444082px;}
.x1f_c00018{left:178.564500px;}
.x2e_c00018{left:179.953695px;}
.xc_c00018{left:186.145500px;}
.x16_c00018{left:200.930859px;}
.x20_c00018{left:233.808000px;}
.x5_c00018{left:237.061500px;}
.x17_c00018{left:244.135722px;}
.xd_c00018{left:261.450000px;}
.x29_c00018{left:284.082000px;}
.x6_c00018{left:294.550500px;}
.x18_c00018{left:296.373159px;}
.x21_c00018{left:308.625000px;}
.x22_c00018{left:357.718500px;}
.x2f_c00018{left:387.412380px;}
.x19_c00018{left:391.782420px;}
.x2a_c00018{left:403.981500px;}
.x7_c00018{left:413.913000px;}
.x23_c00018{left:420.204000px;}
.xe_c00018{left:426.225000px;}
.x30_c00018{left:448.188765px;}
.x8_c00018{left:466.747500px;}
.xf_c00018{left:485.902500px;}
.x1a_c00018{left:520.676775px;}
.x10_c00018{left:539.985000px;}
.x24_c00018{left:561.261000px;}
.x9_c00018{left:602.508000px;}
.x2b_c00018{left:641.088000px;}
.x1b_c00018{left:646.859850px;}
.x25_c00018{left:667.255500px;}
.x31_c00018{left:713.403450px;}
.xa_c00018{left:717.216000px;}
.x35_c00018{left:729.913500px;}
.x11_c00018{left:732.303000px;}
.x32_c00018{left:744.977565px;}
.x1_c00018{left:783.810000px;}
.x2_c00018{left:785.430000px;}
.x12_c00018{left:792.192000px;}
.x1c_c00018{left:796.095516px;}
.x36_c00018{left:820.500000px;}
.x26_c00018{left:824.919000px;}
.x37_c00018{left:833.728500px;}
.x38_c00018{left:854.334000px;}
.x13_c00018{left:895.867872px;}
.x33_c00018{left:902.691960px;}
.x39_c00018{left:905.214000px;}
.x27_c00018{left:915.229500px;}
@media print{
.v0_c00018{vertical-align:0.000000pt;}
.ls0_c00018{letter-spacing:0.000000pt;}
.ws0_c00018{word-spacing:0.000000pt;}
.fs0_c00018{font-size:16.000000pt;}
.fs8_c00018{font-size:64.007200pt;}
.fs3_c00018{font-size:64.021628pt;}
.fs4_c00018{font-size:69.344564pt;}
.fs2_c00018{font-size:69.356764pt;}
.fs6_c00018{font-size:74.700259pt;}
.fs5_c00018{font-size:160.071984pt;}
.fs7_c00018{font-size:192.000000pt;}
.fs1_c00018{font-size:208.075802pt;}
.y3c_c00018{bottom:-1.198667pt;}
.y3d_c00018{bottom:-0.100907pt;}
.y0_c00018{bottom:0.000000pt;}
.y3e_c00018{bottom:0.644273pt;}
.y3f_c00018{bottom:1.106913pt;}
.y40_c00018{bottom:1.283293pt;}
.y41_c00018{bottom:1.558033pt;}
.y42_c00018{bottom:2.236433pt;}
.y3b_c00018{bottom:15.012000pt;}
.y3a_c00018{bottom:74.377333pt;}
.y31_c00018{bottom:143.757200pt;}
.y32_c00018{bottom:143.837413pt;}
.y33_c00018{bottom:144.391173pt;}
.y34_c00018{bottom:145.128427pt;}
.y35_c00018{bottom:145.343867pt;}
.y36_c00018{bottom:145.600787pt;}
.y37_c00018{bottom:146.286747pt;}
.y38_c00018{bottom:146.398733pt;}
.y39_c00018{bottom:146.959840pt;}
.y2b_c00018{bottom:151.474667pt;}
.y2c_c00018{bottom:158.339307pt;}
.y2d_c00018{bottom:161.536627pt;}
.y2e_c00018{bottom:167.859467pt;}
.y2f_c00018{bottom:171.680227pt;}
.y30_c00018{bottom:175.183747pt;}
.y1f_c00018{bottom:199.189333pt;}
.y20_c00018{bottom:199.742197pt;}
.y21_c00018{bottom:201.539029pt;}
.y22_c00018{bottom:202.422925pt;}
.y23_c00018{bottom:203.619997pt;}
.y24_c00018{bottom:204.405493pt;}
.y25_c00018{bottom:205.405261pt;}
.y26_c00018{bottom:207.003061pt;}
.y27_c00018{bottom:207.662173pt;}
.y28_c00018{bottom:209.358085pt;}
.y29_c00018{bottom:211.880701pt;}
.y2a_c00018{bottom:213.325669pt;}
.y14_c00018{bottom:462.943824pt;}
.y15_c00018{bottom:464.647760pt;}
.y16_c00018{bottom:465.454611pt;}
.y17_c00018{bottom:466.030171pt;}
.y18_c00018{bottom:466.726424pt;}
.y19_c00018{bottom:467.998808pt;}
.y1a_c00018{bottom:468.988973pt;}
.y1b_c00018{bottom:469.716848pt;}
.y1c_c00018{bottom:470.796883pt;}
.y1d_c00018{bottom:471.398912pt;}
.y1e_c00018{bottom:473.388261pt;}
.y13_c00018{bottom:482.626795pt;}
.yb_c00018{bottom:520.336000pt;}
.yc_c00018{bottom:522.993339pt;}
.yd_c00018{bottom:524.733709pt;}
.ye_c00018{bottom:528.541843pt;}
.yf_c00018{bottom:529.921056pt;}
.y10_c00018{bottom:531.170963pt;}
.y11_c00018{bottom:535.615645pt;}
.y12_c00018{bottom:536.999747pt;}
.y3_c00018{bottom:553.928000pt;}
.y4_c00018{bottom:556.557908pt;}
.y5_c00018{bottom:559.433984pt;}
.y6_c00018{bottom:560.813720pt;}
.y7_c00018{bottom:563.678420pt;}
.y8_c00018{bottom:564.946448pt;}
.y9_c00018{bottom:568.204700pt;}
.ya_c00018{bottom:570.957692pt;}
.y2_c00018{bottom:603.609333pt;}
.y1_c00018{bottom:605.280000pt;}
.h2_c00018{height:16.000000pt;}
.ha_c00018{height:64.007200pt;}
.h5_c00018{height:64.021628pt;}
.h6_c00018{height:69.344564pt;}
.h4_c00018{height:69.356764pt;}
.h8_c00018{height:74.700259pt;}
.h7_c00018{height:160.071984pt;}
.h9_c00018{height:192.000000pt;}
.h3_c00018{height:208.075802pt;}
.h1_c00018{height:616.666667pt;}
.h0_c00018{height:616.800000pt;}
.w1_c00018{width:844.666667pt;}
.w0_c00018{width:844.800000pt;}
.x0_c00018{left:0.000000pt;}
.x2c_c00018{left:1.680853pt;}
.x3_c00018{left:6.796000pt;}
.x14_c00018{left:11.270736pt;}
.x34_c00018{left:18.960000pt;}
.x2d_c00018{left:21.659080pt;}
.x28_c00018{left:23.696000pt;}
.x1d_c00018{left:28.185333pt;}
.x1e_c00018{left:58.900000pt;}
.xb_c00018{left:63.257333pt;}
.x4_c00018{left:104.200000pt;}
.x15_c00018{left:124.839184pt;}
.x1f_c00018{left:158.724000pt;}
.x2e_c00018{left:159.958840pt;}
.xc_c00018{left:165.462667pt;}
.x16_c00018{left:178.605208pt;}
.x20_c00018{left:207.829333pt;}
.x5_c00018{left:210.721333pt;}
.x17_c00018{left:217.009531pt;}
.xd_c00018{left:232.400000pt;}
.x29_c00018{left:252.517333pt;}
.x6_c00018{left:261.822667pt;}
.x18_c00018{left:263.442808pt;}
.x21_c00018{left:274.333333pt;}
.x22_c00018{left:317.972000pt;}
.x2f_c00018{left:344.366560pt;}
.x19_c00018{left:348.251040pt;}
.x2a_c00018{left:359.094667pt;}
.x7_c00018{left:367.922667pt;}
.x23_c00018{left:373.514667pt;}
.xe_c00018{left:378.866667pt;}
.x30_c00018{left:398.390013pt;}
.x8_c00018{left:414.886667pt;}
.xf_c00018{left:431.913333pt;}
.x1a_c00018{left:462.823800pt;}
.x10_c00018{left:479.986667pt;}
.x24_c00018{left:498.898667pt;}
.x9_c00018{left:535.562667pt;}
.x2b_c00018{left:569.856000pt;}
.x1b_c00018{left:574.986533pt;}
.x25_c00018{left:593.116000pt;}
.x31_c00018{left:634.136400pt;}
.xa_c00018{left:637.525333pt;}
.x35_c00018{left:648.812000pt;}
.x11_c00018{left:650.936000pt;}
.x32_c00018{left:662.202280pt;}
.x1_c00018{left:696.720000pt;}
.x2_c00018{left:698.160000pt;}
.x12_c00018{left:704.170667pt;}
.x1c_c00018{left:707.640459pt;}
.x36_c00018{left:729.333333pt;}
.x26_c00018{left:733.261333pt;}
.x37_c00018{left:741.092000pt;}
.x38_c00018{left:759.408000pt;}
.x13_c00018{left:796.326997pt;}
.x33_c00018{left:802.392853pt;}
.x39_c00018{left:804.634667pt;}
.x27_c00018{left:813.537333pt;}
}





/* 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_c00019 {
    display:none;
  }
  .loading-indicator_c00019.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00019 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_c00019 { 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_c00019" -> "#page-container .classname_c00019")
 */
.pf_c00019 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00019 { /* 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_c00019.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00019 { /* 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_c00019 { /* 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_c00019 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00019 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00019 {overflow:visible;}
  }
}
.c_c00019 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00019 { /* 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_c00019:after { /* webkit #35443 */
  content: '';
}
.t_c00019:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00019 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 */
}
.__c00019 { /* 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_c00019 { /* info for Javascript */
  display:none;
}
.l_c00019 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00019 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00019 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00019: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_c00019 {
    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_c00019.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00019.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_c00019 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00019{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00019;src:url('chunks/assets/font_132af6d682320e9b248f68cf.woff2')format("woff");}.ff1_c00019{font-family:ff1_c00019;line-height:1.000000;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;}
.m16_c00019{transform:matrix(0.031820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.031820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.031820,0.000000,0.000000,0.250000,0,0);}
.m17_c00019{transform:matrix(0.106725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106725,0.000000,0.000000,0.250000,0,0);}
.m8_c00019{transform:matrix(0.128270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128270,0.000000,0.000000,0.250000,0,0);}
.m7_c00019{transform:matrix(0.137325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137325,0.000000,0.000000,0.250000,0,0);}
.m5_c00019{transform:matrix(0.148490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148490,0.000000,0.000000,0.250000,0,0);}
.m2_c00019{transform:matrix(0.156525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156525,0.000000,0.000000,0.250000,0,0);}
.mc_c00019{transform:matrix(0.185540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185540,0.000000,0.000000,0.250000,0,0);}
.m1_c00019{transform:matrix(0.192355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192355,0.000000,0.000000,0.250000,0,0);}
.mb_c00019{transform:matrix(0.203050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203050,0.000000,0.000000,0.250000,0,0);}
.md_c00019{transform:matrix(0.205230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205230,0.000000,0.000000,0.250000,0,0);}
.m6_c00019{transform:matrix(0.205625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205625,0.000000,0.000000,0.250000,0,0);}
.m10_c00019{transform:matrix(0.209300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209300,0.000000,0.000000,0.250000,0,0);}
.m3_c00019{transform:matrix(0.214765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214765,0.000000,0.000000,0.250000,0,0);}
.ma_c00019{transform:matrix(0.224155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224155,0.000000,0.000000,0.250000,0,0);}
.m9_c00019{transform:matrix(0.234905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234905,0.000000,0.000000,0.250000,0,0);}
.me_c00019{transform:matrix(0.247385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247385,0.000000,0.000000,0.250000,0,0);}
.m18_c00019{transform:matrix(0.257150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257150,0.000000,0.000000,0.250000,0,0);}
.mf_c00019{transform:matrix(0.278310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278310,0.000000,0.000000,0.250000,0,0);}
.m4_c00019{transform:matrix(0.284605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284605,0.000000,0.000000,0.250000,0,0);}
.m12_c00019{transform:matrix(0.307065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307065,0.000000,0.000000,0.250000,0,0);}
.m13_c00019{transform:matrix(0.319985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319985,0.000000,0.000000,0.250000,0,0);}
.m15_c00019{transform:matrix(0.366275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366275,0.000000,0.000000,0.250000,0,0);}
.m14_c00019{transform:matrix(0.414200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414200,0.000000,0.000000,0.250000,0,0);}
.m0_c00019{transform:matrix(1.000315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.000315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.000315,0.000000,0.000000,0.250000,0,0);}
.m19_c00019{transform:matrix(1.058800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.058800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.058800,0.000000,0.000000,0.250000,0,0);}
.m11_c00019{transform:matrix(1.128595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.128595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.128595,0.000000,0.000000,0.250000,0,0);}
.v0_c00019{vertical-align:0.000000px;}
.ls0_c00019{letter-spacing:0.000000px;}
.sc__c00019{text-shadow:none;}
.sc0_c00019{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__c00019{-webkit-text-stroke:0px transparent;}
.sc0_c00019{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00019{word-spacing:0.000000px;}
.fc0_c00019{color:transparent;}
.fs2_c00019{font-size:12.000000px;}
.fs1_c00019{font-size:18.000000px;}
.fs0_c00019{font-size:24.000000px;}
.fs3_c00019{font-size:30.000000px;}
.fs4_c00019{font-size:42.000000px;}
.fs5_c00019{font-size:54.000000px;}
.y0_c00019{bottom:0.000000px;}
.yf_c00019{bottom:663.930000px;}
.y10_c00019{bottom:666.496500px;}
.ye_c00019{bottom:669.060000px;}
.yd_c00019{bottom:676.339500px;}
.ya_c00019{bottom:678.240000px;}
.yc_c00019{bottom:678.906000px;}
.y1_c00019{bottom:691.200000px;}
.y7_c00019{bottom:691.470000px;}
.y2_c00019{bottom:691.605000px;}
.y6_c00019{bottom:692.010000px;}
.y3_c00019{bottom:692.143500px;}
.y4_c00019{bottom:692.280000px;}
.y8_c00019{bottom:692.550000px;}
.y5_c00019{bottom:692.820000px;}
.yb_c00019{bottom:693.090000px;}
.y9_c00019{bottom:693.879000px;}
.h4_c00019{height:12.000000px;}
.h3_c00019{height:18.000000px;}
.h2_c00019{height:24.000000px;}
.h5_c00019{height:30.000000px;}
.h6_c00019{height:42.000000px;}
.h7_c00019{height:54.000000px;}
.h1_c00019{height:693.750000px;}
.h0_c00019{height:693.900000px;}
.w0_c00019{width:959.040000px;}
.w1_c00019{width:959.250000px;}
.x0_c00019{left:0.000000px;}
.x17_c00019{left:4.320000px;}
.x15_c00019{left:7.020000px;}
.x11_c00019{left:11.880000px;}
.x12_c00019{left:41.040000px;}
.x16_c00019{left:49.680000px;}
.x13_c00019{left:57.780000px;}
.x14_c00019{left:115.290000px;}
.x10_c00019{left:204.930000px;}
.xf_c00019{left:214.920000px;}
.xe_c00019{left:218.430000px;}
.xd_c00019{left:224.640000px;}
.xc_c00019{left:230.850000px;}
.xb_c00019{left:240.300000px;}
.xa_c00019{left:246.780000px;}
.x9_c00019{left:254.340000px;}
.x8_c00019{left:258.120000px;}
.x7_c00019{left:261.630000px;}
.x6_c00019{left:368.550000px;}
.x5_c00019{left:373.950000px;}
.x4_c00019{left:377.460000px;}
.x3_c00019{left:384.210000px;}
.x2_c00019{left:430.650000px;}
.x1_c00019{left:450.630000px;}
.x18_c00019{left:829.170000px;}
@media print{
.v0_c00019{vertical-align:0.000000pt;}
.ls0_c00019{letter-spacing:0.000000pt;}
.ws0_c00019{word-spacing:0.000000pt;}
.fs2_c00019{font-size:10.666667pt;}
.fs1_c00019{font-size:16.000000pt;}
.fs0_c00019{font-size:21.333333pt;}
.fs3_c00019{font-size:26.666667pt;}
.fs4_c00019{font-size:37.333333pt;}
.fs5_c00019{font-size:48.000000pt;}
.y0_c00019{bottom:0.000000pt;}
.yf_c00019{bottom:590.160000pt;}
.y10_c00019{bottom:592.441333pt;}
.ye_c00019{bottom:594.720000pt;}
.yd_c00019{bottom:601.190667pt;}
.ya_c00019{bottom:602.880000pt;}
.yc_c00019{bottom:603.472000pt;}
.y1_c00019{bottom:614.400000pt;}
.y7_c00019{bottom:614.640000pt;}
.y2_c00019{bottom:614.760000pt;}
.y6_c00019{bottom:615.120000pt;}
.y3_c00019{bottom:615.238667pt;}
.y4_c00019{bottom:615.360000pt;}
.y8_c00019{bottom:615.600000pt;}
.y5_c00019{bottom:615.840000pt;}
.yb_c00019{bottom:616.080000pt;}
.y9_c00019{bottom:616.781333pt;}
.h4_c00019{height:10.666667pt;}
.h3_c00019{height:16.000000pt;}
.h2_c00019{height:21.333333pt;}
.h5_c00019{height:26.666667pt;}
.h6_c00019{height:37.333333pt;}
.h7_c00019{height:48.000000pt;}
.h1_c00019{height:616.666667pt;}
.h0_c00019{height:616.800000pt;}
.w0_c00019{width:852.480000pt;}
.w1_c00019{width:852.666667pt;}
.x0_c00019{left:0.000000pt;}
.x17_c00019{left:3.840000pt;}
.x15_c00019{left:6.240000pt;}
.x11_c00019{left:10.560000pt;}
.x12_c00019{left:36.480000pt;}
.x16_c00019{left:44.160000pt;}
.x13_c00019{left:51.360000pt;}
.x14_c00019{left:102.480000pt;}
.x10_c00019{left:182.160000pt;}
.xf_c00019{left:191.040000pt;}
.xe_c00019{left:194.160000pt;}
.xd_c00019{left:199.680000pt;}
.xc_c00019{left:205.200000pt;}
.xb_c00019{left:213.600000pt;}
.xa_c00019{left:219.360000pt;}
.x9_c00019{left:226.080000pt;}
.x8_c00019{left:229.440000pt;}
.x7_c00019{left:232.560000pt;}
.x6_c00019{left:327.600000pt;}
.x5_c00019{left:332.400000pt;}
.x4_c00019{left:335.520000pt;}
.x3_c00019{left:341.520000pt;}
.x2_c00019{left:382.800000pt;}
.x1_c00019{left:400.560000pt;}
.x18_c00019{left:737.040000pt;}
}





/* 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_c00020 {
    display:none;
  }
  .loading-indicator_c00020.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00020 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_c00020 { 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_c00020" -> "#page-container .classname_c00020")
 */
.pf_c00020 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00020 { /* 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_c00020.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00020 { /* 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_c00020 { /* 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_c00020 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00020 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00020 {overflow:visible;}
  }
}
.c_c00020 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00020 { /* 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_c00020:after { /* webkit #35443 */
  content: '';
}
.t_c00020:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00020 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 */
}
.__c00020 { /* 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_c00020 { /* info for Javascript */
  display:none;
}
.l_c00020 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00020 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00020 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00020: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_c00020 {
    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_c00020.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00020.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_c00020 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00020{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00020;src:url('chunks/assets/font_7c6b9abe6ee2a268480c528b.woff2')format("woff");}.ff1_c00020{font-family:ff1_c00020;line-height:1.000000;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;}
.m72_c00020{transform:matrix(0.028458,0.000370,-0.003250,0.249979,0,0);-ms-transform:matrix(0.028458,0.000370,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.028458,0.000370,-0.003250,0.249979,0,0);}
.m1_c00020{transform:matrix(0.029025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.029025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.029025,0.000000,0.000000,0.250000,0,0);}
.m47_c00020{transform:matrix(0.033540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.033540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.033540,0.000000,0.000000,0.250000,0,0);}
.m4e_c00020{transform:matrix(0.042421,0.000551,-0.003250,0.249979,0,0);-ms-transform:matrix(0.042421,0.000551,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.042421,0.000551,-0.003250,0.249979,0,0);}
.m4d_c00020{transform:matrix(0.047431,0.000617,-0.003250,0.249979,0,0);-ms-transform:matrix(0.047431,0.000617,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.047431,0.000617,-0.003250,0.249979,0,0);}
.m42_c00020{transform:matrix(0.047435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.047435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.047435,0.000000,0.000000,0.250000,0,0);}
.m4f_c00020{transform:matrix(0.054080,0.000703,-0.003250,0.249979,0,0);-ms-transform:matrix(0.054080,0.000703,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.054080,0.000703,-0.003250,0.249979,0,0);}
.mb_c00020{transform:matrix(0.063779,0.000383,-0.001500,0.249996,0,0);-ms-transform:matrix(0.063779,0.000383,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.063779,0.000383,-0.001500,0.249996,0,0);}
.m6d_c00020{transform:matrix(0.065514,0.000852,-0.003250,0.249979,0,0);-ms-transform:matrix(0.065514,0.000852,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.065514,0.000852,-0.003250,0.249979,0,0);}
.m56_c00020{transform:matrix(0.067074,0.000872,-0.003250,0.249979,0,0);-ms-transform:matrix(0.067074,0.000872,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.067074,0.000872,-0.003250,0.249979,0,0);}
.m4b_c00020{transform:matrix(0.067080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.067080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.067080,0.000000,0.000000,0.250000,0,0);}
.m5f_c00020{transform:matrix(0.074994,0.000975,-0.003250,0.249979,0,0);-ms-transform:matrix(0.074994,0.000975,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.074994,0.000975,-0.003250,0.249979,0,0);}
.m71_c00020{transform:matrix(0.076364,0.000993,-0.003250,0.249979,0,0);-ms-transform:matrix(0.076364,0.000993,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.076364,0.000993,-0.003250,0.249979,0,0);}
.m59_c00020{transform:matrix(0.084848,0.001103,-0.003250,0.249979,0,0);-ms-transform:matrix(0.084848,0.001103,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.084848,0.001103,-0.003250,0.249979,0,0);}
.m63_c00020{transform:matrix(0.084898,0.001104,-0.003250,0.249979,0,0);-ms-transform:matrix(0.084898,0.001104,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.084898,0.001104,-0.003250,0.249979,0,0);}
.m8_c00020{transform:matrix(0.086298,0.000518,-0.001500,0.249996,0,0);-ms-transform:matrix(0.086298,0.000518,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.086298,0.000518,-0.001500,0.249996,0,0);}
.m67_c00020{transform:matrix(0.088633,0.001152,-0.003250,0.249979,0,0);-ms-transform:matrix(0.088633,0.001152,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.088633,0.001152,-0.003250,0.249979,0,0);}
.m28_c00020{transform:matrix(0.090595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090595,0.000000,0.000000,0.250000,0,0);}
.m50_c00020{transform:matrix(0.094862,0.001233,-0.003250,0.249979,0,0);-ms-transform:matrix(0.094862,0.001233,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.094862,0.001233,-0.003250,0.249979,0,0);}
.m61_c00020{transform:matrix(0.098482,0.001280,-0.003250,0.249979,0,0);-ms-transform:matrix(0.098482,0.001280,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.098482,0.001280,-0.003250,0.249979,0,0);}
.ma_c00020{transform:matrix(0.113403,0.000680,-0.001500,0.249996,0,0);-ms-transform:matrix(0.113403,0.000680,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.113403,0.000680,-0.001500,0.249996,0,0);}
.m64_c00020{transform:matrix(0.114620,0.001490,-0.003250,0.249979,0,0);-ms-transform:matrix(0.114620,0.001490,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.114620,0.001490,-0.003250,0.249979,0,0);}
.m30_c00020{transform:matrix(0.118660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118660,0.000000,0.000000,0.250000,0,0);}
.m46_c00020{transform:matrix(0.128160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128160,0.000000,0.000000,0.250000,0,0);}
.m32_c00020{transform:matrix(0.175190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175190,0.000000,0.000000,0.250000,0,0);}
.m2_c00020{transform:matrix(0.178585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178585,0.000000,0.000000,0.250000,0,0);}
.m31_c00020{transform:matrix(0.186390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186390,0.000000,0.000000,0.250000,0,0);}
.m60_c00020{transform:matrix(0.187934,0.002443,-0.003250,0.249979,0,0);-ms-transform:matrix(0.187934,0.002443,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.187934,0.002443,-0.003250,0.249979,0,0);}
.m6f_c00020{transform:matrix(0.193849,0.002520,-0.003250,0.249979,0,0);-ms-transform:matrix(0.193849,0.002520,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.193849,0.002520,-0.003250,0.249979,0,0);}
.m45_c00020{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00020{transform:matrix(0.202468,0.002632,-0.003250,0.249979,0,0);-ms-transform:matrix(0.202468,0.002632,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.202468,0.002632,-0.003250,0.249979,0,0);}
.m5_c00020{transform:matrix(0.212220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212220,0.000000,0.000000,0.250000,0,0);}
.m33_c00020{transform:matrix(0.219488,-0.001756,0.002000,0.249992,0,0);-ms-transform:matrix(0.219488,-0.001756,0.002000,0.249992,0,0);-webkit-transform:matrix(0.219488,-0.001756,0.002000,0.249992,0,0);}
.m4_c00020{transform:matrix(0.219950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219950,0.000000,0.000000,0.250000,0,0);}
.m3_c00020{transform:matrix(0.220635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220635,0.000000,0.000000,0.250000,0,0);}
.m10_c00020{transform:matrix(0.240900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240900,0.000000,0.000000,0.250000,0,0);}
.m0_c00020{transform:matrix(0.248230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248230,0.000000,0.000000,0.250000,0,0);}
.m11_c00020{transform:matrix(0.253030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253030,0.000000,0.000000,0.250000,0,0);}
.m6c_c00020{transform:matrix(0.254693,0.003311,-0.003250,0.249979,0,0);-ms-transform:matrix(0.254693,0.003311,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.254693,0.003311,-0.003250,0.249979,0,0);}
.m12_c00020{transform:matrix(0.260270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260270,0.000000,0.000000,0.250000,0,0);}
.m9_c00020{transform:matrix(0.261450,0.001569,-0.001500,0.249996,0,0);-ms-transform:matrix(0.261450,0.001569,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.261450,0.001569,-0.001500,0.249996,0,0);}
.m34_c00020{transform:matrix(0.262082,-0.002097,0.002000,0.249992,0,0);-ms-transform:matrix(0.262082,-0.002097,0.002000,0.249992,0,0);-webkit-transform:matrix(0.262082,-0.002097,0.002000,0.249992,0,0);}
.m7_c00020{transform:matrix(0.272895,0.001637,-0.001500,0.249996,0,0);-ms-transform:matrix(0.272895,0.001637,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.272895,0.001637,-0.001500,0.249996,0,0);}
.m66_c00020{transform:matrix(0.275322,0.003579,-0.003250,0.249979,0,0);-ms-transform:matrix(0.275322,0.003579,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.275322,0.003579,-0.003250,0.249979,0,0);}
.m58_c00020{transform:matrix(0.275747,0.003585,-0.003250,0.249979,0,0);-ms-transform:matrix(0.275747,0.003585,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.275747,0.003585,-0.003250,0.249979,0,0);}
.m38_c00020{transform:matrix(0.279111,-0.002233,0.002000,0.249992,0,0);-ms-transform:matrix(0.279111,-0.002233,0.002000,0.249992,0,0);-webkit-transform:matrix(0.279111,-0.002233,0.002000,0.249992,0,0);}
.m3b_c00020{transform:matrix(0.280231,-0.002242,0.002000,0.249992,0,0);-ms-transform:matrix(0.280231,-0.002242,0.002000,0.249992,0,0);-webkit-transform:matrix(0.280231,-0.002242,0.002000,0.249992,0,0);}
.m37_c00020{transform:matrix(0.283626,-0.002269,0.002000,0.249992,0,0);-ms-transform:matrix(0.283626,-0.002269,0.002000,0.249992,0,0);-webkit-transform:matrix(0.283626,-0.002269,0.002000,0.249992,0,0);}
.m41_c00020{transform:matrix(0.301495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301495,0.000000,0.000000,0.250000,0,0);}
.m5e_c00020{transform:matrix(0.313184,0.004071,-0.003250,0.249979,0,0);-ms-transform:matrix(0.313184,0.004071,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.313184,0.004071,-0.003250,0.249979,0,0);}
.m3d_c00020{transform:matrix(0.319615,-0.002557,0.002000,0.249992,0,0);-ms-transform:matrix(0.319615,-0.002557,0.002000,0.249992,0,0);-webkit-transform:matrix(0.319615,-0.002557,0.002000,0.249992,0,0);}
.m6e_c00020{transform:matrix(0.321213,0.004176,-0.003250,0.249979,0,0);-ms-transform:matrix(0.321213,0.004176,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.321213,0.004176,-0.003250,0.249979,0,0);}
.md_c00020{transform:matrix(0.323800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323800,0.000000,0.000000,0.250000,0,0);}
.m6_c00020{transform:matrix(0.327290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327290,0.000000,0.000000,0.250000,0,0);}
.m24_c00020{transform:matrix(0.335190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335190,0.000000,0.000000,0.250000,0,0);}
.m1f_c00020{transform:matrix(0.347465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347465,0.000000,0.000000,0.250000,0,0);}
.m3f_c00020{transform:matrix(0.347920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347920,0.000000,0.000000,0.250000,0,0);}
.m70_c00020{transform:matrix(0.348281,0.004528,-0.003250,0.249979,0,0);-ms-transform:matrix(0.348281,0.004528,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.348281,0.004528,-0.003250,0.249979,0,0);}
.m44_c00020{transform:matrix(0.350180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350180,0.000000,0.000000,0.250000,0,0);}
.mf_c00020{transform:matrix(0.352005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352005,0.000000,0.000000,0.250000,0,0);}
.m22_c00020{transform:matrix(0.358135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358135,0.000000,0.000000,0.250000,0,0);}
.m23_c00020{transform:matrix(0.358605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358605,0.000000,0.000000,0.250000,0,0);}
.m35_c00020{transform:matrix(0.376568,-0.003013,0.002000,0.249992,0,0);-ms-transform:matrix(0.376568,-0.003013,0.002000,0.249992,0,0);-webkit-transform:matrix(0.376568,-0.003013,0.002000,0.249992,0,0);}
.m68_c00020{transform:matrix(0.378873,0.004925,-0.003250,0.249979,0,0);-ms-transform:matrix(0.378873,0.004925,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.378873,0.004925,-0.003250,0.249979,0,0);}
.m51_c00020{transform:matrix(0.379738,0.004937,-0.003250,0.249979,0,0);-ms-transform:matrix(0.379738,0.004937,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.379738,0.004937,-0.003250,0.249979,0,0);}
.m57_c00020{transform:matrix(0.383243,0.004982,-0.003250,0.249979,0,0);-ms-transform:matrix(0.383243,0.004982,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.383243,0.004982,-0.003250,0.249979,0,0);}
.m36_c00020{transform:matrix(0.384813,-0.003079,0.002000,0.249992,0,0);-ms-transform:matrix(0.384813,-0.003079,0.002000,0.249992,0,0);-webkit-transform:matrix(0.384813,-0.003079,0.002000,0.249992,0,0);}
.m1d_c00020{transform:matrix(0.385655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385655,0.000000,0.000000,0.250000,0,0);}
.m1a_c00020{transform:matrix(0.397060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397060,0.000000,0.000000,0.250000,0,0);}
.m2f_c00020{transform:matrix(0.402560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402560,0.000000,0.000000,0.250000,0,0);}
.m1b_c00020{transform:matrix(0.405930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405930,0.000000,0.000000,0.250000,0,0);}
.m3c_c00020{transform:matrix(0.411202,-0.003290,0.002000,0.249992,0,0);-ms-transform:matrix(0.411202,-0.003290,0.002000,0.249992,0,0);-webkit-transform:matrix(0.411202,-0.003290,0.002000,0.249992,0,0);}
.m1c_c00020{transform:matrix(0.417195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417195,0.000000,0.000000,0.250000,0,0);}
.m16_c00020{transform:matrix(0.418905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418905,0.000000,0.000000,0.250000,0,0);}
.m20_c00020{transform:matrix(0.422675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422675,0.000000,0.000000,0.250000,0,0);}
.m55_c00020{transform:matrix(0.430079,0.005591,-0.003250,0.249979,0,0);-ms-transform:matrix(0.430079,0.005591,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.430079,0.005591,-0.003250,0.249979,0,0);}
.m19_c00020{transform:matrix(0.430815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430815,0.000000,0.000000,0.250000,0,0);}
.m15_c00020{transform:matrix(0.444365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444365,0.000000,0.000000,0.250000,0,0);}
.m2e_c00020{transform:matrix(0.452785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452785,0.000000,0.000000,0.250000,0,0);}
.m53_c00020{transform:matrix(0.470970,0.006123,-0.003250,0.249979,0,0);-ms-transform:matrix(0.470970,0.006123,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.470970,0.006123,-0.003250,0.249979,0,0);}
.m4a_c00020{transform:matrix(0.472015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472015,0.000000,0.000000,0.250000,0,0);}
.m1e_c00020{transform:matrix(0.473555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.473555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.473555,0.000000,0.000000,0.250000,0,0);}
.m49_c00020{transform:matrix(0.495910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495910,0.000000,0.000000,0.250000,0,0);}
.m26_c00020{transform:matrix(0.543295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543295,0.000000,0.000000,0.250000,0,0);}
.m62_c00020{transform:matrix(0.563802,0.007329,-0.003250,0.249979,0,0);-ms-transform:matrix(0.563802,0.007329,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.563802,0.007329,-0.003250,0.249979,0,0);}
.m39_c00020{transform:matrix(0.593941,-0.004752,0.002000,0.249992,0,0);-ms-transform:matrix(0.593941,-0.004752,0.002000,0.249992,0,0);-webkit-transform:matrix(0.593941,-0.004752,0.002000,0.249992,0,0);}
.m21_c00020{transform:matrix(0.603490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.603490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.603490,0.000000,0.000000,0.250000,0,0);}
.m2c_c00020{transform:matrix(0.608810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608810,0.000000,0.000000,0.250000,0,0);}
.m27_c00020{transform:matrix(0.614655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.614655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.614655,0.000000,0.000000,0.250000,0,0);}
.m5c_c00020{transform:matrix(0.617118,0.008023,-0.003250,0.249979,0,0);-ms-transform:matrix(0.617118,0.008023,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.617118,0.008023,-0.003250,0.249979,0,0);}
.m5d_c00020{transform:matrix(0.632977,0.008229,-0.003250,0.249979,0,0);-ms-transform:matrix(0.632977,0.008229,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.632977,0.008229,-0.003250,0.249979,0,0);}
.m2b_c00020{transform:matrix(0.671890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.671890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.671890,0.000000,0.000000,0.250000,0,0);}
.m3a_c00020{transform:matrix(0.675888,-0.005407,0.002000,0.249992,0,0);-ms-transform:matrix(0.675888,-0.005407,0.002000,0.249992,0,0);-webkit-transform:matrix(0.675888,-0.005407,0.002000,0.249992,0,0);}
.m13_c00020{transform:matrix(0.696335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.696335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.696335,0.000000,0.000000,0.250000,0,0);}
.m6a_c00020{transform:matrix(0.706260,0.009181,-0.003250,0.249979,0,0);-ms-transform:matrix(0.706260,0.009181,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.706260,0.009181,-0.003250,0.249979,0,0);}
.m48_c00020{transform:matrix(0.706435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.706435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.706435,0.000000,0.000000,0.250000,0,0);}
.m2d_c00020{transform:matrix(0.753810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.753810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.753810,0.000000,0.000000,0.250000,0,0);}
.m69_c00020{transform:matrix(0.787933,0.010243,-0.003250,0.249979,0,0);-ms-transform:matrix(0.787933,0.010243,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.787933,0.010243,-0.003250,0.249979,0,0);}
.me_c00020{transform:matrix(0.848705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.848705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.848705,0.000000,0.000000,0.250000,0,0);}
.m18_c00020{transform:matrix(0.851785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.851785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.851785,0.000000,0.000000,0.250000,0,0);}
.mc_c00020{transform:matrix(0.869724,0.005218,-0.001500,0.249996,0,0);-ms-transform:matrix(0.869724,0.005218,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.869724,0.005218,-0.001500,0.249996,0,0);}
.m14_c00020{transform:matrix(0.943925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.943925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.943925,0.000000,0.000000,0.250000,0,0);}
.m2a_c00020{transform:matrix(0.969260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.969260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.969260,0.000000,0.000000,0.250000,0,0);}
.m17_c00020{transform:matrix(1.025040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.025040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.025040,0.000000,0.000000,0.250000,0,0);}
.m29_c00020{transform:matrix(1.072280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.072280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.072280,0.000000,0.000000,0.250000,0,0);}
.m4c_c00020{transform:matrix(1.342385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.342385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.342385,0.000000,0.000000,0.250000,0,0);}
.m5a_c00020{transform:matrix(1.416330,0.018412,-0.003250,0.249979,0,0);-ms-transform:matrix(1.416330,0.018412,-0.003250,0.249979,0,0);-webkit-transform:matrix(1.416330,0.018412,-0.003250,0.249979,0,0);}
.m65_c00020{transform:matrix(1.419060,0.018448,-0.003250,0.249979,0,0);-ms-transform:matrix(1.419060,0.018448,-0.003250,0.249979,0,0);-webkit-transform:matrix(1.419060,0.018448,-0.003250,0.249979,0,0);}
.m6b_c00020{transform:matrix(1.475795,0.019185,-0.003250,0.249979,0,0);-ms-transform:matrix(1.475795,0.019185,-0.003250,0.249979,0,0);-webkit-transform:matrix(1.475795,0.019185,-0.003250,0.249979,0,0);}
.m25_c00020{transform:matrix(1.507835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.507835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.507835,0.000000,0.000000,0.250000,0,0);}
.m43_c00020{transform:matrix(1.822485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.822485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.822485,0.000000,0.000000,0.250000,0,0);}
.m54_c00020{transform:matrix(1.853108,0.024090,-0.003250,0.249979,0,0);-ms-transform:matrix(1.853108,0.024090,-0.003250,0.249979,0,0);-webkit-transform:matrix(1.853108,0.024090,-0.003250,0.249979,0,0);}
.m52_c00020{transform:matrix(1.875802,0.024385,-0.003250,0.249979,0,0);-ms-transform:matrix(1.875802,0.024385,-0.003250,0.249979,0,0);-webkit-transform:matrix(1.875802,0.024385,-0.003250,0.249979,0,0);}
.m40_c00020{transform:matrix(2.250610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.250610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.250610,0.000000,0.000000,0.250000,0,0);}
.m3e_c00020{transform:matrix(5.356345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.356345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.356345,0.000000,0.000000,0.250000,0,0);}
.v0_c00020{vertical-align:0.000000px;}
.ls0_c00020{letter-spacing:0.000000px;}
.sc__c00020{text-shadow:none;}
.sc0_c00020{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__c00020{-webkit-text-stroke:0px transparent;}
.sc0_c00020{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00020{word-spacing:0.000000px;}
.fc0_c00020{color:transparent;}
.fsa_c00020{font-size:18.000000px;}
.fsb_c00020{font-size:18.001521px;}
.fsc_c00020{font-size:30.002535px;}
.fs8_c00020{font-size:48.000000px;}
.fs7_c00020{font-size:54.000000px;}
.fs1_c00020{font-size:66.001188px;}
.fs5_c00020{font-size:72.000000px;}
.fs6_c00020{font-size:78.000000px;}
.fs4_c00020{font-size:84.000000px;}
.fs2_c00020{font-size:90.001620px;}
.fs3_c00020{font-size:108.000000px;}
.fs9_c00020{font-size:114.003648px;}
.fs0_c00020{font-size:150.000000px;}
.y4f_c00020{bottom:-2.402103px;}
.y4e_c00020{bottom:-2.252972px;}
.y4d_c00020{bottom:-1.942356px;}
.y4c_c00020{bottom:-1.749849px;}
.y4b_c00020{bottom:-1.669850px;}
.y4a_c00020{bottom:-1.508561px;}
.y49_c00020{bottom:-0.854414px;}
.y48_c00020{bottom:-0.473595px;}
.y47_c00020{bottom:-0.153771px;}
.y0_c00020{bottom:0.000000px;}
.y46_c00020{bottom:0.144804px;}
.y45_c00020{bottom:0.582541px;}
.y44_c00020{bottom:0.723594px;}
.y43_c00020{bottom:1.073272px;}
.y42_c00020{bottom:1.599985px;}
.y41_c00020{bottom:2.324004px;}
.y3e_c00020{bottom:2.401039px;}
.y3d_c00020{bottom:2.667312px;}
.y3c_c00020{bottom:3.049824px;}
.y40_c00020{bottom:3.180159px;}
.y3f_c00020{bottom:3.510111px;}
.y3b_c00020{bottom:3.572814px;}
.y3a_c00020{bottom:4.011700px;}
.y39_c00020{bottom:4.317187px;}
.y38_c00020{bottom:4.563414px;}
.y30_c00020{bottom:4.809789px;}
.y37_c00020{bottom:4.833157px;}
.y36_c00020{bottom:5.275515px;}
.y35_c00020{bottom:5.496625px;}
.y34_c00020{bottom:6.577159px;}
.y2f_c00020{bottom:7.287225px;}
.y33_c00020{bottom:7.353220px;}
.y2e_c00020{bottom:8.091307px;}
.y2d_c00020{bottom:8.396697px;}
.y2c_c00020{bottom:9.088284px;}
.y2b_c00020{bottom:10.021866px;}
.y2a_c00020{bottom:10.372749px;}
.y32_c00020{bottom:10.789042px;}
.y29_c00020{bottom:10.821990px;}
.y31_c00020{bottom:11.069998px;}
.y28_c00020{bottom:11.555190px;}
.y27_c00020{bottom:13.770000px;}
.y26_c00020{bottom:17.157000px;}
.y25_c00020{bottom:18.436500px;}
.y1a_c00020{bottom:31.861500px;}
.y1b_c00020{bottom:32.283444px;}
.y1c_c00020{bottom:33.518856px;}
.y1d_c00020{bottom:33.903396px;}
.y1e_c00020{bottom:35.164800px;}
.y1f_c00020{bottom:36.171048px;}
.y20_c00020{bottom:36.553284px;}
.y21_c00020{bottom:37.436676px;}
.y22_c00020{bottom:38.173296px;}
.y23_c00020{bottom:38.466600px;}
.y24_c00020{bottom:39.341844px;}
.y19_c00020{bottom:58.050000px;}
.y18_c00020{bottom:66.690000px;}
.y17_c00020{bottom:76.140000px;}
.y10_c00020{bottom:105.841500px;}
.y11_c00020{bottom:107.397000px;}
.y12_c00020{bottom:108.279000px;}
.y13_c00020{bottom:109.165500px;}
.y14_c00020{bottom:110.191500px;}
.y15_c00020{bottom:111.403500px;}
.yf_c00020{bottom:179.820000px;}
.y16_c00020{bottom:204.930000px;}
.ye_c00020{bottom:216.000000px;}
.y9_c00020{bottom:423.631500px;}
.ya_c00020{bottom:426.502500px;}
.yb_c00020{bottom:427.018500px;}
.yc_c00020{bottom:427.710000px;}
.yd_c00020{bottom:430.521000px;}
.y8_c00020{bottom:537.300000px;}
.y6_c00020{bottom:620.268633px;}
.y4_c00020{bottom:620.268717px;}
.y7_c00020{bottom:620.268756px;}
.y5_c00020{bottom:620.268915px;}
.y1_c00020{bottom:641.176500px;}
.y3_c00020{bottom:652.749975px;}
.y2_c00020{bottom:658.260000px;}
.hc_c00020{height:18.000000px;}
.hd_c00020{height:18.001521px;}
.he_c00020{height:30.002535px;}
.ha_c00020{height:48.000000px;}
.h9_c00020{height:54.000000px;}
.h3_c00020{height:66.001188px;}
.h7_c00020{height:72.000000px;}
.h8_c00020{height:78.000000px;}
.h6_c00020{height:84.000000px;}
.h4_c00020{height:90.001620px;}
.h5_c00020{height:108.000000px;}
.hb_c00020{height:114.003648px;}
.h2_c00020{height:150.000000px;}
.h1_c00020{height:693.750000px;}
.h0_c00020{height:693.900000px;}
.w0_c00020{width:959.040000px;}
.w1_c00020{width:959.250000px;}
.x0_c00020{left:0.000000px;}
.x28_c00020{left:1.219500px;}
.x1_c00020{left:7.290000px;}
.x8_c00020{left:22.327500px;}
.x19_c00020{left:38.610000px;}
.x22_c00020{left:40.770000px;}
.x2e_c00020{left:52.926000px;}
.x3c_c00020{left:57.780000px;}
.x38_c00020{left:62.370000px;}
.x3d_c00020{left:63.990000px;}
.x14_c00020{left:67.168500px;}
.x3e_c00020{left:99.630000px;}
.x3f_c00020{left:115.290000px;}
.x40_c00020{left:121.500000px;}
.x41_c00020{left:126.630000px;}
.xa_c00020{left:137.701215px;}
.x1a_c00020{left:144.990000px;}
.x42_c00020{left:160.380000px;}
.x39_c00020{left:172.530000px;}
.x43_c00020{left:188.190000px;}
.x23_c00020{left:194.670000px;}
.x47_c00020{left:199.852500px;}
.x2f_c00020{left:207.352500px;}
.x1b_c00020{left:208.440000px;}
.x3a_c00020{left:214.110000px;}
.x5e_c00020{left:215.174733px;}
.x29_c00020{left:223.362000px;}
.x2_c00020{left:234.630000px;}
.x44_c00020{left:239.760000px;}
.x30_c00020{left:255.420000px;}
.x5f_c00020{left:256.481424px;}
.x51_c00020{left:258.442806px;}
.x52_c00020{left:280.054806px;}
.xd_c00020{left:287.010000px;}
.x45_c00020{left:288.090000px;}
.x24_c00020{left:289.170000px;}
.x3b_c00020{left:298.620000px;}
.x46_c00020{left:299.970000px;}
.x3_c00020{left:330.750000px;}
.xb_c00020{left:337.505406px;}
.xe_c00020{left:345.330000px;}
.x2a_c00020{left:349.255500px;}
.x1c_c00020{left:358.290000px;}
.x60_c00020{left:363.423366px;}
.x48_c00020{left:370.222500px;}
.x15_c00020{left:386.173500px;}
.x31_c00020{left:413.095500px;}
.x1d_c00020{left:424.440000px;}
.x49_c00020{left:426.622500px;}
.x16_c00020{left:443.449500px;}
.x61_c00020{left:453.853736px;}
.x4a_c00020{left:461.179500px;}
.x2b_c00020{left:475.911000px;}
.x4_c00020{left:481.950000px;}
.x1e_c00020{left:483.570000px;}
.x4b_c00020{left:488.170500px;}
.xf_c00020{left:499.230000px;}
.x17_c00020{left:520.288500px;}
.x25_c00020{left:531.360000px;}
.x5_c00020{left:535.680000px;}
.x32_c00020{left:538.876500px;}
.x53_c00020{left:544.348806px;}
.x10_c00020{left:545.400000px;}
.x4c_c00020{left:559.984500px;}
.x62_c00020{left:563.506373px;}
.x63_c00020{left:581.050004px;}
.x33_c00020{left:586.656000px;}
.x1f_c00020{left:589.680000px;}
.x11_c00020{left:597.240000px;}
.x26_c00020{left:603.990000px;}
.x4d_c00020{left:613.183500px;}
.x2c_c00020{left:622.513500px;}
.x4e_c00020{left:636.675000px;}
.x12_c00020{left:654.480000px;}
.x64_c00020{left:673.118490px;}
.x54_c00020{left:687.163806px;}
.x6_c00020{left:694.440000px;}
.x34_c00020{left:697.080000px;}
.x4f_c00020{left:698.527500px;}
.x55_c00020{left:704.172306px;}
.x65_c00020{left:713.069084px;}
.x20_c00020{left:733.320000px;}
.x56_c00020{left:738.199806px;}
.x13_c00020{left:744.390000px;}
.x57_c00020{left:758.949306px;}
.x66_c00020{left:760.596665px;}
.x7_c00020{left:770.040000px;}
.x27_c00020{left:773.280000px;}
.x58_c00020{left:777.889806px;}
.x35_c00020{left:789.157500px;}
.x2d_c00020{left:795.574500px;}
.x59_c00020{left:801.388806px;}
.x21_c00020{left:823.230000px;}
.x36_c00020{left:825.820500px;}
.x18_c00020{left:832.602000px;}
.x5a_c00020{left:835.149306px;}
.x67_c00020{left:842.420988px;}
.x68_c00020{left:862.675314px;}
.x69_c00020{left:872.637458px;}
.x5b_c00020{left:875.379306px;}
.xc_c00020{left:880.754463px;}
.x50_c00020{left:889.099500px;}
.x6a_c00020{left:896.678018px;}
.x5c_c00020{left:904.803306px;}
.x5d_c00020{left:925.285806px;}
.x37_c00020{left:935.226000px;}
.x9_c00020{left:940.665000px;}
.x6b_c00020{left:954.200762px;}
@media print{
.v0_c00020{vertical-align:0.000000pt;}
.ls0_c00020{letter-spacing:0.000000pt;}
.ws0_c00020{word-spacing:0.000000pt;}
.fsa_c00020{font-size:16.000000pt;}
.fsb_c00020{font-size:16.001352pt;}
.fsc_c00020{font-size:26.668920pt;}
.fs8_c00020{font-size:42.666667pt;}
.fs7_c00020{font-size:48.000000pt;}
.fs1_c00020{font-size:58.667723pt;}
.fs5_c00020{font-size:64.000000pt;}
.fs6_c00020{font-size:69.333333pt;}
.fs4_c00020{font-size:74.666667pt;}
.fs2_c00020{font-size:80.001440pt;}
.fs3_c00020{font-size:96.000000pt;}
.fs9_c00020{font-size:101.336576pt;}
.fs0_c00020{font-size:133.333333pt;}
.y4f_c00020{bottom:-2.135203pt;}
.y4e_c00020{bottom:-2.002641pt;}
.y4d_c00020{bottom:-1.726539pt;}
.y4c_c00020{bottom:-1.555421pt;}
.y4b_c00020{bottom:-1.484311pt;}
.y4a_c00020{bottom:-1.340943pt;}
.y49_c00020{bottom:-0.759479pt;}
.y48_c00020{bottom:-0.420973pt;}
.y47_c00020{bottom:-0.136685pt;}
.y0_c00020{bottom:0.000000pt;}
.y46_c00020{bottom:0.128715pt;}
.y45_c00020{bottom:0.517815pt;}
.y44_c00020{bottom:0.643195pt;}
.y43_c00020{bottom:0.954020pt;}
.y42_c00020{bottom:1.422209pt;}
.y41_c00020{bottom:2.065781pt;}
.y3e_c00020{bottom:2.134257pt;}
.y3d_c00020{bottom:2.370944pt;}
.y3c_c00020{bottom:2.710955pt;}
.y40_c00020{bottom:2.826808pt;}
.y3f_c00020{bottom:3.120099pt;}
.y3b_c00020{bottom:3.175835pt;}
.y3a_c00020{bottom:3.565956pt;}
.y39_c00020{bottom:3.837500pt;}
.y38_c00020{bottom:4.056368pt;}
.y30_c00020{bottom:4.275368pt;}
.y37_c00020{bottom:4.296140pt;}
.y36_c00020{bottom:4.689347pt;}
.y35_c00020{bottom:4.885889pt;}
.y34_c00020{bottom:5.846364pt;}
.y2f_c00020{bottom:6.477533pt;}
.y33_c00020{bottom:6.536196pt;}
.y2e_c00020{bottom:7.192273pt;}
.y2d_c00020{bottom:7.463731pt;}
.y2c_c00020{bottom:8.078475pt;}
.y2b_c00020{bottom:8.908325pt;}
.y2a_c00020{bottom:9.220221pt;}
.y32_c00020{bottom:9.590260pt;}
.y29_c00020{bottom:9.619547pt;}
.y31_c00020{bottom:9.839999pt;}
.y28_c00020{bottom:10.271280pt;}
.y27_c00020{bottom:12.240000pt;}
.y26_c00020{bottom:15.250667pt;}
.y25_c00020{bottom:16.388000pt;}
.y1a_c00020{bottom:28.321333pt;}
.y1b_c00020{bottom:28.696395pt;}
.y1c_c00020{bottom:29.794539pt;}
.y1d_c00020{bottom:30.136352pt;}
.y1e_c00020{bottom:31.257600pt;}
.y1f_c00020{bottom:32.152043pt;}
.y20_c00020{bottom:32.491808pt;}
.y21_c00020{bottom:33.277045pt;}
.y22_c00020{bottom:33.931819pt;}
.y23_c00020{bottom:34.192533pt;}
.y24_c00020{bottom:34.970528pt;}
.y19_c00020{bottom:51.600000pt;}
.y18_c00020{bottom:59.280000pt;}
.y17_c00020{bottom:67.680000pt;}
.y10_c00020{bottom:94.081333pt;}
.y11_c00020{bottom:95.464000pt;}
.y12_c00020{bottom:96.248000pt;}
.y13_c00020{bottom:97.036000pt;}
.y14_c00020{bottom:97.948000pt;}
.y15_c00020{bottom:99.025333pt;}
.yf_c00020{bottom:159.840000pt;}
.y16_c00020{bottom:182.160000pt;}
.ye_c00020{bottom:192.000000pt;}
.y9_c00020{bottom:376.561333pt;}
.ya_c00020{bottom:379.113333pt;}
.yb_c00020{bottom:379.572000pt;}
.yc_c00020{bottom:380.186667pt;}
.yd_c00020{bottom:382.685333pt;}
.y8_c00020{bottom:477.600000pt;}
.y6_c00020{bottom:551.349896pt;}
.y4_c00020{bottom:551.349971pt;}
.y7_c00020{bottom:551.350005pt;}
.y5_c00020{bottom:551.350147pt;}
.y1_c00020{bottom:569.934667pt;}
.y3_c00020{bottom:580.222200pt;}
.y2_c00020{bottom:585.120000pt;}
.hc_c00020{height:16.000000pt;}
.hd_c00020{height:16.001352pt;}
.he_c00020{height:26.668920pt;}
.ha_c00020{height:42.666667pt;}
.h9_c00020{height:48.000000pt;}
.h3_c00020{height:58.667723pt;}
.h7_c00020{height:64.000000pt;}
.h8_c00020{height:69.333333pt;}
.h6_c00020{height:74.666667pt;}
.h4_c00020{height:80.001440pt;}
.h5_c00020{height:96.000000pt;}
.hb_c00020{height:101.336576pt;}
.h2_c00020{height:133.333333pt;}
.h1_c00020{height:616.666667pt;}
.h0_c00020{height:616.800000pt;}
.w0_c00020{width:852.480000pt;}
.w1_c00020{width:852.666667pt;}
.x0_c00020{left:0.000000pt;}
.x28_c00020{left:1.084000pt;}
.x1_c00020{left:6.480000pt;}
.x8_c00020{left:19.846667pt;}
.x19_c00020{left:34.320000pt;}
.x22_c00020{left:36.240000pt;}
.x2e_c00020{left:47.045333pt;}
.x3c_c00020{left:51.360000pt;}
.x38_c00020{left:55.440000pt;}
.x3d_c00020{left:56.880000pt;}
.x14_c00020{left:59.705333pt;}
.x3e_c00020{left:88.560000pt;}
.x3f_c00020{left:102.480000pt;}
.x40_c00020{left:108.000000pt;}
.x41_c00020{left:112.560000pt;}
.xa_c00020{left:122.401080pt;}
.x1a_c00020{left:128.880000pt;}
.x42_c00020{left:142.560000pt;}
.x39_c00020{left:153.360000pt;}
.x43_c00020{left:167.280000pt;}
.x23_c00020{left:173.040000pt;}
.x47_c00020{left:177.646667pt;}
.x2f_c00020{left:184.313333pt;}
.x1b_c00020{left:185.280000pt;}
.x3a_c00020{left:190.320000pt;}
.x5e_c00020{left:191.266429pt;}
.x29_c00020{left:198.544000pt;}
.x2_c00020{left:208.560000pt;}
.x44_c00020{left:213.120000pt;}
.x30_c00020{left:227.040000pt;}
.x5f_c00020{left:227.983488pt;}
.x51_c00020{left:229.726939pt;}
.x52_c00020{left:248.937605pt;}
.xd_c00020{left:255.120000pt;}
.x45_c00020{left:256.080000pt;}
.x24_c00020{left:257.040000pt;}
.x3b_c00020{left:265.440000pt;}
.x46_c00020{left:266.640000pt;}
.x3_c00020{left:294.000000pt;}
.xb_c00020{left:300.004805pt;}
.xe_c00020{left:306.960000pt;}
.x2a_c00020{left:310.449333pt;}
.x1c_c00020{left:318.480000pt;}
.x60_c00020{left:323.042992pt;}
.x48_c00020{left:329.086667pt;}
.x15_c00020{left:343.265333pt;}
.x31_c00020{left:367.196000pt;}
.x1d_c00020{left:377.280000pt;}
.x49_c00020{left:379.220000pt;}
.x16_c00020{left:394.177333pt;}
.x61_c00020{left:403.425543pt;}
.x4a_c00020{left:409.937333pt;}
.x2b_c00020{left:423.032000pt;}
.x4_c00020{left:428.400000pt;}
.x1e_c00020{left:429.840000pt;}
.x4b_c00020{left:433.929333pt;}
.xf_c00020{left:443.760000pt;}
.x17_c00020{left:462.478667pt;}
.x25_c00020{left:472.320000pt;}
.x5_c00020{left:476.160000pt;}
.x32_c00020{left:479.001333pt;}
.x53_c00020{left:483.865605pt;}
.x10_c00020{left:484.800000pt;}
.x4c_c00020{left:497.764000pt;}
.x62_c00020{left:500.894553pt;}
.x63_c00020{left:516.488892pt;}
.x33_c00020{left:521.472000pt;}
.x1f_c00020{left:524.160000pt;}
.x11_c00020{left:530.880000pt;}
.x26_c00020{left:536.880000pt;}
.x4d_c00020{left:545.052000pt;}
.x2c_c00020{left:553.345333pt;}
.x4e_c00020{left:565.933333pt;}
.x12_c00020{left:581.760000pt;}
.x64_c00020{left:598.327547pt;}
.x54_c00020{left:610.812272pt;}
.x6_c00020{left:617.280000pt;}
.x34_c00020{left:619.626667pt;}
.x4f_c00020{left:620.913333pt;}
.x55_c00020{left:625.930939pt;}
.x65_c00020{left:633.839185pt;}
.x20_c00020{left:651.840000pt;}
.x56_c00020{left:656.177605pt;}
.x13_c00020{left:661.680000pt;}
.x57_c00020{left:674.621605pt;}
.x66_c00020{left:676.085924pt;}
.x7_c00020{left:684.480000pt;}
.x27_c00020{left:687.360000pt;}
.x58_c00020{left:691.457605pt;}
.x35_c00020{left:701.473333pt;}
.x2d_c00020{left:707.177333pt;}
.x59_c00020{left:712.345605pt;}
.x21_c00020{left:731.760000pt;}
.x36_c00020{left:734.062667pt;}
.x18_c00020{left:740.090667pt;}
.x5a_c00020{left:742.354939pt;}
.x67_c00020{left:748.818656pt;}
.x68_c00020{left:766.822501pt;}
.x69_c00020{left:775.677740pt;}
.x5b_c00020{left:778.114939pt;}
.xc_c00020{left:782.892856pt;}
.x50_c00020{left:790.310667pt;}
.x6a_c00020{left:797.047127pt;}
.x5c_c00020{left:804.269605pt;}
.x5d_c00020{left:822.476272pt;}
.x37_c00020{left:831.312000pt;}
.x9_c00020{left:836.146667pt;}
.x6b_c00020{left:848.178455pt;}
}





/* 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_c00021 {
    display:none;
  }
  .loading-indicator_c00021.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00021 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_c00021 { 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_c00021" -> "#page-container .classname_c00021")
 */
.pf_c00021 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00021 { /* 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_c00021.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00021 { /* 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_c00021 { /* 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_c00021 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00021 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00021 {overflow:visible;}
  }
}
.c_c00021 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00021 { /* 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_c00021:after { /* webkit #35443 */
  content: '';
}
.t_c00021:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00021 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 */
}
.__c00021 { /* 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_c00021 { /* info for Javascript */
  display:none;
}
.l_c00021 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00021 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00021 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00021: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_c00021 {
    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_c00021.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00021.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_c00021 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00021{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00021;src:url('chunks/assets/font_a72a081e1d55f37b0ea09712.woff2')format("woff");}.ff1_c00021{font-family:ff1_c00021;line-height:1.000000;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;}
.m0_c00021{transform:matrix(0.118340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118340,0.000000,0.000000,0.250000,0,0);}
.ma_c00021{transform:matrix(0.175730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175730,0.000000,0.000000,0.250000,0,0);}
.m8_c00021{transform:matrix(0.382425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382425,0.000000,0.000000,0.250000,0,0);}
.m9_c00021{transform:matrix(0.393730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393730,0.000000,0.000000,0.250000,0,0);}
.m6_c00021{transform:matrix(0.441165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441165,0.000000,0.000000,0.250000,0,0);}
.m2_c00021{transform:matrix(0.508185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508185,0.000000,0.000000,0.250000,0,0);}
.m1_c00021{transform:matrix(1.642840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.642840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.642840,0.000000,0.000000,0.250000,0,0);}
.m4_c00021{transform:matrix(1.795620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.795620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.795620,0.000000,0.000000,0.250000,0,0);}
.m5_c00021{transform:matrix(1.983055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.983055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.983055,0.000000,0.000000,0.250000,0,0);}
.mb_c00021{transform:matrix(2.122645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.122645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.122645,0.000000,0.000000,0.250000,0,0);}
.m7_c00021{transform:matrix(2.227385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.227385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.227385,0.000000,0.000000,0.250000,0,0);}
.m3_c00021{transform:matrix(9.634175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(9.634175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(9.634175,0.000000,0.000000,0.250000,0,0);}
.v0_c00021{vertical-align:0.000000px;}
.ls0_c00021{letter-spacing:0.000000px;}
.sc__c00021{text-shadow:none;}
.sc0_c00021{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__c00021{-webkit-text-stroke:0px transparent;}
.sc0_c00021{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00021{word-spacing:0.000000px;}
.fc0_c00021{color:transparent;}
.fs3_c00021{font-size:12.000000px;}
.fs1_c00021{font-size:18.000000px;}
.fs2_c00021{font-size:24.000000px;}
.fs0_c00021{font-size:30.000000px;}
.y0_c00021{bottom:0.000000px;}
.y4_c00021{bottom:1.464000px;}
.y3_c00021{bottom:8.860500px;}
.y2_c00021{bottom:11.479500px;}
.y6_c00021{bottom:42.390000px;}
.y5_c00021{bottom:118.530000px;}
.y1_c00021{bottom:684.184500px;}
.h5_c00021{height:12.000000px;}
.h3_c00021{height:18.000000px;}
.h4_c00021{height:24.000000px;}
.h2_c00021{height:30.000000px;}
.h1_c00021{height:693.750000px;}
.h0_c00021{height:693.900000px;}
.w0_c00021{width:959.040000px;}
.w1_c00021{width:959.250000px;}
.x0_c00021{left:0.000000px;}
.x1_c00021{left:29.700000px;}
.x2_c00021{left:35.370000px;}
.x3_c00021{left:79.920000px;}
.x4_c00021{left:372.600000px;}
.x5_c00021{left:423.630000px;}
.x6_c00021{left:490.590000px;}
.x7_c00021{left:553.500000px;}
.x8_c00021{left:953.910000px;}
.xa_c00021{left:954.990000px;}
.x9_c00021{left:956.070000px;}
@media print{
.v0_c00021{vertical-align:0.000000pt;}
.ls0_c00021{letter-spacing:0.000000pt;}
.ws0_c00021{word-spacing:0.000000pt;}
.fs3_c00021{font-size:10.666667pt;}
.fs1_c00021{font-size:16.000000pt;}
.fs2_c00021{font-size:21.333333pt;}
.fs0_c00021{font-size:26.666667pt;}
.y0_c00021{bottom:0.000000pt;}
.y4_c00021{bottom:1.301333pt;}
.y3_c00021{bottom:7.876000pt;}
.y2_c00021{bottom:10.204000pt;}
.y6_c00021{bottom:37.680000pt;}
.y5_c00021{bottom:105.360000pt;}
.y1_c00021{bottom:608.164000pt;}
.h5_c00021{height:10.666667pt;}
.h3_c00021{height:16.000000pt;}
.h4_c00021{height:21.333333pt;}
.h2_c00021{height:26.666667pt;}
.h1_c00021{height:616.666667pt;}
.h0_c00021{height:616.800000pt;}
.w0_c00021{width:852.480000pt;}
.w1_c00021{width:852.666667pt;}
.x0_c00021{left:0.000000pt;}
.x1_c00021{left:26.400000pt;}
.x2_c00021{left:31.440000pt;}
.x3_c00021{left:71.040000pt;}
.x4_c00021{left:331.200000pt;}
.x5_c00021{left:376.560000pt;}
.x6_c00021{left:436.080000pt;}
.x7_c00021{left:492.000000pt;}
.x8_c00021{left:847.920000pt;}
.xa_c00021{left:848.880000pt;}
.x9_c00021{left:849.840000pt;}
}





/* 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_c00022 {
    display:none;
  }
  .loading-indicator_c00022.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00022 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_c00022 { 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_c00022" -> "#page-container .classname_c00022")
 */
.pf_c00022 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00022 { /* 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_c00022.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00022 { /* 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_c00022 { /* 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_c00022 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00022 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00022 {overflow:visible;}
  }
}
.c_c00022 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00022 { /* 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_c00022:after { /* webkit #35443 */
  content: '';
}
.t_c00022:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00022 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 */
}
.__c00022 { /* 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_c00022 { /* info for Javascript */
  display:none;
}
.l_c00022 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00022 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00022 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00022: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_c00022 {
    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_c00022.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00022.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_c00022 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00022{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00022;src:url('chunks/assets/font_c605e72f209fc835e906f064.woff2')format("woff");}.ff1_c00022{font-family:ff1_c00022;line-height:1.000000;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;}
.m5e_c00022{transform:matrix(0.046371,0.001159,-0.006248,0.249922,0,0);-ms-transform:matrix(0.046371,0.001159,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.046371,0.001159,-0.006248,0.249922,0,0);}
.m3f_c00022{transform:matrix(0.047730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.047730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.047730,0.000000,0.000000,0.250000,0,0);}
.m22_c00022{transform:matrix(0.069170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.069170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.069170,0.000000,0.000000,0.250000,0,0);}
.m31_c00022{transform:matrix(0.073253,0.000513,-0.001750,0.249994,0,0);-ms-transform:matrix(0.073253,0.000513,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.073253,0.000513,-0.001750,0.249994,0,0);}
.m40_c00022{transform:matrix(0.091550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.091550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.091550,0.000000,0.000000,0.250000,0,0);}
.m35_c00022{transform:matrix(0.105052,0.000735,-0.001750,0.249994,0,0);-ms-transform:matrix(0.105052,0.000735,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.105052,0.000735,-0.001750,0.249994,0,0);}
.m30_c00022{transform:matrix(0.114727,0.000803,-0.001750,0.249994,0,0);-ms-transform:matrix(0.114727,0.000803,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.114727,0.000803,-0.001750,0.249994,0,0);}
.m2_c00022{transform:matrix(0.121014,0.001210,-0.002500,0.249988,0,0);-ms-transform:matrix(0.121014,0.001210,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.121014,0.001210,-0.002500,0.249988,0,0);}
.m45_c00022{transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);}
.m57_c00022{transform:matrix(0.135893,0.003397,-0.006248,0.249922,0,0);-ms-transform:matrix(0.135893,0.003397,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.135893,0.003397,-0.006248,0.249922,0,0);}
.m21_c00022{transform:matrix(0.139370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139370,0.000000,0.000000,0.250000,0,0);}
.m10_c00022{transform:matrix(0.143363,0.001434,-0.002500,0.249988,0,0);-ms-transform:matrix(0.143363,0.001434,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.143363,0.001434,-0.002500,0.249988,0,0);}
.m41_c00022{transform:matrix(0.145625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145625,0.000000,0.000000,0.250000,0,0);}
.m5f_c00022{transform:matrix(0.152922,0.003823,-0.006248,0.249922,0,0);-ms-transform:matrix(0.152922,0.003823,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.152922,0.003823,-0.006248,0.249922,0,0);}
.m1b_c00022{transform:matrix(0.157492,0.001575,-0.002500,0.249988,0,0);-ms-transform:matrix(0.157492,0.001575,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.157492,0.001575,-0.002500,0.249988,0,0);}
.m42_c00022{transform:matrix(0.159225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159225,0.000000,0.000000,0.250000,0,0);}
.ma_c00022{transform:matrix(0.173836,0.001738,-0.002500,0.249988,0,0);-ms-transform:matrix(0.173836,0.001738,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.173836,0.001738,-0.002500,0.249988,0,0);}
.m1c_c00022{transform:matrix(0.183431,0.001834,-0.002500,0.249988,0,0);-ms-transform:matrix(0.183431,0.001834,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.183431,0.001834,-0.002500,0.249988,0,0);}
.m3_c00022{transform:matrix(0.210574,0.002106,-0.002500,0.249988,0,0);-ms-transform:matrix(0.210574,0.002106,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.210574,0.002106,-0.002500,0.249988,0,0);}
.m27_c00022{transform:matrix(0.212800,0.001490,-0.001750,0.249994,0,0);-ms-transform:matrix(0.212800,0.001490,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.212800,0.001490,-0.001750,0.249994,0,0);}
.m5d_c00022{transform:matrix(0.221401,0.005535,-0.006248,0.249922,0,0);-ms-transform:matrix(0.221401,0.005535,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.221401,0.005535,-0.006248,0.249922,0,0);}
.m48_c00022{transform:matrix(0.225845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225845,0.000000,0.000000,0.250000,0,0);}
.m2a_c00022{transform:matrix(0.233364,0.001634,-0.001750,0.249994,0,0);-ms-transform:matrix(0.233364,0.001634,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.233364,0.001634,-0.001750,0.249994,0,0);}
.m2e_c00022{transform:matrix(0.234429,0.001641,-0.001750,0.249994,0,0);-ms-transform:matrix(0.234429,0.001641,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.234429,0.001641,-0.001750,0.249994,0,0);}
.m0_c00022{transform:matrix(0.234785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234785,0.000000,0.000000,0.250000,0,0);}
.m1_c00022{transform:matrix(0.237170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237170,0.000000,0.000000,0.250000,0,0);}
.m3d_c00022{transform:matrix(0.240115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240115,0.000000,0.000000,0.250000,0,0);}
.m44_c00022{transform:matrix(0.241705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241705,0.000000,0.000000,0.250000,0,0);}
.m23_c00022{transform:matrix(0.244535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244535,0.000000,0.000000,0.250000,0,0);}
.m2c_c00022{transform:matrix(0.253119,0.001772,-0.001750,0.249994,0,0);-ms-transform:matrix(0.253119,0.001772,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.253119,0.001772,-0.001750,0.249994,0,0);}
.m12_c00022{transform:matrix(0.256587,0.002566,-0.002500,0.249988,0,0);-ms-transform:matrix(0.256587,0.002566,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.256587,0.002566,-0.002500,0.249988,0,0);}
.m56_c00022{transform:matrix(0.265675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265675,0.000000,0.000000,0.250000,0,0);}
.m28_c00022{transform:matrix(0.268893,0.001882,-0.001750,0.249994,0,0);-ms-transform:matrix(0.268893,0.001882,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.268893,0.001882,-0.001750,0.249994,0,0);}
.m26_c00022{transform:matrix(0.280768,0.001965,-0.001750,0.249994,0,0);-ms-transform:matrix(0.280768,0.001965,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.280768,0.001965,-0.001750,0.249994,0,0);}
.m54_c00022{transform:matrix(0.297080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297080,0.000000,0.000000,0.250000,0,0);}
.m15_c00022{transform:matrix(0.321439,0.003214,-0.002500,0.249988,0,0);-ms-transform:matrix(0.321439,0.003214,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.321439,0.003214,-0.002500,0.249988,0,0);}
.m3a_c00022{transform:matrix(0.331095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331095,0.000000,0.000000,0.250000,0,0);}
.m16_c00022{transform:matrix(0.335163,0.003352,-0.002500,0.249988,0,0);-ms-transform:matrix(0.335163,0.003352,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.335163,0.003352,-0.002500,0.249988,0,0);}
.m51_c00022{transform:matrix(0.336040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336040,0.000000,0.000000,0.250000,0,0);}
.m14_c00022{transform:matrix(0.342543,0.003425,-0.002500,0.249988,0,0);-ms-transform:matrix(0.342543,0.003425,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.342543,0.003425,-0.002500,0.249988,0,0);}
.m55_c00022{transform:matrix(0.350825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350825,0.000000,0.000000,0.250000,0,0);}
.m37_c00022{transform:matrix(0.358445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358445,0.000000,0.000000,0.250000,0,0);}
.m2d_c00022{transform:matrix(0.362241,0.002536,-0.001750,0.249994,0,0);-ms-transform:matrix(0.362241,0.002536,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.362241,0.002536,-0.001750,0.249994,0,0);}
.m39_c00022{transform:matrix(0.370305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370305,0.000000,0.000000,0.250000,0,0);}
.m3e_c00022{transform:matrix(0.380805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380805,0.000000,0.000000,0.250000,0,0);}
.m38_c00022{transform:matrix(0.382895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382895,0.000000,0.000000,0.250000,0,0);}
.m8_c00022{transform:matrix(0.392895,0.003929,-0.002500,0.249988,0,0);-ms-transform:matrix(0.392895,0.003929,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.392895,0.003929,-0.002500,0.249988,0,0);}
.m25_c00022{transform:matrix(0.393260,0.002753,-0.001750,0.249994,0,0);-ms-transform:matrix(0.393260,0.002753,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.393260,0.002753,-0.001750,0.249994,0,0);}
.m4c_c00022{transform:matrix(0.401900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401900,0.000000,0.000000,0.250000,0,0);}
.m4f_c00022{transform:matrix(0.402790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402790,0.000000,0.000000,0.250000,0,0);}
.m4b_c00022{transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417500,0.000000,0.000000,0.250000,0,0);}
.m53_c00022{transform:matrix(0.417855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417855,0.000000,0.000000,0.250000,0,0);}
.m50_c00022{transform:matrix(0.423470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423470,0.000000,0.000000,0.250000,0,0);}
.m6_c00022{transform:matrix(0.424034,0.004240,-0.002500,0.249988,0,0);-ms-transform:matrix(0.424034,0.004240,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.424034,0.004240,-0.002500,0.249988,0,0);}
.m4a_c00022{transform:matrix(0.424305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424305,0.000000,0.000000,0.250000,0,0);}
.m58_c00022{transform:matrix(0.426772,0.010669,-0.006248,0.249922,0,0);-ms-transform:matrix(0.426772,0.010669,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.426772,0.010669,-0.006248,0.249922,0,0);}
.m4e_c00022{transform:matrix(0.437670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437670,0.000000,0.000000,0.250000,0,0);}
.m29_c00022{transform:matrix(0.437979,0.003066,-0.001750,0.249994,0,0);-ms-transform:matrix(0.437979,0.003066,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.437979,0.003066,-0.001750,0.249994,0,0);}
.m5c_c00022{transform:matrix(0.451419,0.011285,-0.006248,0.249922,0,0);-ms-transform:matrix(0.451419,0.011285,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.451419,0.011285,-0.006248,0.249922,0,0);}
.m43_c00022{transform:matrix(0.451885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451885,0.000000,0.000000,0.250000,0,0);}
.m4d_c00022{transform:matrix(0.458415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458415,0.000000,0.000000,0.250000,0,0);}
.m11_c00022{transform:matrix(0.460222,0.004602,-0.002500,0.249988,0,0);-ms-transform:matrix(0.460222,0.004602,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.460222,0.004602,-0.002500,0.249988,0,0);}
.m2b_c00022{transform:matrix(0.463239,0.003243,-0.001750,0.249994,0,0);-ms-transform:matrix(0.463239,0.003243,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.463239,0.003243,-0.001750,0.249994,0,0);}
.m1f_c00022{transform:matrix(0.505540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505540,0.000000,0.000000,0.250000,0,0);}
.m5b_c00022{transform:matrix(0.516903,0.012923,-0.006248,0.249922,0,0);-ms-transform:matrix(0.516903,0.012923,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.516903,0.012923,-0.006248,0.249922,0,0);}
.m46_c00022{transform:matrix(0.519650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519650,0.000000,0.000000,0.250000,0,0);}
.mc_c00022{transform:matrix(0.522414,0.005224,-0.002500,0.249988,0,0);-ms-transform:matrix(0.522414,0.005224,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.522414,0.005224,-0.002500,0.249988,0,0);}
.m1e_c00022{transform:matrix(0.537705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537705,0.000000,0.000000,0.250000,0,0);}
.m33_c00022{transform:matrix(0.538917,0.003772,-0.001750,0.249994,0,0);-ms-transform:matrix(0.538917,0.003772,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.538917,0.003772,-0.001750,0.249994,0,0);}
.m3b_c00022{transform:matrix(0.547885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547885,0.000000,0.000000,0.250000,0,0);}
.m24_c00022{transform:matrix(0.549692,0.003848,-0.001750,0.249994,0,0);-ms-transform:matrix(0.549692,0.003848,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.549692,0.003848,-0.001750,0.249994,0,0);}
.m49_c00022{transform:matrix(0.570660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.570660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.570660,0.000000,0.000000,0.250000,0,0);}
.m5_c00022{transform:matrix(0.576131,0.005761,-0.002500,0.249988,0,0);-ms-transform:matrix(0.576131,0.005761,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.576131,0.005761,-0.002500,0.249988,0,0);}
.m17_c00022{transform:matrix(0.598760,0.005988,-0.002500,0.249988,0,0);-ms-transform:matrix(0.598760,0.005988,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.598760,0.005988,-0.002500,0.249988,0,0);}
.m18_c00022{transform:matrix(0.655947,0.006559,-0.002500,0.249988,0,0);-ms-transform:matrix(0.655947,0.006559,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.655947,0.006559,-0.002500,0.249988,0,0);}
.m36_c00022{transform:matrix(0.672340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.672340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.672340,0.000000,0.000000,0.250000,0,0);}
.md_c00022{transform:matrix(0.689606,0.006896,-0.002500,0.249988,0,0);-ms-transform:matrix(0.689606,0.006896,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.689606,0.006896,-0.002500,0.249988,0,0);}
.m7_c00022{transform:matrix(0.691815,0.006918,-0.002500,0.249988,0,0);-ms-transform:matrix(0.691815,0.006918,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.691815,0.006918,-0.002500,0.249988,0,0);}
.m3c_c00022{transform:matrix(0.695430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.695430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.695430,0.000000,0.000000,0.250000,0,0);}
.m1a_c00022{transform:matrix(0.712824,0.007128,-0.002500,0.249988,0,0);-ms-transform:matrix(0.712824,0.007128,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.712824,0.007128,-0.002500,0.249988,0,0);}
.m4_c00022{transform:matrix(0.719149,0.007191,-0.002500,0.249988,0,0);-ms-transform:matrix(0.719149,0.007191,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.719149,0.007191,-0.002500,0.249988,0,0);}
.m13_c00022{transform:matrix(0.769797,0.007698,-0.002500,0.249988,0,0);-ms-transform:matrix(0.769797,0.007698,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.769797,0.007698,-0.002500,0.249988,0,0);}
.mf_c00022{transform:matrix(0.782331,0.007823,-0.002500,0.249988,0,0);-ms-transform:matrix(0.782331,0.007823,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.782331,0.007823,-0.002500,0.249988,0,0);}
.m9_c00022{transform:matrix(0.782986,0.007830,-0.002500,0.249988,0,0);-ms-transform:matrix(0.782986,0.007830,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.782986,0.007830,-0.002500,0.249988,0,0);}
.m34_c00022{transform:matrix(0.820165,0.005741,-0.001750,0.249994,0,0);-ms-transform:matrix(0.820165,0.005741,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.820165,0.005741,-0.001750,0.249994,0,0);}
.m47_c00022{transform:matrix(0.838285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.838285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.838285,0.000000,0.000000,0.250000,0,0);}
.m20_c00022{transform:matrix(0.906300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.906300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.906300,0.000000,0.000000,0.250000,0,0);}
.m2f_c00022{transform:matrix(0.920842,0.006446,-0.001750,0.249994,0,0);-ms-transform:matrix(0.920842,0.006446,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.920842,0.006446,-0.001750,0.249994,0,0);}
.m32_c00022{transform:matrix(1.001210,0.007008,-0.001750,0.249994,0,0);-ms-transform:matrix(1.001210,0.007008,-0.001750,0.249994,0,0);-webkit-transform:matrix(1.001210,0.007008,-0.001750,0.249994,0,0);}
.m59_c00022{transform:matrix(1.018412,0.025460,-0.006248,0.249922,0,0);-ms-transform:matrix(1.018412,0.025460,-0.006248,0.249922,0,0);-webkit-transform:matrix(1.018412,0.025460,-0.006248,0.249922,0,0);}
.m52_c00022{transform:matrix(1.039385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.039385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.039385,0.000000,0.000000,0.250000,0,0);}
.mb_c00022{transform:matrix(1.079866,0.010799,-0.002500,0.249988,0,0);-ms-transform:matrix(1.079866,0.010799,-0.002500,0.249988,0,0);-webkit-transform:matrix(1.079866,0.010799,-0.002500,0.249988,0,0);}
.m1d_c00022{transform:matrix(1.104275,0.011043,-0.002500,0.249988,0,0);-ms-transform:matrix(1.104275,0.011043,-0.002500,0.249988,0,0);-webkit-transform:matrix(1.104275,0.011043,-0.002500,0.249988,0,0);}
.me_c00022{transform:matrix(1.130068,0.011301,-0.002500,0.249988,0,0);-ms-transform:matrix(1.130068,0.011301,-0.002500,0.249988,0,0);-webkit-transform:matrix(1.130068,0.011301,-0.002500,0.249988,0,0);}
.m5a_c00022{transform:matrix(1.301148,0.032529,-0.006248,0.249922,0,0);-ms-transform:matrix(1.301148,0.032529,-0.006248,0.249922,0,0);-webkit-transform:matrix(1.301148,0.032529,-0.006248,0.249922,0,0);}
.m19_c00022{transform:matrix(1.778336,0.017783,-0.002500,0.249988,0,0);-ms-transform:matrix(1.778336,0.017783,-0.002500,0.249988,0,0);-webkit-transform:matrix(1.778336,0.017783,-0.002500,0.249988,0,0);}
.m60_c00022{transform:matrix(1.789506,0.044738,-0.006248,0.249922,0,0);-ms-transform:matrix(1.789506,0.044738,-0.006248,0.249922,0,0);-webkit-transform:matrix(1.789506,0.044738,-0.006248,0.249922,0,0);}
.v0_c00022{vertical-align:0.000000px;}
.ls0_c00022{letter-spacing:0.000000px;}
.sc__c00022{text-shadow:none;}
.sc0_c00022{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__c00022{-webkit-text-stroke:0px transparent;}
.sc0_c00022{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00022{word-spacing:0.000000px;}
.fc0_c00022{color:transparent;}
.fs0_c00022{font-size:18.000000px;}
.fsb_c00022{font-size:24.000000px;}
.fsf_c00022{font-size:24.007499px;}
.fsc_c00022{font-size:30.000000px;}
.fs9_c00022{font-size:42.000000px;}
.fsd_c00022{font-size:54.000000px;}
.fs2_c00022{font-size:54.002700px;}
.fse_c00022{font-size:60.000000px;}
.fs8_c00022{font-size:60.001470px;}
.fsa_c00022{font-size:72.000000px;}
.fs3_c00022{font-size:84.004200px;}
.fs7_c00022{font-size:96.002352px;}
.fs6_c00022{font-size:114.000000px;}
.fs1_c00022{font-size:156.007800px;}
.fs5_c00022{font-size:180.000000px;}
.fs4_c00022{font-size:180.009000px;}
.y0_c00022{bottom:0.000000px;}
.y56_c00022{bottom:25.129125px;}
.y55_c00022{bottom:25.681763px;}
.y54_c00022{bottom:26.418450px;}
.y53_c00022{bottom:26.774925px;}
.y52_c00022{bottom:27.464887px;}
.y51_c00022{bottom:27.989550px;}
.y50_c00022{bottom:28.808588px;}
.y4f_c00022{bottom:30.252975px;}
.y4e_c00022{bottom:30.496913px;}
.y4d_c00022{bottom:30.781500px;}
.y4b_c00022{bottom:60.819000px;}
.y4a_c00022{bottom:61.200000px;}
.y49_c00022{bottom:61.803000px;}
.y48_c00022{bottom:62.569500px;}
.y47_c00022{bottom:63.133500px;}
.y46_c00022{bottom:63.664500px;}
.y45_c00022{bottom:70.810500px;}
.y43_c00022{bottom:71.325000px;}
.y44_c00022{bottom:71.824500px;}
.y36_c00022{bottom:74.010000px;}
.y42_c00022{bottom:76.081500px;}
.y41_c00022{bottom:76.396500px;}
.y4c_c00022{bottom:76.546500px;}
.y40_c00022{bottom:76.633500px;}
.y3f_c00022{bottom:76.951500px;}
.y3e_c00022{bottom:98.689500px;}
.y35_c00022{bottom:108.270000px;}
.y3d_c00022{bottom:113.181000px;}
.y3c_c00022{bottom:113.901000px;}
.y3b_c00022{bottom:114.132000px;}
.y3a_c00022{bottom:114.466500px;}
.y39_c00022{bottom:114.957000px;}
.y38_c00022{bottom:115.831500px;}
.y37_c00022{bottom:125.002500px;}
.y34_c00022{bottom:267.853929px;}
.y33_c00022{bottom:270.016208px;}
.y32_c00022{bottom:270.528008px;}
.y31_c00022{bottom:271.213121px;}
.y30_c00022{bottom:271.720313px;}
.y2f_c00022{bottom:272.384880px;}
.y2e_c00022{bottom:273.519882px;}
.y2d_c00022{bottom:301.789691px;}
.y2c_c00022{bottom:302.146491px;}
.y2b_c00022{bottom:302.402030px;}
.y2a_c00022{bottom:303.030938px;}
.y29_c00022{bottom:303.337559px;}
.y28_c00022{bottom:304.524374px;}
.y27_c00022{bottom:305.503394px;}
.y26_c00022{bottom:305.803946px;}
.y25_c00022{bottom:306.348255px;}
.y24_c00022{bottom:306.971955px;}
.y23_c00022{bottom:307.531500px;}
.y22_c00022{bottom:313.957500px;}
.y21_c00022{bottom:322.381500px;}
.y20_c00022{bottom:337.528500px;}
.y1e_c00022{bottom:366.869175px;}
.y1d_c00022{bottom:372.369960px;}
.y1c_c00022{bottom:372.961905px;}
.y1b_c00022{bottom:375.033195px;}
.y1a_c00022{bottom:380.567880px;}
.y19_c00022{bottom:381.950340px;}
.y18_c00022{bottom:383.580255px;}
.y17_c00022{bottom:384.561060px;}
.y16_c00022{bottom:385.244850px;}
.y15_c00022{bottom:385.728120px;}
.y14_c00022{bottom:387.110700px;}
.y13_c00022{bottom:387.447375px;}
.y1f_c00022{bottom:399.060000px;}
.y12_c00022{bottom:447.180390px;}
.y11_c00022{bottom:447.548940px;}
.y10_c00022{bottom:448.013475px;}
.yf_c00022{bottom:448.806345px;}
.ye_c00022{bottom:449.339595px;}
.yd_c00022{bottom:450.244440px;}
.yc_c00022{bottom:450.994935px;}
.yb_c00022{bottom:451.211985px;}
.ya_c00022{bottom:451.956000px;}
.y9_c00022{bottom:452.478180px;}
.y8_c00022{bottom:453.147840px;}
.y7_c00022{bottom:453.880110px;}
.y6_c00022{bottom:454.446480px;}
.y5_c00022{bottom:454.679805px;}
.y2_c00022{bottom:457.380000px;}
.y1_c00022{bottom:464.670000px;}
.y4_c00022{bottom:472.588590px;}
.y3_c00022{bottom:481.951500px;}
.h2_c00022{height:18.000000px;}
.hd_c00022{height:24.000000px;}
.h11_c00022{height:24.007499px;}
.he_c00022{height:30.000000px;}
.hb_c00022{height:42.000000px;}
.hf_c00022{height:54.000000px;}
.h4_c00022{height:54.002700px;}
.h10_c00022{height:60.000000px;}
.ha_c00022{height:60.001470px;}
.hc_c00022{height:72.000000px;}
.h5_c00022{height:84.004200px;}
.h9_c00022{height:96.002352px;}
.h8_c00022{height:114.000000px;}
.h3_c00022{height:156.007800px;}
.h7_c00022{height:180.000000px;}
.h6_c00022{height:180.009000px;}
.h1_c00022{height:693.750000px;}
.h0_c00022{height:693.900000px;}
.w0_c00022{width:959.040000px;}
.w1_c00022{width:959.250000px;}
.x0_c00022{left:0.000000px;}
.x4a_c00022{left:1.303500px;}
.x19_c00022{left:2.970000px;}
.x1_c00022{left:4.320000px;}
.x2_c00022{left:5.758500px;}
.x10_c00022{left:7.926270px;}
.x4b_c00022{left:12.687000px;}
.x4c_c00022{left:22.444500px;}
.x39_c00022{left:27.729000px;}
.x34_c00022{left:29.700000px;}
.x4_c00022{left:33.338235px;}
.x11_c00022{left:41.593770px;}
.x42_c00022{left:45.169500px;}
.x3e_c00022{left:53.376000px;}
.x3a_c00022{left:65.760000px;}
.x4d_c00022{left:80.220000px;}
.x35_c00022{left:81.810000px;}
.x3b_c00022{left:87.054000px;}
.x1c_c00022{left:90.835500px;}
.x3f_c00022{left:93.097500px;}
.x3c_c00022{left:101.598000px;}
.x5_c00022{left:104.076645px;}
.x36_c00022{left:110.700000px;}
.x43_c00022{left:112.740000px;}
.x37_c00022{left:122.040000px;}
.x4e_c00022{left:133.968000px;}
.x38_c00022{left:136.080000px;}
.x3d_c00022{left:142.920000px;}
.x40_c00022{left:162.204000px;}
.x1d_c00022{left:170.770500px;}
.x4f_c00022{left:175.825500px;}
.x17_c00022{left:178.045440px;}
.x12_c00022{left:179.851770px;}
.x27_c00022{left:190.976337px;}
.x6_c00022{left:195.605475px;}
.x2e_c00022{left:202.230000px;}
.x50_c00022{left:205.293000px;}
.x13_c00022{left:228.178770px;}
.x30_c00022{left:234.900000px;}
.x1a_c00022{left:254.070000px;}
.x1e_c00022{left:259.870500px;}
.x2f_c00022{left:266.760000px;}
.x7_c00022{left:279.373155px;}
.x14_c00022{left:296.557770px;}
.x31_c00022{left:308.340000px;}
.x28_c00022{left:332.761340px;}
.x1f_c00022{left:337.629000px;}
.x8_c00022{left:344.642460px;}
.x32_c00022{left:359.100000px;}
.x20_c00022{left:380.565000px;}
.x15_c00022{left:394.638270px;}
.x29_c00022{left:415.913262px;}
.x9_c00022{left:437.645820px;}
.xa_c00022{left:464.751360px;}
.x2a_c00022{left:479.368821px;}
.x33_c00022{left:517.860000px;}
.x21_c00022{left:520.425000px;}
.xb_c00022{left:558.552735px;}
.x2b_c00022{left:565.027223px;}
.x44_c00022{left:589.150500px;}
.x45_c00022{left:624.565500px;}
.x2c_c00022{left:628.926771px;}
.x46_c00022{left:662.143500px;}
.xc_c00022{left:671.689500px;}
.x18_c00022{left:685.758285px;}
.x22_c00022{left:689.970000px;}
.x16_c00022{left:695.875770px;}
.x47_c00022{left:713.211000px;}
.x23_c00022{left:733.773000px;}
.xd_c00022{left:738.365835px;}
.x48_c00022{left:753.427500px;}
.x41_c00022{left:756.742500px;}
.x49_c00022{left:778.806000px;}
.x24_c00022{left:823.617000px;}
.xe_c00022{left:837.454815px;}
.x25_c00022{left:860.122500px;}
.xf_c00022{left:895.609485px;}
.x2d_c00022{left:899.250381px;}
.x26_c00022{left:911.094000px;}
.x1b_c00022{left:940.140000px;}
.x3_c00022{left:942.049500px;}
@media print{
.v0_c00022{vertical-align:0.000000pt;}
.ls0_c00022{letter-spacing:0.000000pt;}
.ws0_c00022{word-spacing:0.000000pt;}
.fs0_c00022{font-size:16.000000pt;}
.fsb_c00022{font-size:21.333333pt;}
.fsf_c00022{font-size:21.339999pt;}
.fsc_c00022{font-size:26.666667pt;}
.fs9_c00022{font-size:37.333333pt;}
.fsd_c00022{font-size:48.000000pt;}
.fs2_c00022{font-size:48.002400pt;}
.fse_c00022{font-size:53.333333pt;}
.fs8_c00022{font-size:53.334640pt;}
.fsa_c00022{font-size:64.000000pt;}
.fs3_c00022{font-size:74.670400pt;}
.fs7_c00022{font-size:85.335424pt;}
.fs6_c00022{font-size:101.333333pt;}
.fs1_c00022{font-size:138.673600pt;}
.fs5_c00022{font-size:160.000000pt;}
.fs4_c00022{font-size:160.008000pt;}
.y0_c00022{bottom:0.000000pt;}
.y56_c00022{bottom:22.337000pt;}
.y55_c00022{bottom:22.828233pt;}
.y54_c00022{bottom:23.483067pt;}
.y53_c00022{bottom:23.799933pt;}
.y52_c00022{bottom:24.413233pt;}
.y51_c00022{bottom:24.879600pt;}
.y50_c00022{bottom:25.607633pt;}
.y4f_c00022{bottom:26.891533pt;}
.y4e_c00022{bottom:27.108367pt;}
.y4d_c00022{bottom:27.361333pt;}
.y4b_c00022{bottom:54.061333pt;}
.y4a_c00022{bottom:54.400000pt;}
.y49_c00022{bottom:54.936000pt;}
.y48_c00022{bottom:55.617333pt;}
.y47_c00022{bottom:56.118667pt;}
.y46_c00022{bottom:56.590667pt;}
.y45_c00022{bottom:62.942667pt;}
.y43_c00022{bottom:63.400000pt;}
.y44_c00022{bottom:63.844000pt;}
.y36_c00022{bottom:65.786667pt;}
.y42_c00022{bottom:67.628000pt;}
.y41_c00022{bottom:67.908000pt;}
.y4c_c00022{bottom:68.041333pt;}
.y40_c00022{bottom:68.118667pt;}
.y3f_c00022{bottom:68.401333pt;}
.y3e_c00022{bottom:87.724000pt;}
.y35_c00022{bottom:96.240000pt;}
.y3d_c00022{bottom:100.605333pt;}
.y3c_c00022{bottom:101.245333pt;}
.y3b_c00022{bottom:101.450667pt;}
.y3a_c00022{bottom:101.748000pt;}
.y39_c00022{bottom:102.184000pt;}
.y38_c00022{bottom:102.961333pt;}
.y37_c00022{bottom:111.113333pt;}
.y34_c00022{bottom:238.092381pt;}
.y33_c00022{bottom:240.014407pt;}
.y32_c00022{bottom:240.469340pt;}
.y31_c00022{bottom:241.078329pt;}
.y30_c00022{bottom:241.529167pt;}
.y2f_c00022{bottom:242.119893pt;}
.y2e_c00022{bottom:243.128784pt;}
.y2d_c00022{bottom:268.257503pt;}
.y2c_c00022{bottom:268.574659pt;}
.y2b_c00022{bottom:268.801804pt;}
.y2a_c00022{bottom:269.360833pt;}
.y29_c00022{bottom:269.633385pt;}
.y28_c00022{bottom:270.688332pt;}
.y27_c00022{bottom:271.558572pt;}
.y26_c00022{bottom:271.825729pt;}
.y25_c00022{bottom:272.309560pt;}
.y24_c00022{bottom:272.863960pt;}
.y23_c00022{bottom:273.361333pt;}
.y22_c00022{bottom:279.073333pt;}
.y21_c00022{bottom:286.561333pt;}
.y20_c00022{bottom:300.025333pt;}
.y1e_c00022{bottom:326.105933pt;}
.y1d_c00022{bottom:330.995520pt;}
.y1c_c00022{bottom:331.521693pt;}
.y1b_c00022{bottom:333.362840pt;}
.y1a_c00022{bottom:338.282560pt;}
.y19_c00022{bottom:339.511413pt;}
.y18_c00022{bottom:340.960227pt;}
.y17_c00022{bottom:341.832053pt;}
.y16_c00022{bottom:342.439867pt;}
.y15_c00022{bottom:342.869440pt;}
.y14_c00022{bottom:344.098400pt;}
.y13_c00022{bottom:344.397667pt;}
.y1f_c00022{bottom:354.720000pt;}
.y12_c00022{bottom:397.493680pt;}
.y11_c00022{bottom:397.821280pt;}
.y10_c00022{bottom:398.234200pt;}
.yf_c00022{bottom:398.938973pt;}
.ye_c00022{bottom:399.412973pt;}
.yd_c00022{bottom:400.217280pt;}
.yc_c00022{bottom:400.884387pt;}
.yb_c00022{bottom:401.077320pt;}
.ya_c00022{bottom:401.738667pt;}
.y9_c00022{bottom:402.202827pt;}
.y8_c00022{bottom:402.798080pt;}
.y7_c00022{bottom:403.448987pt;}
.y6_c00022{bottom:403.952427pt;}
.y5_c00022{bottom:404.159827pt;}
.y2_c00022{bottom:406.560000pt;}
.y1_c00022{bottom:413.040000pt;}
.y4_c00022{bottom:420.078747pt;}
.y3_c00022{bottom:428.401333pt;}
.h2_c00022{height:16.000000pt;}
.hd_c00022{height:21.333333pt;}
.h11_c00022{height:21.339999pt;}
.he_c00022{height:26.666667pt;}
.hb_c00022{height:37.333333pt;}
.hf_c00022{height:48.000000pt;}
.h4_c00022{height:48.002400pt;}
.h10_c00022{height:53.333333pt;}
.ha_c00022{height:53.334640pt;}
.hc_c00022{height:64.000000pt;}
.h5_c00022{height:74.670400pt;}
.h9_c00022{height:85.335424pt;}
.h8_c00022{height:101.333333pt;}
.h3_c00022{height:138.673600pt;}
.h7_c00022{height:160.000000pt;}
.h6_c00022{height:160.008000pt;}
.h1_c00022{height:616.666667pt;}
.h0_c00022{height:616.800000pt;}
.w0_c00022{width:852.480000pt;}
.w1_c00022{width:852.666667pt;}
.x0_c00022{left:0.000000pt;}
.x4a_c00022{left:1.158667pt;}
.x19_c00022{left:2.640000pt;}
.x1_c00022{left:3.840000pt;}
.x2_c00022{left:5.118667pt;}
.x10_c00022{left:7.045573pt;}
.x4b_c00022{left:11.277333pt;}
.x4c_c00022{left:19.950667pt;}
.x39_c00022{left:24.648000pt;}
.x34_c00022{left:26.400000pt;}
.x4_c00022{left:29.633987pt;}
.x11_c00022{left:36.972240pt;}
.x42_c00022{left:40.150667pt;}
.x3e_c00022{left:47.445333pt;}
.x3a_c00022{left:58.453333pt;}
.x4d_c00022{left:71.306667pt;}
.x35_c00022{left:72.720000pt;}
.x3b_c00022{left:77.381333pt;}
.x1c_c00022{left:80.742667pt;}
.x3f_c00022{left:82.753333pt;}
.x3c_c00022{left:90.309333pt;}
.x5_c00022{left:92.512573pt;}
.x36_c00022{left:98.400000pt;}
.x43_c00022{left:100.213333pt;}
.x37_c00022{left:108.480000pt;}
.x4e_c00022{left:119.082667pt;}
.x38_c00022{left:120.960000pt;}
.x3d_c00022{left:127.040000pt;}
.x40_c00022{left:144.181333pt;}
.x1d_c00022{left:151.796000pt;}
.x4f_c00022{left:156.289333pt;}
.x17_c00022{left:158.262613pt;}
.x12_c00022{left:159.868240pt;}
.x27_c00022{left:169.756744pt;}
.x6_c00022{left:173.871533pt;}
.x2e_c00022{left:179.760000pt;}
.x50_c00022{left:182.482667pt;}
.x13_c00022{left:202.825573pt;}
.x30_c00022{left:208.800000pt;}
.x1a_c00022{left:225.840000pt;}
.x1e_c00022{left:230.996000pt;}
.x2f_c00022{left:237.120000pt;}
.x7_c00022{left:248.331693pt;}
.x14_c00022{left:263.606907pt;}
.x31_c00022{left:274.080000pt;}
.x28_c00022{left:295.787857pt;}
.x1f_c00022{left:300.114667pt;}
.x8_c00022{left:306.348853pt;}
.x32_c00022{left:319.200000pt;}
.x20_c00022{left:338.280000pt;}
.x15_c00022{left:350.789573pt;}
.x29_c00022{left:369.700677pt;}
.x9_c00022{left:389.018507pt;}
.xa_c00022{left:413.112320pt;}
.x2a_c00022{left:426.105619pt;}
.x33_c00022{left:460.320000pt;}
.x21_c00022{left:462.600000pt;}
.xb_c00022{left:496.491320pt;}
.x2b_c00022{left:502.246420pt;}
.x44_c00022{left:523.689333pt;}
.x45_c00022{left:555.169333pt;}
.x2c_c00022{left:559.046019pt;}
.x46_c00022{left:588.572000pt;}
.xc_c00022{left:597.057333pt;}
.x18_c00022{left:609.562920pt;}
.x22_c00022{left:613.306667pt;}
.x16_c00022{left:618.556240pt;}
.x47_c00022{left:633.965333pt;}
.x23_c00022{left:652.242667pt;}
.xd_c00022{left:656.325187pt;}
.x48_c00022{left:669.713333pt;}
.x41_c00022{left:672.660000pt;}
.x49_c00022{left:692.272000pt;}
.x24_c00022{left:732.104000pt;}
.xe_c00022{left:744.404280pt;}
.x25_c00022{left:764.553333pt;}
.xf_c00022{left:796.097320pt;}
.x2d_c00022{left:799.333672pt;}
.x26_c00022{left:809.861333pt;}
.x1b_c00022{left:835.680000pt;}
.x3_c00022{left:837.377333pt;}
}





/* 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_c00023 {
    display:none;
  }
  .loading-indicator_c00023.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00023 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_c00023 { 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_c00023" -> "#page-container .classname_c00023")
 */
.pf_c00023 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00023 { /* 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_c00023.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00023 { /* 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_c00023 { /* 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_c00023 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00023 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00023 {overflow:visible;}
  }
}
.c_c00023 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00023 { /* 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_c00023:after { /* webkit #35443 */
  content: '';
}
.t_c00023:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00023 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 */
}
.__c00023 { /* 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_c00023 { /* info for Javascript */
  display:none;
}
.l_c00023 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00023 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00023 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00023: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_c00023 {
    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_c00023.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00023.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_c00023 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00023{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00023;src:url('chunks/assets/font_6b78c10203a447bee2208e8d.woff2')format("woff");}.ff1_c00023{font-family:ff1_c00023;line-height:1.000000;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;}
.m6_c00023{transform:matrix(0.181735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181735,0.000000,0.000000,0.250000,0,0);}
.m9_c00023{transform:matrix(0.207440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207440,0.000000,0.000000,0.250000,0,0);}
.m2_c00023{transform:matrix(0.212130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212130,0.000000,0.000000,0.250000,0,0);}
.m0_c00023{transform:matrix(0.212265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212265,0.000000,0.000000,0.250000,0,0);}
.m8_c00023{transform:matrix(0.259755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259755,0.000000,0.000000,0.250000,0,0);}
.m7_c00023{transform:matrix(0.317900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317900,0.000000,0.000000,0.250000,0,0);}
.m1_c00023{transform:matrix(0.352585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352585,0.000000,0.000000,0.250000,0,0);}
.m5_c00023{transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);}
.m3_c00023{transform:matrix(0.651250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.651250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.651250,0.000000,0.000000,0.250000,0,0);}
.ma_c00023{transform:matrix(0.937710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.937710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.937710,0.000000,0.000000,0.250000,0,0);}
.m4_c00023{transform:matrix(1.077630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.077630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.077630,0.000000,0.000000,0.250000,0,0);}
.v0_c00023{vertical-align:0.000000px;}
.ls0_c00023{letter-spacing:0.000000px;}
.sc__c00023{text-shadow:none;}
.sc0_c00023{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__c00023{-webkit-text-stroke:0px transparent;}
.sc0_c00023{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00023{word-spacing:0.000000px;}
.fc0_c00023{color:transparent;}
.fs1_c00023{font-size:18.000000px;}
.fs0_c00023{font-size:24.000000px;}
.fs3_c00023{font-size:48.000000px;}
.fs4_c00023{font-size:60.000000px;}
.fs2_c00023{font-size:108.000000px;}
.y0_c00023{bottom:0.000000px;}
.y9_c00023{bottom:96.660000px;}
.y8_c00023{bottom:124.740000px;}
.y4_c00023{bottom:133.380000px;}
.y3_c00023{bottom:141.480000px;}
.y7_c00023{bottom:149.850000px;}
.y2_c00023{bottom:161.460000px;}
.y6_c00023{bottom:184.950000px;}
.y5_c00023{bottom:197.503500px;}
.y1_c00023{bottom:689.040000px;}
.h3_c00023{height:18.000000px;}
.h2_c00023{height:24.000000px;}
.h5_c00023{height:48.000000px;}
.h6_c00023{height:60.000000px;}
.h4_c00023{height:108.000000px;}
.h1_c00023{height:693.750000px;}
.h0_c00023{height:693.900000px;}
.w0_c00023{width:959.040000px;}
.w1_c00023{width:959.250000px;}
.x0_c00023{left:0.000000px;}
.x6_c00023{left:4.050000px;}
.x1_c00023{left:572.940000px;}
.x2_c00023{left:582.660000px;}
.x5_c00023{left:938.520000px;}
.x3_c00023{left:942.570000px;}
.x4_c00023{left:943.650000px;}
@media print{
.v0_c00023{vertical-align:0.000000pt;}
.ls0_c00023{letter-spacing:0.000000pt;}
.ws0_c00023{word-spacing:0.000000pt;}
.fs1_c00023{font-size:16.000000pt;}
.fs0_c00023{font-size:21.333333pt;}
.fs3_c00023{font-size:42.666667pt;}
.fs4_c00023{font-size:53.333333pt;}
.fs2_c00023{font-size:96.000000pt;}
.y0_c00023{bottom:0.000000pt;}
.y9_c00023{bottom:85.920000pt;}
.y8_c00023{bottom:110.880000pt;}
.y4_c00023{bottom:118.560000pt;}
.y3_c00023{bottom:125.760000pt;}
.y7_c00023{bottom:133.200000pt;}
.y2_c00023{bottom:143.520000pt;}
.y6_c00023{bottom:164.400000pt;}
.y5_c00023{bottom:175.558667pt;}
.y1_c00023{bottom:612.480000pt;}
.h3_c00023{height:16.000000pt;}
.h2_c00023{height:21.333333pt;}
.h5_c00023{height:42.666667pt;}
.h6_c00023{height:53.333333pt;}
.h4_c00023{height:96.000000pt;}
.h1_c00023{height:616.666667pt;}
.h0_c00023{height:616.800000pt;}
.w0_c00023{width:852.480000pt;}
.w1_c00023{width:852.666667pt;}
.x0_c00023{left:0.000000pt;}
.x6_c00023{left:3.600000pt;}
.x1_c00023{left:509.280000pt;}
.x2_c00023{left:517.920000pt;}
.x5_c00023{left:834.240000pt;}
.x3_c00023{left:837.840000pt;}
.x4_c00023{left:838.800000pt;}
}





/* 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_c00024 {
    display:none;
  }
  .loading-indicator_c00024.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00024 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_c00024 { 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_c00024" -> "#page-container .classname_c00024")
 */
.pf_c00024 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00024 { /* 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_c00024.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00024 { /* 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_c00024 { /* 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_c00024 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00024 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00024 {overflow:visible;}
  }
}
.c_c00024 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00024 { /* 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_c00024:after { /* webkit #35443 */
  content: '';
}
.t_c00024:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00024 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 */
}
.__c00024 { /* 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_c00024 { /* info for Javascript */
  display:none;
}
.l_c00024 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00024 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00024 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00024: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_c00024 {
    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_c00024.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00024.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_c00024 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00024{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00024;src:url('chunks/assets/font_fcacd0c005e4f737375e2290.woff2')format("woff");}.ff1_c00024{font-family:ff1_c00024;line-height:1.000000;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;}
.m13_c00024{transform:matrix(0.047145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.047145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.047145,0.000000,0.000000,0.250000,0,0);}
.m10_c00024{transform:matrix(0.172855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172855,0.000000,0.000000,0.250000,0,0);}
.m1f_c00024{transform:matrix(0.218665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218665,0.000000,0.000000,0.250000,0,0);}
.me_c00024{transform:matrix(0.236115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236115,0.000000,0.000000,0.250000,0,0);}
.m1e_c00024{transform:matrix(0.248120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248120,0.000000,0.000000,0.250000,0,0);}
.m15_c00024{transform:matrix(0.249100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249100,0.000000,0.000000,0.250000,0,0);}
.md_c00024{transform:matrix(0.260485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260485,0.000000,0.000000,0.250000,0,0);}
.m1_c00024{transform:matrix(0.278895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278895,0.000000,0.000000,0.250000,0,0);}
.mf_c00024{transform:matrix(0.283100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283100,0.000000,0.000000,0.250000,0,0);}
.m4_c00024{transform:matrix(0.299520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299520,0.000000,0.000000,0.250000,0,0);}
.m18_c00024{transform:matrix(0.313815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313815,0.000000,0.000000,0.250000,0,0);}
.m1d_c00024{transform:matrix(0.322260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322260,0.000000,0.000000,0.250000,0,0);}
.m14_c00024{transform:matrix(0.339255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339255,0.000000,0.000000,0.250000,0,0);}
.mc_c00024{transform:matrix(0.341270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341270,0.000000,0.000000,0.250000,0,0);}
.m2_c00024{transform:matrix(0.357015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357015,0.000000,0.000000,0.250000,0,0);}
.mb_c00024{transform:matrix(0.366500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366500,0.000000,0.000000,0.250000,0,0);}
.m19_c00024{transform:matrix(0.378230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378230,0.000000,0.000000,0.250000,0,0);}
.m1c_c00024{transform:matrix(0.400260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400260,0.000000,0.000000,0.250000,0,0);}
.m12_c00024{transform:matrix(0.410900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410900,0.000000,0.000000,0.250000,0,0);}
.m6_c00024{transform:matrix(0.478625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478625,0.000000,0.000000,0.250000,0,0);}
.m3_c00024{transform:matrix(0.479460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479460,0.000000,0.000000,0.250000,0,0);}
.m5_c00024{transform:matrix(0.499595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.499595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.499595,0.000000,0.000000,0.250000,0,0);}
.m16_c00024{transform:matrix(0.510630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510630,0.000000,0.000000,0.250000,0,0);}
.m1b_c00024{transform:matrix(0.608620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608620,0.000000,0.000000,0.250000,0,0);}
.m17_c00024{transform:matrix(0.609385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609385,0.000000,0.000000,0.250000,0,0);}
.ma_c00024{transform:matrix(0.709535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.709535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.709535,0.000000,0.000000,0.250000,0,0);}
.m11_c00024{transform:matrix(0.772405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.772405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.772405,0.000000,0.000000,0.250000,0,0);}
.m8_c00024{transform:matrix(0.960445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.960445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.960445,0.000000,0.000000,0.250000,0,0);}
.m7_c00024{transform:matrix(1.056470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.056470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.056470,0.000000,0.000000,0.250000,0,0);}
.m1a_c00024{transform:matrix(1.084300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.084300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.084300,0.000000,0.000000,0.250000,0,0);}
.m9_c00024{transform:matrix(1.117640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.117640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.117640,0.000000,0.000000,0.250000,0,0);}
.m0_c00024{transform:matrix(2.262230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.262230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.262230,0.000000,0.000000,0.250000,0,0);}
.v0_c00024{vertical-align:0.000000px;}
.ls0_c00024{letter-spacing:0.000000px;}
.sc__c00024{text-shadow:none;}
.sc0_c00024{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__c00024{-webkit-text-stroke:0px transparent;}
.sc0_c00024{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00024{word-spacing:0.000000px;}
.fc0_c00024{color:transparent;}
.fs0_c00024{font-size:72.000000px;}
.fs3_c00024{font-size:96.000000px;}
.fs4_c00024{font-size:102.000000px;}
.fs1_c00024{font-size:120.000000px;}
.fs2_c00024{font-size:174.000000px;}
.y0_c00024{bottom:0.000000px;}
.y5_c00024{bottom:412.327500px;}
.y4_c00024{bottom:457.306500px;}
.y3_c00024{bottom:488.109000px;}
.y2_c00024{bottom:534.870000px;}
.y1_c00024{bottom:609.153000px;}
.h2_c00024{height:72.000000px;}
.h5_c00024{height:96.000000px;}
.h6_c00024{height:102.000000px;}
.h3_c00024{height:120.000000px;}
.h4_c00024{height:174.000000px;}
.h1_c00024{height:693.750000px;}
.h0_c00024{height:693.900000px;}
.w0_c00024{width:959.040000px;}
.w1_c00024{width:959.250000px;}
.x0_c00024{left:0.000000px;}
.x14_c00024{left:9.180000px;}
.x1c_c00024{left:27.000000px;}
.x15_c00024{left:32.130000px;}
.x1_c00024{left:37.530000px;}
.x16_c00024{left:95.040000px;}
.xa_c00024{left:107.190000px;}
.x2_c00024{left:125.820000px;}
.x1d_c00024{left:134.460000px;}
.x17_c00024{left:177.660000px;}
.x3_c00024{left:190.620000px;}
.x1e_c00024{left:217.890000px;}
.x11_c00024{left:252.180000px;}
.xb_c00024{left:281.340000px;}
.x4_c00024{left:287.820000px;}
.x1f_c00024{left:311.580000px;}
.x12_c00024{left:325.080000px;}
.x20_c00024{left:345.330000px;}
.x5_c00024{left:398.520000px;}
.xc_c00024{left:414.990000px;}
.x18_c00024{left:433.350000px;}
.x6_c00024{left:441.450000px;}
.xd_c00024{left:487.080000px;}
.xe_c00024{left:570.780000px;}
.x7_c00024{left:580.770000px;}
.x13_c00024{left:585.630000px;}
.x19_c00024{left:609.660000px;}
.x8_c00024{left:665.820000px;}
.x1a_c00024{left:701.730000px;}
.xf_c00024{left:758.970000px;}
.x9_c00024{left:779.220000px;}
.x10_c00024{left:824.040000px;}
.x1b_c00024{left:846.180000px;}
@media print{
.v0_c00024{vertical-align:0.000000pt;}
.ls0_c00024{letter-spacing:0.000000pt;}
.ws0_c00024{word-spacing:0.000000pt;}
.fs0_c00024{font-size:64.000000pt;}
.fs3_c00024{font-size:85.333333pt;}
.fs4_c00024{font-size:90.666667pt;}
.fs1_c00024{font-size:106.666667pt;}
.fs2_c00024{font-size:154.666667pt;}
.y0_c00024{bottom:0.000000pt;}
.y5_c00024{bottom:366.513333pt;}
.y4_c00024{bottom:406.494667pt;}
.y3_c00024{bottom:433.874667pt;}
.y2_c00024{bottom:475.440000pt;}
.y1_c00024{bottom:541.469333pt;}
.h2_c00024{height:64.000000pt;}
.h5_c00024{height:85.333333pt;}
.h6_c00024{height:90.666667pt;}
.h3_c00024{height:106.666667pt;}
.h4_c00024{height:154.666667pt;}
.h1_c00024{height:616.666667pt;}
.h0_c00024{height:616.800000pt;}
.w0_c00024{width:852.480000pt;}
.w1_c00024{width:852.666667pt;}
.x0_c00024{left:0.000000pt;}
.x14_c00024{left:8.160000pt;}
.x1c_c00024{left:24.000000pt;}
.x15_c00024{left:28.560000pt;}
.x1_c00024{left:33.360000pt;}
.x16_c00024{left:84.480000pt;}
.xa_c00024{left:95.280000pt;}
.x2_c00024{left:111.840000pt;}
.x1d_c00024{left:119.520000pt;}
.x17_c00024{left:157.920000pt;}
.x3_c00024{left:169.440000pt;}
.x1e_c00024{left:193.680000pt;}
.x11_c00024{left:224.160000pt;}
.xb_c00024{left:250.080000pt;}
.x4_c00024{left:255.840000pt;}
.x1f_c00024{left:276.960000pt;}
.x12_c00024{left:288.960000pt;}
.x20_c00024{left:306.960000pt;}
.x5_c00024{left:354.240000pt;}
.xc_c00024{left:368.880000pt;}
.x18_c00024{left:385.200000pt;}
.x6_c00024{left:392.400000pt;}
.xd_c00024{left:432.960000pt;}
.xe_c00024{left:507.360000pt;}
.x7_c00024{left:516.240000pt;}
.x13_c00024{left:520.560000pt;}
.x19_c00024{left:541.920000pt;}
.x8_c00024{left:591.840000pt;}
.x1a_c00024{left:623.760000pt;}
.xf_c00024{left:674.640000pt;}
.x9_c00024{left:692.640000pt;}
.x10_c00024{left:732.480000pt;}
.x1b_c00024{left:752.160000pt;}
}





/* 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_c00025 {
    display:none;
  }
  .loading-indicator_c00025.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00025 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_c00025 { 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_c00025" -> "#page-container .classname_c00025")
 */
.pf_c00025 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00025 { /* 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_c00025.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00025 { /* 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_c00025 { /* 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_c00025 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00025 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00025 {overflow:visible;}
  }
}
.c_c00025 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00025 { /* 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_c00025:after { /* webkit #35443 */
  content: '';
}
.t_c00025:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00025 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 */
}
.__c00025 { /* 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_c00025 { /* info for Javascript */
  display:none;
}
.l_c00025 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00025 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00025 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00025: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_c00025 {
    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_c00025.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00025.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_c00025 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00025{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00025;src:url('chunks/assets/font_53ec0c54e60da7c2d414b553.woff2')format("woff");}.ff1_c00025{font-family:ff1_c00025;line-height:1.000000;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;}
.m13_c00025{transform:matrix(0.056250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.056250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.056250,0.000000,0.000000,0.250000,0,0);}
.m15_c00025{transform:matrix(0.057120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.057120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.057120,0.000000,0.000000,0.250000,0,0);}
.m1a_c00025{transform:matrix(0.060465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060465,0.000000,0.000000,0.250000,0,0);}
.m14_c00025{transform:matrix(0.079725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.079725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.079725,0.000000,0.000000,0.250000,0,0);}
.me_c00025{transform:matrix(0.106725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106725,0.000000,0.000000,0.250000,0,0);}
.m4_c00025{transform:matrix(0.109200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109200,0.000000,0.000000,0.250000,0,0);}
.m3_c00025{transform:matrix(0.123695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123695,0.000000,0.000000,0.250000,0,0);}
.m17_c00025{transform:matrix(0.148410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148410,0.000000,0.000000,0.250000,0,0);}
.m8_c00025{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m2_c00025{transform:matrix(0.156605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156605,0.000000,0.000000,0.250000,0,0);}
.m19_c00025{transform:matrix(0.170075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170075,0.000000,0.000000,0.250000,0,0);}
.m7_c00025{transform:matrix(0.181245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181245,0.000000,0.000000,0.250000,0,0);}
.m18_c00025{transform:matrix(0.233450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233450,0.000000,0.000000,0.250000,0,0);}
.m16_c00025{transform:matrix(0.234905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234905,0.000000,0.000000,0.250000,0,0);}
.m1b_c00025{transform:matrix(0.275365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275365,0.000000,0.000000,0.250000,0,0);}
.mb_c00025{transform:matrix(0.276585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276585,0.000000,0.000000,0.250000,0,0);}
.m0_c00025{transform:matrix(0.278925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278925,0.000000,0.000000,0.250000,0,0);}
.m5_c00025{transform:matrix(0.322490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322490,0.000000,0.000000,0.250000,0,0);}
.m6_c00025{transform:matrix(0.366785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366785,0.000000,0.000000,0.250000,0,0);}
.m1_c00025{transform:matrix(0.440460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440460,0.000000,0.000000,0.250000,0,0);}
.m9_c00025{transform:matrix(0.536655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536655,0.000000,0.000000,0.250000,0,0);}
.ma_c00025{transform:matrix(0.560445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560445,0.000000,0.000000,0.250000,0,0);}
.mc_c00025{transform:matrix(0.616605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.616605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.616605,0.000000,0.000000,0.250000,0,0);}
.m11_c00025{transform:matrix(0.658975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.658975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.658975,0.000000,0.000000,0.250000,0,0);}
.m12_c00025{transform:matrix(1.076925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.076925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.076925,0.000000,0.000000,0.250000,0,0);}
.md_c00025{transform:matrix(1.181575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.181575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.181575,0.000000,0.000000,0.250000,0,0);}
.m10_c00025{transform:matrix(1.194410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.194410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.194410,0.000000,0.000000,0.250000,0,0);}
.mf_c00025{transform:matrix(1.819095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.819095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.819095,0.000000,0.000000,0.250000,0,0);}
.v0_c00025{vertical-align:0.000000px;}
.ls0_c00025{letter-spacing:0.000000px;}
.sc__c00025{text-shadow:none;}
.sc0_c00025{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__c00025{-webkit-text-stroke:0px transparent;}
.sc0_c00025{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00025{word-spacing:0.000000px;}
.fc0_c00025{color:transparent;}
.fs3_c00025{font-size:12.000000px;}
.fs0_c00025{font-size:18.000000px;}
.fs1_c00025{font-size:24.000000px;}
.fs2_c00025{font-size:36.000000px;}
.y0_c00025{bottom:0.000000px;}
.ya_c00025{bottom:111.240000px;}
.y9_c00025{bottom:154.170000px;}
.y8_c00025{bottom:202.500000px;}
.y7_c00025{bottom:288.766500px;}
.y6_c00025{bottom:485.730000px;}
.y5_c00025{bottom:493.290000px;}
.y4_c00025{bottom:519.210000px;}
.y3_c00025{bottom:566.460000px;}
.y2_c00025{bottom:684.274500px;}
.y1_c00025{bottom:689.626500px;}
.h5_c00025{height:12.000000px;}
.h2_c00025{height:18.000000px;}
.h3_c00025{height:24.000000px;}
.h4_c00025{height:36.000000px;}
.h1_c00025{height:693.750000px;}
.h0_c00025{height:693.900000px;}
.w0_c00025{width:959.040000px;}
.w1_c00025{width:959.250000px;}
.x0_c00025{left:0.000000px;}
.xe_c00025{left:2.160000px;}
.x15_c00025{left:3.780000px;}
.x16_c00025{left:4.860000px;}
.x1_c00025{left:7.290000px;}
.x2_c00025{left:17.010000px;}
.x3_c00025{left:40.230000px;}
.x19_c00025{left:94.230000px;}
.xf_c00025{left:111.780000px;}
.x14_c00025{left:123.660000px;}
.x10_c00025{left:141.750000px;}
.x4_c00025{left:152.820000px;}
.x17_c00025{left:154.980000px;}
.x5_c00025{left:169.560000px;}
.x6_c00025{left:210.060000px;}
.x11_c00025{left:233.280000px;}
.x7_c00025{left:239.490000px;}
.x12_c00025{left:356.130000px;}
.x8_c00025{left:361.260000px;}
.x9_c00025{left:369.360000px;}
.xa_c00025{left:377.460000px;}
.xb_c00025{left:394.200000px;}
.x18_c00025{left:410.940000px;}
.xc_c00025{left:422.280000px;}
.xd_c00025{left:436.320000px;}
.x13_c00025{left:446.040000px;}
@media print{
.v0_c00025{vertical-align:0.000000pt;}
.ls0_c00025{letter-spacing:0.000000pt;}
.ws0_c00025{word-spacing:0.000000pt;}
.fs3_c00025{font-size:10.666667pt;}
.fs0_c00025{font-size:16.000000pt;}
.fs1_c00025{font-size:21.333333pt;}
.fs2_c00025{font-size:32.000000pt;}
.y0_c00025{bottom:0.000000pt;}
.ya_c00025{bottom:98.880000pt;}
.y9_c00025{bottom:137.040000pt;}
.y8_c00025{bottom:180.000000pt;}
.y7_c00025{bottom:256.681333pt;}
.y6_c00025{bottom:431.760000pt;}
.y5_c00025{bottom:438.480000pt;}
.y4_c00025{bottom:461.520000pt;}
.y3_c00025{bottom:503.520000pt;}
.y2_c00025{bottom:608.244000pt;}
.y1_c00025{bottom:613.001333pt;}
.h5_c00025{height:10.666667pt;}
.h2_c00025{height:16.000000pt;}
.h3_c00025{height:21.333333pt;}
.h4_c00025{height:32.000000pt;}
.h1_c00025{height:616.666667pt;}
.h0_c00025{height:616.800000pt;}
.w0_c00025{width:852.480000pt;}
.w1_c00025{width:852.666667pt;}
.x0_c00025{left:0.000000pt;}
.xe_c00025{left:1.920000pt;}
.x15_c00025{left:3.360000pt;}
.x16_c00025{left:4.320000pt;}
.x1_c00025{left:6.480000pt;}
.x2_c00025{left:15.120000pt;}
.x3_c00025{left:35.760000pt;}
.x19_c00025{left:83.760000pt;}
.xf_c00025{left:99.360000pt;}
.x14_c00025{left:109.920000pt;}
.x10_c00025{left:126.000000pt;}
.x4_c00025{left:135.840000pt;}
.x17_c00025{left:137.760000pt;}
.x5_c00025{left:150.720000pt;}
.x6_c00025{left:186.720000pt;}
.x11_c00025{left:207.360000pt;}
.x7_c00025{left:212.880000pt;}
.x12_c00025{left:316.560000pt;}
.x8_c00025{left:321.120000pt;}
.x9_c00025{left:328.320000pt;}
.xa_c00025{left:335.520000pt;}
.xb_c00025{left:350.400000pt;}
.x18_c00025{left:365.280000pt;}
.xc_c00025{left:375.360000pt;}
.xd_c00025{left:387.840000pt;}
.x13_c00025{left:396.480000pt;}
}





/* 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_c00026 {
    display:none;
  }
  .loading-indicator_c00026.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00026 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_c00026 { 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_c00026" -> "#page-container .classname_c00026")
 */
.pf_c00026 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00026 { /* 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_c00026.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00026 { /* 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_c00026 { /* 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_c00026 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00026 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00026 {overflow:visible;}
  }
}
.c_c00026 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00026 { /* 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_c00026:after { /* webkit #35443 */
  content: '';
}
.t_c00026:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00026 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 */
}
.__c00026 { /* 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_c00026 { /* info for Javascript */
  display:none;
}
.l_c00026 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00026 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00026 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00026: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_c00026 {
    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_c00026.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00026.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_c00026 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00026{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00026;src:url('chunks/assets/font_7c6b9abe6ee2a268480c528b.woff2')format("woff");}.ff1_c00026{font-family:ff1_c00026;line-height:1.000000;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;}
.m10_c00026{transform:matrix(0.012729,0.000178,-0.003500,0.249976,0,0);-ms-transform:matrix(0.012729,0.000178,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.012729,0.000178,-0.003500,0.249976,0,0);}
.ma_c00026{transform:matrix(0.035572,0.000498,-0.003500,0.249976,0,0);-ms-transform:matrix(0.035572,0.000498,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.035572,0.000498,-0.003500,0.249976,0,0);}
.m23_c00026{transform:matrix(0.078473,0.001020,-0.003250,0.249979,0,0);-ms-transform:matrix(0.078473,0.001020,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.078473,0.001020,-0.003250,0.249979,0,0);}
.m6_c00026{transform:matrix(0.110029,0.001540,-0.003500,0.249976,0,0);-ms-transform:matrix(0.110029,0.001540,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.110029,0.001540,-0.003500,0.249976,0,0);}
.m0_c00026{transform:matrix(0.128495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128495,0.000000,0.000000,0.250000,0,0);}
.m9_c00026{transform:matrix(0.147956,0.002071,-0.003500,0.249976,0,0);-ms-transform:matrix(0.147956,0.002071,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.147956,0.002071,-0.003500,0.249976,0,0);}
.m5_c00026{transform:matrix(0.183142,0.002564,-0.003500,0.249976,0,0);-ms-transform:matrix(0.183142,0.002564,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.183142,0.002564,-0.003500,0.249976,0,0);}
.m38_c00026{transform:matrix(0.190265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190265,0.000000,0.000000,0.250000,0,0);}
.mb_c00026{transform:matrix(0.203725,0.002852,-0.003500,0.249976,0,0);-ms-transform:matrix(0.203725,0.002852,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.203725,0.002852,-0.003500,0.249976,0,0);}
.m35_c00026{transform:matrix(0.211166,0.003167,-0.003750,0.249972,0,0);-ms-transform:matrix(0.211166,0.003167,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.211166,0.003167,-0.003750,0.249972,0,0);}
.m11_c00026{transform:matrix(0.221348,0.003099,-0.003500,0.249976,0,0);-ms-transform:matrix(0.221348,0.003099,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.221348,0.003099,-0.003500,0.249976,0,0);}
.m20_c00026{transform:matrix(0.244308,0.003665,-0.003750,0.249972,0,0);-ms-transform:matrix(0.244308,0.003665,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.244308,0.003665,-0.003750,0.249972,0,0);}
.m17_c00026{transform:matrix(0.254170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254170,0.000000,0.000000,0.250000,0,0);}
.m1c_c00026{transform:matrix(0.263695,0.003955,-0.003750,0.249972,0,0);-ms-transform:matrix(0.263695,0.003955,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.263695,0.003955,-0.003750,0.249972,0,0);}
.m36_c00026{transform:matrix(0.266330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266330,0.000000,0.000000,0.250000,0,0);}
.m21_c00026{transform:matrix(0.270495,0.004057,-0.003750,0.249972,0,0);-ms-transform:matrix(0.270495,0.004057,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.270495,0.004057,-0.003750,0.249972,0,0);}
.m37_c00026{transform:matrix(0.278550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278550,0.000000,0.000000,0.250000,0,0);}
.m18_c00026{transform:matrix(0.307010,0.004605,-0.003750,0.249972,0,0);-ms-transform:matrix(0.307010,0.004605,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.307010,0.004605,-0.003750,0.249972,0,0);}
.mf_c00026{transform:matrix(0.319969,0.004480,-0.003500,0.249976,0,0);-ms-transform:matrix(0.319969,0.004480,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.319969,0.004480,-0.003500,0.249976,0,0);}
.m30_c00026{transform:matrix(0.323289,0.004849,-0.003750,0.249972,0,0);-ms-transform:matrix(0.323289,0.004849,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.323289,0.004849,-0.003750,0.249972,0,0);}
.m7_c00026{transform:matrix(0.326358,0.004569,-0.003500,0.249976,0,0);-ms-transform:matrix(0.326358,0.004569,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.326358,0.004569,-0.003500,0.249976,0,0);}
.m2b_c00026{transform:matrix(0.326383,0.004896,-0.003750,0.249972,0,0);-ms-transform:matrix(0.326383,0.004896,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.326383,0.004896,-0.003750,0.249972,0,0);}
.md_c00026{transform:matrix(0.334077,0.004677,-0.003500,0.249976,0,0);-ms-transform:matrix(0.334077,0.004677,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.334077,0.004677,-0.003500,0.249976,0,0);}
.m34_c00026{transform:matrix(0.345391,0.005181,-0.003750,0.249972,0,0);-ms-transform:matrix(0.345391,0.005181,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.345391,0.005181,-0.003750,0.249972,0,0);}
.m19_c00026{transform:matrix(0.347611,0.005214,-0.003750,0.249972,0,0);-ms-transform:matrix(0.347611,0.005214,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.347611,0.005214,-0.003750,0.249972,0,0);}
.m1f_c00026{transform:matrix(0.349011,0.005235,-0.003750,0.249972,0,0);-ms-transform:matrix(0.349011,0.005235,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.349011,0.005235,-0.003750,0.249972,0,0);}
.m22_c00026{transform:matrix(0.349225,0.004540,-0.003250,0.249979,0,0);-ms-transform:matrix(0.349225,0.004540,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.349225,0.004540,-0.003250,0.249979,0,0);}
.mc_c00026{transform:matrix(0.351426,0.004920,-0.003500,0.249976,0,0);-ms-transform:matrix(0.351426,0.004920,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.351426,0.004920,-0.003500,0.249976,0,0);}
.m4_c00026{transform:matrix(0.368324,0.005157,-0.003500,0.249976,0,0);-ms-transform:matrix(0.368324,0.005157,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.368324,0.005157,-0.003500,0.249976,0,0);}
.m16_c00026{transform:matrix(0.390545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390545,0.000000,0.000000,0.250000,0,0);}
.m2f_c00026{transform:matrix(0.392431,0.005886,-0.003750,0.249972,0,0);-ms-transform:matrix(0.392431,0.005886,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.392431,0.005886,-0.003750,0.249972,0,0);}
.m14_c00026{transform:matrix(0.393590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393590,0.000000,0.000000,0.250000,0,0);}
.m1d_c00026{transform:matrix(0.400035,0.006001,-0.003750,0.249972,0,0);-ms-transform:matrix(0.400035,0.006001,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.400035,0.006001,-0.003750,0.249972,0,0);}
.m2a_c00026{transform:matrix(0.422312,0.006335,-0.003750,0.249972,0,0);-ms-transform:matrix(0.422312,0.006335,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.422312,0.006335,-0.003750,0.249972,0,0);}
.m15_c00026{transform:matrix(0.422885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422885,0.000000,0.000000,0.250000,0,0);}
.me_c00026{transform:matrix(0.437277,0.006122,-0.003500,0.249976,0,0);-ms-transform:matrix(0.437277,0.006122,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.437277,0.006122,-0.003500,0.249976,0,0);}
.m3_c00026{transform:matrix(0.458370,0.006417,-0.003500,0.249976,0,0);-ms-transform:matrix(0.458370,0.006417,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.458370,0.006417,-0.003500,0.249976,0,0);}
.m25_c00026{transform:matrix(0.475730,0.006184,-0.003250,0.249979,0,0);-ms-transform:matrix(0.475730,0.006184,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.475730,0.006184,-0.003250,0.249979,0,0);}
.m1e_c00026{transform:matrix(0.491450,0.007372,-0.003750,0.249972,0,0);-ms-transform:matrix(0.491450,0.007372,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.491450,0.007372,-0.003750,0.249972,0,0);}
.m29_c00026{transform:matrix(0.498639,0.007480,-0.003750,0.249972,0,0);-ms-transform:matrix(0.498639,0.007480,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.498639,0.007480,-0.003750,0.249972,0,0);}
.m1a_c00026{transform:matrix(0.511972,0.007680,-0.003750,0.249972,0,0);-ms-transform:matrix(0.511972,0.007680,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.511972,0.007680,-0.003750,0.249972,0,0);}
.m12_c00026{transform:matrix(0.520005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520005,0.000000,0.000000,0.250000,0,0);}
.m32_c00026{transform:matrix(0.550858,0.008263,-0.003750,0.249972,0,0);-ms-transform:matrix(0.550858,0.008263,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.550858,0.008263,-0.003750,0.249972,0,0);}
.m31_c00026{transform:matrix(0.593243,0.008899,-0.003750,0.249972,0,0);-ms-transform:matrix(0.593243,0.008899,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.593243,0.008899,-0.003750,0.249972,0,0);}
.m28_c00026{transform:matrix(0.594713,0.008921,-0.003750,0.249972,0,0);-ms-transform:matrix(0.594713,0.008921,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.594713,0.008921,-0.003750,0.249972,0,0);}
.m2e_c00026{transform:matrix(0.612241,0.009184,-0.003750,0.249972,0,0);-ms-transform:matrix(0.612241,0.009184,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.612241,0.009184,-0.003750,0.249972,0,0);}
.m2d_c00026{transform:matrix(0.613001,0.009195,-0.003750,0.249972,0,0);-ms-transform:matrix(0.613001,0.009195,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.613001,0.009195,-0.003750,0.249972,0,0);}
.m33_c00026{transform:matrix(0.617541,0.009263,-0.003750,0.249972,0,0);-ms-transform:matrix(0.617541,0.009263,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.617541,0.009263,-0.003750,0.249972,0,0);}
.m1_c00026{transform:matrix(0.723279,0.010126,-0.003500,0.249976,0,0);-ms-transform:matrix(0.723279,0.010126,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.723279,0.010126,-0.003500,0.249976,0,0);}
.m24_c00026{transform:matrix(0.754676,0.009811,-0.003250,0.249979,0,0);-ms-transform:matrix(0.754676,0.009811,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.754676,0.009811,-0.003250,0.249979,0,0);}
.m26_c00026{transform:matrix(0.786589,0.010226,-0.003250,0.249979,0,0);-ms-transform:matrix(0.786589,0.010226,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.786589,0.010226,-0.003250,0.249979,0,0);}
.m8_c00026{transform:matrix(0.868725,0.012162,-0.003500,0.249976,0,0);-ms-transform:matrix(0.868725,0.012162,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.868725,0.012162,-0.003500,0.249976,0,0);}
.m2c_c00026{transform:matrix(0.880731,0.013211,-0.003750,0.249972,0,0);-ms-transform:matrix(0.880731,0.013211,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.880731,0.013211,-0.003750,0.249972,0,0);}
.m27_c00026{transform:matrix(0.966033,0.012558,-0.003250,0.249979,0,0);-ms-transform:matrix(0.966033,0.012558,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.966033,0.012558,-0.003250,0.249979,0,0);}
.m2_c00026{transform:matrix(1.548333,0.021677,-0.003500,0.249976,0,0);-ms-transform:matrix(1.548333,0.021677,-0.003500,0.249976,0,0);-webkit-transform:matrix(1.548333,0.021677,-0.003500,0.249976,0,0);}
.m1b_c00026{transform:matrix(1.813026,0.027195,-0.003750,0.249972,0,0);-ms-transform:matrix(1.813026,0.027195,-0.003750,0.249972,0,0);-webkit-transform:matrix(1.813026,0.027195,-0.003750,0.249972,0,0);}
.m13_c00026{transform:matrix(1.944600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.944600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.944600,0.000000,0.000000,0.250000,0,0);}
.v0_c00026{vertical-align:0.000000px;}
.ls0_c00026{letter-spacing:0.000000px;}
.sc__c00026{text-shadow:none;}
.sc0_c00026{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__c00026{-webkit-text-stroke:0px transparent;}
.sc0_c00026{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00026{word-spacing:0.000000px;}
.fc0_c00026{color:transparent;}
.fs9_c00026{font-size:24.000000px;}
.fs2_c00026{font-size:24.002352px;}
.fs1_c00026{font-size:42.004116px;}
.fsb_c00026{font-size:54.000000px;}
.fs8_c00026{font-size:66.007425px;}
.fs4_c00026{font-size:72.000000px;}
.fs0_c00026{font-size:78.000000px;}
.fs6_c00026{font-size:78.006591px;}
.fs7_c00026{font-size:78.008775px;}
.fs5_c00026{font-size:84.009449px;}
.fsa_c00026{font-size:90.000000px;}
.fs3_c00026{font-size:90.008820px;}
.y0_c00026{bottom:0.000000px;}
.y31_c00026{bottom:22.916873px;}
.y30_c00026{bottom:24.707220px;}
.y2f_c00026{bottom:30.256867px;}
.y2e_c00026{bottom:46.023015px;}
.y2d_c00026{bottom:47.039452px;}
.y2c_c00026{bottom:47.735985px;}
.y2b_c00026{bottom:48.702360px;}
.y33_c00026{bottom:49.548000px;}
.y2a_c00026{bottom:49.861740px;}
.y29_c00026{bottom:51.201345px;}
.y28_c00026{bottom:53.124443px;}
.y27_c00026{bottom:53.829255px;}
.y1_c00026{bottom:54.000000px;}
.y26_c00026{bottom:55.167375px;}
.y25_c00026{bottom:56.637120px;}
.y24_c00026{bottom:57.261000px;}
.y23_c00026{bottom:89.178247px;}
.y22_c00026{bottom:90.933150px;}
.y21_c00026{bottom:91.673507px;}
.y20_c00026{bottom:93.523296px;}
.y1f_c00026{bottom:94.704879px;}
.y1e_c00026{bottom:95.853000px;}
.y32_c00026{bottom:98.820000px;}
.y1d_c00026{bottom:268.762155px;}
.y1c_c00026{bottom:269.270542px;}
.y1b_c00026{bottom:270.355830px;}
.y1a_c00026{bottom:272.303655px;}
.y19_c00026{bottom:273.279593px;}
.y18_c00026{bottom:274.235280px;}
.y17_c00026{bottom:278.471580px;}
.y16_c00026{bottom:279.629925px;}
.y15_c00026{bottom:280.062487px;}
.y14_c00026{bottom:280.801500px;}
.y13_c00026{bottom:598.366500px;}
.y34_c00026{bottom:613.710000px;}
.y12_c00026{bottom:646.021164px;}
.y11_c00026{bottom:646.297473px;}
.y10_c00026{bottom:650.747151px;}
.yf_c00026{bottom:651.516609px;}
.ye_c00026{bottom:674.363097px;}
.yd_c00026{bottom:674.894109px;}
.y9_c00026{bottom:676.484613px;}
.yc_c00026{bottom:677.197908px;}
.y8_c00026{bottom:678.866727px;}
.y7_c00026{bottom:683.228112px;}
.y6_c00026{bottom:683.749710px;}
.y5_c00026{bottom:684.324522px;}
.y4_c00026{bottom:685.242600px;}
.y3_c00026{bottom:686.463519px;}
.yb_c00026{bottom:687.120072px;}
.ya_c00026{bottom:688.226709px;}
.y2_c00026{bottom:689.041500px;}
.hb_c00026{height:24.000000px;}
.h4_c00026{height:24.002352px;}
.h3_c00026{height:42.004116px;}
.hd_c00026{height:54.000000px;}
.ha_c00026{height:66.007425px;}
.h6_c00026{height:72.000000px;}
.h2_c00026{height:78.000000px;}
.h8_c00026{height:78.006591px;}
.h9_c00026{height:78.008775px;}
.h7_c00026{height:84.009449px;}
.hc_c00026{height:90.000000px;}
.h5_c00026{height:90.008820px;}
.h1_c00026{height:693.750000px;}
.h0_c00026{height:693.900000px;}
.w0_c00026{width:959.040000px;}
.w1_c00026{width:959.250000px;}
.x0_c00026{left:0.000000px;}
.x1_c00026{left:5.670000px;}
.x2_c00026{left:12.352500px;}
.x26_c00026{left:24.222000px;}
.x20_c00026{left:26.250000px;}
.x33_c00026{left:35.370000px;}
.x27_c00026{left:65.814000px;}
.x16_c00026{left:80.661000px;}
.xa_c00026{left:85.942026px;}
.x21_c00026{left:114.567000px;}
.x17_c00026{left:129.928500px;}
.xe_c00026{left:140.045007px;}
.x18_c00026{left:158.766000px;}
.x28_c00026{left:163.797000px;}
.x3_c00026{left:196.494000px;}
.x22_c00026{left:205.458000px;}
.x19_c00026{left:235.989000px;}
.x29_c00026{left:253.005000px;}
.x4_c00026{left:283.702500px;}
.x2a_c00026{left:299.992500px;}
.x2f_c00026{left:310.556940px;}
.x23_c00026{left:347.749500px;}
.x5_c00026{left:349.279500px;}
.x6_c00026{left:390.337500px;}
.x24_c00026{left:404.700000px;}
.x11_c00026{left:417.420000px;}
.x7_c00026{left:427.594500px;}
.x12_c00026{left:483.570000px;}
.x1a_c00026{left:518.409000px;}
.x25_c00026{left:539.692500px;}
.x1b_c00026{left:582.121500px;}
.x2b_c00026{left:594.798000px;}
.x1c_c00026{left:647.184000px;}
.x2c_c00026{left:659.223000px;}
.x30_c00026{left:680.533440px;}
.x13_c00026{left:683.370000px;}
.x2d_c00026{left:705.658500px;}
.x8_c00026{left:739.122000px;}
.xb_c00026{left:747.408765px;}
.x14_c00026{left:753.840000px;}
.x2e_c00026{left:773.421000px;}
.x1d_c00026{left:777.039000px;}
.x31_c00026{left:799.889940px;}
.x15_c00026{left:826.200000px;}
.x1e_c00026{left:849.391500px;}
.x32_c00026{left:865.890000px;}
.xf_c00026{left:881.605041px;}
.x1f_c00026{left:883.284000px;}
.xc_c00026{left:901.035123px;}
.x9_c00026{left:909.273000px;}
.x10_c00026{left:927.703707px;}
.xd_c00026{left:936.392619px;}
.x34_c00026{left:945.270000px;}
@media print{
.v0_c00026{vertical-align:0.000000pt;}
.ls0_c00026{letter-spacing:0.000000pt;}
.ws0_c00026{word-spacing:0.000000pt;}
.fs9_c00026{font-size:21.333333pt;}
.fs2_c00026{font-size:21.335424pt;}
.fs1_c00026{font-size:37.336992pt;}
.fsb_c00026{font-size:48.000000pt;}
.fs8_c00026{font-size:58.673266pt;}
.fs4_c00026{font-size:64.000000pt;}
.fs0_c00026{font-size:69.333333pt;}
.fs6_c00026{font-size:69.339192pt;}
.fs7_c00026{font-size:69.341133pt;}
.fs5_c00026{font-size:74.675066pt;}
.fsa_c00026{font-size:80.000000pt;}
.fs3_c00026{font-size:80.007840pt;}
.y0_c00026{bottom:0.000000pt;}
.y31_c00026{bottom:20.370553pt;}
.y30_c00026{bottom:21.961973pt;}
.y2f_c00026{bottom:26.894993pt;}
.y2e_c00026{bottom:40.909347pt;}
.y2d_c00026{bottom:41.812847pt;}
.y2c_c00026{bottom:42.431987pt;}
.y2b_c00026{bottom:43.290987pt;}
.y33_c00026{bottom:44.042667pt;}
.y2a_c00026{bottom:44.321547pt;}
.y29_c00026{bottom:45.512307pt;}
.y28_c00026{bottom:47.221727pt;}
.y27_c00026{bottom:47.848227pt;}
.y1_c00026{bottom:48.000000pt;}
.y26_c00026{bottom:49.037667pt;}
.y25_c00026{bottom:50.344107pt;}
.y24_c00026{bottom:50.898667pt;}
.y23_c00026{bottom:79.269553pt;}
.y22_c00026{bottom:80.829467pt;}
.y21_c00026{bottom:81.487561pt;}
.y20_c00026{bottom:83.131819pt;}
.y1f_c00026{bottom:84.182115pt;}
.y1e_c00026{bottom:85.202667pt;}
.y32_c00026{bottom:87.840000pt;}
.y1d_c00026{bottom:238.899693pt;}
.y1c_c00026{bottom:239.351593pt;}
.y1b_c00026{bottom:240.316293pt;}
.y1a_c00026{bottom:242.047693pt;}
.y19_c00026{bottom:242.915193pt;}
.y18_c00026{bottom:243.764693pt;}
.y17_c00026{bottom:247.530293pt;}
.y16_c00026{bottom:248.559933pt;}
.y15_c00026{bottom:248.944433pt;}
.y14_c00026{bottom:249.601333pt;}
.y13_c00026{bottom:531.881333pt;}
.y34_c00026{bottom:545.520000pt;}
.y12_c00026{bottom:574.241035pt;}
.y11_c00026{bottom:574.486643pt;}
.y10_c00026{bottom:578.441912pt;}
.yf_c00026{bottom:579.125875pt;}
.ye_c00026{bottom:599.433864pt;}
.yd_c00026{bottom:599.905875pt;}
.y9_c00026{bottom:601.319656pt;}
.yc_c00026{bottom:601.953696pt;}
.y8_c00026{bottom:603.437091pt;}
.y7_c00026{bottom:607.313877pt;}
.y6_c00026{bottom:607.777520pt;}
.y5_c00026{bottom:608.288464pt;}
.y4_c00026{bottom:609.104533pt;}
.y3_c00026{bottom:610.189795pt;}
.yb_c00026{bottom:610.773397pt;}
.ya_c00026{bottom:611.757075pt;}
.y2_c00026{bottom:612.481333pt;}
.hb_c00026{height:21.333333pt;}
.h4_c00026{height:21.335424pt;}
.h3_c00026{height:37.336992pt;}
.hd_c00026{height:48.000000pt;}
.ha_c00026{height:58.673266pt;}
.h6_c00026{height:64.000000pt;}
.h2_c00026{height:69.333333pt;}
.h8_c00026{height:69.339192pt;}
.h9_c00026{height:69.341133pt;}
.h7_c00026{height:74.675066pt;}
.hc_c00026{height:80.000000pt;}
.h5_c00026{height:80.007840pt;}
.h1_c00026{height:616.666667pt;}
.h0_c00026{height:616.800000pt;}
.w0_c00026{width:852.480000pt;}
.w1_c00026{width:852.666667pt;}
.x0_c00026{left:0.000000pt;}
.x1_c00026{left:5.040000pt;}
.x2_c00026{left:10.980000pt;}
.x26_c00026{left:21.530667pt;}
.x20_c00026{left:23.333333pt;}
.x33_c00026{left:31.440000pt;}
.x27_c00026{left:58.501333pt;}
.x16_c00026{left:71.698667pt;}
.xa_c00026{left:76.392912pt;}
.x21_c00026{left:101.837333pt;}
.x17_c00026{left:115.492000pt;}
.xe_c00026{left:124.484451pt;}
.x18_c00026{left:141.125333pt;}
.x28_c00026{left:145.597333pt;}
.x3_c00026{left:174.661333pt;}
.x22_c00026{left:182.629333pt;}
.x19_c00026{left:209.768000pt;}
.x29_c00026{left:224.893333pt;}
.x4_c00026{left:252.180000pt;}
.x2a_c00026{left:266.660000pt;}
.x2f_c00026{left:276.050613pt;}
.x23_c00026{left:309.110667pt;}
.x5_c00026{left:310.470667pt;}
.x6_c00026{left:346.966667pt;}
.x24_c00026{left:359.733333pt;}
.x11_c00026{left:371.040000pt;}
.x7_c00026{left:380.084000pt;}
.x12_c00026{left:429.840000pt;}
.x1a_c00026{left:460.808000pt;}
.x25_c00026{left:479.726667pt;}
.x1b_c00026{left:517.441333pt;}
.x2b_c00026{left:528.709333pt;}
.x1c_c00026{left:575.274667pt;}
.x2c_c00026{left:585.976000pt;}
.x30_c00026{left:604.918613pt;}
.x13_c00026{left:607.440000pt;}
.x2d_c00026{left:627.252000pt;}
.x8_c00026{left:656.997333pt;}
.xb_c00026{left:664.363347pt;}
.x14_c00026{left:670.080000pt;}
.x2e_c00026{left:687.485333pt;}
.x1d_c00026{left:690.701333pt;}
.x31_c00026{left:711.013280pt;}
.x15_c00026{left:734.400000pt;}
.x1e_c00026{left:755.014667pt;}
.x32_c00026{left:769.680000pt;}
.xf_c00026{left:783.648925pt;}
.x1f_c00026{left:785.141333pt;}
.xc_c00026{left:800.920109pt;}
.x9_c00026{left:808.242667pt;}
.x10_c00026{left:824.625517pt;}
.xd_c00026{left:832.348995pt;}
.x34_c00026{left:840.240000pt;}
}





/* 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_c00027 {
    display:none;
  }
  .loading-indicator_c00027.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00027 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_c00027 { 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_c00027" -> "#page-container .classname_c00027")
 */
.pf_c00027 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00027 { /* 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_c00027.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00027 { /* 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_c00027 { /* 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_c00027 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00027 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00027 {overflow:visible;}
  }
}
.c_c00027 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00027 { /* 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_c00027:after { /* webkit #35443 */
  content: '';
}
.t_c00027:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00027 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 */
}
.__c00027 { /* 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_c00027 { /* info for Javascript */
  display:none;
}
.l_c00027 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00027 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00027 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00027: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_c00027 {
    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_c00027.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00027.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_c00027 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00027{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00027;src:url('chunks/assets/font_a922ad9dd70ab389832b6583.woff2')format("woff");}.ff1_c00027{font-family:ff1_c00027;line-height:1.000000;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;}
.m3_c00027{transform:matrix(0.181810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181810,0.000000,0.000000,0.250000,0,0);}
.m2_c00027{transform:matrix(0.188875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188875,0.000000,0.000000,0.250000,0,0);}
.m1_c00027{transform:matrix(0.200645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200645,0.000000,0.000000,0.250000,0,0);}
.mc_c00027{transform:matrix(0.307865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307865,0.000000,0.000000,0.250000,0,0);}
.m8_c00027{transform:matrix(0.366350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366350,0.000000,0.000000,0.250000,0,0);}
.ma_c00027{transform:matrix(0.387920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387920,0.000000,0.000000,0.250000,0,0);}
.me_c00027{transform:matrix(0.406405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406405,0.000000,0.000000,0.250000,0,0);}
.mb_c00027{transform:matrix(0.495965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495965,0.000000,0.000000,0.250000,0,0);}
.m9_c00027{transform:matrix(0.571705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571705,0.000000,0.000000,0.250000,0,0);}
.m4_c00027{transform:matrix(0.579800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579800,0.000000,0.000000,0.250000,0,0);}
.m5_c00027{transform:matrix(0.621225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.621225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.621225,0.000000,0.000000,0.250000,0,0);}
.md_c00027{transform:matrix(0.621300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.621300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.621300,0.000000,0.000000,0.250000,0,0);}
.m6_c00027{transform:matrix(0.927640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.927640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.927640,0.000000,0.000000,0.250000,0,0);}
.m7_c00027{transform:matrix(0.934345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.934345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.934345,0.000000,0.000000,0.250000,0,0);}
.m0_c00027{transform:matrix(1.124665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.124665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.124665,0.000000,0.000000,0.250000,0,0);}
.v0_c00027{vertical-align:0.000000px;}
.ls0_c00027{letter-spacing:0.000000px;}
.sc__c00027{text-shadow:none;}
.sc0_c00027{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__c00027{-webkit-text-stroke:0px transparent;}
.sc0_c00027{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00027{word-spacing:0.000000px;}
.fc0_c00027{color:transparent;}
.fs1_c00027{font-size:24.000000px;}
.fs0_c00027{font-size:78.000000px;}
.y0_c00027{bottom:0.000000px;}
.y2_c00027{bottom:0.445500px;}
.y1_c00027{bottom:0.792000px;}
.h3_c00027{height:24.000000px;}
.h2_c00027{height:78.000000px;}
.h1_c00027{height:693.750000px;}
.h0_c00027{height:693.900000px;}
.w0_c00027{width:959.040000px;}
.w1_c00027{width:959.250000px;}
.x0_c00027{left:0.000000px;}
.x1_c00027{left:178.200000px;}
.x2_c00027{left:253.260000px;}
.x3_c00027{left:284.040000px;}
.x4_c00027{left:345.870000px;}
.x5_c00027{left:394.200000px;}
.x6_c00027{left:438.210000px;}
.x7_c00027{left:477.630000px;}
.x8_c00027{left:526.230000px;}
.x9_c00027{left:603.990000px;}
.xa_c00027{left:659.610000px;}
.xb_c00027{left:683.100000px;}
.xc_c00027{left:705.240000px;}
.xd_c00027{left:733.050000px;}
.xe_c00027{left:758.970000px;}
@media print{
.v0_c00027{vertical-align:0.000000pt;}
.ls0_c00027{letter-spacing:0.000000pt;}
.ws0_c00027{word-spacing:0.000000pt;}
.fs1_c00027{font-size:21.333333pt;}
.fs0_c00027{font-size:69.333333pt;}
.y0_c00027{bottom:0.000000pt;}
.y2_c00027{bottom:0.396000pt;}
.y1_c00027{bottom:0.704000pt;}
.h3_c00027{height:21.333333pt;}
.h2_c00027{height:69.333333pt;}
.h1_c00027{height:616.666667pt;}
.h0_c00027{height:616.800000pt;}
.w0_c00027{width:852.480000pt;}
.w1_c00027{width:852.666667pt;}
.x0_c00027{left:0.000000pt;}
.x1_c00027{left:158.400000pt;}
.x2_c00027{left:225.120000pt;}
.x3_c00027{left:252.480000pt;}
.x4_c00027{left:307.440000pt;}
.x5_c00027{left:350.400000pt;}
.x6_c00027{left:389.520000pt;}
.x7_c00027{left:424.560000pt;}
.x8_c00027{left:467.760000pt;}
.x9_c00027{left:536.880000pt;}
.xa_c00027{left:586.320000pt;}
.xb_c00027{left:607.200000pt;}
.xc_c00027{left:626.880000pt;}
.xd_c00027{left:651.600000pt;}
.xe_c00027{left:674.640000pt;}
}





/* 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_c00028 {
    display:none;
  }
  .loading-indicator_c00028.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00028 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_c00028 { 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_c00028" -> "#page-container .classname_c00028")
 */
.pf_c00028 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00028 { /* 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_c00028.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00028 { /* 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_c00028 { /* 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_c00028 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00028 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00028 {overflow:visible;}
  }
}
.c_c00028 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00028 { /* 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_c00028:after { /* webkit #35443 */
  content: '';
}
.t_c00028:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00028 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 */
}
.__c00028 { /* 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_c00028 { /* info for Javascript */
  display:none;
}
.l_c00028 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00028 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00028 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00028: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_c00028 {
    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_c00028.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00028.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_c00028 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00028{font-family:sans-serif;visibility:hidden;}
.sc__c00028{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00028{-webkit-text-stroke:0px transparent;}
}
.y0_c00028{bottom:0.000000px;}
.h1_c00028{height:693.750000px;}
.h0_c00028{height:693.900000px;}
.w0_c00028{width:959.040000px;}
.w1_c00028{width:959.250000px;}
.x0_c00028{left:0.000000px;}
@media print{
.y0_c00028{bottom:0.000000pt;}
.h1_c00028{height:616.666667pt;}
.h0_c00028{height:616.800000pt;}
.w0_c00028{width:852.480000pt;}
.w1_c00028{width:852.666667pt;}
.x0_c00028{left:0.000000pt;}
}





/* 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_c00029 {
    display:none;
  }
  .loading-indicator_c00029.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00029 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_c00029 { 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_c00029" -> "#page-container .classname_c00029")
 */
.pf_c00029 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00029 { /* 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_c00029.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00029 { /* 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_c00029 { /* 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_c00029 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00029 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00029 {overflow:visible;}
  }
}
.c_c00029 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00029 { /* 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_c00029:after { /* webkit #35443 */
  content: '';
}
.t_c00029:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00029 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 */
}
.__c00029 { /* 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_c00029 { /* info for Javascript */
  display:none;
}
.l_c00029 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00029 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00029 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00029: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_c00029 {
    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_c00029.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00029.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_c00029 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00029{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00029;src:url('chunks/assets/font_bfe6362fd3009c591583128f.woff2')format("woff");}.ff1_c00029{font-family:ff1_c00029;line-height:1.000000;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;}
.mc_c00029{transform:matrix(0.020330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.020330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.020330,0.000000,0.000000,0.250000,0,0);}
.m9_c00029{transform:matrix(0.048960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.048960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.048960,0.000000,0.000000,0.250000,0,0);}
.m7_c00029{transform:matrix(0.051830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.051830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.051830,0.000000,0.000000,0.250000,0,0);}
.ma_c00029{transform:matrix(0.201840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201840,0.000000,0.000000,0.250000,0,0);}
.m8_c00029{transform:matrix(0.237695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237695,0.000000,0.000000,0.250000,0,0);}
.m2_c00029{transform:matrix(0.251855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251855,0.000000,0.000000,0.250000,0,0);}
.m4_c00029{transform:matrix(0.307635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307635,0.000000,0.000000,0.250000,0,0);}
.m3_c00029{transform:matrix(0.314820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314820,0.000000,0.000000,0.250000,0,0);}
.m6_c00029{transform:matrix(0.545215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545215,0.000000,0.000000,0.250000,0,0);}
.m5_c00029{transform:matrix(0.610890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.610890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.610890,0.000000,0.000000,0.250000,0,0);}
.m0_c00029{transform:matrix(0.656220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.656220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.656220,0.000000,0.000000,0.250000,0,0);}
.m1_c00029{transform:matrix(0.677765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.677765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.677765,0.000000,0.000000,0.250000,0,0);}
.mb_c00029{transform:matrix(0.905220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.905220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.905220,0.000000,0.000000,0.250000,0,0);}
.md_c00029{transform:matrix(1.467850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.467850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.467850,0.000000,0.000000,0.250000,0,0);}
.v0_c00029{vertical-align:0.000000px;}
.ls0_c00029{letter-spacing:0.000000px;}
.sc__c00029{text-shadow:none;}
.sc0_c00029{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__c00029{-webkit-text-stroke:0px transparent;}
.sc0_c00029{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00029{word-spacing:0.000000px;}
.fc0_c00029{color:transparent;}
.fs0_c00029{font-size:42.000000px;}
.y0_c00029{bottom:0.000000px;}
.h2_c00029{height:42.000000px;}
.h0_c00029{height:711.720000px;}
.h1_c00029{height:711.750000px;}
.w0_c00029{width:959.040000px;}
.w1_c00029{width:959.250000px;}
.x0_c00029{left:0.000000px;}
.x1_c00029{left:167.400000px;}
.x2_c00029{left:202.500000px;}
.x3_c00029{left:277.290000px;}
.x4_c00029{left:307.800000px;}
.x5_c00029{left:338.040000px;}
.x6_c00029{left:363.420000px;}
.x7_c00029{left:471.150000px;}
.x8_c00029{left:494.910000px;}
.x9_c00029{left:502.470000px;}
.xa_c00029{left:510.300000px;}
.xb_c00029{left:522.720000px;}
.xc_c00029{left:563.760000px;}
.xd_c00029{left:676.890000px;}
.xe_c00029{left:725.760000px;}
@media print{
.v0_c00029{vertical-align:0.000000pt;}
.ls0_c00029{letter-spacing:0.000000pt;}
.ws0_c00029{word-spacing:0.000000pt;}
.fs0_c00029{font-size:37.333333pt;}
.y0_c00029{bottom:0.000000pt;}
.h2_c00029{height:37.333333pt;}
.h0_c00029{height:632.640000pt;}
.h1_c00029{height:632.666667pt;}
.w0_c00029{width:852.480000pt;}
.w1_c00029{width:852.666667pt;}
.x0_c00029{left:0.000000pt;}
.x1_c00029{left:148.800000pt;}
.x2_c00029{left:180.000000pt;}
.x3_c00029{left:246.480000pt;}
.x4_c00029{left:273.600000pt;}
.x5_c00029{left:300.480000pt;}
.x6_c00029{left:323.040000pt;}
.x7_c00029{left:418.800000pt;}
.x8_c00029{left:439.920000pt;}
.x9_c00029{left:446.640000pt;}
.xa_c00029{left:453.600000pt;}
.xb_c00029{left:464.640000pt;}
.xc_c00029{left:501.120000pt;}
.xd_c00029{left:601.680000pt;}
.xe_c00029{left:645.120000pt;}
}





/* 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_c00030 {
    display:none;
  }
  .loading-indicator_c00030.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00030 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_c00030 { 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_c00030" -> "#page-container .classname_c00030")
 */
.pf_c00030 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00030 { /* 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_c00030.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00030 { /* 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_c00030 { /* 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_c00030 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00030 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00030 {overflow:visible;}
  }
}
.c_c00030 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00030 { /* 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_c00030:after { /* webkit #35443 */
  content: '';
}
.t_c00030:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00030 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 */
}
.__c00030 { /* 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_c00030 { /* info for Javascript */
  display:none;
}
.l_c00030 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00030 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00030 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00030: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_c00030 {
    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_c00030.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00030.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_c00030 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00030{font-family:sans-serif;visibility:hidden;}
.sc__c00030{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00030{-webkit-text-stroke:0px transparent;}
}
.y0_c00030{bottom:0.000000px;}
.h0_c00030{height:711.720000px;}
.h1_c00030{height:711.750000px;}
.w0_c00030{width:959.040000px;}
.w1_c00030{width:959.250000px;}
.x0_c00030{left:0.000000px;}
@media print{
.y0_c00030{bottom:0.000000pt;}
.h0_c00030{height:632.640000pt;}
.h1_c00030{height:632.666667pt;}
.w0_c00030{width:852.480000pt;}
.w1_c00030{width:852.666667pt;}
.x0_c00030{left:0.000000pt;}
}





/* 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_c00031 {
    display:none;
  }
  .loading-indicator_c00031.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00031 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_c00031 { 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_c00031" -> "#page-container .classname_c00031")
 */
.pf_c00031 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00031 { /* 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_c00031.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00031 { /* 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_c00031 { /* 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_c00031 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00031 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00031 {overflow:visible;}
  }
}
.c_c00031 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00031 { /* 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_c00031:after { /* webkit #35443 */
  content: '';
}
.t_c00031:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00031 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 */
}
.__c00031 { /* 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_c00031 { /* info for Javascript */
  display:none;
}
.l_c00031 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00031 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00031 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00031: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_c00031 {
    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_c00031.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00031.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_c00031 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00031{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00031;src:url('chunks/assets/font_91338875028c1bc55e42d757.woff2')format("woff");}.ff1_c00031{font-family:ff1_c00031;line-height:1.000000;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;}
.m0_c00031{transform:matrix(0.075465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.075465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.075465,0.000000,0.000000,0.250000,0,0);}
.mf_c00031{transform:matrix(0.204070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204070,0.000000,0.000000,0.250000,0,0);}
.md_c00031{transform:matrix(0.223675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223675,0.000000,0.000000,0.250000,0,0);}
.me_c00031{transform:matrix(0.229895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229895,0.000000,0.000000,0.250000,0,0);}
.m3_c00031{transform:matrix(0.265165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265165,0.000000,0.000000,0.250000,0,0);}
.m2_c00031{transform:matrix(0.279115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279115,0.000000,0.000000,0.250000,0,0);}
.mb_c00031{transform:matrix(0.280665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280665,0.000000,0.000000,0.250000,0,0);}
.mc_c00031{transform:matrix(0.280735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280735,0.000000,0.000000,0.250000,0,0);}
.ma_c00031{transform:matrix(0.287770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287770,0.000000,0.000000,0.250000,0,0);}
.m4_c00031{transform:matrix(0.297530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297530,0.000000,0.000000,0.250000,0,0);}
.m10_c00031{transform:matrix(0.314680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314680,0.000000,0.000000,0.250000,0,0);}
.m11_c00031{transform:matrix(0.340325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340325,0.000000,0.000000,0.250000,0,0);}
.m9_c00031{transform:matrix(0.407955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407955,0.000000,0.000000,0.250000,0,0);}
.m8_c00031{transform:matrix(0.435060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435060,0.000000,0.000000,0.250000,0,0);}
.m12_c00031{transform:matrix(0.537670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537670,0.000000,0.000000,0.250000,0,0);}
.m5_c00031{transform:matrix(0.720975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720975,0.000000,0.000000,0.250000,0,0);}
.m1_c00031{transform:matrix(0.736145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.736145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.736145,0.000000,0.000000,0.250000,0,0);}
.m7_c00031{transform:matrix(1.748030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.748030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.748030,0.000000,0.000000,0.250000,0,0);}
.m6_c00031{transform:matrix(1.755065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.755065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.755065,0.000000,0.000000,0.250000,0,0);}
.v0_c00031{vertical-align:0.000000px;}
.ls0_c00031{letter-spacing:0.000000px;}
.sc__c00031{text-shadow:none;}
.sc0_c00031{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__c00031{-webkit-text-stroke:0px transparent;}
.sc0_c00031{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00031{word-spacing:0.000000px;}
.fc0_c00031{color:transparent;}
.fs0_c00031{font-size:24.000000px;}
.fs1_c00031{font-size:36.000000px;}
.fs2_c00031{font-size:42.000000px;}
.fs3_c00031{font-size:48.000000px;}
.fs4_c00031{font-size:54.000000px;}
.y0_c00031{bottom:0.000000px;}
.y3_c00031{bottom:0.141000px;}
.y2_c00031{bottom:0.280500px;}
.y4_c00031{bottom:8.632500px;}
.y1_c00031{bottom:687.279000px;}
.h2_c00031{height:24.000000px;}
.h3_c00031{height:36.000000px;}
.h4_c00031{height:42.000000px;}
.h5_c00031{height:48.000000px;}
.h6_c00031{height:54.000000px;}
.h0_c00031{height:711.720000px;}
.h1_c00031{height:711.750000px;}
.w1_c00031{width:945.750000px;}
.w0_c00031{width:946.050000px;}
.x0_c00031{left:0.000000px;}
.x13_c00031{left:59.130000px;}
.x12_c00031{left:101.790000px;}
.x11_c00031{left:194.670000px;}
.x10_c00031{left:226.530000px;}
.xd_c00031{left:239.490000px;}
.xe_c00031{left:266.760000px;}
.xf_c00031{left:295.920000px;}
.xb_c00031{left:325.620000px;}
.xc_c00031{left:354.510000px;}
.x4_c00031{left:392.310000px;}
.x5_c00031{left:407.430000px;}
.x6_c00031{left:466.830000px;}
.x7_c00031{left:498.420000px;}
.x9_c00031{left:733.050000px;}
.xa_c00031{left:772.200000px;}
.x8_c00031{left:807.840000px;}
.x1_c00031{left:868.590000px;}
.x2_c00031{left:879.390000px;}
.x3_c00031{left:901.260000px;}
@media print{
.v0_c00031{vertical-align:0.000000pt;}
.ls0_c00031{letter-spacing:0.000000pt;}
.ws0_c00031{word-spacing:0.000000pt;}
.fs0_c00031{font-size:21.333333pt;}
.fs1_c00031{font-size:32.000000pt;}
.fs2_c00031{font-size:37.333333pt;}
.fs3_c00031{font-size:42.666667pt;}
.fs4_c00031{font-size:48.000000pt;}
.y0_c00031{bottom:0.000000pt;}
.y3_c00031{bottom:0.125333pt;}
.y2_c00031{bottom:0.249333pt;}
.y4_c00031{bottom:7.673333pt;}
.y1_c00031{bottom:610.914667pt;}
.h2_c00031{height:21.333333pt;}
.h3_c00031{height:32.000000pt;}
.h4_c00031{height:37.333333pt;}
.h5_c00031{height:42.666667pt;}
.h6_c00031{height:48.000000pt;}
.h0_c00031{height:632.640000pt;}
.h1_c00031{height:632.666667pt;}
.w1_c00031{width:840.666667pt;}
.w0_c00031{width:840.933333pt;}
.x0_c00031{left:0.000000pt;}
.x13_c00031{left:52.560000pt;}
.x12_c00031{left:90.480000pt;}
.x11_c00031{left:173.040000pt;}
.x10_c00031{left:201.360000pt;}
.xd_c00031{left:212.880000pt;}
.xe_c00031{left:237.120000pt;}
.xf_c00031{left:263.040000pt;}
.xb_c00031{left:289.440000pt;}
.xc_c00031{left:315.120000pt;}
.x4_c00031{left:348.720000pt;}
.x5_c00031{left:362.160000pt;}
.x6_c00031{left:414.960000pt;}
.x7_c00031{left:443.040000pt;}
.x9_c00031{left:651.600000pt;}
.xa_c00031{left:686.400000pt;}
.x8_c00031{left:718.080000pt;}
.x1_c00031{left:772.080000pt;}
.x2_c00031{left:781.680000pt;}
.x3_c00031{left:801.120000pt;}
}





/* 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_c00032 {
    display:none;
  }
  .loading-indicator_c00032.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00032 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_c00032 { 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_c00032" -> "#page-container .classname_c00032")
 */
.pf_c00032 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00032 { /* 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_c00032.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00032 { /* 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_c00032 { /* 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_c00032 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00032 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00032 {overflow:visible;}
  }
}
.c_c00032 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00032 { /* 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_c00032:after { /* webkit #35443 */
  content: '';
}
.t_c00032:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00032 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 */
}
.__c00032 { /* 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_c00032 { /* info for Javascript */
  display:none;
}
.l_c00032 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00032 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00032 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00032: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_c00032 {
    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_c00032.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00032.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_c00032 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00032{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00032;src:url('chunks/assets/font_ffdda91d43f5751d6c5cd797.woff2')format("woff");}.ff1_c00032{font-family:ff1_c00032;line-height:1.000000;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;}
.m0_c00032{transform:matrix(0.035255,-0.002652,0.018753,0.249296,0,0);-ms-transform:matrix(0.035255,-0.002652,0.018753,0.249296,0,0);-webkit-transform:matrix(0.035255,-0.002652,0.018753,0.249296,0,0);}
.m11_c00032{transform:matrix(0.168414,-0.012669,0.018753,0.249296,0,0);-ms-transform:matrix(0.168414,-0.012669,0.018753,0.249296,0,0);-webkit-transform:matrix(0.168414,-0.012669,0.018753,0.249296,0,0);}
.m16_c00032{transform:matrix(0.175913,-0.013233,0.018753,0.249296,0,0);-ms-transform:matrix(0.175913,-0.013233,0.018753,0.249296,0,0);-webkit-transform:matrix(0.175913,-0.013233,0.018753,0.249296,0,0);}
.m8_c00032{transform:matrix(0.197372,-0.014847,0.018753,0.249296,0,0);-ms-transform:matrix(0.197372,-0.014847,0.018753,0.249296,0,0);-webkit-transform:matrix(0.197372,-0.014847,0.018753,0.249296,0,0);}
.m1e_c00032{transform:matrix(0.223142,-0.018353,0.020492,0.249159,0,0);-ms-transform:matrix(0.223142,-0.018353,0.020492,0.249159,0,0);-webkit-transform:matrix(0.223142,-0.018353,0.020492,0.249159,0,0);}
.mc_c00032{transform:matrix(0.226465,-0.017036,0.018753,0.249296,0,0);-ms-transform:matrix(0.226465,-0.017036,0.018753,0.249296,0,0);-webkit-transform:matrix(0.226465,-0.017036,0.018753,0.249296,0,0);}
.md_c00032{transform:matrix(0.228973,-0.017225,0.018753,0.249296,0,0);-ms-transform:matrix(0.228973,-0.017225,0.018753,0.249296,0,0);-webkit-transform:matrix(0.228973,-0.017225,0.018753,0.249296,0,0);}
.mf_c00032{transform:matrix(0.229502,-0.017264,0.018753,0.249296,0,0);-ms-transform:matrix(0.229502,-0.017264,0.018753,0.249296,0,0);-webkit-transform:matrix(0.229502,-0.017264,0.018753,0.249296,0,0);}
.m18_c00032{transform:matrix(0.233789,-0.017587,0.018753,0.249296,0,0);-ms-transform:matrix(0.233789,-0.017587,0.018753,0.249296,0,0);-webkit-transform:matrix(0.233789,-0.017587,0.018753,0.249296,0,0);}
.m1f_c00032{transform:matrix(0.237070,-0.019498,0.020492,0.249159,0,0);-ms-transform:matrix(0.237070,-0.019498,0.020492,0.249159,0,0);-webkit-transform:matrix(0.237070,-0.019498,0.020492,0.249159,0,0);}
.m21_c00032{transform:matrix(0.256389,-0.021087,0.020492,0.249159,0,0);-ms-transform:matrix(0.256389,-0.021087,0.020492,0.249159,0,0);-webkit-transform:matrix(0.256389,-0.021087,0.020492,0.249159,0,0);}
.m13_c00032{transform:matrix(0.283783,-0.021348,0.018753,0.249296,0,0);-ms-transform:matrix(0.283783,-0.021348,0.018753,0.249296,0,0);-webkit-transform:matrix(0.283783,-0.021348,0.018753,0.249296,0,0);}
.m1c_c00032{transform:matrix(0.287418,-0.021621,0.018753,0.249296,0,0);-ms-transform:matrix(0.287418,-0.021621,0.018753,0.249296,0,0);-webkit-transform:matrix(0.287418,-0.021621,0.018753,0.249296,0,0);}
.mb_c00032{transform:matrix(0.288176,-0.021678,0.018753,0.249296,0,0);-ms-transform:matrix(0.288176,-0.021678,0.018753,0.249296,0,0);-webkit-transform:matrix(0.288176,-0.021678,0.018753,0.249296,0,0);}
.m7_c00032{transform:matrix(0.290404,-0.021846,0.018753,0.249296,0,0);-ms-transform:matrix(0.290404,-0.021846,0.018753,0.249296,0,0);-webkit-transform:matrix(0.290404,-0.021846,0.018753,0.249296,0,0);}
.m19_c00032{transform:matrix(0.384120,-0.028896,0.018753,0.249296,0,0);-ms-transform:matrix(0.384120,-0.028896,0.018753,0.249296,0,0);-webkit-transform:matrix(0.384120,-0.028896,0.018753,0.249296,0,0);}
.m6_c00032{transform:matrix(0.385790,-0.029021,0.018753,0.249296,0,0);-ms-transform:matrix(0.385790,-0.029021,0.018753,0.249296,0,0);-webkit-transform:matrix(0.385790,-0.029021,0.018753,0.249296,0,0);}
.m14_c00032{transform:matrix(0.441278,-0.033195,0.018753,0.249296,0,0);-ms-transform:matrix(0.441278,-0.033195,0.018753,0.249296,0,0);-webkit-transform:matrix(0.441278,-0.033195,0.018753,0.249296,0,0);}
.me_c00032{transform:matrix(0.441298,-0.033197,0.018753,0.249296,0,0);-ms-transform:matrix(0.441298,-0.033197,0.018753,0.249296,0,0);-webkit-transform:matrix(0.441298,-0.033197,0.018753,0.249296,0,0);}
.m1a_c00032{transform:matrix(0.552005,-0.041525,0.018753,0.249296,0,0);-ms-transform:matrix(0.552005,-0.041525,0.018753,0.249296,0,0);-webkit-transform:matrix(0.552005,-0.041525,0.018753,0.249296,0,0);}
.m10_c00032{transform:matrix(0.606521,-0.045626,0.018753,0.249296,0,0);-ms-transform:matrix(0.606521,-0.045626,0.018753,0.249296,0,0);-webkit-transform:matrix(0.606521,-0.045626,0.018753,0.249296,0,0);}
.m1d_c00032{transform:matrix(0.650397,-0.048927,0.018753,0.249296,0,0);-ms-transform:matrix(0.650397,-0.048927,0.018753,0.249296,0,0);-webkit-transform:matrix(0.650397,-0.048927,0.018753,0.249296,0,0);}
.m20_c00032{transform:matrix(0.652955,-0.053703,0.020492,0.249159,0,0);-ms-transform:matrix(0.652955,-0.053703,0.020492,0.249159,0,0);-webkit-transform:matrix(0.652955,-0.053703,0.020492,0.249159,0,0);}
.m1_c00032{transform:matrix(0.776700,-0.058428,0.018753,0.249296,0,0);-ms-transform:matrix(0.776700,-0.058428,0.018753,0.249296,0,0);-webkit-transform:matrix(0.776700,-0.058428,0.018753,0.249296,0,0);}
.ma_c00032{transform:matrix(0.790008,-0.059429,0.018753,0.249296,0,0);-ms-transform:matrix(0.790008,-0.059429,0.018753,0.249296,0,0);-webkit-transform:matrix(0.790008,-0.059429,0.018753,0.249296,0,0);}
.m5_c00032{transform:matrix(0.800354,-0.060207,0.018753,0.249296,0,0);-ms-transform:matrix(0.800354,-0.060207,0.018753,0.249296,0,0);-webkit-transform:matrix(0.800354,-0.060207,0.018753,0.249296,0,0);}
.m1b_c00032{transform:matrix(0.861775,-0.064828,0.018753,0.249296,0,0);-ms-transform:matrix(0.861775,-0.064828,0.018753,0.249296,0,0);-webkit-transform:matrix(0.861775,-0.064828,0.018753,0.249296,0,0);}
.m15_c00032{transform:matrix(0.947154,-0.071250,0.018753,0.249296,0,0);-ms-transform:matrix(0.947154,-0.071250,0.018753,0.249296,0,0);-webkit-transform:matrix(0.947154,-0.071250,0.018753,0.249296,0,0);}
.m17_c00032{transform:matrix(0.980340,-0.073747,0.018753,0.249296,0,0);-ms-transform:matrix(0.980340,-0.073747,0.018753,0.249296,0,0);-webkit-transform:matrix(0.980340,-0.073747,0.018753,0.249296,0,0);}
.m3_c00032{transform:matrix(1.200398,-0.090301,0.018753,0.249296,0,0);-ms-transform:matrix(1.200398,-0.090301,0.018753,0.249296,0,0);-webkit-transform:matrix(1.200398,-0.090301,0.018753,0.249296,0,0);}
.m4_c00032{transform:matrix(1.389449,-0.104522,0.018753,0.249296,0,0);-ms-transform:matrix(1.389449,-0.104522,0.018753,0.249296,0,0);-webkit-transform:matrix(1.389449,-0.104522,0.018753,0.249296,0,0);}
.m9_c00032{transform:matrix(1.927140,-0.144970,0.018753,0.249296,0,0);-ms-transform:matrix(1.927140,-0.144970,0.018753,0.249296,0,0);-webkit-transform:matrix(1.927140,-0.144970,0.018753,0.249296,0,0);}
.m2_c00032{transform:matrix(2.627267,-0.197638,0.018753,0.249296,0,0);-ms-transform:matrix(2.627267,-0.197638,0.018753,0.249296,0,0);-webkit-transform:matrix(2.627267,-0.197638,0.018753,0.249296,0,0);}
.m12_c00032{transform:matrix(3.060747,-0.230247,0.018753,0.249296,0,0);-ms-transform:matrix(3.060747,-0.230247,0.018753,0.249296,0,0);-webkit-transform:matrix(3.060747,-0.230247,0.018753,0.249296,0,0);}
.v0_c00032{vertical-align:0.000000px;}
.ls0_c00032{letter-spacing:0.000000px;}
.sc__c00032{text-shadow:none;}
.sc0_c00032{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__c00032{-webkit-text-stroke:0px transparent;}
.sc0_c00032{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00032{word-spacing:0.000000px;}
.fc0_c00032{color:transparent;}
.fs0_c00032{font-size:53.990117px;}
.fs6_c00032{font-size:65.987921px;}
.fs3_c00032{font-size:77.985725px;}
.fs2_c00032{font-size:101.981332px;}
.fs7_c00032{font-size:102.037376px;}
.fs5_c00032{font-size:149.972547px;}
.fs4_c00032{font-size:233.957174px;}
.fs1_c00032{font-size:311.942899px;}
.y0_c00032{bottom:0.000000px;}
.y1f_c00032{bottom:339.819000px;}
.y20_c00032{bottom:343.940976px;}
.y21_c00032{bottom:348.236628px;}
.y13_c00032{bottom:354.869798px;}
.y22_c00032{bottom:360.606246px;}
.y1a_c00032{bottom:361.126050px;}
.y1b_c00032{bottom:375.555409px;}
.y1c_c00032{bottom:379.593493px;}
.y14_c00032{bottom:381.889032px;}
.y16_c00032{bottom:384.519160px;}
.y15_c00032{bottom:387.214168px;}
.y1d_c00032{bottom:398.253980px;}
.y17_c00032{bottom:400.054654px;}
.y18_c00032{bottom:402.931251px;}
.y1e_c00032{bottom:408.486928px;}
.y19_c00032{bottom:420.305335px;}
.ye_c00032{bottom:437.805921px;}
.yf_c00032{bottom:453.240543px;}
.y10_c00032{bottom:472.955278px;}
.y11_c00032{bottom:480.541972px;}
.ya_c00032{bottom:490.402032px;}
.yb_c00032{bottom:506.596992px;}
.y6_c00032{bottom:507.035518px;}
.y4_c00032{bottom:510.727926px;}
.y12_c00032{bottom:522.328168px;}
.yc_c00032{bottom:527.840473px;}
.y7_c00032{bottom:530.923855px;}
.y8_c00032{bottom:539.488924px;}
.yd_c00032{bottom:562.835650px;}
.y5_c00032{bottom:563.562204px;}
.y9_c00032{bottom:578.234346px;}
.y1_c00032{bottom:680.386500px;}
.y2_c00032{bottom:681.272437px;}
.y3_c00032{bottom:684.351900px;}
.h2_c00032{height:53.990117px;}
.h8_c00032{height:65.987921px;}
.h5_c00032{height:77.985725px;}
.h4_c00032{height:101.981332px;}
.h9_c00032{height:102.037376px;}
.h7_c00032{height:149.972547px;}
.h6_c00032{height:233.957174px;}
.h3_c00032{height:311.942899px;}
.h0_c00032{height:711.720000px;}
.h1_c00032{height:711.750000px;}
.w1_c00032{width:945.750000px;}
.w0_c00032{width:946.050000px;}
.x0_c00032{left:0.000000px;}
.x1_c00032{left:11.595562px;}
.x11_c00032{left:29.121403px;}
.x9_c00032{left:30.775623px;}
.x3_c00032{left:40.709799px;}
.x2_c00032{left:52.531884px;}
.x5_c00032{left:87.890150px;}
.xc_c00032{left:105.654579px;}
.xa_c00032{left:230.166444px;}
.xd_c00032{left:255.172533px;}
.x17_c00032{left:268.630611px;}
.x6_c00032{left:368.179420px;}
.x12_c00032{left:398.113500px;}
.x14_c00032{left:434.036323px;}
.xe_c00032{left:446.153114px;}
.x7_c00032{left:468.682628px;}
.x13_c00032{left:470.841605px;}
.xb_c00032{left:491.710760px;}
.x18_c00032{left:495.991133px;}
.xf_c00032{left:519.655580px;}
.x4_c00032{left:542.806785px;}
.x15_c00032{left:646.192760px;}
.x1b_c00032{left:669.105000px;}
.x16_c00032{left:685.471935px;}
.x1c_c00032{left:719.222196px;}
.x19_c00032{left:725.717906px;}
.x1d_c00032{left:771.451038px;}
.x1a_c00032{left:851.691590px;}
.x1e_c00032{left:921.847491px;}
.x8_c00032{left:923.300559px;}
.x10_c00032{left:924.448583px;}
@media print{
.v0_c00032{vertical-align:0.000000pt;}
.ls0_c00032{letter-spacing:0.000000pt;}
.ws0_c00032{word-spacing:0.000000pt;}
.fs0_c00032{font-size:47.991215pt;}
.fs6_c00032{font-size:58.655930pt;}
.fs3_c00032{font-size:69.320644pt;}
.fs2_c00032{font-size:90.650073pt;}
.fs7_c00032{font-size:90.699890pt;}
.fs5_c00032{font-size:133.308931pt;}
.fs4_c00032{font-size:207.961933pt;}
.fs1_c00032{font-size:277.282577pt;}
.y0_c00032{bottom:0.000000pt;}
.y1f_c00032{bottom:302.061333pt;}
.y20_c00032{bottom:305.725312pt;}
.y21_c00032{bottom:309.543669pt;}
.y13_c00032{bottom:315.439820pt;}
.y22_c00032{bottom:320.538885pt;}
.y1a_c00032{bottom:321.000933pt;}
.y1b_c00032{bottom:333.827031pt;}
.y1c_c00032{bottom:337.416439pt;}
.y14_c00032{bottom:339.456917pt;}
.y16_c00032{bottom:341.794809pt;}
.y15_c00032{bottom:344.190372pt;}
.y1d_c00032{bottom:354.003537pt;}
.y17_c00032{bottom:355.604137pt;}
.y18_c00032{bottom:358.161112pt;}
.y1e_c00032{bottom:363.099492pt;}
.y19_c00032{bottom:373.604743pt;}
.ye_c00032{bottom:389.160819pt;}
.yf_c00032{bottom:402.880483pt;}
.y10_c00032{bottom:420.404692pt;}
.y11_c00032{bottom:427.148420pt;}
.ya_c00032{bottom:435.912917pt;}
.yb_c00032{bottom:450.308437pt;}
.y6_c00032{bottom:450.698239pt;}
.y4_c00032{bottom:453.980379pt;}
.y12_c00032{bottom:464.291705pt;}
.yc_c00032{bottom:469.191532pt;}
.y7_c00032{bottom:471.932316pt;}
.y8_c00032{bottom:479.545711pt;}
.yd_c00032{bottom:500.298356pt;}
.y5_c00032{bottom:500.944181pt;}
.y9_c00032{bottom:513.986085pt;}
.y1_c00032{bottom:604.788000pt;}
.y2_c00032{bottom:605.575500pt;}
.y3_c00032{bottom:608.312800pt;}
.h2_c00032{height:47.991215pt;}
.h8_c00032{height:58.655930pt;}
.h5_c00032{height:69.320644pt;}
.h4_c00032{height:90.650073pt;}
.h9_c00032{height:90.699890pt;}
.h7_c00032{height:133.308931pt;}
.h6_c00032{height:207.961933pt;}
.h3_c00032{height:277.282577pt;}
.h0_c00032{height:632.640000pt;}
.h1_c00032{height:632.666667pt;}
.w1_c00032{width:840.666667pt;}
.w0_c00032{width:840.933333pt;}
.x0_c00032{left:0.000000pt;}
.x1_c00032{left:10.307167pt;}
.x11_c00032{left:25.885692pt;}
.x9_c00032{left:27.356109pt;}
.x3_c00032{left:36.186488pt;}
.x2_c00032{left:46.695008pt;}
.x5_c00032{left:78.124577pt;}
.xc_c00032{left:93.915181pt;}
.xa_c00032{left:204.592395pt;}
.xd_c00032{left:226.820029pt;}
.x17_c00032{left:238.782765pt;}
.x6_c00032{left:327.270596pt;}
.x12_c00032{left:353.878667pt;}
.x14_c00032{left:385.810065pt;}
.xe_c00032{left:396.580545pt;}
.x7_c00032{left:416.606780pt;}
.x13_c00032{left:418.525871pt;}
.xb_c00032{left:437.076231pt;}
.x18_c00032{left:440.881007pt;}
.xf_c00032{left:461.916071pt;}
.x4_c00032{left:482.494920pt;}
.x15_c00032{left:574.393564pt;}
.x1b_c00032{left:594.760000pt;}
.x16_c00032{left:609.308387pt;}
.x1c_c00032{left:639.308619pt;}
.x19_c00032{left:645.082583pt;}
.x1d_c00032{left:685.734256pt;}
.x1a_c00032{left:757.059191pt;}
.x1e_c00032{left:819.419992pt;}
.x8_c00032{left:820.711608pt;}
.x10_c00032{left:821.732073pt;}
}





/* 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_c00033 {
    display:none;
  }
  .loading-indicator_c00033.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00033 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_c00033 { 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_c00033" -> "#page-container .classname_c00033")
 */
.pf_c00033 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00033 { /* 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_c00033.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00033 { /* 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_c00033 { /* 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_c00033 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00033 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00033 {overflow:visible;}
  }
}
.c_c00033 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00033 { /* 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_c00033:after { /* webkit #35443 */
  content: '';
}
.t_c00033:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00033 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 */
}
.__c00033 { /* 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_c00033 { /* info for Javascript */
  display:none;
}
.l_c00033 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00033 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00033 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00033: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_c00033 {
    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_c00033.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00033.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_c00033 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00033{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00033;src:url('chunks/assets/font_7ef351174269f1343c6a59b1.woff2')format("woff");}.ff1_c00033{font-family:ff1_c00033;line-height:1.000000;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;}
.m2_c00033{transform:matrix(0.000379,-0.047433,0.249992,0.002000,0,0);-ms-transform:matrix(0.000379,-0.047433,0.249992,0.002000,0,0);-webkit-transform:matrix(0.000379,-0.047433,0.249992,0.002000,0,0);}
.m4_c00033{transform:matrix(0.000805,-0.100622,0.249992,0.002000,0,0);-ms-transform:matrix(0.000805,-0.100622,0.249992,0.002000,0,0);-webkit-transform:matrix(0.000805,-0.100622,0.249992,0.002000,0,0);}
.m3_c00033{transform:matrix(0.001682,-0.210233,0.249992,0.002000,0,0);-ms-transform:matrix(0.001682,-0.210233,0.249992,0.002000,0,0);-webkit-transform:matrix(0.001682,-0.210233,0.249992,0.002000,0,0);}
.mf_c00033{transform:matrix(0.001756,-0.438921,0.249998,0.001000,0,0);-ms-transform:matrix(0.001756,-0.438921,0.249998,0.001000,0,0);-webkit-transform:matrix(0.001756,-0.438921,0.249998,0.001000,0,0);}
.mc_c00033{transform:matrix(0.002232,-0.247945,0.249990,0.002250,0,0);-ms-transform:matrix(0.002232,-0.247945,0.249990,0.002250,0,0);-webkit-transform:matrix(0.002232,-0.247945,0.249990,0.002250,0,0);}
.m1_c00033{transform:matrix(0.002565,-0.320615,0.249992,0.002000,0,0);-ms-transform:matrix(0.002565,-0.320615,0.249992,0.002000,0,0);-webkit-transform:matrix(0.002565,-0.320615,0.249992,0.002000,0,0);}
.m9_c00033{transform:matrix(0.002721,-0.302323,0.249990,0.002250,0,0);-ms-transform:matrix(0.002721,-0.302323,0.249990,0.002250,0,0);-webkit-transform:matrix(0.002721,-0.302323,0.249990,0.002250,0,0);}
.m5_c00033{transform:matrix(0.003240,-0.404957,0.249992,0.002000,0,0);-ms-transform:matrix(0.003240,-0.404957,0.249992,0.002000,0,0);-webkit-transform:matrix(0.003240,-0.404957,0.249992,0.002000,0,0);}
.md_c00033{transform:matrix(0.003496,-0.388394,0.249990,0.002250,0,0);-ms-transform:matrix(0.003496,-0.388394,0.249990,0.002250,0,0);-webkit-transform:matrix(0.003496,-0.388394,0.249990,0.002250,0,0);}
.m7_c00033{transform:matrix(0.003542,-0.393574,0.249990,0.002250,0,0);-ms-transform:matrix(0.003542,-0.393574,0.249990,0.002250,0,0);-webkit-transform:matrix(0.003542,-0.393574,0.249990,0.002250,0,0);}
.m8_c00033{transform:matrix(0.003806,-0.422868,0.249990,0.002250,0,0);-ms-transform:matrix(0.003806,-0.422868,0.249990,0.002250,0,0);-webkit-transform:matrix(0.003806,-0.422868,0.249990,0.002250,0,0);}
.m0_c00033{transform:matrix(0.003847,-0.480920,0.249992,0.002000,0,0);-ms-transform:matrix(0.003847,-0.480920,0.249992,0.002000,0,0);-webkit-transform:matrix(0.003847,-0.480920,0.249992,0.002000,0,0);}
.me_c00033{transform:matrix(0.003926,-0.981522,0.249998,0.001000,0,0);-ms-transform:matrix(0.003926,-0.981522,0.249998,0.001000,0,0);-webkit-transform:matrix(0.003926,-0.981522,0.249998,0.001000,0,0);}
.ma_c00033{transform:matrix(0.007360,-0.817742,0.249990,0.002250,0,0);-ms-transform:matrix(0.007360,-0.817742,0.249990,0.002250,0,0);-webkit-transform:matrix(0.007360,-0.817742,0.249990,0.002250,0,0);}
.mb_c00033{transform:matrix(0.009061,-1.006749,0.249990,0.002250,0,0);-ms-transform:matrix(0.009061,-1.006749,0.249990,0.002250,0,0);-webkit-transform:matrix(0.009061,-1.006749,0.249990,0.002250,0,0);}
.m6_c00033{transform:matrix(0.019780,-2.197811,0.249990,0.002250,0,0);-ms-transform:matrix(0.019780,-2.197811,0.249990,0.002250,0,0);-webkit-transform:matrix(0.019780,-2.197811,0.249990,0.002250,0,0);}
.v0_c00033{vertical-align:0.000000px;}
.ls0_c00033{letter-spacing:0.000000px;}
.sc__c00033{text-shadow:none;}
.sc0_c00033{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__c00033{-webkit-text-stroke:0px transparent;}
.sc0_c00033{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00033{word-spacing:0.000000px;}
.fc0_c00033{color:transparent;}
.fs0_c00033{font-size:18.000576px;}
.fs1_c00033{font-size:24.000972px;}
.fs2_c00033{font-size:36.000288px;}
.y0_c00033{bottom:0.000000px;}
.y6_c00033{bottom:10.242000px;}
.ye_c00033{bottom:27.784500px;}
.y5_c00033{bottom:143.356500px;}
.y4_c00033{bottom:233.025000px;}
.yd_c00033{bottom:337.230000px;}
.yc_c00033{bottom:392.314500px;}
.y3_c00033{bottom:419.814000px;}
.yb_c00033{bottom:445.498500px;}
.y2_c00033{bottom:448.702500px;}
.ya_c00033{bottom:481.405500px;}
.y9_c00033{bottom:493.551000px;}
.y8_c00033{bottom:507.571500px;}
.y1_c00033{bottom:531.868500px;}
.y7_c00033{bottom:555.108000px;}
.y10_c00033{bottom:599.938500px;}
.yf_c00033{bottom:658.798500px;}
.h2_c00033{height:18.000576px;}
.h3_c00033{height:24.000972px;}
.h4_c00033{height:36.000288px;}
.h0_c00033{height:711.720000px;}
.h1_c00033{height:711.750000px;}
.w1_c00033{width:945.750000px;}
.w0_c00033{width:946.050000px;}
.x0_c00033{left:0.000000px;}
.x6_c00033{left:4.434088px;}
.x5_c00033{left:7.714858px;}
.x4_c00033{left:9.180000px;}
.x3_c00033{left:12.644988px;}
.x2_c00033{left:14.427252px;}
.x1_c00033{left:16.818000px;}
@media print{
.v0_c00033{vertical-align:0.000000pt;}
.ls0_c00033{letter-spacing:0.000000pt;}
.ws0_c00033{word-spacing:0.000000pt;}
.fs0_c00033{font-size:16.000512pt;}
.fs1_c00033{font-size:21.334197pt;}
.fs2_c00033{font-size:32.000256pt;}
.y0_c00033{bottom:0.000000pt;}
.y6_c00033{bottom:9.104000pt;}
.ye_c00033{bottom:24.697333pt;}
.y5_c00033{bottom:127.428000pt;}
.y4_c00033{bottom:207.133333pt;}
.yd_c00033{bottom:299.760000pt;}
.yc_c00033{bottom:348.724000pt;}
.y3_c00033{bottom:373.168000pt;}
.yb_c00033{bottom:395.998667pt;}
.y2_c00033{bottom:398.846667pt;}
.ya_c00033{bottom:427.916000pt;}
.y9_c00033{bottom:438.712000pt;}
.y8_c00033{bottom:451.174667pt;}
.y1_c00033{bottom:472.772000pt;}
.y7_c00033{bottom:493.429333pt;}
.y10_c00033{bottom:533.278667pt;}
.yf_c00033{bottom:585.598667pt;}
.h2_c00033{height:16.000512pt;}
.h3_c00033{height:21.334197pt;}
.h4_c00033{height:32.000256pt;}
.h0_c00033{height:632.640000pt;}
.h1_c00033{height:632.666667pt;}
.w1_c00033{width:840.666667pt;}
.w0_c00033{width:840.933333pt;}
.x0_c00033{left:0.000000pt;}
.x6_c00033{left:3.941412pt;}
.x5_c00033{left:6.857652pt;}
.x4_c00033{left:8.160000pt;}
.x3_c00033{left:11.239989pt;}
.x2_c00033{left:12.824224pt;}
.x1_c00033{left:14.949333pt;}
}





/* 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_c00034 {
    display:none;
  }
  .loading-indicator_c00034.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00034 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_c00034 { 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_c00034" -> "#page-container .classname_c00034")
 */
.pf_c00034 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00034 { /* 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_c00034.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00034 { /* 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_c00034 { /* 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_c00034 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00034 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00034 {overflow:visible;}
  }
}
.c_c00034 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00034 { /* 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_c00034:after { /* webkit #35443 */
  content: '';
}
.t_c00034:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00034 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 */
}
.__c00034 { /* 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_c00034 { /* info for Javascript */
  display:none;
}
.l_c00034 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00034 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00034 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00034: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_c00034 {
    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_c00034.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00034.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_c00034 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00034{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00034;src:url('chunks/assets/font_c605e72f209fc835e906f064.woff2')format("woff");}.ff1_c00034{font-family:ff1_c00034;line-height:1.000000;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;}
.m1e_c00034{transform:matrix(0.093896,0.000845,-0.002250,0.249990,0,0);-ms-transform:matrix(0.093896,0.000845,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.093896,0.000845,-0.002250,0.249990,0,0);}
.m3_c00034{transform:matrix(0.106065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106065,0.000000,0.000000,0.250000,0,0);}
.m7_c00034{transform:matrix(0.119052,0.001786,-0.003750,0.249972,0,0);-ms-transform:matrix(0.119052,0.001786,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.119052,0.001786,-0.003750,0.249972,0,0);}
.m2b_c00034{transform:matrix(0.149134,0.001342,-0.002250,0.249990,0,0);-ms-transform:matrix(0.149134,0.001342,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.149134,0.001342,-0.002250,0.249990,0,0);}
.m1f_c00034{transform:matrix(0.156979,0.001413,-0.002250,0.249990,0,0);-ms-transform:matrix(0.156979,0.001413,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.156979,0.001413,-0.002250,0.249990,0,0);}
.m13_c00034{transform:matrix(0.165201,0.002478,-0.003750,0.249972,0,0);-ms-transform:matrix(0.165201,0.002478,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.165201,0.002478,-0.003750,0.249972,0,0);}
.m1d_c00034{transform:matrix(0.165813,0.001492,-0.002250,0.249990,0,0);-ms-transform:matrix(0.165813,0.001492,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.165813,0.001492,-0.002250,0.249990,0,0);}
.me_c00034{transform:matrix(0.186394,0.002796,-0.003750,0.249972,0,0);-ms-transform:matrix(0.186394,0.002796,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.186394,0.002796,-0.003750,0.249972,0,0);}
.ma_c00034{transform:matrix(0.186444,0.002797,-0.003750,0.249972,0,0);-ms-transform:matrix(0.186444,0.002797,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.186444,0.002797,-0.003750,0.249972,0,0);}
.mf_c00034{transform:matrix(0.190674,0.002860,-0.003750,0.249972,0,0);-ms-transform:matrix(0.190674,0.002860,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.190674,0.002860,-0.003750,0.249972,0,0);}
.m16_c00034{transform:matrix(0.190764,0.002861,-0.003750,0.249972,0,0);-ms-transform:matrix(0.190764,0.002861,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.190764,0.002861,-0.003750,0.249972,0,0);}
.m14_c00034{transform:matrix(0.190979,0.002865,-0.003750,0.249972,0,0);-ms-transform:matrix(0.190979,0.002865,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.190979,0.002865,-0.003750,0.249972,0,0);}
.m15_c00034{transform:matrix(0.194463,0.002917,-0.003750,0.249972,0,0);-ms-transform:matrix(0.194463,0.002917,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.194463,0.002917,-0.003750,0.249972,0,0);}
.m5_c00034{transform:matrix(0.216335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216335,0.000000,0.000000,0.250000,0,0);}
.m12_c00034{transform:matrix(0.219010,0.003285,-0.003750,0.249972,0,0);-ms-transform:matrix(0.219010,0.003285,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.219010,0.003285,-0.003750,0.249972,0,0);}
.m11_c00034{transform:matrix(0.222980,0.003345,-0.003750,0.249972,0,0);-ms-transform:matrix(0.222980,0.003345,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.222980,0.003345,-0.003750,0.249972,0,0);}
.m24_c00034{transform:matrix(0.224976,0.002025,-0.002250,0.249990,0,0);-ms-transform:matrix(0.224976,0.002025,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.224976,0.002025,-0.002250,0.249990,0,0);}
.m27_c00034{transform:matrix(0.226381,0.002037,-0.002250,0.249990,0,0);-ms-transform:matrix(0.226381,0.002037,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.226381,0.002037,-0.002250,0.249990,0,0);}
.md_c00034{transform:matrix(0.232764,0.003491,-0.003750,0.249972,0,0);-ms-transform:matrix(0.232764,0.003491,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.232764,0.003491,-0.003750,0.249972,0,0);}
.m26_c00034{transform:matrix(0.237600,0.002138,-0.002250,0.249990,0,0);-ms-transform:matrix(0.237600,0.002138,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.237600,0.002138,-0.002250,0.249990,0,0);}
.mc_c00034{transform:matrix(0.252767,0.003791,-0.003750,0.249972,0,0);-ms-transform:matrix(0.252767,0.003791,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.252767,0.003791,-0.003750,0.249972,0,0);}
.m28_c00034{transform:matrix(0.253100,0.002278,-0.002250,0.249990,0,0);-ms-transform:matrix(0.253100,0.002278,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.253100,0.002278,-0.002250,0.249990,0,0);}
.m1a_c00034{transform:matrix(0.253810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253810,0.000000,0.000000,0.250000,0,0);}
.m21_c00034{transform:matrix(0.257055,0.002313,-0.002250,0.249990,0,0);-ms-transform:matrix(0.257055,0.002313,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.257055,0.002313,-0.002250,0.249990,0,0);}
.m22_c00034{transform:matrix(0.263989,0.002376,-0.002250,0.249990,0,0);-ms-transform:matrix(0.263989,0.002376,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.263989,0.002376,-0.002250,0.249990,0,0);}
.m25_c00034{transform:matrix(0.283474,0.002551,-0.002250,0.249990,0,0);-ms-transform:matrix(0.283474,0.002551,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.283474,0.002551,-0.002250,0.249990,0,0);}
.m10_c00034{transform:matrix(0.311925,0.004679,-0.003750,0.249972,0,0);-ms-transform:matrix(0.311925,0.004679,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.311925,0.004679,-0.003750,0.249972,0,0);}
.m1c_c00034{transform:matrix(0.321842,0.002897,-0.002250,0.249990,0,0);-ms-transform:matrix(0.321842,0.002897,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.321842,0.002897,-0.002250,0.249990,0,0);}
.m1_c00034{transform:matrix(0.346300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346300,0.000000,0.000000,0.250000,0,0);}
.m8_c00034{transform:matrix(0.401420,0.006021,-0.003750,0.249972,0,0);-ms-transform:matrix(0.401420,0.006021,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.401420,0.006021,-0.003750,0.249972,0,0);}
.m19_c00034{transform:matrix(0.406405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406405,0.000000,0.000000,0.250000,0,0);}
.m2a_c00034{transform:matrix(0.410208,0.003692,-0.002250,0.249990,0,0);-ms-transform:matrix(0.410208,0.003692,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.410208,0.003692,-0.002250,0.249990,0,0);}
.m4_c00034{transform:matrix(0.422405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422405,0.000000,0.000000,0.250000,0,0);}
.m2_c00034{transform:matrix(0.451250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451250,0.000000,0.000000,0.250000,0,0);}
.m23_c00034{transform:matrix(0.484065,0.004357,-0.002250,0.249990,0,0);-ms-transform:matrix(0.484065,0.004357,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.484065,0.004357,-0.002250,0.249990,0,0);}
.m0_c00034{transform:matrix(0.517230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517230,0.000000,0.000000,0.250000,0,0);}
.m17_c00034{transform:matrix(0.573965,0.008609,-0.003750,0.249972,0,0);-ms-transform:matrix(0.573965,0.008609,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.573965,0.008609,-0.003750,0.249972,0,0);}
.m20_c00034{transform:matrix(0.646474,0.005818,-0.002250,0.249990,0,0);-ms-transform:matrix(0.646474,0.005818,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.646474,0.005818,-0.002250,0.249990,0,0);}
.m1b_c00034{transform:matrix(0.670905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.670905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.670905,0.000000,0.000000,0.250000,0,0);}
.m6_c00034{transform:matrix(0.715680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.715680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.715680,0.000000,0.000000,0.250000,0,0);}
.mb_c00034{transform:matrix(1.055926,0.015839,-0.003750,0.249972,0,0);-ms-transform:matrix(1.055926,0.015839,-0.003750,0.249972,0,0);-webkit-transform:matrix(1.055926,0.015839,-0.003750,0.249972,0,0);}
.m18_c00034{transform:matrix(1.370940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.370940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.370940,0.000000,0.000000,0.250000,0,0);}
.m29_c00034{transform:matrix(1.717555,0.015458,-0.002250,0.249990,0,0);-ms-transform:matrix(1.717555,0.015458,-0.002250,0.249990,0,0);-webkit-transform:matrix(1.717555,0.015458,-0.002250,0.249990,0,0);}
.m9_c00034{transform:matrix(1.855611,0.027834,-0.003750,0.249972,0,0);-ms-transform:matrix(1.855611,0.027834,-0.003750,0.249972,0,0);-webkit-transform:matrix(1.855611,0.027834,-0.003750,0.249972,0,0);}
.v0_c00034{vertical-align:0.000000px;}
.ls0_c00034{letter-spacing:0.000000px;}
.sc__c00034{text-shadow:none;}
.sc0_c00034{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__c00034{-webkit-text-stroke:0px transparent;}
.sc0_c00034{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00034{word-spacing:0.000000px;}
.fc0_c00034{color:transparent;}
.fs0_c00034{font-size:18.000000px;}
.fs3_c00034{font-size:24.000000px;}
.fs1_c00034{font-size:60.006750px;}
.fs2_c00034{font-size:72.008100px;}
.fs5_c00034{font-size:150.006075px;}
.fs4_c00034{font-size:192.007776px;}
.y0_c00034{bottom:0.000000px;}
.y24_c00034{bottom:82.821470px;}
.y23_c00034{bottom:84.670149px;}
.y22_c00034{bottom:87.110183px;}
.y21_c00034{bottom:88.044846px;}
.y20_c00034{bottom:89.308979px;}
.y1f_c00034{bottom:90.657278px;}
.y1e_c00034{bottom:91.583082px;}
.y1d_c00034{bottom:92.130333px;}
.y1c_c00034{bottom:93.422214px;}
.y1b_c00034{bottom:122.042770px;}
.y1a_c00034{bottom:122.663474px;}
.y19_c00034{bottom:124.282988px;}
.y18_c00034{bottom:124.659773px;}
.y17_c00034{bottom:125.184720px;}
.y16_c00034{bottom:126.171287px;}
.y15_c00034{bottom:127.443000px;}
.y12_c00034{bottom:690.885195px;}
.y11_c00034{bottom:691.668480px;}
.y10_c00034{bottom:691.944045px;}
.yf_c00034{bottom:692.223367px;}
.ye_c00034{bottom:693.095272px;}
.yd_c00034{bottom:693.940057px;}
.yc_c00034{bottom:694.180748px;}
.yb_c00034{bottom:694.543875px;}
.ya_c00034{bottom:695.022645px;}
.y9_c00034{bottom:695.409585px;}
.y8_c00034{bottom:695.946840px;}
.y7_c00034{bottom:696.270818px;}
.y6_c00034{bottom:696.869618px;}
.y14_c00034{bottom:702.553500px;}
.y5_c00034{bottom:707.358780px;}
.y13_c00034{bottom:707.400000px;}
.y4_c00034{bottom:709.109348px;}
.y1_c00034{bottom:709.987500px;}
.y3_c00034{bottom:710.785867px;}
.y2_c00034{bottom:711.450000px;}
.h2_c00034{height:18.000000px;}
.h5_c00034{height:24.000000px;}
.h3_c00034{height:60.006750px;}
.h4_c00034{height:72.008100px;}
.h7_c00034{height:150.006075px;}
.h6_c00034{height:192.007776px;}
.h0_c00034{height:711.720000px;}
.h1_c00034{height:711.750000px;}
.w1_c00034{width:945.750000px;}
.w0_c00034{width:946.050000px;}
.x0_c00034{left:0.000000px;}
.x23_c00034{left:26.428943px;}
.x1c_c00034{left:37.482000px;}
.x24_c00034{left:134.135040px;}
.x1d_c00034{left:178.783500px;}
.xc_c00034{left:184.301288px;}
.x8_c00034{left:188.995500px;}
.x9_c00034{left:233.271000px;}
.x25_c00034{left:256.971233px;}
.xd_c00034{left:261.223253px;}
.x1e_c00034{left:288.402000px;}
.xe_c00034{left:306.042278px;}
.xf_c00034{left:338.239717px;}
.xa_c00034{left:345.039000px;}
.x1f_c00034{left:346.729500px;}
.x26_c00034{left:369.279195px;}
.x10_c00034{left:378.159518px;}
.x20_c00034{left:388.594500px;}
.x11_c00034{left:408.369368px;}
.x12_c00034{left:428.416268px;}
.xb_c00034{left:461.743500px;}
.x27_c00034{left:474.568847px;}
.x1_c00034{left:477.360000px;}
.x2_c00034{left:494.370000px;}
.x13_c00034{left:498.838440px;}
.x3_c00034{left:508.680000px;}
.x4_c00034{left:524.340000px;}
.x5_c00034{left:540.270000px;}
.x28_c00034{left:552.418241px;}
.x6_c00034{left:555.930000px;}
.x21_c00034{left:568.540500px;}
.x14_c00034{left:571.468703px;}
.x7_c00034{left:577.800000px;}
.x15_c00034{left:594.691237px;}
.x16_c00034{left:617.663273px;}
.x22_c00034{left:637.507500px;}
.x17_c00034{left:682.985220px;}
.x18_c00034{left:738.720000px;}
.x19_c00034{left:748.440000px;}
.x29_c00034{left:755.694246px;}
.x1a_c00034{left:790.020000px;}
.x1b_c00034{left:797.850000px;}
.x2a_c00034{left:909.765588px;}
@media print{
.v0_c00034{vertical-align:0.000000pt;}
.ls0_c00034{letter-spacing:0.000000pt;}
.ws0_c00034{word-spacing:0.000000pt;}
.fs0_c00034{font-size:16.000000pt;}
.fs3_c00034{font-size:21.333333pt;}
.fs1_c00034{font-size:53.339333pt;}
.fs2_c00034{font-size:64.007200pt;}
.fs5_c00034{font-size:133.338733pt;}
.fs4_c00034{font-size:170.673579pt;}
.y0_c00034{bottom:0.000000pt;}
.y24_c00034{bottom:73.619084pt;}
.y23_c00034{bottom:75.262355pt;}
.y22_c00034{bottom:77.431273pt;}
.y21_c00034{bottom:78.262085pt;}
.y20_c00034{bottom:79.385759pt;}
.y1f_c00034{bottom:80.584247pt;}
.y1e_c00034{bottom:81.407184pt;}
.y1d_c00034{bottom:81.893629pt;}
.y1c_c00034{bottom:83.041968pt;}
.y1b_c00034{bottom:108.482463pt;}
.y1a_c00034{bottom:109.034199pt;}
.y19_c00034{bottom:110.473767pt;}
.y18_c00034{bottom:110.808687pt;}
.y17_c00034{bottom:111.275307pt;}
.y16_c00034{bottom:112.152255pt;}
.y15_c00034{bottom:113.282667pt;}
.y12_c00034{bottom:614.120173pt;}
.y11_c00034{bottom:614.816427pt;}
.y10_c00034{bottom:615.061373pt;}
.yf_c00034{bottom:615.309660pt;}
.ye_c00034{bottom:616.084687pt;}
.yd_c00034{bottom:616.835607pt;}
.yc_c00034{bottom:617.049553pt;}
.yb_c00034{bottom:617.372333pt;}
.ya_c00034{bottom:617.797907pt;}
.y9_c00034{bottom:618.141853pt;}
.y8_c00034{bottom:618.619413pt;}
.y7_c00034{bottom:618.907393pt;}
.y6_c00034{bottom:619.439660pt;}
.y14_c00034{bottom:624.492000pt;}
.y5_c00034{bottom:628.763360pt;}
.y13_c00034{bottom:628.800000pt;}
.y4_c00034{bottom:630.319420pt;}
.y1_c00034{bottom:631.100000pt;}
.y3_c00034{bottom:631.809660pt;}
.y2_c00034{bottom:632.400000pt;}
.h2_c00034{height:16.000000pt;}
.h5_c00034{height:21.333333pt;}
.h3_c00034{height:53.339333pt;}
.h4_c00034{height:64.007200pt;}
.h7_c00034{height:133.338733pt;}
.h6_c00034{height:170.673579pt;}
.h0_c00034{height:632.640000pt;}
.h1_c00034{height:632.666667pt;}
.w1_c00034{width:840.666667pt;}
.w0_c00034{width:840.933333pt;}
.x0_c00034{left:0.000000pt;}
.x23_c00034{left:23.492393pt;}
.x1c_c00034{left:33.317333pt;}
.x24_c00034{left:119.231147pt;}
.x1d_c00034{left:158.918667pt;}
.xc_c00034{left:163.823367pt;}
.x8_c00034{left:167.996000pt;}
.x9_c00034{left:207.352000pt;}
.x25_c00034{left:228.418873pt;}
.xd_c00034{left:232.198447pt;}
.x1e_c00034{left:256.357333pt;}
.xe_c00034{left:272.037580pt;}
.xf_c00034{left:300.657527pt;}
.xa_c00034{left:306.701333pt;}
.x1f_c00034{left:308.204000pt;}
.x26_c00034{left:328.248173pt;}
.x10_c00034{left:336.141793pt;}
.x20_c00034{left:345.417333pt;}
.x11_c00034{left:362.994993pt;}
.x12_c00034{left:380.814460pt;}
.xb_c00034{left:410.438667pt;}
.x27_c00034{left:421.838975pt;}
.x1_c00034{left:424.320000pt;}
.x2_c00034{left:439.440000pt;}
.x13_c00034{left:443.411947pt;}
.x3_c00034{left:452.160000pt;}
.x4_c00034{left:466.080000pt;}
.x5_c00034{left:480.240000pt;}
.x28_c00034{left:491.038436pt;}
.x6_c00034{left:494.160000pt;}
.x21_c00034{left:505.369333pt;}
.x14_c00034{left:507.972180pt;}
.x7_c00034{left:513.600000pt;}
.x15_c00034{left:528.614433pt;}
.x16_c00034{left:549.034020pt;}
.x22_c00034{left:566.673333pt;}
.x17_c00034{left:607.097973pt;}
.x18_c00034{left:656.640000pt;}
.x19_c00034{left:665.280000pt;}
.x29_c00034{left:671.728219pt;}
.x1a_c00034{left:702.240000pt;}
.x1b_c00034{left:709.200000pt;}
.x2a_c00034{left:808.680523pt;}
}





/* 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_c00035 {
    display:none;
  }
  .loading-indicator_c00035.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00035 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_c00035 { 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_c00035" -> "#page-container .classname_c00035")
 */
.pf_c00035 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00035 { /* 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_c00035.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00035 { /* 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_c00035 { /* 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_c00035 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00035 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00035 {overflow:visible;}
  }
}
.c_c00035 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00035 { /* 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_c00035:after { /* webkit #35443 */
  content: '';
}
.t_c00035:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00035 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 */
}
.__c00035 { /* 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_c00035 { /* info for Javascript */
  display:none;
}
.l_c00035 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00035 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00035 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00035: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_c00035 {
    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_c00035.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00035.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_c00035 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00035{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00035;src:url('chunks/assets/font_6b78c10203a447bee2208e8d.woff2')format("woff");}.ff1_c00035{font-family:ff1_c00035;line-height:1.000000;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;}
.m0_c00035{transform:matrix(0.017116,-0.950871,0.249960,0.004499,0,0);-ms-transform:matrix(0.017116,-0.950871,0.249960,0.004499,0,0);-webkit-transform:matrix(0.017116,-0.950871,0.249960,0.004499,0,0);}
.v0_c00035{vertical-align:0.000000px;}
.ls0_c00035{letter-spacing:0.000000px;}
.sc__c00035{text-shadow:none;}
.sc0_c00035{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__c00035{-webkit-text-stroke:0px transparent;}
.sc0_c00035{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00035{word-spacing:0.000000px;}
.fc0_c00035{color:transparent;}
.fs0_c00035{font-size:24.003888px;}
.y0_c00035{bottom:0.000000px;}
.y1_c00035{bottom:547.810500px;}
.h2_c00035{height:24.003888px;}
.h0_c00035{height:711.720000px;}
.h1_c00035{height:711.750000px;}
.w1_c00035{width:945.750000px;}
.w0_c00035{width:946.050000px;}
.x0_c00035{left:0.000000px;}
.x1_c00035{left:9.180000px;}
@media print{
.v0_c00035{vertical-align:0.000000pt;}
.ls0_c00035{letter-spacing:0.000000pt;}
.ws0_c00035{word-spacing:0.000000pt;}
.fs0_c00035{font-size:21.336789pt;}
.y0_c00035{bottom:0.000000pt;}
.y1_c00035{bottom:486.942667pt;}
.h2_c00035{height:21.336789pt;}
.h0_c00035{height:632.640000pt;}
.h1_c00035{height:632.666667pt;}
.w1_c00035{width:840.666667pt;}
.w0_c00035{width:840.933333pt;}
.x0_c00035{left:0.000000pt;}
.x1_c00035{left:8.160000pt;}
}





/* 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_c00036 {
    display:none;
  }
  .loading-indicator_c00036.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00036 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_c00036 { 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_c00036" -> "#page-container .classname_c00036")
 */
.pf_c00036 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00036 { /* 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_c00036.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00036 { /* 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_c00036 { /* 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_c00036 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00036 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00036 {overflow:visible;}
  }
}
.c_c00036 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00036 { /* 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_c00036:after { /* webkit #35443 */
  content: '';
}
.t_c00036:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00036 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 */
}
.__c00036 { /* 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_c00036 { /* info for Javascript */
  display:none;
}
.l_c00036 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00036 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00036 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00036: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_c00036 {
    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_c00036.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00036.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_c00036 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00036{font-family:sans-serif;visibility:hidden;}
.sc__c00036{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00036{-webkit-text-stroke:0px transparent;}
}
.y0_c00036{bottom:0.000000px;}
.h0_c00036{height:711.720000px;}
.h1_c00036{height:711.750000px;}
.w1_c00036{width:945.750000px;}
.w0_c00036{width:946.050000px;}
.x0_c00036{left:0.000000px;}
@media print{
.y0_c00036{bottom:0.000000pt;}
.h0_c00036{height:632.640000pt;}
.h1_c00036{height:632.666667pt;}
.w1_c00036{width:840.666667pt;}
.w0_c00036{width:840.933333pt;}
.x0_c00036{left:0.000000pt;}
}





/* 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_c00037 {
    display:none;
  }
  .loading-indicator_c00037.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00037 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_c00037 { 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_c00037" -> "#page-container .classname_c00037")
 */
.pf_c00037 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00037 { /* 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_c00037.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00037 { /* 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_c00037 { /* 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_c00037 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00037 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00037 {overflow:visible;}
  }
}
.c_c00037 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00037 { /* 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_c00037:after { /* webkit #35443 */
  content: '';
}
.t_c00037:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00037 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 */
}
.__c00037 { /* 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_c00037 { /* info for Javascript */
  display:none;
}
.l_c00037 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00037 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00037 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00037: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_c00037 {
    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_c00037.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00037.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_c00037 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00037{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00037;src:url('chunks/assets/font_bfe6362fd3009c591583128f.woff2')format("woff");}.ff1_c00037{font-family:ff1_c00037;line-height:1.000000;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;}
.m1_c00037{transform:matrix(0.012389,-0.334496,0.249829,0.009253,0,0);-ms-transform:matrix(0.012389,-0.334496,0.249829,0.009253,0,0);-webkit-transform:matrix(0.012389,-0.334496,0.249829,0.009253,0,0);}
.m0_c00037{transform:matrix(0.318200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318200,0.000000,0.000000,0.250000,0,0);}
.v0_c00037{vertical-align:0.000000px;}
.ls0_c00037{letter-spacing:0.000000px;}
.sc__c00037{text-shadow:none;}
.sc0_c00037{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__c00037{-webkit-text-stroke:0px transparent;}
.sc0_c00037{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00037{word-spacing:0.000000px;}
.fc0_c00037{color:transparent;}
.fs1_c00037{font-size:23.992439px;}
.fs0_c00037{font-size:36.000000px;}
.y0_c00037{bottom:0.000000px;}
.y2_c00037{bottom:289.320000px;}
.y1_c00037{bottom:301.456500px;}
.h3_c00037{height:23.992439px;}
.h2_c00037{height:36.000000px;}
.h0_c00037{height:711.720000px;}
.h1_c00037{height:711.750000px;}
.w1_c00037{width:945.750000px;}
.w0_c00037{width:946.050000px;}
.x0_c00037{left:0.000000px;}
.x2_c00037{left:109.615500px;}
.x1_c00037{left:426.330000px;}
@media print{
.v0_c00037{vertical-align:0.000000pt;}
.ls0_c00037{letter-spacing:0.000000pt;}
.ws0_c00037{word-spacing:0.000000pt;}
.fs1_c00037{font-size:21.326612pt;}
.fs0_c00037{font-size:32.000000pt;}
.y0_c00037{bottom:0.000000pt;}
.y2_c00037{bottom:257.173333pt;}
.y1_c00037{bottom:267.961333pt;}
.h3_c00037{height:21.326612pt;}
.h2_c00037{height:32.000000pt;}
.h0_c00037{height:632.640000pt;}
.h1_c00037{height:632.666667pt;}
.w1_c00037{width:840.666667pt;}
.w0_c00037{width:840.933333pt;}
.x0_c00037{left:0.000000pt;}
.x2_c00037{left:97.436000pt;}
.x1_c00037{left:378.960000pt;}
}





/* 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_c00038 {
    display:none;
  }
  .loading-indicator_c00038.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00038 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_c00038 { 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_c00038" -> "#page-container .classname_c00038")
 */
.pf_c00038 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00038 { /* 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_c00038.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00038 { /* 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_c00038 { /* 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_c00038 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00038 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00038 {overflow:visible;}
  }
}
.c_c00038 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00038 { /* 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_c00038:after { /* webkit #35443 */
  content: '';
}
.t_c00038:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00038 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 */
}
.__c00038 { /* 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_c00038 { /* info for Javascript */
  display:none;
}
.l_c00038 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00038 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00038 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00038: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_c00038 {
    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_c00038.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00038.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_c00038 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00038{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00038;src:url('chunks/assets/font_c605e72f209fc835e906f064.woff2')format("woff");}.ff1_c00038{font-family:ff1_c00038;line-height:1.000000;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_c00038{transform:matrix(0.008869,0.000676,-0.019002,0.249277,0,0);-ms-transform:matrix(0.008869,0.000676,-0.019002,0.249277,0,0);-webkit-transform:matrix(0.008869,0.000676,-0.019002,0.249277,0,0);}
.m1e_c00038{transform:matrix(0.046227,0.000508,-0.002750,0.249985,0,0);-ms-transform:matrix(0.046227,0.000508,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.046227,0.000508,-0.002750,0.249985,0,0);}
.m0_c00038{transform:matrix(0.115097,0.001726,-0.003750,0.249972,0,0);-ms-transform:matrix(0.115097,0.001726,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.115097,0.001726,-0.003750,0.249972,0,0);}
.m10_c00038{transform:matrix(0.126881,0.001523,-0.003000,0.249982,0,0);-ms-transform:matrix(0.126881,0.001523,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.126881,0.001523,-0.003000,0.249982,0,0);}
.mc_c00038{transform:matrix(0.130385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130385,0.000000,0.000000,0.250000,0,0);}
.m28_c00038{transform:matrix(0.148129,0.002518,-0.004249,0.249964,0,0);-ms-transform:matrix(0.148129,0.002518,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.148129,0.002518,-0.004249,0.249964,0,0);}
.m2f_c00038{transform:matrix(0.153091,0.011670,-0.019002,0.249277,0,0);-ms-transform:matrix(0.153091,0.011670,-0.019002,0.249277,0,0);-webkit-transform:matrix(0.153091,0.011670,-0.019002,0.249277,0,0);}
.m1f_c00038{transform:matrix(0.164240,0.001807,-0.002750,0.249985,0,0);-ms-transform:matrix(0.164240,0.001807,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.164240,0.001807,-0.002750,0.249985,0,0);}
.m27_c00038{transform:matrix(0.188353,0.003202,-0.004249,0.249964,0,0);-ms-transform:matrix(0.188353,0.003202,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.188353,0.003202,-0.004249,0.249964,0,0);}
.m2a_c00038{transform:matrix(0.197846,0.003363,-0.004249,0.249964,0,0);-ms-transform:matrix(0.197846,0.003363,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.197846,0.003363,-0.004249,0.249964,0,0);}
.m9_c00038{transform:matrix(0.249992,0.003750,-0.003750,0.249972,0,0);-ms-transform:matrix(0.249992,0.003750,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.249992,0.003750,-0.003750,0.249972,0,0);}
.m8_c00038{transform:matrix(0.264630,0.003969,-0.003750,0.249972,0,0);-ms-transform:matrix(0.264630,0.003969,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.264630,0.003969,-0.003750,0.249972,0,0);}
.m4_c00038{transform:matrix(0.267610,0.004014,-0.003750,0.249972,0,0);-ms-transform:matrix(0.267610,0.004014,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.267610,0.004014,-0.003750,0.249972,0,0);}
.m7_c00038{transform:matrix(0.269645,0.004045,-0.003750,0.249972,0,0);-ms-transform:matrix(0.269645,0.004045,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.269645,0.004045,-0.003750,0.249972,0,0);}
.m3_c00038{transform:matrix(0.283018,0.004245,-0.003750,0.249972,0,0);-ms-transform:matrix(0.283018,0.004245,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.283018,0.004245,-0.003750,0.249972,0,0);}
.mb_c00038{transform:matrix(0.283673,0.004255,-0.003750,0.249972,0,0);-ms-transform:matrix(0.283673,0.004255,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.283673,0.004255,-0.003750,0.249972,0,0);}
.m6_c00038{transform:matrix(0.286783,0.004302,-0.003750,0.249972,0,0);-ms-transform:matrix(0.286783,0.004302,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.286783,0.004302,-0.003750,0.249972,0,0);}
.m13_c00038{transform:matrix(0.290239,0.003483,-0.003000,0.249982,0,0);-ms-transform:matrix(0.290239,0.003483,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.290239,0.003483,-0.003000,0.249982,0,0);}
.m18_c00038{transform:matrix(0.299028,0.003588,-0.003000,0.249982,0,0);-ms-transform:matrix(0.299028,0.003588,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.299028,0.003588,-0.003000,0.249982,0,0);}
.m25_c00038{transform:matrix(0.324938,0.005524,-0.004249,0.249964,0,0);-ms-transform:matrix(0.324938,0.005524,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.324938,0.005524,-0.004249,0.249964,0,0);}
.m16_c00038{transform:matrix(0.325057,0.003901,-0.003000,0.249982,0,0);-ms-transform:matrix(0.325057,0.003901,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.325057,0.003901,-0.003000,0.249982,0,0);}
.mf_c00038{transform:matrix(0.328086,0.003937,-0.003000,0.249982,0,0);-ms-transform:matrix(0.328086,0.003937,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.328086,0.003937,-0.003000,0.249982,0,0);}
.m1_c00038{transform:matrix(0.332313,0.004985,-0.003750,0.249972,0,0);-ms-transform:matrix(0.332313,0.004985,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.332313,0.004985,-0.003750,0.249972,0,0);}
.m1a_c00038{transform:matrix(0.337496,0.004050,-0.003000,0.249982,0,0);-ms-transform:matrix(0.337496,0.004050,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.337496,0.004050,-0.003000,0.249982,0,0);}
.m1b_c00038{transform:matrix(0.357369,0.004288,-0.003000,0.249982,0,0);-ms-transform:matrix(0.357369,0.004288,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.357369,0.004288,-0.003000,0.249982,0,0);}
.m2c_c00038{transform:matrix(0.359078,0.027372,-0.019002,0.249277,0,0);-ms-transform:matrix(0.359078,0.027372,-0.019002,0.249277,0,0);-webkit-transform:matrix(0.359078,0.027372,-0.019002,0.249277,0,0);}
.m17_c00038{transform:matrix(0.362319,0.004348,-0.003000,0.249982,0,0);-ms-transform:matrix(0.362319,0.004348,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.362319,0.004348,-0.003000,0.249982,0,0);}
.ma_c00038{transform:matrix(0.368239,0.005524,-0.003750,0.249972,0,0);-ms-transform:matrix(0.368239,0.005524,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.368239,0.005524,-0.003750,0.249972,0,0);}
.m29_c00038{transform:matrix(0.384729,0.006540,-0.004249,0.249964,0,0);-ms-transform:matrix(0.384729,0.006540,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.384729,0.006540,-0.004249,0.249964,0,0);}
.m24_c00038{transform:matrix(0.395593,0.006725,-0.004249,0.249964,0,0);-ms-transform:matrix(0.395593,0.006725,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.395593,0.006725,-0.004249,0.249964,0,0);}
.m1d_c00038{transform:matrix(0.397911,0.004377,-0.002750,0.249985,0,0);-ms-transform:matrix(0.397911,0.004377,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.397911,0.004377,-0.002750,0.249985,0,0);}
.m19_c00038{transform:matrix(0.403651,0.004844,-0.003000,0.249982,0,0);-ms-transform:matrix(0.403651,0.004844,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.403651,0.004844,-0.003000,0.249982,0,0);}
.me_c00038{transform:matrix(0.432989,0.005196,-0.003000,0.249982,0,0);-ms-transform:matrix(0.432989,0.005196,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.432989,0.005196,-0.003000,0.249982,0,0);}
.m5_c00038{transform:matrix(0.447970,0.006720,-0.003750,0.249972,0,0);-ms-transform:matrix(0.447970,0.006720,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.447970,0.006720,-0.003750,0.249972,0,0);}
.m15_c00038{transform:matrix(0.457057,0.005485,-0.003000,0.249982,0,0);-ms-transform:matrix(0.457057,0.005485,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.457057,0.005485,-0.003000,0.249982,0,0);}
.m14_c00038{transform:matrix(0.478466,0.005742,-0.003000,0.249982,0,0);-ms-transform:matrix(0.478466,0.005742,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.478466,0.005742,-0.003000,0.249982,0,0);}
.m2e_c00038{transform:matrix(0.577724,0.044039,-0.019002,0.249277,0,0);-ms-transform:matrix(0.577724,0.044039,-0.019002,0.249277,0,0);-webkit-transform:matrix(0.577724,0.044039,-0.019002,0.249277,0,0);}
.m2_c00038{transform:matrix(0.717249,0.010759,-0.003750,0.249972,0,0);-ms-transform:matrix(0.717249,0.010759,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.717249,0.010759,-0.003750,0.249972,0,0);}
.m22_c00038{transform:matrix(0.786067,0.008647,-0.002750,0.249985,0,0);-ms-transform:matrix(0.786067,0.008647,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.786067,0.008647,-0.002750,0.249985,0,0);}
.md_c00038{transform:matrix(0.870515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.870515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.870515,0.000000,0.000000,0.250000,0,0);}
.m2b_c00038{transform:matrix(1.177335,0.020015,-0.004249,0.249964,0,0);-ms-transform:matrix(1.177335,0.020015,-0.004249,0.249964,0,0);-webkit-transform:matrix(1.177335,0.020015,-0.004249,0.249964,0,0);}
.m12_c00038{transform:matrix(1.269489,0.015234,-0.003000,0.249982,0,0);-ms-transform:matrix(1.269489,0.015234,-0.003000,0.249982,0,0);-webkit-transform:matrix(1.269489,0.015234,-0.003000,0.249982,0,0);}
.m20_c00038{transform:matrix(1.323100,0.014554,-0.002750,0.249985,0,0);-ms-transform:matrix(1.323100,0.014554,-0.002750,0.249985,0,0);-webkit-transform:matrix(1.323100,0.014554,-0.002750,0.249985,0,0);}
.m23_c00038{transform:matrix(1.382396,0.015206,-0.002750,0.249985,0,0);-ms-transform:matrix(1.382396,0.015206,-0.002750,0.249985,0,0);-webkit-transform:matrix(1.382396,0.015206,-0.002750,0.249985,0,0);}
.m21_c00038{transform:matrix(1.385966,0.015246,-0.002750,0.249985,0,0);-ms-transform:matrix(1.385966,0.015246,-0.002750,0.249985,0,0);-webkit-transform:matrix(1.385966,0.015246,-0.002750,0.249985,0,0);}
.m26_c00038{transform:matrix(1.512916,0.025720,-0.004249,0.249964,0,0);-ms-transform:matrix(1.512916,0.025720,-0.004249,0.249964,0,0);-webkit-transform:matrix(1.512916,0.025720,-0.004249,0.249964,0,0);}
.m1c_c00038{transform:matrix(1.901685,0.020919,-0.002750,0.249985,0,0);-ms-transform:matrix(1.901685,0.020919,-0.002750,0.249985,0,0);-webkit-transform:matrix(1.901685,0.020919,-0.002750,0.249985,0,0);}
.m11_c00038{transform:matrix(3.198900,0.038387,-0.003000,0.249982,0,0);-ms-transform:matrix(3.198900,0.038387,-0.003000,0.249982,0,0);-webkit-transform:matrix(3.198900,0.038387,-0.003000,0.249982,0,0);}
.v0_c00038{vertical-align:0.000000px;}
.ls0_c00038{letter-spacing:0.000000px;}
.sc__c00038{text-shadow:none;}
.sc0_c00038{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__c00038{-webkit-text-stroke:0px transparent;}
.sc0_c00038{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00038{word-spacing:0.000000px;}
.fc0_c00038{color:transparent;}
.fs1_c00038{font-size:18.000000px;}
.fs8_c00038{font-size:47.994840px;}
.fs0_c00038{font-size:54.006075px;}
.fs2_c00038{font-size:72.005184px;}
.fs3_c00038{font-size:78.005616px;}
.fs4_c00038{font-size:102.006171px;}
.fs5_c00038{font-size:108.006534px;}
.fs7_c00038{font-size:150.021673px;}
.fs6_c00038{font-size:162.009801px;}
.y0_c00038{bottom:0.000000px;}
.y2f_c00038{bottom:1.352778px;}
.y2e_c00038{bottom:3.290664px;}
.y2d_c00038{bottom:5.721600px;}
.y2c_c00038{bottom:10.834500px;}
.y2b_c00038{bottom:94.201964px;}
.y2a_c00038{bottom:94.948910px;}
.y29_c00038{bottom:96.536820px;}
.y28_c00038{bottom:97.300264px;}
.y27_c00038{bottom:98.100761px;}
.y26_c00038{bottom:102.817037px;}
.y25_c00038{bottom:103.408917px;}
.y24_c00038{bottom:105.726000px;}
.y23_c00038{bottom:385.388494px;}
.y22_c00038{bottom:387.780588px;}
.y21_c00038{bottom:392.281842px;}
.y20_c00038{bottom:395.348606px;}
.y1f_c00038{bottom:411.912425px;}
.y1e_c00038{bottom:435.322275px;}
.y1d_c00038{bottom:440.280409px;}
.y1c_c00038{bottom:445.233000px;}
.y1b_c00038{bottom:509.730384px;}
.y1a_c00038{bottom:510.469950px;}
.y19_c00038{bottom:511.055994px;}
.y18_c00038{bottom:512.340708px;}
.y17_c00038{bottom:513.651534px;}
.y16_c00038{bottom:514.110798px;}
.y15_c00038{bottom:516.406068px;}
.y14_c00038{bottom:518.674758px;}
.y13_c00038{bottom:613.548996px;}
.y12_c00038{bottom:615.168276px;}
.y11_c00038{bottom:619.410696px;}
.y10_c00038{bottom:620.551824px;}
.yf_c00038{bottom:622.466646px;}
.ye_c00038{bottom:624.255000px;}
.yc_c00038{bottom:691.281653px;}
.yd_c00038{bottom:691.341000px;}
.ya_c00038{bottom:692.444183px;}
.yb_c00038{bottom:692.460315px;}
.y9_c00038{bottom:692.796555px;}
.y8_c00038{bottom:694.007370px;}
.y7_c00038{bottom:694.950908px;}
.y6_c00038{bottom:695.473290px;}
.y5_c00038{bottom:695.701283px;}
.y4_c00038{bottom:696.316815px;}
.y3_c00038{bottom:697.466768px;}
.y2_c00038{bottom:697.851585px;}
.y1_c00038{bottom:698.494500px;}
.h3_c00038{height:18.000000px;}
.ha_c00038{height:47.994840px;}
.h2_c00038{height:54.006075px;}
.h4_c00038{height:72.005184px;}
.h5_c00038{height:78.005616px;}
.h6_c00038{height:102.006171px;}
.h7_c00038{height:108.006534px;}
.h9_c00038{height:150.021673px;}
.h8_c00038{height:162.009801px;}
.h0_c00038{height:711.720000px;}
.h1_c00038{height:711.750000px;}
.w1_c00038{width:945.750000px;}
.w0_c00038{width:946.050000px;}
.x0_c00038{left:0.000000px;}
.x1b_c00038{left:17.754000px;}
.x22_c00038{left:24.396000px;}
.x14_c00038{left:25.459836px;}
.xf_c00038{left:28.123500px;}
.x1e_c00038{left:37.260378px;}
.x23_c00038{left:160.695000px;}
.x10_c00038{left:177.153000px;}
.x1_c00038{left:192.106500px;}
.x24_c00038{left:195.511500px;}
.x1f_c00038{left:233.575719px;}
.x2_c00038{left:234.967500px;}
.x15_c00038{left:252.272772px;}
.x3_c00038{left:260.622000px;}
.x4_c00038{left:337.285500px;}
.x5_c00038{left:378.321000px;}
.x6_c00038{left:393.520500px;}
.x7_c00038{left:428.346000px;}
.x11_c00038{left:431.815500px;}
.x1c_c00038{left:467.989500px;}
.x25_c00038{left:472.939500px;}
.x16_c00038{left:481.800780px;}
.x8_c00038{left:491.248500px;}
.x26_c00038{left:520.027500px;}
.x17_c00038{left:527.698878px;}
.x20_c00038{left:533.676519px;}
.x27_c00038{left:564.936000px;}
.x9_c00038{left:571.969500px;}
.xb_c00038{left:594.385500px;}
.xa_c00038{left:595.461000px;}
.x18_c00038{left:658.812528px;}
.xc_c00038{left:672.963000px;}
.x21_c00038{left:693.178007px;}
.x28_c00038{left:702.280500px;}
.xd_c00038{left:721.710000px;}
.xe_c00038{left:747.360000px;}
.x12_c00038{left:785.350500px;}
.x19_c00038{left:787.250106px;}
.x29_c00038{left:814.411500px;}
.x1a_c00038{left:845.838510px;}
.x2a_c00038{left:881.484675px;}
.x2b_c00038{left:913.374717px;}
.x1d_c00038{left:918.729000px;}
.x13_c00038{left:920.290500px;}
.x2c_c00038{left:938.796721px;}
@media print{
.v0_c00038{vertical-align:0.000000pt;}
.ls0_c00038{letter-spacing:0.000000pt;}
.ws0_c00038{word-spacing:0.000000pt;}
.fs1_c00038{font-size:16.000000pt;}
.fs8_c00038{font-size:42.662080pt;}
.fs0_c00038{font-size:48.005400pt;}
.fs2_c00038{font-size:64.004608pt;}
.fs3_c00038{font-size:69.338325pt;}
.fs4_c00038{font-size:90.672152pt;}
.fs5_c00038{font-size:96.005808pt;}
.fs7_c00038{font-size:133.352599pt;}
.fs6_c00038{font-size:144.008712pt;}
.y0_c00038{bottom:0.000000pt;}
.y2f_c00038{bottom:1.202469pt;}
.y2e_c00038{bottom:2.925035pt;}
.y2d_c00038{bottom:5.085867pt;}
.y2c_c00038{bottom:9.630667pt;}
.y2b_c00038{bottom:83.735079pt;}
.y2a_c00038{bottom:84.399031pt;}
.y29_c00038{bottom:85.810507pt;}
.y28_c00038{bottom:86.489124pt;}
.y27_c00038{bottom:87.200676pt;}
.y26_c00038{bottom:91.392921pt;}
.y25_c00038{bottom:91.919037pt;}
.y24_c00038{bottom:93.978667pt;}
.y23_c00038{bottom:342.567551pt;}
.y22_c00038{bottom:344.693856pt;}
.y21_c00038{bottom:348.694971pt;}
.y20_c00038{bottom:351.420983pt;}
.y1f_c00038{bottom:366.144377pt;}
.y1e_c00038{bottom:386.953133pt;}
.y1d_c00038{bottom:391.360364pt;}
.y1c_c00038{bottom:395.762667pt;}
.y1b_c00038{bottom:453.093675pt;}
.y1a_c00038{bottom:453.751067pt;}
.y19_c00038{bottom:454.271995pt;}
.y18_c00038{bottom:455.413963pt;}
.y17_c00038{bottom:456.579141pt;}
.y16_c00038{bottom:456.987376pt;}
.y15_c00038{bottom:459.027616pt;}
.y14_c00038{bottom:461.044229pt;}
.y13_c00038{bottom:545.376885pt;}
.y12_c00038{bottom:546.816245pt;}
.y11_c00038{bottom:550.587285pt;}
.y10_c00038{bottom:551.601621pt;}
.yf_c00038{bottom:553.303685pt;}
.ye_c00038{bottom:554.893333pt;}
.yc_c00038{bottom:614.472580pt;}
.yd_c00038{bottom:614.525333pt;}
.ya_c00038{bottom:615.505940pt;}
.yb_c00038{bottom:615.520280pt;}
.y9_c00038{bottom:615.819160pt;}
.y8_c00038{bottom:616.895440pt;}
.y7_c00038{bottom:617.734140pt;}
.y6_c00038{bottom:618.198480pt;}
.y5_c00038{bottom:618.401140pt;}
.y4_c00038{bottom:618.948280pt;}
.y3_c00038{bottom:619.970460pt;}
.y2_c00038{bottom:620.312520pt;}
.y1_c00038{bottom:620.884000pt;}
.h3_c00038{height:16.000000pt;}
.ha_c00038{height:42.662080pt;}
.h2_c00038{height:48.005400pt;}
.h4_c00038{height:64.004608pt;}
.h5_c00038{height:69.338325pt;}
.h6_c00038{height:90.672152pt;}
.h7_c00038{height:96.005808pt;}
.h9_c00038{height:133.352599pt;}
.h8_c00038{height:144.008712pt;}
.h0_c00038{height:632.640000pt;}
.h1_c00038{height:632.666667pt;}
.w1_c00038{width:840.666667pt;}
.w0_c00038{width:840.933333pt;}
.x0_c00038{left:0.000000pt;}
.x1b_c00038{left:15.781333pt;}
.x22_c00038{left:21.685333pt;}
.x14_c00038{left:22.630965pt;}
.xf_c00038{left:24.998667pt;}
.x1e_c00038{left:33.120336pt;}
.x23_c00038{left:142.840000pt;}
.x10_c00038{left:157.469333pt;}
.x1_c00038{left:170.761333pt;}
.x24_c00038{left:173.788000pt;}
.x1f_c00038{left:207.622861pt;}
.x2_c00038{left:208.860000pt;}
.x15_c00038{left:224.242464pt;}
.x3_c00038{left:231.664000pt;}
.x4_c00038{left:299.809333pt;}
.x5_c00038{left:336.285333pt;}
.x6_c00038{left:349.796000pt;}
.x7_c00038{left:380.752000pt;}
.x11_c00038{left:383.836000pt;}
.x1c_c00038{left:415.990667pt;}
.x25_c00038{left:420.390667pt;}
.x16_c00038{left:428.267360pt;}
.x8_c00038{left:436.665333pt;}
.x26_c00038{left:462.246667pt;}
.x17_c00038{left:469.065669pt;}
.x20_c00038{left:474.379128pt;}
.x27_c00038{left:502.165333pt;}
.x9_c00038{left:508.417333pt;}
.xb_c00038{left:528.342667pt;}
.xa_c00038{left:529.298667pt;}
.x18_c00038{left:585.611136pt;}
.xc_c00038{left:598.189333pt;}
.x21_c00038{left:616.158228pt;}
.x28_c00038{left:624.249333pt;}
.xd_c00038{left:641.520000pt;}
.xe_c00038{left:664.320000pt;}
.x12_c00038{left:698.089333pt;}
.x19_c00038{left:699.777872pt;}
.x29_c00038{left:723.921333pt;}
.x1a_c00038{left:751.856453pt;}
.x2a_c00038{left:783.541933pt;}
.x2b_c00038{left:811.888637pt;}
.x1d_c00038{left:816.648000pt;}
.x13_c00038{left:818.036000pt;}
.x2c_c00038{left:834.485975pt;}
}





/* 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_c00039 {
    display:none;
  }
  .loading-indicator_c00039.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00039 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_c00039 { 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_c00039" -> "#page-container .classname_c00039")
 */
.pf_c00039 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00039 { /* 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_c00039.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00039 { /* 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_c00039 { /* 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_c00039 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00039 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00039 {overflow:visible;}
  }
}
.c_c00039 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00039 { /* 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_c00039:after { /* webkit #35443 */
  content: '';
}
.t_c00039:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00039 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 */
}
.__c00039 { /* 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_c00039 { /* info for Javascript */
  display:none;
}
.l_c00039 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00039 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00039 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00039: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_c00039 {
    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_c00039.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00039.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_c00039 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00039{font-family:sans-serif;visibility:hidden;}
.sc__c00039{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00039{-webkit-text-stroke:0px transparent;}
}
.y0_c00039{bottom:0.000000px;}
.h0_c00039{height:711.720000px;}
.h1_c00039{height:711.750000px;}
.w1_c00039{width:945.750000px;}
.w0_c00039{width:946.050000px;}
.x0_c00039{left:0.000000px;}
@media print{
.y0_c00039{bottom:0.000000pt;}
.h0_c00039{height:632.640000pt;}
.h1_c00039{height:632.666667pt;}
.w1_c00039{width:840.666667pt;}
.w0_c00039{width:840.933333pt;}
.x0_c00039{left:0.000000pt;}
}





/* 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_c00040 {
    display:none;
  }
  .loading-indicator_c00040.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00040 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_c00040 { 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_c00040" -> "#page-container .classname_c00040")
 */
.pf_c00040 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00040 { /* 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_c00040.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00040 { /* 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_c00040 { /* 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_c00040 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00040 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00040 {overflow:visible;}
  }
}
.c_c00040 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00040 { /* 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_c00040:after { /* webkit #35443 */
  content: '';
}
.t_c00040:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00040 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 */
}
.__c00040 { /* 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_c00040 { /* info for Javascript */
  display:none;
}
.l_c00040 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00040 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00040 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00040: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_c00040 {
    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_c00040.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00040.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_c00040 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00040{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00040;src:url('chunks/assets/font_fabf4b590f7fb32aea93ffb2.woff2')format("woff");}.ff1_c00040{font-family:ff1_c00040;line-height:1.000000;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;}
.m5_c00040{transform:matrix(0.249294,0.001745,-0.001750,0.249994,0,0);-ms-transform:matrix(0.249294,0.001745,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.249294,0.001745,-0.001750,0.249994,0,0);}
.m10_c00040{transform:matrix(0.254761,-0.003821,0.003750,0.249972,0,0);-ms-transform:matrix(0.254761,-0.003821,0.003750,0.249972,0,0);-webkit-transform:matrix(0.254761,-0.003821,0.003750,0.249972,0,0);}
.m3_c00040{transform:matrix(0.255374,0.001788,-0.001750,0.249994,0,0);-ms-transform:matrix(0.255374,0.001788,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.255374,0.001788,-0.001750,0.249994,0,0);}
.m8_c00040{transform:matrix(0.280038,0.001960,-0.001750,0.249994,0,0);-ms-transform:matrix(0.280038,0.001960,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.280038,0.001960,-0.001750,0.249994,0,0);}
.mf_c00040{transform:matrix(0.283273,-0.004249,0.003750,0.249972,0,0);-ms-transform:matrix(0.283273,-0.004249,0.003750,0.249972,0,0);-webkit-transform:matrix(0.283273,-0.004249,0.003750,0.249972,0,0);}
.m4_c00040{transform:matrix(0.287498,0.002012,-0.001750,0.249994,0,0);-ms-transform:matrix(0.287498,0.002012,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.287498,0.002012,-0.001750,0.249994,0,0);}
.m2_c00040{transform:matrix(0.291973,0.002044,-0.001750,0.249994,0,0);-ms-transform:matrix(0.291973,0.002044,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.291973,0.002044,-0.001750,0.249994,0,0);}
.m1_c00040{transform:matrix(0.292108,0.002045,-0.001750,0.249994,0,0);-ms-transform:matrix(0.292108,0.002045,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.292108,0.002045,-0.001750,0.249994,0,0);}
.mb_c00040{transform:matrix(0.300173,0.002101,-0.001750,0.249994,0,0);-ms-transform:matrix(0.300173,0.002101,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.300173,0.002101,-0.001750,0.249994,0,0);}
.m0_c00040{transform:matrix(0.303408,0.002124,-0.001750,0.249994,0,0);-ms-transform:matrix(0.303408,0.002124,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.303408,0.002124,-0.001750,0.249994,0,0);}
.ma_c00040{transform:matrix(0.305588,0.002139,-0.001750,0.249994,0,0);-ms-transform:matrix(0.305588,0.002139,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.305588,0.002139,-0.001750,0.249994,0,0);}
.m12_c00040{transform:matrix(0.311445,-0.004672,0.003750,0.249972,0,0);-ms-transform:matrix(0.311445,-0.004672,0.003750,0.249972,0,0);-webkit-transform:matrix(0.311445,-0.004672,0.003750,0.249972,0,0);}
.m7_c00040{transform:matrix(0.313092,0.002192,-0.001750,0.249994,0,0);-ms-transform:matrix(0.313092,0.002192,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.313092,0.002192,-0.001750,0.249994,0,0);}
.m11_c00040{transform:matrix(0.320569,-0.004809,0.003750,0.249972,0,0);-ms-transform:matrix(0.320569,-0.004809,0.003750,0.249972,0,0);-webkit-transform:matrix(0.320569,-0.004809,0.003750,0.249972,0,0);}
.md_c00040{transform:matrix(0.330058,-0.004951,0.003750,0.249972,0,0);-ms-transform:matrix(0.330058,-0.004951,0.003750,0.249972,0,0);-webkit-transform:matrix(0.330058,-0.004951,0.003750,0.249972,0,0);}
.m6_c00040{transform:matrix(0.347631,0.002433,-0.001750,0.249994,0,0);-ms-transform:matrix(0.347631,0.002433,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.347631,0.002433,-0.001750,0.249994,0,0);}
.mc_c00040{transform:matrix(0.363916,0.002547,-0.001750,0.249994,0,0);-ms-transform:matrix(0.363916,0.002547,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.363916,0.002547,-0.001750,0.249994,0,0);}
.m9_c00040{transform:matrix(0.386076,0.002703,-0.001750,0.249994,0,0);-ms-transform:matrix(0.386076,0.002703,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.386076,0.002703,-0.001750,0.249994,0,0);}
.me_c00040{transform:matrix(1.057606,-0.015864,0.003750,0.249972,0,0);-ms-transform:matrix(1.057606,-0.015864,0.003750,0.249972,0,0);-webkit-transform:matrix(1.057606,-0.015864,0.003750,0.249972,0,0);}
.v0_c00040{vertical-align:0.000000px;}
.ls0_c00040{letter-spacing:0.000000px;}
.sc__c00040{text-shadow:none;}
.sc0_c00040{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__c00040{-webkit-text-stroke:0px transparent;}
.sc0_c00040{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00040{word-spacing:0.000000px;}
.fc0_c00040{color:transparent;}
.fs0_c00040{font-size:48.001176px;}
.fs1_c00040{font-size:138.015524px;}
.y0_c00040{bottom:0.000000px;}
.ye_c00040{bottom:639.624000px;}
.yf_c00040{bottom:640.348927px;}
.y10_c00040{bottom:643.898955px;}
.y11_c00040{bottom:644.862495px;}
.y12_c00040{bottom:646.314150px;}
.y13_c00040{bottom:648.340815px;}
.yd_c00040{bottom:694.092993px;}
.yc_c00040{bottom:694.527935px;}
.yb_c00040{bottom:694.714813px;}
.ya_c00040{bottom:694.884934px;}
.y9_c00040{bottom:695.376429px;}
.y8_c00040{bottom:695.843248px;}
.y7_c00040{bottom:696.030243px;}
.y6_c00040{bottom:696.209772px;}
.y5_c00040{bottom:696.489524px;}
.y4_c00040{bottom:696.703167px;}
.y3_c00040{bottom:697.026346px;}
.y2_c00040{bottom:697.203954px;}
.y1_c00040{bottom:697.519500px;}
.h2_c00040{height:48.001176px;}
.h3_c00040{height:138.015524px;}
.h0_c00040{height:711.720000px;}
.h1_c00040{height:711.750000px;}
.w1_c00040{width:945.750000px;}
.w0_c00040{width:946.050000px;}
.x0_c00040{left:0.000000px;}
.xe_c00040{left:17.655000px;}
.xf_c00040{left:65.983500px;}
.x1_c00040{left:191.371500px;}
.x2_c00040{left:236.449500px;}
.x3_c00040{left:261.822000px;}
.x10_c00040{left:302.652000px;}
.x4_c00040{left:307.990500px;}
.x5_c00040{left:338.511000px;}
.x11_c00040{left:366.888000px;}
.x6_c00040{left:378.475500px;}
.x7_c00040{left:404.122500px;}
.x8_c00040{left:430.836000px;}
.x12_c00040{left:463.665000px;}
.x9_c00040{left:497.524500px;}
.xa_c00040{left:567.738000px;}
.xb_c00040{left:592.041000px;}
.x13_c00040{left:598.776000px;}
.xc_c00040{left:618.738000px;}
.xd_c00040{left:680.872500px;}
@media print{
.v0_c00040{vertical-align:0.000000pt;}
.ls0_c00040{letter-spacing:0.000000pt;}
.ws0_c00040{word-spacing:0.000000pt;}
.fs0_c00040{font-size:42.667712pt;}
.fs1_c00040{font-size:122.680466pt;}
.y0_c00040{bottom:0.000000pt;}
.ye_c00040{bottom:568.554667pt;}
.yf_c00040{bottom:569.199047pt;}
.y10_c00040{bottom:572.354627pt;}
.y11_c00040{bottom:573.211107pt;}
.y12_c00040{bottom:574.501467pt;}
.y13_c00040{bottom:576.302947pt;}
.yd_c00040{bottom:616.971549pt;}
.yc_c00040{bottom:617.358164pt;}
.yb_c00040{bottom:617.524279pt;}
.ya_c00040{bottom:617.675497pt;}
.y9_c00040{bottom:618.112381pt;}
.y8_c00040{bottom:618.527332pt;}
.y7_c00040{bottom:618.693549pt;}
.y6_c00040{bottom:618.853131pt;}
.y5_c00040{bottom:619.101799pt;}
.y4_c00040{bottom:619.291704pt;}
.y3_c00040{bottom:619.578975pt;}
.y2_c00040{bottom:619.736848pt;}
.y1_c00040{bottom:620.017333pt;}
.h2_c00040{height:42.667712pt;}
.h3_c00040{height:122.680466pt;}
.h0_c00040{height:632.640000pt;}
.h1_c00040{height:632.666667pt;}
.w1_c00040{width:840.666667pt;}
.w0_c00040{width:840.933333pt;}
.x0_c00040{left:0.000000pt;}
.xe_c00040{left:15.693333pt;}
.xf_c00040{left:58.652000pt;}
.x1_c00040{left:170.108000pt;}
.x2_c00040{left:210.177333pt;}
.x3_c00040{left:232.730667pt;}
.x10_c00040{left:269.024000pt;}
.x4_c00040{left:273.769333pt;}
.x5_c00040{left:300.898667pt;}
.x11_c00040{left:326.122667pt;}
.x6_c00040{left:336.422667pt;}
.x7_c00040{left:359.220000pt;}
.x8_c00040{left:382.965333pt;}
.x12_c00040{left:412.146667pt;}
.x9_c00040{left:442.244000pt;}
.xa_c00040{left:504.656000pt;}
.xb_c00040{left:526.258667pt;}
.x13_c00040{left:532.245333pt;}
.xc_c00040{left:549.989333pt;}
.xd_c00040{left:605.220000pt;}
}





/* 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_c00041 {
    display:none;
  }
  .loading-indicator_c00041.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00041 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_c00041 { 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_c00041" -> "#page-container .classname_c00041")
 */
.pf_c00041 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00041 { /* 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_c00041.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00041 { /* 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_c00041 { /* 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_c00041 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00041 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00041 {overflow:visible;}
  }
}
.c_c00041 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00041 { /* 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_c00041:after { /* webkit #35443 */
  content: '';
}
.t_c00041:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00041 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 */
}
.__c00041 { /* 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_c00041 { /* info for Javascript */
  display:none;
}
.l_c00041 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00041 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00041 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00041: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_c00041 {
    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_c00041.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00041.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_c00041 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00041{font-family:sans-serif;visibility:hidden;}
.sc__c00041{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00041{-webkit-text-stroke:0px transparent;}
}
.y0_c00041{bottom:0.000000px;}
.h0_c00041{height:711.720000px;}
.h1_c00041{height:711.750000px;}
.w1_c00041{width:945.750000px;}
.w0_c00041{width:946.050000px;}
.x0_c00041{left:0.000000px;}
@media print{
.y0_c00041{bottom:0.000000pt;}
.h0_c00041{height:632.640000pt;}
.h1_c00041{height:632.666667pt;}
.w1_c00041{width:840.666667pt;}
.w0_c00041{width:840.933333pt;}
.x0_c00041{left:0.000000pt;}
}





/* 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_c00042 {
    display:none;
  }
  .loading-indicator_c00042.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00042 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_c00042 { 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_c00042" -> "#page-container .classname_c00042")
 */
.pf_c00042 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00042 { /* 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_c00042.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00042 { /* 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_c00042 { /* 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_c00042 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00042 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00042 {overflow:visible;}
  }
}
.c_c00042 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00042 { /* 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_c00042:after { /* webkit #35443 */
  content: '';
}
.t_c00042:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00042 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 */
}
.__c00042 { /* 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_c00042 { /* info for Javascript */
  display:none;
}
.l_c00042 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00042 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00042 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00042: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_c00042 {
    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_c00042.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00042.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_c00042 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00042{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00042;src:url('chunks/assets/font_7c6b9abe6ee2a268480c528b.woff2')format("woff");}.ff1_c00042{font-family:ff1_c00042;line-height:1.000000;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;}
.m13_c00042{transform:matrix(0.012729,0.000191,-0.003750,0.249972,0,0);-ms-transform:matrix(0.012729,0.000191,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.012729,0.000191,-0.003750,0.249972,0,0);}
.m20_c00042{transform:matrix(0.023140,0.000139,-0.001500,0.249996,0,0);-ms-transform:matrix(0.023140,0.000139,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.023140,0.000139,-0.001500,0.249996,0,0);}
.m2f_c00042{transform:matrix(0.089783,0.000539,-0.001500,0.249996,0,0);-ms-transform:matrix(0.089783,0.000539,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.089783,0.000539,-0.001500,0.249996,0,0);}
.m1e_c00042{transform:matrix(0.095853,0.000575,-0.001500,0.249996,0,0);-ms-transform:matrix(0.095853,0.000575,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.095853,0.000575,-0.001500,0.249996,0,0);}
.m3e_c00042{transform:matrix(0.132897,0.000930,-0.001750,0.249994,0,0);-ms-transform:matrix(0.132897,0.000930,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.132897,0.000930,-0.001750,0.249994,0,0);}
.m3c_c00042{transform:matrix(0.139067,0.000973,-0.001750,0.249994,0,0);-ms-transform:matrix(0.139067,0.000973,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.139067,0.000973,-0.001750,0.249994,0,0);}
.m41_c00042{transform:matrix(0.160486,0.001123,-0.001750,0.249994,0,0);-ms-transform:matrix(0.160486,0.001123,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.160486,0.001123,-0.001750,0.249994,0,0);}
.m34_c00042{transform:matrix(0.246470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246470,0.000000,0.000000,0.250000,0,0);}
.m2c_c00042{transform:matrix(0.247711,0.001486,-0.001500,0.249996,0,0);-ms-transform:matrix(0.247711,0.001486,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.247711,0.001486,-0.001500,0.249996,0,0);}
.m10_c00042{transform:matrix(0.248392,0.003726,-0.003750,0.249972,0,0);-ms-transform:matrix(0.248392,0.003726,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.248392,0.003726,-0.003750,0.249972,0,0);}
.m2b_c00042{transform:matrix(0.253495,0.001521,-0.001500,0.249996,0,0);-ms-transform:matrix(0.253495,0.001521,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.253495,0.001521,-0.001500,0.249996,0,0);}
.m2e_c00042{transform:matrix(0.255375,0.001532,-0.001500,0.249996,0,0);-ms-transform:matrix(0.255375,0.001532,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.255375,0.001532,-0.001500,0.249996,0,0);}
.m30_c00042{transform:matrix(0.263175,0.001579,-0.001500,0.249996,0,0);-ms-transform:matrix(0.263175,0.001579,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.263175,0.001579,-0.001500,0.249996,0,0);}
.m8_c00042{transform:matrix(0.268430,0.004026,-0.003750,0.249972,0,0);-ms-transform:matrix(0.268430,0.004026,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.268430,0.004026,-0.003750,0.249972,0,0);}
.m14_c00042{transform:matrix(0.274360,0.001646,-0.001500,0.249996,0,0);-ms-transform:matrix(0.274360,0.001646,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.274360,0.001646,-0.001500,0.249996,0,0);}
.m15_c00042{transform:matrix(0.274690,0.001648,-0.001500,0.249996,0,0);-ms-transform:matrix(0.274690,0.001648,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.274690,0.001648,-0.001500,0.249996,0,0);}
.m2d_c00042{transform:matrix(0.309154,0.001855,-0.001500,0.249996,0,0);-ms-transform:matrix(0.309154,0.001855,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.309154,0.001855,-0.001500,0.249996,0,0);}
.m23_c00042{transform:matrix(0.317864,0.001907,-0.001500,0.249996,0,0);-ms-transform:matrix(0.317864,0.001907,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.317864,0.001907,-0.001500,0.249996,0,0);}
.m3_c00042{transform:matrix(0.321429,0.004821,-0.003750,0.249972,0,0);-ms-transform:matrix(0.321429,0.004821,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.321429,0.004821,-0.003750,0.249972,0,0);}
.m37_c00042{transform:matrix(0.328887,0.002302,-0.001750,0.249994,0,0);-ms-transform:matrix(0.328887,0.002302,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.328887,0.002302,-0.001750,0.249994,0,0);}
.md_c00042{transform:matrix(0.342461,0.005137,-0.003750,0.249972,0,0);-ms-transform:matrix(0.342461,0.005137,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.342461,0.005137,-0.003750,0.249972,0,0);}
.m36_c00042{transform:matrix(0.345367,0.002418,-0.001750,0.249994,0,0);-ms-transform:matrix(0.345367,0.002418,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.345367,0.002418,-0.001750,0.249994,0,0);}
.m33_c00042{transform:matrix(0.348325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348325,0.000000,0.000000,0.250000,0,0);}
.m47_c00042{transform:matrix(0.363946,0.002548,-0.001750,0.249994,0,0);-ms-transform:matrix(0.363946,0.002548,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.363946,0.002548,-0.001750,0.249994,0,0);}
.m2a_c00042{transform:matrix(0.365013,0.002190,-0.001500,0.249996,0,0);-ms-transform:matrix(0.365013,0.002190,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.365013,0.002190,-0.001500,0.249996,0,0);}
.m2_c00042{transform:matrix(0.367204,0.005508,-0.003750,0.249972,0,0);-ms-transform:matrix(0.367204,0.005508,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.367204,0.005508,-0.003750,0.249972,0,0);}
.m3d_c00042{transform:matrix(0.367831,0.002575,-0.001750,0.249994,0,0);-ms-transform:matrix(0.367831,0.002575,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.367831,0.002575,-0.001750,0.249994,0,0);}
.m1_c00042{transform:matrix(0.373993,0.005610,-0.003750,0.249972,0,0);-ms-transform:matrix(0.373993,0.005610,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.373993,0.005610,-0.003750,0.249972,0,0);}
.m28_c00042{transform:matrix(0.374473,0.002247,-0.001500,0.249996,0,0);-ms-transform:matrix(0.374473,0.002247,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.374473,0.002247,-0.001500,0.249996,0,0);}
.m12_c00042{transform:matrix(0.379362,0.005690,-0.003750,0.249972,0,0);-ms-transform:matrix(0.379362,0.005690,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.379362,0.005690,-0.003750,0.249972,0,0);}
.m1d_c00042{transform:matrix(0.383558,0.002301,-0.001500,0.249996,0,0);-ms-transform:matrix(0.383558,0.002301,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.383558,0.002301,-0.001500,0.249996,0,0);}
.m35_c00042{transform:matrix(0.399030,0.002793,-0.001750,0.249994,0,0);-ms-transform:matrix(0.399030,0.002793,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.399030,0.002793,-0.001750,0.249994,0,0);}
.m45_c00042{transform:matrix(0.416195,0.002913,-0.001750,0.249994,0,0);-ms-transform:matrix(0.416195,0.002913,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.416195,0.002913,-0.001750,0.249994,0,0);}
.m1f_c00042{transform:matrix(0.420242,0.002521,-0.001500,0.249996,0,0);-ms-transform:matrix(0.420242,0.002521,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.420242,0.002521,-0.001500,0.249996,0,0);}
.m3a_c00042{transform:matrix(0.425400,0.002978,-0.001750,0.249994,0,0);-ms-transform:matrix(0.425400,0.002978,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.425400,0.002978,-0.001750,0.249994,0,0);}
.m24_c00042{transform:matrix(0.429332,0.002576,-0.001500,0.249996,0,0);-ms-transform:matrix(0.429332,0.002576,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.429332,0.002576,-0.001500,0.249996,0,0);}
.m1b_c00042{transform:matrix(0.430307,0.002582,-0.001500,0.249996,0,0);-ms-transform:matrix(0.430307,0.002582,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.430307,0.002582,-0.001500,0.249996,0,0);}
.m31_c00042{transform:matrix(0.438282,0.002630,-0.001500,0.249996,0,0);-ms-transform:matrix(0.438282,0.002630,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.438282,0.002630,-0.001500,0.249996,0,0);}
.m1a_c00042{transform:matrix(0.439837,0.002639,-0.001500,0.249996,0,0);-ms-transform:matrix(0.439837,0.002639,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.439837,0.002639,-0.001500,0.249996,0,0);}
.m42_c00042{transform:matrix(0.447519,0.003133,-0.001750,0.249994,0,0);-ms-transform:matrix(0.447519,0.003133,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.447519,0.003133,-0.001750,0.249994,0,0);}
.m29_c00042{transform:matrix(0.449507,0.002697,-0.001500,0.249996,0,0);-ms-transform:matrix(0.449507,0.002697,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.449507,0.002697,-0.001500,0.249996,0,0);}
.m43_c00042{transform:matrix(0.450559,0.003154,-0.001750,0.249994,0,0);-ms-transform:matrix(0.450559,0.003154,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.450559,0.003154,-0.001750,0.249994,0,0);}
.m17_c00042{transform:matrix(0.454382,0.002726,-0.001500,0.249996,0,0);-ms-transform:matrix(0.454382,0.002726,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.454382,0.002726,-0.001500,0.249996,0,0);}
.m25_c00042{transform:matrix(0.455017,0.002730,-0.001500,0.249996,0,0);-ms-transform:matrix(0.455017,0.002730,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.455017,0.002730,-0.001500,0.249996,0,0);}
.me_c00042{transform:matrix(0.457694,0.006865,-0.003750,0.249972,0,0);-ms-transform:matrix(0.457694,0.006865,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.457694,0.006865,-0.003750,0.249972,0,0);}
.m6_c00042{transform:matrix(0.461368,0.006921,-0.003750,0.249972,0,0);-ms-transform:matrix(0.461368,0.006921,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.461368,0.006921,-0.003750,0.249972,0,0);}
.m1c_c00042{transform:matrix(0.472706,0.002836,-0.001500,0.249996,0,0);-ms-transform:matrix(0.472706,0.002836,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.472706,0.002836,-0.001500,0.249996,0,0);}
.m0_c00042{transform:matrix(0.473482,0.007102,-0.003750,0.249972,0,0);-ms-transform:matrix(0.473482,0.007102,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.473482,0.007102,-0.003750,0.249972,0,0);}
.m40_c00042{transform:matrix(0.496128,0.003473,-0.001750,0.249994,0,0);-ms-transform:matrix(0.496128,0.003473,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.496128,0.003473,-0.001750,0.249994,0,0);}
.m19_c00042{transform:matrix(0.496811,0.002981,-0.001500,0.249996,0,0);-ms-transform:matrix(0.496811,0.002981,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.496811,0.002981,-0.001500,0.249996,0,0);}
.m22_c00042{transform:matrix(0.500501,0.003003,-0.001500,0.249996,0,0);-ms-transform:matrix(0.500501,0.003003,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.500501,0.003003,-0.001500,0.249996,0,0);}
.m11_c00042{transform:matrix(0.511212,0.007668,-0.003750,0.249972,0,0);-ms-transform:matrix(0.511212,0.007668,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.511212,0.007668,-0.003750,0.249972,0,0);}
.m32_c00042{transform:matrix(0.534040,0.003204,-0.001500,0.249996,0,0);-ms-transform:matrix(0.534040,0.003204,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.534040,0.003204,-0.001500,0.249996,0,0);}
.m7_c00042{transform:matrix(0.535995,0.008040,-0.003750,0.249972,0,0);-ms-transform:matrix(0.535995,0.008040,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.535995,0.008040,-0.003750,0.249972,0,0);}
.m21_c00042{transform:matrix(0.537575,0.003225,-0.001500,0.249996,0,0);-ms-transform:matrix(0.537575,0.003225,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.537575,0.003225,-0.001500,0.249996,0,0);}
.m18_c00042{transform:matrix(0.543095,0.003259,-0.001500,0.249996,0,0);-ms-transform:matrix(0.543095,0.003259,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.543095,0.003259,-0.001500,0.249996,0,0);}
.m5_c00042{transform:matrix(0.555243,0.008329,-0.003750,0.249972,0,0);-ms-transform:matrix(0.555243,0.008329,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.555243,0.008329,-0.003750,0.249972,0,0);}
.mb_c00042{transform:matrix(0.570681,0.008560,-0.003750,0.249972,0,0);-ms-transform:matrix(0.570681,0.008560,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.570681,0.008560,-0.003750,0.249972,0,0);}
.m26_c00042{transform:matrix(0.572775,0.003437,-0.001500,0.249996,0,0);-ms-transform:matrix(0.572775,0.003437,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.572775,0.003437,-0.001500,0.249996,0,0);}
.m27_c00042{transform:matrix(0.613594,0.003682,-0.001500,0.249996,0,0);-ms-transform:matrix(0.613594,0.003682,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.613594,0.003682,-0.001500,0.249996,0,0);}
.mc_c00042{transform:matrix(0.707665,0.010615,-0.003750,0.249972,0,0);-ms-transform:matrix(0.707665,0.010615,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.707665,0.010615,-0.003750,0.249972,0,0);}
.m9_c00042{transform:matrix(0.754590,0.011319,-0.003750,0.249972,0,0);-ms-transform:matrix(0.754590,0.011319,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.754590,0.011319,-0.003750,0.249972,0,0);}
.m39_c00042{transform:matrix(0.757951,0.005306,-0.001750,0.249994,0,0);-ms-transform:matrix(0.757951,0.005306,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.757951,0.005306,-0.001750,0.249994,0,0);}
.m16_c00042{transform:matrix(0.807760,0.004847,-0.001500,0.249996,0,0);-ms-transform:matrix(0.807760,0.004847,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.807760,0.004847,-0.001500,0.249996,0,0);}
.m44_c00042{transform:matrix(0.819115,0.005734,-0.001750,0.249994,0,0);-ms-transform:matrix(0.819115,0.005734,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.819115,0.005734,-0.001750,0.249994,0,0);}
.m38_c00042{transform:matrix(0.857319,0.006001,-0.001750,0.249994,0,0);-ms-transform:matrix(0.857319,0.006001,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.857319,0.006001,-0.001750,0.249994,0,0);}
.m3f_c00042{transform:matrix(0.907998,0.006356,-0.001750,0.249994,0,0);-ms-transform:matrix(0.907998,0.006356,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.907998,0.006356,-0.001750,0.249994,0,0);}
.m3b_c00042{transform:matrix(0.920402,0.006443,-0.001750,0.249994,0,0);-ms-transform:matrix(0.920402,0.006443,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.920402,0.006443,-0.001750,0.249994,0,0);}
.m4_c00042{transform:matrix(0.951568,0.014274,-0.003750,0.249972,0,0);-ms-transform:matrix(0.951568,0.014274,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.951568,0.014274,-0.003750,0.249972,0,0);}
.mf_c00042{transform:matrix(0.965886,0.014488,-0.003750,0.249972,0,0);-ms-transform:matrix(0.965886,0.014488,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.965886,0.014488,-0.003750,0.249972,0,0);}
.ma_c00042{transform:matrix(0.993773,0.014907,-0.003750,0.249972,0,0);-ms-transform:matrix(0.993773,0.014907,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.993773,0.014907,-0.003750,0.249972,0,0);}
.m46_c00042{transform:matrix(1.591001,0.011137,-0.001750,0.249994,0,0);-ms-transform:matrix(1.591001,0.011137,-0.001750,0.249994,0,0);-webkit-transform:matrix(1.591001,0.011137,-0.001750,0.249994,0,0);}
.v0_c00042{vertical-align:0.000000px;}
.ls0_c00042{letter-spacing:0.000000px;}
.sc__c00042{text-shadow:none;}
.sc0_c00042{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__c00042{-webkit-text-stroke:0px transparent;}
.sc0_c00042{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00042{word-spacing:0.000000px;}
.fc0_c00042{color:transparent;}
.fs2_c00042{font-size:66.001188px;}
.fs3_c00042{font-size:72.001296px;}
.fs0_c00042{font-size:72.008100px;}
.fs6_c00042{font-size:84.002058px;}
.fs1_c00042{font-size:90.010124px;}
.fs5_c00042{font-size:102.000000px;}
.fs7_c00042{font-size:108.002646px;}
.fs4_c00042{font-size:144.002592px;}
.y47_c00042{bottom:-0.407431px;}
.y0_c00042{bottom:0.000000px;}
.y46_c00042{bottom:0.729697px;}
.y45_c00042{bottom:1.065742px;}
.y44_c00042{bottom:2.180997px;}
.y43_c00042{bottom:2.334218px;}
.y42_c00042{bottom:2.590745px;}
.y41_c00042{bottom:4.171080px;}
.y40_c00042{bottom:4.463332px;}
.y3f_c00042{bottom:5.030941px;}
.y3e_c00042{bottom:5.129291px;}
.y34_c00042{bottom:58.459500px;}
.y3d_c00042{bottom:102.432586px;}
.y3c_c00042{bottom:103.072624px;}
.y3b_c00042{bottom:104.068812px;}
.y3a_c00042{bottom:104.678033px;}
.y39_c00042{bottom:105.449488px;}
.y38_c00042{bottom:105.980074px;}
.y37_c00042{bottom:107.318782px;}
.y36_c00042{bottom:108.010502px;}
.y35_c00042{bottom:108.271500px;}
.y33_c00042{bottom:270.112674px;}
.y32_c00042{bottom:271.064454px;}
.y31_c00042{bottom:271.928292px;}
.y30_c00042{bottom:272.349009px;}
.y2f_c00042{bottom:274.106517px;}
.y2e_c00042{bottom:275.341818px;}
.y2d_c00042{bottom:276.929532px;}
.y2c_c00042{bottom:277.399986px;}
.y2b_c00042{bottom:279.178668px;}
.y2a_c00042{bottom:342.543486px;}
.y29_c00042{bottom:343.010397px;}
.y28_c00042{bottom:344.048109px;}
.y27_c00042{bottom:344.785011px;}
.y26_c00042{bottom:345.461499px;}
.y25_c00042{bottom:345.972408px;}
.y24_c00042{bottom:346.590858px;}
.y23_c00042{bottom:347.561211px;}
.y22_c00042{bottom:348.847506px;}
.y21_c00042{bottom:453.279015px;}
.y20_c00042{bottom:453.760164px;}
.y1f_c00042{bottom:453.998466px;}
.y1e_c00042{bottom:454.944771px;}
.y1d_c00042{bottom:455.411322px;}
.y1c_c00042{bottom:455.745033px;}
.y1b_c00042{bottom:456.197103px;}
.y1a_c00042{bottom:456.567669px;}
.y19_c00042{bottom:456.926139px;}
.y18_c00042{bottom:457.282530px;}
.y17_c00042{bottom:458.024481px;}
.y16_c00042{bottom:458.281539px;}
.y15_c00042{bottom:458.730000px;}
.y14_c00042{bottom:554.412105px;}
.y13_c00042{bottom:557.735707px;}
.y12_c00042{bottom:558.909172px;}
.y11_c00042{bottom:582.639502px;}
.y10_c00042{bottom:584.927752px;}
.yf_c00042{bottom:585.709492px;}
.ye_c00042{bottom:586.450552px;}
.yd_c00042{bottom:588.702105px;}
.yc_c00042{bottom:590.446417px;}
.yb_c00042{bottom:593.364577px;}
.ya_c00042{bottom:595.366875px;}
.y9_c00042{bottom:613.715647px;}
.y8_c00042{bottom:616.192110px;}
.y7_c00042{bottom:616.969372px;}
.y6_c00042{bottom:618.654217px;}
.y5_c00042{bottom:621.932850px;}
.y4_c00042{bottom:622.873845px;}
.y3_c00042{bottom:624.481515px;}
.y2_c00042{bottom:625.293608px;}
.y1_c00042{bottom:626.674500px;}
.h4_c00042{height:66.001188px;}
.h5_c00042{height:72.001296px;}
.h2_c00042{height:72.008100px;}
.h8_c00042{height:84.002058px;}
.h3_c00042{height:90.010124px;}
.h7_c00042{height:102.000000px;}
.h9_c00042{height:108.002646px;}
.h6_c00042{height:144.002592px;}
.h0_c00042{height:711.720000px;}
.h1_c00042{height:711.750000px;}
.w1_c00042{width:945.750000px;}
.w0_c00042{width:946.050000px;}
.x0_c00042{left:0.000000px;}
.x28_c00042{left:11.880159px;}
.x3b_c00042{left:17.634360px;}
.x3c_c00042{left:34.041476px;}
.x33_c00042{left:38.182500px;}
.x21_c00042{left:40.076172px;}
.xa_c00042{left:62.495715px;}
.x1_c00042{left:70.392000px;}
.x15_c00042{left:74.728500px;}
.x16_c00042{left:117.571500px;}
.x3d_c00042{left:128.629137px;}
.x34_c00042{left:136.999500px;}
.x29_c00042{left:160.071822px;}
.x2_c00042{left:162.451500px;}
.x3e_c00042{left:177.236973px;}
.xb_c00042{left:195.982215px;}
.x2a_c00042{left:199.229409px;}
.x22_c00042{left:200.956746px;}
.x3_c00042{left:216.591000px;}
.x17_c00042{left:241.230000px;}
.x18_c00042{left:300.628500px;}
.x23_c00042{left:322.180788px;}
.x4_c00042{left:323.769000px;}
.x35_c00042{left:328.243500px;}
.x2b_c00042{left:331.593648px;}
.x19_c00042{left:360.373500px;}
.x5_c00042{left:386.502000px;}
.xc_c00042{left:390.526215px;}
.x24_c00042{left:399.504861px;}
.x36_c00042{left:404.041500px;}
.x1a_c00042{left:422.134500px;}
.x12_c00042{left:433.445918px;}
.x2c_c00042{left:434.473440px;}
.x3f_c00042{left:440.715321px;}
.x25_c00042{left:463.405596px;}
.x40_c00042{left:483.576626px;}
.x1b_c00042{left:497.479500px;}
.xd_c00042{left:506.813715px;}
.x41_c00042{left:509.108304px;}
.x37_c00042{left:514.249500px;}
.x13_c00042{left:531.181305px;}
.x26_c00042{left:547.902579px;}
.x1c_c00042{left:553.098000px;}
.x2d_c00042{left:580.886166px;}
.x38_c00042{left:601.281000px;}
.x6_c00042{left:605.077500px;}
.x2e_c00042{left:616.004406px;}
.x1d_c00042{left:630.856500px;}
.x27_c00042{left:639.968472px;}
.xe_c00042{left:656.917215px;}
.x2f_c00042{left:687.974814px;}
.x42_c00042{left:695.003106px;}
.xf_c00042{left:706.321215px;}
.x7_c00042{left:717.400500px;}
.x39_c00042{left:743.593500px;}
.x43_c00042{left:750.938495px;}
.x10_c00042{left:758.437215px;}
.x30_c00042{left:767.351961px;}
.x8_c00042{left:769.218000px;}
.x31_c00042{left:786.510000px;}
.x1e_c00042{left:788.574000px;}
.x14_c00042{left:808.167270px;}
.x1f_c00042{left:828.291000px;}
.x3a_c00042{left:835.027500px;}
.x32_c00042{left:844.020000px;}
.x20_c00042{left:908.482500px;}
.x11_c00042{left:910.987215px;}
.x9_c00042{left:934.315500px;}
.x44_c00042{left:940.386818px;}
@media print{
.v0_c00042{vertical-align:0.000000pt;}
.ls0_c00042{letter-spacing:0.000000pt;}
.ws0_c00042{word-spacing:0.000000pt;}
.fs2_c00042{font-size:58.667723pt;}
.fs3_c00042{font-size:64.001152pt;}
.fs0_c00042{font-size:64.007200pt;}
.fs6_c00042{font-size:74.668496pt;}
.fs1_c00042{font-size:80.008999pt;}
.fs5_c00042{font-size:90.666667pt;}
.fs7_c00042{font-size:96.002352pt;}
.fs4_c00042{font-size:128.002304pt;}
.y47_c00042{bottom:-0.362161pt;}
.y0_c00042{bottom:0.000000pt;}
.y46_c00042{bottom:0.648620pt;}
.y45_c00042{bottom:0.947327pt;}
.y44_c00042{bottom:1.938664pt;}
.y43_c00042{bottom:2.074860pt;}
.y42_c00042{bottom:2.302884pt;}
.y41_c00042{bottom:3.707627pt;}
.y40_c00042{bottom:3.967407pt;}
.y3f_c00042{bottom:4.471948pt;}
.y3e_c00042{bottom:4.559369pt;}
.y34_c00042{bottom:51.964000pt;}
.y3d_c00042{bottom:91.051188pt;}
.y3c_c00042{bottom:91.620111pt;}
.y3b_c00042{bottom:92.505611pt;}
.y3a_c00042{bottom:93.047140pt;}
.y39_c00042{bottom:93.732879pt;}
.y38_c00042{bottom:94.204511pt;}
.y37_c00042{bottom:95.394473pt;}
.y36_c00042{bottom:96.009335pt;}
.y35_c00042{bottom:96.241333pt;}
.y33_c00042{bottom:240.100155pt;}
.y32_c00042{bottom:240.946181pt;}
.y31_c00042{bottom:241.714037pt;}
.y30_c00042{bottom:242.088008pt;}
.y2f_c00042{bottom:243.650237pt;}
.y2e_c00042{bottom:244.748283pt;}
.y2d_c00042{bottom:246.159584pt;}
.y2c_c00042{bottom:246.577765pt;}
.y2b_c00042{bottom:248.158816pt;}
.y2a_c00042{bottom:304.483099pt;}
.y29_c00042{bottom:304.898131pt;}
.y28_c00042{bottom:305.820541pt;}
.y27_c00042{bottom:306.475565pt;}
.y26_c00042{bottom:307.076888pt;}
.y25_c00042{bottom:307.531029pt;}
.y24_c00042{bottom:308.080763pt;}
.y23_c00042{bottom:308.943299pt;}
.y22_c00042{bottom:310.086672pt;}
.y21_c00042{bottom:402.914680pt;}
.y20_c00042{bottom:403.342368pt;}
.y1f_c00042{bottom:403.554192pt;}
.y1e_c00042{bottom:404.395352pt;}
.y1d_c00042{bottom:404.810064pt;}
.y1c_c00042{bottom:405.106696pt;}
.y1b_c00042{bottom:405.508536pt;}
.y1a_c00042{bottom:405.837928pt;}
.y19_c00042{bottom:406.156568pt;}
.y18_c00042{bottom:406.473360pt;}
.y17_c00042{bottom:407.132872pt;}
.y16_c00042{bottom:407.361368pt;}
.y15_c00042{bottom:407.760000pt;}
.y14_c00042{bottom:492.810760pt;}
.y13_c00042{bottom:495.765073pt;}
.y12_c00042{bottom:496.808153pt;}
.y11_c00042{bottom:517.901780pt;}
.y10_c00042{bottom:519.935780pt;}
.yf_c00042{bottom:520.630660pt;}
.ye_c00042{bottom:521.289380pt;}
.yd_c00042{bottom:523.290760pt;}
.yc_c00042{bottom:524.841260pt;}
.yb_c00042{bottom:527.435180pt;}
.ya_c00042{bottom:529.215000pt;}
.y9_c00042{bottom:545.525020pt;}
.y8_c00042{bottom:547.726320pt;}
.y7_c00042{bottom:548.417220pt;}
.y6_c00042{bottom:549.914860pt;}
.y5_c00042{bottom:552.829200pt;}
.y4_c00042{bottom:553.665640pt;}
.y3_c00042{bottom:555.094680pt;}
.y2_c00042{bottom:555.816540pt;}
.y1_c00042{bottom:557.044000pt;}
.h4_c00042{height:58.667723pt;}
.h5_c00042{height:64.001152pt;}
.h2_c00042{height:64.007200pt;}
.h8_c00042{height:74.668496pt;}
.h3_c00042{height:80.008999pt;}
.h7_c00042{height:90.666667pt;}
.h9_c00042{height:96.002352pt;}
.h6_c00042{height:128.002304pt;}
.h0_c00042{height:632.640000pt;}
.h1_c00042{height:632.666667pt;}
.w1_c00042{width:840.666667pt;}
.w0_c00042{width:840.933333pt;}
.x0_c00042{left:0.000000pt;}
.x28_c00042{left:10.560141pt;}
.x3b_c00042{left:15.674987pt;}
.x3c_c00042{left:30.259089pt;}
.x33_c00042{left:33.940000pt;}
.x21_c00042{left:35.623264pt;}
.xa_c00042{left:55.551747pt;}
.x1_c00042{left:62.570667pt;}
.x15_c00042{left:66.425333pt;}
.x16_c00042{left:104.508000pt;}
.x3d_c00042{left:114.337011pt;}
.x34_c00042{left:121.777333pt;}
.x29_c00042{left:142.286064pt;}
.x2_c00042{left:144.401333pt;}
.x3e_c00042{left:157.543976pt;}
.xb_c00042{left:174.206413pt;}
.x2a_c00042{left:177.092808pt;}
.x22_c00042{left:178.628219pt;}
.x3_c00042{left:192.525333pt;}
.x17_c00042{left:214.426667pt;}
.x18_c00042{left:267.225333pt;}
.x23_c00042{left:286.382923pt;}
.x4_c00042{left:287.794667pt;}
.x35_c00042{left:291.772000pt;}
.x2b_c00042{left:294.749909pt;}
.x19_c00042{left:320.332000pt;}
.x5_c00042{left:343.557333pt;}
.xc_c00042{left:347.134413pt;}
.x24_c00042{left:355.115432pt;}
.x36_c00042{left:359.148000pt;}
.x1a_c00042{left:375.230667pt;}
.x12_c00042{left:385.285260pt;}
.x2c_c00042{left:386.198613pt;}
.x3f_c00042{left:391.746952pt;}
.x25_c00042{left:411.916085pt;}
.x40_c00042{left:429.845889pt;}
.x1b_c00042{left:442.204000pt;}
.xd_c00042{left:450.501080pt;}
.x41_c00042{left:452.540715pt;}
.x37_c00042{left:457.110667pt;}
.x13_c00042{left:472.161160pt;}
.x26_c00042{left:487.024515pt;}
.x1c_c00042{left:491.642667pt;}
.x2d_c00042{left:516.343259pt;}
.x38_c00042{left:534.472000pt;}
.x6_c00042{left:537.846667pt;}
.x2e_c00042{left:547.559472pt;}
.x1d_c00042{left:560.761333pt;}
.x27_c00042{left:568.860864pt;}
.xe_c00042{left:583.926413pt;}
.x2f_c00042{left:611.533168pt;}
.x42_c00042{left:617.780539pt;}
.xf_c00042{left:627.841080pt;}
.x7_c00042{left:637.689333pt;}
.x39_c00042{left:660.972000pt;}
.x43_c00042{left:667.500884pt;}
.x10_c00042{left:674.166413pt;}
.x30_c00042{left:682.090632pt;}
.x8_c00042{left:683.749333pt;}
.x31_c00042{left:699.120000pt;}
.x1e_c00042{left:700.954667pt;}
.x14_c00042{left:718.370907pt;}
.x1f_c00042{left:736.258667pt;}
.x3a_c00042{left:742.246667pt;}
.x32_c00042{left:750.240000pt;}
.x20_c00042{left:807.540000pt;}
.x11_c00042{left:809.766413pt;}
.x9_c00042{left:830.502667pt;}
.x44_c00042{left:835.899393pt;}
}





/* 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_c00043 {
    display:none;
  }
  .loading-indicator_c00043.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00043 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_c00043 { 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_c00043" -> "#page-container .classname_c00043")
 */
.pf_c00043 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00043 { /* 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_c00043.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00043 { /* 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_c00043 { /* 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_c00043 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00043 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00043 {overflow:visible;}
  }
}
.c_c00043 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00043 { /* 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_c00043:after { /* webkit #35443 */
  content: '';
}
.t_c00043:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00043 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 */
}
.__c00043 { /* 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_c00043 { /* info for Javascript */
  display:none;
}
.l_c00043 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00043 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00043 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00043: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_c00043 {
    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_c00043.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00043.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_c00043 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00043{font-family:sans-serif;visibility:hidden;}
.sc__c00043{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00043{-webkit-text-stroke:0px transparent;}
}
.y0_c00043{bottom:0.000000px;}
.h0_c00043{height:711.720000px;}
.h1_c00043{height:711.750000px;}
.w1_c00043{width:945.750000px;}
.w0_c00043{width:946.050000px;}
.x0_c00043{left:0.000000px;}
@media print{
.y0_c00043{bottom:0.000000pt;}
.h0_c00043{height:632.640000pt;}
.h1_c00043{height:632.666667pt;}
.w1_c00043{width:840.666667pt;}
.w0_c00043{width:840.933333pt;}
.x0_c00043{left:0.000000pt;}
}





/* 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_c00044 {
    display:none;
  }
  .loading-indicator_c00044.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00044 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_c00044 { 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_c00044" -> "#page-container .classname_c00044")
 */
.pf_c00044 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00044 { /* 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_c00044.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00044 { /* 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_c00044 { /* 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_c00044 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00044 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00044 {overflow:visible;}
  }
}
.c_c00044 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00044 { /* 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_c00044:after { /* webkit #35443 */
  content: '';
}
.t_c00044:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00044 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 */
}
.__c00044 { /* 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_c00044 { /* info for Javascript */
  display:none;
}
.l_c00044 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00044 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00044 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00044: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_c00044 {
    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_c00044.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00044.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_c00044 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00044{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00044;src:url('chunks/assets/font_7338808dce68dce1bfd6891a.woff2')format("woff");}.ff1_c00044{font-family:ff1_c00044;line-height:1.000000;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;}
.m1_c00044{transform:matrix(0.240965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240965,0.000000,0.000000,0.250000,0,0);}
.m0_c00044{transform:matrix(0.405040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405040,0.000000,0.000000,0.250000,0,0);}
.v0_c00044{vertical-align:0.000000px;}
.ls0_c00044{letter-spacing:0.000000px;}
.sc__c00044{text-shadow:none;}
.sc0_c00044{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__c00044{-webkit-text-stroke:0px transparent;}
.sc0_c00044{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00044{word-spacing:0.000000px;}
.fc0_c00044{color:transparent;}
.fs1_c00044{font-size:42.000000px;}
.fs0_c00044{font-size:54.000000px;}
.y0_c00044{bottom:0.000000px;}
.y2_c00044{bottom:93.420000px;}
.y1_c00044{bottom:214.386000px;}
.h3_c00044{height:42.000000px;}
.h2_c00044{height:54.000000px;}
.h0_c00044{height:711.720000px;}
.h1_c00044{height:711.750000px;}
.w1_c00044{width:945.750000px;}
.w0_c00044{width:946.050000px;}
.x0_c00044{left:0.000000px;}
.x2_c00044{left:188.730000px;}
.x1_c00044{left:426.870000px;}
@media print{
.v0_c00044{vertical-align:0.000000pt;}
.ls0_c00044{letter-spacing:0.000000pt;}
.ws0_c00044{word-spacing:0.000000pt;}
.fs1_c00044{font-size:37.333333pt;}
.fs0_c00044{font-size:48.000000pt;}
.y0_c00044{bottom:0.000000pt;}
.y2_c00044{bottom:83.040000pt;}
.y1_c00044{bottom:190.565333pt;}
.h3_c00044{height:37.333333pt;}
.h2_c00044{height:48.000000pt;}
.h0_c00044{height:632.640000pt;}
.h1_c00044{height:632.666667pt;}
.w1_c00044{width:840.666667pt;}
.w0_c00044{width:840.933333pt;}
.x0_c00044{left:0.000000pt;}
.x2_c00044{left:167.760000pt;}
.x1_c00044{left:379.440000pt;}
}





/* 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_c00045 {
    display:none;
  }
  .loading-indicator_c00045.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00045 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_c00045 { 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_c00045" -> "#page-container .classname_c00045")
 */
.pf_c00045 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00045 { /* 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_c00045.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00045 { /* 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_c00045 { /* 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_c00045 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00045 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00045 {overflow:visible;}
  }
}
.c_c00045 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00045 { /* 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_c00045:after { /* webkit #35443 */
  content: '';
}
.t_c00045:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00045 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 */
}
.__c00045 { /* 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_c00045 { /* info for Javascript */
  display:none;
}
.l_c00045 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00045 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00045 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00045: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_c00045 {
    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_c00045.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00045.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_c00045 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00045{font-family:sans-serif;visibility:hidden;}
.sc__c00045{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00045{-webkit-text-stroke:0px transparent;}
}
.y0_c00045{bottom:0.000000px;}
.h0_c00045{height:711.720000px;}
.h1_c00045{height:711.750000px;}
.w1_c00045{width:945.750000px;}
.w0_c00045{width:946.050000px;}
.x0_c00045{left:0.000000px;}
@media print{
.y0_c00045{bottom:0.000000pt;}
.h0_c00045{height:632.640000pt;}
.h1_c00045{height:632.666667pt;}
.w1_c00045{width:840.666667pt;}
.w0_c00045{width:840.933333pt;}
.x0_c00045{left:0.000000pt;}
}





/* 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_c00046 {
    display:none;
  }
  .loading-indicator_c00046.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00046 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_c00046 { 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_c00046" -> "#page-container .classname_c00046")
 */
.pf_c00046 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00046 { /* 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_c00046.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00046 { /* 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_c00046 { /* 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_c00046 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00046 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00046 {overflow:visible;}
  }
}
.c_c00046 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00046 { /* 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_c00046:after { /* webkit #35443 */
  content: '';
}
.t_c00046:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00046 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 */
}
.__c00046 { /* 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_c00046 { /* info for Javascript */
  display:none;
}
.l_c00046 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00046 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00046 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00046: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_c00046 {
    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_c00046.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00046.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_c00046 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00046{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00046;src:url('chunks/assets/font_7c6b9abe6ee2a268480c528b.woff2')format("woff");}.ff1_c00046{font-family:ff1_c00046;line-height:1.000000;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;}
.m1_c00046{transform:matrix(0.032039,0.000256,-0.002000,0.249992,0,0);-ms-transform:matrix(0.032039,0.000256,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.032039,0.000256,-0.002000,0.249992,0,0);}
.m24_c00046{transform:matrix(0.050662,0.000507,-0.002500,0.249988,0,0);-ms-transform:matrix(0.050662,0.000507,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.050662,0.000507,-0.002500,0.249988,0,0);}
.m2_c00046{transform:matrix(0.064028,0.000512,-0.002000,0.249992,0,0);-ms-transform:matrix(0.064028,0.000512,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.064028,0.000512,-0.002000,0.249992,0,0);}
.m35_c00046{transform:matrix(0.093137,0.000745,-0.002000,0.249992,0,0);-ms-transform:matrix(0.093137,0.000745,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.093137,0.000745,-0.002000,0.249992,0,0);}
.m21_c00046{transform:matrix(0.103265,0.001033,-0.002500,0.249988,0,0);-ms-transform:matrix(0.103265,0.001033,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.103265,0.001033,-0.002500,0.249988,0,0);}
.md_c00046{transform:matrix(0.129605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129605,0.000000,0.000000,0.250000,0,0);}
.m4_c00046{transform:matrix(0.130861,0.001047,-0.002000,0.249992,0,0);-ms-transform:matrix(0.130861,0.001047,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.130861,0.001047,-0.002000,0.249992,0,0);}
.m31_c00046{transform:matrix(0.161305,0.001290,-0.002000,0.249992,0,0);-ms-transform:matrix(0.161305,0.001290,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.161305,0.001290,-0.002000,0.249992,0,0);}
.m28_c00046{transform:matrix(0.166625,0.001333,-0.002000,0.249992,0,0);-ms-transform:matrix(0.166625,0.001333,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.166625,0.001333,-0.002000,0.249992,0,0);}
.m42_c00046{transform:matrix(0.182479,0.001460,-0.002000,0.249992,0,0);-ms-transform:matrix(0.182479,0.001460,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.182479,0.001460,-0.002000,0.249992,0,0);}
.m2d_c00046{transform:matrix(0.183409,0.001467,-0.002000,0.249992,0,0);-ms-transform:matrix(0.183409,0.001467,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.183409,0.001467,-0.002000,0.249992,0,0);}
.m3_c00046{transform:matrix(0.203358,0.001627,-0.002000,0.249992,0,0);-ms-transform:matrix(0.203358,0.001627,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.203358,0.001627,-0.002000,0.249992,0,0);}
.m2e_c00046{transform:matrix(0.214578,0.001717,-0.002000,0.249992,0,0);-ms-transform:matrix(0.214578,0.001717,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.214578,0.001717,-0.002000,0.249992,0,0);}
.m36_c00046{transform:matrix(0.215193,0.001722,-0.002000,0.249992,0,0);-ms-transform:matrix(0.215193,0.001722,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.215193,0.001722,-0.002000,0.249992,0,0);}
.m58_c00046{transform:matrix(0.228940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228940,0.000000,0.000000,0.250000,0,0);}
.m0_c00046{transform:matrix(0.231198,0.001850,-0.002000,0.249992,0,0);-ms-transform:matrix(0.231198,0.001850,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.231198,0.001850,-0.002000,0.249992,0,0);}
.m46_c00046{transform:matrix(0.243159,0.001702,-0.001750,0.249994,0,0);-ms-transform:matrix(0.243159,0.001702,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.243159,0.001702,-0.001750,0.249994,0,0);}
.mf_c00046{transform:matrix(0.254560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254560,0.000000,0.000000,0.250000,0,0);}
.me_c00046{transform:matrix(0.275900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275900,0.000000,0.000000,0.250000,0,0);}
.m53_c00046{transform:matrix(0.277454,0.002497,-0.002250,0.249990,0,0);-ms-transform:matrix(0.277454,0.002497,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.277454,0.002497,-0.002250,0.249990,0,0);}
.m3e_c00046{transform:matrix(0.281381,0.002251,-0.002000,0.249992,0,0);-ms-transform:matrix(0.281381,0.002251,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.281381,0.002251,-0.002000,0.249992,0,0);}
.m4d_c00046{transform:matrix(0.284803,0.002563,-0.002250,0.249990,0,0);-ms-transform:matrix(0.284803,0.002563,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.284803,0.002563,-0.002250,0.249990,0,0);}
.m8_c00046{transform:matrix(0.295840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295840,0.000000,0.000000,0.250000,0,0);}
.m57_c00046{transform:matrix(0.296078,0.002665,-0.002250,0.249990,0,0);-ms-transform:matrix(0.296078,0.002665,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.296078,0.002665,-0.002250,0.249990,0,0);}
.m47_c00046{transform:matrix(0.296403,0.002075,-0.001750,0.249994,0,0);-ms-transform:matrix(0.296403,0.002075,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.296403,0.002075,-0.001750,0.249994,0,0);}
.m40_c00046{transform:matrix(0.296920,0.002375,-0.002000,0.249992,0,0);-ms-transform:matrix(0.296920,0.002375,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.296920,0.002375,-0.002000,0.249992,0,0);}
.m52_c00046{transform:matrix(0.301378,0.002712,-0.002250,0.249990,0,0);-ms-transform:matrix(0.301378,0.002712,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.301378,0.002712,-0.002250,0.249990,0,0);}
.mb_c00046{transform:matrix(0.301495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301495,0.000000,0.000000,0.250000,0,0);}
.m23_c00046{transform:matrix(0.302825,0.003028,-0.002500,0.249988,0,0);-ms-transform:matrix(0.302825,0.003028,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.302825,0.003028,-0.002500,0.249988,0,0);}
.ma_c00046{transform:matrix(0.303640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303640,0.000000,0.000000,0.250000,0,0);}
.mc_c00046{transform:matrix(0.304495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304495,0.000000,0.000000,0.250000,0,0);}
.m45_c00046{transform:matrix(0.307367,0.002152,-0.001750,0.249994,0,0);-ms-transform:matrix(0.307367,0.002152,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.307367,0.002152,-0.001750,0.249994,0,0);}
.m3d_c00046{transform:matrix(0.308465,0.002468,-0.002000,0.249992,0,0);-ms-transform:matrix(0.308465,0.002468,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.308465,0.002468,-0.002000,0.249992,0,0);}
.m38_c00046{transform:matrix(0.308780,0.002470,-0.002000,0.249992,0,0);-ms-transform:matrix(0.308780,0.002470,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.308780,0.002470,-0.002000,0.249992,0,0);}
.m25_c00046{transform:matrix(0.310489,0.003105,-0.002500,0.249988,0,0);-ms-transform:matrix(0.310489,0.003105,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.310489,0.003105,-0.002500,0.249988,0,0);}
.m55_c00046{transform:matrix(0.311182,0.002801,-0.002250,0.249990,0,0);-ms-transform:matrix(0.311182,0.002801,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.311182,0.002801,-0.002250,0.249990,0,0);}
.m2c_c00046{transform:matrix(0.318935,0.002551,-0.002000,0.249992,0,0);-ms-transform:matrix(0.318935,0.002551,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.318935,0.002551,-0.002000,0.249992,0,0);}
.m2f_c00046{transform:matrix(0.321120,0.002569,-0.002000,0.249992,0,0);-ms-transform:matrix(0.321120,0.002569,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.321120,0.002569,-0.002000,0.249992,0,0);}
.m54_c00046{transform:matrix(0.323047,0.002907,-0.002250,0.249990,0,0);-ms-transform:matrix(0.323047,0.002907,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.323047,0.002907,-0.002250,0.249990,0,0);}
.m4c_c00046{transform:matrix(0.332817,0.002330,-0.001750,0.249994,0,0);-ms-transform:matrix(0.332817,0.002330,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.332817,0.002330,-0.001750,0.249994,0,0);}
.m22_c00046{transform:matrix(0.335168,0.003352,-0.002500,0.249988,0,0);-ms-transform:matrix(0.335168,0.003352,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.335168,0.003352,-0.002500,0.249988,0,0);}
.m16_c00046{transform:matrix(0.335393,0.003354,-0.002500,0.249988,0,0);-ms-transform:matrix(0.335393,0.003354,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.335393,0.003354,-0.002500,0.249988,0,0);}
.m17_c00046{transform:matrix(0.343178,0.003432,-0.002500,0.249988,0,0);-ms-transform:matrix(0.343178,0.003432,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.343178,0.003432,-0.002500,0.249988,0,0);}
.m1b_c00046{transform:matrix(0.348123,0.003481,-0.002500,0.249988,0,0);-ms-transform:matrix(0.348123,0.003481,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.348123,0.003481,-0.002500,0.249988,0,0);}
.m2b_c00046{transform:matrix(0.350989,0.002808,-0.002000,0.249992,0,0);-ms-transform:matrix(0.350989,0.002808,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.350989,0.002808,-0.002000,0.249992,0,0);}
.m1c_c00046{transform:matrix(0.356032,0.003560,-0.002500,0.249988,0,0);-ms-transform:matrix(0.356032,0.003560,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.356032,0.003560,-0.002500,0.249988,0,0);}
.m15_c00046{transform:matrix(0.360197,0.003602,-0.002500,0.249988,0,0);-ms-transform:matrix(0.360197,0.003602,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.360197,0.003602,-0.002500,0.249988,0,0);}
.m49_c00046{transform:matrix(0.361731,0.002532,-0.001750,0.249994,0,0);-ms-transform:matrix(0.361731,0.002532,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.361731,0.002532,-0.001750,0.249994,0,0);}
.m1a_c00046{transform:matrix(0.364327,0.003643,-0.002500,0.249988,0,0);-ms-transform:matrix(0.364327,0.003643,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.364327,0.003643,-0.002500,0.249988,0,0);}
.m33_c00046{transform:matrix(0.364643,0.002917,-0.002000,0.249992,0,0);-ms-transform:matrix(0.364643,0.002917,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.364643,0.002917,-0.002000,0.249992,0,0);}
.m6_c00046{transform:matrix(0.366670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366670,0.000000,0.000000,0.250000,0,0);}
.m2a_c00046{transform:matrix(0.366788,0.002934,-0.002000,0.249992,0,0);-ms-transform:matrix(0.366788,0.002934,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.366788,0.002934,-0.002000,0.249992,0,0);}
.m4a_c00046{transform:matrix(0.366966,0.002569,-0.001750,0.249994,0,0);-ms-transform:matrix(0.366966,0.002569,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.366966,0.002569,-0.001750,0.249994,0,0);}
.m14_c00046{transform:matrix(0.369217,0.003692,-0.002500,0.249988,0,0);-ms-transform:matrix(0.369217,0.003692,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.369217,0.003692,-0.002500,0.249988,0,0);}
.m39_c00046{transform:matrix(0.369853,0.002959,-0.002000,0.249992,0,0);-ms-transform:matrix(0.369853,0.002959,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.369853,0.002959,-0.002000,0.249992,0,0);}
.m3b_c00046{transform:matrix(0.371018,0.002968,-0.002000,0.249992,0,0);-ms-transform:matrix(0.371018,0.002968,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.371018,0.002968,-0.002000,0.249992,0,0);}
.m7_c00046{transform:matrix(0.373515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373515,0.000000,0.000000,0.250000,0,0);}
.m4e_c00046{transform:matrix(0.382884,0.003446,-0.002250,0.249990,0,0);-ms-transform:matrix(0.382884,0.003446,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.382884,0.003446,-0.002250,0.249990,0,0);}
.m10_c00046{transform:matrix(0.396010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396010,0.000000,0.000000,0.250000,0,0);}
.m50_c00046{transform:matrix(0.400224,0.003602,-0.002250,0.249990,0,0);-ms-transform:matrix(0.400224,0.003602,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.400224,0.003602,-0.002250,0.249990,0,0);}
.m1e_c00046{transform:matrix(0.403975,0.004040,-0.002500,0.249988,0,0);-ms-transform:matrix(0.403975,0.004040,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.403975,0.004040,-0.002500,0.249988,0,0);}
.m11_c00046{transform:matrix(0.411844,0.004118,-0.002500,0.249988,0,0);-ms-transform:matrix(0.411844,0.004118,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.411844,0.004118,-0.002500,0.249988,0,0);}
.m20_c00046{transform:matrix(0.421254,0.004213,-0.002500,0.249988,0,0);-ms-transform:matrix(0.421254,0.004213,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.421254,0.004213,-0.002500,0.249988,0,0);}
.m51_c00046{transform:matrix(0.424073,0.003817,-0.002250,0.249990,0,0);-ms-transform:matrix(0.424073,0.003817,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.424073,0.003817,-0.002250,0.249990,0,0);}
.m3a_c00046{transform:matrix(0.441246,0.003530,-0.002000,0.249992,0,0);-ms-transform:matrix(0.441246,0.003530,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.441246,0.003530,-0.002000,0.249992,0,0);}
.m30_c00046{transform:matrix(0.442566,0.003541,-0.002000,0.249992,0,0);-ms-transform:matrix(0.442566,0.003541,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.442566,0.003541,-0.002000,0.249992,0,0);}
.m3f_c00046{transform:matrix(0.446831,0.003575,-0.002000,0.249992,0,0);-ms-transform:matrix(0.446831,0.003575,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.446831,0.003575,-0.002000,0.249992,0,0);}
.m56_c00046{transform:matrix(0.452872,0.004076,-0.002250,0.249990,0,0);-ms-transform:matrix(0.452872,0.004076,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.452872,0.004076,-0.002250,0.249990,0,0);}
.m34_c00046{transform:matrix(0.454240,0.003634,-0.002000,0.249992,0,0);-ms-transform:matrix(0.454240,0.003634,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.454240,0.003634,-0.002000,0.249992,0,0);}
.m4f_c00046{transform:matrix(0.460276,0.004142,-0.002250,0.249990,0,0);-ms-transform:matrix(0.460276,0.004142,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.460276,0.004142,-0.002250,0.249990,0,0);}
.m48_c00046{transform:matrix(0.464069,0.003248,-0.001750,0.249994,0,0);-ms-transform:matrix(0.464069,0.003248,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.464069,0.003248,-0.001750,0.249994,0,0);}
.m1d_c00046{transform:matrix(0.464422,0.004644,-0.002500,0.249988,0,0);-ms-transform:matrix(0.464422,0.004644,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.464422,0.004644,-0.002500,0.249988,0,0);}
.m37_c00046{transform:matrix(0.469820,0.003759,-0.002000,0.249992,0,0);-ms-transform:matrix(0.469820,0.003759,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.469820,0.003759,-0.002000,0.249992,0,0);}
.m3c_c00046{transform:matrix(0.472070,0.003777,-0.002000,0.249992,0,0);-ms-transform:matrix(0.472070,0.003777,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.472070,0.003777,-0.002000,0.249992,0,0);}
.m18_c00046{transform:matrix(0.474246,0.004742,-0.002500,0.249988,0,0);-ms-transform:matrix(0.474246,0.004742,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.474246,0.004742,-0.002500,0.249988,0,0);}
.m27_c00046{transform:matrix(0.475721,0.004757,-0.002500,0.249988,0,0);-ms-transform:matrix(0.475721,0.004757,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.475721,0.004757,-0.002500,0.249988,0,0);}
.m43_c00046{transform:matrix(0.509994,0.004080,-0.002000,0.249992,0,0);-ms-transform:matrix(0.509994,0.004080,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.509994,0.004080,-0.002000,0.249992,0,0);}
.m29_c00046{transform:matrix(0.512589,0.004101,-0.002000,0.249992,0,0);-ms-transform:matrix(0.512589,0.004101,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.512589,0.004101,-0.002000,0.249992,0,0);}
.m44_c00046{transform:matrix(0.517738,0.004142,-0.002000,0.249992,0,0);-ms-transform:matrix(0.517738,0.004142,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.517738,0.004142,-0.002000,0.249992,0,0);}
.m9_c00046{transform:matrix(0.518310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518310,0.000000,0.000000,0.250000,0,0);}
.m19_c00046{transform:matrix(0.535688,0.005357,-0.002500,0.249988,0,0);-ms-transform:matrix(0.535688,0.005357,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.535688,0.005357,-0.002500,0.249988,0,0);}
.m32_c00046{transform:matrix(0.541593,0.004333,-0.002000,0.249992,0,0);-ms-transform:matrix(0.541593,0.004333,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.541593,0.004333,-0.002000,0.249992,0,0);}
.m12_c00046{transform:matrix(0.554347,0.005543,-0.002500,0.249988,0,0);-ms-transform:matrix(0.554347,0.005543,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.554347,0.005543,-0.002500,0.249988,0,0);}
.m4b_c00046{transform:matrix(0.673054,0.004711,-0.001750,0.249994,0,0);-ms-transform:matrix(0.673054,0.004711,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.673054,0.004711,-0.001750,0.249994,0,0);}
.m13_c00046{transform:matrix(0.678011,0.006780,-0.002500,0.249988,0,0);-ms-transform:matrix(0.678011,0.006780,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.678011,0.006780,-0.002500,0.249988,0,0);}
.m41_c00046{transform:matrix(0.678623,0.005429,-0.002000,0.249992,0,0);-ms-transform:matrix(0.678623,0.005429,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.678623,0.005429,-0.002000,0.249992,0,0);}
.m1f_c00046{transform:matrix(0.762327,0.007623,-0.002500,0.249988,0,0);-ms-transform:matrix(0.762327,0.007623,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.762327,0.007623,-0.002500,0.249988,0,0);}
.m26_c00046{transform:matrix(1.101570,0.011016,-0.002500,0.249988,0,0);-ms-transform:matrix(1.101570,0.011016,-0.002500,0.249988,0,0);-webkit-transform:matrix(1.101570,0.011016,-0.002500,0.249988,0,0);}
.m5_c00046{transform:matrix(2.180625,0.017445,-0.002000,0.249992,0,0);-ms-transform:matrix(2.180625,0.017445,-0.002000,0.249992,0,0);-webkit-transform:matrix(2.180625,0.017445,-0.002000,0.249992,0,0);}
.v0_c00046{vertical-align:0.000000px;}
.ls0_c00046{letter-spacing:0.000000px;}
.sc__c00046{text-shadow:none;}
.sc0_c00046{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__c00046{-webkit-text-stroke:0px transparent;}
.sc0_c00046{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00046{word-spacing:0.000000px;}
.fc0_c00046{color:transparent;}
.fs3_c00046{font-size:18.000000px;}
.fs1_c00046{font-size:30.000000px;}
.fs0_c00046{font-size:72.002304px;}
.fs6_c00046{font-size:78.002496px;}
.fs9_c00046{font-size:78.003159px;}
.fs4_c00046{font-size:78.003900px;}
.fs8_c00046{font-size:90.002205px;}
.fs5_c00046{font-size:90.002880px;}
.fs2_c00046{font-size:96.000000px;}
.fs7_c00046{font-size:102.003264px;}
.y0_c00046{bottom:0.000000px;}
.y45_c00046{bottom:268.576397px;}
.y44_c00046{bottom:269.822505px;}
.y43_c00046{bottom:270.660468px;}
.y42_c00046{bottom:272.093056px;}
.y41_c00046{bottom:272.724537px;}
.y40_c00046{bottom:273.263177px;}
.y3f_c00046{bottom:273.472589px;}
.y3e_c00046{bottom:274.329000px;}
.y3d_c00046{bottom:336.611712px;}
.y3c_c00046{bottom:337.211400px;}
.y3b_c00046{bottom:337.494252px;}
.y3a_c00046{bottom:337.980624px;}
.y39_c00046{bottom:338.573400px;}
.y38_c00046{bottom:339.129768px;}
.y37_c00046{bottom:340.560156px;}
.y36_c00046{bottom:341.007804px;}
.y35_c00046{bottom:368.890404px;}
.y34_c00046{bottom:369.492408px;}
.y33_c00046{bottom:370.206924px;}
.y32_c00046{bottom:371.251188px;}
.y31_c00046{bottom:371.831904px;}
.y30_c00046{bottom:372.721428px;}
.y2f_c00046{bottom:372.970104px;}
.y2e_c00046{bottom:373.161372px;}
.y2d_c00046{bottom:374.192592px;}
.y2c_c00046{bottom:376.119900px;}
.y2b_c00046{bottom:466.548324px;}
.y2a_c00046{bottom:467.129904px;}
.y29_c00046{bottom:467.853120px;}
.y28_c00046{bottom:468.832464px;}
.y27_c00046{bottom:469.201416px;}
.y26_c00046{bottom:470.009592px;}
.y25_c00046{bottom:470.784852px;}
.y24_c00046{bottom:470.908188px;}
.y23_c00046{bottom:471.501888px;}
.y22_c00046{bottom:472.337784px;}
.y21_c00046{bottom:472.771500px;}
.y20_c00046{bottom:502.999125px;}
.y1f_c00046{bottom:504.148230px;}
.y1e_c00046{bottom:504.505305px;}
.y1d_c00046{bottom:504.976560px;}
.y1c_c00046{bottom:505.952685px;}
.y1b_c00046{bottom:506.573055px;}
.y1a_c00046{bottom:506.764035px;}
.y19_c00046{bottom:507.443625px;}
.y18_c00046{bottom:508.428690px;}
.y17_c00046{bottom:508.677705px;}
.y16_c00046{bottom:567.196680px;}
.y15_c00046{bottom:567.941850px;}
.y14_c00046{bottom:568.811205px;}
.y13_c00046{bottom:569.333325px;}
.y12_c00046{bottom:569.911095px;}
.y11_c00046{bottom:570.410565px;}
.y10_c00046{bottom:570.993195px;}
.yf_c00046{bottom:571.514265px;}
.ye_c00046{bottom:572.937450px;}
.yd_c00046{bottom:573.245130px;}
.yc_c00046{bottom:574.353585px;}
.yb_c00046{bottom:575.099565px;}
.ya_c00046{bottom:575.650500px;}
.y51_c00046{bottom:584.010000px;}
.y50_c00046{bottom:622.522612px;}
.y4f_c00046{bottom:624.352335px;}
.y4e_c00046{bottom:625.049610px;}
.y4d_c00046{bottom:625.559951px;}
.y4c_c00046{bottom:625.917147px;}
.y4b_c00046{bottom:626.191723px;}
.y4a_c00046{bottom:627.326493px;}
.y49_c00046{bottom:627.632376px;}
.y48_c00046{bottom:628.619239px;}
.y47_c00046{bottom:629.591064px;}
.y46_c00046{bottom:629.911500px;}
.y9_c00046{bottom:659.434500px;}
.y8_c00046{bottom:661.111500px;}
.y7_c00046{bottom:696.145500px;}
.y6_c00046{bottom:700.654224px;}
.y5_c00046{bottom:703.105644px;}
.y4_c00046{bottom:703.521996px;}
.y3_c00046{bottom:705.434256px;}
.y2_c00046{bottom:705.501096px;}
.y1_c00046{bottom:705.780000px;}
.h5_c00046{height:18.000000px;}
.h3_c00046{height:30.000000px;}
.h2_c00046{height:72.002304px;}
.h8_c00046{height:78.002496px;}
.hb_c00046{height:78.003159px;}
.h6_c00046{height:78.003900px;}
.ha_c00046{height:90.002205px;}
.h7_c00046{height:90.002880px;}
.h4_c00046{height:96.000000px;}
.h9_c00046{height:102.003264px;}
.h0_c00046{height:711.720000px;}
.h1_c00046{height:711.750000px;}
.w1_c00046{width:945.750000px;}
.w0_c00046{width:946.050000px;}
.x0_c00046{left:0.000000px;}
.x12_c00046{left:2.838000px;}
.x1f_c00046{left:30.899655px;}
.x3b_c00046{left:33.620616px;}
.x32_c00046{left:34.639560px;}
.x1_c00046{left:47.202000px;}
.x28_c00046{left:54.112500px;}
.x13_c00046{left:57.931500px;}
.x2_c00046{left:82.065000px;}
.x3_c00046{left:90.420000px;}
.x3c_c00046{left:108.140304px;}
.x14_c00046{left:132.529500px;}
.x47_c00046{left:143.397000px;}
.x20_c00046{left:154.008615px;}
.x42_c00046{left:155.941500px;}
.x29_c00046{left:158.599500px;}
.x43_c00046{left:185.857500px;}
.x2a_c00046{left:232.812000px;}
.x21_c00046{left:238.919310px;}
.x7_c00046{left:241.650000px;}
.x15_c00046{left:243.375000px;}
.x2b_c00046{left:248.229000px;}
.x48_c00046{left:253.048500px;}
.x22_c00046{left:262.817790px;}
.x16_c00046{left:274.143000px;}
.x49_c00046{left:287.035500px;}
.xe_c00046{left:321.300000px;}
.x4_c00046{left:329.452500px;}
.x23_c00046{left:340.306335px;}
.x8_c00046{left:342.360000px;}
.x2c_c00046{left:345.136500px;}
.x3d_c00046{left:346.567620px;}
.x10_c00046{left:352.620000px;}
.xf_c00046{left:356.400000px;}
.x33_c00046{left:363.390432px;}
.x5_c00046{left:381.496500px;}
.x34_c00046{left:384.673764px;}
.x9_c00046{left:407.700000px;}
.x35_c00046{left:412.383048px;}
.x17_c00046{left:416.461500px;}
.xa_c00046{left:430.650000px;}
.x3e_c00046{left:439.177596px;}
.x4a_c00046{left:443.629500px;}
.x2d_c00046{left:446.158500px;}
.x24_c00046{left:462.371280px;}
.x18_c00046{left:468.568500px;}
.x4b_c00046{left:483.318000px;}
.x2e_c00046{left:492.277500px;}
.xb_c00046{left:502.470000px;}
.x36_c00046{left:511.197756px;}
.x25_c00046{left:521.197950px;}
.x11_c00046{left:522.720000px;}
.xc_c00046{left:523.800000px;}
.x19_c00046{left:526.831500px;}
.xd_c00046{left:537.030000px;}
.x4c_c00046{left:540.022500px;}
.x44_c00046{left:557.673000px;}
.x26_c00046{left:565.756335px;}
.x37_c00046{left:575.724240px;}
.x1a_c00046{left:576.778500px;}
.x2f_c00046{left:614.695500px;}
.x4d_c00046{left:617.497500px;}
.x3f_c00046{left:619.073976px;}
.x1b_c00046{left:634.555500px;}
.x40_c00046{left:666.243732px;}
.x45_c00046{left:677.382000px;}
.x1c_c00046{left:686.767500px;}
.x6_c00046{left:687.924000px;}
.x38_c00046{left:691.818816px;}
.x30_c00046{left:705.097500px;}
.x27_c00046{left:709.469715px;}
.x41_c00046{left:766.143828px;}
.x39_c00046{left:771.195180px;}
.x1d_c00046{left:773.703000px;}
.x31_c00046{left:777.795000px;}
.x4e_c00046{left:820.800000px;}
.x3a_c00046{left:838.007640px;}
.x1e_c00046{left:848.220000px;}
.x46_c00046{left:855.397500px;}
.x4f_c00046{left:922.590000px;}
@media print{
.v0_c00046{vertical-align:0.000000pt;}
.ls0_c00046{letter-spacing:0.000000pt;}
.ws0_c00046{word-spacing:0.000000pt;}
.fs3_c00046{font-size:16.000000pt;}
.fs1_c00046{font-size:26.666667pt;}
.fs0_c00046{font-size:64.002048pt;}
.fs6_c00046{font-size:69.335552pt;}
.fs9_c00046{font-size:69.336141pt;}
.fs4_c00046{font-size:69.336800pt;}
.fs8_c00046{font-size:80.001960pt;}
.fs5_c00046{font-size:80.002560pt;}
.fs2_c00046{font-size:85.333333pt;}
.fs7_c00046{font-size:90.669568pt;}
.y0_c00046{bottom:0.000000pt;}
.y45_c00046{bottom:238.734575pt;}
.y44_c00046{bottom:239.842227pt;}
.y43_c00046{bottom:240.587083pt;}
.y42_c00046{bottom:241.860495pt;}
.y41_c00046{bottom:242.421811pt;}
.y40_c00046{bottom:242.900601pt;}
.y3f_c00046{bottom:243.086745pt;}
.y3e_c00046{bottom:243.848000pt;}
.y3d_c00046{bottom:299.210411pt;}
.y3c_c00046{bottom:299.743467pt;}
.y3b_c00046{bottom:299.994891pt;}
.y3a_c00046{bottom:300.427221pt;}
.y39_c00046{bottom:300.954133pt;}
.y38_c00046{bottom:301.448683pt;}
.y37_c00046{bottom:302.720139pt;}
.y36_c00046{bottom:303.118048pt;}
.y35_c00046{bottom:327.902581pt;}
.y34_c00046{bottom:328.437696pt;}
.y33_c00046{bottom:329.072821pt;}
.y32_c00046{bottom:330.001056pt;}
.y31_c00046{bottom:330.517248pt;}
.y30_c00046{bottom:331.307936pt;}
.y2f_c00046{bottom:331.528981pt;}
.y2e_c00046{bottom:331.698997pt;}
.y2d_c00046{bottom:332.615637pt;}
.y2c_c00046{bottom:334.328800pt;}
.y2b_c00046{bottom:414.709621pt;}
.y2a_c00046{bottom:415.226581pt;}
.y29_c00046{bottom:415.869440pt;}
.y28_c00046{bottom:416.739968pt;}
.y27_c00046{bottom:417.067925pt;}
.y26_c00046{bottom:417.786304pt;}
.y25_c00046{bottom:418.475424pt;}
.y24_c00046{bottom:418.585056pt;}
.y23_c00046{bottom:419.112789pt;}
.y22_c00046{bottom:419.855808pt;}
.y21_c00046{bottom:420.241333pt;}
.y20_c00046{bottom:447.110333pt;}
.y1f_c00046{bottom:448.131760pt;}
.y1e_c00046{bottom:448.449160pt;}
.y1d_c00046{bottom:448.868053pt;}
.y1c_c00046{bottom:449.735720pt;}
.y1b_c00046{bottom:450.287160pt;}
.y1a_c00046{bottom:450.456920pt;}
.y19_c00046{bottom:451.061000pt;}
.y18_c00046{bottom:451.936613pt;}
.y17_c00046{bottom:452.157960pt;}
.y16_c00046{bottom:504.174827pt;}
.y15_c00046{bottom:504.837200pt;}
.y14_c00046{bottom:505.609960pt;}
.y13_c00046{bottom:506.074067pt;}
.y12_c00046{bottom:506.587640pt;}
.y11_c00046{bottom:507.031613pt;}
.y10_c00046{bottom:507.549507pt;}
.yf_c00046{bottom:508.012680pt;}
.ye_c00046{bottom:509.277733pt;}
.yd_c00046{bottom:509.551227pt;}
.yc_c00046{bottom:510.536520pt;}
.yb_c00046{bottom:511.199613pt;}
.ya_c00046{bottom:511.689333pt;}
.y51_c00046{bottom:519.120000pt;}
.y50_c00046{bottom:553.353433pt;}
.y4f_c00046{bottom:554.979853pt;}
.y4e_c00046{bottom:555.599653pt;}
.y4d_c00046{bottom:556.053289pt;}
.y4c_c00046{bottom:556.370797pt;}
.y4b_c00046{bottom:556.614865pt;}
.y4a_c00046{bottom:557.623549pt;}
.y49_c00046{bottom:557.895445pt;}
.y48_c00046{bottom:558.772657pt;}
.y47_c00046{bottom:559.636501pt;}
.y46_c00046{bottom:559.921333pt;}
.y9_c00046{bottom:586.164000pt;}
.y8_c00046{bottom:587.654667pt;}
.y7_c00046{bottom:618.796000pt;}
.y6_c00046{bottom:622.803755pt;}
.y5_c00046{bottom:624.982795pt;}
.y4_c00046{bottom:625.352885pt;}
.y3_c00046{bottom:627.052672pt;}
.y2_c00046{bottom:627.112085pt;}
.y1_c00046{bottom:627.360000pt;}
.h5_c00046{height:16.000000pt;}
.h3_c00046{height:26.666667pt;}
.h2_c00046{height:64.002048pt;}
.h8_c00046{height:69.335552pt;}
.hb_c00046{height:69.336141pt;}
.h6_c00046{height:69.336800pt;}
.ha_c00046{height:80.001960pt;}
.h7_c00046{height:80.002560pt;}
.h4_c00046{height:85.333333pt;}
.h9_c00046{height:90.669568pt;}
.h0_c00046{height:632.640000pt;}
.h1_c00046{height:632.666667pt;}
.w1_c00046{width:840.666667pt;}
.w0_c00046{width:840.933333pt;}
.x0_c00046{left:0.000000pt;}
.x12_c00046{left:2.522667pt;}
.x1f_c00046{left:27.466360pt;}
.x3b_c00046{left:29.884992pt;}
.x32_c00046{left:30.790720pt;}
.x1_c00046{left:41.957333pt;}
.x28_c00046{left:48.100000pt;}
.x13_c00046{left:51.494667pt;}
.x2_c00046{left:72.946667pt;}
.x3_c00046{left:80.373333pt;}
.x3c_c00046{left:96.124715pt;}
.x14_c00046{left:117.804000pt;}
.x47_c00046{left:127.464000pt;}
.x20_c00046{left:136.896547pt;}
.x42_c00046{left:138.614667pt;}
.x29_c00046{left:140.977333pt;}
.x43_c00046{left:165.206667pt;}
.x2a_c00046{left:206.944000pt;}
.x21_c00046{left:212.372720pt;}
.x7_c00046{left:214.800000pt;}
.x15_c00046{left:216.333333pt;}
.x2b_c00046{left:220.648000pt;}
.x48_c00046{left:224.932000pt;}
.x22_c00046{left:233.615813pt;}
.x16_c00046{left:243.682667pt;}
.x49_c00046{left:255.142667pt;}
.xe_c00046{left:285.600000pt;}
.x4_c00046{left:292.846667pt;}
.x23_c00046{left:302.494520pt;}
.x8_c00046{left:304.320000pt;}
.x2c_c00046{left:306.788000pt;}
.x3d_c00046{left:308.060107pt;}
.x10_c00046{left:313.440000pt;}
.xf_c00046{left:316.800000pt;}
.x33_c00046{left:323.013717pt;}
.x5_c00046{left:339.108000pt;}
.x34_c00046{left:341.932235pt;}
.x9_c00046{left:362.400000pt;}
.x35_c00046{left:366.562709pt;}
.x17_c00046{left:370.188000pt;}
.xa_c00046{left:382.800000pt;}
.x3e_c00046{left:390.380085pt;}
.x4a_c00046{left:394.337333pt;}
.x2d_c00046{left:396.585333pt;}
.x24_c00046{left:410.996693pt;}
.x18_c00046{left:416.505333pt;}
.x4b_c00046{left:429.616000pt;}
.x2e_c00046{left:437.580000pt;}
.xb_c00046{left:446.640000pt;}
.x36_c00046{left:454.398005pt;}
.x25_c00046{left:463.287067pt;}
.x11_c00046{left:464.640000pt;}
.xc_c00046{left:465.600000pt;}
.x19_c00046{left:468.294667pt;}
.xd_c00046{left:477.360000pt;}
.x4c_c00046{left:480.020000pt;}
.x44_c00046{left:495.709333pt;}
.x26_c00046{left:502.894520pt;}
.x37_c00046{left:511.754880pt;}
.x1a_c00046{left:512.692000pt;}
.x2f_c00046{left:546.396000pt;}
.x4d_c00046{left:548.886667pt;}
.x3f_c00046{left:550.287979pt;}
.x1b_c00046{left:564.049333pt;}
.x40_c00046{left:592.216651pt;}
.x45_c00046{left:602.117333pt;}
.x1c_c00046{left:610.460000pt;}
.x6_c00046{left:611.488000pt;}
.x38_c00046{left:614.950059pt;}
.x30_c00046{left:626.753333pt;}
.x27_c00046{left:630.639747pt;}
.x41_c00046{left:681.016736pt;}
.x39_c00046{left:685.506827pt;}
.x1d_c00046{left:687.736000pt;}
.x31_c00046{left:691.373333pt;}
.x4e_c00046{left:729.600000pt;}
.x3a_c00046{left:744.895680pt;}
.x1e_c00046{left:753.973333pt;}
.x46_c00046{left:760.353333pt;}
.x4f_c00046{left:820.080000pt;}
}





/* 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_c00047 {
    display:none;
  }
  .loading-indicator_c00047.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00047 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_c00047 { 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_c00047" -> "#page-container .classname_c00047")
 */
.pf_c00047 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00047 { /* 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_c00047.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00047 { /* 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_c00047 { /* 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_c00047 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00047 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00047 {overflow:visible;}
  }
}
.c_c00047 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00047 { /* 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_c00047:after { /* webkit #35443 */
  content: '';
}
.t_c00047:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00047 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 */
}
.__c00047 { /* 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_c00047 { /* info for Javascript */
  display:none;
}
.l_c00047 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00047 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00047 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00047: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_c00047 {
    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_c00047.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00047.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_c00047 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00047{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00047;src:url('chunks/assets/font_041d900c6b91d2cee60dcef9.woff2')format("woff");}.ff1_c00047{font-family:ff1_c00047;line-height:1.000000;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;}
.m1_c00047{transform:matrix(0.251065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251065,0.000000,0.000000,0.250000,0,0);}
.m0_c00047{transform:matrix(1.129890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.129890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.129890,0.000000,0.000000,0.250000,0,0);}
.v0_c00047{vertical-align:0.000000px;}
.ls0_c00047{letter-spacing:0.000000px;}
.sc__c00047{text-shadow:none;}
.sc0_c00047{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__c00047{-webkit-text-stroke:0px transparent;}
.sc0_c00047{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00047{word-spacing:0.000000px;}
.fc0_c00047{color:transparent;}
.fs0_c00047{font-size:18.000000px;}
.fs1_c00047{font-size:114.000000px;}
.y0_c00047{bottom:0.000000px;}
.y1_c00047{bottom:151.740000px;}
.h2_c00047{height:18.000000px;}
.h3_c00047{height:114.000000px;}
.h0_c00047{height:711.720000px;}
.h1_c00047{height:711.750000px;}
.w1_c00047{width:945.750000px;}
.w0_c00047{width:946.050000px;}
.x0_c00047{left:0.000000px;}
.x1_c00047{left:939.060000px;}
@media print{
.v0_c00047{vertical-align:0.000000pt;}
.ls0_c00047{letter-spacing:0.000000pt;}
.ws0_c00047{word-spacing:0.000000pt;}
.fs0_c00047{font-size:16.000000pt;}
.fs1_c00047{font-size:101.333333pt;}
.y0_c00047{bottom:0.000000pt;}
.y1_c00047{bottom:134.880000pt;}
.h2_c00047{height:16.000000pt;}
.h3_c00047{height:101.333333pt;}
.h0_c00047{height:632.640000pt;}
.h1_c00047{height:632.666667pt;}
.w1_c00047{width:840.666667pt;}
.w0_c00047{width:840.933333pt;}
.x0_c00047{left:0.000000pt;}
.x1_c00047{left:834.720000pt;}
}





/* 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_c00048 {
    display:none;
  }
  .loading-indicator_c00048.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00048 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_c00048 { 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_c00048" -> "#page-container .classname_c00048")
 */
.pf_c00048 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00048 { /* 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_c00048.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00048 { /* 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_c00048 { /* 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_c00048 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00048 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00048 {overflow:visible;}
  }
}
.c_c00048 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00048 { /* 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_c00048:after { /* webkit #35443 */
  content: '';
}
.t_c00048:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00048 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 */
}
.__c00048 { /* 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_c00048 { /* info for Javascript */
  display:none;
}
.l_c00048 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00048 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00048 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00048: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_c00048 {
    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_c00048.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00048.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_c00048 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00048{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00048;src:url('chunks/assets/font_7c6b9abe6ee2a268480c528b.woff2')format("woff");}.ff1_c00048{font-family:ff1_c00048;line-height:1.000000;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;}
.m1_c00048{transform:matrix(0.021212,0.000382,-0.004499,0.249960,0,0);-ms-transform:matrix(0.021212,0.000382,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.021212,0.000382,-0.004499,0.249960,0,0);}
.m0_c00048{transform:matrix(0.043723,0.000787,-0.004499,0.249960,0,0);-ms-transform:matrix(0.043723,0.000787,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.043723,0.000787,-0.004499,0.249960,0,0);}
.m9_c00048{transform:matrix(0.100884,0.001816,-0.004499,0.249960,0,0);-ms-transform:matrix(0.100884,0.001816,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.100884,0.001816,-0.004499,0.249960,0,0);}
.me_c00048{transform:matrix(0.124811,0.001872,-0.003750,0.249972,0,0);-ms-transform:matrix(0.124811,0.001872,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.124811,0.001872,-0.003750,0.249972,0,0);}
.m12_c00048{transform:matrix(0.150908,0.002867,-0.004749,0.249955,0,0);-ms-transform:matrix(0.150908,0.002867,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.150908,0.002867,-0.004749,0.249955,0,0);}
.mc_c00048{transform:matrix(0.170016,0.002550,-0.003750,0.249972,0,0);-ms-transform:matrix(0.170016,0.002550,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.170016,0.002550,-0.003750,0.249972,0,0);}
.m10_c00048{transform:matrix(0.216311,0.003245,-0.003750,0.249972,0,0);-ms-transform:matrix(0.216311,0.003245,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.216311,0.003245,-0.003750,0.249972,0,0);}
.m8_c00048{transform:matrix(0.221889,0.003994,-0.004499,0.249960,0,0);-ms-transform:matrix(0.221889,0.003994,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.221889,0.003994,-0.004499,0.249960,0,0);}
.m4_c00048{transform:matrix(0.237027,0.004266,-0.004499,0.249960,0,0);-ms-transform:matrix(0.237027,0.004266,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.237027,0.004266,-0.004499,0.249960,0,0);}
.m15_c00048{transform:matrix(0.250465,0.004759,-0.004749,0.249955,0,0);-ms-transform:matrix(0.250465,0.004759,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.250465,0.004759,-0.004749,0.249955,0,0);}
.m14_c00048{transform:matrix(0.258013,0.004902,-0.004749,0.249955,0,0);-ms-transform:matrix(0.258013,0.004902,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.258013,0.004902,-0.004749,0.249955,0,0);}
.m11_c00048{transform:matrix(0.302280,0.005743,-0.004749,0.249955,0,0);-ms-transform:matrix(0.302280,0.005743,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.302280,0.005743,-0.004749,0.249955,0,0);}
.m3_c00048{transform:matrix(0.316374,0.005695,-0.004499,0.249960,0,0);-ms-transform:matrix(0.316374,0.005695,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.316374,0.005695,-0.004499,0.249960,0,0);}
.m5_c00048{transform:matrix(0.320613,0.005771,-0.004499,0.249960,0,0);-ms-transform:matrix(0.320613,0.005771,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.320613,0.005771,-0.004499,0.249960,0,0);}
.m7_c00048{transform:matrix(0.366386,0.006595,-0.004499,0.249960,0,0);-ms-transform:matrix(0.366386,0.006595,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.366386,0.006595,-0.004499,0.249960,0,0);}
.m6_c00048{transform:matrix(0.483947,0.008711,-0.004499,0.249960,0,0);-ms-transform:matrix(0.483947,0.008711,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.483947,0.008711,-0.004499,0.249960,0,0);}
.md_c00048{transform:matrix(0.525636,0.007885,-0.003750,0.249972,0,0);-ms-transform:matrix(0.525636,0.007885,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.525636,0.007885,-0.003750,0.249972,0,0);}
.mb_c00048{transform:matrix(0.540979,0.008115,-0.003750,0.249972,0,0);-ms-transform:matrix(0.540979,0.008115,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.540979,0.008115,-0.003750,0.249972,0,0);}
.ma_c00048{transform:matrix(0.591623,0.008874,-0.003750,0.249972,0,0);-ms-transform:matrix(0.591623,0.008874,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.591623,0.008874,-0.003750,0.249972,0,0);}
.mf_c00048{transform:matrix(0.669675,0.010045,-0.003750,0.249972,0,0);-ms-transform:matrix(0.669675,0.010045,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.669675,0.010045,-0.003750,0.249972,0,0);}
.m13_c00048{transform:matrix(1.265337,0.024041,-0.004749,0.249955,0,0);-ms-transform:matrix(1.265337,0.024041,-0.004749,0.249955,0,0);-webkit-transform:matrix(1.265337,0.024041,-0.004749,0.249955,0,0);}
.m2_c00048{transform:matrix(3.468363,0.062431,-0.004499,0.249960,0,0);-ms-transform:matrix(3.468363,0.062431,-0.004499,0.249960,0,0);-webkit-transform:matrix(3.468363,0.062431,-0.004499,0.249960,0,0);}
.v0_c00048{vertical-align:0.000000px;}
.ls0_c00048{letter-spacing:0.000000px;}
.sc__c00048{text-shadow:none;}
.sc0_c00048{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__c00048{-webkit-text-stroke:0px transparent;}
.sc0_c00048{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00048{word-spacing:0.000000px;}
._0_c00048{width:40.666945px;}
.fc0_c00048{color:transparent;}
.fs1_c00048{font-size:36.004050px;}
.fs0_c00048{font-size:36.005832px;}
.fs2_c00048{font-size:48.008663px;}
.fs3_c00048{font-size:90.016244px;}
.y0_c00048{bottom:0.000000px;}
.y16_c00048{bottom:635.211142px;}
.y15_c00048{bottom:635.211553px;}
.y14_c00048{bottom:635.211756px;}
.y13_c00048{bottom:649.686895px;}
.y12_c00048{bottom:653.943000px;}
.y11_c00048{bottom:675.269932px;}
.y10_c00048{bottom:675.970740px;}
.yf_c00048{bottom:677.672010px;}
.ye_c00048{bottom:678.635438px;}
.yd_c00048{bottom:679.304093px;}
.yc_c00048{bottom:681.404490px;}
.yb_c00048{bottom:682.024500px;}
.ya_c00048{bottom:698.160849px;}
.y9_c00048{bottom:699.540846px;}
.y8_c00048{bottom:700.339668px;}
.y7_c00048{bottom:700.991934px;}
.y6_c00048{bottom:701.181447px;}
.y5_c00048{bottom:701.317500px;}
.y4_c00048{bottom:701.385540px;}
.y3_c00048{bottom:703.007106px;}
.y2_c00048{bottom:703.215870px;}
.y1_c00048{bottom:705.894000px;}
.h3_c00048{height:36.004050px;}
.h2_c00048{height:36.005832px;}
.h4_c00048{height:48.008663px;}
.h5_c00048{height:90.016244px;}
.h0_c00048{height:711.720000px;}
.h1_c00048{height:711.750000px;}
.w1_c00048{width:945.750000px;}
.w0_c00048{width:946.050000px;}
.x0_c00048{left:0.000000px;}
.x12_c00048{left:26.734953px;}
.x1_c00048{left:33.718500px;}
.xb_c00048{left:41.058000px;}
.x13_c00048{left:148.526400px;}
.xc_c00048{left:181.084500px;}
.x2_c00048{left:182.503500px;}
.x3_c00048{left:194.101500px;}
.x11_c00048{left:223.810500px;}
.xd_c00048{left:225.661500px;}
.x14_c00048{left:266.537979px;}
.x4_c00048{left:284.188500px;}
.x5_c00048{left:287.968500px;}
.xe_c00048{left:289.890000px;}
.x6_c00048{left:295.527000px;}
.x7_c00048{left:306.055500px;}
.x8_c00048{left:342.292500px;}
.x9_c00048{left:386.671500px;}
.xf_c00048{left:403.308000px;}
.x10_c00048{left:450.028500px;}
.xa_c00048{left:463.338000px;}
@media print{
.v0_c00048{vertical-align:0.000000pt;}
.ls0_c00048{letter-spacing:0.000000pt;}
.ws0_c00048{word-spacing:0.000000pt;}
._0_c00048{width:36.148395pt;}
.fs1_c00048{font-size:32.003600pt;}
.fs0_c00048{font-size:32.005184pt;}
.fs2_c00048{font-size:42.674367pt;}
.fs3_c00048{font-size:80.014439pt;}
.y0_c00048{bottom:0.000000pt;}
.y16_c00048{bottom:564.632127pt;}
.y15_c00048{bottom:564.632492pt;}
.y14_c00048{bottom:564.632672pt;}
.y13_c00048{bottom:577.499463pt;}
.y12_c00048{bottom:581.282667pt;}
.y11_c00048{bottom:600.239940pt;}
.y10_c00048{bottom:600.862880pt;}
.yf_c00048{bottom:602.375120pt;}
.ye_c00048{bottom:603.231500pt;}
.yd_c00048{bottom:603.825860pt;}
.yc_c00048{bottom:605.692880pt;}
.yb_c00048{bottom:606.244000pt;}
.ya_c00048{bottom:620.587421pt;}
.y9_c00048{bottom:621.814085pt;}
.y8_c00048{bottom:622.524149pt;}
.y7_c00048{bottom:623.103941pt;}
.y6_c00048{bottom:623.272397pt;}
.y5_c00048{bottom:623.393333pt;}
.y4_c00048{bottom:623.453813pt;}
.y3_c00048{bottom:624.895205pt;}
.y2_c00048{bottom:625.080773pt;}
.y1_c00048{bottom:627.461333pt;}
.h3_c00048{height:32.003600pt;}
.h2_c00048{height:32.005184pt;}
.h4_c00048{height:42.674367pt;}
.h5_c00048{height:80.014439pt;}
.h0_c00048{height:632.640000pt;}
.h1_c00048{height:632.666667pt;}
.w1_c00048{width:840.666667pt;}
.w0_c00048{width:840.933333pt;}
.x0_c00048{left:0.000000pt;}
.x12_c00048{left:23.764403pt;}
.x1_c00048{left:29.972000pt;}
.xb_c00048{left:36.496000pt;}
.x13_c00048{left:132.023467pt;}
.xc_c00048{left:160.964000pt;}
.x2_c00048{left:162.225333pt;}
.x3_c00048{left:172.534667pt;}
.x11_c00048{left:198.942667pt;}
.xd_c00048{left:200.588000pt;}
.x14_c00048{left:236.922648pt;}
.x4_c00048{left:252.612000pt;}
.x5_c00048{left:255.972000pt;}
.xe_c00048{left:257.680000pt;}
.x6_c00048{left:262.690667pt;}
.x7_c00048{left:272.049333pt;}
.x8_c00048{left:304.260000pt;}
.x9_c00048{left:343.708000pt;}
.xf_c00048{left:358.496000pt;}
.x10_c00048{left:400.025333pt;}
.xa_c00048{left:411.856000pt;}
}





/* 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_c00049 {
    display:none;
  }
  .loading-indicator_c00049.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00049 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_c00049 { 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_c00049" -> "#page-container .classname_c00049")
 */
.pf_c00049 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00049 { /* 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_c00049.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00049 { /* 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_c00049 { /* 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_c00049 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00049 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00049 {overflow:visible;}
  }
}
.c_c00049 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00049 { /* 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_c00049:after { /* webkit #35443 */
  content: '';
}
.t_c00049:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00049 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 */
}
.__c00049 { /* 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_c00049 { /* info for Javascript */
  display:none;
}
.l_c00049 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00049 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00049 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00049: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_c00049 {
    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_c00049.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00049.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_c00049 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00049{font-family:sans-serif;visibility:hidden;}
.sc__c00049{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00049{-webkit-text-stroke:0px transparent;}
}
.y0_c00049{bottom:0.000000px;}
.h0_c00049{height:711.720000px;}
.h1_c00049{height:711.750000px;}
.w1_c00049{width:945.750000px;}
.w0_c00049{width:946.050000px;}
.x0_c00049{left:0.000000px;}
@media print{
.y0_c00049{bottom:0.000000pt;}
.h0_c00049{height:632.640000pt;}
.h1_c00049{height:632.666667pt;}
.w1_c00049{width:840.666667pt;}
.w0_c00049{width:840.933333pt;}
.x0_c00049{left:0.000000pt;}
}





/* 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_c00050 {
    display:none;
  }
  .loading-indicator_c00050.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00050 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_c00050 { 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_c00050" -> "#page-container .classname_c00050")
 */
.pf_c00050 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00050 { /* 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_c00050.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00050 { /* 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_c00050 { /* 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_c00050 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00050 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00050 {overflow:visible;}
  }
}
.c_c00050 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00050 { /* 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_c00050:after { /* webkit #35443 */
  content: '';
}
.t_c00050:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00050 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 */
}
.__c00050 { /* 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_c00050 { /* info for Javascript */
  display:none;
}
.l_c00050 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00050 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00050 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00050: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_c00050 {
    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_c00050.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00050.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_c00050 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00050{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00050;src:url('chunks/assets/font_c605e72f209fc835e906f064.woff2')format("woff");}.ff1_c00050{font-family:ff1_c00050;line-height:1.000000;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;}
.m0_c00050{transform:matrix(0.022500,-0.000090,0.001000,0.249998,0,0);-ms-transform:matrix(0.022500,-0.000090,0.001000,0.249998,0,0);-webkit-transform:matrix(0.022500,-0.000090,0.001000,0.249998,0,0);}
.m11_c00050{transform:matrix(0.044544,-0.000713,0.003999,0.249968,0,0);-ms-transform:matrix(0.044544,-0.000713,0.003999,0.249968,0,0);-webkit-transform:matrix(0.044544,-0.000713,0.003999,0.249968,0,0);}
.me_c00050{transform:matrix(0.103660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103660,0.000000,0.000000,0.250000,0,0);}
.mf_c00050{transform:matrix(0.104650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.104650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.104650,0.000000,0.000000,0.250000,0,0);}
.ma_c00050{transform:matrix(0.110975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110975,0.000000,0.000000,0.250000,0,0);}
.m1_c00050{transform:matrix(0.121164,-0.000485,0.001000,0.249998,0,0);-ms-transform:matrix(0.121164,-0.000485,0.001000,0.249998,0,0);-webkit-transform:matrix(0.121164,-0.000485,0.001000,0.249998,0,0);}
.m10_c00050{transform:matrix(0.190896,-0.003054,0.003999,0.249968,0,0);-ms-transform:matrix(0.190896,-0.003054,0.003999,0.249968,0,0);-webkit-transform:matrix(0.190896,-0.003054,0.003999,0.249968,0,0);}
.md_c00050{transform:matrix(0.204020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204020,0.000000,0.000000,0.250000,0,0);}
.m18_c00050{transform:matrix(0.211478,-0.003384,0.003999,0.249968,0,0);-ms-transform:matrix(0.211478,-0.003384,0.003999,0.249968,0,0);-webkit-transform:matrix(0.211478,-0.003384,0.003999,0.249968,0,0);}
.m2_c00050{transform:matrix(0.242868,-0.000971,0.001000,0.249998,0,0);-ms-transform:matrix(0.242868,-0.000971,0.001000,0.249998,0,0);-webkit-transform:matrix(0.242868,-0.000971,0.001000,0.249998,0,0);}
.m25_c00050{transform:matrix(0.245239,-0.003924,0.003999,0.249968,0,0);-ms-transform:matrix(0.245239,-0.003924,0.003999,0.249968,0,0);-webkit-transform:matrix(0.245239,-0.003924,0.003999,0.249968,0,0);}
.m14_c00050{transform:matrix(0.252628,-0.004042,0.003999,0.249968,0,0);-ms-transform:matrix(0.252628,-0.004042,0.003999,0.249968,0,0);-webkit-transform:matrix(0.252628,-0.004042,0.003999,0.249968,0,0);}
.m19_c00050{transform:matrix(0.254722,-0.004076,0.003999,0.249968,0,0);-ms-transform:matrix(0.254722,-0.004076,0.003999,0.249968,0,0);-webkit-transform:matrix(0.254722,-0.004076,0.003999,0.249968,0,0);}
.m27_c00050{transform:matrix(0.261751,-0.004188,0.003999,0.249968,0,0);-ms-transform:matrix(0.261751,-0.004188,0.003999,0.249968,0,0);-webkit-transform:matrix(0.261751,-0.004188,0.003999,0.249968,0,0);}
.m23_c00050{transform:matrix(0.264076,-0.004225,0.003999,0.249968,0,0);-ms-transform:matrix(0.264076,-0.004225,0.003999,0.249968,0,0);-webkit-transform:matrix(0.264076,-0.004225,0.003999,0.249968,0,0);}
.m15_c00050{transform:matrix(0.269006,-0.004304,0.003999,0.249968,0,0);-ms-transform:matrix(0.269006,-0.004304,0.003999,0.249968,0,0);-webkit-transform:matrix(0.269006,-0.004304,0.003999,0.249968,0,0);}
.m16_c00050{transform:matrix(0.270300,-0.004325,0.003999,0.249968,0,0);-ms-transform:matrix(0.270300,-0.004325,0.003999,0.249968,0,0);-webkit-transform:matrix(0.270300,-0.004325,0.003999,0.249968,0,0);}
.m1b_c00050{transform:matrix(0.282959,-0.004527,0.003999,0.249968,0,0);-ms-transform:matrix(0.282959,-0.004527,0.003999,0.249968,0,0);-webkit-transform:matrix(0.282959,-0.004527,0.003999,0.249968,0,0);}
.m1a_c00050{transform:matrix(0.293102,-0.004690,0.003999,0.249968,0,0);-ms-transform:matrix(0.293102,-0.004690,0.003999,0.249968,0,0);-webkit-transform:matrix(0.293102,-0.004690,0.003999,0.249968,0,0);}
.m20_c00050{transform:matrix(0.323119,-0.005170,0.003999,0.249968,0,0);-ms-transform:matrix(0.323119,-0.005170,0.003999,0.249968,0,0);-webkit-transform:matrix(0.323119,-0.005170,0.003999,0.249968,0,0);}
.m22_c00050{transform:matrix(0.324303,-0.005189,0.003999,0.249968,0,0);-ms-transform:matrix(0.324303,-0.005189,0.003999,0.249968,0,0);-webkit-transform:matrix(0.324303,-0.005189,0.003999,0.249968,0,0);}
.m1f_c00050{transform:matrix(0.324543,-0.005193,0.003999,0.249968,0,0);-ms-transform:matrix(0.324543,-0.005193,0.003999,0.249968,0,0);-webkit-transform:matrix(0.324543,-0.005193,0.003999,0.249968,0,0);}
.m13_c00050{transform:matrix(0.327363,-0.005238,0.003999,0.249968,0,0);-ms-transform:matrix(0.327363,-0.005238,0.003999,0.249968,0,0);-webkit-transform:matrix(0.327363,-0.005238,0.003999,0.249968,0,0);}
.m21_c00050{transform:matrix(0.345891,-0.005534,0.003999,0.249968,0,0);-ms-transform:matrix(0.345891,-0.005534,0.003999,0.249968,0,0);-webkit-transform:matrix(0.345891,-0.005534,0.003999,0.249968,0,0);}
.m1e_c00050{transform:matrix(0.369718,-0.005915,0.003999,0.249968,0,0);-ms-transform:matrix(0.369718,-0.005915,0.003999,0.249968,0,0);-webkit-transform:matrix(0.369718,-0.005915,0.003999,0.249968,0,0);}
.m3_c00050{transform:matrix(0.405967,-0.001624,0.001000,0.249998,0,0);-ms-transform:matrix(0.405967,-0.001624,0.001000,0.249998,0,0);-webkit-transform:matrix(0.405967,-0.001624,0.001000,0.249998,0,0);}
.m6_c00050{transform:matrix(0.415192,-0.001661,0.001000,0.249998,0,0);-ms-transform:matrix(0.415192,-0.001661,0.001000,0.249998,0,0);-webkit-transform:matrix(0.415192,-0.001661,0.001000,0.249998,0,0);}
.m12_c00050{transform:matrix(0.459596,-0.007354,0.003999,0.249968,0,0);-ms-transform:matrix(0.459596,-0.007354,0.003999,0.249968,0,0);-webkit-transform:matrix(0.459596,-0.007354,0.003999,0.249968,0,0);}
.m24_c00050{transform:matrix(0.498306,-0.007973,0.003999,0.249968,0,0);-ms-transform:matrix(0.498306,-0.007973,0.003999,0.249968,0,0);-webkit-transform:matrix(0.498306,-0.007973,0.003999,0.249968,0,0);}
.m1d_c00050{transform:matrix(0.544705,-0.008715,0.003999,0.249968,0,0);-ms-transform:matrix(0.544705,-0.008715,0.003999,0.249968,0,0);-webkit-transform:matrix(0.544705,-0.008715,0.003999,0.249968,0,0);}
.m8_c00050{transform:matrix(0.551221,-0.002205,0.001000,0.249998,0,0);-ms-transform:matrix(0.551221,-0.002205,0.001000,0.249998,0,0);-webkit-transform:matrix(0.551221,-0.002205,0.001000,0.249998,0,0);}
.m9_c00050{transform:matrix(0.566250,-0.002265,0.001000,0.249998,0,0);-ms-transform:matrix(0.566250,-0.002265,0.001000,0.249998,0,0);-webkit-transform:matrix(0.566250,-0.002265,0.001000,0.249998,0,0);}
.m5_c00050{transform:matrix(0.653385,-0.002614,0.001000,0.249998,0,0);-ms-transform:matrix(0.653385,-0.002614,0.001000,0.249998,0,0);-webkit-transform:matrix(0.653385,-0.002614,0.001000,0.249998,0,0);}
.m7_c00050{transform:matrix(0.710509,-0.002842,0.001000,0.249998,0,0);-ms-transform:matrix(0.710509,-0.002842,0.001000,0.249998,0,0);-webkit-transform:matrix(0.710509,-0.002842,0.001000,0.249998,0,0);}
.m4_c00050{transform:matrix(0.715074,-0.002860,0.001000,0.249998,0,0);-ms-transform:matrix(0.715074,-0.002860,0.001000,0.249998,0,0);-webkit-transform:matrix(0.715074,-0.002860,0.001000,0.249998,0,0);}
.m1c_c00050{transform:matrix(0.725122,-0.011602,0.003999,0.249968,0,0);-ms-transform:matrix(0.725122,-0.011602,0.003999,0.249968,0,0);-webkit-transform:matrix(0.725122,-0.011602,0.003999,0.249968,0,0);}
.m17_c00050{transform:matrix(0.779370,-0.012470,0.003999,0.249968,0,0);-ms-transform:matrix(0.779370,-0.012470,0.003999,0.249968,0,0);-webkit-transform:matrix(0.779370,-0.012470,0.003999,0.249968,0,0);}
.m26_c00050{transform:matrix(0.797433,-0.012759,0.003999,0.249968,0,0);-ms-transform:matrix(0.797433,-0.012759,0.003999,0.249968,0,0);-webkit-transform:matrix(0.797433,-0.012759,0.003999,0.249968,0,0);}
.mb_c00050{transform:matrix(0.882005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.882005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.882005,0.000000,0.000000,0.250000,0,0);}
.mc_c00050{transform:matrix(1.046245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.046245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.046245,0.000000,0.000000,0.250000,0,0);}
.v0_c00050{vertical-align:0.000000px;}
.ls0_c00050{letter-spacing:0.000000px;}
.sc__c00050{text-shadow:none;}
.sc0_c00050{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__c00050{-webkit-text-stroke:0px transparent;}
.sc0_c00050{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00050{word-spacing:0.000000px;}
.fc0_c00050{color:transparent;}
.fs2_c00050{font-size:18.000000px;}
.fs1_c00050{font-size:42.000000px;}
.fs0_c00050{font-size:60.000480px;}
.fs3_c00050{font-size:60.007680px;}
.fs5_c00050{font-size:96.012287px;}
.fs4_c00050{font-size:102.013055px;}
.y0_c00050{bottom:0.000000px;}
.y1e_c00050{bottom:213.575172px;}
.y1f_c00050{bottom:214.459392px;}
.y20_c00050{bottom:214.792740px;}
.y21_c00050{bottom:215.169120px;}
.y22_c00050{bottom:215.950332px;}
.y23_c00050{bottom:216.411312px;}
.y24_c00050{bottom:216.986316px;}
.y25_c00050{bottom:218.102592px;}
.y26_c00050{bottom:218.279388px;}
.y27_c00050{bottom:219.007836px;}
.y17_c00050{bottom:240.840060px;}
.y18_c00050{bottom:243.533820px;}
.y19_c00050{bottom:244.381872px;}
.y1a_c00050{bottom:244.767288px;}
.y1b_c00050{bottom:245.800704px;}
.y1c_c00050{bottom:246.352800px;}
.y1d_c00050{bottom:249.090876px;}
.y10_c00050{bottom:269.191500px;}
.y11_c00050{bottom:271.320780px;}
.y12_c00050{bottom:278.923308px;}
.y13_c00050{bottom:279.554292px;}
.y14_c00050{bottom:280.491612px;}
.y15_c00050{bottom:280.845804px;}
.y16_c00050{bottom:282.512292px;}
.y1_c00050{bottom:310.230000px;}
.y2_c00050{bottom:310.667130px;}
.y3_c00050{bottom:310.788120px;}
.y4_c00050{bottom:310.939524px;}
.y5_c00050{bottom:311.492514px;}
.y6_c00050{bottom:311.933148px;}
.y7_c00050{bottom:312.320688px;}
.y8_c00050{bottom:312.540114px;}
.y9_c00050{bottom:313.092942px;}
.ya_c00050{bottom:313.315404px;}
.yf_c00050{bottom:358.830000px;}
.ye_c00050{bottom:365.040000px;}
.yd_c00050{bottom:371.250000px;}
.yc_c00050{bottom:384.037500px;}
.yb_c00050{bottom:401.490000px;}
.h4_c00050{height:18.000000px;}
.h3_c00050{height:42.000000px;}
.h2_c00050{height:60.000480px;}
.h5_c00050{height:60.007680px;}
.h7_c00050{height:96.012287px;}
.h6_c00050{height:102.013055px;}
.h0_c00050{height:711.720000px;}
.h1_c00050{height:711.750000px;}
.w1_c00050{width:945.750000px;}
.w0_c00050{width:946.050000px;}
.x0_c00050{left:0.000000px;}
.x14_c00050{left:1.642440px;}
.x1_c00050{left:40.869000px;}
.xd_c00050{left:103.492500px;}
.x2_c00050{left:150.151500px;}
.x3_c00050{left:180.399000px;}
.x1a_c00050{left:205.091160px;}
.x4_c00050{left:218.250000px;}
.xe_c00050{left:236.572500px;}
.x1b_c00050{left:267.718668px;}
.x15_c00050{left:271.090812px;}
.x5_c00050{left:356.497500px;}
.x16_c00050{left:394.413144px;}
.x1c_c00050{left:397.846476px;}
.x6_c00050{left:466.656000px;}
.x1d_c00050{left:474.576240px;}
.x17_c00050{left:497.824080px;}
.x18_c00050{left:552.960360px;}
.x7_c00050{left:563.541000px;}
.x1e_c00050{left:570.435576px;}
.x8_c00050{left:618.397500px;}
.xf_c00050{left:711.730500px;}
.x10_c00050{left:751.167000px;}
.x9_c00050{left:756.604500px;}
.x1f_c00050{left:785.912040px;}
.x11_c00050{left:809.749500px;}
.xa_c00050{left:812.220000px;}
.xc_c00050{left:821.610000px;}
.x19_c00050{left:826.772640px;}
.x12_c00050{left:831.886500px;}
.xb_c00050{left:905.850000px;}
.x20_c00050{left:907.396980px;}
.x13_c00050{left:936.042000px;}
@media print{
.v0_c00050{vertical-align:0.000000pt;}
.ls0_c00050{letter-spacing:0.000000pt;}
.ws0_c00050{word-spacing:0.000000pt;}
.fs2_c00050{font-size:16.000000pt;}
.fs1_c00050{font-size:37.333333pt;}
.fs0_c00050{font-size:53.333760pt;}
.fs3_c00050{font-size:53.340160pt;}
.fs5_c00050{font-size:85.344255pt;}
.fs4_c00050{font-size:90.678271pt;}
.y0_c00050{bottom:0.000000pt;}
.y1e_c00050{bottom:189.844597pt;}
.y1f_c00050{bottom:190.630571pt;}
.y20_c00050{bottom:190.926880pt;}
.y21_c00050{bottom:191.261440pt;}
.y22_c00050{bottom:191.955851pt;}
.y23_c00050{bottom:192.365611pt;}
.y24_c00050{bottom:192.876725pt;}
.y25_c00050{bottom:193.868971pt;}
.y26_c00050{bottom:194.026123pt;}
.y27_c00050{bottom:194.673632pt;}
.y17_c00050{bottom:214.080053pt;}
.y18_c00050{bottom:216.474507pt;}
.y19_c00050{bottom:217.228331pt;}
.y1a_c00050{bottom:217.570923pt;}
.y1b_c00050{bottom:218.489515pt;}
.y1c_c00050{bottom:218.980267pt;}
.y1d_c00050{bottom:221.414112pt;}
.y10_c00050{bottom:239.281333pt;}
.y11_c00050{bottom:241.174027pt;}
.y12_c00050{bottom:247.931829pt;}
.y13_c00050{bottom:248.492704pt;}
.y14_c00050{bottom:249.325877pt;}
.y15_c00050{bottom:249.640715pt;}
.y16_c00050{bottom:251.122037pt;}
.y1_c00050{bottom:275.760000pt;}
.y2_c00050{bottom:276.148560pt;}
.y3_c00050{bottom:276.256107pt;}
.y4_c00050{bottom:276.390688pt;}
.y5_c00050{bottom:276.882235pt;}
.y6_c00050{bottom:277.273909pt;}
.y7_c00050{bottom:277.618389pt;}
.y8_c00050{bottom:277.813435pt;}
.y9_c00050{bottom:278.304837pt;}
.ya_c00050{bottom:278.502581pt;}
.yf_c00050{bottom:318.960000pt;}
.ye_c00050{bottom:324.480000pt;}
.yd_c00050{bottom:330.000000pt;}
.yc_c00050{bottom:341.366667pt;}
.yb_c00050{bottom:356.880000pt;}
.h4_c00050{height:16.000000pt;}
.h3_c00050{height:37.333333pt;}
.h2_c00050{height:53.333760pt;}
.h5_c00050{height:53.340160pt;}
.h7_c00050{height:85.344255pt;}
.h6_c00050{height:90.678271pt;}
.h0_c00050{height:632.640000pt;}
.h1_c00050{height:632.666667pt;}
.w1_c00050{width:840.666667pt;}
.w0_c00050{width:840.933333pt;}
.x0_c00050{left:0.000000pt;}
.x14_c00050{left:1.459947pt;}
.x1_c00050{left:36.328000pt;}
.xd_c00050{left:91.993333pt;}
.x2_c00050{left:133.468000pt;}
.x3_c00050{left:160.354667pt;}
.x1a_c00050{left:182.303253pt;}
.x4_c00050{left:194.000000pt;}
.xe_c00050{left:210.286667pt;}
.x1b_c00050{left:237.972149pt;}
.x15_c00050{left:240.969611pt;}
.x5_c00050{left:316.886667pt;}
.x16_c00050{left:350.589461pt;}
.x1c_c00050{left:353.641312pt;}
.x6_c00050{left:414.805333pt;}
.x1d_c00050{left:421.845547pt;}
.x17_c00050{left:442.510293pt;}
.x18_c00050{left:491.520320pt;}
.x7_c00050{left:500.925333pt;}
.x1e_c00050{left:507.053845pt;}
.x8_c00050{left:549.686667pt;}
.xf_c00050{left:632.649333pt;}
.x10_c00050{left:667.704000pt;}
.x9_c00050{left:672.537333pt;}
.x1f_c00050{left:698.588480pt;}
.x11_c00050{left:719.777333pt;}
.xa_c00050{left:721.973333pt;}
.xc_c00050{left:730.320000pt;}
.x19_c00050{left:734.909013pt;}
.x12_c00050{left:739.454667pt;}
.xb_c00050{left:805.200000pt;}
.x20_c00050{left:806.575093pt;}
.x13_c00050{left:832.037333pt;}
}





/* 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_c00051 {
    display:none;
  }
  .loading-indicator_c00051.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00051 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_c00051 { 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_c00051" -> "#page-container .classname_c00051")
 */
.pf_c00051 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00051 { /* 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_c00051.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00051 { /* 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_c00051 { /* 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_c00051 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00051 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00051 {overflow:visible;}
  }
}
.c_c00051 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00051 { /* 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_c00051:after { /* webkit #35443 */
  content: '';
}
.t_c00051:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00051 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 */
}
.__c00051 { /* 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_c00051 { /* info for Javascript */
  display:none;
}
.l_c00051 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00051 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00051 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00051: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_c00051 {
    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_c00051.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00051.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_c00051 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00051{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00051;src:url('chunks/assets/font_7ef351174269f1343c6a59b1.woff2')format("woff");}.ff1_c00051{font-family:ff1_c00051;line-height:1.000000;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;}
.m1_c00051{transform:matrix(0.000320,0.320005,-0.250000,0.000250,0,0);-ms-transform:matrix(0.000320,0.320005,-0.250000,0.000250,0,0);-webkit-transform:matrix(0.000320,0.320005,-0.250000,0.000250,0,0);}
.m0_c00051{transform:matrix(0.000348,0.348235,-0.250000,0.000250,0,0);-ms-transform:matrix(0.000348,0.348235,-0.250000,0.000250,0,0);-webkit-transform:matrix(0.000348,0.348235,-0.250000,0.000250,0,0);}
.m3_c00051{transform:matrix(0.000580,-0.290039,0.250000,0.000500,0,0);-ms-transform:matrix(0.000580,-0.290039,0.250000,0.000500,0,0);-webkit-transform:matrix(0.000580,-0.290039,0.250000,0.000500,0,0);}
.m4_c00051{transform:matrix(0.000593,-0.296619,0.250000,0.000500,0,0);-ms-transform:matrix(0.000593,-0.296619,0.250000,0.000500,0,0);-webkit-transform:matrix(0.000593,-0.296619,0.250000,0.000500,0,0);}
.m2_c00051{transform:matrix(0.000610,-0.304864,0.250000,0.000500,0,0);-ms-transform:matrix(0.000610,-0.304864,0.250000,0.000500,0,0);-webkit-transform:matrix(0.000610,-0.304864,0.250000,0.000500,0,0);}
.v0_c00051{vertical-align:0.000000px;}
.ls0_c00051{letter-spacing:0.000000px;}
.sc__c00051{text-shadow:none;}
.sc0_c00051{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__c00051{-webkit-text-stroke:0px transparent;}
.sc0_c00051{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00051{word-spacing:0.000000px;}
.fc0_c00051{color:transparent;}
.fs1_c00051{font-size:42.000084px;}
.fs0_c00051{font-size:60.000030px;}
.y0_c00051{bottom:0.000000px;}
.y2_c00051{bottom:128.247000px;}
.y5_c00051{bottom:210.330000px;}
.y1_c00051{bottom:321.301500px;}
.y4_c00051{bottom:350.190000px;}
.y3_c00051{bottom:370.981500px;}
.h3_c00051{height:42.000084px;}
.h2_c00051{height:60.000030px;}
.h0_c00051{height:711.720000px;}
.h1_c00051{height:711.750000px;}
.w1_c00051{width:945.750000px;}
.w0_c00051{width:946.050000px;}
.x0_c00051{left:0.000000px;}
.x1_c00051{left:898.830000px;}
@media print{
.v0_c00051{vertical-align:0.000000pt;}
.ls0_c00051{letter-spacing:0.000000pt;}
.ws0_c00051{word-spacing:0.000000pt;}
.fs1_c00051{font-size:37.333408pt;}
.fs0_c00051{font-size:53.333360pt;}
.y0_c00051{bottom:0.000000pt;}
.y2_c00051{bottom:113.997333pt;}
.y5_c00051{bottom:186.960000pt;}
.y1_c00051{bottom:285.601333pt;}
.y4_c00051{bottom:311.280000pt;}
.y3_c00051{bottom:329.761333pt;}
.h3_c00051{height:37.333408pt;}
.h2_c00051{height:53.333360pt;}
.h0_c00051{height:632.640000pt;}
.h1_c00051{height:632.666667pt;}
.w1_c00051{width:840.666667pt;}
.w0_c00051{width:840.933333pt;}
.x0_c00051{left:0.000000pt;}
.x1_c00051{left:798.960000pt;}
}





/* 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_c00052 {
    display:none;
  }
  .loading-indicator_c00052.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00052 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_c00052 { 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_c00052" -> "#page-container .classname_c00052")
 */
.pf_c00052 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00052 { /* 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_c00052.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00052 { /* 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_c00052 { /* 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_c00052 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00052 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00052 {overflow:visible;}
  }
}
.c_c00052 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00052 { /* 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_c00052:after { /* webkit #35443 */
  content: '';
}
.t_c00052:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00052 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 */
}
.__c00052 { /* 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_c00052 { /* info for Javascript */
  display:none;
}
.l_c00052 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00052 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00052 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00052: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_c00052 {
    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_c00052.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00052.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_c00052 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00052{font-family:sans-serif;visibility:hidden;}
.sc__c00052{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00052{-webkit-text-stroke:0px transparent;}
}
.y0_c00052{bottom:0.000000px;}
.h0_c00052{height:711.720000px;}
.h1_c00052{height:711.750000px;}
.w1_c00052{width:945.750000px;}
.w0_c00052{width:946.050000px;}
.x0_c00052{left:0.000000px;}
@media print{
.y0_c00052{bottom:0.000000pt;}
.h0_c00052{height:632.640000pt;}
.h1_c00052{height:632.666667pt;}
.w1_c00052{width:840.666667pt;}
.w0_c00052{width:840.933333pt;}
.x0_c00052{left:0.000000pt;}
}





/* 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_c00053 {
    display:none;
  }
  .loading-indicator_c00053.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00053 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_c00053 { 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_c00053" -> "#page-container .classname_c00053")
 */
.pf_c00053 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00053 { /* 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_c00053.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00053 { /* 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_c00053 { /* 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_c00053 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00053 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00053 {overflow:visible;}
  }
}
.c_c00053 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00053 { /* 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_c00053:after { /* webkit #35443 */
  content: '';
}
.t_c00053:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00053 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 */
}
.__c00053 { /* 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_c00053 { /* info for Javascript */
  display:none;
}
.l_c00053 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00053 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00053 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00053: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_c00053 {
    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_c00053.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00053.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_c00053 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00053{font-family:sans-serif;visibility:hidden;}
.sc__c00053{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00053{-webkit-text-stroke:0px transparent;}
}
.y0_c00053{bottom:0.000000px;}
.h0_c00053{height:711.720000px;}
.h1_c00053{height:711.750000px;}
.w1_c00053{width:945.750000px;}
.w0_c00053{width:946.050000px;}
.x0_c00053{left:0.000000px;}
@media print{
.y0_c00053{bottom:0.000000pt;}
.h0_c00053{height:632.640000pt;}
.h1_c00053{height:632.666667pt;}
.w1_c00053{width:840.666667pt;}
.w0_c00053{width:840.933333pt;}
.x0_c00053{left:0.000000pt;}
}





/* 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_c00054 {
    display:none;
  }
  .loading-indicator_c00054.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00054 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_c00054 { 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_c00054" -> "#page-container .classname_c00054")
 */
.pf_c00054 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00054 { /* 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_c00054.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00054 { /* 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_c00054 { /* 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_c00054 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00054 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00054 {overflow:visible;}
  }
}
.c_c00054 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00054 { /* 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_c00054:after { /* webkit #35443 */
  content: '';
}
.t_c00054:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00054 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 */
}
.__c00054 { /* 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_c00054 { /* info for Javascript */
  display:none;
}
.l_c00054 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00054 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00054 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00054: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_c00054 {
    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_c00054.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00054.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_c00054 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00054{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00054;src:url('chunks/assets/font_c605e72f209fc835e906f064.woff2')format("woff");}.ff1_c00054{font-family:ff1_c00054;line-height:1.000000;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;}
.m6a_c00054{transform:matrix(0.009430,0.000038,-0.001000,0.249998,0,0);-ms-transform:matrix(0.009430,0.000038,-0.001000,0.249998,0,0);-webkit-transform:matrix(0.009430,0.000038,-0.001000,0.249998,0,0);}
.m2b_c00054{transform:matrix(0.015910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.015910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.015910,0.000000,0.000000,0.250000,0,0);}
.m18_c00054{transform:matrix(0.031820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.031820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.031820,0.000000,0.000000,0.250000,0,0);}
.m85_c00054{transform:matrix(0.047434,-0.000332,0.001750,0.249994,0,0);-ms-transform:matrix(0.047434,-0.000332,0.001750,0.249994,0,0);-webkit-transform:matrix(0.047434,-0.000332,0.001750,0.249994,0,0);}
.m41_c00054{transform:matrix(0.050910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.050910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.050910,0.000000,0.000000,0.250000,0,0);}
.m6_c00054{transform:matrix(0.056135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.056135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.056135,0.000000,0.000000,0.250000,0,0);}
.m84_c00054{transform:matrix(0.060464,-0.000423,0.001750,0.249994,0,0);-ms-transform:matrix(0.060464,-0.000423,0.001750,0.249994,0,0);-webkit-transform:matrix(0.060464,-0.000423,0.001750,0.249994,0,0);}
.m16_c00054{transform:matrix(0.063640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.063640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.063640,0.000000,0.000000,0.250000,0,0);}
.m27_c00054{transform:matrix(0.067080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.067080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.067080,0.000000,0.000000,0.250000,0,0);}
.m62_c00054{transform:matrix(0.071149,0.000285,-0.001000,0.249998,0,0);-ms-transform:matrix(0.071149,0.000285,-0.001000,0.249998,0,0);-webkit-transform:matrix(0.071149,0.000285,-0.001000,0.249998,0,0);}
.m1e_c00054{transform:matrix(0.071150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.071150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.071150,0.000000,0.000000,0.250000,0,0);}
.m61_c00054{transform:matrix(0.072034,0.000288,-0.001000,0.249998,0,0);-ms-transform:matrix(0.072034,0.000288,-0.001000,0.249998,0,0);-webkit-transform:matrix(0.072034,0.000288,-0.001000,0.249998,0,0);}
.m20_c00054{transform:matrix(0.081125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.081125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.081125,0.000000,0.000000,0.250000,0,0);}
.m32_c00054{transform:matrix(0.093600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093600,0.000000,0.000000,0.250000,0,0);}
.m2_c00054{transform:matrix(0.101350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.101350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.101350,0.000000,0.000000,0.250000,0,0);}
.m48_c00054{transform:matrix(0.102615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102615,0.000000,0.000000,0.250000,0,0);}
.m7f_c00054{transform:matrix(0.114232,-0.000800,0.001750,0.249994,0,0);-ms-transform:matrix(0.114232,-0.000800,0.001750,0.249994,0,0);-webkit-transform:matrix(0.114232,-0.000800,0.001750,0.249994,0,0);}
.m5b_c00054{transform:matrix(0.119180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119180,0.000000,0.000000,0.250000,0,0);}
.m1f_c00054{transform:matrix(0.121165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121165,0.000000,0.000000,0.250000,0,0);}
.m83_c00054{transform:matrix(0.134162,-0.000939,0.001750,0.249994,0,0);-ms-transform:matrix(0.134162,-0.000939,0.001750,0.249994,0,0);-webkit-transform:matrix(0.134162,-0.000939,0.001750,0.249994,0,0);}
.m47_c00054{transform:matrix(0.137085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137085,0.000000,0.000000,0.250000,0,0);}
.m75_c00054{transform:matrix(0.143179,0.000573,-0.001000,0.249998,0,0);-ms-transform:matrix(0.143179,0.000573,-0.001000,0.249998,0,0);-webkit-transform:matrix(0.143179,0.000573,-0.001000,0.249998,0,0);}
.m25_c00054{transform:matrix(0.159450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159450,0.000000,0.000000,0.250000,0,0);}
.m42_c00054{transform:matrix(0.165950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165950,0.000000,0.000000,0.250000,0,0);}
.m74_c00054{transform:matrix(0.171044,0.000684,-0.001000,0.249998,0,0);-ms-transform:matrix(0.171044,0.000684,-0.001000,0.249998,0,0);-webkit-transform:matrix(0.171044,0.000684,-0.001000,0.249998,0,0);}
.m76_c00054{transform:matrix(0.185604,0.000742,-0.001000,0.249998,0,0);-ms-transform:matrix(0.185604,0.000742,-0.001000,0.249998,0,0);-webkit-transform:matrix(0.185604,0.000742,-0.001000,0.249998,0,0);}
.m69_c00054{transform:matrix(0.189793,0.000759,-0.001000,0.249998,0,0);-ms-transform:matrix(0.189793,0.000759,-0.001000,0.249998,0,0);-webkit-transform:matrix(0.189793,0.000759,-0.001000,0.249998,0,0);}
.m1b_c00054{transform:matrix(0.190920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190920,0.000000,0.000000,0.250000,0,0);}
.m7b_c00054{transform:matrix(0.191045,-0.001337,0.001750,0.249994,0,0);-ms-transform:matrix(0.191045,-0.001337,0.001750,0.249994,0,0);-webkit-transform:matrix(0.191045,-0.001337,0.001750,0.249994,0,0);}
.m17_c00054{transform:matrix(0.193550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193550,0.000000,0.000000,0.250000,0,0);}
.m5c_c00054{transform:matrix(0.212265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212265,0.000000,0.000000,0.250000,0,0);}
.m66_c00054{transform:matrix(0.218198,0.000873,-0.001000,0.249998,0,0);-ms-transform:matrix(0.218198,0.000873,-0.001000,0.249998,0,0);-webkit-transform:matrix(0.218198,0.000873,-0.001000,0.249998,0,0);}
.m14_c00054{transform:matrix(0.223320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223320,0.000000,0.000000,0.250000,0,0);}
.m29_c00054{transform:matrix(0.233370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233370,0.000000,0.000000,0.250000,0,0);}
.m54_c00054{transform:matrix(0.235555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235555,0.000000,0.000000,0.250000,0,0);}
.m58_c00054{transform:matrix(0.252355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252355,0.000000,0.000000,0.250000,0,0);}
.m2c_c00054{transform:matrix(0.254255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254255,0.000000,0.000000,0.250000,0,0);}
.m56_c00054{transform:matrix(0.255830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255830,0.000000,0.000000,0.250000,0,0);}
.m40_c00054{transform:matrix(0.258995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258995,0.000000,0.000000,0.250000,0,0);}
.m6e_c00054{transform:matrix(0.265258,0.001061,-0.001000,0.249998,0,0);-ms-transform:matrix(0.265258,0.001061,-0.001000,0.249998,0,0);-webkit-transform:matrix(0.265258,0.001061,-0.001000,0.249998,0,0);}
.m6d_c00054{transform:matrix(0.267748,0.001071,-0.001000,0.249998,0,0);-ms-transform:matrix(0.267748,0.001071,-0.001000,0.249998,0,0);-webkit-transform:matrix(0.267748,0.001071,-0.001000,0.249998,0,0);}
.m36_c00054{transform:matrix(0.271400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271400,0.000000,0.000000,0.250000,0,0);}
.m2a_c00054{transform:matrix(0.276610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276610,0.000000,0.000000,0.250000,0,0);}
.m35_c00054{transform:matrix(0.277345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277345,0.000000,0.000000,0.250000,0,0);}
.m5e_c00054{transform:matrix(0.277950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277950,0.000000,0.000000,0.250000,0,0);}
.md_c00054{transform:matrix(0.278345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278345,0.000000,0.000000,0.250000,0,0);}
.mf_c00054{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.m65_c00054{transform:matrix(0.287268,0.001149,-0.001000,0.249998,0,0);-ms-transform:matrix(0.287268,0.001149,-0.001000,0.249998,0,0);-webkit-transform:matrix(0.287268,0.001149,-0.001000,0.249998,0,0);}
.m34_c00054{transform:matrix(0.292430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292430,0.000000,0.000000,0.250000,0,0);}
.m33_c00054{transform:matrix(0.293735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293735,0.000000,0.000000,0.250000,0,0);}
.mc_c00054{transform:matrix(0.297835,0.039671,-0.033008,0.247811,0,0);-ms-transform:matrix(0.297835,0.039671,-0.033008,0.247811,0,0);-webkit-transform:matrix(0.297835,0.039671,-0.033008,0.247811,0,0);}
.m39_c00054{transform:matrix(0.298435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298435,0.000000,0.000000,0.250000,0,0);}
.m7_c00054{transform:matrix(0.300937,0.040084,-0.033008,0.247811,0,0);-ms-transform:matrix(0.300937,0.040084,-0.033008,0.247811,0,0);-webkit-transform:matrix(0.300937,0.040084,-0.033008,0.247811,0,0);}
.m77_c00054{transform:matrix(0.306115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306115,0.000000,0.000000,0.250000,0,0);}
.m3d_c00054{transform:matrix(0.307065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307065,0.000000,0.000000,0.250000,0,0);}
.m82_c00054{transform:matrix(0.309227,-0.002165,0.001750,0.249994,0,0);-ms-transform:matrix(0.309227,-0.002165,0.001750,0.249994,0,0);-webkit-transform:matrix(0.309227,-0.002165,0.001750,0.249994,0,0);}
.m2d_c00054{transform:matrix(0.312060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312060,0.000000,0.000000,0.250000,0,0);}
.m3e_c00054{transform:matrix(0.315200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315200,0.000000,0.000000,0.250000,0,0);}
.m21_c00054{transform:matrix(0.317845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317845,0.000000,0.000000,0.250000,0,0);}
.m38_c00054{transform:matrix(0.319510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319510,0.000000,0.000000,0.250000,0,0);}
.m37_c00054{transform:matrix(0.320630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320630,0.000000,0.000000,0.250000,0,0);}
.m6f_c00054{transform:matrix(0.320697,0.001283,-0.001000,0.249998,0,0);-ms-transform:matrix(0.320697,0.001283,-0.001000,0.249998,0,0);-webkit-transform:matrix(0.320697,0.001283,-0.001000,0.249998,0,0);}
.m73_c00054{transform:matrix(0.321122,0.001284,-0.001000,0.249998,0,0);-ms-transform:matrix(0.321122,0.001284,-0.001000,0.249998,0,0);-webkit-transform:matrix(0.321122,0.001284,-0.001000,0.249998,0,0);}
.m6c_c00054{transform:matrix(0.323502,0.001294,-0.001000,0.249998,0,0);-ms-transform:matrix(0.323502,0.001294,-0.001000,0.249998,0,0);-webkit-transform:matrix(0.323502,0.001294,-0.001000,0.249998,0,0);}
.m1_c00054{transform:matrix(0.327685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327685,0.000000,0.000000,0.250000,0,0);}
.m3a_c00054{transform:matrix(0.335410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335410,0.000000,0.000000,0.250000,0,0);}
.m70_c00054{transform:matrix(0.335887,0.001344,-0.001000,0.249998,0,0);-ms-transform:matrix(0.335887,0.001344,-0.001000,0.249998,0,0);-webkit-transform:matrix(0.335887,0.001344,-0.001000,0.249998,0,0);}
.m45_c00054{transform:matrix(0.336990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336990,0.000000,0.000000,0.250000,0,0);}
.m4e_c00054{transform:matrix(0.346135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346135,0.000000,0.000000,0.250000,0,0);}
.m68_c00054{transform:matrix(0.353677,0.001415,-0.001000,0.249998,0,0);-ms-transform:matrix(0.353677,0.001415,-0.001000,0.249998,0,0);-webkit-transform:matrix(0.353677,0.001415,-0.001000,0.249998,0,0);}
.m50_c00054{transform:matrix(0.355220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355220,0.000000,0.000000,0.250000,0,0);}
.m1c_c00054{transform:matrix(0.355755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355755,0.000000,0.000000,0.250000,0,0);}
.m7e_c00054{transform:matrix(0.356536,-0.002496,0.001750,0.249994,0,0);-ms-transform:matrix(0.356536,-0.002496,0.001750,0.249994,0,0);-webkit-transform:matrix(0.356536,-0.002496,0.001750,0.249994,0,0);}
.m53_c00054{transform:matrix(0.356950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356950,0.000000,0.000000,0.250000,0,0);}
.m23_c00054{transform:matrix(0.366275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366275,0.000000,0.000000,0.250000,0,0);}
.m1a_c00054{transform:matrix(0.369025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369025,0.000000,0.000000,0.250000,0,0);}
.m5d_c00054{transform:matrix(0.370305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370305,0.000000,0.000000,0.250000,0,0);}
.m57_c00054{transform:matrix(0.380120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380120,0.000000,0.000000,0.250000,0,0);}
.m7c_c00054{transform:matrix(0.388320,-0.002718,0.001750,0.249994,0,0);-ms-transform:matrix(0.388320,-0.002718,0.001750,0.249994,0,0);-webkit-transform:matrix(0.388320,-0.002718,0.001750,0.249994,0,0);}
.m43_c00054{transform:matrix(0.389400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389400,0.000000,0.000000,0.250000,0,0);}
.m5f_c00054{transform:matrix(0.391327,0.001565,-0.001000,0.249998,0,0);-ms-transform:matrix(0.391327,0.001565,-0.001000,0.249998,0,0);-webkit-transform:matrix(0.391327,0.001565,-0.001000,0.249998,0,0);}
.m81_c00054{transform:matrix(0.394580,-0.002762,0.001750,0.249994,0,0);-ms-transform:matrix(0.394580,-0.002762,0.001750,0.249994,0,0);-webkit-transform:matrix(0.394580,-0.002762,0.001750,0.249994,0,0);}
.m6b_c00054{transform:matrix(0.397077,0.001588,-0.001000,0.249998,0,0);-ms-transform:matrix(0.397077,0.001588,-0.001000,0.249998,0,0);-webkit-transform:matrix(0.397077,0.001588,-0.001000,0.249998,0,0);}
.m15_c00054{transform:matrix(0.397155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397155,0.000000,0.000000,0.250000,0,0);}
.m60_c00054{transform:matrix(0.402837,0.001611,-0.001000,0.249998,0,0);-ms-transform:matrix(0.402837,0.001611,-0.001000,0.249998,0,0);-webkit-transform:matrix(0.402837,0.001611,-0.001000,0.249998,0,0);}
.m24_c00054{transform:matrix(0.405280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405280,0.000000,0.000000,0.250000,0,0);}
.m19_c00054{transform:matrix(0.414880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414880,0.000000,0.000000,0.250000,0,0);}
.m5_c00054{transform:matrix(0.415735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415735,0.000000,0.000000,0.250000,0,0);}
.m44_c00054{transform:matrix(0.417145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417145,0.000000,0.000000,0.250000,0,0);}
.m80_c00054{transform:matrix(0.418380,-0.002929,0.001750,0.249994,0,0);-ms-transform:matrix(0.418380,-0.002929,0.001750,0.249994,0,0);-webkit-transform:matrix(0.418380,-0.002929,0.001750,0.249994,0,0);}
.m7d_c00054{transform:matrix(0.421060,-0.002947,0.001750,0.249994,0,0);-ms-transform:matrix(0.421060,-0.002947,0.001750,0.249994,0,0);-webkit-transform:matrix(0.421060,-0.002947,0.001750,0.249994,0,0);}
.m79_c00054{transform:matrix(0.421890,-0.002953,0.001750,0.249994,0,0);-ms-transform:matrix(0.421890,-0.002953,0.001750,0.249994,0,0);-webkit-transform:matrix(0.421890,-0.002953,0.001750,0.249994,0,0);}
.m31_c00054{transform:matrix(0.422810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422810,0.000000,0.000000,0.250000,0,0);}
.m22_c00054{transform:matrix(0.429860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429860,0.000000,0.000000,0.250000,0,0);}
.m51_c00054{transform:matrix(0.434080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434080,0.000000,0.000000,0.250000,0,0);}
.m13_c00054{transform:matrix(0.440330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440330,0.000000,0.000000,0.250000,0,0);}
.m55_c00054{transform:matrix(0.441275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441275,0.000000,0.000000,0.250000,0,0);}
.m3f_c00054{transform:matrix(0.445475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445475,0.000000,0.000000,0.250000,0,0);}
.m9_c00054{transform:matrix(0.447815,0.059648,-0.033008,0.247811,0,0);-ms-transform:matrix(0.447815,0.059648,-0.033008,0.247811,0,0);-webkit-transform:matrix(0.447815,0.059648,-0.033008,0.247811,0,0);}
.m5a_c00054{transform:matrix(0.452245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452245,0.000000,0.000000,0.250000,0,0);}
.m67_c00054{transform:matrix(0.458391,0.001834,-0.001000,0.249998,0,0);-ms-transform:matrix(0.458391,0.001834,-0.001000,0.249998,0,0);-webkit-transform:matrix(0.458391,0.001834,-0.001000,0.249998,0,0);}
.m4f_c00054{transform:matrix(0.461815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461815,0.000000,0.000000,0.250000,0,0);}
.m4d_c00054{transform:matrix(0.466700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466700,0.000000,0.000000,0.250000,0,0);}
.m10_c00054{transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);}
.m46_c00054{transform:matrix(0.476515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.476515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.476515,0.000000,0.000000,0.250000,0,0);}
.m64_c00054{transform:matrix(0.490326,0.001961,-0.001000,0.249998,0,0);-ms-transform:matrix(0.490326,0.001961,-0.001000,0.249998,0,0);-webkit-transform:matrix(0.490326,0.001961,-0.001000,0.249998,0,0);}
.m11_c00054{transform:matrix(0.504135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504135,0.000000,0.000000,0.250000,0,0);}
.m4b_c00054{transform:matrix(0.509435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509435,0.000000,0.000000,0.250000,0,0);}
.m12_c00054{transform:matrix(0.533800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533800,0.000000,0.000000,0.250000,0,0);}
.mb_c00054{transform:matrix(0.537314,0.071570,-0.033008,0.247811,0,0);-ms-transform:matrix(0.537314,0.071570,-0.033008,0.247811,0,0);-webkit-transform:matrix(0.537314,0.071570,-0.033008,0.247811,0,0);}
.m72_c00054{transform:matrix(0.548016,0.002192,-0.001000,0.249998,0,0);-ms-transform:matrix(0.548016,0.002192,-0.001000,0.249998,0,0);-webkit-transform:matrix(0.548016,0.002192,-0.001000,0.249998,0,0);}
.m1d_c00054{transform:matrix(0.555710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555710,0.000000,0.000000,0.250000,0,0);}
.m28_c00054{transform:matrix(0.566885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566885,0.000000,0.000000,0.250000,0,0);}
.m59_c00054{transform:matrix(0.596750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.596750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.596750,0.000000,0.000000,0.250000,0,0);}
.m2f_c00054{transform:matrix(0.643035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.643035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.643035,0.000000,0.000000,0.250000,0,0);}
.m52_c00054{transform:matrix(0.648455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.648455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.648455,0.000000,0.000000,0.250000,0,0);}
.m4c_c00054{transform:matrix(0.653090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.653090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.653090,0.000000,0.000000,0.250000,0,0);}
.m2e_c00054{transform:matrix(0.660090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.660090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.660090,0.000000,0.000000,0.250000,0,0);}
.m30_c00054{transform:matrix(0.676935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.676935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.676935,0.000000,0.000000,0.250000,0,0);}
.m0_c00054{transform:matrix(0.679050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.679050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.679050,0.000000,0.000000,0.250000,0,0);}
.m49_c00054{transform:matrix(0.688955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.688955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.688955,0.000000,0.000000,0.250000,0,0);}
.m3b_c00054{transform:matrix(0.710720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.710720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.710720,0.000000,0.000000,0.250000,0,0);}
.m71_c00054{transform:matrix(0.715134,0.002861,-0.001000,0.249998,0,0);-ms-transform:matrix(0.715134,0.002861,-0.001000,0.249998,0,0);-webkit-transform:matrix(0.715134,0.002861,-0.001000,0.249998,0,0);}
.m4_c00054{transform:matrix(0.850905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.850905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.850905,0.000000,0.000000,0.250000,0,0);}
.m3_c00054{transform:matrix(0.852995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.852995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.852995,0.000000,0.000000,0.250000,0,0);}
.m3c_c00054{transform:matrix(0.868875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.868875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.868875,0.000000,0.000000,0.250000,0,0);}
.m4a_c00054{transform:matrix(0.873515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.873515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.873515,0.000000,0.000000,0.250000,0,0);}
.m26_c00054{transform:matrix(1.078020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.078020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.078020,0.000000,0.000000,0.250000,0,0);}
.m63_c00054{transform:matrix(1.489528,0.005958,-0.001000,0.249998,0,0);-ms-transform:matrix(1.489528,0.005958,-0.001000,0.249998,0,0);-webkit-transform:matrix(1.489528,0.005958,-0.001000,0.249998,0,0);}
.ma_c00054{transform:matrix(1.943257,0.258840,-0.033008,0.247811,0,0);-ms-transform:matrix(1.943257,0.258840,-0.033008,0.247811,0,0);-webkit-transform:matrix(1.943257,0.258840,-0.033008,0.247811,0,0);}
.m7a_c00054{transform:matrix(2.549278,-0.017845,0.001750,0.249994,0,0);-ms-transform:matrix(2.549278,-0.017845,0.001750,0.249994,0,0);-webkit-transform:matrix(2.549278,-0.017845,0.001750,0.249994,0,0);}
.me_c00054{transform:matrix(3.040490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.040490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.040490,0.000000,0.000000,0.250000,0,0);}
.m8_c00054{transform:matrix(3.808380,0.507272,-0.033008,0.247811,0,0);-ms-transform:matrix(3.808380,0.507272,-0.033008,0.247811,0,0);-webkit-transform:matrix(3.808380,0.507272,-0.033008,0.247811,0,0);}
.m78_c00054{transform:matrix(10.120587,-0.070844,0.001750,0.249994,0,0);-ms-transform:matrix(10.120587,-0.070844,0.001750,0.249994,0,0);-webkit-transform:matrix(10.120587,-0.070844,0.001750,0.249994,0,0);}
.v0_c00054{vertical-align:0.000000px;}
.ls0_c00054{letter-spacing:0.000000px;}
.sc__c00054{text-shadow:none;}
.sc0_c00054{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__c00054{-webkit-text-stroke:0px transparent;}
.sc0_c00054{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00054{word-spacing:0.000000px;}
.fc0_c00054{color:transparent;}
.fs6_c00054{font-size:12.000000px;}
.fs7_c00054{font-size:18.000000px;}
.fse_c00054{font-size:18.000441px;}
.fs5_c00054{font-size:24.000000px;}
.fsb_c00054{font-size:24.000192px;}
.fsa_c00054{font-size:30.000000px;}
.fs9_c00054{font-size:42.000000px;}
.fs8_c00054{font-size:48.000000px;}
.fsc_c00054{font-size:54.000432px;}
.fs4_c00054{font-size:66.000000px;}
.fs3_c00054{font-size:78.000000px;}
.fs2_c00054{font-size:83.979207px;}
.fs0_c00054{font-size:84.000000px;}
.fs1_c00054{font-size:101.974752px;}
.fsd_c00054{font-size:156.000000px;}
.y45_c00054{bottom:-0.540000px;}
.y0_c00054{bottom:0.000000px;}
.y46_c00054{bottom:1.378424px;}
.y47_c00054{bottom:1.465311px;}
.y48_c00054{bottom:1.877174px;}
.y49_c00054{bottom:1.907613px;}
.y4a_c00054{bottom:1.981145px;}
.y4b_c00054{bottom:2.115503px;}
.y4c_c00054{bottom:2.136103px;}
.y4d_c00054{bottom:2.170145px;}
.y4e_c00054{bottom:2.243855px;}
.y4f_c00054{bottom:2.398814px;}
.y50_c00054{bottom:2.517978px;}
.y51_c00054{bottom:2.618158px;}
.y52_c00054{bottom:2.678607px;}
.y53_c00054{bottom:2.843016px;}
.y44_c00054{bottom:58.590000px;}
.y30_c00054{bottom:194.689344px;}
.y31_c00054{bottom:195.785802px;}
.y32_c00054{bottom:197.220756px;}
.y33_c00054{bottom:198.024468px;}
.y34_c00054{bottom:199.384008px;}
.y35_c00054{bottom:200.379408px;}
.y36_c00054{bottom:201.512790px;}
.y37_c00054{bottom:202.049358px;}
.y38_c00054{bottom:203.595420px;}
.y39_c00054{bottom:204.961470px;}
.y3a_c00054{bottom:206.174166px;}
.y3b_c00054{bottom:206.955006px;}
.y3c_c00054{bottom:207.991356px;}
.y3d_c00054{bottom:208.351656px;}
.y3e_c00054{bottom:208.493508px;}
.y3f_c00054{bottom:209.941350px;}
.y40_c00054{bottom:211.173138px;}
.y41_c00054{bottom:212.885418px;}
.y42_c00054{bottom:214.063644px;}
.y43_c00054{bottom:215.797590px;}
.y2f_c00054{bottom:226.366830px;}
.y2e_c00054{bottom:227.616324px;}
.y2d_c00054{bottom:229.823916px;}
.y2c_c00054{bottom:230.040000px;}
.y2b_c00054{bottom:255.151500px;}
.y24_c00054{bottom:256.231500px;}
.y25_c00054{bottom:256.545000px;}
.y26_c00054{bottom:257.092500px;}
.y27_c00054{bottom:257.263500px;}
.y28_c00054{bottom:259.812000px;}
.y29_c00054{bottom:260.415000px;}
.y2a_c00054{bottom:261.313500px;}
.y22_c00054{bottom:271.926000px;}
.y23_c00054{bottom:285.120000px;}
.y21_c00054{bottom:290.914500px;}
.y20_c00054{bottom:291.304500px;}
.y1f_c00054{bottom:291.531000px;}
.y1e_c00054{bottom:291.715500px;}
.y1d_c00054{bottom:291.946500px;}
.y1c_c00054{bottom:292.093500px;}
.y1b_c00054{bottom:292.240500px;}
.y1a_c00054{bottom:292.674000px;}
.y19_c00054{bottom:293.088000px;}
.y18_c00054{bottom:294.066000px;}
.y17_c00054{bottom:294.306000px;}
.y16_c00054{bottom:299.209500px;}
.y12_c00054{bottom:311.850000px;}
.y13_c00054{bottom:312.270000px;}
.y14_c00054{bottom:314.215500px;}
.y15_c00054{bottom:317.683500px;}
.y11_c00054{bottom:322.309500px;}
.y10_c00054{bottom:343.986000px;}
.yf_c00054{bottom:348.048000px;}
.ye_c00054{bottom:431.997000px;}
.yd_c00054{bottom:432.102000px;}
.yc_c00054{bottom:433.191000px;}
.yb_c00054{bottom:433.681500px;}
.ya_c00054{bottom:434.394000px;}
.y9_c00054{bottom:435.252000px;}
.y8_c00054{bottom:468.135000px;}
.y7_c00054{bottom:535.891629px;}
.y6_c00054{bottom:537.221719px;}
.y5_c00054{bottom:537.830792px;}
.y4_c00054{bottom:538.228906px;}
.y3_c00054{bottom:539.647794px;}
.y2_c00054{bottom:603.037500px;}
.y1_c00054{bottom:639.669000px;}
.h8_c00054{height:12.000000px;}
.h9_c00054{height:18.000000px;}
.h10_c00054{height:18.000441px;}
.h7_c00054{height:24.000000px;}
.hd_c00054{height:24.000192px;}
.hc_c00054{height:30.000000px;}
.hb_c00054{height:42.000000px;}
.ha_c00054{height:48.000000px;}
.he_c00054{height:54.000432px;}
.h6_c00054{height:66.000000px;}
.h5_c00054{height:78.000000px;}
.h4_c00054{height:83.979207px;}
.h2_c00054{height:84.000000px;}
.h3_c00054{height:101.974752px;}
.hf_c00054{height:156.000000px;}
.h0_c00054{height:711.720000px;}
.h1_c00054{height:711.750000px;}
.w1_c00054{width:945.750000px;}
.w0_c00054{width:946.050000px;}
.x0_c00054{left:0.000000px;}
.x9_c00054{left:33.482793px;}
.x38_c00054{left:48.453000px;}
.x5a_c00054{left:54.249000px;}
.x2d_c00054{left:70.090500px;}
.x3f_c00054{left:74.248500px;}
.x39_c00054{left:87.622500px;}
.x40_c00054{left:98.008500px;}
.x25_c00054{left:99.669000px;}
.x5c_c00054{left:110.909496px;}
.x41_c00054{left:112.588500px;}
.x1_c00054{left:121.500000px;}
.x2e_c00054{left:130.029000px;}
.x42_c00054{left:132.568500px;}
.x5d_c00054{left:145.860270px;}
.x3a_c00054{left:156.120000px;}
.x26_c00054{left:159.585000px;}
.x43_c00054{left:169.018500px;}
.x3b_c00054{left:177.550500px;}
.x44_c00054{left:184.408500px;}
.x19_c00054{left:199.800000px;}
.x5e_c00054{left:204.981654px;}
.x16_c00054{left:228.960000px;}
.x45_c00054{left:242.998500px;}
.x5f_c00054{left:248.261328px;}
.x46_c00054{left:254.338500px;}
.x47_c00054{left:273.778500px;}
.x68_c00054{left:278.668500px;}
.x48_c00054{left:296.188500px;}
.x60_c00054{left:297.546150px;}
.x2_c00054{left:318.870000px;}
.x61_c00054{left:320.906670px;}
.xa_c00054{left:371.575308px;}
.x2f_c00054{left:374.374500px;}
.x49_c00054{left:375.838500px;}
.x62_c00054{left:388.148430px;}
.x4a_c00054{left:399.868500px;}
.x1a_c00054{left:410.670000px;}
.x37_c00054{left:415.530000px;}
.x3_c00054{left:419.310000px;}
.x28_c00054{left:430.110000px;}
.x27_c00054{left:437.410500px;}
.x4_c00054{left:447.120000px;}
.xb_c00054{left:466.495930px;}
.x1b_c00054{left:471.690000px;}
.x30_c00054{left:477.865500px;}
.x4b_c00054{left:484.108500px;}
.x3c_c00054{left:496.041000px;}
.x4c_c00054{left:499.228500px;}
.xe_c00054{left:510.570000px;}
.x4d_c00054{left:519.208500px;}
.x1c_c00054{left:527.580000px;}
.x1f_c00054{left:530.820000px;}
.x4e_c00054{left:534.058500px;}
.xf_c00054{left:545.940000px;}
.x20_c00054{left:552.690000px;}
.x4f_c00054{left:564.298500px;}
.x21_c00054{left:566.190000px;}
.x11_c00054{left:568.411500px;}
.x3d_c00054{left:571.398000px;}
.x63_c00054{left:579.185070px;}
.x31_c00054{left:586.135500px;}
.x29_c00054{left:587.790000px;}
.x17_c00054{left:589.410000px;}
.x22_c00054{left:591.300000px;}
.x1d_c00054{left:595.620000px;}
.x64_c00054{left:601.024428px;}
.x5b_c00054{left:606.147000px;}
.xc_c00054{left:611.817061px;}
.x32_c00054{left:622.869000px;}
.x69_c00054{left:623.979000px;}
.x6a_c00054{left:628.327500px;}
.x6b_c00054{left:638.832000px;}
.x50_c00054{left:646.648500px;}
.x51_c00054{left:658.528500px;}
.x33_c00054{left:659.581500px;}
.x6c_c00054{left:660.969000px;}
.x12_c00054{left:663.738000px;}
.x6d_c00054{left:665.832000px;}
.x23_c00054{left:676.620000px;}
.x3e_c00054{left:683.667000px;}
.x52_c00054{left:687.688500px;}
.x53_c00054{left:696.598500px;}
.x6e_c00054{left:698.499000px;}
.x6f_c00054{left:715.522500px;}
.x34_c00054{left:717.358500px;}
.x1e_c00054{left:725.760000px;}
.x70_c00054{left:729.834000px;}
.x71_c00054{left:738.469500px;}
.x5_c00054{left:740.070000px;}
.x13_c00054{left:742.851000px;}
.x18_c00054{left:759.510000px;}
.x54_c00054{left:760.588500px;}
.x72_c00054{left:761.956500px;}
.x35_c00054{left:763.480500px;}
.x2a_c00054{left:773.550000px;}
.x55_c00054{left:780.298500px;}
.x65_c00054{left:791.942550px;}
.x14_c00054{left:797.386500px;}
.x2b_c00054{left:811.080000px;}
.x56_c00054{left:817.828500px;}
.x36_c00054{left:820.179000px;}
.x57_c00054{left:839.968500px;}
.x66_c00054{left:843.141582px;}
.x58_c00054{left:849.958500px;}
.x2c_c00054{left:858.060000px;}
.x6_c00054{left:876.690000px;}
.x59_c00054{left:879.928500px;}
.x67_c00054{left:883.170000px;}
.x8_c00054{left:915.952500px;}
.x15_c00054{left:918.343500px;}
.x10_c00054{left:919.890000px;}
.xd_c00054{left:928.957518px;}
.x7_c00054{left:932.580000px;}
.x24_c00054{left:937.170000px;}
@media print{
.v0_c00054{vertical-align:0.000000pt;}
.ls0_c00054{letter-spacing:0.000000pt;}
.ws0_c00054{word-spacing:0.000000pt;}
.fs6_c00054{font-size:10.666667pt;}
.fs7_c00054{font-size:16.000000pt;}
.fse_c00054{font-size:16.000392pt;}
.fs5_c00054{font-size:21.333333pt;}
.fsb_c00054{font-size:21.333504pt;}
.fsa_c00054{font-size:26.666667pt;}
.fs9_c00054{font-size:37.333333pt;}
.fs8_c00054{font-size:42.666667pt;}
.fsc_c00054{font-size:48.000384pt;}
.fs4_c00054{font-size:58.666667pt;}
.fs3_c00054{font-size:69.333333pt;}
.fs2_c00054{font-size:74.648184pt;}
.fs0_c00054{font-size:74.666667pt;}
.fs1_c00054{font-size:90.644224pt;}
.fsd_c00054{font-size:138.666667pt;}
.y45_c00054{bottom:-0.480000pt;}
.y0_c00054{bottom:0.000000pt;}
.y46_c00054{bottom:1.225265pt;}
.y47_c00054{bottom:1.302499pt;}
.y48_c00054{bottom:1.668599pt;}
.y49_c00054{bottom:1.695656pt;}
.y4a_c00054{bottom:1.761017pt;}
.y4b_c00054{bottom:1.880447pt;}
.y4c_c00054{bottom:1.898759pt;}
.y4d_c00054{bottom:1.929017pt;}
.y4e_c00054{bottom:1.994537pt;}
.y4f_c00054{bottom:2.132279pt;}
.y50_c00054{bottom:2.238203pt;}
.y51_c00054{bottom:2.327252pt;}
.y52_c00054{bottom:2.380984pt;}
.y53_c00054{bottom:2.527125pt;}
.y44_c00054{bottom:52.080000pt;}
.y30_c00054{bottom:173.057195pt;}
.y31_c00054{bottom:174.031824pt;}
.y32_c00054{bottom:175.307339pt;}
.y33_c00054{bottom:176.021749pt;}
.y34_c00054{bottom:177.230229pt;}
.y35_c00054{bottom:178.115029pt;}
.y36_c00054{bottom:179.122480pt;}
.y37_c00054{bottom:179.599429pt;}
.y38_c00054{bottom:180.973707pt;}
.y39_c00054{bottom:182.187973pt;}
.y3a_c00054{bottom:183.265925pt;}
.y3b_c00054{bottom:183.960005pt;}
.y3c_c00054{bottom:184.881205pt;}
.y3d_c00054{bottom:185.201472pt;}
.y3e_c00054{bottom:185.327563pt;}
.y3f_c00054{bottom:186.614533pt;}
.y40_c00054{bottom:187.709456pt;}
.y41_c00054{bottom:189.231483pt;}
.y42_c00054{bottom:190.278795pt;}
.y43_c00054{bottom:191.820080pt;}
.y2f_c00054{bottom:201.214960pt;}
.y2e_c00054{bottom:202.325621pt;}
.y2d_c00054{bottom:204.287925pt;}
.y2c_c00054{bottom:204.480000pt;}
.y2b_c00054{bottom:226.801333pt;}
.y24_c00054{bottom:227.761333pt;}
.y25_c00054{bottom:228.040000pt;}
.y26_c00054{bottom:228.526667pt;}
.y27_c00054{bottom:228.678667pt;}
.y28_c00054{bottom:230.944000pt;}
.y29_c00054{bottom:231.480000pt;}
.y2a_c00054{bottom:232.278667pt;}
.y22_c00054{bottom:241.712000pt;}
.y23_c00054{bottom:253.440000pt;}
.y21_c00054{bottom:258.590667pt;}
.y20_c00054{bottom:258.937333pt;}
.y1f_c00054{bottom:259.138667pt;}
.y1e_c00054{bottom:259.302667pt;}
.y1d_c00054{bottom:259.508000pt;}
.y1c_c00054{bottom:259.638667pt;}
.y1b_c00054{bottom:259.769333pt;}
.y1a_c00054{bottom:260.154667pt;}
.y19_c00054{bottom:260.522667pt;}
.y18_c00054{bottom:261.392000pt;}
.y17_c00054{bottom:261.605333pt;}
.y16_c00054{bottom:265.964000pt;}
.y12_c00054{bottom:277.200000pt;}
.y13_c00054{bottom:277.573333pt;}
.y14_c00054{bottom:279.302667pt;}
.y15_c00054{bottom:282.385333pt;}
.y11_c00054{bottom:286.497333pt;}
.y10_c00054{bottom:305.765333pt;}
.yf_c00054{bottom:309.376000pt;}
.ye_c00054{bottom:383.997333pt;}
.yd_c00054{bottom:384.090667pt;}
.yc_c00054{bottom:385.058667pt;}
.yb_c00054{bottom:385.494667pt;}
.ya_c00054{bottom:386.128000pt;}
.y9_c00054{bottom:386.890667pt;}
.y8_c00054{bottom:416.120000pt;}
.y7_c00054{bottom:476.348115pt;}
.y6_c00054{bottom:477.530417pt;}
.y5_c00054{bottom:478.071815pt;}
.y4_c00054{bottom:478.425695pt;}
.y3_c00054{bottom:479.686928pt;}
.y2_c00054{bottom:536.033333pt;}
.y1_c00054{bottom:568.594667pt;}
.h8_c00054{height:10.666667pt;}
.h9_c00054{height:16.000000pt;}
.h10_c00054{height:16.000392pt;}
.h7_c00054{height:21.333333pt;}
.hd_c00054{height:21.333504pt;}
.hc_c00054{height:26.666667pt;}
.hb_c00054{height:37.333333pt;}
.ha_c00054{height:42.666667pt;}
.he_c00054{height:48.000384pt;}
.h6_c00054{height:58.666667pt;}
.h5_c00054{height:69.333333pt;}
.h4_c00054{height:74.648184pt;}
.h2_c00054{height:74.666667pt;}
.h3_c00054{height:90.644224pt;}
.hf_c00054{height:138.666667pt;}
.h0_c00054{height:632.640000pt;}
.h1_c00054{height:632.666667pt;}
.w1_c00054{width:840.666667pt;}
.w0_c00054{width:840.933333pt;}
.x0_c00054{left:0.000000pt;}
.x9_c00054{left:29.762483pt;}
.x38_c00054{left:43.069333pt;}
.x5a_c00054{left:48.221333pt;}
.x2d_c00054{left:62.302667pt;}
.x3f_c00054{left:65.998667pt;}
.x39_c00054{left:77.886667pt;}
.x40_c00054{left:87.118667pt;}
.x25_c00054{left:88.594667pt;}
.x5c_c00054{left:98.586219pt;}
.x41_c00054{left:100.078667pt;}
.x1_c00054{left:108.000000pt;}
.x2e_c00054{left:115.581333pt;}
.x42_c00054{left:117.838667pt;}
.x5d_c00054{left:129.653573pt;}
.x3a_c00054{left:138.773333pt;}
.x26_c00054{left:141.853333pt;}
.x43_c00054{left:150.238667pt;}
.x3b_c00054{left:157.822667pt;}
.x44_c00054{left:163.918667pt;}
.x19_c00054{left:177.600000pt;}
.x5e_c00054{left:182.205915pt;}
.x16_c00054{left:203.520000pt;}
.x45_c00054{left:215.998667pt;}
.x5f_c00054{left:220.676736pt;}
.x46_c00054{left:226.078667pt;}
.x47_c00054{left:243.358667pt;}
.x68_c00054{left:247.705333pt;}
.x48_c00054{left:263.278667pt;}
.x60_c00054{left:264.485467pt;}
.x2_c00054{left:283.440000pt;}
.x61_c00054{left:285.250373pt;}
.xa_c00054{left:330.289163pt;}
.x2f_c00054{left:332.777333pt;}
.x49_c00054{left:334.078667pt;}
.x62_c00054{left:345.020827pt;}
.x4a_c00054{left:355.438667pt;}
.x1a_c00054{left:365.040000pt;}
.x37_c00054{left:369.360000pt;}
.x3_c00054{left:372.720000pt;}
.x28_c00054{left:382.320000pt;}
.x27_c00054{left:388.809333pt;}
.x4_c00054{left:397.440000pt;}
.xb_c00054{left:414.663049pt;}
.x1b_c00054{left:419.280000pt;}
.x30_c00054{left:424.769333pt;}
.x4b_c00054{left:430.318667pt;}
.x3c_c00054{left:440.925333pt;}
.x4c_c00054{left:443.758667pt;}
.xe_c00054{left:453.840000pt;}
.x4d_c00054{left:461.518667pt;}
.x1c_c00054{left:468.960000pt;}
.x1f_c00054{left:471.840000pt;}
.x4e_c00054{left:474.718667pt;}
.xf_c00054{left:485.280000pt;}
.x20_c00054{left:491.280000pt;}
.x4f_c00054{left:501.598667pt;}
.x21_c00054{left:503.280000pt;}
.x11_c00054{left:505.254667pt;}
.x3d_c00054{left:507.909333pt;}
.x63_c00054{left:514.831173pt;}
.x31_c00054{left:521.009333pt;}
.x29_c00054{left:522.480000pt;}
.x17_c00054{left:523.920000pt;}
.x22_c00054{left:525.600000pt;}
.x1d_c00054{left:529.440000pt;}
.x64_c00054{left:534.243936pt;}
.x5b_c00054{left:538.797333pt;}
.xc_c00054{left:543.837388pt;}
.x32_c00054{left:553.661333pt;}
.x69_c00054{left:554.648000pt;}
.x6a_c00054{left:558.513333pt;}
.x6b_c00054{left:567.850667pt;}
.x50_c00054{left:574.798667pt;}
.x51_c00054{left:585.358667pt;}
.x33_c00054{left:586.294667pt;}
.x6c_c00054{left:587.528000pt;}
.x12_c00054{left:589.989333pt;}
.x6d_c00054{left:591.850667pt;}
.x23_c00054{left:601.440000pt;}
.x3e_c00054{left:607.704000pt;}
.x52_c00054{left:611.278667pt;}
.x53_c00054{left:619.198667pt;}
.x6e_c00054{left:620.888000pt;}
.x6f_c00054{left:636.020000pt;}
.x34_c00054{left:637.652000pt;}
.x1e_c00054{left:645.120000pt;}
.x70_c00054{left:648.741333pt;}
.x71_c00054{left:656.417333pt;}
.x5_c00054{left:657.840000pt;}
.x13_c00054{left:660.312000pt;}
.x18_c00054{left:675.120000pt;}
.x54_c00054{left:676.078667pt;}
.x72_c00054{left:677.294667pt;}
.x35_c00054{left:678.649333pt;}
.x2a_c00054{left:687.600000pt;}
.x55_c00054{left:693.598667pt;}
.x65_c00054{left:703.948933pt;}
.x14_c00054{left:708.788000pt;}
.x2b_c00054{left:720.960000pt;}
.x56_c00054{left:726.958667pt;}
.x36_c00054{left:729.048000pt;}
.x57_c00054{left:746.638667pt;}
.x66_c00054{left:749.459184pt;}
.x58_c00054{left:755.518667pt;}
.x2c_c00054{left:762.720000pt;}
.x6_c00054{left:779.280000pt;}
.x59_c00054{left:782.158667pt;}
.x67_c00054{left:785.040000pt;}
.x8_c00054{left:814.180000pt;}
.x15_c00054{left:816.305333pt;}
.x10_c00054{left:817.680000pt;}
.xd_c00054{left:825.740016pt;}
.x7_c00054{left:828.960000pt;}
.x24_c00054{left:833.040000pt;}
}





/* 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_c00055 {
    display:none;
  }
  .loading-indicator_c00055.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00055 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_c00055 { 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_c00055" -> "#page-container .classname_c00055")
 */
.pf_c00055 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00055 { /* 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_c00055.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00055 { /* 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_c00055 { /* 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_c00055 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00055 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00055 {overflow:visible;}
  }
}
.c_c00055 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00055 { /* 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_c00055:after { /* webkit #35443 */
  content: '';
}
.t_c00055:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00055 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 */
}
.__c00055 { /* 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_c00055 { /* info for Javascript */
  display:none;
}
.l_c00055 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00055 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00055 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00055: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_c00055 {
    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_c00055.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00055.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_c00055 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00055{font-family:sans-serif;visibility:hidden;}
.sc__c00055{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00055{-webkit-text-stroke:0px transparent;}
}
.y0_c00055{bottom:0.000000px;}
.h0_c00055{height:711.720000px;}
.h1_c00055{height:711.750000px;}
.w1_c00055{width:945.750000px;}
.w0_c00055{width:946.050000px;}
.x0_c00055{left:0.000000px;}
@media print{
.y0_c00055{bottom:0.000000pt;}
.h0_c00055{height:632.640000pt;}
.h1_c00055{height:632.666667pt;}
.w1_c00055{width:840.666667pt;}
.w0_c00055{width:840.933333pt;}
.x0_c00055{left:0.000000pt;}
}





/* 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_c00056 {
    display:none;
  }
  .loading-indicator_c00056.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00056 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_c00056 { 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_c00056" -> "#page-container .classname_c00056")
 */
.pf_c00056 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00056 { /* 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_c00056.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00056 { /* 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_c00056 { /* 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_c00056 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00056 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00056 {overflow:visible;}
  }
}
.c_c00056 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00056 { /* 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_c00056:after { /* webkit #35443 */
  content: '';
}
.t_c00056:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00056 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 */
}
.__c00056 { /* 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_c00056 { /* info for Javascript */
  display:none;
}
.l_c00056 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00056 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00056 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00056: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_c00056 {
    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_c00056.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00056.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_c00056 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00056{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00056;src:url('chunks/assets/font_7c6b9abe6ee2a268480c528b.woff2')format("woff");}.ff1_c00056{font-family:ff1_c00056;line-height:1.000000;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;}
.m26_c00056{transform:matrix(0.010225,0.000051,-0.001250,0.249997,0,0);-ms-transform:matrix(0.010225,0.000051,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.010225,0.000051,-0.001250,0.249997,0,0);}
.m12_c00056{transform:matrix(0.011930,0.000072,-0.001500,0.249996,0,0);-ms-transform:matrix(0.011930,0.000072,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.011930,0.000072,-0.001500,0.249996,0,0);}
.m2b_c00056{transform:matrix(0.014750,0.000074,-0.001250,0.249997,0,0);-ms-transform:matrix(0.014750,0.000074,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.014750,0.000074,-0.001250,0.249997,0,0);}
.mbc_c00056{transform:matrix(0.017355,0.000104,-0.001500,0.249996,0,0);-ms-transform:matrix(0.017355,0.000104,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.017355,0.000104,-0.001500,0.249996,0,0);}
.m0_c00056{transform:matrix(0.035575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.035575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.035575,0.000000,0.000000,0.250000,0,0);}
.m1b6_c00056{transform:matrix(0.072799,0.000364,-0.001250,0.249997,0,0);-ms-transform:matrix(0.072799,0.000364,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.072799,0.000364,-0.001250,0.249997,0,0);}
.m97_c00056{transform:matrix(0.084333,0.000506,-0.001500,0.249996,0,0);-ms-transform:matrix(0.084333,0.000506,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.084333,0.000506,-0.001500,0.249996,0,0);}
.mb2_c00056{transform:matrix(0.087823,0.000527,-0.001500,0.249996,0,0);-ms-transform:matrix(0.087823,0.000527,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.087823,0.000527,-0.001500,0.249996,0,0);}
.m2a_c00056{transform:matrix(0.089644,0.000448,-0.001250,0.249997,0,0);-ms-transform:matrix(0.089644,0.000448,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.089644,0.000448,-0.001250,0.249997,0,0);}
.m8d_c00056{transform:matrix(0.091777,0.000734,-0.002000,0.249992,0,0);-ms-transform:matrix(0.091777,0.000734,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.091777,0.000734,-0.002000,0.249992,0,0);}
.md_c00056{transform:matrix(0.100625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100625,0.000000,0.000000,0.250000,0,0);}
.me2_c00056{transform:matrix(0.108698,0.000652,-0.001500,0.249996,0,0);-ms-transform:matrix(0.108698,0.000652,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.108698,0.000652,-0.001500,0.249996,0,0);}
.mc9_c00056{transform:matrix(0.123813,0.000743,-0.001500,0.249996,0,0);-ms-transform:matrix(0.123813,0.000743,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.123813,0.000743,-0.001500,0.249996,0,0);}
.mb_c00056{transform:matrix(0.127280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127280,0.000000,0.000000,0.250000,0,0);}
.m1_c00056{transform:matrix(0.135830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135830,0.000000,0.000000,0.250000,0,0);}
.me_c00056{transform:matrix(0.136498,0.000819,-0.001500,0.249996,0,0);-ms-transform:matrix(0.136498,0.000819,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.136498,0.000819,-0.001500,0.249996,0,0);}
.ma9_c00056{transform:matrix(0.139787,0.000979,-0.001750,0.249994,0,0);-ms-transform:matrix(0.139787,0.000979,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.139787,0.000979,-0.001750,0.249994,0,0);}
.m7_c00056{transform:matrix(0.144070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144070,0.000000,0.000000,0.250000,0,0);}
.mb1_c00056{transform:matrix(0.146046,0.001022,-0.001750,0.249994,0,0);-ms-transform:matrix(0.146046,0.001022,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.146046,0.001022,-0.001750,0.249994,0,0);}
.m13_c00056{transform:matrix(0.147517,0.000885,-0.001500,0.249996,0,0);-ms-transform:matrix(0.147517,0.000885,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.147517,0.000885,-0.001500,0.249996,0,0);}
.m10_c00056{transform:matrix(0.151602,0.000910,-0.001500,0.249996,0,0);-ms-transform:matrix(0.151602,0.000910,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.151602,0.000910,-0.001500,0.249996,0,0);}
.m56_c00056{transform:matrix(0.152977,0.001530,-0.002500,0.249988,0,0);-ms-transform:matrix(0.152977,0.001530,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.152977,0.001530,-0.002500,0.249988,0,0);}
.m39_c00056{transform:matrix(0.153007,0.000918,-0.001500,0.249996,0,0);-ms-transform:matrix(0.153007,0.000918,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.153007,0.000918,-0.001500,0.249996,0,0);}
.ma_c00056{transform:matrix(0.153015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153015,0.000000,0.000000,0.250000,0,0);}
.m71_c00056{transform:matrix(0.153421,0.001074,-0.001750,0.249994,0,0);-ms-transform:matrix(0.153421,0.001074,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.153421,0.001074,-0.001750,0.249994,0,0);}
.m35_c00056{transform:matrix(0.154312,0.000926,-0.001500,0.249996,0,0);-ms-transform:matrix(0.154312,0.000926,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.154312,0.000926,-0.001500,0.249996,0,0);}
.m7f_c00056{transform:matrix(0.154640,0.001237,-0.002000,0.249992,0,0);-ms-transform:matrix(0.154640,0.001237,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.154640,0.001237,-0.002000,0.249992,0,0);}
.mb6_c00056{transform:matrix(0.154762,0.000929,-0.001500,0.249996,0,0);-ms-transform:matrix(0.154762,0.000929,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.154762,0.000929,-0.001500,0.249996,0,0);}
.m77_c00056{transform:matrix(0.156131,0.001093,-0.001750,0.249994,0,0);-ms-transform:matrix(0.156131,0.001093,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.156131,0.001093,-0.001750,0.249994,0,0);}
.m9d_c00056{transform:matrix(0.158397,0.000950,-0.001500,0.249996,0,0);-ms-transform:matrix(0.158397,0.000950,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.158397,0.000950,-0.001500,0.249996,0,0);}
.m58_c00056{transform:matrix(0.163202,0.001632,-0.002500,0.249988,0,0);-ms-transform:matrix(0.163202,0.001632,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.163202,0.001632,-0.002500,0.249988,0,0);}
.mab_c00056{transform:matrix(0.163721,0.001146,-0.001750,0.249994,0,0);-ms-transform:matrix(0.163721,0.001146,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.163721,0.001146,-0.001750,0.249994,0,0);}
.m57_c00056{transform:matrix(0.164377,0.001644,-0.002500,0.249988,0,0);-ms-transform:matrix(0.164377,0.001644,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.164377,0.001644,-0.002500,0.249988,0,0);}
.md9_c00056{transform:matrix(0.165112,0.000991,-0.001500,0.249996,0,0);-ms-transform:matrix(0.165112,0.000991,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.165112,0.000991,-0.001500,0.249996,0,0);}
.m5d_c00056{transform:matrix(0.165337,0.001653,-0.002500,0.249988,0,0);-ms-transform:matrix(0.165337,0.001653,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.165337,0.001653,-0.002500,0.249988,0,0);}
.m11_c00056{transform:matrix(0.165807,0.000995,-0.001500,0.249996,0,0);-ms-transform:matrix(0.165807,0.000995,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.165807,0.000995,-0.001500,0.249996,0,0);}
.m66_c00056{transform:matrix(0.167421,0.001172,-0.001750,0.249994,0,0);-ms-transform:matrix(0.167421,0.001172,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.167421,0.001172,-0.001750,0.249994,0,0);}
.mda_c00056{transform:matrix(0.167787,0.001007,-0.001500,0.249996,0,0);-ms-transform:matrix(0.167787,0.001007,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.167787,0.001007,-0.001500,0.249996,0,0);}
.m176_c00056{transform:matrix(0.169767,0.001019,-0.001500,0.249996,0,0);-ms-transform:matrix(0.169767,0.001019,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.169767,0.001019,-0.001500,0.249996,0,0);}
.mde_c00056{transform:matrix(0.171642,0.001030,-0.001500,0.249996,0,0);-ms-transform:matrix(0.171642,0.001030,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.171642,0.001030,-0.001500,0.249996,0,0);}
.m17a_c00056{transform:matrix(0.172207,0.001033,-0.001500,0.249996,0,0);-ms-transform:matrix(0.172207,0.001033,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.172207,0.001033,-0.001500,0.249996,0,0);}
.m85_c00056{transform:matrix(0.172729,0.001382,-0.002000,0.249992,0,0);-ms-transform:matrix(0.172729,0.001382,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.172729,0.001382,-0.002000,0.249992,0,0);}
.m2_c00056{transform:matrix(0.173150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173150,0.000000,0.000000,0.250000,0,0);}
.m1b3_c00056{transform:matrix(0.173233,0.000866,-0.001250,0.249997,0,0);-ms-transform:matrix(0.173233,0.000866,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.173233,0.000866,-0.001250,0.249997,0,0);}
.m64_c00056{transform:matrix(0.174236,0.001220,-0.001750,0.249994,0,0);-ms-transform:matrix(0.174236,0.001220,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.174236,0.001220,-0.001750,0.249994,0,0);}
.m92_c00056{transform:matrix(0.175224,0.001402,-0.002000,0.249992,0,0);-ms-transform:matrix(0.175224,0.001402,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.175224,0.001402,-0.002000,0.249992,0,0);}
.mac_c00056{transform:matrix(0.176136,0.001233,-0.001750,0.249994,0,0);-ms-transform:matrix(0.176136,0.001233,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.176136,0.001233,-0.001750,0.249994,0,0);}
.mf_c00056{transform:matrix(0.177097,0.001063,-0.001500,0.249996,0,0);-ms-transform:matrix(0.177097,0.001063,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.177097,0.001063,-0.001500,0.249996,0,0);}
.m177_c00056{transform:matrix(0.177367,0.001064,-0.001500,0.249996,0,0);-ms-transform:matrix(0.177367,0.001064,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.177367,0.001064,-0.001500,0.249996,0,0);}
.m178_c00056{transform:matrix(0.177542,0.001065,-0.001500,0.249996,0,0);-ms-transform:matrix(0.177542,0.001065,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.177542,0.001065,-0.001500,0.249996,0,0);}
.m51_c00056{transform:matrix(0.177582,0.001065,-0.001500,0.249996,0,0);-ms-transform:matrix(0.177582,0.001065,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.177582,0.001065,-0.001500,0.249996,0,0);}
.m6a_c00056{transform:matrix(0.178276,0.001248,-0.001750,0.249994,0,0);-ms-transform:matrix(0.178276,0.001248,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.178276,0.001248,-0.001750,0.249994,0,0);}
.m184_c00056{transform:matrix(0.178752,0.001073,-0.001500,0.249996,0,0);-ms-transform:matrix(0.178752,0.001073,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.178752,0.001073,-0.001500,0.249996,0,0);}
.m79_c00056{transform:matrix(0.179626,0.001257,-0.001750,0.249994,0,0);-ms-transform:matrix(0.179626,0.001257,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.179626,0.001257,-0.001750,0.249994,0,0);}
.m37_c00056{transform:matrix(0.179627,0.001078,-0.001500,0.249996,0,0);-ms-transform:matrix(0.179627,0.001078,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.179627,0.001078,-0.001500,0.249996,0,0);}
.m116_c00056{transform:matrix(0.180387,0.001082,-0.001500,0.249996,0,0);-ms-transform:matrix(0.180387,0.001082,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.180387,0.001082,-0.001500,0.249996,0,0);}
.mc5_c00056{transform:matrix(0.180392,0.001082,-0.001500,0.249996,0,0);-ms-transform:matrix(0.180392,0.001082,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.180392,0.001082,-0.001500,0.249996,0,0);}
.m175_c00056{transform:matrix(0.180397,0.001082,-0.001500,0.249996,0,0);-ms-transform:matrix(0.180397,0.001082,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.180397,0.001082,-0.001500,0.249996,0,0);}
.mb8_c00056{transform:matrix(0.181397,0.001088,-0.001500,0.249996,0,0);-ms-transform:matrix(0.181397,0.001088,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.181397,0.001088,-0.001500,0.249996,0,0);}
.mc_c00056{transform:matrix(0.181400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181400,0.000000,0.000000,0.250000,0,0);}
.m44_c00056{transform:matrix(0.181726,0.001272,-0.001750,0.249994,0,0);-ms-transform:matrix(0.181726,0.001272,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.181726,0.001272,-0.001750,0.249994,0,0);}
.m55_c00056{transform:matrix(0.182136,0.001821,-0.002500,0.249988,0,0);-ms-transform:matrix(0.182136,0.001821,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.182136,0.001821,-0.002500,0.249988,0,0);}
.m12a_c00056{transform:matrix(0.182982,0.001098,-0.001500,0.249996,0,0);-ms-transform:matrix(0.182982,0.001098,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.182982,0.001098,-0.001500,0.249996,0,0);}
.mfa_c00056{transform:matrix(0.183132,0.001099,-0.001500,0.249996,0,0);-ms-transform:matrix(0.183132,0.001099,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.183132,0.001099,-0.001500,0.249996,0,0);}
.m1b8_c00056{transform:matrix(0.184025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184025,0.000000,0.000000,0.250000,0,0);}
.m14c_c00056{transform:matrix(0.184292,0.001106,-0.001500,0.249996,0,0);-ms-transform:matrix(0.184292,0.001106,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.184292,0.001106,-0.001500,0.249996,0,0);}
.m41_c00056{transform:matrix(0.184540,0.001292,-0.001750,0.249994,0,0);-ms-transform:matrix(0.184540,0.001292,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.184540,0.001292,-0.001750,0.249994,0,0);}
.m1f_c00056{transform:matrix(0.184662,0.001108,-0.001500,0.249996,0,0);-ms-transform:matrix(0.184662,0.001108,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.184662,0.001108,-0.001500,0.249996,0,0);}
.mdb_c00056{transform:matrix(0.184962,0.001110,-0.001500,0.249996,0,0);-ms-transform:matrix(0.184962,0.001110,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.184962,0.001110,-0.001500,0.249996,0,0);}
.ma5_c00056{transform:matrix(0.185115,0.001296,-0.001750,0.249994,0,0);-ms-transform:matrix(0.185115,0.001296,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.185115,0.001296,-0.001750,0.249994,0,0);}
.m183_c00056{transform:matrix(0.185757,0.001115,-0.001500,0.249996,0,0);-ms-transform:matrix(0.185757,0.001115,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.185757,0.001115,-0.001500,0.249996,0,0);}
.m53_c00056{transform:matrix(0.185772,0.001115,-0.001500,0.249996,0,0);-ms-transform:matrix(0.185772,0.001115,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.185772,0.001115,-0.001500,0.249996,0,0);}
.m193_c00056{transform:matrix(0.186007,0.001116,-0.001500,0.249996,0,0);-ms-transform:matrix(0.186007,0.001116,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.186007,0.001116,-0.001500,0.249996,0,0);}
.m9b_c00056{transform:matrix(0.186132,0.001117,-0.001500,0.249996,0,0);-ms-transform:matrix(0.186132,0.001117,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.186132,0.001117,-0.001500,0.249996,0,0);}
.ma6_c00056{transform:matrix(0.186180,0.001303,-0.001750,0.249994,0,0);-ms-transform:matrix(0.186180,0.001303,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.186180,0.001303,-0.001750,0.249994,0,0);}
.ma8_c00056{transform:matrix(0.186295,0.001304,-0.001750,0.249994,0,0);-ms-transform:matrix(0.186295,0.001304,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.186295,0.001304,-0.001750,0.249994,0,0);}
.m127_c00056{transform:matrix(0.186517,0.001119,-0.001500,0.249996,0,0);-ms-transform:matrix(0.186517,0.001119,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.186517,0.001119,-0.001500,0.249996,0,0);}
.mae_c00056{transform:matrix(0.186575,0.001306,-0.001750,0.249994,0,0);-ms-transform:matrix(0.186575,0.001306,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.186575,0.001306,-0.001750,0.249994,0,0);}
.m7a_c00056{transform:matrix(0.186750,0.001307,-0.001750,0.249994,0,0);-ms-transform:matrix(0.186750,0.001307,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.186750,0.001307,-0.001750,0.249994,0,0);}
.m15e_c00056{transform:matrix(0.187317,0.001124,-0.001500,0.249996,0,0);-ms-transform:matrix(0.187317,0.001124,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.187317,0.001124,-0.001500,0.249996,0,0);}
.m109_c00056{transform:matrix(0.188282,0.001130,-0.001500,0.249996,0,0);-ms-transform:matrix(0.188282,0.001130,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.188282,0.001130,-0.001500,0.249996,0,0);}
.m12b_c00056{transform:matrix(0.188432,0.001131,-0.001500,0.249996,0,0);-ms-transform:matrix(0.188432,0.001131,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.188432,0.001131,-0.001500,0.249996,0,0);}
.m3d_c00056{transform:matrix(0.188547,0.001131,-0.001500,0.249996,0,0);-ms-transform:matrix(0.188547,0.001131,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.188547,0.001131,-0.001500,0.249996,0,0);}
.m169_c00056{transform:matrix(0.189067,0.001134,-0.001500,0.249996,0,0);-ms-transform:matrix(0.189067,0.001134,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.189067,0.001134,-0.001500,0.249996,0,0);}
.mb9_c00056{transform:matrix(0.189387,0.001136,-0.001500,0.249996,0,0);-ms-transform:matrix(0.189387,0.001136,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.189387,0.001136,-0.001500,0.249996,0,0);}
.mc6_c00056{transform:matrix(0.190267,0.001142,-0.001500,0.249996,0,0);-ms-transform:matrix(0.190267,0.001142,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.190267,0.001142,-0.001500,0.249996,0,0);}
.m48_c00056{transform:matrix(0.190397,0.001142,-0.001500,0.249996,0,0);-ms-transform:matrix(0.190397,0.001142,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.190397,0.001142,-0.001500,0.249996,0,0);}
.m4d_c00056{transform:matrix(0.190907,0.001145,-0.001500,0.249996,0,0);-ms-transform:matrix(0.190907,0.001145,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.190907,0.001145,-0.001500,0.249996,0,0);}
.m10c_c00056{transform:matrix(0.190987,0.001146,-0.001500,0.249996,0,0);-ms-transform:matrix(0.190987,0.001146,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.190987,0.001146,-0.001500,0.249996,0,0);}
.md8_c00056{transform:matrix(0.191067,0.001146,-0.001500,0.249996,0,0);-ms-transform:matrix(0.191067,0.001146,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.191067,0.001146,-0.001500,0.249996,0,0);}
.m1a4_c00056{transform:matrix(0.191083,0.000955,-0.001250,0.249997,0,0);-ms-transform:matrix(0.191083,0.000955,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.191083,0.000955,-0.001250,0.249997,0,0);}
.m17c_c00056{transform:matrix(0.191192,0.001147,-0.001500,0.249996,0,0);-ms-transform:matrix(0.191192,0.001147,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.191192,0.001147,-0.001500,0.249996,0,0);}
.mf5_c00056{transform:matrix(0.191212,0.001147,-0.001500,0.249996,0,0);-ms-transform:matrix(0.191212,0.001147,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.191212,0.001147,-0.001500,0.249996,0,0);}
.m3f_c00056{transform:matrix(0.191245,0.001339,-0.001750,0.249994,0,0);-ms-transform:matrix(0.191245,0.001339,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.191245,0.001339,-0.001750,0.249994,0,0);}
.m1a2_c00056{transform:matrix(0.191517,0.001149,-0.001500,0.249996,0,0);-ms-transform:matrix(0.191517,0.001149,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.191517,0.001149,-0.001500,0.249996,0,0);}
.m111_c00056{transform:matrix(0.191652,0.001150,-0.001500,0.249996,0,0);-ms-transform:matrix(0.191652,0.001150,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.191652,0.001150,-0.001500,0.249996,0,0);}
.m18_c00056{transform:matrix(0.191712,0.001150,-0.001500,0.249996,0,0);-ms-transform:matrix(0.191712,0.001150,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.191712,0.001150,-0.001500,0.249996,0,0);}
.maf_c00056{transform:matrix(0.191975,0.001344,-0.001750,0.249994,0,0);-ms-transform:matrix(0.191975,0.001344,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.191975,0.001344,-0.001750,0.249994,0,0);}
.m9f_c00056{transform:matrix(0.192152,0.001153,-0.001500,0.249996,0,0);-ms-transform:matrix(0.192152,0.001153,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.192152,0.001153,-0.001500,0.249996,0,0);}
.m31_c00056{transform:matrix(0.192557,0.001155,-0.001500,0.249996,0,0);-ms-transform:matrix(0.192557,0.001155,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.192557,0.001155,-0.001500,0.249996,0,0);}
.maa_c00056{transform:matrix(0.192615,0.001348,-0.001750,0.249994,0,0);-ms-transform:matrix(0.192615,0.001348,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.192615,0.001348,-0.001750,0.249994,0,0);}
.m147_c00056{transform:matrix(0.192937,0.001158,-0.001500,0.249996,0,0);-ms-transform:matrix(0.192937,0.001158,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.192937,0.001158,-0.001500,0.249996,0,0);}
.m1a5_c00056{transform:matrix(0.192938,0.000965,-0.001250,0.249997,0,0);-ms-transform:matrix(0.192938,0.000965,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.192938,0.000965,-0.001250,0.249997,0,0);}
.m13c_c00056{transform:matrix(0.193587,0.001162,-0.001500,0.249996,0,0);-ms-transform:matrix(0.193587,0.001162,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.193587,0.001162,-0.001500,0.249996,0,0);}
.m11e_c00056{transform:matrix(0.193732,0.001162,-0.001500,0.249996,0,0);-ms-transform:matrix(0.193732,0.001162,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.193732,0.001162,-0.001500,0.249996,0,0);}
.m131_c00056{transform:matrix(0.194022,0.001164,-0.001500,0.249996,0,0);-ms-transform:matrix(0.194022,0.001164,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.194022,0.001164,-0.001500,0.249996,0,0);}
.mf6_c00056{transform:matrix(0.194197,0.001165,-0.001500,0.249996,0,0);-ms-transform:matrix(0.194197,0.001165,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.194197,0.001165,-0.001500,0.249996,0,0);}
.md6_c00056{transform:matrix(0.194347,0.001166,-0.001500,0.249996,0,0);-ms-transform:matrix(0.194347,0.001166,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.194347,0.001166,-0.001500,0.249996,0,0);}
.m87_c00056{transform:matrix(0.194514,0.001556,-0.002000,0.249992,0,0);-ms-transform:matrix(0.194514,0.001556,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.194514,0.001556,-0.002000,0.249992,0,0);}
.m45_c00056{transform:matrix(0.194530,0.001362,-0.001750,0.249994,0,0);-ms-transform:matrix(0.194530,0.001362,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.194530,0.001362,-0.001750,0.249994,0,0);}
.m191_c00056{transform:matrix(0.194886,0.001169,-0.001500,0.249996,0,0);-ms-transform:matrix(0.194886,0.001169,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.194886,0.001169,-0.001500,0.249996,0,0);}
.m1be_c00056{transform:matrix(0.195135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195135,0.000000,0.000000,0.250000,0,0);}
.m1bb_c00056{transform:matrix(0.195150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195150,0.000000,0.000000,0.250000,0,0);}
.m4f_c00056{transform:matrix(0.195316,0.001172,-0.001500,0.249996,0,0);-ms-transform:matrix(0.195316,0.001172,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.195316,0.001172,-0.001500,0.249996,0,0);}
.m11a_c00056{transform:matrix(0.195486,0.001173,-0.001500,0.249996,0,0);-ms-transform:matrix(0.195486,0.001173,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.195486,0.001173,-0.001500,0.249996,0,0);}
.m155_c00056{transform:matrix(0.195751,0.001175,-0.001500,0.249996,0,0);-ms-transform:matrix(0.195751,0.001175,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.195751,0.001175,-0.001500,0.249996,0,0);}
.m112_c00056{transform:matrix(0.196506,0.001179,-0.001500,0.249996,0,0);-ms-transform:matrix(0.196506,0.001179,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.196506,0.001179,-0.001500,0.249996,0,0);}
.m18d_c00056{transform:matrix(0.196791,0.001181,-0.001500,0.249996,0,0);-ms-transform:matrix(0.196791,0.001181,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.196791,0.001181,-0.001500,0.249996,0,0);}
.m143_c00056{transform:matrix(0.197341,0.001184,-0.001500,0.249996,0,0);-ms-transform:matrix(0.197341,0.001184,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.197341,0.001184,-0.001500,0.249996,0,0);}
.ma3_c00056{transform:matrix(0.197541,0.001185,-0.001500,0.249996,0,0);-ms-transform:matrix(0.197541,0.001185,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.197541,0.001185,-0.001500,0.249996,0,0);}
.m123_c00056{transform:matrix(0.197791,0.001187,-0.001500,0.249996,0,0);-ms-transform:matrix(0.197791,0.001187,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.197791,0.001187,-0.001500,0.249996,0,0);}
.m149_c00056{transform:matrix(0.198161,0.001189,-0.001500,0.249996,0,0);-ms-transform:matrix(0.198161,0.001189,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.198161,0.001189,-0.001500,0.249996,0,0);}
.md1_c00056{transform:matrix(0.198431,0.001191,-0.001500,0.249996,0,0);-ms-transform:matrix(0.198431,0.001191,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.198431,0.001191,-0.001500,0.249996,0,0);}
.m125_c00056{transform:matrix(0.198651,0.001192,-0.001500,0.249996,0,0);-ms-transform:matrix(0.198651,0.001192,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.198651,0.001192,-0.001500,0.249996,0,0);}
.m10e_c00056{transform:matrix(0.198781,0.001193,-0.001500,0.249996,0,0);-ms-transform:matrix(0.198781,0.001193,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.198781,0.001193,-0.001500,0.249996,0,0);}
.m196_c00056{transform:matrix(0.198886,0.001193,-0.001500,0.249996,0,0);-ms-transform:matrix(0.198886,0.001193,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.198886,0.001193,-0.001500,0.249996,0,0);}
.m120_c00056{transform:matrix(0.199031,0.001194,-0.001500,0.249996,0,0);-ms-transform:matrix(0.199031,0.001194,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.199031,0.001194,-0.001500,0.249996,0,0);}
.mfb_c00056{transform:matrix(0.199206,0.001195,-0.001500,0.249996,0,0);-ms-transform:matrix(0.199206,0.001195,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.199206,0.001195,-0.001500,0.249996,0,0);}
.m5f_c00056{transform:matrix(0.199270,0.001395,-0.001750,0.249994,0,0);-ms-transform:matrix(0.199270,0.001395,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.199270,0.001395,-0.001750,0.249994,0,0);}
.m150_c00056{transform:matrix(0.199311,0.001196,-0.001500,0.249996,0,0);-ms-transform:matrix(0.199311,0.001196,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.199311,0.001196,-0.001500,0.249996,0,0);}
.mc7_c00056{transform:matrix(0.199741,0.001198,-0.001500,0.249996,0,0);-ms-transform:matrix(0.199741,0.001198,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.199741,0.001198,-0.001500,0.249996,0,0);}
.m198_c00056{transform:matrix(0.199911,0.001199,-0.001500,0.249996,0,0);-ms-transform:matrix(0.199911,0.001199,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.199911,0.001199,-0.001500,0.249996,0,0);}
.m3e_c00056{transform:matrix(0.200385,0.001403,-0.001750,0.249994,0,0);-ms-transform:matrix(0.200385,0.001403,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.200385,0.001403,-0.001750,0.249994,0,0);}
.m59_c00056{transform:matrix(0.200425,0.002004,-0.002500,0.249988,0,0);-ms-transform:matrix(0.200425,0.002004,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.200425,0.002004,-0.002500,0.249988,0,0);}
.m34_c00056{transform:matrix(0.200616,0.001204,-0.001500,0.249996,0,0);-ms-transform:matrix(0.200616,0.001204,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.200616,0.001204,-0.001500,0.249996,0,0);}
.m180_c00056{transform:matrix(0.200806,0.001205,-0.001500,0.249996,0,0);-ms-transform:matrix(0.200806,0.001205,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.200806,0.001205,-0.001500,0.249996,0,0);}
.m99_c00056{transform:matrix(0.200826,0.001205,-0.001500,0.249996,0,0);-ms-transform:matrix(0.200826,0.001205,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.200826,0.001205,-0.001500,0.249996,0,0);}
.m1bd_c00056{transform:matrix(0.201110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201110,0.000000,0.000000,0.250000,0,0);}
.m75_c00056{transform:matrix(0.201315,0.001409,-0.001750,0.249994,0,0);-ms-transform:matrix(0.201315,0.001409,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.201315,0.001409,-0.001750,0.249994,0,0);}
.m4b_c00056{transform:matrix(0.201411,0.001208,-0.001500,0.249996,0,0);-ms-transform:matrix(0.201411,0.001208,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.201411,0.001208,-0.001500,0.249996,0,0);}
.m188_c00056{transform:matrix(0.201416,0.001208,-0.001500,0.249996,0,0);-ms-transform:matrix(0.201416,0.001208,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.201416,0.001208,-0.001500,0.249996,0,0);}
.m94_c00056{transform:matrix(0.201494,0.001612,-0.002000,0.249992,0,0);-ms-transform:matrix(0.201494,0.001612,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.201494,0.001612,-0.002000,0.249992,0,0);}
.m11c_c00056{transform:matrix(0.201636,0.001210,-0.001500,0.249996,0,0);-ms-transform:matrix(0.201636,0.001210,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.201636,0.001210,-0.001500,0.249996,0,0);}
.m6c_c00056{transform:matrix(0.201885,0.001413,-0.001750,0.249994,0,0);-ms-transform:matrix(0.201885,0.001413,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.201885,0.001413,-0.001750,0.249994,0,0);}
.m1af_c00056{transform:matrix(0.202072,0.001010,-0.001250,0.249997,0,0);-ms-transform:matrix(0.202072,0.001010,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.202072,0.001010,-0.001250,0.249997,0,0);}
.mb0_c00056{transform:matrix(0.202450,0.001417,-0.001750,0.249994,0,0);-ms-transform:matrix(0.202450,0.001417,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.202450,0.001417,-0.001750,0.249994,0,0);}
.ma7_c00056{transform:matrix(0.202540,0.001418,-0.001750,0.249994,0,0);-ms-transform:matrix(0.202540,0.001418,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.202540,0.001418,-0.001750,0.249994,0,0);}
.m182_c00056{transform:matrix(0.202671,0.001216,-0.001500,0.249996,0,0);-ms-transform:matrix(0.202671,0.001216,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.202671,0.001216,-0.001500,0.249996,0,0);}
.mff_c00056{transform:matrix(0.202691,0.001216,-0.001500,0.249996,0,0);-ms-transform:matrix(0.202691,0.001216,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.202691,0.001216,-0.001500,0.249996,0,0);}
.m10f_c00056{transform:matrix(0.202946,0.001218,-0.001500,0.249996,0,0);-ms-transform:matrix(0.202946,0.001218,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.202946,0.001218,-0.001500,0.249996,0,0);}
.m73_c00056{transform:matrix(0.203105,0.001422,-0.001750,0.249994,0,0);-ms-transform:matrix(0.203105,0.001422,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.203105,0.001422,-0.001750,0.249994,0,0);}
.m6b_c00056{transform:matrix(0.203455,0.001424,-0.001750,0.249994,0,0);-ms-transform:matrix(0.203455,0.001424,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.203455,0.001424,-0.001750,0.249994,0,0);}
.md2_c00056{transform:matrix(0.203496,0.001221,-0.001500,0.249996,0,0);-ms-transform:matrix(0.203496,0.001221,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.203496,0.001221,-0.001500,0.249996,0,0);}
.ma4_c00056{transform:matrix(0.203536,0.001221,-0.001500,0.249996,0,0);-ms-transform:matrix(0.203536,0.001221,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.203536,0.001221,-0.001500,0.249996,0,0);}
.m7c_c00056{transform:matrix(0.203540,0.001425,-0.001750,0.249994,0,0);-ms-transform:matrix(0.203540,0.001425,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.203540,0.001425,-0.001750,0.249994,0,0);}
.ma1_c00056{transform:matrix(0.203541,0.001221,-0.001500,0.249996,0,0);-ms-transform:matrix(0.203541,0.001221,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.203541,0.001221,-0.001500,0.249996,0,0);}
.m3b_c00056{transform:matrix(0.203596,0.001222,-0.001500,0.249996,0,0);-ms-transform:matrix(0.203596,0.001222,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.203596,0.001222,-0.001500,0.249996,0,0);}
.mea_c00056{transform:matrix(0.204071,0.001224,-0.001500,0.249996,0,0);-ms-transform:matrix(0.204071,0.001224,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.204071,0.001224,-0.001500,0.249996,0,0);}
.mc4_c00056{transform:matrix(0.204166,0.001225,-0.001500,0.249996,0,0);-ms-transform:matrix(0.204166,0.001225,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.204166,0.001225,-0.001500,0.249996,0,0);}
.m33_c00056{transform:matrix(0.204231,0.001225,-0.001500,0.249996,0,0);-ms-transform:matrix(0.204231,0.001225,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.204231,0.001225,-0.001500,0.249996,0,0);}
.m133_c00056{transform:matrix(0.204246,0.001225,-0.001500,0.249996,0,0);-ms-transform:matrix(0.204246,0.001225,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.204246,0.001225,-0.001500,0.249996,0,0);}
.mc1_c00056{transform:matrix(0.204256,0.001226,-0.001500,0.249996,0,0);-ms-transform:matrix(0.204256,0.001226,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.204256,0.001226,-0.001500,0.249996,0,0);}
.m76_c00056{transform:matrix(0.204670,0.001433,-0.001750,0.249994,0,0);-ms-transform:matrix(0.204670,0.001433,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.204670,0.001433,-0.001750,0.249994,0,0);}
.m118_c00056{transform:matrix(0.204746,0.001228,-0.001500,0.249996,0,0);-ms-transform:matrix(0.204746,0.001228,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.204746,0.001228,-0.001500,0.249996,0,0);}
.mb5_c00056{transform:matrix(0.204926,0.001230,-0.001500,0.249996,0,0);-ms-transform:matrix(0.204926,0.001230,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.204926,0.001230,-0.001500,0.249996,0,0);}
.m9e_c00056{transform:matrix(0.204951,0.001230,-0.001500,0.249996,0,0);-ms-transform:matrix(0.204951,0.001230,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.204951,0.001230,-0.001500,0.249996,0,0);}
.mbd_c00056{transform:matrix(0.204956,0.001230,-0.001500,0.249996,0,0);-ms-transform:matrix(0.204956,0.001230,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.204956,0.001230,-0.001500,0.249996,0,0);}
.m136_c00056{transform:matrix(0.205156,0.001231,-0.001500,0.249996,0,0);-ms-transform:matrix(0.205156,0.001231,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.205156,0.001231,-0.001500,0.249996,0,0);}
.m1bc_c00056{transform:matrix(0.205270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205270,0.000000,0.000000,0.250000,0,0);}
.m21_c00056{transform:matrix(0.205426,0.001233,-0.001500,0.249996,0,0);-ms-transform:matrix(0.205426,0.001233,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.205426,0.001233,-0.001500,0.249996,0,0);}
.m14d_c00056{transform:matrix(0.205661,0.001234,-0.001500,0.249996,0,0);-ms-transform:matrix(0.205661,0.001234,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.205661,0.001234,-0.001500,0.249996,0,0);}
.m4a_c00056{transform:matrix(0.205776,0.001235,-0.001500,0.249996,0,0);-ms-transform:matrix(0.205776,0.001235,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.205776,0.001235,-0.001500,0.249996,0,0);}
.m9c_c00056{transform:matrix(0.205851,0.001235,-0.001500,0.249996,0,0);-ms-transform:matrix(0.205851,0.001235,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.205851,0.001235,-0.001500,0.249996,0,0);}
.m18c_c00056{transform:matrix(0.206281,0.001238,-0.001500,0.249996,0,0);-ms-transform:matrix(0.206281,0.001238,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.206281,0.001238,-0.001500,0.249996,0,0);}
.me0_c00056{transform:matrix(0.207211,0.001243,-0.001500,0.249996,0,0);-ms-transform:matrix(0.207211,0.001243,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.207211,0.001243,-0.001500,0.249996,0,0);}
.m3a_c00056{transform:matrix(0.207341,0.001244,-0.001500,0.249996,0,0);-ms-transform:matrix(0.207341,0.001244,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.207341,0.001244,-0.001500,0.249996,0,0);}
.m171_c00056{transform:matrix(0.207626,0.001246,-0.001500,0.249996,0,0);-ms-transform:matrix(0.207626,0.001246,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.207626,0.001246,-0.001500,0.249996,0,0);}
.m1a9_c00056{transform:matrix(0.207627,0.001038,-0.001250,0.249997,0,0);-ms-transform:matrix(0.207627,0.001038,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.207627,0.001038,-0.001250,0.249997,0,0);}
.m18f_c00056{transform:matrix(0.208011,0.001248,-0.001500,0.249996,0,0);-ms-transform:matrix(0.208011,0.001248,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.208011,0.001248,-0.001500,0.249996,0,0);}
.m50_c00056{transform:matrix(0.208021,0.001248,-0.001500,0.249996,0,0);-ms-transform:matrix(0.208021,0.001248,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.208021,0.001248,-0.001500,0.249996,0,0);}
.m88_c00056{transform:matrix(0.208323,0.001667,-0.002000,0.249992,0,0);-ms-transform:matrix(0.208323,0.001667,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.208323,0.001667,-0.002000,0.249992,0,0);}
.m15c_c00056{transform:matrix(0.208386,0.001250,-0.001500,0.249996,0,0);-ms-transform:matrix(0.208386,0.001250,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.208386,0.001250,-0.001500,0.249996,0,0);}
.m13f_c00056{transform:matrix(0.208806,0.001253,-0.001500,0.249996,0,0);-ms-transform:matrix(0.208806,0.001253,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.208806,0.001253,-0.001500,0.249996,0,0);}
.m14_c00056{transform:matrix(0.208901,0.001253,-0.001500,0.249996,0,0);-ms-transform:matrix(0.208901,0.001253,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.208901,0.001253,-0.001500,0.249996,0,0);}
.m140_c00056{transform:matrix(0.209256,0.001256,-0.001500,0.249996,0,0);-ms-transform:matrix(0.209256,0.001256,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.209256,0.001256,-0.001500,0.249996,0,0);}
.mad_c00056{transform:matrix(0.209570,0.001467,-0.001750,0.249994,0,0);-ms-transform:matrix(0.209570,0.001467,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.209570,0.001467,-0.001750,0.249994,0,0);}
.m7e_c00056{transform:matrix(0.209775,0.001468,-0.001750,0.249994,0,0);-ms-transform:matrix(0.209775,0.001468,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.209775,0.001468,-0.001750,0.249994,0,0);}
.mb7_c00056{transform:matrix(0.210126,0.001261,-0.001500,0.249996,0,0);-ms-transform:matrix(0.210126,0.001261,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.210126,0.001261,-0.001500,0.249996,0,0);}
.m52_c00056{transform:matrix(0.210401,0.001262,-0.001500,0.249996,0,0);-ms-transform:matrix(0.210401,0.001262,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.210401,0.001262,-0.001500,0.249996,0,0);}
.m1a_c00056{transform:matrix(0.210451,0.001263,-0.001500,0.249996,0,0);-ms-transform:matrix(0.210451,0.001263,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.210451,0.001263,-0.001500,0.249996,0,0);}
.m4c_c00056{transform:matrix(0.210681,0.001264,-0.001500,0.249996,0,0);-ms-transform:matrix(0.210681,0.001264,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.210681,0.001264,-0.001500,0.249996,0,0);}
.m179_c00056{transform:matrix(0.210816,0.001265,-0.001500,0.249996,0,0);-ms-transform:matrix(0.210816,0.001265,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.210816,0.001265,-0.001500,0.249996,0,0);}
.m12c_c00056{transform:matrix(0.210991,0.001266,-0.001500,0.249996,0,0);-ms-transform:matrix(0.210991,0.001266,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.210991,0.001266,-0.001500,0.249996,0,0);}
.ma2_c00056{transform:matrix(0.211051,0.001266,-0.001500,0.249996,0,0);-ms-transform:matrix(0.211051,0.001266,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.211051,0.001266,-0.001500,0.249996,0,0);}
.m2f_c00056{transform:matrix(0.211217,0.001056,-0.001250,0.249997,0,0);-ms-transform:matrix(0.211217,0.001056,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.211217,0.001056,-0.001250,0.249997,0,0);}
.mbe_c00056{transform:matrix(0.211266,0.001268,-0.001500,0.249996,0,0);-ms-transform:matrix(0.211266,0.001268,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.211266,0.001268,-0.001500,0.249996,0,0);}
.m23_c00056{transform:matrix(0.211316,0.001268,-0.001500,0.249996,0,0);-ms-transform:matrix(0.211316,0.001268,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.211316,0.001268,-0.001500,0.249996,0,0);}
.m137_c00056{transform:matrix(0.211496,0.001269,-0.001500,0.249996,0,0);-ms-transform:matrix(0.211496,0.001269,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.211496,0.001269,-0.001500,0.249996,0,0);}
.m3c_c00056{transform:matrix(0.211601,0.001270,-0.001500,0.249996,0,0);-ms-transform:matrix(0.211601,0.001270,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.211601,0.001270,-0.001500,0.249996,0,0);}
.m36_c00056{transform:matrix(0.211671,0.001270,-0.001500,0.249996,0,0);-ms-transform:matrix(0.211671,0.001270,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.211671,0.001270,-0.001500,0.249996,0,0);}
.m167_c00056{transform:matrix(0.212286,0.001274,-0.001500,0.249996,0,0);-ms-transform:matrix(0.212286,0.001274,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.212286,0.001274,-0.001500,0.249996,0,0);}
.mdc_c00056{transform:matrix(0.212456,0.001275,-0.001500,0.249996,0,0);-ms-transform:matrix(0.212456,0.001275,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.212456,0.001275,-0.001500,0.249996,0,0);}
.m15f_c00056{transform:matrix(0.212596,0.001276,-0.001500,0.249996,0,0);-ms-transform:matrix(0.212596,0.001276,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.212596,0.001276,-0.001500,0.249996,0,0);}
.m1b_c00056{transform:matrix(0.212806,0.001277,-0.001500,0.249996,0,0);-ms-transform:matrix(0.212806,0.001277,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.212806,0.001277,-0.001500,0.249996,0,0);}
.m13d_c00056{transform:matrix(0.212971,0.001278,-0.001500,0.249996,0,0);-ms-transform:matrix(0.212971,0.001278,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.212971,0.001278,-0.001500,0.249996,0,0);}
.me1_c00056{transform:matrix(0.213191,0.001279,-0.001500,0.249996,0,0);-ms-transform:matrix(0.213191,0.001279,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.213191,0.001279,-0.001500,0.249996,0,0);}
.mc2_c00056{transform:matrix(0.213216,0.001279,-0.001500,0.249996,0,0);-ms-transform:matrix(0.213216,0.001279,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.213216,0.001279,-0.001500,0.249996,0,0);}
.m154_c00056{transform:matrix(0.213911,0.001283,-0.001500,0.249996,0,0);-ms-transform:matrix(0.213911,0.001283,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.213911,0.001283,-0.001500,0.249996,0,0);}
.mc3_c00056{transform:matrix(0.214136,0.001285,-0.001500,0.249996,0,0);-ms-transform:matrix(0.214136,0.001285,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.214136,0.001285,-0.001500,0.249996,0,0);}
.m83_c00056{transform:matrix(0.214193,0.001714,-0.002000,0.249992,0,0);-ms-transform:matrix(0.214193,0.001714,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.214193,0.001714,-0.002000,0.249992,0,0);}
.mf0_c00056{transform:matrix(0.214361,0.001286,-0.001500,0.249996,0,0);-ms-transform:matrix(0.214361,0.001286,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.214361,0.001286,-0.001500,0.249996,0,0);}
.m17b_c00056{transform:matrix(0.214486,0.001287,-0.001500,0.249996,0,0);-ms-transform:matrix(0.214486,0.001287,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.214486,0.001287,-0.001500,0.249996,0,0);}
.m1a8_c00056{transform:matrix(0.214667,0.001073,-0.001250,0.249997,0,0);-ms-transform:matrix(0.214667,0.001073,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.214667,0.001073,-0.001250,0.249997,0,0);}
.m10a_c00056{transform:matrix(0.214871,0.001289,-0.001500,0.249996,0,0);-ms-transform:matrix(0.214871,0.001289,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.214871,0.001289,-0.001500,0.249996,0,0);}
.m152_c00056{transform:matrix(0.215091,0.001291,-0.001500,0.249996,0,0);-ms-transform:matrix(0.215091,0.001291,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.215091,0.001291,-0.001500,0.249996,0,0);}
.m78_c00056{transform:matrix(0.216050,0.001512,-0.001750,0.249994,0,0);-ms-transform:matrix(0.216050,0.001512,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.216050,0.001512,-0.001750,0.249994,0,0);}
.m181_c00056{transform:matrix(0.216126,0.001297,-0.001500,0.249996,0,0);-ms-transform:matrix(0.216126,0.001297,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.216126,0.001297,-0.001500,0.249996,0,0);}
.m9a_c00056{transform:matrix(0.216306,0.001298,-0.001500,0.249996,0,0);-ms-transform:matrix(0.216306,0.001298,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.216306,0.001298,-0.001500,0.249996,0,0);}
.m129_c00056{transform:matrix(0.216466,0.001299,-0.001500,0.249996,0,0);-ms-transform:matrix(0.216466,0.001299,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.216466,0.001299,-0.001500,0.249996,0,0);}
.m114_c00056{transform:matrix(0.217006,0.001302,-0.001500,0.249996,0,0);-ms-transform:matrix(0.217006,0.001302,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.217006,0.001302,-0.001500,0.249996,0,0);}
.mce_c00056{transform:matrix(0.217361,0.001304,-0.001500,0.249996,0,0);-ms-transform:matrix(0.217361,0.001304,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.217361,0.001304,-0.001500,0.249996,0,0);}
.m199_c00056{transform:matrix(0.217526,0.001305,-0.001500,0.249996,0,0);-ms-transform:matrix(0.217526,0.001305,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.217526,0.001305,-0.001500,0.249996,0,0);}
.m163_c00056{transform:matrix(0.217551,0.001305,-0.001500,0.249996,0,0);-ms-transform:matrix(0.217551,0.001305,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.217551,0.001305,-0.001500,0.249996,0,0);}
.m29_c00056{transform:matrix(0.217657,0.001088,-0.001250,0.249997,0,0);-ms-transform:matrix(0.217657,0.001088,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.217657,0.001088,-0.001250,0.249997,0,0);}
.m144_c00056{transform:matrix(0.218011,0.001308,-0.001500,0.249996,0,0);-ms-transform:matrix(0.218011,0.001308,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.218011,0.001308,-0.001500,0.249996,0,0);}
.m74_c00056{transform:matrix(0.218885,0.001532,-0.001750,0.249994,0,0);-ms-transform:matrix(0.218885,0.001532,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.218885,0.001532,-0.001750,0.249994,0,0);}
.mec_c00056{transform:matrix(0.218901,0.001313,-0.001500,0.249996,0,0);-ms-transform:matrix(0.218901,0.001313,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.218901,0.001313,-0.001500,0.249996,0,0);}
.m32_c00056{transform:matrix(0.219401,0.001316,-0.001500,0.249996,0,0);-ms-transform:matrix(0.219401,0.001316,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.219401,0.001316,-0.001500,0.249996,0,0);}
.m17d_c00056{transform:matrix(0.219556,0.001317,-0.001500,0.249996,0,0);-ms-transform:matrix(0.219556,0.001317,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.219556,0.001317,-0.001500,0.249996,0,0);}
.m68_c00056{transform:matrix(0.219655,0.001538,-0.001750,0.249994,0,0);-ms-transform:matrix(0.219655,0.001538,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.219655,0.001538,-0.001750,0.249994,0,0);}
.mf8_c00056{transform:matrix(0.219676,0.001318,-0.001500,0.249996,0,0);-ms-transform:matrix(0.219676,0.001318,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.219676,0.001318,-0.001500,0.249996,0,0);}
.m1d_c00056{transform:matrix(0.219761,0.001319,-0.001500,0.249996,0,0);-ms-transform:matrix(0.219761,0.001319,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.219761,0.001319,-0.001500,0.249996,0,0);}
.m17f_c00056{transform:matrix(0.220756,0.001325,-0.001500,0.249996,0,0);-ms-transform:matrix(0.220756,0.001325,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.220756,0.001325,-0.001500,0.249996,0,0);}
.m1c0_c00056{transform:matrix(0.221650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221650,0.000000,0.000000,0.250000,0,0);}
.m1a0_c00056{transform:matrix(0.221666,0.001330,-0.001500,0.249996,0,0);-ms-transform:matrix(0.221666,0.001330,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.221666,0.001330,-0.001500,0.249996,0,0);}
.m197_c00056{transform:matrix(0.221936,0.001332,-0.001500,0.249996,0,0);-ms-transform:matrix(0.221936,0.001332,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.221936,0.001332,-0.001500,0.249996,0,0);}
.mb4_c00056{transform:matrix(0.221991,0.001332,-0.001500,0.249996,0,0);-ms-transform:matrix(0.221991,0.001332,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.221991,0.001332,-0.001500,0.249996,0,0);}
.m1b0_c00056{transform:matrix(0.222162,0.001111,-0.001250,0.249997,0,0);-ms-transform:matrix(0.222162,0.001111,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.222162,0.001111,-0.001250,0.249997,0,0);}
.m62_c00056{transform:matrix(0.222175,0.001555,-0.001750,0.249994,0,0);-ms-transform:matrix(0.222175,0.001555,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.222175,0.001555,-0.001750,0.249994,0,0);}
.m1e_c00056{transform:matrix(0.222176,0.001333,-0.001500,0.249996,0,0);-ms-transform:matrix(0.222176,0.001333,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.222176,0.001333,-0.001500,0.249996,0,0);}
.m16a_c00056{transform:matrix(0.222346,0.001334,-0.001500,0.249996,0,0);-ms-transform:matrix(0.222346,0.001334,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.222346,0.001334,-0.001500,0.249996,0,0);}
.m117_c00056{transform:matrix(0.223051,0.001338,-0.001500,0.249996,0,0);-ms-transform:matrix(0.223051,0.001338,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.223051,0.001338,-0.001500,0.249996,0,0);}
.mcc_c00056{transform:matrix(0.223371,0.001340,-0.001500,0.249996,0,0);-ms-transform:matrix(0.223371,0.001340,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.223371,0.001340,-0.001500,0.249996,0,0);}
.me3_c00056{transform:matrix(0.223556,0.001341,-0.001500,0.249996,0,0);-ms-transform:matrix(0.223556,0.001341,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.223556,0.001341,-0.001500,0.249996,0,0);}
.md0_c00056{transform:matrix(0.223756,0.001343,-0.001500,0.249996,0,0);-ms-transform:matrix(0.223756,0.001343,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.223756,0.001343,-0.001500,0.249996,0,0);}
.m90_c00056{transform:matrix(0.223888,0.001791,-0.002000,0.249992,0,0);-ms-transform:matrix(0.223888,0.001791,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.223888,0.001791,-0.002000,0.249992,0,0);}
.m158_c00056{transform:matrix(0.224126,0.001345,-0.001500,0.249996,0,0);-ms-transform:matrix(0.224126,0.001345,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.224126,0.001345,-0.001500,0.249996,0,0);}
.m8c_c00056{transform:matrix(0.224203,0.001794,-0.002000,0.249992,0,0);-ms-transform:matrix(0.224203,0.001794,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.224203,0.001794,-0.002000,0.249992,0,0);}
.m81_c00056{transform:matrix(0.224678,0.001797,-0.002000,0.249992,0,0);-ms-transform:matrix(0.224678,0.001797,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.224678,0.001797,-0.002000,0.249992,0,0);}
.mcb_c00056{transform:matrix(0.224996,0.001350,-0.001500,0.249996,0,0);-ms-transform:matrix(0.224996,0.001350,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.224996,0.001350,-0.001500,0.249996,0,0);}
.mee_c00056{transform:matrix(0.225016,0.001350,-0.001500,0.249996,0,0);-ms-transform:matrix(0.225016,0.001350,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.225016,0.001350,-0.001500,0.249996,0,0);}
.mdd_c00056{transform:matrix(0.225241,0.001351,-0.001500,0.249996,0,0);-ms-transform:matrix(0.225241,0.001351,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.225241,0.001351,-0.001500,0.249996,0,0);}
.m15d_c00056{transform:matrix(0.225286,0.001352,-0.001500,0.249996,0,0);-ms-transform:matrix(0.225286,0.001352,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.225286,0.001352,-0.001500,0.249996,0,0);}
.m84_c00056{transform:matrix(0.225418,0.001803,-0.002000,0.249992,0,0);-ms-transform:matrix(0.225418,0.001803,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.225418,0.001803,-0.002000,0.249992,0,0);}
.m101_c00056{transform:matrix(0.225531,0.001353,-0.001500,0.249996,0,0);-ms-transform:matrix(0.225531,0.001353,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.225531,0.001353,-0.001500,0.249996,0,0);}
.m8a_c00056{transform:matrix(0.225633,0.001805,-0.002000,0.249992,0,0);-ms-transform:matrix(0.225633,0.001805,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.225633,0.001805,-0.002000,0.249992,0,0);}
.mcd_c00056{transform:matrix(0.225636,0.001354,-0.001500,0.249996,0,0);-ms-transform:matrix(0.225636,0.001354,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.225636,0.001354,-0.001500,0.249996,0,0);}
.m11d_c00056{transform:matrix(0.225681,0.001354,-0.001500,0.249996,0,0);-ms-transform:matrix(0.225681,0.001354,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.225681,0.001354,-0.001500,0.249996,0,0);}
.mc8_c00056{transform:matrix(0.225836,0.001355,-0.001500,0.249996,0,0);-ms-transform:matrix(0.225836,0.001355,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.225836,0.001355,-0.001500,0.249996,0,0);}
.m25_c00056{transform:matrix(0.225951,0.001356,-0.001500,0.249996,0,0);-ms-transform:matrix(0.225951,0.001356,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.225951,0.001356,-0.001500,0.249996,0,0);}
.m7d_c00056{transform:matrix(0.226089,0.001583,-0.001750,0.249994,0,0);-ms-transform:matrix(0.226089,0.001583,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.226089,0.001583,-0.001750,0.249994,0,0);}
.mbb_c00056{transform:matrix(0.226176,0.001357,-0.001500,0.249996,0,0);-ms-transform:matrix(0.226176,0.001357,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.226176,0.001357,-0.001500,0.249996,0,0);}
.m1b4_c00056{transform:matrix(0.226212,0.001131,-0.001250,0.249997,0,0);-ms-transform:matrix(0.226212,0.001131,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.226212,0.001131,-0.001250,0.249997,0,0);}
.m91_c00056{transform:matrix(0.226853,0.001815,-0.002000,0.249992,0,0);-ms-transform:matrix(0.226853,0.001815,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.226853,0.001815,-0.002000,0.249992,0,0);}
.m17_c00056{transform:matrix(0.226856,0.001361,-0.001500,0.249996,0,0);-ms-transform:matrix(0.226856,0.001361,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.226856,0.001361,-0.001500,0.249996,0,0);}
.mcf_c00056{transform:matrix(0.227036,0.001362,-0.001500,0.249996,0,0);-ms-transform:matrix(0.227036,0.001362,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.227036,0.001362,-0.001500,0.249996,0,0);}
.m8e_c00056{transform:matrix(0.227143,0.001817,-0.002000,0.249992,0,0);-ms-transform:matrix(0.227143,0.001817,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.227143,0.001817,-0.002000,0.249992,0,0);}
.m159_c00056{transform:matrix(0.227181,0.001363,-0.001500,0.249996,0,0);-ms-transform:matrix(0.227181,0.001363,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.227181,0.001363,-0.001500,0.249996,0,0);}
.m24_c00056{transform:matrix(0.227701,0.001366,-0.001500,0.249996,0,0);-ms-transform:matrix(0.227701,0.001366,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.227701,0.001366,-0.001500,0.249996,0,0);}
.m145_c00056{transform:matrix(0.228051,0.001368,-0.001500,0.249996,0,0);-ms-transform:matrix(0.228051,0.001368,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.228051,0.001368,-0.001500,0.249996,0,0);}
.m16_c00056{transform:matrix(0.228076,0.001368,-0.001500,0.249996,0,0);-ms-transform:matrix(0.228076,0.001368,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.228076,0.001368,-0.001500,0.249996,0,0);}
.m65_c00056{transform:matrix(0.228369,0.001599,-0.001750,0.249994,0,0);-ms-transform:matrix(0.228369,0.001599,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.228369,0.001599,-0.001750,0.249994,0,0);}
.m93_c00056{transform:matrix(0.228843,0.001831,-0.002000,0.249992,0,0);-ms-transform:matrix(0.228843,0.001831,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.228843,0.001831,-0.002000,0.249992,0,0);}
.m13a_c00056{transform:matrix(0.228871,0.001373,-0.001500,0.249996,0,0);-ms-transform:matrix(0.228871,0.001373,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.228871,0.001373,-0.001500,0.249996,0,0);}
.m63_c00056{transform:matrix(0.229189,0.001604,-0.001750,0.249994,0,0);-ms-transform:matrix(0.229189,0.001604,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.229189,0.001604,-0.001750,0.249994,0,0);}
.m86_c00056{transform:matrix(0.229443,0.001836,-0.002000,0.249992,0,0);-ms-transform:matrix(0.229443,0.001836,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.229443,0.001836,-0.002000,0.249992,0,0);}
.m13b_c00056{transform:matrix(0.229541,0.001377,-0.001500,0.249996,0,0);-ms-transform:matrix(0.229541,0.001377,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.229541,0.001377,-0.001500,0.249996,0,0);}
.ma0_c00056{transform:matrix(0.229746,0.001378,-0.001500,0.249996,0,0);-ms-transform:matrix(0.229746,0.001378,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.229746,0.001378,-0.001500,0.249996,0,0);}
.m1b9_c00056{transform:matrix(0.229885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229885,0.000000,0.000000,0.250000,0,0);}
.mba_c00056{transform:matrix(0.230071,0.001380,-0.001500,0.249996,0,0);-ms-transform:matrix(0.230071,0.001380,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.230071,0.001380,-0.001500,0.249996,0,0);}
.m139_c00056{transform:matrix(0.230081,0.001380,-0.001500,0.249996,0,0);-ms-transform:matrix(0.230081,0.001380,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.230081,0.001380,-0.001500,0.249996,0,0);}
.m17e_c00056{transform:matrix(0.230166,0.001381,-0.001500,0.249996,0,0);-ms-transform:matrix(0.230166,0.001381,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.230166,0.001381,-0.001500,0.249996,0,0);}
.m194_c00056{transform:matrix(0.230246,0.001381,-0.001500,0.249996,0,0);-ms-transform:matrix(0.230246,0.001381,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.230246,0.001381,-0.001500,0.249996,0,0);}
.m1b5_c00056{transform:matrix(0.230422,0.001152,-0.001250,0.249997,0,0);-ms-transform:matrix(0.230422,0.001152,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.230422,0.001152,-0.001250,0.249997,0,0);}
.m110_c00056{transform:matrix(0.230676,0.001384,-0.001500,0.249996,0,0);-ms-transform:matrix(0.230676,0.001384,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.230676,0.001384,-0.001500,0.249996,0,0);}
.m174_c00056{transform:matrix(0.230831,0.001385,-0.001500,0.249996,0,0);-ms-transform:matrix(0.230831,0.001385,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.230831,0.001385,-0.001500,0.249996,0,0);}
.m162_c00056{transform:matrix(0.231041,0.001386,-0.001500,0.249996,0,0);-ms-transform:matrix(0.231041,0.001386,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.231041,0.001386,-0.001500,0.249996,0,0);}
.m16d_c00056{transform:matrix(0.231316,0.001388,-0.001500,0.249996,0,0);-ms-transform:matrix(0.231316,0.001388,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.231316,0.001388,-0.001500,0.249996,0,0);}
.m19c_c00056{transform:matrix(0.231441,0.001389,-0.001500,0.249996,0,0);-ms-transform:matrix(0.231441,0.001389,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.231441,0.001389,-0.001500,0.249996,0,0);}
.m165_c00056{transform:matrix(0.231721,0.001390,-0.001500,0.249996,0,0);-ms-transform:matrix(0.231721,0.001390,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.231721,0.001390,-0.001500,0.249996,0,0);}
.m104_c00056{transform:matrix(0.231951,0.001392,-0.001500,0.249996,0,0);-ms-transform:matrix(0.231951,0.001392,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.231951,0.001392,-0.001500,0.249996,0,0);}
.m1ae_c00056{transform:matrix(0.231952,0.001160,-0.001250,0.249997,0,0);-ms-transform:matrix(0.231952,0.001160,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.231952,0.001160,-0.001250,0.249997,0,0);}
.m54_c00056{transform:matrix(0.232063,0.002321,-0.002500,0.249988,0,0);-ms-transform:matrix(0.232063,0.002321,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.232063,0.002321,-0.002500,0.249988,0,0);}
.m69_c00056{transform:matrix(0.232259,0.001626,-0.001750,0.249994,0,0);-ms-transform:matrix(0.232259,0.001626,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.232259,0.001626,-0.001750,0.249994,0,0);}
.m7b_c00056{transform:matrix(0.232314,0.001626,-0.001750,0.249994,0,0);-ms-transform:matrix(0.232314,0.001626,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.232314,0.001626,-0.001750,0.249994,0,0);}
.md4_c00056{transform:matrix(0.232836,0.001397,-0.001500,0.249996,0,0);-ms-transform:matrix(0.232836,0.001397,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.232836,0.001397,-0.001500,0.249996,0,0);}
.m19d_c00056{transform:matrix(0.233106,0.001399,-0.001500,0.249996,0,0);-ms-transform:matrix(0.233106,0.001399,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.233106,0.001399,-0.001500,0.249996,0,0);}
.m103_c00056{transform:matrix(0.233676,0.001402,-0.001500,0.249996,0,0);-ms-transform:matrix(0.233676,0.001402,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.233676,0.001402,-0.001500,0.249996,0,0);}
.m122_c00056{transform:matrix(0.234091,0.001405,-0.001500,0.249996,0,0);-ms-transform:matrix(0.234091,0.001405,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.234091,0.001405,-0.001500,0.249996,0,0);}
.m5_c00056{transform:matrix(0.234095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234095,0.000000,0.000000,0.250000,0,0);}
.mfe_c00056{transform:matrix(0.234136,0.001405,-0.001500,0.249996,0,0);-ms-transform:matrix(0.234136,0.001405,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.234136,0.001405,-0.001500,0.249996,0,0);}
.m82_c00056{transform:matrix(0.234532,0.001876,-0.002000,0.249992,0,0);-ms-transform:matrix(0.234532,0.001876,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.234532,0.001876,-0.002000,0.249992,0,0);}
.m1c5_c00056{transform:matrix(0.234905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234905,0.000000,0.000000,0.250000,0,0);}
.m172_c00056{transform:matrix(0.235041,0.001410,-0.001500,0.249996,0,0);-ms-transform:matrix(0.235041,0.001410,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.235041,0.001410,-0.001500,0.249996,0,0);}
.m1b2_c00056{transform:matrix(0.235257,0.001176,-0.001250,0.249997,0,0);-ms-transform:matrix(0.235257,0.001176,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.235257,0.001176,-0.001250,0.249997,0,0);}
.m20_c00056{transform:matrix(0.235411,0.001412,-0.001500,0.249996,0,0);-ms-transform:matrix(0.235411,0.001412,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.235411,0.001412,-0.001500,0.249996,0,0);}
.m185_c00056{transform:matrix(0.235451,0.001413,-0.001500,0.249996,0,0);-ms-transform:matrix(0.235451,0.001413,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.235451,0.001413,-0.001500,0.249996,0,0);}
.m1ad_c00056{transform:matrix(0.235672,0.001178,-0.001250,0.249997,0,0);-ms-transform:matrix(0.235672,0.001178,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.235672,0.001178,-0.001250,0.249997,0,0);}
.m19e_c00056{transform:matrix(0.236166,0.001417,-0.001500,0.249996,0,0);-ms-transform:matrix(0.236166,0.001417,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.236166,0.001417,-0.001500,0.249996,0,0);}
.m19f_c00056{transform:matrix(0.236256,0.001418,-0.001500,0.249996,0,0);-ms-transform:matrix(0.236256,0.001418,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.236256,0.001418,-0.001500,0.249996,0,0);}
.mdf_c00056{transform:matrix(0.236471,0.001419,-0.001500,0.249996,0,0);-ms-transform:matrix(0.236471,0.001419,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.236471,0.001419,-0.001500,0.249996,0,0);}
.m16f_c00056{transform:matrix(0.236516,0.001419,-0.001500,0.249996,0,0);-ms-transform:matrix(0.236516,0.001419,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.236516,0.001419,-0.001500,0.249996,0,0);}
.m187_c00056{transform:matrix(0.236576,0.001419,-0.001500,0.249996,0,0);-ms-transform:matrix(0.236576,0.001419,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.236576,0.001419,-0.001500,0.249996,0,0);}
.m126_c00056{transform:matrix(0.236701,0.001420,-0.001500,0.249996,0,0);-ms-transform:matrix(0.236701,0.001420,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.236701,0.001420,-0.001500,0.249996,0,0);}
.md5_c00056{transform:matrix(0.236951,0.001422,-0.001500,0.249996,0,0);-ms-transform:matrix(0.236951,0.001422,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.236951,0.001422,-0.001500,0.249996,0,0);}
.mf9_c00056{transform:matrix(0.237131,0.001423,-0.001500,0.249996,0,0);-ms-transform:matrix(0.237131,0.001423,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.237131,0.001423,-0.001500,0.249996,0,0);}
.m151_c00056{transform:matrix(0.237211,0.001423,-0.001500,0.249996,0,0);-ms-transform:matrix(0.237211,0.001423,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.237211,0.001423,-0.001500,0.249996,0,0);}
.m1b7_c00056{transform:matrix(0.237505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237505,0.000000,0.000000,0.250000,0,0);}
.m153_c00056{transform:matrix(0.237851,0.001427,-0.001500,0.249996,0,0);-ms-transform:matrix(0.237851,0.001427,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.237851,0.001427,-0.001500,0.249996,0,0);}
.m121_c00056{transform:matrix(0.237876,0.001427,-0.001500,0.249996,0,0);-ms-transform:matrix(0.237876,0.001427,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.237876,0.001427,-0.001500,0.249996,0,0);}
.m1a1_c00056{transform:matrix(0.238381,0.001430,-0.001500,0.249996,0,0);-ms-transform:matrix(0.238381,0.001430,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.238381,0.001430,-0.001500,0.249996,0,0);}
.m60_c00056{transform:matrix(0.238494,0.001669,-0.001750,0.249994,0,0);-ms-transform:matrix(0.238494,0.001669,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.238494,0.001669,-0.001750,0.249994,0,0);}
.mb3_c00056{transform:matrix(0.238536,0.001431,-0.001500,0.249996,0,0);-ms-transform:matrix(0.238536,0.001431,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.238536,0.001431,-0.001500,0.249996,0,0);}
.meb_c00056{transform:matrix(0.238681,0.001432,-0.001500,0.249996,0,0);-ms-transform:matrix(0.238681,0.001432,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.238681,0.001432,-0.001500,0.249996,0,0);}
.m1a6_c00056{transform:matrix(0.238777,0.001194,-0.001250,0.249997,0,0);-ms-transform:matrix(0.238777,0.001194,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.238777,0.001194,-0.001250,0.249997,0,0);}
.m96_c00056{transform:matrix(0.238837,0.001911,-0.002000,0.249992,0,0);-ms-transform:matrix(0.238837,0.001911,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.238837,0.001911,-0.002000,0.249992,0,0);}
.me7_c00056{transform:matrix(0.239061,0.001434,-0.001500,0.249996,0,0);-ms-transform:matrix(0.239061,0.001434,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.239061,0.001434,-0.001500,0.249996,0,0);}
.me4_c00056{transform:matrix(0.239176,0.001435,-0.001500,0.249996,0,0);-ms-transform:matrix(0.239176,0.001435,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.239176,0.001435,-0.001500,0.249996,0,0);}
.m1ab_c00056{transform:matrix(0.239322,0.001197,-0.001250,0.249997,0,0);-ms-transform:matrix(0.239322,0.001197,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.239322,0.001197,-0.001250,0.249997,0,0);}
.m19_c00056{transform:matrix(0.239336,0.001436,-0.001500,0.249996,0,0);-ms-transform:matrix(0.239336,0.001436,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.239336,0.001436,-0.001500,0.249996,0,0);}
.m28_c00056{transform:matrix(0.239457,0.001197,-0.001250,0.249997,0,0);-ms-transform:matrix(0.239457,0.001197,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.239457,0.001197,-0.001250,0.249997,0,0);}
.m105_c00056{transform:matrix(0.239776,0.001439,-0.001500,0.249996,0,0);-ms-transform:matrix(0.239776,0.001439,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.239776,0.001439,-0.001500,0.249996,0,0);}
.m166_c00056{transform:matrix(0.239936,0.001440,-0.001500,0.249996,0,0);-ms-transform:matrix(0.239936,0.001440,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.239936,0.001440,-0.001500,0.249996,0,0);}
.m67_c00056{transform:matrix(0.240144,0.001681,-0.001750,0.249994,0,0);-ms-transform:matrix(0.240144,0.001681,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.240144,0.001681,-0.001750,0.249994,0,0);}
.m170_c00056{transform:matrix(0.240266,0.001442,-0.001500,0.249996,0,0);-ms-transform:matrix(0.240266,0.001442,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.240266,0.001442,-0.001500,0.249996,0,0);}
.m115_c00056{transform:matrix(0.240756,0.001445,-0.001500,0.249996,0,0);-ms-transform:matrix(0.240756,0.001445,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.240756,0.001445,-0.001500,0.249996,0,0);}
.mef_c00056{transform:matrix(0.241611,0.001450,-0.001500,0.249996,0,0);-ms-transform:matrix(0.241611,0.001450,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.241611,0.001450,-0.001500,0.249996,0,0);}
.m1bf_c00056{transform:matrix(0.241640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241640,0.000000,0.000000,0.250000,0,0);}
.m18b_c00056{transform:matrix(0.241886,0.001451,-0.001500,0.249996,0,0);-ms-transform:matrix(0.241886,0.001451,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.241886,0.001451,-0.001500,0.249996,0,0);}
.m102_c00056{transform:matrix(0.241936,0.001452,-0.001500,0.249996,0,0);-ms-transform:matrix(0.241936,0.001452,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.241936,0.001452,-0.001500,0.249996,0,0);}
.m15a_c00056{transform:matrix(0.242631,0.001456,-0.001500,0.249996,0,0);-ms-transform:matrix(0.242631,0.001456,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.242631,0.001456,-0.001500,0.249996,0,0);}
.m4e_c00056{transform:matrix(0.242696,0.001456,-0.001500,0.249996,0,0);-ms-transform:matrix(0.242696,0.001456,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.242696,0.001456,-0.001500,0.249996,0,0);}
.m130_c00056{transform:matrix(0.242801,0.001457,-0.001500,0.249996,0,0);-ms-transform:matrix(0.242801,0.001457,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.242801,0.001457,-0.001500,0.249996,0,0);}
.mf2_c00056{transform:matrix(0.243011,0.001458,-0.001500,0.249996,0,0);-ms-transform:matrix(0.243011,0.001458,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.243011,0.001458,-0.001500,0.249996,0,0);}
.m61_c00056{transform:matrix(0.243049,0.001701,-0.001750,0.249994,0,0);-ms-transform:matrix(0.243049,0.001701,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.243049,0.001701,-0.001750,0.249994,0,0);}
.m38_c00056{transform:matrix(0.243506,0.001461,-0.001500,0.249996,0,0);-ms-transform:matrix(0.243506,0.001461,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.243506,0.001461,-0.001500,0.249996,0,0);}
.m1ac_c00056{transform:matrix(0.243552,0.001218,-0.001250,0.249997,0,0);-ms-transform:matrix(0.243552,0.001218,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.243552,0.001218,-0.001250,0.249997,0,0);}
.m15_c00056{transform:matrix(0.243631,0.001462,-0.001500,0.249996,0,0);-ms-transform:matrix(0.243631,0.001462,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.243631,0.001462,-0.001500,0.249996,0,0);}
.m13e_c00056{transform:matrix(0.243896,0.001463,-0.001500,0.249996,0,0);-ms-transform:matrix(0.243896,0.001463,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.243896,0.001463,-0.001500,0.249996,0,0);}
.m108_c00056{transform:matrix(0.244166,0.001465,-0.001500,0.249996,0,0);-ms-transform:matrix(0.244166,0.001465,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.244166,0.001465,-0.001500,0.249996,0,0);}
.m8f_c00056{transform:matrix(0.244752,0.001958,-0.002000,0.249992,0,0);-ms-transform:matrix(0.244752,0.001958,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.244752,0.001958,-0.002000,0.249992,0,0);}
.m14e_c00056{transform:matrix(0.245181,0.001471,-0.001500,0.249996,0,0);-ms-transform:matrix(0.245181,0.001471,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.245181,0.001471,-0.001500,0.249996,0,0);}
.me9_c00056{transform:matrix(0.245251,0.001472,-0.001500,0.249996,0,0);-ms-transform:matrix(0.245251,0.001472,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.245251,0.001472,-0.001500,0.249996,0,0);}
.m49_c00056{transform:matrix(0.246236,0.001477,-0.001500,0.249996,0,0);-ms-transform:matrix(0.246236,0.001477,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.246236,0.001477,-0.001500,0.249996,0,0);}
.m1ba_c00056{transform:matrix(0.246400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246400,0.000000,0.000000,0.250000,0,0);}
.m168_c00056{transform:matrix(0.246671,0.001480,-0.001500,0.249996,0,0);-ms-transform:matrix(0.246671,0.001480,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.246671,0.001480,-0.001500,0.249996,0,0);}
.m1b1_c00056{transform:matrix(0.246892,0.001234,-0.001250,0.249997,0,0);-ms-transform:matrix(0.246892,0.001234,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.246892,0.001234,-0.001250,0.249997,0,0);}
.mfd_c00056{transform:matrix(0.247456,0.001485,-0.001500,0.249996,0,0);-ms-transform:matrix(0.247456,0.001485,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.247456,0.001485,-0.001500,0.249996,0,0);}
.m8b_c00056{transform:matrix(0.247667,0.001981,-0.002000,0.249992,0,0);-ms-transform:matrix(0.247667,0.001981,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.247667,0.001981,-0.002000,0.249992,0,0);}
.m135_c00056{transform:matrix(0.247716,0.001486,-0.001500,0.249996,0,0);-ms-transform:matrix(0.247716,0.001486,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.247716,0.001486,-0.001500,0.249996,0,0);}
.m1a7_c00056{transform:matrix(0.248297,0.001241,-0.001250,0.249997,0,0);-ms-transform:matrix(0.248297,0.001241,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.248297,0.001241,-0.001250,0.249997,0,0);}
.m141_c00056{transform:matrix(0.248646,0.001492,-0.001500,0.249996,0,0);-ms-transform:matrix(0.248646,0.001492,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.248646,0.001492,-0.001500,0.249996,0,0);}
.m173_c00056{transform:matrix(0.249626,0.001498,-0.001500,0.249996,0,0);-ms-transform:matrix(0.249626,0.001498,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.249626,0.001498,-0.001500,0.249996,0,0);}
.m14f_c00056{transform:matrix(0.249866,0.001499,-0.001500,0.249996,0,0);-ms-transform:matrix(0.249866,0.001499,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.249866,0.001499,-0.001500,0.249996,0,0);}
.m16c_c00056{transform:matrix(0.250010,0.001500,-0.001500,0.249996,0,0);-ms-transform:matrix(0.250010,0.001500,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.250010,0.001500,-0.001500,0.249996,0,0);}
.m156_c00056{transform:matrix(0.250235,0.001501,-0.001500,0.249996,0,0);-ms-transform:matrix(0.250235,0.001501,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.250235,0.001501,-0.001500,0.249996,0,0);}
.m89_c00056{transform:matrix(0.250242,0.002002,-0.002000,0.249992,0,0);-ms-transform:matrix(0.250242,0.002002,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.250242,0.002002,-0.002000,0.249992,0,0);}
.m195_c00056{transform:matrix(0.250785,0.001505,-0.001500,0.249996,0,0);-ms-transform:matrix(0.250785,0.001505,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.250785,0.001505,-0.001500,0.249996,0,0);}
.m142_c00056{transform:matrix(0.251110,0.001507,-0.001500,0.249996,0,0);-ms-transform:matrix(0.251110,0.001507,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.251110,0.001507,-0.001500,0.249996,0,0);}
.m119_c00056{transform:matrix(0.251295,0.001508,-0.001500,0.249996,0,0);-ms-transform:matrix(0.251295,0.001508,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.251295,0.001508,-0.001500,0.249996,0,0);}
.m186_c00056{transform:matrix(0.251865,0.001511,-0.001500,0.249996,0,0);-ms-transform:matrix(0.251865,0.001511,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.251865,0.001511,-0.001500,0.249996,0,0);}
.mf7_c00056{transform:matrix(0.251915,0.001511,-0.001500,0.249996,0,0);-ms-transform:matrix(0.251915,0.001511,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.251915,0.001511,-0.001500,0.249996,0,0);}
.m134_c00056{transform:matrix(0.252240,0.001513,-0.001500,0.249996,0,0);-ms-transform:matrix(0.252240,0.001513,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.252240,0.001513,-0.001500,0.249996,0,0);}
.m95_c00056{transform:matrix(0.252717,0.002022,-0.002000,0.249992,0,0);-ms-transform:matrix(0.252717,0.002022,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.252717,0.002022,-0.002000,0.249992,0,0);}
.m190_c00056{transform:matrix(0.252825,0.001517,-0.001500,0.249996,0,0);-ms-transform:matrix(0.252825,0.001517,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.252825,0.001517,-0.001500,0.249996,0,0);}
.m128_c00056{transform:matrix(0.253100,0.001519,-0.001500,0.249996,0,0);-ms-transform:matrix(0.253100,0.001519,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.253100,0.001519,-0.001500,0.249996,0,0);}
.m15b_c00056{transform:matrix(0.253630,0.001522,-0.001500,0.249996,0,0);-ms-transform:matrix(0.253630,0.001522,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.253630,0.001522,-0.001500,0.249996,0,0);}
.m160_c00056{transform:matrix(0.254450,0.001527,-0.001500,0.249996,0,0);-ms-transform:matrix(0.254450,0.001527,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.254450,0.001527,-0.001500,0.249996,0,0);}
.m164_c00056{transform:matrix(0.254610,0.001528,-0.001500,0.249996,0,0);-ms-transform:matrix(0.254610,0.001528,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.254610,0.001528,-0.001500,0.249996,0,0);}
.m1aa_c00056{transform:matrix(0.256012,0.001280,-0.001250,0.249997,0,0);-ms-transform:matrix(0.256012,0.001280,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.256012,0.001280,-0.001250,0.249997,0,0);}
.m189_c00056{transform:matrix(0.256480,0.001539,-0.001500,0.249996,0,0);-ms-transform:matrix(0.256480,0.001539,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.256480,0.001539,-0.001500,0.249996,0,0);}
.m19b_c00056{transform:matrix(0.257030,0.001542,-0.001500,0.249996,0,0);-ms-transform:matrix(0.257030,0.001542,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.257030,0.001542,-0.001500,0.249996,0,0);}
.med_c00056{transform:matrix(0.257535,0.001545,-0.001500,0.249996,0,0);-ms-transform:matrix(0.257535,0.001545,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.257535,0.001545,-0.001500,0.249996,0,0);}
.m12f_c00056{transform:matrix(0.257690,0.001546,-0.001500,0.249996,0,0);-ms-transform:matrix(0.257690,0.001546,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.257690,0.001546,-0.001500,0.249996,0,0);}
.m107_c00056{transform:matrix(0.257705,0.001546,-0.001500,0.249996,0,0);-ms-transform:matrix(0.257705,0.001546,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.257705,0.001546,-0.001500,0.249996,0,0);}
.m106_c00056{transform:matrix(0.257840,0.001547,-0.001500,0.249996,0,0);-ms-transform:matrix(0.257840,0.001547,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.257840,0.001547,-0.001500,0.249996,0,0);}
.m146_c00056{transform:matrix(0.257860,0.001547,-0.001500,0.249996,0,0);-ms-transform:matrix(0.257860,0.001547,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.257860,0.001547,-0.001500,0.249996,0,0);}
.m11f_c00056{transform:matrix(0.257880,0.001547,-0.001500,0.249996,0,0);-ms-transform:matrix(0.257880,0.001547,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.257880,0.001547,-0.001500,0.249996,0,0);}
.m22_c00056{transform:matrix(0.257925,0.001548,-0.001500,0.249996,0,0);-ms-transform:matrix(0.257925,0.001548,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.257925,0.001548,-0.001500,0.249996,0,0);}
.m19a_c00056{transform:matrix(0.259675,0.001558,-0.001500,0.249996,0,0);-ms-transform:matrix(0.259675,0.001558,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.259675,0.001558,-0.001500,0.249996,0,0);}
.md3_c00056{transform:matrix(0.260125,0.001561,-0.001500,0.249996,0,0);-ms-transform:matrix(0.260125,0.001561,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.260125,0.001561,-0.001500,0.249996,0,0);}
.m14a_c00056{transform:matrix(0.260180,0.001561,-0.001500,0.249996,0,0);-ms-transform:matrix(0.260180,0.001561,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.260180,0.001561,-0.001500,0.249996,0,0);}
.m1a3_c00056{transform:matrix(0.260487,0.001302,-0.001250,0.249997,0,0);-ms-transform:matrix(0.260487,0.001302,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.260487,0.001302,-0.001250,0.249997,0,0);}
.mf1_c00056{transform:matrix(0.260490,0.001563,-0.001500,0.249996,0,0);-ms-transform:matrix(0.260490,0.001563,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.260490,0.001563,-0.001500,0.249996,0,0);}
.mf4_c00056{transform:matrix(0.260675,0.001564,-0.001500,0.249996,0,0);-ms-transform:matrix(0.260675,0.001564,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.260675,0.001564,-0.001500,0.249996,0,0);}
.m12e_c00056{transform:matrix(0.261255,0.001568,-0.001500,0.249996,0,0);-ms-transform:matrix(0.261255,0.001568,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.261255,0.001568,-0.001500,0.249996,0,0);}
.m18e_c00056{transform:matrix(0.261280,0.001568,-0.001500,0.249996,0,0);-ms-transform:matrix(0.261280,0.001568,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.261280,0.001568,-0.001500,0.249996,0,0);}
.m18a_c00056{transform:matrix(0.262620,0.001576,-0.001500,0.249996,0,0);-ms-transform:matrix(0.262620,0.001576,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.262620,0.001576,-0.001500,0.249996,0,0);}
.m192_c00056{transform:matrix(0.263220,0.001579,-0.001500,0.249996,0,0);-ms-transform:matrix(0.263220,0.001579,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.263220,0.001579,-0.001500,0.249996,0,0);}
.m14b_c00056{transform:matrix(0.263305,0.001580,-0.001500,0.249996,0,0);-ms-transform:matrix(0.263305,0.001580,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.263305,0.001580,-0.001500,0.249996,0,0);}
.mf3_c00056{transform:matrix(0.264445,0.001587,-0.001500,0.249996,0,0);-ms-transform:matrix(0.264445,0.001587,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.264445,0.001587,-0.001500,0.249996,0,0);}
.m161_c00056{transform:matrix(0.266010,0.001596,-0.001500,0.249996,0,0);-ms-transform:matrix(0.266010,0.001596,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.266010,0.001596,-0.001500,0.249996,0,0);}
.m148_c00056{transform:matrix(0.266145,0.001597,-0.001500,0.249996,0,0);-ms-transform:matrix(0.266145,0.001597,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.266145,0.001597,-0.001500,0.249996,0,0);}
.m12d_c00056{transform:matrix(0.266755,0.001601,-0.001500,0.249996,0,0);-ms-transform:matrix(0.266755,0.001601,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.266755,0.001601,-0.001500,0.249996,0,0);}
.m157_c00056{transform:matrix(0.266810,0.001601,-0.001500,0.249996,0,0);-ms-transform:matrix(0.266810,0.001601,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.266810,0.001601,-0.001500,0.249996,0,0);}
.me8_c00056{transform:matrix(0.266890,0.001601,-0.001500,0.249996,0,0);-ms-transform:matrix(0.266890,0.001601,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.266890,0.001601,-0.001500,0.249996,0,0);}
.mfc_c00056{transform:matrix(0.266985,0.001602,-0.001500,0.249996,0,0);-ms-transform:matrix(0.266985,0.001602,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.266985,0.001602,-0.001500,0.249996,0,0);}
.m124_c00056{transform:matrix(0.267725,0.001606,-0.001500,0.249996,0,0);-ms-transform:matrix(0.267725,0.001606,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.267725,0.001606,-0.001500,0.249996,0,0);}
.mbf_c00056{transform:matrix(0.269405,0.001616,-0.001500,0.249996,0,0);-ms-transform:matrix(0.269405,0.001616,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.269405,0.001616,-0.001500,0.249996,0,0);}
.m10b_c00056{transform:matrix(0.272385,0.001634,-0.001500,0.249996,0,0);-ms-transform:matrix(0.272385,0.001634,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.272385,0.001634,-0.001500,0.249996,0,0);}
.m16b_c00056{transform:matrix(0.272810,0.001637,-0.001500,0.249996,0,0);-ms-transform:matrix(0.272810,0.001637,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.272810,0.001637,-0.001500,0.249996,0,0);}
.m16e_c00056{transform:matrix(0.273015,0.001638,-0.001500,0.249996,0,0);-ms-transform:matrix(0.273015,0.001638,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.273015,0.001638,-0.001500,0.249996,0,0);}
.m40_c00056{transform:matrix(0.273998,0.001918,-0.001750,0.249994,0,0);-ms-transform:matrix(0.273998,0.001918,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.273998,0.001918,-0.001750,0.249994,0,0);}
.m100_c00056{transform:matrix(0.274445,0.001647,-0.001500,0.249996,0,0);-ms-transform:matrix(0.274445,0.001647,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.274445,0.001647,-0.001500,0.249996,0,0);}
.m1c_c00056{transform:matrix(0.275125,0.001651,-0.001500,0.249996,0,0);-ms-transform:matrix(0.275125,0.001651,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.275125,0.001651,-0.001500,0.249996,0,0);}
.mc0_c00056{transform:matrix(0.275185,0.001651,-0.001500,0.249996,0,0);-ms-transform:matrix(0.275185,0.001651,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.275185,0.001651,-0.001500,0.249996,0,0);}
.m113_c00056{transform:matrix(0.278620,0.001672,-0.001500,0.249996,0,0);-ms-transform:matrix(0.278620,0.001672,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.278620,0.001672,-0.001500,0.249996,0,0);}
.m2d_c00056{transform:matrix(0.279262,0.001396,-0.001250,0.249997,0,0);-ms-transform:matrix(0.279262,0.001396,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.279262,0.001396,-0.001250,0.249997,0,0);}
.m138_c00056{transform:matrix(0.279735,0.001678,-0.001500,0.249996,0,0);-ms-transform:matrix(0.279735,0.001678,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.279735,0.001678,-0.001500,0.249996,0,0);}
.m2e_c00056{transform:matrix(0.282476,0.001412,-0.001250,0.249997,0,0);-ms-transform:matrix(0.282476,0.001412,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.282476,0.001412,-0.001250,0.249997,0,0);}
.m11b_c00056{transform:matrix(0.283350,0.001700,-0.001500,0.249996,0,0);-ms-transform:matrix(0.283350,0.001700,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.283350,0.001700,-0.001500,0.249996,0,0);}
.m10d_c00056{transform:matrix(0.286560,0.001719,-0.001500,0.249996,0,0);-ms-transform:matrix(0.286560,0.001719,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.286560,0.001719,-0.001500,0.249996,0,0);}
.m132_c00056{transform:matrix(0.287285,0.001724,-0.001500,0.249996,0,0);-ms-transform:matrix(0.287285,0.001724,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.287285,0.001724,-0.001500,0.249996,0,0);}
.m46_c00056{transform:matrix(0.299330,0.001796,-0.001500,0.249996,0,0);-ms-transform:matrix(0.299330,0.001796,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.299330,0.001796,-0.001500,0.249996,0,0);}
.mca_c00056{transform:matrix(0.300825,0.001805,-0.001500,0.249996,0,0);-ms-transform:matrix(0.300825,0.001805,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.300825,0.001805,-0.001500,0.249996,0,0);}
.m1c4_c00056{transform:matrix(0.300830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300830,0.000000,0.000000,0.250000,0,0);}
.md7_c00056{transform:matrix(0.301640,0.001810,-0.001500,0.249996,0,0);-ms-transform:matrix(0.301640,0.001810,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.301640,0.001810,-0.001500,0.249996,0,0);}
.m6d_c00056{transform:matrix(0.308642,0.002160,-0.001750,0.249994,0,0);-ms-transform:matrix(0.308642,0.002160,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.308642,0.002160,-0.001750,0.249994,0,0);}
.m30_c00056{transform:matrix(0.308659,0.001852,-0.001500,0.249996,0,0);-ms-transform:matrix(0.308659,0.001852,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.308659,0.001852,-0.001500,0.249996,0,0);}
.m6e_c00056{transform:matrix(0.314077,0.002199,-0.001750,0.249994,0,0);-ms-transform:matrix(0.314077,0.002199,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.314077,0.002199,-0.001750,0.249994,0,0);}
.m80_c00056{transform:matrix(0.327100,0.002617,-0.002000,0.249992,0,0);-ms-transform:matrix(0.327100,0.002617,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.327100,0.002617,-0.002000,0.249992,0,0);}
.m27_c00056{transform:matrix(0.331101,0.001656,-0.001250,0.249997,0,0);-ms-transform:matrix(0.331101,0.001656,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.331101,0.001656,-0.001250,0.249997,0,0);}
.m72_c00056{transform:matrix(0.343872,0.002407,-0.001750,0.249994,0,0);-ms-transform:matrix(0.343872,0.002407,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.343872,0.002407,-0.001750,0.249994,0,0);}
.m47_c00056{transform:matrix(0.368743,0.002212,-0.001500,0.249996,0,0);-ms-transform:matrix(0.368743,0.002212,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.368743,0.002212,-0.001500,0.249996,0,0);}
.m43_c00056{transform:matrix(0.371921,0.002603,-0.001750,0.249994,0,0);-ms-transform:matrix(0.371921,0.002603,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.371921,0.002603,-0.001750,0.249994,0,0);}
.m4_c00056{transform:matrix(0.379030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379030,0.000000,0.000000,0.250000,0,0);}
.m5b_c00056{transform:matrix(0.399250,0.003993,-0.002500,0.249988,0,0);-ms-transform:matrix(0.399250,0.003993,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.399250,0.003993,-0.002500,0.249988,0,0);}
.m8_c00056{transform:matrix(0.402985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402985,0.000000,0.000000,0.250000,0,0);}
.m5e_c00056{transform:matrix(0.407730,0.002854,-0.001750,0.249994,0,0);-ms-transform:matrix(0.407730,0.002854,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.407730,0.002854,-0.001750,0.249994,0,0);}
.m9_c00056{transform:matrix(0.434920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434920,0.000000,0.000000,0.250000,0,0);}
.m98_c00056{transform:matrix(0.438407,0.002630,-0.001500,0.249996,0,0);-ms-transform:matrix(0.438407,0.002630,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.438407,0.002630,-0.001500,0.249996,0,0);}
.m5a_c00056{transform:matrix(0.514724,0.005147,-0.002500,0.249988,0,0);-ms-transform:matrix(0.514724,0.005147,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.514724,0.005147,-0.002500,0.249988,0,0);}
.m6_c00056{transform:matrix(0.637215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.637215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.637215,0.000000,0.000000,0.250000,0,0);}
.m1c3_c00056{transform:matrix(0.768585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.768585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.768585,0.000000,0.000000,0.250000,0,0);}
.m70_c00056{transform:matrix(0.806215,0.005644,-0.001750,0.249994,0,0);-ms-transform:matrix(0.806215,0.005644,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.806215,0.005644,-0.001750,0.249994,0,0);}
.m5c_c00056{transform:matrix(0.851597,0.008516,-0.002500,0.249988,0,0);-ms-transform:matrix(0.851597,0.008516,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.851597,0.008516,-0.002500,0.249988,0,0);}
.m42_c00056{transform:matrix(1.279249,0.008955,-0.001750,0.249994,0,0);-ms-transform:matrix(1.279249,0.008955,-0.001750,0.249994,0,0);-webkit-transform:matrix(1.279249,0.008955,-0.001750,0.249994,0,0);}
.m6f_c00056{transform:matrix(2.006176,0.014043,-0.001750,0.249994,0,0);-ms-transform:matrix(2.006176,0.014043,-0.001750,0.249994,0,0);-webkit-transform:matrix(2.006176,0.014043,-0.001750,0.249994,0,0);}
.m2c_c00056{transform:matrix(2.460309,0.012302,-0.001250,0.249997,0,0);-ms-transform:matrix(2.460309,0.012302,-0.001250,0.249997,0,0);-webkit-transform:matrix(2.460309,0.012302,-0.001250,0.249997,0,0);}
.m1c2_c00056{transform:matrix(2.462030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.462030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.462030,0.000000,0.000000,0.250000,0,0);}
.m1c1_c00056{transform:matrix(2.688390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.688390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.688390,0.000000,0.000000,0.250000,0,0);}
.m3_c00056{transform:matrix(6.212610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(6.212610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(6.212610,0.000000,0.000000,0.250000,0,0);}
.me6_c00056{transform:matrix(7.812872,0.039064,-0.001250,0.249997,0,0);-ms-transform:matrix(7.812872,0.039064,-0.001250,0.249997,0,0);-webkit-transform:matrix(7.812872,0.039064,-0.001250,0.249997,0,0);}
.me5_c00056{transform:matrix(18.443579,0.092218,-0.001250,0.249997,0,0);-ms-transform:matrix(18.443579,0.092218,-0.001250,0.249997,0,0);-webkit-transform:matrix(18.443579,0.092218,-0.001250,0.249997,0,0);}
.v0_c00056{vertical-align:0.000000px;}
.ls0_c00056{letter-spacing:0.000000px;}
.sc__c00056{text-shadow:none;}
.sc0_c00056{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__c00056{-webkit-text-stroke:0px transparent;}
.sc0_c00056{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00056{word-spacing:0.000000px;}
.fc0_c00056{color:transparent;}
.fs12_c00056{font-size:12.000000px;}
.fs11_c00056{font-size:18.000000px;}
.fsb_c00056{font-size:18.000225px;}
.fs0_c00056{font-size:24.000000px;}
.fse_c00056{font-size:48.000600px;}
.fsc_c00056{font-size:48.000864px;}
.fsf_c00056{font-size:54.000675px;}
.fsd_c00056{font-size:54.000972px;}
.fs2_c00056{font-size:60.001080px;}
.fs7_c00056{font-size:60.001470px;}
.fsa_c00056{font-size:60.001920px;}
.fs10_c00056{font-size:66.000000px;}
.fs3_c00056{font-size:66.000825px;}
.fs4_c00056{font-size:66.001188px;}
.fs9_c00056{font-size:66.001617px;}
.fs5_c00056{font-size:72.001764px;}
.fs6_c00056{font-size:84.004200px;}
.fs8_c00056{font-size:90.002205px;}
.fs1_c00056{font-size:96.001728px;}
.y0_c00056{bottom:0.000000px;}
.y1e6_c00056{bottom:89.370000px;}
.y1e5_c00056{bottom:111.510000px;}
.y1e2_c00056{bottom:126.163500px;}
.y1de_c00056{bottom:143.639408px;}
.y1e1_c00056{bottom:143.639445px;}
.y1df_c00056{bottom:143.639707px;}
.y1e0_c00056{bottom:143.639715px;}
.y1dd_c00056{bottom:154.638413px;}
.y1dc_c00056{bottom:154.807110px;}
.y1db_c00056{bottom:155.006985px;}
.y1da_c00056{bottom:155.152740px;}
.y1d9_c00056{bottom:155.245935px;}
.y1d8_c00056{bottom:155.579392px;}
.y1d7_c00056{bottom:155.985758px;}
.y1d6_c00056{bottom:156.080258px;}
.y1d5_c00056{bottom:156.635115px;}
.y1d4_c00056{bottom:156.747157px;}
.y1d3_c00056{bottom:156.840248px;}
.y1d2_c00056{bottom:157.125165px;}
.y1d1_c00056{bottom:157.428907px;}
.y1d0_c00056{bottom:157.531500px;}
.y1cf_c00056{bottom:157.585432px;}
.y1ce_c00056{bottom:157.950000px;}
.y1cd_c00056{bottom:168.781122px;}
.y1cc_c00056{bottom:168.905889px;}
.y1cb_c00056{bottom:169.168347px;}
.y1ca_c00056{bottom:169.286616px;}
.y1c9_c00056{bottom:169.479297px;}
.y1c8_c00056{bottom:169.939494px;}
.y1c7_c00056{bottom:170.159823px;}
.y1c6_c00056{bottom:170.305524px;}
.y1c5_c00056{bottom:170.712243px;}
.y1c4_c00056{bottom:170.969832px;}
.y1c3_c00056{bottom:171.073512px;}
.y1c2_c00056{bottom:171.175482px;}
.y1c1_c00056{bottom:171.365085px;}
.y1c0_c00056{bottom:171.739341px;}
.y1bf_c00056{bottom:171.841302px;}
.y1be_c00056{bottom:172.090854px;}
.y1bd_c00056{bottom:172.178370px;}
.y1bc_c00056{bottom:172.583352px;}
.y1bb_c00056{bottom:172.800387px;}
.y1ba_c00056{bottom:183.668448px;}
.y1b9_c00056{bottom:183.778788px;}
.y1b8_c00056{bottom:184.024137px;}
.y1b7_c00056{bottom:184.109634px;}
.y1b6_c00056{bottom:184.241439px;}
.y1b5_c00056{bottom:184.335294px;}
.y1b4_c00056{bottom:184.898433px;}
.y1b3_c00056{bottom:185.000562px;}
.y1b2_c00056{bottom:185.094261px;}
.y1b1_c00056{bottom:185.359362px;}
.y1b0_c00056{bottom:185.443239px;}
.y1af_c00056{bottom:185.780820px;}
.y1ae_c00056{bottom:185.840010px;}
.y1ad_c00056{bottom:186.106851px;}
.y1ac_c00056{bottom:186.390051px;}
.y1ab_c00056{bottom:186.485580px;}
.y1aa_c00056{bottom:186.592479px;}
.y1a9_c00056{bottom:186.971151px;}
.y1a8_c00056{bottom:187.109502px;}
.y1a7_c00056{bottom:198.107721px;}
.y1a6_c00056{bottom:198.387597px;}
.y1a5_c00056{bottom:198.517617px;}
.y1a4_c00056{bottom:198.624606px;}
.y1a3_c00056{bottom:198.985155px;}
.y1a2_c00056{bottom:199.128303px;}
.y1a1_c00056{bottom:199.492173px;}
.y1a0_c00056{bottom:199.811493px;}
.y19f_c00056{bottom:200.025492px;}
.y19e_c00056{bottom:200.173782px;}
.y19d_c00056{bottom:200.545893px;}
.y19c_c00056{bottom:200.621613px;}
.y19b_c00056{bottom:200.717142px;}
.y19a_c00056{bottom:200.796213px;}
.y199_c00056{bottom:200.924586px;}
.y198_c00056{bottom:200.998713px;}
.y197_c00056{bottom:201.089181px;}
.y196_c00056{bottom:201.420153px;}
.y195_c00056{bottom:212.192352px;}
.y194_c00056{bottom:212.386632px;}
.y193_c00056{bottom:212.612118px;}
.y192_c00056{bottom:212.725788px;}
.y191_c00056{bottom:213.079737px;}
.y190_c00056{bottom:213.163605px;}
.y18f_c00056{bottom:213.295365px;}
.y18e_c00056{bottom:213.372795px;}
.y18d_c00056{bottom:213.496263px;}
.y18c_c00056{bottom:213.845304px;}
.y18b_c00056{bottom:214.029753px;}
.y18a_c00056{bottom:214.289913px;}
.y189_c00056{bottom:214.599402px;}
.y188_c00056{bottom:214.739292px;}
.y187_c00056{bottom:215.024184px;}
.y186_c00056{bottom:215.137782px;}
.y185_c00056{bottom:215.223462px;}
.y184_c00056{bottom:215.399571px;}
.y183_c00056{bottom:215.656371px;}
.y182_c00056{bottom:215.730453px;}
.y17b_c00056{bottom:228.330900px;}
.y177_c00056{bottom:228.331182px;}
.y179_c00056{bottom:228.331311px;}
.y17a_c00056{bottom:228.331380px;}
.y178_c00056{bottom:228.331611px;}
.y17c_c00056{bottom:228.331629px;}
.y176_c00056{bottom:228.331842px;}
.y16d_c00056{bottom:228.332124px;}
.y175_c00056{bottom:228.332313px;}
.y17d_c00056{bottom:228.332349px;}
.y174_c00056{bottom:228.332553px;}
.y17f_c00056{bottom:228.332718px;}
.y171_c00056{bottom:228.332724px;}
.y16e_c00056{bottom:228.332784px;}
.y173_c00056{bottom:228.332844px;}
.y180_c00056{bottom:228.333027px;}
.y17e_c00056{bottom:228.333078px;}
.y170_c00056{bottom:228.333204px;}
.y172_c00056{bottom:228.333384px;}
.y181_c00056{bottom:228.333447px;}
.y16f_c00056{bottom:228.333504px;}
.y16c_c00056{bottom:241.386792px;}
.y16b_c00056{bottom:241.561200px;}
.y16a_c00056{bottom:241.864152px;}
.y169_c00056{bottom:241.976139px;}
.y168_c00056{bottom:242.153988px;}
.y167_c00056{bottom:242.356497px;}
.y166_c00056{bottom:242.570466px;}
.y165_c00056{bottom:242.767986px;}
.y164_c00056{bottom:242.995155px;}
.y163_c00056{bottom:243.113724px;}
.y162_c00056{bottom:243.334422px;}
.y161_c00056{bottom:243.449595px;}
.y160_c00056{bottom:243.752466px;}
.y15f_c00056{bottom:243.828186px;}
.y15e_c00056{bottom:244.086615px;}
.y15d_c00056{bottom:244.391106px;}
.y15c_c00056{bottom:244.621617px;}
.y1e4_c00056{bottom:249.480000px;}
.y151_c00056{bottom:257.492142px;}
.y14f_c00056{bottom:257.492502px;}
.y152_c00056{bottom:257.492562px;}
.y14a_c00056{bottom:257.492742px;}
.y150_c00056{bottom:257.492862px;}
.y14b_c00056{bottom:257.493102px;}
.y14e_c00056{bottom:257.493162px;}
.y149_c00056{bottom:257.493282px;}
.y148_c00056{bottom:257.493342px;}
.y159_c00056{bottom:257.493411px;}
.y153_c00056{bottom:257.493462px;}
.y156_c00056{bottom:257.493531px;}
.y154_c00056{bottom:257.493702px;}
.y14c_c00056{bottom:257.493762px;}
.y157_c00056{bottom:257.493771px;}
.y15a_c00056{bottom:257.493780px;}
.y15b_c00056{bottom:257.493789px;}
.y14d_c00056{bottom:257.493822px;}
.y158_c00056{bottom:257.493831px;}
.y155_c00056{bottom:257.493882px;}
.y147_c00056{bottom:270.427674px;}
.y146_c00056{bottom:270.501801px;}
.y145_c00056{bottom:270.595710px;}
.y144_c00056{bottom:270.893712px;}
.y143_c00056{bottom:271.181919px;}
.y142_c00056{bottom:271.267617px;}
.y141_c00056{bottom:271.377966px;}
.y140_c00056{bottom:271.727055px;}
.y13f_c00056{bottom:272.081004px;}
.y13e_c00056{bottom:272.164872px;}
.y13d_c00056{bottom:272.262084px;}
.y13c_c00056{bottom:272.520495px;}
.y13b_c00056{bottom:272.597853px;}
.y13a_c00056{bottom:272.864613px;}
.y139_c00056{bottom:272.987961px;}
.y138_c00056{bottom:273.371613px;}
.y137_c00056{bottom:273.638253px;}
.y136_c00056{bottom:273.779844px;}
.y135_c00056{bottom:284.883111px;}
.y134_c00056{bottom:284.955672px;}
.y133_c00056{bottom:285.026550px;}
.y132_c00056{bottom:285.173049px;}
.y131_c00056{bottom:285.591357px;}
.y130_c00056{bottom:285.675225px;}
.y12f_c00056{bottom:285.928848px;}
.y12e_c00056{bottom:286.085286px;}
.y12d_c00056{bottom:286.182444px;}
.y12c_c00056{bottom:286.681353px;}
.y12b_c00056{bottom:286.788333px;}
.y12a_c00056{bottom:286.882122px;}
.y129_c00056{bottom:287.217993px;}
.y128_c00056{bottom:287.308533px;}
.y127_c00056{bottom:287.837073px;}
.y126_c00056{bottom:287.914413px;}
.y125_c00056{bottom:288.059253px;}
.y124_c00056{bottom:288.102075px;}
.y123_c00056{bottom:288.358875px;}
.y122_c00056{bottom:299.254992px;}
.y121_c00056{bottom:299.333952px;}
.y120_c00056{bottom:299.655021px;}
.y11f_c00056{bottom:299.730759px;}
.y11e_c00056{bottom:299.870748px;}
.y11d_c00056{bottom:300.051828px;}
.y11c_c00056{bottom:300.140757px;}
.y11b_c00056{bottom:300.211416px;}
.y11a_c00056{bottom:300.415626px;}
.y119_c00056{bottom:300.675786px;}
.y118_c00056{bottom:300.754764px;}
.y117_c00056{bottom:300.840252px;}
.y116_c00056{bottom:301.110333px;}
.y115_c00056{bottom:301.202421px;}
.y114_c00056{bottom:301.283184px;}
.y113_c00056{bottom:301.558164px;}
.y112_c00056{bottom:301.633893px;}
.y111_c00056{bottom:301.946733px;}
.y110_c00056{bottom:302.170653px;}
.y10f_c00056{bottom:302.241522px;}
.y10e_c00056{bottom:302.371461px;}
.y10d_c00056{bottom:302.669472px;}
.y10c_c00056{bottom:313.491237px;}
.y10b_c00056{bottom:313.677555px;}
.y10a_c00056{bottom:313.805553px;}
.y109_c00056{bottom:313.918953px;}
.y108_c00056{bottom:314.272122px;}
.y107_c00056{bottom:314.341692px;}
.y106_c00056{bottom:314.656071px;}
.y105_c00056{bottom:314.989791px;}
.y104_c00056{bottom:315.119400px;}
.y103_c00056{bottom:315.305610px;}
.y102_c00056{bottom:315.679929px;}
.y101_c00056{bottom:316.279338px;}
.y100_c00056{bottom:316.408938px;}
.yff_c00056{bottom:316.473630px;}
.yfe_c00056{bottom:316.805802px;}
.yfd_c00056{bottom:316.953150px;}
.yfc_c00056{bottom:317.520249px;}
.yfb_c00056{bottom:327.599019px;}
.yfa_c00056{bottom:327.688128px;}
.yf9_c00056{bottom:328.196808px;}
.yf8_c00056{bottom:328.443075px;}
.yf7_c00056{bottom:328.600125px;}
.yf6_c00056{bottom:328.898304px;}
.yf5_c00056{bottom:329.068404px;}
.yf4_c00056{bottom:329.431311px;}
.yf3_c00056{bottom:329.583501px;}
.yf2_c00056{bottom:330.050160px;}
.yf1_c00056{bottom:330.200739px;}
.yf0_c00056{bottom:330.600960px;}
.yef_c00056{bottom:330.733800px;}
.yee_c00056{bottom:330.804981px;}
.yed_c00056{bottom:331.402860px;}
.yec_c00056{bottom:331.560000px;}
.yeb_c00056{bottom:346.761457px;}
.yea_c00056{bottom:349.654500px;}
.y1e3_c00056{bottom:355.860000px;}
.ye9_c00056{bottom:359.473077px;}
.ye8_c00056{bottom:362.880000px;}
.ye7_c00056{bottom:383.389782px;}
.ye6_c00056{bottom:384.863454px;}
.ye5_c00056{bottom:386.347968px;}
.ye4_c00056{bottom:386.679684px;}
.ye3_c00056{bottom:387.078639px;}
.ye2_c00056{bottom:387.203577px;}
.ye1_c00056{bottom:387.647259px;}
.ye0_c00056{bottom:387.869775px;}
.ydf_c00056{bottom:388.062177px;}
.yde_c00056{bottom:388.190337px;}
.ydd_c00056{bottom:388.281444px;}
.ydc_c00056{bottom:388.565097px;}
.ydb_c00056{bottom:389.878506px;}
.yda_c00056{bottom:403.108395px;}
.yd9_c00056{bottom:403.647981px;}
.yd8_c00056{bottom:403.876302px;}
.yd7_c00056{bottom:404.278188px;}
.yd6_c00056{bottom:404.526048px;}
.yd5_c00056{bottom:404.686446px;}
.yd4_c00056{bottom:404.911509px;}
.yd3_c00056{bottom:405.263148px;}
.yd2_c00056{bottom:405.436506px;}
.yd1_c00056{bottom:405.572604px;}
.yd0_c00056{bottom:406.035924px;}
.ycf_c00056{bottom:406.325895px;}
.yce_c00056{bottom:407.158638px;}
.ycd_c00056{bottom:418.608024px;}
.ycc_c00056{bottom:419.738784px;}
.ycb_c00056{bottom:421.075320px;}
.yca_c00056{bottom:421.310238px;}
.yc9_c00056{bottom:421.647198px;}
.yc8_c00056{bottom:421.814067px;}
.yc7_c00056{bottom:421.976085px;}
.yc6_c00056{bottom:422.202768px;}
.yc5_c00056{bottom:422.366505px;}
.yc4_c00056{bottom:422.633796px;}
.yc3_c00056{bottom:422.808774px;}
.yc2_c00056{bottom:423.053394px;}
.yc1_c00056{bottom:423.150594px;}
.yc0_c00056{bottom:423.649635px;}
.ybf_c00056{bottom:424.169520px;}
.ybe_c00056{bottom:435.090105px;}
.ybd_c00056{bottom:436.212783px;}
.ybc_c00056{bottom:436.282317px;}
.ybb_c00056{bottom:437.550948px;}
.yba_c00056{bottom:437.784246px;}
.yb9_c00056{bottom:438.121206px;}
.yb8_c00056{bottom:438.286455px;}
.yb7_c00056{bottom:438.448473px;}
.yb6_c00056{bottom:438.673527px;}
.yb5_c00056{bottom:438.840504px;}
.yb4_c00056{bottom:439.107813px;}
.yb3_c00056{bottom:439.290882px;}
.yb2_c00056{bottom:439.533882px;}
.yb1_c00056{bottom:439.624602px;}
.yb0_c00056{bottom:440.125227px;}
.yaf_c00056{bottom:440.640000px;}
.yae_c00056{bottom:452.576367px;}
.yad_c00056{bottom:453.918173px;}
.yac_c00056{bottom:455.454795px;}
.yab_c00056{bottom:455.723186px;}
.yaa_c00056{bottom:456.121965px;}
.ya9_c00056{bottom:456.316666px;}
.ya8_c00056{bottom:456.503777px;}
.ya7_c00056{bottom:456.770120px;}
.ya6_c00056{bottom:456.959277px;}
.ya5_c00056{bottom:457.271117px;}
.ya4_c00056{bottom:457.484697px;}
.ya3_c00056{bottom:457.766318px;}
.ya2_c00056{bottom:457.875938px;}
.ya1_c00056{bottom:458.460000px;}
.ya0_c00056{bottom:472.031469px;}
.y9f_c00056{bottom:472.886559px;}
.y9e_c00056{bottom:473.372910px;}
.y9d_c00056{bottom:473.602923px;}
.y9c_c00056{bottom:473.946363px;}
.y9b_c00056{bottom:474.111621px;}
.y9a_c00056{bottom:474.272010px;}
.y99_c00056{bottom:474.495444px;}
.y98_c00056{bottom:474.662430px;}
.y97_c00056{bottom:474.931341px;}
.y96_c00056{bottom:475.103079px;}
.y95_c00056{bottom:475.350939px;}
.y94_c00056{bottom:475.449759px;}
.y93_c00056{bottom:475.955685px;}
.y92_c00056{bottom:476.010000px;}
.y91_c00056{bottom:488.793096px;}
.y90_c00056{bottom:490.581624px;}
.y8f_c00056{bottom:490.886208px;}
.y8e_c00056{bottom:491.344116px;}
.y8d_c00056{bottom:491.564460px;}
.y8c_c00056{bottom:491.782644px;}
.y8b_c00056{bottom:492.080484px;}
.y8a_c00056{bottom:492.301020px;}
.y89_c00056{bottom:492.657408px;}
.y88_c00056{bottom:492.901500px;}
.y87_c00056{bottom:493.225512px;}
.y86_c00056{bottom:493.350792px;}
.y85_c00056{bottom:494.100000px;}
.y84_c00056{bottom:506.606364px;}
.y83_c00056{bottom:508.397052px;}
.y82_c00056{bottom:508.705956px;}
.y81_c00056{bottom:509.159544px;}
.y80_c00056{bottom:509.384208px;}
.y7f_c00056{bottom:509.598060px;}
.y7e_c00056{bottom:509.900244px;}
.y7d_c00056{bottom:510.118608px;}
.y7c_c00056{bottom:510.477168px;}
.y7b_c00056{bottom:510.710460px;}
.y7a_c00056{bottom:511.036608px;}
.y79_c00056{bottom:511.166220px;}
.y78_c00056{bottom:511.844700px;}
.y77_c00056{bottom:511.920000px;}
.y76_c00056{bottom:524.016039px;}
.y75_c00056{bottom:525.679281px;}
.y74_c00056{bottom:525.843722px;}
.y73_c00056{bottom:526.248181px;}
.y72_c00056{bottom:526.440972px;}
.y71_c00056{bottom:526.628103px;}
.y70_c00056{bottom:526.890635px;}
.y6f_c00056{bottom:527.085462px;}
.y6e_c00056{bottom:527.444562px;}
.y6d_c00056{bottom:527.607112px;}
.y6c_c00056{bottom:527.888712px;}
.y6b_c00056{bottom:528.002123px;}
.y6a_c00056{bottom:528.660000px;}
.y69_c00056{bottom:541.837381px;}
.y68_c00056{bottom:542.904875px;}
.y67_c00056{bottom:544.815685px;}
.y66_c00056{bottom:545.713876px;}
.y65_c00056{bottom:546.481500px;}
.y64_c00056{bottom:560.142817px;}
.y63_c00056{bottom:560.362236px;}
.y62_c00056{bottom:560.900917px;}
.y61_c00056{bottom:561.125649px;}
.y60_c00056{bottom:561.569988px;}
.y5f_c00056{bottom:562.074649px;}
.y5e_c00056{bottom:562.274989px;}
.y5d_c00056{bottom:562.524291px;}
.y5c_c00056{bottom:562.721008px;}
.y5b_c00056{bottom:563.091448px;}
.y5a_c00056{bottom:563.248318px;}
.y59_c00056{bottom:563.533719px;}
.y58_c00056{bottom:563.643339px;}
.y57_c00056{bottom:564.229260px;}
.y56_c00056{bottom:564.301500px;}
.y55_c00056{bottom:577.710990px;}
.y54_c00056{bottom:579.738375px;}
.y53_c00056{bottom:580.250895px;}
.y52_c00056{bottom:580.805820px;}
.y51_c00056{bottom:581.196645px;}
.y50_c00056{bottom:581.528490px;}
.y4f_c00056{bottom:582.125505px;}
.y4e_c00056{bottom:582.443820px;}
.y4d_c00056{bottom:583.181235px;}
.y4c_c00056{bottom:584.280000px;}
.y4b_c00056{bottom:595.520568px;}
.y4a_c00056{bottom:595.894743px;}
.y49_c00056{bottom:596.026017px;}
.y48_c00056{bottom:596.176677px;}
.y47_c00056{bottom:596.610819px;}
.y46_c00056{bottom:597.041784px;}
.y45_c00056{bottom:597.179484px;}
.y44_c00056{bottom:597.351213px;}
.y43_c00056{bottom:597.597336px;}
.y42_c00056{bottom:597.777282px;}
.y41_c00056{bottom:598.055931px;}
.y40_c00056{bottom:598.214691px;}
.y3f_c00056{bottom:598.470660px;}
.y3e_c00056{bottom:598.611600px;}
.y3d_c00056{bottom:599.067063px;}
.y3c_c00056{bottom:599.130000px;}
.y3b_c00056{bottom:612.893268px;}
.y3a_c00056{bottom:613.788750px;}
.y39_c00056{bottom:614.249942px;}
.y38_c00056{bottom:615.565854px;}
.y37_c00056{bottom:615.715112px;}
.y36_c00056{bottom:616.206365px;}
.y35_c00056{bottom:616.722492px;}
.y34_c00056{bottom:617.490000px;}
.y33_c00056{bottom:630.622152px;}
.y32_c00056{bottom:630.997956px;}
.y31_c00056{bottom:631.129230px;}
.y30_c00056{bottom:631.278270px;}
.y2f_c00056{bottom:631.624932px;}
.y2e_c00056{bottom:632.144970px;}
.y2d_c00056{bottom:632.281059px;}
.y2c_c00056{bottom:632.451177px;}
.y2b_c00056{bottom:632.700522px;}
.y2a_c00056{bottom:632.877228px;}
.y29_c00056{bottom:633.155859px;}
.y28_c00056{bottom:633.314628px;}
.y27_c00056{bottom:633.572217px;}
.y26_c00056{bottom:633.711537px;}
.y25_c00056{bottom:634.230000px;}
.y24_c00056{bottom:647.419725px;}
.y23_c00056{bottom:647.618250px;}
.y22_c00056{bottom:647.656050px;}
.y21_c00056{bottom:648.819488px;}
.y20_c00056{bottom:648.843968px;}
.y1f_c00056{bottom:649.053037px;}
.y1e_c00056{bottom:649.636493px;}
.y1d_c00056{bottom:649.802543px;}
.y19_c00056{bottom:650.152104px;}
.y1a_c00056{bottom:650.152113px;}
.y17_c00056{bottom:650.152635px;}
.y18_c00056{bottom:650.152764px;}
.y1c_c00056{bottom:650.314185px;}
.y1b_c00056{bottom:650.700000px;}
.y16_c00056{bottom:665.173152px;}
.y15_c00056{bottom:665.550576px;}
.y14_c00056{bottom:665.670492px;}
.y13_c00056{bottom:665.819532px;}
.y12_c00056{bottom:666.258543px;}
.y11_c00056{bottom:666.689472px;}
.y10_c00056{bottom:666.819099px;}
.yf_c00056{bottom:666.994050px;}
.ye_c00056{bottom:667.245087px;}
.yd_c00056{bottom:667.421730px;}
.yc_c00056{bottom:667.702008px;}
.yb_c00056{bottom:667.854288px;}
.ya_c00056{bottom:668.115126px;}
.y9_c00056{bottom:668.251188px;}
.y8_c00056{bottom:681.264159px;}
.y7_c00056{bottom:681.393624px;}
.y6_c00056{bottom:683.576232px;}
.y5_c00056{bottom:683.913156px;}
.y4_c00056{bottom:684.101103px;}
.y3_c00056{bottom:684.721500px;}
.y2_c00056{bottom:699.681000px;}
.y1_c00056{bottom:708.780000px;}
.h14_c00056{height:12.000000px;}
.h13_c00056{height:18.000000px;}
.hd_c00056{height:18.000225px;}
.h2_c00056{height:24.000000px;}
.h10_c00056{height:48.000600px;}
.he_c00056{height:48.000864px;}
.h11_c00056{height:54.000675px;}
.hf_c00056{height:54.000972px;}
.h4_c00056{height:60.001080px;}
.h9_c00056{height:60.001470px;}
.hc_c00056{height:60.001920px;}
.h12_c00056{height:66.000000px;}
.h5_c00056{height:66.000825px;}
.h6_c00056{height:66.001188px;}
.hb_c00056{height:66.001617px;}
.h7_c00056{height:72.001764px;}
.h8_c00056{height:84.004200px;}
.ha_c00056{height:90.002205px;}
.h3_c00056{height:96.001728px;}
.h0_c00056{height:711.720000px;}
.h1_c00056{height:711.750000px;}
.w1_c00056{width:945.750000px;}
.w0_c00056{width:946.050000px;}
.x0_c00056{left:0.000000px;}
.x86_c00056{left:1.012656px;}
.x42_c00056{left:69.054000px;}
.x2e_c00056{left:70.663500px;}
.x26_c00056{left:72.354000px;}
.x6c_c00056{left:73.692000px;}
.x115_c00056{left:76.680000px;}
.x114_c00056{left:78.300000px;}
.x43_c00056{left:79.543500px;}
.x63_c00056{left:80.619000px;}
.x6d_c00056{left:82.744500px;}
.x74_c00056{left:84.424500px;}
.x79_c00056{left:85.782000px;}
.x80_c00056{left:86.865189px;}
.x98_c00056{left:104.191500px;}
.xa6_c00056{left:106.056594px;}
.xdf_c00056{left:107.209026px;}
.xeb_c00056{left:122.009007px;}
.x10f_c00056{left:123.387870px;}
.x9a_c00056{left:124.683000px;}
.xe0_c00056{left:129.349827px;}
.x110_c00056{left:130.950000px;}
.xc4_c00056{left:134.960352px;}
.x87_c00056{left:139.803156px;}
.x96_c00056{left:141.142500px;}
.x107_c00056{left:143.337846px;}
.x27_c00056{left:149.517000px;}
.x9b_c00056{left:150.873000px;}
.xd7_c00056{left:153.060027px;}
.xf_c00056{left:155.692500px;}
.x2f_c00056{left:157.074000px;}
.x15_c00056{left:161.395887px;}
.x53_c00056{left:163.276500px;}
.x64_c00056{left:165.429000px;}
.x6e_c00056{left:167.065500px;}
.x7a_c00056{left:169.219500px;}
.xec_c00056{left:173.309313px;}
.x6_c00056{left:178.470000px;}
.x30_c00056{left:180.294000px;}
.x23_c00056{left:181.713531px;}
.x16_c00056{left:184.072887px;}
.x81_c00056{left:186.238689px;}
.x88_c00056{left:188.131656px;}
.xf8_c00056{left:190.866543px;}
.x7_c00056{left:192.510000px;}
.xe1_c00056{left:193.612140px;}
.xba_c00056{left:195.438183px;}
.x111_c00056{left:198.990000px;}
.xa7_c00056{left:200.573094px;}
.xcc_c00056{left:201.974397px;}
.xb2_c00056{left:206.234106px;}
.xed_c00056{left:208.411020px;}
.xbb_c00056{left:210.828273px;}
.xd8_c00056{left:213.808887px;}
.xe2_c00056{left:215.752941px;}
.xcd_c00056{left:217.364955px;}
.x112_c00056{left:218.700000px;}
.x54_c00056{left:219.708000px;}
.x44_c00056{left:221.605500px;}
.x31_c00056{left:223.225500px;}
.x6f_c00056{left:224.845500px;}
.x17_c00056{left:227.545887px;}
.xf9_c00056{left:231.366786px;}
.x91_c00056{left:241.040991px;}
.x55_c00056{left:242.118000px;}
.x5f_c00056{left:243.735000px;}
.x45_c00056{left:248.065500px;}
.x32_c00056{left:249.687000px;}
.x101_c00056{left:250.808052px;}
.x28_c00056{left:251.845500px;}
.x18_c00056{left:252.925887px;}
.x75_c00056{left:254.265000px;}
.x24_c00056{left:255.694695px;}
.x10_c00056{left:259.092000px;}
.x9c_c00056{left:262.383000px;}
.x89_c00056{left:265.351656px;}
.xfa_c00056{left:266.467002px;}
.xce_c00056{left:270.826872px;}
.xa8_c00056{left:280.493094px;}
.xfb_c00056{left:281.587092px;}
.x108_c00056{left:284.006346px;}
.x29_c00056{left:285.055500px;}
.x25_c00056{left:287.555838px;}
.xc5_c00056{left:289.401270px;}
.x11_c00056{left:290.416500px;}
.xe3_c00056{left:291.894177px;}
.x46_c00056{left:294.507000px;}
.x33_c00056{left:296.125500px;}
.x69_c00056{left:297.459000px;}
.x19_c00056{left:299.638887px;}
.x82_c00056{left:300.720189px;}
.xe4_c00056{left:305.934681px;}
.x5c_c00056{left:307.788000px;}
.xcf_c00056{left:310.518303px;}
.xa9_c00056{left:312.875094px;}
.x8a_c00056{left:316.927656px;}
.x92_c00056{left:318.803532px;}
.x3d_c00056{left:323.389500px;}
.x47_c00056{left:324.498000px;}
.x34_c00056{left:325.576500px;}
.x7b_c00056{left:327.732000px;}
.x1a_c00056{left:329.079387px;}
.xee_c00056{left:333.421776px;}
.xbc_c00056{left:334.759020px;}
.xd0_c00056{left:341.569419px;}
.xc6_c00056{left:342.861594px;}
.x3e_c00056{left:344.712000px;}
.x12_c00056{left:346.570500px;}
.x8_c00056{left:348.570000px;}
.x9d_c00056{left:351.226500px;}
.xe5_c00056{left:354.264918px;}
.xfc_c00056{left:356.106042px;}
.x56_c00056{left:358.755000px;}
.x60_c00056{left:360.372000px;}
.x65_c00056{left:361.449000px;}
.x70_c00056{left:363.357000px;}
.x48_c00056{left:365.518500px;}
.x35_c00056{left:367.134000px;}
.x10c_c00056{left:369.577500px;}
.x1b_c00056{left:370.918887px;}
.xe6_c00056{left:372.625575px;}
.x8b_c00056{left:375.534156px;}
.x50_c00056{left:377.385000px;}
.x93_c00056{left:382.250154px;}
.xb3_c00056{left:383.896677px;}
.xfd_c00056{left:385.821222px;}
.x57_c00056{left:387.375000px;}
.x6a_c00056{left:389.529000px;}
.x76_c00056{left:390.615000px;}
.x7c_c00056{left:392.244000px;}
.x49_c00056{left:394.140000px;}
.x36_c00056{left:395.487000px;}
.x1c_c00056{left:400.077387px;}
.x2a_c00056{left:401.746500px;}
.xd9_c00056{left:408.208548px;}
.xc7_c00056{left:409.823490px;}
.x8c_c00056{left:413.044656px;}
.x61_c00056{left:414.646500px;}
.x4a_c00056{left:417.090000px;}
.x37_c00056{left:418.168500px;}
.x7d_c00056{left:419.785500px;}
.x1d_c00056{left:421.681887px;}
.xc8_c00056{left:429.275607px;}
.xda_c00056{left:431.970192px;}
.x8d_c00056{left:439.777656px;}
.xbd_c00056{left:441.949659px;}
.x2b_c00056{left:443.560500px;}
.xc9_c00056{left:446.003706px;}
.xef_c00056{left:447.363960px;}
.x9_c00056{left:448.740000px;}
.xd1_c00056{left:450.383343px;}
.x9e_c00056{left:454.099500px;}
.x109_c00056{left:455.189346px;}
.x94_c00056{left:457.065204px;}
.x58_c00056{left:459.469500px;}
.x51_c00056{left:471.960000px;}
.x66_c00056{left:472.962000px;}
.x6b_c00056{left:474.310500px;}
.x77_c00056{left:475.398000px;}
.x83_c00056{left:476.764689px;}
.x9f_c00056{left:479.464500px;}
.x8e_c00056{left:481.087656px;}
.xf0_c00056{left:484.355685px;}
.x4b_c00056{left:488.917500px;}
.xd2_c00056{left:491.694828px;}
.x1e_c00056{left:493.503387px;}
.x62_c00056{left:495.918000px;}
.x10d_c00056{left:499.449000px;}
.x38_c00056{left:504.841500px;}
.xa_c00056{left:507.060000px;}
.x102_c00056{left:510.024609px;}
.x67_c00056{left:511.575000px;}
.x71_c00056{left:513.207000px;}
.x7e_c00056{left:514.828500px;}
.x84_c00056{left:515.917689px;}
.x52_c00056{left:523.212000px;}
.xaa_c00056{left:527.799594px;}
.x3f_c00056{left:532.699500px;}
.xa0_c00056{left:539.949000px;}
.xbe_c00056{left:541.851762px;}
.xe7_c00056{left:545.428794px;}
.x8f_c00056{left:548.068656px;}
.x103_c00056{left:549.162843px;}
.xf1_c00056{left:554.029599px;}
.x59_c00056{left:555.051000px;}
.xb4_c00056{left:557.240712px;}
.xdb_c00056{left:559.413948px;}
.x4c_c00056{left:561.274500px;}
.x39_c00056{left:562.618500px;}
.xfe_c00056{left:565.103793px;}
.x1f_c00056{left:566.671887px;}
.xa1_c00056{left:568.299000px;}
.xb_c00056{left:572.400000px;}
.x113_c00056{left:576.720000px;}
.xf2_c00056{left:578.857752px;}
.x5d_c00056{left:580.761000px;}
.xab_c00056{left:583.419594px;}
.x4d_c00056{left:586.384500px;}
.x3a_c00056{left:587.458500px;}
.x20_c00056{left:591.511887px;}
.xbf_c00056{left:592.618068px;}
.x72_c00056{left:594.265500px;}
.x40_c00056{left:598.584000px;}
.xdc_c00056{left:599.915691px;}
.xc_c00056{left:601.830000px;}
.xe8_c00056{left:604.559427px;}
.x4e_c00056{left:608.263500px;}
.x3b_c00056{left:609.337500px;}
.x21_c00056{left:611.497887px;}
.xd3_c00056{left:616.167810px;}
.xa2_c00056{left:617.995500px;}
.xf3_c00056{left:620.723004px;}
.xe9_c00056{left:623.190102px;}
.xd_c00056{left:625.590000px;}
.xb5_c00056{left:629.874144px;}
.x5a_c00056{left:632.005500px;}
.xac_c00056{left:635.816094px;}
.xf4_c00056{left:637.451103px;}
.xe_c00056{left:643.410000px;}
.xad_c00056{left:647.411094px;}
.xdd_c00056{left:657.972042px;}
.xc0_c00056{left:660.116973px;}
.x104_c00056{left:661.770018px;}
.x5b_c00056{left:663.351000px;}
.xb6_c00056{left:666.054360px;}
.x4f_c00056{left:670.626000px;}
.x3c_c00056{left:671.971500px;}
.x22_c00056{left:674.401887px;}
.x90_c00056{left:676.053156px;}
.x1_c00056{left:681.210000px;}
.x99_c00056{left:682.800000px;}
.xca_c00056{left:683.887146px;}
.xa3_c00056{left:685.215000px;}
.xff_c00056{left:687.135522px;}
.x2c_c00056{left:688.704000px;}
.xd4_c00056{left:690.690492px;}
.x10a_c00056{left:692.793846px;}
.xb7_c00056{left:694.136031px;}
.x10e_c00056{left:695.203500px;}
.xea_c00056{left:703.381491px;}
.xae_c00056{left:706.272594px;}
.x97_c00056{left:708.963000px;}
.x13_c00056{left:710.338500px;}
.x2_c00056{left:712.800000px;}
.x95_c00056{left:716.518647px;}
.xde_c00056{left:718.464402px;}
.x105_c00056{left:724.129896px;}
.xaf_c00056{left:725.172594px;}
.x41_c00056{left:726.510000px;}
.x2d_c00056{left:728.409000px;}
.xf5_c00056{left:730.888161px;}
.x14_c00056{left:731.916000px;}
.x5e_c00056{left:733.260000px;}
.x68_c00056{left:735.411000px;}
.x73_c00056{left:736.780500px;}
.x7f_c00056{left:737.856000px;}
.xc1_c00056{left:743.835477px;}
.xb0_c00056{left:746.505594px;}
.xd5_c00056{left:750.631152px;}
.x3_c00056{left:752.490000px;}
.x10b_c00056{left:756.248346px;}
.xcb_c00056{left:762.456123px;}
.x100_c00056{left:768.952008px;}
.xa4_c00056{left:769.995000px;}
.x4_c00056{left:771.660000px;}
.xb8_c00056{left:773.521008px;}
.xf6_c00056{left:775.969431px;}
.xb1_c00056{left:777.558594px;}
.xa5_c00056{left:784.846500px;}
.xc2_c00056{left:787.565247px;}
.xb9_c00056{left:789.181098px;}
.x106_c00056{left:795.411828px;}
.xc3_c00056{left:802.158837px;}
.xd6_c00056{left:804.631596px;}
.xf7_c00056{left:814.849665px;}
.x5_c00056{left:898.830000px;}
.x78_c00056{left:924.943500px;}
.x85_c00056{left:927.133689px;}
@media print{
.v0_c00056{vertical-align:0.000000pt;}
.ls0_c00056{letter-spacing:0.000000pt;}
.ws0_c00056{word-spacing:0.000000pt;}
.fs12_c00056{font-size:10.666667pt;}
.fs11_c00056{font-size:16.000000pt;}
.fsb_c00056{font-size:16.000200pt;}
.fs0_c00056{font-size:21.333333pt;}
.fse_c00056{font-size:42.667200pt;}
.fsc_c00056{font-size:42.667435pt;}
.fsf_c00056{font-size:48.000600pt;}
.fsd_c00056{font-size:48.000864pt;}
.fs2_c00056{font-size:53.334293pt;}
.fs7_c00056{font-size:53.334640pt;}
.fsa_c00056{font-size:53.335040pt;}
.fs10_c00056{font-size:58.666667pt;}
.fs3_c00056{font-size:58.667400pt;}
.fs4_c00056{font-size:58.667723pt;}
.fs9_c00056{font-size:58.668104pt;}
.fs5_c00056{font-size:64.001568pt;}
.fs6_c00056{font-size:74.670400pt;}
.fs8_c00056{font-size:80.001960pt;}
.fs1_c00056{font-size:85.334869pt;}
.y0_c00056{bottom:0.000000pt;}
.y1e6_c00056{bottom:79.440000pt;}
.y1e5_c00056{bottom:99.120000pt;}
.y1e2_c00056{bottom:112.145333pt;}
.y1de_c00056{bottom:127.679473pt;}
.y1e1_c00056{bottom:127.679507pt;}
.y1df_c00056{bottom:127.679740pt;}
.y1e0_c00056{bottom:127.679747pt;}
.y1dd_c00056{bottom:137.456367pt;}
.y1dc_c00056{bottom:137.606320pt;}
.y1db_c00056{bottom:137.783987pt;}
.y1da_c00056{bottom:137.913547pt;}
.y1d9_c00056{bottom:137.996387pt;}
.y1d8_c00056{bottom:138.292793pt;}
.y1d7_c00056{bottom:138.654007pt;}
.y1d6_c00056{bottom:138.738007pt;}
.y1d5_c00056{bottom:139.231213pt;}
.y1d4_c00056{bottom:139.330807pt;}
.y1d3_c00056{bottom:139.413553pt;}
.y1d2_c00056{bottom:139.666813pt;}
.y1d1_c00056{bottom:139.936807pt;}
.y1d0_c00056{bottom:140.028000pt;}
.y1cf_c00056{bottom:140.075940pt;}
.y1ce_c00056{bottom:140.400000pt;}
.y1cd_c00056{bottom:150.027664pt;}
.y1cc_c00056{bottom:150.138568pt;}
.y1cb_c00056{bottom:150.371864pt;}
.y1ca_c00056{bottom:150.476992pt;}
.y1c9_c00056{bottom:150.648264pt;}
.y1c8_c00056{bottom:151.057328pt;}
.y1c7_c00056{bottom:151.253176pt;}
.y1c6_c00056{bottom:151.382688pt;}
.y1c5_c00056{bottom:151.744216pt;}
.y1c4_c00056{bottom:151.973184pt;}
.y1c3_c00056{bottom:152.065344pt;}
.y1c2_c00056{bottom:152.155984pt;}
.y1c1_c00056{bottom:152.324520pt;}
.y1c0_c00056{bottom:152.657192pt;}
.y1bf_c00056{bottom:152.747824pt;}
.y1be_c00056{bottom:152.969648pt;}
.y1bd_c00056{bottom:153.047440pt;}
.y1bc_c00056{bottom:153.407424pt;}
.y1bb_c00056{bottom:153.600344pt;}
.y1ba_c00056{bottom:163.260843pt;}
.y1b9_c00056{bottom:163.358923pt;}
.y1b8_c00056{bottom:163.577011pt;}
.y1b7_c00056{bottom:163.653008pt;}
.y1b6_c00056{bottom:163.770168pt;}
.y1b5_c00056{bottom:163.853595pt;}
.y1b4_c00056{bottom:164.354163pt;}
.y1b3_c00056{bottom:164.444944pt;}
.y1b2_c00056{bottom:164.528232pt;}
.y1b1_c00056{bottom:164.763877pt;}
.y1b0_c00056{bottom:164.838435pt;}
.y1af_c00056{bottom:165.138507pt;}
.y1ae_c00056{bottom:165.191120pt;}
.y1ad_c00056{bottom:165.428312pt;}
.y1ac_c00056{bottom:165.680045pt;}
.y1ab_c00056{bottom:165.764960pt;}
.y1aa_c00056{bottom:165.859981pt;}
.y1a9_c00056{bottom:166.196579pt;}
.y1a8_c00056{bottom:166.319557pt;}
.y1a7_c00056{bottom:176.095752pt;}
.y1a6_c00056{bottom:176.344531pt;}
.y1a5_c00056{bottom:176.460104pt;}
.y1a4_c00056{bottom:176.555205pt;}
.y1a3_c00056{bottom:176.875693pt;}
.y1a2_c00056{bottom:177.002936pt;}
.y1a1_c00056{bottom:177.326376pt;}
.y1a0_c00056{bottom:177.610216pt;}
.y19f_c00056{bottom:177.800437pt;}
.y19e_c00056{bottom:177.932251pt;}
.y19d_c00056{bottom:178.263016pt;}
.y19c_c00056{bottom:178.330323pt;}
.y19b_c00056{bottom:178.415237pt;}
.y19a_c00056{bottom:178.485523pt;}
.y199_c00056{bottom:178.599632pt;}
.y198_c00056{bottom:178.665523pt;}
.y197_c00056{bottom:178.745939pt;}
.y196_c00056{bottom:179.040136pt;}
.y195_c00056{bottom:188.615424pt;}
.y194_c00056{bottom:188.788117pt;}
.y193_c00056{bottom:188.988549pt;}
.y192_c00056{bottom:189.089589pt;}
.y191_c00056{bottom:189.404211pt;}
.y190_c00056{bottom:189.478760pt;}
.y18f_c00056{bottom:189.595880pt;}
.y18e_c00056{bottom:189.664707pt;}
.y18d_c00056{bottom:189.774456pt;}
.y18c_c00056{bottom:190.084715pt;}
.y18b_c00056{bottom:190.248669pt;}
.y18a_c00056{bottom:190.479923pt;}
.y189_c00056{bottom:190.755024pt;}
.y188_c00056{bottom:190.879371pt;}
.y187_c00056{bottom:191.132608pt;}
.y186_c00056{bottom:191.233584pt;}
.y185_c00056{bottom:191.309744pt;}
.y184_c00056{bottom:191.466285pt;}
.y183_c00056{bottom:191.694552pt;}
.y182_c00056{bottom:191.760403pt;}
.y17b_c00056{bottom:202.960800pt;}
.y177_c00056{bottom:202.961051pt;}
.y179_c00056{bottom:202.961165pt;}
.y17a_c00056{bottom:202.961227pt;}
.y178_c00056{bottom:202.961432pt;}
.y17c_c00056{bottom:202.961448pt;}
.y176_c00056{bottom:202.961637pt;}
.y16d_c00056{bottom:202.961888pt;}
.y175_c00056{bottom:202.962056pt;}
.y17d_c00056{bottom:202.962088pt;}
.y174_c00056{bottom:202.962269pt;}
.y17f_c00056{bottom:202.962416pt;}
.y171_c00056{bottom:202.962421pt;}
.y16e_c00056{bottom:202.962475pt;}
.y173_c00056{bottom:202.962528pt;}
.y180_c00056{bottom:202.962691pt;}
.y17e_c00056{bottom:202.962736pt;}
.y170_c00056{bottom:202.962848pt;}
.y172_c00056{bottom:202.963008pt;}
.y181_c00056{bottom:202.963064pt;}
.y16f_c00056{bottom:202.963115pt;}
.y16c_c00056{bottom:214.566037pt;}
.y16b_c00056{bottom:214.721067pt;}
.y16a_c00056{bottom:214.990357pt;}
.y169_c00056{bottom:215.089901pt;}
.y168_c00056{bottom:215.247989pt;}
.y167_c00056{bottom:215.427997pt;}
.y166_c00056{bottom:215.618192pt;}
.y165_c00056{bottom:215.793765pt;}
.y164_c00056{bottom:215.995693pt;}
.y163_c00056{bottom:216.101088pt;}
.y162_c00056{bottom:216.297264pt;}
.y161_c00056{bottom:216.399640pt;}
.y160_c00056{bottom:216.668859pt;}
.y15f_c00056{bottom:216.736165pt;}
.y15e_c00056{bottom:216.965880pt;}
.y15d_c00056{bottom:217.236539pt;}
.y15c_c00056{bottom:217.441437pt;}
.y1e4_c00056{bottom:221.760000pt;}
.y151_c00056{bottom:228.881904pt;}
.y14f_c00056{bottom:228.882224pt;}
.y152_c00056{bottom:228.882277pt;}
.y14a_c00056{bottom:228.882437pt;}
.y150_c00056{bottom:228.882544pt;}
.y14b_c00056{bottom:228.882757pt;}
.y14e_c00056{bottom:228.882811pt;}
.y149_c00056{bottom:228.882917pt;}
.y148_c00056{bottom:228.882971pt;}
.y159_c00056{bottom:228.883032pt;}
.y153_c00056{bottom:228.883077pt;}
.y156_c00056{bottom:228.883139pt;}
.y154_c00056{bottom:228.883291pt;}
.y14c_c00056{bottom:228.883344pt;}
.y157_c00056{bottom:228.883352pt;}
.y15a_c00056{bottom:228.883360pt;}
.y15b_c00056{bottom:228.883368pt;}
.y14d_c00056{bottom:228.883397pt;}
.y158_c00056{bottom:228.883405pt;}
.y155_c00056{bottom:228.883451pt;}
.y147_c00056{bottom:240.380155pt;}
.y146_c00056{bottom:240.446045pt;}
.y145_c00056{bottom:240.529520pt;}
.y144_c00056{bottom:240.794411pt;}
.y143_c00056{bottom:241.050595pt;}
.y142_c00056{bottom:241.126771pt;}
.y141_c00056{bottom:241.224859pt;}
.y140_c00056{bottom:241.535160pt;}
.y13f_c00056{bottom:241.849781pt;}
.y13e_c00056{bottom:241.924331pt;}
.y13d_c00056{bottom:242.010741pt;}
.y13c_c00056{bottom:242.240440pt;}
.y13b_c00056{bottom:242.309203pt;}
.y13a_c00056{bottom:242.546323pt;}
.y139_c00056{bottom:242.655965pt;}
.y138_c00056{bottom:242.996989pt;}
.y137_c00056{bottom:243.234003pt;}
.y136_c00056{bottom:243.359861pt;}
.y135_c00056{bottom:253.229432pt;}
.y134_c00056{bottom:253.293931pt;}
.y133_c00056{bottom:253.356933pt;}
.y132_c00056{bottom:253.487155pt;}
.y131_c00056{bottom:253.858984pt;}
.y130_c00056{bottom:253.933533pt;}
.y12f_c00056{bottom:254.158976pt;}
.y12e_c00056{bottom:254.298032pt;}
.y12d_c00056{bottom:254.384395pt;}
.y12c_c00056{bottom:254.827869pt;}
.y12b_c00056{bottom:254.922963pt;}
.y12a_c00056{bottom:255.006331pt;}
.y129_c00056{bottom:255.304883pt;}
.y128_c00056{bottom:255.385363pt;}
.y127_c00056{bottom:255.855176pt;}
.y126_c00056{bottom:255.923923pt;}
.y125_c00056{bottom:256.052669pt;}
.y124_c00056{bottom:256.090733pt;}
.y123_c00056{bottom:256.319000pt;}
.y122_c00056{bottom:266.004437pt;}
.y121_c00056{bottom:266.074624pt;}
.y120_c00056{bottom:266.360019pt;}
.y11f_c00056{bottom:266.427341pt;}
.y11e_c00056{bottom:266.551776pt;}
.y11d_c00056{bottom:266.712736pt;}
.y11c_c00056{bottom:266.791784pt;}
.y11b_c00056{bottom:266.854592pt;}
.y11a_c00056{bottom:267.036112pt;}
.y119_c00056{bottom:267.267365pt;}
.y118_c00056{bottom:267.337568pt;}
.y117_c00056{bottom:267.413557pt;}
.y116_c00056{bottom:267.653629pt;}
.y115_c00056{bottom:267.735485pt;}
.y114_c00056{bottom:267.807275pt;}
.y113_c00056{bottom:268.051701pt;}
.y112_c00056{bottom:268.119016pt;}
.y111_c00056{bottom:268.397096pt;}
.y110_c00056{bottom:268.596136pt;}
.y10f_c00056{bottom:268.659131pt;}
.y10e_c00056{bottom:268.774632pt;}
.y10d_c00056{bottom:269.039531pt;}
.y10c_c00056{bottom:278.658877pt;}
.y10b_c00056{bottom:278.824493pt;}
.y10a_c00056{bottom:278.938269pt;}
.y109_c00056{bottom:279.039069pt;}
.y108_c00056{bottom:279.352997pt;}
.y107_c00056{bottom:279.414837pt;}
.y106_c00056{bottom:279.694285pt;}
.y105_c00056{bottom:279.990925pt;}
.y104_c00056{bottom:280.106133pt;}
.y103_c00056{bottom:280.271653pt;}
.y102_c00056{bottom:280.604381pt;}
.y101_c00056{bottom:281.137189pt;}
.y100_c00056{bottom:281.252389pt;}
.yff_c00056{bottom:281.309893pt;}
.yfe_c00056{bottom:281.605157pt;}
.yfd_c00056{bottom:281.736133pt;}
.yfc_c00056{bottom:282.240221pt;}
.yfb_c00056{bottom:291.199128pt;}
.yfa_c00056{bottom:291.278336pt;}
.yf9_c00056{bottom:291.730496pt;}
.yf8_c00056{bottom:291.949400pt;}
.yf7_c00056{bottom:292.089000pt;}
.yf6_c00056{bottom:292.354048pt;}
.yf5_c00056{bottom:292.505248pt;}
.yf4_c00056{bottom:292.827832pt;}
.yf3_c00056{bottom:292.963112pt;}
.yf2_c00056{bottom:293.377920pt;}
.yf1_c00056{bottom:293.511768pt;}
.yf0_c00056{bottom:293.867520pt;}
.yef_c00056{bottom:293.985600pt;}
.yee_c00056{bottom:294.048872pt;}
.yed_c00056{bottom:294.580320pt;}
.yec_c00056{bottom:294.720000pt;}
.yeb_c00056{bottom:308.232407pt;}
.yea_c00056{bottom:310.804000pt;}
.y1e3_c00056{bottom:316.320000pt;}
.ye9_c00056{bottom:319.531624pt;}
.ye8_c00056{bottom:322.560000pt;}
.ye7_c00056{bottom:340.790917pt;}
.ye6_c00056{bottom:342.100848pt;}
.ye5_c00056{bottom:343.420416pt;}
.ye4_c00056{bottom:343.715275pt;}
.ye3_c00056{bottom:344.069901pt;}
.ye2_c00056{bottom:344.180957pt;}
.ye1_c00056{bottom:344.575341pt;}
.ye0_c00056{bottom:344.773133pt;}
.ydf_c00056{bottom:344.944157pt;}
.yde_c00056{bottom:345.058077pt;}
.ydd_c00056{bottom:345.139061pt;}
.ydc_c00056{bottom:345.391197pt;}
.ydb_c00056{bottom:346.558672pt;}
.yda_c00056{bottom:358.318573pt;}
.yd9_c00056{bottom:358.798205pt;}
.yd8_c00056{bottom:359.001157pt;}
.yd7_c00056{bottom:359.358389pt;}
.yd6_c00056{bottom:359.578709pt;}
.yd5_c00056{bottom:359.721285pt;}
.yd4_c00056{bottom:359.921341pt;}
.yd3_c00056{bottom:360.233909pt;}
.yd2_c00056{bottom:360.388005pt;}
.yd1_c00056{bottom:360.508981pt;}
.yd0_c00056{bottom:360.920821pt;}
.ycf_c00056{bottom:361.178573pt;}
.yce_c00056{bottom:361.918789pt;}
.ycd_c00056{bottom:372.096021pt;}
.ycc_c00056{bottom:373.101141pt;}
.ycb_c00056{bottom:374.289173pt;}
.yca_c00056{bottom:374.497989pt;}
.yc9_c00056{bottom:374.797509pt;}
.yc8_c00056{bottom:374.945837pt;}
.yc7_c00056{bottom:375.089853pt;}
.yc6_c00056{bottom:375.291349pt;}
.yc5_c00056{bottom:375.436893pt;}
.yc4_c00056{bottom:375.674485pt;}
.yc3_c00056{bottom:375.830021pt;}
.yc2_c00056{bottom:376.047461pt;}
.yc1_c00056{bottom:376.133861pt;}
.yc0_c00056{bottom:376.577453pt;}
.ybf_c00056{bottom:377.039573pt;}
.ybe_c00056{bottom:386.746760pt;}
.ybd_c00056{bottom:387.744696pt;}
.ybc_c00056{bottom:387.806504pt;}
.ybb_c00056{bottom:388.934176pt;}
.yba_c00056{bottom:389.141552pt;}
.yb9_c00056{bottom:389.441072pt;}
.yb8_c00056{bottom:389.587960pt;}
.yb7_c00056{bottom:389.731976pt;}
.yb6_c00056{bottom:389.932024pt;}
.yb5_c00056{bottom:390.080448pt;}
.yb4_c00056{bottom:390.318056pt;}
.yb3_c00056{bottom:390.480784pt;}
.yb2_c00056{bottom:390.696784pt;}
.yb1_c00056{bottom:390.777424pt;}
.yb0_c00056{bottom:391.222424pt;}
.yaf_c00056{bottom:391.680000pt;}
.yae_c00056{bottom:402.290104pt;}
.yad_c00056{bottom:403.482820pt;}
.yac_c00056{bottom:404.848707pt;}
.yab_c00056{bottom:405.087276pt;}
.yaa_c00056{bottom:405.441747pt;}
.ya9_c00056{bottom:405.614815pt;}
.ya8_c00056{bottom:405.781135pt;}
.ya7_c00056{bottom:406.017884pt;}
.ya6_c00056{bottom:406.186024pt;}
.ya5_c00056{bottom:406.463215pt;}
.ya4_c00056{bottom:406.653064pt;}
.ya3_c00056{bottom:406.903393pt;}
.ya2_c00056{bottom:407.000833pt;}
.ya1_c00056{bottom:407.520000pt;}
.ya0_c00056{bottom:419.583528pt;}
.y9f_c00056{bottom:420.343608pt;}
.y9e_c00056{bottom:420.775920pt;}
.y9d_c00056{bottom:420.980376pt;}
.y9c_c00056{bottom:421.285656pt;}
.y9b_c00056{bottom:421.432552pt;}
.y9a_c00056{bottom:421.575120pt;}
.y99_c00056{bottom:421.773728pt;}
.y98_c00056{bottom:421.922160pt;}
.y97_c00056{bottom:422.161192pt;}
.y96_c00056{bottom:422.313848pt;}
.y95_c00056{bottom:422.534168pt;}
.y94_c00056{bottom:422.622008pt;}
.y93_c00056{bottom:423.071720pt;}
.y92_c00056{bottom:423.120000pt;}
.y91_c00056{bottom:434.482752pt;}
.y90_c00056{bottom:436.072555pt;}
.y8f_c00056{bottom:436.343296pt;}
.y8e_c00056{bottom:436.750325pt;}
.y8d_c00056{bottom:436.946187pt;}
.y8c_c00056{bottom:437.140128pt;}
.y8b_c00056{bottom:437.404875pt;}
.y8a_c00056{bottom:437.600907pt;}
.y89_c00056{bottom:437.917696pt;}
.y88_c00056{bottom:438.134667pt;}
.y87_c00056{bottom:438.422677pt;}
.y86_c00056{bottom:438.534037pt;}
.y85_c00056{bottom:439.200000pt;}
.y84_c00056{bottom:450.316768pt;}
.y83_c00056{bottom:451.908491pt;}
.y82_c00056{bottom:452.183072pt;}
.y81_c00056{bottom:452.586261pt;}
.y80_c00056{bottom:452.785963pt;}
.y7f_c00056{bottom:452.976053pt;}
.y7e_c00056{bottom:453.244661pt;}
.y7d_c00056{bottom:453.438763pt;}
.y7c_c00056{bottom:453.757483pt;}
.y7b_c00056{bottom:453.964853pt;}
.y7a_c00056{bottom:454.254763pt;}
.y79_c00056{bottom:454.369973pt;}
.y78_c00056{bottom:454.973067pt;}
.y77_c00056{bottom:455.040000pt;}
.y76_c00056{bottom:465.792035pt;}
.y75_c00056{bottom:467.270472pt;}
.y74_c00056{bottom:467.416641pt;}
.y73_c00056{bottom:467.776161pt;}
.y72_c00056{bottom:467.947531pt;}
.y71_c00056{bottom:468.113869pt;}
.y70_c00056{bottom:468.347231pt;}
.y6f_c00056{bottom:468.520411pt;}
.y6e_c00056{bottom:468.839611pt;}
.y6d_c00056{bottom:468.984100pt;}
.y6c_c00056{bottom:469.234411pt;}
.y6b_c00056{bottom:469.335220pt;}
.y6a_c00056{bottom:469.920000pt;}
.y69_c00056{bottom:481.633228pt;}
.y68_c00056{bottom:482.582111pt;}
.y67_c00056{bottom:484.280609pt;}
.y66_c00056{bottom:485.079001pt;}
.y65_c00056{bottom:485.761333pt;}
.y64_c00056{bottom:497.904727pt;}
.y63_c00056{bottom:498.099765pt;}
.y62_c00056{bottom:498.578593pt;}
.y61_c00056{bottom:498.778355pt;}
.y60_c00056{bottom:499.173323pt;}
.y5f_c00056{bottom:499.621911pt;}
.y5e_c00056{bottom:499.799991pt;}
.y5d_c00056{bottom:500.021592pt;}
.y5c_c00056{bottom:500.196452pt;}
.y5b_c00056{bottom:500.525732pt;}
.y5a_c00056{bottom:500.665172pt;}
.y59_c00056{bottom:500.918861pt;}
.y58_c00056{bottom:501.016301pt;}
.y57_c00056{bottom:501.537120pt;}
.y56_c00056{bottom:501.601333pt;}
.y55_c00056{bottom:513.520880pt;}
.y54_c00056{bottom:515.323000pt;}
.y53_c00056{bottom:515.778573pt;}
.y52_c00056{bottom:516.271840pt;}
.y51_c00056{bottom:516.619240pt;}
.y50_c00056{bottom:516.914213pt;}
.y4f_c00056{bottom:517.444893pt;}
.y4e_c00056{bottom:517.727840pt;}
.y4d_c00056{bottom:518.383320pt;}
.y4c_c00056{bottom:519.360000pt;}
.y4b_c00056{bottom:529.351616pt;}
.y4a_c00056{bottom:529.684216pt;}
.y49_c00056{bottom:529.800904pt;}
.y48_c00056{bottom:529.934824pt;}
.y47_c00056{bottom:530.320728pt;}
.y46_c00056{bottom:530.703808pt;}
.y45_c00056{bottom:530.826208pt;}
.y44_c00056{bottom:530.978856pt;}
.y43_c00056{bottom:531.197632pt;}
.y42_c00056{bottom:531.357584pt;}
.y41_c00056{bottom:531.605272pt;}
.y40_c00056{bottom:531.746392pt;}
.y3f_c00056{bottom:531.973920pt;}
.y3e_c00056{bottom:532.099200pt;}
.y3d_c00056{bottom:532.504056pt;}
.y3c_c00056{bottom:532.560000pt;}
.y3b_c00056{bottom:544.794016pt;}
.y3a_c00056{bottom:545.590000pt;}
.y39_c00056{bottom:545.999948pt;}
.y38_c00056{bottom:547.169648pt;}
.y37_c00056{bottom:547.302321pt;}
.y36_c00056{bottom:547.738991pt;}
.y35_c00056{bottom:548.197771pt;}
.y34_c00056{bottom:548.880000pt;}
.y33_c00056{bottom:560.553024pt;}
.y32_c00056{bottom:560.887072pt;}
.y31_c00056{bottom:561.003760pt;}
.y30_c00056{bottom:561.136240pt;}
.y2f_c00056{bottom:561.444384pt;}
.y2e_c00056{bottom:561.906640pt;}
.y2d_c00056{bottom:562.027608pt;}
.y2c_c00056{bottom:562.178824pt;}
.y2b_c00056{bottom:562.400464pt;}
.y2a_c00056{bottom:562.557536pt;}
.y29_c00056{bottom:562.805208pt;}
.y28_c00056{bottom:562.946336pt;}
.y27_c00056{bottom:563.175304pt;}
.y26_c00056{bottom:563.299144pt;}
.y25_c00056{bottom:563.760000pt;}
.y24_c00056{bottom:575.484200pt;}
.y23_c00056{bottom:575.660667pt;}
.y22_c00056{bottom:575.694267pt;}
.y21_c00056{bottom:576.728433pt;}
.y20_c00056{bottom:576.750193pt;}
.y1f_c00056{bottom:576.936033pt;}
.y1e_c00056{bottom:577.454660pt;}
.y1d_c00056{bottom:577.602260pt;}
.y19_c00056{bottom:577.912981pt;}
.y1a_c00056{bottom:577.912989pt;}
.y17_c00056{bottom:577.913453pt;}
.y18_c00056{bottom:577.913568pt;}
.y1c_c00056{bottom:578.057053pt;}
.y1b_c00056{bottom:578.400000pt;}
.y16_c00056{bottom:591.265024pt;}
.y15_c00056{bottom:591.600512pt;}
.y14_c00056{bottom:591.707104pt;}
.y13_c00056{bottom:591.839584pt;}
.y12_c00056{bottom:592.229816pt;}
.y11_c00056{bottom:592.612864pt;}
.y10_c00056{bottom:592.728088pt;}
.yf_c00056{bottom:592.883600pt;}
.ye_c00056{bottom:593.106744pt;}
.yd_c00056{bottom:593.263760pt;}
.yc_c00056{bottom:593.512896pt;}
.yb_c00056{bottom:593.648256pt;}
.ya_c00056{bottom:593.880112pt;}
.y9_c00056{bottom:594.001056pt;}
.y8_c00056{bottom:605.568141pt;}
.y7_c00056{bottom:605.683221pt;}
.y6_c00056{bottom:607.623317pt;}
.y5_c00056{bottom:607.922805pt;}
.y4_c00056{bottom:608.089869pt;}
.y3_c00056{bottom:608.641333pt;}
.y2_c00056{bottom:621.938667pt;}
.y1_c00056{bottom:630.026667pt;}
.h14_c00056{height:10.666667pt;}
.h13_c00056{height:16.000000pt;}
.hd_c00056{height:16.000200pt;}
.h2_c00056{height:21.333333pt;}
.h10_c00056{height:42.667200pt;}
.he_c00056{height:42.667435pt;}
.h11_c00056{height:48.000600pt;}
.hf_c00056{height:48.000864pt;}
.h4_c00056{height:53.334293pt;}
.h9_c00056{height:53.334640pt;}
.hc_c00056{height:53.335040pt;}
.h12_c00056{height:58.666667pt;}
.h5_c00056{height:58.667400pt;}
.h6_c00056{height:58.667723pt;}
.hb_c00056{height:58.668104pt;}
.h7_c00056{height:64.001568pt;}
.h8_c00056{height:74.670400pt;}
.ha_c00056{height:80.001960pt;}
.h3_c00056{height:85.334869pt;}
.h0_c00056{height:632.640000pt;}
.h1_c00056{height:632.666667pt;}
.w1_c00056{width:840.666667pt;}
.w0_c00056{width:840.933333pt;}
.x0_c00056{left:0.000000pt;}
.x86_c00056{left:0.900139pt;}
.x42_c00056{left:61.381333pt;}
.x2e_c00056{left:62.812000pt;}
.x26_c00056{left:64.314667pt;}
.x6c_c00056{left:65.504000pt;}
.x115_c00056{left:68.160000pt;}
.x114_c00056{left:69.600000pt;}
.x43_c00056{left:70.705333pt;}
.x63_c00056{left:71.661333pt;}
.x6d_c00056{left:73.550667pt;}
.x74_c00056{left:75.044000pt;}
.x79_c00056{left:76.250667pt;}
.x80_c00056{left:77.213501pt;}
.x98_c00056{left:92.614667pt;}
.xa6_c00056{left:94.272528pt;}
.xdf_c00056{left:95.296912pt;}
.xeb_c00056{left:108.452451pt;}
.x10f_c00056{left:109.678107pt;}
.x9a_c00056{left:110.829333pt;}
.xe0_c00056{left:114.977624pt;}
.x110_c00056{left:116.400000pt;}
.xc4_c00056{left:119.964757pt;}
.x87_c00056{left:124.269472pt;}
.x96_c00056{left:125.460000pt;}
.x107_c00056{left:127.411419pt;}
.x27_c00056{left:132.904000pt;}
.x9b_c00056{left:134.109333pt;}
.xd7_c00056{left:136.053357pt;}
.xf_c00056{left:138.393333pt;}
.x2f_c00056{left:139.621333pt;}
.x15_c00056{left:143.463011pt;}
.x53_c00056{left:145.134667pt;}
.x64_c00056{left:147.048000pt;}
.x6e_c00056{left:148.502667pt;}
.x7a_c00056{left:150.417333pt;}
.xec_c00056{left:154.052723pt;}
.x6_c00056{left:158.640000pt;}
.x30_c00056{left:160.261333pt;}
.x23_c00056{left:161.523139pt;}
.x16_c00056{left:163.620344pt;}
.x81_c00056{left:165.545501pt;}
.x88_c00056{left:167.228139pt;}
.xf8_c00056{left:169.659149pt;}
.x7_c00056{left:171.120000pt;}
.xe1_c00056{left:172.099680pt;}
.xba_c00056{left:173.722829pt;}
.x111_c00056{left:176.880000pt;}
.xa7_c00056{left:178.287195pt;}
.xcc_c00056{left:179.532797pt;}
.xb2_c00056{left:183.319205pt;}
.xed_c00056{left:185.254240pt;}
.xbb_c00056{left:187.402909pt;}
.xd8_c00056{left:190.052344pt;}
.xe2_c00056{left:191.780392pt;}
.xcd_c00056{left:193.213293pt;}
.x112_c00056{left:194.400000pt;}
.x54_c00056{left:195.296000pt;}
.x44_c00056{left:196.982667pt;}
.x31_c00056{left:198.422667pt;}
.x6f_c00056{left:199.862667pt;}
.x17_c00056{left:202.263011pt;}
.xf9_c00056{left:205.659365pt;}
.x91_c00056{left:214.258659pt;}
.x55_c00056{left:215.216000pt;}
.x5f_c00056{left:216.653333pt;}
.x45_c00056{left:220.502667pt;}
.x32_c00056{left:221.944000pt;}
.x101_c00056{left:222.940491pt;}
.x28_c00056{left:223.862667pt;}
.x18_c00056{left:224.823011pt;}
.x75_c00056{left:226.013333pt;}
.x24_c00056{left:227.284173pt;}
.x10_c00056{left:230.304000pt;}
.x9c_c00056{left:233.229333pt;}
.x89_c00056{left:235.868139pt;}
.xfa_c00056{left:236.859557pt;}
.xce_c00056{left:240.734997pt;}
.xa8_c00056{left:249.327195pt;}
.xfb_c00056{left:250.299637pt;}
.x108_c00056{left:252.450085pt;}
.x29_c00056{left:253.382667pt;}
.x25_c00056{left:255.605189pt;}
.xc5_c00056{left:257.245573pt;}
.x11_c00056{left:258.148000pt;}
.xe3_c00056{left:259.461491pt;}
.x46_c00056{left:261.784000pt;}
.x33_c00056{left:263.222667pt;}
.x69_c00056{left:264.408000pt;}
.x19_c00056{left:266.345677pt;}
.x82_c00056{left:267.306835pt;}
.xe4_c00056{left:271.941939pt;}
.x5c_c00056{left:273.589333pt;}
.xcf_c00056{left:276.016269pt;}
.xa9_c00056{left:278.111195pt;}
.x8a_c00056{left:281.713472pt;}
.x92_c00056{left:283.380917pt;}
.x3d_c00056{left:287.457333pt;}
.x47_c00056{left:288.442667pt;}
.x34_c00056{left:289.401333pt;}
.x7b_c00056{left:291.317333pt;}
.x1a_c00056{left:292.515011pt;}
.xee_c00056{left:296.374912pt;}
.xbc_c00056{left:297.563573pt;}
.xd0_c00056{left:303.617261pt;}
.xc6_c00056{left:304.765861pt;}
.x3e_c00056{left:306.410667pt;}
.x12_c00056{left:308.062667pt;}
.x8_c00056{left:309.840000pt;}
.x9d_c00056{left:312.201333pt;}
.xe5_c00056{left:314.902149pt;}
.xfc_c00056{left:316.538704pt;}
.x56_c00056{left:318.893333pt;}
.x60_c00056{left:320.330667pt;}
.x65_c00056{left:321.288000pt;}
.x70_c00056{left:322.984000pt;}
.x48_c00056{left:324.905333pt;}
.x35_c00056{left:326.341333pt;}
.x10c_c00056{left:328.513333pt;}
.x1b_c00056{left:329.705677pt;}
.xe6_c00056{left:331.222733pt;}
.x8b_c00056{left:333.808139pt;}
.x50_c00056{left:335.453333pt;}
.x93_c00056{left:339.777915pt;}
.xb3_c00056{left:341.241491pt;}
.xfd_c00056{left:342.952197pt;}
.x57_c00056{left:344.333333pt;}
.x6a_c00056{left:346.248000pt;}
.x76_c00056{left:347.213333pt;}
.x7c_c00056{left:348.661333pt;}
.x49_c00056{left:350.346667pt;}
.x36_c00056{left:351.544000pt;}
.x1c_c00056{left:355.624344pt;}
.x2a_c00056{left:357.108000pt;}
.xd9_c00056{left:362.852043pt;}
.xc7_c00056{left:364.287547pt;}
.x8c_c00056{left:367.150805pt;}
.x61_c00056{left:368.574667pt;}
.x4a_c00056{left:370.746667pt;}
.x37_c00056{left:371.705333pt;}
.x7d_c00056{left:373.142667pt;}
.x1d_c00056{left:374.828344pt;}
.xc8_c00056{left:381.578317pt;}
.xda_c00056{left:383.973504pt;}
.x8d_c00056{left:390.913472pt;}
.xbd_c00056{left:392.844141pt;}
.x2b_c00056{left:394.276000pt;}
.xc9_c00056{left:396.447739pt;}
.xef_c00056{left:397.656853pt;}
.x9_c00056{left:398.880000pt;}
.xd1_c00056{left:400.340749pt;}
.x9e_c00056{left:403.644000pt;}
.x109_c00056{left:404.612752pt;}
.x94_c00056{left:406.280181pt;}
.x58_c00056{left:408.417333pt;}
.x51_c00056{left:419.520000pt;}
.x66_c00056{left:420.410667pt;}
.x6b_c00056{left:421.609333pt;}
.x77_c00056{left:422.576000pt;}
.x83_c00056{left:423.790835pt;}
.x9f_c00056{left:426.190667pt;}
.x8e_c00056{left:427.633472pt;}
.xf0_c00056{left:430.538387pt;}
.x4b_c00056{left:434.593333pt;}
.xd2_c00056{left:437.062069pt;}
.x1e_c00056{left:438.669677pt;}
.x62_c00056{left:440.816000pt;}
.x10d_c00056{left:443.954667pt;}
.x38_c00056{left:448.748000pt;}
.xa_c00056{left:450.720000pt;}
.x102_c00056{left:453.355208pt;}
.x67_c00056{left:454.733333pt;}
.x71_c00056{left:456.184000pt;}
.x7e_c00056{left:457.625333pt;}
.x84_c00056{left:458.593501pt;}
.x52_c00056{left:465.077333pt;}
.xaa_c00056{left:469.155195pt;}
.x3f_c00056{left:473.510667pt;}
.xa0_c00056{left:479.954667pt;}
.xbe_c00056{left:481.646011pt;}
.xe7_c00056{left:484.825595pt;}
.x8f_c00056{left:487.172139pt;}
.x103_c00056{left:488.144749pt;}
.xf1_c00056{left:492.470755pt;}
.x59_c00056{left:493.378667pt;}
.xb4_c00056{left:495.325077pt;}
.xdb_c00056{left:497.256843pt;}
.x4c_c00056{left:498.910667pt;}
.x39_c00056{left:500.105333pt;}
.xfe_c00056{left:502.314483pt;}
.x1f_c00056{left:503.708344pt;}
.xa1_c00056{left:505.154667pt;}
.xb_c00056{left:508.800000pt;}
.x113_c00056{left:512.640000pt;}
.xf2_c00056{left:514.540224pt;}
.x5d_c00056{left:516.232000pt;}
.xab_c00056{left:518.595195pt;}
.x4d_c00056{left:521.230667pt;}
.x3a_c00056{left:522.185333pt;}
.x20_c00056{left:525.788344pt;}
.xbf_c00056{left:526.771616pt;}
.x72_c00056{left:528.236000pt;}
.x40_c00056{left:532.074667pt;}
.xdc_c00056{left:533.258392pt;}
.xc_c00056{left:534.960000pt;}
.xe8_c00056{left:537.386157pt;}
.x4e_c00056{left:540.678667pt;}
.x3b_c00056{left:541.633333pt;}
.x21_c00056{left:543.553677pt;}
.xd3_c00056{left:547.704720pt;}
.xa2_c00056{left:549.329333pt;}
.xf3_c00056{left:551.753781pt;}
.xe9_c00056{left:553.946757pt;}
.xd_c00056{left:556.080000pt;}
.xb5_c00056{left:559.888128pt;}
.x5a_c00056{left:561.782667pt;}
.xac_c00056{left:565.169861pt;}
.xf4_c00056{left:566.623203pt;}
.xe_c00056{left:571.920000pt;}
.xad_c00056{left:575.476528pt;}
.xdd_c00056{left:584.864037pt;}
.xc0_c00056{left:586.770643pt;}
.x104_c00056{left:588.240016pt;}
.x5b_c00056{left:589.645333pt;}
.xb6_c00056{left:592.048320pt;}
.x4f_c00056{left:596.112000pt;}
.x3c_c00056{left:597.308000pt;}
.x22_c00056{left:599.468344pt;}
.x90_c00056{left:600.936139pt;}
.x1_c00056{left:605.520000pt;}
.x99_c00056{left:606.933333pt;}
.xca_c00056{left:607.899685pt;}
.xa3_c00056{left:609.080000pt;}
.xff_c00056{left:610.787131pt;}
.x2c_c00056{left:612.181333pt;}
.xd4_c00056{left:613.947104pt;}
.x10a_c00056{left:615.816752pt;}
.xb7_c00056{left:617.009805pt;}
.x10e_c00056{left:617.958667pt;}
.xea_c00056{left:625.227992pt;}
.xae_c00056{left:627.797861pt;}
.x97_c00056{left:630.189333pt;}
.x13_c00056{left:631.412000pt;}
.x2_c00056{left:633.600000pt;}
.x95_c00056{left:636.905464pt;}
.xde_c00056{left:638.635024pt;}
.x105_c00056{left:643.671019pt;}
.xaf_c00056{left:644.597861pt;}
.x41_c00056{left:645.786667pt;}
.x2d_c00056{left:647.474667pt;}
.xf5_c00056{left:649.678365pt;}
.x14_c00056{left:650.592000pt;}
.x5e_c00056{left:651.786667pt;}
.x68_c00056{left:653.698667pt;}
.x73_c00056{left:654.916000pt;}
.x7f_c00056{left:655.872000pt;}
.xc1_c00056{left:661.187091pt;}
.xb0_c00056{left:663.560528pt;}
.xd5_c00056{left:667.227691pt;}
.x3_c00056{left:668.880000pt;}
.x10b_c00056{left:672.220752pt;}
.xcb_c00056{left:677.738776pt;}
.x100_c00056{left:683.512896pt;}
.xa4_c00056{left:684.440000pt;}
.x4_c00056{left:685.920000pt;}
.xb8_c00056{left:687.574229pt;}
.xf6_c00056{left:689.750605pt;}
.xb1_c00056{left:691.163195pt;}
.xa5_c00056{left:697.641333pt;}
.xc2_c00056{left:700.057997pt;}
.xb9_c00056{left:701.494309pt;}
.x106_c00056{left:707.032736pt;}
.xc3_c00056{left:713.030077pt;}
.xd6_c00056{left:715.228085pt;}
.xf7_c00056{left:724.310813pt;}
.x5_c00056{left:798.960000pt;}
.x78_c00056{left:822.172000pt;}
.x85_c00056{left:824.118835pt;}
}





/* 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_c00057 {
    display:none;
  }
  .loading-indicator_c00057.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00057 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_c00057 { 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_c00057" -> "#page-container .classname_c00057")
 */
.pf_c00057 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00057 { /* 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_c00057.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00057 { /* 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_c00057 { /* 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_c00057 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00057 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00057 {overflow:visible;}
  }
}
.c_c00057 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00057 { /* 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_c00057:after { /* webkit #35443 */
  content: '';
}
.t_c00057:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00057 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 */
}
.__c00057 { /* 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_c00057 { /* info for Javascript */
  display:none;
}
.l_c00057 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00057 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00057 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00057: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_c00057 {
    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_c00057.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00057.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_c00057 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00057{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00057;src:url('chunks/assets/font_bfc335e41cabd1bcac555906.woff2')format("woff");}.ff1_c00057{font-family:ff1_c00057;line-height:1.000000;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;}
.m2_c00057{transform:matrix(0.155325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155325,0.000000,0.000000,0.250000,0,0);}
.m0_c00057{transform:matrix(0.251325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251325,0.000000,0.000000,0.250000,0,0);}
.m1_c00057{transform:matrix(0.560445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560445,0.000000,0.000000,0.250000,0,0);}
.v0_c00057{vertical-align:0.000000px;}
.ls0_c00057{letter-spacing:0.000000px;}
.sc__c00057{text-shadow:none;}
.sc0_c00057{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__c00057{-webkit-text-stroke:0px transparent;}
.sc0_c00057{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00057{word-spacing:0.000000px;}
.fc0_c00057{color:transparent;}
.fs0_c00057{font-size:132.000000px;}
.fs1_c00057{font-size:192.000000px;}
.y0_c00057{bottom:0.000000px;}
.y1_c00057{bottom:120.699000px;}
.y2_c00057{bottom:123.004500px;}
.h2_c00057{height:132.000000px;}
.h3_c00057{height:192.000000px;}
.h0_c00057{height:711.720000px;}
.h1_c00057{height:711.750000px;}
.w1_c00057{width:945.750000px;}
.w0_c00057{width:946.050000px;}
.x0_c00057{left:0.000000px;}
.x2_c00057{left:371.520000px;}
.x3_c00057{left:488.430000px;}
.x1_c00057{left:547.830000px;}
@media print{
.v0_c00057{vertical-align:0.000000pt;}
.ls0_c00057{letter-spacing:0.000000pt;}
.ws0_c00057{word-spacing:0.000000pt;}
.fs0_c00057{font-size:117.333333pt;}
.fs1_c00057{font-size:170.666667pt;}
.y0_c00057{bottom:0.000000pt;}
.y1_c00057{bottom:107.288000pt;}
.y2_c00057{bottom:109.337333pt;}
.h2_c00057{height:117.333333pt;}
.h3_c00057{height:170.666667pt;}
.h0_c00057{height:632.640000pt;}
.h1_c00057{height:632.666667pt;}
.w1_c00057{width:840.666667pt;}
.w0_c00057{width:840.933333pt;}
.x0_c00057{left:0.000000pt;}
.x2_c00057{left:330.240000pt;}
.x3_c00057{left:434.160000pt;}
.x1_c00057{left:486.960000pt;}
}





/* 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_c00058 {
    display:none;
  }
  .loading-indicator_c00058.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00058 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_c00058 { 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_c00058" -> "#page-container .classname_c00058")
 */
.pf_c00058 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00058 { /* 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_c00058.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00058 { /* 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_c00058 { /* 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_c00058 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00058 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00058 {overflow:visible;}
  }
}
.c_c00058 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00058 { /* 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_c00058:after { /* webkit #35443 */
  content: '';
}
.t_c00058:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00058 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 */
}
.__c00058 { /* 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_c00058 { /* info for Javascript */
  display:none;
}
.l_c00058 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00058 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00058 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00058: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_c00058 {
    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_c00058.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00058.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_c00058 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00058{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00058;src:url('chunks/assets/font_1d82f9a8aaa5ece01c4c3bb7.woff2')format("woff");}.ff1_c00058{font-family:ff1_c00058;line-height:1.000000;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;}
.m10_c00058{transform:matrix(0.085675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.085675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.085675,0.000000,0.000000,0.250000,0,0);}
.m7_c00058{transform:matrix(0.096045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096045,0.000000,0.000000,0.250000,0,0);}
.m6_c00058{transform:matrix(0.129035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129035,0.000000,0.000000,0.250000,0,0);}
.m9_c00058{transform:matrix(0.134165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134165,0.000000,0.000000,0.250000,0,0);}
.ma_c00058{transform:matrix(0.136860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136860,0.000000,0.000000,0.250000,0,0);}
.m11_c00058{transform:matrix(0.139155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139155,0.000000,0.000000,0.250000,0,0);}
.me_c00058{transform:matrix(0.142300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142300,0.000000,0.000000,0.250000,0,0);}
.mc_c00058{transform:matrix(0.147970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147970,0.000000,0.000000,0.250000,0,0);}
.md_c00058{transform:matrix(0.170035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170035,0.000000,0.000000,0.250000,0,0);}
.mf_c00058{transform:matrix(0.180625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180625,0.000000,0.000000,0.250000,0,0);}
.m13_c00058{transform:matrix(0.210165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210165,0.000000,0.000000,0.250000,0,0);}
.mb_c00058{transform:matrix(0.226400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226400,0.000000,0.000000,0.250000,0,0);}
.m5_c00058{transform:matrix(0.237695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237695,0.000000,0.000000,0.250000,0,0);}
.m12_c00058{transform:matrix(0.240830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240830,0.000000,0.000000,0.250000,0,0);}
.m3_c00058{transform:matrix(0.270415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270415,0.000000,0.000000,0.250000,0,0);}
.m4_c00058{transform:matrix(0.286575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286575,0.000000,0.000000,0.250000,0,0);}
.m8_c00058{transform:matrix(0.361385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361385,0.000000,0.000000,0.250000,0,0);}
.m2_c00058{transform:matrix(0.533975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533975,0.000000,0.000000,0.250000,0,0);}
.m1_c00058{transform:matrix(1.292635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.292635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.292635,0.000000,0.000000,0.250000,0,0);}
.m0_c00058{transform:matrix(2.974580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.974580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.974580,0.000000,0.000000,0.250000,0,0);}
.v0_c00058{vertical-align:0.000000px;}
.ls0_c00058{letter-spacing:0.000000px;}
.sc__c00058{text-shadow:none;}
.sc0_c00058{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__c00058{-webkit-text-stroke:0px transparent;}
.sc0_c00058{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00058{word-spacing:0.000000px;}
.fc0_c00058{color:transparent;}
.fs0_c00058{font-size:18.000000px;}
.fs1_c00058{font-size:24.000000px;}
.y0_c00058{bottom:0.000000px;}
.y3_c00058{bottom:157.140000px;}
.y2_c00058{bottom:186.030000px;}
.y13_c00058{bottom:190.080000px;}
.y9_c00058{bottom:195.480000px;}
.y12_c00058{bottom:228.960000px;}
.y11_c00058{bottom:235.980000px;}
.y10_c00058{bottom:267.030000px;}
.yf_c00058{bottom:326.160000px;}
.y1_c00058{bottom:332.640000px;}
.y5_c00058{bottom:341.820000px;}
.y4_c00058{bottom:352.890000px;}
.y6_c00058{bottom:392.580000px;}
.ye_c00058{bottom:419.850000px;}
.yd_c00058{bottom:422.280000px;}
.yc_c00058{bottom:427.140000px;}
.y8_c00058{bottom:434.160000px;}
.yb_c00058{bottom:436.590000px;}
.y7_c00058{bottom:470.340000px;}
.ya_c00058{bottom:471.960000px;}
.h2_c00058{height:18.000000px;}
.h3_c00058{height:24.000000px;}
.h0_c00058{height:711.720000px;}
.h1_c00058{height:711.750000px;}
.w1_c00058{width:945.750000px;}
.w0_c00058{width:946.050000px;}
.x0_c00058{left:0.000000px;}
.x1_c00058{left:91.530000px;}
.x2_c00058{left:196.560000px;}
.x5_c00058{left:386.100000px;}
.x3_c00058{left:401.760000px;}
.x7_c00058{left:410.400000px;}
.x4_c00058{left:417.690000px;}
.x6_c00058{left:442.260000px;}
.x9_c00058{left:933.390000px;}
.x8_c00058{left:935.010000px;}
.xa_c00058{left:937.440000px;}
.xb_c00058{left:938.520000px;}
@media print{
.v0_c00058{vertical-align:0.000000pt;}
.ls0_c00058{letter-spacing:0.000000pt;}
.ws0_c00058{word-spacing:0.000000pt;}
.fs0_c00058{font-size:16.000000pt;}
.fs1_c00058{font-size:21.333333pt;}
.y0_c00058{bottom:0.000000pt;}
.y3_c00058{bottom:139.680000pt;}
.y2_c00058{bottom:165.360000pt;}
.y13_c00058{bottom:168.960000pt;}
.y9_c00058{bottom:173.760000pt;}
.y12_c00058{bottom:203.520000pt;}
.y11_c00058{bottom:209.760000pt;}
.y10_c00058{bottom:237.360000pt;}
.yf_c00058{bottom:289.920000pt;}
.y1_c00058{bottom:295.680000pt;}
.y5_c00058{bottom:303.840000pt;}
.y4_c00058{bottom:313.680000pt;}
.y6_c00058{bottom:348.960000pt;}
.ye_c00058{bottom:373.200000pt;}
.yd_c00058{bottom:375.360000pt;}
.yc_c00058{bottom:379.680000pt;}
.y8_c00058{bottom:385.920000pt;}
.yb_c00058{bottom:388.080000pt;}
.y7_c00058{bottom:418.080000pt;}
.ya_c00058{bottom:419.520000pt;}
.h2_c00058{height:16.000000pt;}
.h3_c00058{height:21.333333pt;}
.h0_c00058{height:632.640000pt;}
.h1_c00058{height:632.666667pt;}
.w1_c00058{width:840.666667pt;}
.w0_c00058{width:840.933333pt;}
.x0_c00058{left:0.000000pt;}
.x1_c00058{left:81.360000pt;}
.x2_c00058{left:174.720000pt;}
.x5_c00058{left:343.200000pt;}
.x3_c00058{left:357.120000pt;}
.x7_c00058{left:364.800000pt;}
.x4_c00058{left:371.280000pt;}
.x6_c00058{left:393.120000pt;}
.x9_c00058{left:829.680000pt;}
.x8_c00058{left:831.120000pt;}
.xa_c00058{left:833.280000pt;}
.xb_c00058{left:834.240000pt;}
}





/* 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_c00059 {
    display:none;
  }
  .loading-indicator_c00059.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00059 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_c00059 { 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_c00059" -> "#page-container .classname_c00059")
 */
.pf_c00059 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00059 { /* 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_c00059.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00059 { /* 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_c00059 { /* 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_c00059 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00059 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00059 {overflow:visible;}
  }
}
.c_c00059 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00059 { /* 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_c00059:after { /* webkit #35443 */
  content: '';
}
.t_c00059:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00059 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 */
}
.__c00059 { /* 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_c00059 { /* info for Javascript */
  display:none;
}
.l_c00059 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00059 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00059 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00059: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_c00059 {
    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_c00059.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00059.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_c00059 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00059{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00059;src:url('chunks/assets/font_fabf4b590f7fb32aea93ffb2.woff2')format("woff");}.ff1_c00059{font-family:ff1_c00059;line-height:1.000000;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;}
.m0_c00059{transform:matrix(0.014682,0.000294,-0.004999,0.249950,0,0);-ms-transform:matrix(0.014682,0.000294,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.014682,0.000294,-0.004999,0.249950,0,0);}
.meb_c00059{transform:matrix(0.016968,0.000255,-0.003750,0.249972,0,0);-ms-transform:matrix(0.016968,0.000255,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.016968,0.000255,-0.003750,0.249972,0,0);}
.md5_c00059{transform:matrix(0.055676,0.001002,-0.004499,0.249960,0,0);-ms-transform:matrix(0.055676,0.001002,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.055676,0.001002,-0.004499,0.249960,0,0);}
.m94_c00059{transform:matrix(0.060540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060540,0.000000,0.000000,0.250000,0,0);}
.mb8_c00059{transform:matrix(0.102932,0.002162,-0.005249,0.249945,0,0);-ms-transform:matrix(0.102932,0.002162,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.102932,0.002162,-0.005249,0.249945,0,0);}
.m52_c00059{transform:matrix(0.117455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117455,0.000000,0.000000,0.250000,0,0);}
.m59_c00059{transform:matrix(0.121165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121165,0.000000,0.000000,0.250000,0,0);}
.m51_c00059{transform:matrix(0.125725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125725,0.000000,0.000000,0.250000,0,0);}
.m6e_c00059{transform:matrix(0.142300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142300,0.000000,0.000000,0.250000,0,0);}
.m1c_c00059{transform:matrix(0.144131,0.002883,-0.004999,0.249950,0,0);-ms-transform:matrix(0.144131,0.002883,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.144131,0.002883,-0.004999,0.249950,0,0);}
.m1e_c00059{transform:matrix(0.146566,0.002931,-0.004999,0.249950,0,0);-ms-transform:matrix(0.146566,0.002931,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.146566,0.002931,-0.004999,0.249950,0,0);}
.mf_c00059{transform:matrix(0.148865,0.002977,-0.004999,0.249950,0,0);-ms-transform:matrix(0.148865,0.002977,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.148865,0.002977,-0.004999,0.249950,0,0);}
.m13_c00059{transform:matrix(0.150265,0.003005,-0.004999,0.249950,0,0);-ms-transform:matrix(0.150265,0.003005,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.150265,0.003005,-0.004999,0.249950,0,0);}
.m8_c00059{transform:matrix(0.151240,0.003025,-0.004999,0.249950,0,0);-ms-transform:matrix(0.151240,0.003025,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.151240,0.003025,-0.004999,0.249950,0,0);}
.m17_c00059{transform:matrix(0.152355,0.003047,-0.004999,0.249950,0,0);-ms-transform:matrix(0.152355,0.003047,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.152355,0.003047,-0.004999,0.249950,0,0);}
.m14_c00059{transform:matrix(0.153274,0.003065,-0.004999,0.249950,0,0);-ms-transform:matrix(0.153274,0.003065,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.153274,0.003065,-0.004999,0.249950,0,0);}
.m11_c00059{transform:matrix(0.153904,0.003078,-0.004999,0.249950,0,0);-ms-transform:matrix(0.153904,0.003078,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.153904,0.003078,-0.004999,0.249950,0,0);}
.m15_c00059{transform:matrix(0.155519,0.003110,-0.004999,0.249950,0,0);-ms-transform:matrix(0.155519,0.003110,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.155519,0.003110,-0.004999,0.249950,0,0);}
.m9_c00059{transform:matrix(0.155614,0.003112,-0.004999,0.249950,0,0);-ms-transform:matrix(0.155614,0.003112,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.155614,0.003112,-0.004999,0.249950,0,0);}
.m16_c00059{transform:matrix(0.156954,0.003139,-0.004999,0.249950,0,0);-ms-transform:matrix(0.156954,0.003139,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.156954,0.003139,-0.004999,0.249950,0,0);}
.me_c00059{transform:matrix(0.158318,0.003166,-0.004999,0.249950,0,0);-ms-transform:matrix(0.158318,0.003166,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.158318,0.003166,-0.004999,0.249950,0,0);}
.m6_c00059{transform:matrix(0.158473,0.003169,-0.004999,0.249950,0,0);-ms-transform:matrix(0.158473,0.003169,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.158473,0.003169,-0.004999,0.249950,0,0);}
.md_c00059{transform:matrix(0.158628,0.003173,-0.004999,0.249950,0,0);-ms-transform:matrix(0.158628,0.003173,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.158628,0.003173,-0.004999,0.249950,0,0);}
.m19_c00059{transform:matrix(0.159143,0.003183,-0.004999,0.249950,0,0);-ms-transform:matrix(0.159143,0.003183,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.159143,0.003183,-0.004999,0.249950,0,0);}
.m1d_c00059{transform:matrix(0.159313,0.003186,-0.004999,0.249950,0,0);-ms-transform:matrix(0.159313,0.003186,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.159313,0.003186,-0.004999,0.249950,0,0);}
.m6d_c00059{transform:matrix(0.160175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160175,0.000000,0.000000,0.250000,0,0);}
.mc_c00059{transform:matrix(0.161843,0.003237,-0.004999,0.249950,0,0);-ms-transform:matrix(0.161843,0.003237,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.161843,0.003237,-0.004999,0.249950,0,0);}
.m12_c00059{transform:matrix(0.164022,0.003280,-0.004999,0.249950,0,0);-ms-transform:matrix(0.164022,0.003280,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.164022,0.003280,-0.004999,0.249950,0,0);}
.me4_c00059{transform:matrix(0.165201,0.002478,-0.003750,0.249972,0,0);-ms-transform:matrix(0.165201,0.002478,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.165201,0.002478,-0.003750,0.249972,0,0);}
.m7_c00059{transform:matrix(0.165752,0.003315,-0.004999,0.249950,0,0);-ms-transform:matrix(0.165752,0.003315,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.165752,0.003315,-0.004999,0.249950,0,0);}
.m85_c00059{transform:matrix(0.167700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167700,0.000000,0.000000,0.250000,0,0);}
.m18_c00059{transform:matrix(0.168141,0.003363,-0.004999,0.249950,0,0);-ms-transform:matrix(0.168141,0.003363,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.168141,0.003363,-0.004999,0.249950,0,0);}
.m1b_c00059{transform:matrix(0.173655,0.003473,-0.004999,0.249950,0,0);-ms-transform:matrix(0.173655,0.003473,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.173655,0.003473,-0.004999,0.249950,0,0);}
.m26_c00059{transform:matrix(0.173700,0.003474,-0.004999,0.249950,0,0);-ms-transform:matrix(0.173700,0.003474,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.173700,0.003474,-0.004999,0.249950,0,0);}
.m10_c00059{transform:matrix(0.174995,0.003500,-0.004999,0.249950,0,0);-ms-transform:matrix(0.174995,0.003500,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.174995,0.003500,-0.004999,0.249950,0,0);}
.ma_c00059{transform:matrix(0.176345,0.003527,-0.004999,0.249950,0,0);-ms-transform:matrix(0.176345,0.003527,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.176345,0.003527,-0.004999,0.249950,0,0);}
.m20_c00059{transform:matrix(0.180644,0.003613,-0.004999,0.249950,0,0);-ms-transform:matrix(0.180644,0.003613,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.180644,0.003613,-0.004999,0.249950,0,0);}
.m8e_c00059{transform:matrix(0.184165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184165,0.000000,0.000000,0.250000,0,0);}
.mb_c00059{transform:matrix(0.185653,0.003713,-0.004999,0.249950,0,0);-ms-transform:matrix(0.185653,0.003713,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.185653,0.003713,-0.004999,0.249950,0,0);}
.mc3_c00059{transform:matrix(0.187246,0.003558,-0.004749,0.249955,0,0);-ms-transform:matrix(0.187246,0.003558,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.187246,0.003558,-0.004749,0.249955,0,0);}
.m3a_c00059{transform:matrix(0.187827,0.003757,-0.004999,0.249950,0,0);-ms-transform:matrix(0.187827,0.003757,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.187827,0.003757,-0.004999,0.249950,0,0);}
.m28_c00059{transform:matrix(0.188292,0.003766,-0.004999,0.249950,0,0);-ms-transform:matrix(0.188292,0.003766,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.188292,0.003766,-0.004999,0.249950,0,0);}
.m24_c00059{transform:matrix(0.190887,0.003818,-0.004999,0.249950,0,0);-ms-transform:matrix(0.190887,0.003818,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.190887,0.003818,-0.004999,0.249950,0,0);}
.ma5_c00059{transform:matrix(0.192158,0.004035,-0.005249,0.249945,0,0);-ms-transform:matrix(0.192158,0.004035,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.192158,0.004035,-0.005249,0.249945,0,0);}
.mad_c00059{transform:matrix(0.193287,0.004059,-0.005249,0.249945,0,0);-ms-transform:matrix(0.193287,0.004059,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.193287,0.004059,-0.005249,0.249945,0,0);}
.m54_c00059{transform:matrix(0.194455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194455,0.000000,0.000000,0.250000,0,0);}
.ma7_c00059{transform:matrix(0.195532,0.004106,-0.005249,0.249945,0,0);-ms-transform:matrix(0.195532,0.004106,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.195532,0.004106,-0.005249,0.249945,0,0);}
.m27_c00059{transform:matrix(0.196571,0.003931,-0.004999,0.249950,0,0);-ms-transform:matrix(0.196571,0.003931,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.196571,0.003931,-0.004999,0.249950,0,0);}
.m37_c00059{transform:matrix(0.198510,0.003970,-0.004999,0.249950,0,0);-ms-transform:matrix(0.198510,0.003970,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.198510,0.003970,-0.004999,0.249950,0,0);}
.mb7_c00059{transform:matrix(0.199346,0.004186,-0.005249,0.249945,0,0);-ms-transform:matrix(0.199346,0.004186,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.199346,0.004186,-0.005249,0.249945,0,0);}
.ma0_c00059{transform:matrix(0.199496,0.004189,-0.005249,0.249945,0,0);-ms-transform:matrix(0.199496,0.004189,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.199496,0.004189,-0.005249,0.249945,0,0);}
.m2f_c00059{transform:matrix(0.200810,0.004016,-0.004999,0.249950,0,0);-ms-transform:matrix(0.200810,0.004016,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.200810,0.004016,-0.004999,0.249950,0,0);}
.m1a_c00059{transform:matrix(0.201305,0.004026,-0.004999,0.249950,0,0);-ms-transform:matrix(0.201305,0.004026,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.201305,0.004026,-0.004999,0.249950,0,0);}
.m2c_c00059{transform:matrix(0.202250,0.004045,-0.004999,0.249950,0,0);-ms-transform:matrix(0.202250,0.004045,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.202250,0.004045,-0.004999,0.249950,0,0);}
.m36_c00059{transform:matrix(0.202619,0.004052,-0.004999,0.249950,0,0);-ms-transform:matrix(0.202619,0.004052,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.202619,0.004052,-0.004999,0.249950,0,0);}
.m2e_c00059{transform:matrix(0.202879,0.004058,-0.004999,0.249950,0,0);-ms-transform:matrix(0.202879,0.004058,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.202879,0.004058,-0.004999,0.249950,0,0);}
.m32_c00059{transform:matrix(0.203069,0.004061,-0.004999,0.249950,0,0);-ms-transform:matrix(0.203069,0.004061,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.203069,0.004061,-0.004999,0.249950,0,0);}
.m55_c00059{transform:matrix(0.203420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203420,0.000000,0.000000,0.250000,0,0);}
.m35_c00059{transform:matrix(0.204659,0.004093,-0.004999,0.249950,0,0);-ms-transform:matrix(0.204659,0.004093,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.204659,0.004093,-0.004999,0.249950,0,0);}
.m2b_c00059{transform:matrix(0.204774,0.004095,-0.004999,0.249950,0,0);-ms-transform:matrix(0.204774,0.004095,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.204774,0.004095,-0.004999,0.249950,0,0);}
.m39_c00059{transform:matrix(0.204994,0.004100,-0.004999,0.249950,0,0);-ms-transform:matrix(0.204994,0.004100,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.204994,0.004100,-0.004999,0.249950,0,0);}
.ma1_c00059{transform:matrix(0.205755,0.004321,-0.005249,0.249945,0,0);-ms-transform:matrix(0.205755,0.004321,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.205755,0.004321,-0.005249,0.249945,0,0);}
.m29_c00059{transform:matrix(0.206054,0.004121,-0.004999,0.249950,0,0);-ms-transform:matrix(0.206054,0.004121,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.206054,0.004121,-0.004999,0.249950,0,0);}
.m22_c00059{transform:matrix(0.208633,0.004173,-0.004999,0.249950,0,0);-ms-transform:matrix(0.208633,0.004173,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.208633,0.004173,-0.004999,0.249950,0,0);}
.m31_c00059{transform:matrix(0.209033,0.004181,-0.004999,0.249950,0,0);-ms-transform:matrix(0.209033,0.004181,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.209033,0.004181,-0.004999,0.249950,0,0);}
.m8d_c00059{transform:matrix(0.209530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209530,0.000000,0.000000,0.250000,0,0);}
.ma3_c00059{transform:matrix(0.209589,0.004401,-0.005249,0.249945,0,0);-ms-transform:matrix(0.209589,0.004401,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.209589,0.004401,-0.005249,0.249945,0,0);}
.m34_c00059{transform:matrix(0.210253,0.004205,-0.004999,0.249950,0,0);-ms-transform:matrix(0.210253,0.004205,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.210253,0.004205,-0.004999,0.249950,0,0);}
.mf0_c00059{transform:matrix(0.212557,0.004251,-0.004999,0.249950,0,0);-ms-transform:matrix(0.212557,0.004251,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.212557,0.004251,-0.004999,0.249950,0,0);}
.m4d_c00059{transform:matrix(0.212720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212720,0.000000,0.000000,0.250000,0,0);}
.m98_c00059{transform:matrix(0.214153,0.004497,-0.005249,0.249945,0,0);-ms-transform:matrix(0.214153,0.004497,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.214153,0.004497,-0.005249,0.249945,0,0);}
.m3b_c00059{transform:matrix(0.214292,0.004286,-0.004999,0.249950,0,0);-ms-transform:matrix(0.214292,0.004286,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.214292,0.004286,-0.004999,0.249950,0,0);}
.m30_c00059{transform:matrix(0.215517,0.004310,-0.004999,0.249950,0,0);-ms-transform:matrix(0.215517,0.004310,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.215517,0.004310,-0.004999,0.249950,0,0);}
.m21_c00059{transform:matrix(0.215712,0.004314,-0.004999,0.249950,0,0);-ms-transform:matrix(0.215712,0.004314,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.215712,0.004314,-0.004999,0.249950,0,0);}
.mec_c00059{transform:matrix(0.216726,0.003251,-0.003750,0.249972,0,0);-ms-transform:matrix(0.216726,0.003251,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.216726,0.003251,-0.003750,0.249972,0,0);}
.mbe_c00059{transform:matrix(0.218077,0.004580,-0.005249,0.249945,0,0);-ms-transform:matrix(0.218077,0.004580,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.218077,0.004580,-0.005249,0.249945,0,0);}
.mee_c00059{transform:matrix(0.220051,0.004401,-0.004999,0.249950,0,0);-ms-transform:matrix(0.220051,0.004401,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.220051,0.004401,-0.004999,0.249950,0,0);}
.m33_c00059{transform:matrix(0.220266,0.004405,-0.004999,0.249950,0,0);-ms-transform:matrix(0.220266,0.004405,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.220266,0.004405,-0.004999,0.249950,0,0);}
.m9e_c00059{transform:matrix(0.220326,0.004627,-0.005249,0.249945,0,0);-ms-transform:matrix(0.220326,0.004627,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.220326,0.004627,-0.005249,0.249945,0,0);}
.mb1_c00059{transform:matrix(0.220446,0.004629,-0.005249,0.249945,0,0);-ms-transform:matrix(0.220446,0.004629,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.220446,0.004629,-0.005249,0.249945,0,0);}
.mb2_c00059{transform:matrix(0.222751,0.004678,-0.005249,0.249945,0,0);-ms-transform:matrix(0.222751,0.004678,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.222751,0.004678,-0.005249,0.249945,0,0);}
.m2d_c00059{transform:matrix(0.222905,0.004458,-0.004999,0.249950,0,0);-ms-transform:matrix(0.222905,0.004458,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.222905,0.004458,-0.004999,0.249950,0,0);}
.m69_c00059{transform:matrix(0.223035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223035,0.000000,0.000000,0.250000,0,0);}
.m38_c00059{transform:matrix(0.223220,0.004464,-0.004999,0.249950,0,0);-ms-transform:matrix(0.223220,0.004464,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.223220,0.004464,-0.004999,0.249950,0,0);}
.mc5_c00059{transform:matrix(0.224529,0.004266,-0.004749,0.249955,0,0);-ms-transform:matrix(0.224529,0.004266,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.224529,0.004266,-0.004749,0.249955,0,0);}
.ma6_c00059{transform:matrix(0.224610,0.004717,-0.005249,0.249945,0,0);-ms-transform:matrix(0.224610,0.004717,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.224610,0.004717,-0.005249,0.249945,0,0);}
.mc2_c00059{transform:matrix(0.224959,0.004274,-0.004749,0.249955,0,0);-ms-transform:matrix(0.224959,0.004274,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.224959,0.004274,-0.004749,0.249955,0,0);}
.m41_c00059{transform:matrix(0.225099,0.004277,-0.004749,0.249955,0,0);-ms-transform:matrix(0.225099,0.004277,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.225099,0.004277,-0.004749,0.249955,0,0);}
.mc0_c00059{transform:matrix(0.225795,0.004742,-0.005249,0.249945,0,0);-ms-transform:matrix(0.225795,0.004742,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.225795,0.004742,-0.005249,0.249945,0,0);}
.m4c_c00059{transform:matrix(0.225885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225885,0.000000,0.000000,0.250000,0,0);}
.mba_c00059{transform:matrix(0.229144,0.004812,-0.005249,0.249945,0,0);-ms-transform:matrix(0.229144,0.004812,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.229144,0.004812,-0.005249,0.249945,0,0);}
.mb3_c00059{transform:matrix(0.230164,0.004833,-0.005249,0.249945,0,0);-ms-transform:matrix(0.230164,0.004833,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.230164,0.004833,-0.005249,0.249945,0,0);}
.m1f_c00059{transform:matrix(0.232289,0.004646,-0.004999,0.249950,0,0);-ms-transform:matrix(0.232289,0.004646,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.232289,0.004646,-0.004999,0.249950,0,0);}
.md0_c00059{transform:matrix(0.232507,0.004185,-0.004499,0.249960,0,0);-ms-transform:matrix(0.232507,0.004185,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.232507,0.004185,-0.004499,0.249960,0,0);}
.mc6_c00059{transform:matrix(0.232533,0.004418,-0.004749,0.249955,0,0);-ms-transform:matrix(0.232533,0.004418,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.232533,0.004418,-0.004749,0.249955,0,0);}
.m23_c00059{transform:matrix(0.234163,0.004683,-0.004999,0.249950,0,0);-ms-transform:matrix(0.234163,0.004683,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.234163,0.004683,-0.004999,0.249950,0,0);}
.mc4_c00059{transform:matrix(0.234608,0.004458,-0.004749,0.249955,0,0);-ms-transform:matrix(0.234608,0.004458,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.234608,0.004458,-0.004749,0.249955,0,0);}
.m80_c00059{transform:matrix(0.235015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235015,0.000000,0.000000,0.250000,0,0);}
.m9d_c00059{transform:matrix(0.235088,0.004937,-0.005249,0.249945,0,0);-ms-transform:matrix(0.235088,0.004937,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.235088,0.004937,-0.005249,0.249945,0,0);}
.m9c_c00059{transform:matrix(0.235473,0.004945,-0.005249,0.249945,0,0);-ms-transform:matrix(0.235473,0.004945,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.235473,0.004945,-0.005249,0.249945,0,0);}
.mef_c00059{transform:matrix(0.236823,0.004736,-0.004999,0.249950,0,0);-ms-transform:matrix(0.236823,0.004736,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.236823,0.004736,-0.004999,0.249950,0,0);}
.ma8_c00059{transform:matrix(0.237348,0.004984,-0.005249,0.249945,0,0);-ms-transform:matrix(0.237348,0.004984,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.237348,0.004984,-0.005249,0.249945,0,0);}
.m60_c00059{transform:matrix(0.237620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237620,0.000000,0.000000,0.250000,0,0);}
.mab_c00059{transform:matrix(0.238967,0.005018,-0.005249,0.249945,0,0);-ms-transform:matrix(0.238967,0.005018,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.238967,0.005018,-0.005249,0.249945,0,0);}
.m9f_c00059{transform:matrix(0.240647,0.005054,-0.005249,0.249945,0,0);-ms-transform:matrix(0.240647,0.005054,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.240647,0.005054,-0.005249,0.249945,0,0);}
.m2a_c00059{transform:matrix(0.241302,0.004826,-0.004999,0.249950,0,0);-ms-transform:matrix(0.241302,0.004826,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.241302,0.004826,-0.004999,0.249950,0,0);}
.mcb_c00059{transform:matrix(0.242671,0.004611,-0.004749,0.249955,0,0);-ms-transform:matrix(0.242671,0.004611,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.242671,0.004611,-0.004749,0.249955,0,0);}
.m97_c00059{transform:matrix(0.243840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243840,0.000000,0.000000,0.250000,0,0);}
.m76_c00059{transform:matrix(0.244085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244085,0.000000,0.000000,0.250000,0,0);}
.mb0_c00059{transform:matrix(0.246921,0.005185,-0.005249,0.249945,0,0);-ms-transform:matrix(0.246921,0.005185,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.246921,0.005185,-0.005249,0.249945,0,0);}
.m25_c00059{transform:matrix(0.248075,0.004962,-0.004999,0.249950,0,0);-ms-transform:matrix(0.248075,0.004962,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.248075,0.004962,-0.004999,0.249950,0,0);}
.mbd_c00059{transform:matrix(0.248695,0.005223,-0.005249,0.249945,0,0);-ms-transform:matrix(0.248695,0.005223,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.248695,0.005223,-0.005249,0.249945,0,0);}
.mb5_c00059{transform:matrix(0.250500,0.005260,-0.005249,0.249945,0,0);-ms-transform:matrix(0.250500,0.005260,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.250500,0.005260,-0.005249,0.249945,0,0);}
.m7d_c00059{transform:matrix(0.250915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250915,0.000000,0.000000,0.250000,0,0);}
.m9a_c00059{transform:matrix(0.251075,0.005273,-0.005249,0.249945,0,0);-ms-transform:matrix(0.251075,0.005273,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.251075,0.005273,-0.005249,0.249945,0,0);}
.mb6_c00059{transform:matrix(0.251545,0.005282,-0.005249,0.249945,0,0);-ms-transform:matrix(0.251545,0.005282,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.251545,0.005282,-0.005249,0.249945,0,0);}
.mac_c00059{transform:matrix(0.253439,0.005322,-0.005249,0.249945,0,0);-ms-transform:matrix(0.253439,0.005322,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.253439,0.005322,-0.005249,0.249945,0,0);}
.m99_c00059{transform:matrix(0.253944,0.005333,-0.005249,0.249945,0,0);-ms-transform:matrix(0.253944,0.005333,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.253944,0.005333,-0.005249,0.249945,0,0);}
.mae_c00059{transform:matrix(0.254454,0.005344,-0.005249,0.249945,0,0);-ms-transform:matrix(0.254454,0.005344,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.254454,0.005344,-0.005249,0.249945,0,0);}
.m5e_c00059{transform:matrix(0.255235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255235,0.000000,0.000000,0.250000,0,0);}
.md4_c00059{transform:matrix(0.255294,0.004595,-0.004499,0.249960,0,0);-ms-transform:matrix(0.255294,0.004595,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.255294,0.004595,-0.004499,0.249960,0,0);}
.m75_c00059{transform:matrix(0.255985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255985,0.000000,0.000000,0.250000,0,0);}
.m49_c00059{transform:matrix(0.257643,0.004895,-0.004749,0.249955,0,0);-ms-transform:matrix(0.257643,0.004895,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.257643,0.004895,-0.004749,0.249955,0,0);}
.m53_c00059{transform:matrix(0.258315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258315,0.000000,0.000000,0.250000,0,0);}
.mcc_c00059{transform:matrix(0.258573,0.004654,-0.004499,0.249960,0,0);-ms-transform:matrix(0.258573,0.004654,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.258573,0.004654,-0.004499,0.249960,0,0);}
.mc1_c00059{transform:matrix(0.259223,0.004925,-0.004749,0.249955,0,0);-ms-transform:matrix(0.259223,0.004925,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.259223,0.004925,-0.004749,0.249955,0,0);}
.mb9_c00059{transform:matrix(0.260543,0.005471,-0.005249,0.249945,0,0);-ms-transform:matrix(0.260543,0.005471,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.260543,0.005471,-0.005249,0.249945,0,0);}
.ma4_c00059{transform:matrix(0.260605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260605,0.000000,0.000000,0.250000,0,0);}
.md2_c00059{transform:matrix(0.262168,0.004719,-0.004499,0.249960,0,0);-ms-transform:matrix(0.262168,0.004719,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.262168,0.004719,-0.004499,0.249960,0,0);}
.m95_c00059{transform:matrix(0.262635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262635,0.000000,0.000000,0.250000,0,0);}
.mbf_c00059{transform:matrix(0.263242,0.005528,-0.005249,0.249945,0,0);-ms-transform:matrix(0.263242,0.005528,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.263242,0.005528,-0.005249,0.249945,0,0);}
.mde_c00059{transform:matrix(0.263835,0.003958,-0.003750,0.249972,0,0);-ms-transform:matrix(0.263835,0.003958,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.263835,0.003958,-0.003750,0.249972,0,0);}
.m88_c00059{transform:matrix(0.264685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264685,0.000000,0.000000,0.250000,0,0);}
.m6f_c00059{transform:matrix(0.264795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264795,0.000000,0.000000,0.250000,0,0);}
.md3_c00059{transform:matrix(0.265122,0.004772,-0.004499,0.249960,0,0);-ms-transform:matrix(0.265122,0.004772,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.265122,0.004772,-0.004499,0.249960,0,0);}
.m67_c00059{transform:matrix(0.265755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265755,0.000000,0.000000,0.250000,0,0);}
.med_c00059{transform:matrix(0.265877,0.005318,-0.004999,0.249950,0,0);-ms-transform:matrix(0.265877,0.005318,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.265877,0.005318,-0.004999,0.249950,0,0);}
.ma2_c00059{transform:matrix(0.266021,0.005586,-0.005249,0.249945,0,0);-ms-transform:matrix(0.266021,0.005586,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.266021,0.005586,-0.005249,0.249945,0,0);}
.mda_c00059{transform:matrix(0.268442,0.004832,-0.004499,0.249960,0,0);-ms-transform:matrix(0.268442,0.004832,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.268442,0.004832,-0.004499,0.249960,0,0);}
.maf_c00059{transform:matrix(0.268706,0.005643,-0.005249,0.249945,0,0);-ms-transform:matrix(0.268706,0.005643,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.268706,0.005643,-0.005249,0.249945,0,0);}
.m8c_c00059{transform:matrix(0.269405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269405,0.000000,0.000000,0.250000,0,0);}
.m9b_c00059{transform:matrix(0.269526,0.005660,-0.005249,0.249945,0,0);-ms-transform:matrix(0.269526,0.005660,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.269526,0.005660,-0.005249,0.249945,0,0);}
.mbc_c00059{transform:matrix(0.271620,0.005704,-0.005249,0.249945,0,0);-ms-transform:matrix(0.271620,0.005704,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.271620,0.005704,-0.005249,0.249945,0,0);}
.m89_c00059{transform:matrix(0.278650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278650,0.000000,0.000000,0.250000,0,0);}
.mce_c00059{transform:matrix(0.279070,0.005023,-0.004499,0.249960,0,0);-ms-transform:matrix(0.279070,0.005023,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.279070,0.005023,-0.004499,0.249960,0,0);}
.m48_c00059{transform:matrix(0.280774,0.005335,-0.004749,0.249955,0,0);-ms-transform:matrix(0.280774,0.005335,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.280774,0.005335,-0.004749,0.249955,0,0);}
.mb4_c00059{transform:matrix(0.282113,0.005924,-0.005249,0.249945,0,0);-ms-transform:matrix(0.282113,0.005924,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.282113,0.005924,-0.005249,0.249945,0,0);}
.ma9_c00059{transform:matrix(0.282948,0.005942,-0.005249,0.249945,0,0);-ms-transform:matrix(0.282948,0.005942,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.282948,0.005942,-0.005249,0.249945,0,0);}
.mcf_c00059{transform:matrix(0.284619,0.005123,-0.004499,0.249960,0,0);-ms-transform:matrix(0.284619,0.005123,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.284619,0.005123,-0.004499,0.249960,0,0);}
.m6a_c00059{transform:matrix(0.285350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285350,0.000000,0.000000,0.250000,0,0);}
.md6_c00059{transform:matrix(0.291593,0.005249,-0.004499,0.249960,0,0);-ms-transform:matrix(0.291593,0.005249,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.291593,0.005249,-0.004499,0.249960,0,0);}
.mdc_c00059{transform:matrix(0.291737,0.004376,-0.003750,0.249972,0,0);-ms-transform:matrix(0.291737,0.004376,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.291737,0.004376,-0.003750,0.249972,0,0);}
.m4a_c00059{transform:matrix(0.294887,0.005603,-0.004749,0.249955,0,0);-ms-transform:matrix(0.294887,0.005603,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.294887,0.005603,-0.004749,0.249955,0,0);}
.m64_c00059{transform:matrix(0.295170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295170,0.000000,0.000000,0.250000,0,0);}
.mbb_c00059{transform:matrix(0.301479,0.006331,-0.005249,0.249945,0,0);-ms-transform:matrix(0.301479,0.006331,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.301479,0.006331,-0.005249,0.249945,0,0);}
.m4b_c00059{transform:matrix(0.305480,0.005804,-0.004749,0.249955,0,0);-ms-transform:matrix(0.305480,0.005804,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.305480,0.005804,-0.004749,0.249955,0,0);}
.mdd_c00059{transform:matrix(0.307235,0.004609,-0.003750,0.249972,0,0);-ms-transform:matrix(0.307235,0.004609,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.307235,0.004609,-0.003750,0.249972,0,0);}
.m2_c00059{transform:matrix(0.308598,0.006172,-0.004999,0.249950,0,0);-ms-transform:matrix(0.308598,0.006172,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.308598,0.006172,-0.004999,0.249950,0,0);}
.m8a_c00059{transform:matrix(0.321550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321550,0.000000,0.000000,0.250000,0,0);}
.mdb_c00059{transform:matrix(0.325888,0.004888,-0.003750,0.249972,0,0);-ms-transform:matrix(0.325888,0.004888,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.325888,0.004888,-0.003750,0.249972,0,0);}
.m8b_c00059{transform:matrix(0.326560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326560,0.000000,0.000000,0.250000,0,0);}
.mcd_c00059{transform:matrix(0.327242,0.005890,-0.004499,0.249960,0,0);-ms-transform:matrix(0.327242,0.005890,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.327242,0.005890,-0.004499,0.249960,0,0);}
.mea_c00059{transform:matrix(0.327388,0.004911,-0.003750,0.249972,0,0);-ms-transform:matrix(0.327388,0.004911,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.327388,0.004911,-0.003750,0.249972,0,0);}
.m7f_c00059{transform:matrix(0.328905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328905,0.000000,0.000000,0.250000,0,0);}
.m45_c00059{transform:matrix(0.331405,0.006297,-0.004749,0.249955,0,0);-ms-transform:matrix(0.331405,0.006297,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.331405,0.006297,-0.004749,0.249955,0,0);}
.m3d_c00059{transform:matrix(0.337424,0.006411,-0.004749,0.249955,0,0);-ms-transform:matrix(0.337424,0.006411,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.337424,0.006411,-0.004749,0.249955,0,0);}
.md9_c00059{transform:matrix(0.337920,0.006083,-0.004499,0.249960,0,0);-ms-transform:matrix(0.337920,0.006083,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.337920,0.006083,-0.004499,0.249960,0,0);}
.md1_c00059{transform:matrix(0.347654,0.006258,-0.004499,0.249960,0,0);-ms-transform:matrix(0.347654,0.006258,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.347654,0.006258,-0.004499,0.249960,0,0);}
.maa_c00059{transform:matrix(0.348083,0.007310,-0.005249,0.249945,0,0);-ms-transform:matrix(0.348083,0.007310,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.348083,0.007310,-0.005249,0.249945,0,0);}
.m57_c00059{transform:matrix(0.353015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353015,0.000000,0.000000,0.250000,0,0);}
.m63_c00059{transform:matrix(0.353060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353060,0.000000,0.000000,0.250000,0,0);}
.m50_c00059{transform:matrix(0.364060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364060,0.000000,0.000000,0.250000,0,0);}
.m7a_c00059{transform:matrix(0.368480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368480,0.000000,0.000000,0.250000,0,0);}
.md8_c00059{transform:matrix(0.371945,0.006695,-0.004499,0.249960,0,0);-ms-transform:matrix(0.371945,0.006695,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.371945,0.006695,-0.004499,0.249960,0,0);}
.m82_c00059{transform:matrix(0.375900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375900,0.000000,0.000000,0.250000,0,0);}
.m5d_c00059{transform:matrix(0.376720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376720,0.000000,0.000000,0.250000,0,0);}
.m5a_c00059{transform:matrix(0.376725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376725,0.000000,0.000000,0.250000,0,0);}
.m58_c00059{transform:matrix(0.377385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377385,0.000000,0.000000,0.250000,0,0);}
.m77_c00059{transform:matrix(0.379945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379945,0.000000,0.000000,0.250000,0,0);}
.m5b_c00059{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m4_c00059{transform:matrix(0.382783,0.007656,-0.004999,0.249950,0,0);-ms-transform:matrix(0.382783,0.007656,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.382783,0.007656,-0.004999,0.249950,0,0);}
.m96_c00059{transform:matrix(0.384850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384850,0.000000,0.000000,0.250000,0,0);}
.me9_c00059{transform:matrix(0.386432,0.005796,-0.003750,0.249972,0,0);-ms-transform:matrix(0.386432,0.005796,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.386432,0.005796,-0.003750,0.249972,0,0);}
.m1_c00059{transform:matrix(0.388842,0.007777,-0.004999,0.249950,0,0);-ms-transform:matrix(0.388842,0.007777,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.388842,0.007777,-0.004999,0.249950,0,0);}
.mf1_c00059{transform:matrix(0.394215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394215,0.000000,0.000000,0.250000,0,0);}
.m47_c00059{transform:matrix(0.398508,0.007572,-0.004749,0.249955,0,0);-ms-transform:matrix(0.398508,0.007572,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.398508,0.007572,-0.004749,0.249955,0,0);}
.mc9_c00059{transform:matrix(0.399008,0.007581,-0.004749,0.249955,0,0);-ms-transform:matrix(0.399008,0.007581,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.399008,0.007581,-0.004749,0.249955,0,0);}
.m72_c00059{transform:matrix(0.400975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400975,0.000000,0.000000,0.250000,0,0);}
.m3_c00059{transform:matrix(0.408068,0.008161,-0.004999,0.249950,0,0);-ms-transform:matrix(0.408068,0.008161,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.408068,0.008161,-0.004999,0.249950,0,0);}
.m93_c00059{transform:matrix(0.409870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409870,0.000000,0.000000,0.250000,0,0);}
.m5c_c00059{transform:matrix(0.413045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413045,0.000000,0.000000,0.250000,0,0);}
.m44_c00059{transform:matrix(0.417010,0.007923,-0.004749,0.249955,0,0);-ms-transform:matrix(0.417010,0.007923,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.417010,0.007923,-0.004749,0.249955,0,0);}
.m3f_c00059{transform:matrix(0.421129,0.008001,-0.004749,0.249955,0,0);-ms-transform:matrix(0.421129,0.008001,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.421129,0.008001,-0.004749,0.249955,0,0);}
.m5_c00059{transform:matrix(0.421526,0.008431,-0.004999,0.249950,0,0);-ms-transform:matrix(0.421526,0.008431,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.421526,0.008431,-0.004999,0.249950,0,0);}
.m7b_c00059{transform:matrix(0.424795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424795,0.000000,0.000000,0.250000,0,0);}
.m42_c00059{transform:matrix(0.430192,0.008174,-0.004749,0.249955,0,0);-ms-transform:matrix(0.430192,0.008174,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.430192,0.008174,-0.004749,0.249955,0,0);}
.md7_c00059{transform:matrix(0.435719,0.007843,-0.004499,0.249960,0,0);-ms-transform:matrix(0.435719,0.007843,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.435719,0.007843,-0.004499,0.249960,0,0);}
.m73_c00059{transform:matrix(0.440045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440045,0.000000,0.000000,0.250000,0,0);}
.mdf_c00059{transform:matrix(0.468277,0.007024,-0.003750,0.249972,0,0);-ms-transform:matrix(0.468277,0.007024,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.468277,0.007024,-0.003750,0.249972,0,0);}
.m3c_c00059{transform:matrix(0.471990,0.008968,-0.004749,0.249955,0,0);-ms-transform:matrix(0.471990,0.008968,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.471990,0.008968,-0.004749,0.249955,0,0);}
.m4e_c00059{transform:matrix(0.480310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480310,0.000000,0.000000,0.250000,0,0);}
.m74_c00059{transform:matrix(0.481350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.481350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.481350,0.000000,0.000000,0.250000,0,0);}
.m40_c00059{transform:matrix(0.488527,0.009282,-0.004749,0.249955,0,0);-ms-transform:matrix(0.488527,0.009282,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.488527,0.009282,-0.004749,0.249955,0,0);}
.m87_c00059{transform:matrix(0.500060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.500060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.500060,0.000000,0.000000,0.250000,0,0);}
.m3e_c00059{transform:matrix(0.503274,0.009562,-0.004749,0.249955,0,0);-ms-transform:matrix(0.503274,0.009562,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.503274,0.009562,-0.004749,0.249955,0,0);}
.mca_c00059{transform:matrix(0.510813,0.009705,-0.004749,0.249955,0,0);-ms-transform:matrix(0.510813,0.009705,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.510813,0.009705,-0.004749,0.249955,0,0);}
.me1_c00059{transform:matrix(0.515382,0.007731,-0.003750,0.249972,0,0);-ms-transform:matrix(0.515382,0.007731,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.515382,0.007731,-0.003750,0.249972,0,0);}
.m6c_c00059{transform:matrix(0.531505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531505,0.000000,0.000000,0.250000,0,0);}
.m7c_c00059{transform:matrix(0.534725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534725,0.000000,0.000000,0.250000,0,0);}
.m71_c00059{transform:matrix(0.540925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540925,0.000000,0.000000,0.250000,0,0);}
.m79_c00059{transform:matrix(0.544860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544860,0.000000,0.000000,0.250000,0,0);}
.me8_c00059{transform:matrix(0.551588,0.008274,-0.003750,0.249972,0,0);-ms-transform:matrix(0.551588,0.008274,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.551588,0.008274,-0.003750,0.249972,0,0);}
.me5_c00059{transform:matrix(0.551838,0.008278,-0.003750,0.249972,0,0);-ms-transform:matrix(0.551838,0.008278,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.551838,0.008278,-0.003750,0.249972,0,0);}
.m70_c00059{transform:matrix(0.570935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.570935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.570935,0.000000,0.000000,0.250000,0,0);}
.m56_c00059{transform:matrix(0.573620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573620,0.000000,0.000000,0.250000,0,0);}
.m43_c00059{transform:matrix(0.588774,0.011187,-0.004749,0.249955,0,0);-ms-transform:matrix(0.588774,0.011187,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.588774,0.011187,-0.004749,0.249955,0,0);}
.m6b_c00059{transform:matrix(0.601810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.601810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.601810,0.000000,0.000000,0.250000,0,0);}
.m7e_c00059{transform:matrix(0.610880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.610880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.610880,0.000000,0.000000,0.250000,0,0);}
.me6_c00059{transform:matrix(0.616501,0.009248,-0.003750,0.249972,0,0);-ms-transform:matrix(0.616501,0.009248,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.616501,0.009248,-0.003750,0.249972,0,0);}
.m65_c00059{transform:matrix(0.623400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.623400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.623400,0.000000,0.000000,0.250000,0,0);}
.m91_c00059{transform:matrix(0.624660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.624660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.624660,0.000000,0.000000,0.250000,0,0);}
.m61_c00059{transform:matrix(0.634370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634370,0.000000,0.000000,0.250000,0,0);}
.m90_c00059{transform:matrix(0.663350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.663350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.663350,0.000000,0.000000,0.250000,0,0);}
.m66_c00059{transform:matrix(0.668075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.668075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.668075,0.000000,0.000000,0.250000,0,0);}
.me3_c00059{transform:matrix(0.677379,0.010161,-0.003750,0.249972,0,0);-ms-transform:matrix(0.677379,0.010161,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.677379,0.010161,-0.003750,0.249972,0,0);}
.m83_c00059{transform:matrix(0.698590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.698590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.698590,0.000000,0.000000,0.250000,0,0);}
.me7_c00059{transform:matrix(0.737917,0.011069,-0.003750,0.249972,0,0);-ms-transform:matrix(0.737917,0.011069,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.737917,0.011069,-0.003750,0.249972,0,0);}
.m78_c00059{transform:matrix(0.844730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.844730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.844730,0.000000,0.000000,0.250000,0,0);}
.m5f_c00059{transform:matrix(0.878150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.878150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.878150,0.000000,0.000000,0.250000,0,0);}
.m92_c00059{transform:matrix(0.903245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.903245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.903245,0.000000,0.000000,0.250000,0,0);}
.m84_c00059{transform:matrix(0.918455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.918455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.918455,0.000000,0.000000,0.250000,0,0);}
.m68_c00059{transform:matrix(0.948565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.948565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.948565,0.000000,0.000000,0.250000,0,0);}
.mc7_c00059{transform:matrix(1.043677,0.019830,-0.004749,0.249955,0,0);-ms-transform:matrix(1.043677,0.019830,-0.004749,0.249955,0,0);-webkit-transform:matrix(1.043677,0.019830,-0.004749,0.249955,0,0);}
.me0_c00059{transform:matrix(1.063775,0.015957,-0.003750,0.249972,0,0);-ms-transform:matrix(1.063775,0.015957,-0.003750,0.249972,0,0);-webkit-transform:matrix(1.063775,0.015957,-0.003750,0.249972,0,0);}
.m46_c00059{transform:matrix(1.077526,0.020473,-0.004749,0.249955,0,0);-ms-transform:matrix(1.077526,0.020473,-0.004749,0.249955,0,0);-webkit-transform:matrix(1.077526,0.020473,-0.004749,0.249955,0,0);}
.m8f_c00059{transform:matrix(1.110215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.110215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.110215,0.000000,0.000000,0.250000,0,0);}
.me2_c00059{transform:matrix(1.127948,0.016919,-0.003750,0.249972,0,0);-ms-transform:matrix(1.127948,0.016919,-0.003750,0.249972,0,0);-webkit-transform:matrix(1.127948,0.016919,-0.003750,0.249972,0,0);}
.m4f_c00059{transform:matrix(1.442580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.442580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.442580,0.000000,0.000000,0.250000,0,0);}
.m62_c00059{transform:matrix(1.614465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.614465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.614465,0.000000,0.000000,0.250000,0,0);}
.mc8_c00059{transform:matrix(2.291361,0.043536,-0.004749,0.249955,0,0);-ms-transform:matrix(2.291361,0.043536,-0.004749,0.249955,0,0);-webkit-transform:matrix(2.291361,0.043536,-0.004749,0.249955,0,0);}
.m81_c00059{transform:matrix(3.318390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.318390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.318390,0.000000,0.000000,0.250000,0,0);}
.m86_c00059{transform:matrix(5.703605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.703605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.703605,0.000000,0.000000,0.250000,0,0);}
.v0_c00059{vertical-align:0.000000px;}
.ls0_c00059{letter-spacing:0.000000px;}
.sc__c00059{text-shadow:none;}
.sc0_c00059{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__c00059{-webkit-text-stroke:0px transparent;}
.sc0_c00059{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00059{word-spacing:0.000000px;}
.fc0_c00059{color:transparent;}
.fsf_c00059{font-size:30.003375px;}
.fs3_c00059{font-size:42.007580px;}
.fse_c00059{font-size:48.005400px;}
.fsd_c00059{font-size:48.007775px;}
.fs4_c00059{font-size:48.008663px;}
.fs5_c00059{font-size:54.000000px;}
.fsb_c00059{font-size:54.011906px;}
.fs7_c00059{font-size:60.000000px;}
.fsc_c00059{font-size:60.010829px;}
.fsa_c00059{font-size:60.013229px;}
.fs2_c00059{font-size:66.013199px;}
.fs6_c00059{font-size:72.000000px;}
.fs9_c00059{font-size:78.000000px;}
.fs0_c00059{font-size:78.015598px;}
.fs8_c00059{font-size:84.000000px;}
.fs1_c00059{font-size:96.019198px;}
.fs10_c00059{font-size:318.063594px;}
.y0_c00059{bottom:0.000000px;}
.ye6_c00059{bottom:0.304478px;}
.ye8_c00059{bottom:0.304980px;}
.ye7_c00059{bottom:0.304995px;}
.yef_c00059{bottom:0.305302px;}
.ye9_c00059{bottom:0.305498px;}
.yf0_c00059{bottom:0.305647px;}
.yee_c00059{bottom:0.305880px;}
.yeb_c00059{bottom:0.305933px;}
.yea_c00059{bottom:0.306038px;}
.yec_c00059{bottom:0.306045px;}
.yed_c00059{bottom:0.306112px;}
.yf1_c00059{bottom:0.306142px;}
.ye5_c00059{bottom:5.575650px;}
.ye4_c00059{bottom:8.858512px;}
.ye3_c00059{bottom:9.349238px;}
.ye2_c00059{bottom:9.777997px;}
.ye1_c00059{bottom:10.223025px;}
.ye0_c00059{bottom:11.341500px;}
.ydf_c00059{bottom:14.999232px;}
.yde_c00059{bottom:16.168332px;}
.ydd_c00059{bottom:16.550976px;}
.ydc_c00059{bottom:16.970016px;}
.ydb_c00059{bottom:18.283215px;}
.yda_c00059{bottom:18.478830px;}
.yd9_c00059{bottom:18.746643px;}
.yd8_c00059{bottom:19.991478px;}
.yd7_c00059{bottom:20.511579px;}
.yd6_c00059{bottom:21.332271px;}
.yd5_c00059{bottom:21.795375px;}
.yd4_c00059{bottom:22.621440px;}
.yd3_c00059{bottom:23.082897px;}
.yd2_c00059{bottom:23.875644px;}
.yd1_c00059{bottom:24.303000px;}
.yd0_c00059{bottom:27.361768px;}
.ycf_c00059{bottom:28.616253px;}
.yce_c00059{bottom:29.426935px;}
.ycd_c00059{bottom:32.479713px;}
.ycc_c00059{bottom:33.898158px;}
.ycb_c00059{bottom:34.319217px;}
.yca_c00059{bottom:34.899277px;}
.yc9_c00059{bottom:35.512170px;}
.yc8_c00059{bottom:35.807116px;}
.yc7_c00059{bottom:36.391053px;}
.yc6_c00059{bottom:37.803000px;}
.yc5_c00059{bottom:43.629624px;}
.yc4_c00059{bottom:44.908883px;}
.yc3_c00059{bottom:45.352016px;}
.yc2_c00059{bottom:45.821211px;}
.yc1_c00059{bottom:47.330094px;}
.yc0_c00059{bottom:48.695781px;}
.ybf_c00059{bottom:49.155357px;}
.ybe_c00059{bottom:49.739312px;}
.ybd_c00059{bottom:50.548114px;}
.ybc_c00059{bottom:50.756540px;}
.ybb_c00059{bottom:51.170114px;}
.yba_c00059{bottom:52.110351px;}
.yb9_c00059{bottom:52.629392px;}
.yb8_c00059{bottom:53.525769px;}
.yb7_c00059{bottom:54.000855px;}
.ya8_c00059{bottom:58.171500px;}
.yb6_c00059{bottom:60.366658px;}
.yb5_c00059{bottom:60.889149px;}
.yb4_c00059{bottom:62.540537px;}
.yb3_c00059{bottom:63.062050px;}
.yb2_c00059{bottom:64.206666px;}
.yb1_c00059{bottom:64.586934px;}
.yb0_c00059{bottom:65.942127px;}
.yaf_c00059{bottom:66.626969px;}
.yae_c00059{bottom:66.699293px;}
.yad_c00059{bottom:67.226004px;}
.yac_c00059{bottom:68.516465px;}
.yab_c00059{bottom:68.914121px;}
.yaa_c00059{bottom:69.378966px;}
.ya9_c00059{bottom:69.934500px;}
.ya7_c00059{bottom:77.420894px;}
.ya6_c00059{bottom:78.873295px;}
.ya5_c00059{bottom:79.326927px;}
.ya4_c00059{bottom:79.888603px;}
.ya3_c00059{bottom:80.669583px;}
.ya2_c00059{bottom:81.440892px;}
.ya1_c00059{bottom:82.219163px;}
.ya0_c00059{bottom:83.472547px;}
.y9f_c00059{bottom:84.119746px;}
.y9e_c00059{bottom:84.761402px;}
.y9d_c00059{bottom:87.243727px;}
.y9c_c00059{bottom:87.754500px;}
.y9b_c00059{bottom:93.574500px;}
.y9a_c00059{bottom:96.175500px;}
.y99_c00059{bottom:97.341000px;}
.y98_c00059{bottom:97.732500px;}
.y97_c00059{bottom:98.515500px;}
.y96_c00059{bottom:100.165500px;}
.y95_c00059{bottom:102.207000px;}
.y94_c00059{bottom:103.923000px;}
.y93_c00059{bottom:105.840000px;}
.y92_c00059{bottom:111.606000px;}
.y91_c00059{bottom:112.812000px;}
.y90_c00059{bottom:114.148500px;}
.y8f_c00059{bottom:115.449000px;}
.y8e_c00059{bottom:115.735500px;}
.y8d_c00059{bottom:116.826000px;}
.y8c_c00059{bottom:118.326000px;}
.y8b_c00059{bottom:119.622000px;}
.y8a_c00059{bottom:123.120000px;}
.y89_c00059{bottom:129.573000px;}
.y88_c00059{bottom:132.594000px;}
.y87_c00059{bottom:134.275500px;}
.y86_c00059{bottom:136.164000px;}
.y85_c00059{bottom:140.940000px;}
.y84_c00059{bottom:147.673500px;}
.y83_c00059{bottom:149.019000px;}
.y82_c00059{bottom:150.408000px;}
.y81_c00059{bottom:150.799500px;}
.y80_c00059{bottom:151.489500px;}
.y7f_c00059{bottom:153.217500px;}
.y7e_c00059{bottom:154.048500px;}
.y7d_c00059{bottom:155.236500px;}
.y7c_c00059{bottom:157.072500px;}
.y7b_c00059{bottom:159.030000px;}
.y7a_c00059{bottom:165.802500px;}
.y79_c00059{bottom:166.779000px;}
.y78_c00059{bottom:167.784000px;}
.y77_c00059{bottom:169.497000px;}
.y76_c00059{bottom:171.390000px;}
.y75_c00059{bottom:172.807500px;}
.y74_c00059{bottom:176.580000px;}
.y73_c00059{bottom:183.112500px;}
.y72_c00059{bottom:186.049500px;}
.y71_c00059{bottom:186.526500px;}
.y70_c00059{bottom:187.080000px;}
.y6f_c00059{bottom:188.254500px;}
.y6e_c00059{bottom:189.429000px;}
.y6d_c00059{bottom:190.018500px;}
.y6c_c00059{bottom:190.680000px;}
.y6b_c00059{bottom:192.409500px;}
.y6a_c00059{bottom:193.858500px;}
.y69_c00059{bottom:200.406000px;}
.y68_c00059{bottom:202.584000px;}
.y67_c00059{bottom:203.707500px;}
.y66_c00059{bottom:204.729000px;}
.y65_c00059{bottom:205.381500px;}
.y64_c00059{bottom:208.362000px;}
.y63_c00059{bottom:211.140000px;}
.y62_c00059{bottom:217.423500px;}
.y61_c00059{bottom:220.114500px;}
.y60_c00059{bottom:220.684500px;}
.y5f_c00059{bottom:221.715000px;}
.y5e_c00059{bottom:222.351000px;}
.y5d_c00059{bottom:223.381500px;}
.y5c_c00059{bottom:224.515500px;}
.y5b_c00059{bottom:224.761500px;}
.y5a_c00059{bottom:225.367500px;}
.y59_c00059{bottom:226.399500px;}
.y58_c00059{bottom:228.151500px;}
.y57_c00059{bottom:234.742500px;}
.y56_c00059{bottom:235.530000px;}
.y55_c00059{bottom:236.238000px;}
.y54_c00059{bottom:236.808000px;}
.y53_c00059{bottom:237.270000px;}
.y52_c00059{bottom:238.194000px;}
.y51_c00059{bottom:242.698500px;}
.y50_c00059{bottom:245.163000px;}
.y4e_c00059{bottom:251.662550px;}
.y4d_c00059{bottom:253.145013px;}
.y4c_c00059{bottom:253.730064px;}
.y4b_c00059{bottom:254.011778px;}
.y4a_c00059{bottom:254.809209px;}
.y49_c00059{bottom:256.569026px;}
.y48_c00059{bottom:257.101416px;}
.y47_c00059{bottom:257.973995px;}
.y46_c00059{bottom:259.130520px;}
.y45_c00059{bottom:260.185515px;}
.y44_c00059{bottom:260.817887px;}
.y4f_c00059{bottom:261.364500px;}
.y43_c00059{bottom:270.993045px;}
.y42_c00059{bottom:271.880678px;}
.y41_c00059{bottom:274.283228px;}
.y40_c00059{bottom:274.728284px;}
.y3f_c00059{bottom:276.483000px;}
.y3e_c00059{bottom:298.882080px;}
.y3d_c00059{bottom:299.368080px;}
.y3c_c00059{bottom:299.729910px;}
.y3b_c00059{bottom:301.064970px;}
.y3a_c00059{bottom:301.571610px;}
.y39_c00059{bottom:303.078450px;}
.y38_c00059{bottom:303.850830px;}
.y37_c00059{bottom:304.714980px;}
.y36_c00059{bottom:306.038160px;}
.y35_c00059{bottom:306.708060px;}
.y34_c00059{bottom:307.059000px;}
.y33_c00059{bottom:308.495760px;}
.y32_c00059{bottom:309.576090px;}
.y31_c00059{bottom:310.083690px;}
.y30_c00059{bottom:311.586000px;}
.y2f_c00059{bottom:338.741970px;}
.y2e_c00059{bottom:339.229800px;}
.y2d_c00059{bottom:340.586700px;}
.y2c_c00059{bottom:341.075490px;}
.y2b_c00059{bottom:341.516880px;}
.y2a_c00059{bottom:342.108330px;}
.y29_c00059{bottom:342.506160px;}
.y28_c00059{bottom:343.728750px;}
.y27_c00059{bottom:344.207130px;}
.y26_c00059{bottom:345.655950px;}
.y25_c00059{bottom:346.144830px;}
.y24_c00059{bottom:346.641510px;}
.y23_c00059{bottom:347.081790px;}
.y22_c00059{bottom:347.757630px;}
.y21_c00059{bottom:371.725140px;}
.y20_c00059{bottom:373.361430px;}
.y1f_c00059{bottom:374.257230px;}
.y1e_c00059{bottom:374.744220px;}
.y1d_c00059{bottom:375.033720px;}
.y1c_c00059{bottom:377.601330px;}
.y1b_c00059{bottom:378.633060px;}
.y1a_c00059{bottom:379.043700px;}
.y19_c00059{bottom:379.873200px;}
.y18_c00059{bottom:381.452610px;}
.y17_c00059{bottom:382.057500px;}
.y16_c00059{bottom:405.912090px;}
.y15_c00059{bottom:406.635960px;}
.y14_c00059{bottom:406.976580px;}
.y13_c00059{bottom:407.403690px;}
.y12_c00059{bottom:408.755220px;}
.y11_c00059{bottom:409.005540px;}
.y10_c00059{bottom:409.683360px;}
.yf_c00059{bottom:410.101380px;}
.ye_c00059{bottom:411.277950px;}
.yd_c00059{bottom:411.705270px;}
.yc_c00059{bottom:412.152690px;}
.yb_c00059{bottom:412.556010px;}
.ya_c00059{bottom:413.693790px;}
.y9_c00059{bottom:414.364170px;}
.y8_c00059{bottom:414.921930px;}
.y7_c00059{bottom:416.483760px;}
.y6_c00059{bottom:416.880690px;}
.y5_c00059{bottom:446.730300px;}
.y4_c00059{bottom:449.570790px;}
.y3_c00059{bottom:450.548310px;}
.y2_c00059{bottom:452.968110px;}
.y1_c00059{bottom:455.218500px;}
.yf5_c00059{bottom:472.482450px;}
.yf4_c00059{bottom:477.519750px;}
.yf3_c00059{bottom:483.600990px;}
.yf2_c00059{bottom:485.494500px;}
.h11_c00059{height:30.003375px;}
.h5_c00059{height:42.007580px;}
.h10_c00059{height:48.005400px;}
.hf_c00059{height:48.007775px;}
.h6_c00059{height:48.008663px;}
.h7_c00059{height:54.000000px;}
.hd_c00059{height:54.011906px;}
.h9_c00059{height:60.000000px;}
.he_c00059{height:60.010829px;}
.hc_c00059{height:60.013229px;}
.h4_c00059{height:66.013199px;}
.h8_c00059{height:72.000000px;}
.hb_c00059{height:78.000000px;}
.h2_c00059{height:78.015598px;}
.ha_c00059{height:84.000000px;}
.h3_c00059{height:96.019198px;}
.h12_c00059{height:318.063594px;}
.h0_c00059{height:711.720000px;}
.h1_c00059{height:711.750000px;}
.w1_c00059{width:945.750000px;}
.w0_c00059{width:946.050000px;}
.x0_c00059{left:0.000000px;}
.x6_c00059{left:94.264830px;}
.x1_c00059{left:104.820000px;}
.x77_c00059{left:112.081500px;}
.x7_c00059{left:116.287200px;}
.xb7_c00059{left:119.502000px;}
.x17_c00059{left:128.703000px;}
.x6f_c00059{left:136.122000px;}
.x7d_c00059{left:137.191500px;}
.x8f_c00059{left:142.075020px;}
.x6b_c00059{left:145.036500px;}
.x63_c00059{left:146.388000px;}
.x5f_c00059{left:147.484500px;}
.x56_c00059{left:149.644500px;}
.x4f_c00059{left:152.343000px;}
.x48_c00059{left:154.506000px;}
.x41_c00059{left:157.210500px;}
.x18_c00059{left:158.947500px;}
.x7e_c00059{left:161.514000px;}
.x85_c00059{left:163.674000px;}
.x20_c00059{left:165.275400px;}
.x9a_c00059{left:169.375500px;}
.xa1_c00059{left:172.887000px;}
.x40_c00059{left:175.230000px;}
.xac_c00059{left:178.606500px;}
.x86_c00059{left:190.128000px;}
.x2a_c00059{left:191.215500px;}
.x39_c00059{left:198.387144px;}
.x8_c00059{left:203.082180px;}
.xaf_c00059{left:206.014155px;}
.x21_c00059{left:207.470760px;}
.x90_c00059{left:210.669969px;}
.x87_c00059{left:212.263500px;}
.xb8_c00059{left:214.177500px;}
.x2_c00059{left:217.339500px;}
.x57_c00059{left:225.927000px;}
.x88_c00059{left:231.199500px;}
.x9_c00059{left:234.046410px;}
.x91_c00059{left:236.601005px;}
.x19_c00059{left:237.918000px;}
.xa2_c00059{left:242.565000px;}
.x64_c00059{left:244.282500px;}
.x49_c00059{left:246.706500px;}
.xad_c00059{left:253.171500px;}
.x22_c00059{left:266.023440px;}
.xa_c00059{left:271.316910px;}
.x9b_c00059{left:274.422000px;}
.x36_c00059{left:275.496000px;}
.x1a_c00059{left:279.393000px;}
.xb0_c00059{left:282.432345px;}
.x92_c00059{left:283.589481px;}
.x78_c00059{left:285.055500px;}
.x42_c00059{left:286.927500px;}
.xa3_c00059{left:288.457500px;}
.x9c_c00059{left:289.945500px;}
.x3a_c00059{left:292.092411px;}
.x23_c00059{left:296.544870px;}
.x50_c00059{left:298.530000px;}
.x1b_c00059{left:299.925000px;}
.x4a_c00059{left:300.993000px;}
.x93_c00059{left:304.283922px;}
.x70_c00059{left:310.990500px;}
.x94_c00059{left:314.709143px;}
.x58_c00059{left:316.930500px;}
.x89_c00059{left:321.175500px;}
.x9d_c00059{left:322.203000px;}
.x4b_c00059{left:332.857500px;}
.xb_c00059{left:334.508430px;}
.x65_c00059{left:336.094500px;}
.x3_c00059{left:338.329500px;}
.x7f_c00059{left:341.094000px;}
.x2b_c00059{left:342.450000px;}
.xae_c00059{left:344.139000px;}
.x4c_c00059{left:345.817500px;}
.x1c_c00059{left:351.511500px;}
.x9e_c00059{left:352.732500px;}
.x8a_c00059{left:353.787000px;}
.x95_c00059{left:355.152993px;}
.xc_c00059{left:356.925330px;}
.x2c_c00059{left:359.997000px;}
.x37_c00059{left:367.849500px;}
.xb1_c00059{left:369.381420px;}
.x71_c00059{left:375.765000px;}
.xd_c00059{left:381.772320px;}
.x59_c00059{left:382.807500px;}
.x6c_c00059{left:383.869500px;}
.x4_c00059{left:387.205500px;}
.xa4_c00059{left:388.674000px;}
.x38_c00059{left:391.273500px;}
.x2d_c00059{left:393.492000px;}
.x66_c00059{left:395.497500px;}
.xb2_c00059{left:397.194675px;}
.x80_c00059{left:400.779000px;}
.xe_c00059{left:405.539280px;}
.x96_c00059{left:407.274564px;}
.x24_c00059{left:416.989500px;}
.x8b_c00059{left:418.320000px;}
.x60_c00059{left:420.622500px;}
.x3b_c00059{left:434.410618px;}
.x67_c00059{left:437.082000px;}
.x5a_c00059{left:444.646500px;}
.x9f_c00059{left:449.548500px;}
.x72_c00059{left:450.795000px;}
.x51_c00059{left:455.421000px;}
.xa5_c00059{left:457.831500px;}
.x2e_c00059{left:459.651000px;}
.x79_c00059{left:460.821000px;}
.xb3_c00059{left:467.402970px;}
.xf_c00059{left:470.895390px;}
.xa6_c00059{left:472.710000px;}
.x81_c00059{left:474.568500px;}
.x6d_c00059{left:478.332000px;}
.x1d_c00059{left:479.892000px;}
.xa7_c00059{left:483.577500px;}
.x52_c00059{left:489.729000px;}
.x8c_c00059{left:490.933500px;}
.x10_c00059{left:494.122320px;}
.x7a_c00059{left:498.087000px;}
.x2f_c00059{left:502.858500px;}
.x73_c00059{left:505.312500px;}
.x5b_c00059{left:506.475000px;}
.x82_c00059{left:511.758000px;}
.xb4_c00059{left:513.308797px;}
.x7b_c00059{left:516.714000px;}
.x1e_c00059{left:518.716500px;}
.x61_c00059{left:520.242000px;}
.x43_c00059{left:523.974000px;}
.x5_c00059{left:529.230000px;}
.x11_c00059{left:531.764820px;}
.x5c_c00059{left:535.639500px;}
.x83_c00059{left:538.504500px;}
.x30_c00059{left:541.477500px;}
.x53_c00059{left:543.454500px;}
.x12_c00059{left:545.706390px;}
.x4d_c00059{left:547.513500px;}
.x97_c00059{left:550.947557px;}
.x25_c00059{left:555.269070px;}
.xa8_c00059{left:556.533000px;}
.x68_c00059{left:557.950500px;}
.x5d_c00059{left:560.745000px;}
.x6e_c00059{left:562.381500px;}
.x1f_c00059{left:563.506500px;}
.xb5_c00059{left:566.774813px;}
.x44_c00059{left:572.617500px;}
.x98_c00059{left:574.433560px;}
.x3c_c00059{left:576.505326px;}
.xa9_c00059{left:579.813000px;}
.x26_c00059{left:582.815760px;}
.x74_c00059{left:584.661000px;}
.xb6_c00059{left:589.456920px;}
.x3d_c00059{left:592.122111px;}
.x8d_c00059{left:594.405000px;}
.x45_c00059{left:596.919000px;}
.xaa_c00059{left:601.071000px;}
.x54_c00059{left:602.589000px;}
.x62_c00059{left:610.431000px;}
.x27_c00059{left:613.332690px;}
.x31_c00059{left:616.819500px;}
.x8e_c00059{left:619.285500px;}
.x13_c00059{left:620.785890px;}
.x3e_c00059{left:624.651738px;}
.x46_c00059{left:626.889000px;}
.x84_c00059{left:629.268000px;}
.x32_c00059{left:642.151500px;}
.x14_c00059{left:644.542350px;}
.x69_c00059{left:646.923000px;}
.x75_c00059{left:651.454500px;}
.xa0_c00059{left:652.888500px;}
.x99_c00059{left:660.596887px;}
.x15_c00059{left:663.449100px;}
.xab_c00059{left:666.021000px;}
.x7c_c00059{left:696.094500px;}
.x28_c00059{left:698.134470px;}
.x16_c00059{left:703.694220px;}
.x47_c00059{left:705.583500px;}
.x3f_c00059{left:707.019806px;}
.x33_c00059{left:708.904500px;}
.x76_c00059{left:711.775500px;}
.x6a_c00059{left:714.207000px;}
.x5e_c00059{left:715.296000px;}
.x55_c00059{left:717.190500px;}
.x4e_c00059{left:719.085000px;}
.x34_c00059{left:726.996000px;}
.x29_c00059{left:728.603400px;}
.x35_c00059{left:751.296000px;}
.xb9_c00059{left:770.104500px;}
@media print{
.v0_c00059{vertical-align:0.000000pt;}
.ls0_c00059{letter-spacing:0.000000pt;}
.ws0_c00059{word-spacing:0.000000pt;}
.fsf_c00059{font-size:26.669666pt;}
.fs3_c00059{font-size:37.340071pt;}
.fse_c00059{font-size:42.671466pt;}
.fsd_c00059{font-size:42.673578pt;}
.fs4_c00059{font-size:42.674367pt;}
.fs5_c00059{font-size:48.000000pt;}
.fsb_c00059{font-size:48.010583pt;}
.fs7_c00059{font-size:53.333333pt;}
.fsc_c00059{font-size:53.342959pt;}
.fsa_c00059{font-size:53.345092pt;}
.fs2_c00059{font-size:58.678399pt;}
.fs6_c00059{font-size:64.000000pt;}
.fs9_c00059{font-size:69.333333pt;}
.fs0_c00059{font-size:69.347199pt;}
.fs8_c00059{font-size:74.666667pt;}
.fs1_c00059{font-size:85.350398pt;}
.fs10_c00059{font-size:282.723194pt;}
.y0_c00059{bottom:0.000000pt;}
.ye6_c00059{bottom:0.270647pt;}
.ye8_c00059{bottom:0.271093pt;}
.ye7_c00059{bottom:0.271107pt;}
.yef_c00059{bottom:0.271380pt;}
.ye9_c00059{bottom:0.271553pt;}
.yf0_c00059{bottom:0.271687pt;}
.yee_c00059{bottom:0.271893pt;}
.yeb_c00059{bottom:0.271940pt;}
.yea_c00059{bottom:0.272033pt;}
.yec_c00059{bottom:0.272040pt;}
.yed_c00059{bottom:0.272100pt;}
.yf1_c00059{bottom:0.272127pt;}
.ye5_c00059{bottom:4.956133pt;}
.ye4_c00059{bottom:7.874233pt;}
.ye3_c00059{bottom:8.310433pt;}
.ye2_c00059{bottom:8.691553pt;}
.ye1_c00059{bottom:9.087133pt;}
.ye0_c00059{bottom:10.081333pt;}
.ydf_c00059{bottom:13.332651pt;}
.yde_c00059{bottom:14.371851pt;}
.ydd_c00059{bottom:14.711979pt;}
.ydc_c00059{bottom:15.084459pt;}
.ydb_c00059{bottom:16.251747pt;}
.yda_c00059{bottom:16.425627pt;}
.yd9_c00059{bottom:16.663683pt;}
.yd8_c00059{bottom:17.770203pt;}
.yd7_c00059{bottom:18.232515pt;}
.yd6_c00059{bottom:18.962019pt;}
.yd5_c00059{bottom:19.373667pt;}
.yd4_c00059{bottom:20.107947pt;}
.yd3_c00059{bottom:20.518131pt;}
.yd2_c00059{bottom:21.222795pt;}
.yd1_c00059{bottom:21.602667pt;}
.yd0_c00059{bottom:24.321572pt;}
.ycf_c00059{bottom:25.436669pt;}
.yce_c00059{bottom:26.157276pt;}
.ycd_c00059{bottom:28.870856pt;}
.ycc_c00059{bottom:30.131696pt;}
.ycb_c00059{bottom:30.505971pt;}
.yca_c00059{bottom:31.021580pt;}
.yc9_c00059{bottom:31.566373pt;}
.yc8_c00059{bottom:31.828548pt;}
.yc7_c00059{bottom:32.347603pt;}
.yc6_c00059{bottom:33.602667pt;}
.yc5_c00059{bottom:38.781888pt;}
.yc4_c00059{bottom:39.919007pt;}
.yc3_c00059{bottom:40.312903pt;}
.yc2_c00059{bottom:40.729965pt;}
.yc1_c00059{bottom:42.071195pt;}
.yc0_c00059{bottom:43.285139pt;}
.ybf_c00059{bottom:43.693651pt;}
.ybe_c00059{bottom:44.212721pt;}
.ybd_c00059{bottom:44.931657pt;}
.ybc_c00059{bottom:45.116924pt;}
.ybb_c00059{bottom:45.484545pt;}
.yba_c00059{bottom:46.320312pt;}
.yb9_c00059{bottom:46.781681pt;}
.yb8_c00059{bottom:47.578461pt;}
.yb7_c00059{bottom:48.000760pt;}
.ya8_c00059{bottom:51.708000pt;}
.yb6_c00059{bottom:53.659252pt;}
.yb5_c00059{bottom:54.123688pt;}
.yb4_c00059{bottom:55.591588pt;}
.yb3_c00059{bottom:56.055156pt;}
.yb2_c00059{bottom:57.072592pt;}
.yb1_c00059{bottom:57.410608pt;}
.yb0_c00059{bottom:58.615224pt;}
.yaf_c00059{bottom:59.223972pt;}
.yae_c00059{bottom:59.288260pt;}
.yad_c00059{bottom:59.756448pt;}
.yac_c00059{bottom:60.903524pt;}
.yab_c00059{bottom:61.256996pt;}
.yaa_c00059{bottom:61.670192pt;}
.ya9_c00059{bottom:62.164000pt;}
.ya7_c00059{bottom:68.818572pt;}
.ya6_c00059{bottom:70.109596pt;}
.ya5_c00059{bottom:70.512824pt;}
.ya4_c00059{bottom:71.012092pt;}
.ya3_c00059{bottom:71.706296pt;}
.ya2_c00059{bottom:72.391904pt;}
.ya1_c00059{bottom:73.083700pt;}
.ya0_c00059{bottom:74.197820pt;}
.y9f_c00059{bottom:74.773108pt;}
.y9e_c00059{bottom:75.343468pt;}
.y9d_c00059{bottom:77.549980pt;}
.y9c_c00059{bottom:78.004000pt;}
.y9b_c00059{bottom:83.177333pt;}
.y9a_c00059{bottom:85.489333pt;}
.y99_c00059{bottom:86.525333pt;}
.y98_c00059{bottom:86.873333pt;}
.y97_c00059{bottom:87.569333pt;}
.y96_c00059{bottom:89.036000pt;}
.y95_c00059{bottom:90.850667pt;}
.y94_c00059{bottom:92.376000pt;}
.y93_c00059{bottom:94.080000pt;}
.y92_c00059{bottom:99.205333pt;}
.y91_c00059{bottom:100.277333pt;}
.y90_c00059{bottom:101.465333pt;}
.y8f_c00059{bottom:102.621333pt;}
.y8e_c00059{bottom:102.876000pt;}
.y8d_c00059{bottom:103.845333pt;}
.y8c_c00059{bottom:105.178667pt;}
.y8b_c00059{bottom:106.330667pt;}
.y8a_c00059{bottom:109.440000pt;}
.y89_c00059{bottom:115.176000pt;}
.y88_c00059{bottom:117.861333pt;}
.y87_c00059{bottom:119.356000pt;}
.y86_c00059{bottom:121.034667pt;}
.y85_c00059{bottom:125.280000pt;}
.y84_c00059{bottom:131.265333pt;}
.y83_c00059{bottom:132.461333pt;}
.y82_c00059{bottom:133.696000pt;}
.y81_c00059{bottom:134.044000pt;}
.y80_c00059{bottom:134.657333pt;}
.y7f_c00059{bottom:136.193333pt;}
.y7e_c00059{bottom:136.932000pt;}
.y7d_c00059{bottom:137.988000pt;}
.y7c_c00059{bottom:139.620000pt;}
.y7b_c00059{bottom:141.360000pt;}
.y7a_c00059{bottom:147.380000pt;}
.y79_c00059{bottom:148.248000pt;}
.y78_c00059{bottom:149.141333pt;}
.y77_c00059{bottom:150.664000pt;}
.y76_c00059{bottom:152.346667pt;}
.y75_c00059{bottom:153.606667pt;}
.y74_c00059{bottom:156.960000pt;}
.y73_c00059{bottom:162.766667pt;}
.y72_c00059{bottom:165.377333pt;}
.y71_c00059{bottom:165.801333pt;}
.y70_c00059{bottom:166.293333pt;}
.y6f_c00059{bottom:167.337333pt;}
.y6e_c00059{bottom:168.381333pt;}
.y6d_c00059{bottom:168.905333pt;}
.y6c_c00059{bottom:169.493333pt;}
.y6b_c00059{bottom:171.030667pt;}
.y6a_c00059{bottom:172.318667pt;}
.y69_c00059{bottom:178.138667pt;}
.y68_c00059{bottom:180.074667pt;}
.y67_c00059{bottom:181.073333pt;}
.y66_c00059{bottom:181.981333pt;}
.y65_c00059{bottom:182.561333pt;}
.y64_c00059{bottom:185.210667pt;}
.y63_c00059{bottom:187.680000pt;}
.y62_c00059{bottom:193.265333pt;}
.y61_c00059{bottom:195.657333pt;}
.y60_c00059{bottom:196.164000pt;}
.y5f_c00059{bottom:197.080000pt;}
.y5e_c00059{bottom:197.645333pt;}
.y5d_c00059{bottom:198.561333pt;}
.y5c_c00059{bottom:199.569333pt;}
.y5b_c00059{bottom:199.788000pt;}
.y5a_c00059{bottom:200.326667pt;}
.y59_c00059{bottom:201.244000pt;}
.y58_c00059{bottom:202.801333pt;}
.y57_c00059{bottom:208.660000pt;}
.y56_c00059{bottom:209.360000pt;}
.y55_c00059{bottom:209.989333pt;}
.y54_c00059{bottom:210.496000pt;}
.y53_c00059{bottom:210.906667pt;}
.y52_c00059{bottom:211.728000pt;}
.y51_c00059{bottom:215.732000pt;}
.y50_c00059{bottom:217.922667pt;}
.y4e_c00059{bottom:223.700044pt;}
.y4d_c00059{bottom:225.017789pt;}
.y4c_c00059{bottom:225.537835pt;}
.y4b_c00059{bottom:225.788247pt;}
.y4a_c00059{bottom:226.497075pt;}
.y49_c00059{bottom:228.061356pt;}
.y48_c00059{bottom:228.534592pt;}
.y47_c00059{bottom:229.310217pt;}
.y46_c00059{bottom:230.338240pt;}
.y45_c00059{bottom:231.276013pt;}
.y44_c00059{bottom:231.838121pt;}
.y4f_c00059{bottom:232.324000pt;}
.y43_c00059{bottom:240.882707pt;}
.y42_c00059{bottom:241.671713pt;}
.y41_c00059{bottom:243.807313pt;}
.y40_c00059{bottom:244.202919pt;}
.y3f_c00059{bottom:245.762667pt;}
.y3e_c00059{bottom:265.672960pt;}
.y3d_c00059{bottom:266.104960pt;}
.y3c_c00059{bottom:266.426587pt;}
.y3b_c00059{bottom:267.613307pt;}
.y3a_c00059{bottom:268.063653pt;}
.y39_c00059{bottom:269.403067pt;}
.y38_c00059{bottom:270.089627pt;}
.y37_c00059{bottom:270.857760pt;}
.y36_c00059{bottom:272.033920pt;}
.y35_c00059{bottom:272.629387pt;}
.y34_c00059{bottom:272.941333pt;}
.y33_c00059{bottom:274.218453pt;}
.y32_c00059{bottom:275.178747pt;}
.y31_c00059{bottom:275.629947pt;}
.y30_c00059{bottom:276.965333pt;}
.y2f_c00059{bottom:301.103973pt;}
.y2e_c00059{bottom:301.537600pt;}
.y2d_c00059{bottom:302.743733pt;}
.y2c_c00059{bottom:303.178213pt;}
.y2b_c00059{bottom:303.570560pt;}
.y2a_c00059{bottom:304.096293pt;}
.y29_c00059{bottom:304.449920pt;}
.y28_c00059{bottom:305.536667pt;}
.y27_c00059{bottom:305.961893pt;}
.y26_c00059{bottom:307.249733pt;}
.y25_c00059{bottom:307.684293pt;}
.y24_c00059{bottom:308.125787pt;}
.y23_c00059{bottom:308.517147pt;}
.y22_c00059{bottom:309.117893pt;}
.y21_c00059{bottom:330.422347pt;}
.y20_c00059{bottom:331.876827pt;}
.y1f_c00059{bottom:332.673093pt;}
.y1e_c00059{bottom:333.105973pt;}
.y1d_c00059{bottom:333.363307pt;}
.y1c_c00059{bottom:335.645627pt;}
.y1b_c00059{bottom:336.562720pt;}
.y1a_c00059{bottom:336.927733pt;}
.y19_c00059{bottom:337.665067pt;}
.y18_c00059{bottom:339.068987pt;}
.y17_c00059{bottom:339.606667pt;}
.y16_c00059{bottom:360.810747pt;}
.y15_c00059{bottom:361.454187pt;}
.y14_c00059{bottom:361.756960pt;}
.y13_c00059{bottom:362.136613pt;}
.y12_c00059{bottom:363.337973pt;}
.y11_c00059{bottom:363.560480pt;}
.y10_c00059{bottom:364.162987pt;}
.yf_c00059{bottom:364.534560pt;}
.ye_c00059{bottom:365.580400pt;}
.yd_c00059{bottom:365.960240pt;}
.yc_c00059{bottom:366.357947pt;}
.yb_c00059{bottom:366.716453pt;}
.ya_c00059{bottom:367.727813pt;}
.y9_c00059{bottom:368.323707pt;}
.y8_c00059{bottom:368.819493pt;}
.y7_c00059{bottom:370.207787pt;}
.y6_c00059{bottom:370.560613pt;}
.y5_c00059{bottom:397.093600pt;}
.y4_c00059{bottom:399.618480pt;}
.y3_c00059{bottom:400.487387pt;}
.y2_c00059{bottom:402.638320pt;}
.y1_c00059{bottom:404.638667pt;}
.yf5_c00059{bottom:419.984400pt;}
.yf4_c00059{bottom:424.462000pt;}
.yf3_c00059{bottom:429.867547pt;}
.yf2_c00059{bottom:431.550667pt;}
.h11_c00059{height:26.669666pt;}
.h5_c00059{height:37.340071pt;}
.h10_c00059{height:42.671466pt;}
.hf_c00059{height:42.673578pt;}
.h6_c00059{height:42.674367pt;}
.h7_c00059{height:48.000000pt;}
.hd_c00059{height:48.010583pt;}
.h9_c00059{height:53.333333pt;}
.he_c00059{height:53.342959pt;}
.hc_c00059{height:53.345092pt;}
.h4_c00059{height:58.678399pt;}
.h8_c00059{height:64.000000pt;}
.hb_c00059{height:69.333333pt;}
.h2_c00059{height:69.347199pt;}
.ha_c00059{height:74.666667pt;}
.h3_c00059{height:85.350398pt;}
.h12_c00059{height:282.723194pt;}
.h0_c00059{height:632.640000pt;}
.h1_c00059{height:632.666667pt;}
.w1_c00059{width:840.666667pt;}
.w0_c00059{width:840.933333pt;}
.x0_c00059{left:0.000000pt;}
.x6_c00059{left:83.790960pt;}
.x1_c00059{left:93.173333pt;}
.x77_c00059{left:99.628000pt;}
.x7_c00059{left:103.366400pt;}
.xb7_c00059{left:106.224000pt;}
.x17_c00059{left:114.402667pt;}
.x6f_c00059{left:120.997333pt;}
.x7d_c00059{left:121.948000pt;}
.x8f_c00059{left:126.288907pt;}
.x6b_c00059{left:128.921333pt;}
.x63_c00059{left:130.122667pt;}
.x5f_c00059{left:131.097333pt;}
.x56_c00059{left:133.017333pt;}
.x4f_c00059{left:135.416000pt;}
.x48_c00059{left:137.338667pt;}
.x41_c00059{left:139.742667pt;}
.x18_c00059{left:141.286667pt;}
.x7e_c00059{left:143.568000pt;}
.x85_c00059{left:145.488000pt;}
.x20_c00059{left:146.911467pt;}
.x9a_c00059{left:150.556000pt;}
.xa1_c00059{left:153.677333pt;}
.x40_c00059{left:155.760000pt;}
.xac_c00059{left:158.761333pt;}
.x86_c00059{left:169.002667pt;}
.x2a_c00059{left:169.969333pt;}
.x39_c00059{left:176.344128pt;}
.x8_c00059{left:180.517493pt;}
.xaf_c00059{left:183.123693pt;}
.x21_c00059{left:184.418453pt;}
.x90_c00059{left:187.262195pt;}
.x87_c00059{left:188.678667pt;}
.xb8_c00059{left:190.380000pt;}
.x2_c00059{left:193.190667pt;}
.x57_c00059{left:200.824000pt;}
.x88_c00059{left:205.510667pt;}
.x9_c00059{left:208.041253pt;}
.x91_c00059{left:210.312004pt;}
.x19_c00059{left:211.482667pt;}
.xa2_c00059{left:215.613333pt;}
.x64_c00059{left:217.140000pt;}
.x49_c00059{left:219.294667pt;}
.xad_c00059{left:225.041333pt;}
.x22_c00059{left:236.465280pt;}
.xa_c00059{left:241.170587pt;}
.x9b_c00059{left:243.930667pt;}
.x36_c00059{left:244.885333pt;}
.x1a_c00059{left:248.349333pt;}
.xb0_c00059{left:251.050973pt;}
.x92_c00059{left:252.079539pt;}
.x78_c00059{left:253.382667pt;}
.x42_c00059{left:255.046667pt;}
.xa3_c00059{left:256.406667pt;}
.x9c_c00059{left:257.729333pt;}
.x3a_c00059{left:259.637699pt;}
.x23_c00059{left:263.595440pt;}
.x50_c00059{left:265.360000pt;}
.x1b_c00059{left:266.600000pt;}
.x4a_c00059{left:267.549333pt;}
.x93_c00059{left:270.474597pt;}
.x70_c00059{left:276.436000pt;}
.x94_c00059{left:279.741460pt;}
.x58_c00059{left:281.716000pt;}
.x89_c00059{left:285.489333pt;}
.x9d_c00059{left:286.402667pt;}
.x4b_c00059{left:295.873333pt;}
.xb_c00059{left:297.340827pt;}
.x65_c00059{left:298.750667pt;}
.x3_c00059{left:300.737333pt;}
.x7f_c00059{left:303.194667pt;}
.x2b_c00059{left:304.400000pt;}
.xae_c00059{left:305.901333pt;}
.x4c_c00059{left:307.393333pt;}
.x1c_c00059{left:312.454667pt;}
.x9e_c00059{left:313.540000pt;}
.x8a_c00059{left:314.477333pt;}
.x95_c00059{left:315.691549pt;}
.xc_c00059{left:317.266960pt;}
.x2c_c00059{left:319.997333pt;}
.x37_c00059{left:326.977333pt;}
.xb1_c00059{left:328.339040pt;}
.x71_c00059{left:334.013333pt;}
.xd_c00059{left:339.353173pt;}
.x59_c00059{left:340.273333pt;}
.x6c_c00059{left:341.217333pt;}
.x4_c00059{left:344.182667pt;}
.xa4_c00059{left:345.488000pt;}
.x38_c00059{left:347.798667pt;}
.x2d_c00059{left:349.770667pt;}
.x66_c00059{left:351.553333pt;}
.xb2_c00059{left:353.061933pt;}
.x80_c00059{left:356.248000pt;}
.xe_c00059{left:360.479360pt;}
.x96_c00059{left:362.021835pt;}
.x24_c00059{left:370.657333pt;}
.x8b_c00059{left:371.840000pt;}
.x60_c00059{left:373.886667pt;}
.x3b_c00059{left:386.142772pt;}
.x67_c00059{left:388.517333pt;}
.x5a_c00059{left:395.241333pt;}
.x9f_c00059{left:399.598667pt;}
.x72_c00059{left:400.706667pt;}
.x51_c00059{left:404.818667pt;}
.xa5_c00059{left:406.961333pt;}
.x2e_c00059{left:408.578667pt;}
.x79_c00059{left:409.618667pt;}
.xb3_c00059{left:415.469307pt;}
.xf_c00059{left:418.573680pt;}
.xa6_c00059{left:420.186667pt;}
.x81_c00059{left:421.838667pt;}
.x6d_c00059{left:425.184000pt;}
.x1d_c00059{left:426.570667pt;}
.xa7_c00059{left:429.846667pt;}
.x52_c00059{left:435.314667pt;}
.x8c_c00059{left:436.385333pt;}
.x10_c00059{left:439.219840pt;}
.x7a_c00059{left:442.744000pt;}
.x2f_c00059{left:446.985333pt;}
.x73_c00059{left:449.166667pt;}
.x5b_c00059{left:450.200000pt;}
.x82_c00059{left:454.896000pt;}
.xb4_c00059{left:456.274487pt;}
.x7b_c00059{left:459.301333pt;}
.x1e_c00059{left:461.081333pt;}
.x61_c00059{left:462.437333pt;}
.x43_c00059{left:465.754667pt;}
.x5_c00059{left:470.426667pt;}
.x11_c00059{left:472.679840pt;}
.x5c_c00059{left:476.124000pt;}
.x83_c00059{left:478.670667pt;}
.x30_c00059{left:481.313333pt;}
.x53_c00059{left:483.070667pt;}
.x12_c00059{left:485.072347pt;}
.x4d_c00059{left:486.678667pt;}
.x97_c00059{left:489.731161pt;}
.x25_c00059{left:493.572507pt;}
.xa8_c00059{left:494.696000pt;}
.x68_c00059{left:495.956000pt;}
.x5d_c00059{left:498.440000pt;}
.x6e_c00059{left:499.894667pt;}
.x1f_c00059{left:500.894667pt;}
.xb5_c00059{left:503.799833pt;}
.x44_c00059{left:508.993333pt;}
.x98_c00059{left:510.607609pt;}
.x3c_c00059{left:512.449179pt;}
.xa9_c00059{left:515.389333pt;}
.x26_c00059{left:518.058453pt;}
.x74_c00059{left:519.698667pt;}
.xb6_c00059{left:523.961707pt;}
.x3d_c00059{left:526.330765pt;}
.x8d_c00059{left:528.360000pt;}
.x45_c00059{left:530.594667pt;}
.xaa_c00059{left:534.285333pt;}
.x54_c00059{left:535.634667pt;}
.x62_c00059{left:542.605333pt;}
.x27_c00059{left:545.184613pt;}
.x31_c00059{left:548.284000pt;}
.x8e_c00059{left:550.476000pt;}
.x13_c00059{left:551.809680pt;}
.x3e_c00059{left:555.245989pt;}
.x46_c00059{left:557.234667pt;}
.x84_c00059{left:559.349333pt;}
.x32_c00059{left:570.801333pt;}
.x14_c00059{left:572.926533pt;}
.x69_c00059{left:575.042667pt;}
.x75_c00059{left:579.070667pt;}
.xa0_c00059{left:580.345333pt;}
.x99_c00059{left:587.197233pt;}
.x15_c00059{left:589.732533pt;}
.xab_c00059{left:592.018667pt;}
.x7c_c00059{left:618.750667pt;}
.x28_c00059{left:620.563973pt;}
.x16_c00059{left:625.505973pt;}
.x47_c00059{left:627.185333pt;}
.x3f_c00059{left:628.462049pt;}
.x33_c00059{left:630.137333pt;}
.x76_c00059{left:632.689333pt;}
.x6a_c00059{left:634.850667pt;}
.x5e_c00059{left:635.818667pt;}
.x55_c00059{left:637.502667pt;}
.x4e_c00059{left:639.186667pt;}
.x34_c00059{left:646.218667pt;}
.x29_c00059{left:647.647467pt;}
.x35_c00059{left:667.818667pt;}
.xb9_c00059{left:684.537333pt;}
}





/* 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_c00060 {
    display:none;
  }
  .loading-indicator_c00060.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00060 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_c00060 { 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_c00060" -> "#page-container .classname_c00060")
 */
.pf_c00060 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00060 { /* 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_c00060.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00060 { /* 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_c00060 { /* 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_c00060 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00060 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00060 {overflow:visible;}
  }
}
.c_c00060 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00060 { /* 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_c00060:after { /* webkit #35443 */
  content: '';
}
.t_c00060:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00060 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 */
}
.__c00060 { /* 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_c00060 { /* info for Javascript */
  display:none;
}
.l_c00060 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00060 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00060 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00060: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_c00060 {
    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_c00060.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00060.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_c00060 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00060{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00060;src:url('chunks/assets/font_fe3cd3c6b9706b260f6e1774.woff2')format("woff");}.ff1_c00060{font-family:ff1_c00060;line-height:1.000000;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;}
.m3_c00060{transform:matrix(0.307790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307790,0.000000,0.000000,0.250000,0,0);}
.m2_c00060{transform:matrix(0.354495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354495,0.000000,0.000000,0.250000,0,0);}
.m0_c00060{transform:matrix(0.424875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424875,0.000000,0.000000,0.250000,0,0);}
.m1_c00060{transform:matrix(0.602940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602940,0.000000,0.000000,0.250000,0,0);}
.m4_c00060{transform:matrix(1.374745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.374745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.374745,0.000000,0.000000,0.250000,0,0);}
.v0_c00060{vertical-align:0.000000px;}
.ls0_c00060{letter-spacing:0.000000px;}
.sc__c00060{text-shadow:none;}
.sc0_c00060{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__c00060{-webkit-text-stroke:0px transparent;}
.sc0_c00060{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00060{word-spacing:0.000000px;}
.fc0_c00060{color:transparent;}
.fs0_c00060{font-size:90.000000px;}
.fs1_c00060{font-size:102.000000px;}
.y0_c00060{bottom:0.000000px;}
.y1_c00060{bottom:452.821500px;}
.y2_c00060{bottom:475.780500px;}
.h2_c00060{height:90.000000px;}
.h3_c00060{height:102.000000px;}
.h0_c00060{height:711.720000px;}
.h1_c00060{height:711.750000px;}
.w1_c00060{width:945.750000px;}
.w0_c00060{width:946.050000px;}
.x0_c00060{left:0.000000px;}
.x1_c00060{left:53.730000px;}
.x2_c00060{left:142.560000px;}
.x3_c00060{left:270.270000px;}
.x4_c00060{left:336.420000px;}
.x5_c00060{left:435.240000px;}
@media print{
.v0_c00060{vertical-align:0.000000pt;}
.ls0_c00060{letter-spacing:0.000000pt;}
.ws0_c00060{word-spacing:0.000000pt;}
.fs0_c00060{font-size:80.000000pt;}
.fs1_c00060{font-size:90.666667pt;}
.y0_c00060{bottom:0.000000pt;}
.y1_c00060{bottom:402.508000pt;}
.y2_c00060{bottom:422.916000pt;}
.h2_c00060{height:80.000000pt;}
.h3_c00060{height:90.666667pt;}
.h0_c00060{height:632.640000pt;}
.h1_c00060{height:632.666667pt;}
.w1_c00060{width:840.666667pt;}
.w0_c00060{width:840.933333pt;}
.x0_c00060{left:0.000000pt;}
.x1_c00060{left:47.760000pt;}
.x2_c00060{left:126.720000pt;}
.x3_c00060{left:240.240000pt;}
.x4_c00060{left:299.040000pt;}
.x5_c00060{left:386.880000pt;}
}





/* 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_c00061 {
    display:none;
  }
  .loading-indicator_c00061.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00061 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_c00061 { 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_c00061" -> "#page-container .classname_c00061")
 */
.pf_c00061 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00061 { /* 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_c00061.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00061 { /* 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_c00061 { /* 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_c00061 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00061 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00061 {overflow:visible;}
  }
}
.c_c00061 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00061 { /* 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_c00061:after { /* webkit #35443 */
  content: '';
}
.t_c00061:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00061 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 */
}
.__c00061 { /* 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_c00061 { /* info for Javascript */
  display:none;
}
.l_c00061 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00061 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00061 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00061: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_c00061 {
    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_c00061.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00061.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_c00061 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00061{font-family:sans-serif;visibility:hidden;}
.sc__c00061{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00061{-webkit-text-stroke:0px transparent;}
}
.y0_c00061{bottom:0.000000px;}
.h0_c00061{height:711.720000px;}
.h1_c00061{height:711.750000px;}
.w1_c00061{width:945.750000px;}
.w0_c00061{width:946.050000px;}
.x0_c00061{left:0.000000px;}
@media print{
.y0_c00061{bottom:0.000000pt;}
.h0_c00061{height:632.640000pt;}
.h1_c00061{height:632.666667pt;}
.w1_c00061{width:840.666667pt;}
.w0_c00061{width:840.933333pt;}
.x0_c00061{left:0.000000pt;}
}





/* 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_c00062 {
    display:none;
  }
  .loading-indicator_c00062.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00062 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_c00062 { 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_c00062" -> "#page-container .classname_c00062")
 */
.pf_c00062 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00062 { /* 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_c00062.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00062 { /* 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_c00062 { /* 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_c00062 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00062 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00062 {overflow:visible;}
  }
}
.c_c00062 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00062 { /* 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_c00062:after { /* webkit #35443 */
  content: '';
}
.t_c00062:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00062 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 */
}
.__c00062 { /* 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_c00062 { /* info for Javascript */
  display:none;
}
.l_c00062 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00062 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00062 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00062: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_c00062 {
    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_c00062.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00062.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_c00062 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00062{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00062;src:url('chunks/assets/font_c605e72f209fc835e906f064.woff2')format("woff");}.ff1_c00062{font-family:ff1_c00062;line-height:1.000000;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;}
.m2e_c00062{transform:matrix(0.012480,0.000100,-0.002000,0.249992,0,0);-ms-transform:matrix(0.012480,0.000100,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.012480,0.000100,-0.002000,0.249992,0,0);}
.me_c00062{transform:matrix(0.021419,0.000236,-0.002750,0.249985,0,0);-ms-transform:matrix(0.021419,0.000236,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.021419,0.000236,-0.002750,0.249985,0,0);}
.m38_c00062{transform:matrix(0.025455,0.000127,-0.001250,0.249997,0,0);-ms-transform:matrix(0.025455,0.000127,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.025455,0.000127,-0.001250,0.249997,0,0);}
.m2a_c00062{transform:matrix(0.032779,0.000262,-0.002000,0.249992,0,0);-ms-transform:matrix(0.032779,0.000262,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.032779,0.000262,-0.002000,0.249992,0,0);}
.m2c_c00062{transform:matrix(0.062803,0.000502,-0.002000,0.249992,0,0);-ms-transform:matrix(0.062803,0.000502,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.062803,0.000502,-0.002000,0.249992,0,0);}
.mb_c00062{transform:matrix(0.074215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.074215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.074215,0.000000,0.000000,0.250000,0,0);}
.m36_c00062{transform:matrix(0.092659,0.000463,-0.001250,0.249997,0,0);-ms-transform:matrix(0.092659,0.000463,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.092659,0.000463,-0.001250,0.249997,0,0);}
.m1c_c00062{transform:matrix(0.117476,0.000940,-0.002000,0.249992,0,0);-ms-transform:matrix(0.117476,0.000940,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.117476,0.000940,-0.002000,0.249992,0,0);}
.m3a_c00062{transform:matrix(0.136193,0.000681,-0.001250,0.249997,0,0);-ms-transform:matrix(0.136193,0.000681,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.136193,0.000681,-0.001250,0.249997,0,0);}
.md_c00062{transform:matrix(0.139720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139720,0.000000,0.000000,0.250000,0,0);}
.m24_c00062{transform:matrix(0.140381,0.001123,-0.002000,0.249992,0,0);-ms-transform:matrix(0.140381,0.001123,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.140381,0.001123,-0.002000,0.249992,0,0);}
.m15_c00062{transform:matrix(0.150155,0.001201,-0.002000,0.249992,0,0);-ms-transform:matrix(0.150155,0.001201,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.150155,0.001201,-0.002000,0.249992,0,0);}
.m44_c00062{transform:matrix(0.154838,0.000774,-0.001250,0.249997,0,0);-ms-transform:matrix(0.154838,0.000774,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.154838,0.000774,-0.001250,0.249997,0,0);}
.m14_c00062{transform:matrix(0.170445,0.001364,-0.002000,0.249992,0,0);-ms-transform:matrix(0.170445,0.001364,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.170445,0.001364,-0.002000,0.249992,0,0);}
.m43_c00062{transform:matrix(0.197588,0.000988,-0.001250,0.249997,0,0);-ms-transform:matrix(0.197588,0.000988,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.197588,0.000988,-0.001250,0.249997,0,0);}
.ma_c00062{transform:matrix(0.205295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205295,0.000000,0.000000,0.250000,0,0);}
.m11_c00062{transform:matrix(0.209622,0.002306,-0.002750,0.249985,0,0);-ms-transform:matrix(0.209622,0.002306,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.209622,0.002306,-0.002750,0.249985,0,0);}
.mc_c00062{transform:matrix(0.217680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217680,0.000000,0.000000,0.250000,0,0);}
.m1f_c00062{transform:matrix(0.231638,0.001853,-0.002000,0.249992,0,0);-ms-transform:matrix(0.231638,0.001853,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.231638,0.001853,-0.002000,0.249992,0,0);}
.m42_c00062{transform:matrix(0.242327,0.001212,-0.001250,0.249997,0,0);-ms-transform:matrix(0.242327,0.001212,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.242327,0.001212,-0.001250,0.249997,0,0);}
.m39_c00062{transform:matrix(0.250222,0.001251,-0.001250,0.249997,0,0);-ms-transform:matrix(0.250222,0.001251,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.250222,0.001251,-0.001250,0.249997,0,0);}
.m3f_c00062{transform:matrix(0.261617,0.001308,-0.001250,0.249997,0,0);-ms-transform:matrix(0.261617,0.001308,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.261617,0.001308,-0.001250,0.249997,0,0);}
.m35_c00062{transform:matrix(0.274167,0.001371,-0.001250,0.249997,0,0);-ms-transform:matrix(0.274167,0.001371,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.274167,0.001371,-0.001250,0.249997,0,0);}
.m28_c00062{transform:matrix(0.276361,0.002211,-0.002000,0.249992,0,0);-ms-transform:matrix(0.276361,0.002211,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.276361,0.002211,-0.002000,0.249992,0,0);}
.m3e_c00062{transform:matrix(0.281231,0.001406,-0.001250,0.249997,0,0);-ms-transform:matrix(0.281231,0.001406,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.281231,0.001406,-0.001250,0.249997,0,0);}
.m26_c00062{transform:matrix(0.286066,0.002289,-0.002000,0.249992,0,0);-ms-transform:matrix(0.286066,0.002289,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.286066,0.002289,-0.002000,0.249992,0,0);}
.m1b_c00062{transform:matrix(0.294001,0.002352,-0.002000,0.249992,0,0);-ms-transform:matrix(0.294001,0.002352,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.294001,0.002352,-0.002000,0.249992,0,0);}
.m27_c00062{transform:matrix(0.308445,0.002468,-0.002000,0.249992,0,0);-ms-transform:matrix(0.308445,0.002468,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.308445,0.002468,-0.002000,0.249992,0,0);}
.m13_c00062{transform:matrix(0.313900,0.002511,-0.002000,0.249992,0,0);-ms-transform:matrix(0.313900,0.002511,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.313900,0.002511,-0.002000,0.249992,0,0);}
.m32_c00062{transform:matrix(0.314185,0.002513,-0.002000,0.249992,0,0);-ms-transform:matrix(0.314185,0.002513,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.314185,0.002513,-0.002000,0.249992,0,0);}
.m3d_c00062{transform:matrix(0.320476,0.001602,-0.001250,0.249997,0,0);-ms-transform:matrix(0.320476,0.001602,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.320476,0.001602,-0.001250,0.249997,0,0);}
.m10_c00062{transform:matrix(0.321041,0.003531,-0.002750,0.249985,0,0);-ms-transform:matrix(0.321041,0.003531,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.321041,0.003531,-0.002750,0.249985,0,0);}
.m2d_c00062{transform:matrix(0.341964,0.002736,-0.002000,0.249992,0,0);-ms-transform:matrix(0.341964,0.002736,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.341964,0.002736,-0.002000,0.249992,0,0);}
.m1e_c00062{transform:matrix(0.342534,0.002740,-0.002000,0.249992,0,0);-ms-transform:matrix(0.342534,0.002740,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.342534,0.002740,-0.002000,0.249992,0,0);}
.m29_c00062{transform:matrix(0.344159,0.002753,-0.002000,0.249992,0,0);-ms-transform:matrix(0.344159,0.002753,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.344159,0.002753,-0.002000,0.249992,0,0);}
.m25_c00062{transform:matrix(0.346749,0.002774,-0.002000,0.249992,0,0);-ms-transform:matrix(0.346749,0.002774,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.346749,0.002774,-0.002000,0.249992,0,0);}
.m23_c00062{transform:matrix(0.350069,0.002801,-0.002000,0.249992,0,0);-ms-transform:matrix(0.350069,0.002801,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.350069,0.002801,-0.002000,0.249992,0,0);}
.m1a_c00062{transform:matrix(0.353854,0.002831,-0.002000,0.249992,0,0);-ms-transform:matrix(0.353854,0.002831,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.353854,0.002831,-0.002000,0.249992,0,0);}
.m12_c00062{transform:matrix(0.358744,0.002870,-0.002000,0.249992,0,0);-ms-transform:matrix(0.358744,0.002870,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.358744,0.002870,-0.002000,0.249992,0,0);}
.m2f_c00062{transform:matrix(0.363863,0.002911,-0.002000,0.249992,0,0);-ms-transform:matrix(0.363863,0.002911,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.363863,0.002911,-0.002000,0.249992,0,0);}
.m18_c00062{transform:matrix(0.373048,0.002984,-0.002000,0.249992,0,0);-ms-transform:matrix(0.373048,0.002984,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.373048,0.002984,-0.002000,0.249992,0,0);}
.m40_c00062{transform:matrix(0.374335,0.001872,-0.001250,0.249997,0,0);-ms-transform:matrix(0.374335,0.001872,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.374335,0.001872,-0.001250,0.249997,0,0);}
.m1d_c00062{transform:matrix(0.375198,0.003002,-0.002000,0.249992,0,0);-ms-transform:matrix(0.375198,0.003002,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.375198,0.003002,-0.002000,0.249992,0,0);}
.m21_c00062{transform:matrix(0.400757,0.003206,-0.002000,0.249992,0,0);-ms-transform:matrix(0.400757,0.003206,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.400757,0.003206,-0.002000,0.249992,0,0);}
.m17_c00062{transform:matrix(0.420542,0.003364,-0.002000,0.249992,0,0);-ms-transform:matrix(0.420542,0.003364,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.420542,0.003364,-0.002000,0.249992,0,0);}
.m31_c00062{transform:matrix(0.491084,0.003929,-0.002000,0.249992,0,0);-ms-transform:matrix(0.491084,0.003929,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.491084,0.003929,-0.002000,0.249992,0,0);}
.m8_c00062{transform:matrix(0.524200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524200,0.000000,0.000000,0.250000,0,0);}
.m20_c00062{transform:matrix(0.553087,0.004425,-0.002000,0.249992,0,0);-ms-transform:matrix(0.553087,0.004425,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.553087,0.004425,-0.002000,0.249992,0,0);}
.m45_c00062{transform:matrix(0.579233,0.002896,-0.001250,0.249997,0,0);-ms-transform:matrix(0.579233,0.002896,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.579233,0.002896,-0.001250,0.249997,0,0);}
.m1_c00062{transform:matrix(0.645088,0.006451,-0.002500,0.249988,0,0);-ms-transform:matrix(0.645088,0.006451,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.645088,0.006451,-0.002500,0.249988,0,0);}
.m2_c00062{transform:matrix(0.652247,0.006522,-0.002500,0.249988,0,0);-ms-transform:matrix(0.652247,0.006522,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.652247,0.006522,-0.002500,0.249988,0,0);}
.m9_c00062{transform:matrix(0.693670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.693670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.693670,0.000000,0.000000,0.250000,0,0);}
.m3_c00062{transform:matrix(0.750122,0.007501,-0.002500,0.249988,0,0);-ms-transform:matrix(0.750122,0.007501,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.750122,0.007501,-0.002500,0.249988,0,0);}
.mf_c00062{transform:matrix(0.774183,0.008516,-0.002750,0.249985,0,0);-ms-transform:matrix(0.774183,0.008516,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.774183,0.008516,-0.002750,0.249985,0,0);}
.m5_c00062{transform:matrix(0.809865,0.008099,-0.002500,0.249988,0,0);-ms-transform:matrix(0.809865,0.008099,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.809865,0.008099,-0.002500,0.249988,0,0);}
.m3b_c00062{transform:matrix(0.836215,0.004181,-0.001250,0.249997,0,0);-ms-transform:matrix(0.836215,0.004181,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.836215,0.004181,-0.001250,0.249997,0,0);}
.m34_c00062{transform:matrix(0.868569,0.004343,-0.001250,0.249997,0,0);-ms-transform:matrix(0.868569,0.004343,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.868569,0.004343,-0.001250,0.249997,0,0);}
.m4_c00062{transform:matrix(0.908695,0.009087,-0.002500,0.249988,0,0);-ms-transform:matrix(0.908695,0.009087,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.908695,0.009087,-0.002500,0.249988,0,0);}
.m7_c00062{transform:matrix(0.944273,0.009443,-0.002500,0.249988,0,0);-ms-transform:matrix(0.944273,0.009443,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.944273,0.009443,-0.002500,0.249988,0,0);}
.m19_c00062{transform:matrix(0.962464,0.007700,-0.002000,0.249992,0,0);-ms-transform:matrix(0.962464,0.007700,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.962464,0.007700,-0.002000,0.249992,0,0);}
.m22_c00062{transform:matrix(0.963664,0.007709,-0.002000,0.249992,0,0);-ms-transform:matrix(0.963664,0.007709,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.963664,0.007709,-0.002000,0.249992,0,0);}
.m2b_c00062{transform:matrix(1.018272,0.008146,-0.002000,0.249992,0,0);-ms-transform:matrix(1.018272,0.008146,-0.002000,0.249992,0,0);-webkit-transform:matrix(1.018272,0.008146,-0.002000,0.249992,0,0);}
.m33_c00062{transform:matrix(1.060957,0.005305,-0.001250,0.249997,0,0);-ms-transform:matrix(1.060957,0.005305,-0.001250,0.249997,0,0);-webkit-transform:matrix(1.060957,0.005305,-0.001250,0.249997,0,0);}
.m3c_c00062{transform:matrix(1.069437,0.005347,-0.001250,0.249997,0,0);-ms-transform:matrix(1.069437,0.005347,-0.001250,0.249997,0,0);-webkit-transform:matrix(1.069437,0.005347,-0.001250,0.249997,0,0);}
.m0_c00062{transform:matrix(1.125404,0.011254,-0.002500,0.249988,0,0);-ms-transform:matrix(1.125404,0.011254,-0.002500,0.249988,0,0);-webkit-transform:matrix(1.125404,0.011254,-0.002500,0.249988,0,0);}
.m6_c00062{transform:matrix(1.174181,0.011742,-0.002500,0.249988,0,0);-ms-transform:matrix(1.174181,0.011742,-0.002500,0.249988,0,0);-webkit-transform:matrix(1.174181,0.011742,-0.002500,0.249988,0,0);}
.m30_c00062{transform:matrix(1.284024,0.010272,-0.002000,0.249992,0,0);-ms-transform:matrix(1.284024,0.010272,-0.002000,0.249992,0,0);-webkit-transform:matrix(1.284024,0.010272,-0.002000,0.249992,0,0);}
.m41_c00062{transform:matrix(1.303004,0.006515,-0.001250,0.249997,0,0);-ms-transform:matrix(1.303004,0.006515,-0.001250,0.249997,0,0);-webkit-transform:matrix(1.303004,0.006515,-0.001250,0.249997,0,0);}
.m16_c00062{transform:matrix(1.477428,0.011819,-0.002000,0.249992,0,0);-ms-transform:matrix(1.477428,0.011819,-0.002000,0.249992,0,0);-webkit-transform:matrix(1.477428,0.011819,-0.002000,0.249992,0,0);}
.m37_c00062{transform:matrix(1.888596,0.009443,-0.001250,0.249997,0,0);-ms-transform:matrix(1.888596,0.009443,-0.001250,0.249997,0,0);-webkit-transform:matrix(1.888596,0.009443,-0.001250,0.249997,0,0);}
.v0_c00062{vertical-align:0.000000px;}
.ls0_c00062{letter-spacing:0.000000px;}
.sc__c00062{text-shadow:none;}
.sc0_c00062{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__c00062{-webkit-text-stroke:0px transparent;}
.sc0_c00062{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00062{word-spacing:0.000000px;}
.fc0_c00062{color:transparent;}
.fs1_c00062{font-size:18.000000px;}
.fs3_c00062{font-size:24.000000px;}
.fs4_c00062{font-size:30.000000px;}
.fsb_c00062{font-size:30.000375px;}
.fs0_c00062{font-size:42.002100px;}
.fs2_c00062{font-size:60.000000px;}
.fs6_c00062{font-size:66.003993px;}
.fsa_c00062{font-size:78.002496px;}
.fs8_c00062{font-size:84.002688px;}
.fs5_c00062{font-size:96.005808px;}
.fs7_c00062{font-size:102.003264px;}
.fs9_c00062{font-size:192.006144px;}
.y47_c00062{bottom:-0.095828px;}
.y46_c00062{bottom:-0.075630px;}
.y45_c00062{bottom:-0.035153px;}
.y0_c00062{bottom:0.000000px;}
.y44_c00062{bottom:0.040440px;}
.y43_c00062{bottom:0.596685px;}
.y42_c00062{bottom:0.666810px;}
.y41_c00062{bottom:0.772073px;}
.y40_c00062{bottom:0.886868px;}
.y3f_c00062{bottom:0.940995px;}
.y3e_c00062{bottom:1.202797px;}
.y3d_c00062{bottom:1.413390px;}
.y3c_c00062{bottom:1.536255px;}
.y3b_c00062{bottom:1.707720px;}
.y3a_c00062{bottom:1.887263px;}
.y39_c00062{bottom:2.439443px;}
.y38_c00062{bottom:2.478502px;}
.y37_c00062{bottom:2.679728px;}
.y36_c00062{bottom:2.852505px;}
.y35_c00062{bottom:3.240000px;}
.y34_c00062{bottom:46.565544px;}
.y33_c00062{bottom:47.281704px;}
.y32_c00062{bottom:48.794244px;}
.y31_c00062{bottom:49.229292px;}
.y30_c00062{bottom:49.545492px;}
.y2f_c00062{bottom:50.216280px;}
.y2e_c00062{bottom:100.558812px;}
.y2d_c00062{bottom:100.559472px;}
.y2c_c00062{bottom:126.475164px;}
.y2b_c00062{bottom:126.795192px;}
.y2a_c00062{bottom:127.815828px;}
.y29_c00062{bottom:128.503212px;}
.y28_c00062{bottom:129.219036px;}
.y27_c00062{bottom:130.275636px;}
.y26_c00062{bottom:130.630344px;}
.y25_c00062{bottom:131.218968px;}
.y24_c00062{bottom:132.803508px;}
.y23_c00062{bottom:133.775796px;}
.y22_c00062{bottom:135.386232px;}
.y21_c00062{bottom:136.367664px;}
.y20_c00062{bottom:136.529652px;}
.y1f_c00062{bottom:137.399316px;}
.y1e_c00062{bottom:163.786536px;}
.y1d_c00062{bottom:164.848656px;}
.y1c_c00062{bottom:165.367104px;}
.y1b_c00062{bottom:166.713084px;}
.y1a_c00062{bottom:167.866212px;}
.y19_c00062{bottom:168.607068px;}
.y18_c00062{bottom:169.306344px;}
.y17_c00062{bottom:169.532484px;}
.y16_c00062{bottom:170.209704px;}
.y15_c00062{bottom:170.568552px;}
.y14_c00062{bottom:170.920500px;}
.y13_c00062{bottom:221.394281px;}
.y12_c00062{bottom:306.476217px;}
.y11_c00062{bottom:309.115310px;}
.y10_c00062{bottom:310.593000px;}
.yf_c00062{bottom:311.580000px;}
.ye_c00062{bottom:315.900000px;}
.yd_c00062{bottom:329.400000px;}
.yc_c00062{bottom:332.100000px;}
.yb_c00062{bottom:334.800000px;}
.ya_c00062{bottom:374.220000px;}
.y8_c00062{bottom:422.210040px;}
.y7_c00062{bottom:423.574530px;}
.y6_c00062{bottom:424.657335px;}
.y5_c00062{bottom:425.461890px;}
.y4_c00062{bottom:426.490590px;}
.y3_c00062{bottom:428.555985px;}
.y2_c00062{bottom:430.051710px;}
.y1_c00062{bottom:430.650000px;}
.y9_c00062{bottom:473.580000px;}
.h3_c00062{height:18.000000px;}
.h5_c00062{height:24.000000px;}
.h6_c00062{height:30.000000px;}
.hd_c00062{height:30.000375px;}
.h2_c00062{height:42.002100px;}
.h4_c00062{height:60.000000px;}
.h8_c00062{height:66.003993px;}
.hc_c00062{height:78.002496px;}
.ha_c00062{height:84.002688px;}
.h7_c00062{height:96.005808px;}
.h9_c00062{height:102.003264px;}
.hb_c00062{height:192.006144px;}
.h0_c00062{height:711.720000px;}
.h1_c00062{height:711.750000px;}
.w1_c00062{width:945.750000px;}
.w0_c00062{width:946.050000px;}
.x0_c00062{left:0.000000px;}
.x1_c00062{left:16.459500px;}
.x1a_c00062{left:27.667608px;}
.x10_c00062{left:31.413000px;}
.x2c_c00062{left:47.233500px;}
.x28_c00062{left:56.819688px;}
.x2_c00062{left:76.288500px;}
.x29_c00062{left:83.218848px;}
.x1b_c00062{left:100.185792px;}
.x1c_c00062{left:113.683860px;}
.x11_c00062{left:120.262500px;}
.x2d_c00062{left:124.732500px;}
.x2e_c00062{left:159.288000px;}
.x1d_c00062{left:195.485244px;}
.x2f_c00062{left:199.533000px;}
.x12_c00062{left:204.915000px;}
.x30_c00062{left:207.345000px;}
.x3_c00062{left:225.861000px;}
.x13_c00062{left:233.182500px;}
.x2a_c00062{left:245.474652px;}
.x2b_c00062{left:305.180244px;}
.x31_c00062{left:317.781000px;}
.x14_c00062{left:320.592000px;}
.x1e_c00062{left:329.660448px;}
.x32_c00062{left:353.689500px;}
.x33_c00062{left:387.982500px;}
.x1f_c00062{left:410.693856px;}
.x15_c00062{left:413.199000px;}
.x4_c00062{left:432.400500px;}
.x34_c00062{left:454.674000px;}
.xc_c00062{left:497.991000px;}
.x35_c00062{left:507.034500px;}
.x36_c00062{left:517.860000px;}
.x5_c00062{left:535.270500px;}
.x37_c00062{left:540.819000px;}
.x20_c00062{left:542.757132px;}
.x16_c00062{left:557.340000px;}
.x38_c00062{left:561.871500px;}
.x39_c00062{left:575.896500px;}
.x21_c00062{left:591.771060px;}
.x6_c00062{left:615.726000px;}
.x22_c00062{left:621.296112px;}
.xd_c00062{left:632.326500px;}
.x3a_c00062{left:687.145500px;}
.x3b_c00062{left:702.264000px;}
.x23_c00062{left:709.305792px;}
.x3c_c00062{left:710.359500px;}
.x3d_c00062{left:714.399000px;}
.x7_c00062{left:724.006500px;}
.x17_c00062{left:725.587500px;}
.x24_c00062{left:768.969384px;}
.x18_c00062{left:790.393500px;}
.x25_c00062{left:826.203048px;}
.x8_c00062{left:860.455500px;}
.xe_c00062{left:872.244000px;}
.x26_c00062{left:911.217324px;}
.xb_c00062{left:914.220000px;}
.xa_c00062{left:915.300000px;}
.x9_c00062{left:918.810000px;}
.xf_c00062{left:921.535676px;}
.x19_c00062{left:923.158500px;}
.x27_c00062{left:937.907472px;}
@media print{
.v0_c00062{vertical-align:0.000000pt;}
.ls0_c00062{letter-spacing:0.000000pt;}
.ws0_c00062{word-spacing:0.000000pt;}
.fs1_c00062{font-size:16.000000pt;}
.fs3_c00062{font-size:21.333333pt;}
.fs4_c00062{font-size:26.666667pt;}
.fsb_c00062{font-size:26.667000pt;}
.fs0_c00062{font-size:37.335200pt;}
.fs2_c00062{font-size:53.333333pt;}
.fs6_c00062{font-size:58.670216pt;}
.fsa_c00062{font-size:69.335552pt;}
.fs8_c00062{font-size:74.669056pt;}
.fs5_c00062{font-size:85.338496pt;}
.fs7_c00062{font-size:90.669568pt;}
.fs9_c00062{font-size:170.672128pt;}
.y47_c00062{bottom:-0.085180pt;}
.y46_c00062{bottom:-0.067227pt;}
.y45_c00062{bottom:-0.031247pt;}
.y0_c00062{bottom:0.000000pt;}
.y44_c00062{bottom:0.035947pt;}
.y43_c00062{bottom:0.530387pt;}
.y42_c00062{bottom:0.592720pt;}
.y41_c00062{bottom:0.686287pt;}
.y40_c00062{bottom:0.788327pt;}
.y3f_c00062{bottom:0.836440pt;}
.y3e_c00062{bottom:1.069153pt;}
.y3d_c00062{bottom:1.256347pt;}
.y3c_c00062{bottom:1.365560pt;}
.y3b_c00062{bottom:1.517973pt;}
.y3a_c00062{bottom:1.677567pt;}
.y39_c00062{bottom:2.168393pt;}
.y38_c00062{bottom:2.203113pt;}
.y37_c00062{bottom:2.381980pt;}
.y36_c00062{bottom:2.535560pt;}
.y35_c00062{bottom:2.880000pt;}
.y34_c00062{bottom:41.391595pt;}
.y33_c00062{bottom:42.028181pt;}
.y32_c00062{bottom:43.372661pt;}
.y31_c00062{bottom:43.759371pt;}
.y30_c00062{bottom:44.040437pt;}
.y2f_c00062{bottom:44.636693pt;}
.y2e_c00062{bottom:89.385611pt;}
.y2d_c00062{bottom:89.386197pt;}
.y2c_c00062{bottom:112.422368pt;}
.y2b_c00062{bottom:112.706837pt;}
.y2a_c00062{bottom:113.614069pt;}
.y29_c00062{bottom:114.225077pt;}
.y28_c00062{bottom:114.861365pt;}
.y27_c00062{bottom:115.800565pt;}
.y26_c00062{bottom:116.115861pt;}
.y25_c00062{bottom:116.639083pt;}
.y24_c00062{bottom:118.047563pt;}
.y23_c00062{bottom:118.911819pt;}
.y22_c00062{bottom:120.343317pt;}
.y21_c00062{bottom:121.215701pt;}
.y20_c00062{bottom:121.359691pt;}
.y1f_c00062{bottom:122.132725pt;}
.y1e_c00062{bottom:145.588032pt;}
.y1d_c00062{bottom:146.532139pt;}
.y1c_c00062{bottom:146.992981pt;}
.y1b_c00062{bottom:148.189408pt;}
.y1a_c00062{bottom:149.214411pt;}
.y19_c00062{bottom:149.872949pt;}
.y18_c00062{bottom:150.494528pt;}
.y17_c00062{bottom:150.695541pt;}
.y16_c00062{bottom:151.297515pt;}
.y15_c00062{bottom:151.616491pt;}
.y14_c00062{bottom:151.929333pt;}
.y13_c00062{bottom:196.794916pt;}
.y12_c00062{bottom:272.423304pt;}
.y11_c00062{bottom:274.769164pt;}
.y10_c00062{bottom:276.082667pt;}
.yf_c00062{bottom:276.960000pt;}
.ye_c00062{bottom:280.800000pt;}
.yd_c00062{bottom:292.800000pt;}
.yc_c00062{bottom:295.200000pt;}
.yb_c00062{bottom:297.600000pt;}
.ya_c00062{bottom:332.640000pt;}
.y8_c00062{bottom:375.297813pt;}
.y7_c00062{bottom:376.510693pt;}
.y6_c00062{bottom:377.473187pt;}
.y5_c00062{bottom:378.188347pt;}
.y4_c00062{bottom:379.102747pt;}
.y3_c00062{bottom:380.938653pt;}
.y2_c00062{bottom:382.268187pt;}
.y1_c00062{bottom:382.800000pt;}
.y9_c00062{bottom:420.960000pt;}
.h3_c00062{height:16.000000pt;}
.h5_c00062{height:21.333333pt;}
.h6_c00062{height:26.666667pt;}
.hd_c00062{height:26.667000pt;}
.h2_c00062{height:37.335200pt;}
.h4_c00062{height:53.333333pt;}
.h8_c00062{height:58.670216pt;}
.hc_c00062{height:69.335552pt;}
.ha_c00062{height:74.669056pt;}
.h7_c00062{height:85.338496pt;}
.h9_c00062{height:90.669568pt;}
.hb_c00062{height:170.672128pt;}
.h0_c00062{height:632.640000pt;}
.h1_c00062{height:632.666667pt;}
.w1_c00062{width:840.666667pt;}
.w0_c00062{width:840.933333pt;}
.x0_c00062{left:0.000000pt;}
.x1_c00062{left:14.630667pt;}
.x1a_c00062{left:24.593429pt;}
.x10_c00062{left:27.922667pt;}
.x2c_c00062{left:41.985333pt;}
.x28_c00062{left:50.506389pt;}
.x2_c00062{left:67.812000pt;}
.x29_c00062{left:73.972309pt;}
.x1b_c00062{left:89.054037pt;}
.x1c_c00062{left:101.052320pt;}
.x11_c00062{left:106.900000pt;}
.x2d_c00062{left:110.873333pt;}
.x2e_c00062{left:141.589333pt;}
.x1d_c00062{left:173.764661pt;}
.x2f_c00062{left:177.362667pt;}
.x12_c00062{left:182.146667pt;}
.x30_c00062{left:184.306667pt;}
.x3_c00062{left:200.765333pt;}
.x13_c00062{left:207.273333pt;}
.x2a_c00062{left:218.199691pt;}
.x2b_c00062{left:271.271328pt;}
.x31_c00062{left:282.472000pt;}
.x14_c00062{left:284.970667pt;}
.x1e_c00062{left:293.031509pt;}
.x32_c00062{left:314.390667pt;}
.x33_c00062{left:344.873333pt;}
.x1f_c00062{left:365.061205pt;}
.x15_c00062{left:367.288000pt;}
.x4_c00062{left:384.356000pt;}
.x34_c00062{left:404.154667pt;}
.xc_c00062{left:442.658667pt;}
.x35_c00062{left:450.697333pt;}
.x36_c00062{left:460.320000pt;}
.x5_c00062{left:475.796000pt;}
.x37_c00062{left:480.728000pt;}
.x20_c00062{left:482.450784pt;}
.x16_c00062{left:495.413333pt;}
.x38_c00062{left:499.441333pt;}
.x39_c00062{left:511.908000pt;}
.x21_c00062{left:526.018720pt;}
.x6_c00062{left:547.312000pt;}
.x22_c00062{left:552.263211pt;}
.xd_c00062{left:562.068000pt;}
.x3a_c00062{left:610.796000pt;}
.x3b_c00062{left:624.234667pt;}
.x23_c00062{left:630.494037pt;}
.x3c_c00062{left:631.430667pt;}
.x3d_c00062{left:635.021333pt;}
.x7_c00062{left:643.561333pt;}
.x17_c00062{left:644.966667pt;}
.x24_c00062{left:683.528341pt;}
.x18_c00062{left:702.572000pt;}
.x25_c00062{left:734.402709pt;}
.x8_c00062{left:764.849333pt;}
.xe_c00062{left:775.328000pt;}
.x26_c00062{left:809.970955pt;}
.xb_c00062{left:812.640000pt;}
.xa_c00062{left:813.600000pt;}
.x9_c00062{left:816.720000pt;}
.xf_c00062{left:819.142823pt;}
.x19_c00062{left:820.585333pt;}
.x27_c00062{left:833.695531pt;}
}





/* 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_c00063 {
    display:none;
  }
  .loading-indicator_c00063.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00063 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_c00063 { 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_c00063" -> "#page-container .classname_c00063")
 */
.pf_c00063 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00063 { /* 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_c00063.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00063 { /* 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_c00063 { /* 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_c00063 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00063 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00063 {overflow:visible;}
  }
}
.c_c00063 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00063 { /* 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_c00063:after { /* webkit #35443 */
  content: '';
}
.t_c00063:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00063 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 */
}
.__c00063 { /* 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_c00063 { /* info for Javascript */
  display:none;
}
.l_c00063 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00063 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00063 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00063: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_c00063 {
    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_c00063.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00063.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_c00063 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00063{font-family:sans-serif;visibility:hidden;}
.sc__c00063{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00063{-webkit-text-stroke:0px transparent;}
}
.y0_c00063{bottom:0.000000px;}
.h0_c00063{height:711.720000px;}
.h1_c00063{height:711.750000px;}
.w1_c00063{width:945.750000px;}
.w0_c00063{width:946.050000px;}
.x0_c00063{left:0.000000px;}
@media print{
.y0_c00063{bottom:0.000000pt;}
.h0_c00063{height:632.640000pt;}
.h1_c00063{height:632.666667pt;}
.w1_c00063{width:840.666667pt;}
.w0_c00063{width:840.933333pt;}
.x0_c00063{left:0.000000pt;}
}





/* 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_c00064 {
    display:none;
  }
  .loading-indicator_c00064.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00064 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_c00064 { 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_c00064" -> "#page-container .classname_c00064")
 */
.pf_c00064 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00064 { /* 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_c00064.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00064 { /* 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_c00064 { /* 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_c00064 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00064 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00064 {overflow:visible;}
  }
}
.c_c00064 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00064 { /* 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_c00064:after { /* webkit #35443 */
  content: '';
}
.t_c00064:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00064 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 */
}
.__c00064 { /* 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_c00064 { /* info for Javascript */
  display:none;
}
.l_c00064 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00064 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00064 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00064: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_c00064 {
    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_c00064.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00064.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_c00064 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00064{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00064;src:url('chunks/assets/font_59dc3ab2e04ed21d4ac9992b.woff2')format("woff");}.ff1_c00064{font-family:ff1_c00064;line-height:1.000000;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;}
.m11_c00064{transform:matrix(0.012157,0.002821,-0.056507,0.243530,0,0);-ms-transform:matrix(0.012157,0.002821,-0.056507,0.243530,0,0);-webkit-transform:matrix(0.012157,0.002821,-0.056507,0.243530,0,0);}
.mf_c00064{transform:matrix(0.089785,0.020833,-0.056507,0.243530,0,0);-ms-transform:matrix(0.089785,0.020833,-0.056507,0.243530,0,0);-webkit-transform:matrix(0.089785,0.020833,-0.056507,0.243530,0,0);}
.m14_c00064{transform:matrix(0.103111,0.023925,-0.056507,0.243530,0,0);-ms-transform:matrix(0.103111,0.023925,-0.056507,0.243530,0,0);-webkit-transform:matrix(0.103111,0.023925,-0.056507,0.243530,0,0);}
.m0_c00064{transform:matrix(0.104073,0.020793,-0.048981,0.245155,0,0);-ms-transform:matrix(0.104073,0.020793,-0.048981,0.245155,0,0);-webkit-transform:matrix(0.104073,0.020793,-0.048981,0.245155,0,0);}
.m8_c00064{transform:matrix(0.115200,0.026730,-0.056507,0.243530,0,0);-ms-transform:matrix(0.115200,0.026730,-0.056507,0.243530,0,0);-webkit-transform:matrix(0.115200,0.026730,-0.056507,0.243530,0,0);}
.m9_c00064{transform:matrix(0.143410,0.033276,-0.056507,0.243530,0,0);-ms-transform:matrix(0.143410,0.033276,-0.056507,0.243530,0,0);-webkit-transform:matrix(0.143410,0.033276,-0.056507,0.243530,0,0);}
.m6_c00064{transform:matrix(0.225962,0.052431,-0.056507,0.243530,0,0);-ms-transform:matrix(0.225962,0.052431,-0.056507,0.243530,0,0);-webkit-transform:matrix(0.225962,0.052431,-0.056507,0.243530,0,0);}
.m3_c00064{transform:matrix(0.243072,0.056401,-0.056507,0.243530,0,0);-ms-transform:matrix(0.243072,0.056401,-0.056507,0.243530,0,0);-webkit-transform:matrix(0.243072,0.056401,-0.056507,0.243530,0,0);}
.m18_c00064{transform:matrix(0.260412,0.060424,-0.056507,0.243530,0,0);-ms-transform:matrix(0.260412,0.060424,-0.056507,0.243530,0,0);-webkit-transform:matrix(0.260412,0.060424,-0.056507,0.243530,0,0);}
.m7_c00064{transform:matrix(0.266505,0.061838,-0.056507,0.243530,0,0);-ms-transform:matrix(0.266505,0.061838,-0.056507,0.243530,0,0);-webkit-transform:matrix(0.266505,0.061838,-0.056507,0.243530,0,0);}
.m1_c00064{transform:matrix(0.281021,0.056147,-0.048981,0.245155,0,0);-ms-transform:matrix(0.281021,0.056147,-0.048981,0.245155,0,0);-webkit-transform:matrix(0.281021,0.056147,-0.048981,0.245155,0,0);}
.mc_c00064{transform:matrix(0.283323,0.065740,-0.056507,0.243530,0,0);-ms-transform:matrix(0.283323,0.065740,-0.056507,0.243530,0,0);-webkit-transform:matrix(0.283323,0.065740,-0.056507,0.243530,0,0);}
.me_c00064{transform:matrix(0.331333,0.076880,-0.056507,0.243530,0,0);-ms-transform:matrix(0.331333,0.076880,-0.056507,0.243530,0,0);-webkit-transform:matrix(0.331333,0.076880,-0.056507,0.243530,0,0);}
.mb_c00064{transform:matrix(0.341649,0.079274,-0.056507,0.243530,0,0);-ms-transform:matrix(0.341649,0.079274,-0.056507,0.243530,0,0);-webkit-transform:matrix(0.341649,0.079274,-0.056507,0.243530,0,0);}
.ma_c00064{transform:matrix(0.406793,0.094389,-0.056507,0.243530,0,0);-ms-transform:matrix(0.406793,0.094389,-0.056507,0.243530,0,0);-webkit-transform:matrix(0.406793,0.094389,-0.056507,0.243530,0,0);}
.m13_c00064{transform:matrix(0.432782,0.100420,-0.056507,0.243530,0,0);-ms-transform:matrix(0.432782,0.100420,-0.056507,0.243530,0,0);-webkit-transform:matrix(0.432782,0.100420,-0.056507,0.243530,0,0);}
.m19_c00064{transform:matrix(0.446270,0.122678,-0.066266,0.241058,0,0);-ms-transform:matrix(0.446270,0.122678,-0.066266,0.241058,0,0);-webkit-transform:matrix(0.446270,0.122678,-0.066266,0.241058,0,0);}
.md_c00064{transform:matrix(0.498331,0.115629,-0.056507,0.243530,0,0);-ms-transform:matrix(0.498331,0.115629,-0.056507,0.243530,0,0);-webkit-transform:matrix(0.498331,0.115629,-0.056507,0.243530,0,0);}
.m16_c00064{transform:matrix(0.499242,0.115840,-0.056507,0.243530,0,0);-ms-transform:matrix(0.499242,0.115840,-0.056507,0.243530,0,0);-webkit-transform:matrix(0.499242,0.115840,-0.056507,0.243530,0,0);}
.m4_c00064{transform:matrix(0.508452,0.117978,-0.056507,0.243530,0,0);-ms-transform:matrix(0.508452,0.117978,-0.056507,0.243530,0,0);-webkit-transform:matrix(0.508452,0.117978,-0.056507,0.243530,0,0);}
.m15_c00064{transform:matrix(0.542278,0.125826,-0.056507,0.243530,0,0);-ms-transform:matrix(0.542278,0.125826,-0.056507,0.243530,0,0);-webkit-transform:matrix(0.542278,0.125826,-0.056507,0.243530,0,0);}
.m2_c00064{transform:matrix(0.629496,0.146064,-0.056507,0.243530,0,0);-ms-transform:matrix(0.629496,0.146064,-0.056507,0.243530,0,0);-webkit-transform:matrix(0.629496,0.146064,-0.056507,0.243530,0,0);}
.m12_c00064{transform:matrix(0.710607,0.164884,-0.056507,0.243530,0,0);-ms-transform:matrix(0.710607,0.164884,-0.056507,0.243530,0,0);-webkit-transform:matrix(0.710607,0.164884,-0.056507,0.243530,0,0);}
.m17_c00064{transform:matrix(0.747682,0.173487,-0.056507,0.243530,0,0);-ms-transform:matrix(0.747682,0.173487,-0.056507,0.243530,0,0);-webkit-transform:matrix(0.747682,0.173487,-0.056507,0.243530,0,0);}
.m10_c00064{transform:matrix(1.008892,0.234096,-0.056507,0.243530,0,0);-ms-transform:matrix(1.008892,0.234096,-0.056507,0.243530,0,0);-webkit-transform:matrix(1.008892,0.234096,-0.056507,0.243530,0,0);}
.m5_c00064{transform:matrix(1.424369,0.330500,-0.056507,0.243530,0,0);-ms-transform:matrix(1.424369,0.330500,-0.056507,0.243530,0,0);-webkit-transform:matrix(1.424369,0.330500,-0.056507,0.243530,0,0);}
.v0_c00064{vertical-align:0.000000px;}
.v1_c00064{vertical-align:3.161608px;}
.ls0_c00064{letter-spacing:0.000000px;}
.sc__c00064{text-shadow:none;}
.sc0_c00064{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__c00064{-webkit-text-stroke:0px transparent;}
.sc0_c00064{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00064{word-spacing:0.000000px;}
._0_c00064{width:9432.969517px;}
.fc0_c00064{color:transparent;}
.fs1_c00064{font-size:18.006992px;}
.fs0_c00064{font-size:24.009322px;}
.fs4_c00064{font-size:47.994048px;}
.fs5_c00064{font-size:77.990327px;}
.fs7_c00064{font-size:89.988839px;}
.fs3_c00064{font-size:95.988095px;}
.fs9_c00064{font-size:107.974131px;}
.fs2_c00064{font-size:119.985119px;}
.fs8_c00064{font-size:167.979167px;}
.fs6_c00064{font-size:371.953869px;}
.y0_c00064{bottom:0.000000px;}
.y15_c00064{bottom:36.333744px;}
.y1a_c00064{bottom:65.460000px;}
.y18_c00064{bottom:70.359249px;}
.y16_c00064{bottom:70.662963px;}
.y19_c00064{bottom:70.783257px;}
.y12_c00064{bottom:83.554140px;}
.y14_c00064{bottom:87.465429px;}
.y17_c00064{bottom:101.683089px;}
.yb_c00064{bottom:103.206672px;}
.y11_c00064{bottom:139.040232px;}
.y13_c00064{bottom:142.688946px;}
.y10_c00064{bottom:148.031403px;}
.y2_c00064{bottom:149.979917px;}
.y1_c00064{bottom:159.922500px;}
.y8_c00064{bottom:163.323759px;}
.ya_c00064{bottom:171.290553px;}
.yf_c00064{bottom:175.634535px;}
.y4_c00064{bottom:176.007591px;}
.y7_c00064{bottom:177.962214px;}
.y9_c00064{bottom:187.595304px;}
.ye_c00064{bottom:193.695420px;}
.y3_c00064{bottom:205.036500px;}
.yd_c00064{bottom:210.317922px;}
.y6_c00064{bottom:210.621099px;}
.yc_c00064{bottom:221.331096px;}
.y5_c00064{bottom:224.467368px;}
.h3_c00064{height:18.006992px;}
.h2_c00064{height:24.009322px;}
.h6_c00064{height:47.994048px;}
.h7_c00064{height:77.990327px;}
.h8_c00064{height:81.151935px;}
.ha_c00064{height:89.988839px;}
.h5_c00064{height:95.988095px;}
.hc_c00064{height:107.974131px;}
.h4_c00064{height:119.985119px;}
.hb_c00064{height:167.979167px;}
.h9_c00064{height:371.953869px;}
.h0_c00064{height:711.720000px;}
.h1_c00064{height:711.750000px;}
.w1_c00064{width:945.750000px;}
.w0_c00064{width:946.050000px;}
.x0_c00064{left:0.000000px;}
.x2_c00064{left:2.971319px;}
.x1_c00064{left:4.714500px;}
.x13_c00064{left:24.896376px;}
.x17_c00064{left:33.164733px;}
.x19_c00064{left:72.030765px;}
.xc_c00064{left:172.014948px;}
.x18_c00064{left:173.609931px;}
.xd_c00064{left:220.951890px;}
.xe_c00064{left:294.819996px;}
.x14_c00064{left:296.888853px;}
.x16_c00064{left:323.225955px;}
.xf_c00064{left:375.079581px;}
.x9_c00064{left:384.406122px;}
.xa_c00064{left:460.939203px;}
.x10_c00064{left:497.744373px;}
.x11_c00064{left:537.701598px;}
.x15_c00064{left:548.725122px;}
.x5_c00064{left:643.382592px;}
.x6_c00064{left:703.839327px;}
.xb_c00064{left:780.533154px;}
.x3_c00064{left:782.478000px;}
.x12_c00064{left:784.270344px;}
.x7_c00064{left:846.435126px;}
.x4_c00064{left:907.584891px;}
.x8_c00064{left:910.352421px;}
@media print{
.v0_c00064{vertical-align:0.000000pt;}
.v1_c00064{vertical-align:2.810318pt;}
.ls0_c00064{letter-spacing:0.000000pt;}
.ws0_c00064{word-spacing:0.000000pt;}
._0_c00064{width:8384.861793pt;}
.fs1_c00064{font-size:16.006215pt;}
.fs0_c00064{font-size:21.341620pt;}
.fs4_c00064{font-size:42.661376pt;}
.fs5_c00064{font-size:69.324735pt;}
.fs7_c00064{font-size:79.990079pt;}
.fs3_c00064{font-size:85.322751pt;}
.fs9_c00064{font-size:95.977005pt;}
.fs2_c00064{font-size:106.653439pt;}
.fs8_c00064{font-size:149.314815pt;}
.fs6_c00064{font-size:330.625661pt;}
.y0_c00064{bottom:0.000000pt;}
.y15_c00064{bottom:32.296661pt;}
.y1a_c00064{bottom:58.186667pt;}
.y18_c00064{bottom:62.541555pt;}
.y16_c00064{bottom:62.811523pt;}
.y19_c00064{bottom:62.918451pt;}
.y12_c00064{bottom:74.270347pt;}
.y14_c00064{bottom:77.747048pt;}
.y17_c00064{bottom:90.384968pt;}
.yb_c00064{bottom:91.739264pt;}
.y11_c00064{bottom:123.591317pt;}
.y13_c00064{bottom:126.834619pt;}
.y10_c00064{bottom:131.583469pt;}
.y2_c00064{bottom:133.315481pt;}
.y1_c00064{bottom:142.153333pt;}
.y8_c00064{bottom:145.176675pt;}
.ya_c00064{bottom:152.258269pt;}
.yf_c00064{bottom:156.119587pt;}
.y4_c00064{bottom:156.451192pt;}
.y7_c00064{bottom:158.188635pt;}
.y9_c00064{bottom:166.751381pt;}
.ye_c00064{bottom:172.173707pt;}
.y3_c00064{bottom:182.254667pt;}
.yd_c00064{bottom:186.949264pt;}
.y6_c00064{bottom:187.218755pt;}
.yc_c00064{bottom:196.738752pt;}
.y5_c00064{bottom:199.526549pt;}
.h3_c00064{height:16.006215pt;}
.h2_c00064{height:21.341620pt;}
.h6_c00064{height:42.661376pt;}
.h7_c00064{height:69.324735pt;}
.h8_c00064{height:72.135054pt;}
.ha_c00064{height:79.990079pt;}
.h5_c00064{height:85.322751pt;}
.hc_c00064{height:95.977005pt;}
.h4_c00064{height:106.653439pt;}
.hb_c00064{height:149.314815pt;}
.h9_c00064{height:330.625661pt;}
.h0_c00064{height:632.640000pt;}
.h1_c00064{height:632.666667pt;}
.w1_c00064{width:840.666667pt;}
.w0_c00064{width:840.933333pt;}
.x0_c00064{left:0.000000pt;}
.x2_c00064{left:2.641172pt;}
.x1_c00064{left:4.190667pt;}
.x13_c00064{left:22.130112pt;}
.x17_c00064{left:29.479763pt;}
.x19_c00064{left:64.027347pt;}
.xc_c00064{left:152.902176pt;}
.x18_c00064{left:154.319939pt;}
.xd_c00064{left:196.401680pt;}
.xe_c00064{left:262.062219pt;}
.x14_c00064{left:263.901203pt;}
.x16_c00064{left:287.311960pt;}
.xf_c00064{left:333.404072pt;}
.x9_c00064{left:341.694331pt;}
.xa_c00064{left:409.723736pt;}
.x10_c00064{left:442.439443pt;}
.x11_c00064{left:477.956976pt;}
.x15_c00064{left:487.755664pt;}
.x5_c00064{left:571.895637pt;}
.x6_c00064{left:625.634957pt;}
.xb_c00064{left:693.807248pt;}
.x3_c00064{left:695.536000pt;}
.x12_c00064{left:697.129195pt;}
.x7_c00064{left:752.386779pt;}
.x4_c00064{left:806.742125pt;}
.x8_c00064{left:809.202152pt;}
}





/* 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_c00065 {
    display:none;
  }
  .loading-indicator_c00065.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00065 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_c00065 { 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_c00065" -> "#page-container .classname_c00065")
 */
.pf_c00065 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00065 { /* 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_c00065.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00065 { /* 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_c00065 { /* 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_c00065 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00065 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00065 {overflow:visible;}
  }
}
.c_c00065 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00065 { /* 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_c00065:after { /* webkit #35443 */
  content: '';
}
.t_c00065:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00065 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 */
}
.__c00065 { /* 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_c00065 { /* info for Javascript */
  display:none;
}
.l_c00065 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00065 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00065 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00065: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_c00065 {
    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_c00065.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00065.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_c00065 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00065{font-family:sans-serif;visibility:hidden;}
.sc__c00065{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00065{-webkit-text-stroke:0px transparent;}
}
.y0_c00065{bottom:0.000000px;}
.h0_c00065{height:711.720000px;}
.h1_c00065{height:711.750000px;}
.w1_c00065{width:945.750000px;}
.w0_c00065{width:946.050000px;}
.x0_c00065{left:0.000000px;}
@media print{
.y0_c00065{bottom:0.000000pt;}
.h0_c00065{height:632.640000pt;}
.h1_c00065{height:632.666667pt;}
.w1_c00065{width:840.666667pt;}
.w0_c00065{width:840.933333pt;}
.x0_c00065{left:0.000000pt;}
}





/* 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_c00066 {
    display:none;
  }
  .loading-indicator_c00066.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00066 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_c00066 { 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_c00066" -> "#page-container .classname_c00066")
 */
.pf_c00066 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00066 { /* 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_c00066.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00066 { /* 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_c00066 { /* 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_c00066 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00066 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00066 {overflow:visible;}
  }
}
.c_c00066 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00066 { /* 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_c00066:after { /* webkit #35443 */
  content: '';
}
.t_c00066:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00066 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 */
}
.__c00066 { /* 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_c00066 { /* info for Javascript */
  display:none;
}
.l_c00066 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00066 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00066 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00066: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_c00066 {
    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_c00066.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00066.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_c00066 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00066{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00066;src:url('chunks/assets/font_cfe63ee56e9e10a97d33a3db.woff2')format("woff");}.ff1_c00066{font-family:ff1_c00066;line-height:1.000000;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;}
.m6d_c00066{transform:matrix(0.015810,-0.000079,0.001250,0.249997,0,0);-ms-transform:matrix(0.015810,-0.000079,0.001250,0.249997,0,0);-webkit-transform:matrix(0.015810,-0.000079,0.001250,0.249997,0,0);}
.m46_c00066{transform:matrix(0.027437,-0.000658,0.005998,0.249928,0,0);-ms-transform:matrix(0.027437,-0.000658,0.005998,0.249928,0,0);-webkit-transform:matrix(0.027437,-0.000658,0.005998,0.249928,0,0);}
.m12_c00066{transform:matrix(0.032550,-0.000163,0.001250,0.249997,0,0);-ms-transform:matrix(0.032550,-0.000163,0.001250,0.249997,0,0);-webkit-transform:matrix(0.032550,-0.000163,0.001250,0.249997,0,0);}
.m73_c00066{transform:matrix(0.054084,-0.000270,0.001250,0.249997,0,0);-ms-transform:matrix(0.054084,-0.000270,0.001250,0.249997,0,0);-webkit-transform:matrix(0.054084,-0.000270,0.001250,0.249997,0,0);}
.m4d_c00066{transform:matrix(0.099506,-0.002388,0.005998,0.249928,0,0);-ms-transform:matrix(0.099506,-0.002388,0.005998,0.249928,0,0);-webkit-transform:matrix(0.099506,-0.002388,0.005998,0.249928,0,0);}
.m2f_c00066{transform:matrix(0.105574,0.000528,-0.001250,0.249997,0,0);-ms-transform:matrix(0.105574,0.000528,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.105574,0.000528,-0.001250,0.249997,0,0);}
.m5b_c00066{transform:matrix(0.116971,-0.002807,0.005998,0.249928,0,0);-ms-transform:matrix(0.116971,-0.002807,0.005998,0.249928,0,0);-webkit-transform:matrix(0.116971,-0.002807,0.005998,0.249928,0,0);}
.m3d_c00066{transform:matrix(0.127500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127500,0.000000,0.000000,0.250000,0,0);}
.m39_c00066{transform:matrix(0.131680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131680,0.000000,0.000000,0.250000,0,0);}
.m15_c00066{transform:matrix(0.153943,-0.000770,0.001250,0.249997,0,0);-ms-transform:matrix(0.153943,-0.000770,0.001250,0.249997,0,0);-webkit-transform:matrix(0.153943,-0.000770,0.001250,0.249997,0,0);}
.m67_c00066{transform:matrix(0.163798,-0.000819,0.001250,0.249997,0,0);-ms-transform:matrix(0.163798,-0.000819,0.001250,0.249997,0,0);-webkit-transform:matrix(0.163798,-0.000819,0.001250,0.249997,0,0);}
.m38_c00066{transform:matrix(0.183135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183135,0.000000,0.000000,0.250000,0,0);}
.m1f_c00066{transform:matrix(0.187533,0.000938,-0.001250,0.249997,0,0);-ms-transform:matrix(0.187533,0.000938,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.187533,0.000938,-0.001250,0.249997,0,0);}
.ma_c00066{transform:matrix(0.197693,-0.000988,0.001250,0.249997,0,0);-ms-transform:matrix(0.197693,-0.000988,0.001250,0.249997,0,0);-webkit-transform:matrix(0.197693,-0.000988,0.001250,0.249997,0,0);}
.m3a_c00066{transform:matrix(0.199035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199035,0.000000,0.000000,0.250000,0,0);}
.m74_c00066{transform:matrix(0.200017,-0.001000,0.001250,0.249997,0,0);-ms-transform:matrix(0.200017,-0.001000,0.001250,0.249997,0,0);-webkit-transform:matrix(0.200017,-0.001000,0.001250,0.249997,0,0);}
.m7c_c00066{transform:matrix(0.201225,-0.002817,0.003500,0.249976,0,0);-ms-transform:matrix(0.201225,-0.002817,0.003500,0.249976,0,0);-webkit-transform:matrix(0.201225,-0.002817,0.003500,0.249976,0,0);}
.m14_c00066{transform:matrix(0.206882,-0.001034,0.001250,0.249997,0,0);-ms-transform:matrix(0.206882,-0.001034,0.001250,0.249997,0,0);-webkit-transform:matrix(0.206882,-0.001034,0.001250,0.249997,0,0);}
.m75_c00066{transform:matrix(0.217052,-0.001085,0.001250,0.249997,0,0);-ms-transform:matrix(0.217052,-0.001085,0.001250,0.249997,0,0);-webkit-transform:matrix(0.217052,-0.001085,0.001250,0.249997,0,0);}
.m11_c00066{transform:matrix(0.219052,-0.001095,0.001250,0.249997,0,0);-ms-transform:matrix(0.219052,-0.001095,0.001250,0.249997,0,0);-webkit-transform:matrix(0.219052,-0.001095,0.001250,0.249997,0,0);}
.m0_c00066{transform:matrix(0.219822,-0.001099,0.001250,0.249997,0,0);-ms-transform:matrix(0.219822,-0.001099,0.001250,0.249997,0,0);-webkit-transform:matrix(0.219822,-0.001099,0.001250,0.249997,0,0);}
.m7_c00066{transform:matrix(0.226712,-0.001134,0.001250,0.249997,0,0);-ms-transform:matrix(0.226712,-0.001134,0.001250,0.249997,0,0);-webkit-transform:matrix(0.226712,-0.001134,0.001250,0.249997,0,0);}
.m10_c00066{transform:matrix(0.238792,-0.001194,0.001250,0.249997,0,0);-ms-transform:matrix(0.238792,-0.001194,0.001250,0.249997,0,0);-webkit-transform:matrix(0.238792,-0.001194,0.001250,0.249997,0,0);}
.m72_c00066{transform:matrix(0.246017,-0.001230,0.001250,0.249997,0,0);-ms-transform:matrix(0.246017,-0.001230,0.001250,0.249997,0,0);-webkit-transform:matrix(0.246017,-0.001230,0.001250,0.249997,0,0);}
.m35_c00066{transform:matrix(0.251280,-0.002764,0.002750,0.249985,0,0);-ms-transform:matrix(0.251280,-0.002764,0.002750,0.249985,0,0);-webkit-transform:matrix(0.251280,-0.002764,0.002750,0.249985,0,0);}
.m13_c00066{transform:matrix(0.252522,-0.001263,0.001250,0.249997,0,0);-ms-transform:matrix(0.252522,-0.001263,0.001250,0.249997,0,0);-webkit-transform:matrix(0.252522,-0.001263,0.001250,0.249997,0,0);}
.m3_c00066{transform:matrix(0.265072,-0.001325,0.001250,0.249997,0,0);-ms-transform:matrix(0.265072,-0.001325,0.001250,0.249997,0,0);-webkit-transform:matrix(0.265072,-0.001325,0.001250,0.249997,0,0);}
.m36_c00066{transform:matrix(0.265624,-0.002922,0.002750,0.249985,0,0);-ms-transform:matrix(0.265624,-0.002922,0.002750,0.249985,0,0);-webkit-transform:matrix(0.265624,-0.002922,0.002750,0.249985,0,0);}
.m55_c00066{transform:matrix(0.267503,-0.006420,0.005998,0.249928,0,0);-ms-transform:matrix(0.267503,-0.006420,0.005998,0.249928,0,0);-webkit-transform:matrix(0.267503,-0.006420,0.005998,0.249928,0,0);}
.m8_c00066{transform:matrix(0.268812,-0.001344,0.001250,0.249997,0,0);-ms-transform:matrix(0.268812,-0.001344,0.001250,0.249997,0,0);-webkit-transform:matrix(0.268812,-0.001344,0.001250,0.249997,0,0);}
.m1b_c00066{transform:matrix(0.271722,0.001359,-0.001250,0.249997,0,0);-ms-transform:matrix(0.271722,0.001359,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.271722,0.001359,-0.001250,0.249997,0,0);}
.m4_c00066{transform:matrix(0.272492,-0.001362,0.001250,0.249997,0,0);-ms-transform:matrix(0.272492,-0.001362,0.001250,0.249997,0,0);-webkit-transform:matrix(0.272492,-0.001362,0.001250,0.249997,0,0);}
.m27_c00066{transform:matrix(0.278392,0.001392,-0.001250,0.249997,0,0);-ms-transform:matrix(0.278392,0.001392,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.278392,0.001392,-0.001250,0.249997,0,0);}
.m6_c00066{transform:matrix(0.282846,-0.001414,0.001250,0.249997,0,0);-ms-transform:matrix(0.282846,-0.001414,0.001250,0.249997,0,0);-webkit-transform:matrix(0.282846,-0.001414,0.001250,0.249997,0,0);}
.m60_c00066{transform:matrix(0.283871,-0.001419,0.001250,0.249997,0,0);-ms-transform:matrix(0.283871,-0.001419,0.001250,0.249997,0,0);-webkit-transform:matrix(0.283871,-0.001419,0.001250,0.249997,0,0);}
.m64_c00066{transform:matrix(0.285936,-0.001430,0.001250,0.249997,0,0);-ms-transform:matrix(0.285936,-0.001430,0.001250,0.249997,0,0);-webkit-transform:matrix(0.285936,-0.001430,0.001250,0.249997,0,0);}
.m4f_c00066{transform:matrix(0.291506,-0.006996,0.005998,0.249928,0,0);-ms-transform:matrix(0.291506,-0.006996,0.005998,0.249928,0,0);-webkit-transform:matrix(0.291506,-0.006996,0.005998,0.249928,0,0);}
.m2e_c00066{transform:matrix(0.292031,0.001460,-0.001250,0.249997,0,0);-ms-transform:matrix(0.292031,0.001460,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.292031,0.001460,-0.001250,0.249997,0,0);}
.m7b_c00066{transform:matrix(0.294081,-0.004117,0.003500,0.249976,0,0);-ms-transform:matrix(0.294081,-0.004117,0.003500,0.249976,0,0);-webkit-transform:matrix(0.294081,-0.004117,0.003500,0.249976,0,0);}
.md_c00066{transform:matrix(0.294761,-0.001474,0.001250,0.249997,0,0);-ms-transform:matrix(0.294761,-0.001474,0.001250,0.249997,0,0);-webkit-transform:matrix(0.294761,-0.001474,0.001250,0.249997,0,0);}
.m37_c00066{transform:matrix(0.295857,-0.003254,0.002750,0.249985,0,0);-ms-transform:matrix(0.295857,-0.003254,0.002750,0.249985,0,0);-webkit-transform:matrix(0.295857,-0.003254,0.002750,0.249985,0,0);}
.m3b_c00066{transform:matrix(0.302915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302915,0.000000,0.000000,0.250000,0,0);}
.m7a_c00066{transform:matrix(0.304600,-0.004264,0.003500,0.249976,0,0);-ms-transform:matrix(0.304600,-0.004264,0.003500,0.249976,0,0);-webkit-transform:matrix(0.304600,-0.004264,0.003500,0.249976,0,0);}
.m78_c00066{transform:matrix(0.309205,-0.004329,0.003500,0.249976,0,0);-ms-transform:matrix(0.309205,-0.004329,0.003500,0.249976,0,0);-webkit-transform:matrix(0.309205,-0.004329,0.003500,0.249976,0,0);}
.m18_c00066{transform:matrix(0.310641,0.001553,-0.001250,0.249997,0,0);-ms-transform:matrix(0.310641,0.001553,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.310641,0.001553,-0.001250,0.249997,0,0);}
.m34_c00066{transform:matrix(0.319911,-0.003519,0.002750,0.249985,0,0);-ms-transform:matrix(0.319911,-0.003519,0.002750,0.249985,0,0);-webkit-transform:matrix(0.319911,-0.003519,0.002750,0.249985,0,0);}
.m61_c00066{transform:matrix(0.323646,-0.001618,0.001250,0.249997,0,0);-ms-transform:matrix(0.323646,-0.001618,0.001250,0.249997,0,0);-webkit-transform:matrix(0.323646,-0.001618,0.001250,0.249997,0,0);}
.m9_c00066{transform:matrix(0.323726,-0.001619,0.001250,0.249997,0,0);-ms-transform:matrix(0.323726,-0.001619,0.001250,0.249997,0,0);-webkit-transform:matrix(0.323726,-0.001619,0.001250,0.249997,0,0);}
.m2_c00066{transform:matrix(0.325196,-0.001626,0.001250,0.249997,0,0);-ms-transform:matrix(0.325196,-0.001626,0.001250,0.249997,0,0);-webkit-transform:matrix(0.325196,-0.001626,0.001250,0.249997,0,0);}
.m19_c00066{transform:matrix(0.335841,0.001679,-0.001250,0.249997,0,0);-ms-transform:matrix(0.335841,0.001679,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.335841,0.001679,-0.001250,0.249997,0,0);}
.m63_c00066{transform:matrix(0.336986,-0.001685,0.001250,0.249997,0,0);-ms-transform:matrix(0.336986,-0.001685,0.001250,0.249997,0,0);-webkit-transform:matrix(0.336986,-0.001685,0.001250,0.249997,0,0);}
.m1d_c00066{transform:matrix(0.337316,0.001687,-0.001250,0.249997,0,0);-ms-transform:matrix(0.337316,0.001687,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.337316,0.001687,-0.001250,0.249997,0,0);}
.m1e_c00066{transform:matrix(0.347386,0.001737,-0.001250,0.249997,0,0);-ms-transform:matrix(0.347386,0.001737,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.347386,0.001737,-0.001250,0.249997,0,0);}
.m5_c00066{transform:matrix(0.347561,-0.001738,0.001250,0.249997,0,0);-ms-transform:matrix(0.347561,-0.001738,0.001250,0.249997,0,0);-webkit-transform:matrix(0.347561,-0.001738,0.001250,0.249997,0,0);}
.m16_c00066{transform:matrix(0.348861,-0.001744,0.001250,0.249997,0,0);-ms-transform:matrix(0.348861,-0.001744,0.001250,0.249997,0,0);-webkit-transform:matrix(0.348861,-0.001744,0.001250,0.249997,0,0);}
.m28_c00066{transform:matrix(0.351631,0.001758,-0.001250,0.249997,0,0);-ms-transform:matrix(0.351631,0.001758,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.351631,0.001758,-0.001250,0.249997,0,0);}
.m44_c00066{transform:matrix(0.354073,-0.008498,0.005998,0.249928,0,0);-ms-transform:matrix(0.354073,-0.008498,0.005998,0.249928,0,0);-webkit-transform:matrix(0.354073,-0.008498,0.005998,0.249928,0,0);}
.m58_c00066{transform:matrix(0.357707,-0.008585,0.005998,0.249928,0,0);-ms-transform:matrix(0.357707,-0.008585,0.005998,0.249928,0,0);-webkit-transform:matrix(0.357707,-0.008585,0.005998,0.249928,0,0);}
.m42_c00066{transform:matrix(0.358012,-0.008592,0.005998,0.249928,0,0);-ms-transform:matrix(0.358012,-0.008592,0.005998,0.249928,0,0);-webkit-transform:matrix(0.358012,-0.008592,0.005998,0.249928,0,0);}
.m3f_c00066{transform:matrix(0.359846,-0.008636,0.005998,0.249928,0,0);-ms-transform:matrix(0.359846,-0.008636,0.005998,0.249928,0,0);-webkit-transform:matrix(0.359846,-0.008636,0.005998,0.249928,0,0);}
.m1_c00066{transform:matrix(0.366535,-0.001833,0.001250,0.249997,0,0);-ms-transform:matrix(0.366535,-0.001833,0.001250,0.249997,0,0);-webkit-transform:matrix(0.366535,-0.001833,0.001250,0.249997,0,0);}
.m53_c00066{transform:matrix(0.370483,-0.008892,0.005998,0.249928,0,0);-ms-transform:matrix(0.370483,-0.008892,0.005998,0.249928,0,0);-webkit-transform:matrix(0.370483,-0.008892,0.005998,0.249928,0,0);}
.m2a_c00066{transform:matrix(0.372270,0.001861,-0.001250,0.249997,0,0);-ms-transform:matrix(0.372270,0.001861,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.372270,0.001861,-0.001250,0.249997,0,0);}
.m41_c00066{transform:matrix(0.372978,-0.008951,0.005998,0.249928,0,0);-ms-transform:matrix(0.372978,-0.008951,0.005998,0.249928,0,0);-webkit-transform:matrix(0.372978,-0.008951,0.005998,0.249928,0,0);}
.m7d_c00066{transform:matrix(0.380178,-0.005322,0.003500,0.249976,0,0);-ms-transform:matrix(0.380178,-0.005322,0.003500,0.249976,0,0);-webkit-transform:matrix(0.380178,-0.005322,0.003500,0.249976,0,0);}
.m1a_c00066{transform:matrix(0.380270,0.001901,-0.001250,0.249997,0,0);-ms-transform:matrix(0.380270,0.001901,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.380270,0.001901,-0.001250,0.249997,0,0);}
.me_c00066{transform:matrix(0.384495,-0.001922,0.001250,0.249997,0,0);-ms-transform:matrix(0.384495,-0.001922,0.001250,0.249997,0,0);-webkit-transform:matrix(0.384495,-0.001922,0.001250,0.249997,0,0);}
.m54_c00066{transform:matrix(0.384519,-0.009228,0.005998,0.249928,0,0);-ms-transform:matrix(0.384519,-0.009228,0.005998,0.249928,0,0);-webkit-transform:matrix(0.384519,-0.009228,0.005998,0.249928,0,0);}
.m80_c00066{transform:matrix(0.385612,-0.005399,0.003500,0.249976,0,0);-ms-transform:matrix(0.385612,-0.005399,0.003500,0.249976,0,0);-webkit-transform:matrix(0.385612,-0.005399,0.003500,0.249976,0,0);}
.m23_c00066{transform:matrix(0.386205,0.001931,-0.001250,0.249997,0,0);-ms-transform:matrix(0.386205,0.001931,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.386205,0.001931,-0.001250,0.249997,0,0);}
.m17_c00066{transform:matrix(0.386535,0.001933,-0.001250,0.249997,0,0);-ms-transform:matrix(0.386535,0.001933,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.386535,0.001933,-0.001250,0.249997,0,0);}
.mf_c00066{transform:matrix(0.387065,-0.001935,0.001250,0.249997,0,0);-ms-transform:matrix(0.387065,-0.001935,0.001250,0.249997,0,0);-webkit-transform:matrix(0.387065,-0.001935,0.001250,0.249997,0,0);}
.m7f_c00066{transform:matrix(0.388372,-0.005437,0.003500,0.249976,0,0);-ms-transform:matrix(0.388372,-0.005437,0.003500,0.249976,0,0);-webkit-transform:matrix(0.388372,-0.005437,0.003500,0.249976,0,0);}
.m40_c00066{transform:matrix(0.389118,-0.009339,0.005998,0.249928,0,0);-ms-transform:matrix(0.389118,-0.009339,0.005998,0.249928,0,0);-webkit-transform:matrix(0.389118,-0.009339,0.005998,0.249928,0,0);}
.m65_c00066{transform:matrix(0.389300,-0.001947,0.001250,0.249997,0,0);-ms-transform:matrix(0.389300,-0.001947,0.001250,0.249997,0,0);-webkit-transform:matrix(0.389300,-0.001947,0.001250,0.249997,0,0);}
.m20_c00066{transform:matrix(0.394335,0.001972,-0.001250,0.249997,0,0);-ms-transform:matrix(0.394335,0.001972,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.394335,0.001972,-0.001250,0.249997,0,0);}
.m4a_c00066{transform:matrix(0.394956,-0.009479,0.005998,0.249928,0,0);-ms-transform:matrix(0.394956,-0.009479,0.005998,0.249928,0,0);-webkit-transform:matrix(0.394956,-0.009479,0.005998,0.249928,0,0);}
.m70_c00066{transform:matrix(0.401465,-0.002007,0.001250,0.249997,0,0);-ms-transform:matrix(0.401465,-0.002007,0.001250,0.249997,0,0);-webkit-transform:matrix(0.401465,-0.002007,0.001250,0.249997,0,0);}
.m3e_c00066{transform:matrix(0.411437,-0.009874,0.005998,0.249928,0,0);-ms-transform:matrix(0.411437,-0.009874,0.005998,0.249928,0,0);-webkit-transform:matrix(0.411437,-0.009874,0.005998,0.249928,0,0);}
.m30_c00066{transform:matrix(0.411550,0.002058,-0.001250,0.249997,0,0);-ms-transform:matrix(0.411550,0.002058,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.411550,0.002058,-0.001250,0.249997,0,0);}
.m5a_c00066{transform:matrix(0.415485,-0.009972,0.005998,0.249928,0,0);-ms-transform:matrix(0.415485,-0.009972,0.005998,0.249928,0,0);-webkit-transform:matrix(0.415485,-0.009972,0.005998,0.249928,0,0);}
.m6e_c00066{transform:matrix(0.415515,-0.002078,0.001250,0.249997,0,0);-ms-transform:matrix(0.415515,-0.002078,0.001250,0.249997,0,0);-webkit-transform:matrix(0.415515,-0.002078,0.001250,0.249997,0,0);}
.m24_c00066{transform:matrix(0.415720,0.002079,-0.001250,0.249997,0,0);-ms-transform:matrix(0.415720,0.002079,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.415720,0.002079,-0.001250,0.249997,0,0);}
.m26_c00066{transform:matrix(0.416630,0.002083,-0.001250,0.249997,0,0);-ms-transform:matrix(0.416630,0.002083,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.416630,0.002083,-0.001250,0.249997,0,0);}
.m51_c00066{transform:matrix(0.417755,-0.010026,0.005998,0.249928,0,0);-ms-transform:matrix(0.417755,-0.010026,0.005998,0.249928,0,0);-webkit-transform:matrix(0.417755,-0.010026,0.005998,0.249928,0,0);}
.m6c_c00066{transform:matrix(0.419265,-0.002096,0.001250,0.249997,0,0);-ms-transform:matrix(0.419265,-0.002096,0.001250,0.249997,0,0);-webkit-transform:matrix(0.419265,-0.002096,0.001250,0.249997,0,0);}
.m6b_c00066{transform:matrix(0.421990,-0.002110,0.001250,0.249997,0,0);-ms-transform:matrix(0.421990,-0.002110,0.001250,0.249997,0,0);-webkit-transform:matrix(0.421990,-0.002110,0.001250,0.249997,0,0);}
.m2d_c00066{transform:matrix(0.423855,0.002119,-0.001250,0.249997,0,0);-ms-transform:matrix(0.423855,0.002119,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.423855,0.002119,-0.001250,0.249997,0,0);}
.m1c_c00066{transform:matrix(0.425070,0.002125,-0.001250,0.249997,0,0);-ms-transform:matrix(0.425070,0.002125,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.425070,0.002125,-0.001250,0.249997,0,0);}
.m5d_c00066{transform:matrix(0.427925,-0.002140,0.001250,0.249997,0,0);-ms-transform:matrix(0.427925,-0.002140,0.001250,0.249997,0,0);-webkit-transform:matrix(0.427925,-0.002140,0.001250,0.249997,0,0);}
.m22_c00066{transform:matrix(0.428620,0.002143,-0.001250,0.249997,0,0);-ms-transform:matrix(0.428620,0.002143,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.428620,0.002143,-0.001250,0.249997,0,0);}
.m7e_c00066{transform:matrix(0.430998,-0.006034,0.003500,0.249976,0,0);-ms-transform:matrix(0.430998,-0.006034,0.003500,0.249976,0,0);-webkit-transform:matrix(0.430998,-0.006034,0.003500,0.249976,0,0);}
.m66_c00066{transform:matrix(0.431360,-0.002157,0.001250,0.249997,0,0);-ms-transform:matrix(0.431360,-0.002157,0.001250,0.249997,0,0);-webkit-transform:matrix(0.431360,-0.002157,0.001250,0.249997,0,0);}
.mb_c00066{transform:matrix(0.431445,-0.002157,0.001250,0.249997,0,0);-ms-transform:matrix(0.431445,-0.002157,0.001250,0.249997,0,0);-webkit-transform:matrix(0.431445,-0.002157,0.001250,0.249997,0,0);}
.m57_c00066{transform:matrix(0.434960,-0.010439,0.005998,0.249928,0,0);-ms-transform:matrix(0.434960,-0.010439,0.005998,0.249928,0,0);-webkit-transform:matrix(0.434960,-0.010439,0.005998,0.249928,0,0);}
.m49_c00066{transform:matrix(0.450210,-0.010805,0.005998,0.249928,0,0);-ms-transform:matrix(0.450210,-0.010805,0.005998,0.249928,0,0);-webkit-transform:matrix(0.450210,-0.010805,0.005998,0.249928,0,0);}
.m68_c00066{transform:matrix(0.452349,-0.002262,0.001250,0.249997,0,0);-ms-transform:matrix(0.452349,-0.002262,0.001250,0.249997,0,0);-webkit-transform:matrix(0.452349,-0.002262,0.001250,0.249997,0,0);}
.m3c_c00066{transform:matrix(0.459710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459710,0.000000,0.000000,0.250000,0,0);}
.m31_c00066{transform:matrix(0.472011,-0.005192,0.002750,0.249985,0,0);-ms-transform:matrix(0.472011,-0.005192,0.002750,0.249985,0,0);-webkit-transform:matrix(0.472011,-0.005192,0.002750,0.249985,0,0);}
.m33_c00066{transform:matrix(0.472741,-0.005200,0.002750,0.249985,0,0);-ms-transform:matrix(0.472741,-0.005200,0.002750,0.249985,0,0);-webkit-transform:matrix(0.472741,-0.005200,0.002750,0.249985,0,0);}
.m43_c00066{transform:matrix(0.474308,-0.011383,0.005998,0.249928,0,0);-ms-transform:matrix(0.474308,-0.011383,0.005998,0.249928,0,0);-webkit-transform:matrix(0.474308,-0.011383,0.005998,0.249928,0,0);}
.m5e_c00066{transform:matrix(0.487619,-0.002438,0.001250,0.249997,0,0);-ms-transform:matrix(0.487619,-0.002438,0.001250,0.249997,0,0);-webkit-transform:matrix(0.487619,-0.002438,0.001250,0.249997,0,0);}
.m25_c00066{transform:matrix(0.503909,0.002520,-0.001250,0.249997,0,0);-ms-transform:matrix(0.503909,0.002520,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.503909,0.002520,-0.001250,0.249997,0,0);}
.m4e_c00066{transform:matrix(0.530712,-0.012737,0.005998,0.249928,0,0);-ms-transform:matrix(0.530712,-0.012737,0.005998,0.249928,0,0);-webkit-transform:matrix(0.530712,-0.012737,0.005998,0.249928,0,0);}
.m4c_c00066{transform:matrix(0.531657,-0.012760,0.005998,0.249928,0,0);-ms-transform:matrix(0.531657,-0.012760,0.005998,0.249928,0,0);-webkit-transform:matrix(0.531657,-0.012760,0.005998,0.249928,0,0);}
.m50_c00066{transform:matrix(0.532607,-0.012783,0.005998,0.249928,0,0);-ms-transform:matrix(0.532607,-0.012783,0.005998,0.249928,0,0);-webkit-transform:matrix(0.532607,-0.012783,0.005998,0.249928,0,0);}
.m4b_c00066{transform:matrix(0.536790,-0.012883,0.005998,0.249928,0,0);-ms-transform:matrix(0.536790,-0.012883,0.005998,0.249928,0,0);-webkit-transform:matrix(0.536790,-0.012883,0.005998,0.249928,0,0);}
.m32_c00066{transform:matrix(0.581775,-0.006400,0.002750,0.249985,0,0);-ms-transform:matrix(0.581775,-0.006400,0.002750,0.249985,0,0);-webkit-transform:matrix(0.581775,-0.006400,0.002750,0.249985,0,0);}
.m2c_c00066{transform:matrix(0.613672,0.003068,-0.001250,0.249997,0,0);-ms-transform:matrix(0.613672,0.003068,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.613672,0.003068,-0.001250,0.249997,0,0);}
.m2b_c00066{transform:matrix(0.620212,0.003101,-0.001250,0.249997,0,0);-ms-transform:matrix(0.620212,0.003101,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.620212,0.003101,-0.001250,0.249997,0,0);}
.m45_c00066{transform:matrix(0.628934,-0.015094,0.005998,0.249928,0,0);-ms-transform:matrix(0.628934,-0.015094,0.005998,0.249928,0,0);-webkit-transform:matrix(0.628934,-0.015094,0.005998,0.249928,0,0);}
.m47_c00066{transform:matrix(0.629139,-0.015099,0.005998,0.249928,0,0);-ms-transform:matrix(0.629139,-0.015099,0.005998,0.249928,0,0);-webkit-transform:matrix(0.629139,-0.015099,0.005998,0.249928,0,0);}
.m29_c00066{transform:matrix(0.633997,0.003170,-0.001250,0.249997,0,0);-ms-transform:matrix(0.633997,0.003170,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.633997,0.003170,-0.001250,0.249997,0,0);}
.m21_c00066{transform:matrix(0.647052,0.003235,-0.001250,0.249997,0,0);-ms-transform:matrix(0.647052,0.003235,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.647052,0.003235,-0.001250,0.249997,0,0);}
.m69_c00066{transform:matrix(0.654307,-0.003272,0.001250,0.249997,0,0);-ms-transform:matrix(0.654307,-0.003272,0.001250,0.249997,0,0);-webkit-transform:matrix(0.654307,-0.003272,0.001250,0.249997,0,0);}
.m5f_c00066{transform:matrix(0.698506,-0.003493,0.001250,0.249997,0,0);-ms-transform:matrix(0.698506,-0.003493,0.001250,0.249997,0,0);-webkit-transform:matrix(0.698506,-0.003493,0.001250,0.249997,0,0);}
.m5c_c00066{transform:matrix(0.730736,-0.003654,0.001250,0.249997,0,0);-ms-transform:matrix(0.730736,-0.003654,0.001250,0.249997,0,0);-webkit-transform:matrix(0.730736,-0.003654,0.001250,0.249997,0,0);}
.m79_c00066{transform:matrix(0.774069,-0.010837,0.003500,0.249976,0,0);-ms-transform:matrix(0.774069,-0.010837,0.003500,0.249976,0,0);-webkit-transform:matrix(0.774069,-0.010837,0.003500,0.249976,0,0);}
.m48_c00066{transform:matrix(0.779316,-0.018704,0.005998,0.249928,0,0);-ms-transform:matrix(0.779316,-0.018704,0.005998,0.249928,0,0);-webkit-transform:matrix(0.779316,-0.018704,0.005998,0.249928,0,0);}
.m52_c00066{transform:matrix(0.813936,-0.019534,0.005998,0.249928,0,0);-ms-transform:matrix(0.813936,-0.019534,0.005998,0.249928,0,0);-webkit-transform:matrix(0.813936,-0.019534,0.005998,0.249928,0,0);}
.m76_c00066{transform:matrix(0.829814,-0.011617,0.003500,0.249976,0,0);-ms-transform:matrix(0.829814,-0.011617,0.003500,0.249976,0,0);-webkit-transform:matrix(0.829814,-0.011617,0.003500,0.249976,0,0);}
.mc_c00066{transform:matrix(0.847434,-0.004237,0.001250,0.249997,0,0);-ms-transform:matrix(0.847434,-0.004237,0.001250,0.249997,0,0);-webkit-transform:matrix(0.847434,-0.004237,0.001250,0.249997,0,0);}
.m56_c00066{transform:matrix(0.847661,-0.020344,0.005998,0.249928,0,0);-ms-transform:matrix(0.847661,-0.020344,0.005998,0.249928,0,0);-webkit-transform:matrix(0.847661,-0.020344,0.005998,0.249928,0,0);}
.m6f_c00066{transform:matrix(0.878154,-0.004391,0.001250,0.249997,0,0);-ms-transform:matrix(0.878154,-0.004391,0.001250,0.249997,0,0);-webkit-transform:matrix(0.878154,-0.004391,0.001250,0.249997,0,0);}
.m71_c00066{transform:matrix(0.990873,-0.004954,0.001250,0.249997,0,0);-ms-transform:matrix(0.990873,-0.004954,0.001250,0.249997,0,0);-webkit-transform:matrix(0.990873,-0.004954,0.001250,0.249997,0,0);}
.m6a_c00066{transform:matrix(1.004137,-0.005021,0.001250,0.249997,0,0);-ms-transform:matrix(1.004137,-0.005021,0.001250,0.249997,0,0);-webkit-transform:matrix(1.004137,-0.005021,0.001250,0.249997,0,0);}
.m59_c00066{transform:matrix(1.065718,-0.025577,0.005998,0.249928,0,0);-ms-transform:matrix(1.065718,-0.025577,0.005998,0.249928,0,0);-webkit-transform:matrix(1.065718,-0.025577,0.005998,0.249928,0,0);}
.m62_c00066{transform:matrix(1.204795,-0.006024,0.001250,0.249997,0,0);-ms-transform:matrix(1.204795,-0.006024,0.001250,0.249997,0,0);-webkit-transform:matrix(1.204795,-0.006024,0.001250,0.249997,0,0);}
.m77_c00066{transform:matrix(4.304893,-0.060269,0.003500,0.249976,0,0);-ms-transform:matrix(4.304893,-0.060269,0.003500,0.249976,0,0);-webkit-transform:matrix(4.304893,-0.060269,0.003500,0.249976,0,0);}
.v0_c00066{vertical-align:0.000000px;}
.ls0_c00066{letter-spacing:0.000000px;}
.sc__c00066{text-shadow:none;}
.sc0_c00066{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__c00066{-webkit-text-stroke:0px transparent;}
.sc0_c00066{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00066{word-spacing:0.000000px;}
.fc0_c00066{color:transparent;}
.fsb_c00066{font-size:18.001764px;}
.fs5_c00066{font-size:24.000000px;}
.fsa_c00066{font-size:48.000600px;}
.fs9_c00066{font-size:54.000675px;}
.fs8_c00066{font-size:60.000750px;}
.fs3_c00066{font-size:66.000825px;}
.fs7_c00066{font-size:66.019005px;}
.fs2_c00066{font-size:72.000900px;}
.fs4_c00066{font-size:72.004356px;}
.fs6_c00066{font-size:84.024189px;}
.fs0_c00066{font-size:96.001200px;}
.fs1_c00066{font-size:114.001425px;}
.y0_c00066{bottom:0.000000px;}
.y75_c00066{bottom:0.243369px;}
.y76_c00066{bottom:1.697262px;}
.y77_c00066{bottom:1.803144px;}
.y78_c00066{bottom:2.087526px;}
.y79_c00066{bottom:2.174466px;}
.y7a_c00066{bottom:2.245425px;}
.y7b_c00066{bottom:2.381547px;}
.y7c_c00066{bottom:2.597469px;}
.y7d_c00066{bottom:2.907303px;}
.y7e_c00066{bottom:3.220854px;}
.y3d_c00066{bottom:20.520000px;}
.y3c_c00066{bottom:29.836500px;}
.y3b_c00066{bottom:31.993500px;}
.y3a_c00066{bottom:36.990000px;}
.y39_c00066{bottom:48.060000px;}
.y38_c00066{bottom:51.300000px;}
.y31_c00066{bottom:76.143000px;}
.y32_c00066{bottom:76.430067px;}
.y33_c00066{bottom:77.923763px;}
.y34_c00066{bottom:79.099289px;}
.y35_c00066{bottom:79.702875px;}
.y36_c00066{bottom:80.515500px;}
.y37_c00066{bottom:80.748513px;}
.y73_c00066{bottom:95.269702px;}
.y74_c00066{bottom:95.269807px;}
.y6f_c00066{bottom:108.907702px;}
.y71_c00066{bottom:108.907845px;}
.y68_c00066{bottom:108.907898px;}
.y72_c00066{bottom:108.907995px;}
.y70_c00066{bottom:108.908152px;}
.y6d_c00066{bottom:108.908318px;}
.y69_c00066{bottom:108.908340px;}
.y6c_c00066{bottom:108.908775px;}
.y6e_c00066{bottom:108.908917px;}
.y6b_c00066{bottom:108.908932px;}
.y6a_c00066{bottom:108.909090px;}
.y5c_c00066{bottom:137.964000px;}
.y5d_c00066{bottom:138.763230px;}
.y5e_c00066{bottom:139.343723px;}
.y5f_c00066{bottom:139.596172px;}
.y60_c00066{bottom:140.233117px;}
.y61_c00066{bottom:140.476170px;}
.y62_c00066{bottom:140.793412px;}
.y63_c00066{bottom:141.274043px;}
.y64_c00066{bottom:141.349605px;}
.y65_c00066{bottom:141.699285px;}
.y66_c00066{bottom:141.911182px;}
.y67_c00066{bottom:142.387417px;}
.y25_c00066{bottom:167.670780px;}
.y26_c00066{bottom:167.877443px;}
.y27_c00066{bottom:168.589928px;}
.y28_c00066{bottom:168.814545px;}
.y29_c00066{bottom:169.309740px;}
.y2a_c00066{bottom:169.984988px;}
.y2b_c00066{bottom:170.367315px;}
.y2c_c00066{bottom:171.405172px;}
.y2d_c00066{bottom:173.168430px;}
.y2e_c00066{bottom:173.520353px;}
.y2f_c00066{bottom:173.583300px;}
.y30_c00066{bottom:174.079522px;}
.y24_c00066{bottom:197.110980px;}
.y23_c00066{bottom:197.526803px;}
.y22_c00066{bottom:197.834595px;}
.y21_c00066{bottom:198.458288px;}
.y20_c00066{bottom:199.060470px;}
.y1f_c00066{bottom:199.185495px;}
.y1e_c00066{bottom:199.327665px;}
.y1d_c00066{bottom:199.598925px;}
.y1c_c00066{bottom:200.025607px;}
.y1b_c00066{bottom:200.273685px;}
.y1a_c00066{bottom:201.010905px;}
.y19_c00066{bottom:201.383505px;}
.y18_c00066{bottom:201.567000px;}
.y17_c00066{bottom:201.690000px;}
.yf_c00066{bottom:235.908997px;}
.y10_c00066{bottom:235.909290px;}
.ye_c00066{bottom:235.909305px;}
.y11_c00066{bottom:235.909432px;}
.y13_c00066{bottom:235.910018px;}
.y12_c00066{bottom:235.910025px;}
.y14_c00066{bottom:235.910610px;}
.y15_c00066{bottom:235.910902px;}
.y16_c00066{bottom:235.911353px;}
.y1_c00066{bottom:258.660000px;}
.y2_c00066{bottom:258.758910px;}
.y3_c00066{bottom:259.016782px;}
.y4_c00066{bottom:259.414875px;}
.y5_c00066{bottom:260.329890px;}
.y6_c00066{bottom:260.695725px;}
.y7_c00066{bottom:261.080745px;}
.y8_c00066{bottom:261.299580px;}
.y9_c00066{bottom:261.516930px;}
.ya_c00066{bottom:261.838223px;}
.yb_c00066{bottom:262.151288px;}
.yc_c00066{bottom:262.510387px;}
.yd_c00066{bottom:262.746675px;}
.y4e_c00066{bottom:332.584176px;}
.y4f_c00066{bottom:334.324332px;}
.y50_c00066{bottom:336.995028px;}
.y51_c00066{bottom:338.282004px;}
.y52_c00066{bottom:342.259128px;}
.y53_c00066{bottom:345.144612px;}
.y54_c00066{bottom:346.473024px;}
.y55_c00066{bottom:348.061248px;}
.y56_c00066{bottom:349.723572px;}
.y57_c00066{bottom:353.883456px;}
.y58_c00066{bottom:356.132496px;}
.y59_c00066{bottom:357.169800px;}
.y5a_c00066{bottom:359.935404px;}
.y5b_c00066{bottom:360.536136px;}
.y46_c00066{bottom:439.009320px;}
.y47_c00066{bottom:442.804800px;}
.y48_c00066{bottom:444.624648px;}
.y49_c00066{bottom:448.072464px;}
.y4a_c00066{bottom:449.899632px;}
.y4b_c00066{bottom:452.405508px;}
.y4c_c00066{bottom:454.056672px;}
.y4d_c00066{bottom:456.055032px;}
.y3e_c00066{bottom:476.835000px;}
.y3f_c00066{bottom:479.963940px;}
.y40_c00066{bottom:484.660572px;}
.y41_c00066{bottom:488.841612px;}
.y42_c00066{bottom:490.841268px;}
.y43_c00066{bottom:491.776188px;}
.y44_c00066{bottom:493.884528px;}
.y45_c00066{bottom:497.620248px;}
.hd_c00066{height:18.001764px;}
.h7_c00066{height:24.000000px;}
.hc_c00066{height:48.000600px;}
.hb_c00066{height:54.000675px;}
.ha_c00066{height:60.000750px;}
.h5_c00066{height:66.000825px;}
.h9_c00066{height:66.019005px;}
.h4_c00066{height:72.000900px;}
.h6_c00066{height:72.004356px;}
.h8_c00066{height:84.024189px;}
.h2_c00066{height:96.001200px;}
.h3_c00066{height:114.001425px;}
.h0_c00066{height:711.720000px;}
.h1_c00066{height:711.750000px;}
.w1_c00066{width:945.750000px;}
.w0_c00066{width:946.050000px;}
.x0_c00066{left:0.000000px;}
.xe_c00066{left:3.779708px;}
.x1_c00066{left:5.505000px;}
.x2f_c00066{left:7.020000px;}
.x30_c00066{left:13.230000px;}
.x2_c00066{left:25.287000px;}
.x2a_c00066{left:26.394000px;}
.x21_c00066{left:29.620185px;}
.x4c_c00066{left:31.426500px;}
.x3f_c00066{left:32.577648px;}
.x56_c00066{left:33.751335px;}
.x31_c00066{left:54.081000px;}
.x17_c00066{left:61.176000px;}
.x3_c00066{left:76.861500px;}
.x40_c00066{left:88.699716px;}
.x57_c00066{left:100.441500px;}
.x58_c00066{left:123.392070px;}
.x22_c00066{left:131.329290px;}
.xf_c00066{left:136.621530px;}
.x61_c00066{left:149.583420px;}
.x4_c00066{left:156.480000px;}
.x2b_c00066{left:162.184500px;}
.x23_c00066{left:163.507718px;}
.x41_c00066{left:174.839244px;}
.x32_c00066{left:184.453500px;}
.x4d_c00066{left:191.272500px;}
.x42_c00066{left:216.331260px;}
.x38_c00066{left:226.258872px;}
.x24_c00066{left:234.272963px;}
.x59_c00066{left:253.263818px;}
.x2c_c00066{left:269.050500px;}
.x18_c00066{left:283.140000px;}
.x10_c00066{left:287.283795px;}
.x4e_c00066{left:307.371000px;}
.x39_c00066{left:322.034856px;}
.x2d_c00066{left:323.922000px;}
.x25_c00066{left:330.829253px;}
.x19_c00066{left:332.755500px;}
.x5_c00066{left:339.483000px;}
.x43_c00066{left:344.648232px;}
.x4f_c00066{left:357.861000px;}
.x5a_c00066{left:372.335295px;}
.x33_c00066{left:380.146500px;}
.x26_c00066{left:385.467030px;}
.x2e_c00066{left:397.797000px;}
.x11_c00066{left:408.515325px;}
.x6_c00066{left:412.650000px;}
.x1a_c00066{left:418.092000px;}
.x44_c00066{left:437.736108px;}
.x5b_c00066{left:470.346248px;}
.x1b_c00066{left:472.344000px;}
.x45_c00066{left:480.579408px;}
.x50_c00066{left:485.250000px;}
.x7_c00066{left:489.654000px;}
.x1c_c00066{left:500.778000px;}
.x3a_c00066{left:503.528136px;}
.x1d_c00066{left:525.783000px;}
.x46_c00066{left:531.809304px;}
.x8_c00066{left:533.421000px;}
.x62_c00066{left:536.512500px;}
.x5c_c00066{left:551.348273px;}
.x34_c00066{left:554.356500px;}
.x9_c00066{left:576.891000px;}
.x47_c00066{left:585.438804px;}
.x51_c00066{left:597.309000px;}
.x3b_c00066{left:599.671656px;}
.x12_c00066{left:636.938033px;}
.xa_c00066{left:641.149500px;}
.x1e_c00066{left:646.219500px;}
.x63_c00066{left:657.745500px;}
.x64_c00066{left:665.308500px;}
.x35_c00066{left:676.630500px;}
.x65_c00066{left:685.621500px;}
.x66_c00066{left:691.831500px;}
.x52_c00066{left:693.435000px;}
.x13_c00066{left:696.339518px;}
.xb_c00066{left:703.762500px;}
.x67_c00066{left:706.623000px;}
.x53_c00066{left:708.547500px;}
.x48_c00066{left:719.619768px;}
.x68_c00066{left:722.046000px;}
.x3c_c00066{left:731.598996px;}
.x69_c00066{left:744.177000px;}
.x5d_c00066{left:749.530230px;}
.x36_c00066{left:764.478000px;}
.x6a_c00066{left:766.573500px;}
.x1f_c00066{left:770.958000px;}
.xc_c00066{left:775.582500px;}
.x54_c00066{left:778.483500px;}
.x27_c00066{left:785.568038px;}
.x14_c00066{left:787.060283px;}
.x5e_c00066{left:789.221220px;}
.x49_c00066{left:792.192600px;}
.x3d_c00066{left:818.532936px;}
.x55_c00066{left:820.863000px;}
.xd_c00066{left:822.840000px;}
.x4a_c00066{left:825.657984px;}
.x20_c00066{left:832.516500px;}
.x28_c00066{left:835.786553px;}
.x29_c00066{left:844.797593px;}
.x15_c00066{left:872.920928px;}
.x5f_c00066{left:913.962840px;}
.x16_c00066{left:915.311985px;}
.x37_c00066{left:920.133000px;}
.x3e_c00066{left:923.748072px;}
.x4b_c00066{left:934.278768px;}
.x60_c00066{left:943.393575px;}
@media print{
.v0_c00066{vertical-align:0.000000pt;}
.ls0_c00066{letter-spacing:0.000000pt;}
.ws0_c00066{word-spacing:0.000000pt;}
.fsb_c00066{font-size:16.001568pt;}
.fs5_c00066{font-size:21.333333pt;}
.fsa_c00066{font-size:42.667200pt;}
.fs9_c00066{font-size:48.000600pt;}
.fs8_c00066{font-size:53.334000pt;}
.fs3_c00066{font-size:58.667400pt;}
.fs7_c00066{font-size:58.683560pt;}
.fs2_c00066{font-size:64.000800pt;}
.fs4_c00066{font-size:64.003872pt;}
.fs6_c00066{font-size:74.688168pt;}
.fs0_c00066{font-size:85.334400pt;}
.fs1_c00066{font-size:101.334600pt;}
.y0_c00066{bottom:0.000000pt;}
.y75_c00066{bottom:0.216328pt;}
.y76_c00066{bottom:1.508677pt;}
.y77_c00066{bottom:1.602795pt;}
.y78_c00066{bottom:1.855579pt;}
.y79_c00066{bottom:1.932859pt;}
.y7a_c00066{bottom:1.995933pt;}
.y7b_c00066{bottom:2.116931pt;}
.y7c_c00066{bottom:2.308861pt;}
.y7d_c00066{bottom:2.584269pt;}
.y7e_c00066{bottom:2.862981pt;}
.y3d_c00066{bottom:18.240000pt;}
.y3c_c00066{bottom:26.521333pt;}
.y3b_c00066{bottom:28.438667pt;}
.y3a_c00066{bottom:32.880000pt;}
.y39_c00066{bottom:42.720000pt;}
.y38_c00066{bottom:45.600000pt;}
.y31_c00066{bottom:67.682667pt;}
.y32_c00066{bottom:67.937837pt;}
.y33_c00066{bottom:69.265567pt;}
.y34_c00066{bottom:70.310479pt;}
.y35_c00066{bottom:70.847000pt;}
.y36_c00066{bottom:71.569333pt;}
.y37_c00066{bottom:71.776456pt;}
.y73_c00066{bottom:84.684180pt;}
.y74_c00066{bottom:84.684273pt;}
.y6f_c00066{bottom:96.806847pt;}
.y71_c00066{bottom:96.806973pt;}
.y68_c00066{bottom:96.807020pt;}
.y72_c00066{bottom:96.807107pt;}
.y70_c00066{bottom:96.807247pt;}
.y6d_c00066{bottom:96.807393pt;}
.y69_c00066{bottom:96.807413pt;}
.y6c_c00066{bottom:96.807800pt;}
.y6e_c00066{bottom:96.807927pt;}
.y6b_c00066{bottom:96.807940pt;}
.y6a_c00066{bottom:96.808080pt;}
.y5c_c00066{bottom:122.634667pt;}
.y5d_c00066{bottom:123.345093pt;}
.y5e_c00066{bottom:123.861087pt;}
.y5f_c00066{bottom:124.085487pt;}
.y60_c00066{bottom:124.651660pt;}
.y61_c00066{bottom:124.867707pt;}
.y62_c00066{bottom:125.149700pt;}
.y63_c00066{bottom:125.576927pt;}
.y64_c00066{bottom:125.644093pt;}
.y65_c00066{bottom:125.954920pt;}
.y66_c00066{bottom:126.143273pt;}
.y67_c00066{bottom:126.566593pt;}
.y25_c00066{bottom:149.040693pt;}
.y26_c00066{bottom:149.224393pt;}
.y27_c00066{bottom:149.857713pt;}
.y28_c00066{bottom:150.057373pt;}
.y29_c00066{bottom:150.497547pt;}
.y2a_c00066{bottom:151.097767pt;}
.y2b_c00066{bottom:151.437613pt;}
.y2c_c00066{bottom:152.360153pt;}
.y2d_c00066{bottom:153.927493pt;}
.y2e_c00066{bottom:154.240313pt;}
.y2f_c00066{bottom:154.296267pt;}
.y30_c00066{bottom:154.737353pt;}
.y24_c00066{bottom:175.209760pt;}
.y23_c00066{bottom:175.579380pt;}
.y22_c00066{bottom:175.852973pt;}
.y21_c00066{bottom:176.407367pt;}
.y20_c00066{bottom:176.942640pt;}
.y1f_c00066{bottom:177.053773pt;}
.y1e_c00066{bottom:177.180147pt;}
.y1d_c00066{bottom:177.421267pt;}
.y1c_c00066{bottom:177.800540pt;}
.y1b_c00066{bottom:178.021053pt;}
.y1a_c00066{bottom:178.676360pt;}
.y19_c00066{bottom:179.007560pt;}
.y18_c00066{bottom:179.170667pt;}
.y17_c00066{bottom:179.280000pt;}
.yf_c00066{bottom:209.696887pt;}
.y10_c00066{bottom:209.697147pt;}
.ye_c00066{bottom:209.697160pt;}
.y11_c00066{bottom:209.697273pt;}
.y13_c00066{bottom:209.697793pt;}
.y12_c00066{bottom:209.697800pt;}
.y14_c00066{bottom:209.698320pt;}
.y15_c00066{bottom:209.698580pt;}
.y16_c00066{bottom:209.698980pt;}
.y1_c00066{bottom:229.920000pt;}
.y2_c00066{bottom:230.007920pt;}
.y3_c00066{bottom:230.237140pt;}
.y4_c00066{bottom:230.591000pt;}
.y5_c00066{bottom:231.404347pt;}
.y6_c00066{bottom:231.729533pt;}
.y7_c00066{bottom:232.071773pt;}
.y8_c00066{bottom:232.266293pt;}
.y9_c00066{bottom:232.459493pt;}
.ya_c00066{bottom:232.745087pt;}
.yb_c00066{bottom:233.023367pt;}
.yc_c00066{bottom:233.342567pt;}
.yd_c00066{bottom:233.552600pt;}
.y4e_c00066{bottom:295.630379pt;}
.y4f_c00066{bottom:297.177184pt;}
.y50_c00066{bottom:299.551136pt;}
.y51_c00066{bottom:300.695115pt;}
.y52_c00066{bottom:304.230336pt;}
.y53_c00066{bottom:306.795211pt;}
.y54_c00066{bottom:307.976021pt;}
.y55_c00066{bottom:309.387776pt;}
.y56_c00066{bottom:310.865397pt;}
.y57_c00066{bottom:314.563072pt;}
.y58_c00066{bottom:316.562219pt;}
.y59_c00066{bottom:317.484267pt;}
.y5a_c00066{bottom:319.942581pt;}
.y5b_c00066{bottom:320.476565pt;}
.y46_c00066{bottom:390.230507pt;}
.y47_c00066{bottom:393.604267pt;}
.y48_c00066{bottom:395.221909pt;}
.y49_c00066{bottom:398.286635pt;}
.y4a_c00066{bottom:399.910784pt;}
.y4b_c00066{bottom:402.138229pt;}
.y4c_c00066{bottom:403.605931pt;}
.y4d_c00066{bottom:405.382251pt;}
.y3e_c00066{bottom:423.853333pt;}
.y3f_c00066{bottom:426.634613pt;}
.y40_c00066{bottom:430.809397pt;}
.y41_c00066{bottom:434.525877pt;}
.y42_c00066{bottom:436.303349pt;}
.y43_c00066{bottom:437.134389pt;}
.y44_c00066{bottom:439.008469pt;}
.y45_c00066{bottom:442.329109pt;}
.hd_c00066{height:16.001568pt;}
.h7_c00066{height:21.333333pt;}
.hc_c00066{height:42.667200pt;}
.hb_c00066{height:48.000600pt;}
.ha_c00066{height:53.334000pt;}
.h5_c00066{height:58.667400pt;}
.h9_c00066{height:58.683560pt;}
.h4_c00066{height:64.000800pt;}
.h6_c00066{height:64.003872pt;}
.h8_c00066{height:74.688168pt;}
.h2_c00066{height:85.334400pt;}
.h3_c00066{height:101.334600pt;}
.h0_c00066{height:632.640000pt;}
.h1_c00066{height:632.666667pt;}
.w1_c00066{width:840.666667pt;}
.w0_c00066{width:840.933333pt;}
.x0_c00066{left:0.000000pt;}
.xe_c00066{left:3.359740pt;}
.x1_c00066{left:4.893333pt;}
.x2f_c00066{left:6.240000pt;}
.x30_c00066{left:11.760000pt;}
.x2_c00066{left:22.477333pt;}
.x2a_c00066{left:23.461333pt;}
.x21_c00066{left:26.329053pt;}
.x4c_c00066{left:27.934667pt;}
.x3f_c00066{left:28.957909pt;}
.x56_c00066{left:30.001187pt;}
.x31_c00066{left:48.072000pt;}
.x17_c00066{left:54.378667pt;}
.x3_c00066{left:68.321333pt;}
.x40_c00066{left:78.844192pt;}
.x57_c00066{left:89.281333pt;}
.x58_c00066{left:109.681840pt;}
.x22_c00066{left:116.737147pt;}
.xf_c00066{left:121.441360pt;}
.x61_c00066{left:132.963040pt;}
.x4_c00066{left:139.093333pt;}
.x2b_c00066{left:144.164000pt;}
.x23_c00066{left:145.340193pt;}
.x41_c00066{left:155.412661pt;}
.x32_c00066{left:163.958667pt;}
.x4d_c00066{left:170.020000pt;}
.x42_c00066{left:192.294453pt;}
.x38_c00066{left:201.118997pt;}
.x24_c00066{left:208.242633pt;}
.x59_c00066{left:225.123393pt;}
.x2c_c00066{left:239.156000pt;}
.x18_c00066{left:251.680000pt;}
.x10_c00066{left:255.363373pt;}
.x4e_c00066{left:273.218667pt;}
.x39_c00066{left:286.253205pt;}
.x2d_c00066{left:287.930667pt;}
.x25_c00066{left:294.070447pt;}
.x19_c00066{left:295.782667pt;}
.x5_c00066{left:301.762667pt;}
.x43_c00066{left:306.353984pt;}
.x4f_c00066{left:318.098667pt;}
.x5a_c00066{left:330.964707pt;}
.x33_c00066{left:337.908000pt;}
.x26_c00066{left:342.637360pt;}
.x2e_c00066{left:353.597333pt;}
.x11_c00066{left:363.124733pt;}
.x6_c00066{left:366.800000pt;}
.x1a_c00066{left:371.637333pt;}
.x44_c00066{left:389.098763pt;}
.x5b_c00066{left:418.085553pt;}
.x1b_c00066{left:419.861333pt;}
.x45_c00066{left:427.181696pt;}
.x50_c00066{left:431.333333pt;}
.x7_c00066{left:435.248000pt;}
.x1c_c00066{left:445.136000pt;}
.x3a_c00066{left:447.580565pt;}
.x1d_c00066{left:467.362667pt;}
.x46_c00066{left:472.719381pt;}
.x8_c00066{left:474.152000pt;}
.x62_c00066{left:476.900000pt;}
.x5c_c00066{left:490.087353pt;}
.x34_c00066{left:492.761333pt;}
.x9_c00066{left:512.792000pt;}
.x47_c00066{left:520.390048pt;}
.x51_c00066{left:530.941333pt;}
.x3b_c00066{left:533.041472pt;}
.x12_c00066{left:566.167140pt;}
.xa_c00066{left:569.910667pt;}
.x1e_c00066{left:574.417333pt;}
.x63_c00066{left:584.662667pt;}
.x64_c00066{left:591.385333pt;}
.x35_c00066{left:601.449333pt;}
.x65_c00066{left:609.441333pt;}
.x66_c00066{left:614.961333pt;}
.x52_c00066{left:616.386667pt;}
.x13_c00066{left:618.968460pt;}
.xb_c00066{left:625.566667pt;}
.x67_c00066{left:628.109333pt;}
.x53_c00066{left:629.820000pt;}
.x48_c00066{left:639.662016pt;}
.x68_c00066{left:641.818667pt;}
.x3c_c00066{left:650.310219pt;}
.x69_c00066{left:661.490667pt;}
.x5d_c00066{left:666.249093pt;}
.x36_c00066{left:679.536000pt;}
.x6a_c00066{left:681.398667pt;}
.x1f_c00066{left:685.296000pt;}
.xc_c00066{left:689.406667pt;}
.x54_c00066{left:691.985333pt;}
.x27_c00066{left:698.282700pt;}
.x14_c00066{left:699.609140pt;}
.x5e_c00066{left:701.529973pt;}
.x49_c00066{left:704.171200pt;}
.x3d_c00066{left:727.584832pt;}
.x55_c00066{left:729.656000pt;}
.xd_c00066{left:731.413333pt;}
.x4a_c00066{left:733.918208pt;}
.x20_c00066{left:740.014667pt;}
.x28_c00066{left:742.921380pt;}
.x29_c00066{left:750.931193pt;}
.x15_c00066{left:775.929713pt;}
.x5f_c00066{left:812.411413pt;}
.x16_c00066{left:813.610653pt;}
.x37_c00066{left:817.896000pt;}
.x3e_c00066{left:821.109397pt;}
.x4b_c00066{left:830.470016pt;}
.x60_c00066{left:838.572067pt;}
}





/* 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_c00067 {
    display:none;
  }
  .loading-indicator_c00067.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00067 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_c00067 { 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_c00067" -> "#page-container .classname_c00067")
 */
.pf_c00067 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00067 { /* 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_c00067.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00067 { /* 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_c00067 { /* 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_c00067 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00067 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00067 {overflow:visible;}
  }
}
.c_c00067 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00067 { /* 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_c00067:after { /* webkit #35443 */
  content: '';
}
.t_c00067:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00067 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 */
}
.__c00067 { /* 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_c00067 { /* info for Javascript */
  display:none;
}
.l_c00067 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00067 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00067 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00067: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_c00067 {
    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_c00067.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00067.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_c00067 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00067{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00067;src:url('chunks/assets/font_7c6b9abe6ee2a268480c528b.woff2')format("woff");}.ff1_c00067{font-family:ff1_c00067;line-height:1.000000;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;}
.m1_c00067{transform:matrix(0.044997,0.000540,-0.003000,0.249982,0,0);-ms-transform:matrix(0.044997,0.000540,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.044997,0.000540,-0.003000,0.249982,0,0);}
.m0_c00067{transform:matrix(0.244477,0.002934,-0.003000,0.249982,0,0);-ms-transform:matrix(0.244477,0.002934,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.244477,0.002934,-0.003000,0.249982,0,0);}
.m4_c00067{transform:matrix(0.261411,0.003137,-0.003000,0.249982,0,0);-ms-transform:matrix(0.261411,0.003137,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.261411,0.003137,-0.003000,0.249982,0,0);}
.m14_c00067{transform:matrix(0.313947,0.003767,-0.003000,0.249982,0,0);-ms-transform:matrix(0.313947,0.003767,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.313947,0.003767,-0.003000,0.249982,0,0);}
.mb_c00067{transform:matrix(0.319387,0.003833,-0.003000,0.249982,0,0);-ms-transform:matrix(0.319387,0.003833,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.319387,0.003833,-0.003000,0.249982,0,0);}
.m7_c00067{transform:matrix(0.347975,0.004176,-0.003000,0.249982,0,0);-ms-transform:matrix(0.347975,0.004176,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.347975,0.004176,-0.003000,0.249982,0,0);}
.m8_c00067{transform:matrix(0.365529,0.004386,-0.003000,0.249982,0,0);-ms-transform:matrix(0.365529,0.004386,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.365529,0.004386,-0.003000,0.249982,0,0);}
.md_c00067{transform:matrix(0.374373,0.004492,-0.003000,0.249982,0,0);-ms-transform:matrix(0.374373,0.004492,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.374373,0.004492,-0.003000,0.249982,0,0);}
.m2_c00067{transform:matrix(0.378938,0.004547,-0.003000,0.249982,0,0);-ms-transform:matrix(0.378938,0.004547,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.378938,0.004547,-0.003000,0.249982,0,0);}
.m9_c00067{transform:matrix(0.427199,0.005126,-0.003000,0.249982,0,0);-ms-transform:matrix(0.427199,0.005126,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.427199,0.005126,-0.003000,0.249982,0,0);}
.mc_c00067{transform:matrix(0.454357,0.005452,-0.003000,0.249982,0,0);-ms-transform:matrix(0.454357,0.005452,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.454357,0.005452,-0.003000,0.249982,0,0);}
.m12_c00067{transform:matrix(0.477051,0.005725,-0.003000,0.249982,0,0);-ms-transform:matrix(0.477051,0.005725,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.477051,0.005725,-0.003000,0.249982,0,0);}
.mf_c00067{transform:matrix(0.479760,0.005757,-0.003000,0.249982,0,0);-ms-transform:matrix(0.479760,0.005757,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.479760,0.005757,-0.003000,0.249982,0,0);}
.m3_c00067{transform:matrix(0.481315,0.005776,-0.003000,0.249982,0,0);-ms-transform:matrix(0.481315,0.005776,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.481315,0.005776,-0.003000,0.249982,0,0);}
.m6_c00067{transform:matrix(0.485675,0.005828,-0.003000,0.249982,0,0);-ms-transform:matrix(0.485675,0.005828,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.485675,0.005828,-0.003000,0.249982,0,0);}
.me_c00067{transform:matrix(0.488045,0.005857,-0.003000,0.249982,0,0);-ms-transform:matrix(0.488045,0.005857,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.488045,0.005857,-0.003000,0.249982,0,0);}
.m16_c00067{transform:matrix(0.489620,0.005875,-0.003000,0.249982,0,0);-ms-transform:matrix(0.489620,0.005875,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.489620,0.005875,-0.003000,0.249982,0,0);}
.ma_c00067{transform:matrix(0.500884,0.006011,-0.003000,0.249982,0,0);-ms-transform:matrix(0.500884,0.006011,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.500884,0.006011,-0.003000,0.249982,0,0);}
.m17_c00067{transform:matrix(0.507883,0.006095,-0.003000,0.249982,0,0);-ms-transform:matrix(0.507883,0.006095,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.507883,0.006095,-0.003000,0.249982,0,0);}
.m15_c00067{transform:matrix(0.661927,0.007943,-0.003000,0.249982,0,0);-ms-transform:matrix(0.661927,0.007943,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.661927,0.007943,-0.003000,0.249982,0,0);}
.m10_c00067{transform:matrix(1.090741,0.013089,-0.003000,0.249982,0,0);-ms-transform:matrix(1.090741,0.013089,-0.003000,0.249982,0,0);-webkit-transform:matrix(1.090741,0.013089,-0.003000,0.249982,0,0);}
.m13_c00067{transform:matrix(1.438806,0.017266,-0.003000,0.249982,0,0);-ms-transform:matrix(1.438806,0.017266,-0.003000,0.249982,0,0);-webkit-transform:matrix(1.438806,0.017266,-0.003000,0.249982,0,0);}
.m5_c00067{transform:matrix(1.984372,0.023812,-0.003000,0.249982,0,0);-ms-transform:matrix(1.984372,0.023812,-0.003000,0.249982,0,0);-webkit-transform:matrix(1.984372,0.023812,-0.003000,0.249982,0,0);}
.m11_c00067{transform:matrix(2.245028,0.026940,-0.003000,0.249982,0,0);-ms-transform:matrix(2.245028,0.026940,-0.003000,0.249982,0,0);-webkit-transform:matrix(2.245028,0.026940,-0.003000,0.249982,0,0);}
.v0_c00067{vertical-align:0.000000px;}
.ls0_c00067{letter-spacing:0.000000px;}
.sc__c00067{text-shadow:none;}
.sc0_c00067{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__c00067{-webkit-text-stroke:0px transparent;}
.sc0_c00067{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00067{word-spacing:0.000000px;}
.fc0_c00067{color:transparent;}
.fs0_c00067{font-size:30.002160px;}
.y16_c00067{bottom:-0.001902px;}
.y17_c00067{bottom:-0.001326px;}
.y15_c00067{bottom:-0.001320px;}
.y13_c00067{bottom:-0.001092px;}
.y14_c00067{bottom:-0.001014px;}
.y12_c00067{bottom:-0.001008px;}
.y0_c00067{bottom:0.000000px;}
.y11_c00067{bottom:4.031370px;}
.y10_c00067{bottom:4.994496px;}
.yf_c00067{bottom:5.162994px;}
.ye_c00067{bottom:7.032564px;}
.yd_c00067{bottom:7.780878px;}
.yc_c00067{bottom:8.043336px;}
.yb_c00067{bottom:8.341470px;}
.ya_c00067{bottom:9.274752px;}
.y9_c00067{bottom:9.462510px;}
.y8_c00067{bottom:9.647172px;}
.y7_c00067{bottom:10.094292px;}
.y6_c00067{bottom:11.173248px;}
.y5_c00067{bottom:12.264588px;}
.y4_c00067{bottom:12.705192px;}
.y3_c00067{bottom:12.915738px;}
.y2_c00067{bottom:12.938418px;}
.y1_c00067{bottom:13.230000px;}
.h2_c00067{height:30.002160px;}
.h0_c00067{height:711.720000px;}
.h1_c00067{height:711.750000px;}
.w1_c00067{width:945.750000px;}
.w0_c00067{width:946.050000px;}
.x0_c00067{left:0.000000px;}
.x1_c00067{left:163.347000px;}
.x2_c00067{left:187.645500px;}
.x3_c00067{left:189.535500px;}
.x12_c00067{left:194.401722px;}
.x4_c00067{left:207.081000px;}
.x13_c00067{left:238.415058px;}
.x5_c00067{left:243.798000px;}
.x14_c00067{left:267.037680px;}
.x6_c00067{left:334.743000px;}
.x15_c00067{left:338.323440px;}
.x16_c00067{left:362.625432px;}
.x17_c00067{left:397.457454px;}
.x7_c00067{left:424.656000px;}
.x8_c00067{left:461.916000px;}
.x9_c00067{left:477.304500px;}
.xa_c00067{left:492.951000px;}
.xb_c00067{left:570.724500px;}
.xc_c00067{left:595.569000px;}
.xd_c00067{left:617.440500px;}
.xe_c00067{left:679.800000px;}
.xf_c00067{left:835.597500px;}
.x18_c00067{left:841.369872px;}
.x10_c00067{left:849.639000px;}
.x11_c00067{left:929.899500px;}
@media print{
.v0_c00067{vertical-align:0.000000pt;}
.ls0_c00067{letter-spacing:0.000000pt;}
.ws0_c00067{word-spacing:0.000000pt;}
.fs0_c00067{font-size:26.668587pt;}
.y16_c00067{bottom:-0.001691pt;}
.y17_c00067{bottom:-0.001179pt;}
.y15_c00067{bottom:-0.001173pt;}
.y13_c00067{bottom:-0.000971pt;}
.y14_c00067{bottom:-0.000901pt;}
.y12_c00067{bottom:-0.000896pt;}
.y0_c00067{bottom:0.000000pt;}
.y11_c00067{bottom:3.583440pt;}
.y10_c00067{bottom:4.439552pt;}
.yf_c00067{bottom:4.589328pt;}
.ye_c00067{bottom:6.251168pt;}
.yd_c00067{bottom:6.916336pt;}
.yc_c00067{bottom:7.149632pt;}
.yb_c00067{bottom:7.414640pt;}
.ya_c00067{bottom:8.244224pt;}
.y9_c00067{bottom:8.411120pt;}
.y8_c00067{bottom:8.575264pt;}
.y7_c00067{bottom:8.972704pt;}
.y6_c00067{bottom:9.931776pt;}
.y5_c00067{bottom:10.901856pt;}
.y4_c00067{bottom:11.293504pt;}
.y3_c00067{bottom:11.480656pt;}
.y2_c00067{bottom:11.500816pt;}
.y1_c00067{bottom:11.760000pt;}
.h2_c00067{height:26.668587pt;}
.h0_c00067{height:632.640000pt;}
.h1_c00067{height:632.666667pt;}
.w1_c00067{width:840.666667pt;}
.w0_c00067{width:840.933333pt;}
.x0_c00067{left:0.000000pt;}
.x1_c00067{left:145.197333pt;}
.x2_c00067{left:166.796000pt;}
.x3_c00067{left:168.476000pt;}
.x12_c00067{left:172.801531pt;}
.x4_c00067{left:184.072000pt;}
.x13_c00067{left:211.924496pt;}
.x5_c00067{left:216.709333pt;}
.x14_c00067{left:237.366827pt;}
.x6_c00067{left:297.549333pt;}
.x15_c00067{left:300.731947pt;}
.x16_c00067{left:322.333717pt;}
.x17_c00067{left:353.295515pt;}
.x7_c00067{left:377.472000pt;}
.x8_c00067{left:410.592000pt;}
.x9_c00067{left:424.270667pt;}
.xa_c00067{left:438.178667pt;}
.xb_c00067{left:507.310667pt;}
.xc_c00067{left:529.394667pt;}
.xd_c00067{left:548.836000pt;}
.xe_c00067{left:604.266667pt;}
.xf_c00067{left:742.753333pt;}
.x18_c00067{left:747.884331pt;}
.x10_c00067{left:755.234667pt;}
.x11_c00067{left:826.577333pt;}
}





/* 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_c00068 {
    display:none;
  }
  .loading-indicator_c00068.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00068 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_c00068 { 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_c00068" -> "#page-container .classname_c00068")
 */
.pf_c00068 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00068 { /* 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_c00068.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00068 { /* 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_c00068 { /* 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_c00068 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00068 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00068 {overflow:visible;}
  }
}
.c_c00068 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00068 { /* 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_c00068:after { /* webkit #35443 */
  content: '';
}
.t_c00068:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00068 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 */
}
.__c00068 { /* 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_c00068 { /* info for Javascript */
  display:none;
}
.l_c00068 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00068 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00068 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00068: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_c00068 {
    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_c00068.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00068.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_c00068 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00068{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00068;src:url('chunks/assets/font_944db81570d4ec07251d83b9.woff2')format("woff");}.ff1_c00068{font-family:ff1_c00068;line-height:1.000000;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;}
.m7_c00068{transform:matrix(0.141605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141605,0.000000,0.000000,0.250000,0,0);}
.m6_c00068{transform:matrix(0.239340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239340,0.000000,0.000000,0.250000,0,0);}
.m0_c00068{transform:matrix(0.275770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275770,0.000000,0.000000,0.250000,0,0);}
.m2_c00068{transform:matrix(0.361385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361385,0.000000,0.000000,0.250000,0,0);}
.m4_c00068{transform:matrix(0.373620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373620,0.000000,0.000000,0.250000,0,0);}
.m3_c00068{transform:matrix(0.421280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421280,0.000000,0.000000,0.250000,0,0);}
.m5_c00068{transform:matrix(0.430250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430250,0.000000,0.000000,0.250000,0,0);}
.m1_c00068{transform:matrix(0.450650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450650,0.000000,0.000000,0.250000,0,0);}
.m8_c00068{transform:matrix(0.748825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.748825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.748825,0.000000,0.000000,0.250000,0,0);}
.v0_c00068{vertical-align:0.000000px;}
.ls0_c00068{letter-spacing:0.000000px;}
.sc__c00068{text-shadow:none;}
.sc0_c00068{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__c00068{-webkit-text-stroke:0px transparent;}
.sc0_c00068{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00068{word-spacing:0.000000px;}
.fc0_c00068{color:transparent;}
.fs0_c00068{font-size:18.000000px;}
.fs1_c00068{font-size:90.000000px;}
.y0_c00068{bottom:0.000000px;}
.y2_c00068{bottom:479.790000px;}
.y1_c00068{bottom:498.150000px;}
.h2_c00068{height:18.000000px;}
.h3_c00068{height:90.000000px;}
.h0_c00068{height:711.720000px;}
.h1_c00068{height:711.750000px;}
.w1_c00068{width:945.750000px;}
.w0_c00068{width:946.050000px;}
.x0_c00068{left:0.000000px;}
.x1_c00068{left:224.910000px;}
.x2_c00068{left:263.790000px;}
.x3_c00068{left:362.070000px;}
.x4_c00068{left:462.780000px;}
.x5_c00068{left:527.310000px;}
.x6_c00068{left:585.900000px;}
.x7_c00068{left:697.950000px;}
.x8_c00068{left:791.640000px;}
.x9_c00068{left:843.210000px;}
@media print{
.v0_c00068{vertical-align:0.000000pt;}
.ls0_c00068{letter-spacing:0.000000pt;}
.ws0_c00068{word-spacing:0.000000pt;}
.fs0_c00068{font-size:16.000000pt;}
.fs1_c00068{font-size:80.000000pt;}
.y0_c00068{bottom:0.000000pt;}
.y2_c00068{bottom:426.480000pt;}
.y1_c00068{bottom:442.800000pt;}
.h2_c00068{height:16.000000pt;}
.h3_c00068{height:80.000000pt;}
.h0_c00068{height:632.640000pt;}
.h1_c00068{height:632.666667pt;}
.w1_c00068{width:840.666667pt;}
.w0_c00068{width:840.933333pt;}
.x0_c00068{left:0.000000pt;}
.x1_c00068{left:199.920000pt;}
.x2_c00068{left:234.480000pt;}
.x3_c00068{left:321.840000pt;}
.x4_c00068{left:411.360000pt;}
.x5_c00068{left:468.720000pt;}
.x6_c00068{left:520.800000pt;}
.x7_c00068{left:620.400000pt;}
.x8_c00068{left:703.680000pt;}
.x9_c00068{left:749.520000pt;}
}





/* 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_c00069 {
    display:none;
  }
  .loading-indicator_c00069.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00069 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_c00069 { 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_c00069" -> "#page-container .classname_c00069")
 */
.pf_c00069 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00069 { /* 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_c00069.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00069 { /* 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_c00069 { /* 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_c00069 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00069 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00069 {overflow:visible;}
  }
}
.c_c00069 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00069 { /* 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_c00069:after { /* webkit #35443 */
  content: '';
}
.t_c00069:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00069 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 */
}
.__c00069 { /* 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_c00069 { /* info for Javascript */
  display:none;
}
.l_c00069 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00069 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00069 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00069: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_c00069 {
    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_c00069.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00069.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_c00069 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00069{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00069;src:url('chunks/assets/font_59dc3ab2e04ed21d4ac9992b.woff2')format("woff");}.ff1_c00069{font-family:ff1_c00069;line-height:1.000000;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;}
.m3_c00069{transform:matrix(0.045000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.045000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.045000,0.000000,0.000000,0.250000,0,0);}
.m6_c00069{transform:matrix(0.222365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222365,0.000000,0.000000,0.250000,0,0);}
.m5_c00069{transform:matrix(0.481040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.481040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.481040,0.000000,0.000000,0.250000,0,0);}
.m1_c00069{transform:matrix(0.809500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.809500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.809500,0.000000,0.000000,0.250000,0,0);}
.m2_c00069{transform:matrix(1.366465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.366465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.366465,0.000000,0.000000,0.250000,0,0);}
.m0_c00069{transform:matrix(1.956315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.956315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.956315,0.000000,0.000000,0.250000,0,0);}
.m4_c00069{transform:matrix(4.271465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.271465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.271465,0.000000,0.000000,0.250000,0,0);}
.v0_c00069{vertical-align:0.000000px;}
.ls0_c00069{letter-spacing:0.000000px;}
.sc__c00069{text-shadow:none;}
.sc0_c00069{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__c00069{-webkit-text-stroke:0px transparent;}
.sc0_c00069{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00069{word-spacing:0.000000px;}
.fc0_c00069{color:transparent;}
.fs1_c00069{font-size:18.000000px;}
.fs0_c00069{font-size:30.000000px;}
.fs2_c00069{font-size:84.000000px;}
.y0_c00069{bottom:0.000000px;}
.y1_c00069{bottom:7.290000px;}
.h3_c00069{height:18.000000px;}
.h2_c00069{height:30.000000px;}
.h4_c00069{height:84.000000px;}
.h0_c00069{height:711.720000px;}
.h1_c00069{height:711.750000px;}
.w1_c00069{width:945.750000px;}
.w0_c00069{width:946.050000px;}
.x0_c00069{left:0.000000px;}
.x7_c00069{left:176.580000px;}
.x6_c00069{left:190.890000px;}
.x1_c00069{left:203.580000px;}
.x2_c00069{left:267.570000px;}
.x3_c00069{left:329.670000px;}
.x4_c00069{left:455.760000px;}
.x5_c00069{left:713.880000px;}
@media print{
.v0_c00069{vertical-align:0.000000pt;}
.ls0_c00069{letter-spacing:0.000000pt;}
.ws0_c00069{word-spacing:0.000000pt;}
.fs1_c00069{font-size:16.000000pt;}
.fs0_c00069{font-size:26.666667pt;}
.fs2_c00069{font-size:74.666667pt;}
.y0_c00069{bottom:0.000000pt;}
.y1_c00069{bottom:6.480000pt;}
.h3_c00069{height:16.000000pt;}
.h2_c00069{height:26.666667pt;}
.h4_c00069{height:74.666667pt;}
.h0_c00069{height:632.640000pt;}
.h1_c00069{height:632.666667pt;}
.w1_c00069{width:840.666667pt;}
.w0_c00069{width:840.933333pt;}
.x0_c00069{left:0.000000pt;}
.x7_c00069{left:156.960000pt;}
.x6_c00069{left:169.680000pt;}
.x1_c00069{left:180.960000pt;}
.x2_c00069{left:237.840000pt;}
.x3_c00069{left:293.040000pt;}
.x4_c00069{left:405.120000pt;}
.x5_c00069{left:634.560000pt;}
}





/* 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_c00070 {
    display:none;
  }
  .loading-indicator_c00070.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00070 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_c00070 { 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_c00070" -> "#page-container .classname_c00070")
 */
.pf_c00070 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00070 { /* 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_c00070.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00070 { /* 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_c00070 { /* 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_c00070 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00070 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00070 {overflow:visible;}
  }
}
.c_c00070 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00070 { /* 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_c00070:after { /* webkit #35443 */
  content: '';
}
.t_c00070:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00070 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 */
}
.__c00070 { /* 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_c00070 { /* info for Javascript */
  display:none;
}
.l_c00070 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00070 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00070 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00070: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_c00070 {
    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_c00070.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00070.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_c00070 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00070{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00070;src:url('chunks/assets/font_b11a17f404e7258299fdf971.woff2')format("woff");}.ff1_c00070{font-family:ff1_c00070;line-height:1.000000;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;}
.m12_c00070{transform:matrix(0.147550,0.007680,-0.012995,0.249662,0,0);-ms-transform:matrix(0.147550,0.007680,-0.012995,0.249662,0,0);-webkit-transform:matrix(0.147550,0.007680,-0.012995,0.249662,0,0);}
.m2_c00070{transform:matrix(0.184526,-0.001845,0.002500,0.249988,0,0);-ms-transform:matrix(0.184526,-0.001845,0.002500,0.249988,0,0);-webkit-transform:matrix(0.184526,-0.001845,0.002500,0.249988,0,0);}
.ma_c00070{transform:matrix(0.185701,-0.001857,0.002500,0.249988,0,0);-ms-transform:matrix(0.185701,-0.001857,0.002500,0.249988,0,0);-webkit-transform:matrix(0.185701,-0.001857,0.002500,0.249988,0,0);}
.m11_c00070{transform:matrix(0.210760,0.010970,-0.012995,0.249662,0,0);-ms-transform:matrix(0.210760,0.010970,-0.012995,0.249662,0,0);-webkit-transform:matrix(0.210760,0.010970,-0.012995,0.249662,0,0);}
.m1_c00070{transform:matrix(0.219524,-0.002195,0.002500,0.249988,0,0);-ms-transform:matrix(0.219524,-0.002195,0.002500,0.249988,0,0);-webkit-transform:matrix(0.219524,-0.002195,0.002500,0.249988,0,0);}
.m15_c00070{transform:matrix(0.225630,0.011744,-0.012995,0.249662,0,0);-ms-transform:matrix(0.225630,0.011744,-0.012995,0.249662,0,0);-webkit-transform:matrix(0.225630,0.011744,-0.012995,0.249662,0,0);}
.m14_c00070{transform:matrix(0.248494,0.012935,-0.012995,0.249662,0,0);-ms-transform:matrix(0.248494,0.012935,-0.012995,0.249662,0,0);-webkit-transform:matrix(0.248494,0.012935,-0.012995,0.249662,0,0);}
.m13_c00070{transform:matrix(0.255549,0.013302,-0.012995,0.249662,0,0);-ms-transform:matrix(0.255549,0.013302,-0.012995,0.249662,0,0);-webkit-transform:matrix(0.255549,0.013302,-0.012995,0.249662,0,0);}
.m3_c00070{transform:matrix(0.269472,-0.002695,0.002500,0.249988,0,0);-ms-transform:matrix(0.269472,-0.002695,0.002500,0.249988,0,0);-webkit-transform:matrix(0.269472,-0.002695,0.002500,0.249988,0,0);}
.m5_c00070{transform:matrix(0.298115,-0.002981,0.002500,0.249988,0,0);-ms-transform:matrix(0.298115,-0.002981,0.002500,0.249988,0,0);-webkit-transform:matrix(0.298115,-0.002981,0.002500,0.249988,0,0);}
.mb_c00070{transform:matrix(0.305836,0.015919,-0.012995,0.249662,0,0);-ms-transform:matrix(0.305836,0.015919,-0.012995,0.249662,0,0);-webkit-transform:matrix(0.305836,0.015919,-0.012995,0.249662,0,0);}
.m9_c00070{transform:matrix(0.307860,-0.003079,0.002500,0.249988,0,0);-ms-transform:matrix(0.307860,-0.003079,0.002500,0.249988,0,0);-webkit-transform:matrix(0.307860,-0.003079,0.002500,0.249988,0,0);}
.md_c00070{transform:matrix(0.315068,0.016400,-0.012995,0.249662,0,0);-ms-transform:matrix(0.315068,0.016400,-0.012995,0.249662,0,0);-webkit-transform:matrix(0.315068,0.016400,-0.012995,0.249662,0,0);}
.me_c00070{transform:matrix(0.327592,0.017052,-0.012995,0.249662,0,0);-ms-transform:matrix(0.327592,0.017052,-0.012995,0.249662,0,0);-webkit-transform:matrix(0.327592,0.017052,-0.012995,0.249662,0,0);}
.m10_c00070{transform:matrix(0.344109,0.017912,-0.012995,0.249662,0,0);-ms-transform:matrix(0.344109,0.017912,-0.012995,0.249662,0,0);-webkit-transform:matrix(0.344109,0.017912,-0.012995,0.249662,0,0);}
.m0_c00070{transform:matrix(0.410024,-0.004100,0.002500,0.249988,0,0);-ms-transform:matrix(0.410024,-0.004100,0.002500,0.249988,0,0);-webkit-transform:matrix(0.410024,-0.004100,0.002500,0.249988,0,0);}
.mf_c00070{transform:matrix(0.413660,0.021532,-0.012995,0.249662,0,0);-ms-transform:matrix(0.413660,0.021532,-0.012995,0.249662,0,0);-webkit-transform:matrix(0.413660,0.021532,-0.012995,0.249662,0,0);}
.m8_c00070{transform:matrix(0.424309,-0.004243,0.002500,0.249988,0,0);-ms-transform:matrix(0.424309,-0.004243,0.002500,0.249988,0,0);-webkit-transform:matrix(0.424309,-0.004243,0.002500,0.249988,0,0);}
.m4_c00070{transform:matrix(0.425224,-0.004252,0.002500,0.249988,0,0);-ms-transform:matrix(0.425224,-0.004252,0.002500,0.249988,0,0);-webkit-transform:matrix(0.425224,-0.004252,0.002500,0.249988,0,0);}
.m7_c00070{transform:matrix(0.461957,-0.004620,0.002500,0.249988,0,0);-ms-transform:matrix(0.461957,-0.004620,0.002500,0.249988,0,0);-webkit-transform:matrix(0.461957,-0.004620,0.002500,0.249988,0,0);}
.m6_c00070{transform:matrix(0.502585,-0.005026,0.002500,0.249988,0,0);-ms-transform:matrix(0.502585,-0.005026,0.002500,0.249988,0,0);-webkit-transform:matrix(0.502585,-0.005026,0.002500,0.249988,0,0);}
.mc_c00070{transform:matrix(0.711512,0.037036,-0.012995,0.249662,0,0);-ms-transform:matrix(0.711512,0.037036,-0.012995,0.249662,0,0);-webkit-transform:matrix(0.711512,0.037036,-0.012995,0.249662,0,0);}
.v0_c00070{vertical-align:0.000000px;}
.ls0_c00070{letter-spacing:0.000000px;}
.sc__c00070{text-shadow:none;}
.sc0_c00070{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__c00070{-webkit-text-stroke:0px transparent;}
.sc0_c00070{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00070{word-spacing:0.000000px;}
.fc0_c00070{color:transparent;}
.fs3_c00070{font-size:42.014802px;}
.fs2_c00070{font-size:60.021146px;}
.fs0_c00070{font-size:78.003900px;}
.fs4_c00070{font-size:84.029605px;}
.fs1_c00070{font-size:186.009300px;}
.y0_c00070{bottom:0.000000px;}
.y16_c00070{bottom:112.586836px;}
.y15_c00070{bottom:112.587900px;}
.y14_c00070{bottom:112.589629px;}
.y13_c00070{bottom:112.592295px;}
.y10_c00070{bottom:122.985660px;}
.yf_c00070{bottom:124.283814px;}
.ye_c00070{bottom:129.380256px;}
.y12_c00070{bottom:133.353825px;}
.y11_c00070{bottom:133.356882px;}
.yd_c00070{bottom:133.415430px;}
.yc_c00070{bottom:137.457000px;}
.y9_c00070{bottom:152.201295px;}
.ya_c00070{bottom:152.201505px;}
.yb_c00070{bottom:152.201760px;}
.y1_c00070{bottom:186.561000px;}
.y2_c00070{bottom:187.835415px;}
.y3_c00070{bottom:188.064360px;}
.y4_c00070{bottom:188.261985px;}
.y5_c00070{bottom:189.904125px;}
.y6_c00070{bottom:190.973265px;}
.y7_c00070{bottom:191.262150px;}
.y8_c00070{bottom:192.331290px;}
.h5_c00070{height:42.014802px;}
.h4_c00070{height:60.021146px;}
.h2_c00070{height:78.003900px;}
.h6_c00070{height:84.029605px;}
.h3_c00070{height:186.009300px;}
.h0_c00070{height:711.720000px;}
.h1_c00070{height:711.750000px;}
.w1_c00070{width:945.750000px;}
.w0_c00070{width:946.050000px;}
.x0_c00070{left:0.000000px;}
.x13_c00070{left:63.510636px;}
.x14_c00070{left:88.628843px;}
.x15_c00070{left:108.076422px;}
.x1_c00070{left:210.772500px;}
.x9_c00070{left:259.200405px;}
.x2_c00070{left:338.214000px;}
.x3_c00070{left:361.108500px;}
.x4_c00070{left:380.871000px;}
.x11_c00070{left:414.635518px;}
.xa_c00070{left:442.539735px;}
.x12_c00070{left:476.757203px;}
.xb_c00070{left:543.525330px;}
.x5_c00070{left:545.085000px;}
.x6_c00070{left:651.999000px;}
.xc_c00070{left:659.632500px;}
.x7_c00070{left:680.887500px;}
.xd_c00070{left:737.277278px;}
.x8_c00070{left:787.801500px;}
.xe_c00070{left:814.799178px;}
.xf_c00070{left:912.709670px;}
.x10_c00070{left:937.649205px;}
@media print{
.v0_c00070{vertical-align:0.000000pt;}
.ls0_c00070{letter-spacing:0.000000pt;}
.ws0_c00070{word-spacing:0.000000pt;}
.fs3_c00070{font-size:37.346491pt;}
.fs2_c00070{font-size:53.352130pt;}
.fs0_c00070{font-size:69.336800pt;}
.fs4_c00070{font-size:74.692982pt;}
.fs1_c00070{font-size:165.341600pt;}
.y0_c00070{bottom:0.000000pt;}
.y16_c00070{bottom:100.077188pt;}
.y15_c00070{bottom:100.078133pt;}
.y14_c00070{bottom:100.079671pt;}
.y13_c00070{bottom:100.082040pt;}
.y10_c00070{bottom:109.320587pt;}
.yf_c00070{bottom:110.474501pt;}
.ye_c00070{bottom:115.004672pt;}
.y12_c00070{bottom:118.536733pt;}
.y11_c00070{bottom:118.539451pt;}
.yd_c00070{bottom:118.591493pt;}
.yc_c00070{bottom:122.184000pt;}
.y9_c00070{bottom:135.290040pt;}
.ya_c00070{bottom:135.290227pt;}
.yb_c00070{bottom:135.290453pt;}
.y1_c00070{bottom:165.832000pt;}
.y2_c00070{bottom:166.964813pt;}
.y3_c00070{bottom:167.168320pt;}
.y4_c00070{bottom:167.343987pt;}
.y5_c00070{bottom:168.803667pt;}
.y6_c00070{bottom:169.754013pt;}
.y7_c00070{bottom:170.010800pt;}
.y8_c00070{bottom:170.961147pt;}
.h5_c00070{height:37.346491pt;}
.h4_c00070{height:53.352130pt;}
.h2_c00070{height:69.336800pt;}
.h6_c00070{height:74.692982pt;}
.h3_c00070{height:165.341600pt;}
.h0_c00070{height:632.640000pt;}
.h1_c00070{height:632.666667pt;}
.w1_c00070{width:840.666667pt;}
.w0_c00070{width:840.933333pt;}
.x0_c00070{left:0.000000pt;}
.x13_c00070{left:56.453899pt;}
.x14_c00070{left:78.781193pt;}
.x15_c00070{left:96.067931pt;}
.x1_c00070{left:187.353333pt;}
.x9_c00070{left:230.400360pt;}
.x2_c00070{left:300.634667pt;}
.x3_c00070{left:320.985333pt;}
.x4_c00070{left:338.552000pt;}
.x11_c00070{left:368.564905pt;}
.xa_c00070{left:393.368653pt;}
.x12_c00070{left:423.784180pt;}
.xb_c00070{left:483.133627pt;}
.x5_c00070{left:484.520000pt;}
.x6_c00070{left:579.554667pt;}
.xc_c00070{left:586.340000pt;}
.x7_c00070{left:605.233333pt;}
.xd_c00070{left:655.357580pt;}
.x8_c00070{left:700.268000pt;}
.xe_c00070{left:724.265936pt;}
.xf_c00070{left:811.297484pt;}
.x10_c00070{left:833.465960pt;}
}





/* 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_c00071 {
    display:none;
  }
  .loading-indicator_c00071.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00071 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_c00071 { 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_c00071" -> "#page-container .classname_c00071")
 */
.pf_c00071 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00071 { /* 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_c00071.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00071 { /* 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_c00071 { /* 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_c00071 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00071 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00071 {overflow:visible;}
  }
}
.c_c00071 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00071 { /* 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_c00071:after { /* webkit #35443 */
  content: '';
}
.t_c00071:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00071 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 */
}
.__c00071 { /* 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_c00071 { /* info for Javascript */
  display:none;
}
.l_c00071 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00071 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00071 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00071: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_c00071 {
    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_c00071.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00071.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_c00071 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00071{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00071;src:url('chunks/assets/font_cfe63ee56e9e10a97d33a3db.woff2')format("woff");}.ff1_c00071{font-family:ff1_c00071;line-height:1.000000;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;}
.m1_c00071{transform:matrix(0.076485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076485,0.000000,0.000000,0.250000,0,0);}
.m3_c00071{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.mc_c00071{transform:matrix(0.161555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161555,0.000000,0.000000,0.250000,0,0);}
.mb_c00071{transform:matrix(0.179100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179100,0.000000,0.000000,0.250000,0,0);}
.md_c00071{transform:matrix(0.187425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187425,0.000000,0.000000,0.250000,0,0);}
.ma_c00071{transform:matrix(0.200690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200690,0.000000,0.000000,0.250000,0,0);}
.m8_c00071{transform:matrix(0.221370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221370,0.000000,0.000000,0.250000,0,0);}
.m4_c00071{transform:matrix(0.235230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235230,0.000000,0.000000,0.250000,0,0);}
.m0_c00071{transform:matrix(0.258940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258940,0.000000,0.000000,0.250000,0,0);}
.m2_c00071{transform:matrix(0.329315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329315,0.000000,0.000000,0.250000,0,0);}
.m6_c00071{transform:matrix(0.362020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362020,0.000000,0.000000,0.250000,0,0);}
.m7_c00071{transform:matrix(0.822995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.822995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.822995,0.000000,0.000000,0.250000,0,0);}
.m5_c00071{transform:matrix(1.230470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.230470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.230470,0.000000,0.000000,0.250000,0,0);}
.m9_c00071{transform:matrix(1.430205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.430205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.430205,0.000000,0.000000,0.250000,0,0);}
.v0_c00071{vertical-align:0.000000px;}
.ls0_c00071{letter-spacing:0.000000px;}
.sc__c00071{text-shadow:none;}
.sc0_c00071{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__c00071{-webkit-text-stroke:0px transparent;}
.sc0_c00071{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00071{word-spacing:0.000000px;}
.fc0_c00071{color:transparent;}
.fs0_c00071{font-size:18.000000px;}
.fs1_c00071{font-size:30.000000px;}
.fs2_c00071{font-size:60.000000px;}
.fs3_c00071{font-size:72.000000px;}
.y0_c00071{bottom:0.000000px;}
.y2_c00071{bottom:8.370000px;}
.y3_c00071{bottom:8.910000px;}
.y1_c00071{bottom:9.046500px;}
.h2_c00071{height:18.000000px;}
.h3_c00071{height:30.000000px;}
.h4_c00071{height:60.000000px;}
.h5_c00071{height:72.000000px;}
.h0_c00071{height:711.720000px;}
.h1_c00071{height:711.750000px;}
.w1_c00071{width:945.750000px;}
.w0_c00071{width:946.050000px;}
.x0_c00071{left:0.000000px;}
.xe_c00071{left:192.510000px;}
.xd_c00071{left:205.200000px;}
.xc_c00071{left:216.270000px;}
.xb_c00071{left:229.230000px;}
.x5_c00071{left:241.380000px;}
.x6_c00071{left:265.680000px;}
.x7_c00071{left:311.040000px;}
.x4_c00071{left:324.270000px;}
.x8_c00071{left:327.780000px;}
.x3_c00071{left:335.880000px;}
.x9_c00071{left:356.940000px;}
.xa_c00071{left:367.200000px;}
.x1_c00071{left:421.470000px;}
.x2_c00071{left:438.480000px;}
@media print{
.v0_c00071{vertical-align:0.000000pt;}
.ls0_c00071{letter-spacing:0.000000pt;}
.ws0_c00071{word-spacing:0.000000pt;}
.fs0_c00071{font-size:16.000000pt;}
.fs1_c00071{font-size:26.666667pt;}
.fs2_c00071{font-size:53.333333pt;}
.fs3_c00071{font-size:64.000000pt;}
.y0_c00071{bottom:0.000000pt;}
.y2_c00071{bottom:7.440000pt;}
.y3_c00071{bottom:7.920000pt;}
.y1_c00071{bottom:8.041333pt;}
.h2_c00071{height:16.000000pt;}
.h3_c00071{height:26.666667pt;}
.h4_c00071{height:53.333333pt;}
.h5_c00071{height:64.000000pt;}
.h0_c00071{height:632.640000pt;}
.h1_c00071{height:632.666667pt;}
.w1_c00071{width:840.666667pt;}
.w0_c00071{width:840.933333pt;}
.x0_c00071{left:0.000000pt;}
.xe_c00071{left:171.120000pt;}
.xd_c00071{left:182.400000pt;}
.xc_c00071{left:192.240000pt;}
.xb_c00071{left:203.760000pt;}
.x5_c00071{left:214.560000pt;}
.x6_c00071{left:236.160000pt;}
.x7_c00071{left:276.480000pt;}
.x4_c00071{left:288.240000pt;}
.x8_c00071{left:291.360000pt;}
.x3_c00071{left:298.560000pt;}
.x9_c00071{left:317.280000pt;}
.xa_c00071{left:326.400000pt;}
.x1_c00071{left:374.640000pt;}
.x2_c00071{left:389.760000pt;}
}





/* 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_c00072 {
    display:none;
  }
  .loading-indicator_c00072.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00072 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_c00072 { 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_c00072" -> "#page-container .classname_c00072")
 */
.pf_c00072 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00072 { /* 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_c00072.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00072 { /* 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_c00072 { /* 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_c00072 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00072 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00072 {overflow:visible;}
  }
}
.c_c00072 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00072 { /* 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_c00072:after { /* webkit #35443 */
  content: '';
}
.t_c00072:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00072 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 */
}
.__c00072 { /* 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_c00072 { /* info for Javascript */
  display:none;
}
.l_c00072 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00072 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00072 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00072: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_c00072 {
    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_c00072.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00072.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_c00072 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00072{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00072;src:url('chunks/assets/font_74d7e987f08e4505b74f4479.woff2')format("woff");}.ff1_c00072{font-family:ff1_c00072;line-height:1.000000;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;}
.m5_c00072{transform:matrix(0.010140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.010140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.010140,0.000000,0.000000,0.250000,0,0);}
.m2d_c00072{transform:matrix(0.035575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.035575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.035575,0.000000,0.000000,0.250000,0,0);}
.m23_c00072{transform:matrix(0.043560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.043560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.043560,0.000000,0.000000,0.250000,0,0);}
.m3f_c00072{transform:matrix(0.056250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.056250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.056250,0.000000,0.000000,0.250000,0,0);}
.m30_c00072{transform:matrix(0.075165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.075165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.075165,0.000000,0.000000,0.250000,0,0);}
.m1d_c00072{transform:matrix(0.098750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098750,0.000000,0.000000,0.250000,0,0);}
.m24_c00072{transform:matrix(0.167385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167385,0.000000,0.000000,0.250000,0,0);}
.m3e_c00072{transform:matrix(0.173960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173960,0.000000,0.000000,0.250000,0,0);}
.m2e_c00072{transform:matrix(0.189760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189760,0.000000,0.000000,0.250000,0,0);}
.m2f_c00072{transform:matrix(0.201555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201555,0.000000,0.000000,0.250000,0,0);}
.m40_c00072{transform:matrix(0.218660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218660,0.000000,0.000000,0.250000,0,0);}
.m34_c00072{transform:matrix(0.226120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226120,0.000000,0.000000,0.250000,0,0);}
.m20_c00072{transform:matrix(0.233300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233300,0.000000,0.000000,0.250000,0,0);}
.m21_c00072{transform:matrix(0.247315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247315,0.000000,0.000000,0.250000,0,0);}
.m8_c00072{transform:matrix(0.252595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252595,0.000000,0.000000,0.250000,0,0);}
.md_c00072{transform:matrix(0.254045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254045,0.000000,0.000000,0.250000,0,0);}
.m28_c00072{transform:matrix(0.274549,-0.004118,0.003750,0.249972,0,0);-ms-transform:matrix(0.274549,-0.004118,0.003750,0.249972,0,0);-webkit-transform:matrix(0.274549,-0.004118,0.003750,0.249972,0,0);}
.m1b_c00072{transform:matrix(0.294810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294810,0.000000,0.000000,0.250000,0,0);}
.m22_c00072{transform:matrix(0.294875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294875,0.000000,0.000000,0.250000,0,0);}
.m29_c00072{transform:matrix(0.305456,-0.004582,0.003750,0.249972,0,0);-ms-transform:matrix(0.305456,-0.004582,0.003750,0.249972,0,0);-webkit-transform:matrix(0.305456,-0.004582,0.003750,0.249972,0,0);}
.m25_c00072{transform:matrix(0.328968,-0.004935,0.003750,0.249972,0,0);-ms-transform:matrix(0.328968,-0.004935,0.003750,0.249972,0,0);-webkit-transform:matrix(0.328968,-0.004935,0.003750,0.249972,0,0);}
.m2a_c00072{transform:matrix(0.330028,-0.004950,0.003750,0.249972,0,0);-ms-transform:matrix(0.330028,-0.004950,0.003750,0.249972,0,0);-webkit-transform:matrix(0.330028,-0.004950,0.003750,0.249972,0,0);}
.mb_c00072{transform:matrix(0.337225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337225,0.000000,0.000000,0.250000,0,0);}
.m2_c00072{transform:matrix(0.343390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343390,0.000000,0.000000,0.250000,0,0);}
.mc_c00072{transform:matrix(0.346475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346475,0.000000,0.000000,0.250000,0,0);}
.m18_c00072{transform:matrix(0.348010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348010,0.000000,0.000000,0.250000,0,0);}
.m10_c00072{transform:matrix(0.349655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349655,0.000000,0.000000,0.250000,0,0);}
.m11_c00072{transform:matrix(0.363140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363140,0.000000,0.000000,0.250000,0,0);}
.m12_c00072{transform:matrix(0.367805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367805,0.000000,0.000000,0.250000,0,0);}
.m1a_c00072{transform:matrix(0.386290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386290,0.000000,0.000000,0.250000,0,0);}
.m32_c00072{transform:matrix(0.386845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386845,0.000000,0.000000,0.250000,0,0);}
.m13_c00072{transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);}
.m3_c00072{transform:matrix(0.413160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413160,0.000000,0.000000,0.250000,0,0);}
.m37_c00072{transform:matrix(0.415785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415785,0.000000,0.000000,0.250000,0,0);}
.m31_c00072{transform:matrix(0.425000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00072{transform:matrix(0.442185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442185,0.000000,0.000000,0.250000,0,0);}
.m0_c00072{transform:matrix(0.442490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442490,0.000000,0.000000,0.250000,0,0);}
.m19_c00072{transform:matrix(0.445375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445375,0.000000,0.000000,0.250000,0,0);}
.me_c00072{transform:matrix(0.458515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458515,0.000000,0.000000,0.250000,0,0);}
.m1e_c00072{transform:matrix(0.517060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517060,0.000000,0.000000,0.250000,0,0);}
.m6_c00072{transform:matrix(0.527840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527840,0.000000,0.000000,0.250000,0,0);}
.m14_c00072{transform:matrix(0.552585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552585,0.000000,0.000000,0.250000,0,0);}
.m4_c00072{transform:matrix(0.579740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579740,0.000000,0.000000,0.250000,0,0);}
.m15_c00072{transform:matrix(0.608485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608485,0.000000,0.000000,0.250000,0,0);}
.mf_c00072{transform:matrix(0.610905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.610905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.610905,0.000000,0.000000,0.250000,0,0);}
.ma_c00072{transform:matrix(0.626385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.626385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.626385,0.000000,0.000000,0.250000,0,0);}
.m38_c00072{transform:matrix(0.629005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.629005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.629005,0.000000,0.000000,0.250000,0,0);}
.m3b_c00072{transform:matrix(0.664800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.664800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.664800,0.000000,0.000000,0.250000,0,0);}
.m7_c00072{transform:matrix(0.699190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699190,0.000000,0.000000,0.250000,0,0);}
.m2c_c00072{transform:matrix(0.740852,-0.011113,0.003750,0.249972,0,0);-ms-transform:matrix(0.740852,-0.011113,0.003750,0.249972,0,0);-webkit-transform:matrix(0.740852,-0.011113,0.003750,0.249972,0,0);}
.m39_c00072{transform:matrix(0.747070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.747070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.747070,0.000000,0.000000,0.250000,0,0);}
.m3d_c00072{transform:matrix(0.799065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.799065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.799065,0.000000,0.000000,0.250000,0,0);}
.m1c_c00072{transform:matrix(0.828690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.828690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.828690,0.000000,0.000000,0.250000,0,0);}
.m26_c00072{transform:matrix(0.853689,-0.012805,0.003750,0.249972,0,0);-ms-transform:matrix(0.853689,-0.012805,0.003750,0.249972,0,0);-webkit-transform:matrix(0.853689,-0.012805,0.003750,0.249972,0,0);}
.m27_c00072{transform:matrix(0.882046,-0.013231,0.003750,0.249972,0,0);-ms-transform:matrix(0.882046,-0.013231,0.003750,0.249972,0,0);-webkit-transform:matrix(0.882046,-0.013231,0.003750,0.249972,0,0);}
.m36_c00072{transform:matrix(0.886185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.886185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.886185,0.000000,0.000000,0.250000,0,0);}
.m2b_c00072{transform:matrix(0.896269,-0.013444,0.003750,0.249972,0,0);-ms-transform:matrix(0.896269,-0.013444,0.003750,0.249972,0,0);-webkit-transform:matrix(0.896269,-0.013444,0.003750,0.249972,0,0);}
.m41_c00072{transform:matrix(0.988865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.988865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.988865,0.000000,0.000000,0.250000,0,0);}
.m1_c00072{transform:matrix(1.004140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.004140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.004140,0.000000,0.000000,0.250000,0,0);}
.m3a_c00072{transform:matrix(1.117380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.117380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.117380,0.000000,0.000000,0.250000,0,0);}
.m35_c00072{transform:matrix(1.215885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.215885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.215885,0.000000,0.000000,0.250000,0,0);}
.m3c_c00072{transform:matrix(1.352600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.352600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.352600,0.000000,0.000000,0.250000,0,0);}
.m16_c00072{transform:matrix(1.693255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.693255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.693255,0.000000,0.000000,0.250000,0,0);}
.m9_c00072{transform:matrix(2.053270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.053270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.053270,0.000000,0.000000,0.250000,0,0);}
.m17_c00072{transform:matrix(2.399435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.399435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.399435,0.000000,0.000000,0.250000,0,0);}
.m33_c00072{transform:matrix(7.065565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(7.065565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(7.065565,0.000000,0.000000,0.250000,0,0);}
.v0_c00072{vertical-align:0.000000px;}
.ls0_c00072{letter-spacing:0.000000px;}
.sc__c00072{text-shadow:none;}
.sc0_c00072{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__c00072{-webkit-text-stroke:0px transparent;}
.sc0_c00072{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00072{word-spacing:0.000000px;}
.fc0_c00072{color:transparent;}
.fs6_c00072{font-size:24.000000px;}
.fs7_c00072{font-size:36.000000px;}
.fs1_c00072{font-size:66.000000px;}
.fs5_c00072{font-size:84.009449px;}
.fs2_c00072{font-size:90.000000px;}
.fs0_c00072{font-size:96.000000px;}
.fs3_c00072{font-size:108.000000px;}
.fs4_c00072{font-size:174.000000px;}
.y0_c00072{bottom:0.000000px;}
.y18_c00072{bottom:0.838500px;}
.y17_c00072{bottom:9.754500px;}
.ye_c00072{bottom:36.186000px;}
.yf_c00072{bottom:36.827790px;}
.y10_c00072{bottom:38.774310px;}
.y11_c00072{bottom:40.850588px;}
.y12_c00072{bottom:41.725298px;}
.y13_c00072{bottom:42.243630px;}
.y14_c00072{bottom:42.863393px;}
.y15_c00072{bottom:44.580773px;}
.y16_c00072{bottom:148.230000px;}
.yd_c00072{bottom:159.360000px;}
.yc_c00072{bottom:196.272000px;}
.yb_c00072{bottom:226.750500px;}
.ya_c00072{bottom:261.358500px;}
.y9_c00072{bottom:262.246500px;}
.y8_c00072{bottom:263.100000px;}
.y7_c00072{bottom:265.005000px;}
.y6_c00072{bottom:266.553000px;}
.y5_c00072{bottom:267.181500px;}
.y4_c00072{bottom:267.687000px;}
.y3_c00072{bottom:268.923000px;}
.y2_c00072{bottom:296.667000px;}
.y1_c00072{bottom:331.560000px;}
.h8_c00072{height:24.000000px;}
.h9_c00072{height:36.000000px;}
.h3_c00072{height:66.000000px;}
.h7_c00072{height:84.009449px;}
.h4_c00072{height:90.000000px;}
.h2_c00072{height:96.000000px;}
.h5_c00072{height:108.000000px;}
.h6_c00072{height:174.000000px;}
.h0_c00072{height:711.720000px;}
.h1_c00072{height:711.750000px;}
.w1_c00072{width:945.750000px;}
.w0_c00072{width:946.050000px;}
.x0_c00072{left:0.000000px;}
.x10_c00072{left:43.797000px;}
.x1_c00072{left:92.880000px;}
.x31_c00072{left:107.730000px;}
.x11_c00072{left:167.434500px;}
.x25_c00072{left:172.954500px;}
.x2_c00072{left:190.350000px;}
.x12_c00072{left:217.920000px;}
.x1e_c00072{left:274.323000px;}
.x13_c00072{left:280.824000px;}
.x19_c00072{left:298.893000px;}
.x26_c00072{left:311.373000px;}
.x9_c00072{left:321.840000px;}
.x1f_c00072{left:325.623000px;}
.xa_c00072{left:360.990000px;}
.x32_c00072{left:363.150000px;}
.x27_c00072{left:369.687000px;}
.x33_c00072{left:383.400000px;}
.x28_c00072{left:404.242500px;}
.x1a_c00072{left:419.313000px;}
.x3_c00072{left:425.520000px;}
.x34_c00072{left:433.080000px;}
.x14_c00072{left:435.640500px;}
.x29_c00072{left:445.560000px;}
.x18_c00072{left:472.503000px;}
.x2c_c00072{left:474.120000px;}
.x4_c00072{left:480.600000px;}
.x20_c00072{left:534.873000px;}
.x2d_c00072{left:535.950000px;}
.x35_c00072{left:544.860000px;}
.x2a_c00072{left:560.052000px;}
.x1b_c00072{left:575.373000px;}
.x36_c00072{left:589.140000px;}
.x5_c00072{left:590.760000px;}
.x21_c00072{left:622.353000px;}
.x15_c00072{left:626.082000px;}
.xb_c00072{left:656.370000px;}
.x6_c00072{left:692.280000px;}
.x37_c00072{left:694.980000px;}
.x1c_c00072{left:707.943000px;}
.x16_c00072{left:711.493500px;}
.xc_c00072{left:745.740000px;}
.x1d_c00072{left:747.093000px;}
.x7_c00072{left:751.680000px;}
.x2e_c00072{left:765.450000px;}
.xd_c00072{left:772.200000px;}
.x17_c00072{left:800.253000px;}
.xe_c00072{left:819.450000px;}
.x38_c00072{left:825.930000px;}
.x22_c00072{left:838.083000px;}
.x39_c00072{left:855.090000px;}
.xf_c00072{left:858.870000px;}
.x3a_c00072{left:880.740000px;}
.x2f_c00072{left:887.490000px;}
.x8_c00072{left:892.890000px;}
.x3b_c00072{left:906.120000px;}
.x3c_c00072{left:913.140000px;}
.x24_c00072{left:918.273000px;}
.x23_c00072{left:919.353000px;}
.x30_c00072{left:925.830000px;}
.x2b_c00072{left:930.960000px;}
@media print{
.v0_c00072{vertical-align:0.000000pt;}
.ls0_c00072{letter-spacing:0.000000pt;}
.ws0_c00072{word-spacing:0.000000pt;}
.fs6_c00072{font-size:21.333333pt;}
.fs7_c00072{font-size:32.000000pt;}
.fs1_c00072{font-size:58.666667pt;}
.fs5_c00072{font-size:74.675066pt;}
.fs2_c00072{font-size:80.000000pt;}
.fs0_c00072{font-size:85.333333pt;}
.fs3_c00072{font-size:96.000000pt;}
.fs4_c00072{font-size:154.666667pt;}
.y0_c00072{bottom:0.000000pt;}
.y18_c00072{bottom:0.745333pt;}
.y17_c00072{bottom:8.670667pt;}
.ye_c00072{bottom:32.165333pt;}
.yf_c00072{bottom:32.735813pt;}
.y10_c00072{bottom:34.466053pt;}
.y11_c00072{bottom:36.311633pt;}
.y12_c00072{bottom:37.089153pt;}
.y13_c00072{bottom:37.549893pt;}
.y14_c00072{bottom:38.100793pt;}
.y15_c00072{bottom:39.627353pt;}
.y16_c00072{bottom:131.760000pt;}
.yd_c00072{bottom:141.653333pt;}
.yc_c00072{bottom:174.464000pt;}
.yb_c00072{bottom:201.556000pt;}
.ya_c00072{bottom:232.318667pt;}
.y9_c00072{bottom:233.108000pt;}
.y8_c00072{bottom:233.866667pt;}
.y7_c00072{bottom:235.560000pt;}
.y6_c00072{bottom:236.936000pt;}
.y5_c00072{bottom:237.494667pt;}
.y4_c00072{bottom:237.944000pt;}
.y3_c00072{bottom:239.042667pt;}
.y2_c00072{bottom:263.704000pt;}
.y1_c00072{bottom:294.720000pt;}
.h8_c00072{height:21.333333pt;}
.h9_c00072{height:32.000000pt;}
.h3_c00072{height:58.666667pt;}
.h7_c00072{height:74.675066pt;}
.h4_c00072{height:80.000000pt;}
.h2_c00072{height:85.333333pt;}
.h5_c00072{height:96.000000pt;}
.h6_c00072{height:154.666667pt;}
.h0_c00072{height:632.640000pt;}
.h1_c00072{height:632.666667pt;}
.w1_c00072{width:840.666667pt;}
.w0_c00072{width:840.933333pt;}
.x0_c00072{left:0.000000pt;}
.x10_c00072{left:38.930667pt;}
.x1_c00072{left:82.560000pt;}
.x31_c00072{left:95.760000pt;}
.x11_c00072{left:148.830667pt;}
.x25_c00072{left:153.737333pt;}
.x2_c00072{left:169.200000pt;}
.x12_c00072{left:193.706667pt;}
.x1e_c00072{left:243.842667pt;}
.x13_c00072{left:249.621333pt;}
.x19_c00072{left:265.682667pt;}
.x26_c00072{left:276.776000pt;}
.x9_c00072{left:286.080000pt;}
.x1f_c00072{left:289.442667pt;}
.xa_c00072{left:320.880000pt;}
.x32_c00072{left:322.800000pt;}
.x27_c00072{left:328.610667pt;}
.x33_c00072{left:340.800000pt;}
.x28_c00072{left:359.326667pt;}
.x1a_c00072{left:372.722667pt;}
.x3_c00072{left:378.240000pt;}
.x34_c00072{left:384.960000pt;}
.x14_c00072{left:387.236000pt;}
.x29_c00072{left:396.053333pt;}
.x18_c00072{left:420.002667pt;}
.x2c_c00072{left:421.440000pt;}
.x4_c00072{left:427.200000pt;}
.x20_c00072{left:475.442667pt;}
.x2d_c00072{left:476.400000pt;}
.x35_c00072{left:484.320000pt;}
.x2a_c00072{left:497.824000pt;}
.x1b_c00072{left:511.442667pt;}
.x36_c00072{left:523.680000pt;}
.x5_c00072{left:525.120000pt;}
.x21_c00072{left:553.202667pt;}
.x15_c00072{left:556.517333pt;}
.xb_c00072{left:583.440000pt;}
.x6_c00072{left:615.360000pt;}
.x37_c00072{left:617.760000pt;}
.x1c_c00072{left:629.282667pt;}
.x16_c00072{left:632.438667pt;}
.xc_c00072{left:662.880000pt;}
.x1d_c00072{left:664.082667pt;}
.x7_c00072{left:668.160000pt;}
.x2e_c00072{left:680.400000pt;}
.xd_c00072{left:686.400000pt;}
.x17_c00072{left:711.336000pt;}
.xe_c00072{left:728.400000pt;}
.x38_c00072{left:734.160000pt;}
.x22_c00072{left:744.962667pt;}
.x39_c00072{left:760.080000pt;}
.xf_c00072{left:763.440000pt;}
.x3a_c00072{left:782.880000pt;}
.x2f_c00072{left:788.880000pt;}
.x8_c00072{left:793.680000pt;}
.x3b_c00072{left:805.440000pt;}
.x3c_c00072{left:811.680000pt;}
.x24_c00072{left:816.242667pt;}
.x23_c00072{left:817.202667pt;}
.x30_c00072{left:822.960000pt;}
.x2b_c00072{left:827.520000pt;}
}





/* 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_c00073 {
    display:none;
  }
  .loading-indicator_c00073.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00073 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_c00073 { 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_c00073" -> "#page-container .classname_c00073")
 */
.pf_c00073 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00073 { /* 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_c00073.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00073 { /* 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_c00073 { /* 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_c00073 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00073 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00073 {overflow:visible;}
  }
}
.c_c00073 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00073 { /* 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_c00073:after { /* webkit #35443 */
  content: '';
}
.t_c00073:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00073 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 */
}
.__c00073 { /* 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_c00073 { /* info for Javascript */
  display:none;
}
.l_c00073 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00073 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00073 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00073: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_c00073 {
    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_c00073.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00073.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_c00073 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00073{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00073;src:url('chunks/assets/font_fc0772ff308ae5fbe034c379.woff2')format("woff");}.ff1_c00073{font-family:ff1_c00073;line-height:1.000000;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;}
.m0_c00073{transform:matrix(0.370475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370475,0.000000,0.000000,0.250000,0,0);}
.v0_c00073{vertical-align:0.000000px;}
.ls0_c00073{letter-spacing:0.000000px;}
.sc__c00073{text-shadow:none;}
.sc0_c00073{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__c00073{-webkit-text-stroke:0px transparent;}
.sc0_c00073{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00073{word-spacing:0.000000px;}
.fc0_c00073{color:transparent;}
.fs0_c00073{font-size:18.000000px;}
.y0_c00073{bottom:0.000000px;}
.h2_c00073{height:18.000000px;}
.h0_c00073{height:711.720000px;}
.h1_c00073{height:711.750000px;}
.w1_c00073{width:945.750000px;}
.w0_c00073{width:946.050000px;}
.x0_c00073{left:0.000000px;}
.x1_c00073{left:382.590000px;}
@media print{
.v0_c00073{vertical-align:0.000000pt;}
.ls0_c00073{letter-spacing:0.000000pt;}
.ws0_c00073{word-spacing:0.000000pt;}
.fs0_c00073{font-size:16.000000pt;}
.y0_c00073{bottom:0.000000pt;}
.h2_c00073{height:16.000000pt;}
.h0_c00073{height:632.640000pt;}
.h1_c00073{height:632.666667pt;}
.w1_c00073{width:840.666667pt;}
.w0_c00073{width:840.933333pt;}
.x0_c00073{left:0.000000pt;}
.x1_c00073{left:340.080000pt;}
}





/* 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_c00074 {
    display:none;
  }
  .loading-indicator_c00074.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00074 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_c00074 { 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_c00074" -> "#page-container .classname_c00074")
 */
.pf_c00074 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00074 { /* 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_c00074.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00074 { /* 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_c00074 { /* 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_c00074 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00074 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00074 {overflow:visible;}
  }
}
.c_c00074 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00074 { /* 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_c00074:after { /* webkit #35443 */
  content: '';
}
.t_c00074:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00074 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 */
}
.__c00074 { /* 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_c00074 { /* info for Javascript */
  display:none;
}
.l_c00074 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00074 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00074 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00074: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_c00074 {
    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_c00074.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00074.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_c00074 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00074{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00074;src:url('chunks/assets/font_97998a297af8da24a717a89b.woff2')format("woff");}.ff1_c00074{font-family:ff1_c00074;line-height:1.000000;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;}
.m29_c00074{transform:matrix(0.006759,0.000095,-0.003500,0.249976,0,0);-ms-transform:matrix(0.006759,0.000095,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.006759,0.000095,-0.003500,0.249976,0,0);}
.m3_c00074{transform:matrix(0.122788,0.002824,-0.005748,0.249934,0,0);-ms-transform:matrix(0.122788,0.002824,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.122788,0.002824,-0.005748,0.249934,0,0);}
.m4_c00074{transform:matrix(0.123037,0.002830,-0.005748,0.249934,0,0);-ms-transform:matrix(0.123037,0.002830,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.123037,0.002830,-0.005748,0.249934,0,0);}
.m11_c00074{transform:matrix(0.137079,0.003153,-0.005748,0.249934,0,0);-ms-transform:matrix(0.137079,0.003153,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.137079,0.003153,-0.005748,0.249934,0,0);}
.m12_c00074{transform:matrix(0.184711,0.004248,-0.005748,0.249934,0,0);-ms-transform:matrix(0.184711,0.004248,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.184711,0.004248,-0.005748,0.249934,0,0);}
.m2_c00074{transform:matrix(0.186381,0.004287,-0.005748,0.249934,0,0);-ms-transform:matrix(0.186381,0.004287,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.186381,0.004287,-0.005748,0.249934,0,0);}
.m2b_c00074{transform:matrix(0.237622,0.003327,-0.003500,0.249976,0,0);-ms-transform:matrix(0.237622,0.003327,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.237622,0.003327,-0.003500,0.249976,0,0);}
.m2a_c00074{transform:matrix(0.246351,0.003449,-0.003500,0.249976,0,0);-ms-transform:matrix(0.246351,0.003449,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.246351,0.003449,-0.003500,0.249976,0,0);}
.m2c_c00074{transform:matrix(0.259995,0.003640,-0.003500,0.249976,0,0);-ms-transform:matrix(0.259995,0.003640,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.259995,0.003640,-0.003500,0.249976,0,0);}
.me_c00074{transform:matrix(0.269334,0.006195,-0.005748,0.249934,0,0);-ms-transform:matrix(0.269334,0.006195,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.269334,0.006195,-0.005748,0.249934,0,0);}
.m1e_c00074{transform:matrix(0.285737,0.006000,-0.005249,0.249945,0,0);-ms-transform:matrix(0.285737,0.006000,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.285737,0.006000,-0.005249,0.249945,0,0);}
.m2f_c00074{transform:matrix(0.295946,0.004143,-0.003500,0.249976,0,0);-ms-transform:matrix(0.295946,0.004143,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.295946,0.004143,-0.003500,0.249976,0,0);}
.m17_c00074{transform:matrix(0.308317,0.006475,-0.005249,0.249945,0,0);-ms-transform:matrix(0.308317,0.006475,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.308317,0.006475,-0.005249,0.249945,0,0);}
.m30_c00074{transform:matrix(0.322065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322065,0.000000,0.000000,0.250000,0,0);}
.mf_c00074{transform:matrix(0.327898,0.007542,-0.005748,0.249934,0,0);-ms-transform:matrix(0.327898,0.007542,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.327898,0.007542,-0.005748,0.249934,0,0);}
.m21_c00074{transform:matrix(0.334217,0.004679,-0.003500,0.249976,0,0);-ms-transform:matrix(0.334217,0.004679,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.334217,0.004679,-0.003500,0.249976,0,0);}
.md_c00074{transform:matrix(0.335956,0.007727,-0.005748,0.249934,0,0);-ms-transform:matrix(0.335956,0.007727,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.335956,0.007727,-0.005748,0.249934,0,0);}
.m20_c00074{transform:matrix(0.343666,0.004811,-0.003500,0.249976,0,0);-ms-transform:matrix(0.343666,0.004811,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.343666,0.004811,-0.003500,0.249976,0,0);}
.m18_c00074{transform:matrix(0.345204,0.007249,-0.005249,0.249945,0,0);-ms-transform:matrix(0.345204,0.007249,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.345204,0.007249,-0.005249,0.249945,0,0);}
.m26_c00074{transform:matrix(0.359350,0.005031,-0.003500,0.249976,0,0);-ms-transform:matrix(0.359350,0.005031,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.359350,0.005031,-0.003500,0.249976,0,0);}
.m13_c00074{transform:matrix(0.382096,0.008024,-0.005249,0.249945,0,0);-ms-transform:matrix(0.382096,0.008024,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.382096,0.008024,-0.005249,0.249945,0,0);}
.m1f_c00074{transform:matrix(0.384395,0.008072,-0.005249,0.249945,0,0);-ms-transform:matrix(0.384395,0.008072,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.384395,0.008072,-0.005249,0.249945,0,0);}
.mc_c00074{transform:matrix(0.390672,0.008985,-0.005748,0.249934,0,0);-ms-transform:matrix(0.390672,0.008985,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.390672,0.008985,-0.005748,0.249934,0,0);}
.m8_c00074{transform:matrix(0.390872,0.008990,-0.005748,0.249934,0,0);-ms-transform:matrix(0.390872,0.008990,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.390872,0.008990,-0.005748,0.249934,0,0);}
.m19_c00074{transform:matrix(0.400427,0.008409,-0.005249,0.249945,0,0);-ms-transform:matrix(0.400427,0.008409,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.400427,0.008409,-0.005249,0.249945,0,0);}
.m6_c00074{transform:matrix(0.432296,0.009943,-0.005748,0.249934,0,0);-ms-transform:matrix(0.432296,0.009943,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.432296,0.009943,-0.005748,0.249934,0,0);}
.ma_c00074{transform:matrix(0.435015,0.010005,-0.005748,0.249934,0,0);-ms-transform:matrix(0.435015,0.010005,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.435015,0.010005,-0.005748,0.249934,0,0);}
.m24_c00074{transform:matrix(0.440227,0.006163,-0.003500,0.249976,0,0);-ms-transform:matrix(0.440227,0.006163,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.440227,0.006163,-0.003500,0.249976,0,0);}
.m0_c00074{transform:matrix(0.444862,0.010232,-0.005748,0.249934,0,0);-ms-transform:matrix(0.444862,0.010232,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.444862,0.010232,-0.005748,0.249934,0,0);}
.mb_c00074{transform:matrix(0.459993,0.010580,-0.005748,0.249934,0,0);-ms-transform:matrix(0.459993,0.010580,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.459993,0.010580,-0.005748,0.249934,0,0);}
.m22_c00074{transform:matrix(0.461405,0.006460,-0.003500,0.249976,0,0);-ms-transform:matrix(0.461405,0.006460,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.461405,0.006460,-0.003500,0.249976,0,0);}
.m1c_c00074{transform:matrix(0.466627,0.009799,-0.005249,0.249945,0,0);-ms-transform:matrix(0.466627,0.009799,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.466627,0.009799,-0.005249,0.249945,0,0);}
.m7_c00074{transform:matrix(0.497958,0.011453,-0.005748,0.249934,0,0);-ms-transform:matrix(0.497958,0.011453,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.497958,0.011453,-0.005748,0.249934,0,0);}
.m2d_c00074{transform:matrix(0.511030,0.007154,-0.003500,0.249976,0,0);-ms-transform:matrix(0.511030,0.007154,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.511030,0.007154,-0.003500,0.249976,0,0);}
.m1a_c00074{transform:matrix(0.538556,0.011310,-0.005249,0.249945,0,0);-ms-transform:matrix(0.538556,0.011310,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.538556,0.011310,-0.005249,0.249945,0,0);}
.m23_c00074{transform:matrix(0.553171,0.007744,-0.003500,0.249976,0,0);-ms-transform:matrix(0.553171,0.007744,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.553171,0.007744,-0.003500,0.249976,0,0);}
.m27_c00074{transform:matrix(0.568664,0.007961,-0.003500,0.249976,0,0);-ms-transform:matrix(0.568664,0.007961,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.568664,0.007961,-0.003500,0.249976,0,0);}
.m10_c00074{transform:matrix(0.576862,0.013268,-0.005748,0.249934,0,0);-ms-transform:matrix(0.576862,0.013268,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.576862,0.013268,-0.005748,0.249934,0,0);}
.m25_c00074{transform:matrix(0.607450,0.008504,-0.003500,0.249976,0,0);-ms-transform:matrix(0.607450,0.008504,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.607450,0.008504,-0.003500,0.249976,0,0);}
.m1b_c00074{transform:matrix(0.613525,0.012884,-0.005249,0.249945,0,0);-ms-transform:matrix(0.613525,0.012884,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.613525,0.012884,-0.005249,0.249945,0,0);}
.m28_c00074{transform:matrix(0.622589,0.008716,-0.003500,0.249976,0,0);-ms-transform:matrix(0.622589,0.008716,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.622589,0.008716,-0.003500,0.249976,0,0);}
.m1d_c00074{transform:matrix(0.627842,0.013185,-0.005249,0.249945,0,0);-ms-transform:matrix(0.627842,0.013185,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.627842,0.013185,-0.005249,0.249945,0,0);}
.m2e_c00074{transform:matrix(0.639107,0.008948,-0.003500,0.249976,0,0);-ms-transform:matrix(0.639107,0.008948,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.639107,0.008948,-0.003500,0.249976,0,0);}
.m1_c00074{transform:matrix(0.855069,0.019667,-0.005748,0.249934,0,0);-ms-transform:matrix(0.855069,0.019667,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.855069,0.019667,-0.005748,0.249934,0,0);}
.m31_c00074{transform:matrix(0.912415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.912415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.912415,0.000000,0.000000,0.250000,0,0);}
.m9_c00074{transform:matrix(0.941166,0.021647,-0.005748,0.249934,0,0);-ms-transform:matrix(0.941166,0.021647,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.941166,0.021647,-0.005748,0.249934,0,0);}
.m15_c00074{transform:matrix(1.010677,0.021224,-0.005249,0.249945,0,0);-ms-transform:matrix(1.010677,0.021224,-0.005249,0.249945,0,0);-webkit-transform:matrix(1.010677,0.021224,-0.005249,0.249945,0,0);}
.m16_c00074{transform:matrix(1.033362,0.021701,-0.005249,0.249945,0,0);-ms-transform:matrix(1.033362,0.021701,-0.005249,0.249945,0,0);-webkit-transform:matrix(1.033362,0.021701,-0.005249,0.249945,0,0);}
.m5_c00074{transform:matrix(1.160988,0.026703,-0.005748,0.249934,0,0);-ms-transform:matrix(1.160988,0.026703,-0.005748,0.249934,0,0);-webkit-transform:matrix(1.160988,0.026703,-0.005748,0.249934,0,0);}
.m14_c00074{transform:matrix(1.414613,0.029707,-0.005249,0.249945,0,0);-ms-transform:matrix(1.414613,0.029707,-0.005249,0.249945,0,0);-webkit-transform:matrix(1.414613,0.029707,-0.005249,0.249945,0,0);}
.m32_c00074{transform:matrix(1.982780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.982780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.982780,0.000000,0.000000,0.250000,0,0);}
.v0_c00074{vertical-align:0.000000px;}
.ls0_c00074{letter-spacing:0.000000px;}
.sc__c00074{text-shadow:none;}
.sc0_c00074{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__c00074{-webkit-text-stroke:0px transparent;}
.sc0_c00074{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00074{word-spacing:0.000000px;}
.fc0_c00074{color:transparent;}
.fs7_c00074{font-size:18.000000px;}
.fs2_c00074{font-size:60.013229px;}
.fs3_c00074{font-size:78.017197px;}
.fs0_c00074{font-size:84.022215px;}
.fs1_c00074{font-size:90.023802px;}
.fs4_c00074{font-size:96.009408px;}
.fs6_c00074{font-size:126.012347px;}
.fs5_c00074{font-size:144.014111px;}
.y0_c00074{bottom:0.000000px;}
.y32_c00074{bottom:21.855000px;}
.y31_c00074{bottom:51.300000px;}
.y30_c00074{bottom:52.795452px;}
.y2f_c00074{bottom:54.461697px;}
.y2e_c00074{bottom:55.434186px;}
.y2d_c00074{bottom:57.155976px;}
.y2c_c00074{bottom:57.516000px;}
.y2b_c00074{bottom:241.467018px;}
.y2a_c00074{bottom:248.931831px;}
.y29_c00074{bottom:325.122450px;}
.y28_c00074{bottom:327.927147px;}
.y27_c00074{bottom:328.801461px;}
.y26_c00074{bottom:329.958036px;}
.y25_c00074{bottom:331.567392px;}
.y24_c00074{bottom:334.236240px;}
.y23_c00074{bottom:335.192496px;}
.y22_c00074{bottom:336.510183px;}
.y21_c00074{bottom:337.251000px;}
.y20_c00074{bottom:458.409691px;}
.y1f_c00074{bottom:459.753481px;}
.y1e_c00074{bottom:461.435802px;}
.y1d_c00074{bottom:463.711204px;}
.y1c_c00074{bottom:467.078428px;}
.y1b_c00074{bottom:470.627061px;}
.y1a_c00074{bottom:471.825226px;}
.y19_c00074{bottom:475.112062px;}
.y18_c00074{bottom:477.113131px;}
.y17_c00074{bottom:498.000376px;}
.y16_c00074{bottom:501.035181px;}
.y15_c00074{bottom:504.841357px;}
.y14_c00074{bottom:508.942500px;}
.y13_c00074{bottom:528.547880px;}
.y12_c00074{bottom:541.335305px;}
.y11_c00074{bottom:543.242257px;}
.y10_c00074{bottom:545.853562px;}
.yf_c00074{bottom:547.035947px;}
.y5_c00074{bottom:563.746330px;}
.y6_c00074{bottom:563.936635px;}
.y7_c00074{bottom:564.473383px;}
.y8_c00074{bottom:564.921147px;}
.y9_c00074{bottom:565.637278px;}
.ya_c00074{bottom:565.899608px;}
.yb_c00074{bottom:566.797511px;}
.yc_c00074{bottom:567.108159px;}
.yd_c00074{bottom:567.523497px;}
.ye_c00074{bottom:567.856489px;}
.y4_c00074{bottom:602.061429px;}
.y3_c00074{bottom:604.723449px;}
.y2_c00074{bottom:615.154145px;}
.y1_c00074{bottom:619.108500px;}
.h9_c00074{height:18.000000px;}
.h4_c00074{height:60.013229px;}
.h5_c00074{height:78.017197px;}
.h2_c00074{height:84.022215px;}
.h3_c00074{height:90.023802px;}
.h6_c00074{height:96.009408px;}
.h8_c00074{height:126.012347px;}
.h7_c00074{height:144.014111px;}
.h0_c00074{height:711.720000px;}
.h1_c00074{height:711.750000px;}
.w1_c00074{width:945.750000px;}
.w0_c00074{width:946.050000px;}
.x0_c00074{left:0.000000px;}
.x28_c00074{left:31.939500px;}
.x17_c00074{left:42.543624px;}
.x29_c00074{left:57.655500px;}
.x1e_c00074{left:95.745000px;}
.x5_c00074{left:116.111980px;}
.xe_c00074{left:132.644586px;}
.x18_c00074{left:137.832624px;}
.x2d_c00074{left:147.420000px;}
.x6_c00074{left:154.101441px;}
.x2a_c00074{left:180.640500px;}
.xf_c00074{left:184.052586px;}
.x1f_c00074{left:189.865500px;}
.x1_c00074{left:197.181000px;}
.x2e_c00074{left:199.260000px;}
.x2b_c00074{left:250.104000px;}
.x20_c00074{left:258.169500px;}
.x7_c00074{left:261.594613px;}
.x13_c00074{left:277.917000px;}
.x19_c00074{left:294.348624px;}
.x10_c00074{left:297.587586px;}
.x8_c00074{left:351.227797px;}
.x2_c00074{left:369.109500px;}
.x11_c00074{left:380.498586px;}
.x2c_c00074{left:444.960000px;}
.x21_c00074{left:448.801500px;}
.x14_c00074{left:473.209500px;}
.x9_c00074{left:494.379447px;}
.x1a_c00074{left:520.386624px;}
.xa_c00074{left:546.790188px;}
.x22_c00074{left:563.755500px;}
.x26_c00074{left:590.534103px;}
.x23_c00074{left:646.368000px;}
.x15_c00074{left:654.456000px;}
.x1b_c00074{left:680.730624px;}
.x24_c00074{left:708.819000px;}
.xb_c00074{left:726.344763px;}
.xc_c00074{left:788.465248px;}
.x16_c00074{left:798.970500px;}
.x3_c00074{left:822.618000px;}
.x1c_c00074{left:869.193624px;}
.xd_c00074{left:871.612758px;}
.x25_c00074{left:909.154500px;}
.x27_c00074{left:929.875614px;}
.x1d_c00074{left:933.183624px;}
.x12_c00074{left:936.473586px;}
.x4_c00074{left:938.358000px;}
@media print{
.v0_c00074{vertical-align:0.000000pt;}
.ls0_c00074{letter-spacing:0.000000pt;}
.ws0_c00074{word-spacing:0.000000pt;}
.fs7_c00074{font-size:16.000000pt;}
.fs2_c00074{font-size:53.345092pt;}
.fs3_c00074{font-size:69.348620pt;}
.fs0_c00074{font-size:74.686413pt;}
.fs1_c00074{font-size:80.021157pt;}
.fs4_c00074{font-size:85.341696pt;}
.fs6_c00074{font-size:112.010975pt;}
.fs5_c00074{font-size:128.012543pt;}
.y0_c00074{bottom:0.000000pt;}
.y32_c00074{bottom:19.426667pt;}
.y31_c00074{bottom:45.600000pt;}
.y30_c00074{bottom:46.929291pt;}
.y2f_c00074{bottom:48.410397pt;}
.y2e_c00074{bottom:49.274832pt;}
.y2d_c00074{bottom:50.805312pt;}
.y2c_c00074{bottom:51.125333pt;}
.y2b_c00074{bottom:214.637349pt;}
.y2a_c00074{bottom:221.272739pt;}
.y29_c00074{bottom:288.997733pt;}
.y28_c00074{bottom:291.490797pt;}
.y27_c00074{bottom:292.267965pt;}
.y26_c00074{bottom:293.296032pt;}
.y25_c00074{bottom:294.726571pt;}
.y24_c00074{bottom:297.098880pt;}
.y23_c00074{bottom:297.948885pt;}
.y22_c00074{bottom:299.120163pt;}
.y21_c00074{bottom:299.778667pt;}
.y20_c00074{bottom:407.475281pt;}
.y1f_c00074{bottom:408.669761pt;}
.y1e_c00074{bottom:410.165157pt;}
.y1d_c00074{bottom:412.187737pt;}
.y1c_c00074{bottom:415.180825pt;}
.y1b_c00074{bottom:418.335165pt;}
.y1a_c00074{bottom:419.400201pt;}
.y19_c00074{bottom:422.321833pt;}
.y18_c00074{bottom:424.100561pt;}
.y17_c00074{bottom:442.667001pt;}
.y16_c00074{bottom:445.364605pt;}
.y15_c00074{bottom:448.747873pt;}
.y14_c00074{bottom:452.393333pt;}
.y13_c00074{bottom:469.820337pt;}
.y12_c00074{bottom:481.186937pt;}
.y11_c00074{bottom:482.882007pt;}
.y10_c00074{bottom:485.203167pt;}
.yf_c00074{bottom:486.254175pt;}
.y5_c00074{bottom:501.107849pt;}
.y6_c00074{bottom:501.277009pt;}
.y7_c00074{bottom:501.754119pt;}
.y8_c00074{bottom:502.152131pt;}
.y9_c00074{bottom:502.788692pt;}
.ya_c00074{bottom:503.021873pt;}
.yb_c00074{bottom:503.820009pt;}
.yc_c00074{bottom:504.096141pt;}
.yd_c00074{bottom:504.465331pt;}
.ye_c00074{bottom:504.761324pt;}
.y4_c00074{bottom:535.165715pt;}
.y3_c00074{bottom:537.531955pt;}
.y2_c00074{bottom:546.803684pt;}
.y1_c00074{bottom:550.318667pt;}
.h9_c00074{height:16.000000pt;}
.h4_c00074{height:53.345092pt;}
.h5_c00074{height:69.348620pt;}
.h2_c00074{height:74.686413pt;}
.h3_c00074{height:80.021157pt;}
.h6_c00074{height:85.341696pt;}
.h8_c00074{height:112.010975pt;}
.h7_c00074{height:128.012543pt;}
.h0_c00074{height:632.640000pt;}
.h1_c00074{height:632.666667pt;}
.w1_c00074{width:840.666667pt;}
.w0_c00074{width:840.933333pt;}
.x0_c00074{left:0.000000pt;}
.x28_c00074{left:28.390667pt;}
.x17_c00074{left:37.816555pt;}
.x29_c00074{left:51.249333pt;}
.x1e_c00074{left:85.106667pt;}
.x5_c00074{left:103.210649pt;}
.xe_c00074{left:117.906299pt;}
.x18_c00074{left:122.517888pt;}
.x2d_c00074{left:131.040000pt;}
.x6_c00074{left:136.979059pt;}
.x2a_c00074{left:160.569333pt;}
.xf_c00074{left:163.602299pt;}
.x1f_c00074{left:168.769333pt;}
.x1_c00074{left:175.272000pt;}
.x2e_c00074{left:177.120000pt;}
.x2b_c00074{left:222.314667pt;}
.x20_c00074{left:229.484000pt;}
.x7_c00074{left:232.528545pt;}
.x13_c00074{left:247.037333pt;}
.x19_c00074{left:261.643221pt;}
.x10_c00074{left:264.522299pt;}
.x8_c00074{left:312.202487pt;}
.x2_c00074{left:328.097333pt;}
.x11_c00074{left:338.220965pt;}
.x2c_c00074{left:395.520000pt;}
.x21_c00074{left:398.934667pt;}
.x14_c00074{left:420.630667pt;}
.x9_c00074{left:439.448397pt;}
.x1a_c00074{left:462.565888pt;}
.xa_c00074{left:486.035723pt;}
.x22_c00074{left:501.116000pt;}
.x26_c00074{left:524.919203pt;}
.x23_c00074{left:574.549333pt;}
.x15_c00074{left:581.738667pt;}
.x1b_c00074{left:605.093888pt;}
.x24_c00074{left:630.061333pt;}
.xb_c00074{left:645.639789pt;}
.xc_c00074{left:700.857999pt;}
.x16_c00074{left:710.196000pt;}
.x3_c00074{left:731.216000pt;}
.x1c_c00074{left:772.616555pt;}
.xd_c00074{left:774.766896pt;}
.x25_c00074{left:808.137333pt;}
.x27_c00074{left:826.556101pt;}
.x1d_c00074{left:829.496555pt;}
.x12_c00074{left:832.420965pt;}
.x4_c00074{left:834.096000pt;}
}





/* 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_c00075 {
    display:none;
  }
  .loading-indicator_c00075.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00075 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_c00075 { 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_c00075" -> "#page-container .classname_c00075")
 */
.pf_c00075 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00075 { /* 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_c00075.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00075 { /* 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_c00075 { /* 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_c00075 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00075 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00075 {overflow:visible;}
  }
}
.c_c00075 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00075 { /* 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_c00075:after { /* webkit #35443 */
  content: '';
}
.t_c00075:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00075 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 */
}
.__c00075 { /* 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_c00075 { /* info for Javascript */
  display:none;
}
.l_c00075 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00075 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00075 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00075: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_c00075 {
    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_c00075.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00075.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_c00075 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00075{font-family:sans-serif;visibility:hidden;}
.sc__c00075{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00075{-webkit-text-stroke:0px transparent;}
}
.y0_c00075{bottom:0.000000px;}
.h0_c00075{height:711.720000px;}
.h1_c00075{height:711.750000px;}
.w1_c00075{width:945.750000px;}
.w0_c00075{width:946.050000px;}
.x0_c00075{left:0.000000px;}
@media print{
.y0_c00075{bottom:0.000000pt;}
.h0_c00075{height:632.640000pt;}
.h1_c00075{height:632.666667pt;}
.w1_c00075{width:840.666667pt;}
.w0_c00075{width:840.933333pt;}
.x0_c00075{left:0.000000pt;}
}





/* 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_c00076 {
    display:none;
  }
  .loading-indicator_c00076.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00076 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_c00076 { 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_c00076" -> "#page-container .classname_c00076")
 */
.pf_c00076 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00076 { /* 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_c00076.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00076 { /* 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_c00076 { /* 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_c00076 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00076 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00076 {overflow:visible;}
  }
}
.c_c00076 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00076 { /* 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_c00076:after { /* webkit #35443 */
  content: '';
}
.t_c00076:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00076 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 */
}
.__c00076 { /* 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_c00076 { /* info for Javascript */
  display:none;
}
.l_c00076 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00076 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00076 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00076: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_c00076 {
    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_c00076.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00076.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_c00076 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00076{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00076;src:url('chunks/assets/font_ffdda91d43f5751d6c5cd797.woff2')format("woff");}.ff1_c00076{font-family:ff1_c00076;line-height:1.000000;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;}
.m54_c00076{transform:matrix(0.007955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.007955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.007955,0.000000,0.000000,0.250000,0,0);}
.m0_c00076{transform:matrix(0.012730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.012730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.012730,0.000000,0.000000,0.250000,0,0);}
.m45_c00076{transform:matrix(0.035575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.035575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.035575,0.000000,0.000000,0.250000,0,0);}
.m47_c00076{transform:matrix(0.046385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.046385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.046385,0.000000,0.000000,0.250000,0,0);}
.m4c_c00076{transform:matrix(0.057365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.057365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.057365,0.000000,0.000000,0.250000,0,0);}
.m6e_c00076{transform:matrix(0.063640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.063640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.063640,0.000000,0.000000,0.250000,0,0);}
.m50_c00076{transform:matrix(0.068430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.068430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.068430,0.000000,0.000000,0.250000,0,0);}
.m6d_c00076{transform:matrix(0.071150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.071150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.071150,0.000000,0.000000,0.250000,0,0);}
.m5f_c00076{transform:matrix(0.092770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092770,0.000000,0.000000,0.250000,0,0);}
.m71_c00076{transform:matrix(0.112500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112500,0.000000,0.000000,0.250000,0,0);}
.m78_c00076{transform:matrix(0.114730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114730,0.000000,0.000000,0.250000,0,0);}
.m55_c00076{transform:matrix(0.128665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128665,0.000000,0.000000,0.250000,0,0);}
.m2e_c00076{transform:matrix(0.130445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130445,0.000000,0.000000,0.250000,0,0);}
.m79_c00076{transform:matrix(0.132845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132845,0.000000,0.000000,0.250000,0,0);}
.m20_c00076{transform:matrix(0.135983,0.001360,-0.002500,0.249988,0,0);-ms-transform:matrix(0.135983,0.001360,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.135983,0.001360,-0.002500,0.249988,0,0);}
.m66_c00076{transform:matrix(0.139155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139155,0.000000,0.000000,0.250000,0,0);}
.m69_c00076{transform:matrix(0.141510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141510,0.000000,0.000000,0.250000,0,0);}
.m6a_c00076{transform:matrix(0.153455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153455,0.000000,0.000000,0.250000,0,0);}
.m58_c00076{transform:matrix(0.164670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164670,0.000000,0.000000,0.250000,0,0);}
.m4f_c00076{transform:matrix(0.167705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167705,0.000000,0.000000,0.250000,0,0);}
.m5c_c00076{transform:matrix(0.181400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181400,0.000000,0.000000,0.250000,0,0);}
.m4e_c00076{transform:matrix(0.185540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185540,0.000000,0.000000,0.250000,0,0);}
.m64_c00076{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m67_c00076{transform:matrix(0.205400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205400,0.000000,0.000000,0.250000,0,0);}
.m65_c00076{transform:matrix(0.205945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205945,0.000000,0.000000,0.250000,0,0);}
.m56_c00076{transform:matrix(0.206555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206555,0.000000,0.000000,0.250000,0,0);}
.m76_c00076{transform:matrix(0.207240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207240,0.000000,0.000000,0.250000,0,0);}
.m19_c00076{transform:matrix(0.210264,0.002103,-0.002500,0.249988,0,0);-ms-transform:matrix(0.210264,0.002103,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.210264,0.002103,-0.002500,0.249988,0,0);}
.m11_c00076{transform:matrix(0.222356,0.001334,-0.001500,0.249996,0,0);-ms-transform:matrix(0.222356,0.001334,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.222356,0.001334,-0.001500,0.249996,0,0);}
.m15_c00076{transform:matrix(0.226804,0.002268,-0.002500,0.249988,0,0);-ms-transform:matrix(0.226804,0.002268,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.226804,0.002268,-0.002500,0.249988,0,0);}
.m12_c00076{transform:matrix(0.227909,0.002279,-0.002500,0.249988,0,0);-ms-transform:matrix(0.227909,0.002279,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.227909,0.002279,-0.002500,0.249988,0,0);}
.m77_c00076{transform:matrix(0.234305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234305,0.000000,0.000000,0.250000,0,0);}
.m6f_c00076{transform:matrix(0.234905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234905,0.000000,0.000000,0.250000,0,0);}
.m63_c00076{transform:matrix(0.238715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238715,0.000000,0.000000,0.250000,0,0);}
.m68_c00076{transform:matrix(0.242330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242330,0.000000,0.000000,0.250000,0,0);}
.m72_c00076{transform:matrix(0.246020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246020,0.000000,0.000000,0.250000,0,0);}
.m42_c00076{transform:matrix(0.249310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249310,0.000000,0.000000,0.250000,0,0);}
.m6c_c00076{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m22_c00076{transform:matrix(0.258315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258315,0.000000,0.000000,0.250000,0,0);}
.m21_c00076{transform:matrix(0.275620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275620,0.000000,0.000000,0.250000,0,0);}
.m59_c00076{transform:matrix(0.281650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281650,0.000000,0.000000,0.250000,0,0);}
.m6b_c00076{transform:matrix(0.282150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282150,0.000000,0.000000,0.250000,0,0);}
.m46_c00076{transform:matrix(0.283270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283270,0.000000,0.000000,0.250000,0,0);}
.m10_c00076{transform:matrix(0.291725,0.001750,-0.001500,0.249996,0,0);-ms-transform:matrix(0.291725,0.001750,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.291725,0.001750,-0.001500,0.249996,0,0);}
.m16_c00076{transform:matrix(0.299295,0.002993,-0.002500,0.249988,0,0);-ms-transform:matrix(0.299295,0.002993,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.299295,0.002993,-0.002500,0.249988,0,0);}
.m40_c00076{transform:matrix(0.313050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313050,0.000000,0.000000,0.250000,0,0);}
.m23_c00076{transform:matrix(0.313075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313075,0.000000,0.000000,0.250000,0,0);}
.m5a_c00076{transform:matrix(0.325520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325520,0.000000,0.000000,0.250000,0,0);}
.m1f_c00076{transform:matrix(0.345668,0.003457,-0.002500,0.249988,0,0);-ms-transform:matrix(0.345668,0.003457,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.345668,0.003457,-0.002500,0.249988,0,0);}
.m34_c00076{transform:matrix(0.348890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348890,0.000000,0.000000,0.250000,0,0);}
.m6_c00076{transform:matrix(0.355015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355015,0.000000,0.000000,0.250000,0,0);}
.m3b_c00076{transform:matrix(0.360080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360080,0.000000,0.000000,0.250000,0,0);}
.m1c_c00076{transform:matrix(0.369732,0.003697,-0.002500,0.249988,0,0);-ms-transform:matrix(0.369732,0.003697,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.369732,0.003697,-0.002500,0.249988,0,0);}
.m35_c00076{transform:matrix(0.386005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386005,0.000000,0.000000,0.250000,0,0);}
.m51_c00076{transform:matrix(0.387105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387105,0.000000,0.000000,0.250000,0,0);}
.m2_c00076{transform:matrix(0.388825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388825,0.000000,0.000000,0.250000,0,0);}
.mf_c00076{transform:matrix(0.390503,0.002343,-0.001500,0.249996,0,0);-ms-transform:matrix(0.390503,0.002343,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.390503,0.002343,-0.001500,0.249996,0,0);}
.m14_c00076{transform:matrix(0.393170,0.003932,-0.002500,0.249988,0,0);-ms-transform:matrix(0.393170,0.003932,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.393170,0.003932,-0.002500,0.249988,0,0);}
.m52_c00076{transform:matrix(0.398065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398065,0.000000,0.000000,0.250000,0,0);}
.m1e_c00076{transform:matrix(0.401555,0.004016,-0.002500,0.249988,0,0);-ms-transform:matrix(0.401555,0.004016,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.401555,0.004016,-0.002500,0.249988,0,0);}
.m70_c00076{transform:matrix(0.403885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403885,0.000000,0.000000,0.250000,0,0);}
.m1d_c00076{transform:matrix(0.412529,0.004125,-0.002500,0.249988,0,0);-ms-transform:matrix(0.412529,0.004125,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.412529,0.004125,-0.002500,0.249988,0,0);}
.m1b_c00076{transform:matrix(0.415789,0.004158,-0.002500,0.249988,0,0);-ms-transform:matrix(0.415789,0.004158,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.415789,0.004158,-0.002500,0.249988,0,0);}
.m53_c00076{transform:matrix(0.429860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429860,0.000000,0.000000,0.250000,0,0);}
.mc_c00076{transform:matrix(0.435942,0.002616,-0.001500,0.249996,0,0);-ms-transform:matrix(0.435942,0.002616,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.435942,0.002616,-0.001500,0.249996,0,0);}
.m75_c00076{transform:matrix(0.451080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451080,0.000000,0.000000,0.250000,0,0);}
.m60_c00076{transform:matrix(0.455590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455590,0.000000,0.000000,0.250000,0,0);}
.m26_c00076{transform:matrix(0.455955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455955,0.000000,0.000000,0.250000,0,0);}
.m33_c00076{transform:matrix(0.458805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458805,0.000000,0.000000,0.250000,0,0);}
.m9_c00076{transform:matrix(0.459375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459375,0.000000,0.000000,0.250000,0,0);}
.m5_c00076{transform:matrix(0.503435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.503435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.503435,0.000000,0.000000,0.250000,0,0);}
.m74_c00076{transform:matrix(0.504400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504400,0.000000,0.000000,0.250000,0,0);}
.m57_c00076{transform:matrix(0.506530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506530,0.000000,0.000000,0.250000,0,0);}
.md_c00076{transform:matrix(0.508746,0.003052,-0.001500,0.249996,0,0);-ms-transform:matrix(0.508746,0.003052,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.508746,0.003052,-0.001500,0.249996,0,0);}
.m4_c00076{transform:matrix(0.511665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511665,0.000000,0.000000,0.250000,0,0);}
.mb_c00076{transform:matrix(0.521851,0.003131,-0.001500,0.249996,0,0);-ms-transform:matrix(0.521851,0.003131,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.521851,0.003131,-0.001500,0.249996,0,0);}
.m2b_c00076{transform:matrix(0.533620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533620,0.000000,0.000000,0.250000,0,0);}
.m17_c00076{transform:matrix(0.538933,0.005389,-0.002500,0.249988,0,0);-ms-transform:matrix(0.538933,0.005389,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.538933,0.005389,-0.002500,0.249988,0,0);}
.m3f_c00076{transform:matrix(0.553175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553175,0.000000,0.000000,0.250000,0,0);}
.m1a_c00076{transform:matrix(0.554607,0.005546,-0.002500,0.249988,0,0);-ms-transform:matrix(0.554607,0.005546,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.554607,0.005546,-0.002500,0.249988,0,0);}
.m28_c00076{transform:matrix(0.562635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562635,0.000000,0.000000,0.250000,0,0);}
.m30_c00076{transform:matrix(0.564645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.564645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.564645,0.000000,0.000000,0.250000,0,0);}
.m62_c00076{transform:matrix(0.585770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.585770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.585770,0.000000,0.000000,0.250000,0,0);}
.m38_c00076{transform:matrix(0.590275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590275,0.000000,0.000000,0.250000,0,0);}
.m3_c00076{transform:matrix(0.606930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.606930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.606930,0.000000,0.000000,0.250000,0,0);}
.m27_c00076{transform:matrix(0.610165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.610165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.610165,0.000000,0.000000,0.250000,0,0);}
.m2f_c00076{transform:matrix(0.621550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.621550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.621550,0.000000,0.000000,0.250000,0,0);}
.m3e_c00076{transform:matrix(0.626600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.626600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.626600,0.000000,0.000000,0.250000,0,0);}
.m2d_c00076{transform:matrix(0.631455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.631455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.631455,0.000000,0.000000,0.250000,0,0);}
.m2c_c00076{transform:matrix(0.637795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.637795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.637795,0.000000,0.000000,0.250000,0,0);}
.m43_c00076{transform:matrix(0.647830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.647830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.647830,0.000000,0.000000,0.250000,0,0);}
.m13_c00076{transform:matrix(0.647988,0.006480,-0.002500,0.249988,0,0);-ms-transform:matrix(0.647988,0.006480,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.647988,0.006480,-0.002500,0.249988,0,0);}
.m7_c00076{transform:matrix(0.653080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.653080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.653080,0.000000,0.000000,0.250000,0,0);}
.m18_c00076{transform:matrix(0.655852,0.006559,-0.002500,0.249988,0,0);-ms-transform:matrix(0.655852,0.006559,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.655852,0.006559,-0.002500,0.249988,0,0);}
.m25_c00076{transform:matrix(0.667125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667125,0.000000,0.000000,0.250000,0,0);}
.m1_c00076{transform:matrix(0.671230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.671230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.671230,0.000000,0.000000,0.250000,0,0);}
.m24_c00076{transform:matrix(0.698360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.698360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.698360,0.000000,0.000000,0.250000,0,0);}
.m49_c00076{transform:matrix(0.700760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.700760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.700760,0.000000,0.000000,0.250000,0,0);}
.m4d_c00076{transform:matrix(0.704090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.704090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.704090,0.000000,0.000000,0.250000,0,0);}
.m29_c00076{transform:matrix(0.711535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.711535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.711535,0.000000,0.000000,0.250000,0,0);}
.m31_c00076{transform:matrix(0.754335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.754335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.754335,0.000000,0.000000,0.250000,0,0);}
.m73_c00076{transform:matrix(0.777600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.777600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.777600,0.000000,0.000000,0.250000,0,0);}
.me_c00076{transform:matrix(0.812400,0.004874,-0.001500,0.249996,0,0);-ms-transform:matrix(0.812400,0.004874,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.812400,0.004874,-0.001500,0.249996,0,0);}
.m32_c00076{transform:matrix(0.829760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.829760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.829760,0.000000,0.000000,0.250000,0,0);}
.m2a_c00076{transform:matrix(0.877955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.877955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.877955,0.000000,0.000000,0.250000,0,0);}
.m8_c00076{transform:matrix(0.912775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.912775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.912775,0.000000,0.000000,0.250000,0,0);}
.m37_c00076{transform:matrix(0.926745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.926745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.926745,0.000000,0.000000,0.250000,0,0);}
.ma_c00076{transform:matrix(0.948163,0.005689,-0.001500,0.249996,0,0);-ms-transform:matrix(0.948163,0.005689,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.948163,0.005689,-0.001500,0.249996,0,0);}
.m5d_c00076{transform:matrix(0.969445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.969445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.969445,0.000000,0.000000,0.250000,0,0);}
.m3c_c00076{transform:matrix(0.992300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.992300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.992300,0.000000,0.000000,0.250000,0,0);}
.m5e_c00076{transform:matrix(0.996115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.996115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.996115,0.000000,0.000000,0.250000,0,0);}
.m4a_c00076{transform:matrix(1.074655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.074655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.074655,0.000000,0.000000,0.250000,0,0);}
.m41_c00076{transform:matrix(1.096360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.096360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.096360,0.000000,0.000000,0.250000,0,0);}
.m3a_c00076{transform:matrix(1.170865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.170865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.170865,0.000000,0.000000,0.250000,0,0);}
.m4b_c00076{transform:matrix(1.392685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.392685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.392685,0.000000,0.000000,0.250000,0,0);}
.m48_c00076{transform:matrix(1.456515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.456515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.456515,0.000000,0.000000,0.250000,0,0);}
.m5b_c00076{transform:matrix(1.489840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.489840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.489840,0.000000,0.000000,0.250000,0,0);}
.m36_c00076{transform:matrix(1.644965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.644965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.644965,0.000000,0.000000,0.250000,0,0);}
.m44_c00076{transform:matrix(2.341200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.341200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.341200,0.000000,0.000000,0.250000,0,0);}
.m39_c00076{transform:matrix(2.343890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.343890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.343890,0.000000,0.000000,0.250000,0,0);}
.m61_c00076{transform:matrix(2.353055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.353055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.353055,0.000000,0.000000,0.250000,0,0);}
.m3d_c00076{transform:matrix(8.510290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(8.510290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(8.510290,0.000000,0.000000,0.250000,0,0);}
.v0_c00076{vertical-align:0.000000px;}
.ls0_c00076{letter-spacing:0.000000px;}
.sc__c00076{text-shadow:none;}
.sc0_c00076{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__c00076{-webkit-text-stroke:0px transparent;}
.sc0_c00076{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00076{word-spacing:0.000000px;}
.fc0_c00076{color:transparent;}
.fs7_c00076{font-size:12.000000px;}
.fs4_c00076{font-size:18.000000px;}
.fs5_c00076{font-size:24.000000px;}
.fs8_c00076{font-size:30.000000px;}
.fs3_c00076{font-size:48.000000px;}
.fs9_c00076{font-size:54.000000px;}
.fs0_c00076{font-size:60.000000px;}
.fs2_c00076{font-size:66.003300px;}
.fs1_c00076{font-size:90.001620px;}
.fs6_c00076{font-size:96.000000px;}
.y0_c00076{bottom:0.000000px;}
.y1f_c00076{bottom:1.248000px;}
.y27_c00076{bottom:13.060500px;}
.y1e_c00076{bottom:18.358500px;}
.y1d_c00076{bottom:19.420500px;}
.y1c_c00076{bottom:22.026000px;}
.y26_c00076{bottom:22.735500px;}
.y25_c00076{bottom:23.005500px;}
.y24_c00076{bottom:23.734500px;}
.y23_c00076{bottom:23.881500px;}
.y1b_c00076{bottom:24.748500px;}
.y22_c00076{bottom:24.817500px;}
.y21_c00076{bottom:25.381500px;}
.y20_c00076{bottom:30.231000px;}
.y1a_c00076{bottom:30.888000px;}
.y37_c00076{bottom:45.090000px;}
.y36_c00076{bottom:47.113500px;}
.y35_c00076{bottom:49.950000px;}
.y34_c00076{bottom:56.974500px;}
.y33_c00076{bottom:64.260000px;}
.y19_c00076{bottom:71.440500px;}
.y32_c00076{bottom:78.570000px;}
.y31_c00076{bottom:81.810000px;}
.y30_c00076{bottom:90.180000px;}
.y2f_c00076{bottom:96.117000px;}
.y18_c00076{bottom:96.497550px;}
.y17_c00076{bottom:96.960525px;}
.y16_c00076{bottom:97.636035px;}
.y15_c00076{bottom:98.181465px;}
.y14_c00076{bottom:98.793525px;}
.y13_c00076{bottom:99.263595px;}
.y2e_c00076{bottom:101.791500px;}
.y12_c00076{bottom:102.083205px;}
.y11_c00076{bottom:102.280920px;}
.y10_c00076{bottom:103.141200px;}
.yf_c00076{bottom:103.576020px;}
.ye_c00076{bottom:104.015445px;}
.yd_c00076{bottom:104.336130px;}
.yc_c00076{bottom:104.594055px;}
.yb_c00076{bottom:105.331140px;}
.ya_c00076{bottom:105.570000px;}
.y2d_c00076{bottom:111.240000px;}
.y2c_c00076{bottom:117.855000px;}
.y2b_c00076{bottom:122.583000px;}
.y9_c00076{bottom:128.781807px;}
.y8_c00076{bottom:129.144678px;}
.y7_c00076{bottom:129.515208px;}
.y6_c00076{bottom:130.353153px;}
.y5_c00076{bottom:131.339760px;}
.y4_c00076{bottom:131.777187px;}
.y3_c00076{bottom:132.531945px;}
.y2_c00076{bottom:133.651500px;}
.y2a_c00076{bottom:134.596500px;}
.y29_c00076{bottom:143.100000px;}
.y28_c00076{bottom:157.410000px;}
.y1_c00076{bottom:170.614500px;}
.h9_c00076{height:12.000000px;}
.h6_c00076{height:18.000000px;}
.h7_c00076{height:24.000000px;}
.ha_c00076{height:30.000000px;}
.h5_c00076{height:48.000000px;}
.hb_c00076{height:54.000000px;}
.h2_c00076{height:60.000000px;}
.h4_c00076{height:66.003300px;}
.h3_c00076{height:90.001620px;}
.h8_c00076{height:96.000000px;}
.h0_c00076{height:711.720000px;}
.h1_c00076{height:711.750000px;}
.w1_c00076{width:945.750000px;}
.w0_c00076{width:946.050000px;}
.x0_c00076{left:0.000000px;}
.x1_c00076{left:1.080000px;}
.x2f_c00076{left:14.310000px;}
.x21_c00076{left:22.140000px;}
.x13_c00076{left:23.839500px;}
.x2_c00076{left:25.380000px;}
.xb_c00076{left:27.120000px;}
.x22_c00076{left:38.340000px;}
.x30_c00076{left:40.230000px;}
.x23_c00076{left:54.810000px;}
.x31_c00076{left:56.160000px;}
.x32_c00076{left:72.360000px;}
.x24_c00076{left:76.950000px;}
.x33_c00076{left:88.560000px;}
.x14_c00076{left:97.548000px;}
.x15_c00076{left:123.340500px;}
.x45_c00076{left:147.150000px;}
.x16_c00076{left:155.409000px;}
.x3_c00076{left:196.560000px;}
.x17_c00076{left:199.351500px;}
.x25_c00076{left:202.230000px;}
.x46_c00076{left:205.470000px;}
.xc_c00076{left:213.712500px;}
.x26_c00076{left:229.500000px;}
.x18_c00076{left:242.833500px;}
.x4_c00076{left:249.480000px;}
.x47_c00076{left:272.430000px;}
.x27_c00076{left:283.230000px;}
.x19_c00076{left:328.861500px;}
.xd_c00076{left:339.505500px;}
.x1a_c00076{left:348.633000px;}
.x34_c00076{left:350.460000px;}
.x48_c00076{left:351.810000px;}
.x28_c00076{left:371.520000px;}
.x49_c00076{left:382.860000px;}
.x5_c00076{left:402.300000px;}
.x4a_c00076{left:408.780000px;}
.xe_c00076{left:412.410000px;}
.x35_c00076{left:414.180000px;}
.x4b_c00076{left:440.910000px;}
.x36_c00076{left:446.310000px;}
.x29_c00076{left:451.980000px;}
.x3b_c00076{left:458.190000px;}
.x37_c00076{left:471.690000px;}
.x6_c00076{left:478.440000px;}
.x4c_c00076{left:485.190000px;}
.x4d_c00076{left:500.310000px;}
.x38_c00076{left:536.220000px;}
.x3c_c00076{left:542.700000px;}
.x3d_c00076{left:554.580000px;}
.x2a_c00076{left:562.410000px;}
.x3e_c00076{left:568.620000px;}
.xf_c00076{left:576.844500px;}
.x39_c00076{left:584.010000px;}
.x3f_c00076{left:609.930000px;}
.x3a_c00076{left:626.130000px;}
.x40_c00076{left:628.290000px;}
.x1b_c00076{left:630.594000px;}
.x7_c00076{left:645.840000px;}
.x50_c00076{left:652.041000px;}
.x42_c00076{left:667.170000px;}
.x2b_c00076{left:668.250000px;}
.x1c_c00076{left:677.601000px;}
.x51_c00076{left:685.251000px;}
.x43_c00076{left:693.630000px;}
.x8_c00076{left:713.880000px;}
.x10_c00076{left:716.502000px;}
.x1d_c00076{left:738.807000px;}
.x2c_c00076{left:740.610000px;}
.x44_c00076{left:749.790000px;}
.x41_c00076{left:753.030000px;}
.x53_c00076{left:760.321500px;}
.x54_c00076{left:776.251500px;}
.x11_c00076{left:778.257000px;}
.x52_c00076{left:791.875500px;}
.x1e_c00076{left:793.350000px;}
.x2d_c00076{left:805.680000px;}
.x9_c00076{left:807.030000px;}
.x12_c00076{left:838.735500px;}
.x55_c00076{left:844.291500px;}
.x4e_c00076{left:857.250000px;}
.x56_c00076{left:859.411500px;}
.x1f_c00076{left:860.901000px;}
.x57_c00076{left:871.561500px;}
.x2e_c00076{left:877.500000px;}
.x58_c00076{left:879.391500px;}
.x59_c00076{left:900.451500px;}
.xa_c00076{left:904.230000px;}
.x5b_c00076{left:905.850000px;}
.x20_c00076{left:907.198500px;}
.x4f_c00076{left:908.820000px;}
.x5a_c00076{left:917.460000px;}
.x5e_c00076{left:926.370000px;}
.x5c_c00076{left:929.070000px;}
.x5d_c00076{left:938.790000px;}
@media print{
.v0_c00076{vertical-align:0.000000pt;}
.ls0_c00076{letter-spacing:0.000000pt;}
.ws0_c00076{word-spacing:0.000000pt;}
.fs7_c00076{font-size:10.666667pt;}
.fs4_c00076{font-size:16.000000pt;}
.fs5_c00076{font-size:21.333333pt;}
.fs8_c00076{font-size:26.666667pt;}
.fs3_c00076{font-size:42.666667pt;}
.fs9_c00076{font-size:48.000000pt;}
.fs0_c00076{font-size:53.333333pt;}
.fs2_c00076{font-size:58.669600pt;}
.fs1_c00076{font-size:80.001440pt;}
.fs6_c00076{font-size:85.333333pt;}
.y0_c00076{bottom:0.000000pt;}
.y1f_c00076{bottom:1.109333pt;}
.y27_c00076{bottom:11.609333pt;}
.y1e_c00076{bottom:16.318667pt;}
.y1d_c00076{bottom:17.262667pt;}
.y1c_c00076{bottom:19.578667pt;}
.y26_c00076{bottom:20.209333pt;}
.y25_c00076{bottom:20.449333pt;}
.y24_c00076{bottom:21.097333pt;}
.y23_c00076{bottom:21.228000pt;}
.y1b_c00076{bottom:21.998667pt;}
.y22_c00076{bottom:22.060000pt;}
.y21_c00076{bottom:22.561333pt;}
.y20_c00076{bottom:26.872000pt;}
.y1a_c00076{bottom:27.456000pt;}
.y37_c00076{bottom:40.080000pt;}
.y36_c00076{bottom:41.878667pt;}
.y35_c00076{bottom:44.400000pt;}
.y34_c00076{bottom:50.644000pt;}
.y33_c00076{bottom:57.120000pt;}
.y19_c00076{bottom:63.502667pt;}
.y32_c00076{bottom:69.840000pt;}
.y31_c00076{bottom:72.720000pt;}
.y30_c00076{bottom:80.160000pt;}
.y2f_c00076{bottom:85.437333pt;}
.y18_c00076{bottom:85.775600pt;}
.y17_c00076{bottom:86.187133pt;}
.y16_c00076{bottom:86.787587pt;}
.y15_c00076{bottom:87.272413pt;}
.y14_c00076{bottom:87.816467pt;}
.y13_c00076{bottom:88.234307pt;}
.y2e_c00076{bottom:90.481333pt;}
.y12_c00076{bottom:90.740627pt;}
.y11_c00076{bottom:90.916373pt;}
.y10_c00076{bottom:91.681067pt;}
.yf_c00076{bottom:92.067573pt;}
.ye_c00076{bottom:92.458173pt;}
.yd_c00076{bottom:92.743227pt;}
.yc_c00076{bottom:92.972493pt;}
.yb_c00076{bottom:93.627680pt;}
.ya_c00076{bottom:93.840000pt;}
.y2d_c00076{bottom:98.880000pt;}
.y2c_c00076{bottom:104.760000pt;}
.y2b_c00076{bottom:108.962667pt;}
.y9_c00076{bottom:114.472717pt;}
.y8_c00076{bottom:114.795269pt;}
.y7_c00076{bottom:115.124629pt;}
.y6_c00076{bottom:115.869469pt;}
.y5_c00076{bottom:116.746453pt;}
.y4_c00076{bottom:117.135277pt;}
.y3_c00076{bottom:117.806173pt;}
.y2_c00076{bottom:118.801333pt;}
.y2a_c00076{bottom:119.641333pt;}
.y29_c00076{bottom:127.200000pt;}
.y28_c00076{bottom:139.920000pt;}
.y1_c00076{bottom:151.657333pt;}
.h9_c00076{height:10.666667pt;}
.h6_c00076{height:16.000000pt;}
.h7_c00076{height:21.333333pt;}
.ha_c00076{height:26.666667pt;}
.h5_c00076{height:42.666667pt;}
.hb_c00076{height:48.000000pt;}
.h2_c00076{height:53.333333pt;}
.h4_c00076{height:58.669600pt;}
.h3_c00076{height:80.001440pt;}
.h8_c00076{height:85.333333pt;}
.h0_c00076{height:632.640000pt;}
.h1_c00076{height:632.666667pt;}
.w1_c00076{width:840.666667pt;}
.w0_c00076{width:840.933333pt;}
.x0_c00076{left:0.000000pt;}
.x1_c00076{left:0.960000pt;}
.x2f_c00076{left:12.720000pt;}
.x21_c00076{left:19.680000pt;}
.x13_c00076{left:21.190667pt;}
.x2_c00076{left:22.560000pt;}
.xb_c00076{left:24.106667pt;}
.x22_c00076{left:34.080000pt;}
.x30_c00076{left:35.760000pt;}
.x23_c00076{left:48.720000pt;}
.x31_c00076{left:49.920000pt;}
.x32_c00076{left:64.320000pt;}
.x24_c00076{left:68.400000pt;}
.x33_c00076{left:78.720000pt;}
.x14_c00076{left:86.709333pt;}
.x15_c00076{left:109.636000pt;}
.x45_c00076{left:130.800000pt;}
.x16_c00076{left:138.141333pt;}
.x3_c00076{left:174.720000pt;}
.x17_c00076{left:177.201333pt;}
.x25_c00076{left:179.760000pt;}
.x46_c00076{left:182.640000pt;}
.xc_c00076{left:189.966667pt;}
.x26_c00076{left:204.000000pt;}
.x18_c00076{left:215.852000pt;}
.x4_c00076{left:221.760000pt;}
.x47_c00076{left:242.160000pt;}
.x27_c00076{left:251.760000pt;}
.x19_c00076{left:292.321333pt;}
.xd_c00076{left:301.782667pt;}
.x1a_c00076{left:309.896000pt;}
.x34_c00076{left:311.520000pt;}
.x48_c00076{left:312.720000pt;}
.x28_c00076{left:330.240000pt;}
.x49_c00076{left:340.320000pt;}
.x5_c00076{left:357.600000pt;}
.x4a_c00076{left:363.360000pt;}
.xe_c00076{left:366.586667pt;}
.x35_c00076{left:368.160000pt;}
.x4b_c00076{left:391.920000pt;}
.x36_c00076{left:396.720000pt;}
.x29_c00076{left:401.760000pt;}
.x3b_c00076{left:407.280000pt;}
.x37_c00076{left:419.280000pt;}
.x6_c00076{left:425.280000pt;}
.x4c_c00076{left:431.280000pt;}
.x4d_c00076{left:444.720000pt;}
.x38_c00076{left:476.640000pt;}
.x3c_c00076{left:482.400000pt;}
.x3d_c00076{left:492.960000pt;}
.x2a_c00076{left:499.920000pt;}
.x3e_c00076{left:505.440000pt;}
.xf_c00076{left:512.750667pt;}
.x39_c00076{left:519.120000pt;}
.x3f_c00076{left:542.160000pt;}
.x3a_c00076{left:556.560000pt;}
.x40_c00076{left:558.480000pt;}
.x1b_c00076{left:560.528000pt;}
.x7_c00076{left:574.080000pt;}
.x50_c00076{left:579.592000pt;}
.x42_c00076{left:593.040000pt;}
.x2b_c00076{left:594.000000pt;}
.x1c_c00076{left:602.312000pt;}
.x51_c00076{left:609.112000pt;}
.x43_c00076{left:616.560000pt;}
.x8_c00076{left:634.560000pt;}
.x10_c00076{left:636.890667pt;}
.x1d_c00076{left:656.717333pt;}
.x2c_c00076{left:658.320000pt;}
.x44_c00076{left:666.480000pt;}
.x41_c00076{left:669.360000pt;}
.x53_c00076{left:675.841333pt;}
.x54_c00076{left:690.001333pt;}
.x11_c00076{left:691.784000pt;}
.x52_c00076{left:703.889333pt;}
.x1e_c00076{left:705.200000pt;}
.x2d_c00076{left:716.160000pt;}
.x9_c00076{left:717.360000pt;}
.x12_c00076{left:745.542667pt;}
.x55_c00076{left:750.481333pt;}
.x4e_c00076{left:762.000000pt;}
.x56_c00076{left:763.921333pt;}
.x1f_c00076{left:765.245333pt;}
.x57_c00076{left:774.721333pt;}
.x2e_c00076{left:780.000000pt;}
.x58_c00076{left:781.681333pt;}
.x59_c00076{left:800.401333pt;}
.xa_c00076{left:803.760000pt;}
.x5b_c00076{left:805.200000pt;}
.x20_c00076{left:806.398667pt;}
.x4f_c00076{left:807.840000pt;}
.x5a_c00076{left:815.520000pt;}
.x5e_c00076{left:823.440000pt;}
.x5c_c00076{left:825.840000pt;}
.x5d_c00076{left:834.480000pt;}
}





/* 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_c00077 {
    display:none;
  }
  .loading-indicator_c00077.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00077 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_c00077 { 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_c00077" -> "#page-container .classname_c00077")
 */
.pf_c00077 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00077 { /* 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_c00077.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00077 { /* 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_c00077 { /* 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_c00077 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00077 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00077 {overflow:visible;}
  }
}
.c_c00077 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00077 { /* 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_c00077:after { /* webkit #35443 */
  content: '';
}
.t_c00077:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00077 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 */
}
.__c00077 { /* 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_c00077 { /* info for Javascript */
  display:none;
}
.l_c00077 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00077 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00077 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00077: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_c00077 {
    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_c00077.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00077.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_c00077 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00077{font-family:sans-serif;visibility:hidden;}
.sc__c00077{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00077{-webkit-text-stroke:0px transparent;}
}
.y0_c00077{bottom:0.000000px;}
.h0_c00077{height:711.720000px;}
.h1_c00077{height:711.750000px;}
.w1_c00077{width:945.750000px;}
.w0_c00077{width:946.050000px;}
.x0_c00077{left:0.000000px;}
@media print{
.y0_c00077{bottom:0.000000pt;}
.h0_c00077{height:632.640000pt;}
.h1_c00077{height:632.666667pt;}
.w1_c00077{width:840.666667pt;}
.w0_c00077{width:840.933333pt;}
.x0_c00077{left:0.000000pt;}
}





/* 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_c00078 {
    display:none;
  }
  .loading-indicator_c00078.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00078 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_c00078 { 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_c00078" -> "#page-container .classname_c00078")
 */
.pf_c00078 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00078 { /* 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_c00078.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00078 { /* 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_c00078 { /* 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_c00078 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00078 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00078 {overflow:visible;}
  }
}
.c_c00078 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00078 { /* 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_c00078:after { /* webkit #35443 */
  content: '';
}
.t_c00078:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00078 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 */
}
.__c00078 { /* 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_c00078 { /* info for Javascript */
  display:none;
}
.l_c00078 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00078 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00078 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00078: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_c00078 {
    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_c00078.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00078.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_c00078 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00078{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00078;src:url('chunks/assets/font_fabf4b590f7fb32aea93ffb2.woff2')format("woff");}.ff1_c00078{font-family:ff1_c00078;line-height:1.000000;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;}
.m4_c00078{transform:matrix(0.025455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.025455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.025455,0.000000,0.000000,0.250000,0,0);}
.m0_c00078{transform:matrix(0.028815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.028815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.028815,0.000000,0.000000,0.250000,0,0);}
.m10_c00078{transform:matrix(0.073255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.073255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.073255,0.000000,0.000000,0.250000,0,0);}
.m13_c00078{transform:matrix(0.288893,-0.004911,0.004249,0.249964,0,0);-ms-transform:matrix(0.288893,-0.004911,0.004249,0.249964,0,0);-webkit-transform:matrix(0.288893,-0.004911,0.004249,0.249964,0,0);}
.m7_c00078{transform:matrix(0.303725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303725,0.000000,0.000000,0.250000,0,0);}
.m6_c00078{transform:matrix(0.313685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313685,0.000000,0.000000,0.250000,0,0);}
.m11_c00078{transform:matrix(0.340721,-0.005792,0.004249,0.249964,0,0);-ms-transform:matrix(0.340721,-0.005792,0.004249,0.249964,0,0);-webkit-transform:matrix(0.340721,-0.005792,0.004249,0.249964,0,0);}
.md_c00078{transform:matrix(0.399885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399885,0.000000,0.000000,0.250000,0,0);}
.mc_c00078{transform:matrix(0.407360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407360,0.000000,0.000000,0.250000,0,0);}
.m3_c00078{transform:matrix(0.435755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435755,0.000000,0.000000,0.250000,0,0);}
.m9_c00078{transform:matrix(0.496660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.496660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.496660,0.000000,0.000000,0.250000,0,0);}
.m2_c00078{transform:matrix(0.525240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525240,0.000000,0.000000,0.250000,0,0);}
.m12_c00078{transform:matrix(0.552135,-0.009386,0.004249,0.249964,0,0);-ms-transform:matrix(0.552135,-0.009386,0.004249,0.249964,0,0);-webkit-transform:matrix(0.552135,-0.009386,0.004249,0.249964,0,0);}
.m1_c00078{transform:matrix(0.556240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556240,0.000000,0.000000,0.250000,0,0);}
.m8_c00078{transform:matrix(0.562745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562745,0.000000,0.000000,0.250000,0,0);}
.me_c00078{transform:matrix(0.568140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568140,0.000000,0.000000,0.250000,0,0);}
.ma_c00078{transform:matrix(0.588405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.588405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.588405,0.000000,0.000000,0.250000,0,0);}
.m5_c00078{transform:matrix(0.607275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.607275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.607275,0.000000,0.000000,0.250000,0,0);}
.mb_c00078{transform:matrix(0.611565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.611565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.611565,0.000000,0.000000,0.250000,0,0);}
.mf_c00078{transform:matrix(1.031410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.031410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.031410,0.000000,0.000000,0.250000,0,0);}
.v0_c00078{vertical-align:0.000000px;}
.ls0_c00078{letter-spacing:0.000000px;}
.sc__c00078{text-shadow:none;}
.sc0_c00078{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__c00078{-webkit-text-stroke:0px transparent;}
.sc0_c00078{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00078{word-spacing:0.000000px;}
.fc0_c00078{color:transparent;}
.fs0_c00078{font-size:60.000000px;}
.fs1_c00078{font-size:78.011270px;}
.y0_c00078{bottom:0.000000px;}
.ye_c00078{bottom:409.846500px;}
.yf_c00078{bottom:410.858034px;}
.y10_c00078{bottom:413.664691px;}
.y2_c00078{bottom:478.165500px;}
.y3_c00078{bottom:478.413000px;}
.y4_c00078{bottom:479.152500px;}
.y5_c00078{bottom:479.341500px;}
.y6_c00078{bottom:480.556500px;}
.y7_c00078{bottom:480.930000px;}
.y8_c00078{bottom:481.701000px;}
.y9_c00078{bottom:481.993500px;}
.ya_c00078{bottom:482.598000px;}
.yb_c00078{bottom:483.022500px;}
.yc_c00078{bottom:483.526500px;}
.yd_c00078{bottom:484.375500px;}
.y1_c00078{bottom:510.598500px;}
.h2_c00078{height:60.000000px;}
.h3_c00078{height:78.011270px;}
.h0_c00078{height:711.720000px;}
.h1_c00078{height:711.750000px;}
.w1_c00078{width:945.750000px;}
.w0_c00078{width:946.050000px;}
.x0_c00078{left:0.000000px;}
.x1_c00078{left:4.860000px;}
.x6_c00078{left:23.257500px;}
.x12_c00078{left:31.116000px;}
.x2_c00078{left:52.110000px;}
.x7_c00078{left:58.699500px;}
.x13_c00078{left:90.618000px;}
.x3_c00078{left:109.350000px;}
.x8_c00078{left:164.313000px;}
.x9_c00078{left:191.362500px;}
.x4_c00078{left:234.090000px;}
.x14_c00078{left:255.715500px;}
.xa_c00078{left:364.963500px;}
.xb_c00078{left:418.420500px;}
.xc_c00078{left:528.574500px;}
.x5_c00078{left:534.600000px;}
.xd_c00078{left:570.423000px;}
.xe_c00078{left:656.784000px;}
.xf_c00078{left:717.531000px;}
.x10_c00078{left:789.610500px;}
.x11_c00078{left:910.807500px;}
@media print{
.v0_c00078{vertical-align:0.000000pt;}
.ls0_c00078{letter-spacing:0.000000pt;}
.ws0_c00078{word-spacing:0.000000pt;}
.fs0_c00078{font-size:53.333333pt;}
.fs1_c00078{font-size:69.343351pt;}
.y0_c00078{bottom:0.000000pt;}
.ye_c00078{bottom:364.308000pt;}
.yf_c00078{bottom:365.207141pt;}
.y10_c00078{bottom:367.701948pt;}
.y2_c00078{bottom:425.036000pt;}
.y3_c00078{bottom:425.256000pt;}
.y4_c00078{bottom:425.913333pt;}
.y5_c00078{bottom:426.081333pt;}
.y6_c00078{bottom:427.161333pt;}
.y7_c00078{bottom:427.493333pt;}
.y8_c00078{bottom:428.178667pt;}
.y9_c00078{bottom:428.438667pt;}
.ya_c00078{bottom:428.976000pt;}
.yb_c00078{bottom:429.353333pt;}
.yc_c00078{bottom:429.801333pt;}
.yd_c00078{bottom:430.556000pt;}
.y1_c00078{bottom:453.865333pt;}
.h2_c00078{height:53.333333pt;}
.h3_c00078{height:69.343351pt;}
.h0_c00078{height:632.640000pt;}
.h1_c00078{height:632.666667pt;}
.w1_c00078{width:840.666667pt;}
.w0_c00078{width:840.933333pt;}
.x0_c00078{left:0.000000pt;}
.x1_c00078{left:4.320000pt;}
.x6_c00078{left:20.673333pt;}
.x12_c00078{left:27.658667pt;}
.x2_c00078{left:46.320000pt;}
.x7_c00078{left:52.177333pt;}
.x13_c00078{left:80.549333pt;}
.x3_c00078{left:97.200000pt;}
.x8_c00078{left:146.056000pt;}
.x9_c00078{left:170.100000pt;}
.x4_c00078{left:208.080000pt;}
.x14_c00078{left:227.302667pt;}
.xa_c00078{left:324.412000pt;}
.xb_c00078{left:371.929333pt;}
.xc_c00078{left:469.844000pt;}
.x5_c00078{left:475.200000pt;}
.xd_c00078{left:507.042667pt;}
.xe_c00078{left:583.808000pt;}
.xf_c00078{left:637.805333pt;}
.x10_c00078{left:701.876000pt;}
.x11_c00078{left:809.606667pt;}
}





/* 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_c00079 {
    display:none;
  }
  .loading-indicator_c00079.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00079 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_c00079 { 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_c00079" -> "#page-container .classname_c00079")
 */
.pf_c00079 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00079 { /* 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_c00079.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00079 { /* 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_c00079 { /* 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_c00079 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00079 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00079 {overflow:visible;}
  }
}
.c_c00079 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00079 { /* 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_c00079:after { /* webkit #35443 */
  content: '';
}
.t_c00079:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00079 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 */
}
.__c00079 { /* 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_c00079 { /* info for Javascript */
  display:none;
}
.l_c00079 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00079 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00079 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00079: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_c00079 {
    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_c00079.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00079.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_c00079 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00079{font-family:sans-serif;visibility:hidden;}
.sc__c00079{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00079{-webkit-text-stroke:0px transparent;}
}
.y0_c00079{bottom:0.000000px;}
.h0_c00079{height:711.720000px;}
.h1_c00079{height:711.750000px;}
.w1_c00079{width:945.750000px;}
.w0_c00079{width:946.050000px;}
.x0_c00079{left:0.000000px;}
@media print{
.y0_c00079{bottom:0.000000pt;}
.h0_c00079{height:632.640000pt;}
.h1_c00079{height:632.666667pt;}
.w1_c00079{width:840.666667pt;}
.w0_c00079{width:840.933333pt;}
.x0_c00079{left:0.000000pt;}
}





/* 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_c00080 {
    display:none;
  }
  .loading-indicator_c00080.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00080 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_c00080 { 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_c00080" -> "#page-container .classname_c00080")
 */
.pf_c00080 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00080 { /* 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_c00080.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00080 { /* 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_c00080 { /* 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_c00080 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00080 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00080 {overflow:visible;}
  }
}
.c_c00080 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00080 { /* 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_c00080:after { /* webkit #35443 */
  content: '';
}
.t_c00080:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00080 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 */
}
.__c00080 { /* 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_c00080 { /* info for Javascript */
  display:none;
}
.l_c00080 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00080 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00080 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00080: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_c00080 {
    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_c00080.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00080.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_c00080 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00080{font-family:sans-serif;visibility:hidden;}
.sc__c00080{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00080{-webkit-text-stroke:0px transparent;}
}
.y0_c00080{bottom:0.000000px;}
.h0_c00080{height:711.720000px;}
.h1_c00080{height:711.750000px;}
.w1_c00080{width:945.750000px;}
.w0_c00080{width:946.050000px;}
.x0_c00080{left:0.000000px;}
@media print{
.y0_c00080{bottom:0.000000pt;}
.h0_c00080{height:632.640000pt;}
.h1_c00080{height:632.666667pt;}
.w1_c00080{width:840.666667pt;}
.w0_c00080{width:840.933333pt;}
.x0_c00080{left:0.000000pt;}
}





/* 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_c00081 {
    display:none;
  }
  .loading-indicator_c00081.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00081 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_c00081 { 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_c00081" -> "#page-container .classname_c00081")
 */
.pf_c00081 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00081 { /* 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_c00081.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00081 { /* 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_c00081 { /* 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_c00081 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00081 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00081 {overflow:visible;}
  }
}
.c_c00081 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00081 { /* 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_c00081:after { /* webkit #35443 */
  content: '';
}
.t_c00081:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00081 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 */
}
.__c00081 { /* 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_c00081 { /* info for Javascript */
  display:none;
}
.l_c00081 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00081 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00081 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00081: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_c00081 {
    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_c00081.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00081.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_c00081 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00081{font-family:sans-serif;visibility:hidden;}
.sc__c00081{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00081{-webkit-text-stroke:0px transparent;}
}
.y0_c00081{bottom:0.000000px;}
.h0_c00081{height:711.720000px;}
.h1_c00081{height:711.750000px;}
.w1_c00081{width:945.750000px;}
.w0_c00081{width:946.050000px;}
.x0_c00081{left:0.000000px;}
@media print{
.y0_c00081{bottom:0.000000pt;}
.h0_c00081{height:632.640000pt;}
.h1_c00081{height:632.666667pt;}
.w1_c00081{width:840.666667pt;}
.w0_c00081{width:840.933333pt;}
.x0_c00081{left:0.000000pt;}
}





/* 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_c00082 {
    display:none;
  }
  .loading-indicator_c00082.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00082 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_c00082 { 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_c00082" -> "#page-container .classname_c00082")
 */
.pf_c00082 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00082 { /* 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_c00082.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00082 { /* 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_c00082 { /* 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_c00082 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00082 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00082 {overflow:visible;}
  }
}
.c_c00082 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00082 { /* 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_c00082:after { /* webkit #35443 */
  content: '';
}
.t_c00082:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00082 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 */
}
.__c00082 { /* 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_c00082 { /* info for Javascript */
  display:none;
}
.l_c00082 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00082 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00082 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00082: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_c00082 {
    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_c00082.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00082.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_c00082 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00082{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00082;src:url('chunks/assets/font_6bbd15de30fdc229d5d5ff82.woff2')format("woff");}.ff1_c00082{font-family:ff1_c00082;line-height:1.000000;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;}
.md_c00082{transform:matrix(0.006700,0.000040,-0.001500,0.249996,0,0);-ms-transform:matrix(0.006700,0.000040,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.006700,0.000040,-0.001500,0.249996,0,0);}
.m1f_c00082{transform:matrix(0.150417,0.000903,-0.001500,0.249996,0,0);-ms-transform:matrix(0.150417,0.000903,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.150417,0.000903,-0.001500,0.249996,0,0);}
.m13_c00082{transform:matrix(0.151892,0.000911,-0.001500,0.249996,0,0);-ms-transform:matrix(0.151892,0.000911,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.151892,0.000911,-0.001500,0.249996,0,0);}
.m15_c00082{transform:matrix(0.188582,0.001131,-0.001500,0.249996,0,0);-ms-transform:matrix(0.188582,0.001131,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.188582,0.001131,-0.001500,0.249996,0,0);}
.m11_c00082{transform:matrix(0.248291,0.001490,-0.001500,0.249996,0,0);-ms-transform:matrix(0.248291,0.001490,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.248291,0.001490,-0.001500,0.249996,0,0);}
.m14_c00082{transform:matrix(0.249786,0.001499,-0.001500,0.249996,0,0);-ms-transform:matrix(0.249786,0.001499,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.249786,0.001499,-0.001500,0.249996,0,0);}
.m9_c00082{transform:matrix(0.296670,0.001780,-0.001500,0.249996,0,0);-ms-transform:matrix(0.296670,0.001780,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.296670,0.001780,-0.001500,0.249996,0,0);}
.ma_c00082{transform:matrix(0.311639,0.001870,-0.001500,0.249996,0,0);-ms-transform:matrix(0.311639,0.001870,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.311639,0.001870,-0.001500,0.249996,0,0);}
.mb_c00082{transform:matrix(0.327849,0.001967,-0.001500,0.249996,0,0);-ms-transform:matrix(0.327849,0.001967,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.327849,0.001967,-0.001500,0.249996,0,0);}
.m12_c00082{transform:matrix(0.364938,0.002190,-0.001500,0.249996,0,0);-ms-transform:matrix(0.364938,0.002190,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.364938,0.002190,-0.001500,0.249996,0,0);}
.mc_c00082{transform:matrix(0.380233,0.002281,-0.001500,0.249996,0,0);-ms-transform:matrix(0.380233,0.002281,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.380233,0.002281,-0.001500,0.249996,0,0);}
.m8_c00082{transform:matrix(0.410138,0.002461,-0.001500,0.249996,0,0);-ms-transform:matrix(0.410138,0.002461,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.410138,0.002461,-0.001500,0.249996,0,0);}
.m2_c00082{transform:matrix(0.450695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450695,0.000000,0.000000,0.250000,0,0);}
.m10_c00082{transform:matrix(0.453812,0.002723,-0.001500,0.249996,0,0);-ms-transform:matrix(0.453812,0.002723,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.453812,0.002723,-0.001500,0.249996,0,0);}
.m1b_c00082{transform:matrix(0.468862,0.002813,-0.001500,0.249996,0,0);-ms-transform:matrix(0.468862,0.002813,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.468862,0.002813,-0.001500,0.249996,0,0);}
.m6_c00082{transform:matrix(0.484150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484150,0.000000,0.000000,0.250000,0,0);}
.m19_c00082{transform:matrix(0.513961,0.003084,-0.001500,0.249996,0,0);-ms-transform:matrix(0.513961,0.003084,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.513961,0.003084,-0.001500,0.249996,0,0);}
.m1c_c00082{transform:matrix(0.515751,0.003095,-0.001500,0.249996,0,0);-ms-transform:matrix(0.515751,0.003095,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.515751,0.003095,-0.001500,0.249996,0,0);}
.m3_c00082{transform:matrix(0.524310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524310,0.000000,0.000000,0.250000,0,0);}
.m16_c00082{transform:matrix(0.552170,0.003313,-0.001500,0.249996,0,0);-ms-transform:matrix(0.552170,0.003313,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.552170,0.003313,-0.001500,0.249996,0,0);}
.m1d_c00082{transform:matrix(0.581805,0.003491,-0.001500,0.249996,0,0);-ms-transform:matrix(0.581805,0.003491,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.581805,0.003491,-0.001500,0.249996,0,0);}
.m1_c00082{transform:matrix(0.609015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609015,0.000000,0.000000,0.250000,0,0);}
.m1e_c00082{transform:matrix(0.640788,0.003845,-0.001500,0.249996,0,0);-ms-transform:matrix(0.640788,0.003845,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.640788,0.003845,-0.001500,0.249996,0,0);}
.m5_c00082{transform:matrix(0.655590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.655590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.655590,0.000000,0.000000,0.250000,0,0);}
.m18_c00082{transform:matrix(0.668798,0.004013,-0.001500,0.249996,0,0);-ms-transform:matrix(0.668798,0.004013,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.668798,0.004013,-0.001500,0.249996,0,0);}
.m17_c00082{transform:matrix(0.716422,0.004299,-0.001500,0.249996,0,0);-ms-transform:matrix(0.716422,0.004299,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.716422,0.004299,-0.001500,0.249996,0,0);}
.mf_c00082{transform:matrix(0.733877,0.004403,-0.001500,0.249996,0,0);-ms-transform:matrix(0.733877,0.004403,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.733877,0.004403,-0.001500,0.249996,0,0);}
.m4_c00082{transform:matrix(0.917825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.917825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.917825,0.000000,0.000000,0.250000,0,0);}
.m7_c00082{transform:matrix(0.950718,0.005704,-0.001500,0.249996,0,0);-ms-transform:matrix(0.950718,0.005704,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.950718,0.005704,-0.001500,0.249996,0,0);}
.me_c00082{transform:matrix(1.166139,0.006997,-0.001500,0.249996,0,0);-ms-transform:matrix(1.166139,0.006997,-0.001500,0.249996,0,0);-webkit-transform:matrix(1.166139,0.006997,-0.001500,0.249996,0,0);}
.m1a_c00082{transform:matrix(2.494190,0.014965,-0.001500,0.249996,0,0);-ms-transform:matrix(2.494190,0.014965,-0.001500,0.249996,0,0);-webkit-transform:matrix(2.494190,0.014965,-0.001500,0.249996,0,0);}
.m0_c00082{transform:matrix(3.753000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.753000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.753000,0.000000,0.000000,0.250000,0,0);}
.v0_c00082{vertical-align:0.000000px;}
.ls0_c00082{letter-spacing:0.000000px;}
.sc__c00082{text-shadow:none;}
.sc0_c00082{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__c00082{-webkit-text-stroke:0px transparent;}
.sc0_c00082{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00082{word-spacing:0.000000px;}
.fc0_c00082{color:transparent;}
.fs0_c00082{font-size:18.000000px;}
.fs3_c00082{font-size:72.001296px;}
.fs1_c00082{font-size:84.001512px;}
.fs2_c00082{font-size:114.002052px;}
.y0_c00082{bottom:0.000000px;}
.y1a_c00082{bottom:486.004884px;}
.y19_c00082{bottom:486.657771px;}
.y18_c00082{bottom:487.124358px;}
.y17_c00082{bottom:487.733469px;}
.y16_c00082{bottom:488.252904px;}
.y15_c00082{bottom:489.473061px;}
.y14_c00082{bottom:489.756651px;}
.y13_c00082{bottom:490.385238px;}
.y12_c00082{bottom:490.767396px;}
.y11_c00082{bottom:490.955838px;}
.y10_c00082{bottom:491.134074px;}
.yf_c00082{bottom:491.547894px;}
.ye_c00082{bottom:557.296098px;}
.yd_c00082{bottom:558.006120px;}
.yc_c00082{bottom:558.773322px;}
.yb_c00082{bottom:559.956771px;}
.ya_c00082{bottom:561.178668px;}
.y9_c00082{bottom:562.617582px;}
.y8_c00082{bottom:563.218035px;}
.y7_c00082{bottom:605.971251px;}
.y6_c00082{bottom:606.239721px;}
.y5_c00082{bottom:607.127949px;}
.y4_c00082{bottom:607.788900px;}
.y3_c00082{bottom:608.077251px;}
.y2_c00082{bottom:609.930000px;}
.y1_c00082{bottom:694.626000px;}
.h2_c00082{height:18.000000px;}
.h5_c00082{height:72.001296px;}
.h3_c00082{height:84.001512px;}
.h4_c00082{height:114.002052px;}
.h0_c00082{height:711.720000px;}
.h1_c00082{height:711.750000px;}
.w1_c00082{width:945.750000px;}
.w0_c00082{width:946.050000px;}
.x0_c00082{left:0.000000px;}
.xe_c00082{left:3.348102px;}
.x15_c00082{left:19.942194px;}
.x8_c00082{left:48.802500px;}
.xf_c00082{left:89.173089px;}
.x16_c00082{left:118.618194px;}
.x17_c00082{left:150.025194px;}
.x18_c00082{left:213.718194px;}
.x10_c00082{left:294.740856px;}
.x19_c00082{left:318.482694px;}
.x9_c00082{left:357.594000px;}
.x1a_c00082{left:365.747694px;}
.xa_c00082{left:405.652500px;}
.x1_c00082{left:446.040000px;}
.x11_c00082{left:469.389312px;}
.xb_c00082{left:515.811000px;}
.x2_c00082{left:531.360000px;}
.x3_c00082{left:550.260000px;}
.x1b_c00082{left:569.107194px;}
.x4_c00082{left:589.410000px;}
.x5_c00082{left:602.910000px;}
.x12_c00082{left:638.379795px;}
.x6_c00082{left:648.810000px;}
.x1c_c00082{left:655.679694px;}
.xc_c00082{left:663.849000px;}
.x7_c00082{left:691.200000px;}
.xd_c00082{left:708.594000px;}
.x13_c00082{left:747.996138px;}
.x1d_c00082{left:757.198194px;}
.x1e_c00082{left:834.962694px;}
.x14_c00082{left:849.332526px;}
.x1f_c00082{left:943.777194px;}
@media print{
.v0_c00082{vertical-align:0.000000pt;}
.ls0_c00082{letter-spacing:0.000000pt;}
.ws0_c00082{word-spacing:0.000000pt;}
.fs0_c00082{font-size:16.000000pt;}
.fs3_c00082{font-size:64.001152pt;}
.fs1_c00082{font-size:74.668011pt;}
.fs2_c00082{font-size:101.335157pt;}
.y0_c00082{bottom:0.000000pt;}
.y1a_c00082{bottom:432.004341pt;}
.y19_c00082{bottom:432.584685pt;}
.y18_c00082{bottom:432.999429pt;}
.y17_c00082{bottom:433.540861pt;}
.y16_c00082{bottom:434.002581pt;}
.y15_c00082{bottom:435.087165pt;}
.y14_c00082{bottom:435.339245pt;}
.y13_c00082{bottom:435.897989pt;}
.y12_c00082{bottom:436.237685pt;}
.y11_c00082{bottom:436.405189pt;}
.y10_c00082{bottom:436.563621pt;}
.yf_c00082{bottom:436.931461pt;}
.ye_c00082{bottom:495.374309pt;}
.yd_c00082{bottom:496.005440pt;}
.yc_c00082{bottom:496.687397pt;}
.yb_c00082{bottom:497.739352pt;}
.ya_c00082{bottom:498.825483pt;}
.y9_c00082{bottom:500.104517pt;}
.y8_c00082{bottom:500.638253pt;}
.y7_c00082{bottom:538.641112pt;}
.y6_c00082{bottom:538.879752pt;}
.y5_c00082{bottom:539.669288pt;}
.y4_c00082{bottom:540.256800pt;}
.y3_c00082{bottom:540.513112pt;}
.y2_c00082{bottom:542.160000pt;}
.y1_c00082{bottom:617.445333pt;}
.h2_c00082{height:16.000000pt;}
.h5_c00082{height:64.001152pt;}
.h3_c00082{height:74.668011pt;}
.h4_c00082{height:101.335157pt;}
.h0_c00082{height:632.640000pt;}
.h1_c00082{height:632.666667pt;}
.w1_c00082{width:840.666667pt;}
.w0_c00082{width:840.933333pt;}
.x0_c00082{left:0.000000pt;}
.xe_c00082{left:2.976091pt;}
.x15_c00082{left:17.726395pt;}
.x8_c00082{left:43.380000pt;}
.xf_c00082{left:79.264968pt;}
.x16_c00082{left:105.438395pt;}
.x17_c00082{left:133.355728pt;}
.x18_c00082{left:189.971728pt;}
.x10_c00082{left:261.991872pt;}
.x19_c00082{left:283.095728pt;}
.x9_c00082{left:317.861333pt;}
.x1a_c00082{left:325.109061pt;}
.xa_c00082{left:360.580000pt;}
.x1_c00082{left:396.480000pt;}
.x11_c00082{left:417.234944pt;}
.xb_c00082{left:458.498667pt;}
.x2_c00082{left:472.320000pt;}
.x3_c00082{left:489.120000pt;}
.x1b_c00082{left:505.873061pt;}
.x4_c00082{left:523.920000pt;}
.x5_c00082{left:535.920000pt;}
.x12_c00082{left:567.448707pt;}
.x6_c00082{left:576.720000pt;}
.x1c_c00082{left:582.826395pt;}
.xc_c00082{left:590.088000pt;}
.x7_c00082{left:614.400000pt;}
.xd_c00082{left:629.861333pt;}
.x13_c00082{left:664.885456pt;}
.x1d_c00082{left:673.065061pt;}
.x1e_c00082{left:742.189061pt;}
.x14_c00082{left:754.962245pt;}
.x1f_c00082{left:838.913061pt;}
}





/* 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_c00083 {
    display:none;
  }
  .loading-indicator_c00083.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00083 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_c00083 { 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_c00083" -> "#page-container .classname_c00083")
 */
.pf_c00083 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00083 { /* 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_c00083.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00083 { /* 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_c00083 { /* 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_c00083 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00083 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00083 {overflow:visible;}
  }
}
.c_c00083 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00083 { /* 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_c00083:after { /* webkit #35443 */
  content: '';
}
.t_c00083:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00083 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 */
}
.__c00083 { /* 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_c00083 { /* info for Javascript */
  display:none;
}
.l_c00083 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00083 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00083 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00083: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_c00083 {
    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_c00083.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00083.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_c00083 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00083{font-family:sans-serif;visibility:hidden;}
.sc__c00083{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00083{-webkit-text-stroke:0px transparent;}
}
.y0_c00083{bottom:0.000000px;}
.h0_c00083{height:711.720000px;}
.h1_c00083{height:711.750000px;}
.w1_c00083{width:945.750000px;}
.w0_c00083{width:946.050000px;}
.x0_c00083{left:0.000000px;}
@media print{
.y0_c00083{bottom:0.000000pt;}
.h0_c00083{height:632.640000pt;}
.h1_c00083{height:632.666667pt;}
.w1_c00083{width:840.666667pt;}
.w0_c00083{width:840.933333pt;}
.x0_c00083{left:0.000000pt;}
}





/* 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_c00084 {
    display:none;
  }
  .loading-indicator_c00084.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00084 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_c00084 { 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_c00084" -> "#page-container .classname_c00084")
 */
.pf_c00084 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00084 { /* 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_c00084.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00084 { /* 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_c00084 { /* 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_c00084 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00084 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00084 {overflow:visible;}
  }
}
.c_c00084 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00084 { /* 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_c00084:after { /* webkit #35443 */
  content: '';
}
.t_c00084:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00084 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 */
}
.__c00084 { /* 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_c00084 { /* info for Javascript */
  display:none;
}
.l_c00084 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00084 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00084 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00084: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_c00084 {
    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_c00084.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00084.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_c00084 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00084{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00084;src:url('chunks/assets/font_34ef06f37df79a36ad740a8f.woff2')format("woff");}.ff1_c00084{font-family:ff1_c00084;line-height:1.000000;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;}
.m8_c00084{transform:matrix(0.106065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106065,0.000000,0.000000,0.250000,0,0);}
.m6_c00084{transform:matrix(0.133989,0.000536,-0.001000,0.249998,0,0);-ms-transform:matrix(0.133989,0.000536,-0.001000,0.249998,0,0);-webkit-transform:matrix(0.133989,0.000536,-0.001000,0.249998,0,0);}
.m11_c00084{transform:matrix(0.147735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147735,0.000000,0.000000,0.250000,0,0);}
.m1_c00084{transform:matrix(0.164064,0.000656,-0.001000,0.249998,0,0);-ms-transform:matrix(0.164064,0.000656,-0.001000,0.249998,0,0);-webkit-transform:matrix(0.164064,0.000656,-0.001000,0.249998,0,0);}
.md_c00084{transform:matrix(0.165333,0.000827,-0.001250,0.249997,0,0);-ms-transform:matrix(0.165333,0.000827,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.165333,0.000827,-0.001250,0.249997,0,0);}
.m4_c00084{transform:matrix(0.175479,0.000702,-0.001000,0.249998,0,0);-ms-transform:matrix(0.175479,0.000702,-0.001000,0.249998,0,0);-webkit-transform:matrix(0.175479,0.000702,-0.001000,0.249998,0,0);}
.m7_c00084{transform:matrix(0.212130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212130,0.000000,0.000000,0.250000,0,0);}
.m2_c00084{transform:matrix(0.225328,0.000901,-0.001000,0.249998,0,0);-ms-transform:matrix(0.225328,0.000901,-0.001000,0.249998,0,0);-webkit-transform:matrix(0.225328,0.000901,-0.001000,0.249998,0,0);}
.m14_c00084{transform:matrix(0.232355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232355,0.000000,0.000000,0.250000,0,0);}
.m10_c00084{transform:matrix(0.259612,0.001298,-0.001250,0.249997,0,0);-ms-transform:matrix(0.259612,0.001298,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.259612,0.001298,-0.001250,0.249997,0,0);}
.m3_c00084{transform:matrix(0.267838,0.001071,-0.001000,0.249998,0,0);-ms-transform:matrix(0.267838,0.001071,-0.001000,0.249998,0,0);-webkit-transform:matrix(0.267838,0.001071,-0.001000,0.249998,0,0);}
.m13_c00084{transform:matrix(0.272370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272370,0.000000,0.000000,0.250000,0,0);}
.m5_c00084{transform:matrix(0.301118,0.001204,-0.001000,0.249998,0,0);-ms-transform:matrix(0.301118,0.001204,-0.001000,0.249998,0,0);-webkit-transform:matrix(0.301118,0.001204,-0.001000,0.249998,0,0);}
.mb_c00084{transform:matrix(0.313046,0.001565,-0.001250,0.249997,0,0);-ms-transform:matrix(0.313046,0.001565,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.313046,0.001565,-0.001250,0.249997,0,0);}
.m0_c00084{transform:matrix(0.333322,0.001333,-0.001000,0.249998,0,0);-ms-transform:matrix(0.333322,0.001333,-0.001000,0.249998,0,0);-webkit-transform:matrix(0.333322,0.001333,-0.001000,0.249998,0,0);}
.mf_c00084{transform:matrix(0.359676,0.001798,-0.001250,0.249997,0,0);-ms-transform:matrix(0.359676,0.001798,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.359676,0.001798,-0.001250,0.249997,0,0);}
.m12_c00084{transform:matrix(0.387700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387700,0.000000,0.000000,0.250000,0,0);}
.me_c00084{transform:matrix(0.401250,0.002006,-0.001250,0.249997,0,0);-ms-transform:matrix(0.401250,0.002006,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.401250,0.002006,-0.001250,0.249997,0,0);}
.mc_c00084{transform:matrix(1.268589,0.006343,-0.001250,0.249997,0,0);-ms-transform:matrix(1.268589,0.006343,-0.001250,0.249997,0,0);-webkit-transform:matrix(1.268589,0.006343,-0.001250,0.249997,0,0);}
.ma_c00084{transform:matrix(1.437992,0.007190,-0.001250,0.249997,0,0);-ms-transform:matrix(1.437992,0.007190,-0.001250,0.249997,0,0);-webkit-transform:matrix(1.437992,0.007190,-0.001250,0.249997,0,0);}
.m9_c00084{transform:matrix(1.443427,0.007217,-0.001250,0.249997,0,0);-ms-transform:matrix(1.443427,0.007217,-0.001250,0.249997,0,0);-webkit-transform:matrix(1.443427,0.007217,-0.001250,0.249997,0,0);}
.v0_c00084{vertical-align:0.000000px;}
.ls0_c00084{letter-spacing:0.000000px;}
.sc__c00084{text-shadow:none;}
.sc0_c00084{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__c00084{-webkit-text-stroke:0px transparent;}
.sc0_c00084{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00084{word-spacing:0.000000px;}
.fc0_c00084{color:transparent;}
.fs1_c00084{font-size:18.000000px;}
.fs4_c00084{font-size:108.000000px;}
.fs2_c00084{font-size:162.002025px;}
.fs0_c00084{font-size:174.001392px;}
.fs3_c00084{font-size:354.004425px;}
.y0_c00084{bottom:0.000000px;}
.y13_c00084{bottom:389.475000px;}
.yc_c00084{bottom:412.107953px;}
.yb_c00084{bottom:412.912312px;}
.ya_c00084{bottom:414.181500px;}
.yf_c00084{bottom:423.235552px;}
.ye_c00084{bottom:423.235852px;}
.y10_c00084{bottom:423.236160px;}
.y11_c00084{bottom:423.236812px;}
.y9_c00084{bottom:463.860000px;}
.yd_c00084{bottom:464.131500px;}
.y12_c00084{bottom:504.630000px;}
.y8_c00084{bottom:512.460000px;}
.y7_c00084{bottom:565.456638px;}
.y6_c00084{bottom:566.639076px;}
.y5_c00084{bottom:567.399630px;}
.y4_c00084{bottom:567.619914px;}
.y3_c00084{bottom:568.172820px;}
.y2_c00084{bottom:568.397352px;}
.y1_c00084{bottom:569.160000px;}
.h3_c00084{height:18.000000px;}
.h6_c00084{height:108.000000px;}
.h4_c00084{height:162.002025px;}
.h2_c00084{height:174.001392px;}
.h5_c00084{height:354.004425px;}
.h0_c00084{height:711.720000px;}
.h1_c00084{height:711.750000px;}
.w1_c00084{width:945.750000px;}
.w0_c00084{width:946.050000px;}
.x0_c00084{left:0.000000px;}
.x7_c00084{left:1.350000px;}
.xf_c00084{left:17.010000px;}
.xc_c00084{left:37.260818px;}
.x10_c00084{left:38.610000px;}
.xb_c00084{left:45.576000px;}
.xd_c00084{left:100.440900px;}
.x11_c00084{left:151.740000px;}
.x1_c00084{left:190.525500px;}
.x8_c00084{left:192.885000px;}
.x2_c00084{left:246.658500px;}
.x3_c00084{left:384.885000px;}
.x4_c00084{left:439.956000px;}
.x9_c00084{left:446.722500px;}
.xa_c00084{left:607.594500px;}
.x5_c00084{left:630.094500px;}
.xe_c00084{left:892.630208px;}
.x6_c00084{left:925.704000px;}
@media print{
.v0_c00084{vertical-align:0.000000pt;}
.ls0_c00084{letter-spacing:0.000000pt;}
.ws0_c00084{word-spacing:0.000000pt;}
.fs1_c00084{font-size:16.000000pt;}
.fs4_c00084{font-size:96.000000pt;}
.fs2_c00084{font-size:144.001800pt;}
.fs0_c00084{font-size:154.667904pt;}
.fs3_c00084{font-size:314.670600pt;}
.y0_c00084{bottom:0.000000pt;}
.y13_c00084{bottom:346.200000pt;}
.yc_c00084{bottom:366.318180pt;}
.yb_c00084{bottom:367.033167pt;}
.ya_c00084{bottom:368.161333pt;}
.yf_c00084{bottom:376.209380pt;}
.ye_c00084{bottom:376.209647pt;}
.y10_c00084{bottom:376.209920pt;}
.y11_c00084{bottom:376.210500pt;}
.y9_c00084{bottom:412.320000pt;}
.yd_c00084{bottom:412.561333pt;}
.y12_c00084{bottom:448.560000pt;}
.y8_c00084{bottom:455.520000pt;}
.y7_c00084{bottom:502.628123pt;}
.y6_c00084{bottom:503.679179pt;}
.y5_c00084{bottom:504.355227pt;}
.y4_c00084{bottom:504.551035pt;}
.y3_c00084{bottom:505.042507pt;}
.y2_c00084{bottom:505.242091pt;}
.y1_c00084{bottom:505.920000pt;}
.h3_c00084{height:16.000000pt;}
.h6_c00084{height:96.000000pt;}
.h4_c00084{height:144.001800pt;}
.h2_c00084{height:154.667904pt;}
.h5_c00084{height:314.670600pt;}
.h0_c00084{height:632.640000pt;}
.h1_c00084{height:632.666667pt;}
.w1_c00084{width:840.666667pt;}
.w0_c00084{width:840.933333pt;}
.x0_c00084{left:0.000000pt;}
.x7_c00084{left:1.200000pt;}
.xf_c00084{left:15.120000pt;}
.xc_c00084{left:33.120727pt;}
.x10_c00084{left:34.320000pt;}
.xb_c00084{left:40.512000pt;}
.xd_c00084{left:89.280800pt;}
.x11_c00084{left:134.880000pt;}
.x1_c00084{left:169.356000pt;}
.x8_c00084{left:171.453333pt;}
.x2_c00084{left:219.252000pt;}
.x3_c00084{left:342.120000pt;}
.x4_c00084{left:391.072000pt;}
.x9_c00084{left:397.086667pt;}
.xa_c00084{left:540.084000pt;}
.x5_c00084{left:560.084000pt;}
.xe_c00084{left:793.449073pt;}
.x6_c00084{left:822.848000pt;}
}





/* 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_c00085 {
    display:none;
  }
  .loading-indicator_c00085.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00085 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_c00085 { 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_c00085" -> "#page-container .classname_c00085")
 */
.pf_c00085 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00085 { /* 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_c00085.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00085 { /* 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_c00085 { /* 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_c00085 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00085 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00085 {overflow:visible;}
  }
}
.c_c00085 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00085 { /* 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_c00085:after { /* webkit #35443 */
  content: '';
}
.t_c00085:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00085 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 */
}
.__c00085 { /* 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_c00085 { /* info for Javascript */
  display:none;
}
.l_c00085 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00085 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00085 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00085: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_c00085 {
    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_c00085.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00085.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_c00085 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00085{font-family:sans-serif;visibility:hidden;}
.sc__c00085{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00085{-webkit-text-stroke:0px transparent;}
}
.y0_c00085{bottom:0.000000px;}
.h0_c00085{height:711.720000px;}
.h1_c00085{height:711.750000px;}
.w1_c00085{width:945.750000px;}
.w0_c00085{width:946.050000px;}
.x0_c00085{left:0.000000px;}
@media print{
.y0_c00085{bottom:0.000000pt;}
.h0_c00085{height:632.640000pt;}
.h1_c00085{height:632.666667pt;}
.w1_c00085{width:840.666667pt;}
.w0_c00085{width:840.933333pt;}
.x0_c00085{left:0.000000pt;}
}





/* 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_c00086 {
    display:none;
  }
  .loading-indicator_c00086.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00086 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_c00086 { 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_c00086" -> "#page-container .classname_c00086")
 */
.pf_c00086 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00086 { /* 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_c00086.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00086 { /* 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_c00086 { /* 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_c00086 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00086 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00086 {overflow:visible;}
  }
}
.c_c00086 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00086 { /* 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_c00086:after { /* webkit #35443 */
  content: '';
}
.t_c00086:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00086 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 */
}
.__c00086 { /* 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_c00086 { /* info for Javascript */
  display:none;
}
.l_c00086 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00086 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00086 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00086: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_c00086 {
    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_c00086.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00086.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_c00086 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00086{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00086;src:url('chunks/assets/font_c605e72f209fc835e906f064.woff2')format("woff");}.ff1_c00086{font-family:ff1_c00086;line-height:1.000000;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;}
.m20_c00086{transform:matrix(0.011588,-0.000220,0.004749,0.249955,0,0);-ms-transform:matrix(0.011588,-0.000220,0.004749,0.249955,0,0);-webkit-transform:matrix(0.011588,-0.000220,0.004749,0.249955,0,0);}
.m1a_c00086{transform:matrix(0.015910,-0.000111,0.001750,0.249994,0,0);-ms-transform:matrix(0.015910,-0.000111,0.001750,0.249994,0,0);-webkit-transform:matrix(0.015910,-0.000111,0.001750,0.249994,0,0);}
.m1c_c00086{transform:matrix(0.018247,-0.000347,0.004749,0.249955,0,0);-ms-transform:matrix(0.018247,-0.000347,0.004749,0.249955,0,0);-webkit-transform:matrix(0.018247,-0.000347,0.004749,0.249955,0,0);}
.m52_c00086{transform:matrix(0.048463,-0.000485,0.002500,0.249988,0,0);-ms-transform:matrix(0.048463,-0.000485,0.002500,0.249988,0,0);-webkit-transform:matrix(0.048463,-0.000485,0.002500,0.249988,0,0);}
.m45_c00086{transform:matrix(0.076485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076485,0.000000,0.000000,0.250000,0,0);}
.m1e_c00086{transform:matrix(0.091224,-0.001733,0.004749,0.249955,0,0);-ms-transform:matrix(0.091224,-0.001733,0.004749,0.249955,0,0);-webkit-transform:matrix(0.091224,-0.001733,0.004749,0.249955,0,0);}
.m2a_c00086{transform:matrix(0.100598,-0.002314,0.005748,0.249934,0,0);-ms-transform:matrix(0.100598,-0.002314,0.005748,0.249934,0,0);-webkit-transform:matrix(0.100598,-0.002314,0.005748,0.249934,0,0);}
.ma_c00086{transform:matrix(0.105670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105670,0.000000,0.000000,0.250000,0,0);}
.m27_c00086{transform:matrix(0.124790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124790,0.000000,0.000000,0.250000,0,0);}
.m0_c00086{transform:matrix(0.151530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151530,0.000000,0.000000,0.250000,0,0);}
.m1b_c00086{transform:matrix(0.156311,-0.001094,0.001750,0.249994,0,0);-ms-transform:matrix(0.156311,-0.001094,0.001750,0.249994,0,0);-webkit-transform:matrix(0.156311,-0.001094,0.001750,0.249994,0,0);}
.m22_c00086{transform:matrix(0.157767,-0.002998,0.004749,0.249955,0,0);-ms-transform:matrix(0.157767,-0.002998,0.004749,0.249955,0,0);-webkit-transform:matrix(0.157767,-0.002998,0.004749,0.249955,0,0);}
.m26_c00086{transform:matrix(0.175430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175430,0.000000,0.000000,0.250000,0,0);}
.m25_c00086{transform:matrix(0.175698,-0.003338,0.004749,0.249955,0,0);-ms-transform:matrix(0.175698,-0.003338,0.004749,0.249955,0,0);-webkit-transform:matrix(0.175698,-0.003338,0.004749,0.249955,0,0);}
.m28_c00086{transform:matrix(0.179110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179110,0.000000,0.000000,0.250000,0,0);}
.m8_c00086{transform:matrix(0.179475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179475,0.000000,0.000000,0.250000,0,0);}
.m29_c00086{transform:matrix(0.192840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192840,0.000000,0.000000,0.250000,0,0);}
.m41_c00086{transform:matrix(0.204031,-0.004693,0.005748,0.249934,0,0);-ms-transform:matrix(0.204031,-0.004693,0.005748,0.249934,0,0);-webkit-transform:matrix(0.204031,-0.004693,0.005748,0.249934,0,0);}
.m36_c00086{transform:matrix(0.207435,-0.004771,0.005748,0.249934,0,0);-ms-transform:matrix(0.207435,-0.004771,0.005748,0.249934,0,0);-webkit-transform:matrix(0.207435,-0.004771,0.005748,0.249934,0,0);}
.md_c00086{transform:matrix(0.221398,-0.003100,0.003500,0.249976,0,0);-ms-transform:matrix(0.221398,-0.003100,0.003500,0.249976,0,0);-webkit-transform:matrix(0.221398,-0.003100,0.003500,0.249976,0,0);}
.m16_c00086{transform:matrix(0.224185,-0.001569,0.001750,0.249994,0,0);-ms-transform:matrix(0.224185,-0.001569,0.001750,0.249994,0,0);-webkit-transform:matrix(0.224185,-0.001569,0.001750,0.249994,0,0);}
.m35_c00086{transform:matrix(0.232044,-0.005337,0.005748,0.249934,0,0);-ms-transform:matrix(0.232044,-0.005337,0.005748,0.249934,0,0);-webkit-transform:matrix(0.232044,-0.005337,0.005748,0.249934,0,0);}
.me_c00086{transform:matrix(0.239677,-0.003355,0.003500,0.249976,0,0);-ms-transform:matrix(0.239677,-0.003355,0.003500,0.249976,0,0);-webkit-transform:matrix(0.239677,-0.003355,0.003500,0.249976,0,0);}
.m17_c00086{transform:matrix(0.247594,-0.001733,0.001750,0.249994,0,0);-ms-transform:matrix(0.247594,-0.001733,0.001750,0.249994,0,0);-webkit-transform:matrix(0.247594,-0.001733,0.001750,0.249994,0,0);}
.m32_c00086{transform:matrix(0.250329,-0.005758,0.005748,0.249934,0,0);-ms-transform:matrix(0.250329,-0.005758,0.005748,0.249934,0,0);-webkit-transform:matrix(0.250329,-0.005758,0.005748,0.249934,0,0);}
.m34_c00086{transform:matrix(0.254418,-0.005852,0.005748,0.249934,0,0);-ms-transform:matrix(0.254418,-0.005852,0.005748,0.249934,0,0);-webkit-transform:matrix(0.254418,-0.005852,0.005748,0.249934,0,0);}
.m51_c00086{transform:matrix(0.254547,-0.002545,0.002500,0.249988,0,0);-ms-transform:matrix(0.254547,-0.002545,0.002500,0.249988,0,0);-webkit-transform:matrix(0.254547,-0.002545,0.002500,0.249988,0,0);}
.m5_c00086{transform:matrix(0.254790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254790,0.000000,0.000000,0.250000,0,0);}
.m6_c00086{transform:matrix(0.275375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275375,0.000000,0.000000,0.250000,0,0);}
.m11_c00086{transform:matrix(0.283195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283195,0.000000,0.000000,0.250000,0,0);}
.m37_c00086{transform:matrix(0.293327,-0.006747,0.005748,0.249934,0,0);-ms-transform:matrix(0.293327,-0.006747,0.005748,0.249934,0,0);-webkit-transform:matrix(0.293327,-0.006747,0.005748,0.249934,0,0);}
.mc_c00086{transform:matrix(0.294741,-0.004126,0.003500,0.249976,0,0);-ms-transform:matrix(0.294741,-0.004126,0.003500,0.249976,0,0);-webkit-transform:matrix(0.294741,-0.004126,0.003500,0.249976,0,0);}
.m40_c00086{transform:matrix(0.296252,-0.006814,0.005748,0.249934,0,0);-ms-transform:matrix(0.296252,-0.006814,0.005748,0.249934,0,0);-webkit-transform:matrix(0.296252,-0.006814,0.005748,0.249934,0,0);}
.m33_c00086{transform:matrix(0.302910,-0.006967,0.005748,0.249934,0,0);-ms-transform:matrix(0.302910,-0.006967,0.005748,0.249934,0,0);-webkit-transform:matrix(0.302910,-0.006967,0.005748,0.249934,0,0);}
.m2b_c00086{transform:matrix(0.306494,-0.007049,0.005748,0.249934,0,0);-ms-transform:matrix(0.306494,-0.007049,0.005748,0.249934,0,0);-webkit-transform:matrix(0.306494,-0.007049,0.005748,0.249934,0,0);}
.m24_c00086{transform:matrix(0.323552,-0.006147,0.004749,0.249955,0,0);-ms-transform:matrix(0.323552,-0.006147,0.004749,0.249955,0,0);-webkit-transform:matrix(0.323552,-0.006147,0.004749,0.249955,0,0);}
.m43_c00086{transform:matrix(0.326384,-0.007507,0.005748,0.249934,0,0);-ms-transform:matrix(0.326384,-0.007507,0.005748,0.249934,0,0);-webkit-transform:matrix(0.326384,-0.007507,0.005748,0.249934,0,0);}
.m3_c00086{transform:matrix(0.340505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340505,0.000000,0.000000,0.250000,0,0);}
.m7_c00086{transform:matrix(0.343590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343590,0.000000,0.000000,0.250000,0,0);}
.m15_c00086{transform:matrix(0.343692,-0.002406,0.001750,0.249994,0,0);-ms-transform:matrix(0.343692,-0.002406,0.001750,0.249994,0,0);-webkit-transform:matrix(0.343692,-0.002406,0.001750,0.249994,0,0);}
.m53_c00086{transform:matrix(0.351442,-0.003514,0.002500,0.249988,0,0);-ms-transform:matrix(0.351442,-0.003514,0.002500,0.249988,0,0);-webkit-transform:matrix(0.351442,-0.003514,0.002500,0.249988,0,0);}
.m3b_c00086{transform:matrix(0.355921,-0.008186,0.005748,0.249934,0,0);-ms-transform:matrix(0.355921,-0.008186,0.005748,0.249934,0,0);-webkit-transform:matrix(0.355921,-0.008186,0.005748,0.249934,0,0);}
.m4f_c00086{transform:matrix(0.369312,-0.003693,0.002500,0.249988,0,0);-ms-transform:matrix(0.369312,-0.003693,0.002500,0.249988,0,0);-webkit-transform:matrix(0.369312,-0.003693,0.002500,0.249988,0,0);}
.m30_c00086{transform:matrix(0.373111,-0.008582,0.005748,0.249934,0,0);-ms-transform:matrix(0.373111,-0.008582,0.005748,0.249934,0,0);-webkit-transform:matrix(0.373111,-0.008582,0.005748,0.249934,0,0);}
.m1f_c00086{transform:matrix(0.380801,-0.007235,0.004749,0.249955,0,0);-ms-transform:matrix(0.380801,-0.007235,0.004749,0.249955,0,0);-webkit-transform:matrix(0.380801,-0.007235,0.004749,0.249955,0,0);}
.m42_c00086{transform:matrix(0.381804,-0.008781,0.005748,0.249934,0,0);-ms-transform:matrix(0.381804,-0.008781,0.005748,0.249934,0,0);-webkit-transform:matrix(0.381804,-0.008781,0.005748,0.249934,0,0);}
.m2d_c00086{transform:matrix(0.385343,-0.008863,0.005748,0.249934,0,0);-ms-transform:matrix(0.385343,-0.008863,0.005748,0.249934,0,0);-webkit-transform:matrix(0.385343,-0.008863,0.005748,0.249934,0,0);}
.m54_c00086{transform:matrix(0.388236,-0.003882,0.002500,0.249988,0,0);-ms-transform:matrix(0.388236,-0.003882,0.002500,0.249988,0,0);-webkit-transform:matrix(0.388236,-0.003882,0.002500,0.249988,0,0);}
.m3e_c00086{transform:matrix(0.391736,-0.009010,0.005748,0.249934,0,0);-ms-transform:matrix(0.391736,-0.009010,0.005748,0.249934,0,0);-webkit-transform:matrix(0.391736,-0.009010,0.005748,0.249934,0,0);}
.m13_c00086{transform:matrix(0.395105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395105,0.000000,0.000000,0.250000,0,0);}
.m57_c00086{transform:matrix(0.404170,-0.004042,0.002500,0.249988,0,0);-ms-transform:matrix(0.404170,-0.004042,0.002500,0.249988,0,0);-webkit-transform:matrix(0.404170,-0.004042,0.002500,0.249988,0,0);}
.m48_c00086{transform:matrix(0.422405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422405,0.000000,0.000000,0.250000,0,0);}
.m3d_c00086{transform:matrix(0.426837,-0.009817,0.005748,0.249934,0,0);-ms-transform:matrix(0.426837,-0.009817,0.005748,0.249934,0,0);-webkit-transform:matrix(0.426837,-0.009817,0.005748,0.249934,0,0);}
.m3f_c00086{transform:matrix(0.427862,-0.009841,0.005748,0.249934,0,0);-ms-transform:matrix(0.427862,-0.009841,0.005748,0.249934,0,0);-webkit-transform:matrix(0.427862,-0.009841,0.005748,0.249934,0,0);}
.m23_c00086{transform:matrix(0.477179,-0.009066,0.004749,0.249955,0,0);-ms-transform:matrix(0.477179,-0.009066,0.004749,0.249955,0,0);-webkit-transform:matrix(0.477179,-0.009066,0.004749,0.249955,0,0);}
.m4_c00086{transform:matrix(0.477910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477910,0.000000,0.000000,0.250000,0,0);}
.m2f_c00086{transform:matrix(0.482707,-0.011102,0.005748,0.249934,0,0);-ms-transform:matrix(0.482707,-0.011102,0.005748,0.249934,0,0);-webkit-transform:matrix(0.482707,-0.011102,0.005748,0.249934,0,0);}
.m2e_c00086{transform:matrix(0.493549,-0.011352,0.005748,0.249934,0,0);-ms-transform:matrix(0.493549,-0.011352,0.005748,0.249934,0,0);-webkit-transform:matrix(0.493549,-0.011352,0.005748,0.249934,0,0);}
.m38_c00086{transform:matrix(0.496644,-0.011423,0.005748,0.249934,0,0);-ms-transform:matrix(0.496644,-0.011423,0.005748,0.249934,0,0);-webkit-transform:matrix(0.496644,-0.011423,0.005748,0.249934,0,0);}
.m31_c00086{transform:matrix(0.515759,-0.011862,0.005748,0.249934,0,0);-ms-transform:matrix(0.515759,-0.011862,0.005748,0.249934,0,0);-webkit-transform:matrix(0.515759,-0.011862,0.005748,0.249934,0,0);}
.m1_c00086{transform:matrix(0.537485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537485,0.000000,0.000000,0.250000,0,0);}
.m2c_c00086{transform:matrix(0.541162,-0.012447,0.005748,0.249934,0,0);-ms-transform:matrix(0.541162,-0.012447,0.005748,0.249934,0,0);-webkit-transform:matrix(0.541162,-0.012447,0.005748,0.249934,0,0);}
.m9_c00086{transform:matrix(0.566780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566780,0.000000,0.000000,0.250000,0,0);}
.mf_c00086{transform:matrix(0.570529,-0.007987,0.003500,0.249976,0,0);-ms-transform:matrix(0.570529,-0.007987,0.003500,0.249976,0,0);-webkit-transform:matrix(0.570529,-0.007987,0.003500,0.249976,0,0);}
.m19_c00086{transform:matrix(0.583436,-0.004084,0.001750,0.249994,0,0);-ms-transform:matrix(0.583436,-0.004084,0.001750,0.249994,0,0);-webkit-transform:matrix(0.583436,-0.004084,0.001750,0.249994,0,0);}
.m3a_c00086{transform:matrix(0.614702,-0.014138,0.005748,0.249934,0,0);-ms-transform:matrix(0.614702,-0.014138,0.005748,0.249934,0,0);-webkit-transform:matrix(0.614702,-0.014138,0.005748,0.249934,0,0);}
.m50_c00086{transform:matrix(0.621424,-0.006214,0.002500,0.249988,0,0);-ms-transform:matrix(0.621424,-0.006214,0.002500,0.249988,0,0);-webkit-transform:matrix(0.621424,-0.006214,0.002500,0.249988,0,0);}
.m12_c00086{transform:matrix(0.624950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.624950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.624950,0.000000,0.000000,0.250000,0,0);}
.m4a_c00086{transform:matrix(0.633030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.633030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.633030,0.000000,0.000000,0.250000,0,0);}
.m47_c00086{transform:matrix(0.650690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.650690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.650690,0.000000,0.000000,0.250000,0,0);}
.m2_c00086{transform:matrix(0.706745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.706745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.706745,0.000000,0.000000,0.250000,0,0);}
.m39_c00086{transform:matrix(0.715941,-0.016467,0.005748,0.249934,0,0);-ms-transform:matrix(0.715941,-0.016467,0.005748,0.249934,0,0);-webkit-transform:matrix(0.715941,-0.016467,0.005748,0.249934,0,0);}
.m10_c00086{transform:matrix(0.734383,-0.010281,0.003500,0.249976,0,0);-ms-transform:matrix(0.734383,-0.010281,0.003500,0.249976,0,0);-webkit-transform:matrix(0.734383,-0.010281,0.003500,0.249976,0,0);}
.m3c_c00086{transform:matrix(0.771066,-0.017735,0.005748,0.249934,0,0);-ms-transform:matrix(0.771066,-0.017735,0.005748,0.249934,0,0);-webkit-transform:matrix(0.771066,-0.017735,0.005748,0.249934,0,0);}
.mb_c00086{transform:matrix(0.936960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.936960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.936960,0.000000,0.000000,0.250000,0,0);}
.m4c_c00086{transform:matrix(0.961942,-0.009619,0.002500,0.249988,0,0);-ms-transform:matrix(0.961942,-0.009619,0.002500,0.249988,0,0);-webkit-transform:matrix(0.961942,-0.009619,0.002500,0.249988,0,0);}
.m4b_c00086{transform:matrix(1.003655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.003655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.003655,0.000000,0.000000,0.250000,0,0);}
.m49_c00086{transform:matrix(1.103290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.103290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.103290,0.000000,0.000000,0.250000,0,0);}
.m1d_c00086{transform:matrix(1.181152,-0.022442,0.004749,0.249955,0,0);-ms-transform:matrix(1.181152,-0.022442,0.004749,0.249955,0,0);-webkit-transform:matrix(1.181152,-0.022442,0.004749,0.249955,0,0);}
.m21_c00086{transform:matrix(1.217575,-0.023134,0.004749,0.249955,0,0);-ms-transform:matrix(1.217575,-0.023134,0.004749,0.249955,0,0);-webkit-transform:matrix(1.217575,-0.023134,0.004749,0.249955,0,0);}
.m46_c00086{transform:matrix(1.260805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.260805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.260805,0.000000,0.000000,0.250000,0,0);}
.m14_c00086{transform:matrix(1.503825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.503825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.503825,0.000000,0.000000,0.250000,0,0);}
.m18_c00086{transform:matrix(2.137958,-0.014966,0.001750,0.249994,0,0);-ms-transform:matrix(2.137958,-0.014966,0.001750,0.249994,0,0);-webkit-transform:matrix(2.137958,-0.014966,0.001750,0.249994,0,0);}
.m44_c00086{transform:matrix(2.227285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.227285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.227285,0.000000,0.000000,0.250000,0,0);}
.m56_c00086{transform:matrix(2.324984,-0.023250,0.002500,0.249988,0,0);-ms-transform:matrix(2.324984,-0.023250,0.002500,0.249988,0,0);-webkit-transform:matrix(2.324984,-0.023250,0.002500,0.249988,0,0);}
.m4e_c00086{transform:matrix(2.576531,-0.025765,0.002500,0.249988,0,0);-ms-transform:matrix(2.576531,-0.025765,0.002500,0.249988,0,0);-webkit-transform:matrix(2.576531,-0.025765,0.002500,0.249988,0,0);}
.m55_c00086{transform:matrix(3.729334,-0.037293,0.002500,0.249988,0,0);-ms-transform:matrix(3.729334,-0.037293,0.002500,0.249988,0,0);-webkit-transform:matrix(3.729334,-0.037293,0.002500,0.249988,0,0);}
.m4d_c00086{transform:matrix(4.565977,-0.045660,0.002500,0.249988,0,0);-ms-transform:matrix(4.565977,-0.045660,0.002500,0.249988,0,0);-webkit-transform:matrix(4.565977,-0.045660,0.002500,0.249988,0,0);}
.v0_c00086{vertical-align:0.000000px;}
.ls0_c00086{letter-spacing:0.000000px;}
.sc__c00086{text-shadow:none;}
.sc0_c00086{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__c00086{-webkit-text-stroke:0px transparent;}
.sc0_c00086{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00086{word-spacing:0.000000px;}
.fc0_c00086{color:transparent;}
.fsd_c00086{font-size:18.000000px;}
.fse_c00086{font-size:30.001500px;}
.fs1_c00086{font-size:72.000000px;}
.fsc_c00086{font-size:72.019041px;}
.fsb_c00086{font-size:78.020628px;}
.fs6_c00086{font-size:84.015161px;}
.fsa_c00086{font-size:90.000000px;}
.fs5_c00086{font-size:90.016244px;}
.fs4_c00086{font-size:96.002352px;}
.fs0_c00086{font-size:102.000000px;}
.fs3_c00086{font-size:120.000000px;}
.fs9_c00086{font-size:144.000000px;}
.fs2_c00086{font-size:144.014111px;}
.fs7_c00086{font-size:210.000000px;}
.fs8_c00086{font-size:354.000000px;}
.y3c_c00086{bottom:-3.508500px;}
.y3d_c00086{bottom:-3.216945px;}
.y3e_c00086{bottom:-1.848270px;}
.y3f_c00086{bottom:-1.102650px;}
.y40_c00086{bottom:-0.779145px;}
.y41_c00086{bottom:-0.455370px;}
.y42_c00086{bottom:-0.274455px;}
.y45_c00086{bottom:-0.257910px;}
.y43_c00086{bottom:-0.103695px;}
.y0_c00086{bottom:0.000000px;}
.y44_c00086{bottom:0.009705px;}
.y46_c00086{bottom:1.915530px;}
.y47_c00086{bottom:2.984520px;}
.y3b_c00086{bottom:13.819500px;}
.y3a_c00086{bottom:14.523000px;}
.y39_c00086{bottom:15.661500px;}
.y38_c00086{bottom:15.780000px;}
.y1d_c00086{bottom:54.540000px;}
.y2c_c00086{bottom:64.138691px;}
.y2d_c00086{bottom:65.519445px;}
.y2e_c00086{bottom:66.478379px;}
.y2f_c00086{bottom:67.785794px;}
.y30_c00086{bottom:68.528346px;}
.y31_c00086{bottom:71.219070px;}
.y32_c00086{bottom:72.241560px;}
.y33_c00086{bottom:73.210968px;}
.y34_c00086{bottom:73.398858px;}
.y35_c00086{bottom:73.945428px;}
.y36_c00086{bottom:74.787362px;}
.y37_c00086{bottom:75.520113px;}
.y1e_c00086{bottom:90.993000px;}
.y1c_c00086{bottom:91.260000px;}
.y1f_c00086{bottom:91.394132px;}
.y20_c00086{bottom:92.190806px;}
.y21_c00086{bottom:93.755312px;}
.y22_c00086{bottom:96.638856px;}
.y23_c00086{bottom:100.984579px;}
.y24_c00086{bottom:102.319385px;}
.y25_c00086{bottom:104.915544px;}
.y26_c00086{bottom:105.691001px;}
.y27_c00086{bottom:106.995170px;}
.y28_c00086{bottom:109.061064px;}
.y29_c00086{bottom:109.797846px;}
.y2a_c00086{bottom:111.303426px;}
.y2b_c00086{bottom:112.332734px;}
.y1b_c00086{bottom:226.881000px;}
.y14_c00086{bottom:230.283663px;}
.y15_c00086{bottom:230.581933px;}
.y16_c00086{bottom:233.164888px;}
.y17_c00086{bottom:235.195786px;}
.y18_c00086{bottom:236.535387px;}
.y19_c00086{bottom:238.634712px;}
.y1a_c00086{bottom:325.350000px;}
.y10_c00086{bottom:372.058500px;}
.y11_c00086{bottom:373.254360px;}
.y12_c00086{bottom:377.053609px;}
.y13_c00086{bottom:377.887149px;}
.y9_c00086{bottom:411.472500px;}
.ya_c00086{bottom:411.803239px;}
.yb_c00086{bottom:412.175559px;}
.yc_c00086{bottom:413.273597px;}
.yd_c00086{bottom:414.774330px;}
.ye_c00086{bottom:416.087198px;}
.yf_c00086{bottom:417.451893px;}
.y8_c00086{bottom:479.242500px;}
.y3_c00086{bottom:512.721000px;}
.y4_c00086{bottom:514.291149px;}
.y5_c00086{bottom:515.723055px;}
.y6_c00086{bottom:516.647454px;}
.y7_c00086{bottom:517.897878px;}
.y2_c00086{bottom:547.269000px;}
.y1_c00086{bottom:619.027500px;}
.hf_c00086{height:18.000000px;}
.h10_c00086{height:30.001500px;}
.h3_c00086{height:72.000000px;}
.he_c00086{height:72.019041px;}
.hd_c00086{height:78.020628px;}
.h8_c00086{height:84.015161px;}
.hc_c00086{height:90.000000px;}
.h7_c00086{height:90.016244px;}
.h6_c00086{height:96.002352px;}
.h2_c00086{height:102.000000px;}
.h5_c00086{height:120.000000px;}
.hb_c00086{height:144.000000px;}
.h4_c00086{height:144.014111px;}
.h9_c00086{height:210.000000px;}
.ha_c00086{height:354.000000px;}
.h0_c00086{height:711.720000px;}
.h1_c00086{height:711.750000px;}
.w1_c00086{width:945.750000px;}
.w0_c00086{width:946.050000px;}
.x0_c00086{left:0.000000px;}
.x27_c00086{left:17.565000px;}
.x1_c00086{left:18.900000px;}
.xb_c00086{left:19.980000px;}
.x28_c00086{left:52.203000px;}
.x1f_c00086{left:63.445340px;}
.x11_c00086{left:73.170000px;}
.x15_c00086{left:76.870500px;}
.x1c_c00086{left:81.799500px;}
.xd_c00086{left:113.017500px;}
.x29_c00086{left:120.225000px;}
.x16_c00086{left:124.119000px;}
.x2_c00086{left:130.140000px;}
.x45_c00086{left:142.104000px;}
.x34_c00086{left:158.008558px;}
.x17_c00086{left:177.307500px;}
.x12_c00086{left:188.460000px;}
.x3_c00086{left:224.910000px;}
.x35_c00086{left:231.739998px;}
.x20_c00086{left:243.520100px;}
.x2a_c00086{left:245.596500px;}
.x46_c00086{left:278.971500px;}
.x1d_c00086{left:281.760000px;}
.x4_c00086{left:317.520000px;}
.x1e_c00086{left:325.630500px;}
.xe_c00086{left:327.450000px;}
.x36_c00086{left:332.368147px;}
.x18_c00086{left:334.170000px;}
.x47_c00086{left:353.533500px;}
.x21_c00086{left:370.469338px;}
.x13_c00086{left:383.670000px;}
.x48_c00086{left:385.884000px;}
.x37_c00086{left:389.448758px;}
.xf_c00086{left:393.478500px;}
.xc_c00086{left:417.690000px;}
.x14_c00086{left:428.220000px;}
.x2b_c00086{left:434.541000px;}
.x49_c00086{left:436.353000px;}
.x4b_c00086{left:438.007500px;}
.x22_c00086{left:454.163598px;}
.x5_c00086{left:461.430000px;}
.x4a_c00086{left:464.769000px;}
.x10_c00086{left:482.794500px;}
.x2c_c00086{left:492.576000px;}
.x6_c00086{left:508.410000px;}
.x19_c00086{left:548.560500px;}
.x7_c00086{left:581.580000px;}
.x23_c00086{left:585.346065px;}
.x3e_c00086{left:589.410000px;}
.x38_c00086{left:596.484367px;}
.x2d_c00086{left:605.452500px;}
.x42_c00086{left:629.320500px;}
.x2e_c00086{left:639.168000px;}
.x3f_c00086{left:642.600000px;}
.x4c_c00086{left:655.351500px;}
.x40_c00086{left:657.180000px;}
.x43_c00086{left:666.030000px;}
.x39_c00086{left:675.132446px;}
.x8_c00086{left:676.620000px;}
.x44_c00086{left:688.713000px;}
.x2f_c00086{left:695.871000px;}
.x41_c00086{left:724.680000px;}
.x1a_c00086{left:736.113000px;}
.x3a_c00086{left:749.645557px;}
.x4d_c00086{left:762.250500px;}
.x3b_c00086{left:764.078869px;}
.x30_c00086{left:785.692500px;}
.x3c_c00086{left:806.178564px;}
.x31_c00086{left:817.726500px;}
.x9_c00086{left:832.410000px;}
.xa_c00086{left:861.570000px;}
.x3d_c00086{left:870.907933px;}
.x32_c00086{left:883.186500px;}
.x25_c00086{left:905.040000px;}
.x33_c00086{left:927.939000px;}
.x1b_c00086{left:931.069500px;}
.x26_c00086{left:933.390000px;}
.x24_c00086{left:937.440000px;}
@media print{
.v0_c00086{vertical-align:0.000000pt;}
.ls0_c00086{letter-spacing:0.000000pt;}
.ws0_c00086{word-spacing:0.000000pt;}
.fsd_c00086{font-size:16.000000pt;}
.fse_c00086{font-size:26.668000pt;}
.fs1_c00086{font-size:64.000000pt;}
.fsc_c00086{font-size:64.016926pt;}
.fsb_c00086{font-size:69.351670pt;}
.fs6_c00086{font-size:74.680143pt;}
.fsa_c00086{font-size:80.000000pt;}
.fs5_c00086{font-size:80.014439pt;}
.fs4_c00086{font-size:85.335424pt;}
.fs0_c00086{font-size:90.666667pt;}
.fs3_c00086{font-size:106.666667pt;}
.fs9_c00086{font-size:128.000000pt;}
.fs2_c00086{font-size:128.012543pt;}
.fs7_c00086{font-size:186.666667pt;}
.fs8_c00086{font-size:314.666667pt;}
.y3c_c00086{bottom:-3.118667pt;}
.y3d_c00086{bottom:-2.859507pt;}
.y3e_c00086{bottom:-1.642907pt;}
.y3f_c00086{bottom:-0.980133pt;}
.y40_c00086{bottom:-0.692573pt;}
.y41_c00086{bottom:-0.404773pt;}
.y42_c00086{bottom:-0.243960pt;}
.y45_c00086{bottom:-0.229253pt;}
.y43_c00086{bottom:-0.092173pt;}
.y0_c00086{bottom:0.000000pt;}
.y44_c00086{bottom:0.008627pt;}
.y46_c00086{bottom:1.702693pt;}
.y47_c00086{bottom:2.652907pt;}
.y3b_c00086{bottom:12.284000pt;}
.y3a_c00086{bottom:12.909333pt;}
.y39_c00086{bottom:13.921333pt;}
.y38_c00086{bottom:14.026667pt;}
.y1d_c00086{bottom:48.480000pt;}
.y2c_c00086{bottom:57.012169pt;}
.y2d_c00086{bottom:58.239507pt;}
.y2e_c00086{bottom:59.091892pt;}
.y2f_c00086{bottom:60.254039pt;}
.y30_c00086{bottom:60.914085pt;}
.y31_c00086{bottom:63.305840pt;}
.y32_c00086{bottom:64.214720pt;}
.y33_c00086{bottom:65.076416pt;}
.y34_c00086{bottom:65.243429pt;}
.y35_c00086{bottom:65.729269pt;}
.y36_c00086{bottom:66.477655pt;}
.y37_c00086{bottom:67.128989pt;}
.y1e_c00086{bottom:80.882667pt;}
.y1c_c00086{bottom:81.120000pt;}
.y1f_c00086{bottom:81.239228pt;}
.y20_c00086{bottom:81.947383pt;}
.y21_c00086{bottom:83.338055pt;}
.y22_c00086{bottom:85.901205pt;}
.y23_c00086{bottom:89.764071pt;}
.y24_c00086{bottom:90.950564pt;}
.y25_c00086{bottom:93.258261pt;}
.y26_c00086{bottom:93.947556pt;}
.y27_c00086{bottom:95.106817pt;}
.y28_c00086{bottom:96.943168pt;}
.y29_c00086{bottom:97.598085pt;}
.y2a_c00086{bottom:98.936379pt;}
.y2b_c00086{bottom:99.851319pt;}
.y1b_c00086{bottom:201.672000pt;}
.y14_c00086{bottom:204.696589pt;}
.y15_c00086{bottom:204.961719pt;}
.y16_c00086{bottom:207.257679pt;}
.y17_c00086{bottom:209.062921pt;}
.y18_c00086{bottom:210.253677pt;}
.y19_c00086{bottom:212.119744pt;}
.y1a_c00086{bottom:289.200000pt;}
.y10_c00086{bottom:330.718667pt;}
.y11_c00086{bottom:331.781653pt;}
.y12_c00086{bottom:335.158764pt;}
.y13_c00086{bottom:335.899688pt;}
.y9_c00086{bottom:365.753333pt;}
.ya_c00086{bottom:366.047324pt;}
.yb_c00086{bottom:366.378275pt;}
.yc_c00086{bottom:367.354308pt;}
.yd_c00086{bottom:368.688293pt;}
.ye_c00086{bottom:369.855287pt;}
.yf_c00086{bottom:371.068349pt;}
.y8_c00086{bottom:425.993333pt;}
.y3_c00086{bottom:455.752000pt;}
.y4_c00086{bottom:457.147688pt;}
.y5_c00086{bottom:458.420493pt;}
.y6_c00086{bottom:459.242181pt;}
.y7_c00086{bottom:460.353669pt;}
.y2_c00086{bottom:486.461333pt;}
.y1_c00086{bottom:550.246667pt;}
.hf_c00086{height:16.000000pt;}
.h10_c00086{height:26.668000pt;}
.h3_c00086{height:64.000000pt;}
.he_c00086{height:64.016926pt;}
.hd_c00086{height:69.351670pt;}
.h8_c00086{height:74.680143pt;}
.hc_c00086{height:80.000000pt;}
.h7_c00086{height:80.014439pt;}
.h6_c00086{height:85.335424pt;}
.h2_c00086{height:90.666667pt;}
.h5_c00086{height:106.666667pt;}
.hb_c00086{height:128.000000pt;}
.h4_c00086{height:128.012543pt;}
.h9_c00086{height:186.666667pt;}
.ha_c00086{height:314.666667pt;}
.h0_c00086{height:632.640000pt;}
.h1_c00086{height:632.666667pt;}
.w1_c00086{width:840.666667pt;}
.w0_c00086{width:840.933333pt;}
.x0_c00086{left:0.000000pt;}
.x27_c00086{left:15.613333pt;}
.x1_c00086{left:16.800000pt;}
.xb_c00086{left:17.760000pt;}
.x28_c00086{left:46.402667pt;}
.x1f_c00086{left:56.395857pt;}
.x11_c00086{left:65.040000pt;}
.x15_c00086{left:68.329333pt;}
.x1c_c00086{left:72.710667pt;}
.xd_c00086{left:100.460000pt;}
.x29_c00086{left:106.866667pt;}
.x16_c00086{left:110.328000pt;}
.x2_c00086{left:115.680000pt;}
.x45_c00086{left:126.314667pt;}
.x34_c00086{left:140.452052pt;}
.x17_c00086{left:157.606667pt;}
.x12_c00086{left:167.520000pt;}
.x3_c00086{left:199.920000pt;}
.x35_c00086{left:205.991109pt;}
.x20_c00086{left:216.462311pt;}
.x2a_c00086{left:218.308000pt;}
.x46_c00086{left:247.974667pt;}
.x1d_c00086{left:250.453333pt;}
.x4_c00086{left:282.240000pt;}
.x1e_c00086{left:289.449333pt;}
.xe_c00086{left:291.066667pt;}
.x36_c00086{left:295.438353pt;}
.x18_c00086{left:297.040000pt;}
.x47_c00086{left:314.252000pt;}
.x21_c00086{left:329.306079pt;}
.x13_c00086{left:341.040000pt;}
.x48_c00086{left:343.008000pt;}
.x37_c00086{left:346.176673pt;}
.xf_c00086{left:349.758667pt;}
.xc_c00086{left:371.280000pt;}
.x14_c00086{left:380.640000pt;}
.x2b_c00086{left:386.258667pt;}
.x49_c00086{left:387.869333pt;}
.x4b_c00086{left:389.340000pt;}
.x22_c00086{left:403.700976pt;}
.x5_c00086{left:410.160000pt;}
.x4a_c00086{left:413.128000pt;}
.x10_c00086{left:429.150667pt;}
.x2c_c00086{left:437.845333pt;}
.x6_c00086{left:451.920000pt;}
.x19_c00086{left:487.609333pt;}
.x7_c00086{left:516.960000pt;}
.x23_c00086{left:520.307613pt;}
.x3e_c00086{left:523.920000pt;}
.x38_c00086{left:530.208327pt;}
.x2d_c00086{left:538.180000pt;}
.x42_c00086{left:559.396000pt;}
.x2e_c00086{left:568.149333pt;}
.x3f_c00086{left:571.200000pt;}
.x4c_c00086{left:582.534667pt;}
.x40_c00086{left:584.160000pt;}
.x43_c00086{left:592.026667pt;}
.x39_c00086{left:600.117729pt;}
.x8_c00086{left:601.440000pt;}
.x44_c00086{left:612.189333pt;}
.x2f_c00086{left:618.552000pt;}
.x41_c00086{left:644.160000pt;}
.x1a_c00086{left:654.322667pt;}
.x3a_c00086{left:666.351607pt;}
.x4d_c00086{left:677.556000pt;}
.x3b_c00086{left:679.181217pt;}
.x30_c00086{left:698.393333pt;}
.x3c_c00086{left:716.603168pt;}
.x31_c00086{left:726.868000pt;}
.x9_c00086{left:739.920000pt;}
.xa_c00086{left:765.840000pt;}
.x3d_c00086{left:774.140385pt;}
.x32_c00086{left:785.054667pt;}
.x25_c00086{left:804.480000pt;}
.x33_c00086{left:824.834667pt;}
.x1b_c00086{left:827.617333pt;}
.x26_c00086{left:829.680000pt;}
.x24_c00086{left:833.280000pt;}
}





/* 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_c00087 {
    display:none;
  }
  .loading-indicator_c00087.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00087 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_c00087 { 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_c00087" -> "#page-container .classname_c00087")
 */
.pf_c00087 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00087 { /* 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_c00087.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00087 { /* 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_c00087 { /* 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_c00087 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00087 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00087 {overflow:visible;}
  }
}
.c_c00087 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00087 { /* 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_c00087:after { /* webkit #35443 */
  content: '';
}
.t_c00087:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00087 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 */
}
.__c00087 { /* 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_c00087 { /* info for Javascript */
  display:none;
}
.l_c00087 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00087 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00087 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00087: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_c00087 {
    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_c00087.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00087.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_c00087 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00087{font-family:sans-serif;visibility:hidden;}
.sc__c00087{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00087{-webkit-text-stroke:0px transparent;}
}
.y0_c00087{bottom:0.000000px;}
.h0_c00087{height:711.720000px;}
.h1_c00087{height:711.750000px;}
.w1_c00087{width:945.750000px;}
.w0_c00087{width:946.050000px;}
.x0_c00087{left:0.000000px;}
@media print{
.y0_c00087{bottom:0.000000pt;}
.h0_c00087{height:632.640000pt;}
.h1_c00087{height:632.666667pt;}
.w1_c00087{width:840.666667pt;}
.w0_c00087{width:840.933333pt;}
.x0_c00087{left:0.000000pt;}
}





/* 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_c00088 {
    display:none;
  }
  .loading-indicator_c00088.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00088 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_c00088 { 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_c00088" -> "#page-container .classname_c00088")
 */
.pf_c00088 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00088 { /* 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_c00088.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00088 { /* 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_c00088 { /* 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_c00088 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00088 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00088 {overflow:visible;}
  }
}
.c_c00088 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00088 { /* 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_c00088:after { /* webkit #35443 */
  content: '';
}
.t_c00088:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00088 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 */
}
.__c00088 { /* 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_c00088 { /* info for Javascript */
  display:none;
}
.l_c00088 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00088 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00088 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00088: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_c00088 {
    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_c00088.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00088.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_c00088 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00088{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00088;src:url('chunks/assets/font_7ef351174269f1343c6a59b1.woff2')format("woff");}.ff1_c00088{font-family:ff1_c00088;line-height:1.000000;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;}
.m15_c00088{transform:matrix(0.050699,0.000811,-0.003999,0.249968,0,0);-ms-transform:matrix(0.050699,0.000811,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.050699,0.000811,-0.003999,0.249968,0,0);}
.m21_c00088{transform:matrix(0.081810,0.001309,-0.003999,0.249968,0,0);-ms-transform:matrix(0.081810,0.001309,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.081810,0.001309,-0.003999,0.249968,0,0);}
.m16_c00088{transform:matrix(0.119905,0.001918,-0.003999,0.249968,0,0);-ms-transform:matrix(0.119905,0.001918,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.119905,0.001918,-0.003999,0.249968,0,0);}
.m19_c00088{transform:matrix(0.129333,0.002069,-0.003999,0.249968,0,0);-ms-transform:matrix(0.129333,0.002069,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.129333,0.002069,-0.003999,0.249968,0,0);}
.m9_c00088{transform:matrix(0.224971,0.003600,-0.003999,0.249968,0,0);-ms-transform:matrix(0.224971,0.003600,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.224971,0.003600,-0.003999,0.249968,0,0);}
.md_c00088{transform:matrix(0.286663,0.004587,-0.003999,0.249968,0,0);-ms-transform:matrix(0.286663,0.004587,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.286663,0.004587,-0.003999,0.249968,0,0);}
.ma_c00088{transform:matrix(0.304196,0.004867,-0.003999,0.249968,0,0);-ms-transform:matrix(0.304196,0.004867,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.304196,0.004867,-0.003999,0.249968,0,0);}
.m13_c00088{transform:matrix(0.389610,0.006234,-0.003999,0.249968,0,0);-ms-transform:matrix(0.389610,0.006234,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.389610,0.006234,-0.003999,0.249968,0,0);}
.m14_c00088{transform:matrix(0.397424,0.006359,-0.003999,0.249968,0,0);-ms-transform:matrix(0.397424,0.006359,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.397424,0.006359,-0.003999,0.249968,0,0);}
.m4_c00088{transform:matrix(0.401969,0.006431,-0.003999,0.249968,0,0);-ms-transform:matrix(0.401969,0.006431,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.401969,0.006431,-0.003999,0.249968,0,0);}
.m2_c00088{transform:matrix(0.420676,0.006731,-0.003999,0.249968,0,0);-ms-transform:matrix(0.420676,0.006731,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.420676,0.006731,-0.003999,0.249968,0,0);}
.m1_c00088{transform:matrix(0.439384,0.007030,-0.003999,0.249968,0,0);-ms-transform:matrix(0.439384,0.007030,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.439384,0.007030,-0.003999,0.249968,0,0);}
.mb_c00088{transform:matrix(0.476304,0.007621,-0.003999,0.249968,0,0);-ms-transform:matrix(0.476304,0.007621,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.476304,0.007621,-0.003999,0.249968,0,0);}
.m11_c00088{transform:matrix(0.558029,0.008928,-0.003999,0.249968,0,0);-ms-transform:matrix(0.558029,0.008928,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.558029,0.008928,-0.003999,0.249968,0,0);}
.me_c00088{transform:matrix(0.590529,0.009448,-0.003999,0.249968,0,0);-ms-transform:matrix(0.590529,0.009448,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.590529,0.009448,-0.003999,0.249968,0,0);}
.m12_c00088{transform:matrix(0.608357,0.009734,-0.003999,0.249968,0,0);-ms-transform:matrix(0.608357,0.009734,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.608357,0.009734,-0.003999,0.249968,0,0);}
.m1b_c00088{transform:matrix(0.618751,0.009900,-0.003999,0.249968,0,0);-ms-transform:matrix(0.618751,0.009900,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.618751,0.009900,-0.003999,0.249968,0,0);}
.m0_c00088{transform:matrix(0.622465,0.009959,-0.003999,0.249968,0,0);-ms-transform:matrix(0.622465,0.009959,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.622465,0.009959,-0.003999,0.249968,0,0);}
.m18_c00088{transform:matrix(0.625635,0.010010,-0.003999,0.249968,0,0);-ms-transform:matrix(0.625635,0.010010,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.625635,0.010010,-0.003999,0.249968,0,0);}
.m1e_c00088{transform:matrix(0.682278,0.010916,-0.003999,0.249968,0,0);-ms-transform:matrix(0.682278,0.010916,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.682278,0.010916,-0.003999,0.249968,0,0);}
.m20_c00088{transform:matrix(0.692551,0.011081,-0.003999,0.249968,0,0);-ms-transform:matrix(0.692551,0.011081,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.692551,0.011081,-0.003999,0.249968,0,0);}
.m6_c00088{transform:matrix(0.741545,0.011865,-0.003999,0.249968,0,0);-ms-transform:matrix(0.741545,0.011865,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.741545,0.011865,-0.003999,0.249968,0,0);}
.m1a_c00088{transform:matrix(0.791514,0.012664,-0.003999,0.249968,0,0);-ms-transform:matrix(0.791514,0.012664,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.791514,0.012664,-0.003999,0.249968,0,0);}
.m3_c00088{transform:matrix(0.820165,0.013123,-0.003999,0.249968,0,0);-ms-transform:matrix(0.820165,0.013123,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.820165,0.013123,-0.003999,0.249968,0,0);}
.m7_c00088{transform:matrix(0.873118,0.013970,-0.003999,0.249968,0,0);-ms-transform:matrix(0.873118,0.013970,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.873118,0.013970,-0.003999,0.249968,0,0);}
.mc_c00088{transform:matrix(0.912223,0.014596,-0.003999,0.249968,0,0);-ms-transform:matrix(0.912223,0.014596,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.912223,0.014596,-0.003999,0.249968,0,0);}
.m1f_c00088{transform:matrix(0.930651,0.014890,-0.003999,0.249968,0,0);-ms-transform:matrix(0.930651,0.014890,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.930651,0.014890,-0.003999,0.249968,0,0);}
.mf_c00088{transform:matrix(0.936365,0.014982,-0.003999,0.249968,0,0);-ms-transform:matrix(0.936365,0.014982,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.936365,0.014982,-0.003999,0.249968,0,0);}
.m17_c00088{transform:matrix(1.615553,0.025849,-0.003999,0.249968,0,0);-ms-transform:matrix(1.615553,0.025849,-0.003999,0.249968,0,0);-webkit-transform:matrix(1.615553,0.025849,-0.003999,0.249968,0,0);}
.m1c_c00088{transform:matrix(1.691863,0.027070,-0.003999,0.249968,0,0);-ms-transform:matrix(1.691863,0.027070,-0.003999,0.249968,0,0);-webkit-transform:matrix(1.691863,0.027070,-0.003999,0.249968,0,0);}
.m8_c00088{transform:matrix(1.796395,0.028742,-0.003999,0.249968,0,0);-ms-transform:matrix(1.796395,0.028742,-0.003999,0.249968,0,0);-webkit-transform:matrix(1.796395,0.028742,-0.003999,0.249968,0,0);}
.m10_c00088{transform:matrix(1.840994,0.029456,-0.003999,0.249968,0,0);-ms-transform:matrix(1.840994,0.029456,-0.003999,0.249968,0,0);-webkit-transform:matrix(1.840994,0.029456,-0.003999,0.249968,0,0);}
.m5_c00088{transform:matrix(2.135227,0.034164,-0.003999,0.249968,0,0);-ms-transform:matrix(2.135227,0.034164,-0.003999,0.249968,0,0);-webkit-transform:matrix(2.135227,0.034164,-0.003999,0.249968,0,0);}
.m1d_c00088{transform:matrix(2.270534,0.036329,-0.003999,0.249968,0,0);-ms-transform:matrix(2.270534,0.036329,-0.003999,0.249968,0,0);-webkit-transform:matrix(2.270534,0.036329,-0.003999,0.249968,0,0);}
.v0_c00088{vertical-align:0.000000px;}
.ls0_c00088{letter-spacing:0.000000px;}
.sc__c00088{text-shadow:none;}
.sc0_c00088{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__c00088{-webkit-text-stroke:0px transparent;}
.sc0_c00088{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00088{word-spacing:0.000000px;}
.fc0_c00088{color:transparent;}
.fs3_c00088{font-size:66.008447px;}
.fs0_c00088{font-size:72.009215px;}
.fs2_c00088{font-size:96.012287px;}
.fs1_c00088{font-size:108.013823px;}
.y0_c00088{bottom:0.000000px;}
.y22_c00088{bottom:179.382060px;}
.y21_c00088{bottom:183.387624px;}
.y20_c00088{bottom:185.239164px;}
.y1f_c00088{bottom:186.760776px;}
.y1e_c00088{bottom:189.618624px;}
.y1c_c00088{bottom:191.273364px;}
.y1b_c00088{bottom:192.099144px;}
.y1d_c00088{bottom:192.219108px;}
.y1a_c00088{bottom:214.236456px;}
.y19_c00088{bottom:228.982500px;}
.y18_c00088{bottom:237.601320px;}
.y17_c00088{bottom:255.277452px;}
.y16_c00088{bottom:255.541068px;}
.y15_c00088{bottom:261.428400px;}
.y14_c00088{bottom:264.528048px;}
.y13_c00088{bottom:266.704980px;}
.y12_c00088{bottom:269.170248px;}
.y11_c00088{bottom:274.604160px;}
.y10_c00088{bottom:409.850856px;}
.yf_c00088{bottom:412.534344px;}
.ye_c00088{bottom:414.170664px;}
.yd_c00088{bottom:416.159028px;}
.yc_c00088{bottom:417.455244px;}
.yb_c00088{bottom:418.062540px;}
.ya_c00088{bottom:524.903520px;}
.y9_c00088{bottom:527.598576px;}
.y8_c00088{bottom:529.319232px;}
.y7_c00088{bottom:530.268912px;}
.y6_c00088{bottom:532.670184px;}
.y5_c00088{bottom:534.142560px;}
.y4_c00088{bottom:536.190888px;}
.y3_c00088{bottom:536.978400px;}
.y2_c00088{bottom:537.764544px;}
.y1_c00088{bottom:538.926000px;}
.h5_c00088{height:66.008447px;}
.h2_c00088{height:72.009215px;}
.h4_c00088{height:96.012287px;}
.h3_c00088{height:108.013823px;}
.h0_c00088{height:711.720000px;}
.h1_c00088{height:711.750000px;}
.w1_c00088{width:945.750000px;}
.w0_c00088{width:946.050000px;}
.x0_c00088{left:0.000000px;}
.x1_c00088{left:72.219000px;}
.x2_c00088{left:121.353000px;}
.xa_c00088{left:122.848716px;}
.x10_c00088{left:124.296840px;}
.x17_c00088{left:127.695816px;}
.x1c_c00088{left:151.895580px;}
.xb_c00088{left:154.803180px;}
.x1a_c00088{left:158.549364px;}
.x3_c00088{left:170.572500px;}
.x1b_c00088{left:204.440400px;}
.xc_c00088{left:223.063416px;}
.x1d_c00088{left:296.327448px;}
.x4_c00088{left:298.593000px;}
.x11_c00088{left:305.438280px;}
.xd_c00088{left:327.737400px;}
.x18_c00088{left:381.205332px;}
.x12_c00088{left:387.592872px;}
.x5_c00088{left:390.616500px;}
.xe_c00088{left:413.878272px;}
.x1e_c00088{left:455.062860px;}
.x13_c00088{left:460.166124px;}
.x1f_c00088{left:539.567148px;}
.x6_c00088{left:540.696000px;}
.xf_c00088{left:555.152004px;}
.x14_c00088{left:563.495988px;}
.x7_c00088{left:600.051000px;}
.x20_c00088{left:642.441360px;}
.x8_c00088{left:707.592000px;}
.x15_c00088{left:759.754044px;}
.x16_c00088{left:768.540576px;}
.x19_c00088{left:814.926960px;}
.x21_c00088{left:864.938232px;}
.x9_c00088{left:876.033000px;}
@media print{
.v0_c00088{vertical-align:0.000000pt;}
.ls0_c00088{letter-spacing:0.000000pt;}
.ws0_c00088{word-spacing:0.000000pt;}
.fs3_c00088{font-size:58.674176pt;}
.fs0_c00088{font-size:64.008191pt;}
.fs2_c00088{font-size:85.344255pt;}
.fs1_c00088{font-size:96.012287pt;}
.y0_c00088{bottom:0.000000pt;}
.y22_c00088{bottom:159.450720pt;}
.y21_c00088{bottom:163.011221pt;}
.y20_c00088{bottom:164.657035pt;}
.y1f_c00088{bottom:166.009579pt;}
.y1e_c00088{bottom:168.549888pt;}
.y1c_c00088{bottom:170.020768pt;}
.y1b_c00088{bottom:170.754795pt;}
.y1d_c00088{bottom:170.861429pt;}
.y1a_c00088{bottom:190.432405pt;}
.y19_c00088{bottom:203.540000pt;}
.y18_c00088{bottom:211.201173pt;}
.y17_c00088{bottom:226.913291pt;}
.y16_c00088{bottom:227.147616pt;}
.y15_c00088{bottom:232.380800pt;}
.y14_c00088{bottom:235.136043pt;}
.y13_c00088{bottom:237.071093pt;}
.y12_c00088{bottom:239.262443pt;}
.y11_c00088{bottom:244.092587pt;}
.y10_c00088{bottom:364.311872pt;}
.yf_c00088{bottom:366.697195pt;}
.ye_c00088{bottom:368.151701pt;}
.yd_c00088{bottom:369.919136pt;}
.yc_c00088{bottom:371.071328pt;}
.yb_c00088{bottom:371.611147pt;}
.ya_c00088{bottom:466.580907pt;}
.y9_c00088{bottom:468.976512pt;}
.y8_c00088{bottom:470.505984pt;}
.y7_c00088{bottom:471.350144pt;}
.y6_c00088{bottom:473.484608pt;}
.y5_c00088{bottom:474.793387pt;}
.y4_c00088{bottom:476.614123pt;}
.y3_c00088{bottom:477.314133pt;}
.y2_c00088{bottom:478.012928pt;}
.y1_c00088{bottom:479.045333pt;}
.h5_c00088{height:58.674176pt;}
.h2_c00088{height:64.008191pt;}
.h4_c00088{height:85.344255pt;}
.h3_c00088{height:96.012287pt;}
.h0_c00088{height:632.640000pt;}
.h1_c00088{height:632.666667pt;}
.w1_c00088{width:840.666667pt;}
.w0_c00088{width:840.933333pt;}
.x0_c00088{left:0.000000pt;}
.x1_c00088{left:64.194667pt;}
.x2_c00088{left:107.869333pt;}
.xa_c00088{left:109.198859pt;}
.x10_c00088{left:110.486080pt;}
.x17_c00088{left:113.507392pt;}
.x1c_c00088{left:135.018293pt;}
.xb_c00088{left:137.602827pt;}
.x1a_c00088{left:140.932768pt;}
.x3_c00088{left:151.620000pt;}
.x1b_c00088{left:181.724800pt;}
.xc_c00088{left:198.278592pt;}
.x1d_c00088{left:263.402176pt;}
.x4_c00088{left:265.416000pt;}
.x11_c00088{left:271.500693pt;}
.xd_c00088{left:291.322133pt;}
.x18_c00088{left:338.849184pt;}
.x12_c00088{left:344.526997pt;}
.x5_c00088{left:347.214667pt;}
.xe_c00088{left:367.891797pt;}
.x1e_c00088{left:404.500320pt;}
.x13_c00088{left:409.036555pt;}
.x1f_c00088{left:479.615243pt;}
.x6_c00088{left:480.618667pt;}
.xf_c00088{left:493.468448pt;}
.x14_c00088{left:500.885323pt;}
.x7_c00088{left:533.378667pt;}
.x20_c00088{left:571.058987pt;}
.x8_c00088{left:628.970667pt;}
.x15_c00088{left:675.336928pt;}
.x16_c00088{left:683.147179pt;}
.x19_c00088{left:724.379520pt;}
.x21_c00088{left:768.833984pt;}
.x9_c00088{left:778.696000pt;}
}





/* 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_c00089 {
    display:none;
  }
  .loading-indicator_c00089.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00089 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_c00089 { 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_c00089" -> "#page-container .classname_c00089")
 */
.pf_c00089 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00089 { /* 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_c00089.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00089 { /* 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_c00089 { /* 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_c00089 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00089 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00089 {overflow:visible;}
  }
}
.c_c00089 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00089 { /* 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_c00089:after { /* webkit #35443 */
  content: '';
}
.t_c00089:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00089 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 */
}
.__c00089 { /* 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_c00089 { /* info for Javascript */
  display:none;
}
.l_c00089 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00089 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00089 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00089: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_c00089 {
    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_c00089.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00089.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_c00089 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00089{font-family:sans-serif;visibility:hidden;}
.sc__c00089{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00089{-webkit-text-stroke:0px transparent;}
}
.y0_c00089{bottom:0.000000px;}
.h0_c00089{height:711.720000px;}
.h1_c00089{height:711.750000px;}
.w1_c00089{width:945.750000px;}
.w0_c00089{width:946.050000px;}
.x0_c00089{left:0.000000px;}
@media print{
.y0_c00089{bottom:0.000000pt;}
.h0_c00089{height:632.640000pt;}
.h1_c00089{height:632.666667pt;}
.w1_c00089{width:840.666667pt;}
.w0_c00089{width:840.933333pt;}
.x0_c00089{left:0.000000pt;}
}





/* 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_c00090 {
    display:none;
  }
  .loading-indicator_c00090.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00090 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_c00090 { 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_c00090" -> "#page-container .classname_c00090")
 */
.pf_c00090 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00090 { /* 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_c00090.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00090 { /* 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_c00090 { /* 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_c00090 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00090 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00090 {overflow:visible;}
  }
}
.c_c00090 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00090 { /* 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_c00090:after { /* webkit #35443 */
  content: '';
}
.t_c00090:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00090 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 */
}
.__c00090 { /* 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_c00090 { /* info for Javascript */
  display:none;
}
.l_c00090 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00090 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00090 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00090: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_c00090 {
    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_c00090.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00090.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_c00090 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00090{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00090;src:url('chunks/assets/font_a922ad9dd70ab389832b6583.woff2')format("woff");}.ff1_c00090{font-family:ff1_c00090;line-height:1.000000;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;}
.m9_c00090{transform:matrix(0.032799,-0.000197,0.001500,0.249996,0,0);-ms-transform:matrix(0.032799,-0.000197,0.001500,0.249996,0,0);-webkit-transform:matrix(0.032799,-0.000197,0.001500,0.249996,0,0);}
.m1d_c00090{transform:matrix(0.046385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.046385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.046385,0.000000,0.000000,0.250000,0,0);}
.m21_c00090{transform:matrix(0.060585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060585,0.000000,0.000000,0.250000,0,0);}
.m20_c00090{transform:matrix(0.186220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186220,0.000000,0.000000,0.250000,0,0);}
.m7_c00090{transform:matrix(0.211383,-0.004439,0.005249,0.249945,0,0);-ms-transform:matrix(0.211383,-0.004439,0.005249,0.249945,0,0);-webkit-transform:matrix(0.211383,-0.004439,0.005249,0.249945,0,0);}
.m10_c00090{transform:matrix(0.265130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265130,0.000000,0.000000,0.250000,0,0);}
.m8_c00090{transform:matrix(0.291770,-0.001751,0.001500,0.249996,0,0);-ms-transform:matrix(0.291770,-0.001751,0.001500,0.249996,0,0);-webkit-transform:matrix(0.291770,-0.001751,0.001500,0.249996,0,0);}
.m6_c00090{transform:matrix(0.306227,-0.006431,0.005249,0.249945,0,0);-ms-transform:matrix(0.306227,-0.006431,0.005249,0.249945,0,0);-webkit-transform:matrix(0.306227,-0.006431,0.005249,0.249945,0,0);}
.m13_c00090{transform:matrix(0.329325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329325,0.000000,0.000000,0.250000,0,0);}
.m12_c00090{transform:matrix(0.349570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349570,0.000000,0.000000,0.250000,0,0);}
.mf_c00090{transform:matrix(0.360780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360780,0.000000,0.000000,0.250000,0,0);}
.ma_c00090{transform:matrix(0.363878,-0.002183,0.001500,0.249996,0,0);-ms-transform:matrix(0.363878,-0.002183,0.001500,0.249996,0,0);-webkit-transform:matrix(0.363878,-0.002183,0.001500,0.249996,0,0);}
.m4_c00090{transform:matrix(0.376042,-0.007897,0.005249,0.249945,0,0);-ms-transform:matrix(0.376042,-0.007897,0.005249,0.249945,0,0);-webkit-transform:matrix(0.376042,-0.007897,0.005249,0.249945,0,0);}
.m1_c00090{transform:matrix(0.378567,-0.007950,0.005249,0.249945,0,0);-ms-transform:matrix(0.378567,-0.007950,0.005249,0.249945,0,0);-webkit-transform:matrix(0.378567,-0.007950,0.005249,0.249945,0,0);}
.m1e_c00090{transform:matrix(0.393590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393590,0.000000,0.000000,0.250000,0,0);}
.m14_c00090{transform:matrix(0.434330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434330,0.000000,0.000000,0.250000,0,0);}
.m23_c00090{transform:matrix(0.450000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450000,0.000000,0.000000,0.250000,0,0);}
.m2_c00090{transform:matrix(0.576083,-0.012098,0.005249,0.249945,0,0);-ms-transform:matrix(0.576083,-0.012098,0.005249,0.249945,0,0);-webkit-transform:matrix(0.576083,-0.012098,0.005249,0.249945,0,0);}
.m19_c00090{transform:matrix(0.607455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.607455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.607455,0.000000,0.000000,0.250000,0,0);}
.me_c00090{transform:matrix(0.608915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608915,0.000000,0.000000,0.250000,0,0);}
.m11_c00090{transform:matrix(0.728620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728620,0.000000,0.000000,0.250000,0,0);}
.m1c_c00090{transform:matrix(0.734360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.734360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.734360,0.000000,0.000000,0.250000,0,0);}
.md_c00090{transform:matrix(0.757396,-0.004544,0.001500,0.249996,0,0);-ms-transform:matrix(0.757396,-0.004544,0.001500,0.249996,0,0);-webkit-transform:matrix(0.757396,-0.004544,0.001500,0.249996,0,0);}
.m0_c00090{transform:matrix(0.862185,-0.018106,0.005249,0.249945,0,0);-ms-transform:matrix(0.862185,-0.018106,0.005249,0.249945,0,0);-webkit-transform:matrix(0.862185,-0.018106,0.005249,0.249945,0,0);}
.m1b_c00090{transform:matrix(0.930765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.930765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.930765,0.000000,0.000000,0.250000,0,0);}
.mc_c00090{transform:matrix(1.062906,-0.006377,0.001500,0.249996,0,0);-ms-transform:matrix(1.062906,-0.006377,0.001500,0.249996,0,0);-webkit-transform:matrix(1.062906,-0.006377,0.001500,0.249996,0,0);}
.m5_c00090{transform:matrix(1.087325,-0.022834,0.005249,0.249945,0,0);-ms-transform:matrix(1.087325,-0.022834,0.005249,0.249945,0,0);-webkit-transform:matrix(1.087325,-0.022834,0.005249,0.249945,0,0);}
.m16_c00090{transform:matrix(1.202340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.202340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.202340,0.000000,0.000000,0.250000,0,0);}
.m17_c00090{transform:matrix(1.244550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.244550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.244550,0.000000,0.000000,0.250000,0,0);}
.m15_c00090{transform:matrix(1.322130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.322130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.322130,0.000000,0.000000,0.250000,0,0);}
.m18_c00090{transform:matrix(1.494140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.494140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.494140,0.000000,0.000000,0.250000,0,0);}
.m3_c00090{transform:matrix(1.725040,-0.036226,0.005249,0.249945,0,0);-ms-transform:matrix(1.725040,-0.036226,0.005249,0.249945,0,0);-webkit-transform:matrix(1.725040,-0.036226,0.005249,0.249945,0,0);}
.m22_c00090{transform:matrix(2.741240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.741240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.741240,0.000000,0.000000,0.250000,0,0);}
.m1f_c00090{transform:matrix(2.928845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.928845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.928845,0.000000,0.000000,0.250000,0,0);}
.m1a_c00090{transform:matrix(3.872760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.872760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.872760,0.000000,0.000000,0.250000,0,0);}
.mb_c00090{transform:matrix(5.363713,-0.032182,0.001500,0.249996,0,0);-ms-transform:matrix(5.363713,-0.032182,0.001500,0.249996,0,0);-webkit-transform:matrix(5.363713,-0.032182,0.001500,0.249996,0,0);}
.v0_c00090{vertical-align:0.000000px;}
.ls0_c00090{letter-spacing:0.000000px;}
.sc__c00090{text-shadow:none;}
.sc0_c00090{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__c00090{-webkit-text-stroke:0px transparent;}
.sc0_c00090{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00090{word-spacing:0.000000px;}
.fc0_c00090{color:transparent;}
.fs4_c00090{font-size:18.000000px;}
.fs5_c00090{font-size:24.000000px;}
.fs0_c00090{font-size:66.014551px;}
.fs2_c00090{font-size:72.001296px;}
.fs1_c00090{font-size:96.001728px;}
.fs3_c00090{font-size:102.000000px;}
.y0_c00090{bottom:0.000000px;}
.y11_c00090{bottom:0.499500px;}
.y10_c00090{bottom:20.098500px;}
.yf_c00090{bottom:85.807500px;}
.yc_c00090{bottom:171.257532px;}
.yd_c00090{bottom:173.207712px;}
.ye_c00090{bottom:174.388509px;}
.y9_c00090{bottom:300.774000px;}
.ya_c00090{bottom:303.447414px;}
.yb_c00090{bottom:303.612690px;}
.y1_c00090{bottom:573.931500px;}
.y2_c00090{bottom:576.173386px;}
.y3_c00090{bottom:577.470588px;}
.y4_c00090{bottom:578.681826px;}
.y5_c00090{bottom:582.002430px;}
.y6_c00090{bottom:583.255216px;}
.y7_c00090{bottom:587.977287px;}
.y8_c00090{bottom:588.631038px;}
.h6_c00090{height:18.000000px;}
.h7_c00090{height:24.000000px;}
.h2_c00090{height:66.014551px;}
.h4_c00090{height:72.001296px;}
.h3_c00090{height:96.001728px;}
.h5_c00090{height:102.000000px;}
.h0_c00090{height:711.720000px;}
.h1_c00090{height:711.750000px;}
.w1_c00090{width:945.750000px;}
.w0_c00090{width:946.050000px;}
.x0_c00090{left:0.000000px;}
.xc_c00090{left:7.302138px;}
.x9_c00090{left:47.104500px;}
.xf_c00090{left:91.530000px;}
.x1_c00090{left:122.052000px;}
.x2_c00090{left:228.808500px;}
.x1a_c00090{left:282.690000px;}
.x10_c00090{left:285.390000px;}
.x3_c00090{left:290.580000px;}
.x15_c00090{left:319.680000px;}
.x16_c00090{left:346.410000px;}
.x4_c00090{left:348.258000px;}
.x11_c00090{left:364.500000px;}
.x1b_c00090{left:385.830000px;}
.xd_c00090{left:397.334478px;}
.x17_c00090{left:403.650000px;}
.x1c_c00090{left:410.130000px;}
.x1d_c00090{left:440.370000px;}
.x18_c00090{left:467.100000px;}
.x1e_c00090{left:468.180000px;}
.x12_c00090{left:473.310000px;}
.xa_c00090{left:492.673500px;}
.x19_c00090{left:497.880000px;}
.x5_c00090{left:506.382000px;}
.xb_c00090{left:520.219500px;}
.x1f_c00090{left:547.290000px;}
.x13_c00090{left:548.370000px;}
.x6_c00090{left:566.038500px;}
.x14_c00090{left:623.700000px;}
.xe_c00090{left:633.635400px;}
.x20_c00090{left:667.170000px;}
.x21_c00090{left:690.660000px;}
.x22_c00090{left:694.170000px;}
.x23_c00090{left:756.810000px;}
.x7_c00090{left:790.899000px;}
.x8_c00090{left:822.030000px;}
@media print{
.v0_c00090{vertical-align:0.000000pt;}
.ls0_c00090{letter-spacing:0.000000pt;}
.ws0_c00090{word-spacing:0.000000pt;}
.fs4_c00090{font-size:16.000000pt;}
.fs5_c00090{font-size:21.333333pt;}
.fs0_c00090{font-size:58.679601pt;}
.fs2_c00090{font-size:64.001152pt;}
.fs1_c00090{font-size:85.334869pt;}
.fs3_c00090{font-size:90.666667pt;}
.y0_c00090{bottom:0.000000pt;}
.y11_c00090{bottom:0.444000pt;}
.y10_c00090{bottom:17.865333pt;}
.yf_c00090{bottom:76.273333pt;}
.yc_c00090{bottom:152.228917pt;}
.yd_c00090{bottom:153.962411pt;}
.ye_c00090{bottom:155.012008pt;}
.y9_c00090{bottom:267.354667pt;}
.ya_c00090{bottom:269.731035pt;}
.yb_c00090{bottom:269.877947pt;}
.y1_c00090{bottom:510.161333pt;}
.y2_c00090{bottom:512.154121pt;}
.y3_c00090{bottom:513.307189pt;}
.y4_c00090{bottom:514.383845pt;}
.y5_c00090{bottom:517.335493pt;}
.y6_c00090{bottom:518.449081pt;}
.y7_c00090{bottom:522.646477pt;}
.y8_c00090{bottom:523.227589pt;}
.h6_c00090{height:16.000000pt;}
.h7_c00090{height:21.333333pt;}
.h2_c00090{height:58.679601pt;}
.h4_c00090{height:64.001152pt;}
.h3_c00090{height:85.334869pt;}
.h5_c00090{height:90.666667pt;}
.h0_c00090{height:632.640000pt;}
.h1_c00090{height:632.666667pt;}
.w1_c00090{width:840.666667pt;}
.w0_c00090{width:840.933333pt;}
.x0_c00090{left:0.000000pt;}
.xc_c00090{left:6.490789pt;}
.x9_c00090{left:41.870667pt;}
.xf_c00090{left:81.360000pt;}
.x1_c00090{left:108.490667pt;}
.x2_c00090{left:203.385333pt;}
.x1a_c00090{left:251.280000pt;}
.x10_c00090{left:253.680000pt;}
.x3_c00090{left:258.293333pt;}
.x15_c00090{left:284.160000pt;}
.x16_c00090{left:307.920000pt;}
.x4_c00090{left:309.562667pt;}
.x11_c00090{left:324.000000pt;}
.x1b_c00090{left:342.960000pt;}
.xd_c00090{left:353.186203pt;}
.x17_c00090{left:358.800000pt;}
.x1c_c00090{left:364.560000pt;}
.x1d_c00090{left:391.440000pt;}
.x18_c00090{left:415.200000pt;}
.x1e_c00090{left:416.160000pt;}
.x12_c00090{left:420.720000pt;}
.xa_c00090{left:437.932000pt;}
.x19_c00090{left:442.560000pt;}
.x5_c00090{left:450.117333pt;}
.xb_c00090{left:462.417333pt;}
.x1f_c00090{left:486.480000pt;}
.x13_c00090{left:487.440000pt;}
.x6_c00090{left:503.145333pt;}
.x14_c00090{left:554.400000pt;}
.xe_c00090{left:563.231467pt;}
.x20_c00090{left:593.040000pt;}
.x21_c00090{left:613.920000pt;}
.x22_c00090{left:617.040000pt;}
.x23_c00090{left:672.720000pt;}
.x7_c00090{left:703.021333pt;}
.x8_c00090{left:730.693333pt;}
}





/* 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_c00091 {
    display:none;
  }
  .loading-indicator_c00091.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00091 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_c00091 { 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_c00091" -> "#page-container .classname_c00091")
 */
.pf_c00091 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00091 { /* 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_c00091.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00091 { /* 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_c00091 { /* 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_c00091 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00091 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00091 {overflow:visible;}
  }
}
.c_c00091 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00091 { /* 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_c00091:after { /* webkit #35443 */
  content: '';
}
.t_c00091:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00091 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 */
}
.__c00091 { /* 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_c00091 { /* info for Javascript */
  display:none;
}
.l_c00091 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00091 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00091 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00091: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_c00091 {
    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_c00091.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00091.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_c00091 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00091{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00091;src:url('chunks/assets/font_59dc3ab2e04ed21d4ac9992b.woff2')format("woff");}.ff1_c00091{font-family:ff1_c00091;line-height:1.000000;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;}
.m8_c00091{transform:matrix(0.128050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128050,0.000000,0.000000,0.250000,0,0);}
.m0_c00091{transform:matrix(0.177660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177660,0.000000,0.000000,0.250000,0,0);}
.m3_c00091{transform:matrix(0.183975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183975,0.000000,0.000000,0.250000,0,0);}
.m5_c00091{transform:matrix(0.277155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277155,0.000000,0.000000,0.250000,0,0);}
.m1_c00091{transform:matrix(0.308245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308245,0.000000,0.000000,0.250000,0,0);}
.m4_c00091{transform:matrix(0.315315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315315,0.000000,0.000000,0.250000,0,0);}
.m6_c00091{transform:matrix(0.407285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407285,0.000000,0.000000,0.250000,0,0);}
.m7_c00091{transform:matrix(0.452415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452415,0.000000,0.000000,0.250000,0,0);}
.m2_c00091{transform:matrix(0.835425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.835425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.835425,0.000000,0.000000,0.250000,0,0);}
.v0_c00091{vertical-align:0.000000px;}
.ls0_c00091{letter-spacing:0.000000px;}
.sc__c00091{text-shadow:none;}
.sc0_c00091{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__c00091{-webkit-text-stroke:0px transparent;}
.sc0_c00091{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00091{word-spacing:0.000000px;}
.fc0_c00091{color:transparent;}
.fs1_c00091{font-size:102.000000px;}
.fs0_c00091{font-size:108.000000px;}
.y0_c00091{bottom:0.000000px;}
.y2_c00091{bottom:71.349000px;}
.y3_c00091{bottom:85.320000px;}
.y1_c00091{bottom:103.680000px;}
.h3_c00091{height:102.000000px;}
.h2_c00091{height:108.000000px;}
.h0_c00091{height:711.720000px;}
.h1_c00091{height:711.750000px;}
.w1_c00091{width:945.750000px;}
.w0_c00091{width:946.050000px;}
.x0_c00091{left:0.000000px;}
.x2_c00091{left:409.860000px;}
.x3_c00091{left:424.440000px;}
.x4_c00091{left:589.680000px;}
.x5_c00091{left:650.160000px;}
.x6_c00091{left:683.100000px;}
.x7_c00091{left:707.670000px;}
.x8_c00091{left:810.270000px;}
.x1_c00091{left:934.470000px;}
@media print{
.v0_c00091{vertical-align:0.000000pt;}
.ls0_c00091{letter-spacing:0.000000pt;}
.ws0_c00091{word-spacing:0.000000pt;}
.fs1_c00091{font-size:90.666667pt;}
.fs0_c00091{font-size:96.000000pt;}
.y0_c00091{bottom:0.000000pt;}
.y2_c00091{bottom:63.421333pt;}
.y3_c00091{bottom:75.840000pt;}
.y1_c00091{bottom:92.160000pt;}
.h3_c00091{height:90.666667pt;}
.h2_c00091{height:96.000000pt;}
.h0_c00091{height:632.640000pt;}
.h1_c00091{height:632.666667pt;}
.w1_c00091{width:840.666667pt;}
.w0_c00091{width:840.933333pt;}
.x0_c00091{left:0.000000pt;}
.x2_c00091{left:364.320000pt;}
.x3_c00091{left:377.280000pt;}
.x4_c00091{left:524.160000pt;}
.x5_c00091{left:577.920000pt;}
.x6_c00091{left:607.200000pt;}
.x7_c00091{left:629.040000pt;}
.x8_c00091{left:720.240000pt;}
.x1_c00091{left:830.640000pt;}
}





/* 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_c00092 {
    display:none;
  }
  .loading-indicator_c00092.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00092 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_c00092 { 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_c00092" -> "#page-container .classname_c00092")
 */
.pf_c00092 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00092 { /* 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_c00092.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00092 { /* 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_c00092 { /* 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_c00092 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00092 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00092 {overflow:visible;}
  }
}
.c_c00092 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00092 { /* 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_c00092:after { /* webkit #35443 */
  content: '';
}
.t_c00092:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00092 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 */
}
.__c00092 { /* 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_c00092 { /* info for Javascript */
  display:none;
}
.l_c00092 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00092 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00092 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00092: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_c00092 {
    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_c00092.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00092.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_c00092 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00092{font-family:sans-serif;visibility:hidden;}
.sc__c00092{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00092{-webkit-text-stroke:0px transparent;}
}
.y0_c00092{bottom:0.000000px;}
.h0_c00092{height:711.720000px;}
.h1_c00092{height:711.750000px;}
.w1_c00092{width:945.750000px;}
.w0_c00092{width:946.050000px;}
.x0_c00092{left:0.000000px;}
@media print{
.y0_c00092{bottom:0.000000pt;}
.h0_c00092{height:632.640000pt;}
.h1_c00092{height:632.666667pt;}
.w1_c00092{width:840.666667pt;}
.w0_c00092{width:840.933333pt;}
.x0_c00092{left:0.000000pt;}
}





/* 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_c00093 {
    display:none;
  }
  .loading-indicator_c00093.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00093 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_c00093 { 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_c00093" -> "#page-container .classname_c00093")
 */
.pf_c00093 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00093 { /* 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_c00093.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00093 { /* 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_c00093 { /* 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_c00093 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00093 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00093 {overflow:visible;}
  }
}
.c_c00093 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00093 { /* 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_c00093:after { /* webkit #35443 */
  content: '';
}
.t_c00093:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00093 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 */
}
.__c00093 { /* 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_c00093 { /* info for Javascript */
  display:none;
}
.l_c00093 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00093 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00093 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00093: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_c00093 {
    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_c00093.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00093.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_c00093 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00093{font-family:sans-serif;visibility:hidden;}
.sc__c00093{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00093{-webkit-text-stroke:0px transparent;}
}
.y0_c00093{bottom:0.000000px;}
.h0_c00093{height:711.720000px;}
.h1_c00093{height:711.750000px;}
.w1_c00093{width:945.750000px;}
.w0_c00093{width:946.050000px;}
.x0_c00093{left:0.000000px;}
@media print{
.y0_c00093{bottom:0.000000pt;}
.h0_c00093{height:632.640000pt;}
.h1_c00093{height:632.666667pt;}
.w1_c00093{width:840.666667pt;}
.w0_c00093{width:840.933333pt;}
.x0_c00093{left:0.000000pt;}
}





/* 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_c00094 {
    display:none;
  }
  .loading-indicator_c00094.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00094 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_c00094 { 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_c00094" -> "#page-container .classname_c00094")
 */
.pf_c00094 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00094 { /* 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_c00094.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00094 { /* 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_c00094 { /* 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_c00094 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00094 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00094 {overflow:visible;}
  }
}
.c_c00094 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00094 { /* 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_c00094:after { /* webkit #35443 */
  content: '';
}
.t_c00094:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00094 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 */
}
.__c00094 { /* 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_c00094 { /* info for Javascript */
  display:none;
}
.l_c00094 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00094 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00094 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00094: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_c00094 {
    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_c00094.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00094.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_c00094 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00094{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00094;src:url('chunks/assets/font_59dc3ab2e04ed21d4ac9992b.woff2')format("woff");}.ff1_c00094{font-family:ff1_c00094;line-height:1.000000;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;}
.m9_c00094{transform:matrix(0.183055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183055,0.000000,0.000000,0.250000,0,0);}
.m0_c00094{transform:matrix(0.195075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195075,0.000000,0.000000,0.250000,0,0);}
.mf_c00094{transform:matrix(0.260605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260605,0.000000,0.000000,0.250000,0,0);}
.m12_c00094{transform:matrix(0.261070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261070,0.000000,0.000000,0.250000,0,0);}
.ma_c00094{transform:matrix(0.287415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287415,0.000000,0.000000,0.250000,0,0);}
.m19_c00094{transform:matrix(0.325545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325545,0.000000,0.000000,0.250000,0,0);}
.m17_c00094{transform:matrix(0.333695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333695,0.000000,0.000000,0.250000,0,0);}
.me_c00094{transform:matrix(0.351290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351290,0.000000,0.000000,0.250000,0,0);}
.m18_c00094{transform:matrix(0.352145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352145,0.000000,0.000000,0.250000,0,0);}
.m16_c00094{transform:matrix(0.367445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367445,0.000000,0.000000,0.250000,0,0);}
.m14_c00094{transform:matrix(0.379420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379420,0.000000,0.000000,0.250000,0,0);}
.m11_c00094{transform:matrix(0.385835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385835,0.000000,0.000000,0.250000,0,0);}
.m1c_c00094{transform:matrix(0.390450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390450,0.000000,0.000000,0.250000,0,0);}
.m13_c00094{transform:matrix(0.440105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440105,0.000000,0.000000,0.250000,0,0);}
.m2_c00094{transform:matrix(0.458550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458550,0.000000,0.000000,0.250000,0,0);}
.mb_c00094{transform:matrix(0.470230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470230,0.000000,0.000000,0.250000,0,0);}
.mc_c00094{transform:matrix(0.476265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.476265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.476265,0.000000,0.000000,0.250000,0,0);}
.m6_c00094{transform:matrix(0.476515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.476515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.476515,0.000000,0.000000,0.250000,0,0);}
.m4_c00094{transform:matrix(0.486960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486960,0.000000,0.000000,0.250000,0,0);}
.m8_c00094{transform:matrix(0.510055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510055,0.000000,0.000000,0.250000,0,0);}
.md_c00094{transform:matrix(0.517385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517385,0.000000,0.000000,0.250000,0,0);}
.m5_c00094{transform:matrix(0.573290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573290,0.000000,0.000000,0.250000,0,0);}
.m1_c00094{transform:matrix(0.626850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.626850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.626850,0.000000,0.000000,0.250000,0,0);}
.m15_c00094{transform:matrix(0.642075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.642075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.642075,0.000000,0.000000,0.250000,0,0);}
.m1b_c00094{transform:matrix(0.684000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.684000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.684000,0.000000,0.000000,0.250000,0,0);}
.m7_c00094{transform:matrix(0.738165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.738165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.738165,0.000000,0.000000,0.250000,0,0);}
.m10_c00094{transform:matrix(0.748780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.748780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.748780,0.000000,0.000000,0.250000,0,0);}
.m3_c00094{transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.797500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00094{transform:matrix(1.337535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.337535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.337535,0.000000,0.000000,0.250000,0,0);}
.v0_c00094{vertical-align:0.000000px;}
.ls0_c00094{letter-spacing:0.000000px;}
.sc__c00094{text-shadow:none;}
.sc0_c00094{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__c00094{-webkit-text-stroke:0px transparent;}
.sc0_c00094{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00094{word-spacing:0.000000px;}
.fc0_c00094{color:transparent;}
.fs2_c00094{font-size:66.000000px;}
.fs4_c00094{font-size:72.000000px;}
.fs3_c00094{font-size:78.000000px;}
.fs1_c00094{font-size:96.000000px;}
.fs0_c00094{font-size:150.000000px;}
.y0_c00094{bottom:0.000000px;}
.y5_c00094{bottom:356.202000px;}
.y4_c00094{bottom:392.992500px;}
.y3_c00094{bottom:470.040000px;}
.y2_c00094{bottom:511.906500px;}
.y1_c00094{bottom:539.460000px;}
.h4_c00094{height:66.000000px;}
.h6_c00094{height:72.000000px;}
.h5_c00094{height:78.000000px;}
.h3_c00094{height:96.000000px;}
.h2_c00094{height:150.000000px;}
.h0_c00094{height:711.720000px;}
.h1_c00094{height:711.750000px;}
.w1_c00094{width:945.750000px;}
.w0_c00094{width:946.050000px;}
.x0_c00094{left:0.000000px;}
.x12_c00094{left:52.650000px;}
.xa_c00094{left:110.970000px;}
.x13_c00094{left:149.040000px;}
.x5_c00094{left:152.820000px;}
.x2_c00094{left:224.100000px;}
.x14_c00094{left:248.400000px;}
.x15_c00094{left:261.090000px;}
.xb_c00094{left:306.720000px;}
.x6_c00094{left:352.350000px;}
.xc_c00094{left:375.030000px;}
.x16_c00094{left:412.830000px;}
.x3_c00094{left:418.770000px;}
.xd_c00094{left:447.660000px;}
.x7_c00094{left:463.590000px;}
.x4_c00094{left:492.480000px;}
.x17_c00094{left:521.370000px;}
.x8_c00094{left:612.360000px;}
.xe_c00094{left:652.590000px;}
.xf_c00094{left:696.060000px;}
.x9_c00094{left:697.950000px;}
.x18_c00094{left:726.840000px;}
.x10_c00094{left:790.020000px;}
.x11_c00094{left:868.320000px;}
.x1_c00094{left:933.660000px;}
@media print{
.v0_c00094{vertical-align:0.000000pt;}
.ls0_c00094{letter-spacing:0.000000pt;}
.ws0_c00094{word-spacing:0.000000pt;}
.fs2_c00094{font-size:58.666667pt;}
.fs4_c00094{font-size:64.000000pt;}
.fs3_c00094{font-size:69.333333pt;}
.fs1_c00094{font-size:85.333333pt;}
.fs0_c00094{font-size:133.333333pt;}
.y0_c00094{bottom:0.000000pt;}
.y5_c00094{bottom:316.624000pt;}
.y4_c00094{bottom:349.326667pt;}
.y3_c00094{bottom:417.813333pt;}
.y2_c00094{bottom:455.028000pt;}
.y1_c00094{bottom:479.520000pt;}
.h4_c00094{height:58.666667pt;}
.h6_c00094{height:64.000000pt;}
.h5_c00094{height:69.333333pt;}
.h3_c00094{height:85.333333pt;}
.h2_c00094{height:133.333333pt;}
.h0_c00094{height:632.640000pt;}
.h1_c00094{height:632.666667pt;}
.w1_c00094{width:840.666667pt;}
.w0_c00094{width:840.933333pt;}
.x0_c00094{left:0.000000pt;}
.x12_c00094{left:46.800000pt;}
.xa_c00094{left:98.640000pt;}
.x13_c00094{left:132.480000pt;}
.x5_c00094{left:135.840000pt;}
.x2_c00094{left:199.200000pt;}
.x14_c00094{left:220.800000pt;}
.x15_c00094{left:232.080000pt;}
.xb_c00094{left:272.640000pt;}
.x6_c00094{left:313.200000pt;}
.xc_c00094{left:333.360000pt;}
.x16_c00094{left:366.960000pt;}
.x3_c00094{left:372.240000pt;}
.xd_c00094{left:397.920000pt;}
.x7_c00094{left:412.080000pt;}
.x4_c00094{left:437.760000pt;}
.x17_c00094{left:463.440000pt;}
.x8_c00094{left:544.320000pt;}
.xe_c00094{left:580.080000pt;}
.xf_c00094{left:618.720000pt;}
.x9_c00094{left:620.400000pt;}
.x18_c00094{left:646.080000pt;}
.x10_c00094{left:702.240000pt;}
.x11_c00094{left:771.840000pt;}
.x1_c00094{left:829.920000pt;}
}





/* 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_c00095 {
    display:none;
  }
  .loading-indicator_c00095.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00095 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_c00095 { 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_c00095" -> "#page-container .classname_c00095")
 */
.pf_c00095 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00095 { /* 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_c00095.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00095 { /* 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_c00095 { /* 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_c00095 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00095 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00095 {overflow:visible;}
  }
}
.c_c00095 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00095 { /* 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_c00095:after { /* webkit #35443 */
  content: '';
}
.t_c00095:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00095 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 */
}
.__c00095 { /* 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_c00095 { /* info for Javascript */
  display:none;
}
.l_c00095 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00095 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00095 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00095: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_c00095 {
    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_c00095.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00095.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_c00095 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00095{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00095;src:url('chunks/assets/font_1d82f9a8aaa5ece01c4c3bb7.woff2')format("woff");}.ff1_c00095{font-family:ff1_c00095;line-height:1.000000;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;}
.m2_c00095{transform:matrix(0.012886,0.001126,-0.021755,0.249052,0,0);-ms-transform:matrix(0.012886,0.001126,-0.021755,0.249052,0,0);-webkit-transform:matrix(0.012886,0.001126,-0.021755,0.249052,0,0);}
.m7_c00095{transform:matrix(0.105435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105435,0.000000,0.000000,0.250000,0,0);}
.m5_c00095{transform:matrix(0.106300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106300,0.000000,0.000000,0.250000,0,0);}
.me_c00095{transform:matrix(0.113225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113225,0.000000,0.000000,0.250000,0,0);}
.m6_c00095{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m15_c00095{transform:matrix(0.268901,-0.011574,0.010751,0.249769,0,0);-ms-transform:matrix(0.268901,-0.011574,0.010751,0.249769,0,0);-webkit-transform:matrix(0.268901,-0.011574,0.010751,0.249769,0,0);}
.m8_c00095{transform:matrix(0.285330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285330,0.000000,0.000000,0.250000,0,0);}
.mc_c00095{transform:matrix(0.328185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328185,0.000000,0.000000,0.250000,0,0);}
.m11_c00095{transform:matrix(0.336773,-0.014496,0.010751,0.249769,0,0);-ms-transform:matrix(0.336773,-0.014496,0.010751,0.249769,0,0);-webkit-transform:matrix(0.336773,-0.014496,0.010751,0.249769,0,0);}
.m3_c00095{transform:matrix(0.389616,0.034033,-0.021755,0.249052,0,0);-ms-transform:matrix(0.389616,0.034033,-0.021755,0.249052,0,0);-webkit-transform:matrix(0.389616,0.034033,-0.021755,0.249052,0,0);}
.m4_c00095{transform:matrix(0.421131,0.036786,-0.021755,0.249052,0,0);-ms-transform:matrix(0.421131,0.036786,-0.021755,0.249052,0,0);-webkit-transform:matrix(0.421131,0.036786,-0.021755,0.249052,0,0);}
.m9_c00095{transform:matrix(0.439115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439115,0.000000,0.000000,0.250000,0,0);}
.mf_c00095{transform:matrix(0.454365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.454365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.454365,0.000000,0.000000,0.250000,0,0);}
.m16_c00095{transform:matrix(0.482853,-0.020783,0.010751,0.249769,0,0);-ms-transform:matrix(0.482853,-0.020783,0.010751,0.249769,0,0);-webkit-transform:matrix(0.482853,-0.020783,0.010751,0.249769,0,0);}
.m14_c00095{transform:matrix(0.531108,-0.022861,0.010751,0.249769,0,0);-ms-transform:matrix(0.531108,-0.022861,0.010751,0.249769,0,0);-webkit-transform:matrix(0.531108,-0.022861,0.010751,0.249769,0,0);}
.m0_c00095{transform:matrix(0.662512,0.057870,-0.021755,0.249052,0,0);-ms-transform:matrix(0.662512,0.057870,-0.021755,0.249052,0,0);-webkit-transform:matrix(0.662512,0.057870,-0.021755,0.249052,0,0);}
.m10_c00095{transform:matrix(0.776975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.776975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.776975,0.000000,0.000000,0.250000,0,0);}
.ma_c00095{transform:matrix(0.805305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.805305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.805305,0.000000,0.000000,0.250000,0,0);}
.m12_c00095{transform:matrix(0.828992,-0.035682,0.010751,0.249769,0,0);-ms-transform:matrix(0.828992,-0.035682,0.010751,0.249769,0,0);-webkit-transform:matrix(0.828992,-0.035682,0.010751,0.249769,0,0);}
.m13_c00095{transform:matrix(0.861018,-0.037061,0.010751,0.249769,0,0);-ms-transform:matrix(0.861018,-0.037061,0.010751,0.249769,0,0);-webkit-transform:matrix(0.861018,-0.037061,0.010751,0.249769,0,0);}
.m1_c00095{transform:matrix(0.918273,0.080211,-0.021755,0.249052,0,0);-ms-transform:matrix(0.918273,0.080211,-0.021755,0.249052,0,0);-webkit-transform:matrix(0.918273,0.080211,-0.021755,0.249052,0,0);}
.md_c00095{transform:matrix(0.957510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.957510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.957510,0.000000,0.000000,0.250000,0,0);}
.mb_c00095{transform:matrix(1.135155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.135155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.135155,0.000000,0.000000,0.250000,0,0);}
.v0_c00095{vertical-align:0.000000px;}
.ls0_c00095{letter-spacing:0.000000px;}
.sc__c00095{text-shadow:none;}
.sc0_c00095{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__c00095{-webkit-text-stroke:0px transparent;}
.sc0_c00095{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00095{word-spacing:0.000000px;}
.fc0_c00095{color:transparent;}
.fs5_c00095{font-size:11.999100px;}
.fs2_c00095{font-size:18.000000px;}
.fs1_c00095{font-size:35.992529px;}
.fs6_c00095{font-size:41.996850px;}
.fs3_c00095{font-size:42.000000px;}
.fs0_c00095{font-size:65.986304px;}
.fs4_c00095{font-size:90.000000px;}
.y0_c00095{bottom:0.000000px;}
.yd_c00095{bottom:372.618789px;}
.ye_c00095{bottom:374.152557px;}
.yf_c00095{bottom:375.096854px;}
.ya_c00095{bottom:380.391000px;}
.yb_c00095{bottom:380.840888px;}
.yc_c00095{bottom:383.145021px;}
.y9_c00095{bottom:409.600500px;}
.y7_c00095{bottom:436.050000px;}
.y6_c00095{bottom:442.800000px;}
.y8_c00095{bottom:459.780000px;}
.y5_c00095{bottom:462.455354px;}
.y3_c00095{bottom:470.499139px;}
.y4_c00095{bottom:471.190528px;}
.y2_c00095{bottom:478.925785px;}
.y1_c00095{bottom:484.444500px;}
.h7_c00095{height:11.999100px;}
.h4_c00095{height:18.000000px;}
.h3_c00095{height:35.992529px;}
.h8_c00095{height:41.996850px;}
.h5_c00095{height:42.000000px;}
.h2_c00095{height:65.986304px;}
.h6_c00095{height:90.000000px;}
.h0_c00095{height:711.720000px;}
.h1_c00095{height:711.750000px;}
.w1_c00095{width:945.750000px;}
.w0_c00095{width:946.050000px;}
.x0_c00095{left:0.000000px;}
.x8_c00095{left:545.940000px;}
.x9_c00095{left:552.690000px;}
.xa_c00095{left:562.950000px;}
.xb_c00095{left:599.670000px;}
.xc_c00095{left:678.240000px;}
.x13_c00095{left:699.739677px;}
.x10_c00095{left:705.510000px;}
.x1_c00095{left:709.894500px;}
.x11_c00095{left:715.123500px;}
.x12_c00095{left:725.575538px;}
.x14_c00095{left:734.570826px;}
.x6_c00095{left:748.980000px;}
.x4_c00095{left:752.175064px;}
.x15_c00095{left:756.020951px;}
.x7_c00095{left:769.230000px;}
.x2_c00095{left:773.074266px;}
.xd_c00095{left:779.760000px;}
.xe_c00095{left:802.980000px;}
.xf_c00095{left:834.300000px;}
.x5_c00095{left:845.749392px;}
.x3_c00095{left:869.544834px;}
@media print{
.v0_c00095{vertical-align:0.000000pt;}
.ls0_c00095{letter-spacing:0.000000pt;}
.ws0_c00095{word-spacing:0.000000pt;}
.fs5_c00095{font-size:10.665867pt;}
.fs2_c00095{font-size:16.000000pt;}
.fs1_c00095{font-size:31.993359pt;}
.fs6_c00095{font-size:37.330533pt;}
.fs3_c00095{font-size:37.333333pt;}
.fs0_c00095{font-size:58.654492pt;}
.fs4_c00095{font-size:80.000000pt;}
.y0_c00095{bottom:0.000000pt;}
.yd_c00095{bottom:331.216701pt;}
.ye_c00095{bottom:332.580051pt;}
.yf_c00095{bottom:333.419425pt;}
.ya_c00095{bottom:338.125333pt;}
.yb_c00095{bottom:338.525233pt;}
.yc_c00095{bottom:340.573352pt;}
.y9_c00095{bottom:364.089333pt;}
.y7_c00095{bottom:387.600000pt;}
.y6_c00095{bottom:393.600000pt;}
.y8_c00095{bottom:408.693333pt;}
.y5_c00095{bottom:411.071425pt;}
.y3_c00095{bottom:418.221457pt;}
.y4_c00095{bottom:418.836025pt;}
.y2_c00095{bottom:425.711809pt;}
.y1_c00095{bottom:430.617333pt;}
.h7_c00095{height:10.665867pt;}
.h4_c00095{height:16.000000pt;}
.h3_c00095{height:31.993359pt;}
.h8_c00095{height:37.330533pt;}
.h5_c00095{height:37.333333pt;}
.h2_c00095{height:58.654492pt;}
.h6_c00095{height:80.000000pt;}
.h0_c00095{height:632.640000pt;}
.h1_c00095{height:632.666667pt;}
.w1_c00095{width:840.666667pt;}
.w0_c00095{width:840.933333pt;}
.x0_c00095{left:0.000000pt;}
.x8_c00095{left:485.280000pt;}
.x9_c00095{left:491.280000pt;}
.xa_c00095{left:500.400000pt;}
.xb_c00095{left:533.040000pt;}
.xc_c00095{left:602.880000pt;}
.x13_c00095{left:621.990824pt;}
.x10_c00095{left:627.120000pt;}
.x1_c00095{left:631.017333pt;}
.x11_c00095{left:635.665333pt;}
.x12_c00095{left:644.956033pt;}
.x14_c00095{left:652.951845pt;}
.x6_c00095{left:665.760000pt;}
.x4_c00095{left:668.600057pt;}
.x15_c00095{left:672.018623pt;}
.x7_c00095{left:683.760000pt;}
.x2_c00095{left:687.177125pt;}
.xd_c00095{left:693.120000pt;}
.xe_c00095{left:713.760000pt;}
.xf_c00095{left:741.600000pt;}
.x5_c00095{left:751.777237pt;}
.x3_c00095{left:772.928741pt;}
}





/* 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_c00096 {
    display:none;
  }
  .loading-indicator_c00096.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00096 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_c00096 { 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_c00096" -> "#page-container .classname_c00096")
 */
.pf_c00096 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00096 { /* 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_c00096.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00096 { /* 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_c00096 { /* 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_c00096 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00096 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00096 {overflow:visible;}
  }
}
.c_c00096 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00096 { /* 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_c00096:after { /* webkit #35443 */
  content: '';
}
.t_c00096:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00096 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 */
}
.__c00096 { /* 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_c00096 { /* info for Javascript */
  display:none;
}
.l_c00096 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00096 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00096 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00096: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_c00096 {
    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_c00096.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00096.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_c00096 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00096{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00096;src:url('chunks/assets/font_c605e72f209fc835e906f064.woff2')format("woff");}.ff1_c00096{font-family:ff1_c00096;line-height:1.000000;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;}
.m2b_c00096{transform:matrix(0.009790,0.000088,-0.002250,0.249990,0,0);-ms-transform:matrix(0.009790,0.000088,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.009790,0.000088,-0.002250,0.249990,0,0);}
.m3a_c00096{transform:matrix(0.011589,0.000116,-0.002500,0.249988,0,0);-ms-transform:matrix(0.011589,0.000116,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.011589,0.000116,-0.002500,0.249988,0,0);}
.m2c_c00096{transform:matrix(0.012479,0.000112,-0.002250,0.249990,0,0);-ms-transform:matrix(0.012479,0.000112,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.012479,0.000112,-0.002250,0.249990,0,0);}
.m10_c00096{transform:matrix(0.023860,0.000477,-0.004999,0.249950,0,0);-ms-transform:matrix(0.023860,0.000477,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.023860,0.000477,-0.004999,0.249950,0,0);}
.m37_c00096{transform:matrix(0.034788,0.000348,-0.002500,0.249988,0,0);-ms-transform:matrix(0.034788,0.000348,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.034788,0.000348,-0.002500,0.249988,0,0);}
.m39_c00096{transform:matrix(0.037908,0.000379,-0.002500,0.249988,0,0);-ms-transform:matrix(0.037908,0.000379,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.037908,0.000379,-0.002500,0.249988,0,0);}
.m11_c00096{transform:matrix(0.073110,0.001462,-0.004999,0.249950,0,0);-ms-transform:matrix(0.073110,0.001462,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.073110,0.001462,-0.004999,0.249950,0,0);}
.m2_c00096{transform:matrix(0.103699,0.002074,-0.004999,0.249950,0,0);-ms-transform:matrix(0.103699,0.002074,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.103699,0.002074,-0.004999,0.249950,0,0);}
.m4d_c00096{transform:matrix(0.103985,0.001040,-0.002500,0.249988,0,0);-ms-transform:matrix(0.103985,0.001040,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.103985,0.001040,-0.002500,0.249988,0,0);}
.m2e_c00096{transform:matrix(0.108636,0.000978,-0.002250,0.249990,0,0);-ms-transform:matrix(0.108636,0.000978,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.108636,0.000978,-0.002250,0.249990,0,0);}
.md_c00096{transform:matrix(0.109178,0.002184,-0.004999,0.249950,0,0);-ms-transform:matrix(0.109178,0.002184,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.109178,0.002184,-0.004999,0.249950,0,0);}
.m4b_c00096{transform:matrix(0.125324,0.001253,-0.002500,0.249988,0,0);-ms-transform:matrix(0.125324,0.001253,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.125324,0.001253,-0.002500,0.249988,0,0);}
.m1d_c00096{transform:matrix(0.138973,-0.000695,0.001250,0.249997,0,0);-ms-transform:matrix(0.138973,-0.000695,0.001250,0.249997,0,0);-webkit-transform:matrix(0.138973,-0.000695,0.001250,0.249997,0,0);}
.m42_c00096{transform:matrix(0.142188,0.001422,-0.002500,0.249988,0,0);-ms-transform:matrix(0.142188,0.001422,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.142188,0.001422,-0.002500,0.249988,0,0);}
.m8_c00096{transform:matrix(0.165982,0.003320,-0.004999,0.249950,0,0);-ms-transform:matrix(0.165982,0.003320,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.165982,0.003320,-0.004999,0.249950,0,0);}
.m26_c00096{transform:matrix(0.171420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171420,0.000000,0.000000,0.250000,0,0);}
.m3c_c00096{transform:matrix(0.175841,0.001758,-0.002500,0.249988,0,0);-ms-transform:matrix(0.175841,0.001758,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.175841,0.001758,-0.002500,0.249988,0,0);}
.m4a_c00096{transform:matrix(0.194540,0.001945,-0.002500,0.249988,0,0);-ms-transform:matrix(0.194540,0.001945,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.194540,0.001945,-0.002500,0.249988,0,0);}
.me_c00096{transform:matrix(0.219486,0.004390,-0.004999,0.249950,0,0);-ms-transform:matrix(0.219486,0.004390,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.219486,0.004390,-0.004999,0.249950,0,0);}
.m5_c00096{transform:matrix(0.227689,0.004554,-0.004999,0.249950,0,0);-ms-transform:matrix(0.227689,0.004554,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.227689,0.004554,-0.004999,0.249950,0,0);}
.m34_c00096{transform:matrix(0.228514,0.002285,-0.002500,0.249988,0,0);-ms-transform:matrix(0.228514,0.002285,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.228514,0.002285,-0.002500,0.249988,0,0);}
.m1_c00096{transform:matrix(0.228549,0.004571,-0.004999,0.249950,0,0);-ms-transform:matrix(0.228549,0.004571,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.228549,0.004571,-0.004999,0.249950,0,0);}
.mf_c00096{transform:matrix(0.257873,0.005157,-0.004999,0.249950,0,0);-ms-transform:matrix(0.257873,0.005157,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.257873,0.005157,-0.004999,0.249950,0,0);}
.m3e_c00096{transform:matrix(0.262322,0.002623,-0.002500,0.249988,0,0);-ms-transform:matrix(0.262322,0.002623,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.262322,0.002623,-0.002500,0.249988,0,0);}
.m6_c00096{transform:matrix(0.271406,0.005428,-0.004999,0.249950,0,0);-ms-transform:matrix(0.271406,0.005428,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.271406,0.005428,-0.004999,0.249950,0,0);}
.m28_c00096{transform:matrix(0.272029,0.002448,-0.002250,0.249990,0,0);-ms-transform:matrix(0.272029,0.002448,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.272029,0.002448,-0.002250,0.249990,0,0);}
.m32_c00096{transform:matrix(0.275781,0.002758,-0.002500,0.249988,0,0);-ms-transform:matrix(0.275781,0.002758,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.275781,0.002758,-0.002500,0.249988,0,0);}
.m53_c00096{transform:matrix(0.286635,0.001720,-0.001500,0.249996,0,0);-ms-transform:matrix(0.286635,0.001720,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.286635,0.001720,-0.001500,0.249996,0,0);}
.m3_c00096{transform:matrix(0.300125,0.006002,-0.004999,0.249950,0,0);-ms-transform:matrix(0.300125,0.006002,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.300125,0.006002,-0.004999,0.249950,0,0);}
.mc_c00096{transform:matrix(0.302415,0.006048,-0.004999,0.249950,0,0);-ms-transform:matrix(0.302415,0.006048,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.302415,0.006048,-0.004999,0.249950,0,0);}
.m31_c00096{transform:matrix(0.303660,0.003037,-0.002500,0.249988,0,0);-ms-transform:matrix(0.303660,0.003037,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.303660,0.003037,-0.002500,0.249988,0,0);}
.m56_c00096{transform:matrix(0.306434,0.001839,-0.001500,0.249996,0,0);-ms-transform:matrix(0.306434,0.001839,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.306434,0.001839,-0.001500,0.249996,0,0);}
.m21_c00096{transform:matrix(0.307196,-0.001536,0.001250,0.249997,0,0);-ms-transform:matrix(0.307196,-0.001536,0.001250,0.249997,0,0);-webkit-transform:matrix(0.307196,-0.001536,0.001250,0.249997,0,0);}
.m52_c00096{transform:matrix(0.310474,0.001863,-0.001500,0.249996,0,0);-ms-transform:matrix(0.310474,0.001863,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.310474,0.001863,-0.001500,0.249996,0,0);}
.m3f_c00096{transform:matrix(0.310759,0.003108,-0.002500,0.249988,0,0);-ms-transform:matrix(0.310759,0.003108,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.310759,0.003108,-0.002500,0.249988,0,0);}
.ma_c00096{transform:matrix(0.324365,0.006487,-0.004999,0.249950,0,0);-ms-transform:matrix(0.324365,0.006487,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.324365,0.006487,-0.004999,0.249950,0,0);}
.mb_c00096{transform:matrix(0.326475,0.006529,-0.004999,0.249950,0,0);-ms-transform:matrix(0.326475,0.006529,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.326475,0.006529,-0.004999,0.249950,0,0);}
.m46_c00096{transform:matrix(0.332808,0.003328,-0.002500,0.249988,0,0);-ms-transform:matrix(0.332808,0.003328,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.332808,0.003328,-0.002500,0.249988,0,0);}
.m1f_c00096{transform:matrix(0.338391,-0.001692,0.001250,0.249997,0,0);-ms-transform:matrix(0.338391,-0.001692,0.001250,0.249997,0,0);-webkit-transform:matrix(0.338391,-0.001692,0.001250,0.249997,0,0);}
.m20_c00096{transform:matrix(0.345136,-0.001726,0.001250,0.249997,0,0);-ms-transform:matrix(0.345136,-0.001726,0.001250,0.249997,0,0);-webkit-transform:matrix(0.345136,-0.001726,0.001250,0.249997,0,0);}
.m7_c00096{transform:matrix(0.363077,0.007262,-0.004999,0.249950,0,0);-ms-transform:matrix(0.363077,0.007262,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.363077,0.007262,-0.004999,0.249950,0,0);}
.m0_c00096{transform:matrix(0.366122,0.007322,-0.004999,0.249950,0,0);-ms-transform:matrix(0.366122,0.007322,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.366122,0.007322,-0.004999,0.249950,0,0);}
.m3b_c00096{transform:matrix(0.385441,0.003854,-0.002500,0.249988,0,0);-ms-transform:matrix(0.385441,0.003854,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.385441,0.003854,-0.002500,0.249988,0,0);}
.m19_c00096{transform:matrix(0.394670,-0.001973,0.001250,0.249997,0,0);-ms-transform:matrix(0.394670,-0.001973,0.001250,0.249997,0,0);-webkit-transform:matrix(0.394670,-0.001973,0.001250,0.249997,0,0);}
.m12_c00096{transform:matrix(0.400765,0.008015,-0.004999,0.249950,0,0);-ms-transform:matrix(0.400765,0.008015,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.400765,0.008015,-0.004999,0.249950,0,0);}
.m41_c00096{transform:matrix(0.409815,0.004098,-0.002500,0.249988,0,0);-ms-transform:matrix(0.409815,0.004098,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.409815,0.004098,-0.002500,0.249988,0,0);}
.m48_c00096{transform:matrix(0.430153,0.004302,-0.002500,0.249988,0,0);-ms-transform:matrix(0.430153,0.004302,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.430153,0.004302,-0.002500,0.249988,0,0);}
.m4f_c00096{transform:matrix(0.432792,0.002597,-0.001500,0.249996,0,0);-ms-transform:matrix(0.432792,0.002597,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.432792,0.002597,-0.001500,0.249996,0,0);}
.m45_c00096{transform:matrix(0.434058,0.004341,-0.002500,0.249988,0,0);-ms-transform:matrix(0.434058,0.004341,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.434058,0.004341,-0.002500,0.249988,0,0);}
.m22_c00096{transform:matrix(0.435690,-0.002178,0.001250,0.249997,0,0);-ms-transform:matrix(0.435690,-0.002178,0.001250,0.249997,0,0);-webkit-transform:matrix(0.435690,-0.002178,0.001250,0.249997,0,0);}
.m38_c00096{transform:matrix(0.439433,0.004394,-0.002500,0.249988,0,0);-ms-transform:matrix(0.439433,0.004394,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.439433,0.004394,-0.002500,0.249988,0,0);}
.m55_c00096{transform:matrix(0.446132,0.002677,-0.001500,0.249996,0,0);-ms-transform:matrix(0.446132,0.002677,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.446132,0.002677,-0.001500,0.249996,0,0);}
.m4e_c00096{transform:matrix(0.447598,0.004476,-0.002500,0.249988,0,0);-ms-transform:matrix(0.447598,0.004476,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.447598,0.004476,-0.002500,0.249988,0,0);}
.m49_c00096{transform:matrix(0.453552,0.004536,-0.002500,0.249988,0,0);-ms-transform:matrix(0.453552,0.004536,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.453552,0.004536,-0.002500,0.249988,0,0);}
.m4c_c00096{transform:matrix(0.475171,0.004752,-0.002500,0.249988,0,0);-ms-transform:matrix(0.475171,0.004752,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.475171,0.004752,-0.002500,0.249988,0,0);}
.m51_c00096{transform:matrix(0.482441,0.002895,-0.001500,0.249996,0,0);-ms-transform:matrix(0.482441,0.002895,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.482441,0.002895,-0.001500,0.249996,0,0);}
.m33_c00096{transform:matrix(0.485336,0.004853,-0.002500,0.249988,0,0);-ms-transform:matrix(0.485336,0.004853,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.485336,0.004853,-0.002500,0.249988,0,0);}
.m36_c00096{transform:matrix(0.494790,0.004948,-0.002500,0.249988,0,0);-ms-transform:matrix(0.494790,0.004948,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.494790,0.004948,-0.002500,0.249988,0,0);}
.m35_c00096{transform:matrix(0.513479,0.005135,-0.002500,0.249988,0,0);-ms-transform:matrix(0.513479,0.005135,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.513479,0.005135,-0.002500,0.249988,0,0);}
.m5b_c00096{transform:matrix(0.516131,0.003097,-0.001500,0.249996,0,0);-ms-transform:matrix(0.516131,0.003097,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.516131,0.003097,-0.001500,0.249996,0,0);}
.m25_c00096{transform:matrix(0.518480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518480,0.000000,0.000000,0.250000,0,0);}
.m44_c00096{transform:matrix(0.519524,0.005195,-0.002500,0.249988,0,0);-ms-transform:matrix(0.519524,0.005195,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.519524,0.005195,-0.002500,0.249988,0,0);}
.m47_c00096{transform:matrix(0.535558,0.005356,-0.002500,0.249988,0,0);-ms-transform:matrix(0.535558,0.005356,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.535558,0.005356,-0.002500,0.249988,0,0);}
.m54_c00096{transform:matrix(0.536860,0.003221,-0.001500,0.249996,0,0);-ms-transform:matrix(0.536860,0.003221,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.536860,0.003221,-0.001500,0.249996,0,0);}
.m5a_c00096{transform:matrix(0.576360,0.003458,-0.001500,0.249996,0,0);-ms-transform:matrix(0.576360,0.003458,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.576360,0.003458,-0.001500,0.249996,0,0);}
.m9_c00096{transform:matrix(0.586278,0.011726,-0.004999,0.249950,0,0);-ms-transform:matrix(0.586278,0.011726,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.586278,0.011726,-0.004999,0.249950,0,0);}
.m2d_c00096{transform:matrix(0.596936,0.005372,-0.002250,0.249990,0,0);-ms-transform:matrix(0.596936,0.005372,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.596936,0.005372,-0.002250,0.249990,0,0);}
.m2f_c00096{transform:matrix(0.605015,0.006050,-0.002500,0.249988,0,0);-ms-transform:matrix(0.605015,0.006050,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.605015,0.006050,-0.002500,0.249988,0,0);}
.m30_c00096{transform:matrix(0.606975,0.006070,-0.002500,0.249988,0,0);-ms-transform:matrix(0.606975,0.006070,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.606975,0.006070,-0.002500,0.249988,0,0);}
.m1c_c00096{transform:matrix(0.611992,-0.003060,0.001250,0.249997,0,0);-ms-transform:matrix(0.611992,-0.003060,0.001250,0.249997,0,0);-webkit-transform:matrix(0.611992,-0.003060,0.001250,0.249997,0,0);}
.m18_c00096{transform:matrix(0.623627,-0.003118,0.001250,0.249997,0,0);-ms-transform:matrix(0.623627,-0.003118,0.001250,0.249997,0,0);-webkit-transform:matrix(0.623627,-0.003118,0.001250,0.249997,0,0);}
.m23_c00096{transform:matrix(0.623794,0.011228,-0.004499,0.249960,0,0);-ms-transform:matrix(0.623794,0.011228,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.623794,0.011228,-0.004499,0.249960,0,0);}
.m4_c00096{transform:matrix(0.624730,0.012495,-0.004999,0.249950,0,0);-ms-transform:matrix(0.624730,0.012495,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.624730,0.012495,-0.004999,0.249950,0,0);}
.m17_c00096{transform:matrix(0.627297,-0.003136,0.001250,0.249997,0,0);-ms-transform:matrix(0.627297,-0.003136,0.001250,0.249997,0,0);-webkit-transform:matrix(0.627297,-0.003136,0.001250,0.249997,0,0);}
.m58_c00096{transform:matrix(0.658173,0.003949,-0.001500,0.249996,0,0);-ms-transform:matrix(0.658173,0.003949,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.658173,0.003949,-0.001500,0.249996,0,0);}
.m5c_c00096{transform:matrix(0.713672,0.004282,-0.001500,0.249996,0,0);-ms-transform:matrix(0.713672,0.004282,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.713672,0.004282,-0.001500,0.249996,0,0);}
.m40_c00096{transform:matrix(0.718909,0.007189,-0.002500,0.249988,0,0);-ms-transform:matrix(0.718909,0.007189,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.718909,0.007189,-0.002500,0.249988,0,0);}
.m13_c00096{transform:matrix(0.746856,0.014937,-0.004999,0.249950,0,0);-ms-transform:matrix(0.746856,0.014937,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.746856,0.014937,-0.004999,0.249950,0,0);}
.m15_c00096{transform:matrix(0.783035,-0.003915,0.001250,0.249997,0,0);-ms-transform:matrix(0.783035,-0.003915,0.001250,0.249997,0,0);-webkit-transform:matrix(0.783035,-0.003915,0.001250,0.249997,0,0);}
.m50_c00096{transform:matrix(0.795006,0.004770,-0.001500,0.249996,0,0);-ms-transform:matrix(0.795006,0.004770,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.795006,0.004770,-0.001500,0.249996,0,0);}
.m3d_c00096{transform:matrix(0.859827,0.008598,-0.002500,0.249988,0,0);-ms-transform:matrix(0.859827,0.008598,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.859827,0.008598,-0.002500,0.249988,0,0);}
.m2a_c00096{transform:matrix(0.863070,0.007768,-0.002250,0.249990,0,0);-ms-transform:matrix(0.863070,0.007768,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.863070,0.007768,-0.002250,0.249990,0,0);}
.m1a_c00096{transform:matrix(0.908224,-0.004541,0.001250,0.249997,0,0);-ms-transform:matrix(0.908224,-0.004541,0.001250,0.249997,0,0);-webkit-transform:matrix(0.908224,-0.004541,0.001250,0.249997,0,0);}
.m29_c00096{transform:matrix(0.912458,0.008212,-0.002250,0.249990,0,0);-ms-transform:matrix(0.912458,0.008212,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.912458,0.008212,-0.002250,0.249990,0,0);}
.m5d_c00096{transform:matrix(0.968470,0.027117,-0.006997,0.249902,0,0);-ms-transform:matrix(0.968470,0.027117,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.968470,0.027117,-0.006997,0.249902,0,0);}
.m24_c00096{transform:matrix(1.064643,0.019164,-0.004499,0.249960,0,0);-ms-transform:matrix(1.064643,0.019164,-0.004499,0.249960,0,0);-webkit-transform:matrix(1.064643,0.019164,-0.004499,0.249960,0,0);}
.m59_c00096{transform:matrix(1.177499,0.007065,-0.001500,0.249996,0,0);-ms-transform:matrix(1.177499,0.007065,-0.001500,0.249996,0,0);-webkit-transform:matrix(1.177499,0.007065,-0.001500,0.249996,0,0);}
.m43_c00096{transform:matrix(1.247293,0.012473,-0.002500,0.249988,0,0);-ms-transform:matrix(1.247293,0.012473,-0.002500,0.249988,0,0);-webkit-transform:matrix(1.247293,0.012473,-0.002500,0.249988,0,0);}
.m1b_c00096{transform:matrix(1.427112,-0.007136,0.001250,0.249997,0,0);-ms-transform:matrix(1.427112,-0.007136,0.001250,0.249997,0,0);-webkit-transform:matrix(1.427112,-0.007136,0.001250,0.249997,0,0);}
.m27_c00096{transform:matrix(1.684037,0.015156,-0.002250,0.249990,0,0);-ms-transform:matrix(1.684037,0.015156,-0.002250,0.249990,0,0);-webkit-transform:matrix(1.684037,0.015156,-0.002250,0.249990,0,0);}
.m16_c00096{transform:matrix(1.720538,-0.008603,0.001250,0.249997,0,0);-ms-transform:matrix(1.720538,-0.008603,0.001250,0.249997,0,0);-webkit-transform:matrix(1.720538,-0.008603,0.001250,0.249997,0,0);}
.m1e_c00096{transform:matrix(2.372285,-0.011861,0.001250,0.249997,0,0);-ms-transform:matrix(2.372285,-0.011861,0.001250,0.249997,0,0);-webkit-transform:matrix(2.372285,-0.011861,0.001250,0.249997,0,0);}
.m57_c00096{transform:matrix(2.471376,0.014828,-0.001500,0.249996,0,0);-ms-transform:matrix(2.471376,0.014828,-0.001500,0.249996,0,0);-webkit-transform:matrix(2.471376,0.014828,-0.001500,0.249996,0,0);}
.m14_c00096{transform:matrix(2.500884,-0.012504,0.001250,0.249997,0,0);-ms-transform:matrix(2.500884,-0.012504,0.001250,0.249997,0,0);-webkit-transform:matrix(2.500884,-0.012504,0.001250,0.249997,0,0);}
.v0_c00096{vertical-align:0.000000px;}
.ls0_c00096{letter-spacing:0.000000px;}
.sc__c00096{text-shadow:none;}
.sc0_c00096{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__c00096{-webkit-text-stroke:0px transparent;}
.sc0_c00096{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00096{word-spacing:0.000000px;}
.fc0_c00096{color:transparent;}
.fs0_c00096{font-size:24.004800px;}
.fs1_c00096{font-size:48.009599px;}
.fs5_c00096{font-size:60.000000px;}
.fsc_c00096{font-size:60.001080px;}
.fsa_c00096{font-size:72.003600px;}
.fs6_c00096{font-size:78.003159px;}
.fs4_c00096{font-size:78.012635px;}
.fs2_c00096{font-size:84.001050px;}
.fsb_c00096{font-size:84.001512px;}
.fs8_c00096{font-size:84.004200px;}
.fs3_c00096{font-size:90.001125px;}
.fs7_c00096{font-size:96.004800px;}
.fs9_c00096{font-size:120.006000px;}
.fsd_c00096{font-size:132.051734px;}
.y0_c00096{bottom:0.000000px;}
.y57_c00096{bottom:207.114225px;}
.y5a_c00096{bottom:207.114330px;}
.y59_c00096{bottom:207.114432px;}
.y58_c00096{bottom:207.114783px;}
.y5b_c00096{bottom:207.114999px;}
.y5c_c00096{bottom:207.115644px;}
.y56_c00096{bottom:241.965075px;}
.y55_c00096{bottom:242.377788px;}
.y54_c00096{bottom:243.316218px;}
.y53_c00096{bottom:244.001469px;}
.y52_c00096{bottom:244.602165px;}
.y51_c00096{bottom:245.136819px;}
.y50_c00096{bottom:246.467469px;}
.y4f_c00096{bottom:246.819000px;}
.y4e_c00096{bottom:270.977505px;}
.y4d_c00096{bottom:271.346520px;}
.y4c_c00096{bottom:272.035830px;}
.y4b_c00096{bottom:272.395995px;}
.y4a_c00096{bottom:272.880285px;}
.y49_c00096{bottom:273.741480px;}
.y48_c00096{bottom:274.785555px;}
.y47_c00096{bottom:276.589080px;}
.y46_c00096{bottom:277.592190px;}
.y45_c00096{bottom:278.396070px;}
.y44_c00096{bottom:281.040030px;}
.y43_c00096{bottom:282.884265px;}
.y5d_c00096{bottom:286.414500px;}
.y42_c00096{bottom:297.534825px;}
.y41_c00096{bottom:307.256850px;}
.y40_c00096{bottom:311.235960px;}
.y3f_c00096{bottom:312.561345px;}
.y3e_c00096{bottom:313.688940px;}
.y3d_c00096{bottom:316.986270px;}
.y3c_c00096{bottom:336.794565px;}
.y3a_c00096{bottom:336.794895px;}
.y3b_c00096{bottom:336.795300px;}
.y38_c00096{bottom:336.795405px;}
.y39_c00096{bottom:336.795465px;}
.y37_c00096{bottom:355.122570px;}
.y36_c00096{bottom:356.393235px;}
.y34_c00096{bottom:358.236390px;}
.y35_c00096{bottom:358.280880px;}
.y33_c00096{bottom:359.317680px;}
.y32_c00096{bottom:359.991750px;}
.y31_c00096{bottom:361.562070px;}
.y30_c00096{bottom:362.869695px;}
.y2f_c00096{bottom:363.961500px;}
.y2e_c00096{bottom:392.354001px;}
.y2d_c00096{bottom:393.175260px;}
.y2c_c00096{bottom:394.138984px;}
.y2b_c00096{bottom:394.569230px;}
.y2a_c00096{bottom:395.599630px;}
.y29_c00096{bottom:396.934362px;}
.y28_c00096{bottom:397.529469px;}
.y27_c00096{bottom:398.794500px;}
.y26_c00096{bottom:434.299500px;}
.y25_c00096{bottom:471.658227px;}
.y24_c00096{bottom:472.965000px;}
.y23_c00096{bottom:504.938033px;}
.y22_c00096{bottom:505.285500px;}
.y21_c00096{bottom:505.621072px;}
.y20_c00096{bottom:505.974795px;}
.y1f_c00096{bottom:507.314730px;}
.y1e_c00096{bottom:507.502853px;}
.y1d_c00096{bottom:508.198200px;}
.y1c_c00096{bottom:510.172028px;}
.y1b_c00096{bottom:510.300225px;}
.y15_c00096{bottom:619.551000px;}
.y16_c00096{bottom:621.203887px;}
.y17_c00096{bottom:621.677993px;}
.y18_c00096{bottom:623.076982px;}
.y19_c00096{bottom:623.604803px;}
.y1a_c00096{bottom:624.010312px;}
.y14_c00096{bottom:690.832530px;}
.y13_c00096{bottom:692.394240px;}
.y12_c00096{bottom:693.009750px;}
.y11_c00096{bottom:693.772680px;}
.y10_c00096{bottom:695.115300px;}
.yf_c00096{bottom:696.071250px;}
.ye_c00096{bottom:696.489180px;}
.yd_c00096{bottom:697.021410px;}
.yc_c00096{bottom:698.190450px;}
.yb_c00096{bottom:699.648660px;}
.ya_c00096{bottom:705.332280px;}
.y9_c00096{bottom:706.061130px;}
.y8_c00096{bottom:707.054520px;}
.y7_c00096{bottom:709.014330px;}
.y6_c00096{bottom:709.170900px;}
.y5_c00096{bottom:711.006540px;}
.y4_c00096{bottom:711.854160px;}
.y3_c00096{bottom:712.154130px;}
.y2_c00096{bottom:714.596820px;}
.y1_c00096{bottom:715.228500px;}
.h2_c00096{height:24.004800px;}
.h3_c00096{height:48.009599px;}
.h7_c00096{height:60.000000px;}
.he_c00096{height:60.001080px;}
.hc_c00096{height:72.003600px;}
.h8_c00096{height:78.003159px;}
.h6_c00096{height:78.012635px;}
.h4_c00096{height:84.001050px;}
.hd_c00096{height:84.001512px;}
.ha_c00096{height:84.004200px;}
.h5_c00096{height:90.001125px;}
.h9_c00096{height:96.004800px;}
.hb_c00096{height:120.006000px;}
.hf_c00096{height:132.051734px;}
.h0_c00096{height:711.720000px;}
.h1_c00096{height:711.750000px;}
.w1_c00096{width:945.750000px;}
.w0_c00096{width:946.050000px;}
.x0_c00096{left:0.000000px;}
.x15_c00096{left:20.233500px;}
.x1a_c00096{left:36.725153px;}
.x39_c00096{left:44.387310px;}
.x4f_c00096{left:45.897651px;}
.x2d_c00096{left:49.234500px;}
.x1b_c00096{left:58.186830px;}
.x24_c00096{left:113.130000px;}
.x48_c00096{left:118.926000px;}
.x2e_c00096{left:158.415000px;}
.x3e_c00096{left:171.509535px;}
.x49_c00096{left:177.514500px;}
.x3a_c00096{left:194.252325px;}
.x50_c00096{left:196.560078px;}
.x25_c00096{left:213.030000px;}
.x26_c00096{left:214.906500px;}
.x3b_c00096{left:245.505675px;}
.x3f_c00096{left:286.776120px;}
.x2f_c00096{left:289.177500px;}
.x3c_c00096{left:305.736945px;}
.x35_c00096{left:335.895030px;}
.x16_c00096{left:350.811000px;}
.x27_c00096{left:355.465500px;}
.x1c_c00096{left:387.039420px;}
.x36_c00096{left:397.458180px;}
.x4a_c00096{left:399.289500px;}
.x1_c00096{left:408.850500px;}
.x28_c00096{left:421.588500px;}
.xb_c00096{left:427.038300px;}
.x2_c00096{left:440.434500px;}
.x17_c00096{left:445.632000px;}
.x40_c00096{left:452.012205px;}
.x51_c00096{left:460.895091px;}
.x3d_c00096{left:486.576240px;}
.x4b_c00096{left:488.398500px;}
.x1d_c00096{left:502.976295px;}
.xc_c00096{left:508.052040px;}
.x30_c00096{left:513.616500px;}
.x1e_c00096{left:534.353520px;}
.x52_c00096{left:550.536822px;}
.x3_c00096{left:562.569000px;}
.x41_c00096{left:564.904425px;}
.x29_c00096{left:569.892000px;}
.xd_c00096{left:573.031650px;}
.x4_c00096{left:577.567500px;}
.x4c_c00096{left:588.514500px;}
.x37_c00096{left:597.537690px;}
.xe_c00096{left:602.569320px;}
.x32_c00096{left:617.296500px;}
.x5_c00096{left:619.948500px;}
.x31_c00096{left:621.745500px;}
.xf_c00096{left:625.791750px;}
.x22_c00096{left:662.596500px;}
.x42_c00096{left:677.600160px;}
.x10_c00096{left:678.916380px;}
.x2a_c00096{left:684.381000px;}
.x4d_c00096{left:702.723000px;}
.x6_c00096{left:711.730500px;}
.x7_c00096{left:719.559000px;}
.x18_c00096{left:725.430000px;}
.x2b_c00096{left:732.186000px;}
.x23_c00096{left:735.195000px;}
.x43_c00096{left:742.853745px;}
.x11_c00096{left:753.475350px;}
.x1f_c00096{left:757.778805px;}
.x12_c00096{left:795.898560px;}
.x33_c00096{left:806.061000px;}
.x8_c00096{left:817.549500px;}
.x44_c00096{left:826.997205px;}
.x13_c00096{left:830.125440px;}
.x2c_c00096{left:839.266500px;}
.x45_c00096{left:849.512355px;}
.x4e_c00096{left:859.128000px;}
.x9_c00096{left:867.219000px;}
.x20_c00096{left:872.526120px;}
.x46_c00096{left:892.640775px;}
.xa_c00096{left:903.661500px;}
.x19_c00096{left:912.096000px;}
.x47_c00096{left:915.740895px;}
.x14_c00096{left:916.914420px;}
.x53_c00096{left:927.192885px;}
.x38_c00096{left:928.844310px;}
.x21_c00096{left:930.535808px;}
.x34_c00096{left:933.127500px;}
@media print{
.v0_c00096{vertical-align:0.000000pt;}
.ls0_c00096{letter-spacing:0.000000pt;}
.ws0_c00096{word-spacing:0.000000pt;}
.fs0_c00096{font-size:21.337600pt;}
.fs1_c00096{font-size:42.675199pt;}
.fs5_c00096{font-size:53.333333pt;}
.fsc_c00096{font-size:53.334293pt;}
.fsa_c00096{font-size:64.003200pt;}
.fs6_c00096{font-size:69.336141pt;}
.fs4_c00096{font-size:69.344564pt;}
.fs2_c00096{font-size:74.667600pt;}
.fsb_c00096{font-size:74.668011pt;}
.fs8_c00096{font-size:74.670400pt;}
.fs3_c00096{font-size:80.001000pt;}
.fs7_c00096{font-size:85.337600pt;}
.fs9_c00096{font-size:106.672000pt;}
.fsd_c00096{font-size:117.379319pt;}
.y0_c00096{bottom:0.000000pt;}
.y57_c00096{bottom:184.101533pt;}
.y5a_c00096{bottom:184.101627pt;}
.y59_c00096{bottom:184.101717pt;}
.y58_c00096{bottom:184.102029pt;}
.y5b_c00096{bottom:184.102221pt;}
.y5c_c00096{bottom:184.102795pt;}
.y56_c00096{bottom:215.080067pt;}
.y55_c00096{bottom:215.446923pt;}
.y54_c00096{bottom:216.281083pt;}
.y53_c00096{bottom:216.890195pt;}
.y52_c00096{bottom:217.424147pt;}
.y51_c00096{bottom:217.899395pt;}
.y50_c00096{bottom:219.082195pt;}
.y4f_c00096{bottom:219.394667pt;}
.y4e_c00096{bottom:240.868893pt;}
.y4d_c00096{bottom:241.196907pt;}
.y4c_c00096{bottom:241.809627pt;}
.y4b_c00096{bottom:242.129773pt;}
.y4a_c00096{bottom:242.560253pt;}
.y49_c00096{bottom:243.325760pt;}
.y48_c00096{bottom:244.253827pt;}
.y47_c00096{bottom:245.856960pt;}
.y46_c00096{bottom:246.748613pt;}
.y45_c00096{bottom:247.463173pt;}
.y44_c00096{bottom:249.813360pt;}
.y43_c00096{bottom:251.452680pt;}
.y5d_c00096{bottom:254.590667pt;}
.y42_c00096{bottom:264.475400pt;}
.y41_c00096{bottom:273.117200pt;}
.y40_c00096{bottom:276.654187pt;}
.y3f_c00096{bottom:277.832307pt;}
.y3e_c00096{bottom:278.834613pt;}
.y3d_c00096{bottom:281.765573pt;}
.y3c_c00096{bottom:299.372947pt;}
.y3a_c00096{bottom:299.373240pt;}
.y3b_c00096{bottom:299.373600pt;}
.y38_c00096{bottom:299.373693pt;}
.y39_c00096{bottom:299.373747pt;}
.y37_c00096{bottom:315.664507pt;}
.y36_c00096{bottom:316.793987pt;}
.y34_c00096{bottom:318.432347pt;}
.y35_c00096{bottom:318.471893pt;}
.y33_c00096{bottom:319.393493pt;}
.y32_c00096{bottom:319.992667pt;}
.y31_c00096{bottom:321.388507pt;}
.y30_c00096{bottom:322.550840pt;}
.y2f_c00096{bottom:323.521333pt;}
.y2e_c00096{bottom:348.759112pt;}
.y2d_c00096{bottom:349.489120pt;}
.y2c_c00096{bottom:350.345764pt;}
.y2b_c00096{bottom:350.728204pt;}
.y2a_c00096{bottom:351.644116pt;}
.y29_c00096{bottom:352.830544pt;}
.y28_c00096{bottom:353.359528pt;}
.y27_c00096{bottom:354.484000pt;}
.y26_c00096{bottom:386.044000pt;}
.y25_c00096{bottom:419.251757pt;}
.y24_c00096{bottom:420.413333pt;}
.y23_c00096{bottom:448.833807pt;}
.y22_c00096{bottom:449.142667pt;}
.y21_c00096{bottom:449.440953pt;}
.y20_c00096{bottom:449.755373pt;}
.y1f_c00096{bottom:450.946427pt;}
.y1e_c00096{bottom:451.113647pt;}
.y1d_c00096{bottom:451.731733pt;}
.y1c_c00096{bottom:453.486247pt;}
.y1b_c00096{bottom:453.600200pt;}
.y15_c00096{bottom:550.712000pt;}
.y16_c00096{bottom:552.181233pt;}
.y17_c00096{bottom:552.602660pt;}
.y18_c00096{bottom:553.846207pt;}
.y19_c00096{bottom:554.315380pt;}
.y1a_c00096{bottom:554.675833pt;}
.y14_c00096{bottom:614.073360pt;}
.y13_c00096{bottom:615.461547pt;}
.y12_c00096{bottom:616.008667pt;}
.y11_c00096{bottom:616.686827pt;}
.y10_c00096{bottom:617.880267pt;}
.yf_c00096{bottom:618.730000pt;}
.ye_c00096{bottom:619.101493pt;}
.yd_c00096{bottom:619.574587pt;}
.yc_c00096{bottom:620.613733pt;}
.yb_c00096{bottom:621.909920pt;}
.ya_c00096{bottom:626.962027pt;}
.y9_c00096{bottom:627.609893pt;}
.y8_c00096{bottom:628.492907pt;}
.y7_c00096{bottom:630.234960pt;}
.y6_c00096{bottom:630.374133pt;}
.y5_c00096{bottom:632.005813pt;}
.y4_c00096{bottom:632.759253pt;}
.y3_c00096{bottom:633.025893pt;}
.y2_c00096{bottom:635.197173pt;}
.y1_c00096{bottom:635.758667pt;}
.h2_c00096{height:21.337600pt;}
.h3_c00096{height:42.675199pt;}
.h7_c00096{height:53.333333pt;}
.he_c00096{height:53.334293pt;}
.hc_c00096{height:64.003200pt;}
.h8_c00096{height:69.336141pt;}
.h6_c00096{height:69.344564pt;}
.h4_c00096{height:74.667600pt;}
.hd_c00096{height:74.668011pt;}
.ha_c00096{height:74.670400pt;}
.h5_c00096{height:80.001000pt;}
.h9_c00096{height:85.337600pt;}
.hb_c00096{height:106.672000pt;}
.hf_c00096{height:117.379319pt;}
.h0_c00096{height:632.640000pt;}
.h1_c00096{height:632.666667pt;}
.w1_c00096{width:840.666667pt;}
.w0_c00096{width:840.933333pt;}
.x0_c00096{left:0.000000pt;}
.x15_c00096{left:17.985333pt;}
.x1a_c00096{left:32.644580pt;}
.x39_c00096{left:39.455387pt;}
.x4f_c00096{left:40.797912pt;}
.x2d_c00096{left:43.764000pt;}
.x1b_c00096{left:51.721627pt;}
.x24_c00096{left:100.560000pt;}
.x48_c00096{left:105.712000pt;}
.x2e_c00096{left:140.813333pt;}
.x3e_c00096{left:152.452920pt;}
.x49_c00096{left:157.790667pt;}
.x3a_c00096{left:172.668733pt;}
.x50_c00096{left:174.720069pt;}
.x25_c00096{left:189.360000pt;}
.x26_c00096{left:191.028000pt;}
.x3b_c00096{left:218.227267pt;}
.x3f_c00096{left:254.912107pt;}
.x2f_c00096{left:257.046667pt;}
.x3c_c00096{left:271.766173pt;}
.x35_c00096{left:298.573360pt;}
.x16_c00096{left:311.832000pt;}
.x27_c00096{left:315.969333pt;}
.x1c_c00096{left:344.035040pt;}
.x36_c00096{left:353.296160pt;}
.x4a_c00096{left:354.924000pt;}
.x1_c00096{left:363.422667pt;}
.x28_c00096{left:374.745333pt;}
.xb_c00096{left:379.589600pt;}
.x2_c00096{left:391.497333pt;}
.x17_c00096{left:396.117333pt;}
.x40_c00096{left:401.788627pt;}
.x51_c00096{left:409.684525pt;}
.x3d_c00096{left:432.512213pt;}
.x4b_c00096{left:434.132000pt;}
.x1d_c00096{left:447.090040pt;}
.xc_c00096{left:451.601813pt;}
.x30_c00096{left:456.548000pt;}
.x1e_c00096{left:474.980907pt;}
.x52_c00096{left:489.366064pt;}
.x3_c00096{left:500.061333pt;}
.x41_c00096{left:502.137267pt;}
.x29_c00096{left:506.570667pt;}
.xd_c00096{left:509.361467pt;}
.x4_c00096{left:513.393333pt;}
.x4c_c00096{left:523.124000pt;}
.x37_c00096{left:531.144613pt;}
.xe_c00096{left:535.617173pt;}
.x32_c00096{left:548.708000pt;}
.x5_c00096{left:551.065333pt;}
.x31_c00096{left:552.662667pt;}
.xf_c00096{left:556.259333pt;}
.x22_c00096{left:588.974667pt;}
.x42_c00096{left:602.311253pt;}
.x10_c00096{left:603.481227pt;}
.x2a_c00096{left:608.338667pt;}
.x4d_c00096{left:624.642667pt;}
.x6_c00096{left:632.649333pt;}
.x7_c00096{left:639.608000pt;}
.x18_c00096{left:644.826667pt;}
.x2b_c00096{left:650.832000pt;}
.x23_c00096{left:653.506667pt;}
.x43_c00096{left:660.314440pt;}
.x11_c00096{left:669.755867pt;}
.x1f_c00096{left:673.581160pt;}
.x12_c00096{left:707.465387pt;}
.x33_c00096{left:716.498667pt;}
.x8_c00096{left:726.710667pt;}
.x44_c00096{left:735.108627pt;}
.x13_c00096{left:737.889280pt;}
.x2c_c00096{left:746.014667pt;}
.x45_c00096{left:755.122093pt;}
.x4e_c00096{left:763.669333pt;}
.x9_c00096{left:770.861333pt;}
.x20_c00096{left:775.578773pt;}
.x46_c00096{left:793.458467pt;}
.xa_c00096{left:803.254667pt;}
.x19_c00096{left:810.752000pt;}
.x47_c00096{left:813.991907pt;}
.x14_c00096{left:815.035040pt;}
.x53_c00096{left:824.171453pt;}
.x38_c00096{left:825.639387pt;}
.x21_c00096{left:827.142940pt;}
.x34_c00096{left:829.446667pt;}
}





/* 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_c00097 {
    display:none;
  }
  .loading-indicator_c00097.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00097 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_c00097 { 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_c00097" -> "#page-container .classname_c00097")
 */
.pf_c00097 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00097 { /* 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_c00097.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00097 { /* 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_c00097 { /* 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_c00097 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00097 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00097 {overflow:visible;}
  }
}
.c_c00097 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00097 { /* 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_c00097:after { /* webkit #35443 */
  content: '';
}
.t_c00097:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00097 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 */
}
.__c00097 { /* 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_c00097 { /* info for Javascript */
  display:none;
}
.l_c00097 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00097 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00097 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00097: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_c00097 {
    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_c00097.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00097.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_c00097 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00097{font-family:sans-serif;visibility:hidden;}
.sc__c00097{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00097{-webkit-text-stroke:0px transparent;}
}
.y0_c00097{bottom:0.000000px;}
.h0_c00097{height:711.720000px;}
.h1_c00097{height:711.750000px;}
.w1_c00097{width:945.750000px;}
.w0_c00097{width:946.050000px;}
.x0_c00097{left:0.000000px;}
@media print{
.y0_c00097{bottom:0.000000pt;}
.h0_c00097{height:632.640000pt;}
.h1_c00097{height:632.666667pt;}
.w1_c00097{width:840.666667pt;}
.w0_c00097{width:840.933333pt;}
.x0_c00097{left:0.000000pt;}
}





/* 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_c00098 {
    display:none;
  }
  .loading-indicator_c00098.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00098 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_c00098 { 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_c00098" -> "#page-container .classname_c00098")
 */
.pf_c00098 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00098 { /* 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_c00098.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00098 { /* 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_c00098 { /* 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_c00098 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00098 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00098 {overflow:visible;}
  }
}
.c_c00098 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00098 { /* 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_c00098:after { /* webkit #35443 */
  content: '';
}
.t_c00098:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00098 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 */
}
.__c00098 { /* 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_c00098 { /* info for Javascript */
  display:none;
}
.l_c00098 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00098 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00098 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00098: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_c00098 {
    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_c00098.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00098.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_c00098 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00098{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00098;src:url('chunks/assets/font_7c6b9abe6ee2a268480c528b.woff2')format("woff");}.ff1_c00098{font-family:ff1_c00098;line-height:1.000000;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;}
.mcf_c00098{transform:matrix(0.010604,0.000159,-0.003750,0.249972,0,0);-ms-transform:matrix(0.010604,0.000159,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.010604,0.000159,-0.003750,0.249972,0,0);}
.m106_c00098{transform:matrix(0.010944,0.000164,-0.003750,0.249972,0,0);-ms-transform:matrix(0.010944,0.000164,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.010944,0.000164,-0.003750,0.249972,0,0);}
.m1a_c00098{transform:matrix(0.011569,0.000174,-0.003750,0.249972,0,0);-ms-transform:matrix(0.011569,0.000174,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.011569,0.000174,-0.003750,0.249972,0,0);}
.m6b_c00098{transform:matrix(0.013518,0.000203,-0.003750,0.249972,0,0);-ms-transform:matrix(0.013518,0.000203,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.013518,0.000203,-0.003750,0.249972,0,0);}
.m105_c00098{transform:matrix(0.017308,0.000260,-0.003750,0.249972,0,0);-ms-transform:matrix(0.017308,0.000260,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.017308,0.000260,-0.003750,0.249972,0,0);}
.m18b_c00098{transform:matrix(0.017783,0.000516,-0.007247,0.249895,0,0);-ms-transform:matrix(0.017783,0.000516,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.017783,0.000516,-0.007247,0.249895,0,0);}
.m48_c00098{transform:matrix(0.018293,0.000274,-0.003750,0.249972,0,0);-ms-transform:matrix(0.018293,0.000274,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.018293,0.000274,-0.003750,0.249972,0,0);}
.mf6_c00098{transform:matrix(0.027037,0.000406,-0.003750,0.249972,0,0);-ms-transform:matrix(0.027037,0.000406,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.027037,0.000406,-0.003750,0.249972,0,0);}
.m4f_c00098{transform:matrix(0.049254,0.000739,-0.003750,0.249972,0,0);-ms-transform:matrix(0.049254,0.000739,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.049254,0.000739,-0.003750,0.249972,0,0);}
.m50_c00098{transform:matrix(0.052949,0.000794,-0.003750,0.249972,0,0);-ms-transform:matrix(0.052949,0.000794,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.052949,0.000794,-0.003750,0.249972,0,0);}
.md0_c00098{transform:matrix(0.053029,0.000795,-0.003750,0.249972,0,0);-ms-transform:matrix(0.053029,0.000795,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.053029,0.000795,-0.003750,0.249972,0,0);}
.m4e_c00098{transform:matrix(0.088490,0.001327,-0.003750,0.249972,0,0);-ms-transform:matrix(0.088490,0.001327,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.088490,0.001327,-0.003750,0.249972,0,0);}
.m1f7_c00098{transform:matrix(0.090977,0.002274,-0.006248,0.249922,0,0);-ms-transform:matrix(0.090977,0.002274,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.090977,0.002274,-0.006248,0.249922,0,0);}
.m181_c00098{transform:matrix(0.100583,0.002917,-0.007247,0.249895,0,0);-ms-transform:matrix(0.100583,0.002917,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.100583,0.002917,-0.007247,0.249895,0,0);}
.m75_c00098{transform:matrix(0.101274,0.001519,-0.003750,0.249972,0,0);-ms-transform:matrix(0.101274,0.001519,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.101274,0.001519,-0.003750,0.249972,0,0);}
.m11_c00098{transform:matrix(0.101709,0.001526,-0.003750,0.249972,0,0);-ms-transform:matrix(0.101709,0.001526,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.101709,0.001526,-0.003750,0.249972,0,0);}
.m47_c00098{transform:matrix(0.117742,0.001766,-0.003750,0.249972,0,0);-ms-transform:matrix(0.117742,0.001766,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.117742,0.001766,-0.003750,0.249972,0,0);}
.mb0_c00098{transform:matrix(0.138244,0.002074,-0.003750,0.249972,0,0);-ms-transform:matrix(0.138244,0.002074,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.138244,0.002074,-0.003750,0.249972,0,0);}
.md5_c00098{transform:matrix(0.141439,0.002122,-0.003750,0.249972,0,0);-ms-transform:matrix(0.141439,0.002122,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.141439,0.002122,-0.003750,0.249972,0,0);}
.m88_c00098{transform:matrix(0.152158,0.002282,-0.003750,0.249972,0,0);-ms-transform:matrix(0.152158,0.002282,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.152158,0.002282,-0.003750,0.249972,0,0);}
.m89_c00098{transform:matrix(0.153683,0.002305,-0.003750,0.249972,0,0);-ms-transform:matrix(0.153683,0.002305,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.153683,0.002305,-0.003750,0.249972,0,0);}
.mf8_c00098{transform:matrix(0.153788,0.002307,-0.003750,0.249972,0,0);-ms-transform:matrix(0.153788,0.002307,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.153788,0.002307,-0.003750,0.249972,0,0);}
.m1f_c00098{transform:matrix(0.153853,0.002308,-0.003750,0.249972,0,0);-ms-transform:matrix(0.153853,0.002308,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.153853,0.002308,-0.003750,0.249972,0,0);}
.mdf_c00098{transform:matrix(0.153868,0.002308,-0.003750,0.249972,0,0);-ms-transform:matrix(0.153868,0.002308,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.153868,0.002308,-0.003750,0.249972,0,0);}
.mff_c00098{transform:matrix(0.156822,0.002352,-0.003750,0.249972,0,0);-ms-transform:matrix(0.156822,0.002352,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.156822,0.002352,-0.003750,0.249972,0,0);}
.m1a7_c00098{transform:matrix(0.157518,0.004411,-0.006997,0.249902,0,0);-ms-transform:matrix(0.157518,0.004411,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.157518,0.004411,-0.006997,0.249902,0,0);}
.m18a_c00098{transform:matrix(0.158543,0.004598,-0.007247,0.249895,0,0);-ms-transform:matrix(0.158543,0.004598,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.158543,0.004598,-0.007247,0.249895,0,0);}
.m40_c00098{transform:matrix(0.159122,0.002387,-0.003750,0.249972,0,0);-ms-transform:matrix(0.159122,0.002387,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.159122,0.002387,-0.003750,0.249972,0,0);}
.mc7_c00098{transform:matrix(0.160782,0.002412,-0.003750,0.249972,0,0);-ms-transform:matrix(0.160782,0.002412,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.160782,0.002412,-0.003750,0.249972,0,0);}
.mf3_c00098{transform:matrix(0.160852,0.002413,-0.003750,0.249972,0,0);-ms-transform:matrix(0.160852,0.002413,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.160852,0.002413,-0.003750,0.249972,0,0);}
.m8f_c00098{transform:matrix(0.162642,0.002440,-0.003750,0.249972,0,0);-ms-transform:matrix(0.162642,0.002440,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.162642,0.002440,-0.003750,0.249972,0,0);}
.mee_c00098{transform:matrix(0.163022,0.002445,-0.003750,0.249972,0,0);-ms-transform:matrix(0.163022,0.002445,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.163022,0.002445,-0.003750,0.249972,0,0);}
.m26_c00098{transform:matrix(0.163912,0.002459,-0.003750,0.249972,0,0);-ms-transform:matrix(0.163912,0.002459,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.163912,0.002459,-0.003750,0.249972,0,0);}
.m3c_c00098{transform:matrix(0.163977,0.002460,-0.003750,0.249972,0,0);-ms-transform:matrix(0.163977,0.002460,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.163977,0.002460,-0.003750,0.249972,0,0);}
.m1a6_c00098{transform:matrix(0.164995,0.004620,-0.006997,0.249902,0,0);-ms-transform:matrix(0.164995,0.004620,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.164995,0.004620,-0.006997,0.249902,0,0);}
.m13b_c00098{transform:matrix(0.165024,0.003465,-0.005249,0.249945,0,0);-ms-transform:matrix(0.165024,0.003465,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.165024,0.003465,-0.005249,0.249945,0,0);}
.mf9_c00098{transform:matrix(0.168626,0.002529,-0.003750,0.249972,0,0);-ms-transform:matrix(0.168626,0.002529,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.168626,0.002529,-0.003750,0.249972,0,0);}
.mb1_c00098{transform:matrix(0.168656,0.002530,-0.003750,0.249972,0,0);-ms-transform:matrix(0.168656,0.002530,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.168656,0.002530,-0.003750,0.249972,0,0);}
.m1aa_c00098{transform:matrix(0.169703,0.004752,-0.006997,0.249902,0,0);-ms-transform:matrix(0.169703,0.004752,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.169703,0.004752,-0.006997,0.249902,0,0);}
.m81_c00098{transform:matrix(0.169731,0.002546,-0.003750,0.249972,0,0);-ms-transform:matrix(0.169731,0.002546,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.169731,0.002546,-0.003750,0.249972,0,0);}
.m13d_c00098{transform:matrix(0.169733,0.003564,-0.005249,0.249945,0,0);-ms-transform:matrix(0.169733,0.003564,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.169733,0.003564,-0.005249,0.249945,0,0);}
.m36_c00098{transform:matrix(0.170001,0.002550,-0.003750,0.249972,0,0);-ms-transform:matrix(0.170001,0.002550,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.170001,0.002550,-0.003750,0.249972,0,0);}
.mb4_c00098{transform:matrix(0.170821,0.002562,-0.003750,0.249972,0,0);-ms-transform:matrix(0.170821,0.002562,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.170821,0.002562,-0.003750,0.249972,0,0);}
.m42_c00098{transform:matrix(0.171171,0.002568,-0.003750,0.249972,0,0);-ms-transform:matrix(0.171171,0.002568,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.171171,0.002568,-0.003750,0.249972,0,0);}
.m9f_c00098{transform:matrix(0.171931,0.002579,-0.003750,0.249972,0,0);-ms-transform:matrix(0.171931,0.002579,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.171931,0.002579,-0.003750,0.249972,0,0);}
.me0_c00098{transform:matrix(0.172191,0.002583,-0.003750,0.249972,0,0);-ms-transform:matrix(0.172191,0.002583,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.172191,0.002583,-0.003750,0.249972,0,0);}
.m163_c00098{transform:matrix(0.172427,0.003621,-0.005249,0.249945,0,0);-ms-transform:matrix(0.172427,0.003621,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.172427,0.003621,-0.005249,0.249945,0,0);}
.md8_c00098{transform:matrix(0.173585,0.002604,-0.003750,0.249972,0,0);-ms-transform:matrix(0.173585,0.002604,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.173585,0.002604,-0.003750,0.249972,0,0);}
.mb5_c00098{transform:matrix(0.173640,0.002605,-0.003750,0.249972,0,0);-ms-transform:matrix(0.173640,0.002605,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.173640,0.002605,-0.003750,0.249972,0,0);}
.m2d_c00098{transform:matrix(0.174795,0.002622,-0.003750,0.249972,0,0);-ms-transform:matrix(0.174795,0.002622,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.174795,0.002622,-0.003750,0.249972,0,0);}
.m137_c00098{transform:matrix(0.175051,0.003676,-0.005249,0.249945,0,0);-ms-transform:matrix(0.175051,0.003676,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.175051,0.003676,-0.005249,0.249945,0,0);}
.mca_c00098{transform:matrix(0.175250,0.002629,-0.003750,0.249972,0,0);-ms-transform:matrix(0.175250,0.002629,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.175250,0.002629,-0.003750,0.249972,0,0);}
.m5_c00098{transform:matrix(0.175550,0.002633,-0.003750,0.249972,0,0);-ms-transform:matrix(0.175550,0.002633,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.175550,0.002633,-0.003750,0.249972,0,0);}
.mef_c00098{transform:matrix(0.175640,0.002635,-0.003750,0.249972,0,0);-ms-transform:matrix(0.175640,0.002635,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.175640,0.002635,-0.003750,0.249972,0,0);}
.md7_c00098{transform:matrix(0.175880,0.002638,-0.003750,0.249972,0,0);-ms-transform:matrix(0.175880,0.002638,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.175880,0.002638,-0.003750,0.249972,0,0);}
.m3d_c00098{transform:matrix(0.176490,0.002647,-0.003750,0.249972,0,0);-ms-transform:matrix(0.176490,0.002647,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.176490,0.002647,-0.003750,0.249972,0,0);}
.m1a5_c00098{transform:matrix(0.177350,0.004966,-0.006997,0.249902,0,0);-ms-transform:matrix(0.177350,0.004966,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.177350,0.004966,-0.006997,0.249902,0,0);}
.m1a8_c00098{transform:matrix(0.177475,0.004969,-0.006997,0.249902,0,0);-ms-transform:matrix(0.177475,0.004969,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.177475,0.004969,-0.006997,0.249902,0,0);}
.m140_c00098{transform:matrix(0.177951,0.003737,-0.005249,0.249945,0,0);-ms-transform:matrix(0.177951,0.003737,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.177951,0.003737,-0.005249,0.249945,0,0);}
.m1b4_c00098{transform:matrix(0.178235,0.004991,-0.006997,0.249902,0,0);-ms-transform:matrix(0.178235,0.004991,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.178235,0.004991,-0.006997,0.249902,0,0);}
.m168_c00098{transform:matrix(0.178556,0.003750,-0.005249,0.249945,0,0);-ms-transform:matrix(0.178556,0.003750,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.178556,0.003750,-0.005249,0.249945,0,0);}
.m82_c00098{transform:matrix(0.178590,0.002679,-0.003750,0.249972,0,0);-ms-transform:matrix(0.178590,0.002679,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.178590,0.002679,-0.003750,0.249972,0,0);}
.m142_c00098{transform:matrix(0.178666,0.003752,-0.005249,0.249945,0,0);-ms-transform:matrix(0.178666,0.003752,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.178666,0.003752,-0.005249,0.249945,0,0);}
.m3_c00098{transform:matrix(0.179080,0.002686,-0.003750,0.249972,0,0);-ms-transform:matrix(0.179080,0.002686,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.179080,0.002686,-0.003750,0.249972,0,0);}
.m91_c00098{transform:matrix(0.179990,0.002700,-0.003750,0.249972,0,0);-ms-transform:matrix(0.179990,0.002700,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.179990,0.002700,-0.003750,0.249972,0,0);}
.m173_c00098{transform:matrix(0.180314,0.005229,-0.007247,0.249895,0,0);-ms-transform:matrix(0.180314,0.005229,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.180314,0.005229,-0.007247,0.249895,0,0);}
.m3e_c00098{transform:matrix(0.180500,0.002707,-0.003750,0.249972,0,0);-ms-transform:matrix(0.180500,0.002707,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.180500,0.002707,-0.003750,0.249972,0,0);}
.mde_c00098{transform:matrix(0.180955,0.002714,-0.003750,0.249972,0,0);-ms-transform:matrix(0.180955,0.002714,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.180955,0.002714,-0.003750,0.249972,0,0);}
.meb_c00098{transform:matrix(0.181120,0.002717,-0.003750,0.249972,0,0);-ms-transform:matrix(0.181120,0.002717,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.181120,0.002717,-0.003750,0.249972,0,0);}
.m180_c00098{transform:matrix(0.182078,0.005280,-0.007247,0.249895,0,0);-ms-transform:matrix(0.182078,0.005280,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.182078,0.005280,-0.007247,0.249895,0,0);}
.mc8_c00098{transform:matrix(0.182369,0.002736,-0.003750,0.249972,0,0);-ms-transform:matrix(0.182369,0.002736,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.182369,0.002736,-0.003750,0.249972,0,0);}
.mc5_c00098{transform:matrix(0.182494,0.002737,-0.003750,0.249972,0,0);-ms-transform:matrix(0.182494,0.002737,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.182494,0.002737,-0.003750,0.249972,0,0);}
.m12b_c00098{transform:matrix(0.182945,0.003842,-0.005249,0.249945,0,0);-ms-transform:matrix(0.182945,0.003842,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.182945,0.003842,-0.005249,0.249945,0,0);}
.m1db_c00098{transform:matrix(0.183087,0.004211,-0.005748,0.249934,0,0);-ms-transform:matrix(0.183087,0.004211,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.183087,0.004211,-0.005748,0.249934,0,0);}
.m21_c00098{transform:matrix(0.183159,0.002747,-0.003750,0.249972,0,0);-ms-transform:matrix(0.183159,0.002747,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.183159,0.002747,-0.003750,0.249972,0,0);}
.m19e_c00098{transform:matrix(0.183218,0.005130,-0.006997,0.249902,0,0);-ms-transform:matrix(0.183218,0.005130,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.183218,0.005130,-0.006997,0.249902,0,0);}
.m83_c00098{transform:matrix(0.183514,0.002753,-0.003750,0.249972,0,0);-ms-transform:matrix(0.183514,0.002753,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.183514,0.002753,-0.003750,0.249972,0,0);}
.m18c_c00098{transform:matrix(0.183578,0.005324,-0.007247,0.249895,0,0);-ms-transform:matrix(0.183578,0.005324,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.183578,0.005324,-0.007247,0.249895,0,0);}
.m11c_c00098{transform:matrix(0.183634,0.002755,-0.003750,0.249972,0,0);-ms-transform:matrix(0.183634,0.002755,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.183634,0.002755,-0.003750,0.249972,0,0);}
.m92_c00098{transform:matrix(0.183954,0.002759,-0.003750,0.249972,0,0);-ms-transform:matrix(0.183954,0.002759,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.183954,0.002759,-0.003750,0.249972,0,0);}
.ma1_c00098{transform:matrix(0.184524,0.002768,-0.003750,0.249972,0,0);-ms-transform:matrix(0.184524,0.002768,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.184524,0.002768,-0.003750,0.249972,0,0);}
.m28_c00098{transform:matrix(0.184944,0.002774,-0.003750,0.249972,0,0);-ms-transform:matrix(0.184944,0.002774,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.184944,0.002774,-0.003750,0.249972,0,0);}
.md3_c00098{transform:matrix(0.185129,0.002777,-0.003750,0.249972,0,0);-ms-transform:matrix(0.185129,0.002777,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.185129,0.002777,-0.003750,0.249972,0,0);}
.m1c7_c00098{transform:matrix(0.185471,0.004266,-0.005748,0.249934,0,0);-ms-transform:matrix(0.185471,0.004266,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.185471,0.004266,-0.005748,0.249934,0,0);}
.m16b_c00098{transform:matrix(0.185612,0.005383,-0.007247,0.249895,0,0);-ms-transform:matrix(0.185612,0.005383,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.185612,0.005383,-0.007247,0.249895,0,0);}
.m19c_c00098{transform:matrix(0.185617,0.005197,-0.006997,0.249902,0,0);-ms-transform:matrix(0.185617,0.005197,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.185617,0.005197,-0.006997,0.249902,0,0);}
.m1b3_c00098{transform:matrix(0.185687,0.005199,-0.006997,0.249902,0,0);-ms-transform:matrix(0.185687,0.005199,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.185687,0.005199,-0.006997,0.249902,0,0);}
.med_c00098{transform:matrix(0.185944,0.002789,-0.003750,0.249972,0,0);-ms-transform:matrix(0.185944,0.002789,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.185944,0.002789,-0.003750,0.249972,0,0);}
.mea_c00098{transform:matrix(0.186269,0.002794,-0.003750,0.249972,0,0);-ms-transform:matrix(0.186269,0.002794,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.186269,0.002794,-0.003750,0.249972,0,0);}
.me2_c00098{transform:matrix(0.186279,0.002794,-0.003750,0.249972,0,0);-ms-transform:matrix(0.186279,0.002794,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.186279,0.002794,-0.003750,0.249972,0,0);}
.m18f_c00098{transform:matrix(0.186442,0.005407,-0.007247,0.249895,0,0);-ms-transform:matrix(0.186442,0.005407,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.186442,0.005407,-0.007247,0.249895,0,0);}
.m1c4_c00098{transform:matrix(0.186471,0.004289,-0.005748,0.249934,0,0);-ms-transform:matrix(0.186471,0.004289,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.186471,0.004289,-0.005748,0.249934,0,0);}
.m9a_c00098{transform:matrix(0.186559,0.002798,-0.003750,0.249972,0,0);-ms-transform:matrix(0.186559,0.002798,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.186559,0.002798,-0.003750,0.249972,0,0);}
.m167_c00098{transform:matrix(0.186724,0.003921,-0.005249,0.249945,0,0);-ms-transform:matrix(0.186724,0.003921,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.186724,0.003921,-0.005249,0.249945,0,0);}
.md4_c00098{transform:matrix(0.186999,0.002805,-0.003750,0.249972,0,0);-ms-transform:matrix(0.186999,0.002805,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.186999,0.002805,-0.003750,0.249972,0,0);}
.me7_c00098{transform:matrix(0.187089,0.002806,-0.003750,0.249972,0,0);-ms-transform:matrix(0.187089,0.002806,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.187089,0.002806,-0.003750,0.249972,0,0);}
.mdd_c00098{transform:matrix(0.187359,0.002810,-0.003750,0.249972,0,0);-ms-transform:matrix(0.187359,0.002810,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.187359,0.002810,-0.003750,0.249972,0,0);}
.m9e_c00098{transform:matrix(0.187714,0.002816,-0.003750,0.249972,0,0);-ms-transform:matrix(0.187714,0.002816,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.187714,0.002816,-0.003750,0.249972,0,0);}
.ma3_c00098{transform:matrix(0.187859,0.002818,-0.003750,0.249972,0,0);-ms-transform:matrix(0.187859,0.002818,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.187859,0.002818,-0.003750,0.249972,0,0);}
.m90_c00098{transform:matrix(0.188074,0.002821,-0.003750,0.249972,0,0);-ms-transform:matrix(0.188074,0.002821,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.188074,0.002821,-0.003750,0.249972,0,0);}
.mc6_c00098{transform:matrix(0.188194,0.002823,-0.003750,0.249972,0,0);-ms-transform:matrix(0.188194,0.002823,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.188194,0.002823,-0.003750,0.249972,0,0);}
.m170_c00098{transform:matrix(0.188356,0.005462,-0.007247,0.249895,0,0);-ms-transform:matrix(0.188356,0.005462,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.188356,0.005462,-0.007247,0.249895,0,0);}
.m1b9_c00098{transform:matrix(0.188385,0.004333,-0.005748,0.249934,0,0);-ms-transform:matrix(0.188385,0.004333,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.188385,0.004333,-0.005748,0.249934,0,0);}
.m12e_c00098{transform:matrix(0.188393,0.003956,-0.005249,0.249945,0,0);-ms-transform:matrix(0.188393,0.003956,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.188393,0.003956,-0.005249,0.249945,0,0);}
.mce_c00098{transform:matrix(0.188394,0.002826,-0.003750,0.249972,0,0);-ms-transform:matrix(0.188394,0.002826,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.188394,0.002826,-0.003750,0.249972,0,0);}
.mae_c00098{transform:matrix(0.188429,0.002826,-0.003750,0.249972,0,0);-ms-transform:matrix(0.188429,0.002826,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.188429,0.002826,-0.003750,0.249972,0,0);}
.m3f_c00098{transform:matrix(0.188609,0.002829,-0.003750,0.249972,0,0);-ms-transform:matrix(0.188609,0.002829,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.188609,0.002829,-0.003750,0.249972,0,0);}
.m193_c00098{transform:matrix(0.188991,0.005481,-0.007247,0.249895,0,0);-ms-transform:matrix(0.188991,0.005481,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.188991,0.005481,-0.007247,0.249895,0,0);}
.mc9_c00098{transform:matrix(0.189159,0.002837,-0.003750,0.249972,0,0);-ms-transform:matrix(0.189159,0.002837,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.189159,0.002837,-0.003750,0.249972,0,0);}
.md6_c00098{transform:matrix(0.189579,0.002844,-0.003750,0.249972,0,0);-ms-transform:matrix(0.189579,0.002844,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.189579,0.002844,-0.003750,0.249972,0,0);}
.me9_c00098{transform:matrix(0.189624,0.002844,-0.003750,0.249972,0,0);-ms-transform:matrix(0.189624,0.002844,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.189624,0.002844,-0.003750,0.249972,0,0);}
.m1ea_c00098{transform:matrix(0.189725,0.004364,-0.005748,0.249934,0,0);-ms-transform:matrix(0.189725,0.004364,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.189725,0.004364,-0.005748,0.249934,0,0);}
.mac_c00098{transform:matrix(0.190329,0.002855,-0.003750,0.249972,0,0);-ms-transform:matrix(0.190329,0.002855,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.190329,0.002855,-0.003750,0.249972,0,0);}
.m16d_c00098{transform:matrix(0.190910,0.005536,-0.007247,0.249895,0,0);-ms-transform:matrix(0.190910,0.005536,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.190910,0.005536,-0.007247,0.249895,0,0);}
.m179_c00098{transform:matrix(0.191135,0.005543,-0.007247,0.249895,0,0);-ms-transform:matrix(0.191135,0.005543,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.191135,0.005543,-0.007247,0.249895,0,0);}
.m116_c00098{transform:matrix(0.191193,0.002868,-0.003750,0.249972,0,0);-ms-transform:matrix(0.191193,0.002868,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.191193,0.002868,-0.003750,0.249972,0,0);}
.m22_c00098{transform:matrix(0.191473,0.002872,-0.003750,0.249972,0,0);-ms-transform:matrix(0.191473,0.002872,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.191473,0.002872,-0.003750,0.249972,0,0);}
.m16f_c00098{transform:matrix(0.192509,0.005583,-0.007247,0.249895,0,0);-ms-transform:matrix(0.192509,0.005583,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.192509,0.005583,-0.007247,0.249895,0,0);}
.mf1_c00098{transform:matrix(0.192598,0.002889,-0.003750,0.249972,0,0);-ms-transform:matrix(0.192598,0.002889,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.192598,0.002889,-0.003750,0.249972,0,0);}
.m133_c00098{transform:matrix(0.193692,0.004068,-0.005249,0.249945,0,0);-ms-transform:matrix(0.193692,0.004068,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.193692,0.004068,-0.005249,0.249945,0,0);}
.m191_c00098{transform:matrix(0.193943,0.005624,-0.007247,0.249895,0,0);-ms-transform:matrix(0.193943,0.005624,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.193943,0.005624,-0.007247,0.249895,0,0);}
.m154_c00098{transform:matrix(0.193982,0.004074,-0.005249,0.249945,0,0);-ms-transform:matrix(0.193982,0.004074,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.193982,0.004074,-0.005249,0.249945,0,0);}
.m117_c00098{transform:matrix(0.194083,0.002911,-0.003750,0.249972,0,0);-ms-transform:matrix(0.194083,0.002911,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.194083,0.002911,-0.003750,0.249972,0,0);}
.m73_c00098{transform:matrix(0.194203,0.002913,-0.003750,0.249972,0,0);-ms-transform:matrix(0.194203,0.002913,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.194203,0.002913,-0.003750,0.249972,0,0);}
.m35_c00098{transform:matrix(0.194438,0.002917,-0.003750,0.249972,0,0);-ms-transform:matrix(0.194438,0.002917,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.194438,0.002917,-0.003750,0.249972,0,0);}
.m8_c00098{transform:matrix(0.194583,0.002919,-0.003750,0.249972,0,0);-ms-transform:matrix(0.194583,0.002919,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.194583,0.002919,-0.003750,0.249972,0,0);}
.mfa_c00098{transform:matrix(0.194733,0.002921,-0.003750,0.249972,0,0);-ms-transform:matrix(0.194733,0.002921,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.194733,0.002921,-0.003750,0.249972,0,0);}
.m41_c00098{transform:matrix(0.195238,0.002929,-0.003750,0.249972,0,0);-ms-transform:matrix(0.195238,0.002929,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.195238,0.002929,-0.003750,0.249972,0,0);}
.m100_c00098{transform:matrix(0.195658,0.002935,-0.003750,0.249972,0,0);-ms-transform:matrix(0.195658,0.002935,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.195658,0.002935,-0.003750,0.249972,0,0);}
.m16e_c00098{transform:matrix(0.196173,0.005689,-0.007247,0.249895,0,0);-ms-transform:matrix(0.196173,0.005689,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.196173,0.005689,-0.007247,0.249895,0,0);}
.m1a3_c00098{transform:matrix(0.196218,0.005494,-0.006997,0.249902,0,0);-ms-transform:matrix(0.196218,0.005494,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.196218,0.005494,-0.006997,0.249902,0,0);}
.m17d_c00098{transform:matrix(0.196327,0.005693,-0.007247,0.249895,0,0);-ms-transform:matrix(0.196327,0.005693,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.196327,0.005693,-0.007247,0.249895,0,0);}
.m17c_c00098{transform:matrix(0.196712,0.005705,-0.007247,0.249895,0,0);-ms-transform:matrix(0.196712,0.005705,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.196712,0.005705,-0.007247,0.249895,0,0);}
.m1c0_c00098{transform:matrix(0.196743,0.004525,-0.005748,0.249934,0,0);-ms-transform:matrix(0.196743,0.004525,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.196743,0.004525,-0.005748,0.249934,0,0);}
.m15f_c00098{transform:matrix(0.196752,0.004132,-0.005249,0.249945,0,0);-ms-transform:matrix(0.196752,0.004132,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.196752,0.004132,-0.005249,0.249945,0,0);}
.m13a_c00098{transform:matrix(0.196932,0.004136,-0.005249,0.249945,0,0);-ms-transform:matrix(0.196932,0.004136,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.196932,0.004136,-0.005249,0.249945,0,0);}
.mf2_c00098{transform:matrix(0.197088,0.002956,-0.003750,0.249972,0,0);-ms-transform:matrix(0.197088,0.002956,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.197088,0.002956,-0.003750,0.249972,0,0);}
.m1b0_c00098{transform:matrix(0.197563,0.005532,-0.006997,0.249902,0,0);-ms-transform:matrix(0.197563,0.005532,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.197563,0.005532,-0.006997,0.249902,0,0);}
.m1c6_c00098{transform:matrix(0.197743,0.004548,-0.005748,0.249934,0,0);-ms-transform:matrix(0.197743,0.004548,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.197743,0.004548,-0.005748,0.249934,0,0);}
.m24_c00098{transform:matrix(0.197858,0.002968,-0.003750,0.249972,0,0);-ms-transform:matrix(0.197858,0.002968,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.197858,0.002968,-0.003750,0.249972,0,0);}
.mec_c00098{transform:matrix(0.198058,0.002971,-0.003750,0.249972,0,0);-ms-transform:matrix(0.198058,0.002971,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.198058,0.002971,-0.003750,0.249972,0,0);}
.m1ee_c00098{transform:matrix(0.198157,0.004359,-0.005499,0.249940,0,0);-ms-transform:matrix(0.198157,0.004359,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.198157,0.004359,-0.005499,0.249940,0,0);}
.m4d_c00098{transform:matrix(0.198683,0.002980,-0.003750,0.249972,0,0);-ms-transform:matrix(0.198683,0.002980,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.198683,0.002980,-0.003750,0.249972,0,0);}
.m4_c00098{transform:matrix(0.198808,0.002982,-0.003750,0.249972,0,0);-ms-transform:matrix(0.198808,0.002982,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.198808,0.002982,-0.003750,0.249972,0,0);}
.m3a_c00098{transform:matrix(0.198958,0.002984,-0.003750,0.249972,0,0);-ms-transform:matrix(0.198958,0.002984,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.198958,0.002984,-0.003750,0.249972,0,0);}
.m149_c00098{transform:matrix(0.198991,0.004179,-0.005249,0.249945,0,0);-ms-transform:matrix(0.198991,0.004179,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.198991,0.004179,-0.005249,0.249945,0,0);}
.m7e_c00098{transform:matrix(0.199668,0.002995,-0.003750,0.249972,0,0);-ms-transform:matrix(0.199668,0.002995,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.199668,0.002995,-0.003750,0.249972,0,0);}
.m6e_c00098{transform:matrix(0.199828,0.002997,-0.003750,0.249972,0,0);-ms-transform:matrix(0.199828,0.002997,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.199828,0.002997,-0.003750,0.249972,0,0);}
.m2a_c00098{transform:matrix(0.200097,0.003001,-0.003750,0.249972,0,0);-ms-transform:matrix(0.200097,0.003001,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.200097,0.003001,-0.003750,0.249972,0,0);}
.m1dc_c00098{transform:matrix(0.200427,0.004610,-0.005748,0.249934,0,0);-ms-transform:matrix(0.200427,0.004610,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.200427,0.004610,-0.005748,0.249934,0,0);}
.m84_c00098{transform:matrix(0.200597,0.003009,-0.003750,0.249972,0,0);-ms-transform:matrix(0.200597,0.003009,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.200597,0.003009,-0.003750,0.249972,0,0);}
.m101_c00098{transform:matrix(0.201017,0.003015,-0.003750,0.249972,0,0);-ms-transform:matrix(0.201017,0.003015,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.201017,0.003015,-0.003750,0.249972,0,0);}
.m13_c00098{transform:matrix(0.201152,0.003017,-0.003750,0.249972,0,0);-ms-transform:matrix(0.201152,0.003017,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.201152,0.003017,-0.003750,0.249972,0,0);}
.m1d_c00098{transform:matrix(0.201207,0.003018,-0.003750,0.249972,0,0);-ms-transform:matrix(0.201207,0.003018,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.201207,0.003018,-0.003750,0.249972,0,0);}
.m29_c00098{transform:matrix(0.201297,0.003019,-0.003750,0.249972,0,0);-ms-transform:matrix(0.201297,0.003019,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.201297,0.003019,-0.003750,0.249972,0,0);}
.m131_c00098{transform:matrix(0.201376,0.004229,-0.005249,0.249945,0,0);-ms-transform:matrix(0.201376,0.004229,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.201376,0.004229,-0.005249,0.249945,0,0);}
.m11d_c00098{transform:matrix(0.201617,0.003024,-0.003750,0.249972,0,0);-ms-transform:matrix(0.201617,0.003024,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.201617,0.003024,-0.003750,0.249972,0,0);}
.ma9_c00098{transform:matrix(0.201962,0.003029,-0.003750,0.249972,0,0);-ms-transform:matrix(0.201962,0.003029,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.201962,0.003029,-0.003750,0.249972,0,0);}
.m67_c00098{transform:matrix(0.202352,0.003035,-0.003750,0.249972,0,0);-ms-transform:matrix(0.202352,0.003035,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.202352,0.003035,-0.003750,0.249972,0,0);}
.m14b_c00098{transform:matrix(0.202475,0.004252,-0.005249,0.249945,0,0);-ms-transform:matrix(0.202475,0.004252,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.202475,0.004252,-0.005249,0.249945,0,0);}
.mab_c00098{transform:matrix(0.202572,0.003039,-0.003750,0.249972,0,0);-ms-transform:matrix(0.202572,0.003039,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.202572,0.003039,-0.003750,0.249972,0,0);}
.m1b2_c00098{transform:matrix(0.202596,0.005673,-0.006997,0.249902,0,0);-ms-transform:matrix(0.202596,0.005673,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.202596,0.005673,-0.006997,0.249902,0,0);}
.m186_c00098{transform:matrix(0.202610,0.005876,-0.007247,0.249895,0,0);-ms-transform:matrix(0.202610,0.005876,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.202610,0.005876,-0.007247,0.249895,0,0);}
.m14e_c00098{transform:matrix(0.202650,0.004256,-0.005249,0.249945,0,0);-ms-transform:matrix(0.202650,0.004256,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.202650,0.004256,-0.005249,0.249945,0,0);}
.m1e6_c00098{transform:matrix(0.202756,0.004663,-0.005748,0.249934,0,0);-ms-transform:matrix(0.202756,0.004663,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.202756,0.004663,-0.005748,0.249934,0,0);}
.m1b8_c00098{transform:matrix(0.202896,0.004667,-0.005748,0.249934,0,0);-ms-transform:matrix(0.202896,0.004667,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.202896,0.004667,-0.005748,0.249934,0,0);}
.m8c_c00098{transform:matrix(0.203522,0.003053,-0.003750,0.249972,0,0);-ms-transform:matrix(0.203522,0.003053,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.203522,0.003053,-0.003750,0.249972,0,0);}
.m10b_c00098{transform:matrix(0.204052,0.003061,-0.003750,0.249972,0,0);-ms-transform:matrix(0.204052,0.003061,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.204052,0.003061,-0.003750,0.249972,0,0);}
.mb3_c00098{transform:matrix(0.204392,0.003066,-0.003750,0.249972,0,0);-ms-transform:matrix(0.204392,0.003066,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.204392,0.003066,-0.003750,0.249972,0,0);}
.m80_c00098{transform:matrix(0.204897,0.003073,-0.003750,0.249972,0,0);-ms-transform:matrix(0.204897,0.003073,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.204897,0.003073,-0.003750,0.249972,0,0);}
.m25_c00098{transform:matrix(0.205102,0.003077,-0.003750,0.249972,0,0);-ms-transform:matrix(0.205102,0.003077,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.205102,0.003077,-0.003750,0.249972,0,0);}
.m121_c00098{transform:matrix(0.205137,0.003077,-0.003750,0.249972,0,0);-ms-transform:matrix(0.205137,0.003077,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.205137,0.003077,-0.003750,0.249972,0,0);}
.m13f_c00098{transform:matrix(0.205325,0.004312,-0.005249,0.249945,0,0);-ms-transform:matrix(0.205325,0.004312,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.205325,0.004312,-0.005249,0.249945,0,0);}
.m150_c00098{transform:matrix(0.205520,0.004316,-0.005249,0.249945,0,0);-ms-transform:matrix(0.205520,0.004316,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.205520,0.004316,-0.005249,0.249945,0,0);}
.m1e_c00098{transform:matrix(0.206217,0.003093,-0.003750,0.249972,0,0);-ms-transform:matrix(0.206217,0.003093,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.206217,0.003093,-0.003750,0.249972,0,0);}
.m153_c00098{transform:matrix(0.206250,0.004331,-0.005249,0.249945,0,0);-ms-transform:matrix(0.206250,0.004331,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.206250,0.004331,-0.005249,0.249945,0,0);}
.mf_c00098{transform:matrix(0.206272,0.003094,-0.003750,0.249972,0,0);-ms-transform:matrix(0.206272,0.003094,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.206272,0.003094,-0.003750,0.249972,0,0);}
.mfb_c00098{transform:matrix(0.206417,0.003096,-0.003750,0.249972,0,0);-ms-transform:matrix(0.206417,0.003096,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.206417,0.003096,-0.003750,0.249972,0,0);}
.m16a_c00098{transform:matrix(0.206438,0.005987,-0.007247,0.249895,0,0);-ms-transform:matrix(0.206438,0.005987,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.206438,0.005987,-0.007247,0.249895,0,0);}
.m1a0_c00098{transform:matrix(0.206444,0.005780,-0.006997,0.249902,0,0);-ms-transform:matrix(0.206444,0.005780,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.206444,0.005780,-0.006997,0.249902,0,0);}
.m3b_c00098{transform:matrix(0.207062,0.003106,-0.003750,0.249972,0,0);-ms-transform:matrix(0.207062,0.003106,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.207062,0.003106,-0.003750,0.249972,0,0);}
.me8_c00098{transform:matrix(0.207077,0.003106,-0.003750,0.249972,0,0);-ms-transform:matrix(0.207077,0.003106,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.207077,0.003106,-0.003750,0.249972,0,0);}
.ma0_c00098{transform:matrix(0.207937,0.003119,-0.003750,0.249972,0,0);-ms-transform:matrix(0.207937,0.003119,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.207937,0.003119,-0.003750,0.249972,0,0);}
.m1c2_c00098{transform:matrix(0.207960,0.004783,-0.005748,0.249934,0,0);-ms-transform:matrix(0.207960,0.004783,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.207960,0.004783,-0.005748,0.249934,0,0);}
.m1a9_c00098{transform:matrix(0.208003,0.005824,-0.006997,0.249902,0,0);-ms-transform:matrix(0.208003,0.005824,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.208003,0.005824,-0.006997,0.249902,0,0);}
.m143_c00098{transform:matrix(0.208079,0.004370,-0.005249,0.249945,0,0);-ms-transform:matrix(0.208079,0.004370,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.208079,0.004370,-0.005249,0.249945,0,0);}
.m65_c00098{transform:matrix(0.208257,0.003124,-0.003750,0.249972,0,0);-ms-transform:matrix(0.208257,0.003124,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.208257,0.003124,-0.003750,0.249972,0,0);}
.m49_c00098{transform:matrix(0.208772,0.003132,-0.003750,0.249972,0,0);-ms-transform:matrix(0.208772,0.003132,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.208772,0.003132,-0.003750,0.249972,0,0);}
.maa_c00098{transform:matrix(0.208817,0.003132,-0.003750,0.249972,0,0);-ms-transform:matrix(0.208817,0.003132,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.208817,0.003132,-0.003750,0.249972,0,0);}
.m174_c00098{transform:matrix(0.208822,0.006056,-0.007247,0.249895,0,0);-ms-transform:matrix(0.208822,0.006056,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.208822,0.006056,-0.007247,0.249895,0,0);}
.m44_c00098{transform:matrix(0.208981,0.003135,-0.003750,0.249972,0,0);-ms-transform:matrix(0.208981,0.003135,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.208981,0.003135,-0.003750,0.249972,0,0);}
.m95_c00098{transform:matrix(0.209211,0.003138,-0.003750,0.249972,0,0);-ms-transform:matrix(0.209211,0.003138,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.209211,0.003138,-0.003750,0.249972,0,0);}
.m9d_c00098{transform:matrix(0.209256,0.003139,-0.003750,0.249972,0,0);-ms-transform:matrix(0.209256,0.003139,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.209256,0.003139,-0.003750,0.249972,0,0);}
.m164_c00098{transform:matrix(0.209299,0.004395,-0.005249,0.249945,0,0);-ms-transform:matrix(0.209299,0.004395,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.209299,0.004395,-0.005249,0.249945,0,0);}
.m1bf_c00098{transform:matrix(0.209575,0.004820,-0.005748,0.249934,0,0);-ms-transform:matrix(0.209575,0.004820,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.209575,0.004820,-0.005748,0.249934,0,0);}
.m17_c00098{transform:matrix(0.209636,0.003145,-0.003750,0.249972,0,0);-ms-transform:matrix(0.209636,0.003145,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.209636,0.003145,-0.003750,0.249972,0,0);}
.m61_c00098{transform:matrix(0.209976,0.003150,-0.003750,0.249972,0,0);-ms-transform:matrix(0.209976,0.003150,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.209976,0.003150,-0.003750,0.249972,0,0);}
.mcb_c00098{transform:matrix(0.210001,0.003150,-0.003750,0.249972,0,0);-ms-transform:matrix(0.210001,0.003150,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.210001,0.003150,-0.003750,0.249972,0,0);}
.m7a_c00098{transform:matrix(0.210126,0.003152,-0.003750,0.249972,0,0);-ms-transform:matrix(0.210126,0.003152,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.210126,0.003152,-0.003750,0.249972,0,0);}
.mbd_c00098{transform:matrix(0.210301,0.003155,-0.003750,0.249972,0,0);-ms-transform:matrix(0.210301,0.003155,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.210301,0.003155,-0.003750,0.249972,0,0);}
.m33_c00098{transform:matrix(0.210411,0.003156,-0.003750,0.249972,0,0);-ms-transform:matrix(0.210411,0.003156,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.210411,0.003156,-0.003750,0.249972,0,0);}
.m2e_c00098{transform:matrix(0.210421,0.003156,-0.003750,0.249972,0,0);-ms-transform:matrix(0.210421,0.003156,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.210421,0.003156,-0.003750,0.249972,0,0);}
.m166_c00098{transform:matrix(0.210809,0.004427,-0.005249,0.249945,0,0);-ms-transform:matrix(0.210809,0.004427,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.210809,0.004427,-0.005249,0.249945,0,0);}
.m151_c00098{transform:matrix(0.211003,0.004431,-0.005249,0.249945,0,0);-ms-transform:matrix(0.211003,0.004431,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.211003,0.004431,-0.005249,0.249945,0,0);}
.m18e_c00098{transform:matrix(0.211246,0.006126,-0.007247,0.249895,0,0);-ms-transform:matrix(0.211246,0.006126,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.211246,0.006126,-0.007247,0.249895,0,0);}
.m15c_c00098{transform:matrix(0.211288,0.004437,-0.005249,0.249945,0,0);-ms-transform:matrix(0.211288,0.004437,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.211288,0.004437,-0.005249,0.249945,0,0);}
.m155_c00098{transform:matrix(0.211453,0.004441,-0.005249,0.249945,0,0);-ms-transform:matrix(0.211453,0.004441,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.211453,0.004441,-0.005249,0.249945,0,0);}
.m5e_c00098{transform:matrix(0.211651,0.003175,-0.003750,0.249972,0,0);-ms-transform:matrix(0.211651,0.003175,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.211651,0.003175,-0.003750,0.249972,0,0);}
.m55_c00098{transform:matrix(0.211856,0.003178,-0.003750,0.249972,0,0);-ms-transform:matrix(0.211856,0.003178,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.211856,0.003178,-0.003750,0.249972,0,0);}
.m5d_c00098{transform:matrix(0.213151,0.003197,-0.003750,0.249972,0,0);-ms-transform:matrix(0.213151,0.003197,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.213151,0.003197,-0.003750,0.249972,0,0);}
.m27_c00098{transform:matrix(0.213196,0.003198,-0.003750,0.249972,0,0);-ms-transform:matrix(0.213196,0.003198,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.213196,0.003198,-0.003750,0.249972,0,0);}
.m1f4_c00098{transform:matrix(0.213378,0.004694,-0.005499,0.249940,0,0);-ms-transform:matrix(0.213378,0.004694,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.213378,0.004694,-0.005499,0.249940,0,0);}
.m8e_c00098{transform:matrix(0.214416,0.003216,-0.003750,0.249972,0,0);-ms-transform:matrix(0.214416,0.003216,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.214416,0.003216,-0.003750,0.249972,0,0);}
.m158_c00098{transform:matrix(0.214458,0.004504,-0.005249,0.249945,0,0);-ms-transform:matrix(0.214458,0.004504,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.214458,0.004504,-0.005249,0.249945,0,0);}
.m7f_c00098{transform:matrix(0.214466,0.003217,-0.003750,0.249972,0,0);-ms-transform:matrix(0.214466,0.003217,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.214466,0.003217,-0.003750,0.249972,0,0);}
.m20_c00098{transform:matrix(0.214506,0.003218,-0.003750,0.249972,0,0);-ms-transform:matrix(0.214506,0.003218,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.214506,0.003218,-0.003750,0.249972,0,0);}
.m51_c00098{transform:matrix(0.214606,0.003219,-0.003750,0.249972,0,0);-ms-transform:matrix(0.214606,0.003219,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.214606,0.003219,-0.003750,0.249972,0,0);}
.m1ef_c00098{transform:matrix(0.214613,0.004721,-0.005499,0.249940,0,0);-ms-transform:matrix(0.214613,0.004721,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.214613,0.004721,-0.005499,0.249940,0,0);}
.m12c_c00098{transform:matrix(0.214828,0.004511,-0.005249,0.249945,0,0);-ms-transform:matrix(0.214828,0.004511,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.214828,0.004511,-0.005249,0.249945,0,0);}
.m135_c00098{transform:matrix(0.214978,0.004515,-0.005249,0.249945,0,0);-ms-transform:matrix(0.214978,0.004515,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.214978,0.004515,-0.005249,0.249945,0,0);}
.m172_c00098{transform:matrix(0.215090,0.006238,-0.007247,0.249895,0,0);-ms-transform:matrix(0.215090,0.006238,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.215090,0.006238,-0.007247,0.249895,0,0);}
.m63_c00098{transform:matrix(0.215151,0.003227,-0.003750,0.249972,0,0);-ms-transform:matrix(0.215151,0.003227,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.215151,0.003227,-0.003750,0.249972,0,0);}
.m13e_c00098{transform:matrix(0.215163,0.004518,-0.005249,0.249945,0,0);-ms-transform:matrix(0.215163,0.004518,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.215163,0.004518,-0.005249,0.249945,0,0);}
.m79_c00098{transform:matrix(0.215576,0.003234,-0.003750,0.249972,0,0);-ms-transform:matrix(0.215576,0.003234,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.215576,0.003234,-0.003750,0.249972,0,0);}
.m1f1_c00098{transform:matrix(0.215968,0.004751,-0.005499,0.249940,0,0);-ms-transform:matrix(0.215968,0.004751,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.215968,0.004751,-0.005499,0.249940,0,0);}
.m111_c00098{transform:matrix(0.215986,0.003240,-0.003750,0.249972,0,0);-ms-transform:matrix(0.215986,0.003240,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.215986,0.003240,-0.003750,0.249972,0,0);}
.mf0_c00098{transform:matrix(0.216386,0.003246,-0.003750,0.249972,0,0);-ms-transform:matrix(0.216386,0.003246,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.216386,0.003246,-0.003750,0.249972,0,0);}
.m1b1_c00098{transform:matrix(0.216475,0.006061,-0.006997,0.249902,0,0);-ms-transform:matrix(0.216475,0.006061,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.216475,0.006061,-0.006997,0.249902,0,0);}
.m1ad_c00098{transform:matrix(0.216715,0.006068,-0.006997,0.249902,0,0);-ms-transform:matrix(0.216715,0.006068,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.216715,0.006068,-0.006997,0.249902,0,0);}
.m175_c00098{transform:matrix(0.216964,0.006292,-0.007247,0.249895,0,0);-ms-transform:matrix(0.216964,0.006292,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.216964,0.006292,-0.007247,0.249895,0,0);}
.m38_c00098{transform:matrix(0.217421,0.003261,-0.003750,0.249972,0,0);-ms-transform:matrix(0.217421,0.003261,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.217421,0.003261,-0.003750,0.249972,0,0);}
.m1ca_c00098{transform:matrix(0.218472,0.005025,-0.005748,0.249934,0,0);-ms-transform:matrix(0.218472,0.005025,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.218472,0.005025,-0.005748,0.249934,0,0);}
.m1cc_c00098{transform:matrix(0.218977,0.005036,-0.005748,0.249934,0,0);-ms-transform:matrix(0.218977,0.005036,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.218977,0.005036,-0.005748,0.249934,0,0);}
.m1e7_c00098{transform:matrix(0.219087,0.005039,-0.005748,0.249934,0,0);-ms-transform:matrix(0.219087,0.005039,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.219087,0.005039,-0.005748,0.249934,0,0);}
.m14f_c00098{transform:matrix(0.219977,0.004620,-0.005249,0.249945,0,0);-ms-transform:matrix(0.219977,0.004620,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.219977,0.004620,-0.005249,0.249945,0,0);}
.m2c_c00098{transform:matrix(0.220295,0.003304,-0.003750,0.249972,0,0);-ms-transform:matrix(0.220295,0.003304,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.220295,0.003304,-0.003750,0.249972,0,0);}
.m1af_c00098{transform:matrix(0.220958,0.006187,-0.006997,0.249902,0,0);-ms-transform:matrix(0.220958,0.006187,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.220958,0.006187,-0.006997,0.249902,0,0);}
.m15a_c00098{transform:matrix(0.220966,0.004640,-0.005249,0.249945,0,0);-ms-transform:matrix(0.220966,0.004640,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.220966,0.004640,-0.005249,0.249945,0,0);}
.m1d0_c00098{transform:matrix(0.221351,0.005091,-0.005748,0.249934,0,0);-ms-transform:matrix(0.221351,0.005091,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.221351,0.005091,-0.005748,0.249934,0,0);}
.mbf_c00098{transform:matrix(0.221425,0.003321,-0.003750,0.249972,0,0);-ms-transform:matrix(0.221425,0.003321,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.221425,0.003321,-0.003750,0.249972,0,0);}
.ma7_c00098{transform:matrix(0.221460,0.003322,-0.003750,0.249972,0,0);-ms-transform:matrix(0.221460,0.003322,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.221460,0.003322,-0.003750,0.249972,0,0);}
.m1f3_c00098{transform:matrix(0.221561,0.004874,-0.005499,0.249940,0,0);-ms-transform:matrix(0.221561,0.004874,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.221561,0.004874,-0.005499,0.249940,0,0);}
.mc1_c00098{transform:matrix(0.221695,0.003325,-0.003750,0.249972,0,0);-ms-transform:matrix(0.221695,0.003325,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.221695,0.003325,-0.003750,0.249972,0,0);}
.m184_c00098{transform:matrix(0.222072,0.006440,-0.007247,0.249895,0,0);-ms-transform:matrix(0.222072,0.006440,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.222072,0.006440,-0.007247,0.249895,0,0);}
.m1d8_c00098{transform:matrix(0.222101,0.005108,-0.005748,0.249934,0,0);-ms-transform:matrix(0.222101,0.005108,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.222101,0.005108,-0.005748,0.249934,0,0);}
.m169_c00098{transform:matrix(0.222272,0.006446,-0.007247,0.249895,0,0);-ms-transform:matrix(0.222272,0.006446,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.222272,0.006446,-0.007247,0.249895,0,0);}
.m1e0_c00098{transform:matrix(0.222291,0.005113,-0.005748,0.249934,0,0);-ms-transform:matrix(0.222291,0.005113,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.222291,0.005113,-0.005748,0.249934,0,0);}
.m162_c00098{transform:matrix(0.222481,0.004672,-0.005249,0.249945,0,0);-ms-transform:matrix(0.222481,0.004672,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.222481,0.004672,-0.005249,0.249945,0,0);}
.mc4_c00098{transform:matrix(0.222500,0.003337,-0.003750,0.249972,0,0);-ms-transform:matrix(0.222500,0.003337,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.222500,0.003337,-0.003750,0.249972,0,0);}
.m14_c00098{transform:matrix(0.222810,0.003342,-0.003750,0.249972,0,0);-ms-transform:matrix(0.222810,0.003342,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.222810,0.003342,-0.003750,0.249972,0,0);}
.m194_c00098{transform:matrix(0.223556,0.006483,-0.007247,0.249895,0,0);-ms-transform:matrix(0.223556,0.006483,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.223556,0.006483,-0.007247,0.249895,0,0);}
.m1df_c00098{transform:matrix(0.223591,0.005143,-0.005748,0.249934,0,0);-ms-transform:matrix(0.223591,0.005143,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.223591,0.005143,-0.005748,0.249934,0,0);}
.m15d_c00098{transform:matrix(0.224530,0.004715,-0.005249,0.249945,0,0);-ms-transform:matrix(0.224530,0.004715,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.224530,0.004715,-0.005249,0.249945,0,0);}
.mb7_c00098{transform:matrix(0.224660,0.003370,-0.003750,0.249972,0,0);-ms-transform:matrix(0.224660,0.003370,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.224660,0.003370,-0.003750,0.249972,0,0);}
.m104_c00098{transform:matrix(0.225150,0.003377,-0.003750,0.249972,0,0);-ms-transform:matrix(0.225150,0.003377,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.225150,0.003377,-0.003750,0.249972,0,0);}
.mbc_c00098{transform:matrix(0.225255,0.003379,-0.003750,0.249972,0,0);-ms-transform:matrix(0.225255,0.003379,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.225255,0.003379,-0.003750,0.249972,0,0);}
.m99_c00098{transform:matrix(0.225600,0.003384,-0.003750,0.249972,0,0);-ms-transform:matrix(0.225600,0.003384,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.225600,0.003384,-0.003750,0.249972,0,0);}
.m64_c00098{transform:matrix(0.225615,0.003384,-0.003750,0.249972,0,0);-ms-transform:matrix(0.225615,0.003384,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.225615,0.003384,-0.003750,0.249972,0,0);}
.mbb_c00098{transform:matrix(0.225695,0.003385,-0.003750,0.249972,0,0);-ms-transform:matrix(0.225695,0.003385,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.225695,0.003385,-0.003750,0.249972,0,0);}
.m17b_c00098{transform:matrix(0.225715,0.006546,-0.007247,0.249895,0,0);-ms-transform:matrix(0.225715,0.006546,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.225715,0.006546,-0.007247,0.249895,0,0);}
.mb9_c00098{transform:matrix(0.225835,0.003388,-0.003750,0.249972,0,0);-ms-transform:matrix(0.225835,0.003388,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.225835,0.003388,-0.003750,0.249972,0,0);}
.m10f_c00098{transform:matrix(0.225885,0.003388,-0.003750,0.249972,0,0);-ms-transform:matrix(0.225885,0.003388,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.225885,0.003388,-0.003750,0.249972,0,0);}
.m60_c00098{transform:matrix(0.226330,0.003395,-0.003750,0.249972,0,0);-ms-transform:matrix(0.226330,0.003395,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.226330,0.003395,-0.003750,0.249972,0,0);}
.m8b_c00098{transform:matrix(0.226575,0.003399,-0.003750,0.249972,0,0);-ms-transform:matrix(0.226575,0.003399,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.226575,0.003399,-0.003750,0.249972,0,0);}
.m159_c00098{transform:matrix(0.226600,0.004759,-0.005249,0.249945,0,0);-ms-transform:matrix(0.226600,0.004759,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.226600,0.004759,-0.005249,0.249945,0,0);}
.m123_c00098{transform:matrix(0.226979,0.003405,-0.003750,0.249972,0,0);-ms-transform:matrix(0.226979,0.003405,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.226979,0.003405,-0.003750,0.249972,0,0);}
.m103_c00098{transform:matrix(0.227019,0.003405,-0.003750,0.249972,0,0);-ms-transform:matrix(0.227019,0.003405,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.227019,0.003405,-0.003750,0.249972,0,0);}
.m178_c00098{transform:matrix(0.228779,0.006635,-0.007247,0.249895,0,0);-ms-transform:matrix(0.228779,0.006635,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.228779,0.006635,-0.007247,0.249895,0,0);}
.m126_c00098{transform:matrix(0.228849,0.003433,-0.003750,0.249972,0,0);-ms-transform:matrix(0.228849,0.003433,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.228849,0.003433,-0.003750,0.249972,0,0);}
.m13c_c00098{transform:matrix(0.229179,0.004813,-0.005249,0.249945,0,0);-ms-transform:matrix(0.229179,0.004813,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.229179,0.004813,-0.005249,0.249945,0,0);}
.m177_c00098{transform:matrix(0.229239,0.006648,-0.007247,0.249895,0,0);-ms-transform:matrix(0.229239,0.006648,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.229239,0.006648,-0.007247,0.249895,0,0);}
.mba_c00098{transform:matrix(0.229304,0.003440,-0.003750,0.249972,0,0);-ms-transform:matrix(0.229304,0.003440,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.229304,0.003440,-0.003750,0.249972,0,0);}
.m93_c00098{transform:matrix(0.229404,0.003441,-0.003750,0.249972,0,0);-ms-transform:matrix(0.229404,0.003441,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.229404,0.003441,-0.003750,0.249972,0,0);}
.me5_c00098{transform:matrix(0.229759,0.003446,-0.003750,0.249972,0,0);-ms-transform:matrix(0.229759,0.003446,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.229759,0.003446,-0.003750,0.249972,0,0);}
.m9c_c00098{transform:matrix(0.229804,0.003447,-0.003750,0.249972,0,0);-ms-transform:matrix(0.229804,0.003447,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.229804,0.003447,-0.003750,0.249972,0,0);}
.m185_c00098{transform:matrix(0.229988,0.006670,-0.007247,0.249895,0,0);-ms-transform:matrix(0.229988,0.006670,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.229988,0.006670,-0.007247,0.249895,0,0);}
.m165_c00098{transform:matrix(0.230004,0.004830,-0.005249,0.249945,0,0);-ms-transform:matrix(0.230004,0.004830,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.230004,0.004830,-0.005249,0.249945,0,0);}
.m1a4_c00098{transform:matrix(0.230155,0.006444,-0.006997,0.249902,0,0);-ms-transform:matrix(0.230155,0.006444,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.230155,0.006444,-0.006997,0.249902,0,0);}
.m1ae_c00098{transform:matrix(0.230680,0.006459,-0.006997,0.249902,0,0);-ms-transform:matrix(0.230680,0.006459,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.230680,0.006459,-0.006997,0.249902,0,0);}
.m7_c00098{transform:matrix(0.231624,0.003474,-0.003750,0.249972,0,0);-ms-transform:matrix(0.231624,0.003474,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.231624,0.003474,-0.003750,0.249972,0,0);}
.m17a_c00098{transform:matrix(0.231703,0.006719,-0.007247,0.249895,0,0);-ms-transform:matrix(0.231703,0.006719,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.231703,0.006719,-0.007247,0.249895,0,0);}
.m132_c00098{transform:matrix(0.231859,0.004869,-0.005249,0.249945,0,0);-ms-transform:matrix(0.231859,0.004869,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.231859,0.004869,-0.005249,0.249945,0,0);}
.m1cf_c00098{transform:matrix(0.231884,0.005333,-0.005748,0.249934,0,0);-ms-transform:matrix(0.231884,0.005333,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.231884,0.005333,-0.005748,0.249934,0,0);}
.m1e9_c00098{transform:matrix(0.232279,0.005342,-0.005748,0.249934,0,0);-ms-transform:matrix(0.232279,0.005342,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.232279,0.005342,-0.005748,0.249934,0,0);}
.m78_c00098{transform:matrix(0.232889,0.003493,-0.003750,0.249972,0,0);-ms-transform:matrix(0.232889,0.003493,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.232889,0.003493,-0.003750,0.249972,0,0);}
.m11b_c00098{transform:matrix(0.232904,0.003494,-0.003750,0.249972,0,0);-ms-transform:matrix(0.232904,0.003494,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.232904,0.003494,-0.003750,0.249972,0,0);}
.m66_c00098{transform:matrix(0.232959,0.003494,-0.003750,0.249972,0,0);-ms-transform:matrix(0.232959,0.003494,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.232959,0.003494,-0.003750,0.249972,0,0);}
.m199_c00098{transform:matrix(0.233562,0.006773,-0.007247,0.249895,0,0);-ms-transform:matrix(0.233562,0.006773,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.233562,0.006773,-0.007247,0.249895,0,0);}
.m1a1_c00098{transform:matrix(0.233783,0.006546,-0.006997,0.249902,0,0);-ms-transform:matrix(0.233783,0.006546,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.233783,0.006546,-0.006997,0.249902,0,0);}
.m1e5_c00098{transform:matrix(0.234033,0.005383,-0.005748,0.249934,0,0);-ms-transform:matrix(0.234033,0.005383,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.234033,0.005383,-0.005748,0.249934,0,0);}
.m127_c00098{transform:matrix(0.234044,0.003511,-0.003750,0.249972,0,0);-ms-transform:matrix(0.234044,0.003511,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.234044,0.003511,-0.003750,0.249972,0,0);}
.m125_c00098{transform:matrix(0.234064,0.003511,-0.003750,0.249972,0,0);-ms-transform:matrix(0.234064,0.003511,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.234064,0.003511,-0.003750,0.249972,0,0);}
.me4_c00098{transform:matrix(0.234279,0.003514,-0.003750,0.249972,0,0);-ms-transform:matrix(0.234279,0.003514,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.234279,0.003514,-0.003750,0.249972,0,0);}
.m6d_c00098{transform:matrix(0.234649,0.003520,-0.003750,0.249972,0,0);-ms-transform:matrix(0.234649,0.003520,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.234649,0.003520,-0.003750,0.249972,0,0);}
.m1b5_c00098{transform:matrix(0.234843,0.006576,-0.006997,0.249902,0,0);-ms-transform:matrix(0.234843,0.006576,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.234843,0.006576,-0.006997,0.249902,0,0);}
.m12_c00098{transform:matrix(0.234969,0.003525,-0.003750,0.249972,0,0);-ms-transform:matrix(0.234969,0.003525,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.234969,0.003525,-0.003750,0.249972,0,0);}
.m1e4_c00098{transform:matrix(0.235033,0.005406,-0.005748,0.249934,0,0);-ms-transform:matrix(0.235033,0.005406,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.235033,0.005406,-0.005748,0.249934,0,0);}
.m19b_c00098{transform:matrix(0.235233,0.006587,-0.006997,0.249902,0,0);-ms-transform:matrix(0.235233,0.006587,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.235233,0.006587,-0.006997,0.249902,0,0);}
.m1b7_c00098{transform:matrix(0.235803,0.005423,-0.005748,0.249934,0,0);-ms-transform:matrix(0.235803,0.005423,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.235803,0.005423,-0.005748,0.249934,0,0);}
.m10c_c00098{transform:matrix(0.236153,0.003542,-0.003750,0.249972,0,0);-ms-transform:matrix(0.236153,0.003542,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.236153,0.003542,-0.003750,0.249972,0,0);}
.m1e2_c00098{transform:matrix(0.236218,0.005433,-0.005748,0.249934,0,0);-ms-transform:matrix(0.236218,0.005433,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.236218,0.005433,-0.005748,0.249934,0,0);}
.m120_c00098{transform:matrix(0.236233,0.003544,-0.003750,0.249972,0,0);-ms-transform:matrix(0.236233,0.003544,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.236233,0.003544,-0.003750,0.249972,0,0);}
.m18d_c00098{transform:matrix(0.236646,0.006863,-0.007247,0.249895,0,0);-ms-transform:matrix(0.236646,0.006863,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.236646,0.006863,-0.007247,0.249895,0,0);}
.m141_c00098{transform:matrix(0.237023,0.004977,-0.005249,0.249945,0,0);-ms-transform:matrix(0.237023,0.004977,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.237023,0.004977,-0.005249,0.249945,0,0);}
.m4b_c00098{transform:matrix(0.237173,0.003558,-0.003750,0.249972,0,0);-ms-transform:matrix(0.237173,0.003558,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.237173,0.003558,-0.003750,0.249972,0,0);}
.m15b_c00098{transform:matrix(0.237333,0.004984,-0.005249,0.249945,0,0);-ms-transform:matrix(0.237333,0.004984,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.237333,0.004984,-0.005249,0.249945,0,0);}
.m7c_c00098{transform:matrix(0.237333,0.003560,-0.003750,0.249972,0,0);-ms-transform:matrix(0.237333,0.003560,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.237333,0.003560,-0.003750,0.249972,0,0);}
.m10a_c00098{transform:matrix(0.237358,0.003560,-0.003750,0.249972,0,0);-ms-transform:matrix(0.237358,0.003560,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.237358,0.003560,-0.003750,0.249972,0,0);}
.m1c_c00098{transform:matrix(0.237623,0.003564,-0.003750,0.249972,0,0);-ms-transform:matrix(0.237623,0.003564,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.237623,0.003564,-0.003750,0.249972,0,0);}
.m1ce_c00098{transform:matrix(0.237667,0.005466,-0.005748,0.249934,0,0);-ms-transform:matrix(0.237667,0.005466,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.237667,0.005466,-0.005748,0.249934,0,0);}
.m37_c00098{transform:matrix(0.237753,0.003566,-0.003750,0.249972,0,0);-ms-transform:matrix(0.237753,0.003566,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.237753,0.003566,-0.003750,0.249972,0,0);}
.m19d_c00098{transform:matrix(0.237792,0.006658,-0.006997,0.249902,0,0);-ms-transform:matrix(0.237792,0.006658,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.237792,0.006658,-0.006997,0.249902,0,0);}
.m147_c00098{transform:matrix(0.237833,0.004994,-0.005249,0.249945,0,0);-ms-transform:matrix(0.237833,0.004994,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.237833,0.004994,-0.005249,0.249945,0,0);}
.m161_c00098{transform:matrix(0.238018,0.004998,-0.005249,0.249945,0,0);-ms-transform:matrix(0.238018,0.004998,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.238018,0.004998,-0.005249,0.249945,0,0);}
.mf7_c00098{transform:matrix(0.238163,0.003572,-0.003750,0.249972,0,0);-ms-transform:matrix(0.238163,0.003572,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.238163,0.003572,-0.003750,0.249972,0,0);}
.m11a_c00098{transform:matrix(0.238173,0.003573,-0.003750,0.249972,0,0);-ms-transform:matrix(0.238173,0.003573,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.238173,0.003573,-0.003750,0.249972,0,0);}
.m1dd_c00098{transform:matrix(0.238227,0.005479,-0.005748,0.249934,0,0);-ms-transform:matrix(0.238227,0.005479,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.238227,0.005479,-0.005748,0.249934,0,0);}
.m19f_c00098{transform:matrix(0.239501,0.006706,-0.006997,0.249902,0,0);-ms-transform:matrix(0.239501,0.006706,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.239501,0.006706,-0.006997,0.249902,0,0);}
.m188_c00098{transform:matrix(0.240409,0.006972,-0.007247,0.249895,0,0);-ms-transform:matrix(0.240409,0.006972,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.240409,0.006972,-0.007247,0.249895,0,0);}
.m9b_c00098{transform:matrix(0.240953,0.003614,-0.003750,0.249972,0,0);-ms-transform:matrix(0.240953,0.003614,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.240953,0.003614,-0.003750,0.249972,0,0);}
.m1bd_c00098{transform:matrix(0.241026,0.005544,-0.005748,0.249934,0,0);-ms-transform:matrix(0.241026,0.005544,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.241026,0.005544,-0.005748,0.249934,0,0);}
.m130_c00098{transform:matrix(0.241612,0.005074,-0.005249,0.249945,0,0);-ms-transform:matrix(0.241612,0.005074,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.241612,0.005074,-0.005249,0.249945,0,0);}
.m86_c00098{transform:matrix(0.242103,0.003632,-0.003750,0.249972,0,0);-ms-transform:matrix(0.242103,0.003632,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.242103,0.003632,-0.003750,0.249972,0,0);}
.m5f_c00098{transform:matrix(0.242498,0.003637,-0.003750,0.249972,0,0);-ms-transform:matrix(0.242498,0.003637,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.242498,0.003637,-0.003750,0.249972,0,0);}
.m196_c00098{transform:matrix(0.242913,0.007044,-0.007247,0.249895,0,0);-ms-transform:matrix(0.242913,0.007044,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.242913,0.007044,-0.007247,0.249895,0,0);}
.m110_c00098{transform:matrix(0.242923,0.003644,-0.003750,0.249972,0,0);-ms-transform:matrix(0.242923,0.003644,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.242923,0.003644,-0.003750,0.249972,0,0);}
.m1c3_c00098{transform:matrix(0.242951,0.005588,-0.005748,0.249934,0,0);-ms-transform:matrix(0.242951,0.005588,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.242951,0.005588,-0.005748,0.249934,0,0);}
.m113_c00098{transform:matrix(0.242988,0.003645,-0.003750,0.249972,0,0);-ms-transform:matrix(0.242988,0.003645,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.242988,0.003645,-0.003750,0.249972,0,0);}
.m1e3_c00098{transform:matrix(0.243116,0.005592,-0.005748,0.249934,0,0);-ms-transform:matrix(0.243116,0.005592,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.243116,0.005592,-0.005748,0.249934,0,0);}
.m7d_c00098{transform:matrix(0.244073,0.003661,-0.003750,0.249972,0,0);-ms-transform:matrix(0.244073,0.003661,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.244073,0.003661,-0.003750,0.249972,0,0);}
.m136_c00098{transform:matrix(0.244166,0.005127,-0.005249,0.249945,0,0);-ms-transform:matrix(0.244166,0.005127,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.244166,0.005127,-0.005249,0.249945,0,0);}
.m1f6_c00098{transform:matrix(0.244231,0.005373,-0.005499,0.249940,0,0);-ms-transform:matrix(0.244231,0.005373,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.244231,0.005373,-0.005499,0.249940,0,0);}
.m4c_c00098{transform:matrix(0.244273,0.003664,-0.003750,0.249972,0,0);-ms-transform:matrix(0.244273,0.003664,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.244273,0.003664,-0.003750,0.249972,0,0);}
.m152_c00098{transform:matrix(0.244371,0.005132,-0.005249,0.249945,0,0);-ms-transform:matrix(0.244371,0.005132,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.244371,0.005132,-0.005249,0.249945,0,0);}
.mb8_c00098{transform:matrix(0.244732,0.003671,-0.003750,0.249972,0,0);-ms-transform:matrix(0.244732,0.003671,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.244732,0.003671,-0.003750,0.249972,0,0);}
.m6_c00098{transform:matrix(0.245067,0.003676,-0.003750,0.249972,0,0);-ms-transform:matrix(0.245067,0.003676,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.245067,0.003676,-0.003750,0.249972,0,0);}
.m156_c00098{transform:matrix(0.245201,0.005149,-0.005249,0.249945,0,0);-ms-transform:matrix(0.245201,0.005149,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.245201,0.005149,-0.005249,0.249945,0,0);}
.m124_c00098{transform:matrix(0.245227,0.003678,-0.003750,0.249972,0,0);-ms-transform:matrix(0.245227,0.003678,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.245227,0.003678,-0.003750,0.249972,0,0);}
.m192_c00098{transform:matrix(0.245832,0.007129,-0.007247,0.249895,0,0);-ms-transform:matrix(0.245832,0.007129,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.245832,0.007129,-0.007247,0.249895,0,0);}
.m1e8_c00098{transform:matrix(0.246185,0.005662,-0.005748,0.249934,0,0);-ms-transform:matrix(0.246185,0.005662,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.246185,0.005662,-0.005748,0.249934,0,0);}
.m1de_c00098{transform:matrix(0.246440,0.005668,-0.005748,0.249934,0,0);-ms-transform:matrix(0.246440,0.005668,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.246440,0.005668,-0.005748,0.249934,0,0);}
.mc_c00098{transform:matrix(0.246592,0.003699,-0.003750,0.249972,0,0);-ms-transform:matrix(0.246592,0.003699,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.246592,0.003699,-0.003750,0.249972,0,0);}
.m14d_c00098{transform:matrix(0.247116,0.005189,-0.005249,0.249945,0,0);-ms-transform:matrix(0.247116,0.005189,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.247116,0.005189,-0.005249,0.249945,0,0);}
.m18_c00098{transform:matrix(0.247597,0.003714,-0.003750,0.249972,0,0);-ms-transform:matrix(0.247597,0.003714,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.247597,0.003714,-0.003750,0.249972,0,0);}
.m11f_c00098{transform:matrix(0.247622,0.003714,-0.003750,0.249972,0,0);-ms-transform:matrix(0.247622,0.003714,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.247622,0.003714,-0.003750,0.249972,0,0);}
.m182_c00098{transform:matrix(0.247751,0.007185,-0.007247,0.249895,0,0);-ms-transform:matrix(0.247751,0.007185,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.247751,0.007185,-0.007247,0.249895,0,0);}
.m1a2_c00098{transform:matrix(0.247758,0.006937,-0.006997,0.249902,0,0);-ms-transform:matrix(0.247758,0.006937,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.247758,0.006937,-0.006997,0.249902,0,0);}
.m23_c00098{transform:matrix(0.247812,0.003717,-0.003750,0.249972,0,0);-ms-transform:matrix(0.247812,0.003717,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.247812,0.003717,-0.003750,0.249972,0,0);}
.m157_c00098{transform:matrix(0.247970,0.005207,-0.005249,0.249945,0,0);-ms-transform:matrix(0.247970,0.005207,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.247970,0.005207,-0.005249,0.249945,0,0);}
.md1_c00098{transform:matrix(0.247977,0.003720,-0.003750,0.249972,0,0);-ms-transform:matrix(0.247977,0.003720,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.247977,0.003720,-0.003750,0.249972,0,0);}
.mc0_c00098{transform:matrix(0.249107,0.003737,-0.003750,0.249972,0,0);-ms-transform:matrix(0.249107,0.003737,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.249107,0.003737,-0.003750,0.249972,0,0);}
.m1b6_c00098{transform:matrix(0.249234,0.005732,-0.005748,0.249934,0,0);-ms-transform:matrix(0.249234,0.005732,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.249234,0.005732,-0.005748,0.249934,0,0);}
.m16c_c00098{transform:matrix(0.249655,0.007240,-0.007247,0.249895,0,0);-ms-transform:matrix(0.249655,0.007240,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.249655,0.007240,-0.007247,0.249895,0,0);}
.m1f2_c00098{transform:matrix(0.250204,0.005504,-0.005499,0.249940,0,0);-ms-transform:matrix(0.250204,0.005504,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.250204,0.005504,-0.005499,0.249940,0,0);}
.m138_c00098{transform:matrix(0.250415,0.005259,-0.005249,0.249945,0,0);-ms-transform:matrix(0.250415,0.005259,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.250415,0.005259,-0.005249,0.249945,0,0);}
.mbe_c00098{transform:matrix(0.250422,0.003756,-0.003750,0.249972,0,0);-ms-transform:matrix(0.250422,0.003756,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.250422,0.003756,-0.003750,0.249972,0,0);}
.m14c_c00098{transform:matrix(0.250480,0.005260,-0.005249,0.249945,0,0);-ms-transform:matrix(0.250480,0.005260,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.250480,0.005260,-0.005249,0.249945,0,0);}
.md2_c00098{transform:matrix(0.250727,0.003761,-0.003750,0.249972,0,0);-ms-transform:matrix(0.250727,0.003761,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.250727,0.003761,-0.003750,0.249972,0,0);}
.m198_c00098{transform:matrix(0.251269,0.007287,-0.007247,0.249895,0,0);-ms-transform:matrix(0.251269,0.007287,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.251269,0.007287,-0.007247,0.249895,0,0);}
.m189_c00098{transform:matrix(0.252214,0.007314,-0.007247,0.249895,0,0);-ms-transform:matrix(0.252214,0.007314,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.252214,0.007314,-0.007247,0.249895,0,0);}
.me_c00098{transform:matrix(0.252802,0.003792,-0.003750,0.249972,0,0);-ms-transform:matrix(0.252802,0.003792,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.252802,0.003792,-0.003750,0.249972,0,0);}
.m1cd_c00098{transform:matrix(0.252823,0.005815,-0.005748,0.249934,0,0);-ms-transform:matrix(0.252823,0.005815,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.252823,0.005815,-0.005748,0.249934,0,0);}
.m1eb_c00098{transform:matrix(0.252943,0.005818,-0.005748,0.249934,0,0);-ms-transform:matrix(0.252943,0.005818,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.252943,0.005818,-0.005748,0.249934,0,0);}
.m57_c00098{transform:matrix(0.252972,0.003795,-0.003750,0.249972,0,0);-ms-transform:matrix(0.252972,0.003795,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.252972,0.003795,-0.003750,0.249972,0,0);}
.m12a_c00098{transform:matrix(0.253289,0.005319,-0.005249,0.249945,0,0);-ms-transform:matrix(0.253289,0.005319,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.253289,0.005319,-0.005249,0.249945,0,0);}
.mcc_c00098{transform:matrix(0.253511,0.003803,-0.003750,0.249972,0,0);-ms-transform:matrix(0.253511,0.003803,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.253511,0.003803,-0.003750,0.249972,0,0);}
.m171_c00098{transform:matrix(0.254208,0.007372,-0.007247,0.249895,0,0);-ms-transform:matrix(0.254208,0.007372,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.254208,0.007372,-0.007247,0.249895,0,0);}
.m1ba_c00098{transform:matrix(0.254218,0.005847,-0.005748,0.249934,0,0);-ms-transform:matrix(0.254218,0.005847,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.254218,0.005847,-0.005748,0.249934,0,0);}
.m119_c00098{transform:matrix(0.254436,0.003817,-0.003750,0.249972,0,0);-ms-transform:matrix(0.254436,0.003817,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.254436,0.003817,-0.003750,0.249972,0,0);}
.m1be_c00098{transform:matrix(0.254713,0.005858,-0.005748,0.249934,0,0);-ms-transform:matrix(0.254713,0.005858,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.254713,0.005858,-0.005748,0.249934,0,0);}
.mf5_c00098{transform:matrix(0.255411,0.003831,-0.003750,0.249972,0,0);-ms-transform:matrix(0.255411,0.003831,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.255411,0.003831,-0.003750,0.249972,0,0);}
.m1e1_c00098{transform:matrix(0.256372,0.005897,-0.005748,0.249934,0,0);-ms-transform:matrix(0.256372,0.005897,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.256372,0.005897,-0.005748,0.249934,0,0);}
.m146_c00098{transform:matrix(0.256408,0.005385,-0.005249,0.249945,0,0);-ms-transform:matrix(0.256408,0.005385,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.256408,0.005385,-0.005249,0.249945,0,0);}
.m2_c00098{transform:matrix(0.256991,0.003855,-0.003750,0.249972,0,0);-ms-transform:matrix(0.256991,0.003855,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.256991,0.003855,-0.003750,0.249972,0,0);}
.m128_c00098{transform:matrix(0.257156,0.003857,-0.003750,0.249972,0,0);-ms-transform:matrix(0.257156,0.003857,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.257156,0.003857,-0.003750,0.249972,0,0);}
.m1d3_c00098{transform:matrix(0.257257,0.005917,-0.005748,0.249934,0,0);-ms-transform:matrix(0.257257,0.005917,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.257257,0.005917,-0.005748,0.249934,0,0);}
.m1cb_c00098{transform:matrix(0.257417,0.005921,-0.005748,0.249934,0,0);-ms-transform:matrix(0.257417,0.005921,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.257417,0.005921,-0.005748,0.249934,0,0);}
.m15e_c00098{transform:matrix(0.257493,0.005407,-0.005249,0.249945,0,0);-ms-transform:matrix(0.257493,0.005407,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.257493,0.005407,-0.005249,0.249945,0,0);}
.m10e_c00098{transform:matrix(0.258136,0.003872,-0.003750,0.249972,0,0);-ms-transform:matrix(0.258136,0.003872,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.258136,0.003872,-0.003750,0.249972,0,0);}
.m1ec_c00098{transform:matrix(0.258412,0.005943,-0.005748,0.249934,0,0);-ms-transform:matrix(0.258412,0.005943,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.258412,0.005943,-0.005748,0.249934,0,0);}
.m17e_c00098{transform:matrix(0.258581,0.007499,-0.007247,0.249895,0,0);-ms-transform:matrix(0.258581,0.007499,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.258581,0.007499,-0.007247,0.249895,0,0);}
.m129_c00098{transform:matrix(0.259103,0.005441,-0.005249,0.249945,0,0);-ms-transform:matrix(0.259103,0.005441,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.259103,0.005441,-0.005249,0.249945,0,0);}
.m2f_c00098{transform:matrix(0.259391,0.003891,-0.003750,0.249972,0,0);-ms-transform:matrix(0.259391,0.003891,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.259391,0.003891,-0.003750,0.249972,0,0);}
.m144_c00098{transform:matrix(0.259563,0.005451,-0.005249,0.249945,0,0);-ms-transform:matrix(0.259563,0.005451,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.259563,0.005451,-0.005249,0.249945,0,0);}
.m17f_c00098{transform:matrix(0.259816,0.007535,-0.007247,0.249895,0,0);-ms-transform:matrix(0.259816,0.007535,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.259816,0.007535,-0.007247,0.249895,0,0);}
.m1ac_c00098{transform:matrix(0.260053,0.007281,-0.006997,0.249902,0,0);-ms-transform:matrix(0.260053,0.007281,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.260053,0.007281,-0.006997,0.249902,0,0);}
.m148_c00098{transform:matrix(0.260193,0.005464,-0.005249,0.249945,0,0);-ms-transform:matrix(0.260193,0.005464,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.260193,0.005464,-0.005249,0.249945,0,0);}
.m145_c00098{transform:matrix(0.260523,0.005471,-0.005249,0.249945,0,0);-ms-transform:matrix(0.260523,0.005471,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.260523,0.005471,-0.005249,0.249945,0,0);}
.m1c1_c00098{transform:matrix(0.260901,0.006001,-0.005748,0.249934,0,0);-ms-transform:matrix(0.260901,0.006001,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.260901,0.006001,-0.005748,0.249934,0,0);}
.m45_c00098{transform:matrix(0.260926,0.003914,-0.003750,0.249972,0,0);-ms-transform:matrix(0.260926,0.003914,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.260926,0.003914,-0.003750,0.249972,0,0);}
.m197_c00098{transform:matrix(0.260935,0.007567,-0.007247,0.249895,0,0);-ms-transform:matrix(0.260935,0.007567,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.260935,0.007567,-0.007247,0.249895,0,0);}
.m112_c00098{transform:matrix(0.261166,0.003917,-0.003750,0.249972,0,0);-ms-transform:matrix(0.261166,0.003917,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.261166,0.003917,-0.003750,0.249972,0,0);}
.m1da_c00098{transform:matrix(0.261286,0.006010,-0.005748,0.249934,0,0);-ms-transform:matrix(0.261286,0.006010,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.261286,0.006010,-0.005748,0.249934,0,0);}
.m115_c00098{transform:matrix(0.261506,0.003923,-0.003750,0.249972,0,0);-ms-transform:matrix(0.261506,0.003923,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.261506,0.003923,-0.003750,0.249972,0,0);}
.m1bb_c00098{transform:matrix(0.261546,0.006016,-0.005748,0.249934,0,0);-ms-transform:matrix(0.261546,0.006016,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.261546,0.006016,-0.005748,0.249934,0,0);}
.m1c5_c00098{transform:matrix(0.261586,0.006016,-0.005748,0.249934,0,0);-ms-transform:matrix(0.261586,0.006016,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.261586,0.006016,-0.005748,0.249934,0,0);}
.m183_c00098{transform:matrix(0.261975,0.007597,-0.007247,0.249895,0,0);-ms-transform:matrix(0.261975,0.007597,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.261975,0.007597,-0.007247,0.249895,0,0);}
.m1c8_c00098{transform:matrix(0.262491,0.006037,-0.005748,0.249934,0,0);-ms-transform:matrix(0.262491,0.006037,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.262491,0.006037,-0.005748,0.249934,0,0);}
.m5b_c00098{transform:matrix(0.263105,0.003947,-0.003750,0.249972,0,0);-ms-transform:matrix(0.263105,0.003947,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.263105,0.003947,-0.003750,0.249972,0,0);}
.m56_c00098{transform:matrix(0.263985,0.003960,-0.003750,0.249972,0,0);-ms-transform:matrix(0.263985,0.003960,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.263985,0.003960,-0.003750,0.249972,0,0);}
.m1f5_c00098{transform:matrix(0.264086,0.005810,-0.005499,0.249940,0,0);-ms-transform:matrix(0.264086,0.005810,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.264086,0.005810,-0.005499,0.249940,0,0);}
.m62_c00098{transform:matrix(0.264095,0.003961,-0.003750,0.249972,0,0);-ms-transform:matrix(0.264095,0.003961,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.264095,0.003961,-0.003750,0.249972,0,0);}
.m1ed_c00098{transform:matrix(0.264761,0.005825,-0.005499,0.249940,0,0);-ms-transform:matrix(0.264761,0.005825,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.264761,0.005825,-0.005499,0.249940,0,0);}
.m1d4_c00098{transform:matrix(0.264925,0.006093,-0.005748,0.249934,0,0);-ms-transform:matrix(0.264925,0.006093,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.264925,0.006093,-0.005748,0.249934,0,0);}
.m160_c00098{transform:matrix(0.265072,0.005567,-0.005249,0.249945,0,0);-ms-transform:matrix(0.265072,0.005567,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.265072,0.005567,-0.005249,0.249945,0,0);}
.m190_c00098{transform:matrix(0.265129,0.007689,-0.007247,0.249895,0,0);-ms-transform:matrix(0.265129,0.007689,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.265129,0.007689,-0.007247,0.249895,0,0);}
.m59_c00098{transform:matrix(0.266420,0.003996,-0.003750,0.249972,0,0);-ms-transform:matrix(0.266420,0.003996,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.266420,0.003996,-0.003750,0.249972,0,0);}
.m114_c00098{transform:matrix(0.267410,0.004011,-0.003750,0.249972,0,0);-ms-transform:matrix(0.267410,0.004011,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.267410,0.004011,-0.003750,0.249972,0,0);}
.m11e_c00098{transform:matrix(0.267800,0.004017,-0.003750,0.249972,0,0);-ms-transform:matrix(0.267800,0.004017,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.267800,0.004017,-0.003750,0.249972,0,0);}
.m109_c00098{transform:matrix(0.268570,0.004029,-0.003750,0.249972,0,0);-ms-transform:matrix(0.268570,0.004029,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.268570,0.004029,-0.003750,0.249972,0,0);}
.m1d5_c00098{transform:matrix(0.269739,0.006204,-0.005748,0.249934,0,0);-ms-transform:matrix(0.269739,0.006204,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.269739,0.006204,-0.005748,0.249934,0,0);}
.m1d6_c00098{transform:matrix(0.269939,0.006209,-0.005748,0.249934,0,0);-ms-transform:matrix(0.269939,0.006209,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.269939,0.006209,-0.005748,0.249934,0,0);}
.ma_c00098{transform:matrix(0.270130,0.004052,-0.003750,0.249972,0,0);-ms-transform:matrix(0.270130,0.004052,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.270130,0.004052,-0.003750,0.249972,0,0);}
.m58_c00098{transform:matrix(0.270905,0.004064,-0.003750,0.249972,0,0);-ms-transform:matrix(0.270905,0.004064,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.270905,0.004064,-0.003750,0.249972,0,0);}
.me3_c00098{transform:matrix(0.271494,0.004072,-0.003750,0.249972,0,0);-ms-transform:matrix(0.271494,0.004072,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.271494,0.004072,-0.003750,0.249972,0,0);}
.m43_c00098{transform:matrix(0.271554,0.004073,-0.003750,0.249972,0,0);-ms-transform:matrix(0.271554,0.004073,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.271554,0.004073,-0.003750,0.249972,0,0);}
.m195_c00098{transform:matrix(0.271571,0.007876,-0.007247,0.249895,0,0);-ms-transform:matrix(0.271571,0.007876,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.271571,0.007876,-0.007247,0.249895,0,0);}
.m1f0_c00098{transform:matrix(0.272129,0.005987,-0.005499,0.249940,0,0);-ms-transform:matrix(0.272129,0.005987,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.272129,0.005987,-0.005499,0.249940,0,0);}
.m12d_c00098{transform:matrix(0.272785,0.005728,-0.005249,0.249945,0,0);-ms-transform:matrix(0.272785,0.005728,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.272785,0.005728,-0.005249,0.249945,0,0);}
.m19a_c00098{transform:matrix(0.273610,0.007935,-0.007247,0.249895,0,0);-ms-transform:matrix(0.273610,0.007935,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.273610,0.007935,-0.007247,0.249895,0,0);}
.m1c9_c00098{transform:matrix(0.274312,0.006309,-0.005748,0.249934,0,0);-ms-transform:matrix(0.274312,0.006309,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.274312,0.006309,-0.005748,0.249934,0,0);}
.m122_c00098{transform:matrix(0.275204,0.004128,-0.003750,0.249972,0,0);-ms-transform:matrix(0.275204,0.004128,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.275204,0.004128,-0.003750,0.249972,0,0);}
.m2b_c00098{transform:matrix(0.275869,0.004138,-0.003750,0.249972,0,0);-ms-transform:matrix(0.275869,0.004138,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.275869,0.004138,-0.003750,0.249972,0,0);}
.maf_c00098{transform:matrix(0.277464,0.004162,-0.003750,0.249972,0,0);-ms-transform:matrix(0.277464,0.004162,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.277464,0.004162,-0.003750,0.249972,0,0);}
.m176_c00098{transform:matrix(0.277613,0.008051,-0.007247,0.249895,0,0);-ms-transform:matrix(0.277613,0.008051,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.277613,0.008051,-0.007247,0.249895,0,0);}
.m8d_c00098{transform:matrix(0.277694,0.004165,-0.003750,0.249972,0,0);-ms-transform:matrix(0.277694,0.004165,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.277694,0.004165,-0.003750,0.249972,0,0);}
.m1d7_c00098{transform:matrix(0.278571,0.006407,-0.005748,0.249934,0,0);-ms-transform:matrix(0.278571,0.006407,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.278571,0.006407,-0.005748,0.249934,0,0);}
.m187_c00098{transform:matrix(0.278993,0.008091,-0.007247,0.249895,0,0);-ms-transform:matrix(0.278993,0.008091,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.278993,0.008091,-0.007247,0.249895,0,0);}
.m134_c00098{transform:matrix(0.279213,0.005863,-0.005249,0.249945,0,0);-ms-transform:matrix(0.279213,0.005863,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.279213,0.005863,-0.005249,0.249945,0,0);}
.m96_c00098{transform:matrix(0.280608,0.004209,-0.003750,0.249972,0,0);-ms-transform:matrix(0.280608,0.004209,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.280608,0.004209,-0.003750,0.249972,0,0);}
.m97_c00098{transform:matrix(0.280793,0.004212,-0.003750,0.249972,0,0);-ms-transform:matrix(0.280793,0.004212,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.280793,0.004212,-0.003750,0.249972,0,0);}
.ma4_c00098{transform:matrix(0.281843,0.004228,-0.003750,0.249972,0,0);-ms-transform:matrix(0.281843,0.004228,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.281843,0.004228,-0.003750,0.249972,0,0);}
.m12f_c00098{transform:matrix(0.282563,0.005934,-0.005249,0.249945,0,0);-ms-transform:matrix(0.282563,0.005934,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.282563,0.005934,-0.005249,0.249945,0,0);}
.mad_c00098{transform:matrix(0.282998,0.004245,-0.003750,0.249972,0,0);-ms-transform:matrix(0.282998,0.004245,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.282998,0.004245,-0.003750,0.249972,0,0);}
.m5c_c00098{transform:matrix(0.284168,0.004263,-0.003750,0.249972,0,0);-ms-transform:matrix(0.284168,0.004263,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.284168,0.004263,-0.003750,0.249972,0,0);}
.md_c00098{transform:matrix(0.284868,0.004273,-0.003750,0.249972,0,0);-ms-transform:matrix(0.284868,0.004273,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.284868,0.004273,-0.003750,0.249972,0,0);}
.m1ab_c00098{transform:matrix(0.288547,0.008079,-0.006997,0.249902,0,0);-ms-transform:matrix(0.288547,0.008079,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.288547,0.008079,-0.006997,0.249902,0,0);}
.m30_c00098{transform:matrix(0.290267,0.004354,-0.003750,0.249972,0,0);-ms-transform:matrix(0.290267,0.004354,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.290267,0.004354,-0.003750,0.249972,0,0);}
.m1d2_c00098{transform:matrix(0.291678,0.006709,-0.005748,0.249934,0,0);-ms-transform:matrix(0.291678,0.006709,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.291678,0.006709,-0.005748,0.249934,0,0);}
.m1d9_c00098{transform:matrix(0.292288,0.006723,-0.005748,0.249934,0,0);-ms-transform:matrix(0.292288,0.006723,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.292288,0.006723,-0.005748,0.249934,0,0);}
.md9_c00098{transform:matrix(0.294002,0.004410,-0.003750,0.249972,0,0);-ms-transform:matrix(0.294002,0.004410,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.294002,0.004410,-0.003750,0.249972,0,0);}
.m6a_c00098{transform:matrix(0.298511,0.004478,-0.003750,0.249972,0,0);-ms-transform:matrix(0.298511,0.004478,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.298511,0.004478,-0.003750,0.249972,0,0);}
.m10d_c00098{transform:matrix(0.298701,0.004481,-0.003750,0.249972,0,0);-ms-transform:matrix(0.298701,0.004481,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.298701,0.004481,-0.003750,0.249972,0,0);}
.m1d1_c00098{transform:matrix(0.299316,0.006884,-0.005748,0.249934,0,0);-ms-transform:matrix(0.299316,0.006884,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.299316,0.006884,-0.005748,0.249934,0,0);}
.m14a_c00098{transform:matrix(0.299349,0.006286,-0.005249,0.249945,0,0);-ms-transform:matrix(0.299349,0.006286,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.299349,0.006286,-0.005249,0.249945,0,0);}
.m4a_c00098{transform:matrix(0.301031,0.004515,-0.003750,0.249972,0,0);-ms-transform:matrix(0.301031,0.004515,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.301031,0.004515,-0.003750,0.249972,0,0);}
.m69_c00098{transform:matrix(0.301951,0.004529,-0.003750,0.249972,0,0);-ms-transform:matrix(0.301951,0.004529,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.301951,0.004529,-0.003750,0.249972,0,0);}
.mda_c00098{transform:matrix(0.303076,0.004546,-0.003750,0.249972,0,0);-ms-transform:matrix(0.303076,0.004546,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.303076,0.004546,-0.003750,0.249972,0,0);}
.m102_c00098{transform:matrix(0.304896,0.004573,-0.003750,0.249972,0,0);-ms-transform:matrix(0.304896,0.004573,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.304896,0.004573,-0.003750,0.249972,0,0);}
.m77_c00098{transform:matrix(0.306805,0.004602,-0.003750,0.249972,0,0);-ms-transform:matrix(0.306805,0.004602,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.306805,0.004602,-0.003750,0.249972,0,0);}
.m68_c00098{transform:matrix(0.308665,0.004630,-0.003750,0.249972,0,0);-ms-transform:matrix(0.308665,0.004630,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.308665,0.004630,-0.003750,0.249972,0,0);}
.mb2_c00098{transform:matrix(0.309500,0.004643,-0.003750,0.249972,0,0);-ms-transform:matrix(0.309500,0.004643,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.309500,0.004643,-0.003750,0.249972,0,0);}
.mc3_c00098{transform:matrix(0.310570,0.004659,-0.003750,0.249972,0,0);-ms-transform:matrix(0.310570,0.004659,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.310570,0.004659,-0.003750,0.249972,0,0);}
.ma5_c00098{transform:matrix(0.312000,0.004680,-0.003750,0.249972,0,0);-ms-transform:matrix(0.312000,0.004680,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.312000,0.004680,-0.003750,0.249972,0,0);}
.mdb_c00098{transform:matrix(0.314005,0.004710,-0.003750,0.249972,0,0);-ms-transform:matrix(0.314005,0.004710,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.314005,0.004710,-0.003750,0.249972,0,0);}
.mb6_c00098{transform:matrix(0.314130,0.004712,-0.003750,0.249972,0,0);-ms-transform:matrix(0.314130,0.004712,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.314130,0.004712,-0.003750,0.249972,0,0);}
.m1f9_c00098{transform:matrix(0.314317,0.007858,-0.006248,0.249922,0,0);-ms-transform:matrix(0.314317,0.007858,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.314317,0.007858,-0.006248,0.249922,0,0);}
.m74_c00098{transform:matrix(0.315410,0.004731,-0.003750,0.249972,0,0);-ms-transform:matrix(0.315410,0.004731,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.315410,0.004731,-0.003750,0.249972,0,0);}
.mb_c00098{transform:matrix(0.318714,0.004781,-0.003750,0.249972,0,0);-ms-transform:matrix(0.318714,0.004781,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.318714,0.004781,-0.003750,0.249972,0,0);}
.mdc_c00098{transform:matrix(0.321144,0.004817,-0.003750,0.249972,0,0);-ms-transform:matrix(0.321144,0.004817,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.321144,0.004817,-0.003750,0.249972,0,0);}
.m53_c00098{transform:matrix(0.324039,0.004861,-0.003750,0.249972,0,0);-ms-transform:matrix(0.324039,0.004861,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.324039,0.004861,-0.003750,0.249972,0,0);}
.m8a_c00098{transform:matrix(0.327873,0.004918,-0.003750,0.249972,0,0);-ms-transform:matrix(0.327873,0.004918,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.327873,0.004918,-0.003750,0.249972,0,0);}
.m9_c00098{transform:matrix(0.333153,0.004997,-0.003750,0.249972,0,0);-ms-transform:matrix(0.333153,0.004997,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.333153,0.004997,-0.003750,0.249972,0,0);}
.m10_c00098{transform:matrix(0.337847,0.005068,-0.003750,0.249972,0,0);-ms-transform:matrix(0.337847,0.005068,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.337847,0.005068,-0.003750,0.249972,0,0);}
.m76_c00098{transform:matrix(0.342092,0.005131,-0.003750,0.249972,0,0);-ms-transform:matrix(0.342092,0.005131,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.342092,0.005131,-0.003750,0.249972,0,0);}
.m34_c00098{transform:matrix(0.351610,0.005274,-0.003750,0.249972,0,0);-ms-transform:matrix(0.351610,0.005274,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.351610,0.005274,-0.003750,0.249972,0,0);}
.mc2_c00098{transform:matrix(0.353860,0.005308,-0.003750,0.249972,0,0);-ms-transform:matrix(0.353860,0.005308,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.353860,0.005308,-0.003750,0.249972,0,0);}
.m139_c00098{transform:matrix(0.354112,0.007436,-0.005249,0.249945,0,0);-ms-transform:matrix(0.354112,0.007436,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.354112,0.007436,-0.005249,0.249945,0,0);}
.m107_c00098{transform:matrix(0.354735,0.005321,-0.003750,0.249972,0,0);-ms-transform:matrix(0.354735,0.005321,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.354735,0.005321,-0.003750,0.249972,0,0);}
.m1b_c00098{transform:matrix(0.364774,0.005472,-0.003750,0.249972,0,0);-ms-transform:matrix(0.364774,0.005472,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.364774,0.005472,-0.003750,0.249972,0,0);}
.m7b_c00098{transform:matrix(0.375658,0.005635,-0.003750,0.249972,0,0);-ms-transform:matrix(0.375658,0.005635,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.375658,0.005635,-0.003750,0.249972,0,0);}
.mcd_c00098{transform:matrix(0.376013,0.005640,-0.003750,0.249972,0,0);-ms-transform:matrix(0.376013,0.005640,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.376013,0.005640,-0.003750,0.249972,0,0);}
.ma6_c00098{transform:matrix(0.381837,0.005728,-0.003750,0.249972,0,0);-ms-transform:matrix(0.381837,0.005728,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.381837,0.005728,-0.003750,0.249972,0,0);}
.m6c_c00098{transform:matrix(0.383297,0.005749,-0.003750,0.249972,0,0);-ms-transform:matrix(0.383297,0.005749,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.383297,0.005749,-0.003750,0.249972,0,0);}
.m71_c00098{transform:matrix(0.386172,0.005793,-0.003750,0.249972,0,0);-ms-transform:matrix(0.386172,0.005793,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.386172,0.005793,-0.003750,0.249972,0,0);}
.m0_c00098{transform:matrix(0.387726,0.005816,-0.003750,0.249972,0,0);-ms-transform:matrix(0.387726,0.005816,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.387726,0.005816,-0.003750,0.249972,0,0);}
.m46_c00098{transform:matrix(0.392581,0.005889,-0.003750,0.249972,0,0);-ms-transform:matrix(0.392581,0.005889,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.392581,0.005889,-0.003750,0.249972,0,0);}
.m1bc_c00098{transform:matrix(0.394971,0.009084,-0.005748,0.249934,0,0);-ms-transform:matrix(0.394971,0.009084,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.394971,0.009084,-0.005748,0.249934,0,0);}
.mf4_c00098{transform:matrix(0.397895,0.005968,-0.003750,0.249972,0,0);-ms-transform:matrix(0.397895,0.005968,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.397895,0.005968,-0.003750,0.249972,0,0);}
.m72_c00098{transform:matrix(0.400900,0.006013,-0.003750,0.249972,0,0);-ms-transform:matrix(0.400900,0.006013,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.400900,0.006013,-0.003750,0.249972,0,0);}
.m19_c00098{transform:matrix(0.405474,0.006082,-0.003750,0.249972,0,0);-ms-transform:matrix(0.405474,0.006082,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.405474,0.006082,-0.003750,0.249972,0,0);}
.m5a_c00098{transform:matrix(0.414963,0.006224,-0.003750,0.249972,0,0);-ms-transform:matrix(0.414963,0.006224,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.414963,0.006224,-0.003750,0.249972,0,0);}
.m85_c00098{transform:matrix(0.417548,0.006263,-0.003750,0.249972,0,0);-ms-transform:matrix(0.417548,0.006263,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.417548,0.006263,-0.003750,0.249972,0,0);}
.me1_c00098{transform:matrix(0.419758,0.006296,-0.003750,0.249972,0,0);-ms-transform:matrix(0.419758,0.006296,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.419758,0.006296,-0.003750,0.249972,0,0);}
.m118_c00098{transform:matrix(0.422163,0.006332,-0.003750,0.249972,0,0);-ms-transform:matrix(0.422163,0.006332,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.422163,0.006332,-0.003750,0.249972,0,0);}
.m54_c00098{transform:matrix(0.426367,0.006396,-0.003750,0.249972,0,0);-ms-transform:matrix(0.426367,0.006396,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.426367,0.006396,-0.003750,0.249972,0,0);}
.m98_c00098{transform:matrix(0.448855,0.006733,-0.003750,0.249972,0,0);-ms-transform:matrix(0.448855,0.006733,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.448855,0.006733,-0.003750,0.249972,0,0);}
.mfd_c00098{transform:matrix(0.451949,0.006779,-0.003750,0.249972,0,0);-ms-transform:matrix(0.451949,0.006779,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.451949,0.006779,-0.003750,0.249972,0,0);}
.ma2_c00098{transform:matrix(0.452189,0.006783,-0.003750,0.249972,0,0);-ms-transform:matrix(0.452189,0.006783,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.452189,0.006783,-0.003750,0.249972,0,0);}
.m94_c00098{transform:matrix(0.453259,0.006799,-0.003750,0.249972,0,0);-ms-transform:matrix(0.453259,0.006799,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.453259,0.006799,-0.003750,0.249972,0,0);}
.m31_c00098{transform:matrix(0.459448,0.006892,-0.003750,0.249972,0,0);-ms-transform:matrix(0.459448,0.006892,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.459448,0.006892,-0.003750,0.249972,0,0);}
.m108_c00098{transform:matrix(0.481531,0.007223,-0.003750,0.249972,0,0);-ms-transform:matrix(0.481531,0.007223,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.481531,0.007223,-0.003750,0.249972,0,0);}
.m1_c00098{transform:matrix(0.482661,0.007240,-0.003750,0.249972,0,0);-ms-transform:matrix(0.482661,0.007240,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.482661,0.007240,-0.003750,0.249972,0,0);}
.ma8_c00098{transform:matrix(0.550528,0.008258,-0.003750,0.249972,0,0);-ms-transform:matrix(0.550528,0.008258,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.550528,0.008258,-0.003750,0.249972,0,0);}
.m39_c00098{transform:matrix(0.554823,0.008322,-0.003750,0.249972,0,0);-ms-transform:matrix(0.554823,0.008322,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.554823,0.008322,-0.003750,0.249972,0,0);}
.m87_c00098{transform:matrix(0.571741,0.008576,-0.003750,0.249972,0,0);-ms-transform:matrix(0.571741,0.008576,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.571741,0.008576,-0.003750,0.249972,0,0);}
.mfe_c00098{transform:matrix(0.588629,0.008829,-0.003750,0.249972,0,0);-ms-transform:matrix(0.588629,0.008829,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.588629,0.008829,-0.003750,0.249972,0,0);}
.me6_c00098{transform:matrix(0.653501,0.009803,-0.003750,0.249972,0,0);-ms-transform:matrix(0.653501,0.009803,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.653501,0.009803,-0.003750,0.249972,0,0);}
.m16_c00098{transform:matrix(0.729388,0.010941,-0.003750,0.249972,0,0);-ms-transform:matrix(0.729388,0.010941,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.729388,0.010941,-0.003750,0.249972,0,0);}
.m6f_c00098{transform:matrix(0.771948,0.011579,-0.003750,0.249972,0,0);-ms-transform:matrix(0.771948,0.011579,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.771948,0.011579,-0.003750,0.249972,0,0);}
.m1fb_c00098{transform:matrix(0.804600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.804600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.804600,0.000000,0.000000,0.250000,0,0);}
.m32_c00098{transform:matrix(0.885135,0.013277,-0.003750,0.249972,0,0);-ms-transform:matrix(0.885135,0.013277,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.885135,0.013277,-0.003750,0.249972,0,0);}
.mfc_c00098{transform:matrix(0.955952,0.014339,-0.003750,0.249972,0,0);-ms-transform:matrix(0.955952,0.014339,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.955952,0.014339,-0.003750,0.249972,0,0);}
.m1fc_c00098{transform:matrix(1.282940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.282940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.282940,0.000000,0.000000,0.250000,0,0);}
.m1fa_c00098{transform:matrix(1.290292,0.032257,-0.006248,0.249922,0,0);-ms-transform:matrix(1.290292,0.032257,-0.006248,0.249922,0,0);-webkit-transform:matrix(1.290292,0.032257,-0.006248,0.249922,0,0);}
.m52_c00098{transform:matrix(1.304628,0.019569,-0.003750,0.249972,0,0);-ms-transform:matrix(1.304628,0.019569,-0.003750,0.249972,0,0);-webkit-transform:matrix(1.304628,0.019569,-0.003750,0.249972,0,0);}
.m15_c00098{transform:matrix(3.482858,0.052243,-0.003750,0.249972,0,0);-ms-transform:matrix(3.482858,0.052243,-0.003750,0.249972,0,0);-webkit-transform:matrix(3.482858,0.052243,-0.003750,0.249972,0,0);}
.m70_c00098{transform:matrix(4.025317,0.060380,-0.003750,0.249972,0,0);-ms-transform:matrix(4.025317,0.060380,-0.003750,0.249972,0,0);-webkit-transform:matrix(4.025317,0.060380,-0.003750,0.249972,0,0);}
.m1f8_c00098{transform:matrix(4.418849,0.110471,-0.006248,0.249922,0,0);-ms-transform:matrix(4.418849,0.110471,-0.006248,0.249922,0,0);-webkit-transform:matrix(4.418849,0.110471,-0.006248,0.249922,0,0);}
.v0_c00098{vertical-align:0.000000px;}
.ls0_c00098{letter-spacing:0.000000px;}
.sc__c00098{text-shadow:none;}
.sc0_c00098{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__c00098{-webkit-text-stroke:0px transparent;}
.sc0_c00098{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00098{word-spacing:0.000000px;}
.fc0_c00098{color:transparent;}
.fs10_c00098{font-size:24.000000px;}
.fsd_c00098{font-size:42.011108px;}
.fs0_c00098{font-size:48.005400px;}
.fs7_c00098{font-size:48.010583px;}
.fsc_c00098{font-size:48.012694px;}
.fsa_c00098{font-size:48.018812px;}
.fs9_c00098{font-size:48.020180px;}
.fs8_c00098{font-size:54.011906px;}
.fsb_c00098{font-size:54.021164px;}
.fs4_c00098{font-size:60.006750px;}
.fse_c00098{font-size:60.014518px;}
.fsf_c00098{font-size:60.018747px;}
.fs1_c00098{font-size:66.007425px;}
.fs2_c00098{font-size:72.008100px;}
.fs6_c00098{font-size:78.008775px;}
.fs5_c00098{font-size:90.010124px;}
.fs3_c00098{font-size:198.022274px;}
.y0_c00098{bottom:0.000000px;}
.y213_c00098{bottom:96.136988px;}
.y212_c00098{bottom:96.313125px;}
.y211_c00098{bottom:104.893088px;}
.y210_c00098{bottom:109.620000px;}
.y20f_c00098{bottom:123.473169px;}
.y20e_c00098{bottom:124.792179px;}
.y20d_c00098{bottom:126.152241px;}
.y20c_c00098{bottom:127.554906px;}
.y20b_c00098{bottom:129.135210px;}
.y20a_c00098{bottom:129.674694px;}
.y209_c00098{bottom:130.846557px;}
.y208_c00098{bottom:131.344098px;}
.y207_c00098{bottom:131.773098px;}
.y206_c00098{bottom:133.116000px;}
.y205_c00098{bottom:148.654810px;}
.y203_c00098{bottom:148.655168px;}
.y204_c00098{bottom:148.655331px;}
.y202_c00098{bottom:148.809390px;}
.y201_c00098{bottom:149.617984px;}
.y200_c00098{bottom:150.571683px;}
.y1ff_c00098{bottom:151.270207px;}
.y1fe_c00098{bottom:151.717767px;}
.y1fd_c00098{bottom:153.317775px;}
.y1fc_c00098{bottom:155.268951px;}
.y1fb_c00098{bottom:155.715613px;}
.y1fa_c00098{bottom:158.385720px;}
.y1f9_c00098{bottom:158.917440px;}
.y1f8_c00098{bottom:159.356409px;}
.y1f7_c00098{bottom:160.725133px;}
.y1f6_c00098{bottom:162.183039px;}
.y1f5_c00098{bottom:162.675999px;}
.y1f4_c00098{bottom:162.933346px;}
.y1f2_c00098{bottom:162.949786px;}
.y1f1_c00098{bottom:163.449715px;}
.y1f3_c00098{bottom:164.697415px;}
.y1f0_c00098{bottom:164.966476px;}
.y1ef_c00098{bottom:165.729342px;}
.y1ee_c00098{bottom:167.565584px;}
.y1ed_c00098{bottom:168.454060px;}
.y1ec_c00098{bottom:169.029405px;}
.y1eb_c00098{bottom:170.657098px;}
.y1ea_c00098{bottom:171.694819px;}
.y1e9_c00098{bottom:172.051576px;}
.y1e8_c00098{bottom:172.510675px;}
.y1e7_c00098{bottom:173.270608px;}
.y1e6_c00098{bottom:174.760132px;}
.y1e5_c00098{bottom:175.160514px;}
.y1e4_c00098{bottom:176.159923px;}
.y1e3_c00098{bottom:176.516956px;}
.y1e0_c00098{bottom:177.779872px;}
.y1e2_c00098{bottom:178.175992px;}
.y1df_c00098{bottom:178.289092px;}
.y1e1_c00098{bottom:179.011203px;}
.y1de_c00098{bottom:179.413240px;}
.y1dd_c00098{bottom:179.797432px;}
.y1dc_c00098{bottom:180.406150px;}
.y1db_c00098{bottom:180.841023px;}
.y1da_c00098{bottom:183.426557px;}
.y1d9_c00098{bottom:183.905037px;}
.y1d8_c00098{bottom:184.325937px;}
.y1d7_c00098{bottom:185.538267px;}
.y1d6_c00098{bottom:185.928669px;}
.y1d5_c00098{bottom:187.482756px;}
.y1d4_c00098{bottom:187.794325px;}
.y214_c00098{bottom:188.460000px;}
.y1d3_c00098{bottom:188.979538px;}
.y1d2_c00098{bottom:190.271598px;}
.y1d1_c00098{bottom:190.718890px;}
.y1d0_c00098{bottom:191.214414px;}
.y1cd_c00098{bottom:192.288882px;}
.y1cf_c00098{bottom:192.954594px;}
.y1ce_c00098{bottom:193.594500px;}
.y1cc_c00098{bottom:193.625586px;}
.y1cb_c00098{bottom:194.248014px;}
.y1ca_c00098{bottom:194.753862px;}
.y1c9_c00098{bottom:196.484886px;}
.y1c8_c00098{bottom:197.170734px;}
.y1c7_c00098{bottom:198.915684px;}
.y1c6_c00098{bottom:200.445390px;}
.y1c5_c00098{bottom:201.467442px;}
.y1c4_c00098{bottom:202.144920px;}
.y1c3_c00098{bottom:203.964936px;}
.y1c2_c00098{bottom:204.334398px;}
.y1c1_c00098{bottom:204.788640px;}
.y1c0_c00098{bottom:205.171722px;}
.y1bb_c00098{bottom:205.541886px;}
.y1bf_c00098{bottom:205.779984px;}
.y1be_c00098{bottom:206.130312px;}
.y1bd_c00098{bottom:206.576646px;}
.y1ba_c00098{bottom:206.637876px;}
.y1b9_c00098{bottom:207.891912px;}
.y1bc_c00098{bottom:208.172712px;}
.y1b8_c00098{bottom:208.521912px;}
.y1b7_c00098{bottom:210.503136px;}
.y1b6_c00098{bottom:210.970176px;}
.y1b5_c00098{bottom:211.703622px;}
.y1b4_c00098{bottom:212.144034px;}
.y1b3_c00098{bottom:212.838000px;}
.y1b2_c00098{bottom:214.659222px;}
.y1b1_c00098{bottom:215.405480px;}
.y1b0_c00098{bottom:216.448626px;}
.y1af_c00098{bottom:217.674862px;}
.y1ae_c00098{bottom:218.230743px;}
.y1ad_c00098{bottom:219.371178px;}
.y1ac_c00098{bottom:219.798400px;}
.y1ab_c00098{bottom:220.165884px;}
.y1aa_c00098{bottom:220.873831px;}
.y1a7_c00098{bottom:221.505270px;}
.y1a9_c00098{bottom:221.905818px;}
.y1a6_c00098{bottom:221.958323px;}
.y1a8_c00098{bottom:222.207841px;}
.y1a5_c00098{bottom:223.205250px;}
.y1a4_c00098{bottom:223.620979px;}
.y1a3_c00098{bottom:225.532282px;}
.y1a2_c00098{bottom:225.851355px;}
.y1a1_c00098{bottom:231.411394px;}
.y1a0_c00098{bottom:233.275500px;}
.y19f_c00098{bottom:236.152449px;}
.y19e_c00098{bottom:237.092301px;}
.y19d_c00098{bottom:238.727027px;}
.y19c_c00098{bottom:239.332743px;}
.y19b_c00098{bottom:240.296064px;}
.y19a_c00098{bottom:241.382169px;}
.y199_c00098{bottom:242.533766px;}
.y198_c00098{bottom:243.597446px;}
.y197_c00098{bottom:243.790222px;}
.y17d_c00098{bottom:244.641298px;}
.y17c_c00098{bottom:245.092384px;}
.y17b_c00098{bottom:245.935213px;}
.y17a_c00098{bottom:246.366399px;}
.y179_c00098{bottom:247.509927px;}
.y178_c00098{bottom:247.807350px;}
.y177_c00098{bottom:248.782996px;}
.y196_c00098{bottom:249.326798px;}
.y176_c00098{bottom:250.820463px;}
.y195_c00098{bottom:250.833404px;}
.y194_c00098{bottom:252.512751px;}
.y193_c00098{bottom:253.390053px;}
.y192_c00098{bottom:254.041107px;}
.y191_c00098{bottom:254.601245px;}
.y175_c00098{bottom:256.857339px;}
.y174_c00098{bottom:257.334217px;}
.y173_c00098{bottom:258.190545px;}
.y172_c00098{bottom:258.973194px;}
.y171_c00098{bottom:259.369055px;}
.y170_c00098{bottom:259.601461px;}
.y16f_c00098{bottom:260.159862px;}
.y16e_c00098{bottom:260.475996px;}
.y16d_c00098{bottom:260.816133px;}
.y16c_c00098{bottom:261.128046px;}
.y16b_c00098{bottom:261.956149px;}
.y16a_c00098{bottom:262.210165px;}
.y169_c00098{bottom:262.562808px;}
.y168_c00098{bottom:262.874816px;}
.y167_c00098{bottom:263.078904px;}
.y166_c00098{bottom:263.407921px;}
.y165_c00098{bottom:264.241695px;}
.y190_c00098{bottom:264.334323px;}
.y18f_c00098{bottom:264.787847px;}
.y164_c00098{bottom:265.052568px;}
.y18e_c00098{bottom:265.346334px;}
.y163_c00098{bottom:265.402974px;}
.y18d_c00098{bottom:267.136460px;}
.y18c_c00098{bottom:268.854551px;}
.y162_c00098{bottom:269.180185px;}
.y18b_c00098{bottom:269.186385px;}
.y161_c00098{bottom:269.639707px;}
.y160_c00098{bottom:271.114065px;}
.y15f_c00098{bottom:272.594439px;}
.y15e_c00098{bottom:272.945191px;}
.y15d_c00098{bottom:273.354408px;}
.y15c_c00098{bottom:274.466799px;}
.y15b_c00098{bottom:274.755433px;}
.y15a_c00098{bottom:275.883858px;}
.y159_c00098{bottom:276.393087px;}
.y158_c00098{bottom:278.004438px;}
.y18a_c00098{bottom:278.228442px;}
.y189_c00098{bottom:278.653568px;}
.y188_c00098{bottom:279.068819px;}
.y157_c00098{bottom:279.127696px;}
.y156_c00098{bottom:279.717471px;}
.y187_c00098{bottom:279.920331px;}
.y186_c00098{bottom:282.350676px;}
.y185_c00098{bottom:282.826523px;}
.y184_c00098{bottom:283.501643px;}
.y155_c00098{bottom:284.577306px;}
.y154_c00098{bottom:285.210424px;}
.y153_c00098{bottom:285.588076px;}
.y152_c00098{bottom:287.591398px;}
.y151_c00098{bottom:288.024376px;}
.y150_c00098{bottom:288.392094px;}
.y14f_c00098{bottom:289.737621px;}
.y14e_c00098{bottom:290.087289px;}
.y14d_c00098{bottom:292.215241px;}
.y14c_c00098{bottom:292.517824px;}
.y183_c00098{bottom:292.934151px;}
.y14b_c00098{bottom:293.091006px;}
.y14a_c00098{bottom:293.361416px;}
.y182_c00098{bottom:293.388335px;}
.y149_c00098{bottom:294.300393px;}
.y181_c00098{bottom:295.252005px;}
.y180_c00098{bottom:295.691225px;}
.y17f_c00098{bottom:296.506110px;}
.y17e_c00098{bottom:297.547500px;}
.y148_c00098{bottom:297.986223px;}
.y147_c00098{bottom:298.285725px;}
.y146_c00098{bottom:299.137453px;}
.y145_c00098{bottom:300.237654px;}
.y144_c00098{bottom:300.561254px;}
.y143_c00098{bottom:300.917424px;}
.y142_c00098{bottom:302.058259px;}
.y141_c00098{bottom:302.443032px;}
.y140_c00098{bottom:302.852248px;}
.y13f_c00098{bottom:303.935691px;}
.y13e_c00098{bottom:304.253148px;}
.y13d_c00098{bottom:305.579991px;}
.y13c_c00098{bottom:306.516045px;}
.y13b_c00098{bottom:306.816618px;}
.y13a_c00098{bottom:307.348527px;}
.y138_c00098{bottom:307.361100px;}
.y137_c00098{bottom:308.565817px;}
.y139_c00098{bottom:308.613000px;}
.y136_c00098{bottom:308.993880px;}
.y135_c00098{bottom:310.353352px;}
.y134_c00098{bottom:310.619985px;}
.y133_c00098{bottom:311.819512px;}
.y132_c00098{bottom:313.099627px;}
.y131_c00098{bottom:313.603357px;}
.y130_c00098{bottom:314.315820px;}
.y12f_c00098{bottom:315.751792px;}
.y12e_c00098{bottom:318.050197px;}
.y12d_c00098{bottom:318.546787px;}
.y12c_c00098{bottom:318.787860px;}
.y12b_c00098{bottom:320.048505px;}
.y12a_c00098{bottom:320.657242px;}
.y127_c00098{bottom:321.790110px;}
.y126_c00098{bottom:322.138342px;}
.y129_c00098{bottom:322.813200px;}
.y128_c00098{bottom:323.157187px;}
.y125_c00098{bottom:324.088042px;}
.y124_c00098{bottom:325.038255px;}
.y123_c00098{bottom:325.633380px;}
.y122_c00098{bottom:326.776980px;}
.y121_c00098{bottom:327.428977px;}
.y120_c00098{bottom:328.820970px;}
.y11f_c00098{bottom:329.403405px;}
.y11e_c00098{bottom:331.198710px;}
.y11d_c00098{bottom:331.762770px;}
.y11c_c00098{bottom:333.307545px;}
.y11b_c00098{bottom:333.820417px;}
.y11a_c00098{bottom:334.092127px;}
.y119_c00098{bottom:336.387030px;}
.y118_c00098{bottom:337.539592px;}
.y117_c00098{bottom:338.010105px;}
.y116_c00098{bottom:349.969027px;}
.y115_c00098{bottom:355.180560px;}
.y114_c00098{bottom:359.131867px;}
.y113_c00098{bottom:363.210255px;}
.y112_c00098{bottom:367.699920px;}
.y111_c00098{bottom:368.836725px;}
.y110_c00098{bottom:369.057705px;}
.y10f_c00098{bottom:380.273797px;}
.y10e_c00098{bottom:381.004072px;}
.y10d_c00098{bottom:382.754137px;}
.y10c_c00098{bottom:384.058132px;}
.y10b_c00098{bottom:387.557730px;}
.y10a_c00098{bottom:387.974872px;}
.y109_c00098{bottom:389.434185px;}
.y108_c00098{bottom:390.171105px;}
.y107_c00098{bottom:390.813127px;}
.y106_c00098{bottom:391.228590px;}
.y105_c00098{bottom:392.682262px;}
.y104_c00098{bottom:393.135142px;}
.y103_c00098{bottom:394.738942px;}
.y102_c00098{bottom:394.981027px;}
.y101_c00098{bottom:398.795190px;}
.y100_c00098{bottom:400.690605px;}
.yff_c00098{bottom:401.494462px;}
.yfe_c00098{bottom:402.902235px;}
.yfd_c00098{bottom:403.763857px;}
.yfc_c00098{bottom:404.325645px;}
.yfb_c00098{bottom:405.118065px;}
.yfa_c00098{bottom:406.362427px;}
.yf9_c00098{bottom:406.967580px;}
.yf8_c00098{bottom:407.444460px;}
.yf7_c00098{bottom:409.072035px;}
.yf6_c00098{bottom:410.173477px;}
.yf5_c00098{bottom:411.182377px;}
.yf4_c00098{bottom:414.271845px;}
.yf3_c00098{bottom:416.920012px;}
.yf2_c00098{bottom:419.408662px;}
.yf1_c00098{bottom:420.315255px;}
.yf0_c00098{bottom:421.606087px;}
.yef_c00098{bottom:422.252535px;}
.yee_c00098{bottom:422.890020px;}
.yed_c00098{bottom:424.372575px;}
.yec_c00098{bottom:425.395672px;}
.yeb_c00098{bottom:426.103597px;}
.yea_c00098{bottom:427.551810px;}
.ye7_c00098{bottom:427.592415px;}
.ye9_c00098{bottom:428.126452px;}
.ye8_c00098{bottom:429.542325px;}
.ye6_c00098{bottom:431.794927px;}
.ye5_c00098{bottom:432.009585px;}
.ye4_c00098{bottom:433.610580px;}
.ye3_c00098{bottom:434.250360px;}
.ye2_c00098{bottom:436.930155px;}
.ye1_c00098{bottom:439.129080px;}
.ye0_c00098{bottom:439.763017px;}
.ydf_c00098{bottom:440.427975px;}
.yde_c00098{bottom:441.229830px;}
.ydd_c00098{bottom:441.893392px;}
.ydc_c00098{bottom:442.918732px;}
.ydb_c00098{bottom:443.626567px;}
.yda_c00098{bottom:444.762375px;}
.yd7_c00098{bottom:444.971722px;}
.yd9_c00098{bottom:445.427625px;}
.yd8_c00098{bottom:446.817510px;}
.yd6_c00098{bottom:449.319937px;}
.yd5_c00098{bottom:451.576342px;}
.yd4_c00098{bottom:454.474815px;}
.yd3_c00098{bottom:455.356117px;}
.yd2_c00098{bottom:456.672150px;}
.yd1_c00098{bottom:457.311637px;}
.yd0_c00098{bottom:457.940497px;}
.ycf_c00098{bottom:458.734560px;}
.yce_c00098{bottom:459.432060px;}
.ycd_c00098{bottom:460.461915px;}
.ycc_c00098{bottom:461.157150px;}
.yc9_c00098{bottom:462.389280px;}
.ycb_c00098{bottom:462.529222px;}
.yca_c00098{bottom:464.374185px;}
.yc8_c00098{bottom:466.611712px;}
.yc7_c00098{bottom:471.766770px;}
.yc6_c00098{bottom:472.655032px;}
.yc5_c00098{bottom:473.971065px;}
.yc4_c00098{bottom:474.617602px;}
.yc3_c00098{bottom:475.233390px;}
.yc2_c00098{bottom:476.015415px;}
.yc1_c00098{bottom:476.769225px;}
.yc0_c00098{bottom:477.760830px;}
.ybf_c00098{bottom:478.468755px;}
.ybe_c00098{bottom:479.400255px;}
.ybd_c00098{bottom:479.761267px;}
.ybb_c00098{bottom:480.168495px;}
.ybc_c00098{bottom:481.927672px;}
.yba_c00098{bottom:482.224995px;}
.yb9_c00098{bottom:484.441800px;}
.yb8_c00098{bottom:485.934330px;}
.yb7_c00098{bottom:486.629565px;}
.yb6_c00098{bottom:487.257952px;}
.yb5_c00098{bottom:488.839920px;}
.yb4_c00098{bottom:489.578505px;}
.yb3_c00098{bottom:491.789940px;}
.yb2_c00098{bottom:492.429517px;}
.yb1_c00098{bottom:493.084140px;}
.yb0_c00098{bottom:493.890622px;}
.yaf_c00098{bottom:494.593380px;}
.yae_c00098{bottom:495.641385px;}
.yad_c00098{bottom:496.280602px;}
.yac_c00098{bottom:497.217742px;}
.yab_c00098{bottom:497.654340px;}
.ya9_c00098{bottom:499.411207px;}
.yaa_c00098{bottom:499.750912px;}
.ya8_c00098{bottom:501.439500px;}
.ya7_c00098{bottom:506.145990px;}
.ya6_c00098{bottom:506.956342px;}
.ya5_c00098{bottom:508.152937px;}
.ya4_c00098{bottom:508.736835px;}
.ya3_c00098{bottom:509.344837px;}
.ya2_c00098{bottom:510.105667px;}
.ya1_c00098{bottom:510.735442px;}
.ya0_c00098{bottom:511.700212px;}
.y9f_c00098{bottom:512.260470px;}
.y9e_c00098{bottom:513.173610px;}
.y9d_c00098{bottom:513.673950px;}
.y9b_c00098{bottom:514.645605px;}
.y9c_c00098{bottom:515.412832px;}
.y9a_c00098{bottom:516.771420px;}
.y99_c00098{bottom:519.018592px;}
.y98_c00098{bottom:524.496592px;}
.y97_c00098{bottom:525.036622px;}
.y96_c00098{bottom:526.359795px;}
.y95_c00098{bottom:526.999192px;}
.y94_c00098{bottom:527.589240px;}
.y93_c00098{bottom:528.403605px;}
.y92_c00098{bottom:529.124130px;}
.y91_c00098{bottom:529.908015px;}
.y90_c00098{bottom:530.375070px;}
.y8f_c00098{bottom:530.850255px;}
.y8e_c00098{bottom:532.286880px;}
.y8d_c00098{bottom:534.315555px;}
.y8c_c00098{bottom:535.338937px;}
.y8b_c00098{bottom:537.493080px;}
.y8a_c00098{bottom:550.173127px;}
.y88_c00098{bottom:551.671552px;}
.y87_c00098{bottom:551.899282px;}
.y89_c00098{bottom:552.138097px;}
.y86_c00098{bottom:555.760612px;}
.y85_c00098{bottom:556.476622px;}
.y84_c00098{bottom:556.967752px;}
.y83_c00098{bottom:558.681097px;}
.y82_c00098{bottom:558.990787px;}
.y81_c00098{bottom:560.457802px;}
.y80_c00098{bottom:562.109940px;}
.y7f_c00098{bottom:562.708522px;}
.y7e_c00098{bottom:563.601682px;}
.y7d_c00098{bottom:564.299070px;}
.y7c_c00098{bottom:565.540462px;}
.y7b_c00098{bottom:565.987702px;}
.y7a_c00098{bottom:566.970165px;}
.y79_c00098{bottom:567.517807px;}
.y78_c00098{bottom:569.455560px;}
.y76_c00098{bottom:569.456835px;}
.y77_c00098{bottom:571.043685px;}
.y75_c00098{bottom:571.876440px;}
.y74_c00098{bottom:573.527880px;}
.y73_c00098{bottom:575.110815px;}
.y72_c00098{bottom:579.375697px;}
.y71_c00098{bottom:580.666125px;}
.y70_c00098{bottom:582.045990px;}
.y6f_c00098{bottom:582.810697px;}
.y6e_c00098{bottom:585.037838px;}
.y6d_c00098{bottom:585.047587px;}
.y6c_c00098{bottom:587.011147px;}
.y6a_c00098{bottom:587.268007px;}
.y6b_c00098{bottom:588.595387px;}
.y69_c00098{bottom:590.968920px;}
.y68_c00098{bottom:592.409250px;}
.y67_c00098{bottom:592.900942px;}
.y66_c00098{bottom:593.484210px;}
.y65_c00098{bottom:595.148475px;}
.y64_c00098{bottom:596.799780px;}
.y63_c00098{bottom:597.329632px;}
.y62_c00098{bottom:598.019430px;}
.y61_c00098{bottom:598.955917px;}
.y60_c00098{bottom:599.641267px;}
.y5f_c00098{bottom:600.354382px;}
.y5e_c00098{bottom:601.299135px;}
.y5d_c00098{bottom:602.352870px;}
.y5c_c00098{bottom:603.362377px;}
.y5b_c00098{bottom:604.570957px;}
.y58_c00098{bottom:604.770285px;}
.y5a_c00098{bottom:604.817580px;}
.y49_c00098{bottom:604.866030px;}
.y59_c00098{bottom:606.410512px;}
.y57_c00098{bottom:607.399508px;}
.y56_c00098{bottom:609.710025px;}
.y55_c00098{bottom:610.918312px;}
.y54_c00098{bottom:614.732355px;}
.y53_c00098{bottom:616.945170px;}
.y52_c00098{bottom:617.308065px;}
.y48_c00098{bottom:617.453010px;}
.y51_c00098{bottom:617.803942px;}
.y50_c00098{bottom:618.265260px;}
.y4f_c00098{bottom:619.232220px;}
.y47_c00098{bottom:620.536650px;}
.y4e_c00098{bottom:621.149100px;}
.y4d_c00098{bottom:621.598942px;}
.y4c_c00098{bottom:622.131465px;}
.y45_c00098{bottom:622.352475px;}
.y4b_c00098{bottom:623.826262px;}
.y46_c00098{bottom:623.984272px;}
.y4a_c00098{bottom:625.578975px;}
.y44_c00098{bottom:626.045707px;}
.y43_c00098{bottom:627.491677px;}
.y42_c00098{bottom:627.995880px;}
.y41_c00098{bottom:628.566457px;}
.y40_c00098{bottom:630.243232px;}
.y3f_c00098{bottom:631.883130px;}
.y3e_c00098{bottom:632.399370px;}
.y3d_c00098{bottom:633.058417px;}
.y3c_c00098{bottom:633.937065px;}
.y3b_c00098{bottom:634.738357px;}
.y3a_c00098{bottom:635.893072px;}
.y39_c00098{bottom:636.358732px;}
.y38_c00098{bottom:637.506667px;}
.y37_c00098{bottom:637.904160px;}
.y35_c00098{bottom:640.135252px;}
.y36_c00098{bottom:641.517742px;}
.y34_c00098{bottom:642.659475px;}
.y33_c00098{bottom:644.928915px;}
.y32_c00098{bottom:646.730422px;}
.y31_c00098{bottom:648.914317px;}
.y30_c00098{bottom:650.133443px;}
.y2f_c00098{bottom:651.802560px;}
.y2e_c00098{bottom:652.483440px;}
.y2d_c00098{bottom:653.196277px;}
.y2c_c00098{bottom:656.473785px;}
.y2a_c00098{bottom:657.717727px;}
.y2b_c00098{bottom:660.149445px;}
.y29_c00098{bottom:661.240575px;}
.y28_c00098{bottom:662.623567px;}
.y27_c00098{bottom:663.063218px;}
.y26_c00098{bottom:663.609907px;}
.y25_c00098{bottom:665.213295px;}
.y24_c00098{bottom:666.787882px;}
.y23_c00098{bottom:667.305322px;}
.y22_c00098{bottom:667.912170px;}
.y21_c00098{bottom:668.813572px;}
.y20_c00098{bottom:669.462787px;}
.y1f_c00098{bottom:670.490617px;}
.y1e_c00098{bottom:671.048385px;}
.y1d_c00098{bottom:671.992515px;}
.y1c_c00098{bottom:672.912855px;}
.y19_c00098{bottom:675.020902px;}
.y1b_c00098{bottom:675.368827px;}
.y1a_c00098{bottom:676.086765px;}
.y18_c00098{bottom:677.095170px;}
.y17_c00098{bottom:679.731510px;}
.y16_c00098{bottom:682.411912px;}
.y15_c00098{bottom:685.892722px;}
.y14_c00098{bottom:686.497170px;}
.y13_c00098{bottom:687.983730px;}
.y12_c00098{bottom:690.144113px;}
.y11_c00098{bottom:691.733280px;}
.y10_c00098{bottom:691.871460px;}
.yf_c00098{bottom:694.253557px;}
.ye_c00098{bottom:695.193000px;}
.yd_c00098{bottom:695.517697px;}
.yc_c00098{bottom:695.882467px;}
.yb_c00098{bottom:696.966720px;}
.ya_c00098{bottom:698.020575px;}
.y9_c00098{bottom:698.308147px;}
.y8_c00098{bottom:698.725320px;}
.y7_c00098{bottom:699.303930px;}
.y6_c00098{bottom:699.761827px;}
.y5_c00098{bottom:700.365458px;}
.y4_c00098{bottom:700.854967px;}
.y3_c00098{bottom:701.483438px;}
.y2_c00098{bottom:702.151552px;}
.y1_c00098{bottom:704.431500px;}
.h12_c00098{height:24.000000px;}
.hf_c00098{height:42.011108px;}
.h2_c00098{height:48.005400px;}
.h9_c00098{height:48.010583px;}
.he_c00098{height:48.012694px;}
.hc_c00098{height:48.018812px;}
.hb_c00098{height:48.020180px;}
.ha_c00098{height:54.011906px;}
.hd_c00098{height:54.021164px;}
.h6_c00098{height:60.006750px;}
.h10_c00098{height:60.014518px;}
.h11_c00098{height:60.018747px;}
.h3_c00098{height:66.007425px;}
.h4_c00098{height:72.008100px;}
.h8_c00098{height:78.008775px;}
.h7_c00098{height:90.010124px;}
.h5_c00098{height:198.022274px;}
.h0_c00098{height:711.720000px;}
.h1_c00098{height:711.750000px;}
.w1_c00098{width:945.750000px;}
.w0_c00098{width:946.050000px;}
.x0_c00098{left:0.000000px;}
.x3d_c00098{left:1.232865px;}
.x18_c00098{left:32.073398px;}
.x48_c00098{left:69.140205px;}
.x40_c00098{left:70.180005px;}
.x83_c00098{left:73.529655px;}
.x98_c00098{left:75.130950px;}
.x10_c00098{left:79.186575px;}
.x79_c00098{left:82.129950px;}
.x7e_c00098{left:83.712015px;}
.x8e_c00098{left:85.035810px;}
.x119_c00098{left:92.367000px;}
.x9d_c00098{left:95.670405px;}
.xf8_c00098{left:99.252558px;}
.xa7_c00098{left:100.510148px;}
.xef_c00098{left:115.012955px;}
.x113_c00098{left:116.373264px;}
.xc9_c00098{left:117.528489px;}
.xfd_c00098{left:127.516500px;}
.xbf_c00098{left:128.870436px;}
.x114_c00098{left:130.701000px;}
.x49_c00098{left:132.446123px;}
.x84_c00098{left:135.113775px;}
.x99_c00098{left:136.843470px;}
.x41_c00098{left:137.956335px;}
.x19_c00098{left:143.693175px;}
.x9e_c00098{left:145.801898px;}
.xba_c00098{left:147.738529px;}
.x1_c00098{left:151.887000px;}
.x50_c00098{left:153.962303px;}
.x30_c00098{left:156.884130px;}
.x5e_c00098{left:157.904190px;}
.x42_c00098{left:159.254640px;}
.x6b_c00098{left:161.669933px;}
.x74_c00098{left:165.273908px;}
.xf0_c00098{left:166.594896px;}
.x7f_c00098{left:173.110305px;}
.x31_c00098{left:174.181560px;}
.x43_c00098{left:177.241440px;}
.x6c_c00098{left:180.674160px;}
.xc0_c00098{left:182.358936px;}
.xf9_c00098{left:184.312050px;}
.x1a_c00098{left:185.544788px;}
.x11_c00098{left:187.203975px;}
.xbb_c00098{left:189.910412px;}
.x115_c00098{left:191.742000px;}
.xa8_c00098{left:194.229398px;}
.x2_c00098{left:196.428000px;}
.xfa_c00098{left:198.914688px;}
.xb3_c00098{left:200.698500px;}
.xf1_c00098{left:201.981618px;}
.xfe_c00098{left:203.176500px;}
.xbc_c00098{left:205.033726px;}
.xd3_c00098{left:207.468125px;}
.xca_c00098{left:211.512489px;}
.x106_c00098{left:218.512038px;}
.x54_c00098{left:219.550223px;}
.xa9_c00098{left:220.708725px;}
.x4a_c00098{left:222.184868px;}
.x32_c00098{left:224.104575px;}
.x1b_c00098{left:228.482288px;}
.x116_c00098{left:233.857500px;}
.xcb_c00098{left:236.088489px;}
.x3_c00098{left:238.326000px;}
.x60_c00098{left:240.496365px;}
.xf2_c00098{left:241.705971px;}
.x33_c00098{left:244.346145px;}
.x9f_c00098{left:245.583428px;}
.x66_c00098{left:247.008270px;}
.x6d_c00098{left:249.256448px;}
.x51_c00098{left:251.276648px;}
.x1c_c00098{left:253.864133px;}
.x8f_c00098{left:255.736335px;}
.xa0_c00098{left:257.396010px;}
.xc1_c00098{left:259.089936px;}
.x107_c00098{left:260.137572px;}
.x12_c00098{left:261.502395px;}
.x4b_c00098{left:263.263440px;}
.xcc_c00098{left:264.976989px;}
.x4_c00098{left:270.960000px;}
.xd4_c00098{left:274.450428px;}
.xaa_c00098{left:275.545155px;}
.x108_c00098{left:276.827693px;}
.xa1_c00098{left:279.684833px;}
.x11a_c00098{left:281.443500px;}
.x90_c00098{left:283.634483px;}
.x3e_c00098{left:285.216300px;}
.x117_c00098{left:287.124000px;}
.x27_c00098{left:289.468785px;}
.x13_c00098{left:291.696623px;}
.x55_c00098{left:292.916903px;}
.x34_c00098{left:294.521115px;}
.x7a_c00098{left:296.979165px;}
.x85_c00098{left:298.352700px;}
.x1d_c00098{left:300.581228px;}
.xcd_c00098{left:304.410489px;}
.xab_c00098{left:307.618808px;}
.x5_c00098{left:311.202000px;}
.x88_c00098{left:313.762575px;}
.x91_c00098{left:315.658635px;}
.x28_c00098{left:319.187280px;}
.x10f_c00098{left:321.441683px;}
.x67_c00098{left:322.904430px;}
.x4c_c00098{left:324.087150px;}
.x61_c00098{left:326.217083px;}
.x75_c00098{left:328.077855px;}
.x1e_c00098{left:330.059123px;}
.xce_c00098{left:335.460489px;}
.xc2_c00098{left:337.073436px;}
.x109_c00098{left:338.914278px;}
.x6_c00098{left:341.728500px;}
.x44_c00098{left:345.378218px;}
.x29_c00098{left:347.575455px;}
.xeb_c00098{left:348.981000px;}
.xc3_c00098{left:350.817936px;}
.xff_c00098{left:351.876000px;}
.xd5_c00098{left:357.297393px;}
.x68_c00098{left:359.123168px;}
.x6e_c00098{left:360.426105px;}
.x56_c00098{left:362.045100px;}
.x4d_c00098{left:364.814768px;}
.x35_c00098{left:367.508340px;}
.x1f_c00098{left:371.048325px;}
.x89_c00098{left:373.014743px;}
.xb4_c00098{left:375.165000px;}
.xcf_c00098{left:377.104989px;}
.x92_c00098{left:379.138530px;}
.x7_c00098{left:380.302500px;}
.x118_c00098{left:383.478000px;}
.x57_c00098{left:388.047473px;}
.x7b_c00098{left:389.129595px;}
.x80_c00098{left:390.474728px;}
.x4e_c00098{left:394.797668px;}
.x36_c00098{left:396.141398px;}
.x93_c00098{left:397.245848px;}
.x20_c00098{left:398.601923px;}
.x52_c00098{left:400.658738px;}
.xc4_c00098{left:403.788936px;}
.xd0_c00098{left:407.022489px;}
.x8_c00098{left:408.114000px;}
.x8a_c00098{left:410.739345px;}
.xb5_c00098{left:412.974000px;}
.x62_c00098{left:415.060418px;}
.x2a_c00098{left:417.140573px;}
.x37_c00098{left:418.554698px;}
.x21_c00098{left:422.095448px;}
.xc5_c00098{left:423.275436px;}
.xd6_c00098{left:425.415260px;}
.x9_c00098{left:427.285500px;}
.x45_c00098{left:433.885943px;}
.xbd_c00098{left:436.221578px;}
.x8b_c00098{left:437.489438px;}
.xc6_c00098{left:439.977936px;}
.xd1_c00098{left:444.291489px;}
.x10a_c00098{left:447.781760px;}
.xa2_c00098{left:449.440470px;}
.x58_c00098{left:459.881355px;}
.xe5_c00098{left:463.476523px;}
.x14_c00098{left:465.737573px;}
.x2b_c00098{left:467.908710px;}
.xac_c00098{left:469.957823px;}
.x63_c00098{left:472.565010px;}
.x76_c00098{left:474.185828px;}
.xf3_c00098{left:477.231350px;}
.x8c_c00098{left:478.527248px;}
.xb6_c00098{left:484.260000px;}
.x38_c00098{left:489.872648px;}
.x110_c00098{left:491.783784px;}
.x22_c00098{left:493.660433px;}
.x64_c00098{left:496.064198px;}
.xa_c00098{left:497.542500px;}
.xb7_c00098{left:499.669500px;}
.xad_c00098{left:500.951610px;}
.x100_c00098{left:502.675500px;}
.xd2_c00098{left:507.777489px;}
.xe6_c00098{left:510.012221px;}
.x69_c00098{left:511.465965px;}
.x6f_c00098{left:512.816813px;}
.x86_c00098{left:514.154303px;}
.x10b_c00098{left:515.614707px;}
.x101_c00098{left:520.975500px;}
.x59_c00098{left:523.674705px;}
.x9a_c00098{left:526.306088px;}
.xa3_c00098{left:535.258665px;}
.x5a_c00098{left:537.119085px;}
.x10c_c00098{left:539.585655px;}
.x102_c00098{left:541.779000px;}
.x70_c00098{left:544.951965px;}
.xf4_c00098{left:546.562500px;}
.x94_c00098{left:549.434100px;}
.xb8_c00098{left:552.060000px;}
.xbe_c00098{left:555.318098px;}
.xfb_c00098{left:557.642340px;}
.x2c_c00098{left:558.889425px;}
.x39_c00098{left:562.748895px;}
.x23_c00098{left:566.545283px;}
.xb_c00098{left:569.826000px;}
.xf5_c00098{left:571.347000px;}
.x111_c00098{left:573.093921px;}
.x10d_c00098{left:576.583793px;}
.xae_c00098{left:578.465295px;}
.xc7_c00098{left:580.679436px;}
.x8d_c00098{left:583.859775px;}
.x46_c00098{left:586.432560px;}
.x3a_c00098{left:587.584425px;}
.x24_c00098{left:591.388673px;}
.xb9_c00098{left:592.618500px;}
.xc_c00098{left:594.144000px;}
.x15_c00098{left:599.721015px;}
.xc8_c00098{left:602.561436px;}
.xec_c00098{left:604.986000px;}
.x95_c00098{left:606.160305px;}
.x3b_c00098{left:609.495293px;}
.x25_c00098{left:611.396580px;}
.x71_c00098{left:613.708208px;}
.xd_c00098{left:615.790500px;}
.xde_c00098{left:620.202474px;}
.x87_c00098{left:622.351320px;}
.xd7_c00098{left:624.522000px;}
.xe7_c00098{left:628.571594px;}
.x81_c00098{left:630.156473px;}
.x11b_c00098{left:631.687500px;}
.x5b_c00098{left:632.972588px;}
.x2d_c00098{left:633.979800px;}
.x7c_c00098{left:638.552693px;}
.x112_c00098{left:639.788403px;}
.x72_c00098{left:640.997423px;}
.xaf_c00098{left:642.201645px;}
.xe8_c00098{left:651.011399px;}
.xe1_c00098{left:652.609112px;}
.x53_c00098{left:654.882728px;}
.x82_c00098{left:658.005143px;}
.xd8_c00098{left:660.432000px;}
.x5c_c00098{left:664.102853px;}
.x4f_c00098{left:671.311980px;}
.x3c_c00098{left:672.385755px;}
.x26_c00098{left:674.289488px;}
.xe_c00098{left:678.420000px;}
.xa4_c00098{left:680.570250px;}
.x96_c00098{left:682.222170px;}
.xe2_c00098{left:683.948025px;}
.xd9_c00098{left:688.531500px;}
.xed_c00098{left:696.231000px;}
.x103_c00098{left:699.567000px;}
.xb0_c00098{left:701.326058px;}
.xda_c00098{left:703.677000px;}
.x9b_c00098{left:705.907733px;}
.xe9_c00098{left:711.574422px;}
.x97_c00098{left:714.003368px;}
.x104_c00098{left:716.271000px;}
.xb1_c00098{left:719.961330px;}
.xf6_c00098{left:723.208500px;}
.x47_c00098{left:727.198455px;}
.x2e_c00098{left:728.563043px;}
.x16_c00098{left:731.567138px;}
.x5f_c00098{left:734.280188px;}
.x6a_c00098{left:735.611805px;}
.x77_c00098{left:736.942305px;}
.xee_c00098{left:739.228500px;}
.xe3_c00098{left:743.927265px;}
.xea_c00098{left:746.364423px;}
.x10e_c00098{left:748.095860px;}
.xdf_c00098{left:755.774559px;}
.xfc_c00098{left:760.999062px;}
.xa5_c00098{left:765.340080px;}
.xdb_c00098{left:767.941500px;}
.xe0_c00098{left:770.895624px;}
.xb2_c00098{left:772.369553px;}
.xa6_c00098{left:780.453758px;}
.xdc_c00098{left:783.603000px;}
.x105_c00098{left:787.287000px;}
.xdd_c00098{left:796.108401px;}
.xe4_c00098{left:797.742831px;}
.xf7_c00098{left:807.138000px;}
.x3f_c00098{left:832.482645px;}
.x2f_c00098{left:833.730345px;}
.x17_c00098{left:835.243853px;}
.xf_c00098{left:837.226500px;}
.x5d_c00098{left:841.885523px;}
.x78_c00098{left:920.515778px;}
.x73_c00098{left:921.901718px;}
.x65_c00098{left:924.345308px;}
.x7d_c00098{left:925.726245px;}
.x9c_c00098{left:942.818370px;}
@media print{
.v0_c00098{vertical-align:0.000000pt;}
.ls0_c00098{letter-spacing:0.000000pt;}
.ws0_c00098{word-spacing:0.000000pt;}
.fs10_c00098{font-size:21.333333pt;}
.fsd_c00098{font-size:37.343207pt;}
.fs0_c00098{font-size:42.671466pt;}
.fs7_c00098{font-size:42.676074pt;}
.fsc_c00098{font-size:42.677951pt;}
.fsa_c00098{font-size:42.683389pt;}
.fs9_c00098{font-size:42.684604pt;}
.fs8_c00098{font-size:48.010583pt;}
.fsb_c00098{font-size:48.018812pt;}
.fs4_c00098{font-size:53.339333pt;}
.fse_c00098{font-size:53.346238pt;}
.fsf_c00098{font-size:53.349997pt;}
.fs1_c00098{font-size:58.673266pt;}
.fs2_c00098{font-size:64.007200pt;}
.fs6_c00098{font-size:69.341133pt;}
.fs5_c00098{font-size:80.008999pt;}
.fs3_c00098{font-size:176.019799pt;}
.y0_c00098{bottom:0.000000pt;}
.y213_c00098{bottom:85.455100pt;}
.y212_c00098{bottom:85.611667pt;}
.y211_c00098{bottom:93.238300pt;}
.y210_c00098{bottom:97.440000pt;}
.y20f_c00098{bottom:109.753928pt;}
.y20e_c00098{bottom:110.926381pt;}
.y20d_c00098{bottom:112.135325pt;}
.y20c_c00098{bottom:113.382139pt;}
.y20b_c00098{bottom:114.786853pt;}
.y20a_c00098{bottom:115.266395pt;}
.y209_c00098{bottom:116.308051pt;}
.y208_c00098{bottom:116.750309pt;}
.y207_c00098{bottom:117.131643pt;}
.y206_c00098{bottom:118.325333pt;}
.y205_c00098{bottom:132.137609pt;}
.y203_c00098{bottom:132.137927pt;}
.y204_c00098{bottom:132.138072pt;}
.y202_c00098{bottom:132.275013pt;}
.y201_c00098{bottom:132.993764pt;}
.y200_c00098{bottom:133.841496pt;}
.y1ff_c00098{bottom:134.462407pt;}
.y1fe_c00098{bottom:134.860237pt;}
.y1fd_c00098{bottom:136.282467pt;}
.y1fc_c00098{bottom:138.016845pt;}
.y1fb_c00098{bottom:138.413879pt;}
.y1fa_c00098{bottom:140.787307pt;}
.y1f9_c00098{bottom:141.259947pt;}
.y1f8_c00098{bottom:141.650141pt;}
.y1f7_c00098{bottom:142.866785pt;}
.y1f6_c00098{bottom:144.162701pt;}
.y1f5_c00098{bottom:144.600888pt;}
.y1f4_c00098{bottom:144.829641pt;}
.y1f2_c00098{bottom:144.844255pt;}
.y1f1_c00098{bottom:145.288636pt;}
.y1f3_c00098{bottom:146.397703pt;}
.y1f0_c00098{bottom:146.636868pt;}
.y1ef_c00098{bottom:147.314971pt;}
.y1ee_c00098{bottom:148.947185pt;}
.y1ed_c00098{bottom:149.736943pt;}
.y1ec_c00098{bottom:150.248360pt;}
.y1eb_c00098{bottom:151.695199pt;}
.y1ea_c00098{bottom:152.617617pt;}
.y1e9_c00098{bottom:152.934735pt;}
.y1e8_c00098{bottom:153.342823pt;}
.y1e7_c00098{bottom:154.018319pt;}
.y1e6_c00098{bottom:155.342340pt;}
.y1e5_c00098{bottom:155.698235pt;}
.y1e4_c00098{bottom:156.586599pt;}
.y1e3_c00098{bottom:156.903961pt;}
.y1e0_c00098{bottom:158.026553pt;}
.y1e2_c00098{bottom:158.378660pt;}
.y1df_c00098{bottom:158.479193pt;}
.y1e1_c00098{bottom:159.121069pt;}
.y1de_c00098{bottom:159.478436pt;}
.y1dd_c00098{bottom:159.819940pt;}
.y1dc_c00098{bottom:160.361023pt;}
.y1db_c00098{bottom:160.747576pt;}
.y1da_c00098{bottom:163.045828pt;}
.y1d9_c00098{bottom:163.471144pt;}
.y1d8_c00098{bottom:163.845277pt;}
.y1d7_c00098{bottom:164.922904pt;}
.y1d6_c00098{bottom:165.269928pt;}
.y1d5_c00098{bottom:166.651339pt;}
.y1d4_c00098{bottom:166.928289pt;}
.y214_c00098{bottom:167.520000pt;}
.y1d3_c00098{bottom:167.981812pt;}
.y1d2_c00098{bottom:169.130309pt;}
.y1d1_c00098{bottom:169.527903pt;}
.y1d0_c00098{bottom:169.968368pt;}
.y1cd_c00098{bottom:170.923451pt;}
.y1cf_c00098{bottom:171.515195pt;}
.y1ce_c00098{bottom:172.084000pt;}
.y1cc_c00098{bottom:172.111632pt;}
.y1cb_c00098{bottom:172.664901pt;}
.y1ca_c00098{bottom:173.114544pt;}
.y1c9_c00098{bottom:174.653232pt;}
.y1c8_c00098{bottom:175.262875pt;}
.y1c7_c00098{bottom:176.813941pt;}
.y1c6_c00098{bottom:178.173680pt;}
.y1c5_c00098{bottom:179.082171pt;}
.y1c4_c00098{bottom:179.684373pt;}
.y1c3_c00098{bottom:181.302165pt;}
.y1c2_c00098{bottom:181.630576pt;}
.y1c1_c00098{bottom:182.034347pt;}
.y1c0_c00098{bottom:182.374864pt;}
.y1bb_c00098{bottom:182.703899pt;}
.y1bf_c00098{bottom:182.915541pt;}
.y1be_c00098{bottom:183.226944pt;}
.y1bd_c00098{bottom:183.623685pt;}
.y1ba_c00098{bottom:183.678112pt;}
.y1b9_c00098{bottom:184.792811pt;}
.y1bc_c00098{bottom:185.042411pt;}
.y1b8_c00098{bottom:185.352811pt;}
.y1b7_c00098{bottom:187.113899pt;}
.y1b6_c00098{bottom:187.529045pt;}
.y1b5_c00098{bottom:188.180997pt;}
.y1b4_c00098{bottom:188.572475pt;}
.y1b3_c00098{bottom:189.189333pt;}
.y1b2_c00098{bottom:190.808197pt;}
.y1b1_c00098{bottom:191.471537pt;}
.y1b0_c00098{bottom:192.398779pt;}
.y1af_c00098{bottom:193.488767pt;}
.y1ae_c00098{bottom:193.982883pt;}
.y1ad_c00098{bottom:194.996603pt;}
.y1ac_c00098{bottom:195.376356pt;}
.y1ab_c00098{bottom:195.703008pt;}
.y1aa_c00098{bottom:196.332295pt;}
.y1a7_c00098{bottom:196.893573pt;}
.y1a9_c00098{bottom:197.249616pt;}
.y1a6_c00098{bottom:197.296287pt;}
.y1a8_c00098{bottom:197.518081pt;}
.y1a5_c00098{bottom:198.404667pt;}
.y1a4_c00098{bottom:198.774204pt;}
.y1a3_c00098{bottom:200.473140pt;}
.y1a2_c00098{bottom:200.756760pt;}
.y1a1_c00098{bottom:205.699017pt;}
.y1a0_c00098{bottom:207.356000pt;}
.y19f_c00098{bottom:209.913288pt;}
.y19e_c00098{bottom:210.748712pt;}
.y19d_c00098{bottom:212.201801pt;}
.y19c_c00098{bottom:212.740216pt;}
.y19b_c00098{bottom:213.596501pt;}
.y19a_c00098{bottom:214.561928pt;}
.y199_c00098{bottom:215.585569pt;}
.y198_c00098{bottom:216.531063pt;}
.y197_c00098{bottom:216.702420pt;}
.y17d_c00098{bottom:217.458932pt;}
.y17c_c00098{bottom:217.859897pt;}
.y17b_c00098{bottom:218.609079pt;}
.y17a_c00098{bottom:218.992355pt;}
.y179_c00098{bottom:220.008824pt;}
.y178_c00098{bottom:220.273200pt;}
.y177_c00098{bottom:221.140441pt;}
.y196_c00098{bottom:221.623820pt;}
.y176_c00098{bottom:222.951523pt;}
.y195_c00098{bottom:222.963025pt;}
.y194_c00098{bottom:224.455779pt;}
.y193_c00098{bottom:225.235603pt;}
.y192_c00098{bottom:225.814317pt;}
.y191_c00098{bottom:226.312217pt;}
.y175_c00098{bottom:228.317635pt;}
.y174_c00098{bottom:228.741527pt;}
.y173_c00098{bottom:229.502707pt;}
.y172_c00098{bottom:230.198395pt;}
.y171_c00098{bottom:230.550271pt;}
.y170_c00098{bottom:230.756855pt;}
.y16f_c00098{bottom:231.253211pt;}
.y16e_c00098{bottom:231.534219pt;}
.y16d_c00098{bottom:231.836563pt;}
.y16c_c00098{bottom:232.113819pt;}
.y16b_c00098{bottom:232.849911pt;}
.y16a_c00098{bottom:233.075703pt;}
.y169_c00098{bottom:233.389163pt;}
.y168_c00098{bottom:233.666503pt;}
.y167_c00098{bottom:233.847915pt;}
.y166_c00098{bottom:234.140375pt;}
.y165_c00098{bottom:234.881507pt;}
.y190_c00098{bottom:234.963843pt;}
.y18f_c00098{bottom:235.366975pt;}
.y164_c00098{bottom:235.602283pt;}
.y18e_c00098{bottom:235.863408pt;}
.y163_c00098{bottom:235.913755pt;}
.y18d_c00098{bottom:237.454631pt;}
.y18c_c00098{bottom:238.981823pt;}
.y162_c00098{bottom:239.271276pt;}
.y18b_c00098{bottom:239.276787pt;}
.y161_c00098{bottom:239.679740pt;}
.y160_c00098{bottom:240.990280pt;}
.y15f_c00098{bottom:242.306168pt;}
.y15e_c00098{bottom:242.617948pt;}
.y15d_c00098{bottom:242.981696pt;}
.y15c_c00098{bottom:243.970488pt;}
.y15b_c00098{bottom:244.227052pt;}
.y15a_c00098{bottom:245.230096pt;}
.y159_c00098{bottom:245.682744pt;}
.y158_c00098{bottom:247.115056pt;}
.y18a_c00098{bottom:247.314171pt;}
.y189_c00098{bottom:247.692060pt;}
.y188_c00098{bottom:248.061172pt;}
.y157_c00098{bottom:248.113508pt;}
.y156_c00098{bottom:248.637752pt;}
.y187_c00098{bottom:248.818072pt;}
.y186_c00098{bottom:250.978379pt;}
.y185_c00098{bottom:251.401353pt;}
.y184_c00098{bottom:252.001460pt;}
.y155_c00098{bottom:252.957605pt;}
.y154_c00098{bottom:253.520377pt;}
.y153_c00098{bottom:253.856068pt;}
.y152_c00098{bottom:255.636799pt;}
.y151_c00098{bottom:256.021668pt;}
.y150_c00098{bottom:256.348528pt;}
.y14f_c00098{bottom:257.544552pt;}
.y14e_c00098{bottom:257.855368pt;}
.y14d_c00098{bottom:259.746881pt;}
.y14c_c00098{bottom:260.015844pt;}
.y183_c00098{bottom:260.385912pt;}
.y14b_c00098{bottom:260.525339pt;}
.y14a_c00098{bottom:260.765703pt;}
.y182_c00098{bottom:260.789631pt;}
.y149_c00098{bottom:261.600349pt;}
.y181_c00098{bottom:262.446227pt;}
.y180_c00098{bottom:262.836644pt;}
.y17f_c00098{bottom:263.560987pt;}
.y17e_c00098{bottom:264.486667pt;}
.y148_c00098{bottom:264.876643pt;}
.y147_c00098{bottom:265.142867pt;}
.y146_c00098{bottom:265.899959pt;}
.y145_c00098{bottom:266.877915pt;}
.y144_c00098{bottom:267.165559pt;}
.y143_c00098{bottom:267.482155pt;}
.y142_c00098{bottom:268.496231pt;}
.y141_c00098{bottom:268.838251pt;}
.y140_c00098{bottom:269.201999pt;}
.y13f_c00098{bottom:270.165059pt;}
.y13e_c00098{bottom:270.447243pt;}
.y13d_c00098{bottom:271.626659pt;}
.y13c_c00098{bottom:272.458707pt;}
.y13b_c00098{bottom:272.725883pt;}
.y13a_c00098{bottom:273.198691pt;}
.y138_c00098{bottom:273.209867pt;}
.y137_c00098{bottom:274.280727pt;}
.y139_c00098{bottom:274.322667pt;}
.y136_c00098{bottom:274.661227pt;}
.y135_c00098{bottom:275.869647pt;}
.y134_c00098{bottom:276.106653pt;}
.y133_c00098{bottom:277.172900pt;}
.y132_c00098{bottom:278.310780pt;}
.y131_c00098{bottom:278.758540pt;}
.y130_c00098{bottom:279.391840pt;}
.y12f_c00098{bottom:280.668260pt;}
.y12e_c00098{bottom:282.711287pt;}
.y12d_c00098{bottom:283.152700pt;}
.y12c_c00098{bottom:283.366987pt;}
.y12b_c00098{bottom:284.487560pt;}
.y12a_c00098{bottom:285.028660pt;}
.y127_c00098{bottom:286.035653pt;}
.y126_c00098{bottom:286.345193pt;}
.y129_c00098{bottom:286.945067pt;}
.y128_c00098{bottom:287.250833pt;}
.y125_c00098{bottom:288.078260pt;}
.y124_c00098{bottom:288.922893pt;}
.y123_c00098{bottom:289.451893pt;}
.y122_c00098{bottom:290.468427pt;}
.y121_c00098{bottom:291.047980pt;}
.y120_c00098{bottom:292.285307pt;}
.y11f_c00098{bottom:292.803027pt;}
.y11e_c00098{bottom:294.398853pt;}
.y11d_c00098{bottom:294.900240pt;}
.y11c_c00098{bottom:296.273373pt;}
.y11b_c00098{bottom:296.729260pt;}
.y11a_c00098{bottom:296.970780pt;}
.y119_c00098{bottom:299.010693pt;}
.y118_c00098{bottom:300.035193pt;}
.y117_c00098{bottom:300.453427pt;}
.y116_c00098{bottom:311.083580pt;}
.y115_c00098{bottom:315.716053pt;}
.y114_c00098{bottom:319.228327pt;}
.y113_c00098{bottom:322.853560pt;}
.y112_c00098{bottom:326.844373pt;}
.y111_c00098{bottom:327.854867pt;}
.y110_c00098{bottom:328.051293pt;}
.y10f_c00098{bottom:338.021153pt;}
.y10e_c00098{bottom:338.670287pt;}
.y10d_c00098{bottom:340.225900pt;}
.y10c_c00098{bottom:341.385007pt;}
.y10b_c00098{bottom:344.495760pt;}
.y10a_c00098{bottom:344.866553pt;}
.y109_c00098{bottom:346.163720pt;}
.y108_c00098{bottom:346.818760pt;}
.y107_c00098{bottom:347.389447pt;}
.y106_c00098{bottom:347.758747pt;}
.y105_c00098{bottom:349.050900pt;}
.y104_c00098{bottom:349.453460pt;}
.y103_c00098{bottom:350.879060pt;}
.y102_c00098{bottom:351.094247pt;}
.y101_c00098{bottom:354.484613pt;}
.y100_c00098{bottom:356.169427pt;}
.yff_c00098{bottom:356.883967pt;}
.yfe_c00098{bottom:358.135320pt;}
.yfd_c00098{bottom:358.901207pt;}
.yfc_c00098{bottom:359.400573pt;}
.yfb_c00098{bottom:360.104947pt;}
.yfa_c00098{bottom:361.211047pt;}
.yf9_c00098{bottom:361.748960pt;}
.yf8_c00098{bottom:362.172853pt;}
.yf7_c00098{bottom:363.619587pt;}
.yf6_c00098{bottom:364.598647pt;}
.yf5_c00098{bottom:365.495447pt;}
.yf4_c00098{bottom:368.241640pt;}
.yf3_c00098{bottom:370.595567pt;}
.yf2_c00098{bottom:372.807700pt;}
.yf1_c00098{bottom:373.613560pt;}
.yf0_c00098{bottom:374.760967pt;}
.yef_c00098{bottom:375.335587pt;}
.yee_c00098{bottom:375.902240pt;}
.yed_c00098{bottom:377.220067pt;}
.yec_c00098{bottom:378.129487pt;}
.yeb_c00098{bottom:378.758753pt;}
.yea_c00098{bottom:380.046053pt;}
.ye7_c00098{bottom:380.082147pt;}
.ye9_c00098{bottom:380.556847pt;}
.ye8_c00098{bottom:381.815400pt;}
.ye6_c00098{bottom:383.817713pt;}
.ye5_c00098{bottom:384.008520pt;}
.ye4_c00098{bottom:385.431627pt;}
.ye3_c00098{bottom:386.000320pt;}
.ye2_c00098{bottom:388.382360pt;}
.ye1_c00098{bottom:390.336960pt;}
.ye0_c00098{bottom:390.900460pt;}
.ydf_c00098{bottom:391.491533pt;}
.yde_c00098{bottom:392.204293pt;}
.ydd_c00098{bottom:392.794127pt;}
.ydc_c00098{bottom:393.705540pt;}
.ydb_c00098{bottom:394.334727pt;}
.yda_c00098{bottom:395.344333pt;}
.yd7_c00098{bottom:395.530420pt;}
.yd9_c00098{bottom:395.935667pt;}
.yd8_c00098{bottom:397.171120pt;}
.yd6_c00098{bottom:399.395500pt;}
.yd5_c00098{bottom:401.401193pt;}
.yd4_c00098{bottom:403.977613pt;}
.yd3_c00098{bottom:404.760993pt;}
.yd2_c00098{bottom:405.930800pt;}
.yd1_c00098{bottom:406.499233pt;}
.yd0_c00098{bottom:407.058220pt;}
.ycf_c00098{bottom:407.764053pt;}
.yce_c00098{bottom:408.384053pt;}
.ycd_c00098{bottom:409.299480pt;}
.ycc_c00098{bottom:409.917467pt;}
.yc9_c00098{bottom:411.012693pt;}
.ycb_c00098{bottom:411.137087pt;}
.yca_c00098{bottom:412.777053pt;}
.yc8_c00098{bottom:414.765967pt;}
.yc7_c00098{bottom:419.348240pt;}
.yc6_c00098{bottom:420.137807pt;}
.yc5_c00098{bottom:421.307613pt;}
.yc4_c00098{bottom:421.882313pt;}
.yc3_c00098{bottom:422.429680pt;}
.yc2_c00098{bottom:423.124813pt;}
.yc1_c00098{bottom:423.794867pt;}
.yc0_c00098{bottom:424.676293pt;}
.ybf_c00098{bottom:425.305560pt;}
.ybe_c00098{bottom:426.133560pt;}
.ybd_c00098{bottom:426.454460pt;}
.ybb_c00098{bottom:426.816440pt;}
.ybc_c00098{bottom:428.380153pt;}
.yba_c00098{bottom:428.644440pt;}
.yb9_c00098{bottom:430.614933pt;}
.yb8_c00098{bottom:431.941627pt;}
.yb7_c00098{bottom:432.559613pt;}
.yb6_c00098{bottom:433.118180pt;}
.yb5_c00098{bottom:434.524373pt;}
.yb4_c00098{bottom:435.180893pt;}
.yb3_c00098{bottom:437.146613pt;}
.yb2_c00098{bottom:437.715127pt;}
.yb1_c00098{bottom:438.297013pt;}
.yb0_c00098{bottom:439.013887pt;}
.yaf_c00098{bottom:439.638560pt;}
.yae_c00098{bottom:440.570120pt;}
.yad_c00098{bottom:441.138313pt;}
.yac_c00098{bottom:441.971327pt;}
.yab_c00098{bottom:442.359413pt;}
.ya9_c00098{bottom:443.921073pt;}
.yaa_c00098{bottom:444.223033pt;}
.ya8_c00098{bottom:445.724000pt;}
.ya7_c00098{bottom:449.907547pt;}
.ya6_c00098{bottom:450.627860pt;}
.ya5_c00098{bottom:451.691500pt;}
.ya4_c00098{bottom:452.210520pt;}
.ya3_c00098{bottom:452.750967pt;}
.ya2_c00098{bottom:453.427260pt;}
.ya1_c00098{bottom:453.987060pt;}
.ya0_c00098{bottom:454.844633pt;}
.y9f_c00098{bottom:455.342640pt;}
.y9e_c00098{bottom:456.154320pt;}
.y9d_c00098{bottom:456.599067pt;}
.y9b_c00098{bottom:457.462760pt;}
.y9c_c00098{bottom:458.144740pt;}
.y9a_c00098{bottom:459.352373pt;}
.y99_c00098{bottom:461.349860pt;}
.y98_c00098{bottom:466.219193pt;}
.y97_c00098{bottom:466.699220pt;}
.y96_c00098{bottom:467.875373pt;}
.y95_c00098{bottom:468.443727pt;}
.y94_c00098{bottom:468.968213pt;}
.y93_c00098{bottom:469.692093pt;}
.y92_c00098{bottom:470.332560pt;}
.y91_c00098{bottom:471.029347pt;}
.y90_c00098{bottom:471.444507pt;}
.y8f_c00098{bottom:471.866893pt;}
.y8e_c00098{bottom:473.143893pt;}
.y8d_c00098{bottom:474.947160pt;}
.y8c_c00098{bottom:475.856833pt;}
.y8b_c00098{bottom:477.771627pt;}
.y8a_c00098{bottom:489.042780pt;}
.y88_c00098{bottom:490.374713pt;}
.y87_c00098{bottom:490.577140pt;}
.y89_c00098{bottom:490.789420pt;}
.y86_c00098{bottom:494.009433pt;}
.y85_c00098{bottom:494.645887pt;}
.y84_c00098{bottom:495.082447pt;}
.y83_c00098{bottom:496.605420pt;}
.y82_c00098{bottom:496.880700pt;}
.y81_c00098{bottom:498.184713pt;}
.y80_c00098{bottom:499.653280pt;}
.y7f_c00098{bottom:500.185353pt;}
.y7e_c00098{bottom:500.979273pt;}
.y7d_c00098{bottom:501.599173pt;}
.y7c_c00098{bottom:502.702633pt;}
.y7b_c00098{bottom:503.100180pt;}
.y7a_c00098{bottom:503.973480pt;}
.y79_c00098{bottom:504.460273pt;}
.y78_c00098{bottom:506.182720pt;}
.y76_c00098{bottom:506.183853pt;}
.y77_c00098{bottom:507.594387pt;}
.y75_c00098{bottom:508.334613pt;}
.y74_c00098{bottom:509.802560pt;}
.y73_c00098{bottom:511.209613pt;}
.y72_c00098{bottom:515.000620pt;}
.y71_c00098{bottom:516.147667pt;}
.y70_c00098{bottom:517.374213pt;}
.y6f_c00098{bottom:518.053953pt;}
.y6e_c00098{bottom:520.033633pt;}
.y6d_c00098{bottom:520.042300pt;}
.y6c_c00098{bottom:521.787687pt;}
.y6a_c00098{bottom:522.016007pt;}
.y6b_c00098{bottom:523.195900pt;}
.y69_c00098{bottom:525.305707pt;}
.y68_c00098{bottom:526.586000pt;}
.y67_c00098{bottom:527.023060pt;}
.y66_c00098{bottom:527.541520pt;}
.y65_c00098{bottom:529.020867pt;}
.y64_c00098{bottom:530.488693pt;}
.y63_c00098{bottom:530.959673pt;}
.y62_c00098{bottom:531.572827pt;}
.y61_c00098{bottom:532.405260pt;}
.y60_c00098{bottom:533.014460pt;}
.y5f_c00098{bottom:533.648340pt;}
.y5e_c00098{bottom:534.488120pt;}
.y5d_c00098{bottom:535.424773pt;}
.y5c_c00098{bottom:536.322113pt;}
.y5b_c00098{bottom:537.396407pt;}
.y58_c00098{bottom:537.573587pt;}
.y5a_c00098{bottom:537.615627pt;}
.y49_c00098{bottom:537.658693pt;}
.y59_c00098{bottom:539.031567pt;}
.y57_c00098{bottom:539.910673pt;}
.y56_c00098{bottom:541.964467pt;}
.y55_c00098{bottom:543.038500pt;}
.y54_c00098{bottom:546.428760pt;}
.y53_c00098{bottom:548.395707pt;}
.y52_c00098{bottom:548.718280pt;}
.y48_c00098{bottom:548.847120pt;}
.y51_c00098{bottom:549.159060pt;}
.y50_c00098{bottom:549.569120pt;}
.y4f_c00098{bottom:550.428640pt;}
.y47_c00098{bottom:551.588133pt;}
.y4e_c00098{bottom:552.132533pt;}
.y4d_c00098{bottom:552.532393pt;}
.y4c_c00098{bottom:553.005747pt;}
.y45_c00098{bottom:553.202200pt;}
.y4b_c00098{bottom:554.512233pt;}
.y46_c00098{bottom:554.652687pt;}
.y4a_c00098{bottom:556.070200pt;}
.y44_c00098{bottom:556.485073pt;}
.y43_c00098{bottom:557.770380pt;}
.y42_c00098{bottom:558.218560pt;}
.y41_c00098{bottom:558.725740pt;}
.y40_c00098{bottom:560.216207pt;}
.y3f_c00098{bottom:561.673893pt;}
.y3e_c00098{bottom:562.132773pt;}
.y3d_c00098{bottom:562.718593pt;}
.y3c_c00098{bottom:563.499613pt;}
.y3b_c00098{bottom:564.211873pt;}
.y3a_c00098{bottom:565.238287pt;}
.y39_c00098{bottom:565.652207pt;}
.y38_c00098{bottom:566.672593pt;}
.y37_c00098{bottom:567.025920pt;}
.y35_c00098{bottom:569.009113pt;}
.y36_c00098{bottom:570.237993pt;}
.y34_c00098{bottom:571.252867pt;}
.y33_c00098{bottom:573.270147pt;}
.y32_c00098{bottom:574.871487pt;}
.y31_c00098{bottom:576.812727pt;}
.y30_c00098{bottom:577.896393pt;}
.y2f_c00098{bottom:579.380053pt;}
.y2e_c00098{bottom:579.985280pt;}
.y2d_c00098{bottom:580.618913pt;}
.y2c_c00098{bottom:583.532253pt;}
.y2a_c00098{bottom:584.637980pt;}
.y2b_c00098{bottom:586.799507pt;}
.y29_c00098{bottom:587.769400pt;}
.y28_c00098{bottom:588.998727pt;}
.y27_c00098{bottom:589.389527pt;}
.y26_c00098{bottom:589.875473pt;}
.y25_c00098{bottom:591.300707pt;}
.y24_c00098{bottom:592.700340pt;}
.y23_c00098{bottom:593.160287pt;}
.y22_c00098{bottom:593.699707pt;}
.y21_c00098{bottom:594.500953pt;}
.y20_c00098{bottom:595.078033pt;}
.y1f_c00098{bottom:595.991660pt;}
.y1e_c00098{bottom:596.487453pt;}
.y1d_c00098{bottom:597.326680pt;}
.y1c_c00098{bottom:598.144760pt;}
.y19_c00098{bottom:600.018580pt;}
.y1b_c00098{bottom:600.327847pt;}
.y1a_c00098{bottom:600.966013pt;}
.y18_c00098{bottom:601.862373pt;}
.y17_c00098{bottom:604.205787pt;}
.y16_c00098{bottom:606.588367pt;}
.y15_c00098{bottom:609.682420pt;}
.y14_c00098{bottom:610.219707pt;}
.y13_c00098{bottom:611.541093pt;}
.y12_c00098{bottom:613.461433pt;}
.y11_c00098{bottom:614.874027pt;}
.y10_c00098{bottom:614.996853pt;}
.yf_c00098{bottom:617.114273pt;}
.ye_c00098{bottom:617.949333pt;}
.yd_c00098{bottom:618.237953pt;}
.yc_c00098{bottom:618.562193pt;}
.yb_c00098{bottom:619.525973pt;}
.ya_c00098{bottom:620.462733pt;}
.y9_c00098{bottom:620.718353pt;}
.y8_c00098{bottom:621.089173pt;}
.y7_c00098{bottom:621.603493pt;}
.y6_c00098{bottom:622.010513pt;}
.y5_c00098{bottom:622.547073pt;}
.y4_c00098{bottom:622.982193pt;}
.y3_c00098{bottom:623.540833pt;}
.y2_c00098{bottom:624.134713pt;}
.y1_c00098{bottom:626.161333pt;}
.h12_c00098{height:21.333333pt;}
.hf_c00098{height:37.343207pt;}
.h2_c00098{height:42.671466pt;}
.h9_c00098{height:42.676074pt;}
.he_c00098{height:42.677951pt;}
.hc_c00098{height:42.683389pt;}
.hb_c00098{height:42.684604pt;}
.ha_c00098{height:48.010583pt;}
.hd_c00098{height:48.018812pt;}
.h6_c00098{height:53.339333pt;}
.h10_c00098{height:53.346238pt;}
.h11_c00098{height:53.349997pt;}
.h3_c00098{height:58.673266pt;}
.h4_c00098{height:64.007200pt;}
.h8_c00098{height:69.341133pt;}
.h7_c00098{height:80.008999pt;}
.h5_c00098{height:176.019799pt;}
.h0_c00098{height:632.640000pt;}
.h1_c00098{height:632.666667pt;}
.w1_c00098{width:840.666667pt;}
.w0_c00098{width:840.933333pt;}
.x0_c00098{left:0.000000pt;}
.x3d_c00098{left:1.095880pt;}
.x18_c00098{left:28.509687pt;}
.x48_c00098{left:61.457960pt;}
.x40_c00098{left:62.382227pt;}
.x83_c00098{left:65.359693pt;}
.x98_c00098{left:66.783067pt;}
.x10_c00098{left:70.388067pt;}
.x79_c00098{left:73.004400pt;}
.x7e_c00098{left:74.410680pt;}
.x8e_c00098{left:75.587387pt;}
.x119_c00098{left:82.104000pt;}
.x9d_c00098{left:85.040360pt;}
.xf8_c00098{left:88.224496pt;}
.xa7_c00098{left:89.342353pt;}
.xef_c00098{left:102.233737pt;}
.x113_c00098{left:103.442901pt;}
.xc9_c00098{left:104.469768pt;}
.xfd_c00098{left:113.348000pt;}
.xbf_c00098{left:114.551499pt;}
.x114_c00098{left:116.178667pt;}
.x49_c00098{left:117.729887pt;}
.x84_c00098{left:120.101133pt;}
.x99_c00098{left:121.638640pt;}
.x41_c00098{left:122.627853pt;}
.x19_c00098{left:127.727267pt;}
.x9e_c00098{left:129.601687pt;}
.xba_c00098{left:131.323137pt;}
.x1_c00098{left:135.010667pt;}
.x50_c00098{left:136.855380pt;}
.x30_c00098{left:139.452560pt;}
.x5e_c00098{left:140.359280pt;}
.x42_c00098{left:141.559680pt;}
.x6b_c00098{left:143.706607pt;}
.x74_c00098{left:146.910140pt;}
.xf0_c00098{left:148.084352pt;}
.x7f_c00098{left:153.875827pt;}
.x31_c00098{left:154.828053pt;}
.x43_c00098{left:157.547947pt;}
.x6c_c00098{left:160.599253pt;}
.xc0_c00098{left:162.096832pt;}
.xf9_c00098{left:163.832933pt;}
.x1a_c00098{left:164.928700pt;}
.x11_c00098{left:166.403533pt;}
.xbb_c00098{left:168.809255pt;}
.x115_c00098{left:170.437333pt;}
.xa8_c00098{left:172.648353pt;}
.x2_c00098{left:174.602667pt;}
.xfa_c00098{left:176.813056pt;}
.xb3_c00098{left:178.398667pt;}
.xf1_c00098{left:179.539216pt;}
.xfe_c00098{left:180.601333pt;}
.xbc_c00098{left:182.252201pt;}
.xd3_c00098{left:184.416111pt;}
.xca_c00098{left:188.011101pt;}
.x106_c00098{left:194.232923pt;}
.x54_c00098{left:195.155753pt;}
.xa9_c00098{left:196.185533pt;}
.x4a_c00098{left:197.497660pt;}
.x32_c00098{left:199.204067pt;}
.x1b_c00098{left:203.095367pt;}
.x116_c00098{left:207.873333pt;}
.xcb_c00098{left:209.856435pt;}
.x3_c00098{left:211.845333pt;}
.x60_c00098{left:213.774547pt;}
.xf2_c00098{left:214.849752pt;}
.x33_c00098{left:217.196573pt;}
.x9f_c00098{left:218.296380pt;}
.x66_c00098{left:219.562907pt;}
.x6d_c00098{left:221.561287pt;}
.x51_c00098{left:223.357020pt;}
.x1c_c00098{left:225.657007pt;}
.x8f_c00098{left:227.321187pt;}
.xa0_c00098{left:228.796453pt;}
.xc1_c00098{left:230.302165pt;}
.x107_c00098{left:231.233397pt;}
.x12_c00098{left:232.446573pt;}
.x4b_c00098{left:234.011947pt;}
.xcc_c00098{left:235.535101pt;}
.x4_c00098{left:240.853333pt;}
.xd4_c00098{left:243.955936pt;}
.xaa_c00098{left:244.929027pt;}
.x108_c00098{left:246.069060pt;}
.xa1_c00098{left:248.608740pt;}
.x11a_c00098{left:250.172000pt;}
.x90_c00098{left:252.119540pt;}
.x3e_c00098{left:253.525600pt;}
.x117_c00098{left:255.221333pt;}
.x27_c00098{left:257.305587pt;}
.x13_c00098{left:259.285887pt;}
.x55_c00098{left:260.370580pt;}
.x34_c00098{left:261.796547pt;}
.x7a_c00098{left:263.981480pt;}
.x85_c00098{left:265.202400pt;}
.x1d_c00098{left:267.183313pt;}
.xcd_c00098{left:270.587101pt;}
.xab_c00098{left:273.438940pt;}
.x5_c00098{left:276.624000pt;}
.x88_c00098{left:278.900067pt;}
.x91_c00098{left:280.585453pt;}
.x28_c00098{left:283.722027pt;}
.x10f_c00098{left:285.725940pt;}
.x67_c00098{left:287.026160pt;}
.x4c_c00098{left:288.077467pt;}
.x61_c00098{left:289.970740pt;}
.x75_c00098{left:291.624760pt;}
.x1e_c00098{left:293.385887pt;}
.xce_c00098{left:298.187101pt;}
.xc2_c00098{left:299.620832pt;}
.x109_c00098{left:301.257136pt;}
.x6_c00098{left:303.758667pt;}
.x44_c00098{left:307.002860pt;}
.x29_c00098{left:308.955960pt;}
.xeb_c00098{left:310.205333pt;}
.xc3_c00098{left:311.838165pt;}
.xff_c00098{left:312.778667pt;}
.xd5_c00098{left:317.597683pt;}
.x68_c00098{left:319.220593pt;}
.x6e_c00098{left:320.378760pt;}
.x56_c00098{left:321.817867pt;}
.x4d_c00098{left:324.279793pt;}
.x35_c00098{left:326.674080pt;}
.x1f_c00098{left:329.820733pt;}
.x89_c00098{left:331.568660pt;}
.xb4_c00098{left:333.480000pt;}
.xcf_c00098{left:335.204435pt;}
.x92_c00098{left:337.012027pt;}
.x7_c00098{left:338.046667pt;}
.x118_c00098{left:340.869333pt;}
.x57_c00098{left:344.931087pt;}
.x7b_c00098{left:345.892973pt;}
.x80_c00098{left:347.088647pt;}
.x4e_c00098{left:350.931260pt;}
.x36_c00098{left:352.125687pt;}
.x93_c00098{left:353.107420pt;}
.x20_c00098{left:354.312820pt;}
.x52_c00098{left:356.141100pt;}
.xc4_c00098{left:358.923499pt;}
.xd0_c00098{left:361.797768pt;}
.x8_c00098{left:362.768000pt;}
.x8a_c00098{left:365.101640pt;}
.xb5_c00098{left:367.088000pt;}
.x62_c00098{left:368.942593pt;}
.x2a_c00098{left:370.791620pt;}
.x37_c00098{left:372.048620pt;}
.x21_c00098{left:375.195953pt;}
.xc5_c00098{left:376.244832pt;}
.xd6_c00098{left:378.146897pt;}
.x9_c00098{left:379.809333pt;}
.x45_c00098{left:385.676393pt;}
.xbd_c00098{left:387.752513pt;}
.x8b_c00098{left:388.879500pt;}
.xc6_c00098{left:391.091499pt;}
.xd1_c00098{left:394.925768pt;}
.x10a_c00098{left:398.028231pt;}
.xa2_c00098{left:399.502640pt;}
.x58_c00098{left:408.783427pt;}
.xe5_c00098{left:411.979132pt;}
.x14_c00098{left:413.988953pt;}
.x2b_c00098{left:415.918853pt;}
.xac_c00098{left:417.740287pt;}
.x63_c00098{left:420.057787pt;}
.x76_c00098{left:421.498513pt;}
.xf3_c00098{left:424.205644pt;}
.x8c_c00098{left:425.357553pt;}
.xb6_c00098{left:430.453333pt;}
.x38_c00098{left:435.442353pt;}
.x110_c00098{left:437.141141pt;}
.x22_c00098{left:438.809273pt;}
.x64_c00098{left:440.945953pt;}
.xa_c00098{left:442.260000pt;}
.xb7_c00098{left:444.150667pt;}
.xad_c00098{left:445.290320pt;}
.x100_c00098{left:446.822667pt;}
.xd2_c00098{left:451.357768pt;}
.xe6_c00098{left:453.344196pt;}
.x69_c00098{left:454.636413pt;}
.x6f_c00098{left:455.837167pt;}
.x86_c00098{left:457.026047pt;}
.x10b_c00098{left:458.324184pt;}
.x101_c00098{left:463.089333pt;}
.x59_c00098{left:465.488627pt;}
.x9a_c00098{left:467.827633pt;}
.xa3_c00098{left:475.785480pt;}
.x5a_c00098{left:477.439187pt;}
.x10c_c00098{left:479.631693pt;}
.x102_c00098{left:481.581333pt;}
.x70_c00098{left:484.401747pt;}
.xf4_c00098{left:485.833333pt;}
.x94_c00098{left:488.385867pt;}
.xb8_c00098{left:490.720000pt;}
.xbe_c00098{left:493.616087pt;}
.xfb_c00098{left:495.682080pt;}
.x2c_c00098{left:496.790600pt;}
.x39_c00098{left:500.221240pt;}
.x23_c00098{left:503.595807pt;}
.xb_c00098{left:506.512000pt;}
.xf5_c00098{left:507.864000pt;}
.x111_c00098{left:509.416819pt;}
.x10d_c00098{left:512.518927pt;}
.xae_c00098{left:514.191373pt;}
.xc7_c00098{left:516.159499pt;}
.x8d_c00098{left:518.986467pt;}
.x46_c00098{left:521.273387pt;}
.x3a_c00098{left:522.297267pt;}
.x24_c00098{left:525.678820pt;}
.xb9_c00098{left:526.772000pt;}
.xc_c00098{left:528.128000pt;}
.x15_c00098{left:533.085347pt;}
.xc8_c00098{left:535.610165pt;}
.xec_c00098{left:537.765333pt;}
.x95_c00098{left:538.809160pt;}
.x3b_c00098{left:541.773593pt;}
.x25_c00098{left:543.463627pt;}
.x71_c00098{left:545.518407pt;}
.xd_c00098{left:547.369333pt;}
.xde_c00098{left:551.291088pt;}
.x87_c00098{left:553.201173pt;}
.xd7_c00098{left:555.130667pt;}
.xe7_c00098{left:558.730305pt;}
.x81_c00098{left:560.139087pt;}
.x11b_c00098{left:561.500000pt;}
.x5b_c00098{left:562.642300pt;}
.x2d_c00098{left:563.537600pt;}
.x7c_c00098{left:567.602393pt;}
.x112_c00098{left:568.700803pt;}
.x72_c00098{left:569.775487pt;}
.xaf_c00098{left:570.845907pt;}
.xe8_c00098{left:578.676799pt;}
.xe1_c00098{left:580.096988pt;}
.x53_c00098{left:582.117980pt;}
.x82_c00098{left:584.893460pt;}
.xd8_c00098{left:587.050667pt;}
.x5c_c00098{left:590.313647pt;}
.x4f_c00098{left:596.721760pt;}
.x3c_c00098{left:597.676227pt;}
.x26_c00098{left:599.368433pt;}
.xe_c00098{left:603.040000pt;}
.xa4_c00098{left:604.951333pt;}
.x96_c00098{left:606.419707pt;}
.xe2_c00098{left:607.953800pt;}
.xd9_c00098{left:612.028000pt;}
.xed_c00098{left:618.872000pt;}
.x103_c00098{left:621.837333pt;}
.xb0_c00098{left:623.400940pt;}
.xda_c00098{left:625.490667pt;}
.x9b_c00098{left:627.473540pt;}
.xe9_c00098{left:632.510597pt;}
.x97_c00098{left:634.669660pt;}
.x104_c00098{left:636.685333pt;}
.xb1_c00098{left:639.965627pt;}
.xf6_c00098{left:642.852000pt;}
.x47_c00098{left:646.398627pt;}
.x2e_c00098{left:647.611593pt;}
.x16_c00098{left:650.281900pt;}
.x5f_c00098{left:652.693500pt;}
.x6a_c00098{left:653.877160pt;}
.x77_c00098{left:655.059827pt;}
.xee_c00098{left:657.092000pt;}
.xe3_c00098{left:661.268680pt;}
.xea_c00098{left:663.435043pt;}
.x10e_c00098{left:664.974097pt;}
.xdf_c00098{left:671.799608pt;}
.xfc_c00098{left:676.443611pt;}
.xa5_c00098{left:680.302293pt;}
.xdb_c00098{left:682.614667pt;}
.xe0_c00098{left:685.240555pt;}
.xb2_c00098{left:686.550713pt;}
.xa6_c00098{left:693.736673pt;}
.xdc_c00098{left:696.536000pt;}
.x105_c00098{left:699.810667pt;}
.xdd_c00098{left:707.651912pt;}
.xe4_c00098{left:709.104739pt;}
.xf7_c00098{left:717.456000pt;}
.x3f_c00098{left:739.984573pt;}
.x2f_c00098{left:741.093640pt;}
.x17_c00098{left:742.438980pt;}
.xf_c00098{left:744.201333pt;}
.x5d_c00098{left:748.342687pt;}
.x78_c00098{left:818.236247pt;}
.x73_c00098{left:819.468193pt;}
.x65_c00098{left:821.640273pt;}
.x7d_c00098{left:822.867773pt;}
.x9c_c00098{left:838.060773pt;}
}





/* 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_c00099 {
    display:none;
  }
  .loading-indicator_c00099.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00099 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_c00099 { 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_c00099" -> "#page-container .classname_c00099")
 */
.pf_c00099 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00099 { /* 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_c00099.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00099 { /* 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_c00099 { /* 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_c00099 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00099 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00099 {overflow:visible;}
  }
}
.c_c00099 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00099 { /* 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_c00099:after { /* webkit #35443 */
  content: '';
}
.t_c00099:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00099 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 */
}
.__c00099 { /* 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_c00099 { /* info for Javascript */
  display:none;
}
.l_c00099 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00099 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00099 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00099: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_c00099 {
    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_c00099.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00099.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_c00099 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00099{font-family:sans-serif;visibility:hidden;}
.sc__c00099{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00099{-webkit-text-stroke:0px transparent;}
}
.y0_c00099{bottom:0.000000px;}
.h0_c00099{height:711.720000px;}
.h1_c00099{height:711.750000px;}
.w1_c00099{width:945.750000px;}
.w0_c00099{width:946.050000px;}
.x0_c00099{left:0.000000px;}
@media print{
.y0_c00099{bottom:0.000000pt;}
.h0_c00099{height:632.640000pt;}
.h1_c00099{height:632.666667pt;}
.w1_c00099{width:840.666667pt;}
.w0_c00099{width:840.933333pt;}
.x0_c00099{left:0.000000pt;}
}





/* 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_c00100 {
    display:none;
  }
  .loading-indicator_c00100.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00100 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_c00100 { 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_c00100" -> "#page-container .classname_c00100")
 */
.pf_c00100 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00100 { /* 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_c00100.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00100 { /* 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_c00100 { /* 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_c00100 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00100 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00100 {overflow:visible;}
  }
}
.c_c00100 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00100 { /* 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_c00100:after { /* webkit #35443 */
  content: '';
}
.t_c00100:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00100 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 */
}
.__c00100 { /* 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_c00100 { /* info for Javascript */
  display:none;
}
.l_c00100 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00100 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00100 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00100: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_c00100 {
    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_c00100.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00100.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_c00100 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00100{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00100;src:url('chunks/assets/font_59dc3ab2e04ed21d4ac9992b.woff2')format("woff");}.ff1_c00100{font-family:ff1_c00100;line-height:1.000000;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;}
.m3_c00100{transform:matrix(0.169260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169260,0.000000,0.000000,0.250000,0,0);}
.m2_c00100{transform:matrix(0.189970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189970,0.000000,0.000000,0.250000,0,0);}
.m1_c00100{transform:matrix(0.526120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526120,0.000000,0.000000,0.250000,0,0);}
.m0_c00100{transform:matrix(0.573060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573060,0.000000,0.000000,0.250000,0,0);}
.v0_c00100{vertical-align:0.000000px;}
.ls0_c00100{letter-spacing:0.000000px;}
.sc__c00100{text-shadow:none;}
.sc0_c00100{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__c00100{-webkit-text-stroke:0px transparent;}
.sc0_c00100{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00100{word-spacing:0.000000px;}
.fc0_c00100{color:transparent;}
.fs0_c00100{font-size:18.000000px;}
.fs1_c00100{font-size:144.000000px;}
.y0_c00100{bottom:0.000000px;}
.y3_c00100{bottom:127.170000px;}
.y2_c00100{bottom:153.090000px;}
.y1_c00100{bottom:401.220000px;}
.h2_c00100{height:18.000000px;}
.h3_c00100{height:144.000000px;}
.h0_c00100{height:711.720000px;}
.h1_c00100{height:711.750000px;}
.w1_c00100{width:945.750000px;}
.w0_c00100{width:946.050000px;}
.x0_c00100{left:0.000000px;}
.x1_c00100{left:609.120000px;}
.x2_c00100{left:627.480000px;}
@media print{
.v0_c00100{vertical-align:0.000000pt;}
.ls0_c00100{letter-spacing:0.000000pt;}
.ws0_c00100{word-spacing:0.000000pt;}
.fs0_c00100{font-size:16.000000pt;}
.fs1_c00100{font-size:128.000000pt;}
.y0_c00100{bottom:0.000000pt;}
.y3_c00100{bottom:113.040000pt;}
.y2_c00100{bottom:136.080000pt;}
.y1_c00100{bottom:356.640000pt;}
.h2_c00100{height:16.000000pt;}
.h3_c00100{height:128.000000pt;}
.h0_c00100{height:632.640000pt;}
.h1_c00100{height:632.666667pt;}
.w1_c00100{width:840.666667pt;}
.w0_c00100{width:840.933333pt;}
.x0_c00100{left:0.000000pt;}
.x1_c00100{left:541.440000pt;}
.x2_c00100{left:557.760000pt;}
}





/* 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_c00101 {
    display:none;
  }
  .loading-indicator_c00101.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00101 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_c00101 { 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_c00101" -> "#page-container .classname_c00101")
 */
.pf_c00101 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00101 { /* 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_c00101.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00101 { /* 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_c00101 { /* 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_c00101 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00101 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00101 {overflow:visible;}
  }
}
.c_c00101 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00101 { /* 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_c00101:after { /* webkit #35443 */
  content: '';
}
.t_c00101:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00101 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 */
}
.__c00101 { /* 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_c00101 { /* info for Javascript */
  display:none;
}
.l_c00101 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00101 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00101 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00101: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_c00101 {
    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_c00101.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00101.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_c00101 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00101{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00101;src:url('chunks/assets/font_c605e72f209fc835e906f064.woff2')format("woff");}.ff1_c00101{font-family:ff1_c00101;line-height:1.000000;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;}
.m45_c00101{transform:matrix(0.010165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.010165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.010165,0.000000,0.000000,0.250000,0,0);}
.mbd_c00101{transform:matrix(0.012730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.012730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.012730,0.000000,0.000000,0.250000,0,0);}
.m6e_c00101{transform:matrix(0.053690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.053690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.053690,0.000000,0.000000,0.250000,0,0);}
.m8f_c00101{transform:matrix(0.075465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.075465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.075465,0.000000,0.000000,0.250000,0,0);}
.m9e_c00101{transform:matrix(0.077080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.077080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.077080,0.000000,0.000000,0.250000,0,0);}
.m4f_c00101{transform:matrix(0.093965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093965,0.000000,0.000000,0.250000,0,0);}
.mae_c00101{transform:matrix(0.121695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121695,0.000000,0.000000,0.250000,0,0);}
.mb0_c00101{transform:matrix(0.126950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126950,0.000000,0.000000,0.250000,0,0);}
.mb7_c00101{transform:matrix(0.127325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127325,0.000000,0.000000,0.250000,0,0);}
.m3f_c00101{transform:matrix(0.130835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130835,0.000000,0.000000,0.250000,0,0);}
.m1e_c00101{transform:matrix(0.133940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133940,0.000000,0.000000,0.250000,0,0);}
.maf_c00101{transform:matrix(0.135650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135650,0.000000,0.000000,0.250000,0,0);}
.m13_c00101{transform:matrix(0.139485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139485,0.000000,0.000000,0.250000,0,0);}
.m17_c00101{transform:matrix(0.142015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142015,0.000000,0.000000,0.250000,0,0);}
.m20_c00101{transform:matrix(0.142745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142745,0.000000,0.000000,0.250000,0,0);}
.mac_c00101{transform:matrix(0.142795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142795,0.000000,0.000000,0.250000,0,0);}
.m16_c00101{transform:matrix(0.145770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145770,0.000000,0.000000,0.250000,0,0);}
.m14_c00101{transform:matrix(0.146345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146345,0.000000,0.000000,0.250000,0,0);}
.mb_c00101{transform:matrix(0.147115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147115,0.000000,0.000000,0.250000,0,0);}
.m19_c00101{transform:matrix(0.148405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148405,0.000000,0.000000,0.250000,0,0);}
.m1f_c00101{transform:matrix(0.150100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150100,0.000000,0.000000,0.250000,0,0);}
.m12_c00101{transform:matrix(0.151255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151255,0.000000,0.000000,0.250000,0,0);}
.m3e_c00101{transform:matrix(0.151420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151420,0.000000,0.000000,0.250000,0,0);}
.m11_c00101{transform:matrix(0.151695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151695,0.000000,0.000000,0.250000,0,0);}
.mf_c00101{transform:matrix(0.152150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152150,0.000000,0.000000,0.250000,0,0);}
.m65_c00101{transform:matrix(0.153000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153000,0.000000,0.000000,0.250000,0,0);}
.m56_c00101{transform:matrix(0.153265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153265,0.000000,0.000000,0.250000,0,0);}
.m18_c00101{transform:matrix(0.153685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153685,0.000000,0.000000,0.250000,0,0);}
.m94_c00101{transform:matrix(0.154740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154740,0.000000,0.000000,0.250000,0,0);}
.m9_c00101{transform:matrix(0.155400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155400,0.000000,0.000000,0.250000,0,0);}
.m1b_c00101{transform:matrix(0.159490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159490,0.000000,0.000000,0.250000,0,0);}
.m8_c00101{transform:matrix(0.161010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161010,0.000000,0.000000,0.250000,0,0);}
.ma_c00101{transform:matrix(0.162995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162995,0.000000,0.000000,0.250000,0,0);}
.m1d_c00101{transform:matrix(0.166005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166005,0.000000,0.000000,0.250000,0,0);}
.m15_c00101{transform:matrix(0.166680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166680,0.000000,0.000000,0.250000,0,0);}
.m10_c00101{transform:matrix(0.167230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167230,0.000000,0.000000,0.250000,0,0);}
.mc_c00101{transform:matrix(0.167285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167285,0.000000,0.000000,0.250000,0,0);}
.me_c00101{transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00101{transform:matrix(0.172900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172900,0.000000,0.000000,0.250000,0,0);}
.m1a_c00101{transform:matrix(0.173520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173520,0.000000,0.000000,0.250000,0,0);}
.ma6_c00101{transform:matrix(0.174785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174785,0.000000,0.000000,0.250000,0,0);}
.m96_c00101{transform:matrix(0.184475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184475,0.000000,0.000000,0.250000,0,0);}
.m97_c00101{transform:matrix(0.186350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186350,0.000000,0.000000,0.250000,0,0);}
.m41_c00101{transform:matrix(0.186870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186870,0.000000,0.000000,0.250000,0,0);}
.m3c_c00101{transform:matrix(0.189150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189150,0.000000,0.000000,0.250000,0,0);}
.m37_c00101{transform:matrix(0.191070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191070,0.000000,0.000000,0.250000,0,0);}
.m28_c00101{transform:matrix(0.192890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192890,0.000000,0.000000,0.250000,0,0);}
.mc2_c00101{transform:matrix(0.193980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193980,0.000000,0.000000,0.250000,0,0);}
.ma1_c00101{transform:matrix(0.194345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194345,0.000000,0.000000,0.250000,0,0);}
.m6f_c00101{transform:matrix(0.195260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195260,0.000000,0.000000,0.250000,0,0);}
.m22_c00101{transform:matrix(0.195575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195575,0.000000,0.000000,0.250000,0,0);}
.m1c_c00101{transform:matrix(0.195685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195685,0.000000,0.000000,0.250000,0,0);}
.mad_c00101{transform:matrix(0.196370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196370,0.000000,0.000000,0.250000,0,0);}
.m39_c00101{transform:matrix(0.199390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199390,0.000000,0.000000,0.250000,0,0);}
.mab_c00101{transform:matrix(0.202255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202255,0.000000,0.000000,0.250000,0,0);}
.m2d_c00101{transform:matrix(0.203580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203580,0.000000,0.000000,0.250000,0,0);}
.m43_c00101{transform:matrix(0.206430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206430,0.000000,0.000000,0.250000,0,0);}
.m3b_c00101{transform:matrix(0.206745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206745,0.000000,0.000000,0.250000,0,0);}
.m36_c00101{transform:matrix(0.206780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206780,0.000000,0.000000,0.250000,0,0);}
.ma4_c00101{transform:matrix(0.207320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207320,0.000000,0.000000,0.250000,0,0);}
.m31_c00101{transform:matrix(0.207600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207600,0.000000,0.000000,0.250000,0,0);}
.m2a_c00101{transform:matrix(0.208100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208100,0.000000,0.000000,0.250000,0,0);}
.m2_c00101{transform:matrix(0.208520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208520,0.000000,0.000000,0.250000,0,0);}
.m38_c00101{transform:matrix(0.209065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209065,0.000000,0.000000,0.250000,0,0);}
.mba_c00101{transform:matrix(0.210025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210025,0.000000,0.000000,0.250000,0,0);}
.ma5_c00101{transform:matrix(0.210300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210300,0.000000,0.000000,0.250000,0,0);}
.m3d_c00101{transform:matrix(0.210355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210355,0.000000,0.000000,0.250000,0,0);}
.ma3_c00101{transform:matrix(0.214780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214780,0.000000,0.000000,0.250000,0,0);}
.m29_c00101{transform:matrix(0.216340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216340,0.000000,0.000000,0.250000,0,0);}
.m35_c00101{transform:matrix(0.217040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217040,0.000000,0.000000,0.250000,0,0);}
.m32_c00101{transform:matrix(0.217345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217345,0.000000,0.000000,0.250000,0,0);}
.m3a_c00101{transform:matrix(0.219860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219860,0.000000,0.000000,0.250000,0,0);}
.m55_c00101{transform:matrix(0.223420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223420,0.000000,0.000000,0.250000,0,0);}
.m24_c00101{transform:matrix(0.226110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226110,0.000000,0.000000,0.250000,0,0);}
.m4a_c00101{transform:matrix(0.227110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227110,0.000000,0.000000,0.250000,0,0);}
.mb8_c00101{transform:matrix(0.227875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227875,0.000000,0.000000,0.250000,0,0);}
.mc3_c00101{transform:matrix(0.231240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231240,0.000000,0.000000,0.250000,0,0);}
.m23_c00101{transform:matrix(0.232285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232285,0.000000,0.000000,0.250000,0,0);}
.m2c_c00101{transform:matrix(0.235080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235080,0.000000,0.000000,0.250000,0,0);}
.m7d_c00101{transform:matrix(0.236240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236240,0.000000,0.000000,0.250000,0,0);}
.m4b_c00101{transform:matrix(0.239700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239700,0.000000,0.000000,0.250000,0,0);}
.m44_c00101{transform:matrix(0.242355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242355,0.000000,0.000000,0.250000,0,0);}
.m42_c00101{transform:matrix(0.246440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246440,0.000000,0.000000,0.250000,0,0);}
.m52_c00101{transform:matrix(0.247940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247940,0.000000,0.000000,0.250000,0,0);}
.m2e_c00101{transform:matrix(0.249210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249210,0.000000,0.000000,0.250000,0,0);}
.m26_c00101{transform:matrix(0.249560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249560,0.000000,0.000000,0.250000,0,0);}
.m5f_c00101{transform:matrix(0.250685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250685,0.000000,0.000000,0.250000,0,0);}
.m34_c00101{transform:matrix(0.253115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253115,0.000000,0.000000,0.250000,0,0);}
.m77_c00101{transform:matrix(0.253600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253600,0.000000,0.000000,0.250000,0,0);}
.mb9_c00101{transform:matrix(0.254020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254020,0.000000,0.000000,0.250000,0,0);}
.maa_c00101{transform:matrix(0.257225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257225,0.000000,0.000000,0.250000,0,0);}
.m21_c00101{transform:matrix(0.259600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259600,0.000000,0.000000,0.250000,0,0);}
.m40_c00101{transform:matrix(0.259680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259680,0.000000,0.000000,0.250000,0,0);}
.ma2_c00101{transform:matrix(0.263875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263875,0.000000,0.000000,0.250000,0,0);}
.m92_c00101{transform:matrix(0.266055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266055,0.000000,0.000000,0.250000,0,0);}
.m1_c00101{transform:matrix(0.266095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266095,0.000000,0.000000,0.250000,0,0);}
.m27_c00101{transform:matrix(0.266480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266480,0.000000,0.000000,0.250000,0,0);}
.m2b_c00101{transform:matrix(0.268005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268005,0.000000,0.000000,0.250000,0,0);}
.m68_c00101{transform:matrix(0.270150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270150,0.000000,0.000000,0.250000,0,0);}
.m30_c00101{transform:matrix(0.271550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271550,0.000000,0.000000,0.250000,0,0);}
.m95_c00101{transform:matrix(0.272210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272210,0.000000,0.000000,0.250000,0,0);}
.ma7_c00101{transform:matrix(0.273810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273810,0.000000,0.000000,0.250000,0,0);}
.mbb_c00101{transform:matrix(0.274650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274650,0.000000,0.000000,0.250000,0,0);}
.md_c00101{transform:matrix(0.275620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275620,0.000000,0.000000,0.250000,0,0);}
.m25_c00101{transform:matrix(0.283240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283240,0.000000,0.000000,0.250000,0,0);}
.m5a_c00101{transform:matrix(0.291745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291745,0.000000,0.000000,0.250000,0,0);}
.m0_c00101{transform:matrix(0.291915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291915,0.000000,0.000000,0.250000,0,0);}
.ma0_c00101{transform:matrix(0.293100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293100,0.000000,0.000000,0.250000,0,0);}
.m9a_c00101{transform:matrix(0.294705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294705,0.000000,0.000000,0.250000,0,0);}
.mb1_c00101{transform:matrix(0.296760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296760,0.000000,0.000000,0.250000,0,0);}
.mb4_c00101{transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);}
.m57_c00101{transform:matrix(0.297895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297895,0.000000,0.000000,0.250000,0,0);}
.m81_c00101{transform:matrix(0.309530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309530,0.000000,0.000000,0.250000,0,0);}
.m9c_c00101{transform:matrix(0.310705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310705,0.000000,0.000000,0.250000,0,0);}
.mb6_c00101{transform:matrix(0.313715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313715,0.000000,0.000000,0.250000,0,0);}
.m72_c00101{transform:matrix(0.314355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314355,0.000000,0.000000,0.250000,0,0);}
.m74_c00101{transform:matrix(0.318960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318960,0.000000,0.000000,0.250000,0,0);}
.m6a_c00101{transform:matrix(0.326270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326270,0.000000,0.000000,0.250000,0,0);}
.m4e_c00101{transform:matrix(0.344310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344310,0.000000,0.000000,0.250000,0,0);}
.mbc_c00101{transform:matrix(0.344985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344985,0.000000,0.000000,0.250000,0,0);}
.m85_c00101{transform:matrix(0.348625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348625,0.000000,0.000000,0.250000,0,0);}
.m6_c00101{transform:matrix(0.348665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348665,0.000000,0.000000,0.250000,0,0);}
.m93_c00101{transform:matrix(0.356815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356815,0.000000,0.000000,0.250000,0,0);}
.m54_c00101{transform:matrix(0.360850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360850,0.000000,0.000000,0.250000,0,0);}
.mc5_c00101{transform:matrix(0.361845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361845,0.000000,0.000000,0.250000,0,0);}
.m3_c00101{transform:matrix(0.362375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362375,0.000000,0.000000,0.250000,0,0);}
.m5e_c00101{transform:matrix(0.364695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364695,0.000000,0.000000,0.250000,0,0);}
.m9f_c00101{transform:matrix(0.368525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368525,0.000000,0.000000,0.250000,0,0);}
.mb5_c00101{transform:matrix(0.370090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370090,0.000000,0.000000,0.250000,0,0);}
.mbe_c00101{transform:matrix(0.375230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375230,0.000000,0.000000,0.250000,0,0);}
.m6c_c00101{transform:matrix(0.377335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377335,0.000000,0.000000,0.250000,0,0);}
.mc0_c00101{transform:matrix(0.378760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378760,0.000000,0.000000,0.250000,0,0);}
.m5_c00101{transform:matrix(0.379050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379050,0.000000,0.000000,0.250000,0,0);}
.m76_c00101{transform:matrix(0.379815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379815,0.000000,0.000000,0.250000,0,0);}
.m6d_c00101{transform:matrix(0.395530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395530,0.000000,0.000000,0.250000,0,0);}
.m99_c00101{transform:matrix(0.398365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398365,0.000000,0.000000,0.250000,0,0);}
.ma9_c00101{transform:matrix(0.401690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401690,0.000000,0.000000,0.250000,0,0);}
.m75_c00101{transform:matrix(0.405465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405465,0.000000,0.000000,0.250000,0,0);}
.m7a_c00101{transform:matrix(0.406520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406520,0.000000,0.000000,0.250000,0,0);}
.m5d_c00101{transform:matrix(0.412510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412510,0.000000,0.000000,0.250000,0,0);}
.m51_c00101{transform:matrix(0.416495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416495,0.000000,0.000000,0.250000,0,0);}
.m4_c00101{transform:matrix(0.419530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419530,0.000000,0.000000,0.250000,0,0);}
.m71_c00101{transform:matrix(0.420355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420355,0.000000,0.000000,0.250000,0,0);}
.mc6_c00101{transform:matrix(0.420690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420690,0.000000,0.000000,0.250000,0,0);}
.m67_c00101{transform:matrix(0.429415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429415,0.000000,0.000000,0.250000,0,0);}
.m59_c00101{transform:matrix(0.431345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431345,0.000000,0.000000,0.250000,0,0);}
.m80_c00101{transform:matrix(0.434825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434825,0.000000,0.000000,0.250000,0,0);}
.m86_c00101{transform:matrix(0.444570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444570,0.000000,0.000000,0.250000,0,0);}
.m87_c00101{transform:matrix(0.450090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450090,0.000000,0.000000,0.250000,0,0);}
.m7_c00101{transform:matrix(0.465680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465680,0.000000,0.000000,0.250000,0,0);}
.m7c_c00101{transform:matrix(0.469085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469085,0.000000,0.000000,0.250000,0,0);}
.m69_c00101{transform:matrix(0.469555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469555,0.000000,0.000000,0.250000,0,0);}
.m5c_c00101{transform:matrix(0.472305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472305,0.000000,0.000000,0.250000,0,0);}
.m73_c00101{transform:matrix(0.480045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480045,0.000000,0.000000,0.250000,0,0);}
.m5b_c00101{transform:matrix(0.480120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480120,0.000000,0.000000,0.250000,0,0);}
.m47_c00101{transform:matrix(0.488700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488700,0.000000,0.000000,0.250000,0,0);}
.m58_c00101{transform:matrix(0.493450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493450,0.000000,0.000000,0.250000,0,0);}
.m98_c00101{transform:matrix(0.496500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.496500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.496500,0.000000,0.000000,0.250000,0,0);}
.mb3_c00101{transform:matrix(0.502910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502910,0.000000,0.000000,0.250000,0,0);}
.m66_c00101{transform:matrix(0.524785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524785,0.000000,0.000000,0.250000,0,0);}
.m8c_c00101{transform:matrix(0.530435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530435,0.000000,0.000000,0.250000,0,0);}
.m70_c00101{transform:matrix(0.544855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544855,0.000000,0.000000,0.250000,0,0);}
.m33_c00101{transform:matrix(0.545950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545950,0.000000,0.000000,0.250000,0,0);}
.mc1_c00101{transform:matrix(0.546800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.546800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.546800,0.000000,0.000000,0.250000,0,0);}
.m7e_c00101{transform:matrix(0.558660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558660,0.000000,0.000000,0.250000,0,0);}
.m7b_c00101{transform:matrix(0.562340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562340,0.000000,0.000000,0.250000,0,0);}
.m8e_c00101{transform:matrix(0.593510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.593510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.593510,0.000000,0.000000,0.250000,0,0);}
.m78_c00101{transform:matrix(0.607275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.607275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.607275,0.000000,0.000000,0.250000,0,0);}
.m7f_c00101{transform:matrix(0.617465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617465,0.000000,0.000000,0.250000,0,0);}
.m8a_c00101{transform:matrix(0.628490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.628490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.628490,0.000000,0.000000,0.250000,0,0);}
.m64_c00101{transform:matrix(0.650025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.650025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.650025,0.000000,0.000000,0.250000,0,0);}
.ma8_c00101{transform:matrix(0.650255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.650255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.650255,0.000000,0.000000,0.250000,0,0);}
.m84_c00101{transform:matrix(0.700960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.700960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.700960,0.000000,0.000000,0.250000,0,0);}
.m89_c00101{transform:matrix(0.713380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.713380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.713380,0.000000,0.000000,0.250000,0,0);}
.m4d_c00101{transform:matrix(0.716440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.716440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.716440,0.000000,0.000000,0.250000,0,0);}
.m8b_c00101{transform:matrix(0.721910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.721910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.721910,0.000000,0.000000,0.250000,0,0);}
.m61_c00101{transform:matrix(0.722945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.722945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.722945,0.000000,0.000000,0.250000,0,0);}
.m8d_c00101{transform:matrix(0.767725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.767725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.767725,0.000000,0.000000,0.250000,0,0);}
.mbf_c00101{transform:matrix(0.768960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.768960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.768960,0.000000,0.000000,0.250000,0,0);}
.m53_c00101{transform:matrix(0.772795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.772795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.772795,0.000000,0.000000,0.250000,0,0);}
.m48_c00101{transform:matrix(0.777340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.777340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.777340,0.000000,0.000000,0.250000,0,0);}
.m50_c00101{transform:matrix(0.810015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.810015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.810015,0.000000,0.000000,0.250000,0,0);}
.m83_c00101{transform:matrix(0.884650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.884650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.884650,0.000000,0.000000,0.250000,0,0);}
.m63_c00101{transform:matrix(0.895535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.895535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.895535,0.000000,0.000000,0.250000,0,0);}
.m62_c00101{transform:matrix(0.928320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.928320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.928320,0.000000,0.000000,0.250000,0,0);}
.m90_c00101{transform:matrix(0.966655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.966655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.966655,0.000000,0.000000,0.250000,0,0);}
.m9d_c00101{transform:matrix(0.968925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.968925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.968925,0.000000,0.000000,0.250000,0,0);}
.m2f_c00101{transform:matrix(0.981450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.981450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.981450,0.000000,0.000000,0.250000,0,0);}
.mb2_c00101{transform:matrix(1.167640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.167640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.167640,0.000000,0.000000,0.250000,0,0);}
.m60_c00101{transform:matrix(1.227260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.227260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.227260,0.000000,0.000000,0.250000,0,0);}
.m9b_c00101{transform:matrix(1.587885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.587885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.587885,0.000000,0.000000,0.250000,0,0);}
.m82_c00101{transform:matrix(1.649335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.649335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.649335,0.000000,0.000000,0.250000,0,0);}
.mc4_c00101{transform:matrix(1.884635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.884635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.884635,0.000000,0.000000,0.250000,0,0);}
.m91_c00101{transform:matrix(2.222290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.222290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.222290,0.000000,0.000000,0.250000,0,0);}
.m6b_c00101{transform:matrix(2.364015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.364015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.364015,0.000000,0.000000,0.250000,0,0);}
.m49_c00101{transform:matrix(2.794940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.794940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.794940,0.000000,0.000000,0.250000,0,0);}
.m46_c00101{transform:matrix(3.442710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.442710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.442710,0.000000,0.000000,0.250000,0,0);}
.m88_c00101{transform:matrix(3.737645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.737645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.737645,0.000000,0.000000,0.250000,0,0);}
.m79_c00101{transform:matrix(4.664510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.664510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.664510,0.000000,0.000000,0.250000,0,0);}
.v0_c00101{vertical-align:0.000000px;}
.ls0_c00101{letter-spacing:0.000000px;}
.sc__c00101{text-shadow:none;}
.sc0_c00101{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__c00101{-webkit-text-stroke:0px transparent;}
.sc0_c00101{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00101{word-spacing:0.000000px;}
.fc0_c00101{color:transparent;}
.fs1_c00101{font-size:24.000000px;}
.fs7_c00101{font-size:30.000000px;}
.fs6_c00101{font-size:60.000000px;}
.fs5_c00101{font-size:66.000000px;}
.fs4_c00101{font-size:72.000000px;}
.fs2_c00101{font-size:84.000000px;}
.fs8_c00101{font-size:90.000000px;}
.fs3_c00101{font-size:102.000000px;}
.fs9_c00101{font-size:114.000000px;}
.fs0_c00101{font-size:258.000000px;}
.y0_c00101{bottom:0.000000px;}
.y62_c00101{bottom:48.775500px;}
.y61_c00101{bottom:83.158500px;}
.y60_c00101{bottom:85.759500px;}
.y5f_c00101{bottom:103.363500px;}
.y5e_c00101{bottom:120.582000px;}
.y5d_c00101{bottom:136.464000px;}
.y5c_c00101{bottom:136.932000px;}
.y5b_c00101{bottom:137.154000px;}
.y5a_c00101{bottom:137.362500px;}
.y59_c00101{bottom:137.647500px;}
.y58_c00101{bottom:138.006000px;}
.y57_c00101{bottom:138.486000px;}
.y56_c00101{bottom:138.942000px;}
.y55_c00101{bottom:139.029000px;}
.y54_c00101{bottom:139.209000px;}
.y53_c00101{bottom:139.318500px;}
.y52_c00101{bottom:153.108000px;}
.y51_c00101{bottom:154.050000px;}
.y50_c00101{bottom:154.443000px;}
.y4f_c00101{bottom:154.758000px;}
.y4e_c00101{bottom:154.995000px;}
.y4d_c00101{bottom:155.346000px;}
.y4c_c00101{bottom:155.458500px;}
.y4b_c00101{bottom:155.854500px;}
.y4a_c00101{bottom:155.953500px;}
.y49_c00101{bottom:156.160500px;}
.y48_c00101{bottom:156.342000px;}
.y47_c00101{bottom:156.793500px;}
.y46_c00101{bottom:156.868500px;}
.y45_c00101{bottom:170.875500px;}
.y44_c00101{bottom:171.627000px;}
.y43_c00101{bottom:172.038000px;}
.y42_c00101{bottom:172.290000px;}
.y41_c00101{bottom:173.004000px;}
.y40_c00101{bottom:173.878500px;}
.y3f_c00101{bottom:189.229500px;}
.y3e_c00101{bottom:189.990000px;}
.y3d_c00101{bottom:190.192500px;}
.y3c_c00101{bottom:190.279500px;}
.y3b_c00101{bottom:190.405500px;}
.y3a_c00101{bottom:190.473000px;}
.y39_c00101{bottom:190.593000px;}
.y38_c00101{bottom:190.851000px;}
.y37_c00101{bottom:191.041500px;}
.y36_c00101{bottom:191.232000px;}
.y35_c00101{bottom:191.335500px;}
.y34_c00101{bottom:191.490000px;}
.y33_c00101{bottom:191.638500px;}
.y32_c00101{bottom:191.949000px;}
.y31_c00101{bottom:191.979000px;}
.y30_c00101{bottom:192.103500px;}
.y2f_c00101{bottom:192.178500px;}
.y2e_c00101{bottom:192.240000px;}
.y2d_c00101{bottom:207.846000px;}
.y2c_c00101{bottom:225.838500px;}
.y2b_c00101{bottom:243.589500px;}
.y2a_c00101{bottom:260.970000px;}
.y29_c00101{bottom:278.067000px;}
.y28_c00101{bottom:295.873500px;}
.y27_c00101{bottom:328.060500px;}
.y26_c00101{bottom:328.761000px;}
.y25_c00101{bottom:328.858500px;}
.y24_c00101{bottom:328.927500px;}
.y23_c00101{bottom:329.193000px;}
.y22_c00101{bottom:329.295000px;}
.y21_c00101{bottom:329.595000px;}
.y20_c00101{bottom:329.749500px;}
.y1f_c00101{bottom:329.922000px;}
.y1e_c00101{bottom:330.186000px;}
.y1d_c00101{bottom:330.324000px;}
.y1c_c00101{bottom:330.390000px;}
.y1b_c00101{bottom:330.675000px;}
.y1a_c00101{bottom:330.892500px;}
.y19_c00101{bottom:330.993000px;}
.y18_c00101{bottom:331.119000px;}
.y17_c00101{bottom:331.291500px;}
.y16_c00101{bottom:371.157000px;}
.y15_c00101{bottom:405.136500px;}
.y14_c00101{bottom:440.329500px;}
.y13_c00101{bottom:440.574000px;}
.y12_c00101{bottom:440.686500px;}
.y11_c00101{bottom:440.830500px;}
.y10_c00101{bottom:441.279000px;}
.yf_c00101{bottom:441.364500px;}
.ye_c00101{bottom:441.595500px;}
.yd_c00101{bottom:441.732000px;}
.yc_c00101{bottom:442.123500px;}
.yb_c00101{bottom:442.267500px;}
.ya_c00101{bottom:442.425000px;}
.y9_c00101{bottom:442.551000px;}
.y8_c00101{bottom:442.930500px;}
.y7_c00101{bottom:443.163000px;}
.y6_c00101{bottom:443.343000px;}
.y5_c00101{bottom:443.868000px;}
.y4_c00101{bottom:443.985000px;}
.y3_c00101{bottom:479.742000px;}
.y2_c00101{bottom:506.250000px;}
.y1_c00101{bottom:510.714000px;}
.h3_c00101{height:24.000000px;}
.h9_c00101{height:30.000000px;}
.h8_c00101{height:60.000000px;}
.h7_c00101{height:66.000000px;}
.h6_c00101{height:72.000000px;}
.h4_c00101{height:84.000000px;}
.ha_c00101{height:90.000000px;}
.h5_c00101{height:102.000000px;}
.hb_c00101{height:114.000000px;}
.h2_c00101{height:258.000000px;}
.h0_c00101{height:711.720000px;}
.h1_c00101{height:711.750000px;}
.w1_c00101{width:945.750000px;}
.w0_c00101{width:946.050000px;}
.x0_c00101{left:0.000000px;}
.x8_c00101{left:90.244500px;}
.x9_c00101{left:109.731000px;}
.x2f_c00101{left:122.763000px;}
.x19_c00101{left:125.280000px;}
.x8a_c00101{left:130.414500px;}
.x94_c00101{left:146.880000px;}
.x91_c00101{left:153.090000px;}
.x80_c00101{left:154.384500px;}
.x1a_c00101{left:156.600000px;}
.x95_c00101{left:160.380000px;}
.x3c_c00101{left:162.813000px;}
.x74_c00101{left:164.655000px;}
.x30_c00101{left:165.924000px;}
.x24_c00101{left:168.750000px;}
.x81_c00101{left:176.254500px;}
.x77_c00101{left:178.414500px;}
.x5e_c00101{left:180.903000px;}
.x4f_c00101{left:185.493000px;}
.x1_c00101{left:187.920000px;}
.xa_c00101{left:197.293500px;}
.x68_c00101{left:199.792500px;}
.x96_c00101{left:202.770000px;}
.x46_c00101{left:204.123000px;}
.x4_c00101{left:208.980000px;}
.x82_c00101{left:212.383500px;}
.x5f_c00101{left:213.843000px;}
.x50_c00101{left:216.813000px;}
.x8b_c00101{left:220.324500px;}
.x31_c00101{left:222.699000px;}
.x97_c00101{left:225.990000px;}
.xb_c00101{left:227.202000px;}
.x83_c00101{left:229.665000px;}
.x69_c00101{left:230.842500px;}
.x1b_c00101{left:236.520000px;}
.x6a_c00101{left:238.398000px;}
.x51_c00101{left:240.573000px;}
.x47_c00101{left:241.653000px;}
.x60_c00101{left:246.243000px;}
.x61_c00101{left:262.173000px;}
.xc_c00101{left:265.842000px;}
.x25_c00101{left:267.570000px;}
.x78_c00101{left:268.630500px;}
.x52_c00101{left:271.893000px;}
.x92_c00101{left:273.510000px;}
.x1c_c00101{left:277.560000px;}
.x3d_c00101{left:282.153000px;}
.x8c_c00101{left:288.904500px;}
.x93_c00101{left:294.840000px;}
.x1d_c00101{left:297.540000px;}
.x79_c00101{left:304.816500px;}
.x48_c00101{left:307.803000px;}
.x6b_c00101{left:315.867000px;}
.x84_c00101{left:320.991000px;}
.x62_c00101{left:324.813000px;}
.xd_c00101{left:329.022000px;}
.x5_c00101{left:330.210000px;}
.x40_c00101{left:336.423000px;}
.x49_c00101{left:339.663000px;}
.x1e_c00101{left:346.680000px;}
.x3_c00101{left:348.570000px;}
.xe_c00101{left:350.023500px;}
.x6c_c00101{left:353.146500px;}
.x8d_c00101{left:356.134500px;}
.x32_c00101{left:364.717500px;}
.x53_c00101{left:366.933000px;}
.xf_c00101{left:376.272000px;}
.x6_c00101{left:379.620000px;}
.x75_c00101{left:383.121000px;}
.x5c_c00101{left:384.213000px;}
.x26_c00101{left:388.260000px;}
.x6d_c00101{left:391.750500px;}
.x33_c00101{left:399.282000px;}
.x10_c00101{left:400.300500px;}
.x4a_c00101{left:403.923000px;}
.x41_c00101{left:412.293000px;}
.x85_c00101{left:417.133500px;}
.x27_c00101{left:418.500000px;}
.x54_c00101{left:425.523000px;}
.x5d_c00101{left:444.153000px;}
.x7a_c00101{left:445.426500px;}
.x4b_c00101{left:452.523000px;}
.x42_c00101{left:464.133000px;}
.x11_c00101{left:465.642000px;}
.x7b_c00101{left:467.893500px;}
.x4c_c00101{left:473.313000px;}
.x1f_c00101{left:477.630000px;}
.x12_c00101{left:488.319000px;}
.x20_c00101{left:492.210000px;}
.x28_c00101{left:494.370000px;}
.x4d_c00101{left:495.453000px;}
.x34_c00101{left:508.093500px;}
.x2_c00101{left:510.570000px;}
.x6e_c00101{left:512.722500px;}
.x63_c00101{left:515.163000px;}
.x21_c00101{left:516.780000px;}
.x29_c00101{left:519.210000px;}
.x7_c00101{left:522.180000px;}
.x55_c00101{left:524.613000px;}
.x13_c00101{left:526.695000px;}
.x7c_c00101{left:538.098000px;}
.x14_c00101{left:540.970500px;}
.x86_c00101{left:545.611500px;}
.x35_c00101{left:546.655500px;}
.x64_c00101{left:552.153000px;}
.x2a_c00101{left:555.930000px;}
.x22_c00101{left:561.330000px;}
.x8e_c00101{left:567.274500px;}
.x3e_c00101{left:572.133000px;}
.x56_c00101{left:578.073000px;}
.x2b_c00101{left:583.470000px;}
.x7d_c00101{left:585.616500px;}
.x87_c00101{left:587.239500px;}
.x6f_c00101{left:607.210500px;}
.x57_c00101{left:609.663000px;}
.x2c_c00101{left:614.250000px;}
.x15_c00101{left:615.759000px;}
.x58_c00101{left:620.193000px;}
.x36_c00101{left:621.493500px;}
.x4e_c00101{left:622.623000px;}
.x70_c00101{left:623.950500px;}
.x88_c00101{left:631.521000px;}
.x43_c00101{left:635.853000px;}
.x16_c00101{left:639.787500px;}
.x23_c00101{left:643.410000px;}
.x37_c00101{left:647.131500px;}
.x7e_c00101{left:648.528000px;}
.x8f_c00101{left:653.674500px;}
.x71_c00101{left:655.540500px;}
.x17_c00101{left:658.417500px;}
.x59_c00101{left:660.153000px;}
.x72_c00101{left:677.410500px;}
.x65_c00101{left:679.593000px;}
.x5a_c00101{left:689.853000px;}
.x2d_c00101{left:697.140000px;}
.x18_c00101{left:699.189000px;}
.x90_c00101{left:709.294500px;}
.x38_c00101{left:713.563500px;}
.x44_c00101{left:715.773000px;}
.x89_c00101{left:725.167500px;}
.x7f_c00101{left:727.057500px;}
.x66_c00101{left:728.193000px;}
.x2e_c00101{left:729.270000px;}
.x39_c00101{left:730.842000px;}
.x3a_c00101{left:755.142000px;}
.x76_c00101{left:915.511500px;}
.x73_c00101{left:918.018000px;}
.x67_c00101{left:920.703000px;}
.x5b_c00101{left:922.863000px;}
.x45_c00101{left:924.213000px;}
.x3b_c00101{left:930.345000px;}
.x3f_c00101{left:935.283000px;}
@media print{
.v0_c00101{vertical-align:0.000000pt;}
.ls0_c00101{letter-spacing:0.000000pt;}
.ws0_c00101{word-spacing:0.000000pt;}
.fs1_c00101{font-size:21.333333pt;}
.fs7_c00101{font-size:26.666667pt;}
.fs6_c00101{font-size:53.333333pt;}
.fs5_c00101{font-size:58.666667pt;}
.fs4_c00101{font-size:64.000000pt;}
.fs2_c00101{font-size:74.666667pt;}
.fs8_c00101{font-size:80.000000pt;}
.fs3_c00101{font-size:90.666667pt;}
.fs9_c00101{font-size:101.333333pt;}
.fs0_c00101{font-size:229.333333pt;}
.y0_c00101{bottom:0.000000pt;}
.y62_c00101{bottom:43.356000pt;}
.y61_c00101{bottom:73.918667pt;}
.y60_c00101{bottom:76.230667pt;}
.y5f_c00101{bottom:91.878667pt;}
.y5e_c00101{bottom:107.184000pt;}
.y5d_c00101{bottom:121.301333pt;}
.y5c_c00101{bottom:121.717333pt;}
.y5b_c00101{bottom:121.914667pt;}
.y5a_c00101{bottom:122.100000pt;}
.y59_c00101{bottom:122.353333pt;}
.y58_c00101{bottom:122.672000pt;}
.y57_c00101{bottom:123.098667pt;}
.y56_c00101{bottom:123.504000pt;}
.y55_c00101{bottom:123.581333pt;}
.y54_c00101{bottom:123.741333pt;}
.y53_c00101{bottom:123.838667pt;}
.y52_c00101{bottom:136.096000pt;}
.y51_c00101{bottom:136.933333pt;}
.y50_c00101{bottom:137.282667pt;}
.y4f_c00101{bottom:137.562667pt;}
.y4e_c00101{bottom:137.773333pt;}
.y4d_c00101{bottom:138.085333pt;}
.y4c_c00101{bottom:138.185333pt;}
.y4b_c00101{bottom:138.537333pt;}
.y4a_c00101{bottom:138.625333pt;}
.y49_c00101{bottom:138.809333pt;}
.y48_c00101{bottom:138.970667pt;}
.y47_c00101{bottom:139.372000pt;}
.y46_c00101{bottom:139.438667pt;}
.y45_c00101{bottom:151.889333pt;}
.y44_c00101{bottom:152.557333pt;}
.y43_c00101{bottom:152.922667pt;}
.y42_c00101{bottom:153.146667pt;}
.y41_c00101{bottom:153.781333pt;}
.y40_c00101{bottom:154.558667pt;}
.y3f_c00101{bottom:168.204000pt;}
.y3e_c00101{bottom:168.880000pt;}
.y3d_c00101{bottom:169.060000pt;}
.y3c_c00101{bottom:169.137333pt;}
.y3b_c00101{bottom:169.249333pt;}
.y3a_c00101{bottom:169.309333pt;}
.y39_c00101{bottom:169.416000pt;}
.y38_c00101{bottom:169.645333pt;}
.y37_c00101{bottom:169.814667pt;}
.y36_c00101{bottom:169.984000pt;}
.y35_c00101{bottom:170.076000pt;}
.y34_c00101{bottom:170.213333pt;}
.y33_c00101{bottom:170.345333pt;}
.y32_c00101{bottom:170.621333pt;}
.y31_c00101{bottom:170.648000pt;}
.y30_c00101{bottom:170.758667pt;}
.y2f_c00101{bottom:170.825333pt;}
.y2e_c00101{bottom:170.880000pt;}
.y2d_c00101{bottom:184.752000pt;}
.y2c_c00101{bottom:200.745333pt;}
.y2b_c00101{bottom:216.524000pt;}
.y2a_c00101{bottom:231.973333pt;}
.y29_c00101{bottom:247.170667pt;}
.y28_c00101{bottom:262.998667pt;}
.y27_c00101{bottom:291.609333pt;}
.y26_c00101{bottom:292.232000pt;}
.y25_c00101{bottom:292.318667pt;}
.y24_c00101{bottom:292.380000pt;}
.y23_c00101{bottom:292.616000pt;}
.y22_c00101{bottom:292.706667pt;}
.y21_c00101{bottom:292.973333pt;}
.y20_c00101{bottom:293.110667pt;}
.y1f_c00101{bottom:293.264000pt;}
.y1e_c00101{bottom:293.498667pt;}
.y1d_c00101{bottom:293.621333pt;}
.y1c_c00101{bottom:293.680000pt;}
.y1b_c00101{bottom:293.933333pt;}
.y1a_c00101{bottom:294.126667pt;}
.y19_c00101{bottom:294.216000pt;}
.y18_c00101{bottom:294.328000pt;}
.y17_c00101{bottom:294.481333pt;}
.y16_c00101{bottom:329.917333pt;}
.y15_c00101{bottom:360.121333pt;}
.y14_c00101{bottom:391.404000pt;}
.y13_c00101{bottom:391.621333pt;}
.y12_c00101{bottom:391.721333pt;}
.y11_c00101{bottom:391.849333pt;}
.y10_c00101{bottom:392.248000pt;}
.yf_c00101{bottom:392.324000pt;}
.ye_c00101{bottom:392.529333pt;}
.yd_c00101{bottom:392.650667pt;}
.yc_c00101{bottom:392.998667pt;}
.yb_c00101{bottom:393.126667pt;}
.ya_c00101{bottom:393.266667pt;}
.y9_c00101{bottom:393.378667pt;}
.y8_c00101{bottom:393.716000pt;}
.y7_c00101{bottom:393.922667pt;}
.y6_c00101{bottom:394.082667pt;}
.y5_c00101{bottom:394.549333pt;}
.y4_c00101{bottom:394.653333pt;}
.y3_c00101{bottom:426.437333pt;}
.y2_c00101{bottom:450.000000pt;}
.y1_c00101{bottom:453.968000pt;}
.h3_c00101{height:21.333333pt;}
.h9_c00101{height:26.666667pt;}
.h8_c00101{height:53.333333pt;}
.h7_c00101{height:58.666667pt;}
.h6_c00101{height:64.000000pt;}
.h4_c00101{height:74.666667pt;}
.ha_c00101{height:80.000000pt;}
.h5_c00101{height:90.666667pt;}
.hb_c00101{height:101.333333pt;}
.h2_c00101{height:229.333333pt;}
.h0_c00101{height:632.640000pt;}
.h1_c00101{height:632.666667pt;}
.w1_c00101{width:840.666667pt;}
.w0_c00101{width:840.933333pt;}
.x0_c00101{left:0.000000pt;}
.x8_c00101{left:80.217333pt;}
.x9_c00101{left:97.538667pt;}
.x2f_c00101{left:109.122667pt;}
.x19_c00101{left:111.360000pt;}
.x8a_c00101{left:115.924000pt;}
.x94_c00101{left:130.560000pt;}
.x91_c00101{left:136.080000pt;}
.x80_c00101{left:137.230667pt;}
.x1a_c00101{left:139.200000pt;}
.x95_c00101{left:142.560000pt;}
.x3c_c00101{left:144.722667pt;}
.x74_c00101{left:146.360000pt;}
.x30_c00101{left:147.488000pt;}
.x24_c00101{left:150.000000pt;}
.x81_c00101{left:156.670667pt;}
.x77_c00101{left:158.590667pt;}
.x5e_c00101{left:160.802667pt;}
.x4f_c00101{left:164.882667pt;}
.x1_c00101{left:167.040000pt;}
.xa_c00101{left:175.372000pt;}
.x68_c00101{left:177.593333pt;}
.x96_c00101{left:180.240000pt;}
.x46_c00101{left:181.442667pt;}
.x4_c00101{left:185.760000pt;}
.x82_c00101{left:188.785333pt;}
.x5f_c00101{left:190.082667pt;}
.x50_c00101{left:192.722667pt;}
.x8b_c00101{left:195.844000pt;}
.x31_c00101{left:197.954667pt;}
.x97_c00101{left:200.880000pt;}
.xb_c00101{left:201.957333pt;}
.x83_c00101{left:204.146667pt;}
.x69_c00101{left:205.193333pt;}
.x1b_c00101{left:210.240000pt;}
.x6a_c00101{left:211.909333pt;}
.x51_c00101{left:213.842667pt;}
.x47_c00101{left:214.802667pt;}
.x60_c00101{left:218.882667pt;}
.x61_c00101{left:233.042667pt;}
.xc_c00101{left:236.304000pt;}
.x25_c00101{left:237.840000pt;}
.x78_c00101{left:238.782667pt;}
.x52_c00101{left:241.682667pt;}
.x92_c00101{left:243.120000pt;}
.x1c_c00101{left:246.720000pt;}
.x3d_c00101{left:250.802667pt;}
.x8c_c00101{left:256.804000pt;}
.x93_c00101{left:262.080000pt;}
.x1d_c00101{left:264.480000pt;}
.x79_c00101{left:270.948000pt;}
.x48_c00101{left:273.602667pt;}
.x6b_c00101{left:280.770667pt;}
.x84_c00101{left:285.325333pt;}
.x62_c00101{left:288.722667pt;}
.xd_c00101{left:292.464000pt;}
.x5_c00101{left:293.520000pt;}
.x40_c00101{left:299.042667pt;}
.x49_c00101{left:301.922667pt;}
.x1e_c00101{left:308.160000pt;}
.x3_c00101{left:309.840000pt;}
.xe_c00101{left:311.132000pt;}
.x6c_c00101{left:313.908000pt;}
.x8d_c00101{left:316.564000pt;}
.x32_c00101{left:324.193333pt;}
.x53_c00101{left:326.162667pt;}
.xf_c00101{left:334.464000pt;}
.x6_c00101{left:337.440000pt;}
.x75_c00101{left:340.552000pt;}
.x5c_c00101{left:341.522667pt;}
.x26_c00101{left:345.120000pt;}
.x6d_c00101{left:348.222667pt;}
.x33_c00101{left:354.917333pt;}
.x10_c00101{left:355.822667pt;}
.x4a_c00101{left:359.042667pt;}
.x41_c00101{left:366.482667pt;}
.x85_c00101{left:370.785333pt;}
.x27_c00101{left:372.000000pt;}
.x54_c00101{left:378.242667pt;}
.x5d_c00101{left:394.802667pt;}
.x7a_c00101{left:395.934667pt;}
.x4b_c00101{left:402.242667pt;}
.x42_c00101{left:412.562667pt;}
.x11_c00101{left:413.904000pt;}
.x7b_c00101{left:415.905333pt;}
.x4c_c00101{left:420.722667pt;}
.x1f_c00101{left:424.560000pt;}
.x12_c00101{left:434.061333pt;}
.x20_c00101{left:437.520000pt;}
.x28_c00101{left:439.440000pt;}
.x4d_c00101{left:440.402667pt;}
.x34_c00101{left:451.638667pt;}
.x2_c00101{left:453.840000pt;}
.x6e_c00101{left:455.753333pt;}
.x63_c00101{left:457.922667pt;}
.x21_c00101{left:459.360000pt;}
.x29_c00101{left:461.520000pt;}
.x7_c00101{left:464.160000pt;}
.x55_c00101{left:466.322667pt;}
.x13_c00101{left:468.173333pt;}
.x7c_c00101{left:478.309333pt;}
.x14_c00101{left:480.862667pt;}
.x86_c00101{left:484.988000pt;}
.x35_c00101{left:485.916000pt;}
.x64_c00101{left:490.802667pt;}
.x2a_c00101{left:494.160000pt;}
.x22_c00101{left:498.960000pt;}
.x8e_c00101{left:504.244000pt;}
.x3e_c00101{left:508.562667pt;}
.x56_c00101{left:513.842667pt;}
.x2b_c00101{left:518.640000pt;}
.x7d_c00101{left:520.548000pt;}
.x87_c00101{left:521.990667pt;}
.x6f_c00101{left:539.742667pt;}
.x57_c00101{left:541.922667pt;}
.x2c_c00101{left:546.000000pt;}
.x15_c00101{left:547.341333pt;}
.x58_c00101{left:551.282667pt;}
.x36_c00101{left:552.438667pt;}
.x4e_c00101{left:553.442667pt;}
.x70_c00101{left:554.622667pt;}
.x88_c00101{left:561.352000pt;}
.x43_c00101{left:565.202667pt;}
.x16_c00101{left:568.700000pt;}
.x23_c00101{left:571.920000pt;}
.x37_c00101{left:575.228000pt;}
.x7e_c00101{left:576.469333pt;}
.x8f_c00101{left:581.044000pt;}
.x71_c00101{left:582.702667pt;}
.x17_c00101{left:585.260000pt;}
.x59_c00101{left:586.802667pt;}
.x72_c00101{left:602.142667pt;}
.x65_c00101{left:604.082667pt;}
.x5a_c00101{left:613.202667pt;}
.x2d_c00101{left:619.680000pt;}
.x18_c00101{left:621.501333pt;}
.x90_c00101{left:630.484000pt;}
.x38_c00101{left:634.278667pt;}
.x44_c00101{left:636.242667pt;}
.x89_c00101{left:644.593333pt;}
.x7f_c00101{left:646.273333pt;}
.x66_c00101{left:647.282667pt;}
.x2e_c00101{left:648.240000pt;}
.x39_c00101{left:649.637333pt;}
.x3a_c00101{left:671.237333pt;}
.x76_c00101{left:813.788000pt;}
.x73_c00101{left:816.016000pt;}
.x67_c00101{left:818.402667pt;}
.x5b_c00101{left:820.322667pt;}
.x45_c00101{left:821.522667pt;}
.x3b_c00101{left:826.973333pt;}
.x3f_c00101{left:831.362667pt;}
}





/* 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_c00102 {
    display:none;
  }
  .loading-indicator_c00102.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00102 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_c00102 { 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_c00102" -> "#page-container .classname_c00102")
 */
.pf_c00102 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00102 { /* 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_c00102.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00102 { /* 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_c00102 { /* 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_c00102 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00102 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00102 {overflow:visible;}
  }
}
.c_c00102 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00102 { /* 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_c00102:after { /* webkit #35443 */
  content: '';
}
.t_c00102:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00102 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 */
}
.__c00102 { /* 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_c00102 { /* info for Javascript */
  display:none;
}
.l_c00102 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00102 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00102 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00102: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_c00102 {
    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_c00102.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00102.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_c00102 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00102{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00102;src:url('chunks/assets/font_1d82f9a8aaa5ece01c4c3bb7.woff2')format("woff");}.ff1_c00102{font-family:ff1_c00102;line-height:1.000000;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;}
.m11_c00102{transform:matrix(0.037124,0.000223,-0.001500,0.249996,0,0);-ms-transform:matrix(0.037124,0.000223,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.037124,0.000223,-0.001500,0.249996,0,0);}
.m1b_c00102{transform:matrix(0.064888,0.001233,-0.004749,0.249955,0,0);-ms-transform:matrix(0.064888,0.001233,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.064888,0.001233,-0.004749,0.249955,0,0);}
.m13_c00102{transform:matrix(0.080434,0.000483,-0.001500,0.249996,0,0);-ms-transform:matrix(0.080434,0.000483,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.080434,0.000483,-0.001500,0.249996,0,0);}
.m1d_c00102{transform:matrix(0.100607,0.001912,-0.004749,0.249955,0,0);-ms-transform:matrix(0.100607,0.001912,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.100607,0.001912,-0.004749,0.249955,0,0);}
.ma_c00102{transform:matrix(0.123010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123010,0.000000,0.000000,0.250000,0,0);}
.m1e_c00102{transform:matrix(0.148948,0.002830,-0.004749,0.249955,0,0);-ms-transform:matrix(0.148948,0.002830,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.148948,0.002830,-0.004749,0.249955,0,0);}
.m1c_c00102{transform:matrix(0.149763,0.002845,-0.004749,0.249955,0,0);-ms-transform:matrix(0.149763,0.002845,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.149763,0.002845,-0.004749,0.249955,0,0);}
.m20_c00102{transform:matrix(0.159196,0.003025,-0.004749,0.249955,0,0);-ms-transform:matrix(0.159196,0.003025,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.159196,0.003025,-0.004749,0.249955,0,0);}
.m21_c00102{transform:matrix(0.162501,0.003088,-0.004749,0.249955,0,0);-ms-transform:matrix(0.162501,0.003088,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.162501,0.003088,-0.004749,0.249955,0,0);}
.m16_c00102{transform:matrix(0.168282,0.001010,-0.001500,0.249996,0,0);-ms-transform:matrix(0.168282,0.001010,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.168282,0.001010,-0.001500,0.249996,0,0);}
.m1f_c00102{transform:matrix(0.179968,0.003419,-0.004749,0.249955,0,0);-ms-transform:matrix(0.179968,0.003419,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.179968,0.003419,-0.004749,0.249955,0,0);}
.m19_c00102{transform:matrix(0.194267,0.001166,-0.001500,0.249996,0,0);-ms-transform:matrix(0.194267,0.001166,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.194267,0.001166,-0.001500,0.249996,0,0);}
.mb_c00102{transform:matrix(0.196295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196295,0.000000,0.000000,0.250000,0,0);}
.m3_c00102{transform:matrix(0.227116,0.002498,-0.002750,0.249985,0,0);-ms-transform:matrix(0.227116,0.002498,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.227116,0.002498,-0.002750,0.249985,0,0);}
.m25_c00102{transform:matrix(0.232908,0.004425,-0.004749,0.249955,0,0);-ms-transform:matrix(0.232908,0.004425,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.232908,0.004425,-0.004749,0.249955,0,0);}
.m8_c00102{transform:matrix(0.237216,0.002609,-0.002750,0.249985,0,0);-ms-transform:matrix(0.237216,0.002609,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.237216,0.002609,-0.002750,0.249985,0,0);}
.m14_c00102{transform:matrix(0.242826,0.001457,-0.001500,0.249996,0,0);-ms-transform:matrix(0.242826,0.001457,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.242826,0.001457,-0.001500,0.249996,0,0);}
.m1a_c00102{transform:matrix(0.248230,0.004716,-0.004749,0.249955,0,0);-ms-transform:matrix(0.248230,0.004716,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.248230,0.004716,-0.004749,0.249955,0,0);}
.m9_c00102{transform:matrix(0.250660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250660,0.000000,0.000000,0.250000,0,0);}
.m24_c00102{transform:matrix(0.283714,0.005391,-0.004749,0.249955,0,0);-ms-transform:matrix(0.283714,0.005391,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.283714,0.005391,-0.004749,0.249955,0,0);}
.m23_c00102{transform:matrix(0.294872,0.005603,-0.004749,0.249955,0,0);-ms-transform:matrix(0.294872,0.005603,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.294872,0.005603,-0.004749,0.249955,0,0);}
.m18_c00102{transform:matrix(0.302260,0.001814,-0.001500,0.249996,0,0);-ms-transform:matrix(0.302260,0.001814,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.302260,0.001814,-0.001500,0.249996,0,0);}
.mf_c00102{transform:matrix(0.305854,0.001835,-0.001500,0.249996,0,0);-ms-transform:matrix(0.305854,0.001835,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.305854,0.001835,-0.001500,0.249996,0,0);}
.m17_c00102{transform:matrix(0.316029,0.001896,-0.001500,0.249996,0,0);-ms-transform:matrix(0.316029,0.001896,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.316029,0.001896,-0.001500,0.249996,0,0);}
.m15_c00102{transform:matrix(0.321824,0.001931,-0.001500,0.249996,0,0);-ms-transform:matrix(0.321824,0.001931,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.321824,0.001931,-0.001500,0.249996,0,0);}
.m12_c00102{transform:matrix(0.333759,0.002003,-0.001500,0.249996,0,0);-ms-transform:matrix(0.333759,0.002003,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.333759,0.002003,-0.001500,0.249996,0,0);}
.m5_c00102{transform:matrix(0.335565,0.003691,-0.002750,0.249985,0,0);-ms-transform:matrix(0.335565,0.003691,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.335565,0.003691,-0.002750,0.249985,0,0);}
.m22_c00102{transform:matrix(0.335839,0.006381,-0.004749,0.249955,0,0);-ms-transform:matrix(0.335839,0.006381,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.335839,0.006381,-0.004749,0.249955,0,0);}
.m6_c00102{transform:matrix(0.355998,0.003916,-0.002750,0.249985,0,0);-ms-transform:matrix(0.355998,0.003916,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.355998,0.003916,-0.002750,0.249985,0,0);}
.m4_c00102{transform:matrix(0.377842,0.004156,-0.002750,0.249985,0,0);-ms-transform:matrix(0.377842,0.004156,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.377842,0.004156,-0.002750,0.249985,0,0);}
.m2_c00102{transform:matrix(0.388956,0.004279,-0.002750,0.249985,0,0);-ms-transform:matrix(0.388956,0.004279,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.388956,0.004279,-0.002750,0.249985,0,0);}
.m10_c00102{transform:matrix(0.390243,0.002341,-0.001500,0.249996,0,0);-ms-transform:matrix(0.390243,0.002341,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.390243,0.002341,-0.001500,0.249996,0,0);}
.me_c00102{transform:matrix(0.463677,0.002782,-0.001500,0.249996,0,0);-ms-transform:matrix(0.463677,0.002782,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.463677,0.002782,-0.001500,0.249996,0,0);}
.m7_c00102{transform:matrix(0.469662,0.005166,-0.002750,0.249985,0,0);-ms-transform:matrix(0.469662,0.005166,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.469662,0.005166,-0.002750,0.249985,0,0);}
.md_c00102{transform:matrix(0.499816,0.002999,-0.001500,0.249996,0,0);-ms-transform:matrix(0.499816,0.002999,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.499816,0.002999,-0.001500,0.249996,0,0);}
.m0_c00102{transform:matrix(0.598215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598215,0.000000,0.000000,0.250000,0,0);}
.m1_c00102{transform:matrix(0.613388,0.006747,-0.002750,0.249985,0,0);-ms-transform:matrix(0.613388,0.006747,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.613388,0.006747,-0.002750,0.249985,0,0);}
.m26_c00102{transform:matrix(0.991256,0.018834,-0.004749,0.249955,0,0);-ms-transform:matrix(0.991256,0.018834,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.991256,0.018834,-0.004749,0.249955,0,0);}
.mc_c00102{transform:matrix(1.025302,0.006152,-0.001500,0.249996,0,0);-ms-transform:matrix(1.025302,0.006152,-0.001500,0.249996,0,0);-webkit-transform:matrix(1.025302,0.006152,-0.001500,0.249996,0,0);}
.m27_c00102{transform:matrix(1.050215,0.019954,-0.004749,0.249955,0,0);-ms-transform:matrix(1.050215,0.019954,-0.004749,0.249955,0,0);-webkit-transform:matrix(1.050215,0.019954,-0.004749,0.249955,0,0);}
.v0_c00102{vertical-align:0.000000px;}
.ls0_c00102{letter-spacing:0.000000px;}
.sc__c00102{text-shadow:none;}
.sc0_c00102{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__c00102{-webkit-text-stroke:0px transparent;}
.sc0_c00102{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00102{word-spacing:0.000000px;}
.fc0_c00102{color:transparent;}
.fs0_c00102{font-size:30.000000px;}
.fs5_c00102{font-size:30.005415px;}
.fs2_c00102{font-size:36.000000px;}
.fs3_c00102{font-size:72.001296px;}
.fs1_c00102{font-size:90.005445px;}
.fs6_c00102{font-size:102.018409px;}
.fs4_c00102{font-size:126.002268px;}
.y0_c00102{bottom:0.000000px;}
.y26_c00102{bottom:294.309765px;}
.y25_c00102{bottom:297.014060px;}
.y24_c00102{bottom:297.714944px;}
.y23_c00102{bottom:298.876359px;}
.y22_c00102{bottom:300.086060px;}
.y21_c00102{bottom:301.390620px;}
.y20_c00102{bottom:304.288539px;}
.y1f_c00102{bottom:314.371448px;}
.y1e_c00102{bottom:314.833661px;}
.y1d_c00102{bottom:316.649652px;}
.y1c_c00102{bottom:317.669838px;}
.y1b_c00102{bottom:318.075707px;}
.y1a_c00102{bottom:319.082754px;}
.y19_c00102{bottom:320.221500px;}
.y18_c00102{bottom:330.418254px;}
.y17_c00102{bottom:330.926961px;}
.y16_c00102{bottom:331.612212px;}
.y15_c00102{bottom:331.929426px;}
.y14_c00102{bottom:332.349078px;}
.y13_c00102{bottom:333.679368px;}
.y12_c00102{bottom:333.827796px;}
.y11_c00102{bottom:334.529895px;}
.y10_c00102{bottom:380.068164px;}
.yf_c00102{bottom:381.338613px;}
.ye_c00102{bottom:381.601071px;}
.yd_c00102{bottom:381.774411px;}
.yc_c00102{bottom:382.373802px;}
.yb_c00102{bottom:383.130000px;}
.y9_c00102{bottom:394.198354px;}
.ya_c00102{bottom:394.468500px;}
.y8_c00102{bottom:404.198899px;}
.y7_c00102{bottom:404.994810px;}
.y6_c00102{bottom:406.488637px;}
.y5_c00102{bottom:407.343948px;}
.y4_c00102{bottom:407.884785px;}
.y3_c00102{bottom:409.948489px;}
.y2_c00102{bottom:410.685000px;}
.y1_c00102{bottom:483.156000px;}
.h2_c00102{height:30.000000px;}
.h7_c00102{height:30.005415px;}
.h4_c00102{height:36.000000px;}
.h5_c00102{height:72.001296px;}
.h3_c00102{height:90.005445px;}
.h8_c00102{height:102.018409px;}
.h6_c00102{height:126.002268px;}
.h0_c00102{height:711.720000px;}
.h1_c00102{height:711.750000px;}
.w1_c00102{width:945.750000px;}
.w0_c00102{width:946.050000px;}
.x0_c00102{left:0.000000px;}
.x13_c00102{left:37.068243px;}
.xd_c00102{left:55.593000px;}
.x22_c00102{left:64.868328px;}
.x14_c00102{left:154.084743px;}
.x1_c00102{left:170.100000px;}
.x2_c00102{left:174.621000px;}
.x15_c00102{left:178.822743px;}
.xe_c00102{left:181.626000px;}
.x9_c00102{left:184.681386px;}
.x3_c00102{left:241.576500px;}
.x23_c00102{left:245.979645px;}
.xa_c00102{left:253.800000px;}
.xf_c00102{left:281.524500px;}
.x10_c00102{left:310.414500px;}
.x24_c00102{left:327.513790px;}
.x11_c00102{left:354.157500px;}
.xb_c00102{left:357.210000px;}
.x16_c00102{left:400.537743px;}
.x25_c00102{left:403.107594px;}
.x4_c00102{left:429.186000px;}
.x1b_c00102{left:441.888000px;}
.x17_c00102{left:470.479743px;}
.x26_c00102{left:475.686226px;}
.x5_c00102{left:478.353000px;}
.x1c_c00102{left:501.822000px;}
.x27_c00102{left:519.524734px;}
.x18_c00102{left:523.348743px;}
.x1d_c00102{left:554.824500px;}
.x6_c00102{left:556.108500px;}
.x12_c00102{left:565.899000px;}
.x1e_c00102{left:576.186000px;}
.x1f_c00102{left:629.880000px;}
.x19_c00102{left:637.557243px;}
.x28_c00102{left:688.549867px;}
.x7_c00102{left:691.911000px;}
.x1a_c00102{left:722.341743px;}
.x20_c00102{left:725.458500px;}
.x21_c00102{left:749.785500px;}
.x8_c00102{left:764.266500px;}
.xc_c00102{left:928.800000px;}
@media print{
.v0_c00102{vertical-align:0.000000pt;}
.ls0_c00102{letter-spacing:0.000000pt;}
.ws0_c00102{word-spacing:0.000000pt;}
.fs0_c00102{font-size:26.666667pt;}
.fs5_c00102{font-size:26.671480pt;}
.fs2_c00102{font-size:32.000000pt;}
.fs3_c00102{font-size:64.001152pt;}
.fs1_c00102{font-size:80.004840pt;}
.fs6_c00102{font-size:90.683031pt;}
.fs4_c00102{font-size:112.002016pt;}
.y0_c00102{bottom:0.000000pt;}
.y26_c00102{bottom:261.608680pt;}
.y25_c00102{bottom:264.012497pt;}
.y24_c00102{bottom:264.635505pt;}
.y23_c00102{bottom:265.667875pt;}
.y22_c00102{bottom:266.743164pt;}
.y21_c00102{bottom:267.902773pt;}
.y20_c00102{bottom:270.478701pt;}
.y1f_c00102{bottom:279.441287pt;}
.y1e_c00102{bottom:279.852143pt;}
.y1d_c00102{bottom:281.466357pt;}
.y1c_c00102{bottom:282.373189pt;}
.y1b_c00102{bottom:282.733961pt;}
.y1a_c00102{bottom:283.629115pt;}
.y19_c00102{bottom:284.641333pt;}
.y18_c00102{bottom:293.705115pt;}
.y17_c00102{bottom:294.157299pt;}
.y16_c00102{bottom:294.766411pt;}
.y15_c00102{bottom:295.048379pt;}
.y14_c00102{bottom:295.421403pt;}
.y13_c00102{bottom:296.603883pt;}
.y12_c00102{bottom:296.735819pt;}
.y11_c00102{bottom:297.359907pt;}
.y10_c00102{bottom:337.838368pt;}
.yf_c00102{bottom:338.967656pt;}
.ye_c00102{bottom:339.200952pt;}
.yd_c00102{bottom:339.355032pt;}
.yc_c00102{bottom:339.887824pt;}
.yb_c00102{bottom:340.560000pt;}
.y9_c00102{bottom:350.398537pt;}
.ya_c00102{bottom:350.638667pt;}
.y8_c00102{bottom:359.287911pt;}
.y7_c00102{bottom:359.995387pt;}
.y6_c00102{bottom:361.323233pt;}
.y5_c00102{bottom:362.083509pt;}
.y4_c00102{bottom:362.564253pt;}
.y3_c00102{bottom:364.398657pt;}
.y2_c00102{bottom:365.053333pt;}
.y1_c00102{bottom:429.472000pt;}
.h2_c00102{height:26.666667pt;}
.h7_c00102{height:26.671480pt;}
.h4_c00102{height:32.000000pt;}
.h5_c00102{height:64.001152pt;}
.h3_c00102{height:80.004840pt;}
.h8_c00102{height:90.683031pt;}
.h6_c00102{height:112.002016pt;}
.h0_c00102{height:632.640000pt;}
.h1_c00102{height:632.666667pt;}
.w1_c00102{width:840.666667pt;}
.w0_c00102{width:840.933333pt;}
.x0_c00102{left:0.000000pt;}
.x13_c00102{left:32.949549pt;}
.xd_c00102{left:49.416000pt;}
.x22_c00102{left:57.660736pt;}
.x14_c00102{left:136.964216pt;}
.x1_c00102{left:151.200000pt;}
.x2_c00102{left:155.218667pt;}
.x15_c00102{left:158.953549pt;}
.xe_c00102{left:161.445333pt;}
.x9_c00102{left:164.161232pt;}
.x3_c00102{left:214.734667pt;}
.x23_c00102{left:218.648573pt;}
.xa_c00102{left:225.600000pt;}
.xf_c00102{left:250.244000pt;}
.x10_c00102{left:275.924000pt;}
.x24_c00102{left:291.123369pt;}
.x11_c00102{left:314.806667pt;}
.xb_c00102{left:317.520000pt;}
.x16_c00102{left:356.033549pt;}
.x25_c00102{left:358.317861pt;}
.x4_c00102{left:381.498667pt;}
.x1b_c00102{left:392.789333pt;}
.x17_c00102{left:418.204216pt;}
.x26_c00102{left:422.832201pt;}
.x5_c00102{left:425.202667pt;}
.x1c_c00102{left:446.064000pt;}
.x27_c00102{left:461.799764pt;}
.x18_c00102{left:465.198883pt;}
.x1d_c00102{left:493.177333pt;}
.x6_c00102{left:494.318667pt;}
.x12_c00102{left:503.021333pt;}
.x1e_c00102{left:512.165333pt;}
.x1f_c00102{left:559.893333pt;}
.x19_c00102{left:566.717549pt;}
.x28_c00102{left:612.044327pt;}
.x7_c00102{left:615.032000pt;}
.x1a_c00102{left:642.081549pt;}
.x20_c00102{left:644.852000pt;}
.x21_c00102{left:666.476000pt;}
.x8_c00102{left:679.348000pt;}
.xc_c00102{left:825.600000pt;}
}





/* 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_c00103 {
    display:none;
  }
  .loading-indicator_c00103.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00103 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_c00103 { 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_c00103" -> "#page-container .classname_c00103")
 */
.pf_c00103 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00103 { /* 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_c00103.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00103 { /* 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_c00103 { /* 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_c00103 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00103 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00103 {overflow:visible;}
  }
}
.c_c00103 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00103 { /* 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_c00103:after { /* webkit #35443 */
  content: '';
}
.t_c00103:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00103 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 */
}
.__c00103 { /* 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_c00103 { /* info for Javascript */
  display:none;
}
.l_c00103 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00103 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00103 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00103: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_c00103 {
    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_c00103.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00103.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_c00103 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00103{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00103;src:url('chunks/assets/font_7c6b9abe6ee2a268480c528b.woff2')format("woff");}.ff1_c00103{font-family:ff1_c00103;line-height:1.000000;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;}
.m3_c00103{transform:matrix(0.000054,0.054085,-0.250000,0.000250,0,0);-ms-transform:matrix(0.000054,0.054085,-0.250000,0.000250,0,0);-webkit-transform:matrix(0.000054,0.054085,-0.250000,0.000250,0,0);}
.m5_c00103{transform:matrix(0.000397,0.397145,-0.250000,0.000250,0,0);-ms-transform:matrix(0.000397,0.397145,-0.250000,0.000250,0,0);-webkit-transform:matrix(0.000397,0.397145,-0.250000,0.000250,0,0);}
.m13_c00103{transform:matrix(0.000487,0.162249,-0.249999,0.000750,0,0);-ms-transform:matrix(0.000487,0.162249,-0.249999,0.000750,0,0);-webkit-transform:matrix(0.000487,0.162249,-0.249999,0.000750,0,0);}
.m6_c00103{transform:matrix(0.000603,0.602995,-0.250000,0.000250,0,0);-ms-transform:matrix(0.000603,0.602995,-0.250000,0.000250,0,0);-webkit-transform:matrix(0.000603,0.602995,-0.250000,0.000250,0,0);}
.m7_c00103{transform:matrix(0.000641,0.641250,-0.250000,0.000250,0,0);-ms-transform:matrix(0.000641,0.641250,-0.250000,0.000250,0,0);-webkit-transform:matrix(0.000641,0.641250,-0.250000,0.000250,0,0);}
.mf_c00103{transform:matrix(0.000984,-0.022338,0.249758,0.011000,0,0);-ms-transform:matrix(0.000984,-0.022338,0.249758,0.011000,0,0);-webkit-transform:matrix(0.000984,-0.022338,0.249758,0.011000,0,0);}
.m12_c00103{transform:matrix(0.001039,0.346298,-0.249999,0.000750,0,0);-ms-transform:matrix(0.001039,0.346298,-0.249999,0.000750,0,0);-webkit-transform:matrix(0.001039,0.346298,-0.249999,0.000750,0,0);}
.m15_c00103{transform:matrix(0.001081,0.360343,-0.249999,0.000750,0,0);-ms-transform:matrix(0.001081,0.360343,-0.249999,0.000750,0,0);-webkit-transform:matrix(0.001081,0.360343,-0.249999,0.000750,0,0);}
.m14_c00103{transform:matrix(0.001145,0.381608,-0.249999,0.000750,0,0);-ms-transform:matrix(0.001145,0.381608,-0.249999,0.000750,0,0);-webkit-transform:matrix(0.001145,0.381608,-0.249999,0.000750,0,0);}
.m16_c00103{transform:matrix(0.001325,0.441543,-0.249999,0.000750,0,0);-ms-transform:matrix(0.001325,0.441543,-0.249999,0.000750,0,0);-webkit-transform:matrix(0.001325,0.441543,-0.249999,0.000750,0,0);}
.m11_c00103{transform:matrix(0.001665,0.555023,-0.249999,0.000750,0,0);-ms-transform:matrix(0.001665,0.555023,-0.249999,0.000750,0,0);-webkit-transform:matrix(0.001665,0.555023,-0.249999,0.000750,0,0);}
.m17_c00103{transform:matrix(0.001962,0.218006,-0.249990,0.002250,0,0);-ms-transform:matrix(0.001962,0.218006,-0.249990,0.002250,0,0);-webkit-transform:matrix(0.001962,0.218006,-0.249990,0.002250,0,0);}
.m18_c00103{transform:matrix(0.002295,0.255045,-0.249990,0.002250,0,0);-ms-transform:matrix(0.002295,0.255045,-0.249990,0.002250,0,0);-webkit-transform:matrix(0.002295,0.255045,-0.249990,0.002250,0,0);}
.mb_c00103{transform:matrix(0.002348,-0.260929,0.249990,0.002250,0,0);-ms-transform:matrix(0.002348,-0.260929,0.249990,0.002250,0,0);-webkit-transform:matrix(0.002348,-0.260929,0.249990,0.002250,0,0);}
.m8_c00103{transform:matrix(0.002505,-0.278299,0.249990,0.002250,0,0);-ms-transform:matrix(0.002505,-0.278299,0.249990,0.002250,0,0);-webkit-transform:matrix(0.002505,-0.278299,0.249990,0.002250,0,0);}
.m4_c00103{transform:matrix(0.003079,3.078653,-0.250000,0.000250,0,0);-ms-transform:matrix(0.003079,3.078653,-0.250000,0.000250,0,0);-webkit-transform:matrix(0.003079,3.078653,-0.250000,0.000250,0,0);}
.m9_c00103{transform:matrix(0.006386,-0.709561,0.249990,0.002250,0,0);-ms-transform:matrix(0.006386,-0.709561,0.249990,0.002250,0,0);-webkit-transform:matrix(0.006386,-0.709561,0.249990,0.002250,0,0);}
.mc_c00103{transform:matrix(0.009193,-1.021479,0.249990,0.002250,0,0);-ms-transform:matrix(0.009193,-1.021479,0.249990,0.002250,0,0);-webkit-transform:matrix(0.009193,-1.021479,0.249990,0.002250,0,0);}
.me_c00103{transform:matrix(0.012496,-1.388439,0.249990,0.002250,0,0);-ms-transform:matrix(0.012496,-1.388439,0.249990,0.002250,0,0);-webkit-transform:matrix(0.012496,-1.388439,0.249990,0.002250,0,0);}
.m2_c00103{transform:matrix(0.015521,-0.596978,0.249916,0.006498,0,0);-ms-transform:matrix(0.015521,-0.596978,0.249916,0.006498,0,0);-webkit-transform:matrix(0.015521,-0.596978,0.249916,0.006498,0,0);}
.md_c00103{transform:matrix(0.017420,-1.935512,0.249990,0.002250,0,0);-ms-transform:matrix(0.017420,-1.935512,0.249990,0.002250,0,0);-webkit-transform:matrix(0.017420,-1.935512,0.249990,0.002250,0,0);}
.ma_c00103{transform:matrix(0.027115,-3.012758,0.249990,0.002250,0,0);-ms-transform:matrix(0.027115,-3.012758,0.249990,0.002250,0,0);-webkit-transform:matrix(0.027115,-3.012758,0.249990,0.002250,0,0);}
.m10_c00103{transform:matrix(0.040677,-0.923555,0.249758,0.011000,0,0);-ms-transform:matrix(0.040677,-0.923555,0.249758,0.011000,0,0);-webkit-transform:matrix(0.040677,-0.923555,0.249758,0.011000,0,0);}
.m19_c00103{transform:matrix(0.237320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237320,0.000000,0.000000,0.250000,0,0);}
.m1_c00103{transform:matrix(0.606490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.606490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.606490,0.000000,0.000000,0.250000,0,0);}
.m0_c00103{transform:matrix(1.067640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.067640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.067640,0.000000,0.000000,0.250000,0,0);}
.v0_c00103{vertical-align:0.000000px;}
.ls0_c00103{letter-spacing:0.000000px;}
.sc__c00103{text-shadow:none;}
.sc0_c00103{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__c00103{-webkit-text-stroke:0px transparent;}
.sc0_c00103{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00103{word-spacing:0.000000px;}
.fc0_c00103{color:transparent;}
.fs0_c00103{font-size:18.000000px;}
.fs2_c00103{font-size:18.000009px;}
.fs1_c00103{font-size:18.006083px;}
.fs7_c00103{font-size:24.000000px;}
.fs5_c00103{font-size:24.000108px;}
.fs3_c00103{font-size:24.000972px;}
.fs6_c00103{font-size:36.000162px;}
.fs4_c00103{font-size:53.998299px;}
.y0_c00103{bottom:0.000000px;}
.y16_c00103{bottom:237.872451px;}
.y18_c00103{bottom:255.157500px;}
.y13_c00103{bottom:268.918500px;}
.y19_c00103{bottom:291.600000px;}
.y10_c00103{bottom:302.954611px;}
.y17_c00103{bottom:366.660000px;}
.y7_c00103{bottom:412.020000px;}
.ye_c00103{bottom:426.607500px;}
.yf_c00103{bottom:434.434500px;}
.y6_c00103{bottom:435.510000px;}
.y5_c00103{bottom:446.850000px;}
.y15_c00103{bottom:456.297713px;}
.y12_c00103{bottom:461.967000px;}
.y1_c00103{bottom:474.390000px;}
.yd_c00103{bottom:475.446000px;}
.yc_c00103{bottom:502.174500px;}
.y4_c00103{bottom:507.331500px;}
.y3_c00103{bottom:508.140000px;}
.yb_c00103{bottom:513.214500px;}
.y2_c00103{bottom:542.949000px;}
.y11_c00103{bottom:572.400000px;}
.y14_c00103{bottom:581.037578px;}
.ya_c00103{bottom:610.428000px;}
.y9_c00103{bottom:678.469500px;}
.y8_c00103{bottom:693.859500px;}
.h2_c00103{height:18.000000px;}
.h4_c00103{height:18.000009px;}
.h3_c00103{height:18.006083px;}
.h9_c00103{height:24.000000px;}
.h7_c00103{height:24.000108px;}
.h5_c00103{height:24.000972px;}
.h8_c00103{height:36.000162px;}
.h6_c00103{height:53.998299px;}
.h0_c00103{height:711.720000px;}
.h1_c00103{height:711.750000px;}
.w1_c00103{width:945.750000px;}
.w0_c00103{width:946.050000px;}
.x0_c00103{left:0.000000px;}
.xd_c00103{left:229.230000px;}
.xb_c00103{left:316.710000px;}
.xc_c00103{left:317.713522px;}
.x9_c00103{left:871.016517px;}
.xa_c00103{left:872.170513px;}
.x8_c00103{left:878.850000px;}
.x7_c00103{left:906.365094px;}
.x5_c00103{left:908.004195px;}
.x4_c00103{left:909.630000px;}
.x6_c00103{left:912.156000px;}
.x3_c00103{left:930.150000px;}
.x2_c00103{left:933.120000px;}
.x1_c00103{left:936.630000px;}
@media print{
.v0_c00103{vertical-align:0.000000pt;}
.ls0_c00103{letter-spacing:0.000000pt;}
.ws0_c00103{word-spacing:0.000000pt;}
.fs0_c00103{font-size:16.000000pt;}
.fs2_c00103{font-size:16.000008pt;}
.fs1_c00103{font-size:16.005407pt;}
.fs7_c00103{font-size:21.333333pt;}
.fs5_c00103{font-size:21.333429pt;}
.fs3_c00103{font-size:21.334197pt;}
.fs6_c00103{font-size:32.000144pt;}
.fs4_c00103{font-size:47.998488pt;}
.y0_c00103{bottom:0.000000pt;}
.y16_c00103{bottom:211.442179pt;}
.y18_c00103{bottom:226.806667pt;}
.y13_c00103{bottom:239.038667pt;}
.y19_c00103{bottom:259.200000pt;}
.y10_c00103{bottom:269.292988pt;}
.y17_c00103{bottom:325.920000pt;}
.y7_c00103{bottom:366.240000pt;}
.ye_c00103{bottom:379.206667pt;}
.yf_c00103{bottom:386.164000pt;}
.y6_c00103{bottom:387.120000pt;}
.y5_c00103{bottom:397.200000pt;}
.y15_c00103{bottom:405.597967pt;}
.y12_c00103{bottom:410.637333pt;}
.y1_c00103{bottom:421.680000pt;}
.yd_c00103{bottom:422.618667pt;}
.yc_c00103{bottom:446.377333pt;}
.y4_c00103{bottom:450.961333pt;}
.y3_c00103{bottom:451.680000pt;}
.yb_c00103{bottom:456.190667pt;}
.y2_c00103{bottom:482.621333pt;}
.y11_c00103{bottom:508.800000pt;}
.y14_c00103{bottom:516.477847pt;}
.ya_c00103{bottom:542.602667pt;}
.y9_c00103{bottom:603.084000pt;}
.y8_c00103{bottom:616.764000pt;}
.h2_c00103{height:16.000000pt;}
.h4_c00103{height:16.000008pt;}
.h3_c00103{height:16.005407pt;}
.h9_c00103{height:21.333333pt;}
.h7_c00103{height:21.333429pt;}
.h5_c00103{height:21.334197pt;}
.h8_c00103{height:32.000144pt;}
.h6_c00103{height:47.998488pt;}
.h0_c00103{height:632.640000pt;}
.h1_c00103{height:632.666667pt;}
.w1_c00103{width:840.666667pt;}
.w0_c00103{width:840.933333pt;}
.x0_c00103{left:0.000000pt;}
.xd_c00103{left:203.760000pt;}
.xb_c00103{left:281.520000pt;}
.xc_c00103{left:282.412020pt;}
.x9_c00103{left:774.236904pt;}
.xa_c00103{left:775.262679pt;}
.x8_c00103{left:781.200000pt;}
.x7_c00103{left:805.657861pt;}
.x5_c00103{left:807.114840pt;}
.x4_c00103{left:808.560000pt;}
.x6_c00103{left:810.805333pt;}
.x3_c00103{left:826.800000pt;}
.x2_c00103{left:829.440000pt;}
.x1_c00103{left:832.560000pt;}
}





/* 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_c00104 {
    display:none;
  }
  .loading-indicator_c00104.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00104 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_c00104 { 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_c00104" -> "#page-container .classname_c00104")
 */
.pf_c00104 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00104 { /* 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_c00104.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00104 { /* 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_c00104 { /* 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_c00104 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00104 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00104 {overflow:visible;}
  }
}
.c_c00104 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00104 { /* 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_c00104:after { /* webkit #35443 */
  content: '';
}
.t_c00104:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00104 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 */
}
.__c00104 { /* 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_c00104 { /* info for Javascript */
  display:none;
}
.l_c00104 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00104 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00104 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00104: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_c00104 {
    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_c00104.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00104.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_c00104 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00104{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00104;src:url('chunks/assets/font_59dc3ab2e04ed21d4ac9992b.woff2')format("woff");}.ff1_c00104{font-family:ff1_c00104;line-height:1.000000;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;}
.m7_c00104{transform:matrix(0.010815,0.000054,-0.001250,0.249997,0,0);-ms-transform:matrix(0.010815,0.000054,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.010815,0.000054,-0.001250,0.249997,0,0);}
.m17_c00104{transform:matrix(0.042425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.042425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.042425,0.000000,0.000000,0.250000,0,0);}
.m12_c00104{transform:matrix(0.189290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189290,0.000000,0.000000,0.250000,0,0);}
.m18_c00104{transform:matrix(0.255440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255440,0.000000,0.000000,0.250000,0,0);}
.m15_c00104{transform:matrix(0.291245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291245,0.000000,0.000000,0.250000,0,0);}
.ma_c00104{transform:matrix(0.305996,0.001530,-0.001250,0.249997,0,0);-ms-transform:matrix(0.305996,0.001530,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.305996,0.001530,-0.001250,0.249997,0,0);}
.mf_c00104{transform:matrix(0.314585,0.004719,-0.003750,0.249972,0,0);-ms-transform:matrix(0.314585,0.004719,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.314585,0.004719,-0.003750,0.249972,0,0);}
.m11_c00104{transform:matrix(0.347216,0.005208,-0.003750,0.249972,0,0);-ms-transform:matrix(0.347216,0.005208,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.347216,0.005208,-0.003750,0.249972,0,0);}
.mb_c00104{transform:matrix(0.347496,0.005212,-0.003750,0.249972,0,0);-ms-transform:matrix(0.347496,0.005212,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.347496,0.005212,-0.003750,0.249972,0,0);}
.mc_c00104{transform:matrix(0.382067,0.005731,-0.003750,0.249972,0,0);-ms-transform:matrix(0.382067,0.005731,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.382067,0.005731,-0.003750,0.249972,0,0);}
.m13_c00104{transform:matrix(0.388490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388490,0.000000,0.000000,0.250000,0,0);}
.m14_c00104{transform:matrix(0.426380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426380,0.000000,0.000000,0.250000,0,0);}
.m10_c00104{transform:matrix(0.449029,0.006735,-0.003750,0.249972,0,0);-ms-transform:matrix(0.449029,0.006735,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.449029,0.006735,-0.003750,0.249972,0,0);}
.m6_c00104{transform:matrix(0.449164,0.002246,-0.001250,0.249997,0,0);-ms-transform:matrix(0.449164,0.002246,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.449164,0.002246,-0.001250,0.249997,0,0);}
.me_c00104{transform:matrix(0.462218,0.006933,-0.003750,0.249972,0,0);-ms-transform:matrix(0.462218,0.006933,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.462218,0.006933,-0.003750,0.249972,0,0);}
.m0_c00104{transform:matrix(0.573288,0.002866,-0.001250,0.249997,0,0);-ms-transform:matrix(0.573288,0.002866,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.573288,0.002866,-0.001250,0.249997,0,0);}
.m16_c00104{transform:matrix(0.633030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.633030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.633030,0.000000,0.000000,0.250000,0,0);}
.m4_c00104{transform:matrix(0.706906,0.003535,-0.001250,0.249997,0,0);-ms-transform:matrix(0.706906,0.003535,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.706906,0.003535,-0.001250,0.249997,0,0);}
.m5_c00104{transform:matrix(0.800205,0.004001,-0.001250,0.249997,0,0);-ms-transform:matrix(0.800205,0.004001,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.800205,0.004001,-0.001250,0.249997,0,0);}
.m3_c00104{transform:matrix(0.864409,0.004322,-0.001250,0.249997,0,0);-ms-transform:matrix(0.864409,0.004322,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.864409,0.004322,-0.001250,0.249997,0,0);}
.m1_c00104{transform:matrix(0.879799,0.004399,-0.001250,0.249997,0,0);-ms-transform:matrix(0.879799,0.004399,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.879799,0.004399,-0.001250,0.249997,0,0);}
.m9_c00104{transform:matrix(0.924648,0.004623,-0.001250,0.249997,0,0);-ms-transform:matrix(0.924648,0.004623,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.924648,0.004623,-0.001250,0.249997,0,0);}
.md_c00104{transform:matrix(1.496867,0.022453,-0.003750,0.249972,0,0);-ms-transform:matrix(1.496867,0.022453,-0.003750,0.249972,0,0);-webkit-transform:matrix(1.496867,0.022453,-0.003750,0.249972,0,0);}
.m8_c00104{transform:matrix(1.937671,0.009688,-0.001250,0.249997,0,0);-ms-transform:matrix(1.937671,0.009688,-0.001250,0.249997,0,0);-webkit-transform:matrix(1.937671,0.009688,-0.001250,0.249997,0,0);}
.m2_c00104{transform:matrix(1.985650,0.009928,-0.001250,0.249997,0,0);-ms-transform:matrix(1.985650,0.009928,-0.001250,0.249997,0,0);-webkit-transform:matrix(1.985650,0.009928,-0.001250,0.249997,0,0);}
.v0_c00104{vertical-align:0.000000px;}
.ls0_c00104{letter-spacing:0.000000px;}
.sc__c00104{text-shadow:none;}
.sc0_c00104{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__c00104{-webkit-text-stroke:0px transparent;}
.sc0_c00104{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00104{word-spacing:0.000000px;}
.fc0_c00104{color:transparent;}
.fs3_c00104{font-size:18.000000px;}
.fs2_c00104{font-size:36.000000px;}
.fs1_c00104{font-size:84.009449px;}
.fs0_c00104{font-size:90.001125px;}
.y0_c00104{bottom:0.000000px;}
.y14_c00104{bottom:385.158000px;}
.y13_c00104{bottom:391.230000px;}
.y12_c00104{bottom:409.083262px;}
.y11_c00104{bottom:409.874970px;}
.y10_c00104{bottom:411.460050px;}
.yf_c00104{bottom:412.435740px;}
.ye_c00104{bottom:413.967810px;}
.yd_c00104{bottom:414.796080px;}
.yc_c00104{bottom:416.284500px;}
.yb_c00104{bottom:621.159465px;}
.ya_c00104{bottom:621.159607px;}
.y9_c00104{bottom:621.159742px;}
.y8_c00104{bottom:621.160485px;}
.y7_c00104{bottom:621.161235px;}
.y6_c00104{bottom:647.508248px;}
.y5_c00104{bottom:648.064478px;}
.y4_c00104{bottom:648.593040px;}
.y3_c00104{bottom:649.517430px;}
.y2_c00104{bottom:650.080357px;}
.y1_c00104{bottom:650.782500px;}
.h5_c00104{height:18.000000px;}
.h4_c00104{height:36.000000px;}
.h3_c00104{height:84.009449px;}
.h2_c00104{height:90.001125px;}
.h0_c00104{height:711.720000px;}
.h1_c00104{height:711.750000px;}
.w1_c00104{width:945.750000px;}
.w0_c00104{width:946.050000px;}
.x0_c00104{left:0.000000px;}
.x6_c00104{left:31.052678px;}
.x7_c00104{left:126.903570px;}
.x13_c00104{left:135.000000px;}
.x1_c00104{left:140.125500px;}
.x14_c00104{left:147.150000px;}
.xa_c00104{left:171.927000px;}
.x2_c00104{left:252.711000px;}
.xb_c00104{left:271.155000px;}
.x8_c00104{left:312.935220px;}
.xc_c00104{left:326.373000px;}
.x11_c00104{left:355.320000px;}
.x15_c00104{left:367.740000px;}
.x16_c00104{left:407.160000px;}
.xd_c00104{left:428.511000px;}
.x3_c00104{left:437.589000px;}
.x12_c00104{left:458.190000px;}
.x9_c00104{left:461.167425px;}
.xe_c00104{left:493.557000px;}
.x4_c00104{left:543.301500px;}
.xf_c00104{left:599.229000px;}
.x10_c00104{left:652.009500px;}
.x5_c00104{left:654.547500px;}
@media print{
.v0_c00104{vertical-align:0.000000pt;}
.ls0_c00104{letter-spacing:0.000000pt;}
.ws0_c00104{word-spacing:0.000000pt;}
.fs3_c00104{font-size:16.000000pt;}
.fs2_c00104{font-size:32.000000pt;}
.fs1_c00104{font-size:74.675066pt;}
.fs0_c00104{font-size:80.001000pt;}
.y0_c00104{bottom:0.000000pt;}
.y14_c00104{bottom:342.362667pt;}
.y13_c00104{bottom:347.760000pt;}
.y12_c00104{bottom:363.629567pt;}
.y11_c00104{bottom:364.333307pt;}
.y10_c00104{bottom:365.742267pt;}
.yf_c00104{bottom:366.609547pt;}
.ye_c00104{bottom:367.971387pt;}
.yd_c00104{bottom:368.707627pt;}
.yc_c00104{bottom:370.030667pt;}
.yb_c00104{bottom:552.141747pt;}
.ya_c00104{bottom:552.141873pt;}
.y9_c00104{bottom:552.141993pt;}
.y8_c00104{bottom:552.142653pt;}
.y7_c00104{bottom:552.143320pt;}
.y6_c00104{bottom:575.562887pt;}
.y5_c00104{bottom:576.057313pt;}
.y4_c00104{bottom:576.527147pt;}
.y3_c00104{bottom:577.348827pt;}
.y2_c00104{bottom:577.849207pt;}
.y1_c00104{bottom:578.473333pt;}
.h5_c00104{height:16.000000pt;}
.h4_c00104{height:32.000000pt;}
.h3_c00104{height:74.675066pt;}
.h2_c00104{height:80.001000pt;}
.h0_c00104{height:632.640000pt;}
.h1_c00104{height:632.666667pt;}
.w1_c00104{width:840.666667pt;}
.w0_c00104{width:840.933333pt;}
.x0_c00104{left:0.000000pt;}
.x6_c00104{left:27.602380pt;}
.x7_c00104{left:112.803173pt;}
.x13_c00104{left:120.000000pt;}
.x1_c00104{left:124.556000pt;}
.x14_c00104{left:130.800000pt;}
.xa_c00104{left:152.824000pt;}
.x2_c00104{left:224.632000pt;}
.xb_c00104{left:241.026667pt;}
.x8_c00104{left:278.164640pt;}
.xc_c00104{left:290.109333pt;}
.x11_c00104{left:315.840000pt;}
.x15_c00104{left:326.880000pt;}
.x16_c00104{left:361.920000pt;}
.xd_c00104{left:380.898667pt;}
.x3_c00104{left:388.968000pt;}
.x12_c00104{left:407.280000pt;}
.x9_c00104{left:409.926600pt;}
.xe_c00104{left:438.717333pt;}
.x4_c00104{left:482.934667pt;}
.xf_c00104{left:532.648000pt;}
.x10_c00104{left:579.564000pt;}
.x5_c00104{left:581.820000pt;}
}





/* 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_c00105 {
    display:none;
  }
  .loading-indicator_c00105.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00105 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_c00105 { 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_c00105" -> "#page-container .classname_c00105")
 */
.pf_c00105 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00105 { /* 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_c00105.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00105 { /* 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_c00105 { /* 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_c00105 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00105 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00105 {overflow:visible;}
  }
}
.c_c00105 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00105 { /* 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_c00105:after { /* webkit #35443 */
  content: '';
}
.t_c00105:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00105 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 */
}
.__c00105 { /* 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_c00105 { /* info for Javascript */
  display:none;
}
.l_c00105 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00105 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00105 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00105: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_c00105 {
    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_c00105.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00105.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_c00105 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00105{font-family:sans-serif;visibility:hidden;}
.sc__c00105{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00105{-webkit-text-stroke:0px transparent;}
}
.y0_c00105{bottom:0.000000px;}
.h0_c00105{height:698.220000px;}
.h1_c00105{height:698.250000px;}
.w1_c00105{width:945.750000px;}
.w0_c00105{width:946.050000px;}
.x0_c00105{left:0.000000px;}
@media print{
.y0_c00105{bottom:0.000000pt;}
.h0_c00105{height:620.640000pt;}
.h1_c00105{height:620.666667pt;}
.w1_c00105{width:840.666667pt;}
.w0_c00105{width:840.933333pt;}
.x0_c00105{left:0.000000pt;}
}





/* 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_c00106 {
    display:none;
  }
  .loading-indicator_c00106.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00106 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_c00106 { 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_c00106" -> "#page-container .classname_c00106")
 */
.pf_c00106 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00106 { /* 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_c00106.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00106 { /* 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_c00106 { /* 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_c00106 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00106 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00106 {overflow:visible;}
  }
}
.c_c00106 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00106 { /* 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_c00106:after { /* webkit #35443 */
  content: '';
}
.t_c00106:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00106 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 */
}
.__c00106 { /* 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_c00106 { /* info for Javascript */
  display:none;
}
.l_c00106 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00106 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00106 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00106: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_c00106 {
    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_c00106.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00106.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_c00106 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00106{font-family:sans-serif;visibility:hidden;}
.sc__c00106{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00106{-webkit-text-stroke:0px transparent;}
}
.y0_c00106{bottom:0.000000px;}
.h0_c00106{height:698.220000px;}
.h1_c00106{height:698.250000px;}
.w1_c00106{width:945.750000px;}
.w0_c00106{width:946.050000px;}
.x0_c00106{left:0.000000px;}
@media print{
.y0_c00106{bottom:0.000000pt;}
.h0_c00106{height:620.640000pt;}
.h1_c00106{height:620.666667pt;}
.w1_c00106{width:840.666667pt;}
.w0_c00106{width:840.933333pt;}
.x0_c00106{left:0.000000pt;}
}





/* 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_c00107 {
    display:none;
  }
  .loading-indicator_c00107.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00107 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_c00107 { 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_c00107" -> "#page-container .classname_c00107")
 */
.pf_c00107 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00107 { /* 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_c00107.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00107 { /* 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_c00107 { /* 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_c00107 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00107 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00107 {overflow:visible;}
  }
}
.c_c00107 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00107 { /* 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_c00107:after { /* webkit #35443 */
  content: '';
}
.t_c00107:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00107 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 */
}
.__c00107 { /* 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_c00107 { /* info for Javascript */
  display:none;
}
.l_c00107 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00107 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00107 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00107: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_c00107 {
    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_c00107.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00107.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_c00107 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00107{font-family:sans-serif;visibility:hidden;}
.sc__c00107{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00107{-webkit-text-stroke:0px transparent;}
}
.y0_c00107{bottom:0.000000px;}
.h0_c00107{height:698.220000px;}
.h1_c00107{height:698.250000px;}
.w1_c00107{width:945.750000px;}
.w0_c00107{width:946.050000px;}
.x0_c00107{left:0.000000px;}
@media print{
.y0_c00107{bottom:0.000000pt;}
.h0_c00107{height:620.640000pt;}
.h1_c00107{height:620.666667pt;}
.w1_c00107{width:840.666667pt;}
.w0_c00107{width:840.933333pt;}
.x0_c00107{left:0.000000pt;}
}





/* 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_c00108 {
    display:none;
  }
  .loading-indicator_c00108.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00108 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_c00108 { 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_c00108" -> "#page-container .classname_c00108")
 */
.pf_c00108 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00108 { /* 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_c00108.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00108 { /* 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_c00108 { /* 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_c00108 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00108 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00108 {overflow:visible;}
  }
}
.c_c00108 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00108 { /* 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_c00108:after { /* webkit #35443 */
  content: '';
}
.t_c00108:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00108 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 */
}
.__c00108 { /* 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_c00108 { /* info for Javascript */
  display:none;
}
.l_c00108 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00108 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00108 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00108: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_c00108 {
    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_c00108.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00108.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_c00108 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00108{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00108;src:url('chunks/assets/font_9f1332c6c654e944e53d568b.woff2')format("woff");}.ff1_c00108{font-family:ff1_c00108;line-height:1.000000;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;}
.m0_c00108{transform:matrix(0.491060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491060,0.000000,0.000000,0.250000,0,0);}
.v0_c00108{vertical-align:0.000000px;}
.ls0_c00108{letter-spacing:0.000000px;}
.sc__c00108{text-shadow:none;}
.sc0_c00108{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__c00108{-webkit-text-stroke:0px transparent;}
.sc0_c00108{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00108{word-spacing:0.000000px;}
.fc0_c00108{color:transparent;}
.fs0_c00108{font-size:174.000000px;}
.y0_c00108{bottom:0.000000px;}
.y1_c00108{bottom:642.600000px;}
.h2_c00108{height:174.000000px;}
.h0_c00108{height:698.220000px;}
.h1_c00108{height:698.250000px;}
.w1_c00108{width:945.750000px;}
.w0_c00108{width:946.050000px;}
.x0_c00108{left:0.000000px;}
@media print{
.v0_c00108{vertical-align:0.000000pt;}
.ls0_c00108{letter-spacing:0.000000pt;}
.ws0_c00108{word-spacing:0.000000pt;}
.fs0_c00108{font-size:154.666667pt;}
.y0_c00108{bottom:0.000000pt;}
.y1_c00108{bottom:571.200000pt;}
.h2_c00108{height:154.666667pt;}
.h0_c00108{height:620.640000pt;}
.h1_c00108{height:620.666667pt;}
.w1_c00108{width:840.666667pt;}
.w0_c00108{width:840.933333pt;}
.x0_c00108{left:0.000000pt;}
}





/* 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_c00109 {
    display:none;
  }
  .loading-indicator_c00109.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00109 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_c00109 { 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_c00109" -> "#page-container .classname_c00109")
 */
.pf_c00109 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00109 { /* 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_c00109.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00109 { /* 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_c00109 { /* 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_c00109 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00109 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00109 {overflow:visible;}
  }
}
.c_c00109 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00109 { /* 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_c00109:after { /* webkit #35443 */
  content: '';
}
.t_c00109:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00109 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 */
}
.__c00109 { /* 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_c00109 { /* info for Javascript */
  display:none;
}
.l_c00109 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00109 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00109 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00109: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_c00109 {
    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_c00109.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00109.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_c00109 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00109{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00109;src:url('chunks/assets/font_59dc3ab2e04ed21d4ac9992b.woff2')format("woff");}.ff1_c00109{font-family:ff1_c00109;line-height:1.000000;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;}
.m8_c00109{transform:matrix(0.015810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.015810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.015810,0.000000,0.000000,0.250000,0,0);}
.m10_c00109{transform:matrix(0.023400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.023400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.023400,0.000000,0.000000,0.250000,0,0);}
.m4_c00109{transform:matrix(0.079055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.079055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.079055,0.000000,0.000000,0.250000,0,0);}
.m6_c00109{transform:matrix(0.225885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225885,0.000000,0.000000,0.250000,0,0);}
.m0_c00109{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.m7_c00109{transform:matrix(0.377360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377360,0.000000,0.000000,0.250000,0,0);}
.md_c00109{transform:matrix(0.457915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457915,0.000000,0.000000,0.250000,0,0);}
.m3_c00109{transform:matrix(0.493000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493000,0.000000,0.000000,0.250000,0,0);}
.m1_c00109{transform:matrix(0.506950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506950,0.000000,0.000000,0.250000,0,0);}
.ma_c00109{transform:matrix(0.519326,0.009867,-0.004749,0.249955,0,0);-ms-transform:matrix(0.519326,0.009867,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.519326,0.009867,-0.004749,0.249955,0,0);}
.m9_c00109{transform:matrix(0.603226,0.011461,-0.004749,0.249955,0,0);-ms-transform:matrix(0.603226,0.011461,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.603226,0.011461,-0.004749,0.249955,0,0);}
.mb_c00109{transform:matrix(0.742830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.742830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.742830,0.000000,0.000000,0.250000,0,0);}
.me_c00109{transform:matrix(0.778360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.778360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.778360,0.000000,0.000000,0.250000,0,0);}
.mc_c00109{transform:matrix(1.123460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.123460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.123460,0.000000,0.000000,0.250000,0,0);}
.m5_c00109{transform:matrix(1.762805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.762805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.762805,0.000000,0.000000,0.250000,0,0);}
.mf_c00109{transform:matrix(2.093980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.093980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.093980,0.000000,0.000000,0.250000,0,0);}
.m2_c00109{transform:matrix(2.185050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.185050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.185050,0.000000,0.000000,0.250000,0,0);}
.v0_c00109{vertical-align:0.000000px;}
.ls0_c00109{letter-spacing:0.000000px;}
.sc__c00109{text-shadow:none;}
.sc0_c00109{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__c00109{-webkit-text-stroke:0px transparent;}
.sc0_c00109{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00109{word-spacing:0.000000px;}
.fc0_c00109{color:transparent;}
.fs0_c00109{font-size:18.000000px;}
.fs1_c00109{font-size:54.000000px;}
.fs4_c00109{font-size:84.000000px;}
.fs3_c00109{font-size:114.000000px;}
.fs2_c00109{font-size:150.027073px;}
.y0_c00109{bottom:0.000000px;}
.y4_c00109{bottom:140.815806px;}
.y3_c00109{bottom:144.831000px;}
.y6_c00109{bottom:149.337000px;}
.y2_c00109{bottom:200.340000px;}
.y5_c00109{bottom:218.062500px;}
.y1_c00109{bottom:241.920000px;}
.h2_c00109{height:18.000000px;}
.h3_c00109{height:54.000000px;}
.h6_c00109{height:84.000000px;}
.h5_c00109{height:114.000000px;}
.h4_c00109{height:150.027073px;}
.h0_c00109{height:698.220000px;}
.h1_c00109{height:698.250000px;}
.w1_c00109{width:945.750000px;}
.w0_c00109{width:946.050000px;}
.x0_c00109{left:0.000000px;}
.x2_c00109{left:98.280000px;}
.x3_c00109{left:154.440000px;}
.x4_c00109{left:199.260000px;}
.x8_c00109{left:211.738500px;}
.x5_c00109{left:288.630000px;}
.x1_c00109{left:322.110000px;}
.x6_c00109{left:345.060000px;}
.x7_c00109{left:365.580000px;}
.xa_c00109{left:391.230000px;}
.x9_c00109{left:483.300000px;}
.xb_c00109{left:511.920000px;}
.xc_c00109{left:585.630000px;}
.xd_c00109{left:740.340000px;}
.xe_c00109{left:932.580000px;}
@media print{
.v0_c00109{vertical-align:0.000000pt;}
.ls0_c00109{letter-spacing:0.000000pt;}
.ws0_c00109{word-spacing:0.000000pt;}
.fs0_c00109{font-size:16.000000pt;}
.fs1_c00109{font-size:48.000000pt;}
.fs4_c00109{font-size:74.666667pt;}
.fs3_c00109{font-size:101.333333pt;}
.fs2_c00109{font-size:133.357398pt;}
.y0_c00109{bottom:0.000000pt;}
.y4_c00109{bottom:125.169605pt;}
.y3_c00109{bottom:128.738667pt;}
.y6_c00109{bottom:132.744000pt;}
.y2_c00109{bottom:178.080000pt;}
.y5_c00109{bottom:193.833333pt;}
.y1_c00109{bottom:215.040000pt;}
.h2_c00109{height:16.000000pt;}
.h3_c00109{height:48.000000pt;}
.h6_c00109{height:74.666667pt;}
.h5_c00109{height:101.333333pt;}
.h4_c00109{height:133.357398pt;}
.h0_c00109{height:620.640000pt;}
.h1_c00109{height:620.666667pt;}
.w1_c00109{width:840.666667pt;}
.w0_c00109{width:840.933333pt;}
.x0_c00109{left:0.000000pt;}
.x2_c00109{left:87.360000pt;}
.x3_c00109{left:137.280000pt;}
.x4_c00109{left:177.120000pt;}
.x8_c00109{left:188.212000pt;}
.x5_c00109{left:256.560000pt;}
.x1_c00109{left:286.320000pt;}
.x6_c00109{left:306.720000pt;}
.x7_c00109{left:324.960000pt;}
.xa_c00109{left:347.760000pt;}
.x9_c00109{left:429.600000pt;}
.xb_c00109{left:455.040000pt;}
.xc_c00109{left:520.560000pt;}
.xd_c00109{left:658.080000pt;}
.xe_c00109{left:828.960000pt;}
}





/* 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_c00110 {
    display:none;
  }
  .loading-indicator_c00110.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00110 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_c00110 { 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_c00110" -> "#page-container .classname_c00110")
 */
.pf_c00110 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00110 { /* 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_c00110.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00110 { /* 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_c00110 { /* 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_c00110 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00110 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00110 {overflow:visible;}
  }
}
.c_c00110 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00110 { /* 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_c00110:after { /* webkit #35443 */
  content: '';
}
.t_c00110:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00110 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 */
}
.__c00110 { /* 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_c00110 { /* info for Javascript */
  display:none;
}
.l_c00110 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00110 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00110 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00110: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_c00110 {
    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_c00110.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00110.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_c00110 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00110{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00110;src:url('chunks/assets/font_7ef351174269f1343c6a59b1.woff2')format("woff");}.ff1_c00110{font-family:ff1_c00110;line-height:1.000000;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;}
.mc_c00110{transform:matrix(0.008230,-0.000280,0.008504,0.249855,0,0);-ms-transform:matrix(0.008230,-0.000280,0.008504,0.249855,0,0);-webkit-transform:matrix(0.008230,-0.000280,0.008504,0.249855,0,0);}
.m1d_c00110{transform:matrix(0.016756,-0.000688,0.010252,0.249790,0,0);-ms-transform:matrix(0.016756,-0.000688,0.010252,0.249790,0,0);-webkit-transform:matrix(0.016756,-0.000688,0.010252,0.249790,0,0);}
.m20_c00110{transform:matrix(0.149949,-0.006154,0.010252,0.249790,0,0);-ms-transform:matrix(0.149949,-0.006154,0.010252,0.249790,0,0);-webkit-transform:matrix(0.149949,-0.006154,0.010252,0.249790,0,0);}
.m13_c00110{transform:matrix(0.151597,-0.005159,0.008504,0.249855,0,0);-ms-transform:matrix(0.151597,-0.005159,0.008504,0.249855,0,0);-webkit-transform:matrix(0.151597,-0.005159,0.008504,0.249855,0,0);}
.mf_c00110{transform:matrix(0.154795,-0.005268,0.008504,0.249855,0,0);-ms-transform:matrix(0.154795,-0.005268,0.008504,0.249855,0,0);-webkit-transform:matrix(0.154795,-0.005268,0.008504,0.249855,0,0);}
.md_c00110{transform:matrix(0.193943,-0.006601,0.008504,0.249855,0,0);-ms-transform:matrix(0.193943,-0.006601,0.008504,0.249855,0,0);-webkit-transform:matrix(0.193943,-0.006601,0.008504,0.249855,0,0);}
.m1a_c00110{transform:matrix(0.217284,-0.007395,0.008504,0.249855,0,0);-ms-transform:matrix(0.217284,-0.007395,0.008504,0.249855,0,0);-webkit-transform:matrix(0.217284,-0.007395,0.008504,0.249855,0,0);}
.m5_c00110{transform:matrix(0.226508,0.001812,-0.002000,0.249992,0,0);-ms-transform:matrix(0.226508,0.001812,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.226508,0.001812,-0.002000,0.249992,0,0);}
.m9_c00110{transform:matrix(0.243252,0.001946,-0.002000,0.249992,0,0);-ms-transform:matrix(0.243252,0.001946,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.243252,0.001946,-0.002000,0.249992,0,0);}
.me_c00110{transform:matrix(0.246083,-0.008375,0.008504,0.249855,0,0);-ms-transform:matrix(0.246083,-0.008375,0.008504,0.249855,0,0);-webkit-transform:matrix(0.246083,-0.008375,0.008504,0.249855,0,0);}
.m12_c00110{transform:matrix(0.249111,-0.008478,0.008504,0.249855,0,0);-ms-transform:matrix(0.249111,-0.008478,0.008504,0.249855,0,0);-webkit-transform:matrix(0.249111,-0.008478,0.008504,0.249855,0,0);}
.mb_c00110{transform:matrix(0.256477,0.002052,-0.002000,0.249992,0,0);-ms-transform:matrix(0.256477,0.002052,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.256477,0.002052,-0.002000,0.249992,0,0);}
.m7_c00110{transform:matrix(0.262942,0.002104,-0.002000,0.249992,0,0);-ms-transform:matrix(0.262942,0.002104,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.262942,0.002104,-0.002000,0.249992,0,0);}
.m21_c00110{transform:matrix(0.263553,-0.010816,0.010252,0.249790,0,0);-ms-transform:matrix(0.263553,-0.010816,0.010252,0.249790,0,0);-webkit-transform:matrix(0.263553,-0.010816,0.010252,0.249790,0,0);}
.m15_c00110{transform:matrix(0.272867,-0.009287,0.008504,0.249855,0,0);-ms-transform:matrix(0.272867,-0.009287,0.008504,0.249855,0,0);-webkit-transform:matrix(0.272867,-0.009287,0.008504,0.249855,0,0);}
.m16_c00110{transform:matrix(0.281087,-0.009567,0.008504,0.249855,0,0);-ms-transform:matrix(0.281087,-0.009567,0.008504,0.249855,0,0);-webkit-transform:matrix(0.281087,-0.009567,0.008504,0.249855,0,0);}
.m3_c00110{transform:matrix(0.281961,0.002256,-0.002000,0.249992,0,0);-ms-transform:matrix(0.281961,0.002256,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.281961,0.002256,-0.002000,0.249992,0,0);}
.m4_c00110{transform:matrix(0.282356,0.002259,-0.002000,0.249992,0,0);-ms-transform:matrix(0.282356,0.002259,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.282356,0.002259,-0.002000,0.249992,0,0);}
.m10_c00110{transform:matrix(0.282816,-0.009625,0.008504,0.249855,0,0);-ms-transform:matrix(0.282816,-0.009625,0.008504,0.249855,0,0);-webkit-transform:matrix(0.282816,-0.009625,0.008504,0.249855,0,0);}
.m11_c00110{transform:matrix(0.283501,-0.009649,0.008504,0.249855,0,0);-ms-transform:matrix(0.283501,-0.009649,0.008504,0.249855,0,0);-webkit-transform:matrix(0.283501,-0.009649,0.008504,0.249855,0,0);}
.m18_c00110{transform:matrix(0.292980,-0.009971,0.008504,0.249855,0,0);-ms-transform:matrix(0.292980,-0.009971,0.008504,0.249855,0,0);-webkit-transform:matrix(0.292980,-0.009971,0.008504,0.249855,0,0);}
.m8_c00110{transform:matrix(0.297990,0.002384,-0.002000,0.249992,0,0);-ms-transform:matrix(0.297990,0.002384,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.297990,0.002384,-0.002000,0.249992,0,0);}
.ma_c00110{transform:matrix(0.306070,0.002449,-0.002000,0.249992,0,0);-ms-transform:matrix(0.306070,0.002449,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.306070,0.002449,-0.002000,0.249992,0,0);}
.m17_c00110{transform:matrix(0.342142,-0.011644,0.008504,0.249855,0,0);-ms-transform:matrix(0.342142,-0.011644,0.008504,0.249855,0,0);-webkit-transform:matrix(0.342142,-0.011644,0.008504,0.249855,0,0);}
.m1f_c00110{transform:matrix(0.354162,-0.014535,0.010252,0.249790,0,0);-ms-transform:matrix(0.354162,-0.014535,0.010252,0.249790,0,0);-webkit-transform:matrix(0.354162,-0.014535,0.010252,0.249790,0,0);}
.m14_c00110{transform:matrix(0.394012,-0.013410,0.008504,0.249855,0,0);-ms-transform:matrix(0.394012,-0.013410,0.008504,0.249855,0,0);-webkit-transform:matrix(0.394012,-0.013410,0.008504,0.249855,0,0);}
.m2_c00110{transform:matrix(0.445535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445535,0.000000,0.000000,0.250000,0,0);}
.m1e_c00110{transform:matrix(0.469480,-0.019268,0.010252,0.249790,0,0);-ms-transform:matrix(0.469480,-0.019268,0.010252,0.249790,0,0);-webkit-transform:matrix(0.469480,-0.019268,0.010252,0.249790,0,0);}
.m6_c00110{transform:matrix(0.581101,0.004649,-0.002000,0.249992,0,0);-ms-transform:matrix(0.581101,0.004649,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.581101,0.004649,-0.002000,0.249992,0,0);}
.m1b_c00110{transform:matrix(0.607763,-0.024943,0.010252,0.249790,0,0);-ms-transform:matrix(0.607763,-0.024943,0.010252,0.249790,0,0);-webkit-transform:matrix(0.607763,-0.024943,0.010252,0.249790,0,0);}
.m1_c00110{transform:matrix(0.693540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.693540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.693540,0.000000,0.000000,0.250000,0,0);}
.m19_c00110{transform:matrix(0.740261,-0.025194,0.008504,0.249855,0,0);-ms-transform:matrix(0.740261,-0.025194,0.008504,0.249855,0,0);-webkit-transform:matrix(0.740261,-0.025194,0.008504,0.249855,0,0);}
.m0_c00110{transform:matrix(0.922660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.922660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.922660,0.000000,0.000000,0.250000,0,0);}
.m1c_c00110{transform:matrix(7.536496,-0.309306,0.010252,0.249790,0,0);-ms-transform:matrix(7.536496,-0.309306,0.010252,0.249790,0,0);-webkit-transform:matrix(7.536496,-0.309306,0.010252,0.249790,0,0);}
.v0_c00110{vertical-align:0.000000px;}
.ls0_c00110{letter-spacing:0.000000px;}
.sc__c00110{text-shadow:none;}
.sc0_c00110{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__c00110{-webkit-text-stroke:0px transparent;}
.sc0_c00110{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00110{word-spacing:0.000000px;}
.fc0_c00110{color:transparent;}
.fs0_c00110{font-size:18.000000px;}
.fs5_c00110{font-size:35.994276px;}
.fs6_c00110{font-size:83.986643px;}
.fs4_c00110{font-size:143.939291px;}
.fs3_c00110{font-size:155.934232px;}
.fs1_c00110{font-size:168.005376px;}
.fs2_c00110{font-size:209.911466px;}
.y0_c00110{bottom:0.000000px;}
.y1e_c00110{bottom:420.992052px;}
.y1f_c00110{bottom:427.123697px;}
.y20_c00110{bottom:434.932310px;}
.y18_c00110{bottom:443.680499px;}
.y1a_c00110{bottom:461.725500px;}
.y19_c00110{bottom:463.133424px;}
.y1b_c00110{bottom:463.468840px;}
.y1c_c00110{bottom:475.420504px;}
.y1d_c00110{bottom:478.970530px;}
.y11_c00110{bottom:483.648494px;}
.y12_c00110{bottom:485.544182px;}
.y13_c00110{bottom:489.563337px;}
.y14_c00110{bottom:491.697821px;}
.y15_c00110{bottom:495.300374px;}
.y16_c00110{bottom:497.437847px;}
.y17_c00110{bottom:510.017400px;}
.yb_c00110{bottom:552.988500px;}
.yc_c00110{bottom:562.578030px;}
.yd_c00110{bottom:566.871771px;}
.ye_c00110{bottom:568.963587px;}
.yf_c00110{bottom:575.509029px;}
.y10_c00110{bottom:583.621854px;}
.ya_c00110{bottom:640.579788px;}
.y9_c00110{bottom:642.479700px;}
.y8_c00110{bottom:643.149276px;}
.y7_c00110{bottom:644.423640px;}
.y6_c00110{bottom:645.061956px;}
.y5_c00110{bottom:646.234488px;}
.y4_c00110{bottom:646.938396px;}
.y3_c00110{bottom:647.215356px;}
.y2_c00110{bottom:648.001500px;}
.y1_c00110{bottom:696.196500px;}
.h2_c00110{height:18.000000px;}
.h7_c00110{height:35.994276px;}
.h8_c00110{height:83.986643px;}
.h6_c00110{height:143.939291px;}
.h5_c00110{height:155.934232px;}
.h3_c00110{height:168.005376px;}
.h4_c00110{height:209.911466px;}
.h0_c00110{height:698.220000px;}
.h1_c00110{height:698.250000px;}
.w1_c00110{width:945.750000px;}
.w0_c00110{width:946.050000px;}
.x0_c00110{left:0.000000px;}
.xc_c00110{left:25.395000px;}
.x12_c00110{left:35.868195px;}
.x13_c00110{left:96.945785px;}
.x4_c00110{left:98.008500px;}
.x5_c00110{left:132.628500px;}
.x6_c00110{left:220.617000px;}
.x14_c00110{left:226.454868px;}
.x15_c00110{left:295.210038px;}
.xd_c00110{left:307.157955px;}
.x19_c00110{left:335.829387px;}
.x7_c00110{left:367.183500px;}
.x16_c00110{left:411.288188px;}
.xe_c00110{left:433.318169px;}
.x8_c00110{left:446.973000px;}
.x17_c00110{left:480.175277px;}
.xf_c00110{left:494.780644px;}
.x1b_c00110{left:505.249500px;}
.x1_c00110{left:525.150000px;}
.x1e_c00110{left:538.966605px;}
.x1c_c00110{left:547.727479px;}
.x2_c00110{left:555.390000px;}
.x3_c00110{left:574.830000px;}
.x9_c00110{left:606.268500px;}
.x10_c00110{left:687.101132px;}
.xa_c00110{left:689.965500px;}
.x1f_c00110{left:696.013267px;}
.x1a_c00110{left:821.753784px;}
.x1d_c00110{left:838.939975px;}
.x18_c00110{left:885.541407px;}
.x20_c00110{left:896.041976px;}
.x11_c00110{left:925.475019px;}
.xb_c00110{left:927.454500px;}
@media print{
.v0_c00110{vertical-align:0.000000pt;}
.ls0_c00110{letter-spacing:0.000000pt;}
.ws0_c00110{word-spacing:0.000000pt;}
.fs0_c00110{font-size:16.000000pt;}
.fs5_c00110{font-size:31.994912pt;}
.fs6_c00110{font-size:74.654794pt;}
.fs4_c00110{font-size:127.946037pt;}
.fs3_c00110{font-size:138.608206pt;}
.fs1_c00110{font-size:149.338112pt;}
.fs2_c00110{font-size:186.587970pt;}
.y0_c00110{bottom:0.000000pt;}
.y1e_c00110{bottom:374.215157pt;}
.y1f_c00110{bottom:379.665508pt;}
.y20_c00110{bottom:386.606497pt;}
.y18_c00110{bottom:394.382665pt;}
.y1a_c00110{bottom:410.422667pt;}
.y19_c00110{bottom:411.674155pt;}
.y1b_c00110{bottom:411.972303pt;}
.y1c_c00110{bottom:422.596004pt;}
.y1d_c00110{bottom:425.751583pt;}
.y11_c00110{bottom:429.909772pt;}
.y12_c00110{bottom:431.594828pt;}
.y13_c00110{bottom:435.167411pt;}
.y14_c00110{bottom:437.064729pt;}
.y15_c00110{bottom:440.266999pt;}
.y16_c00110{bottom:442.166975pt;}
.y17_c00110{bottom:453.348800pt;}
.yb_c00110{bottom:491.545333pt;}
.yc_c00110{bottom:500.069360pt;}
.yd_c00110{bottom:503.886019pt;}
.ye_c00110{bottom:505.745411pt;}
.yf_c00110{bottom:511.563581pt;}
.y10_c00110{bottom:518.774981pt;}
.ya_c00110{bottom:569.404256pt;}
.y9_c00110{bottom:571.093067pt;}
.y8_c00110{bottom:571.688245pt;}
.y7_c00110{bottom:572.821013pt;}
.y6_c00110{bottom:573.388405pt;}
.y5_c00110{bottom:574.430656pt;}
.y4_c00110{bottom:575.056352pt;}
.y3_c00110{bottom:575.302539pt;}
.y2_c00110{bottom:576.001333pt;}
.y1_c00110{bottom:618.841333pt;}
.h2_c00110{height:16.000000pt;}
.h7_c00110{height:31.994912pt;}
.h8_c00110{height:74.654794pt;}
.h6_c00110{height:127.946037pt;}
.h5_c00110{height:138.608206pt;}
.h3_c00110{height:149.338112pt;}
.h4_c00110{height:186.587970pt;}
.h0_c00110{height:620.640000pt;}
.h1_c00110{height:620.666667pt;}
.w1_c00110{width:840.666667pt;}
.w0_c00110{width:840.933333pt;}
.x0_c00110{left:0.000000pt;}
.xc_c00110{left:22.573333pt;}
.x12_c00110{left:31.882840pt;}
.x13_c00110{left:86.174031pt;}
.x4_c00110{left:87.118667pt;}
.x5_c00110{left:117.892000pt;}
.x6_c00110{left:196.104000pt;}
.x14_c00110{left:201.293216pt;}
.x15_c00110{left:262.408923pt;}
.xd_c00110{left:273.029293pt;}
.x19_c00110{left:298.515011pt;}
.x7_c00110{left:326.385333pt;}
.x16_c00110{left:365.589500pt;}
.xe_c00110{left:385.171705pt;}
.x8_c00110{left:397.309333pt;}
.x17_c00110{left:426.822468pt;}
.xf_c00110{left:439.805017pt;}
.x1b_c00110{left:449.110667pt;}
.x1_c00110{left:466.800000pt;}
.x1e_c00110{left:479.081427pt;}
.x1c_c00110{left:486.868871pt;}
.x2_c00110{left:493.680000pt;}
.x3_c00110{left:510.960000pt;}
.x9_c00110{left:538.905333pt;}
.x10_c00110{left:610.756561pt;}
.xa_c00110{left:613.302667pt;}
.x1f_c00110{left:618.678460pt;}
.x1a_c00110{left:730.447808pt;}
.x1d_c00110{left:745.724423pt;}
.x18_c00110{left:787.147917pt;}
.x20_c00110{left:796.481756pt;}
.x11_c00110{left:822.644461pt;}
.xb_c00110{left:824.404000pt;}
}





/* 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_c00111 {
    display:none;
  }
  .loading-indicator_c00111.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00111 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_c00111 { 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_c00111" -> "#page-container .classname_c00111")
 */
.pf_c00111 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00111 { /* 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_c00111.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00111 { /* 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_c00111 { /* 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_c00111 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00111 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00111 {overflow:visible;}
  }
}
.c_c00111 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00111 { /* 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_c00111:after { /* webkit #35443 */
  content: '';
}
.t_c00111:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00111 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 */
}
.__c00111 { /* 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_c00111 { /* info for Javascript */
  display:none;
}
.l_c00111 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00111 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00111 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00111: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_c00111 {
    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_c00111.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00111.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_c00111 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00111{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00111;src:url('chunks/assets/font_c605e72f209fc835e906f064.woff2')format("woff");}.ff1_c00111{font-family:ff1_c00111;line-height:1.000000;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;}
.m5a_c00111{transform:matrix(0.022360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.022360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.022360,0.000000,0.000000,0.250000,0,0);}
.m56_c00111{transform:matrix(0.023179,-0.000255,0.002750,0.249985,0,0);-ms-transform:matrix(0.023179,-0.000255,0.002750,0.249985,0,0);-webkit-transform:matrix(0.023179,-0.000255,0.002750,0.249985,0,0);}
.m36_c00111{transform:matrix(0.023695,-0.000972,0.010252,0.249790,0,0);-ms-transform:matrix(0.023695,-0.000972,0.010252,0.249790,0,0);-webkit-transform:matrix(0.023695,-0.000972,0.010252,0.249790,0,0);}
.m55_c00111{transform:matrix(0.026503,-0.000292,0.002750,0.249985,0,0);-ms-transform:matrix(0.026503,-0.000292,0.002750,0.249985,0,0);-webkit-transform:matrix(0.026503,-0.000292,0.002750,0.249985,0,0);}
.m44_c00111{transform:matrix(0.030290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.030290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.030290,0.000000,0.000000,0.250000,0,0);}
.m23_c00111{transform:matrix(0.032423,-0.001331,0.010252,0.249790,0,0);-ms-transform:matrix(0.032423,-0.001331,0.010252,0.249790,0,0);-webkit-transform:matrix(0.032423,-0.001331,0.010252,0.249790,0,0);}
.m4b_c00111{transform:matrix(0.032448,-0.000357,0.002750,0.249985,0,0);-ms-transform:matrix(0.032448,-0.000357,0.002750,0.249985,0,0);-webkit-transform:matrix(0.032448,-0.000357,0.002750,0.249985,0,0);}
.m57_c00111{transform:matrix(0.036363,-0.000400,0.002750,0.249985,0,0);-ms-transform:matrix(0.036363,-0.000400,0.002750,0.249985,0,0);-webkit-transform:matrix(0.036363,-0.000400,0.002750,0.249985,0,0);}
.m5c_c00111{transform:matrix(0.037500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.037500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.037500,0.000000,0.000000,0.250000,0,0);}
.me_c00111{transform:matrix(0.040560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.040560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.040560,0.000000,0.000000,0.250000,0,0);}
.m37_c00111{transform:matrix(0.043693,-0.001793,0.010252,0.249790,0,0);-ms-transform:matrix(0.043693,-0.001793,0.010252,0.249790,0,0);-webkit-transform:matrix(0.043693,-0.001793,0.010252,0.249790,0,0);}
.m4f_c00111{transform:matrix(0.044997,-0.000495,0.002750,0.249985,0,0);-ms-transform:matrix(0.044997,-0.000495,0.002750,0.249985,0,0);-webkit-transform:matrix(0.044997,-0.000495,0.002750,0.249985,0,0);}
.m2a_c00111{transform:matrix(0.050867,-0.002088,0.010252,0.249790,0,0);-ms-transform:matrix(0.050867,-0.002088,0.010252,0.249790,0,0);-webkit-transform:matrix(0.050867,-0.002088,0.010252,0.249790,0,0);}
.m4e_c00111{transform:matrix(0.050907,-0.000560,0.002750,0.249985,0,0);-ms-transform:matrix(0.050907,-0.000560,0.002750,0.249985,0,0);-webkit-transform:matrix(0.050907,-0.000560,0.002750,0.249985,0,0);}
.m3d_c00111{transform:matrix(0.056250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.056250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.056250,0.000000,0.000000,0.250000,0,0);}
.m64_c00111{transform:matrix(0.063640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.063640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.063640,0.000000,0.000000,0.250000,0,0);}
.m7_c00111{transform:matrix(0.080775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080775,0.000000,0.000000,0.250000,0,0);}
.m8_c00111{transform:matrix(0.087465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087465,0.000000,0.000000,0.250000,0,0);}
.m28_c00111{transform:matrix(0.117246,-0.004812,0.010252,0.249790,0,0);-ms-transform:matrix(0.117246,-0.004812,0.010252,0.249790,0,0);-webkit-transform:matrix(0.117246,-0.004812,0.010252,0.249790,0,0);}
.m17_c00111{transform:matrix(0.117455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117455,0.000000,0.000000,0.250000,0,0);}
.m16_c00111{transform:matrix(0.121165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121165,0.000000,0.000000,0.250000,0,0);}
.m32_c00111{transform:matrix(0.125674,-0.005158,0.010252,0.249790,0,0);-ms-transform:matrix(0.125674,-0.005158,0.010252,0.249790,0,0);-webkit-transform:matrix(0.125674,-0.005158,0.010252,0.249790,0,0);}
.m68_c00111{transform:matrix(0.138295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138295,0.000000,0.000000,0.250000,0,0);}
.m46_c00111{transform:matrix(0.146680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146680,0.000000,0.000000,0.250000,0,0);}
.m1c_c00111{transform:matrix(0.148490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148490,0.000000,0.000000,0.250000,0,0);}
.m1_c00111{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m9_c00111{transform:matrix(0.164010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164010,0.000000,0.000000,0.250000,0,0);}
.m52_c00111{transform:matrix(0.168240,-0.001851,0.002750,0.249985,0,0);-ms-transform:matrix(0.168240,-0.001851,0.002750,0.249985,0,0);-webkit-transform:matrix(0.168240,-0.001851,0.002750,0.249985,0,0);}
.m5b_c00111{transform:matrix(0.178465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178465,0.000000,0.000000,0.250000,0,0);}
.m5_c00111{transform:matrix(0.180625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180625,0.000000,0.000000,0.250000,0,0);}
.m53_c00111{transform:matrix(0.186059,-0.002047,0.002750,0.249985,0,0);-ms-transform:matrix(0.186059,-0.002047,0.002750,0.249985,0,0);-webkit-transform:matrix(0.186059,-0.002047,0.002750,0.249985,0,0);}
.m38_c00111{transform:matrix(0.187550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187550,0.000000,0.000000,0.250000,0,0);}
.m69_c00111{transform:matrix(0.201245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201245,0.000000,0.000000,0.250000,0,0);}
.m3_c00111{transform:matrix(0.204020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204020,0.000000,0.000000,0.250000,0,0);}
.m47_c00111{transform:matrix(0.212265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212265,0.000000,0.000000,0.250000,0,0);}
.m59_c00111{transform:matrix(0.221925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221925,0.000000,0.000000,0.250000,0,0);}
.m45_c00111{transform:matrix(0.246730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246730,0.000000,0.000000,0.250000,0,0);}
.m33_c00111{transform:matrix(0.259696,-0.010658,0.010252,0.249790,0,0);-ms-transform:matrix(0.259696,-0.010658,0.010252,0.249790,0,0);-webkit-transform:matrix(0.259696,-0.010658,0.010252,0.249790,0,0);}
.m20_c00111{transform:matrix(0.268269,-0.011010,0.010252,0.249790,0,0);-ms-transform:matrix(0.268269,-0.011010,0.010252,0.249790,0,0);-webkit-transform:matrix(0.268269,-0.011010,0.010252,0.249790,0,0);}
.m1e_c00111{transform:matrix(0.292590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292590,0.000000,0.000000,0.250000,0,0);}
.ma_c00111{transform:matrix(0.295465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295465,0.000000,0.000000,0.250000,0,0);}
.m43_c00111{transform:matrix(0.295845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295845,0.000000,0.000000,0.250000,0,0);}
.m48_c00111{transform:matrix(0.296342,-0.003260,0.002750,0.249985,0,0);-ms-transform:matrix(0.296342,-0.003260,0.002750,0.249985,0,0);-webkit-transform:matrix(0.296342,-0.003260,0.002750,0.249985,0,0);}
.m4_c00111{transform:matrix(0.298875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298875,0.000000,0.000000,0.250000,0,0);}
.m65_c00111{transform:matrix(0.308705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308705,0.000000,0.000000,0.250000,0,0);}
.m25_c00111{transform:matrix(0.332840,-0.013660,0.010252,0.249790,0,0);-ms-transform:matrix(0.332840,-0.013660,0.010252,0.249790,0,0);-webkit-transform:matrix(0.332840,-0.013660,0.010252,0.249790,0,0);}
.m3c_c00111{transform:matrix(0.335410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335410,0.000000,0.000000,0.250000,0,0);}
.m10_c00111{transform:matrix(0.339165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339165,0.000000,0.000000,0.250000,0,0);}
.m2e_c00111{transform:matrix(0.350605,-0.014389,0.010252,0.249790,0,0);-ms-transform:matrix(0.350605,-0.014389,0.010252,0.249790,0,0);-webkit-transform:matrix(0.350605,-0.014389,0.010252,0.249790,0,0);}
.m3f_c00111{transform:matrix(0.356545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356545,0.000000,0.000000,0.250000,0,0);}
.m1d_c00111{transform:matrix(0.382895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382895,0.000000,0.000000,0.250000,0,0);}
.m39_c00111{transform:matrix(0.383650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383650,0.000000,0.000000,0.250000,0,0);}
.m1b_c00111{transform:matrix(0.396010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396010,0.000000,0.000000,0.250000,0,0);}
.m3e_c00111{transform:matrix(0.418190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418190,0.000000,0.000000,0.250000,0,0);}
.m22_c00111{transform:matrix(0.418413,-0.017172,0.010252,0.249790,0,0);-ms-transform:matrix(0.418413,-0.017172,0.010252,0.249790,0,0);-webkit-transform:matrix(0.418413,-0.017172,0.010252,0.249790,0,0);}
.m30_c00111{transform:matrix(0.424038,-0.017403,0.010252,0.249790,0,0);-ms-transform:matrix(0.424038,-0.017403,0.010252,0.249790,0,0);-webkit-transform:matrix(0.424038,-0.017403,0.010252,0.249790,0,0);}
.m3a_c00111{transform:matrix(0.440820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440820,0.000000,0.000000,0.250000,0,0);}
.m11_c00111{transform:matrix(0.449580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449580,0.000000,0.000000,0.250000,0,0);}
.m1a_c00111{transform:matrix(0.456205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456205,0.000000,0.000000,0.250000,0,0);}
.m51_c00111{transform:matrix(0.471506,-0.005187,0.002750,0.249985,0,0);-ms-transform:matrix(0.471506,-0.005187,0.002750,0.249985,0,0);-webkit-transform:matrix(0.471506,-0.005187,0.002750,0.249985,0,0);}
.m50_c00111{transform:matrix(0.474691,-0.005222,0.002750,0.249985,0,0);-ms-transform:matrix(0.474691,-0.005222,0.002750,0.249985,0,0);-webkit-transform:matrix(0.474691,-0.005222,0.002750,0.249985,0,0);}
.m15_c00111{transform:matrix(0.483225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483225,0.000000,0.000000,0.250000,0,0);}
.m18_c00111{transform:matrix(0.487595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487595,0.000000,0.000000,0.250000,0,0);}
.m21_c00111{transform:matrix(0.497616,-0.020423,0.010252,0.249790,0,0);-ms-transform:matrix(0.497616,-0.020423,0.010252,0.249790,0,0);-webkit-transform:matrix(0.497616,-0.020423,0.010252,0.249790,0,0);}
.m2c_c00111{transform:matrix(0.505449,-0.020744,0.010252,0.249790,0,0);-ms-transform:matrix(0.505449,-0.020744,0.010252,0.249790,0,0);-webkit-transform:matrix(0.505449,-0.020744,0.010252,0.249790,0,0);}
.m27_c00111{transform:matrix(0.514382,-0.021111,0.010252,0.249790,0,0);-ms-transform:matrix(0.514382,-0.021111,0.010252,0.249790,0,0);-webkit-transform:matrix(0.514382,-0.021111,0.010252,0.249790,0,0);}
.m6_c00111{transform:matrix(0.530805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530805,0.000000,0.000000,0.250000,0,0);}
.mb_c00111{transform:matrix(0.545895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545895,0.000000,0.000000,0.250000,0,0);}
.m4c_c00111{transform:matrix(0.546527,-0.006012,0.002750,0.249985,0,0);-ms-transform:matrix(0.546527,-0.006012,0.002750,0.249985,0,0);-webkit-transform:matrix(0.546527,-0.006012,0.002750,0.249985,0,0);}
.m1f_c00111{transform:matrix(0.547890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547890,0.000000,0.000000,0.250000,0,0);}
.m63_c00111{transform:matrix(0.557425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557425,0.000000,0.000000,0.250000,0,0);}
.m60_c00111{transform:matrix(0.576890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576890,0.000000,0.000000,0.250000,0,0);}
.m24_c00111{transform:matrix(0.584508,-0.023989,0.010252,0.249790,0,0);-ms-transform:matrix(0.584508,-0.023989,0.010252,0.249790,0,0);-webkit-transform:matrix(0.584508,-0.023989,0.010252,0.249790,0,0);}
.m29_c00111{transform:matrix(0.595404,-0.024436,0.010252,0.249790,0,0);-ms-transform:matrix(0.595404,-0.024436,0.010252,0.249790,0,0);-webkit-transform:matrix(0.595404,-0.024436,0.010252,0.249790,0,0);}
.m35_c00111{transform:matrix(0.596678,-0.024488,0.010252,0.249790,0,0);-ms-transform:matrix(0.596678,-0.024488,0.010252,0.249790,0,0);-webkit-transform:matrix(0.596678,-0.024488,0.010252,0.249790,0,0);}
.m14_c00111{transform:matrix(0.597570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.597570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.597570,0.000000,0.000000,0.250000,0,0);}
.m0_c00111{transform:matrix(0.615000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615000,0.000000,0.000000,0.250000,0,0);}
.m54_c00111{transform:matrix(0.616368,-0.006780,0.002750,0.249985,0,0);-ms-transform:matrix(0.616368,-0.006780,0.002750,0.249985,0,0);-webkit-transform:matrix(0.616368,-0.006780,0.002750,0.249985,0,0);}
.m62_c00111{transform:matrix(0.645915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.645915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.645915,0.000000,0.000000,0.250000,0,0);}
.m2d_c00111{transform:matrix(0.657397,-0.026980,0.010252,0.249790,0,0);-ms-transform:matrix(0.657397,-0.026980,0.010252,0.249790,0,0);-webkit-transform:matrix(0.657397,-0.026980,0.010252,0.249790,0,0);}
.m34_c00111{transform:matrix(0.658421,-0.027022,0.010252,0.249790,0,0);-ms-transform:matrix(0.658421,-0.027022,0.010252,0.249790,0,0);-webkit-transform:matrix(0.658421,-0.027022,0.010252,0.249790,0,0);}
.m4d_c00111{transform:matrix(0.660340,-0.007264,0.002750,0.249985,0,0);-ms-transform:matrix(0.660340,-0.007264,0.002750,0.249985,0,0);-webkit-transform:matrix(0.660340,-0.007264,0.002750,0.249985,0,0);}
.m5e_c00111{transform:matrix(0.664830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.664830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.664830,0.000000,0.000000,0.250000,0,0);}
.m2f_c00111{transform:matrix(0.671135,-0.027544,0.010252,0.249790,0,0);-ms-transform:matrix(0.671135,-0.027544,0.010252,0.249790,0,0);-webkit-transform:matrix(0.671135,-0.027544,0.010252,0.249790,0,0);}
.m19_c00111{transform:matrix(0.671200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.671200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.671200,0.000000,0.000000,0.250000,0,0);}
.m49_c00111{transform:matrix(0.673299,-0.007406,0.002750,0.249985,0,0);-ms-transform:matrix(0.673299,-0.007406,0.002750,0.249985,0,0);-webkit-transform:matrix(0.673299,-0.007406,0.002750,0.249985,0,0);}
.m13_c00111{transform:matrix(0.699230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699230,0.000000,0.000000,0.250000,0,0);}
.m42_c00111{transform:matrix(0.714075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.714075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.714075,0.000000,0.000000,0.250000,0,0);}
.m31_c00111{transform:matrix(0.724255,-0.029724,0.010252,0.249790,0,0);-ms-transform:matrix(0.724255,-0.029724,0.010252,0.249790,0,0);-webkit-transform:matrix(0.724255,-0.029724,0.010252,0.249790,0,0);}
.m58_c00111{transform:matrix(0.730770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.730770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.730770,0.000000,0.000000,0.250000,0,0);}
.m5f_c00111{transform:matrix(0.731315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.731315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.731315,0.000000,0.000000,0.250000,0,0);}
.m12_c00111{transform:matrix(0.769145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.769145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.769145,0.000000,0.000000,0.250000,0,0);}
.m4a_c00111{transform:matrix(0.769343,-0.008463,0.002750,0.249985,0,0);-ms-transform:matrix(0.769343,-0.008463,0.002750,0.249985,0,0);-webkit-transform:matrix(0.769343,-0.008463,0.002750,0.249985,0,0);}
.m26_c00111{transform:matrix(0.830426,-0.034082,0.010252,0.249790,0,0);-ms-transform:matrix(0.830426,-0.034082,0.010252,0.249790,0,0);-webkit-transform:matrix(0.830426,-0.034082,0.010252,0.249790,0,0);}
.m40_c00111{transform:matrix(0.849885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.849885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.849885,0.000000,0.000000,0.250000,0,0);}
.md_c00111{transform:matrix(0.850190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.850190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.850190,0.000000,0.000000,0.250000,0,0);}
.m41_c00111{transform:matrix(0.857035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.857035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.857035,0.000000,0.000000,0.250000,0,0);}
.m2b_c00111{transform:matrix(0.878236,-0.036044,0.010252,0.249790,0,0);-ms-transform:matrix(0.878236,-0.036044,0.010252,0.249790,0,0);-webkit-transform:matrix(0.878236,-0.036044,0.010252,0.249790,0,0);}
.m2_c00111{transform:matrix(0.898055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.898055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.898055,0.000000,0.000000,0.250000,0,0);}
.m3b_c00111{transform:matrix(0.916885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.916885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.916885,0.000000,0.000000,0.250000,0,0);}
.mc_c00111{transform:matrix(0.975140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.975140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.975140,0.000000,0.000000,0.250000,0,0);}
.m61_c00111{transform:matrix(0.991615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.991615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.991615,0.000000,0.000000,0.250000,0,0);}
.m66_c00111{transform:matrix(1.017890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.017890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.017890,0.000000,0.000000,0.250000,0,0);}
.mf_c00111{transform:matrix(1.206010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.206010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.206010,0.000000,0.000000,0.250000,0,0);}
.m67_c00111{transform:matrix(1.629755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.629755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.629755,0.000000,0.000000,0.250000,0,0);}
.m5d_c00111{transform:matrix(1.986155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.986155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.986155,0.000000,0.000000,0.250000,0,0);}
.v0_c00111{vertical-align:0.000000px;}
.ls0_c00111{letter-spacing:0.000000px;}
.sc__c00111{text-shadow:none;}
.sc0_c00111{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__c00111{-webkit-text-stroke:0px transparent;}
.sc0_c00111{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00111{word-spacing:0.000000px;}
.fc0_c00111{color:transparent;}
.fs0_c00111{font-size:18.000000px;}
.fs2_c00111{font-size:24.000000px;}
.fs5_c00111{font-size:29.995230px;}
.fs4_c00111{font-size:30.000000px;}
.fsb_c00111{font-size:30.001815px;}
.fs7_c00111{font-size:35.994276px;}
.fs9_c00111{font-size:36.000000px;}
.fsc_c00111{font-size:42.002541px;}
.fs3_c00111{font-size:54.000000px;}
.fs6_c00111{font-size:59.990459px;}
.fs8_c00111{font-size:60.000000px;}
.fs1_c00111{font-size:72.000000px;}
.fsa_c00111{font-size:84.005082px;}
.y0_c00111{bottom:0.000000px;}
.y3c_c00111{bottom:75.345000px;}
.y3b_c00111{bottom:80.592000px;}
.y3a_c00111{bottom:85.186500px;}
.y34_c00111{bottom:111.242232px;}
.y35_c00111{bottom:111.790797px;}
.y36_c00111{bottom:112.528291px;}
.y37_c00111{bottom:114.303992px;}
.y38_c00111{bottom:115.450086px;}
.y39_c00111{bottom:117.870812px;}
.y2d_c00111{bottom:120.959667px;}
.y2e_c00111{bottom:121.231664px;}
.y2f_c00111{bottom:121.656734px;}
.y29_c00111{bottom:122.850000px;}
.y30_c00111{bottom:122.899922px;}
.y31_c00111{bottom:123.379981px;}
.y32_c00111{bottom:123.666034px;}
.y33_c00111{bottom:124.044711px;}
.y2a_c00111{bottom:129.331500px;}
.y2b_c00111{bottom:129.560372px;}
.y2c_c00111{bottom:131.229776px;}
.y28_c00111{bottom:146.745000px;}
.y25_c00111{bottom:235.731000px;}
.y27_c00111{bottom:248.806500px;}
.y1c_c00111{bottom:253.272048px;}
.y1d_c00111{bottom:254.053115px;}
.y1e_c00111{bottom:254.444171px;}
.y1f_c00111{bottom:255.199091px;}
.y20_c00111{bottom:255.783441px;}
.y21_c00111{bottom:257.016164px;}
.y22_c00111{bottom:257.942637px;}
.y23_c00111{bottom:258.809489px;}
.y26_c00111{bottom:260.274000px;}
.y24_c00111{bottom:261.179075px;}
.y18_c00111{bottom:268.134886px;}
.y19_c00111{bottom:270.022593px;}
.y1a_c00111{bottom:272.798709px;}
.y1b_c00111{bottom:275.723177px;}
.yc_c00111{bottom:291.880500px;}
.yd_c00111{bottom:292.746420px;}
.ye_c00111{bottom:293.975990px;}
.yf_c00111{bottom:294.861036px;}
.y10_c00111{bottom:295.136003px;}
.y11_c00111{bottom:295.880891px;}
.y12_c00111{bottom:297.388748px;}
.y13_c00111{bottom:298.741317px;}
.y14_c00111{bottom:299.418924px;}
.y15_c00111{bottom:301.442766px;}
.y16_c00111{bottom:302.205120px;}
.y17_c00111{bottom:303.061692px;}
.yb_c00111{bottom:461.835000px;}
.ya_c00111{bottom:462.922500px;}
.y9_c00111{bottom:489.780000px;}
.y8_c00111{bottom:498.409500px;}
.y7_c00111{bottom:502.192500px;}
.y6_c00111{bottom:530.140500px;}
.y5_c00111{bottom:543.780000px;}
.y4_c00111{bottom:544.290000px;}
.y3_c00111{bottom:556.996500px;}
.y2_c00111{bottom:620.734500px;}
.y1_c00111{bottom:623.275500px;}
.h2_c00111{height:18.000000px;}
.h4_c00111{height:24.000000px;}
.h7_c00111{height:29.995230px;}
.h6_c00111{height:30.000000px;}
.hd_c00111{height:30.001815px;}
.h9_c00111{height:35.994276px;}
.hb_c00111{height:36.000000px;}
.he_c00111{height:42.002541px;}
.h5_c00111{height:54.000000px;}
.h8_c00111{height:59.990459px;}
.ha_c00111{height:60.000000px;}
.h3_c00111{height:72.000000px;}
.hc_c00111{height:84.005082px;}
.h0_c00111{height:698.220000px;}
.h1_c00111{height:698.250000px;}
.w1_c00111{width:945.750000px;}
.w0_c00111{width:946.050000px;}
.x0_c00111{left:0.000000px;}
.x2b_c00111{left:342.687843px;}
.x1d_c00111{left:345.043500px;}
.x28_c00111{left:348.129985px;}
.x1e_c00111{left:366.142380px;}
.x2c_c00111{left:379.786619px;}
.x1f_c00111{left:396.101890px;}
.x2d_c00111{left:398.348744px;}
.x29_c00111{left:405.280554px;}
.x20_c00111{left:417.666804px;}
.x21_c00111{left:424.366598px;}
.x34_c00111{left:429.570000px;}
.x2e_c00111{left:434.225257px;}
.x22_c00111{left:442.516429px;}
.x35_c00111{left:446.850000px;}
.x2f_c00111{left:461.995737px;}
.x23_c00111{left:479.256652px;}
.x52_c00111{left:480.330000px;}
.x2a_c00111{left:489.308022px;}
.x4d_c00111{left:493.020000px;}
.x53_c00111{left:501.120000px;}
.x24_c00111{left:512.213163px;}
.x58_c00111{left:514.350000px;}
.x36_c00111{left:515.970000px;}
.x30_c00111{left:520.596158px;}
.x49_c00111{left:524.716830px;}
.x3b_c00111{left:526.770000px;}
.x25_c00111{left:528.723636px;}
.x41_c00111{left:529.906500px;}
.x4e_c00111{left:541.080000px;}
.x4a_c00111{left:549.628810px;}
.x42_c00111{left:550.713000px;}
.x31_c00111{left:564.602682px;}
.x3c_c00111{left:569.160000px;}
.x4f_c00111{left:573.210000px;}
.x54_c00111{left:575.910000px;}
.x26_c00111{left:578.036274px;}
.x4b_c00111{left:583.124251px;}
.x44_c00111{left:586.246228px;}
.x55_c00111{left:590.760000px;}
.x27_c00111{left:596.611680px;}
.x3d_c00111{left:599.670000px;}
.x32_c00111{left:605.803238px;}
.x3e_c00111{left:611.010000px;}
.xf_c00111{left:613.170000px;}
.xe_c00111{left:615.060000px;}
.x10_c00111{left:618.300000px;}
.x3f_c00111{left:621.270000px;}
.x56_c00111{left:625.050000px;}
.x40_c00111{left:629.100000px;}
.x9_c00111{left:636.120000px;}
.x11_c00111{left:652.050000px;}
.x50_c00111{left:659.070000px;}
.x4c_c00111{left:663.814483px;}
.x57_c00111{left:669.600000px;}
.xa_c00111{left:671.220000px;}
.x19_c00111{left:680.130000px;}
.x12_c00111{left:685.800000px;}
.x45_c00111{left:689.853090px;}
.x15_c00111{left:692.010000px;}
.xb_c00111{left:693.090000px;}
.x51_c00111{left:696.060000px;}
.x14_c00111{left:697.680000px;}
.x1c_c00111{left:699.030000px;}
.x43_c00111{left:702.477000px;}
.x13_c00111{left:705.780000px;}
.x59_c00111{left:710.100000px;}
.x16_c00111{left:714.960000px;}
.x1b_c00111{left:716.850000px;}
.x33_c00111{left:718.437394px;}
.x46_c00111{left:729.812644px;}
.x1a_c00111{left:733.860000px;}
.xc_c00111{left:735.210000px;}
.x17_c00111{left:745.740000px;}
.x39_c00111{left:749.520000px;}
.x47_c00111{left:753.635380px;}
.x1_c00111{left:755.730000px;}
.xd_c00111{left:762.210000px;}
.x18_c00111{left:764.100000px;}
.x2_c00111{left:770.040000px;}
.x3_c00111{left:773.280000px;}
.x3a_c00111{left:779.220000px;}
.x6_c00111{left:781.380000px;}
.x48_c00111{left:785.196534px;}
.x37_c00111{left:790.830000px;}
.x7_c00111{left:796.500000px;}
.x4_c00111{left:803.250000px;}
.x5_c00111{left:814.860000px;}
.x8_c00111{left:825.930000px;}
.x38_c00111{left:830.250000px;}
@media print{
.v0_c00111{vertical-align:0.000000pt;}
.ls0_c00111{letter-spacing:0.000000pt;}
.ws0_c00111{word-spacing:0.000000pt;}
.fs0_c00111{font-size:16.000000pt;}
.fs2_c00111{font-size:21.333333pt;}
.fs5_c00111{font-size:26.662426pt;}
.fs4_c00111{font-size:26.666667pt;}
.fsb_c00111{font-size:26.668280pt;}
.fs7_c00111{font-size:31.994912pt;}
.fs9_c00111{font-size:32.000000pt;}
.fsc_c00111{font-size:37.335592pt;}
.fs3_c00111{font-size:48.000000pt;}
.fs6_c00111{font-size:53.324853pt;}
.fs8_c00111{font-size:53.333333pt;}
.fs1_c00111{font-size:64.000000pt;}
.fsa_c00111{font-size:74.671184pt;}
.y0_c00111{bottom:0.000000pt;}
.y3c_c00111{bottom:66.973333pt;}
.y3b_c00111{bottom:71.637333pt;}
.y3a_c00111{bottom:75.721333pt;}
.y34_c00111{bottom:98.881984pt;}
.y35_c00111{bottom:99.369597pt;}
.y36_c00111{bottom:100.025148pt;}
.y37_c00111{bottom:101.603548pt;}
.y38_c00111{bottom:102.622299pt;}
.y39_c00111{bottom:104.774055pt;}
.y2d_c00111{bottom:107.519704pt;}
.y2e_c00111{bottom:107.761479pt;}
.y2f_c00111{bottom:108.139319pt;}
.y29_c00111{bottom:109.200000pt;}
.y30_c00111{bottom:109.244375pt;}
.y31_c00111{bottom:109.671095pt;}
.y32_c00111{bottom:109.925364pt;}
.y33_c00111{bottom:110.261965pt;}
.y2a_c00111{bottom:114.961333pt;}
.y2b_c00111{bottom:115.164775pt;}
.y2c_c00111{bottom:116.648689pt;}
.y28_c00111{bottom:130.440000pt;}
.y25_c00111{bottom:209.538667pt;}
.y27_c00111{bottom:221.161333pt;}
.y1c_c00111{bottom:225.130709pt;}
.y1d_c00111{bottom:225.824991pt;}
.y1e_c00111{bottom:226.172596pt;}
.y1f_c00111{bottom:226.843636pt;}
.y20_c00111{bottom:227.363059pt;}
.y21_c00111{bottom:228.458812pt;}
.y22_c00111{bottom:229.282344pt;}
.y23_c00111{bottom:230.052879pt;}
.y26_c00111{bottom:231.354667pt;}
.y24_c00111{bottom:232.159177pt;}
.y18_c00111{bottom:238.342121pt;}
.y19_c00111{bottom:240.020083pt;}
.y1a_c00111{bottom:242.487741pt;}
.y1b_c00111{bottom:245.087268pt;}
.yc_c00111{bottom:259.449333pt;}
.yd_c00111{bottom:260.219040pt;}
.ye_c00111{bottom:261.311991pt;}
.yf_c00111{bottom:262.098699pt;}
.y10_c00111{bottom:262.343113pt;}
.y11_c00111{bottom:263.005236pt;}
.y12_c00111{bottom:264.345553pt;}
.y13_c00111{bottom:265.547837pt;}
.y14_c00111{bottom:266.150155pt;}
.y15_c00111{bottom:267.949125pt;}
.y16_c00111{bottom:268.626773pt;}
.y17_c00111{bottom:269.388171pt;}
.yb_c00111{bottom:410.520000pt;}
.ya_c00111{bottom:411.486667pt;}
.y9_c00111{bottom:435.360000pt;}
.y8_c00111{bottom:443.030667pt;}
.y7_c00111{bottom:446.393333pt;}
.y6_c00111{bottom:471.236000pt;}
.y5_c00111{bottom:483.360000pt;}
.y4_c00111{bottom:483.813333pt;}
.y3_c00111{bottom:495.108000pt;}
.y2_c00111{bottom:551.764000pt;}
.y1_c00111{bottom:554.022667pt;}
.h2_c00111{height:16.000000pt;}
.h4_c00111{height:21.333333pt;}
.h7_c00111{height:26.662426pt;}
.h6_c00111{height:26.666667pt;}
.hd_c00111{height:26.668280pt;}
.h9_c00111{height:31.994912pt;}
.hb_c00111{height:32.000000pt;}
.he_c00111{height:37.335592pt;}
.h5_c00111{height:48.000000pt;}
.h8_c00111{height:53.324853pt;}
.ha_c00111{height:53.333333pt;}
.h3_c00111{height:64.000000pt;}
.hc_c00111{height:74.671184pt;}
.h0_c00111{height:620.640000pt;}
.h1_c00111{height:620.666667pt;}
.w1_c00111{width:840.666667pt;}
.w0_c00111{width:840.933333pt;}
.x0_c00111{left:0.000000pt;}
.x2b_c00111{left:304.611416pt;}
.x1d_c00111{left:306.705333pt;}
.x28_c00111{left:309.448876pt;}
.x1e_c00111{left:325.459893pt;}
.x2c_c00111{left:337.588105pt;}
.x1f_c00111{left:352.090569pt;}
.x2d_c00111{left:354.087772pt;}
.x29_c00111{left:360.249381pt;}
.x20_c00111{left:371.259381pt;}
.x21_c00111{left:377.214753pt;}
.x34_c00111{left:381.840000pt;}
.x2e_c00111{left:385.978007pt;}
.x22_c00111{left:393.347937pt;}
.x35_c00111{left:397.200000pt;}
.x2f_c00111{left:410.662877pt;}
.x23_c00111{left:426.005913pt;}
.x52_c00111{left:426.960000pt;}
.x2a_c00111{left:434.940464pt;}
.x4d_c00111{left:438.240000pt;}
.x53_c00111{left:445.440000pt;}
.x24_c00111{left:455.300589pt;}
.x58_c00111{left:457.200000pt;}
.x36_c00111{left:458.640000pt;}
.x30_c00111{left:462.752140pt;}
.x49_c00111{left:466.414960pt;}
.x3b_c00111{left:468.240000pt;}
.x25_c00111{left:469.976565pt;}
.x41_c00111{left:471.028000pt;}
.x4e_c00111{left:480.960000pt;}
.x4a_c00111{left:488.558943pt;}
.x42_c00111{left:489.522667pt;}
.x31_c00111{left:501.869051pt;}
.x3c_c00111{left:505.920000pt;}
.x4f_c00111{left:509.520000pt;}
.x54_c00111{left:511.920000pt;}
.x26_c00111{left:513.810021pt;}
.x4b_c00111{left:518.332668pt;}
.x44_c00111{left:521.107759pt;}
.x55_c00111{left:525.120000pt;}
.x27_c00111{left:530.321493pt;}
.x3d_c00111{left:533.040000pt;}
.x32_c00111{left:538.491767pt;}
.x3e_c00111{left:543.120000pt;}
.xf_c00111{left:545.040000pt;}
.xe_c00111{left:546.720000pt;}
.x10_c00111{left:549.600000pt;}
.x3f_c00111{left:552.240000pt;}
.x56_c00111{left:555.600000pt;}
.x40_c00111{left:559.200000pt;}
.x9_c00111{left:565.440000pt;}
.x11_c00111{left:579.600000pt;}
.x50_c00111{left:585.840000pt;}
.x4c_c00111{left:590.057319pt;}
.x57_c00111{left:595.200000pt;}
.xa_c00111{left:596.640000pt;}
.x19_c00111{left:604.560000pt;}
.x12_c00111{left:609.600000pt;}
.x45_c00111{left:613.202747pt;}
.x15_c00111{left:615.120000pt;}
.xb_c00111{left:616.080000pt;}
.x51_c00111{left:618.720000pt;}
.x14_c00111{left:620.160000pt;}
.x1c_c00111{left:621.360000pt;}
.x43_c00111{left:624.424000pt;}
.x13_c00111{left:627.360000pt;}
.x59_c00111{left:631.200000pt;}
.x16_c00111{left:635.520000pt;}
.x1b_c00111{left:637.200000pt;}
.x33_c00111{left:638.611017pt;}
.x46_c00111{left:648.722351pt;}
.x1a_c00111{left:652.320000pt;}
.xc_c00111{left:653.520000pt;}
.x17_c00111{left:662.880000pt;}
.x39_c00111{left:666.240000pt;}
.x47_c00111{left:669.898116pt;}
.x1_c00111{left:671.760000pt;}
.xd_c00111{left:677.520000pt;}
.x18_c00111{left:679.200000pt;}
.x2_c00111{left:684.480000pt;}
.x3_c00111{left:687.360000pt;}
.x3a_c00111{left:692.640000pt;}
.x6_c00111{left:694.560000pt;}
.x48_c00111{left:697.952475pt;}
.x37_c00111{left:702.960000pt;}
.x7_c00111{left:708.000000pt;}
.x4_c00111{left:714.000000pt;}
.x5_c00111{left:724.320000pt;}
.x8_c00111{left:734.160000pt;}
.x38_c00111{left:738.000000pt;}
}





/* 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_c00112 {
    display:none;
  }
  .loading-indicator_c00112.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00112 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_c00112 { 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_c00112" -> "#page-container .classname_c00112")
 */
.pf_c00112 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00112 { /* 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_c00112.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00112 { /* 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_c00112 { /* 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_c00112 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00112 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00112 {overflow:visible;}
  }
}
.c_c00112 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00112 { /* 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_c00112:after { /* webkit #35443 */
  content: '';
}
.t_c00112:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00112 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 */
}
.__c00112 { /* 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_c00112 { /* info for Javascript */
  display:none;
}
.l_c00112 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00112 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00112 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00112: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_c00112 {
    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_c00112.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00112.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_c00112 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00112{font-family:sans-serif;visibility:hidden;}
.sc__c00112{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00112{-webkit-text-stroke:0px transparent;}
}
.y0_c00112{bottom:0.000000px;}
.h0_c00112{height:698.220000px;}
.h1_c00112{height:698.250000px;}
.w1_c00112{width:945.750000px;}
.w0_c00112{width:946.050000px;}
.x0_c00112{left:0.000000px;}
@media print{
.y0_c00112{bottom:0.000000pt;}
.h0_c00112{height:620.640000pt;}
.h1_c00112{height:620.666667pt;}
.w1_c00112{width:840.666667pt;}
.w0_c00112{width:840.933333pt;}
.x0_c00112{left:0.000000pt;}
}





/* 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_c00113 {
    display:none;
  }
  .loading-indicator_c00113.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00113 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_c00113 { 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_c00113" -> "#page-container .classname_c00113")
 */
.pf_c00113 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00113 { /* 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_c00113.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00113 { /* 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_c00113 { /* 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_c00113 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00113 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00113 {overflow:visible;}
  }
}
.c_c00113 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00113 { /* 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_c00113:after { /* webkit #35443 */
  content: '';
}
.t_c00113:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00113 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 */
}
.__c00113 { /* 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_c00113 { /* info for Javascript */
  display:none;
}
.l_c00113 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00113 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00113 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00113: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_c00113 {
    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_c00113.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00113.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_c00113 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00113{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00113;src:url('chunks/assets/font_a72a081e1d55f37b0ea09712.woff2')format("woff");}.ff1_c00113{font-family:ff1_c00113;line-height:1.000000;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;}
.m11_c00113{transform:matrix(0.123695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123695,0.000000,0.000000,0.250000,0,0);}
.md_c00113{transform:matrix(0.128210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128210,0.000000,0.000000,0.250000,0,0);}
.m13_c00113{transform:matrix(0.129035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129035,0.000000,0.000000,0.250000,0,0);}
.me_c00113{transform:matrix(0.137900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137900,0.000000,0.000000,0.250000,0,0);}
.mf_c00113{transform:matrix(0.142300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142300,0.000000,0.000000,0.250000,0,0);}
.m9_c00113{transform:matrix(0.163995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163995,0.000000,0.000000,0.250000,0,0);}
.m0_c00113{transform:matrix(0.171025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171025,0.000000,0.000000,0.250000,0,0);}
.mb_c00113{transform:matrix(0.193195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193195,0.000000,0.000000,0.250000,0,0);}
.m7_c00113{transform:matrix(0.196675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196675,0.000000,0.000000,0.250000,0,0);}
.mc_c00113{transform:matrix(0.217680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217680,0.000000,0.000000,0.250000,0,0);}
.ma_c00113{transform:matrix(0.222990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222990,0.000000,0.000000,0.250000,0,0);}
.m8_c00113{transform:matrix(0.256540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256540,0.000000,0.000000,0.250000,0,0);}
.m5_c00113{transform:matrix(0.272390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272390,0.000000,0.000000,0.250000,0,0);}
.m2_c00113{transform:matrix(0.277600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277600,0.000000,0.000000,0.250000,0,0);}
.m3_c00113{transform:matrix(0.414850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414850,0.000000,0.000000,0.250000,0,0);}
.m6_c00113{transform:matrix(0.532605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532605,0.000000,0.000000,0.250000,0,0);}
.m12_c00113{transform:matrix(0.547085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547085,0.000000,0.000000,0.250000,0,0);}
.m1_c00113{transform:matrix(0.892120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.892120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.892120,0.000000,0.000000,0.250000,0,0);}
.m10_c00113{transform:matrix(1.012140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.012140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.012140,0.000000,0.000000,0.250000,0,0);}
.m14_c00113{transform:matrix(1.159625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.159625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.159625,0.000000,0.000000,0.250000,0,0);}
.m4_c00113{transform:matrix(1.489220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.489220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.489220,0.000000,0.000000,0.250000,0,0);}
.v0_c00113{vertical-align:0.000000px;}
.ls0_c00113{letter-spacing:0.000000px;}
.sc__c00113{text-shadow:none;}
.sc0_c00113{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__c00113{-webkit-text-stroke:0px transparent;}
.sc0_c00113{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00113{word-spacing:0.000000px;}
.fc0_c00113{color:transparent;}
.fs0_c00113{font-size:18.000000px;}
.fs1_c00113{font-size:24.000000px;}
.fs2_c00113{font-size:30.000000px;}
.fs4_c00113{font-size:42.000000px;}
.fs5_c00113{font-size:48.000000px;}
.fs6_c00113{font-size:54.000000px;}
.fs3_c00113{font-size:60.000000px;}
.fs7_c00113{font-size:66.000000px;}
.y0_c00113{bottom:0.000000px;}
.y10_c00113{bottom:193.050000px;}
.yf_c00113{bottom:221.130000px;}
.ye_c00113{bottom:241.650000px;}
.yd_c00113{bottom:470.070000px;}
.yc_c00113{bottom:480.600000px;}
.yb_c00113{bottom:489.780000px;}
.ya_c00113{bottom:494.640000px;}
.y9_c00113{bottom:507.870000px;}
.y5_c00113{bottom:509.502000px;}
.y8_c00113{bottom:512.190000px;}
.y4_c00113{bottom:523.650000px;}
.y7_c00113{bottom:529.470000px;}
.y6_c00113{bottom:534.600000px;}
.y3_c00113{bottom:545.130000px;}
.y2_c00113{bottom:557.010000px;}
.y1_c00113{bottom:583.740000px;}
.h2_c00113{height:18.000000px;}
.h3_c00113{height:24.000000px;}
.h4_c00113{height:30.000000px;}
.h6_c00113{height:42.000000px;}
.h7_c00113{height:48.000000px;}
.h8_c00113{height:54.000000px;}
.h5_c00113{height:60.000000px;}
.h9_c00113{height:66.000000px;}
.h0_c00113{height:698.220000px;}
.h1_c00113{height:698.250000px;}
.w1_c00113{width:945.750000px;}
.w0_c00113{width:946.050000px;}
.x0_c00113{left:0.000000px;}
.x4_c00113{left:500.040000px;}
.x5_c00113{left:557.010000px;}
.x8_c00113{left:914.220000px;}
.x3_c00113{left:916.110000px;}
.x2_c00113{left:918.540000px;}
.x6_c00113{left:919.620000px;}
.x7_c00113{left:920.700000px;}
.x1_c00113{left:922.320000px;}
.x9_c00113{left:926.640000px;}
.xa_c00113{left:931.500000px;}
@media print{
.v0_c00113{vertical-align:0.000000pt;}
.ls0_c00113{letter-spacing:0.000000pt;}
.ws0_c00113{word-spacing:0.000000pt;}
.fs0_c00113{font-size:16.000000pt;}
.fs1_c00113{font-size:21.333333pt;}
.fs2_c00113{font-size:26.666667pt;}
.fs4_c00113{font-size:37.333333pt;}
.fs5_c00113{font-size:42.666667pt;}
.fs6_c00113{font-size:48.000000pt;}
.fs3_c00113{font-size:53.333333pt;}
.fs7_c00113{font-size:58.666667pt;}
.y0_c00113{bottom:0.000000pt;}
.y10_c00113{bottom:171.600000pt;}
.yf_c00113{bottom:196.560000pt;}
.ye_c00113{bottom:214.800000pt;}
.yd_c00113{bottom:417.840000pt;}
.yc_c00113{bottom:427.200000pt;}
.yb_c00113{bottom:435.360000pt;}
.ya_c00113{bottom:439.680000pt;}
.y9_c00113{bottom:451.440000pt;}
.y5_c00113{bottom:452.890667pt;}
.y8_c00113{bottom:455.280000pt;}
.y4_c00113{bottom:465.466667pt;}
.y7_c00113{bottom:470.640000pt;}
.y6_c00113{bottom:475.200000pt;}
.y3_c00113{bottom:484.560000pt;}
.y2_c00113{bottom:495.120000pt;}
.y1_c00113{bottom:518.880000pt;}
.h2_c00113{height:16.000000pt;}
.h3_c00113{height:21.333333pt;}
.h4_c00113{height:26.666667pt;}
.h6_c00113{height:37.333333pt;}
.h7_c00113{height:42.666667pt;}
.h8_c00113{height:48.000000pt;}
.h5_c00113{height:53.333333pt;}
.h9_c00113{height:58.666667pt;}
.h0_c00113{height:620.640000pt;}
.h1_c00113{height:620.666667pt;}
.w1_c00113{width:840.666667pt;}
.w0_c00113{width:840.933333pt;}
.x0_c00113{left:0.000000pt;}
.x4_c00113{left:444.480000pt;}
.x5_c00113{left:495.120000pt;}
.x8_c00113{left:812.640000pt;}
.x3_c00113{left:814.320000pt;}
.x2_c00113{left:816.480000pt;}
.x6_c00113{left:817.440000pt;}
.x7_c00113{left:818.400000pt;}
.x1_c00113{left:819.840000pt;}
.x9_c00113{left:823.680000pt;}
.xa_c00113{left:828.000000pt;}
}





/* 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_c00114 {
    display:none;
  }
  .loading-indicator_c00114.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00114 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_c00114 { 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_c00114" -> "#page-container .classname_c00114")
 */
.pf_c00114 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00114 { /* 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_c00114.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00114 { /* 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_c00114 { /* 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_c00114 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00114 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00114 {overflow:visible;}
  }
}
.c_c00114 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00114 { /* 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_c00114:after { /* webkit #35443 */
  content: '';
}
.t_c00114:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00114 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 */
}
.__c00114 { /* 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_c00114 { /* info for Javascript */
  display:none;
}
.l_c00114 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00114 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00114 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00114: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_c00114 {
    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_c00114.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00114.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_c00114 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00114{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00114;src:url('chunks/assets/font_fabf4b590f7fb32aea93ffb2.woff2')format("woff");}.ff1_c00114{font-family:ff1_c00114;line-height:1.000000;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;}
.m1f_c00114{transform:matrix(0.014139,-0.000170,0.003000,0.249982,0,0);-ms-transform:matrix(0.014139,-0.000170,0.003000,0.249982,0,0);-webkit-transform:matrix(0.014139,-0.000170,0.003000,0.249982,0,0);}
.m17_c00114{transform:matrix(0.085964,-0.001032,0.003000,0.249982,0,0);-ms-transform:matrix(0.085964,-0.001032,0.003000,0.249982,0,0);-webkit-transform:matrix(0.085964,-0.001032,0.003000,0.249982,0,0);}
.m19_c00114{transform:matrix(0.116732,-0.001401,0.003000,0.249982,0,0);-ms-transform:matrix(0.116732,-0.001401,0.003000,0.249982,0,0);-webkit-transform:matrix(0.116732,-0.001401,0.003000,0.249982,0,0);}
.m18_c00114{transform:matrix(0.149574,-0.001795,0.003000,0.249982,0,0);-ms-transform:matrix(0.149574,-0.001795,0.003000,0.249982,0,0);-webkit-transform:matrix(0.149574,-0.001795,0.003000,0.249982,0,0);}
.m21_c00114{transform:matrix(0.152674,-0.001832,0.003000,0.249982,0,0);-ms-transform:matrix(0.152674,-0.001832,0.003000,0.249982,0,0);-webkit-transform:matrix(0.152674,-0.001832,0.003000,0.249982,0,0);}
.m1b_c00114{transform:matrix(0.158754,-0.001905,0.003000,0.249982,0,0);-ms-transform:matrix(0.158754,-0.001905,0.003000,0.249982,0,0);-webkit-transform:matrix(0.158754,-0.001905,0.003000,0.249982,0,0);}
.m13_c00114{transform:matrix(0.189169,-0.002081,0.002750,0.249985,0,0);-ms-transform:matrix(0.189169,-0.002081,0.002750,0.249985,0,0);-webkit-transform:matrix(0.189169,-0.002081,0.002750,0.249985,0,0);}
.mf_c00114{transform:matrix(0.196643,-0.002163,0.002750,0.249985,0,0);-ms-transform:matrix(0.196643,-0.002163,0.002750,0.249985,0,0);-webkit-transform:matrix(0.196643,-0.002163,0.002750,0.249985,0,0);}
.m5_c00114{transform:matrix(0.207065,-0.002485,0.003000,0.249982,0,0);-ms-transform:matrix(0.207065,-0.002485,0.003000,0.249982,0,0);-webkit-transform:matrix(0.207065,-0.002485,0.003000,0.249982,0,0);}
.m20_c00114{transform:matrix(0.239138,-0.002870,0.003000,0.249982,0,0);-ms-transform:matrix(0.239138,-0.002870,0.003000,0.249982,0,0);-webkit-transform:matrix(0.239138,-0.002870,0.003000,0.249982,0,0);}
.m14_c00114{transform:matrix(0.268524,-0.002954,0.002750,0.249985,0,0);-ms-transform:matrix(0.268524,-0.002954,0.002750,0.249985,0,0);-webkit-transform:matrix(0.268524,-0.002954,0.002750,0.249985,0,0);}
.m1e_c00114{transform:matrix(0.271410,-0.003257,0.003000,0.249982,0,0);-ms-transform:matrix(0.271410,-0.003257,0.003000,0.249982,0,0);-webkit-transform:matrix(0.271410,-0.003257,0.003000,0.249982,0,0);}
.m1a_c00114{transform:matrix(0.281805,-0.003382,0.003000,0.249982,0,0);-ms-transform:matrix(0.281805,-0.003382,0.003000,0.249982,0,0);-webkit-transform:matrix(0.281805,-0.003382,0.003000,0.249982,0,0);}
.m26_c00114{transform:matrix(0.302088,-0.002115,0.001750,0.249994,0,0);-ms-transform:matrix(0.302088,-0.002115,0.001750,0.249994,0,0);-webkit-transform:matrix(0.302088,-0.002115,0.001750,0.249994,0,0);}
.mc_c00114{transform:matrix(0.306595,-0.005519,0.004499,0.249960,0,0);-ms-transform:matrix(0.306595,-0.005519,0.004499,0.249960,0,0);-webkit-transform:matrix(0.306595,-0.005519,0.004499,0.249960,0,0);}
.m9_c00114{transform:matrix(0.308578,-0.003703,0.003000,0.249982,0,0);-ms-transform:matrix(0.308578,-0.003703,0.003000,0.249982,0,0);-webkit-transform:matrix(0.308578,-0.003703,0.003000,0.249982,0,0);}
.m10_c00114{transform:matrix(0.312126,-0.003433,0.002750,0.249985,0,0);-ms-transform:matrix(0.312126,-0.003433,0.002750,0.249985,0,0);-webkit-transform:matrix(0.312126,-0.003433,0.002750,0.249985,0,0);}
.mb_c00114{transform:matrix(0.325042,-0.005851,0.004499,0.249960,0,0);-ms-transform:matrix(0.325042,-0.005851,0.004499,0.249960,0,0);-webkit-transform:matrix(0.325042,-0.005851,0.004499,0.249960,0,0);}
.me_c00114{transform:matrix(0.346719,-0.006241,0.004499,0.249960,0,0);-ms-transform:matrix(0.346719,-0.006241,0.004499,0.249960,0,0);-webkit-transform:matrix(0.346719,-0.006241,0.004499,0.249960,0,0);}
.m12_c00114{transform:matrix(0.352274,-0.003875,0.002750,0.249985,0,0);-ms-transform:matrix(0.352274,-0.003875,0.002750,0.249985,0,0);-webkit-transform:matrix(0.352274,-0.003875,0.002750,0.249985,0,0);}
.m1_c00114{transform:matrix(0.376929,-0.006785,0.004499,0.249960,0,0);-ms-transform:matrix(0.376929,-0.006785,0.004499,0.249960,0,0);-webkit-transform:matrix(0.376929,-0.006785,0.004499,0.249960,0,0);}
.md_c00114{transform:matrix(0.465455,-0.008378,0.004499,0.249960,0,0);-ms-transform:matrix(0.465455,-0.008378,0.004499,0.249960,0,0);-webkit-transform:matrix(0.465455,-0.008378,0.004499,0.249960,0,0);}
.m16_c00114{transform:matrix(0.508863,-0.006106,0.003000,0.249982,0,0);-ms-transform:matrix(0.508863,-0.006106,0.003000,0.249982,0,0);-webkit-transform:matrix(0.508863,-0.006106,0.003000,0.249982,0,0);}
.m2_c00114{transform:matrix(0.592074,-0.010657,0.004499,0.249960,0,0);-ms-transform:matrix(0.592074,-0.010657,0.004499,0.249960,0,0);-webkit-transform:matrix(0.592074,-0.010657,0.004499,0.249960,0,0);}
.m15_c00114{transform:matrix(0.675436,-0.008105,0.003000,0.249982,0,0);-ms-transform:matrix(0.675436,-0.008105,0.003000,0.249982,0,0);-webkit-transform:matrix(0.675436,-0.008105,0.003000,0.249982,0,0);}
.m23_c00114{transform:matrix(0.677283,-0.004741,0.001750,0.249994,0,0);-ms-transform:matrix(0.677283,-0.004741,0.001750,0.249994,0,0);-webkit-transform:matrix(0.677283,-0.004741,0.001750,0.249994,0,0);}
.ma_c00114{transform:matrix(0.678116,-0.008137,0.003000,0.249982,0,0);-ms-transform:matrix(0.678116,-0.008137,0.003000,0.249982,0,0);-webkit-transform:matrix(0.678116,-0.008137,0.003000,0.249982,0,0);}
.m1d_c00114{transform:matrix(0.884761,-0.010617,0.003000,0.249982,0,0);-ms-transform:matrix(0.884761,-0.010617,0.003000,0.249982,0,0);-webkit-transform:matrix(0.884761,-0.010617,0.003000,0.249982,0,0);}
.m1c_c00114{transform:matrix(0.898840,-0.010786,0.003000,0.249982,0,0);-ms-transform:matrix(0.898840,-0.010786,0.003000,0.249982,0,0);-webkit-transform:matrix(0.898840,-0.010786,0.003000,0.249982,0,0);}
.m8_c00114{transform:matrix(0.927808,-0.011134,0.003000,0.249982,0,0);-ms-transform:matrix(0.927808,-0.011134,0.003000,0.249982,0,0);-webkit-transform:matrix(0.927808,-0.011134,0.003000,0.249982,0,0);}
.m6_c00114{transform:matrix(0.953536,-0.011442,0.003000,0.249982,0,0);-ms-transform:matrix(0.953536,-0.011442,0.003000,0.249982,0,0);-webkit-transform:matrix(0.953536,-0.011442,0.003000,0.249982,0,0);}
.m4_c00114{transform:matrix(0.963104,-0.017336,0.004499,0.249960,0,0);-ms-transform:matrix(0.963104,-0.017336,0.004499,0.249960,0,0);-webkit-transform:matrix(0.963104,-0.017336,0.004499,0.249960,0,0);}
.m27_c00114{transform:matrix(1.031400,-0.007220,0.001750,0.249994,0,0);-ms-transform:matrix(1.031400,-0.007220,0.001750,0.249994,0,0);-webkit-transform:matrix(1.031400,-0.007220,0.001750,0.249994,0,0);}
.m7_c00114{transform:matrix(1.034376,-0.012413,0.003000,0.249982,0,0);-ms-transform:matrix(1.034376,-0.012413,0.003000,0.249982,0,0);-webkit-transform:matrix(1.034376,-0.012413,0.003000,0.249982,0,0);}
.m28_c00114{transform:matrix(1.130610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.130610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.130610,0.000000,0.000000,0.250000,0,0);}
.m29_c00114{transform:matrix(1.238035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.238035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.238035,0.000000,0.000000,0.250000,0,0);}
.m22_c00114{transform:matrix(1.367836,-0.009575,0.001750,0.249994,0,0);-ms-transform:matrix(1.367836,-0.009575,0.001750,0.249994,0,0);-webkit-transform:matrix(1.367836,-0.009575,0.001750,0.249994,0,0);}
.m3_c00114{transform:matrix(1.451865,-0.026134,0.004499,0.249960,0,0);-ms-transform:matrix(1.451865,-0.026134,0.004499,0.249960,0,0);-webkit-transform:matrix(1.451865,-0.026134,0.004499,0.249960,0,0);}
.m24_c00114{transform:matrix(1.671524,-0.011701,0.001750,0.249994,0,0);-ms-transform:matrix(1.671524,-0.011701,0.001750,0.249994,0,0);-webkit-transform:matrix(1.671524,-0.011701,0.001750,0.249994,0,0);}
.m25_c00114{transform:matrix(1.684749,-0.011793,0.001750,0.249994,0,0);-ms-transform:matrix(1.684749,-0.011793,0.001750,0.249994,0,0);-webkit-transform:matrix(1.684749,-0.011793,0.001750,0.249994,0,0);}
.m11_c00114{transform:matrix(2.702257,-0.029725,0.002750,0.249985,0,0);-ms-transform:matrix(2.702257,-0.029725,0.002750,0.249985,0,0);-webkit-transform:matrix(2.702257,-0.029725,0.002750,0.249985,0,0);}
.m0_c00114{transform:matrix(5.865480,-0.105579,0.004499,0.249960,0,0);-ms-transform:matrix(5.865480,-0.105579,0.004499,0.249960,0,0);-webkit-transform:matrix(5.865480,-0.105579,0.004499,0.249960,0,0);}
.v0_c00114{vertical-align:0.000000px;}
.ls0_c00114{letter-spacing:0.000000px;}
.sc__c00114{text-shadow:none;}
.sc0_c00114{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__c00114{-webkit-text-stroke:0px transparent;}
.sc0_c00114{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00114{word-spacing:0.000000px;}
.fc0_c00114{color:transparent;}
.fs7_c00114{font-size:48.000000px;}
.fs4_c00114{font-size:60.004320px;}
.fs2_c00114{font-size:78.012635px;}
.fs6_c00114{font-size:84.002058px;}
.fs0_c00114{font-size:96.015551px;}
.fs1_c00114{font-size:102.007344px;}
.fs5_c00114{font-size:108.007776px;}
.fs3_c00114{font-size:180.010890px;}
.y0_c00114{bottom:0.000000px;}
.y29_c00114{bottom:190.239000px;}
.y23_c00114{bottom:225.768000px;}
.y24_c00114{bottom:227.066451px;}
.y25_c00114{bottom:227.882973px;}
.y26_c00114{bottom:229.347587px;}
.y27_c00114{bottom:230.259995px;}
.y28_c00114{bottom:230.937192px;}
.y1c_c00114{bottom:475.738674px;}
.y1d_c00114{bottom:476.268192px;}
.y1e_c00114{bottom:478.098426px;}
.y1f_c00114{bottom:479.807298px;}
.y20_c00114{bottom:481.710852px;}
.y21_c00114{bottom:482.658642px;}
.y22_c00114{bottom:483.620004px;}
.y16_c00114{bottom:506.253000px;}
.y17_c00114{bottom:507.306072px;}
.y18_c00114{bottom:512.706306px;}
.y19_c00114{bottom:513.231456px;}
.y1a_c00114{bottom:514.659918px;}
.y1b_c00114{bottom:515.534250px;}
.y10_c00114{bottom:536.011500px;}
.y11_c00114{bottom:537.020723px;}
.y12_c00114{bottom:537.490412px;}
.y13_c00114{bottom:542.727215px;}
.y14_c00114{bottom:543.938050px;}
.y15_c00114{bottom:546.170236px;}
.yc_c00114{bottom:576.907500px;}
.yd_c00114{bottom:578.160030px;}
.ye_c00114{bottom:579.133002px;}
.yf_c00114{bottom:580.822797px;}
.y6_c00114{bottom:609.661500px;}
.y7_c00114{bottom:610.671048px;}
.y8_c00114{bottom:612.929508px;}
.y9_c00114{bottom:615.562044px;}
.ya_c00114{bottom:618.472428px;}
.yb_c00114{bottom:619.157328px;}
.y1_c00114{bottom:647.191500px;}
.y2_c00114{bottom:649.749507px;}
.y3_c00114{bottom:650.735844px;}
.y4_c00114{bottom:653.350551px;}
.y5_c00114{bottom:653.722287px;}
.h9_c00114{height:48.000000px;}
.h6_c00114{height:60.004320px;}
.h4_c00114{height:78.012635px;}
.h8_c00114{height:84.002058px;}
.h2_c00114{height:96.015551px;}
.h3_c00114{height:102.007344px;}
.h7_c00114{height:108.007776px;}
.h5_c00114{height:180.010890px;}
.h0_c00114{height:698.220000px;}
.h1_c00114{height:698.250000px;}
.w1_c00114{width:945.750000px;}
.w0_c00114{width:946.050000px;}
.x0_c00114{left:0.000000px;}
.xe_c00114{left:8.601000px;}
.x18_c00114{left:57.099450px;}
.x5_c00114{left:58.443000px;}
.x1e_c00114{left:73.839000px;}
.xf_c00114{left:100.348500px;}
.x19_c00114{left:115.978074px;}
.x1_c00114{left:143.029500px;}
.x13_c00114{left:158.983500px;}
.x2_c00114{left:197.826000px;}
.x14_c00114{left:246.739500px;}
.x1f_c00114{left:259.332000px;}
.x1a_c00114{left:319.254882px;}
.x6_c00114{left:330.777000px;}
.x3_c00114{left:343.087500px;}
.xa_c00114{left:345.249000px;}
.x4_c00114{left:363.739500px;}
.x20_c00114{left:375.978000px;}
.xb_c00114{left:414.834000px;}
.x24_c00114{left:438.210000px;}
.xc_c00114{left:468.888000px;}
.x1b_c00114{left:509.167722px;}
.x7_c00114{left:550.155000px;}
.x25_c00114{left:554.040000px;}
.xd_c00114{left:562.765500px;}
.x21_c00114{left:585.208500px;}
.x10_c00114{left:619.120500px;}
.x15_c00114{left:696.759000px;}
.x22_c00114{left:715.552500px;}
.x1c_c00114{left:720.679836px;}
.x11_c00114{left:729.196500px;}
.x16_c00114{left:740.521500px;}
.x8_c00114{left:792.687000px;}
.x23_c00114{left:812.295000px;}
.x1d_c00114{left:825.916116px;}
.x9_c00114{left:849.762000px;}
.x17_c00114{left:859.560000px;}
.x12_c00114{left:932.122500px;}
@media print{
.v0_c00114{vertical-align:0.000000pt;}
.ls0_c00114{letter-spacing:0.000000pt;}
.ws0_c00114{word-spacing:0.000000pt;}
.fs7_c00114{font-size:42.666667pt;}
.fs4_c00114{font-size:53.337173pt;}
.fs2_c00114{font-size:69.344564pt;}
.fs6_c00114{font-size:74.668496pt;}
.fs0_c00114{font-size:85.347156pt;}
.fs1_c00114{font-size:90.673194pt;}
.fs5_c00114{font-size:96.006912pt;}
.fs3_c00114{font-size:160.009680pt;}
.y0_c00114{bottom:0.000000pt;}
.y29_c00114{bottom:169.101333pt;}
.y23_c00114{bottom:200.682667pt;}
.y24_c00114{bottom:201.836845pt;}
.y25_c00114{bottom:202.562643pt;}
.y26_c00114{bottom:203.864521pt;}
.y27_c00114{bottom:204.675551pt;}
.y28_c00114{bottom:205.277504pt;}
.y1c_c00114{bottom:422.878821pt;}
.y1d_c00114{bottom:423.349504pt;}
.y1e_c00114{bottom:424.976379pt;}
.y1f_c00114{bottom:426.495376pt;}
.y20_c00114{bottom:428.187424pt;}
.y21_c00114{bottom:429.029904pt;}
.y22_c00114{bottom:429.884448pt;}
.y16_c00114{bottom:450.002667pt;}
.y17_c00114{bottom:450.938731pt;}
.y18_c00114{bottom:455.738939pt;}
.y19_c00114{bottom:456.205739pt;}
.y1a_c00114{bottom:457.475483pt;}
.y1b_c00114{bottom:458.252667pt;}
.y10_c00114{bottom:476.454667pt;}
.y11_c00114{bottom:477.351753pt;}
.y12_c00114{bottom:477.769255pt;}
.y13_c00114{bottom:482.424191pt;}
.y14_c00114{bottom:483.500489pt;}
.y15_c00114{bottom:485.484655pt;}
.yc_c00114{bottom:512.806667pt;}
.yd_c00114{bottom:513.920027pt;}
.ye_c00114{bottom:514.784891pt;}
.yf_c00114{bottom:516.286931pt;}
.y6_c00114{bottom:541.921333pt;}
.y7_c00114{bottom:542.818709pt;}
.y8_c00114{bottom:544.826229pt;}
.y9_c00114{bottom:547.166261pt;}
.ya_c00114{bottom:549.753269pt;}
.yb_c00114{bottom:550.362069pt;}
.y1_c00114{bottom:575.281333pt;}
.y2_c00114{bottom:577.555117pt;}
.y3_c00114{bottom:578.431861pt;}
.y4_c00114{bottom:580.756045pt;}
.y5_c00114{bottom:581.086477pt;}
.h9_c00114{height:42.666667pt;}
.h6_c00114{height:53.337173pt;}
.h4_c00114{height:69.344564pt;}
.h8_c00114{height:74.668496pt;}
.h2_c00114{height:85.347156pt;}
.h3_c00114{height:90.673194pt;}
.h7_c00114{height:96.006912pt;}
.h5_c00114{height:160.009680pt;}
.h0_c00114{height:620.640000pt;}
.h1_c00114{height:620.666667pt;}
.w1_c00114{width:840.666667pt;}
.w0_c00114{width:840.933333pt;}
.x0_c00114{left:0.000000pt;}
.xe_c00114{left:7.645333pt;}
.x18_c00114{left:50.755067pt;}
.x5_c00114{left:51.949333pt;}
.x1e_c00114{left:65.634667pt;}
.xf_c00114{left:89.198667pt;}
.x19_c00114{left:103.091621pt;}
.x1_c00114{left:127.137333pt;}
.x13_c00114{left:141.318667pt;}
.x2_c00114{left:175.845333pt;}
.x14_c00114{left:219.324000pt;}
.x1f_c00114{left:230.517333pt;}
.x1a_c00114{left:283.782117pt;}
.x6_c00114{left:294.024000pt;}
.x3_c00114{left:304.966667pt;}
.xa_c00114{left:306.888000pt;}
.x4_c00114{left:323.324000pt;}
.x20_c00114{left:334.202667pt;}
.xb_c00114{left:368.741333pt;}
.x24_c00114{left:389.520000pt;}
.xc_c00114{left:416.789333pt;}
.x1b_c00114{left:452.593531pt;}
.x7_c00114{left:489.026667pt;}
.x25_c00114{left:492.480000pt;}
.xd_c00114{left:500.236000pt;}
.x21_c00114{left:520.185333pt;}
.x10_c00114{left:550.329333pt;}
.x15_c00114{left:619.341333pt;}
.x22_c00114{left:636.046667pt;}
.x1c_c00114{left:640.604299pt;}
.x11_c00114{left:648.174667pt;}
.x16_c00114{left:658.241333pt;}
.x8_c00114{left:704.610667pt;}
.x23_c00114{left:722.040000pt;}
.x1d_c00114{left:734.147659pt;}
.x9_c00114{left:755.344000pt;}
.x17_c00114{left:764.053333pt;}
.x12_c00114{left:828.553333pt;}
}





/* 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_c00115 {
    display:none;
  }
  .loading-indicator_c00115.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00115 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_c00115 { 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_c00115" -> "#page-container .classname_c00115")
 */
.pf_c00115 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00115 { /* 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_c00115.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00115 { /* 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_c00115 { /* 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_c00115 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00115 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00115 {overflow:visible;}
  }
}
.c_c00115 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00115 { /* 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_c00115:after { /* webkit #35443 */
  content: '';
}
.t_c00115:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00115 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 */
}
.__c00115 { /* 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_c00115 { /* info for Javascript */
  display:none;
}
.l_c00115 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00115 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00115 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00115: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_c00115 {
    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_c00115.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00115.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_c00115 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00115{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00115;src:url('chunks/assets/font_fe3cd3c6b9706b260f6e1774.woff2')format("woff");}.ff1_c00115{font-family:ff1_c00115;line-height:1.000000;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;}
.m6_c00115{transform:matrix(0.154160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154160,0.000000,0.000000,0.250000,0,0);}
.m8_c00115{transform:matrix(0.201945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201945,0.000000,0.000000,0.250000,0,0);}
.m2_c00115{transform:matrix(0.311160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311160,0.000000,0.000000,0.250000,0,0);}
.m1_c00115{transform:matrix(0.337085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337085,0.000000,0.000000,0.250000,0,0);}
.m7_c00115{transform:matrix(0.408930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408930,0.000000,0.000000,0.250000,0,0);}
.m5_c00115{transform:matrix(0.475915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475915,0.000000,0.000000,0.250000,0,0);}
.m3_c00115{transform:matrix(0.716650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.716650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.716650,0.000000,0.000000,0.250000,0,0);}
.m0_c00115{transform:matrix(0.881190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.881190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.881190,0.000000,0.000000,0.250000,0,0);}
.m4_c00115{transform:matrix(1.760185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.760185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.760185,0.000000,0.000000,0.250000,0,0);}
.v0_c00115{vertical-align:0.000000px;}
.ls0_c00115{letter-spacing:0.000000px;}
.sc__c00115{text-shadow:none;}
.sc0_c00115{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__c00115{-webkit-text-stroke:0px transparent;}
.sc0_c00115{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00115{word-spacing:0.000000px;}
.fc0_c00115{color:transparent;}
.fs0_c00115{font-size:18.000000px;}
.fs3_c00115{font-size:24.000000px;}
.fs4_c00115{font-size:36.000000px;}
.fs1_c00115{font-size:72.000000px;}
.fs2_c00115{font-size:90.000000px;}
.y0_c00115{bottom:0.000000px;}
.y1_c00115{bottom:120.963000px;}
.y8_c00115{bottom:202.230000px;}
.y7_c00115{bottom:209.250000px;}
.y6_c00115{bottom:231.120000px;}
.y5_c00115{bottom:275.400000px;}
.y4_c00115{bottom:565.261500px;}
.y3_c00115{bottom:566.188500px;}
.y2_c00115{bottom:584.010000px;}
.h2_c00115{height:18.000000px;}
.h5_c00115{height:24.000000px;}
.h6_c00115{height:36.000000px;}
.h3_c00115{height:72.000000px;}
.h4_c00115{height:90.000000px;}
.h0_c00115{height:698.220000px;}
.h1_c00115{height:698.250000px;}
.w1_c00115{width:945.750000px;}
.w0_c00115{width:946.050000px;}
.x0_c00115{left:0.000000px;}
.x1_c00115{left:188.460000px;}
.x2_c00115{left:249.750000px;}
.x3_c00115{left:275.130000px;}
.x4_c00115{left:938.790000px;}
@media print{
.v0_c00115{vertical-align:0.000000pt;}
.ls0_c00115{letter-spacing:0.000000pt;}
.ws0_c00115{word-spacing:0.000000pt;}
.fs0_c00115{font-size:16.000000pt;}
.fs3_c00115{font-size:21.333333pt;}
.fs4_c00115{font-size:32.000000pt;}
.fs1_c00115{font-size:64.000000pt;}
.fs2_c00115{font-size:80.000000pt;}
.y0_c00115{bottom:0.000000pt;}
.y1_c00115{bottom:107.522667pt;}
.y8_c00115{bottom:179.760000pt;}
.y7_c00115{bottom:186.000000pt;}
.y6_c00115{bottom:205.440000pt;}
.y5_c00115{bottom:244.800000pt;}
.y4_c00115{bottom:502.454667pt;}
.y3_c00115{bottom:503.278667pt;}
.y2_c00115{bottom:519.120000pt;}
.h2_c00115{height:16.000000pt;}
.h5_c00115{height:21.333333pt;}
.h6_c00115{height:32.000000pt;}
.h3_c00115{height:64.000000pt;}
.h4_c00115{height:80.000000pt;}
.h0_c00115{height:620.640000pt;}
.h1_c00115{height:620.666667pt;}
.w1_c00115{width:840.666667pt;}
.w0_c00115{width:840.933333pt;}
.x0_c00115{left:0.000000pt;}
.x1_c00115{left:167.520000pt;}
.x2_c00115{left:222.000000pt;}
.x3_c00115{left:244.560000pt;}
.x4_c00115{left:834.480000pt;}
}





/* 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_c00116 {
    display:none;
  }
  .loading-indicator_c00116.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00116 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_c00116 { 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_c00116" -> "#page-container .classname_c00116")
 */
.pf_c00116 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00116 { /* 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_c00116.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00116 { /* 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_c00116 { /* 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_c00116 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00116 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00116 {overflow:visible;}
  }
}
.c_c00116 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00116 { /* 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_c00116:after { /* webkit #35443 */
  content: '';
}
.t_c00116:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00116 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 */
}
.__c00116 { /* 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_c00116 { /* info for Javascript */
  display:none;
}
.l_c00116 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00116 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00116 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00116: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_c00116 {
    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_c00116.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00116.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_c00116 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00116{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00116;src:url('chunks/assets/font_b11a17f404e7258299fdf971.woff2')format("woff");}.ff1_c00116{font-family:ff1_c00116;line-height:1.000000;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;}
.mb_c00116{transform:matrix(0.132461,-0.002252,0.004249,0.249964,0,0);-ms-transform:matrix(0.132461,-0.002252,0.004249,0.249964,0,0);-webkit-transform:matrix(0.132461,-0.002252,0.004249,0.249964,0,0);}
.md_c00116{transform:matrix(0.153193,-0.002604,0.004249,0.249964,0,0);-ms-transform:matrix(0.153193,-0.002604,0.004249,0.249964,0,0);-webkit-transform:matrix(0.153193,-0.002604,0.004249,0.249964,0,0);}
.mc_c00116{transform:matrix(0.190033,-0.003231,0.004249,0.249964,0,0);-ms-transform:matrix(0.190033,-0.003231,0.004249,0.249964,0,0);-webkit-transform:matrix(0.190033,-0.003231,0.004249,0.249964,0,0);}
.ma_c00116{transform:matrix(0.194292,-0.003303,0.004249,0.249964,0,0);-ms-transform:matrix(0.194292,-0.003303,0.004249,0.249964,0,0);-webkit-transform:matrix(0.194292,-0.003303,0.004249,0.249964,0,0);}
.mf_c00116{transform:matrix(0.220663,-0.003751,0.004249,0.249964,0,0);-ms-transform:matrix(0.220663,-0.003751,0.004249,0.249964,0,0);-webkit-transform:matrix(0.220663,-0.003751,0.004249,0.249964,0,0);}
.m6_c00116{transform:matrix(0.225385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225385,0.000000,0.000000,0.250000,0,0);}
.m10_c00116{transform:matrix(0.225457,-0.003833,0.004249,0.249964,0,0);-ms-transform:matrix(0.225457,-0.003833,0.004249,0.249964,0,0);-webkit-transform:matrix(0.225457,-0.003833,0.004249,0.249964,0,0);}
.me_c00116{transform:matrix(0.251104,-0.004269,0.004249,0.249964,0,0);-ms-transform:matrix(0.251104,-0.004269,0.004249,0.249964,0,0);-webkit-transform:matrix(0.251104,-0.004269,0.004249,0.249964,0,0);}
.m0_c00116{transform:matrix(0.254490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254490,0.000000,0.000000,0.250000,0,0);}
.m1_c00116{transform:matrix(0.259420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259420,0.000000,0.000000,0.250000,0,0);}
.m4_c00116{transform:matrix(0.302785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302785,0.000000,0.000000,0.250000,0,0);}
.m3_c00116{transform:matrix(0.303625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303625,0.000000,0.000000,0.250000,0,0);}
.m2_c00116{transform:matrix(0.304145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304145,0.000000,0.000000,0.250000,0,0);}
.m5_c00116{transform:matrix(0.352720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352720,0.000000,0.000000,0.250000,0,0);}
.m7_c00116{transform:matrix(0.382280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382280,0.000000,0.000000,0.250000,0,0);}
.m9_c00116{transform:matrix(0.389684,-0.006625,0.004249,0.249964,0,0);-ms-transform:matrix(0.389684,-0.006625,0.004249,0.249964,0,0);-webkit-transform:matrix(0.389684,-0.006625,0.004249,0.249964,0,0);}
.m8_c00116{transform:matrix(0.435187,-0.007398,0.004249,0.249964,0,0);-ms-transform:matrix(0.435187,-0.007398,0.004249,0.249964,0,0);-webkit-transform:matrix(0.435187,-0.007398,0.004249,0.249964,0,0);}
.v0_c00116{vertical-align:0.000000px;}
.ls0_c00116{letter-spacing:0.000000px;}
.sc__c00116{text-shadow:none;}
.sc0_c00116{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__c00116{-webkit-text-stroke:0px transparent;}
.sc0_c00116{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00116{word-spacing:0.000000px;}
.fc0_c00116{color:transparent;}
.fs1_c00116{font-size:132.000000px;}
.fs0_c00116{font-size:138.000000px;}
.fs2_c00116{font-size:174.025141px;}
.y0_c00116{bottom:0.000000px;}
.y9_c00116{bottom:50.742000px;}
.ya_c00116{bottom:54.631209px;}
.yb_c00116{bottom:56.607255px;}
.yc_c00116{bottom:57.899978px;}
.yd_c00116{bottom:58.785797px;}
.ye_c00116{bottom:60.010536px;}
.yf_c00116{bottom:60.887099px;}
.y10_c00116{bottom:62.331419px;}
.y11_c00116{bottom:65.874695px;}
.y8_c00116{bottom:228.532500px;}
.y7_c00116{bottom:230.721000px;}
.y6_c00116{bottom:231.817500px;}
.y5_c00116{bottom:232.999500px;}
.y4_c00116{bottom:235.582500px;}
.y3_c00116{bottom:236.737500px;}
.y2_c00116{bottom:237.604500px;}
.y1_c00116{bottom:277.657500px;}
.h3_c00116{height:132.000000px;}
.h2_c00116{height:138.000000px;}
.h4_c00116{height:174.025141px;}
.h0_c00116{height:698.220000px;}
.h1_c00116{height:698.250000px;}
.w1_c00116{width:945.750000px;}
.w0_c00116{width:946.050000px;}
.x0_c00116{left:0.000000px;}
.x9_c00116{left:1.131000px;}
.x2_c00116{left:35.586000px;}
.x3_c00116{left:114.417000px;}
.x1_c00116{left:150.660000px;}
.x4_c00116{left:219.426000px;}
.xa_c00116{left:229.908000px;}
.xb_c00116{left:346.146000px;}
.xc_c00116{left:422.188500px;}
.x5_c00116{left:454.297500px;}
.xd_c00116{left:474.295500px;}
.xe_c00116{left:546.339000px;}
.x6_c00116{left:561.744000px;}
.xf_c00116{left:597.901500px;}
.x7_c00116{left:661.362000px;}
.x10_c00116{left:682.861500px;}
.x8_c00116{left:860.328000px;}
.x11_c00116{left:891.289500px;}
@media print{
.v0_c00116{vertical-align:0.000000pt;}
.ls0_c00116{letter-spacing:0.000000pt;}
.ws0_c00116{word-spacing:0.000000pt;}
.fs1_c00116{font-size:117.333333pt;}
.fs0_c00116{font-size:122.666667pt;}
.fs2_c00116{font-size:154.689014pt;}
.y0_c00116{bottom:0.000000pt;}
.y9_c00116{bottom:45.104000pt;}
.ya_c00116{bottom:48.561075pt;}
.yb_c00116{bottom:50.317560pt;}
.yc_c00116{bottom:51.466647pt;}
.yd_c00116{bottom:52.254041pt;}
.ye_c00116{bottom:53.342699pt;}
.yf_c00116{bottom:54.121865pt;}
.y10_c00116{bottom:55.405705pt;}
.y11_c00116{bottom:58.555284pt;}
.y8_c00116{bottom:203.140000pt;}
.y7_c00116{bottom:205.085333pt;}
.y6_c00116{bottom:206.060000pt;}
.y5_c00116{bottom:207.110667pt;}
.y4_c00116{bottom:209.406667pt;}
.y3_c00116{bottom:210.433333pt;}
.y2_c00116{bottom:211.204000pt;}
.y1_c00116{bottom:246.806667pt;}
.h3_c00116{height:117.333333pt;}
.h2_c00116{height:122.666667pt;}
.h4_c00116{height:154.689014pt;}
.h0_c00116{height:620.640000pt;}
.h1_c00116{height:620.666667pt;}
.w1_c00116{width:840.666667pt;}
.w0_c00116{width:840.933333pt;}
.x0_c00116{left:0.000000pt;}
.x9_c00116{left:1.005333pt;}
.x2_c00116{left:31.632000pt;}
.x3_c00116{left:101.704000pt;}
.x1_c00116{left:133.920000pt;}
.x4_c00116{left:195.045333pt;}
.xa_c00116{left:204.362667pt;}
.xb_c00116{left:307.685333pt;}
.xc_c00116{left:375.278667pt;}
.x5_c00116{left:403.820000pt;}
.xd_c00116{left:421.596000pt;}
.xe_c00116{left:485.634667pt;}
.x6_c00116{left:499.328000pt;}
.xf_c00116{left:531.468000pt;}
.x7_c00116{left:587.877333pt;}
.x10_c00116{left:606.988000pt;}
.x8_c00116{left:764.736000pt;}
.x11_c00116{left:792.257333pt;}
}





/* 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_c00117 {
    display:none;
  }
  .loading-indicator_c00117.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00117 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_c00117 { 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_c00117" -> "#page-container .classname_c00117")
 */
.pf_c00117 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00117 { /* 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_c00117.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00117 { /* 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_c00117 { /* 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_c00117 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00117 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00117 {overflow:visible;}
  }
}
.c_c00117 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00117 { /* 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_c00117:after { /* webkit #35443 */
  content: '';
}
.t_c00117:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00117 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 */
}
.__c00117 { /* 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_c00117 { /* info for Javascript */
  display:none;
}
.l_c00117 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00117 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00117 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00117: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_c00117 {
    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_c00117.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00117.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_c00117 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00117{font-family:sans-serif;visibility:hidden;}
.sc__c00117{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00117{-webkit-text-stroke:0px transparent;}
}
.y0_c00117{bottom:0.000000px;}
.h0_c00117{height:698.220000px;}
.h1_c00117{height:698.250000px;}
.w1_c00117{width:945.750000px;}
.w0_c00117{width:946.050000px;}
.x0_c00117{left:0.000000px;}
@media print{
.y0_c00117{bottom:0.000000pt;}
.h0_c00117{height:620.640000pt;}
.h1_c00117{height:620.666667pt;}
.w1_c00117{width:840.666667pt;}
.w0_c00117{width:840.933333pt;}
.x0_c00117{left:0.000000pt;}
}





/* 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_c00118 {
    display:none;
  }
  .loading-indicator_c00118.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00118 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_c00118 { 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_c00118" -> "#page-container .classname_c00118")
 */
.pf_c00118 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00118 { /* 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_c00118.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00118 { /* 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_c00118 { /* 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_c00118 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00118 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00118 {overflow:visible;}
  }
}
.c_c00118 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00118 { /* 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_c00118:after { /* webkit #35443 */
  content: '';
}
.t_c00118:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00118 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 */
}
.__c00118 { /* 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_c00118 { /* info for Javascript */
  display:none;
}
.l_c00118 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00118 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00118 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00118: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_c00118 {
    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_c00118.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00118.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_c00118 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00118{font-family:sans-serif;visibility:hidden;}
.sc__c00118{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00118{-webkit-text-stroke:0px transparent;}
}
.y0_c00118{bottom:0.000000px;}
.h0_c00118{height:698.220000px;}
.h1_c00118{height:698.250000px;}
.w1_c00118{width:945.750000px;}
.w0_c00118{width:946.050000px;}
.x0_c00118{left:0.000000px;}
@media print{
.y0_c00118{bottom:0.000000pt;}
.h0_c00118{height:620.640000pt;}
.h1_c00118{height:620.666667pt;}
.w1_c00118{width:840.666667pt;}
.w0_c00118{width:840.933333pt;}
.x0_c00118{left:0.000000pt;}
}





/* 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_c00119 {
    display:none;
  }
  .loading-indicator_c00119.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00119 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_c00119 { 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_c00119" -> "#page-container .classname_c00119")
 */
.pf_c00119 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00119 { /* 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_c00119.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00119 { /* 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_c00119 { /* 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_c00119 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00119 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00119 {overflow:visible;}
  }
}
.c_c00119 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00119 { /* 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_c00119:after { /* webkit #35443 */
  content: '';
}
.t_c00119:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00119 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 */
}
.__c00119 { /* 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_c00119 { /* info for Javascript */
  display:none;
}
.l_c00119 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00119 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00119 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00119: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_c00119 {
    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_c00119.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00119.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_c00119 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00119{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00119;src:url('chunks/assets/font_bfe6362fd3009c591583128f.woff2')format("woff");}.ff1_c00119{font-family:ff1_c00119;line-height:1.000000;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;}
.md_c00119{transform:matrix(0.031810,0.000795,-0.006248,0.249922,0,0);-ms-transform:matrix(0.031810,0.000795,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.031810,0.000795,-0.006248,0.249922,0,0);}
.m16_c00119{transform:matrix(0.040560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.040560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.040560,0.000000,0.000000,0.250000,0,0);}
.m12_c00119{transform:matrix(0.042425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.042425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.042425,0.000000,0.000000,0.250000,0,0);}
.m11_c00119{transform:matrix(0.054085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054085,0.000000,0.000000,0.250000,0,0);}
.mc_c00119{transform:matrix(0.060566,0.001514,-0.006248,0.249922,0,0);-ms-transform:matrix(0.060566,0.001514,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.060566,0.001514,-0.006248,0.249922,0,0);}
.m1_c00119{transform:matrix(0.096165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096165,0.000000,0.000000,0.250000,0,0);}
.m1e_c00119{transform:matrix(0.138295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138295,0.000000,0.000000,0.250000,0,0);}
.m1b_c00119{transform:matrix(0.169210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169210,0.000000,0.000000,0.250000,0,0);}
.m20_c00119{transform:matrix(0.195575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195575,0.000000,0.000000,0.250000,0,0);}
.ma_c00119{transform:matrix(0.217680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217680,0.000000,0.000000,0.250000,0,0);}
.m5_c00119{transform:matrix(0.233480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233480,0.000000,0.000000,0.250000,0,0);}
.m8_c00119{transform:matrix(0.257720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257720,0.000000,0.000000,0.250000,0,0);}
.m13_c00119{transform:matrix(0.265375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265375,0.000000,0.000000,0.250000,0,0);}
.m7_c00119{transform:matrix(0.271330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271330,0.000000,0.000000,0.250000,0,0);}
.m17_c00119{transform:matrix(0.301215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301215,0.000000,0.000000,0.250000,0,0);}
.mf_c00119{transform:matrix(0.302820,0.007571,-0.006248,0.249922,0,0);-ms-transform:matrix(0.302820,0.007571,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.302820,0.007571,-0.006248,0.249922,0,0);}
.m14_c00119{transform:matrix(0.309530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309530,0.000000,0.000000,0.250000,0,0);}
.m6_c00119{transform:matrix(0.344950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344950,0.000000,0.000000,0.250000,0,0);}
.m9_c00119{transform:matrix(0.362640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362640,0.000000,0.000000,0.250000,0,0);}
.m1f_c00119{transform:matrix(0.399250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399250,0.000000,0.000000,0.250000,0,0);}
.m4_c00119{transform:matrix(0.417450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417450,0.000000,0.000000,0.250000,0,0);}
.m15_c00119{transform:matrix(0.470770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470770,0.000000,0.000000,0.250000,0,0);}
.m10_c00119{transform:matrix(0.482700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482700,0.000000,0.000000,0.250000,0,0);}
.m18_c00119{transform:matrix(0.531795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531795,0.000000,0.000000,0.250000,0,0);}
.me_c00119{transform:matrix(0.541001,0.013525,-0.006248,0.249922,0,0);-ms-transform:matrix(0.541001,0.013525,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.541001,0.013525,-0.006248,0.249922,0,0);}
.m1d_c00119{transform:matrix(0.546010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.546010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.546010,0.000000,0.000000,0.250000,0,0);}
.m1a_c00119{transform:matrix(0.562150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562150,0.000000,0.000000,0.250000,0,0);}
.m3_c00119{transform:matrix(0.574180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574180,0.000000,0.000000,0.250000,0,0);}
.m1c_c00119{transform:matrix(0.654005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.654005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.654005,0.000000,0.000000,0.250000,0,0);}
.m2_c00119{transform:matrix(0.733410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.733410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.733410,0.000000,0.000000,0.250000,0,0);}
.m21_c00119{transform:matrix(0.853290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.853290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.853290,0.000000,0.000000,0.250000,0,0);}
.m19_c00119{transform:matrix(1.028375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.028375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.028375,0.000000,0.000000,0.250000,0,0);}
.mb_c00119{transform:matrix(1.222388,0.030560,-0.006248,0.249922,0,0);-ms-transform:matrix(1.222388,0.030560,-0.006248,0.249922,0,0);-webkit-transform:matrix(1.222388,0.030560,-0.006248,0.249922,0,0);}
.m0_c00119{transform:matrix(1.281855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.281855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.281855,0.000000,0.000000,0.250000,0,0);}
.v0_c00119{vertical-align:0.000000px;}
.ls0_c00119{letter-spacing:0.000000px;}
.sc__c00119{text-shadow:none;}
.sc0_c00119{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__c00119{-webkit-text-stroke:0px transparent;}
.sc0_c00119{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00119{word-spacing:0.000000px;}
.fc0_c00119{color:transparent;}
.fs7_c00119{font-size:12.000000px;}
.fs5_c00119{font-size:18.000000px;}
.fs1_c00119{font-size:24.000000px;}
.fs4_c00119{font-size:24.007499px;}
.fs2_c00119{font-size:30.000000px;}
.fs6_c00119{font-size:48.000000px;}
.fs0_c00119{font-size:90.000000px;}
.fs3_c00119{font-size:90.028121px;}
.y0_c00119{bottom:0.000000px;}
.yd_c00119{bottom:134.608500px;}
.yc_c00119{bottom:138.246000px;}
.yb_c00119{bottom:139.050000px;}
.yf_c00119{bottom:161.328000px;}
.ye_c00119{bottom:167.014500px;}
.ya_c00119{bottom:169.963500px;}
.y9_c00119{bottom:181.435500px;}
.y5_c00119{bottom:191.719313px;}
.y8_c00119{bottom:191.719388px;}
.y6_c00119{bottom:191.719500px;}
.y7_c00119{bottom:191.719913px;}
.y4_c00119{bottom:198.730500px;}
.y3_c00119{bottom:322.101000px;}
.y2_c00119{bottom:331.033500px;}
.y1_c00119{bottom:382.857000px;}
.h9_c00119{height:12.000000px;}
.h7_c00119{height:18.000000px;}
.h3_c00119{height:24.000000px;}
.h6_c00119{height:24.007499px;}
.h4_c00119{height:30.000000px;}
.h8_c00119{height:48.000000px;}
.h2_c00119{height:90.000000px;}
.h5_c00119{height:90.028121px;}
.h0_c00119{height:698.220000px;}
.h1_c00119{height:698.250000px;}
.w1_c00119{width:945.750000px;}
.w0_c00119{width:946.050000px;}
.x0_c00119{left:0.000000px;}
.x1_c00119{left:312.660000px;}
.x3_c00119{left:356.130000px;}
.x6_c00119{left:358.020000px;}
.x7_c00119{left:366.930000px;}
.x8_c00119{left:375.030000px;}
.x9_c00119{left:390.150000px;}
.xa_c00119{left:402.840000px;}
.x4_c00119{left:411.480000px;}
.xb_c00119{left:427.140000px;}
.x2_c00119{left:431.730000px;}
.x5_c00119{left:433.350000px;}
.xc_c00119{left:453.195000px;}
.xd_c00119{left:460.892137px;}
.x15_c00119{left:468.450000px;}
.x1a_c00119{left:472.230000px;}
.x16_c00119{left:477.090000px;}
.x11_c00119{left:480.330000px;}
.xe_c00119{left:485.199825px;}
.x1c_c00119{left:500.580000px;}
.x17_c00119{left:501.930000px;}
.x1b_c00119{left:516.240000px;}
.x18_c00119{left:525.960000px;}
.x1e_c00119{left:527.850000px;}
.xf_c00119{left:538.676737px;}
.x12_c00119{left:540.000000px;}
.x1f_c00119{left:541.350000px;}
.x19_c00119{left:550.530000px;}
.x13_c00119{left:552.960000px;}
.x20_c00119{left:557.010000px;}
.x10_c00119{left:569.737125px;}
.x21_c00119{left:571.320000px;}
.x14_c00119{left:577.530000px;}
.x22_c00119{left:584.010000px;}
.x23_c00119{left:587.520000px;}
.x1d_c00119{left:599.940000px;}
@media print{
.v0_c00119{vertical-align:0.000000pt;}
.ls0_c00119{letter-spacing:0.000000pt;}
.ws0_c00119{word-spacing:0.000000pt;}
.fs7_c00119{font-size:10.666667pt;}
.fs5_c00119{font-size:16.000000pt;}
.fs1_c00119{font-size:21.333333pt;}
.fs4_c00119{font-size:21.339999pt;}
.fs2_c00119{font-size:26.666667pt;}
.fs6_c00119{font-size:42.666667pt;}
.fs0_c00119{font-size:80.000000pt;}
.fs3_c00119{font-size:80.024996pt;}
.y0_c00119{bottom:0.000000pt;}
.yd_c00119{bottom:119.652000pt;}
.yc_c00119{bottom:122.885333pt;}
.yb_c00119{bottom:123.600000pt;}
.yf_c00119{bottom:143.402667pt;}
.ye_c00119{bottom:148.457333pt;}
.ya_c00119{bottom:151.078667pt;}
.y9_c00119{bottom:161.276000pt;}
.y5_c00119{bottom:170.417167pt;}
.y8_c00119{bottom:170.417233pt;}
.y6_c00119{bottom:170.417333pt;}
.y7_c00119{bottom:170.417700pt;}
.y4_c00119{bottom:176.649333pt;}
.y3_c00119{bottom:286.312000pt;}
.y2_c00119{bottom:294.252000pt;}
.y1_c00119{bottom:340.317333pt;}
.h9_c00119{height:10.666667pt;}
.h7_c00119{height:16.000000pt;}
.h3_c00119{height:21.333333pt;}
.h6_c00119{height:21.339999pt;}
.h4_c00119{height:26.666667pt;}
.h8_c00119{height:42.666667pt;}
.h2_c00119{height:80.000000pt;}
.h5_c00119{height:80.024996pt;}
.h0_c00119{height:620.640000pt;}
.h1_c00119{height:620.666667pt;}
.w1_c00119{width:840.666667pt;}
.w0_c00119{width:840.933333pt;}
.x0_c00119{left:0.000000pt;}
.x1_c00119{left:277.920000pt;}
.x3_c00119{left:316.560000pt;}
.x6_c00119{left:318.240000pt;}
.x7_c00119{left:326.160000pt;}
.x8_c00119{left:333.360000pt;}
.x9_c00119{left:346.800000pt;}
.xa_c00119{left:358.080000pt;}
.x4_c00119{left:365.760000pt;}
.xb_c00119{left:379.680000pt;}
.x2_c00119{left:383.760000pt;}
.x5_c00119{left:385.200000pt;}
.xc_c00119{left:402.840000pt;}
.xd_c00119{left:409.681900pt;}
.x15_c00119{left:416.400000pt;}
.x1a_c00119{left:419.760000pt;}
.x16_c00119{left:424.080000pt;}
.x11_c00119{left:426.960000pt;}
.xe_c00119{left:431.288733pt;}
.x1c_c00119{left:444.960000pt;}
.x17_c00119{left:446.160000pt;}
.x1b_c00119{left:458.880000pt;}
.x18_c00119{left:467.520000pt;}
.x1e_c00119{left:469.200000pt;}
.xf_c00119{left:478.823767pt;}
.x12_c00119{left:480.000000pt;}
.x1f_c00119{left:481.200000pt;}
.x19_c00119{left:489.360000pt;}
.x13_c00119{left:491.520000pt;}
.x20_c00119{left:495.120000pt;}
.x10_c00119{left:506.433000pt;}
.x21_c00119{left:507.840000pt;}
.x14_c00119{left:513.360000pt;}
.x22_c00119{left:519.120000pt;}
.x23_c00119{left:522.240000pt;}
.x1d_c00119{left:533.280000pt;}
}





/* 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_c00120 {
    display:none;
  }
  .loading-indicator_c00120.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00120 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_c00120 { 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_c00120" -> "#page-container .classname_c00120")
 */
.pf_c00120 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00120 { /* 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_c00120.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00120 { /* 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_c00120 { /* 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_c00120 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00120 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00120 {overflow:visible;}
  }
}
.c_c00120 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00120 { /* 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_c00120:after { /* webkit #35443 */
  content: '';
}
.t_c00120:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00120 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 */
}
.__c00120 { /* 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_c00120 { /* info for Javascript */
  display:none;
}
.l_c00120 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00120 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00120 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00120: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_c00120 {
    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_c00120.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00120.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_c00120 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00120{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00120;src:url('chunks/assets/font_53ec0c54e60da7c2d414b553.woff2')format("woff");}.ff1_c00120{font-family:ff1_c00120;line-height:1.000000;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;}
.mc_c00120{transform:matrix(0.031820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.031820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.031820,0.000000,0.000000,0.250000,0,0);}
.m13_c00120{transform:matrix(0.035575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.035575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.035575,0.000000,0.000000,0.250000,0,0);}
.m3f_c00120{transform:matrix(0.038495,-0.000885,0.005748,0.249934,0,0);-ms-transform:matrix(0.038495,-0.000885,0.005748,0.249934,0,0);-webkit-transform:matrix(0.038495,-0.000885,0.005748,0.249934,0,0);}
.m10_c00120{transform:matrix(0.040560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.040560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.040560,0.000000,0.000000,0.250000,0,0);}
.mb_c00120{transform:matrix(0.047730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.047730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.047730,0.000000,0.000000,0.250000,0,0);}
.m15_c00120{transform:matrix(0.056250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.056250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.056250,0.000000,0.000000,0.250000,0,0);}
.m22_c00120{transform:matrix(0.072035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072035,0.000000,0.000000,0.250000,0,0);}
.m19_c00120{transform:matrix(0.081125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.081125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.081125,0.000000,0.000000,0.250000,0,0);}
.m1_c00120{transform:matrix(0.085675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.085675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.085675,0.000000,0.000000,0.250000,0,0);}
.m18_c00120{transform:matrix(0.090700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090700,0.000000,0.000000,0.250000,0,0);}
.m3a_c00120{transform:matrix(0.098119,-0.002257,0.005748,0.249934,0,0);-ms-transform:matrix(0.098119,-0.002257,0.005748,0.249934,0,0);-webkit-transform:matrix(0.098119,-0.002257,0.005748,0.249934,0,0);}
.m3b_c00120{transform:matrix(0.106382,-0.002447,0.005748,0.249934,0,0);-ms-transform:matrix(0.106382,-0.002447,0.005748,0.249934,0,0);-webkit-transform:matrix(0.106382,-0.002447,0.005748,0.249934,0,0);}
.m39_c00120{transform:matrix(0.108026,-0.002485,0.005748,0.249934,0,0);-ms-transform:matrix(0.108026,-0.002485,0.005748,0.249934,0,0);-webkit-transform:matrix(0.108026,-0.002485,0.005748,0.249934,0,0);}
.m3e_c00120{transform:matrix(0.112965,-0.002598,0.005748,0.249934,0,0);-ms-transform:matrix(0.112965,-0.002598,0.005748,0.249934,0,0);-webkit-transform:matrix(0.112965,-0.002598,0.005748,0.249934,0,0);}
.mf_c00120{transform:matrix(0.121165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121165,0.000000,0.000000,0.250000,0,0);}
.m14_c00120{transform:matrix(0.128270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128270,0.000000,0.000000,0.250000,0,0);}
.m12_c00120{transform:matrix(0.132755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132755,0.000000,0.000000,0.250000,0,0);}
.m1d_c00120{transform:matrix(0.151355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151355,0.000000,0.000000,0.250000,0,0);}
.m3d_c00120{transform:matrix(0.157008,-0.003611,0.005748,0.249934,0,0);-ms-transform:matrix(0.157008,-0.003611,0.005748,0.249934,0,0);-webkit-transform:matrix(0.157008,-0.003611,0.005748,0.249934,0,0);}
.m40_c00120{transform:matrix(0.157873,-0.003631,0.005748,0.249934,0,0);-ms-transform:matrix(0.157873,-0.003631,0.005748,0.249934,0,0);-webkit-transform:matrix(0.157873,-0.003631,0.005748,0.249934,0,0);}
.m3c_c00120{transform:matrix(0.165066,-0.003797,0.005748,0.249934,0,0);-ms-transform:matrix(0.165066,-0.003797,0.005748,0.249934,0,0);-webkit-transform:matrix(0.165066,-0.003797,0.005748,0.249934,0,0);}
.md_c00120{transform:matrix(0.181400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181400,0.000000,0.000000,0.250000,0,0);}
.m2c_c00120{transform:matrix(0.207832,-0.003117,0.003750,0.249972,0,0);-ms-transform:matrix(0.207832,-0.003117,0.003750,0.249972,0,0);-webkit-transform:matrix(0.207832,-0.003117,0.003750,0.249972,0,0);}
.m4a_c00120{transform:matrix(0.217830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217830,0.000000,0.000000,0.250000,0,0);}
.m2d_c00120{transform:matrix(0.252062,-0.003781,0.003750,0.249972,0,0);-ms-transform:matrix(0.252062,-0.003781,0.003750,0.249972,0,0);-webkit-transform:matrix(0.252062,-0.003781,0.003750,0.249972,0,0);}
.m47_c00120{transform:matrix(0.258157,-0.005938,0.005748,0.249934,0,0);-ms-transform:matrix(0.258157,-0.005938,0.005748,0.249934,0,0);-webkit-transform:matrix(0.258157,-0.005938,0.005748,0.249934,0,0);}
.m46_c00120{transform:matrix(0.268609,-0.006178,0.005748,0.249934,0,0);-ms-transform:matrix(0.268609,-0.006178,0.005748,0.249934,0,0);-webkit-transform:matrix(0.268609,-0.006178,0.005748,0.249934,0,0);}
.m9_c00120{transform:matrix(0.271870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271870,0.000000,0.000000,0.250000,0,0);}
.m2a_c00120{transform:matrix(0.274949,-0.004124,0.003750,0.249972,0,0);-ms-transform:matrix(0.274949,-0.004124,0.003750,0.249972,0,0);-webkit-transform:matrix(0.274949,-0.004124,0.003750,0.249972,0,0);}
.m1c_c00120{transform:matrix(0.294705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294705,0.000000,0.000000,0.250000,0,0);}
.m11_c00120{transform:matrix(0.302915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302915,0.000000,0.000000,0.250000,0,0);}
.m17_c00120{transform:matrix(0.303910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303910,0.000000,0.000000,0.250000,0,0);}
.m1e_c00120{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m41_c00120{transform:matrix(0.326609,-0.007512,0.005748,0.249934,0,0);-ms-transform:matrix(0.326609,-0.007512,0.005748,0.249934,0,0);-webkit-transform:matrix(0.326609,-0.007512,0.005748,0.249934,0,0);}
.m16_c00120{transform:matrix(0.333140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333140,0.000000,0.000000,0.250000,0,0);}
.m4e_c00120{transform:matrix(0.340445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340445,0.000000,0.000000,0.250000,0,0);}
.m38_c00120{transform:matrix(0.344535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344535,0.000000,0.000000,0.250000,0,0);}
.m27_c00120{transform:matrix(0.358938,-0.007897,0.005499,0.249940,0,0);-ms-transform:matrix(0.358938,-0.007897,0.005499,0.249940,0,0);-webkit-transform:matrix(0.358938,-0.007897,0.005499,0.249940,0,0);}
.m4c_c00120{transform:matrix(0.388545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388545,0.000000,0.000000,0.250000,0,0);}
.m21_c00120{transform:matrix(0.405625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405625,0.000000,0.000000,0.250000,0,0);}
.me_c00120{transform:matrix(0.416250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416250,0.000000,0.000000,0.250000,0,0);}
.m23_c00120{transform:matrix(0.418390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418390,0.000000,0.000000,0.250000,0,0);}
.m1b_c00120{transform:matrix(0.421010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421010,0.000000,0.000000,0.250000,0,0);}
.m25_c00120{transform:matrix(0.423073,-0.009308,0.005499,0.249940,0,0);-ms-transform:matrix(0.423073,-0.009308,0.005499,0.249940,0,0);-webkit-transform:matrix(0.423073,-0.009308,0.005499,0.249940,0,0);}
.m44_c00120{transform:matrix(0.424228,-0.009757,0.005748,0.249934,0,0);-ms-transform:matrix(0.424228,-0.009757,0.005748,0.249934,0,0);-webkit-transform:matrix(0.424228,-0.009757,0.005748,0.249934,0,0);}
.m42_c00120{transform:matrix(0.458504,-0.010546,0.005748,0.249934,0,0);-ms-transform:matrix(0.458504,-0.010546,0.005748,0.249934,0,0);-webkit-transform:matrix(0.458504,-0.010546,0.005748,0.249934,0,0);}
.m4d_c00120{transform:matrix(0.462900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462900,0.000000,0.000000,0.250000,0,0);}
.m8_c00120{transform:matrix(0.466705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466705,0.000000,0.000000,0.250000,0,0);}
.m24_c00120{transform:matrix(0.475715,-0.010466,0.005499,0.249940,0,0);-ms-transform:matrix(0.475715,-0.010466,0.005499,0.249940,0,0);-webkit-transform:matrix(0.475715,-0.010466,0.005499,0.249940,0,0);}
.m45_c00120{transform:matrix(0.477054,-0.010972,0.005748,0.249934,0,0);-ms-transform:matrix(0.477054,-0.010972,0.005748,0.249934,0,0);-webkit-transform:matrix(0.477054,-0.010972,0.005748,0.249934,0,0);}
.m28_c00120{transform:matrix(0.484458,-0.010658,0.005499,0.249940,0,0);-ms-transform:matrix(0.484458,-0.010658,0.005499,0.249940,0,0);-webkit-transform:matrix(0.484458,-0.010658,0.005499,0.249940,0,0);}
.m48_c00120{transform:matrix(0.486761,-0.011196,0.005748,0.249934,0,0);-ms-transform:matrix(0.486761,-0.011196,0.005748,0.249934,0,0);-webkit-transform:matrix(0.486761,-0.011196,0.005748,0.249934,0,0);}
.m33_c00120{transform:matrix(0.503238,-0.007549,0.003750,0.249972,0,0);-ms-transform:matrix(0.503238,-0.007549,0.003750,0.249972,0,0);-webkit-transform:matrix(0.503238,-0.007549,0.003750,0.249972,0,0);}
.m49_c00120{transform:matrix(0.518600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518600,0.000000,0.000000,0.250000,0,0);}
.m2e_c00120{transform:matrix(0.522711,-0.007841,0.003750,0.249972,0,0);-ms-transform:matrix(0.522711,-0.007841,0.003750,0.249972,0,0);-webkit-transform:matrix(0.522711,-0.007841,0.003750,0.249972,0,0);}
.m4b_c00120{transform:matrix(0.523885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523885,0.000000,0.000000,0.250000,0,0);}
.m20_c00120{transform:matrix(0.531735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531735,0.000000,0.000000,0.250000,0,0);}
.m2_c00120{transform:matrix(0.593695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.593695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.593695,0.000000,0.000000,0.250000,0,0);}
.m3_c00120{transform:matrix(0.601685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.601685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.601685,0.000000,0.000000,0.250000,0,0);}
.m2f_c00120{transform:matrix(0.647297,-0.009709,0.003750,0.249972,0,0);-ms-transform:matrix(0.647297,-0.009709,0.003750,0.249972,0,0);-webkit-transform:matrix(0.647297,-0.009709,0.003750,0.249972,0,0);}
.m1a_c00120{transform:matrix(0.653080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.653080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.653080,0.000000,0.000000,0.250000,0,0);}
.m35_c00120{transform:matrix(0.750761,-0.011261,0.003750,0.249972,0,0);-ms-transform:matrix(0.750761,-0.011261,0.003750,0.249972,0,0);-webkit-transform:matrix(0.750761,-0.011261,0.003750,0.249972,0,0);}
.m4_c00120{transform:matrix(0.804600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.804600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.804600,0.000000,0.000000,0.250000,0,0);}
.m43_c00120{transform:matrix(0.814710,-0.018738,0.005748,0.249934,0,0);-ms-transform:matrix(0.814710,-0.018738,0.005748,0.249934,0,0);-webkit-transform:matrix(0.814710,-0.018738,0.005748,0.249934,0,0);}
.ma_c00120{transform:matrix(0.865320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.865320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.865320,0.000000,0.000000,0.250000,0,0);}
.m5_c00120{transform:matrix(0.887570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.887570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.887570,0.000000,0.000000,0.250000,0,0);}
.m34_c00120{transform:matrix(0.904138,-0.013562,0.003750,0.249972,0,0);-ms-transform:matrix(0.904138,-0.013562,0.003750,0.249972,0,0);-webkit-transform:matrix(0.904138,-0.013562,0.003750,0.249972,0,0);}
.m37_c00120{transform:matrix(0.914325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.914325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.914325,0.000000,0.000000,0.250000,0,0);}
.m36_c00120{transform:matrix(0.922886,-0.013843,0.003750,0.249972,0,0);-ms-transform:matrix(0.922886,-0.013843,0.003750,0.249972,0,0);-webkit-transform:matrix(0.922886,-0.013843,0.003750,0.249972,0,0);}
.m29_c00120{transform:matrix(0.934244,-0.020553,0.005499,0.249940,0,0);-ms-transform:matrix(0.934244,-0.020553,0.005499,0.249940,0,0);-webkit-transform:matrix(0.934244,-0.020553,0.005499,0.249940,0,0);}
.m26_c00120{transform:matrix(1.105018,-0.024310,0.005499,0.249940,0,0);-ms-transform:matrix(1.105018,-0.024310,0.005499,0.249940,0,0);-webkit-transform:matrix(1.105018,-0.024310,0.005499,0.249940,0,0);}
.m30_c00120{transform:matrix(1.591526,-0.023873,0.003750,0.249972,0,0);-ms-transform:matrix(1.591526,-0.023873,0.003750,0.249972,0,0);-webkit-transform:matrix(1.591526,-0.023873,0.003750,0.249972,0,0);}
.m32_c00120{transform:matrix(1.642725,-0.024641,0.003750,0.249972,0,0);-ms-transform:matrix(1.642725,-0.024641,0.003750,0.249972,0,0);-webkit-transform:matrix(1.642725,-0.024641,0.003750,0.249972,0,0);}
.m0_c00120{transform:matrix(1.846235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.846235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.846235,0.000000,0.000000,0.250000,0,0);}
.m31_c00120{transform:matrix(2.046395,-0.030696,0.003750,0.249972,0,0);-ms-transform:matrix(2.046395,-0.030696,0.003750,0.249972,0,0);-webkit-transform:matrix(2.046395,-0.030696,0.003750,0.249972,0,0);}
.m2b_c00120{transform:matrix(2.134440,-0.032017,0.003750,0.249972,0,0);-ms-transform:matrix(2.134440,-0.032017,0.003750,0.249972,0,0);-webkit-transform:matrix(2.134440,-0.032017,0.003750,0.249972,0,0);}
.m6_c00120{transform:matrix(2.325330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.325330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.325330,0.000000,0.000000,0.250000,0,0);}
.m1f_c00120{transform:matrix(3.691270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.691270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.691270,0.000000,0.000000,0.250000,0,0);}
.m7_c00120{transform:matrix(4.269185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.269185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.269185,0.000000,0.000000,0.250000,0,0);}
.v0_c00120{vertical-align:0.000000px;}
.ls0_c00120{letter-spacing:0.000000px;}
.sc__c00120{text-shadow:none;}
.sc0_c00120{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__c00120{-webkit-text-stroke:0px transparent;}
.sc0_c00120{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00120{word-spacing:0.000000px;}
.fc0_c00120{color:transparent;}
.fs0_c00120{font-size:24.000000px;}
.fsa_c00120{font-size:42.000000px;}
.fsb_c00120{font-size:48.000000px;}
.fs8_c00120{font-size:54.000000px;}
.fs5_c00120{font-size:66.000000px;}
.fs4_c00120{font-size:90.010124px;}
.fs7_c00120{font-size:108.028562px;}
.fs3_c00120{font-size:114.012824px;}
.fs2_c00120{font-size:138.015524px;}
.fs1_c00120{font-size:144.034844px;}
.fs9_c00120{font-size:162.000000px;}
.fs6_c00120{font-size:342.090447px;}
.y0_c00120{bottom:0.000000px;}
.y23_c00120{bottom:315.349241px;}
.y24_c00120{bottom:316.834991px;}
.y25_c00120{bottom:318.526386px;}
.y26_c00120{bottom:320.246672px;}
.y27_c00120{bottom:322.226757px;}
.y28_c00120{bottom:323.165898px;}
.y29_c00120{bottom:325.606097px;}
.y2a_c00120{bottom:326.148323px;}
.y30_c00120{bottom:355.164000px;}
.y1b_c00120{bottom:362.373000px;}
.y1c_c00120{bottom:365.376915px;}
.y2f_c00120{bottom:366.798000px;}
.y1d_c00120{bottom:369.046059px;}
.y1e_c00120{bottom:371.274863px;}
.y1f_c00120{bottom:373.974419px;}
.y20_c00120{bottom:375.394853px;}
.y21_c00120{bottom:377.009522px;}
.y2e_c00120{bottom:377.190000px;}
.y22_c00120{bottom:379.240188px;}
.y2d_c00120{bottom:396.442500px;}
.y16_c00120{bottom:410.947860px;}
.y17_c00120{bottom:418.622377px;}
.y18_c00120{bottom:422.765415px;}
.y1a_c00120{bottom:422.862000px;}
.y19_c00120{bottom:424.462875px;}
.y2c_c00120{bottom:432.000000px;}
.y13_c00120{bottom:441.278542px;}
.y2b_c00120{bottom:444.960000px;}
.y14_c00120{bottom:445.048927px;}
.y15_c00120{bottom:451.643715px;}
.yd_c00120{bottom:484.098000px;}
.ye_c00120{bottom:486.108082px;}
.yf_c00120{bottom:490.367377px;}
.y10_c00120{bottom:493.155262px;}
.y11_c00120{bottom:493.407780px;}
.y12_c00120{bottom:495.604027px;}
.y7_c00120{bottom:631.282500px;}
.y8_c00120{bottom:632.865213px;}
.y9_c00120{bottom:634.583556px;}
.ya_c00120{bottom:643.072146px;}
.yb_c00120{bottom:645.400461px;}
.yc_c00120{bottom:649.884072px;}
.y3_c00120{bottom:685.530000px;}
.y2_c00120{bottom:691.809000px;}
.y4_c00120{bottom:692.320500px;}
.y1_c00120{bottom:694.036500px;}
.y5_c00120{bottom:700.062000px;}
.y6_c00120{bottom:700.516500px;}
.h2_c00120{height:24.000000px;}
.hc_c00120{height:42.000000px;}
.hd_c00120{height:48.000000px;}
.ha_c00120{height:54.000000px;}
.h7_c00120{height:66.000000px;}
.h6_c00120{height:90.010124px;}
.h9_c00120{height:108.028562px;}
.h5_c00120{height:114.012824px;}
.h4_c00120{height:138.015524px;}
.h3_c00120{height:144.034844px;}
.hb_c00120{height:162.000000px;}
.h8_c00120{height:342.090447px;}
.h0_c00120{height:698.220000px;}
.h1_c00120{height:698.250000px;}
.w1_c00120{width:945.750000px;}
.w0_c00120{width:946.050000px;}
.x0_c00120{left:0.000000px;}
.x22_c00120{left:1.045500px;}
.x34_c00120{left:27.108000px;}
.x14_c00120{left:60.480000px;}
.x1_c00120{left:71.280000px;}
.x23_c00120{left:72.987000px;}
.x15_c00120{left:80.730000px;}
.x2_c00120{left:97.470000px;}
.x3_c00120{left:113.940000px;}
.x2d_c00120{left:131.422125px;}
.x28_c00120{left:134.386500px;}
.x32_c00120{left:136.620000px;}
.x24_c00120{left:151.093500px;}
.x35_c00120{left:157.713000px;}
.x4_c00120{left:163.620000px;}
.x16_c00120{left:167.940000px;}
.x17_c00120{left:201.960000px;}
.x5_c00120{left:206.550000px;}
.x6_c00120{left:238.410000px;}
.x18_c00120{left:275.400000px;}
.x19_c00120{left:291.870000px;}
.x33_c00120{left:297.000000px;}
.x36_c00120{left:317.241000px;}
.x2e_c00120{left:329.869223px;}
.x1a_c00120{left:335.340000px;}
.x30_c00120{left:384.607845px;}
.x37_c00120{left:414.145500px;}
.x29_c00120{left:418.339500px;}
.x7_c00120{left:424.710000px;}
.x3b_c00120{left:434.712402px;}
.x8_c00120{left:486.270000px;}
.x9_c00120{left:509.220000px;}
.xa_c00120{left:525.960000px;}
.x20_c00120{left:529.362000px;}
.x38_c00120{left:531.517500px;}
.x25_c00120{left:536.938500px;}
.xb_c00120{left:580.500000px;}
.x1b_c00120{left:582.930000px;}
.x31_c00120{left:591.794820px;}
.x39_c00120{left:593.275500px;}
.x3c_c00120{left:599.692612px;}
.xc_c00120{left:601.830000px;}
.x2a_c00120{left:604.198500px;}
.x2b_c00120{left:621.033000px;}
.xd_c00120{left:630.990000px;}
.x26_c00120{left:642.771000px;}
.x1c_c00120{left:662.580000px;}
.x2f_c00120{left:677.000910px;}
.x1d_c00120{left:678.240000px;}
.xe_c00120{left:685.530000px;}
.xf_c00120{left:710.370000px;}
.x3a_c00120{left:760.464000px;}
.x2c_c00120{left:767.449500px;}
.x10_c00120{left:770.040000px;}
.x1e_c00120{left:838.890000px;}
.x3f_c00120{left:842.130000px;}
.x27_c00120{left:846.571500px;}
.x3d_c00120{left:881.300320px;}
.x11_c00120{left:888.570000px;}
.x12_c00120{left:898.560000px;}
.x21_c00120{left:919.593000px;}
.x40_c00120{left:925.290000px;}
.x1f_c00120{left:927.450000px;}
.x3e_c00120{left:929.070000px;}
.x13_c00120{left:945.270000px;}
@media print{
.v0_c00120{vertical-align:0.000000pt;}
.ls0_c00120{letter-spacing:0.000000pt;}
.ws0_c00120{word-spacing:0.000000pt;}
.fs0_c00120{font-size:21.333333pt;}
.fsa_c00120{font-size:37.333333pt;}
.fsb_c00120{font-size:42.666667pt;}
.fs8_c00120{font-size:48.000000pt;}
.fs5_c00120{font-size:58.666667pt;}
.fs4_c00120{font-size:80.008999pt;}
.fs7_c00120{font-size:96.025389pt;}
.fs3_c00120{font-size:101.344733pt;}
.fs2_c00120{font-size:122.680466pt;}
.fs1_c00120{font-size:128.030972pt;}
.fs9_c00120{font-size:144.000000pt;}
.fs6_c00120{font-size:304.080397pt;}
.y0_c00120{bottom:0.000000pt;}
.y23_c00120{bottom:280.310436pt;}
.y24_c00120{bottom:281.631103pt;}
.y25_c00120{bottom:283.134565pt;}
.y26_c00120{bottom:284.663708pt;}
.y27_c00120{bottom:286.423784pt;}
.y28_c00120{bottom:287.258576pt;}
.y29_c00120{bottom:289.427641pt;}
.y2a_c00120{bottom:289.909620pt;}
.y30_c00120{bottom:315.701333pt;}
.y1b_c00120{bottom:322.109333pt;}
.y1c_c00120{bottom:324.779480pt;}
.y2f_c00120{bottom:326.042667pt;}
.y1d_c00120{bottom:328.040941pt;}
.y1e_c00120{bottom:330.022100pt;}
.y1f_c00120{bottom:332.421705pt;}
.y20_c00120{bottom:333.684313pt;}
.y21_c00120{bottom:335.119575pt;}
.y2e_c00120{bottom:335.280000pt;}
.y22_c00120{bottom:337.102389pt;}
.y2d_c00120{bottom:352.393333pt;}
.y16_c00120{bottom:365.286987pt;}
.y17_c00120{bottom:372.108780pt;}
.y18_c00120{bottom:375.791480pt;}
.y1a_c00120{bottom:375.877333pt;}
.y19_c00120{bottom:377.300333pt;}
.y2c_c00120{bottom:384.000000pt;}
.y13_c00120{bottom:392.247593pt;}
.y2b_c00120{bottom:395.520000pt;}
.y14_c00120{bottom:395.599047pt;}
.y15_c00120{bottom:401.461080pt;}
.yd_c00120{bottom:430.309333pt;}
.ye_c00120{bottom:432.096073pt;}
.yf_c00120{bottom:435.882113pt;}
.y10_c00120{bottom:438.360233pt;}
.y11_c00120{bottom:438.584693pt;}
.y12_c00120{bottom:440.536913pt;}
.y7_c00120{bottom:561.140000pt;}
.y8_c00120{bottom:562.546856pt;}
.y9_c00120{bottom:564.074272pt;}
.ya_c00120{bottom:571.619685pt;}
.yb_c00120{bottom:573.689299pt;}
.yc_c00120{bottom:577.674731pt;}
.y3_c00120{bottom:609.360000pt;}
.y2_c00120{bottom:614.941333pt;}
.y4_c00120{bottom:615.396000pt;}
.y1_c00120{bottom:616.921333pt;}
.y5_c00120{bottom:622.277333pt;}
.y6_c00120{bottom:622.681333pt;}
.h2_c00120{height:21.333333pt;}
.hc_c00120{height:37.333333pt;}
.hd_c00120{height:42.666667pt;}
.ha_c00120{height:48.000000pt;}
.h7_c00120{height:58.666667pt;}
.h6_c00120{height:80.008999pt;}
.h9_c00120{height:96.025389pt;}
.h5_c00120{height:101.344733pt;}
.h4_c00120{height:122.680466pt;}
.h3_c00120{height:128.030972pt;}
.hb_c00120{height:144.000000pt;}
.h8_c00120{height:304.080397pt;}
.h0_c00120{height:620.640000pt;}
.h1_c00120{height:620.666667pt;}
.w1_c00120{width:840.666667pt;}
.w0_c00120{width:840.933333pt;}
.x0_c00120{left:0.000000pt;}
.x22_c00120{left:0.929333pt;}
.x34_c00120{left:24.096000pt;}
.x14_c00120{left:53.760000pt;}
.x1_c00120{left:63.360000pt;}
.x23_c00120{left:64.877333pt;}
.x15_c00120{left:71.760000pt;}
.x2_c00120{left:86.640000pt;}
.x3_c00120{left:101.280000pt;}
.x2d_c00120{left:116.819667pt;}
.x28_c00120{left:119.454667pt;}
.x32_c00120{left:121.440000pt;}
.x24_c00120{left:134.305333pt;}
.x35_c00120{left:140.189333pt;}
.x4_c00120{left:145.440000pt;}
.x16_c00120{left:149.280000pt;}
.x17_c00120{left:179.520000pt;}
.x5_c00120{left:183.600000pt;}
.x6_c00120{left:211.920000pt;}
.x18_c00120{left:244.800000pt;}
.x19_c00120{left:259.440000pt;}
.x33_c00120{left:264.000000pt;}
.x36_c00120{left:281.992000pt;}
.x2e_c00120{left:293.217087pt;}
.x1a_c00120{left:298.080000pt;}
.x30_c00120{left:341.873640pt;}
.x37_c00120{left:368.129333pt;}
.x29_c00120{left:371.857333pt;}
.x7_c00120{left:377.520000pt;}
.x3b_c00120{left:386.411024pt;}
.x8_c00120{left:432.240000pt;}
.x9_c00120{left:452.640000pt;}
.xa_c00120{left:467.520000pt;}
.x20_c00120{left:470.544000pt;}
.x38_c00120{left:472.460000pt;}
.x25_c00120{left:477.278667pt;}
.xb_c00120{left:516.000000pt;}
.x1b_c00120{left:518.160000pt;}
.x31_c00120{left:526.039840pt;}
.x39_c00120{left:527.356000pt;}
.x3c_c00120{left:533.060100pt;}
.xc_c00120{left:534.960000pt;}
.x2a_c00120{left:537.065333pt;}
.x2b_c00120{left:552.029333pt;}
.xd_c00120{left:560.880000pt;}
.x26_c00120{left:571.352000pt;}
.x1c_c00120{left:588.960000pt;}
.x2f_c00120{left:601.778587pt;}
.x1d_c00120{left:602.880000pt;}
.xe_c00120{left:609.360000pt;}
.xf_c00120{left:631.440000pt;}
.x3a_c00120{left:675.968000pt;}
.x2c_c00120{left:682.177333pt;}
.x10_c00120{left:684.480000pt;}
.x1e_c00120{left:745.680000pt;}
.x3f_c00120{left:748.560000pt;}
.x27_c00120{left:752.508000pt;}
.x3d_c00120{left:783.378063pt;}
.x11_c00120{left:789.840000pt;}
.x12_c00120{left:798.720000pt;}
.x21_c00120{left:817.416000pt;}
.x40_c00120{left:822.480000pt;}
.x1f_c00120{left:824.400000pt;}
.x3e_c00120{left:825.840000pt;}
.x13_c00120{left:840.240000pt;}
}





/* 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_c00121 {
    display:none;
  }
  .loading-indicator_c00121.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00121 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_c00121 { 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_c00121" -> "#page-container .classname_c00121")
 */
.pf_c00121 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00121 { /* 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_c00121.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00121 { /* 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_c00121 { /* 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_c00121 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00121 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00121 {overflow:visible;}
  }
}
.c_c00121 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00121 { /* 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_c00121:after { /* webkit #35443 */
  content: '';
}
.t_c00121:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00121 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 */
}
.__c00121 { /* 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_c00121 { /* info for Javascript */
  display:none;
}
.l_c00121 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00121 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00121 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00121: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_c00121 {
    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_c00121.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00121.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_c00121 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00121{font-family:sans-serif;visibility:hidden;}
.sc__c00121{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00121{-webkit-text-stroke:0px transparent;}
}
.y0_c00121{bottom:0.000000px;}
.h0_c00121{height:698.220000px;}
.h1_c00121{height:698.250000px;}
.w1_c00121{width:945.750000px;}
.w0_c00121{width:946.050000px;}
.x0_c00121{left:0.000000px;}
@media print{
.y0_c00121{bottom:0.000000pt;}
.h0_c00121{height:620.640000pt;}
.h1_c00121{height:620.666667pt;}
.w1_c00121{width:840.666667pt;}
.w0_c00121{width:840.933333pt;}
.x0_c00121{left:0.000000pt;}
}





/* 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_c00122 {
    display:none;
  }
  .loading-indicator_c00122.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00122 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_c00122 { 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_c00122" -> "#page-container .classname_c00122")
 */
.pf_c00122 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00122 { /* 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_c00122.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00122 { /* 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_c00122 { /* 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_c00122 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00122 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00122 {overflow:visible;}
  }
}
.c_c00122 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00122 { /* 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_c00122:after { /* webkit #35443 */
  content: '';
}
.t_c00122:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00122 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 */
}
.__c00122 { /* 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_c00122 { /* info for Javascript */
  display:none;
}
.l_c00122 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00122 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00122 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00122: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_c00122 {
    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_c00122.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00122.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_c00122 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00122{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00122;src:url('chunks/assets/font_6b78c10203a447bee2208e8d.woff2')format("woff");}.ff1_c00122{font-family:ff1_c00122;line-height:1.000000;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;}
.m5_c00122{transform:matrix(0.505004,0.002525,-0.001250,0.249997,0,0);-ms-transform:matrix(0.505004,0.002525,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.505004,0.002525,-0.001250,0.249997,0,0);}
.m4_c00122{transform:matrix(0.537188,0.002686,-0.001250,0.249997,0,0);-ms-transform:matrix(0.537188,0.002686,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.537188,0.002686,-0.001250,0.249997,0,0);}
.m0_c00122{transform:matrix(0.588570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.588570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.588570,0.000000,0.000000,0.250000,0,0);}
.m1_c00122{transform:matrix(0.966470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.966470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.966470,0.000000,0.000000,0.250000,0,0);}
.m2_c00122{transform:matrix(1.011972,0.005060,-0.001250,0.249997,0,0);-ms-transform:matrix(1.011972,0.005060,-0.001250,0.249997,0,0);-webkit-transform:matrix(1.011972,0.005060,-0.001250,0.249997,0,0);}
.m3_c00122{transform:matrix(3.251289,0.016256,-0.001250,0.249997,0,0);-ms-transform:matrix(3.251289,0.016256,-0.001250,0.249997,0,0);-webkit-transform:matrix(3.251289,0.016256,-0.001250,0.249997,0,0);}
.m6_c00122{transform:matrix(3.660969,0.018305,-0.001250,0.249997,0,0);-ms-transform:matrix(3.660969,0.018305,-0.001250,0.249997,0,0);-webkit-transform:matrix(3.660969,0.018305,-0.001250,0.249997,0,0);}
.v0_c00122{vertical-align:0.000000px;}
.ls0_c00122{letter-spacing:0.000000px;}
.sc__c00122{text-shadow:none;}
.sc0_c00122{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__c00122{-webkit-text-stroke:0px transparent;}
.sc0_c00122{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00122{word-spacing:0.000000px;}
.fc0_c00122{color:transparent;}
.fs0_c00122{font-size:72.000000px;}
.fs1_c00122{font-size:72.000900px;}
.y0_c00122{bottom:0.000000px;}
.y6_c00122{bottom:513.466312px;}
.y5_c00122{bottom:514.093380px;}
.y4_c00122{bottom:514.524023px;}
.y3_c00122{bottom:515.738482px;}
.y2_c00122{bottom:516.241500px;}
.y1_c00122{bottom:549.019500px;}
.h2_c00122{height:72.000000px;}
.h3_c00122{height:72.000900px;}
.h0_c00122{height:698.220000px;}
.h1_c00122{height:698.250000px;}
.w1_c00122{width:945.750000px;}
.w0_c00122{width:946.050000px;}
.x0_c00122{left:0.000000px;}
.x3_c00122{left:8.064000px;}
.x1_c00122{left:108.810000px;}
.x2_c00122{left:209.790000px;}
.x4_c00122{left:351.559500px;}
.x5_c00122{left:437.688000px;}
.x6_c00122{left:563.101500px;}
@media print{
.v0_c00122{vertical-align:0.000000pt;}
.ls0_c00122{letter-spacing:0.000000pt;}
.ws0_c00122{word-spacing:0.000000pt;}
.fs0_c00122{font-size:64.000000pt;}
.fs1_c00122{font-size:64.000800pt;}
.y0_c00122{bottom:0.000000pt;}
.y6_c00122{bottom:456.414500pt;}
.y5_c00122{bottom:456.971893pt;}
.y4_c00122{bottom:457.354687pt;}
.y3_c00122{bottom:458.434207pt;}
.y2_c00122{bottom:458.881333pt;}
.y1_c00122{bottom:488.017333pt;}
.h2_c00122{height:64.000000pt;}
.h3_c00122{height:64.000800pt;}
.h0_c00122{height:620.640000pt;}
.h1_c00122{height:620.666667pt;}
.w1_c00122{width:840.666667pt;}
.w0_c00122{width:840.933333pt;}
.x0_c00122{left:0.000000pt;}
.x3_c00122{left:7.168000pt;}
.x1_c00122{left:96.720000pt;}
.x2_c00122{left:186.480000pt;}
.x4_c00122{left:312.497333pt;}
.x5_c00122{left:389.056000pt;}
.x6_c00122{left:500.534667pt;}
}





/* 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_c00123 {
    display:none;
  }
  .loading-indicator_c00123.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00123 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_c00123 { 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_c00123" -> "#page-container .classname_c00123")
 */
.pf_c00123 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00123 { /* 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_c00123.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00123 { /* 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_c00123 { /* 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_c00123 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00123 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00123 {overflow:visible;}
  }
}
.c_c00123 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00123 { /* 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_c00123:after { /* webkit #35443 */
  content: '';
}
.t_c00123:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00123 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 */
}
.__c00123 { /* 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_c00123 { /* info for Javascript */
  display:none;
}
.l_c00123 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00123 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00123 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00123: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_c00123 {
    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_c00123.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00123.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_c00123 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00123{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00123;src:url('chunks/assets/font_c605e72f209fc835e906f064.woff2')format("woff");}.ff1_c00123{font-family:ff1_c00123;line-height:1.000000;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;}
.m20_c00123{transform:matrix(0.035359,0.003913,-0.027498,0.248483,0,0);-ms-transform:matrix(0.035359,0.003913,-0.027498,0.248483,0,0);-webkit-transform:matrix(0.035359,0.003913,-0.027498,0.248483,0,0);}
.m14_c00123{transform:matrix(0.103205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103205,0.000000,0.000000,0.250000,0,0);}
.m15_c00123{transform:matrix(0.142575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142575,0.000000,0.000000,0.250000,0,0);}
.m26_c00123{transform:matrix(0.150865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150865,0.000000,0.000000,0.250000,0,0);}
.m13_c00123{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m4_c00123{transform:matrix(0.212170,-0.006365,0.007497,0.249888,0,0);-ms-transform:matrix(0.212170,-0.006365,0.007497,0.249888,0,0);-webkit-transform:matrix(0.212170,-0.006365,0.007497,0.249888,0,0);}
.m25_c00123{transform:matrix(0.214830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214830,0.000000,0.000000,0.250000,0,0);}
.m24_c00123{transform:matrix(0.218435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218435,0.000000,0.000000,0.250000,0,0);}
.m18_c00123{transform:matrix(0.221705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221705,0.000000,0.000000,0.250000,0,0);}
.m7_c00123{transform:matrix(0.233240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233240,0.000000,0.000000,0.250000,0,0);}
.m1f_c00123{transform:matrix(0.235085,0.026015,-0.027498,0.248483,0,0);-ms-transform:matrix(0.235085,0.026015,-0.027498,0.248483,0,0);-webkit-transform:matrix(0.235085,0.026015,-0.027498,0.248483,0,0);}
.m22_c00123{transform:matrix(0.235510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235510,0.000000,0.000000,0.250000,0,0);}
.m29_c00123{transform:matrix(0.243356,-0.008526,0.008753,0.249847,0,0);-ms-transform:matrix(0.243356,-0.008526,0.008753,0.249847,0,0);-webkit-transform:matrix(0.243356,-0.008526,0.008753,0.249847,0,0);}
.m6_c00123{transform:matrix(0.244350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244350,0.000000,0.000000,0.250000,0,0);}
.m2a_c00123{transform:matrix(0.249747,-0.008750,0.008753,0.249847,0,0);-ms-transform:matrix(0.249747,-0.008750,0.008753,0.249847,0,0);-webkit-transform:matrix(0.249747,-0.008750,0.008753,0.249847,0,0);}
.m17_c00123{transform:matrix(0.249865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249865,0.000000,0.000000,0.250000,0,0);}
.m1e_c00123{transform:matrix(0.256334,-0.009494,0.009253,0.249829,0,0);-ms-transform:matrix(0.256334,-0.009494,0.009253,0.249829,0,0);-webkit-transform:matrix(0.256334,-0.009494,0.009253,0.249829,0,0);}
.m16_c00123{transform:matrix(0.260665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260665,0.000000,0.000000,0.250000,0,0);}
.m21_c00123{transform:matrix(0.268829,0.029750,-0.027498,0.248483,0,0);-ms-transform:matrix(0.268829,0.029750,-0.027498,0.248483,0,0);-webkit-transform:matrix(0.268829,0.029750,-0.027498,0.248483,0,0);}
.m1d_c00123{transform:matrix(0.282296,-0.010455,0.009253,0.249829,0,0);-ms-transform:matrix(0.282296,-0.010455,0.009253,0.249829,0,0);-webkit-transform:matrix(0.282296,-0.010455,0.009253,0.249829,0,0);}
.me_c00123{transform:matrix(0.298027,-0.010441,0.008753,0.249847,0,0);-ms-transform:matrix(0.298027,-0.010441,0.008753,0.249847,0,0);-webkit-transform:matrix(0.298027,-0.010441,0.008753,0.249847,0,0);}
.m27_c00123{transform:matrix(0.313837,-0.010995,0.008753,0.249847,0,0);-ms-transform:matrix(0.313837,-0.010995,0.008753,0.249847,0,0);-webkit-transform:matrix(0.313837,-0.010995,0.008753,0.249847,0,0);}
.m8_c00123{transform:matrix(0.314415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314415,0.000000,0.000000,0.250000,0,0);}
.ma_c00123{transform:matrix(0.319410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319410,0.000000,0.000000,0.250000,0,0);}
.m23_c00123{transform:matrix(0.364470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364470,0.000000,0.000000,0.250000,0,0);}
.m28_c00123{transform:matrix(0.397031,-0.013910,0.008753,0.249847,0,0);-ms-transform:matrix(0.397031,-0.013910,0.008753,0.249847,0,0);-webkit-transform:matrix(0.397031,-0.013910,0.008753,0.249847,0,0);}
.mc_c00123{transform:matrix(0.422905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422905,0.000000,0.000000,0.250000,0,0);}
.m10_c00123{transform:matrix(0.427852,-0.014990,0.008753,0.249847,0,0);-ms-transform:matrix(0.427852,-0.014990,0.008753,0.249847,0,0);-webkit-transform:matrix(0.427852,-0.014990,0.008753,0.249847,0,0);}
.m1c_c00123{transform:matrix(0.447560,-0.014336,0.008004,0.249872,0,0);-ms-transform:matrix(0.447560,-0.014336,0.008004,0.249872,0,0);-webkit-transform:matrix(0.447560,-0.014336,0.008004,0.249872,0,0);}
.m9_c00123{transform:matrix(0.461950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461950,0.000000,0.000000,0.250000,0,0);}
.m11_c00123{transform:matrix(0.462966,-0.016220,0.008753,0.249847,0,0);-ms-transform:matrix(0.462966,-0.016220,0.008753,0.249847,0,0);-webkit-transform:matrix(0.462966,-0.016220,0.008753,0.249847,0,0);}
.m0_c00123{transform:matrix(0.493178,-0.014795,0.007497,0.249888,0,0);-ms-transform:matrix(0.493178,-0.014795,0.007497,0.249888,0,0);-webkit-transform:matrix(0.493178,-0.014795,0.007497,0.249888,0,0);}
.m19_c00123{transform:matrix(0.500685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.500685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.500685,0.000000,0.000000,0.250000,0,0);}
.md_c00123{transform:matrix(0.550380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.550380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.550380,0.000000,0.000000,0.250000,0,0);}
.mf_c00123{transform:matrix(0.554865,-0.019440,0.008753,0.249847,0,0);-ms-transform:matrix(0.554865,-0.019440,0.008753,0.249847,0,0);-webkit-transform:matrix(0.554865,-0.019440,0.008753,0.249847,0,0);}
.m1a_c00123{transform:matrix(0.564181,-0.018072,0.008004,0.249872,0,0);-ms-transform:matrix(0.564181,-0.018072,0.008004,0.249872,0,0);-webkit-transform:matrix(0.564181,-0.018072,0.008004,0.249872,0,0);}
.m2b_c00123{transform:matrix(0.573868,-0.020105,0.008753,0.249847,0,0);-ms-transform:matrix(0.573868,-0.020105,0.008753,0.249847,0,0);-webkit-transform:matrix(0.573868,-0.020105,0.008753,0.249847,0,0);}
.m12_c00123{transform:matrix(0.581009,-0.020356,0.008753,0.249847,0,0);-ms-transform:matrix(0.581009,-0.020356,0.008753,0.249847,0,0);-webkit-transform:matrix(0.581009,-0.020356,0.008753,0.249847,0,0);}
.mb_c00123{transform:matrix(0.658175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.658175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.658175,0.000000,0.000000,0.250000,0,0);}
.m5_c00123{transform:matrix(0.807215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.807215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.807215,0.000000,0.000000,0.250000,0,0);}
.m2_c00123{transform:matrix(0.852297,-0.025569,0.007497,0.249888,0,0);-ms-transform:matrix(0.852297,-0.025569,0.007497,0.249888,0,0);-webkit-transform:matrix(0.852297,-0.025569,0.007497,0.249888,0,0);}
.m1b_c00123{transform:matrix(1.043820,-0.033436,0.008004,0.249872,0,0);-ms-transform:matrix(1.043820,-0.033436,0.008004,0.249872,0,0);-webkit-transform:matrix(1.043820,-0.033436,0.008004,0.249872,0,0);}
.m3_c00123{transform:matrix(1.265221,-0.037957,0.007497,0.249888,0,0);-ms-transform:matrix(1.265221,-0.037957,0.007497,0.249888,0,0);-webkit-transform:matrix(1.265221,-0.037957,0.007497,0.249888,0,0);}
.m1_c00123{transform:matrix(1.291179,-0.038735,0.007497,0.249888,0,0);-ms-transform:matrix(1.291179,-0.038735,0.007497,0.249888,0,0);-webkit-transform:matrix(1.291179,-0.038735,0.007497,0.249888,0,0);}
.v0_c00123{vertical-align:0.000000px;}
.ls0_c00123{letter-spacing:0.000000px;}
.sc__c00123{text-shadow:none;}
.sc0_c00123{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__c00123{-webkit-text-stroke:0px transparent;}
.sc0_c00123{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00123{word-spacing:0.000000px;}
.fc0_c00123{color:transparent;}
.fs2_c00123{font-size:12.005399px;}
.fs3_c00123{font-size:18.000000px;}
.fsf_c00123{font-size:24.000000px;}
.fsc_c00123{font-size:24.001632px;}
.fs5_c00123{font-size:30.000000px;}
.fs6_c00123{font-size:36.000000px;}
.fsd_c00123{font-size:48.000000px;}
.fs4_c00123{font-size:54.000000px;}
.fs1_c00123{font-size:60.026994px;}
.fsa_c00123{font-size:71.964891px;}
.fs7_c00123{font-size:89.965163px;}
.fse_c00123{font-size:90.000000px;}
.fs10_c00123{font-size:143.944261px;}
.fsb_c00123{font-size:155.950852px;}
.fs0_c00123{font-size:156.070184px;}
.fs9_c00123{font-size:216.000000px;}
.fs8_c00123{font-size:239.907102px;}
.y0_c00123{bottom:0.000000px;}
.y27_c00123{bottom:42.415500px;}
.y28_c00123{bottom:45.592537px;}
.y29_c00123{bottom:48.486442px;}
.y2a_c00123{bottom:49.802040px;}
.y2b_c00123{bottom:51.595125px;}
.y26_c00123{bottom:175.500000px;}
.y25_c00123{bottom:180.223500px;}
.y1d_c00123{bottom:183.091500px;}
.y1e_c00123{bottom:187.385757px;}
.y24_c00123{bottom:187.920000px;}
.y23_c00123{bottom:191.289000px;}
.y1a_c00123{bottom:205.762500px;}
.y1b_c00123{bottom:209.242644px;}
.y22_c00123{bottom:216.135000px;}
.y1c_c00123{bottom:224.595204px;}
.y14_c00123{bottom:227.353500px;}
.y15_c00123{bottom:229.437000px;}
.y16_c00123{bottom:232.182000px;}
.y17_c00123{bottom:234.294000px;}
.y18_c00123{bottom:237.267000px;}
.y19_c00123{bottom:239.508000px;}
.y20_c00123{bottom:260.663901px;}
.y21_c00123{bottom:260.676258px;}
.y1f_c00123{bottom:264.118500px;}
.y13_c00123{bottom:312.472500px;}
.y4_c00123{bottom:316.449105px;}
.y6_c00123{bottom:320.490000px;}
.y5_c00123{bottom:321.568320px;}
.y11_c00123{bottom:325.954686px;}
.y2_c00123{bottom:334.792500px;}
.y12_c00123{bottom:336.225741px;}
.y3_c00123{bottom:337.367130px;}
.ye_c00123{bottom:348.330000px;}
.yf_c00123{bottom:352.059023px;}
.y10_c00123{bottom:355.388940px;}
.y1_c00123{bottom:357.232500px;}
.yb_c00123{bottom:379.095000px;}
.yc_c00123{bottom:380.832000px;}
.yd_c00123{bottom:383.122500px;}
.y8_c00123{bottom:389.079000px;}
.y9_c00123{bottom:391.351500px;}
.ya_c00123{bottom:392.755500px;}
.y7_c00123{bottom:395.283000px;}
.h4_c00123{height:12.005399px;}
.h5_c00123{height:18.000000px;}
.h11_c00123{height:24.000000px;}
.he_c00123{height:24.001632px;}
.h7_c00123{height:30.000000px;}
.h8_c00123{height:36.000000px;}
.hf_c00123{height:48.000000px;}
.h6_c00123{height:54.000000px;}
.h3_c00123{height:60.026994px;}
.hc_c00123{height:71.964891px;}
.h9_c00123{height:89.965163px;}
.h10_c00123{height:90.000000px;}
.h12_c00123{height:143.944261px;}
.hd_c00123{height:155.950852px;}
.h2_c00123{height:156.070184px;}
.hb_c00123{height:216.000000px;}
.ha_c00123{height:239.907102px;}
.h0_c00123{height:698.220000px;}
.h1_c00123{height:698.250000px;}
.w1_c00123{width:945.750000px;}
.w0_c00123{width:946.050000px;}
.x0_c00123{left:0.000000px;}
.x1a_c00123{left:11.508000px;}
.x2_c00123{left:21.354000px;}
.x14_c00123{left:34.860000px;}
.x1_c00123{left:36.654000px;}
.x4_c00123{left:40.474500px;}
.x3_c00123{left:107.175000px;}
.x1b_c00123{left:120.153745px;}
.x15_c00123{left:121.674000px;}
.x5_c00123{left:195.601050px;}
.x11_c00123{left:208.013697px;}
.x16_c00123{left:236.079000px;}
.x17_c00123{left:324.048000px;}
.xe_c00123{left:385.069500px;}
.xb_c00123{left:403.282500px;}
.x12_c00123{left:436.086516px;}
.x18_c00123{left:447.898500px;}
.xc_c00123{left:459.330000px;}
.xf_c00123{left:491.506456px;}
.x8_c00123{left:502.458000px;}
.xd_c00123{left:533.211000px;}
.x19_c00123{left:541.248000px;}
.x6_c00123{left:563.490000px;}
.x9_c00123{left:571.312500px;}
.x10_c00123{left:586.551816px;}
.x1c_c00123{left:599.441478px;}
.xa_c00123{left:613.837500px;}
.x7_c00123{left:616.410000px;}
.x24_c00123{left:641.754000px;}
.x1d_c00123{left:716.098500px;}
.x13_c00123{left:719.820000px;}
.x25_c00123{left:732.435727px;}
.x26_c00123{left:815.036044px;}
.x1e_c00123{left:832.043439px;}
.x27_c00123{left:852.586956px;}
.x23_c00123{left:898.830000px;}
.x28_c00123{left:903.766725px;}
.x20_c00123{left:909.089277px;}
.x22_c00123{left:937.710000px;}
.x1f_c00123{left:943.117500px;}
.x21_c00123{left:944.191494px;}
@media print{
.v0_c00123{vertical-align:0.000000pt;}
.ls0_c00123{letter-spacing:0.000000pt;}
.ws0_c00123{word-spacing:0.000000pt;}
.fs2_c00123{font-size:10.671466pt;}
.fs3_c00123{font-size:16.000000pt;}
.fsf_c00123{font-size:21.333333pt;}
.fsc_c00123{font-size:21.334784pt;}
.fs5_c00123{font-size:26.666667pt;}
.fs6_c00123{font-size:32.000000pt;}
.fsd_c00123{font-size:42.666667pt;}
.fs4_c00123{font-size:48.000000pt;}
.fs1_c00123{font-size:53.357328pt;}
.fsa_c00123{font-size:63.968792pt;}
.fs7_c00123{font-size:79.969034pt;}
.fse_c00123{font-size:80.000000pt;}
.fs10_c00123{font-size:127.950454pt;}
.fsb_c00123{font-size:138.622980pt;}
.fs0_c00123{font-size:138.729053pt;}
.fs9_c00123{font-size:192.000000pt;}
.fs8_c00123{font-size:213.250757pt;}
.y0_c00123{bottom:0.000000pt;}
.y27_c00123{bottom:37.702667pt;}
.y28_c00123{bottom:40.526700pt;}
.y29_c00123{bottom:43.099060pt;}
.y2a_c00123{bottom:44.268480pt;}
.y2b_c00123{bottom:45.862333pt;}
.y26_c00123{bottom:156.000000pt;}
.y25_c00123{bottom:160.198667pt;}
.y1d_c00123{bottom:162.748000pt;}
.y1e_c00123{bottom:166.565117pt;}
.y24_c00123{bottom:167.040000pt;}
.y23_c00123{bottom:170.034667pt;}
.y1a_c00123{bottom:182.900000pt;}
.y1b_c00123{bottom:185.993461pt;}
.y22_c00123{bottom:192.120000pt;}
.y1c_c00123{bottom:199.640181pt;}
.y14_c00123{bottom:202.092000pt;}
.y15_c00123{bottom:203.944000pt;}
.y16_c00123{bottom:206.384000pt;}
.y17_c00123{bottom:208.261333pt;}
.y18_c00123{bottom:210.904000pt;}
.y19_c00123{bottom:212.896000pt;}
.y20_c00123{bottom:231.701245pt;}
.y21_c00123{bottom:231.712229pt;}
.y1f_c00123{bottom:234.772000pt;}
.y13_c00123{bottom:277.753333pt;}
.y4_c00123{bottom:281.288093pt;}
.y6_c00123{bottom:284.880000pt;}
.y5_c00123{bottom:285.838507pt;}
.y11_c00123{bottom:289.737499pt;}
.y2_c00123{bottom:297.593333pt;}
.y12_c00123{bottom:298.867325pt;}
.y3_c00123{bottom:299.881893pt;}
.ye_c00123{bottom:309.626667pt;}
.yf_c00123{bottom:312.941353pt;}
.y10_c00123{bottom:315.901280pt;}
.y1_c00123{bottom:317.540000pt;}
.yb_c00123{bottom:336.973333pt;}
.yc_c00123{bottom:338.517333pt;}
.yd_c00123{bottom:340.553333pt;}
.y8_c00123{bottom:345.848000pt;}
.y9_c00123{bottom:347.868000pt;}
.ya_c00123{bottom:349.116000pt;}
.y7_c00123{bottom:351.362667pt;}
.h4_c00123{height:10.671466pt;}
.h5_c00123{height:16.000000pt;}
.h11_c00123{height:21.333333pt;}
.he_c00123{height:21.334784pt;}
.h7_c00123{height:26.666667pt;}
.h8_c00123{height:32.000000pt;}
.hf_c00123{height:42.666667pt;}
.h6_c00123{height:48.000000pt;}
.h3_c00123{height:53.357328pt;}
.hc_c00123{height:63.968792pt;}
.h9_c00123{height:79.969034pt;}
.h10_c00123{height:80.000000pt;}
.h12_c00123{height:127.950454pt;}
.hd_c00123{height:138.622980pt;}
.h2_c00123{height:138.729053pt;}
.hb_c00123{height:192.000000pt;}
.ha_c00123{height:213.250757pt;}
.h0_c00123{height:620.640000pt;}
.h1_c00123{height:620.666667pt;}
.w1_c00123{width:840.666667pt;}
.w0_c00123{width:840.933333pt;}
.x0_c00123{left:0.000000pt;}
.x1a_c00123{left:10.229333pt;}
.x2_c00123{left:18.981333pt;}
.x14_c00123{left:30.986667pt;}
.x1_c00123{left:32.581333pt;}
.x4_c00123{left:35.977333pt;}
.x3_c00123{left:95.266667pt;}
.x1b_c00123{left:106.803329pt;}
.x15_c00123{left:108.154667pt;}
.x5_c00123{left:173.867600pt;}
.x11_c00123{left:184.901064pt;}
.x16_c00123{left:209.848000pt;}
.x17_c00123{left:288.042667pt;}
.xe_c00123{left:342.284000pt;}
.xb_c00123{left:358.473333pt;}
.x12_c00123{left:387.632459pt;}
.x18_c00123{left:398.132000pt;}
.xc_c00123{left:408.293333pt;}
.xf_c00123{left:436.894628pt;}
.x8_c00123{left:446.629333pt;}
.xd_c00123{left:473.965333pt;}
.x19_c00123{left:481.109333pt;}
.x6_c00123{left:500.880000pt;}
.x9_c00123{left:507.833333pt;}
.x10_c00123{left:521.379392pt;}
.x1c_c00123{left:532.836869pt;}
.xa_c00123{left:545.633333pt;}
.x7_c00123{left:547.920000pt;}
.x24_c00123{left:570.448000pt;}
.x1d_c00123{left:636.532000pt;}
.x13_c00123{left:639.840000pt;}
.x25_c00123{left:651.053980pt;}
.x26_c00123{left:724.476484pt;}
.x1e_c00123{left:739.594168pt;}
.x27_c00123{left:757.855072pt;}
.x23_c00123{left:798.960000pt;}
.x28_c00123{left:803.348200pt;}
.x20_c00123{left:808.079357pt;}
.x22_c00123{left:833.520000pt;}
.x1f_c00123{left:838.326667pt;}
.x21_c00123{left:839.281328pt;}
}





/* 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_c00124 {
    display:none;
  }
  .loading-indicator_c00124.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00124 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_c00124 { 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_c00124" -> "#page-container .classname_c00124")
 */
.pf_c00124 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00124 { /* 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_c00124.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00124 { /* 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_c00124 { /* 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_c00124 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00124 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00124 {overflow:visible;}
  }
}
.c_c00124 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00124 { /* 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_c00124:after { /* webkit #35443 */
  content: '';
}
.t_c00124:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00124 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 */
}
.__c00124 { /* 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_c00124 { /* info for Javascript */
  display:none;
}
.l_c00124 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00124 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00124 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00124: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_c00124 {
    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_c00124.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00124.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_c00124 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00124{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00124;src:url('chunks/assets/font_fcacd0c005e4f737375e2290.woff2')format("woff");}.ff1_c00124{font-family:ff1_c00124;line-height:1.000000;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;}
.m17_c00124{transform:matrix(0.010815,-0.000087,0.002000,0.249992,0,0);-ms-transform:matrix(0.010815,-0.000087,0.002000,0.249992,0,0);-webkit-transform:matrix(0.010815,-0.000087,0.002000,0.249992,0,0);}
.m15_c00124{transform:matrix(0.040560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.040560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.040560,0.000000,0.000000,0.250000,0,0);}
.m1d_c00124{transform:matrix(0.212240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212240,0.000000,0.000000,0.250000,0,0);}
.m1c_c00124{transform:matrix(0.250660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250660,0.000000,0.000000,0.250000,0,0);}
.mf_c00124{transform:matrix(0.277775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277775,0.000000,0.000000,0.250000,0,0);}
.mb_c00124{transform:matrix(0.291116,-0.006113,0.005249,0.249945,0,0);-ms-transform:matrix(0.291116,-0.006113,0.005249,0.249945,0,0);-webkit-transform:matrix(0.291116,-0.006113,0.005249,0.249945,0,0);}
.m21_c00124{transform:matrix(0.338035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338035,0.000000,0.000000,0.250000,0,0);}
.m13_c00124{transform:matrix(0.349180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349180,0.000000,0.000000,0.250000,0,0);}
.me_c00124{transform:matrix(0.398065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398065,0.000000,0.000000,0.250000,0,0);}
.m1b_c00124{transform:matrix(0.402857,-0.003223,0.002000,0.249992,0,0);-ms-transform:matrix(0.402857,-0.003223,0.002000,0.249992,0,0);-webkit-transform:matrix(0.402857,-0.003223,0.002000,0.249992,0,0);}
.m14_c00124{transform:matrix(0.403280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403280,0.000000,0.000000,0.250000,0,0);}
.m0_c00124{transform:matrix(0.410480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410480,0.000000,0.000000,0.250000,0,0);}
.m1a_c00124{transform:matrix(0.415232,-0.003322,0.002000,0.249992,0,0);-ms-transform:matrix(0.415232,-0.003322,0.002000,0.249992,0,0);-webkit-transform:matrix(0.415232,-0.003322,0.002000,0.249992,0,0);}
.mc_c00124{transform:matrix(0.452755,-0.009508,0.005249,0.249945,0,0);-ms-transform:matrix(0.452755,-0.009508,0.005249,0.249945,0,0);-webkit-transform:matrix(0.452755,-0.009508,0.005249,0.249945,0,0);}
.m5_c00124{transform:matrix(0.460135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460135,0.000000,0.000000,0.250000,0,0);}
.ma_c00124{transform:matrix(0.507778,-0.010663,0.005249,0.249945,0,0);-ms-transform:matrix(0.507778,-0.010663,0.005249,0.249945,0,0);-webkit-transform:matrix(0.507778,-0.010663,0.005249,0.249945,0,0);}
.m4_c00124{transform:matrix(0.517230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517230,0.000000,0.000000,0.250000,0,0);}
.m10_c00124{transform:matrix(0.539415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.539415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.539415,0.000000,0.000000,0.250000,0,0);}
.m1_c00124{transform:matrix(0.644955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644955,0.000000,0.000000,0.250000,0,0);}
.m3_c00124{transform:matrix(0.667535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667535,0.000000,0.000000,0.250000,0,0);}
.m1e_c00124{transform:matrix(0.692573,-0.004848,0.001750,0.249994,0,0);-ms-transform:matrix(0.692573,-0.004848,0.001750,0.249994,0,0);-webkit-transform:matrix(0.692573,-0.004848,0.001750,0.249994,0,0);}
.m20_c00124{transform:matrix(0.882088,-0.006175,0.001750,0.249994,0,0);-ms-transform:matrix(0.882088,-0.006175,0.001750,0.249994,0,0);-webkit-transform:matrix(0.882088,-0.006175,0.001750,0.249994,0,0);}
.m19_c00124{transform:matrix(0.890966,-0.007128,0.002000,0.249992,0,0);-ms-transform:matrix(0.890966,-0.007128,0.002000,0.249992,0,0);-webkit-transform:matrix(0.890966,-0.007128,0.002000,0.249992,0,0);}
.m16_c00124{transform:matrix(0.918721,-0.007350,0.002000,0.249992,0,0);-ms-transform:matrix(0.918721,-0.007350,0.002000,0.249992,0,0);-webkit-transform:matrix(0.918721,-0.007350,0.002000,0.249992,0,0);}
.md_c00124{transform:matrix(1.138830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.138830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.138830,0.000000,0.000000,0.250000,0,0);}
.m2_c00124{transform:matrix(1.220410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.220410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.220410,0.000000,0.000000,0.250000,0,0);}
.m18_c00124{transform:matrix(1.243660,-0.009949,0.002000,0.249992,0,0);-ms-transform:matrix(1.243660,-0.009949,0.002000,0.249992,0,0);-webkit-transform:matrix(1.243660,-0.009949,0.002000,0.249992,0,0);}
.m8_c00124{transform:matrix(1.331645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.331645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.331645,0.000000,0.000000,0.250000,0,0);}
.m7_c00124{transform:matrix(1.355325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.355325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.355325,0.000000,0.000000,0.250000,0,0);}
.m12_c00124{transform:matrix(1.602040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.602040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.602040,0.000000,0.000000,0.250000,0,0);}
.m6_c00124{transform:matrix(1.739290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.739290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.739290,0.000000,0.000000,0.250000,0,0);}
.m11_c00124{transform:matrix(1.792450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.792450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.792450,0.000000,0.000000,0.250000,0,0);}
.m9_c00124{transform:matrix(1.946360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.946360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.946360,0.000000,0.000000,0.250000,0,0);}
.m1f_c00124{transform:matrix(3.098369,-0.021689,0.001750,0.249994,0,0);-ms-transform:matrix(3.098369,-0.021689,0.001750,0.249994,0,0);-webkit-transform:matrix(3.098369,-0.021689,0.001750,0.249994,0,0);}
.v0_c00124{vertical-align:0.000000px;}
.ls0_c00124{letter-spacing:0.000000px;}
.sc__c00124{text-shadow:none;}
.sc0_c00124{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__c00124{-webkit-text-stroke:0px transparent;}
.sc0_c00124{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00124{word-spacing:0.000000px;}
.fc0_c00124{color:transparent;}
.fs2_c00124{font-size:18.000000px;}
.fs6_c00124{font-size:24.000000px;}
.fs5_c00124{font-size:36.000000px;}
.fs8_c00124{font-size:42.000000px;}
.fs4_c00124{font-size:72.000000px;}
.fsa_c00124{font-size:78.000000px;}
.fs3_c00124{font-size:78.017197px;}
.fs7_c00124{font-size:90.002880px;}
.fs1_c00124{font-size:96.000000px;}
.fs9_c00124{font-size:102.002499px;}
.fs0_c00124{font-size:132.000000px;}
.y0_c00124{bottom:0.000000px;}
.y16_c00124{bottom:171.991500px;}
.y13_c00124{bottom:202.771500px;}
.y12_c00124{bottom:204.660000px;}
.y14_c00124{bottom:204.988712px;}
.y11_c00124{bottom:205.740000px;}
.y15_c00124{bottom:208.324099px;}
.yb_c00124{bottom:242.463000px;}
.yc_c00124{bottom:243.417864px;}
.yd_c00124{bottom:244.343208px;}
.ye_c00124{bottom:246.587388px;}
.yf_c00124{bottom:248.090220px;}
.y10_c00124{bottom:248.563248px;}
.y9_c00124{bottom:271.890000px;}
.y8_c00124{bottom:310.428000px;}
.y1_c00124{bottom:310.848000px;}
.ya_c00124{bottom:318.322500px;}
.y7_c00124{bottom:347.682000px;}
.y4_c00124{bottom:608.868000px;}
.y5_c00124{bottom:610.721712px;}
.y6_c00124{bottom:611.781277px;}
.y2_c00124{bottom:644.838000px;}
.y3_c00124{bottom:695.103000px;}
.h4_c00124{height:18.000000px;}
.h8_c00124{height:24.000000px;}
.h7_c00124{height:36.000000px;}
.ha_c00124{height:42.000000px;}
.h6_c00124{height:72.000000px;}
.hc_c00124{height:78.000000px;}
.h5_c00124{height:78.017197px;}
.h9_c00124{height:90.002880px;}
.h3_c00124{height:96.000000px;}
.hb_c00124{height:102.002499px;}
.h2_c00124{height:132.000000px;}
.h0_c00124{height:698.220000px;}
.h1_c00124{height:698.250000px;}
.w1_c00124{width:945.750000px;}
.w0_c00124{width:946.050000px;}
.x0_c00124{left:0.000000px;}
.x1_c00124{left:8.370000px;}
.x15_c00124{left:36.795000px;}
.x1b_c00124{left:63.720000px;}
.x1c_c00124{left:77.220000px;}
.x1d_c00124{left:115.228500px;}
.xc_c00124{left:126.630000px;}
.x2_c00124{left:139.590000px;}
.xf_c00124{left:144.720000px;}
.x16_c00124{left:156.153000px;}
.x10_c00124{left:157.950000px;}
.xe_c00124{left:159.030000px;}
.x12_c00124{left:195.210000px;}
.xa_c00124{left:227.103000px;}
.x3_c00124{left:268.920000px;}
.x17_c00124{left:271.821000px;}
.xb_c00124{left:277.558500px;}
.x4_c00124{left:298.080000px;}
.xd_c00124{left:310.230000px;}
.x5_c00124{left:313.740000px;}
.x6_c00124{left:321.300000px;}
.x7_c00124{left:412.020000px;}
.x1e_c00124{left:431.973000px;}
.x11_c00124{left:446.580000px;}
.x8_c00124{left:456.300000px;}
.x9_c00124{left:503.550000px;}
.x20_c00124{left:525.420000px;}
.x18_c00124{left:552.343500px;}
.x13_c00124{left:680.130000px;}
.x19_c00124{left:740.197500px;}
.x14_c00124{left:755.460000px;}
.x1a_c00124{left:799.326000px;}
.x1f_c00124{left:908.457000px;}
@media print{
.v0_c00124{vertical-align:0.000000pt;}
.ls0_c00124{letter-spacing:0.000000pt;}
.ws0_c00124{word-spacing:0.000000pt;}
.fs2_c00124{font-size:16.000000pt;}
.fs6_c00124{font-size:21.333333pt;}
.fs5_c00124{font-size:32.000000pt;}
.fs8_c00124{font-size:37.333333pt;}
.fs4_c00124{font-size:64.000000pt;}
.fsa_c00124{font-size:69.333333pt;}
.fs3_c00124{font-size:69.348620pt;}
.fs7_c00124{font-size:80.002560pt;}
.fs1_c00124{font-size:85.333333pt;}
.fs9_c00124{font-size:90.668888pt;}
.fs0_c00124{font-size:117.333333pt;}
.y0_c00124{bottom:0.000000pt;}
.y16_c00124{bottom:152.881333pt;}
.y13_c00124{bottom:180.241333pt;}
.y12_c00124{bottom:181.920000pt;}
.y14_c00124{bottom:182.212188pt;}
.y11_c00124{bottom:182.880000pt;}
.y15_c00124{bottom:185.176977pt;}
.yb_c00124{bottom:215.522667pt;}
.yc_c00124{bottom:216.371435pt;}
.yd_c00124{bottom:217.193963pt;}
.ye_c00124{bottom:219.188789pt;}
.yf_c00124{bottom:220.524640pt;}
.y10_c00124{bottom:220.945109pt;}
.y9_c00124{bottom:241.680000pt;}
.y8_c00124{bottom:275.936000pt;}
.y1_c00124{bottom:276.309333pt;}
.ya_c00124{bottom:282.953333pt;}
.y7_c00124{bottom:309.050667pt;}
.y4_c00124{bottom:541.216000pt;}
.y5_c00124{bottom:542.863744pt;}
.y6_c00124{bottom:543.805580pt;}
.y2_c00124{bottom:573.189333pt;}
.y3_c00124{bottom:617.869333pt;}
.h4_c00124{height:16.000000pt;}
.h8_c00124{height:21.333333pt;}
.h7_c00124{height:32.000000pt;}
.ha_c00124{height:37.333333pt;}
.h6_c00124{height:64.000000pt;}
.hc_c00124{height:69.333333pt;}
.h5_c00124{height:69.348620pt;}
.h9_c00124{height:80.002560pt;}
.h3_c00124{height:85.333333pt;}
.hb_c00124{height:90.668888pt;}
.h2_c00124{height:117.333333pt;}
.h0_c00124{height:620.640000pt;}
.h1_c00124{height:620.666667pt;}
.w1_c00124{width:840.666667pt;}
.w0_c00124{width:840.933333pt;}
.x0_c00124{left:0.000000pt;}
.x1_c00124{left:7.440000pt;}
.x15_c00124{left:32.706667pt;}
.x1b_c00124{left:56.640000pt;}
.x1c_c00124{left:68.640000pt;}
.x1d_c00124{left:102.425333pt;}
.xc_c00124{left:112.560000pt;}
.x2_c00124{left:124.080000pt;}
.xf_c00124{left:128.640000pt;}
.x16_c00124{left:138.802667pt;}
.x10_c00124{left:140.400000pt;}
.xe_c00124{left:141.360000pt;}
.x12_c00124{left:173.520000pt;}
.xa_c00124{left:201.869333pt;}
.x3_c00124{left:239.040000pt;}
.x17_c00124{left:241.618667pt;}
.xb_c00124{left:246.718667pt;}
.x4_c00124{left:264.960000pt;}
.xd_c00124{left:275.760000pt;}
.x5_c00124{left:278.880000pt;}
.x6_c00124{left:285.600000pt;}
.x7_c00124{left:366.240000pt;}
.x1e_c00124{left:383.976000pt;}
.x11_c00124{left:396.960000pt;}
.x8_c00124{left:405.600000pt;}
.x9_c00124{left:447.600000pt;}
.x20_c00124{left:467.040000pt;}
.x18_c00124{left:490.972000pt;}
.x13_c00124{left:604.560000pt;}
.x19_c00124{left:657.953333pt;}
.x14_c00124{left:671.520000pt;}
.x1a_c00124{left:710.512000pt;}
.x1f_c00124{left:807.517333pt;}
}





/* 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_c00125 {
    display:none;
  }
  .loading-indicator_c00125.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00125 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_c00125 { 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_c00125" -> "#page-container .classname_c00125")
 */
.pf_c00125 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00125 { /* 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_c00125.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00125 { /* 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_c00125 { /* 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_c00125 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00125 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00125 {overflow:visible;}
  }
}
.c_c00125 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00125 { /* 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_c00125:after { /* webkit #35443 */
  content: '';
}
.t_c00125:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00125 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 */
}
.__c00125 { /* 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_c00125 { /* info for Javascript */
  display:none;
}
.l_c00125 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00125 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00125 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00125: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_c00125 {
    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_c00125.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00125.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_c00125 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00125{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00125;src:url('chunks/assets/font_bfe6362fd3009c591583128f.woff2')format("woff");}.ff1_c00125{font-family:ff1_c00125;line-height:1.000000;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;}
.m15_c00125{transform:matrix(0.029268,-0.001143,0.009752,0.249810,0,0);-ms-transform:matrix(0.029268,-0.001143,0.009752,0.249810,0,0);-webkit-transform:matrix(0.029268,-0.001143,0.009752,0.249810,0,0);}
.m10_c00125{transform:matrix(0.054044,-0.002110,0.009752,0.249810,0,0);-ms-transform:matrix(0.054044,-0.002110,0.009752,0.249810,0,0);-webkit-transform:matrix(0.054044,-0.002110,0.009752,0.249810,0,0);}
.m1c_c00125{transform:matrix(0.071980,-0.002810,0.009752,0.249810,0,0);-ms-transform:matrix(0.071980,-0.002810,0.009752,0.249810,0,0);-webkit-transform:matrix(0.071980,-0.002810,0.009752,0.249810,0,0);}
.m1a_c00125{transform:matrix(0.087798,-0.003428,0.009752,0.249810,0,0);-ms-transform:matrix(0.087798,-0.003428,0.009752,0.249810,0,0);-webkit-transform:matrix(0.087798,-0.003428,0.009752,0.249810,0,0);}
.mb_c00125{transform:matrix(0.136245,-0.003679,0.006748,0.249909,0,0);-ms-transform:matrix(0.136245,-0.003679,0.006748,0.249909,0,0);-webkit-transform:matrix(0.136245,-0.003679,0.006748,0.249909,0,0);}
.me_c00125{transform:matrix(0.158095,-0.006172,0.009752,0.249810,0,0);-ms-transform:matrix(0.158095,-0.006172,0.009752,0.249810,0,0);-webkit-transform:matrix(0.158095,-0.006172,0.009752,0.249810,0,0);}
.m8_c00125{transform:matrix(0.206585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206585,0.000000,0.000000,0.250000,0,0);}
.ma_c00125{transform:matrix(0.217836,-0.005882,0.006748,0.249909,0,0);-ms-transform:matrix(0.217836,-0.005882,0.006748,0.249909,0,0);-webkit-transform:matrix(0.217836,-0.005882,0.006748,0.249909,0,0);}
.m3_c00125{transform:matrix(0.246020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246020,0.000000,0.000000,0.250000,0,0);}
.m6_c00125{transform:matrix(0.265375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265375,0.000000,0.000000,0.250000,0,0);}
.m1b_c00125{transform:matrix(0.266557,-0.010406,0.009752,0.249810,0,0);-ms-transform:matrix(0.266557,-0.010406,0.009752,0.249810,0,0);-webkit-transform:matrix(0.266557,-0.010406,0.009752,0.249810,0,0);}
.m7_c00125{transform:matrix(0.288140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288140,0.000000,0.000000,0.250000,0,0);}
.md_c00125{transform:matrix(0.303379,-0.011844,0.009752,0.249810,0,0);-ms-transform:matrix(0.303379,-0.011844,0.009752,0.249810,0,0);-webkit-transform:matrix(0.303379,-0.011844,0.009752,0.249810,0,0);}
.m13_c00125{transform:matrix(0.330089,-0.012886,0.009752,0.249810,0,0);-ms-transform:matrix(0.330089,-0.012886,0.009752,0.249810,0,0);-webkit-transform:matrix(0.330089,-0.012886,0.009752,0.249810,0,0);}
.m18_c00125{transform:matrix(0.331213,-0.012930,0.009752,0.249810,0,0);-ms-transform:matrix(0.331213,-0.012930,0.009752,0.249810,0,0);-webkit-transform:matrix(0.331213,-0.012930,0.009752,0.249810,0,0);}
.mf_c00125{transform:matrix(0.360625,-0.014078,0.009752,0.249810,0,0);-ms-transform:matrix(0.360625,-0.014078,0.009752,0.249810,0,0);-webkit-transform:matrix(0.360625,-0.014078,0.009752,0.249810,0,0);}
.m17_c00125{transform:matrix(0.377887,-0.014752,0.009752,0.249810,0,0);-ms-transform:matrix(0.377887,-0.014752,0.009752,0.249810,0,0);-webkit-transform:matrix(0.377887,-0.014752,0.009752,0.249810,0,0);}
.m12_c00125{transform:matrix(0.380150,-0.014841,0.009752,0.249810,0,0);-ms-transform:matrix(0.380150,-0.014841,0.009752,0.249810,0,0);-webkit-transform:matrix(0.380150,-0.014841,0.009752,0.249810,0,0);}
.m19_c00125{transform:matrix(0.394709,-0.015409,0.009752,0.249810,0,0);-ms-transform:matrix(0.394709,-0.015409,0.009752,0.249810,0,0);-webkit-transform:matrix(0.394709,-0.015409,0.009752,0.249810,0,0);}
.mc_c00125{transform:matrix(0.414684,-0.011196,0.006748,0.249909,0,0);-ms-transform:matrix(0.414684,-0.011196,0.006748,0.249909,0,0);-webkit-transform:matrix(0.414684,-0.011196,0.006748,0.249909,0,0);}
.m5_c00125{transform:matrix(0.440205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440205,0.000000,0.000000,0.250000,0,0);}
.m11_c00125{transform:matrix(0.569221,-0.022222,0.009752,0.249810,0,0);-ms-transform:matrix(0.569221,-0.022222,0.009752,0.249810,0,0);-webkit-transform:matrix(0.569221,-0.022222,0.009752,0.249810,0,0);}
.m1d_c00125{transform:matrix(0.602546,-0.023523,0.009752,0.249810,0,0);-ms-transform:matrix(0.602546,-0.023523,0.009752,0.249810,0,0);-webkit-transform:matrix(0.602546,-0.023523,0.009752,0.249810,0,0);}
.m16_c00125{transform:matrix(0.636705,-0.024856,0.009752,0.249810,0,0);-ms-transform:matrix(0.636705,-0.024856,0.009752,0.249810,0,0);-webkit-transform:matrix(0.636705,-0.024856,0.009752,0.249810,0,0);}
.m9_c00125{transform:matrix(0.680327,-0.018369,0.006748,0.249909,0,0);-ms-transform:matrix(0.680327,-0.018369,0.006748,0.249909,0,0);-webkit-transform:matrix(0.680327,-0.018369,0.006748,0.249909,0,0);}
.m2_c00125{transform:matrix(0.768375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.768375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.768375,0.000000,0.000000,0.250000,0,0);}
.m14_c00125{transform:matrix(0.865096,-0.033773,0.009752,0.249810,0,0);-ms-transform:matrix(0.865096,-0.033773,0.009752,0.249810,0,0);-webkit-transform:matrix(0.865096,-0.033773,0.009752,0.249810,0,0);}
.m4_c00125{transform:matrix(0.984300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.984300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.984300,0.000000,0.000000,0.250000,0,0);}
.m0_c00125{transform:matrix(1.073520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.073520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.073520,0.000000,0.000000,0.250000,0,0);}
.m1_c00125{transform:matrix(1.973225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.973225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.973225,0.000000,0.000000,0.250000,0,0);}
.v0_c00125{vertical-align:0.000000px;}
.ls0_c00125{letter-spacing:0.000000px;}
.sc__c00125{text-shadow:none;}
.sc0_c00125{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__c00125{-webkit-text-stroke:0px transparent;}
.sc0_c00125{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00125{word-spacing:0.000000px;}
.fc0_c00125{color:transparent;}
.fs0_c00125{font-size:18.000000px;}
.fs5_c00125{font-size:23.994263px;}
.fs1_c00125{font-size:30.000000px;}
.fs3_c00125{font-size:35.991395px;}
.fs4_c00125{font-size:47.988527px;}
.fs2_c00125{font-size:132.048105px;}
.y0_c00125{bottom:0.000000px;}
.y18_c00125{bottom:113.941164px;}
.y19_c00125{bottom:115.622463px;}
.y1a_c00125{bottom:118.091662px;}
.y1b_c00125{bottom:120.635787px;}
.y10_c00125{bottom:123.667342px;}
.y11_c00125{bottom:125.701869px;}
.y12_c00125{bottom:126.516531px;}
.y13_c00125{bottom:128.672215px;}
.y14_c00125{bottom:129.281106px;}
.y15_c00125{bottom:130.722487px;}
.y16_c00125{bottom:131.107732px;}
.yb_c00125{bottom:132.042000px;}
.y17_c00125{bottom:132.172104px;}
.yc_c00125{bottom:134.995782px;}
.yd_c00125{bottom:136.568613px;}
.ye_c00125{bottom:137.908029px;}
.yf_c00125{bottom:139.000282px;}
.y6_c00125{bottom:149.176500px;}
.y7_c00125{bottom:154.183500px;}
.y8_c00125{bottom:157.317228px;}
.y9_c00125{bottom:159.475270px;}
.ya_c00125{bottom:161.147596px;}
.y1_c00125{bottom:427.140000px;}
.y2_c00125{bottom:458.190000px;}
.y5_c00125{bottom:614.520000px;}
.y4_c00125{bottom:641.250000px;}
.y3_c00125{bottom:679.195500px;}
.h2_c00125{height:18.000000px;}
.h7_c00125{height:23.994263px;}
.h3_c00125{height:30.000000px;}
.h5_c00125{height:35.991395px;}
.h6_c00125{height:47.988527px;}
.h4_c00125{height:132.048105px;}
.h0_c00125{height:698.220000px;}
.h1_c00125{height:698.250000px;}
.w1_c00125{width:945.750000px;}
.w0_c00125{width:946.050000px;}
.x0_c00125{left:0.000000px;}
.x3_c00125{left:4.590000px;}
.x2_c00125{left:5.670000px;}
.x1_c00125{left:8.640000px;}
.x4_c00125{left:18.900000px;}
.x5_c00125{left:185.490000px;}
.x6_c00125{left:212.760000px;}
.x7_c00125{left:238.410000px;}
.x8_c00125{left:258.390000px;}
.x9_c00125{left:435.510000px;}
.xa_c00125{left:455.175000px;}
.x13_c00125{left:458.864126px;}
.x1b_c00125{left:464.756205px;}
.x1c_c00125{left:508.938177px;}
.x14_c00125{left:524.395965px;}
.x15_c00125{left:550.645887px;}
.xb_c00125{left:571.239000px;}
.x1d_c00125{left:573.840728px;}
.xe_c00125{left:618.064500px;}
.x16_c00125{left:620.088542px;}
.x17_c00125{left:639.722037px;}
.x1e_c00125{left:640.739397px;}
.xc_c00125{left:651.166500px;}
.x18_c00125{left:686.139038px;}
.xf_c00125{left:693.726762px;}
.x19_c00125{left:698.544484px;}
.xd_c00125{left:713.104500px;}
.x1a_c00125{left:732.843867px;}
.x10_c00125{left:734.015433px;}
.x11_c00125{left:768.325089px;}
.x12_c00125{left:796.303582px;}
@media print{
.v0_c00125{vertical-align:0.000000pt;}
.ls0_c00125{letter-spacing:0.000000pt;}
.ws0_c00125{word-spacing:0.000000pt;}
.fs0_c00125{font-size:16.000000pt;}
.fs5_c00125{font-size:21.328234pt;}
.fs1_c00125{font-size:26.666667pt;}
.fs3_c00125{font-size:31.992351pt;}
.fs4_c00125{font-size:42.656468pt;}
.fs2_c00125{font-size:117.376094pt;}
.y0_c00125{bottom:0.000000pt;}
.y18_c00125{bottom:101.281035pt;}
.y19_c00125{bottom:102.775523pt;}
.y1a_c00125{bottom:104.970367pt;}
.y1b_c00125{bottom:107.231811pt;}
.y10_c00125{bottom:109.926527pt;}
.y11_c00125{bottom:111.734995pt;}
.y12_c00125{bottom:112.459139pt;}
.y13_c00125{bottom:114.375303pt;}
.y14_c00125{bottom:114.916539pt;}
.y15_c00125{bottom:116.197767pt;}
.y16_c00125{bottom:116.540207pt;}
.yb_c00125{bottom:117.370667pt;}
.y17_c00125{bottom:117.486315pt;}
.yc_c00125{bottom:119.996251pt;}
.yd_c00125{bottom:121.394323pt;}
.ye_c00125{bottom:122.584915pt;}
.yf_c00125{bottom:123.555807pt;}
.y6_c00125{bottom:132.601333pt;}
.y7_c00125{bottom:137.052000pt;}
.y8_c00125{bottom:139.837536pt;}
.y9_c00125{bottom:141.755796pt;}
.ya_c00125{bottom:143.242308pt;}
.y1_c00125{bottom:379.680000pt;}
.y2_c00125{bottom:407.280000pt;}
.y5_c00125{bottom:546.240000pt;}
.y4_c00125{bottom:570.000000pt;}
.y3_c00125{bottom:603.729333pt;}
.h2_c00125{height:16.000000pt;}
.h7_c00125{height:21.328234pt;}
.h3_c00125{height:26.666667pt;}
.h5_c00125{height:31.992351pt;}
.h6_c00125{height:42.656468pt;}
.h4_c00125{height:117.376094pt;}
.h0_c00125{height:620.640000pt;}
.h1_c00125{height:620.666667pt;}
.w1_c00125{width:840.666667pt;}
.w0_c00125{width:840.933333pt;}
.x0_c00125{left:0.000000pt;}
.x3_c00125{left:4.080000pt;}
.x2_c00125{left:5.040000pt;}
.x1_c00125{left:7.680000pt;}
.x4_c00125{left:16.800000pt;}
.x5_c00125{left:164.880000pt;}
.x6_c00125{left:189.120000pt;}
.x7_c00125{left:211.920000pt;}
.x8_c00125{left:229.680000pt;}
.x9_c00125{left:387.120000pt;}
.xa_c00125{left:404.600000pt;}
.x13_c00125{left:407.879223pt;}
.x1b_c00125{left:413.116627pt;}
.x1c_c00125{left:452.389491pt;}
.x14_c00125{left:466.129747pt;}
.x15_c00125{left:489.463011pt;}
.xb_c00125{left:507.768000pt;}
.x1d_c00125{left:510.080647pt;}
.xe_c00125{left:549.390667pt;}
.x16_c00125{left:551.189815pt;}
.x17_c00125{left:568.641811pt;}
.x1e_c00125{left:569.546131pt;}
.xc_c00125{left:578.814667pt;}
.x18_c00125{left:609.901367pt;}
.xf_c00125{left:616.646011pt;}
.x19_c00125{left:620.928431pt;}
.xd_c00125{left:633.870667pt;}
.x1a_c00125{left:651.416771pt;}
.x10_c00125{left:652.458163pt;}
.x11_c00125{left:682.955635pt;}
.x12_c00125{left:707.825407pt;}
}





/* 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_c00126 {
    display:none;
  }
  .loading-indicator_c00126.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00126 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_c00126 { 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_c00126" -> "#page-container .classname_c00126")
 */
.pf_c00126 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00126 { /* 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_c00126.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00126 { /* 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_c00126 { /* 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_c00126 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00126 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00126 {overflow:visible;}
  }
}
.c_c00126 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00126 { /* 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_c00126:after { /* webkit #35443 */
  content: '';
}
.t_c00126:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00126 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 */
}
.__c00126 { /* 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_c00126 { /* info for Javascript */
  display:none;
}
.l_c00126 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00126 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00126 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00126: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_c00126 {
    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_c00126.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00126.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_c00126 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00126{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00126;src:url('chunks/assets/font_92d6bb63cbc780ceff7db400.woff2')format("woff");}.ff1_c00126{font-family:ff1_c00126;line-height:1.000000;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;}
.m52_c00126{transform:matrix(0.005090,-0.000066,0.003250,0.249979,0,0);-ms-transform:matrix(0.005090,-0.000066,0.003250,0.249979,0,0);-webkit-transform:matrix(0.005090,-0.000066,0.003250,0.249979,0,0);}
.m27_c00126{transform:matrix(0.075495,-0.000906,0.003000,0.249982,0,0);-ms-transform:matrix(0.075495,-0.000906,0.003000,0.249982,0,0);-webkit-transform:matrix(0.075495,-0.000906,0.003000,0.249982,0,0);}
.m39_c00126{transform:matrix(0.094108,-0.001129,0.003000,0.249982,0,0);-ms-transform:matrix(0.094108,-0.001129,0.003000,0.249982,0,0);-webkit-transform:matrix(0.094108,-0.001129,0.003000,0.249982,0,0);}
.m4e_c00126{transform:matrix(0.137818,-0.001792,0.003250,0.249979,0,0);-ms-transform:matrix(0.137818,-0.001792,0.003250,0.249979,0,0);-webkit-transform:matrix(0.137818,-0.001792,0.003250,0.249979,0,0);}
.m2b_c00126{transform:matrix(0.140295,-0.001684,0.003000,0.249982,0,0);-ms-transform:matrix(0.140295,-0.001684,0.003000,0.249982,0,0);-webkit-transform:matrix(0.140295,-0.001684,0.003000,0.249982,0,0);}
.m1c_c00126{transform:matrix(0.153314,-0.001840,0.003000,0.249982,0,0);-ms-transform:matrix(0.153314,-0.001840,0.003000,0.249982,0,0);-webkit-transform:matrix(0.153314,-0.001840,0.003000,0.249982,0,0);}
.m9_c00126{transform:matrix(0.169491,-0.002203,0.003250,0.249979,0,0);-ms-transform:matrix(0.169491,-0.002203,0.003250,0.249979,0,0);-webkit-transform:matrix(0.169491,-0.002203,0.003250,0.249979,0,0);}
.m45_c00126{transform:matrix(0.171433,-0.002057,0.003000,0.249982,0,0);-ms-transform:matrix(0.171433,-0.002057,0.003000,0.249982,0,0);-webkit-transform:matrix(0.171433,-0.002057,0.003000,0.249982,0,0);}
.m10_c00126{transform:matrix(0.182635,-0.002374,0.003250,0.249979,0,0);-ms-transform:matrix(0.182635,-0.002374,0.003250,0.249979,0,0);-webkit-transform:matrix(0.182635,-0.002374,0.003250,0.249979,0,0);}
.ma_c00126{transform:matrix(0.184139,-0.002394,0.003250,0.249979,0,0);-ms-transform:matrix(0.184139,-0.002394,0.003250,0.249979,0,0);-webkit-transform:matrix(0.184139,-0.002394,0.003250,0.249979,0,0);}
.m11_c00126{transform:matrix(0.198823,-0.002585,0.003250,0.249979,0,0);-ms-transform:matrix(0.198823,-0.002585,0.003250,0.249979,0,0);-webkit-transform:matrix(0.198823,-0.002585,0.003250,0.249979,0,0);}
.m3c_c00126{transform:matrix(0.208075,-0.002497,0.003000,0.249982,0,0);-ms-transform:matrix(0.208075,-0.002497,0.003000,0.249982,0,0);-webkit-transform:matrix(0.208075,-0.002497,0.003000,0.249982,0,0);}
.mf_c00126{transform:matrix(0.211167,-0.002745,0.003250,0.249979,0,0);-ms-transform:matrix(0.211167,-0.002745,0.003250,0.249979,0,0);-webkit-transform:matrix(0.211167,-0.002745,0.003250,0.249979,0,0);}
.m4d_c00126{transform:matrix(0.237765,-0.003091,0.003250,0.249979,0,0);-ms-transform:matrix(0.237765,-0.003091,0.003250,0.249979,0,0);-webkit-transform:matrix(0.237765,-0.003091,0.003250,0.249979,0,0);}
.m50_c00126{transform:matrix(0.242345,-0.003150,0.003250,0.249979,0,0);-ms-transform:matrix(0.242345,-0.003150,0.003250,0.249979,0,0);-webkit-transform:matrix(0.242345,-0.003150,0.003250,0.249979,0,0);}
.m13_c00126{transform:matrix(0.244214,-0.003175,0.003250,0.249979,0,0);-ms-transform:matrix(0.244214,-0.003175,0.003250,0.249979,0,0);-webkit-transform:matrix(0.244214,-0.003175,0.003250,0.249979,0,0);}
.m1e_c00126{transform:matrix(0.255777,-0.003069,0.003000,0.249982,0,0);-ms-transform:matrix(0.255777,-0.003069,0.003000,0.249982,0,0);-webkit-transform:matrix(0.255777,-0.003069,0.003000,0.249982,0,0);}
.m15_c00126{transform:matrix(0.256247,-0.003075,0.003000,0.249982,0,0);-ms-transform:matrix(0.256247,-0.003075,0.003000,0.249982,0,0);-webkit-transform:matrix(0.256247,-0.003075,0.003000,0.249982,0,0);}
.m35_c00126{transform:matrix(0.256302,-0.003076,0.003000,0.249982,0,0);-ms-transform:matrix(0.256302,-0.003076,0.003000,0.249982,0,0);-webkit-transform:matrix(0.256302,-0.003076,0.003000,0.249982,0,0);}
.m3f_c00126{transform:matrix(0.258546,-0.003103,0.003000,0.249982,0,0);-ms-transform:matrix(0.258546,-0.003103,0.003000,0.249982,0,0);-webkit-transform:matrix(0.258546,-0.003103,0.003000,0.249982,0,0);}
.m2e_c00126{transform:matrix(0.267781,-0.003213,0.003000,0.249982,0,0);-ms-transform:matrix(0.267781,-0.003213,0.003000,0.249982,0,0);-webkit-transform:matrix(0.267781,-0.003213,0.003000,0.249982,0,0);}
.m1_c00126{transform:matrix(0.270415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270415,0.000000,0.000000,0.250000,0,0);}
.m1a_c00126{transform:matrix(0.275160,-0.003302,0.003000,0.249982,0,0);-ms-transform:matrix(0.275160,-0.003302,0.003000,0.249982,0,0);-webkit-transform:matrix(0.275160,-0.003302,0.003000,0.249982,0,0);}
.m1d_c00126{transform:matrix(0.285109,-0.003421,0.003000,0.249982,0,0);-ms-transform:matrix(0.285109,-0.003421,0.003000,0.249982,0,0);-webkit-transform:matrix(0.285109,-0.003421,0.003000,0.249982,0,0);}
.m53_c00126{transform:matrix(0.286996,-0.003731,0.003250,0.249979,0,0);-ms-transform:matrix(0.286996,-0.003731,0.003250,0.249979,0,0);-webkit-transform:matrix(0.286996,-0.003731,0.003250,0.249979,0,0);}
.m14_c00126{transform:matrix(0.288839,-0.003466,0.003000,0.249982,0,0);-ms-transform:matrix(0.288839,-0.003466,0.003000,0.249982,0,0);-webkit-transform:matrix(0.288839,-0.003466,0.003000,0.249982,0,0);}
.m48_c00126{transform:matrix(0.295345,-0.003839,0.003250,0.249979,0,0);-ms-transform:matrix(0.295345,-0.003839,0.003250,0.249979,0,0);-webkit-transform:matrix(0.295345,-0.003839,0.003250,0.249979,0,0);}
.m20_c00126{transform:matrix(0.315782,-0.003789,0.003000,0.249982,0,0);-ms-transform:matrix(0.315782,-0.003789,0.003000,0.249982,0,0);-webkit-transform:matrix(0.315782,-0.003789,0.003000,0.249982,0,0);}
.m4f_c00126{transform:matrix(0.327407,-0.004256,0.003250,0.249979,0,0);-ms-transform:matrix(0.327407,-0.004256,0.003250,0.249979,0,0);-webkit-transform:matrix(0.327407,-0.004256,0.003250,0.249979,0,0);}
.m18_c00126{transform:matrix(0.328881,-0.003947,0.003000,0.249982,0,0);-ms-transform:matrix(0.328881,-0.003947,0.003000,0.249982,0,0);-webkit-transform:matrix(0.328881,-0.003947,0.003000,0.249982,0,0);}
.m54_c00126{transform:matrix(0.330017,-0.004290,0.003250,0.249979,0,0);-ms-transform:matrix(0.330017,-0.004290,0.003250,0.249979,0,0);-webkit-transform:matrix(0.330017,-0.004290,0.003250,0.249979,0,0);}
.m4c_c00126{transform:matrix(0.337876,-0.004392,0.003250,0.249979,0,0);-ms-transform:matrix(0.337876,-0.004392,0.003250,0.249979,0,0);-webkit-transform:matrix(0.337876,-0.004392,0.003250,0.249979,0,0);}
.m19_c00126{transform:matrix(0.348635,-0.004184,0.003000,0.249982,0,0);-ms-transform:matrix(0.348635,-0.004184,0.003000,0.249982,0,0);-webkit-transform:matrix(0.348635,-0.004184,0.003000,0.249982,0,0);}
.me_c00126{transform:matrix(0.354690,-0.004611,0.003250,0.249979,0,0);-ms-transform:matrix(0.354690,-0.004611,0.003250,0.249979,0,0);-webkit-transform:matrix(0.354690,-0.004611,0.003250,0.249979,0,0);}
.m3b_c00126{transform:matrix(0.358779,-0.004305,0.003000,0.249982,0,0);-ms-transform:matrix(0.358779,-0.004305,0.003000,0.249982,0,0);-webkit-transform:matrix(0.358779,-0.004305,0.003000,0.249982,0,0);}
.m41_c00126{transform:matrix(0.359064,-0.004309,0.003000,0.249982,0,0);-ms-transform:matrix(0.359064,-0.004309,0.003000,0.249982,0,0);-webkit-transform:matrix(0.359064,-0.004309,0.003000,0.249982,0,0);}
.m34_c00126{transform:matrix(0.364699,-0.004376,0.003000,0.249982,0,0);-ms-transform:matrix(0.364699,-0.004376,0.003000,0.249982,0,0);-webkit-transform:matrix(0.364699,-0.004376,0.003000,0.249982,0,0);}
.m2_c00126{transform:matrix(0.366195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366195,0.000000,0.000000,0.250000,0,0);}
.m3d_c00126{transform:matrix(0.381688,-0.004580,0.003000,0.249982,0,0);-ms-transform:matrix(0.381688,-0.004580,0.003000,0.249982,0,0);-webkit-transform:matrix(0.381688,-0.004580,0.003000,0.249982,0,0);}
.m31_c00126{transform:matrix(0.398996,-0.004788,0.003000,0.249982,0,0);-ms-transform:matrix(0.398996,-0.004788,0.003000,0.249982,0,0);-webkit-transform:matrix(0.398996,-0.004788,0.003000,0.249982,0,0);}
.m1b_c00126{transform:matrix(0.399736,-0.004797,0.003000,0.249982,0,0);-ms-transform:matrix(0.399736,-0.004797,0.003000,0.249982,0,0);-webkit-transform:matrix(0.399736,-0.004797,0.003000,0.249982,0,0);}
.m1f_c00126{transform:matrix(0.404116,-0.004849,0.003000,0.249982,0,0);-ms-transform:matrix(0.404116,-0.004849,0.003000,0.249982,0,0);-webkit-transform:matrix(0.404116,-0.004849,0.003000,0.249982,0,0);}
.m2a_c00126{transform:matrix(0.411100,-0.004933,0.003000,0.249982,0,0);-ms-transform:matrix(0.411100,-0.004933,0.003000,0.249982,0,0);-webkit-transform:matrix(0.411100,-0.004933,0.003000,0.249982,0,0);}
.m2d_c00126{transform:matrix(0.412525,-0.004950,0.003000,0.249982,0,0);-ms-transform:matrix(0.412525,-0.004950,0.003000,0.249982,0,0);-webkit-transform:matrix(0.412525,-0.004950,0.003000,0.249982,0,0);}
.m49_c00126{transform:matrix(0.413255,-0.005372,0.003250,0.249979,0,0);-ms-transform:matrix(0.413255,-0.005372,0.003250,0.249979,0,0);-webkit-transform:matrix(0.413255,-0.005372,0.003250,0.249979,0,0);}
.m22_c00126{transform:matrix(0.434049,-0.005209,0.003000,0.249982,0,0);-ms-transform:matrix(0.434049,-0.005209,0.003000,0.249982,0,0);-webkit-transform:matrix(0.434049,-0.005209,0.003000,0.249982,0,0);}
.m46_c00126{transform:matrix(0.450127,-0.005852,0.003250,0.249979,0,0);-ms-transform:matrix(0.450127,-0.005852,0.003250,0.249979,0,0);-webkit-transform:matrix(0.450127,-0.005852,0.003250,0.249979,0,0);}
.m3e_c00126{transform:matrix(0.469781,-0.005637,0.003000,0.249982,0,0);-ms-transform:matrix(0.469781,-0.005637,0.003000,0.249982,0,0);-webkit-transform:matrix(0.469781,-0.005637,0.003000,0.249982,0,0);}
.m23_c00126{transform:matrix(0.478961,-0.005748,0.003000,0.249982,0,0);-ms-transform:matrix(0.478961,-0.005748,0.003000,0.249982,0,0);-webkit-transform:matrix(0.478961,-0.005748,0.003000,0.249982,0,0);}
.m42_c00126{transform:matrix(0.479980,-0.005760,0.003000,0.249982,0,0);-ms-transform:matrix(0.479980,-0.005760,0.003000,0.249982,0,0);-webkit-transform:matrix(0.479980,-0.005760,0.003000,0.249982,0,0);}
.m43_c00126{transform:matrix(0.481460,-0.005778,0.003000,0.249982,0,0);-ms-transform:matrix(0.481460,-0.005778,0.003000,0.249982,0,0);-webkit-transform:matrix(0.481460,-0.005778,0.003000,0.249982,0,0);}
.m24_c00126{transform:matrix(0.495794,-0.005950,0.003000,0.249982,0,0);-ms-transform:matrix(0.495794,-0.005950,0.003000,0.249982,0,0);-webkit-transform:matrix(0.495794,-0.005950,0.003000,0.249982,0,0);}
.m4_c00126{transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00126{transform:matrix(0.501398,-0.006518,0.003250,0.249979,0,0);-ms-transform:matrix(0.501398,-0.006518,0.003250,0.249979,0,0);-webkit-transform:matrix(0.501398,-0.006518,0.003250,0.249979,0,0);}
.m29_c00126{transform:matrix(0.512958,-0.006155,0.003000,0.249982,0,0);-ms-transform:matrix(0.512958,-0.006155,0.003000,0.249982,0,0);-webkit-transform:matrix(0.512958,-0.006155,0.003000,0.249982,0,0);}
.m21_c00126{transform:matrix(0.529987,-0.006360,0.003000,0.249982,0,0);-ms-transform:matrix(0.529987,-0.006360,0.003000,0.249982,0,0);-webkit-transform:matrix(0.529987,-0.006360,0.003000,0.249982,0,0);}
.m12_c00126{transform:matrix(0.547894,-0.007123,0.003250,0.249979,0,0);-ms-transform:matrix(0.547894,-0.007123,0.003250,0.249979,0,0);-webkit-transform:matrix(0.547894,-0.007123,0.003250,0.249979,0,0);}
.m33_c00126{transform:matrix(0.552225,-0.006627,0.003000,0.249982,0,0);-ms-transform:matrix(0.552225,-0.006627,0.003000,0.249982,0,0);-webkit-transform:matrix(0.552225,-0.006627,0.003000,0.249982,0,0);}
.m30_c00126{transform:matrix(0.556395,-0.006677,0.003000,0.249982,0,0);-ms-transform:matrix(0.556395,-0.006677,0.003000,0.249982,0,0);-webkit-transform:matrix(0.556395,-0.006677,0.003000,0.249982,0,0);}
.m3a_c00126{transform:matrix(0.559855,-0.006718,0.003000,0.249982,0,0);-ms-transform:matrix(0.559855,-0.006718,0.003000,0.249982,0,0);-webkit-transform:matrix(0.559855,-0.006718,0.003000,0.249982,0,0);}
.m25_c00126{transform:matrix(0.574074,-0.006889,0.003000,0.249982,0,0);-ms-transform:matrix(0.574074,-0.006889,0.003000,0.249982,0,0);-webkit-transform:matrix(0.574074,-0.006889,0.003000,0.249982,0,0);}
.m16_c00126{transform:matrix(0.589338,-0.007072,0.003000,0.249982,0,0);-ms-transform:matrix(0.589338,-0.007072,0.003000,0.249982,0,0);-webkit-transform:matrix(0.589338,-0.007072,0.003000,0.249982,0,0);}
.m40_c00126{transform:matrix(0.593182,-0.007118,0.003000,0.249982,0,0);-ms-transform:matrix(0.593182,-0.007118,0.003000,0.249982,0,0);-webkit-transform:matrix(0.593182,-0.007118,0.003000,0.249982,0,0);}
.m36_c00126{transform:matrix(0.603712,-0.007245,0.003000,0.249982,0,0);-ms-transform:matrix(0.603712,-0.007245,0.003000,0.249982,0,0);-webkit-transform:matrix(0.603712,-0.007245,0.003000,0.249982,0,0);}
.m38_c00126{transform:matrix(0.607186,-0.007286,0.003000,0.249982,0,0);-ms-transform:matrix(0.607186,-0.007286,0.003000,0.249982,0,0);-webkit-transform:matrix(0.607186,-0.007286,0.003000,0.249982,0,0);}
.m3_c00126{transform:matrix(0.618465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.618465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.618465,0.000000,0.000000,0.250000,0,0);}
.m17_c00126{transform:matrix(0.640909,-0.007691,0.003000,0.249982,0,0);-ms-transform:matrix(0.640909,-0.007691,0.003000,0.249982,0,0);-webkit-transform:matrix(0.640909,-0.007691,0.003000,0.249982,0,0);}
.m44_c00126{transform:matrix(0.651878,-0.007823,0.003000,0.249982,0,0);-ms-transform:matrix(0.651878,-0.007823,0.003000,0.249982,0,0);-webkit-transform:matrix(0.651878,-0.007823,0.003000,0.249982,0,0);}
.m55_c00126{transform:matrix(0.697696,-0.009070,0.003250,0.249979,0,0);-ms-transform:matrix(0.697696,-0.009070,0.003250,0.249979,0,0);-webkit-transform:matrix(0.697696,-0.009070,0.003250,0.249979,0,0);}
.m7_c00126{transform:matrix(0.719650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.719650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.719650,0.000000,0.000000,0.250000,0,0);}
.mb_c00126{transform:matrix(0.732403,-0.009521,0.003250,0.249979,0,0);-ms-transform:matrix(0.732403,-0.009521,0.003250,0.249979,0,0);-webkit-transform:matrix(0.732403,-0.009521,0.003250,0.249979,0,0);}
.m32_c00126{transform:matrix(0.750761,-0.009009,0.003000,0.249982,0,0);-ms-transform:matrix(0.750761,-0.009009,0.003000,0.249982,0,0);-webkit-transform:matrix(0.750761,-0.009009,0.003000,0.249982,0,0);}
.m6_c00126{transform:matrix(0.780650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.780650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.780650,0.000000,0.000000,0.250000,0,0);}
.m47_c00126{transform:matrix(0.801467,-0.010419,0.003250,0.249979,0,0);-ms-transform:matrix(0.801467,-0.010419,0.003250,0.249979,0,0);-webkit-transform:matrix(0.801467,-0.010419,0.003250,0.249979,0,0);}
.m4b_c00126{transform:matrix(0.818481,-0.010640,0.003250,0.249979,0,0);-ms-transform:matrix(0.818481,-0.010640,0.003250,0.249979,0,0);-webkit-transform:matrix(0.818481,-0.010640,0.003250,0.249979,0,0);}
.m2f_c00126{transform:matrix(0.894866,-0.010738,0.003000,0.249982,0,0);-ms-transform:matrix(0.894866,-0.010738,0.003000,0.249982,0,0);-webkit-transform:matrix(0.894866,-0.010738,0.003000,0.249982,0,0);}
.m8_c00126{transform:matrix(0.900530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.900530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.900530,0.000000,0.000000,0.250000,0,0);}
.m2c_c00126{transform:matrix(0.997088,-0.011965,0.003000,0.249982,0,0);-ms-transform:matrix(0.997088,-0.011965,0.003000,0.249982,0,0);-webkit-transform:matrix(0.997088,-0.011965,0.003000,0.249982,0,0);}
.mc_c00126{transform:matrix(1.007130,-0.013093,0.003250,0.249979,0,0);-ms-transform:matrix(1.007130,-0.013093,0.003250,0.249979,0,0);-webkit-transform:matrix(1.007130,-0.013093,0.003250,0.249979,0,0);}
.m28_c00126{transform:matrix(1.009002,-0.012108,0.003000,0.249982,0,0);-ms-transform:matrix(1.009002,-0.012108,0.003000,0.249982,0,0);-webkit-transform:matrix(1.009002,-0.012108,0.003000,0.249982,0,0);}
.md_c00126{transform:matrix(1.095442,-0.014241,0.003250,0.249979,0,0);-ms-transform:matrix(1.095442,-0.014241,0.003250,0.249979,0,0);-webkit-transform:matrix(1.095442,-0.014241,0.003250,0.249979,0,0);}
.m37_c00126{transform:matrix(1.574497,-0.018894,0.003000,0.249982,0,0);-ms-transform:matrix(1.574497,-0.018894,0.003000,0.249982,0,0);-webkit-transform:matrix(1.574497,-0.018894,0.003000,0.249982,0,0);}
.m5_c00126{transform:matrix(1.595305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.595305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.595305,0.000000,0.000000,0.250000,0,0);}
.m51_c00126{transform:matrix(2.212723,-0.028765,0.003250,0.249979,0,0);-ms-transform:matrix(2.212723,-0.028765,0.003250,0.249979,0,0);-webkit-transform:matrix(2.212723,-0.028765,0.003250,0.249979,0,0);}
.m26_c00126{transform:matrix(2.367535,-0.028410,0.003000,0.249982,0,0);-ms-transform:matrix(2.367535,-0.028410,0.003000,0.249982,0,0);-webkit-transform:matrix(2.367535,-0.028410,0.003000,0.249982,0,0);}
.m0_c00126{transform:matrix(2.557830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.557830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.557830,0.000000,0.000000,0.250000,0,0);}
.v0_c00126{vertical-align:0.000000px;}
.ls0_c00126{letter-spacing:0.000000px;}
.sc__c00126{text-shadow:none;}
.sc0_c00126{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__c00126{-webkit-text-stroke:0px transparent;}
.sc0_c00126{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00126{word-spacing:0.000000px;}
.fc0_c00126{color:transparent;}
.fs0_c00126{font-size:18.000000px;}
.fs5_c00126{font-size:54.003888px;}
.fs3_c00126{font-size:60.004320px;}
.fs9_c00126{font-size:66.005577px;}
.fs8_c00126{font-size:84.006048px;}
.fs2_c00126{font-size:90.006480px;}
.fs7_c00126{font-size:96.006912px;}
.fs4_c00126{font-size:132.009504px;}
.fs6_c00126{font-size:138.009936px;}
.fsa_c00126{font-size:150.012674px;}
.fs1_c00126{font-size:162.013688px;}
.y0_c00126{bottom:0.000000px;}
.y47_c00126{bottom:26.458863px;}
.y48_c00126{bottom:27.007493px;}
.y49_c00126{bottom:27.483399px;}
.y4a_c00126{bottom:30.174907px;}
.y4b_c00126{bottom:30.798681px;}
.y4c_c00126{bottom:31.139001px;}
.y4d_c00126{bottom:31.897559px;}
.y3e_c00126{bottom:52.384500px;}
.y3f_c00126{bottom:52.944462px;}
.y40_c00126{bottom:54.311841px;}
.y41_c00126{bottom:54.732924px;}
.y42_c00126{bottom:55.919207px;}
.y43_c00126{bottom:57.593106px;}
.y44_c00126{bottom:60.757215px;}
.y45_c00126{bottom:63.154837px;}
.y46_c00126{bottom:63.543453px;}
.y3d_c00126{bottom:93.114540px;}
.y3c_c00126{bottom:93.114708px;}
.y3b_c00126{bottom:93.115098px;}
.y33_c00126{bottom:125.267196px;}
.y34_c00126{bottom:126.033630px;}
.y35_c00126{bottom:126.297594px;}
.y36_c00126{bottom:127.496790px;}
.y37_c00126{bottom:128.274636px;}
.y38_c00126{bottom:128.792322px;}
.y39_c00126{bottom:129.275898px;}
.y3a_c00126{bottom:131.422332px;}
.y2e_c00126{bottom:162.259578px;}
.y2f_c00126{bottom:162.987000px;}
.y30_c00126{bottom:164.262066px;}
.y31_c00126{bottom:164.970882px;}
.y32_c00126{bottom:166.704876px;}
.y27_c00126{bottom:188.726274px;}
.y28_c00126{bottom:192.520500px;}
.y29_c00126{bottom:193.530426px;}
.y2a_c00126{bottom:194.371758px;}
.y2b_c00126{bottom:195.808602px;}
.y2c_c00126{bottom:197.561220px;}
.y2d_c00126{bottom:199.864788px;}
.y22_c00126{bottom:242.530650px;}
.y23_c00126{bottom:242.530740px;}
.y24_c00126{bottom:242.530968px;}
.y21_c00126{bottom:242.531016px;}
.y20_c00126{bottom:242.531022px;}
.y25_c00126{bottom:242.531370px;}
.y26_c00126{bottom:242.532114px;}
.y19_c00126{bottom:306.991500px;}
.y1a_c00126{bottom:309.017868px;}
.y1b_c00126{bottom:310.070796px;}
.y1c_c00126{bottom:310.561206px;}
.y1d_c00126{bottom:311.889516px;}
.y1e_c00126{bottom:313.083006px;}
.y1f_c00126{bottom:313.612764px;}
.yd_c00126{bottom:492.139500px;}
.ye_c00126{bottom:493.124226px;}
.yf_c00126{bottom:493.470132px;}
.y10_c00126{bottom:495.075228px;}
.y11_c00126{bottom:496.235724px;}
.y12_c00126{bottom:496.848426px;}
.y13_c00126{bottom:497.561172px;}
.y14_c00126{bottom:498.606108px;}
.y15_c00126{bottom:499.395642px;}
.y16_c00126{bottom:499.891038px;}
.y17_c00126{bottom:502.048716px;}
.y18_c00126{bottom:502.691028px;}
.y2_c00126{bottom:568.354500px;}
.y3_c00126{bottom:568.905531px;}
.y4_c00126{bottom:569.751460px;}
.y5_c00126{bottom:571.967187px;}
.y6_c00126{bottom:574.858647px;}
.y7_c00126{bottom:575.462406px;}
.y8_c00126{bottom:576.798234px;}
.y9_c00126{bottom:577.583226px;}
.ya_c00126{bottom:577.930677px;}
.yb_c00126{bottom:578.892163px;}
.yc_c00126{bottom:579.955323px;}
.y1_c00126{bottom:694.894500px;}
.h2_c00126{height:18.000000px;}
.h7_c00126{height:54.003888px;}
.h5_c00126{height:60.004320px;}
.hb_c00126{height:66.005577px;}
.ha_c00126{height:84.006048px;}
.h4_c00126{height:90.006480px;}
.h9_c00126{height:96.006912px;}
.h6_c00126{height:132.009504px;}
.h8_c00126{height:138.009936px;}
.hc_c00126{height:150.012674px;}
.h3_c00126{height:162.013688px;}
.h0_c00126{height:698.220000px;}
.h1_c00126{height:698.250000px;}
.w1_c00126{width:945.750000px;}
.w0_c00126{width:946.050000px;}
.x0_c00126{left:0.000000px;}
.x27_c00126{left:1.351086px;}
.x3f_c00126{left:2.805000px;}
.xa_c00126{left:38.635500px;}
.x15_c00126{left:39.946500px;}
.x35_c00126{left:41.908044px;}
.x40_c00126{left:45.879000px;}
.xb_c00126{left:81.022500px;}
.x47_c00126{left:94.072767px;}
.x2f_c00126{left:99.531786px;}
.x16_c00126{left:122.007000px;}
.x38_c00126{left:138.152550px;}
.x28_c00126{left:139.870530px;}
.xc_c00126{left:146.094000px;}
.x17_c00126{left:150.832500px;}
.x36_c00126{left:163.160274px;}
.x21_c00126{left:169.023000px;}
.x39_c00126{left:171.151134px;}
.x48_c00126{left:173.380482px;}
.x41_c00126{left:183.453000px;}
.x1_c00126{left:186.300000px;}
.x22_c00126{left:256.767000px;}
.x42_c00126{left:274.705500px;}
.x29_c00126{left:281.360406px;}
.x18_c00126{left:284.590500px;}
.x23_c00126{left:297.634500px;}
.xd_c00126{left:316.534500px;}
.x3a_c00126{left:320.966316px;}
.x2_c00126{left:348.570000px;}
.x3_c00126{left:358.830000px;}
.x30_c00126{left:370.585788px;}
.x4_c00126{left:375.030000px;}
.x19_c00126{left:381.298500px;}
.x2a_c00126{left:384.507756px;}
.x5_c00126{left:393.390000px;}
.x43_c00126{left:403.467000px;}
.x24_c00126{left:408.327000px;}
.x3b_c00126{left:418.166478px;}
.x6_c00126{left:424.440000px;}
.x1a_c00126{left:432.357000px;}
.x31_c00126{left:442.744560px;}
.x2b_c00126{left:470.914194px;}
.x7_c00126{left:473.850000px;}
.x3e_c00126{left:481.714488px;}
.x3c_c00126{left:482.935092px;}
.x1b_c00126{left:491.752500px;}
.x2c_c00126{left:493.325916px;}
.x8_c00126{left:502.470000px;}
.x25_c00126{left:507.784500px;}
.xe_c00126{left:538.954500px;}
.x9_c00126{left:542.430000px;}
.x26_c00126{left:551.931000px;}
.x1c_c00126{left:578.830500px;}
.xf_c00126{left:585.397500px;}
.x32_c00126{left:605.463654px;}
.x49_c00126{left:622.075815px;}
.x1d_c00126{left:644.625000px;}
.x44_c00126{left:646.860000px;}
.x1e_c00126{left:685.908000px;}
.x10_c00126{left:688.153500px;}
.x4a_c00126{left:726.144792px;}
.x33_c00126{left:730.637148px;}
.x11_c00126{left:748.537500px;}
.x2d_c00126{left:750.924996px;}
.x12_c00126{left:775.264500px;}
.x37_c00126{left:782.527842px;}
.x3d_c00126{left:811.743378px;}
.x45_c00126{left:831.292500px;}
.x13_c00126{left:849.225000px;}
.x46_c00126{left:861.186000px;}
.x1f_c00126{left:865.714500px;}
.x34_c00126{left:895.222206px;}
.x2e_c00126{left:908.885748px;}
.x20_c00126{left:919.240500px;}
.x14_c00126{left:931.006500px;}
@media print{
.v0_c00126{vertical-align:0.000000pt;}
.ls0_c00126{letter-spacing:0.000000pt;}
.ws0_c00126{word-spacing:0.000000pt;}
.fs0_c00126{font-size:16.000000pt;}
.fs5_c00126{font-size:48.003456pt;}
.fs3_c00126{font-size:53.337173pt;}
.fs9_c00126{font-size:58.671624pt;}
.fs8_c00126{font-size:74.672042pt;}
.fs2_c00126{font-size:80.005760pt;}
.fs7_c00126{font-size:85.339477pt;}
.fs4_c00126{font-size:117.341781pt;}
.fs6_c00126{font-size:122.675498pt;}
.fsa_c00126{font-size:133.344600pt;}
.fs1_c00126{font-size:144.012167pt;}
.y0_c00126{bottom:0.000000pt;}
.y47_c00126{bottom:23.518989pt;}
.y48_c00126{bottom:24.006660pt;}
.y49_c00126{bottom:24.429688pt;}
.y4a_c00126{bottom:26.822140pt;}
.y4b_c00126{bottom:27.376605pt;}
.y4c_c00126{bottom:27.679112pt;}
.y4d_c00126{bottom:28.353385pt;}
.y3e_c00126{bottom:46.564000pt;}
.y3f_c00126{bottom:47.061744pt;}
.y40_c00126{bottom:48.277192pt;}
.y41_c00126{bottom:48.651488pt;}
.y42_c00126{bottom:49.705961pt;}
.y43_c00126{bottom:51.193872pt;}
.y44_c00126{bottom:54.006413pt;}
.y45_c00126{bottom:56.137633pt;}
.y46_c00126{bottom:56.483069pt;}
.y3d_c00126{bottom:82.768480pt;}
.y3c_c00126{bottom:82.768629pt;}
.y3b_c00126{bottom:82.768976pt;}
.y33_c00126{bottom:111.348619pt;}
.y34_c00126{bottom:112.029893pt;}
.y35_c00126{bottom:112.264528pt;}
.y36_c00126{bottom:113.330480pt;}
.y37_c00126{bottom:114.021899pt;}
.y38_c00126{bottom:114.482064pt;}
.y39_c00126{bottom:114.911909pt;}
.y3a_c00126{bottom:116.819851pt;}
.y2e_c00126{bottom:144.230736pt;}
.y2f_c00126{bottom:144.877333pt;}
.y30_c00126{bottom:146.010725pt;}
.y31_c00126{bottom:146.640784pt;}
.y32_c00126{bottom:148.182112pt;}
.y27_c00126{bottom:167.756688pt;}
.y28_c00126{bottom:171.129333pt;}
.y29_c00126{bottom:172.027045pt;}
.y2a_c00126{bottom:172.774896pt;}
.y2b_c00126{bottom:174.052091pt;}
.y2c_c00126{bottom:175.609973pt;}
.y2d_c00126{bottom:177.657589pt;}
.y22_c00126{bottom:215.582800pt;}
.y23_c00126{bottom:215.582880pt;}
.y24_c00126{bottom:215.583083pt;}
.y21_c00126{bottom:215.583125pt;}
.y20_c00126{bottom:215.583131pt;}
.y25_c00126{bottom:215.583440pt;}
.y26_c00126{bottom:215.584101pt;}
.y19_c00126{bottom:272.881333pt;}
.y1a_c00126{bottom:274.682549pt;}
.y1b_c00126{bottom:275.618485pt;}
.y1c_c00126{bottom:276.054405pt;}
.y1d_c00126{bottom:277.235125pt;}
.y1e_c00126{bottom:278.296005pt;}
.y1f_c00126{bottom:278.766901pt;}
.yd_c00126{bottom:437.457333pt;}
.ye_c00126{bottom:438.332645pt;}
.yf_c00126{bottom:438.640117pt;}
.y10_c00126{bottom:440.066869pt;}
.y11_c00126{bottom:441.098421pt;}
.y12_c00126{bottom:441.643045pt;}
.y13_c00126{bottom:442.276597pt;}
.y14_c00126{bottom:443.205429pt;}
.y15_c00126{bottom:443.907237pt;}
.y16_c00126{bottom:444.347589pt;}
.y17_c00126{bottom:446.265525pt;}
.y18_c00126{bottom:446.836469pt;}
.y2_c00126{bottom:505.204000pt;}
.y3_c00126{bottom:505.693805pt;}
.y4_c00126{bottom:506.445743pt;}
.y5_c00126{bottom:508.415277pt;}
.y6_c00126{bottom:510.985464pt;}
.y7_c00126{bottom:511.522139pt;}
.y8_c00126{bottom:512.709541pt;}
.y9_c00126{bottom:513.407312pt;}
.ya_c00126{bottom:513.716157pt;}
.yb_c00126{bottom:514.570812pt;}
.yc_c00126{bottom:515.515843pt;}
.y1_c00126{bottom:617.684000pt;}
.h2_c00126{height:16.000000pt;}
.h7_c00126{height:48.003456pt;}
.h5_c00126{height:53.337173pt;}
.hb_c00126{height:58.671624pt;}
.ha_c00126{height:74.672042pt;}
.h4_c00126{height:80.005760pt;}
.h9_c00126{height:85.339477pt;}
.h6_c00126{height:117.341781pt;}
.h8_c00126{height:122.675498pt;}
.hc_c00126{height:133.344600pt;}
.h3_c00126{height:144.012167pt;}
.h0_c00126{height:620.640000pt;}
.h1_c00126{height:620.666667pt;}
.w1_c00126{width:840.666667pt;}
.w0_c00126{width:840.933333pt;}
.x0_c00126{left:0.000000pt;}
.x27_c00126{left:1.200965pt;}
.x3f_c00126{left:2.493333pt;}
.xa_c00126{left:34.342667pt;}
.x15_c00126{left:35.508000pt;}
.x35_c00126{left:37.251595pt;}
.x40_c00126{left:40.781333pt;}
.xb_c00126{left:72.020000pt;}
.x47_c00126{left:83.620237pt;}
.x2f_c00126{left:88.472699pt;}
.x16_c00126{left:108.450667pt;}
.x38_c00126{left:122.802267pt;}
.x28_c00126{left:124.329360pt;}
.xc_c00126{left:129.861333pt;}
.x17_c00126{left:134.073333pt;}
.x36_c00126{left:145.031355pt;}
.x21_c00126{left:150.242667pt;}
.x39_c00126{left:152.134341pt;}
.x48_c00126{left:154.115984pt;}
.x41_c00126{left:163.069333pt;}
.x1_c00126{left:165.600000pt;}
.x22_c00126{left:228.237333pt;}
.x42_c00126{left:244.182667pt;}
.x29_c00126{left:250.098139pt;}
.x18_c00126{left:252.969333pt;}
.x23_c00126{left:264.564000pt;}
.xd_c00126{left:281.364000pt;}
.x3a_c00126{left:285.303392pt;}
.x2_c00126{left:309.840000pt;}
.x3_c00126{left:318.960000pt;}
.x30_c00126{left:329.409589pt;}
.x4_c00126{left:333.360000pt;}
.x19_c00126{left:338.932000pt;}
.x2a_c00126{left:341.784672pt;}
.x5_c00126{left:349.680000pt;}
.x43_c00126{left:358.637333pt;}
.x24_c00126{left:362.957333pt;}
.x3b_c00126{left:371.703536pt;}
.x6_c00126{left:377.280000pt;}
.x1a_c00126{left:384.317333pt;}
.x31_c00126{left:393.550720pt;}
.x2b_c00126{left:418.590395pt;}
.x7_c00126{left:421.200000pt;}
.x3e_c00126{left:428.190656pt;}
.x3c_c00126{left:429.275637pt;}
.x1b_c00126{left:437.113333pt;}
.x2c_c00126{left:438.511925pt;}
.x8_c00126{left:446.640000pt;}
.x25_c00126{left:451.364000pt;}
.xe_c00126{left:479.070667pt;}
.x9_c00126{left:482.160000pt;}
.x26_c00126{left:490.605333pt;}
.x1c_c00126{left:514.516000pt;}
.xf_c00126{left:520.353333pt;}
.x32_c00126{left:538.189915pt;}
.x49_c00126{left:552.956280pt;}
.x1d_c00126{left:573.000000pt;}
.x44_c00126{left:574.986667pt;}
.x1e_c00126{left:609.696000pt;}
.x10_c00126{left:611.692000pt;}
.x4a_c00126{left:645.462037pt;}
.x33_c00126{left:649.455243pt;}
.x11_c00126{left:665.366667pt;}
.x2d_c00126{left:667.488885pt;}
.x12_c00126{left:689.124000pt;}
.x37_c00126{left:695.580304pt;}
.x3d_c00126{left:721.549669pt;}
.x45_c00126{left:738.926667pt;}
.x13_c00126{left:754.866667pt;}
.x46_c00126{left:765.498667pt;}
.x1f_c00126{left:769.524000pt;}
.x34_c00126{left:795.753072pt;}
.x2e_c00126{left:807.898443pt;}
.x20_c00126{left:817.102667pt;}
.x14_c00126{left:827.561333pt;}
}





/* 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_c00127 {
    display:none;
  }
  .loading-indicator_c00127.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00127 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_c00127 { 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_c00127" -> "#page-container .classname_c00127")
 */
.pf_c00127 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00127 { /* 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_c00127.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00127 { /* 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_c00127 { /* 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_c00127 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00127 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00127 {overflow:visible;}
  }
}
.c_c00127 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00127 { /* 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_c00127:after { /* webkit #35443 */
  content: '';
}
.t_c00127:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00127 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 */
}
.__c00127 { /* 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_c00127 { /* info for Javascript */
  display:none;
}
.l_c00127 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00127 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00127 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00127: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_c00127 {
    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_c00127.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00127.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_c00127 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00127{font-family:sans-serif;visibility:hidden;}
.sc__c00127{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00127{-webkit-text-stroke:0px transparent;}
}
.y0_c00127{bottom:0.000000px;}
.h0_c00127{height:698.220000px;}
.h1_c00127{height:698.250000px;}
.w1_c00127{width:945.750000px;}
.w0_c00127{width:946.050000px;}
.x0_c00127{left:0.000000px;}
@media print{
.y0_c00127{bottom:0.000000pt;}
.h0_c00127{height:620.640000pt;}
.h1_c00127{height:620.666667pt;}
.w1_c00127{width:840.666667pt;}
.w0_c00127{width:840.933333pt;}
.x0_c00127{left:0.000000pt;}
}





/* 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_c00128 {
    display:none;
  }
  .loading-indicator_c00128.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00128 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_c00128 { 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_c00128" -> "#page-container .classname_c00128")
 */
.pf_c00128 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00128 { /* 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_c00128.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00128 { /* 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_c00128 { /* 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_c00128 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00128 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00128 {overflow:visible;}
  }
}
.c_c00128 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00128 { /* 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_c00128:after { /* webkit #35443 */
  content: '';
}
.t_c00128:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00128 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 */
}
.__c00128 { /* 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_c00128 { /* info for Javascript */
  display:none;
}
.l_c00128 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00128 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00128 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00128: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_c00128 {
    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_c00128.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00128.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_c00128 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00128{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00128;src:url('chunks/assets/font_7c6b9abe6ee2a268480c528b.woff2')format("woff");}.ff1_c00128{font-family:ff1_c00128;line-height:1.000000;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;}
.m20_c00128{transform:matrix(0.013398,0.000228,-0.004249,0.249964,0,0);-ms-transform:matrix(0.013398,0.000228,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.013398,0.000228,-0.004249,0.249964,0,0);}
.m21_c00128{transform:matrix(0.018497,0.000314,-0.004249,0.249964,0,0);-ms-transform:matrix(0.018497,0.000314,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.018497,0.000314,-0.004249,0.249964,0,0);}
.m22_c00128{transform:matrix(0.126042,0.002143,-0.004249,0.249964,0,0);-ms-transform:matrix(0.126042,0.002143,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.126042,0.002143,-0.004249,0.249964,0,0);}
.m26_c00128{transform:matrix(0.137880,0.002344,-0.004249,0.249964,0,0);-ms-transform:matrix(0.137880,0.002344,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.137880,0.002344,-0.004249,0.249964,0,0);}
.m2b_c00128{transform:matrix(0.162250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162250,0.000000,0.000000,0.250000,0,0);}
.m23_c00128{transform:matrix(0.167501,0.002848,-0.004249,0.249964,0,0);-ms-transform:matrix(0.167501,0.002848,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.167501,0.002848,-0.004249,0.249964,0,0);}
.m3a_c00128{transform:matrix(0.175570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175570,0.000000,0.000000,0.250000,0,0);}
.m6_c00128{transform:matrix(0.184610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184610,0.000000,0.000000,0.250000,0,0);}
.m1c_c00128{transform:matrix(0.194667,0.003309,-0.004249,0.249964,0,0);-ms-transform:matrix(0.194667,0.003309,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.194667,0.003309,-0.004249,0.249964,0,0);}
.m30_c00128{transform:matrix(0.199705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199705,0.000000,0.000000,0.250000,0,0);}
.m1d_c00128{transform:matrix(0.219553,0.003732,-0.004249,0.249964,0,0);-ms-transform:matrix(0.219553,0.003732,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.219553,0.003732,-0.004249,0.249964,0,0);}
.m19_c00128{transform:matrix(0.219813,0.003737,-0.004249,0.249964,0,0);-ms-transform:matrix(0.219813,0.003737,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.219813,0.003737,-0.004249,0.249964,0,0);}
.m3c_c00128{transform:matrix(0.220960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220960,0.000000,0.000000,0.250000,0,0);}
.m33_c00128{transform:matrix(0.223305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223305,0.000000,0.000000,0.250000,0,0);}
.m1a_c00128{transform:matrix(0.225672,0.003836,-0.004249,0.249964,0,0);-ms-transform:matrix(0.225672,0.003836,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.225672,0.003836,-0.004249,0.249964,0,0);}
.m17_c00128{transform:matrix(0.227185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227185,0.000000,0.000000,0.250000,0,0);}
.mc_c00128{transform:matrix(0.230635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230635,0.000000,0.000000,0.250000,0,0);}
.m34_c00128{transform:matrix(0.256540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256540,0.000000,0.000000,0.250000,0,0);}
.m18_c00128{transform:matrix(0.273445,0.004649,-0.004249,0.249964,0,0);-ms-transform:matrix(0.273445,0.004649,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.273445,0.004649,-0.004249,0.249964,0,0);}
.m25_c00128{transform:matrix(0.284389,0.004835,-0.004249,0.249964,0,0);-ms-transform:matrix(0.284389,0.004835,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.284389,0.004835,-0.004249,0.249964,0,0);}
.m1f_c00128{transform:matrix(0.294532,0.005007,-0.004249,0.249964,0,0);-ms-transform:matrix(0.294532,0.005007,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.294532,0.005007,-0.004249,0.249964,0,0);}
.m7_c00128{transform:matrix(0.294705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294705,0.000000,0.000000,0.250000,0,0);}
.m9_c00128{transform:matrix(0.312285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312285,0.000000,0.000000,0.250000,0,0);}
.m0_c00128{transform:matrix(0.321415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321415,0.000000,0.000000,0.250000,0,0);}
.m12_c00128{transform:matrix(0.368805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368805,0.000000,0.000000,0.250000,0,0);}
.m39_c00128{transform:matrix(0.379475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379475,0.000000,0.000000,0.250000,0,0);}
.m1b_c00128{transform:matrix(0.381730,0.006489,-0.004249,0.249964,0,0);-ms-transform:matrix(0.381730,0.006489,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.381730,0.006489,-0.004249,0.249964,0,0);}
.m1_c00128{transform:matrix(0.383555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383555,0.000000,0.000000,0.250000,0,0);}
.m4_c00128{transform:matrix(0.387710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387710,0.000000,0.000000,0.250000,0,0);}
.m5_c00128{transform:matrix(0.400920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400920,0.000000,0.000000,0.250000,0,0);}
.m37_c00128{transform:matrix(0.402490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402490,0.000000,0.000000,0.250000,0,0);}
.m31_c00128{transform:matrix(0.409505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409505,0.000000,0.000000,0.250000,0,0);}
.mf_c00128{transform:matrix(0.429430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429430,0.000000,0.000000,0.250000,0,0);}
.m24_c00128{transform:matrix(0.454244,0.007722,-0.004249,0.249964,0,0);-ms-transform:matrix(0.454244,0.007722,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.454244,0.007722,-0.004249,0.249964,0,0);}
.m32_c00128{transform:matrix(0.455590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455590,0.000000,0.000000,0.250000,0,0);}
.m3d_c00128{transform:matrix(0.477120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477120,0.000000,0.000000,0.250000,0,0);}
.m3_c00128{transform:matrix(0.490100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490100,0.000000,0.000000,0.250000,0,0);}
.m2a_c00128{transform:matrix(0.496283,0.008437,-0.004249,0.249964,0,0);-ms-transform:matrix(0.496283,0.008437,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.496283,0.008437,-0.004249,0.249964,0,0);}
.m2d_c00128{transform:matrix(0.507570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507570,0.000000,0.000000,0.250000,0,0);}
.m1e_c00128{transform:matrix(0.515516,0.008764,-0.004249,0.249964,0,0);-ms-transform:matrix(0.515516,0.008764,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.515516,0.008764,-0.004249,0.249964,0,0);}
.m10_c00128{transform:matrix(0.558140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558140,0.000000,0.000000,0.250000,0,0);}
.me_c00128{transform:matrix(0.559330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559330,0.000000,0.000000,0.250000,0,0);}
.m36_c00128{transform:matrix(0.576280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576280,0.000000,0.000000,0.250000,0,0);}
.m8_c00128{transform:matrix(0.588050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.588050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.588050,0.000000,0.000000,0.250000,0,0);}
.m11_c00128{transform:matrix(0.636655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636655,0.000000,0.000000,0.250000,0,0);}
.m29_c00128{transform:matrix(0.641107,0.010899,-0.004249,0.249964,0,0);-ms-transform:matrix(0.641107,0.010899,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.641107,0.010899,-0.004249,0.249964,0,0);}
.m27_c00128{transform:matrix(0.722416,0.012281,-0.004249,0.249964,0,0);-ms-transform:matrix(0.722416,0.012281,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.722416,0.012281,-0.004249,0.249964,0,0);}
.m38_c00128{transform:matrix(0.727615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727615,0.000000,0.000000,0.250000,0,0);}
.m16_c00128{transform:matrix(0.731265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.731265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.731265,0.000000,0.000000,0.250000,0,0);}
.ma_c00128{transform:matrix(0.741055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.741055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.741055,0.000000,0.000000,0.250000,0,0);}
.m2_c00128{transform:matrix(0.772745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.772745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.772745,0.000000,0.000000,0.250000,0,0);}
.m13_c00128{transform:matrix(0.790715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.790715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.790715,0.000000,0.000000,0.250000,0,0);}
.mb_c00128{transform:matrix(0.845960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.845960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.845960,0.000000,0.000000,0.250000,0,0);}
.m2e_c00128{transform:matrix(0.867420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.867420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.867420,0.000000,0.000000,0.250000,0,0);}
.m14_c00128{transform:matrix(0.898345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.898345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.898345,0.000000,0.000000,0.250000,0,0);}
.m2c_c00128{transform:matrix(1.056835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.056835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.056835,0.000000,0.000000,0.250000,0,0);}
.m3b_c00128{transform:matrix(1.071380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.071380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.071380,0.000000,0.000000,0.250000,0,0);}
.md_c00128{transform:matrix(1.336910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.336910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.336910,0.000000,0.000000,0.250000,0,0);}
.m28_c00128{transform:matrix(1.415350,0.024061,-0.004249,0.249964,0,0);-ms-transform:matrix(1.415350,0.024061,-0.004249,0.249964,0,0);-webkit-transform:matrix(1.415350,0.024061,-0.004249,0.249964,0,0);}
.m15_c00128{transform:matrix(1.422865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.422865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.422865,0.000000,0.000000,0.250000,0,0);}
.m2f_c00128{transform:matrix(3.884915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.884915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.884915,0.000000,0.000000,0.250000,0,0);}
.m35_c00128{transform:matrix(4.402390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.402390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.402390,0.000000,0.000000,0.250000,0,0);}
.v0_c00128{vertical-align:0.000000px;}
.ls0_c00128{letter-spacing:0.000000px;}
.sc__c00128{text-shadow:none;}
.sc0_c00128{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__c00128{-webkit-text-stroke:0px transparent;}
.sc0_c00128{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00128{word-spacing:0.000000px;}
.fc0_c00128{color:transparent;}
.fs7_c00128{font-size:18.000000px;}
.fs8_c00128{font-size:24.000000px;}
.fs3_c00128{font-size:42.000000px;}
.fs9_c00128{font-size:48.000000px;}
.fs0_c00128{font-size:54.000000px;}
.fs6_c00128{font-size:90.013004px;}
.fs5_c00128{font-size:114.016472px;}
.fs2_c00128{font-size:162.000000px;}
.fs4_c00128{font-size:192.027742px;}
.fs1_c00128{font-size:234.000000px;}
.y0_c00128{bottom:0.000000px;}
.y23_c00128{bottom:59.400000px;}
.y22_c00128{bottom:64.530000px;}
.y20_c00128{bottom:93.960000px;}
.y21_c00128{bottom:129.870000px;}
.y1f_c00128{bottom:201.690000px;}
.y1d_c00128{bottom:209.250000px;}
.y1e_c00128{bottom:233.820000px;}
.y1c_c00128{bottom:287.550000px;}
.y1b_c00128{bottom:473.455698px;}
.y1a_c00128{bottom:474.135890px;}
.y19_c00128{bottom:475.034838px;}
.y18_c00128{bottom:475.375884px;}
.y17_c00128{bottom:475.549924px;}
.y16_c00128{bottom:476.390842px;}
.y15_c00128{bottom:477.445884px;}
.y14_c00128{bottom:477.887649px;}
.y13_c00128{bottom:528.576227px;}
.y12_c00128{bottom:535.353510px;}
.y11_c00128{bottom:537.050579px;}
.y10_c00128{bottom:539.443049px;}
.yf_c00128{bottom:542.940114px;}
.ye_c00128{bottom:546.132077px;}
.yd_c00128{bottom:549.083013px;}
.yc_c00128{bottom:551.041082px;}
.yb_c00128{bottom:553.657790px;}
.ya_c00128{bottom:555.723774px;}
.y9_c00128{bottom:557.556000px;}
.y7_c00128{bottom:581.403000px;}
.y6_c00128{bottom:583.240500px;}
.y5_c00128{bottom:584.314500px;}
.y4_c00128{bottom:586.533000px;}
.y3_c00128{bottom:588.603000px;}
.y2_c00128{bottom:622.350000px;}
.y1_c00128{bottom:687.664500px;}
.y8_c00128{bottom:687.960000px;}
.h9_c00128{height:18.000000px;}
.ha_c00128{height:24.000000px;}
.h5_c00128{height:42.000000px;}
.hb_c00128{height:48.000000px;}
.h2_c00128{height:54.000000px;}
.h8_c00128{height:90.013004px;}
.h7_c00128{height:114.016472px;}
.h4_c00128{height:162.000000px;}
.h6_c00128{height:192.027742px;}
.h3_c00128{height:234.000000px;}
.h0_c00128{height:698.220000px;}
.h1_c00128{height:698.250000px;}
.w1_c00128{width:945.750000px;}
.w0_c00128{width:946.050000px;}
.x0_c00128{left:0.000000px;}
.x2b_c00128{left:3.240000px;}
.x2a_c00128{left:7.560000px;}
.x29_c00128{left:9.720000px;}
.x2c_c00128{left:18.630000px;}
.x2d_c00128{left:25.650000px;}
.x17_c00128{left:43.093500px;}
.x21_c00128{left:63.648468px;}
.x22_c00128{left:126.704178px;}
.xa_c00128{left:134.730000px;}
.x18_c00128{left:150.871500px;}
.x2_c00128{left:163.350000px;}
.xb_c00128{left:200.340000px;}
.x6_c00128{left:206.751000px;}
.xc_c00128{left:209.250000px;}
.xd_c00128{left:266.490000px;}
.x19_c00128{left:272.400000px;}
.x23_c00128{left:277.379280px;}
.xe_c00128{left:296.730000px;}
.x1e_c00128{left:322.115123px;}
.xf_c00128{left:329.400000px;}
.x3_c00128{left:351.000000px;}
.x10_c00128{left:373.680000px;}
.x24_c00128{left:397.453680px;}
.x25_c00128{left:422.254388px;}
.x1a_c00128{left:426.324000px;}
.x7_c00128{left:428.566500px;}
.x11_c00128{left:431.730000px;}
.x1f_c00128{left:443.301794px;}
.x12_c00128{left:457.650000px;}
.x26_c00128{left:471.000675px;}
.x4_c00128{left:484.920000px;}
.x13_c00128{left:494.100000px;}
.x8_c00128{left:535.992000px;}
.x1b_c00128{left:541.504500px;}
.x14_c00128{left:553.230000px;}
.x27_c00128{left:599.342978px;}
.x5_c00128{left:606.420000px;}
.x15_c00128{left:644.760000px;}
.x16_c00128{left:692.820000px;}
.x28_c00128{left:696.458976px;}
.x1c_c00128{left:715.089000px;}
.x9_c00128{left:719.800500px;}
.x1_c00128{left:733.590000px;}
.x1d_c00128{left:902.851500px;}
.x20_c00128{left:927.401978px;}
.x2e_c00128{left:934.200000px;}
.x30_c00128{left:935.820000px;}
.x2f_c00128{left:937.170000px;}
@media print{
.v0_c00128{vertical-align:0.000000pt;}
.ls0_c00128{letter-spacing:0.000000pt;}
.ws0_c00128{word-spacing:0.000000pt;}
.fs7_c00128{font-size:16.000000pt;}
.fs8_c00128{font-size:21.333333pt;}
.fs3_c00128{font-size:37.333333pt;}
.fs9_c00128{font-size:42.666667pt;}
.fs0_c00128{font-size:48.000000pt;}
.fs6_c00128{font-size:80.011559pt;}
.fs5_c00128{font-size:101.347975pt;}
.fs2_c00128{font-size:144.000000pt;}
.fs4_c00128{font-size:170.691326pt;}
.fs1_c00128{font-size:208.000000pt;}
.y0_c00128{bottom:0.000000pt;}
.y23_c00128{bottom:52.800000pt;}
.y22_c00128{bottom:57.360000pt;}
.y20_c00128{bottom:83.520000pt;}
.y21_c00128{bottom:115.440000pt;}
.y1f_c00128{bottom:179.280000pt;}
.y1d_c00128{bottom:186.000000pt;}
.y1e_c00128{bottom:207.840000pt;}
.y1c_c00128{bottom:255.600000pt;}
.y1b_c00128{bottom:420.849509pt;}
.y1a_c00128{bottom:421.454124pt;}
.y19_c00128{bottom:422.253189pt;}
.y18_c00128{bottom:422.556341pt;}
.y17_c00128{bottom:422.711044pt;}
.y16_c00128{bottom:423.458527pt;}
.y15_c00128{bottom:424.396341pt;}
.y14_c00128{bottom:424.789021pt;}
.y13_c00128{bottom:469.845535pt;}
.y12_c00128{bottom:475.869787pt;}
.y11_c00128{bottom:477.378292pt;}
.y10_c00128{bottom:479.504932pt;}
.yf_c00128{bottom:482.613435pt;}
.ye_c00128{bottom:485.450735pt;}
.yd_c00128{bottom:488.073789pt;}
.yc_c00128{bottom:489.814295pt;}
.yb_c00128{bottom:492.140257pt;}
.ya_c00128{bottom:493.976688pt;}
.y9_c00128{bottom:495.605333pt;}
.y7_c00128{bottom:516.802667pt;}
.y6_c00128{bottom:518.436000pt;}
.y5_c00128{bottom:519.390667pt;}
.y4_c00128{bottom:521.362667pt;}
.y3_c00128{bottom:523.202667pt;}
.y2_c00128{bottom:553.200000pt;}
.y1_c00128{bottom:611.257333pt;}
.y8_c00128{bottom:611.520000pt;}
.h9_c00128{height:16.000000pt;}
.ha_c00128{height:21.333333pt;}
.h5_c00128{height:37.333333pt;}
.hb_c00128{height:42.666667pt;}
.h2_c00128{height:48.000000pt;}
.h8_c00128{height:80.011559pt;}
.h7_c00128{height:101.347975pt;}
.h4_c00128{height:144.000000pt;}
.h6_c00128{height:170.691326pt;}
.h3_c00128{height:208.000000pt;}
.h0_c00128{height:620.640000pt;}
.h1_c00128{height:620.666667pt;}
.w1_c00128{width:840.666667pt;}
.w0_c00128{width:840.933333pt;}
.x0_c00128{left:0.000000pt;}
.x2b_c00128{left:2.880000pt;}
.x2a_c00128{left:6.720000pt;}
.x29_c00128{left:8.640000pt;}
.x2c_c00128{left:16.560000pt;}
.x2d_c00128{left:22.800000pt;}
.x17_c00128{left:38.305333pt;}
.x21_c00128{left:56.576416pt;}
.x22_c00128{left:112.625936pt;}
.xa_c00128{left:119.760000pt;}
.x18_c00128{left:134.108000pt;}
.x2_c00128{left:145.200000pt;}
.xb_c00128{left:178.080000pt;}
.x6_c00128{left:183.778667pt;}
.xc_c00128{left:186.000000pt;}
.xd_c00128{left:236.880000pt;}
.x19_c00128{left:242.133333pt;}
.x23_c00128{left:246.559360pt;}
.xe_c00128{left:263.760000pt;}
.x1e_c00128{left:286.324553pt;}
.xf_c00128{left:292.800000pt;}
.x3_c00128{left:312.000000pt;}
.x10_c00128{left:332.160000pt;}
.x24_c00128{left:353.292160pt;}
.x25_c00128{left:375.337233pt;}
.x1a_c00128{left:378.954667pt;}
.x7_c00128{left:380.948000pt;}
.x11_c00128{left:383.760000pt;}
.x1f_c00128{left:394.046039pt;}
.x12_c00128{left:406.800000pt;}
.x26_c00128{left:418.667267pt;}
.x4_c00128{left:431.040000pt;}
.x13_c00128{left:439.200000pt;}
.x8_c00128{left:476.437333pt;}
.x1b_c00128{left:481.337333pt;}
.x14_c00128{left:491.760000pt;}
.x27_c00128{left:532.749313pt;}
.x5_c00128{left:539.040000pt;}
.x15_c00128{left:573.120000pt;}
.x16_c00128{left:615.840000pt;}
.x28_c00128{left:619.074645pt;}
.x1c_c00128{left:635.634667pt;}
.x9_c00128{left:639.822667pt;}
.x1_c00128{left:652.080000pt;}
.x1d_c00128{left:802.534667pt;}
.x20_c00128{left:824.357313pt;}
.x2e_c00128{left:830.400000pt;}
.x30_c00128{left:831.840000pt;}
.x2f_c00128{left:833.040000pt;}
}





/* 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_c00129 {
    display:none;
  }
  .loading-indicator_c00129.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00129 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_c00129 { 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_c00129" -> "#page-container .classname_c00129")
 */
.pf_c00129 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00129 { /* 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_c00129.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00129 { /* 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_c00129 { /* 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_c00129 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00129 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00129 {overflow:visible;}
  }
}
.c_c00129 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00129 { /* 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_c00129:after { /* webkit #35443 */
  content: '';
}
.t_c00129:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00129 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 */
}
.__c00129 { /* 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_c00129 { /* info for Javascript */
  display:none;
}
.l_c00129 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00129 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00129 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00129: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_c00129 {
    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_c00129.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00129.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_c00129 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00129{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00129;src:url('chunks/assets/font_fe3cd3c6b9706b260f6e1774.woff2')format("woff");}.ff1_c00129{font-family:ff1_c00129;line-height:1.000000;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;}
.m4_c00129{transform:matrix(0.298024,0.003576,-0.003000,0.249982,0,0);-ms-transform:matrix(0.298024,0.003576,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.298024,0.003576,-0.003000,0.249982,0,0);}
.m2_c00129{transform:matrix(0.354234,0.004251,-0.003000,0.249982,0,0);-ms-transform:matrix(0.354234,0.004251,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.354234,0.004251,-0.003000,0.249982,0,0);}
.m1_c00129{transform:matrix(0.368823,0.004426,-0.003000,0.249982,0,0);-ms-transform:matrix(0.368823,0.004426,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.368823,0.004426,-0.003000,0.249982,0,0);}
.m6_c00129{transform:matrix(0.432634,0.005192,-0.003000,0.249982,0,0);-ms-transform:matrix(0.432634,0.005192,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.432634,0.005192,-0.003000,0.249982,0,0);}
.m3_c00129{transform:matrix(0.461157,0.005534,-0.003000,0.249982,0,0);-ms-transform:matrix(0.461157,0.005534,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.461157,0.005534,-0.003000,0.249982,0,0);}
.m8_c00129{transform:matrix(0.805702,0.009668,-0.003000,0.249982,0,0);-ms-transform:matrix(0.805702,0.009668,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.805702,0.009668,-0.003000,0.249982,0,0);}
.m9_c00129{transform:matrix(0.867728,0.010413,-0.003000,0.249982,0,0);-ms-transform:matrix(0.867728,0.010413,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.867728,0.010413,-0.003000,0.249982,0,0);}
.m5_c00129{transform:matrix(0.875892,0.010511,-0.003000,0.249982,0,0);-ms-transform:matrix(0.875892,0.010511,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.875892,0.010511,-0.003000,0.249982,0,0);}
.m0_c00129{transform:matrix(0.970510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.970510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.970510,0.000000,0.000000,0.250000,0,0);}
.ma_c00129{transform:matrix(1.014147,0.012170,-0.003000,0.249982,0,0);-ms-transform:matrix(1.014147,0.012170,-0.003000,0.249982,0,0);-webkit-transform:matrix(1.014147,0.012170,-0.003000,0.249982,0,0);}
.m7_c00129{transform:matrix(1.416943,0.017003,-0.003000,0.249982,0,0);-ms-transform:matrix(1.416943,0.017003,-0.003000,0.249982,0,0);-webkit-transform:matrix(1.416943,0.017003,-0.003000,0.249982,0,0);}
.v0_c00129{vertical-align:0.000000px;}
.ls0_c00129{letter-spacing:0.000000px;}
.sc__c00129{text-shadow:none;}
.sc0_c00129{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__c00129{-webkit-text-stroke:0px transparent;}
.sc0_c00129{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00129{word-spacing:0.000000px;}
.fc0_c00129{color:transparent;}
.fs2_c00129{font-size:54.003888px;}
.fs0_c00129{font-size:132.000000px;}
.fs1_c00129{font-size:234.016847px;}
.y0_c00129{bottom:0.000000px;}
.y1_c00129{bottom:46.095000px;}
.y8_c00129{bottom:48.781332px;}
.ya_c00129{bottom:48.781476px;}
.y6_c00129{bottom:48.781584px;}
.y9_c00129{bottom:48.781692px;}
.yb_c00129{bottom:48.781884px;}
.y7_c00129{bottom:48.781896px;}
.y5_c00129{bottom:60.008538px;}
.y4_c00129{bottom:61.482198px;}
.y3_c00129{bottom:62.581602px;}
.y2_c00129{bottom:64.564500px;}
.h4_c00129{height:54.003888px;}
.h2_c00129{height:132.000000px;}
.h3_c00129{height:234.016847px;}
.h0_c00129{height:698.220000px;}
.h1_c00129{height:698.250000px;}
.w1_c00129{width:945.750000px;}
.w0_c00129{width:946.050000px;}
.x0_c00129{left:0.000000px;}
.x5_c00129{left:215.728602px;}
.x1_c00129{left:233.302500px;}
.x6_c00129{left:289.713258px;}
.x7_c00129{left:334.266666px;}
.x2_c00129{left:398.544000px;}
.x3_c00129{left:490.161000px;}
.x8_c00129{left:534.890556px;}
.x4_c00129{left:612.966000px;}
.x9_c00129{left:707.433396px;}
.xa_c00129{left:830.292090px;}
@media print{
.v0_c00129{vertical-align:0.000000pt;}
.ls0_c00129{letter-spacing:0.000000pt;}
.ws0_c00129{word-spacing:0.000000pt;}
.fs2_c00129{font-size:48.003456pt;}
.fs0_c00129{font-size:117.333333pt;}
.fs1_c00129{font-size:208.014975pt;}
.y0_c00129{bottom:0.000000pt;}
.y1_c00129{bottom:40.973333pt;}
.y8_c00129{bottom:43.361184pt;}
.ya_c00129{bottom:43.361312pt;}
.y6_c00129{bottom:43.361408pt;}
.y9_c00129{bottom:43.361504pt;}
.yb_c00129{bottom:43.361675pt;}
.y7_c00129{bottom:43.361685pt;}
.y5_c00129{bottom:53.340923pt;}
.y4_c00129{bottom:54.650843pt;}
.y3_c00129{bottom:55.628091pt;}
.y2_c00129{bottom:57.390667pt;}
.h4_c00129{height:48.003456pt;}
.h2_c00129{height:117.333333pt;}
.h3_c00129{height:208.014975pt;}
.h0_c00129{height:620.640000pt;}
.h1_c00129{height:620.666667pt;}
.w1_c00129{width:840.666667pt;}
.w0_c00129{width:840.933333pt;}
.x0_c00129{left:0.000000pt;}
.x5_c00129{left:191.758757pt;}
.x1_c00129{left:207.380000pt;}
.x6_c00129{left:257.522896pt;}
.x7_c00129{left:297.125925pt;}
.x2_c00129{left:354.261333pt;}
.x3_c00129{left:435.698667pt;}
.x8_c00129{left:475.458272pt;}
.x4_c00129{left:544.858667pt;}
.x9_c00129{left:628.829685pt;}
.xa_c00129{left:738.037413pt;}
}





/* 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_c00130 {
    display:none;
  }
  .loading-indicator_c00130.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00130 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_c00130 { 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_c00130" -> "#page-container .classname_c00130")
 */
.pf_c00130 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00130 { /* 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_c00130.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00130 { /* 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_c00130 { /* 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_c00130 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00130 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00130 {overflow:visible;}
  }
}
.c_c00130 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00130 { /* 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_c00130:after { /* webkit #35443 */
  content: '';
}
.t_c00130:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00130 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 */
}
.__c00130 { /* 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_c00130 { /* info for Javascript */
  display:none;
}
.l_c00130 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00130 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00130 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00130: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_c00130 {
    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_c00130.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00130.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_c00130 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00130{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00130;src:url('chunks/assets/font_cfe63ee56e9e10a97d33a3db.woff2')format("woff");}.ff1_c00130{font-family:ff1_c00130;line-height:1.000000;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;}
.mec_c00130{transform:matrix(0.006290,0.000038,-0.001500,0.249996,0,0);-ms-transform:matrix(0.006290,0.000038,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.006290,0.000038,-0.001500,0.249996,0,0);}
.me5_c00130{transform:matrix(0.006760,0.000041,-0.001500,0.249996,0,0);-ms-transform:matrix(0.006760,0.000041,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.006760,0.000041,-0.001500,0.249996,0,0);}
.me6_c00130{transform:matrix(0.007955,0.000048,-0.001500,0.249996,0,0);-ms-transform:matrix(0.007955,0.000048,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.007955,0.000048,-0.001500,0.249996,0,0);}
.meb_c00130{transform:matrix(0.009375,0.000056,-0.001500,0.249996,0,0);-ms-transform:matrix(0.009375,0.000056,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.009375,0.000056,-0.001500,0.249996,0,0);}
.med_c00130{transform:matrix(0.010935,0.000066,-0.001500,0.249996,0,0);-ms-transform:matrix(0.010935,0.000066,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.010935,0.000066,-0.001500,0.249996,0,0);}
.mc0_c00130{transform:matrix(0.012480,0.000075,-0.001500,0.249996,0,0);-ms-transform:matrix(0.012480,0.000075,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.012480,0.000075,-0.001500,0.249996,0,0);}
.m12a_c00130{transform:matrix(0.013520,0.000095,-0.001750,0.249994,0,0);-ms-transform:matrix(0.013520,0.000095,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.013520,0.000095,-0.001750,0.249994,0,0);}
.m1ca_c00130{transform:matrix(0.014140,0.000113,-0.002000,0.249992,0,0);-ms-transform:matrix(0.014140,0.000113,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.014140,0.000113,-0.002000,0.249992,0,0);}
.mff_c00130{transform:matrix(0.015910,0.000111,-0.001750,0.249994,0,0);-ms-transform:matrix(0.015910,0.000111,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.015910,0.000111,-0.001750,0.249994,0,0);}
.m166_c00130{transform:matrix(0.015910,0.000095,-0.001500,0.249996,0,0);-ms-transform:matrix(0.015910,0.000095,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.015910,0.000095,-0.001500,0.249996,0,0);}
.m5d_c00130{transform:matrix(0.019090,0.000115,-0.001500,0.249996,0,0);-ms-transform:matrix(0.019090,0.000115,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.019090,0.000115,-0.001500,0.249996,0,0);}
.m1f_c00130{transform:matrix(0.035354,0.000212,-0.001500,0.249996,0,0);-ms-transform:matrix(0.035354,0.000212,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.035354,0.000212,-0.001500,0.249996,0,0);}
.me8_c00130{transform:matrix(0.046384,0.000278,-0.001500,0.249996,0,0);-ms-transform:matrix(0.046384,0.000278,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.046384,0.000278,-0.001500,0.249996,0,0);}
.m1d_c00130{transform:matrix(0.059294,0.000356,-0.001500,0.249996,0,0);-ms-transform:matrix(0.059294,0.000356,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.059294,0.000356,-0.001500,0.249996,0,0);}
.m9c_c00130{transform:matrix(0.061044,0.000366,-0.001500,0.249996,0,0);-ms-transform:matrix(0.061044,0.000366,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.061044,0.000366,-0.001500,0.249996,0,0);}
.me9_c00130{transform:matrix(0.069179,0.000415,-0.001500,0.249996,0,0);-ms-transform:matrix(0.069179,0.000415,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.069179,0.000415,-0.001500,0.249996,0,0);}
.mbf_c00130{transform:matrix(0.074884,0.000449,-0.001500,0.249996,0,0);-ms-transform:matrix(0.074884,0.000449,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.074884,0.000449,-0.001500,0.249996,0,0);}
.m8e_c00130{transform:matrix(0.077309,0.000464,-0.001500,0.249996,0,0);-ms-transform:matrix(0.077309,0.000464,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.077309,0.000464,-0.001500,0.249996,0,0);}
.m114_c00130{transform:matrix(0.081373,0.000570,-0.001750,0.249994,0,0);-ms-transform:matrix(0.081373,0.000570,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.081373,0.000570,-0.001750,0.249994,0,0);}
.m92_c00130{transform:matrix(0.087543,0.000525,-0.001500,0.249996,0,0);-ms-transform:matrix(0.087543,0.000525,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.087543,0.000525,-0.001500,0.249996,0,0);}
.mac_c00130{transform:matrix(0.098653,0.000592,-0.001500,0.249996,0,0);-ms-transform:matrix(0.098653,0.000592,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.098653,0.000592,-0.001500,0.249996,0,0);}
.m168_c00130{transform:matrix(0.101978,0.000612,-0.001500,0.249996,0,0);-ms-transform:matrix(0.101978,0.000612,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.101978,0.000612,-0.001500,0.249996,0,0);}
.m112_c00130{transform:matrix(0.109007,0.000763,-0.001750,0.249994,0,0);-ms-transform:matrix(0.109007,0.000763,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.109007,0.000763,-0.001750,0.249994,0,0);}
.mcc_c00130{transform:matrix(0.111413,0.000668,-0.001500,0.249996,0,0);-ms-transform:matrix(0.111413,0.000668,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.111413,0.000668,-0.001500,0.249996,0,0);}
.m1df_c00130{transform:matrix(0.128160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128160,0.000000,0.000000,0.250000,0,0);}
.mc3_c00130{transform:matrix(0.130198,0.000781,-0.001500,0.249996,0,0);-ms-transform:matrix(0.130198,0.000781,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.130198,0.000781,-0.001500,0.249996,0,0);}
.m117_c00130{transform:matrix(0.134162,0.000939,-0.001750,0.249994,0,0);-ms-transform:matrix(0.134162,0.000939,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.134162,0.000939,-0.001750,0.249994,0,0);}
.m113_c00130{transform:matrix(0.136012,0.000952,-0.001750,0.249994,0,0);-ms-transform:matrix(0.136012,0.000952,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.136012,0.000952,-0.001750,0.249994,0,0);}
.m1f3_c00130{transform:matrix(0.136471,0.001092,-0.002000,0.249992,0,0);-ms-transform:matrix(0.136471,0.001092,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.136471,0.001092,-0.002000,0.249992,0,0);}
.m6_c00130{transform:matrix(0.145120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145120,0.000000,0.000000,0.250000,0,0);}
.m35_c00130{transform:matrix(0.145917,0.000876,-0.001500,0.249996,0,0);-ms-transform:matrix(0.145917,0.000876,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.145917,0.000876,-0.001500,0.249996,0,0);}
.m38_c00130{transform:matrix(0.146677,0.000880,-0.001500,0.249996,0,0);-ms-transform:matrix(0.146677,0.000880,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.146677,0.000880,-0.001500,0.249996,0,0);}
.m21_c00130{transform:matrix(0.146732,0.000880,-0.001500,0.249996,0,0);-ms-transform:matrix(0.146732,0.000880,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.146732,0.000880,-0.001500,0.249996,0,0);}
.m22_c00130{transform:matrix(0.147347,0.000884,-0.001500,0.249996,0,0);-ms-transform:matrix(0.147347,0.000884,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.147347,0.000884,-0.001500,0.249996,0,0);}
.m73_c00130{transform:matrix(0.150017,0.000900,-0.001500,0.249996,0,0);-ms-transform:matrix(0.150017,0.000900,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.150017,0.000900,-0.001500,0.249996,0,0);}
.mc5_c00130{transform:matrix(0.150287,0.000902,-0.001500,0.249996,0,0);-ms-transform:matrix(0.150287,0.000902,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.150287,0.000902,-0.001500,0.249996,0,0);}
.m3b_c00130{transform:matrix(0.151802,0.000911,-0.001500,0.249996,0,0);-ms-transform:matrix(0.151802,0.000911,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.151802,0.000911,-0.001500,0.249996,0,0);}
.mee_c00130{transform:matrix(0.152917,0.000918,-0.001500,0.249996,0,0);-ms-transform:matrix(0.152917,0.000918,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.152917,0.000918,-0.001500,0.249996,0,0);}
.m124_c00130{transform:matrix(0.153221,0.001073,-0.001750,0.249994,0,0);-ms-transform:matrix(0.153221,0.001073,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.153221,0.001073,-0.001750,0.249994,0,0);}
.mb8_c00130{transform:matrix(0.157122,0.000943,-0.001500,0.249996,0,0);-ms-transform:matrix(0.157122,0.000943,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.157122,0.000943,-0.001500,0.249996,0,0);}
.mc6_c00130{transform:matrix(0.159452,0.000957,-0.001500,0.249996,0,0);-ms-transform:matrix(0.159452,0.000957,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.159452,0.000957,-0.001500,0.249996,0,0);}
.m127_c00130{transform:matrix(0.165056,0.001155,-0.001750,0.249994,0,0);-ms-transform:matrix(0.165056,0.001155,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.165056,0.001155,-0.001750,0.249994,0,0);}
.m28_c00130{transform:matrix(0.166632,0.001000,-0.001500,0.249996,0,0);-ms-transform:matrix(0.166632,0.001000,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.166632,0.001000,-0.001500,0.249996,0,0);}
.m3_c00130{transform:matrix(0.167120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167120,0.000000,0.000000,0.250000,0,0);}
.m1a8_c00130{transform:matrix(0.167240,0.001338,-0.002000,0.249992,0,0);-ms-transform:matrix(0.167240,0.001338,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.167240,0.001338,-0.002000,0.249992,0,0);}
.m47_c00130{transform:matrix(0.167787,0.001007,-0.001500,0.249996,0,0);-ms-transform:matrix(0.167787,0.001007,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.167787,0.001007,-0.001500,0.249996,0,0);}
.m94_c00130{transform:matrix(0.167837,0.001007,-0.001500,0.249996,0,0);-ms-transform:matrix(0.167837,0.001007,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.167837,0.001007,-0.001500,0.249996,0,0);}
.m7c_c00130{transform:matrix(0.168287,0.001010,-0.001500,0.249996,0,0);-ms-transform:matrix(0.168287,0.001010,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.168287,0.001010,-0.001500,0.249996,0,0);}
.md9_c00130{transform:matrix(0.168537,0.001011,-0.001500,0.249996,0,0);-ms-transform:matrix(0.168537,0.001011,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.168537,0.001011,-0.001500,0.249996,0,0);}
.m11b_c00130{transform:matrix(0.169766,0.001188,-0.001750,0.249994,0,0);-ms-transform:matrix(0.169766,0.001188,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.169766,0.001188,-0.001750,0.249994,0,0);}
.m2f_c00130{transform:matrix(0.169877,0.001019,-0.001500,0.249996,0,0);-ms-transform:matrix(0.169877,0.001019,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.169877,0.001019,-0.001500,0.249996,0,0);}
.m54_c00130{transform:matrix(0.170237,0.001021,-0.001500,0.249996,0,0);-ms-transform:matrix(0.170237,0.001021,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.170237,0.001021,-0.001500,0.249996,0,0);}
.mc8_c00130{transform:matrix(0.170347,0.001022,-0.001500,0.249996,0,0);-ms-transform:matrix(0.170347,0.001022,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.170347,0.001022,-0.001500,0.249996,0,0);}
.mb4_c00130{transform:matrix(0.171642,0.001030,-0.001500,0.249996,0,0);-ms-transform:matrix(0.171642,0.001030,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.171642,0.001030,-0.001500,0.249996,0,0);}
.mc2_c00130{transform:matrix(0.171647,0.001030,-0.001500,0.249996,0,0);-ms-transform:matrix(0.171647,0.001030,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.171647,0.001030,-0.001500,0.249996,0,0);}
.me1_c00130{transform:matrix(0.172207,0.001033,-0.001500,0.249996,0,0);-ms-transform:matrix(0.172207,0.001033,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.172207,0.001033,-0.001500,0.249996,0,0);}
.mca_c00130{transform:matrix(0.172222,0.001033,-0.001500,0.249996,0,0);-ms-transform:matrix(0.172222,0.001033,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.172222,0.001033,-0.001500,0.249996,0,0);}
.m69_c00130{transform:matrix(0.172242,0.001033,-0.001500,0.249996,0,0);-ms-transform:matrix(0.172242,0.001033,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.172242,0.001033,-0.001500,0.249996,0,0);}
.m16d_c00130{transform:matrix(0.172462,0.001035,-0.001500,0.249996,0,0);-ms-transform:matrix(0.172462,0.001035,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.172462,0.001035,-0.001500,0.249996,0,0);}
.m172_c00130{transform:matrix(0.172622,0.001036,-0.001500,0.249996,0,0);-ms-transform:matrix(0.172622,0.001036,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.172622,0.001036,-0.001500,0.249996,0,0);}
.ma3_c00130{transform:matrix(0.173352,0.001040,-0.001500,0.249996,0,0);-ms-transform:matrix(0.173352,0.001040,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.173352,0.001040,-0.001500,0.249996,0,0);}
.m129_c00130{transform:matrix(0.173766,0.001216,-0.001750,0.249994,0,0);-ms-transform:matrix(0.173766,0.001216,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.173766,0.001216,-0.001750,0.249994,0,0);}
.m177_c00130{transform:matrix(0.174587,0.001048,-0.001500,0.249996,0,0);-ms-transform:matrix(0.174587,0.001048,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.174587,0.001048,-0.001500,0.249996,0,0);}
.m86_c00130{transform:matrix(0.174772,0.001049,-0.001500,0.249996,0,0);-ms-transform:matrix(0.174772,0.001049,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.174772,0.001049,-0.001500,0.249996,0,0);}
.m17e_c00130{transform:matrix(0.174804,0.001398,-0.002000,0.249992,0,0);-ms-transform:matrix(0.174804,0.001398,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.174804,0.001398,-0.002000,0.249992,0,0);}
.m1da_c00130{transform:matrix(0.174924,0.001399,-0.002000,0.249992,0,0);-ms-transform:matrix(0.174924,0.001399,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.174924,0.001399,-0.002000,0.249992,0,0);}
.m40_c00130{transform:matrix(0.175202,0.001051,-0.001500,0.249996,0,0);-ms-transform:matrix(0.175202,0.001051,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.175202,0.001051,-0.001500,0.249996,0,0);}
.m1f0_c00130{transform:matrix(0.175649,0.001405,-0.002000,0.249992,0,0);-ms-transform:matrix(0.175649,0.001405,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.175649,0.001405,-0.002000,0.249992,0,0);}
.m79_c00130{transform:matrix(0.175727,0.001054,-0.001500,0.249996,0,0);-ms-transform:matrix(0.175727,0.001054,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.175727,0.001054,-0.001500,0.249996,0,0);}
.me_c00130{transform:matrix(0.175745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175745,0.000000,0.000000,0.250000,0,0);}
.mdf_c00130{transform:matrix(0.176087,0.001057,-0.001500,0.249996,0,0);-ms-transform:matrix(0.176087,0.001057,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.176087,0.001057,-0.001500,0.249996,0,0);}
.mc4_c00130{transform:matrix(0.176497,0.001059,-0.001500,0.249996,0,0);-ms-transform:matrix(0.176497,0.001059,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.176497,0.001059,-0.001500,0.249996,0,0);}
.mde_c00130{transform:matrix(0.176627,0.001060,-0.001500,0.249996,0,0);-ms-transform:matrix(0.176627,0.001060,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.176627,0.001060,-0.001500,0.249996,0,0);}
.m11d_c00130{transform:matrix(0.176696,0.001237,-0.001750,0.249994,0,0);-ms-transform:matrix(0.176696,0.001237,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.176696,0.001237,-0.001750,0.249994,0,0);}
.mc9_c00130{transform:matrix(0.177172,0.001063,-0.001500,0.249996,0,0);-ms-transform:matrix(0.177172,0.001063,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.177172,0.001063,-0.001500,0.249996,0,0);}
.m42_c00130{transform:matrix(0.177857,0.001067,-0.001500,0.249996,0,0);-ms-transform:matrix(0.177857,0.001067,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.177857,0.001067,-0.001500,0.249996,0,0);}
.m95_c00130{transform:matrix(0.178517,0.001071,-0.001500,0.249996,0,0);-ms-transform:matrix(0.178517,0.001071,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.178517,0.001071,-0.001500,0.249996,0,0);}
.m20_c00130{transform:matrix(0.178922,0.001074,-0.001500,0.249996,0,0);-ms-transform:matrix(0.178922,0.001074,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.178922,0.001074,-0.001500,0.249996,0,0);}
.m104_c00130{transform:matrix(0.179026,0.001253,-0.001750,0.249994,0,0);-ms-transform:matrix(0.179026,0.001253,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.179026,0.001253,-0.001750,0.249994,0,0);}
.m138_c00130{transform:matrix(0.180386,0.001263,-0.001750,0.249994,0,0);-ms-transform:matrix(0.180386,0.001263,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.180386,0.001263,-0.001750,0.249994,0,0);}
.m126_c00130{transform:matrix(0.180936,0.001267,-0.001750,0.249994,0,0);-ms-transform:matrix(0.180936,0.001267,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.180936,0.001267,-0.001750,0.249994,0,0);}
.m11e_c00130{transform:matrix(0.181961,0.001274,-0.001750,0.249994,0,0);-ms-transform:matrix(0.181961,0.001274,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.181961,0.001274,-0.001750,0.249994,0,0);}
.mba_c00130{transform:matrix(0.182132,0.001093,-0.001500,0.249996,0,0);-ms-transform:matrix(0.182132,0.001093,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.182132,0.001093,-0.001500,0.249996,0,0);}
.ma5_c00130{transform:matrix(0.183097,0.001099,-0.001500,0.249996,0,0);-ms-transform:matrix(0.183097,0.001099,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.183097,0.001099,-0.001500,0.249996,0,0);}
.m190_c00130{transform:matrix(0.183284,0.001466,-0.002000,0.249992,0,0);-ms-transform:matrix(0.183284,0.001466,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.183284,0.001466,-0.002000,0.249992,0,0);}
.m165_c00130{transform:matrix(0.183587,0.001102,-0.001500,0.249996,0,0);-ms-transform:matrix(0.183587,0.001102,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.183587,0.001102,-0.001500,0.249996,0,0);}
.m96_c00130{transform:matrix(0.184092,0.001105,-0.001500,0.249996,0,0);-ms-transform:matrix(0.184092,0.001105,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.184092,0.001105,-0.001500,0.249996,0,0);}
.m98_c00130{transform:matrix(0.184542,0.001107,-0.001500,0.249996,0,0);-ms-transform:matrix(0.184542,0.001107,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.184542,0.001107,-0.001500,0.249996,0,0);}
.m93_c00130{transform:matrix(0.184992,0.001110,-0.001500,0.249996,0,0);-ms-transform:matrix(0.184992,0.001110,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.184992,0.001110,-0.001500,0.249996,0,0);}
.m135_c00130{transform:matrix(0.185230,0.001297,-0.001750,0.249994,0,0);-ms-transform:matrix(0.185230,0.001297,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.185230,0.001297,-0.001750,0.249994,0,0);}
.m19_c00130{transform:matrix(0.185232,0.001111,-0.001500,0.249996,0,0);-ms-transform:matrix(0.185232,0.001111,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.185232,0.001111,-0.001500,0.249996,0,0);}
.mae_c00130{transform:matrix(0.185262,0.001112,-0.001500,0.249996,0,0);-ms-transform:matrix(0.185262,0.001112,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.185262,0.001112,-0.001500,0.249996,0,0);}
.m152_c00130{transform:matrix(0.185612,0.001114,-0.001500,0.249996,0,0);-ms-transform:matrix(0.185612,0.001114,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.185612,0.001114,-0.001500,0.249996,0,0);}
.ma1_c00130{transform:matrix(0.186512,0.001119,-0.001500,0.249996,0,0);-ms-transform:matrix(0.186512,0.001119,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.186512,0.001119,-0.001500,0.249996,0,0);}
.m19f_c00130{transform:matrix(0.186514,0.001492,-0.002000,0.249992,0,0);-ms-transform:matrix(0.186514,0.001492,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.186514,0.001492,-0.002000,0.249992,0,0);}
.m1b_c00130{transform:matrix(0.186567,0.001119,-0.001500,0.249996,0,0);-ms-transform:matrix(0.186567,0.001119,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.186567,0.001119,-0.001500,0.249996,0,0);}
.m31_c00130{transform:matrix(0.186752,0.001121,-0.001500,0.249996,0,0);-ms-transform:matrix(0.186752,0.001121,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.186752,0.001121,-0.001500,0.249996,0,0);}
.m171_c00130{transform:matrix(0.186762,0.001121,-0.001500,0.249996,0,0);-ms-transform:matrix(0.186762,0.001121,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.186762,0.001121,-0.001500,0.249996,0,0);}
.m1e3_c00130{transform:matrix(0.187314,0.001499,-0.002000,0.249992,0,0);-ms-transform:matrix(0.187314,0.001499,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.187314,0.001499,-0.002000,0.249992,0,0);}
.mbb_c00130{transform:matrix(0.187577,0.001125,-0.001500,0.249996,0,0);-ms-transform:matrix(0.187577,0.001125,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.187577,0.001125,-0.001500,0.249996,0,0);}
.m5_c00130{transform:matrix(0.187865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187865,0.000000,0.000000,0.250000,0,0);}
.m1c9_c00130{transform:matrix(0.188104,0.001505,-0.002000,0.249992,0,0);-ms-transform:matrix(0.188104,0.001505,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.188104,0.001505,-0.002000,0.249992,0,0);}
.m185_c00130{transform:matrix(0.188279,0.001506,-0.002000,0.249992,0,0);-ms-transform:matrix(0.188279,0.001506,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.188279,0.001506,-0.002000,0.249992,0,0);}
.m139_c00130{transform:matrix(0.188430,0.001319,-0.001750,0.249994,0,0);-ms-transform:matrix(0.188430,0.001319,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.188430,0.001319,-0.001750,0.249994,0,0);}
.m8f_c00130{transform:matrix(0.188432,0.001131,-0.001500,0.249996,0,0);-ms-transform:matrix(0.188432,0.001131,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.188432,0.001131,-0.001500,0.249996,0,0);}
.m14b_c00130{transform:matrix(0.188730,0.001321,-0.001750,0.249994,0,0);-ms-transform:matrix(0.188730,0.001321,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.188730,0.001321,-0.001750,0.249994,0,0);}
.m3c_c00130{transform:matrix(0.188732,0.001132,-0.001500,0.249996,0,0);-ms-transform:matrix(0.188732,0.001132,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.188732,0.001132,-0.001500,0.249996,0,0);}
.m5a_c00130{transform:matrix(0.188902,0.001133,-0.001500,0.249996,0,0);-ms-transform:matrix(0.188902,0.001133,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.188902,0.001133,-0.001500,0.249996,0,0);}
.m9b_c00130{transform:matrix(0.188972,0.001134,-0.001500,0.249996,0,0);-ms-transform:matrix(0.188972,0.001134,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.188972,0.001134,-0.001500,0.249996,0,0);}
.m14d_c00130{transform:matrix(0.189750,0.001328,-0.001750,0.249994,0,0);-ms-transform:matrix(0.189750,0.001328,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.189750,0.001328,-0.001750,0.249994,0,0);}
.m34_c00130{transform:matrix(0.189752,0.001139,-0.001500,0.249996,0,0);-ms-transform:matrix(0.189752,0.001139,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.189752,0.001139,-0.001500,0.249996,0,0);}
.m3f_c00130{transform:matrix(0.189782,0.001139,-0.001500,0.249996,0,0);-ms-transform:matrix(0.189782,0.001139,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.189782,0.001139,-0.001500,0.249996,0,0);}
.m119_c00130{transform:matrix(0.190100,0.001331,-0.001750,0.249994,0,0);-ms-transform:matrix(0.190100,0.001331,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.190100,0.001331,-0.001750,0.249994,0,0);}
.m12d_c00130{transform:matrix(0.190130,0.001331,-0.001750,0.249994,0,0);-ms-transform:matrix(0.190130,0.001331,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.190130,0.001331,-0.001750,0.249994,0,0);}
.m49_c00130{transform:matrix(0.190827,0.001145,-0.001500,0.249996,0,0);-ms-transform:matrix(0.190827,0.001145,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.190827,0.001145,-0.001500,0.249996,0,0);}
.m180_c00130{transform:matrix(0.191079,0.001529,-0.002000,0.249992,0,0);-ms-transform:matrix(0.191079,0.001529,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.191079,0.001529,-0.002000,0.249992,0,0);}
.m70_c00130{transform:matrix(0.191102,0.001147,-0.001500,0.249996,0,0);-ms-transform:matrix(0.191102,0.001147,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.191102,0.001147,-0.001500,0.249996,0,0);}
.ma8_c00130{transform:matrix(0.191107,0.001147,-0.001500,0.249996,0,0);-ms-transform:matrix(0.191107,0.001147,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.191107,0.001147,-0.001500,0.249996,0,0);}
.m16f_c00130{transform:matrix(0.191192,0.001147,-0.001500,0.249996,0,0);-ms-transform:matrix(0.191192,0.001147,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.191192,0.001147,-0.001500,0.249996,0,0);}
.mfd_c00130{transform:matrix(0.191210,0.001338,-0.001750,0.249994,0,0);-ms-transform:matrix(0.191210,0.001338,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.191210,0.001338,-0.001750,0.249994,0,0);}
.m154_c00130{transform:matrix(0.191212,0.001147,-0.001500,0.249996,0,0);-ms-transform:matrix(0.191212,0.001147,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.191212,0.001147,-0.001500,0.249996,0,0);}
.mc1_c00130{transform:matrix(0.192087,0.001153,-0.001500,0.249996,0,0);-ms-transform:matrix(0.192087,0.001153,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.192087,0.001153,-0.001500,0.249996,0,0);}
.m1c_c00130{transform:matrix(0.192122,0.001153,-0.001500,0.249996,0,0);-ms-transform:matrix(0.192122,0.001153,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.192122,0.001153,-0.001500,0.249996,0,0);}
.m12c_c00130{transform:matrix(0.192235,0.001346,-0.001750,0.249994,0,0);-ms-transform:matrix(0.192235,0.001346,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.192235,0.001346,-0.001750,0.249994,0,0);}
.m43_c00130{transform:matrix(0.192557,0.001155,-0.001500,0.249996,0,0);-ms-transform:matrix(0.192557,0.001155,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.192557,0.001155,-0.001500,0.249996,0,0);}
.m1d2_c00130{transform:matrix(0.192664,0.001541,-0.002000,0.249992,0,0);-ms-transform:matrix(0.192664,0.001541,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.192664,0.001541,-0.002000,0.249992,0,0);}
.m122_c00130{transform:matrix(0.192895,0.001350,-0.001750,0.249994,0,0);-ms-transform:matrix(0.192895,0.001350,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.192895,0.001350,-0.001750,0.249994,0,0);}
.m1e4_c00130{transform:matrix(0.192934,0.001543,-0.002000,0.249992,0,0);-ms-transform:matrix(0.192934,0.001543,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.192934,0.001543,-0.002000,0.249992,0,0);}
.mfe_c00130{transform:matrix(0.193000,0.001351,-0.001750,0.249994,0,0);-ms-transform:matrix(0.193000,0.001351,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.193000,0.001351,-0.001750,0.249994,0,0);}
.m23_c00130{transform:matrix(0.193097,0.001159,-0.001500,0.249996,0,0);-ms-transform:matrix(0.193097,0.001159,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.193097,0.001159,-0.001500,0.249996,0,0);}
.mc7_c00130{transform:matrix(0.193447,0.001161,-0.001500,0.249996,0,0);-ms-transform:matrix(0.193447,0.001161,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.193447,0.001161,-0.001500,0.249996,0,0);}
.md8_c00130{transform:matrix(0.193577,0.001161,-0.001500,0.249996,0,0);-ms-transform:matrix(0.193577,0.001161,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.193577,0.001161,-0.001500,0.249996,0,0);}
.ma0_c00130{transform:matrix(0.193587,0.001162,-0.001500,0.249996,0,0);-ms-transform:matrix(0.193587,0.001162,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.193587,0.001162,-0.001500,0.249996,0,0);}
.m2_c00130{transform:matrix(0.193865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193865,0.000000,0.000000,0.250000,0,0);}
.m161_c00130{transform:matrix(0.193957,0.001164,-0.001500,0.249996,0,0);-ms-transform:matrix(0.193957,0.001164,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.193957,0.001164,-0.001500,0.249996,0,0);}
.me3_c00130{transform:matrix(0.194686,0.001168,-0.001500,0.249996,0,0);-ms-transform:matrix(0.194686,0.001168,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.194686,0.001168,-0.001500,0.249996,0,0);}
.m1a9_c00130{transform:matrix(0.195369,0.001563,-0.002000,0.249992,0,0);-ms-transform:matrix(0.195369,0.001563,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.195369,0.001563,-0.002000,0.249992,0,0);}
.m125_c00130{transform:matrix(0.196195,0.001373,-0.001750,0.249994,0,0);-ms-transform:matrix(0.196195,0.001373,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.196195,0.001373,-0.001750,0.249994,0,0);}
.m56_c00130{transform:matrix(0.196471,0.001179,-0.001500,0.249996,0,0);-ms-transform:matrix(0.196471,0.001179,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.196471,0.001179,-0.001500,0.249996,0,0);}
.m175_c00130{transform:matrix(0.196521,0.001179,-0.001500,0.249996,0,0);-ms-transform:matrix(0.196521,0.001179,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.196521,0.001179,-0.001500,0.249996,0,0);}
.m24_c00130{transform:matrix(0.197306,0.001184,-0.001500,0.249996,0,0);-ms-transform:matrix(0.197306,0.001184,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.197306,0.001184,-0.001500,0.249996,0,0);}
.m162_c00130{transform:matrix(0.197511,0.001185,-0.001500,0.249996,0,0);-ms-transform:matrix(0.197511,0.001185,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.197511,0.001185,-0.001500,0.249996,0,0);}
.mad_c00130{transform:matrix(0.197571,0.001185,-0.001500,0.249996,0,0);-ms-transform:matrix(0.197571,0.001185,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.197571,0.001185,-0.001500,0.249996,0,0);}
.m6b_c00130{transform:matrix(0.197586,0.001186,-0.001500,0.249996,0,0);-ms-transform:matrix(0.197586,0.001186,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.197586,0.001186,-0.001500,0.249996,0,0);}
.m45_c00130{transform:matrix(0.197731,0.001186,-0.001500,0.249996,0,0);-ms-transform:matrix(0.197731,0.001186,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.197731,0.001186,-0.001500,0.249996,0,0);}
.m1c8_c00130{transform:matrix(0.197789,0.001582,-0.002000,0.249992,0,0);-ms-transform:matrix(0.197789,0.001582,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.197789,0.001582,-0.002000,0.249992,0,0);}
.m105_c00130{transform:matrix(0.197790,0.001385,-0.001750,0.249994,0,0);-ms-transform:matrix(0.197790,0.001385,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.197790,0.001385,-0.001750,0.249994,0,0);}
.m88_c00130{transform:matrix(0.197956,0.001188,-0.001500,0.249996,0,0);-ms-transform:matrix(0.197956,0.001188,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.197956,0.001188,-0.001500,0.249996,0,0);}
.m72_c00130{transform:matrix(0.198551,0.001191,-0.001500,0.249996,0,0);-ms-transform:matrix(0.198551,0.001191,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.198551,0.001191,-0.001500,0.249996,0,0);}
.m159_c00130{transform:matrix(0.198721,0.001192,-0.001500,0.249996,0,0);-ms-transform:matrix(0.198721,0.001192,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.198721,0.001192,-0.001500,0.249996,0,0);}
.m1a4_c00130{transform:matrix(0.199029,0.001592,-0.002000,0.249992,0,0);-ms-transform:matrix(0.199029,0.001592,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.199029,0.001592,-0.002000,0.249992,0,0);}
.m142_c00130{transform:matrix(0.199125,0.001394,-0.001750,0.249994,0,0);-ms-transform:matrix(0.199125,0.001394,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.199125,0.001394,-0.001750,0.249994,0,0);}
.mb5_c00130{transform:matrix(0.199486,0.001197,-0.001500,0.249996,0,0);-ms-transform:matrix(0.199486,0.001197,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.199486,0.001197,-0.001500,0.249996,0,0);}
.m133_c00130{transform:matrix(0.199810,0.001399,-0.001750,0.249994,0,0);-ms-transform:matrix(0.199810,0.001399,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.199810,0.001399,-0.001750,0.249994,0,0);}
.m2d_c00130{transform:matrix(0.199936,0.001200,-0.001500,0.249996,0,0);-ms-transform:matrix(0.199936,0.001200,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.199936,0.001200,-0.001500,0.249996,0,0);}
.m146_c00130{transform:matrix(0.200235,0.001402,-0.001750,0.249994,0,0);-ms-transform:matrix(0.200235,0.001402,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.200235,0.001402,-0.001750,0.249994,0,0);}
.m17_c00130{transform:matrix(0.200400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200400,0.000000,0.000000,0.250000,0,0);}
.m1b5_c00130{transform:matrix(0.200814,0.001607,-0.002000,0.249992,0,0);-ms-transform:matrix(0.200814,0.001607,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.200814,0.001607,-0.002000,0.249992,0,0);}
.ma2_c00130{transform:matrix(0.201241,0.001207,-0.001500,0.249996,0,0);-ms-transform:matrix(0.201241,0.001207,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.201241,0.001207,-0.001500,0.249996,0,0);}
.m5c_c00130{transform:matrix(0.201306,0.001208,-0.001500,0.249996,0,0);-ms-transform:matrix(0.201306,0.001208,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.201306,0.001208,-0.001500,0.249996,0,0);}
.m2b_c00130{transform:matrix(0.201316,0.001208,-0.001500,0.249996,0,0);-ms-transform:matrix(0.201316,0.001208,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.201316,0.001208,-0.001500,0.249996,0,0);}
.m1ce_c00130{transform:matrix(0.201459,0.001612,-0.002000,0.249992,0,0);-ms-transform:matrix(0.201459,0.001612,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.201459,0.001612,-0.002000,0.249992,0,0);}
.m181_c00130{transform:matrix(0.201589,0.001613,-0.002000,0.249992,0,0);-ms-transform:matrix(0.201589,0.001613,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.201589,0.001613,-0.002000,0.249992,0,0);}
.md4_c00130{transform:matrix(0.201606,0.001210,-0.001500,0.249996,0,0);-ms-transform:matrix(0.201606,0.001210,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.201606,0.001210,-0.001500,0.249996,0,0);}
.m1c6_c00130{transform:matrix(0.201834,0.001615,-0.002000,0.249992,0,0);-ms-transform:matrix(0.201834,0.001615,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.201834,0.001615,-0.002000,0.249992,0,0);}
.m1ec_c00130{transform:matrix(0.202069,0.001617,-0.002000,0.249992,0,0);-ms-transform:matrix(0.202069,0.001617,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.202069,0.001617,-0.002000,0.249992,0,0);}
.ma6_c00130{transform:matrix(0.202456,0.001215,-0.001500,0.249996,0,0);-ms-transform:matrix(0.202456,0.001215,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.202456,0.001215,-0.001500,0.249996,0,0);}
.mf2_c00130{transform:matrix(0.202690,0.001419,-0.001750,0.249994,0,0);-ms-transform:matrix(0.202690,0.001419,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.202690,0.001419,-0.001750,0.249994,0,0);}
.me2_c00130{transform:matrix(0.203066,0.001218,-0.001500,0.249996,0,0);-ms-transform:matrix(0.203066,0.001218,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.203066,0.001218,-0.001500,0.249996,0,0);}
.m176_c00130{transform:matrix(0.203536,0.001221,-0.001500,0.249996,0,0);-ms-transform:matrix(0.203536,0.001221,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.203536,0.001221,-0.001500,0.249996,0,0);}
.m46_c00130{transform:matrix(0.203541,0.001221,-0.001500,0.249996,0,0);-ms-transform:matrix(0.203541,0.001221,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.203541,0.001221,-0.001500,0.249996,0,0);}
.m1cd_c00130{transform:matrix(0.203738,0.001630,-0.002000,0.249992,0,0);-ms-transform:matrix(0.203738,0.001630,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.203738,0.001630,-0.002000,0.249992,0,0);}
.m153_c00130{transform:matrix(0.203896,0.001223,-0.001500,0.249996,0,0);-ms-transform:matrix(0.203896,0.001223,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.203896,0.001223,-0.001500,0.249996,0,0);}
.m1_c00130{transform:matrix(0.204355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204355,0.000000,0.000000,0.250000,0,0);}
.mb7_c00130{transform:matrix(0.204421,0.001227,-0.001500,0.249996,0,0);-ms-transform:matrix(0.204421,0.001227,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.204421,0.001227,-0.001500,0.249996,0,0);}
.m71_c00130{transform:matrix(0.204561,0.001227,-0.001500,0.249996,0,0);-ms-transform:matrix(0.204561,0.001227,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.204561,0.001227,-0.001500,0.249996,0,0);}
.mbe_c00130{transform:matrix(0.204671,0.001228,-0.001500,0.249996,0,0);-ms-transform:matrix(0.204671,0.001228,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.204671,0.001228,-0.001500,0.249996,0,0);}
.m195_c00130{transform:matrix(0.205013,0.001640,-0.002000,0.249992,0,0);-ms-transform:matrix(0.205013,0.001640,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.205013,0.001640,-0.002000,0.249992,0,0);}
.m1e7_c00130{transform:matrix(0.205153,0.001641,-0.002000,0.249992,0,0);-ms-transform:matrix(0.205153,0.001641,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.205153,0.001641,-0.002000,0.249992,0,0);}
.m109_c00130{transform:matrix(0.205155,0.001436,-0.001750,0.249994,0,0);-ms-transform:matrix(0.205155,0.001436,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.205155,0.001436,-0.001750,0.249994,0,0);}
.m15e_c00130{transform:matrix(0.205156,0.001231,-0.001500,0.249996,0,0);-ms-transform:matrix(0.205156,0.001231,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.205156,0.001231,-0.001500,0.249996,0,0);}
.m99_c00130{transform:matrix(0.206191,0.001237,-0.001500,0.249996,0,0);-ms-transform:matrix(0.206191,0.001237,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.206191,0.001237,-0.001500,0.249996,0,0);}
.m155_c00130{transform:matrix(0.206246,0.001237,-0.001500,0.249996,0,0);-ms-transform:matrix(0.206246,0.001237,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.206246,0.001237,-0.001500,0.249996,0,0);}
.m1e6_c00130{transform:matrix(0.206278,0.001650,-0.002000,0.249992,0,0);-ms-transform:matrix(0.206278,0.001650,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.206278,0.001650,-0.002000,0.249992,0,0);}
.md3_c00130{transform:matrix(0.207291,0.001244,-0.001500,0.249996,0,0);-ms-transform:matrix(0.207291,0.001244,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.207291,0.001244,-0.001500,0.249996,0,0);}
.m57_c00130{transform:matrix(0.207606,0.001246,-0.001500,0.249996,0,0);-ms-transform:matrix(0.207606,0.001246,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.207606,0.001246,-0.001500,0.249996,0,0);}
.m182_c00130{transform:matrix(0.207623,0.001661,-0.002000,0.249992,0,0);-ms-transform:matrix(0.207623,0.001661,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.207623,0.001661,-0.002000,0.249992,0,0);}
.m2e_c00130{transform:matrix(0.208021,0.001248,-0.001500,0.249996,0,0);-ms-transform:matrix(0.208021,0.001248,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.208021,0.001248,-0.001500,0.249996,0,0);}
.mdd_c00130{transform:matrix(0.208096,0.001249,-0.001500,0.249996,0,0);-ms-transform:matrix(0.208096,0.001249,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.208096,0.001249,-0.001500,0.249996,0,0);}
.m7e_c00130{transform:matrix(0.208326,0.001250,-0.001500,0.249996,0,0);-ms-transform:matrix(0.208326,0.001250,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.208326,0.001250,-0.001500,0.249996,0,0);}
.mb9_c00130{transform:matrix(0.208586,0.001252,-0.001500,0.249996,0,0);-ms-transform:matrix(0.208586,0.001252,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.208586,0.001252,-0.001500,0.249996,0,0);}
.m194_c00130{transform:matrix(0.208613,0.001669,-0.002000,0.249992,0,0);-ms-transform:matrix(0.208613,0.001669,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.208613,0.001669,-0.002000,0.249992,0,0);}
.mb0_c00130{transform:matrix(0.208791,0.001253,-0.001500,0.249996,0,0);-ms-transform:matrix(0.208791,0.001253,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.208791,0.001253,-0.001500,0.249996,0,0);}
.m13a_c00130{transform:matrix(0.208905,0.001462,-0.001750,0.249994,0,0);-ms-transform:matrix(0.208905,0.001462,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.208905,0.001462,-0.001750,0.249994,0,0);}
.m147_c00130{transform:matrix(0.209255,0.001465,-0.001750,0.249994,0,0);-ms-transform:matrix(0.209255,0.001465,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.209255,0.001465,-0.001750,0.249994,0,0);}
.m1d3_c00130{transform:matrix(0.209313,0.001675,-0.002000,0.249992,0,0);-ms-transform:matrix(0.209313,0.001675,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.209313,0.001675,-0.002000,0.249992,0,0);}
.m150_c00130{transform:matrix(0.209406,0.001256,-0.001500,0.249996,0,0);-ms-transform:matrix(0.209406,0.001256,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.209406,0.001256,-0.001500,0.249996,0,0);}
.m2a_c00130{transform:matrix(0.209491,0.001257,-0.001500,0.249996,0,0);-ms-transform:matrix(0.209491,0.001257,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.209491,0.001257,-0.001500,0.249996,0,0);}
.m97_c00130{transform:matrix(0.209866,0.001259,-0.001500,0.249996,0,0);-ms-transform:matrix(0.209866,0.001259,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.209866,0.001259,-0.001500,0.249996,0,0);}
.m170_c00130{transform:matrix(0.210076,0.001260,-0.001500,0.249996,0,0);-ms-transform:matrix(0.210076,0.001260,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.210076,0.001260,-0.001500,0.249996,0,0);}
.m18b_c00130{transform:matrix(0.210103,0.001681,-0.002000,0.249992,0,0);-ms-transform:matrix(0.210103,0.001681,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.210103,0.001681,-0.002000,0.249992,0,0);}
.m9e_c00130{transform:matrix(0.210131,0.001261,-0.001500,0.249996,0,0);-ms-transform:matrix(0.210131,0.001261,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.210131,0.001261,-0.001500,0.249996,0,0);}
.m18f_c00130{transform:matrix(0.210543,0.001684,-0.002000,0.249992,0,0);-ms-transform:matrix(0.210543,0.001684,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.210543,0.001684,-0.002000,0.249992,0,0);}
.m3e_c00130{transform:matrix(0.210546,0.001263,-0.001500,0.249996,0,0);-ms-transform:matrix(0.210546,0.001263,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.210546,0.001263,-0.001500,0.249996,0,0);}
.m10f_c00130{transform:matrix(0.210615,0.001474,-0.001750,0.249994,0,0);-ms-transform:matrix(0.210615,0.001474,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.210615,0.001474,-0.001750,0.249994,0,0);}
.m1d7_c00130{transform:matrix(0.210678,0.001685,-0.002000,0.249992,0,0);-ms-transform:matrix(0.210678,0.001685,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.210678,0.001685,-0.002000,0.249992,0,0);}
.m41_c00130{transform:matrix(0.210681,0.001264,-0.001500,0.249996,0,0);-ms-transform:matrix(0.210681,0.001264,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.210681,0.001264,-0.001500,0.249996,0,0);}
.m16e_c00130{transform:matrix(0.210856,0.001265,-0.001500,0.249996,0,0);-ms-transform:matrix(0.210856,0.001265,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.210856,0.001265,-0.001500,0.249996,0,0);}
.m1a5_c00130{transform:matrix(0.211138,0.001689,-0.002000,0.249992,0,0);-ms-transform:matrix(0.211138,0.001689,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.211138,0.001689,-0.002000,0.249992,0,0);}
.m15b_c00130{transform:matrix(0.211331,0.001268,-0.001500,0.249996,0,0);-ms-transform:matrix(0.211331,0.001268,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.211331,0.001268,-0.001500,0.249996,0,0);}
.m48_c00130{transform:matrix(0.211406,0.001268,-0.001500,0.249996,0,0);-ms-transform:matrix(0.211406,0.001268,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.211406,0.001268,-0.001500,0.249996,0,0);}
.m1b4_c00130{transform:matrix(0.211438,0.001692,-0.002000,0.249992,0,0);-ms-transform:matrix(0.211438,0.001692,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.211438,0.001692,-0.002000,0.249992,0,0);}
.m158_c00130{transform:matrix(0.211496,0.001269,-0.001500,0.249996,0,0);-ms-transform:matrix(0.211496,0.001269,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.211496,0.001269,-0.001500,0.249996,0,0);}
.m1d0_c00130{transform:matrix(0.211708,0.001694,-0.002000,0.249992,0,0);-ms-transform:matrix(0.211708,0.001694,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.211708,0.001694,-0.002000,0.249992,0,0);}
.m89_c00130{transform:matrix(0.211841,0.001271,-0.001500,0.249996,0,0);-ms-transform:matrix(0.211841,0.001271,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.211841,0.001271,-0.001500,0.249996,0,0);}
.m18_c00130{transform:matrix(0.211881,0.001271,-0.001500,0.249996,0,0);-ms-transform:matrix(0.211881,0.001271,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.211881,0.001271,-0.001500,0.249996,0,0);}
.ma4_c00130{transform:matrix(0.212096,0.001273,-0.001500,0.249996,0,0);-ms-transform:matrix(0.212096,0.001273,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.212096,0.001273,-0.001500,0.249996,0,0);}
.m123_c00130{transform:matrix(0.212185,0.001485,-0.001750,0.249994,0,0);-ms-transform:matrix(0.212185,0.001485,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.212185,0.001485,-0.001750,0.249994,0,0);}
.m10_c00130{transform:matrix(0.212800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212800,0.000000,0.000000,0.250000,0,0);}
.m29_c00130{transform:matrix(0.213351,0.001280,-0.001500,0.249996,0,0);-ms-transform:matrix(0.213351,0.001280,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.213351,0.001280,-0.001500,0.249996,0,0);}
.m50_c00130{transform:matrix(0.213651,0.001282,-0.001500,0.249996,0,0);-ms-transform:matrix(0.213651,0.001282,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.213651,0.001282,-0.001500,0.249996,0,0);}
.m5f_c00130{transform:matrix(0.214171,0.001285,-0.001500,0.249996,0,0);-ms-transform:matrix(0.214171,0.001285,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.214171,0.001285,-0.001500,0.249996,0,0);}
.m1a1_c00130{transform:matrix(0.214188,0.001714,-0.002000,0.249992,0,0);-ms-transform:matrix(0.214188,0.001714,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.214188,0.001714,-0.002000,0.249992,0,0);}
.m30_c00130{transform:matrix(0.214216,0.001285,-0.001500,0.249996,0,0);-ms-transform:matrix(0.214216,0.001285,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.214216,0.001285,-0.001500,0.249996,0,0);}
.mf8_c00130{transform:matrix(0.214360,0.001501,-0.001750,0.249994,0,0);-ms-transform:matrix(0.214360,0.001501,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.214360,0.001501,-0.001750,0.249994,0,0);}
.md0_c00130{transform:matrix(0.214361,0.001286,-0.001500,0.249996,0,0);-ms-transform:matrix(0.214361,0.001286,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.214361,0.001286,-0.001500,0.249996,0,0);}
.m90_c00130{transform:matrix(0.214416,0.001286,-0.001500,0.249996,0,0);-ms-transform:matrix(0.214416,0.001286,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.214416,0.001286,-0.001500,0.249996,0,0);}
.m1d6_c00130{transform:matrix(0.214503,0.001716,-0.002000,0.249992,0,0);-ms-transform:matrix(0.214503,0.001716,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.214503,0.001716,-0.002000,0.249992,0,0);}
.m7b_c00130{transform:matrix(0.214681,0.001288,-0.001500,0.249996,0,0);-ms-transform:matrix(0.214681,0.001288,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.214681,0.001288,-0.001500,0.249996,0,0);}
.m59_c00130{transform:matrix(0.214691,0.001288,-0.001500,0.249996,0,0);-ms-transform:matrix(0.214691,0.001288,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.214691,0.001288,-0.001500,0.249996,0,0);}
.m27_c00130{transform:matrix(0.214731,0.001288,-0.001500,0.249996,0,0);-ms-transform:matrix(0.214731,0.001288,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.214731,0.001288,-0.001500,0.249996,0,0);}
.m196_c00130{transform:matrix(0.215088,0.001721,-0.002000,0.249992,0,0);-ms-transform:matrix(0.215088,0.001721,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.215088,0.001721,-0.002000,0.249992,0,0);}
.maf_c00130{transform:matrix(0.216166,0.001297,-0.001500,0.249996,0,0);-ms-transform:matrix(0.216166,0.001297,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.216166,0.001297,-0.001500,0.249996,0,0);}
.m4b_c00130{transform:matrix(0.216301,0.001298,-0.001500,0.249996,0,0);-ms-transform:matrix(0.216301,0.001298,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.216301,0.001298,-0.001500,0.249996,0,0);}
.m193_c00130{transform:matrix(0.216598,0.001733,-0.002000,0.249992,0,0);-ms-transform:matrix(0.216598,0.001733,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.216598,0.001733,-0.002000,0.249992,0,0);}
.m188_c00130{transform:matrix(0.217548,0.001740,-0.002000,0.249992,0,0);-ms-transform:matrix(0.217548,0.001740,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.217548,0.001740,-0.002000,0.249992,0,0);}
.m1d8_c00130{transform:matrix(0.217563,0.001741,-0.002000,0.249992,0,0);-ms-transform:matrix(0.217563,0.001741,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.217563,0.001741,-0.002000,0.249992,0,0);}
.m179_c00130{transform:matrix(0.217566,0.001305,-0.001500,0.249996,0,0);-ms-transform:matrix(0.217566,0.001305,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.217566,0.001305,-0.001500,0.249996,0,0);}
.m1d9_c00130{transform:matrix(0.217808,0.001742,-0.002000,0.249992,0,0);-ms-transform:matrix(0.217808,0.001742,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.217808,0.001742,-0.002000,0.249992,0,0);}
.mf4_c00130{transform:matrix(0.217940,0.001526,-0.001750,0.249994,0,0);-ms-transform:matrix(0.217940,0.001526,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.217940,0.001526,-0.001750,0.249994,0,0);}
.m1d5_c00130{transform:matrix(0.218083,0.001745,-0.002000,0.249992,0,0);-ms-transform:matrix(0.218083,0.001745,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.218083,0.001745,-0.002000,0.249992,0,0);}
.m137_c00130{transform:matrix(0.218570,0.001530,-0.001750,0.249994,0,0);-ms-transform:matrix(0.218570,0.001530,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.218570,0.001530,-0.001750,0.249994,0,0);}
.m1ed_c00130{transform:matrix(0.218588,0.001749,-0.002000,0.249992,0,0);-ms-transform:matrix(0.218588,0.001749,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.218588,0.001749,-0.002000,0.249992,0,0);}
.m1a_c00130{transform:matrix(0.218966,0.001314,-0.001500,0.249996,0,0);-ms-transform:matrix(0.218966,0.001314,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.218966,0.001314,-0.001500,0.249996,0,0);}
.m8b_c00130{transform:matrix(0.219016,0.001314,-0.001500,0.249996,0,0);-ms-transform:matrix(0.219016,0.001314,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.219016,0.001314,-0.001500,0.249996,0,0);}
.m6d_c00130{transform:matrix(0.219991,0.001320,-0.001500,0.249996,0,0);-ms-transform:matrix(0.219991,0.001320,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.219991,0.001320,-0.001500,0.249996,0,0);}
.m130_c00130{transform:matrix(0.220020,0.001540,-0.001750,0.249994,0,0);-ms-transform:matrix(0.220020,0.001540,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.220020,0.001540,-0.001750,0.249994,0,0);}
.m16b_c00130{transform:matrix(0.220296,0.001322,-0.001500,0.249996,0,0);-ms-transform:matrix(0.220296,0.001322,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.220296,0.001322,-0.001500,0.249996,0,0);}
.m173_c00130{transform:matrix(0.220861,0.001325,-0.001500,0.249996,0,0);-ms-transform:matrix(0.220861,0.001325,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.220861,0.001325,-0.001500,0.249996,0,0);}
.m65_c00130{transform:matrix(0.220911,0.001325,-0.001500,0.249996,0,0);-ms-transform:matrix(0.220911,0.001325,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.220911,0.001325,-0.001500,0.249996,0,0);}
.m3d_c00130{transform:matrix(0.220956,0.001326,-0.001500,0.249996,0,0);-ms-transform:matrix(0.220956,0.001326,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.220956,0.001326,-0.001500,0.249996,0,0);}
.mcf_c00130{transform:matrix(0.221446,0.001329,-0.001500,0.249996,0,0);-ms-transform:matrix(0.221446,0.001329,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.221446,0.001329,-0.001500,0.249996,0,0);}
.md2_c00130{transform:matrix(0.221456,0.001329,-0.001500,0.249996,0,0);-ms-transform:matrix(0.221456,0.001329,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.221456,0.001329,-0.001500,0.249996,0,0);}
.m14a_c00130{transform:matrix(0.221530,0.001551,-0.001750,0.249994,0,0);-ms-transform:matrix(0.221530,0.001551,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.221530,0.001551,-0.001750,0.249994,0,0);}
.m53_c00130{transform:matrix(0.222116,0.001333,-0.001500,0.249996,0,0);-ms-transform:matrix(0.222116,0.001333,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.222116,0.001333,-0.001500,0.249996,0,0);}
.m67_c00130{transform:matrix(0.222176,0.001333,-0.001500,0.249996,0,0);-ms-transform:matrix(0.222176,0.001333,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.222176,0.001333,-0.001500,0.249996,0,0);}
.m1f5_c00130{transform:matrix(0.222803,0.001782,-0.002000,0.249992,0,0);-ms-transform:matrix(0.222803,0.001782,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.222803,0.001782,-0.002000,0.249992,0,0);}
.mb3_c00130{transform:matrix(0.223101,0.001339,-0.001500,0.249996,0,0);-ms-transform:matrix(0.223101,0.001339,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.223101,0.001339,-0.001500,0.249996,0,0);}
.m128_c00130{transform:matrix(0.223370,0.001564,-0.001750,0.249994,0,0);-ms-transform:matrix(0.223370,0.001564,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.223370,0.001564,-0.001750,0.249994,0,0);}
.m16c_c00130{transform:matrix(0.223451,0.001341,-0.001500,0.249996,0,0);-ms-transform:matrix(0.223451,0.001341,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.223451,0.001341,-0.001500,0.249996,0,0);}
.m15c_c00130{transform:matrix(0.223556,0.001341,-0.001500,0.249996,0,0);-ms-transform:matrix(0.223556,0.001341,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.223556,0.001341,-0.001500,0.249996,0,0);}
.m160_c00130{transform:matrix(0.223646,0.001342,-0.001500,0.249996,0,0);-ms-transform:matrix(0.223646,0.001342,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.223646,0.001342,-0.001500,0.249996,0,0);}
.m52_c00130{transform:matrix(0.223891,0.001343,-0.001500,0.249996,0,0);-ms-transform:matrix(0.223891,0.001343,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.223891,0.001343,-0.001500,0.249996,0,0);}
.m1aa_c00130{transform:matrix(0.224303,0.001794,-0.002000,0.249992,0,0);-ms-transform:matrix(0.224303,0.001794,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.224303,0.001794,-0.002000,0.249992,0,0);}
.ma_c00130{transform:matrix(0.224660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224660,0.000000,0.000000,0.250000,0,0);}
.m17a_c00130{transform:matrix(0.224736,0.001348,-0.001500,0.249996,0,0);-ms-transform:matrix(0.224736,0.001348,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.224736,0.001348,-0.001500,0.249996,0,0);}
.m1c4_c00130{transform:matrix(0.224743,0.001798,-0.002000,0.249992,0,0);-ms-transform:matrix(0.224743,0.001798,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.224743,0.001798,-0.002000,0.249992,0,0);}
.m6f_c00130{transform:matrix(0.224911,0.001349,-0.001500,0.249996,0,0);-ms-transform:matrix(0.224911,0.001349,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.224911,0.001349,-0.001500,0.249996,0,0);}
.md_c00130{transform:matrix(0.225425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225425,0.000000,0.000000,0.250000,0,0);}
.m187_c00130{transform:matrix(0.225803,0.001806,-0.002000,0.249992,0,0);-ms-transform:matrix(0.225803,0.001806,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.225803,0.001806,-0.002000,0.249992,0,0);}
.md1_c00130{transform:matrix(0.225951,0.001356,-0.001500,0.249996,0,0);-ms-transform:matrix(0.225951,0.001356,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.225951,0.001356,-0.001500,0.249996,0,0);}
.m1c2_c00130{transform:matrix(0.226393,0.001811,-0.002000,0.249992,0,0);-ms-transform:matrix(0.226393,0.001811,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.226393,0.001811,-0.002000,0.249992,0,0);}
.m1d4_c00130{transform:matrix(0.227123,0.001817,-0.002000,0.249992,0,0);-ms-transform:matrix(0.227123,0.001817,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.227123,0.001817,-0.002000,0.249992,0,0);}
.m7d_c00130{transform:matrix(0.227146,0.001363,-0.001500,0.249996,0,0);-ms-transform:matrix(0.227146,0.001363,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.227146,0.001363,-0.001500,0.249996,0,0);}
.mbd_c00130{transform:matrix(0.227241,0.001363,-0.001500,0.249996,0,0);-ms-transform:matrix(0.227241,0.001363,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.227241,0.001363,-0.001500,0.249996,0,0);}
.m1f1_c00130{transform:matrix(0.227338,0.001819,-0.002000,0.249992,0,0);-ms-transform:matrix(0.227338,0.001819,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.227338,0.001819,-0.002000,0.249992,0,0);}
.m198_c00130{transform:matrix(0.227683,0.001821,-0.002000,0.249992,0,0);-ms-transform:matrix(0.227683,0.001821,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.227683,0.001821,-0.002000,0.249992,0,0);}
.m13_c00130{transform:matrix(0.227870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227870,0.000000,0.000000,0.250000,0,0);}
.m10b_c00130{transform:matrix(0.227979,0.001596,-0.001750,0.249994,0,0);-ms-transform:matrix(0.227979,0.001596,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.227979,0.001596,-0.001750,0.249994,0,0);}
.m1ab_c00130{transform:matrix(0.228033,0.001824,-0.002000,0.249992,0,0);-ms-transform:matrix(0.228033,0.001824,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.228033,0.001824,-0.002000,0.249992,0,0);}
.m14f_c00130{transform:matrix(0.228101,0.001369,-0.001500,0.249996,0,0);-ms-transform:matrix(0.228101,0.001369,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.228101,0.001369,-0.001500,0.249996,0,0);}
.mb2_c00130{transform:matrix(0.228411,0.001370,-0.001500,0.249996,0,0);-ms-transform:matrix(0.228411,0.001370,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.228411,0.001370,-0.001500,0.249996,0,0);}
.m14e_c00130{transform:matrix(0.228416,0.001370,-0.001500,0.249996,0,0);-ms-transform:matrix(0.228416,0.001370,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.228416,0.001370,-0.001500,0.249996,0,0);}
.m7a_c00130{transform:matrix(0.228586,0.001372,-0.001500,0.249996,0,0);-ms-transform:matrix(0.228586,0.001372,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.228586,0.001372,-0.001500,0.249996,0,0);}
.m87_c00130{transform:matrix(0.228626,0.001372,-0.001500,0.249996,0,0);-ms-transform:matrix(0.228626,0.001372,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.228626,0.001372,-0.001500,0.249996,0,0);}
.m8d_c00130{transform:matrix(0.228701,0.001372,-0.001500,0.249996,0,0);-ms-transform:matrix(0.228701,0.001372,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.228701,0.001372,-0.001500,0.249996,0,0);}
.m26_c00130{transform:matrix(0.228731,0.001372,-0.001500,0.249996,0,0);-ms-transform:matrix(0.228731,0.001372,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.228731,0.001372,-0.001500,0.249996,0,0);}
.m18d_c00130{transform:matrix(0.228868,0.001831,-0.002000,0.249992,0,0);-ms-transform:matrix(0.228868,0.001831,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.228868,0.001831,-0.002000,0.249992,0,0);}
.m1db_c00130{transform:matrix(0.228893,0.001831,-0.002000,0.249992,0,0);-ms-transform:matrix(0.228893,0.001831,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.228893,0.001831,-0.002000,0.249992,0,0);}
.me0_c00130{transform:matrix(0.228976,0.001374,-0.001500,0.249996,0,0);-ms-transform:matrix(0.228976,0.001374,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.228976,0.001374,-0.001500,0.249996,0,0);}
.m13b_c00130{transform:matrix(0.229019,0.001603,-0.001750,0.249994,0,0);-ms-transform:matrix(0.229019,0.001603,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.229019,0.001603,-0.001750,0.249994,0,0);}
.m81_c00130{transform:matrix(0.229191,0.001375,-0.001500,0.249996,0,0);-ms-transform:matrix(0.229191,0.001375,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.229191,0.001375,-0.001500,0.249996,0,0);}
.mc_c00130{transform:matrix(0.229200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229200,0.000000,0.000000,0.250000,0,0);}
.m25_c00130{transform:matrix(0.229281,0.001376,-0.001500,0.249996,0,0);-ms-transform:matrix(0.229281,0.001376,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.229281,0.001376,-0.001500,0.249996,0,0);}
.m108_c00130{transform:matrix(0.229494,0.001606,-0.001750,0.249994,0,0);-ms-transform:matrix(0.229494,0.001606,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.229494,0.001606,-0.001750,0.249994,0,0);}
.m18c_c00130{transform:matrix(0.229523,0.001836,-0.002000,0.249992,0,0);-ms-transform:matrix(0.229523,0.001836,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.229523,0.001836,-0.002000,0.249992,0,0);}
.m1f2_c00130{transform:matrix(0.229653,0.001837,-0.002000,0.249992,0,0);-ms-transform:matrix(0.229653,0.001837,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.229653,0.001837,-0.002000,0.249992,0,0);}
.m5b_c00130{transform:matrix(0.231441,0.001389,-0.001500,0.249996,0,0);-ms-transform:matrix(0.231441,0.001389,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.231441,0.001389,-0.001500,0.249996,0,0);}
.md6_c00130{transform:matrix(0.231666,0.001390,-0.001500,0.249996,0,0);-ms-transform:matrix(0.231666,0.001390,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.231666,0.001390,-0.001500,0.249996,0,0);}
.m55_c00130{transform:matrix(0.231751,0.001391,-0.001500,0.249996,0,0);-ms-transform:matrix(0.231751,0.001391,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.231751,0.001391,-0.001500,0.249996,0,0);}
.m189_c00130{transform:matrix(0.231948,0.001856,-0.002000,0.249992,0,0);-ms-transform:matrix(0.231948,0.001856,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.231948,0.001856,-0.002000,0.249992,0,0);}
.m10e_c00130{transform:matrix(0.231949,0.001624,-0.001750,0.249994,0,0);-ms-transform:matrix(0.231949,0.001624,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.231949,0.001624,-0.001750,0.249994,0,0);}
.m103_c00130{transform:matrix(0.232254,0.001626,-0.001750,0.249994,0,0);-ms-transform:matrix(0.232254,0.001626,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.232254,0.001626,-0.001750,0.249994,0,0);}
.m6e_c00130{transform:matrix(0.232261,0.001394,-0.001500,0.249996,0,0);-ms-transform:matrix(0.232261,0.001394,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.232261,0.001394,-0.001500,0.249996,0,0);}
.m85_c00130{transform:matrix(0.232301,0.001394,-0.001500,0.249996,0,0);-ms-transform:matrix(0.232301,0.001394,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.232301,0.001394,-0.001500,0.249996,0,0);}
.m4c_c00130{transform:matrix(0.232336,0.001394,-0.001500,0.249996,0,0);-ms-transform:matrix(0.232336,0.001394,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.232336,0.001394,-0.001500,0.249996,0,0);}
.m8c_c00130{transform:matrix(0.232491,0.001395,-0.001500,0.249996,0,0);-ms-transform:matrix(0.232491,0.001395,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.232491,0.001395,-0.001500,0.249996,0,0);}
.m14_c00130{transform:matrix(0.233000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00130{transform:matrix(0.233006,0.001398,-0.001500,0.249996,0,0);-ms-transform:matrix(0.233006,0.001398,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.233006,0.001398,-0.001500,0.249996,0,0);}
.m1ef_c00130{transform:matrix(0.233038,0.001864,-0.002000,0.249992,0,0);-ms-transform:matrix(0.233038,0.001864,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.233038,0.001864,-0.002000,0.249992,0,0);}
.m174_c00130{transform:matrix(0.233476,0.001401,-0.001500,0.249996,0,0);-ms-transform:matrix(0.233476,0.001401,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.233476,0.001401,-0.001500,0.249996,0,0);}
.m11_c00130{transform:matrix(0.234020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234020,0.000000,0.000000,0.250000,0,0);}
.m1e9_c00130{transform:matrix(0.234088,0.001873,-0.002000,0.249992,0,0);-ms-transform:matrix(0.234088,0.001873,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.234088,0.001873,-0.002000,0.249992,0,0);}
.m132_c00130{transform:matrix(0.234089,0.001639,-0.001750,0.249994,0,0);-ms-transform:matrix(0.234089,0.001639,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.234089,0.001639,-0.001750,0.249994,0,0);}
.mdb_c00130{transform:matrix(0.234386,0.001406,-0.001500,0.249996,0,0);-ms-transform:matrix(0.234386,0.001406,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.234386,0.001406,-0.001500,0.249996,0,0);}
.m68_c00130{transform:matrix(0.234621,0.001408,-0.001500,0.249996,0,0);-ms-transform:matrix(0.234621,0.001408,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.234621,0.001408,-0.001500,0.249996,0,0);}
.m134_c00130{transform:matrix(0.234989,0.001645,-0.001750,0.249994,0,0);-ms-transform:matrix(0.234989,0.001645,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.234989,0.001645,-0.001750,0.249994,0,0);}
.m16_c00130{transform:matrix(0.235190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235190,0.000000,0.000000,0.250000,0,0);}
.m19b_c00130{transform:matrix(0.235447,0.001884,-0.002000,0.249992,0,0);-ms-transform:matrix(0.235447,0.001884,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.235447,0.001884,-0.002000,0.249992,0,0);}
.m1eb_c00130{transform:matrix(0.235467,0.001884,-0.002000,0.249992,0,0);-ms-transform:matrix(0.235467,0.001884,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.235467,0.001884,-0.002000,0.249992,0,0);}
.m100_c00130{transform:matrix(0.235499,0.001648,-0.001750,0.249994,0,0);-ms-transform:matrix(0.235499,0.001648,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.235499,0.001648,-0.001750,0.249994,0,0);}
.m1f6_c00130{transform:matrix(0.235527,0.001884,-0.002000,0.249992,0,0);-ms-transform:matrix(0.235527,0.001884,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.235527,0.001884,-0.002000,0.249992,0,0);}
.m1fb_c00130{transform:matrix(0.235792,0.001886,-0.002000,0.249992,0,0);-ms-transform:matrix(0.235792,0.001886,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.235792,0.001886,-0.002000,0.249992,0,0);}
.m10d_c00130{transform:matrix(0.235869,0.001651,-0.001750,0.249994,0,0);-ms-transform:matrix(0.235869,0.001651,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.235869,0.001651,-0.001750,0.249994,0,0);}
.m15a_c00130{transform:matrix(0.236311,0.001418,-0.001500,0.249996,0,0);-ms-transform:matrix(0.236311,0.001418,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.236311,0.001418,-0.001500,0.249996,0,0);}
.mce_c00130{transform:matrix(0.236826,0.001421,-0.001500,0.249996,0,0);-ms-transform:matrix(0.236826,0.001421,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.236826,0.001421,-0.001500,0.249996,0,0);}
.md7_c00130{transform:matrix(0.236851,0.001421,-0.001500,0.249996,0,0);-ms-transform:matrix(0.236851,0.001421,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.236851,0.001421,-0.001500,0.249996,0,0);}
.m149_c00130{transform:matrix(0.236859,0.001658,-0.001750,0.249994,0,0);-ms-transform:matrix(0.236859,0.001658,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.236859,0.001658,-0.001750,0.249994,0,0);}
.m18e_c00130{transform:matrix(0.237072,0.001897,-0.002000,0.249992,0,0);-ms-transform:matrix(0.237072,0.001897,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.237072,0.001897,-0.002000,0.249992,0,0);}
.m10c_c00130{transform:matrix(0.237379,0.001662,-0.001750,0.249994,0,0);-ms-transform:matrix(0.237379,0.001662,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.237379,0.001662,-0.001750,0.249994,0,0);}
.m1e5_c00130{transform:matrix(0.237472,0.001900,-0.002000,0.249992,0,0);-ms-transform:matrix(0.237472,0.001900,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.237472,0.001900,-0.002000,0.249992,0,0);}
.m110_c00130{transform:matrix(0.237644,0.001664,-0.001750,0.249994,0,0);-ms-transform:matrix(0.237644,0.001664,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.237644,0.001664,-0.001750,0.249994,0,0);}
.m19d_c00130{transform:matrix(0.237877,0.001903,-0.002000,0.249992,0,0);-ms-transform:matrix(0.237877,0.001903,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.237877,0.001903,-0.002000,0.249992,0,0);}
.m13f_c00130{transform:matrix(0.237879,0.001665,-0.001750,0.249994,0,0);-ms-transform:matrix(0.237879,0.001665,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.237879,0.001665,-0.001750,0.249994,0,0);}
.m9_c00130{transform:matrix(0.238140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238140,0.000000,0.000000,0.250000,0,0);}
.m1f8_c00130{transform:matrix(0.238507,0.001908,-0.002000,0.249992,0,0);-ms-transform:matrix(0.238507,0.001908,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.238507,0.001908,-0.002000,0.249992,0,0);}
.mf3_c00130{transform:matrix(0.238679,0.001671,-0.001750,0.249994,0,0);-ms-transform:matrix(0.238679,0.001671,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.238679,0.001671,-0.001750,0.249994,0,0);}
.m4_c00130{transform:matrix(0.240055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240055,0.000000,0.000000,0.250000,0,0);}
.m1a2_c00130{transform:matrix(0.240102,0.001921,-0.002000,0.249992,0,0);-ms-transform:matrix(0.240102,0.001921,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.240102,0.001921,-0.002000,0.249992,0,0);}
.m115_c00130{transform:matrix(0.240109,0.001681,-0.001750,0.249994,0,0);-ms-transform:matrix(0.240109,0.001681,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.240109,0.001681,-0.001750,0.249994,0,0);}
.m15d_c00130{transform:matrix(0.240296,0.001442,-0.001500,0.249996,0,0);-ms-transform:matrix(0.240296,0.001442,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.240296,0.001442,-0.001500,0.249996,0,0);}
.mf6_c00130{transform:matrix(0.240394,0.001683,-0.001750,0.249994,0,0);-ms-transform:matrix(0.240394,0.001683,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.240394,0.001683,-0.001750,0.249994,0,0);}
.m183_c00130{transform:matrix(0.240442,0.001924,-0.002000,0.249992,0,0);-ms-transform:matrix(0.240442,0.001924,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.240442,0.001924,-0.002000,0.249992,0,0);}
.m116_c00130{transform:matrix(0.240514,0.001684,-0.001750,0.249994,0,0);-ms-transform:matrix(0.240514,0.001684,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.240514,0.001684,-0.001750,0.249994,0,0);}
.m156_c00130{transform:matrix(0.240756,0.001445,-0.001500,0.249996,0,0);-ms-transform:matrix(0.240756,0.001445,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.240756,0.001445,-0.001500,0.249996,0,0);}
.m1e_c00130{transform:matrix(0.240771,0.001445,-0.001500,0.249996,0,0);-ms-transform:matrix(0.240771,0.001445,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.240771,0.001445,-0.001500,0.249996,0,0);}
.m44_c00130{transform:matrix(0.241311,0.001448,-0.001500,0.249996,0,0);-ms-transform:matrix(0.241311,0.001448,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.241311,0.001448,-0.001500,0.249996,0,0);}
.m1a0_c00130{transform:matrix(0.241437,0.001931,-0.002000,0.249992,0,0);-ms-transform:matrix(0.241437,0.001931,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.241437,0.001931,-0.002000,0.249992,0,0);}
.mf7_c00130{transform:matrix(0.241609,0.001691,-0.001750,0.249994,0,0);-ms-transform:matrix(0.241609,0.001691,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.241609,0.001691,-0.001750,0.249994,0,0);}
.m19e_c00130{transform:matrix(0.241882,0.001935,-0.002000,0.249992,0,0);-ms-transform:matrix(0.241882,0.001935,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.241882,0.001935,-0.002000,0.249992,0,0);}
.mfa_c00130{transform:matrix(0.241884,0.001693,-0.001750,0.249994,0,0);-ms-transform:matrix(0.241884,0.001693,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.241884,0.001693,-0.001750,0.249994,0,0);}
.mb1_c00130{transform:matrix(0.242506,0.001455,-0.001500,0.249996,0,0);-ms-transform:matrix(0.242506,0.001455,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.242506,0.001455,-0.001500,0.249996,0,0);}
.m1ea_c00130{transform:matrix(0.242577,0.001941,-0.002000,0.249992,0,0);-ms-transform:matrix(0.242577,0.001941,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.242577,0.001941,-0.002000,0.249992,0,0);}
.m11a_c00130{transform:matrix(0.242744,0.001699,-0.001750,0.249994,0,0);-ms-transform:matrix(0.242744,0.001699,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.242744,0.001699,-0.001750,0.249994,0,0);}
.m66_c00130{transform:matrix(0.243051,0.001458,-0.001500,0.249996,0,0);-ms-transform:matrix(0.243051,0.001458,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.243051,0.001458,-0.001500,0.249996,0,0);}
.m4d_c00130{transform:matrix(0.243391,0.001460,-0.001500,0.249996,0,0);-ms-transform:matrix(0.243391,0.001460,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.243391,0.001460,-0.001500,0.249996,0,0);}
.m1e1_c00130{transform:matrix(0.243432,0.001947,-0.002000,0.249992,0,0);-ms-transform:matrix(0.243432,0.001947,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.243432,0.001947,-0.002000,0.249992,0,0);}
.m51_c00130{transform:matrix(0.243631,0.001462,-0.001500,0.249996,0,0);-ms-transform:matrix(0.243631,0.001462,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.243631,0.001462,-0.001500,0.249996,0,0);}
.m1b2_c00130{transform:matrix(0.244212,0.001954,-0.002000,0.249992,0,0);-ms-transform:matrix(0.244212,0.001954,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.244212,0.001954,-0.002000,0.249992,0,0);}
.m1fa_c00130{transform:matrix(0.244702,0.001958,-0.002000,0.249992,0,0);-ms-transform:matrix(0.244702,0.001958,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.244702,0.001958,-0.002000,0.249992,0,0);}
.m14c_c00130{transform:matrix(0.244954,0.001715,-0.001750,0.249994,0,0);-ms-transform:matrix(0.244954,0.001715,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.244954,0.001715,-0.001750,0.249994,0,0);}
.m1ee_c00130{transform:matrix(0.245492,0.001964,-0.002000,0.249992,0,0);-ms-transform:matrix(0.245492,0.001964,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.245492,0.001964,-0.002000,0.249992,0,0);}
.mf1_c00130{transform:matrix(0.246534,0.001726,-0.001750,0.249994,0,0);-ms-transform:matrix(0.246534,0.001726,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.246534,0.001726,-0.001750,0.249994,0,0);}
.m2c_c00130{transform:matrix(0.246601,0.001480,-0.001500,0.249996,0,0);-ms-transform:matrix(0.246601,0.001480,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.246601,0.001480,-0.001500,0.249996,0,0);}
.m107_c00130{transform:matrix(0.246644,0.001727,-0.001750,0.249994,0,0);-ms-transform:matrix(0.246644,0.001727,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.246644,0.001727,-0.001750,0.249994,0,0);}
.m15_c00130{transform:matrix(0.247385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247385,0.000000,0.000000,0.250000,0,0);}
.m178_c00130{transform:matrix(0.247421,0.001485,-0.001500,0.249996,0,0);-ms-transform:matrix(0.247421,0.001485,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.247421,0.001485,-0.001500,0.249996,0,0);}
.m145_c00130{transform:matrix(0.247714,0.001734,-0.001750,0.249994,0,0);-ms-transform:matrix(0.247714,0.001734,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.247714,0.001734,-0.001750,0.249994,0,0);}
.m60_c00130{transform:matrix(0.247891,0.001487,-0.001500,0.249996,0,0);-ms-transform:matrix(0.247891,0.001487,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.247891,0.001487,-0.001500,0.249996,0,0);}
.mea_c00130{transform:matrix(0.247931,0.001488,-0.001500,0.249996,0,0);-ms-transform:matrix(0.247931,0.001488,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.247931,0.001488,-0.001500,0.249996,0,0);}
.m17f_c00130{transform:matrix(0.248002,0.001984,-0.002000,0.249992,0,0);-ms-transform:matrix(0.248002,0.001984,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.248002,0.001984,-0.002000,0.249992,0,0);}
.mbc_c00130{transform:matrix(0.248581,0.001491,-0.001500,0.249996,0,0);-ms-transform:matrix(0.248581,0.001491,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.248581,0.001491,-0.001500,0.249996,0,0);}
.mf_c00130{transform:matrix(0.248745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248745,0.000000,0.000000,0.250000,0,0);}
.m12e_c00130{transform:matrix(0.248784,0.001741,-0.001750,0.249994,0,0);-ms-transform:matrix(0.248784,0.001741,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.248784,0.001741,-0.001750,0.249994,0,0);}
.m11c_c00130{transform:matrix(0.248789,0.001742,-0.001750,0.249994,0,0);-ms-transform:matrix(0.248789,0.001742,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.248789,0.001742,-0.001750,0.249994,0,0);}
.mb_c00130{transform:matrix(0.248825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248825,0.000000,0.000000,0.250000,0,0);}
.m121_c00130{transform:matrix(0.249064,0.001743,-0.001750,0.249994,0,0);-ms-transform:matrix(0.249064,0.001743,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.249064,0.001743,-0.001750,0.249994,0,0);}
.m1ac_c00130{transform:matrix(0.249247,0.001994,-0.002000,0.249992,0,0);-ms-transform:matrix(0.249247,0.001994,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.249247,0.001994,-0.002000,0.249992,0,0);}
.m157_c00130{transform:matrix(0.249306,0.001496,-0.001500,0.249996,0,0);-ms-transform:matrix(0.249306,0.001496,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.249306,0.001496,-0.001500,0.249996,0,0);}
.m80_c00130{transform:matrix(0.249711,0.001498,-0.001500,0.249996,0,0);-ms-transform:matrix(0.249711,0.001498,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.249711,0.001498,-0.001500,0.249996,0,0);}
.m1c5_c00130{transform:matrix(0.250747,0.002006,-0.002000,0.249992,0,0);-ms-transform:matrix(0.250747,0.002006,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.250747,0.002006,-0.002000,0.249992,0,0);}
.m8a_c00130{transform:matrix(0.251485,0.001509,-0.001500,0.249996,0,0);-ms-transform:matrix(0.251485,0.001509,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.251485,0.001509,-0.001500,0.249996,0,0);}
.m1af_c00130{transform:matrix(0.252002,0.002016,-0.002000,0.249992,0,0);-ms-transform:matrix(0.252002,0.002016,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.252002,0.002016,-0.002000,0.249992,0,0);}
.m151_c00130{transform:matrix(0.252920,0.001518,-0.001500,0.249996,0,0);-ms-transform:matrix(0.252920,0.001518,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.252920,0.001518,-0.001500,0.249996,0,0);}
.m136_c00130{transform:matrix(0.253099,0.001772,-0.001750,0.249994,0,0);-ms-transform:matrix(0.253099,0.001772,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.253099,0.001772,-0.001750,0.249994,0,0);}
.m18a_c00130{transform:matrix(0.253682,0.002029,-0.002000,0.249992,0,0);-ms-transform:matrix(0.253682,0.002029,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.253682,0.002029,-0.002000,0.249992,0,0);}
.m7f_c00130{transform:matrix(0.253955,0.001524,-0.001500,0.249996,0,0);-ms-transform:matrix(0.253955,0.001524,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.253955,0.001524,-0.001500,0.249996,0,0);}
.m184_c00130{transform:matrix(0.254092,0.002033,-0.002000,0.249992,0,0);-ms-transform:matrix(0.254092,0.002033,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.254092,0.002033,-0.002000,0.249992,0,0);}
.m143_c00130{transform:matrix(0.254609,0.001782,-0.001750,0.249994,0,0);-ms-transform:matrix(0.254609,0.001782,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.254609,0.001782,-0.001750,0.249994,0,0);}
.m5e_c00130{transform:matrix(0.254995,0.001530,-0.001500,0.249996,0,0);-ms-transform:matrix(0.254995,0.001530,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.254995,0.001530,-0.001500,0.249996,0,0);}
.m0_c00130{transform:matrix(0.255475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255475,0.000000,0.000000,0.250000,0,0);}
.m1a3_c00130{transform:matrix(0.255552,0.002044,-0.002000,0.249992,0,0);-ms-transform:matrix(0.255552,0.002044,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.255552,0.002044,-0.002000,0.249992,0,0);}
.m1b1_c00130{transform:matrix(0.255727,0.002046,-0.002000,0.249992,0,0);-ms-transform:matrix(0.255727,0.002046,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.255727,0.002046,-0.002000,0.249992,0,0);}
.m1e8_c00130{transform:matrix(0.256007,0.002048,-0.002000,0.249992,0,0);-ms-transform:matrix(0.256007,0.002048,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.256007,0.002048,-0.002000,0.249992,0,0);}
.m83_c00130{transform:matrix(0.256205,0.001537,-0.001500,0.249996,0,0);-ms-transform:matrix(0.256205,0.001537,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.256205,0.001537,-0.001500,0.249996,0,0);}
.m4a_c00130{transform:matrix(0.256740,0.001540,-0.001500,0.249996,0,0);-ms-transform:matrix(0.256740,0.001540,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.256740,0.001540,-0.001500,0.249996,0,0);}
.m19a_c00130{transform:matrix(0.256817,0.002055,-0.002000,0.249992,0,0);-ms-transform:matrix(0.256817,0.002055,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.256817,0.002055,-0.002000,0.249992,0,0);}
.m13e_c00130{transform:matrix(0.258009,0.001806,-0.001750,0.249994,0,0);-ms-transform:matrix(0.258009,0.001806,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.258009,0.001806,-0.001750,0.249994,0,0);}
.mf5_c00130{transform:matrix(0.258459,0.001809,-0.001750,0.249994,0,0);-ms-transform:matrix(0.258459,0.001809,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.258459,0.001809,-0.001750,0.249994,0,0);}
.m163_c00130{transform:matrix(0.258685,0.001552,-0.001500,0.249996,0,0);-ms-transform:matrix(0.258685,0.001552,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.258685,0.001552,-0.001500,0.249996,0,0);}
.m84_c00130{transform:matrix(0.258830,0.001553,-0.001500,0.249996,0,0);-ms-transform:matrix(0.258830,0.001553,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.258830,0.001553,-0.001500,0.249996,0,0);}
.m12f_c00130{transform:matrix(0.259189,0.001814,-0.001750,0.249994,0,0);-ms-transform:matrix(0.259189,0.001814,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.259189,0.001814,-0.001750,0.249994,0,0);}
.m164_c00130{transform:matrix(0.259205,0.001555,-0.001500,0.249996,0,0);-ms-transform:matrix(0.259205,0.001555,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.259205,0.001555,-0.001500,0.249996,0,0);}
.mcd_c00130{transform:matrix(0.259500,0.001557,-0.001500,0.249996,0,0);-ms-transform:matrix(0.259500,0.001557,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.259500,0.001557,-0.001500,0.249996,0,0);}
.m140_c00130{transform:matrix(0.259544,0.001817,-0.001750,0.249994,0,0);-ms-transform:matrix(0.259544,0.001817,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.259544,0.001817,-0.001750,0.249994,0,0);}
.md5_c00130{transform:matrix(0.260125,0.001561,-0.001500,0.249996,0,0);-ms-transform:matrix(0.260125,0.001561,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.260125,0.001561,-0.001500,0.249996,0,0);}
.maa_c00130{transform:matrix(0.260180,0.001561,-0.001500,0.249996,0,0);-ms-transform:matrix(0.260180,0.001561,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.260180,0.001561,-0.001500,0.249996,0,0);}
.m13d_c00130{transform:matrix(0.260909,0.001826,-0.001750,0.249994,0,0);-ms-transform:matrix(0.260909,0.001826,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.260909,0.001826,-0.001750,0.249994,0,0);}
.m91_c00130{transform:matrix(0.261005,0.001566,-0.001500,0.249996,0,0);-ms-transform:matrix(0.261005,0.001566,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.261005,0.001566,-0.001500,0.249996,0,0);}
.mfc_c00130{transform:matrix(0.261529,0.001831,-0.001750,0.249994,0,0);-ms-transform:matrix(0.261529,0.001831,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.261529,0.001831,-0.001750,0.249994,0,0);}
.m144_c00130{transform:matrix(0.261544,0.001831,-0.001750,0.249994,0,0);-ms-transform:matrix(0.261544,0.001831,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.261544,0.001831,-0.001750,0.249994,0,0);}
.m1c3_c00130{transform:matrix(0.261692,0.002094,-0.002000,0.249992,0,0);-ms-transform:matrix(0.261692,0.002094,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.261692,0.002094,-0.002000,0.249992,0,0);}
.m1b3_c00130{transform:matrix(0.261942,0.002096,-0.002000,0.249992,0,0);-ms-transform:matrix(0.261942,0.002096,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.261942,0.002096,-0.002000,0.249992,0,0);}
.mf9_c00130{transform:matrix(0.262039,0.001834,-0.001750,0.249994,0,0);-ms-transform:matrix(0.262039,0.001834,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.262039,0.001834,-0.001750,0.249994,0,0);}
.m1b0_c00130{transform:matrix(0.263457,0.002108,-0.002000,0.249992,0,0);-ms-transform:matrix(0.263457,0.002108,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.263457,0.002108,-0.002000,0.249992,0,0);}
.m1c7_c00130{transform:matrix(0.263887,0.002111,-0.002000,0.249992,0,0);-ms-transform:matrix(0.263887,0.002111,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.263887,0.002111,-0.002000,0.249992,0,0);}
.m186_c00130{transform:matrix(0.264017,0.002112,-0.002000,0.249992,0,0);-ms-transform:matrix(0.264017,0.002112,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.264017,0.002112,-0.002000,0.249992,0,0);}
.m9f_c00130{transform:matrix(0.264620,0.001588,-0.001500,0.249996,0,0);-ms-transform:matrix(0.264620,0.001588,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.264620,0.001588,-0.001500,0.249996,0,0);}
.m191_c00130{transform:matrix(0.265437,0.002123,-0.002000,0.249992,0,0);-ms-transform:matrix(0.265437,0.002123,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.265437,0.002123,-0.002000,0.249992,0,0);}
.m1bd_c00130{transform:matrix(0.266401,0.002131,-0.002000,0.249992,0,0);-ms-transform:matrix(0.266401,0.002131,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.266401,0.002131,-0.002000,0.249992,0,0);}
.m15f_c00130{transform:matrix(0.266795,0.001601,-0.001500,0.249996,0,0);-ms-transform:matrix(0.266795,0.001601,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.266795,0.001601,-0.001500,0.249996,0,0);}
.m58_c00130{transform:matrix(0.266965,0.001602,-0.001500,0.249996,0,0);-ms-transform:matrix(0.266965,0.001602,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.266965,0.001602,-0.001500,0.249996,0,0);}
.m106_c00130{transform:matrix(0.266983,0.001869,-0.001750,0.249994,0,0);-ms-transform:matrix(0.266983,0.001869,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.266983,0.001869,-0.001750,0.249994,0,0);}
.mf0_c00130{transform:matrix(0.267283,0.001871,-0.001750,0.249994,0,0);-ms-transform:matrix(0.267283,0.001871,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.267283,0.001871,-0.001750,0.249994,0,0);}
.mfb_c00130{transform:matrix(0.267513,0.001873,-0.001750,0.249994,0,0);-ms-transform:matrix(0.267513,0.001873,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.267513,0.001873,-0.001750,0.249994,0,0);}
.m1b6_c00130{transform:matrix(0.267936,0.002143,-0.002000,0.249992,0,0);-ms-transform:matrix(0.267936,0.002143,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.267936,0.002143,-0.002000,0.249992,0,0);}
.m118_c00130{transform:matrix(0.268553,0.001880,-0.001750,0.249994,0,0);-ms-transform:matrix(0.268553,0.001880,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.268553,0.001880,-0.001750,0.249994,0,0);}
.m197_c00130{transform:matrix(0.268656,0.002149,-0.002000,0.249992,0,0);-ms-transform:matrix(0.268656,0.002149,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.268656,0.002149,-0.002000,0.249992,0,0);}
.m131_c00130{transform:matrix(0.268978,0.001883,-0.001750,0.249994,0,0);-ms-transform:matrix(0.268978,0.001883,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.268978,0.001883,-0.001750,0.249994,0,0);}
.m102_c00130{transform:matrix(0.269598,0.001887,-0.001750,0.249994,0,0);-ms-transform:matrix(0.269598,0.001887,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.269598,0.001887,-0.001750,0.249994,0,0);}
.m1d1_c00130{transform:matrix(0.270401,0.002163,-0.002000,0.249992,0,0);-ms-transform:matrix(0.270401,0.002163,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.270401,0.002163,-0.002000,0.249992,0,0);}
.m9d_c00130{transform:matrix(0.270410,0.001622,-0.001500,0.249996,0,0);-ms-transform:matrix(0.270410,0.001622,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.270410,0.001622,-0.001500,0.249996,0,0);}
.m6c_c00130{transform:matrix(0.270490,0.001623,-0.001500,0.249996,0,0);-ms-transform:matrix(0.270490,0.001623,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.270490,0.001623,-0.001500,0.249996,0,0);}
.m1fd_c00130{transform:matrix(0.270896,0.002167,-0.002000,0.249992,0,0);-ms-transform:matrix(0.270896,0.002167,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.270896,0.002167,-0.002000,0.249992,0,0);}
.m111_c00130{transform:matrix(0.271193,0.001898,-0.001750,0.249994,0,0);-ms-transform:matrix(0.271193,0.001898,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.271193,0.001898,-0.001750,0.249994,0,0);}
.m101_c00130{transform:matrix(0.271293,0.001899,-0.001750,0.249994,0,0);-ms-transform:matrix(0.271293,0.001899,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.271293,0.001899,-0.001750,0.249994,0,0);}
.m1b9_c00130{transform:matrix(0.272946,0.002184,-0.002000,0.249992,0,0);-ms-transform:matrix(0.272946,0.002184,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.272946,0.002184,-0.002000,0.249992,0,0);}
.m199_c00130{transform:matrix(0.273341,0.002187,-0.002000,0.249992,0,0);-ms-transform:matrix(0.273341,0.002187,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.273341,0.002187,-0.002000,0.249992,0,0);}
.m120_c00130{transform:matrix(0.273653,0.001916,-0.001750,0.249994,0,0);-ms-transform:matrix(0.273653,0.001916,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.273653,0.001916,-0.001750,0.249994,0,0);}
.m10a_c00130{transform:matrix(0.274193,0.001919,-0.001750,0.249994,0,0);-ms-transform:matrix(0.274193,0.001919,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.274193,0.001919,-0.001750,0.249994,0,0);}
.m1bb_c00130{transform:matrix(0.276681,0.002213,-0.002000,0.249992,0,0);-ms-transform:matrix(0.276681,0.002213,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.276681,0.002213,-0.002000,0.249992,0,0);}
.m64_c00130{transform:matrix(0.277330,0.001664,-0.001500,0.249996,0,0);-ms-transform:matrix(0.277330,0.001664,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.277330,0.001664,-0.001500,0.249996,0,0);}
.m148_c00130{transform:matrix(0.278348,0.001948,-0.001750,0.249994,0,0);-ms-transform:matrix(0.278348,0.001948,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.278348,0.001948,-0.001750,0.249994,0,0);}
.m1f9_c00130{transform:matrix(0.278561,0.002228,-0.002000,0.249992,0,0);-ms-transform:matrix(0.278561,0.002228,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.278561,0.002228,-0.002000,0.249992,0,0);}
.m19c_c00130{transform:matrix(0.278911,0.002231,-0.002000,0.249992,0,0);-ms-transform:matrix(0.278911,0.002231,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.278911,0.002231,-0.002000,0.249992,0,0);}
.m8_c00130{transform:matrix(0.279145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279145,0.000000,0.000000,0.250000,0,0);}
.mb6_c00130{transform:matrix(0.281040,0.001686,-0.001500,0.249996,0,0);-ms-transform:matrix(0.281040,0.001686,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.281040,0.001686,-0.001500,0.249996,0,0);}
.m141_c00130{transform:matrix(0.282743,0.001979,-0.001750,0.249994,0,0);-ms-transform:matrix(0.282743,0.001979,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.282743,0.001979,-0.001750,0.249994,0,0);}
.m1cc_c00130{transform:matrix(0.282911,0.002263,-0.002000,0.249992,0,0);-ms-transform:matrix(0.282911,0.002263,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.282911,0.002263,-0.002000,0.249992,0,0);}
.m9a_c00130{transform:matrix(0.283995,0.001704,-0.001500,0.249996,0,0);-ms-transform:matrix(0.283995,0.001704,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.283995,0.001704,-0.001500,0.249996,0,0);}
.m1ae_c00130{transform:matrix(0.286381,0.002291,-0.002000,0.249992,0,0);-ms-transform:matrix(0.286381,0.002291,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.286381,0.002291,-0.002000,0.249992,0,0);}
.m12_c00130{transform:matrix(0.287120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287120,0.000000,0.000000,0.250000,0,0);}
.mab_c00130{transform:matrix(0.291745,0.001750,-0.001500,0.249996,0,0);-ms-transform:matrix(0.291745,0.001750,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.291745,0.001750,-0.001500,0.249996,0,0);}
.m1f4_c00130{transform:matrix(0.292236,0.002338,-0.002000,0.249992,0,0);-ms-transform:matrix(0.292236,0.002338,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.292236,0.002338,-0.002000,0.249992,0,0);}
.m1e2_c00130{transform:matrix(0.294071,0.002353,-0.002000,0.249992,0,0);-ms-transform:matrix(0.294071,0.002353,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.294071,0.002353,-0.002000,0.249992,0,0);}
.m1fc_c00130{transform:matrix(0.295331,0.002363,-0.002000,0.249992,0,0);-ms-transform:matrix(0.295331,0.002363,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.295331,0.002363,-0.002000,0.249992,0,0);}
.m1bc_c00130{transform:matrix(0.295441,0.002364,-0.002000,0.249992,0,0);-ms-transform:matrix(0.295441,0.002364,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.295441,0.002364,-0.002000,0.249992,0,0);}
.mcb_c00130{transform:matrix(0.298830,0.001793,-0.001500,0.249996,0,0);-ms-transform:matrix(0.298830,0.001793,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.298830,0.001793,-0.001500,0.249996,0,0);}
.m1c0_c00130{transform:matrix(0.299545,0.002396,-0.002000,0.249992,0,0);-ms-transform:matrix(0.299545,0.002396,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.299545,0.002396,-0.002000,0.249992,0,0);}
.m1a7_c00130{transform:matrix(0.299990,0.002400,-0.002000,0.249992,0,0);-ms-transform:matrix(0.299990,0.002400,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.299990,0.002400,-0.002000,0.249992,0,0);}
.m1f7_c00130{transform:matrix(0.300735,0.002406,-0.002000,0.249992,0,0);-ms-transform:matrix(0.300735,0.002406,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.300735,0.002406,-0.002000,0.249992,0,0);}
.m1bf_c00130{transform:matrix(0.307355,0.002459,-0.002000,0.249992,0,0);-ms-transform:matrix(0.307355,0.002459,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.307355,0.002459,-0.002000,0.249992,0,0);}
.m1ba_c00130{transform:matrix(0.310495,0.002484,-0.002000,0.249992,0,0);-ms-transform:matrix(0.310495,0.002484,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.310495,0.002484,-0.002000,0.249992,0,0);}
.m1b7_c00130{transform:matrix(0.320270,0.002562,-0.002000,0.249992,0,0);-ms-transform:matrix(0.320270,0.002562,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.320270,0.002562,-0.002000,0.249992,0,0);}
.mef_c00130{transform:matrix(0.322402,0.002257,-0.001750,0.249994,0,0);-ms-transform:matrix(0.322402,0.002257,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.322402,0.002257,-0.001750,0.249994,0,0);}
.m36_c00130{transform:matrix(0.326414,0.001958,-0.001500,0.249996,0,0);-ms-transform:matrix(0.326414,0.001958,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.326414,0.001958,-0.001500,0.249996,0,0);}
.m62_c00130{transform:matrix(0.330094,0.001981,-0.001500,0.249996,0,0);-ms-transform:matrix(0.330094,0.001981,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.330094,0.001981,-0.001500,0.249996,0,0);}
.m1ad_c00130{transform:matrix(0.331069,0.002649,-0.002000,0.249992,0,0);-ms-transform:matrix(0.331069,0.002649,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.331069,0.002649,-0.002000,0.249992,0,0);}
.m192_c00130{transform:matrix(0.334434,0.002675,-0.002000,0.249992,0,0);-ms-transform:matrix(0.334434,0.002675,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.334434,0.002675,-0.002000,0.249992,0,0);}
.m1a6_c00130{transform:matrix(0.334474,0.002676,-0.002000,0.249992,0,0);-ms-transform:matrix(0.334474,0.002676,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.334474,0.002676,-0.002000,0.249992,0,0);}
.mda_c00130{transform:matrix(0.336344,0.002018,-0.001500,0.249996,0,0);-ms-transform:matrix(0.336344,0.002018,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.336344,0.002018,-0.001500,0.249996,0,0);}
.m12b_c00130{transform:matrix(0.336802,0.002358,-0.001750,0.249994,0,0);-ms-transform:matrix(0.336802,0.002358,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.336802,0.002358,-0.001750,0.249994,0,0);}
.m11f_c00130{transform:matrix(0.342982,0.002401,-0.001750,0.249994,0,0);-ms-transform:matrix(0.342982,0.002401,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.342982,0.002401,-0.001750,0.249994,0,0);}
.m16a_c00130{transform:matrix(0.344739,0.002068,-0.001500,0.249996,0,0);-ms-transform:matrix(0.344739,0.002068,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.344739,0.002068,-0.001500,0.249996,0,0);}
.mdc_c00130{transform:matrix(0.345094,0.002071,-0.001500,0.249996,0,0);-ms-transform:matrix(0.345094,0.002071,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.345094,0.002071,-0.001500,0.249996,0,0);}
.me4_c00130{transform:matrix(0.345894,0.002075,-0.001500,0.249996,0,0);-ms-transform:matrix(0.345894,0.002075,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.345894,0.002075,-0.001500,0.249996,0,0);}
.m1c1_c00130{transform:matrix(0.359618,0.002877,-0.002000,0.249992,0,0);-ms-transform:matrix(0.359618,0.002877,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.359618,0.002877,-0.002000,0.249992,0,0);}
.m13c_c00130{transform:matrix(0.364546,0.002552,-0.001750,0.249994,0,0);-ms-transform:matrix(0.364546,0.002552,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.364546,0.002552,-0.001750,0.249994,0,0);}
.m1e0_c00130{transform:matrix(0.367730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367730,0.000000,0.000000,0.250000,0,0);}
.m1cf_c00130{transform:matrix(0.378078,0.003025,-0.002000,0.249992,0,0);-ms-transform:matrix(0.378078,0.003025,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.378078,0.003025,-0.002000,0.249992,0,0);}
.ma7_c00130{transform:matrix(0.382568,0.002295,-0.001500,0.249996,0,0);-ms-transform:matrix(0.382568,0.002295,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.382568,0.002295,-0.001500,0.249996,0,0);}
.m1be_c00130{transform:matrix(0.393132,0.003145,-0.002000,0.249992,0,0);-ms-transform:matrix(0.393132,0.003145,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.393132,0.003145,-0.002000,0.249992,0,0);}
.m1b8_c00130{transform:matrix(0.411852,0.003295,-0.002000,0.249992,0,0);-ms-transform:matrix(0.411852,0.003295,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.411852,0.003295,-0.002000,0.249992,0,0);}
.ma9_c00130{transform:matrix(0.418867,0.002513,-0.001500,0.249996,0,0);-ms-transform:matrix(0.418867,0.002513,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.418867,0.002513,-0.001500,0.249996,0,0);}
.m37_c00130{transform:matrix(0.432572,0.002595,-0.001500,0.249996,0,0);-ms-transform:matrix(0.432572,0.002595,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.432572,0.002595,-0.001500,0.249996,0,0);}
.m76_c00130{transform:matrix(0.452237,0.002713,-0.001500,0.249996,0,0);-ms-transform:matrix(0.452237,0.002713,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.452237,0.002713,-0.001500,0.249996,0,0);}
.m1cb_c00130{transform:matrix(0.460290,0.003682,-0.002000,0.249992,0,0);-ms-transform:matrix(0.460290,0.003682,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.460290,0.003682,-0.002000,0.249992,0,0);}
.m3a_c00130{transform:matrix(0.479726,0.002878,-0.001500,0.249996,0,0);-ms-transform:matrix(0.479726,0.002878,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.479726,0.002878,-0.001500,0.249996,0,0);}
.m33_c00130{transform:matrix(0.488051,0.002928,-0.001500,0.249996,0,0);-ms-transform:matrix(0.488051,0.002928,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.488051,0.002928,-0.001500,0.249996,0,0);}
.me7_c00130{transform:matrix(0.492766,0.002957,-0.001500,0.249996,0,0);-ms-transform:matrix(0.492766,0.002957,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.492766,0.002957,-0.001500,0.249996,0,0);}
.m169_c00130{transform:matrix(0.493961,0.002964,-0.001500,0.249996,0,0);-ms-transform:matrix(0.493961,0.002964,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.493961,0.002964,-0.001500,0.249996,0,0);}
.m1de_c00130{transform:matrix(0.496815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.496815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.496815,0.000000,0.000000,0.250000,0,0);}
.m39_c00130{transform:matrix(0.517431,0.003105,-0.001500,0.249996,0,0);-ms-transform:matrix(0.517431,0.003105,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.517431,0.003105,-0.001500,0.249996,0,0);}
.m63_c00130{transform:matrix(0.529175,0.003175,-0.001500,0.249996,0,0);-ms-transform:matrix(0.529175,0.003175,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.529175,0.003175,-0.001500,0.249996,0,0);}
.m1dc_c00130{transform:matrix(0.530330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530330,0.000000,0.000000,0.250000,0,0);}
.m74_c00130{transform:matrix(0.599964,0.003600,-0.001500,0.249996,0,0);-ms-transform:matrix(0.599964,0.003600,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.599964,0.003600,-0.001500,0.249996,0,0);}
.m78_c00130{transform:matrix(0.648988,0.003894,-0.001500,0.249996,0,0);-ms-transform:matrix(0.648988,0.003894,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.648988,0.003894,-0.001500,0.249996,0,0);}
.m7_c00130{transform:matrix(0.652355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.652355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.652355,0.000000,0.000000,0.250000,0,0);}
.m82_c00130{transform:matrix(0.666003,0.003996,-0.001500,0.249996,0,0);-ms-transform:matrix(0.666003,0.003996,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.666003,0.003996,-0.001500,0.249996,0,0);}
.m75_c00130{transform:matrix(0.716902,0.004301,-0.001500,0.249996,0,0);-ms-transform:matrix(0.716902,0.004301,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.716902,0.004301,-0.001500,0.249996,0,0);}
.m77_c00130{transform:matrix(0.775866,0.004655,-0.001500,0.249996,0,0);-ms-transform:matrix(0.775866,0.004655,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.775866,0.004655,-0.001500,0.249996,0,0);}
.m167_c00130{transform:matrix(0.780066,0.004680,-0.001500,0.249996,0,0);-ms-transform:matrix(0.780066,0.004680,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.780066,0.004680,-0.001500,0.249996,0,0);}
.m4f_c00130{transform:matrix(0.825770,0.004955,-0.001500,0.249996,0,0);-ms-transform:matrix(0.825770,0.004955,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.825770,0.004955,-0.001500,0.249996,0,0);}
.m17b_c00130{transform:matrix(0.872985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.872985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.872985,0.000000,0.000000,0.250000,0,0);}
.m32_c00130{transform:matrix(0.904819,0.005429,-0.001500,0.249996,0,0);-ms-transform:matrix(0.904819,0.005429,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.904819,0.005429,-0.001500,0.249996,0,0);}
.m17d_c00130{transform:matrix(1.434520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.434520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.434520,0.000000,0.000000,0.250000,0,0);}
.m4e_c00130{transform:matrix(1.490153,0.008941,-0.001500,0.249996,0,0);-ms-transform:matrix(1.490153,0.008941,-0.001500,0.249996,0,0);-webkit-transform:matrix(1.490153,0.008941,-0.001500,0.249996,0,0);}
.m17c_c00130{transform:matrix(1.509345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.509345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.509345,0.000000,0.000000,0.250000,0,0);}
.m1dd_c00130{transform:matrix(2.198665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.198665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.198665,0.000000,0.000000,0.250000,0,0);}
.m61_c00130{transform:matrix(2.791855,0.016751,-0.001500,0.249996,0,0);-ms-transform:matrix(2.791855,0.016751,-0.001500,0.249996,0,0);-webkit-transform:matrix(2.791855,0.016751,-0.001500,0.249996,0,0);}
.v0_c00130{vertical-align:0.000000px;}
.ls0_c00130{letter-spacing:0.000000px;}
.sc__c00130{text-shadow:none;}
.sc0_c00130{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__c00130{-webkit-text-stroke:0px transparent;}
.sc0_c00130{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00130{word-spacing:0.000000px;}
._1_c00130{margin-left:-13.909790px;}
._0_c00130{width:16.134862px;}
.fc0_c00130{color:transparent;}
.fsa_c00130{font-size:18.000000px;}
.fs8_c00130{font-size:48.000864px;}
.fs6_c00130{font-size:48.001176px;}
.fsb_c00130{font-size:48.001536px;}
.fs9_c00130{font-size:54.000972px;}
.fs7_c00130{font-size:54.001323px;}
.fsc_c00130{font-size:54.001728px;}
.fs0_c00130{font-size:60.000000px;}
.fs4_c00130{font-size:60.001080px;}
.fs2_c00130{font-size:66.001188px;}
.fs1_c00130{font-size:72.001296px;}
.fs3_c00130{font-size:78.001404px;}
.fs5_c00130{font-size:96.001728px;}
.y0_c00130{bottom:0.000000px;}
.y1dc_c00130{bottom:94.500000px;}
.y1f2_c00130{bottom:99.051540px;}
.y1f3_c00130{bottom:99.051552px;}
.y1f1_c00130{bottom:99.051588px;}
.y1f8_c00130{bottom:99.052200px;}
.y1f4_c00130{bottom:99.052212px;}
.y1f5_c00130{bottom:99.052272px;}
.y1f9_c00130{bottom:99.052452px;}
.y1fa_c00130{bottom:99.052644px;}
.y1f7_c00130{bottom:99.052716px;}
.y1f6_c00130{bottom:99.052764px;}
.y1fb_c00130{bottom:99.053316px;}
.y1ee_c00130{bottom:116.639388px;}
.y1f0_c00130{bottom:116.639580px;}
.y1ef_c00130{bottom:116.639808px;}
.y1ed_c00130{bottom:126.541140px;}
.y1ec_c00130{bottom:126.811032px;}
.y1eb_c00130{bottom:127.128744px;}
.y1ea_c00130{bottom:127.361928px;}
.y1e9_c00130{bottom:127.511088px;}
.y1e8_c00130{bottom:128.044620px;}
.y1e7_c00130{bottom:128.696976px;}
.y1e6_c00130{bottom:128.846028px;}
.y1e5_c00130{bottom:129.733800px;}
.y1e4_c00130{bottom:129.913080px;}
.y1e3_c00130{bottom:130.061940px;}
.y1e2_c00130{bottom:130.520040px;}
.y1e1_c00130{bottom:131.008200px;}
.y1e0_c00130{bottom:131.174520px;}
.y1df_c00130{bottom:131.258580px;}
.y1de_c00130{bottom:131.915436px;}
.y1dd_c00130{bottom:132.030000px;}
.y1db_c00130{bottom:140.635848px;}
.y1da_c00130{bottom:140.804388px;}
.y1d9_c00130{bottom:141.307788px;}
.y1d8_c00130{bottom:141.562404px;}
.y1d7_c00130{bottom:142.176072px;}
.y1d6_c00130{bottom:142.472016px;}
.y1d5_c00130{bottom:142.674984px;}
.y1d4_c00130{bottom:143.208624px;}
.y1d3_c00130{bottom:143.524020px;}
.y1d2_c00130{bottom:143.683764px;}
.y1d1_c00130{bottom:143.800680px;}
.y1d0_c00130{bottom:144.079308px;}
.y1cf_c00130{bottom:144.606180px;}
.y1ce_c00130{bottom:144.720624px;}
.y1cd_c00130{bottom:145.049052px;}
.y1cc_c00130{bottom:145.187352px;}
.y1cb_c00130{bottom:145.731588px;}
.y1ca_c00130{bottom:145.820112px;}
.y1c9_c00130{bottom:155.247732px;}
.y1c8_c00130{bottom:155.469840px;}
.y1c7_c00130{bottom:155.952504px;}
.y1c6_c00130{bottom:156.125196px;}
.y1c5_c00130{bottom:156.387096px;}
.y1c4_c00130{bottom:156.589608px;}
.y1c3_c00130{bottom:157.705548px;}
.y1c2_c00130{bottom:157.923912px;}
.y1c1_c00130{bottom:158.104932px;}
.y1c0_c00130{bottom:158.622852px;}
.y1bf_c00130{bottom:158.787888px;}
.y1be_c00130{bottom:159.470640px;}
.y1bd_c00130{bottom:159.589872px;}
.y1bc_c00130{bottom:159.996840px;}
.y1bb_c00130{bottom:160.703796px;}
.y1ba_c00130{bottom:160.912020px;}
.y1b9_c00130{bottom:161.104572px;}
.y1b8_c00130{bottom:161.741700px;}
.y1b7_c00130{bottom:162.164712px;}
.y1b6_c00130{bottom:162.264240px;}
.y1b5_c00130{bottom:170.521644px;}
.y1b4_c00130{bottom:170.908944px;}
.y1b3_c00130{bottom:171.090816px;}
.y1b2_c00130{bottom:171.240456px;}
.y1b1_c00130{bottom:171.770292px;}
.y1b0_c00130{bottom:171.945552px;}
.y1af_c00130{bottom:172.455408px;}
.y1ae_c00130{bottom:172.900020px;}
.y1ad_c00130{bottom:173.199828px;}
.y1ac_c00130{bottom:173.402652px;}
.y1ab_c00130{bottom:173.939520px;}
.y1aa_c00130{bottom:174.043320px;}
.y1a9_c00130{bottom:174.163572px;}
.y1a8_c00130{bottom:174.274488px;}
.y1a7_c00130{bottom:174.465660px;}
.y1a6_c00130{bottom:174.585816px;}
.y1a5_c00130{bottom:174.717048px;}
.y1a4_c00130{bottom:175.157256px;}
.y1a3_c00130{bottom:175.223448px;}
.y1a2_c00130{bottom:185.138028px;}
.y1a1_c00130{bottom:185.337048px;}
.y1a0_c00130{bottom:185.562696px;}
.y19f_c00130{bottom:185.671788px;}
.y19e_c00130{bottom:186.026208px;}
.y19d_c00130{bottom:186.110544px;}
.y19c_c00130{bottom:186.242724px;}
.y19b_c00130{bottom:186.318804px;}
.y19a_c00130{bottom:186.447408px;}
.y199_c00130{bottom:186.799788px;}
.y198_c00130{bottom:186.976248px;}
.y197_c00130{bottom:187.242756px;}
.y179_c00130{bottom:187.380000px;}
.y196_c00130{bottom:187.562028px;}
.y195_c00130{bottom:187.678668px;}
.y194_c00130{bottom:187.971972px;}
.y193_c00130{bottom:188.085936px;}
.y192_c00130{bottom:188.170356px;}
.y191_c00130{bottom:188.372856px;}
.y190_c00130{bottom:188.602188px;}
.y18f_c00130{bottom:188.728680px;}
.y18e_c00130{bottom:198.197196px;}
.y18d_c00130{bottom:198.322356px;}
.y18c_c00130{bottom:198.668088px;}
.y18b_c00130{bottom:198.782628px;}
.y18a_c00130{bottom:199.311840px;}
.y189_c00130{bottom:199.460904px;}
.y188_c00130{bottom:199.931784px;}
.y187_c00130{bottom:200.104596px;}
.y186_c00130{bottom:200.722356px;}
.y185_c00130{bottom:200.860608px;}
.y184_c00130{bottom:201.314208px;}
.y183_c00130{bottom:201.461100px;}
.y182_c00130{bottom:201.847728px;}
.y181_c00130{bottom:201.960048px;}
.y180_c00130{bottom:202.372608px;}
.y17f_c00130{bottom:202.573308px;}
.y17e_c00130{bottom:202.748448px;}
.y17d_c00130{bottom:202.867248px;}
.y17c_c00130{bottom:202.955628px;}
.y17b_c00130{bottom:203.446104px;}
.y17a_c00130{bottom:203.580000px;}
.y178_c00130{bottom:213.178257px;}
.y177_c00130{bottom:213.423276px;}
.y176_c00130{bottom:213.846264px;}
.y175_c00130{bottom:214.000011px;}
.y174_c00130{bottom:214.253109px;}
.y173_c00130{bottom:214.536618px;}
.y172_c00130{bottom:214.832967px;}
.y171_c00130{bottom:215.108478px;}
.y170_c00130{bottom:215.427276px;}
.y16f_c00130{bottom:215.589105px;}
.y16e_c00130{bottom:215.901414px;}
.y16d_c00130{bottom:216.061614px;}
.y16c_c00130{bottom:216.486105px;}
.y16b_c00130{bottom:216.591825px;}
.y16a_c00130{bottom:216.955437px;}
.y169_c00130{bottom:217.327023px;}
.y168_c00130{bottom:217.389573px;}
.y167_c00130{bottom:217.735434px;}
.y166_c00130{bottom:217.768878px;}
.y165_c00130{bottom:217.844151px;}
.y164_c00130{bottom:227.180484px;}
.y163_c00130{bottom:227.387844px;}
.y162_c00130{bottom:227.710332px;}
.y161_c00130{bottom:228.071601px;}
.y160_c00130{bottom:228.261168px;}
.y15f_c00130{bottom:228.400479px;}
.y15e_c00130{bottom:228.520368px;}
.y15d_c00130{bottom:229.134366px;}
.y15c_c00130{bottom:229.275315px;}
.y15b_c00130{bottom:229.510233px;}
.y15a_c00130{bottom:229.732182px;}
.y159_c00130{bottom:229.850343px;}
.y158_c00130{bottom:229.916754px;}
.y157_c00130{bottom:230.069124px;}
.y156_c00130{bottom:230.166333px;}
.y155_c00130{bottom:230.265144px;}
.y154_c00130{bottom:230.352624px;}
.y153_c00130{bottom:230.592402px;}
.y152_c00130{bottom:230.663574px;}
.y151_c00130{bottom:230.764113px;}
.y150_c00130{bottom:230.854842px;}
.y14f_c00130{bottom:230.913153px;}
.y14e_c00130{bottom:231.007131px;}
.y14d_c00130{bottom:231.245271px;}
.y14c_c00130{bottom:231.476931px;}
.y14b_c00130{bottom:231.577398px;}
.y14a_c00130{bottom:231.660000px;}
.y149_c00130{bottom:241.681698px;}
.y148_c00130{bottom:242.054877px;}
.y147_c00130{bottom:242.145748px;}
.y146_c00130{bottom:242.258180px;}
.y145_c00130{bottom:242.615912px;}
.y144_c00130{bottom:242.961840px;}
.y143_c00130{bottom:243.066711px;}
.y142_c00130{bottom:243.197312px;}
.y141_c00130{bottom:243.620123px;}
.y140_c00130{bottom:244.056923px;}
.y13f_c00130{bottom:244.142093px;}
.y13e_c00130{bottom:244.258673px;}
.y13d_c00130{bottom:244.568642px;}
.y13c_c00130{bottom:244.659513px;}
.y13b_c00130{bottom:244.983513px;}
.y13a_c00130{bottom:245.131388px;}
.y139_c00130{bottom:245.593685px;}
.y138_c00130{bottom:245.913873px;}
.y137_c00130{bottom:246.139083px;}
.y136_c00130{bottom:246.239805px;}
.y135_c00130{bottom:256.267716px;}
.y134_c00130{bottom:256.356782px;}
.y133_c00130{bottom:256.441973px;}
.y132_c00130{bottom:256.619768px;}
.y131_c00130{bottom:257.119925px;}
.y130_c00130{bottom:257.220500px;}
.y12f_c00130{bottom:257.524893px;}
.y12e_c00130{bottom:257.714565px;}
.y12d_c00130{bottom:257.831166px;}
.y12c_c00130{bottom:258.435647px;}
.y12b_c00130{bottom:258.560187px;}
.y12a_c00130{bottom:258.672597px;}
.y129_c00130{bottom:259.075707px;}
.y128_c00130{bottom:259.182436px;}
.y127_c00130{bottom:259.822497px;}
.y126_c00130{bottom:259.948917px;}
.y125_c00130{bottom:260.086962px;}
.y124_c00130{bottom:260.138536px;}
.y123_c00130{bottom:260.500059px;}
.y122_c00130{bottom:260.548713px;}
.y121_c00130{bottom:270.159350px;}
.y120_c00130{bottom:270.268980px;}
.y11f_c00130{bottom:270.720701px;}
.y11e_c00130{bottom:270.826551px;}
.y11d_c00130{bottom:271.021242px;}
.y11c_c00130{bottom:271.274481px;}
.y11b_c00130{bottom:271.401122px;}
.y11a_c00130{bottom:271.499297px;}
.y119_c00130{bottom:271.786702px;}
.y118_c00130{bottom:272.155253px;}
.y117_c00130{bottom:272.387870px;}
.y116_c00130{bottom:272.760126px;}
.y115_c00130{bottom:272.888499px;}
.y114_c00130{bottom:273.002004px;}
.y113_c00130{bottom:273.387554px;}
.y112_c00130{bottom:273.493415px;}
.y111_c00130{bottom:273.935664px;}
.y110_c00130{bottom:274.249415px;}
.y10f_c00130{bottom:274.317465px;}
.y10e_c00130{bottom:274.372265px;}
.y10d_c00130{bottom:274.529408px;}
.y10c_c00130{bottom:274.963845px;}
.y10b_c00130{bottom:275.014665px;}
.y10a_c00130{bottom:275.130050px;}
.y109_c00130{bottom:284.597740px;}
.y108_c00130{bottom:284.965260px;}
.y107_c00130{bottom:285.149241px;}
.y106_c00130{bottom:285.279536px;}
.y105_c00130{bottom:285.392262px;}
.y104_c00130{bottom:285.747682px;}
.y103_c00130{bottom:285.816837px;}
.y102_c00130{bottom:286.133013px;}
.y101_c00130{bottom:286.466843px;}
.y100_c00130{bottom:286.599344px;}
.yff_c00130{bottom:286.777233px;}
.yfe_c00130{bottom:287.158478px;}
.yfd_c00130{bottom:287.759105px;}
.yfc_c00130{bottom:287.889305px;}
.yfb_c00130{bottom:287.952389px;}
.yfa_c00130{bottom:288.280653px;}
.yf9_c00130{bottom:288.462260px;}
.yf8_c00130{bottom:289.013633px;}
.yf7_c00130{bottom:289.098308px;}
.yf6_c00130{bottom:299.004632px;}
.yf5_c00130{bottom:299.371617px;}
.yf4_c00130{bottom:299.475567px;}
.yf3_c00130{bottom:300.070917px;}
.yf2_c00130{bottom:300.358313px;}
.yf1_c00130{bottom:300.543343px;}
.yf0_c00130{bottom:300.893130px;}
.yef_c00130{bottom:301.093470px;}
.yee_c00130{bottom:301.516862px;}
.yed_c00130{bottom:301.692526px;}
.yec_c00130{bottom:302.240742px;}
.yeb_c00130{bottom:302.416407px;}
.yea_c00130{bottom:302.885253px;}
.ye9_c00130{bottom:303.040233px;}
.ye8_c00130{bottom:303.123267px;}
.ye7_c00130{bottom:303.822735px;}
.ye6_c00130{bottom:304.021500px;}
.ye5_c00130{bottom:330.950784px;}
.ye4_c00130{bottom:331.727442px;}
.ye3_c00130{bottom:331.996257px;}
.ye2_c00130{bottom:332.140773px;}
.ye1_c00130{bottom:332.368164px;}
.ye0_c00130{bottom:332.715960px;}
.ydf_c00130{bottom:332.821392px;}
.yde_c00130{bottom:333.127413px;}
.ydd_c00130{bottom:333.630378px;}
.ydc_c00130{bottom:333.963480px;}
.ydb_c00130{bottom:334.354311px;}
.yda_c00130{bottom:335.067240px;}
.yd9_c00130{bottom:356.088801px;}
.yd8_c00130{bottom:357.914640px;}
.yd7_c00130{bottom:358.313613px;}
.yd6_c00130{bottom:358.456122px;}
.yd5_c00130{bottom:358.928622px;}
.yd4_c00130{bottom:359.099898px;}
.yd3_c00130{bottom:359.295411px;}
.yd2_c00130{bottom:359.444391px;}
.yd1_c00130{bottom:359.516640px;}
.yd0_c00130{bottom:359.851326px;}
.ycf_c00130{bottom:360.187641px;}
.yce_c00130{bottom:360.463143px;}
.ycd_c00130{bottom:374.716416px;}
.ycc_c00130{bottom:375.349269px;}
.ycb_c00130{bottom:375.618183px;}
.yca_c00130{bottom:376.089225px;}
.yc9_c00130{bottom:376.375956px;}
.yc8_c00130{bottom:376.574574px;}
.yc7_c00130{bottom:376.825890px;}
.yc6_c00130{bottom:377.237667px;}
.yc5_c00130{bottom:377.441145px;}
.yc4_c00130{bottom:377.599743px;}
.yc3_c00130{bottom:378.167013px;}
.yc2_c00130{bottom:378.432969px;}
.yc1_c00130{bottom:378.516042px;}
.yc0_c00130{bottom:378.807495px;}
.ybf_c00130{bottom:391.280454px;}
.ybe_c00130{bottom:392.848599px;}
.ybd_c00130{bottom:393.122526px;}
.ybc_c00130{bottom:393.514977px;}
.ybb_c00130{bottom:393.710355px;}
.yba_c00130{bottom:393.900984px;}
.yb9_c00130{bottom:394.163538px;}
.yb8_c00130{bottom:394.359015px;}
.yb7_c00130{bottom:394.671306px;}
.yb6_c00130{bottom:395.280090px;}
.yb5_c00130{bottom:395.508372px;}
.yb4_c00130{bottom:395.819340px;}
.yb3_c00130{bottom:408.495555px;}
.yb2_c00130{bottom:410.063736px;}
.yb1_c00130{bottom:410.726910px;}
.yb0_c00130{bottom:410.919105px;}
.yaf_c00130{bottom:411.108168px;}
.yae_c00130{bottom:411.373899px;}
.yad_c00130{bottom:411.569439px;}
.yac_c00130{bottom:411.883341px;}
.yab_c00130{bottom:412.488795px;}
.yaa_c00130{bottom:412.791477px;}
.ya9_c00130{bottom:413.099019px;}
.ya8_c00130{bottom:425.916096px;}
.ya7_c00130{bottom:427.239663px;}
.ya6_c00130{bottom:427.469685px;}
.ya5_c00130{bottom:427.827741px;}
.ya4_c00130{bottom:427.980021px;}
.ya3_c00130{bottom:428.140410px;}
.ya2_c00130{bottom:428.352549px;}
.ya1_c00130{bottom:428.551908px;}
.ya0_c00130{bottom:428.801424px;}
.y9f_c00130{bottom:429.253431px;}
.y9e_c00130{bottom:429.319761px;}
.y9d_c00130{bottom:429.839853px;}
.y9c_c00130{bottom:444.657621px;}
.y9b_c00130{bottom:444.960204px;}
.y9a_c00130{bottom:445.179117px;}
.y99_c00130{bottom:445.780386px;}
.y98_c00130{bottom:445.971363px;}
.y97_c00130{bottom:446.257875px;}
.y96_c00130{bottom:446.389515px;}
.y95_c00130{bottom:446.526117px;}
.y94_c00130{bottom:446.718795px;}
.y93_c00130{bottom:446.875215px;}
.y92_c00130{bottom:447.081084px;}
.y91_c00130{bottom:447.454824px;}
.y90_c00130{bottom:447.515715px;}
.y8f_c00130{bottom:447.630888px;}
.y8e_c00130{bottom:447.930258px;}
.y8d_c00130{bottom:460.818018px;}
.y8c_c00130{bottom:461.264850px;}
.y8b_c00130{bottom:462.165858px;}
.y8a_c00130{bottom:462.394305px;}
.y89_c00130{bottom:462.737745px;}
.y88_c00130{bottom:462.903039px;}
.y87_c00130{bottom:463.066623px;}
.y86_c00130{bottom:463.270662px;}
.y85_c00130{bottom:463.468509px;}
.y84_c00130{bottom:463.727646px;}
.y83_c00130{bottom:463.909104px;}
.y82_c00130{bottom:464.161788px;}
.y81_c00130{bottom:464.245974px;}
.y80_c00130{bottom:464.401044px;}
.y7f_c00130{bottom:478.292526px;}
.y7e_c00130{bottom:479.865411px;}
.y7d_c00130{bottom:480.131349px;}
.y7c_c00130{bottom:480.533409px;}
.y7b_c00130{bottom:480.724038px;}
.y7a_c00130{bottom:480.913056px;}
.y79_c00130{bottom:481.175583px;}
.y78_c00130{bottom:481.375938px;}
.y77_c00130{bottom:481.683507px;}
.y76_c00130{bottom:481.896585px;}
.y75_c00130{bottom:482.192916px;}
.y74_c00130{bottom:482.489247px;}
.y73_c00130{bottom:495.471708px;}
.y72_c00130{bottom:497.383953px;}
.y71_c00130{bottom:497.569791px;}
.y70_c00130{bottom:498.030351px;}
.y6f_c00130{bottom:498.252720px;}
.y6e_c00130{bottom:498.468729px;}
.y6d_c00130{bottom:498.767127px;}
.y6c_c00130{bottom:498.991260px;}
.y6b_c00130{bottom:499.591638px;}
.y6a_c00130{bottom:499.915629px;}
.y69_c00130{bottom:500.041089px;}
.y68_c00130{bottom:513.431877px;}
.y67_c00130{bottom:514.033842px;}
.y66_c00130{bottom:514.482309px;}
.y65_c00130{bottom:514.845867px;}
.y64_c00130{bottom:515.427327px;}
.y63_c00130{bottom:515.927016px;}
.y62_c00130{bottom:516.938076px;}
.y61_c00130{bottom:517.322454px;}
.y60_c00130{bottom:531.628497px;}
.y5f_c00130{bottom:531.849690px;}
.y5e_c00130{bottom:532.000299px;}
.y5d_c00130{bottom:532.519299px;}
.y5c_c00130{bottom:532.615293px;}
.y5b_c00130{bottom:533.059164px;}
.y5a_c00130{bottom:533.565315px;}
.y59_c00130{bottom:533.751084px;}
.y58_c00130{bottom:534.016887px;}
.y57_c00130{bottom:534.209244px;}
.y56_c00130{bottom:534.585696px;}
.y55_c00130{bottom:534.744195px;}
.y54_c00130{bottom:535.029333px;}
.y53_c00130{bottom:535.138293px;}
.y52_c00130{bottom:548.927091px;}
.y51_c00130{bottom:549.290739px;}
.y50_c00130{bottom:549.476499px;}
.y4f_c00130{bottom:550.275525px;}
.y4e_c00130{bottom:551.526618px;}
.y4d_c00130{bottom:551.949534px;}
.y4c_c00130{bottom:552.170457px;}
.y4b_c00130{bottom:552.687972px;}
.y3d_c00130{bottom:567.946302px;}
.y3c_c00130{bottom:567.946362px;}
.y3e_c00130{bottom:567.946611px;}
.y3f_c00130{bottom:567.946851px;}
.y42_c00130{bottom:567.946920px;}
.y48_c00130{bottom:567.946938px;}
.y40_c00130{bottom:567.947100px;}
.y41_c00130{bottom:567.947160px;}
.y45_c00130{bottom:567.947469px;}
.y4a_c00130{bottom:567.947496px;}
.y47_c00130{bottom:567.947538px;}
.y43_c00130{bottom:567.947580px;}
.y49_c00130{bottom:567.947607px;}
.y44_c00130{bottom:567.948000px;}
.y46_c00130{bottom:567.948198px;}
.y3b_c00130{bottom:583.399512px;}
.y3a_c00130{bottom:584.285361px;}
.y39_c00130{bottom:585.370110px;}
.y38_c00130{bottom:586.459968px;}
.y37_c00130{bottom:586.941264px;}
.y36_c00130{bottom:587.195271px;}
.y35_c00130{bottom:587.789424px;}
.y34_c00130{bottom:601.970559px;}
.y33_c00130{bottom:602.347938px;}
.y32_c00130{bottom:602.479212px;}
.y31_c00130{bottom:602.629872px;}
.y30_c00130{bottom:603.068874px;}
.y2f_c00130{bottom:603.496581px;}
.y2e_c00130{bottom:603.634290px;}
.y2d_c00130{bottom:603.804408px;}
.y2c_c00130{bottom:604.052151px;}
.y2b_c00130{bottom:604.249962px;}
.y2a_c00130{bottom:604.510746px;}
.y29_c00130{bottom:604.671117px;}
.y28_c00130{bottom:604.930308px;}
.y27_c00130{bottom:605.069628px;}
.y1d_c00130{bottom:619.781214px;}
.y1e_c00130{bottom:619.781283px;}
.y1f_c00130{bottom:619.781412px;}
.y22_c00130{bottom:619.782030px;}
.y20_c00130{bottom:619.782081px;}
.y23_c00130{bottom:619.782159px;}
.y21_c00130{bottom:619.782261px;}
.y25_c00130{bottom:619.782288px;}
.y26_c00130{bottom:619.782417px;}
.y24_c00130{bottom:619.782579px;}
.y1c_c00130{bottom:636.811794px;}
.y1b_c00130{bottom:637.190847px;}
.y1a_c00130{bottom:637.312392px;}
.y19_c00130{bottom:637.466301px;}
.y18_c00130{bottom:637.902063px;}
.y17_c00130{bottom:638.336241px;}
.y16_c00130{bottom:638.482041px;}
.y15_c00130{bottom:638.658639px;}
.y14_c00130{bottom:638.888589px;}
.y13_c00130{bottom:639.073359px;}
.y12_c00130{bottom:639.352017px;}
.y11_c00130{bottom:639.509157px;}
.y10_c00130{bottom:639.761868px;}
.yf_c00130{bottom:639.899559px;}
.ye_c00130{bottom:653.351328px;}
.yd_c00130{bottom:653.632920px;}
.yc_c00130{bottom:654.000660px;}
.yb_c00130{bottom:654.203178px;}
.ya_c00130{bottom:654.350607px;}
.y9_c00130{bottom:654.587208px;}
.y8_c00130{bottom:654.637347px;}
.y7_c00130{bottom:654.963093px;}
.y6_c00130{bottom:655.251345px;}
.y5_c00130{bottom:655.651791px;}
.y4_c00130{bottom:655.813845px;}
.y3_c00130{bottom:656.640000px;}
.y2_c00130{bottom:672.040500px;}
.y1_c00130{bottom:688.620000px;}
.hc_c00130{height:18.000000px;}
.ha_c00130{height:48.000864px;}
.h8_c00130{height:48.001176px;}
.hd_c00130{height:48.001536px;}
.hb_c00130{height:54.000972px;}
.h9_c00130{height:54.001323px;}
.he_c00130{height:54.001728px;}
.h2_c00130{height:60.000000px;}
.h6_c00130{height:60.001080px;}
.h4_c00130{height:66.001188px;}
.h3_c00130{height:72.001296px;}
.h5_c00130{height:78.001404px;}
.h7_c00130{height:96.001728px;}
.h0_c00130{height:698.220000px;}
.h1_c00130{height:698.250000px;}
.w1_c00130{width:945.750000px;}
.w0_c00130{width:946.050000px;}
.x0_c00130{left:0.000000px;}
.xe3_c00130{left:2.160000px;}
.x113_c00130{left:3.240000px;}
.xa7_c00130{left:85.001722px;}
.x6d_c00130{left:86.861064px;}
.x114_c00130{left:88.741500px;}
.x67_c00130{left:89.902212px;}
.xd9_c00130{left:91.779876px;}
.x9a_c00130{left:94.705971px;}
.x74_c00130{left:97.992849px;}
.xa8_c00130{left:101.485222px;}
.xb4_c00130{left:102.541677px;}
.xda_c00130{left:107.399286px;}
.x9b_c00130{left:108.731065px;}
.xc7_c00130{left:111.988500px;}
.x87_c00130{left:125.979357px;}
.xc8_c00130{left:128.733000px;}
.x6f_c00130{left:131.406381px;}
.x107_c00130{left:134.372472px;}
.x80_c00130{left:138.147012px;}
.x77_c00130{left:139.773537px;}
.x5d_c00130{left:143.029971px;}
.x108_c00130{left:145.437972px;}
.x61_c00130{left:146.622075px;}
.x68_c00130{left:149.797572px;}
.x78_c00130{left:151.618965px;}
.x8f_c00130{left:155.179500px;}
.xdb_c00130{left:156.792489px;}
.x42_c00130{left:161.190849px;}
.x35_c00130{left:162.202617px;}
.x22_c00130{left:165.173196px;}
.xc9_c00130{left:167.343000px;}
.xb_c00130{left:169.020000px;}
.x59_c00130{left:170.829279px;}
.x62_c00130{left:172.467075px;}
.x6e_c00130{left:173.543064px;}
.x70_c00130{left:174.603120px;}
.x2c_c00130{left:180.360537px;}
.xe4_c00130{left:184.065000px;}
.x36_c00130{left:185.422617px;}
.x5a_c00130{left:186.489090px;}
.x23_c00130{left:188.121696px;}
.x19_c00130{left:189.201000px;}
.xc_c00130{left:192.240000px;}
.x1_c00130{left:193.860000px;}
.x115_c00130{left:195.676500px;}
.xe5_c00130{left:198.915000px;}
.x9c_c00130{left:200.570706px;}
.x11d_c00130{left:204.666108px;}
.xca_c00130{left:207.033000px;}
.xa9_c00130{left:210.806722px;}
.x109_c00130{left:213.467472px;}
.xb5_c00130{left:215.408464px;}
.x116_c00130{left:216.466500px;}
.xdc_c00130{left:218.898120px;}
.xe6_c00130{left:220.807500px;}
.xcb_c00130{left:222.696000px;}
.x11e_c00130{left:224.647392px;}
.x4a_c00130{left:226.188483px;}
.x37_c00130{left:228.621117px;}
.x24_c00130{left:230.240196px;}
.xcc_c00130{left:232.414500px;}
.x81_c00130{left:233.979936px;}
.xd_c00130{left:236.790000px;}
.xfb_c00130{left:237.809712px;}
.x52_c00130{left:240.768675px;}
.x82_c00130{left:244.271373px;}
.xe7_c00130{left:245.895000px;}
.xcd_c00130{left:247.536000px;}
.x4b_c00130{left:248.854848px;}
.xf2_c00130{left:254.297340px;}
.x38_c00130{left:255.349617px;}
.x25_c00130{left:256.430196px;}
.x5e_c00130{left:258.319287px;}
.x3f_c00130{left:259.408374px;}
.x71_c00130{left:261.011598px;}
.xe_c00130{left:262.710000px;}
.xce_c00130{left:264.292500px;}
.x83_c00130{left:265.601247px;}
.x90_c00130{left:266.965500px;}
.x2_c00130{left:268.920000px;}
.x79_c00130{left:270.739254px;}
.x10a_c00130{left:271.808472px;}
.xcf_c00130{left:276.154500px;}
.x117_c00130{left:277.486500px;}
.x88_c00130{left:283.688412px;}
.x9d_c00130{left:285.624304px;}
.x91_c00130{left:289.105500px;}
.x2d_c00130{left:291.603042px;}
.x7a_c00130{left:293.422119px;}
.xbf_c00130{left:294.520473px;}
.x9e_c00130{left:296.136378px;}
.xe8_c00130{left:297.465000px;}
.x3_c00130{left:298.890000px;}
.x43_c00130{left:301.322898px;}
.x26_c00130{left:302.873196px;}
.x72_c00130{left:305.828328px;}
.xf_c00130{left:308.880000px;}
.xe9_c00130{left:311.505000px;}
.xf3_c00130{left:312.899244px;}
.xd0_c00130{left:316.117500px;}
.x84_c00130{left:317.982432px;}
.x7b_c00130{left:322.584948px;}
.x4_c00130{left:325.080000px;}
.x1a_c00130{left:326.893500px;}
.x4c_c00130{left:330.155862px;}
.x39_c00130{left:331.782117px;}
.x27_c00130{left:333.668196px;}
.x63_c00130{left:335.019075px;}
.x10_c00130{left:336.690000px;}
.xb6_c00130{left:339.879336px;}
.xd1_c00130{left:347.166000px;}
.xc0_c00130{left:348.520851px;}
.x2e_c00130{left:352.083720px;}
.x118_c00130{left:353.356500px;}
.x5_c00130{left:354.780000px;}
.x92_c00130{left:356.083500px;}
.xea_c00130{left:359.833500px;}
.xfc_c00130{left:362.540220px;}
.xc1_c00130{left:363.645456px;}
.x101_c00130{left:366.277464px;}
.x4d_c00130{left:368.206137px;}
.xdd_c00130{left:369.567720px;}
.x69_c00130{left:370.927404px;}
.x28_c00130{left:371.993196px;}
.x3a_c00130{left:373.072617px;}
.x119_c00130{left:375.766500px;}
.xeb_c00130{left:378.195000px;}
.x11_c00130{left:379.350000px;}
.x7c_c00130{left:381.464097px;}
.x53_c00130{left:385.277811px;}
.x10b_c00130{left:386.801472px;}
.xaa_c00130{left:389.008222px;}
.xfd_c00130{left:391.455948px;}
.x4e_c00130{left:394.667475px;}
.x64_c00130{left:396.289575px;}
.x6a_c00130{left:398.194566px;}
.xd2_c00130{left:399.831000px;}
.x29_c00130{left:401.426196px;}
.x89_c00130{left:403.032192px;}
.x85_c00130{left:405.733401px;}
.x12_c00130{left:406.890000px;}
.xde_c00130{left:414.118950px;}
.xc2_c00130{left:415.212813px;}
.x7d_c00130{left:417.349881px;}
.xd3_c00130{left:419.524500px;}
.x1b_c00130{left:420.643500px;}
.x5b_c00130{left:422.199264px;}
.x6_c00130{left:423.630000px;}
.x13_c00130{left:426.330000px;}
.xc3_c00130{left:434.652949px;}
.x2f_c00130{left:437.945316px;}
.x7e_c00130{left:445.702710px;}
.x8a_c00130{left:446.785431px;}
.xc4_c00130{left:448.963054px;}
.xec_c00130{left:452.176500px;}
.x54_c00130{left:456.558879px;}
.x93_c00130{left:459.495000px;}
.x10c_c00130{left:460.808472px;}
.x86_c00130{left:462.728559px;}
.x4f_c00130{left:467.025543px;}
.x1c_c00130{left:468.685500px;}
.xab_c00130{left:476.741722px;}
.x7_c00130{left:480.060000px;}
.x65_c00130{left:481.078575px;}
.x75_c00130{left:482.959527px;}
.x94_c00130{left:484.590000px;}
.x40_c00130{left:487.599138px;}
.x3b_c00130{left:495.661617px;}
.x14_c00130{left:498.420000px;}
.x8_c00130{left:500.580000px;}
.x5c_c00130{left:502.931292px;}
.x11a_c00130{left:505.369500px;}
.xac_c00130{left:509.972722px;}
.x8b_c00130{left:511.573044px;}
.x102_c00130{left:514.767588px;}
.x5f_c00130{left:518.333739px;}
.x6b_c00130{left:519.966795px;}
.x73_c00130{left:521.027541px;}
.x1d_c00130{left:522.976500px;}
.x30_c00130{left:526.236993px;}
.x10d_c00130{left:527.513472px;}
.x46_c00130{left:530.237613px;}
.x1e_c00130{left:531.333000px;}
.x9f_c00130{left:533.204037px;}
.x55_c00130{left:539.718384px;}
.x50_c00130{left:544.252584px;}
.xb7_c00130{left:547.243785px;}
.xed_c00130{left:550.998000px;}
.x10e_c00130{left:552.884472px;}
.x7f_c00130{left:553.997562px;}
.xf4_c00130{left:558.875136px;}
.xad_c00130{left:562.622722px;}
.x8c_c00130{left:564.557220px;}
.xb8_c00130{left:566.686921px;}
.x3c_c00130{left:568.828617px;}
.x15_c00130{left:571.320000px;}
.x95_c00130{left:573.694500px;}
.x11f_c00130{left:583.219848px;}
.xf5_c00130{left:584.513748px;}
.x11b_c00130{left:586.914000px;}
.xa0_c00130{left:588.822925px;}
.x10f_c00130{left:589.877472px;}
.x56_c00130{left:591.561069px;}
.x3d_c00130{left:593.938617px;}
.x1f_c00130{left:595.338000px;}
.x16_c00130{left:596.700000px;}
.xb9_c00130{left:598.283142px;}
.x31_c00130{left:600.218157px;}
.x8d_c00130{left:602.859486px;}
.xdf_c00130{left:605.283816px;}
.xee_c00130{left:609.858000px;}
.xc5_c00130{left:614.208720px;}
.x44_c00130{left:615.611211px;}
.x2a_c00130{left:616.625196px;}
.x17_c00130{left:618.570000px;}
.xd4_c00130{left:621.493500px;}
.x32_c00130{left:622.898976px;}
.xf6_c00130{left:626.109744px;}
.xef_c00130{left:628.491000px;}
.x9_c00130{left:629.640000px;}
.xc6_c00130{left:631.761846px;}
.xae_c00130{left:635.797222px;}
.x51_c00130{left:640.103517px;}
.xa1_c00130{left:641.491293px;}
.xf7_c00130{left:642.839640px;}
.x47_c00130{left:644.407929px;}
.xba_c00130{left:649.053999px;}
.x96_c00130{left:650.097000px;}
.xa2_c00130{left:653.084877px;}
.x57_c00130{left:655.555182px;}
.xe0_c00130{left:663.340965px;}
.xd5_c00130{left:664.693500px;}
.xbb_c00130{left:665.779114px;}
.x66_c00130{left:669.321075px;}
.x48_c00130{left:670.867767px;}
.xaf_c00130{left:671.974222px;}
.x3e_c00130{left:678.714117px;}
.x2b_c00130{left:679.800696px;}
.x18_c00130{left:683.640000px;}
.x103_c00130{left:686.556840px;}
.x33_c00130{left:687.699807px;}
.x20_c00130{left:690.381000px;}
.xfe_c00130{left:692.772360px;}
.xf0_c00130{left:694.642500px;}
.xd6_c00130{left:696.288000px;}
.x110_c00130{left:698.412972px;}
.xb0_c00130{left:699.787222px;}
.x11c_c00130{left:701.398500px;}
.xf1_c00130{left:708.960000px;}
.xa3_c00130{left:712.216786px;}
.x8e_c00130{left:713.801820px;}
.xb1_c00130{left:714.908722px;}
.xff_c00130{left:718.694064px;}
.x49_c00130{left:722.725452px;}
.xe1_c00130{left:723.838605px;}
.x104_c00130{left:730.005144px;}
.xa4_c00130{left:731.106423px;}
.x41_c00130{left:733.779177px;}
.xf8_c00130{left:735.468360px;}
.x21_c00130{left:737.313000px;}
.xa_c00130{left:738.990000px;}
.x58_c00130{left:741.632169px;}
.x60_c00130{left:742.979889px;}
.x6c_c00130{left:744.345636px;}
.x76_c00130{left:746.219952px;}
.xbc_c00130{left:749.230702px;}
.x45_c00130{left:752.773152px;}
.xd7_c00130{left:756.499500px;}
.xe2_c00130{left:758.924898px;}
.x111_c00130{left:761.337972px;}
.x34_c00130{left:768.431214px;}
.x100_c00130{left:774.044508px;}
.x97_c00130{left:776.203500px;}
.x105_c00130{left:778.337376px;}
.xb2_c00130{left:779.440222px;}
.xf9_c00130{left:780.550440px;}
.x112_c00130{left:782.405472px;}
.xa5_c00130{left:783.503290px;}
.x98_c00130{left:791.053500px;}
.xbd_c00130{left:793.229017px;}
.xb3_c00130{left:795.101722px;}
.x106_c00130{left:800.475516px;}
.xbe_c00130{left:808.095622px;}
.xd8_c00130{left:810.247500px;}
.xfa_c00130{left:820.241388px;}
.x99_c00130{left:843.480000px;}
.xa6_c00130{left:844.792221px;}
@media print{
.v0_c00130{vertical-align:0.000000pt;}
.ls0_c00130{letter-spacing:0.000000pt;}
.ws0_c00130{word-spacing:0.000000pt;}
._1_c00130{margin-left:-12.364258pt;}
._0_c00130{width:14.342100pt;}
.fsa_c00130{font-size:16.000000pt;}
.fs8_c00130{font-size:42.667435pt;}
.fs6_c00130{font-size:42.667712pt;}
.fsb_c00130{font-size:42.668032pt;}
.fs9_c00130{font-size:48.000864pt;}
.fs7_c00130{font-size:48.001176pt;}
.fsc_c00130{font-size:48.001536pt;}
.fs0_c00130{font-size:53.333333pt;}
.fs4_c00130{font-size:53.334293pt;}
.fs2_c00130{font-size:58.667723pt;}
.fs1_c00130{font-size:64.001152pt;}
.fs3_c00130{font-size:69.334581pt;}
.fs5_c00130{font-size:85.334869pt;}
.y0_c00130{bottom:0.000000pt;}
.y1dc_c00130{bottom:84.000000pt;}
.y1f2_c00130{bottom:88.045813pt;}
.y1f3_c00130{bottom:88.045824pt;}
.y1f1_c00130{bottom:88.045856pt;}
.y1f8_c00130{bottom:88.046400pt;}
.y1f4_c00130{bottom:88.046411pt;}
.y1f5_c00130{bottom:88.046464pt;}
.y1f9_c00130{bottom:88.046624pt;}
.y1fa_c00130{bottom:88.046795pt;}
.y1f7_c00130{bottom:88.046859pt;}
.y1f6_c00130{bottom:88.046901pt;}
.y1fb_c00130{bottom:88.047392pt;}
.y1ee_c00130{bottom:103.679456pt;}
.y1f0_c00130{bottom:103.679627pt;}
.y1ef_c00130{bottom:103.679829pt;}
.y1ed_c00130{bottom:112.481013pt;}
.y1ec_c00130{bottom:112.720917pt;}
.y1eb_c00130{bottom:113.003328pt;}
.y1ea_c00130{bottom:113.210603pt;}
.y1e9_c00130{bottom:113.343189pt;}
.y1e8_c00130{bottom:113.817440pt;}
.y1e7_c00130{bottom:114.397312pt;}
.y1e6_c00130{bottom:114.529803pt;}
.y1e5_c00130{bottom:115.318933pt;}
.y1e4_c00130{bottom:115.478293pt;}
.y1e3_c00130{bottom:115.610613pt;}
.y1e2_c00130{bottom:116.017813pt;}
.y1e1_c00130{bottom:116.451733pt;}
.y1e0_c00130{bottom:116.599573pt;}
.y1df_c00130{bottom:116.674293pt;}
.y1de_c00130{bottom:117.258165pt;}
.y1dd_c00130{bottom:117.360000pt;}
.y1db_c00130{bottom:125.009643pt;}
.y1da_c00130{bottom:125.159456pt;}
.y1d9_c00130{bottom:125.606923pt;}
.y1d8_c00130{bottom:125.833248pt;}
.y1d7_c00130{bottom:126.378731pt;}
.y1d6_c00130{bottom:126.641792pt;}
.y1d5_c00130{bottom:126.822208pt;}
.y1d4_c00130{bottom:127.296555pt;}
.y1d3_c00130{bottom:127.576907pt;}
.y1d2_c00130{bottom:127.718901pt;}
.y1d1_c00130{bottom:127.822827pt;}
.y1d0_c00130{bottom:128.070496pt;}
.y1cf_c00130{bottom:128.538827pt;}
.y1ce_c00130{bottom:128.640555pt;}
.y1cd_c00130{bottom:128.932491pt;}
.y1cc_c00130{bottom:129.055424pt;}
.y1cb_c00130{bottom:129.539189pt;}
.y1ca_c00130{bottom:129.617877pt;}
.y1c9_c00130{bottom:137.997984pt;}
.y1c8_c00130{bottom:138.195413pt;}
.y1c7_c00130{bottom:138.624448pt;}
.y1c6_c00130{bottom:138.777952pt;}
.y1c5_c00130{bottom:139.010752pt;}
.y1c4_c00130{bottom:139.190763pt;}
.y1c3_c00130{bottom:140.182709pt;}
.y1c2_c00130{bottom:140.376811pt;}
.y1c1_c00130{bottom:140.537717pt;}
.y1c0_c00130{bottom:140.998091pt;}
.y1bf_c00130{bottom:141.144789pt;}
.y1be_c00130{bottom:141.751680pt;}
.y1bd_c00130{bottom:141.857664pt;}
.y1bc_c00130{bottom:142.219413pt;}
.y1bb_c00130{bottom:142.847819pt;}
.y1ba_c00130{bottom:143.032907pt;}
.y1b9_c00130{bottom:143.204064pt;}
.y1b8_c00130{bottom:143.770400pt;}
.y1b7_c00130{bottom:144.146411pt;}
.y1b6_c00130{bottom:144.234880pt;}
.y1b5_c00130{bottom:151.574795pt;}
.y1b4_c00130{bottom:151.919061pt;}
.y1b3_c00130{bottom:152.080725pt;}
.y1b2_c00130{bottom:152.213739pt;}
.y1b1_c00130{bottom:152.684704pt;}
.y1b0_c00130{bottom:152.840491pt;}
.y1af_c00130{bottom:153.293696pt;}
.y1ae_c00130{bottom:153.688907pt;}
.y1ad_c00130{bottom:153.955403pt;}
.y1ac_c00130{bottom:154.135691pt;}
.y1ab_c00130{bottom:154.612907pt;}
.y1aa_c00130{bottom:154.705173pt;}
.y1a9_c00130{bottom:154.812064pt;}
.y1a8_c00130{bottom:154.910656pt;}
.y1a7_c00130{bottom:155.080587pt;}
.y1a6_c00130{bottom:155.187392pt;}
.y1a5_c00130{bottom:155.304043pt;}
.y1a4_c00130{bottom:155.695339pt;}
.y1a3_c00130{bottom:155.754176pt;}
.y1a2_c00130{bottom:164.567136pt;}
.y1a1_c00130{bottom:164.744043pt;}
.y1a0_c00130{bottom:164.944619pt;}
.y19f_c00130{bottom:165.041589pt;}
.y19e_c00130{bottom:165.356629pt;}
.y19d_c00130{bottom:165.431595pt;}
.y19c_c00130{bottom:165.549088pt;}
.y19b_c00130{bottom:165.616715pt;}
.y19a_c00130{bottom:165.731029pt;}
.y199_c00130{bottom:166.044256pt;}
.y198_c00130{bottom:166.201109pt;}
.y197_c00130{bottom:166.438005pt;}
.y179_c00130{bottom:166.560000pt;}
.y196_c00130{bottom:166.721803pt;}
.y195_c00130{bottom:166.825483pt;}
.y194_c00130{bottom:167.086197pt;}
.y193_c00130{bottom:167.187499pt;}
.y192_c00130{bottom:167.262539pt;}
.y191_c00130{bottom:167.442539pt;}
.y190_c00130{bottom:167.646389pt;}
.y18f_c00130{bottom:167.758827pt;}
.y18e_c00130{bottom:176.175285pt;}
.y18d_c00130{bottom:176.286539pt;}
.y18c_c00130{bottom:176.593856pt;}
.y18b_c00130{bottom:176.695669pt;}
.y18a_c00130{bottom:177.166080pt;}
.y189_c00130{bottom:177.298581pt;}
.y188_c00130{bottom:177.717141pt;}
.y187_c00130{bottom:177.870752pt;}
.y186_c00130{bottom:178.419872pt;}
.y185_c00130{bottom:178.542763pt;}
.y184_c00130{bottom:178.945963pt;}
.y183_c00130{bottom:179.076533pt;}
.y182_c00130{bottom:179.420203pt;}
.y181_c00130{bottom:179.520043pt;}
.y180_c00130{bottom:179.886763pt;}
.y17f_c00130{bottom:180.065163pt;}
.y17e_c00130{bottom:180.220843pt;}
.y17d_c00130{bottom:180.326443pt;}
.y17c_c00130{bottom:180.405003pt;}
.y17b_c00130{bottom:180.840981pt;}
.y17a_c00130{bottom:180.960000pt;}
.y178_c00130{bottom:189.491784pt;}
.y177_c00130{bottom:189.709579pt;}
.y176_c00130{bottom:190.085568pt;}
.y175_c00130{bottom:190.222232pt;}
.y174_c00130{bottom:190.447208pt;}
.y173_c00130{bottom:190.699216pt;}
.y172_c00130{bottom:190.962637pt;}
.y171_c00130{bottom:191.207536pt;}
.y170_c00130{bottom:191.490912pt;}
.y16f_c00130{bottom:191.634760pt;}
.y16e_c00130{bottom:191.912368pt;}
.y16d_c00130{bottom:192.054768pt;}
.y16c_c00130{bottom:192.432093pt;}
.y16b_c00130{bottom:192.526067pt;}
.y16a_c00130{bottom:192.849277pt;}
.y169_c00130{bottom:193.179576pt;}
.y168_c00130{bottom:193.235176pt;}
.y167_c00130{bottom:193.542608pt;}
.y166_c00130{bottom:193.572336pt;}
.y165_c00130{bottom:193.639245pt;}
.y164_c00130{bottom:201.938208pt;}
.y163_c00130{bottom:202.122528pt;}
.y162_c00130{bottom:202.409184pt;}
.y161_c00130{bottom:202.730312pt;}
.y160_c00130{bottom:202.898816pt;}
.y15f_c00130{bottom:203.022648pt;}
.y15e_c00130{bottom:203.129216pt;}
.y15d_c00130{bottom:203.674992pt;}
.y15c_c00130{bottom:203.800280pt;}
.y15b_c00130{bottom:204.009096pt;}
.y15a_c00130{bottom:204.206384pt;}
.y159_c00130{bottom:204.311416pt;}
.y158_c00130{bottom:204.370448pt;}
.y157_c00130{bottom:204.505888pt;}
.y156_c00130{bottom:204.592296pt;}
.y155_c00130{bottom:204.680128pt;}
.y154_c00130{bottom:204.757888pt;}
.y153_c00130{bottom:204.971024pt;}
.y152_c00130{bottom:205.034288pt;}
.y151_c00130{bottom:205.123656pt;}
.y150_c00130{bottom:205.204304pt;}
.y14f_c00130{bottom:205.256136pt;}
.y14e_c00130{bottom:205.339672pt;}
.y14d_c00130{bottom:205.551352pt;}
.y14c_c00130{bottom:205.757272pt;}
.y14b_c00130{bottom:205.846576pt;}
.y14a_c00130{bottom:205.920000pt;}
.y149_c00130{bottom:214.828176pt;}
.y148_c00130{bottom:215.159891pt;}
.y147_c00130{bottom:215.240665pt;}
.y146_c00130{bottom:215.340604pt;}
.y145_c00130{bottom:215.658588pt;}
.y144_c00130{bottom:215.966080pt;}
.y143_c00130{bottom:216.059299pt;}
.y142_c00130{bottom:216.175388pt;}
.y141_c00130{bottom:216.551220pt;}
.y140_c00130{bottom:216.939487pt;}
.y13f_c00130{bottom:217.015193pt;}
.y13e_c00130{bottom:217.118820pt;}
.y13d_c00130{bottom:217.394348pt;}
.y13c_c00130{bottom:217.475123pt;}
.y13b_c00130{bottom:217.763123pt;}
.y13a_c00130{bottom:217.894567pt;}
.y139_c00130{bottom:218.305497pt;}
.y138_c00130{bottom:218.590109pt;}
.y137_c00130{bottom:218.790296pt;}
.y136_c00130{bottom:218.879827pt;}
.y135_c00130{bottom:227.793525pt;}
.y134_c00130{bottom:227.872695pt;}
.y133_c00130{bottom:227.948420pt;}
.y132_c00130{bottom:228.106460pt;}
.y131_c00130{bottom:228.551044pt;}
.y130_c00130{bottom:228.640444pt;}
.y12f_c00130{bottom:228.911016pt;}
.y12e_c00130{bottom:229.079613pt;}
.y12d_c00130{bottom:229.183259pt;}
.y12c_c00130{bottom:229.720575pt;}
.y12b_c00130{bottom:229.831277pt;}
.y12a_c00130{bottom:229.931197pt;}
.y129_c00130{bottom:230.289517pt;}
.y128_c00130{bottom:230.384388pt;}
.y127_c00130{bottom:230.953331pt;}
.y126_c00130{bottom:231.065704pt;}
.y125_c00130{bottom:231.188411pt;}
.y124_c00130{bottom:231.234255pt;}
.y123_c00130{bottom:231.555608pt;}
.y122_c00130{bottom:231.598856pt;}
.y121_c00130{bottom:240.141644pt;}
.y120_c00130{bottom:240.239093pt;}
.y11f_c00130{bottom:240.640623pt;}
.y11e_c00130{bottom:240.734712pt;}
.y11d_c00130{bottom:240.907771pt;}
.y11c_c00130{bottom:241.132872pt;}
.y11b_c00130{bottom:241.245441pt;}
.y11a_c00130{bottom:241.332708pt;}
.y119_c00130{bottom:241.588180pt;}
.y118_c00130{bottom:241.915780pt;}
.y117_c00130{bottom:242.122551pt;}
.y116_c00130{bottom:242.453445pt;}
.y115_c00130{bottom:242.567555pt;}
.y114_c00130{bottom:242.668448pt;}
.y113_c00130{bottom:243.011159pt;}
.y112_c00130{bottom:243.105257pt;}
.y111_c00130{bottom:243.498368pt;}
.y110_c00130{bottom:243.777257pt;}
.y10f_c00130{bottom:243.837747pt;}
.y10e_c00130{bottom:243.886457pt;}
.y10d_c00130{bottom:244.026140pt;}
.y10c_c00130{bottom:244.412307pt;}
.y10b_c00130{bottom:244.457480pt;}
.y10a_c00130{bottom:244.560044pt;}
.y109_c00130{bottom:252.975769pt;}
.y108_c00130{bottom:253.302453pt;}
.y107_c00130{bottom:253.465992pt;}
.y106_c00130{bottom:253.581809pt;}
.y105_c00130{bottom:253.682011pt;}
.y104_c00130{bottom:253.997940pt;}
.y103_c00130{bottom:254.059411pt;}
.y102_c00130{bottom:254.340456pt;}
.y101_c00130{bottom:254.637193pt;}
.y100_c00130{bottom:254.754972pt;}
.yff_c00130{bottom:254.913096pt;}
.yfe_c00130{bottom:255.251980pt;}
.yfd_c00130{bottom:255.785871pt;}
.yfc_c00130{bottom:255.901604pt;}
.yfb_c00130{bottom:255.957679pt;}
.yfa_c00130{bottom:256.249469pt;}
.yf9_c00130{bottom:256.410897pt;}
.yf8_c00130{bottom:256.901007pt;}
.yf7_c00130{bottom:256.976273pt;}
.yf6_c00130{bottom:265.781895pt;}
.yf5_c00130{bottom:266.108104pt;}
.yf4_c00130{bottom:266.200504pt;}
.yf3_c00130{bottom:266.729704pt;}
.yf2_c00130{bottom:266.985167pt;}
.yf1_c00130{bottom:267.149639pt;}
.yf0_c00130{bottom:267.460560pt;}
.yef_c00130{bottom:267.638640pt;}
.yee_c00130{bottom:268.014988pt;}
.yed_c00130{bottom:268.171135pt;}
.yec_c00130{bottom:268.658437pt;}
.yeb_c00130{bottom:268.814584pt;}
.yea_c00130{bottom:269.231336pt;}
.ye9_c00130{bottom:269.369096pt;}
.ye8_c00130{bottom:269.442904pt;}
.ye7_c00130{bottom:270.064653pt;}
.ye6_c00130{bottom:270.241333pt;}
.ye5_c00130{bottom:294.178475pt;}
.ye4_c00130{bottom:294.868837pt;}
.ye3_c00130{bottom:295.107784pt;}
.ye2_c00130{bottom:295.236243pt;}
.ye1_c00130{bottom:295.438368pt;}
.ye0_c00130{bottom:295.747520pt;}
.ydf_c00130{bottom:295.841237pt;}
.yde_c00130{bottom:296.113256pt;}
.ydd_c00130{bottom:296.560336pt;}
.ydc_c00130{bottom:296.856427pt;}
.ydb_c00130{bottom:297.203832pt;}
.yda_c00130{bottom:297.837547pt;}
.yd9_c00130{bottom:316.523379pt;}
.yd8_c00130{bottom:318.146347pt;}
.yd7_c00130{bottom:318.500989pt;}
.yd6_c00130{bottom:318.627664pt;}
.yd5_c00130{bottom:319.047664pt;}
.yd4_c00130{bottom:319.199909pt;}
.yd3_c00130{bottom:319.373699pt;}
.yd2_c00130{bottom:319.506125pt;}
.yd1_c00130{bottom:319.570347pt;}
.yd0_c00130{bottom:319.867845pt;}
.ycf_c00130{bottom:320.166792pt;}
.yce_c00130{bottom:320.411683pt;}
.ycd_c00130{bottom:333.081259pt;}
.ycc_c00130{bottom:333.643795pt;}
.ycb_c00130{bottom:333.882829pt;}
.yca_c00130{bottom:334.301533pt;}
.yc9_c00130{bottom:334.556405pt;}
.yc8_c00130{bottom:334.732955pt;}
.yc7_c00130{bottom:334.956347pt;}
.yc6_c00130{bottom:335.322371pt;}
.yc5_c00130{bottom:335.503240pt;}
.yc4_c00130{bottom:335.644216pt;}
.yc3_c00130{bottom:336.148456pt;}
.yc2_c00130{bottom:336.384861pt;}
.yc1_c00130{bottom:336.458704pt;}
.yc0_c00130{bottom:336.717773pt;}
.ybf_c00130{bottom:347.804848pt;}
.ybe_c00130{bottom:349.198755pt;}
.ybd_c00130{bottom:349.442245pt;}
.ybc_c00130{bottom:349.791091pt;}
.ybb_c00130{bottom:349.964760pt;}
.yba_c00130{bottom:350.134208pt;}
.yb9_c00130{bottom:350.367589pt;}
.yb8_c00130{bottom:350.541347pt;}
.yb7_c00130{bottom:350.818939pt;}
.yb6_c00130{bottom:351.360080pt;}
.yb5_c00130{bottom:351.562997pt;}
.yb4_c00130{bottom:351.839413pt;}
.yb3_c00130{bottom:363.107160pt;}
.yb2_c00130{bottom:364.501099pt;}
.yb1_c00130{bottom:365.090587pt;}
.yb0_c00130{bottom:365.261427pt;}
.yaf_c00130{bottom:365.429483pt;}
.yae_c00130{bottom:365.665688pt;}
.yad_c00130{bottom:365.839501pt;}
.yac_c00130{bottom:366.118525pt;}
.yab_c00130{bottom:366.656707pt;}
.yaa_c00130{bottom:366.925757pt;}
.ya9_c00130{bottom:367.199128pt;}
.ya8_c00130{bottom:378.592085pt;}
.ya7_c00130{bottom:379.768589pt;}
.ya6_c00130{bottom:379.973053pt;}
.ya5_c00130{bottom:380.291325pt;}
.ya4_c00130{bottom:380.426685pt;}
.ya3_c00130{bottom:380.569253pt;}
.ya2_c00130{bottom:380.757821pt;}
.ya1_c00130{bottom:380.935029pt;}
.ya0_c00130{bottom:381.156821pt;}
.y9f_c00130{bottom:381.558605pt;}
.y9e_c00130{bottom:381.617565pt;}
.y9d_c00130{bottom:382.079869pt;}
.y9c_c00130{bottom:395.251219pt;}
.y9b_c00130{bottom:395.520181pt;}
.y9a_c00130{bottom:395.714771pt;}
.y99_c00130{bottom:396.249232pt;}
.y98_c00130{bottom:396.418989pt;}
.y97_c00130{bottom:396.673667pt;}
.y96_c00130{bottom:396.790680pt;}
.y95_c00130{bottom:396.912104pt;}
.y94_c00130{bottom:397.083373pt;}
.y93_c00130{bottom:397.222413pt;}
.y92_c00130{bottom:397.405408pt;}
.y91_c00130{bottom:397.737621pt;}
.y90_c00130{bottom:397.791747pt;}
.y8f_c00130{bottom:397.894123pt;}
.y8e_c00130{bottom:398.160229pt;}
.y8d_c00130{bottom:409.616016pt;}
.y8c_c00130{bottom:410.013200pt;}
.y8b_c00130{bottom:410.814096pt;}
.y8a_c00130{bottom:411.017160pt;}
.y89_c00130{bottom:411.322440pt;}
.y88_c00130{bottom:411.469368pt;}
.y87_c00130{bottom:411.614776pt;}
.y86_c00130{bottom:411.796144pt;}
.y85_c00130{bottom:411.972008pt;}
.y84_c00130{bottom:412.202352pt;}
.y83_c00130{bottom:412.363648pt;}
.y82_c00130{bottom:412.588256pt;}
.y81_c00130{bottom:412.663088pt;}
.y80_c00130{bottom:412.800928pt;}
.y7f_c00130{bottom:425.148912pt;}
.y7e_c00130{bottom:426.547032pt;}
.y7d_c00130{bottom:426.783421pt;}
.y7c_c00130{bottom:427.140808pt;}
.y7b_c00130{bottom:427.310256pt;}
.y7a_c00130{bottom:427.478272pt;}
.y79_c00130{bottom:427.711629pt;}
.y78_c00130{bottom:427.889723pt;}
.y77_c00130{bottom:428.163117pt;}
.y76_c00130{bottom:428.352520pt;}
.y75_c00130{bottom:428.615925pt;}
.y74_c00130{bottom:428.879331pt;}
.y73_c00130{bottom:440.419296pt;}
.y72_c00130{bottom:442.119069pt;}
.y71_c00130{bottom:442.284259pt;}
.y70_c00130{bottom:442.693645pt;}
.y6f_c00130{bottom:442.891307pt;}
.y6e_c00130{bottom:443.083315pt;}
.y6d_c00130{bottom:443.348557pt;}
.y6c_c00130{bottom:443.547787pt;}
.y6b_c00130{bottom:444.081456pt;}
.y6a_c00130{bottom:444.369448pt;}
.y69_c00130{bottom:444.480968pt;}
.y68_c00130{bottom:456.383891pt;}
.y67_c00130{bottom:456.918971pt;}
.y66_c00130{bottom:457.317608pt;}
.y65_c00130{bottom:457.640771pt;}
.y64_c00130{bottom:458.157624pt;}
.y63_c00130{bottom:458.601792pt;}
.y62_c00130{bottom:459.500512pt;}
.y61_c00130{bottom:459.842181pt;}
.y60_c00130{bottom:472.558664pt;}
.y5f_c00130{bottom:472.755280pt;}
.y5e_c00130{bottom:472.889155pt;}
.y5d_c00130{bottom:473.350488pt;}
.y5c_c00130{bottom:473.435816pt;}
.y5b_c00130{bottom:473.830368pt;}
.y5a_c00130{bottom:474.280280pt;}
.y59_c00130{bottom:474.445408pt;}
.y58_c00130{bottom:474.681677pt;}
.y57_c00130{bottom:474.852661pt;}
.y56_c00130{bottom:475.187285pt;}
.y55_c00130{bottom:475.328173pt;}
.y54_c00130{bottom:475.581629pt;}
.y53_c00130{bottom:475.678483pt;}
.y52_c00130{bottom:487.935192pt;}
.y51_c00130{bottom:488.258435pt;}
.y50_c00130{bottom:488.423555pt;}
.y4f_c00130{bottom:489.133800pt;}
.y4e_c00130{bottom:490.245883pt;}
.y4d_c00130{bottom:490.621808pt;}
.y4c_c00130{bottom:490.818184pt;}
.y4b_c00130{bottom:491.278197pt;}
.y3d_c00130{bottom:504.841157pt;}
.y3c_c00130{bottom:504.841211pt;}
.y3e_c00130{bottom:504.841432pt;}
.y3f_c00130{bottom:504.841645pt;}
.y42_c00130{bottom:504.841707pt;}
.y48_c00130{bottom:504.841723pt;}
.y40_c00130{bottom:504.841867pt;}
.y41_c00130{bottom:504.841920pt;}
.y45_c00130{bottom:504.842195pt;}
.y4a_c00130{bottom:504.842219pt;}
.y47_c00130{bottom:504.842256pt;}
.y43_c00130{bottom:504.842293pt;}
.y49_c00130{bottom:504.842317pt;}
.y44_c00130{bottom:504.842667pt;}
.y46_c00130{bottom:504.842843pt;}
.y3b_c00130{bottom:518.577344pt;}
.y3a_c00130{bottom:519.364765pt;}
.y39_c00130{bottom:520.328987pt;}
.y38_c00130{bottom:521.297749pt;}
.y37_c00130{bottom:521.725568pt;}
.y36_c00130{bottom:521.951352pt;}
.y35_c00130{bottom:522.479488pt;}
.y34_c00130{bottom:535.084941pt;}
.y33_c00130{bottom:535.420389pt;}
.y32_c00130{bottom:535.537077pt;}
.y31_c00130{bottom:535.670997pt;}
.y30_c00130{bottom:536.061221pt;}
.y2f_c00130{bottom:536.441405pt;}
.y2e_c00130{bottom:536.563813pt;}
.y2d_c00130{bottom:536.715029pt;}
.y2c_c00130{bottom:536.935245pt;}
.y2b_c00130{bottom:537.111077pt;}
.y2a_c00130{bottom:537.342885pt;}
.y29_c00130{bottom:537.485437pt;}
.y28_c00130{bottom:537.715829pt;}
.y27_c00130{bottom:537.839669pt;}
.y1d_c00130{bottom:550.916635pt;}
.y1e_c00130{bottom:550.916696pt;}
.y1f_c00130{bottom:550.916811pt;}
.y22_c00130{bottom:550.917360pt;}
.y20_c00130{bottom:550.917405pt;}
.y23_c00130{bottom:550.917475pt;}
.y21_c00130{bottom:550.917565pt;}
.y25_c00130{bottom:550.917589pt;}
.y26_c00130{bottom:550.917704pt;}
.y24_c00130{bottom:550.917848pt;}
.y1c_c00130{bottom:566.054928pt;}
.y1b_c00130{bottom:566.391864pt;}
.y1a_c00130{bottom:566.499904pt;}
.y19_c00130{bottom:566.636712pt;}
.y18_c00130{bottom:567.024056pt;}
.y17_c00130{bottom:567.409992pt;}
.y16_c00130{bottom:567.539592pt;}
.y15_c00130{bottom:567.696568pt;}
.y14_c00130{bottom:567.900968pt;}
.y13_c00130{bottom:568.065208pt;}
.y12_c00130{bottom:568.312904pt;}
.y11_c00130{bottom:568.452584pt;}
.y10_c00130{bottom:568.677216pt;}
.yf_c00130{bottom:568.799608pt;}
.ye_c00130{bottom:580.756736pt;}
.yd_c00130{bottom:581.007040pt;}
.yc_c00130{bottom:581.333920pt;}
.yb_c00130{bottom:581.513936pt;}
.ya_c00130{bottom:581.644984pt;}
.y9_c00130{bottom:581.855296pt;}
.y8_c00130{bottom:581.899864pt;}
.y7_c00130{bottom:582.189416pt;}
.y6_c00130{bottom:582.445640pt;}
.y5_c00130{bottom:582.801592pt;}
.y4_c00130{bottom:582.945640pt;}
.y3_c00130{bottom:583.680000pt;}
.y2_c00130{bottom:597.369333pt;}
.y1_c00130{bottom:612.106667pt;}
.hc_c00130{height:16.000000pt;}
.ha_c00130{height:42.667435pt;}
.h8_c00130{height:42.667712pt;}
.hd_c00130{height:42.668032pt;}
.hb_c00130{height:48.000864pt;}
.h9_c00130{height:48.001176pt;}
.he_c00130{height:48.001536pt;}
.h2_c00130{height:53.333333pt;}
.h6_c00130{height:53.334293pt;}
.h4_c00130{height:58.667723pt;}
.h3_c00130{height:64.001152pt;}
.h5_c00130{height:69.334581pt;}
.h7_c00130{height:85.334869pt;}
.h0_c00130{height:620.640000pt;}
.h1_c00130{height:620.666667pt;}
.w1_c00130{width:840.666667pt;}
.w0_c00130{width:840.933333pt;}
.x0_c00130{left:0.000000pt;}
.xe3_c00130{left:1.920000pt;}
.x113_c00130{left:2.880000pt;}
.xa7_c00130{left:75.557087pt;}
.x6d_c00130{left:77.209835pt;}
.x114_c00130{left:78.881333pt;}
.x67_c00130{left:79.913077pt;}
.xd9_c00130{left:81.582112pt;}
.x9a_c00130{left:84.183085pt;}
.x74_c00130{left:87.104755pt;}
.xa8_c00130{left:90.209087pt;}
.xb4_c00130{left:91.148157pt;}
.xda_c00130{left:95.466032pt;}
.x9b_c00130{left:96.649836pt;}
.xc7_c00130{left:99.545333pt;}
.x87_c00130{left:111.981651pt;}
.xc8_c00130{left:114.429333pt;}
.x6f_c00130{left:116.805672pt;}
.x107_c00130{left:119.442197pt;}
.x80_c00130{left:122.797344pt;}
.x77_c00130{left:124.243144pt;}
.x5d_c00130{left:127.137752pt;}
.x108_c00130{left:129.278197pt;}
.x61_c00130{left:130.330733pt;}
.x68_c00130{left:133.153397pt;}
.x78_c00130{left:134.772413pt;}
.x8f_c00130{left:137.937333pt;}
.xdb_c00130{left:139.371101pt;}
.x42_c00130{left:143.280755pt;}
.x35_c00130{left:144.180104pt;}
.x22_c00130{left:146.820619pt;}
.xc9_c00130{left:148.749333pt;}
.xb_c00130{left:150.240000pt;}
.x59_c00130{left:151.848248pt;}
.x62_c00130{left:153.304067pt;}
.x6e_c00130{left:154.260501pt;}
.x70_c00130{left:155.202773pt;}
.x2c_c00130{left:160.320477pt;}
.xe4_c00130{left:163.613333pt;}
.x36_c00130{left:164.820104pt;}
.x5a_c00130{left:165.768080pt;}
.x23_c00130{left:167.219285pt;}
.x19_c00130{left:168.178667pt;}
.xc_c00130{left:170.880000pt;}
.x1_c00130{left:172.320000pt;}
.x115_c00130{left:173.934667pt;}
.xe5_c00130{left:176.813333pt;}
.x9c_c00130{left:178.285072pt;}
.x11d_c00130{left:181.925429pt;}
.xca_c00130{left:184.029333pt;}
.xa9_c00130{left:187.383753pt;}
.x109_c00130{left:189.748864pt;}
.xb5_c00130{left:191.474191pt;}
.x116_c00130{left:192.414667pt;}
.xdc_c00130{left:194.576107pt;}
.xe6_c00130{left:196.273333pt;}
.xcb_c00130{left:197.952000pt;}
.x11e_c00130{left:199.686571pt;}
.x4a_c00130{left:201.056429pt;}
.x37_c00130{left:203.218771pt;}
.x24_c00130{left:204.657952pt;}
.xcc_c00130{left:206.590667pt;}
.x81_c00130{left:207.982165pt;}
.xd_c00130{left:210.480000pt;}
.xfb_c00130{left:211.386411pt;}
.x52_c00130{left:214.016600pt;}
.x82_c00130{left:217.130109pt;}
.xe7_c00130{left:218.573333pt;}
.xcd_c00130{left:220.032000pt;}
.x4b_c00130{left:221.204309pt;}
.xf2_c00130{left:226.042080pt;}
.x38_c00130{left:226.977437pt;}
.x25_c00130{left:227.937952pt;}
.x5e_c00130{left:229.617144pt;}
.x3f_c00130{left:230.585221pt;}
.x71_c00130{left:232.010309pt;}
.xe_c00130{left:233.520000pt;}
.xce_c00130{left:234.926667pt;}
.x83_c00130{left:236.089997pt;}
.x90_c00130{left:237.302667pt;}
.x2_c00130{left:239.040000pt;}
.x79_c00130{left:240.657115pt;}
.x10a_c00130{left:241.607531pt;}
.xcf_c00130{left:245.470667pt;}
.x117_c00130{left:246.654667pt;}
.x88_c00130{left:252.167477pt;}
.x9d_c00130{left:253.888271pt;}
.x91_c00130{left:256.982667pt;}
.x2d_c00130{left:259.202704pt;}
.x7a_c00130{left:260.819661pt;}
.xbf_c00130{left:261.795976pt;}
.x9e_c00130{left:263.232336pt;}
.xe8_c00130{left:264.413333pt;}
.x3_c00130{left:265.680000pt;}
.x43_c00130{left:267.842576pt;}
.x26_c00130{left:269.220619pt;}
.x72_c00130{left:271.847403pt;}
.xf_c00130{left:274.560000pt;}
.xe9_c00130{left:276.893333pt;}
.xf3_c00130{left:278.132661pt;}
.xd0_c00130{left:280.993333pt;}
.x84_c00130{left:282.651051pt;}
.x7b_c00130{left:286.742176pt;}
.x4_c00130{left:288.960000pt;}
.x1a_c00130{left:290.572000pt;}
.x4c_c00130{left:293.471877pt;}
.x39_c00130{left:294.917437pt;}
.x27_c00130{left:296.593952pt;}
.x63_c00130{left:297.794733pt;}
.x10_c00130{left:299.280000pt;}
.xb6_c00130{left:302.114965pt;}
.xd1_c00130{left:308.592000pt;}
.xc0_c00130{left:309.796312pt;}
.x2e_c00130{left:312.963307pt;}
.x118_c00130{left:314.094667pt;}
.x5_c00130{left:315.360000pt;}
.x92_c00130{left:316.518667pt;}
.xea_c00130{left:319.852000pt;}
.xfc_c00130{left:322.257973pt;}
.xc1_c00130{left:323.240405pt;}
.x101_c00130{left:325.579968pt;}
.x4d_c00130{left:327.294344pt;}
.xdd_c00130{left:328.504640pt;}
.x69_c00130{left:329.713248pt;}
.x28_c00130{left:330.660619pt;}
.x3a_c00130{left:331.620104pt;}
.x119_c00130{left:334.014667pt;}
.xeb_c00130{left:336.173333pt;}
.x11_c00130{left:337.200000pt;}
.x7c_c00130{left:339.079197pt;}
.x53_c00130{left:342.469165pt;}
.x10b_c00130{left:343.823531pt;}
.xaa_c00130{left:345.785087pt;}
.xfd_c00130{left:347.960843pt;}
.x4e_c00130{left:350.815533pt;}
.x64_c00130{left:352.257400pt;}
.x6a_c00130{left:353.950725pt;}
.xd2_c00130{left:355.405333pt;}
.x29_c00130{left:356.823285pt;}
.x89_c00130{left:358.250837pt;}
.x85_c00130{left:360.651912pt;}
.x12_c00130{left:361.680000pt;}
.xde_c00130{left:368.105733pt;}
.xc2_c00130{left:369.078056pt;}
.x7d_c00130{left:370.977672pt;}
.xd3_c00130{left:372.910667pt;}
.x1b_c00130{left:373.905333pt;}
.x5b_c00130{left:375.288235pt;}
.x6_c00130{left:376.560000pt;}
.x13_c00130{left:378.960000pt;}
.xc3_c00130{left:386.358177pt;}
.x2f_c00130{left:389.284725pt;}
.x7e_c00130{left:396.180187pt;}
.x8a_c00130{left:397.142605pt;}
.xc4_c00130{left:399.078271pt;}
.xec_c00130{left:401.934667pt;}
.x54_c00130{left:405.830115pt;}
.x93_c00130{left:408.440000pt;}
.x10c_c00130{left:409.607531pt;}
.x86_c00130{left:411.314275pt;}
.x4f_c00130{left:415.133816pt;}
.x1c_c00130{left:416.609333pt;}
.xab_c00130{left:423.770420pt;}
.x7_c00130{left:426.720000pt;}
.x65_c00130{left:427.625400pt;}
.x75_c00130{left:429.297357pt;}
.x94_c00130{left:430.746667pt;}
.x40_c00130{left:433.421456pt;}
.x3b_c00130{left:440.588104pt;}
.x14_c00130{left:443.040000pt;}
.x8_c00130{left:444.960000pt;}
.x5c_c00130{left:447.050037pt;}
.x11a_c00130{left:449.217333pt;}
.xac_c00130{left:453.309087pt;}
.x8b_c00130{left:454.731595pt;}
.x102_c00130{left:457.571189pt;}
.x5f_c00130{left:460.741101pt;}
.x6b_c00130{left:462.192707pt;}
.x73_c00130{left:463.135592pt;}
.x1d_c00130{left:464.868000pt;}
.x30_c00130{left:467.766216pt;}
.x10d_c00130{left:468.900864pt;}
.x46_c00130{left:471.322323pt;}
.x1e_c00130{left:472.296000pt;}
.x9f_c00130{left:473.959144pt;}
.x55_c00130{left:479.749675pt;}
.x50_c00130{left:483.780075pt;}
.xb7_c00130{left:486.438920pt;}
.xed_c00130{left:489.776000pt;}
.x10e_c00130{left:491.452864pt;}
.x7f_c00130{left:492.442277pt;}
.xf4_c00130{left:496.777899pt;}
.xad_c00130{left:500.109087pt;}
.x8c_c00130{left:501.828640pt;}
.xb8_c00130{left:503.721708pt;}
.x3c_c00130{left:505.625437pt;}
.x15_c00130{left:507.840000pt;}
.x95_c00130{left:509.950667pt;}
.x11f_c00130{left:518.417643pt;}
.xf5_c00130{left:519.567776pt;}
.x11b_c00130{left:521.701333pt;}
.xa0_c00130{left:523.398156pt;}
.x10f_c00130{left:524.335531pt;}
.x56_c00130{left:525.832061pt;}
.x3d_c00130{left:527.945437pt;}
.x1f_c00130{left:529.189333pt;}
.x16_c00130{left:530.400000pt;}
.xb9_c00130{left:531.807237pt;}
.x31_c00130{left:533.527251pt;}
.x8d_c00130{left:535.875099pt;}
.xdf_c00130{left:538.030059pt;}
.xee_c00130{left:542.096000pt;}
.xc5_c00130{left:545.963307pt;}
.x44_c00130{left:547.209965pt;}
.x2a_c00130{left:548.111285pt;}
.x17_c00130{left:549.840000pt;}
.xd4_c00130{left:552.438667pt;}
.x32_c00130{left:553.687979pt;}
.xf6_c00130{left:556.541995pt;}
.xef_c00130{left:558.658667pt;}
.x9_c00130{left:559.680000pt;}
.xc6_c00130{left:561.566085pt;}
.xae_c00130{left:565.153087pt;}
.x51_c00130{left:568.980904pt;}
.xa1_c00130{left:570.214483pt;}
.xf7_c00130{left:571.413013pt;}
.x47_c00130{left:572.807048pt;}
.xba_c00130{left:576.936888pt;}
.x96_c00130{left:577.864000pt;}
.xa2_c00130{left:580.519891pt;}
.x57_c00130{left:582.715717pt;}
.xe0_c00130{left:589.636413pt;}
.xd5_c00130{left:590.838667pt;}
.xbb_c00130{left:591.803657pt;}
.x66_c00130{left:594.952067pt;}
.x48_c00130{left:596.326904pt;}
.xaf_c00130{left:597.310420pt;}
.x3e_c00130{left:603.301437pt;}
.x2b_c00130{left:604.267285pt;}
.x18_c00130{left:607.680000pt;}
.x103_c00130{left:610.272747pt;}
.x33_c00130{left:611.288717pt;}
.x20_c00130{left:613.672000pt;}
.xfe_c00130{left:615.797653pt;}
.xf0_c00130{left:617.460000pt;}
.xd6_c00130{left:618.922667pt;}
.x110_c00130{left:620.811531pt;}
.xb0_c00130{left:622.033087pt;}
.x11c_c00130{left:623.465333pt;}
.xf1_c00130{left:630.186667pt;}
.xa3_c00130{left:633.081588pt;}
.x8e_c00130{left:634.490507pt;}
.xb1_c00130{left:635.474420pt;}
.xff_c00130{left:638.839168pt;}
.x49_c00130{left:642.422624pt;}
.xe1_c00130{left:643.412093pt;}
.x104_c00130{left:648.893461pt;}
.xa4_c00130{left:649.872376pt;}
.x41_c00130{left:652.248157pt;}
.xf8_c00130{left:653.749653pt;}
.x21_c00130{left:655.389333pt;}
.xa_c00130{left:656.880000pt;}
.x58_c00130{left:659.228595pt;}
.x60_c00130{left:660.426568pt;}
.x6c_c00130{left:661.640565pt;}
.x76_c00130{left:663.306624pt;}
.xbc_c00130{left:665.982847pt;}
.x45_c00130{left:669.131691pt;}
.xd7_c00130{left:672.444000pt;}
.xe2_c00130{left:674.599909pt;}
.x111_c00130{left:676.744864pt;}
.x34_c00130{left:683.049968pt;}
.x100_c00130{left:688.039563pt;}
.x97_c00130{left:689.958667pt;}
.x105_c00130{left:691.855445pt;}
.xb2_c00130{left:692.835753pt;}
.xf9_c00130{left:693.822613pt;}
.x112_c00130{left:695.471531pt;}
.xa5_c00130{left:696.447369pt;}
.x98_c00130{left:703.158667pt;}
.xbd_c00130{left:705.092460pt;}
.xb3_c00130{left:706.757087pt;}
.x106_c00130{left:711.533792pt;}
.xbe_c00130{left:718.307220pt;}
.xd8_c00130{left:720.220000pt;}
.xfa_c00130{left:729.103456pt;}
.x99_c00130{left:749.760000pt;}
.xa6_c00130{left:750.926419pt;}
}





/* 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_c00131 {
    display:none;
  }
  .loading-indicator_c00131.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00131 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_c00131 { 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_c00131" -> "#page-container .classname_c00131")
 */
.pf_c00131 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00131 { /* 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_c00131.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00131 { /* 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_c00131 { /* 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_c00131 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00131 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00131 {overflow:visible;}
  }
}
.c_c00131 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00131 { /* 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_c00131:after { /* webkit #35443 */
  content: '';
}
.t_c00131:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00131 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 */
}
.__c00131 { /* 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_c00131 { /* info for Javascript */
  display:none;
}
.l_c00131 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00131 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00131 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00131: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_c00131 {
    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_c00131.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00131.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_c00131 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00131{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00131;src:url('chunks/assets/font_92d6bb63cbc780ceff7db400.woff2')format("woff");}.ff1_c00131{font-family:ff1_c00131;line-height:1.000000;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;}
.m14_c00131{transform:matrix(0.000255,0.025454,-0.249988,0.002500,0,0);-ms-transform:matrix(0.000255,0.025454,-0.249988,0.002500,0,0);-webkit-transform:matrix(0.000255,0.025454,-0.249988,0.002500,0,0);}
.m11_c00131{transform:matrix(0.000324,0.032448,-0.249988,0.002500,0,0);-ms-transform:matrix(0.000324,0.032448,-0.249988,0.002500,0,0);-webkit-transform:matrix(0.000324,0.032448,-0.249988,0.002500,0,0);}
.m13_c00131{transform:matrix(0.000649,0.064897,-0.249988,0.002500,0,0);-ms-transform:matrix(0.000649,0.064897,-0.249988,0.002500,0,0);-webkit-transform:matrix(0.000649,0.064897,-0.249988,0.002500,0,0);}
.m26_c00131{transform:matrix(0.000922,0.083850,-0.249985,0.002750,0,0);-ms-transform:matrix(0.000922,0.083850,-0.249985,0.002750,0,0);-webkit-transform:matrix(0.000922,0.083850,-0.249985,0.002750,0,0);}
.mf_c00131{transform:matrix(0.001097,0.109655,-0.249988,0.002500,0,0);-ms-transform:matrix(0.001097,0.109655,-0.249988,0.002500,0,0);-webkit-transform:matrix(0.001097,0.109655,-0.249988,0.002500,0,0);}
.md_c00131{transform:matrix(0.001208,0.120779,-0.249988,0.002500,0,0);-ms-transform:matrix(0.001208,0.120779,-0.249988,0.002500,0,0);-webkit-transform:matrix(0.001208,0.120779,-0.249988,0.002500,0,0);}
.m1a_c00131{transform:matrix(0.001490,0.148968,-0.249988,0.002500,0,0);-ms-transform:matrix(0.001490,0.148968,-0.249988,0.002500,0,0);-webkit-transform:matrix(0.001490,0.148968,-0.249988,0.002500,0,0);}
.m1e_c00131{transform:matrix(0.001572,0.157172,-0.249988,0.002500,0,0);-ms-transform:matrix(0.001572,0.157172,-0.249988,0.002500,0,0);-webkit-transform:matrix(0.001572,0.157172,-0.249988,0.002500,0,0);}
.m22_c00131{transform:matrix(0.001847,0.184656,-0.249988,0.002500,0,0);-ms-transform:matrix(0.001847,0.184656,-0.249988,0.002500,0,0);-webkit-transform:matrix(0.001847,0.184656,-0.249988,0.002500,0,0);}
.m1b_c00131{transform:matrix(0.001907,0.190695,-0.249988,0.002500,0,0);-ms-transform:matrix(0.001907,0.190695,-0.249988,0.002500,0,0);-webkit-transform:matrix(0.001907,0.190695,-0.249988,0.002500,0,0);}
.ma_c00131{transform:matrix(0.002217,0.221749,-0.249988,0.002500,0,0);-ms-transform:matrix(0.002217,0.221749,-0.249988,0.002500,0,0);-webkit-transform:matrix(0.002217,0.221749,-0.249988,0.002500,0,0);}
.me_c00131{transform:matrix(0.002227,0.222724,-0.249988,0.002500,0,0);-ms-transform:matrix(0.002227,0.222724,-0.249988,0.002500,0,0);-webkit-transform:matrix(0.002227,0.222724,-0.249988,0.002500,0,0);}
.m1d_c00131{transform:matrix(0.002624,0.262382,-0.249988,0.002500,0,0);-ms-transform:matrix(0.002624,0.262382,-0.249988,0.002500,0,0);-webkit-transform:matrix(0.002624,0.262382,-0.249988,0.002500,0,0);}
.m18_c00131{transform:matrix(0.002641,0.264112,-0.249988,0.002500,0,0);-ms-transform:matrix(0.002641,0.264112,-0.249988,0.002500,0,0);-webkit-transform:matrix(0.002641,0.264112,-0.249988,0.002500,0,0);}
.mc_c00131{transform:matrix(0.002724,0.272431,-0.249988,0.002500,0,0);-ms-transform:matrix(0.002724,0.272431,-0.249988,0.002500,0,0);-webkit-transform:matrix(0.002724,0.272431,-0.249988,0.002500,0,0);}
.m15_c00131{transform:matrix(0.002772,0.277241,-0.249988,0.002500,0,0);-ms-transform:matrix(0.002772,0.277241,-0.249988,0.002500,0,0);-webkit-transform:matrix(0.002772,0.277241,-0.249988,0.002500,0,0);}
.m1c_c00131{transform:matrix(0.002846,0.284591,-0.249988,0.002500,0,0);-ms-transform:matrix(0.002846,0.284591,-0.249988,0.002500,0,0);-webkit-transform:matrix(0.002846,0.284591,-0.249988,0.002500,0,0);}
.m25_c00131{transform:matrix(0.002928,0.266159,-0.249985,0.002750,0,0);-ms-transform:matrix(0.002928,0.266159,-0.249985,0.002750,0,0);-webkit-transform:matrix(0.002928,0.266159,-0.249985,0.002750,0,0);}
.m16_c00131{transform:matrix(0.003592,0.359222,-0.249988,0.002500,0,0);-ms-transform:matrix(0.003592,0.359222,-0.249988,0.002500,0,0);-webkit-transform:matrix(0.003592,0.359222,-0.249988,0.002500,0,0);}
.m17_c00131{transform:matrix(0.003644,0.364402,-0.249988,0.002500,0,0);-ms-transform:matrix(0.003644,0.364402,-0.249988,0.002500,0,0);-webkit-transform:matrix(0.003644,0.364402,-0.249988,0.002500,0,0);}
.m12_c00131{transform:matrix(0.004367,0.436663,-0.249988,0.002500,0,0);-ms-transform:matrix(0.004367,0.436663,-0.249988,0.002500,0,0);-webkit-transform:matrix(0.004367,0.436663,-0.249988,0.002500,0,0);}
.m19_c00131{transform:matrix(0.004563,0.456342,-0.249988,0.002500,0,0);-ms-transform:matrix(0.004563,0.456342,-0.249988,0.002500,0,0);-webkit-transform:matrix(0.004563,0.456342,-0.249988,0.002500,0,0);}
.m1f_c00131{transform:matrix(0.004633,0.463282,-0.249988,0.002500,0,0);-ms-transform:matrix(0.004633,0.463282,-0.249988,0.002500,0,0);-webkit-transform:matrix(0.004633,0.463282,-0.249988,0.002500,0,0);}
.m20_c00131{transform:matrix(0.005352,0.535153,-0.249988,0.002500,0,0);-ms-transform:matrix(0.005352,0.535153,-0.249988,0.002500,0,0);-webkit-transform:matrix(0.005352,0.535153,-0.249988,0.002500,0,0);}
.m27_c00131{transform:matrix(0.006670,0.606348,-0.249985,0.002750,0,0);-ms-transform:matrix(0.006670,0.606348,-0.249985,0.002750,0,0);-webkit-transform:matrix(0.006670,0.606348,-0.249985,0.002750,0,0);}
.m21_c00131{transform:matrix(0.007357,0.735653,-0.249988,0.002500,0,0);-ms-transform:matrix(0.007357,0.735653,-0.249988,0.002500,0,0);-webkit-transform:matrix(0.007357,0.735653,-0.249988,0.002500,0,0);}
.m10_c00131{transform:matrix(0.007496,0.749633,-0.249988,0.002500,0,0);-ms-transform:matrix(0.007496,0.749633,-0.249988,0.002500,0,0);-webkit-transform:matrix(0.007496,0.749633,-0.249988,0.002500,0,0);}
.m8_c00131{transform:matrix(0.010325,1.032498,-0.249988,0.002500,0,0);-ms-transform:matrix(0.010325,1.032498,-0.249988,0.002500,0,0);-webkit-transform:matrix(0.010325,1.032498,-0.249988,0.002500,0,0);}
.m9_c00131{transform:matrix(0.011792,1.179191,-0.249988,0.002500,0,0);-ms-transform:matrix(0.011792,1.179191,-0.249988,0.002500,0,0);-webkit-transform:matrix(0.011792,1.179191,-0.249988,0.002500,0,0);}
.m24_c00131{transform:matrix(0.014793,1.344844,-0.249985,0.002750,0,0);-ms-transform:matrix(0.014793,1.344844,-0.249985,0.002750,0,0);-webkit-transform:matrix(0.014793,1.344844,-0.249985,0.002750,0,0);}
.mb_c00131{transform:matrix(0.028855,2.885476,-0.249988,0.002500,0,0);-ms-transform:matrix(0.028855,2.885476,-0.249988,0.002500,0,0);-webkit-transform:matrix(0.028855,2.885476,-0.249988,0.002500,0,0);}
.m23_c00131{transform:matrix(0.030664,2.787671,-0.249985,0.002750,0,0);-ms-transform:matrix(0.030664,2.787671,-0.249985,0.002750,0,0);-webkit-transform:matrix(0.030664,2.787671,-0.249985,0.002750,0,0);}
.m1_c00131{transform:matrix(0.162790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162790,0.000000,0.000000,0.250000,0,0);}
.m2_c00131{transform:matrix(0.211460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211460,0.000000,0.000000,0.250000,0,0);}
.m4_c00131{transform:matrix(0.218660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218660,0.000000,0.000000,0.250000,0,0);}
.m7_c00131{transform:matrix(0.265800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265800,0.000000,0.000000,0.250000,0,0);}
.m5_c00131{transform:matrix(0.267285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267285,0.000000,0.000000,0.250000,0,0);}
.m0_c00131{transform:matrix(0.271710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271710,0.000000,0.000000,0.250000,0,0);}
.m3_c00131{transform:matrix(0.322200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322200,0.000000,0.000000,0.250000,0,0);}
.m6_c00131{transform:matrix(0.592855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592855,0.000000,0.000000,0.250000,0,0);}
.v0_c00131{vertical-align:0.000000px;}
.ls0_c00131{letter-spacing:0.000000px;}
.sc__c00131{text-shadow:none;}
.sc0_c00131{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__c00131{-webkit-text-stroke:0px transparent;}
.sc0_c00131{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00131{word-spacing:0.000000px;}
.fc0_c00131{color:transparent;}
.fs0_c00131{font-size:18.000000px;}
.fs5_c00131{font-size:24.000000px;}
.fs7_c00131{font-size:30.001500px;}
.fs6_c00131{font-size:36.001800px;}
.fs8_c00131{font-size:36.002178px;}
.fs1_c00131{font-size:42.000000px;}
.fs2_c00131{font-size:48.000000px;}
.fs3_c00131{font-size:72.000000px;}
.fs4_c00131{font-size:102.000000px;}
.y0_c00131{bottom:0.000000px;}
.y21_c00131{bottom:138.490890px;}
.y20_c00131{bottom:166.844475px;}
.yf_c00131{bottom:176.307000px;}
.ye_c00131{bottom:182.491500px;}
.y1f_c00131{bottom:184.661850px;}
.y1e_c00131{bottom:217.871040px;}
.y24_c00131{bottom:223.308000px;}
.y1d_c00131{bottom:223.794660px;}
.y1c_c00131{bottom:230.028795px;}
.yd_c00131{bottom:234.891000px;}
.y26_c00131{bottom:242.178139px;}
.y1b_c00131{bottom:244.048080px;}
.y1a_c00131{bottom:252.689760px;}
.y19_c00131{bottom:258.896895px;}
.yc_c00131{bottom:259.729500px;}
.yb_c00131{bottom:278.923500px;}
.y18_c00131{bottom:287.253480px;}
.y17_c00131{bottom:304.533840px;}
.y23_c00131{bottom:316.203000px;}
.y16_c00131{bottom:345.028680px;}
.ya_c00131{bottom:366.913500px;}
.y15_c00131{bottom:368.511675px;}
.y14_c00131{bottom:391.991670px;}
.y9_c00131{bottom:405.519000px;}
.y25_c00131{bottom:422.008411px;}
.y13_c00131{bottom:428.467935px;}
.y22_c00131{bottom:464.136000px;}
.y12_c00131{bottom:529.123035px;}
.y8_c00131{bottom:540.790500px;}
.y11_c00131{bottom:566.137800px;}
.y10_c00131{bottom:588.252765px;}
.y7_c00131{bottom:589.647000px;}
.y6_c00131{bottom:597.235500px;}
.y4_c00131{bottom:614.520000px;}
.y5_c00131{bottom:616.410000px;}
.y2_c00131{bottom:616.950000px;}
.y1_c00131{bottom:617.487000px;}
.y3_c00131{bottom:619.860000px;}
.h2_c00131{height:18.000000px;}
.h7_c00131{height:24.000000px;}
.h9_c00131{height:30.001500px;}
.h8_c00131{height:36.001800px;}
.ha_c00131{height:36.002178px;}
.h3_c00131{height:42.000000px;}
.h4_c00131{height:48.000000px;}
.h5_c00131{height:72.000000px;}
.h6_c00131{height:102.000000px;}
.h0_c00131{height:698.220000px;}
.h1_c00131{height:698.250000px;}
.w1_c00131{width:945.750000px;}
.w0_c00131{width:946.050000px;}
.x0_c00131{left:0.000000px;}
.x13_c00131{left:67.499292px;}
.x11_c00131{left:72.090000px;}
.x12_c00131{left:73.717263px;}
.xd_c00131{left:75.059550px;}
.xe_c00131{left:76.324365px;}
.xf_c00131{left:77.440980px;}
.x10_c00131{left:78.619575px;}
.x9_c00131{left:83.970000px;}
.xa_c00131{left:85.811280px;}
.xb_c00131{left:87.077235px;}
.xc_c00131{left:88.103400px;}
.x7_c00131{left:108.540000px;}
.x8_c00131{left:147.690000px;}
.x6_c00131{left:691.740000px;}
.x5_c00131{left:716.040000px;}
.x4_c00131{left:731.695500px;}
.x3_c00131{left:743.310000px;}
.x1_c00131{left:770.310000px;}
.x2_c00131{left:787.590000px;}
@media print{
.v0_c00131{vertical-align:0.000000pt;}
.ls0_c00131{letter-spacing:0.000000pt;}
.ws0_c00131{word-spacing:0.000000pt;}
.fs0_c00131{font-size:16.000000pt;}
.fs5_c00131{font-size:21.333333pt;}
.fs7_c00131{font-size:26.668000pt;}
.fs6_c00131{font-size:32.001600pt;}
.fs8_c00131{font-size:32.001936pt;}
.fs1_c00131{font-size:37.333333pt;}
.fs2_c00131{font-size:42.666667pt;}
.fs3_c00131{font-size:64.000000pt;}
.fs4_c00131{font-size:90.666667pt;}
.y0_c00131{bottom:0.000000pt;}
.y21_c00131{bottom:123.103013pt;}
.y20_c00131{bottom:148.306200pt;}
.yf_c00131{bottom:156.717333pt;}
.ye_c00131{bottom:162.214667pt;}
.y1f_c00131{bottom:164.143867pt;}
.y1e_c00131{bottom:193.663147pt;}
.y24_c00131{bottom:198.496000pt;}
.y1d_c00131{bottom:198.928587pt;}
.y1c_c00131{bottom:204.470040pt;}
.yd_c00131{bottom:208.792000pt;}
.y26_c00131{bottom:215.269457pt;}
.y1b_c00131{bottom:216.931627pt;}
.y1a_c00131{bottom:224.613120pt;}
.y19_c00131{bottom:230.130573pt;}
.yc_c00131{bottom:230.870667pt;}
.yb_c00131{bottom:247.932000pt;}
.y18_c00131{bottom:255.336427pt;}
.y17_c00131{bottom:270.696747pt;}
.y23_c00131{bottom:281.069333pt;}
.y16_c00131{bottom:306.692160pt;}
.ya_c00131{bottom:326.145333pt;}
.y15_c00131{bottom:327.565933pt;}
.y14_c00131{bottom:348.437040pt;}
.y9_c00131{bottom:360.461333pt;}
.y25_c00131{bottom:375.118588pt;}
.y13_c00131{bottom:380.860387pt;}
.y22_c00131{bottom:412.565333pt;}
.y12_c00131{bottom:470.331587pt;}
.y8_c00131{bottom:480.702667pt;}
.y11_c00131{bottom:503.233600pt;}
.y10_c00131{bottom:522.891347pt;}
.y7_c00131{bottom:524.130667pt;}
.y6_c00131{bottom:530.876000pt;}
.y4_c00131{bottom:546.240000pt;}
.y5_c00131{bottom:547.920000pt;}
.y2_c00131{bottom:548.400000pt;}
.y1_c00131{bottom:548.877333pt;}
.y3_c00131{bottom:550.986667pt;}
.h2_c00131{height:16.000000pt;}
.h7_c00131{height:21.333333pt;}
.h9_c00131{height:26.668000pt;}
.h8_c00131{height:32.001600pt;}
.ha_c00131{height:32.001936pt;}
.h3_c00131{height:37.333333pt;}
.h4_c00131{height:42.666667pt;}
.h5_c00131{height:64.000000pt;}
.h6_c00131{height:90.666667pt;}
.h0_c00131{height:620.640000pt;}
.h1_c00131{height:620.666667pt;}
.w1_c00131{width:840.666667pt;}
.w0_c00131{width:840.933333pt;}
.x0_c00131{left:0.000000pt;}
.x13_c00131{left:59.999371pt;}
.x11_c00131{left:64.080000pt;}
.x12_c00131{left:65.526456pt;}
.xd_c00131{left:66.719600pt;}
.xe_c00131{left:67.843880pt;}
.xf_c00131{left:68.836427pt;}
.x10_c00131{left:69.884067pt;}
.x9_c00131{left:74.640000pt;}
.xa_c00131{left:76.276693pt;}
.xb_c00131{left:77.401987pt;}
.xc_c00131{left:78.314133pt;}
.x7_c00131{left:96.480000pt;}
.x8_c00131{left:131.280000pt;}
.x6_c00131{left:614.880000pt;}
.x5_c00131{left:636.480000pt;}
.x4_c00131{left:650.396000pt;}
.x3_c00131{left:660.720000pt;}
.x1_c00131{left:684.720000pt;}
.x2_c00131{left:700.080000pt;}
}





/* 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_c00132 {
    display:none;
  }
  .loading-indicator_c00132.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00132 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_c00132 { 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_c00132" -> "#page-container .classname_c00132")
 */
.pf_c00132 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00132 { /* 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_c00132.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00132 { /* 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_c00132 { /* 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_c00132 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00132 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00132 {overflow:visible;}
  }
}
.c_c00132 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00132 { /* 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_c00132:after { /* webkit #35443 */
  content: '';
}
.t_c00132:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00132 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 */
}
.__c00132 { /* 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_c00132 { /* info for Javascript */
  display:none;
}
.l_c00132 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00132 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00132 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00132: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_c00132 {
    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_c00132.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00132.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_c00132 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00132{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00132;src:url('chunks/assets/font_b11a17f404e7258299fdf971.woff2')format("woff");}.ff1_c00132{font-family:ff1_c00132;line-height:1.000000;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;}
.m2_c00132{transform:matrix(0.015457,0.000309,-0.004999,0.249950,0,0);-ms-transform:matrix(0.015457,0.000309,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.015457,0.000309,-0.004999,0.249950,0,0);}
.m13_c00132{transform:matrix(0.111911,0.001455,-0.003250,0.249979,0,0);-ms-transform:matrix(0.111911,0.001455,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.111911,0.001455,-0.003250,0.249979,0,0);}
.m12_c00132{transform:matrix(0.116950,0.001520,-0.003250,0.249979,0,0);-ms-transform:matrix(0.116950,0.001520,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.116950,0.001520,-0.003250,0.249979,0,0);}
.m19_c00132{transform:matrix(0.141847,0.002270,-0.003999,0.249968,0,0);-ms-transform:matrix(0.141847,0.002270,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.141847,0.002270,-0.003999,0.249968,0,0);}
.m18_c00132{transform:matrix(0.147981,0.002368,-0.003999,0.249968,0,0);-ms-transform:matrix(0.147981,0.002368,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.147981,0.002368,-0.003999,0.249968,0,0);}
.m14_c00132{transform:matrix(0.150411,0.002407,-0.003999,0.249968,0,0);-ms-transform:matrix(0.150411,0.002407,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.150411,0.002407,-0.003999,0.249968,0,0);}
.m17_c00132{transform:matrix(0.170303,0.002725,-0.003999,0.249968,0,0);-ms-transform:matrix(0.170303,0.002725,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.170303,0.002725,-0.003999,0.249968,0,0);}
.m1_c00132{transform:matrix(0.173245,0.003465,-0.004999,0.249950,0,0);-ms-transform:matrix(0.173245,0.003465,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.173245,0.003465,-0.004999,0.249950,0,0);}
.m15_c00132{transform:matrix(0.177147,0.002834,-0.003999,0.249968,0,0);-ms-transform:matrix(0.177147,0.002834,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.177147,0.002834,-0.003999,0.249968,0,0);}
.m16_c00132{transform:matrix(0.195290,0.003125,-0.003999,0.249968,0,0);-ms-transform:matrix(0.195290,0.003125,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.195290,0.003125,-0.003999,0.249968,0,0);}
.m7_c00132{transform:matrix(0.220436,0.004409,-0.004999,0.249950,0,0);-ms-transform:matrix(0.220436,0.004409,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.220436,0.004409,-0.004999,0.249950,0,0);}
.ma_c00132{transform:matrix(0.225450,0.004509,-0.004999,0.249950,0,0);-ms-transform:matrix(0.225450,0.004509,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.225450,0.004509,-0.004999,0.249950,0,0);}
.m3_c00132{transform:matrix(0.228359,0.004567,-0.004999,0.249950,0,0);-ms-transform:matrix(0.228359,0.004567,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.228359,0.004567,-0.004999,0.249950,0,0);}
.mc_c00132{transform:matrix(0.238497,0.004531,-0.004749,0.249955,0,0);-ms-transform:matrix(0.238497,0.004531,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.238497,0.004531,-0.004749,0.249955,0,0);}
.m8_c00132{transform:matrix(0.240327,0.004807,-0.004999,0.249950,0,0);-ms-transform:matrix(0.240327,0.004807,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.240327,0.004807,-0.004999,0.249950,0,0);}
.m0_c00132{transform:matrix(0.242671,0.004853,-0.004999,0.249950,0,0);-ms-transform:matrix(0.242671,0.004853,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.242671,0.004853,-0.004999,0.249950,0,0);}
.mb_c00132{transform:matrix(0.243176,0.004864,-0.004999,0.249950,0,0);-ms-transform:matrix(0.243176,0.004864,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.243176,0.004864,-0.004999,0.249950,0,0);}
.mf_c00132{transform:matrix(0.251854,0.004282,-0.004249,0.249964,0,0);-ms-transform:matrix(0.251854,0.004282,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.251854,0.004282,-0.004249,0.249964,0,0);}
.m4_c00132{transform:matrix(0.252744,0.005055,-0.004999,0.249950,0,0);-ms-transform:matrix(0.252744,0.005055,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.252744,0.005055,-0.004999,0.249950,0,0);}
.me_c00132{transform:matrix(0.258093,0.004904,-0.004749,0.249955,0,0);-ms-transform:matrix(0.258093,0.004904,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.258093,0.004904,-0.004749,0.249955,0,0);}
.m11_c00132{transform:matrix(0.258268,0.004391,-0.004249,0.249964,0,0);-ms-transform:matrix(0.258268,0.004391,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.258268,0.004391,-0.004249,0.249964,0,0);}
.m5_c00132{transform:matrix(0.261113,0.005222,-0.004999,0.249950,0,0);-ms-transform:matrix(0.261113,0.005222,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.261113,0.005222,-0.004999,0.249950,0,0);}
.m10_c00132{transform:matrix(0.261597,0.004447,-0.004249,0.249964,0,0);-ms-transform:matrix(0.261597,0.004447,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.261597,0.004447,-0.004249,0.249964,0,0);}
.m6_c00132{transform:matrix(0.265772,0.005315,-0.004999,0.249950,0,0);-ms-transform:matrix(0.265772,0.005315,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.265772,0.005315,-0.004999,0.249950,0,0);}
.m9_c00132{transform:matrix(0.282718,0.005654,-0.004999,0.249950,0,0);-ms-transform:matrix(0.282718,0.005654,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.282718,0.005654,-0.004999,0.249950,0,0);}
.md_c00132{transform:matrix(0.290383,0.005517,-0.004749,0.249955,0,0);-ms-transform:matrix(0.290383,0.005517,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.290383,0.005517,-0.004749,0.249955,0,0);}
.v0_c00132{vertical-align:0.000000px;}
.ls0_c00132{letter-spacing:0.000000px;}
.sc__c00132{text-shadow:none;}
.sc0_c00132{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__c00132{-webkit-text-stroke:0px transparent;}
.sc0_c00132{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00132{word-spacing:0.000000px;}
.fc0_c00132{color:transparent;}
.fs2_c00132{font-size:66.011912px;}
.fs0_c00132{font-size:72.014399px;}
.fs1_c00132{font-size:156.031197px;}
.fs5_c00132{font-size:162.020735px;}
.fs3_c00132{font-size:168.024274px;}
.fs4_c00132{font-size:480.040558px;}
.y0_c00132{bottom:0.000000px;}
.y1a_c00132{bottom:342.160080px;}
.y19_c00132{bottom:342.940440px;}
.y18_c00132{bottom:344.765592px;}
.y17_c00132{bottom:346.716312px;}
.y16_c00132{bottom:347.372928px;}
.y15_c00132{bottom:348.846000px;}
.y14_c00132{bottom:428.105709px;}
.y13_c00132{bottom:433.096500px;}
.y12_c00132{bottom:524.780535px;}
.y11_c00132{bottom:527.815035px;}
.y10_c00132{bottom:530.019000px;}
.yf_c00132{bottom:577.085560px;}
.ye_c00132{bottom:577.978209px;}
.yd_c00132{bottom:578.614500px;}
.yc_c00132{bottom:619.814550px;}
.yb_c00132{bottom:622.404750px;}
.ya_c00132{bottom:625.533300px;}
.y9_c00132{bottom:628.558650px;}
.y8_c00132{bottom:673.145790px;}
.y7_c00132{bottom:673.778640px;}
.y6_c00132{bottom:675.662640px;}
.y5_c00132{bottom:676.375950px;}
.y4_c00132{bottom:677.618040px;}
.y3_c00132{bottom:677.955690px;}
.y2_c00132{bottom:679.934070px;}
.y1_c00132{bottom:681.481500px;}
.h4_c00132{height:66.011912px;}
.h2_c00132{height:72.014399px;}
.h3_c00132{height:156.031197px;}
.h7_c00132{height:162.020735px;}
.h5_c00132{height:168.024274px;}
.h6_c00132{height:480.040558px;}
.h0_c00132{height:698.220000px;}
.h1_c00132{height:698.250000px;}
.w1_c00132{width:945.750000px;}
.w0_c00132{width:946.050000px;}
.x0_c00132{left:0.000000px;}
.x13_c00132{left:134.028000px;}
.x1_c00132{left:154.132500px;}
.x9_c00132{left:169.873260px;}
.x15_c00132{left:216.172500px;}
.x2_c00132{left:231.504000px;}
.x10_c00132{left:254.082000px;}
.x16_c00132{left:308.239500px;}
.x3_c00132{left:330.423000px;}
.xa_c00132{left:337.947480px;}
.x4_c00132{left:347.305500px;}
.x17_c00132{left:349.278000px;}
.xd_c00132{left:376.969500px;}
.x11_c00132{left:383.727000px;}
.x5_c00132{left:409.410000px;}
.xe_c00132{left:410.458500px;}
.x6_c00132{left:445.075500px;}
.xf_c00132{left:457.440000px;}
.x18_c00132{left:471.198000px;}
.xb_c00132{left:511.781940px;}
.x14_c00132{left:517.935000px;}
.x7_c00132{left:539.275500px;}
.x12_c00132{left:562.227000px;}
.x8_c00132{left:570.918000px;}
.x19_c00132{left:585.270000px;}
.x1a_c00132{left:634.042500px;}
.xc_c00132{left:655.697700px;}
@media print{
.v0_c00132{vertical-align:0.000000pt;}
.ls0_c00132{letter-spacing:0.000000pt;}
.ws0_c00132{word-spacing:0.000000pt;}
.fs2_c00132{font-size:58.677255pt;}
.fs0_c00132{font-size:64.012799pt;}
.fs1_c00132{font-size:138.694397pt;}
.fs5_c00132{font-size:144.018431pt;}
.fs3_c00132{font-size:149.354910pt;}
.fs4_c00132{font-size:426.702718pt;}
.y0_c00132{bottom:0.000000pt;}
.y1a_c00132{bottom:304.142293pt;}
.y19_c00132{bottom:304.835947pt;}
.y18_c00132{bottom:306.458304pt;}
.y17_c00132{bottom:308.192277pt;}
.y16_c00132{bottom:308.775936pt;}
.y15_c00132{bottom:310.085333pt;}
.y14_c00132{bottom:380.538408pt;}
.y13_c00132{bottom:384.974667pt;}
.y12_c00132{bottom:466.471587pt;}
.y11_c00132{bottom:469.168920pt;}
.y10_c00132{bottom:471.128000pt;}
.yf_c00132{bottom:512.964943pt;}
.ye_c00132{bottom:513.758408pt;}
.yd_c00132{bottom:514.324000pt;}
.yc_c00132{bottom:550.946267pt;}
.yb_c00132{bottom:553.248667pt;}
.ya_c00132{bottom:556.029600pt;}
.y9_c00132{bottom:558.718800pt;}
.y8_c00132{bottom:598.351813pt;}
.y7_c00132{bottom:598.914347pt;}
.y6_c00132{bottom:600.589013pt;}
.y5_c00132{bottom:601.223067pt;}
.y4_c00132{bottom:602.327147pt;}
.y3_c00132{bottom:602.627280pt;}
.y2_c00132{bottom:604.385840pt;}
.y1_c00132{bottom:605.761333pt;}
.h4_c00132{height:58.677255pt;}
.h2_c00132{height:64.012799pt;}
.h3_c00132{height:138.694397pt;}
.h7_c00132{height:144.018431pt;}
.h5_c00132{height:149.354910pt;}
.h6_c00132{height:426.702718pt;}
.h0_c00132{height:620.640000pt;}
.h1_c00132{height:620.666667pt;}
.w1_c00132{width:840.666667pt;}
.w0_c00132{width:840.933333pt;}
.x0_c00132{left:0.000000pt;}
.x13_c00132{left:119.136000pt;}
.x1_c00132{left:137.006667pt;}
.x9_c00132{left:150.998453pt;}
.x15_c00132{left:192.153333pt;}
.x2_c00132{left:205.781333pt;}
.x10_c00132{left:225.850667pt;}
.x16_c00132{left:273.990667pt;}
.x3_c00132{left:293.709333pt;}
.xa_c00132{left:300.397760pt;}
.x4_c00132{left:308.716000pt;}
.x17_c00132{left:310.469333pt;}
.xd_c00132{left:335.084000pt;}
.x11_c00132{left:341.090667pt;}
.x5_c00132{left:363.920000pt;}
.xe_c00132{left:364.852000pt;}
.x6_c00132{left:395.622667pt;}
.xf_c00132{left:406.613333pt;}
.x18_c00132{left:418.842667pt;}
.xb_c00132{left:454.917280pt;}
.x14_c00132{left:460.386667pt;}
.x7_c00132{left:479.356000pt;}
.x12_c00132{left:499.757333pt;}
.x8_c00132{left:507.482667pt;}
.x19_c00132{left:520.240000pt;}
.x1a_c00132{left:563.593333pt;}
.xc_c00132{left:582.842400pt;}
}





/* 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_c00133 {
    display:none;
  }
  .loading-indicator_c00133.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00133 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_c00133 { 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_c00133" -> "#page-container .classname_c00133")
 */
.pf_c00133 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00133 { /* 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_c00133.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00133 { /* 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_c00133 { /* 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_c00133 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00133 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00133 {overflow:visible;}
  }
}
.c_c00133 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00133 { /* 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_c00133:after { /* webkit #35443 */
  content: '';
}
.t_c00133:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00133 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 */
}
.__c00133 { /* 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_c00133 { /* info for Javascript */
  display:none;
}
.l_c00133 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00133 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00133 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00133: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_c00133 {
    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_c00133.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00133.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_c00133 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00133{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00133;src:url('chunks/assets/font_74d7e987f08e4505b74f4479.woff2')format("woff");}.ff1_c00133{font-family:ff1_c00133;line-height:1.000000;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;}
.m20_c00133{transform:matrix(0.054085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054085,0.000000,0.000000,0.250000,0,0);}
.m5_c00133{transform:matrix(0.131195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131195,0.000000,0.000000,0.250000,0,0);}
.m1a_c00133{transform:matrix(0.134535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134535,0.000000,0.000000,0.250000,0,0);}
.m6_c00133{transform:matrix(0.156525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156525,0.000000,0.000000,0.250000,0,0);}
.m1b_c00133{transform:matrix(0.191215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191215,0.000000,0.000000,0.250000,0,0);}
.m9_c00133{transform:matrix(0.196475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196475,0.000000,0.000000,0.250000,0,0);}
.m8_c00133{transform:matrix(0.226400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226400,0.000000,0.000000,0.250000,0,0);}
.m7_c00133{transform:matrix(0.227795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227795,0.000000,0.000000,0.250000,0,0);}
.ma_c00133{transform:matrix(0.228965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228965,0.000000,0.000000,0.250000,0,0);}
.m18_c00133{transform:matrix(0.241660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241660,0.000000,0.000000,0.250000,0,0);}
.m2_c00133{transform:matrix(0.254950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254950,0.000000,0.000000,0.250000,0,0);}
.mc_c00133{transform:matrix(0.258070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258070,0.000000,0.000000,0.250000,0,0);}
.me_c00133{transform:matrix(0.271980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271980,0.000000,0.000000,0.250000,0,0);}
.m10_c00133{transform:matrix(0.307775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307775,0.000000,0.000000,0.250000,0,0);}
.m4_c00133{transform:matrix(0.312580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312580,0.000000,0.000000,0.250000,0,0);}
.m19_c00133{transform:matrix(0.342055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342055,0.000000,0.000000,0.250000,0,0);}
.m16_c00133{transform:matrix(0.344820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344820,0.000000,0.000000,0.250000,0,0);}
.mb_c00133{transform:matrix(0.362280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362280,0.000000,0.000000,0.250000,0,0);}
.m15_c00133{transform:matrix(0.385650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385650,0.000000,0.000000,0.250000,0,0);}
.m1c_c00133{transform:matrix(0.469815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469815,0.000000,0.000000,0.250000,0,0);}
.m1e_c00133{transform:matrix(0.475395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475395,0.000000,0.000000,0.250000,0,0);}
.m13_c00133{transform:matrix(0.516630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516630,0.000000,0.000000,0.250000,0,0);}
.m17_c00133{transform:matrix(0.538515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538515,0.000000,0.000000,0.250000,0,0);}
.mf_c00133{transform:matrix(0.616645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.616645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.616645,0.000000,0.000000,0.250000,0,0);}
.md_c00133{transform:matrix(0.657695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.657695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.657695,0.000000,0.000000,0.250000,0,0);}
.m1f_c00133{transform:matrix(0.732545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.732545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.732545,0.000000,0.000000,0.250000,0,0);}
.m14_c00133{transform:matrix(0.768670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.768670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.768670,0.000000,0.000000,0.250000,0,0);}
.m1d_c00133{transform:matrix(0.794290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.794290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.794290,0.000000,0.000000,0.250000,0,0);}
.m3_c00133{transform:matrix(1.007175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.007175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.007175,0.000000,0.000000,0.250000,0,0);}
.m11_c00133{transform:matrix(1.223765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.223765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.223765,0.000000,0.000000,0.250000,0,0);}
.m0_c00133{transform:matrix(1.224225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.224225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.224225,0.000000,0.000000,0.250000,0,0);}
.m1_c00133{transform:matrix(2.060465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.060465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.060465,0.000000,0.000000,0.250000,0,0);}
.m12_c00133{transform:matrix(2.624290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.624290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.624290,0.000000,0.000000,0.250000,0,0);}
.v0_c00133{vertical-align:0.000000px;}
.ls0_c00133{letter-spacing:0.000000px;}
.sc__c00133{text-shadow:none;}
.sc0_c00133{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__c00133{-webkit-text-stroke:0px transparent;}
.sc0_c00133{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00133{word-spacing:0.000000px;}
.fc0_c00133{color:transparent;}
.fs1_c00133{font-size:12.000000px;}
.fs0_c00133{font-size:18.000000px;}
.fs2_c00133{font-size:24.000000px;}
.y0_c00133{bottom:0.000000px;}
.y3_c00133{bottom:521.370000px;}
.yc_c00133{bottom:521.529000px;}
.y4_c00133{bottom:521.640000px;}
.y5_c00133{bottom:521.910000px;}
.y2_c00133{bottom:522.315000px;}
.y11_c00133{bottom:522.447000px;}
.yf_c00133{bottom:522.718500px;}
.y1_c00133{bottom:522.741000px;}
.y12_c00133{bottom:523.123500px;}
.ye_c00133{bottom:523.666500px;}
.y6_c00133{bottom:529.200000px;}
.y9_c00133{bottom:554.040000px;}
.yb_c00133{bottom:557.010000px;}
.ya_c00133{bottom:564.600000px;}
.yd_c00133{bottom:565.650000px;}
.y10_c00133{bottom:566.190000px;}
.y13_c00133{bottom:566.319000px;}
.y7_c00133{bottom:567.540000px;}
.y8_c00133{bottom:570.106500px;}
.h3_c00133{height:12.000000px;}
.h2_c00133{height:18.000000px;}
.h4_c00133{height:24.000000px;}
.h0_c00133{height:698.220000px;}
.h1_c00133{height:698.250000px;}
.w1_c00133{width:945.750000px;}
.w0_c00133{width:946.050000px;}
.x0_c00133{left:0.000000px;}
.x20_c00133{left:180.900000px;}
.x1f_c00133{left:191.970000px;}
.x1d_c00133{left:207.090000px;}
.x1e_c00133{left:229.500000px;}
.x1c_c00133{left:244.890000px;}
.x1b_c00133{left:268.110000px;}
.x19_c00133{left:271.080000px;}
.x15_c00133{left:282.150000px;}
.x1a_c00133{left:287.280000px;}
.x16_c00133{left:311.580000px;}
.x14_c00133{left:326.430000px;}
.x12_c00133{left:328.590000px;}
.x10_c00133{left:337.500000px;}
.x11_c00133{left:345.600000px;}
.x17_c00133{left:354.780000px;}
.x18_c00133{left:364.770000px;}
.xf_c00133{left:382.320000px;}
.x13_c00133{left:384.480000px;}
.xe_c00133{left:403.920000px;}
.xd_c00133{left:430.650000px;}
.xc_c00133{left:456.300000px;}
.xb_c00133{left:461.430000px;}
.xa_c00133{left:467.100000px;}
.x9_c00133{left:473.850000px;}
.x8_c00133{left:478.980000px;}
.x7_c00133{left:486.000000px;}
.x6_c00133{left:490.320000px;}
.x5_c00133{left:493.560000px;}
.x4_c00133{left:499.770000px;}
.x1_c00133{left:535.140000px;}
.x2_c00133{left:565.380000px;}
.x3_c00133{left:605.340000px;}
@media print{
.v0_c00133{vertical-align:0.000000pt;}
.ls0_c00133{letter-spacing:0.000000pt;}
.ws0_c00133{word-spacing:0.000000pt;}
.fs1_c00133{font-size:10.666667pt;}
.fs0_c00133{font-size:16.000000pt;}
.fs2_c00133{font-size:21.333333pt;}
.y0_c00133{bottom:0.000000pt;}
.y3_c00133{bottom:463.440000pt;}
.yc_c00133{bottom:463.581333pt;}
.y4_c00133{bottom:463.680000pt;}
.y5_c00133{bottom:463.920000pt;}
.y2_c00133{bottom:464.280000pt;}
.y11_c00133{bottom:464.397333pt;}
.yf_c00133{bottom:464.638667pt;}
.y1_c00133{bottom:464.658667pt;}
.y12_c00133{bottom:464.998667pt;}
.ye_c00133{bottom:465.481333pt;}
.y6_c00133{bottom:470.400000pt;}
.y9_c00133{bottom:492.480000pt;}
.yb_c00133{bottom:495.120000pt;}
.ya_c00133{bottom:501.866667pt;}
.yd_c00133{bottom:502.800000pt;}
.y10_c00133{bottom:503.280000pt;}
.y13_c00133{bottom:503.394667pt;}
.y7_c00133{bottom:504.480000pt;}
.y8_c00133{bottom:506.761333pt;}
.h3_c00133{height:10.666667pt;}
.h2_c00133{height:16.000000pt;}
.h4_c00133{height:21.333333pt;}
.h0_c00133{height:620.640000pt;}
.h1_c00133{height:620.666667pt;}
.w1_c00133{width:840.666667pt;}
.w0_c00133{width:840.933333pt;}
.x0_c00133{left:0.000000pt;}
.x20_c00133{left:160.800000pt;}
.x1f_c00133{left:170.640000pt;}
.x1d_c00133{left:184.080000pt;}
.x1e_c00133{left:204.000000pt;}
.x1c_c00133{left:217.680000pt;}
.x1b_c00133{left:238.320000pt;}
.x19_c00133{left:240.960000pt;}
.x15_c00133{left:250.800000pt;}
.x1a_c00133{left:255.360000pt;}
.x16_c00133{left:276.960000pt;}
.x14_c00133{left:290.160000pt;}
.x12_c00133{left:292.080000pt;}
.x10_c00133{left:300.000000pt;}
.x11_c00133{left:307.200000pt;}
.x17_c00133{left:315.360000pt;}
.x18_c00133{left:324.240000pt;}
.xf_c00133{left:339.840000pt;}
.x13_c00133{left:341.760000pt;}
.xe_c00133{left:359.040000pt;}
.xd_c00133{left:382.800000pt;}
.xc_c00133{left:405.600000pt;}
.xb_c00133{left:410.160000pt;}
.xa_c00133{left:415.200000pt;}
.x9_c00133{left:421.200000pt;}
.x8_c00133{left:425.760000pt;}
.x7_c00133{left:432.000000pt;}
.x6_c00133{left:435.840000pt;}
.x5_c00133{left:438.720000pt;}
.x4_c00133{left:444.240000pt;}
.x1_c00133{left:475.680000pt;}
.x2_c00133{left:502.560000pt;}
.x3_c00133{left:538.080000pt;}
}





/* 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_c00134 {
    display:none;
  }
  .loading-indicator_c00134.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00134 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_c00134 { 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_c00134" -> "#page-container .classname_c00134")
 */
.pf_c00134 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00134 { /* 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_c00134.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00134 { /* 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_c00134 { /* 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_c00134 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00134 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00134 {overflow:visible;}
  }
}
.c_c00134 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00134 { /* 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_c00134:after { /* webkit #35443 */
  content: '';
}
.t_c00134:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00134 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 */
}
.__c00134 { /* 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_c00134 { /* info for Javascript */
  display:none;
}
.l_c00134 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00134 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00134 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00134: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_c00134 {
    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_c00134.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00134.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_c00134 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00134{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00134;src:url('chunks/assets/font_92d6bb63cbc780ceff7db400.woff2')format("woff");}.ff1_c00134{font-family:ff1_c00134;line-height:1.000000;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;}
.ma_c00134{transform:matrix(0.028460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.028460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.028460,0.000000,0.000000,0.250000,0,0);}
.mf_c00134{transform:matrix(0.045000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.045000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.045000,0.000000,0.000000,0.250000,0,0);}
.mc_c00134{transform:matrix(0.124850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124850,0.000000,0.000000,0.250000,0,0);}
.me_c00134{transform:matrix(0.213930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213930,0.000000,0.000000,0.250000,0,0);}
.m2_c00134{transform:matrix(0.240150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240150,0.000000,0.000000,0.250000,0,0);}
.m9_c00134{transform:matrix(0.260290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260290,0.000000,0.000000,0.250000,0,0);}
.m3_c00134{transform:matrix(0.294810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294810,0.000000,0.000000,0.250000,0,0);}
.m10_c00134{transform:matrix(0.367680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367680,0.000000,0.000000,0.250000,0,0);}
.m5_c00134{transform:matrix(0.372605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372605,0.000000,0.000000,0.250000,0,0);}
.m4_c00134{transform:matrix(0.412925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412925,0.000000,0.000000,0.250000,0,0);}
.m8_c00134{transform:matrix(0.413695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413695,0.000000,0.000000,0.250000,0,0);}
.m7_c00134{transform:matrix(0.430685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430685,0.000000,0.000000,0.250000,0,0);}
.m6_c00134{transform:matrix(0.477010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477010,0.000000,0.000000,0.250000,0,0);}
.m1_c00134{transform:matrix(0.759635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.759635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.759635,0.000000,0.000000,0.250000,0,0);}
.md_c00134{transform:matrix(0.845140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.845140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.845140,0.000000,0.000000,0.250000,0,0);}
.m0_c00134{transform:matrix(1.351415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.351415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.351415,0.000000,0.000000,0.250000,0,0);}
.mb_c00134{transform:matrix(1.639485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.639485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.639485,0.000000,0.000000,0.250000,0,0);}
.v0_c00134{vertical-align:0.000000px;}
.ls0_c00134{letter-spacing:0.000000px;}
.sc__c00134{text-shadow:none;}
.sc0_c00134{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__c00134{-webkit-text-stroke:0px transparent;}
.sc0_c00134{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00134{word-spacing:0.000000px;}
.fc0_c00134{color:transparent;}
.fs0_c00134{font-size:18.000000px;}
.fs1_c00134{font-size:30.000000px;}
.y0_c00134{bottom:0.000000px;}
.y4_c00134{bottom:27.553500px;}
.y3_c00134{bottom:32.002500px;}
.y2_c00134{bottom:35.506500px;}
.y1_c00134{bottom:38.206500px;}
.h2_c00134{height:18.000000px;}
.h3_c00134{height:30.000000px;}
.h0_c00134{height:698.220000px;}
.h1_c00134{height:698.250000px;}
.w1_c00134{width:945.750000px;}
.w0_c00134{width:946.050000px;}
.x0_c00134{left:0.000000px;}
.x2_c00134{left:622.080000px;}
.xd_c00134{left:625.320000px;}
.x6_c00134{left:635.040000px;}
.xe_c00134{left:670.410000px;}
.x7_c00134{left:671.490000px;}
.x3_c00134{left:680.130000px;}
.x8_c00134{left:684.180000px;}
.x4_c00134{left:697.140000px;}
.xf_c00134{left:704.160000px;}
.x9_c00134{left:706.860000px;}
.xa_c00134{left:716.580000px;}
.x5_c00134{left:736.830000px;}
.xb_c00134{left:740.340000px;}
.x10_c00134{left:753.570000px;}
.x1_c00134{left:754.920000px;}
.xc_c00134{left:792.180000px;}
@media print{
.v0_c00134{vertical-align:0.000000pt;}
.ls0_c00134{letter-spacing:0.000000pt;}
.ws0_c00134{word-spacing:0.000000pt;}
.fs0_c00134{font-size:16.000000pt;}
.fs1_c00134{font-size:26.666667pt;}
.y0_c00134{bottom:0.000000pt;}
.y4_c00134{bottom:24.492000pt;}
.y3_c00134{bottom:28.446667pt;}
.y2_c00134{bottom:31.561333pt;}
.y1_c00134{bottom:33.961333pt;}
.h2_c00134{height:16.000000pt;}
.h3_c00134{height:26.666667pt;}
.h0_c00134{height:620.640000pt;}
.h1_c00134{height:620.666667pt;}
.w1_c00134{width:840.666667pt;}
.w0_c00134{width:840.933333pt;}
.x0_c00134{left:0.000000pt;}
.x2_c00134{left:552.960000pt;}
.xd_c00134{left:555.840000pt;}
.x6_c00134{left:564.480000pt;}
.xe_c00134{left:595.920000pt;}
.x7_c00134{left:596.880000pt;}
.x3_c00134{left:604.560000pt;}
.x8_c00134{left:608.160000pt;}
.x4_c00134{left:619.680000pt;}
.xf_c00134{left:625.920000pt;}
.x9_c00134{left:628.320000pt;}
.xa_c00134{left:636.960000pt;}
.x5_c00134{left:654.960000pt;}
.xb_c00134{left:658.080000pt;}
.x10_c00134{left:669.840000pt;}
.x1_c00134{left:671.040000pt;}
.xc_c00134{left:704.160000pt;}
}





/* 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_c00135 {
    display:none;
  }
  .loading-indicator_c00135.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00135 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_c00135 { 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_c00135" -> "#page-container .classname_c00135")
 */
.pf_c00135 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00135 { /* 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_c00135.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00135 { /* 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_c00135 { /* 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_c00135 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00135 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00135 {overflow:visible;}
  }
}
.c_c00135 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00135 { /* 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_c00135:after { /* webkit #35443 */
  content: '';
}
.t_c00135:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00135 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 */
}
.__c00135 { /* 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_c00135 { /* info for Javascript */
  display:none;
}
.l_c00135 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00135 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00135 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00135: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_c00135 {
    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_c00135.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00135.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_c00135 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00135{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00135;src:url('chunks/assets/font_cfe63ee56e9e10a97d33a3db.woff2')format("woff");}.ff1_c00135{font-family:ff1_c00135;line-height:1.000000;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;}
.m5_c00135{transform:matrix(0.036007,0.000972,-0.006748,0.249909,0,0);-ms-transform:matrix(0.036007,0.000972,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.036007,0.000972,-0.006748,0.249909,0,0);}
.m17_c00135{transform:matrix(0.079694,0.002231,-0.006997,0.249902,0,0);-ms-transform:matrix(0.079694,0.002231,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.079694,0.002231,-0.006997,0.249902,0,0);}
.m21_c00135{transform:matrix(0.106279,0.002126,-0.004999,0.249950,0,0);-ms-transform:matrix(0.106279,0.002126,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.106279,0.002126,-0.004999,0.249950,0,0);}
.m58_c00135{transform:matrix(0.130876,0.003403,-0.006498,0.249916,0,0);-ms-transform:matrix(0.130876,0.003403,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.130876,0.003403,-0.006498,0.249916,0,0);}
.m56_c00135{transform:matrix(0.132725,0.003451,-0.006498,0.249916,0,0);-ms-transform:matrix(0.132725,0.003451,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.132725,0.003451,-0.006498,0.249916,0,0);}
.m59_c00135{transform:matrix(0.140093,0.003642,-0.006498,0.249916,0,0);-ms-transform:matrix(0.140093,0.003642,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.140093,0.003642,-0.006498,0.249916,0,0);}
.m57_c00135{transform:matrix(0.142812,0.003713,-0.006498,0.249916,0,0);-ms-transform:matrix(0.142812,0.003713,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.142812,0.003713,-0.006498,0.249916,0,0);}
.m5a_c00135{transform:matrix(0.156737,0.004075,-0.006498,0.249916,0,0);-ms-transform:matrix(0.156737,0.004075,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.156737,0.004075,-0.006498,0.249916,0,0);}
.m55_c00135{transform:matrix(0.160546,0.004174,-0.006498,0.249916,0,0);-ms-transform:matrix(0.160546,0.004174,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.160546,0.004174,-0.006498,0.249916,0,0);}
.m78_c00135{transform:matrix(0.161016,0.004347,-0.006748,0.249909,0,0);-ms-transform:matrix(0.161016,0.004347,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.161016,0.004347,-0.006748,0.249909,0,0);}
.m74_c00135{transform:matrix(0.162032,0.004699,-0.007247,0.249895,0,0);-ms-transform:matrix(0.162032,0.004699,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.162032,0.004699,-0.007247,0.249895,0,0);}
.m25_c00135{transform:matrix(0.164457,0.003289,-0.004999,0.249950,0,0);-ms-transform:matrix(0.164457,0.003289,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.164457,0.003289,-0.004999,0.249950,0,0);}
.m72_c00135{transform:matrix(0.170368,0.004941,-0.007247,0.249895,0,0);-ms-transform:matrix(0.170368,0.004941,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.170368,0.004941,-0.007247,0.249895,0,0);}
.mf_c00135{transform:matrix(0.170508,0.004774,-0.006997,0.249902,0,0);-ms-transform:matrix(0.170508,0.004774,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.170508,0.004774,-0.006997,0.249902,0,0);}
.m63_c00135{transform:matrix(0.175381,0.005086,-0.007247,0.249895,0,0);-ms-transform:matrix(0.175381,0.005086,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.175381,0.005086,-0.007247,0.249895,0,0);}
.m23_c00135{transform:matrix(0.180044,0.003601,-0.004999,0.249950,0,0);-ms-transform:matrix(0.180044,0.003601,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.180044,0.003601,-0.004999,0.249950,0,0);}
.m15_c00135{transform:matrix(0.183098,0.005127,-0.006997,0.249902,0,0);-ms-transform:matrix(0.183098,0.005127,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.183098,0.005127,-0.006997,0.249902,0,0);}
.m7a_c00135{transform:matrix(0.183103,0.004944,-0.006748,0.249909,0,0);-ms-transform:matrix(0.183103,0.004944,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.183103,0.004944,-0.006748,0.249909,0,0);}
.m1f_c00135{transform:matrix(0.184538,0.003691,-0.004999,0.249950,0,0);-ms-transform:matrix(0.184538,0.003691,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.184538,0.003691,-0.004999,0.249950,0,0);}
.m7b_c00135{transform:matrix(0.185138,0.004999,-0.006748,0.249909,0,0);-ms-transform:matrix(0.185138,0.004999,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.185138,0.004999,-0.006748,0.249909,0,0);}
.m6c_c00135{transform:matrix(0.189520,0.005496,-0.007247,0.249895,0,0);-ms-transform:matrix(0.189520,0.005496,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.189520,0.005496,-0.007247,0.249895,0,0);}
.m69_c00135{transform:matrix(0.190735,0.005531,-0.007247,0.249895,0,0);-ms-transform:matrix(0.190735,0.005531,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.190735,0.005531,-0.007247,0.249895,0,0);}
.m11_c00135{transform:matrix(0.192165,0.005381,-0.006997,0.249902,0,0);-ms-transform:matrix(0.192165,0.005381,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.192165,0.005381,-0.006997,0.249902,0,0);}
.m62_c00135{transform:matrix(0.193629,0.005615,-0.007247,0.249895,0,0);-ms-transform:matrix(0.193629,0.005615,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.193629,0.005615,-0.007247,0.249895,0,0);}
.m79_c00135{transform:matrix(0.196518,0.005306,-0.006748,0.249909,0,0);-ms-transform:matrix(0.196518,0.005306,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.196518,0.005306,-0.006748,0.249909,0,0);}
.m54_c00135{transform:matrix(0.197163,0.005126,-0.006498,0.249916,0,0);-ms-transform:matrix(0.197163,0.005126,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.197163,0.005126,-0.006498,0.249916,0,0);}
.m10_c00135{transform:matrix(0.201166,0.005633,-0.006997,0.249902,0,0);-ms-transform:matrix(0.201166,0.005633,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.201166,0.005633,-0.006997,0.249902,0,0);}
.me_c00135{transform:matrix(0.201591,0.005645,-0.006997,0.249902,0,0);-ms-transform:matrix(0.201591,0.005645,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.201591,0.005645,-0.006997,0.249902,0,0);}
.m5d_c00135{transform:matrix(0.202845,0.005882,-0.007247,0.249895,0,0);-ms-transform:matrix(0.202845,0.005882,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.202845,0.005882,-0.007247,0.249895,0,0);}
.m76_c00135{transform:matrix(0.203290,0.005895,-0.007247,0.249895,0,0);-ms-transform:matrix(0.203290,0.005895,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.203290,0.005895,-0.007247,0.249895,0,0);}
.m32_c00135{transform:matrix(0.207759,0.005817,-0.006997,0.249902,0,0);-ms-transform:matrix(0.207759,0.005817,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.207759,0.005817,-0.006997,0.249902,0,0);}
.m19_c00135{transform:matrix(0.207884,0.005821,-0.006997,0.249902,0,0);-ms-transform:matrix(0.207884,0.005821,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.207884,0.005821,-0.006997,0.249902,0,0);}
.m71_c00135{transform:matrix(0.210322,0.006099,-0.007247,0.249895,0,0);-ms-transform:matrix(0.210322,0.006099,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.210322,0.006099,-0.007247,0.249895,0,0);}
.m4_c00135{transform:matrix(0.211504,0.005499,-0.006498,0.249916,0,0);-ms-transform:matrix(0.211504,0.005499,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.211504,0.005499,-0.006498,0.249916,0,0);}
.m7c_c00135{transform:matrix(0.215122,0.005808,-0.006748,0.249909,0,0);-ms-transform:matrix(0.215122,0.005808,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.215122,0.005808,-0.006748,0.249909,0,0);}
.m60_c00135{transform:matrix(0.215909,0.006261,-0.007247,0.249895,0,0);-ms-transform:matrix(0.215909,0.006261,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.215909,0.006261,-0.007247,0.249895,0,0);}
.m4b_c00135{transform:matrix(0.216400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216400,0.000000,0.000000,0.250000,0,0);}
.m22_c00135{transform:matrix(0.218796,0.004376,-0.004999,0.249950,0,0);-ms-transform:matrix(0.218796,0.004376,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.218796,0.004376,-0.004999,0.249950,0,0);}
.m6d_c00135{transform:matrix(0.218868,0.006347,-0.007247,0.249895,0,0);-ms-transform:matrix(0.218868,0.006347,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.218868,0.006347,-0.007247,0.249895,0,0);}
.m24_c00135{transform:matrix(0.219561,0.004391,-0.004999,0.249950,0,0);-ms-transform:matrix(0.219561,0.004391,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.219561,0.004391,-0.004999,0.249950,0,0);}
.m73_c00135{transform:matrix(0.220482,0.006394,-0.007247,0.249895,0,0);-ms-transform:matrix(0.220482,0.006394,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.220482,0.006394,-0.007247,0.249895,0,0);}
.m6a_c00135{transform:matrix(0.220997,0.006409,-0.007247,0.249895,0,0);-ms-transform:matrix(0.220997,0.006409,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.220997,0.006409,-0.007247,0.249895,0,0);}
.m70_c00135{transform:matrix(0.223001,0.006467,-0.007247,0.249895,0,0);-ms-transform:matrix(0.223001,0.006467,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.223001,0.006467,-0.007247,0.249895,0,0);}
.m61_c00135{transform:matrix(0.224776,0.006518,-0.007247,0.249895,0,0);-ms-transform:matrix(0.224776,0.006518,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.224776,0.006518,-0.007247,0.249895,0,0);}
.m5e_c00135{transform:matrix(0.227224,0.006590,-0.007247,0.249895,0,0);-ms-transform:matrix(0.227224,0.006590,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.227224,0.006590,-0.007247,0.249895,0,0);}
.m81_c00135{transform:matrix(0.231200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231200,0.000000,0.000000,0.250000,0,0);}
.m83_c00135{transform:matrix(0.231240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231240,0.000000,0.000000,0.250000,0,0);}
.m5c_c00135{transform:matrix(0.233227,0.006764,-0.007247,0.249895,0,0);-ms-transform:matrix(0.233227,0.006764,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.233227,0.006764,-0.007247,0.249895,0,0);}
.m1a_c00135{transform:matrix(0.233693,0.006543,-0.006997,0.249902,0,0);-ms-transform:matrix(0.233693,0.006543,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.233693,0.006543,-0.006997,0.249902,0,0);}
.m75_c00135{transform:matrix(0.242043,0.007019,-0.007247,0.249895,0,0);-ms-transform:matrix(0.242043,0.007019,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.242043,0.007019,-0.007247,0.249895,0,0);}
.m1e_c00135{transform:matrix(0.242147,0.004843,-0.004999,0.249950,0,0);-ms-transform:matrix(0.242147,0.004843,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.242147,0.004843,-0.004999,0.249950,0,0);}
.m12_c00135{transform:matrix(0.243455,0.006817,-0.006997,0.249902,0,0);-ms-transform:matrix(0.243455,0.006817,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.243455,0.006817,-0.006997,0.249902,0,0);}
.m2e_c00135{transform:matrix(0.244789,0.006854,-0.006997,0.249902,0,0);-ms-transform:matrix(0.244789,0.006854,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.244789,0.006854,-0.006997,0.249902,0,0);}
.m14_c00135{transform:matrix(0.245809,0.006883,-0.006997,0.249902,0,0);-ms-transform:matrix(0.245809,0.006883,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.245809,0.006883,-0.006997,0.249902,0,0);}
.m52_c00135{transform:matrix(0.246084,0.006890,-0.006997,0.249902,0,0);-ms-transform:matrix(0.246084,0.006890,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.246084,0.006890,-0.006997,0.249902,0,0);}
.m65_c00135{transform:matrix(0.247881,0.007189,-0.007247,0.249895,0,0);-ms-transform:matrix(0.247881,0.007189,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.247881,0.007189,-0.007247,0.249895,0,0);}
.m50_c00135{transform:matrix(0.248468,0.006957,-0.006997,0.249902,0,0);-ms-transform:matrix(0.248468,0.006957,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.248468,0.006957,-0.006997,0.249902,0,0);}
.m13_c00135{transform:matrix(0.250942,0.007026,-0.006997,0.249902,0,0);-ms-transform:matrix(0.250942,0.007026,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.250942,0.007026,-0.006997,0.249902,0,0);}
.m3_c00135{transform:matrix(0.251350,0.006535,-0.006498,0.249916,0,0);-ms-transform:matrix(0.251350,0.006535,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.251350,0.006535,-0.006498,0.249916,0,0);}
.m49_c00135{transform:matrix(0.256540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256540,0.000000,0.000000,0.250000,0,0);}
.m1c_c00135{transform:matrix(0.259978,0.007279,-0.006997,0.249902,0,0);-ms-transform:matrix(0.259978,0.007279,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.259978,0.007279,-0.006997,0.249902,0,0);}
.m7d_c00135{transform:matrix(0.261460,0.007059,-0.006748,0.249909,0,0);-ms-transform:matrix(0.261460,0.007059,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.261460,0.007059,-0.006748,0.249909,0,0);}
.m2_c00135{transform:matrix(0.262541,0.006826,-0.006498,0.249916,0,0);-ms-transform:matrix(0.262541,0.006826,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.262541,0.006826,-0.006498,0.249916,0,0);}
.m6b_c00135{transform:matrix(0.262670,0.007617,-0.007247,0.249895,0,0);-ms-transform:matrix(0.262670,0.007617,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.262670,0.007617,-0.007247,0.249895,0,0);}
.m16_c00135{transform:matrix(0.262747,0.007357,-0.006997,0.249902,0,0);-ms-transform:matrix(0.262747,0.007357,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.262747,0.007357,-0.006997,0.249902,0,0);}
.m6f_c00135{transform:matrix(0.263909,0.007653,-0.007247,0.249895,0,0);-ms-transform:matrix(0.263909,0.007653,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.263909,0.007653,-0.007247,0.249895,0,0);}
.m47_c00135{transform:matrix(0.264010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264010,0.000000,0.000000,0.250000,0,0);}
.m66_c00135{transform:matrix(0.265593,0.007702,-0.007247,0.249895,0,0);-ms-transform:matrix(0.265593,0.007702,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.265593,0.007702,-0.007247,0.249895,0,0);}
.m1b_c00135{transform:matrix(0.265961,0.007447,-0.006997,0.249902,0,0);-ms-transform:matrix(0.265961,0.007447,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.265961,0.007447,-0.006997,0.249902,0,0);}
.m6e_c00135{transform:matrix(0.266533,0.007729,-0.007247,0.249895,0,0);-ms-transform:matrix(0.266533,0.007729,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.266533,0.007729,-0.007247,0.249895,0,0);}
.m1d_c00135{transform:matrix(0.270489,0.007574,-0.006997,0.249902,0,0);-ms-transform:matrix(0.270489,0.007574,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.270489,0.007574,-0.006997,0.249902,0,0);}
.m18_c00135{transform:matrix(0.271139,0.007592,-0.006997,0.249902,0,0);-ms-transform:matrix(0.271139,0.007592,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.271139,0.007592,-0.006997,0.249902,0,0);}
.m20_c00135{transform:matrix(0.277255,0.005545,-0.004999,0.249950,0,0);-ms-transform:matrix(0.277255,0.005545,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.277255,0.005545,-0.004999,0.249950,0,0);}
.m1_c00135{transform:matrix(0.277526,0.007216,-0.006498,0.249916,0,0);-ms-transform:matrix(0.277526,0.007216,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.277526,0.007216,-0.006498,0.249916,0,0);}
.m28_c00135{transform:matrix(0.279016,0.007812,-0.006997,0.249902,0,0);-ms-transform:matrix(0.279016,0.007812,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.279016,0.007812,-0.006997,0.249902,0,0);}
.m29_c00135{transform:matrix(0.279925,0.007838,-0.006997,0.249902,0,0);-ms-transform:matrix(0.279925,0.007838,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.279925,0.007838,-0.006997,0.249902,0,0);}
.m2d_c00135{transform:matrix(0.280880,0.007865,-0.006997,0.249902,0,0);-ms-transform:matrix(0.280880,0.007865,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.280880,0.007865,-0.006997,0.249902,0,0);}
.m64_c00135{transform:matrix(0.282071,0.008180,-0.007247,0.249895,0,0);-ms-transform:matrix(0.282071,0.008180,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.282071,0.008180,-0.007247,0.249895,0,0);}
.m34_c00135{transform:matrix(0.282129,0.007900,-0.006997,0.249902,0,0);-ms-transform:matrix(0.282129,0.007900,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.282129,0.007900,-0.006997,0.249902,0,0);}
.m67_c00135{transform:matrix(0.285035,0.008266,-0.007247,0.249895,0,0);-ms-transform:matrix(0.285035,0.008266,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.285035,0.008266,-0.007247,0.249895,0,0);}
.m4f_c00135{transform:matrix(0.296624,0.008305,-0.006997,0.249902,0,0);-ms-transform:matrix(0.296624,0.008305,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.296624,0.008305,-0.006997,0.249902,0,0);}
.m33_c00135{transform:matrix(0.300397,0.008411,-0.006997,0.249902,0,0);-ms-transform:matrix(0.300397,0.008411,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.300397,0.008411,-0.006997,0.249902,0,0);}
.m2a_c00135{transform:matrix(0.301627,0.008446,-0.006997,0.249902,0,0);-ms-transform:matrix(0.301627,0.008446,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.301627,0.008446,-0.006997,0.249902,0,0);}
.m4d_c00135{transform:matrix(0.301709,0.009051,-0.007497,0.249888,0,0);-ms-transform:matrix(0.301709,0.009051,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.301709,0.009051,-0.007497,0.249888,0,0);}
.m2b_c00135{transform:matrix(0.304831,0.008535,-0.006997,0.249902,0,0);-ms-transform:matrix(0.304831,0.008535,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.304831,0.008535,-0.006997,0.249902,0,0);}
.m27_c00135{transform:matrix(0.311478,0.008721,-0.006997,0.249902,0,0);-ms-transform:matrix(0.311478,0.008721,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.311478,0.008721,-0.006997,0.249902,0,0);}
.m4a_c00135{transform:matrix(0.314870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314870,0.000000,0.000000,0.250000,0,0);}
.m68_c00135{transform:matrix(0.320540,0.009296,-0.007247,0.249895,0,0);-ms-transform:matrix(0.320540,0.009296,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.320540,0.009296,-0.007247,0.249895,0,0);}
.m4c_c00135{transform:matrix(0.325908,0.009777,-0.007497,0.249888,0,0);-ms-transform:matrix(0.325908,0.009777,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.325908,0.009777,-0.007497,0.249888,0,0);}
.ma_c00135{transform:matrix(0.329650,0.008901,-0.006748,0.249909,0,0);-ms-transform:matrix(0.329650,0.008901,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.329650,0.008901,-0.006748,0.249909,0,0);}
.m40_c00135{transform:matrix(0.334939,0.009713,-0.007247,0.249895,0,0);-ms-transform:matrix(0.334939,0.009713,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.334939,0.009713,-0.007247,0.249895,0,0);}
.m5f_c00135{transform:matrix(0.338848,0.009827,-0.007247,0.249895,0,0);-ms-transform:matrix(0.338848,0.009827,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.338848,0.009827,-0.007247,0.249895,0,0);}
.m2f_c00135{transform:matrix(0.342056,0.009578,-0.006997,0.249902,0,0);-ms-transform:matrix(0.342056,0.009578,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.342056,0.009578,-0.006997,0.249902,0,0);}
.m35_c00135{transform:matrix(0.343141,0.009608,-0.006997,0.249902,0,0);-ms-transform:matrix(0.343141,0.009608,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.343141,0.009608,-0.006997,0.249902,0,0);}
.m3e_c00135{transform:matrix(0.349708,0.010142,-0.007247,0.249895,0,0);-ms-transform:matrix(0.349708,0.010142,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.349708,0.010142,-0.007247,0.249895,0,0);}
.m82_c00135{transform:matrix(0.350660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350660,0.000000,0.000000,0.250000,0,0);}
.m4e_c00135{transform:matrix(0.354676,0.009931,-0.006997,0.249902,0,0);-ms-transform:matrix(0.354676,0.009931,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.354676,0.009931,-0.006997,0.249902,0,0);}
.m3b_c00135{transform:matrix(0.362957,0.010526,-0.007247,0.249895,0,0);-ms-transform:matrix(0.362957,0.010526,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.362957,0.010526,-0.007247,0.249895,0,0);}
.m2c_c00135{transform:matrix(0.364672,0.010211,-0.006997,0.249902,0,0);-ms-transform:matrix(0.364672,0.010211,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.364672,0.010211,-0.006997,0.249902,0,0);}
.m3a_c00135{transform:matrix(0.365256,0.010592,-0.007247,0.249895,0,0);-ms-transform:matrix(0.365256,0.010592,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.365256,0.010592,-0.007247,0.249895,0,0);}
.m43_c00135{transform:matrix(0.379970,0.011019,-0.007247,0.249895,0,0);-ms-transform:matrix(0.379970,0.011019,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.379970,0.011019,-0.007247,0.249895,0,0);}
.m3c_c00135{transform:matrix(0.380865,0.011045,-0.007247,0.249895,0,0);-ms-transform:matrix(0.380865,0.011045,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.380865,0.011045,-0.007247,0.249895,0,0);}
.mc_c00135{transform:matrix(0.397850,0.010742,-0.006748,0.249909,0,0);-ms-transform:matrix(0.397850,0.010742,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.397850,0.010742,-0.006748,0.249909,0,0);}
.m3f_c00135{transform:matrix(0.415855,0.012060,-0.007247,0.249895,0,0);-ms-transform:matrix(0.415855,0.012060,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.415855,0.012060,-0.007247,0.249895,0,0);}
.m7_c00135{transform:matrix(0.441289,0.011915,-0.006748,0.249909,0,0);-ms-transform:matrix(0.441289,0.011915,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.441289,0.011915,-0.006748,0.249909,0,0);}
.m46_c00135{transform:matrix(0.455878,0.013220,-0.007247,0.249895,0,0);-ms-transform:matrix(0.455878,0.013220,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.455878,0.013220,-0.007247,0.249895,0,0);}
.m39_c00135{transform:matrix(0.458717,0.013303,-0.007247,0.249895,0,0);-ms-transform:matrix(0.458717,0.013303,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.458717,0.013303,-0.007247,0.249895,0,0);}
.m80_c00135{transform:matrix(0.465817,0.013043,-0.006997,0.249902,0,0);-ms-transform:matrix(0.465817,0.013043,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.465817,0.013043,-0.006997,0.249902,0,0);}
.m38_c00135{transform:matrix(0.483947,0.014034,-0.007247,0.249895,0,0);-ms-transform:matrix(0.483947,0.014034,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.483947,0.014034,-0.007247,0.249895,0,0);}
.m7f_c00135{transform:matrix(0.487099,0.013639,-0.006997,0.249902,0,0);-ms-transform:matrix(0.487099,0.013639,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.487099,0.013639,-0.006997,0.249902,0,0);}
.m44_c00135{transform:matrix(0.493198,0.014303,-0.007247,0.249895,0,0);-ms-transform:matrix(0.493198,0.014303,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.493198,0.014303,-0.007247,0.249895,0,0);}
.mb_c00135{transform:matrix(0.502052,0.013555,-0.006748,0.249909,0,0);-ms-transform:matrix(0.502052,0.013555,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.502052,0.013555,-0.006748,0.249909,0,0);}
.m31_c00135{transform:matrix(0.519431,0.014544,-0.006997,0.249902,0,0);-ms-transform:matrix(0.519431,0.014544,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.519431,0.014544,-0.006997,0.249902,0,0);}
.m42_c00135{transform:matrix(0.521796,0.015132,-0.007247,0.249895,0,0);-ms-transform:matrix(0.521796,0.015132,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.521796,0.015132,-0.007247,0.249895,0,0);}
.m45_c00135{transform:matrix(0.525354,0.015235,-0.007247,0.249895,0,0);-ms-transform:matrix(0.525354,0.015235,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.525354,0.015235,-0.007247,0.249895,0,0);}
.m3d_c00135{transform:matrix(0.567936,0.016470,-0.007247,0.249895,0,0);-ms-transform:matrix(0.567936,0.016470,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.567936,0.016470,-0.007247,0.249895,0,0);}
.m48_c00135{transform:matrix(0.578030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578030,0.000000,0.000000,0.250000,0,0);}
.m26_c00135{transform:matrix(0.637185,0.017841,-0.006997,0.249902,0,0);-ms-transform:matrix(0.637185,0.017841,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.637185,0.017841,-0.006997,0.249902,0,0);}
.m6_c00135{transform:matrix(0.663423,0.017912,-0.006748,0.249909,0,0);-ms-transform:matrix(0.663423,0.017912,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.663423,0.017912,-0.006748,0.249909,0,0);}
.m30_c00135{transform:matrix(0.694488,0.019446,-0.006997,0.249902,0,0);-ms-transform:matrix(0.694488,0.019446,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.694488,0.019446,-0.006997,0.249902,0,0);}
.m77_c00135{transform:matrix(0.696432,0.020197,-0.007247,0.249895,0,0);-ms-transform:matrix(0.696432,0.020197,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.696432,0.020197,-0.007247,0.249895,0,0);}
.m5b_c00135{transform:matrix(0.708107,0.020535,-0.007247,0.249895,0,0);-ms-transform:matrix(0.708107,0.020535,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.708107,0.020535,-0.007247,0.249895,0,0);}
.m53_c00135{transform:matrix(0.720633,0.020178,-0.006997,0.249902,0,0);-ms-transform:matrix(0.720633,0.020178,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.720633,0.020178,-0.006997,0.249902,0,0);}
.m51_c00135{transform:matrix(0.801191,0.022433,-0.006997,0.249902,0,0);-ms-transform:matrix(0.801191,0.022433,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.801191,0.022433,-0.006997,0.249902,0,0);}
.m9_c00135{transform:matrix(0.935724,0.025265,-0.006748,0.249909,0,0);-ms-transform:matrix(0.935724,0.025265,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.935724,0.025265,-0.006748,0.249909,0,0);}
.m36_c00135{transform:matrix(1.099330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.099330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.099330,0.000000,0.000000,0.250000,0,0);}
.m8_c00135{transform:matrix(1.172623,0.031661,-0.006748,0.249909,0,0);-ms-transform:matrix(1.172623,0.031661,-0.006748,0.249909,0,0);-webkit-transform:matrix(1.172623,0.031661,-0.006748,0.249909,0,0);}
.m0_c00135{transform:matrix(1.563200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.563200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.563200,0.000000,0.000000,0.250000,0,0);}
.m41_c00135{transform:matrix(1.652455,0.047921,-0.007247,0.249895,0,0);-ms-transform:matrix(1.652455,0.047921,-0.007247,0.249895,0,0);-webkit-transform:matrix(1.652455,0.047921,-0.007247,0.249895,0,0);}
.m37_c00135{transform:matrix(1.916079,0.055566,-0.007247,0.249895,0,0);-ms-transform:matrix(1.916079,0.055566,-0.007247,0.249895,0,0);-webkit-transform:matrix(1.916079,0.055566,-0.007247,0.249895,0,0);}
.m7e_c00135{transform:matrix(2.068704,0.057924,-0.006997,0.249902,0,0);-ms-transform:matrix(2.068704,0.057924,-0.006997,0.249902,0,0);-webkit-transform:matrix(2.068704,0.057924,-0.006997,0.249902,0,0);}
.md_c00135{transform:matrix(7.717273,0.208366,-0.006748,0.249909,0,0);-ms-transform:matrix(7.717273,0.208366,-0.006748,0.249909,0,0);-webkit-transform:matrix(7.717273,0.208366,-0.006748,0.249909,0,0);}
.v0_c00135{vertical-align:0.000000px;}
.ls0_c00135{letter-spacing:0.000000px;}
.sc__c00135{text-shadow:none;}
.sc0_c00135{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__c00135{-webkit-text-stroke:0px transparent;}
.sc0_c00135{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00135{word-spacing:0.000000px;}
.fc0_c00135{color:transparent;}
.fs0_c00135{font-size:18.000000px;}
.fs6_c00135{font-size:18.007567px;}
.fs11_c00135{font-size:24.000000px;}
.fs1_c00135{font-size:42.014194px;}
.fs5_c00135{font-size:42.016461px;}
.fs2_c00135{font-size:48.017493px;}
.fs7_c00135{font-size:48.021595px;}
.fsd_c00135{font-size:54.022702px;}
.fs10_c00135{font-size:66.000000px;}
.fs4_c00135{font-size:72.014399px;}
.fs3_c00135{font-size:72.028218px;}
.fsb_c00135{font-size:90.037837px;}
.fsc_c00135{font-size:96.040360px;}
.fsa_c00135{font-size:102.042882px;}
.fs9_c00135{font-size:108.036498px;}
.fse_c00135{font-size:120.043732px;}
.fs8_c00135{font-size:120.047031px;}
.fsf_c00135{font-size:132.051734px;}
.y0_c00135{bottom:0.000000px;}
.y7f_c00135{bottom:2.826000px;}
.y7e_c00135{bottom:19.793910px;}
.y7d_c00135{bottom:23.719608px;}
.y7c_c00135{bottom:32.295000px;}
.y7b_c00135{bottom:76.579856px;}
.y7a_c00135{bottom:80.342468px;}
.y79_c00135{bottom:81.473592px;}
.y78_c00135{bottom:82.888338px;}
.y77_c00135{bottom:84.084465px;}
.y76_c00135{bottom:85.602000px;}
.y75_c00135{bottom:116.595801px;}
.y74_c00135{bottom:120.104193px;}
.y80_c00135{bottom:137.160000px;}
.y73_c00135{bottom:141.413443px;}
.y72_c00135{bottom:142.124094px;}
.y71_c00135{bottom:144.699231px;}
.y70_c00135{bottom:145.770981px;}
.y6f_c00135{bottom:147.412026px;}
.y6e_c00135{bottom:148.066191px;}
.y6d_c00135{bottom:150.065704px;}
.y6c_c00135{bottom:153.290178px;}
.y6b_c00135{bottom:154.164174px;}
.y6a_c00135{bottom:155.048871px;}
.y69_c00135{bottom:157.680342px;}
.y68_c00135{bottom:160.096657px;}
.y67_c00135{bottom:175.467130px;}
.y66_c00135{bottom:176.205352px;}
.y65_c00135{bottom:178.929379px;}
.y64_c00135{bottom:182.817031px;}
.y63_c00135{bottom:183.550164px;}
.y62_c00135{bottom:187.948024px;}
.y61_c00135{bottom:188.724528px;}
.y60_c00135{bottom:189.978636px;}
.y5f_c00135{bottom:192.504622px;}
.y5e_c00135{bottom:194.398269px;}
.y5d_c00135{bottom:208.782789px;}
.y5c_c00135{bottom:211.419367px;}
.y5b_c00135{bottom:212.120500px;}
.y5a_c00135{bottom:214.803015px;}
.y59_c00135{bottom:222.211500px;}
.y58_c00135{bottom:268.342179px;}
.y57_c00135{bottom:270.617517px;}
.y56_c00135{bottom:271.530351px;}
.y55_c00135{bottom:273.202008px;}
.y54_c00135{bottom:274.128687px;}
.y53_c00135{bottom:276.354300px;}
.y52_c00135{bottom:277.029000px;}
.y51_c00135{bottom:324.264396px;}
.y50_c00135{bottom:325.823478px;}
.y4f_c00135{bottom:331.376172px;}
.y4e_c00135{bottom:334.478166px;}
.y4d_c00135{bottom:336.905472px;}
.y4c_c00135{bottom:343.146000px;}
.y4b_c00135{bottom:375.272595px;}
.y4a_c00135{bottom:378.279000px;}
.y49_c00135{bottom:412.674000px;}
.y37_c00135{bottom:414.457500px;}
.y47_c00135{bottom:417.478419px;}
.y48_c00135{bottom:417.960000px;}
.y46_c00135{bottom:418.135878px;}
.y45_c00135{bottom:418.553434px;}
.y44_c00135{bottom:418.819524px;}
.y43_c00135{bottom:419.242170px;}
.y42_c00135{bottom:420.413886px;}
.y41_c00135{bottom:421.746682px;}
.y40_c00135{bottom:422.200648px;}
.y3f_c00135{bottom:422.524723px;}
.y3e_c00135{bottom:423.280971px;}
.y3d_c00135{bottom:423.565678px;}
.y3c_c00135{bottom:423.957004px;}
.y3b_c00135{bottom:424.481397px;}
.y3a_c00135{bottom:424.583143px;}
.y39_c00135{bottom:424.974469px;}
.y38_c00135{bottom:426.601500px;}
.y36_c00135{bottom:442.586820px;}
.y35_c00135{bottom:443.130510px;}
.y34_c00135{bottom:443.954424px;}
.y33_c00135{bottom:444.538014px;}
.y32_c00135{bottom:445.444416px;}
.y31_c00135{bottom:446.295252px;}
.y30_c00135{bottom:447.428580px;}
.y2f_c00135{bottom:447.910530px;}
.y2e_c00135{bottom:448.635996px;}
.y2d_c00135{bottom:449.868864px;}
.y2c_c00135{bottom:450.693198px;}
.y2b_c00135{bottom:451.663692px;}
.y2a_c00135{bottom:452.985558px;}
.y29_c00135{bottom:453.824382px;}
.y28_c00135{bottom:455.050320px;}
.y27_c00135{bottom:456.123000px;}
.y26_c00135{bottom:456.309720px;}
.y25_c00135{bottom:457.646250px;}
.y24_c00135{bottom:458.395860px;}
.y23_c00135{bottom:460.085760px;}
.y22_c00135{bottom:467.016420px;}
.y21_c00135{bottom:468.411510px;}
.y20_c00135{bottom:469.777980px;}
.y1f_c00135{bottom:471.154500px;}
.y1e_c00135{bottom:475.340172px;}
.y1d_c00135{bottom:478.220028px;}
.y1c_c00135{bottom:480.609744px;}
.y1b_c00135{bottom:482.757624px;}
.y1a_c00135{bottom:483.604428px;}
.y19_c00135{bottom:485.732190px;}
.y18_c00135{bottom:491.895900px;}
.y17_c00135{bottom:492.331566px;}
.y16_c00135{bottom:493.652760px;}
.y15_c00135{bottom:495.376818px;}
.y14_c00135{bottom:497.625288px;}
.y13_c00135{bottom:499.855236px;}
.y12_c00135{bottom:503.346780px;}
.y11_c00135{bottom:504.288084px;}
.y10_c00135{bottom:505.010820px;}
.yf_c00135{bottom:507.196500px;}
.ye_c00135{bottom:556.049794px;}
.yd_c00135{bottom:557.019000px;}
.yc_c00135{bottom:649.292037px;}
.yb_c00135{bottom:658.400844px;}
.ya_c00135{bottom:659.860666px;}
.y9_c00135{bottom:663.235693px;}
.y8_c00135{bottom:664.227579px;}
.y7_c00135{bottom:665.664559px;}
.y6_c00135{bottom:665.980500px;}
.y5_c00135{bottom:667.733616px;}
.y4_c00135{bottom:668.211366px;}
.y3_c00135{bottom:668.885442px;}
.y2_c00135{bottom:671.764500px;}
.y1_c00135{bottom:695.512500px;}
.h2_c00135{height:18.000000px;}
.h8_c00135{height:18.007567px;}
.h13_c00135{height:24.000000px;}
.h3_c00135{height:42.014194px;}
.h7_c00135{height:42.016461px;}
.h4_c00135{height:48.017493px;}
.h9_c00135{height:48.021595px;}
.hf_c00135{height:54.022702px;}
.h12_c00135{height:66.000000px;}
.h6_c00135{height:72.014399px;}
.h5_c00135{height:72.028218px;}
.hd_c00135{height:90.037837px;}
.he_c00135{height:96.040360px;}
.hc_c00135{height:102.042882px;}
.hb_c00135{height:108.036498px;}
.h10_c00135{height:120.043732px;}
.ha_c00135{height:120.047031px;}
.h11_c00135{height:132.051734px;}
.h0_c00135{height:698.220000px;}
.h1_c00135{height:698.250000px;}
.w1_c00135{width:945.750000px;}
.w0_c00135{width:946.050000px;}
.x0_c00135{left:0.000000px;}
.x6_c00135{left:69.868500px;}
.x7_c00135{left:81.570000px;}
.x8_c00135{left:134.791500px;}
.xc_c00135{left:135.835294px;}
.xd_c00135{left:165.970500px;}
.x9_c00135{left:171.528000px;}
.x62_c00135{left:190.861305px;}
.x58_c00135{left:193.163651px;}
.xe_c00135{left:201.867000px;}
.x4a_c00135{left:204.667500px;}
.x23_c00135{left:209.392680px;}
.x19_c00135{left:210.425916px;}
.x59_c00135{left:263.276196px;}
.x6d_c00135{left:275.580000px;}
.x24_c00135{left:277.005930px;}
.x1a_c00135{left:286.417416px;}
.xa_c00135{left:296.529000px;}
.x25_c00135{left:306.983430px;}
.x6b_c00135{left:311.800965px;}
.x1b_c00135{left:316.660416px;}
.xb_c00135{left:350.596500px;}
.x5a_c00135{left:356.850134px;}
.x26_c00135{left:360.454590px;}
.x27_c00135{left:367.801500px;}
.x63_c00135{left:371.135025px;}
.x4e_c00135{left:384.925500px;}
.x1c_c00135{left:393.370416px;}
.xf_c00135{left:395.589000px;}
.x5b_c00135{left:403.304831px;}
.x28_c00135{left:406.111500px;}
.x4f_c00135{left:410.875500px;}
.x6c_c00135{left:416.232000px;}
.x1_c00135{left:419.580000px;}
.x4b_c00135{left:427.543500px;}
.x53_c00135{left:428.728500px;}
.x5c_c00135{left:432.047984px;}
.x64_c00135{left:433.953852px;}
.x29_c00135{left:449.895000px;}
.x38_c00135{left:451.329000px;}
.x39_c00135{left:464.823000px;}
.x3a_c00135{left:468.331500px;}
.x10_c00135{left:473.649000px;}
.x1d_c00135{left:478.717416px;}
.x2a_c00135{left:479.853000px;}
.x3b_c00135{left:486.414000px;}
.x2_c00135{left:488.781000px;}
.x50_c00135{left:496.476000px;}
.x11_c00135{left:499.461000px;}
.x3c_c00135{left:509.725500px;}
.x4c_c00135{left:514.233000px;}
.x2b_c00135{left:527.062500px;}
.x12_c00135{left:533.079000px;}
.x3d_c00135{left:535.803000px;}
.x6a_c00135{left:540.046416px;}
.x3e_c00135{left:546.978000px;}
.x65_c00135{left:549.128702px;}
.x2c_c00135{left:561.723000px;}
.x1e_c00135{left:581.569416px;}
.x49_c00135{left:586.470000px;}
.x2d_c00135{left:591.163500px;}
.x5d_c00135{left:594.931923px;}
.x51_c00135{left:596.412000px;}
.x3_c00135{left:599.514000px;}
.x3f_c00135{left:608.590500px;}
.x66_c00135{left:620.562290px;}
.x5e_c00135{left:622.075989px;}
.x4_c00135{left:625.440000px;}
.x52_c00135{left:631.521000px;}
.x2e_c00135{left:635.194500px;}
.x5_c00135{left:643.815000px;}
.x40_c00135{left:648.994500px;}
.x13_c00135{left:657.777000px;}
.x2f_c00135{left:661.104000px;}
.x41_c00135{left:663.568500px;}
.x42_c00135{left:672.744000px;}
.x30_c00135{left:678.316500px;}
.x54_c00135{left:684.193500px;}
.x43_c00135{left:687.142500px;}
.x67_c00135{left:702.554682px;}
.x44_c00135{left:709.813500px;}
.x1f_c00135{left:717.180000px;}
.x31_c00135{left:718.792500px;}
.x6e_c00135{left:722.047500px;}
.x14_c00135{left:737.418000px;}
.x68_c00135{left:740.805770px;}
.x32_c00135{left:749.179500px;}
.x5f_c00135{left:766.072341px;}
.x55_c00135{left:776.694000px;}
.x33_c00135{left:781.551000px;}
.x20_c00135{left:786.006000px;}
.x6f_c00135{left:797.310000px;}
.x56_c00135{left:800.871000px;}
.x34_c00135{left:802.393500px;}
.x37_c00135{left:807.300000px;}
.x15_c00135{left:817.720500px;}
.x4d_c00135{left:823.329000px;}
.x35_c00135{left:831.819000px;}
.x46_c00135{left:848.880000px;}
.x36_c00135{left:851.236500px;}
.x21_c00135{left:854.329500px;}
.x69_c00135{left:858.146663px;}
.x60_c00135{left:866.941170px;}
.x16_c00135{left:879.294000px;}
.x57_c00135{left:891.787500px;}
.x61_c00135{left:894.260736px;}
.x47_c00135{left:903.690000px;}
.x48_c00135{left:910.980000px;}
.x22_c00135{left:924.084000px;}
.x17_c00135{left:926.479500px;}
.x45_c00135{left:933.390000px;}
.x18_c00135{left:942.039000px;}
@media print{
.v0_c00135{vertical-align:0.000000pt;}
.ls0_c00135{letter-spacing:0.000000pt;}
.ws0_c00135{word-spacing:0.000000pt;}
.fs0_c00135{font-size:16.000000pt;}
.fs6_c00135{font-size:16.006727pt;}
.fs11_c00135{font-size:21.333333pt;}
.fs1_c00135{font-size:37.345950pt;}
.fs5_c00135{font-size:37.347965pt;}
.fs2_c00135{font-size:42.682216pt;}
.fs7_c00135{font-size:42.685862pt;}
.fsd_c00135{font-size:48.020180pt;}
.fs10_c00135{font-size:58.666667pt;}
.fs4_c00135{font-size:64.012799pt;}
.fs3_c00135{font-size:64.025083pt;}
.fsb_c00135{font-size:80.033633pt;}
.fsc_c00135{font-size:85.369208pt;}
.fsa_c00135{font-size:90.704784pt;}
.fs9_c00135{font-size:96.032443pt;}
.fse_c00135{font-size:106.705540pt;}
.fs8_c00135{font-size:106.708472pt;}
.fsf_c00135{font-size:117.379319pt;}
.y0_c00135{bottom:0.000000pt;}
.y7f_c00135{bottom:2.512000pt;}
.y7e_c00135{bottom:17.594587pt;}
.y7d_c00135{bottom:21.084096pt;}
.y7c_c00135{bottom:28.706667pt;}
.y7b_c00135{bottom:68.070983pt;}
.y7a_c00135{bottom:71.415527pt;}
.y79_c00135{bottom:72.420971pt;}
.y78_c00135{bottom:73.678523pt;}
.y77_c00135{bottom:74.741747pt;}
.y76_c00135{bottom:76.090667pt;}
.y75_c00135{bottom:103.640712pt;}
.y74_c00135{bottom:106.759283pt;}
.y80_c00135{bottom:121.920000pt;}
.y73_c00135{bottom:125.700839pt;}
.y72_c00135{bottom:126.332528pt;}
.y71_c00135{bottom:128.621539pt;}
.y70_c00135{bottom:129.574205pt;}
.y6f_c00135{bottom:131.032912pt;}
.y6e_c00135{bottom:131.614392pt;}
.y6d_c00135{bottom:133.391737pt;}
.y6c_c00135{bottom:136.257936pt;}
.y6b_c00135{bottom:137.034821pt;}
.y6a_c00135{bottom:137.821219pt;}
.y69_c00135{bottom:140.160304pt;}
.y68_c00135{bottom:142.308140pt;}
.y67_c00135{bottom:155.970783pt;}
.y66_c00135{bottom:156.626980pt;}
.y65_c00135{bottom:159.048337pt;}
.y64_c00135{bottom:162.504028pt;}
.y63_c00135{bottom:163.155701pt;}
.y62_c00135{bottom:167.064911pt;}
.y61_c00135{bottom:167.755136pt;}
.y60_c00135{bottom:168.869899pt;}
.y5f_c00135{bottom:171.115220pt;}
.y5e_c00135{bottom:172.798461pt;}
.y5d_c00135{bottom:185.584701pt;}
.y5c_c00135{bottom:187.928327pt;}
.y5b_c00135{bottom:188.551556pt;}
.y5a_c00135{bottom:190.936013pt;}
.y59_c00135{bottom:197.521333pt;}
.y58_c00135{bottom:238.526381pt;}
.y57_c00135{bottom:240.548904pt;}
.y56_c00135{bottom:241.360312pt;}
.y55_c00135{bottom:242.846229pt;}
.y54_c00135{bottom:243.669944pt;}
.y53_c00135{bottom:245.648267pt;}
.y52_c00135{bottom:246.248000pt;}
.y51_c00135{bottom:288.235019pt;}
.y50_c00135{bottom:289.620869pt;}
.y4f_c00135{bottom:294.556597pt;}
.y4e_c00135{bottom:297.313925pt;}
.y4d_c00135{bottom:299.471531pt;}
.y4c_c00135{bottom:305.018667pt;}
.y4b_c00135{bottom:333.575640pt;}
.y4a_c00135{bottom:336.248000pt;}
.y49_c00135{bottom:366.821333pt;}
.y37_c00135{bottom:368.406667pt;}
.y47_c00135{bottom:371.091928pt;}
.y48_c00135{bottom:371.520000pt;}
.y46_c00135{bottom:371.676336pt;}
.y45_c00135{bottom:372.047497pt;}
.y44_c00135{bottom:372.284021pt;}
.y43_c00135{bottom:372.659707pt;}
.y42_c00135{bottom:373.701232pt;}
.y41_c00135{bottom:374.885940pt;}
.y40_c00135{bottom:375.289465pt;}
.y3f_c00135{bottom:375.577532pt;}
.y3e_c00135{bottom:376.249752pt;}
.y3d_c00135{bottom:376.502825pt;}
.y3c_c00135{bottom:376.850671pt;}
.y3b_c00135{bottom:377.316797pt;}
.y3a_c00135{bottom:377.407239pt;}
.y39_c00135{bottom:377.755084pt;}
.y38_c00135{bottom:379.201333pt;}
.y36_c00135{bottom:393.410507pt;}
.y35_c00135{bottom:393.893787pt;}
.y34_c00135{bottom:394.626155pt;}
.y33_c00135{bottom:395.144901pt;}
.y32_c00135{bottom:395.950592pt;}
.y31_c00135{bottom:396.706891pt;}
.y30_c00135{bottom:397.714293pt;}
.y2f_c00135{bottom:398.142693pt;}
.y2e_c00135{bottom:398.787552pt;}
.y2d_c00135{bottom:399.883435pt;}
.y2c_c00135{bottom:400.616176pt;}
.y2b_c00135{bottom:401.478837pt;}
.y2a_c00135{bottom:402.653829pt;}
.y29_c00135{bottom:403.399451pt;}
.y28_c00135{bottom:404.489173pt;}
.y27_c00135{bottom:405.442667pt;}
.y26_c00135{bottom:405.608640pt;}
.y25_c00135{bottom:406.796667pt;}
.y24_c00135{bottom:407.462987pt;}
.y23_c00135{bottom:408.965120pt;}
.y22_c00135{bottom:415.125707pt;}
.y21_c00135{bottom:416.365787pt;}
.y20_c00135{bottom:417.580427pt;}
.y1f_c00135{bottom:418.804000pt;}
.y1e_c00135{bottom:422.524597pt;}
.y1d_c00135{bottom:425.084469pt;}
.y1c_c00135{bottom:427.208661pt;}
.y1b_c00135{bottom:429.117888pt;}
.y1a_c00135{bottom:429.870603pt;}
.y19_c00135{bottom:431.761947pt;}
.y18_c00135{bottom:437.240800pt;}
.y17_c00135{bottom:437.628059pt;}
.y16_c00135{bottom:438.802453pt;}
.y15_c00135{bottom:440.334949pt;}
.y14_c00135{bottom:442.333589pt;}
.y13_c00135{bottom:444.315765pt;}
.y12_c00135{bottom:447.419360pt;}
.y11_c00135{bottom:448.256075pt;}
.y10_c00135{bottom:448.898507pt;}
.yf_c00135{bottom:450.841333pt;}
.ye_c00135{bottom:494.266484pt;}
.yd_c00135{bottom:495.128000pt;}
.yc_c00135{bottom:577.148477pt;}
.yb_c00135{bottom:585.245195pt;}
.ya_c00135{bottom:586.542815pt;}
.y9_c00135{bottom:589.542839pt;}
.y8_c00135{bottom:590.424515pt;}
.y7_c00135{bottom:591.701831pt;}
.y6_c00135{bottom:591.982667pt;}
.y5_c00135{bottom:593.540992pt;}
.y4_c00135{bottom:593.965659pt;}
.y3_c00135{bottom:594.564837pt;}
.y2_c00135{bottom:597.124000pt;}
.y1_c00135{bottom:618.233333pt;}
.h2_c00135{height:16.000000pt;}
.h8_c00135{height:16.006727pt;}
.h13_c00135{height:21.333333pt;}
.h3_c00135{height:37.345950pt;}
.h7_c00135{height:37.347965pt;}
.h4_c00135{height:42.682216pt;}
.h9_c00135{height:42.685862pt;}
.hf_c00135{height:48.020180pt;}
.h12_c00135{height:58.666667pt;}
.h6_c00135{height:64.012799pt;}
.h5_c00135{height:64.025083pt;}
.hd_c00135{height:80.033633pt;}
.he_c00135{height:85.369208pt;}
.hc_c00135{height:90.704784pt;}
.hb_c00135{height:96.032443pt;}
.h10_c00135{height:106.705540pt;}
.ha_c00135{height:106.708472pt;}
.h11_c00135{height:117.379319pt;}
.h0_c00135{height:620.640000pt;}
.h1_c00135{height:620.666667pt;}
.w1_c00135{width:840.666667pt;}
.w0_c00135{width:840.933333pt;}
.x0_c00135{left:0.000000pt;}
.x6_c00135{left:62.105333pt;}
.x7_c00135{left:72.506667pt;}
.x8_c00135{left:119.814667pt;}
.xc_c00135{left:120.742484pt;}
.xd_c00135{left:147.529333pt;}
.x9_c00135{left:152.469333pt;}
.x62_c00135{left:169.654493pt;}
.x58_c00135{left:171.701023pt;}
.xe_c00135{left:179.437333pt;}
.x4a_c00135{left:181.926667pt;}
.x23_c00135{left:186.126827pt;}
.x19_c00135{left:187.045259pt;}
.x59_c00135{left:234.023285pt;}
.x6d_c00135{left:244.960000pt;}
.x24_c00135{left:246.227493pt;}
.x1a_c00135{left:254.593259pt;}
.xa_c00135{left:263.581333pt;}
.x25_c00135{left:272.874160pt;}
.x6b_c00135{left:277.156413pt;}
.x1b_c00135{left:281.475925pt;}
.xb_c00135{left:311.641333pt;}
.x5a_c00135{left:317.200119pt;}
.x26_c00135{left:320.404080pt;}
.x27_c00135{left:326.934667pt;}
.x63_c00135{left:329.897800pt;}
.x4e_c00135{left:342.156000pt;}
.x1c_c00135{left:349.662592pt;}
.xf_c00135{left:351.634667pt;}
.x5b_c00135{left:358.493183pt;}
.x28_c00135{left:360.988000pt;}
.x4f_c00135{left:365.222667pt;}
.x6c_c00135{left:369.984000pt;}
.x1_c00135{left:372.960000pt;}
.x4b_c00135{left:380.038667pt;}
.x53_c00135{left:381.092000pt;}
.x5c_c00135{left:384.042652pt;}
.x64_c00135{left:385.736757pt;}
.x29_c00135{left:399.906667pt;}
.x38_c00135{left:401.181333pt;}
.x39_c00135{left:413.176000pt;}
.x3a_c00135{left:416.294667pt;}
.x10_c00135{left:421.021333pt;}
.x1d_c00135{left:425.526592pt;}
.x2a_c00135{left:426.536000pt;}
.x3b_c00135{left:432.368000pt;}
.x2_c00135{left:434.472000pt;}
.x50_c00135{left:441.312000pt;}
.x11_c00135{left:443.965333pt;}
.x3c_c00135{left:453.089333pt;}
.x4c_c00135{left:457.096000pt;}
.x2b_c00135{left:468.500000pt;}
.x12_c00135{left:473.848000pt;}
.x3d_c00135{left:476.269333pt;}
.x6a_c00135{left:480.041259pt;}
.x3e_c00135{left:486.202667pt;}
.x65_c00135{left:488.114401pt;}
.x2c_c00135{left:499.309333pt;}
.x1e_c00135{left:516.950592pt;}
.x49_c00135{left:521.306667pt;}
.x2d_c00135{left:525.478667pt;}
.x5d_c00135{left:528.828376pt;}
.x51_c00135{left:530.144000pt;}
.x3_c00135{left:532.901333pt;}
.x3f_c00135{left:540.969333pt;}
.x66_c00135{left:551.610924pt;}
.x5e_c00135{left:552.956435pt;}
.x4_c00135{left:555.946667pt;}
.x52_c00135{left:561.352000pt;}
.x2e_c00135{left:564.617333pt;}
.x5_c00135{left:572.280000pt;}
.x40_c00135{left:576.884000pt;}
.x13_c00135{left:584.690667pt;}
.x2f_c00135{left:587.648000pt;}
.x41_c00135{left:589.838667pt;}
.x42_c00135{left:597.994667pt;}
.x30_c00135{left:602.948000pt;}
.x54_c00135{left:608.172000pt;}
.x43_c00135{left:610.793333pt;}
.x67_c00135{left:624.493051pt;}
.x44_c00135{left:630.945333pt;}
.x1f_c00135{left:637.493333pt;}
.x31_c00135{left:638.926667pt;}
.x6e_c00135{left:641.820000pt;}
.x14_c00135{left:655.482667pt;}
.x68_c00135{left:658.494017pt;}
.x32_c00135{left:665.937333pt;}
.x5f_c00135{left:680.953192pt;}
.x55_c00135{left:690.394667pt;}
.x33_c00135{left:694.712000pt;}
.x20_c00135{left:698.672000pt;}
.x6f_c00135{left:708.720000pt;}
.x56_c00135{left:711.885333pt;}
.x34_c00135{left:713.238667pt;}
.x37_c00135{left:717.600000pt;}
.x15_c00135{left:726.862667pt;}
.x4d_c00135{left:731.848000pt;}
.x35_c00135{left:739.394667pt;}
.x46_c00135{left:754.560000pt;}
.x36_c00135{left:756.654667pt;}
.x21_c00135{left:759.404000pt;}
.x69_c00135{left:762.797033pt;}
.x60_c00135{left:770.614373pt;}
.x16_c00135{left:781.594667pt;}
.x57_c00135{left:792.700000pt;}
.x61_c00135{left:794.898432pt;}
.x47_c00135{left:803.280000pt;}
.x48_c00135{left:809.760000pt;}
.x22_c00135{left:821.408000pt;}
.x17_c00135{left:823.537333pt;}
.x45_c00135{left:829.680000pt;}
.x18_c00135{left:837.368000pt;}
}





/* 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_c00136 {
    display:none;
  }
  .loading-indicator_c00136.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00136 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_c00136 { 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_c00136" -> "#page-container .classname_c00136")
 */
.pf_c00136 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00136 { /* 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_c00136.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00136 { /* 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_c00136 { /* 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_c00136 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00136 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00136 {overflow:visible;}
  }
}
.c_c00136 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00136 { /* 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_c00136:after { /* webkit #35443 */
  content: '';
}
.t_c00136:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00136 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 */
}
.__c00136 { /* 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_c00136 { /* info for Javascript */
  display:none;
}
.l_c00136 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00136 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00136 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00136: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_c00136 {
    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_c00136.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00136.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_c00136 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00136{font-family:sans-serif;visibility:hidden;}
.sc__c00136{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00136{-webkit-text-stroke:0px transparent;}
}
.y0_c00136{bottom:0.000000px;}
.h0_c00136{height:698.220000px;}
.h1_c00136{height:698.250000px;}
.w1_c00136{width:945.750000px;}
.w0_c00136{width:946.050000px;}
.x0_c00136{left:0.000000px;}
@media print{
.y0_c00136{bottom:0.000000pt;}
.h0_c00136{height:620.640000pt;}
.h1_c00136{height:620.666667pt;}
.w1_c00136{width:840.666667pt;}
.w0_c00136{width:840.933333pt;}
.x0_c00136{left:0.000000pt;}
}





/* 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_c00137 {
    display:none;
  }
  .loading-indicator_c00137.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00137 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_c00137 { 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_c00137" -> "#page-container .classname_c00137")
 */
.pf_c00137 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00137 { /* 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_c00137.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00137 { /* 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_c00137 { /* 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_c00137 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00137 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00137 {overflow:visible;}
  }
}
.c_c00137 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00137 { /* 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_c00137:after { /* webkit #35443 */
  content: '';
}
.t_c00137:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00137 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 */
}
.__c00137 { /* 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_c00137 { /* info for Javascript */
  display:none;
}
.l_c00137 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00137 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00137 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00137: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_c00137 {
    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_c00137.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00137.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_c00137 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00137{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00137;src:url('chunks/assets/font_cfe63ee56e9e10a97d33a3db.woff2')format("woff");}.ff1_c00137{font-family:ff1_c00137;line-height:1.000000;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;}
.m5_c00137{transform:matrix(0.055155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.055155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.055155,0.000000,0.000000,0.250000,0,0);}
.m3_c00137{transform:matrix(0.175531,0.003686,-0.005249,0.249945,0,0);-ms-transform:matrix(0.175531,0.003686,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.175531,0.003686,-0.005249,0.249945,0,0);}
.m9_c00137{transform:matrix(0.186465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186465,0.000000,0.000000,0.250000,0,0);}
.ma_c00137{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m2_c00137{transform:matrix(0.253054,0.005314,-0.005249,0.249945,0,0);-ms-transform:matrix(0.253054,0.005314,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.253054,0.005314,-0.005249,0.249945,0,0);}
.m7_c00137{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m1_c00137{transform:matrix(0.264412,0.005553,-0.005249,0.249945,0,0);-ms-transform:matrix(0.264412,0.005553,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.264412,0.005553,-0.005249,0.249945,0,0);}
.m6_c00137{transform:matrix(0.270660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270660,0.000000,0.000000,0.250000,0,0);}
.m0_c00137{transform:matrix(0.312181,0.006556,-0.005249,0.249945,0,0);-ms-transform:matrix(0.312181,0.006556,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.312181,0.006556,-0.005249,0.249945,0,0);}
.m8_c00137{transform:matrix(0.330345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330345,0.000000,0.000000,0.250000,0,0);}
.m4_c00137{transform:matrix(1.139310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.139310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.139310,0.000000,0.000000,0.250000,0,0);}
.v0_c00137{vertical-align:0.000000px;}
.ls0_c00137{letter-spacing:0.000000px;}
.sc__c00137{text-shadow:none;}
.sc0_c00137{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__c00137{-webkit-text-stroke:0px transparent;}
.sc0_c00137{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00137{word-spacing:0.000000px;}
.fc0_c00137{color:transparent;}
.fs1_c00137{font-size:24.000000px;}
.fs4_c00137{font-size:36.000000px;}
.fs0_c00137{font-size:42.009260px;}
.fs3_c00137{font-size:48.000000px;}
.fs2_c00137{font-size:60.000000px;}
.y0_c00137{bottom:0.000000px;}
.y5_c00137{bottom:300.510000px;}
.y9_c00137{bottom:473.310000px;}
.y8_c00137{bottom:498.960000px;}
.y7_c00137{bottom:542.970000px;}
.y6_c00137{bottom:549.180000px;}
.y4_c00137{bottom:672.821931px;}
.y3_c00137{bottom:673.207649px;}
.y2_c00137{bottom:673.757859px;}
.y1_c00137{bottom:676.083000px;}
.h3_c00137{height:24.000000px;}
.h6_c00137{height:36.000000px;}
.h2_c00137{height:42.009260px;}
.h5_c00137{height:48.000000px;}
.h4_c00137{height:60.000000px;}
.h0_c00137{height:698.220000px;}
.h1_c00137{height:698.250000px;}
.w1_c00137{width:945.750000px;}
.w0_c00137{width:946.050000px;}
.x0_c00137{left:0.000000px;}
.x1_c00137{left:502.047000px;}
.x2_c00137{left:612.768000px;}
.x3_c00137{left:638.968500px;}
.x4_c00137{left:657.336000px;}
.x6_c00137{left:934.470000px;}
.x8_c00137{left:939.600000px;}
.x7_c00137{left:942.300000px;}
.x5_c00137{left:944.190000px;}
@media print{
.v0_c00137{vertical-align:0.000000pt;}
.ls0_c00137{letter-spacing:0.000000pt;}
.ws0_c00137{word-spacing:0.000000pt;}
.fs1_c00137{font-size:21.333333pt;}
.fs4_c00137{font-size:32.000000pt;}
.fs0_c00137{font-size:37.341564pt;}
.fs3_c00137{font-size:42.666667pt;}
.fs2_c00137{font-size:53.333333pt;}
.y0_c00137{bottom:0.000000pt;}
.y5_c00137{bottom:267.120000pt;}
.y9_c00137{bottom:420.720000pt;}
.y8_c00137{bottom:443.520000pt;}
.y7_c00137{bottom:482.640000pt;}
.y6_c00137{bottom:488.160000pt;}
.y4_c00137{bottom:598.063939pt;}
.y3_c00137{bottom:598.406799pt;}
.y2_c00137{bottom:598.895875pt;}
.y1_c00137{bottom:600.962667pt;}
.h3_c00137{height:21.333333pt;}
.h6_c00137{height:32.000000pt;}
.h2_c00137{height:37.341564pt;}
.h5_c00137{height:42.666667pt;}
.h4_c00137{height:53.333333pt;}
.h0_c00137{height:620.640000pt;}
.h1_c00137{height:620.666667pt;}
.w1_c00137{width:840.666667pt;}
.w0_c00137{width:840.933333pt;}
.x0_c00137{left:0.000000pt;}
.x1_c00137{left:446.264000pt;}
.x2_c00137{left:544.682667pt;}
.x3_c00137{left:567.972000pt;}
.x4_c00137{left:584.298667pt;}
.x6_c00137{left:830.640000pt;}
.x8_c00137{left:835.200000pt;}
.x7_c00137{left:837.600000pt;}
.x5_c00137{left:839.280000pt;}
}





/* 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_c00138 {
    display:none;
  }
  .loading-indicator_c00138.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00138 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_c00138 { 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_c00138" -> "#page-container .classname_c00138")
 */
.pf_c00138 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00138 { /* 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_c00138.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00138 { /* 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_c00138 { /* 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_c00138 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00138 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00138 {overflow:visible;}
  }
}
.c_c00138 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00138 { /* 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_c00138:after { /* webkit #35443 */
  content: '';
}
.t_c00138:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00138 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 */
}
.__c00138 { /* 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_c00138 { /* info for Javascript */
  display:none;
}
.l_c00138 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00138 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00138 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00138: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_c00138 {
    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_c00138.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00138.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_c00138 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00138{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00138;src:url('chunks/assets/font_fd0c0ba61e4839a78750c76b.woff2')format("woff");}.ff1_c00138{font-family:ff1_c00138;line-height:1.000000;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;}
.m1d_c00138{transform:matrix(0.136165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136165,0.000000,0.000000,0.250000,0,0);}
.mb_c00138{transform:matrix(0.172753,0.002073,-0.003000,0.249982,0,0);-ms-transform:matrix(0.172753,0.002073,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.172753,0.002073,-0.003000,0.249982,0,0);}
.mf_c00138{transform:matrix(0.225739,0.002709,-0.003000,0.249982,0,0);-ms-transform:matrix(0.225739,0.002709,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.225739,0.002709,-0.003000,0.249982,0,0);}
.m18_c00138{transform:matrix(0.237497,0.004275,-0.004499,0.249960,0,0);-ms-transform:matrix(0.237497,0.004275,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.237497,0.004275,-0.004499,0.249960,0,0);}
.m20_c00138{transform:matrix(0.243605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243605,0.000000,0.000000,0.250000,0,0);}
.m1a_c00138{transform:matrix(0.244670,0.004404,-0.004499,0.249960,0,0);-ms-transform:matrix(0.244670,0.004404,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.244670,0.004404,-0.004499,0.249960,0,0);}
.m0_c00138{transform:matrix(0.246706,0.003454,-0.003500,0.249976,0,0);-ms-transform:matrix(0.246706,0.003454,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.246706,0.003454,-0.003500,0.249976,0,0);}
.m1b_c00138{transform:matrix(0.263977,0.004752,-0.004499,0.249960,0,0);-ms-transform:matrix(0.263977,0.004752,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.263977,0.004752,-0.004499,0.249960,0,0);}
.m17_c00138{transform:matrix(0.296872,0.005344,-0.004499,0.249960,0,0);-ms-transform:matrix(0.296872,0.005344,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.296872,0.005344,-0.004499,0.249960,0,0);}
.mc_c00138{transform:matrix(0.326037,0.003912,-0.003000,0.249982,0,0);-ms-transform:matrix(0.326037,0.003912,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.326037,0.003912,-0.003000,0.249982,0,0);}
.m9_c00138{transform:matrix(0.344844,0.002759,-0.002000,0.249992,0,0);-ms-transform:matrix(0.344844,0.002759,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.344844,0.002759,-0.002000,0.249992,0,0);}
.m7_c00138{transform:matrix(0.367788,0.002942,-0.002000,0.249992,0,0);-ms-transform:matrix(0.367788,0.002942,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.367788,0.002942,-0.002000,0.249992,0,0);}
.m19_c00138{transform:matrix(0.368830,0.006639,-0.004499,0.249960,0,0);-ms-transform:matrix(0.368830,0.006639,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.368830,0.006639,-0.004499,0.249960,0,0);}
.m6_c00138{transform:matrix(0.395502,0.003164,-0.002000,0.249992,0,0);-ms-transform:matrix(0.395502,0.003164,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.395502,0.003164,-0.002000,0.249992,0,0);}
.m5_c00138{transform:matrix(0.402552,0.003220,-0.002000,0.249992,0,0);-ms-transform:matrix(0.402552,0.003220,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.402552,0.003220,-0.002000,0.249992,0,0);}
.m1c_c00138{transform:matrix(0.419345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419345,0.000000,0.000000,0.250000,0,0);}
.m21_c00138{transform:matrix(0.443415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443415,0.000000,0.000000,0.250000,0,0);}
.me_c00138{transform:matrix(0.450633,0.005408,-0.003000,0.249982,0,0);-ms-transform:matrix(0.450633,0.005408,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.450633,0.005408,-0.003000,0.249982,0,0);}
.m4_c00138{transform:matrix(0.459215,0.003674,-0.002000,0.249992,0,0);-ms-transform:matrix(0.459215,0.003674,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.459215,0.003674,-0.002000,0.249992,0,0);}
.m8_c00138{transform:matrix(0.496219,0.003970,-0.002000,0.249992,0,0);-ms-transform:matrix(0.496219,0.003970,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.496219,0.003970,-0.002000,0.249992,0,0);}
.md_c00138{transform:matrix(0.519443,0.006233,-0.003000,0.249982,0,0);-ms-transform:matrix(0.519443,0.006233,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.519443,0.006233,-0.003000,0.249982,0,0);}
.m12_c00138{transform:matrix(0.550685,0.006608,-0.003000,0.249982,0,0);-ms-transform:matrix(0.550685,0.006608,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.550685,0.006608,-0.003000,0.249982,0,0);}
.m1e_c00138{transform:matrix(0.561175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.561175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.561175,0.000000,0.000000,0.250000,0,0);}
.m15_c00138{transform:matrix(0.576254,0.006915,-0.003000,0.249982,0,0);-ms-transform:matrix(0.576254,0.006915,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.576254,0.006915,-0.003000,0.249982,0,0);}
.m11_c00138{transform:matrix(0.592337,0.007108,-0.003000,0.249982,0,0);-ms-transform:matrix(0.592337,0.007108,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.592337,0.007108,-0.003000,0.249982,0,0);}
.m14_c00138{transform:matrix(0.635154,0.007622,-0.003000,0.249982,0,0);-ms-transform:matrix(0.635154,0.007622,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.635154,0.007622,-0.003000,0.249982,0,0);}
.m1f_c00138{transform:matrix(0.773355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.773355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.773355,0.000000,0.000000,0.250000,0,0);}
.m16_c00138{transform:matrix(0.869239,0.015646,-0.004499,0.249960,0,0);-ms-transform:matrix(0.869239,0.015646,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.869239,0.015646,-0.004499,0.249960,0,0);}
.m13_c00138{transform:matrix(0.903585,0.010843,-0.003000,0.249982,0,0);-ms-transform:matrix(0.903585,0.010843,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.903585,0.010843,-0.003000,0.249982,0,0);}
.m3_c00138{transform:matrix(0.914896,0.007319,-0.002000,0.249992,0,0);-ms-transform:matrix(0.914896,0.007319,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.914896,0.007319,-0.002000,0.249992,0,0);}
.ma_c00138{transform:matrix(0.957439,0.007660,-0.002000,0.249992,0,0);-ms-transform:matrix(0.957439,0.007660,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.957439,0.007660,-0.002000,0.249992,0,0);}
.m10_c00138{transform:matrix(1.163521,0.013962,-0.003000,0.249982,0,0);-ms-transform:matrix(1.163521,0.013962,-0.003000,0.249982,0,0);-webkit-transform:matrix(1.163521,0.013962,-0.003000,0.249982,0,0);}
.m1_c00138{transform:matrix(1.294593,0.018124,-0.003500,0.249976,0,0);-ms-transform:matrix(1.294593,0.018124,-0.003500,0.249976,0,0);-webkit-transform:matrix(1.294593,0.018124,-0.003500,0.249976,0,0);}
.m2_c00138{transform:matrix(1.351038,0.018915,-0.003500,0.249976,0,0);-ms-transform:matrix(1.351038,0.018915,-0.003500,0.249976,0,0);-webkit-transform:matrix(1.351038,0.018915,-0.003500,0.249976,0,0);}
.v0_c00138{vertical-align:0.000000px;}
.ls0_c00138{letter-spacing:0.000000px;}
.sc__c00138{text-shadow:none;}
.sc0_c00138{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__c00138{-webkit-text-stroke:0px transparent;}
.sc0_c00138{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00138{word-spacing:0.000000px;}
.fc0_c00138{color:transparent;}
.fs0_c00138{font-size:24.002352px;}
.fs4_c00138{font-size:48.000000px;}
.fs5_c00138{font-size:66.000000px;}
.fs1_c00138{font-size:78.002496px;}
.fs2_c00138{font-size:84.006048px;}
.fs3_c00138{font-size:168.027214px;}
.y0_c00138{bottom:0.000000px;}
.y1f_c00138{bottom:11.335500px;}
.y1c_c00138{bottom:50.000055px;}
.y1b_c00138{bottom:51.177984px;}
.y1a_c00138{bottom:52.522935px;}
.y1e_c00138{bottom:56.700000px;}
.y19_c00138{bottom:57.157620px;}
.y18_c00138{bottom:58.936083px;}
.y17_c00138{bottom:61.584000px;}
.y20_c00138{bottom:62.370000px;}
.y1d_c00138{bottom:72.757500px;}
.y16_c00138{bottom:324.343686px;}
.y15_c00138{bottom:325.082352px;}
.y14_c00138{bottom:327.146088px;}
.y13_c00138{bottom:328.457334px;}
.y12_c00138{bottom:329.161062px;}
.y11_c00138{bottom:331.212036px;}
.y10_c00138{bottom:331.816008px;}
.yf_c00138{bottom:332.178348px;}
.ye_c00138{bottom:333.166782px;}
.yd_c00138{bottom:333.678666px;}
.yc_c00138{bottom:334.533000px;}
.yb_c00138{bottom:503.079060px;}
.ya_c00138{bottom:503.479428px;}
.y9_c00138{bottom:504.753012px;}
.y8_c00138{bottom:505.311324px;}
.y7_c00138{bottom:506.148300px;}
.y6_c00138{bottom:506.648436px;}
.y5_c00138{bottom:508.331988px;}
.y4_c00138{bottom:509.221500px;}
.y3_c00138{bottom:587.549883px;}
.y2_c00138{bottom:591.549648px;}
.y1_c00138{bottom:596.161500px;}
.h2_c00138{height:24.002352px;}
.h6_c00138{height:48.000000px;}
.h7_c00138{height:66.000000px;}
.h3_c00138{height:78.002496px;}
.h4_c00138{height:84.006048px;}
.h5_c00138{height:168.027214px;}
.h0_c00138{height:698.220000px;}
.h1_c00138{height:698.250000px;}
.w1_c00138{width:945.750000px;}
.w0_c00138{width:946.050000px;}
.x0_c00138{left:0.000000px;}
.xb_c00138{left:2.476500px;}
.x16_c00138{left:38.688000px;}
.xc_c00138{left:73.671000px;}
.x4_c00138{left:111.037500px;}
.xd_c00138{left:116.328000px;}
.x17_c00138{left:185.794500px;}
.xe_c00138{left:198.697500px;}
.xf_c00138{left:228.892500px;}
.x10_c00138{left:279.223500px;}
.x18_c00138{left:284.598000px;}
.x1_c00138{left:316.380000px;}
.x5_c00138{left:321.481500px;}
.x6_c00138{left:383.998500px;}
.x1c_c00138{left:389.340000px;}
.x1e_c00138{left:399.870000px;}
.x1d_c00138{left:406.620000px;}
.x11_c00138{left:450.138000px;}
.x7_c00138{left:488.620500px;}
.x12_c00138{left:508.782000px;}
.x19_c00138{left:542.080500px;}
.x8_c00138{left:558.409500px;}
.x1a_c00138{left:616.800000px;}
.x13_c00138{left:618.052500px;}
.x2_c00138{left:645.798000px;}
.x1b_c00138{left:682.240500px;}
.x9_c00138{left:717.607500px;}
.xa_c00138{left:767.653500px;}
.x14_c00138{left:790.030500px;}
.x15_c00138{left:851.586000px;}
.x1f_c00138{left:924.750000px;}
.x20_c00138{left:926.640000px;}
.x3_c00138{left:931.495500px;}
@media print{
.v0_c00138{vertical-align:0.000000pt;}
.ls0_c00138{letter-spacing:0.000000pt;}
.ws0_c00138{word-spacing:0.000000pt;}
.fs0_c00138{font-size:21.335424pt;}
.fs4_c00138{font-size:42.666667pt;}
.fs5_c00138{font-size:58.666667pt;}
.fs1_c00138{font-size:69.335552pt;}
.fs2_c00138{font-size:74.672042pt;}
.fs3_c00138{font-size:149.357523pt;}
.y0_c00138{bottom:0.000000pt;}
.y1f_c00138{bottom:10.076000pt;}
.y1c_c00138{bottom:44.444493pt;}
.y1b_c00138{bottom:45.491541pt;}
.y1a_c00138{bottom:46.687053pt;}
.y1e_c00138{bottom:50.400000pt;}
.y19_c00138{bottom:50.806773pt;}
.y18_c00138{bottom:52.387629pt;}
.y17_c00138{bottom:54.741333pt;}
.y20_c00138{bottom:55.440000pt;}
.y1d_c00138{bottom:64.673333pt;}
.y16_c00138{bottom:288.305499pt;}
.y15_c00138{bottom:288.962091pt;}
.y14_c00138{bottom:290.796523pt;}
.y13_c00138{bottom:291.962075pt;}
.y12_c00138{bottom:292.587611pt;}
.y11_c00138{bottom:294.410699pt;}
.y10_c00138{bottom:294.947563pt;}
.yf_c00138{bottom:295.269643pt;}
.ye_c00138{bottom:296.148251pt;}
.yd_c00138{bottom:296.603259pt;}
.yc_c00138{bottom:297.362667pt;}
.yb_c00138{bottom:447.181387pt;}
.ya_c00138{bottom:447.537269pt;}
.y9_c00138{bottom:448.669344pt;}
.y8_c00138{bottom:449.165621pt;}
.y7_c00138{bottom:449.909600pt;}
.y6_c00138{bottom:450.354165pt;}
.y5_c00138{bottom:451.850656pt;}
.y4_c00138{bottom:452.641333pt;}
.y3_c00138{bottom:522.266563pt;}
.y2_c00138{bottom:525.821909pt;}
.y1_c00138{bottom:529.921333pt;}
.h2_c00138{height:21.335424pt;}
.h6_c00138{height:42.666667pt;}
.h7_c00138{height:58.666667pt;}
.h3_c00138{height:69.335552pt;}
.h4_c00138{height:74.672042pt;}
.h5_c00138{height:149.357523pt;}
.h0_c00138{height:620.640000pt;}
.h1_c00138{height:620.666667pt;}
.w1_c00138{width:840.666667pt;}
.w0_c00138{width:840.933333pt;}
.x0_c00138{left:0.000000pt;}
.xb_c00138{left:2.201333pt;}
.x16_c00138{left:34.389333pt;}
.xc_c00138{left:65.485333pt;}
.x4_c00138{left:98.700000pt;}
.xd_c00138{left:103.402667pt;}
.x17_c00138{left:165.150667pt;}
.xe_c00138{left:176.620000pt;}
.xf_c00138{left:203.460000pt;}
.x10_c00138{left:248.198667pt;}
.x18_c00138{left:252.976000pt;}
.x1_c00138{left:281.226667pt;}
.x5_c00138{left:285.761333pt;}
.x6_c00138{left:341.332000pt;}
.x1c_c00138{left:346.080000pt;}
.x1e_c00138{left:355.440000pt;}
.x1d_c00138{left:361.440000pt;}
.x11_c00138{left:400.122667pt;}
.x7_c00138{left:434.329333pt;}
.x12_c00138{left:452.250667pt;}
.x19_c00138{left:481.849333pt;}
.x8_c00138{left:496.364000pt;}
.x1a_c00138{left:548.266667pt;}
.x13_c00138{left:549.380000pt;}
.x2_c00138{left:574.042667pt;}
.x1b_c00138{left:606.436000pt;}
.x9_c00138{left:637.873333pt;}
.xa_c00138{left:682.358667pt;}
.x14_c00138{left:702.249333pt;}
.x15_c00138{left:756.965333pt;}
.x1f_c00138{left:822.000000pt;}
.x20_c00138{left:823.680000pt;}
.x3_c00138{left:827.996000pt;}
}





/* 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_c00139 {
    display:none;
  }
  .loading-indicator_c00139.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00139 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_c00139 { 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_c00139" -> "#page-container .classname_c00139")
 */
.pf_c00139 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00139 { /* 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_c00139.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00139 { /* 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_c00139 { /* 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_c00139 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00139 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00139 {overflow:visible;}
  }
}
.c_c00139 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00139 { /* 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_c00139:after { /* webkit #35443 */
  content: '';
}
.t_c00139:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00139 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 */
}
.__c00139 { /* 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_c00139 { /* info for Javascript */
  display:none;
}
.l_c00139 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00139 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00139 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00139: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_c00139 {
    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_c00139.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00139.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_c00139 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00139{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00139;src:url('chunks/assets/font_a72a081e1d55f37b0ea09712.woff2')format("woff");}.ff1_c00139{font-family:ff1_c00139;line-height:1.000000;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;}
.m3_c00139{transform:matrix(0.171025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171025,0.000000,0.000000,0.250000,0,0);}
.m1_c00139{transform:matrix(0.195575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195575,0.000000,0.000000,0.250000,0,0);}
.m2_c00139{transform:matrix(0.527270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527270,0.000000,0.000000,0.250000,0,0);}
.m0_c00139{transform:matrix(1.394000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.394000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.394000,0.000000,0.000000,0.250000,0,0);}
.v0_c00139{vertical-align:0.000000px;}
.ls0_c00139{letter-spacing:0.000000px;}
.sc__c00139{text-shadow:none;}
.sc0_c00139{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__c00139{-webkit-text-stroke:0px transparent;}
.sc0_c00139{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00139{word-spacing:0.000000px;}
.fc0_c00139{color:transparent;}
.fs1_c00139{font-size:18.000000px;}
.fs0_c00139{font-size:24.000000px;}
.y0_c00139{bottom:0.000000px;}
.y1_c00139{bottom:238.680000px;}
.y2_c00139{bottom:246.510000px;}
.h3_c00139{height:18.000000px;}
.h2_c00139{height:24.000000px;}
.h0_c00139{height:698.220000px;}
.h1_c00139{height:698.250000px;}
.w1_c00139{width:945.750000px;}
.w0_c00139{width:946.050000px;}
.x0_c00139{left:0.000000px;}
.x2_c00139{left:929.340000px;}
.x1_c00139{left:931.770000px;}
.x3_c00139{left:942.300000px;}
@media print{
.v0_c00139{vertical-align:0.000000pt;}
.ls0_c00139{letter-spacing:0.000000pt;}
.ws0_c00139{word-spacing:0.000000pt;}
.fs1_c00139{font-size:16.000000pt;}
.fs0_c00139{font-size:21.333333pt;}
.y0_c00139{bottom:0.000000pt;}
.y1_c00139{bottom:212.160000pt;}
.y2_c00139{bottom:219.120000pt;}
.h3_c00139{height:16.000000pt;}
.h2_c00139{height:21.333333pt;}
.h0_c00139{height:620.640000pt;}
.h1_c00139{height:620.666667pt;}
.w1_c00139{width:840.666667pt;}
.w0_c00139{width:840.933333pt;}
.x0_c00139{left:0.000000pt;}
.x2_c00139{left:826.080000pt;}
.x1_c00139{left:828.240000pt;}
.x3_c00139{left:837.600000pt;}
}





/* 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_c00140 {
    display:none;
  }
  .loading-indicator_c00140.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00140 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_c00140 { 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_c00140" -> "#page-container .classname_c00140")
 */
.pf_c00140 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00140 { /* 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_c00140.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00140 { /* 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_c00140 { /* 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_c00140 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00140 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00140 {overflow:visible;}
  }
}
.c_c00140 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00140 { /* 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_c00140:after { /* webkit #35443 */
  content: '';
}
.t_c00140:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00140 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 */
}
.__c00140 { /* 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_c00140 { /* info for Javascript */
  display:none;
}
.l_c00140 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00140 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00140 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00140: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_c00140 {
    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_c00140.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00140.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_c00140 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00140{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00140;src:url('chunks/assets/font_7c6b9abe6ee2a268480c528b.woff2')format("woff");}.ff1_c00140{font-family:ff1_c00140;line-height:1.000000;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;}
.m18_c00140{transform:matrix(0.009088,-0.000173,0.004749,0.249955,0,0);-ms-transform:matrix(0.009088,-0.000173,0.004749,0.249955,0,0);-webkit-transform:matrix(0.009088,-0.000173,0.004749,0.249955,0,0);}
.m46_c00140{transform:matrix(0.025455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.025455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.025455,0.000000,0.000000,0.250000,0,0);}
.m11_c00140{transform:matrix(0.026240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.026240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.026240,0.000000,0.000000,0.250000,0,0);}
.m34_c00140{transform:matrix(0.026994,-0.000189,0.001750,0.249994,0,0);-ms-transform:matrix(0.026994,-0.000189,0.001750,0.249994,0,0);-webkit-transform:matrix(0.026994,-0.000189,0.001750,0.249994,0,0);}
.m3e_c00140{transform:matrix(0.028815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.028815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.028815,0.000000,0.000000,0.250000,0,0);}
.m45_c00140{transform:matrix(0.038185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.038185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.038185,0.000000,0.000000,0.250000,0,0);}
.m27_c00140{transform:matrix(0.094503,-0.000662,0.001750,0.249994,0,0);-ms-transform:matrix(0.094503,-0.000662,0.001750,0.249994,0,0);-webkit-transform:matrix(0.094503,-0.000662,0.001750,0.249994,0,0);}
.m50_c00140{transform:matrix(0.112480,-0.002137,0.004749,0.249955,0,0);-ms-transform:matrix(0.112480,-0.002137,0.004749,0.249955,0,0);-webkit-transform:matrix(0.112480,-0.002137,0.004749,0.249955,0,0);}
.m41_c00140{transform:matrix(0.112860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112860,0.000000,0.000000,0.250000,0,0);}
.m3f_c00140{transform:matrix(0.135375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135375,0.000000,0.000000,0.250000,0,0);}
.m4f_c00140{transform:matrix(0.148490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148490,0.000000,0.000000,0.250000,0,0);}
.mf_c00140{transform:matrix(0.157435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157435,0.000000,0.000000,0.250000,0,0);}
.m40_c00140{transform:matrix(0.165540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165540,0.000000,0.000000,0.250000,0,0);}
.m51_c00140{transform:matrix(0.171694,-0.003262,0.004749,0.249955,0,0);-ms-transform:matrix(0.171694,-0.003262,0.004749,0.249955,0,0);-webkit-transform:matrix(0.171694,-0.003262,0.004749,0.249955,0,0);}
.m47_c00140{transform:matrix(0.189855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189855,0.000000,0.000000,0.250000,0,0);}
.m20_c00140{transform:matrix(0.198785,-0.001391,0.001750,0.249994,0,0);-ms-transform:matrix(0.198785,-0.001391,0.001750,0.249994,0,0);-webkit-transform:matrix(0.198785,-0.001391,0.001750,0.249994,0,0);}
.m7_c00140{transform:matrix(0.212460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212460,0.000000,0.000000,0.250000,0,0);}
.m2c_c00140{transform:matrix(0.221990,-0.001554,0.001750,0.249994,0,0);-ms-transform:matrix(0.221990,-0.001554,0.001750,0.249994,0,0);-webkit-transform:matrix(0.221990,-0.001554,0.001750,0.249994,0,0);}
.m3a_c00140{transform:matrix(0.224660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224660,0.000000,0.000000,0.250000,0,0);}
.m19_c00140{transform:matrix(0.225654,-0.004287,0.004749,0.249955,0,0);-ms-transform:matrix(0.225654,-0.004287,0.004749,0.249955,0,0);-webkit-transform:matrix(0.225654,-0.004287,0.004749,0.249955,0,0);}
.m4d_c00140{transform:matrix(0.235143,-0.004468,0.004749,0.249955,0,0);-ms-transform:matrix(0.235143,-0.004468,0.004749,0.249955,0,0);-webkit-transform:matrix(0.235143,-0.004468,0.004749,0.249955,0,0);}
.m44_c00140{transform:matrix(0.237170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237170,0.000000,0.000000,0.250000,0,0);}
.m57_c00140{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m58_c00140{transform:matrix(0.242945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242945,0.000000,0.000000,0.250000,0,0);}
.m48_c00140{transform:matrix(0.250020,-0.004750,0.004749,0.249955,0,0);-ms-transform:matrix(0.250020,-0.004750,0.004749,0.249955,0,0);-webkit-transform:matrix(0.250020,-0.004750,0.004749,0.249955,0,0);}
.m36_c00140{transform:matrix(0.255664,-0.004858,0.004749,0.249955,0,0);-ms-transform:matrix(0.255664,-0.004858,0.004749,0.249955,0,0);-webkit-transform:matrix(0.255664,-0.004858,0.004749,0.249955,0,0);}
.m2e_c00140{transform:matrix(0.260329,-0.001822,0.001750,0.249994,0,0);-ms-transform:matrix(0.260329,-0.001822,0.001750,0.249994,0,0);-webkit-transform:matrix(0.260329,-0.001822,0.001750,0.249994,0,0);}
.m2b_c00140{transform:matrix(0.262394,-0.001837,0.001750,0.249994,0,0);-ms-transform:matrix(0.262394,-0.001837,0.001750,0.249994,0,0);-webkit-transform:matrix(0.262394,-0.001837,0.001750,0.249994,0,0);}
.m39_c00140{transform:matrix(0.263355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263355,0.000000,0.000000,0.250000,0,0);}
.m12_c00140{transform:matrix(0.265882,-0.005052,0.004749,0.249955,0,0);-ms-transform:matrix(0.265882,-0.005052,0.004749,0.249955,0,0);-webkit-transform:matrix(0.265882,-0.005052,0.004749,0.249955,0,0);}
.m26_c00140{transform:matrix(0.270118,-0.001891,0.001750,0.249994,0,0);-ms-transform:matrix(0.270118,-0.001891,0.001750,0.249994,0,0);-webkit-transform:matrix(0.270118,-0.001891,0.001750,0.249994,0,0);}
.m29_c00140{transform:matrix(0.272628,-0.001908,0.001750,0.249994,0,0);-ms-transform:matrix(0.272628,-0.001908,0.001750,0.249994,0,0);-webkit-transform:matrix(0.272628,-0.001908,0.001750,0.249994,0,0);}
.m30_c00140{transform:matrix(0.273233,-0.001913,0.001750,0.249994,0,0);-ms-transform:matrix(0.273233,-0.001913,0.001750,0.249994,0,0);-webkit-transform:matrix(0.273233,-0.001913,0.001750,0.249994,0,0);}
.m35_c00140{transform:matrix(0.275755,-0.005239,0.004749,0.249955,0,0);-ms-transform:matrix(0.275755,-0.005239,0.004749,0.249955,0,0);-webkit-transform:matrix(0.275755,-0.005239,0.004749,0.249955,0,0);}
.m2a_c00140{transform:matrix(0.276048,-0.001932,0.001750,0.249994,0,0);-ms-transform:matrix(0.276048,-0.001932,0.001750,0.249994,0,0);-webkit-transform:matrix(0.276048,-0.001932,0.001750,0.249994,0,0);}
.m23_c00140{transform:matrix(0.286248,-0.002004,0.001750,0.249994,0,0);-ms-transform:matrix(0.286248,-0.002004,0.001750,0.249994,0,0);-webkit-transform:matrix(0.286248,-0.002004,0.001750,0.249994,0,0);}
.m3b_c00140{transform:matrix(0.289875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289875,0.000000,0.000000,0.250000,0,0);}
.me_c00140{transform:matrix(0.291980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291980,0.000000,0.000000,0.250000,0,0);}
.m2_c00140{transform:matrix(0.292920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292920,0.000000,0.000000,0.250000,0,0);}
.m3_c00140{transform:matrix(0.296275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296275,0.000000,0.000000,0.250000,0,0);}
.m59_c00140{transform:matrix(0.300210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300210,0.000000,0.000000,0.250000,0,0);}
.m32_c00140{transform:matrix(0.306642,-0.002146,0.001750,0.249994,0,0);-ms-transform:matrix(0.306642,-0.002146,0.001750,0.249994,0,0);-webkit-transform:matrix(0.306642,-0.002146,0.001750,0.249994,0,0);}
.m9_c00140{transform:matrix(0.310795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310795,0.000000,0.000000,0.250000,0,0);}
.m0_c00140{transform:matrix(0.312280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312280,0.000000,0.000000,0.250000,0,0);}
.m6_c00140{transform:matrix(0.329180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329180,0.000000,0.000000,0.250000,0,0);}
.m4_c00140{transform:matrix(0.334090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334090,0.000000,0.000000,0.250000,0,0);}
.m2f_c00140{transform:matrix(0.336212,-0.002353,0.001750,0.249994,0,0);-ms-transform:matrix(0.336212,-0.002353,0.001750,0.249994,0,0);-webkit-transform:matrix(0.336212,-0.002353,0.001750,0.249994,0,0);}
.m37_c00140{transform:matrix(0.347122,-0.006595,0.004749,0.249955,0,0);-ms-transform:matrix(0.347122,-0.006595,0.004749,0.249955,0,0);-webkit-transform:matrix(0.347122,-0.006595,0.004749,0.249955,0,0);}
.m8_c00140{transform:matrix(0.354475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354475,0.000000,0.000000,0.250000,0,0);}
.m31_c00140{transform:matrix(0.355681,-0.002490,0.001750,0.249994,0,0);-ms-transform:matrix(0.355681,-0.002490,0.001750,0.249994,0,0);-webkit-transform:matrix(0.355681,-0.002490,0.001750,0.249994,0,0);}
.m52_c00140{transform:matrix(0.361185,-0.006863,0.004749,0.249955,0,0);-ms-transform:matrix(0.361185,-0.006863,0.004749,0.249955,0,0);-webkit-transform:matrix(0.361185,-0.006863,0.004749,0.249955,0,0);}
.m56_c00140{transform:matrix(0.366000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366000,0.000000,0.000000,0.250000,0,0);}
.m53_c00140{transform:matrix(0.367752,-0.006252,0.004249,0.249964,0,0);-ms-transform:matrix(0.367752,-0.006252,0.004249,0.249964,0,0);-webkit-transform:matrix(0.367752,-0.006252,0.004249,0.249964,0,0);}
.m16_c00140{transform:matrix(0.368249,-0.006997,0.004749,0.249955,0,0);-ms-transform:matrix(0.368249,-0.006997,0.004749,0.249955,0,0);-webkit-transform:matrix(0.368249,-0.006997,0.004749,0.249955,0,0);}
.m5_c00140{transform:matrix(0.368345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368345,0.000000,0.000000,0.250000,0,0);}
.m22_c00140{transform:matrix(0.369621,-0.002587,0.001750,0.249994,0,0);-ms-transform:matrix(0.369621,-0.002587,0.001750,0.249994,0,0);-webkit-transform:matrix(0.369621,-0.002587,0.001750,0.249994,0,0);}
.m21_c00140{transform:matrix(0.375711,-0.002630,0.001750,0.249994,0,0);-ms-transform:matrix(0.375711,-0.002630,0.001750,0.249994,0,0);-webkit-transform:matrix(0.375711,-0.002630,0.001750,0.249994,0,0);}
.m4c_c00140{transform:matrix(0.377292,-0.007169,0.004749,0.249955,0,0);-ms-transform:matrix(0.377292,-0.007169,0.004749,0.249955,0,0);-webkit-transform:matrix(0.377292,-0.007169,0.004749,0.249955,0,0);}
.m38_c00140{transform:matrix(0.379770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379770,0.000000,0.000000,0.250000,0,0);}
.m1_c00140{transform:matrix(0.383460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383460,0.000000,0.000000,0.250000,0,0);}
.md_c00140{transform:matrix(0.386070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386070,0.000000,0.000000,0.250000,0,0);}
.m55_c00140{transform:matrix(0.392615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392615,0.000000,0.000000,0.250000,0,0);}
.m1b_c00140{transform:matrix(0.393719,-0.007481,0.004749,0.249955,0,0);-ms-transform:matrix(0.393719,-0.007481,0.004749,0.249955,0,0);-webkit-transform:matrix(0.393719,-0.007481,0.004749,0.249955,0,0);}
.m17_c00140{transform:matrix(0.400318,-0.007606,0.004749,0.249955,0,0);-ms-transform:matrix(0.400318,-0.007606,0.004749,0.249955,0,0);-webkit-transform:matrix(0.400318,-0.007606,0.004749,0.249955,0,0);}
.m28_c00140{transform:matrix(0.406740,-0.002847,0.001750,0.249994,0,0);-ms-transform:matrix(0.406740,-0.002847,0.001750,0.249994,0,0);-webkit-transform:matrix(0.406740,-0.002847,0.001750,0.249994,0,0);}
.m25_c00140{transform:matrix(0.410955,-0.002877,0.001750,0.249994,0,0);-ms-transform:matrix(0.410955,-0.002877,0.001750,0.249994,0,0);-webkit-transform:matrix(0.410955,-0.002877,0.001750,0.249994,0,0);}
.m5a_c00140{transform:matrix(0.429535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429535,0.000000,0.000000,0.250000,0,0);}
.m24_c00140{transform:matrix(0.445839,-0.003121,0.001750,0.249994,0,0);-ms-transform:matrix(0.445839,-0.003121,0.001750,0.249994,0,0);-webkit-transform:matrix(0.445839,-0.003121,0.001750,0.249994,0,0);}
.m14_c00140{transform:matrix(0.486727,-0.009248,0.004749,0.249955,0,0);-ms-transform:matrix(0.486727,-0.009248,0.004749,0.249955,0,0);-webkit-transform:matrix(0.486727,-0.009248,0.004749,0.249955,0,0);}
.m13_c00140{transform:matrix(0.514292,-0.009772,0.004749,0.249955,0,0);-ms-transform:matrix(0.514292,-0.009772,0.004749,0.249955,0,0);-webkit-transform:matrix(0.514292,-0.009772,0.004749,0.249955,0,0);}
.m15_c00140{transform:matrix(0.517117,-0.009825,0.004749,0.249955,0,0);-ms-transform:matrix(0.517117,-0.009825,0.004749,0.249955,0,0);-webkit-transform:matrix(0.517117,-0.009825,0.004749,0.249955,0,0);}
.m3d_c00140{transform:matrix(0.521765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521765,0.000000,0.000000,0.250000,0,0);}
.m43_c00140{transform:matrix(0.551545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551545,0.000000,0.000000,0.250000,0,0);}
.mb_c00140{transform:matrix(0.570550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.570550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.570550,0.000000,0.000000,0.250000,0,0);}
.m49_c00140{transform:matrix(0.601716,-0.011433,0.004749,0.249955,0,0);-ms-transform:matrix(0.601716,-0.011433,0.004749,0.249955,0,0);-webkit-transform:matrix(0.601716,-0.011433,0.004749,0.249955,0,0);}
.m1d_c00140{transform:matrix(0.676898,-0.012861,0.004749,0.249955,0,0);-ms-transform:matrix(0.676898,-0.012861,0.004749,0.249955,0,0);-webkit-transform:matrix(0.676898,-0.012861,0.004749,0.249955,0,0);}
.m42_c00140{transform:matrix(0.690295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.690295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.690295,0.000000,0.000000,0.250000,0,0);}
.m4a_c00140{transform:matrix(0.701933,-0.013337,0.004749,0.249955,0,0);-ms-transform:matrix(0.701933,-0.013337,0.004749,0.249955,0,0);-webkit-transform:matrix(0.701933,-0.013337,0.004749,0.249955,0,0);}
.m1c_c00140{transform:matrix(0.738357,-0.014029,0.004749,0.249955,0,0);-ms-transform:matrix(0.738357,-0.014029,0.004749,0.249955,0,0);-webkit-transform:matrix(0.738357,-0.014029,0.004749,0.249955,0,0);}
.mc_c00140{transform:matrix(0.739255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.739255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.739255,0.000000,0.000000,0.250000,0,0);}
.m1f_c00140{transform:matrix(0.775861,-0.005431,0.001750,0.249994,0,0);-ms-transform:matrix(0.775861,-0.005431,0.001750,0.249994,0,0);-webkit-transform:matrix(0.775861,-0.005431,0.001750,0.249994,0,0);}
.ma_c00140{transform:matrix(0.806635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.806635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.806635,0.000000,0.000000,0.250000,0,0);}
.m4e_c00140{transform:matrix(0.920570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.920570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.920570,0.000000,0.000000,0.250000,0,0);}
.m5b_c00140{transform:matrix(0.943580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.943580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.943580,0.000000,0.000000,0.250000,0,0);}
.m54_c00140{transform:matrix(0.985763,-0.016758,0.004249,0.249964,0,0);-ms-transform:matrix(0.985763,-0.016758,0.004249,0.249964,0,0);-webkit-transform:matrix(0.985763,-0.016758,0.004249,0.249964,0,0);}
.m1a_c00140{transform:matrix(1.098467,-0.020871,0.004749,0.249955,0,0);-ms-transform:matrix(1.098467,-0.020871,0.004749,0.249955,0,0);-webkit-transform:matrix(1.098467,-0.020871,0.004749,0.249955,0,0);}
.m2d_c00140{transform:matrix(1.175841,-0.008231,0.001750,0.249994,0,0);-ms-transform:matrix(1.175841,-0.008231,0.001750,0.249994,0,0);-webkit-transform:matrix(1.175841,-0.008231,0.001750,0.249994,0,0);}
.m10_c00140{transform:matrix(1.329665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.329665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.329665,0.000000,0.000000,0.250000,0,0);}
.m4b_c00140{transform:matrix(1.387150,-0.026356,0.004749,0.249955,0,0);-ms-transform:matrix(1.387150,-0.026356,0.004749,0.249955,0,0);-webkit-transform:matrix(1.387150,-0.026356,0.004749,0.249955,0,0);}
.m3c_c00140{transform:matrix(1.475090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.475090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.475090,0.000000,0.000000,0.250000,0,0);}
.m33_c00140{transform:matrix(1.669624,-0.011687,0.001750,0.249994,0,0);-ms-transform:matrix(1.669624,-0.011687,0.001750,0.249994,0,0);-webkit-transform:matrix(1.669624,-0.011687,0.001750,0.249994,0,0);}
.m1e_c00140{transform:matrix(1.793681,-0.012556,0.001750,0.249994,0,0);-ms-transform:matrix(1.793681,-0.012556,0.001750,0.249994,0,0);-webkit-transform:matrix(1.793681,-0.012556,0.001750,0.249994,0,0);}
.v0_c00140{vertical-align:0.000000px;}
.ls0_c00140{letter-spacing:0.000000px;}
.sc__c00140{text-shadow:none;}
.sc0_c00140{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__c00140{-webkit-text-stroke:0px transparent;}
.sc0_c00140{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00140{word-spacing:0.000000px;}
.fc0_c00140{color:transparent;}
.fs9_c00140{font-size:12.000000px;}
.fs8_c00140{font-size:18.000000px;}
.fs12_c00140{font-size:24.000000px;}
.fsa_c00140{font-size:30.000000px;}
.fsb_c00140{font-size:30.005415px;}
.fsd_c00140{font-size:42.000000px;}
.fs11_c00140{font-size:48.000000px;}
.fse_c00140{font-size:48.008663px;}
.fs1_c00140{font-size:60.000000px;}
.fs7_c00140{font-size:60.010829px;}
.fsc_c00140{font-size:66.011912px;}
.fsf_c00140{font-size:72.010403px;}
.fs4_c00140{font-size:78.001911px;}
.fs5_c00140{font-size:84.002058px;}
.fs2_c00140{font-size:84.015161px;}
.fs6_c00140{font-size:102.002499px;}
.fs10_c00140{font-size:114.000000px;}
.fs0_c00140{font-size:150.000000px;}
.fs3_c00140{font-size:168.030321px;}
.y0_c00140{bottom:0.000000px;}
.y2_c00140{bottom:56.973000px;}
.y3_c00140{bottom:57.478500px;}
.y4_c00140{bottom:57.958500px;}
.y5_c00140{bottom:59.991000px;}
.y6_c00140{bottom:61.032000px;}
.y7_c00140{bottom:62.557500px;}
.y8_c00140{bottom:63.654000px;}
.y9_c00140{bottom:64.504500px;}
.y56_c00140{bottom:64.800000px;}
.ya_c00140{bottom:64.897500px;}
.yb_c00140{bottom:66.498000px;}
.y1_c00140{bottom:84.193500px;}
.y3f_c00140{bottom:221.400000px;}
.y40_c00140{bottom:221.745000px;}
.y41_c00140{bottom:222.474000px;}
.y42_c00140{bottom:225.694500px;}
.y3d_c00140{bottom:227.323500px;}
.y3e_c00140{bottom:231.991500px;}
.y38_c00140{bottom:268.380000px;}
.y39_c00140{bottom:271.353000px;}
.y3a_c00140{bottom:271.872000px;}
.y3b_c00140{bottom:272.680500px;}
.y3c_c00140{bottom:273.699000px;}
.y34_c00140{bottom:285.667500px;}
.y35_c00140{bottom:286.320000px;}
.y36_c00140{bottom:288.436500px;}
.y37_c00140{bottom:291.334500px;}
.y33_c00140{bottom:303.210000px;}
.y32_c00140{bottom:311.040000px;}
.y2f_c00140{bottom:326.164500px;}
.y30_c00140{bottom:328.777408px;}
.y31_c00140{bottom:329.335239px;}
.y4e_c00140{bottom:371.791500px;}
.y4f_c00140{bottom:373.297352px;}
.y55_c00140{bottom:415.933500px;}
.y4b_c00140{bottom:422.821500px;}
.y4c_c00140{bottom:424.852125px;}
.y4d_c00140{bottom:427.041210px;}
.y54_c00140{bottom:427.546500px;}
.y4a_c00140{bottom:429.030000px;}
.y51_c00140{bottom:436.581000px;}
.y52_c00140{bottom:438.816000px;}
.y53_c00140{bottom:440.613000px;}
.y27_c00140{bottom:442.799726px;}
.y28_c00140{bottom:444.044667px;}
.y29_c00140{bottom:444.659365px;}
.y2a_c00140{bottom:444.940548px;}
.y2b_c00140{bottom:446.315391px;}
.y2c_c00140{bottom:447.104599px;}
.y2d_c00140{bottom:447.983214px;}
.y2e_c00140{bottom:452.561145px;}
.y1e_c00140{bottom:468.981093px;}
.y1f_c00140{bottom:470.123958px;}
.y20_c00140{bottom:472.442301px;}
.y21_c00140{bottom:473.829693px;}
.y22_c00140{bottom:474.794265px;}
.y50_c00140{bottom:476.550000px;}
.y23_c00140{bottom:479.229027px;}
.y24_c00140{bottom:480.508914px;}
.y25_c00140{bottom:483.418023px;}
.y26_c00140{bottom:485.840764px;}
.y18_c00140{bottom:516.241500px;}
.y19_c00140{bottom:518.541242px;}
.y1a_c00140{bottom:520.552737px;}
.y1b_c00140{bottom:520.811310px;}
.y1c_c00140{bottom:521.293250px;}
.y1d_c00140{bottom:521.703369px;}
.y13_c00140{bottom:549.719418px;}
.y14_c00140{bottom:550.109526px;}
.y15_c00140{bottom:554.752945px;}
.y16_c00140{bottom:556.182405px;}
.y17_c00140{bottom:559.074969px;}
.yc_c00140{bottom:570.775500px;}
.yd_c00140{bottom:571.434904px;}
.ye_c00140{bottom:572.555582px;}
.yf_c00140{bottom:574.792261px;}
.y49_c00140{bottom:576.990000px;}
.y10_c00140{bottom:577.587313px;}
.y11_c00140{bottom:578.500682px;}
.y12_c00140{bottom:587.609054px;}
.y48_c00140{bottom:611.250023px;}
.y47_c00140{bottom:611.250098px;}
.y43_c00140{bottom:689.043000px;}
.y44_c00140{bottom:701.138343px;}
.y45_c00140{bottom:701.956179px;}
.y46_c00140{bottom:702.820099px;}
.hb_c00140{height:12.000000px;}
.ha_c00140{height:18.000000px;}
.h14_c00140{height:24.000000px;}
.hc_c00140{height:30.000000px;}
.hd_c00140{height:30.005415px;}
.hf_c00140{height:42.000000px;}
.h13_c00140{height:48.000000px;}
.h10_c00140{height:48.008663px;}
.h3_c00140{height:60.000000px;}
.h9_c00140{height:60.010829px;}
.he_c00140{height:66.011912px;}
.h11_c00140{height:72.010403px;}
.h6_c00140{height:78.001911px;}
.h7_c00140{height:84.002058px;}
.h4_c00140{height:84.015161px;}
.h8_c00140{height:102.002499px;}
.h12_c00140{height:114.000000px;}
.h2_c00140{height:150.000000px;}
.h5_c00140{height:168.030321px;}
.h0_c00140{height:698.220000px;}
.h1_c00140{height:698.250000px;}
.w1_c00140{width:945.750000px;}
.w0_c00140{width:946.050000px;}
.x0_c00140{left:0.000000px;}
.x1_c00140{left:5.940000px;}
.x31_c00140{left:8.910000px;}
.x32_c00140{left:10.800000px;}
.x12_c00140{left:13.009500px;}
.x33_c00140{left:33.526500px;}
.x9_c00140{left:39.876000px;}
.x2_c00140{left:44.010000px;}
.x1f_c00140{left:45.177930px;}
.x13_c00140{left:47.715000px;}
.xa_c00140{left:71.859000px;}
.x20_c00140{left:105.367879px;}
.x14_c00140{left:106.698000px;}
.x34_c00140{left:139.341000px;}
.x2e_c00140{left:143.641500px;}
.x28_c00140{left:158.440026px;}
.x40_c00140{left:163.473000px;}
.xb_c00140{left:207.319500px;}
.x29_c00140{left:214.323961px;}
.x15_c00140{left:224.418000px;}
.x21_c00140{left:227.406632px;}
.x2a_c00140{left:239.920747px;}
.x3_c00140{left:265.140000px;}
.xc_c00140{left:276.694500px;}
.x2f_c00140{left:281.163000px;}
.x35_c00140{left:284.268000px;}
.x22_c00140{left:300.456500px;}
.x30_c00140{left:310.522500px;}
.x36_c00140{left:320.503500px;}
.x4_c00140{left:326.700000px;}
.x1b_c00140{left:340.581000px;}
.x23_c00140{left:351.248237px;}
.x2b_c00140{left:364.966251px;}
.x16_c00140{left:371.526000px;}
.xd_c00140{left:378.421500px;}
.x17_c00140{left:419.598000px;}
.x19_c00140{left:431.909487px;}
.x2c_c00140{left:436.779745px;}
.x5_c00140{left:439.560000px;}
.xe_c00140{left:451.539000px;}
.x48_c00140{left:462.301500px;}
.xf_c00140{left:508.266000px;}
.x2d_c00140{left:516.651009px;}
.x10_c00140{left:534.423000px;}
.x1a_c00140{left:550.975805px;}
.x49_c00140{left:569.176500px;}
.x24_c00140{left:584.694633px;}
.x37_c00140{left:590.725500px;}
.x6_c00140{left:596.970000px;}
.x1c_c00140{left:627.937500px;}
.x38_c00140{left:637.884000px;}
.x11_c00140{left:641.109000px;}
.x25_c00140{left:652.029973px;}
.x1d_c00140{left:664.876500px;}
.x4a_c00140{left:684.391500px;}
.x3b_c00140{left:693.868500px;}
.x4e_c00140{left:695.499000px;}
.x47_c00140{left:701.460000px;}
.x7_c00140{left:703.890000px;}
.x39_c00140{left:711.448500px;}
.x3d_c00140{left:714.976500px;}
.x4d_c00140{left:731.970000px;}
.x1e_c00140{left:733.725000px;}
.x4b_c00140{left:750.724500px;}
.x3e_c00140{left:771.525000px;}
.x8_c00140{left:792.450000px;}
.x41_c00140{left:800.070000px;}
.x3a_c00140{left:804.058500px;}
.x26_c00140{left:805.104111px;}
.x44_c00140{left:817.138920px;}
.x46_c00140{left:824.310000px;}
.x4f_c00140{left:826.951500px;}
.x4c_c00140{left:839.304000px;}
.x42_c00140{left:843.114000px;}
.x43_c00140{left:888.583500px;}
.x18_c00140{left:898.986000px;}
.x45_c00140{left:902.744814px;}
.x50_c00140{left:926.100000px;}
.x3c_c00140{left:927.261000px;}
.x27_c00140{left:932.627901px;}
.x3f_c00140{left:941.029500px;}
@media print{
.v0_c00140{vertical-align:0.000000pt;}
.ls0_c00140{letter-spacing:0.000000pt;}
.ws0_c00140{word-spacing:0.000000pt;}
.fs9_c00140{font-size:10.666667pt;}
.fs8_c00140{font-size:16.000000pt;}
.fs12_c00140{font-size:21.333333pt;}
.fsa_c00140{font-size:26.666667pt;}
.fsb_c00140{font-size:26.671480pt;}
.fsd_c00140{font-size:37.333333pt;}
.fs11_c00140{font-size:42.666667pt;}
.fse_c00140{font-size:42.674367pt;}
.fs1_c00140{font-size:53.333333pt;}
.fs7_c00140{font-size:53.342959pt;}
.fsc_c00140{font-size:58.677255pt;}
.fsf_c00140{font-size:64.009247pt;}
.fs4_c00140{font-size:69.335032pt;}
.fs5_c00140{font-size:74.668496pt;}
.fs2_c00140{font-size:74.680143pt;}
.fs6_c00140{font-size:90.668888pt;}
.fs10_c00140{font-size:101.333333pt;}
.fs0_c00140{font-size:133.333333pt;}
.fs3_c00140{font-size:149.360286pt;}
.y0_c00140{bottom:0.000000pt;}
.y2_c00140{bottom:50.642667pt;}
.y3_c00140{bottom:51.092000pt;}
.y4_c00140{bottom:51.518667pt;}
.y5_c00140{bottom:53.325333pt;}
.y6_c00140{bottom:54.250667pt;}
.y7_c00140{bottom:55.606667pt;}
.y8_c00140{bottom:56.581333pt;}
.y9_c00140{bottom:57.337333pt;}
.y56_c00140{bottom:57.600000pt;}
.ya_c00140{bottom:57.686667pt;}
.yb_c00140{bottom:59.109333pt;}
.y1_c00140{bottom:74.838667pt;}
.y3f_c00140{bottom:196.800000pt;}
.y40_c00140{bottom:197.106667pt;}
.y41_c00140{bottom:197.754667pt;}
.y42_c00140{bottom:200.617333pt;}
.y3d_c00140{bottom:202.065333pt;}
.y3e_c00140{bottom:206.214667pt;}
.y38_c00140{bottom:238.560000pt;}
.y39_c00140{bottom:241.202667pt;}
.y3a_c00140{bottom:241.664000pt;}
.y3b_c00140{bottom:242.382667pt;}
.y3c_c00140{bottom:243.288000pt;}
.y34_c00140{bottom:253.926667pt;}
.y35_c00140{bottom:254.506667pt;}
.y36_c00140{bottom:256.388000pt;}
.y37_c00140{bottom:258.964000pt;}
.y33_c00140{bottom:269.520000pt;}
.y32_c00140{bottom:276.480000pt;}
.y2f_c00140{bottom:289.924000pt;}
.y30_c00140{bottom:292.246585pt;}
.y31_c00140{bottom:292.742435pt;}
.y4e_c00140{bottom:330.481333pt;}
.y4f_c00140{bottom:331.819868pt;}
.y55_c00140{bottom:369.718667pt;}
.y4b_c00140{bottom:375.841333pt;}
.y4c_c00140{bottom:377.646333pt;}
.y4d_c00140{bottom:379.592187pt;}
.y54_c00140{bottom:380.041333pt;}
.y4a_c00140{bottom:381.360000pt;}
.y51_c00140{bottom:388.072000pt;}
.y52_c00140{bottom:390.058667pt;}
.y53_c00140{bottom:391.656000pt;}
.y27_c00140{bottom:393.599756pt;}
.y28_c00140{bottom:394.706371pt;}
.y29_c00140{bottom:395.252769pt;}
.y2a_c00140{bottom:395.502709pt;}
.y2b_c00140{bottom:396.724792pt;}
.y2c_c00140{bottom:397.426311pt;}
.y2d_c00140{bottom:398.207301pt;}
.y2e_c00140{bottom:402.276573pt;}
.y1e_c00140{bottom:416.872083pt;}
.y1f_c00140{bottom:417.887963pt;}
.y20_c00140{bottom:419.948712pt;}
.y21_c00140{bottom:421.181949pt;}
.y22_c00140{bottom:422.039347pt;}
.y50_c00140{bottom:423.600000pt;}
.y23_c00140{bottom:425.981357pt;}
.y24_c00140{bottom:427.119035pt;}
.y25_c00140{bottom:429.704909pt;}
.y26_c00140{bottom:431.858457pt;}
.y18_c00140{bottom:458.881333pt;}
.y19_c00140{bottom:460.925548pt;}
.y1a_c00140{bottom:462.713544pt;}
.y1b_c00140{bottom:462.943387pt;}
.y1c_c00140{bottom:463.371777pt;}
.y1d_c00140{bottom:463.736328pt;}
.y13_c00140{bottom:488.639483pt;}
.y14_c00140{bottom:488.986245pt;}
.y15_c00140{bottom:493.113729pt;}
.y16_c00140{bottom:494.384360pt;}
.y17_c00140{bottom:496.955528pt;}
.yc_c00140{bottom:507.356000pt;}
.yd_c00140{bottom:507.942137pt;}
.ye_c00140{bottom:508.938295pt;}
.yf_c00140{bottom:510.926455pt;}
.y49_c00140{bottom:512.880000pt;}
.y10_c00140{bottom:513.410945pt;}
.y11_c00140{bottom:514.222828pt;}
.y12_c00140{bottom:522.319159pt;}
.y48_c00140{bottom:543.333353pt;}
.y47_c00140{bottom:543.333420pt;}
.y43_c00140{bottom:612.482667pt;}
.y44_c00140{bottom:623.234083pt;}
.y45_c00140{bottom:623.961048pt;}
.y46_c00140{bottom:624.728977pt;}
.hb_c00140{height:10.666667pt;}
.ha_c00140{height:16.000000pt;}
.h14_c00140{height:21.333333pt;}
.hc_c00140{height:26.666667pt;}
.hd_c00140{height:26.671480pt;}
.hf_c00140{height:37.333333pt;}
.h13_c00140{height:42.666667pt;}
.h10_c00140{height:42.674367pt;}
.h3_c00140{height:53.333333pt;}
.h9_c00140{height:53.342959pt;}
.he_c00140{height:58.677255pt;}
.h11_c00140{height:64.009247pt;}
.h6_c00140{height:69.335032pt;}
.h7_c00140{height:74.668496pt;}
.h4_c00140{height:74.680143pt;}
.h8_c00140{height:90.668888pt;}
.h12_c00140{height:101.333333pt;}
.h2_c00140{height:133.333333pt;}
.h5_c00140{height:149.360286pt;}
.h0_c00140{height:620.640000pt;}
.h1_c00140{height:620.666667pt;}
.w1_c00140{width:840.666667pt;}
.w0_c00140{width:840.933333pt;}
.x0_c00140{left:0.000000pt;}
.x1_c00140{left:5.280000pt;}
.x31_c00140{left:7.920000pt;}
.x32_c00140{left:9.600000pt;}
.x12_c00140{left:11.564000pt;}
.x33_c00140{left:29.801333pt;}
.x9_c00140{left:35.445333pt;}
.x2_c00140{left:39.120000pt;}
.x1f_c00140{left:40.158160pt;}
.x13_c00140{left:42.413333pt;}
.xa_c00140{left:63.874667pt;}
.x20_c00140{left:93.660337pt;}
.x14_c00140{left:94.842667pt;}
.x34_c00140{left:123.858667pt;}
.x2e_c00140{left:127.681333pt;}
.x28_c00140{left:140.835579pt;}
.x40_c00140{left:145.309333pt;}
.xb_c00140{left:184.284000pt;}
.x29_c00140{left:190.510188pt;}
.x15_c00140{left:199.482667pt;}
.x21_c00140{left:202.139228pt;}
.x2a_c00140{left:213.262887pt;}
.x3_c00140{left:235.680000pt;}
.xc_c00140{left:245.950667pt;}
.x2f_c00140{left:249.922667pt;}
.x35_c00140{left:252.682667pt;}
.x22_c00140{left:267.072444pt;}
.x30_c00140{left:276.020000pt;}
.x36_c00140{left:284.892000pt;}
.x4_c00140{left:290.400000pt;}
.x1b_c00140{left:302.738667pt;}
.x23_c00140{left:312.220655pt;}
.x2b_c00140{left:324.414445pt;}
.x16_c00140{left:330.245333pt;}
.xd_c00140{left:336.374667pt;}
.x17_c00140{left:372.976000pt;}
.x19_c00140{left:383.919544pt;}
.x2c_c00140{left:388.248663pt;}
.x5_c00140{left:390.720000pt;}
.xe_c00140{left:401.368000pt;}
.x48_c00140{left:410.934667pt;}
.xf_c00140{left:451.792000pt;}
.x2d_c00140{left:459.245341pt;}
.x10_c00140{left:475.042667pt;}
.x1a_c00140{left:489.756271pt;}
.x49_c00140{left:505.934667pt;}
.x24_c00140{left:519.728563pt;}
.x37_c00140{left:525.089333pt;}
.x6_c00140{left:530.640000pt;}
.x1c_c00140{left:558.166667pt;}
.x38_c00140{left:567.008000pt;}
.x11_c00140{left:569.874667pt;}
.x25_c00140{left:579.582199pt;}
.x1d_c00140{left:591.001333pt;}
.x4a_c00140{left:608.348000pt;}
.x3b_c00140{left:616.772000pt;}
.x4e_c00140{left:618.221333pt;}
.x47_c00140{left:623.520000pt;}
.x7_c00140{left:625.680000pt;}
.x39_c00140{left:632.398667pt;}
.x3d_c00140{left:635.534667pt;}
.x4d_c00140{left:650.640000pt;}
.x1e_c00140{left:652.200000pt;}
.x4b_c00140{left:667.310667pt;}
.x3e_c00140{left:685.800000pt;}
.x8_c00140{left:704.400000pt;}
.x41_c00140{left:711.173333pt;}
.x3a_c00140{left:714.718667pt;}
.x26_c00140{left:715.648099pt;}
.x44_c00140{left:726.345707pt;}
.x46_c00140{left:732.720000pt;}
.x4f_c00140{left:735.068000pt;}
.x4c_c00140{left:746.048000pt;}
.x42_c00140{left:749.434667pt;}
.x43_c00140{left:789.852000pt;}
.x18_c00140{left:799.098667pt;}
.x45_c00140{left:802.439835pt;}
.x50_c00140{left:823.200000pt;}
.x3c_c00140{left:824.232000pt;}
.x27_c00140{left:829.002579pt;}
.x3f_c00140{left:836.470667pt;}
}





/* 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_c00141 {
    display:none;
  }
  .loading-indicator_c00141.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00141 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_c00141 { 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_c00141" -> "#page-container .classname_c00141")
 */
.pf_c00141 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00141 { /* 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_c00141.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00141 { /* 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_c00141 { /* 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_c00141 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00141 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00141 {overflow:visible;}
  }
}
.c_c00141 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00141 { /* 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_c00141:after { /* webkit #35443 */
  content: '';
}
.t_c00141:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00141 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 */
}
.__c00141 { /* 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_c00141 { /* info for Javascript */
  display:none;
}
.l_c00141 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00141 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00141 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00141: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_c00141 {
    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_c00141.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00141.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_c00141 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00141{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00141;src:url('chunks/assets/font_dbd529e162d5851c7bfb6d27.woff2')format("woff");}.ff1_c00141{font-family:ff1_c00141;line-height:1.000000;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;}
.md_c00141{transform:matrix(0.033275,-0.535622,0.249519,0.015501,0,0);-ms-transform:matrix(0.033275,-0.535622,0.249519,0.015501,0,0);-webkit-transform:matrix(0.033275,-0.535622,0.249519,0.015501,0,0);}
.m3_c00141{transform:matrix(0.148490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148490,0.000000,0.000000,0.250000,0,0);}
.mc_c00141{transform:matrix(0.285590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285590,0.000000,0.000000,0.250000,0,0);}
.mb_c00141{transform:matrix(0.300830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300830,0.000000,0.000000,0.250000,0,0);}
.m7_c00141{transform:matrix(0.476705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.476705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.476705,0.000000,0.000000,0.250000,0,0);}
.ma_c00141{transform:matrix(0.540835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540835,0.000000,0.000000,0.250000,0,0);}
.m9_c00141{transform:matrix(0.626600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.626600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.626600,0.000000,0.000000,0.250000,0,0);}
.m4_c00141{transform:matrix(0.707745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.707745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.707745,0.000000,0.000000,0.250000,0,0);}
.m1_c00141{transform:matrix(0.721250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.721250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.721250,0.000000,0.000000,0.250000,0,0);}
.m2_c00141{transform:matrix(0.730550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.730550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.730550,0.000000,0.000000,0.250000,0,0);}
.m5_c00141{transform:matrix(0.761610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.761610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.761610,0.000000,0.000000,0.250000,0,0);}
.m6_c00141{transform:matrix(0.782590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.782590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.782590,0.000000,0.000000,0.250000,0,0);}
.m8_c00141{transform:matrix(0.872710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.872710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.872710,0.000000,0.000000,0.250000,0,0);}
.m0_c00141{transform:matrix(1.225765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.225765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.225765,0.000000,0.000000,0.250000,0,0);}
.v0_c00141{vertical-align:0.000000px;}
.ls0_c00141{letter-spacing:0.000000px;}
.sc__c00141{text-shadow:none;}
.sc0_c00141{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__c00141{-webkit-text-stroke:0px transparent;}
.sc0_c00141{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00141{word-spacing:0.000000px;}
.fc0_c00141{color:transparent;}
.fs2_c00141{font-size:17.998632px;}
.fs0_c00141{font-size:18.000000px;}
.fs1_c00141{font-size:24.000000px;}
.y0_c00141{bottom:0.000000px;}
.y1_c00141{bottom:544.050000px;}
.y2_c00141{bottom:552.960000px;}
.y6_c00141{bottom:579.150000px;}
.y5_c00141{bottom:630.157500px;}
.y7_c00141{bottom:633.117000px;}
.y4_c00141{bottom:652.860000px;}
.y3_c00141{bottom:657.720000px;}
.h4_c00141{height:17.998632px;}
.h2_c00141{height:18.000000px;}
.h3_c00141{height:24.000000px;}
.h0_c00141{height:698.220000px;}
.h1_c00141{height:698.250000px;}
.w1_c00141{width:945.750000px;}
.w0_c00141{width:946.050000px;}
.x0_c00141{left:0.000000px;}
.x5_c00141{left:510.838500px;}
.x4_c00141{left:830.250000px;}
.x3_c00141{left:929.610000px;}
.x1_c00141{left:932.040000px;}
.x2_c00141{left:934.200000px;}
@media print{
.v0_c00141{vertical-align:0.000000pt;}
.ls0_c00141{letter-spacing:0.000000pt;}
.ws0_c00141{word-spacing:0.000000pt;}
.fs2_c00141{font-size:15.998784pt;}
.fs0_c00141{font-size:16.000000pt;}
.fs1_c00141{font-size:21.333333pt;}
.y0_c00141{bottom:0.000000pt;}
.y1_c00141{bottom:483.600000pt;}
.y2_c00141{bottom:491.520000pt;}
.y6_c00141{bottom:514.800000pt;}
.y5_c00141{bottom:560.140000pt;}
.y7_c00141{bottom:562.770667pt;}
.y4_c00141{bottom:580.320000pt;}
.y3_c00141{bottom:584.640000pt;}
.h4_c00141{height:15.998784pt;}
.h2_c00141{height:16.000000pt;}
.h3_c00141{height:21.333333pt;}
.h0_c00141{height:620.640000pt;}
.h1_c00141{height:620.666667pt;}
.w1_c00141{width:840.666667pt;}
.w0_c00141{width:840.933333pt;}
.x0_c00141{left:0.000000pt;}
.x5_c00141{left:454.078667pt;}
.x4_c00141{left:738.000000pt;}
.x3_c00141{left:826.320000pt;}
.x1_c00141{left:828.480000pt;}
.x2_c00141{left:830.400000pt;}
}





/* 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_c00142 {
    display:none;
  }
  .loading-indicator_c00142.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00142 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_c00142 { 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_c00142" -> "#page-container .classname_c00142")
 */
.pf_c00142 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00142 { /* 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_c00142.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00142 { /* 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_c00142 { /* 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_c00142 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00142 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00142 {overflow:visible;}
  }
}
.c_c00142 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00142 { /* 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_c00142:after { /* webkit #35443 */
  content: '';
}
.t_c00142:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00142 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 */
}
.__c00142 { /* 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_c00142 { /* info for Javascript */
  display:none;
}
.l_c00142 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00142 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00142 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00142: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_c00142 {
    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_c00142.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00142.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_c00142 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00142{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00142;src:url('chunks/assets/font_b11a17f404e7258299fdf971.woff2')format("woff");}.ff1_c00142{font-family:ff1_c00142;line-height:1.000000;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;}
.m14_c00142{transform:matrix(0.007955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.007955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.007955,0.000000,0.000000,0.250000,0,0);}
.m17_c00142{transform:matrix(0.018010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.018010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.018010,0.000000,0.000000,0.250000,0,0);}
.mc_c00142{transform:matrix(0.116360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116360,0.000000,0.000000,0.250000,0,0);}
.m5_c00142{transform:matrix(0.176675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176675,0.000000,0.000000,0.250000,0,0);}
.m2b_c00142{transform:matrix(0.228870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228870,0.000000,0.000000,0.250000,0,0);}
.m1a_c00142{transform:matrix(0.248215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248215,0.000000,0.000000,0.250000,0,0);}
.m1d_c00142{transform:matrix(0.273795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273795,0.000000,0.000000,0.250000,0,0);}
.m20_c00142{transform:matrix(0.311970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311970,0.000000,0.000000,0.250000,0,0);}
.m26_c00142{transform:matrix(0.313955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313955,0.000000,0.000000,0.250000,0,0);}
.m1b_c00142{transform:matrix(0.317860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317860,0.000000,0.000000,0.250000,0,0);}
.m1e_c00142{transform:matrix(0.318485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318485,0.000000,0.000000,0.250000,0,0);}
.m23_c00142{transform:matrix(0.328530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328530,0.000000,0.000000,0.250000,0,0);}
.m21_c00142{transform:matrix(0.343500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343500,0.000000,0.000000,0.250000,0,0);}
.m19_c00142{transform:matrix(0.348170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348170,0.000000,0.000000,0.250000,0,0);}
.m27_c00142{transform:matrix(0.356545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356545,0.000000,0.000000,0.250000,0,0);}
.m1f_c00142{transform:matrix(0.366275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366275,0.000000,0.000000,0.250000,0,0);}
.m2a_c00142{transform:matrix(0.375830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375830,0.000000,0.000000,0.250000,0,0);}
.m28_c00142{transform:matrix(0.377465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377465,0.000000,0.000000,0.250000,0,0);}
.m25_c00142{transform:matrix(0.387420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387420,0.000000,0.000000,0.250000,0,0);}
.m8_c00142{transform:matrix(0.402260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402260,0.000000,0.000000,0.250000,0,0);}
.m12_c00142{transform:matrix(0.407805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407805,0.000000,0.000000,0.250000,0,0);}
.m15_c00142{transform:matrix(0.411725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411725,0.000000,0.000000,0.250000,0,0);}
.m1c_c00142{transform:matrix(0.446235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446235,0.000000,0.000000,0.250000,0,0);}
.ma_c00142{transform:matrix(0.448015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448015,0.000000,0.000000,0.250000,0,0);}
.m13_c00142{transform:matrix(0.448860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448860,0.000000,0.000000,0.250000,0,0);}
.mb_c00142{transform:matrix(0.518690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518690,0.000000,0.000000,0.250000,0,0);}
.m10_c00142{transform:matrix(0.530955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530955,0.000000,0.000000,0.250000,0,0);}
.m1_c00142{transform:matrix(0.554460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554460,0.000000,0.000000,0.250000,0,0);}
.m9_c00142{transform:matrix(0.562970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562970,0.000000,0.000000,0.250000,0,0);}
.m11_c00142{transform:matrix(0.597925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.597925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.597925,0.000000,0.000000,0.250000,0,0);}
.m22_c00142{transform:matrix(0.646855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.646855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.646855,0.000000,0.000000,0.250000,0,0);}
.m2c_c00142{transform:matrix(0.732985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.732985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.732985,0.000000,0.000000,0.250000,0,0);}
.mf_c00142{transform:matrix(0.749080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749080,0.000000,0.000000,0.250000,0,0);}
.m24_c00142{transform:matrix(0.764115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.764115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.764115,0.000000,0.000000,0.250000,0,0);}
.me_c00142{transform:matrix(0.787505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.787505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.787505,0.000000,0.000000,0.250000,0,0);}
.md_c00142{transform:matrix(0.791440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.791440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.791440,0.000000,0.000000,0.250000,0,0);}
.m16_c00142{transform:matrix(0.819270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.819270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.819270,0.000000,0.000000,0.250000,0,0);}
.m2_c00142{transform:matrix(0.972425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.972425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.972425,0.000000,0.000000,0.250000,0,0);}
.m0_c00142{transform:matrix(0.974560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.974560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.974560,0.000000,0.000000,0.250000,0,0);}
.m6_c00142{transform:matrix(1.040420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.040420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.040420,0.000000,0.000000,0.250000,0,0);}
.m7_c00142{transform:matrix(1.137420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.137420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.137420,0.000000,0.000000,0.250000,0,0);}
.m4_c00142{transform:matrix(1.278415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.278415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.278415,0.000000,0.000000,0.250000,0,0);}
.m2d_c00142{transform:matrix(1.727970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.727970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.727970,0.000000,0.000000,0.250000,0,0);}
.m29_c00142{transform:matrix(1.733575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.733575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.733575,0.000000,0.000000,0.250000,0,0);}
.m18_c00142{transform:matrix(1.764020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.764020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.764020,0.000000,0.000000,0.250000,0,0);}
.m3_c00142{transform:matrix(1.820865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.820865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.820865,0.000000,0.000000,0.250000,0,0);}
.v0_c00142{vertical-align:0.000000px;}
.ls0_c00142{letter-spacing:0.000000px;}
.sc__c00142{text-shadow:none;}
.sc0_c00142{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__c00142{-webkit-text-stroke:0px transparent;}
.sc0_c00142{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00142{word-spacing:0.000000px;}
.fc0_c00142{color:transparent;}
.fs3_c00142{font-size:60.000000px;}
.fs0_c00142{font-size:78.000000px;}
.fs4_c00142{font-size:84.000000px;}
.fs1_c00142{font-size:96.000000px;}
.fs2_c00142{font-size:318.000000px;}
.y0_c00142{bottom:0.000000px;}
.y22_c00142{bottom:296.664000px;}
.y21_c00142{bottom:341.089500px;}
.y1f_c00142{bottom:368.116500px;}
.y1e_c00142{bottom:368.728500px;}
.y1d_c00142{bottom:369.138000px;}
.y1c_c00142{bottom:369.348000px;}
.y1b_c00142{bottom:369.844500px;}
.y1a_c00142{bottom:369.963000px;}
.y19_c00142{bottom:370.392000px;}
.y18_c00142{bottom:370.771500px;}
.y17_c00142{bottom:370.954500px;}
.y16_c00142{bottom:371.241000px;}
.y15_c00142{bottom:372.019500px;}
.y14_c00142{bottom:372.061500px;}
.y13_c00142{bottom:400.219500px;}
.y12_c00142{bottom:400.912500px;}
.y11_c00142{bottom:401.313000px;}
.y10_c00142{bottom:401.653500px;}
.yf_c00142{bottom:402.034500px;}
.ye_c00142{bottom:402.838500px;}
.yd_c00142{bottom:403.071000px;}
.yc_c00142{bottom:403.806000px;}
.yb_c00142{bottom:467.551500px;}
.ya_c00142{bottom:468.700500px;}
.y9_c00142{bottom:469.020000px;}
.y8_c00142{bottom:471.225000px;}
.y7_c00142{bottom:472.080000px;}
.y6_c00142{bottom:472.834500px;}
.y5_c00142{bottom:474.817500px;}
.y4_c00142{bottom:476.395500px;}
.y3_c00142{bottom:477.765000px;}
.y2_c00142{bottom:478.711500px;}
.y1_c00142{bottom:538.596000px;}
.y20_c00142{bottom:631.260000px;}
.h5_c00142{height:60.000000px;}
.h2_c00142{height:78.000000px;}
.h6_c00142{height:84.000000px;}
.h3_c00142{height:96.000000px;}
.h4_c00142{height:318.000000px;}
.h0_c00142{height:698.220000px;}
.h1_c00142{height:698.250000px;}
.w1_c00142{width:945.750000px;}
.w0_c00142{width:946.050000px;}
.x0_c00142{left:0.000000px;}
.x17_c00142{left:1.489500px;}
.x18_c00142{left:9.982500px;}
.xf_c00142{left:28.711500px;}
.x26_c00142{left:67.500000px;}
.x6_c00142{left:78.795000px;}
.x22_c00142{left:81.810000px;}
.x27_c00142{left:122.310000px;}
.x23_c00142{left:162.270000px;}
.x19_c00142{left:165.664500px;}
.x1_c00142{left:170.910000px;}
.x24_c00142{left:190.620000px;}
.x7_c00142{left:192.948000px;}
.x10_c00142{left:212.578500px;}
.x25_c00142{left:215.460000px;}
.x1a_c00142{left:222.909000px;}
.x1b_c00142{left:259.623000px;}
.x11_c00142{left:270.627000px;}
.x8_c00142{left:324.486000px;}
.x2_c00142{left:332.640000px;}
.x1c_c00142{left:335.512500px;}
.x28_c00142{left:343.440000px;}
.x29_c00142{left:415.260000px;}
.x3_c00142{left:422.280000px;}
.x1d_c00142{left:445.146000px;}
.x2a_c00142{left:454.410000px;}
.x12_c00142{left:471.504000px;}
.x9_c00142{left:489.702000px;}
.x4_c00142{left:534.600000px;}
.x1e_c00142{left:544.465500px;}
.xa_c00142{left:552.583500px;}
.x13_c00142{left:566.812500px;}
.x1f_c00142{left:586.584000px;}
.x2b_c00142{left:622.620000px;}
.xb_c00142{left:623.866500px;}
.x14_c00142{left:651.793500px;}
.x20_c00142{left:668.446500px;}
.x15_c00142{left:751.887000px;}
.x21_c00142{left:790.959000px;}
.xc_c00142{left:807.589500px;}
.xd_c00142{left:834.264000px;}
.x5_c00142{left:841.590000px;}
.x16_c00142{left:925.234500px;}
.xe_c00142{left:929.964000px;}
@media print{
.v0_c00142{vertical-align:0.000000pt;}
.ls0_c00142{letter-spacing:0.000000pt;}
.ws0_c00142{word-spacing:0.000000pt;}
.fs3_c00142{font-size:53.333333pt;}
.fs0_c00142{font-size:69.333333pt;}
.fs4_c00142{font-size:74.666667pt;}
.fs1_c00142{font-size:85.333333pt;}
.fs2_c00142{font-size:282.666667pt;}
.y0_c00142{bottom:0.000000pt;}
.y22_c00142{bottom:263.701333pt;}
.y21_c00142{bottom:303.190667pt;}
.y1f_c00142{bottom:327.214667pt;}
.y1e_c00142{bottom:327.758667pt;}
.y1d_c00142{bottom:328.122667pt;}
.y1c_c00142{bottom:328.309333pt;}
.y1b_c00142{bottom:328.750667pt;}
.y1a_c00142{bottom:328.856000pt;}
.y19_c00142{bottom:329.237333pt;}
.y18_c00142{bottom:329.574667pt;}
.y17_c00142{bottom:329.737333pt;}
.y16_c00142{bottom:329.992000pt;}
.y15_c00142{bottom:330.684000pt;}
.y14_c00142{bottom:330.721333pt;}
.y13_c00142{bottom:355.750667pt;}
.y12_c00142{bottom:356.366667pt;}
.y11_c00142{bottom:356.722667pt;}
.y10_c00142{bottom:357.025333pt;}
.yf_c00142{bottom:357.364000pt;}
.ye_c00142{bottom:358.078667pt;}
.yd_c00142{bottom:358.285333pt;}
.yc_c00142{bottom:358.938667pt;}
.yb_c00142{bottom:415.601333pt;}
.ya_c00142{bottom:416.622667pt;}
.y9_c00142{bottom:416.906667pt;}
.y8_c00142{bottom:418.866667pt;}
.y7_c00142{bottom:419.626667pt;}
.y6_c00142{bottom:420.297333pt;}
.y5_c00142{bottom:422.060000pt;}
.y4_c00142{bottom:423.462667pt;}
.y3_c00142{bottom:424.680000pt;}
.y2_c00142{bottom:425.521333pt;}
.y1_c00142{bottom:478.752000pt;}
.y20_c00142{bottom:561.120000pt;}
.h5_c00142{height:53.333333pt;}
.h2_c00142{height:69.333333pt;}
.h6_c00142{height:74.666667pt;}
.h3_c00142{height:85.333333pt;}
.h4_c00142{height:282.666667pt;}
.h0_c00142{height:620.640000pt;}
.h1_c00142{height:620.666667pt;}
.w1_c00142{width:840.666667pt;}
.w0_c00142{width:840.933333pt;}
.x0_c00142{left:0.000000pt;}
.x17_c00142{left:1.324000pt;}
.x18_c00142{left:8.873333pt;}
.xf_c00142{left:25.521333pt;}
.x26_c00142{left:60.000000pt;}
.x6_c00142{left:70.040000pt;}
.x22_c00142{left:72.720000pt;}
.x27_c00142{left:108.720000pt;}
.x23_c00142{left:144.240000pt;}
.x19_c00142{left:147.257333pt;}
.x1_c00142{left:151.920000pt;}
.x24_c00142{left:169.440000pt;}
.x7_c00142{left:171.509333pt;}
.x10_c00142{left:188.958667pt;}
.x25_c00142{left:191.520000pt;}
.x1a_c00142{left:198.141333pt;}
.x1b_c00142{left:230.776000pt;}
.x11_c00142{left:240.557333pt;}
.x8_c00142{left:288.432000pt;}
.x2_c00142{left:295.680000pt;}
.x1c_c00142{left:298.233333pt;}
.x28_c00142{left:305.280000pt;}
.x29_c00142{left:369.120000pt;}
.x3_c00142{left:375.360000pt;}
.x1d_c00142{left:395.685333pt;}
.x2a_c00142{left:403.920000pt;}
.x12_c00142{left:419.114667pt;}
.x9_c00142{left:435.290667pt;}
.x4_c00142{left:475.200000pt;}
.x1e_c00142{left:483.969333pt;}
.xa_c00142{left:491.185333pt;}
.x13_c00142{left:503.833333pt;}
.x1f_c00142{left:521.408000pt;}
.x2b_c00142{left:553.440000pt;}
.xb_c00142{left:554.548000pt;}
.x14_c00142{left:579.372000pt;}
.x20_c00142{left:594.174667pt;}
.x15_c00142{left:668.344000pt;}
.x21_c00142{left:703.074667pt;}
.xc_c00142{left:717.857333pt;}
.xd_c00142{left:741.568000pt;}
.x5_c00142{left:748.080000pt;}
.x16_c00142{left:822.430667pt;}
.xe_c00142{left:826.634667pt;}
}





/* 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_c00143 {
    display:none;
  }
  .loading-indicator_c00143.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00143 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_c00143 { 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_c00143" -> "#page-container .classname_c00143")
 */
.pf_c00143 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00143 { /* 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_c00143.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00143 { /* 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_c00143 { /* 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_c00143 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00143 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00143 {overflow:visible;}
  }
}
.c_c00143 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00143 { /* 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_c00143:after { /* webkit #35443 */
  content: '';
}
.t_c00143:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00143 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 */
}
.__c00143 { /* 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_c00143 { /* info for Javascript */
  display:none;
}
.l_c00143 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00143 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00143 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00143: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_c00143 {
    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_c00143.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00143.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_c00143 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00143{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00143;src:url('chunks/assets/font_c605e72f209fc835e906f064.woff2')format("woff");}.ff1_c00143{font-family:ff1_c00143;line-height:1.000000;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;}
.m1b_c00143{transform:matrix(0.012226,-0.001881,0.038014,0.247093,0,0);-ms-transform:matrix(0.012226,-0.001881,0.038014,0.247093,0,0);-webkit-transform:matrix(0.012226,-0.001881,0.038014,0.247093,0,0);}
.ma_c00143{transform:matrix(0.035942,-0.002848,0.019748,0.249219,0,0);-ms-transform:matrix(0.035942,-0.002848,0.019748,0.249219,0,0);-webkit-transform:matrix(0.035942,-0.002848,0.019748,0.249219,0,0);}
.m1_c00143{transform:matrix(0.052869,-0.004189,0.019748,0.249219,0,0);-ms-transform:matrix(0.052869,-0.004189,0.019748,0.249219,0,0);-webkit-transform:matrix(0.052869,-0.004189,0.019748,0.249219,0,0);}
.m0_c00143{transform:matrix(0.079476,-0.006297,0.019748,0.249219,0,0);-ms-transform:matrix(0.079476,-0.006297,0.019748,0.249219,0,0);-webkit-transform:matrix(0.079476,-0.006297,0.019748,0.249219,0,0);}
.m12_c00143{transform:matrix(0.095427,-0.014681,0.038014,0.247093,0,0);-ms-transform:matrix(0.095427,-0.014681,0.038014,0.247093,0,0);-webkit-transform:matrix(0.095427,-0.014681,0.038014,0.247093,0,0);}
.m2f_c00143{transform:matrix(0.125978,-0.019381,0.038014,0.247093,0,0);-ms-transform:matrix(0.125978,-0.019381,0.038014,0.247093,0,0);-webkit-transform:matrix(0.125978,-0.019381,0.038014,0.247093,0,0);}
.m33_c00143{transform:matrix(0.139336,-0.021436,0.038014,0.247093,0,0);-ms-transform:matrix(0.139336,-0.021436,0.038014,0.247093,0,0);-webkit-transform:matrix(0.139336,-0.021436,0.038014,0.247093,0,0);}
.m2_c00143{transform:matrix(0.150693,-0.011941,0.019748,0.249219,0,0);-ms-transform:matrix(0.150693,-0.011941,0.019748,0.249219,0,0);-webkit-transform:matrix(0.150693,-0.011941,0.019748,0.249219,0,0);}
.md_c00143{transform:matrix(0.171828,-0.026435,0.038014,0.247093,0,0);-ms-transform:matrix(0.171828,-0.026435,0.038014,0.247093,0,0);-webkit-transform:matrix(0.171828,-0.026435,0.038014,0.247093,0,0);}
.m11_c00143{transform:matrix(0.207153,-0.031870,0.038014,0.247093,0,0);-ms-transform:matrix(0.207153,-0.031870,0.038014,0.247093,0,0);-webkit-transform:matrix(0.207153,-0.031870,0.038014,0.247093,0,0);}
.m10_c00143{transform:matrix(0.223303,-0.034354,0.038014,0.247093,0,0);-ms-transform:matrix(0.223303,-0.034354,0.038014,0.247093,0,0);-webkit-transform:matrix(0.223303,-0.034354,0.038014,0.247093,0,0);}
.m31_c00143{transform:matrix(0.249544,-0.038391,0.038014,0.247093,0,0);-ms-transform:matrix(0.249544,-0.038391,0.038014,0.247093,0,0);-webkit-transform:matrix(0.249544,-0.038391,0.038014,0.247093,0,0);}
.m2b_c00143{transform:matrix(0.253394,-0.038984,0.038014,0.247093,0,0);-ms-transform:matrix(0.253394,-0.038984,0.038014,0.247093,0,0);-webkit-transform:matrix(0.253394,-0.038984,0.038014,0.247093,0,0);}
.m21_c00143{transform:matrix(0.255568,-0.039318,0.038014,0.247093,0,0);-ms-transform:matrix(0.255568,-0.039318,0.038014,0.247093,0,0);-webkit-transform:matrix(0.255568,-0.039318,0.038014,0.247093,0,0);}
.m29_c00143{transform:matrix(0.258607,-0.039786,0.038014,0.247093,0,0);-ms-transform:matrix(0.258607,-0.039786,0.038014,0.247093,0,0);-webkit-transform:matrix(0.258607,-0.039786,0.038014,0.247093,0,0);}
.m2c_c00143{transform:matrix(0.264276,-0.040658,0.038014,0.247093,0,0);-ms-transform:matrix(0.264276,-0.040658,0.038014,0.247093,0,0);-webkit-transform:matrix(0.264276,-0.040658,0.038014,0.247093,0,0);}
.m2a_c00143{transform:matrix(0.313185,-0.048182,0.038014,0.247093,0,0);-ms-transform:matrix(0.313185,-0.048182,0.038014,0.247093,0,0);-webkit-transform:matrix(0.313185,-0.048182,0.038014,0.247093,0,0);}
.m2d_c00143{transform:matrix(0.346167,-0.053257,0.038014,0.247093,0,0);-ms-transform:matrix(0.346167,-0.053257,0.038014,0.247093,0,0);-webkit-transform:matrix(0.346167,-0.053257,0.038014,0.247093,0,0);}
.m16_c00143{transform:matrix(0.351282,-0.054043,0.038014,0.247093,0,0);-ms-transform:matrix(0.351282,-0.054043,0.038014,0.247093,0,0);-webkit-transform:matrix(0.351282,-0.054043,0.038014,0.247093,0,0);}
.m14_c00143{transform:matrix(0.364615,-0.056095,0.038014,0.247093,0,0);-ms-transform:matrix(0.364615,-0.056095,0.038014,0.247093,0,0);-webkit-transform:matrix(0.364615,-0.056095,0.038014,0.247093,0,0);}
.m8_c00143{transform:matrix(0.372831,-0.029542,0.019748,0.249219,0,0);-ms-transform:matrix(0.372831,-0.029542,0.019748,0.249219,0,0);-webkit-transform:matrix(0.372831,-0.029542,0.019748,0.249219,0,0);}
.m28_c00143{transform:matrix(0.385351,-0.059285,0.038014,0.247093,0,0);-ms-transform:matrix(0.385351,-0.059285,0.038014,0.247093,0,0);-webkit-transform:matrix(0.385351,-0.059285,0.038014,0.247093,0,0);}
.m1f_c00143{transform:matrix(0.389507,-0.059924,0.038014,0.247093,0,0);-ms-transform:matrix(0.389507,-0.059924,0.038014,0.247093,0,0);-webkit-transform:matrix(0.389507,-0.059924,0.038014,0.247093,0,0);}
.mb_c00143{transform:matrix(0.429487,-0.066075,0.038014,0.247093,0,0);-ms-transform:matrix(0.429487,-0.066075,0.038014,0.247093,0,0);-webkit-transform:matrix(0.429487,-0.066075,0.038014,0.247093,0,0);}
.me_c00143{transform:matrix(0.450095,-0.069245,0.038014,0.247093,0,0);-ms-transform:matrix(0.450095,-0.069245,0.038014,0.247093,0,0);-webkit-transform:matrix(0.450095,-0.069245,0.038014,0.247093,0,0);}
.m13_c00143{transform:matrix(0.452640,-0.069637,0.038014,0.247093,0,0);-ms-transform:matrix(0.452640,-0.069637,0.038014,0.247093,0,0);-webkit-transform:matrix(0.452640,-0.069637,0.038014,0.247093,0,0);}
.mf_c00143{transform:matrix(0.468137,-0.072021,0.038014,0.247093,0,0);-ms-transform:matrix(0.468137,-0.072021,0.038014,0.247093,0,0);-webkit-transform:matrix(0.468137,-0.072021,0.038014,0.247093,0,0);}
.m27_c00143{transform:matrix(0.484584,-0.074551,0.038014,0.247093,0,0);-ms-transform:matrix(0.484584,-0.074551,0.038014,0.247093,0,0);-webkit-transform:matrix(0.484584,-0.074551,0.038014,0.247093,0,0);}
.m4_c00143{transform:matrix(0.486371,-0.038539,0.019748,0.249219,0,0);-ms-transform:matrix(0.486371,-0.038539,0.019748,0.249219,0,0);-webkit-transform:matrix(0.486371,-0.038539,0.019748,0.249219,0,0);}
.m34_c00143{transform:matrix(0.495075,-0.076165,0.038014,0.247093,0,0);-ms-transform:matrix(0.495075,-0.076165,0.038014,0.247093,0,0);-webkit-transform:matrix(0.495075,-0.076165,0.038014,0.247093,0,0);}
.m18_c00143{transform:matrix(0.512021,-0.078772,0.038014,0.247093,0,0);-ms-transform:matrix(0.512021,-0.078772,0.038014,0.247093,0,0);-webkit-transform:matrix(0.512021,-0.078772,0.038014,0.247093,0,0);}
.m23_c00143{transform:matrix(0.519641,-0.079945,0.038014,0.247093,0,0);-ms-transform:matrix(0.519641,-0.079945,0.038014,0.247093,0,0);-webkit-transform:matrix(0.519641,-0.079945,0.038014,0.247093,0,0);}
.m26_c00143{transform:matrix(0.527692,-0.081183,0.038014,0.247093,0,0);-ms-transform:matrix(0.527692,-0.081183,0.038014,0.247093,0,0);-webkit-transform:matrix(0.527692,-0.081183,0.038014,0.247093,0,0);}
.m20_c00143{transform:matrix(0.546693,-0.084107,0.038014,0.247093,0,0);-ms-transform:matrix(0.546693,-0.084107,0.038014,0.247093,0,0);-webkit-transform:matrix(0.546693,-0.084107,0.038014,0.247093,0,0);}
.m7_c00143{transform:matrix(0.551466,-0.043697,0.019748,0.249219,0,0);-ms-transform:matrix(0.551466,-0.043697,0.019748,0.249219,0,0);-webkit-transform:matrix(0.551466,-0.043697,0.019748,0.249219,0,0);}
.m24_c00143{transform:matrix(0.553454,-0.085147,0.038014,0.247093,0,0);-ms-transform:matrix(0.553454,-0.085147,0.038014,0.247093,0,0);-webkit-transform:matrix(0.553454,-0.085147,0.038014,0.247093,0,0);}
.m17_c00143{transform:matrix(0.583312,-0.089740,0.038014,0.247093,0,0);-ms-transform:matrix(0.583312,-0.089740,0.038014,0.247093,0,0);-webkit-transform:matrix(0.583312,-0.089740,0.038014,0.247093,0,0);}
.m30_c00143{transform:matrix(0.608338,-0.093590,0.038014,0.247093,0,0);-ms-transform:matrix(0.608338,-0.093590,0.038014,0.247093,0,0);-webkit-transform:matrix(0.608338,-0.093590,0.038014,0.247093,0,0);}
.m25_c00143{transform:matrix(0.631451,-0.097146,0.038014,0.247093,0,0);-ms-transform:matrix(0.631451,-0.097146,0.038014,0.247093,0,0);-webkit-transform:matrix(0.631451,-0.097146,0.038014,0.247093,0,0);}
.mc_c00143{transform:matrix(0.776840,-0.119514,0.038014,0.247093,0,0);-ms-transform:matrix(0.776840,-0.119514,0.038014,0.247093,0,0);-webkit-transform:matrix(0.776840,-0.119514,0.038014,0.247093,0,0);}
.m1d_c00143{transform:matrix(0.785074,-0.120781,0.038014,0.247093,0,0);-ms-transform:matrix(0.785074,-0.120781,0.038014,0.247093,0,0);-webkit-transform:matrix(0.785074,-0.120781,0.038014,0.247093,0,0);}
.m3_c00143{transform:matrix(0.875506,-0.069373,0.019748,0.249219,0,0);-ms-transform:matrix(0.875506,-0.069373,0.019748,0.249219,0,0);-webkit-transform:matrix(0.875506,-0.069373,0.019748,0.249219,0,0);}
.m1c_c00143{transform:matrix(0.976823,-0.150280,0.038014,0.247093,0,0);-ms-transform:matrix(0.976823,-0.150280,0.038014,0.247093,0,0);-webkit-transform:matrix(0.976823,-0.150280,0.038014,0.247093,0,0);}
.m19_c00143{transform:matrix(1.002328,-0.154204,0.038014,0.247093,0,0);-ms-transform:matrix(1.002328,-0.154204,0.038014,0.247093,0,0);-webkit-transform:matrix(1.002328,-0.154204,0.038014,0.247093,0,0);}
.m1a_c00143{transform:matrix(1.008940,-0.155221,0.038014,0.247093,0,0);-ms-transform:matrix(1.008940,-0.155221,0.038014,0.247093,0,0);-webkit-transform:matrix(1.008940,-0.155221,0.038014,0.247093,0,0);}
.m5_c00143{transform:matrix(1.118514,-0.088629,0.019748,0.249219,0,0);-ms-transform:matrix(1.118514,-0.088629,0.019748,0.249219,0,0);-webkit-transform:matrix(1.118514,-0.088629,0.019748,0.249219,0,0);}
.m9_c00143{transform:matrix(1.171937,-0.092862,0.019748,0.249219,0,0);-ms-transform:matrix(1.171937,-0.092862,0.019748,0.249219,0,0);-webkit-transform:matrix(1.171937,-0.092862,0.019748,0.249219,0,0);}
.m6_c00143{transform:matrix(1.231340,-0.097569,0.019748,0.249219,0,0);-ms-transform:matrix(1.231340,-0.097569,0.019748,0.249219,0,0);-webkit-transform:matrix(1.231340,-0.097569,0.019748,0.249219,0,0);}
.m2e_c00143{transform:matrix(1.297742,-0.199653,0.038014,0.247093,0,0);-ms-transform:matrix(1.297742,-0.199653,0.038014,0.247093,0,0);-webkit-transform:matrix(1.297742,-0.199653,0.038014,0.247093,0,0);}
.m15_c00143{transform:matrix(1.529649,-0.235331,0.038014,0.247093,0,0);-ms-transform:matrix(1.529649,-0.235331,0.038014,0.247093,0,0);-webkit-transform:matrix(1.529649,-0.235331,0.038014,0.247093,0,0);}
.m1e_c00143{transform:matrix(1.862848,-0.286592,0.038014,0.247093,0,0);-ms-transform:matrix(1.862848,-0.286592,0.038014,0.247093,0,0);-webkit-transform:matrix(1.862848,-0.286592,0.038014,0.247093,0,0);}
.m32_c00143{transform:matrix(2.064234,-0.317574,0.038014,0.247093,0,0);-ms-transform:matrix(2.064234,-0.317574,0.038014,0.247093,0,0);-webkit-transform:matrix(2.064234,-0.317574,0.038014,0.247093,0,0);}
.m22_c00143{transform:matrix(4.128221,-0.635111,0.038014,0.247093,0,0);-ms-transform:matrix(4.128221,-0.635111,0.038014,0.247093,0,0);-webkit-transform:matrix(4.128221,-0.635111,0.038014,0.247093,0,0);}
.v0_c00143{vertical-align:0.000000px;}
.ls0_c00143{letter-spacing:0.000000px;}
.sc__c00143{text-shadow:none;}
.sc0_c00143{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__c00143{-webkit-text-stroke:0px transparent;}
.sc0_c00143{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00143{word-spacing:0.000000px;}
.fc0_c00143{color:transparent;}
.fs0_c00143{font-size:36.004500px;}
.fs1_c00143{font-size:54.006750px;}
.fs3_c00143{font-size:65.975179px;}
.fs6_c00143{font-size:71.972923px;}
.fs7_c00143{font-size:83.968410px;}
.fs5_c00143{font-size:89.966154px;}
.fs4_c00143{font-size:119.954872px;}
.fs8_c00143{font-size:125.952615px;}
.fs2_c00143{font-size:323.878153px;}
.y0_c00143{bottom:0.000000px;}
.y2d_c00143{bottom:70.005816px;}
.y2e_c00143{bottom:73.380900px;}
.y2f_c00143{bottom:79.561638px;}
.y29_c00143{bottom:79.906944px;}
.y23_c00143{bottom:80.192856px;}
.y2a_c00143{bottom:91.124316px;}
.y30_c00143{bottom:96.970692px;}
.y31_c00143{bottom:101.276700px;}
.y32_c00143{bottom:120.455604px;}
.y33_c00143{bottom:125.038518px;}
.y2b_c00143{bottom:125.280768px;}
.y24_c00143{bottom:140.211348px;}
.y25_c00143{bottom:150.345492px;}
.y34_c00143{bottom:152.687850px;}
.y35_c00143{bottom:155.258436px;}
.y2c_c00143{bottom:156.320460px;}
.y26_c00143{bottom:161.888220px;}
.y1d_c00143{bottom:174.326190px;}
.y27_c00143{bottom:178.974882px;}
.y28_c00143{bottom:185.365722px;}
.y1e_c00143{bottom:202.388088px;}
.y1f_c00143{bottom:209.585592px;}
.y1b_c00143{bottom:221.788494px;}
.y15_c00143{bottom:254.606928px;}
.y20_c00143{bottom:262.102770px;}
.y16_c00143{bottom:262.911942px;}
.y21_c00143{bottom:269.059278px;}
.y17_c00143{bottom:282.647964px;}
.y22_c00143{bottom:289.546902px;}
.y18_c00143{bottom:294.914136px;}
.yf_c00143{bottom:295.398180px;}
.yc_c00143{bottom:300.457500px;}
.y19_c00143{bottom:310.937064px;}
.y10_c00143{bottom:319.484328px;}
.yd_c00143{bottom:322.626624px;}
.y11_c00143{bottom:327.983940px;}
.y1a_c00143{bottom:329.051208px;}
.y12_c00143{bottom:333.389250px;}
.y1c_c00143{bottom:345.484878px;}
.y13_c00143{bottom:351.774828px;}
.ye_c00143{bottom:354.037044px;}
.y14_c00143{bottom:354.278724px;}
.y8_c00143{bottom:557.305425px;}
.y9_c00143{bottom:564.541803px;}
.ya_c00143{bottom:569.100429px;}
.yb_c00143{bottom:580.638471px;}
.y1_c00143{bottom:590.772000px;}
.y2_c00143{bottom:592.264863px;}
.y3_c00143{bottom:593.111664px;}
.y4_c00143{bottom:593.518475px;}
.y5_c00143{bottom:596.849628px;}
.y6_c00143{bottom:599.706189px;}
.y7_c00143{bottom:602.920383px;}
.h2_c00143{height:36.004500px;}
.h3_c00143{height:54.006750px;}
.h5_c00143{height:65.975179px;}
.h8_c00143{height:71.972923px;}
.h9_c00143{height:83.968410px;}
.h7_c00143{height:89.966154px;}
.h6_c00143{height:119.954872px;}
.ha_c00143{height:125.952615px;}
.h4_c00143{height:323.878153px;}
.h0_c00143{height:698.220000px;}
.h1_c00143{height:698.250000px;}
.w1_c00143{width:945.750000px;}
.w0_c00143{width:946.050000px;}
.x0_c00143{left:0.000000px;}
.xb_c00143{left:23.805000px;}
.x14_c00143{left:26.181786px;}
.xe_c00143{left:40.046922px;}
.x15_c00143{left:91.139670px;}
.x1a_c00143{left:106.157688px;}
.xc_c00143{left:167.904306px;}
.xf_c00143{left:200.787948px;}
.x23_c00143{left:212.045334px;}
.x16_c00143{left:245.506158px;}
.x10_c00143{left:257.514576px;}
.x24_c00143{left:287.916552px;}
.x11_c00143{left:293.585886px;}
.x17_c00143{left:341.447760px;}
.x1c_c00143{left:344.862744px;}
.x27_c00143{left:368.258850px;}
.xd_c00143{left:372.072036px;}
.x1d_c00143{left:390.463200px;}
.x1f_c00143{left:410.491974px;}
.x12_c00143{left:416.277246px;}
.x28_c00143{left:428.803794px;}
.x13_c00143{left:432.986454px;}
.x18_c00143{left:466.778220px;}
.x20_c00143{left:475.515864px;}
.x25_c00143{left:518.946444px;}
.x29_c00143{left:539.093094px;}
.x21_c00143{left:549.577218px;}
.x2a_c00143{left:566.372154px;}
.x19_c00143{left:608.462664px;}
.x22_c00143{left:659.210676px;}
.x1_c00143{left:681.088500px;}
.x2b_c00143{left:687.879510px;}
.x2_c00143{left:699.928809px;}
.x3_c00143{left:710.615652px;}
.x4_c00143{left:715.749704px;}
.x2c_c00143{left:716.909154px;}
.x1e_c00143{left:723.176760px;}
.x26_c00143{left:728.889072px;}
.x5_c00143{left:757.789704px;}
.x8_c00143{left:768.167604px;}
.x6_c00143{left:793.840227px;}
.x9_c00143{left:804.864297px;}
.x7_c00143{left:834.404169px;}
.x1b_c00143{left:889.811358px;}
.x2d_c00143{left:892.074030px;}
.xa_c00143{left:897.736278px;}
.x2e_c00143{left:908.358816px;}
@media print{
.v0_c00143{vertical-align:0.000000pt;}
.ls0_c00143{letter-spacing:0.000000pt;}
.ws0_c00143{word-spacing:0.000000pt;}
.fs0_c00143{font-size:32.004000pt;}
.fs1_c00143{font-size:48.006000pt;}
.fs3_c00143{font-size:58.644604pt;}
.fs6_c00143{font-size:63.975931pt;}
.fs7_c00143{font-size:74.638587pt;}
.fs5_c00143{font-size:79.969914pt;}
.fs4_c00143{font-size:106.626552pt;}
.fs8_c00143{font-size:111.957880pt;}
.fs2_c00143{font-size:287.891692pt;}
.y0_c00143{bottom:0.000000pt;}
.y2d_c00143{bottom:62.227392pt;}
.y2e_c00143{bottom:65.227467pt;}
.y2f_c00143{bottom:70.721456pt;}
.y29_c00143{bottom:71.028395pt;}
.y23_c00143{bottom:71.282539pt;}
.y2a_c00143{bottom:80.999392pt;}
.y30_c00143{bottom:86.196171pt;}
.y31_c00143{bottom:90.023733pt;}
.y32_c00143{bottom:107.071648pt;}
.y33_c00143{bottom:111.145349pt;}
.y2b_c00143{bottom:111.360683pt;}
.y24_c00143{bottom:124.632309pt;}
.y25_c00143{bottom:133.640437pt;}
.y34_c00143{bottom:135.722533pt;}
.y35_c00143{bottom:138.007499pt;}
.y2c_c00143{bottom:138.951520pt;}
.y26_c00143{bottom:143.900640pt;}
.y1d_c00143{bottom:154.956613pt;}
.y27_c00143{bottom:159.088784pt;}
.y28_c00143{bottom:164.769531pt;}
.y1e_c00143{bottom:179.900523pt;}
.y1f_c00143{bottom:186.298304pt;}
.y1b_c00143{bottom:197.145328pt;}
.y15_c00143{bottom:226.317269pt;}
.y20_c00143{bottom:232.980240pt;}
.y16_c00143{bottom:233.699504pt;}
.y21_c00143{bottom:239.163803pt;}
.y17_c00143{bottom:251.242635pt;}
.y22_c00143{bottom:257.375024pt;}
.y18_c00143{bottom:262.145899pt;}
.yf_c00143{bottom:262.576160pt;}
.yc_c00143{bottom:267.073333pt;}
.y19_c00143{bottom:276.388501pt;}
.y10_c00143{bottom:283.986069pt;}
.yd_c00143{bottom:286.779221pt;}
.y11_c00143{bottom:291.541280pt;}
.y1a_c00143{bottom:292.489963pt;}
.y12_c00143{bottom:296.346000pt;}
.y1c_c00143{bottom:307.097669pt;}
.y13_c00143{bottom:312.688736pt;}
.ye_c00143{bottom:314.699595pt;}
.y14_c00143{bottom:314.914421pt;}
.y8_c00143{bottom:495.382600pt;}
.y9_c00143{bottom:501.814936pt;}
.ya_c00143{bottom:505.867048pt;}
.yb_c00143{bottom:516.123085pt;}
.y1_c00143{bottom:525.130667pt;}
.y2_c00143{bottom:526.457656pt;}
.y3_c00143{bottom:527.210368pt;}
.y4_c00143{bottom:527.571977pt;}
.y5_c00143{bottom:530.533003pt;}
.y6_c00143{bottom:533.072168pt;}
.y7_c00143{bottom:535.929229pt;}
.h2_c00143{height:32.004000pt;}
.h3_c00143{height:48.006000pt;}
.h5_c00143{height:58.644604pt;}
.h8_c00143{height:63.975931pt;}
.h9_c00143{height:74.638587pt;}
.h7_c00143{height:79.969914pt;}
.h6_c00143{height:106.626552pt;}
.ha_c00143{height:111.957880pt;}
.h4_c00143{height:287.891692pt;}
.h0_c00143{height:620.640000pt;}
.h1_c00143{height:620.666667pt;}
.w1_c00143{width:840.666667pt;}
.w0_c00143{width:840.933333pt;}
.x0_c00143{left:0.000000pt;}
.xb_c00143{left:21.160000pt;}
.x14_c00143{left:23.272699pt;}
.xe_c00143{left:35.597264pt;}
.x15_c00143{left:81.013040pt;}
.x1a_c00143{left:94.362389pt;}
.xc_c00143{left:149.248272pt;}
.xf_c00143{left:178.478176pt;}
.x23_c00143{left:188.484741pt;}
.x16_c00143{left:218.227696pt;}
.x10_c00143{left:228.901845pt;}
.x24_c00143{left:255.925824pt;}
.x11_c00143{left:260.965232pt;}
.x17_c00143{left:303.509120pt;}
.x1c_c00143{left:306.544661pt;}
.x27_c00143{left:327.341200pt;}
.xd_c00143{left:330.730699pt;}
.x1d_c00143{left:347.078400pt;}
.x1f_c00143{left:364.881755pt;}
.x12_c00143{left:370.024219pt;}
.x28_c00143{left:381.158928pt;}
.x13_c00143{left:384.876848pt;}
.x18_c00143{left:414.913973pt;}
.x20_c00143{left:422.680768pt;}
.x25_c00143{left:461.285728pt;}
.x29_c00143{left:479.193861pt;}
.x21_c00143{left:488.513083pt;}
.x2a_c00143{left:503.441915pt;}
.x19_c00143{left:540.855701pt;}
.x22_c00143{left:585.965045pt;}
.x1_c00143{left:605.412000pt;}
.x2b_c00143{left:611.448453pt;}
.x2_c00143{left:622.158941pt;}
.x3_c00143{left:631.658357pt;}
.x4_c00143{left:636.221959pt;}
.x2c_c00143{left:637.252581pt;}
.x1e_c00143{left:642.823787pt;}
.x26_c00143{left:647.901397pt;}
.x5_c00143{left:673.590848pt;}
.x8_c00143{left:682.815648pt;}
.x6_c00143{left:705.635757pt;}
.x9_c00143{left:715.434931pt;}
.x7_c00143{left:741.692595pt;}
.x1b_c00143{left:790.943429pt;}
.x2d_c00143{left:792.954693pt;}
.xa_c00143{left:797.987803pt;}
.x2e_c00143{left:807.430059pt;}
}





/* 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_c00144 {
    display:none;
  }
  .loading-indicator_c00144.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00144 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_c00144 { 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_c00144" -> "#page-container .classname_c00144")
 */
.pf_c00144 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00144 { /* 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_c00144.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00144 { /* 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_c00144 { /* 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_c00144 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00144 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00144 {overflow:visible;}
  }
}
.c_c00144 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00144 { /* 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_c00144:after { /* webkit #35443 */
  content: '';
}
.t_c00144:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00144 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 */
}
.__c00144 { /* 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_c00144 { /* info for Javascript */
  display:none;
}
.l_c00144 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00144 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00144 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00144: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_c00144 {
    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_c00144.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00144.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_c00144 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00144{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00144;src:url('chunks/assets/font_7c6b9abe6ee2a268480c528b.woff2')format("woff");}.ff1_c00144{font-family:ff1_c00144;line-height:1.000000;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;}
.m49_c00144{transform:matrix(0.006363,-0.000165,0.006498,0.249916,0,0);-ms-transform:matrix(0.006363,-0.000165,0.006498,0.249916,0,0);-webkit-transform:matrix(0.006363,-0.000165,0.006498,0.249916,0,0);}
.m33_c00144{transform:matrix(0.015721,-0.000362,0.005748,0.249934,0,0);-ms-transform:matrix(0.015721,-0.000362,0.005748,0.249934,0,0);-webkit-transform:matrix(0.015721,-0.000362,0.005748,0.249934,0,0);}
.me_c00144{transform:matrix(0.031812,-0.000732,0.005748,0.249934,0,0);-ms-transform:matrix(0.031812,-0.000732,0.005748,0.249934,0,0);-webkit-transform:matrix(0.031812,-0.000732,0.005748,0.249934,0,0);}
.m1b_c00144{transform:matrix(0.067717,-0.001557,0.005748,0.249934,0,0);-ms-transform:matrix(0.067717,-0.001557,0.005748,0.249934,0,0);-webkit-transform:matrix(0.067717,-0.001557,0.005748,0.249934,0,0);}
.m15_c00144{transform:matrix(0.081104,-0.001865,0.005748,0.249934,0,0);-ms-transform:matrix(0.081104,-0.001865,0.005748,0.249934,0,0);-webkit-transform:matrix(0.081104,-0.001865,0.005748,0.249934,0,0);}
.m1a_c00144{transform:matrix(0.135434,-0.003115,0.005748,0.249934,0,0);-ms-transform:matrix(0.135434,-0.003115,0.005748,0.249934,0,0);-webkit-transform:matrix(0.135434,-0.003115,0.005748,0.249934,0,0);}
.m41_c00144{transform:matrix(0.146366,-0.003806,0.006498,0.249916,0,0);-ms-transform:matrix(0.146366,-0.003806,0.006498,0.249916,0,0);-webkit-transform:matrix(0.146366,-0.003806,0.006498,0.249916,0,0);}
.m3f_c00144{transform:matrix(0.165919,-0.004314,0.006498,0.249916,0,0);-ms-transform:matrix(0.165919,-0.004314,0.006498,0.249916,0,0);-webkit-transform:matrix(0.165919,-0.004314,0.006498,0.249916,0,0);}
.m44_c00144{transform:matrix(0.169893,-0.004417,0.006498,0.249916,0,0);-ms-transform:matrix(0.169893,-0.004417,0.006498,0.249916,0,0);-webkit-transform:matrix(0.169893,-0.004417,0.006498,0.249916,0,0);}
.m4_c00144{transform:matrix(0.181967,-0.004185,0.005748,0.249934,0,0);-ms-transform:matrix(0.181967,-0.004185,0.005748,0.249934,0,0);-webkit-transform:matrix(0.181967,-0.004185,0.005748,0.249934,0,0);}
.m2e_c00144{transform:matrix(0.185161,-0.004259,0.005748,0.249934,0,0);-ms-transform:matrix(0.185161,-0.004259,0.005748,0.249934,0,0);-webkit-transform:matrix(0.185161,-0.004259,0.005748,0.249934,0,0);}
.m1d_c00144{transform:matrix(0.189725,-0.004364,0.005748,0.249934,0,0);-ms-transform:matrix(0.189725,-0.004364,0.005748,0.249934,0,0);-webkit-transform:matrix(0.189725,-0.004364,0.005748,0.249934,0,0);}
.m30_c00144{transform:matrix(0.192714,-0.004432,0.005748,0.249934,0,0);-ms-transform:matrix(0.192714,-0.004432,0.005748,0.249934,0,0);-webkit-transform:matrix(0.192714,-0.004432,0.005748,0.249934,0,0);}
.m31_c00144{transform:matrix(0.197918,-0.004552,0.005748,0.249934,0,0);-ms-transform:matrix(0.197918,-0.004552,0.005748,0.249934,0,0);-webkit-transform:matrix(0.197918,-0.004552,0.005748,0.249934,0,0);}
.m4a_c00144{transform:matrix(0.209824,-0.005455,0.006498,0.249916,0,0);-ms-transform:matrix(0.209824,-0.005455,0.006498,0.249916,0,0);-webkit-transform:matrix(0.209824,-0.005455,0.006498,0.249916,0,0);}
.m43_c00144{transform:matrix(0.220296,-0.005728,0.006498,0.249916,0,0);-ms-transform:matrix(0.220296,-0.005728,0.006498,0.249916,0,0);-webkit-transform:matrix(0.220296,-0.005728,0.006498,0.249916,0,0);}
.m2_c00144{transform:matrix(0.222205,-0.005777,0.006498,0.249916,0,0);-ms-transform:matrix(0.222205,-0.005777,0.006498,0.249916,0,0);-webkit-transform:matrix(0.222205,-0.005777,0.006498,0.249916,0,0);}
.m19_c00144{transform:matrix(0.228415,-0.005254,0.005748,0.249934,0,0);-ms-transform:matrix(0.228415,-0.005254,0.005748,0.249934,0,0);-webkit-transform:matrix(0.228415,-0.005254,0.005748,0.249934,0,0);}
.mf_c00144{transform:matrix(0.239587,-0.005510,0.005748,0.249934,0,0);-ms-transform:matrix(0.239587,-0.005510,0.005748,0.249934,0,0);-webkit-transform:matrix(0.239587,-0.005510,0.005748,0.249934,0,0);}
.m13_c00144{transform:matrix(0.248454,-0.005714,0.005748,0.249934,0,0);-ms-transform:matrix(0.248454,-0.005714,0.005748,0.249934,0,0);-webkit-transform:matrix(0.248454,-0.005714,0.005748,0.249934,0,0);}
.m1c_c00144{transform:matrix(0.261121,-0.006006,0.005748,0.249934,0,0);-ms-transform:matrix(0.261121,-0.006006,0.005748,0.249934,0,0);-webkit-transform:matrix(0.261121,-0.006006,0.005748,0.249934,0,0);}
.m32_c00144{transform:matrix(0.275127,-0.006328,0.005748,0.249934,0,0);-ms-transform:matrix(0.275127,-0.006328,0.005748,0.249934,0,0);-webkit-transform:matrix(0.275127,-0.006328,0.005748,0.249934,0,0);}
.m27_c00144{transform:matrix(0.275922,-0.006346,0.005748,0.249934,0,0);-ms-transform:matrix(0.275922,-0.006346,0.005748,0.249934,0,0);-webkit-transform:matrix(0.275922,-0.006346,0.005748,0.249934,0,0);}
.m25_c00144{transform:matrix(0.279496,-0.006428,0.005748,0.249934,0,0);-ms-transform:matrix(0.279496,-0.006428,0.005748,0.249934,0,0);-webkit-transform:matrix(0.279496,-0.006428,0.005748,0.249934,0,0);}
.m1e_c00144{transform:matrix(0.285210,-0.006560,0.005748,0.249934,0,0);-ms-transform:matrix(0.285210,-0.006560,0.005748,0.249934,0,0);-webkit-transform:matrix(0.285210,-0.006560,0.005748,0.249934,0,0);}
.m2b_c00144{transform:matrix(0.302550,-0.006959,0.005748,0.249934,0,0);-ms-transform:matrix(0.302550,-0.006959,0.005748,0.249934,0,0);-webkit-transform:matrix(0.302550,-0.006959,0.005748,0.249934,0,0);}
.m18_c00144{transform:matrix(0.309753,-0.007124,0.005748,0.249934,0,0);-ms-transform:matrix(0.309753,-0.007124,0.005748,0.249934,0,0);-webkit-transform:matrix(0.309753,-0.007124,0.005748,0.249934,0,0);}
.m42_c00144{transform:matrix(0.319897,-0.008317,0.006498,0.249916,0,0);-ms-transform:matrix(0.319897,-0.008317,0.006498,0.249916,0,0);-webkit-transform:matrix(0.319897,-0.008317,0.006498,0.249916,0,0);}
.m4c_c00144{transform:matrix(0.325645,-0.008467,0.006498,0.249916,0,0);-ms-transform:matrix(0.325645,-0.008467,0.006498,0.249916,0,0);-webkit-transform:matrix(0.325645,-0.008467,0.006498,0.249916,0,0);}
.m38_c00144{transform:matrix(0.326633,-0.005553,0.004249,0.249964,0,0);-ms-transform:matrix(0.326633,-0.005553,0.004249,0.249964,0,0);-webkit-transform:matrix(0.326633,-0.005553,0.004249,0.249964,0,0);}
.m20_c00144{transform:matrix(0.328348,-0.007552,0.005748,0.249934,0,0);-ms-transform:matrix(0.328348,-0.007552,0.005748,0.249934,0,0);-webkit-transform:matrix(0.328348,-0.007552,0.005748,0.249934,0,0);}
.m2d_c00144{transform:matrix(0.330033,-0.007591,0.005748,0.249934,0,0);-ms-transform:matrix(0.330033,-0.007591,0.005748,0.249934,0,0);-webkit-transform:matrix(0.330033,-0.007591,0.005748,0.249934,0,0);}
.m47_c00144{transform:matrix(0.337821,-0.008783,0.006498,0.249916,0,0);-ms-transform:matrix(0.337821,-0.008783,0.006498,0.249916,0,0);-webkit-transform:matrix(0.337821,-0.008783,0.006498,0.249916,0,0);}
.m4b_c00144{transform:matrix(0.344069,-0.008946,0.006498,0.249916,0,0);-ms-transform:matrix(0.344069,-0.008946,0.006498,0.249916,0,0);-webkit-transform:matrix(0.344069,-0.008946,0.006498,0.249916,0,0);}
.m34_c00144{transform:matrix(0.345179,-0.007939,0.005748,0.249934,0,0);-ms-transform:matrix(0.345179,-0.007939,0.005748,0.249934,0,0);-webkit-transform:matrix(0.345179,-0.007939,0.005748,0.249934,0,0);}
.m45_c00144{transform:matrix(0.355155,-0.009234,0.006498,0.249916,0,0);-ms-transform:matrix(0.355155,-0.009234,0.006498,0.249916,0,0);-webkit-transform:matrix(0.355155,-0.009234,0.006498,0.249916,0,0);}
.m23_c00144{transform:matrix(0.374156,-0.008606,0.005748,0.249934,0,0);-ms-transform:matrix(0.374156,-0.008606,0.005748,0.249934,0,0);-webkit-transform:matrix(0.374156,-0.008606,0.005748,0.249934,0,0);}
.m2c_c00144{transform:matrix(0.374556,-0.008615,0.005748,0.249934,0,0);-ms-transform:matrix(0.374556,-0.008615,0.005748,0.249934,0,0);-webkit-transform:matrix(0.374556,-0.008615,0.005748,0.249934,0,0);}
.m17_c00144{transform:matrix(0.384378,-0.008841,0.005748,0.249934,0,0);-ms-transform:matrix(0.384378,-0.008841,0.005748,0.249934,0,0);-webkit-transform:matrix(0.384378,-0.008841,0.005748,0.249934,0,0);}
.m21_c00144{transform:matrix(0.396175,-0.009112,0.005748,0.249934,0,0);-ms-transform:matrix(0.396175,-0.009112,0.005748,0.249934,0,0);-webkit-transform:matrix(0.396175,-0.009112,0.005748,0.249934,0,0);}
.m24_c00144{transform:matrix(0.396520,-0.009120,0.005748,0.249934,0,0);-ms-transform:matrix(0.396520,-0.009120,0.005748,0.249934,0,0);-webkit-transform:matrix(0.396520,-0.009120,0.005748,0.249934,0,0);}
.m11_c00144{transform:matrix(0.410556,-0.009443,0.005748,0.249934,0,0);-ms-transform:matrix(0.410556,-0.009443,0.005748,0.249934,0,0);-webkit-transform:matrix(0.410556,-0.009443,0.005748,0.249934,0,0);}
.m3e_c00144{transform:matrix(0.419655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419655,0.000000,0.000000,0.250000,0,0);}
.m14_c00144{transform:matrix(0.425642,-0.009790,0.005748,0.249934,0,0);-ms-transform:matrix(0.425642,-0.009790,0.005748,0.249934,0,0);-webkit-transform:matrix(0.425642,-0.009790,0.005748,0.249934,0,0);}
.m10_c00144{transform:matrix(0.451441,-0.010383,0.005748,0.249934,0,0);-ms-transform:matrix(0.451441,-0.010383,0.005748,0.249934,0,0);-webkit-transform:matrix(0.451441,-0.010383,0.005748,0.249934,0,0);}
.m37_c00144{transform:matrix(0.464293,-0.007893,0.004249,0.249964,0,0);-ms-transform:matrix(0.464293,-0.007893,0.004249,0.249964,0,0);-webkit-transform:matrix(0.464293,-0.007893,0.004249,0.249964,0,0);}
.m1f_c00144{transform:matrix(0.468206,-0.010769,0.005748,0.249934,0,0);-ms-transform:matrix(0.468206,-0.010769,0.005748,0.249934,0,0);-webkit-transform:matrix(0.468206,-0.010769,0.005748,0.249934,0,0);}
.m36_c00144{transform:matrix(0.476286,-0.008097,0.004249,0.249964,0,0);-ms-transform:matrix(0.476286,-0.008097,0.004249,0.249964,0,0);-webkit-transform:matrix(0.476286,-0.008097,0.004249,0.249964,0,0);}
.m3c_c00144{transform:matrix(0.483233,-0.009181,0.004749,0.249955,0,0);-ms-transform:matrix(0.483233,-0.009181,0.004749,0.249955,0,0);-webkit-transform:matrix(0.483233,-0.009181,0.004749,0.249955,0,0);}
.m1_c00144{transform:matrix(0.530441,-0.013791,0.006498,0.249916,0,0);-ms-transform:matrix(0.530441,-0.013791,0.006498,0.249916,0,0);-webkit-transform:matrix(0.530441,-0.013791,0.006498,0.249916,0,0);}
.m3b_c00144{transform:matrix(0.540118,-0.010262,0.004749,0.249955,0,0);-ms-transform:matrix(0.540118,-0.010262,0.004749,0.249955,0,0);-webkit-transform:matrix(0.540118,-0.010262,0.004749,0.249955,0,0);}
.m29_c00144{transform:matrix(0.563811,-0.012968,0.005748,0.249934,0,0);-ms-transform:matrix(0.563811,-0.012968,0.005748,0.249934,0,0);-webkit-transform:matrix(0.563811,-0.012968,0.005748,0.249934,0,0);}
.m40_c00144{transform:matrix(0.579664,-0.015071,0.006498,0.249916,0,0);-ms-transform:matrix(0.579664,-0.015071,0.006498,0.249916,0,0);-webkit-transform:matrix(0.579664,-0.015071,0.006498,0.249916,0,0);}
.m5_c00144{transform:matrix(0.614218,-0.014127,0.005748,0.249934,0,0);-ms-transform:matrix(0.614218,-0.014127,0.005748,0.249934,0,0);-webkit-transform:matrix(0.614218,-0.014127,0.005748,0.249934,0,0);}
.m2f_c00144{transform:matrix(0.615252,-0.014151,0.005748,0.249934,0,0);-ms-transform:matrix(0.615252,-0.014151,0.005748,0.249934,0,0);-webkit-transform:matrix(0.615252,-0.014151,0.005748,0.249934,0,0);}
.m2a_c00144{transform:matrix(0.624875,-0.014372,0.005748,0.249934,0,0);-ms-transform:matrix(0.624875,-0.014372,0.005748,0.249934,0,0);-webkit-transform:matrix(0.624875,-0.014372,0.005748,0.249934,0,0);}
.m7_c00144{transform:matrix(0.637356,-0.014659,0.005748,0.249934,0,0);-ms-transform:matrix(0.637356,-0.014659,0.005748,0.249934,0,0);-webkit-transform:matrix(0.637356,-0.014659,0.005748,0.249934,0,0);}
.m3d_c00144{transform:matrix(0.650388,-0.012357,0.004749,0.249955,0,0);-ms-transform:matrix(0.650388,-0.012357,0.004749,0.249955,0,0);-webkit-transform:matrix(0.650388,-0.012357,0.004749,0.249955,0,0);}
.m8_c00144{transform:matrix(0.679175,-0.015621,0.005748,0.249934,0,0);-ms-transform:matrix(0.679175,-0.015621,0.005748,0.249934,0,0);-webkit-transform:matrix(0.679175,-0.015621,0.005748,0.249934,0,0);}
.m46_c00144{transform:matrix(0.705677,-0.018348,0.006498,0.249916,0,0);-ms-transform:matrix(0.705677,-0.018348,0.006498,0.249916,0,0);-webkit-transform:matrix(0.705677,-0.018348,0.006498,0.249916,0,0);}
.m48_c00144{transform:matrix(0.709795,-0.018455,0.006498,0.249916,0,0);-ms-transform:matrix(0.709795,-0.018455,0.006498,0.249916,0,0);-webkit-transform:matrix(0.709795,-0.018455,0.006498,0.249916,0,0);}
.m0_c00144{transform:matrix(0.718667,-0.018685,0.006498,0.249916,0,0);-ms-transform:matrix(0.718667,-0.018685,0.006498,0.249916,0,0);-webkit-transform:matrix(0.718667,-0.018685,0.006498,0.249916,0,0);}
.m35_c00144{transform:matrix(0.724108,-0.016654,0.005748,0.249934,0,0);-ms-transform:matrix(0.724108,-0.016654,0.005748,0.249934,0,0);-webkit-transform:matrix(0.724108,-0.016654,0.005748,0.249934,0,0);}
.m4d_c00144{transform:matrix(0.740355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.740355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.740355,0.000000,0.000000,0.250000,0,0);}
.m3_c00144{transform:matrix(0.768860,-0.019990,0.006498,0.249916,0,0);-ms-transform:matrix(0.768860,-0.019990,0.006498,0.249916,0,0);-webkit-transform:matrix(0.768860,-0.019990,0.006498,0.249916,0,0);}
.ma_c00144{transform:matrix(0.803363,-0.018477,0.005748,0.249934,0,0);-ms-transform:matrix(0.803363,-0.018477,0.005748,0.249934,0,0);-webkit-transform:matrix(0.803363,-0.018477,0.005748,0.249934,0,0);}
.mb_c00144{transform:matrix(0.879422,-0.020227,0.005748,0.249934,0,0);-ms-transform:matrix(0.879422,-0.020227,0.005748,0.249934,0,0);-webkit-transform:matrix(0.879422,-0.020227,0.005748,0.249934,0,0);}
.md_c00144{transform:matrix(0.897703,-0.020647,0.005748,0.249934,0,0);-ms-transform:matrix(0.897703,-0.020647,0.005748,0.249934,0,0);-webkit-transform:matrix(0.897703,-0.020647,0.005748,0.249934,0,0);}
.m39_c00144{transform:matrix(0.967270,-0.016444,0.004249,0.249964,0,0);-ms-transform:matrix(0.967270,-0.016444,0.004249,0.249964,0,0);-webkit-transform:matrix(0.967270,-0.016444,0.004249,0.249964,0,0);}
.m28_c00144{transform:matrix(0.988923,-0.022745,0.005748,0.249934,0,0);-ms-transform:matrix(0.988923,-0.022745,0.005748,0.249934,0,0);-webkit-transform:matrix(0.988923,-0.022745,0.005748,0.249934,0,0);}
.mc_c00144{transform:matrix(1.227935,-0.028243,0.005748,0.249934,0,0);-ms-transform:matrix(1.227935,-0.028243,0.005748,0.249934,0,0);-webkit-transform:matrix(1.227935,-0.028243,0.005748,0.249934,0,0);}
.m3a_c00144{transform:matrix(1.456567,-0.027675,0.004749,0.249955,0,0);-ms-transform:matrix(1.456567,-0.027675,0.004749,0.249955,0,0);-webkit-transform:matrix(1.456567,-0.027675,0.004749,0.249955,0,0);}
.m9_c00144{transform:matrix(1.459974,-0.033579,0.005748,0.249934,0,0);-ms-transform:matrix(1.459974,-0.033579,0.005748,0.249934,0,0);-webkit-transform:matrix(1.459974,-0.033579,0.005748,0.249934,0,0);}
.m6_c00144{transform:matrix(1.481768,-0.034081,0.005748,0.249934,0,0);-ms-transform:matrix(1.481768,-0.034081,0.005748,0.249934,0,0);-webkit-transform:matrix(1.481768,-0.034081,0.005748,0.249934,0,0);}
.m22_c00144{transform:matrix(1.518498,-0.034925,0.005748,0.249934,0,0);-ms-transform:matrix(1.518498,-0.034925,0.005748,0.249934,0,0);-webkit-transform:matrix(1.518498,-0.034925,0.005748,0.249934,0,0);}
.m26_c00144{transform:matrix(1.608625,-0.036998,0.005748,0.249934,0,0);-ms-transform:matrix(1.608625,-0.036998,0.005748,0.249934,0,0);-webkit-transform:matrix(1.608625,-0.036998,0.005748,0.249934,0,0);}
.m16_c00144{transform:matrix(1.610889,-0.037050,0.005748,0.249934,0,0);-ms-transform:matrix(1.610889,-0.037050,0.005748,0.249934,0,0);-webkit-transform:matrix(1.610889,-0.037050,0.005748,0.249934,0,0);}
.m12_c00144{transform:matrix(1.717891,-0.039511,0.005748,0.249934,0,0);-ms-transform:matrix(1.717891,-0.039511,0.005748,0.249934,0,0);-webkit-transform:matrix(1.717891,-0.039511,0.005748,0.249934,0,0);}
.v0_c00144{vertical-align:0.000000px;}
.ls0_c00144{letter-spacing:0.000000px;}
.sc__c00144{text-shadow:none;}
.sc0_c00144{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__c00144{-webkit-text-stroke:0px transparent;}
.sc0_c00144{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00144{word-spacing:0.000000px;}
.fc0_c00144{color:transparent;}
.fs2_c00144{font-size:24.006347px;}
.fs1_c00144{font-size:30.007934px;}
.fsc_c00144{font-size:36.000000px;}
.fs0_c00144{font-size:42.014194px;}
.fs3_c00144{font-size:48.012694px;}
.fs8_c00144{font-size:54.009746px;}
.fs7_c00144{font-size:72.010403px;}
.fs5_c00144{font-size:84.022215px;}
.fs4_c00144{font-size:96.025389px;}
.fsb_c00144{font-size:120.040553px;}
.fsa_c00144{font-size:126.042581px;}
.fs9_c00144{font-size:138.000000px;}
.fs6_c00144{font-size:162.042843px;}
.y0_c00144{bottom:0.000000px;}
.y4f_c00144{bottom:3.376500px;}
.y40_c00144{bottom:159.840000px;}
.y47_c00144{bottom:184.678536px;}
.y48_c00144{bottom:190.360386px;}
.y49_c00144{bottom:196.187733px;}
.y4a_c00144{bottom:197.599029px;}
.y4b_c00144{bottom:199.238244px;}
.y4c_c00144{bottom:200.533650px;}
.y4d_c00144{bottom:201.935955px;}
.y4e_c00144{bottom:203.810811px;}
.y41_c00144{bottom:217.891500px;}
.y42_c00144{bottom:221.210322px;}
.y43_c00144{bottom:224.581599px;}
.y3c_c00144{bottom:225.843000px;}
.y3d_c00144{bottom:227.570670px;}
.y3e_c00144{bottom:228.553122px;}
.y3f_c00144{bottom:229.525827px;}
.y44_c00144{bottom:230.930019px;}
.y45_c00144{bottom:231.968511px;}
.y46_c00144{bottom:232.356561px;}
.y38_c00144{bottom:270.247500px;}
.y39_c00144{bottom:271.170498px;}
.y3a_c00144{bottom:272.912020px;}
.y3b_c00144{bottom:273.612633px;}
.y30_c00144{bottom:505.700580px;}
.y31_c00144{bottom:508.337772px;}
.y32_c00144{bottom:512.264719px;}
.y33_c00144{bottom:513.865884px;}
.y34_c00144{bottom:516.508578px;}
.y35_c00144{bottom:522.882482px;}
.y36_c00144{bottom:525.489471px;}
.y37_c00144{bottom:527.586968px;}
.y27_c00144{bottom:544.844703px;}
.y28_c00144{bottom:544.987700px;}
.y29_c00144{bottom:547.821957px;}
.y2a_c00144{bottom:548.683164px;}
.y2b_c00144{bottom:551.329199px;}
.y2c_c00144{bottom:552.265968px;}
.y2d_c00144{bottom:554.171808px;}
.y2e_c00144{bottom:557.631078px;}
.y2f_c00144{bottom:557.800131px;}
.y21_c00144{bottom:592.774300px;}
.y25_c00144{bottom:592.774791px;}
.y22_c00144{bottom:592.774974px;}
.y26_c00144{bottom:592.775016px;}
.y24_c00144{bottom:592.775180px;}
.y23_c00144{bottom:592.775486px;}
.y1f_c00144{bottom:614.790000px;}
.y20_c00144{bottom:636.125283px;}
.y1a_c00144{bottom:673.655907px;}
.y5_c00144{bottom:674.410500px;}
.y1b_c00144{bottom:674.443997px;}
.y1c_c00144{bottom:675.165092px;}
.y1d_c00144{bottom:677.087389px;}
.y1e_c00144{bottom:678.540894px;}
.y6_c00144{bottom:685.286556px;}
.y7_c00144{bottom:685.870848px;}
.y8_c00144{bottom:686.951250px;}
.y9_c00144{bottom:687.646598px;}
.yf_c00144{bottom:687.694175px;}
.y10_c00144{bottom:687.925330px;}
.y11_c00144{bottom:688.299618px;}
.y12_c00144{bottom:688.539093px;}
.ya_c00144{bottom:688.614943px;}
.y13_c00144{bottom:688.771629px;}
.y14_c00144{bottom:689.176034px;}
.yb_c00144{bottom:689.763759px;}
.y15_c00144{bottom:689.797182px;}
.y16_c00144{bottom:690.115117px;}
.y1_c00144{bottom:690.496500px;}
.y17_c00144{bottom:690.539544px;}
.yc_c00144{bottom:690.738488px;}
.y18_c00144{bottom:691.235115px;}
.y2_c00144{bottom:691.900032px;}
.y19_c00144{bottom:692.015586px;}
.yd_c00144{bottom:692.383689px;}
.y3_c00144{bottom:692.608818px;}
.y4_c00144{bottom:693.450945px;}
.ye_c00144{bottom:693.693654px;}
.h4_c00144{height:24.006347px;}
.h3_c00144{height:30.007934px;}
.he_c00144{height:36.000000px;}
.h2_c00144{height:42.014194px;}
.h5_c00144{height:48.012694px;}
.ha_c00144{height:54.009746px;}
.h9_c00144{height:72.010403px;}
.h7_c00144{height:84.022215px;}
.h6_c00144{height:96.025389px;}
.hd_c00144{height:120.040553px;}
.hc_c00144{height:126.042581px;}
.hb_c00144{height:138.000000px;}
.h8_c00144{height:162.042843px;}
.h0_c00144{height:698.220000px;}
.h1_c00144{height:698.250000px;}
.w1_c00144{width:945.750000px;}
.w0_c00144{width:946.050000px;}
.x0_c00144{left:0.000000px;}
.x1e_c00144{left:5.670582px;}
.x23_c00144{left:14.794704px;}
.x24_c00144{left:24.992309px;}
.x31_c00144{left:42.949500px;}
.x35_c00144{left:49.101000px;}
.x3f_c00144{left:51.352401px;}
.x5_c00144{left:67.777500px;}
.x32_c00144{left:97.243500px;}
.x1f_c00144{left:101.815900px;}
.x2b_c00144{left:111.688149px;}
.x39_c00144{left:132.030000px;}
.x36_c00144{left:140.031000px;}
.x20_c00144{left:176.355799px;}
.x37_c00144{left:191.739000px;}
.x33_c00144{left:199.686000px;}
.x25_c00144{left:227.436691px;}
.x34_c00144{left:240.898500px;}
.x38_c00144{left:242.934000px;}
.x2c_c00144{left:257.107263px;}
.x26_c00144{left:288.958422px;}
.x1_c00144{left:298.821000px;}
.x40_c00144{left:309.604233px;}
.x2d_c00144{left:316.413312px;}
.x21_c00144{left:337.318911px;}
.x2_c00144{left:352.803000px;}
.x3a_c00144{left:378.574500px;}
.x3_c00144{left:380.064000px;}
.x4_c00144{left:412.453500px;}
.x2e_c00144{left:414.282308px;}
.x27_c00144{left:477.999045px;}
.x3b_c00144{left:506.221500px;}
.xf_c00144{left:526.896382px;}
.x6_c00144{left:540.649500px;}
.x28_c00144{left:544.959414px;}
.x10_c00144{left:547.974213px;}
.x7_c00144{left:566.053500px;}
.x41_c00144{left:574.491267px;}
.x11_c00144{left:581.996097px;}
.x12_c00144{left:603.827134px;}
.x8_c00144{left:613.027500px;}
.x13_c00144{left:624.964965px;}
.x3c_c00144{left:635.886000px;}
.x22_c00144{left:638.178490px;}
.x9_c00144{left:643.260000px;}
.x2f_c00144{left:650.365107px;}
.x14_c00144{left:661.666573px;}
.x29_c00144{left:681.067566px;}
.xa_c00144{left:685.362000px;}
.x19_c00144{left:687.031258px;}
.x42_c00144{left:713.179197px;}
.x15_c00144{left:718.101633px;}
.xb_c00144{left:735.310500px;}
.x1a_c00144{left:745.078756px;}
.x16_c00144{left:746.998102px;}
.x43_c00144{left:772.066320px;}
.xc_c00144{left:777.690000px;}
.x17_c00144{left:785.614263px;}
.x1b_c00144{left:818.999650px;}
.x30_c00144{left:824.631099px;}
.x44_c00144{left:835.815450px;}
.xd_c00144{left:849.220500px;}
.x1c_c00144{left:874.887286px;}
.x3d_c00144{left:880.056000px;}
.xe_c00144{left:906.175500px;}
.x18_c00144{left:919.805281px;}
.x45_c00144{left:921.030303px;}
.x1d_c00144{left:927.639000px;}
.x3e_c00144{left:934.923000px;}
.x2a_c00144{left:940.222179px;}
@media print{
.v0_c00144{vertical-align:0.000000pt;}
.ls0_c00144{letter-spacing:0.000000pt;}
.ws0_c00144{word-spacing:0.000000pt;}
.fs2_c00144{font-size:21.338975pt;}
.fs1_c00144{font-size:26.673719pt;}
.fsc_c00144{font-size:32.000000pt;}
.fs0_c00144{font-size:37.345950pt;}
.fs3_c00144{font-size:42.677951pt;}
.fs8_c00144{font-size:48.008663pt;}
.fs7_c00144{font-size:64.009247pt;}
.fs5_c00144{font-size:74.686413pt;}
.fs4_c00144{font-size:85.355901pt;}
.fsb_c00144{font-size:106.702714pt;}
.fsa_c00144{font-size:112.037850pt;}
.fs9_c00144{font-size:122.666667pt;}
.fs6_c00144{font-size:144.038083pt;}
.y0_c00144{bottom:0.000000pt;}
.y4f_c00144{bottom:3.001333pt;}
.y40_c00144{bottom:142.080000pt;}
.y47_c00144{bottom:164.158699pt;}
.y48_c00144{bottom:169.209232pt;}
.y49_c00144{bottom:174.389096pt;}
.y4a_c00144{bottom:175.643581pt;}
.y4b_c00144{bottom:177.100661pt;}
.y4c_c00144{bottom:178.252133pt;}
.y4d_c00144{bottom:179.498627pt;}
.y4e_c00144{bottom:181.165165pt;}
.y41_c00144{bottom:193.681333pt;}
.y42_c00144{bottom:196.631397pt;}
.y43_c00144{bottom:199.628088pt;}
.y3c_c00144{bottom:200.749333pt;}
.y3d_c00144{bottom:202.285040pt;}
.y3e_c00144{bottom:203.158331pt;}
.y3f_c00144{bottom:204.022957pt;}
.y44_c00144{bottom:205.271128pt;}
.y45_c00144{bottom:206.194232pt;}
.y46_c00144{bottom:206.539165pt;}
.y38_c00144{bottom:240.220000pt;}
.y39_c00144{bottom:241.040443pt;}
.y3a_c00144{bottom:242.588463pt;}
.y3b_c00144{bottom:243.211229pt;}
.y30_c00144{bottom:449.511627pt;}
.y31_c00144{bottom:451.855797pt;}
.y32_c00144{bottom:455.346417pt;}
.y33_c00144{bottom:456.769675pt;}
.y34_c00144{bottom:459.118736pt;}
.y35_c00144{bottom:464.784428pt;}
.y36_c00144{bottom:467.101752pt;}
.y37_c00144{bottom:468.966193pt;}
.y27_c00144{bottom:484.306403pt;}
.y28_c00144{bottom:484.433511pt;}
.y29_c00144{bottom:486.952851pt;}
.y2a_c00144{bottom:487.718368pt;}
.y2b_c00144{bottom:490.070399pt;}
.y2c_c00144{bottom:490.903083pt;}
.y2d_c00144{bottom:492.597163pt;}
.y2e_c00144{bottom:495.672069pt;}
.y2f_c00144{bottom:495.822339pt;}
.y21_c00144{bottom:526.910489pt;}
.y25_c00144{bottom:526.910925pt;}
.y22_c00144{bottom:526.911088pt;}
.y26_c00144{bottom:526.911125pt;}
.y24_c00144{bottom:526.911271pt;}
.y23_c00144{bottom:526.911543pt;}
.y1f_c00144{bottom:546.480000pt;}
.y20_c00144{bottom:565.444696pt;}
.y1a_c00144{bottom:598.805251pt;}
.y5_c00144{bottom:599.476000pt;}
.y1b_c00144{bottom:599.505775pt;}
.y1c_c00144{bottom:600.146748pt;}
.y1d_c00144{bottom:601.855457pt;}
.y1e_c00144{bottom:603.147461pt;}
.y6_c00144{bottom:609.143605pt;}
.y7_c00144{bottom:609.662976pt;}
.y8_c00144{bottom:610.623333pt;}
.y9_c00144{bottom:611.241420pt;}
.yf_c00144{bottom:611.283711pt;}
.y10_c00144{bottom:611.489183pt;}
.y11_c00144{bottom:611.821883pt;}
.y12_c00144{bottom:612.034749pt;}
.ya_c00144{bottom:612.102172pt;}
.y13_c00144{bottom:612.241448pt;}
.y14_c00144{bottom:612.600919pt;}
.yb_c00144{bottom:613.123341pt;}
.y15_c00144{bottom:613.153051pt;}
.y16_c00144{bottom:613.435660pt;}
.y1_c00144{bottom:613.774667pt;}
.y17_c00144{bottom:613.812928pt;}
.yc_c00144{bottom:613.989767pt;}
.y18_c00144{bottom:614.431213pt;}
.y2_c00144{bottom:615.022251pt;}
.y19_c00144{bottom:615.124965pt;}
.yd_c00144{bottom:615.452168pt;}
.y3_c00144{bottom:615.652283pt;}
.y4_c00144{bottom:616.400840pt;}
.ye_c00144{bottom:616.616581pt;}
.h4_c00144{height:21.338975pt;}
.h3_c00144{height:26.673719pt;}
.he_c00144{height:32.000000pt;}
.h2_c00144{height:37.345950pt;}
.h5_c00144{height:42.677951pt;}
.ha_c00144{height:48.008663pt;}
.h9_c00144{height:64.009247pt;}
.h7_c00144{height:74.686413pt;}
.h6_c00144{height:85.355901pt;}
.hd_c00144{height:106.702714pt;}
.hc_c00144{height:112.037850pt;}
.hb_c00144{height:122.666667pt;}
.h8_c00144{height:144.038083pt;}
.h0_c00144{height:620.640000pt;}
.h1_c00144{height:620.666667pt;}
.w1_c00144{width:840.666667pt;}
.w0_c00144{width:840.933333pt;}
.x0_c00144{left:0.000000pt;}
.x1e_c00144{left:5.040517pt;}
.x23_c00144{left:13.150848pt;}
.x24_c00144{left:22.215385pt;}
.x31_c00144{left:38.177333pt;}
.x35_c00144{left:43.645333pt;}
.x3f_c00144{left:45.646579pt;}
.x5_c00144{left:60.246667pt;}
.x32_c00144{left:86.438667pt;}
.x1f_c00144{left:90.503023pt;}
.x2b_c00144{left:99.278355pt;}
.x39_c00144{left:117.360000pt;}
.x36_c00144{left:124.472000pt;}
.x20_c00144{left:156.760711pt;}
.x37_c00144{left:170.434667pt;}
.x33_c00144{left:177.498667pt;}
.x25_c00144{left:202.165948pt;}
.x34_c00144{left:214.132000pt;}
.x38_c00144{left:215.941333pt;}
.x2c_c00144{left:228.539789pt;}
.x26_c00144{left:256.851931pt;}
.x1_c00144{left:265.618667pt;}
.x40_c00144{left:275.203763pt;}
.x2d_c00144{left:281.256277pt;}
.x21_c00144{left:299.839032pt;}
.x2_c00144{left:313.602667pt;}
.x3a_c00144{left:336.510667pt;}
.x3_c00144{left:337.834667pt;}
.x4_c00144{left:366.625333pt;}
.x2e_c00144{left:368.250940pt;}
.x27_c00144{left:424.888040pt;}
.x3b_c00144{left:449.974667pt;}
.xf_c00144{left:468.352340pt;}
.x6_c00144{left:480.577333pt;}
.x28_c00144{left:484.408368pt;}
.x10_c00144{left:487.088189pt;}
.x7_c00144{left:503.158667pt;}
.x41_c00144{left:510.658904pt;}
.x11_c00144{left:517.329864pt;}
.x12_c00144{left:536.735231pt;}
.x8_c00144{left:544.913333pt;}
.x13_c00144{left:555.524413pt;}
.x3c_c00144{left:565.232000pt;}
.x22_c00144{left:567.269769pt;}
.x9_c00144{left:571.786667pt;}
.x2f_c00144{left:578.102317pt;}
.x14_c00144{left:588.148065pt;}
.x29_c00144{left:605.393392pt;}
.xa_c00144{left:609.210667pt;}
.x19_c00144{left:610.694452pt;}
.x42_c00144{left:633.937064pt;}
.x15_c00144{left:638.312563pt;}
.xb_c00144{left:653.609333pt;}
.x1a_c00144{left:662.292228pt;}
.x16_c00144{left:663.998313pt;}
.x43_c00144{left:686.281173pt;}
.xc_c00144{left:691.280000pt;}
.x17_c00144{left:698.323789pt;}
.x1b_c00144{left:727.999689pt;}
.x30_c00144{left:733.005421pt;}
.x44_c00144{left:742.947067pt;}
.xd_c00144{left:754.862667pt;}
.x1c_c00144{left:777.677588pt;}
.x3d_c00144{left:782.272000pt;}
.xe_c00144{left:805.489333pt;}
.x18_c00144{left:817.604695pt;}
.x45_c00144{left:818.693603pt;}
.x1d_c00144{left:824.568000pt;}
.x3e_c00144{left:831.042667pt;}
.x2a_c00144{left:835.753048pt;}
}





/* 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_c00145 {
    display:none;
  }
  .loading-indicator_c00145.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00145 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_c00145 { 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_c00145" -> "#page-container .classname_c00145")
 */
.pf_c00145 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00145 { /* 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_c00145.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00145 { /* 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_c00145 { /* 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_c00145 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00145 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00145 {overflow:visible;}
  }
}
.c_c00145 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00145 { /* 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_c00145:after { /* webkit #35443 */
  content: '';
}
.t_c00145:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00145 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 */
}
.__c00145 { /* 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_c00145 { /* info for Javascript */
  display:none;
}
.l_c00145 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00145 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00145 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00145: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_c00145 {
    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_c00145.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00145.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_c00145 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00145{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00145;src:url('chunks/assets/font_c605e72f209fc835e906f064.woff2')format("woff");}.ff1_c00145{font-family:ff1_c00145;line-height:1.000000;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;}
.m3f_c00145{transform:matrix(0.007115,0.000043,-0.001500,0.249996,0,0);-ms-transform:matrix(0.007115,0.000043,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.007115,0.000043,-0.001500,0.249996,0,0);}
.m40_c00145{transform:matrix(0.008110,0.000049,-0.001500,0.249996,0,0);-ms-transform:matrix(0.008110,0.000049,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.008110,0.000049,-0.001500,0.249996,0,0);}
.m1e_c00145{transform:matrix(0.110623,0.001217,-0.002750,0.249985,0,0);-ms-transform:matrix(0.110623,0.001217,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.110623,0.001217,-0.002750,0.249985,0,0);}
.m12_c00145{transform:matrix(0.121099,0.004000,-0.008254,0.249864,0,0);-ms-transform:matrix(0.121099,0.004000,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.121099,0.004000,-0.008254,0.249864,0,0);}
.m4c_c00145{transform:matrix(0.154092,0.000925,-0.001500,0.249996,0,0);-ms-transform:matrix(0.154092,0.000925,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.154092,0.000925,-0.001500,0.249996,0,0);}
.m24_c00145{transform:matrix(0.182884,0.002012,-0.002750,0.249985,0,0);-ms-transform:matrix(0.182884,0.002012,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.182884,0.002012,-0.002750,0.249985,0,0);}
.m4b_c00145{transform:matrix(0.199316,0.001196,-0.001500,0.249996,0,0);-ms-transform:matrix(0.199316,0.001196,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.199316,0.001196,-0.001500,0.249996,0,0);}
.m14_c00145{transform:matrix(0.213708,0.007059,-0.008254,0.249864,0,0);-ms-transform:matrix(0.213708,0.007059,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.213708,0.007059,-0.008254,0.249864,0,0);}
.m26_c00145{transform:matrix(0.238066,0.002619,-0.002750,0.249985,0,0);-ms-transform:matrix(0.238066,0.002619,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.238066,0.002619,-0.002750,0.249985,0,0);}
.m4a_c00145{transform:matrix(0.238761,0.001433,-0.001500,0.249996,0,0);-ms-transform:matrix(0.238761,0.001433,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.238761,0.001433,-0.001500,0.249996,0,0);}
.m3d_c00145{transform:matrix(0.242974,0.001701,-0.001750,0.249994,0,0);-ms-transform:matrix(0.242974,0.001701,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.242974,0.001701,-0.001750,0.249994,0,0);}
.m45_c00145{transform:matrix(0.257815,0.001547,-0.001500,0.249996,0,0);-ms-transform:matrix(0.257815,0.001547,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.257815,0.001547,-0.001500,0.249996,0,0);}
.m1b_c00145{transform:matrix(0.286578,0.009180,-0.008004,0.249872,0,0);-ms-transform:matrix(0.286578,0.009180,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.286578,0.009180,-0.008004,0.249872,0,0);}
.m19_c00145{transform:matrix(0.291096,0.009324,-0.008004,0.249872,0,0);-ms-transform:matrix(0.291096,0.009324,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.291096,0.009324,-0.008004,0.249872,0,0);}
.m3a_c00145{transform:matrix(0.291423,0.002040,-0.001750,0.249994,0,0);-ms-transform:matrix(0.291423,0.002040,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.291423,0.002040,-0.001750,0.249994,0,0);}
.m23_c00145{transform:matrix(0.294487,0.003239,-0.002750,0.249985,0,0);-ms-transform:matrix(0.294487,0.003239,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.294487,0.003239,-0.002750,0.249985,0,0);}
.m42_c00145{transform:matrix(0.294865,0.001769,-0.001500,0.249996,0,0);-ms-transform:matrix(0.294865,0.001769,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.294865,0.001769,-0.001500,0.249996,0,0);}
.m4d_c00145{transform:matrix(0.295450,0.001773,-0.001500,0.249996,0,0);-ms-transform:matrix(0.295450,0.001773,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.295450,0.001773,-0.001500,0.249996,0,0);}
.m47_c00145{transform:matrix(0.300045,0.001800,-0.001500,0.249996,0,0);-ms-transform:matrix(0.300045,0.001800,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.300045,0.001800,-0.001500,0.249996,0,0);}
.m8_c00145{transform:matrix(0.301795,0.009969,-0.008254,0.249864,0,0);-ms-transform:matrix(0.301795,0.009969,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.301795,0.009969,-0.008254,0.249864,0,0);}
.m15_c00145{transform:matrix(0.317672,0.010494,-0.008254,0.249864,0,0);-ms-transform:matrix(0.317672,0.010494,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.317672,0.010494,-0.008254,0.249864,0,0);}
.m2d_c00145{transform:matrix(0.325003,0.009425,-0.007247,0.249895,0,0);-ms-transform:matrix(0.325003,0.009425,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.325003,0.009425,-0.007247,0.249895,0,0);}
.m6_c00145{transform:matrix(0.327476,0.010818,-0.008254,0.249864,0,0);-ms-transform:matrix(0.327476,0.010818,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.327476,0.010818,-0.008254,0.249864,0,0);}
.m25_c00145{transform:matrix(0.328060,0.003609,-0.002750,0.249985,0,0);-ms-transform:matrix(0.328060,0.003609,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.328060,0.003609,-0.002750,0.249985,0,0);}
.m27_c00145{transform:matrix(0.331460,0.003646,-0.002750,0.249985,0,0);-ms-transform:matrix(0.331460,0.003646,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.331460,0.003646,-0.002750,0.249985,0,0);}
.m3c_c00145{transform:matrix(0.345742,0.002420,-0.001750,0.249994,0,0);-ms-transform:matrix(0.345742,0.002420,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.345742,0.002420,-0.001750,0.249994,0,0);}
.m36_c00145{transform:matrix(0.352356,0.002466,-0.001750,0.249994,0,0);-ms-transform:matrix(0.352356,0.002466,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.352356,0.002466,-0.001750,0.249994,0,0);}
.m16_c00145{transform:matrix(0.353582,0.011680,-0.008254,0.249864,0,0);-ms-transform:matrix(0.353582,0.011680,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.353582,0.011680,-0.008254,0.249864,0,0);}
.m1f_c00145{transform:matrix(0.356833,0.003925,-0.002750,0.249985,0,0);-ms-transform:matrix(0.356833,0.003925,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.356833,0.003925,-0.002750,0.249985,0,0);}
.m28_c00145{transform:matrix(0.364607,0.010574,-0.007247,0.249895,0,0);-ms-transform:matrix(0.364607,0.010574,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.364607,0.010574,-0.007247,0.249895,0,0);}
.m22_c00145{transform:matrix(0.379807,0.004178,-0.002750,0.249985,0,0);-ms-transform:matrix(0.379807,0.004178,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.379807,0.004178,-0.002750,0.249985,0,0);}
.m2c_c00145{transform:matrix(0.389836,0.011305,-0.007247,0.249895,0,0);-ms-transform:matrix(0.389836,0.011305,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.389836,0.011305,-0.007247,0.249895,0,0);}
.m13_c00145{transform:matrix(0.406873,0.013440,-0.008254,0.249864,0,0);-ms-transform:matrix(0.406873,0.013440,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.406873,0.013440,-0.008254,0.249864,0,0);}
.m9_c00145{transform:matrix(0.408167,0.013483,-0.008254,0.249864,0,0);-ms-transform:matrix(0.408167,0.013483,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.408167,0.013483,-0.008254,0.249864,0,0);}
.m21_c00145{transform:matrix(0.412220,0.004534,-0.002750,0.249985,0,0);-ms-transform:matrix(0.412220,0.004534,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.412220,0.004534,-0.002750,0.249985,0,0);}
.m41_c00145{transform:matrix(0.414128,0.002485,-0.001500,0.249996,0,0);-ms-transform:matrix(0.414128,0.002485,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.414128,0.002485,-0.001500,0.249996,0,0);}
.m20_c00145{transform:matrix(0.424704,0.004672,-0.002750,0.249985,0,0);-ms-transform:matrix(0.424704,0.004672,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.424704,0.004672,-0.002750,0.249985,0,0);}
.m49_c00145{transform:matrix(0.426452,0.002559,-0.001500,0.249996,0,0);-ms-transform:matrix(0.426452,0.002559,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.426452,0.002559,-0.001500,0.249996,0,0);}
.m2e_c00145{transform:matrix(0.437496,0.012687,-0.007247,0.249895,0,0);-ms-transform:matrix(0.437496,0.012687,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.437496,0.012687,-0.007247,0.249895,0,0);}
.m7_c00145{transform:matrix(0.441494,0.014584,-0.008254,0.249864,0,0);-ms-transform:matrix(0.441494,0.014584,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.441494,0.014584,-0.008254,0.249864,0,0);}
.mc_c00145{transform:matrix(0.462233,0.015269,-0.008254,0.249864,0,0);-ms-transform:matrix(0.462233,0.015269,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.462233,0.015269,-0.008254,0.249864,0,0);}
.m30_c00145{transform:matrix(0.471213,0.012723,-0.006748,0.249909,0,0);-ms-transform:matrix(0.471213,0.012723,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.471213,0.012723,-0.006748,0.249909,0,0);}
.m0_c00145{transform:matrix(0.472527,0.015609,-0.008254,0.249864,0,0);-ms-transform:matrix(0.472527,0.015609,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.472527,0.015609,-0.008254,0.249864,0,0);}
.m48_c00145{transform:matrix(0.486776,0.002921,-0.001500,0.249996,0,0);-ms-transform:matrix(0.486776,0.002921,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.486776,0.002921,-0.001500,0.249996,0,0);}
.md_c00145{transform:matrix(0.505349,0.016693,-0.008254,0.249864,0,0);-ms-transform:matrix(0.505349,0.016693,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.505349,0.016693,-0.008254,0.249864,0,0);}
.m35_c00145{transform:matrix(0.545811,0.014737,-0.006748,0.249909,0,0);-ms-transform:matrix(0.545811,0.014737,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.545811,0.014737,-0.006748,0.249909,0,0);}
.me_c00145{transform:matrix(0.556317,0.018377,-0.008254,0.249864,0,0);-ms-transform:matrix(0.556317,0.018377,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.556317,0.018377,-0.008254,0.249864,0,0);}
.m38_c00145{transform:matrix(0.560726,0.003925,-0.001750,0.249994,0,0);-ms-transform:matrix(0.560726,0.003925,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.560726,0.003925,-0.001750,0.249994,0,0);}
.m1a_c00145{transform:matrix(0.571152,0.018295,-0.008004,0.249872,0,0);-ms-transform:matrix(0.571152,0.018295,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.571152,0.018295,-0.008004,0.249872,0,0);}
.m11_c00145{transform:matrix(0.599888,0.019816,-0.008254,0.249864,0,0);-ms-transform:matrix(0.599888,0.019816,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.599888,0.019816,-0.008254,0.249864,0,0);}
.m1_c00145{transform:matrix(0.647432,0.021387,-0.008254,0.249864,0,0);-ms-transform:matrix(0.647432,0.021387,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.647432,0.021387,-0.008254,0.249864,0,0);}
.m33_c00145{transform:matrix(0.650043,0.017551,-0.006748,0.249909,0,0);-ms-transform:matrix(0.650043,0.017551,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.650043,0.017551,-0.006748,0.249909,0,0);}
.m43_c00145{transform:matrix(0.666803,0.004001,-0.001500,0.249996,0,0);-ms-transform:matrix(0.666803,0.004001,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.666803,0.004001,-0.001500,0.249996,0,0);}
.m37_c00145{transform:matrix(0.676953,0.004739,-0.001750,0.249994,0,0);-ms-transform:matrix(0.676953,0.004739,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.676953,0.004739,-0.001750,0.249994,0,0);}
.m1c_c00145{transform:matrix(0.702195,0.022493,-0.008004,0.249872,0,0);-ms-transform:matrix(0.702195,0.022493,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.702195,0.022493,-0.008004,0.249872,0,0);}
.m2a_c00145{transform:matrix(0.716899,0.020790,-0.007247,0.249895,0,0);-ms-transform:matrix(0.716899,0.020790,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.716899,0.020790,-0.007247,0.249895,0,0);}
.m2b_c00145{transform:matrix(0.737320,0.021382,-0.007247,0.249895,0,0);-ms-transform:matrix(0.737320,0.021382,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.737320,0.021382,-0.007247,0.249895,0,0);}
.m2f_c00145{transform:matrix(0.756272,0.021932,-0.007247,0.249895,0,0);-ms-transform:matrix(0.756272,0.021932,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.756272,0.021932,-0.007247,0.249895,0,0);}
.m2_c00145{transform:matrix(0.792883,0.026191,-0.008254,0.249864,0,0);-ms-transform:matrix(0.792883,0.026191,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.792883,0.026191,-0.008254,0.249864,0,0);}
.m3_c00145{transform:matrix(0.795871,0.026290,-0.008254,0.249864,0,0);-ms-transform:matrix(0.795871,0.026290,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.795871,0.026290,-0.008254,0.249864,0,0);}
.m10_c00145{transform:matrix(0.849821,0.028072,-0.008254,0.249864,0,0);-ms-transform:matrix(0.849821,0.028072,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.849821,0.028072,-0.008254,0.249864,0,0);}
.m1d_c00145{transform:matrix(0.875716,0.028051,-0.008004,0.249872,0,0);-ms-transform:matrix(0.875716,0.028051,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.875716,0.028051,-0.008004,0.249872,0,0);}
.m5_c00145{transform:matrix(0.888350,0.029345,-0.008254,0.249864,0,0);-ms-transform:matrix(0.888350,0.029345,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.888350,0.029345,-0.008254,0.249864,0,0);}
.m3e_c00145{transform:matrix(0.892608,0.006248,-0.001750,0.249994,0,0);-ms-transform:matrix(0.892608,0.006248,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.892608,0.006248,-0.001750,0.249994,0,0);}
.mb_c00145{transform:matrix(1.004142,0.033170,-0.008254,0.249864,0,0);-ms-transform:matrix(1.004142,0.033170,-0.008254,0.249864,0,0);-webkit-transform:matrix(1.004142,0.033170,-0.008254,0.249864,0,0);}
.m29_c00145{transform:matrix(1.016533,0.029479,-0.007247,0.249895,0,0);-ms-transform:matrix(1.016533,0.029479,-0.007247,0.249895,0,0);-webkit-transform:matrix(1.016533,0.029479,-0.007247,0.249895,0,0);}
.m17_c00145{transform:matrix(1.086083,0.035877,-0.008254,0.249864,0,0);-ms-transform:matrix(1.086083,0.035877,-0.008254,0.249864,0,0);-webkit-transform:matrix(1.086083,0.035877,-0.008254,0.249864,0,0);}
.m46_c00145{transform:matrix(1.326991,0.007962,-0.001500,0.249996,0,0);-ms-transform:matrix(1.326991,0.007962,-0.001500,0.249996,0,0);-webkit-transform:matrix(1.326991,0.007962,-0.001500,0.249996,0,0);}
.m34_c00145{transform:matrix(1.327716,0.035848,-0.006748,0.249909,0,0);-ms-transform:matrix(1.327716,0.035848,-0.006748,0.249909,0,0);-webkit-transform:matrix(1.327716,0.035848,-0.006748,0.249909,0,0);}
.m18_c00145{transform:matrix(1.335360,0.042774,-0.008004,0.249872,0,0);-ms-transform:matrix(1.335360,0.042774,-0.008004,0.249872,0,0);-webkit-transform:matrix(1.335360,0.042774,-0.008004,0.249872,0,0);}
.m44_c00145{transform:matrix(1.381735,0.008290,-0.001500,0.249996,0,0);-ms-transform:matrix(1.381735,0.008290,-0.001500,0.249996,0,0);-webkit-transform:matrix(1.381735,0.008290,-0.001500,0.249996,0,0);}
.ma_c00145{transform:matrix(1.437496,0.047485,-0.008254,0.249864,0,0);-ms-transform:matrix(1.437496,0.047485,-0.008254,0.249864,0,0);-webkit-transform:matrix(1.437496,0.047485,-0.008254,0.249864,0,0);}
.m31_c00145{transform:matrix(1.515293,0.040913,-0.006748,0.249909,0,0);-ms-transform:matrix(1.515293,0.040913,-0.006748,0.249909,0,0);-webkit-transform:matrix(1.515293,0.040913,-0.006748,0.249909,0,0);}
.mf_c00145{transform:matrix(1.646457,0.054387,-0.008254,0.249864,0,0);-ms-transform:matrix(1.646457,0.054387,-0.008254,0.249864,0,0);-webkit-transform:matrix(1.646457,0.054387,-0.008254,0.249864,0,0);}
.m3b_c00145{transform:matrix(1.826735,0.012787,-0.001750,0.249994,0,0);-ms-transform:matrix(1.826735,0.012787,-0.001750,0.249994,0,0);-webkit-transform:matrix(1.826735,0.012787,-0.001750,0.249994,0,0);}
.m39_c00145{transform:matrix(1.933948,0.013538,-0.001750,0.249994,0,0);-ms-transform:matrix(1.933948,0.013538,-0.001750,0.249994,0,0);-webkit-transform:matrix(1.933948,0.013538,-0.001750,0.249994,0,0);}
.m32_c00145{transform:matrix(1.963889,0.053025,-0.006748,0.249909,0,0);-ms-transform:matrix(1.963889,0.053025,-0.006748,0.249909,0,0);-webkit-transform:matrix(1.963889,0.053025,-0.006748,0.249909,0,0);}
.m4_c00145{transform:matrix(2.330629,0.076988,-0.008254,0.249864,0,0);-ms-transform:matrix(2.330629,0.076988,-0.008254,0.249864,0,0);-webkit-transform:matrix(2.330629,0.076988,-0.008254,0.249864,0,0);}
.v0_c00145{vertical-align:0.000000px;}
.ls0_c00145{letter-spacing:0.000000px;}
.sc__c00145{text-shadow:none;}
.sc0_c00145{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__c00145{-webkit-text-stroke:0px transparent;}
.sc0_c00145{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00145{word-spacing:0.000000px;}
.fc0_c00145{color:transparent;}
.fs0_c00145{font-size:17.991808px;}
.fs1_c00145{font-size:23.989078px;}
.fs2_c00145{font-size:71.964891px;}
.fs6_c00145{font-size:72.026239px;}
.fs5_c00145{font-size:72.030270px;}
.fs7_c00145{font-size:90.002205px;}
.fs8_c00145{font-size:120.002160px;}
.fs9_c00145{font-size:168.003024px;}
.fs3_c00145{font-size:234.014157px;}
.fs4_c00145{font-size:282.017060px;}
.y0_c00145{bottom:0.000000px;}
.y4e_c00145{bottom:105.027024px;}
.y4d_c00145{bottom:106.174125px;}
.y4c_c00145{bottom:107.275779px;}
.y4b_c00145{bottom:108.243285px;}
.y4a_c00145{bottom:111.012939px;}
.y49_c00145{bottom:112.325946px;}
.y48_c00145{bottom:171.113508px;}
.y47_c00145{bottom:172.550448px;}
.y46_c00145{bottom:172.817730px;}
.y45_c00145{bottom:173.853315px;}
.y44_c00145{bottom:174.442923px;}
.y43_c00145{bottom:174.755205px;}
.y42_c00145{bottom:175.203621px;}
.y41_c00145{bottom:175.316463px;}
.y40_c00145{bottom:175.770000px;}
.y3f_c00145{bottom:275.757312px;}
.y3e_c00145{bottom:275.955006px;}
.y3d_c00145{bottom:276.494066px;}
.y3c_c00145{bottom:277.667577px;}
.y3b_c00145{bottom:277.884759px;}
.y3a_c00145{bottom:280.277625px;}
.y39_c00145{bottom:280.691525px;}
.y38_c00145{bottom:281.184563px;}
.y37_c00145{bottom:281.388000px;}
.y36_c00145{bottom:293.661375px;}
.y35_c00145{bottom:299.133370px;}
.y34_c00145{bottom:300.987136px;}
.y33_c00145{bottom:306.321068px;}
.y32_c00145{bottom:311.163814px;}
.y31_c00145{bottom:313.111500px;}
.y30_c00145{bottom:334.642549px;}
.y2f_c00145{bottom:336.132555px;}
.y2e_c00145{bottom:338.142081px;}
.y2d_c00145{bottom:338.761738px;}
.y2c_c00145{bottom:343.067325px;}
.y2b_c00145{bottom:349.880643px;}
.y28_c00145{bottom:350.452334px;}
.y2a_c00145{bottom:352.717757px;}
.y27_c00145{bottom:353.845590px;}
.y29_c00145{bottom:354.553500px;}
.y26_c00145{bottom:362.376606px;}
.y25_c00145{bottom:364.383480px;}
.y24_c00145{bottom:370.484089px;}
.y23_c00145{bottom:386.413929px;}
.y22_c00145{bottom:388.904571px;}
.y21_c00145{bottom:390.638952px;}
.y20_c00145{bottom:391.600852px;}
.y1f_c00145{bottom:394.201500px;}
.y1e_c00145{bottom:492.816840px;}
.y1d_c00145{bottom:496.970424px;}
.y1c_c00145{bottom:498.101064px;}
.y1b_c00145{bottom:503.828376px;}
.y1a_c00145{bottom:505.080600px;}
.y19_c00145{bottom:509.631000px;}
.y4_c00145{bottom:538.794672px;}
.y18_c00145{bottom:539.064128px;}
.y17_c00145{bottom:539.164428px;}
.y16_c00145{bottom:539.234201px;}
.y15_c00145{bottom:539.279934px;}
.y14_c00145{bottom:539.525872px;}
.y13_c00145{bottom:539.596747px;}
.y12_c00145{bottom:540.090541px;}
.y11_c00145{bottom:540.643744px;}
.y10_c00145{bottom:542.097856px;}
.yf_c00145{bottom:542.295406px;}
.ye_c00145{bottom:542.572453px;}
.y3_c00145{bottom:542.612260px;}
.yd_c00145{bottom:542.700118px;}
.yc_c00145{bottom:543.171205px;}
.y2_c00145{bottom:543.342484px;}
.yb_c00145{bottom:543.669085px;}
.ya_c00145{bottom:543.677028px;}
.y9_c00145{bottom:543.866127px;}
.y8_c00145{bottom:544.021539px;}
.y7_c00145{bottom:544.197111px;}
.y1_c00145{bottom:544.375500px;}
.y6_c00145{bottom:544.565116px;}
.y5_c00145{bottom:545.142210px;}
.h2_c00145{height:17.991808px;}
.h3_c00145{height:23.989078px;}
.h4_c00145{height:71.964891px;}
.h8_c00145{height:72.026239px;}
.h7_c00145{height:72.030270px;}
.h9_c00145{height:90.002205px;}
.ha_c00145{height:120.002160px;}
.hb_c00145{height:168.003024px;}
.h5_c00145{height:234.014157px;}
.h6_c00145{height:282.017060px;}
.h0_c00145{height:698.220000px;}
.h1_c00145{height:698.250000px;}
.w1_c00145{width:945.750000px;}
.w0_c00145{width:946.050000px;}
.x0_c00145{left:0.000000px;}
.x1e_c00145{left:71.947500px;}
.x43_c00145{left:81.886269px;}
.x22_c00145{left:91.544511px;}
.x3c_c00145{left:98.008500px;}
.x33_c00145{left:107.869500px;}
.x2e_c00145{left:127.006500px;}
.x34_c00145{left:136.932000px;}
.x44_c00145{left:163.965846px;}
.x3d_c00145{left:173.598000px;}
.x27_c00145{left:177.207000px;}
.x3e_c00145{left:192.405000px;}
.x2f_c00145{left:199.143000px;}
.x35_c00145{left:207.366000px;}
.x28_c00145{left:240.508500px;}
.x18_c00145{left:253.788000px;}
.x36_c00145{left:266.494500px;}
.x23_c00145{left:270.963619px;}
.x5_c00145{left:273.664830px;}
.x1f_c00145{left:308.370000px;}
.x3f_c00145{left:319.188000px;}
.x24_c00145{left:329.982687px;}
.x6_c00145{left:331.189451px;}
.x45_c00145{left:337.064460px;}
.x29_c00145{left:338.340000px;}
.x7_c00145{left:367.897602px;}
.x30_c00145{left:378.504000px;}
.x8_c00145{left:385.383378px;}
.x19_c00145{left:395.845800px;}
.x46_c00145{left:397.561833px;}
.x9_c00145{left:400.805634px;}
.x40_c00145{left:417.456000px;}
.xa_c00145{left:419.654586px;}
.x1a_c00145{left:434.938668px;}
.x47_c00145{left:466.416702px;}
.xb_c00145{left:470.162429px;}
.xc_c00145{left:517.075594px;}
.xd_c00145{left:529.750519px;}
.x48_c00145{left:538.095900px;}
.x20_c00145{left:553.486500px;}
.xe_c00145{left:557.301851px;}
.x2a_c00145{left:573.282000px;}
.xf_c00145{left:576.951596px;}
.x25_c00145{left:580.875211px;}
.x41_c00145{left:590.053500px;}
.x37_c00145{left:608.332500px;}
.x1b_c00145{left:613.738189px;}
.x1_c00145{left:634.386000px;}
.x38_c00145{left:639.358500px;}
.x31_c00145{left:644.715000px;}
.x1c_c00145{left:649.035357px;}
.x2_c00145{left:665.658197px;}
.x26_c00145{left:680.691466px;}
.x3_c00145{left:687.764068px;}
.x10_c00145{left:721.879621px;}
.x2b_c00145{left:743.118000px;}
.x11_c00145{left:776.955310px;}
.x1d_c00145{left:778.705058px;}
.x21_c00145{left:779.908500px;}
.x4_c00145{left:803.332884px;}
.x39_c00145{left:807.003000px;}
.x2c_c00145{left:812.412000px;}
.x12_c00145{left:826.099928px;}
.x13_c00145{left:833.104717px;}
.x32_c00145{left:847.381500px;}
.x14_c00145{left:857.625303px;}
.x15_c00145{left:862.188703px;}
.x2d_c00145{left:863.791500px;}
.x16_c00145{left:869.205531px;}
.x42_c00145{left:874.090500px;}
.x17_c00145{left:879.190118px;}
.x3a_c00145{left:884.011500px;}
.x3b_c00145{left:912.253500px;}
@media print{
.v0_c00145{vertical-align:0.000000pt;}
.ls0_c00145{letter-spacing:0.000000pt;}
.ws0_c00145{word-spacing:0.000000pt;}
.fs0_c00145{font-size:15.992718pt;}
.fs1_c00145{font-size:21.323624pt;}
.fs2_c00145{font-size:63.968792pt;}
.fs6_c00145{font-size:64.023324pt;}
.fs5_c00145{font-size:64.026906pt;}
.fs7_c00145{font-size:80.001960pt;}
.fs8_c00145{font-size:106.668587pt;}
.fs9_c00145{font-size:149.336021pt;}
.fs3_c00145{font-size:208.012584pt;}
.fs4_c00145{font-size:250.681832pt;}
.y0_c00145{bottom:0.000000pt;}
.y4e_c00145{bottom:93.357355pt;}
.y4d_c00145{bottom:94.377000pt;}
.y4c_c00145{bottom:95.356248pt;}
.y4b_c00145{bottom:96.216253pt;}
.y4a_c00145{bottom:98.678168pt;}
.y49_c00145{bottom:99.845285pt;}
.y48_c00145{bottom:152.100896pt;}
.y47_c00145{bottom:153.378176pt;}
.y46_c00145{bottom:153.615760pt;}
.y45_c00145{bottom:154.536280pt;}
.y44_c00145{bottom:155.060376pt;}
.y43_c00145{bottom:155.337960pt;}
.y42_c00145{bottom:155.736552pt;}
.y41_c00145{bottom:155.836856pt;}
.y40_c00145{bottom:156.240000pt;}
.y3f_c00145{bottom:245.117611pt;}
.y3e_c00145{bottom:245.293339pt;}
.y3d_c00145{bottom:245.772503pt;}
.y3c_c00145{bottom:246.815624pt;}
.y3b_c00145{bottom:247.008675pt;}
.y3a_c00145{bottom:249.135667pt;}
.y39_c00145{bottom:249.503577pt;}
.y38_c00145{bottom:249.941833pt;}
.y37_c00145{bottom:250.122667pt;}
.y36_c00145{bottom:261.032333pt;}
.y35_c00145{bottom:265.896329pt;}
.y34_c00145{bottom:267.544121pt;}
.y33_c00145{bottom:272.285393pt;}
.y32_c00145{bottom:276.590057pt;}
.y31_c00145{bottom:278.321333pt;}
.y30_c00145{bottom:297.460044pt;}
.y2f_c00145{bottom:298.784493pt;}
.y2e_c00145{bottom:300.570739pt;}
.y2d_c00145{bottom:301.121545pt;}
.y2c_c00145{bottom:304.948733pt;}
.y2b_c00145{bottom:311.005016pt;}
.y28_c00145{bottom:311.513185pt;}
.y2a_c00145{bottom:313.526895pt;}
.y27_c00145{bottom:314.529413pt;}
.y29_c00145{bottom:315.158667pt;}
.y26_c00145{bottom:322.112539pt;}
.y25_c00145{bottom:323.896427pt;}
.y24_c00145{bottom:329.319191pt;}
.y23_c00145{bottom:343.479048pt;}
.y22_c00145{bottom:345.692952pt;}
.y21_c00145{bottom:347.234624pt;}
.y20_c00145{bottom:348.089647pt;}
.y1f_c00145{bottom:350.401333pt;}
.y1e_c00145{bottom:438.059413pt;}
.y1d_c00145{bottom:441.751488pt;}
.y1c_c00145{bottom:442.756501pt;}
.y1b_c00145{bottom:447.847445pt;}
.y1a_c00145{bottom:448.960533pt;}
.y19_c00145{bottom:453.005333pt;}
.y4_c00145{bottom:478.928597pt;}
.y18_c00145{bottom:479.168113pt;}
.y17_c00145{bottom:479.257269pt;}
.y16_c00145{bottom:479.319289pt;}
.y15_c00145{bottom:479.359941pt;}
.y14_c00145{bottom:479.578553pt;}
.y13_c00145{bottom:479.641553pt;}
.y12_c00145{bottom:480.080481pt;}
.y11_c00145{bottom:480.572217pt;}
.y10_c00145{bottom:481.864761pt;}
.yf_c00145{bottom:482.040361pt;}
.ye_c00145{bottom:482.286625pt;}
.y3_c00145{bottom:482.322009pt;}
.yd_c00145{bottom:482.400105pt;}
.yc_c00145{bottom:482.818849pt;}
.y2_c00145{bottom:482.971097pt;}
.yb_c00145{bottom:483.261409pt;}
.ya_c00145{bottom:483.268469pt;}
.y9_c00145{bottom:483.436557pt;}
.y8_c00145{bottom:483.574701pt;}
.y7_c00145{bottom:483.730765pt;}
.y1_c00145{bottom:483.889333pt;}
.y6_c00145{bottom:484.057881pt;}
.y5_c00145{bottom:484.570853pt;}
.h2_c00145{height:15.992718pt;}
.h3_c00145{height:21.323624pt;}
.h4_c00145{height:63.968792pt;}
.h8_c00145{height:64.023324pt;}
.h7_c00145{height:64.026906pt;}
.h9_c00145{height:80.001960pt;}
.ha_c00145{height:106.668587pt;}
.hb_c00145{height:149.336021pt;}
.h5_c00145{height:208.012584pt;}
.h6_c00145{height:250.681832pt;}
.h0_c00145{height:620.640000pt;}
.h1_c00145{height:620.666667pt;}
.w1_c00145{width:840.666667pt;}
.w0_c00145{width:840.933333pt;}
.x0_c00145{left:0.000000pt;}
.x1e_c00145{left:63.953333pt;}
.x43_c00145{left:72.787795pt;}
.x22_c00145{left:81.372899pt;}
.x3c_c00145{left:87.118667pt;}
.x33_c00145{left:95.884000pt;}
.x2e_c00145{left:112.894667pt;}
.x34_c00145{left:121.717333pt;}
.x44_c00145{left:145.747419pt;}
.x3d_c00145{left:154.309333pt;}
.x27_c00145{left:157.517333pt;}
.x3e_c00145{left:171.026667pt;}
.x2f_c00145{left:177.016000pt;}
.x35_c00145{left:184.325333pt;}
.x28_c00145{left:213.785333pt;}
.x18_c00145{left:225.589333pt;}
.x36_c00145{left:236.884000pt;}
.x23_c00145{left:240.856551pt;}
.x5_c00145{left:243.257627pt;}
.x1f_c00145{left:274.106667pt;}
.x3f_c00145{left:283.722667pt;}
.x24_c00145{left:293.317944pt;}
.x6_c00145{left:294.390623pt;}
.x45_c00145{left:299.612853pt;}
.x29_c00145{left:300.746667pt;}
.x7_c00145{left:327.020091pt;}
.x30_c00145{left:336.448000pt;}
.x8_c00145{left:342.563003pt;}
.x19_c00145{left:351.862933pt;}
.x46_c00145{left:353.388296pt;}
.x9_c00145{left:356.271675pt;}
.x40_c00145{left:371.072000pt;}
.xa_c00145{left:373.026299pt;}
.x1a_c00145{left:386.612149pt;}
.x47_c00145{left:414.592624pt;}
.xb_c00145{left:417.922159pt;}
.xc_c00145{left:459.622751pt;}
.xd_c00145{left:470.889351pt;}
.x48_c00145{left:478.307467pt;}
.x20_c00145{left:491.988000pt;}
.xe_c00145{left:495.379423pt;}
.x2a_c00145{left:509.584000pt;}
.xf_c00145{left:512.845863pt;}
.x25_c00145{left:516.333521pt;}
.x41_c00145{left:524.492000pt;}
.x37_c00145{left:540.740000pt;}
.x1b_c00145{left:545.545057pt;}
.x1_c00145{left:563.898667pt;}
.x38_c00145{left:568.318667pt;}
.x31_c00145{left:573.080000pt;}
.x1c_c00145{left:576.920317pt;}
.x2_c00145{left:591.696175pt;}
.x26_c00145{left:605.059081pt;}
.x3_c00145{left:611.345839pt;}
.x10_c00145{left:641.670775pt;}
.x2b_c00145{left:660.549333pt;}
.x11_c00145{left:690.626943pt;}
.x1d_c00145{left:692.182273pt;}
.x21_c00145{left:693.252000pt;}
.x4_c00145{left:714.073675pt;}
.x39_c00145{left:717.336000pt;}
.x2c_c00145{left:722.144000pt;}
.x12_c00145{left:734.311047pt;}
.x13_c00145{left:740.537527pt;}
.x32_c00145{left:753.228000pt;}
.x14_c00145{left:762.333603pt;}
.x15_c00145{left:766.389959pt;}
.x2d_c00145{left:767.814667pt;}
.x16_c00145{left:772.627139pt;}
.x42_c00145{left:776.969333pt;}
.x17_c00145{left:781.502327pt;}
.x3a_c00145{left:785.788000pt;}
.x3b_c00145{left:810.892000pt;}
}





/* 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_c00146 {
    display:none;
  }
  .loading-indicator_c00146.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00146 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_c00146 { 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_c00146" -> "#page-container .classname_c00146")
 */
.pf_c00146 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00146 { /* 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_c00146.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00146 { /* 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_c00146 { /* 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_c00146 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00146 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00146 {overflow:visible;}
  }
}
.c_c00146 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00146 { /* 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_c00146:after { /* webkit #35443 */
  content: '';
}
.t_c00146:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00146 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 */
}
.__c00146 { /* 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_c00146 { /* info for Javascript */
  display:none;
}
.l_c00146 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00146 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00146 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00146: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_c00146 {
    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_c00146.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00146.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_c00146 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00146{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00146;src:url('chunks/assets/font_ffdda91d43f5751d6c5cd797.woff2')format("woff");}.ff1_c00146{font-family:ff1_c00146;line-height:1.000000;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;}
.m6_c00146{transform:matrix(0.023049,0.000230,-0.002500,0.249988,0,0);-ms-transform:matrix(0.023049,0.000230,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.023049,0.000230,-0.002500,0.249988,0,0);}
.m10_c00146{transform:matrix(0.042420,0.000636,-0.003750,0.249972,0,0);-ms-transform:matrix(0.042420,0.000636,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.042420,0.000636,-0.003750,0.249972,0,0);}
.m13_c00146{transform:matrix(0.047430,0.000711,-0.003750,0.249972,0,0);-ms-transform:matrix(0.047430,0.000711,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.047430,0.000711,-0.003750,0.249972,0,0);}
.m14_c00146{transform:matrix(0.054079,0.000811,-0.003750,0.249972,0,0);-ms-transform:matrix(0.054079,0.000811,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.054079,0.000811,-0.003750,0.249972,0,0);}
.m12_c00146{transform:matrix(0.084845,0.001273,-0.003750,0.249972,0,0);-ms-transform:matrix(0.084845,0.001273,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.084845,0.001273,-0.003750,0.249972,0,0);}
.m11_c00146{transform:matrix(0.094859,0.001423,-0.003750,0.249972,0,0);-ms-transform:matrix(0.094859,0.001423,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.094859,0.001423,-0.003750,0.249972,0,0);}
.m9_c00146{transform:matrix(0.109200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109200,0.000000,0.000000,0.250000,0,0);}
.m19_c00146{transform:matrix(0.134150,0.002012,-0.003750,0.249972,0,0);-ms-transform:matrix(0.134150,0.002012,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.134150,0.002012,-0.003750,0.249972,0,0);}
.m1_c00146{transform:matrix(0.134233,0.000671,-0.001250,0.249997,0,0);-ms-transform:matrix(0.134233,0.000671,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.134233,0.000671,-0.001250,0.249997,0,0);}
.m17_c00146{transform:matrix(0.195553,0.002933,-0.003750,0.249972,0,0);-ms-transform:matrix(0.195553,0.002933,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.195553,0.002933,-0.003750,0.249972,0,0);}
.m7_c00146{transform:matrix(0.200125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200125,0.000000,0.000000,0.250000,0,0);}
.ma_c00146{transform:matrix(0.210535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210535,0.000000,0.000000,0.250000,0,0);}
.mc_c00146{transform:matrix(0.224866,0.003598,-0.003999,0.249968,0,0);-ms-transform:matrix(0.224866,0.003598,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.224866,0.003598,-0.003999,0.249968,0,0);}
.mb_c00146{transform:matrix(0.225411,0.003607,-0.003999,0.249968,0,0);-ms-transform:matrix(0.225411,0.003607,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.225411,0.003607,-0.003999,0.249968,0,0);}
.m8_c00146{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m2_c00146{transform:matrix(0.268047,0.002680,-0.002500,0.249988,0,0);-ms-transform:matrix(0.268047,0.002680,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.268047,0.002680,-0.002500,0.249988,0,0);}
.m0_c00146{transform:matrix(0.271217,0.001356,-0.001250,0.249997,0,0);-ms-transform:matrix(0.271217,0.001356,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.271217,0.001356,-0.001250,0.249997,0,0);}
.m1a_c00146{transform:matrix(0.274929,0.004124,-0.003750,0.249972,0,0);-ms-transform:matrix(0.274929,0.004124,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.274929,0.004124,-0.003750,0.249972,0,0);}
.m1d_c00146{transform:matrix(0.316389,0.004746,-0.003750,0.249972,0,0);-ms-transform:matrix(0.316389,0.004746,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.316389,0.004746,-0.003750,0.249972,0,0);}
.m18_c00146{transform:matrix(0.381137,0.005717,-0.003750,0.249972,0,0);-ms-transform:matrix(0.381137,0.005717,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.381137,0.005717,-0.003750,0.249972,0,0);}
.mf_c00146{transform:matrix(0.437269,0.006996,-0.003999,0.249968,0,0);-ms-transform:matrix(0.437269,0.006996,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.437269,0.006996,-0.003999,0.249968,0,0);}
.m1b_c00146{transform:matrix(0.445465,0.006682,-0.003750,0.249972,0,0);-ms-transform:matrix(0.445465,0.006682,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.445465,0.006682,-0.003750,0.249972,0,0);}
.m4_c00146{transform:matrix(0.498980,0.004990,-0.002500,0.249988,0,0);-ms-transform:matrix(0.498980,0.004990,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.498980,0.004990,-0.002500,0.249988,0,0);}
.m15_c00146{transform:matrix(0.524726,0.007871,-0.003750,0.249972,0,0);-ms-transform:matrix(0.524726,0.007871,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.524726,0.007871,-0.003750,0.249972,0,0);}
.m1f_c00146{transform:matrix(0.665400,0.009981,-0.003750,0.249972,0,0);-ms-transform:matrix(0.665400,0.009981,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.665400,0.009981,-0.003750,0.249972,0,0);}
.m3_c00146{transform:matrix(0.787836,0.007878,-0.002500,0.249988,0,0);-ms-transform:matrix(0.787836,0.007878,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.787836,0.007878,-0.002500,0.249988,0,0);}
.me_c00146{transform:matrix(0.798923,0.012783,-0.003999,0.249968,0,0);-ms-transform:matrix(0.798923,0.012783,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.798923,0.012783,-0.003999,0.249968,0,0);}
.m1c_c00146{transform:matrix(1.171218,0.017568,-0.003750,0.249972,0,0);-ms-transform:matrix(1.171218,0.017568,-0.003750,0.249972,0,0);-webkit-transform:matrix(1.171218,0.017568,-0.003750,0.249972,0,0);}
.m1e_c00146{transform:matrix(1.183727,0.017756,-0.003750,0.249972,0,0);-ms-transform:matrix(1.183727,0.017756,-0.003750,0.249972,0,0);-webkit-transform:matrix(1.183727,0.017756,-0.003750,0.249972,0,0);}
.md_c00146{transform:matrix(1.503878,0.024062,-0.003999,0.249968,0,0);-ms-transform:matrix(1.503878,0.024062,-0.003999,0.249968,0,0);-webkit-transform:matrix(1.503878,0.024062,-0.003999,0.249968,0,0);}
.m16_c00146{transform:matrix(1.568774,0.023532,-0.003750,0.249972,0,0);-ms-transform:matrix(1.568774,0.023532,-0.003750,0.249972,0,0);-webkit-transform:matrix(1.568774,0.023532,-0.003750,0.249972,0,0);}
.m5_c00146{transform:matrix(1.751262,0.017513,-0.002500,0.249988,0,0);-ms-transform:matrix(1.751262,0.017513,-0.002500,0.249988,0,0);-webkit-transform:matrix(1.751262,0.017513,-0.002500,0.249988,0,0);}
.v0_c00146{vertical-align:0.000000px;}
.ls0_c00146{letter-spacing:0.000000px;}
.sc__c00146{text-shadow:none;}
.sc0_c00146{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__c00146{-webkit-text-stroke:0px transparent;}
.sc0_c00146{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00146{word-spacing:0.000000px;}
.fc0_c00146{color:transparent;}
.fs2_c00146{font-size:18.000000px;}
.fs4_c00146{font-size:18.002025px;}
.fs5_c00146{font-size:24.002700px;}
.fs0_c00146{font-size:42.000525px;}
.fs1_c00146{font-size:108.005400px;}
.fs3_c00146{font-size:198.025342px;}
.y0_c00146{bottom:0.000000px;}
.y21_c00146{bottom:1.640182px;}
.y20_c00146{bottom:3.316927px;}
.y1f_c00146{bottom:3.549982px;}
.y1c_c00146{bottom:6.783480px;}
.y1e_c00146{bottom:7.120102px;}
.y1b_c00146{bottom:8.775202px;}
.y1a_c00146{bottom:9.077085px;}
.y19_c00146{bottom:9.927742px;}
.y18_c00146{bottom:10.478610px;}
.y17_c00146{bottom:11.074140px;}
.y16_c00146{bottom:12.443130px;}
.y1d_c00146{bottom:13.262377px;}
.y15_c00146{bottom:15.231082px;}
.y14_c00146{bottom:15.959767px;}
.y13_c00146{bottom:16.547985px;}
.y12_c00146{bottom:16.758563px;}
.y11_c00146{bottom:17.010000px;}
.y10_c00146{bottom:79.435092px;}
.yf_c00146{bottom:82.365036px;}
.ye_c00146{bottom:89.126964px;}
.yd_c00146{bottom:90.444636px;}
.yc_c00146{bottom:92.341500px;}
.yb_c00146{bottom:201.960000px;}
.ya_c00146{bottom:207.360000px;}
.y9_c00146{bottom:211.140000px;}
.y8_c00146{bottom:233.550000px;}
.y7_c00146{bottom:253.259445px;}
.y6_c00146{bottom:255.310695px;}
.y5_c00146{bottom:255.707790px;}
.y4_c00146{bottom:257.409360px;}
.y3_c00146{bottom:257.581500px;}
.y2_c00146{bottom:466.276350px;}
.y1_c00146{bottom:470.880000px;}
.h4_c00146{height:18.000000px;}
.h6_c00146{height:18.002025px;}
.h7_c00146{height:24.002700px;}
.h2_c00146{height:42.000525px;}
.h3_c00146{height:108.005400px;}
.h5_c00146{height:198.025342px;}
.h0_c00146{height:698.220000px;}
.h1_c00146{height:698.250000px;}
.w1_c00146{width:945.750000px;}
.w0_c00146{width:946.050000px;}
.x0_c00146{left:0.000000px;}
.xd_c00146{left:3.772500px;}
.x8_c00146{left:6.907500px;}
.x3_c00146{left:8.980500px;}
.x1_c00146{left:11.025000px;}
.xe_c00146{left:20.535000px;}
.x19_c00146{left:23.462228px;}
.x4_c00146{left:26.194500px;}
.xf_c00146{left:34.573500px;}
.x10_c00146{left:73.788000px;}
.x11_c00146{left:122.367000px;}
.x9_c00146{left:125.461500px;}
.x5_c00146{left:196.351500px;}
.xa_c00146{left:207.816000px;}
.x6_c00146{left:236.061000px;}
.x12_c00146{left:308.230500px;}
.x13_c00146{left:399.496500px;}
.x1a_c00146{left:432.947227px;}
.x14_c00146{left:439.198500px;}
.x7_c00146{left:441.186000px;}
.x15_c00146{left:475.923000px;}
.x16_c00146{left:532.633500px;}
.x17_c00146{left:552.759000px;}
.xb_c00146{left:630.436500px;}
.x1b_c00146{left:670.955227px;}
.x18_c00146{left:685.540500px;}
.x1c_c00146{left:798.275227px;}
.xc_c00146{left:813.558000px;}
.x2_c00146{left:931.755000px;}
@media print{
.v0_c00146{vertical-align:0.000000pt;}
.ls0_c00146{letter-spacing:0.000000pt;}
.ws0_c00146{word-spacing:0.000000pt;}
.fs2_c00146{font-size:16.000000pt;}
.fs4_c00146{font-size:16.001800pt;}
.fs5_c00146{font-size:21.335733pt;}
.fs0_c00146{font-size:37.333800pt;}
.fs1_c00146{font-size:96.004800pt;}
.fs3_c00146{font-size:176.022527pt;}
.y0_c00146{bottom:0.000000pt;}
.y21_c00146{bottom:1.457940pt;}
.y20_c00146{bottom:2.948380pt;}
.y1f_c00146{bottom:3.155540pt;}
.y1c_c00146{bottom:6.029760pt;}
.y1e_c00146{bottom:6.328980pt;}
.y1b_c00146{bottom:7.800180pt;}
.y1a_c00146{bottom:8.068520pt;}
.y19_c00146{bottom:8.824660pt;}
.y18_c00146{bottom:9.314320pt;}
.y17_c00146{bottom:9.843680pt;}
.y16_c00146{bottom:11.060560pt;}
.y1d_c00146{bottom:11.788780pt;}
.y15_c00146{bottom:13.538740pt;}
.y14_c00146{bottom:14.186460pt;}
.y13_c00146{bottom:14.709320pt;}
.y12_c00146{bottom:14.896500pt;}
.y11_c00146{bottom:15.120000pt;}
.y10_c00146{bottom:70.608971pt;}
.yf_c00146{bottom:73.213365pt;}
.ye_c00146{bottom:79.223968pt;}
.yd_c00146{bottom:80.395232pt;}
.yc_c00146{bottom:82.081333pt;}
.yb_c00146{bottom:179.520000pt;}
.ya_c00146{bottom:184.320000pt;}
.y9_c00146{bottom:187.680000pt;}
.y8_c00146{bottom:207.600000pt;}
.y7_c00146{bottom:225.119507pt;}
.y6_c00146{bottom:226.942840pt;}
.y5_c00146{bottom:227.295813pt;}
.y4_c00146{bottom:228.808320pt;}
.y3_c00146{bottom:228.961333pt;}
.y2_c00146{bottom:414.467867pt;}
.y1_c00146{bottom:418.560000pt;}
.h4_c00146{height:16.000000pt;}
.h6_c00146{height:16.001800pt;}
.h7_c00146{height:21.335733pt;}
.h2_c00146{height:37.333800pt;}
.h3_c00146{height:96.004800pt;}
.h5_c00146{height:176.022527pt;}
.h0_c00146{height:620.640000pt;}
.h1_c00146{height:620.666667pt;}
.w1_c00146{width:840.666667pt;}
.w0_c00146{width:840.933333pt;}
.x0_c00146{left:0.000000pt;}
.xd_c00146{left:3.353333pt;}
.x8_c00146{left:6.140000pt;}
.x3_c00146{left:7.982667pt;}
.x1_c00146{left:9.800000pt;}
.xe_c00146{left:18.253333pt;}
.x19_c00146{left:20.855313pt;}
.x4_c00146{left:23.284000pt;}
.xf_c00146{left:30.732000pt;}
.x10_c00146{left:65.589333pt;}
.x11_c00146{left:108.770667pt;}
.x9_c00146{left:111.521333pt;}
.x5_c00146{left:174.534667pt;}
.xa_c00146{left:184.725333pt;}
.x6_c00146{left:209.832000pt;}
.x12_c00146{left:273.982667pt;}
.x13_c00146{left:355.108000pt;}
.x1a_c00146{left:384.841980pt;}
.x14_c00146{left:390.398667pt;}
.x7_c00146{left:392.165333pt;}
.x15_c00146{left:423.042667pt;}
.x16_c00146{left:473.452000pt;}
.x17_c00146{left:491.341333pt;}
.xb_c00146{left:560.388000pt;}
.x1b_c00146{left:596.404647pt;}
.x18_c00146{left:609.369333pt;}
.x1c_c00146{left:709.577980pt;}
.xc_c00146{left:723.162667pt;}
.x2_c00146{left:828.226667pt;}
}





/* 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_c00147 {
    display:none;
  }
  .loading-indicator_c00147.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00147 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_c00147 { 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_c00147" -> "#page-container .classname_c00147")
 */
.pf_c00147 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00147 { /* 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_c00147.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00147 { /* 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_c00147 { /* 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_c00147 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00147 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00147 {overflow:visible;}
  }
}
.c_c00147 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00147 { /* 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_c00147:after { /* webkit #35443 */
  content: '';
}
.t_c00147:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00147 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 */
}
.__c00147 { /* 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_c00147 { /* info for Javascript */
  display:none;
}
.l_c00147 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00147 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00147 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00147: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_c00147 {
    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_c00147.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00147.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_c00147 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00147{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00147;src:url('chunks/assets/font_a72a081e1d55f37b0ea09712.woff2')format("woff");}.ff1_c00147{font-family:ff1_c00147;line-height:1.000000;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;}
.m1_c00147{transform:matrix(0.095460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.095460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.095460,0.000000,0.000000,0.250000,0,0);}
.m4_c00147{transform:matrix(0.161245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161245,0.000000,0.000000,0.250000,0,0);}
.m0_c00147{transform:matrix(0.196295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196295,0.000000,0.000000,0.250000,0,0);}
.m2_c00147{transform:matrix(0.668690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.668690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.668690,0.000000,0.000000,0.250000,0,0);}
.m3_c00147{transform:matrix(0.688205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.688205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.688205,0.000000,0.000000,0.250000,0,0);}
.v0_c00147{vertical-align:0.000000px;}
.ls0_c00147{letter-spacing:0.000000px;}
.sc__c00147{text-shadow:none;}
.sc0_c00147{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__c00147{-webkit-text-stroke:0px transparent;}
.sc0_c00147{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00147{word-spacing:0.000000px;}
.fc0_c00147{color:transparent;}
.fs1_c00147{font-size:12.000000px;}
.fs2_c00147{font-size:18.000000px;}
.fs0_c00147{font-size:24.000000px;}
.y0_c00147{bottom:0.000000px;}
.y4_c00147{bottom:617.220000px;}
.y3_c00147{bottom:620.053500px;}
.y2_c00147{bottom:622.752000px;}
.y1_c00147{bottom:629.910000px;}
.h3_c00147{height:12.000000px;}
.h4_c00147{height:18.000000px;}
.h2_c00147{height:24.000000px;}
.h0_c00147{height:698.220000px;}
.h1_c00147{height:698.250000px;}
.w1_c00147{width:945.750000px;}
.w0_c00147{width:946.050000px;}
.x0_c00147{left:0.000000px;}
.x4_c00147{left:284.580000px;}
.x1_c00147{left:287.280000px;}
.x2_c00147{left:288.630000px;}
.x3_c00147{left:305.910000px;}
@media print{
.v0_c00147{vertical-align:0.000000pt;}
.ls0_c00147{letter-spacing:0.000000pt;}
.ws0_c00147{word-spacing:0.000000pt;}
.fs1_c00147{font-size:10.666667pt;}
.fs2_c00147{font-size:16.000000pt;}
.fs0_c00147{font-size:21.333333pt;}
.y0_c00147{bottom:0.000000pt;}
.y4_c00147{bottom:548.640000pt;}
.y3_c00147{bottom:551.158667pt;}
.y2_c00147{bottom:553.557333pt;}
.y1_c00147{bottom:559.920000pt;}
.h3_c00147{height:10.666667pt;}
.h4_c00147{height:16.000000pt;}
.h2_c00147{height:21.333333pt;}
.h0_c00147{height:620.640000pt;}
.h1_c00147{height:620.666667pt;}
.w1_c00147{width:840.666667pt;}
.w0_c00147{width:840.933333pt;}
.x0_c00147{left:0.000000pt;}
.x4_c00147{left:252.960000pt;}
.x1_c00147{left:255.360000pt;}
.x2_c00147{left:256.560000pt;}
.x3_c00147{left:271.920000pt;}
}





/* 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_c00148 {
    display:none;
  }
  .loading-indicator_c00148.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00148 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_c00148 { 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_c00148" -> "#page-container .classname_c00148")
 */
.pf_c00148 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00148 { /* 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_c00148.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00148 { /* 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_c00148 { /* 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_c00148 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00148 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00148 {overflow:visible;}
  }
}
.c_c00148 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00148 { /* 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_c00148:after { /* webkit #35443 */
  content: '';
}
.t_c00148:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00148 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 */
}
.__c00148 { /* 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_c00148 { /* info for Javascript */
  display:none;
}
.l_c00148 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00148 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00148 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00148: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_c00148 {
    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_c00148.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00148.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_c00148 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00148{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00148;src:url('chunks/assets/font_59dc3ab2e04ed21d4ac9992b.woff2')format("woff");}.ff1_c00148{font-family:ff1_c00148;line-height:1.000000;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;}
.m1a_c00148{transform:matrix(0.014995,0.000375,-0.006248,0.249922,0,0);-ms-transform:matrix(0.014995,0.000375,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.014995,0.000375,-0.006248,0.249922,0,0);}
.m0_c00148{transform:matrix(0.123695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123695,0.000000,0.000000,0.250000,0,0);}
.m1_c00148{transform:matrix(0.128380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128380,0.000000,0.000000,0.250000,0,0);}
.m3_c00148{transform:matrix(0.185375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185375,0.000000,0.000000,0.250000,0,0);}
.m1b_c00148{transform:matrix(0.199768,0.004994,-0.006248,0.249922,0,0);-ms-transform:matrix(0.199768,0.004994,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.199768,0.004994,-0.006248,0.249922,0,0);}
.ma_c00148{transform:matrix(0.205195,0.005745,-0.006997,0.249902,0,0);-ms-transform:matrix(0.205195,0.005745,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.205195,0.005745,-0.006997,0.249902,0,0);}
.m2_c00148{transform:matrix(0.209340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209340,0.000000,0.000000,0.250000,0,0);}
.m15_c00148{transform:matrix(0.218990,0.005913,-0.006748,0.249909,0,0);-ms-transform:matrix(0.218990,0.005913,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.218990,0.005913,-0.006748,0.249909,0,0);}
.m8_c00148{transform:matrix(0.275932,0.007726,-0.006997,0.249902,0,0);-ms-transform:matrix(0.275932,0.007726,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.275932,0.007726,-0.006997,0.249902,0,0);}
.m6_c00148{transform:matrix(0.286113,0.008011,-0.006997,0.249902,0,0);-ms-transform:matrix(0.286113,0.008011,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.286113,0.008011,-0.006997,0.249902,0,0);}
.m4_c00148{transform:matrix(0.289332,0.008101,-0.006997,0.249902,0,0);-ms-transform:matrix(0.289332,0.008101,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.289332,0.008101,-0.006997,0.249902,0,0);}
.me_c00148{transform:matrix(0.292811,0.007613,-0.006498,0.249916,0,0);-ms-transform:matrix(0.292811,0.007613,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.292811,0.007613,-0.006498,0.249916,0,0);}
.m7_c00148{transform:matrix(0.332785,0.009318,-0.006997,0.249902,0,0);-ms-transform:matrix(0.332785,0.009318,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.332785,0.009318,-0.006997,0.249902,0,0);}
.m12_c00148{transform:matrix(0.359988,0.009360,-0.006498,0.249916,0,0);-ms-transform:matrix(0.359988,0.009360,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.359988,0.009360,-0.006498,0.249916,0,0);}
.m16_c00148{transform:matrix(0.395266,0.010672,-0.006748,0.249909,0,0);-ms-transform:matrix(0.395266,0.010672,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.395266,0.010672,-0.006748,0.249909,0,0);}
.m5_c00148{transform:matrix(0.406041,0.011369,-0.006997,0.249902,0,0);-ms-transform:matrix(0.406041,0.011369,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.406041,0.011369,-0.006997,0.249902,0,0);}
.m11_c00148{transform:matrix(0.436013,0.011336,-0.006498,0.249916,0,0);-ms-transform:matrix(0.436013,0.011336,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.436013,0.011336,-0.006498,0.249916,0,0);}
.m14_c00148{transform:matrix(0.505071,0.013637,-0.006748,0.249909,0,0);-ms-transform:matrix(0.505071,0.013637,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.505071,0.013637,-0.006748,0.249909,0,0);}
.mf_c00148{transform:matrix(0.519055,0.013495,-0.006498,0.249916,0,0);-ms-transform:matrix(0.519055,0.013495,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.519055,0.013495,-0.006498,0.249916,0,0);}
.md_c00148{transform:matrix(0.523060,0.014646,-0.006997,0.249902,0,0);-ms-transform:matrix(0.523060,0.014646,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.523060,0.014646,-0.006997,0.249902,0,0);}
.m9_c00148{transform:matrix(0.614594,0.017209,-0.006997,0.249902,0,0);-ms-transform:matrix(0.614594,0.017209,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.614594,0.017209,-0.006997,0.249902,0,0);}
.m19_c00148{transform:matrix(0.637081,0.015927,-0.006248,0.249922,0,0);-ms-transform:matrix(0.637081,0.015927,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.637081,0.015927,-0.006248,0.249922,0,0);}
.mb_c00148{transform:matrix(0.757908,0.021221,-0.006997,0.249902,0,0);-ms-transform:matrix(0.757908,0.021221,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.757908,0.021221,-0.006997,0.249902,0,0);}
.m10_c00148{transform:matrix(0.913051,0.023739,-0.006498,0.249916,0,0);-ms-transform:matrix(0.913051,0.023739,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.913051,0.023739,-0.006498,0.249916,0,0);}
.mc_c00148{transform:matrix(1.061099,0.029711,-0.006997,0.249902,0,0);-ms-transform:matrix(1.061099,0.029711,-0.006997,0.249902,0,0);-webkit-transform:matrix(1.061099,0.029711,-0.006997,0.249902,0,0);}
.m17_c00148{transform:matrix(1.081701,0.029206,-0.006748,0.249909,0,0);-ms-transform:matrix(1.081701,0.029206,-0.006748,0.249909,0,0);-webkit-transform:matrix(1.081701,0.029206,-0.006748,0.249909,0,0);}
.m1c_c00148{transform:matrix(1.113055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.113055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.113055,0.000000,0.000000,0.250000,0,0);}
.m18_c00148{transform:matrix(1.221335,0.032976,-0.006748,0.249909,0,0);-ms-transform:matrix(1.221335,0.032976,-0.006748,0.249909,0,0);-webkit-transform:matrix(1.221335,0.032976,-0.006748,0.249909,0,0);}
.m13_c00148{transform:matrix(1.375525,0.035764,-0.006498,0.249916,0,0);-ms-transform:matrix(1.375525,0.035764,-0.006498,0.249916,0,0);-webkit-transform:matrix(1.375525,0.035764,-0.006498,0.249916,0,0);}
.v0_c00148{vertical-align:0.000000px;}
.ls0_c00148{letter-spacing:0.000000px;}
.sc__c00148{text-shadow:none;}
.sc0_c00148{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__c00148{-webkit-text-stroke:0px transparent;}
.sc0_c00148{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00148{word-spacing:0.000000px;}
.fc0_c00148{color:transparent;}
.fs0_c00148{font-size:36.000000px;}
.fs1_c00148{font-size:48.000000px;}
.fs2_c00148{font-size:60.000000px;}
.fs8_c00148{font-size:78.000000px;}
.fs5_c00148{font-size:78.026360px;}
.fs6_c00148{font-size:78.028426px;}
.fs7_c00148{font-size:90.028121px;}
.fs4_c00148{font-size:120.040553px;}
.fs3_c00148{font-size:126.049382px;}
.y0_c00148{bottom:0.000000px;}
.y1c_c00148{bottom:16.049475px;}
.y1b_c00148{bottom:18.215362px;}
.y1a_c00148{bottom:21.066000px;}
.y19_c00148{bottom:88.012830px;}
.y18_c00148{bottom:94.154695px;}
.y17_c00148{bottom:96.750988px;}
.y16_c00148{bottom:97.550215px;}
.y15_c00148{bottom:98.832000px;}
.y1d_c00148{bottom:113.125500px;}
.y14_c00148{bottom:151.017360px;}
.y13_c00148{bottom:153.029763px;}
.y12_c00148{bottom:154.618077px;}
.y11_c00148{bottom:157.654173px;}
.y10_c00148{bottom:160.934283px;}
.yf_c00148{bottom:194.146500px;}
.y4_c00148{bottom:196.020000px;}
.ye_c00148{bottom:206.401854px;}
.yd_c00148{bottom:207.389358px;}
.yc_c00148{bottom:215.264232px;}
.yb_c00148{bottom:215.713464px;}
.ya_c00148{bottom:217.030500px;}
.y8_c00148{bottom:218.064540px;}
.y9_c00148{bottom:218.081340px;}
.y7_c00148{bottom:220.980768px;}
.y6_c00148{bottom:224.012622px;}
.y5_c00148{bottom:225.199500px;}
.y3_c00148{bottom:257.580000px;}
.y2_c00148{bottom:272.430000px;}
.y1_c00148{bottom:294.300000px;}
.h2_c00148{height:36.000000px;}
.h3_c00148{height:48.000000px;}
.h4_c00148{height:60.000000px;}
.ha_c00148{height:78.000000px;}
.h7_c00148{height:78.026360px;}
.h8_c00148{height:78.028426px;}
.h9_c00148{height:90.028121px;}
.h6_c00148{height:120.040553px;}
.h5_c00148{height:126.049382px;}
.h0_c00148{height:698.220000px;}
.h1_c00148{height:698.250000px;}
.w1_c00148{width:945.750000px;}
.w0_c00148{width:946.050000px;}
.x0_c00148{left:0.000000px;}
.x1_c00148{left:1.350000px;}
.xc_c00148{left:23.212884px;}
.xb_c00148{left:24.222000px;}
.x10_c00148{left:28.693500px;}
.x2_c00148{left:36.295500px;}
.x11_c00148{left:76.167000px;}
.x3_c00148{left:78.684000px;}
.x12_c00148{left:105.768000px;}
.xd_c00148{left:144.694725px;}
.x4_c00148{left:186.964500px;}
.x13_c00148{left:201.927000px;}
.x15_c00148{left:220.426500px;}
.xe_c00148{left:257.137800px;}
.x5_c00148{left:291.115500px;}
.x16_c00148{left:307.062000px;}
.xf_c00148{left:315.975279px;}
.x6_c00148{left:328.045500px;}
.x7_c00148{left:375.082500px;}
.x8_c00148{left:391.126500px;}
.x14_c00148{left:429.403500px;}
.x17_c00148{left:590.760000px;}
.x9_c00148{left:672.372000px;}
.xa_c00148{left:707.640000px;}
@media print{
.v0_c00148{vertical-align:0.000000pt;}
.ls0_c00148{letter-spacing:0.000000pt;}
.ws0_c00148{word-spacing:0.000000pt;}
.fs0_c00148{font-size:32.000000pt;}
.fs1_c00148{font-size:42.666667pt;}
.fs2_c00148{font-size:53.333333pt;}
.fs8_c00148{font-size:69.333333pt;}
.fs5_c00148{font-size:69.356764pt;}
.fs6_c00148{font-size:69.358601pt;}
.fs7_c00148{font-size:80.024996pt;}
.fs4_c00148{font-size:106.702714pt;}
.fs3_c00148{font-size:112.043895pt;}
.y0_c00148{bottom:0.000000pt;}
.y1c_c00148{bottom:14.266200pt;}
.y1b_c00148{bottom:16.191433pt;}
.y1a_c00148{bottom:18.725333pt;}
.y19_c00148{bottom:78.233627pt;}
.y18_c00148{bottom:83.693063pt;}
.y17_c00148{bottom:86.000879pt;}
.y16_c00148{bottom:86.711303pt;}
.y15_c00148{bottom:87.850667pt;}
.y1d_c00148{bottom:100.556000pt;}
.y14_c00148{bottom:134.237653pt;}
.y13_c00148{bottom:136.026456pt;}
.y12_c00148{bottom:137.438291pt;}
.y11_c00148{bottom:140.137043pt;}
.y10_c00148{bottom:143.052696pt;}
.yf_c00148{bottom:172.574667pt;}
.y4_c00148{bottom:174.240000pt;}
.ye_c00148{bottom:183.468315pt;}
.yd_c00148{bottom:184.346096pt;}
.yc_c00148{bottom:191.345984pt;}
.yb_c00148{bottom:191.745301pt;}
.ya_c00148{bottom:192.916000pt;}
.y8_c00148{bottom:193.835147pt;}
.y9_c00148{bottom:193.850080pt;}
.y7_c00148{bottom:196.427349pt;}
.y6_c00148{bottom:199.122331pt;}
.y5_c00148{bottom:200.177333pt;}
.y3_c00148{bottom:228.960000pt;}
.y2_c00148{bottom:242.160000pt;}
.y1_c00148{bottom:261.600000pt;}
.h2_c00148{height:32.000000pt;}
.h3_c00148{height:42.666667pt;}
.h4_c00148{height:53.333333pt;}
.ha_c00148{height:69.333333pt;}
.h7_c00148{height:69.356764pt;}
.h8_c00148{height:69.358601pt;}
.h9_c00148{height:80.024996pt;}
.h6_c00148{height:106.702714pt;}
.h5_c00148{height:112.043895pt;}
.h0_c00148{height:620.640000pt;}
.h1_c00148{height:620.666667pt;}
.w1_c00148{width:840.666667pt;}
.w0_c00148{width:840.933333pt;}
.x0_c00148{left:0.000000pt;}
.x1_c00148{left:1.200000pt;}
.xc_c00148{left:20.633675pt;}
.xb_c00148{left:21.530667pt;}
.x10_c00148{left:25.505333pt;}
.x2_c00148{left:32.262667pt;}
.x11_c00148{left:67.704000pt;}
.x3_c00148{left:69.941333pt;}
.x12_c00148{left:94.016000pt;}
.xd_c00148{left:128.617533pt;}
.x4_c00148{left:166.190667pt;}
.x13_c00148{left:179.490667pt;}
.x15_c00148{left:195.934667pt;}
.xe_c00148{left:228.566933pt;}
.x5_c00148{left:258.769333pt;}
.x16_c00148{left:272.944000pt;}
.xf_c00148{left:280.866915pt;}
.x6_c00148{left:291.596000pt;}
.x7_c00148{left:333.406667pt;}
.x8_c00148{left:347.668000pt;}
.x14_c00148{left:381.692000pt;}
.x17_c00148{left:525.120000pt;}
.x9_c00148{left:597.664000pt;}
.xa_c00148{left:629.013333pt;}
}





/* 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_c00149 {
    display:none;
  }
  .loading-indicator_c00149.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00149 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_c00149 { 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_c00149" -> "#page-container .classname_c00149")
 */
.pf_c00149 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00149 { /* 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_c00149.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00149 { /* 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_c00149 { /* 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_c00149 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00149 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00149 {overflow:visible;}
  }
}
.c_c00149 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00149 { /* 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_c00149:after { /* webkit #35443 */
  content: '';
}
.t_c00149:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00149 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 */
}
.__c00149 { /* 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_c00149 { /* info for Javascript */
  display:none;
}
.l_c00149 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00149 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00149 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00149: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_c00149 {
    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_c00149.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00149.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_c00149 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00149{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00149;src:url('chunks/assets/font_bfe6362fd3009c591583128f.woff2')format("woff");}.ff1_c00149{font-family:ff1_c00149;line-height:1.000000;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;}
.m7_c00149{transform:matrix(0.010945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.010945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.010945,0.000000,0.000000,0.250000,0,0);}
.ma_c00149{transform:matrix(0.161810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161810,0.000000,0.000000,0.250000,0,0);}
.m8_c00149{transform:matrix(0.266190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266190,0.000000,0.000000,0.250000,0,0);}
.m1_c00149{transform:matrix(0.297060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297060,0.000000,0.000000,0.250000,0,0);}
.m3_c00149{transform:matrix(0.364285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364285,0.000000,0.000000,0.250000,0,0);}
.m0_c00149{transform:matrix(0.382425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382425,0.000000,0.000000,0.250000,0,0);}
.m2_c00149{transform:matrix(0.460775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460775,0.000000,0.000000,0.250000,0,0);}
.m9_c00149{transform:matrix(0.491130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491130,0.000000,0.000000,0.250000,0,0);}
.m6_c00149{transform:matrix(0.521450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521450,0.000000,0.000000,0.250000,0,0);}
.m4_c00149{transform:matrix(0.655980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.655980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.655980,0.000000,0.000000,0.250000,0,0);}
.m5_c00149{transform:matrix(1.748535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.748535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.748535,0.000000,0.000000,0.250000,0,0);}
.v0_c00149{vertical-align:0.000000px;}
.ls0_c00149{letter-spacing:0.000000px;}
.sc__c00149{text-shadow:none;}
.sc0_c00149{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__c00149{-webkit-text-stroke:0px transparent;}
.sc0_c00149{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00149{word-spacing:0.000000px;}
.fc0_c00149{color:transparent;}
.fs0_c00149{font-size:24.000000px;}
.fs3_c00149{font-size:36.000000px;}
.fs2_c00149{font-size:42.000000px;}
.fs1_c00149{font-size:48.000000px;}
.fs5_c00149{font-size:60.000000px;}
.fs4_c00149{font-size:78.000000px;}
.y0_c00149{bottom:0.000000px;}
.y7_c00149{bottom:370.831500px;}
.y8_c00149{bottom:371.520000px;}
.y6_c00149{bottom:389.880000px;}
.y3_c00149{bottom:403.650000px;}
.y2_c00149{bottom:403.920000px;}
.y5_c00149{bottom:405.000000px;}
.y4_c00149{bottom:405.660000px;}
.y1_c00149{bottom:410.401500px;}
.h2_c00149{height:24.000000px;}
.h5_c00149{height:36.000000px;}
.h4_c00149{height:42.000000px;}
.h3_c00149{height:48.000000px;}
.h7_c00149{height:60.000000px;}
.h6_c00149{height:78.000000px;}
.h0_c00149{height:698.220000px;}
.h1_c00149{height:698.250000px;}
.w1_c00149{width:945.750000px;}
.w0_c00149{width:946.050000px;}
.x0_c00149{left:0.000000px;}
.x1_c00149{left:513.540000px;}
.x2_c00149{left:515.970000px;}
.x8_c00149{left:524.880000px;}
.x3_c00149{left:526.500000px;}
.x4_c00149{left:554.580000px;}
.x9_c00149{left:565.650000px;}
.x5_c00149{left:568.350000px;}
.xa_c00149{left:572.670000px;}
.x6_c00149{left:584.280000px;}
.x7_c00149{left:619.650000px;}
.xb_c00149{left:623.160000px;}
@media print{
.v0_c00149{vertical-align:0.000000pt;}
.ls0_c00149{letter-spacing:0.000000pt;}
.ws0_c00149{word-spacing:0.000000pt;}
.fs0_c00149{font-size:21.333333pt;}
.fs3_c00149{font-size:32.000000pt;}
.fs2_c00149{font-size:37.333333pt;}
.fs1_c00149{font-size:42.666667pt;}
.fs5_c00149{font-size:53.333333pt;}
.fs4_c00149{font-size:69.333333pt;}
.y0_c00149{bottom:0.000000pt;}
.y7_c00149{bottom:329.628000pt;}
.y8_c00149{bottom:330.240000pt;}
.y6_c00149{bottom:346.560000pt;}
.y3_c00149{bottom:358.800000pt;}
.y2_c00149{bottom:359.040000pt;}
.y5_c00149{bottom:360.000000pt;}
.y4_c00149{bottom:360.586667pt;}
.y1_c00149{bottom:364.801333pt;}
.h2_c00149{height:21.333333pt;}
.h5_c00149{height:32.000000pt;}
.h4_c00149{height:37.333333pt;}
.h3_c00149{height:42.666667pt;}
.h7_c00149{height:53.333333pt;}
.h6_c00149{height:69.333333pt;}
.h0_c00149{height:620.640000pt;}
.h1_c00149{height:620.666667pt;}
.w1_c00149{width:840.666667pt;}
.w0_c00149{width:840.933333pt;}
.x0_c00149{left:0.000000pt;}
.x1_c00149{left:456.480000pt;}
.x2_c00149{left:458.640000pt;}
.x8_c00149{left:466.560000pt;}
.x3_c00149{left:468.000000pt;}
.x4_c00149{left:492.960000pt;}
.x9_c00149{left:502.800000pt;}
.x5_c00149{left:505.200000pt;}
.xa_c00149{left:509.040000pt;}
.x6_c00149{left:519.360000pt;}
.x7_c00149{left:550.800000pt;}
.xb_c00149{left:553.920000pt;}
}





/* 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_c00150 {
    display:none;
  }
  .loading-indicator_c00150.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00150 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_c00150 { 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_c00150" -> "#page-container .classname_c00150")
 */
.pf_c00150 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00150 { /* 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_c00150.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00150 { /* 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_c00150 { /* 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_c00150 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00150 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00150 {overflow:visible;}
  }
}
.c_c00150 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00150 { /* 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_c00150:after { /* webkit #35443 */
  content: '';
}
.t_c00150:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00150 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 */
}
.__c00150 { /* 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_c00150 { /* info for Javascript */
  display:none;
}
.l_c00150 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00150 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00150 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00150: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_c00150 {
    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_c00150.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00150.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_c00150 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00150{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00150;src:url('chunks/assets/font_59dc3ab2e04ed21d4ac9992b.woff2')format("woff");}.ff1_c00150{font-family:ff1_c00150;line-height:1.000000;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;}
.m16_c00150{transform:matrix(0.004218,-0.162240,0.249916,0.006498,0,0);-ms-transform:matrix(0.004218,-0.162240,0.249916,0.006498,0,0);-webkit-transform:matrix(0.004218,-0.162240,0.249916,0.006498,0,0);}
.m21_c00150{transform:matrix(0.005225,-0.290258,0.249960,0.004499,0,0);-ms-transform:matrix(0.005225,-0.290258,0.249960,0.004499,0,0);-webkit-transform:matrix(0.005225,-0.290258,0.249960,0.004499,0,0);}
.m13_c00150{transform:matrix(0.005253,-0.202057,0.249916,0.006498,0,0);-ms-transform:matrix(0.005253,-0.202057,0.249916,0.006498,0,0);-webkit-transform:matrix(0.005253,-0.202057,0.249916,0.006498,0,0);}
.m18_c00150{transform:matrix(0.005780,-0.192683,0.249888,0.007497,0,0);-ms-transform:matrix(0.005780,-0.192683,0.249888,0.007497,0,0);-webkit-transform:matrix(0.005780,-0.192683,0.249888,0.007497,0,0);}
.m11_c00150{transform:matrix(0.007234,-0.380736,0.249955,0.004749,0,0);-ms-transform:matrix(0.007234,-0.380736,0.249955,0.004749,0,0);-webkit-transform:matrix(0.007234,-0.380736,0.249955,0.004749,0,0);}
.m1c_c00150{transform:matrix(0.007725,-0.266363,0.249895,0.007247,0,0);-ms-transform:matrix(0.007725,-0.266363,0.249895,0.007247,0,0);-webkit-transform:matrix(0.007725,-0.266363,0.249895,0.007247,0,0);}
.m1d_c00150{transform:matrix(0.007789,-0.268602,0.249895,0.007247,0,0);-ms-transform:matrix(0.007789,-0.268602,0.249895,0.007247,0,0);-webkit-transform:matrix(0.007789,-0.268602,0.249895,0.007247,0,0);}
.m1b_c00150{transform:matrix(0.007805,-0.269137,0.249895,0.007247,0,0);-ms-transform:matrix(0.007805,-0.269137,0.249895,0.007247,0,0);-webkit-transform:matrix(0.007805,-0.269137,0.249895,0.007247,0,0);}
.m23_c00150{transform:matrix(0.009609,-0.480444,0.249950,0.004999,0,0);-ms-transform:matrix(0.009609,-0.480444,0.249950,0.004999,0,0);-webkit-transform:matrix(0.009609,-0.480444,0.249950,0.004999,0,0);}
.m20_c00150{transform:matrix(0.009865,-0.548051,0.249960,0.004499,0,0);-ms-transform:matrix(0.009865,-0.548051,0.249960,0.004499,0,0);-webkit-transform:matrix(0.009865,-0.548051,0.249960,0.004499,0,0);}
.m0_c00150{transform:matrix(0.010202,-0.463738,0.249940,0.005499,0,0);-ms-transform:matrix(0.010202,-0.463738,0.249940,0.005499,0,0);-webkit-transform:matrix(0.010202,-0.463738,0.249940,0.005499,0,0);}
.m24_c00150{transform:matrix(0.013290,-0.458282,0.249895,0.007247,0,0);-ms-transform:matrix(0.013290,-0.458282,0.249895,0.007247,0,0);-webkit-transform:matrix(0.013290,-0.458282,0.249895,0.007247,0,0);}
.m1f_c00150{transform:matrix(0.013612,0.469378,-0.249895,0.007247,0,0);-ms-transform:matrix(0.013612,0.469378,-0.249895,0.007247,0,0);-webkit-transform:matrix(0.013612,0.469378,-0.249895,0.007247,0,0);}
.m1a_c00150{transform:matrix(0.013959,-0.481343,0.249895,0.007247,0,0);-ms-transform:matrix(0.013959,-0.481343,0.249895,0.007247,0,0);-webkit-transform:matrix(0.013959,-0.481343,0.249895,0.007247,0,0);}
.m15_c00150{transform:matrix(0.015144,-0.582453,0.249916,0.006498,0,0);-ms-transform:matrix(0.015144,-0.582453,0.249916,0.006498,0,0);-webkit-transform:matrix(0.015144,-0.582453,0.249916,0.006498,0,0);}
.m10_c00150{transform:matrix(0.015340,-0.807379,0.249955,0.004749,0,0);-ms-transform:matrix(0.015340,-0.807379,0.249955,0.004749,0,0);-webkit-transform:matrix(0.015340,-0.807379,0.249955,0.004749,0,0);}
.m12_c00150{transform:matrix(0.015400,-0.592305,0.249916,0.006498,0,0);-ms-transform:matrix(0.015400,-0.592305,0.249916,0.006498,0,0);-webkit-transform:matrix(0.015400,-0.592305,0.249916,0.006498,0,0);}
.m14_c00150{transform:matrix(0.016917,-0.650650,0.249916,0.006498,0,0);-ms-transform:matrix(0.016917,-0.650650,0.249916,0.006498,0,0);-webkit-transform:matrix(0.016917,-0.650650,0.249916,0.006498,0,0);}
.m19_c00150{transform:matrix(0.040417,-1.393694,0.249895,0.007247,0,0);-ms-transform:matrix(0.040417,-1.393694,0.249895,0.007247,0,0);-webkit-transform:matrix(0.040417,-1.393694,0.249895,0.007247,0,0);}
.m1_c00150{transform:matrix(0.040742,-1.851917,0.249940,0.005499,0,0);-ms-transform:matrix(0.040742,-1.851917,0.249940,0.005499,0,0);-webkit-transform:matrix(0.040742,-1.851917,0.249940,0.005499,0,0);}
.m22_c00150{transform:matrix(0.059042,-2.108644,0.249902,0.006997,0,0);-ms-transform:matrix(0.059042,-2.108644,0.249902,0.006997,0,0);-webkit-transform:matrix(0.059042,-2.108644,0.249902,0.006997,0,0);}
.me_c00150{transform:matrix(0.180289,0.004688,-0.006498,0.249916,0,0);-ms-transform:matrix(0.180289,0.004688,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.180289,0.004688,-0.006498,0.249916,0,0);}
.m8_c00150{transform:matrix(0.192196,0.006156,-0.008004,0.249872,0,0);-ms-transform:matrix(0.192196,0.006156,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.192196,0.006156,-0.008004,0.249872,0,0);}
.m4_c00150{transform:matrix(0.213225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213225,0.000000,0.000000,0.250000,0,0);}
.m7_c00150{transform:matrix(0.223390,0.007156,-0.008004,0.249872,0,0);-ms-transform:matrix(0.223390,0.007156,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.223390,0.007156,-0.008004,0.249872,0,0);}
.ma_c00150{transform:matrix(0.225729,0.007231,-0.008004,0.249872,0,0);-ms-transform:matrix(0.225729,0.007231,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.225729,0.007231,-0.008004,0.249872,0,0);}
.md_c00150{transform:matrix(0.232461,0.006044,-0.006498,0.249916,0,0);-ms-transform:matrix(0.232461,0.006044,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.232461,0.006044,-0.006498,0.249916,0,0);}
.m5_c00150{transform:matrix(0.243505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243505,0.000000,0.000000,0.250000,0,0);}
.m1e_c00150{transform:matrix(0.278570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278570,0.000000,0.000000,0.250000,0,0);}
.mf_c00150{transform:matrix(0.302825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302825,0.000000,0.000000,0.250000,0,0);}
.m6_c00150{transform:matrix(0.371780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371780,0.000000,0.000000,0.250000,0,0);}
.mc_c00150{transform:matrix(0.385870,0.010033,-0.006498,0.249916,0,0);-ms-transform:matrix(0.385870,0.010033,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.385870,0.010033,-0.006498,0.249916,0,0);}
.m17_c00150{transform:matrix(0.420110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420110,0.000000,0.000000,0.250000,0,0);}
.m3_c00150{transform:matrix(0.445980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445980,0.000000,0.000000,0.250000,0,0);}
.m9_c00150{transform:matrix(0.553396,0.017726,-0.008004,0.249872,0,0);-ms-transform:matrix(0.553396,0.017726,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.553396,0.017726,-0.008004,0.249872,0,0);}
.m2_c00150{transform:matrix(1.723515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.723515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.723515,0.000000,0.000000,0.250000,0,0);}
.mb_c00150{transform:matrix(2.093727,0.054437,-0.006498,0.249916,0,0);-ms-transform:matrix(2.093727,0.054437,-0.006498,0.249916,0,0);-webkit-transform:matrix(2.093727,0.054437,-0.006498,0.249916,0,0);}
.v0_c00150{vertical-align:0.000000px;}
.ls0_c00150{letter-spacing:0.000000px;}
.sc__c00150{text-shadow:none;}
.sc0_c00150{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__c00150{-webkit-text-stroke:0px transparent;}
.sc0_c00150{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00150{word-spacing:0.000000px;}
.fc0_c00150{color:transparent;}
.fs1_c00150{font-size:18.000000px;}
.fs4_c00150{font-size:24.008111px;}
.fsa_c00150{font-size:30.012612px;}
.fs0_c00150{font-size:36.008711px;}
.fs9_c00150{font-size:42.017657px;}
.fs2_c00150{font-size:48.000000px;}
.fs6_c00150{font-size:48.008663px;}
.fs3_c00150{font-size:53.973669px;}
.fsc_c00150{font-size:60.023515px;}
.fs7_c00150{font-size:72.024332px;}
.fs5_c00150{font-size:138.000000px;}
.fsd_c00150{font-size:186.037196px;}
.fs8_c00150{font-size:264.118773px;}
.fsb_c00150{font-size:342.055400px;}
.y0_c00150{bottom:0.000000px;}
.y21_c00150{bottom:224.068500px;}
.y20_c00150{bottom:262.143000px;}
.y14_c00150{bottom:330.210000px;}
.y15_c00150{bottom:337.752000px;}
.y13_c00150{bottom:346.854000px;}
.y1f_c00150{bottom:349.827000px;}
.yc_c00150{bottom:351.000000px;}
.y1a_c00150{bottom:368.367000px;}
.y19_c00150{bottom:386.560500px;}
.y18_c00150{bottom:415.597500px;}
.y12_c00150{bottom:418.393500px;}
.y2_c00150{bottom:468.679500px;}
.y17_c00150{bottom:474.781500px;}
.y1_c00150{bottom:492.421500px;}
.y1e_c00150{bottom:533.436000px;}
.y16_c00150{bottom:534.481500px;}
.y1b_c00150{bottom:535.410000px;}
.y11_c00150{bottom:536.356500px;}
.y1c_c00150{bottom:552.181500px;}
.y10_c00150{bottom:559.510500px;}
.ye_c00150{bottom:576.897000px;}
.yf_c00150{bottom:624.384000px;}
.yd_c00150{bottom:646.336500px;}
.y3_c00150{bottom:687.696000px;}
.y8_c00150{bottom:690.486564px;}
.y7_c00150{bottom:691.704180px;}
.y6_c00150{bottom:692.179140px;}
.y5_c00150{bottom:693.094500px;}
.yb_c00150{bottom:693.696195px;}
.ya_c00150{bottom:694.096218px;}
.y9_c00150{bottom:694.622523px;}
.y4_c00150{bottom:696.601500px;}
.y1d_c00150{bottom:697.635000px;}
.h3_c00150{height:18.000000px;}
.h6_c00150{height:24.008111px;}
.hc_c00150{height:30.012612px;}
.h2_c00150{height:36.008711px;}
.hb_c00150{height:42.017657px;}
.h4_c00150{height:48.000000px;}
.h8_c00150{height:48.008663px;}
.h5_c00150{height:53.973669px;}
.he_c00150{height:60.023515px;}
.h9_c00150{height:72.024332px;}
.h7_c00150{height:138.000000px;}
.hf_c00150{height:186.037196px;}
.ha_c00150{height:264.118773px;}
.hd_c00150{height:342.055400px;}
.h0_c00150{height:698.220000px;}
.h1_c00150{height:698.250000px;}
.w1_c00150{width:945.750000px;}
.w0_c00150{width:946.050000px;}
.x0_c00150{left:0.000000px;}
.x1c_c00150{left:81.253500px;}
.x1b_c00150{left:86.400000px;}
.x20_c00150{left:90.718500px;}
.x1a_c00150{left:95.079679px;}
.x19_c00150{left:96.449364px;}
.x18_c00150{left:98.165700px;}
.x17_c00150{left:99.897000px;}
.x1f_c00150{left:106.110000px;}
.x16_c00150{left:107.239500px;}
.x1e_c00150{left:110.703918px;}
.x1d_c00150{left:113.659500px;}
.x15_c00150{left:151.812720px;}
.x14_c00150{left:153.672747px;}
.x13_c00150{left:157.341789px;}
.x12_c00150{left:159.028500px;}
.x11_c00150{left:176.676649px;}
.x10_c00150{left:177.996000px;}
.xf_c00150{left:358.560000px;}
.xb_c00150{left:450.048000px;}
.xc_c00150{left:526.162500px;}
.xd_c00150{left:546.405000px;}
.xe_c00150{left:561.790500px;}
.x7_c00150{left:575.206500px;}
.x8_c00150{left:603.782895px;}
.x9_c00150{left:618.610552px;}
.xa_c00150{left:656.623002px;}
.x4_c00150{left:679.050000px;}
.x5_c00150{left:691.470000px;}
.x6_c00150{left:699.030000px;}
.x2_c00150{left:727.650000px;}
.x3_c00150{left:753.030000px;}
.x1_c00150{left:942.298500px;}
@media print{
.v0_c00150{vertical-align:0.000000pt;}
.ls0_c00150{letter-spacing:0.000000pt;}
.ws0_c00150{word-spacing:0.000000pt;}
.fs1_c00150{font-size:16.000000pt;}
.fs4_c00150{font-size:21.340543pt;}
.fsa_c00150{font-size:26.677878pt;}
.fs0_c00150{font-size:32.007743pt;}
.fs9_c00150{font-size:37.349029pt;}
.fs2_c00150{font-size:42.666667pt;}
.fs6_c00150{font-size:42.674367pt;}
.fs3_c00150{font-size:47.976594pt;}
.fsc_c00150{font-size:53.354236pt;}
.fs7_c00150{font-size:64.021628pt;}
.fs5_c00150{font-size:122.666667pt;}
.fsd_c00150{font-size:165.366397pt;}
.fs8_c00150{font-size:234.772243pt;}
.fsb_c00150{font-size:304.049244pt;}
.y0_c00150{bottom:0.000000pt;}
.y21_c00150{bottom:199.172000pt;}
.y20_c00150{bottom:233.016000pt;}
.y14_c00150{bottom:293.520000pt;}
.y15_c00150{bottom:300.224000pt;}
.y13_c00150{bottom:308.314667pt;}
.y1f_c00150{bottom:310.957333pt;}
.yc_c00150{bottom:312.000000pt;}
.y1a_c00150{bottom:327.437333pt;}
.y19_c00150{bottom:343.609333pt;}
.y18_c00150{bottom:369.420000pt;}
.y12_c00150{bottom:371.905333pt;}
.y2_c00150{bottom:416.604000pt;}
.y17_c00150{bottom:422.028000pt;}
.y1_c00150{bottom:437.708000pt;}
.y1e_c00150{bottom:474.165333pt;}
.y16_c00150{bottom:475.094667pt;}
.y1b_c00150{bottom:475.920000pt;}
.y11_c00150{bottom:476.761333pt;}
.y1c_c00150{bottom:490.828000pt;}
.y10_c00150{bottom:497.342667pt;}
.ye_c00150{bottom:512.797333pt;}
.yf_c00150{bottom:555.008000pt;}
.yd_c00150{bottom:574.521333pt;}
.y3_c00150{bottom:611.285333pt;}
.y8_c00150{bottom:613.765835pt;}
.y7_c00150{bottom:614.848160pt;}
.y6_c00150{bottom:615.270347pt;}
.y5_c00150{bottom:616.084000pt;}
.yb_c00150{bottom:616.618840pt;}
.ya_c00150{bottom:616.974416pt;}
.y9_c00150{bottom:617.442243pt;}
.y4_c00150{bottom:619.201333pt;}
.y1d_c00150{bottom:620.120000pt;}
.h3_c00150{height:16.000000pt;}
.h6_c00150{height:21.340543pt;}
.hc_c00150{height:26.677878pt;}
.h2_c00150{height:32.007743pt;}
.hb_c00150{height:37.349029pt;}
.h4_c00150{height:42.666667pt;}
.h8_c00150{height:42.674367pt;}
.h5_c00150{height:47.976594pt;}
.he_c00150{height:53.354236pt;}
.h9_c00150{height:64.021628pt;}
.h7_c00150{height:122.666667pt;}
.hf_c00150{height:165.366397pt;}
.ha_c00150{height:234.772243pt;}
.hd_c00150{height:304.049244pt;}
.h0_c00150{height:620.640000pt;}
.h1_c00150{height:620.666667pt;}
.w1_c00150{width:840.666667pt;}
.w0_c00150{width:840.933333pt;}
.x0_c00150{left:0.000000pt;}
.x1c_c00150{left:72.225333pt;}
.x1b_c00150{left:76.800000pt;}
.x20_c00150{left:80.638667pt;}
.x1a_c00150{left:84.515271pt;}
.x19_c00150{left:85.732768pt;}
.x18_c00150{left:87.258400pt;}
.x17_c00150{left:88.797333pt;}
.x1f_c00150{left:94.320000pt;}
.x16_c00150{left:95.324000pt;}
.x1e_c00150{left:98.403483pt;}
.x1d_c00150{left:101.030667pt;}
.x15_c00150{left:134.944640pt;}
.x14_c00150{left:136.597997pt;}
.x13_c00150{left:139.859368pt;}
.x12_c00150{left:141.358667pt;}
.x11_c00150{left:157.045911pt;}
.x10_c00150{left:158.218667pt;}
.xf_c00150{left:318.720000pt;}
.xb_c00150{left:400.042667pt;}
.xc_c00150{left:467.700000pt;}
.xd_c00150{left:485.693333pt;}
.xe_c00150{left:499.369333pt;}
.x7_c00150{left:511.294667pt;}
.x8_c00150{left:536.695907pt;}
.x9_c00150{left:549.876047pt;}
.xa_c00150{left:583.664891pt;}
.x4_c00150{left:603.600000pt;}
.x5_c00150{left:614.640000pt;}
.x6_c00150{left:621.360000pt;}
.x2_c00150{left:646.800000pt;}
.x3_c00150{left:669.360000pt;}
.x1_c00150{left:837.598667pt;}
}





/* 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_c00151 {
    display:none;
  }
  .loading-indicator_c00151.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00151 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_c00151 { 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_c00151" -> "#page-container .classname_c00151")
 */
.pf_c00151 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00151 { /* 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_c00151.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00151 { /* 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_c00151 { /* 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_c00151 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00151 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00151 {overflow:visible;}
  }
}
.c_c00151 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00151 { /* 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_c00151:after { /* webkit #35443 */
  content: '';
}
.t_c00151:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00151 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 */
}
.__c00151 { /* 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_c00151 { /* info for Javascript */
  display:none;
}
.l_c00151 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00151 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00151 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00151: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_c00151 {
    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_c00151.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00151.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_c00151 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00151{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00151;src:url('chunks/assets/font_724787d339e4f2bd53cbafca.woff2')format("woff");}.ff1_c00151{font-family:ff1_c00151;line-height:1.000000;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;}
.m0_c00151{transform:matrix(0.201245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201245,0.000000,0.000000,0.250000,0,0);}
.v0_c00151{vertical-align:0.000000px;}
.ls0_c00151{letter-spacing:0.000000px;}
.sc__c00151{text-shadow:none;}
.sc0_c00151{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__c00151{-webkit-text-stroke:0px transparent;}
.sc0_c00151{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00151{word-spacing:0.000000px;}
.fc0_c00151{color:transparent;}
.fs0_c00151{font-size:24.000000px;}
.y0_c00151{bottom:0.000000px;}
.y1_c00151{bottom:695.790000px;}
.h2_c00151{height:24.000000px;}
.h0_c00151{height:698.220000px;}
.h1_c00151{height:698.250000px;}
.w1_c00151{width:945.750000px;}
.w0_c00151{width:946.050000px;}
.x0_c00151{left:0.000000px;}
.x1_c00151{left:678.510000px;}
@media print{
.v0_c00151{vertical-align:0.000000pt;}
.ls0_c00151{letter-spacing:0.000000pt;}
.ws0_c00151{word-spacing:0.000000pt;}
.fs0_c00151{font-size:21.333333pt;}
.y0_c00151{bottom:0.000000pt;}
.y1_c00151{bottom:618.480000pt;}
.h2_c00151{height:21.333333pt;}
.h0_c00151{height:620.640000pt;}
.h1_c00151{height:620.666667pt;}
.w1_c00151{width:840.666667pt;}
.w0_c00151{width:840.933333pt;}
.x0_c00151{left:0.000000pt;}
.x1_c00151{left:603.120000pt;}
}





/* 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_c00152 {
    display:none;
  }
  .loading-indicator_c00152.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00152 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_c00152 { 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_c00152" -> "#page-container .classname_c00152")
 */
.pf_c00152 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00152 { /* 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_c00152.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00152 { /* 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_c00152 { /* 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_c00152 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00152 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00152 {overflow:visible;}
  }
}
.c_c00152 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00152 { /* 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_c00152:after { /* webkit #35443 */
  content: '';
}
.t_c00152:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00152 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 */
}
.__c00152 { /* 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_c00152 { /* info for Javascript */
  display:none;
}
.l_c00152 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00152 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00152 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00152: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_c00152 {
    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_c00152.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00152.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_c00152 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00152{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00152;src:url('chunks/assets/font_a9f8da98e2e692f636340ada.woff2')format("woff");}.ff1_c00152{font-family:ff1_c00152;line-height:1.000000;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;}
.m2_c00152{transform:matrix(0.002305,-0.329332,0.249994,0.001750,0,0);-ms-transform:matrix(0.002305,-0.329332,0.249994,0.001750,0,0);-webkit-transform:matrix(0.002305,-0.329332,0.249994,0.001750,0,0);}
.m1_c00152{transform:matrix(0.010853,-1.550422,0.249994,0.001750,0,0);-ms-transform:matrix(0.010853,-1.550422,0.249994,0.001750,0,0);-webkit-transform:matrix(0.010853,-1.550422,0.249994,0.001750,0,0);}
.m3_c00152{transform:matrix(0.011838,-1.691204,0.249994,0.001750,0,0);-ms-transform:matrix(0.011838,-1.691204,0.249994,0.001750,0,0);-webkit-transform:matrix(0.011838,-1.691204,0.249994,0.001750,0,0);}
.m0_c00152{transform:matrix(0.012366,-1.766602,0.249994,0.001750,0,0);-ms-transform:matrix(0.012366,-1.766602,0.249994,0.001750,0,0);-webkit-transform:matrix(0.012366,-1.766602,0.249994,0.001750,0,0);}
.v0_c00152{vertical-align:0.000000px;}
.ls0_c00152{letter-spacing:0.000000px;}
.sc__c00152{text-shadow:none;}
.sc0_c00152{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__c00152{-webkit-text-stroke:0px transparent;}
.sc0_c00152{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00152{word-spacing:0.000000px;}
.fc0_c00152{color:transparent;}
.fs0_c00152{font-size:24.000588px;}
.y0_c00152{bottom:0.000000px;}
.y3_c00152{bottom:498.402000px;}
.y2_c00152{bottom:526.224000px;}
.y4_c00152{bottom:532.713454px;}
.y1_c00152{bottom:572.121000px;}
.h2_c00152{height:24.000588px;}
.h0_c00152{height:698.220000px;}
.h1_c00152{height:698.250000px;}
.w1_c00152{width:945.750000px;}
.w0_c00152{width:946.050000px;}
.x0_c00152{left:0.000000px;}
.x2_c00152{left:14.830329px;}
.x1_c00152{left:21.600000px;}
@media print{
.v0_c00152{vertical-align:0.000000pt;}
.ls0_c00152{letter-spacing:0.000000pt;}
.ws0_c00152{word-spacing:0.000000pt;}
.fs0_c00152{font-size:21.333856pt;}
.y0_c00152{bottom:0.000000pt;}
.y3_c00152{bottom:443.024000pt;}
.y2_c00152{bottom:467.754667pt;}
.y4_c00152{bottom:473.523071pt;}
.y1_c00152{bottom:508.552000pt;}
.h2_c00152{height:21.333856pt;}
.h0_c00152{height:620.640000pt;}
.h1_c00152{height:620.666667pt;}
.w1_c00152{width:840.666667pt;}
.w0_c00152{width:840.933333pt;}
.x0_c00152{left:0.000000pt;}
.x2_c00152{left:13.182515pt;}
.x1_c00152{left:19.200000pt;}
}





/* 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_c00153 {
    display:none;
  }
  .loading-indicator_c00153.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00153 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_c00153 { 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_c00153" -> "#page-container .classname_c00153")
 */
.pf_c00153 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00153 { /* 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_c00153.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00153 { /* 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_c00153 { /* 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_c00153 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00153 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00153 {overflow:visible;}
  }
}
.c_c00153 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00153 { /* 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_c00153:after { /* webkit #35443 */
  content: '';
}
.t_c00153:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00153 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 */
}
.__c00153 { /* 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_c00153 { /* info for Javascript */
  display:none;
}
.l_c00153 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00153 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00153 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00153: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_c00153 {
    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_c00153.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00153.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_c00153 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00153{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00153;src:url('chunks/assets/font_fe3cd3c6b9706b260f6e1774.woff2')format("woff");}.ff1_c00153{font-family:ff1_c00153;line-height:1.000000;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;}
.m4_c00153{transform:matrix(0.164360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164360,0.000000,0.000000,0.250000,0,0);}
.m2_c00153{transform:matrix(0.305605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305605,0.000000,0.000000,0.250000,0,0);}
.m0_c00153{transform:matrix(0.397145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397145,0.000000,0.000000,0.250000,0,0);}
.m1_c00153{transform:matrix(0.555710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555710,0.000000,0.000000,0.250000,0,0);}
.m3_c00153{transform:matrix(0.581040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.581040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.581040,0.000000,0.000000,0.250000,0,0);}
.v0_c00153{vertical-align:0.000000px;}
.ls0_c00153{letter-spacing:0.000000px;}
.sc__c00153{text-shadow:none;}
.sc0_c00153{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__c00153{-webkit-text-stroke:0px transparent;}
.sc0_c00153{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00153{word-spacing:0.000000px;}
.fc0_c00153{color:transparent;}
.fs1_c00153{font-size:12.000000px;}
.fs3_c00153{font-size:30.000000px;}
.fs4_c00153{font-size:36.000000px;}
.fs2_c00153{font-size:60.000000px;}
.fs0_c00153{font-size:66.000000px;}
.y0_c00153{bottom:0.000000px;}
.y5_c00153{bottom:168.480000px;}
.y4_c00153{bottom:178.740000px;}
.y3_c00153{bottom:187.110000px;}
.y2_c00153{bottom:208.710000px;}
.y1_c00153{bottom:219.643500px;}
.h3_c00153{height:12.000000px;}
.h5_c00153{height:30.000000px;}
.h6_c00153{height:36.000000px;}
.h4_c00153{height:60.000000px;}
.h2_c00153{height:66.000000px;}
.h0_c00153{height:698.220000px;}
.h1_c00153{height:698.250000px;}
.w1_c00153{width:945.750000px;}
.w0_c00153{width:946.050000px;}
.x0_c00153{left:0.000000px;}
.x1_c00153{left:333.450000px;}
.x4_c00153{left:335.340000px;}
.x2_c00153{left:337.230000px;}
.x3_c00153{left:344.250000px;}
@media print{
.v0_c00153{vertical-align:0.000000pt;}
.ls0_c00153{letter-spacing:0.000000pt;}
.ws0_c00153{word-spacing:0.000000pt;}
.fs1_c00153{font-size:10.666667pt;}
.fs3_c00153{font-size:26.666667pt;}
.fs4_c00153{font-size:32.000000pt;}
.fs2_c00153{font-size:53.333333pt;}
.fs0_c00153{font-size:58.666667pt;}
.y0_c00153{bottom:0.000000pt;}
.y5_c00153{bottom:149.760000pt;}
.y4_c00153{bottom:158.880000pt;}
.y3_c00153{bottom:166.320000pt;}
.y2_c00153{bottom:185.520000pt;}
.y1_c00153{bottom:195.238667pt;}
.h3_c00153{height:10.666667pt;}
.h5_c00153{height:26.666667pt;}
.h6_c00153{height:32.000000pt;}
.h4_c00153{height:53.333333pt;}
.h2_c00153{height:58.666667pt;}
.h0_c00153{height:620.640000pt;}
.h1_c00153{height:620.666667pt;}
.w1_c00153{width:840.666667pt;}
.w0_c00153{width:840.933333pt;}
.x0_c00153{left:0.000000pt;}
.x1_c00153{left:296.400000pt;}
.x4_c00153{left:298.080000pt;}
.x2_c00153{left:299.760000pt;}
.x3_c00153{left:306.000000pt;}
}





/* 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_c00154 {
    display:none;
  }
  .loading-indicator_c00154.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00154 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_c00154 { 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_c00154" -> "#page-container .classname_c00154")
 */
.pf_c00154 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00154 { /* 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_c00154.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00154 { /* 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_c00154 { /* 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_c00154 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00154 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00154 {overflow:visible;}
  }
}
.c_c00154 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00154 { /* 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_c00154:after { /* webkit #35443 */
  content: '';
}
.t_c00154:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00154 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 */
}
.__c00154 { /* 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_c00154 { /* info for Javascript */
  display:none;
}
.l_c00154 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00154 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00154 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00154: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_c00154 {
    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_c00154.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00154.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_c00154 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00154{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00154;src:url('chunks/assets/font_7c6b9abe6ee2a268480c528b.woff2')format("woff");}.ff1_c00154{font-family:ff1_c00154;line-height:1.000000;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;}
.m4_c00154{transform:matrix(0.192735,0.003084,-0.003999,0.249968,0,0);-ms-transform:matrix(0.192735,0.003084,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.192735,0.003084,-0.003999,0.249968,0,0);}
.m6_c00154{transform:matrix(0.213858,0.003422,-0.003999,0.249968,0,0);-ms-transform:matrix(0.213858,0.003422,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.213858,0.003422,-0.003999,0.249968,0,0);}
.m1_c00154{transform:matrix(0.216997,0.003472,-0.003999,0.249968,0,0);-ms-transform:matrix(0.216997,0.003472,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.216997,0.003472,-0.003999,0.249968,0,0);}
.m10_c00154{transform:matrix(0.251318,0.004021,-0.003999,0.249968,0,0);-ms-transform:matrix(0.251318,0.004021,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.251318,0.004021,-0.003999,0.249968,0,0);}
.me_c00154{transform:matrix(0.291668,0.004667,-0.003999,0.249968,0,0);-ms-transform:matrix(0.291668,0.004667,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.291668,0.004667,-0.003999,0.249968,0,0);}
.m11_c00154{transform:matrix(0.296062,0.004737,-0.003999,0.249968,0,0);-ms-transform:matrix(0.296062,0.004737,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.296062,0.004737,-0.003999,0.249968,0,0);}
.mc_c00154{transform:matrix(0.343566,0.005497,-0.003999,0.249968,0,0);-ms-transform:matrix(0.343566,0.005497,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.343566,0.005497,-0.003999,0.249968,0,0);}
.m3_c00154{transform:matrix(0.359484,0.005752,-0.003999,0.249968,0,0);-ms-transform:matrix(0.359484,0.005752,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.359484,0.005752,-0.003999,0.249968,0,0);}
.m7_c00154{transform:matrix(0.373292,0.005973,-0.003999,0.249968,0,0);-ms-transform:matrix(0.373292,0.005973,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.373292,0.005973,-0.003999,0.249968,0,0);}
.mf_c00154{transform:matrix(0.384846,0.006158,-0.003999,0.249968,0,0);-ms-transform:matrix(0.384846,0.006158,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.384846,0.006158,-0.003999,0.249968,0,0);}
.md_c00154{transform:matrix(0.401829,0.006429,-0.003999,0.249968,0,0);-ms-transform:matrix(0.401829,0.006429,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.401829,0.006429,-0.003999,0.249968,0,0);}
.m5_c00154{transform:matrix(0.531147,0.008498,-0.003999,0.249968,0,0);-ms-transform:matrix(0.531147,0.008498,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.531147,0.008498,-0.003999,0.249968,0,0);}
.ma_c00154{transform:matrix(0.631879,0.010110,-0.003999,0.249968,0,0);-ms-transform:matrix(0.631879,0.010110,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.631879,0.010110,-0.003999,0.249968,0,0);}
.mb_c00154{transform:matrix(0.653691,0.010459,-0.003999,0.249968,0,0);-ms-transform:matrix(0.653691,0.010459,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.653691,0.010459,-0.003999,0.249968,0,0);}
.m9_c00154{transform:matrix(0.695436,0.011127,-0.003999,0.249968,0,0);-ms-transform:matrix(0.695436,0.011127,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.695436,0.011127,-0.003999,0.249968,0,0);}
.m8_c00154{transform:matrix(0.861805,0.013789,-0.003999,0.249968,0,0);-ms-transform:matrix(0.861805,0.013789,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.861805,0.013789,-0.003999,0.249968,0,0);}
.m0_c00154{transform:matrix(0.998047,0.015969,-0.003999,0.249968,0,0);-ms-transform:matrix(0.998047,0.015969,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.998047,0.015969,-0.003999,0.249968,0,0);}
.m2_c00154{transform:matrix(1.117482,0.017880,-0.003999,0.249968,0,0);-ms-transform:matrix(1.117482,0.017880,-0.003999,0.249968,0,0);-webkit-transform:matrix(1.117482,0.017880,-0.003999,0.249968,0,0);}
.v0_c00154{vertical-align:0.000000px;}
.ls0_c00154{letter-spacing:0.000000px;}
.sc__c00154{text-shadow:none;}
.sc0_c00154{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__c00154{-webkit-text-stroke:0px transparent;}
.sc0_c00154{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00154{word-spacing:0.000000px;}
.fc0_c00154{color:transparent;}
.fs1_c00154{font-size:102.013055px;}
.fs2_c00154{font-size:144.018431px;}
.fs0_c00154{font-size:150.019199px;}
.y0_c00154{bottom:0.000000px;}
.y12_c00154{bottom:403.933152px;}
.y11_c00154{bottom:404.617500px;}
.y10_c00154{bottom:407.104032px;}
.yf_c00154{bottom:407.966136px;}
.ye_c00154{bottom:446.365584px;}
.yd_c00154{bottom:447.631608px;}
.yc_c00154{bottom:448.433964px;}
.yb_c00154{bottom:449.488356px;}
.ya_c00154{bottom:450.327144px;}
.y9_c00154{bottom:452.231988px;}
.y8_c00154{bottom:452.515200px;}
.y7_c00154{bottom:474.145968px;}
.y6_c00154{bottom:476.531640px;}
.y5_c00154{bottom:477.748368px;}
.y4_c00154{bottom:479.299056px;}
.y3_c00154{bottom:482.080008px;}
.y2_c00154{bottom:483.039408px;}
.y1_c00154{bottom:488.148000px;}
.h3_c00154{height:102.013055px;}
.h4_c00154{height:144.018431px;}
.h2_c00154{height:150.019199px;}
.h0_c00154{height:698.220000px;}
.h1_c00154{height:698.250000px;}
.w1_c00154{width:945.750000px;}
.w0_c00154{width:946.050000px;}
.x0_c00154{left:0.000000px;}
.x1_c00154{left:1.870500px;}
.x8_c00154{left:14.166168px;}
.x9_c00154{left:54.654000px;}
.x2_c00154{left:321.157500px;}
.xa_c00154{left:326.839692px;}
.x3_c00154{left:381.120000px;}
.xb_c00154{left:446.687448px;}
.x4_c00154{left:554.929500px;}
.xf_c00154{left:588.792132px;}
.xc_c00154{left:597.358644px;}
.x10_c00154{left:650.363100px;}
.x5_c00154{left:651.847500px;}
.xd_c00154{left:711.928632px;}
.x6_c00154{left:727.893000px;}
.x11_c00154{left:827.995788px;}
.x7_c00154{left:876.997500px;}
.xe_c00154{left:892.893696px;}
@media print{
.v0_c00154{vertical-align:0.000000pt;}
.ls0_c00154{letter-spacing:0.000000pt;}
.ws0_c00154{word-spacing:0.000000pt;}
.fs1_c00154{font-size:90.678271pt;}
.fs2_c00154{font-size:128.016383pt;}
.fs0_c00154{font-size:133.350399pt;}
.y0_c00154{bottom:0.000000pt;}
.y12_c00154{bottom:359.051691pt;}
.y11_c00154{bottom:359.660000pt;}
.y10_c00154{bottom:361.870251pt;}
.yf_c00154{bottom:362.636565pt;}
.ye_c00154{bottom:396.769408pt;}
.yd_c00154{bottom:397.894763pt;}
.yc_c00154{bottom:398.607968pt;}
.yb_c00154{bottom:399.545205pt;}
.ya_c00154{bottom:400.290795pt;}
.y9_c00154{bottom:401.983989pt;}
.y8_c00154{bottom:402.235733pt;}
.y7_c00154{bottom:421.463083pt;}
.y6_c00154{bottom:423.583680pt;}
.y5_c00154{bottom:424.665216pt;}
.y4_c00154{bottom:426.043605pt;}
.y3_c00154{bottom:428.515563pt;}
.y2_c00154{bottom:429.368363pt;}
.y1_c00154{bottom:433.909333pt;}
.h3_c00154{height:90.678271pt;}
.h4_c00154{height:128.016383pt;}
.h2_c00154{height:133.350399pt;}
.h0_c00154{height:620.640000pt;}
.h1_c00154{height:620.666667pt;}
.w1_c00154{width:840.666667pt;}
.w0_c00154{width:840.933333pt;}
.x0_c00154{left:0.000000pt;}
.x1_c00154{left:1.662667pt;}
.x8_c00154{left:12.592149pt;}
.x9_c00154{left:48.581333pt;}
.x2_c00154{left:285.473333pt;}
.xa_c00154{left:290.524171pt;}
.x3_c00154{left:338.773333pt;}
.xb_c00154{left:397.055509pt;}
.x4_c00154{left:493.270667pt;}
.xf_c00154{left:523.370784pt;}
.xc_c00154{left:530.985461pt;}
.x10_c00154{left:578.100533pt;}
.x5_c00154{left:579.420000pt;}
.xd_c00154{left:632.825451pt;}
.x6_c00154{left:647.016000pt;}
.x11_c00154{left:735.996256pt;}
.x7_c00154{left:779.553333pt;}
.xe_c00154{left:793.683285pt;}
}





/* 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_c00155 {
    display:none;
  }
  .loading-indicator_c00155.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00155 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_c00155 { 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_c00155" -> "#page-container .classname_c00155")
 */
.pf_c00155 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00155 { /* 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_c00155.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00155 { /* 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_c00155 { /* 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_c00155 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00155 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00155 {overflow:visible;}
  }
}
.c_c00155 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00155 { /* 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_c00155:after { /* webkit #35443 */
  content: '';
}
.t_c00155:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00155 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 */
}
.__c00155 { /* 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_c00155 { /* info for Javascript */
  display:none;
}
.l_c00155 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00155 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00155 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00155: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_c00155 {
    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_c00155.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00155.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_c00155 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00155{font-family:sans-serif;visibility:hidden;}
.sc__c00155{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00155{-webkit-text-stroke:0px transparent;}
}
.y0_c00155{bottom:0.000000px;}
.h0_c00155{height:698.220000px;}
.h1_c00155{height:698.250000px;}
.w1_c00155{width:945.750000px;}
.w0_c00155{width:946.050000px;}
.x0_c00155{left:0.000000px;}
@media print{
.y0_c00155{bottom:0.000000pt;}
.h0_c00155{height:620.640000pt;}
.h1_c00155{height:620.666667pt;}
.w1_c00155{width:840.666667pt;}
.w0_c00155{width:840.933333pt;}
.x0_c00155{left:0.000000pt;}
}





/* 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_c00156 {
    display:none;
  }
  .loading-indicator_c00156.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00156 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_c00156 { 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_c00156" -> "#page-container .classname_c00156")
 */
.pf_c00156 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00156 { /* 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_c00156.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00156 { /* 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_c00156 { /* 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_c00156 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00156 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00156 {overflow:visible;}
  }
}
.c_c00156 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00156 { /* 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_c00156:after { /* webkit #35443 */
  content: '';
}
.t_c00156:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00156 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 */
}
.__c00156 { /* 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_c00156 { /* info for Javascript */
  display:none;
}
.l_c00156 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00156 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00156 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00156: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_c00156 {
    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_c00156.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00156.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_c00156 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00156{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00156;src:url('chunks/assets/font_53ec0c54e60da7c2d414b553.woff2')format("woff");}.ff1_c00156{font-family:ff1_c00156;line-height:1.000000;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;}
.m4_c00156{transform:matrix(0.049136,-0.000639,0.003250,0.249979,0,0);-ms-transform:matrix(0.049136,-0.000639,0.003250,0.249979,0,0);-webkit-transform:matrix(0.049136,-0.000639,0.003250,0.249979,0,0);}
.m24_c00156{transform:matrix(0.123844,-0.000495,0.001000,0.249998,0,0);-ms-transform:matrix(0.123844,-0.000495,0.001000,0.249998,0,0);-webkit-transform:matrix(0.123844,-0.000495,0.001000,0.249998,0,0);}
.me_c00156{transform:matrix(0.128371,-0.001540,0.003000,0.249982,0,0);-ms-transform:matrix(0.128371,-0.001540,0.003000,0.249982,0,0);-webkit-transform:matrix(0.128371,-0.001540,0.003000,0.249982,0,0);}
.m21_c00156{transform:matrix(0.193623,-0.000774,0.001000,0.249998,0,0);-ms-transform:matrix(0.193623,-0.000774,0.001000,0.249998,0,0);-webkit-transform:matrix(0.193623,-0.000774,0.001000,0.249998,0,0);}
.mf_c00156{transform:matrix(0.217669,-0.002612,0.003000,0.249982,0,0);-ms-transform:matrix(0.217669,-0.002612,0.003000,0.249982,0,0);-webkit-transform:matrix(0.217669,-0.002612,0.003000,0.249982,0,0);}
.m18_c00156{transform:matrix(0.241401,-0.003380,0.003500,0.249976,0,0);-ms-transform:matrix(0.241401,-0.003380,0.003500,0.249976,0,0);-webkit-transform:matrix(0.241401,-0.003380,0.003500,0.249976,0,0);}
.m22_c00156{transform:matrix(0.251293,-0.001005,0.001000,0.249998,0,0);-ms-transform:matrix(0.251293,-0.001005,0.001000,0.249998,0,0);-webkit-transform:matrix(0.251293,-0.001005,0.001000,0.249998,0,0);}
.m1c_c00156{transform:matrix(0.256870,-0.003596,0.003500,0.249976,0,0);-ms-transform:matrix(0.256870,-0.003596,0.003500,0.249976,0,0);-webkit-transform:matrix(0.256870,-0.003596,0.003500,0.249976,0,0);}
.m7_c00156{transform:matrix(0.272832,-0.003547,0.003250,0.249979,0,0);-ms-transform:matrix(0.272832,-0.003547,0.003250,0.249979,0,0);-webkit-transform:matrix(0.272832,-0.003547,0.003250,0.249979,0,0);}
.m13_c00156{transform:matrix(0.284744,-0.003417,0.003000,0.249982,0,0);-ms-transform:matrix(0.284744,-0.003417,0.003000,0.249982,0,0);-webkit-transform:matrix(0.284744,-0.003417,0.003000,0.249982,0,0);}
.m15_c00156{transform:matrix(0.290152,-0.004062,0.003500,0.249976,0,0);-ms-transform:matrix(0.290152,-0.004062,0.003500,0.249976,0,0);-webkit-transform:matrix(0.290152,-0.004062,0.003500,0.249976,0,0);}
.m10_c00156{transform:matrix(0.300558,-0.003607,0.003000,0.249982,0,0);-ms-transform:matrix(0.300558,-0.003607,0.003000,0.249982,0,0);-webkit-transform:matrix(0.300558,-0.003607,0.003000,0.249982,0,0);}
.m12_c00156{transform:matrix(0.303228,-0.003639,0.003000,0.249982,0,0);-ms-transform:matrix(0.303228,-0.003639,0.003000,0.249982,0,0);-webkit-transform:matrix(0.303228,-0.003639,0.003000,0.249982,0,0);}
.m9_c00156{transform:matrix(0.308799,-0.004014,0.003250,0.249979,0,0);-ms-transform:matrix(0.308799,-0.004014,0.003250,0.249979,0,0);-webkit-transform:matrix(0.308799,-0.004014,0.003250,0.249979,0,0);}
.m23_c00156{transform:matrix(0.310143,-0.001241,0.001000,0.249998,0,0);-ms-transform:matrix(0.310143,-0.001241,0.001000,0.249998,0,0);-webkit-transform:matrix(0.310143,-0.001241,0.001000,0.249998,0,0);}
.ma_c00156{transform:matrix(0.333637,-0.004337,0.003250,0.249979,0,0);-ms-transform:matrix(0.333637,-0.004337,0.003250,0.249979,0,0);-webkit-transform:matrix(0.333637,-0.004337,0.003250,0.249979,0,0);}
.md_c00156{transform:matrix(0.349635,-0.004196,0.003000,0.249982,0,0);-ms-transform:matrix(0.349635,-0.004196,0.003000,0.249982,0,0);-webkit-transform:matrix(0.349635,-0.004196,0.003000,0.249982,0,0);}
.m1a_c00156{transform:matrix(0.352860,-0.004940,0.003500,0.249976,0,0);-ms-transform:matrix(0.352860,-0.004940,0.003500,0.249976,0,0);-webkit-transform:matrix(0.352860,-0.004940,0.003500,0.249976,0,0);}
.m14_c00156{transform:matrix(0.354544,-0.004255,0.003000,0.249982,0,0);-ms-transform:matrix(0.354544,-0.004255,0.003000,0.249982,0,0);-webkit-transform:matrix(0.354544,-0.004255,0.003000,0.249982,0,0);}
.m8_c00156{transform:matrix(0.356255,-0.004631,0.003250,0.249979,0,0);-ms-transform:matrix(0.356255,-0.004631,0.003250,0.249979,0,0);-webkit-transform:matrix(0.356255,-0.004631,0.003250,0.249979,0,0);}
.m5_c00156{transform:matrix(0.364554,-0.004739,0.003250,0.249979,0,0);-ms-transform:matrix(0.364554,-0.004739,0.003250,0.249979,0,0);-webkit-transform:matrix(0.364554,-0.004739,0.003250,0.249979,0,0);}
.m1d_c00156{transform:matrix(0.387882,-0.005430,0.003500,0.249976,0,0);-ms-transform:matrix(0.387882,-0.005430,0.003500,0.249976,0,0);-webkit-transform:matrix(0.387882,-0.005430,0.003500,0.249976,0,0);}
.mb_c00156{transform:matrix(0.389392,-0.005062,0.003250,0.249979,0,0);-ms-transform:matrix(0.389392,-0.005062,0.003250,0.249979,0,0);-webkit-transform:matrix(0.389392,-0.005062,0.003250,0.249979,0,0);}
.m11_c00156{transform:matrix(0.407776,-0.004893,0.003000,0.249982,0,0);-ms-transform:matrix(0.407776,-0.004893,0.003000,0.249982,0,0);-webkit-transform:matrix(0.407776,-0.004893,0.003000,0.249982,0,0);}
.m1b_c00156{transform:matrix(0.440927,-0.006173,0.003500,0.249976,0,0);-ms-transform:matrix(0.440927,-0.006173,0.003500,0.249976,0,0);-webkit-transform:matrix(0.440927,-0.006173,0.003500,0.249976,0,0);}
.mc_c00156{transform:matrix(0.542511,-0.006510,0.003000,0.249982,0,0);-ms-transform:matrix(0.542511,-0.006510,0.003000,0.249982,0,0);-webkit-transform:matrix(0.542511,-0.006510,0.003000,0.249982,0,0);}
.m19_c00156{transform:matrix(0.696802,-0.009755,0.003500,0.249976,0,0);-ms-transform:matrix(0.696802,-0.009755,0.003500,0.249976,0,0);-webkit-transform:matrix(0.696802,-0.009755,0.003500,0.249976,0,0);}
.m6_c00156{transform:matrix(0.730048,-0.009491,0.003250,0.249979,0,0);-ms-transform:matrix(0.730048,-0.009491,0.003250,0.249979,0,0);-webkit-transform:matrix(0.730048,-0.009491,0.003250,0.249979,0,0);}
.m1e_c00156{transform:matrix(0.730299,-0.002921,0.001000,0.249998,0,0);-ms-transform:matrix(0.730299,-0.002921,0.001000,0.249998,0,0);-webkit-transform:matrix(0.730299,-0.002921,0.001000,0.249998,0,0);}
.m16_c00156{transform:matrix(0.744057,-0.010417,0.003500,0.249976,0,0);-ms-transform:matrix(0.744057,-0.010417,0.003500,0.249976,0,0);-webkit-transform:matrix(0.744057,-0.010417,0.003500,0.249976,0,0);}
.m3_c00156{transform:matrix(0.952063,-0.005712,0.001500,0.249996,0,0);-ms-transform:matrix(0.952063,-0.005712,0.001500,0.249996,0,0);-webkit-transform:matrix(0.952063,-0.005712,0.001500,0.249996,0,0);}
.m17_c00156{transform:matrix(1.266206,-0.017727,0.003500,0.249976,0,0);-ms-transform:matrix(1.266206,-0.017727,0.003500,0.249976,0,0);-webkit-transform:matrix(1.266206,-0.017727,0.003500,0.249976,0,0);}
.m1f_c00156{transform:matrix(1.268650,-0.005075,0.001000,0.249998,0,0);-ms-transform:matrix(1.268650,-0.005075,0.001000,0.249998,0,0);-webkit-transform:matrix(1.268650,-0.005075,0.001000,0.249998,0,0);}
.m0_c00156{transform:matrix(1.416435,-0.008499,0.001500,0.249996,0,0);-ms-transform:matrix(1.416435,-0.008499,0.001500,0.249996,0,0);-webkit-transform:matrix(1.416435,-0.008499,0.001500,0.249996,0,0);}
.m2_c00156{transform:matrix(1.481618,-0.008890,0.001500,0.249996,0,0);-ms-transform:matrix(1.481618,-0.008890,0.001500,0.249996,0,0);-webkit-transform:matrix(1.481618,-0.008890,0.001500,0.249996,0,0);}
.m1_c00156{transform:matrix(1.518188,-0.009109,0.001500,0.249996,0,0);-ms-transform:matrix(1.518188,-0.009109,0.001500,0.249996,0,0);-webkit-transform:matrix(1.518188,-0.009109,0.001500,0.249996,0,0);}
.m20_c00156{transform:matrix(2.070163,-0.008281,0.001000,0.249998,0,0);-ms-transform:matrix(2.070163,-0.008281,0.001000,0.249998,0,0);-webkit-transform:matrix(2.070163,-0.008281,0.001000,0.249998,0,0);}
.v0_c00156{vertical-align:0.000000px;}
.ls0_c00156{letter-spacing:0.000000px;}
.sc__c00156{text-shadow:none;}
.sc0_c00156{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__c00156{-webkit-text-stroke:0px transparent;}
.sc0_c00156{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00156{word-spacing:0.000000px;}
.fc0_c00156{color:transparent;}
.fs4_c00156{font-size:96.009408px;}
.fs1_c00156{font-size:114.002052px;}
.fs0_c00156{font-size:120.002160px;}
.fs3_c00156{font-size:120.008640px;}
.fs2_c00156{font-size:120.010140px;}
.fs5_c00156{font-size:132.001056px;}
.fs6_c00156{font-size:234.001872px;}
.y0_c00156{bottom:0.000000px;}
.y24_c00156{bottom:273.925698px;}
.y25_c00156{bottom:273.926094px;}
.y23_c00156{bottom:273.926298px;}
.y1f_c00156{bottom:283.629000px;}
.y20_c00156{bottom:284.827080px;}
.y21_c00156{bottom:286.066740px;}
.y22_c00156{bottom:286.785258px;}
.y16_c00156{bottom:355.866000px;}
.y17_c00156{bottom:355.983600px;}
.y18_c00156{bottom:357.753228px;}
.y19_c00156{bottom:359.731659px;}
.y1a_c00156{bottom:360.492468px;}
.y1b_c00156{bottom:362.575038px;}
.y1c_c00156{bottom:363.943272px;}
.y1d_c00156{bottom:366.770649px;}
.y1e_c00156{bottom:367.449138px;}
.yd_c00156{bottom:381.247500px;}
.ye_c00156{bottom:381.359118px;}
.yf_c00156{bottom:383.025000px;}
.y10_c00156{bottom:383.474118px;}
.y11_c00156{bottom:384.278754px;}
.y13_c00156{bottom:387.533982px;}
.y12_c00156{bottom:387.628284px;}
.y14_c00156{bottom:390.695988px;}
.y15_c00156{bottom:391.512414px;}
.y5_c00156{bottom:425.520000px;}
.y6_c00156{bottom:426.515124px;}
.y7_c00156{bottom:428.608742px;}
.y8_c00156{bottom:431.803933px;}
.y9_c00156{bottom:432.938248px;}
.ya_c00156{bottom:434.924733px;}
.yb_c00156{bottom:435.661775px;}
.yc_c00156{bottom:436.819977px;}
.y4_c00156{bottom:462.561120px;}
.y1_c00156{bottom:497.155500px;}
.y2_c00156{bottom:498.870873px;}
.y3_c00156{bottom:501.042429px;}
.h6_c00156{height:96.009408px;}
.h3_c00156{height:114.002052px;}
.h2_c00156{height:120.002160px;}
.h5_c00156{height:120.008640px;}
.h4_c00156{height:120.010140px;}
.h7_c00156{height:132.001056px;}
.h8_c00156{height:234.001872px;}
.h0_c00156{height:698.220000px;}
.h1_c00156{height:698.250000px;}
.w1_c00156{width:945.750000px;}
.w0_c00156{width:946.050000px;}
.x0_c00156{left:0.000000px;}
.x1_c00156{left:14.617500px;}
.xc_c00156{left:16.506000px;}
.x4_c00156{left:25.595454px;}
.x1a_c00156{left:49.396500px;}
.x5_c00156{left:91.977000px;}
.x14_c00156{left:152.202000px;}
.xd_c00156{left:164.631000px;}
.xe_c00156{left:202.057500px;}
.x6_c00156{left:253.024500px;}
.xf_c00156{left:269.110500px;}
.x15_c00156{left:293.518500px;}
.x2_c00156{left:300.513000px;}
.x16_c00156{left:347.862000px;}
.x1b_c00156{left:348.916500px;}
.x17_c00156{left:496.617000px;}
.x7_c00156{left:498.808500px;}
.x11_c00156{left:540.379500px;}
.x10_c00156{left:548.238000px;}
.x8_c00156{left:586.063500px;}
.x18_c00156{left:594.348000px;}
.x1c_c00156{left:658.831500px;}
.x3_c00156{left:662.439000px;}
.x9_c00156{left:738.870000px;}
.x1e_c00156{left:794.345730px;}
.xa_c00156{left:795.565500px;}
.x12_c00156{left:803.880000px;}
.x1d_c00156{left:838.461000px;}
.x19_c00156{left:844.767000px;}
.x13_c00156{left:871.915500px;}
.xb_c00156{left:884.658000px;}
@media print{
.v0_c00156{vertical-align:0.000000pt;}
.ls0_c00156{letter-spacing:0.000000pt;}
.ws0_c00156{word-spacing:0.000000pt;}
.fs4_c00156{font-size:85.341696pt;}
.fs1_c00156{font-size:101.335157pt;}
.fs0_c00156{font-size:106.668587pt;}
.fs3_c00156{font-size:106.674346pt;}
.fs2_c00156{font-size:106.675680pt;}
.fs5_c00156{font-size:117.334272pt;}
.fs6_c00156{font-size:208.001664pt;}
.y0_c00156{bottom:0.000000pt;}
.y24_c00156{bottom:243.489509pt;}
.y25_c00156{bottom:243.489861pt;}
.y23_c00156{bottom:243.490043pt;}
.y1f_c00156{bottom:252.114667pt;}
.y20_c00156{bottom:253.179627pt;}
.y21_c00156{bottom:254.281547pt;}
.y22_c00156{bottom:254.920229pt;}
.y16_c00156{bottom:316.325333pt;}
.y17_c00156{bottom:316.429867pt;}
.y18_c00156{bottom:318.002869pt;}
.y19_c00156{bottom:319.761475pt;}
.y1a_c00156{bottom:320.437749pt;}
.y1b_c00156{bottom:322.288923pt;}
.y1c_c00156{bottom:323.505131pt;}
.y1d_c00156{bottom:326.018355pt;}
.y1e_c00156{bottom:326.621456pt;}
.yd_c00156{bottom:338.886667pt;}
.ye_c00156{bottom:338.985883pt;}
.yf_c00156{bottom:340.466667pt;}
.y10_c00156{bottom:340.865883pt;}
.y11_c00156{bottom:341.581115pt;}
.y13_c00156{bottom:344.474651pt;}
.y12_c00156{bottom:344.558475pt;}
.y14_c00156{bottom:347.285323pt;}
.y15_c00156{bottom:348.011035pt;}
.y5_c00156{bottom:378.240000pt;}
.y6_c00156{bottom:379.124555pt;}
.y7_c00156{bottom:380.985548pt;}
.y8_c00156{bottom:383.825719pt;}
.y9_c00156{bottom:384.833999pt;}
.ya_c00156{bottom:386.599763pt;}
.yb_c00156{bottom:387.254911pt;}
.yc_c00156{bottom:388.284424pt;}
.y4_c00156{bottom:411.165440pt;}
.y1_c00156{bottom:441.916000pt;}
.y2_c00156{bottom:443.440776pt;}
.y3_c00156{bottom:445.371048pt;}
.h6_c00156{height:85.341696pt;}
.h3_c00156{height:101.335157pt;}
.h2_c00156{height:106.668587pt;}
.h5_c00156{height:106.674346pt;}
.h4_c00156{height:106.675680pt;}
.h7_c00156{height:117.334272pt;}
.h8_c00156{height:208.001664pt;}
.h0_c00156{height:620.640000pt;}
.h1_c00156{height:620.666667pt;}
.w1_c00156{width:840.666667pt;}
.w0_c00156{width:840.933333pt;}
.x0_c00156{left:0.000000pt;}
.x1_c00156{left:12.993333pt;}
.xc_c00156{left:14.672000pt;}
.x4_c00156{left:22.751515pt;}
.x1a_c00156{left:43.908000pt;}
.x5_c00156{left:81.757333pt;}
.x14_c00156{left:135.290667pt;}
.xd_c00156{left:146.338667pt;}
.xe_c00156{left:179.606667pt;}
.x6_c00156{left:224.910667pt;}
.xf_c00156{left:239.209333pt;}
.x15_c00156{left:260.905333pt;}
.x2_c00156{left:267.122667pt;}
.x16_c00156{left:309.210667pt;}
.x1b_c00156{left:310.148000pt;}
.x17_c00156{left:441.437333pt;}
.x7_c00156{left:443.385333pt;}
.x11_c00156{left:480.337333pt;}
.x10_c00156{left:487.322667pt;}
.x8_c00156{left:520.945333pt;}
.x18_c00156{left:528.309333pt;}
.x1c_c00156{left:585.628000pt;}
.x3_c00156{left:588.834667pt;}
.x9_c00156{left:656.773333pt;}
.x1e_c00156{left:706.085093pt;}
.xa_c00156{left:707.169333pt;}
.x12_c00156{left:714.560000pt;}
.x1d_c00156{left:745.298667pt;}
.x19_c00156{left:750.904000pt;}
.x13_c00156{left:775.036000pt;}
.xb_c00156{left:786.362667pt;}
}





/* 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_c00157 {
    display:none;
  }
  .loading-indicator_c00157.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00157 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_c00157 { 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_c00157" -> "#page-container .classname_c00157")
 */
.pf_c00157 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00157 { /* 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_c00157.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00157 { /* 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_c00157 { /* 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_c00157 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00157 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00157 {overflow:visible;}
  }
}
.c_c00157 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00157 { /* 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_c00157:after { /* webkit #35443 */
  content: '';
}
.t_c00157:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00157 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 */
}
.__c00157 { /* 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_c00157 { /* info for Javascript */
  display:none;
}
.l_c00157 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00157 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00157 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00157: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_c00157 {
    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_c00157.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00157.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_c00157 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00157{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00157;src:url('chunks/assets/font_5f4fe34b032b9307bcc13373.woff2')format("woff");}.ff1_c00157{font-family:ff1_c00157;line-height:1.000000;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;}
.m0_c00157{transform:matrix(0.754230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.754230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.754230,0.000000,0.000000,0.250000,0,0);}
.v0_c00157{vertical-align:0.000000px;}
.ls0_c00157{letter-spacing:0.000000px;}
.sc__c00157{text-shadow:none;}
.sc0_c00157{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__c00157{-webkit-text-stroke:0px transparent;}
.sc0_c00157{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00157{word-spacing:0.000000px;}
.fc0_c00157{color:transparent;}
.fs0_c00157{font-size:42.000000px;}
.y0_c00157{bottom:0.000000px;}
.y1_c00157{bottom:96.876000px;}
.h2_c00157{height:42.000000px;}
.h0_c00157{height:698.220000px;}
.h1_c00157{height:698.250000px;}
.w1_c00157{width:945.750000px;}
.w0_c00157{width:946.050000px;}
.x0_c00157{left:0.000000px;}
.x1_c00157{left:594.000000px;}
@media print{
.v0_c00157{vertical-align:0.000000pt;}
.ls0_c00157{letter-spacing:0.000000pt;}
.ws0_c00157{word-spacing:0.000000pt;}
.fs0_c00157{font-size:37.333333pt;}
.y0_c00157{bottom:0.000000pt;}
.y1_c00157{bottom:86.112000pt;}
.h2_c00157{height:37.333333pt;}
.h0_c00157{height:620.640000pt;}
.h1_c00157{height:620.666667pt;}
.w1_c00157{width:840.666667pt;}
.w0_c00157{width:840.933333pt;}
.x0_c00157{left:0.000000pt;}
.x1_c00157{left:528.000000pt;}
}





/* 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_c00158 {
    display:none;
  }
  .loading-indicator_c00158.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00158 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_c00158 { 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_c00158" -> "#page-container .classname_c00158")
 */
.pf_c00158 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00158 { /* 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_c00158.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00158 { /* 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_c00158 { /* 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_c00158 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00158 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00158 {overflow:visible;}
  }
}
.c_c00158 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00158 { /* 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_c00158:after { /* webkit #35443 */
  content: '';
}
.t_c00158:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00158 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 */
}
.__c00158 { /* 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_c00158 { /* info for Javascript */
  display:none;
}
.l_c00158 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00158 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00158 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00158: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_c00158 {
    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_c00158.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00158.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_c00158 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00158{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00158;src:url('chunks/assets/font_6bbd15de30fdc229d5d5ff82.woff2')format("woff");}.ff1_c00158{font-family:ff1_c00158;line-height:1.000000;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;}
.m6_c00158{transform:matrix(0.021215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021215,0.000000,0.000000,0.250000,0,0);}
.md_c00158{transform:matrix(0.042425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.042425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.042425,0.000000,0.000000,0.250000,0,0);}
.m9_c00158{transform:matrix(0.148490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148490,0.000000,0.000000,0.250000,0,0);}
.m1_c00158{transform:matrix(0.170880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170880,0.000000,0.000000,0.250000,0,0);}
.m8_c00158{transform:matrix(0.174930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174930,0.000000,0.000000,0.250000,0,0);}
.m7_c00158{transform:matrix(0.185540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185540,0.000000,0.000000,0.250000,0,0);}
.m5_c00158{transform:matrix(0.202760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202760,0.000000,0.000000,0.250000,0,0);}
.m4_c00158{transform:matrix(0.216130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216130,0.000000,0.000000,0.250000,0,0);}
.m3_c00158{transform:matrix(0.244155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244155,0.000000,0.000000,0.250000,0,0);}
.m2_c00158{transform:matrix(0.271330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271330,0.000000,0.000000,0.250000,0,0);}
.ma_c00158{transform:matrix(0.303625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303625,0.000000,0.000000,0.250000,0,0);}
.mb_c00158{transform:matrix(1.090365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.090365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.090365,0.000000,0.000000,0.250000,0,0);}
.mc_c00158{transform:matrix(1.803995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.803995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.803995,0.000000,0.000000,0.250000,0,0);}
.m0_c00158{transform:matrix(3.303405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.303405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.303405,0.000000,0.000000,0.250000,0,0);}
.v0_c00158{vertical-align:0.000000px;}
.ls0_c00158{letter-spacing:0.000000px;}
.sc__c00158{text-shadow:none;}
.sc0_c00158{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__c00158{-webkit-text-stroke:0px transparent;}
.sc0_c00158{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00158{word-spacing:0.000000px;}
.fc0_c00158{color:transparent;}
.fs0_c00158{font-size:18.000000px;}
.fs2_c00158{font-size:36.000000px;}
.fs3_c00158{font-size:48.000000px;}
.fs1_c00158{font-size:54.000000px;}
.y0_c00158{bottom:0.000000px;}
.y1_c00158{bottom:96.120000px;}
.y7_c00158{bottom:180.360000px;}
.y6_c00158{bottom:472.230000px;}
.y5_c00158{bottom:559.440000px;}
.y4_c00158{bottom:561.330000px;}
.y2_c00158{bottom:563.760000px;}
.y3_c00158{bottom:685.530000px;}
.h2_c00158{height:18.000000px;}
.h4_c00158{height:36.000000px;}
.h5_c00158{height:48.000000px;}
.h3_c00158{height:54.000000px;}
.h0_c00158{height:698.220000px;}
.h1_c00158{height:698.250000px;}
.w1_c00158{width:945.750000px;}
.w0_c00158{width:946.050000px;}
.x0_c00158{left:0.000000px;}
.x1_c00158{left:9.180000px;}
.x8_c00158{left:251.370000px;}
.x2_c00158{left:254.610000px;}
.x6_c00158{left:257.310000px;}
.x3_c00158{left:259.200000px;}
.x4_c00158{left:261.090000px;}
.x5_c00158{left:264.600000px;}
.x9_c00158{left:268.920000px;}
.x7_c00158{left:271.080000px;}
@media print{
.v0_c00158{vertical-align:0.000000pt;}
.ls0_c00158{letter-spacing:0.000000pt;}
.ws0_c00158{word-spacing:0.000000pt;}
.fs0_c00158{font-size:16.000000pt;}
.fs2_c00158{font-size:32.000000pt;}
.fs3_c00158{font-size:42.666667pt;}
.fs1_c00158{font-size:48.000000pt;}
.y0_c00158{bottom:0.000000pt;}
.y1_c00158{bottom:85.440000pt;}
.y7_c00158{bottom:160.320000pt;}
.y6_c00158{bottom:419.760000pt;}
.y5_c00158{bottom:497.280000pt;}
.y4_c00158{bottom:498.960000pt;}
.y2_c00158{bottom:501.120000pt;}
.y3_c00158{bottom:609.360000pt;}
.h2_c00158{height:16.000000pt;}
.h4_c00158{height:32.000000pt;}
.h5_c00158{height:42.666667pt;}
.h3_c00158{height:48.000000pt;}
.h0_c00158{height:620.640000pt;}
.h1_c00158{height:620.666667pt;}
.w1_c00158{width:840.666667pt;}
.w0_c00158{width:840.933333pt;}
.x0_c00158{left:0.000000pt;}
.x1_c00158{left:8.160000pt;}
.x8_c00158{left:223.440000pt;}
.x2_c00158{left:226.320000pt;}
.x6_c00158{left:228.720000pt;}
.x3_c00158{left:230.400000pt;}
.x4_c00158{left:232.080000pt;}
.x5_c00158{left:235.200000pt;}
.x9_c00158{left:239.040000pt;}
.x7_c00158{left:240.960000pt;}
}





/* 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_c00159 {
    display:none;
  }
  .loading-indicator_c00159.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00159 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_c00159 { 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_c00159" -> "#page-container .classname_c00159")
 */
.pf_c00159 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00159 { /* 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_c00159.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00159 { /* 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_c00159 { /* 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_c00159 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00159 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00159 {overflow:visible;}
  }
}
.c_c00159 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00159 { /* 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_c00159:after { /* webkit #35443 */
  content: '';
}
.t_c00159:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00159 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 */
}
.__c00159 { /* 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_c00159 { /* info for Javascript */
  display:none;
}
.l_c00159 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00159 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00159 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00159: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_c00159 {
    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_c00159.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00159.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_c00159 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00159{font-family:sans-serif;visibility:hidden;}
.sc__c00159{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00159{-webkit-text-stroke:0px transparent;}
}
.y0_c00159{bottom:0.000000px;}
.h0_c00159{height:682.500000px;}
.w1_c00159{width:945.750000px;}
.w0_c00159{width:946.050000px;}
.x0_c00159{left:0.000000px;}
@media print{
.y0_c00159{bottom:0.000000pt;}
.h0_c00159{height:606.666667pt;}
.w1_c00159{width:840.666667pt;}
.w0_c00159{width:840.933333pt;}
.x0_c00159{left:0.000000pt;}
}





/* 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_c00160 {
    display:none;
  }
  .loading-indicator_c00160.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00160 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_c00160 { 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_c00160" -> "#page-container .classname_c00160")
 */
.pf_c00160 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00160 { /* 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_c00160.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00160 { /* 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_c00160 { /* 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_c00160 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00160 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00160 {overflow:visible;}
  }
}
.c_c00160 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00160 { /* 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_c00160:after { /* webkit #35443 */
  content: '';
}
.t_c00160:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00160 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 */
}
.__c00160 { /* 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_c00160 { /* info for Javascript */
  display:none;
}
.l_c00160 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00160 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00160 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00160: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_c00160 {
    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_c00160.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00160.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_c00160 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00160{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00160;src:url('chunks/assets/font_5f4fe34b032b9307bcc13373.woff2')format("woff");}.ff1_c00160{font-family:ff1_c00160;line-height:1.000000;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;}
.m0_c00160{transform:matrix(0.252810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252810,0.000000,0.000000,0.250000,0,0);}
.v0_c00160{vertical-align:0.000000px;}
.ls0_c00160{letter-spacing:0.000000px;}
.sc__c00160{text-shadow:none;}
.sc0_c00160{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__c00160{-webkit-text-stroke:0px transparent;}
.sc0_c00160{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00160{word-spacing:0.000000px;}
.fc0_c00160{color:transparent;}
.fs0_c00160{font-size:24.000000px;}
.y0_c00160{bottom:0.000000px;}
.y1_c00160{bottom:0.135000px;}
.h1_c00160{height:24.000000px;}
.h0_c00160{height:682.500000px;}
.w1_c00160{width:945.750000px;}
.w0_c00160{width:946.050000px;}
.x0_c00160{left:0.000000px;}
.x1_c00160{left:939.600000px;}
@media print{
.v0_c00160{vertical-align:0.000000pt;}
.ls0_c00160{letter-spacing:0.000000pt;}
.ws0_c00160{word-spacing:0.000000pt;}
.fs0_c00160{font-size:21.333333pt;}
.y0_c00160{bottom:0.000000pt;}
.y1_c00160{bottom:0.120000pt;}
.h1_c00160{height:21.333333pt;}
.h0_c00160{height:606.666667pt;}
.w1_c00160{width:840.666667pt;}
.w0_c00160{width:840.933333pt;}
.x0_c00160{left:0.000000pt;}
.x1_c00160{left:835.200000pt;}
}





/* 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_c00161 {
    display:none;
  }
  .loading-indicator_c00161.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00161 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_c00161 { 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_c00161" -> "#page-container .classname_c00161")
 */
.pf_c00161 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00161 { /* 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_c00161.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00161 { /* 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_c00161 { /* 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_c00161 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00161 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00161 {overflow:visible;}
  }
}
.c_c00161 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00161 { /* 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_c00161:after { /* webkit #35443 */
  content: '';
}
.t_c00161:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00161 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 */
}
.__c00161 { /* 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_c00161 { /* info for Javascript */
  display:none;
}
.l_c00161 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00161 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00161 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00161: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_c00161 {
    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_c00161.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00161.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_c00161 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00161{font-family:sans-serif;visibility:hidden;}
.sc__c00161{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00161{-webkit-text-stroke:0px transparent;}
}
.y0_c00161{bottom:0.000000px;}
.h0_c00161{height:682.500000px;}
.w1_c00161{width:945.750000px;}
.w0_c00161{width:946.050000px;}
.x0_c00161{left:0.000000px;}
@media print{
.y0_c00161{bottom:0.000000pt;}
.h0_c00161{height:606.666667pt;}
.w1_c00161{width:840.666667pt;}
.w0_c00161{width:840.933333pt;}
.x0_c00161{left:0.000000pt;}
}





/* 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_c00162 {
    display:none;
  }
  .loading-indicator_c00162.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00162 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_c00162 { 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_c00162" -> "#page-container .classname_c00162")
 */
.pf_c00162 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00162 { /* 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_c00162.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00162 { /* 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_c00162 { /* 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_c00162 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00162 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00162 {overflow:visible;}
  }
}
.c_c00162 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00162 { /* 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_c00162:after { /* webkit #35443 */
  content: '';
}
.t_c00162:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00162 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 */
}
.__c00162 { /* 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_c00162 { /* info for Javascript */
  display:none;
}
.l_c00162 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00162 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00162 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00162: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_c00162 {
    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_c00162.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00162.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_c00162 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00162{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00162;src:url('chunks/assets/font_4e10b644121e127e5c7b113e.woff2')format("woff");}.ff1_c00162{font-family:ff1_c00162;line-height:1.000000;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;}
.m19_c00162{transform:matrix(0.185765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185765,0.000000,0.000000,0.250000,0,0);}
.m5_c00162{transform:matrix(0.226731,0.002948,-0.003250,0.249979,0,0);-ms-transform:matrix(0.226731,0.002948,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.226731,0.002948,-0.003250,0.249979,0,0);}
.m24_c00162{transform:matrix(0.234060,0.003745,-0.003999,0.249968,0,0);-ms-transform:matrix(0.234060,0.003745,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.234060,0.003745,-0.003999,0.249968,0,0);}
.m1b_c00162{transform:matrix(0.256490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256490,0.000000,0.000000,0.250000,0,0);}
.m22_c00162{transform:matrix(0.284844,0.004557,-0.003999,0.249968,0,0);-ms-transform:matrix(0.284844,0.004557,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.284844,0.004557,-0.003999,0.249968,0,0);}
.m23_c00162{transform:matrix(0.286848,0.004590,-0.003999,0.249968,0,0);-ms-transform:matrix(0.286848,0.004590,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.286848,0.004590,-0.003999,0.249968,0,0);}
.m1c_c00162{transform:matrix(0.289845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289845,0.000000,0.000000,0.250000,0,0);}
.m3_c00162{transform:matrix(0.311389,0.004048,-0.003250,0.249979,0,0);-ms-transform:matrix(0.311389,0.004048,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.311389,0.004048,-0.003250,0.249979,0,0);}
.m21_c00162{transform:matrix(0.324343,0.005189,-0.003999,0.249968,0,0);-ms-transform:matrix(0.324343,0.005189,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.324343,0.005189,-0.003999,0.249968,0,0);}
.ma_c00162{transform:matrix(0.333560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333560,0.000000,0.000000,0.250000,0,0);}
.m13_c00162{transform:matrix(0.339340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339340,0.000000,0.000000,0.250000,0,0);}
.m15_c00162{transform:matrix(0.339695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339695,0.000000,0.000000,0.250000,0,0);}
.m26_c00162{transform:matrix(0.343246,0.005492,-0.003999,0.249968,0,0);-ms-transform:matrix(0.343246,0.005492,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.343246,0.005492,-0.003999,0.249968,0,0);}
.m18_c00162{transform:matrix(0.344455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344455,0.000000,0.000000,0.250000,0,0);}
.m11_c00162{transform:matrix(0.351795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351795,0.000000,0.000000,0.250000,0,0);}
.m12_c00162{transform:matrix(0.372305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372305,0.000000,0.000000,0.250000,0,0);}
.mf_c00162{transform:matrix(0.376910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376910,0.000000,0.000000,0.250000,0,0);}
.mc_c00162{transform:matrix(0.386330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386330,0.000000,0.000000,0.250000,0,0);}
.m25_c00162{transform:matrix(0.403083,0.006449,-0.003999,0.249968,0,0);-ms-transform:matrix(0.403083,0.006449,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.403083,0.006449,-0.003999,0.249968,0,0);}
.m4_c00162{transform:matrix(0.431019,0.005603,-0.003250,0.249979,0,0);-ms-transform:matrix(0.431019,0.005603,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.431019,0.005603,-0.003250,0.249979,0,0);}
.m6_c00162{transform:matrix(0.453357,0.005894,-0.003250,0.249979,0,0);-ms-transform:matrix(0.453357,0.005894,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.453357,0.005894,-0.003250,0.249979,0,0);}
.m14_c00162{transform:matrix(0.481640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.481640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.481640,0.000000,0.000000,0.250000,0,0);}
.m0_c00162{transform:matrix(0.502753,0.006536,-0.003250,0.249979,0,0);-ms-transform:matrix(0.502753,0.006536,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.502753,0.006536,-0.003250,0.249979,0,0);}
.m9_c00162{transform:matrix(0.505290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505290,0.000000,0.000000,0.250000,0,0);}
.m8_c00162{transform:matrix(0.564762,0.007342,-0.003250,0.249979,0,0);-ms-transform:matrix(0.564762,0.007342,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.564762,0.007342,-0.003250,0.249979,0,0);}
.mb_c00162{transform:matrix(0.578920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578920,0.000000,0.000000,0.250000,0,0);}
.m1f_c00162{transform:matrix(0.634684,0.009520,-0.003750,0.249972,0,0);-ms-transform:matrix(0.634684,0.009520,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.634684,0.009520,-0.003750,0.249972,0,0);}
.m16_c00162{transform:matrix(0.641420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.641420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.641420,0.000000,0.000000,0.250000,0,0);}
.m1a_c00162{transform:matrix(0.653495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.653495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.653495,0.000000,0.000000,0.250000,0,0);}
.m1e_c00162{transform:matrix(0.653716,0.009806,-0.003750,0.249972,0,0);-ms-transform:matrix(0.653716,0.009806,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.653716,0.009806,-0.003750,0.249972,0,0);}
.m2_c00162{transform:matrix(0.700631,0.009108,-0.003250,0.249979,0,0);-ms-transform:matrix(0.700631,0.009108,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.700631,0.009108,-0.003250,0.249979,0,0);}
.me_c00162{transform:matrix(0.789340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.789340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.789340,0.000000,0.000000,0.250000,0,0);}
.m17_c00162{transform:matrix(0.812690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.812690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.812690,0.000000,0.000000,0.250000,0,0);}
.m1_c00162{transform:matrix(0.816311,0.010612,-0.003250,0.249979,0,0);-ms-transform:matrix(0.816311,0.010612,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.816311,0.010612,-0.003250,0.249979,0,0);}
.m10_c00162{transform:matrix(0.880970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.880970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.880970,0.000000,0.000000,0.250000,0,0);}
.md_c00162{transform:matrix(1.171555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.171555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.171555,0.000000,0.000000,0.250000,0,0);}
.m1d_c00162{transform:matrix(1.627552,0.024413,-0.003750,0.249972,0,0);-ms-transform:matrix(1.627552,0.024413,-0.003750,0.249972,0,0);-webkit-transform:matrix(1.627552,0.024413,-0.003750,0.249972,0,0);}
.m20_c00162{transform:matrix(1.706198,0.025593,-0.003750,0.249972,0,0);-ms-transform:matrix(1.706198,0.025593,-0.003750,0.249972,0,0);-webkit-transform:matrix(1.706198,0.025593,-0.003750,0.249972,0,0);}
.m7_c00162{transform:matrix(3.011566,0.039150,-0.003250,0.249979,0,0);-ms-transform:matrix(3.011566,0.039150,-0.003250,0.249979,0,0);-webkit-transform:matrix(3.011566,0.039150,-0.003250,0.249979,0,0);}
.v0_c00162{vertical-align:0.000000px;}
.ls0_c00162{letter-spacing:0.000000px;}
.sc__c00162{text-shadow:none;}
.sc0_c00162{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__c00162{-webkit-text-stroke:0px transparent;}
.sc0_c00162{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00162{word-spacing:0.000000px;}
.fc0_c00162{color:transparent;}
.fs0_c00162{font-size:48.004056px;}
.fs3_c00162{font-size:78.000000px;}
.fs4_c00162{font-size:102.000000px;}
.fs5_c00162{font-size:102.011474px;}
.fs6_c00162{font-size:126.016127px;}
.fs2_c00162{font-size:132.000000px;}
.fs1_c00162{font-size:168.000000px;}
.y0_c00162{bottom:0.000000px;}
.y17_c00162{bottom:197.181348px;}
.y16_c00162{bottom:199.958652px;}
.y15_c00162{bottom:201.924348px;}
.y14_c00162{bottom:202.844388px;}
.y13_c00162{bottom:204.465276px;}
.y12_c00162{bottom:205.474500px;}
.y11_c00162{bottom:305.065072px;}
.y10_c00162{bottom:306.522375px;}
.yf_c00162{bottom:308.016285px;}
.ye_c00162{bottom:312.756000px;}
.yd_c00162{bottom:415.018500px;}
.yc_c00162{bottom:546.718500px;}
.yb_c00162{bottom:621.091500px;}
.ya_c00162{bottom:627.648000px;}
.y9_c00162{bottom:662.160487px;}
.y8_c00162{bottom:664.063239px;}
.y7_c00162{bottom:664.456788px;}
.y6_c00162{bottom:664.860594px;}
.y5_c00162{bottom:665.426016px;}
.y4_c00162{bottom:665.616180px;}
.y3_c00162{bottom:666.503625px;}
.y2_c00162{bottom:667.430226px;}
.y1_c00162{bottom:667.444500px;}
.h1_c00162{height:48.004056px;}
.h4_c00162{height:78.000000px;}
.h5_c00162{height:102.000000px;}
.h6_c00162{height:102.011474px;}
.h7_c00162{height:126.016127px;}
.h3_c00162{height:132.000000px;}
.h2_c00162{height:168.000000px;}
.h0_c00162{height:682.500000px;}
.w1_c00162{width:945.750000px;}
.w0_c00162{width:946.050000px;}
.x0_c00162{left:0.000000px;}
.x10_c00162{left:9.180000px;}
.x21_c00162{left:22.905000px;}
.x19_c00162{left:32.670000px;}
.xd_c00162{left:42.120000px;}
.x22_c00162{left:85.981500px;}
.x1d_c00162{left:117.660000px;}
.x1a_c00162{left:127.710000px;}
.x11_c00162{left:162.000000px;}
.x23_c00162{left:187.287000px;}
.xa_c00162{left:215.730000px;}
.x12_c00162{left:227.610000px;}
.x1b_c00162{left:236.790000px;}
.x24_c00162{left:244.789500px;}
.xb_c00162{left:284.310000px;}
.x1c_c00162{left:294.300000px;}
.x13_c00162{left:324.540000px;}
.x25_c00162{left:367.645500px;}
.x1e_c00162{left:433.641000px;}
.x1_c00162{left:444.567000px;}
.x2_c00162{left:445.665000px;}
.xe_c00162{left:459.810000px;}
.x14_c00162{left:482.490000px;}
.xc_c00162{left:494.370000px;}
.x3_c00162{left:516.942000px;}
.x1f_c00162{left:533.235000px;}
.x26_c00162{left:541.227000px;}
.x15_c00162{left:571.590000px;}
.x4_c00162{left:585.207000px;}
.x5_c00162{left:599.835000px;}
.x16_c00162{left:626.940000px;}
.xf_c00162{left:628.830000px;}
.x20_c00162{left:630.388500px;}
.x6_c00162{left:643.329000px;}
.x7_c00162{left:674.391000px;}
.x8_c00162{left:704.664000px;}
.x17_c00162{left:744.390000px;}
.x18_c00162{left:816.750000px;}
.x9_c00162{left:851.029500px;}
@media print{
.v0_c00162{vertical-align:0.000000pt;}
.ls0_c00162{letter-spacing:0.000000pt;}
.ws0_c00162{word-spacing:0.000000pt;}
.fs0_c00162{font-size:42.670272pt;}
.fs3_c00162{font-size:69.333333pt;}
.fs4_c00162{font-size:90.666667pt;}
.fs5_c00162{font-size:90.676866pt;}
.fs6_c00162{font-size:112.014335pt;}
.fs2_c00162{font-size:117.333333pt;}
.fs1_c00162{font-size:149.333333pt;}
.y0_c00162{bottom:0.000000pt;}
.y17_c00162{bottom:175.272309pt;}
.y16_c00162{bottom:177.741024pt;}
.y15_c00162{bottom:179.488309pt;}
.y14_c00162{bottom:180.306123pt;}
.y13_c00162{bottom:181.746912pt;}
.y12_c00162{bottom:182.644000pt;}
.y11_c00162{bottom:271.168953pt;}
.y10_c00162{bottom:272.464333pt;}
.yf_c00162{bottom:273.792253pt;}
.ye_c00162{bottom:278.005333pt;}
.yd_c00162{bottom:368.905333pt;}
.yc_c00162{bottom:485.972000pt;}
.yb_c00162{bottom:552.081333pt;}
.ya_c00162{bottom:557.909333pt;}
.y9_c00162{bottom:588.587100pt;}
.y8_c00162{bottom:590.278435pt;}
.y7_c00162{bottom:590.628256pt;}
.y6_c00162{bottom:590.987195pt;}
.y5_c00162{bottom:591.489792pt;}
.y4_c00162{bottom:591.658827pt;}
.y3_c00162{bottom:592.447667pt;}
.y2_c00162{bottom:593.271312pt;}
.y1_c00162{bottom:593.284000pt;}
.h1_c00162{height:42.670272pt;}
.h4_c00162{height:69.333333pt;}
.h5_c00162{height:90.666667pt;}
.h6_c00162{height:90.676866pt;}
.h7_c00162{height:112.014335pt;}
.h3_c00162{height:117.333333pt;}
.h2_c00162{height:149.333333pt;}
.h0_c00162{height:606.666667pt;}
.w1_c00162{width:840.666667pt;}
.w0_c00162{width:840.933333pt;}
.x0_c00162{left:0.000000pt;}
.x10_c00162{left:8.160000pt;}
.x21_c00162{left:20.360000pt;}
.x19_c00162{left:29.040000pt;}
.xd_c00162{left:37.440000pt;}
.x22_c00162{left:76.428000pt;}
.x1d_c00162{left:104.586667pt;}
.x1a_c00162{left:113.520000pt;}
.x11_c00162{left:144.000000pt;}
.x23_c00162{left:166.477333pt;}
.xa_c00162{left:191.760000pt;}
.x12_c00162{left:202.320000pt;}
.x1b_c00162{left:210.480000pt;}
.x24_c00162{left:217.590667pt;}
.xb_c00162{left:252.720000pt;}
.x1c_c00162{left:261.600000pt;}
.x13_c00162{left:288.480000pt;}
.x25_c00162{left:326.796000pt;}
.x1e_c00162{left:385.458667pt;}
.x1_c00162{left:395.170667pt;}
.x2_c00162{left:396.146667pt;}
.xe_c00162{left:408.720000pt;}
.x14_c00162{left:428.880000pt;}
.xc_c00162{left:439.440000pt;}
.x3_c00162{left:459.504000pt;}
.x1f_c00162{left:473.986667pt;}
.x26_c00162{left:481.090667pt;}
.x15_c00162{left:508.080000pt;}
.x4_c00162{left:520.184000pt;}
.x5_c00162{left:533.186667pt;}
.x16_c00162{left:557.280000pt;}
.xf_c00162{left:558.960000pt;}
.x20_c00162{left:560.345333pt;}
.x6_c00162{left:571.848000pt;}
.x7_c00162{left:599.458667pt;}
.x8_c00162{left:626.368000pt;}
.x17_c00162{left:661.680000pt;}
.x18_c00162{left:726.000000pt;}
.x9_c00162{left:756.470667pt;}
}





/* 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_c00163 {
    display:none;
  }
  .loading-indicator_c00163.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00163 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_c00163 { 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_c00163" -> "#page-container .classname_c00163")
 */
.pf_c00163 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00163 { /* 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_c00163.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00163 { /* 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_c00163 { /* 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_c00163 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00163 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00163 {overflow:visible;}
  }
}
.c_c00163 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00163 { /* 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_c00163:after { /* webkit #35443 */
  content: '';
}
.t_c00163:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00163 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 */
}
.__c00163 { /* 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_c00163 { /* info for Javascript */
  display:none;
}
.l_c00163 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00163 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00163 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00163: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_c00163 {
    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_c00163.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00163.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_c00163 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00163{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00163;src:url('chunks/assets/font_6bbd15de30fdc229d5d5ff82.woff2')format("woff");}.ff1_c00163{font-family:ff1_c00163;line-height:1.000000;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;}
.m40_c00163{transform:matrix(0.018183,0.000236,-0.003250,0.249979,0,0);-ms-transform:matrix(0.018183,0.000236,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.018183,0.000236,-0.003250,0.249979,0,0);}
.m13_c00163{transform:matrix(0.021212,0.000382,-0.004499,0.249960,0,0);-ms-transform:matrix(0.021212,0.000382,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.021212,0.000382,-0.004499,0.249960,0,0);}
.mf_c00163{transform:matrix(0.021215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021215,0.000000,0.000000,0.250000,0,0);}
.m27_c00163{transform:matrix(0.037110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.037110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.037110,0.000000,0.000000,0.250000,0,0);}
.m10_c00163{transform:matrix(0.047730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.047730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.047730,0.000000,0.000000,0.250000,0,0);}
.m37_c00163{transform:matrix(0.069529,0.000904,-0.003250,0.249979,0,0);-ms-transform:matrix(0.069529,0.000904,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.069529,0.000904,-0.003250,0.249979,0,0);}
.m1f_c00163{transform:matrix(0.072021,0.001440,-0.004999,0.249950,0,0);-ms-transform:matrix(0.072021,0.001440,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.072021,0.001440,-0.004999,0.249950,0,0);}
.m35_c00163{transform:matrix(0.093717,0.001218,-0.003250,0.249979,0,0);-ms-transform:matrix(0.093717,0.001218,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.093717,0.001218,-0.003250,0.249979,0,0);}
.m3c_c00163{transform:matrix(0.120770,0.001570,-0.003250,0.249979,0,0);-ms-transform:matrix(0.120770,0.001570,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.120770,0.001570,-0.003250,0.249979,0,0);}
.m3f_c00163{transform:matrix(0.132014,0.001716,-0.003250,0.249979,0,0);-ms-transform:matrix(0.132014,0.001716,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.132014,0.001716,-0.003250,0.249979,0,0);}
.m31_c00163{transform:matrix(0.132885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132885,0.000000,0.000000,0.250000,0,0);}
.md_c00163{transform:matrix(0.143680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143680,0.000000,0.000000,0.250000,0,0);}
.ma_c00163{transform:matrix(0.190920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190920,0.000000,0.000000,0.250000,0,0);}
.m16_c00163{transform:matrix(0.204297,0.003677,-0.004499,0.249960,0,0);-ms-transform:matrix(0.204297,0.003677,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.204297,0.003677,-0.004499,0.249960,0,0);}
.m0_c00163{transform:matrix(0.206155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206155,0.000000,0.000000,0.250000,0,0);}
.m2f_c00163{transform:matrix(0.218380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218380,0.000000,0.000000,0.250000,0,0);}
.m14_c00163{transform:matrix(0.224074,0.004033,-0.004499,0.249960,0,0);-ms-transform:matrix(0.224074,0.004033,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.224074,0.004033,-0.004499,0.249960,0,0);}
.m11_c00163{transform:matrix(0.232985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232985,0.000000,0.000000,0.250000,0,0);}
.m3a_c00163{transform:matrix(0.234285,0.003046,-0.003250,0.249979,0,0);-ms-transform:matrix(0.234285,0.003046,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.234285,0.003046,-0.003250,0.249979,0,0);}
.m43_c00163{transform:matrix(0.247504,0.003218,-0.003250,0.249979,0,0);-ms-transform:matrix(0.247504,0.003218,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.247504,0.003218,-0.003250,0.249979,0,0);}
.m1a_c00163{transform:matrix(0.265002,0.004770,-0.004499,0.249960,0,0);-ms-transform:matrix(0.265002,0.004770,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.265002,0.004770,-0.004499,0.249960,0,0);}
.m28_c00163{transform:matrix(0.266010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266010,0.000000,0.000000,0.250000,0,0);}
.m12_c00163{transform:matrix(0.267972,0.004823,-0.004499,0.249960,0,0);-ms-transform:matrix(0.267972,0.004823,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.267972,0.004823,-0.004499,0.249960,0,0);}
.mb_c00163{transform:matrix(0.273435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273435,0.000000,0.000000,0.250000,0,0);}
.m22_c00163{transform:matrix(0.278479,0.005570,-0.004999,0.249950,0,0);-ms-transform:matrix(0.278479,0.005570,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.278479,0.005570,-0.004999,0.249950,0,0);}
.m23_c00163{transform:matrix(0.279389,0.005588,-0.004999,0.249950,0,0);-ms-transform:matrix(0.279389,0.005588,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.279389,0.005588,-0.004999,0.249950,0,0);}
.m25_c00163{transform:matrix(0.281235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281235,0.000000,0.000000,0.250000,0,0);}
.m33_c00163{transform:matrix(0.288140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288140,0.000000,0.000000,0.250000,0,0);}
.m15_c00163{transform:matrix(0.289358,0.005208,-0.004499,0.249960,0,0);-ms-transform:matrix(0.289358,0.005208,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.289358,0.005208,-0.004499,0.249960,0,0);}
.m36_c00163{transform:matrix(0.294680,0.003831,-0.003250,0.249979,0,0);-ms-transform:matrix(0.294680,0.003831,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.294680,0.003831,-0.003250,0.249979,0,0);}
.m18_c00163{transform:matrix(0.301636,0.005429,-0.004499,0.249960,0,0);-ms-transform:matrix(0.301636,0.005429,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.301636,0.005429,-0.004499,0.249960,0,0);}
.m20_c00163{transform:matrix(0.302854,0.006057,-0.004999,0.249950,0,0);-ms-transform:matrix(0.302854,0.006057,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.302854,0.006057,-0.004999,0.249950,0,0);}
.m17_c00163{transform:matrix(0.307815,0.005541,-0.004499,0.249960,0,0);-ms-transform:matrix(0.307815,0.005541,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.307815,0.005541,-0.004499,0.249960,0,0);}
.m46_c00163{transform:matrix(0.317650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317650,0.000000,0.000000,0.250000,0,0);}
.mc_c00163{transform:matrix(0.333010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333010,0.000000,0.000000,0.250000,0,0);}
.m21_c00163{transform:matrix(0.365552,0.007311,-0.004999,0.249950,0,0);-ms-transform:matrix(0.365552,0.007311,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.365552,0.007311,-0.004999,0.249950,0,0);}
.m4a_c00163{transform:matrix(0.368780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368780,0.000000,0.000000,0.250000,0,0);}
.m39_c00163{transform:matrix(0.376628,0.004896,-0.003250,0.249979,0,0);-ms-transform:matrix(0.376628,0.004896,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.376628,0.004896,-0.003250,0.249979,0,0);}
.m19_c00163{transform:matrix(0.397706,0.007159,-0.004499,0.249960,0,0);-ms-transform:matrix(0.397706,0.007159,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.397706,0.007159,-0.004499,0.249960,0,0);}
.m3e_c00163{transform:matrix(0.402231,0.005229,-0.003250,0.249979,0,0);-ms-transform:matrix(0.402231,0.005229,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.402231,0.005229,-0.003250,0.249979,0,0);}
.me_c00163{transform:matrix(0.405625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405625,0.000000,0.000000,0.250000,0,0);}
.m32_c00163{transform:matrix(0.410465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410465,0.000000,0.000000,0.250000,0,0);}
.m7_c00163{transform:matrix(0.435330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435330,0.000000,0.000000,0.250000,0,0);}
.m3_c00163{transform:matrix(0.441165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441165,0.000000,0.000000,0.250000,0,0);}
.m42_c00163{transform:matrix(0.449762,0.005847,-0.003250,0.249979,0,0);-ms-transform:matrix(0.449762,0.005847,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.449762,0.005847,-0.003250,0.249979,0,0);}
.m9_c00163{transform:matrix(0.460250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460250,0.000000,0.000000,0.250000,0,0);}
.m30_c00163{transform:matrix(0.466330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466330,0.000000,0.000000,0.250000,0,0);}
.m41_c00163{transform:matrix(0.466751,0.006068,-0.003250,0.249979,0,0);-ms-transform:matrix(0.466751,0.006068,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.466751,0.006068,-0.003250,0.249979,0,0);}
.m1e_c00163{transform:matrix(0.482057,0.008677,-0.004499,0.249960,0,0);-ms-transform:matrix(0.482057,0.008677,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.482057,0.008677,-0.004499,0.249960,0,0);}
.m3b_c00163{transform:matrix(0.482954,0.006278,-0.003250,0.249979,0,0);-ms-transform:matrix(0.482954,0.006278,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.482954,0.006278,-0.003250,0.249979,0,0);}
.m44_c00163{transform:matrix(0.488365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488365,0.000000,0.000000,0.250000,0,0);}
.m2d_c00163{transform:matrix(0.495835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495835,0.000000,0.000000,0.250000,0,0);}
.m2a_c00163{transform:matrix(0.517845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517845,0.000000,0.000000,0.250000,0,0);}
.m49_c00163{transform:matrix(0.536025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536025,0.000000,0.000000,0.250000,0,0);}
.m2e_c00163{transform:matrix(0.538655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538655,0.000000,0.000000,0.250000,0,0);}
.m5_c00163{transform:matrix(0.542265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542265,0.000000,0.000000,0.250000,0,0);}
.m29_c00163{transform:matrix(0.570660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.570660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.570660,0.000000,0.000000,0.250000,0,0);}
.m48_c00163{transform:matrix(0.575363,0.012083,-0.005249,0.249945,0,0);-ms-transform:matrix(0.575363,0.012083,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.575363,0.012083,-0.005249,0.249945,0,0);}
.m1b_c00163{transform:matrix(0.605367,0.010897,-0.004499,0.249960,0,0);-ms-transform:matrix(0.605367,0.010897,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.605367,0.010897,-0.004499,0.249960,0,0);}
.m24_c00163{transform:matrix(0.617477,0.012350,-0.004999,0.249950,0,0);-ms-transform:matrix(0.617477,0.012350,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.617477,0.012350,-0.004999,0.249950,0,0);}
.m3d_c00163{transform:matrix(0.657069,0.008542,-0.003250,0.249979,0,0);-ms-transform:matrix(0.657069,0.008542,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.657069,0.008542,-0.003250,0.249979,0,0);}
.m2_c00163{transform:matrix(0.704360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.704360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.704360,0.000000,0.000000,0.250000,0,0);}
.m26_c00163{transform:matrix(0.750460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.750460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.750460,0.000000,0.000000,0.250000,0,0);}
.m34_c00163{transform:matrix(0.767275,0.009975,-0.003250,0.249979,0,0);-ms-transform:matrix(0.767275,0.009975,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.767275,0.009975,-0.003250,0.249979,0,0);}
.m2b_c00163{transform:matrix(0.798385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.798385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.798385,0.000000,0.000000,0.250000,0,0);}
.m47_c00163{transform:matrix(0.824423,0.017313,-0.005249,0.249945,0,0);-ms-transform:matrix(0.824423,0.017313,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.824423,0.017313,-0.005249,0.249945,0,0);}
.m1_c00163{transform:matrix(0.864495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.864495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.864495,0.000000,0.000000,0.250000,0,0);}
.m2c_c00163{transform:matrix(0.893665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.893665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.893665,0.000000,0.000000,0.250000,0,0);}
.m8_c00163{transform:matrix(0.895600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.895600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.895600,0.000000,0.000000,0.250000,0,0);}
.m1c_c00163{transform:matrix(0.960014,0.017280,-0.004499,0.249960,0,0);-ms-transform:matrix(0.960014,0.017280,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.960014,0.017280,-0.004499,0.249960,0,0);}
.m4_c00163{transform:matrix(0.970700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.970700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.970700,0.000000,0.000000,0.250000,0,0);}
.m45_c00163{transform:matrix(0.997245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.997245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.997245,0.000000,0.000000,0.250000,0,0);}
.m6_c00163{transform:matrix(1.115055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.115055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.115055,0.000000,0.000000,0.250000,0,0);}
.m1d_c00163{transform:matrix(1.131687,0.020370,-0.004499,0.249960,0,0);-ms-transform:matrix(1.131687,0.020370,-0.004499,0.249960,0,0);-webkit-transform:matrix(1.131687,0.020370,-0.004499,0.249960,0,0);}
.m38_c00163{transform:matrix(1.425880,0.018536,-0.003250,0.249979,0,0);-ms-transform:matrix(1.425880,0.018536,-0.003250,0.249979,0,0);-webkit-transform:matrix(1.425880,0.018536,-0.003250,0.249979,0,0);}
.v0_c00163{vertical-align:0.000000px;}
.ls0_c00163{letter-spacing:0.000000px;}
.sc__c00163{text-shadow:none;}
.sc0_c00163{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__c00163{-webkit-text-stroke:0px transparent;}
.sc0_c00163{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00163{word-spacing:0.000000px;}
.fc0_c00163{color:transparent;}
.fs0_c00163{font-size:18.000000px;}
.fs1_c00163{font-size:24.000000px;}
.fs7_c00163{font-size:24.004800px;}
.fs8_c00163{font-size:30.000000px;}
.fs4_c00163{font-size:36.000000px;}
.fs5_c00163{font-size:36.005832px;}
.fs9_c00163{font-size:42.000000px;}
.fsb_c00163{font-size:42.003549px;}
.fs2_c00163{font-size:54.000000px;}
.fs6_c00163{font-size:54.008747px;}
.fsa_c00163{font-size:60.005070px;}
.fs3_c00163{font-size:90.000000px;}
.fsc_c00163{font-size:90.007605px;}
.fsd_c00163{font-size:186.041008px;}
.y0_c00163{bottom:0.000000px;}
.y3b_c00163{bottom:7.020000px;}
.y3a_c00163{bottom:12.690000px;}
.y39_c00163{bottom:23.117865px;}
.y38_c00163{bottom:29.710500px;}
.y37_c00163{bottom:50.091000px;}
.y36_c00163{bottom:76.266141px;}
.y35_c00163{bottom:80.667188px;}
.y34_c00163{bottom:83.437023px;}
.y33_c00163{bottom:85.675562px;}
.y32_c00163{bottom:86.312856px;}
.y31_c00163{bottom:87.385852px;}
.y30_c00163{bottom:88.431308px;}
.y2f_c00163{bottom:88.628355px;}
.y2e_c00163{bottom:88.945559px;}
.y2d_c00163{bottom:89.150312px;}
.y2c_c00163{bottom:89.725617px;}
.y2b_c00163{bottom:90.098821px;}
.y2a_c00163{bottom:90.989849px;}
.y29_c00163{bottom:93.305471px;}
.y28_c00163{bottom:95.280119px;}
.y27_c00163{bottom:98.281500px;}
.y26_c00163{bottom:113.670000px;}
.y25_c00163{bottom:149.719500px;}
.y24_c00163{bottom:153.496500px;}
.y23_c00163{bottom:158.367000px;}
.y22_c00163{bottom:193.264500px;}
.y1f_c00163{bottom:215.302890px;}
.y21_c00163{bottom:215.325000px;}
.y1e_c00163{bottom:215.691720px;}
.y1d_c00163{bottom:216.235710px;}
.y1c_c00163{bottom:216.870090px;}
.y1b_c00163{bottom:217.312140px;}
.y20_c00163{bottom:218.155500px;}
.y1a_c00163{bottom:218.700000px;}
.y19_c00163{bottom:235.299432px;}
.y18_c00163{bottom:246.836727px;}
.y17_c00163{bottom:249.581361px;}
.y16_c00163{bottom:250.539111px;}
.y15_c00163{bottom:251.321484px;}
.y14_c00163{bottom:252.030996px;}
.y13_c00163{bottom:252.727221px;}
.y12_c00163{bottom:253.038657px;}
.y11_c00163{bottom:254.107074px;}
.y10_c00163{bottom:255.297936px;}
.yf_c00163{bottom:255.620316px;}
.ye_c00163{bottom:256.939752px;}
.yd_c00163{bottom:257.583000px;}
.yc_c00163{bottom:283.638000px;}
.yb_c00163{bottom:287.415000px;}
.ya_c00163{bottom:354.225000px;}
.y9_c00163{bottom:363.037500px;}
.y8_c00163{bottom:383.670000px;}
.y7_c00163{bottom:394.144500px;}
.y6_c00163{bottom:398.692500px;}
.y5_c00163{bottom:400.249500px;}
.y4_c00163{bottom:404.230500px;}
.y3_c00163{bottom:405.282000px;}
.y1_c00163{bottom:421.740000px;}
.y2_c00163{bottom:442.654500px;}
.h1_c00163{height:18.000000px;}
.h2_c00163{height:24.000000px;}
.h8_c00163{height:24.004800px;}
.h9_c00163{height:30.000000px;}
.h5_c00163{height:36.000000px;}
.h6_c00163{height:36.005832px;}
.ha_c00163{height:42.000000px;}
.hc_c00163{height:42.003549px;}
.h3_c00163{height:54.000000px;}
.h7_c00163{height:54.008747px;}
.hb_c00163{height:60.005070px;}
.h4_c00163{height:90.000000px;}
.hd_c00163{height:90.007605px;}
.he_c00163{height:186.041008px;}
.h0_c00163{height:682.500000px;}
.w1_c00163{width:945.750000px;}
.w0_c00163{width:946.050000px;}
.x0_c00163{left:0.000000px;}
.x6_c00163{left:54.201000px;}
.xc_c00163{left:71.280000px;}
.x7_c00163{left:82.632000px;}
.x2_c00163{left:113.670000px;}
.x2f_c00163{left:150.810000px;}
.x3_c00163{left:154.710000px;}
.x31_c00163{left:157.881920px;}
.x4_c00163{left:167.130000px;}
.x3d_c00163{left:172.296000px;}
.x5_c00163{left:178.470000px;}
.xe_c00163{left:183.600000px;}
.x8_c00163{left:190.245000px;}
.x9_c00163{left:232.338000px;}
.x1_c00163{left:243.540000px;}
.x32_c00163{left:246.964391px;}
.xd_c00163{left:250.020000px;}
.xb_c00163{left:271.350000px;}
.x33_c00163{left:284.212333px;}
.x39_c00163{left:320.874790px;}
.x34_c00163{left:341.738076px;}
.x26_c00163{left:351.000000px;}
.xa_c00163{left:355.239000px;}
.x35_c00163{left:362.219876px;}
.x11_c00163{left:377.295000px;}
.x17_c00163{left:381.974640px;}
.x2a_c00163{left:390.150000px;}
.x36_c00163{left:393.890604px;}
.x2d_c00163{left:399.870000px;}
.x27_c00163{left:404.730000px;}
.x12_c00163{left:413.031000px;}
.x2e_c00163{left:415.260000px;}
.x22_c00163{left:416.880000px;}
.x3e_c00163{left:430.650000px;}
.x3a_c00163{left:431.691013px;}
.x2b_c00163{left:432.810000px;}
.x3f_c00163{left:434.430000px;}
.x18_c00163{left:443.065632px;}
.x28_c00163{left:445.500000px;}
.x25_c00163{left:455.490000px;}
.x2c_c00163{left:471.150000px;}
.x23_c00163{left:473.310000px;}
.x19_c00163{left:477.111081px;}
.x13_c00163{left:486.333000px;}
.x29_c00163{left:503.010000px;}
.x14_c00163{left:504.243000px;}
.x24_c00163{left:516.780000px;}
.x1a_c00163{left:518.732328px;}
.x30_c00163{left:533.581500px;}
.x1d_c00163{left:546.993000px;}
.x15_c00163{left:570.402000px;}
.xf_c00163{left:607.500000px;}
.x1e_c00163{left:616.386000px;}
.x10_c00163{left:623.430000px;}
.x37_c00163{left:625.322613px;}
.x16_c00163{left:629.758500px;}
.x1b_c00163{left:638.034582px;}
.x3b_c00163{left:658.260000px;}
.x1f_c00163{left:670.207500px;}
.x38_c00163{left:689.001589px;}
.x3c_c00163{left:693.630000px;}
.x20_c00163{left:697.407000px;}
.x1c_c00163{left:707.727051px;}
.x21_c00163{left:716.848500px;}
@media print{
.v0_c00163{vertical-align:0.000000pt;}
.ls0_c00163{letter-spacing:0.000000pt;}
.ws0_c00163{word-spacing:0.000000pt;}
.fs0_c00163{font-size:16.000000pt;}
.fs1_c00163{font-size:21.333333pt;}
.fs7_c00163{font-size:21.337600pt;}
.fs8_c00163{font-size:26.666667pt;}
.fs4_c00163{font-size:32.000000pt;}
.fs5_c00163{font-size:32.005184pt;}
.fs9_c00163{font-size:37.333333pt;}
.fsb_c00163{font-size:37.336488pt;}
.fs2_c00163{font-size:48.000000pt;}
.fs6_c00163{font-size:48.007775pt;}
.fsa_c00163{font-size:53.337840pt;}
.fs3_c00163{font-size:80.000000pt;}
.fsc_c00163{font-size:80.006760pt;}
.fsd_c00163{font-size:165.369785pt;}
.y0_c00163{bottom:0.000000pt;}
.y3b_c00163{bottom:6.240000pt;}
.y3a_c00163{bottom:11.280000pt;}
.y39_c00163{bottom:20.549213pt;}
.y38_c00163{bottom:26.409333pt;}
.y37_c00163{bottom:44.525333pt;}
.y36_c00163{bottom:67.792125pt;}
.y35_c00163{bottom:71.704167pt;}
.y34_c00163{bottom:74.166243pt;}
.y33_c00163{bottom:76.156055pt;}
.y32_c00163{bottom:76.722539pt;}
.y31_c00163{bottom:77.676313pt;}
.y30_c00163{bottom:78.605607pt;}
.y2f_c00163{bottom:78.780760pt;}
.y2e_c00163{bottom:79.062719pt;}
.y2d_c00163{bottom:79.244721pt;}
.y2c_c00163{bottom:79.756104pt;}
.y2b_c00163{bottom:80.087841pt;}
.y2a_c00163{bottom:80.879865pt;}
.y29_c00163{bottom:82.938196pt;}
.y28_c00163{bottom:84.693439pt;}
.y27_c00163{bottom:87.361333pt;}
.y26_c00163{bottom:101.040000pt;}
.y25_c00163{bottom:133.084000pt;}
.y24_c00163{bottom:136.441333pt;}
.y23_c00163{bottom:140.770667pt;}
.y22_c00163{bottom:171.790667pt;}
.y1f_c00163{bottom:191.380347pt;}
.y21_c00163{bottom:191.400000pt;}
.y1e_c00163{bottom:191.725973pt;}
.y1d_c00163{bottom:192.209520pt;}
.y1c_c00163{bottom:192.773413pt;}
.y1b_c00163{bottom:193.166347pt;}
.y20_c00163{bottom:193.916000pt;}
.y1a_c00163{bottom:194.400000pt;}
.y19_c00163{bottom:209.155051pt;}
.y18_c00163{bottom:219.410424pt;}
.y17_c00163{bottom:221.850099pt;}
.y16_c00163{bottom:222.701432pt;}
.y15_c00163{bottom:223.396875pt;}
.y14_c00163{bottom:224.027552pt;}
.y13_c00163{bottom:224.646419pt;}
.y12_c00163{bottom:224.923251pt;}
.y11_c00163{bottom:225.872955pt;}
.y10_c00163{bottom:226.931499pt;}
.yf_c00163{bottom:227.218059pt;}
.ye_c00163{bottom:228.390891pt;}
.yd_c00163{bottom:228.962667pt;}
.yc_c00163{bottom:252.122667pt;}
.yb_c00163{bottom:255.480000pt;}
.ya_c00163{bottom:314.866667pt;}
.y9_c00163{bottom:322.700000pt;}
.y8_c00163{bottom:341.040000pt;}
.y7_c00163{bottom:350.350667pt;}
.y6_c00163{bottom:354.393333pt;}
.y5_c00163{bottom:355.777333pt;}
.y4_c00163{bottom:359.316000pt;}
.y3_c00163{bottom:360.250667pt;}
.y1_c00163{bottom:374.880000pt;}
.y2_c00163{bottom:393.470667pt;}
.h1_c00163{height:16.000000pt;}
.h2_c00163{height:21.333333pt;}
.h8_c00163{height:21.337600pt;}
.h9_c00163{height:26.666667pt;}
.h5_c00163{height:32.000000pt;}
.h6_c00163{height:32.005184pt;}
.ha_c00163{height:37.333333pt;}
.hc_c00163{height:37.336488pt;}
.h3_c00163{height:48.000000pt;}
.h7_c00163{height:48.007775pt;}
.hb_c00163{height:53.337840pt;}
.h4_c00163{height:80.000000pt;}
.hd_c00163{height:80.006760pt;}
.he_c00163{height:165.369785pt;}
.h0_c00163{height:606.666667pt;}
.w1_c00163{width:840.666667pt;}
.w0_c00163{width:840.933333pt;}
.x0_c00163{left:0.000000pt;}
.x6_c00163{left:48.178667pt;}
.xc_c00163{left:63.360000pt;}
.x7_c00163{left:73.450667pt;}
.x2_c00163{left:101.040000pt;}
.x2f_c00163{left:134.053333pt;}
.x3_c00163{left:137.520000pt;}
.x31_c00163{left:140.339484pt;}
.x4_c00163{left:148.560000pt;}
.x3d_c00163{left:153.152000pt;}
.x5_c00163{left:158.640000pt;}
.xe_c00163{left:163.200000pt;}
.x8_c00163{left:169.106667pt;}
.x9_c00163{left:206.522667pt;}
.x1_c00163{left:216.480000pt;}
.x32_c00163{left:219.523903pt;}
.xd_c00163{left:222.240000pt;}
.xb_c00163{left:241.200000pt;}
.x33_c00163{left:252.633185pt;}
.x39_c00163{left:285.222036pt;}
.x34_c00163{left:303.767179pt;}
.x26_c00163{left:312.000000pt;}
.xa_c00163{left:315.768000pt;}
.x35_c00163{left:321.973223pt;}
.x11_c00163{left:335.373333pt;}
.x17_c00163{left:339.533013pt;}
.x2a_c00163{left:346.800000pt;}
.x36_c00163{left:350.124981pt;}
.x2d_c00163{left:355.440000pt;}
.x27_c00163{left:359.760000pt;}
.x12_c00163{left:367.138667pt;}
.x2e_c00163{left:369.120000pt;}
.x22_c00163{left:370.560000pt;}
.x3e_c00163{left:382.800000pt;}
.x3a_c00163{left:383.725345pt;}
.x2b_c00163{left:384.720000pt;}
.x3f_c00163{left:386.160000pt;}
.x18_c00163{left:393.836117pt;}
.x28_c00163{left:396.000000pt;}
.x25_c00163{left:404.880000pt;}
.x2c_c00163{left:418.800000pt;}
.x23_c00163{left:420.720000pt;}
.x19_c00163{left:424.098739pt;}
.x13_c00163{left:432.296000pt;}
.x29_c00163{left:447.120000pt;}
.x14_c00163{left:448.216000pt;}
.x24_c00163{left:459.360000pt;}
.x1a_c00163{left:461.095403pt;}
.x30_c00163{left:474.294667pt;}
.x1d_c00163{left:486.216000pt;}
.x15_c00163{left:507.024000pt;}
.xf_c00163{left:540.000000pt;}
.x1e_c00163{left:547.898667pt;}
.x10_c00163{left:554.160000pt;}
.x37_c00163{left:555.842323pt;}
.x16_c00163{left:559.785333pt;}
.x1b_c00163{left:567.141851pt;}
.x3b_c00163{left:585.120000pt;}
.x1f_c00163{left:595.740000pt;}
.x38_c00163{left:612.445857pt;}
.x3c_c00163{left:616.560000pt;}
.x20_c00163{left:619.917333pt;}
.x1c_c00163{left:629.090712pt;}
.x21_c00163{left:637.198667pt;}
}





/* 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_c00164 {
    display:none;
  }
  .loading-indicator_c00164.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00164 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_c00164 { 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_c00164" -> "#page-container .classname_c00164")
 */
.pf_c00164 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00164 { /* 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_c00164.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00164 { /* 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_c00164 { /* 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_c00164 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00164 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00164 {overflow:visible;}
  }
}
.c_c00164 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00164 { /* 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_c00164:after { /* webkit #35443 */
  content: '';
}
.t_c00164:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00164 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 */
}
.__c00164 { /* 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_c00164 { /* info for Javascript */
  display:none;
}
.l_c00164 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00164 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00164 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00164: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_c00164 {
    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_c00164.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00164.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_c00164 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00164{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00164;src:url('chunks/assets/font_132af6d682320e9b248f68cf.woff2')format("woff");}.ff1_c00164{font-family:ff1_c00164;line-height:1.000000;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;}
.m4_c00164{transform:matrix(0.011839,-0.000154,0.003250,0.249979,0,0);-ms-transform:matrix(0.011839,-0.000154,0.003250,0.249979,0,0);-webkit-transform:matrix(0.011839,-0.000154,0.003250,0.249979,0,0);}
.m4b_c00164{transform:matrix(0.015910,-0.000064,0.001000,0.249998,0,0);-ms-transform:matrix(0.015910,-0.000064,0.001000,0.249998,0,0);-webkit-transform:matrix(0.015910,-0.000064,0.001000,0.249998,0,0);}
.m6_c00164{transform:matrix(0.030657,-0.000399,0.003250,0.249979,0,0);-ms-transform:matrix(0.030657,-0.000399,0.003250,0.249979,0,0);-webkit-transform:matrix(0.030657,-0.000399,0.003250,0.249979,0,0);}
.m3b_c00164{transform:matrix(0.036908,-0.000406,0.002750,0.249985,0,0);-ms-transform:matrix(0.036908,-0.000406,0.002750,0.249985,0,0);-webkit-transform:matrix(0.036908,-0.000406,0.002750,0.249985,0,0);}
.m37_c00164{transform:matrix(0.074635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.074635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.074635,0.000000,0.000000,0.250000,0,0);}
.m26_c00164{transform:matrix(0.082138,-0.000575,0.001750,0.249994,0,0);-ms-transform:matrix(0.082138,-0.000575,0.001750,0.249994,0,0);-webkit-transform:matrix(0.082138,-0.000575,0.001750,0.249994,0,0);}
.m3c_c00164{transform:matrix(0.084725,-0.000932,0.002750,0.249985,0,0);-ms-transform:matrix(0.084725,-0.000932,0.002750,0.249985,0,0);-webkit-transform:matrix(0.084725,-0.000932,0.002750,0.249985,0,0);}
.m12_c00164{transform:matrix(0.095531,-0.001337,0.003500,0.249976,0,0);-ms-transform:matrix(0.095531,-0.001337,0.003500,0.249976,0,0);-webkit-transform:matrix(0.095531,-0.001337,0.003500,0.249976,0,0);}
.m3e_c00164{transform:matrix(0.096120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096120,0.000000,0.000000,0.250000,0,0);}
.m4a_c00164{transform:matrix(0.100899,-0.000404,0.001000,0.249998,0,0);-ms-transform:matrix(0.100899,-0.000404,0.001000,0.249998,0,0);-webkit-transform:matrix(0.100899,-0.000404,0.001000,0.249998,0,0);}
.m9_c00164{transform:matrix(0.101275,-0.001418,0.003500,0.249976,0,0);-ms-transform:matrix(0.101275,-0.001418,0.003500,0.249976,0,0);-webkit-transform:matrix(0.101275,-0.001418,0.003500,0.249976,0,0);}
.m2d_c00164{transform:matrix(0.118657,-0.000831,0.001750,0.249994,0,0);-ms-transform:matrix(0.118657,-0.000831,0.001750,0.249994,0,0);-webkit-transform:matrix(0.118657,-0.000831,0.001750,0.249994,0,0);}
.m11_c00164{transform:matrix(0.121383,-0.001699,0.003500,0.249976,0,0);-ms-transform:matrix(0.121383,-0.001699,0.003500,0.249976,0,0);-webkit-transform:matrix(0.121383,-0.001699,0.003500,0.249976,0,0);}
.m1a_c00164{transform:matrix(0.129547,-0.000907,0.001750,0.249994,0,0);-ms-transform:matrix(0.129547,-0.000907,0.001750,0.249994,0,0);-webkit-transform:matrix(0.129547,-0.000907,0.001750,0.249994,0,0);}
.m31_c00164{transform:matrix(0.136848,-0.001779,0.003250,0.249979,0,0);-ms-transform:matrix(0.136848,-0.001779,0.003250,0.249979,0,0);-webkit-transform:matrix(0.136848,-0.001779,0.003250,0.249979,0,0);}
.m4c_c00164{transform:matrix(0.162249,-0.000649,0.001000,0.249998,0,0);-ms-transform:matrix(0.162249,-0.000649,0.001000,0.249998,0,0);-webkit-transform:matrix(0.162249,-0.000649,0.001000,0.249998,0,0);}
.m3_c00164{transform:matrix(0.168211,-0.002187,0.003250,0.249979,0,0);-ms-transform:matrix(0.168211,-0.002187,0.003250,0.249979,0,0);-webkit-transform:matrix(0.168211,-0.002187,0.003250,0.249979,0,0);}
.m5_c00164{transform:matrix(0.172895,-0.002248,0.003250,0.249979,0,0);-ms-transform:matrix(0.172895,-0.002248,0.003250,0.249979,0,0);-webkit-transform:matrix(0.172895,-0.002248,0.003250,0.249979,0,0);}
.m0_c00164{transform:matrix(0.174930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174930,0.000000,0.000000,0.250000,0,0);}
.m42_c00164{transform:matrix(0.181244,-0.000725,0.001000,0.249998,0,0);-ms-transform:matrix(0.181244,-0.000725,0.001000,0.249998,0,0);-webkit-transform:matrix(0.181244,-0.000725,0.001000,0.249998,0,0);}
.m52_c00164{transform:matrix(0.183864,-0.000735,0.001000,0.249998,0,0);-ms-transform:matrix(0.183864,-0.000735,0.001000,0.249998,0,0);-webkit-transform:matrix(0.183864,-0.000735,0.001000,0.249998,0,0);}
.m1b_c00164{transform:matrix(0.192205,-0.001345,0.001750,0.249994,0,0);-ms-transform:matrix(0.192205,-0.001345,0.001750,0.249994,0,0);-webkit-transform:matrix(0.192205,-0.001345,0.001750,0.249994,0,0);}
.m16_c00164{transform:matrix(0.192630,-0.001348,0.001750,0.249994,0,0);-ms-transform:matrix(0.192630,-0.001348,0.001750,0.249994,0,0);-webkit-transform:matrix(0.192630,-0.001348,0.001750,0.249994,0,0);}
.m4e_c00164{transform:matrix(0.194998,-0.000780,0.001000,0.249998,0,0);-ms-transform:matrix(0.194998,-0.000780,0.001000,0.249998,0,0);-webkit-transform:matrix(0.194998,-0.000780,0.001000,0.249998,0,0);}
.m17_c00164{transform:matrix(0.197055,-0.001379,0.001750,0.249994,0,0);-ms-transform:matrix(0.197055,-0.001379,0.001750,0.249994,0,0);-webkit-transform:matrix(0.197055,-0.001379,0.001750,0.249994,0,0);}
.m50_c00164{transform:matrix(0.198873,-0.000795,0.001000,0.249998,0,0);-ms-transform:matrix(0.198873,-0.000795,0.001000,0.249998,0,0);-webkit-transform:matrix(0.198873,-0.000795,0.001000,0.249998,0,0);}
.m3d_c00164{transform:matrix(0.200125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200125,0.000000,0.000000,0.250000,0,0);}
.m18_c00164{transform:matrix(0.212020,-0.001484,0.001750,0.249994,0,0);-ms-transform:matrix(0.212020,-0.001484,0.001750,0.249994,0,0);-webkit-transform:matrix(0.212020,-0.001484,0.001750,0.249994,0,0);}
.m29_c00164{transform:matrix(0.212640,-0.001488,0.001750,0.249994,0,0);-ms-transform:matrix(0.212640,-0.001488,0.001750,0.249994,0,0);-webkit-transform:matrix(0.212640,-0.001488,0.001750,0.249994,0,0);}
.m13_c00164{transform:matrix(0.216534,-0.003031,0.003500,0.249976,0,0);-ms-transform:matrix(0.216534,-0.003031,0.003500,0.249976,0,0);-webkit-transform:matrix(0.216534,-0.003031,0.003500,0.249976,0,0);}
.m43_c00164{transform:matrix(0.226398,-0.000906,0.001000,0.249998,0,0);-ms-transform:matrix(0.226398,-0.000906,0.001000,0.249998,0,0);-webkit-transform:matrix(0.226398,-0.000906,0.001000,0.249998,0,0);}
.mb_c00164{transform:matrix(0.236127,-0.003306,0.003500,0.249976,0,0);-ms-transform:matrix(0.236127,-0.003306,0.003500,0.249976,0,0);-webkit-transform:matrix(0.236127,-0.003306,0.003500,0.249976,0,0);}
.m7_c00164{transform:matrix(0.255253,-0.003318,0.003250,0.249979,0,0);-ms-transform:matrix(0.255253,-0.003318,0.003250,0.249979,0,0);-webkit-transform:matrix(0.255253,-0.003318,0.003250,0.249979,0,0);}
.m24_c00164{transform:matrix(0.263124,-0.001842,0.001750,0.249994,0,0);-ms-transform:matrix(0.263124,-0.001842,0.001750,0.249994,0,0);-webkit-transform:matrix(0.263124,-0.001842,0.001750,0.249994,0,0);}
.ma_c00164{transform:matrix(0.263754,-0.003693,0.003500,0.249976,0,0);-ms-transform:matrix(0.263754,-0.003693,0.003500,0.249976,0,0);-webkit-transform:matrix(0.263754,-0.003693,0.003500,0.249976,0,0);}
.me_c00164{transform:matrix(0.264794,-0.003707,0.003500,0.249976,0,0);-ms-transform:matrix(0.264794,-0.003707,0.003500,0.249976,0,0);-webkit-transform:matrix(0.264794,-0.003707,0.003500,0.249976,0,0);}
.m34_c00164{transform:matrix(0.270465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270465,0.000000,0.000000,0.250000,0,0);}
.m2_c00164{transform:matrix(0.272030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272030,0.000000,0.000000,0.250000,0,0);}
.m2b_c00164{transform:matrix(0.273028,-0.001911,0.001750,0.249994,0,0);-ms-transform:matrix(0.273028,-0.001911,0.001750,0.249994,0,0);-webkit-transform:matrix(0.273028,-0.001911,0.001750,0.249994,0,0);}
.m23_c00164{transform:matrix(0.274363,-0.001921,0.001750,0.249994,0,0);-ms-transform:matrix(0.274363,-0.001921,0.001750,0.249994,0,0);-webkit-transform:matrix(0.274363,-0.001921,0.001750,0.249994,0,0);}
.m45_c00164{transform:matrix(0.276583,-0.001106,0.001000,0.249998,0,0);-ms-transform:matrix(0.276583,-0.001106,0.001000,0.249998,0,0);-webkit-transform:matrix(0.276583,-0.001106,0.001000,0.249998,0,0);}
.m4d_c00164{transform:matrix(0.278308,-0.001113,0.001000,0.249998,0,0);-ms-transform:matrix(0.278308,-0.001113,0.001000,0.249998,0,0);-webkit-transform:matrix(0.278308,-0.001113,0.001000,0.249998,0,0);}
.m53_c00164{transform:matrix(0.283268,-0.001133,0.001000,0.249998,0,0);-ms-transform:matrix(0.283268,-0.001133,0.001000,0.249998,0,0);-webkit-transform:matrix(0.283268,-0.001133,0.001000,0.249998,0,0);}
.md_c00164{transform:matrix(0.284277,-0.003980,0.003500,0.249976,0,0);-ms-transform:matrix(0.284277,-0.003980,0.003500,0.249976,0,0);-webkit-transform:matrix(0.284277,-0.003980,0.003500,0.249976,0,0);}
.m51_c00164{transform:matrix(0.284823,-0.001139,0.001000,0.249998,0,0);-ms-transform:matrix(0.284823,-0.001139,0.001000,0.249998,0,0);-webkit-transform:matrix(0.284823,-0.001139,0.001000,0.249998,0,0);}
.m8_c00164{transform:matrix(0.286116,-0.003720,0.003250,0.249979,0,0);-ms-transform:matrix(0.286116,-0.003720,0.003250,0.249979,0,0);-webkit-transform:matrix(0.286116,-0.003720,0.003250,0.249979,0,0);}
.m33_c00164{transform:matrix(0.295635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295635,0.000000,0.000000,0.250000,0,0);}
.m1f_c00164{transform:matrix(0.299148,-0.002094,0.001750,0.249994,0,0);-ms-transform:matrix(0.299148,-0.002094,0.001750,0.249994,0,0);-webkit-transform:matrix(0.299148,-0.002094,0.001750,0.249994,0,0);}
.mc_c00164{transform:matrix(0.299851,-0.004198,0.003500,0.249976,0,0);-ms-transform:matrix(0.299851,-0.004198,0.003500,0.249976,0,0);-webkit-transform:matrix(0.299851,-0.004198,0.003500,0.249976,0,0);}
.m49_c00164{transform:matrix(0.305938,-0.001224,0.001000,0.249998,0,0);-ms-transform:matrix(0.305938,-0.001224,0.001000,0.249998,0,0);-webkit-transform:matrix(0.305938,-0.001224,0.001000,0.249998,0,0);}
.m2a_c00164{transform:matrix(0.309247,-0.002165,0.001750,0.249994,0,0);-ms-transform:matrix(0.309247,-0.002165,0.001750,0.249994,0,0);-webkit-transform:matrix(0.309247,-0.002165,0.001750,0.249994,0,0);}
.m19_c00164{transform:matrix(0.324517,-0.002272,0.001750,0.249994,0,0);-ms-transform:matrix(0.324517,-0.002272,0.001750,0.249994,0,0);-webkit-transform:matrix(0.324517,-0.002272,0.001750,0.249994,0,0);}
.m39_c00164{transform:matrix(0.329060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329060,0.000000,0.000000,0.250000,0,0);}
.m20_c00164{transform:matrix(0.336617,-0.002356,0.001750,0.249994,0,0);-ms-transform:matrix(0.336617,-0.002356,0.001750,0.249994,0,0);-webkit-transform:matrix(0.336617,-0.002356,0.001750,0.249994,0,0);}
.mf_c00164{transform:matrix(0.343701,-0.004812,0.003500,0.249976,0,0);-ms-transform:matrix(0.343701,-0.004812,0.003500,0.249976,0,0);-webkit-transform:matrix(0.343701,-0.004812,0.003500,0.249976,0,0);}
.m28_c00164{transform:matrix(0.349411,-0.002446,0.001750,0.249994,0,0);-ms-transform:matrix(0.349411,-0.002446,0.001750,0.249994,0,0);-webkit-transform:matrix(0.349411,-0.002446,0.001750,0.249994,0,0);}
.m38_c00164{transform:matrix(0.357225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357225,0.000000,0.000000,0.250000,0,0);}
.m41_c00164{transform:matrix(0.362257,-0.001449,0.001000,0.249998,0,0);-ms-transform:matrix(0.362257,-0.001449,0.001000,0.249998,0,0);-webkit-transform:matrix(0.362257,-0.001449,0.001000,0.249998,0,0);}
.m47_c00164{transform:matrix(0.371077,-0.001484,0.001000,0.249998,0,0);-ms-transform:matrix(0.371077,-0.001484,0.001000,0.249998,0,0);-webkit-transform:matrix(0.371077,-0.001484,0.001000,0.249998,0,0);}
.m1e_c00164{transform:matrix(0.381871,-0.002673,0.001750,0.249994,0,0);-ms-transform:matrix(0.381871,-0.002673,0.001750,0.249994,0,0);-webkit-transform:matrix(0.381871,-0.002673,0.001750,0.249994,0,0);}
.m1c_c00164{transform:matrix(0.398890,-0.002792,0.001750,0.249994,0,0);-ms-transform:matrix(0.398890,-0.002792,0.001750,0.249994,0,0);-webkit-transform:matrix(0.398890,-0.002792,0.001750,0.249994,0,0);}
.m4f_c00164{transform:matrix(0.413587,-0.001654,0.001000,0.249998,0,0);-ms-transform:matrix(0.413587,-0.001654,0.001000,0.249998,0,0);-webkit-transform:matrix(0.413587,-0.001654,0.001000,0.249998,0,0);}
.m48_c00164{transform:matrix(0.413652,-0.001655,0.001000,0.249998,0,0);-ms-transform:matrix(0.413652,-0.001655,0.001000,0.249998,0,0);-webkit-transform:matrix(0.413652,-0.001655,0.001000,0.249998,0,0);}
.m46_c00164{transform:matrix(0.415962,-0.001664,0.001000,0.249998,0,0);-ms-transform:matrix(0.415962,-0.001664,0.001000,0.249998,0,0);-webkit-transform:matrix(0.415962,-0.001664,0.001000,0.249998,0,0);}
.m14_c00164{transform:matrix(0.417165,-0.002920,0.001750,0.249994,0,0);-ms-transform:matrix(0.417165,-0.002920,0.001750,0.249994,0,0);-webkit-transform:matrix(0.417165,-0.002920,0.001750,0.249994,0,0);}
.m21_c00164{transform:matrix(0.418750,-0.002931,0.001750,0.249994,0,0);-ms-transform:matrix(0.418750,-0.002931,0.001750,0.249994,0,0);-webkit-transform:matrix(0.418750,-0.002931,0.001750,0.249994,0,0);}
.m2f_c00164{transform:matrix(0.452757,-0.005886,0.003250,0.249979,0,0);-ms-transform:matrix(0.452757,-0.005886,0.003250,0.249979,0,0);-webkit-transform:matrix(0.452757,-0.005886,0.003250,0.249979,0,0);}
.m36_c00164{transform:matrix(0.467310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467310,0.000000,0.000000,0.250000,0,0);}
.m44_c00164{transform:matrix(0.498621,-0.001994,0.001000,0.249998,0,0);-ms-transform:matrix(0.498621,-0.001994,0.001000,0.249998,0,0);-webkit-transform:matrix(0.498621,-0.001994,0.001000,0.249998,0,0);}
.m2c_c00164{transform:matrix(0.515442,-0.003608,0.001750,0.249994,0,0);-ms-transform:matrix(0.515442,-0.003608,0.001750,0.249994,0,0);-webkit-transform:matrix(0.515442,-0.003608,0.001750,0.249994,0,0);}
.m25_c00164{transform:matrix(0.551656,-0.003862,0.001750,0.249994,0,0);-ms-transform:matrix(0.551656,-0.003862,0.001750,0.249994,0,0);-webkit-transform:matrix(0.551656,-0.003862,0.001750,0.249994,0,0);}
.m15_c00164{transform:matrix(0.570351,-0.003992,0.001750,0.249994,0,0);-ms-transform:matrix(0.570351,-0.003992,0.001750,0.249994,0,0);-webkit-transform:matrix(0.570351,-0.003992,0.001750,0.249994,0,0);}
.m22_c00164{transform:matrix(0.578731,-0.004051,0.001750,0.249994,0,0);-ms-transform:matrix(0.578731,-0.004051,0.001750,0.249994,0,0);-webkit-transform:matrix(0.578731,-0.004051,0.001750,0.249994,0,0);}
.m10_c00164{transform:matrix(0.685893,-0.009602,0.003500,0.249976,0,0);-ms-transform:matrix(0.685893,-0.009602,0.003500,0.249976,0,0);-webkit-transform:matrix(0.685893,-0.009602,0.003500,0.249976,0,0);}
.m32_c00164{transform:matrix(0.692935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.692935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.692935,0.000000,0.000000,0.250000,0,0);}
.m30_c00164{transform:matrix(0.730898,-0.009502,0.003250,0.249979,0,0);-ms-transform:matrix(0.730898,-0.009502,0.003250,0.249979,0,0);-webkit-transform:matrix(0.730898,-0.009502,0.003250,0.249979,0,0);}
.m40_c00164{transform:matrix(0.767964,-0.003072,0.001000,0.249998,0,0);-ms-transform:matrix(0.767964,-0.003072,0.001000,0.249998,0,0);-webkit-transform:matrix(0.767964,-0.003072,0.001000,0.249998,0,0);}
.m35_c00164{transform:matrix(0.811165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811165,0.000000,0.000000,0.250000,0,0);}
.m1_c00164{transform:matrix(0.829895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.829895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.829895,0.000000,0.000000,0.250000,0,0);}
.m2e_c00164{transform:matrix(0.951075,-0.012364,0.003250,0.249979,0,0);-ms-transform:matrix(0.951075,-0.012364,0.003250,0.249979,0,0);-webkit-transform:matrix(0.951075,-0.012364,0.003250,0.249979,0,0);}
.m3a_c00164{transform:matrix(1.007684,-0.011085,0.002750,0.249985,0,0);-ms-transform:matrix(1.007684,-0.011085,0.002750,0.249985,0,0);-webkit-transform:matrix(1.007684,-0.011085,0.002750,0.249985,0,0);}
.m27_c00164{transform:matrix(1.022195,-0.007155,0.001750,0.249994,0,0);-ms-transform:matrix(1.022195,-0.007155,0.001750,0.249994,0,0);-webkit-transform:matrix(1.022195,-0.007155,0.001750,0.249994,0,0);}
.m1d_c00164{transform:matrix(1.122937,-0.007861,0.001750,0.249994,0,0);-ms-transform:matrix(1.122937,-0.007861,0.001750,0.249994,0,0);-webkit-transform:matrix(1.122937,-0.007861,0.001750,0.249994,0,0);}
.m3f_c00164{transform:matrix(1.416329,-0.005665,0.001000,0.249998,0,0);-ms-transform:matrix(1.416329,-0.005665,0.001000,0.249998,0,0);-webkit-transform:matrix(1.416329,-0.005665,0.001000,0.249998,0,0);}
.v0_c00164{vertical-align:0.000000px;}
.ls0_c00164{letter-spacing:0.000000px;}
.sc__c00164{text-shadow:none;}
.sc0_c00164{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__c00164{-webkit-text-stroke:0px transparent;}
.sc0_c00164{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00164{word-spacing:0.000000px;}
.fc0_c00164{color:transparent;}
.fs0_c00164{font-size:18.000000px;}
.fsc_c00164{font-size:24.000000px;}
.fsd_c00164{font-size:24.000192px;}
.fsb_c00164{font-size:36.000000px;}
.fs7_c00164{font-size:60.005070px;}
.fs8_c00164{font-size:66.000000px;}
.fs5_c00164{font-size:90.002205px;}
.fs6_c00164{font-size:96.002352px;}
.fs1_c00164{font-size:114.009633px;}
.fs2_c00164{font-size:132.012935px;}
.fs9_c00164{font-size:192.000000px;}
.fsa_c00164{font-size:192.011616px;}
.fs3_c00164{font-size:198.019403px;}
.fs4_c00164{font-size:240.005880px;}
.y0_c00164{bottom:0.000000px;}
.y3b_c00164{bottom:1.179630px;}
.y3d_c00164{bottom:1.179690px;}
.y42_c00164{bottom:1.179930px;}
.y41_c00164{bottom:1.180170px;}
.y43_c00164{bottom:1.180230px;}
.y45_c00164{bottom:1.180290px;}
.y3c_c00164{bottom:1.180350px;}
.y3e_c00164{bottom:1.180650px;}
.y40_c00164{bottom:1.180770px;}
.y44_c00164{bottom:1.180830px;}
.y46_c00164{bottom:1.180890px;}
.y3f_c00164{bottom:1.180950px;}
.y47_c00164{bottom:1.181430px;}
.y48_c00164{bottom:1.181610px;}
.y49_c00164{bottom:1.182132px;}
.y4a_c00164{bottom:1.182372px;}
.y38_c00164{bottom:8.640000px;}
.y39_c00164{bottom:8.836512px;}
.y3a_c00164{bottom:11.978262px;}
.y33_c00164{bottom:139.573500px;}
.y34_c00164{bottom:144.992711px;}
.y35_c00164{bottom:147.445485px;}
.y37_c00164{bottom:182.790000px;}
.y36_c00164{bottom:187.380000px;}
.y32_c00164{bottom:263.289000px;}
.y31_c00164{bottom:283.945500px;}
.y2d_c00164{bottom:320.763000px;}
.y2e_c00164{bottom:328.375820px;}
.y2f_c00164{bottom:329.337794px;}
.y30_c00164{bottom:333.031639px;}
.y2c_c00164{bottom:408.240009px;}
.y2a_c00164{bottom:408.240370px;}
.y2b_c00164{bottom:408.240459px;}
.y23_c00164{bottom:408.240676px;}
.y29_c00164{bottom:408.240831px;}
.y24_c00164{bottom:408.241246px;}
.y27_c00164{bottom:408.241252px;}
.y26_c00164{bottom:408.241284px;}
.y28_c00164{bottom:408.241411px;}
.y25_c00164{bottom:408.241865px;}
.y1a_c00164{bottom:434.429692px;}
.y1b_c00164{bottom:435.288325px;}
.y1c_c00164{bottom:435.641216px;}
.y1d_c00164{bottom:436.877534px;}
.y1e_c00164{bottom:437.227263px;}
.y1f_c00164{bottom:437.875252px;}
.y20_c00164{bottom:438.833620px;}
.y21_c00164{bottom:439.196970px;}
.y22_c00164{bottom:439.945051px;}
.y13_c00164{bottom:470.871000px;}
.y14_c00164{bottom:472.528488px;}
.y15_c00164{bottom:473.558748px;}
.y16_c00164{bottom:473.968867px;}
.y17_c00164{bottom:474.426184px;}
.y18_c00164{bottom:475.871761px;}
.y19_c00164{bottom:477.305358px;}
.y11_c00164{bottom:491.672028px;}
.y12_c00164{bottom:499.984047px;}
.y8_c00164{bottom:523.806000px;}
.y9_c00164{bottom:526.441941px;}
.ya_c00164{bottom:528.633942px;}
.yb_c00164{bottom:529.420287px;}
.yc_c00164{bottom:530.395422px;}
.yd_c00164{bottom:532.152954px;}
.ye_c00164{bottom:532.835013px;}
.yf_c00164{bottom:534.021954px;}
.y10_c00164{bottom:536.709450px;}
.y2_c00164{bottom:628.564500px;}
.y3_c00164{bottom:633.459663px;}
.y4_c00164{bottom:634.643430px;}
.y5_c00164{bottom:636.016035px;}
.y6_c00164{bottom:636.649337px;}
.y7_c00164{bottom:637.591713px;}
.y1_c00164{bottom:679.177500px;}
.h1_c00164{height:18.000000px;}
.hd_c00164{height:24.000000px;}
.he_c00164{height:24.000192px;}
.hc_c00164{height:36.000000px;}
.h8_c00164{height:60.005070px;}
.h9_c00164{height:66.000000px;}
.h6_c00164{height:90.002205px;}
.h7_c00164{height:96.002352px;}
.h2_c00164{height:114.009633px;}
.h3_c00164{height:132.012935px;}
.ha_c00164{height:192.000000px;}
.hb_c00164{height:192.011616px;}
.h4_c00164{height:198.019403px;}
.h5_c00164{height:240.005880px;}
.h0_c00164{height:682.500000px;}
.w1_c00164{width:945.750000px;}
.w0_c00164{width:946.050000px;}
.x0_c00164{left:0.000000px;}
.x4_c00164{left:19.015500px;}
.x2e_c00164{left:20.790000px;}
.x20_c00164{left:30.508866px;}
.x2b_c00164{left:73.980000px;}
.x33_c00164{left:94.918500px;}
.x37_c00164{left:98.827500px;}
.x19_c00164{left:143.122063px;}
.x38_c00164{left:147.955500px;}
.x3a_c00164{left:150.390666px;}
.x2c_c00164{left:170.640000px;}
.x3b_c00164{left:173.071026px;}
.xa_c00164{left:188.674500px;}
.x1a_c00164{left:201.892473px;}
.x3c_c00164{left:213.031668px;}
.x2d_c00164{left:223.290000px;}
.x13_c00164{left:237.103500px;}
.x3d_c00164{left:240.572106px;}
.x21_c00164{left:244.893366px;}
.x3e_c00164{left:256.772364px;}
.x3f_c00164{left:272.972622px;}
.x40_c00164{left:294.572970px;}
.x22_c00164{left:308.885005px;}
.x41_c00164{left:314.553288px;}
.x42_c00164{left:336.153636px;}
.x1_c00164{left:341.010000px;}
.x43_c00164{left:342.093732px;}
.xb_c00164{left:345.246000px;}
.x2_c00164{left:346.950000px;}
.x44_c00164{left:350.193858px;}
.x45_c00164{left:353.433912px;}
.x46_c00164{left:358.833996px;}
.x3_c00164{left:373.410000px;}
.x47_c00164{left:375.844266px;}
.x14_c00164{left:384.283500px;}
.x48_c00164{left:388.264464px;}
.x5_c00164{left:395.566500px;}
.xc_c00164{left:401.413500px;}
.x2f_c00164{left:405.540000px;}
.x1b_c00164{left:407.867911px;}
.x15_c00164{left:442.872000px;}
.x1c_c00164{left:466.186821px;}
.xd_c00164{left:471.066000px;}
.x6_c00164{left:486.625500px;}
.x23_c00164{left:497.889767px;}
.x16_c00164{left:508.203000px;}
.x1d_c00164{left:574.186077px;}
.x28_c00164{left:585.837000px;}
.x34_c00164{left:587.574000px;}
.x7_c00164{left:592.210500px;}
.xe_c00164{left:596.604000px;}
.x12_c00164{left:639.712224px;}
.x8_c00164{left:640.926000px;}
.xf_c00164{left:645.322500px;}
.x29_c00164{left:659.835000px;}
.x24_c00164{left:673.123855px;}
.x30_c00164{left:680.940000px;}
.x31_c00164{left:709.290000px;}
.x9_c00164{left:713.416500px;}
.x17_c00164{left:714.714000px;}
.x10_c00164{left:730.104000px;}
.x1e_c00164{left:733.811190px;}
.x25_c00164{left:739.275600px;}
.x1f_c00164{left:794.290110px;}
.x35_c00164{left:810.553500px;}
.x32_c00164{left:845.100000px;}
.x49_c00164{left:898.028118px;}
.x26_c00164{left:916.939804px;}
.x18_c00164{left:919.513500px;}
.x11_c00164{left:922.068000px;}
.x4a_c00164{left:925.838562px;}
.x39_c00164{left:933.393000px;}
.x36_c00164{left:937.980000px;}
.x27_c00164{left:942.591065px;}
.x2a_c00164{left:943.977000px;}
@media print{
.v0_c00164{vertical-align:0.000000pt;}
.ls0_c00164{letter-spacing:0.000000pt;}
.ws0_c00164{word-spacing:0.000000pt;}
.fs0_c00164{font-size:16.000000pt;}
.fsc_c00164{font-size:21.333333pt;}
.fsd_c00164{font-size:21.333504pt;}
.fsb_c00164{font-size:32.000000pt;}
.fs7_c00164{font-size:53.337840pt;}
.fs8_c00164{font-size:58.666667pt;}
.fs5_c00164{font-size:80.001960pt;}
.fs6_c00164{font-size:85.335424pt;}
.fs1_c00164{font-size:101.341896pt;}
.fs2_c00164{font-size:117.344831pt;}
.fs9_c00164{font-size:170.666667pt;}
.fsa_c00164{font-size:170.676992pt;}
.fs3_c00164{font-size:176.017247pt;}
.fs4_c00164{font-size:213.338560pt;}
.y0_c00164{bottom:0.000000pt;}
.y3b_c00164{bottom:1.048560pt;}
.y3d_c00164{bottom:1.048613pt;}
.y42_c00164{bottom:1.048827pt;}
.y41_c00164{bottom:1.049040pt;}
.y43_c00164{bottom:1.049093pt;}
.y45_c00164{bottom:1.049147pt;}
.y3c_c00164{bottom:1.049200pt;}
.y3e_c00164{bottom:1.049467pt;}
.y40_c00164{bottom:1.049573pt;}
.y44_c00164{bottom:1.049627pt;}
.y46_c00164{bottom:1.049680pt;}
.y3f_c00164{bottom:1.049733pt;}
.y47_c00164{bottom:1.050160pt;}
.y48_c00164{bottom:1.050320pt;}
.y49_c00164{bottom:1.050784pt;}
.y4a_c00164{bottom:1.050997pt;}
.y38_c00164{bottom:7.680000pt;}
.y39_c00164{bottom:7.854677pt;}
.y3a_c00164{bottom:10.647344pt;}
.y33_c00164{bottom:124.065333pt;}
.y34_c00164{bottom:128.882409pt;}
.y35_c00164{bottom:131.062653pt;}
.y37_c00164{bottom:162.480000pt;}
.y36_c00164{bottom:166.560000pt;}
.y32_c00164{bottom:234.034667pt;}
.y31_c00164{bottom:252.396000pt;}
.y2d_c00164{bottom:285.122667pt;}
.y2e_c00164{bottom:291.889617pt;}
.y2f_c00164{bottom:292.744705pt;}
.y30_c00164{bottom:296.028124pt;}
.y2c_c00164{bottom:362.880008pt;}
.y2a_c00164{bottom:362.880329pt;}
.y2b_c00164{bottom:362.880408pt;}
.y23_c00164{bottom:362.880601pt;}
.y29_c00164{bottom:362.880739pt;}
.y24_c00164{bottom:362.881108pt;}
.y27_c00164{bottom:362.881113pt;}
.y26_c00164{bottom:362.881141pt;}
.y28_c00164{bottom:362.881255pt;}
.y25_c00164{bottom:362.881657pt;}
.y1a_c00164{bottom:386.159727pt;}
.y1b_c00164{bottom:386.922956pt;}
.y1c_c00164{bottom:387.236636pt;}
.y1d_c00164{bottom:388.335585pt;}
.y1e_c00164{bottom:388.646456pt;}
.y1f_c00164{bottom:389.222447pt;}
.y20_c00164{bottom:390.074329pt;}
.y21_c00164{bottom:390.397307pt;}
.y22_c00164{bottom:391.062268pt;}
.y13_c00164{bottom:418.552000pt;}
.y14_c00164{bottom:420.025323pt;}
.y15_c00164{bottom:420.941109pt;}
.y16_c00164{bottom:421.305660pt;}
.y17_c00164{bottom:421.712164pt;}
.y18_c00164{bottom:422.997121pt;}
.y19_c00164{bottom:424.271429pt;}
.y11_c00164{bottom:437.041803pt;}
.y12_c00164{bottom:444.430264pt;}
.y8_c00164{bottom:465.605333pt;}
.y9_c00164{bottom:467.948392pt;}
.ya_c00164{bottom:469.896837pt;}
.yb_c00164{bottom:470.595811pt;}
.yc_c00164{bottom:471.462597pt;}
.yd_c00164{bottom:473.024848pt;}
.ye_c00164{bottom:473.631123pt;}
.yf_c00164{bottom:474.686181pt;}
.y10_c00164{bottom:477.075067pt;}
.y2_c00164{bottom:558.724000pt;}
.y3_c00164{bottom:563.075256pt;}
.y4_c00164{bottom:564.127493pt;}
.y5_c00164{bottom:565.347587pt;}
.y6_c00164{bottom:565.910521pt;}
.y7_c00164{bottom:566.748189pt;}
.y1_c00164{bottom:603.713333pt;}
.h1_c00164{height:16.000000pt;}
.hd_c00164{height:21.333333pt;}
.he_c00164{height:21.333504pt;}
.hc_c00164{height:32.000000pt;}
.h8_c00164{height:53.337840pt;}
.h9_c00164{height:58.666667pt;}
.h6_c00164{height:80.001960pt;}
.h7_c00164{height:85.335424pt;}
.h2_c00164{height:101.341896pt;}
.h3_c00164{height:117.344831pt;}
.ha_c00164{height:170.666667pt;}
.hb_c00164{height:170.676992pt;}
.h4_c00164{height:176.017247pt;}
.h5_c00164{height:213.338560pt;}
.h0_c00164{height:606.666667pt;}
.w1_c00164{width:840.666667pt;}
.w0_c00164{width:840.933333pt;}
.x0_c00164{left:0.000000pt;}
.x4_c00164{left:16.902667pt;}
.x2e_c00164{left:18.480000pt;}
.x20_c00164{left:27.118992pt;}
.x2b_c00164{left:65.760000pt;}
.x33_c00164{left:84.372000pt;}
.x37_c00164{left:87.846667pt;}
.x19_c00164{left:127.219612pt;}
.x38_c00164{left:131.516000pt;}
.x3a_c00164{left:133.680592pt;}
.x2c_c00164{left:151.680000pt;}
.x3b_c00164{left:153.840912pt;}
.xa_c00164{left:167.710667pt;}
.x1a_c00164{left:179.459976pt;}
.x3c_c00164{left:189.361483pt;}
.x2d_c00164{left:198.480000pt;}
.x13_c00164{left:210.758667pt;}
.x3d_c00164{left:213.841872pt;}
.x21_c00164{left:217.682992pt;}
.x3e_c00164{left:228.242101pt;}
.x3f_c00164{left:242.642331pt;}
.x40_c00164{left:261.842640pt;}
.x22_c00164{left:274.564449pt;}
.x41_c00164{left:279.602923pt;}
.x42_c00164{left:298.803232pt;}
.x1_c00164{left:303.120000pt;}
.x43_c00164{left:304.083317pt;}
.xb_c00164{left:306.885333pt;}
.x2_c00164{left:308.400000pt;}
.x44_c00164{left:311.283429pt;}
.x45_c00164{left:314.163477pt;}
.x46_c00164{left:318.963552pt;}
.x3_c00164{left:331.920000pt;}
.x47_c00164{left:334.083792pt;}
.x14_c00164{left:341.585333pt;}
.x48_c00164{left:345.123968pt;}
.x5_c00164{left:351.614667pt;}
.xc_c00164{left:356.812000pt;}
.x2f_c00164{left:360.480000pt;}
.x1b_c00164{left:362.549255pt;}
.x15_c00164{left:393.664000pt;}
.x1c_c00164{left:414.388285pt;}
.xd_c00164{left:418.725333pt;}
.x6_c00164{left:432.556000pt;}
.x23_c00164{left:442.568681pt;}
.x16_c00164{left:451.736000pt;}
.x1d_c00164{left:510.387624pt;}
.x28_c00164{left:520.744000pt;}
.x34_c00164{left:522.288000pt;}
.x7_c00164{left:526.409333pt;}
.xe_c00164{left:530.314667pt;}
.x12_c00164{left:568.633088pt;}
.x8_c00164{left:569.712000pt;}
.xf_c00164{left:573.620000pt;}
.x29_c00164{left:586.520000pt;}
.x24_c00164{left:598.332316pt;}
.x30_c00164{left:605.280000pt;}
.x31_c00164{left:630.480000pt;}
.x9_c00164{left:634.148000pt;}
.x17_c00164{left:635.301333pt;}
.x10_c00164{left:648.981333pt;}
.x1e_c00164{left:652.276613pt;}
.x25_c00164{left:657.133867pt;}
.x1f_c00164{left:706.035653pt;}
.x35_c00164{left:720.492000pt;}
.x32_c00164{left:751.200000pt;}
.x49_c00164{left:798.247216pt;}
.x26_c00164{left:815.057604pt;}
.x18_c00164{left:817.345333pt;}
.x11_c00164{left:819.616000pt;}
.x4a_c00164{left:822.967611pt;}
.x39_c00164{left:829.682667pt;}
.x36_c00164{left:833.760000pt;}
.x27_c00164{left:837.858724pt;}
.x2a_c00164{left:839.090667pt;}
}





/* 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_c00165 {
    display:none;
  }
  .loading-indicator_c00165.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00165 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_c00165 { 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_c00165" -> "#page-container .classname_c00165")
 */
.pf_c00165 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00165 { /* 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_c00165.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00165 { /* 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_c00165 { /* 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_c00165 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00165 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00165 {overflow:visible;}
  }
}
.c_c00165 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00165 { /* 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_c00165:after { /* webkit #35443 */
  content: '';
}
.t_c00165:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00165 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 */
}
.__c00165 { /* 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_c00165 { /* info for Javascript */
  display:none;
}
.l_c00165 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00165 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00165 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00165: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_c00165 {
    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_c00165.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00165.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_c00165 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00165{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00165;src:url('chunks/assets/font_c605e72f209fc835e906f064.woff2')format("woff");}.ff1_c00165{font-family:ff1_c00165;line-height:1.000000;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;}
.m18_c00165{transform:matrix(0.010595,0.000456,-0.010751,0.249769,0,0);-ms-transform:matrix(0.010595,0.000456,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.010595,0.000456,-0.010751,0.249769,0,0);}
.m91_c00165{transform:matrix(0.019085,0.000439,-0.005748,0.249934,0,0);-ms-transform:matrix(0.019085,0.000439,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.019085,0.000439,-0.005748,0.249934,0,0);}
.mdc_c00165{transform:matrix(0.019090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.019090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.019090,0.000000,0.000000,0.250000,0,0);}
.m13_c00165{transform:matrix(0.019102,0.000822,-0.010751,0.249769,0,0);-ms-transform:matrix(0.019102,0.000822,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.019102,0.000822,-0.010751,0.249769,0,0);}
.m32_c00165{transform:matrix(0.020453,0.000286,-0.003500,0.249976,0,0);-ms-transform:matrix(0.020453,0.000286,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.020453,0.000286,-0.003500,0.249976,0,0);}
.m5f_c00165{transform:matrix(0.025454,-0.000229,0.002250,0.249990,0,0);-ms-transform:matrix(0.025454,-0.000229,0.002250,0.249990,0,0);-webkit-transform:matrix(0.025454,-0.000229,0.002250,0.249990,0,0);}
.md6_c00165{transform:matrix(0.026240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.026240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.026240,0.000000,0.000000,0.250000,0,0);}
.m7e_c00165{transform:matrix(0.031818,0.000382,-0.003000,0.249982,0,0);-ms-transform:matrix(0.031818,0.000382,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.031818,0.000382,-0.003000,0.249982,0,0);}
.mc8_c00165{transform:matrix(0.032450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032450,0.000000,0.000000,0.250000,0,0);}
.m0_c00165{transform:matrix(0.036865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.036865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.036865,0.000000,0.000000,0.250000,0,0);}
.m5c_c00165{transform:matrix(0.037108,-0.000334,0.002250,0.249990,0,0);-ms-transform:matrix(0.037108,-0.000334,0.002250,0.249990,0,0);-webkit-transform:matrix(0.037108,-0.000334,0.002250,0.249990,0,0);}
.m50_c00165{transform:matrix(0.037483,-0.000337,0.002250,0.249990,0,0);-ms-transform:matrix(0.037483,-0.000337,0.002250,0.249990,0,0);-webkit-transform:matrix(0.037483,-0.000337,0.002250,0.249990,0,0);}
.m58_c00165{transform:matrix(0.042453,-0.000382,0.002250,0.249990,0,0);-ms-transform:matrix(0.042453,-0.000382,0.002250,0.249990,0,0);-webkit-transform:matrix(0.042453,-0.000382,0.002250,0.249990,0,0);}
.m5a_c00165{transform:matrix(0.044998,-0.000405,0.002250,0.249990,0,0);-ms-transform:matrix(0.044998,-0.000405,0.002250,0.249990,0,0);-webkit-transform:matrix(0.044998,-0.000405,0.002250,0.249990,0,0);}
.m89_c00165{transform:matrix(0.047158,0.001085,-0.005748,0.249934,0,0);-ms-transform:matrix(0.047158,0.001085,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.047158,0.001085,-0.005748,0.249934,0,0);}
.mbb_c00165{transform:matrix(0.055300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.055300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.055300,0.000000,0.000000,0.250000,0,0);}
.m3e_c00165{transform:matrix(0.058573,-0.000527,0.002250,0.249990,0,0);-ms-transform:matrix(0.058573,-0.000527,0.002250,0.249990,0,0);-webkit-transform:matrix(0.058573,-0.000527,0.002250,0.249990,0,0);}
.mba_c00165{transform:matrix(0.060645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060645,0.000000,0.000000,0.250000,0,0);}
.m56_c00165{transform:matrix(0.066437,-0.000598,0.002250,0.249990,0,0);-ms-transform:matrix(0.066437,-0.000598,0.002250,0.249990,0,0);-webkit-transform:matrix(0.066437,-0.000598,0.002250,0.249990,0,0);}
.m53_c00165{transform:matrix(0.076367,-0.000687,0.002250,0.249990,0,0);-ms-transform:matrix(0.076367,-0.000687,0.002250,0.249990,0,0);-webkit-transform:matrix(0.076367,-0.000687,0.002250,0.249990,0,0);}
.m57_c00165{transform:matrix(0.076627,-0.000690,0.002250,0.249990,0,0);-ms-transform:matrix(0.076627,-0.000690,0.002250,0.249990,0,0);-webkit-transform:matrix(0.076627,-0.000690,0.002250,0.249990,0,0);}
.mb4_c00165{transform:matrix(0.079835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.079835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.079835,0.000000,0.000000,0.250000,0,0);}
.mad_c00165{transform:matrix(0.096973,-0.001164,0.003000,0.249982,0,0);-ms-transform:matrix(0.096973,-0.001164,0.003000,0.249982,0,0);-webkit-transform:matrix(0.096973,-0.001164,0.003000,0.249982,0,0);}
.me5_c00165{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m4f_c00165{transform:matrix(0.103656,-0.000933,0.002250,0.249990,0,0);-ms-transform:matrix(0.103656,-0.000933,0.002250,0.249990,0,0);-webkit-transform:matrix(0.103656,-0.000933,0.002250,0.249990,0,0);}
.m2_c00165{transform:matrix(0.105623,0.004758,-0.011250,0.249747,0,0);-ms-transform:matrix(0.105623,0.004758,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.105623,0.004758,-0.011250,0.249747,0,0);}
.m51_c00165{transform:matrix(0.126625,-0.001140,0.002250,0.249990,0,0);-ms-transform:matrix(0.126625,-0.001140,0.002250,0.249990,0,0);-webkit-transform:matrix(0.126625,-0.001140,0.002250,0.249990,0,0);}
.mcf_c00165{transform:matrix(0.127915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127915,0.000000,0.000000,0.250000,0,0);}
.m22_c00165{transform:matrix(0.136514,0.005876,-0.010751,0.249769,0,0);-ms-transform:matrix(0.136514,0.005876,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.136514,0.005876,-0.010751,0.249769,0,0);}
.mca_c00165{transform:matrix(0.138295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138295,0.000000,0.000000,0.250000,0,0);}
.m82_c00165{transform:matrix(0.146914,0.001763,-0.003000,0.249982,0,0);-ms-transform:matrix(0.146914,0.001763,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.146914,0.001763,-0.003000,0.249982,0,0);}
.m5b_c00165{transform:matrix(0.148969,-0.001341,0.002250,0.249990,0,0);-ms-transform:matrix(0.148969,-0.001341,0.002250,0.249990,0,0);-webkit-transform:matrix(0.148969,-0.001341,0.002250,0.249990,0,0);}
.m4a_c00165{transform:matrix(0.162148,-0.001459,0.002250,0.249990,0,0);-ms-transform:matrix(0.162148,-0.001459,0.002250,0.249990,0,0);-webkit-transform:matrix(0.162148,-0.001459,0.002250,0.249990,0,0);}
.m37_c00165{transform:matrix(0.166513,-0.001998,0.003000,0.249982,0,0);-ms-transform:matrix(0.166513,-0.001998,0.003000,0.249982,0,0);-webkit-transform:matrix(0.166513,-0.001998,0.003000,0.249982,0,0);}
.m7a_c00165{transform:matrix(0.169988,0.002040,-0.003000,0.249982,0,0);-ms-transform:matrix(0.169988,0.002040,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.169988,0.002040,-0.003000,0.249982,0,0);}
.ma9_c00165{transform:matrix(0.172688,-0.002072,0.003000,0.249982,0,0);-ms-transform:matrix(0.172688,-0.002072,0.003000,0.249982,0,0);-webkit-transform:matrix(0.172688,-0.002072,0.003000,0.249982,0,0);}
.m44_c00165{transform:matrix(0.178083,-0.001603,0.002250,0.249990,0,0);-ms-transform:matrix(0.178083,-0.001603,0.002250,0.249990,0,0);-webkit-transform:matrix(0.178083,-0.001603,0.002250,0.249990,0,0);}
.md_c00165{transform:matrix(0.179028,0.008064,-0.011250,0.249747,0,0);-ms-transform:matrix(0.179028,0.008064,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.179028,0.008064,-0.011250,0.249747,0,0);}
.m79_c00165{transform:matrix(0.185677,0.002228,-0.003000,0.249982,0,0);-ms-transform:matrix(0.185677,0.002228,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.185677,0.002228,-0.003000,0.249982,0,0);}
.me6_c00165{transform:matrix(0.186010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186010,0.000000,0.000000,0.250000,0,0);}
.m6d_c00165{transform:matrix(0.189047,-0.001701,0.002250,0.249990,0,0);-ms-transform:matrix(0.189047,-0.001701,0.002250,0.249990,0,0);-webkit-transform:matrix(0.189047,-0.001701,0.002250,0.249990,0,0);}
.mc7_c00165{transform:matrix(0.189580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189580,0.000000,0.000000,0.250000,0,0);}
.m29_c00165{transform:matrix(0.189679,0.008164,-0.010751,0.249769,0,0);-ms-transform:matrix(0.189679,0.008164,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.189679,0.008164,-0.010751,0.249769,0,0);}
.mda_c00165{transform:matrix(0.195375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195375,0.000000,0.000000,0.250000,0,0);}
.m7d_c00165{transform:matrix(0.196281,0.002355,-0.003000,0.249982,0,0);-ms-transform:matrix(0.196281,0.002355,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.196281,0.002355,-0.003000,0.249982,0,0);}
.m96_c00165{transform:matrix(0.198113,0.004557,-0.005748,0.249934,0,0);-ms-transform:matrix(0.198113,0.004557,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.198113,0.004557,-0.005748,0.249934,0,0);}
.mab_c00165{transform:matrix(0.203070,-0.002437,0.003000,0.249982,0,0);-ms-transform:matrix(0.203070,-0.002437,0.003000,0.249982,0,0);-webkit-transform:matrix(0.203070,-0.002437,0.003000,0.249982,0,0);}
.ma8_c00165{transform:matrix(0.207065,-0.002485,0.003000,0.249982,0,0);-ms-transform:matrix(0.207065,-0.002485,0.003000,0.249982,0,0);-webkit-transform:matrix(0.207065,-0.002485,0.003000,0.249982,0,0);}
.m4d_c00165{transform:matrix(0.209117,-0.001882,0.002250,0.249990,0,0);-ms-transform:matrix(0.209117,-0.001882,0.002250,0.249990,0,0);-webkit-transform:matrix(0.209117,-0.001882,0.002250,0.249990,0,0);}
.m52_c00165{transform:matrix(0.217671,-0.001959,0.002250,0.249990,0,0);-ms-transform:matrix(0.217671,-0.001959,0.002250,0.249990,0,0);-webkit-transform:matrix(0.217671,-0.001959,0.002250,0.249990,0,0);}
.m9c_c00165{transform:matrix(0.224851,0.005172,-0.005748,0.249934,0,0);-ms-transform:matrix(0.224851,0.005172,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.224851,0.005172,-0.005748,0.249934,0,0);}
.m60_c00165{transform:matrix(0.227141,-0.002044,0.002250,0.249990,0,0);-ms-transform:matrix(0.227141,-0.002044,0.002250,0.249990,0,0);-webkit-transform:matrix(0.227141,-0.002044,0.002250,0.249990,0,0);}
.me8_c00165{transform:matrix(0.229455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229455,0.000000,0.000000,0.250000,0,0);}
.me9_c00165{transform:matrix(0.230070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230070,0.000000,0.000000,0.250000,0,0);}
.ma0_c00165{transform:matrix(0.230658,-0.002768,0.003000,0.249982,0,0);-ms-transform:matrix(0.230658,-0.002768,0.003000,0.249982,0,0);-webkit-transform:matrix(0.230658,-0.002768,0.003000,0.249982,0,0);}
.mac_c00165{transform:matrix(0.230788,-0.002769,0.003000,0.249982,0,0);-ms-transform:matrix(0.230788,-0.002769,0.003000,0.249982,0,0);-webkit-transform:matrix(0.230788,-0.002769,0.003000,0.249982,0,0);}
.m94_c00165{transform:matrix(0.238567,0.005487,-0.005748,0.249934,0,0);-ms-transform:matrix(0.238567,0.005487,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.238567,0.005487,-0.005748,0.249934,0,0);}
.me0_c00165{transform:matrix(0.245975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245975,0.000000,0.000000,0.250000,0,0);}
.me3_c00165{transform:matrix(0.252825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252825,0.000000,0.000000,0.250000,0,0);}
.mdb_c00165{transform:matrix(0.254715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254715,0.000000,0.000000,0.250000,0,0);}
.m40_c00165{transform:matrix(0.259594,-0.002336,0.002250,0.249990,0,0);-ms-transform:matrix(0.259594,-0.002336,0.002250,0.249990,0,0);-webkit-transform:matrix(0.259594,-0.002336,0.002250,0.249990,0,0);}
.m9e_c00165{transform:matrix(0.260841,0.005999,-0.005748,0.249934,0,0);-ms-transform:matrix(0.260841,0.005999,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.260841,0.005999,-0.005748,0.249934,0,0);}
.mc4_c00165{transform:matrix(0.265055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265055,0.000000,0.000000,0.250000,0,0);}
.mbf_c00165{transform:matrix(0.267400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267400,0.000000,0.000000,0.250000,0,0);}
.mcc_c00165{transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);}
.m27_c00165{transform:matrix(0.270879,0.011659,-0.010751,0.249769,0,0);-ms-transform:matrix(0.270879,0.011659,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.270879,0.011659,-0.010751,0.249769,0,0);}
.ma3_c00165{transform:matrix(0.272150,-0.003266,0.003000,0.249982,0,0);-ms-transform:matrix(0.272150,-0.003266,0.003000,0.249982,0,0);-webkit-transform:matrix(0.272150,-0.003266,0.003000,0.249982,0,0);}
.m49_c00165{transform:matrix(0.276574,-0.002489,0.002250,0.249990,0,0);-ms-transform:matrix(0.276574,-0.002489,0.002250,0.249990,0,0);-webkit-transform:matrix(0.276574,-0.002489,0.002250,0.249990,0,0);}
.m6a_c00165{transform:matrix(0.280654,-0.002526,0.002250,0.249990,0,0);-ms-transform:matrix(0.280654,-0.002526,0.002250,0.249990,0,0);-webkit-transform:matrix(0.280654,-0.002526,0.002250,0.249990,0,0);}
.mce_c00165{transform:matrix(0.281745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281745,0.000000,0.000000,0.250000,0,0);}
.mb1_c00165{transform:matrix(0.281965,-0.003384,0.003000,0.249982,0,0);-ms-transform:matrix(0.281965,-0.003384,0.003000,0.249982,0,0);-webkit-transform:matrix(0.281965,-0.003384,0.003000,0.249982,0,0);}
.mb8_c00165{transform:matrix(0.283535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283535,0.000000,0.000000,0.250000,0,0);}
.m35_c00165{transform:matrix(0.289302,0.004050,-0.003500,0.249976,0,0);-ms-transform:matrix(0.289302,0.004050,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.289302,0.004050,-0.003500,0.249976,0,0);}
.md2_c00165{transform:matrix(0.289580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289580,0.000000,0.000000,0.250000,0,0);}
.m99_c00165{transform:matrix(0.289683,0.006663,-0.005748,0.249934,0,0);-ms-transform:matrix(0.289683,0.006663,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.289683,0.006663,-0.005748,0.249934,0,0);}
.m8a_c00165{transform:matrix(0.290613,0.006684,-0.005748,0.249934,0,0);-ms-transform:matrix(0.290613,0.006684,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.290613,0.006684,-0.005748,0.249934,0,0);}
.m28_c00165{transform:matrix(0.292469,0.012589,-0.010751,0.249769,0,0);-ms-transform:matrix(0.292469,0.012589,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.292469,0.012589,-0.010751,0.249769,0,0);}
.mb6_c00165{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.m69_c00165{transform:matrix(0.294173,-0.002648,0.002250,0.249990,0,0);-ms-transform:matrix(0.294173,-0.002648,0.002250,0.249990,0,0);-webkit-transform:matrix(0.294173,-0.002648,0.002250,0.249990,0,0);}
.m6c_c00165{transform:matrix(0.296338,-0.002667,0.002250,0.249990,0,0);-ms-transform:matrix(0.296338,-0.002667,0.002250,0.249990,0,0);-webkit-transform:matrix(0.296338,-0.002667,0.002250,0.249990,0,0);}
.m4_c00165{transform:matrix(0.297988,0.013423,-0.011250,0.249747,0,0);-ms-transform:matrix(0.297988,0.013423,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.297988,0.013423,-0.011250,0.249747,0,0);}
.m90_c00165{transform:matrix(0.301615,0.006937,-0.005748,0.249934,0,0);-ms-transform:matrix(0.301615,0.006937,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.301615,0.006937,-0.005748,0.249934,0,0);}
.md4_c00165{transform:matrix(0.303950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303950,0.000000,0.000000,0.250000,0,0);}
.m25_c00165{transform:matrix(0.305247,0.013139,-0.010751,0.249769,0,0);-ms-transform:matrix(0.305247,0.013139,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.305247,0.013139,-0.010751,0.249769,0,0);}
.m10_c00165{transform:matrix(0.305907,0.013167,-0.010751,0.249769,0,0);-ms-transform:matrix(0.305907,0.013167,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.305907,0.013167,-0.010751,0.249769,0,0);}
.md5_c00165{transform:matrix(0.306035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306035,0.000000,0.000000,0.250000,0,0);}
.m5e_c00165{transform:matrix(0.307178,-0.002765,0.002250,0.249990,0,0);-ms-transform:matrix(0.307178,-0.002765,0.002250,0.249990,0,0);-webkit-transform:matrix(0.307178,-0.002765,0.002250,0.249990,0,0);}
.m34_c00165{transform:matrix(0.307770,0.004309,-0.003500,0.249976,0,0);-ms-transform:matrix(0.307770,0.004309,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.307770,0.004309,-0.003500,0.249976,0,0);}
.m6f_c00165{transform:matrix(0.308133,-0.002773,0.002250,0.249990,0,0);-ms-transform:matrix(0.308133,-0.002773,0.002250,0.249990,0,0);-webkit-transform:matrix(0.308133,-0.002773,0.002250,0.249990,0,0);}
.m19_c00165{transform:matrix(0.308414,0.013275,-0.010751,0.249769,0,0);-ms-transform:matrix(0.308414,0.013275,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.308414,0.013275,-0.010751,0.249769,0,0);}
.mf_c00165{transform:matrix(0.310413,0.013361,-0.010751,0.249769,0,0);-ms-transform:matrix(0.310413,0.013361,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.310413,0.013361,-0.010751,0.249769,0,0);}
.m11_c00165{transform:matrix(0.311227,0.013396,-0.010751,0.249769,0,0);-ms-transform:matrix(0.311227,0.013396,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.311227,0.013396,-0.010751,0.249769,0,0);}
.mcd_c00165{transform:matrix(0.312420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312420,0.000000,0.000000,0.250000,0,0);}
.mc2_c00165{transform:matrix(0.325405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325405,0.000000,0.000000,0.250000,0,0);}
.m6b_c00165{transform:matrix(0.328962,-0.002961,0.002250,0.249990,0,0);-ms-transform:matrix(0.328962,-0.002961,0.002250,0.249990,0,0);-webkit-transform:matrix(0.328962,-0.002961,0.002250,0.249990,0,0);}
.mc6_c00165{transform:matrix(0.331245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331245,0.000000,0.000000,0.250000,0,0);}
.m2e_c00165{transform:matrix(0.331588,0.004642,-0.003500,0.249976,0,0);-ms-transform:matrix(0.331588,0.004642,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.331588,0.004642,-0.003500,0.249976,0,0);}
.m1e_c00165{transform:matrix(0.336169,0.014470,-0.010751,0.249769,0,0);-ms-transform:matrix(0.336169,0.014470,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.336169,0.014470,-0.010751,0.249769,0,0);}
.m3_c00165{transform:matrix(0.339066,0.015273,-0.011250,0.249747,0,0);-ms-transform:matrix(0.339066,0.015273,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.339066,0.015273,-0.011250,0.249747,0,0);}
.m9d_c00165{transform:matrix(0.340760,0.007837,-0.005748,0.249934,0,0);-ms-transform:matrix(0.340760,0.007837,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.340760,0.007837,-0.005748,0.249934,0,0);}
.m3c_c00165{transform:matrix(0.345396,-0.003109,0.002250,0.249990,0,0);-ms-transform:matrix(0.345396,-0.003109,0.002250,0.249990,0,0);-webkit-transform:matrix(0.345396,-0.003109,0.002250,0.249990,0,0);}
.m1d_c00165{transform:matrix(0.346209,0.014902,-0.010751,0.249769,0,0);-ms-transform:matrix(0.346209,0.014902,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.346209,0.014902,-0.010751,0.249769,0,0);}
.m1b_c00165{transform:matrix(0.347913,0.014975,-0.010751,0.249769,0,0);-ms-transform:matrix(0.347913,0.014975,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.347913,0.014975,-0.010751,0.249769,0,0);}
.m17_c00165{transform:matrix(0.352579,0.015176,-0.010751,0.249769,0,0);-ms-transform:matrix(0.352579,0.015176,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.352579,0.015176,-0.010751,0.249769,0,0);}
.mc0_c00165{transform:matrix(0.354565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354565,0.000000,0.000000,0.250000,0,0);}
.m9f_c00165{transform:matrix(0.355714,-0.004269,0.003000,0.249982,0,0);-ms-transform:matrix(0.355714,-0.004269,0.003000,0.249982,0,0);-webkit-transform:matrix(0.355714,-0.004269,0.003000,0.249982,0,0);}
.m70_c00165{transform:matrix(0.368648,0.004424,-0.003000,0.249982,0,0);-ms-transform:matrix(0.368648,0.004424,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.368648,0.004424,-0.003000,0.249982,0,0);}
.m83_c00165{transform:matrix(0.369643,0.004436,-0.003000,0.249982,0,0);-ms-transform:matrix(0.369643,0.004436,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.369643,0.004436,-0.003000,0.249982,0,0);}
.m2d_c00165{transform:matrix(0.373673,0.005231,-0.003500,0.249976,0,0);-ms-transform:matrix(0.373673,0.005231,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.373673,0.005231,-0.003500,0.249976,0,0);}
.m5_c00165{transform:matrix(0.375230,0.016902,-0.011250,0.249747,0,0);-ms-transform:matrix(0.375230,0.016902,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.375230,0.016902,-0.011250,0.249747,0,0);}
.m59_c00165{transform:matrix(0.377795,-0.003400,0.002250,0.249990,0,0);-ms-transform:matrix(0.377795,-0.003400,0.002250,0.249990,0,0);-webkit-transform:matrix(0.377795,-0.003400,0.002250,0.249990,0,0);}
.m1a_c00165{transform:matrix(0.381332,0.016414,-0.010751,0.249769,0,0);-ms-transform:matrix(0.381332,0.016414,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.381332,0.016414,-0.010751,0.249769,0,0);}
.m80_c00165{transform:matrix(0.381972,0.004584,-0.003000,0.249982,0,0);-ms-transform:matrix(0.381972,0.004584,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.381972,0.004584,-0.003000,0.249982,0,0);}
.mbc_c00165{transform:matrix(0.385245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385245,0.000000,0.000000,0.250000,0,0);}
.mb3_c00165{transform:matrix(0.385842,-0.004630,0.003000,0.249982,0,0);-ms-transform:matrix(0.385842,-0.004630,0.003000,0.249982,0,0);-webkit-transform:matrix(0.385842,-0.004630,0.003000,0.249982,0,0);}
.m65_c00165{transform:matrix(0.387089,-0.003484,0.002250,0.249990,0,0);-ms-transform:matrix(0.387089,-0.003484,0.002250,0.249990,0,0);-webkit-transform:matrix(0.387089,-0.003484,0.002250,0.249990,0,0);}
.m95_c00165{transform:matrix(0.395140,0.009088,-0.005748,0.249934,0,0);-ms-transform:matrix(0.395140,0.009088,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.395140,0.009088,-0.005748,0.249934,0,0);}
.m47_c00165{transform:matrix(0.395694,-0.003561,0.002250,0.249990,0,0);-ms-transform:matrix(0.395694,-0.003561,0.002250,0.249990,0,0);-webkit-transform:matrix(0.395694,-0.003561,0.002250,0.249990,0,0);}
.mc1_c00165{transform:matrix(0.397000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397000,0.000000,0.000000,0.250000,0,0);}
.m72_c00165{transform:matrix(0.399511,0.004794,-0.003000,0.249982,0,0);-ms-transform:matrix(0.399511,0.004794,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.399511,0.004794,-0.003000,0.249982,0,0);}
.md8_c00165{transform:matrix(0.401385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401385,0.000000,0.000000,0.250000,0,0);}
.m38_c00165{transform:matrix(0.404276,-0.004851,0.003000,0.249982,0,0);-ms-transform:matrix(0.404276,-0.004851,0.003000,0.249982,0,0);-webkit-transform:matrix(0.404276,-0.004851,0.003000,0.249982,0,0);}
.mb2_c00165{transform:matrix(0.405171,-0.004862,0.003000,0.249982,0,0);-ms-transform:matrix(0.405171,-0.004862,0.003000,0.249982,0,0);-webkit-transform:matrix(0.405171,-0.004862,0.003000,0.249982,0,0);}
.ma1_c00165{transform:matrix(0.408236,-0.004899,0.003000,0.249982,0,0);-ms-transform:matrix(0.408236,-0.004899,0.003000,0.249982,0,0);-webkit-transform:matrix(0.408236,-0.004899,0.003000,0.249982,0,0);}
.m5d_c00165{transform:matrix(0.420773,-0.003787,0.002250,0.249990,0,0);-ms-transform:matrix(0.420773,-0.003787,0.002250,0.249990,0,0);-webkit-transform:matrix(0.420773,-0.003787,0.002250,0.249990,0,0);}
.md1_c00165{transform:matrix(0.424935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424935,0.000000,0.000000,0.250000,0,0);}
.m86_c00165{transform:matrix(0.429829,0.005158,-0.003000,0.249982,0,0);-ms-transform:matrix(0.429829,0.005158,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.429829,0.005158,-0.003000,0.249982,0,0);}
.m3b_c00165{transform:matrix(0.430308,-0.003873,0.002250,0.249990,0,0);-ms-transform:matrix(0.430308,-0.003873,0.002250,0.249990,0,0);-webkit-transform:matrix(0.430308,-0.003873,0.002250,0.249990,0,0);}
.m6e_c00165{transform:matrix(0.431658,-0.003885,0.002250,0.249990,0,0);-ms-transform:matrix(0.431658,-0.003885,0.002250,0.249990,0,0);-webkit-transform:matrix(0.431658,-0.003885,0.002250,0.249990,0,0);}
.m63_c00165{transform:matrix(0.435342,-0.003918,0.002250,0.249990,0,0);-ms-transform:matrix(0.435342,-0.003918,0.002250,0.249990,0,0);-webkit-transform:matrix(0.435342,-0.003918,0.002250,0.249990,0,0);}
.me1_c00165{transform:matrix(0.442515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442515,0.000000,0.000000,0.250000,0,0);}
.m14_c00165{transform:matrix(0.448655,0.019311,-0.010751,0.249769,0,0);-ms-transform:matrix(0.448655,0.019311,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.448655,0.019311,-0.010751,0.249769,0,0);}
.mc_c00165{transform:matrix(0.451837,0.020353,-0.011250,0.249747,0,0);-ms-transform:matrix(0.451837,0.020353,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.451837,0.020353,-0.011250,0.249747,0,0);}
.m8e_c00165{transform:matrix(0.452755,0.010413,-0.005748,0.249934,0,0);-ms-transform:matrix(0.452755,0.010413,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.452755,0.010413,-0.005748,0.249934,0,0);}
.m16_c00165{transform:matrix(0.455114,0.019589,-0.010751,0.249769,0,0);-ms-transform:matrix(0.455114,0.019589,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.455114,0.019589,-0.010751,0.249769,0,0);}
.md0_c00165{transform:matrix(0.458605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458605,0.000000,0.000000,0.250000,0,0);}
.m26_c00165{transform:matrix(0.460948,0.019841,-0.010751,0.249769,0,0);-ms-transform:matrix(0.460948,0.019841,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.460948,0.019841,-0.010751,0.249769,0,0);}
.m8f_c00165{transform:matrix(0.462033,0.010627,-0.005748,0.249934,0,0);-ms-transform:matrix(0.462033,0.010627,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.462033,0.010627,-0.005748,0.249934,0,0);}
.m1_c00165{transform:matrix(0.477256,0.021498,-0.011250,0.249747,0,0);-ms-transform:matrix(0.477256,0.021498,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.477256,0.021498,-0.011250,0.249747,0,0);}
.m36_c00165{transform:matrix(0.477396,-0.005729,0.003000,0.249982,0,0);-ms-transform:matrix(0.477396,-0.005729,0.003000,0.249982,0,0);-webkit-transform:matrix(0.477396,-0.005729,0.003000,0.249982,0,0);}
.m21_c00165{transform:matrix(0.482184,0.020755,-0.010751,0.249769,0,0);-ms-transform:matrix(0.482184,0.020755,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.482184,0.020755,-0.010751,0.249769,0,0);}
.m2c_c00165{transform:matrix(0.483303,0.006766,-0.003500,0.249976,0,0);-ms-transform:matrix(0.483303,0.006766,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.483303,0.006766,-0.003500,0.249976,0,0);}
.m2f_c00165{transform:matrix(0.493617,0.006911,-0.003500,0.249976,0,0);-ms-transform:matrix(0.493617,0.006911,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.493617,0.006911,-0.003500,0.249976,0,0);}
.m84_c00165{transform:matrix(0.503079,0.006037,-0.003000,0.249982,0,0);-ms-transform:matrix(0.503079,0.006037,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.503079,0.006037,-0.003000,0.249982,0,0);}
.mbe_c00165{transform:matrix(0.506695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506695,0.000000,0.000000,0.250000,0,0);}
.mde_c00165{transform:matrix(0.509830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509830,0.000000,0.000000,0.250000,0,0);}
.mdf_c00165{transform:matrix(0.511220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511220,0.000000,0.000000,0.250000,0,0);}
.m8_c00165{transform:matrix(0.513080,0.023112,-0.011250,0.249747,0,0);-ms-transform:matrix(0.513080,0.023112,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.513080,0.023112,-0.011250,0.249747,0,0);}
.m43_c00165{transform:matrix(0.516649,-0.004650,0.002250,0.249990,0,0);-ms-transform:matrix(0.516649,-0.004650,0.002250,0.249990,0,0);-webkit-transform:matrix(0.516649,-0.004650,0.002250,0.249990,0,0);}
.m54_c00165{transform:matrix(0.518594,-0.004667,0.002250,0.249990,0,0);-ms-transform:matrix(0.518594,-0.004667,0.002250,0.249990,0,0);-webkit-transform:matrix(0.518594,-0.004667,0.002250,0.249990,0,0);}
.m8d_c00165{transform:matrix(0.519598,0.011951,-0.005748,0.249934,0,0);-ms-transform:matrix(0.519598,0.011951,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.519598,0.011951,-0.005748,0.249934,0,0);}
.m45_c00165{transform:matrix(0.524609,-0.004721,0.002250,0.249990,0,0);-ms-transform:matrix(0.524609,-0.004721,0.002250,0.249990,0,0);-webkit-transform:matrix(0.524609,-0.004721,0.002250,0.249990,0,0);}
.m66_c00165{transform:matrix(0.530869,-0.004778,0.002250,0.249990,0,0);-ms-transform:matrix(0.530869,-0.004778,0.002250,0.249990,0,0);-webkit-transform:matrix(0.530869,-0.004778,0.002250,0.249990,0,0);}
.mb7_c00165{transform:matrix(0.530940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530940,0.000000,0.000000,0.250000,0,0);}
.m30_c00165{transform:matrix(0.539732,0.007556,-0.003500,0.249976,0,0);-ms-transform:matrix(0.539732,0.007556,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.539732,0.007556,-0.003500,0.249976,0,0);}
.m41_c00165{transform:matrix(0.542648,-0.004884,0.002250,0.249990,0,0);-ms-transform:matrix(0.542648,-0.004884,0.002250,0.249990,0,0);-webkit-transform:matrix(0.542648,-0.004884,0.002250,0.249990,0,0);}
.m24_c00165{transform:matrix(0.558243,0.024028,-0.010751,0.249769,0,0);-ms-transform:matrix(0.558243,0.024028,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.558243,0.024028,-0.010751,0.249769,0,0);}
.ma6_c00165{transform:matrix(0.560070,-0.006721,0.003000,0.249982,0,0);-ms-transform:matrix(0.560070,-0.006721,0.003000,0.249982,0,0);-webkit-transform:matrix(0.560070,-0.006721,0.003000,0.249982,0,0);}
.mc3_c00165{transform:matrix(0.568990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568990,0.000000,0.000000,0.250000,0,0);}
.md7_c00165{transform:matrix(0.579010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579010,0.000000,0.000000,0.250000,0,0);}
.ma7_c00165{transform:matrix(0.579173,-0.006950,0.003000,0.249982,0,0);-ms-transform:matrix(0.579173,-0.006950,0.003000,0.249982,0,0);-webkit-transform:matrix(0.579173,-0.006950,0.003000,0.249982,0,0);}
.m46_c00165{transform:matrix(0.588886,-0.005300,0.002250,0.249990,0,0);-ms-transform:matrix(0.588886,-0.005300,0.002250,0.249990,0,0);-webkit-transform:matrix(0.588886,-0.005300,0.002250,0.249990,0,0);}
.m81_c00165{transform:matrix(0.596582,0.007159,-0.003000,0.249982,0,0);-ms-transform:matrix(0.596582,0.007159,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.596582,0.007159,-0.003000,0.249982,0,0);}
.m33_c00165{transform:matrix(0.600236,0.008403,-0.003500,0.249976,0,0);-ms-transform:matrix(0.600236,0.008403,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.600236,0.008403,-0.003500,0.249976,0,0);}
.m20_c00165{transform:matrix(0.600264,0.025837,-0.010751,0.249769,0,0);-ms-transform:matrix(0.600264,0.025837,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.600264,0.025837,-0.010751,0.249769,0,0);}
.m64_c00165{transform:matrix(0.608205,-0.005474,0.002250,0.249990,0,0);-ms-transform:matrix(0.608205,-0.005474,0.002250,0.249990,0,0);-webkit-transform:matrix(0.608205,-0.005474,0.002250,0.249990,0,0);}
.m8b_c00165{transform:matrix(0.608784,0.014002,-0.005748,0.249934,0,0);-ms-transform:matrix(0.608784,0.014002,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.608784,0.014002,-0.005748,0.249934,0,0);}
.m7f_c00165{transform:matrix(0.609651,0.007316,-0.003000,0.249982,0,0);-ms-transform:matrix(0.609651,0.007316,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.609651,0.007316,-0.003000,0.249982,0,0);}
.m3a_c00165{transform:matrix(0.615011,-0.007380,0.003000,0.249982,0,0);-ms-transform:matrix(0.615011,-0.007380,0.003000,0.249982,0,0);-webkit-transform:matrix(0.615011,-0.007380,0.003000,0.249982,0,0);}
.mb0_c00165{transform:matrix(0.618655,-0.007424,0.003000,0.249982,0,0);-ms-transform:matrix(0.618655,-0.007424,0.003000,0.249982,0,0);-webkit-transform:matrix(0.618655,-0.007424,0.003000,0.249982,0,0);}
.mdd_c00165{transform:matrix(0.619750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.619750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.619750,0.000000,0.000000,0.250000,0,0);}
.m9b_c00165{transform:matrix(0.620526,0.014272,-0.005748,0.249934,0,0);-ms-transform:matrix(0.620526,0.014272,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.620526,0.014272,-0.005748,0.249934,0,0);}
.m55_c00165{transform:matrix(0.620990,-0.005589,0.002250,0.249990,0,0);-ms-transform:matrix(0.620990,-0.005589,0.002250,0.249990,0,0);-webkit-transform:matrix(0.620990,-0.005589,0.002250,0.249990,0,0);}
.mcb_c00165{transform:matrix(0.622320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.622320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.622320,0.000000,0.000000,0.250000,0,0);}
.m88_c00165{transform:matrix(0.623740,0.014346,-0.005748,0.249934,0,0);-ms-transform:matrix(0.623740,0.014346,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.623740,0.014346,-0.005748,0.249934,0,0);}
.me2_c00165{transform:matrix(0.626115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.626115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.626115,0.000000,0.000000,0.250000,0,0);}
.m71_c00165{transform:matrix(0.642504,0.007710,-0.003000,0.249982,0,0);-ms-transform:matrix(0.642504,0.007710,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.642504,0.007710,-0.003000,0.249982,0,0);}
.m7_c00165{transform:matrix(0.644162,0.029016,-0.011250,0.249747,0,0);-ms-transform:matrix(0.644162,0.029016,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.644162,0.029016,-0.011250,0.249747,0,0);}
.m85_c00165{transform:matrix(0.644254,0.007731,-0.003000,0.249982,0,0);-ms-transform:matrix(0.644254,0.007731,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.644254,0.007731,-0.003000,0.249982,0,0);}
.me_c00165{transform:matrix(0.646155,0.029106,-0.011250,0.249747,0,0);-ms-transform:matrix(0.646155,0.029106,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.646155,0.029106,-0.011250,0.249747,0,0);}
.m2b_c00165{transform:matrix(0.651251,0.009118,-0.003500,0.249976,0,0);-ms-transform:matrix(0.651251,0.009118,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.651251,0.009118,-0.003500,0.249976,0,0);}
.mb5_c00165{transform:matrix(0.662555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662555,0.000000,0.000000,0.250000,0,0);}
.mc5_c00165{transform:matrix(0.667765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667765,0.000000,0.000000,0.250000,0,0);}
.m31_c00165{transform:matrix(0.669654,0.009375,-0.003500,0.249976,0,0);-ms-transform:matrix(0.669654,0.009375,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.669654,0.009375,-0.003500,0.249976,0,0);}
.maa_c00165{transform:matrix(0.672367,-0.008068,0.003000,0.249982,0,0);-ms-transform:matrix(0.672367,-0.008068,0.003000,0.249982,0,0);-webkit-transform:matrix(0.672367,-0.008068,0.003000,0.249982,0,0);}
.ma5_c00165{transform:matrix(0.685926,-0.008231,0.003000,0.249982,0,0);-ms-transform:matrix(0.685926,-0.008231,0.003000,0.249982,0,0);-webkit-transform:matrix(0.685926,-0.008231,0.003000,0.249982,0,0);}
.m3f_c00165{transform:matrix(0.697722,-0.006279,0.002250,0.249990,0,0);-ms-transform:matrix(0.697722,-0.006279,0.002250,0.249990,0,0);-webkit-transform:matrix(0.697722,-0.006279,0.002250,0.249990,0,0);}
.m76_c00165{transform:matrix(0.713849,0.008566,-0.003000,0.249982,0,0);-ms-transform:matrix(0.713849,0.008566,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.713849,0.008566,-0.003000,0.249982,0,0);}
.m3d_c00165{transform:matrix(0.717221,-0.006455,0.002250,0.249990,0,0);-ms-transform:matrix(0.717221,-0.006455,0.002250,0.249990,0,0);-webkit-transform:matrix(0.717221,-0.006455,0.002250,0.249990,0,0);}
.m75_c00165{transform:matrix(0.726953,0.008723,-0.003000,0.249982,0,0);-ms-transform:matrix(0.726953,0.008723,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.726953,0.008723,-0.003000,0.249982,0,0);}
.ma2_c00165{transform:matrix(0.747571,-0.008971,0.003000,0.249982,0,0);-ms-transform:matrix(0.747571,-0.008971,0.003000,0.249982,0,0);-webkit-transform:matrix(0.747571,-0.008971,0.003000,0.249982,0,0);}
.m6_c00165{transform:matrix(0.759660,0.034219,-0.011250,0.249747,0,0);-ms-transform:matrix(0.759660,0.034219,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.759660,0.034219,-0.011250,0.249747,0,0);}
.m4c_c00165{transform:matrix(0.763994,-0.006876,0.002250,0.249990,0,0);-ms-transform:matrix(0.763994,-0.006876,0.002250,0.249990,0,0);-webkit-transform:matrix(0.763994,-0.006876,0.002250,0.249990,0,0);}
.ma_c00165{transform:matrix(0.782117,0.035230,-0.011250,0.249747,0,0);-ms-transform:matrix(0.782117,0.035230,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.782117,0.035230,-0.011250,0.249747,0,0);}
.m8c_c00165{transform:matrix(0.788272,0.018130,-0.005748,0.249934,0,0);-ms-transform:matrix(0.788272,0.018130,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.788272,0.018130,-0.005748,0.249934,0,0);}
.mbd_c00165{transform:matrix(0.790530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.790530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.790530,0.000000,0.000000,0.250000,0,0);}
.m12_c00165{transform:matrix(0.791008,0.034047,-0.010751,0.249769,0,0);-ms-transform:matrix(0.791008,0.034047,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.791008,0.034047,-0.010751,0.249769,0,0);}
.m15_c00165{transform:matrix(0.794060,0.034179,-0.010751,0.249769,0,0);-ms-transform:matrix(0.794060,0.034179,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.794060,0.034179,-0.010751,0.249769,0,0);}
.mc9_c00165{transform:matrix(0.802795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.802795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.802795,0.000000,0.000000,0.250000,0,0);}
.m78_c00165{transform:matrix(0.806062,0.009673,-0.003000,0.249982,0,0);-ms-transform:matrix(0.806062,0.009673,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.806062,0.009673,-0.003000,0.249982,0,0);}
.m1f_c00165{transform:matrix(0.812468,0.034971,-0.010751,0.249769,0,0);-ms-transform:matrix(0.812468,0.034971,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.812468,0.034971,-0.010751,0.249769,0,0);}
.m97_c00165{transform:matrix(0.812490,0.018687,-0.005748,0.249934,0,0);-ms-transform:matrix(0.812490,0.018687,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.812490,0.018687,-0.005748,0.249934,0,0);}
.m61_c00165{transform:matrix(0.814257,-0.007328,0.002250,0.249990,0,0);-ms-transform:matrix(0.814257,-0.007328,0.002250,0.249990,0,0);-webkit-transform:matrix(0.814257,-0.007328,0.002250,0.249990,0,0);}
.maf_c00165{transform:matrix(0.820151,-0.009842,0.003000,0.249982,0,0);-ms-transform:matrix(0.820151,-0.009842,0.003000,0.249982,0,0);-webkit-transform:matrix(0.820151,-0.009842,0.003000,0.249982,0,0);}
.md3_c00165{transform:matrix(0.820735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.820735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.820735,0.000000,0.000000,0.250000,0,0);}
.m98_c00165{transform:matrix(0.823422,0.018939,-0.005748,0.249934,0,0);-ms-transform:matrix(0.823422,0.018939,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.823422,0.018939,-0.005748,0.249934,0,0);}
.md9_c00165{transform:matrix(0.854665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.854665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.854665,0.000000,0.000000,0.250000,0,0);}
.m7c_c00165{transform:matrix(0.856968,0.010284,-0.003000,0.249982,0,0);-ms-transform:matrix(0.856968,0.010284,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.856968,0.010284,-0.003000,0.249982,0,0);}
.m2a_c00165{transform:matrix(0.865748,0.037264,-0.010751,0.249769,0,0);-ms-transform:matrix(0.865748,0.037264,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.865748,0.037264,-0.010751,0.249769,0,0);}
.m42_c00165{transform:matrix(0.883619,-0.007953,0.002250,0.249990,0,0);-ms-transform:matrix(0.883619,-0.007953,0.002250,0.249990,0,0);-webkit-transform:matrix(0.883619,-0.007953,0.002250,0.249990,0,0);}
.m4e_c00165{transform:matrix(0.888339,-0.007995,0.002250,0.249990,0,0);-ms-transform:matrix(0.888339,-0.007995,0.002250,0.249990,0,0);-webkit-transform:matrix(0.888339,-0.007995,0.002250,0.249990,0,0);}
.me7_c00165{transform:matrix(0.892860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.892860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.892860,0.000000,0.000000,0.250000,0,0);}
.m67_c00165{transform:matrix(0.951451,-0.008563,0.002250,0.249990,0,0);-ms-transform:matrix(0.951451,-0.008563,0.002250,0.249990,0,0);-webkit-transform:matrix(0.951451,-0.008563,0.002250,0.249990,0,0);}
.m87_c00165{transform:matrix(0.969630,0.011636,-0.003000,0.249982,0,0);-ms-transform:matrix(0.969630,0.011636,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.969630,0.011636,-0.003000,0.249982,0,0);}
.mb9_c00165{transform:matrix(0.971755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.971755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.971755,0.000000,0.000000,0.250000,0,0);}
.m73_c00165{transform:matrix(0.997798,0.011974,-0.003000,0.249982,0,0);-ms-transform:matrix(0.997798,0.011974,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.997798,0.011974,-0.003000,0.249982,0,0);}
.m74_c00165{transform:matrix(1.014337,0.012172,-0.003000,0.249982,0,0);-ms-transform:matrix(1.014337,0.012172,-0.003000,0.249982,0,0);-webkit-transform:matrix(1.014337,0.012172,-0.003000,0.249982,0,0);}
.m92_c00165{transform:matrix(1.046438,0.024068,-0.005748,0.249934,0,0);-ms-transform:matrix(1.046438,0.024068,-0.005748,0.249934,0,0);-webkit-transform:matrix(1.046438,0.024068,-0.005748,0.249934,0,0);}
.ma4_c00165{transform:matrix(1.060484,-0.012726,0.003000,0.249982,0,0);-ms-transform:matrix(1.060484,-0.012726,0.003000,0.249982,0,0);-webkit-transform:matrix(1.060484,-0.012726,0.003000,0.249982,0,0);}
.me4_c00165{transform:matrix(1.086585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.086585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.086585,0.000000,0.000000,0.250000,0,0);}
.m62_c00165{transform:matrix(1.156898,-0.010412,0.002250,0.249990,0,0);-ms-transform:matrix(1.156898,-0.010412,0.002250,0.249990,0,0);-webkit-transform:matrix(1.156898,-0.010412,0.002250,0.249990,0,0);}
.m4b_c00165{transform:matrix(1.210591,-0.010895,0.002250,0.249990,0,0);-ms-transform:matrix(1.210591,-0.010895,0.002250,0.249990,0,0);-webkit-transform:matrix(1.210591,-0.010895,0.002250,0.249990,0,0);}
.m77_c00165{transform:matrix(1.220962,0.014652,-0.003000,0.249982,0,0);-ms-transform:matrix(1.220962,0.014652,-0.003000,0.249982,0,0);-webkit-transform:matrix(1.220962,0.014652,-0.003000,0.249982,0,0);}
.m39_c00165{transform:matrix(1.257999,-0.015096,0.003000,0.249982,0,0);-ms-transform:matrix(1.257999,-0.015096,0.003000,0.249982,0,0);-webkit-transform:matrix(1.257999,-0.015096,0.003000,0.249982,0,0);}
.m93_c00165{transform:matrix(1.417415,0.032601,-0.005748,0.249934,0,0);-ms-transform:matrix(1.417415,0.032601,-0.005748,0.249934,0,0);-webkit-transform:matrix(1.417415,0.032601,-0.005748,0.249934,0,0);}
.mae_c00165{transform:matrix(1.446541,-0.017358,0.003000,0.249982,0,0);-ms-transform:matrix(1.446541,-0.017358,0.003000,0.249982,0,0);-webkit-transform:matrix(1.446541,-0.017358,0.003000,0.249982,0,0);}
.m68_c00165{transform:matrix(1.458151,-0.013123,0.002250,0.249990,0,0);-ms-transform:matrix(1.458151,-0.013123,0.002250,0.249990,0,0);-webkit-transform:matrix(1.458151,-0.013123,0.002250,0.249990,0,0);}
.m9_c00165{transform:matrix(1.560727,0.070303,-0.011250,0.249747,0,0);-ms-transform:matrix(1.560727,0.070303,-0.011250,0.249747,0,0);-webkit-transform:matrix(1.560727,0.070303,-0.011250,0.249747,0,0);}
.m23_c00165{transform:matrix(1.613121,0.069434,-0.010751,0.249769,0,0);-ms-transform:matrix(1.613121,0.069434,-0.010751,0.249769,0,0);-webkit-transform:matrix(1.613121,0.069434,-0.010751,0.249769,0,0);}
.m9a_c00165{transform:matrix(1.667354,0.038349,-0.005748,0.249934,0,0);-ms-transform:matrix(1.667354,0.038349,-0.005748,0.249934,0,0);-webkit-transform:matrix(1.667354,0.038349,-0.005748,0.249934,0,0);}
.m7b_c00165{transform:matrix(1.678424,0.020141,-0.003000,0.249982,0,0);-ms-transform:matrix(1.678424,0.020141,-0.003000,0.249982,0,0);-webkit-transform:matrix(1.678424,0.020141,-0.003000,0.249982,0,0);}
.m1c_c00165{transform:matrix(1.743471,0.075044,-0.010751,0.249769,0,0);-ms-transform:matrix(1.743471,0.075044,-0.010751,0.249769,0,0);-webkit-transform:matrix(1.743471,0.075044,-0.010751,0.249769,0,0);}
.mb_c00165{transform:matrix(1.756014,0.079100,-0.011250,0.249747,0,0);-ms-transform:matrix(1.756014,0.079100,-0.011250,0.249747,0,0);-webkit-transform:matrix(1.756014,0.079100,-0.011250,0.249747,0,0);}
.m48_c00165{transform:matrix(1.820076,-0.016381,0.002250,0.249990,0,0);-ms-transform:matrix(1.820076,-0.016381,0.002250,0.249990,0,0);-webkit-transform:matrix(1.820076,-0.016381,0.002250,0.249990,0,0);}
.v0_c00165{vertical-align:0.000000px;}
.ls0_c00165{letter-spacing:0.000000px;}
.sc__c00165{text-shadow:none;}
.sc0_c00165{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__c00165{-webkit-text-stroke:0px transparent;}
.sc0_c00165{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00165{word-spacing:0.000000px;}
.fc0_c00165{color:transparent;}
.fs1d_c00165{font-size:18.000000px;}
.fs1e_c00165{font-size:24.000000px;}
.fs8_c00165{font-size:24.001728px;}
.fs6_c00165{font-size:29.997750px;}
.fsc_c00165{font-size:30.001215px;}
.fse_c00165{font-size:36.002592px;}
.fs0_c00165{font-size:42.000000px;}
.fsa_c00165{font-size:42.001701px;}
.fs13_c00165{font-size:42.003024px;}
.fs16_c00165{font-size:54.003888px;}
.fs10_c00165{font-size:54.014281px;}
.fs5_c00165{font-size:59.995500px;}
.fs1b_c00165{font-size:60.000000px;}
.fs2_c00165{font-size:60.000780px;}
.fsb_c00165{font-size:60.002430px;}
.fsf_c00165{font-size:60.004320px;}
.fs9_c00165{font-size:66.002673px;}
.fs17_c00165{font-size:66.004752px;}
.fs7_c00165{font-size:66.006468px;}
.fs4_c00165{font-size:71.994600px;}
.fs14_c00165{font-size:72.005184px;}
.fs1_c00165{font-size:84.001092px;}
.fs12_c00165{font-size:84.022215px;}
.fs18_c00165{font-size:102.007344px;}
.fs11_c00165{font-size:102.026975px;}
.fsd_c00165{font-size:120.008640px;}
.fs3_c00165{font-size:131.990100px;}
.fs19_c00165{font-size:138.000000px;}
.fs15_c00165{font-size:138.009936px;}
.fs1c_c00165{font-size:198.000000px;}
.fs1a_c00165{font-size:240.000000px;}
.y0_c00165{bottom:0.000000px;}
.yde_c00165{bottom:1.774500px;}
.ydd_c00165{bottom:6.466500px;}
.ydc_c00165{bottom:22.998000px;}
.ydb_c00165{bottom:45.757500px;}
.yda_c00165{bottom:46.284000px;}
.yd9_c00165{bottom:46.746000px;}
.yd8_c00165{bottom:47.526000px;}
.yd7_c00165{bottom:49.738500px;}
.yd6_c00165{bottom:50.539500px;}
.yd5_c00165{bottom:51.186000px;}
.yd4_c00165{bottom:51.465000px;}
.yd3_c00165{bottom:52.113000px;}
.yd2_c00165{bottom:65.346000px;}
.yd1_c00165{bottom:66.139500px;}
.yd0_c00165{bottom:66.688500px;}
.ycf_c00165{bottom:68.619000px;}
.yce_c00165{bottom:69.541500px;}
.ycd_c00165{bottom:70.329000px;}
.ycc_c00165{bottom:70.821000px;}
.ycb_c00165{bottom:71.097000px;}
.yca_c00165{bottom:71.206500px;}
.yc9_c00165{bottom:71.884500px;}
.yc8_c00165{bottom:72.157500px;}
.yc7_c00165{bottom:72.289500px;}
.yc6_c00165{bottom:72.744000px;}
.yc5_c00165{bottom:73.425000px;}
.yc4_c00165{bottom:74.296500px;}
.yc3_c00165{bottom:75.601500px;}
.yc2_c00165{bottom:79.086000px;}
.yc1_c00165{bottom:103.498500px;}
.yc0_c00165{bottom:103.693500px;}
.ybf_c00165{bottom:103.951500px;}
.ybe_c00165{bottom:104.293500px;}
.ybd_c00165{bottom:104.664000px;}
.ybc_c00165{bottom:105.519000px;}
.ybb_c00165{bottom:105.769500px;}
.yba_c00165{bottom:106.461000px;}
.yb9_c00165{bottom:106.860000px;}
.yb8_c00165{bottom:107.359500px;}
.yb7_c00165{bottom:107.551500px;}
.yb6_c00165{bottom:108.001500px;}
.yb5_c00165{bottom:116.566500px;}
.yaf_c00165{bottom:150.384222px;}
.yb0_c00165{bottom:150.718410px;}
.yb1_c00165{bottom:151.563036px;}
.yb2_c00165{bottom:153.159846px;}
.yb3_c00165{bottom:154.448496px;}
.yb4_c00165{bottom:155.343870px;}
.yac_c00165{bottom:159.939576px;}
.yae_c00165{bottom:159.940230px;}
.yad_c00165{bottom:159.940302px;}
.y9f_c00165{bottom:174.999519px;}
.y9e_c00165{bottom:175.951972px;}
.y9d_c00165{bottom:176.237208px;}
.y9c_c00165{bottom:176.833837px;}
.y9b_c00165{bottom:179.209381px;}
.y9a_c00165{bottom:180.079927px;}
.y99_c00165{bottom:206.564931px;}
.y98_c00165{bottom:207.458350px;}
.y97_c00165{bottom:208.403284px;}
.y96_c00165{bottom:209.339488px;}
.y95_c00165{bottom:212.429979px;}
.y8f_c00165{bottom:215.319029px;}
.y94_c00165{bottom:216.628294px;}
.y90_c00165{bottom:218.989032px;}
.y91_c00165{bottom:219.854257px;}
.y92_c00165{bottom:222.258495px;}
.y93_c00165{bottom:223.596936px;}
.yaa_c00165{bottom:225.589626px;}
.yab_c00165{bottom:225.590268px;}
.y8e_c00165{bottom:255.328688px;}
.y8d_c00165{bottom:256.245387px;}
.y8c_c00165{bottom:258.261049px;}
.y8b_c00165{bottom:259.175403px;}
.y8a_c00165{bottom:259.229292px;}
.ya9_c00165{bottom:260.143050px;}
.y89_c00165{bottom:260.301000px;}
.ya5_c00165{bottom:273.049086px;}
.ya6_c00165{bottom:273.049584px;}
.ya7_c00165{bottom:273.050274px;}
.ya8_c00165{bottom:273.050370px;}
.ya0_c00165{bottom:289.230000px;}
.ya1_c00165{bottom:292.564698px;}
.ya2_c00165{bottom:293.296884px;}
.ya3_c00165{bottom:293.805762px;}
.ya4_c00165{bottom:294.261396px;}
.y88_c00165{bottom:332.947470px;}
.y87_c00165{bottom:335.035776px;}
.y86_c00165{bottom:337.577034px;}
.y85_c00165{bottom:340.432680px;}
.y84_c00165{bottom:341.246442px;}
.y83_c00165{bottom:350.464902px;}
.y76_c00165{bottom:358.674432px;}
.y75_c00165{bottom:358.674558px;}
.y7e_c00165{bottom:358.675008px;}
.y7f_c00165{bottom:358.675062px;}
.y77_c00165{bottom:358.675086px;}
.y80_c00165{bottom:358.675260px;}
.y7a_c00165{bottom:358.675308px;}
.y7b_c00165{bottom:358.675344px;}
.y7c_c00165{bottom:358.675680px;}
.y7d_c00165{bottom:358.675752px;}
.y78_c00165{bottom:358.675782px;}
.y79_c00165{bottom:358.675812px;}
.y81_c00165{bottom:358.675938px;}
.y82_c00165{bottom:358.676688px;}
.y74_c00165{bottom:367.486752px;}
.y73_c00165{bottom:369.129630px;}
.y72_c00165{bottom:370.950726px;}
.y71_c00165{bottom:374.493000px;}
.y5a_c00165{bottom:392.839469px;}
.y70_c00165{bottom:393.801839px;}
.y6e_c00165{bottom:393.801863px;}
.y6c_c00165{bottom:393.802386px;}
.y6d_c00165{bottom:393.802492px;}
.y6f_c00165{bottom:393.802496px;}
.y69_c00165{bottom:393.802714px;}
.y6a_c00165{bottom:393.802827px;}
.y6b_c00165{bottom:393.802860px;}
.y68_c00165{bottom:393.803085px;}
.y65_c00165{bottom:393.803125px;}
.y66_c00165{bottom:393.803172px;}
.y67_c00165{bottom:393.803309px;}
.y5b_c00165{bottom:395.564290px;}
.y5c_c00165{bottom:395.859198px;}
.y5d_c00165{bottom:396.170929px;}
.y5e_c00165{bottom:398.390544px;}
.y5f_c00165{bottom:399.408318px;}
.y60_c00165{bottom:399.871007px;}
.y61_c00165{bottom:400.017441px;}
.y62_c00165{bottom:400.242500px;}
.y63_c00165{bottom:400.566248px;}
.y64_c00165{bottom:401.094274px;}
.y53_c00165{bottom:401.520000px;}
.y54_c00165{bottom:402.117294px;}
.y55_c00165{bottom:402.921921px;}
.y56_c00165{bottom:403.312935px;}
.y57_c00165{bottom:403.980591px;}
.y58_c00165{bottom:404.753655px;}
.y59_c00165{bottom:405.171953px;}
.y46_c00165{bottom:418.232836px;}
.y47_c00165{bottom:419.599378px;}
.y48_c00165{bottom:419.868528px;}
.y49_c00165{bottom:420.750406px;}
.y4a_c00165{bottom:421.631583px;}
.y4b_c00165{bottom:422.106969px;}
.y4c_c00165{bottom:422.975128px;}
.y4d_c00165{bottom:423.858357px;}
.y3c_c00165{bottom:424.981500px;}
.y4e_c00165{bottom:425.280627px;}
.y3d_c00165{bottom:425.421357px;}
.y4f_c00165{bottom:425.669578px;}
.y3e_c00165{bottom:425.904913px;}
.y3f_c00165{bottom:426.059799px;}
.y40_c00165{bottom:426.434154px;}
.y50_c00165{bottom:426.617029px;}
.y41_c00165{bottom:427.183201px;}
.y51_c00165{bottom:427.630066px;}
.y52_c00165{bottom:427.970703px;}
.y42_c00165{bottom:430.770219px;}
.y43_c00165{bottom:431.266357px;}
.y44_c00165{bottom:431.787511px;}
.y45_c00165{bottom:432.385264px;}
.y36_c00165{bottom:444.128625px;}
.y35_c00165{bottom:446.793714px;}
.y37_c00165{bottom:447.120000px;}
.y38_c00165{bottom:447.567282px;}
.y39_c00165{bottom:447.836220px;}
.y34_c00165{bottom:447.992373px;}
.y3a_c00165{bottom:448.244010px;}
.y33_c00165{bottom:448.276167px;}
.y32_c00165{bottom:449.952387px;}
.y31_c00165{bottom:450.432867px;}
.y3b_c00165{bottom:450.901278px;}
.y30_c00165{bottom:451.858452px;}
.y2f_c00165{bottom:452.517705px;}
.y2e_c00165{bottom:452.762208px;}
.y2d_c00165{bottom:453.968868px;}
.y2c_c00165{bottom:455.224500px;}
.y25_c00165{bottom:467.338313px;}
.y2b_c00165{bottom:471.202556px;}
.y2a_c00165{bottom:472.805745px;}
.y29_c00165{bottom:473.268246px;}
.y28_c00165{bottom:473.777207px;}
.y24_c00165{bottom:474.304533px;}
.y23_c00165{bottom:475.881892px;}
.y27_c00165{bottom:476.500186px;}
.y26_c00165{bottom:477.767209px;}
.y22_c00165{bottom:480.314572px;}
.y21_c00165{bottom:484.224149px;}
.y20_c00165{bottom:487.033560px;}
.y1f_c00165{bottom:488.205627px;}
.y1e_c00165{bottom:489.750751px;}
.y1d_c00165{bottom:493.869585px;}
.y1c_c00165{bottom:496.070638px;}
.y1b_c00165{bottom:498.805181px;}
.y13_c00165{bottom:499.511793px;}
.y1a_c00165{bottom:500.813295px;}
.y19_c00165{bottom:501.826698px;}
.y12_c00165{bottom:506.602213px;}
.y11_c00165{bottom:507.938138px;}
.y10_c00165{bottom:516.292500px;}
.y18_c00165{bottom:516.996792px;}
.y17_c00165{bottom:519.547449px;}
.y16_c00165{bottom:526.950117px;}
.y15_c00165{bottom:529.742823px;}
.y14_c00165{bottom:539.158986px;}
.yf_c00165{bottom:539.753489px;}
.ye_c00165{bottom:540.440638px;}
.yd_c00165{bottom:542.334014px;}
.yc_c00165{bottom:547.421219px;}
.yb_c00165{bottom:552.956421px;}
.ya_c00165{bottom:560.047904px;}
.y9_c00165{bottom:562.735686px;}
.y8_c00165{bottom:574.468793px;}
.y7_c00165{bottom:577.658977px;}
.y6_c00165{bottom:580.110645px;}
.y5_c00165{bottom:582.900150px;}
.y4_c00165{bottom:591.934012px;}
.y3_c00165{bottom:593.573790px;}
.y2_c00165{bottom:599.061000px;}
.y1_c00165{bottom:675.000000px;}
.h1e_c00165{height:18.000000px;}
.h1f_c00165{height:24.000000px;}
.h9_c00165{height:24.001728px;}
.h7_c00165{height:29.997750px;}
.hd_c00165{height:30.001215px;}
.hf_c00165{height:36.002592px;}
.h1_c00165{height:42.000000px;}
.hb_c00165{height:42.001701px;}
.h14_c00165{height:42.003024px;}
.h17_c00165{height:54.003888px;}
.h11_c00165{height:54.014281px;}
.h6_c00165{height:59.995500px;}
.h1c_c00165{height:60.000000px;}
.h3_c00165{height:60.000780px;}
.hc_c00165{height:60.002430px;}
.h10_c00165{height:60.004320px;}
.ha_c00165{height:66.002673px;}
.h18_c00165{height:66.004752px;}
.h8_c00165{height:66.006468px;}
.h5_c00165{height:71.994600px;}
.h15_c00165{height:72.005184px;}
.h2_c00165{height:84.001092px;}
.h13_c00165{height:84.022215px;}
.h19_c00165{height:102.007344px;}
.h12_c00165{height:102.026975px;}
.he_c00165{height:120.008640px;}
.h4_c00165{height:131.990100px;}
.h1a_c00165{height:138.000000px;}
.h16_c00165{height:138.009936px;}
.h1d_c00165{height:198.000000px;}
.h1b_c00165{height:240.000000px;}
.h0_c00165{height:682.500000px;}
.w1_c00165{width:945.750000px;}
.w0_c00165{width:946.050000px;}
.x0_c00165{left:0.000000px;}
.xa5_c00165{left:7.368000px;}
.x93_c00165{left:27.852852px;}
.xb4_c00165{left:32.131500px;}
.xa2_c00165{left:38.610000px;}
.x2b_c00165{left:46.392000px;}
.x65_c00165{left:48.655500px;}
.x13_c00165{left:57.287127px;}
.x69_c00165{left:59.670792px;}
.x94_c00165{left:75.579714px;}
.x74_c00165{left:82.213536px;}
.x19_c00165{left:88.958940px;}
.x53_c00165{left:103.521397px;}
.x39_c00165{left:105.459000px;}
.xa6_c00165{left:116.176500px;}
.x42_c00165{left:122.800596px;}
.x1a_c00165{left:136.728688px;}
.x5a_c00165{left:154.428348px;}
.x3a_c00165{left:159.187500px;}
.x3b_c00165{left:176.397000px;}
.x6a_c00165{left:185.769954px;}
.xb5_c00165{left:187.651500px;}
.xa7_c00165{left:188.857500px;}
.x5b_c00165{left:196.280236px;}
.xb0_c00165{left:197.371500px;}
.x1b_c00165{left:201.758870px;}
.x10_c00165{left:216.415500px;}
.x3c_c00165{left:217.992000px;}
.x2c_c00165{left:222.270000px;}
.x9b_c00165{left:225.670500px;}
.x43_c00165{left:236.635518px;}
.x2d_c00165{left:239.734500px;}
.xa8_c00165{left:245.556000px;}
.x5c_c00165{left:251.093178px;}
.x1c_c00165{left:254.115720px;}
.x9_c00165{left:257.703015px;}
.x44_c00165{left:259.040410px;}
.x81_c00165{left:269.397245px;}
.x14_c00165{left:271.095936px;}
.x2_c00165{left:282.936000px;}
.xa3_c00165{left:284.580000px;}
.x2e_c00165{left:286.824000px;}
.x9c_c00165{left:290.010000px;}
.xa9_c00165{left:294.448500px;}
.xb1_c00165{left:297.501000px;}
.x3d_c00165{left:301.219500px;}
.xb6_c00165{left:310.771500px;}
.x97_c00165{left:315.360000px;}
.xa_c00165{left:317.371786px;}
.x45_c00165{left:332.524926px;}
.x15_c00165{left:334.512744px;}
.x8c_c00165{left:336.414006px;}
.x8f_c00165{left:341.275062px;}
.x66_c00165{left:343.845000px;}
.x5d_c00165{left:350.726751px;}
.x1d_c00165{left:352.073861px;}
.xaa_c00165{left:373.606500px;}
.x54_c00165{left:378.041956px;}
.xab_c00165{left:382.746000px;}
.x1e_c00165{left:388.808139px;}
.x6b_c00165{left:389.905848px;}
.x75_c00165{left:400.103700px;}
.x3_c00165{left:404.752062px;}
.x46_c00165{left:405.931441px;}
.x11_c00165{left:410.508712px;}
.x89_c00165{left:413.724000px;}
.x1f_c00165{left:416.700945px;}
.x2f_c00165{left:422.971500px;}
.x95_c00165{left:424.428648px;}
.x76_c00165{left:428.161476px;}
.x6c_c00165{left:430.408680px;}
.x82_c00165{left:432.085718px;}
.x7e_c00165{left:434.524329px;}
.x4_c00165{left:441.155122px;}
.x8d_c00165{left:443.611932px;}
.x47_c00165{left:445.584375px;}
.xac_c00165{left:446.724000px;}
.x86_c00165{left:457.241568px;}
.x98_c00165{left:459.540000px;}
.x4d_c00165{left:470.476500px;}
.xb_c00165{left:474.802698px;}
.x87_c00165{left:476.233553px;}
.x6d_c00165{left:479.012682px;}
.x83_c00165{left:481.338237px;}
.x20_c00165{left:483.505415px;}
.x7f_c00165{left:485.452646px;}
.x67_c00165{left:495.603000px;}
.x16_c00165{left:502.589268px;}
.xb7_c00165{left:504.091500px;}
.xad_c00165{left:512.370000px;}
.x48_c00165{left:517.877917px;}
.x7a_c00165{left:525.306000px;}
.x77_c00165{left:526.611888px;}
.x84_c00165{left:531.100826px;}
.x4e_c00165{left:536.842500px;}
.x88_c00165{left:539.699714px;}
.x30_c00165{left:542.701500px;}
.x9d_c00165{left:544.519500px;}
.x5e_c00165{left:546.755127px;}
.x34_c00165{left:558.919500px;}
.x17_c00165{left:560.487294px;}
.x31_c00165{left:562.972500px;}
.xa4_c00165{left:564.300000px;}
.x6e_c00165{left:566.769318px;}
.x7b_c00165{left:571.902000px;}
.x7c_c00165{left:574.245000px;}
.x21_c00165{left:576.497332px;}
.x85_c00165{left:578.101638px;}
.x9e_c00165{left:580.239000px;}
.xae_c00165{left:589.285500px;}
.x49_c00165{left:591.512433px;}
.x35_c00165{left:596.193000px;}
.xc_c00165{left:597.684193px;}
.x91_c00165{left:600.225114px;}
.x12_c00165{left:606.274251px;}
.x55_c00165{left:608.131812px;}
.x99_c00165{left:609.660000px;}
.x5f_c00165{left:612.097419px;}
.x6f_c00165{left:613.212996px;}
.x78_c00165{left:614.240514px;}
.x36_c00165{left:618.604500px;}
.x90_c00165{left:620.206296px;}
.x4f_c00165{left:626.245500px;}
.x68_c00165{left:632.509500px;}
.x5_c00165{left:641.706870px;}
.x32_c00165{left:648.591000px;}
.x37_c00165{left:652.587000px;}
.x92_c00165{left:660.169236px;}
.x25_c00165{left:662.675041px;}
.x70_c00165{left:667.216272px;}
.x50_c00165{left:669.691500px;}
.xb2_c00165{left:671.605500px;}
.xb9_c00165{left:679.320000px;}
.x22_c00165{left:681.921322px;}
.xba_c00165{left:683.370000px;}
.x79_c00165{left:686.251326px;}
.x71_c00165{left:692.328390px;}
.x26_c00165{left:695.145656px;}
.x3e_c00165{left:699.777000px;}
.x7d_c00165{left:701.637000px;}
.x6_c00165{left:703.633881px;}
.x80_c00165{left:705.625591px;}
.xbb_c00165{left:707.130000px;}
.xd_c00165{left:710.620144px;}
.x72_c00165{left:716.900436px;}
.x23_c00165{left:719.439381px;}
.xb3_c00165{left:729.399000px;}
.x96_c00165{left:736.324350px;}
.x4a_c00165{left:742.421856px;}
.x51_c00165{left:743.875500px;}
.x60_c00165{left:748.722489px;}
.x9a_c00165{left:750.330000px;}
.xe_c00165{left:752.653069px;}
.x3f_c00165{left:754.903500px;}
.x56_c00165{left:756.062152px;}
.x7_c00165{left:758.060900px;}
.x27_c00165{left:764.894846px;}
.xf_c00165{left:767.907799px;}
.x57_c00165{left:776.568288px;}
.x28_c00165{left:777.940047px;}
.x61_c00165{left:784.903918px;}
.x29_c00165{left:789.801240px;}
.x8a_c00165{left:795.037500px;}
.x1_c00165{left:797.850000px;}
.x62_c00165{left:800.835214px;}
.x9f_c00165{left:804.268500px;}
.x58_c00165{left:806.039761px;}
.x40_c00165{left:812.809500px;}
.x73_c00165{left:815.727174px;}
.x8e_c00165{left:817.048698px;}
.xb8_c00165{left:818.911500px;}
.x4b_c00165{left:821.358723px;}
.x8_c00165{left:828.883006px;}
.x2a_c00165{left:830.849188px;}
.x8b_c00165{left:833.007000px;}
.x33_c00165{left:838.954500px;}
.xa0_c00165{left:841.195500px;}
.x59_c00165{left:854.041897px;}
.x63_c00165{left:858.076845px;}
.xaf_c00165{left:861.981000px;}
.xa1_c00165{left:869.041500px;}
.x38_c00165{left:874.026000px;}
.x52_c00165{left:876.249000px;}
.x41_c00165{left:879.226500px;}
.x24_c00165{left:885.119138px;}
.x18_c00165{left:904.940211px;}
.x64_c00165{left:928.009515px;}
.x4c_c00165{left:934.097172px;}
@media print{
.v0_c00165{vertical-align:0.000000pt;}
.ls0_c00165{letter-spacing:0.000000pt;}
.ws0_c00165{word-spacing:0.000000pt;}
.fs1d_c00165{font-size:16.000000pt;}
.fs1e_c00165{font-size:21.333333pt;}
.fs8_c00165{font-size:21.334869pt;}
.fs6_c00165{font-size:26.664667pt;}
.fsc_c00165{font-size:26.667747pt;}
.fse_c00165{font-size:32.002304pt;}
.fs0_c00165{font-size:37.333333pt;}
.fsa_c00165{font-size:37.334845pt;}
.fs13_c00165{font-size:37.336021pt;}
.fs16_c00165{font-size:48.003456pt;}
.fs10_c00165{font-size:48.012694pt;}
.fs5_c00165{font-size:53.329333pt;}
.fs1b_c00165{font-size:53.333333pt;}
.fs2_c00165{font-size:53.334027pt;}
.fsb_c00165{font-size:53.335493pt;}
.fsf_c00165{font-size:53.337173pt;}
.fs9_c00165{font-size:58.669043pt;}
.fs17_c00165{font-size:58.670891pt;}
.fs7_c00165{font-size:58.672416pt;}
.fs4_c00165{font-size:63.995200pt;}
.fs14_c00165{font-size:64.004608pt;}
.fs1_c00165{font-size:74.667637pt;}
.fs12_c00165{font-size:74.686413pt;}
.fs18_c00165{font-size:90.673194pt;}
.fs11_c00165{font-size:90.690645pt;}
.fsd_c00165{font-size:106.674346pt;}
.fs3_c00165{font-size:117.324533pt;}
.fs19_c00165{font-size:122.666667pt;}
.fs15_c00165{font-size:122.675498pt;}
.fs1c_c00165{font-size:176.000000pt;}
.fs1a_c00165{font-size:213.333333pt;}
.y0_c00165{bottom:0.000000pt;}
.yde_c00165{bottom:1.577333pt;}
.ydd_c00165{bottom:5.748000pt;}
.ydc_c00165{bottom:20.442667pt;}
.ydb_c00165{bottom:40.673333pt;}
.yda_c00165{bottom:41.141333pt;}
.yd9_c00165{bottom:41.552000pt;}
.yd8_c00165{bottom:42.245333pt;}
.yd7_c00165{bottom:44.212000pt;}
.yd6_c00165{bottom:44.924000pt;}
.yd5_c00165{bottom:45.498667pt;}
.yd4_c00165{bottom:45.746667pt;}
.yd3_c00165{bottom:46.322667pt;}
.yd2_c00165{bottom:58.085333pt;}
.yd1_c00165{bottom:58.790667pt;}
.yd0_c00165{bottom:59.278667pt;}
.ycf_c00165{bottom:60.994667pt;}
.yce_c00165{bottom:61.814667pt;}
.ycd_c00165{bottom:62.514667pt;}
.ycc_c00165{bottom:62.952000pt;}
.ycb_c00165{bottom:63.197333pt;}
.yca_c00165{bottom:63.294667pt;}
.yc9_c00165{bottom:63.897333pt;}
.yc8_c00165{bottom:64.140000pt;}
.yc7_c00165{bottom:64.257333pt;}
.yc6_c00165{bottom:64.661333pt;}
.yc5_c00165{bottom:65.266667pt;}
.yc4_c00165{bottom:66.041333pt;}
.yc3_c00165{bottom:67.201333pt;}
.yc2_c00165{bottom:70.298667pt;}
.yc1_c00165{bottom:91.998667pt;}
.yc0_c00165{bottom:92.172000pt;}
.ybf_c00165{bottom:92.401333pt;}
.ybe_c00165{bottom:92.705333pt;}
.ybd_c00165{bottom:93.034667pt;}
.ybc_c00165{bottom:93.794667pt;}
.ybb_c00165{bottom:94.017333pt;}
.yba_c00165{bottom:94.632000pt;}
.yb9_c00165{bottom:94.986667pt;}
.yb8_c00165{bottom:95.430667pt;}
.yb7_c00165{bottom:95.601333pt;}
.yb6_c00165{bottom:96.001333pt;}
.yb5_c00165{bottom:103.614667pt;}
.yaf_c00165{bottom:133.674864pt;}
.yb0_c00165{bottom:133.971920pt;}
.yb1_c00165{bottom:134.722699pt;}
.yb2_c00165{bottom:136.142085pt;}
.yb3_c00165{bottom:137.287552pt;}
.yb4_c00165{bottom:138.083440pt;}
.yac_c00165{bottom:142.168512pt;}
.yae_c00165{bottom:142.169093pt;}
.yad_c00165{bottom:142.169157pt;}
.y9f_c00165{bottom:155.555128pt;}
.y9e_c00165{bottom:156.401753pt;}
.y9d_c00165{bottom:156.655296pt;}
.y9c_c00165{bottom:157.185633pt;}
.y9b_c00165{bottom:159.297228pt;}
.y9a_c00165{bottom:160.071047pt;}
.y99_c00165{bottom:183.613272pt;}
.y98_c00165{bottom:184.407423pt;}
.y97_c00165{bottom:185.247364pt;}
.y96_c00165{bottom:186.079545pt;}
.y95_c00165{bottom:188.826648pt;}
.y8f_c00165{bottom:191.394692pt;}
.y94_c00165{bottom:192.558484pt;}
.y90_c00165{bottom:194.656917pt;}
.y91_c00165{bottom:195.426007pt;}
.y92_c00165{bottom:197.563107pt;}
.y93_c00165{bottom:198.752832pt;}
.yaa_c00165{bottom:200.524112pt;}
.yab_c00165{bottom:200.524683pt;}
.y8e_c00165{bottom:226.958833pt;}
.y8d_c00165{bottom:227.773677pt;}
.y8c_c00165{bottom:229.565377pt;}
.y8b_c00165{bottom:230.378136pt;}
.y8a_c00165{bottom:230.426037pt;}
.ya9_c00165{bottom:231.238267pt;}
.y89_c00165{bottom:231.378667pt;}
.ya5_c00165{bottom:242.710299pt;}
.ya6_c00165{bottom:242.710741pt;}
.ya7_c00165{bottom:242.711355pt;}
.ya8_c00165{bottom:242.711440pt;}
.ya0_c00165{bottom:257.093333pt;}
.ya1_c00165{bottom:260.057509pt;}
.ya2_c00165{bottom:260.708341pt;}
.ya3_c00165{bottom:261.160677pt;}
.ya4_c00165{bottom:261.565685pt;}
.y88_c00165{bottom:295.953307pt;}
.y87_c00165{bottom:297.809579pt;}
.y86_c00165{bottom:300.068475pt;}
.y85_c00165{bottom:302.606827pt;}
.y84_c00165{bottom:303.330171pt;}
.y83_c00165{bottom:311.524357pt;}
.y76_c00165{bottom:318.821717pt;}
.y75_c00165{bottom:318.821829pt;}
.y7e_c00165{bottom:318.822229pt;}
.y7f_c00165{bottom:318.822277pt;}
.y77_c00165{bottom:318.822299pt;}
.y80_c00165{bottom:318.822453pt;}
.y7a_c00165{bottom:318.822496pt;}
.y7b_c00165{bottom:318.822528pt;}
.y7c_c00165{bottom:318.822827pt;}
.y7d_c00165{bottom:318.822891pt;}
.y78_c00165{bottom:318.822917pt;}
.y79_c00165{bottom:318.822944pt;}
.y81_c00165{bottom:318.823056pt;}
.y82_c00165{bottom:318.823723pt;}
.y74_c00165{bottom:326.654891pt;}
.y73_c00165{bottom:328.115227pt;}
.y72_c00165{bottom:329.733979pt;}
.y71_c00165{bottom:332.882667pt;}
.y5a_c00165{bottom:349.190639pt;}
.y70_c00165{bottom:350.046079pt;}
.y6e_c00165{bottom:350.046100pt;}
.y6c_c00165{bottom:350.046565pt;}
.y6d_c00165{bottom:350.046660pt;}
.y6f_c00165{bottom:350.046663pt;}
.y69_c00165{bottom:350.046857pt;}
.y6a_c00165{bottom:350.046957pt;}
.y6b_c00165{bottom:350.046987pt;}
.y68_c00165{bottom:350.047187pt;}
.y65_c00165{bottom:350.047223pt;}
.y66_c00165{bottom:350.047264pt;}
.y67_c00165{bottom:350.047385pt;}
.y5b_c00165{bottom:351.612703pt;}
.y5c_c00165{bottom:351.874843pt;}
.y5d_c00165{bottom:352.151937pt;}
.y5e_c00165{bottom:354.124928pt;}
.y5f_c00165{bottom:355.029616pt;}
.y60_c00165{bottom:355.440895pt;}
.y61_c00165{bottom:355.571059pt;}
.y62_c00165{bottom:355.771111pt;}
.y63_c00165{bottom:356.058887pt;}
.y64_c00165{bottom:356.528244pt;}
.y53_c00165{bottom:356.906667pt;}
.y54_c00165{bottom:357.437595pt;}
.y55_c00165{bottom:358.152819pt;}
.y56_c00165{bottom:358.500387pt;}
.y57_c00165{bottom:359.093859pt;}
.y58_c00165{bottom:359.781027pt;}
.y59_c00165{bottom:360.152847pt;}
.y46_c00165{bottom:371.762521pt;}
.y47_c00165{bottom:372.977225pt;}
.y48_c00165{bottom:373.216469pt;}
.y49_c00165{bottom:374.000361pt;}
.y4a_c00165{bottom:374.783629pt;}
.y4b_c00165{bottom:375.206195pt;}
.y4c_c00165{bottom:375.977892pt;}
.y4d_c00165{bottom:376.762984pt;}
.y3c_c00165{bottom:377.761333pt;}
.y4e_c00165{bottom:378.027224pt;}
.y3d_c00165{bottom:378.152317pt;}
.y4f_c00165{bottom:378.372959pt;}
.y3e_c00165{bottom:378.582145pt;}
.y3f_c00165{bottom:378.719821pt;}
.y40_c00165{bottom:379.052581pt;}
.y50_c00165{bottom:379.215137pt;}
.y41_c00165{bottom:379.718401pt;}
.y51_c00165{bottom:380.115615pt;}
.y52_c00165{bottom:380.418403pt;}
.y42_c00165{bottom:382.906861pt;}
.y43_c00165{bottom:383.347873pt;}
.y44_c00165{bottom:383.811121pt;}
.y45_c00165{bottom:384.342457pt;}
.y36_c00165{bottom:394.781000pt;}
.y35_c00165{bottom:397.149968pt;}
.y37_c00165{bottom:397.440000pt;}
.y38_c00165{bottom:397.837584pt;}
.y39_c00165{bottom:398.076640pt;}
.y34_c00165{bottom:398.215443pt;}
.y3a_c00165{bottom:398.439120pt;}
.y33_c00165{bottom:398.467704pt;}
.y32_c00165{bottom:399.957677pt;}
.y31_c00165{bottom:400.384771pt;}
.y3b_c00165{bottom:400.801136pt;}
.y30_c00165{bottom:401.651957pt;}
.y2f_c00165{bottom:402.237960pt;}
.y2e_c00165{bottom:402.455296pt;}
.y2d_c00165{bottom:403.527883pt;}
.y2c_c00165{bottom:404.644000pt;}
.y25_c00165{bottom:415.411833pt;}
.y2b_c00165{bottom:418.846716pt;}
.y2a_c00165{bottom:420.271773pt;}
.y29_c00165{bottom:420.682885pt;}
.y28_c00165{bottom:421.135295pt;}
.y24_c00165{bottom:421.604029pt;}
.y23_c00165{bottom:423.006127pt;}
.y27_c00165{bottom:423.555721pt;}
.y26_c00165{bottom:424.681964pt;}
.y22_c00165{bottom:426.946287pt;}
.y21_c00165{bottom:430.421465pt;}
.y20_c00165{bottom:432.918720pt;}
.y1f_c00165{bottom:433.960557pt;}
.y1e_c00165{bottom:435.334001pt;}
.y1d_c00165{bottom:438.995187pt;}
.y1c_c00165{bottom:440.951679pt;}
.y1b_c00165{bottom:443.382383pt;}
.y13_c00165{bottom:444.010483pt;}
.y1a_c00165{bottom:445.167373pt;}
.y19_c00165{bottom:446.068176pt;}
.y12_c00165{bottom:450.313079pt;}
.y11_c00165{bottom:451.500567pt;}
.y10_c00165{bottom:458.926667pt;}
.y18_c00165{bottom:459.552704pt;}
.y17_c00165{bottom:461.819955pt;}
.y16_c00165{bottom:468.400104pt;}
.y15_c00165{bottom:470.882509pt;}
.y14_c00165{bottom:479.252432pt;}
.yf_c00165{bottom:479.780879pt;}
.ye_c00165{bottom:480.391679pt;}
.yd_c00165{bottom:482.074679pt;}
.yc_c00165{bottom:486.596639pt;}
.yb_c00165{bottom:491.516819pt;}
.ya_c00165{bottom:497.820359pt;}
.y9_c00165{bottom:500.209499pt;}
.y8_c00165{bottom:510.638927pt;}
.y7_c00165{bottom:513.474647pt;}
.y6_c00165{bottom:515.653907pt;}
.y5_c00165{bottom:518.133467pt;}
.y4_c00165{bottom:526.163567pt;}
.y3_c00165{bottom:527.621147pt;}
.y2_c00165{bottom:532.498667pt;}
.y1_c00165{bottom:600.000000pt;}
.h1e_c00165{height:16.000000pt;}
.h1f_c00165{height:21.333333pt;}
.h9_c00165{height:21.334869pt;}
.h7_c00165{height:26.664667pt;}
.hd_c00165{height:26.667747pt;}
.hf_c00165{height:32.002304pt;}
.h1_c00165{height:37.333333pt;}
.hb_c00165{height:37.334845pt;}
.h14_c00165{height:37.336021pt;}
.h17_c00165{height:48.003456pt;}
.h11_c00165{height:48.012694pt;}
.h6_c00165{height:53.329333pt;}
.h1c_c00165{height:53.333333pt;}
.h3_c00165{height:53.334027pt;}
.hc_c00165{height:53.335493pt;}
.h10_c00165{height:53.337173pt;}
.ha_c00165{height:58.669043pt;}
.h18_c00165{height:58.670891pt;}
.h8_c00165{height:58.672416pt;}
.h5_c00165{height:63.995200pt;}
.h15_c00165{height:64.004608pt;}
.h2_c00165{height:74.667637pt;}
.h13_c00165{height:74.686413pt;}
.h19_c00165{height:90.673194pt;}
.h12_c00165{height:90.690645pt;}
.he_c00165{height:106.674346pt;}
.h4_c00165{height:117.324533pt;}
.h1a_c00165{height:122.666667pt;}
.h16_c00165{height:122.675498pt;}
.h1d_c00165{height:176.000000pt;}
.h1b_c00165{height:213.333333pt;}
.h0_c00165{height:606.666667pt;}
.w1_c00165{width:840.666667pt;}
.w0_c00165{width:840.933333pt;}
.x0_c00165{left:0.000000pt;}
.xa5_c00165{left:6.549333pt;}
.x93_c00165{left:24.758091pt;}
.xb4_c00165{left:28.561333pt;}
.xa2_c00165{left:34.320000pt;}
.x2b_c00165{left:41.237333pt;}
.x65_c00165{left:43.249333pt;}
.x13_c00165{left:50.921891pt;}
.x69_c00165{left:53.040704pt;}
.x94_c00165{left:67.181968pt;}
.x74_c00165{left:73.078699pt;}
.x19_c00165{left:79.074613pt;}
.x53_c00165{left:92.019020pt;}
.x39_c00165{left:93.741333pt;}
.xa6_c00165{left:103.268000pt;}
.x42_c00165{left:109.156085pt;}
.x1a_c00165{left:121.536612pt;}
.x5a_c00165{left:137.269643pt;}
.x3a_c00165{left:141.500000pt;}
.x3b_c00165{left:156.797333pt;}
.x6a_c00165{left:165.128848pt;}
.xb5_c00165{left:166.801333pt;}
.xa7_c00165{left:167.873333pt;}
.x5b_c00165{left:174.471321pt;}
.xb0_c00165{left:175.441333pt;}
.x1b_c00165{left:179.341217pt;}
.x10_c00165{left:192.369333pt;}
.x3c_c00165{left:193.770667pt;}
.x2c_c00165{left:197.573333pt;}
.x9b_c00165{left:200.596000pt;}
.x43_c00165{left:210.342683pt;}
.x2d_c00165{left:213.097333pt;}
.xa8_c00165{left:218.272000pt;}
.x5c_c00165{left:223.193936pt;}
.x1c_c00165{left:225.880640pt;}
.x9_c00165{left:229.069347pt;}
.x44_c00165{left:230.258143pt;}
.x81_c00165{left:239.464217pt;}
.x14_c00165{left:240.974165pt;}
.x2_c00165{left:251.498667pt;}
.xa3_c00165{left:252.960000pt;}
.x2e_c00165{left:254.954667pt;}
.x9c_c00165{left:257.786667pt;}
.xa9_c00165{left:261.732000pt;}
.xb1_c00165{left:264.445333pt;}
.x3d_c00165{left:267.750667pt;}
.xb6_c00165{left:276.241333pt;}
.x97_c00165{left:280.320000pt;}
.xa_c00165{left:282.108255pt;}
.x45_c00165{left:295.577712pt;}
.x15_c00165{left:297.344661pt;}
.x8c_c00165{left:299.034672pt;}
.x8f_c00165{left:303.355611pt;}
.x66_c00165{left:305.640000pt;}
.x5d_c00165{left:311.757112pt;}
.x1d_c00165{left:312.954543pt;}
.xaa_c00165{left:332.094667pt;}
.x54_c00165{left:336.037295pt;}
.xab_c00165{left:340.218667pt;}
.x1e_c00165{left:345.607235pt;}
.x6b_c00165{left:346.582976pt;}
.x75_c00165{left:355.647733pt;}
.x3_c00165{left:359.779611pt;}
.x46_c00165{left:360.827948pt;}
.x11_c00165{left:364.896633pt;}
.x89_c00165{left:367.754667pt;}
.x1f_c00165{left:370.400840pt;}
.x2f_c00165{left:375.974667pt;}
.x95_c00165{left:377.269909pt;}
.x76_c00165{left:380.587979pt;}
.x6c_c00165{left:382.585493pt;}
.x82_c00165{left:384.076193pt;}
.x7e_c00165{left:386.243848pt;}
.x4_c00165{left:392.137887pt;}
.x8d_c00165{left:394.321717pt;}
.x47_c00165{left:396.075000pt;}
.xac_c00165{left:397.088000pt;}
.x86_c00165{left:406.436949pt;}
.x98_c00165{left:408.480000pt;}
.x4d_c00165{left:418.201333pt;}
.xb_c00165{left:422.046843pt;}
.x87_c00165{left:423.318713pt;}
.x6d_c00165{left:425.789051pt;}
.x83_c00165{left:427.856211pt;}
.x20_c00165{left:429.782591pt;}
.x7f_c00165{left:431.513463pt;}
.x67_c00165{left:440.536000pt;}
.x16_c00165{left:446.746016pt;}
.xb7_c00165{left:448.081333pt;}
.xad_c00165{left:455.440000pt;}
.x48_c00165{left:460.335927pt;}
.x7a_c00165{left:466.938667pt;}
.x77_c00165{left:468.099456pt;}
.x84_c00165{left:472.089623pt;}
.x4e_c00165{left:477.193333pt;}
.x88_c00165{left:479.733079pt;}
.x30_c00165{left:482.401333pt;}
.x9d_c00165{left:484.017333pt;}
.x5e_c00165{left:486.004557pt;}
.x34_c00165{left:496.817333pt;}
.x17_c00165{left:498.210928pt;}
.x31_c00165{left:500.420000pt;}
.xa4_c00165{left:501.600000pt;}
.x6e_c00165{left:503.794949pt;}
.x7b_c00165{left:508.357333pt;}
.x7c_c00165{left:510.440000pt;}
.x21_c00165{left:512.442073pt;}
.x85_c00165{left:513.868123pt;}
.x9e_c00165{left:515.768000pt;}
.xae_c00165{left:523.809333pt;}
.x49_c00165{left:525.788829pt;}
.x35_c00165{left:529.949333pt;}
.xc_c00165{left:531.274839pt;}
.x91_c00165{left:533.533435pt;}
.x12_c00165{left:538.910445pt;}
.x55_c00165{left:540.561611pt;}
.x99_c00165{left:541.920000pt;}
.x5f_c00165{left:544.086595pt;}
.x6f_c00165{left:545.078219pt;}
.x78_c00165{left:545.991568pt;}
.x36_c00165{left:549.870667pt;}
.x90_c00165{left:551.294485pt;}
.x4f_c00165{left:556.662667pt;}
.x68_c00165{left:562.230667pt;}
.x5_c00165{left:570.406107pt;}
.x32_c00165{left:576.525333pt;}
.x37_c00165{left:580.077333pt;}
.x92_c00165{left:586.817099pt;}
.x25_c00165{left:589.044481pt;}
.x70_c00165{left:593.081131pt;}
.x50_c00165{left:595.281333pt;}
.xb2_c00165{left:596.982667pt;}
.xb9_c00165{left:603.840000pt;}
.x22_c00165{left:606.152287pt;}
.xba_c00165{left:607.440000pt;}
.x79_c00165{left:610.001179pt;}
.x71_c00165{left:615.403013pt;}
.x26_c00165{left:617.907249pt;}
.x3e_c00165{left:622.024000pt;}
.x7d_c00165{left:623.677333pt;}
.x6_c00165{left:625.452339pt;}
.x80_c00165{left:627.222748pt;}
.xbb_c00165{left:628.560000pt;}
.xd_c00165{left:631.662351pt;}
.x72_c00165{left:637.244832pt;}
.x23_c00165{left:639.501672pt;}
.xb3_c00165{left:648.354667pt;}
.x96_c00165{left:654.510533pt;}
.x4a_c00165{left:659.930539pt;}
.x51_c00165{left:661.222667pt;}
.x60_c00165{left:665.531101pt;}
.x9a_c00165{left:666.960000pt;}
.xe_c00165{left:669.024951pt;}
.x3f_c00165{left:671.025333pt;}
.x56_c00165{left:672.055247pt;}
.x7_c00165{left:673.831911pt;}
.x27_c00165{left:679.906529pt;}
.xf_c00165{left:682.584711pt;}
.x57_c00165{left:690.282923pt;}
.x28_c00165{left:691.502264pt;}
.x61_c00165{left:697.692372pt;}
.x29_c00165{left:702.045547pt;}
.x8a_c00165{left:706.700000pt;}
.x1_c00165{left:709.200000pt;}
.x62_c00165{left:711.853524pt;}
.x9f_c00165{left:714.905333pt;}
.x58_c00165{left:716.479788pt;}
.x40_c00165{left:722.497333pt;}
.x73_c00165{left:725.090821pt;}
.x8e_c00165{left:726.265509pt;}
.xb8_c00165{left:727.921333pt;}
.x4b_c00165{left:730.096643pt;}
.x8_c00165{left:736.784895pt;}
.x2a_c00165{left:738.532612pt;}
.x8b_c00165{left:740.450667pt;}
.x33_c00165{left:745.737333pt;}
.xa0_c00165{left:747.729333pt;}
.x59_c00165{left:759.148353pt;}
.x63_c00165{left:762.734973pt;}
.xaf_c00165{left:766.205333pt;}
.xa1_c00165{left:772.481333pt;}
.x38_c00165{left:776.912000pt;}
.x52_c00165{left:778.888000pt;}
.x41_c00165{left:781.534667pt;}
.x24_c00165{left:786.772567pt;}
.x18_c00165{left:804.391299pt;}
.x64_c00165{left:824.897347pt;}
.x4c_c00165{left:830.308597pt;}
}





/* 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_c00166 {
    display:none;
  }
  .loading-indicator_c00166.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00166 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_c00166 { 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_c00166" -> "#page-container .classname_c00166")
 */
.pf_c00166 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00166 { /* 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_c00166.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00166 { /* 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_c00166 { /* 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_c00166 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00166 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00166 {overflow:visible;}
  }
}
.c_c00166 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00166 { /* 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_c00166:after { /* webkit #35443 */
  content: '';
}
.t_c00166:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00166 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 */
}
.__c00166 { /* 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_c00166 { /* info for Javascript */
  display:none;
}
.l_c00166 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00166 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00166 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00166: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_c00166 {
    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_c00166.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00166.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_c00166 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00166{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00166;src:url('chunks/assets/font_6bbd15de30fdc229d5d5ff82.woff2')format("woff");}.ff1_c00166{font-family:ff1_c00166;line-height:1.000000;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;}
.m11_c00166{transform:matrix(0.047435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.047435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.047435,0.000000,0.000000,0.250000,0,0);}
.mf_c00166{transform:matrix(0.128160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128160,0.000000,0.000000,0.250000,0,0);}
.m18_c00166{transform:matrix(0.160330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160330,0.000000,0.000000,0.250000,0,0);}
.m12_c00166{transform:matrix(0.176090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176090,0.000000,0.000000,0.250000,0,0);}
.m1b_c00166{transform:matrix(0.323545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323545,0.000000,0.000000,0.250000,0,0);}
.m2_c00166{transform:matrix(0.358240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358240,0.000000,0.000000,0.250000,0,0);}
.m15_c00166{transform:matrix(0.360780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360780,0.000000,0.000000,0.250000,0,0);}
.m4_c00166{transform:matrix(0.378490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378490,0.000000,0.000000,0.250000,0,0);}
.mc_c00166{transform:matrix(0.491350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491350,0.000000,0.000000,0.250000,0,0);}
.m0_c00166{transform:matrix(0.513080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513080,0.000000,0.000000,0.250000,0,0);}
.m1_c00166{transform:matrix(0.528945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528945,0.000000,0.000000,0.250000,0,0);}
.m8_c00166{transform:matrix(0.591690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591690,0.000000,0.000000,0.250000,0,0);}
.m7_c00166{transform:matrix(0.662420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662420,0.000000,0.000000,0.250000,0,0);}
.m3_c00166{transform:matrix(0.696695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.696695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.696695,0.000000,0.000000,0.250000,0,0);}
.md_c00166{transform:matrix(0.766320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.766320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.766320,0.000000,0.000000,0.250000,0,0);}
.m1a_c00166{transform:matrix(0.771095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.771095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.771095,0.000000,0.000000,0.250000,0,0);}
.me_c00166{transform:matrix(0.932630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.932630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.932630,0.000000,0.000000,0.250000,0,0);}
.m9_c00166{transform:matrix(0.960470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.960470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.960470,0.000000,0.000000,0.250000,0,0);}
.m14_c00166{transform:matrix(1.058645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.058645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.058645,0.000000,0.000000,0.250000,0,0);}
.m5_c00166{transform:matrix(1.120995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.120995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.120995,0.000000,0.000000,0.250000,0,0);}
.ma_c00166{transform:matrix(1.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.248250,0.000000,0.000000,0.250000,0,0);}
.m13_c00166{transform:matrix(1.329215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.329215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.329215,0.000000,0.000000,0.250000,0,0);}
.m10_c00166{transform:matrix(1.382930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.382930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.382930,0.000000,0.000000,0.250000,0,0);}
.mb_c00166{transform:matrix(1.550885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.550885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.550885,0.000000,0.000000,0.250000,0,0);}
.m16_c00166{transform:matrix(1.833715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.833715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.833715,0.000000,0.000000,0.250000,0,0);}
.m6_c00166{transform:matrix(2.013190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.013190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.013190,0.000000,0.000000,0.250000,0,0);}
.m17_c00166{transform:matrix(2.120765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.120765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.120765,0.000000,0.000000,0.250000,0,0);}
.m19_c00166{transform:matrix(2.791925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.791925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.791925,0.000000,0.000000,0.250000,0,0);}
.v0_c00166{vertical-align:0.000000px;}
.ls0_c00166{letter-spacing:0.000000px;}
.sc__c00166{text-shadow:none;}
.sc0_c00166{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__c00166{-webkit-text-stroke:0px transparent;}
.sc0_c00166{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00166{word-spacing:0.000000px;}
.fc0_c00166{color:transparent;}
.fs2_c00166{font-size:18.000000px;}
.fs3_c00166{font-size:24.000000px;}
.fs0_c00166{font-size:36.000000px;}
.fs1_c00166{font-size:114.000000px;}
.y0_c00166{bottom:0.000000px;}
.y2_c00166{bottom:0.594000px;}
.y1_c00166{bottom:55.932000px;}
.y5_c00166{bottom:116.100000px;}
.y4_c00166{bottom:200.610000px;}
.y3_c00166{bottom:326.430000px;}
.h3_c00166{height:18.000000px;}
.h4_c00166{height:24.000000px;}
.h1_c00166{height:36.000000px;}
.h2_c00166{height:114.000000px;}
.h0_c00166{height:682.500000px;}
.w1_c00166{width:945.750000px;}
.w0_c00166{width:946.050000px;}
.x0_c00166{left:0.000000px;}
.x1_c00166{left:18.090000px;}
.x5_c00166{left:38.610000px;}
.x6_c00166{left:60.750000px;}
.x7_c00166{left:106.110000px;}
.x8_c00166{left:122.580000px;}
.x9_c00166{left:153.630000px;}
.xa_c00166{left:173.070000px;}
.x2_c00166{left:182.250000px;}
.xb_c00166{left:220.590000px;}
.xc_c00166{left:250.290000px;}
.xd_c00166{left:268.920000px;}
.xe_c00166{left:286.200000px;}
.x3_c00166{left:305.640000px;}
.xf_c00166{left:328.590000px;}
.x10_c00166{left:333.720000px;}
.x11_c00166{left:416.070000px;}
.x4_c00166{left:537.300000px;}
.x12_c00166{left:892.080000px;}
.x18_c00166{left:900.990000px;}
.x17_c00166{left:902.070000px;}
.x15_c00166{left:904.500000px;}
.x16_c00166{left:908.550000px;}
.x13_c00166{left:909.630000px;}
.x14_c00166{left:912.330000px;}
@media print{
.v0_c00166{vertical-align:0.000000pt;}
.ls0_c00166{letter-spacing:0.000000pt;}
.ws0_c00166{word-spacing:0.000000pt;}
.fs2_c00166{font-size:16.000000pt;}
.fs3_c00166{font-size:21.333333pt;}
.fs0_c00166{font-size:32.000000pt;}
.fs1_c00166{font-size:101.333333pt;}
.y0_c00166{bottom:0.000000pt;}
.y2_c00166{bottom:0.528000pt;}
.y1_c00166{bottom:49.717333pt;}
.y5_c00166{bottom:103.200000pt;}
.y4_c00166{bottom:178.320000pt;}
.y3_c00166{bottom:290.160000pt;}
.h3_c00166{height:16.000000pt;}
.h4_c00166{height:21.333333pt;}
.h1_c00166{height:32.000000pt;}
.h2_c00166{height:101.333333pt;}
.h0_c00166{height:606.666667pt;}
.w1_c00166{width:840.666667pt;}
.w0_c00166{width:840.933333pt;}
.x0_c00166{left:0.000000pt;}
.x1_c00166{left:16.080000pt;}
.x5_c00166{left:34.320000pt;}
.x6_c00166{left:54.000000pt;}
.x7_c00166{left:94.320000pt;}
.x8_c00166{left:108.960000pt;}
.x9_c00166{left:136.560000pt;}
.xa_c00166{left:153.840000pt;}
.x2_c00166{left:162.000000pt;}
.xb_c00166{left:196.080000pt;}
.xc_c00166{left:222.480000pt;}
.xd_c00166{left:239.040000pt;}
.xe_c00166{left:254.400000pt;}
.x3_c00166{left:271.680000pt;}
.xf_c00166{left:292.080000pt;}
.x10_c00166{left:296.640000pt;}
.x11_c00166{left:369.840000pt;}
.x4_c00166{left:477.600000pt;}
.x12_c00166{left:792.960000pt;}
.x18_c00166{left:800.880000pt;}
.x17_c00166{left:801.840000pt;}
.x15_c00166{left:804.000000pt;}
.x16_c00166{left:807.600000pt;}
.x13_c00166{left:808.560000pt;}
.x14_c00166{left:810.960000pt;}
}





/* 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_c00167 {
    display:none;
  }
  .loading-indicator_c00167.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00167 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_c00167 { 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_c00167" -> "#page-container .classname_c00167")
 */
.pf_c00167 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00167 { /* 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_c00167.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00167 { /* 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_c00167 { /* 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_c00167 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00167 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00167 {overflow:visible;}
  }
}
.c_c00167 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00167 { /* 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_c00167:after { /* webkit #35443 */
  content: '';
}
.t_c00167:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00167 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 */
}
.__c00167 { /* 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_c00167 { /* info for Javascript */
  display:none;
}
.l_c00167 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00167 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00167 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00167: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_c00167 {
    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_c00167.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00167.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_c00167 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00167{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00167;src:url('chunks/assets/font_53ec0c54e60da7c2d414b553.woff2')format("woff");}.ff1_c00167{font-family:ff1_c00167;line-height:1.000000;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;}
.m62_c00167{transform:matrix(0.010140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.010140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.010140,0.000000,0.000000,0.250000,0,0);}
.m5d_c00167{transform:matrix(0.014270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.014270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.014270,0.000000,0.000000,0.250000,0,0);}
.m7a_c00167{transform:matrix(0.015909,0.000191,-0.003000,0.249982,0,0);-ms-transform:matrix(0.015909,0.000191,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.015909,0.000191,-0.003000,0.249982,0,0);}
.m3_c00167{transform:matrix(0.018185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.018185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.018185,0.000000,0.000000,0.250000,0,0);}
.m2d_c00167{transform:matrix(0.018739,0.000150,-0.002000,0.249992,0,0);-ms-transform:matrix(0.018739,0.000150,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.018739,0.000150,-0.002000,0.249992,0,0);}
.m24_c00167{transform:matrix(0.032144,0.000257,-0.002000,0.249992,0,0);-ms-transform:matrix(0.032144,0.000257,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.032144,0.000257,-0.002000,0.249992,0,0);}
.m11_c00167{transform:matrix(0.067500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.067500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.067500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00167{transform:matrix(0.092657,0.000741,-0.002000,0.249992,0,0);-ms-transform:matrix(0.092657,0.000741,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.092657,0.000741,-0.002000,0.249992,0,0);}
.m42_c00167{transform:matrix(0.097347,0.000779,-0.002000,0.249992,0,0);-ms-transform:matrix(0.097347,0.000779,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.097347,0.000779,-0.002000,0.249992,0,0);}
.ma_c00167{transform:matrix(0.115895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115895,0.000000,0.000000,0.250000,0,0);}
.m2a_c00167{transform:matrix(0.120351,0.000963,-0.002000,0.249992,0,0);-ms-transform:matrix(0.120351,0.000963,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.120351,0.000963,-0.002000,0.249992,0,0);}
.m2b_c00167{transform:matrix(0.138291,0.001106,-0.002000,0.249992,0,0);-ms-transform:matrix(0.138291,0.001106,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.138291,0.001106,-0.002000,0.249992,0,0);}
.m40_c00167{transform:matrix(0.140581,0.001125,-0.002000,0.249992,0,0);-ms-transform:matrix(0.140581,0.001125,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.140581,0.001125,-0.002000,0.249992,0,0);}
.m20_c00167{transform:matrix(0.149721,0.002396,-0.003999,0.249968,0,0);-ms-transform:matrix(0.149721,0.002396,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.149721,0.002396,-0.003999,0.249968,0,0);}
.m4_c00167{transform:matrix(0.158050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158050,0.000000,0.000000,0.250000,0,0);}
.m63_c00167{transform:matrix(0.159770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159770,0.000000,0.000000,0.250000,0,0);}
.m3d_c00167{transform:matrix(0.165945,0.001328,-0.002000,0.249992,0,0);-ms-transform:matrix(0.165945,0.001328,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.165945,0.001328,-0.002000,0.249992,0,0);}
.m57_c00167{transform:matrix(0.166515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166515,0.000000,0.000000,0.250000,0,0);}
.m12_c00167{transform:matrix(0.171355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171355,0.000000,0.000000,0.250000,0,0);}
.m41_c00167{transform:matrix(0.189849,0.001519,-0.002000,0.249992,0,0);-ms-transform:matrix(0.189849,0.001519,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.189849,0.001519,-0.002000,0.249992,0,0);}
.m49_c00167{transform:matrix(0.203245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203245,0.000000,0.000000,0.250000,0,0);}
.m6d_c00167{transform:matrix(0.262140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262140,0.000000,0.000000,0.250000,0,0);}
.mb_c00167{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m1_c00167{transform:matrix(0.275390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275390,0.000000,0.000000,0.250000,0,0);}
.m28_c00167{transform:matrix(0.293181,0.002345,-0.002000,0.249992,0,0);-ms-transform:matrix(0.293181,0.002345,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.293181,0.002345,-0.002000,0.249992,0,0);}
.m8_c00167{transform:matrix(0.299050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299050,0.000000,0.000000,0.250000,0,0);}
.m7c_c00167{transform:matrix(0.304140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304140,0.000000,0.000000,0.250000,0,0);}
.m5b_c00167{transform:matrix(0.313015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313015,0.000000,0.000000,0.250000,0,0);}
.m4a_c00167{transform:matrix(0.314155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314155,0.000000,0.000000,0.250000,0,0);}
.mc_c00167{transform:matrix(0.315400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315400,0.000000,0.000000,0.250000,0,0);}
.m7e_c00167{transform:matrix(0.324500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324500,0.000000,0.000000,0.250000,0,0);}
.m38_c00167{transform:matrix(0.339444,0.002716,-0.002000,0.249992,0,0);-ms-transform:matrix(0.339444,0.002716,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.339444,0.002716,-0.002000,0.249992,0,0);}
.m71_c00167{transform:matrix(0.339940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339940,0.000000,0.000000,0.250000,0,0);}
.m65_c00167{transform:matrix(0.347090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347090,0.000000,0.000000,0.250000,0,0);}
.m64_c00167{transform:matrix(0.349315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349315,0.000000,0.000000,0.250000,0,0);}
.m53_c00167{transform:matrix(0.352140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352140,0.000000,0.000000,0.250000,0,0);}
.m34_c00167{transform:matrix(0.352169,0.002817,-0.002000,0.249992,0,0);-ms-transform:matrix(0.352169,0.002817,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.352169,0.002817,-0.002000,0.249992,0,0);}
.m5f_c00167{transform:matrix(0.358830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358830,0.000000,0.000000,0.250000,0,0);}
.m26_c00167{transform:matrix(0.359129,0.002873,-0.002000,0.249992,0,0);-ms-transform:matrix(0.359129,0.002873,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.359129,0.002873,-0.002000,0.249992,0,0);}
.m60_c00167{transform:matrix(0.363430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363430,0.000000,0.000000,0.250000,0,0);}
.m43_c00167{transform:matrix(0.381015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381015,0.000000,0.000000,0.250000,0,0);}
.mf_c00167{transform:matrix(0.382410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382410,0.000000,0.000000,0.250000,0,0);}
.m75_c00167{transform:matrix(0.388262,0.004659,-0.003000,0.249982,0,0);-ms-transform:matrix(0.388262,0.004659,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.388262,0.004659,-0.003000,0.249982,0,0);}
.m0_c00167{transform:matrix(0.389165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389165,0.000000,0.000000,0.250000,0,0);}
.m68_c00167{transform:matrix(0.395830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395830,0.000000,0.000000,0.250000,0,0);}
.m32_c00167{transform:matrix(0.400397,0.003203,-0.002000,0.249992,0,0);-ms-transform:matrix(0.400397,0.003203,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.400397,0.003203,-0.002000,0.249992,0,0);}
.m2f_c00167{transform:matrix(0.416542,0.003332,-0.002000,0.249992,0,0);-ms-transform:matrix(0.416542,0.003332,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.416542,0.003332,-0.002000,0.249992,0,0);}
.m1a_c00167{transform:matrix(0.418576,0.006697,-0.003999,0.249968,0,0);-ms-transform:matrix(0.418576,0.006697,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.418576,0.006697,-0.003999,0.249968,0,0);}
.m2e_c00167{transform:matrix(0.432961,0.003464,-0.002000,0.249992,0,0);-ms-transform:matrix(0.432961,0.003464,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.432961,0.003464,-0.002000,0.249992,0,0);}
.m3b_c00167{transform:matrix(0.435876,0.003487,-0.002000,0.249992,0,0);-ms-transform:matrix(0.435876,0.003487,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.435876,0.003487,-0.002000,0.249992,0,0);}
.m69_c00167{transform:matrix(0.445335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445335,0.000000,0.000000,0.250000,0,0);}
.m21_c00167{transform:matrix(0.453277,0.007252,-0.003999,0.249968,0,0);-ms-transform:matrix(0.453277,0.007252,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.453277,0.007252,-0.003999,0.249968,0,0);}
.m61_c00167{transform:matrix(0.476400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.476400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.476400,0.000000,0.000000,0.250000,0,0);}
.m4d_c00167{transform:matrix(0.480425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480425,0.000000,0.000000,0.250000,0,0);}
.m7b_c00167{transform:matrix(0.496679,0.005960,-0.003000,0.249982,0,0);-ms-transform:matrix(0.496679,0.005960,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.496679,0.005960,-0.003000,0.249982,0,0);}
.m2_c00167{transform:matrix(0.509845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509845,0.000000,0.000000,0.250000,0,0);}
.m7d_c00167{transform:matrix(0.509900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509900,0.000000,0.000000,0.250000,0,0);}
.m14_c00167{transform:matrix(0.516265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516265,0.000000,0.000000,0.250000,0,0);}
.m10_c00167{transform:matrix(0.522950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522950,0.000000,0.000000,0.250000,0,0);}
.m35_c00167{transform:matrix(0.532813,0.004263,-0.002000,0.249992,0,0);-ms-transform:matrix(0.532813,0.004263,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.532813,0.004263,-0.002000,0.249992,0,0);}
.m47_c00167{transform:matrix(0.536530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536530,0.000000,0.000000,0.250000,0,0);}
.m19_c00167{transform:matrix(0.538830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538830,0.000000,0.000000,0.250000,0,0);}
.m4e_c00167{transform:matrix(0.539765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.539765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.539765,0.000000,0.000000,0.250000,0,0);}
.me_c00167{transform:matrix(0.541870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541870,0.000000,0.000000,0.250000,0,0);}
.m6a_c00167{transform:matrix(0.542505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542505,0.000000,0.000000,0.250000,0,0);}
.m16_c00167{transform:matrix(0.547525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547525,0.000000,0.000000,0.250000,0,0);}
.m1e_c00167{transform:matrix(0.572377,0.009158,-0.003999,0.249968,0,0);-ms-transform:matrix(0.572377,0.009158,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.572377,0.009158,-0.003999,0.249968,0,0);}
.m48_c00167{transform:matrix(0.573665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573665,0.000000,0.000000,0.250000,0,0);}
.m67_c00167{transform:matrix(0.589395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.589395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.589395,0.000000,0.000000,0.250000,0,0);}
.m5c_c00167{transform:matrix(0.602420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602420,0.000000,0.000000,0.250000,0,0);}
.m74_c00167{transform:matrix(0.607411,0.007289,-0.003000,0.249982,0,0);-ms-transform:matrix(0.607411,0.007289,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.607411,0.007289,-0.003000,0.249982,0,0);}
.m1f_c00167{transform:matrix(0.610907,0.009775,-0.003999,0.249968,0,0);-ms-transform:matrix(0.610907,0.009775,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.610907,0.009775,-0.003999,0.249968,0,0);}
.m45_c00167{transform:matrix(0.619035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.619035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.619035,0.000000,0.000000,0.250000,0,0);}
.m4f_c00167{transform:matrix(0.622745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.622745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.622745,0.000000,0.000000,0.250000,0,0);}
.m44_c00167{transform:matrix(0.627120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.627120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.627120,0.000000,0.000000,0.250000,0,0);}
.m66_c00167{transform:matrix(0.628530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.628530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.628530,0.000000,0.000000,0.250000,0,0);}
.m3e_c00167{transform:matrix(0.630045,0.005040,-0.002000,0.249992,0,0);-ms-transform:matrix(0.630045,0.005040,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.630045,0.005040,-0.002000,0.249992,0,0);}
.m15_c00167{transform:matrix(0.637845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.637845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.637845,0.000000,0.000000,0.250000,0,0);}
.m9_c00167{transform:matrix(0.638340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638340,0.000000,0.000000,0.250000,0,0);}
.md_c00167{transform:matrix(0.643950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.643950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.643950,0.000000,0.000000,0.250000,0,0);}
.m6_c00167{transform:matrix(0.647825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.647825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.647825,0.000000,0.000000,0.250000,0,0);}
.m59_c00167{transform:matrix(0.674110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.674110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.674110,0.000000,0.000000,0.250000,0,0);}
.m39_c00167{transform:matrix(0.689408,0.005515,-0.002000,0.249992,0,0);-ms-transform:matrix(0.689408,0.005515,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.689408,0.005515,-0.002000,0.249992,0,0);}
.m6f_c00167{transform:matrix(0.696610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.696610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.696610,0.000000,0.000000,0.250000,0,0);}
.m13_c00167{transform:matrix(0.704435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.704435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.704435,0.000000,0.000000,0.250000,0,0);}
.m46_c00167{transform:matrix(0.730395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.730395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.730395,0.000000,0.000000,0.250000,0,0);}
.m76_c00167{transform:matrix(0.731467,0.008778,-0.003000,0.249982,0,0);-ms-transform:matrix(0.731467,0.008778,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.731467,0.008778,-0.003000,0.249982,0,0);}
.m5a_c00167{transform:matrix(0.747005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.747005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.747005,0.000000,0.000000,0.250000,0,0);}
.m55_c00167{transform:matrix(0.750155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.750155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.750155,0.000000,0.000000,0.250000,0,0);}
.m7_c00167{transform:matrix(0.764890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.764890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.764890,0.000000,0.000000,0.250000,0,0);}
.m77_c00167{transform:matrix(0.769405,0.009233,-0.003000,0.249982,0,0);-ms-transform:matrix(0.769405,0.009233,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.769405,0.009233,-0.003000,0.249982,0,0);}
.m25_c00167{transform:matrix(0.782045,0.006256,-0.002000,0.249992,0,0);-ms-transform:matrix(0.782045,0.006256,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.782045,0.006256,-0.002000,0.249992,0,0);}
.m54_c00167{transform:matrix(0.785335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.785335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.785335,0.000000,0.000000,0.250000,0,0);}
.m17_c00167{transform:matrix(0.795730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.795730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.795730,0.000000,0.000000,0.250000,0,0);}
.m5e_c00167{transform:matrix(0.796035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.796035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.796035,0.000000,0.000000,0.250000,0,0);}
.m18_c00167{transform:matrix(0.805235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.805235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.805235,0.000000,0.000000,0.250000,0,0);}
.m58_c00167{transform:matrix(0.829030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.829030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.829030,0.000000,0.000000,0.250000,0,0);}
.m73_c00167{transform:matrix(0.832685,0.009992,-0.003000,0.249982,0,0);-ms-transform:matrix(0.832685,0.009992,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.832685,0.009992,-0.003000,0.249982,0,0);}
.m27_c00167{transform:matrix(0.833993,0.006672,-0.002000,0.249992,0,0);-ms-transform:matrix(0.833993,0.006672,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.833993,0.006672,-0.002000,0.249992,0,0);}
.m3c_c00167{transform:matrix(0.865332,0.006923,-0.002000,0.249992,0,0);-ms-transform:matrix(0.865332,0.006923,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.865332,0.006923,-0.002000,0.249992,0,0);}
.m4b_c00167{transform:matrix(0.897035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.897035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.897035,0.000000,0.000000,0.250000,0,0);}
.m79_c00167{transform:matrix(0.905995,0.010872,-0.003000,0.249982,0,0);-ms-transform:matrix(0.905995,0.010872,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.905995,0.010872,-0.003000,0.249982,0,0);}
.m72_c00167{transform:matrix(0.951621,0.011419,-0.003000,0.249982,0,0);-ms-transform:matrix(0.951621,0.011419,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.951621,0.011419,-0.003000,0.249982,0,0);}
.m37_c00167{transform:matrix(0.966109,0.007729,-0.002000,0.249992,0,0);-ms-transform:matrix(0.966109,0.007729,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.966109,0.007729,-0.002000,0.249992,0,0);}
.m33_c00167{transform:matrix(0.969774,0.007758,-0.002000,0.249992,0,0);-ms-transform:matrix(0.969774,0.007758,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.969774,0.007758,-0.002000,0.249992,0,0);}
.m29_c00167{transform:matrix(0.999508,0.007996,-0.002000,0.249992,0,0);-ms-transform:matrix(0.999508,0.007996,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.999508,0.007996,-0.002000,0.249992,0,0);}
.m3a_c00167{transform:matrix(1.015553,0.008124,-0.002000,0.249992,0,0);-ms-transform:matrix(1.015553,0.008124,-0.002000,0.249992,0,0);-webkit-transform:matrix(1.015553,0.008124,-0.002000,0.249992,0,0);}
.m22_c00167{transform:matrix(1.022459,0.016359,-0.003999,0.249968,0,0);-ms-transform:matrix(1.022459,0.016359,-0.003999,0.249968,0,0);-webkit-transform:matrix(1.022459,0.016359,-0.003999,0.249968,0,0);}
.m6b_c00167{transform:matrix(1.061250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.061250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.061250,0.000000,0.000000,0.250000,0,0);}
.m1d_c00167{transform:matrix(1.103864,0.017662,-0.003999,0.249968,0,0);-ms-transform:matrix(1.103864,0.017662,-0.003999,0.249968,0,0);-webkit-transform:matrix(1.103864,0.017662,-0.003999,0.249968,0,0);}
.m50_c00167{transform:matrix(1.110935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.110935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.110935,0.000000,0.000000,0.250000,0,0);}
.m4c_c00167{transform:matrix(1.231755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.231755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.231755,0.000000,0.000000,0.250000,0,0);}
.m2c_c00167{transform:matrix(1.251075,0.010009,-0.002000,0.249992,0,0);-ms-transform:matrix(1.251075,0.010009,-0.002000,0.249992,0,0);-webkit-transform:matrix(1.251075,0.010009,-0.002000,0.249992,0,0);}
.m23_c00167{transform:matrix(1.280481,0.020488,-0.003999,0.249968,0,0);-ms-transform:matrix(1.280481,0.020488,-0.003999,0.249968,0,0);-webkit-transform:matrix(1.280481,0.020488,-0.003999,0.249968,0,0);}
.m30_c00167{transform:matrix(1.344362,0.010755,-0.002000,0.249992,0,0);-ms-transform:matrix(1.344362,0.010755,-0.002000,0.249992,0,0);-webkit-transform:matrix(1.344362,0.010755,-0.002000,0.249992,0,0);}
.m5_c00167{transform:matrix(1.446650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.446650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.446650,0.000000,0.000000,0.250000,0,0);}
.m6e_c00167{transform:matrix(1.447420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.447420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.447420,0.000000,0.000000,0.250000,0,0);}
.m6c_c00167{transform:matrix(1.456395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.456395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.456395,0.000000,0.000000,0.250000,0,0);}
.m52_c00167{transform:matrix(1.587920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.587920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.587920,0.000000,0.000000,0.250000,0,0);}
.m78_c00167{transform:matrix(1.638072,0.019657,-0.003000,0.249982,0,0);-ms-transform:matrix(1.638072,0.019657,-0.003000,0.249982,0,0);-webkit-transform:matrix(1.638072,0.019657,-0.003000,0.249982,0,0);}
.m56_c00167{transform:matrix(1.719690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.719690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.719690,0.000000,0.000000,0.250000,0,0);}
.m1b_c00167{transform:matrix(1.748746,0.027980,-0.003999,0.249968,0,0);-ms-transform:matrix(1.748746,0.027980,-0.003999,0.249968,0,0);-webkit-transform:matrix(1.748746,0.027980,-0.003999,0.249968,0,0);}
.m36_c00167{transform:matrix(1.905189,0.015242,-0.002000,0.249992,0,0);-ms-transform:matrix(1.905189,0.015242,-0.002000,0.249992,0,0);-webkit-transform:matrix(1.905189,0.015242,-0.002000,0.249992,0,0);}
.m31_c00167{transform:matrix(2.116757,0.016934,-0.002000,0.249992,0,0);-ms-transform:matrix(2.116757,0.016934,-0.002000,0.249992,0,0);-webkit-transform:matrix(2.116757,0.016934,-0.002000,0.249992,0,0);}
.m70_c00167{transform:matrix(2.135725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.135725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.135725,0.000000,0.000000,0.250000,0,0);}
.m51_c00167{transform:matrix(2.479545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.479545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.479545,0.000000,0.000000,0.250000,0,0);}
.m1c_c00167{transform:matrix(2.784814,0.044557,-0.003999,0.249968,0,0);-ms-transform:matrix(2.784814,0.044557,-0.003999,0.249968,0,0);-webkit-transform:matrix(2.784814,0.044557,-0.003999,0.249968,0,0);}
.v0_c00167{vertical-align:0.000000px;}
.ls0_c00167{letter-spacing:0.000000px;}
.sc__c00167{text-shadow:none;}
.sc0_c00167{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__c00167{-webkit-text-stroke:0px transparent;}
.sc0_c00167{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00167{word-spacing:0.000000px;}
.fc0_c00167{color:transparent;}
.fsf_c00167{font-size:18.000000px;}
.fs7_c00167{font-size:30.000960px;}
.fs1_c00167{font-size:42.000000px;}
.fs4_c00167{font-size:42.001344px;}
.fs6_c00167{font-size:48.001536px;}
.fse_c00167{font-size:48.003456px;}
.fs3_c00167{font-size:54.006912px;}
.fs2_c00167{font-size:60.000000px;}
.fsa_c00167{font-size:66.000000px;}
.fsb_c00167{font-size:78.000000px;}
.fs9_c00167{font-size:84.000000px;}
.fs5_c00167{font-size:84.002688px;}
.fs8_c00167{font-size:90.000000px;}
.fsc_c00167{font-size:96.000000px;}
.fsd_c00167{font-size:108.000000px;}
.fs0_c00167{font-size:180.000000px;}
.y0_c00167{bottom:0.000000px;}
.y4d_c00167{bottom:74.824500px;}
.y4c_c00167{bottom:75.838500px;}
.y4b_c00167{bottom:76.221000px;}
.y4a_c00167{bottom:77.298000px;}
.y49_c00167{bottom:77.479500px;}
.y48_c00167{bottom:78.132000px;}
.y47_c00167{bottom:109.113000px;}
.y46_c00167{bottom:148.579500px;}
.y45_c00167{bottom:182.346000px;}
.y44_c00167{bottom:182.977500px;}
.y43_c00167{bottom:183.783000px;}
.y42_c00167{bottom:184.177500px;}
.y41_c00167{bottom:185.274000px;}
.y40_c00167{bottom:186.219000px;}
.y3f_c00167{bottom:187.861500px;}
.y3e_c00167{bottom:188.452500px;}
.y3d_c00167{bottom:190.047000px;}
.y3c_c00167{bottom:219.834000px;}
.y3b_c00167{bottom:260.877000px;}
.y3a_c00167{bottom:276.207000px;}
.y39_c00167{bottom:291.910500px;}
.y36_c00167{bottom:318.449316px;}
.y34_c00167{bottom:318.449412px;}
.y33_c00167{bottom:318.449460px;}
.y38_c00167{bottom:318.449664px;}
.y35_c00167{bottom:318.449724px;}
.y37_c00167{bottom:318.449892px;}
.y32_c00167{bottom:318.450192px;}
.y31_c00167{bottom:328.190496px;}
.y30_c00167{bottom:328.688940px;}
.y2f_c00167{bottom:328.952820px;}
.y2e_c00167{bottom:329.109300px;}
.y2d_c00167{bottom:329.416080px;}
.y2c_c00167{bottom:330.587700px;}
.y2b_c00167{bottom:330.842568px;}
.y2a_c00167{bottom:331.128852px;}
.y29_c00167{bottom:331.822296px;}
.y28_c00167{bottom:332.143452px;}
.y27_c00167{bottom:333.025260px;}
.y59_c00167{bottom:355.320000px;}
.y58_c00167{bottom:358.431000px;}
.y1d_c00167{bottom:400.138380px;}
.y1e_c00167{bottom:400.138680px;}
.y1c_c00167{bottom:400.138848px;}
.y1f_c00167{bottom:400.139352px;}
.y20_c00167{bottom:400.139496px;}
.y21_c00167{bottom:400.139676px;}
.y22_c00167{bottom:400.140036px;}
.y23_c00167{bottom:400.140060px;}
.y24_c00167{bottom:400.140720px;}
.y25_c00167{bottom:400.141452px;}
.y26_c00167{bottom:400.142196px;}
.y1b_c00167{bottom:450.826968px;}
.y1a_c00167{bottom:453.870000px;}
.y19_c00167{bottom:476.190420px;}
.y18_c00167{bottom:477.677484px;}
.y17_c00167{bottom:478.510644px;}
.y16_c00167{bottom:478.630836px;}
.y15_c00167{bottom:479.530596px;}
.y14_c00167{bottom:480.252300px;}
.y13_c00167{bottom:482.498412px;}
.y12_c00167{bottom:485.615004px;}
.y11_c00167{bottom:487.485852px;}
.y10_c00167{bottom:487.744500px;}
.y56_c00167{bottom:500.080026px;}
.y57_c00167{bottom:500.139300px;}
.y55_c00167{bottom:500.973780px;}
.y54_c00167{bottom:501.876804px;}
.y53_c00167{bottom:503.513724px;}
.y52_c00167{bottom:504.119334px;}
.y51_c00167{bottom:504.202602px;}
.y50_c00167{bottom:504.777432px;}
.y4f_c00167{bottom:506.096724px;}
.y4e_c00167{bottom:507.013500px;}
.yf_c00167{bottom:535.593000px;}
.y2_c00167{bottom:569.700000px;}
.y3_c00167{bottom:570.019500px;}
.y4_c00167{bottom:570.433500px;}
.y5_c00167{bottom:570.558000px;}
.y6_c00167{bottom:570.808500px;}
.y7_c00167{bottom:571.438500px;}
.y8_c00167{bottom:571.671000px;}
.y9_c00167{bottom:571.854000px;}
.ya_c00167{bottom:572.034000px;}
.yb_c00167{bottom:572.253000px;}
.yc_c00167{bottom:572.364000px;}
.yd_c00167{bottom:572.509500px;}
.ye_c00167{bottom:572.971500px;}
.y1_c00167{bottom:595.669500px;}
.h10_c00167{height:18.000000px;}
.h8_c00167{height:30.000960px;}
.h2_c00167{height:42.000000px;}
.h5_c00167{height:42.001344px;}
.h7_c00167{height:48.001536px;}
.hf_c00167{height:48.003456px;}
.h4_c00167{height:54.006912px;}
.h3_c00167{height:60.000000px;}
.hb_c00167{height:66.000000px;}
.hc_c00167{height:78.000000px;}
.ha_c00167{height:84.000000px;}
.h6_c00167{height:84.002688px;}
.h9_c00167{height:90.000000px;}
.hd_c00167{height:96.000000px;}
.he_c00167{height:108.000000px;}
.h1_c00167{height:180.000000px;}
.h0_c00167{height:682.500000px;}
.w1_c00167{width:945.750000px;}
.w0_c00167{width:946.050000px;}
.x0_c00167{left:0.000000px;}
.x22_c00167{left:63.984000px;}
.x24_c00167{left:71.011128px;}
.x4e_c00167{left:89.097000px;}
.x25_c00167{left:98.821404px;}
.x19_c00167{left:100.947000px;}
.x5d_c00167{left:103.326000px;}
.x2d_c00167{left:105.424956px;}
.x1a_c00167{left:117.112500px;}
.x36_c00167{left:133.381152px;}
.x59_c00167{left:136.891500px;}
.x48_c00167{left:156.870000px;}
.x54_c00167{left:183.331500px;}
.xf_c00167{left:186.570000px;}
.x49_c00167{left:225.180000px;}
.x10_c00167{left:234.630000px;}
.x2e_c00167{left:252.403308px;}
.x5e_c00167{left:270.097500px;}
.x4a_c00167{left:278.910000px;}
.x4f_c00167{left:287.710500px;}
.x2f_c00167{left:305.861160px;}
.x5a_c00167{left:315.631500px;}
.x11_c00167{left:321.300000px;}
.x26_c00167{left:324.548352px;}
.x37_c00167{left:331.297812px;}
.x55_c00167{left:347.491500px;}
.x2_c00167{left:359.104500px;}
.x27_c00167{left:364.779432px;}
.x3d_c00167{left:369.090000px;}
.x44_c00167{left:379.620000px;}
.x38_c00167{left:389.620044px;}
.x62_c00167{left:406.708500px;}
.x3_c00167{left:412.281000px;}
.x30_c00167{left:421.418508px;}
.x12_c00167{left:426.330000px;}
.x1b_c00167{left:428.827500px;}
.x3e_c00167{left:432.270000px;}
.x50_c00167{left:436.981500px;}
.x13_c00167{left:440.100000px;}
.x45_c00167{left:443.340000px;}
.x23_c00167{left:444.363000px;}
.x1_c00167{left:449.820000px;}
.x39_c00167{left:455.772780px;}
.x28_c00167{left:464.682828px;}
.x31_c00167{left:469.204776px;}
.x4b_c00167{left:478.170000px;}
.x29_c00167{left:479.263764px;}
.x4_c00167{left:481.351500px;}
.x5f_c00167{left:485.397000px;}
.x3a_c00167{left:499.514076px;}
.x5_c00167{left:501.984000px;}
.x32_c00167{left:511.563948px;}
.x3f_c00167{left:512.730000px;}
.x63_c00167{left:516.649500px;}
.x51_c00167{left:522.828000px;}
.x6_c00167{left:543.832500px;}
.x2a_c00167{left:560.265948px;}
.x60_c00167{left:561.778500px;}
.x14_c00167{left:563.220000px;}
.x64_c00167{left:564.552000px;}
.x2b_c00167{left:566.746368px;}
.x1c_c00167{left:569.209500px;}
.x65_c00167{left:571.491000px;}
.x46_c00167{left:578.880000px;}
.x5b_c00167{left:585.631500px;}
.x40_c00167{left:587.250000px;}
.x56_c00167{left:602.371500px;}
.x1d_c00167{left:614.316000px;}
.x43_c00167{left:621.540000px;}
.x15_c00167{left:630.450000px;}
.x7_c00167{left:648.850500px;}
.x3b_c00167{left:656.389620px;}
.x52_c00167{left:658.339500px;}
.x4c_c00167{left:661.500000px;}
.x1e_c00167{left:670.551000px;}
.x1f_c00167{left:678.063000px;}
.x8_c00167{left:687.718500px;}
.x41_c00167{left:698.220000px;}
.x16_c00167{left:703.080000px;}
.x33_c00167{left:706.769568px;}
.x5c_c00167{left:713.611500px;}
.x9_c00167{left:718.251000px;}
.x2c_c00167{left:719.571660px;}
.x20_c00167{left:730.135500px;}
.x47_c00167{left:731.700000px;}
.xa_c00167{left:748.198500px;}
.x69_c00167{left:751.680000px;}
.x6a_c00167{left:756.810000px;}
.x34_c00167{left:757.867884px;}
.x61_c00167{left:764.551500px;}
.x57_c00167{left:768.691500px;}
.x4d_c00167{left:774.090000px;}
.xb_c00167{left:784.642500px;}
.x53_c00167{left:788.989500px;}
.xc_c00167{left:803.022000px;}
.x42_c00167{left:820.530000px;}
.x21_c00167{left:823.077000px;}
.xd_c00167{left:827.332500px;}
.x66_c00167{left:833.620500px;}
.x17_c00167{left:838.350000px;}
.x58_c00167{left:864.541500px;}
.x18_c00167{left:896.670000px;}
.x68_c00167{left:903.160500px;}
.xe_c00167{left:904.456500px;}
.x67_c00167{left:908.100000px;}
.x35_c00167{left:911.158344px;}
.x3c_c00167{left:914.247120px;}
@media print{
.v0_c00167{vertical-align:0.000000pt;}
.ls0_c00167{letter-spacing:0.000000pt;}
.ws0_c00167{word-spacing:0.000000pt;}
.fsf_c00167{font-size:16.000000pt;}
.fs7_c00167{font-size:26.667520pt;}
.fs1_c00167{font-size:37.333333pt;}
.fs4_c00167{font-size:37.334528pt;}
.fs6_c00167{font-size:42.668032pt;}
.fse_c00167{font-size:42.669739pt;}
.fs3_c00167{font-size:48.006144pt;}
.fs2_c00167{font-size:53.333333pt;}
.fsa_c00167{font-size:58.666667pt;}
.fsb_c00167{font-size:69.333333pt;}
.fs9_c00167{font-size:74.666667pt;}
.fs5_c00167{font-size:74.669056pt;}
.fs8_c00167{font-size:80.000000pt;}
.fsc_c00167{font-size:85.333333pt;}
.fsd_c00167{font-size:96.000000pt;}
.fs0_c00167{font-size:160.000000pt;}
.y0_c00167{bottom:0.000000pt;}
.y4d_c00167{bottom:66.510667pt;}
.y4c_c00167{bottom:67.412000pt;}
.y4b_c00167{bottom:67.752000pt;}
.y4a_c00167{bottom:68.709333pt;}
.y49_c00167{bottom:68.870667pt;}
.y48_c00167{bottom:69.450667pt;}
.y47_c00167{bottom:96.989333pt;}
.y46_c00167{bottom:132.070667pt;}
.y45_c00167{bottom:162.085333pt;}
.y44_c00167{bottom:162.646667pt;}
.y43_c00167{bottom:163.362667pt;}
.y42_c00167{bottom:163.713333pt;}
.y41_c00167{bottom:164.688000pt;}
.y40_c00167{bottom:165.528000pt;}
.y3f_c00167{bottom:166.988000pt;}
.y3e_c00167{bottom:167.513333pt;}
.y3d_c00167{bottom:168.930667pt;}
.y3c_c00167{bottom:195.408000pt;}
.y3b_c00167{bottom:231.890667pt;}
.y3a_c00167{bottom:245.517333pt;}
.y39_c00167{bottom:259.476000pt;}
.y36_c00167{bottom:283.066059pt;}
.y34_c00167{bottom:283.066144pt;}
.y33_c00167{bottom:283.066187pt;}
.y38_c00167{bottom:283.066368pt;}
.y35_c00167{bottom:283.066421pt;}
.y37_c00167{bottom:283.066571pt;}
.y32_c00167{bottom:283.066837pt;}
.y31_c00167{bottom:291.724885pt;}
.y30_c00167{bottom:292.167947pt;}
.y2f_c00167{bottom:292.402507pt;}
.y2e_c00167{bottom:292.541600pt;}
.y2d_c00167{bottom:292.814293pt;}
.y2c_c00167{bottom:293.855733pt;}
.y2b_c00167{bottom:294.082283pt;}
.y2a_c00167{bottom:294.336757pt;}
.y29_c00167{bottom:294.953152pt;}
.y28_c00167{bottom:295.238624pt;}
.y27_c00167{bottom:296.022453pt;}
.y59_c00167{bottom:315.840000pt;}
.y58_c00167{bottom:318.605333pt;}
.y1d_c00167{bottom:355.678560pt;}
.y1e_c00167{bottom:355.678827pt;}
.y1c_c00167{bottom:355.678976pt;}
.y1f_c00167{bottom:355.679424pt;}
.y20_c00167{bottom:355.679552pt;}
.y21_c00167{bottom:355.679712pt;}
.y22_c00167{bottom:355.680032pt;}
.y23_c00167{bottom:355.680053pt;}
.y24_c00167{bottom:355.680640pt;}
.y25_c00167{bottom:355.681291pt;}
.y26_c00167{bottom:355.681952pt;}
.y1b_c00167{bottom:400.735083pt;}
.y1a_c00167{bottom:403.440000pt;}
.y19_c00167{bottom:423.280373pt;}
.y18_c00167{bottom:424.602208pt;}
.y17_c00167{bottom:425.342795pt;}
.y16_c00167{bottom:425.449632pt;}
.y15_c00167{bottom:426.249419pt;}
.y14_c00167{bottom:426.890933pt;}
.y13_c00167{bottom:428.887477pt;}
.y12_c00167{bottom:431.657781pt;}
.y11_c00167{bottom:433.320757pt;}
.y10_c00167{bottom:433.550667pt;}
.y56_c00167{bottom:444.515579pt;}
.y57_c00167{bottom:444.568267pt;}
.y55_c00167{bottom:445.310027pt;}
.y54_c00167{bottom:446.112715pt;}
.y53_c00167{bottom:447.567755pt;}
.y52_c00167{bottom:448.106075pt;}
.y51_c00167{bottom:448.180091pt;}
.y50_c00167{bottom:448.691051pt;}
.y4f_c00167{bottom:449.863755pt;}
.y4e_c00167{bottom:450.678667pt;}
.yf_c00167{bottom:476.082667pt;}
.y2_c00167{bottom:506.400000pt;}
.y3_c00167{bottom:506.684000pt;}
.y4_c00167{bottom:507.052000pt;}
.y5_c00167{bottom:507.162667pt;}
.y6_c00167{bottom:507.385333pt;}
.y7_c00167{bottom:507.945333pt;}
.y8_c00167{bottom:508.152000pt;}
.y9_c00167{bottom:508.314667pt;}
.ya_c00167{bottom:508.474667pt;}
.yb_c00167{bottom:508.669333pt;}
.yc_c00167{bottom:508.768000pt;}
.yd_c00167{bottom:508.897333pt;}
.ye_c00167{bottom:509.308000pt;}
.y1_c00167{bottom:529.484000pt;}
.h10_c00167{height:16.000000pt;}
.h8_c00167{height:26.667520pt;}
.h2_c00167{height:37.333333pt;}
.h5_c00167{height:37.334528pt;}
.h7_c00167{height:42.668032pt;}
.hf_c00167{height:42.669739pt;}
.h4_c00167{height:48.006144pt;}
.h3_c00167{height:53.333333pt;}
.hb_c00167{height:58.666667pt;}
.hc_c00167{height:69.333333pt;}
.ha_c00167{height:74.666667pt;}
.h6_c00167{height:74.669056pt;}
.h9_c00167{height:80.000000pt;}
.hd_c00167{height:85.333333pt;}
.he_c00167{height:96.000000pt;}
.h1_c00167{height:160.000000pt;}
.h0_c00167{height:606.666667pt;}
.w1_c00167{width:840.666667pt;}
.w0_c00167{width:840.933333pt;}
.x0_c00167{left:0.000000pt;}
.x22_c00167{left:56.874667pt;}
.x24_c00167{left:63.121003pt;}
.x4e_c00167{left:79.197333pt;}
.x25_c00167{left:87.841248pt;}
.x19_c00167{left:89.730667pt;}
.x5d_c00167{left:91.845333pt;}
.x2d_c00167{left:93.711072pt;}
.x1a_c00167{left:104.100000pt;}
.x36_c00167{left:118.561024pt;}
.x59_c00167{left:121.681333pt;}
.x48_c00167{left:139.440000pt;}
.x54_c00167{left:162.961333pt;}
.xf_c00167{left:165.840000pt;}
.x49_c00167{left:200.160000pt;}
.x10_c00167{left:208.560000pt;}
.x2e_c00167{left:224.358496pt;}
.x5e_c00167{left:240.086667pt;}
.x4a_c00167{left:247.920000pt;}
.x4f_c00167{left:255.742667pt;}
.x2f_c00167{left:271.876587pt;}
.x5a_c00167{left:280.561333pt;}
.x11_c00167{left:285.600000pt;}
.x26_c00167{left:288.487424pt;}
.x37_c00167{left:294.486944pt;}
.x55_c00167{left:308.881333pt;}
.x2_c00167{left:319.204000pt;}
.x27_c00167{left:324.248384pt;}
.x3d_c00167{left:328.080000pt;}
.x44_c00167{left:337.440000pt;}
.x38_c00167{left:346.328928pt;}
.x62_c00167{left:361.518667pt;}
.x3_c00167{left:366.472000pt;}
.x30_c00167{left:374.594229pt;}
.x12_c00167{left:378.960000pt;}
.x1b_c00167{left:381.180000pt;}
.x3e_c00167{left:384.240000pt;}
.x50_c00167{left:388.428000pt;}
.x13_c00167{left:391.200000pt;}
.x45_c00167{left:394.080000pt;}
.x23_c00167{left:394.989333pt;}
.x1_c00167{left:399.840000pt;}
.x39_c00167{left:405.131360pt;}
.x28_c00167{left:413.051403pt;}
.x31_c00167{left:417.070912pt;}
.x4b_c00167{left:425.040000pt;}
.x29_c00167{left:426.012235pt;}
.x4_c00167{left:427.868000pt;}
.x5f_c00167{left:431.464000pt;}
.x3a_c00167{left:444.012512pt;}
.x5_c00167{left:446.208000pt;}
.x32_c00167{left:454.723509pt;}
.x3f_c00167{left:455.760000pt;}
.x63_c00167{left:459.244000pt;}
.x51_c00167{left:464.736000pt;}
.x6_c00167{left:483.406667pt;}
.x2a_c00167{left:498.014176pt;}
.x60_c00167{left:499.358667pt;}
.x14_c00167{left:500.640000pt;}
.x64_c00167{left:501.824000pt;}
.x2b_c00167{left:503.774549pt;}
.x1c_c00167{left:505.964000pt;}
.x65_c00167{left:507.992000pt;}
.x46_c00167{left:514.560000pt;}
.x5b_c00167{left:520.561333pt;}
.x40_c00167{left:522.000000pt;}
.x56_c00167{left:535.441333pt;}
.x1d_c00167{left:546.058667pt;}
.x43_c00167{left:552.480000pt;}
.x15_c00167{left:560.400000pt;}
.x7_c00167{left:576.756000pt;}
.x3b_c00167{left:583.457440pt;}
.x52_c00167{left:585.190667pt;}
.x4c_c00167{left:588.000000pt;}
.x1e_c00167{left:596.045333pt;}
.x1f_c00167{left:602.722667pt;}
.x8_c00167{left:611.305333pt;}
.x41_c00167{left:620.640000pt;}
.x16_c00167{left:624.960000pt;}
.x33_c00167{left:628.239616pt;}
.x5c_c00167{left:634.321333pt;}
.x9_c00167{left:638.445333pt;}
.x2c_c00167{left:639.619253pt;}
.x20_c00167{left:649.009333pt;}
.x47_c00167{left:650.400000pt;}
.xa_c00167{left:665.065333pt;}
.x69_c00167{left:668.160000pt;}
.x6a_c00167{left:672.720000pt;}
.x34_c00167{left:673.660341pt;}
.x61_c00167{left:679.601333pt;}
.x57_c00167{left:683.281333pt;}
.x4d_c00167{left:688.080000pt;}
.xb_c00167{left:697.460000pt;}
.x53_c00167{left:701.324000pt;}
.xc_c00167{left:713.797333pt;}
.x42_c00167{left:729.360000pt;}
.x21_c00167{left:731.624000pt;}
.xd_c00167{left:735.406667pt;}
.x66_c00167{left:740.996000pt;}
.x17_c00167{left:745.200000pt;}
.x58_c00167{left:768.481333pt;}
.x18_c00167{left:797.040000pt;}
.x68_c00167{left:802.809333pt;}
.xe_c00167{left:803.961333pt;}
.x67_c00167{left:807.200000pt;}
.x35_c00167{left:809.918528pt;}
.x3c_c00167{left:812.664107pt;}
}





/* 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_c00168 {
    display:none;
  }
  .loading-indicator_c00168.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00168 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_c00168 { 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_c00168" -> "#page-container .classname_c00168")
 */
.pf_c00168 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00168 { /* 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_c00168.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00168 { /* 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_c00168 { /* 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_c00168 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00168 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00168 {overflow:visible;}
  }
}
.c_c00168 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00168 { /* 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_c00168:after { /* webkit #35443 */
  content: '';
}
.t_c00168:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00168 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 */
}
.__c00168 { /* 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_c00168 { /* info for Javascript */
  display:none;
}
.l_c00168 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00168 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00168 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00168: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_c00168 {
    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_c00168.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00168.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_c00168 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00168{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00168;src:url('chunks/assets/font_92d6bb63cbc780ceff7db400.woff2')format("woff");}.ff1_c00168{font-family:ff1_c00168;line-height:1.000000;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;}
.m6_c00168{transform:matrix(0.005475,-0.000038,0.001750,0.249994,0,0);-ms-transform:matrix(0.005475,-0.000038,0.001750,0.249994,0,0);-webkit-transform:matrix(0.005475,-0.000038,0.001750,0.249994,0,0);}
.m3_c00168{transform:matrix(0.008655,-0.000061,0.001750,0.249994,0,0);-ms-transform:matrix(0.008655,-0.000061,0.001750,0.249994,0,0);-webkit-transform:matrix(0.008655,-0.000061,0.001750,0.249994,0,0);}
.m2_c00168{transform:matrix(0.013520,-0.000095,0.001750,0.249994,0,0);-ms-transform:matrix(0.013520,-0.000095,0.001750,0.249994,0,0);-webkit-transform:matrix(0.013520,-0.000095,0.001750,0.249994,0,0);}
.m9_c00168{transform:matrix(0.077788,-0.000545,0.001750,0.249994,0,0);-ms-transform:matrix(0.077788,-0.000545,0.001750,0.249994,0,0);-webkit-transform:matrix(0.077788,-0.000545,0.001750,0.249994,0,0);}
.m16_c00168{transform:matrix(0.132977,0.001463,-0.002750,0.249985,0,0);-ms-transform:matrix(0.132977,0.001463,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.132977,0.001463,-0.002750,0.249985,0,0);}
.m18_c00168{transform:matrix(0.136862,0.001505,-0.002750,0.249985,0,0);-ms-transform:matrix(0.136862,0.001505,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.136862,0.001505,-0.002750,0.249985,0,0);}
.m15_c00168{transform:matrix(0.145671,0.001602,-0.002750,0.249985,0,0);-ms-transform:matrix(0.145671,0.001602,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.145671,0.001602,-0.002750,0.249985,0,0);}
.m17_c00168{transform:matrix(0.156601,0.001723,-0.002750,0.249985,0,0);-ms-transform:matrix(0.156601,0.001723,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.156601,0.001723,-0.002750,0.249985,0,0);}
.m1_c00168{transform:matrix(0.164746,-0.001153,0.001750,0.249994,0,0);-ms-transform:matrix(0.164746,-0.001153,0.001750,0.249994,0,0);-webkit-transform:matrix(0.164746,-0.001153,0.001750,0.249994,0,0);}
.m5_c00168{transform:matrix(0.171081,-0.001198,0.001750,0.249994,0,0);-ms-transform:matrix(0.171081,-0.001198,0.001750,0.249994,0,0);-webkit-transform:matrix(0.171081,-0.001198,0.001750,0.249994,0,0);}
.m12_c00168{transform:matrix(0.195758,0.002153,-0.002750,0.249985,0,0);-ms-transform:matrix(0.195758,0.002153,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.195758,0.002153,-0.002750,0.249985,0,0);}
.m19_c00168{transform:matrix(0.206817,0.002275,-0.002750,0.249985,0,0);-ms-transform:matrix(0.206817,0.002275,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.206817,0.002275,-0.002750,0.249985,0,0);}
.m14_c00168{transform:matrix(0.210942,0.002320,-0.002750,0.249985,0,0);-ms-transform:matrix(0.210942,0.002320,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.210942,0.002320,-0.002750,0.249985,0,0);}
.m7_c00168{transform:matrix(0.217030,-0.001519,0.001750,0.249994,0,0);-ms-transform:matrix(0.217030,-0.001519,0.001750,0.249994,0,0);-webkit-transform:matrix(0.217030,-0.001519,0.001750,0.249994,0,0);}
.m13_c00168{transform:matrix(0.217892,0.002397,-0.002750,0.249985,0,0);-ms-transform:matrix(0.217892,0.002397,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.217892,0.002397,-0.002750,0.249985,0,0);}
.m1a_c00168{transform:matrix(0.231571,0.002547,-0.002750,0.249985,0,0);-ms-transform:matrix(0.231571,0.002547,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.231571,0.002547,-0.002750,0.249985,0,0);}
.me_c00168{transform:matrix(0.255580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255580,0.000000,0.000000,0.250000,0,0);}
.m10_c00168{transform:matrix(0.292240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292240,0.000000,0.000000,0.250000,0,0);}
.m11_c00168{transform:matrix(0.297022,0.003267,-0.002750,0.249985,0,0);-ms-transform:matrix(0.297022,0.003267,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.297022,0.003267,-0.002750,0.249985,0,0);}
.ma_c00168{transform:matrix(0.364871,-0.002554,0.001750,0.249994,0,0);-ms-transform:matrix(0.364871,-0.002554,0.001750,0.249994,0,0);-webkit-transform:matrix(0.364871,-0.002554,0.001750,0.249994,0,0);}
.mf_c00168{transform:matrix(0.478100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478100,0.000000,0.000000,0.250000,0,0);}
.m4_c00168{transform:matrix(0.484058,-0.003388,0.001750,0.249994,0,0);-ms-transform:matrix(0.484058,-0.003388,0.001750,0.249994,0,0);-webkit-transform:matrix(0.484058,-0.003388,0.001750,0.249994,0,0);}
.mb_c00168{transform:matrix(0.530337,-0.003712,0.001750,0.249994,0,0);-ms-transform:matrix(0.530337,-0.003712,0.001750,0.249994,0,0);-webkit-transform:matrix(0.530337,-0.003712,0.001750,0.249994,0,0);}
.m0_c00168{transform:matrix(1.074204,-0.007519,0.001750,0.249994,0,0);-ms-transform:matrix(1.074204,-0.007519,0.001750,0.249994,0,0);-webkit-transform:matrix(1.074204,-0.007519,0.001750,0.249994,0,0);}
.m8_c00168{transform:matrix(1.909068,-0.013363,0.001750,0.249994,0,0);-ms-transform:matrix(1.909068,-0.013363,0.001750,0.249994,0,0);-webkit-transform:matrix(1.909068,-0.013363,0.001750,0.249994,0,0);}
.md_c00168{transform:matrix(2.095520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.095520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.095520,0.000000,0.000000,0.250000,0,0);}
.mc_c00168{transform:matrix(2.136930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.136930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.136930,0.000000,0.000000,0.250000,0,0);}
.v0_c00168{vertical-align:0.000000px;}
.ls0_c00168{letter-spacing:0.000000px;}
.sc__c00168{text-shadow:none;}
.sc0_c00168{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__c00168{-webkit-text-stroke:0px transparent;}
.sc0_c00168{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00168{word-spacing:0.000000px;}
.fc0_c00168{color:transparent;}
.fs3_c00168{font-size:66.000000px;}
.fs2_c00168{font-size:78.001911px;}
.fs4_c00168{font-size:96.000000px;}
.fs1_c00168{font-size:156.003822px;}
.fs5_c00168{font-size:174.010527px;}
.fs0_c00168{font-size:372.009114px;}
.y0_c00168{bottom:0.000000px;}
.y1a_c00168{bottom:67.546455px;}
.y19_c00168{bottom:68.237343px;}
.y18_c00168{bottom:68.701554px;}
.y17_c00168{bottom:69.304728px;}
.y16_c00168{bottom:69.993174px;}
.y15_c00168{bottom:70.517923px;}
.y14_c00168{bottom:70.889405px;}
.y13_c00168{bottom:71.260638px;}
.y12_c00168{bottom:72.207887px;}
.y11_c00168{bottom:73.713000px;}
.y10_c00168{bottom:163.066500px;}
.yf_c00168{bottom:164.116500px;}
.ye_c00168{bottom:166.060500px;}
.yd_c00168{bottom:197.772000px;}
.yc_c00168{bottom:432.550170px;}
.yb_c00168{bottom:434.098230px;}
.ya_c00168{bottom:436.075128px;}
.y7_c00168{bottom:442.187600px;}
.y9_c00168{bottom:444.423996px;}
.y6_c00168{bottom:445.720257px;}
.y8_c00168{bottom:448.135479px;}
.y5_c00168{bottom:448.364248px;}
.y4_c00168{bottom:450.652319px;}
.y3_c00168{bottom:452.265042px;}
.y2_c00168{bottom:455.226172px;}
.y1_c00168{bottom:456.562500px;}
.h4_c00168{height:66.000000px;}
.h3_c00168{height:78.001911px;}
.h5_c00168{height:96.000000px;}
.h2_c00168{height:156.003822px;}
.h6_c00168{height:174.010527px;}
.h1_c00168{height:372.009114px;}
.h0_c00168{height:682.500000px;}
.w1_c00168{width:945.750000px;}
.w0_c00168{width:946.050000px;}
.x0_c00168{left:0.000000px;}
.x10_c00168{left:25.122000px;}
.x6_c00168{left:143.000971px;}
.x11_c00168{left:161.950500px;}
.x1_c00168{left:196.983711px;}
.x12_c00168{left:248.064000px;}
.x13_c00168{left:281.812500px;}
.x7_c00168{left:291.465225px;}
.x2_c00168{left:304.539769px;}
.x14_c00168{left:315.583500px;}
.x15_c00168{left:363.288000px;}
.x16_c00168{left:425.874000px;}
.x3_c00168{left:457.053258px;}
.xd_c00168{left:464.736000px;}
.xb_c00168{left:481.140000px;}
.x17_c00168{left:522.909000px;}
.x18_c00168{left:585.717000px;}
.x8_c00168{left:625.416027px;}
.x4_c00168{left:633.295900px;}
.xc_c00168{left:658.800000px;}
.xe_c00168{left:680.776500px;}
.x9_c00168{left:704.519741px;}
.xa_c00168{left:766.453611px;}
.xf_c00168{left:797.397000px;}
.x5_c00168{left:868.809668px;}
@media print{
.v0_c00168{vertical-align:0.000000pt;}
.ls0_c00168{letter-spacing:0.000000pt;}
.ws0_c00168{word-spacing:0.000000pt;}
.fs3_c00168{font-size:58.666667pt;}
.fs2_c00168{font-size:69.335032pt;}
.fs4_c00168{font-size:85.333333pt;}
.fs1_c00168{font-size:138.670064pt;}
.fs5_c00168{font-size:154.676024pt;}
.fs0_c00168{font-size:330.674768pt;}
.y0_c00168{bottom:0.000000pt;}
.y1a_c00168{bottom:60.041293pt;}
.y19_c00168{bottom:60.655416pt;}
.y18_c00168{bottom:61.068048pt;}
.y17_c00168{bottom:61.604203pt;}
.y16_c00168{bottom:62.216155pt;}
.y15_c00168{bottom:62.682599pt;}
.y14_c00168{bottom:63.012804pt;}
.y13_c00168{bottom:63.342789pt;}
.y12_c00168{bottom:64.184788pt;}
.y11_c00168{bottom:65.522667pt;}
.y10_c00168{bottom:144.948000pt;}
.yf_c00168{bottom:145.881333pt;}
.ye_c00168{bottom:147.609333pt;}
.yd_c00168{bottom:175.797333pt;}
.yc_c00168{bottom:384.489040pt;}
.yb_c00168{bottom:385.865093pt;}
.ya_c00168{bottom:387.622336pt;}
.y7_c00168{bottom:393.055644pt;}
.y9_c00168{bottom:395.043552pt;}
.y6_c00168{bottom:396.195784pt;}
.y8_c00168{bottom:398.342648pt;}
.y5_c00168{bottom:398.545999pt;}
.y4_c00168{bottom:400.579839pt;}
.y3_c00168{bottom:402.013371pt;}
.y2_c00168{bottom:404.645487pt;}
.y1_c00168{bottom:405.833333pt;}
.h4_c00168{height:58.666667pt;}
.h3_c00168{height:69.335032pt;}
.h5_c00168{height:85.333333pt;}
.h2_c00168{height:138.670064pt;}
.h6_c00168{height:154.676024pt;}
.h1_c00168{height:330.674768pt;}
.h0_c00168{height:606.666667pt;}
.w1_c00168{width:840.666667pt;}
.w0_c00168{width:840.933333pt;}
.x0_c00168{left:0.000000pt;}
.x10_c00168{left:22.330667pt;}
.x6_c00168{left:127.111975pt;}
.x11_c00168{left:143.956000pt;}
.x1_c00168{left:175.096632pt;}
.x12_c00168{left:220.501333pt;}
.x13_c00168{left:250.500000pt;}
.x7_c00168{left:259.080200pt;}
.x2_c00168{left:270.702017pt;}
.x14_c00168{left:280.518667pt;}
.x15_c00168{left:322.922667pt;}
.x16_c00168{left:378.554667pt;}
.x3_c00168{left:406.269563pt;}
.xd_c00168{left:413.098667pt;}
.xb_c00168{left:427.680000pt;}
.x17_c00168{left:464.808000pt;}
.x18_c00168{left:520.637333pt;}
.x8_c00168{left:555.925357pt;}
.x4_c00168{left:562.929689pt;}
.xc_c00168{left:585.600000pt;}
.xe_c00168{left:605.134667pt;}
.x9_c00168{left:626.239769pt;}
.xa_c00168{left:681.292099pt;}
.xf_c00168{left:708.797333pt;}
.x5_c00168{left:772.275260pt;}
}





/* 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_c00169 {
    display:none;
  }
  .loading-indicator_c00169.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00169 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_c00169 { 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_c00169" -> "#page-container .classname_c00169")
 */
.pf_c00169 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00169 { /* 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_c00169.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00169 { /* 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_c00169 { /* 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_c00169 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00169 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00169 {overflow:visible;}
  }
}
.c_c00169 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00169 { /* 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_c00169:after { /* webkit #35443 */
  content: '';
}
.t_c00169:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00169 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 */
}
.__c00169 { /* 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_c00169 { /* info for Javascript */
  display:none;
}
.l_c00169 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00169 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00169 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00169: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_c00169 {
    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_c00169.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00169.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_c00169 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00169{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00169;src:url('chunks/assets/font_041d900c6b91d2cee60dcef9.woff2')format("woff");}.ff1_c00169{font-family:ff1_c00169;line-height:1.000000;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;}
.m0_c00169{transform:matrix(0.321105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321105,0.000000,0.000000,0.250000,0,0);}
.m1_c00169{transform:matrix(0.492325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492325,0.000000,0.000000,0.250000,0,0);}
.m2_c00169{transform:matrix(0.647610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.647610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.647610,0.000000,0.000000,0.250000,0,0);}
.v0_c00169{vertical-align:0.000000px;}
.ls0_c00169{letter-spacing:0.000000px;}
.sc__c00169{text-shadow:none;}
.sc0_c00169{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__c00169{-webkit-text-stroke:0px transparent;}
.sc0_c00169{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00169{word-spacing:0.000000px;}
.fc0_c00169{color:transparent;}
.fs1_c00169{font-size:18.000000px;}
.fs0_c00169{font-size:66.000000px;}
.y0_c00169{bottom:0.000000px;}
.y2_c00169{bottom:260.824500px;}
.y1_c00169{bottom:273.012000px;}
.h2_c00169{height:18.000000px;}
.h1_c00169{height:66.000000px;}
.h0_c00169{height:682.500000px;}
.w1_c00169{width:945.750000px;}
.w0_c00169{width:946.050000px;}
.x0_c00169{left:0.000000px;}
.x1_c00169{left:539.730000px;}
.x2_c00169{left:567.000000px;}
.x3_c00169{left:593.730000px;}
@media print{
.v0_c00169{vertical-align:0.000000pt;}
.ls0_c00169{letter-spacing:0.000000pt;}
.ws0_c00169{word-spacing:0.000000pt;}
.fs1_c00169{font-size:16.000000pt;}
.fs0_c00169{font-size:58.666667pt;}
.y0_c00169{bottom:0.000000pt;}
.y2_c00169{bottom:231.844000pt;}
.y1_c00169{bottom:242.677333pt;}
.h2_c00169{height:16.000000pt;}
.h1_c00169{height:58.666667pt;}
.h0_c00169{height:606.666667pt;}
.w1_c00169{width:840.666667pt;}
.w0_c00169{width:840.933333pt;}
.x0_c00169{left:0.000000pt;}
.x1_c00169{left:479.760000pt;}
.x2_c00169{left:504.000000pt;}
.x3_c00169{left:527.760000pt;}
}





/* 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_c00170 {
    display:none;
  }
  .loading-indicator_c00170.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00170 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_c00170 { 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_c00170" -> "#page-container .classname_c00170")
 */
.pf_c00170 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00170 { /* 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_c00170.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00170 { /* 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_c00170 { /* 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_c00170 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00170 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00170 {overflow:visible;}
  }
}
.c_c00170 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00170 { /* 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_c00170:after { /* webkit #35443 */
  content: '';
}
.t_c00170:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00170 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 */
}
.__c00170 { /* 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_c00170 { /* info for Javascript */
  display:none;
}
.l_c00170 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00170 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00170 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00170: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_c00170 {
    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_c00170.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00170.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_c00170 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00170{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00170;src:url('chunks/assets/font_7c6b9abe6ee2a268480c528b.woff2')format("woff");}.ff1_c00170{font-family:ff1_c00170;line-height:1.000000;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;}
.m18_c00170{transform:matrix(0.042421,0.000551,-0.003250,0.249979,0,0);-ms-transform:matrix(0.042421,0.000551,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.042421,0.000551,-0.003250,0.249979,0,0);}
.m5_c00170{transform:matrix(0.047431,0.000617,-0.003250,0.249979,0,0);-ms-transform:matrix(0.047431,0.000617,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.047431,0.000617,-0.003250,0.249979,0,0);}
.m7_c00170{transform:matrix(0.061840,0.000804,-0.003250,0.249979,0,0);-ms-transform:matrix(0.061840,0.000804,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.061840,0.000804,-0.003250,0.249979,0,0);}
.m4_c00170{transform:matrix(0.074994,0.000975,-0.003250,0.249979,0,0);-ms-transform:matrix(0.074994,0.000975,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.074994,0.000975,-0.003250,0.249979,0,0);}
.m10_c00170{transform:matrix(0.170751,0.002220,-0.003250,0.249979,0,0);-ms-transform:matrix(0.170751,0.002220,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.170751,0.002220,-0.003250,0.249979,0,0);}
.m1e_c00170{transform:matrix(0.174625,0.002270,-0.003250,0.249979,0,0);-ms-transform:matrix(0.174625,0.002270,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.174625,0.002270,-0.003250,0.249979,0,0);}
.m3_c00170{transform:matrix(0.218387,0.002839,-0.003250,0.249979,0,0);-ms-transform:matrix(0.218387,0.002839,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.218387,0.002839,-0.003250,0.249979,0,0);}
.m2_c00170{transform:matrix(0.264743,0.003442,-0.003250,0.249979,0,0);-ms-transform:matrix(0.264743,0.003442,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.264743,0.003442,-0.003250,0.249979,0,0);}
.m0_c00170{transform:matrix(0.269237,0.003500,-0.003250,0.249979,0,0);-ms-transform:matrix(0.269237,0.003500,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.269237,0.003500,-0.003250,0.249979,0,0);}
.m8_c00170{transform:matrix(0.291220,0.003786,-0.003250,0.249979,0,0);-ms-transform:matrix(0.291220,0.003786,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.291220,0.003786,-0.003250,0.249979,0,0);}
.mc_c00170{transform:matrix(0.380058,0.004941,-0.003250,0.249979,0,0);-ms-transform:matrix(0.380058,0.004941,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.380058,0.004941,-0.003250,0.249979,0,0);}
.mb_c00170{transform:matrix(0.380133,0.004942,-0.003250,0.249979,0,0);-ms-transform:matrix(0.380133,0.004942,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.380133,0.004942,-0.003250,0.249979,0,0);}
.md_c00170{transform:matrix(0.404466,0.005258,-0.003250,0.249979,0,0);-ms-transform:matrix(0.404466,0.005258,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.404466,0.005258,-0.003250,0.249979,0,0);}
.m9_c00170{transform:matrix(0.412520,0.005363,-0.003250,0.249979,0,0);-ms-transform:matrix(0.412520,0.005363,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.412520,0.005363,-0.003250,0.249979,0,0);}
.m13_c00170{transform:matrix(0.431849,0.005614,-0.003250,0.249979,0,0);-ms-transform:matrix(0.431849,0.005614,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.431849,0.005614,-0.003250,0.249979,0,0);}
.m14_c00170{transform:matrix(0.463266,0.006022,-0.003250,0.249979,0,0);-ms-transform:matrix(0.463266,0.006022,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.463266,0.006022,-0.003250,0.249979,0,0);}
.m15_c00170{transform:matrix(0.482064,0.006267,-0.003250,0.249979,0,0);-ms-transform:matrix(0.482064,0.006267,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.482064,0.006267,-0.003250,0.249979,0,0);}
.m1c_c00170{transform:matrix(0.499258,0.006490,-0.003250,0.249979,0,0);-ms-transform:matrix(0.499258,0.006490,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.499258,0.006490,-0.003250,0.249979,0,0);}
.mf_c00170{transform:matrix(0.512247,0.006659,-0.003250,0.249979,0,0);-ms-transform:matrix(0.512247,0.006659,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.512247,0.006659,-0.003250,0.249979,0,0);}
.m1a_c00170{transform:matrix(0.524956,0.006824,-0.003250,0.249979,0,0);-ms-transform:matrix(0.524956,0.006824,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.524956,0.006824,-0.003250,0.249979,0,0);}
.m17_c00170{transform:matrix(0.545849,0.007096,-0.003250,0.249979,0,0);-ms-transform:matrix(0.545849,0.007096,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.545849,0.007096,-0.003250,0.249979,0,0);}
.m16_c00170{transform:matrix(0.547404,0.007116,-0.003250,0.249979,0,0);-ms-transform:matrix(0.547404,0.007116,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.547404,0.007116,-0.003250,0.249979,0,0);}
.m12_c00170{transform:matrix(0.550678,0.007159,-0.003250,0.249979,0,0);-ms-transform:matrix(0.550678,0.007159,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.550678,0.007159,-0.003250,0.249979,0,0);}
.m1_c00170{transform:matrix(0.650675,0.008459,-0.003250,0.249979,0,0);-ms-transform:matrix(0.650675,0.008459,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.650675,0.008459,-0.003250,0.249979,0,0);}
.m19_c00170{transform:matrix(0.794223,0.010325,-0.003250,0.249979,0,0);-ms-transform:matrix(0.794223,0.010325,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.794223,0.010325,-0.003250,0.249979,0,0);}
.m1b_c00170{transform:matrix(0.820556,0.010667,-0.003250,0.249979,0,0);-ms-transform:matrix(0.820556,0.010667,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.820556,0.010667,-0.003250,0.249979,0,0);}
.me_c00170{transform:matrix(1.051416,0.013668,-0.003250,0.249979,0,0);-ms-transform:matrix(1.051416,0.013668,-0.003250,0.249979,0,0);-webkit-transform:matrix(1.051416,0.013668,-0.003250,0.249979,0,0);}
.m1d_c00170{transform:matrix(1.075314,0.013979,-0.003250,0.249979,0,0);-ms-transform:matrix(1.075314,0.013979,-0.003250,0.249979,0,0);-webkit-transform:matrix(1.075314,0.013979,-0.003250,0.249979,0,0);}
.m6_c00170{transform:matrix(1.081574,0.014060,-0.003250,0.249979,0,0);-ms-transform:matrix(1.081574,0.014060,-0.003250,0.249979,0,0);-webkit-transform:matrix(1.081574,0.014060,-0.003250,0.249979,0,0);}
.ma_c00170{transform:matrix(1.305280,0.016969,-0.003250,0.249979,0,0);-ms-transform:matrix(1.305280,0.016969,-0.003250,0.249979,0,0);-webkit-transform:matrix(1.305280,0.016969,-0.003250,0.249979,0,0);}
.m11_c00170{transform:matrix(3.617214,0.047024,-0.003250,0.249979,0,0);-ms-transform:matrix(3.617214,0.047024,-0.003250,0.249979,0,0);-webkit-transform:matrix(3.617214,0.047024,-0.003250,0.249979,0,0);}
.v0_c00170{vertical-align:0.000000px;}
.ls0_c00170{letter-spacing:0.000000px;}
.sc__c00170{text-shadow:none;}
.sc0_c00170{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__c00170{-webkit-text-stroke:0px transparent;}
.sc0_c00170{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00170{word-spacing:0.000000px;}
.fc0_c00170{color:transparent;}
.fs0_c00170{font-size:18.001521px;}
.fs2_c00170{font-size:30.002535px;}
.fs1_c00170{font-size:60.005070px;}
.y0_c00170{bottom:0.000000px;}
.y20_c00170{bottom:658.937985px;}
.y1c_c00170{bottom:658.938378px;}
.y1e_c00170{bottom:658.938447px;}
.y1f_c00170{bottom:658.938586px;}
.y1d_c00170{bottom:658.938817px;}
.y13_c00170{bottom:663.839859px;}
.y18_c00170{bottom:663.840105px;}
.y15_c00170{bottom:663.840119px;}
.y19_c00170{bottom:663.840234px;}
.y17_c00170{bottom:663.840256px;}
.y14_c00170{bottom:663.840298px;}
.y16_c00170{bottom:663.840328px;}
.y12_c00170{bottom:663.840330px;}
.y1a_c00170{bottom:663.840823px;}
.y1b_c00170{bottom:663.841513px;}
.ya_c00170{bottom:668.151412px;}
.yb_c00170{bottom:668.151421px;}
.yc_c00170{bottom:668.373741px;}
.yd_c00170{bottom:668.374440px;}
.ye_c00170{bottom:668.374768px;}
.yf_c00170{bottom:668.375295px;}
.y10_c00170{bottom:668.376003px;}
.y11_c00170{bottom:668.376072px;}
.y9_c00170{bottom:673.860252px;}
.y8_c00170{bottom:674.568843px;}
.y7_c00170{bottom:676.653237px;}
.y6_c00170{bottom:676.934095px;}
.y5_c00170{bottom:677.527149px;}
.y4_c00170{bottom:677.829262px;}
.y3_c00170{bottom:678.144870px;}
.y2_c00170{bottom:678.622971px;}
.y1_c00170{bottom:678.795000px;}
.h1_c00170{height:18.001521px;}
.h3_c00170{height:30.002535px;}
.h2_c00170{height:60.005070px;}
.h0_c00170{height:682.500000px;}
.w1_c00170{width:945.750000px;}
.w0_c00170{width:946.050000px;}
.x0_c00170{left:0.000000px;}
.x1_c00170{left:560.740500px;}
.x2_c00170{left:573.973500px;}
.xa_c00170{left:578.342631px;}
.xc_c00170{left:598.054351px;}
.xb_c00170{left:606.154331px;}
.x3_c00170{left:610.750500px;}
.x4_c00170{left:635.028000px;}
.x11_c00170{left:643.150047px;}
.x5_c00170{left:658.267500px;}
.x12_c00170{left:683.923931px;}
.xd_c00170{left:694.453153px;}
.x13_c00170{left:699.585082px;}
.x6_c00170{left:703.887000px;}
.x14_c00170{left:712.277227px;}
.x7_c00170{left:725.491500px;}
.x15_c00170{left:783.833318px;}
.x1a_c00170{left:798.416568px;}
.x1b_c00170{left:814.077720px;}
.xe_c00170{left:818.933694px;}
.x1c_c00170{left:838.110276px;}
.x16_c00170{left:843.508899px;}
.x1d_c00170{left:861.872793px;}
.x17_c00170{left:881.582334px;}
.x8_c00170{left:885.829500px;}
.xf_c00170{left:896.430798px;}
.x18_c00170{left:906.695085px;}
.x19_c00170{left:915.066509px;}
.x10_c00170{left:936.124506px;}
.x9_c00170{left:940.336500px;}
@media print{
.v0_c00170{vertical-align:0.000000pt;}
.ls0_c00170{letter-spacing:0.000000pt;}
.ws0_c00170{word-spacing:0.000000pt;}
.fs0_c00170{font-size:16.001352pt;}
.fs2_c00170{font-size:26.668920pt;}
.fs1_c00170{font-size:53.337840pt;}
.y0_c00170{bottom:0.000000pt;}
.y20_c00170{bottom:585.722653pt;}
.y1c_c00170{bottom:585.723003pt;}
.y1e_c00170{bottom:585.723064pt;}
.y1f_c00170{bottom:585.723188pt;}
.y1d_c00170{bottom:585.723393pt;}
.y13_c00170{bottom:590.079875pt;}
.y18_c00170{bottom:590.080093pt;}
.y15_c00170{bottom:590.080105pt;}
.y19_c00170{bottom:590.080208pt;}
.y17_c00170{bottom:590.080228pt;}
.y14_c00170{bottom:590.080265pt;}
.y16_c00170{bottom:590.080292pt;}
.y12_c00170{bottom:590.080293pt;}
.y1a_c00170{bottom:590.080732pt;}
.y1b_c00170{bottom:590.081345pt;}
.ya_c00170{bottom:593.912367pt;}
.yb_c00170{bottom:593.912375pt;}
.yc_c00170{bottom:594.109992pt;}
.yd_c00170{bottom:594.110613pt;}
.ye_c00170{bottom:594.110905pt;}
.yf_c00170{bottom:594.111373pt;}
.y10_c00170{bottom:594.112003pt;}
.y11_c00170{bottom:594.112064pt;}
.y9_c00170{bottom:598.986891pt;}
.y8_c00170{bottom:599.616749pt;}
.y7_c00170{bottom:601.469544pt;}
.y6_c00170{bottom:601.719196pt;}
.y5_c00170{bottom:602.246355pt;}
.y4_c00170{bottom:602.514900pt;}
.y3_c00170{bottom:602.795440pt;}
.y2_c00170{bottom:603.220419pt;}
.y1_c00170{bottom:603.373333pt;}
.h1_c00170{height:16.001352pt;}
.h3_c00170{height:26.668920pt;}
.h2_c00170{height:53.337840pt;}
.h0_c00170{height:606.666667pt;}
.w1_c00170{width:840.666667pt;}
.w0_c00170{width:840.933333pt;}
.x0_c00170{left:0.000000pt;}
.x1_c00170{left:498.436000pt;}
.x2_c00170{left:510.198667pt;}
.xa_c00170{left:514.082339pt;}
.xc_c00170{left:531.603868pt;}
.xb_c00170{left:538.803849pt;}
.x3_c00170{left:542.889333pt;}
.x4_c00170{left:564.469333pt;}
.x11_c00170{left:571.688931pt;}
.x5_c00170{left:585.126667pt;}
.x12_c00170{left:607.932383pt;}
.xd_c00170{left:617.291692pt;}
.x13_c00170{left:621.853407pt;}
.x6_c00170{left:625.677333pt;}
.x14_c00170{left:633.135313pt;}
.x7_c00170{left:644.881333pt;}
.x15_c00170{left:696.740727pt;}
.x1a_c00170{left:709.703616pt;}
.x1b_c00170{left:723.624640pt;}
.xe_c00170{left:727.941061pt;}
.x1c_c00170{left:744.986912pt;}
.x16_c00170{left:749.785688pt;}
.x1d_c00170{left:766.109149pt;}
.x17_c00170{left:783.628741pt;}
.x8_c00170{left:787.404000pt;}
.xf_c00170{left:796.827376pt;}
.x18_c00170{left:805.951187pt;}
.x19_c00170{left:813.392452pt;}
.x10_c00170{left:832.110672pt;}
.x9_c00170{left:835.854667pt;}
}





/* 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_c00171 {
    display:none;
  }
  .loading-indicator_c00171.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00171 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_c00171 { 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_c00171" -> "#page-container .classname_c00171")
 */
.pf_c00171 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00171 { /* 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_c00171.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00171 { /* 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_c00171 { /* 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_c00171 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00171 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00171 {overflow:visible;}
  }
}
.c_c00171 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00171 { /* 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_c00171:after { /* webkit #35443 */
  content: '';
}
.t_c00171:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00171 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 */
}
.__c00171 { /* 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_c00171 { /* info for Javascript */
  display:none;
}
.l_c00171 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00171 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00171 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00171: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_c00171 {
    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_c00171.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00171.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_c00171 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00171{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00171;src:url('chunks/assets/font_132af6d682320e9b248f68cf.woff2')format("woff");}.ff1_c00171{font-family:ff1_c00171;line-height:1.000000;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;}
.md_c00171{transform:matrix(0.028456,-0.000484,0.004249,0.249964,0,0);-ms-transform:matrix(0.028456,-0.000484,0.004249,0.249964,0,0);-webkit-transform:matrix(0.028456,-0.000484,0.004249,0.249964,0,0);}
.ma_c00171{transform:matrix(0.037480,-0.000637,0.004249,0.249964,0,0);-ms-transform:matrix(0.037480,-0.000637,0.004249,0.249964,0,0);-webkit-transform:matrix(0.037480,-0.000637,0.004249,0.249964,0,0);}
.mb_c00171{transform:matrix(0.041159,-0.000700,0.004249,0.249964,0,0);-ms-transform:matrix(0.041159,-0.000700,0.004249,0.249964,0,0);-webkit-transform:matrix(0.041159,-0.000700,0.004249,0.249964,0,0);}
.mf_c00171{transform:matrix(0.070280,-0.001195,0.004249,0.249964,0,0);-ms-transform:matrix(0.070280,-0.001195,0.004249,0.249964,0,0);-webkit-transform:matrix(0.070280,-0.001195,0.004249,0.249964,0,0);}
.m1c_c00171{transform:matrix(0.099506,-0.002388,0.005998,0.249928,0,0);-ms-transform:matrix(0.099506,-0.002388,0.005998,0.249928,0,0);-webkit-transform:matrix(0.099506,-0.002388,0.005998,0.249928,0,0);}
.m1f_c00171{transform:matrix(0.137415,-0.003298,0.005998,0.249928,0,0);-ms-transform:matrix(0.137415,-0.003298,0.005998,0.249928,0,0);-webkit-transform:matrix(0.137415,-0.003298,0.005998,0.249928,0,0);}
.m17_c00171{transform:matrix(0.160389,-0.003849,0.005998,0.249928,0,0);-ms-transform:matrix(0.160389,-0.003849,0.005998,0.249928,0,0);-webkit-transform:matrix(0.160389,-0.003849,0.005998,0.249928,0,0);}
.m3_c00171{transform:matrix(0.193195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193195,0.000000,0.000000,0.250000,0,0);}
.m2_c00171{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m15_c00171{transform:matrix(0.236721,-0.004024,0.004249,0.249964,0,0);-ms-transform:matrix(0.236721,-0.004024,0.004249,0.249964,0,0);-webkit-transform:matrix(0.236721,-0.004024,0.004249,0.249964,0,0);}
.m0_c00171{transform:matrix(0.242075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242075,0.000000,0.000000,0.250000,0,0);}
.m19_c00171{transform:matrix(0.318488,-0.007644,0.005998,0.249928,0,0);-ms-transform:matrix(0.318488,-0.007644,0.005998,0.249928,0,0);-webkit-transform:matrix(0.318488,-0.007644,0.005998,0.249928,0,0);}
.m14_c00171{transform:matrix(0.364912,-0.006204,0.004249,0.249964,0,0);-ms-transform:matrix(0.364912,-0.006204,0.004249,0.249964,0,0);-webkit-transform:matrix(0.364912,-0.006204,0.004249,0.249964,0,0);}
.m4_c00171{transform:matrix(0.387625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387625,0.000000,0.000000,0.250000,0,0);}
.m1e_c00171{transform:matrix(0.464876,-0.011157,0.005998,0.249928,0,0);-ms-transform:matrix(0.464876,-0.011157,0.005998,0.249928,0,0);-webkit-transform:matrix(0.464876,-0.011157,0.005998,0.249928,0,0);}
.m10_c00171{transform:matrix(0.477711,-0.008121,0.004249,0.249964,0,0);-ms-transform:matrix(0.477711,-0.008121,0.004249,0.249964,0,0);-webkit-transform:matrix(0.477711,-0.008121,0.004249,0.249964,0,0);}
.m1d_c00171{transform:matrix(0.481441,-0.011555,0.005998,0.249928,0,0);-ms-transform:matrix(0.481441,-0.011555,0.005998,0.249928,0,0);-webkit-transform:matrix(0.481441,-0.011555,0.005998,0.249928,0,0);}
.m11_c00171{transform:matrix(0.485095,-0.008247,0.004249,0.249964,0,0);-ms-transform:matrix(0.485095,-0.008247,0.004249,0.249964,0,0);-webkit-transform:matrix(0.485095,-0.008247,0.004249,0.249964,0,0);}
.m9_c00171{transform:matrix(0.542602,-0.009224,0.004249,0.249964,0,0);-ms-transform:matrix(0.542602,-0.009224,0.004249,0.249964,0,0);-webkit-transform:matrix(0.542602,-0.009224,0.004249,0.249964,0,0);}
.m18_c00171{transform:matrix(0.546758,-0.013122,0.005998,0.249928,0,0);-ms-transform:matrix(0.546758,-0.013122,0.005998,0.249928,0,0);-webkit-transform:matrix(0.546758,-0.013122,0.005998,0.249928,0,0);}
.m1a_c00171{transform:matrix(0.598198,-0.014357,0.005998,0.249928,0,0);-ms-transform:matrix(0.598198,-0.014357,0.005998,0.249928,0,0);-webkit-transform:matrix(0.598198,-0.014357,0.005998,0.249928,0,0);}
.m6_c00171{transform:matrix(0.668753,-0.011369,0.004249,0.249964,0,0);-ms-transform:matrix(0.668753,-0.011369,0.004249,0.249964,0,0);-webkit-transform:matrix(0.668753,-0.011369,0.004249,0.249964,0,0);}
.m7_c00171{transform:matrix(0.675607,-0.011485,0.004249,0.249964,0,0);-ms-transform:matrix(0.675607,-0.011485,0.004249,0.249964,0,0);-webkit-transform:matrix(0.675607,-0.011485,0.004249,0.249964,0,0);}
.me_c00171{transform:matrix(0.692505,-0.011773,0.004249,0.249964,0,0);-ms-transform:matrix(0.692505,-0.011773,0.004249,0.249964,0,0);-webkit-transform:matrix(0.692505,-0.011773,0.004249,0.249964,0,0);}
.mc_c00171{transform:matrix(0.824351,-0.014014,0.004249,0.249964,0,0);-ms-transform:matrix(0.824351,-0.014014,0.004249,0.249964,0,0);-webkit-transform:matrix(0.824351,-0.014014,0.004249,0.249964,0,0);}
.m16_c00171{transform:matrix(0.940774,-0.015993,0.004249,0.249964,0,0);-ms-transform:matrix(0.940774,-0.015993,0.004249,0.249964,0,0);-webkit-transform:matrix(0.940774,-0.015993,0.004249,0.249964,0,0);}
.m5_c00171{transform:matrix(1.063851,-0.018085,0.004249,0.249964,0,0);-ms-transform:matrix(1.063851,-0.018085,0.004249,0.249964,0,0);-webkit-transform:matrix(1.063851,-0.018085,0.004249,0.249964,0,0);}
.m1b_c00171{transform:matrix(1.069987,-0.025680,0.005998,0.249928,0,0);-ms-transform:matrix(1.069987,-0.025680,0.005998,0.249928,0,0);-webkit-transform:matrix(1.069987,-0.025680,0.005998,0.249928,0,0);}
.m20_c00171{transform:matrix(1.082783,-0.025987,0.005998,0.249928,0,0);-ms-transform:matrix(1.082783,-0.025987,0.005998,0.249928,0,0);-webkit-transform:matrix(1.082783,-0.025987,0.005998,0.249928,0,0);}
.m8_c00171{transform:matrix(1.099101,-0.018685,0.004249,0.249964,0,0);-ms-transform:matrix(1.099101,-0.018685,0.004249,0.249964,0,0);-webkit-transform:matrix(1.099101,-0.018685,0.004249,0.249964,0,0);}
.m12_c00171{transform:matrix(1.244585,-0.021158,0.004249,0.249964,0,0);-ms-transform:matrix(1.244585,-0.021158,0.004249,0.249964,0,0);-webkit-transform:matrix(1.244585,-0.021158,0.004249,0.249964,0,0);}
.m1_c00171{transform:matrix(1.379125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.379125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.379125,0.000000,0.000000,0.250000,0,0);}
.m13_c00171{transform:matrix(1.970140,-0.033492,0.004249,0.249964,0,0);-ms-transform:matrix(1.970140,-0.033492,0.004249,0.249964,0,0);-webkit-transform:matrix(1.970140,-0.033492,0.004249,0.249964,0,0);}
.v0_c00171{vertical-align:0.000000px;}
.ls0_c00171{letter-spacing:0.000000px;}
.sc__c00171{text-shadow:none;}
.sc0_c00171{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__c00171{-webkit-text-stroke:0px transparent;}
.sc0_c00171{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00171{word-spacing:0.000000px;}
.fc0_c00171{color:transparent;}
.fs1_c00171{font-size:12.000000px;}
.fs0_c00171{font-size:18.000000px;}
.fs4_c00171{font-size:30.004335px;}
.fs3_c00171{font-size:42.006069px;}
.fs2_c00171{font-size:66.000000px;}
.fs5_c00171{font-size:66.019005px;}
.y0_c00171{bottom:0.000000px;}
.y16_c00171{bottom:134.719500px;}
.y17_c00171{bottom:135.392700px;}
.y18_c00171{bottom:136.525944px;}
.y19_c00171{bottom:137.320320px;}
.y1a_c00171{bottom:138.722664px;}
.y1b_c00171{bottom:140.696796px;}
.y1c_c00171{bottom:141.293712px;}
.y1d_c00171{bottom:142.283352px;}
.y1e_c00171{bottom:144.714936px;}
.y1f_c00171{bottom:144.878664px;}
.y4_c00171{bottom:173.886000px;}
.y5_c00171{bottom:174.803082px;}
.y6_c00171{bottom:175.403888px;}
.y7_c00171{bottom:176.039705px;}
.yb_c00171{bottom:176.312450px;}
.yc_c00171{bottom:176.721338px;}
.yd_c00171{bottom:176.809623px;}
.ye_c00171{bottom:177.086580px;}
.yf_c00171{bottom:177.330228px;}
.y8_c00171{bottom:177.414945px;}
.y10_c00171{bottom:177.902520px;}
.y11_c00171{bottom:178.234198px;}
.y12_c00171{bottom:179.633681px;}
.y13_c00171{bottom:180.460335px;}
.y9_c00171{bottom:180.842579px;}
.y14_c00171{bottom:181.004984px;}
.y15_c00171{bottom:181.047171px;}
.ya_c00171{bottom:181.309127px;}
.y3_c00171{bottom:193.192500px;}
.y2_c00171{bottom:202.224000px;}
.y1_c00171{bottom:204.390000px;}
.h2_c00171{height:12.000000px;}
.h1_c00171{height:18.000000px;}
.h5_c00171{height:30.004335px;}
.h4_c00171{height:42.006069px;}
.h3_c00171{height:66.000000px;}
.h6_c00171{height:66.019005px;}
.h0_c00171{height:682.500000px;}
.w1_c00171{width:945.750000px;}
.w0_c00171{width:946.050000px;}
.x0_c00171{left:0.000000px;}
.x4_c00171{left:378.865500px;}
.x1_c00171{left:401.760000px;}
.x16_c00171{left:423.525000px;}
.x5_c00171{left:432.811500px;}
.x17_c00171{left:451.575000px;}
.x6_c00171{left:468.153000px;}
.x2_c00171{left:488.970000px;}
.xb_c00171{left:495.031325px;}
.x18_c00171{left:498.793500px;}
.x7_c00171{left:505.554000px;}
.xc_c00171{left:526.497466px;}
.x19_c00171{left:531.892500px;}
.xd_c00171{left:533.279426px;}
.x3_c00171{left:536.490000px;}
.xe_c00171{left:554.601879px;}
.xf_c00171{left:573.347154px;}
.x8_c00171{left:586.450500px;}
.x1a_c00171{left:590.323500px;}
.x10_c00171{left:617.426163px;}
.x11_c00171{left:642.938397px;}
.x1b_c00171{left:672.579000px;}
.x1c_c00171{left:697.450500px;}
.x1d_c00171{left:738.685500px;}
.x12_c00171{left:750.591716px;}
.x9_c00171{left:788.076000px;}
.x13_c00171{left:814.134525px;}
.xa_c00171{left:815.520000px;}
.x1e_c00171{left:840.001500px;}
.x1f_c00171{left:846.823500px;}
.x14_c00171{left:856.057881px;}
.x15_c00171{left:859.245585px;}
@media print{
.v0_c00171{vertical-align:0.000000pt;}
.ls0_c00171{letter-spacing:0.000000pt;}
.ws0_c00171{word-spacing:0.000000pt;}
.fs1_c00171{font-size:10.666667pt;}
.fs0_c00171{font-size:16.000000pt;}
.fs4_c00171{font-size:26.670520pt;}
.fs3_c00171{font-size:37.338728pt;}
.fs2_c00171{font-size:58.666667pt;}
.fs5_c00171{font-size:58.683560pt;}
.y0_c00171{bottom:0.000000pt;}
.y16_c00171{bottom:119.750667pt;}
.y17_c00171{bottom:120.349067pt;}
.y18_c00171{bottom:121.356395pt;}
.y19_c00171{bottom:122.062507pt;}
.y1a_c00171{bottom:123.309035pt;}
.y1b_c00171{bottom:125.063819pt;}
.y1c_c00171{bottom:125.594411pt;}
.y1d_c00171{bottom:126.474091pt;}
.y1e_c00171{bottom:128.635499pt;}
.y1f_c00171{bottom:128.781035pt;}
.y4_c00171{bottom:154.565333pt;}
.y5_c00171{bottom:155.380517pt;}
.y6_c00171{bottom:155.914567pt;}
.y7_c00171{bottom:156.479737pt;}
.yb_c00171{bottom:156.722177pt;}
.yc_c00171{bottom:157.085633pt;}
.yd_c00171{bottom:157.164109pt;}
.ye_c00171{bottom:157.410293pt;}
.yf_c00171{bottom:157.626869pt;}
.y8_c00171{bottom:157.702173pt;}
.y10_c00171{bottom:158.135573pt;}
.y11_c00171{bottom:158.430399pt;}
.y12_c00171{bottom:159.674383pt;}
.y13_c00171{bottom:160.409187pt;}
.y9_c00171{bottom:160.748959pt;}
.y14_c00171{bottom:160.893319pt;}
.y15_c00171{bottom:160.930819pt;}
.ya_c00171{bottom:161.163668pt;}
.y3_c00171{bottom:171.726667pt;}
.y2_c00171{bottom:179.754667pt;}
.y1_c00171{bottom:181.680000pt;}
.h2_c00171{height:10.666667pt;}
.h1_c00171{height:16.000000pt;}
.h5_c00171{height:26.670520pt;}
.h4_c00171{height:37.338728pt;}
.h3_c00171{height:58.666667pt;}
.h6_c00171{height:58.683560pt;}
.h0_c00171{height:606.666667pt;}
.w1_c00171{width:840.666667pt;}
.w0_c00171{width:840.933333pt;}
.x0_c00171{left:0.000000pt;}
.x4_c00171{left:336.769333pt;}
.x1_c00171{left:357.120000pt;}
.x16_c00171{left:376.466667pt;}
.x5_c00171{left:384.721333pt;}
.x17_c00171{left:401.400000pt;}
.x6_c00171{left:416.136000pt;}
.x2_c00171{left:434.640000pt;}
.xb_c00171{left:440.027844pt;}
.x18_c00171{left:443.372000pt;}
.x7_c00171{left:449.381333pt;}
.xc_c00171{left:467.997748pt;}
.x19_c00171{left:472.793333pt;}
.xd_c00171{left:474.026156pt;}
.x3_c00171{left:476.880000pt;}
.xe_c00171{left:492.979448pt;}
.xf_c00171{left:509.641915pt;}
.x8_c00171{left:521.289333pt;}
.x1a_c00171{left:524.732000pt;}
.x10_c00171{left:548.823256pt;}
.x11_c00171{left:571.500797pt;}
.x1b_c00171{left:597.848000pt;}
.x1c_c00171{left:619.956000pt;}
.x1d_c00171{left:656.609333pt;}
.x12_c00171{left:667.192636pt;}
.x9_c00171{left:700.512000pt;}
.x13_c00171{left:723.675133pt;}
.xa_c00171{left:724.906667pt;}
.x1e_c00171{left:746.668000pt;}
.x1f_c00171{left:752.732000pt;}
.x14_c00171{left:760.940339pt;}
.x15_c00171{left:763.773853pt;}
}





/* 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_c00172 {
    display:none;
  }
  .loading-indicator_c00172.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00172 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_c00172 { 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_c00172" -> "#page-container .classname_c00172")
 */
.pf_c00172 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00172 { /* 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_c00172.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00172 { /* 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_c00172 { /* 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_c00172 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00172 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00172 {overflow:visible;}
  }
}
.c_c00172 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00172 { /* 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_c00172:after { /* webkit #35443 */
  content: '';
}
.t_c00172:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00172 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 */
}
.__c00172 { /* 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_c00172 { /* info for Javascript */
  display:none;
}
.l_c00172 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00172 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00172 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00172: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_c00172 {
    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_c00172.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00172.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_c00172 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00172{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00172;src:url('chunks/assets/font_6b78c10203a447bee2208e8d.woff2')format("woff");}.ff1_c00172{font-family:ff1_c00172;line-height:1.000000;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;}
.ma_c00172{transform:matrix(0.047435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.047435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.047435,0.000000,0.000000,0.250000,0,0);}
.m1_c00172{transform:matrix(0.306991,0.006754,-0.005499,0.249940,0,0);-ms-transform:matrix(0.306991,0.006754,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.306991,0.006754,-0.005499,0.249940,0,0);}
.m8_c00172{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m9_c00172{transform:matrix(0.360555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360555,0.000000,0.000000,0.250000,0,0);}
.m0_c00172{transform:matrix(0.405462,0.008920,-0.005499,0.249940,0,0);-ms-transform:matrix(0.405462,0.008920,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.405462,0.008920,-0.005499,0.249940,0,0);}
.m2_c00172{transform:matrix(0.431016,0.009482,-0.005499,0.249940,0,0);-ms-transform:matrix(0.431016,0.009482,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.431016,0.009482,-0.005499,0.249940,0,0);}
.m6_c00172{transform:matrix(0.735610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735610,0.000000,0.000000,0.250000,0,0);}
.m3_c00172{transform:matrix(0.998483,0.021967,-0.005499,0.249940,0,0);-ms-transform:matrix(0.998483,0.021967,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.998483,0.021967,-0.005499,0.249940,0,0);}
.m5_c00172{transform:matrix(1.194360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.194360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.194360,0.000000,0.000000,0.250000,0,0);}
.m7_c00172{transform:matrix(1.445855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.445855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.445855,0.000000,0.000000,0.250000,0,0);}
.mb_c00172{transform:matrix(1.809630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.809630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.809630,0.000000,0.000000,0.250000,0,0);}
.m4_c00172{transform:matrix(2.196205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.196205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.196205,0.000000,0.000000,0.250000,0,0);}
.v0_c00172{vertical-align:0.000000px;}
.ls0_c00172{letter-spacing:0.000000px;}
.sc__c00172{text-shadow:none;}
.sc0_c00172{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__c00172{-webkit-text-stroke:0px transparent;}
.sc0_c00172{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00172{word-spacing:0.000000px;}
._0_c00172{margin-left:-12.308000px;}
.fc0_c00172{color:transparent;}
.fs1_c00172{font-size:18.000000px;}
.fs2_c00172{font-size:42.000000px;}
.fs0_c00172{font-size:96.023229px;}
.y0_c00172{bottom:0.000000px;}
.y4_c00172{bottom:26.422932px;}
.y3_c00172{bottom:30.300366px;}
.y2_c00172{bottom:32.125728px;}
.y1_c00172{bottom:34.323000px;}
.y7_c00172{bottom:113.130000px;}
.y5_c00172{bottom:189.000000px;}
.y6_c00172{bottom:194.940000px;}
.h2_c00172{height:18.000000px;}
.h3_c00172{height:42.000000px;}
.h1_c00172{height:96.023229px;}
.h0_c00172{height:682.500000px;}
.w1_c00172{width:945.750000px;}
.w0_c00172{width:946.050000px;}
.x0_c00172{left:0.000000px;}
.x1_c00172{left:292.504500px;}
.x2_c00172{left:392.380500px;}
.x3_c00172{left:475.351500px;}
.x4_c00172{left:651.598500px;}
.xb_c00172{left:907.470000px;}
.x5_c00172{left:912.060000px;}
.x6_c00172{left:913.410000px;}
.x7_c00172{left:914.490000px;}
.x8_c00172{left:916.380000px;}
.x9_c00172{left:930.960000px;}
.xa_c00172{left:937.170000px;}
@media print{
.v0_c00172{vertical-align:0.000000pt;}
.ls0_c00172{letter-spacing:0.000000pt;}
.ws0_c00172{word-spacing:0.000000pt;}
._0_c00172{margin-left:-10.940445pt;}
.fs1_c00172{font-size:16.000000pt;}
.fs2_c00172{font-size:37.333333pt;}
.fs0_c00172{font-size:85.353982pt;}
.y0_c00172{bottom:0.000000pt;}
.y4_c00172{bottom:23.487051pt;}
.y3_c00172{bottom:26.933659pt;}
.y2_c00172{bottom:28.556203pt;}
.y1_c00172{bottom:30.509333pt;}
.y7_c00172{bottom:100.560000pt;}
.y5_c00172{bottom:168.000000pt;}
.y6_c00172{bottom:173.280000pt;}
.h2_c00172{height:16.000000pt;}
.h3_c00172{height:37.333333pt;}
.h1_c00172{height:85.353982pt;}
.h0_c00172{height:606.666667pt;}
.w1_c00172{width:840.666667pt;}
.w0_c00172{width:840.933333pt;}
.x0_c00172{left:0.000000pt;}
.x1_c00172{left:260.004000pt;}
.x2_c00172{left:348.782667pt;}
.x3_c00172{left:422.534667pt;}
.x4_c00172{left:579.198667pt;}
.xb_c00172{left:806.640000pt;}
.x5_c00172{left:810.720000pt;}
.x6_c00172{left:811.920000pt;}
.x7_c00172{left:812.880000pt;}
.x8_c00172{left:814.560000pt;}
.x9_c00172{left:827.520000pt;}
.xa_c00172{left:833.040000pt;}
}





/* 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_c00173 {
    display:none;
  }
  .loading-indicator_c00173.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00173 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_c00173 { 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_c00173" -> "#page-container .classname_c00173")
 */
.pf_c00173 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00173 { /* 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_c00173.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00173 { /* 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_c00173 { /* 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_c00173 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00173 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00173 {overflow:visible;}
  }
}
.c_c00173 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00173 { /* 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_c00173:after { /* webkit #35443 */
  content: '';
}
.t_c00173:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00173 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 */
}
.__c00173 { /* 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_c00173 { /* info for Javascript */
  display:none;
}
.l_c00173 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00173 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00173 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00173: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_c00173 {
    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_c00173.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00173.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_c00173 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00173{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00173;src:url('chunks/assets/font_c605e72f209fc835e906f064.woff2')format("woff");}.ff1_c00173{font-family:ff1_c00173;line-height:1.000000;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;}
.mac_c00173{transform:matrix(0.011590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.011590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.011590,0.000000,0.000000,0.250000,0,0);}
.m20_c00173{transform:matrix(0.013520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.013520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.013520,0.000000,0.000000,0.250000,0,0);}
.m36_c00173{transform:matrix(0.014574,0.000204,-0.003500,0.249976,0,0);-ms-transform:matrix(0.014574,0.000204,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.014574,0.000204,-0.003500,0.249976,0,0);}
.m6d_c00173{transform:matrix(0.018294,0.000183,-0.002500,0.249988,0,0);-ms-transform:matrix(0.018294,0.000183,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.018294,0.000183,-0.002500,0.249988,0,0);}
.m6f_c00173{transform:matrix(0.028924,0.000289,-0.002500,0.249988,0,0);-ms-transform:matrix(0.028924,0.000289,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.028924,0.000289,-0.002500,0.249988,0,0);}
.m64_c00173{transform:matrix(0.031820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.031820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.031820,0.000000,0.000000,0.250000,0,0);}
.m95_c00173{transform:matrix(0.032145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032145,0.000000,0.000000,0.250000,0,0);}
.m50_c00173{transform:matrix(0.042425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.042425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.042425,0.000000,0.000000,0.250000,0,0);}
.m7f_c00173{transform:matrix(0.044998,0.000450,-0.002500,0.249988,0,0);-ms-transform:matrix(0.044998,0.000450,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.044998,0.000450,-0.002500,0.249988,0,0);}
.ma_c00173{transform:matrix(0.045890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.045890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.045890,0.000000,0.000000,0.250000,0,0);}
.mbd_c00173{transform:matrix(0.047435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.047435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.047435,0.000000,0.000000,0.250000,0,0);}
.m24_c00173{transform:matrix(0.048460,0.000678,-0.003500,0.249976,0,0);-ms-transform:matrix(0.048460,0.000678,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.048460,0.000678,-0.003500,0.249976,0,0);}
.m75_c00173{transform:matrix(0.070286,0.000703,-0.002500,0.249988,0,0);-ms-transform:matrix(0.070286,0.000703,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.070286,0.000703,-0.002500,0.249988,0,0);}
.m98_c00173{transform:matrix(0.086490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.086490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.086490,0.000000,0.000000,0.250000,0,0);}
.m4_c00173{transform:matrix(0.095150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.095150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.095150,0.000000,0.000000,0.250000,0,0);}
.m63_c00173{transform:matrix(0.099445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.099445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.099445,0.000000,0.000000,0.250000,0,0);}
.m45_c00173{transform:matrix(0.112500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112500,0.000000,0.000000,0.250000,0,0);}
.m69_c00173{transform:matrix(0.134175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134175,0.000000,0.000000,0.250000,0,0);}
.m55_c00173{transform:matrix(0.139720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139720,0.000000,0.000000,0.250000,0,0);}
.m42_c00173{transform:matrix(0.144070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144070,0.000000,0.000000,0.250000,0,0);}
.m3f_c00173{transform:matrix(0.144451,0.002022,-0.003500,0.249976,0,0);-ms-transform:matrix(0.144451,0.002022,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.144451,0.002022,-0.003500,0.249976,0,0);}
.m60_c00173{transform:matrix(0.144705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144705,0.000000,0.000000,0.250000,0,0);}
.ma2_c00173{transform:matrix(0.145229,-0.002178,0.003750,0.249972,0,0);-ms-transform:matrix(0.145229,-0.002178,0.003750,0.249972,0,0);-webkit-transform:matrix(0.145229,-0.002178,0.003750,0.249972,0,0);}
.m5d_c00173{transform:matrix(0.148585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148585,0.000000,0.000000,0.250000,0,0);}
.m49_c00173{transform:matrix(0.152610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152610,0.000000,0.000000,0.250000,0,0);}
.m93_c00173{transform:matrix(0.153525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153525,0.000000,0.000000,0.250000,0,0);}
.m62_c00173{transform:matrix(0.153535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153535,0.000000,0.000000,0.250000,0,0);}
.m61_c00173{transform:matrix(0.157010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157010,0.000000,0.000000,0.250000,0,0);}
.m70_c00173{transform:matrix(0.158197,0.001582,-0.002500,0.249988,0,0);-ms-transform:matrix(0.158197,0.001582,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.158197,0.001582,-0.002500,0.249988,0,0);}
.m3e_c00173{transform:matrix(0.162614,0.002277,-0.003500,0.249976,0,0);-ms-transform:matrix(0.162614,0.002277,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.162614,0.002277,-0.003500,0.249976,0,0);}
.mad_c00173{transform:matrix(0.163675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163675,0.000000,0.000000,0.250000,0,0);}
.m96_c00173{transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);}
.m97_c00173{transform:matrix(0.178735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178735,0.000000,0.000000,0.250000,0,0);}
.m8b_c00173{transform:matrix(0.184076,0.001841,-0.002500,0.249988,0,0);-ms-transform:matrix(0.184076,0.001841,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.184076,0.001841,-0.002500,0.249988,0,0);}
.m2c_c00173{transform:matrix(0.198186,0.002775,-0.003500,0.249976,0,0);-ms-transform:matrix(0.198186,0.002775,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.198186,0.002775,-0.003500,0.249976,0,0);}
.m35_c00173{transform:matrix(0.202540,0.002836,-0.003500,0.249976,0,0);-ms-transform:matrix(0.202540,0.002836,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.202540,0.002836,-0.003500,0.249976,0,0);}
.mb_c00173{transform:matrix(0.205230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205230,0.000000,0.000000,0.250000,0,0);}
.ma1_c00173{transform:matrix(0.206527,-0.003098,0.003750,0.249972,0,0);-ms-transform:matrix(0.206527,-0.003098,0.003750,0.249972,0,0);-webkit-transform:matrix(0.206527,-0.003098,0.003750,0.249972,0,0);}
.m56_c00173{transform:matrix(0.212935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212935,0.000000,0.000000,0.250000,0,0);}
.mb4_c00173{transform:matrix(0.218275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218275,0.000000,0.000000,0.250000,0,0);}
.m7b_c00173{transform:matrix(0.219709,0.002197,-0.002500,0.249988,0,0);-ms-transform:matrix(0.219709,0.002197,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.219709,0.002197,-0.002500,0.249988,0,0);}
.m2f_c00173{transform:matrix(0.220663,0.003089,-0.003500,0.249976,0,0);-ms-transform:matrix(0.220663,0.003089,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.220663,0.003089,-0.003500,0.249976,0,0);}
.mb7_c00173{transform:matrix(0.222990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222990,0.000000,0.000000,0.250000,0,0);}
.m33_c00173{transform:matrix(0.225698,0.003160,-0.003500,0.249976,0,0);-ms-transform:matrix(0.225698,0.003160,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.225698,0.003160,-0.003500,0.249976,0,0);}
.m6e_c00173{transform:matrix(0.231478,0.002315,-0.002500,0.249988,0,0);-ms-transform:matrix(0.231478,0.002315,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.231478,0.002315,-0.002500,0.249988,0,0);}
.mb2_c00173{transform:matrix(0.237945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237945,0.000000,0.000000,0.250000,0,0);}
.m67_c00173{transform:matrix(0.246990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246990,0.000000,0.000000,0.250000,0,0);}
.m57_c00173{transform:matrix(0.254685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254685,0.000000,0.000000,0.250000,0,0);}
.mc_c00173{transform:matrix(0.254700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254700,0.000000,0.000000,0.250000,0,0);}
.m48_c00173{transform:matrix(0.256225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256225,0.000000,0.000000,0.250000,0,0);}
.m46_c00173{transform:matrix(0.258385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258385,0.000000,0.000000,0.250000,0,0);}
.m4f_c00173{transform:matrix(0.259615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259615,0.000000,0.000000,0.250000,0,0);}
.m32_c00173{transform:matrix(0.267564,0.003746,-0.003500,0.249976,0,0);-ms-transform:matrix(0.267564,0.003746,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.267564,0.003746,-0.003500,0.249976,0,0);}
.m1a_c00173{transform:matrix(0.270415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270415,0.000000,0.000000,0.250000,0,0);}
.m9d_c00173{transform:matrix(0.271020,-0.004065,0.003750,0.249972,0,0);-ms-transform:matrix(0.271020,-0.004065,0.003750,0.249972,0,0);-webkit-transform:matrix(0.271020,-0.004065,0.003750,0.249972,0,0);}
.m6a_c00173{transform:matrix(0.287480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287480,0.000000,0.000000,0.250000,0,0);}
.m13_c00173{transform:matrix(0.301495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301495,0.000000,0.000000,0.250000,0,0);}
.m11_c00173{transform:matrix(0.303225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303225,0.000000,0.000000,0.250000,0,0);}
.m59_c00173{transform:matrix(0.303880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303880,0.000000,0.000000,0.250000,0,0);}
.m2_c00173{transform:matrix(0.310155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310155,0.000000,0.000000,0.250000,0,0);}
.ma4_c00173{transform:matrix(0.313460,-0.004702,0.003750,0.249972,0,0);-ms-transform:matrix(0.313460,-0.004702,0.003750,0.249972,0,0);-webkit-transform:matrix(0.313460,-0.004702,0.003750,0.249972,0,0);}
.mae_c00173{transform:matrix(0.325265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325265,0.000000,0.000000,0.250000,0,0);}
.m1d_c00173{transform:matrix(0.330340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330340,0.000000,0.000000,0.250000,0,0);}
.m52_c00173{transform:matrix(0.335410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335410,0.000000,0.000000,0.250000,0,0);}
.m8d_c00173{transform:matrix(0.335555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335555,0.000000,0.000000,0.250000,0,0);}
.m3a_c00173{transform:matrix(0.357465,0.005005,-0.003500,0.249976,0,0);-ms-transform:matrix(0.357465,0.005005,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.357465,0.005005,-0.003500,0.249976,0,0);}
.m47_c00173{transform:matrix(0.360505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360505,0.000000,0.000000,0.250000,0,0);}
.m15_c00173{transform:matrix(0.363250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363250,0.000000,0.000000,0.250000,0,0);}
.maf_c00173{transform:matrix(0.363970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363970,0.000000,0.000000,0.250000,0,0);}
.ma5_c00173{transform:matrix(0.366299,-0.005494,0.003750,0.249972,0,0);-ms-transform:matrix(0.366299,-0.005494,0.003750,0.249972,0,0);-webkit-transform:matrix(0.366299,-0.005494,0.003750,0.249972,0,0);}
.m3c_c00173{transform:matrix(0.380143,0.005322,-0.003500,0.249976,0,0);-ms-transform:matrix(0.380143,0.005322,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.380143,0.005322,-0.003500,0.249976,0,0);}
.m26_c00173{transform:matrix(0.381803,0.005345,-0.003500,0.249976,0,0);-ms-transform:matrix(0.381803,0.005345,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.381803,0.005345,-0.003500,0.249976,0,0);}
.m7c_c00173{transform:matrix(0.392385,0.003924,-0.002500,0.249988,0,0);-ms-transform:matrix(0.392385,0.003924,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.392385,0.003924,-0.002500,0.249988,0,0);}
.m88_c00173{transform:matrix(0.392745,0.003927,-0.002500,0.249988,0,0);-ms-transform:matrix(0.392745,0.003927,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.392745,0.003927,-0.002500,0.249988,0,0);}
.m82_c00173{transform:matrix(0.394085,0.003941,-0.002500,0.249988,0,0);-ms-transform:matrix(0.394085,0.003941,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.394085,0.003941,-0.002500,0.249988,0,0);}
.m7e_c00173{transform:matrix(0.401310,0.004013,-0.002500,0.249988,0,0);-ms-transform:matrix(0.401310,0.004013,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.401310,0.004013,-0.002500,0.249988,0,0);}
.maa_c00173{transform:matrix(0.403070,-0.006046,0.003750,0.249972,0,0);-ms-transform:matrix(0.403070,-0.006046,0.003750,0.249972,0,0);-webkit-transform:matrix(0.403070,-0.006046,0.003750,0.249972,0,0);}
.mab_c00173{transform:matrix(0.416728,-0.006251,0.003750,0.249972,0,0);-ms-transform:matrix(0.416728,-0.006251,0.003750,0.249972,0,0);-webkit-transform:matrix(0.416728,-0.006251,0.003750,0.249972,0,0);}
.m5c_c00173{transform:matrix(0.419855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419855,0.000000,0.000000,0.250000,0,0);}
.m4a_c00173{transform:matrix(0.424100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424100,0.000000,0.000000,0.250000,0,0);}
.m80_c00173{transform:matrix(0.430808,0.004308,-0.002500,0.249988,0,0);-ms-transform:matrix(0.430808,0.004308,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.430808,0.004308,-0.002500,0.249988,0,0);}
.m5f_c00173{transform:matrix(0.430905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430905,0.000000,0.000000,0.250000,0,0);}
.m39_c00173{transform:matrix(0.432693,0.006058,-0.003500,0.249976,0,0);-ms-transform:matrix(0.432693,0.006058,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.432693,0.006058,-0.003500,0.249976,0,0);}
.m5a_c00173{transform:matrix(0.438100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.438100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.438100,0.000000,0.000000,0.250000,0,0);}
.m9f_c00173{transform:matrix(0.447740,-0.006716,0.003750,0.249972,0,0);-ms-transform:matrix(0.447740,-0.006716,0.003750,0.249972,0,0);-webkit-transform:matrix(0.447740,-0.006716,0.003750,0.249972,0,0);}
.mb5_c00173{transform:matrix(0.448330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448330,0.000000,0.000000,0.250000,0,0);}
.m3_c00173{transform:matrix(0.449170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449170,0.000000,0.000000,0.250000,0,0);}
.m78_c00173{transform:matrix(0.449978,0.004500,-0.002500,0.249988,0,0);-ms-transform:matrix(0.449978,0.004500,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.449978,0.004500,-0.002500,0.249988,0,0);}
.m68_c00173{transform:matrix(0.458670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458670,0.000000,0.000000,0.250000,0,0);}
.m5b_c00173{transform:matrix(0.462825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462825,0.000000,0.000000,0.250000,0,0);}
.m8c_c00173{transform:matrix(0.479921,0.004799,-0.002500,0.249988,0,0);-ms-transform:matrix(0.479921,0.004799,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.479921,0.004799,-0.002500,0.249988,0,0);}
.m6b_c00173{transform:matrix(0.481720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.481720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.481720,0.000000,0.000000,0.250000,0,0);}
.m1_c00173{transform:matrix(0.482740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482740,0.000000,0.000000,0.250000,0,0);}
.mf_c00173{transform:matrix(0.484665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484665,0.000000,0.000000,0.250000,0,0);}
.mb8_c00173{transform:matrix(0.488365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488365,0.000000,0.000000,0.250000,0,0);}
.m73_c00173{transform:matrix(0.490215,0.004902,-0.002500,0.249988,0,0);-ms-transform:matrix(0.490215,0.004902,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.490215,0.004902,-0.002500,0.249988,0,0);}
.m9a_c00173{transform:matrix(0.491145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491145,0.000000,0.000000,0.250000,0,0);}
.m87_c00173{transform:matrix(0.492085,0.004921,-0.002500,0.249988,0,0);-ms-transform:matrix(0.492085,0.004921,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.492085,0.004921,-0.002500,0.249988,0,0);}
.m76_c00173{transform:matrix(0.498520,0.004985,-0.002500,0.249988,0,0);-ms-transform:matrix(0.498520,0.004985,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.498520,0.004985,-0.002500,0.249988,0,0);}
.md_c00173{transform:matrix(0.498995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.498995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.498995,0.000000,0.000000,0.250000,0,0);}
.ma8_c00173{transform:matrix(0.500794,-0.007512,0.003750,0.249972,0,0);-ms-transform:matrix(0.500794,-0.007512,0.003750,0.249972,0,0);-webkit-transform:matrix(0.500794,-0.007512,0.003750,0.249972,0,0);}
.m5e_c00173{transform:matrix(0.517655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517655,0.000000,0.000000,0.250000,0,0);}
.m34_c00173{transform:matrix(0.523404,0.007328,-0.003500,0.249976,0,0);-ms-transform:matrix(0.523404,0.007328,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.523404,0.007328,-0.003500,0.249976,0,0);}
.m37_c00173{transform:matrix(0.529363,0.007411,-0.003500,0.249976,0,0);-ms-transform:matrix(0.529363,0.007411,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.529363,0.007411,-0.003500,0.249976,0,0);}
.m4e_c00173{transform:matrix(0.529515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.529515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.529515,0.000000,0.000000,0.250000,0,0);}
.m92_c00173{transform:matrix(0.531390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531390,0.000000,0.000000,0.250000,0,0);}
.m6_c00173{transform:matrix(0.533855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533855,0.000000,0.000000,0.250000,0,0);}
.m91_c00173{transform:matrix(0.541110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541110,0.000000,0.000000,0.250000,0,0);}
.m4d_c00173{transform:matrix(0.541295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541295,0.000000,0.000000,0.250000,0,0);}
.ma6_c00173{transform:matrix(0.547343,-0.008210,0.003750,0.249972,0,0);-ms-transform:matrix(0.547343,-0.008210,0.003750,0.249972,0,0);-webkit-transform:matrix(0.547343,-0.008210,0.003750,0.249972,0,0);}
.m9c_c00173{transform:matrix(0.553133,-0.008297,0.003750,0.249972,0,0);-ms-transform:matrix(0.553133,-0.008297,0.003750,0.249972,0,0);-webkit-transform:matrix(0.553133,-0.008297,0.003750,0.249972,0,0);}
.m94_c00173{transform:matrix(0.553455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553455,0.000000,0.000000,0.250000,0,0);}
.m77_c00173{transform:matrix(0.561302,0.005613,-0.002500,0.249988,0,0);-ms-transform:matrix(0.561302,0.005613,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.561302,0.005613,-0.002500,0.249988,0,0);}
.m89_c00173{transform:matrix(0.561847,0.005618,-0.002500,0.249988,0,0);-ms-transform:matrix(0.561847,0.005618,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.561847,0.005618,-0.002500,0.249988,0,0);}
.m54_c00173{transform:matrix(0.571485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571485,0.000000,0.000000,0.250000,0,0);}
.ma0_c00173{transform:matrix(0.572866,-0.008593,0.003750,0.249972,0,0);-ms-transform:matrix(0.572866,-0.008593,0.003750,0.249972,0,0);-webkit-transform:matrix(0.572866,-0.008593,0.003750,0.249972,0,0);}
.m74_c00173{transform:matrix(0.575251,0.005753,-0.002500,0.249988,0,0);-ms-transform:matrix(0.575251,0.005753,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.575251,0.005753,-0.002500,0.249988,0,0);}
.m7a_c00173{transform:matrix(0.575356,0.005754,-0.002500,0.249988,0,0);-ms-transform:matrix(0.575356,0.005754,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.575356,0.005754,-0.002500,0.249988,0,0);}
.m25_c00173{transform:matrix(0.576648,0.008073,-0.003500,0.249976,0,0);-ms-transform:matrix(0.576648,0.008073,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.576648,0.008073,-0.003500,0.249976,0,0);}
.mb0_c00173{transform:matrix(0.581570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.581570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.581570,0.000000,0.000000,0.250000,0,0);}
.m83_c00173{transform:matrix(0.583241,0.005832,-0.002500,0.249988,0,0);-ms-transform:matrix(0.583241,0.005832,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.583241,0.005832,-0.002500,0.249988,0,0);}
.m31_c00173{transform:matrix(0.583798,0.008173,-0.003500,0.249976,0,0);-ms-transform:matrix(0.583798,0.008173,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.583798,0.008173,-0.003500,0.249976,0,0);}
.m71_c00173{transform:matrix(0.589071,0.005891,-0.002500,0.249988,0,0);-ms-transform:matrix(0.589071,0.005891,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.589071,0.005891,-0.002500,0.249988,0,0);}
.m2e_c00173{transform:matrix(0.595727,0.008340,-0.003500,0.249976,0,0);-ms-transform:matrix(0.595727,0.008340,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.595727,0.008340,-0.003500,0.249976,0,0);}
.m19_c00173{transform:matrix(0.597605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.597605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.597605,0.000000,0.000000,0.250000,0,0);}
.m9b_c00173{transform:matrix(0.599688,-0.008995,0.003750,0.249972,0,0);-ms-transform:matrix(0.599688,-0.008995,0.003750,0.249972,0,0);-webkit-transform:matrix(0.599688,-0.008995,0.003750,0.249972,0,0);}
.m85_c00173{transform:matrix(0.602180,0.006022,-0.002500,0.249988,0,0);-ms-transform:matrix(0.602180,0.006022,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.602180,0.006022,-0.002500,0.249988,0,0);}
.ma9_c00173{transform:matrix(0.603347,-0.009050,0.003750,0.249972,0,0);-ms-transform:matrix(0.603347,-0.009050,0.003750,0.249972,0,0);-webkit-transform:matrix(0.603347,-0.009050,0.003750,0.249972,0,0);}
.m27_c00173{transform:matrix(0.603886,0.008454,-0.003500,0.249976,0,0);-ms-transform:matrix(0.603886,0.008454,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.603886,0.008454,-0.003500,0.249976,0,0);}
.m16_c00173{transform:matrix(0.605080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605080,0.000000,0.000000,0.250000,0,0);}
.m10_c00173{transform:matrix(0.610615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.610615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.610615,0.000000,0.000000,0.250000,0,0);}
.m84_c00173{transform:matrix(0.620479,0.006205,-0.002500,0.249988,0,0);-ms-transform:matrix(0.620479,0.006205,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.620479,0.006205,-0.002500,0.249988,0,0);}
.m58_c00173{transform:matrix(0.629020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.629020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.629020,0.000000,0.000000,0.250000,0,0);}
.mbb_c00173{transform:matrix(0.630635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630635,0.000000,0.000000,0.250000,0,0);}
.m6c_c00173{transform:matrix(0.631295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.631295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.631295,0.000000,0.000000,0.250000,0,0);}
.m8e_c00173{transform:matrix(0.644410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644410,0.000000,0.000000,0.250000,0,0);}
.m72_c00173{transform:matrix(0.654342,0.006543,-0.002500,0.249988,0,0);-ms-transform:matrix(0.654342,0.006543,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.654342,0.006543,-0.002500,0.249988,0,0);}
.m2d_c00173{transform:matrix(0.703136,0.009844,-0.003500,0.249976,0,0);-ms-transform:matrix(0.703136,0.009844,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.703136,0.009844,-0.003500,0.249976,0,0);}
.m9_c00173{transform:matrix(0.709145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.709145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.709145,0.000000,0.000000,0.250000,0,0);}
.m23_c00173{transform:matrix(0.716345,0.010029,-0.003500,0.249976,0,0);-ms-transform:matrix(0.716345,0.010029,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.716345,0.010029,-0.003500,0.249976,0,0);}
.m79_c00173{transform:matrix(0.729019,0.007290,-0.002500,0.249988,0,0);-ms-transform:matrix(0.729019,0.007290,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.729019,0.007290,-0.002500,0.249988,0,0);}
.m2a_c00173{transform:matrix(0.739778,0.010357,-0.003500,0.249976,0,0);-ms-transform:matrix(0.739778,0.010357,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.739778,0.010357,-0.003500,0.249976,0,0);}
.m17_c00173{transform:matrix(0.741395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.741395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.741395,0.000000,0.000000,0.250000,0,0);}
.m29_c00173{transform:matrix(0.745312,0.010434,-0.003500,0.249976,0,0);-ms-transform:matrix(0.745312,0.010434,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.745312,0.010434,-0.003500,0.249976,0,0);}
.m53_c00173{transform:matrix(0.749535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749535,0.000000,0.000000,0.250000,0,0);}
.m30_c00173{transform:matrix(0.767410,0.010744,-0.003500,0.249976,0,0);-ms-transform:matrix(0.767410,0.010744,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.767410,0.010744,-0.003500,0.249976,0,0);}
.m66_c00173{transform:matrix(0.769620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.769620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.769620,0.000000,0.000000,0.250000,0,0);}
.m86_c00173{transform:matrix(0.770111,0.007701,-0.002500,0.249988,0,0);-ms-transform:matrix(0.770111,0.007701,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.770111,0.007701,-0.002500,0.249988,0,0);}
.m21_c00173{transform:matrix(0.771855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.771855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.771855,0.000000,0.000000,0.250000,0,0);}
.mb1_c00173{transform:matrix(0.773430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.773430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.773430,0.000000,0.000000,0.250000,0,0);}
.ma7_c00173{transform:matrix(0.782807,-0.011742,0.003750,0.249972,0,0);-ms-transform:matrix(0.782807,-0.011742,0.003750,0.249972,0,0);-webkit-transform:matrix(0.782807,-0.011742,0.003750,0.249972,0,0);}
.m1c_c00173{transform:matrix(0.785070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.785070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.785070,0.000000,0.000000,0.250000,0,0);}
.mb3_c00173{transform:matrix(0.804595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.804595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.804595,0.000000,0.000000,0.250000,0,0);}
.mbc_c00173{transform:matrix(0.815660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.815660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.815660,0.000000,0.000000,0.250000,0,0);}
.m41_c00173{transform:matrix(0.850665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.850665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.850665,0.000000,0.000000,0.250000,0,0);}
.m4c_c00173{transform:matrix(0.851750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.851750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.851750,0.000000,0.000000,0.250000,0,0);}
.m22_c00173{transform:matrix(0.857735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.857735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.857735,0.000000,0.000000,0.250000,0,0);}
.m44_c00173{transform:matrix(0.868510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.868510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.868510,0.000000,0.000000,0.250000,0,0);}
.m99_c00173{transform:matrix(0.872960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.872960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.872960,0.000000,0.000000,0.250000,0,0);}
.m18_c00173{transform:matrix(0.885485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.885485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.885485,0.000000,0.000000,0.250000,0,0);}
.mb6_c00173{transform:matrix(0.890955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.890955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.890955,0.000000,0.000000,0.250000,0,0);}
.m1f_c00173{transform:matrix(0.895025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.895025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.895025,0.000000,0.000000,0.250000,0,0);}
.m1b_c00173{transform:matrix(0.911180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.911180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.911180,0.000000,0.000000,0.250000,0,0);}
.me_c00173{transform:matrix(0.921150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.921150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.921150,0.000000,0.000000,0.250000,0,0);}
.m38_c00173{transform:matrix(0.923569,0.012930,-0.003500,0.249976,0,0);-ms-transform:matrix(0.923569,0.012930,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.923569,0.012930,-0.003500,0.249976,0,0);}
.m81_c00173{transform:matrix(0.944333,0.009443,-0.002500,0.249988,0,0);-ms-transform:matrix(0.944333,0.009443,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.944333,0.009443,-0.002500,0.249988,0,0);}
.m1e_c00173{transform:matrix(0.946355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.946355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.946355,0.000000,0.000000,0.250000,0,0);}
.m14_c00173{transform:matrix(0.948420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.948420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.948420,0.000000,0.000000,0.250000,0,0);}
.m4b_c00173{transform:matrix(0.965200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.965200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.965200,0.000000,0.000000,0.250000,0,0);}
.m12_c00173{transform:matrix(0.987585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.987585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.987585,0.000000,0.000000,0.250000,0,0);}
.m8_c00173{transform:matrix(0.987750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.987750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.987750,0.000000,0.000000,0.250000,0,0);}
.m8a_c00173{transform:matrix(1.010054,0.010101,-0.002500,0.249988,0,0);-ms-transform:matrix(1.010054,0.010101,-0.002500,0.249988,0,0);-webkit-transform:matrix(1.010054,0.010101,-0.002500,0.249988,0,0);}
.m3d_c00173{transform:matrix(1.025470,0.014357,-0.003500,0.249976,0,0);-ms-transform:matrix(1.025470,0.014357,-0.003500,0.249976,0,0);-webkit-transform:matrix(1.025470,0.014357,-0.003500,0.249976,0,0);}
.mb9_c00173{transform:matrix(1.041935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.041935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.041935,0.000000,0.000000,0.250000,0,0);}
.m9e_c00173{transform:matrix(1.044962,-0.015674,0.003750,0.249972,0,0);-ms-transform:matrix(1.044962,-0.015674,0.003750,0.249972,0,0);-webkit-transform:matrix(1.044962,-0.015674,0.003750,0.249972,0,0);}
.m8f_c00173{transform:matrix(1.070625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.070625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.070625,0.000000,0.000000,0.250000,0,0);}
.m51_c00173{transform:matrix(1.094805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.094805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.094805,0.000000,0.000000,0.250000,0,0);}
.m7d_c00173{transform:matrix(1.097485,0.010975,-0.002500,0.249988,0,0);-ms-transform:matrix(1.097485,0.010975,-0.002500,0.249988,0,0);-webkit-transform:matrix(1.097485,0.010975,-0.002500,0.249988,0,0);}
.m3b_c00173{transform:matrix(1.108651,0.015521,-0.003500,0.249976,0,0);-ms-transform:matrix(1.108651,0.015521,-0.003500,0.249976,0,0);-webkit-transform:matrix(1.108651,0.015521,-0.003500,0.249976,0,0);}
.m0_c00173{transform:matrix(1.157410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.157410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.157410,0.000000,0.000000,0.250000,0,0);}
.m43_c00173{transform:matrix(1.223120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.223120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.223120,0.000000,0.000000,0.250000,0,0);}
.m28_c00173{transform:matrix(1.234749,0.017286,-0.003500,0.249976,0,0);-ms-transform:matrix(1.234749,0.017286,-0.003500,0.249976,0,0);-webkit-transform:matrix(1.234749,0.017286,-0.003500,0.249976,0,0);}
.mba_c00173{transform:matrix(1.282390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.282390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.282390,0.000000,0.000000,0.250000,0,0);}
.m40_c00173{transform:matrix(1.285155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.285155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.285155,0.000000,0.000000,0.250000,0,0);}
.m90_c00173{transform:matrix(1.293940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.293940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.293940,0.000000,0.000000,0.250000,0,0);}
.m2b_c00173{transform:matrix(1.317471,0.018445,-0.003500,0.249976,0,0);-ms-transform:matrix(1.317471,0.018445,-0.003500,0.249976,0,0);-webkit-transform:matrix(1.317471,0.018445,-0.003500,0.249976,0,0);}
.m5_c00173{transform:matrix(1.454590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.454590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.454590,0.000000,0.000000,0.250000,0,0);}
.m7_c00173{transform:matrix(1.470645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.470645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.470645,0.000000,0.000000,0.250000,0,0);}
.ma3_c00173{transform:matrix(1.857021,-0.027855,0.003750,0.249972,0,0);-ms-transform:matrix(1.857021,-0.027855,0.003750,0.249972,0,0);-webkit-transform:matrix(1.857021,-0.027855,0.003750,0.249972,0,0);}
.m65_c00173{transform:matrix(1.928200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.928200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.928200,0.000000,0.000000,0.250000,0,0);}
.v0_c00173{vertical-align:0.000000px;}
.ls0_c00173{letter-spacing:0.000000px;}
.sc__c00173{text-shadow:none;}
.sc0_c00173{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__c00173{-webkit-text-stroke:0px transparent;}
.sc0_c00173{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00173{word-spacing:0.000000px;}
.fc0_c00173{color:transparent;}
.fs9_c00173{font-size:12.000000px;}
.fs0_c00173{font-size:18.000000px;}
.fs3_c00173{font-size:24.000000px;}
.fs2_c00173{font-size:30.000000px;}
.fsc_c00173{font-size:30.001500px;}
.fs5_c00173{font-size:30.002940px;}
.fs13_c00173{font-size:36.000000px;}
.fsf_c00173{font-size:42.000000px;}
.fse_c00173{font-size:42.002100px;}
.fs10_c00173{font-size:42.004725px;}
.fs4_c00173{font-size:48.000000px;}
.fsa_c00173{font-size:54.000000px;}
.fs11_c00173{font-size:54.006075px;}
.fsb_c00173{font-size:66.003300px;}
.fs8_c00173{font-size:72.000000px;}
.fsd_c00173{font-size:72.003600px;}
.fs1_c00173{font-size:78.000000px;}
.fs12_c00173{font-size:84.000000px;}
.fs7_c00173{font-size:84.008232px;}
.fs6_c00173{font-size:108.010583px;}
.y0_c00173{bottom:0.000000px;}
.y65_c00173{bottom:160.650000px;}
.y66_c00173{bottom:160.960500px;}
.y67_c00173{bottom:161.220000px;}
.y68_c00173{bottom:161.734500px;}
.y69_c00173{bottom:162.498000px;}
.y6a_c00173{bottom:162.661500px;}
.y6b_c00173{bottom:163.606500px;}
.y6c_c00173{bottom:163.888500px;}
.y6d_c00173{bottom:164.700000px;}
.y64_c00173{bottom:177.405000px;}
.y58_c00173{bottom:196.023165px;}
.y59_c00173{bottom:196.784355px;}
.y5a_c00173{bottom:197.167523px;}
.y5b_c00173{bottom:198.035475px;}
.y5c_c00173{bottom:200.323252px;}
.y5d_c00173{bottom:200.953118px;}
.y5e_c00173{bottom:202.017188px;}
.y5f_c00173{bottom:202.513725px;}
.y60_c00173{bottom:203.516468px;}
.y61_c00173{bottom:203.985908px;}
.y62_c00173{bottom:204.705008px;}
.y63_c00173{bottom:205.521727px;}
.y52_c00173{bottom:224.212500px;}
.y51_c00173{bottom:224.610000px;}
.y50_c00173{bottom:224.814000px;}
.y53_c00173{bottom:225.466500px;}
.y4f_c00173{bottom:225.913500px;}
.y4e_c00173{bottom:226.291500px;}
.y54_c00173{bottom:226.449075px;}
.y4d_c00173{bottom:226.609500px;}
.y55_c00173{bottom:226.887645px;}
.y56_c00173{bottom:227.983058px;}
.y4c_c00173{bottom:228.211500px;}
.y57_c00173{bottom:229.424700px;}
.y4b_c00173{bottom:239.992500px;}
.y6f_c00173{bottom:245.815500px;}
.y49_c00173{bottom:264.875430px;}
.y4a_c00173{bottom:264.876060px;}
.y45_c00173{bottom:274.734855px;}
.y44_c00173{bottom:274.735440px;}
.y46_c00173{bottom:274.735470px;}
.y43_c00173{bottom:274.736025px;}
.y47_c00173{bottom:274.736100px;}
.y48_c00173{bottom:274.736505px;}
.y40_c00173{bottom:274.736535px;}
.y42_c00173{bottom:274.736595px;}
.y3f_c00173{bottom:274.736775px;}
.y41_c00173{bottom:274.736865px;}
.y2f_c00173{bottom:313.919790px;}
.y30_c00173{bottom:314.513205px;}
.y31_c00173{bottom:314.984340px;}
.y32_c00173{bottom:315.374505px;}
.y33_c00173{bottom:316.054650px;}
.y34_c00173{bottom:316.428420px;}
.y35_c00173{bottom:317.897985px;}
.y36_c00173{bottom:318.108345px;}
.y37_c00173{bottom:318.300870px;}
.y38_c00173{bottom:318.601500px;}
.y39_c00173{bottom:319.328745px;}
.y3a_c00173{bottom:319.691190px;}
.y3b_c00173{bottom:320.058840px;}
.y3c_c00173{bottom:320.977785px;}
.y3d_c00173{bottom:321.573660px;}
.y3e_c00173{bottom:322.387095px;}
.y6e_c00173{bottom:326.430000px;}
.y2e_c00173{bottom:331.135215px;}
.y2d_c00173{bottom:333.216540px;}
.y2c_c00173{bottom:333.773085px;}
.y2b_c00173{bottom:335.254500px;}
.y29_c00173{bottom:344.649000px;}
.y2a_c00173{bottom:350.146500px;}
.y28_c00173{bottom:380.640000px;}
.y27_c00173{bottom:405.265500px;}
.y26_c00173{bottom:411.952500px;}
.y25_c00173{bottom:419.712000px;}
.y24_c00173{bottom:443.187000px;}
.y23_c00173{bottom:454.255500px;}
.y1c_c00173{bottom:493.468878px;}
.y1b_c00173{bottom:493.469433px;}
.y1d_c00173{bottom:493.469607px;}
.y20_c00173{bottom:493.469901px;}
.y1e_c00173{bottom:493.469949px;}
.y1f_c00173{bottom:493.470336px;}
.y22_c00173{bottom:493.470534px;}
.y21_c00173{bottom:493.470651px;}
.y4_c00173{bottom:504.828000px;}
.y1a_c00173{bottom:506.793480px;}
.y19_c00173{bottom:507.853263px;}
.y18_c00173{bottom:509.823288px;}
.y17_c00173{bottom:511.819407px;}
.y16_c00173{bottom:528.500922px;}
.y15_c00173{bottom:528.830181px;}
.y14_c00173{bottom:529.291131px;}
.y13_c00173{bottom:529.669362px;}
.y12_c00173{bottom:530.035035px;}
.y11_c00173{bottom:530.418411px;}
.y10_c00173{bottom:531.151332px;}
.yf_c00173{bottom:531.325359px;}
.ye_c00173{bottom:531.867054px;}
.yd_c00173{bottom:532.481703px;}
.yc_c00173{bottom:533.414607px;}
.yb_c00173{bottom:533.758608px;}
.ya_c00173{bottom:534.090891px;}
.y9_c00173{bottom:534.414144px;}
.y8_c00173{bottom:534.591573px;}
.y7_c00173{bottom:534.591909px;}
.y3_c00173{bottom:535.543500px;}
.y6_c00173{bottom:535.824000px;}
.y2_c00173{bottom:563.337000px;}
.y1_c00173{bottom:595.210500px;}
.y5_c00173{bottom:606.258000px;}
.ha_c00173{height:12.000000px;}
.h1_c00173{height:18.000000px;}
.h4_c00173{height:24.000000px;}
.h3_c00173{height:30.000000px;}
.hd_c00173{height:30.001500px;}
.h6_c00173{height:30.002940px;}
.h14_c00173{height:36.000000px;}
.h10_c00173{height:42.000000px;}
.hf_c00173{height:42.002100px;}
.h11_c00173{height:42.004725px;}
.h5_c00173{height:48.000000px;}
.hb_c00173{height:54.000000px;}
.h12_c00173{height:54.006075px;}
.hc_c00173{height:66.003300px;}
.h9_c00173{height:72.000000px;}
.he_c00173{height:72.003600px;}
.h2_c00173{height:78.000000px;}
.h13_c00173{height:84.000000px;}
.h8_c00173{height:84.008232px;}
.h7_c00173{height:108.010583px;}
.h0_c00173{height:682.500000px;}
.w1_c00173{width:945.750000px;}
.w0_c00173{width:946.050000px;}
.x0_c00173{left:0.000000px;}
.x23_c00173{left:26.619000px;}
.x33_c00173{left:30.683298px;}
.x36_c00173{left:51.571542px;}
.x72_c00173{left:98.813610px;}
.x24_c00173{left:114.625500px;}
.x37_c00173{left:125.018427px;}
.x25_c00173{left:127.323000px;}
.x26_c00173{left:150.412500px;}
.x83_c00173{left:153.058500px;}
.x63_c00173{left:156.209640px;}
.x27_c00173{left:174.147000px;}
.x34_c00173{left:184.193940px;}
.x43_c00173{left:186.570000px;}
.x64_c00173{left:191.077560px;}
.x95_c00173{left:197.640000px;}
.x28_c00173{left:198.718500px;}
.x4f_c00173{left:201.960000px;}
.x7b_c00173{left:203.580000px;}
.x54_c00173{left:207.090000px;}
.x44_c00173{left:211.410000px;}
.x65_c00173{left:218.821545px;}
.x73_c00173{left:221.399865px;}
.x7c_c00173{left:225.180000px;}
.x94_c00173{left:226.260000px;}
.x50_c00173{left:233.820000px;}
.x91_c00173{left:239.332500px;}
.x2_c00173{left:240.570000px;}
.x66_c00173{left:241.761240px;}
.x84_c00173{left:247.801500px;}
.x86_c00173{left:248.967210px;}
.x45_c00173{left:257.310000px;}
.x38_c00173{left:261.921765px;}
.x60_c00173{left:264.060000px;}
.x29_c00173{left:265.354500px;}
.x87_c00173{left:268.110270px;}
.x55_c00173{left:274.050000px;}
.x74_c00173{left:278.372565px;}
.x51_c00173{left:280.260000px;}
.x67_c00173{left:281.757540px;}
.x39_c00173{left:286.223532px;}
.x68_c00173{left:303.786480px;}
.x2a_c00173{left:309.258000px;}
.x7f_c00173{left:310.381500px;}
.x88_c00173{left:311.470508px;}
.x85_c00173{left:320.829000px;}
.x3e_c00173{left:323.730000px;}
.x52_c00173{left:324.810000px;}
.x61_c00173{left:334.696500px;}
.x3_c00173{left:335.880000px;}
.x75_c00173{left:345.606285px;}
.x2b_c00173{left:347.950500px;}
.x4_c00173{left:356.130000px;}
.x2c_c00173{left:360.381000px;}
.x46_c00173{left:367.200000px;}
.x92_c00173{left:374.979000px;}
.x56_c00173{left:389.340000px;}
.x62_c00173{left:390.351000px;}
.x3a_c00173{left:392.073780px;}
.x3f_c00173{left:398.790000px;}
.x69_c00173{left:402.670665px;}
.x4c_c00173{left:410.130000px;}
.x53_c00173{left:411.480000px;}
.x2d_c00173{left:412.732500px;}
.x6a_c00173{left:414.021225px;}
.x57_c00173{left:415.800000px;}
.x35_c00173{left:417.219195px;}
.x5_c00173{left:426.600000px;}
.x6b_c00173{left:431.662995px;}
.x76_c00173{left:436.330845px;}
.x2e_c00173{left:440.116500px;}
.x47_c00173{left:443.880000px;}
.x6_c00173{left:447.930000px;}
.x4d_c00173{left:455.760000px;}
.x89_c00173{left:457.369073px;}
.x2f_c00173{left:466.236000px;}
.x3b_c00173{left:471.191778px;}
.x6c_c00173{left:474.450045px;}
.x40_c00173{left:476.280000px;}
.x58_c00173{left:477.630000px;}
.x93_c00173{left:490.980000px;}
.x30_c00173{left:493.252500px;}
.x6d_c00173{left:495.811305px;}
.x59_c00173{left:501.120000px;}
.x80_c00173{left:502.354500px;}
.xa_c00173{left:504.090000px;}
.x8a_c00173{left:510.603090px;}
.x6e_c00173{left:517.402140px;}
.x5a_c00173{left:520.020000px;}
.x31_c00173{left:526.177500px;}
.xb_c00173{left:531.360000px;}
.xc_c00173{left:534.330000px;}
.x8b_c00173{left:535.403723px;}
.x41_c00173{left:538.650000px;}
.x81_c00173{left:540.166500px;}
.x32_c00173{left:549.696000px;}
.x7d_c00173{left:560.790000px;}
.xd_c00173{left:563.760000px;}
.x5b_c00173{left:566.730000px;}
.x6f_c00173{left:571.472235px;}
.x7_c00173{left:573.480000px;}
.xe_c00173{left:575.370000px;}
.x77_c00173{left:577.278945px;}
.x8c_c00173{left:585.549465px;}
.xf_c00173{left:589.140000px;}
.x5c_c00173{left:598.320000px;}
.x70_c00173{left:606.544200px;}
.x8d_c00173{left:609.043710px;}
.x3c_c00173{left:621.596262px;}
.x10_c00173{left:631.530000px;}
.x90_c00173{left:634.500000px;}
.x20_c00173{left:636.120000px;}
.x8e_c00173{left:644.981010px;}
.x48_c00173{left:650.160000px;}
.x71_c00173{left:654.363615px;}
.x42_c00173{left:655.560000px;}
.x3d_c00173{left:663.720015px;}
.x11_c00173{left:667.170000px;}
.x8_c00173{left:670.410000px;}
.x8f_c00173{left:685.825950px;}
.x12_c00173{left:690.390000px;}
.x5d_c00173{left:704.970000px;}
.x7e_c00173{left:706.050000px;}
.x82_c00173{left:710.250000px;}
.x13_c00173{left:713.880000px;}
.x4e_c00173{left:718.470000px;}
.x96_c00173{left:726.570000px;}
.x97_c00173{left:730.620000px;}
.x21_c00173{left:736.290000px;}
.x49_c00173{left:737.370000px;}
.x14_c00173{left:743.040000px;}
.x1b_c00173{left:746.820000px;}
.x22_c00173{left:748.170000px;}
.x98_c00173{left:749.250000px;}
.x1c_c00173{left:755.190000px;}
.x15_c00173{left:763.290000px;}
.x99_c00173{left:765.450000px;}
.x5e_c00173{left:770.040000px;}
.x16_c00173{left:774.900000px;}
.x17_c00173{left:780.840000px;}
.x78_c00173{left:782.758995px;}
.x1d_c00173{left:787.050000px;}
.x4a_c00173{left:790.020000px;}
.x79_c00173{left:795.719190px;}
.x18_c00173{left:808.380000px;}
.x9_c00173{left:811.080000px;}
.x1e_c00173{left:815.130000px;}
.x9a_c00173{left:816.210000px;}
.x4b_c00173{left:819.180000px;}
.x19_c00173{left:829.170000px;}
.x9b_c00173{left:835.650000px;}
.x1f_c00173{left:841.590000px;}
.x1_c00173{left:849.690000px;}
.x1a_c00173{left:852.930000px;}
.x5f_c00173{left:855.360000px;}
.x7a_c00173{left:859.712595px;}
@media print{
.v0_c00173{vertical-align:0.000000pt;}
.ls0_c00173{letter-spacing:0.000000pt;}
.ws0_c00173{word-spacing:0.000000pt;}
.fs9_c00173{font-size:10.666667pt;}
.fs0_c00173{font-size:16.000000pt;}
.fs3_c00173{font-size:21.333333pt;}
.fs2_c00173{font-size:26.666667pt;}
.fsc_c00173{font-size:26.668000pt;}
.fs5_c00173{font-size:26.669280pt;}
.fs13_c00173{font-size:32.000000pt;}
.fsf_c00173{font-size:37.333333pt;}
.fse_c00173{font-size:37.335200pt;}
.fs10_c00173{font-size:37.337533pt;}
.fs4_c00173{font-size:42.666667pt;}
.fsa_c00173{font-size:48.000000pt;}
.fs11_c00173{font-size:48.005400pt;}
.fsb_c00173{font-size:58.669600pt;}
.fs8_c00173{font-size:64.000000pt;}
.fsd_c00173{font-size:64.003200pt;}
.fs1_c00173{font-size:69.333333pt;}
.fs12_c00173{font-size:74.666667pt;}
.fs7_c00173{font-size:74.673984pt;}
.fs6_c00173{font-size:96.009408pt;}
.y0_c00173{bottom:0.000000pt;}
.y65_c00173{bottom:142.800000pt;}
.y66_c00173{bottom:143.076000pt;}
.y67_c00173{bottom:143.306667pt;}
.y68_c00173{bottom:143.764000pt;}
.y69_c00173{bottom:144.442667pt;}
.y6a_c00173{bottom:144.588000pt;}
.y6b_c00173{bottom:145.428000pt;}
.y6c_c00173{bottom:145.678667pt;}
.y6d_c00173{bottom:146.400000pt;}
.y64_c00173{bottom:157.693333pt;}
.y58_c00173{bottom:174.242813pt;}
.y59_c00173{bottom:174.919427pt;}
.y5a_c00173{bottom:175.260020pt;}
.y5b_c00173{bottom:176.031533pt;}
.y5c_c00173{bottom:178.065113pt;}
.y5d_c00173{bottom:178.624993pt;}
.y5e_c00173{bottom:179.570833pt;}
.y5f_c00173{bottom:180.012200pt;}
.y60_c00173{bottom:180.903527pt;}
.y61_c00173{bottom:181.320807pt;}
.y62_c00173{bottom:181.960007pt;}
.y63_c00173{bottom:182.685980pt;}
.y52_c00173{bottom:199.300000pt;}
.y51_c00173{bottom:199.653333pt;}
.y50_c00173{bottom:199.834667pt;}
.y53_c00173{bottom:200.414667pt;}
.y4f_c00173{bottom:200.812000pt;}
.y4e_c00173{bottom:201.148000pt;}
.y54_c00173{bottom:201.288067pt;}
.y4d_c00173{bottom:201.430667pt;}
.y55_c00173{bottom:201.677907pt;}
.y56_c00173{bottom:202.651607pt;}
.y4c_c00173{bottom:202.854667pt;}
.y57_c00173{bottom:203.933067pt;}
.y4b_c00173{bottom:213.326667pt;}
.y6f_c00173{bottom:218.502667pt;}
.y49_c00173{bottom:235.444827pt;}
.y4a_c00173{bottom:235.445387pt;}
.y45_c00173{bottom:244.208760pt;}
.y44_c00173{bottom:244.209280pt;}
.y46_c00173{bottom:244.209307pt;}
.y43_c00173{bottom:244.209800pt;}
.y47_c00173{bottom:244.209867pt;}
.y48_c00173{bottom:244.210227pt;}
.y40_c00173{bottom:244.210253pt;}
.y42_c00173{bottom:244.210307pt;}
.y3f_c00173{bottom:244.210467pt;}
.y41_c00173{bottom:244.210547pt;}
.y2f_c00173{bottom:279.039813pt;}
.y30_c00173{bottom:279.567293pt;}
.y31_c00173{bottom:279.986080pt;}
.y32_c00173{bottom:280.332893pt;}
.y33_c00173{bottom:280.937467pt;}
.y34_c00173{bottom:281.269707pt;}
.y35_c00173{bottom:282.575987pt;}
.y36_c00173{bottom:282.762973pt;}
.y37_c00173{bottom:282.934107pt;}
.y38_c00173{bottom:283.201333pt;}
.y39_c00173{bottom:283.847773pt;}
.y3a_c00173{bottom:284.169947pt;}
.y3b_c00173{bottom:284.496747pt;}
.y3c_c00173{bottom:285.313587pt;}
.y3d_c00173{bottom:285.843253pt;}
.y3e_c00173{bottom:286.566307pt;}
.y6e_c00173{bottom:290.160000pt;}
.y2e_c00173{bottom:294.342413pt;}
.y2d_c00173{bottom:296.192480pt;}
.y2c_c00173{bottom:296.687187pt;}
.y2b_c00173{bottom:298.004000pt;}
.y29_c00173{bottom:306.354667pt;}
.y2a_c00173{bottom:311.241333pt;}
.y28_c00173{bottom:338.346667pt;}
.y27_c00173{bottom:360.236000pt;}
.y26_c00173{bottom:366.180000pt;}
.y25_c00173{bottom:373.077333pt;}
.y24_c00173{bottom:393.944000pt;}
.y23_c00173{bottom:403.782667pt;}
.y1c_c00173{bottom:438.639003pt;}
.y1b_c00173{bottom:438.639496pt;}
.y1d_c00173{bottom:438.639651pt;}
.y20_c00173{bottom:438.639912pt;}
.y1e_c00173{bottom:438.639955pt;}
.y1f_c00173{bottom:438.640299pt;}
.y22_c00173{bottom:438.640475pt;}
.y21_c00173{bottom:438.640579pt;}
.y4_c00173{bottom:448.736000pt;}
.y1a_c00173{bottom:450.483093pt;}
.y19_c00173{bottom:451.425123pt;}
.y18_c00173{bottom:453.176256pt;}
.y17_c00173{bottom:454.950584pt;}
.y16_c00173{bottom:469.778597pt;}
.y15_c00173{bottom:470.071272pt;}
.y14_c00173{bottom:470.481005pt;}
.y13_c00173{bottom:470.817211pt;}
.y12_c00173{bottom:471.142253pt;}
.y11_c00173{bottom:471.483032pt;}
.y10_c00173{bottom:472.134517pt;}
.yf_c00173{bottom:472.289208pt;}
.ye_c00173{bottom:472.770715pt;}
.yd_c00173{bottom:473.317069pt;}
.yc_c00173{bottom:474.146317pt;}
.yb_c00173{bottom:474.452096pt;}
.ya_c00173{bottom:474.747459pt;}
.y9_c00173{bottom:475.034795pt;}
.y8_c00173{bottom:475.192509pt;}
.y7_c00173{bottom:475.192808pt;}
.y3_c00173{bottom:476.038667pt;}
.y6_c00173{bottom:476.288000pt;}
.y2_c00173{bottom:500.744000pt;}
.y1_c00173{bottom:529.076000pt;}
.y5_c00173{bottom:538.896000pt;}
.ha_c00173{height:10.666667pt;}
.h1_c00173{height:16.000000pt;}
.h4_c00173{height:21.333333pt;}
.h3_c00173{height:26.666667pt;}
.hd_c00173{height:26.668000pt;}
.h6_c00173{height:26.669280pt;}
.h14_c00173{height:32.000000pt;}
.h10_c00173{height:37.333333pt;}
.hf_c00173{height:37.335200pt;}
.h11_c00173{height:37.337533pt;}
.h5_c00173{height:42.666667pt;}
.hb_c00173{height:48.000000pt;}
.h12_c00173{height:48.005400pt;}
.hc_c00173{height:58.669600pt;}
.h9_c00173{height:64.000000pt;}
.he_c00173{height:64.003200pt;}
.h2_c00173{height:69.333333pt;}
.h13_c00173{height:74.666667pt;}
.h8_c00173{height:74.673984pt;}
.h7_c00173{height:96.009408pt;}
.h0_c00173{height:606.666667pt;}
.w1_c00173{width:840.666667pt;}
.w0_c00173{width:840.933333pt;}
.x0_c00173{left:0.000000pt;}
.x23_c00173{left:23.661333pt;}
.x33_c00173{left:27.274043pt;}
.x36_c00173{left:45.841371pt;}
.x72_c00173{left:87.834320pt;}
.x24_c00173{left:101.889333pt;}
.x37_c00173{left:111.127491pt;}
.x25_c00173{left:113.176000pt;}
.x26_c00173{left:133.700000pt;}
.x83_c00173{left:136.052000pt;}
.x63_c00173{left:138.853013pt;}
.x27_c00173{left:154.797333pt;}
.x34_c00173{left:163.727947pt;}
.x43_c00173{left:165.840000pt;}
.x64_c00173{left:169.846720pt;}
.x95_c00173{left:175.680000pt;}
.x28_c00173{left:176.638667pt;}
.x4f_c00173{left:179.520000pt;}
.x7b_c00173{left:180.960000pt;}
.x54_c00173{left:184.080000pt;}
.x44_c00173{left:187.920000pt;}
.x65_c00173{left:194.508040pt;}
.x73_c00173{left:196.799880pt;}
.x7c_c00173{left:200.160000pt;}
.x94_c00173{left:201.120000pt;}
.x50_c00173{left:207.840000pt;}
.x91_c00173{left:212.740000pt;}
.x2_c00173{left:213.840000pt;}
.x66_c00173{left:214.898880pt;}
.x84_c00173{left:220.268000pt;}
.x86_c00173{left:221.304187pt;}
.x45_c00173{left:228.720000pt;}
.x38_c00173{left:232.819347pt;}
.x60_c00173{left:234.720000pt;}
.x29_c00173{left:235.870667pt;}
.x87_c00173{left:238.320240pt;}
.x55_c00173{left:243.600000pt;}
.x74_c00173{left:247.442280pt;}
.x51_c00173{left:249.120000pt;}
.x67_c00173{left:250.451147pt;}
.x39_c00173{left:254.420917pt;}
.x68_c00173{left:270.032427pt;}
.x2a_c00173{left:274.896000pt;}
.x7f_c00173{left:275.894667pt;}
.x88_c00173{left:276.862673pt;}
.x85_c00173{left:285.181333pt;}
.x3e_c00173{left:287.760000pt;}
.x52_c00173{left:288.720000pt;}
.x61_c00173{left:297.508000pt;}
.x3_c00173{left:298.560000pt;}
.x75_c00173{left:307.205587pt;}
.x2b_c00173{left:309.289333pt;}
.x4_c00173{left:316.560000pt;}
.x2c_c00173{left:320.338667pt;}
.x46_c00173{left:326.400000pt;}
.x92_c00173{left:333.314667pt;}
.x56_c00173{left:346.080000pt;}
.x62_c00173{left:346.978667pt;}
.x3a_c00173{left:348.510027pt;}
.x3f_c00173{left:354.480000pt;}
.x69_c00173{left:357.929480pt;}
.x4c_c00173{left:364.560000pt;}
.x53_c00173{left:365.760000pt;}
.x2d_c00173{left:366.873333pt;}
.x6a_c00173{left:368.018867pt;}
.x57_c00173{left:369.600000pt;}
.x35_c00173{left:370.861507pt;}
.x5_c00173{left:379.200000pt;}
.x6b_c00173{left:383.700440pt;}
.x76_c00173{left:387.849640pt;}
.x2e_c00173{left:391.214667pt;}
.x47_c00173{left:394.560000pt;}
.x6_c00173{left:398.160000pt;}
.x4d_c00173{left:405.120000pt;}
.x89_c00173{left:406.550287pt;}
.x2f_c00173{left:414.432000pt;}
.x3b_c00173{left:418.837136pt;}
.x6c_c00173{left:421.733373pt;}
.x40_c00173{left:423.360000pt;}
.x58_c00173{left:424.560000pt;}
.x93_c00173{left:436.426667pt;}
.x30_c00173{left:438.446667pt;}
.x6d_c00173{left:440.721160pt;}
.x59_c00173{left:445.440000pt;}
.x80_c00173{left:446.537333pt;}
.xa_c00173{left:448.080000pt;}
.x8a_c00173{left:453.869413pt;}
.x6e_c00173{left:459.913013pt;}
.x5a_c00173{left:462.240000pt;}
.x31_c00173{left:467.713333pt;}
.xb_c00173{left:472.320000pt;}
.xc_c00173{left:474.960000pt;}
.x8b_c00173{left:475.914420pt;}
.x41_c00173{left:478.800000pt;}
.x81_c00173{left:480.148000pt;}
.x32_c00173{left:488.618667pt;}
.x7d_c00173{left:498.480000pt;}
.xd_c00173{left:501.120000pt;}
.x5b_c00173{left:503.760000pt;}
.x6f_c00173{left:507.975320pt;}
.x7_c00173{left:509.760000pt;}
.xe_c00173{left:511.440000pt;}
.x77_c00173{left:513.136840pt;}
.x8c_c00173{left:520.488413pt;}
.xf_c00173{left:523.680000pt;}
.x5c_c00173{left:531.840000pt;}
.x70_c00173{left:539.150400pt;}
.x8d_c00173{left:541.372187pt;}
.x3c_c00173{left:552.530011pt;}
.x10_c00173{left:561.360000pt;}
.x90_c00173{left:564.000000pt;}
.x20_c00173{left:565.440000pt;}
.x8e_c00173{left:573.316453pt;}
.x48_c00173{left:577.920000pt;}
.x71_c00173{left:581.656547pt;}
.x42_c00173{left:582.720000pt;}
.x3d_c00173{left:589.973347pt;}
.x11_c00173{left:593.040000pt;}
.x8_c00173{left:595.920000pt;}
.x8f_c00173{left:609.623067pt;}
.x12_c00173{left:613.680000pt;}
.x5d_c00173{left:626.640000pt;}
.x7e_c00173{left:627.600000pt;}
.x82_c00173{left:631.333333pt;}
.x13_c00173{left:634.560000pt;}
.x4e_c00173{left:638.640000pt;}
.x96_c00173{left:645.840000pt;}
.x97_c00173{left:649.440000pt;}
.x21_c00173{left:654.480000pt;}
.x49_c00173{left:655.440000pt;}
.x14_c00173{left:660.480000pt;}
.x1b_c00173{left:663.840000pt;}
.x22_c00173{left:665.040000pt;}
.x98_c00173{left:666.000000pt;}
.x1c_c00173{left:671.280000pt;}
.x15_c00173{left:678.480000pt;}
.x99_c00173{left:680.400000pt;}
.x5e_c00173{left:684.480000pt;}
.x16_c00173{left:688.800000pt;}
.x17_c00173{left:694.080000pt;}
.x78_c00173{left:695.785773pt;}
.x1d_c00173{left:699.600000pt;}
.x4a_c00173{left:702.240000pt;}
.x79_c00173{left:707.305947pt;}
.x18_c00173{left:718.560000pt;}
.x9_c00173{left:720.960000pt;}
.x1e_c00173{left:724.560000pt;}
.x9a_c00173{left:725.520000pt;}
.x4b_c00173{left:728.160000pt;}
.x19_c00173{left:737.040000pt;}
.x9b_c00173{left:742.800000pt;}
.x1f_c00173{left:748.080000pt;}
.x1_c00173{left:755.280000pt;}
.x1a_c00173{left:758.160000pt;}
.x5f_c00173{left:760.320000pt;}
.x7a_c00173{left:764.188973pt;}
}





/* 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_c00174 {
    display:none;
  }
  .loading-indicator_c00174.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00174 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_c00174 { 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_c00174" -> "#page-container .classname_c00174")
 */
.pf_c00174 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00174 { /* 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_c00174.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00174 { /* 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_c00174 { /* 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_c00174 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00174 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00174 {overflow:visible;}
  }
}
.c_c00174 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00174 { /* 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_c00174:after { /* webkit #35443 */
  content: '';
}
.t_c00174:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00174 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 */
}
.__c00174 { /* 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_c00174 { /* info for Javascript */
  display:none;
}
.l_c00174 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00174 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00174 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00174: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_c00174 {
    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_c00174.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00174.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_c00174 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00174{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00174;src:url('chunks/assets/font_6bbd15de30fdc229d5d5ff82.woff2')format("woff");}.ff1_c00174{font-family:ff1_c00174;line-height:1.000000;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;}
.m18_c00174{transform:matrix(0.011856,-0.000320,0.006748,0.249909,0,0);-ms-transform:matrix(0.011856,-0.000320,0.006748,0.249909,0,0);-webkit-transform:matrix(0.011856,-0.000320,0.006748,0.249909,0,0);}
.m13_c00174{transform:matrix(0.016219,-0.000438,0.006748,0.249909,0,0);-ms-transform:matrix(0.016219,-0.000438,0.006748,0.249909,0,0);-webkit-transform:matrix(0.016219,-0.000438,0.006748,0.249909,0,0);}
.m26_c00174{transform:matrix(0.019263,-0.000520,0.006748,0.249909,0,0);-ms-transform:matrix(0.019263,-0.000520,0.006748,0.249909,0,0);-webkit-transform:matrix(0.019263,-0.000520,0.006748,0.249909,0,0);}
.m48_c00174{transform:matrix(0.042425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.042425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.042425,0.000000,0.000000,0.250000,0,0);}
.m42_c00174{transform:matrix(0.044720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.044720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.044720,0.000000,0.000000,0.250000,0,0);}
.m4b_c00174{transform:matrix(0.054085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054085,0.000000,0.000000,0.250000,0,0);}
.m30_c00174{transform:matrix(0.098659,-0.002664,0.006748,0.249909,0,0);-ms-transform:matrix(0.098659,-0.002664,0.006748,0.249909,0,0);-webkit-transform:matrix(0.098659,-0.002664,0.006748,0.249909,0,0);}
.m47_c00174{transform:matrix(0.106065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106065,0.000000,0.000000,0.250000,0,0);}
.m4c_c00174{transform:matrix(0.106300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106300,0.000000,0.000000,0.250000,0,0);}
.m4a_c00174{transform:matrix(0.134165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134165,0.000000,0.000000,0.250000,0,0);}
.m2f_c00174{transform:matrix(0.163740,-0.004421,0.006748,0.249909,0,0);-ms-transform:matrix(0.163740,-0.004421,0.006748,0.249909,0,0);-webkit-transform:matrix(0.163740,-0.004421,0.006748,0.249909,0,0);}
.m49_c00174{transform:matrix(0.175570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175570,0.000000,0.000000,0.250000,0,0);}
.m3b_c00174{transform:matrix(0.189735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189735,0.000000,0.000000,0.250000,0,0);}
.m3f_c00174{transform:matrix(0.191435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191435,0.000000,0.000000,0.250000,0,0);}
.m39_c00174{transform:matrix(0.191580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191580,0.000000,0.000000,0.250000,0,0);}
.m3a_c00174{transform:matrix(0.193390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193390,0.000000,0.000000,0.250000,0,0);}
.m3e_c00174{transform:matrix(0.194285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194285,0.000000,0.000000,0.250000,0,0);}
.m38_c00174{transform:matrix(0.223210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223210,0.000000,0.000000,0.250000,0,0);}
.m3d_c00174{transform:matrix(0.223215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223215,0.000000,0.000000,0.250000,0,0);}
.m34_c00174{transform:matrix(0.253940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253940,0.000000,0.000000,0.250000,0,0);}
.m1e_c00174{transform:matrix(0.261560,-0.007062,0.006748,0.249909,0,0);-ms-transform:matrix(0.261560,-0.007062,0.006748,0.249909,0,0);-webkit-transform:matrix(0.261560,-0.007062,0.006748,0.249909,0,0);}
.m3c_c00174{transform:matrix(0.278030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278030,0.000000,0.000000,0.250000,0,0);}
.m22_c00174{transform:matrix(0.283157,-0.007645,0.006748,0.249909,0,0);-ms-transform:matrix(0.283157,-0.007645,0.006748,0.249909,0,0);-webkit-transform:matrix(0.283157,-0.007645,0.006748,0.249909,0,0);}
.m41_c00174{transform:matrix(0.292725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292725,0.000000,0.000000,0.250000,0,0);}
.m14_c00174{transform:matrix(0.300126,-0.008103,0.006748,0.249909,0,0);-ms-transform:matrix(0.300126,-0.008103,0.006748,0.249909,0,0);-webkit-transform:matrix(0.300126,-0.008103,0.006748,0.249909,0,0);}
.m11_c00174{transform:matrix(0.320933,-0.008665,0.006748,0.249909,0,0);-ms-transform:matrix(0.320933,-0.008665,0.006748,0.249909,0,0);-webkit-transform:matrix(0.320933,-0.008665,0.006748,0.249909,0,0);}
.m7_c00174{transform:matrix(0.345294,-0.009323,0.006748,0.249909,0,0);-ms-transform:matrix(0.345294,-0.009323,0.006748,0.249909,0,0);-webkit-transform:matrix(0.345294,-0.009323,0.006748,0.249909,0,0);}
.m40_c00174{transform:matrix(0.357570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357570,0.000000,0.000000,0.250000,0,0);}
.m23_c00174{transform:matrix(0.360344,-0.009729,0.006748,0.249909,0,0);-ms-transform:matrix(0.360344,-0.009729,0.006748,0.249909,0,0);-webkit-transform:matrix(0.360344,-0.009729,0.006748,0.249909,0,0);}
.m31_c00174{transform:matrix(0.363118,-0.009804,0.006748,0.249909,0,0);-ms-transform:matrix(0.363118,-0.009804,0.006748,0.249909,0,0);-webkit-transform:matrix(0.363118,-0.009804,0.006748,0.249909,0,0);}
.m15_c00174{transform:matrix(0.373304,-0.010079,0.006748,0.249909,0,0);-ms-transform:matrix(0.373304,-0.010079,0.006748,0.249909,0,0);-webkit-transform:matrix(0.373304,-0.010079,0.006748,0.249909,0,0);}
.m0_c00174{transform:matrix(0.380101,-0.010263,0.006748,0.249909,0,0);-ms-transform:matrix(0.380101,-0.010263,0.006748,0.249909,0,0);-webkit-transform:matrix(0.380101,-0.010263,0.006748,0.249909,0,0);}
.m1a_c00174{transform:matrix(0.385515,-0.010409,0.006748,0.249909,0,0);-ms-transform:matrix(0.385515,-0.010409,0.006748,0.249909,0,0);-webkit-transform:matrix(0.385515,-0.010409,0.006748,0.249909,0,0);}
.m2c_c00174{transform:matrix(0.386334,-0.010431,0.006748,0.249909,0,0);-ms-transform:matrix(0.386334,-0.010431,0.006748,0.249909,0,0);-webkit-transform:matrix(0.386334,-0.010431,0.006748,0.249909,0,0);}
.m6_c00174{transform:matrix(0.391003,-0.010557,0.006748,0.249909,0,0);-ms-transform:matrix(0.391003,-0.010557,0.006748,0.249909,0,0);-webkit-transform:matrix(0.391003,-0.010557,0.006748,0.249909,0,0);}
.m43_c00174{transform:matrix(0.392590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392590,0.000000,0.000000,0.250000,0,0);}
.m2e_c00174{transform:matrix(0.398325,-0.010755,0.006748,0.249909,0,0);-ms-transform:matrix(0.398325,-0.010755,0.006748,0.249909,0,0);-webkit-transform:matrix(0.398325,-0.010755,0.006748,0.249909,0,0);}
.mc_c00174{transform:matrix(0.422991,-0.011421,0.006748,0.249909,0,0);-ms-transform:matrix(0.422991,-0.011421,0.006748,0.249909,0,0);-webkit-transform:matrix(0.422991,-0.011421,0.006748,0.249909,0,0);}
.m36_c00174{transform:matrix(0.426915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426915,0.000000,0.000000,0.250000,0,0);}
.m16_c00174{transform:matrix(0.427109,-0.011532,0.006748,0.249909,0,0);-ms-transform:matrix(0.427109,-0.011532,0.006748,0.249909,0,0);-webkit-transform:matrix(0.427109,-0.011532,0.006748,0.249909,0,0);}
.m19_c00174{transform:matrix(0.468019,-0.012637,0.006748,0.249909,0,0);-ms-transform:matrix(0.468019,-0.012637,0.006748,0.249909,0,0);-webkit-transform:matrix(0.468019,-0.012637,0.006748,0.249909,0,0);}
.m2_c00174{transform:matrix(0.473452,-0.012783,0.006748,0.249909,0,0);-ms-transform:matrix(0.473452,-0.012783,0.006748,0.249909,0,0);-webkit-transform:matrix(0.473452,-0.012783,0.006748,0.249909,0,0);}
.m1b_c00174{transform:matrix(0.473942,-0.012796,0.006748,0.249909,0,0);-ms-transform:matrix(0.473942,-0.012796,0.006748,0.249909,0,0);-webkit-transform:matrix(0.473942,-0.012796,0.006748,0.249909,0,0);}
.mf_c00174{transform:matrix(0.486573,-0.013137,0.006748,0.249909,0,0);-ms-transform:matrix(0.486573,-0.013137,0.006748,0.249909,0,0);-webkit-transform:matrix(0.486573,-0.013137,0.006748,0.249909,0,0);}
.m4_c00174{transform:matrix(0.486733,-0.013142,0.006748,0.249909,0,0);-ms-transform:matrix(0.486733,-0.013142,0.006748,0.249909,0,0);-webkit-transform:matrix(0.486733,-0.013142,0.006748,0.249909,0,0);}
.m32_c00174{transform:matrix(0.490110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490110,0.000000,0.000000,0.250000,0,0);}
.m1_c00174{transform:matrix(0.492620,-0.013301,0.006748,0.249909,0,0);-ms-transform:matrix(0.492620,-0.013301,0.006748,0.249909,0,0);-webkit-transform:matrix(0.492620,-0.013301,0.006748,0.249909,0,0);}
.m2d_c00174{transform:matrix(0.494090,-0.013340,0.006748,0.249909,0,0);-ms-transform:matrix(0.494090,-0.013340,0.006748,0.249909,0,0);-webkit-transform:matrix(0.494090,-0.013340,0.006748,0.249909,0,0);}
.m8_c00174{transform:matrix(0.502887,-0.013578,0.006748,0.249909,0,0);-ms-transform:matrix(0.502887,-0.013578,0.006748,0.249909,0,0);-webkit-transform:matrix(0.502887,-0.013578,0.006748,0.249909,0,0);}
.m33_c00174{transform:matrix(0.504610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504610,0.000000,0.000000,0.250000,0,0);}
.m2a_c00174{transform:matrix(0.558506,-0.015080,0.006748,0.249909,0,0);-ms-transform:matrix(0.558506,-0.015080,0.006748,0.249909,0,0);-webkit-transform:matrix(0.558506,-0.015080,0.006748,0.249909,0,0);}
.m5_c00174{transform:matrix(0.561175,-0.015152,0.006748,0.249909,0,0);-ms-transform:matrix(0.561175,-0.015152,0.006748,0.249909,0,0);-webkit-transform:matrix(0.561175,-0.015152,0.006748,0.249909,0,0);}
.ma_c00174{transform:matrix(0.563325,-0.015210,0.006748,0.249909,0,0);-ms-transform:matrix(0.563325,-0.015210,0.006748,0.249909,0,0);-webkit-transform:matrix(0.563325,-0.015210,0.006748,0.249909,0,0);}
.m1d_c00174{transform:matrix(0.565524,-0.015269,0.006748,0.249909,0,0);-ms-transform:matrix(0.565524,-0.015269,0.006748,0.249909,0,0);-webkit-transform:matrix(0.565524,-0.015269,0.006748,0.249909,0,0);}
.m10_c00174{transform:matrix(0.574461,-0.015510,0.006748,0.249909,0,0);-ms-transform:matrix(0.574461,-0.015510,0.006748,0.249909,0,0);-webkit-transform:matrix(0.574461,-0.015510,0.006748,0.249909,0,0);}
.mb_c00174{transform:matrix(0.579379,-0.015643,0.006748,0.249909,0,0);-ms-transform:matrix(0.579379,-0.015643,0.006748,0.249909,0,0);-webkit-transform:matrix(0.579379,-0.015643,0.006748,0.249909,0,0);}
.m12_c00174{transform:matrix(0.588665,-0.015894,0.006748,0.249909,0,0);-ms-transform:matrix(0.588665,-0.015894,0.006748,0.249909,0,0);-webkit-transform:matrix(0.588665,-0.015894,0.006748,0.249909,0,0);}
.m27_c00174{transform:matrix(0.610977,-0.016496,0.006748,0.249909,0,0);-ms-transform:matrix(0.610977,-0.016496,0.006748,0.249909,0,0);-webkit-transform:matrix(0.610977,-0.016496,0.006748,0.249909,0,0);}
.md_c00174{transform:matrix(0.614291,-0.016586,0.006748,0.249909,0,0);-ms-transform:matrix(0.614291,-0.016586,0.006748,0.249909,0,0);-webkit-transform:matrix(0.614291,-0.016586,0.006748,0.249909,0,0);}
.m24_c00174{transform:matrix(0.647494,-0.017482,0.006748,0.249909,0,0);-ms-transform:matrix(0.647494,-0.017482,0.006748,0.249909,0,0);-webkit-transform:matrix(0.647494,-0.017482,0.006748,0.249909,0,0);}
.m25_c00174{transform:matrix(0.651722,-0.017597,0.006748,0.249909,0,0);-ms-transform:matrix(0.651722,-0.017597,0.006748,0.249909,0,0);-webkit-transform:matrix(0.651722,-0.017597,0.006748,0.249909,0,0);}
.m17_c00174{transform:matrix(0.674569,-0.018213,0.006748,0.249909,0,0);-ms-transform:matrix(0.674569,-0.018213,0.006748,0.249909,0,0);-webkit-transform:matrix(0.674569,-0.018213,0.006748,0.249909,0,0);}
.m28_c00174{transform:matrix(0.675509,-0.018239,0.006748,0.249909,0,0);-ms-transform:matrix(0.675509,-0.018239,0.006748,0.249909,0,0);-webkit-transform:matrix(0.675509,-0.018239,0.006748,0.249909,0,0);}
.m2b_c00174{transform:matrix(0.701194,-0.018932,0.006748,0.249909,0,0);-ms-transform:matrix(0.701194,-0.018932,0.006748,0.249909,0,0);-webkit-transform:matrix(0.701194,-0.018932,0.006748,0.249909,0,0);}
.m20_c00174{transform:matrix(0.717184,-0.019364,0.006748,0.249909,0,0);-ms-transform:matrix(0.717184,-0.019364,0.006748,0.249909,0,0);-webkit-transform:matrix(0.717184,-0.019364,0.006748,0.249909,0,0);}
.m37_c00174{transform:matrix(0.756255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.756255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.756255,0.000000,0.000000,0.250000,0,0);}
.m35_c00174{transform:matrix(0.774275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.774275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.774275,0.000000,0.000000,0.250000,0,0);}
.m1c_c00174{transform:matrix(0.789907,-0.021327,0.006748,0.249909,0,0);-ms-transform:matrix(0.789907,-0.021327,0.006748,0.249909,0,0);-webkit-transform:matrix(0.789907,-0.021327,0.006748,0.249909,0,0);}
.m29_c00174{transform:matrix(0.793011,-0.021411,0.006748,0.249909,0,0);-ms-transform:matrix(0.793011,-0.021411,0.006748,0.249909,0,0);-webkit-transform:matrix(0.793011,-0.021411,0.006748,0.249909,0,0);}
.m44_c00174{transform:matrix(0.818360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.818360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.818360,0.000000,0.000000,0.250000,0,0);}
.m3_c00174{transform:matrix(0.910283,-0.024578,0.006748,0.249909,0,0);-ms-transform:matrix(0.910283,-0.024578,0.006748,0.249909,0,0);-webkit-transform:matrix(0.910283,-0.024578,0.006748,0.249909,0,0);}
.me_c00174{transform:matrix(1.049827,-0.028345,0.006748,0.249909,0,0);-ms-transform:matrix(1.049827,-0.028345,0.006748,0.249909,0,0);-webkit-transform:matrix(1.049827,-0.028345,0.006748,0.249909,0,0);}
.m45_c00174{transform:matrix(1.247255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.247255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.247255,0.000000,0.000000,0.250000,0,0);}
.m1f_c00174{transform:matrix(1.329680,-0.035901,0.006748,0.249909,0,0);-ms-transform:matrix(1.329680,-0.035901,0.006748,0.249909,0,0);-webkit-transform:matrix(1.329680,-0.035901,0.006748,0.249909,0,0);}
.m9_c00174{transform:matrix(1.395796,-0.037687,0.006748,0.249909,0,0);-ms-transform:matrix(1.395796,-0.037687,0.006748,0.249909,0,0);-webkit-transform:matrix(1.395796,-0.037687,0.006748,0.249909,0,0);}
.m21_c00174{transform:matrix(1.964349,-0.053037,0.006748,0.249909,0,0);-ms-transform:matrix(1.964349,-0.053037,0.006748,0.249909,0,0);-webkit-transform:matrix(1.964349,-0.053037,0.006748,0.249909,0,0);}
.m46_c00174{transform:matrix(2.033640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.033640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.033640,0.000000,0.000000,0.250000,0,0);}
.v0_c00174{vertical-align:0.000000px;}
.ls0_c00174{letter-spacing:0.000000px;}
.sc__c00174{text-shadow:none;}
.sc0_c00174{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__c00174{-webkit-text-stroke:0px transparent;}
.sc0_c00174{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00174{word-spacing:0.000000px;}
.fc0_c00174{color:transparent;}
.fs9_c00174{font-size:18.000000px;}
.fsb_c00174{font-size:30.000000px;}
.fs8_c00174{font-size:36.000000px;}
.fs7_c00174{font-size:42.000000px;}
.fs6_c00174{font-size:48.000000px;}
.fsa_c00174{font-size:54.000000px;}
.fs1_c00174{font-size:60.021866px;}
.fs2_c00174{font-size:72.026239px;}
.fs0_c00174{font-size:78.028426px;}
.fs4_c00174{font-size:90.000000px;}
.fs3_c00174{font-size:102.037172px;}
.fs5_c00174{font-size:114.000000px;}
.y0_c00174{bottom:0.000000px;}
.y41_c00174{bottom:0.391500px;}
.y40_c00174{bottom:5.536500px;}
.y34_c00174{bottom:7.021500px;}
.y35_c00174{bottom:7.741500px;}
.y3f_c00174{bottom:8.640000px;}
.y36_c00174{bottom:9.918000px;}
.y3e_c00174{bottom:24.300000px;}
.y33_c00174{bottom:35.986500px;}
.y38_c00174{bottom:52.650000px;}
.y28_c00174{bottom:68.554763px;}
.y3d_c00174{bottom:71.550000px;}
.y3c_c00174{bottom:73.977000px;}
.y29_c00174{bottom:74.471949px;}
.y2a_c00174{bottom:79.796324px;}
.y3b_c00174{bottom:82.080000px;}
.y2b_c00174{bottom:82.848008px;}
.y2c_c00174{bottom:85.390571px;}
.y2d_c00174{bottom:86.928585px;}
.y2e_c00174{bottom:88.728128px;}
.y2f_c00174{bottom:90.795437px;}
.y30_c00174{bottom:91.982075px;}
.y31_c00174{bottom:97.424210px;}
.y32_c00174{bottom:98.745905px;}
.y3a_c00174{bottom:117.450000px;}
.y37_c00174{bottom:121.500000px;}
.y39_c00174{bottom:122.850000px;}
.y20_c00174{bottom:137.448683px;}
.y21_c00174{bottom:143.953632px;}
.y22_c00174{bottom:147.116078px;}
.y23_c00174{bottom:153.034305px;}
.y24_c00174{bottom:154.768305px;}
.y25_c00174{bottom:156.316574px;}
.y26_c00174{bottom:161.499210px;}
.y27_c00174{bottom:167.228588px;}
.y15_c00174{bottom:182.776379px;}
.y16_c00174{bottom:183.336947px;}
.y17_c00174{bottom:184.230285px;}
.y18_c00174{bottom:185.851344px;}
.y19_c00174{bottom:190.244960px;}
.y1a_c00174{bottom:190.667115px;}
.y1b_c00174{bottom:192.852507px;}
.y1c_c00174{bottom:194.330582px;}
.y1d_c00174{bottom:196.193285px;}
.y1e_c00174{bottom:198.052950px;}
.y1f_c00174{bottom:199.666643px;}
.yb_c00174{bottom:205.776734px;}
.yc_c00174{bottom:213.548357px;}
.yd_c00174{bottom:216.423158px;}
.ye_c00174{bottom:218.055108px;}
.yf_c00174{bottom:221.998364px;}
.y10_c00174{bottom:227.096481px;}
.y11_c00174{bottom:228.855876px;}
.y12_c00174{bottom:231.959154px;}
.y13_c00174{bottom:234.823989px;}
.y14_c00174{bottom:237.308475px;}
.y1_c00174{bottom:243.252000px;}
.y2_c00174{bottom:245.448032px;}
.y3_c00174{bottom:247.094964px;}
.y4_c00174{bottom:248.931355px;}
.y5_c00174{bottom:252.879903px;}
.y6_c00174{bottom:255.335742px;}
.y7_c00174{bottom:257.709852px;}
.y8_c00174{bottom:259.415105px;}
.y9_c00174{bottom:261.667877px;}
.ya_c00174{bottom:263.417800px;}
.ha_c00174{height:18.000000px;}
.hc_c00174{height:30.000000px;}
.h9_c00174{height:36.000000px;}
.h8_c00174{height:42.000000px;}
.h7_c00174{height:48.000000px;}
.hb_c00174{height:54.000000px;}
.h2_c00174{height:60.021866px;}
.h3_c00174{height:72.026239px;}
.h1_c00174{height:78.028426px;}
.h5_c00174{height:90.000000px;}
.h4_c00174{height:102.037172px;}
.h6_c00174{height:114.000000px;}
.h0_c00174{height:682.500000px;}
.w1_c00174{width:945.750000px;}
.w0_c00174{width:946.050000px;}
.x0_c00174{left:0.000000px;}
.x15_c00174{left:2.014469px;}
.x1_c00174{left:30.408000px;}
.x16_c00174{left:31.504827px;}
.xb_c00174{left:32.781324px;}
.x17_c00174{left:78.490452px;}
.x2_c00174{left:111.742500px;}
.x18_c00174{left:163.825880px;}
.x3_c00174{left:172.740000px;}
.x26_c00174{left:201.973722px;}
.x20_c00174{left:224.844744px;}
.x4_c00174{left:240.754500px;}
.xc_c00174{left:248.677917px;}
.x21_c00174{left:317.843667px;}
.xd_c00174{left:328.521518px;}
.x27_c00174{left:354.084377px;}
.xe_c00174{left:373.842002px;}
.x5_c00174{left:386.997000px;}
.x19_c00174{left:395.102316px;}
.x1a_c00174{left:417.353636px;}
.x33_c00174{left:433.270500px;}
.x28_c00174{left:441.257544px;}
.x6_c00174{left:477.954000px;}
.xf_c00174{left:483.361893px;}
.x22_c00174{left:491.893281px;}
.x29_c00174{left:513.910871px;}
.x34_c00174{left:523.197000px;}
.x2f_c00174{left:529.470000px;}
.x1b_c00174{left:532.374462px;}
.x23_c00174{left:542.883642px;}
.x2a_c00174{left:557.864894px;}
.x7_c00174{left:565.884000px;}
.x24_c00174{left:588.440556px;}
.x30_c00174{left:590.760000px;}
.x1c_c00174{left:610.134729px;}
.x10_c00174{left:624.980009px;}
.x8_c00174{left:629.041500px;}
.x2b_c00174{left:668.335539px;}
.x11_c00174{left:673.853142px;}
.x2c_c00174{left:702.222209px;}
.x1d_c00174{left:708.144870px;}
.x9_c00174{left:712.477500px;}
.x38_c00174{left:736.560000px;}
.x25_c00174{left:740.861261px;}
.x31_c00174{left:742.500000px;}
.x39_c00174{left:754.380000px;}
.x12_c00174{left:760.046204px;}
.x3a_c00174{left:763.020000px;}
.xa_c00174{left:777.289500px;}
.x32_c00174{left:781.380000px;}
.x35_c00174{left:795.336000px;}
.x3b_c00174{left:797.850000px;}
.x1e_c00174{left:806.042511px;}
.x13_c00174{left:839.631885px;}
.x2d_c00174{left:857.693634px;}
.x3f_c00174{left:862.920000px;}
.x3c_c00174{left:877.770000px;}
.x40_c00174{left:882.630000px;}
.x1f_c00174{left:890.938317px;}
.x2e_c00174{left:895.470494px;}
.x3d_c00174{left:901.530000px;}
.x14_c00174{left:908.633118px;}
.x41_c00174{left:925.290000px;}
.x37_c00174{left:933.120000px;}
.x36_c00174{left:935.010000px;}
.x3e_c00174{left:943.110000px;}
@media print{
.v0_c00174{vertical-align:0.000000pt;}
.ls0_c00174{letter-spacing:0.000000pt;}
.ws0_c00174{word-spacing:0.000000pt;}
.fs9_c00174{font-size:16.000000pt;}
.fsb_c00174{font-size:26.666667pt;}
.fs8_c00174{font-size:32.000000pt;}
.fs7_c00174{font-size:37.333333pt;}
.fs6_c00174{font-size:42.666667pt;}
.fsa_c00174{font-size:48.000000pt;}
.fs1_c00174{font-size:53.352770pt;}
.fs2_c00174{font-size:64.023324pt;}
.fs0_c00174{font-size:69.358601pt;}
.fs4_c00174{font-size:80.000000pt;}
.fs3_c00174{font-size:90.699709pt;}
.fs5_c00174{font-size:101.333333pt;}
.y0_c00174{bottom:0.000000pt;}
.y41_c00174{bottom:0.348000pt;}
.y40_c00174{bottom:4.921333pt;}
.y34_c00174{bottom:6.241333pt;}
.y35_c00174{bottom:6.881333pt;}
.y3f_c00174{bottom:7.680000pt;}
.y36_c00174{bottom:8.816000pt;}
.y3e_c00174{bottom:21.600000pt;}
.y33_c00174{bottom:31.988000pt;}
.y38_c00174{bottom:46.800000pt;}
.y28_c00174{bottom:60.937567pt;}
.y3d_c00174{bottom:63.600000pt;}
.y3c_c00174{bottom:65.757333pt;}
.y29_c00174{bottom:66.197288pt;}
.y2a_c00174{bottom:70.930065pt;}
.y3b_c00174{bottom:72.960000pt;}
.y2b_c00174{bottom:73.642673pt;}
.y2c_c00174{bottom:75.902729pt;}
.y2d_c00174{bottom:77.269853pt;}
.y2e_c00174{bottom:78.869447pt;}
.y2f_c00174{bottom:80.707055pt;}
.y30_c00174{bottom:81.761844pt;}
.y31_c00174{bottom:86.599297pt;}
.y32_c00174{bottom:87.774137pt;}
.y3a_c00174{bottom:104.400000pt;}
.y37_c00174{bottom:108.000000pt;}
.y39_c00174{bottom:109.200000pt;}
.y20_c00174{bottom:122.176607pt;}
.y21_c00174{bottom:127.958784pt;}
.y22_c00174{bottom:130.769847pt;}
.y23_c00174{bottom:136.030493pt;}
.y24_c00174{bottom:137.571827pt;}
.y25_c00174{bottom:138.948065pt;}
.y26_c00174{bottom:143.554853pt;}
.y27_c00174{bottom:148.647633pt;}
.y15_c00174{bottom:162.467892pt;}
.y16_c00174{bottom:162.966175pt;}
.y17_c00174{bottom:163.760253pt;}
.y18_c00174{bottom:165.201195pt;}
.y19_c00174{bottom:169.106631pt;}
.y1a_c00174{bottom:169.481880pt;}
.y1b_c00174{bottom:171.424451pt;}
.y1c_c00174{bottom:172.738295pt;}
.y1d_c00174{bottom:174.394031pt;}
.y1e_c00174{bottom:176.047067pt;}
.y1f_c00174{bottom:177.481460pt;}
.yb_c00174{bottom:182.912652pt;}
.yc_c00174{bottom:189.820761pt;}
.yd_c00174{bottom:192.376140pt;}
.ye_c00174{bottom:193.826763pt;}
.yf_c00174{bottom:197.331879pt;}
.y10_c00174{bottom:201.863539pt;}
.y11_c00174{bottom:203.427445pt;}
.y12_c00174{bottom:206.185915pt;}
.y13_c00174{bottom:208.732435pt;}
.y14_c00174{bottom:210.940867pt;}
.y1_c00174{bottom:216.224000pt;}
.y2_c00174{bottom:218.176028pt;}
.y3_c00174{bottom:219.639968pt;}
.y4_c00174{bottom:221.272316pt;}
.y5_c00174{bottom:224.782136pt;}
.y6_c00174{bottom:226.965104pt;}
.y7_c00174{bottom:229.075424pt;}
.y8_c00174{bottom:230.591204pt;}
.y9_c00174{bottom:232.593668pt;}
.ya_c00174{bottom:234.149156pt;}
.ha_c00174{height:16.000000pt;}
.hc_c00174{height:26.666667pt;}
.h9_c00174{height:32.000000pt;}
.h8_c00174{height:37.333333pt;}
.h7_c00174{height:42.666667pt;}
.hb_c00174{height:48.000000pt;}
.h2_c00174{height:53.352770pt;}
.h3_c00174{height:64.023324pt;}
.h1_c00174{height:69.358601pt;}
.h5_c00174{height:80.000000pt;}
.h4_c00174{height:90.699709pt;}
.h6_c00174{height:101.333333pt;}
.h0_c00174{height:606.666667pt;}
.w1_c00174{width:840.666667pt;}
.w0_c00174{width:840.933333pt;}
.x0_c00174{left:0.000000pt;}
.x15_c00174{left:1.790639pt;}
.x1_c00174{left:27.029333pt;}
.x16_c00174{left:28.004291pt;}
.xb_c00174{left:29.138955pt;}
.x17_c00174{left:69.769291pt;}
.x2_c00174{left:99.326667pt;}
.x18_c00174{left:145.623004pt;}
.x3_c00174{left:153.546667pt;}
.x26_c00174{left:179.532197pt;}
.x20_c00174{left:199.861995pt;}
.x4_c00174{left:214.004000pt;}
.xc_c00174{left:221.047037pt;}
.x21_c00174{left:282.527704pt;}
.xd_c00174{left:292.019127pt;}
.x27_c00174{left:314.741668pt;}
.xe_c00174{left:332.304001pt;}
.x5_c00174{left:343.997333pt;}
.x19_c00174{left:351.202059pt;}
.x1a_c00174{left:370.981009pt;}
.x33_c00174{left:385.129333pt;}
.x28_c00174{left:392.228928pt;}
.x6_c00174{left:424.848000pt;}
.xf_c00174{left:429.655016pt;}
.x22_c00174{left:437.238472pt;}
.x29_c00174{left:456.809663pt;}
.x34_c00174{left:465.064000pt;}
.x2f_c00174{left:470.640000pt;}
.x1b_c00174{left:473.221744pt;}
.x23_c00174{left:482.563237pt;}
.x2a_c00174{left:495.879905pt;}
.x7_c00174{left:503.008000pt;}
.x24_c00174{left:523.058272pt;}
.x30_c00174{left:525.120000pt;}
.x1c_c00174{left:542.341981pt;}
.x10_c00174{left:555.537785pt;}
.x8_c00174{left:559.148000pt;}
.x2b_c00174{left:594.076035pt;}
.x11_c00174{left:598.980571pt;}
.x2c_c00174{left:624.197519pt;}
.x1d_c00174{left:629.462107pt;}
.x9_c00174{left:633.313333pt;}
.x38_c00174{left:654.720000pt;}
.x25_c00174{left:658.543343pt;}
.x31_c00174{left:660.000000pt;}
.x39_c00174{left:670.560000pt;}
.x12_c00174{left:675.596625pt;}
.x3a_c00174{left:678.240000pt;}
.xa_c00174{left:690.924000pt;}
.x32_c00174{left:694.560000pt;}
.x35_c00174{left:706.965333pt;}
.x3b_c00174{left:709.200000pt;}
.x1e_c00174{left:716.482232pt;}
.x13_c00174{left:746.339453pt;}
.x2d_c00174{left:762.394341pt;}
.x3f_c00174{left:767.040000pt;}
.x3c_c00174{left:780.240000pt;}
.x40_c00174{left:784.560000pt;}
.x1f_c00174{left:791.945171pt;}
.x2e_c00174{left:795.973772pt;}
.x3d_c00174{left:801.360000pt;}
.x14_c00174{left:807.673883pt;}
.x41_c00174{left:822.480000pt;}
.x37_c00174{left:829.440000pt;}
.x36_c00174{left:831.120000pt;}
.x3e_c00174{left:838.320000pt;}
}





/* 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_c00175 {
    display:none;
  }
  .loading-indicator_c00175.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00175 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_c00175 { 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_c00175" -> "#page-container .classname_c00175")
 */
.pf_c00175 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00175 { /* 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_c00175.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00175 { /* 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_c00175 { /* 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_c00175 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00175 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00175 {overflow:visible;}
  }
}
.c_c00175 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00175 { /* 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_c00175:after { /* webkit #35443 */
  content: '';
}
.t_c00175:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00175 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 */
}
.__c00175 { /* 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_c00175 { /* info for Javascript */
  display:none;
}
.l_c00175 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00175 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00175 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00175: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_c00175 {
    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_c00175.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00175.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_c00175 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00175{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00175;src:url('chunks/assets/font_6bbd15de30fdc229d5d5ff82.woff2')format("woff");}.ff1_c00175{font-family:ff1_c00175;line-height:1.000000;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;}
.m4_c00175{transform:matrix(0.067080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.067080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.067080,0.000000,0.000000,0.250000,0,0);}
.m7_c00175{transform:matrix(0.084855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084855,0.000000,0.000000,0.250000,0,0);}
.m2_c00175{transform:matrix(0.114235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114235,0.000000,0.000000,0.250000,0,0);}
.m1_c00175{transform:matrix(0.128160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128160,0.000000,0.000000,0.250000,0,0);}
.m3_c00175{transform:matrix(0.208385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208385,0.000000,0.000000,0.250000,0,0);}
.m5_c00175{transform:matrix(0.265375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265375,0.000000,0.000000,0.250000,0,0);}
.m0_c00175{transform:matrix(0.273725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273725,0.000000,0.000000,0.250000,0,0);}
.m6_c00175{transform:matrix(0.296700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296700,0.000000,0.000000,0.250000,0,0);}
.v0_c00175{vertical-align:0.000000px;}
.ls0_c00175{letter-spacing:0.000000px;}
.sc__c00175{text-shadow:none;}
.sc0_c00175{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__c00175{-webkit-text-stroke:0px transparent;}
.sc0_c00175{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00175{word-spacing:0.000000px;}
.fc0_c00175{color:transparent;}
.fs0_c00175{font-size:12.000000px;}
.fs1_c00175{font-size:18.000000px;}
.y0_c00175{bottom:0.000000px;}
.y4_c00175{bottom:113.670000px;}
.y3_c00175{bottom:117.990000px;}
.y2_c00175{bottom:121.230000px;}
.y1_c00175{bottom:126.360000px;}
.y6_c00175{bottom:205.470000px;}
.y5_c00175{bottom:502.470000px;}
.h1_c00175{height:12.000000px;}
.h2_c00175{height:18.000000px;}
.h0_c00175{height:682.500000px;}
.w1_c00175{width:945.750000px;}
.w0_c00175{width:946.050000px;}
.x0_c00175{left:0.000000px;}
.x1_c00175{left:19.440000px;}
.x2_c00175{left:936.360000px;}
.x4_c00175{left:942.570000px;}
.x5_c00175{left:943.650000px;}
.x3_c00175{left:944.730000px;}
@media print{
.v0_c00175{vertical-align:0.000000pt;}
.ls0_c00175{letter-spacing:0.000000pt;}
.ws0_c00175{word-spacing:0.000000pt;}
.fs0_c00175{font-size:10.666667pt;}
.fs1_c00175{font-size:16.000000pt;}
.y0_c00175{bottom:0.000000pt;}
.y4_c00175{bottom:101.040000pt;}
.y3_c00175{bottom:104.880000pt;}
.y2_c00175{bottom:107.760000pt;}
.y1_c00175{bottom:112.320000pt;}
.y6_c00175{bottom:182.640000pt;}
.y5_c00175{bottom:446.640000pt;}
.h1_c00175{height:10.666667pt;}
.h2_c00175{height:16.000000pt;}
.h0_c00175{height:606.666667pt;}
.w1_c00175{width:840.666667pt;}
.w0_c00175{width:840.933333pt;}
.x0_c00175{left:0.000000pt;}
.x1_c00175{left:17.280000pt;}
.x2_c00175{left:832.320000pt;}
.x4_c00175{left:837.840000pt;}
.x5_c00175{left:838.800000pt;}
.x3_c00175{left:839.760000pt;}
}





/* 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_c00176 {
    display:none;
  }
  .loading-indicator_c00176.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00176 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_c00176 { 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_c00176" -> "#page-container .classname_c00176")
 */
.pf_c00176 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00176 { /* 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_c00176.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00176 { /* 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_c00176 { /* 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_c00176 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00176 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00176 {overflow:visible;}
  }
}
.c_c00176 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00176 { /* 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_c00176:after { /* webkit #35443 */
  content: '';
}
.t_c00176:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00176 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 */
}
.__c00176 { /* 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_c00176 { /* info for Javascript */
  display:none;
}
.l_c00176 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00176 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00176 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00176: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_c00176 {
    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_c00176.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00176.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_c00176 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00176{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00176;src:url('chunks/assets/font_4e10b644121e127e5c7b113e.woff2')format("woff");}.ff1_c00176{font-family:ff1_c00176;line-height:1.000000;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;}
.m1c_c00176{transform:matrix(0.036020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.036020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.036020,0.000000,0.000000,0.250000,0,0);}
.m9_c00176{transform:matrix(0.066249,0.001457,-0.005499,0.249940,0,0);-ms-transform:matrix(0.066249,0.001457,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.066249,0.001457,-0.005499,0.249940,0,0);}
.m12_c00176{transform:matrix(0.078571,0.001729,-0.005499,0.249940,0,0);-ms-transform:matrix(0.078571,0.001729,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.078571,0.001729,-0.005499,0.249940,0,0);}
.m1_c00176{transform:matrix(0.114112,0.002510,-0.005499,0.249940,0,0);-ms-transform:matrix(0.114112,0.002510,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.114112,0.002510,-0.005499,0.249940,0,0);}
.md_c00176{transform:matrix(0.125715,0.002766,-0.005499,0.249940,0,0);-ms-transform:matrix(0.125715,0.002766,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.125715,0.002766,-0.005499,0.249940,0,0);}
.m1a_c00176{transform:matrix(0.186465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186465,0.000000,0.000000,0.250000,0,0);}
.m15_c00176{transform:matrix(0.192578,0.004237,-0.005499,0.249940,0,0);-ms-transform:matrix(0.192578,0.004237,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.192578,0.004237,-0.005499,0.249940,0,0);}
.m17_c00176{transform:matrix(0.195113,0.004292,-0.005499,0.249940,0,0);-ms-transform:matrix(0.195113,0.004292,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.195113,0.004292,-0.005499,0.249940,0,0);}
.m18_c00176{transform:matrix(0.199667,0.004393,-0.005499,0.249940,0,0);-ms-transform:matrix(0.199667,0.004393,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.199667,0.004393,-0.005499,0.249940,0,0);}
.m2_c00176{transform:matrix(0.209839,0.004616,-0.005499,0.249940,0,0);-ms-transform:matrix(0.209839,0.004616,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.209839,0.004616,-0.005499,0.249940,0,0);}
.m4_c00176{transform:matrix(0.248440,0.005466,-0.005499,0.249940,0,0);-ms-transform:matrix(0.248440,0.005466,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.248440,0.005466,-0.005499,0.249940,0,0);}
.m16_c00176{transform:matrix(0.248530,0.005468,-0.005499,0.249940,0,0);-ms-transform:matrix(0.248530,0.005468,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.248530,0.005468,-0.005499,0.249940,0,0);}
.m5_c00176{transform:matrix(0.270480,0.005951,-0.005499,0.249940,0,0);-ms-transform:matrix(0.270480,0.005951,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.270480,0.005951,-0.005499,0.249940,0,0);}
.m14_c00176{transform:matrix(0.309450,0.006808,-0.005499,0.249940,0,0);-ms-transform:matrix(0.309450,0.006808,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.309450,0.006808,-0.005499,0.249940,0,0);}
.ma_c00176{transform:matrix(0.357039,0.007855,-0.005499,0.249940,0,0);-ms-transform:matrix(0.357039,0.007855,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.357039,0.007855,-0.005499,0.249940,0,0);}
.m8_c00176{transform:matrix(0.417409,0.009183,-0.005499,0.249940,0,0);-ms-transform:matrix(0.417409,0.009183,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.417409,0.009183,-0.005499,0.249940,0,0);}
.m19_c00176{transform:matrix(0.426402,0.009381,-0.005499,0.249940,0,0);-ms-transform:matrix(0.426402,0.009381,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.426402,0.009381,-0.005499,0.249940,0,0);}
.me_c00176{transform:matrix(0.475035,0.010451,-0.005499,0.249940,0,0);-ms-transform:matrix(0.475035,0.010451,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.475035,0.010451,-0.005499,0.249940,0,0);}
.m11_c00176{transform:matrix(0.486097,0.010694,-0.005499,0.249940,0,0);-ms-transform:matrix(0.486097,0.010694,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.486097,0.010694,-0.005499,0.249940,0,0);}
.m0_c00176{transform:matrix(0.493106,0.010848,-0.005499,0.249940,0,0);-ms-transform:matrix(0.493106,0.010848,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.493106,0.010848,-0.005499,0.249940,0,0);}
.m13_c00176{transform:matrix(0.495690,0.010905,-0.005499,0.249940,0,0);-ms-transform:matrix(0.495690,0.010905,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.495690,0.010905,-0.005499,0.249940,0,0);}
.mc_c00176{transform:matrix(0.575306,0.012657,-0.005499,0.249940,0,0);-ms-transform:matrix(0.575306,0.012657,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.575306,0.012657,-0.005499,0.249940,0,0);}
.m1b_c00176{transform:matrix(0.596910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.596910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.596910,0.000000,0.000000,0.250000,0,0);}
.m7_c00176{transform:matrix(0.622614,0.013698,-0.005499,0.249940,0,0);-ms-transform:matrix(0.622614,0.013698,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.622614,0.013698,-0.005499,0.249940,0,0);}
.mf_c00176{transform:matrix(0.641010,0.014102,-0.005499,0.249940,0,0);-ms-transform:matrix(0.641010,0.014102,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.641010,0.014102,-0.005499,0.249940,0,0);}
.m3_c00176{transform:matrix(0.666479,0.014663,-0.005499,0.249940,0,0);-ms-transform:matrix(0.666479,0.014663,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.666479,0.014663,-0.005499,0.249940,0,0);}
.mb_c00176{transform:matrix(0.718701,0.015811,-0.005499,0.249940,0,0);-ms-transform:matrix(0.718701,0.015811,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.718701,0.015811,-0.005499,0.249940,0,0);}
.m6_c00176{transform:matrix(0.918903,0.020216,-0.005499,0.249940,0,0);-ms-transform:matrix(0.918903,0.020216,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.918903,0.020216,-0.005499,0.249940,0,0);}
.m10_c00176{transform:matrix(1.215086,0.026732,-0.005499,0.249940,0,0);-ms-transform:matrix(1.215086,0.026732,-0.005499,0.249940,0,0);-webkit-transform:matrix(1.215086,0.026732,-0.005499,0.249940,0,0);}
.v0_c00176{vertical-align:0.000000px;}
.ls0_c00176{letter-spacing:0.000000px;}
.sc__c00176{text-shadow:none;}
.sc0_c00176{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__c00176{-webkit-text-stroke:0px transparent;}
.sc0_c00176{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00176{word-spacing:0.000000px;}
.fc0_c00176{color:transparent;}
.fs5_c00176{font-size:48.000000px;}
.fs4_c00176{font-size:60.000000px;}
.fs1_c00176{font-size:78.018874px;}
.fs0_c00176{font-size:84.020326px;}
.fs3_c00176{font-size:168.040651px;}
.fs2_c00176{font-size:264.063880px;}
.y0_c00176{bottom:0.000000px;}
.y1a_c00176{bottom:53.793246px;}
.y1c_c00176{bottom:54.540000px;}
.y19_c00176{bottom:54.661482px;}
.y18_c00176{bottom:56.464398px;}
.y17_c00176{bottom:59.965035px;}
.y16_c00176{bottom:60.699546px;}
.y15_c00176{bottom:63.148125px;}
.y13_c00176{bottom:83.342703px;}
.y14_c00176{bottom:83.588685px;}
.y12_c00176{bottom:86.960085px;}
.y11_c00176{bottom:93.131934px;}
.y1b_c00176{bottom:117.720000px;}
.y10_c00176{bottom:123.379686px;}
.yf_c00176{bottom:124.608750px;}
.ye_c00176{bottom:128.508207px;}
.yd_c00176{bottom:133.722030px;}
.yc_c00176{bottom:135.883089px;}
.yb_c00176{bottom:140.958153px;}
.ya_c00176{bottom:187.484169px;}
.y9_c00176{bottom:192.082521px;}
.y8_c00176{bottom:194.728461px;}
.y7_c00176{bottom:198.454161px;}
.y6_c00176{bottom:199.282956px;}
.y5_c00176{bottom:199.971831px;}
.y4_c00176{bottom:202.648098px;}
.y3_c00176{bottom:203.064393px;}
.y2_c00176{bottom:205.268892px;}
.y1_c00176{bottom:206.829000px;}
.h6_c00176{height:48.000000px;}
.h5_c00176{height:60.000000px;}
.h2_c00176{height:78.018874px;}
.h1_c00176{height:84.020326px;}
.h4_c00176{height:168.040651px;}
.h3_c00176{height:264.063880px;}
.h0_c00176{height:682.500000px;}
.w1_c00176{width:945.750000px;}
.w0_c00176{width:946.050000px;}
.x0_c00176{left:0.000000px;}
.xb_c00176{left:10.432842px;}
.x11_c00176{left:23.101803px;}
.x1_c00176{left:26.350500px;}
.x2_c00176{left:97.264500px;}
.x3_c00176{left:197.469000px;}
.x15_c00176{left:198.627549px;}
.x4_c00176{left:216.391500px;}
.xc_c00176{left:231.089991px;}
.x16_c00176{left:255.139236px;}
.xd_c00176{left:325.022412px;}
.x5_c00176{left:338.040000px;}
.x6_c00176{left:369.352500px;}
.x7_c00176{left:407.025000px;}
.x12_c00176{left:434.544630px;}
.x17_c00176{left:524.426031px;}
.xe_c00176{left:551.713929px;}
.x8_c00176{left:576.375000px;}
.x14_c00176{left:659.279214px;}
.x18_c00176{left:663.131487px;}
.x13_c00176{left:675.712755px;}
.x9_c00176{left:696.645000px;}
.xf_c00176{left:721.253700px;}
.x19_c00176{left:729.882687px;}
.x10_c00176{left:774.664512px;}
.x1b_c00176{left:900.720000px;}
.x1a_c00176{left:903.960000px;}
.xa_c00176{left:905.661000px;}
@media print{
.v0_c00176{vertical-align:0.000000pt;}
.ls0_c00176{letter-spacing:0.000000pt;}
.ws0_c00176{word-spacing:0.000000pt;}
.fs5_c00176{font-size:42.666667pt;}
.fs4_c00176{font-size:53.333333pt;}
.fs1_c00176{font-size:69.350110pt;}
.fs0_c00176{font-size:74.684734pt;}
.fs3_c00176{font-size:149.369468pt;}
.fs2_c00176{font-size:234.723449pt;}
.y0_c00176{bottom:0.000000pt;}
.y1a_c00176{bottom:47.816219pt;}
.y1c_c00176{bottom:48.480000pt;}
.y19_c00176{bottom:48.587984pt;}
.y18_c00176{bottom:50.190576pt;}
.y17_c00176{bottom:53.302253pt;}
.y16_c00176{bottom:53.955152pt;}
.y15_c00176{bottom:56.131667pt;}
.y13_c00176{bottom:74.082403pt;}
.y14_c00176{bottom:74.301053pt;}
.y12_c00176{bottom:77.297853pt;}
.y11_c00176{bottom:82.783941pt;}
.y1b_c00176{bottom:104.640000pt;}
.y10_c00176{bottom:109.670832pt;}
.yf_c00176{bottom:110.763333pt;}
.ye_c00176{bottom:114.229517pt;}
.yd_c00176{bottom:118.864027pt;}
.yc_c00176{bottom:120.784968pt;}
.yb_c00176{bottom:125.296136pt;}
.ya_c00176{bottom:166.652595pt;}
.y9_c00176{bottom:170.740019pt;}
.y8_c00176{bottom:173.091965pt;}
.y7_c00176{bottom:176.403699pt;}
.y6_c00176{bottom:177.140405pt;}
.y5_c00176{bottom:177.752739pt;}
.y4_c00176{bottom:180.131643pt;}
.y3_c00176{bottom:180.501683pt;}
.y2_c00176{bottom:182.461237pt;}
.y1_c00176{bottom:183.848000pt;}
.h6_c00176{height:42.666667pt;}
.h5_c00176{height:53.333333pt;}
.h2_c00176{height:69.350110pt;}
.h1_c00176{height:74.684734pt;}
.h4_c00176{height:149.369468pt;}
.h3_c00176{height:234.723449pt;}
.h0_c00176{height:606.666667pt;}
.w1_c00176{width:840.666667pt;}
.w0_c00176{width:840.933333pt;}
.x0_c00176{left:0.000000pt;}
.xb_c00176{left:9.273637pt;}
.x11_c00176{left:20.534936pt;}
.x1_c00176{left:23.422667pt;}
.x2_c00176{left:86.457333pt;}
.x3_c00176{left:175.528000pt;}
.x15_c00176{left:176.557821pt;}
.x4_c00176{left:192.348000pt;}
.xc_c00176{left:205.413325pt;}
.x16_c00176{left:226.790432pt;}
.xd_c00176{left:288.908811pt;}
.x5_c00176{left:300.480000pt;}
.x6_c00176{left:328.313333pt;}
.x7_c00176{left:361.800000pt;}
.x12_c00176{left:386.261893pt;}
.x17_c00176{left:466.156472pt;}
.xe_c00176{left:490.412381pt;}
.x8_c00176{left:512.333333pt;}
.x14_c00176{left:586.025968pt;}
.x18_c00176{left:589.450211pt;}
.x13_c00176{left:600.633560pt;}
.x9_c00176{left:619.240000pt;}
.xf_c00176{left:641.114400pt;}
.x19_c00176{left:648.784611pt;}
.x10_c00176{left:688.590677pt;}
.x1b_c00176{left:800.640000pt;}
.x1a_c00176{left:803.520000pt;}
.xa_c00176{left:805.032000pt;}
}





/* 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_c00177 {
    display:none;
  }
  .loading-indicator_c00177.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00177 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_c00177 { 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_c00177" -> "#page-container .classname_c00177")
 */
.pf_c00177 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00177 { /* 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_c00177.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00177 { /* 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_c00177 { /* 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_c00177 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00177 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00177 {overflow:visible;}
  }
}
.c_c00177 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00177 { /* 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_c00177:after { /* webkit #35443 */
  content: '';
}
.t_c00177:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00177 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 */
}
.__c00177 { /* 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_c00177 { /* info for Javascript */
  display:none;
}
.l_c00177 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00177 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00177 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00177: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_c00177 {
    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_c00177.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00177.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_c00177 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00177{font-family:sans-serif;visibility:hidden;}
.sc__c00177{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00177{-webkit-text-stroke:0px transparent;}
}
.y0_c00177{bottom:0.000000px;}
.h0_c00177{height:682.500000px;}
.w1_c00177{width:945.750000px;}
.w0_c00177{width:946.050000px;}
.x0_c00177{left:0.000000px;}
@media print{
.y0_c00177{bottom:0.000000pt;}
.h0_c00177{height:606.666667pt;}
.w1_c00177{width:840.666667pt;}
.w0_c00177{width:840.933333pt;}
.x0_c00177{left:0.000000pt;}
}





/* 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_c00178 {
    display:none;
  }
  .loading-indicator_c00178.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00178 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_c00178 { 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_c00178" -> "#page-container .classname_c00178")
 */
.pf_c00178 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00178 { /* 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_c00178.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00178 { /* 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_c00178 { /* 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_c00178 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00178 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00178 {overflow:visible;}
  }
}
.c_c00178 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00178 { /* 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_c00178:after { /* webkit #35443 */
  content: '';
}
.t_c00178:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00178 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 */
}
.__c00178 { /* 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_c00178 { /* info for Javascript */
  display:none;
}
.l_c00178 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00178 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00178 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00178: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_c00178 {
    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_c00178.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00178.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_c00178 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00178{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00178;src:url('chunks/assets/font_91338875028c1bc55e42d757.woff2')format("woff");}.ff1_c00178{font-family:ff1_c00178;line-height:1.000000;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;}
.m11_c00178{transform:matrix(0.010224,-0.000164,0.003999,0.249968,0,0);-ms-transform:matrix(0.010224,-0.000164,0.003999,0.249968,0,0);-webkit-transform:matrix(0.010224,-0.000164,0.003999,0.249968,0,0);}
.m8_c00178{transform:matrix(0.021214,-0.000149,0.001750,0.249994,0,0);-ms-transform:matrix(0.021214,-0.000149,0.001750,0.249994,0,0);-webkit-transform:matrix(0.021214,-0.000149,0.001750,0.249994,0,0);}
.m17_c00178{transform:matrix(0.062897,-0.001006,0.003999,0.249968,0,0);-ms-transform:matrix(0.062897,-0.001006,0.003999,0.249968,0,0);-webkit-transform:matrix(0.062897,-0.001006,0.003999,0.249968,0,0);}
.m7_c00178{transform:matrix(0.092768,-0.000649,0.001750,0.249994,0,0);-ms-transform:matrix(0.092768,-0.000649,0.001750,0.249994,0,0);-webkit-transform:matrix(0.092768,-0.000649,0.001750,0.249994,0,0);}
.mc_c00178{transform:matrix(0.168071,-0.001176,0.001750,0.249994,0,0);-ms-transform:matrix(0.168071,-0.001176,0.001750,0.249994,0,0);-webkit-transform:matrix(0.168071,-0.001176,0.001750,0.249994,0,0);}
.m6_c00178{transform:matrix(0.168536,-0.001180,0.001750,0.249994,0,0);-ms-transform:matrix(0.168536,-0.001180,0.001750,0.249994,0,0);-webkit-transform:matrix(0.168536,-0.001180,0.001750,0.249994,0,0);}
.m24_c00178{transform:matrix(0.203136,-0.003453,0.004249,0.249964,0,0);-ms-transform:matrix(0.203136,-0.003453,0.004249,0.249964,0,0);-webkit-transform:matrix(0.203136,-0.003453,0.004249,0.249964,0,0);}
.m25_c00178{transform:matrix(0.220253,-0.003744,0.004249,0.249964,0,0);-ms-transform:matrix(0.220253,-0.003744,0.004249,0.249964,0,0);-webkit-transform:matrix(0.220253,-0.003744,0.004249,0.249964,0,0);}
.m16_c00178{transform:matrix(0.243234,-0.003892,0.003999,0.249968,0,0);-ms-transform:matrix(0.243234,-0.003892,0.003999,0.249968,0,0);-webkit-transform:matrix(0.243234,-0.003892,0.003999,0.249968,0,0);}
.m2a_c00178{transform:matrix(0.252149,-0.004287,0.004249,0.249964,0,0);-ms-transform:matrix(0.252149,-0.004287,0.004249,0.249964,0,0);-webkit-transform:matrix(0.252149,-0.004287,0.004249,0.249964,0,0);}
.m28_c00178{transform:matrix(0.254998,-0.004335,0.004249,0.249964,0,0);-ms-transform:matrix(0.254998,-0.004335,0.004249,0.249964,0,0);-webkit-transform:matrix(0.254998,-0.004335,0.004249,0.249964,0,0);}
.m4_c00178{transform:matrix(0.256994,-0.001799,0.001750,0.249994,0,0);-ms-transform:matrix(0.256994,-0.001799,0.001750,0.249994,0,0);-webkit-transform:matrix(0.256994,-0.001799,0.001750,0.249994,0,0);}
.m23_c00178{transform:matrix(0.262967,-0.004470,0.004249,0.249964,0,0);-ms-transform:matrix(0.262967,-0.004470,0.004249,0.249964,0,0);-webkit-transform:matrix(0.262967,-0.004470,0.004249,0.249964,0,0);}
.m2c_c00178{transform:matrix(0.268676,-0.004567,0.004249,0.249964,0,0);-ms-transform:matrix(0.268676,-0.004567,0.004249,0.249964,0,0);-webkit-transform:matrix(0.268676,-0.004567,0.004249,0.249964,0,0);}
.m27_c00178{transform:matrix(0.304746,-0.005181,0.004249,0.249964,0,0);-ms-transform:matrix(0.304746,-0.005181,0.004249,0.249964,0,0);-webkit-transform:matrix(0.304746,-0.005181,0.004249,0.249964,0,0);}
.me_c00178{transform:matrix(0.305356,-0.004886,0.003999,0.249968,0,0);-ms-transform:matrix(0.305356,-0.004886,0.003999,0.249968,0,0);-webkit-transform:matrix(0.305356,-0.004886,0.003999,0.249968,0,0);}
.m5_c00178{transform:matrix(0.313067,-0.002191,0.001750,0.249994,0,0);-ms-transform:matrix(0.313067,-0.002191,0.001750,0.249994,0,0);-webkit-transform:matrix(0.313067,-0.002191,0.001750,0.249994,0,0);}
.m3_c00178{transform:matrix(0.315787,-0.002211,0.001750,0.249994,0,0);-ms-transform:matrix(0.315787,-0.002211,0.001750,0.249994,0,0);-webkit-transform:matrix(0.315787,-0.002211,0.001750,0.249994,0,0);}
.m19_c00178{transform:matrix(0.326788,-0.004575,0.003500,0.249976,0,0);-ms-transform:matrix(0.326788,-0.004575,0.003500,0.249976,0,0);-webkit-transform:matrix(0.326788,-0.004575,0.003500,0.249976,0,0);}
.m26_c00178{transform:matrix(0.329632,-0.005604,0.004249,0.249964,0,0);-ms-transform:matrix(0.329632,-0.005604,0.004249,0.249964,0,0);-webkit-transform:matrix(0.329632,-0.005604,0.004249,0.249964,0,0);}
.m20_c00178{transform:matrix(0.341242,-0.004777,0.003500,0.249976,0,0);-ms-transform:matrix(0.341242,-0.004777,0.003500,0.249976,0,0);-webkit-transform:matrix(0.341242,-0.004777,0.003500,0.249976,0,0);}
.mf_c00178{transform:matrix(0.344116,-0.005506,0.003999,0.249968,0,0);-ms-transform:matrix(0.344116,-0.005506,0.003999,0.249968,0,0);-webkit-transform:matrix(0.344116,-0.005506,0.003999,0.249968,0,0);}
.m29_c00178{transform:matrix(0.369617,-0.006283,0.004249,0.249964,0,0);-ms-transform:matrix(0.369617,-0.006283,0.004249,0.249964,0,0);-webkit-transform:matrix(0.369617,-0.006283,0.004249,0.249964,0,0);}
.md_c00178{transform:matrix(0.381601,-0.002671,0.001750,0.249994,0,0);-ms-transform:matrix(0.381601,-0.002671,0.001750,0.249994,0,0);-webkit-transform:matrix(0.381601,-0.002671,0.001750,0.249994,0,0);}
.m13_c00178{transform:matrix(0.451012,-0.007216,0.003999,0.249968,0,0);-ms-transform:matrix(0.451012,-0.007216,0.003999,0.249968,0,0);-webkit-transform:matrix(0.451012,-0.007216,0.003999,0.249968,0,0);}
.m2b_c00178{transform:matrix(0.458254,-0.007790,0.004249,0.249964,0,0);-ms-transform:matrix(0.458254,-0.007790,0.004249,0.249964,0,0);-webkit-transform:matrix(0.458254,-0.007790,0.004249,0.249964,0,0);}
.m22_c00178{transform:matrix(0.466203,-0.007925,0.004249,0.249964,0,0);-ms-transform:matrix(0.466203,-0.007925,0.004249,0.249964,0,0);-webkit-transform:matrix(0.466203,-0.007925,0.004249,0.249964,0,0);}
.m1f_c00178{transform:matrix(0.473249,-0.006625,0.003500,0.249976,0,0);-ms-transform:matrix(0.473249,-0.006625,0.003500,0.249976,0,0);-webkit-transform:matrix(0.473249,-0.006625,0.003500,0.249976,0,0);}
.m14_c00178{transform:matrix(0.500876,-0.008014,0.003999,0.249968,0,0);-ms-transform:matrix(0.500876,-0.008014,0.003999,0.249968,0,0);-webkit-transform:matrix(0.500876,-0.008014,0.003999,0.249968,0,0);}
.m15_c00178{transform:matrix(0.511380,-0.008182,0.003999,0.249968,0,0);-ms-transform:matrix(0.511380,-0.008182,0.003999,0.249968,0,0);-webkit-transform:matrix(0.511380,-0.008182,0.003999,0.249968,0,0);}
.m1a_c00178{transform:matrix(0.528288,-0.007396,0.003500,0.249976,0,0);-ms-transform:matrix(0.528288,-0.007396,0.003500,0.249976,0,0);-webkit-transform:matrix(0.528288,-0.007396,0.003500,0.249976,0,0);}
.m1c_c00178{transform:matrix(0.619204,-0.008669,0.003500,0.249976,0,0);-ms-transform:matrix(0.619204,-0.008669,0.003500,0.249976,0,0);-webkit-transform:matrix(0.619204,-0.008669,0.003500,0.249976,0,0);}
.mb_c00178{transform:matrix(0.626585,-0.004386,0.001750,0.249994,0,0);-ms-transform:matrix(0.626585,-0.004386,0.001750,0.249994,0,0);-webkit-transform:matrix(0.626585,-0.004386,0.001750,0.249994,0,0);}
.ma_c00178{transform:matrix(0.663744,-0.004646,0.001750,0.249994,0,0);-ms-transform:matrix(0.663744,-0.004646,0.001750,0.249994,0,0);-webkit-transform:matrix(0.663744,-0.004646,0.001750,0.249994,0,0);}
.m1d_c00178{transform:matrix(0.669814,-0.009377,0.003500,0.249976,0,0);-ms-transform:matrix(0.669814,-0.009377,0.003500,0.249976,0,0);-webkit-transform:matrix(0.669814,-0.009377,0.003500,0.249976,0,0);}
.m0_c00178{transform:matrix(0.752377,-0.005267,0.001750,0.249994,0,0);-ms-transform:matrix(0.752377,-0.005267,0.001750,0.249994,0,0);-webkit-transform:matrix(0.752377,-0.005267,0.001750,0.249994,0,0);}
.m2_c00178{transform:matrix(0.764836,-0.005354,0.001750,0.249994,0,0);-ms-transform:matrix(0.764836,-0.005354,0.001750,0.249994,0,0);-webkit-transform:matrix(0.764836,-0.005354,0.001750,0.249994,0,0);}
.m21_c00178{transform:matrix(0.765725,-0.010720,0.003500,0.249976,0,0);-ms-transform:matrix(0.765725,-0.010720,0.003500,0.249976,0,0);-webkit-transform:matrix(0.765725,-0.010720,0.003500,0.249976,0,0);}
.m10_c00178{transform:matrix(0.770031,-0.012321,0.003999,0.249968,0,0);-ms-transform:matrix(0.770031,-0.012321,0.003999,0.249968,0,0);-webkit-transform:matrix(0.770031,-0.012321,0.003999,0.249968,0,0);}
.m1e_c00178{transform:matrix(0.847687,-0.011868,0.003500,0.249976,0,0);-ms-transform:matrix(0.847687,-0.011868,0.003500,0.249976,0,0);-webkit-transform:matrix(0.847687,-0.011868,0.003500,0.249976,0,0);}
.m12_c00178{transform:matrix(0.964252,-0.015428,0.003999,0.249968,0,0);-ms-transform:matrix(0.964252,-0.015428,0.003999,0.249968,0,0);-webkit-transform:matrix(0.964252,-0.015428,0.003999,0.249968,0,0);}
.m9_c00178{transform:matrix(1.090593,-0.007634,0.001750,0.249994,0,0);-ms-transform:matrix(1.090593,-0.007634,0.001750,0.249994,0,0);-webkit-transform:matrix(1.090593,-0.007634,0.001750,0.249994,0,0);}
.m18_c00178{transform:matrix(1.139898,-0.015959,0.003500,0.249976,0,0);-ms-transform:matrix(1.139898,-0.015959,0.003500,0.249976,0,0);-webkit-transform:matrix(1.139898,-0.015959,0.003500,0.249976,0,0);}
.m1_c00178{transform:matrix(1.852320,-0.012966,0.001750,0.249994,0,0);-ms-transform:matrix(1.852320,-0.012966,0.001750,0.249994,0,0);-webkit-transform:matrix(1.852320,-0.012966,0.001750,0.249994,0,0);}
.m1b_c00178{transform:matrix(2.353894,-0.032955,0.003500,0.249976,0,0);-ms-transform:matrix(2.353894,-0.032955,0.003500,0.249976,0,0);-webkit-transform:matrix(2.353894,-0.032955,0.003500,0.249976,0,0);}
.v0_c00178{vertical-align:0.000000px;}
.ls0_c00178{letter-spacing:0.000000px;}
.sc__c00178{text-shadow:none;}
.sc0_c00178{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__c00178{-webkit-text-stroke:0px transparent;}
.sc0_c00178{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00178{word-spacing:0.000000px;}
.fc0_c00178{color:transparent;}
.fs0_c00178{font-size:36.000882px;}
.fs3_c00178{font-size:78.007644px;}
.fs4_c00178{font-size:90.008820px;}
.fs5_c00178{font-size:126.018206px;}
.fs1_c00178{font-size:132.016895px;}
.fs2_c00178{font-size:156.019967px;}
.y0_c00178{bottom:0.000000px;}
.y23_c00178{bottom:58.869000px;}
.y24_c00178{bottom:61.379373px;}
.y25_c00178{bottom:63.170774px;}
.y26_c00178{bottom:63.575637px;}
.y27_c00178{bottom:64.301138px;}
.y28_c00178{bottom:66.009153px;}
.y29_c00178{bottom:68.387512px;}
.y2a_c00178{bottom:69.217104px;}
.y2b_c00178{bottom:70.205433px;}
.y2c_c00178{bottom:73.923282px;}
.y2d_c00178{bottom:74.463627px;}
.y1e_c00178{bottom:524.081430px;}
.y1f_c00178{bottom:526.086411px;}
.y20_c00178{bottom:536.735613px;}
.y21_c00178{bottom:538.647711px;}
.y22_c00178{bottom:539.451675px;}
.y19_c00178{bottom:559.699500px;}
.y1a_c00178{bottom:562.762812px;}
.y1b_c00178{bottom:563.433930px;}
.y1c_c00178{bottom:567.290139px;}
.y1d_c00178{bottom:572.173752px;}
.y16_c00178{bottom:592.149396px;}
.y17_c00178{bottom:595.503636px;}
.y18_c00178{bottom:618.008100px;}
.yf_c00178{bottom:622.665000px;}
.y10_c00178{bottom:624.251784px;}
.y11_c00178{bottom:625.943448px;}
.y13_c00178{bottom:630.976968px;}
.y12_c00178{bottom:631.207464px;}
.y14_c00178{bottom:633.878256px;}
.y15_c00178{bottom:636.461208px;}
.y1_c00178{bottom:673.110000px;}
.y2_c00178{bottom:673.285770px;}
.y3_c00178{bottom:674.174049px;}
.y4_c00178{bottom:674.618188px;}
.y5_c00178{bottom:674.863878px;}
.y6_c00178{bottom:674.941368px;}
.y7_c00178{bottom:675.120918px;}
.y8_c00178{bottom:676.743976px;}
.y9_c00178{bottom:676.955594px;}
.ya_c00178{bottom:677.097753px;}
.yb_c00178{bottom:677.500365px;}
.yc_c00178{bottom:678.035099px;}
.yd_c00178{bottom:678.294144px;}
.ye_c00178{bottom:678.966553px;}
.h1_c00178{height:36.000882px;}
.h4_c00178{height:78.007644px;}
.h5_c00178{height:90.008820px;}
.h6_c00178{height:126.018206px;}
.h2_c00178{height:132.016895px;}
.h3_c00178{height:156.019967px;}
.h0_c00178{height:682.500000px;}
.w1_c00178{width:945.750000px;}
.w0_c00178{width:946.050000px;}
.x0_c00178{left:0.000000px;}
.x21_c00178{left:15.387000px;}
.x15_c00178{left:18.568368px;}
.x1c_c00178{left:21.896838px;}
.x1_c00178{left:25.986000px;}
.xe_c00178{left:44.968500px;}
.x1d_c00178{left:133.282101px;}
.x16_c00178{left:138.372876px;}
.xf_c00178{left:144.142500px;}
.x2_c00178{left:152.883000px;}
.x22_c00178{left:163.056000px;}
.x3_c00178{left:216.331500px;}
.x18_c00178{left:236.710500px;}
.x10_c00178{left:249.871500px;}
.x4_c00178{left:251.430000px;}
.x5_c00178{left:262.500000px;}
.x23_c00178{left:268.432500px;}
.x19_c00178{left:284.647500px;}
.x6_c00178{left:288.150000px;}
.x24_c00178{left:292.248000px;}
.x25_c00178{left:334.924500px;}
.x26_c00178{left:435.396000px;}
.x7_c00178{left:520.015500px;}
.x8_c00178{left:550.246500px;}
.x1a_c00178{left:560.091000px;}
.x12_c00178{left:564.466500px;}
.x9_c00178{left:570.555000px;}
.x27_c00178{left:575.299500px;}
.x11_c00178{left:578.872500px;}
.x28_c00178{left:624.099000px;}
.xa_c00178{left:628.071000px;}
.x29_c00178{left:682.236000px;}
.xb_c00178{left:704.461500px;}
.x1e_c00178{left:724.941984px;}
.xc_c00178{left:741.468000px;}
.x13_c00178{left:745.797000px;}
.x1f_c00178{left:831.193041px;}
.xd_c00178{left:837.526500px;}
.x20_c00178{left:875.866542px;}
.x2a_c00178{left:900.933000px;}
.x14_c00178{left:907.231500px;}
.x1b_c00178{left:908.920500px;}
.x2b_c00178{left:932.718000px;}
.x17_c00178{left:942.122604px;}
@media print{
.v0_c00178{vertical-align:0.000000pt;}
.ls0_c00178{letter-spacing:0.000000pt;}
.ws0_c00178{word-spacing:0.000000pt;}
.fs0_c00178{font-size:32.000784pt;}
.fs3_c00178{font-size:69.340128pt;}
.fs4_c00178{font-size:80.007840pt;}
.fs5_c00178{font-size:112.016183pt;}
.fs1_c00178{font-size:117.348351pt;}
.fs2_c00178{font-size:138.684415pt;}
.y0_c00178{bottom:0.000000pt;}
.y23_c00178{bottom:52.328000pt;}
.y24_c00178{bottom:54.559443pt;}
.y25_c00178{bottom:56.151799pt;}
.y26_c00178{bottom:56.511677pt;}
.y27_c00178{bottom:57.156567pt;}
.y28_c00178{bottom:58.674803pt;}
.y29_c00178{bottom:60.788900pt;}
.y2a_c00178{bottom:61.526315pt;}
.y2b_c00178{bottom:62.404829pt;}
.y2c_c00178{bottom:65.709584pt;}
.y2d_c00178{bottom:66.189891pt;}
.y1e_c00178{bottom:465.850160pt;}
.y1f_c00178{bottom:467.632365pt;}
.y20_c00178{bottom:477.098323pt;}
.y21_c00178{bottom:478.797965pt;}
.y22_c00178{bottom:479.512600pt;}
.y19_c00178{bottom:497.510667pt;}
.y1a_c00178{bottom:500.233611pt;}
.y1b_c00178{bottom:500.830160pt;}
.y1c_c00178{bottom:504.257901pt;}
.y1d_c00178{bottom:508.598891pt;}
.y16_c00178{bottom:526.355019pt;}
.y17_c00178{bottom:529.336565pt;}
.y18_c00178{bottom:549.340533pt;}
.yf_c00178{bottom:553.480000pt;}
.y10_c00178{bottom:554.890475pt;}
.y11_c00178{bottom:556.394176pt;}
.y13_c00178{bottom:560.868416pt;}
.y12_c00178{bottom:561.073301pt;}
.y14_c00178{bottom:563.447339pt;}
.y15_c00178{bottom:565.743296pt;}
.y1_c00178{bottom:598.320000pt;}
.y2_c00178{bottom:598.476240pt;}
.y3_c00178{bottom:599.265821pt;}
.y4_c00178{bottom:599.660612pt;}
.y5_c00178{bottom:599.879003pt;}
.y6_c00178{bottom:599.947883pt;}
.y7_c00178{bottom:600.107483pt;}
.y8_c00178{bottom:601.550201pt;}
.y9_c00178{bottom:601.738305pt;}
.ya_c00178{bottom:601.864669pt;}
.yb_c00178{bottom:602.222547pt;}
.yc_c00178{bottom:602.697865pt;}
.yd_c00178{bottom:602.928128pt;}
.ye_c00178{bottom:603.525825pt;}
.h1_c00178{height:32.000784pt;}
.h4_c00178{height:69.340128pt;}
.h5_c00178{height:80.007840pt;}
.h6_c00178{height:112.016183pt;}
.h2_c00178{height:117.348351pt;}
.h3_c00178{height:138.684415pt;}
.h0_c00178{height:606.666667pt;}
.w1_c00178{width:840.666667pt;}
.w0_c00178{width:840.933333pt;}
.x0_c00178{left:0.000000pt;}
.x21_c00178{left:13.677333pt;}
.x15_c00178{left:16.505216pt;}
.x1c_c00178{left:19.463856pt;}
.x1_c00178{left:23.098667pt;}
.xe_c00178{left:39.972000pt;}
.x1d_c00178{left:118.472979pt;}
.x16_c00178{left:122.998112pt;}
.xf_c00178{left:128.126667pt;}
.x2_c00178{left:135.896000pt;}
.x22_c00178{left:144.938667pt;}
.x3_c00178{left:192.294667pt;}
.x18_c00178{left:210.409333pt;}
.x10_c00178{left:222.108000pt;}
.x4_c00178{left:223.493333pt;}
.x5_c00178{left:233.333333pt;}
.x23_c00178{left:238.606667pt;}
.x19_c00178{left:253.020000pt;}
.x6_c00178{left:256.133333pt;}
.x24_c00178{left:259.776000pt;}
.x25_c00178{left:297.710667pt;}
.x26_c00178{left:387.018667pt;}
.x7_c00178{left:462.236000pt;}
.x8_c00178{left:489.108000pt;}
.x1a_c00178{left:497.858667pt;}
.x12_c00178{left:501.748000pt;}
.x9_c00178{left:507.160000pt;}
.x27_c00178{left:511.377333pt;}
.x11_c00178{left:514.553333pt;}
.x28_c00178{left:554.754667pt;}
.xa_c00178{left:558.285333pt;}
.x29_c00178{left:606.432000pt;}
.xb_c00178{left:626.188000pt;}
.x1e_c00178{left:644.392875pt;}
.xc_c00178{left:659.082667pt;}
.x13_c00178{left:662.930667pt;}
.x1f_c00178{left:738.838259pt;}
.xd_c00178{left:744.468000pt;}
.x20_c00178{left:778.548037pt;}
.x2a_c00178{left:800.829333pt;}
.x14_c00178{left:806.428000pt;}
.x1b_c00178{left:807.929333pt;}
.x2b_c00178{left:829.082667pt;}
.x17_c00178{left:837.442315pt;}
}





/* 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_c00179 {
    display:none;
  }
  .loading-indicator_c00179.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00179 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_c00179 { 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_c00179" -> "#page-container .classname_c00179")
 */
.pf_c00179 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00179 { /* 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_c00179.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00179 { /* 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_c00179 { /* 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_c00179 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00179 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00179 {overflow:visible;}
  }
}
.c_c00179 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00179 { /* 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_c00179:after { /* webkit #35443 */
  content: '';
}
.t_c00179:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00179 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 */
}
.__c00179 { /* 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_c00179 { /* info for Javascript */
  display:none;
}
.l_c00179 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00179 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00179 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00179: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_c00179 {
    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_c00179.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00179.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_c00179 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00179{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00179;src:url('chunks/assets/font_a72a081e1d55f37b0ea09712.woff2')format("woff");}.ff1_c00179{font-family:ff1_c00179;line-height:1.000000;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;}
.m0_c00179{transform:matrix(0.251180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251180,0.000000,0.000000,0.250000,0,0);}
.m1_c00179{transform:matrix(0.578595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578595,0.000000,0.000000,0.250000,0,0);}
.v0_c00179{vertical-align:0.000000px;}
.ls0_c00179{letter-spacing:0.000000px;}
.sc__c00179{text-shadow:none;}
.sc0_c00179{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__c00179{-webkit-text-stroke:0px transparent;}
.sc0_c00179{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00179{word-spacing:0.000000px;}
.fc0_c00179{color:transparent;}
.fs1_c00179{font-size:30.000000px;}
.fs0_c00179{font-size:54.000000px;}
.y0_c00179{bottom:0.000000px;}
.y1_c00179{bottom:610.476000px;}
.y2_c00179{bottom:611.010000px;}
.h2_c00179{height:30.000000px;}
.h1_c00179{height:54.000000px;}
.h0_c00179{height:682.500000px;}
.w0_c00179{width:924.450000px;}
.w1_c00179{width:924.750000px;}
.x0_c00179{left:0.000000px;}
.x2_c00179{left:528.660000px;}
.x1_c00179{left:532.440000px;}
@media print{
.v0_c00179{vertical-align:0.000000pt;}
.ls0_c00179{letter-spacing:0.000000pt;}
.ws0_c00179{word-spacing:0.000000pt;}
.fs1_c00179{font-size:26.666667pt;}
.fs0_c00179{font-size:48.000000pt;}
.y0_c00179{bottom:0.000000pt;}
.y1_c00179{bottom:542.645333pt;}
.y2_c00179{bottom:543.120000pt;}
.h2_c00179{height:26.666667pt;}
.h1_c00179{height:48.000000pt;}
.h0_c00179{height:606.666667pt;}
.w0_c00179{width:821.733333pt;}
.w1_c00179{width:822.000000pt;}
.x0_c00179{left:0.000000pt;}
.x2_c00179{left:469.920000pt;}
.x1_c00179{left:473.280000pt;}
}





/* 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_c00180 {
    display:none;
  }
  .loading-indicator_c00180.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00180 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_c00180 { 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_c00180" -> "#page-container .classname_c00180")
 */
.pf_c00180 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00180 { /* 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_c00180.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00180 { /* 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_c00180 { /* 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_c00180 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00180 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00180 {overflow:visible;}
  }
}
.c_c00180 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00180 { /* 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_c00180:after { /* webkit #35443 */
  content: '';
}
.t_c00180:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00180 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 */
}
.__c00180 { /* 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_c00180 { /* info for Javascript */
  display:none;
}
.l_c00180 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00180 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00180 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00180: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_c00180 {
    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_c00180.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00180.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_c00180 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00180{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00180;src:url('chunks/assets/font_59dc3ab2e04ed21d4ac9992b.woff2')format("woff");}.ff1_c00180{font-family:ff1_c00180;line-height:1.000000;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;}
.m30_c00180{transform:matrix(0.028285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.028285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.028285,0.000000,0.000000,0.250000,0,0);}
.m2f_c00180{transform:matrix(0.033540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.033540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.033540,0.000000,0.000000,0.250000,0,0);}
.m1c_c00180{transform:matrix(0.067079,0.000402,-0.001500,0.249996,0,0);-ms-transform:matrix(0.067079,0.000402,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.067079,0.000402,-0.001500,0.249996,0,0);}
.m22_c00180{transform:matrix(0.128158,0.000769,-0.001500,0.249996,0,0);-ms-transform:matrix(0.128158,0.000769,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.128158,0.000769,-0.001500,0.249996,0,0);}
.m13_c00180{transform:matrix(0.152510,0.003508,-0.005748,0.249934,0,0);-ms-transform:matrix(0.152510,0.003508,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.152510,0.003508,-0.005748,0.249934,0,0);}
.m28_c00180{transform:matrix(0.184515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184515,0.000000,0.000000,0.250000,0,0);}
.m14_c00180{transform:matrix(0.189880,0.004367,-0.005748,0.249934,0,0);-ms-transform:matrix(0.189880,0.004367,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.189880,0.004367,-0.005748,0.249934,0,0);}
.m2e_c00180{transform:matrix(0.204795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204795,0.000000,0.000000,0.250000,0,0);}
.m16_c00180{transform:matrix(0.227695,0.005237,-0.005748,0.249934,0,0);-ms-transform:matrix(0.227695,0.005237,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.227695,0.005237,-0.005748,0.249934,0,0);}
.m2d_c00180{transform:matrix(0.228035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228035,0.000000,0.000000,0.250000,0,0);}
.m2b_c00180{transform:matrix(0.241870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241870,0.000000,0.000000,0.250000,0,0);}
.m12_c00180{transform:matrix(0.253243,0.005825,-0.005748,0.249934,0,0);-ms-transform:matrix(0.253243,0.005825,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.253243,0.005825,-0.005748,0.249934,0,0);}
.m15_c00180{transform:matrix(0.258807,0.005953,-0.005748,0.249934,0,0);-ms-transform:matrix(0.258807,0.005953,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.258807,0.005953,-0.005748,0.249934,0,0);}
.m31_c00180{transform:matrix(0.280225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280225,0.000000,0.000000,0.250000,0,0);}
.m11_c00180{transform:matrix(0.280231,0.006445,-0.005748,0.249934,0,0);-ms-transform:matrix(0.280231,0.006445,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.280231,0.006445,-0.005748,0.249934,0,0);}
.m5_c00180{transform:matrix(0.290658,0.006685,-0.005748,0.249934,0,0);-ms-transform:matrix(0.290658,0.006685,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.290658,0.006685,-0.005748,0.249934,0,0);}
.m17_c00180{transform:matrix(0.297921,0.006852,-0.005748,0.249934,0,0);-ms-transform:matrix(0.297921,0.006852,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.297921,0.006852,-0.005748,0.249934,0,0);}
.m24_c00180{transform:matrix(0.332204,0.001993,-0.001500,0.249996,0,0);-ms-transform:matrix(0.332204,0.001993,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.332204,0.001993,-0.001500,0.249996,0,0);}
.mb_c00180{transform:matrix(0.358110,0.008237,-0.005748,0.249934,0,0);-ms-transform:matrix(0.358110,0.008237,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.358110,0.008237,-0.005748,0.249934,0,0);}
.m0_c00180{transform:matrix(0.374326,0.008609,-0.005748,0.249934,0,0);-ms-transform:matrix(0.374326,0.008609,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.374326,0.008609,-0.005748,0.249934,0,0);}
.me_c00180{transform:matrix(0.381739,0.008780,-0.005748,0.249934,0,0);-ms-transform:matrix(0.381739,0.008780,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.381739,0.008780,-0.005748,0.249934,0,0);}
.m3_c00180{transform:matrix(0.409407,0.009416,-0.005748,0.249934,0,0);-ms-transform:matrix(0.409407,0.009416,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.409407,0.009416,-0.005748,0.249934,0,0);}
.m6_c00180{transform:matrix(0.412216,0.009481,-0.005748,0.249934,0,0);-ms-transform:matrix(0.412216,0.009481,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.412216,0.009481,-0.005748,0.249934,0,0);}
.m1e_c00180{transform:matrix(0.417842,0.002507,-0.001500,0.249996,0,0);-ms-transform:matrix(0.417842,0.002507,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.417842,0.002507,-0.001500,0.249996,0,0);}
.ma_c00180{transform:matrix(0.444273,0.010218,-0.005748,0.249934,0,0);-ms-transform:matrix(0.444273,0.010218,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.444273,0.010218,-0.005748,0.249934,0,0);}
.mc_c00180{transform:matrix(0.452995,0.010419,-0.005748,0.249934,0,0);-ms-transform:matrix(0.452995,0.010419,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.452995,0.010419,-0.005748,0.249934,0,0);}
.md_c00180{transform:matrix(0.459404,0.010566,-0.005748,0.249934,0,0);-ms-transform:matrix(0.459404,0.010566,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.459404,0.010566,-0.005748,0.249934,0,0);}
.m25_c00180{transform:matrix(0.467162,0.002803,-0.001500,0.249996,0,0);-ms-transform:matrix(0.467162,0.002803,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.467162,0.002803,-0.001500,0.249996,0,0);}
.m2_c00180{transform:matrix(0.473440,0.010889,-0.005748,0.249934,0,0);-ms-transform:matrix(0.473440,0.010889,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.473440,0.010889,-0.005748,0.249934,0,0);}
.m9_c00180{transform:matrix(0.477749,0.010988,-0.005748,0.249934,0,0);-ms-transform:matrix(0.477749,0.010988,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.477749,0.010988,-0.005748,0.249934,0,0);}
.m7_c00180{transform:matrix(0.501927,0.011544,-0.005748,0.249934,0,0);-ms-transform:matrix(0.501927,0.011544,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.501927,0.011544,-0.005748,0.249934,0,0);}
.m10_c00180{transform:matrix(0.509010,0.011707,-0.005748,0.249934,0,0);-ms-transform:matrix(0.509010,0.011707,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.509010,0.011707,-0.005748,0.249934,0,0);}
.m29_c00180{transform:matrix(0.543040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543040,0.000000,0.000000,0.250000,0,0);}
.m1_c00180{transform:matrix(0.594918,0.013683,-0.005748,0.249934,0,0);-ms-transform:matrix(0.594918,0.013683,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.594918,0.013683,-0.005748,0.249934,0,0);}
.m19_c00180{transform:matrix(0.600364,0.003602,-0.001500,0.249996,0,0);-ms-transform:matrix(0.600364,0.003602,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.600364,0.003602,-0.001500,0.249996,0,0);}
.m1a_c00180{transform:matrix(0.673633,0.004042,-0.001500,0.249996,0,0);-ms-transform:matrix(0.673633,0.004042,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.673633,0.004042,-0.001500,0.249996,0,0);}
.mf_c00180{transform:matrix(0.747737,0.017198,-0.005748,0.249934,0,0);-ms-transform:matrix(0.747737,0.017198,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.747737,0.017198,-0.005748,0.249934,0,0);}
.m4_c00180{transform:matrix(0.789066,0.018149,-0.005748,0.249934,0,0);-ms-transform:matrix(0.789066,0.018149,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.789066,0.018149,-0.005748,0.249934,0,0);}
.m8_c00180{transform:matrix(1.049592,0.024141,-0.005748,0.249934,0,0);-ms-transform:matrix(1.049592,0.024141,-0.005748,0.249934,0,0);-webkit-transform:matrix(1.049592,0.024141,-0.005748,0.249934,0,0);}
.m21_c00180{transform:matrix(1.062681,0.006376,-0.001500,0.249996,0,0);-ms-transform:matrix(1.062681,0.006376,-0.001500,0.249996,0,0);-webkit-transform:matrix(1.062681,0.006376,-0.001500,0.249996,0,0);}
.m1b_c00180{transform:matrix(1.080916,0.006485,-0.001500,0.249996,0,0);-ms-transform:matrix(1.080916,0.006485,-0.001500,0.249996,0,0);-webkit-transform:matrix(1.080916,0.006485,-0.001500,0.249996,0,0);}
.m20_c00180{transform:matrix(1.311941,0.007872,-0.001500,0.249996,0,0);-ms-transform:matrix(1.311941,0.007872,-0.001500,0.249996,0,0);-webkit-transform:matrix(1.311941,0.007872,-0.001500,0.249996,0,0);}
.m2c_c00180{transform:matrix(1.413905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.413905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.413905,0.000000,0.000000,0.250000,0,0);}
.m2a_c00180{transform:matrix(1.525655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.525655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.525655,0.000000,0.000000,0.250000,0,0);}
.m27_c00180{transform:matrix(1.721085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.721085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.721085,0.000000,0.000000,0.250000,0,0);}
.m1f_c00180{transform:matrix(1.922835,0.011537,-0.001500,0.249996,0,0);-ms-transform:matrix(1.922835,0.011537,-0.001500,0.249996,0,0);-webkit-transform:matrix(1.922835,0.011537,-0.001500,0.249996,0,0);}
.m1d_c00180{transform:matrix(2.657027,0.015942,-0.001500,0.249996,0,0);-ms-transform:matrix(2.657027,0.015942,-0.001500,0.249996,0,0);-webkit-transform:matrix(2.657027,0.015942,-0.001500,0.249996,0,0);}
.m26_c00180{transform:matrix(2.700991,0.016206,-0.001500,0.249996,0,0);-ms-transform:matrix(2.700991,0.016206,-0.001500,0.249996,0,0);-webkit-transform:matrix(2.700991,0.016206,-0.001500,0.249996,0,0);}
.m18_c00180{transform:matrix(2.958752,0.017753,-0.001500,0.249996,0,0);-ms-transform:matrix(2.958752,0.017753,-0.001500,0.249996,0,0);-webkit-transform:matrix(2.958752,0.017753,-0.001500,0.249996,0,0);}
.m23_c00180{transform:matrix(3.203502,0.019221,-0.001500,0.249996,0,0);-ms-transform:matrix(3.203502,0.019221,-0.001500,0.249996,0,0);-webkit-transform:matrix(3.203502,0.019221,-0.001500,0.249996,0,0);}
.v0_c00180{vertical-align:0.000000px;}
.ls0_c00180{letter-spacing:0.000000px;}
.sc__c00180{text-shadow:none;}
.sc0_c00180{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__c00180{-webkit-text-stroke:0px transparent;}
.sc0_c00180{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00180{word-spacing:0.000000px;}
.fc0_c00180{color:transparent;}
.fs4_c00180{font-size:18.000000px;}
.fs3_c00180{font-size:18.000324px;}
.fs5_c00180{font-size:24.000000px;}
.fs1_c00180{font-size:72.019041px;}
.fs0_c00180{font-size:84.022215px;}
.fs2_c00180{font-size:180.047604px;}
.y0_c00180{bottom:0.000000px;}
.y27_c00180{bottom:0.440568px;}
.y26_c00180{bottom:0.477981px;}
.y25_c00180{bottom:0.583281px;}
.y24_c00180{bottom:1.182573px;}
.y23_c00180{bottom:1.556802px;}
.y22_c00180{bottom:1.796571px;}
.y21_c00180{bottom:2.118969px;}
.y20_c00180{bottom:2.383038px;}
.y1f_c00180{bottom:2.384748px;}
.y1e_c00180{bottom:2.685987px;}
.y1d_c00180{bottom:2.766969px;}
.y1c_c00180{bottom:3.269061px;}
.y1b_c00180{bottom:3.494268px;}
.y1a_c00180{bottom:3.617460px;}
.y29_c00180{bottom:3.916500px;}
.y19_c00180{bottom:4.050000px;}
.y28_c00180{bottom:5.670000px;}
.y18_c00180{bottom:40.700137px;}
.y17_c00180{bottom:42.562341px;}
.y16_c00180{bottom:47.793259px;}
.y15_c00180{bottom:48.654204px;}
.y14_c00180{bottom:50.165113px;}
.y13_c00180{bottom:56.912305px;}
.y12_c00180{bottom:225.719307px;}
.y11_c00180{bottom:226.904139px;}
.y10_c00180{bottom:230.717107px;}
.yf_c00180{bottom:231.898248px;}
.ye_c00180{bottom:233.632521px;}
.yd_c00180{bottom:235.472373px;}
.yc_c00180{bottom:237.600003px;}
.yb_c00180{bottom:239.523822px;}
.ya_c00180{bottom:241.126504px;}
.y9_c00180{bottom:244.351326px;}
.y8_c00180{bottom:331.415841px;}
.y7_c00180{bottom:332.869153px;}
.y6_c00180{bottom:334.840276px;}
.y5_c00180{bottom:337.864029px;}
.y4_c00180{bottom:339.465795px;}
.y3_c00180{bottom:342.067095px;}
.y2_c00180{bottom:346.940669px;}
.y1_c00180{bottom:348.604500px;}
.h5_c00180{height:18.000000px;}
.h4_c00180{height:18.000324px;}
.h6_c00180{height:24.000000px;}
.h2_c00180{height:72.019041px;}
.h1_c00180{height:84.022215px;}
.h3_c00180{height:180.047604px;}
.h0_c00180{height:682.500000px;}
.w0_c00180{width:924.450000px;}
.w1_c00180{width:924.750000px;}
.x0_c00180{left:0.000000px;}
.x25_c00180{left:1.890000px;}
.x26_c00180{left:21.330000px;}
.x27_c00180{left:29.160000px;}
.x9_c00180{left:30.195663px;}
.x1_c00180{left:35.457000px;}
.x12_c00180{left:38.174564px;}
.x28_c00180{left:61.560000px;}
.x29_c00180{left:89.100000px;}
.x2a_c00180{left:97.200000px;}
.x2_c00180{left:107.797500px;}
.x2b_c00180{left:110.970000px;}
.x2c_c00180{left:115.560000px;}
.x2d_c00180{left:133.920000px;}
.xa_c00180{left:149.655192px;}
.xb_c00180{left:209.027241px;}
.x18_c00180{left:226.255500px;}
.x13_c00180{left:270.846478px;}
.xc_c00180{left:280.273686px;}
.x19_c00180{left:298.345500px;}
.x3_c00180{left:319.692000px;}
.x14_c00180{left:322.965802px;}
.x15_c00180{left:352.633197px;}
.x1a_c00180{left:356.412000px;}
.xd_c00180{left:359.076441px;}
.xe_c00180{left:427.194162px;}
.x4_c00180{left:432.792000px;}
.x1b_c00180{left:440.094000px;}
.x1c_c00180{left:453.591000px;}
.xf_c00180{left:491.439262px;}
.x5_c00180{left:502.434000px;}
.x1d_c00180{left:503.797500px;}
.x16_c00180{left:533.017822px;}
.x10_c00180{left:535.158726px;}
.x1e_c00180{left:548.094000px;}
.x17_c00180{left:597.213456px;}
.x1f_c00180{left:601.827000px;}
.x6_c00180{left:633.901500px;}
.x20_c00180{left:641.788500px;}
.x11_c00180{left:676.405254px;}
.x21_c00180{left:704.160000px;}
.x7_c00180{left:719.602500px;}
.x8_c00180{left:782.790000px;}
.x22_c00180{left:804.042000px;}
.x23_c00180{left:821.592000px;}
.x24_c00180{left:827.827500px;}
@media print{
.v0_c00180{vertical-align:0.000000pt;}
.ls0_c00180{letter-spacing:0.000000pt;}
.ws0_c00180{word-spacing:0.000000pt;}
.fs4_c00180{font-size:16.000000pt;}
.fs3_c00180{font-size:16.000288pt;}
.fs5_c00180{font-size:21.333333pt;}
.fs1_c00180{font-size:64.016926pt;}
.fs0_c00180{font-size:74.686413pt;}
.fs2_c00180{font-size:160.042314pt;}
.y0_c00180{bottom:0.000000pt;}
.y27_c00180{bottom:0.391616pt;}
.y26_c00180{bottom:0.424872pt;}
.y25_c00180{bottom:0.518472pt;}
.y24_c00180{bottom:1.051176pt;}
.y23_c00180{bottom:1.383824pt;}
.y22_c00180{bottom:1.596952pt;}
.y21_c00180{bottom:1.883528pt;}
.y20_c00180{bottom:2.118256pt;}
.y1f_c00180{bottom:2.119776pt;}
.y1e_c00180{bottom:2.387544pt;}
.y1d_c00180{bottom:2.459528pt;}
.y1c_c00180{bottom:2.905832pt;}
.y1b_c00180{bottom:3.106016pt;}
.y1a_c00180{bottom:3.215520pt;}
.y29_c00180{bottom:3.481333pt;}
.y19_c00180{bottom:3.600000pt;}
.y28_c00180{bottom:5.040000pt;}
.y18_c00180{bottom:36.177900pt;}
.y17_c00180{bottom:37.833192pt;}
.y16_c00180{bottom:42.482897pt;}
.y15_c00180{bottom:43.248181pt;}
.y14_c00180{bottom:44.591212pt;}
.y13_c00180{bottom:50.588716pt;}
.y12_c00180{bottom:200.639384pt;}
.y11_c00180{bottom:201.692568pt;}
.y10_c00180{bottom:205.081873pt;}
.yf_c00180{bottom:206.131776pt;}
.ye_c00180{bottom:207.673352pt;}
.yd_c00180{bottom:209.308776pt;}
.yc_c00180{bottom:211.200003pt;}
.yb_c00180{bottom:212.910064pt;}
.ya_c00180{bottom:214.334671pt;}
.y9_c00180{bottom:217.201179pt;}
.y8_c00180{bottom:294.591859pt;}
.y7_c00180{bottom:295.883692pt;}
.y6_c00180{bottom:297.635801pt;}
.y5_c00180{bottom:300.323581pt;}
.y4_c00180{bottom:301.747373pt;}
.y3_c00180{bottom:304.059640pt;}
.y2_c00180{bottom:308.391705pt;}
.y1_c00180{bottom:309.870667pt;}
.h5_c00180{height:16.000000pt;}
.h4_c00180{height:16.000288pt;}
.h6_c00180{height:21.333333pt;}
.h2_c00180{height:64.016926pt;}
.h1_c00180{height:74.686413pt;}
.h3_c00180{height:160.042314pt;}
.h0_c00180{height:606.666667pt;}
.w0_c00180{width:821.733333pt;}
.w1_c00180{width:822.000000pt;}
.x0_c00180{left:0.000000pt;}
.x25_c00180{left:1.680000pt;}
.x26_c00180{left:18.960000pt;}
.x27_c00180{left:25.920000pt;}
.x9_c00180{left:26.840589pt;}
.x1_c00180{left:31.517333pt;}
.x12_c00180{left:33.932945pt;}
.x28_c00180{left:54.720000pt;}
.x29_c00180{left:79.200000pt;}
.x2a_c00180{left:86.400000pt;}
.x2_c00180{left:95.820000pt;}
.x2b_c00180{left:98.640000pt;}
.x2c_c00180{left:102.720000pt;}
.x2d_c00180{left:119.040000pt;}
.xa_c00180{left:133.026837pt;}
.xb_c00180{left:185.801992pt;}
.x18_c00180{left:201.116000pt;}
.x13_c00180{left:240.752425pt;}
.xc_c00180{left:249.132165pt;}
.x19_c00180{left:265.196000pt;}
.x3_c00180{left:284.170667pt;}
.x14_c00180{left:287.080713pt;}
.x15_c00180{left:313.451731pt;}
.x1a_c00180{left:316.810667pt;}
.xd_c00180{left:319.179059pt;}
.xe_c00180{left:379.728144pt;}
.x4_c00180{left:384.704000pt;}
.x1b_c00180{left:391.194667pt;}
.x1c_c00180{left:403.192000pt;}
.xf_c00180{left:436.834900pt;}
.x5_c00180{left:446.608000pt;}
.x1d_c00180{left:447.820000pt;}
.x16_c00180{left:473.793620pt;}
.x10_c00180{left:475.696645pt;}
.x1e_c00180{left:487.194667pt;}
.x17_c00180{left:530.856405pt;}
.x1f_c00180{left:534.957333pt;}
.x6_c00180{left:563.468000pt;}
.x20_c00180{left:570.478667pt;}
.x11_c00180{left:601.249115pt;}
.x21_c00180{left:625.920000pt;}
.x7_c00180{left:639.646667pt;}
.x8_c00180{left:695.813333pt;}
.x22_c00180{left:714.704000pt;}
.x23_c00180{left:730.304000pt;}
.x24_c00180{left:735.846667pt;}
}





/* 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_c00181 {
    display:none;
  }
  .loading-indicator_c00181.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00181 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_c00181 { 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_c00181" -> "#page-container .classname_c00181")
 */
.pf_c00181 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00181 { /* 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_c00181.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00181 { /* 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_c00181 { /* 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_c00181 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00181 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00181 {overflow:visible;}
  }
}
.c_c00181 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00181 { /* 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_c00181:after { /* webkit #35443 */
  content: '';
}
.t_c00181:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00181 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 */
}
.__c00181 { /* 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_c00181 { /* info for Javascript */
  display:none;
}
.l_c00181 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00181 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00181 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00181: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_c00181 {
    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_c00181.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00181.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_c00181 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00181{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00181;src:url('chunks/assets/font_59dc3ab2e04ed21d4ac9992b.woff2')format("woff");}.ff1_c00181{font-family:ff1_c00181;line-height:1.000000;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;}
.m1_c00181{transform:matrix(0.131735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131735,0.000000,0.000000,0.250000,0,0);}
.m2_c00181{transform:matrix(0.167470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167470,0.000000,0.000000,0.250000,0,0);}
.m0_c00181{transform:matrix(0.180900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180900,0.000000,0.000000,0.250000,0,0);}
.v0_c00181{vertical-align:0.000000px;}
.ls0_c00181{letter-spacing:0.000000px;}
.sc__c00181{text-shadow:none;}
.sc0_c00181{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__c00181{-webkit-text-stroke:0px transparent;}
.sc0_c00181{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00181{word-spacing:0.000000px;}
.fc0_c00181{color:transparent;}
.fs0_c00181{font-size:60.000000px;}
.y0_c00181{bottom:0.000000px;}
.y3_c00181{bottom:506.520000px;}
.y2_c00181{bottom:516.780000px;}
.y1_c00181{bottom:525.420000px;}
.h1_c00181{height:60.000000px;}
.h0_c00181{height:682.500000px;}
.w0_c00181{width:924.450000px;}
.w1_c00181{width:924.750000px;}
.x0_c00181{left:0.000000px;}
.x1_c00181{left:8.370000px;}
@media print{
.v0_c00181{vertical-align:0.000000pt;}
.ls0_c00181{letter-spacing:0.000000pt;}
.ws0_c00181{word-spacing:0.000000pt;}
.fs0_c00181{font-size:53.333333pt;}
.y0_c00181{bottom:0.000000pt;}
.y3_c00181{bottom:450.240000pt;}
.y2_c00181{bottom:459.360000pt;}
.y1_c00181{bottom:467.040000pt;}
.h1_c00181{height:53.333333pt;}
.h0_c00181{height:606.666667pt;}
.w0_c00181{width:821.733333pt;}
.w1_c00181{width:822.000000pt;}
.x0_c00181{left:0.000000pt;}
.x1_c00181{left:7.440000pt;}
}





/* 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_c00182 {
    display:none;
  }
  .loading-indicator_c00182.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00182 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_c00182 { 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_c00182" -> "#page-container .classname_c00182")
 */
.pf_c00182 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00182 { /* 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_c00182.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00182 { /* 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_c00182 { /* 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_c00182 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00182 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00182 {overflow:visible;}
  }
}
.c_c00182 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00182 { /* 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_c00182:after { /* webkit #35443 */
  content: '';
}
.t_c00182:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00182 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 */
}
.__c00182 { /* 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_c00182 { /* info for Javascript */
  display:none;
}
.l_c00182 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00182 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00182 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00182: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_c00182 {
    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_c00182.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00182.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_c00182 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00182{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00182;src:url('chunks/assets/font_c605e72f209fc835e906f064.woff2')format("woff");}.ff1_c00182{font-family:ff1_c00182;line-height:1.000000;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;}
.m0_c00182{transform:matrix(0.021360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021360,0.000000,0.000000,0.250000,0,0);}
.m2c_c00182{transform:matrix(0.031820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.031820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.031820,0.000000,0.000000,0.250000,0,0);}
.m1e_c00182{transform:matrix(0.040560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.040560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.040560,0.000000,0.000000,0.250000,0,0);}
.m17_c00182{transform:matrix(0.050310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.050310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.050310,0.000000,0.000000,0.250000,0,0);}
.m15_c00182{transform:matrix(0.061845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.061845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.061845,0.000000,0.000000,0.250000,0,0);}
.m12_c00182{transform:matrix(0.065595,0.000787,-0.003000,0.249982,0,0);-ms-transform:matrix(0.065595,0.000787,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.065595,0.000787,-0.003000,0.249982,0,0);}
.m43_c00182{transform:matrix(0.081900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.081900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.081900,0.000000,0.000000,0.250000,0,0);}
.m3f_c00182{transform:matrix(0.087865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087865,0.000000,0.000000,0.250000,0,0);}
.m39_c00182{transform:matrix(0.091240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.091240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.091240,0.000000,0.000000,0.250000,0,0);}
.m41_c00182{transform:matrix(0.121685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121685,0.000000,0.000000,0.250000,0,0);}
.m3e_c00182{transform:matrix(0.134165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134165,0.000000,0.000000,0.250000,0,0);}
.m38_c00182{transform:matrix(0.135470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135470,0.000000,0.000000,0.250000,0,0);}
.m2d_c00182{transform:matrix(0.136980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136980,0.000000,0.000000,0.250000,0,0);}
.m2f_c00182{transform:matrix(0.153015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153015,0.000000,0.000000,0.250000,0,0);}
.m10_c00182{transform:matrix(0.156279,0.001875,-0.003000,0.249982,0,0);-ms-transform:matrix(0.156279,0.001875,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.156279,0.001875,-0.003000,0.249982,0,0);}
.m20_c00182{transform:matrix(0.157900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157900,0.000000,0.000000,0.250000,0,0);}
.m13_c00182{transform:matrix(0.166093,0.001993,-0.003000,0.249982,0,0);-ms-transform:matrix(0.166093,0.001993,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.166093,0.001993,-0.003000,0.249982,0,0);}
.m42_c00182{transform:matrix(0.178275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178275,0.000000,0.000000,0.250000,0,0);}
.m1c_c00182{transform:matrix(0.192570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192570,0.000000,0.000000,0.250000,0,0);}
.m1d_c00182{transform:matrix(0.204020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204020,0.000000,0.000000,0.250000,0,0);}
.m29_c00182{transform:matrix(0.207440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207440,0.000000,0.000000,0.250000,0,0);}
.m25_c00182{transform:matrix(0.213455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213455,0.000000,0.000000,0.250000,0,0);}
.m7_c00182{transform:matrix(0.240025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240025,0.000000,0.000000,0.250000,0,0);}
.m3_c00182{transform:matrix(0.243110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243110,0.000000,0.000000,0.250000,0,0);}
.m37_c00182{transform:matrix(0.248520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248520,0.000000,0.000000,0.250000,0,0);}
.m8_c00182{transform:matrix(0.250555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250555,0.000000,0.000000,0.250000,0,0);}
.m22_c00182{transform:matrix(0.253785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253785,0.000000,0.000000,0.250000,0,0);}
.m21_c00182{transform:matrix(0.254560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254560,0.000000,0.000000,0.250000,0,0);}
.m2b_c00182{transform:matrix(0.255675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255675,0.000000,0.000000,0.250000,0,0);}
.m1b_c00182{transform:matrix(0.265060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265060,0.000000,0.000000,0.250000,0,0);}
.m4_c00182{transform:matrix(0.271050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271050,0.000000,0.000000,0.250000,0,0);}
.mb_c00182{transform:matrix(0.274908,-0.001924,0.001750,0.249994,0,0);-ms-transform:matrix(0.274908,-0.001924,0.001750,0.249994,0,0);-webkit-transform:matrix(0.274908,-0.001924,0.001750,0.249994,0,0);}
.m24_c00182{transform:matrix(0.279115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279115,0.000000,0.000000,0.250000,0,0);}
.m1_c00182{transform:matrix(0.279730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279730,0.000000,0.000000,0.250000,0,0);}
.m2e_c00182{transform:matrix(0.288630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288630,0.000000,0.000000,0.250000,0,0);}
.m40_c00182{transform:matrix(0.295940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295940,0.000000,0.000000,0.250000,0,0);}
.m3c_c00182{transform:matrix(0.297010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297010,0.000000,0.000000,0.250000,0,0);}
.mc_c00182{transform:matrix(0.301473,0.003618,-0.003000,0.249982,0,0);-ms-transform:matrix(0.301473,0.003618,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.301473,0.003618,-0.003000,0.249982,0,0);}
.m6_c00182{transform:matrix(0.328845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328845,0.000000,0.000000,0.250000,0,0);}
.m5_c00182{transform:matrix(0.362940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362940,0.000000,0.000000,0.250000,0,0);}
.m2_c00182{transform:matrix(0.369330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369330,0.000000,0.000000,0.250000,0,0);}
.m23_c00182{transform:matrix(0.372590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372590,0.000000,0.000000,0.250000,0,0);}
.m33_c00182{transform:matrix(0.405780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405780,0.000000,0.000000,0.250000,0,0);}
.m1a_c00182{transform:matrix(0.450250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450250,0.000000,0.000000,0.250000,0,0);}
.m14_c00182{transform:matrix(0.473035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.473035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.473035,0.000000,0.000000,0.250000,0,0);}
.m31_c00182{transform:matrix(0.513515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513515,0.000000,0.000000,0.250000,0,0);}
.m2a_c00182{transform:matrix(0.537770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537770,0.000000,0.000000,0.250000,0,0);}
.m26_c00182{transform:matrix(0.541870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541870,0.000000,0.000000,0.250000,0,0);}
.m28_c00182{transform:matrix(0.615880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615880,0.000000,0.000000,0.250000,0,0);}
.m27_c00182{transform:matrix(0.623740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.623740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.623740,0.000000,0.000000,0.250000,0,0);}
.m16_c00182{transform:matrix(0.682870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.682870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.682870,0.000000,0.000000,0.250000,0,0);}
.m34_c00182{transform:matrix(0.719140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.719140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.719140,0.000000,0.000000,0.250000,0,0);}
.m30_c00182{transform:matrix(0.730515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.730515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.730515,0.000000,0.000000,0.250000,0,0);}
.m19_c00182{transform:matrix(0.731595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.731595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.731595,0.000000,0.000000,0.250000,0,0);}
.m35_c00182{transform:matrix(0.868875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.868875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.868875,0.000000,0.000000,0.250000,0,0);}
.m3d_c00182{transform:matrix(0.914645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.914645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.914645,0.000000,0.000000,0.250000,0,0);}
.ma_c00182{transform:matrix(0.923667,-0.006466,0.001750,0.249994,0,0);-ms-transform:matrix(0.923667,-0.006466,0.001750,0.249994,0,0);-webkit-transform:matrix(0.923667,-0.006466,0.001750,0.249994,0,0);}
.m18_c00182{transform:matrix(0.945600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.945600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.945600,0.000000,0.000000,0.250000,0,0);}
.md_c00182{transform:matrix(0.992229,0.011907,-0.003000,0.249982,0,0);-ms-transform:matrix(0.992229,0.011907,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.992229,0.011907,-0.003000,0.249982,0,0);}
.m9_c00182{transform:matrix(0.997416,-0.006982,0.001750,0.249994,0,0);-ms-transform:matrix(0.997416,-0.006982,0.001750,0.249994,0,0);-webkit-transform:matrix(0.997416,-0.006982,0.001750,0.249994,0,0);}
.m3b_c00182{transform:matrix(1.171350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.171350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.171350,0.000000,0.000000,0.250000,0,0);}
.m36_c00182{transform:matrix(1.200115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.200115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.200115,0.000000,0.000000,0.250000,0,0);}
.m3a_c00182{transform:matrix(1.401515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.401515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.401515,0.000000,0.000000,0.250000,0,0);}
.me_c00182{transform:matrix(1.941260,0.023295,-0.003000,0.249982,0,0);-ms-transform:matrix(1.941260,0.023295,-0.003000,0.249982,0,0);-webkit-transform:matrix(1.941260,0.023295,-0.003000,0.249982,0,0);}
.mf_c00182{transform:matrix(2.444209,0.029331,-0.003000,0.249982,0,0);-ms-transform:matrix(2.444209,0.029331,-0.003000,0.249982,0,0);-webkit-transform:matrix(2.444209,0.029331,-0.003000,0.249982,0,0);}
.m1f_c00182{transform:matrix(2.817560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.817560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.817560,0.000000,0.000000,0.250000,0,0);}
.m32_c00182{transform:matrix(3.257550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.257550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.257550,0.000000,0.000000,0.250000,0,0);}
.m11_c00182{transform:matrix(3.924017,0.047088,-0.003000,0.249982,0,0);-ms-transform:matrix(3.924017,0.047088,-0.003000,0.249982,0,0);-webkit-transform:matrix(3.924017,0.047088,-0.003000,0.249982,0,0);}
.v0_c00182{vertical-align:0.000000px;}
.ls0_c00182{letter-spacing:0.000000px;}
.sc__c00182{text-shadow:none;}
.sc0_c00182{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__c00182{-webkit-text-stroke:0px transparent;}
.sc0_c00182{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00182{word-spacing:0.000000px;}
.fc0_c00182{color:transparent;}
.fs3_c00182{font-size:24.000000px;}
.fs2_c00182{font-size:24.001728px;}
.fs0_c00182{font-size:108.000000px;}
.fs1_c00182{font-size:336.008232px;}
.y0_c00182{bottom:0.000000px;}
.y1d_c00182{bottom:1.783500px;}
.y1c_c00182{bottom:1.863000px;}
.y1b_c00182{bottom:1.995000px;}
.y1a_c00182{bottom:2.040000px;}
.y19_c00182{bottom:2.185500px;}
.y18_c00182{bottom:2.433000px;}
.y17_c00182{bottom:3.469500px;}
.y16_c00182{bottom:3.555000px;}
.y15_c00182{bottom:3.615000px;}
.y14_c00182{bottom:3.700500px;}
.y13_c00182{bottom:3.736500px;}
.y12_c00182{bottom:3.807000px;}
.y11_c00182{bottom:3.867000px;}
.y10_c00182{bottom:4.767000px;}
.yf_c00182{bottom:5.059500px;}
.y8_c00182{bottom:6.496488px;}
.yc_c00182{bottom:6.788136px;}
.yb_c00182{bottom:6.788484px;}
.ya_c00182{bottom:6.788904px;}
.y9_c00182{bottom:6.789108px;}
.ye_c00182{bottom:7.021500px;}
.y7_c00182{bottom:8.210628px;}
.y6_c00182{bottom:8.858502px;}
.y5_c00182{bottom:9.720000px;}
.yd_c00182{bottom:12.967500px;}
.y2_c00182{bottom:31.684500px;}
.y3_c00182{bottom:34.141647px;}
.y4_c00182{bottom:35.822151px;}
.y1_c00182{bottom:143.107500px;}
.h4_c00182{height:24.000000px;}
.h3_c00182{height:24.001728px;}
.h1_c00182{height:108.000000px;}
.h2_c00182{height:336.008232px;}
.h0_c00182{height:682.500000px;}
.w0_c00182{width:924.450000px;}
.w1_c00182{width:924.750000px;}
.x0_c00182{left:0.000000px;}
.xa_c00182{left:13.662000px;}
.x1_c00182{left:15.390000px;}
.x2_c00182{left:93.150000px;}
.x11_c00182{left:136.886928px;}
.x1e_c00182{left:164.154000px;}
.x40_c00182{left:168.750000px;}
.x41_c00182{left:169.830000px;}
.xd_c00182{left:174.436500px;}
.x12_c00182{left:177.659796px;}
.x2e_c00182{left:180.363000px;}
.x2f_c00182{left:200.613000px;}
.x42_c00182{left:202.500000px;}
.x43_c00182{left:213.840000px;}
.x44_c00182{left:222.480000px;}
.x30_c00182{left:228.423000px;}
.x45_c00182{left:240.840000px;}
.xe_c00182{left:246.228000px;}
.x31_c00182{left:255.693000px;}
.x46_c00182{left:262.440000px;}
.xf_c00182{left:300.217500px;}
.x32_c00182{left:316.173000px;}
.x3_c00182{left:325.890000px;}
.x47_c00182{left:342.630000px;}
.x33_c00182{left:345.063000px;}
.xb_c00182{left:364.683000px;}
.x13_c00182{left:377.473560px;}
.x48_c00182{left:393.120000px;}
.x4_c00182{left:409.590000px;}
.x34_c00182{left:412.563000px;}
.x35_c00182{left:431.193000px;}
.x10_c00182{left:443.062500px;}
.x1f_c00182{left:444.423000px;}
.x14_c00182{left:467.390502px;}
.x20_c00182{left:486.250500px;}
.x36_c00182{left:505.443000px;}
.x15_c00182{left:510.030000px;}
.x5_c00182{left:536.490000px;}
.x37_c00182{left:540.543000px;}
.x16_c00182{left:550.260000px;}
.x17_c00182{left:573.750000px;}
.x38_c00182{left:582.393000px;}
.x39_c00182{left:600.753000px;}
.xc_c00182{left:604.755000px;}
.x21_c00182{left:614.766000px;}
.x18_c00182{left:621.270000px;}
.x22_c00182{left:623.385000px;}
.x23_c00182{left:633.375000px;}
.x19_c00182{left:637.470000px;}
.x24_c00182{left:638.505000px;}
.x3a_c00182{left:641.253000px;}
.x25_c00182{left:650.655000px;}
.x6_c00182{left:654.750000px;}
.x26_c00182{left:659.323500px;}
.x27_c00182{left:671.445000px;}
.x3b_c00182{left:674.733000px;}
.x1a_c00182{left:682.290000px;}
.x3c_c00182{left:684.993000px;}
.x3d_c00182{left:696.873000px;}
.x1b_c00182{left:724.950000px;}
.x7_c00182{left:738.450000px;}
.x3e_c00182{left:744.123000px;}
.x1c_c00182{left:746.550000px;}
.x1d_c00182{left:755.460000px;}
.x8_c00182{left:796.230000px;}
.x28_c00182{left:819.442500px;}
.x3f_c00182{left:847.803000px;}
.x9_c00182{left:850.500000px;}
.x29_c00182{left:854.809500px;}
.x2a_c00182{left:875.593500px;}
.x2b_c00182{left:882.052500px;}
.x2c_c00182{left:900.951000px;}
.x2d_c00182{left:912.315000px;}
@media print{
.v0_c00182{vertical-align:0.000000pt;}
.ls0_c00182{letter-spacing:0.000000pt;}
.ws0_c00182{word-spacing:0.000000pt;}
.fs3_c00182{font-size:21.333333pt;}
.fs2_c00182{font-size:21.334869pt;}
.fs0_c00182{font-size:96.000000pt;}
.fs1_c00182{font-size:298.673984pt;}
.y0_c00182{bottom:0.000000pt;}
.y1d_c00182{bottom:1.585333pt;}
.y1c_c00182{bottom:1.656000pt;}
.y1b_c00182{bottom:1.773333pt;}
.y1a_c00182{bottom:1.813333pt;}
.y19_c00182{bottom:1.942667pt;}
.y18_c00182{bottom:2.162667pt;}
.y17_c00182{bottom:3.084000pt;}
.y16_c00182{bottom:3.160000pt;}
.y15_c00182{bottom:3.213333pt;}
.y14_c00182{bottom:3.289333pt;}
.y13_c00182{bottom:3.321333pt;}
.y12_c00182{bottom:3.384000pt;}
.y11_c00182{bottom:3.437333pt;}
.y10_c00182{bottom:4.237333pt;}
.yf_c00182{bottom:4.497333pt;}
.y8_c00182{bottom:5.774656pt;}
.yc_c00182{bottom:6.033899pt;}
.yb_c00182{bottom:6.034208pt;}
.ya_c00182{bottom:6.034581pt;}
.y9_c00182{bottom:6.034763pt;}
.ye_c00182{bottom:6.241333pt;}
.y7_c00182{bottom:7.298336pt;}
.y6_c00182{bottom:7.874224pt;}
.y5_c00182{bottom:8.640000pt;}
.yd_c00182{bottom:11.526667pt;}
.y2_c00182{bottom:28.164000pt;}
.y3_c00182{bottom:30.348131pt;}
.y4_c00182{bottom:31.841912pt;}
.y1_c00182{bottom:127.206667pt;}
.h4_c00182{height:21.333333pt;}
.h3_c00182{height:21.334869pt;}
.h1_c00182{height:96.000000pt;}
.h2_c00182{height:298.673984pt;}
.h0_c00182{height:606.666667pt;}
.w0_c00182{width:821.733333pt;}
.w1_c00182{width:822.000000pt;}
.x0_c00182{left:0.000000pt;}
.xa_c00182{left:12.144000pt;}
.x1_c00182{left:13.680000pt;}
.x2_c00182{left:82.800000pt;}
.x11_c00182{left:121.677269pt;}
.x1e_c00182{left:145.914667pt;}
.x40_c00182{left:150.000000pt;}
.x41_c00182{left:150.960000pt;}
.xd_c00182{left:155.054667pt;}
.x12_c00182{left:157.919819pt;}
.x2e_c00182{left:160.322667pt;}
.x2f_c00182{left:178.322667pt;}
.x42_c00182{left:180.000000pt;}
.x43_c00182{left:190.080000pt;}
.x44_c00182{left:197.760000pt;}
.x30_c00182{left:203.042667pt;}
.x45_c00182{left:214.080000pt;}
.xe_c00182{left:218.869333pt;}
.x31_c00182{left:227.282667pt;}
.x46_c00182{left:233.280000pt;}
.xf_c00182{left:266.860000pt;}
.x32_c00182{left:281.042667pt;}
.x3_c00182{left:289.680000pt;}
.x47_c00182{left:304.560000pt;}
.x33_c00182{left:306.722667pt;}
.xb_c00182{left:324.162667pt;}
.x13_c00182{left:335.532053pt;}
.x48_c00182{left:349.440000pt;}
.x4_c00182{left:364.080000pt;}
.x34_c00182{left:366.722667pt;}
.x35_c00182{left:383.282667pt;}
.x10_c00182{left:393.833333pt;}
.x1f_c00182{left:395.042667pt;}
.x14_c00182{left:415.458224pt;}
.x20_c00182{left:432.222667pt;}
.x36_c00182{left:449.282667pt;}
.x15_c00182{left:453.360000pt;}
.x5_c00182{left:476.880000pt;}
.x37_c00182{left:480.482667pt;}
.x16_c00182{left:489.120000pt;}
.x17_c00182{left:510.000000pt;}
.x38_c00182{left:517.682667pt;}
.x39_c00182{left:534.002667pt;}
.xc_c00182{left:537.560000pt;}
.x21_c00182{left:546.458667pt;}
.x18_c00182{left:552.240000pt;}
.x22_c00182{left:554.120000pt;}
.x23_c00182{left:563.000000pt;}
.x19_c00182{left:566.640000pt;}
.x24_c00182{left:567.560000pt;}
.x3a_c00182{left:570.002667pt;}
.x25_c00182{left:578.360000pt;}
.x6_c00182{left:582.000000pt;}
.x26_c00182{left:586.065333pt;}
.x27_c00182{left:596.840000pt;}
.x3b_c00182{left:599.762667pt;}
.x1a_c00182{left:606.480000pt;}
.x3c_c00182{left:608.882667pt;}
.x3d_c00182{left:619.442667pt;}
.x1b_c00182{left:644.400000pt;}
.x7_c00182{left:656.400000pt;}
.x3e_c00182{left:661.442667pt;}
.x1c_c00182{left:663.600000pt;}
.x1d_c00182{left:671.520000pt;}
.x8_c00182{left:707.760000pt;}
.x28_c00182{left:728.393333pt;}
.x3f_c00182{left:753.602667pt;}
.x9_c00182{left:756.000000pt;}
.x29_c00182{left:759.830667pt;}
.x2a_c00182{left:778.305333pt;}
.x2b_c00182{left:784.046667pt;}
.x2c_c00182{left:800.845333pt;}
.x2d_c00182{left:810.946667pt;}
}





/* 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_c00183 {
    display:none;
  }
  .loading-indicator_c00183.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00183 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_c00183 { 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_c00183" -> "#page-container .classname_c00183")
 */
.pf_c00183 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00183 { /* 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_c00183.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00183 { /* 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_c00183 { /* 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_c00183 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00183 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00183 {overflow:visible;}
  }
}
.c_c00183 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00183 { /* 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_c00183:after { /* webkit #35443 */
  content: '';
}
.t_c00183:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00183 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 */
}
.__c00183 { /* 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_c00183 { /* info for Javascript */
  display:none;
}
.l_c00183 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00183 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00183 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00183: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_c00183 {
    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_c00183.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00183.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_c00183 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00183{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00183;src:url('chunks/assets/font_fe3cd3c6b9706b260f6e1774.woff2')format("woff");}.ff1_c00183{font-family:ff1_c00183;line-height:1.000000;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;}
.m2_c00183{transform:matrix(0.053701,-0.006435,0.029747,0.248224,0,0);-ms-transform:matrix(0.053701,-0.006435,0.029747,0.248224,0,0);-webkit-transform:matrix(0.053701,-0.006435,0.029747,0.248224,0,0);}
.m9_c00183{transform:matrix(0.063188,-0.007572,0.029747,0.248224,0,0);-ms-transform:matrix(0.063188,-0.007572,0.029747,0.248224,0,0);-webkit-transform:matrix(0.063188,-0.007572,0.029747,0.248224,0,0);}
.m6_c00183{transform:matrix(0.251386,-0.030126,0.029747,0.248224,0,0);-ms-transform:matrix(0.251386,-0.030126,0.029747,0.248224,0,0);-webkit-transform:matrix(0.251386,-0.030126,0.029747,0.248224,0,0);}
.m5_c00183{transform:matrix(0.289106,-0.034646,0.029747,0.248224,0,0);-ms-transform:matrix(0.289106,-0.034646,0.029747,0.248224,0,0);-webkit-transform:matrix(0.289106,-0.034646,0.029747,0.248224,0,0);}
.m0_c00183{transform:matrix(0.342122,-0.041000,0.029747,0.248224,0,0);-ms-transform:matrix(0.342122,-0.041000,0.029747,0.248224,0,0);-webkit-transform:matrix(0.342122,-0.041000,0.029747,0.248224,0,0);}
.mb_c00183{transform:matrix(0.413814,-0.049591,0.029747,0.248224,0,0);-ms-transform:matrix(0.413814,-0.049591,0.029747,0.248224,0,0);-webkit-transform:matrix(0.413814,-0.049591,0.029747,0.248224,0,0);}
.m7_c00183{transform:matrix(0.431969,-0.051767,0.029747,0.248224,0,0);-ms-transform:matrix(0.431969,-0.051767,0.029747,0.248224,0,0);-webkit-transform:matrix(0.431969,-0.051767,0.029747,0.248224,0,0);}
.m1_c00183{transform:matrix(0.522968,-0.062672,0.029747,0.248224,0,0);-ms-transform:matrix(0.522968,-0.062672,0.029747,0.248224,0,0);-webkit-transform:matrix(0.522968,-0.062672,0.029747,0.248224,0,0);}
.m8_c00183{transform:matrix(0.598557,-0.071730,0.029747,0.248224,0,0);-ms-transform:matrix(0.598557,-0.071730,0.029747,0.248224,0,0);-webkit-transform:matrix(0.598557,-0.071730,0.029747,0.248224,0,0);}
.m3_c00183{transform:matrix(0.646186,-0.077438,0.029747,0.248224,0,0);-ms-transform:matrix(0.646186,-0.077438,0.029747,0.248224,0,0);-webkit-transform:matrix(0.646186,-0.077438,0.029747,0.248224,0,0);}
.ma_c00183{transform:matrix(0.743629,-0.089116,0.029747,0.248224,0,0);-ms-transform:matrix(0.743629,-0.089116,0.029747,0.248224,0,0);-webkit-transform:matrix(0.743629,-0.089116,0.029747,0.248224,0,0);}
.m4_c00183{transform:matrix(1.562232,-0.187216,0.029747,0.248224,0,0);-ms-transform:matrix(1.562232,-0.187216,0.029747,0.248224,0,0);-webkit-transform:matrix(1.562232,-0.187216,0.029747,0.248224,0,0);}
.v1_c00183{vertical-align:-1.494157px;}
.v0_c00183{vertical-align:0.000000px;}
.ls0_c00183{letter-spacing:0.000000px;}
.sc__c00183{text-shadow:none;}
.sc0_c00183{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__c00183{-webkit-text-stroke:0px transparent;}
.sc0_c00183{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00183{word-spacing:0.000000px;}
._0_c00183{width:483.918182px;}
.fc0_c00183{color:transparent;}
.fs3_c00183{font-size:12.001260px;}
.fs0_c00183{font-size:18.001890px;}
.fs2_c00183{font-size:42.004410px;}
.fs1_c00183{font-size:54.005670px;}
.y0_c00183{bottom:0.000000px;}
.ya_c00183{bottom:373.664788px;}
.y6_c00183{bottom:376.018135px;}
.y4_c00183{bottom:376.471494px;}
.y7_c00183{bottom:378.246375px;}
.yb_c00183{bottom:378.683292px;}
.y8_c00183{bottom:380.693874px;}
.yc_c00183{bottom:381.372712px;}
.y5_c00183{bottom:382.380537px;}
.y9_c00183{bottom:386.333703px;}
.y1_c00183{bottom:391.996500px;}
.y2_c00183{bottom:394.006231px;}
.y3_c00183{bottom:406.545856px;}
.h4_c00183{height:12.001260px;}
.h1_c00183{height:18.001890px;}
.h3_c00183{height:42.004410px;}
.h2_c00183{height:54.005670px;}
.h0_c00183{height:682.500000px;}
.w0_c00183{width:924.450000px;}
.w1_c00183{width:924.750000px;}
.x0_c00183{left:0.000000px;}
.x4_c00183{left:461.496798px;}
.x1_c00183{left:491.848500px;}
.x2_c00183{left:508.618780px;}
.x5_c00183{left:520.689459px;}
.x6_c00183{left:579.415754px;}
.x7_c00183{left:597.858090px;}
.xa_c00183{left:604.056364px;}
.x3_c00183{left:613.256155px;}
.x8_c00183{left:618.117438px;}
.xb_c00183{left:650.585694px;}
.x9_c00183{left:664.788366px;}
.xc_c00183{left:675.523987px;}
@media print{
.v1_c00183{vertical-align:-1.328139pt;}
.v0_c00183{vertical-align:0.000000pt;}
.ls0_c00183{letter-spacing:0.000000pt;}
.ws0_c00183{word-spacing:0.000000pt;}
._0_c00183{width:430.149495pt;}
.fs3_c00183{font-size:10.667787pt;}
.fs0_c00183{font-size:16.001680pt;}
.fs2_c00183{font-size:37.337253pt;}
.fs1_c00183{font-size:48.005040pt;}
.y0_c00183{bottom:0.000000pt;}
.ya_c00183{bottom:332.146479pt;}
.y6_c00183{bottom:334.238343pt;}
.y4_c00183{bottom:334.641328pt;}
.y7_c00183{bottom:336.219000pt;}
.yb_c00183{bottom:336.607371pt;}
.y8_c00183{bottom:338.394555pt;}
.yc_c00183{bottom:338.997967pt;}
.y5_c00183{bottom:339.893811pt;}
.y9_c00183{bottom:343.407736pt;}
.y1_c00183{bottom:348.441333pt;}
.y2_c00183{bottom:350.227761pt;}
.y3_c00183{bottom:361.374095pt;}
.h4_c00183{height:10.667787pt;}
.h1_c00183{height:16.001680pt;}
.h3_c00183{height:37.337253pt;}
.h2_c00183{height:48.005040pt;}
.h0_c00183{height:606.666667pt;}
.w0_c00183{width:821.733333pt;}
.w1_c00183{width:822.000000pt;}
.x0_c00183{left:0.000000pt;}
.x4_c00183{left:410.219376pt;}
.x1_c00183{left:437.198667pt;}
.x2_c00183{left:452.105583pt;}
.x5_c00183{left:462.835075pt;}
.x6_c00183{left:515.036225pt;}
.x7_c00183{left:531.429413pt;}
.xa_c00183{left:536.938991pt;}
.x3_c00183{left:545.116583pt;}
.x8_c00183{left:549.437723pt;}
.xb_c00183{left:578.298395pt;}
.x9_c00183{left:590.922992pt;}
.xc_c00183{left:600.465767pt;}
}





/* 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_c00184 {
    display:none;
  }
  .loading-indicator_c00184.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00184 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_c00184 { 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_c00184" -> "#page-container .classname_c00184")
 */
.pf_c00184 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00184 { /* 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_c00184.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00184 { /* 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_c00184 { /* 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_c00184 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00184 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00184 {overflow:visible;}
  }
}
.c_c00184 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00184 { /* 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_c00184:after { /* webkit #35443 */
  content: '';
}
.t_c00184:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00184 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 */
}
.__c00184 { /* 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_c00184 { /* info for Javascript */
  display:none;
}
.l_c00184 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00184 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00184 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00184: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_c00184 {
    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_c00184.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00184.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_c00184 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00184{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00184;src:url('chunks/assets/font_7c6b9abe6ee2a268480c528b.woff2')format("woff");}.ff1_c00184{font-family:ff1_c00184;line-height:1.000000;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;}
.m2b_c00184{transform:matrix(0.010598,-0.000382,0.009003,0.249838,0,0);-ms-transform:matrix(0.010598,-0.000382,0.009003,0.249838,0,0);-webkit-transform:matrix(0.010598,-0.000382,0.009003,0.249838,0,0);}
.m10_c00184{transform:matrix(0.033114,-0.001193,0.009003,0.249838,0,0);-ms-transform:matrix(0.033114,-0.001193,0.009003,0.249838,0,0);-webkit-transform:matrix(0.033114,-0.001193,0.009003,0.249838,0,0);}
.m1b_c00184{transform:matrix(0.079498,-0.002865,0.009003,0.249838,0,0);-ms-transform:matrix(0.079498,-0.002865,0.009003,0.249838,0,0);-webkit-transform:matrix(0.079498,-0.002865,0.009003,0.249838,0,0);}
.m1d_c00184{transform:matrix(0.079673,-0.002871,0.009003,0.249838,0,0);-ms-transform:matrix(0.079673,-0.002871,0.009003,0.249838,0,0);-webkit-transform:matrix(0.079673,-0.002871,0.009003,0.249838,0,0);}
.m2d_c00184{transform:matrix(0.081557,-0.002939,0.009003,0.249838,0,0);-ms-transform:matrix(0.081557,-0.002939,0.009003,0.249838,0,0);-webkit-transform:matrix(0.081557,-0.002939,0.009003,0.249838,0,0);}
.m1c_c00184{transform:matrix(0.088448,-0.003187,0.009003,0.249838,0,0);-ms-transform:matrix(0.088448,-0.003187,0.009003,0.249838,0,0);-webkit-transform:matrix(0.088448,-0.003187,0.009003,0.249838,0,0);}
.m21_c00184{transform:matrix(0.130360,-0.004698,0.009003,0.249838,0,0);-ms-transform:matrix(0.130360,-0.004698,0.009003,0.249838,0,0);-webkit-transform:matrix(0.130360,-0.004698,0.009003,0.249838,0,0);}
.m23_c00184{transform:matrix(0.140859,-0.005076,0.009003,0.249838,0,0);-ms-transform:matrix(0.140859,-0.005076,0.009003,0.249838,0,0);-webkit-transform:matrix(0.140859,-0.005076,0.009003,0.249838,0,0);}
.m2_c00184{transform:matrix(0.158800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158800,0.000000,0.000000,0.250000,0,0);}
.m25_c00184{transform:matrix(0.162470,-0.005855,0.009003,0.249838,0,0);-ms-transform:matrix(0.162470,-0.005855,0.009003,0.249838,0,0);-webkit-transform:matrix(0.162470,-0.005855,0.009003,0.249838,0,0);}
.m14_c00184{transform:matrix(0.163269,-0.005884,0.009003,0.249838,0,0);-ms-transform:matrix(0.163269,-0.005884,0.009003,0.249838,0,0);-webkit-transform:matrix(0.163269,-0.005884,0.009003,0.249838,0,0);}
.m8_c00184{transform:matrix(0.177845,-0.006409,0.009003,0.249838,0,0);-ms-transform:matrix(0.177845,-0.006409,0.009003,0.249838,0,0);-webkit-transform:matrix(0.177845,-0.006409,0.009003,0.249838,0,0);}
.m35_c00184{transform:matrix(0.206491,-0.007441,0.009003,0.249838,0,0);-ms-transform:matrix(0.206491,-0.007441,0.009003,0.249838,0,0);-webkit-transform:matrix(0.206491,-0.007441,0.009003,0.249838,0,0);}
.m3e_c00184{transform:matrix(0.220137,-0.007933,0.009003,0.249838,0,0);-ms-transform:matrix(0.220137,-0.007933,0.009003,0.249838,0,0);-webkit-transform:matrix(0.220137,-0.007933,0.009003,0.249838,0,0);}
.m26_c00184{transform:matrix(0.236422,-0.008520,0.009003,0.249838,0,0);-ms-transform:matrix(0.236422,-0.008520,0.009003,0.249838,0,0);-webkit-transform:matrix(0.236422,-0.008520,0.009003,0.249838,0,0);}
.m41_c00184{transform:matrix(0.251971,-0.009080,0.009003,0.249838,0,0);-ms-transform:matrix(0.251971,-0.009080,0.009003,0.249838,0,0);-webkit-transform:matrix(0.251971,-0.009080,0.009003,0.249838,0,0);}
.m3c_c00184{transform:matrix(0.264858,-0.009544,0.009003,0.249838,0,0);-ms-transform:matrix(0.264858,-0.009544,0.009003,0.249838,0,0);-webkit-transform:matrix(0.264858,-0.009544,0.009003,0.249838,0,0);}
.m3f_c00184{transform:matrix(0.265618,-0.009572,0.009003,0.249838,0,0);-ms-transform:matrix(0.265618,-0.009572,0.009003,0.249838,0,0);-webkit-transform:matrix(0.265618,-0.009572,0.009003,0.249838,0,0);}
.m1_c00184{transform:matrix(0.274245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274245,0.000000,0.000000,0.250000,0,0);}
.m43_c00184{transform:matrix(0.278814,-0.010047,0.009003,0.249838,0,0);-ms-transform:matrix(0.278814,-0.010047,0.009003,0.249838,0,0);-webkit-transform:matrix(0.278814,-0.010047,0.009003,0.249838,0,0);}
.m40_c00184{transform:matrix(0.281642,-0.010149,0.009003,0.249838,0,0);-ms-transform:matrix(0.281642,-0.010149,0.009003,0.249838,0,0);-webkit-transform:matrix(0.281642,-0.010149,0.009003,0.249838,0,0);}
.ma_c00184{transform:matrix(0.294419,-0.010610,0.009003,0.249838,0,0);-ms-transform:matrix(0.294419,-0.010610,0.009003,0.249838,0,0);-webkit-transform:matrix(0.294419,-0.010610,0.009003,0.249838,0,0);}
.m38_c00184{transform:matrix(0.297312,-0.010714,0.009003,0.249838,0,0);-ms-transform:matrix(0.297312,-0.010714,0.009003,0.249838,0,0);-webkit-transform:matrix(0.297312,-0.010714,0.009003,0.249838,0,0);}
.m28_c00184{transform:matrix(0.304772,-0.010983,0.009003,0.249838,0,0);-ms-transform:matrix(0.304772,-0.010983,0.009003,0.249838,0,0);-webkit-transform:matrix(0.304772,-0.010983,0.009003,0.249838,0,0);}
.mb_c00184{transform:matrix(0.309604,-0.011157,0.009003,0.249838,0,0);-ms-transform:matrix(0.309604,-0.011157,0.009003,0.249838,0,0);-webkit-transform:matrix(0.309604,-0.011157,0.009003,0.249838,0,0);}
.m42_c00184{transform:matrix(0.310104,-0.011175,0.009003,0.249838,0,0);-ms-transform:matrix(0.310104,-0.011175,0.009003,0.249838,0,0);-webkit-transform:matrix(0.310104,-0.011175,0.009003,0.249838,0,0);}
.m27_c00184{transform:matrix(0.311353,-0.011220,0.009003,0.249838,0,0);-ms-transform:matrix(0.311353,-0.011220,0.009003,0.249838,0,0);-webkit-transform:matrix(0.311353,-0.011220,0.009003,0.249838,0,0);}
.md_c00184{transform:matrix(0.314631,-0.011338,0.009003,0.249838,0,0);-ms-transform:matrix(0.314631,-0.011338,0.009003,0.249838,0,0);-webkit-transform:matrix(0.314631,-0.011338,0.009003,0.249838,0,0);}
.m30_c00184{transform:matrix(0.319373,-0.011509,0.009003,0.249838,0,0);-ms-transform:matrix(0.319373,-0.011509,0.009003,0.249838,0,0);-webkit-transform:matrix(0.319373,-0.011509,0.009003,0.249838,0,0);}
.m31_c00184{transform:matrix(0.326843,-0.011778,0.009003,0.249838,0,0);-ms-transform:matrix(0.326843,-0.011778,0.009003,0.249838,0,0);-webkit-transform:matrix(0.326843,-0.011778,0.009003,0.249838,0,0);}
.m9_c00184{transform:matrix(0.337181,-0.012151,0.009003,0.249838,0,0);-ms-transform:matrix(0.337181,-0.012151,0.009003,0.249838,0,0);-webkit-transform:matrix(0.337181,-0.012151,0.009003,0.249838,0,0);}
.m4_c00184{transform:matrix(0.338219,-0.011511,0.008504,0.249855,0,0);-ms-transform:matrix(0.338219,-0.011511,0.008504,0.249855,0,0);-webkit-transform:matrix(0.338219,-0.011511,0.008504,0.249855,0,0);}
.m2f_c00184{transform:matrix(0.341668,-0.012312,0.009003,0.249838,0,0);-ms-transform:matrix(0.341668,-0.012312,0.009003,0.249838,0,0);-webkit-transform:matrix(0.341668,-0.012312,0.009003,0.249838,0,0);}
.m24_c00184{transform:matrix(0.342123,-0.012329,0.009003,0.249838,0,0);-ms-transform:matrix(0.342123,-0.012329,0.009003,0.249838,0,0);-webkit-transform:matrix(0.342123,-0.012329,0.009003,0.249838,0,0);}
.m29_c00184{transform:matrix(0.347095,-0.012508,0.009003,0.249838,0,0);-ms-transform:matrix(0.347095,-0.012508,0.009003,0.249838,0,0);-webkit-transform:matrix(0.347095,-0.012508,0.009003,0.249838,0,0);}
.m15_c00184{transform:matrix(0.355444,-0.012809,0.009003,0.249838,0,0);-ms-transform:matrix(0.355444,-0.012809,0.009003,0.249838,0,0);-webkit-transform:matrix(0.355444,-0.012809,0.009003,0.249838,0,0);}
.m6_c00184{transform:matrix(0.362590,-0.012340,0.008504,0.249855,0,0);-ms-transform:matrix(0.362590,-0.012340,0.008504,0.249855,0,0);-webkit-transform:matrix(0.362590,-0.012340,0.008504,0.249855,0,0);}
.m1e_c00184{transform:matrix(0.387389,-0.013960,0.009003,0.249838,0,0);-ms-transform:matrix(0.387389,-0.013960,0.009003,0.249838,0,0);-webkit-transform:matrix(0.387389,-0.013960,0.009003,0.249838,0,0);}
.m45_c00184{transform:matrix(0.392100,-0.014130,0.009003,0.249838,0,0);-ms-transform:matrix(0.392100,-0.014130,0.009003,0.249838,0,0);-webkit-transform:matrix(0.392100,-0.014130,0.009003,0.249838,0,0);}
.m12_c00184{transform:matrix(0.401479,-0.014468,0.009003,0.249838,0,0);-ms-transform:matrix(0.401479,-0.014468,0.009003,0.249838,0,0);-webkit-transform:matrix(0.401479,-0.014468,0.009003,0.249838,0,0);}
.m37_c00184{transform:matrix(0.401574,-0.014471,0.009003,0.249838,0,0);-ms-transform:matrix(0.401574,-0.014471,0.009003,0.249838,0,0);-webkit-transform:matrix(0.401574,-0.014471,0.009003,0.249838,0,0);}
.m2e_c00184{transform:matrix(0.403368,-0.014536,0.009003,0.249838,0,0);-ms-transform:matrix(0.403368,-0.014536,0.009003,0.249838,0,0);-webkit-transform:matrix(0.403368,-0.014536,0.009003,0.249838,0,0);}
.m44_c00184{transform:matrix(0.410109,-0.014779,0.009003,0.249838,0,0);-ms-transform:matrix(0.410109,-0.014779,0.009003,0.249838,0,0);-webkit-transform:matrix(0.410109,-0.014779,0.009003,0.249838,0,0);}
.m36_c00184{transform:matrix(0.413042,-0.014884,0.009003,0.249838,0,0);-ms-transform:matrix(0.413042,-0.014884,0.009003,0.249838,0,0);-webkit-transform:matrix(0.413042,-0.014884,0.009003,0.249838,0,0);}
.m5_c00184{transform:matrix(0.417373,-0.014205,0.008504,0.249855,0,0);-ms-transform:matrix(0.417373,-0.014205,0.008504,0.249855,0,0);-webkit-transform:matrix(0.417373,-0.014205,0.008504,0.249855,0,0);}
.m3a_c00184{transform:matrix(0.422476,-0.015224,0.009003,0.249838,0,0);-ms-transform:matrix(0.422476,-0.015224,0.009003,0.249838,0,0);-webkit-transform:matrix(0.422476,-0.015224,0.009003,0.249838,0,0);}
.me_c00184{transform:matrix(0.424195,-0.015286,0.009003,0.249838,0,0);-ms-transform:matrix(0.424195,-0.015286,0.009003,0.249838,0,0);-webkit-transform:matrix(0.424195,-0.015286,0.009003,0.249838,0,0);}
.m13_c00184{transform:matrix(0.427148,-0.015393,0.009003,0.249838,0,0);-ms-transform:matrix(0.427148,-0.015393,0.009003,0.249838,0,0);-webkit-transform:matrix(0.427148,-0.015393,0.009003,0.249838,0,0);}
.m11_c00184{transform:matrix(0.437636,-0.015771,0.009003,0.249838,0,0);-ms-transform:matrix(0.437636,-0.015771,0.009003,0.249838,0,0);-webkit-transform:matrix(0.437636,-0.015771,0.009003,0.249838,0,0);}
.m2a_c00184{transform:matrix(0.442213,-0.015936,0.009003,0.249838,0,0);-ms-transform:matrix(0.442213,-0.015936,0.009003,0.249838,0,0);-webkit-transform:matrix(0.442213,-0.015936,0.009003,0.249838,0,0);}
.m47_c00184{transform:matrix(0.449560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449560,0.000000,0.000000,0.250000,0,0);}
.m2c_c00184{transform:matrix(0.452646,-0.016312,0.009003,0.249838,0,0);-ms-transform:matrix(0.452646,-0.016312,0.009003,0.249838,0,0);-webkit-transform:matrix(0.452646,-0.016312,0.009003,0.249838,0,0);}
.m16_c00184{transform:matrix(0.481353,-0.017346,0.009003,0.249838,0,0);-ms-transform:matrix(0.481353,-0.017346,0.009003,0.249838,0,0);-webkit-transform:matrix(0.481353,-0.017346,0.009003,0.249838,0,0);}
.m20_c00184{transform:matrix(0.482387,-0.017383,0.009003,0.249838,0,0);-ms-transform:matrix(0.482387,-0.017383,0.009003,0.249838,0,0);-webkit-transform:matrix(0.482387,-0.017383,0.009003,0.249838,0,0);}
.mf_c00184{transform:matrix(0.520472,-0.018756,0.009003,0.249838,0,0);-ms-transform:matrix(0.520472,-0.018756,0.009003,0.249838,0,0);-webkit-transform:matrix(0.520472,-0.018756,0.009003,0.249838,0,0);}
.m17_c00184{transform:matrix(0.536002,-0.019315,0.009003,0.249838,0,0);-ms-transform:matrix(0.536002,-0.019315,0.009003,0.249838,0,0);-webkit-transform:matrix(0.536002,-0.019315,0.009003,0.249838,0,0);}
.m46_c00184{transform:matrix(0.544665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544665,0.000000,0.000000,0.250000,0,0);}
.m32_c00184{transform:matrix(0.597527,-0.021533,0.009003,0.249838,0,0);-ms-transform:matrix(0.597527,-0.021533,0.009003,0.249838,0,0);-webkit-transform:matrix(0.597527,-0.021533,0.009003,0.249838,0,0);}
.m18_c00184{transform:matrix(0.612932,-0.022088,0.009003,0.249838,0,0);-ms-transform:matrix(0.612932,-0.022088,0.009003,0.249838,0,0);-webkit-transform:matrix(0.612932,-0.022088,0.009003,0.249838,0,0);}
.m39_c00184{transform:matrix(0.618608,-0.022292,0.009003,0.249838,0,0);-ms-transform:matrix(0.618608,-0.022292,0.009003,0.249838,0,0);-webkit-transform:matrix(0.618608,-0.022292,0.009003,0.249838,0,0);}
.m22_c00184{transform:matrix(0.624899,-0.022519,0.009003,0.249838,0,0);-ms-transform:matrix(0.624899,-0.022519,0.009003,0.249838,0,0);-webkit-transform:matrix(0.624899,-0.022519,0.009003,0.249838,0,0);}
.m34_c00184{transform:matrix(0.647979,-0.023351,0.009003,0.249838,0,0);-ms-transform:matrix(0.647979,-0.023351,0.009003,0.249838,0,0);-webkit-transform:matrix(0.647979,-0.023351,0.009003,0.249838,0,0);}
.m7_c00184{transform:matrix(0.674275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.674275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.674275,0.000000,0.000000,0.250000,0,0);}
.m1f_c00184{transform:matrix(0.680573,-0.024525,0.009003,0.249838,0,0);-ms-transform:matrix(0.680573,-0.024525,0.009003,0.249838,0,0);-webkit-transform:matrix(0.680573,-0.024525,0.009003,0.249838,0,0);}
.m3d_c00184{transform:matrix(0.705587,-0.025427,0.009003,0.249838,0,0);-ms-transform:matrix(0.705587,-0.025427,0.009003,0.249838,0,0);-webkit-transform:matrix(0.705587,-0.025427,0.009003,0.249838,0,0);}
.m0_c00184{transform:matrix(0.756765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.756765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.756765,0.000000,0.000000,0.250000,0,0);}
.m33_c00184{transform:matrix(0.801310,-0.028876,0.009003,0.249838,0,0);-ms-transform:matrix(0.801310,-0.028876,0.009003,0.249838,0,0);-webkit-transform:matrix(0.801310,-0.028876,0.009003,0.249838,0,0);}
.m3_c00184{transform:matrix(0.807108,-0.027469,0.008504,0.249855,0,0);-ms-transform:matrix(0.807108,-0.027469,0.008504,0.249855,0,0);-webkit-transform:matrix(0.807108,-0.027469,0.008504,0.249855,0,0);}
.m3b_c00184{transform:matrix(1.187814,-0.042804,0.009003,0.249838,0,0);-ms-transform:matrix(1.187814,-0.042804,0.009003,0.249838,0,0);-webkit-transform:matrix(1.187814,-0.042804,0.009003,0.249838,0,0);}
.mc_c00184{transform:matrix(1.221667,-0.044024,0.009003,0.249838,0,0);-ms-transform:matrix(1.221667,-0.044024,0.009003,0.249838,0,0);-webkit-transform:matrix(1.221667,-0.044024,0.009003,0.249838,0,0);}
.m19_c00184{transform:matrix(1.599707,-0.057647,0.009003,0.249838,0,0);-ms-transform:matrix(1.599707,-0.057647,0.009003,0.249838,0,0);-webkit-transform:matrix(1.599707,-0.057647,0.009003,0.249838,0,0);}
.m1a_c00184{transform:matrix(2.554202,-0.092043,0.009003,0.249838,0,0);-ms-transform:matrix(2.554202,-0.092043,0.009003,0.249838,0,0);-webkit-transform:matrix(2.554202,-0.092043,0.009003,0.249838,0,0);}
.v0_c00184{vertical-align:0.000000px;}
.ls0_c00184{letter-spacing:0.000000px;}
.sc__c00184{text-shadow:none;}
.sc0_c00184{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__c00184{-webkit-text-stroke:0px transparent;}
.sc0_c00184{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00184{word-spacing:0.000000px;}
.fc0_c00184{color:transparent;}
.fsa_c00184{font-size:12.000000px;}
.fs1_c00184{font-size:23.989882px;}
.fs0_c00184{font-size:24.000000px;}
.fs2_c00184{font-size:30.000000px;}
.fs7_c00184{font-size:71.974688px;}
.fs5_c00184{font-size:89.968359px;}
.fs6_c00184{font-size:95.966250px;}
.fs9_c00184{font-size:101.964141px;}
.fs3_c00184{font-size:107.962031px;}
.fs8_c00184{font-size:311.890313px;}
.fs4_c00184{font-size:389.862891px;}
.y0_c00184{bottom:0.000000px;}
.y3b_c00184{bottom:66.598227px;}
.y3c_c00184{bottom:69.549016px;}
.y3d_c00184{bottom:71.815396px;}
.y3e_c00184{bottom:72.770657px;}
.y3f_c00184{bottom:74.130498px;}
.y40_c00184{bottom:75.168715px;}
.y41_c00184{bottom:77.608381px;}
.y42_c00184{bottom:78.419880px;}
.y43_c00184{bottom:81.609903px;}
.y44_c00184{bottom:82.931269px;}
.y34_c00184{bottom:141.645051px;}
.y35_c00184{bottom:142.268589px;}
.y36_c00184{bottom:145.752818px;}
.y37_c00184{bottom:147.431637px;}
.y38_c00184{bottom:149.652697px;}
.y39_c00184{bottom:151.412071px;}
.y3a_c00184{bottom:152.718183px;}
.y2c_c00184{bottom:208.826343px;}
.y2d_c00184{bottom:213.960069px;}
.y2e_c00184{bottom:215.708535px;}
.y2f_c00184{bottom:219.390039px;}
.y30_c00184{bottom:220.839075px;}
.y31_c00184{bottom:225.199845px;}
.y32_c00184{bottom:228.755043px;}
.y33_c00184{bottom:230.231511px;}
.y24_c00184{bottom:241.809718px;}
.y25_c00184{bottom:242.813457px;}
.y26_c00184{bottom:249.871527px;}
.y27_c00184{bottom:252.514921px;}
.y28_c00184{bottom:254.505550px;}
.y29_c00184{bottom:257.747049px;}
.y2a_c00184{bottom:266.758852px;}
.y2b_c00184{bottom:268.815510px;}
.y21_c00184{bottom:286.604487px;}
.y22_c00184{bottom:296.686179px;}
.y23_c00184{bottom:298.539567px;}
.y1a_c00184{bottom:312.790613px;}
.y1b_c00184{bottom:318.605710px;}
.y1c_c00184{bottom:320.726452px;}
.y1d_c00184{bottom:324.459958px;}
.y1e_c00184{bottom:331.320983px;}
.y1f_c00184{bottom:335.813944px;}
.y20_c00184{bottom:344.867746px;}
.y18_c00184{bottom:366.351687px;}
.y19_c00184{bottom:370.261274px;}
.yf_c00184{bottom:395.345353px;}
.y10_c00184{bottom:396.000995px;}
.y11_c00184{bottom:397.303663px;}
.y12_c00184{bottom:398.451082px;}
.y13_c00184{bottom:401.613430px;}
.y14_c00184{bottom:402.534279px;}
.y15_c00184{bottom:406.645137px;}
.y16_c00184{bottom:411.249177px;}
.y17_c00184{bottom:415.184765px;}
.yc_c00184{bottom:570.847203px;}
.yd_c00184{bottom:579.965170px;}
.ye_c00184{bottom:587.476233px;}
.y7_c00184{bottom:609.552000px;}
.y8_c00184{bottom:613.766970px;}
.y9_c00184{bottom:621.038772px;}
.ya_c00184{bottom:623.680884px;}
.yb_c00184{bottom:628.088202px;}
.y46_c00184{bottom:670.276500px;}
.y2_c00184{bottom:675.817500px;}
.y6_c00184{bottom:677.019000px;}
.y45_c00184{bottom:677.160000px;}
.y3_c00184{bottom:677.459139px;}
.y4_c00184{bottom:679.258011px;}
.y1_c00184{bottom:679.725000px;}
.y5_c00184{bottom:680.036628px;}
.hb_c00184{height:12.000000px;}
.h2_c00184{height:23.989882px;}
.h1_c00184{height:24.000000px;}
.h3_c00184{height:30.000000px;}
.h8_c00184{height:71.974688px;}
.h6_c00184{height:89.968359px;}
.h7_c00184{height:95.966250px;}
.ha_c00184{height:101.964141px;}
.h4_c00184{height:107.962031px;}
.h9_c00184{height:311.890313px;}
.h5_c00184{height:389.862891px;}
.h0_c00184{height:682.500000px;}
.w0_c00184{width:924.450000px;}
.w1_c00184{width:924.750000px;}
.x0_c00184{left:0.000000px;}
.x30_c00184{left:5.524526px;}
.x11_c00184{left:6.951314px;}
.xe_c00184{left:17.254864px;}
.x12_c00184{left:34.222299px;}
.x22_c00184{left:36.567627px;}
.x36_c00184{left:38.153810px;}
.x1_c00184{left:66.690000px;}
.x13_c00184{left:88.441985px;}
.x2_c00184{left:94.230000px;}
.x3_c00184{left:113.670000px;}
.x29_c00184{left:131.861346px;}
.x14_c00184{left:136.188339px;}
.x1b_c00184{left:168.564417px;}
.x37_c00184{left:193.195086px;}
.x31_c00184{left:200.749565px;}
.x9_c00184{left:210.682500px;}
.x1c_c00184{left:227.415008px;}
.x23_c00184{left:243.920985px;}
.x15_c00184{left:267.746015px;}
.x2a_c00184{left:274.322243px;}
.x32_c00184{left:280.521794px;}
.x1a_c00184{left:294.675990px;}
.x16_c00184{left:306.082235px;}
.x38_c00184{left:312.214313px;}
.x24_c00184{left:321.563832px;}
.x2b_c00184{left:322.842174px;}
.xa_c00184{left:327.647917px;}
.xf_c00184{left:331.277217px;}
.x39_c00184{left:362.372807px;}
.x25_c00184{left:380.051502px;}
.x33_c00184{left:386.083653px;}
.x2c_c00184{left:425.003910px;}
.x3a_c00184{left:433.793045px;}
.x8_c00184{left:437.400000px;}
.x2d_c00184{left:465.214659px;}
.x34_c00184{left:469.715127px;}
.x26_c00184{left:475.291032px;}
.x17_c00184{left:477.118473px;}
.x20_c00184{left:486.604100px;}
.x3b_c00184{left:488.293841px;}
.x1d_c00184{left:521.413215px;}
.xb_c00184{left:529.440423px;}
.x35_c00184{left:531.816531px;}
.x4_c00184{left:552.901500px;}
.x21_c00184{left:574.676507px;}
.x2e_c00184{left:586.226027px;}
.x10_c00184{left:589.965513px;}
.x5_c00184{left:601.136717px;}
.xc_c00184{left:602.759031px;}
.x3c_c00184{left:616.452041px;}
.x1e_c00184{left:646.092911px;}
.x6_c00184{left:653.991809px;}
.x3d_c00184{left:659.081976px;}
.x18_c00184{left:668.669042px;}
.x7_c00184{left:676.869408px;}
.x2f_c00184{left:684.882771px;}
.xd_c00184{left:725.062105px;}
.x27_c00184{left:740.066573px;}
.x28_c00184{left:800.511446px;}
.x3e_c00184{left:826.632852px;}
.x19_c00184{left:832.384919px;}
.x3f_c00184{left:896.069387px;}
.x1f_c00184{left:897.335916px;}
@media print{
.v0_c00184{vertical-align:0.000000pt;}
.ls0_c00184{letter-spacing:0.000000pt;}
.ws0_c00184{word-spacing:0.000000pt;}
.fsa_c00184{font-size:10.666667pt;}
.fs1_c00184{font-size:21.324339pt;}
.fs0_c00184{font-size:21.333333pt;}
.fs2_c00184{font-size:26.666667pt;}
.fs7_c00184{font-size:63.977500pt;}
.fs5_c00184{font-size:79.971875pt;}
.fs6_c00184{font-size:85.303333pt;}
.fs9_c00184{font-size:90.634792pt;}
.fs3_c00184{font-size:95.966250pt;}
.fs8_c00184{font-size:277.235834pt;}
.fs4_c00184{font-size:346.544792pt;}
.y0_c00184{bottom:0.000000pt;}
.y3b_c00184{bottom:59.198424pt;}
.y3c_c00184{bottom:61.821348pt;}
.y3d_c00184{bottom:63.835908pt;}
.y3e_c00184{bottom:64.685028pt;}
.y3f_c00184{bottom:65.893776pt;}
.y40_c00184{bottom:66.816636pt;}
.y41_c00184{bottom:68.985228pt;}
.y42_c00184{bottom:69.706560pt;}
.y43_c00184{bottom:72.542136pt;}
.y44_c00184{bottom:73.716684pt;}
.y34_c00184{bottom:125.906712pt;}
.y35_c00184{bottom:126.460968pt;}
.y36_c00184{bottom:129.558060pt;}
.y37_c00184{bottom:131.050344pt;}
.y38_c00184{bottom:133.024620pt;}
.y39_c00184{bottom:134.588508pt;}
.y3a_c00184{bottom:135.749496pt;}
.y2c_c00184{bottom:185.623416pt;}
.y2d_c00184{bottom:190.186728pt;}
.y2e_c00184{bottom:191.740920pt;}
.y2f_c00184{bottom:195.013368pt;}
.y30_c00184{bottom:196.301400pt;}
.y31_c00184{bottom:200.177640pt;}
.y32_c00184{bottom:203.337816pt;}
.y33_c00184{bottom:204.650232pt;}
.y24_c00184{bottom:214.941972pt;}
.y25_c00184{bottom:215.834184pt;}
.y26_c00184{bottom:222.108024pt;}
.y27_c00184{bottom:224.457708pt;}
.y28_c00184{bottom:226.227156pt;}
.y29_c00184{bottom:229.108488pt;}
.y2a_c00184{bottom:237.118980pt;}
.y2b_c00184{bottom:238.947120pt;}
.y21_c00184{bottom:254.759544pt;}
.y22_c00184{bottom:263.721048pt;}
.y23_c00184{bottom:265.368504pt;}
.y1a_c00184{bottom:278.036100pt;}
.y1b_c00184{bottom:283.205076pt;}
.y1c_c00184{bottom:285.090180pt;}
.y1d_c00184{bottom:288.408852pt;}
.y1e_c00184{bottom:294.507540pt;}
.y1f_c00184{bottom:298.501284pt;}
.y20_c00184{bottom:306.549108pt;}
.y18_c00184{bottom:325.645944pt;}
.y19_c00184{bottom:329.121132pt;}
.yf_c00184{bottom:351.418092pt;}
.y10_c00184{bottom:352.000884pt;}
.y11_c00184{bottom:353.158812pt;}
.y12_c00184{bottom:354.178740pt;}
.y13_c00184{bottom:356.989716pt;}
.y14_c00184{bottom:357.808248pt;}
.y15_c00184{bottom:361.462344pt;}
.y16_c00184{bottom:365.554824pt;}
.y17_c00184{bottom:369.053124pt;}
.yc_c00184{bottom:507.419736pt;}
.yd_c00184{bottom:515.524596pt;}
.ye_c00184{bottom:522.201096pt;}
.y7_c00184{bottom:541.824000pt;}
.y8_c00184{bottom:545.570640pt;}
.y9_c00184{bottom:552.034464pt;}
.ya_c00184{bottom:554.383008pt;}
.yb_c00184{bottom:558.300624pt;}
.y46_c00184{bottom:595.801333pt;}
.y2_c00184{bottom:600.726667pt;}
.y6_c00184{bottom:601.794667pt;}
.y45_c00184{bottom:601.920000pt;}
.y3_c00184{bottom:602.185901pt;}
.y4_c00184{bottom:603.784899pt;}
.y1_c00184{bottom:604.200000pt;}
.y5_c00184{bottom:604.477003pt;}
.hb_c00184{height:10.666667pt;}
.h2_c00184{height:21.324339pt;}
.h1_c00184{height:21.333333pt;}
.h3_c00184{height:26.666667pt;}
.h8_c00184{height:63.977500pt;}
.h6_c00184{height:79.971875pt;}
.h7_c00184{height:85.303333pt;}
.ha_c00184{height:90.634792pt;}
.h4_c00184{height:95.966250pt;}
.h9_c00184{height:277.235834pt;}
.h5_c00184{height:346.544792pt;}
.h0_c00184{height:606.666667pt;}
.w0_c00184{width:821.733333pt;}
.w1_c00184{width:822.000000pt;}
.x0_c00184{left:0.000000pt;}
.x30_c00184{left:4.910689pt;}
.x11_c00184{left:6.178945pt;}
.xe_c00184{left:15.337657pt;}
.x12_c00184{left:30.419821pt;}
.x22_c00184{left:32.504557pt;}
.x36_c00184{left:33.914497pt;}
.x1_c00184{left:59.280000pt;}
.x13_c00184{left:78.615097pt;}
.x2_c00184{left:83.760000pt;}
.x3_c00184{left:101.040000pt;}
.x29_c00184{left:117.210085pt;}
.x14_c00184{left:121.056301pt;}
.x1b_c00184{left:149.835037pt;}
.x37_c00184{left:171.728965pt;}
.x31_c00184{left:178.444057pt;}
.x9_c00184{left:187.273333pt;}
.x1c_c00184{left:202.146673pt;}
.x23_c00184{left:216.818653pt;}
.x15_c00184{left:237.996457pt;}
.x2a_c00184{left:243.841993pt;}
.x32_c00184{left:249.352705pt;}
.x1a_c00184{left:261.934213pt;}
.x16_c00184{left:272.073097pt;}
.x38_c00184{left:277.523833pt;}
.x24_c00184{left:285.834517pt;}
.x2b_c00184{left:286.970821pt;}
.xa_c00184{left:291.242593pt;}
.xf_c00184{left:294.468637pt;}
.x39_c00184{left:322.109161pt;}
.x25_c00184{left:337.823557pt;}
.x33_c00184{left:343.185469pt;}
.x2c_c00184{left:377.781253pt;}
.x3a_c00184{left:385.593817pt;}
.x8_c00184{left:388.800000pt;}
.x2d_c00184{left:413.524141pt;}
.x34_c00184{left:417.524557pt;}
.x26_c00184{left:422.480917pt;}
.x17_c00184{left:424.105309pt;}
.x20_c00184{left:432.536977pt;}
.x3b_c00184{left:434.038969pt;}
.x1d_c00184{left:463.478413pt;}
.xb_c00184{left:470.613709pt;}
.x35_c00184{left:472.725805pt;}
.x4_c00184{left:491.468000pt;}
.x21_c00184{left:510.823561pt;}
.x2e_c00184{left:521.089801pt;}
.x10_c00184{left:524.413789pt;}
.x5_c00184{left:534.343748pt;}
.xc_c00184{left:535.785805pt;}
.x3c_c00184{left:547.957369pt;}
.x1e_c00184{left:574.304809pt;}
.x6_c00184{left:581.326052pt;}
.x3d_c00184{left:585.850645pt;}
.x18_c00184{left:594.372481pt;}
.x7_c00184{left:601.661696pt;}
.x2f_c00184{left:608.784685pt;}
.xd_c00184{left:644.499649pt;}
.x27_c00184{left:657.836953pt;}
.x28_c00184{left:711.565729pt;}
.x3e_c00184{left:734.784757pt;}
.x19_c00184{left:739.897705pt;}
.x3f_c00184{left:796.506121pt;}
.x1f_c00184{left:797.631925pt;}
}





/* 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_c00185 {
    display:none;
  }
  .loading-indicator_c00185.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00185 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_c00185 { 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_c00185" -> "#page-container .classname_c00185")
 */
.pf_c00185 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00185 { /* 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_c00185.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00185 { /* 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_c00185 { /* 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_c00185 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00185 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00185 {overflow:visible;}
  }
}
.c_c00185 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00185 { /* 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_c00185:after { /* webkit #35443 */
  content: '';
}
.t_c00185:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00185 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 */
}
.__c00185 { /* 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_c00185 { /* info for Javascript */
  display:none;
}
.l_c00185 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00185 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00185 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00185: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_c00185 {
    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_c00185.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00185.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_c00185 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00185{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00185;src:url('chunks/assets/font_74d7e987f08e4505b74f4479.woff2')format("woff");}.ff1_c00185{font-family:ff1_c00185;line-height:1.000000;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;}
.m0_c00185{transform:matrix(0.006470,-0.000026,0.001000,0.249998,0,0);-ms-transform:matrix(0.006470,-0.000026,0.001000,0.249998,0,0);-webkit-transform:matrix(0.006470,-0.000026,0.001000,0.249998,0,0);}
.m7_c00185{transform:matrix(0.078469,-0.000314,0.001000,0.249998,0,0);-ms-transform:matrix(0.078469,-0.000314,0.001000,0.249998,0,0);-webkit-transform:matrix(0.078469,-0.000314,0.001000,0.249998,0,0);}
.m3_c00185{transform:matrix(0.091679,-0.000367,0.001000,0.249998,0,0);-ms-transform:matrix(0.091679,-0.000367,0.001000,0.249998,0,0);-webkit-transform:matrix(0.091679,-0.000367,0.001000,0.249998,0,0);}
.m31_c00185{transform:matrix(0.097366,0.000876,-0.002250,0.249990,0,0);-ms-transform:matrix(0.097366,0.000876,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.097366,0.000876,-0.002250,0.249990,0,0);}
.m2_c00185{transform:matrix(0.152039,-0.000608,0.001000,0.249998,0,0);-ms-transform:matrix(0.152039,-0.000608,0.001000,0.249998,0,0);-webkit-transform:matrix(0.152039,-0.000608,0.001000,0.249998,0,0);}
.m46_c00185{transform:matrix(0.160482,0.001605,-0.002500,0.249988,0,0);-ms-transform:matrix(0.160482,0.001605,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.160482,0.001605,-0.002500,0.249988,0,0);}
.m13_c00185{transform:matrix(0.168249,-0.000673,0.001000,0.249998,0,0);-ms-transform:matrix(0.168249,-0.000673,0.001000,0.249998,0,0);-webkit-transform:matrix(0.168249,-0.000673,0.001000,0.249998,0,0);}
.m15_c00185{transform:matrix(0.180280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180280,0.000000,0.000000,0.250000,0,0);}
.m8_c00185{transform:matrix(0.199778,-0.000799,0.001000,0.249998,0,0);-ms-transform:matrix(0.199778,-0.000799,0.001000,0.249998,0,0);-webkit-transform:matrix(0.199778,-0.000799,0.001000,0.249998,0,0);}
.mc_c00185{transform:matrix(0.250813,-0.001003,0.001000,0.249998,0,0);-ms-transform:matrix(0.250813,-0.001003,0.001000,0.249998,0,0);-webkit-transform:matrix(0.250813,-0.001003,0.001000,0.249998,0,0);}
.m28_c00185{transform:matrix(0.252090,0.001513,-0.001500,0.249996,0,0);-ms-transform:matrix(0.252090,0.001513,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.252090,0.001513,-0.001500,0.249996,0,0);}
.m1_c00185{transform:matrix(0.257248,-0.001029,0.001000,0.249998,0,0);-ms-transform:matrix(0.257248,-0.001029,0.001000,0.249998,0,0);-webkit-transform:matrix(0.257248,-0.001029,0.001000,0.249998,0,0);}
.m29_c00185{transform:matrix(0.304290,0.001826,-0.001500,0.249996,0,0);-ms-transform:matrix(0.304290,0.001826,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.304290,0.001826,-0.001500,0.249996,0,0);}
.m19_c00185{transform:matrix(0.346804,0.002081,-0.001500,0.249996,0,0);-ms-transform:matrix(0.346804,0.002081,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.346804,0.002081,-0.001500,0.249996,0,0);}
.m33_c00185{transform:matrix(0.353486,0.003181,-0.002250,0.249990,0,0);-ms-transform:matrix(0.353486,0.003181,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.353486,0.003181,-0.002250,0.249990,0,0);}
.m21_c00185{transform:matrix(0.361908,0.002171,-0.001500,0.249996,0,0);-ms-transform:matrix(0.361908,0.002171,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.361908,0.002171,-0.001500,0.249996,0,0);}
.m1b_c00185{transform:matrix(0.369883,0.002219,-0.001500,0.249996,0,0);-ms-transform:matrix(0.369883,0.002219,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.369883,0.002219,-0.001500,0.249996,0,0);}
.m24_c00185{transform:matrix(0.381883,0.002291,-0.001500,0.249996,0,0);-ms-transform:matrix(0.381883,0.002291,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.381883,0.002291,-0.001500,0.249996,0,0);}
.m10_c00185{transform:matrix(0.387542,-0.001550,0.001000,0.249998,0,0);-ms-transform:matrix(0.387542,-0.001550,0.001000,0.249998,0,0);-webkit-transform:matrix(0.387542,-0.001550,0.001000,0.249998,0,0);}
.m17_c00185{transform:matrix(0.391150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391150,0.000000,0.000000,0.250000,0,0);}
.m2f_c00185{transform:matrix(0.406065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406065,0.000000,0.000000,0.250000,0,0);}
.m1d_c00185{transform:matrix(0.411503,0.002469,-0.001500,0.249996,0,0);-ms-transform:matrix(0.411503,0.002469,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.411503,0.002469,-0.001500,0.249996,0,0);}
.m5_c00185{transform:matrix(0.414077,-0.001656,0.001000,0.249998,0,0);-ms-transform:matrix(0.414077,-0.001656,0.001000,0.249998,0,0);-webkit-transform:matrix(0.414077,-0.001656,0.001000,0.249998,0,0);}
.m14_c00185{transform:matrix(0.422772,-0.001691,0.001000,0.249998,0,0);-ms-transform:matrix(0.422772,-0.001691,0.001000,0.249998,0,0);-webkit-transform:matrix(0.422772,-0.001691,0.001000,0.249998,0,0);}
.m45_c00185{transform:matrix(0.425039,0.004250,-0.002500,0.249988,0,0);-ms-transform:matrix(0.425039,0.004250,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.425039,0.004250,-0.002500,0.249988,0,0);}
.m2e_c00185{transform:matrix(0.428765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428765,0.000000,0.000000,0.250000,0,0);}
.m4_c00185{transform:matrix(0.431162,-0.001725,0.001000,0.249998,0,0);-ms-transform:matrix(0.431162,-0.001725,0.001000,0.249998,0,0);-webkit-transform:matrix(0.431162,-0.001725,0.001000,0.249998,0,0);}
.m2c_c00185{transform:matrix(0.458752,0.002753,-0.001500,0.249996,0,0);-ms-transform:matrix(0.458752,0.002753,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.458752,0.002753,-0.001500,0.249996,0,0);}
.m36_c00185{transform:matrix(0.471421,0.004243,-0.002250,0.249990,0,0);-ms-transform:matrix(0.471421,0.004243,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.471421,0.004243,-0.002250,0.249990,0,0);}
.m16_c00185{transform:matrix(0.471700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471700,0.000000,0.000000,0.250000,0,0);}
.m12_c00185{transform:matrix(0.504621,-0.002018,0.001000,0.249998,0,0);-ms-transform:matrix(0.504621,-0.002018,0.001000,0.249998,0,0);-webkit-transform:matrix(0.504621,-0.002018,0.001000,0.249998,0,0);}
.m3d_c00185{transform:matrix(0.518072,-0.003627,0.001750,0.249994,0,0);-ms-transform:matrix(0.518072,-0.003627,0.001750,0.249994,0,0);-webkit-transform:matrix(0.518072,-0.003627,0.001750,0.249994,0,0);}
.m48_c00185{transform:matrix(0.529320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.529320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.529320,0.000000,0.000000,0.250000,0,0);}
.m1a_c00185{transform:matrix(0.536665,0.003220,-0.001500,0.249996,0,0);-ms-transform:matrix(0.536665,0.003220,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.536665,0.003220,-0.001500,0.249996,0,0);}
.m4b_c00185{transform:matrix(0.540375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540375,0.000000,0.000000,0.250000,0,0);}
.m34_c00185{transform:matrix(0.602771,0.005425,-0.002250,0.249990,0,0);-ms-transform:matrix(0.602771,0.005425,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.602771,0.005425,-0.002250,0.249990,0,0);}
.m11_c00185{transform:matrix(0.605995,-0.002424,0.001000,0.249998,0,0);-ms-transform:matrix(0.605995,-0.002424,0.001000,0.249998,0,0);-webkit-transform:matrix(0.605995,-0.002424,0.001000,0.249998,0,0);}
.m32_c00185{transform:matrix(0.622840,0.005606,-0.002250,0.249990,0,0);-ms-transform:matrix(0.622840,0.005606,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.622840,0.005606,-0.002250,0.249990,0,0);}
.m35_c00185{transform:matrix(0.625580,0.005630,-0.002250,0.249990,0,0);-ms-transform:matrix(0.625580,0.005630,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.625580,0.005630,-0.002250,0.249990,0,0);}
.m2d_c00185{transform:matrix(0.641308,0.003848,-0.001500,0.249996,0,0);-ms-transform:matrix(0.641308,0.003848,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.641308,0.003848,-0.001500,0.249996,0,0);}
.m39_c00185{transform:matrix(0.653949,0.005886,-0.002250,0.249990,0,0);-ms-transform:matrix(0.653949,0.005886,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.653949,0.005886,-0.002250,0.249990,0,0);}
.m2b_c00185{transform:matrix(0.664748,0.003988,-0.001500,0.249996,0,0);-ms-transform:matrix(0.664748,0.003988,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.664748,0.003988,-0.001500,0.249996,0,0);}
.me_c00185{transform:matrix(0.669725,-0.002679,0.001000,0.249998,0,0);-ms-transform:matrix(0.669725,-0.002679,0.001000,0.249998,0,0);-webkit-transform:matrix(0.669725,-0.002679,0.001000,0.249998,0,0);}
.m47_c00185{transform:matrix(0.682640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.682640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.682640,0.000000,0.000000,0.250000,0,0);}
.m27_c00185{transform:matrix(0.691418,0.004149,-0.001500,0.249996,0,0);-ms-transform:matrix(0.691418,0.004149,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.691418,0.004149,-0.001500,0.249996,0,0);}
.m43_c00185{transform:matrix(0.699530,0.006995,-0.002500,0.249988,0,0);-ms-transform:matrix(0.699530,0.006995,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.699530,0.006995,-0.002500,0.249988,0,0);}
.m37_c00185{transform:matrix(0.704416,0.006340,-0.002250,0.249990,0,0);-ms-transform:matrix(0.704416,0.006340,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.704416,0.006340,-0.002250,0.249990,0,0);}
.m44_c00185{transform:matrix(0.706535,0.007065,-0.002500,0.249988,0,0);-ms-transform:matrix(0.706535,0.007065,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.706535,0.007065,-0.002500,0.249988,0,0);}
.m4d_c00185{transform:matrix(0.727870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727870,0.000000,0.000000,0.250000,0,0);}
.m1c_c00185{transform:matrix(0.730537,0.004383,-0.001500,0.249996,0,0);-ms-transform:matrix(0.730537,0.004383,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.730537,0.004383,-0.001500,0.249996,0,0);}
.mf_c00185{transform:matrix(0.738944,-0.002956,0.001000,0.249998,0,0);-ms-transform:matrix(0.738944,-0.002956,0.001000,0.249998,0,0);-webkit-transform:matrix(0.738944,-0.002956,0.001000,0.249998,0,0);}
.m3b_c00185{transform:matrix(0.744805,0.006703,-0.002250,0.249990,0,0);-ms-transform:matrix(0.744805,0.006703,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.744805,0.006703,-0.002250,0.249990,0,0);}
.m9_c00185{transform:matrix(0.752389,-0.003010,0.001000,0.249998,0,0);-ms-transform:matrix(0.752389,-0.003010,0.001000,0.249998,0,0);-webkit-transform:matrix(0.752389,-0.003010,0.001000,0.249998,0,0);}
.ma_c00185{transform:matrix(0.769579,-0.003078,0.001000,0.249998,0,0);-ms-transform:matrix(0.769579,-0.003078,0.001000,0.249998,0,0);-webkit-transform:matrix(0.769579,-0.003078,0.001000,0.249998,0,0);}
.m3f_c00185{transform:matrix(0.798580,-0.005590,0.001750,0.249994,0,0);-ms-transform:matrix(0.798580,-0.005590,0.001750,0.249994,0,0);-webkit-transform:matrix(0.798580,-0.005590,0.001750,0.249994,0,0);}
.md_c00185{transform:matrix(0.802329,-0.003209,0.001000,0.249998,0,0);-ms-transform:matrix(0.802329,-0.003209,0.001000,0.249998,0,0);-webkit-transform:matrix(0.802329,-0.003209,0.001000,0.249998,0,0);}
.mb_c00185{transform:matrix(0.831958,-0.003328,0.001000,0.249998,0,0);-ms-transform:matrix(0.831958,-0.003328,0.001000,0.249998,0,0);-webkit-transform:matrix(0.831958,-0.003328,0.001000,0.249998,0,0);}
.m49_c00185{transform:matrix(0.840745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.840745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.840745,0.000000,0.000000,0.250000,0,0);}
.m1f_c00185{transform:matrix(0.856085,0.005137,-0.001500,0.249996,0,0);-ms-transform:matrix(0.856085,0.005137,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.856085,0.005137,-0.001500,0.249996,0,0);}
.m4c_c00185{transform:matrix(0.902050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.902050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.902050,0.000000,0.000000,0.250000,0,0);}
.m2a_c00185{transform:matrix(0.913274,0.005480,-0.001500,0.249996,0,0);-ms-transform:matrix(0.913274,0.005480,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.913274,0.005480,-0.001500,0.249996,0,0);}
.m42_c00185{transform:matrix(0.920919,0.009209,-0.002500,0.249988,0,0);-ms-transform:matrix(0.920919,0.009209,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.920919,0.009209,-0.002500,0.249988,0,0);}
.m3c_c00185{transform:matrix(0.967116,-0.006770,0.001750,0.249994,0,0);-ms-transform:matrix(0.967116,-0.006770,0.001750,0.249994,0,0);-webkit-transform:matrix(0.967116,-0.006770,0.001750,0.249994,0,0);}
.m18_c00185{transform:matrix(0.979547,0.005877,-0.001500,0.249996,0,0);-ms-transform:matrix(0.979547,0.005877,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.979547,0.005877,-0.001500,0.249996,0,0);}
.m38_c00185{transform:matrix(0.995405,0.008959,-0.002250,0.249990,0,0);-ms-transform:matrix(0.995405,0.008959,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.995405,0.008959,-0.002250,0.249990,0,0);}
.m25_c00185{transform:matrix(1.136990,0.006822,-0.001500,0.249996,0,0);-ms-transform:matrix(1.136990,0.006822,-0.001500,0.249996,0,0);-webkit-transform:matrix(1.136990,0.006822,-0.001500,0.249996,0,0);}
.m4a_c00185{transform:matrix(1.184270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.184270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.184270,0.000000,0.000000,0.250000,0,0);}
.m23_c00185{transform:matrix(1.254517,0.007527,-0.001500,0.249996,0,0);-ms-transform:matrix(1.254517,0.007527,-0.001500,0.249996,0,0);-webkit-transform:matrix(1.254517,0.007527,-0.001500,0.249996,0,0);}
.m1e_c00185{transform:matrix(1.262902,0.007577,-0.001500,0.249996,0,0);-ms-transform:matrix(1.262902,0.007577,-0.001500,0.249996,0,0);-webkit-transform:matrix(1.262902,0.007577,-0.001500,0.249996,0,0);}
.m26_c00185{transform:matrix(1.457249,0.008743,-0.001500,0.249996,0,0);-ms-transform:matrix(1.457249,0.008743,-0.001500,0.249996,0,0);-webkit-transform:matrix(1.457249,0.008743,-0.001500,0.249996,0,0);}
.m41_c00185{transform:matrix(1.513263,-0.010593,0.001750,0.249994,0,0);-ms-transform:matrix(1.513263,-0.010593,0.001750,0.249994,0,0);-webkit-transform:matrix(1.513263,-0.010593,0.001750,0.249994,0,0);}
.m6_c00185{transform:matrix(1.692191,-0.006769,0.001000,0.249998,0,0);-ms-transform:matrix(1.692191,-0.006769,0.001000,0.249998,0,0);-webkit-transform:matrix(1.692191,-0.006769,0.001000,0.249998,0,0);}
.m3a_c00185{transform:matrix(2.049012,0.018441,-0.002250,0.249990,0,0);-ms-transform:matrix(2.049012,0.018441,-0.002250,0.249990,0,0);-webkit-transform:matrix(2.049012,0.018441,-0.002250,0.249990,0,0);}
.m3e_c00185{transform:matrix(2.159017,-0.015113,0.001750,0.249994,0,0);-ms-transform:matrix(2.159017,-0.015113,0.001750,0.249994,0,0);-webkit-transform:matrix(2.159017,-0.015113,0.001750,0.249994,0,0);}
.m30_c00185{transform:matrix(2.212555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.212555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.212555,0.000000,0.000000,0.250000,0,0);}
.m22_c00185{transform:matrix(2.267644,0.013606,-0.001500,0.249996,0,0);-ms-transform:matrix(2.267644,0.013606,-0.001500,0.249996,0,0);-webkit-transform:matrix(2.267644,0.013606,-0.001500,0.249996,0,0);}
.m20_c00185{transform:matrix(2.456476,0.014739,-0.001500,0.249996,0,0);-ms-transform:matrix(2.456476,0.014739,-0.001500,0.249996,0,0);-webkit-transform:matrix(2.456476,0.014739,-0.001500,0.249996,0,0);}
.m40_c00185{transform:matrix(2.488199,-0.017417,0.001750,0.249994,0,0);-ms-transform:matrix(2.488199,-0.017417,0.001750,0.249994,0,0);-webkit-transform:matrix(2.488199,-0.017417,0.001750,0.249994,0,0);}
.v0_c00185{vertical-align:0.000000px;}
.ls0_c00185{letter-spacing:0.000000px;}
.sc__c00185{text-shadow:none;}
.sc0_c00185{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__c00185{-webkit-text-stroke:0px transparent;}
.sc0_c00185{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00185{word-spacing:0.000000px;}
.fc0_c00185{color:transparent;}
.fs2_c00185{font-size:18.000000px;}
.fs1_c00185{font-size:42.000336px;}
.fs3_c00185{font-size:60.001080px;}
.fs7_c00185{font-size:72.001764px;}
.fs6_c00185{font-size:72.002916px;}
.fs4_c00185{font-size:84.001512px;}
.fs9_c00185{font-size:90.000000px;}
.fs0_c00185{font-size:132.001056px;}
.fs5_c00185{font-size:156.000000px;}
.fs8_c00185{font-size:234.011700px;}
.y0_c00185{bottom:0.000000px;}
.y45_c00185{bottom:143.971500px;}
.y44_c00185{bottom:155.482020px;}
.y43_c00185{bottom:156.783705px;}
.y42_c00185{bottom:158.139495px;}
.y41_c00185{bottom:160.268670px;}
.y40_c00185{bottom:164.433000px;}
.y3a_c00185{bottom:200.611500px;}
.y3b_c00185{bottom:201.429376px;}
.y3c_c00185{bottom:201.874177px;}
.y3d_c00185{bottom:203.453556px;}
.y3e_c00185{bottom:204.168753px;}
.y3f_c00185{bottom:206.107315px;}
.y39_c00185{bottom:246.682409px;}
.y38_c00185{bottom:248.067212px;}
.y37_c00185{bottom:248.364576px;}
.y36_c00185{bottom:250.238687px;}
.y35_c00185{bottom:251.304917px;}
.y34_c00185{bottom:251.770140px;}
.y33_c00185{bottom:252.690881px;}
.y32_c00185{bottom:252.962069px;}
.y31_c00185{bottom:253.276821px;}
.y30_c00185{bottom:253.894365px;}
.y2f_c00185{bottom:254.070000px;}
.y2e_c00185{bottom:280.497000px;}
.y2d_c00185{bottom:426.636924px;}
.y2c_c00185{bottom:428.172273px;}
.y2b_c00185{bottom:428.807403px;}
.y2a_c00185{bottom:429.910959px;}
.y29_c00185{bottom:430.310202px;}
.y28_c00185{bottom:430.669719px;}
.y27_c00185{bottom:431.640666px;}
.y26_c00185{bottom:432.743115px;}
.y25_c00185{bottom:433.540335px;}
.y24_c00185{bottom:433.622271px;}
.y23_c00185{bottom:464.212584px;}
.y22_c00185{bottom:464.838408px;}
.y21_c00185{bottom:465.189093px;}
.y20_c00185{bottom:466.056648px;}
.y1f_c00185{bottom:466.200585px;}
.y1e_c00185{bottom:466.932924px;}
.y1d_c00185{bottom:467.290377px;}
.y1c_c00185{bottom:467.747046px;}
.y1b_c00185{bottom:467.990091px;}
.y1a_c00185{bottom:468.349731px;}
.y19_c00185{bottom:468.519417px;}
.y18_c00185{bottom:468.990000px;}
.y17_c00185{bottom:493.747500px;}
.y16_c00185{bottom:505.450110px;}
.y15_c00185{bottom:505.871406px;}
.y14_c00185{bottom:506.134386px;}
.y13_c00185{bottom:506.381622px;}
.y12_c00185{bottom:506.612292px;}
.y11_c00185{bottom:506.893926px;}
.y10_c00185{bottom:507.399930px;}
.yf_c00185{bottom:507.662790px;}
.ye_c00185{bottom:507.851694px;}
.yd_c00185{bottom:508.401762px;}
.yc_c00185{bottom:508.782390px;}
.yb_c00185{bottom:509.094702px;}
.ya_c00185{bottom:509.242494px;}
.y9_c00185{bottom:509.354286px;}
.y8_c00185{bottom:509.902326px;}
.y7_c00185{bottom:510.030066px;}
.y1_c00185{bottom:513.810000px;}
.y2_c00185{bottom:515.194938px;}
.y3_c00185{bottom:515.372976px;}
.y4_c00185{bottom:515.749908px;}
.y5_c00185{bottom:516.169080px;}
.y6_c00185{bottom:516.622656px;}
.h3_c00185{height:18.000000px;}
.h2_c00185{height:42.000336px;}
.h4_c00185{height:60.001080px;}
.h8_c00185{height:72.001764px;}
.h7_c00185{height:72.002916px;}
.h5_c00185{height:84.001512px;}
.ha_c00185{height:90.000000px;}
.h1_c00185{height:132.001056px;}
.h6_c00185{height:156.000000px;}
.h9_c00185{height:234.011700px;}
.h0_c00185{height:682.500000px;}
.w0_c00185{width:924.450000px;}
.w1_c00185{width:924.750000px;}
.x0_c00185{left:0.000000px;}
.x2f_c00185{left:3.780000px;}
.x42_c00185{left:12.622500px;}
.x32_c00185{left:23.073000px;}
.x1a_c00185{left:24.186000px;}
.x3c_c00185{left:25.899000px;}
.x25_c00185{left:57.096486px;}
.x26_c00185{left:66.252324px;}
.x7_c00185{left:71.789406px;}
.x45_c00185{left:84.780000px;}
.x33_c00185{left:91.689000px;}
.x8_c00185{left:93.105258px;}
.x1b_c00185{left:102.616500px;}
.x1_c00185{left:116.383500px;}
.x34_c00185{left:126.661500px;}
.x1c_c00185{left:130.897500px;}
.x3d_c00185{left:142.738500px;}
.x30_c00185{left:144.180000px;}
.x27_c00185{left:154.870731px;}
.x35_c00185{left:156.793500px;}
.x17_c00185{left:182.520000px;}
.x9_c00185{left:184.473912px;}
.x1d_c00185{left:190.837500px;}
.x31_c00185{left:196.020000px;}
.xa_c00185{left:203.026656px;}
.x3e_c00185{left:206.281500px;}
.xb_c00185{left:227.579640px;}
.x1e_c00185{left:231.345000px;}
.x18_c00185{left:256.500000px;}
.x36_c00185{left:259.098000px;}
.x28_c00185{left:277.360026px;}
.xc_c00185{left:279.628722px;}
.x1f_c00185{left:307.456500px;}
.x37_c00185{left:310.789500px;}
.x46_c00185{left:333.450000px;}
.xd_c00185{left:343.099260px;}
.x20_c00185{left:367.032000px;}
.x29_c00185{left:385.182582px;}
.x47_c00185{left:410.130000px;}
.x2a_c00185{left:425.101362px;}
.x38_c00185{left:429.259500px;}
.x3f_c00185{left:431.907000px;}
.xe_c00185{left:434.710926px;}
.x2_c00185{left:462.618000px;}
.xf_c00185{left:466.236186px;}
.x2b_c00185{left:469.391061px;}
.x21_c00185{left:489.088500px;}
.x3_c00185{left:507.127500px;}
.x10_c00185{left:510.022938px;}
.x22_c00185{left:513.078000px;}
.x40_c00185{left:534.078000px;}
.x19_c00185{left:566.190000px;}
.x2c_c00185{left:592.064856px;}
.x11_c00185{left:594.275310px;}
.x4_c00185{left:601.360500px;}
.x39_c00185{left:637.494000px;}
.x12_c00185{left:641.243688px;}
.x48_c00185{left:650.430000px;}
.x23_c00185{left:657.670500px;}
.x2d_c00185{left:662.668587px;}
.x3a_c00185{left:670.534500px;}
.x13_c00185{left:679.577724px;}
.x5_c00185{left:706.153500px;}
.x24_c00185{left:716.118000px;}
.x14_c00185{left:720.895374px;}
.x15_c00185{left:764.652126px;}
.x43_c00185{left:777.552000px;}
.x41_c00185{left:811.015500px;}
.x6_c00185{left:819.547500px;}
.x3b_c00185{left:824.401500px;}
.x2e_c00185{left:833.307018px;}
.x16_c00185{left:834.830934px;}
.x44_c00185{left:907.720500px;}
@media print{
.v0_c00185{vertical-align:0.000000pt;}
.ls0_c00185{letter-spacing:0.000000pt;}
.ws0_c00185{word-spacing:0.000000pt;}
.fs2_c00185{font-size:16.000000pt;}
.fs1_c00185{font-size:37.333632pt;}
.fs3_c00185{font-size:53.334293pt;}
.fs7_c00185{font-size:64.001568pt;}
.fs6_c00185{font-size:64.002592pt;}
.fs4_c00185{font-size:74.668011pt;}
.fs9_c00185{font-size:80.000000pt;}
.fs0_c00185{font-size:117.334272pt;}
.fs5_c00185{font-size:138.666667pt;}
.fs8_c00185{font-size:208.010400pt;}
.y0_c00185{bottom:0.000000pt;}
.y45_c00185{bottom:127.974667pt;}
.y44_c00185{bottom:138.206240pt;}
.y43_c00185{bottom:139.363293pt;}
.y42_c00185{bottom:140.568440pt;}
.y41_c00185{bottom:142.461040pt;}
.y40_c00185{bottom:146.162667pt;}
.y3a_c00185{bottom:178.321333pt;}
.y3b_c00185{bottom:179.048335pt;}
.y3c_c00185{bottom:179.443713pt;}
.y3d_c00185{bottom:180.847605pt;}
.y3e_c00185{bottom:181.483336pt;}
.y3f_c00185{bottom:183.206503pt;}
.y39_c00185{bottom:219.273252pt;}
.y38_c00185{bottom:220.504188pt;}
.y37_c00185{bottom:220.768512pt;}
.y36_c00185{bottom:222.434388pt;}
.y35_c00185{bottom:223.382148pt;}
.y34_c00185{bottom:223.795680pt;}
.y33_c00185{bottom:224.614116pt;}
.y32_c00185{bottom:224.855172pt;}
.y31_c00185{bottom:225.134952pt;}
.y30_c00185{bottom:225.683880pt;}
.y2f_c00185{bottom:225.840000pt;}
.y2e_c00185{bottom:249.330667pt;}
.y2d_c00185{bottom:379.232821pt;}
.y2c_c00185{bottom:380.597576pt;}
.y2b_c00185{bottom:381.162136pt;}
.y2a_c00185{bottom:382.143075pt;}
.y29_c00185{bottom:382.497957pt;}
.y28_c00185{bottom:382.817528pt;}
.y27_c00185{bottom:383.680592pt;}
.y26_c00185{bottom:384.660547pt;}
.y25_c00185{bottom:385.369187pt;}
.y24_c00185{bottom:385.442019pt;}
.y23_c00185{bottom:412.633408pt;}
.y22_c00185{bottom:413.189696pt;}
.y21_c00185{bottom:413.501416pt;}
.y20_c00185{bottom:414.272576pt;}
.y1f_c00185{bottom:414.400520pt;}
.y1e_c00185{bottom:415.051488pt;}
.y1d_c00185{bottom:415.369224pt;}
.y1c_c00185{bottom:415.775152pt;}
.y1b_c00185{bottom:415.991192pt;}
.y1a_c00185{bottom:416.310872pt;}
.y19_c00185{bottom:416.461704pt;}
.y18_c00185{bottom:416.880000pt;}
.y17_c00185{bottom:438.886667pt;}
.y16_c00185{bottom:449.288987pt;}
.y15_c00185{bottom:449.663472pt;}
.y14_c00185{bottom:449.897232pt;}
.y13_c00185{bottom:450.116997pt;}
.y12_c00185{bottom:450.322037pt;}
.y11_c00185{bottom:450.572379pt;}
.y10_c00185{bottom:451.022160pt;}
.yf_c00185{bottom:451.255813pt;}
.ye_c00185{bottom:451.423728pt;}
.yd_c00185{bottom:451.912677pt;}
.yc_c00185{bottom:452.251013pt;}
.yb_c00185{bottom:452.528624pt;}
.ya_c00185{bottom:452.659995pt;}
.y9_c00185{bottom:452.759365pt;}
.y8_c00185{bottom:453.246512pt;}
.y7_c00185{bottom:453.360059pt;}
.y1_c00185{bottom:456.720000pt;}
.y2_c00185{bottom:457.951056pt;}
.y3_c00185{bottom:458.109312pt;}
.y4_c00185{bottom:458.444363pt;}
.y5_c00185{bottom:458.816960pt;}
.y6_c00185{bottom:459.220139pt;}
.h3_c00185{height:16.000000pt;}
.h2_c00185{height:37.333632pt;}
.h4_c00185{height:53.334293pt;}
.h8_c00185{height:64.001568pt;}
.h7_c00185{height:64.002592pt;}
.h5_c00185{height:74.668011pt;}
.ha_c00185{height:80.000000pt;}
.h1_c00185{height:117.334272pt;}
.h6_c00185{height:138.666667pt;}
.h9_c00185{height:208.010400pt;}
.h0_c00185{height:606.666667pt;}
.w0_c00185{width:821.733333pt;}
.w1_c00185{width:822.000000pt;}
.x0_c00185{left:0.000000pt;}
.x2f_c00185{left:3.360000pt;}
.x42_c00185{left:11.220000pt;}
.x32_c00185{left:20.509333pt;}
.x1a_c00185{left:21.498667pt;}
.x3c_c00185{left:23.021333pt;}
.x25_c00185{left:50.752432pt;}
.x26_c00185{left:58.890955pt;}
.x7_c00185{left:63.812805pt;}
.x45_c00185{left:75.360000pt;}
.x33_c00185{left:81.501333pt;}
.x8_c00185{left:82.760229pt;}
.x1b_c00185{left:91.214667pt;}
.x1_c00185{left:103.452000pt;}
.x34_c00185{left:112.588000pt;}
.x1c_c00185{left:116.353333pt;}
.x3d_c00185{left:126.878667pt;}
.x30_c00185{left:128.160000pt;}
.x27_c00185{left:137.662872pt;}
.x35_c00185{left:139.372000pt;}
.x17_c00185{left:162.240000pt;}
.x9_c00185{left:163.976811pt;}
.x1d_c00185{left:169.633333pt;}
.x31_c00185{left:174.240000pt;}
.xa_c00185{left:180.468139pt;}
.x3e_c00185{left:183.361333pt;}
.xb_c00185{left:202.293013pt;}
.x1e_c00185{left:205.640000pt;}
.x18_c00185{left:228.000000pt;}
.x36_c00185{left:230.309333pt;}
.x28_c00185{left:246.542245pt;}
.xc_c00185{left:248.558864pt;}
.x1f_c00185{left:273.294667pt;}
.x37_c00185{left:276.257333pt;}
.x46_c00185{left:296.400000pt;}
.xd_c00185{left:304.977120pt;}
.x20_c00185{left:326.250667pt;}
.x29_c00185{left:342.384517pt;}
.x47_c00185{left:364.560000pt;}
.x2a_c00185{left:377.867877pt;}
.x38_c00185{left:381.564000pt;}
.x3f_c00185{left:383.917333pt;}
.xe_c00185{left:386.409712pt;}
.x2_c00185{left:411.216000pt;}
.xf_c00185{left:414.432165pt;}
.x2b_c00185{left:417.236499pt;}
.x21_c00185{left:434.745333pt;}
.x3_c00185{left:450.780000pt;}
.x10_c00185{left:453.353723pt;}
.x22_c00185{left:456.069333pt;}
.x40_c00185{left:474.736000pt;}
.x19_c00185{left:503.280000pt;}
.x2c_c00185{left:526.279872pt;}
.x11_c00185{left:528.244720pt;}
.x4_c00185{left:534.542667pt;}
.x39_c00185{left:566.661333pt;}
.x12_c00185{left:569.994389pt;}
.x48_c00185{left:578.160000pt;}
.x23_c00185{left:584.596000pt;}
.x2d_c00185{left:589.038744pt;}
.x3a_c00185{left:596.030667pt;}
.x13_c00185{left:604.069088pt;}
.x5_c00185{left:627.692000pt;}
.x24_c00185{left:636.549333pt;}
.x14_c00185{left:640.795888pt;}
.x15_c00185{left:679.690779pt;}
.x43_c00185{left:691.157333pt;}
.x41_c00185{left:720.902667pt;}
.x6_c00185{left:728.486667pt;}
.x3b_c00185{left:732.801333pt;}
.x2e_c00185{left:740.717349pt;}
.x16_c00185{left:742.071941pt;}
.x44_c00185{left:806.862667pt;}
}





/* 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_c00186 {
    display:none;
  }
  .loading-indicator_c00186.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00186 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_c00186 { 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_c00186" -> "#page-container .classname_c00186")
 */
.pf_c00186 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00186 { /* 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_c00186.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00186 { /* 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_c00186 { /* 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_c00186 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00186 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00186 {overflow:visible;}
  }
}
.c_c00186 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00186 { /* 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_c00186:after { /* webkit #35443 */
  content: '';
}
.t_c00186:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00186 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 */
}
.__c00186 { /* 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_c00186 { /* info for Javascript */
  display:none;
}
.l_c00186 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00186 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00186 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00186: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_c00186 {
    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_c00186.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00186.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_c00186 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00186{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00186;src:url('chunks/assets/font_7ef351174269f1343c6a59b1.woff2')format("woff");}.ff1_c00186{font-family:ff1_c00186;line-height:1.000000;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;}
.m0_c00186{transform:matrix(0.005089,0.000097,-0.004749,0.249955,0,0);-ms-transform:matrix(0.005089,0.000097,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.005089,0.000097,-0.004749,0.249955,0,0);}
.m5_c00186{transform:matrix(0.166080,0.003156,-0.004749,0.249955,0,0);-ms-transform:matrix(0.166080,0.003156,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.166080,0.003156,-0.004749,0.249955,0,0);}
.m6_c00186{transform:matrix(0.196909,0.003741,-0.004749,0.249955,0,0);-ms-transform:matrix(0.196909,0.003741,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.196909,0.003741,-0.004749,0.249955,0,0);}
.m8_c00186{transform:matrix(0.206488,0.003923,-0.004749,0.249955,0,0);-ms-transform:matrix(0.206488,0.003923,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.206488,0.003923,-0.004749,0.249955,0,0);}
.m7_c00186{transform:matrix(0.217651,0.004135,-0.004749,0.249955,0,0);-ms-transform:matrix(0.217651,0.004135,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.217651,0.004135,-0.004749,0.249955,0,0);}
.m3_c00186{transform:matrix(0.226609,0.004306,-0.004749,0.249955,0,0);-ms-transform:matrix(0.226609,0.004306,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.226609,0.004306,-0.004749,0.249955,0,0);}
.m2_c00186{transform:matrix(0.236757,0.004498,-0.004749,0.249955,0,0);-ms-transform:matrix(0.236757,0.004498,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.236757,0.004498,-0.004749,0.249955,0,0);}
.m4_c00186{transform:matrix(0.254209,0.004830,-0.004749,0.249955,0,0);-ms-transform:matrix(0.254209,0.004830,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.254209,0.004830,-0.004749,0.249955,0,0);}
.m1_c00186{transform:matrix(0.296177,0.005627,-0.004749,0.249955,0,0);-ms-transform:matrix(0.296177,0.005627,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.296177,0.005627,-0.004749,0.249955,0,0);}
.m9_c00186{transform:matrix(0.298471,0.005671,-0.004749,0.249955,0,0);-ms-transform:matrix(0.298471,0.005671,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.298471,0.005671,-0.004749,0.249955,0,0);}
.ma_c00186{transform:matrix(0.684635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.684635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.684635,0.000000,0.000000,0.250000,0,0);}
.v0_c00186{vertical-align:0.000000px;}
.ls0_c00186{letter-spacing:0.000000px;}
.sc__c00186{text-shadow:none;}
.sc0_c00186{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__c00186{-webkit-text-stroke:0px transparent;}
.sc0_c00186{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00186{word-spacing:0.000000px;}
.fc0_c00186{color:transparent;}
.fs1_c00186{font-size:54.000000px;}
.fs0_c00186{font-size:150.027073px;}
.y0_c00186{bottom:0.000000px;}
.yb_c00186{bottom:9.183000px;}
.ya_c00186{bottom:14.260029px;}
.y9_c00186{bottom:20.592786px;}
.y8_c00186{bottom:21.892101px;}
.y7_c00186{bottom:23.502038px;}
.y6_c00186{bottom:24.234886px;}
.y5_c00186{bottom:25.509236px;}
.y4_c00186{bottom:26.385183px;}
.y3_c00186{bottom:27.929028px;}
.y2_c00186{bottom:30.327873px;}
.y1_c00186{bottom:31.326000px;}
.h2_c00186{height:54.000000px;}
.h1_c00186{height:150.027073px;}
.h0_c00186{height:682.500000px;}
.w0_c00186{width:924.450000px;}
.w1_c00186{width:924.750000px;}
.x0_c00186{left:0.000000px;}
.x1_c00186{left:2.962500px;}
.x2_c00186{left:55.495500px;}
.x3_c00186{left:181.750500px;}
.x4_c00186{left:263.005500px;}
.x5_c00186{left:309.108000px;}
.x6_c00186{left:376.179000px;}
.x7_c00186{left:414.750000px;}
.x8_c00186{left:499.483500px;}
.x9_c00186{left:567.868500px;}
.xa_c00186{left:901.171500px;}
@media print{
.v0_c00186{vertical-align:0.000000pt;}
.ls0_c00186{letter-spacing:0.000000pt;}
.ws0_c00186{word-spacing:0.000000pt;}
.fs1_c00186{font-size:48.000000pt;}
.fs0_c00186{font-size:133.357398pt;}
.y0_c00186{bottom:0.000000pt;}
.yb_c00186{bottom:8.162667pt;}
.ya_c00186{bottom:12.675581pt;}
.y9_c00186{bottom:18.304699pt;}
.y8_c00186{bottom:19.459645pt;}
.y7_c00186{bottom:20.890700pt;}
.y6_c00186{bottom:21.542121pt;}
.y5_c00186{bottom:22.674876pt;}
.y4_c00186{bottom:23.453496pt;}
.y3_c00186{bottom:24.825803pt;}
.y2_c00186{bottom:26.958109pt;}
.y1_c00186{bottom:27.845333pt;}
.h2_c00186{height:48.000000pt;}
.h1_c00186{height:133.357398pt;}
.h0_c00186{height:606.666667pt;}
.w0_c00186{width:821.733333pt;}
.w1_c00186{width:822.000000pt;}
.x0_c00186{left:0.000000pt;}
.x1_c00186{left:2.633333pt;}
.x2_c00186{left:49.329333pt;}
.x3_c00186{left:161.556000pt;}
.x4_c00186{left:233.782667pt;}
.x5_c00186{left:274.762667pt;}
.x6_c00186{left:334.381333pt;}
.x7_c00186{left:368.666667pt;}
.x8_c00186{left:443.985333pt;}
.x9_c00186{left:504.772000pt;}
.xa_c00186{left:801.041333pt;}
}





/* 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_c00187 {
    display:none;
  }
  .loading-indicator_c00187.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00187 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_c00187 { 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_c00187" -> "#page-container .classname_c00187")
 */
.pf_c00187 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00187 { /* 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_c00187.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00187 { /* 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_c00187 { /* 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_c00187 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00187 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00187 {overflow:visible;}
  }
}
.c_c00187 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00187 { /* 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_c00187:after { /* webkit #35443 */
  content: '';
}
.t_c00187:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00187 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 */
}
.__c00187 { /* 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_c00187 { /* info for Javascript */
  display:none;
}
.l_c00187 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00187 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00187 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00187: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_c00187 {
    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_c00187.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00187.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_c00187 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00187{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00187;src:url('chunks/assets/font_c605e72f209fc835e906f064.woff2')format("woff");}.ff1_c00187{font-family:ff1_c00187;line-height:1.000000;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;}
.m28_c00187{transform:matrix(0.016751,0.000788,-0.011749,0.249724,0,0);-ms-transform:matrix(0.016751,0.000788,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.016751,0.000788,-0.011749,0.249724,0,0);}
.m35_c00187{transform:matrix(0.016928,0.000627,-0.009253,0.249829,0,0);-ms-transform:matrix(0.016928,0.000627,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.016928,0.000627,-0.009253,0.249829,0,0);}
.m24_c00187{transform:matrix(0.032109,0.001511,-0.011749,0.249724,0,0);-ms-transform:matrix(0.032109,0.001511,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.032109,0.001511,-0.011749,0.249724,0,0);}
.m3_c00187{transform:matrix(0.040292,0.001209,-0.007497,0.249888,0,0);-ms-transform:matrix(0.040292,0.001209,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.040292,0.001209,-0.007497,0.249888,0,0);}
.m17_c00187{transform:matrix(0.045809,0.002155,-0.011749,0.249724,0,0);-ms-transform:matrix(0.045809,0.002155,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.045809,0.002155,-0.011749,0.249724,0,0);}
.ma_c00187{transform:matrix(0.183797,0.005514,-0.007497,0.249888,0,0);-ms-transform:matrix(0.183797,0.005514,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.183797,0.005514,-0.007497,0.249888,0,0);}
.m15_c00187{transform:matrix(0.201952,0.009501,-0.011749,0.249724,0,0);-ms-transform:matrix(0.201952,0.009501,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.201952,0.009501,-0.011749,0.249724,0,0);}
.m1d_c00187{transform:matrix(0.213774,0.010057,-0.011749,0.249724,0,0);-ms-transform:matrix(0.213774,0.010057,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.213774,0.010057,-0.011749,0.249724,0,0);}
.m16_c00187{transform:matrix(0.219847,0.010343,-0.011749,0.249724,0,0);-ms-transform:matrix(0.219847,0.010343,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.219847,0.010343,-0.011749,0.249724,0,0);}
.m26_c00187{transform:matrix(0.227443,0.010701,-0.011749,0.249724,0,0);-ms-transform:matrix(0.227443,0.010701,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.227443,0.010701,-0.011749,0.249724,0,0);}
.m11_c00187{transform:matrix(0.239400,0.011263,-0.011749,0.249724,0,0);-ms-transform:matrix(0.239400,0.011263,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.239400,0.011263,-0.011749,0.249724,0,0);}
.m10_c00187{transform:matrix(0.256446,0.012065,-0.011749,0.249724,0,0);-ms-transform:matrix(0.256446,0.012065,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.256446,0.012065,-0.011749,0.249724,0,0);}
.m27_c00187{transform:matrix(0.291882,0.013732,-0.011749,0.249724,0,0);-ms-transform:matrix(0.291882,0.013732,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.291882,0.013732,-0.011749,0.249724,0,0);}
.m4_c00187{transform:matrix(0.291929,0.008758,-0.007497,0.249888,0,0);-ms-transform:matrix(0.291929,0.008758,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.291929,0.008758,-0.007497,0.249888,0,0);}
.m0_c00187{transform:matrix(0.314908,0.009447,-0.007497,0.249888,0,0);-ms-transform:matrix(0.314908,0.009447,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.314908,0.009447,-0.007497,0.249888,0,0);}
.m31_c00187{transform:matrix(0.334340,0.015730,-0.011749,0.249724,0,0);-ms-transform:matrix(0.334340,0.015730,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.334340,0.015730,-0.011749,0.249724,0,0);}
.m18_c00187{transform:matrix(0.335209,0.015771,-0.011749,0.249724,0,0);-ms-transform:matrix(0.335209,0.015771,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.335209,0.015771,-0.011749,0.249724,0,0);}
.m2a_c00187{transform:matrix(0.365596,0.017200,-0.011749,0.249724,0,0);-ms-transform:matrix(0.365596,0.017200,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.365596,0.017200,-0.011749,0.249724,0,0);}
.m8_c00187{transform:matrix(0.378495,0.011355,-0.007497,0.249888,0,0);-ms-transform:matrix(0.378495,0.011355,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.378495,0.011355,-0.007497,0.249888,0,0);}
.m22_c00187{transform:matrix(0.379535,0.017856,-0.011749,0.249724,0,0);-ms-transform:matrix(0.379535,0.017856,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.379535,0.017856,-0.011749,0.249724,0,0);}
.m34_c00187{transform:matrix(0.403338,0.014938,-0.009253,0.249829,0,0);-ms-transform:matrix(0.403338,0.014938,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.403338,0.014938,-0.009253,0.249829,0,0);}
.m1b_c00187{transform:matrix(0.426533,0.020067,-0.011749,0.249724,0,0);-ms-transform:matrix(0.426533,0.020067,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.426533,0.020067,-0.011749,0.249724,0,0);}
.m7_c00187{transform:matrix(0.437893,0.013137,-0.007497,0.249888,0,0);-ms-transform:matrix(0.437893,0.013137,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.437893,0.013137,-0.007497,0.249888,0,0);}
.m5_c00187{transform:matrix(0.452846,0.013585,-0.007497,0.249888,0,0);-ms-transform:matrix(0.452846,0.013585,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.452846,0.013585,-0.007497,0.249888,0,0);}
.m2c_c00187{transform:matrix(0.455956,0.021451,-0.011749,0.249724,0,0);-ms-transform:matrix(0.455956,0.021451,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.455956,0.021451,-0.011749,0.249724,0,0);}
.mb_c00187{transform:matrix(0.456760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456760,0.000000,0.000000,0.250000,0,0);}
.m33_c00187{transform:matrix(0.463482,0.017166,-0.009253,0.249829,0,0);-ms-transform:matrix(0.463482,0.017166,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.463482,0.017166,-0.009253,0.249829,0,0);}
.me_c00187{transform:matrix(0.469196,0.022074,-0.011749,0.249724,0,0);-ms-transform:matrix(0.469196,0.022074,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.469196,0.022074,-0.011749,0.249724,0,0);}
.m32_c00187{transform:matrix(0.469948,0.017405,-0.009253,0.249829,0,0);-ms-transform:matrix(0.469948,0.017405,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.469948,0.017405,-0.009253,0.249829,0,0);}
.mc_c00187{transform:matrix(0.495130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495130,0.000000,0.000000,0.250000,0,0);}
.m1_c00187{transform:matrix(0.496622,0.014899,-0.007497,0.249888,0,0);-ms-transform:matrix(0.496622,0.014899,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.496622,0.014899,-0.007497,0.249888,0,0);}
.m1c_c00187{transform:matrix(0.513297,0.024149,-0.011749,0.249724,0,0);-ms-transform:matrix(0.513297,0.024149,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.513297,0.024149,-0.011749,0.249724,0,0);}
.m12_c00187{transform:matrix(0.534154,0.025130,-0.011749,0.249724,0,0);-ms-transform:matrix(0.534154,0.025130,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.534154,0.025130,-0.011749,0.249724,0,0);}
.md_c00187{transform:matrix(0.574589,0.027033,-0.011749,0.249724,0,0);-ms-transform:matrix(0.574589,0.027033,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.574589,0.027033,-0.011749,0.249724,0,0);}
.m2e_c00187{transform:matrix(0.605870,0.028504,-0.011749,0.249724,0,0);-ms-transform:matrix(0.605870,0.028504,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.605870,0.028504,-0.011749,0.249724,0,0);}
.m19_c00187{transform:matrix(0.611773,0.028782,-0.011749,0.249724,0,0);-ms-transform:matrix(0.611773,0.028782,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.611773,0.028782,-0.011749,0.249724,0,0);}
.m30_c00187{transform:matrix(0.613232,0.028851,-0.011749,0.249724,0,0);-ms-transform:matrix(0.613232,0.028851,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.613232,0.028851,-0.011749,0.249724,0,0);}
.m1a_c00187{transform:matrix(0.637645,0.029999,-0.011749,0.249724,0,0);-ms-transform:matrix(0.637645,0.029999,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.637645,0.029999,-0.011749,0.249724,0,0);}
.m2_c00187{transform:matrix(0.697341,0.020920,-0.007497,0.249888,0,0);-ms-transform:matrix(0.697341,0.020920,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.697341,0.020920,-0.007497,0.249888,0,0);}
.m29_c00187{transform:matrix(0.735012,0.034580,-0.011749,0.249724,0,0);-ms-transform:matrix(0.735012,0.034580,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.735012,0.034580,-0.011749,0.249724,0,0);}
.m20_c00187{transform:matrix(0.761113,0.035808,-0.011749,0.249724,0,0);-ms-transform:matrix(0.761113,0.035808,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.761113,0.035808,-0.011749,0.249724,0,0);}
.m2d_c00187{transform:matrix(0.767936,0.036129,-0.011749,0.249724,0,0);-ms-transform:matrix(0.767936,0.036129,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.767936,0.036129,-0.011749,0.249724,0,0);}
.m23_c00187{transform:matrix(0.776226,0.036519,-0.011749,0.249724,0,0);-ms-transform:matrix(0.776226,0.036519,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.776226,0.036519,-0.011749,0.249724,0,0);}
.m13_c00187{transform:matrix(0.780397,0.036715,-0.011749,0.249724,0,0);-ms-transform:matrix(0.780397,0.036715,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.780397,0.036715,-0.011749,0.249724,0,0);}
.m1f_c00187{transform:matrix(0.780836,0.036736,-0.011749,0.249724,0,0);-ms-transform:matrix(0.780836,0.036736,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.780836,0.036736,-0.011749,0.249724,0,0);}
.m2f_c00187{transform:matrix(0.873679,0.041104,-0.011749,0.249724,0,0);-ms-transform:matrix(0.873679,0.041104,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.873679,0.041104,-0.011749,0.249724,0,0);}
.m25_c00187{transform:matrix(0.933997,0.043942,-0.011749,0.249724,0,0);-ms-transform:matrix(0.933997,0.043942,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.933997,0.043942,-0.011749,0.249724,0,0);}
.m2b_c00187{transform:matrix(0.991453,0.046645,-0.011749,0.249724,0,0);-ms-transform:matrix(0.991453,0.046645,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.991453,0.046645,-0.011749,0.249724,0,0);}
.m14_c00187{transform:matrix(1.035719,0.048728,-0.011749,0.249724,0,0);-ms-transform:matrix(1.035719,0.048728,-0.011749,0.249724,0,0);-webkit-transform:matrix(1.035719,0.048728,-0.011749,0.249724,0,0);}
.m6_c00187{transform:matrix(1.079334,0.032380,-0.007497,0.249888,0,0);-ms-transform:matrix(1.079334,0.032380,-0.007497,0.249888,0,0);-webkit-transform:matrix(1.079334,0.032380,-0.007497,0.249888,0,0);}
.mf_c00187{transform:matrix(1.129241,0.053127,-0.011749,0.249724,0,0);-ms-transform:matrix(1.129241,0.053127,-0.011749,0.249724,0,0);-webkit-transform:matrix(1.129241,0.053127,-0.011749,0.249724,0,0);}
.m1e_c00187{transform:matrix(1.286267,0.060515,-0.011749,0.249724,0,0);-ms-transform:matrix(1.286267,0.060515,-0.011749,0.249724,0,0);-webkit-transform:matrix(1.286267,0.060515,-0.011749,0.249724,0,0);}
.m9_c00187{transform:matrix(2.193428,0.065803,-0.007497,0.249888,0,0);-ms-transform:matrix(2.193428,0.065803,-0.007497,0.249888,0,0);-webkit-transform:matrix(2.193428,0.065803,-0.007497,0.249888,0,0);}
.m21_c00187{transform:matrix(2.404585,0.113129,-0.011749,0.249724,0,0);-ms-transform:matrix(2.404585,0.113129,-0.011749,0.249724,0,0);-webkit-transform:matrix(2.404585,0.113129,-0.011749,0.249724,0,0);}
.v0_c00187{vertical-align:0.000000px;}
.ls0_c00187{letter-spacing:0.000000px;}
.sc__c00187{text-shadow:none;}
.sc0_c00187{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__c00187{-webkit-text-stroke:0px transparent;}
.sc0_c00187{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00187{word-spacing:0.000000px;}
.fc0_c00187{color:transparent;}
.fs1_c00187{font-size:24.000000px;}
.fs6_c00187{font-size:42.004410px;}
.fs0_c00187{font-size:54.024295px;}
.fs8_c00187{font-size:72.007560px;}
.fs9_c00187{font-size:90.009450px;}
.fs3_c00187{font-size:126.013229px;}
.fs2_c00187{font-size:138.014489px;}
.fs4_c00187{font-size:174.018269px;}
.fs7_c00187{font-size:180.018899px;}
.fs5_c00187{font-size:246.025829px;}
.fsa_c00187{font-size:251.920607px;}
.y0_c00187{bottom:0.000000px;}
.y31_c00187{bottom:116.530837px;}
.y30_c00187{bottom:122.125869px;}
.y2f_c00187{bottom:125.481541px;}
.y2e_c00187{bottom:128.256268px;}
.y2d_c00187{bottom:158.789257px;}
.y2c_c00187{bottom:160.324474px;}
.y2b_c00187{bottom:164.316148px;}
.y2a_c00187{bottom:165.078946px;}
.y29_c00187{bottom:168.329797px;}
.y28_c00187{bottom:168.737718px;}
.y27_c00187{bottom:187.728361px;}
.y26_c00187{bottom:192.023661px;}
.y25_c00187{bottom:195.190029px;}
.y35_c00187{bottom:214.045171px;}
.y34_c00187{bottom:216.457701px;}
.y33_c00187{bottom:223.851189px;}
.y32_c00187{bottom:227.425500px;}
.y24_c00187{bottom:257.558143px;}
.y23_c00187{bottom:263.718048px;}
.y22_c00187{bottom:268.021690px;}
.y1e_c00187{bottom:269.037177px;}
.y21_c00187{bottom:274.971838px;}
.y20_c00187{bottom:279.652176px;}
.y1f_c00187{bottom:288.922083px;}
.y1c_c00187{bottom:303.938313px;}
.y1d_c00187{bottom:304.359391px;}
.y1b_c00187{bottom:305.693638px;}
.y1a_c00187{bottom:310.412487px;}
.y19_c00187{bottom:315.908988px;}
.y18_c00187{bottom:348.039768px;}
.y17_c00187{bottom:349.262767px;}
.y16_c00187{bottom:353.413905px;}
.y15_c00187{bottom:355.064722px;}
.y14_c00187{bottom:361.909123px;}
.y13_c00187{bottom:367.115556px;}
.y12_c00187{bottom:372.402553px;}
.y11_c00187{bottom:412.086745px;}
.y10_c00187{bottom:414.638775px;}
.yf_c00187{bottom:424.917957px;}
.ye_c00187{bottom:428.347641px;}
.yd_c00187{bottom:436.384500px;}
.yc_c00187{bottom:532.233000px;}
.yb_c00187{bottom:535.401270px;}
.ya_c00187{bottom:538.823745px;}
.y9_c00187{bottom:539.550900px;}
.y8_c00187{bottom:541.284750px;}
.y7_c00187{bottom:543.552885px;}
.y6_c00187{bottom:545.340240px;}
.y5_c00187{bottom:562.518735px;}
.y4_c00187{bottom:564.145845px;}
.y3_c00187{bottom:566.388870px;}
.y2_c00187{bottom:568.076145px;}
.y1_c00187{bottom:568.756500px;}
.h2_c00187{height:24.000000px;}
.h7_c00187{height:42.004410px;}
.h1_c00187{height:54.024295px;}
.h9_c00187{height:72.007560px;}
.ha_c00187{height:90.009450px;}
.h4_c00187{height:126.013229px;}
.h3_c00187{height:138.014489px;}
.h5_c00187{height:174.018269px;}
.h8_c00187{height:180.018899px;}
.h6_c00187{height:246.025829px;}
.hb_c00187{height:251.920607px;}
.h0_c00187{height:682.500000px;}
.w0_c00187{width:924.450000px;}
.w1_c00187{width:924.750000px;}
.x0_c00187{left:0.000000px;}
.x31_c00187{left:52.785000px;}
.x1d_c00187{left:84.586865px;}
.x1f_c00187{left:104.157639px;}
.x32_c00187{left:149.291397px;}
.x19_c00187{left:154.545714px;}
.x20_c00187{left:309.938988px;}
.x33_c00187{left:348.915573px;}
.x1a_c00187{left:365.576226px;}
.xe_c00187{left:384.450000px;}
.x21_c00187{left:413.826236px;}
.x13_c00187{left:419.085881px;}
.x25_c00187{left:422.525802px;}
.x28_c00187{left:433.651764px;}
.x29_c00187{left:447.685073px;}
.x2e_c00187{left:478.181906px;}
.x14_c00187{left:524.727243px;}
.x6_c00187{left:540.915105px;}
.x1b_c00187{left:546.766181px;}
.xf_c00187{left:555.276003px;}
.x2a_c00187{left:559.621730px;}
.x22_c00187{left:568.097777px;}
.x2b_c00187{left:585.858626px;}
.x7_c00187{left:600.493605px;}
.x26_c00187{left:608.225163px;}
.x1e_c00187{left:611.409891px;}
.x1c_c00187{left:614.178249px;}
.x2f_c00187{left:617.359707px;}
.x10_c00187{left:628.175031px;}
.x23_c00187{left:663.627114px;}
.x8_c00187{left:676.098105px;}
.x1_c00187{left:677.748000px;}
.xc_c00187{left:686.070000px;}
.x2_c00187{left:700.426500px;}
.xd_c00187{left:704.970000px;}
.x2c_c00187{left:723.277799px;}
.x9_c00187{left:733.893105px;}
.x30_c00187{left:744.391973px;}
.x3_c00187{left:756.669000px;}
.xa_c00187{left:758.131605px;}
.x15_c00187{left:765.517268px;}
.x2d_c00187{left:776.147618px;}
.x16_c00187{left:798.499095px;}
.x24_c00187{left:800.367581px;}
.x4_c00187{left:831.436500px;}
.x11_c00187{left:846.662325px;}
.x27_c00187{left:860.152595px;}
.xb_c00187{left:872.214105px;}
.x17_c00187{left:881.433863px;}
.x5_c00187{left:885.673500px;}
.x12_c00187{left:900.906527px;}
.x18_c00187{left:905.864949px;}
@media print{
.v0_c00187{vertical-align:0.000000pt;}
.ls0_c00187{letter-spacing:0.000000pt;}
.ws0_c00187{word-spacing:0.000000pt;}
.fs1_c00187{font-size:21.333333pt;}
.fs6_c00187{font-size:37.337253pt;}
.fs0_c00187{font-size:48.021595pt;}
.fs8_c00187{font-size:64.006720pt;}
.fs9_c00187{font-size:80.008400pt;}
.fs3_c00187{font-size:112.011759pt;}
.fs2_c00187{font-size:122.679546pt;}
.fs4_c00187{font-size:154.682906pt;}
.fs7_c00187{font-size:160.016799pt;}
.fs5_c00187{font-size:218.689625pt;}
.fsa_c00187{font-size:223.929429pt;}
.y0_c00187{bottom:0.000000pt;}
.y31_c00187{bottom:103.582967pt;}
.y30_c00187{bottom:108.556328pt;}
.y2f_c00187{bottom:111.539148pt;}
.y2e_c00187{bottom:114.005572pt;}
.y2d_c00187{bottom:141.146007pt;}
.y2c_c00187{bottom:142.510644pt;}
.y2b_c00187{bottom:146.058799pt;}
.y2a_c00187{bottom:146.736841pt;}
.y29_c00187{bottom:149.626487pt;}
.y28_c00187{bottom:149.989083pt;}
.y27_c00187{bottom:166.869655pt;}
.y26_c00187{bottom:170.687699pt;}
.y25_c00187{bottom:173.502248pt;}
.y35_c00187{bottom:190.262375pt;}
.y34_c00187{bottom:192.406845pt;}
.y33_c00187{bottom:198.978835pt;}
.y32_c00187{bottom:202.156000pt;}
.y24_c00187{bottom:228.940572pt;}
.y23_c00187{bottom:234.416043pt;}
.y22_c00187{bottom:238.241503pt;}
.y1e_c00187{bottom:239.144157pt;}
.y21_c00187{bottom:244.419412pt;}
.y20_c00187{bottom:248.579712pt;}
.y1f_c00187{bottom:256.819629pt;}
.y1c_c00187{bottom:270.167389pt;}
.y1d_c00187{bottom:270.541681pt;}
.y1b_c00187{bottom:271.727679pt;}
.y1a_c00187{bottom:275.922211pt;}
.y19_c00187{bottom:280.807989pt;}
.y18_c00187{bottom:309.368683pt;}
.y17_c00187{bottom:310.455793pt;}
.y16_c00187{bottom:314.145693pt;}
.y15_c00187{bottom:315.613087pt;}
.y14_c00187{bottom:321.696999pt;}
.y13_c00187{bottom:326.324939pt;}
.y12_c00187{bottom:331.024492pt;}
.y11_c00187{bottom:366.299329pt;}
.y10_c00187{bottom:368.567800pt;}
.yf_c00187{bottom:377.704851pt;}
.ye_c00187{bottom:380.753459pt;}
.yd_c00187{bottom:387.897333pt;}
.yc_c00187{bottom:473.096000pt;}
.yb_c00187{bottom:475.912240pt;}
.ya_c00187{bottom:478.954440pt;}
.y9_c00187{bottom:479.600800pt;}
.y8_c00187{bottom:481.142000pt;}
.y7_c00187{bottom:483.158120pt;}
.y6_c00187{bottom:484.746880pt;}
.y5_c00187{bottom:500.016653pt;}
.y4_c00187{bottom:501.462973pt;}
.y3_c00187{bottom:503.456773pt;}
.y2_c00187{bottom:504.956573pt;}
.y1_c00187{bottom:505.561333pt;}
.h2_c00187{height:21.333333pt;}
.h7_c00187{height:37.337253pt;}
.h1_c00187{height:48.021595pt;}
.h9_c00187{height:64.006720pt;}
.ha_c00187{height:80.008400pt;}
.h4_c00187{height:112.011759pt;}
.h3_c00187{height:122.679546pt;}
.h5_c00187{height:154.682906pt;}
.h8_c00187{height:160.016799pt;}
.h6_c00187{height:218.689625pt;}
.hb_c00187{height:223.929429pt;}
.h0_c00187{height:606.666667pt;}
.w0_c00187{width:821.733333pt;}
.w1_c00187{width:822.000000pt;}
.x0_c00187{left:0.000000pt;}
.x31_c00187{left:46.920000pt;}
.x1d_c00187{left:75.188324pt;}
.x1f_c00187{left:92.584568pt;}
.x32_c00187{left:132.703464pt;}
.x19_c00187{left:137.373968pt;}
.x20_c00187{left:275.501323pt;}
.x33_c00187{left:310.147176pt;}
.x1a_c00187{left:324.956645pt;}
.xe_c00187{left:341.733333pt;}
.x21_c00187{left:367.845543pt;}
.x13_c00187{left:372.520783pt;}
.x25_c00187{left:375.578491pt;}
.x28_c00187{left:385.468235pt;}
.x29_c00187{left:397.942287pt;}
.x2e_c00187{left:425.050583pt;}
.x14_c00187{left:466.424216pt;}
.x6_c00187{left:480.813427pt;}
.x1b_c00187{left:486.014383pt;}
.xf_c00187{left:493.578669pt;}
.x2a_c00187{left:497.441537pt;}
.x22_c00187{left:504.975801pt;}
.x2b_c00187{left:520.763223pt;}
.x7_c00187{left:533.772093pt;}
.x26_c00187{left:540.644589pt;}
.x1e_c00187{left:543.475459pt;}
.x1c_c00187{left:545.936221pt;}
.x2f_c00187{left:548.764184pt;}
.x10_c00187{left:558.377805pt;}
.x23_c00187{left:589.890768pt;}
.x8_c00187{left:600.976093pt;}
.x1_c00187{left:602.442667pt;}
.xc_c00187{left:609.840000pt;}
.x2_c00187{left:622.601333pt;}
.xd_c00187{left:626.640000pt;}
.x2c_c00187{left:642.913599pt;}
.x9_c00187{left:652.349427pt;}
.x30_c00187{left:661.681753pt;}
.x3_c00187{left:672.594667pt;}
.xa_c00187{left:673.894760pt;}
.x15_c00187{left:680.459793pt;}
.x2d_c00187{left:689.908993pt;}
.x16_c00187{left:709.776973pt;}
.x24_c00187{left:711.437849pt;}
.x4_c00187{left:739.054667pt;}
.x11_c00187{left:752.588733pt;}
.x27_c00187{left:764.580084pt;}
.xb_c00187{left:775.301427pt;}
.x17_c00187{left:783.496767pt;}
.x5_c00187{left:787.265333pt;}
.x12_c00187{left:800.805801pt;}
.x18_c00187{left:805.213288pt;}
}





/* 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_c00188 {
    display:none;
  }
  .loading-indicator_c00188.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00188 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_c00188 { 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_c00188" -> "#page-container .classname_c00188")
 */
.pf_c00188 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00188 { /* 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_c00188.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00188 { /* 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_c00188 { /* 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_c00188 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00188 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00188 {overflow:visible;}
  }
}
.c_c00188 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00188 { /* 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_c00188:after { /* webkit #35443 */
  content: '';
}
.t_c00188:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00188 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 */
}
.__c00188 { /* 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_c00188 { /* info for Javascript */
  display:none;
}
.l_c00188 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00188 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00188 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00188: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_c00188 {
    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_c00188.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00188.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_c00188 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00188{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00188;src:url('chunks/assets/font_92d6bb63cbc780ceff7db400.woff2')format("woff");}.ff1_c00188{font-family:ff1_c00188;line-height:1.000000;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;}
.m2_c00188{transform:matrix(0.084991,-0.002210,0.006498,0.249916,0,0);-ms-transform:matrix(0.084991,-0.002210,0.006498,0.249916,0,0);-webkit-transform:matrix(0.084991,-0.002210,0.006498,0.249916,0,0);}
.m0_c00188{transform:matrix(0.357134,-0.009285,0.006498,0.249916,0,0);-ms-transform:matrix(0.357134,-0.009285,0.006498,0.249916,0,0);-webkit-transform:matrix(0.357134,-0.009285,0.006498,0.249916,0,0);}
.m1_c00188{transform:matrix(0.405588,-0.010545,0.006498,0.249916,0,0);-ms-transform:matrix(0.405588,-0.010545,0.006498,0.249916,0,0);-webkit-transform:matrix(0.405588,-0.010545,0.006498,0.249916,0,0);}
.v0_c00188{vertical-align:0.000000px;}
.ls0_c00188{letter-spacing:0.000000px;}
.sc__c00188{text-shadow:none;}
.sc0_c00188{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__c00188{-webkit-text-stroke:0px transparent;}
.sc0_c00188{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00188{word-spacing:0.000000px;}
.fc0_c00188{color:transparent;}
.fs0_c00188{font-size:72.024332px;}
.y0_c00188{bottom:0.000000px;}
.y1_c00188{bottom:292.953000px;}
.y2_c00188{bottom:304.464474px;}
.y3_c00188{bottom:306.701163px;}
.h1_c00188{height:72.024332px;}
.h0_c00188{height:682.500000px;}
.w0_c00188{width:924.450000px;}
.w1_c00188{width:924.750000px;}
.x0_c00188{left:0.000000px;}
.x1_c00188{left:5.221500px;}
.x2_c00188{left:447.970500px;}
.x3_c00188{left:533.997000px;}
@media print{
.v0_c00188{vertical-align:0.000000pt;}
.ls0_c00188{letter-spacing:0.000000pt;}
.ws0_c00188{word-spacing:0.000000pt;}
.fs0_c00188{font-size:64.021628pt;}
.y0_c00188{bottom:0.000000pt;}
.y1_c00188{bottom:260.402667pt;}
.y2_c00188{bottom:270.635088pt;}
.y3_c00188{bottom:272.623256pt;}
.h1_c00188{height:64.021628pt;}
.h0_c00188{height:606.666667pt;}
.w0_c00188{width:821.733333pt;}
.w1_c00188{width:822.000000pt;}
.x0_c00188{left:0.000000pt;}
.x1_c00188{left:4.641333pt;}
.x2_c00188{left:398.196000pt;}
.x3_c00188{left:474.664000pt;}
}





/* 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_c00189 {
    display:none;
  }
  .loading-indicator_c00189.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00189 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_c00189 { 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_c00189" -> "#page-container .classname_c00189")
 */
.pf_c00189 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00189 { /* 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_c00189.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00189 { /* 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_c00189 { /* 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_c00189 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00189 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00189 {overflow:visible;}
  }
}
.c_c00189 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00189 { /* 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_c00189:after { /* webkit #35443 */
  content: '';
}
.t_c00189:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00189 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 */
}
.__c00189 { /* 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_c00189 { /* info for Javascript */
  display:none;
}
.l_c00189 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00189 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00189 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00189: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_c00189 {
    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_c00189.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00189.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_c00189 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00189{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00189;src:url('chunks/assets/font_4da7a6454ecdf6444bf893b7.woff2')format("woff");}.ff1_c00189{font-family:ff1_c00189;line-height:1.000000;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;}
.m4_c00189{transform:matrix(0.518145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518145,0.000000,0.000000,0.250000,0,0);}
.m5_c00189{transform:matrix(0.542645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542645,0.000000,0.000000,0.250000,0,0);}
.m2_c00189{transform:matrix(0.771075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.771075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.771075,0.000000,0.000000,0.250000,0,0);}
.m1_c00189{transform:matrix(0.885205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.885205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.885205,0.000000,0.000000,0.250000,0,0);}
.m0_c00189{transform:matrix(1.239250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.239250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.239250,0.000000,0.000000,0.250000,0,0);}
.m3_c00189{transform:matrix(2.019215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.019215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.019215,0.000000,0.000000,0.250000,0,0);}
.v0_c00189{vertical-align:0.000000px;}
.ls0_c00189{letter-spacing:0.000000px;}
.sc__c00189{text-shadow:none;}
.sc0_c00189{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__c00189{-webkit-text-stroke:0px transparent;}
.sc0_c00189{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00189{word-spacing:0.000000px;}
.fc0_c00189{color:transparent;}
.fs1_c00189{font-size:102.000000px;}
.fs0_c00189{font-size:114.000000px;}
.y0_c00189{bottom:0.000000px;}
.y3_c00189{bottom:311.233500px;}
.y2_c00189{bottom:328.050000px;}
.y1_c00189{bottom:361.260000px;}
.h2_c00189{height:102.000000px;}
.h1_c00189{height:114.000000px;}
.h0_c00189{height:682.500000px;}
.w0_c00189{width:924.450000px;}
.w1_c00189{width:924.750000px;}
.x0_c00189{left:0.000000px;}
.x4_c00189{left:370.440000px;}
.x2_c00189{left:412.290000px;}
.x3_c00189{left:560.250000px;}
.x1_c00189{left:562.410000px;}
.x5_c00189{left:584.280000px;}
.x6_c00189{left:660.150000px;}
@media print{
.v0_c00189{vertical-align:0.000000pt;}
.ls0_c00189{letter-spacing:0.000000pt;}
.ws0_c00189{word-spacing:0.000000pt;}
.fs1_c00189{font-size:90.666667pt;}
.fs0_c00189{font-size:101.333333pt;}
.y0_c00189{bottom:0.000000pt;}
.y3_c00189{bottom:276.652000pt;}
.y2_c00189{bottom:291.600000pt;}
.y1_c00189{bottom:321.120000pt;}
.h2_c00189{height:90.666667pt;}
.h1_c00189{height:101.333333pt;}
.h0_c00189{height:606.666667pt;}
.w0_c00189{width:821.733333pt;}
.w1_c00189{width:822.000000pt;}
.x0_c00189{left:0.000000pt;}
.x4_c00189{left:329.280000pt;}
.x2_c00189{left:366.480000pt;}
.x3_c00189{left:498.000000pt;}
.x1_c00189{left:499.920000pt;}
.x5_c00189{left:519.360000pt;}
.x6_c00189{left:586.800000pt;}
}





/* 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_c00190 {
    display:none;
  }
  .loading-indicator_c00190.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00190 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_c00190 { 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_c00190" -> "#page-container .classname_c00190")
 */
.pf_c00190 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00190 { /* 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_c00190.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00190 { /* 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_c00190 { /* 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_c00190 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00190 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00190 {overflow:visible;}
  }
}
.c_c00190 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00190 { /* 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_c00190:after { /* webkit #35443 */
  content: '';
}
.t_c00190:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00190 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 */
}
.__c00190 { /* 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_c00190 { /* info for Javascript */
  display:none;
}
.l_c00190 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00190 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00190 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00190: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_c00190 {
    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_c00190.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00190.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_c00190 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00190{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00190;src:url('chunks/assets/font_cfe63ee56e9e10a97d33a3db.woff2')format("woff");}.ff1_c00190{font-family:ff1_c00190;line-height:1.000000;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;}
.m2a_c00190{transform:matrix(0.007955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.007955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.007955,0.000000,0.000000,0.250000,0,0);}
.m19_c00190{transform:matrix(0.011569,0.000127,-0.002750,0.249985,0,0);-ms-transform:matrix(0.011569,0.000127,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.011569,0.000127,-0.002750,0.249985,0,0);}
.m69_c00190{transform:matrix(0.035575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.035575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.035575,0.000000,0.000000,0.250000,0,0);}
.m5e_c00190{transform:matrix(0.046385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.046385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.046385,0.000000,0.000000,0.250000,0,0);}
.mb_c00190{transform:matrix(0.056250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.056250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.056250,0.000000,0.000000,0.250000,0,0);}
.m6f_c00190{transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);}
.m64_c00190{transform:matrix(0.087865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087865,0.000000,0.000000,0.250000,0,0);}
.m70_c00190{transform:matrix(0.091240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.091240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.091240,0.000000,0.000000,0.250000,0,0);}
.m1d_c00190{transform:matrix(0.102674,0.000513,-0.001250,0.249997,0,0);-ms-transform:matrix(0.102674,0.000513,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.102674,0.000513,-0.001250,0.249997,0,0);}
.m1_c00190{transform:matrix(0.104435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.104435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.104435,0.000000,0.000000,0.250000,0,0);}
.m59_c00190{transform:matrix(0.112500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112500,0.000000,0.000000,0.250000,0,0);}
.m71_c00190{transform:matrix(0.120935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120935,0.000000,0.000000,0.250000,0,0);}
.m4d_c00190{transform:matrix(0.133055,-0.001197,0.002250,0.249990,0,0);-ms-transform:matrix(0.133055,-0.001197,0.002250,0.249990,0,0);-webkit-transform:matrix(0.133055,-0.001197,0.002250,0.249990,0,0);}
.m1f_c00190{transform:matrix(0.140523,0.000703,-0.001250,0.249997,0,0);-ms-transform:matrix(0.140523,0.000703,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.140523,0.000703,-0.001250,0.249997,0,0);}
.m3e_c00190{transform:matrix(0.143274,0.002436,-0.004249,0.249964,0,0);-ms-transform:matrix(0.143274,0.002436,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.143274,0.002436,-0.004249,0.249964,0,0);}
.m8_c00190{transform:matrix(0.149534,-0.001346,0.002250,0.249990,0,0);-ms-transform:matrix(0.149534,-0.001346,0.002250,0.249990,0,0);-webkit-transform:matrix(0.149534,-0.001346,0.002250,0.249990,0,0);}
.m77_c00190{transform:matrix(0.161245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161245,0.000000,0.000000,0.250000,0,0);}
.m1c_c00190{transform:matrix(0.164678,0.000823,-0.001250,0.249997,0,0);-ms-transform:matrix(0.164678,0.000823,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.164678,0.000823,-0.001250,0.249997,0,0);}
.m3d_c00190{transform:matrix(0.165551,0.002814,-0.004249,0.249964,0,0);-ms-transform:matrix(0.165551,0.002814,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.165551,0.002814,-0.004249,0.249964,0,0);}
.m47_c00190{transform:matrix(0.184366,0.002950,-0.003999,0.249968,0,0);-ms-transform:matrix(0.184366,0.002950,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.184366,0.002950,-0.003999,0.249968,0,0);}
.m3c_c00190{transform:matrix(0.186508,0.003171,-0.004249,0.249964,0,0);-ms-transform:matrix(0.186508,0.003171,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.186508,0.003171,-0.004249,0.249964,0,0);}
.m4b_c00190{transform:matrix(0.192177,-0.001730,0.002250,0.249990,0,0);-ms-transform:matrix(0.192177,-0.001730,0.002250,0.249990,0,0);-webkit-transform:matrix(0.192177,-0.001730,0.002250,0.249990,0,0);}
.m58_c00190{transform:matrix(0.197542,-0.001778,0.002250,0.249990,0,0);-ms-transform:matrix(0.197542,-0.001778,0.002250,0.249990,0,0);-webkit-transform:matrix(0.197542,-0.001778,0.002250,0.249990,0,0);}
.m6c_c00190{transform:matrix(0.212130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212130,0.000000,0.000000,0.250000,0,0);}
.m74_c00190{transform:matrix(0.222035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222035,0.000000,0.000000,0.250000,0,0);}
.m5c_c00190{transform:matrix(0.231925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231925,0.000000,0.000000,0.250000,0,0);}
.md_c00190{transform:matrix(0.233280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233280,0.000000,0.000000,0.250000,0,0);}
.m4a_c00190{transform:matrix(0.241495,-0.002173,0.002250,0.249990,0,0);-ms-transform:matrix(0.241495,-0.002173,0.002250,0.249990,0,0);-webkit-transform:matrix(0.241495,-0.002173,0.002250,0.249990,0,0);}
.m21_c00190{transform:matrix(0.270942,0.001355,-0.001250,0.249997,0,0);-ms-transform:matrix(0.270942,0.001355,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.270942,0.001355,-0.001250,0.249997,0,0);}
.m54_c00190{transform:matrix(0.273324,-0.002460,0.002250,0.249990,0,0);-ms-transform:matrix(0.273324,-0.002460,0.002250,0.249990,0,0);-webkit-transform:matrix(0.273324,-0.002460,0.002250,0.249990,0,0);}
.m7c_c00190{transform:matrix(0.275860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275860,0.000000,0.000000,0.250000,0,0);}
.m4f_c00190{transform:matrix(0.279319,-0.002514,0.002250,0.249990,0,0);-ms-transform:matrix(0.279319,-0.002514,0.002250,0.249990,0,0);-webkit-transform:matrix(0.279319,-0.002514,0.002250,0.249990,0,0);}
.m52_c00190{transform:matrix(0.279799,-0.002518,0.002250,0.249990,0,0);-ms-transform:matrix(0.279799,-0.002518,0.002250,0.249990,0,0);-webkit-transform:matrix(0.279799,-0.002518,0.002250,0.249990,0,0);}
.m2e_c00190{transform:matrix(0.280235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280235,0.000000,0.000000,0.250000,0,0);}
.m20_c00190{transform:matrix(0.288791,0.001444,-0.001250,0.249997,0,0);-ms-transform:matrix(0.288791,0.001444,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.288791,0.001444,-0.001250,0.249997,0,0);}
.m46_c00190{transform:matrix(0.290868,0.004654,-0.003999,0.249968,0,0);-ms-transform:matrix(0.290868,0.004654,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.290868,0.004654,-0.003999,0.249968,0,0);}
.m7a_c00190{transform:matrix(0.291550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291550,0.000000,0.000000,0.250000,0,0);}
.m26_c00190{transform:matrix(0.292240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292240,0.000000,0.000000,0.250000,0,0);}
.m1b_c00190{transform:matrix(0.314041,0.003454,-0.002750,0.249985,0,0);-ms-transform:matrix(0.314041,0.003454,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.314041,0.003454,-0.002750,0.249985,0,0);}
.m4c_c00190{transform:matrix(0.315937,-0.002843,0.002250,0.249990,0,0);-ms-transform:matrix(0.315937,-0.002843,0.002250,0.249990,0,0);-webkit-transform:matrix(0.315937,-0.002843,0.002250,0.249990,0,0);}
.m12_c00190{transform:matrix(0.317105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317105,0.000000,0.000000,0.250000,0,0);}
.m53_c00190{transform:matrix(0.320587,-0.002885,0.002250,0.249990,0,0);-ms-transform:matrix(0.320587,-0.002885,0.002250,0.249990,0,0);-webkit-transform:matrix(0.320587,-0.002885,0.002250,0.249990,0,0);}
.m3b_c00190{transform:matrix(0.321554,0.005466,-0.004249,0.249964,0,0);-ms-transform:matrix(0.321554,0.005466,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.321554,0.005466,-0.004249,0.249964,0,0);}
.m33_c00190{transform:matrix(0.330400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330400,0.000000,0.000000,0.250000,0,0);}
.m2d_c00190{transform:matrix(0.331375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331375,0.000000,0.000000,0.250000,0,0);}
.m44_c00190{transform:matrix(0.332167,0.005315,-0.003999,0.249968,0,0);-ms-transform:matrix(0.332167,0.005315,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.332167,0.005315,-0.003999,0.249968,0,0);}
.m28_c00190{transform:matrix(0.335060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335060,0.000000,0.000000,0.250000,0,0);}
.m2b_c00190{transform:matrix(0.340535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340535,0.000000,0.000000,0.250000,0,0);}
.m23_c00190{transform:matrix(0.342710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342710,0.000000,0.000000,0.250000,0,0);}
.m51_c00190{transform:matrix(0.344951,-0.003105,0.002250,0.249990,0,0);-ms-transform:matrix(0.344951,-0.003105,0.002250,0.249990,0,0);-webkit-transform:matrix(0.344951,-0.003105,0.002250,0.249990,0,0);}
.mc_c00190{transform:matrix(0.348395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348395,0.000000,0.000000,0.250000,0,0);}
.m22_c00190{transform:matrix(0.348425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348425,0.000000,0.000000,0.250000,0,0);}
.m56_c00190{transform:matrix(0.351636,-0.003165,0.002250,0.249990,0,0);-ms-transform:matrix(0.351636,-0.003165,0.002250,0.249990,0,0);-webkit-transform:matrix(0.351636,-0.003165,0.002250,0.249990,0,0);}
.m32_c00190{transform:matrix(0.352770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352770,0.000000,0.000000,0.250000,0,0);}
.m7d_c00190{transform:matrix(0.356545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356545,0.000000,0.000000,0.250000,0,0);}
.m63_c00190{transform:matrix(0.360390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360390,0.000000,0.000000,0.250000,0,0);}
.m37_c00190{transform:matrix(0.364352,0.006194,-0.004249,0.249964,0,0);-ms-transform:matrix(0.364352,0.006194,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.364352,0.006194,-0.004249,0.249964,0,0);}
.m50_c00190{transform:matrix(0.365610,-0.003290,0.002250,0.249990,0,0);-ms-transform:matrix(0.365610,-0.003290,0.002250,0.249990,0,0);-webkit-transform:matrix(0.365610,-0.003290,0.002250,0.249990,0,0);}
.m1e_c00190{transform:matrix(0.369895,0.001849,-0.001250,0.249997,0,0);-ms-transform:matrix(0.369895,0.001849,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.369895,0.001849,-0.001250,0.249997,0,0);}
.m24_c00190{transform:matrix(0.382735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382735,0.000000,0.000000,0.250000,0,0);}
.m3f_c00190{transform:matrix(0.388080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388080,0.000000,0.000000,0.250000,0,0);}
.m48_c00190{transform:matrix(0.391100,0.006258,-0.003999,0.249968,0,0);-ms-transform:matrix(0.391100,0.006258,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.391100,0.006258,-0.003999,0.249968,0,0);}
.m29_c00190{transform:matrix(0.397290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397290,0.000000,0.000000,0.250000,0,0);}
.m31_c00190{transform:matrix(0.403120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403120,0.000000,0.000000,0.250000,0,0);}
.m11_c00190{transform:matrix(0.404050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404050,0.000000,0.000000,0.250000,0,0);}
.m55_c00190{transform:matrix(0.407034,-0.003663,0.002250,0.249990,0,0);-ms-transform:matrix(0.407034,-0.003663,0.002250,0.249990,0,0);-webkit-transform:matrix(0.407034,-0.003663,0.002250,0.249990,0,0);}
.me_c00190{transform:matrix(0.410050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410050,0.000000,0.000000,0.250000,0,0);}
.m15_c00190{transform:matrix(0.417030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417030,0.000000,0.000000,0.250000,0,0);}
.m38_c00190{transform:matrix(0.418500,0.007114,-0.004249,0.249964,0,0);-ms-transform:matrix(0.418500,0.007114,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.418500,0.007114,-0.004249,0.249964,0,0);}
.m34_c00190{transform:matrix(0.424109,0.007210,-0.004249,0.249964,0,0);-ms-transform:matrix(0.424109,0.007210,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.424109,0.007210,-0.004249,0.249964,0,0);}
.m35_c00190{transform:matrix(0.431903,0.007342,-0.004249,0.249964,0,0);-ms-transform:matrix(0.431903,0.007342,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.431903,0.007342,-0.004249,0.249964,0,0);}
.m3_c00190{transform:matrix(0.435312,-0.003918,0.002250,0.249990,0,0);-ms-transform:matrix(0.435312,-0.003918,0.002250,0.249990,0,0);-webkit-transform:matrix(0.435312,-0.003918,0.002250,0.249990,0,0);}
.m73_c00190{transform:matrix(0.437380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437380,0.000000,0.000000,0.250000,0,0);}
.m5_c00190{transform:matrix(0.439097,-0.003952,0.002250,0.249990,0,0);-ms-transform:matrix(0.439097,-0.003952,0.002250,0.249990,0,0);-webkit-transform:matrix(0.439097,-0.003952,0.002250,0.249990,0,0);}
.m45_c00190{transform:matrix(0.445923,0.007135,-0.003999,0.249968,0,0);-ms-transform:matrix(0.445923,0.007135,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.445923,0.007135,-0.003999,0.249968,0,0);}
.m2c_c00190{transform:matrix(0.453075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453075,0.000000,0.000000,0.250000,0,0);}
.m14_c00190{transform:matrix(0.460790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460790,0.000000,0.000000,0.250000,0,0);}
.m3a_c00190{transform:matrix(0.464618,0.007899,-0.004249,0.249964,0,0);-ms-transform:matrix(0.464618,0.007899,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.464618,0.007899,-0.004249,0.249964,0,0);}
.m36_c00190{transform:matrix(0.474546,0.008067,-0.004249,0.249964,0,0);-ms-transform:matrix(0.474546,0.008067,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.474546,0.008067,-0.004249,0.249964,0,0);}
.m49_c00190{transform:matrix(0.474741,-0.004273,0.002250,0.249990,0,0);-ms-transform:matrix(0.474741,-0.004273,0.002250,0.249990,0,0);-webkit-transform:matrix(0.474741,-0.004273,0.002250,0.249990,0,0);}
.m13_c00190{transform:matrix(0.476085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.476085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.476085,0.000000,0.000000,0.250000,0,0);}
.m5d_c00190{transform:matrix(0.484275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484275,0.000000,0.000000,0.250000,0,0);}
.m39_c00190{transform:matrix(0.492354,0.008370,-0.004249,0.249964,0,0);-ms-transform:matrix(0.492354,0.008370,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.492354,0.008370,-0.004249,0.249964,0,0);}
.m78_c00190{transform:matrix(0.495910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495910,0.000000,0.000000,0.250000,0,0);}
.m2_c00190{transform:matrix(0.509984,-0.004590,0.002250,0.249990,0,0);-ms-transform:matrix(0.509984,-0.004590,0.002250,0.249990,0,0);-webkit-transform:matrix(0.509984,-0.004590,0.002250,0.249990,0,0);}
.m76_c00190{transform:matrix(0.530330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530330,0.000000,0.000000,0.250000,0,0);}
.m27_c00190{transform:matrix(0.536970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536970,0.000000,0.000000,0.250000,0,0);}
.m41_c00190{transform:matrix(0.553329,0.008853,-0.003999,0.249968,0,0);-ms-transform:matrix(0.553329,0.008853,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.553329,0.008853,-0.003999,0.249968,0,0);}
.m5b_c00190{transform:matrix(0.567480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567480,0.000000,0.000000,0.250000,0,0);}
.m4_c00190{transform:matrix(0.589401,-0.005305,0.002250,0.249990,0,0);-ms-transform:matrix(0.589401,-0.005305,0.002250,0.249990,0,0);-webkit-transform:matrix(0.589401,-0.005305,0.002250,0.249990,0,0);}
.m60_c00190{transform:matrix(0.622905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.622905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.622905,0.000000,0.000000,0.250000,0,0);}
.m57_c00190{transform:matrix(0.652674,-0.005874,0.002250,0.249990,0,0);-ms-transform:matrix(0.652674,-0.005874,0.002250,0.249990,0,0);-webkit-transform:matrix(0.652674,-0.005874,0.002250,0.249990,0,0);}
.m18_c00190{transform:matrix(0.656170,0.007218,-0.002750,0.249985,0,0);-ms-transform:matrix(0.656170,0.007218,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.656170,0.007218,-0.002750,0.249985,0,0);}
.m0_c00190{transform:matrix(0.678905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.678905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.678905,0.000000,0.000000,0.250000,0,0);}
.m79_c00190{transform:matrix(0.687315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687315,0.000000,0.000000,0.250000,0,0);}
.m30_c00190{transform:matrix(0.693700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.693700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.693700,0.000000,0.000000,0.250000,0,0);}
.m5f_c00190{transform:matrix(0.698950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.698950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.698950,0.000000,0.000000,0.250000,0,0);}
.mf_c00190{transform:matrix(0.703640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.703640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.703640,0.000000,0.000000,0.250000,0,0);}
.m6d_c00190{transform:matrix(0.731470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.731470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.731470,0.000000,0.000000,0.250000,0,0);}
.m61_c00190{transform:matrix(0.743265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.743265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.743265,0.000000,0.000000,0.250000,0,0);}
.ma_c00190{transform:matrix(0.822165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.822165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.822165,0.000000,0.000000,0.250000,0,0);}
.m7_c00190{transform:matrix(0.855955,-0.007704,0.002250,0.249990,0,0);-ms-transform:matrix(0.855955,-0.007704,0.002250,0.249990,0,0);-webkit-transform:matrix(0.855955,-0.007704,0.002250,0.249990,0,0);}
.m6a_c00190{transform:matrix(0.872530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.872530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.872530,0.000000,0.000000,0.250000,0,0);}
.m4e_c00190{transform:matrix(0.873065,-0.007858,0.002250,0.249990,0,0);-ms-transform:matrix(0.873065,-0.007858,0.002250,0.249990,0,0);-webkit-transform:matrix(0.873065,-0.007858,0.002250,0.249990,0,0);}
.m17_c00190{transform:matrix(0.884701,0.009732,-0.002750,0.249985,0,0);-ms-transform:matrix(0.884701,0.009732,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.884701,0.009732,-0.002750,0.249985,0,0);}
.m43_c00190{transform:matrix(0.938580,0.015017,-0.003999,0.249968,0,0);-ms-transform:matrix(0.938580,0.015017,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.938580,0.015017,-0.003999,0.249968,0,0);}
.m67_c00190{transform:matrix(0.979785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.979785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.979785,0.000000,0.000000,0.250000,0,0);}
.m16_c00190{transform:matrix(0.998140,0.010980,-0.002750,0.249985,0,0);-ms-transform:matrix(0.998140,0.010980,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.998140,0.010980,-0.002750,0.249985,0,0);}
.m62_c00190{transform:matrix(1.034295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.034295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.034295,0.000000,0.000000,0.250000,0,0);}
.m40_c00190{transform:matrix(1.055955,0.016895,-0.003999,0.249968,0,0);-ms-transform:matrix(1.055955,0.016895,-0.003999,0.249968,0,0);-webkit-transform:matrix(1.055955,0.016895,-0.003999,0.249968,0,0);}
.m42_c00190{transform:matrix(1.082821,0.017325,-0.003999,0.249968,0,0);-ms-transform:matrix(1.082821,0.017325,-0.003999,0.249968,0,0);-webkit-transform:matrix(1.082821,0.017325,-0.003999,0.249968,0,0);}
.m25_c00190{transform:matrix(1.088935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.088935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.088935,0.000000,0.000000,0.250000,0,0);}
.m75_c00190{transform:matrix(1.112225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.112225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.112225,0.000000,0.000000,0.250000,0,0);}
.m72_c00190{transform:matrix(1.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.248250,0.000000,0.000000,0.250000,0,0);}
.m6b_c00190{transform:matrix(1.300250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.300250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.300250,0.000000,0.000000,0.250000,0,0);}
.m10_c00190{transform:matrix(1.303490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.303490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.303490,0.000000,0.000000,0.250000,0,0);}
.m1a_c00190{transform:matrix(1.310386,0.014414,-0.002750,0.249985,0,0);-ms-transform:matrix(1.310386,0.014414,-0.002750,0.249985,0,0);-webkit-transform:matrix(1.310386,0.014414,-0.002750,0.249985,0,0);}
.m65_c00190{transform:matrix(1.386675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.386675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.386675,0.000000,0.000000,0.250000,0,0);}
.m66_c00190{transform:matrix(1.559375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.559375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.559375,0.000000,0.000000,0.250000,0,0);}
.m2f_c00190{transform:matrix(1.611750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.611750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.611750,0.000000,0.000000,0.250000,0,0);}
.m9_c00190{transform:matrix(2.014010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.014010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.014010,0.000000,0.000000,0.250000,0,0);}
.m6_c00190{transform:matrix(2.026563,-0.018239,0.002250,0.249990,0,0);-ms-transform:matrix(2.026563,-0.018239,0.002250,0.249990,0,0);-webkit-transform:matrix(2.026563,-0.018239,0.002250,0.249990,0,0);}
.m6e_c00190{transform:matrix(2.049300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.049300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.049300,0.000000,0.000000,0.250000,0,0);}
.m5a_c00190{transform:matrix(2.276005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.276005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.276005,0.000000,0.000000,0.250000,0,0);}
.m68_c00190{transform:matrix(2.972130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.972130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.972130,0.000000,0.000000,0.250000,0,0);}
.m7b_c00190{transform:matrix(5.927295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.927295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.927295,0.000000,0.000000,0.250000,0,0);}
.v0_c00190{vertical-align:0.000000px;}
.ls0_c00190{letter-spacing:0.000000px;}
.sc__c00190{text-shadow:none;}
.sc0_c00190{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__c00190{-webkit-text-stroke:0px transparent;}
.sc0_c00190{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00190{word-spacing:0.000000px;}
._0_c00190{width:7.024945px;}
.fc0_c00190{color:transparent;}
.fs12_c00190{font-size:18.000000px;}
.fs11_c00190{font-size:24.000000px;}
.fs0_c00190{font-size:36.000000px;}
.fse_c00190{font-size:36.004608px;}
.fs8_c00190{font-size:66.000000px;}
.fs5_c00190{font-size:66.003993px;}
.fsb_c00190{font-size:66.009536px;}
.fs1_c00190{font-size:72.000000px;}
.fs4_c00190{font-size:78.000000px;}
.fs2_c00190{font-size:84.003402px;}
.fsa_c00190{font-size:90.000000px;}
.fs9_c00190{font-size:96.000000px;}
.fs10_c00190{font-size:96.003888px;}
.fsd_c00190{font-size:114.000000px;}
.fs3_c00190{font-size:120.000000px;}
.fsf_c00190{font-size:156.006318px;}
.fs7_c00190{font-size:180.002250px;}
.fsc_c00190{font-size:186.026875px;}
.fs6_c00190{font-size:216.013068px;}
.y0_c00190{bottom:0.000000px;}
.y4d_c00190{bottom:0.630000px;}
.y39_c00190{bottom:1.936944px;}
.y38_c00190{bottom:2.126472px;}
.y37_c00190{bottom:2.441796px;}
.y36_c00190{bottom:3.224508px;}
.y4c_c00190{bottom:3.510000px;}
.y35_c00190{bottom:3.875220px;}
.y34_c00190{bottom:5.400432px;}
.y4b_c00190{bottom:5.583000px;}
.y33_c00190{bottom:7.102320px;}
.y32_c00190{bottom:8.307240px;}
.y31_c00190{bottom:9.453000px;}
.y4a_c00190{bottom:24.570000px;}
.y45_c00190{bottom:39.585245px;}
.y47_c00190{bottom:39.585264px;}
.y43_c00190{bottom:39.585392px;}
.y46_c00190{bottom:39.585411px;}
.y49_c00190{bottom:39.585450px;}
.y48_c00190{bottom:39.585490px;}
.y42_c00190{bottom:39.585825px;}
.y44_c00190{bottom:39.585948px;}
.y41_c00190{bottom:39.586139px;}
.y40_c00190{bottom:39.586182px;}
.y3f_c00190{bottom:39.586640px;}
.y30_c00190{bottom:40.770000px;}
.y3a_c00190{bottom:62.641500px;}
.y3b_c00190{bottom:64.431357px;}
.y3c_c00190{bottom:64.999072px;}
.y3d_c00190{bottom:65.232433px;}
.y3e_c00190{bottom:66.981872px;}
.y2f_c00190{bottom:110.275937px;}
.y2e_c00190{bottom:115.077739px;}
.y2d_c00190{bottom:115.826645px;}
.y2c_c00190{bottom:139.985563px;}
.y2b_c00190{bottom:141.389900px;}
.y2a_c00190{bottom:142.570932px;}
.y29_c00190{bottom:143.642646px;}
.y28_c00190{bottom:145.105173px;}
.y27_c00190{bottom:146.023045px;}
.y26_c00190{bottom:148.657629px;}
.y25_c00190{bottom:151.224000px;}
.y24_c00190{bottom:177.853500px;}
.y23_c00190{bottom:178.410000px;}
.y22_c00190{bottom:178.687500px;}
.y21_c00190{bottom:179.596500px;}
.y20_c00190{bottom:180.360000px;}
.y1f_c00190{bottom:198.174000px;}
.y1e_c00190{bottom:200.221500px;}
.y1d_c00190{bottom:202.099500px;}
.y1c_c00190{bottom:203.251500px;}
.y1b_c00190{bottom:206.743500px;}
.y1a_c00190{bottom:212.155500px;}
.y19_c00190{bottom:214.665000px;}
.y18_c00190{bottom:283.257000px;}
.y17_c00190{bottom:317.702018px;}
.y16_c00190{bottom:318.407955px;}
.y15_c00190{bottom:319.286715px;}
.y14_c00190{bottom:319.844415px;}
.y13_c00190{bottom:320.176492px;}
.y12_c00190{bottom:320.607000px;}
.y10_c00190{bottom:333.075926px;}
.y11_c00190{bottom:333.076574px;}
.yf_c00190{bottom:378.497411px;}
.ye_c00190{bottom:384.597922px;}
.yd_c00190{bottom:385.626434px;}
.yc_c00190{bottom:387.453000px;}
.yb_c00190{bottom:457.614000px;}
.ya_c00190{bottom:599.050500px;}
.y3_c00190{bottom:632.343000px;}
.y4_c00190{bottom:632.960288px;}
.y5_c00190{bottom:633.983277px;}
.y6_c00190{bottom:634.608907px;}
.y7_c00190{bottom:635.207929px;}
.y8_c00190{bottom:639.458661px;}
.y9_c00190{bottom:640.099209px;}
.y2_c00190{bottom:657.450000px;}
.y1_c00190{bottom:677.430000px;}
.h13_c00190{height:18.000000px;}
.h12_c00190{height:24.000000px;}
.h1_c00190{height:36.000000px;}
.hf_c00190{height:36.004608px;}
.h9_c00190{height:66.000000px;}
.h6_c00190{height:66.003993px;}
.hc_c00190{height:66.009536px;}
.h2_c00190{height:72.000000px;}
.h5_c00190{height:78.000000px;}
.h3_c00190{height:84.003402px;}
.hb_c00190{height:90.000000px;}
.ha_c00190{height:96.000000px;}
.h11_c00190{height:96.003888px;}
.he_c00190{height:114.000000px;}
.h4_c00190{height:120.000000px;}
.h10_c00190{height:156.006318px;}
.h8_c00190{height:180.002250px;}
.hd_c00190{height:186.026875px;}
.h7_c00190{height:216.013068px;}
.h0_c00190{height:682.500000px;}
.w0_c00190{width:924.450000px;}
.w1_c00190{width:924.750000px;}
.x0_c00190{left:0.000000px;}
.x3b_c00190{left:1.533000px;}
.x1_c00190{left:7.020000px;}
.x2_c00190{left:20.580000px;}
.x3a_c00190{left:35.640000px;}
.x2c_c00190{left:51.196500px;}
.x45_c00190{left:54.806123px;}
.x26_c00190{left:56.230500px;}
.x9_c00190{left:57.510000px;}
.xf_c00190{left:58.590000px;}
.x16_c00190{left:65.826000px;}
.x3c_c00190{left:73.143000px;}
.x3e_c00190{left:84.670056px;}
.x3_c00190{left:89.167500px;}
.x30_c00190{left:93.607500px;}
.x1a_c00190{left:111.512952px;}
.x3f_c00190{left:120.838404px;}
.x41_c00190{left:127.089000px;}
.x3d_c00190{left:148.450500px;}
.x38_c00190{left:163.469876px;}
.x27_c00190{left:181.731000px;}
.x40_c00190{left:192.402624px;}
.x4_c00190{left:202.833000px;}
.x4f_c00190{left:203.850000px;}
.x5d_c00190{left:205.200000px;}
.x55_c00190{left:221.130000px;}
.x46_c00190{left:224.102339px;}
.x17_c00190{left:231.877500px;}
.x5e_c00190{left:235.440000px;}
.x31_c00190{left:244.570500px;}
.x10_c00190{left:248.670000px;}
.x56_c00190{left:252.450000px;}
.x5f_c00190{left:258.930000px;}
.x5_c00190{left:272.347500px;}
.x60_c00190{left:283.500000px;}
.x1c_c00190{left:287.950500px;}
.x47_c00190{left:296.735225px;}
.x57_c00190{left:306.990000px;}
.x18_c00190{left:325.378500px;}
.x6_c00190{left:338.905500px;}
.x58_c00190{left:342.900000px;}
.x1d_c00190{left:354.366000px;}
.x61_c00190{left:359.370000px;}
.x48_c00190{left:365.587800px;}
.x62_c00190{left:371.790000px;}
.x2d_c00190{left:385.513500px;}
.x63_c00190{left:386.910000px;}
.x42_c00190{left:389.041500px;}
.x49_c00190{left:397.178865px;}
.x32_c00190{left:399.546000px;}
.xa_c00190{left:402.030000px;}
.x1b_c00190{left:412.581384px;}
.x43_c00190{left:414.970500px;}
.x50_c00190{left:418.230000px;}
.x11_c00190{left:424.710000px;}
.x4a_c00190{left:431.200119px;}
.x2e_c00190{left:441.076500px;}
.x28_c00190{left:452.319000px;}
.x33_c00190{left:453.538500px;}
.x64_c00190{left:463.050000px;}
.x1e_c00190{left:465.906000px;}
.x21_c00190{left:476.820000px;}
.x59_c00190{left:477.900000px;}
.x4b_c00190{left:489.521844px;}
.x4c_c00190{left:521.382922px;}
.x22_c00190{left:525.960000px;}
.x65_c00190{left:532.170000px;}
.x34_c00190{left:539.569500px;}
.x23_c00190{left:545.400000px;}
.x2f_c00190{left:552.313500px;}
.x66_c00190{left:566.730000px;}
.x12_c00190{left:574.560000px;}
.x35_c00190{left:602.611500px;}
.x5a_c00190{left:604.800000px;}
.x44_c00190{left:609.352500px;}
.x5b_c00190{left:619.380000px;}
.x29_c00190{left:626.890500px;}
.x13_c00190{left:630.180000px;}
.xb_c00190{left:639.630000px;}
.x1f_c00190{left:641.658000px;}
.x4d_c00190{left:642.888264px;}
.x67_c00190{left:655.830000px;}
.x36_c00190{left:672.084000px;}
.x2a_c00190{left:684.517500px;}
.x5c_c00190{left:686.610000px;}
.x24_c00190{left:692.010000px;}
.x68_c00190{left:695.790000px;}
.xc_c00190{left:703.080000px;}
.x14_c00190{left:704.970000px;}
.x69_c00190{left:720.360000px;}
.x6a_c00190{left:730.890000px;}
.x51_c00190{left:741.690000px;}
.xd_c00190{left:752.220000px;}
.x37_c00190{left:754.692000px;}
.x2b_c00190{left:778.386000px;}
.x20_c00190{left:782.845500px;}
.x52_c00190{left:788.130000px;}
.x7_c00190{left:811.209000px;}
.xe_c00190{left:837.540000px;}
.x53_c00190{left:844.290000px;}
.x39_c00190{left:849.545487px;}
.x25_c00190{left:867.240000px;}
.x15_c00190{left:868.320000px;}
.x19_c00190{left:879.970500px;}
.x8_c00190{left:882.381000px;}
.x54_c00190{left:902.340000px;}
.x6b_c00190{left:918.540000px;}
.x4e_c00190{left:922.860000px;}
@media print{
.v0_c00190{vertical-align:0.000000pt;}
.ls0_c00190{letter-spacing:0.000000pt;}
.ws0_c00190{word-spacing:0.000000pt;}
._0_c00190{width:6.244396pt;}
.fs12_c00190{font-size:16.000000pt;}
.fs11_c00190{font-size:21.333333pt;}
.fs0_c00190{font-size:32.000000pt;}
.fse_c00190{font-size:32.004096pt;}
.fs8_c00190{font-size:58.666667pt;}
.fs5_c00190{font-size:58.670216pt;}
.fsb_c00190{font-size:58.675143pt;}
.fs1_c00190{font-size:64.000000pt;}
.fs4_c00190{font-size:69.333333pt;}
.fs2_c00190{font-size:74.669691pt;}
.fsa_c00190{font-size:80.000000pt;}
.fs9_c00190{font-size:85.333333pt;}
.fs10_c00190{font-size:85.336789pt;}
.fsd_c00190{font-size:101.333333pt;}
.fs3_c00190{font-size:106.666667pt;}
.fsf_c00190{font-size:138.672283pt;}
.fs7_c00190{font-size:160.002000pt;}
.fsc_c00190{font-size:165.357222pt;}
.fs6_c00190{font-size:192.011616pt;}
.y0_c00190{bottom:0.000000pt;}
.y4d_c00190{bottom:0.560000pt;}
.y39_c00190{bottom:1.721728pt;}
.y38_c00190{bottom:1.890197pt;}
.y37_c00190{bottom:2.170485pt;}
.y36_c00190{bottom:2.866229pt;}
.y4c_c00190{bottom:3.120000pt;}
.y35_c00190{bottom:3.444640pt;}
.y34_c00190{bottom:4.800384pt;}
.y4b_c00190{bottom:4.962667pt;}
.y33_c00190{bottom:6.313173pt;}
.y32_c00190{bottom:7.384213pt;}
.y31_c00190{bottom:8.402667pt;}
.y4a_c00190{bottom:21.840000pt;}
.y45_c00190{bottom:35.186884pt;}
.y47_c00190{bottom:35.186901pt;}
.y43_c00190{bottom:35.187015pt;}
.y46_c00190{bottom:35.187032pt;}
.y49_c00190{bottom:35.187067pt;}
.y48_c00190{bottom:35.187103pt;}
.y42_c00190{bottom:35.187400pt;}
.y44_c00190{bottom:35.187509pt;}
.y41_c00190{bottom:35.187679pt;}
.y40_c00190{bottom:35.187717pt;}
.y3f_c00190{bottom:35.188124pt;}
.y30_c00190{bottom:36.240000pt;}
.y3a_c00190{bottom:55.681333pt;}
.y3b_c00190{bottom:57.272317pt;}
.y3c_c00190{bottom:57.776953pt;}
.y3d_c00190{bottom:57.984385pt;}
.y3e_c00190{bottom:59.539441pt;}
.y2f_c00190{bottom:98.023055pt;}
.y2e_c00190{bottom:102.291324pt;}
.y2d_c00190{bottom:102.957017pt;}
.y2c_c00190{bottom:124.431612pt;}
.y2b_c00190{bottom:125.679911pt;}
.y2a_c00190{bottom:126.729717pt;}
.y29_c00190{bottom:127.682352pt;}
.y28_c00190{bottom:128.982376pt;}
.y27_c00190{bottom:129.798263pt;}
.y26_c00190{bottom:132.140115pt;}
.y25_c00190{bottom:134.421333pt;}
.y24_c00190{bottom:158.092000pt;}
.y23_c00190{bottom:158.586667pt;}
.y22_c00190{bottom:158.833333pt;}
.y21_c00190{bottom:159.641333pt;}
.y20_c00190{bottom:160.320000pt;}
.y1f_c00190{bottom:176.154667pt;}
.y1e_c00190{bottom:177.974667pt;}
.y1d_c00190{bottom:179.644000pt;}
.y1c_c00190{bottom:180.668000pt;}
.y1b_c00190{bottom:183.772000pt;}
.y1a_c00190{bottom:188.582667pt;}
.y19_c00190{bottom:190.813333pt;}
.y18_c00190{bottom:251.784000pt;}
.y17_c00190{bottom:282.401793pt;}
.y16_c00190{bottom:283.029293pt;}
.y15_c00190{bottom:283.810413pt;}
.y14_c00190{bottom:284.306147pt;}
.y13_c00190{bottom:284.601327pt;}
.y12_c00190{bottom:284.984000pt;}
.y10_c00190{bottom:296.067489pt;}
.y11_c00190{bottom:296.068065pt;}
.yf_c00190{bottom:336.442143pt;}
.ye_c00190{bottom:341.864820pt;}
.yd_c00190{bottom:342.779052pt;}
.yc_c00190{bottom:344.402667pt;}
.yb_c00190{bottom:406.768000pt;}
.ya_c00190{bottom:532.489333pt;}
.y3_c00190{bottom:562.082667pt;}
.y4_c00190{bottom:562.631367pt;}
.y5_c00190{bottom:563.540691pt;}
.y6_c00190{bottom:564.096807pt;}
.y7_c00190{bottom:564.629271pt;}
.y8_c00190{bottom:568.407699pt;}
.y9_c00190{bottom:568.977075pt;}
.y2_c00190{bottom:584.400000pt;}
.y1_c00190{bottom:602.160000pt;}
.h13_c00190{height:16.000000pt;}
.h12_c00190{height:21.333333pt;}
.h1_c00190{height:32.000000pt;}
.hf_c00190{height:32.004096pt;}
.h9_c00190{height:58.666667pt;}
.h6_c00190{height:58.670216pt;}
.hc_c00190{height:58.675143pt;}
.h2_c00190{height:64.000000pt;}
.h5_c00190{height:69.333333pt;}
.h3_c00190{height:74.669691pt;}
.hb_c00190{height:80.000000pt;}
.ha_c00190{height:85.333333pt;}
.h11_c00190{height:85.336789pt;}
.he_c00190{height:101.333333pt;}
.h4_c00190{height:106.666667pt;}
.h10_c00190{height:138.672283pt;}
.h8_c00190{height:160.002000pt;}
.hd_c00190{height:165.357222pt;}
.h7_c00190{height:192.011616pt;}
.h0_c00190{height:606.666667pt;}
.w0_c00190{width:821.733333pt;}
.w1_c00190{width:822.000000pt;}
.x0_c00190{left:0.000000pt;}
.x3b_c00190{left:1.362667pt;}
.x1_c00190{left:6.240000pt;}
.x2_c00190{left:18.293333pt;}
.x3a_c00190{left:31.680000pt;}
.x2c_c00190{left:45.508000pt;}
.x45_c00190{left:48.716553pt;}
.x26_c00190{left:49.982667pt;}
.x9_c00190{left:51.120000pt;}
.xf_c00190{left:52.080000pt;}
.x16_c00190{left:58.512000pt;}
.x3c_c00190{left:65.016000pt;}
.x3e_c00190{left:75.262272pt;}
.x3_c00190{left:79.260000pt;}
.x30_c00190{left:83.206667pt;}
.x1a_c00190{left:99.122624pt;}
.x3f_c00190{left:107.411915pt;}
.x41_c00190{left:112.968000pt;}
.x3d_c00190{left:131.956000pt;}
.x38_c00190{left:145.306556pt;}
.x27_c00190{left:161.538667pt;}
.x40_c00190{left:171.024555pt;}
.x4_c00190{left:180.296000pt;}
.x4f_c00190{left:181.200000pt;}
.x5d_c00190{left:182.400000pt;}
.x55_c00190{left:196.560000pt;}
.x46_c00190{left:199.202079pt;}
.x17_c00190{left:206.113333pt;}
.x5e_c00190{left:209.280000pt;}
.x31_c00190{left:217.396000pt;}
.x10_c00190{left:221.040000pt;}
.x56_c00190{left:224.400000pt;}
.x5f_c00190{left:230.160000pt;}
.x5_c00190{left:242.086667pt;}
.x60_c00190{left:252.000000pt;}
.x1c_c00190{left:255.956000pt;}
.x47_c00190{left:263.764644pt;}
.x57_c00190{left:272.880000pt;}
.x18_c00190{left:289.225333pt;}
.x6_c00190{left:301.249333pt;}
.x58_c00190{left:304.800000pt;}
.x1d_c00190{left:314.992000pt;}
.x61_c00190{left:319.440000pt;}
.x48_c00190{left:324.966933pt;}
.x62_c00190{left:330.480000pt;}
.x2d_c00190{left:342.678667pt;}
.x63_c00190{left:343.920000pt;}
.x42_c00190{left:345.814667pt;}
.x49_c00190{left:353.047880pt;}
.x32_c00190{left:355.152000pt;}
.xa_c00190{left:357.360000pt;}
.x1b_c00190{left:366.739008pt;}
.x43_c00190{left:368.862667pt;}
.x50_c00190{left:371.760000pt;}
.x11_c00190{left:377.520000pt;}
.x4a_c00190{left:383.288995pt;}
.x2e_c00190{left:392.068000pt;}
.x28_c00190{left:402.061333pt;}
.x33_c00190{left:403.145333pt;}
.x64_c00190{left:411.600000pt;}
.x1e_c00190{left:414.138667pt;}
.x21_c00190{left:423.840000pt;}
.x59_c00190{left:424.800000pt;}
.x4b_c00190{left:435.130528pt;}
.x4c_c00190{left:463.451487pt;}
.x22_c00190{left:467.520000pt;}
.x65_c00190{left:473.040000pt;}
.x34_c00190{left:479.617333pt;}
.x23_c00190{left:484.800000pt;}
.x2f_c00190{left:490.945333pt;}
.x66_c00190{left:503.760000pt;}
.x12_c00190{left:510.720000pt;}
.x35_c00190{left:535.654667pt;}
.x5a_c00190{left:537.600000pt;}
.x44_c00190{left:541.646667pt;}
.x5b_c00190{left:550.560000pt;}
.x29_c00190{left:557.236000pt;}
.x13_c00190{left:560.160000pt;}
.xb_c00190{left:568.560000pt;}
.x1f_c00190{left:570.362667pt;}
.x4d_c00190{left:571.456235pt;}
.x67_c00190{left:582.960000pt;}
.x36_c00190{left:597.408000pt;}
.x2a_c00190{left:608.460000pt;}
.x5c_c00190{left:610.320000pt;}
.x24_c00190{left:615.120000pt;}
.x68_c00190{left:618.480000pt;}
.xc_c00190{left:624.960000pt;}
.x14_c00190{left:626.640000pt;}
.x69_c00190{left:640.320000pt;}
.x6a_c00190{left:649.680000pt;}
.x51_c00190{left:659.280000pt;}
.xd_c00190{left:668.640000pt;}
.x37_c00190{left:670.837333pt;}
.x2b_c00190{left:691.898667pt;}
.x20_c00190{left:695.862667pt;}
.x52_c00190{left:700.560000pt;}
.x7_c00190{left:721.074667pt;}
.xe_c00190{left:744.480000pt;}
.x53_c00190{left:750.480000pt;}
.x39_c00190{left:755.151544pt;}
.x25_c00190{left:770.880000pt;}
.x15_c00190{left:771.840000pt;}
.x19_c00190{left:782.196000pt;}
.x8_c00190{left:784.338667pt;}
.x54_c00190{left:802.080000pt;}
.x6b_c00190{left:816.480000pt;}
.x4e_c00190{left:820.320000pt;}
}





/* 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_c00191 {
    display:none;
  }
  .loading-indicator_c00191.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00191 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_c00191 { 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_c00191" -> "#page-container .classname_c00191")
 */
.pf_c00191 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00191 { /* 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_c00191.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00191 { /* 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_c00191 { /* 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_c00191 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00191 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00191 {overflow:visible;}
  }
}
.c_c00191 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00191 { /* 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_c00191:after { /* webkit #35443 */
  content: '';
}
.t_c00191:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00191 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 */
}
.__c00191 { /* 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_c00191 { /* info for Javascript */
  display:none;
}
.l_c00191 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00191 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00191 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00191: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_c00191 {
    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_c00191.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00191.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_c00191 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00191{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00191;src:url('chunks/assets/font_6b78c10203a447bee2208e8d.woff2')format("woff");}.ff1_c00191{font-family:ff1_c00191;line-height:1.000000;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;}
.m3_c00191{transform:matrix(0.253795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253795,0.000000,0.000000,0.250000,0,0);}
.m6_c00191{transform:matrix(0.269815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269815,0.000000,0.000000,0.250000,0,0);}
.m0_c00191{transform:matrix(0.272425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272425,0.000000,0.000000,0.250000,0,0);}
.m7_c00191{transform:matrix(0.348170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348170,0.000000,0.000000,0.250000,0,0);}
.m4_c00191{transform:matrix(0.403855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403855,0.000000,0.000000,0.250000,0,0);}
.m2_c00191{transform:matrix(0.552200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552200,0.000000,0.000000,0.250000,0,0);}
.m1_c00191{transform:matrix(0.774685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.774685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.774685,0.000000,0.000000,0.250000,0,0);}
.m5_c00191{transform:matrix(0.969315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.969315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.969315,0.000000,0.000000,0.250000,0,0);}
.v0_c00191{vertical-align:0.000000px;}
.ls0_c00191{letter-spacing:0.000000px;}
.sc__c00191{text-shadow:none;}
.sc0_c00191{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__c00191{-webkit-text-stroke:0px transparent;}
.sc0_c00191{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00191{word-spacing:0.000000px;}
.fc0_c00191{color:transparent;}
.fs0_c00191{font-size:120.000000px;}
.fs1_c00191{font-size:180.000000px;}
.y0_c00191{bottom:0.000000px;}
.y4_c00191{bottom:125.221500px;}
.y3_c00191{bottom:126.163500px;}
.y2_c00191{bottom:127.444500px;}
.y1_c00191{bottom:170.809500px;}
.h1_c00191{height:120.000000px;}
.h2_c00191{height:180.000000px;}
.h0_c00191{height:682.500000px;}
.w0_c00191{width:924.450000px;}
.w1_c00191{width:924.750000px;}
.x0_c00191{left:0.000000px;}
.x1_c00191{left:22.410000px;}
.x6_c00191{left:24.657000px;}
.x2_c00191{left:32.130000px;}
.x3_c00191{left:125.010000px;}
.x7_c00191{left:207.696000px;}
.x4_c00191{left:283.500000px;}
.x5_c00191{left:321.840000px;}
.x8_c00191{left:342.175500px;}
@media print{
.v0_c00191{vertical-align:0.000000pt;}
.ls0_c00191{letter-spacing:0.000000pt;}
.ws0_c00191{word-spacing:0.000000pt;}
.fs0_c00191{font-size:106.666667pt;}
.fs1_c00191{font-size:160.000000pt;}
.y0_c00191{bottom:0.000000pt;}
.y4_c00191{bottom:111.308000pt;}
.y3_c00191{bottom:112.145333pt;}
.y2_c00191{bottom:113.284000pt;}
.y1_c00191{bottom:151.830667pt;}
.h1_c00191{height:106.666667pt;}
.h2_c00191{height:160.000000pt;}
.h0_c00191{height:606.666667pt;}
.w0_c00191{width:821.733333pt;}
.w1_c00191{width:822.000000pt;}
.x0_c00191{left:0.000000pt;}
.x1_c00191{left:19.920000pt;}
.x6_c00191{left:21.917333pt;}
.x2_c00191{left:28.560000pt;}
.x3_c00191{left:111.120000pt;}
.x7_c00191{left:184.618667pt;}
.x4_c00191{left:252.000000pt;}
.x5_c00191{left:286.080000pt;}
.x8_c00191{left:304.156000pt;}
}





/* 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_c00192 {
    display:none;
  }
  .loading-indicator_c00192.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00192 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_c00192 { 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_c00192" -> "#page-container .classname_c00192")
 */
.pf_c00192 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00192 { /* 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_c00192.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00192 { /* 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_c00192 { /* 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_c00192 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00192 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00192 {overflow:visible;}
  }
}
.c_c00192 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00192 { /* 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_c00192:after { /* webkit #35443 */
  content: '';
}
.t_c00192:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00192 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 */
}
.__c00192 { /* 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_c00192 { /* info for Javascript */
  display:none;
}
.l_c00192 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00192 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00192 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00192: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_c00192 {
    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_c00192.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00192.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_c00192 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00192{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00192;src:url('chunks/assets/font_b11a17f404e7258299fdf971.woff2')format("woff");}.ff1_c00192{font-family:ff1_c00192;line-height:1.000000;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;}
.md_c00192{transform:matrix(0.014615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.014615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.014615,0.000000,0.000000,0.250000,0,0);}
.m34_c00192{transform:matrix(0.015910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.015910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.015910,0.000000,0.000000,0.250000,0,0);}
.m35_c00192{transform:matrix(0.023715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.023715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.023715,0.000000,0.000000,0.250000,0,0);}
.m17_c00192{transform:matrix(0.027735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.027735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.027735,0.000000,0.000000,0.250000,0,0);}
.m31_c00192{transform:matrix(0.047730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.047730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.047730,0.000000,0.000000,0.250000,0,0);}
.m32_c00192{transform:matrix(0.060585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060585,0.000000,0.000000,0.250000,0,0);}
.m44_c00192{transform:matrix(0.075465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.075465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.075465,0.000000,0.000000,0.250000,0,0);}
.m2_c00192{transform:matrix(0.093620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093620,0.000000,0.000000,0.250000,0,0);}
.m27_c00192{transform:matrix(0.126300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126300,0.000000,0.000000,0.250000,0,0);}
.m2c_c00192{transform:matrix(0.154950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154950,0.000000,0.000000,0.250000,0,0);}
.m22_c00192{transform:matrix(0.175085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175085,0.000000,0.000000,0.250000,0,0);}
.m1a_c00192{transform:matrix(0.175105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175105,0.000000,0.000000,0.250000,0,0);}
.m2b_c00192{transform:matrix(0.179215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179215,0.000000,0.000000,0.250000,0,0);}
.m3b_c00192{transform:matrix(0.179325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179325,0.000000,0.000000,0.250000,0,0);}
.m29_c00192{transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00192{transform:matrix(0.185965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185965,0.000000,0.000000,0.250000,0,0);}
.m2d_c00192{transform:matrix(0.190740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190740,0.000000,0.000000,0.250000,0,0);}
.m3f_c00192{transform:matrix(0.193970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193970,0.000000,0.000000,0.250000,0,0);}
.m28_c00192{transform:matrix(0.195240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195240,0.000000,0.000000,0.250000,0,0);}
.m2a_c00192{transform:matrix(0.198870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198870,0.000000,0.000000,0.250000,0,0);}
.m23_c00192{transform:matrix(0.208050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208050,0.000000,0.000000,0.250000,0,0);}
.m16_c00192{transform:matrix(0.210100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210100,0.000000,0.000000,0.250000,0,0);}
.mc_c00192{transform:matrix(0.219255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219255,0.000000,0.000000,0.250000,0,0);}
.m41_c00192{transform:matrix(0.227150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227150,0.000000,0.000000,0.250000,0,0);}
.m6_c00192{transform:matrix(0.233370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233370,0.000000,0.000000,0.250000,0,0);}
.m4_c00192{transform:matrix(0.234305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234305,0.000000,0.000000,0.250000,0,0);}
.m1f_c00192{transform:matrix(0.235915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235915,0.000000,0.000000,0.250000,0,0);}
.m7_c00192{transform:matrix(0.238845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238845,0.000000,0.000000,0.250000,0,0);}
.m24_c00192{transform:matrix(0.239385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239385,0.000000,0.000000,0.250000,0,0);}
.mb_c00192{transform:matrix(0.242320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242320,0.000000,0.000000,0.250000,0,0);}
.m3c_c00192{transform:matrix(0.249495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249495,0.000000,0.000000,0.250000,0,0);}
.m46_c00192{transform:matrix(0.258995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258995,0.000000,0.000000,0.250000,0,0);}
.m11_c00192{transform:matrix(0.259845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259845,0.000000,0.000000,0.250000,0,0);}
.m26_c00192{transform:matrix(0.262470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262470,0.000000,0.000000,0.250000,0,0);}
.m18_c00192{transform:matrix(0.264735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264735,0.000000,0.000000,0.250000,0,0);}
.m12_c00192{transform:matrix(0.266320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266320,0.000000,0.000000,0.250000,0,0);}
.m1e_c00192{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.m37_c00192{transform:matrix(0.273710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273710,0.000000,0.000000,0.250000,0,0);}
.mf_c00192{transform:matrix(0.275680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275680,0.000000,0.000000,0.250000,0,0);}
.m2e_c00192{transform:matrix(0.278355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278355,0.000000,0.000000,0.250000,0,0);}
.m25_c00192{transform:matrix(0.280115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280115,0.000000,0.000000,0.250000,0,0);}
.m42_c00192{transform:matrix(0.282485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282485,0.000000,0.000000,0.250000,0,0);}
.m19_c00192{transform:matrix(0.283105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283105,0.000000,0.000000,0.250000,0,0);}
.m3d_c00192{transform:matrix(0.283590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283590,0.000000,0.000000,0.250000,0,0);}
.me_c00192{transform:matrix(0.292285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292285,0.000000,0.000000,0.250000,0,0);}
.m33_c00192{transform:matrix(0.294660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294660,0.000000,0.000000,0.250000,0,0);}
.m43_c00192{transform:matrix(0.304220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304220,0.000000,0.000000,0.250000,0,0);}
.m5_c00192{transform:matrix(0.318420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318420,0.000000,0.000000,0.250000,0,0);}
.m14_c00192{transform:matrix(0.321390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321390,0.000000,0.000000,0.250000,0,0);}
.m9_c00192{transform:matrix(0.324720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324720,0.000000,0.000000,0.250000,0,0);}
.m10_c00192{transform:matrix(0.325275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325275,0.000000,0.000000,0.250000,0,0);}
.m1d_c00192{transform:matrix(0.330640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330640,0.000000,0.000000,0.250000,0,0);}
.m1_c00192{transform:matrix(0.335645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335645,0.000000,0.000000,0.250000,0,0);}
.m47_c00192{transform:matrix(0.346710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346710,0.000000,0.000000,0.250000,0,0);}
.m49_c00192{transform:matrix(0.351640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351640,0.000000,0.000000,0.250000,0,0);}
.m1b_c00192{transform:matrix(0.353150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353150,0.000000,0.000000,0.250000,0,0);}
.m21_c00192{transform:matrix(0.356075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356075,0.000000,0.000000,0.250000,0,0);}
.m3e_c00192{transform:matrix(0.384750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384750,0.000000,0.000000,0.250000,0,0);}
.m45_c00192{transform:matrix(0.402490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402490,0.000000,0.000000,0.250000,0,0);}
.m15_c00192{transform:matrix(0.407805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407805,0.000000,0.000000,0.250000,0,0);}
.m1c_c00192{transform:matrix(0.454660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.454660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.454660,0.000000,0.000000,0.250000,0,0);}
.m4a_c00192{transform:matrix(0.463305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463305,0.000000,0.000000,0.250000,0,0);}
.m38_c00192{transform:matrix(0.541210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541210,0.000000,0.000000,0.250000,0,0);}
.ma_c00192{transform:matrix(0.559725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559725,0.000000,0.000000,0.250000,0,0);}
.m3a_c00192{transform:matrix(0.665820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665820,0.000000,0.000000,0.250000,0,0);}
.m3_c00192{transform:matrix(0.674180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.674180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.674180,0.000000,0.000000,0.250000,0,0);}
.m40_c00192{transform:matrix(0.712965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.712965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.712965,0.000000,0.000000,0.250000,0,0);}
.m30_c00192{transform:matrix(0.755090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.755090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.755090,0.000000,0.000000,0.250000,0,0);}
.m20_c00192{transform:matrix(0.771920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.771920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.771920,0.000000,0.000000,0.250000,0,0);}
.m0_c00192{transform:matrix(0.811885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811885,0.000000,0.000000,0.250000,0,0);}
.m39_c00192{transform:matrix(0.835015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.835015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.835015,0.000000,0.000000,0.250000,0,0);}
.m4b_c00192{transform:matrix(0.867710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.867710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.867710,0.000000,0.000000,0.250000,0,0);}
.m2f_c00192{transform:matrix(0.887030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.887030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.887030,0.000000,0.000000,0.250000,0,0);}
.m13_c00192{transform:matrix(0.932745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.932745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.932745,0.000000,0.000000,0.250000,0,0);}
.m48_c00192{transform:matrix(1.013780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.013780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.013780,0.000000,0.000000,0.250000,0,0);}
.m36_c00192{transform:matrix(1.047375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.047375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.047375,0.000000,0.000000,0.250000,0,0);}
.m8_c00192{transform:matrix(2.304375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.304375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.304375,0.000000,0.000000,0.250000,0,0);}
.v0_c00192{vertical-align:0.000000px;}
.ls0_c00192{letter-spacing:0.000000px;}
.sc__c00192{text-shadow:none;}
.sc0_c00192{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__c00192{-webkit-text-stroke:0px transparent;}
.sc0_c00192{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00192{word-spacing:0.000000px;}
.fc0_c00192{color:transparent;}
.fs7_c00192{font-size:24.000000px;}
.fs8_c00192{font-size:30.000000px;}
.fs4_c00192{font-size:84.000000px;}
.fs0_c00192{font-size:96.000000px;}
.fs2_c00192{font-size:126.000000px;}
.fs5_c00192{font-size:144.000000px;}
.fs1_c00192{font-size:162.000000px;}
.fs6_c00192{font-size:186.000000px;}
.fs3_c00192{font-size:222.000000px;}
.y10_c00192{bottom:-0.048000px;}
.y0_c00192{bottom:0.000000px;}
.yf_c00192{bottom:5.938500px;}
.ye_c00192{bottom:61.699500px;}
.yd_c00192{bottom:190.380000px;}
.y12_c00192{bottom:213.300000px;}
.y11_c00192{bottom:216.000000px;}
.yc_c00192{bottom:222.184500px;}
.yb_c00192{bottom:254.383500px;}
.ya_c00192{bottom:351.840000px;}
.y9_c00192{bottom:486.903000px;}
.y8_c00192{bottom:487.743000px;}
.y7_c00192{bottom:488.739000px;}
.y6_c00192{bottom:489.625500px;}
.y5_c00192{bottom:490.077000px;}
.y3_c00192{bottom:492.745500px;}
.y4_c00192{bottom:493.020000px;}
.y2_c00192{bottom:533.259000px;}
.y1_c00192{bottom:549.631500px;}
.h8_c00192{height:24.000000px;}
.h9_c00192{height:30.000000px;}
.h5_c00192{height:84.000000px;}
.h1_c00192{height:96.000000px;}
.h3_c00192{height:126.000000px;}
.h6_c00192{height:144.000000px;}
.h2_c00192{height:162.000000px;}
.h7_c00192{height:186.000000px;}
.h4_c00192{height:222.000000px;}
.h0_c00192{height:682.500000px;}
.w0_c00192{width:924.450000px;}
.w1_c00192{width:924.750000px;}
.x0_c00192{left:0.000000px;}
.x33_c00192{left:28.890000px;}
.x9_c00192{left:32.337000px;}
.x4_c00192{left:40.500000px;}
.x1e_c00192{left:44.550000px;}
.x2c_c00192{left:62.100000px;}
.x8_c00192{left:71.610000px;}
.x25_c00192{left:72.900000px;}
.x18_c00192{left:78.570000px;}
.x34_c00192{left:91.260000px;}
.xf_c00192{left:96.930000px;}
.x35_c00192{left:103.950000px;}
.x5_c00192{left:106.380000px;}
.x2d_c00192{left:139.590000px;}
.x6_c00192{left:149.850000px;}
.x36_c00192{left:153.360000px;}
.x1f_c00192{left:174.420000px;}
.x14_c00192{left:175.770000px;}
.x10_c00192{left:182.790000px;}
.x37_c00192{left:207.900000px;}
.x19_c00192{left:217.350000px;}
.x26_c00192{left:242.730000px;}
.x38_c00192{left:257.580000px;}
.x20_c00192{left:278.910000px;}
.x2e_c00192{left:282.960000px;}
.x11_c00192{left:301.590000px;}
.x39_c00192{left:311.850000px;}
.x2f_c00192{left:318.870000px;}
.x15_c00192{left:323.190000px;}
.x3a_c00192{left:331.020000px;}
.x3b_c00192{left:346.140000px;}
.x27_c00192{left:351.270000px;}
.x12_c00192{left:359.910000px;}
.x21_c00192{left:366.660000px;}
.x1a_c00192{left:369.090000px;}
.x3c_c00192{left:370.170000px;}
.x30_c00192{left:381.780000px;}
.x13_c00192{left:396.630000px;}
.x31_c00192{left:430.920000px;}
.x28_c00192{left:436.320000px;}
.xa_c00192{left:452.688000px;}
.x16_c00192{left:462.780000px;}
.x29_c00192{left:474.120000px;}
.x3d_c00192{left:492.210000px;}
.x32_c00192{left:494.100000px;}
.xb_c00192{left:517.165500px;}
.x2a_c00192{left:526.230000px;}
.x22_c00192{left:541.890000px;}
.x1b_c00192{left:575.100000px;}
.x2b_c00192{left:584.820000px;}
.x1c_c00192{left:640.710000px;}
.xc_c00192{left:643.839000px;}
.x23_c00192{left:682.290000px;}
.x1d_c00192{left:714.420000px;}
.x1_c00192{left:716.850000px;}
.x24_c00192{left:784.350000px;}
.xd_c00192{left:786.063000px;}
.x2_c00192{left:814.590000px;}
.x17_c00192{left:841.860000px;}
.x7_c00192{left:905.040000px;}
.xe_c00192{left:906.079500px;}
.x3e_c00192{left:910.710000px;}
.x3f_c00192{left:911.790000px;}
.x3_c00192{left:914.760000px;}
.x41_c00192{left:919.080000px;}
.x40_c00192{left:923.400000px;}
@media print{
.v0_c00192{vertical-align:0.000000pt;}
.ls0_c00192{letter-spacing:0.000000pt;}
.ws0_c00192{word-spacing:0.000000pt;}
.fs7_c00192{font-size:21.333333pt;}
.fs8_c00192{font-size:26.666667pt;}
.fs4_c00192{font-size:74.666667pt;}
.fs0_c00192{font-size:85.333333pt;}
.fs2_c00192{font-size:112.000000pt;}
.fs5_c00192{font-size:128.000000pt;}
.fs1_c00192{font-size:144.000000pt;}
.fs6_c00192{font-size:165.333333pt;}
.fs3_c00192{font-size:197.333333pt;}
.y10_c00192{bottom:-0.042667pt;}
.y0_c00192{bottom:0.000000pt;}
.yf_c00192{bottom:5.278667pt;}
.ye_c00192{bottom:54.844000pt;}
.yd_c00192{bottom:169.226667pt;}
.y12_c00192{bottom:189.600000pt;}
.y11_c00192{bottom:192.000000pt;}
.yc_c00192{bottom:197.497333pt;}
.yb_c00192{bottom:226.118667pt;}
.ya_c00192{bottom:312.746667pt;}
.y9_c00192{bottom:432.802667pt;}
.y8_c00192{bottom:433.549333pt;}
.y7_c00192{bottom:434.434667pt;}
.y6_c00192{bottom:435.222667pt;}
.y5_c00192{bottom:435.624000pt;}
.y3_c00192{bottom:437.996000pt;}
.y4_c00192{bottom:438.240000pt;}
.y2_c00192{bottom:474.008000pt;}
.y1_c00192{bottom:488.561333pt;}
.h8_c00192{height:21.333333pt;}
.h9_c00192{height:26.666667pt;}
.h5_c00192{height:74.666667pt;}
.h1_c00192{height:85.333333pt;}
.h3_c00192{height:112.000000pt;}
.h6_c00192{height:128.000000pt;}
.h2_c00192{height:144.000000pt;}
.h7_c00192{height:165.333333pt;}
.h4_c00192{height:197.333333pt;}
.h0_c00192{height:606.666667pt;}
.w0_c00192{width:821.733333pt;}
.w1_c00192{width:822.000000pt;}
.x0_c00192{left:0.000000pt;}
.x33_c00192{left:25.680000pt;}
.x9_c00192{left:28.744000pt;}
.x4_c00192{left:36.000000pt;}
.x1e_c00192{left:39.600000pt;}
.x2c_c00192{left:55.200000pt;}
.x8_c00192{left:63.653333pt;}
.x25_c00192{left:64.800000pt;}
.x18_c00192{left:69.840000pt;}
.x34_c00192{left:81.120000pt;}
.xf_c00192{left:86.160000pt;}
.x35_c00192{left:92.400000pt;}
.x5_c00192{left:94.560000pt;}
.x2d_c00192{left:124.080000pt;}
.x6_c00192{left:133.200000pt;}
.x36_c00192{left:136.320000pt;}
.x1f_c00192{left:155.040000pt;}
.x14_c00192{left:156.240000pt;}
.x10_c00192{left:162.480000pt;}
.x37_c00192{left:184.800000pt;}
.x19_c00192{left:193.200000pt;}
.x26_c00192{left:215.760000pt;}
.x38_c00192{left:228.960000pt;}
.x20_c00192{left:247.920000pt;}
.x2e_c00192{left:251.520000pt;}
.x11_c00192{left:268.080000pt;}
.x39_c00192{left:277.200000pt;}
.x2f_c00192{left:283.440000pt;}
.x15_c00192{left:287.280000pt;}
.x3a_c00192{left:294.240000pt;}
.x3b_c00192{left:307.680000pt;}
.x27_c00192{left:312.240000pt;}
.x12_c00192{left:319.920000pt;}
.x21_c00192{left:325.920000pt;}
.x1a_c00192{left:328.080000pt;}
.x3c_c00192{left:329.040000pt;}
.x30_c00192{left:339.360000pt;}
.x13_c00192{left:352.560000pt;}
.x31_c00192{left:383.040000pt;}
.x28_c00192{left:387.840000pt;}
.xa_c00192{left:402.389333pt;}
.x16_c00192{left:411.360000pt;}
.x29_c00192{left:421.440000pt;}
.x3d_c00192{left:437.520000pt;}
.x32_c00192{left:439.200000pt;}
.xb_c00192{left:459.702667pt;}
.x2a_c00192{left:467.760000pt;}
.x22_c00192{left:481.680000pt;}
.x1b_c00192{left:511.200000pt;}
.x2b_c00192{left:519.840000pt;}
.x1c_c00192{left:569.520000pt;}
.xc_c00192{left:572.301333pt;}
.x23_c00192{left:606.480000pt;}
.x1d_c00192{left:635.040000pt;}
.x1_c00192{left:637.200000pt;}
.x24_c00192{left:697.200000pt;}
.xd_c00192{left:698.722667pt;}
.x2_c00192{left:724.080000pt;}
.x17_c00192{left:748.320000pt;}
.x7_c00192{left:804.480000pt;}
.xe_c00192{left:805.404000pt;}
.x3e_c00192{left:809.520000pt;}
.x3f_c00192{left:810.480000pt;}
.x3_c00192{left:813.120000pt;}
.x41_c00192{left:816.960000pt;}
.x40_c00192{left:820.800000pt;}
}





/* 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_c00193 {
    display:none;
  }
  .loading-indicator_c00193.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00193 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_c00193 { 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_c00193" -> "#page-container .classname_c00193")
 */
.pf_c00193 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00193 { /* 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_c00193.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00193 { /* 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_c00193 { /* 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_c00193 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00193 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00193 {overflow:visible;}
  }
}
.c_c00193 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00193 { /* 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_c00193:after { /* webkit #35443 */
  content: '';
}
.t_c00193:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00193 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 */
}
.__c00193 { /* 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_c00193 { /* info for Javascript */
  display:none;
}
.l_c00193 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00193 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00193 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00193: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_c00193 {
    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_c00193.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00193.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_c00193 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00193{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00193;src:url('chunks/assets/font_944db81570d4ec07251d83b9.woff2')format("woff");}.ff1_c00193{font-family:ff1_c00193;line-height:1.000000;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;}
.m3_c00193{transform:matrix(0.206490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206490,0.000000,0.000000,0.250000,0,0);}
.m2_c00193{transform:matrix(0.436560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436560,0.000000,0.000000,0.250000,0,0);}
.m0_c00193{transform:matrix(0.622130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.622130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.622130,0.000000,0.000000,0.250000,0,0);}
.m1_c00193{transform:matrix(0.716770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.716770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.716770,0.000000,0.000000,0.250000,0,0);}
.m4_c00193{transform:matrix(0.911300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.911300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.911300,0.000000,0.000000,0.250000,0,0);}
.v0_c00193{vertical-align:0.000000px;}
.ls0_c00193{letter-spacing:0.000000px;}
.sc__c00193{text-shadow:none;}
.sc0_c00193{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__c00193{-webkit-text-stroke:0px transparent;}
.sc0_c00193{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00193{word-spacing:0.000000px;}
.fc0_c00193{color:transparent;}
.fs1_c00193{font-size:102.000000px;}
.fs0_c00193{font-size:138.000000px;}
.y0_c00193{bottom:0.000000px;}
.y2_c00193{bottom:430.264500px;}
.y1_c00193{bottom:457.059000px;}
.h2_c00193{height:102.000000px;}
.h1_c00193{height:138.000000px;}
.h0_c00193{height:682.500000px;}
.w0_c00193{width:924.450000px;}
.w1_c00193{width:924.750000px;}
.x0_c00193{left:0.000000px;}
.x3_c00193{left:615.330000px;}
.x1_c00193{left:637.740000px;}
.x4_c00193{left:698.220000px;}
.x5_c00193{left:700.920000px;}
.x2_c00193{left:782.730000px;}
@media print{
.v0_c00193{vertical-align:0.000000pt;}
.ls0_c00193{letter-spacing:0.000000pt;}
.ws0_c00193{word-spacing:0.000000pt;}
.fs1_c00193{font-size:90.666667pt;}
.fs0_c00193{font-size:122.666667pt;}
.y0_c00193{bottom:0.000000pt;}
.y2_c00193{bottom:382.457333pt;}
.y1_c00193{bottom:406.274667pt;}
.h2_c00193{height:90.666667pt;}
.h1_c00193{height:122.666667pt;}
.h0_c00193{height:606.666667pt;}
.w0_c00193{width:821.733333pt;}
.w1_c00193{width:822.000000pt;}
.x0_c00193{left:0.000000pt;}
.x3_c00193{left:546.960000pt;}
.x1_c00193{left:566.880000pt;}
.x4_c00193{left:620.640000pt;}
.x5_c00193{left:623.040000pt;}
.x2_c00193{left:695.760000pt;}
}





/* 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_c00194 {
    display:none;
  }
  .loading-indicator_c00194.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00194 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_c00194 { 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_c00194" -> "#page-container .classname_c00194")
 */
.pf_c00194 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00194 { /* 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_c00194.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00194 { /* 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_c00194 { /* 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_c00194 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00194 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00194 {overflow:visible;}
  }
}
.c_c00194 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00194 { /* 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_c00194:after { /* webkit #35443 */
  content: '';
}
.t_c00194:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00194 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 */
}
.__c00194 { /* 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_c00194 { /* info for Javascript */
  display:none;
}
.l_c00194 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00194 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00194 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00194: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_c00194 {
    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_c00194.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00194.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_c00194 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00194{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00194;src:url('chunks/assets/font_53ec0c54e60da7c2d414b553.woff2')format("woff");}.ff1_c00194{font-family:ff1_c00194;line-height:1.000000;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;}
.m11_c00194{transform:matrix(0.014230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.014230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.014230,0.000000,0.000000,0.250000,0,0);}
.m22_c00194{transform:matrix(0.042425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.042425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.042425,0.000000,0.000000,0.250000,0,0);}
.mb_c00194{transform:matrix(0.046385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.046385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.046385,0.000000,0.000000,0.250000,0,0);}
.m8_c00194{transform:matrix(0.078284,-0.000939,0.003000,0.249982,0,0);-ms-transform:matrix(0.078284,-0.000939,0.003000,0.249982,0,0);-webkit-transform:matrix(0.078284,-0.000939,0.003000,0.249982,0,0);}
.m4_c00194{transform:matrix(0.177057,-0.002125,0.003000,0.249982,0,0);-ms-transform:matrix(0.177057,-0.002125,0.003000,0.249982,0,0);-webkit-transform:matrix(0.177057,-0.002125,0.003000,0.249982,0,0);}
.m7_c00194{transform:matrix(0.195136,-0.002342,0.003000,0.249982,0,0);-ms-transform:matrix(0.195136,-0.002342,0.003000,0.249982,0,0);-webkit-transform:matrix(0.195136,-0.002342,0.003000,0.249982,0,0);}
.m21_c00194{transform:matrix(0.212130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212130,0.000000,0.000000,0.250000,0,0);}
.m2_c00194{transform:matrix(0.216399,-0.002597,0.003000,0.249982,0,0);-ms-transform:matrix(0.216399,-0.002597,0.003000,0.249982,0,0);-webkit-transform:matrix(0.216399,-0.002597,0.003000,0.249982,0,0);}
.ma_c00194{transform:matrix(0.220064,-0.002641,0.003000,0.249982,0,0);-ms-transform:matrix(0.220064,-0.002641,0.003000,0.249982,0,0);-webkit-transform:matrix(0.220064,-0.002641,0.003000,0.249982,0,0);}
.m9_c00194{transform:matrix(0.226669,-0.002720,0.003000,0.249982,0,0);-ms-transform:matrix(0.226669,-0.002720,0.003000,0.249982,0,0);-webkit-transform:matrix(0.226669,-0.002720,0.003000,0.249982,0,0);}
.m1_c00194{transform:matrix(0.268031,-0.003216,0.003000,0.249982,0,0);-ms-transform:matrix(0.268031,-0.003216,0.003000,0.249982,0,0);-webkit-transform:matrix(0.268031,-0.003216,0.003000,0.249982,0,0);}
.m1e_c00194{transform:matrix(0.272945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272945,0.000000,0.000000,0.250000,0,0);}
.m3_c00194{transform:matrix(0.275710,-0.003309,0.003000,0.249982,0,0);-ms-transform:matrix(0.275710,-0.003309,0.003000,0.249982,0,0);-webkit-transform:matrix(0.275710,-0.003309,0.003000,0.249982,0,0);}
.m1a_c00194{transform:matrix(0.317650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317650,0.000000,0.000000,0.250000,0,0);}
.m6_c00194{transform:matrix(0.319197,-0.003830,0.003000,0.249982,0,0);-ms-transform:matrix(0.319197,-0.003830,0.003000,0.249982,0,0);-webkit-transform:matrix(0.319197,-0.003830,0.003000,0.249982,0,0);}
.m25_c00194{transform:matrix(0.330740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330740,0.000000,0.000000,0.250000,0,0);}
.m12_c00194{transform:matrix(0.372485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372485,0.000000,0.000000,0.250000,0,0);}
.m26_c00194{transform:matrix(0.374605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374605,0.000000,0.000000,0.250000,0,0);}
.m27_c00194{transform:matrix(0.378775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378775,0.000000,0.000000,0.250000,0,0);}
.m0_c00194{transform:matrix(0.381633,-0.004580,0.003000,0.249982,0,0);-ms-transform:matrix(0.381633,-0.004580,0.003000,0.249982,0,0);-webkit-transform:matrix(0.381633,-0.004580,0.003000,0.249982,0,0);}
.m5_c00194{transform:matrix(0.389147,-0.004670,0.003000,0.249982,0,0);-ms-transform:matrix(0.389147,-0.004670,0.003000,0.249982,0,0);-webkit-transform:matrix(0.389147,-0.004670,0.003000,0.249982,0,0);}
.m13_c00194{transform:matrix(0.392590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392590,0.000000,0.000000,0.250000,0,0);}
.m24_c00194{transform:matrix(0.397860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397860,0.000000,0.000000,0.250000,0,0);}
.m10_c00194{transform:matrix(0.418070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418070,0.000000,0.000000,0.250000,0,0);}
.m19_c00194{transform:matrix(0.445980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445980,0.000000,0.000000,0.250000,0,0);}
.m28_c00194{transform:matrix(0.460410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460410,0.000000,0.000000,0.250000,0,0);}
.m18_c00194{transform:matrix(0.461735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461735,0.000000,0.000000,0.250000,0,0);}
.m1f_c00194{transform:matrix(0.488420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488420,0.000000,0.000000,0.250000,0,0);}
.m29_c00194{transform:matrix(0.517705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517705,0.000000,0.000000,0.250000,0,0);}
.mc_c00194{transform:matrix(0.558290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558290,0.000000,0.000000,0.250000,0,0);}
.m14_c00194{transform:matrix(0.626420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.626420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.626420,0.000000,0.000000,0.250000,0,0);}
.m17_c00194{transform:matrix(0.657480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.657480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.657480,0.000000,0.000000,0.250000,0,0);}
.m1b_c00194{transform:matrix(0.674685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.674685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.674685,0.000000,0.000000,0.250000,0,0);}
.m1c_c00194{transform:matrix(0.900220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.900220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.900220,0.000000,0.000000,0.250000,0,0);}
.m23_c00194{transform:matrix(1.154390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.154390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.154390,0.000000,0.000000,0.250000,0,0);}
.mf_c00194{transform:matrix(1.398670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.398670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.398670,0.000000,0.000000,0.250000,0,0);}
.me_c00194{transform:matrix(1.510185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.510185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.510185,0.000000,0.000000,0.250000,0,0);}
.m1d_c00194{transform:matrix(1.557185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.557185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.557185,0.000000,0.000000,0.250000,0,0);}
.m15_c00194{transform:matrix(1.608010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.608010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.608010,0.000000,0.000000,0.250000,0,0);}
.m20_c00194{transform:matrix(1.668310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.668310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.668310,0.000000,0.000000,0.250000,0,0);}
.md_c00194{transform:matrix(1.928680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.928680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.928680,0.000000,0.000000,0.250000,0,0);}
.m16_c00194{transform:matrix(3.391580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.391580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.391580,0.000000,0.000000,0.250000,0,0);}
.v0_c00194{vertical-align:0.000000px;}
.ls0_c00194{letter-spacing:0.000000px;}
.sc__c00194{text-shadow:none;}
.sc0_c00194{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__c00194{-webkit-text-stroke:0px transparent;}
.sc0_c00194{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00194{word-spacing:0.000000px;}
.fc0_c00194{color:transparent;}
.fs2_c00194{font-size:18.000000px;}
.fs1_c00194{font-size:24.000000px;}
.fs3_c00194{font-size:30.000000px;}
.fs0_c00194{font-size:132.009504px;}
.y0_c00194{bottom:0.000000px;}
.y1b_c00194{bottom:0.586500px;}
.y1c_c00194{bottom:0.589500px;}
.y1a_c00194{bottom:1.089000px;}
.y19_c00194{bottom:1.611000px;}
.y18_c00194{bottom:1.972500px;}
.y17_c00194{bottom:2.158500px;}
.y16_c00194{bottom:3.060000px;}
.y15_c00194{bottom:3.391500px;}
.y14_c00194{bottom:3.616500px;}
.yc_c00194{bottom:3.747000px;}
.y13_c00194{bottom:3.819000px;}
.y12_c00194{bottom:3.961500px;}
.y11_c00194{bottom:4.131000px;}
.y10_c00194{bottom:4.404000px;}
.yf_c00194{bottom:5.344500px;}
.ye_c00194{bottom:5.659500px;}
.yd_c00194{bottom:6.750000px;}
.y1_c00194{bottom:75.051000px;}
.y2_c00194{bottom:75.908520px;}
.y3_c00194{bottom:76.803372px;}
.y4_c00194{bottom:78.118920px;}
.y5_c00194{bottom:78.934950px;}
.y6_c00194{bottom:79.353342px;}
.y7_c00194{bottom:80.370666px;}
.y8_c00194{bottom:80.876538px;}
.y9_c00194{bottom:81.226764px;}
.ya_c00194{bottom:81.421362px;}
.yb_c00194{bottom:83.150496px;}
.h3_c00194{height:18.000000px;}
.h2_c00194{height:24.000000px;}
.h4_c00194{height:30.000000px;}
.h1_c00194{height:132.009504px;}
.h0_c00194{height:682.500000px;}
.w0_c00194{width:924.450000px;}
.w1_c00194{width:924.750000px;}
.x0_c00194{left:0.000000px;}
.x23_c00194{left:1.624500px;}
.x15_c00194{left:3.742500px;}
.x1_c00194{left:27.070500px;}
.x24_c00194{left:54.004500px;}
.x25_c00194{left:83.164500px;}
.x2_c00194{left:98.530500px;}
.x16_c00194{left:112.842000px;}
.x26_c00194{left:118.534500px;}
.x27_c00194{left:142.834500px;}
.x17_c00194{left:144.405000px;}
.x3_c00194{left:173.101500px;}
.x28_c00194{left:196.834500px;}
.x29_c00194{left:233.014500px;}
.x18_c00194{left:238.386000px;}
.x19_c00194{left:265.680000px;}
.x4_c00194{left:282.730500px;}
.x1a_c00194{left:296.974500px;}
.x1b_c00194{left:317.233500px;}
.x1c_c00194{left:339.682500px;}
.x5_c00194{left:350.733000px;}
.x1d_c00194{left:372.838500px;}
.x6_c00194{left:385.599000px;}
.x1e_c00194{left:463.029000px;}
.x7_c00194{left:470.376000px;}
.x1f_c00194{left:481.660500px;}
.x8_c00194{left:512.532000px;}
.x20_c00194{left:517.842000px;}
.x9_c00194{left:541.717500px;}
.xa_c00194{left:557.934000px;}
.x21_c00194{left:569.974500px;}
.xc_c00194{left:611.820000px;}
.x22_c00194{left:620.194500px;}
.xd_c00194{left:643.680000px;}
.xb_c00194{left:702.028500px;}
.xe_c00194{left:722.520000px;}
.xf_c00194{left:811.620000px;}
.x10_c00194{left:852.930000px;}
.x11_c00194{left:873.990000px;}
.x12_c00194{left:889.110000px;}
.x13_c00194{left:892.620000px;}
.x14_c00194{left:908.820000px;}
@media print{
.v0_c00194{vertical-align:0.000000pt;}
.ls0_c00194{letter-spacing:0.000000pt;}
.ws0_c00194{word-spacing:0.000000pt;}
.fs2_c00194{font-size:16.000000pt;}
.fs1_c00194{font-size:21.333333pt;}
.fs3_c00194{font-size:26.666667pt;}
.fs0_c00194{font-size:117.341781pt;}
.y0_c00194{bottom:0.000000pt;}
.y1b_c00194{bottom:0.521333pt;}
.y1c_c00194{bottom:0.524000pt;}
.y1a_c00194{bottom:0.968000pt;}
.y19_c00194{bottom:1.432000pt;}
.y18_c00194{bottom:1.753333pt;}
.y17_c00194{bottom:1.918667pt;}
.y16_c00194{bottom:2.720000pt;}
.y15_c00194{bottom:3.014667pt;}
.y14_c00194{bottom:3.214667pt;}
.yc_c00194{bottom:3.330667pt;}
.y13_c00194{bottom:3.394667pt;}
.y12_c00194{bottom:3.521333pt;}
.y11_c00194{bottom:3.672000pt;}
.y10_c00194{bottom:3.914667pt;}
.yf_c00194{bottom:4.750667pt;}
.ye_c00194{bottom:5.030667pt;}
.yd_c00194{bottom:6.000000pt;}
.y1_c00194{bottom:66.712000pt;}
.y2_c00194{bottom:67.474240pt;}
.y3_c00194{bottom:68.269664pt;}
.y4_c00194{bottom:69.439040pt;}
.y5_c00194{bottom:70.164400pt;}
.y6_c00194{bottom:70.536304pt;}
.y7_c00194{bottom:71.440592pt;}
.y8_c00194{bottom:71.890256pt;}
.y9_c00194{bottom:72.201568pt;}
.ya_c00194{bottom:72.374544pt;}
.yb_c00194{bottom:73.911552pt;}
.h3_c00194{height:16.000000pt;}
.h2_c00194{height:21.333333pt;}
.h4_c00194{height:26.666667pt;}
.h1_c00194{height:117.341781pt;}
.h0_c00194{height:606.666667pt;}
.w0_c00194{width:821.733333pt;}
.w1_c00194{width:822.000000pt;}
.x0_c00194{left:0.000000pt;}
.x23_c00194{left:1.444000pt;}
.x15_c00194{left:3.326667pt;}
.x1_c00194{left:24.062667pt;}
.x24_c00194{left:48.004000pt;}
.x25_c00194{left:73.924000pt;}
.x2_c00194{left:87.582667pt;}
.x16_c00194{left:100.304000pt;}
.x26_c00194{left:105.364000pt;}
.x27_c00194{left:126.964000pt;}
.x17_c00194{left:128.360000pt;}
.x3_c00194{left:153.868000pt;}
.x28_c00194{left:174.964000pt;}
.x29_c00194{left:207.124000pt;}
.x18_c00194{left:211.898667pt;}
.x19_c00194{left:236.160000pt;}
.x4_c00194{left:251.316000pt;}
.x1a_c00194{left:263.977333pt;}
.x1b_c00194{left:281.985333pt;}
.x1c_c00194{left:301.940000pt;}
.x5_c00194{left:311.762667pt;}
.x1d_c00194{left:331.412000pt;}
.x6_c00194{left:342.754667pt;}
.x1e_c00194{left:411.581333pt;}
.x7_c00194{left:418.112000pt;}
.x1f_c00194{left:428.142667pt;}
.x8_c00194{left:455.584000pt;}
.x20_c00194{left:460.304000pt;}
.x9_c00194{left:481.526667pt;}
.xa_c00194{left:495.941333pt;}
.x21_c00194{left:506.644000pt;}
.xc_c00194{left:543.840000pt;}
.x22_c00194{left:551.284000pt;}
.xd_c00194{left:572.160000pt;}
.xb_c00194{left:624.025333pt;}
.xe_c00194{left:642.240000pt;}
.xf_c00194{left:721.440000pt;}
.x10_c00194{left:758.160000pt;}
.x11_c00194{left:776.880000pt;}
.x12_c00194{left:790.320000pt;}
.x13_c00194{left:793.440000pt;}
.x14_c00194{left:807.840000pt;}
}





/* 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_c00195 {
    display:none;
  }
  .loading-indicator_c00195.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00195 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_c00195 { 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_c00195" -> "#page-container .classname_c00195")
 */
.pf_c00195 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00195 { /* 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_c00195.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00195 { /* 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_c00195 { /* 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_c00195 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00195 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00195 {overflow:visible;}
  }
}
.c_c00195 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00195 { /* 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_c00195:after { /* webkit #35443 */
  content: '';
}
.t_c00195:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00195 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 */
}
.__c00195 { /* 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_c00195 { /* info for Javascript */
  display:none;
}
.l_c00195 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00195 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00195 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00195: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_c00195 {
    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_c00195.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00195.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_c00195 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00195{font-family:sans-serif;visibility:hidden;}
.sc__c00195{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00195{-webkit-text-stroke:0px transparent;}
}
.y0_c00195{bottom:0.000000px;}
.h0_c00195{height:682.500000px;}
.w0_c00195{width:941.700000px;}
.w1_c00195{width:942.000000px;}
.x0_c00195{left:0.000000px;}
@media print{
.y0_c00195{bottom:0.000000pt;}
.h0_c00195{height:606.666667pt;}
.w0_c00195{width:837.066667pt;}
.w1_c00195{width:837.333333pt;}
.x0_c00195{left:0.000000pt;}
}





/* 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_c00196 {
    display:none;
  }
  .loading-indicator_c00196.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00196 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_c00196 { 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_c00196" -> "#page-container .classname_c00196")
 */
.pf_c00196 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00196 { /* 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_c00196.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00196 { /* 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_c00196 { /* 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_c00196 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00196 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00196 {overflow:visible;}
  }
}
.c_c00196 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00196 { /* 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_c00196:after { /* webkit #35443 */
  content: '';
}
.t_c00196:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00196 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 */
}
.__c00196 { /* 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_c00196 { /* info for Javascript */
  display:none;
}
.l_c00196 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00196 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00196 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00196: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_c00196 {
    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_c00196.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00196.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_c00196 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00196{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00196;src:url('chunks/assets/font_6bbd15de30fdc229d5d5ff82.woff2')format("woff");}.ff1_c00196{font-family:ff1_c00196;line-height:1.000000;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;}
.m19_c00196{transform:matrix(0.128324,-0.004110,0.008004,0.249872,0,0);-ms-transform:matrix(0.128324,-0.004110,0.008004,0.249872,0,0);-webkit-transform:matrix(0.128324,-0.004110,0.008004,0.249872,0,0);}
.m18_c00196{transform:matrix(0.225589,-0.007226,0.008004,0.249872,0,0);-ms-transform:matrix(0.225589,-0.007226,0.008004,0.249872,0,0);-webkit-transform:matrix(0.225589,-0.007226,0.008004,0.249872,0,0);}
.m0_c00196{transform:matrix(0.242693,-0.007523,0.007746,0.249880,0,0);-ms-transform:matrix(0.242693,-0.007523,0.007746,0.249880,0,0);-webkit-transform:matrix(0.242693,-0.007523,0.007746,0.249880,0,0);}
.m2_c00196{transform:matrix(0.247496,-0.007672,0.007746,0.249880,0,0);-ms-transform:matrix(0.247496,-0.007672,0.007746,0.249880,0,0);-webkit-transform:matrix(0.247496,-0.007672,0.007746,0.249880,0,0);}
.m12_c00196{transform:matrix(0.356779,-0.011060,0.007746,0.249880,0,0);-ms-transform:matrix(0.356779,-0.011060,0.007746,0.249880,0,0);-webkit-transform:matrix(0.356779,-0.011060,0.007746,0.249880,0,0);}
.mb_c00196{transform:matrix(0.395137,-0.011854,0.007497,0.249888,0,0);-ms-transform:matrix(0.395137,-0.011854,0.007497,0.249888,0,0);-webkit-transform:matrix(0.395137,-0.011854,0.007497,0.249888,0,0);}
.m6_c00196{transform:matrix(0.409551,-0.012287,0.007497,0.249888,0,0);-ms-transform:matrix(0.409551,-0.012287,0.007497,0.249888,0,0);-webkit-transform:matrix(0.409551,-0.012287,0.007497,0.249888,0,0);}
.ma_c00196{transform:matrix(0.441576,-0.013247,0.007497,0.249888,0,0);-ms-transform:matrix(0.441576,-0.013247,0.007497,0.249888,0,0);-webkit-transform:matrix(0.441576,-0.013247,0.007497,0.249888,0,0);}
.m4_c00196{transform:matrix(0.491044,-0.014731,0.007497,0.249888,0,0);-ms-transform:matrix(0.491044,-0.014731,0.007497,0.249888,0,0);-webkit-transform:matrix(0.491044,-0.014731,0.007497,0.249888,0,0);}
.me_c00196{transform:matrix(0.499085,-0.015472,0.007746,0.249880,0,0);-ms-transform:matrix(0.499085,-0.015472,0.007746,0.249880,0,0);-webkit-transform:matrix(0.499085,-0.015472,0.007746,0.249880,0,0);}
.m1_c00196{transform:matrix(0.504807,-0.015649,0.007746,0.249880,0,0);-ms-transform:matrix(0.504807,-0.015649,0.007746,0.249880,0,0);-webkit-transform:matrix(0.504807,-0.015649,0.007746,0.249880,0,0);}
.m5_c00196{transform:matrix(0.522815,-0.015684,0.007497,0.249888,0,0);-ms-transform:matrix(0.522815,-0.015684,0.007497,0.249888,0,0);-webkit-transform:matrix(0.522815,-0.015684,0.007497,0.249888,0,0);}
.m8_c00196{transform:matrix(0.546244,-0.016387,0.007497,0.249888,0,0);-ms-transform:matrix(0.546244,-0.016387,0.007497,0.249888,0,0);-webkit-transform:matrix(0.546244,-0.016387,0.007497,0.249888,0,0);}
.mf_c00196{transform:matrix(0.557957,-0.017297,0.007746,0.249880,0,0);-ms-transform:matrix(0.557957,-0.017297,0.007746,0.249880,0,0);-webkit-transform:matrix(0.557957,-0.017297,0.007746,0.249880,0,0);}
.m3_c00196{transform:matrix(0.575501,-0.017265,0.007497,0.249888,0,0);-ms-transform:matrix(0.575501,-0.017265,0.007497,0.249888,0,0);-webkit-transform:matrix(0.575501,-0.017265,0.007497,0.249888,0,0);}
.m7_c00196{transform:matrix(0.599100,-0.017973,0.007497,0.249888,0,0);-ms-transform:matrix(0.599100,-0.017973,0.007497,0.249888,0,0);-webkit-transform:matrix(0.599100,-0.017973,0.007497,0.249888,0,0);}
.m13_c00196{transform:matrix(0.610782,-0.018934,0.007746,0.249880,0,0);-ms-transform:matrix(0.610782,-0.018934,0.007746,0.249880,0,0);-webkit-transform:matrix(0.610782,-0.018934,0.007746,0.249880,0,0);}
.md_c00196{transform:matrix(0.618168,-0.019163,0.007746,0.249880,0,0);-ms-transform:matrix(0.618168,-0.019163,0.007746,0.249880,0,0);-webkit-transform:matrix(0.618168,-0.019163,0.007746,0.249880,0,0);}
.m9_c00196{transform:matrix(0.622025,-0.018661,0.007497,0.249888,0,0);-ms-transform:matrix(0.622025,-0.018661,0.007497,0.249888,0,0);-webkit-transform:matrix(0.622025,-0.018661,0.007497,0.249888,0,0);}
.m1c_c00196{transform:matrix(0.652535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.652535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.652535,0.000000,0.000000,0.250000,0,0);}
.m11_c00196{transform:matrix(0.746237,-0.023133,0.007746,0.249880,0,0);-ms-transform:matrix(0.746237,-0.023133,0.007746,0.249880,0,0);-webkit-transform:matrix(0.746237,-0.023133,0.007746,0.249880,0,0);}
.m17_c00196{transform:matrix(0.747532,-0.023945,0.008004,0.249872,0,0);-ms-transform:matrix(0.747532,-0.023945,0.008004,0.249872,0,0);-webkit-transform:matrix(0.747532,-0.023945,0.008004,0.249872,0,0);}
.mc_c00196{transform:matrix(0.794338,-0.023830,0.007497,0.249888,0,0);-ms-transform:matrix(0.794338,-0.023830,0.007497,0.249888,0,0);-webkit-transform:matrix(0.794338,-0.023830,0.007497,0.249888,0,0);}
.m15_c00196{transform:matrix(0.856626,-0.027439,0.008004,0.249872,0,0);-ms-transform:matrix(0.856626,-0.027439,0.008004,0.249872,0,0);-webkit-transform:matrix(0.856626,-0.027439,0.008004,0.249872,0,0);}
.m16_c00196{transform:matrix(0.882712,-0.028275,0.008004,0.249872,0,0);-ms-transform:matrix(0.882712,-0.028275,0.008004,0.249872,0,0);-webkit-transform:matrix(0.882712,-0.028275,0.008004,0.249872,0,0);}
.m1b_c00196{transform:matrix(0.899953,-0.028827,0.008004,0.249872,0,0);-ms-transform:matrix(0.899953,-0.028827,0.008004,0.249872,0,0);-webkit-transform:matrix(0.899953,-0.028827,0.008004,0.249872,0,0);}
.m14_c00196{transform:matrix(1.097647,-0.035160,0.008004,0.249872,0,0);-ms-transform:matrix(1.097647,-0.035160,0.008004,0.249872,0,0);-webkit-transform:matrix(1.097647,-0.035160,0.008004,0.249872,0,0);}
.m1a_c00196{transform:matrix(1.282047,-0.041067,0.008004,0.249872,0,0);-ms-transform:matrix(1.282047,-0.041067,0.008004,0.249872,0,0);-webkit-transform:matrix(1.282047,-0.041067,0.008004,0.249872,0,0);}
.m10_c00196{transform:matrix(1.508790,-0.046772,0.007746,0.249880,0,0);-ms-transform:matrix(1.508790,-0.046772,0.007746,0.249880,0,0);-webkit-transform:matrix(1.508790,-0.046772,0.007746,0.249880,0,0);}
.v0_c00196{vertical-align:0.000000px;}
.ls0_c00196{letter-spacing:0.000000px;}
.sc__c00196{text-shadow:none;}
.sc0_c00196{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__c00196{-webkit-text-stroke:0px transparent;}
.sc0_c00196{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00196{word-spacing:0.000000px;}
.fc0_c00196{color:transparent;}
.fs2_c00196{font-size:60.028823px;}
.fs3_c00196{font-size:65.967817px;}
.fs4_c00196{font-size:78.000000px;}
.fs1_c00196{font-size:78.035092px;}
.fs0_c00196{font-size:198.095116px;}
.y0_c00196{bottom:0.000000px;}
.y1d_c00196{bottom:61.560000px;}
.y15_c00196{bottom:184.698000px;}
.y16_c00196{bottom:188.279808px;}
.y17_c00196{bottom:194.193936px;}
.y18_c00196{bottom:197.979168px;}
.y19_c00196{bottom:200.674656px;}
.y1a_c00196{bottom:206.155680px;}
.y1b_c00196{bottom:206.559696px;}
.y1c_c00196{bottom:211.664304px;}
.ye_c00196{bottom:259.759500px;}
.yf_c00196{bottom:261.733890px;}
.y10_c00196{bottom:264.519751px;}
.y11_c00196{bottom:266.534596px;}
.y12_c00196{bottom:277.145757px;}
.y13_c00196{bottom:280.878033px;}
.y14_c00196{bottom:282.405046px;}
.y4_c00196{bottom:294.826500px;}
.y5_c00196{bottom:299.963970px;}
.y6_c00196{bottom:303.274080px;}
.y8_c00196{bottom:306.904230px;}
.y7_c00196{bottom:307.130220px;}
.y9_c00196{bottom:311.568390px;}
.ya_c00196{bottom:313.381980px;}
.yb_c00196{bottom:316.294740px;}
.yc_c00196{bottom:318.130740px;}
.yd_c00196{bottom:319.432230px;}
.y1_c00196{bottom:326.925000px;}
.y2_c00196{bottom:340.002056px;}
.y3_c00196{bottom:352.938449px;}
.h3_c00196{height:60.028823px;}
.h4_c00196{height:65.967817px;}
.h5_c00196{height:78.000000px;}
.h2_c00196{height:78.035092px;}
.h1_c00196{height:198.095116px;}
.h0_c00196{height:682.500000px;}
.w0_c00196{width:941.700000px;}
.w1_c00196{width:942.000000px;}
.x0_c00196{left:0.000000px;}
.x1_c00196{left:36.639000px;}
.xe_c00196{left:44.646000px;}
.x4_c00196{left:79.464000px;}
.xf_c00196{left:108.336000px;}
.x15_c00196{left:157.218569px;}
.x10_c00196{left:198.202500px;}
.x5_c00196{left:250.713000px;}
.x11_c00196{left:263.197500px;}
.x16_c00196{left:341.850252px;}
.x6_c00196{left:361.050000px;}
.x2_c00196{left:458.479500px;}
.x17_c00196{left:460.020463px;}
.x8_c00196{left:482.055000px;}
.x7_c00196{left:489.588000px;}
.x18_c00196{left:544.170230px;}
.x12_c00196{left:605.493000px;}
.x9_c00196{left:637.527000px;}
.xa_c00196{left:697.980000px;}
.x19_c00196{left:715.280947px;}
.x13_c00196{left:725.889000px;}
.x1a_c00196{left:727.893822px;}
.x14_c00196{left:775.147500px;}
.xb_c00196{left:795.072000px;}
.xc_c00196{left:856.272000px;}
.x3_c00196{left:875.782500px;}
.x1b_c00196{left:887.253303px;}
.xd_c00196{left:899.655000px;}
.x1c_c00196{left:905.580000px;}
@media print{
.v0_c00196{vertical-align:0.000000pt;}
.ls0_c00196{letter-spacing:0.000000pt;}
.ws0_c00196{word-spacing:0.000000pt;}
.fs2_c00196{font-size:53.358954pt;}
.fs3_c00196{font-size:58.638060pt;}
.fs4_c00196{font-size:69.333333pt;}
.fs1_c00196{font-size:69.364526pt;}
.fs0_c00196{font-size:176.084548pt;}
.y0_c00196{bottom:0.000000pt;}
.y1d_c00196{bottom:54.720000pt;}
.y15_c00196{bottom:164.176000pt;}
.y16_c00196{bottom:167.359829pt;}
.y17_c00196{bottom:172.616832pt;}
.y18_c00196{bottom:175.981483pt;}
.y19_c00196{bottom:178.377472pt;}
.y1a_c00196{bottom:183.249493pt;}
.y1b_c00196{bottom:183.608619pt;}
.y1c_c00196{bottom:188.146048pt;}
.ye_c00196{bottom:230.897333pt;}
.yf_c00196{bottom:232.652347pt;}
.y10_c00196{bottom:235.128668pt;}
.y11_c00196{bottom:236.919641pt;}
.y12_c00196{bottom:246.351784pt;}
.y13_c00196{bottom:249.669363pt;}
.y14_c00196{bottom:251.026708pt;}
.y4_c00196{bottom:262.068000pt;}
.y5_c00196{bottom:266.634640pt;}
.y6_c00196{bottom:269.576960pt;}
.y8_c00196{bottom:272.803760pt;}
.y7_c00196{bottom:273.004640pt;}
.y9_c00196{bottom:276.949680pt;}
.ya_c00196{bottom:278.561760pt;}
.yb_c00196{bottom:281.150880pt;}
.yc_c00196{bottom:282.782880pt;}
.yd_c00196{bottom:283.939760pt;}
.y1_c00196{bottom:290.600000pt;}
.y2_c00196{bottom:302.224049pt;}
.y3_c00196{bottom:313.723065pt;}
.h3_c00196{height:53.358954pt;}
.h4_c00196{height:58.638060pt;}
.h5_c00196{height:69.333333pt;}
.h2_c00196{height:69.364526pt;}
.h1_c00196{height:176.084548pt;}
.h0_c00196{height:606.666667pt;}
.w0_c00196{width:837.066667pt;}
.w1_c00196{width:837.333333pt;}
.x0_c00196{left:0.000000pt;}
.x1_c00196{left:32.568000pt;}
.xe_c00196{left:39.685333pt;}
.x4_c00196{left:70.634667pt;}
.xf_c00196{left:96.298667pt;}
.x15_c00196{left:139.749839pt;}
.x10_c00196{left:176.180000pt;}
.x5_c00196{left:222.856000pt;}
.x11_c00196{left:233.953333pt;}
.x16_c00196{left:303.866891pt;}
.x6_c00196{left:320.933333pt;}
.x2_c00196{left:407.537333pt;}
.x17_c00196{left:408.907079pt;}
.x8_c00196{left:428.493333pt;}
.x7_c00196{left:435.189333pt;}
.x18_c00196{left:483.706871pt;}
.x12_c00196{left:538.216000pt;}
.x9_c00196{left:566.690667pt;}
.xa_c00196{left:620.426667pt;}
.x19_c00196{left:635.805287pt;}
.x13_c00196{left:645.234667pt;}
.x1a_c00196{left:647.016731pt;}
.x14_c00196{left:689.020000pt;}
.xb_c00196{left:706.730667pt;}
.xc_c00196{left:761.130667pt;}
.x3_c00196{left:778.473333pt;}
.x1b_c00196{left:788.669603pt;}
.xd_c00196{left:799.693333pt;}
.x1c_c00196{left:804.960000pt;}
}





/* 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_c00197 {
    display:none;
  }
  .loading-indicator_c00197.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00197 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_c00197 { 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_c00197" -> "#page-container .classname_c00197")
 */
.pf_c00197 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00197 { /* 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_c00197.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00197 { /* 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_c00197 { /* 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_c00197 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00197 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00197 {overflow:visible;}
  }
}
.c_c00197 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00197 { /* 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_c00197:after { /* webkit #35443 */
  content: '';
}
.t_c00197:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00197 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 */
}
.__c00197 { /* 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_c00197 { /* info for Javascript */
  display:none;
}
.l_c00197 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00197 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00197 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00197: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_c00197 {
    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_c00197.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00197.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_c00197 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00197{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00197;src:url('chunks/assets/font_59dc3ab2e04ed21d4ac9992b.woff2')format("woff");}.ff1_c00197{font-family:ff1_c00197;line-height:1.000000;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;}
.m4_c00197{transform:matrix(0.020280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.020280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.020280,0.000000,0.000000,0.250000,0,0);}
.m24_c00197{transform:matrix(0.023180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.023180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.023180,0.000000,0.000000,0.250000,0,0);}
.m7_c00197{transform:matrix(0.056665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.056665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.056665,0.000000,0.000000,0.250000,0,0);}
.m20_c00197{transform:matrix(0.073340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.073340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.073340,0.000000,0.000000,0.250000,0,0);}
.m3b_c00197{transform:matrix(0.139355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139355,0.000000,0.000000,0.250000,0,0);}
.m2f_c00197{transform:matrix(0.166525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166525,0.000000,0.000000,0.250000,0,0);}
.m36_c00197{transform:matrix(0.182485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182485,0.000000,0.000000,0.250000,0,0);}
.m46_c00197{transform:matrix(0.196735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196735,0.000000,0.000000,0.250000,0,0);}
.m8_c00197{transform:matrix(0.214410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214410,0.000000,0.000000,0.250000,0,0);}
.m21_c00197{transform:matrix(0.216710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216710,0.000000,0.000000,0.250000,0,0);}
.m23_c00197{transform:matrix(0.229020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229020,0.000000,0.000000,0.250000,0,0);}
.ma_c00197{transform:matrix(0.234105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234105,0.000000,0.000000,0.250000,0,0);}
.m0_c00197{transform:matrix(0.252590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252590,0.000000,0.000000,0.250000,0,0);}
.m31_c00197{transform:matrix(0.256540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256540,0.000000,0.000000,0.250000,0,0);}
.m37_c00197{transform:matrix(0.284035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284035,0.000000,0.000000,0.250000,0,0);}
.m28_c00197{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m9_c00197{transform:matrix(0.301960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301960,0.000000,0.000000,0.250000,0,0);}
.m2e_c00197{transform:matrix(0.310650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310650,0.000000,0.000000,0.250000,0,0);}
.m1e_c00197{transform:matrix(0.314245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314245,0.000000,0.000000,0.250000,0,0);}
.m2a_c00197{transform:matrix(0.314525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314525,0.000000,0.000000,0.250000,0,0);}
.m2b_c00197{transform:matrix(0.324310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324310,0.000000,0.000000,0.250000,0,0);}
.mc_c00197{transform:matrix(0.367600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367600,0.000000,0.000000,0.250000,0,0);}
.m22_c00197{transform:matrix(0.371335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371335,0.000000,0.000000,0.250000,0,0);}
.m3e_c00197{transform:matrix(0.402320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402320,0.000000,0.000000,0.250000,0,0);}
.m45_c00197{transform:matrix(0.410680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410680,0.000000,0.000000,0.250000,0,0);}
.mf_c00197{transform:matrix(0.431840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431840,0.000000,0.000000,0.250000,0,0);}
.mb_c00197{transform:matrix(0.437085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437085,0.000000,0.000000,0.250000,0,0);}
.m1b_c00197{transform:matrix(0.438790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.438790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.438790,0.000000,0.000000,0.250000,0,0);}
.m18_c00197{transform:matrix(0.445980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445980,0.000000,0.000000,0.250000,0,0);}
.m13_c00197{transform:matrix(0.450000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450000,0.000000,0.000000,0.250000,0,0);}
.m16_c00197{transform:matrix(0.456490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456490,0.000000,0.000000,0.250000,0,0);}
.m2c_c00197{transform:matrix(0.462480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462480,0.000000,0.000000,0.250000,0,0);}
.m15_c00197{transform:matrix(0.508255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508255,0.000000,0.000000,0.250000,0,0);}
.m33_c00197{transform:matrix(0.516630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516630,0.000000,0.000000,0.250000,0,0);}
.m1c_c00197{transform:matrix(0.530250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530250,0.000000,0.000000,0.250000,0,0);}
.m5_c00197{transform:matrix(0.534750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534750,0.000000,0.000000,0.250000,0,0);}
.m12_c00197{transform:matrix(0.570700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.570700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.570700,0.000000,0.000000,0.250000,0,0);}
.m44_c00197{transform:matrix(0.582355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582355,0.000000,0.000000,0.250000,0,0);}
.m3_c00197{transform:matrix(0.582380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582380,0.000000,0.000000,0.250000,0,0);}
.m3c_c00197{transform:matrix(0.627500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.627500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.627500,0.000000,0.000000,0.250000,0,0);}
.m32_c00197{transform:matrix(0.684635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.684635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.684635,0.000000,0.000000,0.250000,0,0);}
.m27_c00197{transform:matrix(0.697620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697620,0.000000,0.000000,0.250000,0,0);}
.m3a_c00197{transform:matrix(0.705780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.705780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.705780,0.000000,0.000000,0.250000,0,0);}
.m41_c00197{transform:matrix(0.715420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.715420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.715420,0.000000,0.000000,0.250000,0,0);}
.m25_c00197{transform:matrix(0.719210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.719210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.719210,0.000000,0.000000,0.250000,0,0);}
.m10_c00197{transform:matrix(0.749650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.749650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.749650,0.000000,0.000000,0.250000,0,0);}
.m30_c00197{transform:matrix(0.763690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.763690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.763690,0.000000,0.000000,0.250000,0,0);}
.m1d_c00197{transform:matrix(0.765995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765995,0.000000,0.000000,0.250000,0,0);}
.m14_c00197{transform:matrix(0.796310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.796310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.796310,0.000000,0.000000,0.250000,0,0);}
.m1_c00197{transform:matrix(0.848165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.848165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.848165,0.000000,0.000000,0.250000,0,0);}
.m1f_c00197{transform:matrix(0.854530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.854530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.854530,0.000000,0.000000,0.250000,0,0);}
.m1a_c00197{transform:matrix(0.993105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.993105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.993105,0.000000,0.000000,0.250000,0,0);}
.m43_c00197{transform:matrix(1.011975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.011975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.011975,0.000000,0.000000,0.250000,0,0);}
.md_c00197{transform:matrix(1.037240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.037240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.037240,0.000000,0.000000,0.250000,0,0);}
.m40_c00197{transform:matrix(1.040795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.040795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.040795,0.000000,0.000000,0.250000,0,0);}
.m2d_c00197{transform:matrix(1.045545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.045545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.045545,0.000000,0.000000,0.250000,0,0);}
.m17_c00197{transform:matrix(1.075130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.075130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.075130,0.000000,0.000000,0.250000,0,0);}
.m29_c00197{transform:matrix(1.117335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.117335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.117335,0.000000,0.000000,0.250000,0,0);}
.m3d_c00197{transform:matrix(1.224130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.224130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.224130,0.000000,0.000000,0.250000,0,0);}
.m26_c00197{transform:matrix(1.244105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.244105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.244105,0.000000,0.000000,0.250000,0,0);}
.m3f_c00197{transform:matrix(1.270755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.270755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.270755,0.000000,0.000000,0.250000,0,0);}
.m11_c00197{transform:matrix(1.318585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.318585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.318585,0.000000,0.000000,0.250000,0,0);}
.m42_c00197{transform:matrix(1.357725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.357725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.357725,0.000000,0.000000,0.250000,0,0);}
.m34_c00197{transform:matrix(1.474355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.474355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.474355,0.000000,0.000000,0.250000,0,0);}
.m39_c00197{transform:matrix(1.602485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.602485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.602485,0.000000,0.000000,0.250000,0,0);}
.m6_c00197{transform:matrix(1.661060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.661060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.661060,0.000000,0.000000,0.250000,0,0);}
.m2_c00197{transform:matrix(1.723575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.723575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.723575,0.000000,0.000000,0.250000,0,0);}
.m35_c00197{transform:matrix(1.726530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.726530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.726530,0.000000,0.000000,0.250000,0,0);}
.m19_c00197{transform:matrix(1.878395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.878395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.878395,0.000000,0.000000,0.250000,0,0);}
.m38_c00197{transform:matrix(1.883140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.883140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.883140,0.000000,0.000000,0.250000,0,0);}
.me_c00197{transform:matrix(2.026825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.026825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.026825,0.000000,0.000000,0.250000,0,0);}
.v0_c00197{vertical-align:0.000000px;}
.ls0_c00197{letter-spacing:0.000000px;}
.sc__c00197{text-shadow:none;}
.sc0_c00197{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__c00197{-webkit-text-stroke:0px transparent;}
.sc0_c00197{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00197{word-spacing:0.000000px;}
.fc0_c00197{color:transparent;}
.fs5_c00197{font-size:24.000000px;}
.fs4_c00197{font-size:30.000000px;}
.fs7_c00197{font-size:36.000000px;}
.fs8_c00197{font-size:42.000000px;}
.fs0_c00197{font-size:48.000000px;}
.fs1_c00197{font-size:54.000000px;}
.fs3_c00197{font-size:60.000000px;}
.fs9_c00197{font-size:66.000000px;}
.fsa_c00197{font-size:84.000000px;}
.fs6_c00197{font-size:108.000000px;}
.fs2_c00197{font-size:162.000000px;}
.y0_c00197{bottom:0.000000px;}
.y1e_c00197{bottom:192.621000px;}
.y1d_c00197{bottom:193.828500px;}
.y1c_c00197{bottom:194.641500px;}
.y1b_c00197{bottom:195.895500px;}
.y1a_c00197{bottom:197.638500px;}
.y19_c00197{bottom:198.564000px;}
.y18_c00197{bottom:223.926000px;}
.y17_c00197{bottom:225.106500px;}
.y16_c00197{bottom:226.152000px;}
.y15_c00197{bottom:227.274000px;}
.y14_c00197{bottom:228.319500px;}
.y13_c00197{bottom:250.311000px;}
.y12_c00197{bottom:263.962500px;}
.y11_c00197{bottom:302.926500px;}
.y10_c00197{bottom:309.136500px;}
.yf_c00197{bottom:314.550000px;}
.ye_c00197{bottom:331.491000px;}
.yd_c00197{bottom:344.790000px;}
.yc_c00197{bottom:348.250500px;}
.yb_c00197{bottom:365.485500px;}
.ya_c00197{bottom:403.008000px;}
.y9_c00197{bottom:408.448500px;}
.y8_c00197{bottom:440.883000px;}
.y7_c00197{bottom:444.552000px;}
.y6_c00197{bottom:478.191000px;}
.y5_c00197{bottom:501.126000px;}
.y4_c00197{bottom:501.687000px;}
.y3_c00197{bottom:503.553000px;}
.y2_c00197{bottom:515.193000px;}
.y1_c00197{bottom:547.479000px;}
.h6_c00197{height:24.000000px;}
.h5_c00197{height:30.000000px;}
.h8_c00197{height:36.000000px;}
.h9_c00197{height:42.000000px;}
.h1_c00197{height:48.000000px;}
.h2_c00197{height:54.000000px;}
.h4_c00197{height:60.000000px;}
.ha_c00197{height:66.000000px;}
.hb_c00197{height:84.000000px;}
.h7_c00197{height:108.000000px;}
.h3_c00197{height:162.000000px;}
.h0_c00197{height:682.500000px;}
.w0_c00197{width:941.700000px;}
.w1_c00197{width:942.000000px;}
.x0_c00197{left:0.000000px;}
.x37_c00197{left:289.633500px;}
.x38_c00197{left:338.347500px;}
.x29_c00197{left:384.480000px;}
.x2c_c00197{left:388.800000px;}
.x24_c00197{left:394.200000px;}
.x1c_c00197{left:397.170000px;}
.x23_c00197{left:399.330000px;}
.x2a_c00197{left:410.940000px;}
.x1d_c00197{left:414.180000px;}
.x25_c00197{left:430.650000px;}
.x2d_c00197{left:431.730000px;}
.xa_c00197{left:449.563500px;}
.x33_c00197{left:455.065500px;}
.x6_c00197{left:468.450000px;}
.x16_c00197{left:488.970000px;}
.x1e_c00197{left:494.370000px;}
.x39_c00197{left:496.083000px;}
.x17_c00197{left:503.280000px;}
.x7_c00197{left:508.950000px;}
.x2e_c00197{left:520.020000px;}
.x3a_c00197{left:538.866000px;}
.xd_c00197{left:542.160000px;}
.x1f_c00197{left:546.480000px;}
.x14_c00197{left:558.090000px;}
.x2b_c00197{left:559.710000px;}
.x10_c00197{left:566.190000px;}
.x1_c00197{left:568.890000px;}
.xe_c00197{left:571.860000px;}
.x21_c00197{left:578.070000px;}
.x2_c00197{left:579.960000px;}
.x22_c00197{left:581.580000px;}
.x2f_c00197{left:582.660000px;}
.x34_c00197{left:590.521500px;}
.x18_c00197{left:597.240000px;}
.x3b_c00197{left:602.446500px;}
.xb_c00197{left:605.086500px;}
.x30_c00197{left:607.230000px;}
.x26_c00197{left:609.930000px;}
.x19_c00197{left:611.280000px;}
.x27_c00197{left:636.660000px;}
.x3_c00197{left:638.550000px;}
.xc_c00197{left:651.777000px;}
.x11_c00197{left:653.670000px;}
.x35_c00197{left:655.866000px;}
.x8_c00197{left:671.220000px;}
.x1a_c00197{left:678.510000px;}
.x12_c00197{left:685.800000px;}
.x9_c00197{left:688.230000px;}
.x20_c00197{left:692.280000px;}
.x28_c00197{left:698.760000px;}
.x4_c00197{left:704.970000px;}
.x13_c00197{left:707.670000px;}
.x15_c00197{left:708.750000px;}
.x1b_c00197{left:714.960000px;}
.x36_c00197{left:729.688500px;}
.x31_c00197{left:732.510000px;}
.x5_c00197{left:750.060000px;}
.xf_c00197{left:770.310000px;}
.x32_c00197{left:810.270000px;}
@media print{
.v0_c00197{vertical-align:0.000000pt;}
.ls0_c00197{letter-spacing:0.000000pt;}
.ws0_c00197{word-spacing:0.000000pt;}
.fs5_c00197{font-size:21.333333pt;}
.fs4_c00197{font-size:26.666667pt;}
.fs7_c00197{font-size:32.000000pt;}
.fs8_c00197{font-size:37.333333pt;}
.fs0_c00197{font-size:42.666667pt;}
.fs1_c00197{font-size:48.000000pt;}
.fs3_c00197{font-size:53.333333pt;}
.fs9_c00197{font-size:58.666667pt;}
.fsa_c00197{font-size:74.666667pt;}
.fs6_c00197{font-size:96.000000pt;}
.fs2_c00197{font-size:144.000000pt;}
.y0_c00197{bottom:0.000000pt;}
.y1e_c00197{bottom:171.218667pt;}
.y1d_c00197{bottom:172.292000pt;}
.y1c_c00197{bottom:173.014667pt;}
.y1b_c00197{bottom:174.129333pt;}
.y1a_c00197{bottom:175.678667pt;}
.y19_c00197{bottom:176.501333pt;}
.y18_c00197{bottom:199.045333pt;}
.y17_c00197{bottom:200.094667pt;}
.y16_c00197{bottom:201.024000pt;}
.y15_c00197{bottom:202.021333pt;}
.y14_c00197{bottom:202.950667pt;}
.y13_c00197{bottom:222.498667pt;}
.y12_c00197{bottom:234.633333pt;}
.y11_c00197{bottom:269.268000pt;}
.y10_c00197{bottom:274.788000pt;}
.yf_c00197{bottom:279.600000pt;}
.ye_c00197{bottom:294.658667pt;}
.yd_c00197{bottom:306.480000pt;}
.yc_c00197{bottom:309.556000pt;}
.yb_c00197{bottom:324.876000pt;}
.ya_c00197{bottom:358.229333pt;}
.y9_c00197{bottom:363.065333pt;}
.y8_c00197{bottom:391.896000pt;}
.y7_c00197{bottom:395.157333pt;}
.y6_c00197{bottom:425.058667pt;}
.y5_c00197{bottom:445.445333pt;}
.y4_c00197{bottom:445.944000pt;}
.y3_c00197{bottom:447.602667pt;}
.y2_c00197{bottom:457.949333pt;}
.y1_c00197{bottom:486.648000pt;}
.h6_c00197{height:21.333333pt;}
.h5_c00197{height:26.666667pt;}
.h8_c00197{height:32.000000pt;}
.h9_c00197{height:37.333333pt;}
.h1_c00197{height:42.666667pt;}
.h2_c00197{height:48.000000pt;}
.h4_c00197{height:53.333333pt;}
.ha_c00197{height:58.666667pt;}
.hb_c00197{height:74.666667pt;}
.h7_c00197{height:96.000000pt;}
.h3_c00197{height:144.000000pt;}
.h0_c00197{height:606.666667pt;}
.w0_c00197{width:837.066667pt;}
.w1_c00197{width:837.333333pt;}
.x0_c00197{left:0.000000pt;}
.x37_c00197{left:257.452000pt;}
.x38_c00197{left:300.753333pt;}
.x29_c00197{left:341.760000pt;}
.x2c_c00197{left:345.600000pt;}
.x24_c00197{left:350.400000pt;}
.x1c_c00197{left:353.040000pt;}
.x23_c00197{left:354.960000pt;}
.x2a_c00197{left:365.280000pt;}
.x1d_c00197{left:368.160000pt;}
.x25_c00197{left:382.800000pt;}
.x2d_c00197{left:383.760000pt;}
.xa_c00197{left:399.612000pt;}
.x33_c00197{left:404.502667pt;}
.x6_c00197{left:416.400000pt;}
.x16_c00197{left:434.640000pt;}
.x1e_c00197{left:439.440000pt;}
.x39_c00197{left:440.962667pt;}
.x17_c00197{left:447.360000pt;}
.x7_c00197{left:452.400000pt;}
.x2e_c00197{left:462.240000pt;}
.x3a_c00197{left:478.992000pt;}
.xd_c00197{left:481.920000pt;}
.x1f_c00197{left:485.760000pt;}
.x14_c00197{left:496.080000pt;}
.x2b_c00197{left:497.520000pt;}
.x10_c00197{left:503.280000pt;}
.x1_c00197{left:505.680000pt;}
.xe_c00197{left:508.320000pt;}
.x21_c00197{left:513.840000pt;}
.x2_c00197{left:515.520000pt;}
.x22_c00197{left:516.960000pt;}
.x2f_c00197{left:517.920000pt;}
.x34_c00197{left:524.908000pt;}
.x18_c00197{left:530.880000pt;}
.x3b_c00197{left:535.508000pt;}
.xb_c00197{left:537.854667pt;}
.x30_c00197{left:539.760000pt;}
.x26_c00197{left:542.160000pt;}
.x19_c00197{left:543.360000pt;}
.x27_c00197{left:565.920000pt;}
.x3_c00197{left:567.600000pt;}
.xc_c00197{left:579.357333pt;}
.x11_c00197{left:581.040000pt;}
.x35_c00197{left:582.992000pt;}
.x8_c00197{left:596.640000pt;}
.x1a_c00197{left:603.120000pt;}
.x12_c00197{left:609.600000pt;}
.x9_c00197{left:611.760000pt;}
.x20_c00197{left:615.360000pt;}
.x28_c00197{left:621.120000pt;}
.x4_c00197{left:626.640000pt;}
.x13_c00197{left:629.040000pt;}
.x15_c00197{left:630.000000pt;}
.x1b_c00197{left:635.520000pt;}
.x36_c00197{left:648.612000pt;}
.x31_c00197{left:651.120000pt;}
.x5_c00197{left:666.720000pt;}
.xf_c00197{left:684.720000pt;}
.x32_c00197{left:720.240000pt;}
}





/* 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_c00198 {
    display:none;
  }
  .loading-indicator_c00198.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00198 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_c00198 { 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_c00198" -> "#page-container .classname_c00198")
 */
.pf_c00198 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00198 { /* 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_c00198.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00198 { /* 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_c00198 { /* 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_c00198 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00198 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00198 {overflow:visible;}
  }
}
.c_c00198 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00198 { /* 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_c00198:after { /* webkit #35443 */
  content: '';
}
.t_c00198:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00198 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 */
}
.__c00198 { /* 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_c00198 { /* info for Javascript */
  display:none;
}
.l_c00198 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00198 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00198 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00198: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_c00198 {
    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_c00198.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00198.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_c00198 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00198{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00198;src:url('chunks/assets/font_b11a17f404e7258299fdf971.woff2')format("woff");}.ff1_c00198{font-family:ff1_c00198;line-height:1.000000;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;}
.m4_c00198{transform:matrix(0.015910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.015910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.015910,0.000000,0.000000,0.250000,0,0);}
.m3_c00198{transform:matrix(0.020280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.020280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.020280,0.000000,0.000000,0.250000,0,0);}
.m18_c00198{transform:matrix(0.100970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100970,0.000000,0.000000,0.250000,0,0);}
.m25_c00198{transform:matrix(0.115765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115765,0.000000,0.000000,0.250000,0,0);}
.m1e_c00198{transform:matrix(0.253310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253310,0.000000,0.000000,0.250000,0,0);}
.m1f_c00198{transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);}
.m16_c00198{transform:matrix(0.272351,-0.002179,0.002000,0.249992,0,0);-ms-transform:matrix(0.272351,-0.002179,0.002000,0.249992,0,0);-webkit-transform:matrix(0.272351,-0.002179,0.002000,0.249992,0,0);}
.m17_c00198{transform:matrix(0.277730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277730,0.000000,0.000000,0.250000,0,0);}
.m2_c00198{transform:matrix(0.295300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295300,0.000000,0.000000,0.250000,0,0);}
.m6_c00198{transform:matrix(0.306816,-0.001534,0.001250,0.249997,0,0);-ms-transform:matrix(0.306816,-0.001534,0.001250,0.249997,0,0);-webkit-transform:matrix(0.306816,-0.001534,0.001250,0.249997,0,0);}
.m13_c00198{transform:matrix(0.310325,-0.002483,0.002000,0.249992,0,0);-ms-transform:matrix(0.310325,-0.002483,0.002000,0.249992,0,0);-webkit-transform:matrix(0.310325,-0.002483,0.002000,0.249992,0,0);}
.mc_c00198{transform:matrix(0.314406,-0.001572,0.001250,0.249997,0,0);-ms-transform:matrix(0.314406,-0.001572,0.001250,0.249997,0,0);-webkit-transform:matrix(0.314406,-0.001572,0.001250,0.249997,0,0);}
.m11_c00198{transform:matrix(0.315115,-0.002521,0.002000,0.249992,0,0);-ms-transform:matrix(0.315115,-0.002521,0.002000,0.249992,0,0);-webkit-transform:matrix(0.315115,-0.002521,0.002000,0.249992,0,0);}
.m1d_c00198{transform:matrix(0.316280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316280,0.000000,0.000000,0.250000,0,0);}
.md_c00198{transform:matrix(0.326350,-0.002611,0.002000,0.249992,0,0);-ms-transform:matrix(0.326350,-0.002611,0.002000,0.249992,0,0);-webkit-transform:matrix(0.326350,-0.002611,0.002000,0.249992,0,0);}
.m5_c00198{transform:matrix(0.327846,-0.001639,0.001250,0.249997,0,0);-ms-transform:matrix(0.327846,-0.001639,0.001250,0.249997,0,0);-webkit-transform:matrix(0.327846,-0.001639,0.001250,0.249997,0,0);}
.m7_c00198{transform:matrix(0.332971,-0.001665,0.001250,0.249997,0,0);-ms-transform:matrix(0.332971,-0.001665,0.001250,0.249997,0,0);-webkit-transform:matrix(0.332971,-0.001665,0.001250,0.249997,0,0);}
.m1_c00198{transform:matrix(0.334485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334485,0.000000,0.000000,0.250000,0,0);}
.m20_c00198{transform:matrix(0.345300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345300,0.000000,0.000000,0.250000,0,0);}
.m21_c00198{transform:matrix(0.351365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351365,0.000000,0.000000,0.250000,0,0);}
.mb_c00198{transform:matrix(0.357411,-0.001787,0.001250,0.249997,0,0);-ms-transform:matrix(0.357411,-0.001787,0.001250,0.249997,0,0);-webkit-transform:matrix(0.357411,-0.001787,0.001250,0.249997,0,0);}
.m14_c00198{transform:matrix(0.358524,-0.002868,0.002000,0.249992,0,0);-ms-transform:matrix(0.358524,-0.002868,0.002000,0.249992,0,0);-webkit-transform:matrix(0.358524,-0.002868,0.002000,0.249992,0,0);}
.me_c00198{transform:matrix(0.379568,-0.003037,0.002000,0.249992,0,0);-ms-transform:matrix(0.379568,-0.003037,0.002000,0.249992,0,0);-webkit-transform:matrix(0.379568,-0.003037,0.002000,0.249992,0,0);}
.m19_c00198{transform:matrix(0.395740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395740,0.000000,0.000000,0.250000,0,0);}
.mf_c00198{transform:matrix(0.398192,-0.003186,0.002000,0.249992,0,0);-ms-transform:matrix(0.398192,-0.003186,0.002000,0.249992,0,0);-webkit-transform:matrix(0.398192,-0.003186,0.002000,0.249992,0,0);}
.m10_c00198{transform:matrix(0.401092,-0.003209,0.002000,0.249992,0,0);-ms-transform:matrix(0.401092,-0.003209,0.002000,0.249992,0,0);-webkit-transform:matrix(0.401092,-0.003209,0.002000,0.249992,0,0);}
.m12_c00198{transform:matrix(0.403447,-0.003228,0.002000,0.249992,0,0);-ms-transform:matrix(0.403447,-0.003228,0.002000,0.249992,0,0);-webkit-transform:matrix(0.403447,-0.003228,0.002000,0.249992,0,0);}
.ma_c00198{transform:matrix(0.405015,-0.002025,0.001250,0.249997,0,0);-ms-transform:matrix(0.405015,-0.002025,0.001250,0.249997,0,0);-webkit-transform:matrix(0.405015,-0.002025,0.001250,0.249997,0,0);}
.m1b_c00198{transform:matrix(0.412990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412990,0.000000,0.000000,0.250000,0,0);}
.m8_c00198{transform:matrix(0.417715,-0.002089,0.001250,0.249997,0,0);-ms-transform:matrix(0.417715,-0.002089,0.001250,0.249997,0,0);-webkit-transform:matrix(0.417715,-0.002089,0.001250,0.249997,0,0);}
.m23_c00198{transform:matrix(0.451560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451560,0.000000,0.000000,0.250000,0,0);}
.m9_c00198{transform:matrix(0.464504,-0.002323,0.001250,0.249997,0,0);-ms-transform:matrix(0.464504,-0.002323,0.001250,0.249997,0,0);-webkit-transform:matrix(0.464504,-0.002323,0.001250,0.249997,0,0);}
.m24_c00198{transform:matrix(0.492605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492605,0.000000,0.000000,0.250000,0,0);}
.m22_c00198{transform:matrix(0.599835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.599835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.599835,0.000000,0.000000,0.250000,0,0);}
.m1a_c00198{transform:matrix(0.779790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779790,0.000000,0.000000,0.250000,0,0);}
.m1c_c00198{transform:matrix(0.909355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.909355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.909355,0.000000,0.000000,0.250000,0,0);}
.m15_c00198{transform:matrix(0.913936,-0.007311,0.002000,0.249992,0,0);-ms-transform:matrix(0.913936,-0.007311,0.002000,0.249992,0,0);-webkit-transform:matrix(0.913936,-0.007311,0.002000,0.249992,0,0);}
.m0_c00198{transform:matrix(4.141850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.141850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.141850,0.000000,0.000000,0.250000,0,0);}
.v0_c00198{vertical-align:0.000000px;}
.ls0_c00198{letter-spacing:0.000000px;}
.sc__c00198{text-shadow:none;}
.sc0_c00198{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__c00198{-webkit-text-stroke:0px transparent;}
.sc0_c00198{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00198{word-spacing:0.000000px;}
.fc0_c00198{color:transparent;}
.fs0_c00198{font-size:24.000000px;}
.fs6_c00198{font-size:30.000000px;}
.fs7_c00198{font-size:36.000000px;}
.fs8_c00198{font-size:48.000000px;}
.fs4_c00198{font-size:60.000000px;}
.fs3_c00198{font-size:72.000000px;}
.fs2_c00198{font-size:90.002880px;}
.fs5_c00198{font-size:114.000000px;}
.fs1_c00198{font-size:132.001650px;}
.y0_c00198{bottom:0.000000px;}
.y19_c00198{bottom:1.762500px;}
.y18_c00198{bottom:12.420000px;}
.y17_c00198{bottom:27.241500px;}
.y16_c00198{bottom:77.377500px;}
.y15_c00198{bottom:139.059000px;}
.y14_c00198{bottom:268.561500px;}
.ya_c00198{bottom:344.251500px;}
.yb_c00198{bottom:345.418344px;}
.yc_c00198{bottom:345.900072px;}
.yd_c00198{bottom:346.673328px;}
.ye_c00198{bottom:347.674812px;}
.yf_c00198{bottom:348.118104px;}
.y10_c00198{bottom:348.927732px;}
.y11_c00198{bottom:349.461972px;}
.y12_c00198{bottom:350.180556px;}
.y13_c00198{bottom:351.241416px;}
.y2_c00198{bottom:433.351500px;}
.y3_c00198{bottom:434.237227px;}
.y4_c00198{bottom:434.581470px;}
.y5_c00198{bottom:434.898690px;}
.y6_c00198{bottom:435.650205px;}
.y7_c00198{bottom:436.259302px;}
.y8_c00198{bottom:436.868310px;}
.y9_c00198{bottom:437.259802px;}
.y1_c00198{bottom:679.858500px;}
.h1_c00198{height:24.000000px;}
.h7_c00198{height:30.000000px;}
.h8_c00198{height:36.000000px;}
.h9_c00198{height:48.000000px;}
.h5_c00198{height:60.000000px;}
.h4_c00198{height:72.000000px;}
.h3_c00198{height:90.002880px;}
.h6_c00198{height:114.000000px;}
.h2_c00198{height:132.001650px;}
.h0_c00198{height:682.500000px;}
.w0_c00198{width:941.700000px;}
.w1_c00198{width:942.000000px;}
.x0_c00198{left:0.000000px;}
.x1b_c00198{left:32.400000px;}
.xe_c00198{left:41.712000px;}
.x6_c00198{left:42.852000px;}
.x1_c00198{left:75.330000px;}
.x2_c00198{left:135.000000px;}
.x3_c00198{left:147.960000px;}
.x4_c00198{left:171.450000px;}
.x5_c00198{left:177.120000px;}
.x1c_c00198{left:179.010000px;}
.xf_c00198{left:187.567500px;}
.x7_c00198{left:219.997500px;}
.x10_c00198{left:247.783500px;}
.x1a_c00198{left:259.200000px;}
.x1d_c00198{left:273.510000px;}
.x8_c00198{left:288.846000px;}
.x11_c00198{left:344.440500px;}
.x9_c00198{left:352.290000px;}
.x1e_c00198{left:366.390000px;}
.x1f_c00198{left:399.600000px;}
.x20_c00198{left:442.530000px;}
.x12_c00198{left:469.626000px;}
.xa_c00198{left:502.593000px;}
.x13_c00198{left:525.037500px;}
.x21_c00198{left:582.930000px;}
.xb_c00198{left:624.412500px;}
.x14_c00198{left:626.241000px;}
.x15_c00198{left:693.021000px;}
.xc_c00198{left:746.214000px;}
.x16_c00198{left:782.844000px;}
.xd_c00198{left:824.512500px;}
.x18_c00198{left:871.830000px;}
.x24_c00198{left:874.260000px;}
.x22_c00198{left:911.250000px;}
.x17_c00198{left:915.451500px;}
.x25_c00198{left:927.720000px;}
.x19_c00198{left:930.690000px;}
.x23_c00198{left:940.140000px;}
@media print{
.v0_c00198{vertical-align:0.000000pt;}
.ls0_c00198{letter-spacing:0.000000pt;}
.ws0_c00198{word-spacing:0.000000pt;}
.fs0_c00198{font-size:21.333333pt;}
.fs6_c00198{font-size:26.666667pt;}
.fs7_c00198{font-size:32.000000pt;}
.fs8_c00198{font-size:42.666667pt;}
.fs4_c00198{font-size:53.333333pt;}
.fs3_c00198{font-size:64.000000pt;}
.fs2_c00198{font-size:80.002560pt;}
.fs5_c00198{font-size:101.333333pt;}
.fs1_c00198{font-size:117.334800pt;}
.y0_c00198{bottom:0.000000pt;}
.y19_c00198{bottom:1.566667pt;}
.y18_c00198{bottom:11.040000pt;}
.y17_c00198{bottom:24.214667pt;}
.y16_c00198{bottom:68.780000pt;}
.y15_c00198{bottom:123.608000pt;}
.y14_c00198{bottom:238.721333pt;}
.ya_c00198{bottom:306.001333pt;}
.yb_c00198{bottom:307.038528pt;}
.yc_c00198{bottom:307.466731pt;}
.yd_c00198{bottom:308.154069pt;}
.ye_c00198{bottom:309.044277pt;}
.yf_c00198{bottom:309.438315pt;}
.y10_c00198{bottom:310.157984pt;}
.y11_c00198{bottom:310.632864pt;}
.y12_c00198{bottom:311.271605pt;}
.y13_c00198{bottom:312.214592pt;}
.y2_c00198{bottom:385.201333pt;}
.y3_c00198{bottom:385.988647pt;}
.y4_c00198{bottom:386.294640pt;}
.y5_c00198{bottom:386.576613pt;}
.y6_c00198{bottom:387.244627pt;}
.y7_c00198{bottom:387.786047pt;}
.y8_c00198{bottom:388.327387pt;}
.y9_c00198{bottom:388.675380pt;}
.y1_c00198{bottom:604.318667pt;}
.h1_c00198{height:21.333333pt;}
.h7_c00198{height:26.666667pt;}
.h8_c00198{height:32.000000pt;}
.h9_c00198{height:42.666667pt;}
.h5_c00198{height:53.333333pt;}
.h4_c00198{height:64.000000pt;}
.h3_c00198{height:80.002560pt;}
.h6_c00198{height:101.333333pt;}
.h2_c00198{height:117.334800pt;}
.h0_c00198{height:606.666667pt;}
.w0_c00198{width:837.066667pt;}
.w1_c00198{width:837.333333pt;}
.x0_c00198{left:0.000000pt;}
.x1b_c00198{left:28.800000pt;}
.xe_c00198{left:37.077333pt;}
.x6_c00198{left:38.090667pt;}
.x1_c00198{left:66.960000pt;}
.x2_c00198{left:120.000000pt;}
.x3_c00198{left:131.520000pt;}
.x4_c00198{left:152.400000pt;}
.x5_c00198{left:157.440000pt;}
.x1c_c00198{left:159.120000pt;}
.xf_c00198{left:166.726667pt;}
.x7_c00198{left:195.553333pt;}
.x10_c00198{left:220.252000pt;}
.x1a_c00198{left:230.400000pt;}
.x1d_c00198{left:243.120000pt;}
.x8_c00198{left:256.752000pt;}
.x11_c00198{left:306.169333pt;}
.x9_c00198{left:313.146667pt;}
.x1e_c00198{left:325.680000pt;}
.x1f_c00198{left:355.200000pt;}
.x20_c00198{left:393.360000pt;}
.x12_c00198{left:417.445333pt;}
.xa_c00198{left:446.749333pt;}
.x13_c00198{left:466.700000pt;}
.x21_c00198{left:518.160000pt;}
.xb_c00198{left:555.033333pt;}
.x14_c00198{left:556.658667pt;}
.x15_c00198{left:616.018667pt;}
.xc_c00198{left:663.301333pt;}
.x16_c00198{left:695.861333pt;}
.xd_c00198{left:732.900000pt;}
.x18_c00198{left:774.960000pt;}
.x24_c00198{left:777.120000pt;}
.x22_c00198{left:810.000000pt;}
.x17_c00198{left:813.734667pt;}
.x25_c00198{left:824.640000pt;}
.x19_c00198{left:827.280000pt;}
.x23_c00198{left:835.680000pt;}
}





/* 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_c00199 {
    display:none;
  }
  .loading-indicator_c00199.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00199 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_c00199 { 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_c00199" -> "#page-container .classname_c00199")
 */
.pf_c00199 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00199 { /* 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_c00199.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00199 { /* 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_c00199 { /* 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_c00199 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00199 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00199 {overflow:visible;}
  }
}
.c_c00199 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00199 { /* 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_c00199:after { /* webkit #35443 */
  content: '';
}
.t_c00199:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00199 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 */
}
.__c00199 { /* 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_c00199 { /* info for Javascript */
  display:none;
}
.l_c00199 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00199 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00199 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00199: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_c00199 {
    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_c00199.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00199.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_c00199 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00199{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00199;src:url('chunks/assets/font_944db81570d4ec07251d83b9.woff2')format("woff");}.ff1_c00199{font-family:ff1_c00199;line-height:1.000000;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;}
.m3_c00199{transform:matrix(0.041165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.041165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.041165,0.000000,0.000000,0.250000,0,0);}
.ma_c00199{transform:matrix(0.086865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.086865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.086865,0.000000,0.000000,0.250000,0,0);}
.m1_c00199{transform:matrix(0.104405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.104405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.104405,0.000000,0.000000,0.250000,0,0);}
.mb_c00199{transform:matrix(0.107940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107940,0.000000,0.000000,0.250000,0,0);}
.m0_c00199{transform:matrix(0.232440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232440,0.000000,0.000000,0.250000,0,0);}
.mc_c00199{transform:matrix(0.272740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272740,0.000000,0.000000,0.250000,0,0);}
.md_c00199{transform:matrix(0.366275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366275,0.000000,0.000000,0.250000,0,0);}
.m6_c00199{transform:matrix(0.387490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387490,0.000000,0.000000,0.250000,0,0);}
.m5_c00199{transform:matrix(0.587680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.587680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.587680,0.000000,0.000000,0.250000,0,0);}
.m4_c00199{transform:matrix(0.856770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.856770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.856770,0.000000,0.000000,0.250000,0,0);}
.m8_c00199{transform:matrix(1.105790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.105790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.105790,0.000000,0.000000,0.250000,0,0);}
.m7_c00199{transform:matrix(1.154660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.154660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.154660,0.000000,0.000000,0.250000,0,0);}
.m2_c00199{transform:matrix(1.259365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.259365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.259365,0.000000,0.000000,0.250000,0,0);}
.m9_c00199{transform:matrix(1.915260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.915260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.915260,0.000000,0.000000,0.250000,0,0);}
.v0_c00199{vertical-align:0.000000px;}
.ls0_c00199{letter-spacing:0.000000px;}
.sc__c00199{text-shadow:none;}
.sc0_c00199{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__c00199{-webkit-text-stroke:0px transparent;}
.sc0_c00199{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00199{word-spacing:0.000000px;}
.fc0_c00199{color:transparent;}
.fs3_c00199{font-size:12.000000px;}
.fs0_c00199{font-size:36.000000px;}
.fs1_c00199{font-size:42.000000px;}
.fs2_c00199{font-size:300.000000px;}
.y0_c00199{bottom:0.000000px;}
.y9_c00199{bottom:428.256000px;}
.yb_c00199{bottom:428.760000px;}
.ya_c00199{bottom:439.020000px;}
.y8_c00199{bottom:493.618500px;}
.y7_c00199{bottom:495.480000px;}
.y1_c00199{bottom:495.984000px;}
.y6_c00199{bottom:496.648500px;}
.y5_c00199{bottom:497.770500px;}
.y4_c00199{bottom:498.288000px;}
.y3_c00199{bottom:500.368500px;}
.y2_c00199{bottom:500.863500px;}
.h4_c00199{height:12.000000px;}
.h1_c00199{height:36.000000px;}
.h2_c00199{height:42.000000px;}
.h3_c00199{height:300.000000px;}
.h0_c00199{height:682.500000px;}
.w0_c00199{width:941.700000px;}
.w1_c00199{width:942.000000px;}
.x0_c00199{left:0.000000px;}
.xb_c00199{left:167.130000px;}
.xe_c00199{left:253.800000px;}
.xc_c00199{left:329.940000px;}
.x4_c00199{left:419.925000px;}
.x5_c00199{left:435.886500px;}
.x6_c00199{left:503.008500px;}
.x7_c00199{left:519.705000px;}
.x8_c00199{left:555.909000px;}
.x1_c00199{left:569.430000px;}
.x2_c00199{left:590.220000px;}
.x9_c00199{left:593.622000px;}
.x3_c00199{left:603.180000px;}
.xa_c00199{left:653.656500px;}
.xd_c00199{left:707.400000px;}
@media print{
.v0_c00199{vertical-align:0.000000pt;}
.ls0_c00199{letter-spacing:0.000000pt;}
.ws0_c00199{word-spacing:0.000000pt;}
.fs3_c00199{font-size:10.666667pt;}
.fs0_c00199{font-size:32.000000pt;}
.fs1_c00199{font-size:37.333333pt;}
.fs2_c00199{font-size:266.666667pt;}
.y0_c00199{bottom:0.000000pt;}
.y9_c00199{bottom:380.672000pt;}
.yb_c00199{bottom:381.120000pt;}
.ya_c00199{bottom:390.240000pt;}
.y8_c00199{bottom:438.772000pt;}
.y7_c00199{bottom:440.426667pt;}
.y1_c00199{bottom:440.874667pt;}
.y6_c00199{bottom:441.465333pt;}
.y5_c00199{bottom:442.462667pt;}
.y4_c00199{bottom:442.922667pt;}
.y3_c00199{bottom:444.772000pt;}
.y2_c00199{bottom:445.212000pt;}
.h4_c00199{height:10.666667pt;}
.h1_c00199{height:32.000000pt;}
.h2_c00199{height:37.333333pt;}
.h3_c00199{height:266.666667pt;}
.h0_c00199{height:606.666667pt;}
.w0_c00199{width:837.066667pt;}
.w1_c00199{width:837.333333pt;}
.x0_c00199{left:0.000000pt;}
.xb_c00199{left:148.560000pt;}
.xe_c00199{left:225.600000pt;}
.xc_c00199{left:293.280000pt;}
.x4_c00199{left:373.266667pt;}
.x5_c00199{left:387.454667pt;}
.x6_c00199{left:447.118667pt;}
.x7_c00199{left:461.960000pt;}
.x8_c00199{left:494.141333pt;}
.x1_c00199{left:506.160000pt;}
.x2_c00199{left:524.640000pt;}
.x9_c00199{left:527.664000pt;}
.x3_c00199{left:536.160000pt;}
.xa_c00199{left:581.028000pt;}
.xd_c00199{left:628.800000pt;}
}





/* 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_c00200 {
    display:none;
  }
  .loading-indicator_c00200.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00200 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_c00200 { 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_c00200" -> "#page-container .classname_c00200")
 */
.pf_c00200 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00200 { /* 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_c00200.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00200 { /* 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_c00200 { /* 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_c00200 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00200 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00200 {overflow:visible;}
  }
}
.c_c00200 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00200 { /* 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_c00200:after { /* webkit #35443 */
  content: '';
}
.t_c00200:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00200 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 */
}
.__c00200 { /* 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_c00200 { /* info for Javascript */
  display:none;
}
.l_c00200 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00200 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00200 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00200: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_c00200 {
    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_c00200.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00200.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_c00200 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00200{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00200;src:url('chunks/assets/font_fe3cd3c6b9706b260f6e1774.woff2')format("woff");}.ff1_c00200{font-family:ff1_c00200;line-height:1.000000;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;}
.m1_c00200{transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);}
.m0_c00200{transform:matrix(0.230900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230900,0.000000,0.000000,0.250000,0,0);}
.m5_c00200{transform:matrix(0.259725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259725,0.000000,0.000000,0.250000,0,0);}
.m3_c00200{transform:matrix(0.459185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459185,0.000000,0.000000,0.250000,0,0);}
.m7_c00200{transform:matrix(0.477680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477680,0.000000,0.000000,0.250000,0,0);}
.m8_c00200{transform:matrix(0.482990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482990,0.000000,0.000000,0.250000,0,0);}
.m6_c00200{transform:matrix(0.560470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560470,0.000000,0.000000,0.250000,0,0);}
.m2_c00200{transform:matrix(0.601745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.601745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.601745,0.000000,0.000000,0.250000,0,0);}
.m4_c00200{transform:matrix(0.710720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.710720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.710720,0.000000,0.000000,0.250000,0,0);}
.v0_c00200{vertical-align:0.000000px;}
.ls0_c00200{letter-spacing:0.000000px;}
.sc__c00200{text-shadow:none;}
.sc0_c00200{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__c00200{-webkit-text-stroke:0px transparent;}
.sc0_c00200{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00200{word-spacing:0.000000px;}
.fc0_c00200{color:transparent;}
.fs0_c00200{font-size:24.000000px;}
.fs1_c00200{font-size:30.000000px;}
.y0_c00200{bottom:0.000000px;}
.y4_c00200{bottom:600.619500px;}
.y3_c00200{bottom:603.720000px;}
.y2_c00200{bottom:604.150500px;}
.y1_c00200{bottom:610.200000px;}
.h1_c00200{height:24.000000px;}
.h2_c00200{height:30.000000px;}
.h0_c00200{height:682.500000px;}
.w0_c00200{width:941.700000px;}
.w1_c00200{width:942.000000px;}
.x0_c00200{left:0.000000px;}
.x3_c00200{left:425.520000px;}
.x8_c00200{left:448.200000px;}
.x4_c00200{left:451.170000px;}
.x5_c00200{left:467.640000px;}
.x1_c00200{left:469.530000px;}
.x6_c00200{left:500.580000px;}
.x2_c00200{left:502.200000px;}
.x7_c00200{left:536.760000px;}
@media print{
.v0_c00200{vertical-align:0.000000pt;}
.ls0_c00200{letter-spacing:0.000000pt;}
.ws0_c00200{word-spacing:0.000000pt;}
.fs0_c00200{font-size:21.333333pt;}
.fs1_c00200{font-size:26.666667pt;}
.y0_c00200{bottom:0.000000pt;}
.y4_c00200{bottom:533.884000pt;}
.y3_c00200{bottom:536.640000pt;}
.y2_c00200{bottom:537.022667pt;}
.y1_c00200{bottom:542.400000pt;}
.h1_c00200{height:21.333333pt;}
.h2_c00200{height:26.666667pt;}
.h0_c00200{height:606.666667pt;}
.w0_c00200{width:837.066667pt;}
.w1_c00200{width:837.333333pt;}
.x0_c00200{left:0.000000pt;}
.x3_c00200{left:378.240000pt;}
.x8_c00200{left:398.400000pt;}
.x4_c00200{left:401.040000pt;}
.x5_c00200{left:415.680000pt;}
.x1_c00200{left:417.360000pt;}
.x6_c00200{left:444.960000pt;}
.x2_c00200{left:446.400000pt;}
.x7_c00200{left:477.120000pt;}
}





/* 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_c00201 {
    display:none;
  }
  .loading-indicator_c00201.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00201 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_c00201 { 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_c00201" -> "#page-container .classname_c00201")
 */
.pf_c00201 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00201 { /* 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_c00201.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00201 { /* 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_c00201 { /* 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_c00201 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00201 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00201 {overflow:visible;}
  }
}
.c_c00201 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00201 { /* 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_c00201:after { /* webkit #35443 */
  content: '';
}
.t_c00201:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00201 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 */
}
.__c00201 { /* 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_c00201 { /* info for Javascript */
  display:none;
}
.l_c00201 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00201 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00201 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00201: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_c00201 {
    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_c00201.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00201.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_c00201 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00201{font-family:sans-serif;visibility:hidden;}
.sc__c00201{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00201{-webkit-text-stroke:0px transparent;}
}
.y0_c00201{bottom:0.000000px;}
.h0_c00201{height:682.500000px;}
.w0_c00201{width:941.700000px;}
.w1_c00201{width:942.000000px;}
.x0_c00201{left:0.000000px;}
@media print{
.y0_c00201{bottom:0.000000pt;}
.h0_c00201{height:606.666667pt;}
.w0_c00201{width:837.066667pt;}
.w1_c00201{width:837.333333pt;}
.x0_c00201{left:0.000000pt;}
}





/* 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_c00202 {
    display:none;
  }
  .loading-indicator_c00202.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00202 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_c00202 { 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_c00202" -> "#page-container .classname_c00202")
 */
.pf_c00202 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00202 { /* 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_c00202.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00202 { /* 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_c00202 { /* 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_c00202 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00202 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00202 {overflow:visible;}
  }
}
.c_c00202 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00202 { /* 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_c00202:after { /* webkit #35443 */
  content: '';
}
.t_c00202:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00202 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 */
}
.__c00202 { /* 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_c00202 { /* info for Javascript */
  display:none;
}
.l_c00202 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00202 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00202 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00202: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_c00202 {
    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_c00202.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00202.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_c00202 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00202{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00202;src:url('chunks/assets/font_74d7e987f08e4505b74f4479.woff2')format("woff");}.ff1_c00202{font-family:ff1_c00202;line-height:1.000000;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;}
.m41_c00202{transform:matrix(0.010602,-0.000265,0.006248,0.249922,0,0);-ms-transform:matrix(0.010602,-0.000265,0.006248,0.249922,0,0);-webkit-transform:matrix(0.010602,-0.000265,0.006248,0.249922,0,0);}
.m4f_c00202{transform:matrix(0.016770,-0.000067,0.001000,0.249998,0,0);-ms-transform:matrix(0.016770,-0.000067,0.001000,0.249998,0,0);-webkit-transform:matrix(0.016770,-0.000067,0.001000,0.249998,0,0);}
.m59_c00202{transform:matrix(0.018750,-0.000075,0.001000,0.249998,0,0);-ms-transform:matrix(0.018750,-0.000075,0.001000,0.249998,0,0);-webkit-transform:matrix(0.018750,-0.000075,0.001000,0.249998,0,0);}
.m4e_c00202{transform:matrix(0.069144,-0.000277,0.001000,0.249998,0,0);-ms-transform:matrix(0.069144,-0.000277,0.001000,0.249998,0,0);-webkit-transform:matrix(0.069144,-0.000277,0.001000,0.249998,0,0);}
.m26_c00202{transform:matrix(0.096702,-0.002321,0.005998,0.249928,0,0);-ms-transform:matrix(0.096702,-0.002321,0.005998,0.249928,0,0);-webkit-transform:matrix(0.096702,-0.002321,0.005998,0.249928,0,0);}
.m5b_c00202{transform:matrix(0.118083,-0.003661,0.007746,0.249880,0,0);-ms-transform:matrix(0.118083,-0.003661,0.007746,0.249880,0,0);-webkit-transform:matrix(0.118083,-0.003661,0.007746,0.249880,0,0);}
.m18_c00202{transform:matrix(0.133032,-0.003193,0.005998,0.249928,0,0);-ms-transform:matrix(0.133032,-0.003193,0.005998,0.249928,0,0);-webkit-transform:matrix(0.133032,-0.003193,0.005998,0.249928,0,0);}
.m5a_c00202{transform:matrix(0.151954,-0.000608,0.001000,0.249998,0,0);-ms-transform:matrix(0.151954,-0.000608,0.001000,0.249998,0,0);-webkit-transform:matrix(0.151954,-0.000608,0.001000,0.249998,0,0);}
.m51_c00202{transform:matrix(0.178214,-0.000713,0.001000,0.249998,0,0);-ms-transform:matrix(0.178214,-0.000713,0.001000,0.249998,0,0);-webkit-transform:matrix(0.178214,-0.000713,0.001000,0.249998,0,0);}
.m60_c00202{transform:matrix(0.181273,-0.005619,0.007746,0.249880,0,0);-ms-transform:matrix(0.181273,-0.005619,0.007746,0.249880,0,0);-webkit-transform:matrix(0.181273,-0.005619,0.007746,0.249880,0,0);}
.m50_c00202{transform:matrix(0.188033,-0.000752,0.001000,0.249998,0,0);-ms-transform:matrix(0.188033,-0.000752,0.001000,0.249998,0,0);-webkit-transform:matrix(0.188033,-0.000752,0.001000,0.249998,0,0);}
.m32_c00202{transform:matrix(0.222116,-0.005553,0.006248,0.249922,0,0);-ms-transform:matrix(0.222116,-0.005553,0.006248,0.249922,0,0);-webkit-transform:matrix(0.222116,-0.005553,0.006248,0.249922,0,0);}
.m16_c00202{transform:matrix(0.222721,-0.005345,0.005998,0.249928,0,0);-ms-transform:matrix(0.222721,-0.005345,0.005998,0.249928,0,0);-webkit-transform:matrix(0.222721,-0.005345,0.005998,0.249928,0,0);}
.m15_c00202{transform:matrix(0.225755,-0.005418,0.005998,0.249928,0,0);-ms-transform:matrix(0.225755,-0.005418,0.005998,0.249928,0,0);-webkit-transform:matrix(0.225755,-0.005418,0.005998,0.249928,0,0);}
.m37_c00202{transform:matrix(0.229308,-0.005733,0.006248,0.249922,0,0);-ms-transform:matrix(0.229308,-0.005733,0.006248,0.249922,0,0);-webkit-transform:matrix(0.229308,-0.005733,0.006248,0.249922,0,0);}
.m55_c00202{transform:matrix(0.230668,-0.000923,0.001000,0.249998,0,0);-ms-transform:matrix(0.230668,-0.000923,0.001000,0.249998,0,0);-webkit-transform:matrix(0.230668,-0.000923,0.001000,0.249998,0,0);}
.m7_c00202{transform:matrix(0.249688,-0.005993,0.005998,0.249928,0,0);-ms-transform:matrix(0.249688,-0.005993,0.005998,0.249928,0,0);-webkit-transform:matrix(0.249688,-0.005993,0.005998,0.249928,0,0);}
.m1c_c00202{transform:matrix(0.252122,-0.006051,0.005998,0.249928,0,0);-ms-transform:matrix(0.252122,-0.006051,0.005998,0.249928,0,0);-webkit-transform:matrix(0.252122,-0.006051,0.005998,0.249928,0,0);}
.m4d_c00202{transform:matrix(0.253600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253600,0.000000,0.000000,0.250000,0,0);}
.m14_c00202{transform:matrix(0.259555,-0.006229,0.005998,0.249928,0,0);-ms-transform:matrix(0.259555,-0.006229,0.005998,0.249928,0,0);-webkit-transform:matrix(0.259555,-0.006229,0.005998,0.249928,0,0);}
.m9_c00202{transform:matrix(0.261100,-0.006266,0.005998,0.249928,0,0);-ms-transform:matrix(0.261100,-0.006266,0.005998,0.249928,0,0);-webkit-transform:matrix(0.261100,-0.006266,0.005998,0.249928,0,0);}
.m3_c00202{transform:matrix(0.262163,-0.005243,0.004999,0.249950,0,0);-ms-transform:matrix(0.262163,-0.005243,0.004999,0.249950,0,0);-webkit-transform:matrix(0.262163,-0.005243,0.004999,0.249950,0,0);}
.m5_c00202{transform:matrix(0.265349,-0.006368,0.005998,0.249928,0,0);-ms-transform:matrix(0.265349,-0.006368,0.005998,0.249928,0,0);-webkit-transform:matrix(0.265349,-0.006368,0.005998,0.249928,0,0);}
.m5f_c00202{transform:matrix(0.273219,-0.008470,0.007746,0.249880,0,0);-ms-transform:matrix(0.273219,-0.008470,0.007746,0.249880,0,0);-webkit-transform:matrix(0.273219,-0.008470,0.007746,0.249880,0,0);}
.m6_c00202{transform:matrix(0.273456,-0.006563,0.005998,0.249928,0,0);-ms-transform:matrix(0.273456,-0.006563,0.005998,0.249928,0,0);-webkit-transform:matrix(0.273456,-0.006563,0.005998,0.249928,0,0);}
.m5e_c00202{transform:matrix(0.273659,-0.008483,0.007746,0.249880,0,0);-ms-transform:matrix(0.273659,-0.008483,0.007746,0.249880,0,0);-webkit-transform:matrix(0.273659,-0.008483,0.007746,0.249880,0,0);}
.m17_c00202{transform:matrix(0.277120,-0.006651,0.005998,0.249928,0,0);-ms-transform:matrix(0.277120,-0.006651,0.005998,0.249928,0,0);-webkit-transform:matrix(0.277120,-0.006651,0.005998,0.249928,0,0);}
.m3a_c00202{transform:matrix(0.282662,-0.007067,0.006248,0.249922,0,0);-ms-transform:matrix(0.282662,-0.007067,0.006248,0.249922,0,0);-webkit-transform:matrix(0.282662,-0.007067,0.006248,0.249922,0,0);}
.m4c_c00202{transform:matrix(0.297175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297175,0.000000,0.000000,0.250000,0,0);}
.m1b_c00202{transform:matrix(0.305367,-0.007329,0.005998,0.249928,0,0);-ms-transform:matrix(0.305367,-0.007329,0.005998,0.249928,0,0);-webkit-transform:matrix(0.305367,-0.007329,0.005998,0.249928,0,0);}
.m1d_c00202{transform:matrix(0.305787,-0.007339,0.005998,0.249928,0,0);-ms-transform:matrix(0.305787,-0.007339,0.005998,0.249928,0,0);-webkit-transform:matrix(0.305787,-0.007339,0.005998,0.249928,0,0);}
.m4_c00202{transform:matrix(0.306107,-0.007347,0.005998,0.249928,0,0);-ms-transform:matrix(0.306107,-0.007347,0.005998,0.249928,0,0);-webkit-transform:matrix(0.306107,-0.007347,0.005998,0.249928,0,0);}
.m61_c00202{transform:matrix(0.311730,-0.009664,0.007746,0.249880,0,0);-ms-transform:matrix(0.311730,-0.009664,0.007746,0.249880,0,0);-webkit-transform:matrix(0.311730,-0.009664,0.007746,0.249880,0,0);}
.m8_c00202{transform:matrix(0.313025,-0.007513,0.005998,0.249928,0,0);-ms-transform:matrix(0.313025,-0.007513,0.005998,0.249928,0,0);-webkit-transform:matrix(0.313025,-0.007513,0.005998,0.249928,0,0);}
.m27_c00202{transform:matrix(0.315249,-0.007566,0.005998,0.249928,0,0);-ms-transform:matrix(0.315249,-0.007566,0.005998,0.249928,0,0);-webkit-transform:matrix(0.315249,-0.007566,0.005998,0.249928,0,0);}
.m13_c00202{transform:matrix(0.324387,-0.007785,0.005998,0.249928,0,0);-ms-transform:matrix(0.324387,-0.007785,0.005998,0.249928,0,0);-webkit-transform:matrix(0.324387,-0.007785,0.005998,0.249928,0,0);}
.m2b_c00202{transform:matrix(0.333216,-0.008330,0.006248,0.249922,0,0);-ms-transform:matrix(0.333216,-0.008330,0.006248,0.249922,0,0);-webkit-transform:matrix(0.333216,-0.008330,0.006248,0.249922,0,0);}
.m39_c00202{transform:matrix(0.347526,-0.008688,0.006248,0.249922,0,0);-ms-transform:matrix(0.347526,-0.008688,0.006248,0.249922,0,0);-webkit-transform:matrix(0.347526,-0.008688,0.006248,0.249922,0,0);}
.m1f_c00202{transform:matrix(0.357287,-0.008575,0.005998,0.249928,0,0);-ms-transform:matrix(0.357287,-0.008575,0.005998,0.249928,0,0);-webkit-transform:matrix(0.357287,-0.008575,0.005998,0.249928,0,0);}
.m1a_c00202{transform:matrix(0.359137,-0.008619,0.005998,0.249928,0,0);-ms-transform:matrix(0.359137,-0.008619,0.005998,0.249928,0,0);-webkit-transform:matrix(0.359137,-0.008619,0.005998,0.249928,0,0);}
.m47_c00202{transform:matrix(0.370359,-0.009259,0.006248,0.249922,0,0);-ms-transform:matrix(0.370359,-0.009259,0.006248,0.249922,0,0);-webkit-transform:matrix(0.370359,-0.009259,0.006248,0.249922,0,0);}
.md_c00202{transform:matrix(0.372258,-0.008934,0.005998,0.249928,0,0);-ms-transform:matrix(0.372258,-0.008934,0.005998,0.249928,0,0);-webkit-transform:matrix(0.372258,-0.008934,0.005998,0.249928,0,0);}
.m3d_c00202{transform:matrix(0.374878,-0.009372,0.006248,0.249922,0,0);-ms-transform:matrix(0.374878,-0.009372,0.006248,0.249922,0,0);-webkit-transform:matrix(0.374878,-0.009372,0.006248,0.249922,0,0);}
.m4b_c00202{transform:matrix(0.376082,-0.009402,0.006248,0.249922,0,0);-ms-transform:matrix(0.376082,-0.009402,0.006248,0.249922,0,0);-webkit-transform:matrix(0.376082,-0.009402,0.006248,0.249922,0,0);}
.m49_c00202{transform:matrix(0.394947,-0.009874,0.006248,0.249922,0,0);-ms-transform:matrix(0.394947,-0.009874,0.006248,0.249922,0,0);-webkit-transform:matrix(0.394947,-0.009874,0.006248,0.249922,0,0);}
.m25_c00202{transform:matrix(0.396011,-0.009504,0.005998,0.249928,0,0);-ms-transform:matrix(0.396011,-0.009504,0.005998,0.249928,0,0);-webkit-transform:matrix(0.396011,-0.009504,0.005998,0.249928,0,0);}
.m62_c00202{transform:matrix(0.400463,-0.012414,0.007746,0.249880,0,0);-ms-transform:matrix(0.400463,-0.012414,0.007746,0.249880,0,0);-webkit-transform:matrix(0.400463,-0.012414,0.007746,0.249880,0,0);}
.m21_c00202{transform:matrix(0.411297,-0.009871,0.005998,0.249928,0,0);-ms-transform:matrix(0.411297,-0.009871,0.005998,0.249928,0,0);-webkit-transform:matrix(0.411297,-0.009871,0.005998,0.249928,0,0);}
.m46_c00202{transform:matrix(0.413906,-0.010348,0.006248,0.249922,0,0);-ms-transform:matrix(0.413906,-0.010348,0.006248,0.249922,0,0);-webkit-transform:matrix(0.413906,-0.010348,0.006248,0.249922,0,0);}
.m45_c00202{transform:matrix(0.424367,-0.010609,0.006248,0.249922,0,0);-ms-transform:matrix(0.424367,-0.010609,0.006248,0.249922,0,0);-webkit-transform:matrix(0.424367,-0.010609,0.006248,0.249922,0,0);}
.m1_c00202{transform:matrix(0.425650,-0.008513,0.004999,0.249950,0,0);-ms-transform:matrix(0.425650,-0.008513,0.004999,0.249950,0,0);-webkit-transform:matrix(0.425650,-0.008513,0.004999,0.249950,0,0);}
.m2f_c00202{transform:matrix(0.428626,-0.010716,0.006248,0.249922,0,0);-ms-transform:matrix(0.428626,-0.010716,0.006248,0.249922,0,0);-webkit-transform:matrix(0.428626,-0.010716,0.006248,0.249922,0,0);}
.m53_c00202{transform:matrix(0.434327,-0.001737,0.001000,0.249998,0,0);-ms-transform:matrix(0.434327,-0.001737,0.001000,0.249998,0,0);-webkit-transform:matrix(0.434327,-0.001737,0.001000,0.249998,0,0);}
.m3c_c00202{transform:matrix(0.435329,-0.010883,0.006248,0.249922,0,0);-ms-transform:matrix(0.435329,-0.010883,0.006248,0.249922,0,0);-webkit-transform:matrix(0.435329,-0.010883,0.006248,0.249922,0,0);}
.m52_c00202{transform:matrix(0.458441,-0.001834,0.001000,0.249998,0,0);-ms-transform:matrix(0.458441,-0.001834,0.001000,0.249998,0,0);-webkit-transform:matrix(0.458441,-0.001834,0.001000,0.249998,0,0);}
.m20_c00202{transform:matrix(0.469505,-0.011268,0.005998,0.249928,0,0);-ms-transform:matrix(0.469505,-0.011268,0.005998,0.249928,0,0);-webkit-transform:matrix(0.469505,-0.011268,0.005998,0.249928,0,0);}
.mc_c00202{transform:matrix(0.481961,-0.011567,0.005998,0.249928,0,0);-ms-transform:matrix(0.481961,-0.011567,0.005998,0.249928,0,0);-webkit-transform:matrix(0.481961,-0.011567,0.005998,0.249928,0,0);}
.m1e_c00202{transform:matrix(0.488534,-0.011725,0.005998,0.249928,0,0);-ms-transform:matrix(0.488534,-0.011725,0.005998,0.249928,0,0);-webkit-transform:matrix(0.488534,-0.011725,0.005998,0.249928,0,0);}
.m11_c00202{transform:matrix(0.515632,-0.012375,0.005998,0.249928,0,0);-ms-transform:matrix(0.515632,-0.012375,0.005998,0.249928,0,0);-webkit-transform:matrix(0.515632,-0.012375,0.005998,0.249928,0,0);}
.m24_c00202{transform:matrix(0.515946,-0.012383,0.005998,0.249928,0,0);-ms-transform:matrix(0.515946,-0.012383,0.005998,0.249928,0,0);-webkit-transform:matrix(0.515946,-0.012383,0.005998,0.249928,0,0);}
.m2a_c00202{transform:matrix(0.522882,-0.013072,0.006248,0.249922,0,0);-ms-transform:matrix(0.522882,-0.013072,0.006248,0.249922,0,0);-webkit-transform:matrix(0.522882,-0.013072,0.006248,0.249922,0,0);}
.m54_c00202{transform:matrix(0.524341,-0.002097,0.001000,0.249998,0,0);-ms-transform:matrix(0.524341,-0.002097,0.001000,0.249998,0,0);-webkit-transform:matrix(0.524341,-0.002097,0.001000,0.249998,0,0);}
.mf_c00202{transform:matrix(0.526458,-0.012635,0.005998,0.249928,0,0);-ms-transform:matrix(0.526458,-0.012635,0.005998,0.249928,0,0);-webkit-transform:matrix(0.526458,-0.012635,0.005998,0.249928,0,0);}
.m3b_c00202{transform:matrix(0.526910,-0.013173,0.006248,0.249922,0,0);-ms-transform:matrix(0.526910,-0.013173,0.006248,0.249922,0,0);-webkit-transform:matrix(0.526910,-0.013173,0.006248,0.249922,0,0);}
.m22_c00202{transform:matrix(0.526973,-0.012647,0.005998,0.249928,0,0);-ms-transform:matrix(0.526973,-0.012647,0.005998,0.249928,0,0);-webkit-transform:matrix(0.526973,-0.012647,0.005998,0.249928,0,0);}
.m12_c00202{transform:matrix(0.530562,-0.012733,0.005998,0.249928,0,0);-ms-transform:matrix(0.530562,-0.012733,0.005998,0.249928,0,0);-webkit-transform:matrix(0.530562,-0.012733,0.005998,0.249928,0,0);}
.m2d_c00202{transform:matrix(0.535913,-0.013398,0.006248,0.249922,0,0);-ms-transform:matrix(0.535913,-0.013398,0.006248,0.249922,0,0);-webkit-transform:matrix(0.535913,-0.013398,0.006248,0.249922,0,0);}
.m30_c00202{transform:matrix(0.548839,-0.013721,0.006248,0.249922,0,0);-ms-transform:matrix(0.548839,-0.013721,0.006248,0.249922,0,0);-webkit-transform:matrix(0.548839,-0.013721,0.006248,0.249922,0,0);}
.m28_c00202{transform:matrix(0.557060,-0.013369,0.005998,0.249928,0,0);-ms-transform:matrix(0.557060,-0.013369,0.005998,0.249928,0,0);-webkit-transform:matrix(0.557060,-0.013369,0.005998,0.249928,0,0);}
.m56_c00202{transform:matrix(0.564250,-0.002257,0.001000,0.249998,0,0);-ms-transform:matrix(0.564250,-0.002257,0.001000,0.249998,0,0);-webkit-transform:matrix(0.564250,-0.002257,0.001000,0.249998,0,0);}
.m10_c00202{transform:matrix(0.564672,-0.013552,0.005998,0.249928,0,0);-ms-transform:matrix(0.564672,-0.013552,0.005998,0.249928,0,0);-webkit-transform:matrix(0.564672,-0.013552,0.005998,0.249928,0,0);}
.m48_c00202{transform:matrix(0.570837,-0.014271,0.006248,0.249922,0,0);-ms-transform:matrix(0.570837,-0.014271,0.006248,0.249922,0,0);-webkit-transform:matrix(0.570837,-0.014271,0.006248,0.249922,0,0);}
.mb_c00202{transform:matrix(0.578293,-0.013879,0.005998,0.249928,0,0);-ms-transform:matrix(0.578293,-0.013879,0.005998,0.249928,0,0);-webkit-transform:matrix(0.578293,-0.013879,0.005998,0.249928,0,0);}
.m42_c00202{transform:matrix(0.584542,-0.014614,0.006248,0.249922,0,0);-ms-transform:matrix(0.584542,-0.014614,0.006248,0.249922,0,0);-webkit-transform:matrix(0.584542,-0.014614,0.006248,0.249922,0,0);}
.me_c00202{transform:matrix(0.601572,-0.014438,0.005998,0.249928,0,0);-ms-transform:matrix(0.601572,-0.014438,0.005998,0.249928,0,0);-webkit-transform:matrix(0.601572,-0.014438,0.005998,0.249928,0,0);}
.ma_c00202{transform:matrix(0.602986,-0.014472,0.005998,0.249928,0,0);-ms-transform:matrix(0.602986,-0.014472,0.005998,0.249928,0,0);-webkit-transform:matrix(0.602986,-0.014472,0.005998,0.249928,0,0);}
.m43_c00202{transform:matrix(0.608845,-0.015221,0.006248,0.249922,0,0);-ms-transform:matrix(0.608845,-0.015221,0.006248,0.249922,0,0);-webkit-transform:matrix(0.608845,-0.015221,0.006248,0.249922,0,0);}
.m5d_c00202{transform:matrix(0.639243,-0.019817,0.007746,0.249880,0,0);-ms-transform:matrix(0.639243,-0.019817,0.007746,0.249880,0,0);-webkit-transform:matrix(0.639243,-0.019817,0.007746,0.249880,0,0);}
.m58_c00202{transform:matrix(0.649850,-0.002599,0.001000,0.249998,0,0);-ms-transform:matrix(0.649850,-0.002599,0.001000,0.249998,0,0);-webkit-transform:matrix(0.649850,-0.002599,0.001000,0.249998,0,0);}
.m31_c00202{transform:matrix(0.660114,-0.016503,0.006248,0.249922,0,0);-ms-transform:matrix(0.660114,-0.016503,0.006248,0.249922,0,0);-webkit-transform:matrix(0.660114,-0.016503,0.006248,0.249922,0,0);}
.m40_c00202{transform:matrix(0.699816,-0.017495,0.006248,0.249922,0,0);-ms-transform:matrix(0.699816,-0.017495,0.006248,0.249922,0,0);-webkit-transform:matrix(0.699816,-0.017495,0.006248,0.249922,0,0);}
.m2c_c00202{transform:matrix(0.717111,-0.017928,0.006248,0.249922,0,0);-ms-transform:matrix(0.717111,-0.017928,0.006248,0.249922,0,0);-webkit-transform:matrix(0.717111,-0.017928,0.006248,0.249922,0,0);}
.m19_c00202{transform:matrix(0.726211,-0.017429,0.005998,0.249928,0,0);-ms-transform:matrix(0.726211,-0.017429,0.005998,0.249928,0,0);-webkit-transform:matrix(0.726211,-0.017429,0.005998,0.249928,0,0);}
.m4a_c00202{transform:matrix(0.794557,-0.019864,0.006248,0.249922,0,0);-ms-transform:matrix(0.794557,-0.019864,0.006248,0.249922,0,0);-webkit-transform:matrix(0.794557,-0.019864,0.006248,0.249922,0,0);}
.m34_c00202{transform:matrix(0.810502,-0.020263,0.006248,0.249922,0,0);-ms-transform:matrix(0.810502,-0.020263,0.006248,0.249922,0,0);-webkit-transform:matrix(0.810502,-0.020263,0.006248,0.249922,0,0);}
.m33_c00202{transform:matrix(0.822543,-0.020564,0.006248,0.249922,0,0);-ms-transform:matrix(0.822543,-0.020564,0.006248,0.249922,0,0);-webkit-transform:matrix(0.822543,-0.020564,0.006248,0.249922,0,0);}
.m44_c00202{transform:matrix(0.841217,-0.021030,0.006248,0.249922,0,0);-ms-transform:matrix(0.841217,-0.021030,0.006248,0.249922,0,0);-webkit-transform:matrix(0.841217,-0.021030,0.006248,0.249922,0,0);}
.m5c_c00202{transform:matrix(0.845514,-0.026211,0.007746,0.249880,0,0);-ms-transform:matrix(0.845514,-0.026211,0.007746,0.249880,0,0);-webkit-transform:matrix(0.845514,-0.026211,0.007746,0.249880,0,0);}
.m2e_c00202{transform:matrix(0.848420,-0.021210,0.006248,0.249922,0,0);-ms-transform:matrix(0.848420,-0.021210,0.006248,0.249922,0,0);-webkit-transform:matrix(0.848420,-0.021210,0.006248,0.249922,0,0);}
.m57_c00202{transform:matrix(0.860843,-0.003443,0.001000,0.249998,0,0);-ms-transform:matrix(0.860843,-0.003443,0.001000,0.249998,0,0);-webkit-transform:matrix(0.860843,-0.003443,0.001000,0.249998,0,0);}
.m3e_c00202{transform:matrix(0.891551,-0.022289,0.006248,0.249922,0,0);-ms-transform:matrix(0.891551,-0.022289,0.006248,0.249922,0,0);-webkit-transform:matrix(0.891551,-0.022289,0.006248,0.249922,0,0);}
.m38_c00202{transform:matrix(0.917908,-0.022948,0.006248,0.249922,0,0);-ms-transform:matrix(0.917908,-0.022948,0.006248,0.249922,0,0);-webkit-transform:matrix(0.917908,-0.022948,0.006248,0.249922,0,0);}
.m23_c00202{transform:matrix(1.233535,-0.029605,0.005998,0.249928,0,0);-ms-transform:matrix(1.233535,-0.029605,0.005998,0.249928,0,0);-webkit-transform:matrix(1.233535,-0.029605,0.005998,0.249928,0,0);}
.m36_c00202{transform:matrix(1.249710,-0.031243,0.006248,0.249922,0,0);-ms-transform:matrix(1.249710,-0.031243,0.006248,0.249922,0,0);-webkit-transform:matrix(1.249710,-0.031243,0.006248,0.249922,0,0);}
.m29_c00202{transform:matrix(1.496078,-0.037402,0.006248,0.249922,0,0);-ms-transform:matrix(1.496078,-0.037402,0.006248,0.249922,0,0);-webkit-transform:matrix(1.496078,-0.037402,0.006248,0.249922,0,0);}
.m2_c00202{transform:matrix(1.689087,-0.033782,0.004999,0.249950,0,0);-ms-transform:matrix(1.689087,-0.033782,0.004999,0.249950,0,0);-webkit-transform:matrix(1.689087,-0.033782,0.004999,0.249950,0,0);}
.m35_c00202{transform:matrix(1.771397,-0.044285,0.006248,0.249922,0,0);-ms-transform:matrix(1.771397,-0.044285,0.006248,0.249922,0,0);-webkit-transform:matrix(1.771397,-0.044285,0.006248,0.249922,0,0);}
.m3f_c00202{transform:matrix(2.025952,-0.050649,0.006248,0.249922,0,0);-ms-transform:matrix(2.025952,-0.050649,0.006248,0.249922,0,0);-webkit-transform:matrix(2.025952,-0.050649,0.006248,0.249922,0,0);}
.m0_c00202{transform:matrix(2.738357,-0.054767,0.004999,0.249950,0,0);-ms-transform:matrix(2.738357,-0.054767,0.004999,0.249950,0,0);-webkit-transform:matrix(2.738357,-0.054767,0.004999,0.249950,0,0);}
.v0_c00202{vertical-align:0.000000px;}
.ls0_c00202{letter-spacing:0.000000px;}
.sc__c00202{text-shadow:none;}
.sc0_c00202{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__c00202{-webkit-text-stroke:0px transparent;}
.sc0_c00202{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00202{word-spacing:0.000000px;}
.fc0_c00202{color:transparent;}
.fs9_c00202{font-size:30.000000px;}
.fs8_c00202{font-size:36.000000px;}
.fs4_c00202{font-size:66.019005px;}
.fs5_c00202{font-size:66.020622px;}
.fsa_c00202{font-size:72.000576px;}
.fs2_c00202{font-size:72.020733px;}
.fs7_c00202{font-size:72.022496px;}
.fs6_c00202{font-size:90.028121px;}
.fs0_c00202{font-size:102.020398px;}
.fs3_c00202{font-size:102.029372px;}
.fs1_c00202{font-size:114.032827px;}
.fsc_c00202{font-size:144.069175px;}
.fsb_c00202{font-size:168.001344px;}
.y0_c00202{bottom:0.000000px;}
.y5a_c00202{bottom:23.148764px;}
.y59_c00202{bottom:23.505000px;}
.y5b_c00202{bottom:28.532441px;}
.y5c_c00202{bottom:35.969651px;}
.y5d_c00202{bottom:38.388720px;}
.y5e_c00202{bottom:40.580590px;}
.y5f_c00202{bottom:41.645162px;}
.y60_c00202{bottom:48.873029px;}
.y55_c00202{bottom:75.601710px;}
.y56_c00202{bottom:77.609100px;}
.y57_c00202{bottom:80.842338px;}
.y58_c00202{bottom:86.109840px;}
.y52_c00202{bottom:110.634642px;}
.y53_c00202{bottom:110.634942px;}
.y51_c00202{bottom:110.635128px;}
.y54_c00202{bottom:110.635176px;}
.y4c_c00202{bottom:154.980000px;}
.y4d_c00202{bottom:155.142132px;}
.y4e_c00202{bottom:156.515838px;}
.y4f_c00202{bottom:156.861276px;}
.y50_c00202{bottom:157.195266px;}
.y4b_c00202{bottom:231.660000px;}
.y4a_c00202{bottom:234.763500px;}
.y43_c00202{bottom:298.077150px;}
.y49_c00202{bottom:298.077413px;}
.y48_c00202{bottom:298.077450px;}
.y45_c00202{bottom:298.077637px;}
.y42_c00202{bottom:298.077862px;}
.y47_c00202{bottom:298.077900px;}
.y44_c00202{bottom:298.078088px;}
.y46_c00202{bottom:298.078200px;}
.y39_c00202{bottom:372.314137px;}
.y3a_c00202{bottom:373.295887px;}
.y3b_c00202{bottom:373.781737px;}
.y3c_c00202{bottom:374.564588px;}
.y3d_c00202{bottom:376.138012px;}
.y3e_c00202{bottom:376.834762px;}
.y3f_c00202{bottom:379.199062px;}
.y40_c00202{bottom:380.761762px;}
.y41_c00202{bottom:382.645687px;}
.y33_c00202{bottom:404.168513px;}
.y34_c00202{bottom:406.367175px;}
.y35_c00202{bottom:408.865350px;}
.y36_c00202{bottom:414.556050px;}
.y37_c00202{bottom:421.072650px;}
.y38_c00202{bottom:426.731175px;}
.y2a_c00202{bottom:433.638000px;}
.y2b_c00202{bottom:437.720137px;}
.y2c_c00202{bottom:439.177687px;}
.y2d_c00202{bottom:441.079425px;}
.y2e_c00202{bottom:443.659312px;}
.y2f_c00202{bottom:446.023762px;}
.y30_c00202{bottom:448.884862px;}
.y31_c00202{bottom:452.703675px;}
.y32_c00202{bottom:454.749787px;}
.y20_c00202{bottom:467.066832px;}
.y21_c00202{bottom:469.152540px;}
.y22_c00202{bottom:470.408400px;}
.y23_c00202{bottom:472.770180px;}
.y24_c00202{bottom:474.253728px;}
.y25_c00202{bottom:477.338304px;}
.y26_c00202{bottom:478.809012px;}
.y27_c00202{bottom:480.976236px;}
.y28_c00202{bottom:481.360488px;}
.y29_c00202{bottom:482.488296px;}
.y14_c00202{bottom:498.948156px;}
.y15_c00202{bottom:500.250516px;}
.y16_c00202{bottom:500.936772px;}
.y17_c00202{bottom:502.152768px;}
.y18_c00202{bottom:502.699740px;}
.y19_c00202{bottom:504.079428px;}
.y1a_c00202{bottom:505.100124px;}
.y1b_c00202{bottom:506.616000px;}
.y1c_c00202{bottom:507.520344px;}
.y1d_c00202{bottom:508.902528px;}
.y1e_c00202{bottom:509.200032px;}
.y1f_c00202{bottom:510.044076px;}
.yd_c00202{bottom:532.438704px;}
.ye_c00202{bottom:534.585204px;}
.yf_c00202{bottom:535.241196px;}
.y10_c00202{bottom:537.115116px;}
.y11_c00202{bottom:539.672592px;}
.y12_c00202{bottom:543.333552px;}
.y13_c00202{bottom:550.488840px;}
.y5_c00202{bottom:557.023500px;}
.y6_c00202{bottom:558.935532px;}
.y7_c00202{bottom:560.866032px;}
.y8_c00202{bottom:565.426656px;}
.y9_c00202{bottom:567.550692px;}
.ya_c00202{bottom:569.092500px;}
.yb_c00202{bottom:571.708440px;}
.yc_c00202{bottom:574.540488px;}
.y1_c00202{bottom:592.897500px;}
.y2_c00202{bottom:598.607070px;}
.y3_c00202{bottom:599.614080px;}
.y4_c00202{bottom:609.660060px;}
.ha_c00202{height:30.000000px;}
.h9_c00202{height:36.000000px;}
.h5_c00202{height:66.019005px;}
.h6_c00202{height:66.020622px;}
.hb_c00202{height:72.000576px;}
.h3_c00202{height:72.020733px;}
.h8_c00202{height:72.022496px;}
.h7_c00202{height:90.028121px;}
.h1_c00202{height:102.020398px;}
.h4_c00202{height:102.029372px;}
.h2_c00202{height:114.032827px;}
.hd_c00202{height:144.069175px;}
.hc_c00202{height:168.001344px;}
.h0_c00202{height:682.500000px;}
.w0_c00202{width:941.700000px;}
.w1_c00202{width:942.000000px;}
.x0_c00202{left:0.000000px;}
.x3c_c00202{left:11.873738px;}
.x1_c00202{left:25.899000px;}
.x52_c00202{left:31.063500px;}
.x5_c00202{left:32.983500px;}
.x13_c00202{left:39.511764px;}
.x1f_c00202{left:41.951880px;}
.x35_c00202{left:44.230200px;}
.x4e_c00202{left:48.042222px;}
.x3d_c00202{left:104.783288px;}
.x6_c00202{left:112.651500px;}
.x20_c00202{left:125.354364px;}
.x14_c00202{left:132.549084px;}
.xd_c00202{left:135.714348px;}
.xe_c00202{left:166.987116px;}
.x21_c00202{left:175.618176px;}
.x15_c00202{left:181.529820px;}
.x49_c00202{left:190.924500px;}
.x7_c00202{left:193.089000px;}
.x3e_c00202{left:200.122838px;}
.x29_c00202{left:201.814500px;}
.x53_c00202{left:204.730500px;}
.x4f_c00202{left:215.384370px;}
.x31_c00202{left:222.016537px;}
.x36_c00202{left:231.869175px;}
.xf_c00202{left:256.198524px;}
.x2a_c00202{left:260.116500px;}
.x16_c00202{left:268.342128px;}
.x22_c00202{left:270.085908px;}
.x17_c00202{left:307.391988px;}
.x2_c00202{left:311.377500px;}
.x23_c00202{left:329.398968px;}
.x2b_c00202{left:336.186000px;}
.x4d_c00202{left:354.511494px;}
.x3_c00202{left:361.728000px;}
.x37_c00202{left:362.948737px;}
.x10_c00202{left:377.956272px;}
.x8_c00202{left:383.115000px;}
.x3f_c00202{left:399.175650px;}
.x18_c00202{left:405.902604px;}
.x38_c00202{left:421.017600px;}
.x2c_c00202{left:439.381500px;}
.x32_c00202{left:440.879062px;}
.x54_c00202{left:444.640500px;}
.x24_c00202{left:452.795016px;}
.x9_c00202{left:471.616500px;}
.x19_c00202{left:478.761564px;}
.x50_c00202{left:484.810248px;}
.x25_c00202{left:511.635612px;}
.x55_c00202{left:522.675000px;}
.x2d_c00202{left:533.959500px;}
.xa_c00202{left:535.858500px;}
.x11_c00202{left:552.321336px;}
.x40_c00202{left:561.766200px;}
.x4a_c00202{left:574.884000px;}
.x1a_c00202{left:587.074056px;}
.x56_c00202{left:593.380500px;}
.x26_c00202{left:598.309524px;}
.x27_c00202{left:613.694664px;}
.x39_c00202{left:618.073612px;}
.x41_c00202{left:620.644988px;}
.x57_c00202{left:627.721500px;}
.xb_c00202{left:644.856000px;}
.x2e_c00202{left:648.403500px;}
.x1b_c00202{left:651.708072px;}
.x28_c00202{left:658.810584px;}
.x4b_c00202{left:661.243500px;}
.x33_c00202{left:691.516800px;}
.x42_c00202{left:738.941363px;}
.x4c_c00202{left:744.741000px;}
.x3a_c00202{left:748.303912px;}
.x1c_c00202{left:750.385224px;}
.xc_c00202{left:762.858000px;}
.x1d_c00202{left:771.598800px;}
.x43_c00202{left:779.454675px;}
.x2f_c00202{left:801.156000px;}
.x1e_c00202{left:831.844236px;}
.x44_c00202{left:836.172113px;}
.x58_c00202{left:860.878500px;}
.x4_c00202{left:864.027000px;}
.x45_c00202{left:873.443400px;}
.x30_c00202{left:883.000500px;}
.x12_c00202{left:893.045352px;}
.x3b_c00202{left:905.311913px;}
.x34_c00202{left:909.152362px;}
.x51_c00202{left:923.796702px;}
.x47_c00202{left:930.690000px;}
.x48_c00202{left:936.360000px;}
.x46_c00202{left:937.453875px;}
@media print{
.v0_c00202{vertical-align:0.000000pt;}
.ls0_c00202{letter-spacing:0.000000pt;}
.ws0_c00202{word-spacing:0.000000pt;}
.fs9_c00202{font-size:26.666667pt;}
.fs8_c00202{font-size:32.000000pt;}
.fs4_c00202{font-size:58.683560pt;}
.fs5_c00202{font-size:58.684997pt;}
.fsa_c00202{font-size:64.000512pt;}
.fs2_c00202{font-size:64.018429pt;}
.fs7_c00202{font-size:64.019997pt;}
.fs6_c00202{font-size:80.024996pt;}
.fs0_c00202{font-size:90.684798pt;}
.fs3_c00202{font-size:90.692775pt;}
.fs1_c00202{font-size:101.362513pt;}
.fsc_c00202{font-size:128.061489pt;}
.fsb_c00202{font-size:149.334528pt;}
.y0_c00202{bottom:0.000000pt;}
.y5a_c00202{bottom:20.576679pt;}
.y59_c00202{bottom:20.893333pt;}
.y5b_c00202{bottom:25.362169pt;}
.y5c_c00202{bottom:31.973023pt;}
.y5d_c00202{bottom:34.123307pt;}
.y5e_c00202{bottom:36.071636pt;}
.y5f_c00202{bottom:37.017921pt;}
.y60_c00202{bottom:43.442692pt;}
.y55_c00202{bottom:67.201520pt;}
.y56_c00202{bottom:68.985867pt;}
.y57_c00202{bottom:71.859856pt;}
.y58_c00202{bottom:76.542080pt;}
.y52_c00202{bottom:98.341904pt;}
.y53_c00202{bottom:98.342171pt;}
.y51_c00202{bottom:98.342336pt;}
.y54_c00202{bottom:98.342379pt;}
.y4c_c00202{bottom:137.760000pt;}
.y4d_c00202{bottom:137.904117pt;}
.y4e_c00202{bottom:139.125189pt;}
.y4f_c00202{bottom:139.432245pt;}
.y50_c00202{bottom:139.729125pt;}
.y4b_c00202{bottom:205.920000pt;}
.y4a_c00202{bottom:208.678667pt;}
.y43_c00202{bottom:264.957467pt;}
.y49_c00202{bottom:264.957700pt;}
.y48_c00202{bottom:264.957733pt;}
.y45_c00202{bottom:264.957900pt;}
.y42_c00202{bottom:264.958100pt;}
.y47_c00202{bottom:264.958133pt;}
.y44_c00202{bottom:264.958300pt;}
.y46_c00202{bottom:264.958400pt;}
.y39_c00202{bottom:330.945900pt;}
.y3a_c00202{bottom:331.818567pt;}
.y3b_c00202{bottom:332.250433pt;}
.y3c_c00202{bottom:332.946300pt;}
.y3d_c00202{bottom:334.344900pt;}
.y3e_c00202{bottom:334.964233pt;}
.y3f_c00202{bottom:337.065833pt;}
.y40_c00202{bottom:338.454900pt;}
.y41_c00202{bottom:340.129500pt;}
.y33_c00202{bottom:359.260900pt;}
.y34_c00202{bottom:361.215267pt;}
.y35_c00202{bottom:363.435867pt;}
.y36_c00202{bottom:368.494267pt;}
.y37_c00202{bottom:374.286800pt;}
.y38_c00202{bottom:379.316600pt;}
.y2a_c00202{bottom:385.456000pt;}
.y2b_c00202{bottom:389.084567pt;}
.y2c_c00202{bottom:390.380167pt;}
.y2d_c00202{bottom:392.070600pt;}
.y2e_c00202{bottom:394.363833pt;}
.y2f_c00202{bottom:396.465567pt;}
.y30_c00202{bottom:399.008767pt;}
.y31_c00202{bottom:402.403267pt;}
.y32_c00202{bottom:404.222033pt;}
.y20_c00202{bottom:415.170517pt;}
.y21_c00202{bottom:417.024480pt;}
.y22_c00202{bottom:418.140800pt;}
.y23_c00202{bottom:420.240160pt;}
.y24_c00202{bottom:421.558869pt;}
.y25_c00202{bottom:424.300715pt;}
.y26_c00202{bottom:425.608011pt;}
.y27_c00202{bottom:427.534432pt;}
.y28_c00202{bottom:427.875989pt;}
.y29_c00202{bottom:428.878485pt;}
.y14_c00202{bottom:443.509472pt;}
.y15_c00202{bottom:444.667125pt;}
.y16_c00202{bottom:445.277131pt;}
.y17_c00202{bottom:446.358016pt;}
.y18_c00202{bottom:446.844213pt;}
.y19_c00202{bottom:448.070603pt;}
.y1a_c00202{bottom:448.977888pt;}
.y1b_c00202{bottom:450.325333pt;}
.y1c_c00202{bottom:451.129195pt;}
.y1d_c00202{bottom:452.357803pt;}
.y1e_c00202{bottom:452.622251pt;}
.y1f_c00202{bottom:453.372512pt;}
.yd_c00202{bottom:473.278848pt;}
.ye_c00202{bottom:475.186848pt;}
.yf_c00202{bottom:475.769952pt;}
.y10_c00202{bottom:477.435659pt;}
.y11_c00202{bottom:479.708971pt;}
.y12_c00202{bottom:482.963157pt;}
.y13_c00202{bottom:489.323413pt;}
.y5_c00202{bottom:495.132000pt;}
.y6_c00202{bottom:496.831584pt;}
.y7_c00202{bottom:498.547584pt;}
.y8_c00202{bottom:502.601472pt;}
.y9_c00202{bottom:504.489504pt;}
.ya_c00202{bottom:505.860000pt;}
.yb_c00202{bottom:508.185280pt;}
.yc_c00202{bottom:510.702656pt;}
.y1_c00202{bottom:527.020000pt;}
.y2_c00202{bottom:532.095173pt;}
.y3_c00202{bottom:532.990293pt;}
.y4_c00202{bottom:541.920053pt;}
.ha_c00202{height:26.666667pt;}
.h9_c00202{height:32.000000pt;}
.h5_c00202{height:58.683560pt;}
.h6_c00202{height:58.684997pt;}
.hb_c00202{height:64.000512pt;}
.h3_c00202{height:64.018429pt;}
.h8_c00202{height:64.019997pt;}
.h7_c00202{height:80.024996pt;}
.h1_c00202{height:90.684798pt;}
.h4_c00202{height:90.692775pt;}
.h2_c00202{height:101.362513pt;}
.hd_c00202{height:128.061489pt;}
.hc_c00202{height:149.334528pt;}
.h0_c00202{height:606.666667pt;}
.w0_c00202{width:837.066667pt;}
.w1_c00202{width:837.333333pt;}
.x0_c00202{left:0.000000pt;}
.x3c_c00202{left:10.554433pt;}
.x1_c00202{left:23.021333pt;}
.x52_c00202{left:27.612000pt;}
.x5_c00202{left:29.318667pt;}
.x13_c00202{left:35.121568pt;}
.x1f_c00202{left:37.290560pt;}
.x35_c00202{left:39.315733pt;}
.x4e_c00202{left:42.704197pt;}
.x3d_c00202{left:93.140700pt;}
.x6_c00202{left:100.134667pt;}
.x20_c00202{left:111.426101pt;}
.x14_c00202{left:117.821408pt;}
.xd_c00202{left:120.634976pt;}
.xe_c00202{left:148.432992pt;}
.x21_c00202{left:156.105045pt;}
.x15_c00202{left:161.359840pt;}
.x49_c00202{left:169.710667pt;}
.x7_c00202{left:171.634667pt;}
.x3e_c00202{left:177.886967pt;}
.x29_c00202{left:179.390667pt;}
.x53_c00202{left:181.982667pt;}
.x4f_c00202{left:191.452773pt;}
.x31_c00202{left:197.348033pt;}
.x36_c00202{left:206.105933pt;}
.xf_c00202{left:227.732021pt;}
.x2a_c00202{left:231.214667pt;}
.x16_c00202{left:238.526336pt;}
.x22_c00202{left:240.076363pt;}
.x17_c00202{left:273.237323pt;}
.x2_c00202{left:276.780000pt;}
.x23_c00202{left:292.799083pt;}
.x2b_c00202{left:298.832000pt;}
.x4d_c00202{left:315.121328pt;}
.x3_c00202{left:321.536000pt;}
.x37_c00202{left:322.621100pt;}
.x10_c00202{left:335.961131pt;}
.x8_c00202{left:340.546667pt;}
.x3f_c00202{left:354.822800pt;}
.x18_c00202{left:360.802315pt;}
.x38_c00202{left:374.237867pt;}
.x2c_c00202{left:390.561333pt;}
.x32_c00202{left:391.892500pt;}
.x54_c00202{left:395.236000pt;}
.x24_c00202{left:402.484459pt;}
.x9_c00202{left:419.214667pt;}
.x19_c00202{left:425.565835pt;}
.x50_c00202{left:430.942443pt;}
.x25_c00202{left:454.787211pt;}
.x55_c00202{left:464.600000pt;}
.x2d_c00202{left:474.630667pt;}
.xa_c00202{left:476.318667pt;}
.x11_c00202{left:490.952299pt;}
.x40_c00202{left:499.347733pt;}
.x4a_c00202{left:511.008000pt;}
.x1a_c00202{left:521.843605pt;}
.x56_c00202{left:527.449333pt;}
.x26_c00202{left:531.830688pt;}
.x27_c00202{left:545.506368pt;}
.x39_c00202{left:549.398767pt;}
.x41_c00202{left:551.684433pt;}
.x57_c00202{left:557.974667pt;}
.xb_c00202{left:573.205333pt;}
.x2e_c00202{left:576.358667pt;}
.x1b_c00202{left:579.296064pt;}
.x28_c00202{left:585.609408pt;}
.x4b_c00202{left:587.772000pt;}
.x33_c00202{left:614.681600pt;}
.x42_c00202{left:656.836767pt;}
.x4c_c00202{left:661.992000pt;}
.x3a_c00202{left:665.159033pt;}
.x1c_c00202{left:667.009088pt;}
.xc_c00202{left:678.096000pt;}
.x1d_c00202{left:685.865600pt;}
.x43_c00202{left:692.848600pt;}
.x2f_c00202{left:712.138667pt;}
.x1e_c00202{left:739.417099pt;}
.x44_c00202{left:743.264100pt;}
.x58_c00202{left:765.225333pt;}
.x4_c00202{left:768.024000pt;}
.x45_c00202{left:776.394133pt;}
.x30_c00202{left:784.889333pt;}
.x12_c00202{left:793.818091pt;}
.x3b_c00202{left:804.721700pt;}
.x34_c00202{left:808.135433pt;}
.x51_c00202{left:821.152624pt;}
.x47_c00202{left:827.280000pt;}
.x48_c00202{left:832.320000pt;}
.x46_c00202{left:833.292333pt;}
}





/* 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_c00203 {
    display:none;
  }
  .loading-indicator_c00203.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00203 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_c00203 { 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_c00203" -> "#page-container .classname_c00203")
 */
.pf_c00203 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00203 { /* 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_c00203.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00203 { /* 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_c00203 { /* 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_c00203 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00203 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00203 {overflow:visible;}
  }
}
.c_c00203 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00203 { /* 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_c00203:after { /* webkit #35443 */
  content: '';
}
.t_c00203:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00203 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 */
}
.__c00203 { /* 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_c00203 { /* info for Javascript */
  display:none;
}
.l_c00203 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00203 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00203 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00203: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_c00203 {
    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_c00203.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00203.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_c00203 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00203{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00203;src:url('chunks/assets/font_c605e72f209fc835e906f064.woff2')format("woff");}.ff1_c00203{font-family:ff1_c00203;line-height:1.000000;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;}
.m6_c00203{transform:matrix(0.031820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.031820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.031820,0.000000,0.000000,0.250000,0,0);}
.mb_c00203{transform:matrix(0.038185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.038185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.038185,0.000000,0.000000,0.250000,0,0);}
.m1b_c00203{transform:matrix(0.054085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054085,0.000000,0.000000,0.250000,0,0);}
.m16_c00203{transform:matrix(0.063640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.063640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.063640,0.000000,0.000000,0.250000,0,0);}
.m15_c00203{transform:matrix(0.092770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092770,0.000000,0.000000,0.250000,0,0);}
.ma_c00203{transform:matrix(0.112770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112770,0.000000,0.000000,0.250000,0,0);}
.me_c00203{transform:matrix(0.131195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131195,0.000000,0.000000,0.250000,0,0);}
.m9_c00203{transform:matrix(0.150935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150935,0.000000,0.000000,0.250000,0,0);}
.m19_c00203{transform:matrix(0.163800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163800,0.000000,0.000000,0.250000,0,0);}
.m0_c00203{transform:matrix(0.198495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198495,0.000000,0.000000,0.250000,0,0);}
.m8_c00203{transform:matrix(0.211200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211200,0.000000,0.000000,0.250000,0,0);}
.m1f_c00203{transform:matrix(0.223055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223055,0.000000,0.000000,0.250000,0,0);}
.m17_c00203{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m13_c00203{transform:matrix(0.324500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324500,0.000000,0.000000,0.250000,0,0);}
.m14_c00203{transform:matrix(0.332040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332040,0.000000,0.000000,0.250000,0,0);}
.m3_c00203{transform:matrix(0.339575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339575,0.000000,0.000000,0.250000,0,0);}
.m1a_c00203{transform:matrix(0.340075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340075,0.000000,0.000000,0.250000,0,0);}
.m7_c00203{transform:matrix(0.342055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342055,0.000000,0.000000,0.250000,0,0);}
.m10_c00203{transform:matrix(0.356545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356545,0.000000,0.000000,0.250000,0,0);}
.m18_c00203{transform:matrix(0.361250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361250,0.000000,0.000000,0.250000,0,0);}
.m12_c00203{transform:matrix(0.374475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374475,0.000000,0.000000,0.250000,0,0);}
.m1_c00203{transform:matrix(0.389800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389800,0.000000,0.000000,0.250000,0,0);}
.m4_c00203{transform:matrix(0.398630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398630,0.000000,0.000000,0.250000,0,0);}
.m5_c00203{transform:matrix(0.467925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467925,0.000000,0.000000,0.250000,0,0);}
.m1c_c00203{transform:matrix(0.511955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511955,0.000000,0.000000,0.250000,0,0);}
.m20_c00203{transform:matrix(0.539350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.539350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.539350,0.000000,0.000000,0.250000,0,0);}
.mf_c00203{transform:matrix(0.643515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.643515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.643515,0.000000,0.000000,0.250000,0,0);}
.m11_c00203{transform:matrix(0.758500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.758500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.758500,0.000000,0.000000,0.250000,0,0);}
.md_c00203{transform:matrix(0.843105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.843105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.843105,0.000000,0.000000,0.250000,0,0);}
.m1d_c00203{transform:matrix(0.858430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.858430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.858430,0.000000,0.000000,0.250000,0,0);}
.m1e_c00203{transform:matrix(1.150320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.150320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.150320,0.000000,0.000000,0.250000,0,0);}
.m2_c00203{transform:matrix(1.442985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.442985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.442985,0.000000,0.000000,0.250000,0,0);}
.mc_c00203{transform:matrix(1.447210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.447210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.447210,0.000000,0.000000,0.250000,0,0);}
.v0_c00203{vertical-align:0.000000px;}
.ls0_c00203{letter-spacing:0.000000px;}
.sc__c00203{text-shadow:none;}
.sc0_c00203{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__c00203{-webkit-text-stroke:0px transparent;}
.sc0_c00203{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00203{word-spacing:0.000000px;}
.fc0_c00203{color:transparent;}
.fs4_c00203{font-size:12.000000px;}
.fs0_c00203{font-size:18.000000px;}
.fs1_c00203{font-size:24.000000px;}
.fs3_c00203{font-size:30.000000px;}
.fs2_c00203{font-size:36.000000px;}
.fs5_c00203{font-size:72.000000px;}
.y0_c00203{bottom:0.000000px;}
.ya_c00203{bottom:105.414000px;}
.yd_c00203{bottom:107.173500px;}
.yc_c00203{bottom:110.700000px;}
.yb_c00203{bottom:116.116500px;}
.y9_c00203{bottom:116.910000px;}
.y8_c00203{bottom:118.549500px;}
.y7_c00203{bottom:324.810000px;}
.y6_c00203{bottom:328.320000px;}
.y5_c00203{bottom:337.500000px;}
.y4_c00203{bottom:348.973500px;}
.y3_c00203{bottom:359.370000px;}
.y2_c00203{bottom:360.180000px;}
.y1_c00203{bottom:424.440000px;}
.h5_c00203{height:12.000000px;}
.h1_c00203{height:18.000000px;}
.h2_c00203{height:24.000000px;}
.h4_c00203{height:30.000000px;}
.h3_c00203{height:36.000000px;}
.h6_c00203{height:72.000000px;}
.h0_c00203{height:682.500000px;}
.w0_c00203{width:941.700000px;}
.w1_c00203{width:942.000000px;}
.x0_c00203{left:0.000000px;}
.x3_c00203{left:13.230000px;}
.x2_c00203{left:14.310000px;}
.x1_c00203{left:16.200000px;}
.x5_c00203{left:25.650000px;}
.x4_c00203{left:27.810000px;}
.x6_c00203{left:37.800000px;}
.x18_c00203{left:406.350000px;}
.x1d_c00203{left:407.970000px;}
.x1e_c00203{left:421.470000px;}
.x19_c00203{left:423.360000px;}
.x1a_c00203{left:430.650000px;}
.x1f_c00203{left:450.090000px;}
.x1b_c00203{left:456.030000px;}
.xb_c00203{left:467.910000px;}
.x7_c00203{left:473.040000px;}
.x20_c00203{left:481.410000px;}
.x8_c00203{left:494.100000px;}
.x9_c00203{left:511.650000px;}
.x11_c00203{left:517.050000px;}
.x12_c00203{left:523.530000px;}
.xc_c00203{left:525.960000px;}
.x13_c00203{left:539.190000px;}
.x14_c00203{left:551.070000px;}
.xd_c00203{left:570.780000px;}
.xe_c00203{left:575.910000px;}
.xa_c00203{left:577.260000px;}
.x15_c00203{left:589.410000px;}
.xf_c00203{left:600.210000px;}
.x16_c00203{left:610.200000px;}
.x1c_c00203{left:612.090000px;}
.x17_c00203{left:621.810000px;}
.x10_c00203{left:624.780000px;}
@media print{
.v0_c00203{vertical-align:0.000000pt;}
.ls0_c00203{letter-spacing:0.000000pt;}
.ws0_c00203{word-spacing:0.000000pt;}
.fs4_c00203{font-size:10.666667pt;}
.fs0_c00203{font-size:16.000000pt;}
.fs1_c00203{font-size:21.333333pt;}
.fs3_c00203{font-size:26.666667pt;}
.fs2_c00203{font-size:32.000000pt;}
.fs5_c00203{font-size:64.000000pt;}
.y0_c00203{bottom:0.000000pt;}
.ya_c00203{bottom:93.701333pt;}
.yd_c00203{bottom:95.265333pt;}
.yc_c00203{bottom:98.400000pt;}
.yb_c00203{bottom:103.214667pt;}
.y9_c00203{bottom:103.920000pt;}
.y8_c00203{bottom:105.377333pt;}
.y7_c00203{bottom:288.720000pt;}
.y6_c00203{bottom:291.840000pt;}
.y5_c00203{bottom:300.000000pt;}
.y4_c00203{bottom:310.198667pt;}
.y3_c00203{bottom:319.440000pt;}
.y2_c00203{bottom:320.160000pt;}
.y1_c00203{bottom:377.280000pt;}
.h5_c00203{height:10.666667pt;}
.h1_c00203{height:16.000000pt;}
.h2_c00203{height:21.333333pt;}
.h4_c00203{height:26.666667pt;}
.h3_c00203{height:32.000000pt;}
.h6_c00203{height:64.000000pt;}
.h0_c00203{height:606.666667pt;}
.w0_c00203{width:837.066667pt;}
.w1_c00203{width:837.333333pt;}
.x0_c00203{left:0.000000pt;}
.x3_c00203{left:11.760000pt;}
.x2_c00203{left:12.720000pt;}
.x1_c00203{left:14.400000pt;}
.x5_c00203{left:22.800000pt;}
.x4_c00203{left:24.720000pt;}
.x6_c00203{left:33.600000pt;}
.x18_c00203{left:361.200000pt;}
.x1d_c00203{left:362.640000pt;}
.x1e_c00203{left:374.640000pt;}
.x19_c00203{left:376.320000pt;}
.x1a_c00203{left:382.800000pt;}
.x1f_c00203{left:400.080000pt;}
.x1b_c00203{left:405.360000pt;}
.xb_c00203{left:415.920000pt;}
.x7_c00203{left:420.480000pt;}
.x20_c00203{left:427.920000pt;}
.x8_c00203{left:439.200000pt;}
.x9_c00203{left:454.800000pt;}
.x11_c00203{left:459.600000pt;}
.x12_c00203{left:465.360000pt;}
.xc_c00203{left:467.520000pt;}
.x13_c00203{left:479.280000pt;}
.x14_c00203{left:489.840000pt;}
.xd_c00203{left:507.360000pt;}
.xe_c00203{left:511.920000pt;}
.xa_c00203{left:513.120000pt;}
.x15_c00203{left:523.920000pt;}
.xf_c00203{left:533.520000pt;}
.x16_c00203{left:542.400000pt;}
.x1c_c00203{left:544.080000pt;}
.x17_c00203{left:552.720000pt;}
.x10_c00203{left:555.360000pt;}
}





/* 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_c00204 {
    display:none;
  }
  .loading-indicator_c00204.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00204 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_c00204 { 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_c00204" -> "#page-container .classname_c00204")
 */
.pf_c00204 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00204 { /* 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_c00204.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00204 { /* 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_c00204 { /* 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_c00204 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00204 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00204 {overflow:visible;}
  }
}
.c_c00204 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00204 { /* 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_c00204:after { /* webkit #35443 */
  content: '';
}
.t_c00204:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00204 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 */
}
.__c00204 { /* 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_c00204 { /* info for Javascript */
  display:none;
}
.l_c00204 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00204 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00204 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00204: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_c00204 {
    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_c00204.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00204.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_c00204 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00204{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00204;src:url('chunks/assets/font_7c6b9abe6ee2a268480c528b.woff2')format("woff");}.ff1_c00204{font-family:ff1_c00204;line-height:1.000000;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;}
.m5_c00204{transform:matrix(0.257188,0.005658,-0.005499,0.249940,0,0);-ms-transform:matrix(0.257188,0.005658,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.257188,0.005658,-0.005499,0.249940,0,0);}
.m4_c00204{transform:matrix(0.354644,0.007802,-0.005499,0.249940,0,0);-ms-transform:matrix(0.354644,0.007802,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.354644,0.007802,-0.005499,0.249940,0,0);}
.m0_c00204{transform:matrix(0.394635,0.008682,-0.005499,0.249940,0,0);-ms-transform:matrix(0.394635,0.008682,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.394635,0.008682,-0.005499,0.249940,0,0);}
.m8_c00204{transform:matrix(0.437229,0.009182,-0.005249,0.249945,0,0);-ms-transform:matrix(0.437229,0.009182,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.437229,0.009182,-0.005249,0.249945,0,0);}
.m9_c00204{transform:matrix(0.499365,0.010487,-0.005249,0.249945,0,0);-ms-transform:matrix(0.499365,0.010487,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.499365,0.010487,-0.005249,0.249945,0,0);}
.m7_c00204{transform:matrix(0.512640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512640,0.000000,0.000000,0.250000,0,0);}
.m2_c00204{transform:matrix(0.521059,0.011463,-0.005499,0.249940,0,0);-ms-transform:matrix(0.521059,0.011463,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.521059,0.011463,-0.005499,0.249940,0,0);}
.m1_c00204{transform:matrix(0.591602,0.013015,-0.005499,0.249940,0,0);-ms-transform:matrix(0.591602,0.013015,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.591602,0.013015,-0.005499,0.249940,0,0);}
.m6_c00204{transform:matrix(0.595906,0.013110,-0.005499,0.249940,0,0);-ms-transform:matrix(0.595906,0.013110,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.595906,0.013110,-0.005499,0.249940,0,0);}
.ma_c00204{transform:matrix(0.681010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.681010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.681010,0.000000,0.000000,0.250000,0,0);}
.m3_c00204{transform:matrix(0.756967,0.016653,-0.005499,0.249940,0,0);-ms-transform:matrix(0.756967,0.016653,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.756967,0.016653,-0.005499,0.249940,0,0);}
.v0_c00204{vertical-align:0.000000px;}
.ls0_c00204{letter-spacing:0.000000px;}
.sc__c00204{text-shadow:none;}
.sc0_c00204{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__c00204{-webkit-text-stroke:0px transparent;}
.sc0_c00204{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00204{word-spacing:0.000000px;}
.fc0_c00204{color:transparent;}
.fs1_c00204{font-size:18.000000px;}
.fs3_c00204{font-size:42.000000px;}
.fs0_c00204{font-size:48.011615px;}
.fs2_c00204{font-size:78.017197px;}
.y0_c00204{bottom:0.000000px;}
.yb_c00204{bottom:111.112500px;}
.y8_c00204{bottom:122.986500px;}
.ya_c00204{bottom:124.143135px;}
.y9_c00204{bottom:125.583000px;}
.y7_c00204{bottom:168.396756px;}
.y6_c00204{bottom:169.061607px;}
.y5_c00204{bottom:169.445067px;}
.y4_c00204{bottom:171.075894px;}
.y3_c00204{bottom:171.597954px;}
.y2_c00204{bottom:173.941449px;}
.y1_c00204{bottom:174.718500px;}
.h2_c00204{height:18.000000px;}
.h4_c00204{height:42.000000px;}
.h1_c00204{height:48.011615px;}
.h3_c00204{height:78.017197px;}
.h0_c00204{height:682.500000px;}
.w0_c00204{width:941.700000px;}
.w1_c00204{width:942.000000px;}
.x0_c00204{left:0.000000px;}
.x1_c00204{left:47.835000px;}
.x2_c00204{left:83.155500px;}
.x8_c00204{left:84.780000px;}
.x9_c00204{left:166.356000px;}
.xb_c00204{left:172.530000px;}
.x3_c00204{left:189.678000px;}
.x4_c00204{left:213.408000px;}
.xa_c00204{left:234.921000px;}
.x5_c00204{left:287.536500px;}
.x6_c00204{left:304.966500px;}
.x7_c00204{left:335.187000px;}
@media print{
.v0_c00204{vertical-align:0.000000pt;}
.ls0_c00204{letter-spacing:0.000000pt;}
.ws0_c00204{word-spacing:0.000000pt;}
.fs1_c00204{font-size:16.000000pt;}
.fs3_c00204{font-size:37.333333pt;}
.fs0_c00204{font-size:42.676991pt;}
.fs2_c00204{font-size:69.348620pt;}
.y0_c00204{bottom:0.000000pt;}
.yb_c00204{bottom:98.766667pt;}
.y8_c00204{bottom:109.321333pt;}
.ya_c00204{bottom:110.349453pt;}
.y9_c00204{bottom:111.629333pt;}
.y7_c00204{bottom:149.686005pt;}
.y6_c00204{bottom:150.276984pt;}
.y5_c00204{bottom:150.617837pt;}
.y4_c00204{bottom:152.067461pt;}
.y3_c00204{bottom:152.531515pt;}
.y2_c00204{bottom:154.614621pt;}
.y1_c00204{bottom:155.305333pt;}
.h2_c00204{height:16.000000pt;}
.h4_c00204{height:37.333333pt;}
.h1_c00204{height:42.676991pt;}
.h3_c00204{height:69.348620pt;}
.h0_c00204{height:606.666667pt;}
.w0_c00204{width:837.066667pt;}
.w1_c00204{width:837.333333pt;}
.x0_c00204{left:0.000000pt;}
.x1_c00204{left:42.520000pt;}
.x2_c00204{left:73.916000pt;}
.x8_c00204{left:75.360000pt;}
.x9_c00204{left:147.872000pt;}
.xb_c00204{left:153.360000pt;}
.x3_c00204{left:168.602667pt;}
.x4_c00204{left:189.696000pt;}
.xa_c00204{left:208.818667pt;}
.x5_c00204{left:255.588000pt;}
.x6_c00204{left:271.081333pt;}
.x7_c00204{left:297.944000pt;}
}





/* 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_c00205 {
    display:none;
  }
  .loading-indicator_c00205.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00205 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_c00205 { 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_c00205" -> "#page-container .classname_c00205")
 */
.pf_c00205 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00205 { /* 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_c00205.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00205 { /* 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_c00205 { /* 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_c00205 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00205 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00205 {overflow:visible;}
  }
}
.c_c00205 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00205 { /* 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_c00205:after { /* webkit #35443 */
  content: '';
}
.t_c00205:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00205 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 */
}
.__c00205 { /* 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_c00205 { /* info for Javascript */
  display:none;
}
.l_c00205 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00205 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00205 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00205: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_c00205 {
    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_c00205.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00205.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_c00205 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00205{font-family:sans-serif;visibility:hidden;}
.sc__c00205{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00205{-webkit-text-stroke:0px transparent;}
}
.y0_c00205{bottom:0.000000px;}
.h0_c00205{height:682.500000px;}
.w0_c00205{width:941.700000px;}
.w1_c00205{width:942.000000px;}
.x0_c00205{left:0.000000px;}
@media print{
.y0_c00205{bottom:0.000000pt;}
.h0_c00205{height:606.666667pt;}
.w0_c00205{width:837.066667pt;}
.w1_c00205{width:837.333333pt;}
.x0_c00205{left:0.000000pt;}
}





/* 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_c00206 {
    display:none;
  }
  .loading-indicator_c00206.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00206 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_c00206 { 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_c00206" -> "#page-container .classname_c00206")
 */
.pf_c00206 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00206 { /* 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_c00206.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00206 { /* 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_c00206 { /* 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_c00206 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00206 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00206 {overflow:visible;}
  }
}
.c_c00206 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00206 { /* 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_c00206:after { /* webkit #35443 */
  content: '';
}
.t_c00206:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00206 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 */
}
.__c00206 { /* 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_c00206 { /* info for Javascript */
  display:none;
}
.l_c00206 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00206 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00206 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00206: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_c00206 {
    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_c00206.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00206.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_c00206 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00206{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00206;src:url('chunks/assets/font_a72a081e1d55f37b0ea09712.woff2')format("woff");}.ff1_c00206{font-family:ff1_c00206;line-height:1.000000;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;}
.m6_c00206{transform:matrix(0.121165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121165,0.000000,0.000000,0.250000,0,0);}
.m1_c00206{transform:matrix(0.278925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278925,0.000000,0.000000,0.250000,0,0);}
.m0_c00206{transform:matrix(0.420595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420595,0.000000,0.000000,0.250000,0,0);}
.m5_c00206{transform:matrix(0.529320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.529320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.529320,0.000000,0.000000,0.250000,0,0);}
.m2_c00206{transform:matrix(0.919325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.919325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.919325,0.000000,0.000000,0.250000,0,0);}
.m4_c00206{transform:matrix(0.963715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.963715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.963715,0.000000,0.000000,0.250000,0,0);}
.m3_c00206{transform:matrix(0.972835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.972835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.972835,0.000000,0.000000,0.250000,0,0);}
.m7_c00206{transform:matrix(1.402100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.402100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.402100,0.000000,0.000000,0.250000,0,0);}
.m9_c00206{transform:matrix(1.814010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.814010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.814010,0.000000,0.000000,0.250000,0,0);}
.m8_c00206{transform:matrix(6.905280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(6.905280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(6.905280,0.000000,0.000000,0.250000,0,0);}
.v0_c00206{vertical-align:0.000000px;}
.ls0_c00206{letter-spacing:0.000000px;}
.sc__c00206{text-shadow:none;}
.sc0_c00206{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__c00206{-webkit-text-stroke:0px transparent;}
.sc0_c00206{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00206{word-spacing:0.000000px;}
.fc0_c00206{color:transparent;}
.fs0_c00206{font-size:18.000000px;}
.fs1_c00206{font-size:24.000000px;}
.fs2_c00206{font-size:30.000000px;}
.y0_c00206{bottom:0.000000px;}
.y8_c00206{bottom:450.900000px;}
.y5_c00206{bottom:497.340000px;}
.y7_c00206{bottom:511.920000px;}
.y6_c00206{bottom:513.270000px;}
.y4_c00206{bottom:566.460000px;}
.y3_c00206{bottom:596.700000px;}
.y1_c00206{bottom:645.570000px;}
.y2_c00206{bottom:647.730000px;}
.h1_c00206{height:18.000000px;}
.h2_c00206{height:24.000000px;}
.h3_c00206{height:30.000000px;}
.h0_c00206{height:682.500000px;}
.w0_c00206{width:941.700000px;}
.w1_c00206{width:942.000000px;}
.x0_c00206{left:0.000000px;}
.x5_c00206{left:915.030000px;}
.x3_c00206{left:916.380000px;}
.x1_c00206{left:917.460000px;}
.x4_c00206{left:919.350000px;}
.x6_c00206{left:936.090000px;}
.x2_c00206{left:937.440000px;}
@media print{
.v0_c00206{vertical-align:0.000000pt;}
.ls0_c00206{letter-spacing:0.000000pt;}
.ws0_c00206{word-spacing:0.000000pt;}
.fs0_c00206{font-size:16.000000pt;}
.fs1_c00206{font-size:21.333333pt;}
.fs2_c00206{font-size:26.666667pt;}
.y0_c00206{bottom:0.000000pt;}
.y8_c00206{bottom:400.800000pt;}
.y5_c00206{bottom:442.080000pt;}
.y7_c00206{bottom:455.040000pt;}
.y6_c00206{bottom:456.240000pt;}
.y4_c00206{bottom:503.520000pt;}
.y3_c00206{bottom:530.400000pt;}
.y1_c00206{bottom:573.840000pt;}
.y2_c00206{bottom:575.760000pt;}
.h1_c00206{height:16.000000pt;}
.h2_c00206{height:21.333333pt;}
.h3_c00206{height:26.666667pt;}
.h0_c00206{height:606.666667pt;}
.w0_c00206{width:837.066667pt;}
.w1_c00206{width:837.333333pt;}
.x0_c00206{left:0.000000pt;}
.x5_c00206{left:813.360000pt;}
.x3_c00206{left:814.560000pt;}
.x1_c00206{left:815.520000pt;}
.x4_c00206{left:817.200000pt;}
.x6_c00206{left:832.080000pt;}
.x2_c00206{left:833.280000pt;}
}





/* 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_c00207 {
    display:none;
  }
  .loading-indicator_c00207.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00207 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_c00207 { 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_c00207" -> "#page-container .classname_c00207")
 */
.pf_c00207 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00207 { /* 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_c00207.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00207 { /* 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_c00207 { /* 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_c00207 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00207 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00207 {overflow:visible;}
  }
}
.c_c00207 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00207 { /* 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_c00207:after { /* webkit #35443 */
  content: '';
}
.t_c00207:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00207 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 */
}
.__c00207 { /* 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_c00207 { /* info for Javascript */
  display:none;
}
.l_c00207 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00207 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00207 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00207: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_c00207 {
    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_c00207.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00207.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_c00207 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00207{font-family:sans-serif;visibility:hidden;}
.sc__c00207{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00207{-webkit-text-stroke:0px transparent;}
}
.y0_c00207{bottom:0.000000px;}
.h0_c00207{height:682.500000px;}
.w0_c00207{width:941.700000px;}
.w1_c00207{width:942.000000px;}
.x0_c00207{left:0.000000px;}
@media print{
.y0_c00207{bottom:0.000000pt;}
.h0_c00207{height:606.666667pt;}
.w0_c00207{width:837.066667pt;}
.w1_c00207{width:837.333333pt;}
.x0_c00207{left:0.000000pt;}
}





/* 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_c00208 {
    display:none;
  }
  .loading-indicator_c00208.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00208 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_c00208 { 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_c00208" -> "#page-container .classname_c00208")
 */
.pf_c00208 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00208 { /* 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_c00208.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00208 { /* 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_c00208 { /* 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_c00208 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00208 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00208 {overflow:visible;}
  }
}
.c_c00208 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00208 { /* 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_c00208:after { /* webkit #35443 */
  content: '';
}
.t_c00208:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00208 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 */
}
.__c00208 { /* 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_c00208 { /* info for Javascript */
  display:none;
}
.l_c00208 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00208 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00208 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00208: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_c00208 {
    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_c00208.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00208.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_c00208 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00208{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00208;src:url('chunks/assets/font_7c6b9abe6ee2a268480c528b.woff2')format("woff");}.ff1_c00208{font-family:ff1_c00208;line-height:1.000000;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;}
.m31_c00208{transform:matrix(0.039508,0.000395,-0.002500,0.249988,0,0);-ms-transform:matrix(0.039508,0.000395,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.039508,0.000395,-0.002500,0.249988,0,0);}
.m34_c00208{transform:matrix(0.047435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.047435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.047435,0.000000,0.000000,0.250000,0,0);}
.m32_c00208{transform:matrix(0.082321,0.000823,-0.002500,0.249988,0,0);-ms-transform:matrix(0.082321,0.000823,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.082321,0.000823,-0.002500,0.249988,0,0);}
.md_c00208{transform:matrix(0.201095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201095,0.000000,0.000000,0.250000,0,0);}
.m1a_c00208{transform:matrix(0.214922,0.002794,-0.003250,0.249979,0,0);-ms-transform:matrix(0.214922,0.002794,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.214922,0.002794,-0.003250,0.249979,0,0);}
.m30_c00208{transform:matrix(0.216324,0.002163,-0.002500,0.249988,0,0);-ms-transform:matrix(0.216324,0.002163,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.216324,0.002163,-0.002500,0.249988,0,0);}
.m19_c00208{transform:matrix(0.233710,0.003038,-0.003250,0.249979,0,0);-ms-transform:matrix(0.233710,0.003038,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.233710,0.003038,-0.003250,0.249979,0,0);}
.m1b_c00208{transform:matrix(0.234655,0.003051,-0.003250,0.249979,0,0);-ms-transform:matrix(0.234655,0.003051,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.234655,0.003051,-0.003250,0.249979,0,0);}
.m6_c00208{transform:matrix(0.246990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246990,0.000000,0.000000,0.250000,0,0);}
.m2e_c00208{transform:matrix(0.249563,0.002496,-0.002500,0.249988,0,0);-ms-transform:matrix(0.249563,0.002496,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.249563,0.002496,-0.002500,0.249988,0,0);}
.m10_c00208{transform:matrix(0.258070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258070,0.000000,0.000000,0.250000,0,0);}
.mf_c00208{transform:matrix(0.274650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274650,0.000000,0.000000,0.250000,0,0);}
.ma_c00208{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m27_c00208{transform:matrix(0.317429,0.005714,-0.004499,0.249960,0,0);-ms-transform:matrix(0.317429,0.005714,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.317429,0.005714,-0.004499,0.249960,0,0);}
.m11_c00208{transform:matrix(0.350020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350020,0.000000,0.000000,0.250000,0,0);}
.m21_c00208{transform:matrix(0.353715,0.004598,-0.003250,0.249979,0,0);-ms-transform:matrix(0.353715,0.004598,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.353715,0.004598,-0.003250,0.249979,0,0);}
.m8_c00208{transform:matrix(0.360175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360175,0.000000,0.000000,0.250000,0,0);}
.m12_c00208{transform:matrix(0.377465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377465,0.000000,0.000000,0.250000,0,0);}
.m2a_c00208{transform:matrix(0.380408,0.006847,-0.004499,0.249960,0,0);-ms-transform:matrix(0.380408,0.006847,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.380408,0.006847,-0.004499,0.249960,0,0);}
.m29_c00208{transform:matrix(0.384783,0.006926,-0.004499,0.249960,0,0);-ms-transform:matrix(0.384783,0.006926,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.384783,0.006926,-0.004499,0.249960,0,0);}
.mb_c00208{transform:matrix(0.385505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385505,0.000000,0.000000,0.250000,0,0);}
.m15_c00208{transform:matrix(0.415220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415220,0.000000,0.000000,0.250000,0,0);}
.m33_c00208{transform:matrix(0.419760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419760,0.000000,0.000000,0.250000,0,0);}
.m5_c00208{transform:matrix(0.421235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421235,0.000000,0.000000,0.250000,0,0);}
.m2b_c00208{transform:matrix(0.447572,0.008056,-0.004499,0.249960,0,0);-ms-transform:matrix(0.447572,0.008056,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.447572,0.008056,-0.004499,0.249960,0,0);}
.m1f_c00208{transform:matrix(0.460496,0.005986,-0.003250,0.249979,0,0);-ms-transform:matrix(0.460496,0.005986,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.460496,0.005986,-0.003250,0.249979,0,0);}
.m1_c00208{transform:matrix(0.462485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462485,0.000000,0.000000,0.250000,0,0);}
.m2c_c00208{transform:matrix(0.490930,0.008837,-0.004499,0.249960,0,0);-ms-transform:matrix(0.490930,0.008837,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.490930,0.008837,-0.004499,0.249960,0,0);}
.m24_c00208{transform:matrix(0.493223,0.006412,-0.003250,0.249979,0,0);-ms-transform:matrix(0.493223,0.006412,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.493223,0.006412,-0.003250,0.249979,0,0);}
.m18_c00208{transform:matrix(0.532495,0.006922,-0.003250,0.249979,0,0);-ms-transform:matrix(0.532495,0.006922,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.532495,0.006922,-0.003250,0.249979,0,0);}
.m9_c00208{transform:matrix(0.569320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.569320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.569320,0.000000,0.000000,0.250000,0,0);}
.m23_c00208{transform:matrix(0.602954,0.007838,-0.003250,0.249979,0,0);-ms-transform:matrix(0.602954,0.007838,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.602954,0.007838,-0.003250,0.249979,0,0);}
.m0_c00208{transform:matrix(0.632505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632505,0.000000,0.000000,0.250000,0,0);}
.m1c_c00208{transform:matrix(0.667644,0.008679,-0.003250,0.249979,0,0);-ms-transform:matrix(0.667644,0.008679,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.667644,0.008679,-0.003250,0.249979,0,0);}
.m13_c00208{transform:matrix(0.702920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.702920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.702920,0.000000,0.000000,0.250000,0,0);}
.m16_c00208{transform:matrix(0.711910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.711910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.711910,0.000000,0.000000,0.250000,0,0);}
.m3_c00208{transform:matrix(0.735480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735480,0.000000,0.000000,0.250000,0,0);}
.m25_c00208{transform:matrix(0.787162,0.014169,-0.004499,0.249960,0,0);-ms-transform:matrix(0.787162,0.014169,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.787162,0.014169,-0.004499,0.249960,0,0);}
.me_c00208{transform:matrix(0.856350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.856350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.856350,0.000000,0.000000,0.250000,0,0);}
.m2_c00208{transform:matrix(0.911805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.911805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.911805,0.000000,0.000000,0.250000,0,0);}
.m1d_c00208{transform:matrix(0.955434,0.012421,-0.003250,0.249979,0,0);-ms-transform:matrix(0.955434,0.012421,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.955434,0.012421,-0.003250,0.249979,0,0);}
.m2f_c00208{transform:matrix(0.984646,0.009846,-0.002500,0.249988,0,0);-ms-transform:matrix(0.984646,0.009846,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.984646,0.009846,-0.002500,0.249988,0,0);}
.m26_c00208{transform:matrix(1.065132,0.019172,-0.004499,0.249960,0,0);-ms-transform:matrix(1.065132,0.019172,-0.004499,0.249960,0,0);-webkit-transform:matrix(1.065132,0.019172,-0.004499,0.249960,0,0);}
.m14_c00208{transform:matrix(1.161530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.161530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.161530,0.000000,0.000000,0.250000,0,0);}
.mc_c00208{transform:matrix(1.252445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.252445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.252445,0.000000,0.000000,0.250000,0,0);}
.m4_c00208{transform:matrix(1.314470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.314470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.314470,0.000000,0.000000,0.250000,0,0);}
.m28_c00208{transform:matrix(1.316297,0.023693,-0.004499,0.249960,0,0);-ms-transform:matrix(1.316297,0.023693,-0.004499,0.249960,0,0);-webkit-transform:matrix(1.316297,0.023693,-0.004499,0.249960,0,0);}
.m20_c00208{transform:matrix(1.770795,0.023020,-0.003250,0.249979,0,0);-ms-transform:matrix(1.770795,0.023020,-0.003250,0.249979,0,0);-webkit-transform:matrix(1.770795,0.023020,-0.003250,0.249979,0,0);}
.m17_c00208{transform:matrix(1.859010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.859010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.859010,0.000000,0.000000,0.250000,0,0);}
.m7_c00208{transform:matrix(1.951735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.951735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.951735,0.000000,0.000000,0.250000,0,0);}
.m2d_c00208{transform:matrix(2.681601,0.048269,-0.004499,0.249960,0,0);-ms-transform:matrix(2.681601,0.048269,-0.004499,0.249960,0,0);-webkit-transform:matrix(2.681601,0.048269,-0.004499,0.249960,0,0);}
.m1e_c00208{transform:matrix(3.585397,0.046610,-0.003250,0.249979,0,0);-ms-transform:matrix(3.585397,0.046610,-0.003250,0.249979,0,0);-webkit-transform:matrix(3.585397,0.046610,-0.003250,0.249979,0,0);}
.m22_c00208{transform:matrix(4.366496,0.056764,-0.003250,0.249979,0,0);-ms-transform:matrix(4.366496,0.056764,-0.003250,0.249979,0,0);-webkit-transform:matrix(4.366496,0.056764,-0.003250,0.249979,0,0);}
.v0_c00208{vertical-align:0.000000px;}
.ls0_c00208{letter-spacing:0.000000px;}
.sc__c00208{text-shadow:none;}
.sc0_c00208{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__c00208{-webkit-text-stroke:0px transparent;}
.sc0_c00208{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00208{word-spacing:0.000000px;}
.fc0_c00208{color:transparent;}
.fs5_c00208{font-size:18.000000px;}
.fs0_c00208{font-size:24.000000px;}
.fs3_c00208{font-size:60.009719px;}
.fs2_c00208{font-size:72.006084px;}
.fs4_c00208{font-size:84.004200px;}
.fs1_c00208{font-size:144.012167px;}
.y0_c00208{bottom:0.000000px;}
.y1c_c00208{bottom:440.889990px;}
.y1b_c00208{bottom:444.226425px;}
.y1a_c00208{bottom:444.907545px;}
.y19_c00208{bottom:445.293495px;}
.y18_c00208{bottom:446.041500px;}
.y17_c00208{bottom:476.999964px;}
.y16_c00208{bottom:477.575361px;}
.y15_c00208{bottom:478.503108px;}
.y14_c00208{bottom:479.554056px;}
.y13_c00208{bottom:480.288510px;}
.y12_c00208{bottom:482.278275px;}
.y11_c00208{bottom:483.393267px;}
.y10_c00208{bottom:484.950033px;}
.yf_c00208{bottom:486.913500px;}
.y1d_c00208{bottom:490.590000px;}
.ye_c00208{bottom:583.704796px;}
.yd_c00208{bottom:584.665030px;}
.yc_c00208{bottom:589.772917px;}
.yb_c00208{bottom:590.311777px;}
.ya_c00208{bottom:593.470478px;}
.y9_c00208{bottom:612.691762px;}
.y8_c00208{bottom:612.691819px;}
.y7_c00208{bottom:623.894073px;}
.y6_c00208{bottom:625.642131px;}
.y5_c00208{bottom:626.004948px;}
.y4_c00208{bottom:626.745675px;}
.y3_c00208{bottom:628.174674px;}
.y2_c00208{bottom:630.184500px;}
.y1_c00208{bottom:677.569500px;}
.h6_c00208{height:18.000000px;}
.h1_c00208{height:24.000000px;}
.h4_c00208{height:60.009719px;}
.h3_c00208{height:72.006084px;}
.h5_c00208{height:84.004200px;}
.h2_c00208{height:144.012167px;}
.h0_c00208{height:682.500000px;}
.w0_c00208{width:941.700000px;}
.w1_c00208{width:942.000000px;}
.x0_c00208{left:0.000000px;}
.x31_c00208{left:1.890000px;}
.x19_c00208{left:23.658000px;}
.x2e_c00208{left:64.645500px;}
.x2f_c00208{left:139.446000px;}
.x21_c00208{left:144.933790px;}
.x25_c00208{left:155.082000px;}
.x1_c00208{left:166.320000px;}
.x1a_c00208{left:178.260000px;}
.x2_c00208{left:183.870000px;}
.x3_c00208{left:197.100000px;}
.x4_c00208{left:232.200000px;}
.x30_c00208{left:246.153000px;}
.x26_c00208{left:264.163500px;}
.x5_c00208{left:273.780000px;}
.x1b_c00208{left:288.183000px;}
.x6_c00208{left:299.160000px;}
.x7_c00208{left:307.800000px;}
.x8_c00208{left:322.380000px;}
.x22_c00208{left:342.326088px;}
.x1c_c00208{left:345.162000px;}
.x9_c00208{left:349.380000px;}
.x27_c00208{left:350.650500px;}
.xa_c00208{left:356.940000px;}
.x1d_c00208{left:373.071000px;}
.xb_c00208{left:376.650000px;}
.x1f_c00208{left:382.889834px;}
.x28_c00208{left:412.594500px;}
.xc_c00208{left:438.750000px;}
.xd_c00208{left:498.960000px;}
.x1e_c00208{left:507.537000px;}
.x29_c00208{left:523.137000px;}
.xe_c00208{left:528.390000px;}
.xf_c00208{left:539.190000px;}
.x2a_c00208{left:563.940000px;}
.x10_c00208{left:570.510000px;}
.x11_c00208{left:580.230000px;}
.x12_c00208{left:598.860000px;}
.x2b_c00208{left:622.326000px;}
.x13_c00208{left:623.970000px;}
.x20_c00208{left:634.821402px;}
.x14_c00208{left:637.740000px;}
.x15_c00208{left:661.500000px;}
.x2c_c00208{left:673.867500px;}
.x16_c00208{left:687.420000px;}
.x23_c00208{left:695.331340px;}
.x17_c00208{left:703.620000px;}
.x2d_c00208{left:705.834000px;}
.x18_c00208{left:728.730000px;}
.x24_c00208{left:755.347000px;}
@media print{
.v0_c00208{vertical-align:0.000000pt;}
.ls0_c00208{letter-spacing:0.000000pt;}
.ws0_c00208{word-spacing:0.000000pt;}
.fs5_c00208{font-size:16.000000pt;}
.fs0_c00208{font-size:21.333333pt;}
.fs3_c00208{font-size:53.341973pt;}
.fs2_c00208{font-size:64.005408pt;}
.fs4_c00208{font-size:74.670400pt;}
.fs1_c00208{font-size:128.010816pt;}
.y0_c00208{bottom:0.000000pt;}
.y1c_c00208{bottom:391.902213pt;}
.y1b_c00208{bottom:394.867933pt;}
.y1a_c00208{bottom:395.473373pt;}
.y19_c00208{bottom:395.816440pt;}
.y18_c00208{bottom:396.481333pt;}
.y17_c00208{bottom:423.999968pt;}
.y16_c00208{bottom:424.511432pt;}
.y15_c00208{bottom:425.336096pt;}
.y14_c00208{bottom:426.270272pt;}
.y13_c00208{bottom:426.923120pt;}
.y12_c00208{bottom:428.691800pt;}
.y11_c00208{bottom:429.682904pt;}
.y10_c00208{bottom:431.066696pt;}
.yf_c00208{bottom:432.812000pt;}
.y1d_c00208{bottom:436.080000pt;}
.ye_c00208{bottom:518.848708pt;}
.yd_c00208{bottom:519.702249pt;}
.yc_c00208{bottom:524.242593pt;}
.yb_c00208{bottom:524.721580pt;}
.ya_c00208{bottom:527.529313pt;}
.y9_c00208{bottom:544.614900pt;}
.y8_c00208{bottom:544.614951pt;}
.y7_c00208{bottom:554.572509pt;}
.y6_c00208{bottom:556.126339pt;}
.y5_c00208{bottom:556.448843pt;}
.y4_c00208{bottom:557.107267pt;}
.y3_c00208{bottom:558.377488pt;}
.y2_c00208{bottom:560.164000pt;}
.y1_c00208{bottom:602.284000pt;}
.h6_c00208{height:16.000000pt;}
.h1_c00208{height:21.333333pt;}
.h4_c00208{height:53.341973pt;}
.h3_c00208{height:64.005408pt;}
.h5_c00208{height:74.670400pt;}
.h2_c00208{height:128.010816pt;}
.h0_c00208{height:606.666667pt;}
.w0_c00208{width:837.066667pt;}
.w1_c00208{width:837.333333pt;}
.x0_c00208{left:0.000000pt;}
.x31_c00208{left:1.680000pt;}
.x19_c00208{left:21.029333pt;}
.x2e_c00208{left:57.462667pt;}
.x2f_c00208{left:123.952000pt;}
.x21_c00208{left:128.830036pt;}
.x25_c00208{left:137.850667pt;}
.x1_c00208{left:147.840000pt;}
.x1a_c00208{left:158.453333pt;}
.x2_c00208{left:163.440000pt;}
.x3_c00208{left:175.200000pt;}
.x4_c00208{left:206.400000pt;}
.x30_c00208{left:218.802667pt;}
.x26_c00208{left:234.812000pt;}
.x5_c00208{left:243.360000pt;}
.x1b_c00208{left:256.162667pt;}
.x6_c00208{left:265.920000pt;}
.x7_c00208{left:273.600000pt;}
.x8_c00208{left:286.560000pt;}
.x22_c00208{left:304.289856pt;}
.x1c_c00208{left:306.810667pt;}
.x9_c00208{left:310.560000pt;}
.x27_c00208{left:311.689333pt;}
.xa_c00208{left:317.280000pt;}
.x1d_c00208{left:331.618667pt;}
.xb_c00208{left:334.800000pt;}
.x1f_c00208{left:340.346519pt;}
.x28_c00208{left:366.750667pt;}
.xc_c00208{left:390.000000pt;}
.xd_c00208{left:443.520000pt;}
.x1e_c00208{left:451.144000pt;}
.x29_c00208{left:465.010667pt;}
.xe_c00208{left:469.680000pt;}
.xf_c00208{left:479.280000pt;}
.x2a_c00208{left:501.280000pt;}
.x10_c00208{left:507.120000pt;}
.x11_c00208{left:515.760000pt;}
.x12_c00208{left:532.320000pt;}
.x2b_c00208{left:553.178667pt;}
.x13_c00208{left:554.640000pt;}
.x20_c00208{left:564.285691pt;}
.x14_c00208{left:566.880000pt;}
.x15_c00208{left:588.000000pt;}
.x2c_c00208{left:598.993333pt;}
.x16_c00208{left:611.040000pt;}
.x23_c00208{left:618.072303pt;}
.x17_c00208{left:625.440000pt;}
.x2d_c00208{left:627.408000pt;}
.x18_c00208{left:647.760000pt;}
.x24_c00208{left:671.419556pt;}
}





/* 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_c00209 {
    display:none;
  }
  .loading-indicator_c00209.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00209 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_c00209 { 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_c00209" -> "#page-container .classname_c00209")
 */
.pf_c00209 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00209 { /* 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_c00209.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00209 { /* 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_c00209 { /* 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_c00209 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00209 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00209 {overflow:visible;}
  }
}
.c_c00209 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00209 { /* 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_c00209:after { /* webkit #35443 */
  content: '';
}
.t_c00209:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00209 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 */
}
.__c00209 { /* 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_c00209 { /* info for Javascript */
  display:none;
}
.l_c00209 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00209 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00209 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00209: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_c00209 {
    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_c00209.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00209.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_c00209 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00209{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00209;src:url('chunks/assets/font_4e10b644121e127e5c7b113e.woff2')format("woff");}.ff1_c00209{font-family:ff1_c00209;line-height:1.000000;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;}
.m3_c00209{transform:matrix(0.003902,0.169660,-0.249934,0.005748,0,0);-ms-transform:matrix(0.003902,0.169660,-0.249934,0.005748,0,0);-webkit-transform:matrix(0.003902,0.169660,-0.249934,0.005748,0,0);}
.m2_c00209{transform:matrix(0.005562,0.241806,-0.249934,0.005748,0,0);-ms-transform:matrix(0.005562,0.241806,-0.249934,0.005748,0,0);-webkit-transform:matrix(0.005562,0.241806,-0.249934,0.005748,0,0);}
.m1_c00209{transform:matrix(0.026919,1.170375,-0.249934,0.005748,0,0);-ms-transform:matrix(0.026919,1.170375,-0.249934,0.005748,0,0);-webkit-transform:matrix(0.026919,1.170375,-0.249934,0.005748,0,0);}
.m0_c00209{transform:matrix(0.080400,3.495651,-0.249934,0.005748,0,0);-ms-transform:matrix(0.080400,3.495651,-0.249934,0.005748,0,0);-webkit-transform:matrix(0.080400,3.495651,-0.249934,0.005748,0,0);}
.m5_c00209{transform:matrix(0.184705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184705,0.000000,0.000000,0.250000,0,0);}
.m4_c00209{transform:matrix(0.237320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237320,0.000000,0.000000,0.250000,0,0);}
.v0_c00209{vertical-align:0.000000px;}
.ls0_c00209{letter-spacing:0.000000px;}
.sc__c00209{text-shadow:none;}
.sc0_c00209{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__c00209{-webkit-text-stroke:0px transparent;}
.sc0_c00209{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00209{word-spacing:0.000000px;}
.fc0_c00209{color:transparent;}
.fs0_c00209{font-size:18.004760px;}
.fs1_c00209{font-size:24.000000px;}
.fs2_c00209{font-size:72.000000px;}
.y0_c00209{bottom:0.000000px;}
.y4_c00209{bottom:70.608000px;}
.y3_c00209{bottom:535.108500px;}
.y2_c00209{bottom:583.180500px;}
.y1_c00209{bottom:649.074000px;}
.y6_c00209{bottom:655.020000px;}
.y5_c00209{bottom:669.330000px;}
.h1_c00209{height:18.004760px;}
.h2_c00209{height:24.000000px;}
.h3_c00209{height:72.000000px;}
.h0_c00209{height:682.500000px;}
.w0_c00209{width:941.700000px;}
.w1_c00209{width:942.000000px;}
.x0_c00209{left:0.000000px;}
.x5_c00209{left:14.040000px;}
.x1_c00209{left:38.610000px;}
.x2_c00209{left:40.125550px;}
.x3_c00209{left:41.231206px;}
.x4_c00209{left:51.914718px;}
@media print{
.v0_c00209{vertical-align:0.000000pt;}
.ls0_c00209{letter-spacing:0.000000pt;}
.ws0_c00209{word-spacing:0.000000pt;}
.fs0_c00209{font-size:16.004231pt;}
.fs1_c00209{font-size:21.333333pt;}
.fs2_c00209{font-size:64.000000pt;}
.y0_c00209{bottom:0.000000pt;}
.y4_c00209{bottom:62.762667pt;}
.y3_c00209{bottom:475.652000pt;}
.y2_c00209{bottom:518.382667pt;}
.y1_c00209{bottom:576.954667pt;}
.y6_c00209{bottom:582.240000pt;}
.y5_c00209{bottom:594.960000pt;}
.h1_c00209{height:16.004231pt;}
.h2_c00209{height:21.333333pt;}
.h3_c00209{height:64.000000pt;}
.h0_c00209{height:606.666667pt;}
.w0_c00209{width:837.066667pt;}
.w1_c00209{width:837.333333pt;}
.x0_c00209{left:0.000000pt;}
.x5_c00209{left:12.480000pt;}
.x1_c00209{left:34.320000pt;}
.x2_c00209{left:35.667156pt;}
.x3_c00209{left:36.649961pt;}
.x4_c00209{left:46.146416pt;}
}





/* 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_c00210 {
    display:none;
  }
  .loading-indicator_c00210.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00210 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_c00210 { 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_c00210" -> "#page-container .classname_c00210")
 */
.pf_c00210 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00210 { /* 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_c00210.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00210 { /* 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_c00210 { /* 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_c00210 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00210 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00210 {overflow:visible;}
  }
}
.c_c00210 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00210 { /* 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_c00210:after { /* webkit #35443 */
  content: '';
}
.t_c00210:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00210 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 */
}
.__c00210 { /* 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_c00210 { /* info for Javascript */
  display:none;
}
.l_c00210 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00210 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00210 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00210: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_c00210 {
    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_c00210.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00210.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_c00210 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00210{font-family:sans-serif;visibility:hidden;}
.sc__c00210{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00210{-webkit-text-stroke:0px transparent;}
}
.y0_c00210{bottom:0.000000px;}
.h0_c00210{height:682.500000px;}
.w0_c00210{width:941.700000px;}
.w1_c00210{width:942.000000px;}
.x0_c00210{left:0.000000px;}
@media print{
.y0_c00210{bottom:0.000000pt;}
.h0_c00210{height:606.666667pt;}
.w0_c00210{width:837.066667pt;}
.w1_c00210{width:837.333333pt;}
.x0_c00210{left:0.000000pt;}
}





/* 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_c00211 {
    display:none;
  }
  .loading-indicator_c00211.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00211 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_c00211 { 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_c00211" -> "#page-container .classname_c00211")
 */
.pf_c00211 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00211 { /* 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_c00211.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00211 { /* 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_c00211 { /* 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_c00211 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00211 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00211 {overflow:visible;}
  }
}
.c_c00211 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00211 { /* 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_c00211:after { /* webkit #35443 */
  content: '';
}
.t_c00211:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00211 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 */
}
.__c00211 { /* 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_c00211 { /* info for Javascript */
  display:none;
}
.l_c00211 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00211 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00211 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00211: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_c00211 {
    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_c00211.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00211.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_c00211 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00211{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00211;src:url('chunks/assets/font_9f1332c6c654e944e53d568b.woff2')format("woff");}.ff1_c00211{font-family:ff1_c00211;line-height:1.000000;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;}
.m0_c00211{transform:matrix(0.020727,0.422587,-0.249700,0.012248,0,0);-ms-transform:matrix(0.020727,0.422587,-0.249700,0.012248,0,0);-webkit-transform:matrix(0.020727,0.422587,-0.249700,0.012248,0,0);}
.m3_c00211{transform:matrix(0.441420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441420,0.000000,0.000000,0.250000,0,0);}
.m2_c00211{transform:matrix(0.531505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531505,0.000000,0.000000,0.250000,0,0);}
.m1_c00211{transform:matrix(0.820280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.820280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.820280,0.000000,0.000000,0.250000,0,0);}
.m4_c00211{transform:matrix(2.971855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.971855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.971855,0.000000,0.000000,0.250000,0,0);}
.v0_c00211{vertical-align:0.000000px;}
.ls0_c00211{letter-spacing:0.000000px;}
.sc__c00211{text-shadow:none;}
.sc0_c00211{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__c00211{-webkit-text-stroke:0px transparent;}
.sc0_c00211{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00211{word-spacing:0.000000px;}
.fc0_c00211{color:transparent;}
.fs1_c00211{font-size:18.000000px;}
.fs0_c00211{font-size:30.006029px;}
.y0_c00211{bottom:0.000000px;}
.y3_c00211{bottom:0.267000px;}
.y2_c00211{bottom:0.537000px;}
.y1_c00211{bottom:18.090000px;}
.h2_c00211{height:18.000000px;}
.h1_c00211{height:30.006029px;}
.h0_c00211{height:682.500000px;}
.w0_c00211{width:941.700000px;}
.w1_c00211{width:942.000000px;}
.x0_c00211{left:0.000000px;}
.x5_c00211{left:273.780000px;}
.x4_c00211{left:330.750000px;}
.x3_c00211{left:601.020000px;}
.x2_c00211{left:622.620000px;}
.x1_c00211{left:935.550000px;}
@media print{
.v0_c00211{vertical-align:0.000000pt;}
.ls0_c00211{letter-spacing:0.000000pt;}
.ws0_c00211{word-spacing:0.000000pt;}
.fs1_c00211{font-size:16.000000pt;}
.fs0_c00211{font-size:26.672026pt;}
.y0_c00211{bottom:0.000000pt;}
.y3_c00211{bottom:0.237333pt;}
.y2_c00211{bottom:0.477333pt;}
.y1_c00211{bottom:16.080000pt;}
.h2_c00211{height:16.000000pt;}
.h1_c00211{height:26.672026pt;}
.h0_c00211{height:606.666667pt;}
.w0_c00211{width:837.066667pt;}
.w1_c00211{width:837.333333pt;}
.x0_c00211{left:0.000000pt;}
.x5_c00211{left:243.360000pt;}
.x4_c00211{left:294.000000pt;}
.x3_c00211{left:534.240000pt;}
.x2_c00211{left:553.440000pt;}
.x1_c00211{left:831.600000pt;}
}





/* 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_c00212 {
    display:none;
  }
  .loading-indicator_c00212.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00212 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_c00212 { 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_c00212" -> "#page-container .classname_c00212")
 */
.pf_c00212 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00212 { /* 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_c00212.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00212 { /* 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_c00212 { /* 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_c00212 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00212 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00212 {overflow:visible;}
  }
}
.c_c00212 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00212 { /* 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_c00212:after { /* webkit #35443 */
  content: '';
}
.t_c00212:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00212 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 */
}
.__c00212 { /* 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_c00212 { /* info for Javascript */
  display:none;
}
.l_c00212 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00212 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00212 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00212: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_c00212 {
    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_c00212.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00212.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_c00212 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00212{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00212;src:url('chunks/assets/font_92d6bb63cbc780ceff7db400.woff2')format("woff");}.ff1_c00212{font-family:ff1_c00212;line-height:1.000000;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;}
.m4_c00212{transform:matrix(0.127810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127810,0.000000,0.000000,0.250000,0,0);}
.m9_c00212{transform:matrix(0.217890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217890,0.000000,0.000000,0.250000,0,0);}
.m3_c00212{transform:matrix(0.243485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243485,0.000000,0.000000,0.250000,0,0);}
.m5_c00212{transform:matrix(0.295995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295995,0.000000,0.000000,0.250000,0,0);}
.m0_c00212{transform:matrix(0.298195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298195,0.000000,0.000000,0.250000,0,0);}
.m7_c00212{transform:matrix(0.323170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323170,0.000000,0.000000,0.250000,0,0);}
.m6_c00212{transform:matrix(0.336385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336385,0.000000,0.000000,0.250000,0,0);}
.ma_c00212{transform:matrix(0.388850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388850,0.000000,0.000000,0.250000,0,0);}
.m8_c00212{transform:matrix(0.515720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515720,0.000000,0.000000,0.250000,0,0);}
.m2_c00212{transform:matrix(1.159360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.159360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.159360,0.000000,0.000000,0.250000,0,0);}
.m1_c00212{transform:matrix(3.498570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.498570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.498570,0.000000,0.000000,0.250000,0,0);}
.v0_c00212{vertical-align:0.000000px;}
.ls0_c00212{letter-spacing:0.000000px;}
.sc__c00212{text-shadow:none;}
.sc0_c00212{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__c00212{-webkit-text-stroke:0px transparent;}
.sc0_c00212{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00212{word-spacing:0.000000px;}
.fc0_c00212{color:transparent;}
.fs0_c00212{font-size:78.000000px;}
.fs1_c00212{font-size:96.000000px;}
.y0_c00212{bottom:0.000000px;}
.y9_c00212{bottom:445.171500px;}
.y8_c00212{bottom:445.723500px;}
.y7_c00212{bottom:447.177000px;}
.y6_c00212{bottom:447.702000px;}
.y5_c00212{bottom:448.168500px;}
.y4_c00212{bottom:448.869000px;}
.y3_c00212{bottom:449.302500px;}
.y2_c00212{bottom:449.830500px;}
.y1_c00212{bottom:480.828000px;}
.h1_c00212{height:78.000000px;}
.h2_c00212{height:96.000000px;}
.h0_c00212{height:682.500000px;}
.w0_c00212{width:941.700000px;}
.w1_c00212{width:942.000000px;}
.x0_c00212{left:0.000000px;}
.x1_c00212{left:135.000000px;}
.x2_c00212{left:212.760000px;}
.x4_c00212{left:224.982000px;}
.x5_c00212{left:291.028500px;}
.x6_c00212{left:345.124500px;}
.x7_c00212{left:432.598500px;}
.x8_c00212{left:490.915500px;}
.x9_c00212{left:556.521000px;}
.x3_c00212{left:633.150000px;}
.xa_c00212{left:738.291000px;}
.xb_c00212{left:807.297000px;}
@media print{
.v0_c00212{vertical-align:0.000000pt;}
.ls0_c00212{letter-spacing:0.000000pt;}
.ws0_c00212{word-spacing:0.000000pt;}
.fs0_c00212{font-size:69.333333pt;}
.fs1_c00212{font-size:85.333333pt;}
.y0_c00212{bottom:0.000000pt;}
.y9_c00212{bottom:395.708000pt;}
.y8_c00212{bottom:396.198667pt;}
.y7_c00212{bottom:397.490667pt;}
.y6_c00212{bottom:397.957333pt;}
.y5_c00212{bottom:398.372000pt;}
.y4_c00212{bottom:398.994667pt;}
.y3_c00212{bottom:399.380000pt;}
.y2_c00212{bottom:399.849333pt;}
.y1_c00212{bottom:427.402667pt;}
.h1_c00212{height:69.333333pt;}
.h2_c00212{height:85.333333pt;}
.h0_c00212{height:606.666667pt;}
.w0_c00212{width:837.066667pt;}
.w1_c00212{width:837.333333pt;}
.x0_c00212{left:0.000000pt;}
.x1_c00212{left:120.000000pt;}
.x2_c00212{left:189.120000pt;}
.x4_c00212{left:199.984000pt;}
.x5_c00212{left:258.692000pt;}
.x6_c00212{left:306.777333pt;}
.x7_c00212{left:384.532000pt;}
.x8_c00212{left:436.369333pt;}
.x9_c00212{left:494.685333pt;}
.x3_c00212{left:562.800000pt;}
.xa_c00212{left:656.258667pt;}
.xb_c00212{left:717.597333pt;}
}





/* 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_c00213 {
    display:none;
  }
  .loading-indicator_c00213.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00213 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_c00213 { 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_c00213" -> "#page-container .classname_c00213")
 */
.pf_c00213 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00213 { /* 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_c00213.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00213 { /* 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_c00213 { /* 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_c00213 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00213 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00213 {overflow:visible;}
  }
}
.c_c00213 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00213 { /* 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_c00213:after { /* webkit #35443 */
  content: '';
}
.t_c00213:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00213 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 */
}
.__c00213 { /* 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_c00213 { /* info for Javascript */
  display:none;
}
.l_c00213 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00213 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00213 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00213: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_c00213 {
    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_c00213.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00213.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_c00213 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00213{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00213;src:url('chunks/assets/font_a72a081e1d55f37b0ea09712.woff2')format("woff");}.ff1_c00213{font-family:ff1_c00213;line-height:1.000000;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;}
.m4_c00213{transform:matrix(0.000534,-0.035571,0.249972,0.003750,0,0);-ms-transform:matrix(0.000534,-0.035571,0.249972,0.003750,0,0);-webkit-transform:matrix(0.000534,-0.035571,0.249972,0.003750,0,0);}
.m5_c00213{transform:matrix(0.000608,-0.040555,0.249972,0.003750,0,0);-ms-transform:matrix(0.000608,-0.040555,0.249972,0.003750,0,0);-webkit-transform:matrix(0.000608,-0.040555,0.249972,0.003750,0,0);}
.m8_c00213{transform:matrix(0.000696,-0.046380,0.249972,0.003750,0,0);-ms-transform:matrix(0.000696,-0.046380,0.249972,0.003750,0,0);-webkit-transform:matrix(0.000696,-0.046380,0.249972,0.003750,0,0);}
.mb_c00213{transform:matrix(0.001824,-0.091222,0.249950,0.004999,0,0);-ms-transform:matrix(0.001824,-0.091222,0.249950,0.004999,0,0);-webkit-transform:matrix(0.001824,-0.091222,0.249950,0.004999,0,0);}
.m3_c00213{transform:matrix(0.002200,-0.146664,0.249972,0.003750,0,0);-ms-transform:matrix(0.002200,-0.146664,0.249972,0.003750,0,0);-webkit-transform:matrix(0.002200,-0.146664,0.249972,0.003750,0,0);}
.ma_c00213{transform:matrix(0.002848,-0.189864,0.249972,0.003750,0,0);-ms-transform:matrix(0.002848,-0.189864,0.249972,0.003750,0,0);-webkit-transform:matrix(0.002848,-0.189864,0.249972,0.003750,0,0);}
.m9_c00213{transform:matrix(0.004051,-0.270075,0.249972,0.003750,0,0);-ms-transform:matrix(0.004051,-0.270075,0.249972,0.003750,0,0);-webkit-transform:matrix(0.004051,-0.270075,0.249972,0.003750,0,0);}
.me_c00213{transform:matrix(0.004620,-0.230999,0.249950,0.004999,0,0);-ms-transform:matrix(0.004620,-0.230999,0.249950,0.004999,0,0);-webkit-transform:matrix(0.004620,-0.230999,0.249950,0.004999,0,0);}
.m10_c00213{transform:matrix(0.004716,-0.235803,0.249950,0.004999,0,0);-ms-transform:matrix(0.004716,-0.235803,0.249950,0.004999,0,0);-webkit-transform:matrix(0.004716,-0.235803,0.249950,0.004999,0,0);}
.m6_c00213{transform:matrix(0.005410,-0.360659,0.249972,0.003750,0,0);-ms-transform:matrix(0.005410,-0.360659,0.249972,0.003750,0,0);-webkit-transform:matrix(0.005410,-0.360659,0.249972,0.003750,0,0);}
.m0_c00213{transform:matrix(0.006269,-0.417923,0.249972,0.003750,0,0);-ms-transform:matrix(0.006269,-0.417923,0.249972,0.003750,0,0);-webkit-transform:matrix(0.006269,-0.417923,0.249972,0.003750,0,0);}
.m11_c00213{transform:matrix(0.006840,-0.341987,0.249950,0.004999,0,0);-ms-transform:matrix(0.006840,-0.341987,0.249950,0.004999,0,0);-webkit-transform:matrix(0.006840,-0.341987,0.249950,0.004999,0,0);}
.m2_c00213{transform:matrix(0.006994,-0.466283,0.249972,0.003750,0,0);-ms-transform:matrix(0.006994,-0.466283,0.249972,0.003750,0,0);-webkit-transform:matrix(0.006994,-0.466283,0.249972,0.003750,0,0);}
.m7_c00213{transform:matrix(0.013872,-0.924801,0.249972,0.003750,0,0);-ms-transform:matrix(0.013872,-0.924801,0.249972,0.003750,0,0);-webkit-transform:matrix(0.013872,-0.924801,0.249972,0.003750,0,0);}
.m1_c00213{transform:matrix(0.015815,-1.054341,0.249972,0.003750,0,0);-ms-transform:matrix(0.015815,-1.054341,0.249972,0.003750,0,0);-webkit-transform:matrix(0.015815,-1.054341,0.249972,0.003750,0,0);}
.mc_c00213{transform:matrix(0.016402,-0.820116,0.249950,0.004999,0,0);-ms-transform:matrix(0.016402,-0.820116,0.249950,0.004999,0,0);-webkit-transform:matrix(0.016402,-0.820116,0.249950,0.004999,0,0);}
.md_c00213{transform:matrix(0.017804,-0.890177,0.249950,0.004999,0,0);-ms-transform:matrix(0.017804,-0.890177,0.249950,0.004999,0,0);-webkit-transform:matrix(0.017804,-0.890177,0.249950,0.004999,0,0);}
.mf_c00213{transform:matrix(0.025211,-1.260553,0.249950,0.004999,0,0);-ms-transform:matrix(0.025211,-1.260553,0.249950,0.004999,0,0);-webkit-transform:matrix(0.025211,-1.260553,0.249950,0.004999,0,0);}
.v0_c00213{vertical-align:0.000000px;}
.ls0_c00213{letter-spacing:0.000000px;}
.sc__c00213{text-shadow:none;}
.sc0_c00213{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__c00213{-webkit-text-stroke:0px transparent;}
.sc0_c00213{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00213{word-spacing:0.000000px;}
.fc0_c00213{color:transparent;}
.fs1_c00213{font-size:24.002700px;}
.fs2_c00213{font-size:36.007199px;}
.fs0_c00213{font-size:42.004725px;}
.y0_c00213{bottom:0.000000px;}
.yb_c00213{bottom:23.188913px;}
.y3_c00213{bottom:34.537500px;}
.y12_c00213{bottom:41.203500px;}
.ya_c00213{bottom:46.154423px;}
.y11_c00213{bottom:50.985000px;}
.y9_c00213{bottom:73.952175px;}
.y2_c00213{bottom:101.622000px;}
.y10_c00213{bottom:116.323500px;}
.yf_c00213{bottom:154.126500px;}
.y8_c00213{bottom:178.468628px;}
.y1_c00213{bottom:192.078000px;}
.ye_c00213{bottom:196.509000px;}
.y7_c00213{bottom:224.915715px;}
.y6_c00213{bottom:245.438843px;}
.yd_c00213{bottom:259.978500px;}
.y5_c00213{bottom:281.351333px;}
.y4_c00213{bottom:303.223163px;}
.yc_c00213{bottom:314.280000px;}
.h2_c00213{height:24.002700px;}
.h3_c00213{height:36.007199px;}
.h1_c00213{height:42.004725px;}
.h0_c00213{height:682.500000px;}
.w0_c00213{width:941.700000px;}
.w1_c00213{width:942.000000px;}
.x0_c00213{left:0.000000px;}
.x9_c00213{left:9.854100px;}
.x8_c00213{left:11.160870px;}
.x7_c00213{left:12.764580px;}
.x6_c00213{left:14.033970px;}
.x5_c00213{left:15.120000px;}
.x4_c00213{left:21.182362px;}
.x3_c00213{left:22.269892px;}
.x2_c00213{left:23.276160px;}
.x1_c00213{left:24.633000px;}
@media print{
.v0_c00213{vertical-align:0.000000pt;}
.ls0_c00213{letter-spacing:0.000000pt;}
.ws0_c00213{word-spacing:0.000000pt;}
.fs1_c00213{font-size:21.335733pt;}
.fs2_c00213{font-size:32.006399pt;}
.fs0_c00213{font-size:37.337533pt;}
.y0_c00213{bottom:0.000000pt;}
.yb_c00213{bottom:20.612367pt;}
.y3_c00213{bottom:30.700000pt;}
.y12_c00213{bottom:36.625333pt;}
.ya_c00213{bottom:41.026153pt;}
.y11_c00213{bottom:45.320000pt;}
.y9_c00213{bottom:65.735267pt;}
.y2_c00213{bottom:90.330667pt;}
.y10_c00213{bottom:103.398667pt;}
.yf_c00213{bottom:137.001333pt;}
.y8_c00213{bottom:158.638780pt;}
.y1_c00213{bottom:170.736000pt;}
.ye_c00213{bottom:174.674667pt;}
.y7_c00213{bottom:199.925080pt;}
.y6_c00213{bottom:218.167860pt;}
.yd_c00213{bottom:231.092000pt;}
.y5_c00213{bottom:250.090073pt;}
.y4_c00213{bottom:269.531700pt;}
.yc_c00213{bottom:279.360000pt;}
.h2_c00213{height:21.335733pt;}
.h3_c00213{height:32.006399pt;}
.h1_c00213{height:37.337533pt;}
.h0_c00213{height:606.666667pt;}
.w0_c00213{width:837.066667pt;}
.w1_c00213{width:837.333333pt;}
.x0_c00213{left:0.000000pt;}
.x9_c00213{left:8.759200pt;}
.x8_c00213{left:9.920773pt;}
.x7_c00213{left:11.346293pt;}
.x6_c00213{left:12.474640pt;}
.x5_c00213{left:13.440000pt;}
.x4_c00213{left:18.828767pt;}
.x3_c00213{left:19.795460pt;}
.x2_c00213{left:20.689920pt;}
.x1_c00213{left:21.896000pt;}
}





/* 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_c00214 {
    display:none;
  }
  .loading-indicator_c00214.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00214 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_c00214 { 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_c00214" -> "#page-container .classname_c00214")
 */
.pf_c00214 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00214 { /* 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_c00214.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00214 { /* 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_c00214 { /* 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_c00214 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00214 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00214 {overflow:visible;}
  }
}
.c_c00214 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00214 { /* 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_c00214:after { /* webkit #35443 */
  content: '';
}
.t_c00214:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00214 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 */
}
.__c00214 { /* 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_c00214 { /* info for Javascript */
  display:none;
}
.l_c00214 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00214 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00214 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00214: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_c00214 {
    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_c00214.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00214.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_c00214 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00214{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00214;src:url('chunks/assets/font_cfe63ee56e9e10a97d33a3db.woff2')format("woff");}.ff1_c00214{font-family:ff1_c00214;line-height:1.000000;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;}
.m26_c00214{transform:matrix(0.006185,-0.000031,0.001250,0.249997,0,0);-ms-transform:matrix(0.006185,-0.000031,0.001250,0.249997,0,0);-webkit-transform:matrix(0.006185,-0.000031,0.001250,0.249997,0,0);}
.m67_c00214{transform:matrix(0.011589,-0.000151,0.003250,0.249979,0,0);-ms-transform:matrix(0.011589,-0.000151,0.003250,0.249979,0,0);-webkit-transform:matrix(0.011589,-0.000151,0.003250,0.249979,0,0);}
.m63_c00214{transform:matrix(0.013634,-0.000177,0.003250,0.249979,0,0);-ms-transform:matrix(0.013634,-0.000177,0.003250,0.249979,0,0);-webkit-transform:matrix(0.013634,-0.000177,0.003250,0.249979,0,0);}
.m72_c00214{transform:matrix(0.015908,-0.000270,0.004249,0.249964,0,0);-ms-transform:matrix(0.015908,-0.000270,0.004249,0.249964,0,0);-webkit-transform:matrix(0.015908,-0.000270,0.004249,0.249964,0,0);}
.m60_c00214{transform:matrix(0.016469,-0.000148,0.002250,0.249990,0,0);-ms-transform:matrix(0.016469,-0.000148,0.002250,0.249990,0,0);-webkit-transform:matrix(0.016469,-0.000148,0.002250,0.249990,0,0);}
.m12_c00214{transform:matrix(0.025453,-0.000331,0.003250,0.249979,0,0);-ms-transform:matrix(0.025453,-0.000331,0.003250,0.249979,0,0);-webkit-transform:matrix(0.025453,-0.000331,0.003250,0.249979,0,0);}
.m43_c00214{transform:matrix(0.025455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.025455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.025455,0.000000,0.000000,0.250000,0,0);}
.m1a_c00214{transform:matrix(0.042421,-0.000551,0.003250,0.249979,0,0);-ms-transform:matrix(0.042421,-0.000551,0.003250,0.249979,0,0);-webkit-transform:matrix(0.042421,-0.000551,0.003250,0.249979,0,0);}
.m33_c00214{transform:matrix(0.042424,-0.000212,0.001250,0.249997,0,0);-ms-transform:matrix(0.042424,-0.000212,0.001250,0.249997,0,0);-webkit-transform:matrix(0.042424,-0.000212,0.001250,0.249997,0,0);}
.m37_c00214{transform:matrix(0.044996,-0.000585,0.003250,0.249979,0,0);-ms-transform:matrix(0.044996,-0.000585,0.003250,0.249979,0,0);-webkit-transform:matrix(0.044996,-0.000585,0.003250,0.249979,0,0);}
.m16_c00214{transform:matrix(0.047431,-0.000617,0.003250,0.249979,0,0);-ms-transform:matrix(0.047431,-0.000617,0.003250,0.249979,0,0);-webkit-transform:matrix(0.047431,-0.000617,0.003250,0.249979,0,0);}
.m11_c00214{transform:matrix(0.050906,-0.000662,0.003250,0.249979,0,0);-ms-transform:matrix(0.050906,-0.000662,0.003250,0.249979,0,0);-webkit-transform:matrix(0.050906,-0.000662,0.003250,0.249979,0,0);}
.m42_c00214{transform:matrix(0.050910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.050910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.050910,0.000000,0.000000,0.250000,0,0);}
.m2_c00214{transform:matrix(0.052476,-0.000682,0.003250,0.249979,0,0);-ms-transform:matrix(0.052476,-0.000682,0.003250,0.249979,0,0);-webkit-transform:matrix(0.052476,-0.000682,0.003250,0.249979,0,0);}
.m18_c00214{transform:matrix(0.054080,-0.000703,0.003250,0.249979,0,0);-ms-transform:matrix(0.054080,-0.000703,0.003250,0.249979,0,0);-webkit-transform:matrix(0.054080,-0.000703,0.003250,0.249979,0,0);}
.m2d_c00214{transform:matrix(0.063639,-0.000318,0.001250,0.249997,0,0);-ms-transform:matrix(0.063639,-0.000318,0.001250,0.249997,0,0);-webkit-transform:matrix(0.063639,-0.000318,0.001250,0.249997,0,0);}
.m10_c00214{transform:matrix(0.064895,-0.000844,0.003250,0.249979,0,0);-ms-transform:matrix(0.064895,-0.000844,0.003250,0.249979,0,0);-webkit-transform:matrix(0.064895,-0.000844,0.003250,0.249979,0,0);}
.m2f_c00214{transform:matrix(0.074999,-0.000375,0.001250,0.249997,0,0);-ms-transform:matrix(0.074999,-0.000375,0.001250,0.249997,0,0);-webkit-transform:matrix(0.074999,-0.000375,0.001250,0.249997,0,0);}
.m41_c00214{transform:matrix(0.076370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076370,0.000000,0.000000,0.250000,0,0);}
.m2b_c00214{transform:matrix(0.084854,-0.000424,0.001250,0.249997,0,0);-ms-transform:matrix(0.084854,-0.000424,0.001250,0.249997,0,0);-webkit-transform:matrix(0.084854,-0.000424,0.001250,0.249997,0,0);}
.m22_c00214{transform:matrix(0.091599,-0.000458,0.001250,0.249997,0,0);-ms-transform:matrix(0.091599,-0.000458,0.001250,0.249997,0,0);-webkit-transform:matrix(0.091599,-0.000458,0.001250,0.249997,0,0);}
.m15_c00214{transform:matrix(0.106056,-0.001379,0.003250,0.249979,0,0);-ms-transform:matrix(0.106056,-0.001379,0.003250,0.249979,0,0);-webkit-transform:matrix(0.106056,-0.001379,0.003250,0.249979,0,0);}
.m3d_c00214{transform:matrix(0.127904,-0.001663,0.003250,0.249979,0,0);-ms-transform:matrix(0.127904,-0.001663,0.003250,0.249979,0,0);-webkit-transform:matrix(0.127904,-0.001663,0.003250,0.249979,0,0);}
.m31_c00214{transform:matrix(0.128158,-0.000641,0.001250,0.249997,0,0);-ms-transform:matrix(0.128158,-0.000641,0.001250,0.249997,0,0);-webkit-transform:matrix(0.128158,-0.000641,0.001250,0.249997,0,0);}
.m2c_c00214{transform:matrix(0.148488,-0.000742,0.001250,0.249997,0,0);-ms-transform:matrix(0.148488,-0.000742,0.001250,0.249997,0,0);-webkit-transform:matrix(0.148488,-0.000742,0.001250,0.249997,0,0);}
.m52_c00214{transform:matrix(0.157470,-0.003307,0.005249,0.249945,0,0);-ms-transform:matrix(0.157470,-0.003307,0.005249,0.249945,0,0);-webkit-transform:matrix(0.157470,-0.003307,0.005249,0.249945,0,0);}
.m51_c00214{transform:matrix(0.158410,-0.003327,0.005249,0.249945,0,0);-ms-transform:matrix(0.158410,-0.003327,0.005249,0.249945,0,0);-webkit-transform:matrix(0.158410,-0.003327,0.005249,0.249945,0,0);}
.m1e_c00214{transform:matrix(0.169691,-0.002206,0.003250,0.249979,0,0);-ms-transform:matrix(0.169691,-0.002206,0.003250,0.249979,0,0);-webkit-transform:matrix(0.169691,-0.002206,0.003250,0.249979,0,0);}
.md_c00214{transform:matrix(0.173805,-0.002259,0.003250,0.249979,0,0);-ms-transform:matrix(0.173805,-0.002259,0.003250,0.249979,0,0);-webkit-transform:matrix(0.173805,-0.002259,0.003250,0.249979,0,0);}
.m79_c00214{transform:matrix(0.185540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185540,0.000000,0.000000,0.250000,0,0);}
.m7e_c00214{transform:matrix(0.192240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192240,0.000000,0.000000,0.250000,0,0);}
.m78_c00214{transform:matrix(0.199225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199225,0.000000,0.000000,0.250000,0,0);}
.m23_c00214{transform:matrix(0.211087,-0.001055,0.001250,0.249997,0,0);-ms-transform:matrix(0.211087,-0.001055,0.001250,0.249997,0,0);-webkit-transform:matrix(0.211087,-0.001055,0.001250,0.249997,0,0);}
.m4a_c00214{transform:matrix(0.211895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211895,0.000000,0.000000,0.250000,0,0);}
.m69_c00214{transform:matrix(0.213489,-0.003629,0.004249,0.249964,0,0);-ms-transform:matrix(0.213489,-0.003629,0.004249,0.249964,0,0);-webkit-transform:matrix(0.213489,-0.003629,0.004249,0.249964,0,0);}
.m5c_c00214{transform:matrix(0.216301,-0.001947,0.002250,0.249990,0,0);-ms-transform:matrix(0.216301,-0.001947,0.002250,0.249990,0,0);-webkit-transform:matrix(0.216301,-0.001947,0.002250,0.249990,0,0);}
.m7c_c00214{transform:matrix(0.219720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219720,0.000000,0.000000,0.250000,0,0);}
.m34_c00214{transform:matrix(0.225701,-0.002934,0.003250,0.249979,0,0);-ms-transform:matrix(0.225701,-0.002934,0.003250,0.249979,0,0);-webkit-transform:matrix(0.225701,-0.002934,0.003250,0.249979,0,0);}
.m7a_c00214{transform:matrix(0.237540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237540,0.000000,0.000000,0.250000,0,0);}
.m7d_c00214{transform:matrix(0.241520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241520,0.000000,0.000000,0.250000,0,0);}
.m62_c00214{transform:matrix(0.246825,-0.002221,0.002250,0.249990,0,0);-ms-transform:matrix(0.246825,-0.002221,0.002250,0.249990,0,0);-webkit-transform:matrix(0.246825,-0.002221,0.002250,0.249990,0,0);}
.m4e_c00214{transform:matrix(0.247061,-0.005188,0.005249,0.249945,0,0);-ms-transform:matrix(0.247061,-0.005188,0.005249,0.249945,0,0);-webkit-transform:matrix(0.247061,-0.005188,0.005249,0.249945,0,0);}
.m5a_c00214{transform:matrix(0.250775,-0.005266,0.005249,0.249945,0,0);-ms-transform:matrix(0.250775,-0.005266,0.005249,0.249945,0,0);-webkit-transform:matrix(0.250775,-0.005266,0.005249,0.249945,0,0);}
.m4_c00214{transform:matrix(0.253189,-0.003291,0.003250,0.249979,0,0);-ms-transform:matrix(0.253189,-0.003291,0.003250,0.249979,0,0);-webkit-transform:matrix(0.253189,-0.003291,0.003250,0.249979,0,0);}
.m25_c00214{transform:matrix(0.254612,-0.001273,0.001250,0.249997,0,0);-ms-transform:matrix(0.254612,-0.001273,0.001250,0.249997,0,0);-webkit-transform:matrix(0.254612,-0.001273,0.001250,0.249997,0,0);}
.m73_c00214{transform:matrix(0.256760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256760,0.000000,0.000000,0.250000,0,0);}
.m68_c00214{transform:matrix(0.257658,-0.004380,0.004249,0.249964,0,0);-ms-transform:matrix(0.257658,-0.004380,0.004249,0.249964,0,0);-webkit-transform:matrix(0.257658,-0.004380,0.004249,0.249964,0,0);}
.m40_c00214{transform:matrix(0.257720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257720,0.000000,0.000000,0.250000,0,0);}
.m47_c00214{transform:matrix(0.259825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259825,0.000000,0.000000,0.250000,0,0);}
.m0_c00214{transform:matrix(0.266487,-0.003464,0.003250,0.249979,0,0);-ms-transform:matrix(0.266487,-0.003464,0.003250,0.249979,0,0);-webkit-transform:matrix(0.266487,-0.003464,0.003250,0.249979,0,0);}
.m32_c00214{transform:matrix(0.269257,-0.001346,0.001250,0.249997,0,0);-ms-transform:matrix(0.269257,-0.001346,0.001250,0.249997,0,0);-webkit-transform:matrix(0.269257,-0.001346,0.001250,0.249997,0,0);}
.m55_c00214{transform:matrix(0.274904,-0.005773,0.005249,0.249945,0,0);-ms-transform:matrix(0.274904,-0.005773,0.005249,0.249945,0,0);-webkit-transform:matrix(0.274904,-0.005773,0.005249,0.249945,0,0);}
.m61_c00214{transform:matrix(0.278259,-0.002504,0.002250,0.249990,0,0);-ms-transform:matrix(0.278259,-0.002504,0.002250,0.249990,0,0);-webkit-transform:matrix(0.278259,-0.002504,0.002250,0.249990,0,0);}
.m76_c00214{transform:matrix(0.279900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279900,0.000000,0.000000,0.250000,0,0);}
.m1b_c00214{transform:matrix(0.280201,-0.003643,0.003250,0.249979,0,0);-ms-transform:matrix(0.280201,-0.003643,0.003250,0.249979,0,0);-webkit-transform:matrix(0.280201,-0.003643,0.003250,0.249979,0,0);}
.m5f_c00214{transform:matrix(0.286668,-0.002580,0.002250,0.249990,0,0);-ms-transform:matrix(0.286668,-0.002580,0.002250,0.249990,0,0);-webkit-transform:matrix(0.286668,-0.002580,0.002250,0.249990,0,0);}
.m71_c00214{transform:matrix(0.294172,-0.005001,0.004249,0.249964,0,0);-ms-transform:matrix(0.294172,-0.005001,0.004249,0.249964,0,0);-webkit-transform:matrix(0.294172,-0.005001,0.004249,0.249964,0,0);}
.m46_c00214{transform:matrix(0.295605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295605,0.000000,0.000000,0.250000,0,0);}
.m19_c00214{transform:matrix(0.296115,-0.003849,0.003250,0.249979,0,0);-ms-transform:matrix(0.296115,-0.003849,0.003250,0.249979,0,0);-webkit-transform:matrix(0.296115,-0.003849,0.003250,0.249979,0,0);}
.m50_c00214{transform:matrix(0.301134,-0.006324,0.005249,0.249945,0,0);-ms-transform:matrix(0.301134,-0.006324,0.005249,0.249945,0,0);-webkit-transform:matrix(0.301134,-0.006324,0.005249,0.249945,0,0);}
.m38_c00214{transform:matrix(0.302379,-0.003931,0.003250,0.249979,0,0);-ms-transform:matrix(0.302379,-0.003931,0.003250,0.249979,0,0);-webkit-transform:matrix(0.302379,-0.003931,0.003250,0.249979,0,0);}
.m75_c00214{transform:matrix(0.307775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307775,0.000000,0.000000,0.250000,0,0);}
.m65_c00214{transform:matrix(0.309049,-0.004018,0.003250,0.249979,0,0);-ms-transform:matrix(0.309049,-0.004018,0.003250,0.249979,0,0);-webkit-transform:matrix(0.309049,-0.004018,0.003250,0.249979,0,0);}
.m45_c00214{transform:matrix(0.311460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311460,0.000000,0.000000,0.250000,0,0);}
.m6e_c00214{transform:matrix(0.312705,-0.005316,0.004249,0.249964,0,0);-ms-transform:matrix(0.312705,-0.005316,0.004249,0.249964,0,0);-webkit-transform:matrix(0.312705,-0.005316,0.004249,0.249964,0,0);}
.m66_c00214{transform:matrix(0.327362,-0.004256,0.003250,0.249979,0,0);-ms-transform:matrix(0.327362,-0.004256,0.003250,0.249979,0,0);-webkit-transform:matrix(0.327362,-0.004256,0.003250,0.249979,0,0);}
.m44_c00214{transform:matrix(0.327385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327385,0.000000,0.000000,0.250000,0,0);}
.m29_c00214{transform:matrix(0.328971,-0.001645,0.001250,0.249997,0,0);-ms-transform:matrix(0.328971,-0.001645,0.001250,0.249997,0,0);-webkit-transform:matrix(0.328971,-0.001645,0.001250,0.249997,0,0);}
.m17_c00214{transform:matrix(0.332387,-0.004321,0.003250,0.249979,0,0);-ms-transform:matrix(0.332387,-0.004321,0.003250,0.249979,0,0);-webkit-transform:matrix(0.332387,-0.004321,0.003250,0.249979,0,0);}
.m27_c00214{transform:matrix(0.333226,-0.001666,0.001250,0.249997,0,0);-ms-transform:matrix(0.333226,-0.001666,0.001250,0.249997,0,0);-webkit-transform:matrix(0.333226,-0.001666,0.001250,0.249997,0,0);}
.m28_c00214{transform:matrix(0.335276,-0.001676,0.001250,0.249997,0,0);-ms-transform:matrix(0.335276,-0.001676,0.001250,0.249997,0,0);-webkit-transform:matrix(0.335276,-0.001676,0.001250,0.249997,0,0);}
.m5e_c00214{transform:matrix(0.335611,-0.003021,0.002250,0.249990,0,0);-ms-transform:matrix(0.335611,-0.003021,0.002250,0.249990,0,0);-webkit-transform:matrix(0.335611,-0.003021,0.002250,0.249990,0,0);}
.mf_c00214{transform:matrix(0.337306,-0.004385,0.003250,0.249979,0,0);-ms-transform:matrix(0.337306,-0.004385,0.003250,0.249979,0,0);-webkit-transform:matrix(0.337306,-0.004385,0.003250,0.249979,0,0);}
.m7b_c00214{transform:matrix(0.339625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339625,0.000000,0.000000,0.250000,0,0);}
.m49_c00214{transform:matrix(0.346975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346975,0.000000,0.000000,0.250000,0,0);}
.m4f_c00214{transform:matrix(0.349053,-0.007330,0.005249,0.249945,0,0);-ms-transform:matrix(0.349053,-0.007330,0.005249,0.249945,0,0);-webkit-transform:matrix(0.349053,-0.007330,0.005249,0.249945,0,0);}
.m13_c00214{transform:matrix(0.360595,-0.004688,0.003250,0.249979,0,0);-ms-transform:matrix(0.360595,-0.004688,0.003250,0.249979,0,0);-webkit-transform:matrix(0.360595,-0.004688,0.003250,0.249979,0,0);}
.m20_c00214{transform:matrix(0.371989,-0.004836,0.003250,0.249979,0,0);-ms-transform:matrix(0.371989,-0.004836,0.003250,0.249979,0,0);-webkit-transform:matrix(0.371989,-0.004836,0.003250,0.249979,0,0);}
.m4c_c00214{transform:matrix(0.372233,-0.007817,0.005249,0.249945,0,0);-ms-transform:matrix(0.372233,-0.007817,0.005249,0.249945,0,0);-webkit-transform:matrix(0.372233,-0.007817,0.005249,0.249945,0,0);}
.m8_c00214{transform:matrix(0.375928,-0.004887,0.003250,0.249979,0,0);-ms-transform:matrix(0.375928,-0.004887,0.003250,0.249979,0,0);-webkit-transform:matrix(0.375928,-0.004887,0.003250,0.249979,0,0);}
.m4d_c00214{transform:matrix(0.391949,-0.008231,0.005249,0.249945,0,0);-ms-transform:matrix(0.391949,-0.008231,0.005249,0.249945,0,0);-webkit-transform:matrix(0.391949,-0.008231,0.005249,0.249945,0,0);}
.m53_c00214{transform:matrix(0.392913,-0.008251,0.005249,0.249945,0,0);-ms-transform:matrix(0.392913,-0.008251,0.005249,0.249945,0,0);-webkit-transform:matrix(0.392913,-0.008251,0.005249,0.249945,0,0);}
.m48_c00214{transform:matrix(0.405625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405625,0.000000,0.000000,0.250000,0,0);}
.mb_c00214{transform:matrix(0.410075,-0.005331,0.003250,0.249979,0,0);-ms-transform:matrix(0.410075,-0.005331,0.003250,0.249979,0,0);-webkit-transform:matrix(0.410075,-0.005331,0.003250,0.249979,0,0);}
.m5b_c00214{transform:matrix(0.410578,-0.003695,0.002250,0.249990,0,0);-ms-transform:matrix(0.410578,-0.003695,0.002250,0.249990,0,0);-webkit-transform:matrix(0.410578,-0.003695,0.002250,0.249990,0,0);}
.m9_c00214{transform:matrix(0.442503,-0.005753,0.003250,0.249979,0,0);-ms-transform:matrix(0.442503,-0.005753,0.003250,0.249979,0,0);-webkit-transform:matrix(0.442503,-0.005753,0.003250,0.249979,0,0);}
.ma_c00214{transform:matrix(0.444527,-0.005779,0.003250,0.249979,0,0);-ms-transform:matrix(0.444527,-0.005779,0.003250,0.249979,0,0);-webkit-transform:matrix(0.444527,-0.005779,0.003250,0.249979,0,0);}
.m4b_c00214{transform:matrix(0.451730,-0.009486,0.005249,0.249945,0,0);-ms-transform:matrix(0.451730,-0.009486,0.005249,0.249945,0,0);-webkit-transform:matrix(0.451730,-0.009486,0.005249,0.249945,0,0);}
.m36_c00214{transform:matrix(0.461026,-0.005993,0.003250,0.249979,0,0);-ms-transform:matrix(0.461026,-0.005993,0.003250,0.249979,0,0);-webkit-transform:matrix(0.461026,-0.005993,0.003250,0.249979,0,0);}
.m54_c00214{transform:matrix(0.464228,-0.009749,0.005249,0.249945,0,0);-ms-transform:matrix(0.464228,-0.009749,0.005249,0.249945,0,0);-webkit-transform:matrix(0.464228,-0.009749,0.005249,0.249945,0,0);}
.m1d_c00214{transform:matrix(0.471660,-0.006132,0.003250,0.249979,0,0);-ms-transform:matrix(0.471660,-0.006132,0.003250,0.249979,0,0);-webkit-transform:matrix(0.471660,-0.006132,0.003250,0.249979,0,0);}
.m58_c00214{transform:matrix(0.474005,-0.009954,0.005249,0.249945,0,0);-ms-transform:matrix(0.474005,-0.009954,0.005249,0.249945,0,0);-webkit-transform:matrix(0.474005,-0.009954,0.005249,0.249945,0,0);}
.m64_c00214{transform:matrix(0.486124,-0.006320,0.003250,0.249979,0,0);-ms-transform:matrix(0.486124,-0.006320,0.003250,0.249979,0,0);-webkit-transform:matrix(0.486124,-0.006320,0.003250,0.249979,0,0);}
.m56_c00214{transform:matrix(0.494916,-0.010393,0.005249,0.249945,0,0);-ms-transform:matrix(0.494916,-0.010393,0.005249,0.249945,0,0);-webkit-transform:matrix(0.494916,-0.010393,0.005249,0.249945,0,0);}
.m6b_c00214{transform:matrix(0.499988,-0.008500,0.004249,0.249964,0,0);-ms-transform:matrix(0.499988,-0.008500,0.004249,0.249964,0,0);-webkit-transform:matrix(0.499988,-0.008500,0.004249,0.249964,0,0);}
.m77_c00214{transform:matrix(0.503895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.503895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.503895,0.000000,0.000000,0.250000,0,0);}
.m5d_c00214{transform:matrix(0.509914,-0.004589,0.002250,0.249990,0,0);-ms-transform:matrix(0.509914,-0.004589,0.002250,0.249990,0,0);-webkit-transform:matrix(0.509914,-0.004589,0.002250,0.249990,0,0);}
.m3a_c00214{transform:matrix(0.512442,-0.006662,0.003250,0.249979,0,0);-ms-transform:matrix(0.512442,-0.006662,0.003250,0.249979,0,0);-webkit-transform:matrix(0.512442,-0.006662,0.003250,0.249979,0,0);}
.m6c_c00214{transform:matrix(0.513846,-0.008735,0.004249,0.249964,0,0);-ms-transform:matrix(0.513846,-0.008735,0.004249,0.249964,0,0);-webkit-transform:matrix(0.513846,-0.008735,0.004249,0.249964,0,0);}
.m24_c00214{transform:matrix(0.523003,-0.002615,0.001250,0.249997,0,0);-ms-transform:matrix(0.523003,-0.002615,0.001250,0.249997,0,0);-webkit-transform:matrix(0.523003,-0.002615,0.001250,0.249997,0,0);}
.me_c00214{transform:matrix(0.531015,-0.006903,0.003250,0.249979,0,0);-ms-transform:matrix(0.531015,-0.006903,0.003250,0.249979,0,0);-webkit-transform:matrix(0.531015,-0.006903,0.003250,0.249979,0,0);}
.m3c_c00214{transform:matrix(0.544124,-0.007074,0.003250,0.249979,0,0);-ms-transform:matrix(0.544124,-0.007074,0.003250,0.249979,0,0);-webkit-transform:matrix(0.544124,-0.007074,0.003250,0.249979,0,0);}
.m3f_c00214{transform:matrix(0.562292,-0.007310,0.003250,0.249979,0,0);-ms-transform:matrix(0.562292,-0.007310,0.003250,0.249979,0,0);-webkit-transform:matrix(0.562292,-0.007310,0.003250,0.249979,0,0);}
.m57_c00214{transform:matrix(0.578517,-0.012149,0.005249,0.249945,0,0);-ms-transform:matrix(0.578517,-0.012149,0.005249,0.249945,0,0);-webkit-transform:matrix(0.578517,-0.012149,0.005249,0.249945,0,0);}
.m6a_c00214{transform:matrix(0.592759,-0.010077,0.004249,0.249964,0,0);-ms-transform:matrix(0.592759,-0.010077,0.004249,0.249964,0,0);-webkit-transform:matrix(0.592759,-0.010077,0.004249,0.249964,0,0);}
.m3b_c00214{transform:matrix(0.631757,-0.008213,0.003250,0.249979,0,0);-ms-transform:matrix(0.631757,-0.008213,0.003250,0.249979,0,0);-webkit-transform:matrix(0.631757,-0.008213,0.003250,0.249979,0,0);}
.m3e_c00214{transform:matrix(0.644826,-0.008383,0.003250,0.249979,0,0);-ms-transform:matrix(0.644826,-0.008383,0.003250,0.249979,0,0);-webkit-transform:matrix(0.644826,-0.008383,0.003250,0.249979,0,0);}
.m7_c00214{transform:matrix(0.680203,-0.008843,0.003250,0.249979,0,0);-ms-transform:matrix(0.680203,-0.008843,0.003250,0.249979,0,0);-webkit-transform:matrix(0.680203,-0.008843,0.003250,0.249979,0,0);}
.m39_c00214{transform:matrix(0.689592,-0.008965,0.003250,0.249979,0,0);-ms-transform:matrix(0.689592,-0.008965,0.003250,0.249979,0,0);-webkit-transform:matrix(0.689592,-0.008965,0.003250,0.249979,0,0);}
.m2e_c00214{transform:matrix(0.694056,-0.003470,0.001250,0.249997,0,0);-ms-transform:matrix(0.694056,-0.003470,0.001250,0.249997,0,0);-webkit-transform:matrix(0.694056,-0.003470,0.001250,0.249997,0,0);}
.m1f_c00214{transform:matrix(0.704850,-0.009163,0.003250,0.249979,0,0);-ms-transform:matrix(0.704850,-0.009163,0.003250,0.249979,0,0);-webkit-transform:matrix(0.704850,-0.009163,0.003250,0.249979,0,0);}
.m21_c00214{transform:matrix(0.712560,-0.009263,0.003250,0.249979,0,0);-ms-transform:matrix(0.712560,-0.009263,0.003250,0.249979,0,0);-webkit-transform:matrix(0.712560,-0.009263,0.003250,0.249979,0,0);}
.m59_c00214{transform:matrix(0.756078,-0.015878,0.005249,0.249945,0,0);-ms-transform:matrix(0.756078,-0.015878,0.005249,0.249945,0,0);-webkit-transform:matrix(0.756078,-0.015878,0.005249,0.249945,0,0);}
.m70_c00214{transform:matrix(0.767614,-0.013049,0.004249,0.249964,0,0);-ms-transform:matrix(0.767614,-0.013049,0.004249,0.249964,0,0);-webkit-transform:matrix(0.767614,-0.013049,0.004249,0.249964,0,0);}
.m2a_c00214{transform:matrix(0.776085,-0.003880,0.001250,0.249997,0,0);-ms-transform:matrix(0.776085,-0.003880,0.001250,0.249997,0,0);-webkit-transform:matrix(0.776085,-0.003880,0.001250,0.249997,0,0);}
.m6f_c00214{transform:matrix(0.808928,-0.013752,0.004249,0.249964,0,0);-ms-transform:matrix(0.808928,-0.013752,0.004249,0.249964,0,0);-webkit-transform:matrix(0.808928,-0.013752,0.004249,0.249964,0,0);}
.m30_c00214{transform:matrix(0.810420,-0.004052,0.001250,0.249997,0,0);-ms-transform:matrix(0.810420,-0.004052,0.001250,0.249997,0,0);-webkit-transform:matrix(0.810420,-0.004052,0.001250,0.249997,0,0);}
.m6_c00214{transform:matrix(0.850238,-0.011053,0.003250,0.249979,0,0);-ms-transform:matrix(0.850238,-0.011053,0.003250,0.249979,0,0);-webkit-transform:matrix(0.850238,-0.011053,0.003250,0.249979,0,0);}
.m7f_c00214{transform:matrix(0.876955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.876955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.876955,0.000000,0.000000,0.250000,0,0);}
.m3_c00214{transform:matrix(0.910168,-0.011832,0.003250,0.249979,0,0);-ms-transform:matrix(0.910168,-0.011832,0.003250,0.249979,0,0);-webkit-transform:matrix(0.910168,-0.011832,0.003250,0.249979,0,0);}
.m6d_c00214{transform:matrix(0.949368,-0.016139,0.004249,0.249964,0,0);-ms-transform:matrix(0.949368,-0.016139,0.004249,0.249964,0,0);-webkit-transform:matrix(0.949368,-0.016139,0.004249,0.249964,0,0);}
.mc_c00214{transform:matrix(1.055946,-0.013727,0.003250,0.249979,0,0);-ms-transform:matrix(1.055946,-0.013727,0.003250,0.249979,0,0);-webkit-transform:matrix(1.055946,-0.013727,0.003250,0.249979,0,0);}
.m1c_c00214{transform:matrix(1.056001,-0.013728,0.003250,0.249979,0,0);-ms-transform:matrix(1.056001,-0.013728,0.003250,0.249979,0,0);-webkit-transform:matrix(1.056001,-0.013728,0.003250,0.249979,0,0);}
.m35_c00214{transform:matrix(1.172816,-0.015247,0.003250,0.249979,0,0);-ms-transform:matrix(1.172816,-0.015247,0.003250,0.249979,0,0);-webkit-transform:matrix(1.172816,-0.015247,0.003250,0.249979,0,0);}
.m74_c00214{transform:matrix(1.182670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.182670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.182670,0.000000,0.000000,0.250000,0,0);}
.m1_c00214{transform:matrix(1.636032,-0.021268,0.003250,0.249979,0,0);-ms-transform:matrix(1.636032,-0.021268,0.003250,0.249979,0,0);-webkit-transform:matrix(1.636032,-0.021268,0.003250,0.249979,0,0);}
.m14_c00214{transform:matrix(2.558504,-0.033261,0.003250,0.249979,0,0);-ms-transform:matrix(2.558504,-0.033261,0.003250,0.249979,0,0);-webkit-transform:matrix(2.558504,-0.033261,0.003250,0.249979,0,0);}
.m5_c00214{transform:matrix(3.943617,-0.051267,0.003250,0.249979,0,0);-ms-transform:matrix(3.943617,-0.051267,0.003250,0.249979,0,0);-webkit-transform:matrix(3.943617,-0.051267,0.003250,0.249979,0,0);}
.v0_c00214{vertical-align:0.000000px;}
.ls0_c00214{letter-spacing:0.000000px;}
.sc__c00214{text-shadow:none;}
.sc0_c00214{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__c00214{-webkit-text-stroke:0px transparent;}
.sc0_c00214{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00214{word-spacing:0.000000px;}
._0_c00214{width:228.342854px;}
.fc0_c00214{color:transparent;}
.fs7_c00214{font-size:18.000000px;}
.fs3_c00214{font-size:18.000225px;}
.fs1_c00214{font-size:18.001521px;}
.fs6_c00214{font-size:24.000000px;}
.fs4_c00214{font-size:30.000000px;}
.fs0_c00214{font-size:30.002535px;}
.fsd_c00214{font-size:36.000000px;}
.fse_c00214{font-size:60.000000px;}
.fsc_c00214{font-size:72.010403px;}
.fs9_c00214{font-size:72.015874px;}
.fsb_c00214{font-size:84.007098px;}
.fs5_c00214{font-size:90.000000px;}
.fs8_c00214{font-size:96.021166px;}
.fsa_c00214{font-size:102.004131px;}
.fs2_c00214{font-size:138.001725px;}
.y0_c00214{bottom:0.000000px;}
.y7a_c00214{bottom:194.130000px;}
.y79_c00214{bottom:243.000000px;}
.y78_c00214{bottom:255.420000px;}
.y77_c00214{bottom:267.300000px;}
.y76_c00214{bottom:278.503500px;}
.y75_c00214{bottom:282.690000px;}
.y74_c00214{bottom:291.060000px;}
.y73_c00214{bottom:310.500000px;}
.y67_c00214{bottom:358.081500px;}
.y68_c00214{bottom:359.778704px;}
.y69_c00214{bottom:360.490460px;}
.y6a_c00214{bottom:361.290930px;}
.y6b_c00214{bottom:362.688967px;}
.y6c_c00214{bottom:364.367582px;}
.y6d_c00214{bottom:366.116117px;}
.y6e_c00214{bottom:366.672985px;}
.y6f_c00214{bottom:368.543053px;}
.y70_c00214{bottom:369.050657px;}
.y71_c00214{bottom:370.406135px;}
.y62_c00214{bottom:393.930000px;}
.y63_c00214{bottom:395.898720px;}
.y64_c00214{bottom:396.457805px;}
.y65_c00214{bottom:397.369878px;}
.y66_c00214{bottom:399.887016px;}
.y72_c00214{bottom:446.580000px;}
.y5a_c00214{bottom:462.241500px;}
.y5b_c00214{bottom:463.146931px;}
.y5c_c00214{bottom:463.583306px;}
.y5d_c00214{bottom:465.498348px;}
.y5e_c00214{bottom:466.251621px;}
.y5f_c00214{bottom:467.074770px;}
.y60_c00214{bottom:467.532177px;}
.y61_c00214{bottom:467.981714px;}
.y52_c00214{bottom:497.321737px;}
.y53_c00214{bottom:498.025960px;}
.y54_c00214{bottom:499.346058px;}
.y55_c00214{bottom:500.165724px;}
.y56_c00214{bottom:501.175935px;}
.y57_c00214{bottom:502.521438px;}
.y58_c00214{bottom:503.226449px;}
.y59_c00214{bottom:504.759862px;}
.y4a_c00214{bottom:533.257500px;}
.y4b_c00214{bottom:535.246441px;}
.y4c_c00214{bottom:535.931157px;}
.y4d_c00214{bottom:538.924602px;}
.y4e_c00214{bottom:539.729931px;}
.y4f_c00214{bottom:541.935561px;}
.y50_c00214{bottom:542.721203px;}
.y51_c00214{bottom:544.142199px;}
.y47_c00214{bottom:548.509500px;}
.y49_c00214{bottom:559.710000px;}
.y44_c00214{bottom:570.786000px;}
.y48_c00214{bottom:571.312500px;}
.y45_c00214{bottom:573.355500px;}
.y46_c00214{bottom:576.984000px;}
.y43_c00214{bottom:589.719000px;}
.y36_c00214{bottom:598.861500px;}
.y37_c00214{bottom:600.607062px;}
.y38_c00214{bottom:602.393418px;}
.y39_c00214{bottom:602.809158px;}
.y3a_c00214{bottom:603.252666px;}
.y3b_c00214{bottom:603.574923px;}
.y3c_c00214{bottom:605.667760px;}
.y3d_c00214{bottom:606.317013px;}
.y3e_c00214{bottom:607.044304px;}
.y3f_c00214{bottom:607.911196px;}
.y40_c00214{bottom:608.573475px;}
.y41_c00214{bottom:608.711905px;}
.y42_c00214{bottom:609.064933px;}
.y2a_c00214{bottom:615.060623px;}
.y2b_c00214{bottom:617.493353px;}
.y2c_c00214{bottom:617.871030px;}
.y2d_c00214{bottom:618.662692px;}
.y2e_c00214{bottom:619.788082px;}
.y2f_c00214{bottom:619.836555px;}
.y30_c00214{bottom:620.935282px;}
.y31_c00214{bottom:621.639698px;}
.y32_c00214{bottom:622.110450px;}
.y33_c00214{bottom:622.523895px;}
.y34_c00214{bottom:622.647532px;}
.y35_c00214{bottom:622.830803px;}
.y23_c00214{bottom:635.290500px;}
.y24_c00214{bottom:635.510985px;}
.y25_c00214{bottom:635.999805px;}
.y26_c00214{bottom:636.631597px;}
.y27_c00214{bottom:637.300657px;}
.y28_c00214{bottom:637.816320px;}
.y29_c00214{bottom:638.495467px;}
.y14_c00214{bottom:660.960711px;}
.y15_c00214{bottom:661.125028px;}
.y16_c00214{bottom:664.926211px;}
.y17_c00214{bottom:665.237193px;}
.y18_c00214{bottom:665.529819px;}
.y19_c00214{bottom:665.992282px;}
.y1a_c00214{bottom:666.760482px;}
.y1b_c00214{bottom:667.212393px;}
.y1c_c00214{bottom:667.353225px;}
.y1d_c00214{bottom:667.490604px;}
.y1e_c00214{bottom:667.798836px;}
.y1f_c00214{bottom:668.246457px;}
.y20_c00214{bottom:668.521997px;}
.y21_c00214{bottom:668.696613px;}
.y22_c00214{bottom:669.118251px;}
.y1_c00214{bottom:671.748000px;}
.y2_c00214{bottom:673.724520px;}
.y3_c00214{bottom:674.493093px;}
.y4_c00214{bottom:674.580745px;}
.y5_c00214{bottom:675.704121px;}
.y6_c00214{bottom:675.882975px;}
.y7_c00214{bottom:677.427336px;}
.y8_c00214{bottom:678.382017px;}
.y9_c00214{bottom:678.774883px;}
.ya_c00214{bottom:679.027818px;}
.yb_c00214{bottom:679.220166px;}
.yc_c00214{bottom:679.581891px;}
.yd_c00214{bottom:679.841923px;}
.ye_c00214{bottom:681.196764px;}
.yf_c00214{bottom:681.291573px;}
.y10_c00214{bottom:681.538989px;}
.y11_c00214{bottom:681.772267px;}
.y12_c00214{bottom:681.967170px;}
.y13_c00214{bottom:682.256647px;}
.h9_c00214{height:18.000000px;}
.h4_c00214{height:18.000225px;}
.h2_c00214{height:18.001521px;}
.h5_c00214{height:18.372230px;}
.h8_c00214{height:24.000000px;}
.h6_c00214{height:30.000000px;}
.h1_c00214{height:30.002535px;}
.hf_c00214{height:36.000000px;}
.h10_c00214{height:60.000000px;}
.he_c00214{height:72.010403px;}
.hb_c00214{height:72.015874px;}
.hd_c00214{height:84.007098px;}
.h7_c00214{height:90.000000px;}
.ha_c00214{height:96.021166px;}
.hc_c00214{height:102.004131px;}
.h3_c00214{height:138.001725px;}
.h0_c00214{height:682.500000px;}
.w0_c00214{width:941.700000px;}
.w1_c00214{width:942.000000px;}
.x0_c00214{left:0.000000px;}
.x1_c00214{left:1.438500px;}
.x14_c00214{left:3.826115px;}
.x23_c00214{left:4.920000px;}
.x2a_c00214{left:6.045675px;}
.x15_c00214{left:20.274258px;}
.x4b_c00214{left:34.951500px;}
.x58_c00214{left:39.862500px;}
.x24_c00214{left:49.017000px;}
.x60_c00214{left:57.720000px;}
.x4c_c00214{left:129.663000px;}
.x36_c00214{left:140.575500px;}
.x25_c00214{left:146.781000px;}
.x48_c00214{left:148.770000px;}
.x4a_c00214{left:150.390000px;}
.x51_c00214{left:151.744802px;}
.x2_c00214{left:153.478500px;}
.x5d_c00214{left:158.421000px;}
.x4d_c00214{left:162.268500px;}
.x49_c00214{left:170.910000px;}
.x59_c00214{left:188.952000px;}
.x52_c00214{left:193.211298px;}
.x61_c00214{left:199.423500px;}
.x5e_c00214{left:201.427500px;}
.x45_c00214{left:211.474500px;}
.x3_c00214{left:212.599500px;}
.x4_c00214{left:219.342000px;}
.x62_c00214{left:246.510000px;}
.x2b_c00214{left:249.285592px;}
.x53_c00214{left:270.865319px;}
.x26_c00214{left:273.139500px;}
.x41_c00214{left:275.400000px;}
.x37_c00214{left:277.987500px;}
.x2c_c00214{left:287.020147px;}
.x5_c00214{left:305.755500px;}
.x38_c00214{left:309.967500px;}
.x6_c00214{left:319.513500px;}
.x63_c00214{left:328.747500px;}
.x39_c00214{left:344.083500px;}
.x42_c00214{left:351.270000px;}
.x46_c00214{left:362.631000px;}
.x2d_c00214{left:366.150667px;}
.x3a_c00214{left:368.872500px;}
.x54_c00214{left:378.511359px;}
.x16_c00214{left:400.380078px;}
.x5a_c00214{left:401.734500px;}
.x27_c00214{left:406.951500px;}
.x64_c00214{left:427.489500px;}
.x17_c00214{left:431.456787px;}
.x7_c00214{left:438.310500px;}
.x4e_c00214{left:448.192500px;}
.x55_c00214{left:457.661006px;}
.x18_c00214{left:460.659918px;}
.x5f_c00214{left:465.213000px;}
.x2e_c00214{left:478.725855px;}
.x2f_c00214{left:483.620235px;}
.x4f_c00214{left:485.604000px;}
.x56_c00214{left:499.165002px;}
.x19_c00214{left:506.851212px;}
.x28_c00214{left:510.084000px;}
.x8_c00214{left:511.747500px;}
.x47_c00214{left:522.720000px;}
.x3b_c00214{left:529.860000px;}
.x43_c00214{left:539.190000px;}
.x9_c00214{left:541.968000px;}
.x50_c00214{left:553.270500px;}
.xa_c00214{left:561.424500px;}
.x65_c00214{left:563.101500px;}
.xb_c00214{left:576.220500px;}
.x3c_c00214{left:579.802500px;}
.x1a_c00214{left:583.715715px;}
.x57_c00214{left:589.406594px;}
.x30_c00214{left:593.562990px;}
.xc_c00214{left:604.045500px;}
.xd_c00214{left:624.048000px;}
.x5b_c00214{left:627.715500px;}
.x1b_c00214{left:628.864470px;}
.x3d_c00214{left:635.748000px;}
.x1c_c00214{left:642.929016px;}
.x29_c00214{left:645.913500px;}
.x44_c00214{left:649.890000px;}
.x1d_c00214{left:656.612543px;}
.x31_c00214{left:663.944227px;}
.x66_c00214{left:673.105500px;}
.x5c_c00214{left:677.664000px;}
.x1e_c00214{left:687.477752px;}
.x3e_c00214{left:702.432000px;}
.x32_c00214{left:710.993550px;}
.xe_c00214{left:728.266500px;}
.x1f_c00214{left:732.296507px;}
.xf_c00214{left:735.559500px;}
.x33_c00214{left:752.281515px;}
.x3f_c00214{left:753.376500px;}
.x10_c00214{left:754.591500px;}
.x20_c00214{left:759.839079px;}
.x34_c00214{left:764.708707px;}
.x11_c00214{left:772.536000px;}
.x21_c00214{left:777.310261px;}
.x35_c00214{left:783.062250px;}
.x12_c00214{left:787.528500px;}
.x40_c00214{left:791.181000px;}
.x13_c00214{left:809.796000px;}
.x22_c00214{left:819.437899px;}
@media print{
.v0_c00214{vertical-align:0.000000pt;}
.ls0_c00214{letter-spacing:0.000000pt;}
.ws0_c00214{word-spacing:0.000000pt;}
._0_c00214{width:202.971426pt;}
.fs7_c00214{font-size:16.000000pt;}
.fs3_c00214{font-size:16.000200pt;}
.fs1_c00214{font-size:16.001352pt;}
.fs6_c00214{font-size:21.333333pt;}
.fs4_c00214{font-size:26.666667pt;}
.fs0_c00214{font-size:26.668920pt;}
.fsd_c00214{font-size:32.000000pt;}
.fse_c00214{font-size:53.333333pt;}
.fsc_c00214{font-size:64.009247pt;}
.fs9_c00214{font-size:64.014110pt;}
.fsb_c00214{font-size:74.672976pt;}
.fs5_c00214{font-size:80.000000pt;}
.fs8_c00214{font-size:85.352147pt;}
.fsa_c00214{font-size:90.670339pt;}
.fs2_c00214{font-size:122.668200pt;}
.y0_c00214{bottom:0.000000pt;}
.y7a_c00214{bottom:172.560000pt;}
.y79_c00214{bottom:216.000000pt;}
.y78_c00214{bottom:227.040000pt;}
.y77_c00214{bottom:237.600000pt;}
.y76_c00214{bottom:247.558667pt;}
.y75_c00214{bottom:251.280000pt;}
.y74_c00214{bottom:258.720000pt;}
.y73_c00214{bottom:276.000000pt;}
.y67_c00214{bottom:318.294667pt;}
.y68_c00214{bottom:319.803292pt;}
.y69_c00214{bottom:320.435964pt;}
.y6a_c00214{bottom:321.147493pt;}
.y6b_c00214{bottom:322.390193pt;}
.y6c_c00214{bottom:323.882295pt;}
.y6d_c00214{bottom:325.436548pt;}
.y6e_c00214{bottom:325.931543pt;}
.y6f_c00214{bottom:327.593825pt;}
.y70_c00214{bottom:328.045028pt;}
.y71_c00214{bottom:329.249897pt;}
.y62_c00214{bottom:350.160000pt;}
.y63_c00214{bottom:351.909973pt;}
.y64_c00214{bottom:352.406937pt;}
.y65_c00214{bottom:353.217669pt;}
.y66_c00214{bottom:355.455125pt;}
.y72_c00214{bottom:396.960000pt;}
.y5a_c00214{bottom:410.881333pt;}
.y5b_c00214{bottom:411.686161pt;}
.y5c_c00214{bottom:412.074049pt;}
.y5d_c00214{bottom:413.776309pt;}
.y5e_c00214{bottom:414.445885pt;}
.y5f_c00214{bottom:415.177573pt;}
.y60_c00214{bottom:415.584157pt;}
.y61_c00214{bottom:415.983745pt;}
.y52_c00214{bottom:442.063767pt;}
.y53_c00214{bottom:442.689743pt;}
.y54_c00214{bottom:443.863163pt;}
.y55_c00214{bottom:444.591755pt;}
.y56_c00214{bottom:445.489720pt;}
.y57_c00214{bottom:446.685723pt;}
.y58_c00214{bottom:447.312399pt;}
.y59_c00214{bottom:448.675433pt;}
.y4a_c00214{bottom:474.006667pt;}
.y4b_c00214{bottom:475.774615pt;}
.y4c_c00214{bottom:476.383251pt;}
.y4d_c00214{bottom:479.044091pt;}
.y4e_c00214{bottom:479.759939pt;}
.y4f_c00214{bottom:481.720499pt;}
.y50_c00214{bottom:482.418847pt;}
.y51_c00214{bottom:483.681955pt;}
.y47_c00214{bottom:487.564000pt;}
.y49_c00214{bottom:497.520000pt;}
.y44_c00214{bottom:507.365333pt;}
.y48_c00214{bottom:507.833333pt;}
.y45_c00214{bottom:509.649333pt;}
.y46_c00214{bottom:512.874667pt;}
.y43_c00214{bottom:524.194667pt;}
.y36_c00214{bottom:532.321333pt;}
.y37_c00214{bottom:533.872944pt;}
.y38_c00214{bottom:535.460816pt;}
.y39_c00214{bottom:535.830363pt;}
.y3a_c00214{bottom:536.224592pt;}
.y3b_c00214{bottom:536.511043pt;}
.y3c_c00214{bottom:538.371343pt;}
.y3d_c00214{bottom:538.948456pt;}
.y3e_c00214{bottom:539.594937pt;}
.y3f_c00214{bottom:540.365508pt;}
.y40_c00214{bottom:540.954200pt;}
.y41_c00214{bottom:541.077249pt;}
.y42_c00214{bottom:541.391052pt;}
.y2a_c00214{bottom:546.720553pt;}
.y2b_c00214{bottom:548.882980pt;}
.y2c_c00214{bottom:549.218693pt;}
.y2d_c00214{bottom:549.922393pt;}
.y2e_c00214{bottom:550.922740pt;}
.y2f_c00214{bottom:550.965827pt;}
.y30_c00214{bottom:551.942473pt;}
.y31_c00214{bottom:552.568620pt;}
.y32_c00214{bottom:552.987067pt;}
.y33_c00214{bottom:553.354573pt;}
.y34_c00214{bottom:553.464473pt;}
.y35_c00214{bottom:553.627380pt;}
.y23_c00214{bottom:564.702667pt;}
.y24_c00214{bottom:564.898653pt;}
.y25_c00214{bottom:565.333160pt;}
.y26_c00214{bottom:565.894753pt;}
.y27_c00214{bottom:566.489473pt;}
.y28_c00214{bottom:566.947840pt;}
.y29_c00214{bottom:567.551527pt;}
.y14_c00214{bottom:587.520632pt;}
.y15_c00214{bottom:587.666692pt;}
.y16_c00214{bottom:591.045521pt;}
.y17_c00214{bottom:591.321949pt;}
.y18_c00214{bottom:591.582061pt;}
.y19_c00214{bottom:591.993140pt;}
.y1a_c00214{bottom:592.675984pt;}
.y1b_c00214{bottom:593.077683pt;}
.y1c_c00214{bottom:593.202867pt;}
.y1d_c00214{bottom:593.324981pt;}
.y1e_c00214{bottom:593.598965pt;}
.y1f_c00214{bottom:593.996851pt;}
.y20_c00214{bottom:594.241775pt;}
.y21_c00214{bottom:594.396989pt;}
.y22_c00214{bottom:594.771779pt;}
.y1_c00214{bottom:597.109333pt;}
.y2_c00214{bottom:598.866240pt;}
.y3_c00214{bottom:599.549416pt;}
.y4_c00214{bottom:599.627329pt;}
.y5_c00214{bottom:600.625885pt;}
.y6_c00214{bottom:600.784867pt;}
.y7_c00214{bottom:602.157632pt;}
.y8_c00214{bottom:603.006237pt;}
.y9_c00214{bottom:603.355452pt;}
.ya_c00214{bottom:603.580283pt;}
.yb_c00214{bottom:603.751259pt;}
.yc_c00214{bottom:604.072792pt;}
.yd_c00214{bottom:604.303932pt;}
.ye_c00214{bottom:605.508235pt;}
.yf_c00214{bottom:605.592509pt;}
.y10_c00214{bottom:605.812435pt;}
.y11_c00214{bottom:606.019793pt;}
.y12_c00214{bottom:606.193040pt;}
.y13_c00214{bottom:606.450353pt;}
.h9_c00214{height:16.000000pt;}
.h4_c00214{height:16.000200pt;}
.h2_c00214{height:16.001352pt;}
.h5_c00214{height:16.330871pt;}
.h8_c00214{height:21.333333pt;}
.h6_c00214{height:26.666667pt;}
.h1_c00214{height:26.668920pt;}
.hf_c00214{height:32.000000pt;}
.h10_c00214{height:53.333333pt;}
.he_c00214{height:64.009247pt;}
.hb_c00214{height:64.014110pt;}
.hd_c00214{height:74.672976pt;}
.h7_c00214{height:80.000000pt;}
.ha_c00214{height:85.352147pt;}
.hc_c00214{height:90.670339pt;}
.h3_c00214{height:122.668200pt;}
.h0_c00214{height:606.666667pt;}
.w0_c00214{width:837.066667pt;}
.w1_c00214{width:837.333333pt;}
.x0_c00214{left:0.000000pt;}
.x1_c00214{left:1.278667pt;}
.x14_c00214{left:3.400991pt;}
.x23_c00214{left:4.373333pt;}
.x2a_c00214{left:5.373933pt;}
.x15_c00214{left:18.021563pt;}
.x4b_c00214{left:31.068000pt;}
.x58_c00214{left:35.433333pt;}
.x24_c00214{left:43.570667pt;}
.x60_c00214{left:51.306667pt;}
.x4c_c00214{left:115.256000pt;}
.x36_c00214{left:124.956000pt;}
.x25_c00214{left:130.472000pt;}
.x48_c00214{left:132.240000pt;}
.x4a_c00214{left:133.680000pt;}
.x51_c00214{left:134.884268pt;}
.x2_c00214{left:136.425333pt;}
.x5d_c00214{left:140.818667pt;}
.x4d_c00214{left:144.238667pt;}
.x49_c00214{left:151.920000pt;}
.x59_c00214{left:167.957333pt;}
.x52_c00214{left:171.743376pt;}
.x61_c00214{left:177.265333pt;}
.x5e_c00214{left:179.046667pt;}
.x45_c00214{left:187.977333pt;}
.x3_c00214{left:188.977333pt;}
.x4_c00214{left:194.970667pt;}
.x62_c00214{left:219.120000pt;}
.x2b_c00214{left:221.587193pt;}
.x53_c00214{left:240.769172pt;}
.x26_c00214{left:242.790667pt;}
.x41_c00214{left:244.800000pt;}
.x37_c00214{left:247.100000pt;}
.x2c_c00214{left:255.129020pt;}
.x5_c00214{left:271.782667pt;}
.x38_c00214{left:275.526667pt;}
.x6_c00214{left:284.012000pt;}
.x63_c00214{left:292.220000pt;}
.x39_c00214{left:305.852000pt;}
.x42_c00214{left:312.240000pt;}
.x46_c00214{left:322.338667pt;}
.x2d_c00214{left:325.467260pt;}
.x3a_c00214{left:327.886667pt;}
.x54_c00214{left:336.454541pt;}
.x16_c00214{left:355.893403pt;}
.x5a_c00214{left:357.097333pt;}
.x27_c00214{left:361.734667pt;}
.x64_c00214{left:379.990667pt;}
.x17_c00214{left:383.517144pt;}
.x7_c00214{left:389.609333pt;}
.x4e_c00214{left:398.393333pt;}
.x55_c00214{left:406.809783pt;}
.x18_c00214{left:409.475483pt;}
.x5f_c00214{left:413.522667pt;}
.x2e_c00214{left:425.534093pt;}
.x2f_c00214{left:429.884653pt;}
.x4f_c00214{left:431.648000pt;}
.x56_c00214{left:443.702224pt;}
.x19_c00214{left:450.534411pt;}
.x28_c00214{left:453.408000pt;}
.x8_c00214{left:454.886667pt;}
.x47_c00214{left:464.640000pt;}
.x3b_c00214{left:470.986667pt;}
.x43_c00214{left:479.280000pt;}
.x9_c00214{left:481.749333pt;}
.x50_c00214{left:491.796000pt;}
.xa_c00214{left:499.044000pt;}
.x65_c00214{left:500.534667pt;}
.xb_c00214{left:512.196000pt;}
.x3c_c00214{left:515.380000pt;}
.x1a_c00214{left:518.858413pt;}
.x57_c00214{left:523.916972pt;}
.x30_c00214{left:527.611547pt;}
.xc_c00214{left:536.929333pt;}
.xd_c00214{left:554.709333pt;}
.x5b_c00214{left:557.969333pt;}
.x1b_c00214{left:558.990640pt;}
.x3d_c00214{left:565.109333pt;}
.x1c_c00214{left:571.492459pt;}
.x29_c00214{left:574.145333pt;}
.x44_c00214{left:577.680000pt;}
.x1d_c00214{left:583.655593pt;}
.x31_c00214{left:590.172647pt;}
.x66_c00214{left:598.316000pt;}
.x5c_c00214{left:602.368000pt;}
.x1e_c00214{left:611.091335pt;}
.x3e_c00214{left:624.384000pt;}
.x32_c00214{left:631.994267pt;}
.xe_c00214{left:647.348000pt;}
.x1f_c00214{left:650.930228pt;}
.xf_c00214{left:653.830667pt;}
.x33_c00214{left:668.694680pt;}
.x3f_c00214{left:669.668000pt;}
.x10_c00214{left:670.748000pt;}
.x20_c00214{left:675.412515pt;}
.x34_c00214{left:679.741073pt;}
.x11_c00214{left:686.698667pt;}
.x21_c00214{left:690.942455pt;}
.x35_c00214{left:696.055333pt;}
.x12_c00214{left:700.025333pt;}
.x40_c00214{left:703.272000pt;}
.x13_c00214{left:719.818667pt;}
.x22_c00214{left:728.389244pt;}
}





/* 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_c00215 {
    display:none;
  }
  .loading-indicator_c00215.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00215 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_c00215 { 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_c00215" -> "#page-container .classname_c00215")
 */
.pf_c00215 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00215 { /* 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_c00215.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00215 { /* 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_c00215 { /* 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_c00215 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00215 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00215 {overflow:visible;}
  }
}
.c_c00215 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00215 { /* 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_c00215:after { /* webkit #35443 */
  content: '';
}
.t_c00215:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00215 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 */
}
.__c00215 { /* 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_c00215 { /* info for Javascript */
  display:none;
}
.l_c00215 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00215 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00215 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00215: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_c00215 {
    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_c00215.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00215.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_c00215 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00215{font-family:sans-serif;visibility:hidden;}
.sc__c00215{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00215{-webkit-text-stroke:0px transparent;}
}
.y0_c00215{bottom:0.000000px;}
.h0_c00215{height:682.500000px;}
.w0_c00215{width:941.700000px;}
.w1_c00215{width:942.000000px;}
.x0_c00215{left:0.000000px;}
@media print{
.y0_c00215{bottom:0.000000pt;}
.h0_c00215{height:606.666667pt;}
.w0_c00215{width:837.066667pt;}
.w1_c00215{width:837.333333pt;}
.x0_c00215{left:0.000000pt;}
}





/* 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_c00216 {
    display:none;
  }
  .loading-indicator_c00216.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00216 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_c00216 { 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_c00216" -> "#page-container .classname_c00216")
 */
.pf_c00216 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00216 { /* 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_c00216.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00216 { /* 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_c00216 { /* 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_c00216 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00216 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00216 {overflow:visible;}
  }
}
.c_c00216 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00216 { /* 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_c00216:after { /* webkit #35443 */
  content: '';
}
.t_c00216:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00216 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 */
}
.__c00216 { /* 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_c00216 { /* info for Javascript */
  display:none;
}
.l_c00216 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00216 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00216 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00216: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_c00216 {
    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_c00216.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00216.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_c00216 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00216{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00216;src:url('chunks/assets/font_b11a17f404e7258299fdf971.woff2')format("woff");}.ff1_c00216{font-family:ff1_c00216;line-height:1.000000;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;}
.m10_c00216{transform:matrix(0.010130,0.000446,-0.011000,0.249758,0,0);-ms-transform:matrix(0.010130,0.000446,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.010130,0.000446,-0.011000,0.249758,0,0);}
.mc_c00216{transform:matrix(0.011918,0.000525,-0.011000,0.249758,0,0);-ms-transform:matrix(0.011918,0.000525,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.011918,0.000525,-0.011000,0.249758,0,0);}
.md_c00216{transform:matrix(0.107691,0.004743,-0.011000,0.249758,0,0);-ms-transform:matrix(0.107691,0.004743,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.107691,0.004743,-0.011000,0.249758,0,0);}
.m8_c00216{transform:matrix(0.194367,0.008561,-0.011000,0.249758,0,0);-ms-transform:matrix(0.194367,0.008561,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.194367,0.008561,-0.011000,0.249758,0,0);}
.m7_c00216{transform:matrix(0.201050,0.008855,-0.011000,0.249758,0,0);-ms-transform:matrix(0.201050,0.008855,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.201050,0.008855,-0.011000,0.249758,0,0);}
.ma_c00216{transform:matrix(0.261092,0.011500,-0.011000,0.249758,0,0);-ms-transform:matrix(0.261092,0.011500,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.261092,0.011500,-0.011000,0.249758,0,0);}
.m0_c00216{transform:matrix(0.271015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271015,0.000000,0.000000,0.250000,0,0);}
.m6_c00216{transform:matrix(0.273525,0.012047,-0.011000,0.249758,0,0);-ms-transform:matrix(0.273525,0.012047,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.273525,0.012047,-0.011000,0.249758,0,0);}
.me_c00216{transform:matrix(0.274644,0.012096,-0.011000,0.249758,0,0);-ms-transform:matrix(0.274644,0.012096,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.274644,0.012096,-0.011000,0.249758,0,0);}
.mf_c00216{transform:matrix(0.340005,0.014975,-0.011000,0.249758,0,0);-ms-transform:matrix(0.340005,0.014975,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.340005,0.014975,-0.011000,0.249758,0,0);}
.mb_c00216{transform:matrix(0.340635,0.015003,-0.011000,0.249758,0,0);-ms-transform:matrix(0.340635,0.015003,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.340635,0.015003,-0.011000,0.249758,0,0);}
.m5_c00216{transform:matrix(0.345700,0.015226,-0.011000,0.249758,0,0);-ms-transform:matrix(0.345700,0.015226,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.345700,0.015226,-0.011000,0.249758,0,0);}
.m9_c00216{transform:matrix(0.359981,0.015855,-0.011000,0.249758,0,0);-ms-transform:matrix(0.359981,0.015855,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.359981,0.015855,-0.011000,0.249758,0,0);}
.m3_c00216{transform:matrix(0.375831,0.016553,-0.011000,0.249758,0,0);-ms-transform:matrix(0.375831,0.016553,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.375831,0.016553,-0.011000,0.249758,0,0);}
.m1_c00216{transform:matrix(0.380555,0.023260,-0.015252,0.249534,0,0);-ms-transform:matrix(0.380555,0.023260,-0.015252,0.249534,0,0);-webkit-transform:matrix(0.380555,0.023260,-0.015252,0.249534,0,0);}
.m4_c00216{transform:matrix(0.435917,0.019200,-0.011000,0.249758,0,0);-ms-transform:matrix(0.435917,0.019200,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.435917,0.019200,-0.011000,0.249758,0,0);}
.m2_c00216{transform:matrix(1.096872,0.048311,-0.011000,0.249758,0,0);-ms-transform:matrix(1.096872,0.048311,-0.011000,0.249758,0,0);-webkit-transform:matrix(1.096872,0.048311,-0.011000,0.249758,0,0);}
.v0_c00216{vertical-align:0.000000px;}
.ls0_c00216{letter-spacing:0.000000px;}
.sc__c00216{text-shadow:none;}
.sc0_c00216{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__c00216{-webkit-text-stroke:0px transparent;}
.sc0_c00216{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00216{word-spacing:0.000000px;}
.fc0_c00216{color:transparent;}
.fs0_c00216{font-size:36.000000px;}
.fs1_c00216{font-size:89.987624px;}
.fs3_c00216{font-size:95.996976px;}
.fs2_c00216{font-size:101.996787px;}
.y0_c00216{bottom:0.000000px;}
.y12_c00216{bottom:226.969608px;}
.y11_c00216{bottom:231.276571px;}
.y10_c00216{bottom:245.101060px;}
.yf_c00216{bottom:250.154934px;}
.ye_c00216{bottom:254.446861px;}
.yc_c00216{bottom:258.000132px;}
.yb_c00216{bottom:263.455362px;}
.ya_c00216{bottom:264.810078px;}
.y9_c00216{bottom:265.691046px;}
.y8_c00216{bottom:267.208650px;}
.y7_c00216{bottom:273.560292px;}
.yd_c00216{bottom:275.067486px;}
.y6_c00216{bottom:279.039348px;}
.y5_c00216{bottom:280.772376px;}
.y4_c00216{bottom:281.843556px;}
.y3_c00216{bottom:289.762500px;}
.y1_c00216{bottom:319.273500px;}
.y2_c00216{bottom:328.936500px;}
.h1_c00216{height:36.000000px;}
.h2_c00216{height:89.987624px;}
.h4_c00216{height:95.996976px;}
.h3_c00216{height:101.996787px;}
.h0_c00216{height:682.500000px;}
.w0_c00216{width:941.700000px;}
.w1_c00216{width:942.000000px;}
.x0_c00216{left:0.000000px;}
.x3_c00216{left:144.861000px;}
.x2_c00216{left:152.653500px;}
.xd_c00216{left:192.568083px;}
.x1_c00216{left:291.330000px;}
.x4_c00216{left:324.657024px;}
.x5_c00216{left:348.977679px;}
.x6_c00216{left:388.325292px;}
.xe_c00216{left:491.226579px;}
.x7_c00216{left:512.724768px;}
.xf_c00216{left:553.390974px;}
.x10_c00216{left:626.582675px;}
.x8_c00216{left:656.935913px;}
.x9_c00216{left:691.392422px;}
.xa_c00216{left:711.394400px;}
.xb_c00216{left:742.152611px;}
.x11_c00216{left:826.809483px;}
.xc_c00216{left:866.011128px;}
.x12_c00216{left:889.178908px;}
@media print{
.v0_c00216{vertical-align:0.000000pt;}
.ls0_c00216{letter-spacing:0.000000pt;}
.ws0_c00216{word-spacing:0.000000pt;}
.fs0_c00216{font-size:32.000000pt;}
.fs1_c00216{font-size:79.988999pt;}
.fs3_c00216{font-size:85.330645pt;}
.fs2_c00216{font-size:90.663811pt;}
.y0_c00216{bottom:0.000000pt;}
.y12_c00216{bottom:201.750763pt;}
.y11_c00216{bottom:205.579175pt;}
.y10_c00216{bottom:217.867609pt;}
.yf_c00216{bottom:222.359941pt;}
.ye_c00216{bottom:226.174988pt;}
.yc_c00216{bottom:229.333451pt;}
.yb_c00216{bottom:234.182544pt;}
.ya_c00216{bottom:235.386736pt;}
.y9_c00216{bottom:236.169819pt;}
.y8_c00216{bottom:237.518800pt;}
.y7_c00216{bottom:243.164704pt;}
.yd_c00216{bottom:244.504432pt;}
.y6_c00216{bottom:248.034976pt;}
.y5_c00216{bottom:249.575445pt;}
.y4_c00216{bottom:250.527605pt;}
.y3_c00216{bottom:257.566667pt;}
.y1_c00216{bottom:283.798667pt;}
.y2_c00216{bottom:292.388000pt;}
.h1_c00216{height:32.000000pt;}
.h2_c00216{height:79.988999pt;}
.h4_c00216{height:85.330645pt;}
.h3_c00216{height:90.663811pt;}
.h0_c00216{height:606.666667pt;}
.w0_c00216{width:837.066667pt;}
.w1_c00216{width:837.333333pt;}
.x0_c00216{left:0.000000pt;}
.x3_c00216{left:128.765333pt;}
.x2_c00216{left:135.692000pt;}
.xd_c00216{left:171.171629pt;}
.x1_c00216{left:258.960000pt;}
.x4_c00216{left:288.584021pt;}
.x5_c00216{left:310.202381pt;}
.x6_c00216{left:345.178037pt;}
.xe_c00216{left:436.645848pt;}
.x7_c00216{left:455.755349pt;}
.xf_c00216{left:491.903088pt;}
.x10_c00216{left:556.962377pt;}
.x8_c00216{left:583.943033pt;}
.x9_c00216{left:614.571041pt;}
.xa_c00216{left:632.350577pt;}
.xb_c00216{left:659.691209pt;}
.x11_c00216{left:734.941763pt;}
.xc_c00216{left:769.787669pt;}
.x12_c00216{left:790.381252pt;}
}





/* 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_c00217 {
    display:none;
  }
  .loading-indicator_c00217.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00217 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_c00217 { 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_c00217" -> "#page-container .classname_c00217")
 */
.pf_c00217 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00217 { /* 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_c00217.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00217 { /* 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_c00217 { /* 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_c00217 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00217 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00217 {overflow:visible;}
  }
}
.c_c00217 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00217 { /* 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_c00217:after { /* webkit #35443 */
  content: '';
}
.t_c00217:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00217 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 */
}
.__c00217 { /* 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_c00217 { /* info for Javascript */
  display:none;
}
.l_c00217 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00217 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00217 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00217: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_c00217 {
    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_c00217.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00217.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_c00217 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00217{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00217;src:url('chunks/assets/font_b7b4774e48f67cd51473f593.woff2')format("woff");}.ff1_c00217{font-family:ff1_c00217;line-height:1.000000;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;}
.m7_c00217{transform:matrix(0.200125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200125,0.000000,0.000000,0.250000,0,0);}
.m4_c00217{transform:matrix(0.335160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335160,0.000000,0.000000,0.250000,0,0);}
.m3_c00217{transform:matrix(0.496815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.496815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.496815,0.000000,0.000000,0.250000,0,0);}
.m2_c00217{transform:matrix(0.584230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.584230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.584230,0.000000,0.000000,0.250000,0,0);}
.m1_c00217{transform:matrix(0.681800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.681800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.681800,0.000000,0.000000,0.250000,0,0);}
.m0_c00217{transform:matrix(0.919415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.919415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.919415,0.000000,0.000000,0.250000,0,0);}
.m5_c00217{transform:matrix(1.149825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.149825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.149825,0.000000,0.000000,0.250000,0,0);}
.m6_c00217{transform:matrix(1.276635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.276635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.276635,0.000000,0.000000,0.250000,0,0);}
.v0_c00217{vertical-align:0.000000px;}
.ls0_c00217{letter-spacing:0.000000px;}
.sc__c00217{text-shadow:none;}
.sc0_c00217{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__c00217{-webkit-text-stroke:0px transparent;}
.sc0_c00217{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00217{word-spacing:0.000000px;}
._0_c00217{margin-left:-53.078076px;}
.fc0_c00217{color:transparent;}
.fs0_c00217{font-size:18.000000px;}
.y0_c00217{bottom:0.000000px;}
.y2_c00217{bottom:11.335500px;}
.y1_c00217{bottom:547.560000px;}
.h1_c00217{height:18.000000px;}
.h0_c00217{height:682.500000px;}
.w0_c00217{width:941.700000px;}
.w1_c00217{width:942.000000px;}
.x0_c00217{left:0.000000px;}
.x1_c00217{left:9.450000px;}
.x2_c00217{left:11.070000px;}
.x3_c00217{left:41.310000px;}
.x4_c00217{left:586.170000px;}
@media print{
.v0_c00217{vertical-align:0.000000pt;}
.ls0_c00217{letter-spacing:0.000000pt;}
.ws0_c00217{word-spacing:0.000000pt;}
._0_c00217{margin-left:-47.180512pt;}
.fs0_c00217{font-size:16.000000pt;}
.y0_c00217{bottom:0.000000pt;}
.y2_c00217{bottom:10.076000pt;}
.y1_c00217{bottom:486.720000pt;}
.h1_c00217{height:16.000000pt;}
.h0_c00217{height:606.666667pt;}
.w0_c00217{width:837.066667pt;}
.w1_c00217{width:837.333333pt;}
.x0_c00217{left:0.000000pt;}
.x1_c00217{left:8.400000pt;}
.x2_c00217{left:9.840000pt;}
.x3_c00217{left:36.720000pt;}
.x4_c00217{left:521.040000pt;}
}





/* 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_c00218 {
    display:none;
  }
  .loading-indicator_c00218.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00218 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_c00218 { 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_c00218" -> "#page-container .classname_c00218")
 */
.pf_c00218 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00218 { /* 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_c00218.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00218 { /* 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_c00218 { /* 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_c00218 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00218 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00218 {overflow:visible;}
  }
}
.c_c00218 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00218 { /* 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_c00218:after { /* webkit #35443 */
  content: '';
}
.t_c00218:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00218 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 */
}
.__c00218 { /* 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_c00218 { /* info for Javascript */
  display:none;
}
.l_c00218 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00218 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00218 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00218: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_c00218 {
    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_c00218.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00218.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_c00218 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00218{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00218;src:url('chunks/assets/font_7c6b9abe6ee2a268480c528b.woff2')format("woff");}.ff1_c00218{font-family:ff1_c00218;line-height:1.000000;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;}
.m1c_c00218{transform:matrix(0.038185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.038185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.038185,0.000000,0.000000,0.250000,0,0);}
.m21_c00218{transform:matrix(0.061845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.061845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.061845,0.000000,0.000000,0.250000,0,0);}
.m1d_c00218{transform:matrix(0.065520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065520,0.000000,0.000000,0.250000,0,0);}
.m3c_c00218{transform:matrix(0.071150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.071150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.071150,0.000000,0.000000,0.250000,0,0);}
.m2e_c00218{transform:matrix(0.072616,-0.000726,0.002500,0.249988,0,0);-ms-transform:matrix(0.072616,-0.000726,0.002500,0.249988,0,0);-webkit-transform:matrix(0.072616,-0.000726,0.002500,0.249988,0,0);}
.m3b_c00218{transform:matrix(0.095460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.095460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.095460,0.000000,0.000000,0.250000,0,0);}
.m18_c00218{transform:matrix(0.110635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110635,0.000000,0.000000,0.250000,0,0);}
.m3f_c00218{transform:matrix(0.121165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121165,0.000000,0.000000,0.250000,0,0);}
.m3e_c00218{transform:matrix(0.127280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127280,0.000000,0.000000,0.250000,0,0);}
.m1f_c00218{transform:matrix(0.212130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212130,0.000000,0.000000,0.250000,0,0);}
.m24_c00218{transform:matrix(0.213190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213190,0.000000,0.000000,0.250000,0,0);}
.m1e_c00218{transform:matrix(0.213360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213360,0.000000,0.000000,0.250000,0,0);}
.m11_c00218{transform:matrix(0.230165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230165,0.000000,0.000000,0.250000,0,0);}
.m8_c00218{transform:matrix(0.241065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241065,0.000000,0.000000,0.250000,0,0);}
.m17_c00218{transform:matrix(0.244825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244825,0.000000,0.000000,0.250000,0,0);}
.m2d_c00218{transform:matrix(0.252502,-0.002525,0.002500,0.249988,0,0);-ms-transform:matrix(0.252502,-0.002525,0.002500,0.249988,0,0);-webkit-transform:matrix(0.252502,-0.002525,0.002500,0.249988,0,0);}
.m19_c00218{transform:matrix(0.274825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274825,0.000000,0.000000,0.250000,0,0);}
.m25_c00218{transform:matrix(0.281235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281235,0.000000,0.000000,0.250000,0,0);}
.m13_c00218{transform:matrix(0.287000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287000,0.000000,0.000000,0.250000,0,0);}
.m20_c00218{transform:matrix(0.298330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298330,0.000000,0.000000,0.250000,0,0);}
.m2b_c00218{transform:matrix(0.313955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313955,0.000000,0.000000,0.250000,0,0);}
.me_c00218{transform:matrix(0.324500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00218{transform:matrix(0.329190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329190,0.000000,0.000000,0.250000,0,0);}
.m35_c00218{transform:matrix(0.330510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330510,0.000000,0.000000,0.250000,0,0);}
.m3d_c00218{transform:matrix(0.344185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344185,0.000000,0.000000,0.250000,0,0);}
.m23_c00218{transform:matrix(0.355220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355220,0.000000,0.000000,0.250000,0,0);}
.m2c_c00218{transform:matrix(0.359282,-0.003593,0.002500,0.249988,0,0);-ms-transform:matrix(0.359282,-0.003593,0.002500,0.249988,0,0);-webkit-transform:matrix(0.359282,-0.003593,0.002500,0.249988,0,0);}
.m27_c00218{transform:matrix(0.366200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366200,0.000000,0.000000,0.250000,0,0);}
.m29_c00218{transform:matrix(0.382895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382895,0.000000,0.000000,0.250000,0,0);}
.m31_c00218{transform:matrix(0.398610,-0.003986,0.002500,0.249988,0,0);-ms-transform:matrix(0.398610,-0.003986,0.002500,0.249988,0,0);-webkit-transform:matrix(0.398610,-0.003986,0.002500,0.249988,0,0);}
.m37_c00218{transform:matrix(0.400610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400610,0.000000,0.000000,0.250000,0,0);}
.m4_c00218{transform:matrix(0.402050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402050,0.000000,0.000000,0.250000,0,0);}
.m32_c00218{transform:matrix(0.427819,-0.004278,0.002500,0.249988,0,0);-ms-transform:matrix(0.427819,-0.004278,0.002500,0.249988,0,0);-webkit-transform:matrix(0.427819,-0.004278,0.002500,0.249988,0,0);}
.m26_c00218{transform:matrix(0.442915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442915,0.000000,0.000000,0.250000,0,0);}
.m2f_c00218{transform:matrix(0.444793,-0.004448,0.002500,0.249988,0,0);-ms-transform:matrix(0.444793,-0.004448,0.002500,0.249988,0,0);-webkit-transform:matrix(0.444793,-0.004448,0.002500,0.249988,0,0);}
.md_c00218{transform:matrix(0.448630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448630,0.000000,0.000000,0.250000,0,0);}
.mf_c00218{transform:matrix(0.450900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450900,0.000000,0.000000,0.250000,0,0);}
.m39_c00218{transform:matrix(0.467675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467675,0.000000,0.000000,0.250000,0,0);}
.m2a_c00218{transform:matrix(0.489405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.489405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.489405,0.000000,0.000000,0.250000,0,0);}
.m33_c00218{transform:matrix(0.519164,-0.005192,0.002500,0.249988,0,0);-ms-transform:matrix(0.519164,-0.005192,0.002500,0.249988,0,0);-webkit-transform:matrix(0.519164,-0.005192,0.002500,0.249988,0,0);}
.m10_c00218{transform:matrix(0.535595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535595,0.000000,0.000000,0.250000,0,0);}
.m15_c00218{transform:matrix(0.554515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554515,0.000000,0.000000,0.250000,0,0);}
.m12_c00218{transform:matrix(0.558475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558475,0.000000,0.000000,0.250000,0,0);}
.m38_c00218{transform:matrix(0.560420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560420,0.000000,0.000000,0.250000,0,0);}
.mb_c00218{transform:matrix(0.571605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571605,0.000000,0.000000,0.250000,0,0);}
.m0_c00218{transform:matrix(0.574990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574990,0.000000,0.000000,0.250000,0,0);}
.m30_c00218{transform:matrix(0.582276,-0.005823,0.002500,0.249988,0,0);-ms-transform:matrix(0.582276,-0.005823,0.002500,0.249988,0,0);-webkit-transform:matrix(0.582276,-0.005823,0.002500,0.249988,0,0);}
.m28_c00218{transform:matrix(0.604810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.604810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.604810,0.000000,0.000000,0.250000,0,0);}
.m1_c00218{transform:matrix(0.607179,-0.012144,0.004999,0.249950,0,0);-ms-transform:matrix(0.607179,-0.012144,0.004999,0.249950,0,0);-webkit-transform:matrix(0.607179,-0.012144,0.004999,0.249950,0,0);}
.m5_c00218{transform:matrix(0.678915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.678915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.678915,0.000000,0.000000,0.250000,0,0);}
.m14_c00218{transform:matrix(0.695720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.695720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.695720,0.000000,0.000000,0.250000,0,0);}
.m22_c00218{transform:matrix(0.712620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.712620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.712620,0.000000,0.000000,0.250000,0,0);}
.ma_c00218{transform:matrix(0.822080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.822080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.822080,0.000000,0.000000,0.250000,0,0);}
.m3a_c00218{transform:matrix(0.924175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.924175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.924175,0.000000,0.000000,0.250000,0,0);}
.m34_c00218{transform:matrix(0.979305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.979305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.979305,0.000000,0.000000,0.250000,0,0);}
.m3_c00218{transform:matrix(0.984155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.984155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.984155,0.000000,0.000000,0.250000,0,0);}
.m16_c00218{transform:matrix(1.020340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.020340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.020340,0.000000,0.000000,0.250000,0,0);}
.m7_c00218{transform:matrix(1.025340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.025340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.025340,0.000000,0.000000,0.250000,0,0);}
.m9_c00218{transform:matrix(1.136180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.136180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.136180,0.000000,0.000000,0.250000,0,0);}
.m36_c00218{transform:matrix(1.179555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.179555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.179555,0.000000,0.000000,0.250000,0,0);}
.m6_c00218{transform:matrix(1.223345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.223345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.223345,0.000000,0.000000,0.250000,0,0);}
.m2_c00218{transform:matrix(1.665647,-0.033313,0.004999,0.249950,0,0);-ms-transform:matrix(1.665647,-0.033313,0.004999,0.249950,0,0);-webkit-transform:matrix(1.665647,-0.033313,0.004999,0.249950,0,0);}
.mc_c00218{transform:matrix(1.751760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.751760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.751760,0.000000,0.000000,0.250000,0,0);}
.m1a_c00218{transform:matrix(2.016745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.016745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.016745,0.000000,0.000000,0.250000,0,0);}
.v0_c00218{vertical-align:0.000000px;}
.ls0_c00218{letter-spacing:0.000000px;}
.sc__c00218{text-shadow:none;}
.sc0_c00218{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__c00218{-webkit-text-stroke:0px transparent;}
.sc0_c00218{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00218{word-spacing:0.000000px;}
.fc0_c00218{color:transparent;}
.fs9_c00218{font-size:12.000000px;}
.fs6_c00218{font-size:18.000000px;}
.fs4_c00218{font-size:30.000000px;}
.fs0_c00218{font-size:42.000000px;}
.fs5_c00218{font-size:48.000000px;}
.fs2_c00218{font-size:72.000000px;}
.fs8_c00218{font-size:84.000000px;}
.fs7_c00218{font-size:90.004500px;}
.fs1_c00218{font-size:96.019198px;}
.fs3_c00218{font-size:120.000000px;}
.y0_c00218{bottom:0.000000px;}
.y1c_c00218{bottom:0.922500px;}
.y1a_c00218{bottom:68.301000px;}
.y1b_c00218{bottom:117.621000px;}
.y12_c00218{bottom:144.879000px;}
.y13_c00218{bottom:146.185710px;}
.y14_c00218{bottom:146.267490px;}
.y15_c00218{bottom:146.565480px;}
.y16_c00218{bottom:148.166505px;}
.y17_c00218{bottom:149.045010px;}
.y18_c00218{bottom:149.674995px;}
.y19_c00218{bottom:151.443300px;}
.y11_c00218{bottom:473.850000px;}
.y10_c00218{bottom:501.120000px;}
.y6_c00218{bottom:502.204500px;}
.y7_c00218{bottom:503.302500px;}
.y8_c00218{bottom:505.261500px;}
.y9_c00218{bottom:507.370500px;}
.ya_c00218{bottom:509.025000px;}
.yb_c00218{bottom:510.450000px;}
.yf_c00218{bottom:519.210000px;}
.ye_c00218{bottom:562.950000px;}
.y5_c00218{bottom:587.767500px;}
.y4_c00218{bottom:617.853000px;}
.yd_c00218{bottom:666.238500px;}
.y2_c00218{bottom:667.174500px;}
.y1_c00218{bottom:669.330000px;}
.y3_c00218{bottom:670.416000px;}
.yc_c00218{bottom:676.747500px;}
.ha_c00218{height:12.000000px;}
.h7_c00218{height:18.000000px;}
.h5_c00218{height:30.000000px;}
.h1_c00218{height:42.000000px;}
.h6_c00218{height:48.000000px;}
.h3_c00218{height:72.000000px;}
.h9_c00218{height:84.000000px;}
.h8_c00218{height:90.004500px;}
.h2_c00218{height:96.019198px;}
.h4_c00218{height:120.000000px;}
.h0_c00218{height:682.500000px;}
.w0_c00218{width:941.700000px;}
.w1_c00218{width:942.000000px;}
.x0_c00218{left:0.000000px;}
.x1e_c00218{left:1.080000px;}
.x1d_c00218{left:4.050000px;}
.x20_c00218{left:5.670000px;}
.x22_c00218{left:6.750000px;}
.x4_c00218{left:7.830000px;}
.x21_c00218{left:9.180000px;}
.x1f_c00218{left:11.340000px;}
.x25_c00218{left:12.420000px;}
.x1_c00218{left:14.850000px;}
.x24_c00218{left:15.930000px;}
.x23_c00218{left:18.090000px;}
.x12_c00218{left:50.934000px;}
.x2_c00218{left:88.489500px;}
.x13_c00218{left:142.495500px;}
.x1c_c00218{left:146.070000px;}
.x2b_c00218{left:150.660000px;}
.x5_c00218{left:151.740000px;}
.x26_c00218{left:153.145500px;}
.xc_c00218{left:245.160000px;}
.x3_c00218{left:250.564500px;}
.x2c_c00218{left:277.560000px;}
.x27_c00218{left:283.816500px;}
.x6_c00218{left:291.330000px;}
.x14_c00218{left:305.701500px;}
.x2d_c00218{left:316.710000px;}
.x28_c00218{left:321.793500px;}
.xd_c00218{left:327.510000px;}
.x7_c00218{left:397.440000px;}
.x2e_c00218{left:465.210000px;}
.x15_c00218{left:481.422000px;}
.x2f_c00218{left:554.040000px;}
.x8_c00218{left:568.350000px;}
.x29_c00218{left:569.746500px;}
.x16_c00218{left:619.240500px;}
.x2a_c00218{left:632.745000px;}
.x9_c00218{left:636.390000px;}
.xe_c00218{left:662.580000px;}
.xa_c00218{left:669.060000px;}
.x1a_c00218{left:686.340000px;}
.x18_c00218{left:689.850000px;}
.x31_c00218{left:706.320000px;}
.x1b_c00218{left:709.020000px;}
.x17_c00218{left:738.003000px;}
.xf_c00218{left:739.800000px;}
.x19_c00218{left:748.710000px;}
.x10_c00218{left:809.190000px;}
.x30_c00218{left:832.950000px;}
.x33_c00218{left:839.970000px;}
.x11_c00218{left:878.850000px;}
.x32_c00218{left:883.980000px;}
.xb_c00218{left:899.370000px;}
.x34_c00218{left:926.370000px;}
.x35_c00218{left:932.580000px;}
.x36_c00218{left:940.410000px;}
@media print{
.v0_c00218{vertical-align:0.000000pt;}
.ls0_c00218{letter-spacing:0.000000pt;}
.ws0_c00218{word-spacing:0.000000pt;}
.fs9_c00218{font-size:10.666667pt;}
.fs6_c00218{font-size:16.000000pt;}
.fs4_c00218{font-size:26.666667pt;}
.fs0_c00218{font-size:37.333333pt;}
.fs5_c00218{font-size:42.666667pt;}
.fs2_c00218{font-size:64.000000pt;}
.fs8_c00218{font-size:74.666667pt;}
.fs7_c00218{font-size:80.004000pt;}
.fs1_c00218{font-size:85.350398pt;}
.fs3_c00218{font-size:106.666667pt;}
.y0_c00218{bottom:0.000000pt;}
.y1c_c00218{bottom:0.820000pt;}
.y1a_c00218{bottom:60.712000pt;}
.y1b_c00218{bottom:104.552000pt;}
.y12_c00218{bottom:128.781333pt;}
.y13_c00218{bottom:129.942853pt;}
.y14_c00218{bottom:130.015547pt;}
.y15_c00218{bottom:130.280427pt;}
.y16_c00218{bottom:131.703560pt;}
.y17_c00218{bottom:132.484453pt;}
.y18_c00218{bottom:133.044440pt;}
.y19_c00218{bottom:134.616267pt;}
.y11_c00218{bottom:421.200000pt;}
.y10_c00218{bottom:445.440000pt;}
.y6_c00218{bottom:446.404000pt;}
.y7_c00218{bottom:447.380000pt;}
.y8_c00218{bottom:449.121333pt;}
.y9_c00218{bottom:450.996000pt;}
.ya_c00218{bottom:452.466667pt;}
.yb_c00218{bottom:453.733333pt;}
.yf_c00218{bottom:461.520000pt;}
.ye_c00218{bottom:500.400000pt;}
.y5_c00218{bottom:522.460000pt;}
.y4_c00218{bottom:549.202667pt;}
.yd_c00218{bottom:592.212000pt;}
.y2_c00218{bottom:593.044000pt;}
.y1_c00218{bottom:594.960000pt;}
.y3_c00218{bottom:595.925333pt;}
.yc_c00218{bottom:601.553333pt;}
.ha_c00218{height:10.666667pt;}
.h7_c00218{height:16.000000pt;}
.h5_c00218{height:26.666667pt;}
.h1_c00218{height:37.333333pt;}
.h6_c00218{height:42.666667pt;}
.h3_c00218{height:64.000000pt;}
.h9_c00218{height:74.666667pt;}
.h8_c00218{height:80.004000pt;}
.h2_c00218{height:85.350398pt;}
.h4_c00218{height:106.666667pt;}
.h0_c00218{height:606.666667pt;}
.w0_c00218{width:837.066667pt;}
.w1_c00218{width:837.333333pt;}
.x0_c00218{left:0.000000pt;}
.x1e_c00218{left:0.960000pt;}
.x1d_c00218{left:3.600000pt;}
.x20_c00218{left:5.040000pt;}
.x22_c00218{left:6.000000pt;}
.x4_c00218{left:6.960000pt;}
.x21_c00218{left:8.160000pt;}
.x1f_c00218{left:10.080000pt;}
.x25_c00218{left:11.040000pt;}
.x1_c00218{left:13.200000pt;}
.x24_c00218{left:14.160000pt;}
.x23_c00218{left:16.080000pt;}
.x12_c00218{left:45.274667pt;}
.x2_c00218{left:78.657333pt;}
.x13_c00218{left:126.662667pt;}
.x1c_c00218{left:129.840000pt;}
.x2b_c00218{left:133.920000pt;}
.x5_c00218{left:134.880000pt;}
.x26_c00218{left:136.129333pt;}
.xc_c00218{left:217.920000pt;}
.x3_c00218{left:222.724000pt;}
.x2c_c00218{left:246.720000pt;}
.x27_c00218{left:252.281333pt;}
.x6_c00218{left:258.960000pt;}
.x14_c00218{left:271.734667pt;}
.x2d_c00218{left:281.520000pt;}
.x28_c00218{left:286.038667pt;}
.xd_c00218{left:291.120000pt;}
.x7_c00218{left:353.280000pt;}
.x2e_c00218{left:413.520000pt;}
.x15_c00218{left:427.930667pt;}
.x2f_c00218{left:492.480000pt;}
.x8_c00218{left:505.200000pt;}
.x29_c00218{left:506.441333pt;}
.x16_c00218{left:550.436000pt;}
.x2a_c00218{left:562.440000pt;}
.x9_c00218{left:565.680000pt;}
.xe_c00218{left:588.960000pt;}
.xa_c00218{left:594.720000pt;}
.x1a_c00218{left:610.080000pt;}
.x18_c00218{left:613.200000pt;}
.x31_c00218{left:627.840000pt;}
.x1b_c00218{left:630.240000pt;}
.x17_c00218{left:656.002667pt;}
.xf_c00218{left:657.600000pt;}
.x19_c00218{left:665.520000pt;}
.x10_c00218{left:719.280000pt;}
.x30_c00218{left:740.400000pt;}
.x33_c00218{left:746.640000pt;}
.x11_c00218{left:781.200000pt;}
.x32_c00218{left:785.760000pt;}
.xb_c00218{left:799.440000pt;}
.x34_c00218{left:823.440000pt;}
.x35_c00218{left:828.960000pt;}
.x36_c00218{left:835.920000pt;}
}





/* 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_c00219 {
    display:none;
  }
  .loading-indicator_c00219.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00219 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_c00219 { 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_c00219" -> "#page-container .classname_c00219")
 */
.pf_c00219 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00219 { /* 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_c00219.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00219 { /* 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_c00219 { /* 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_c00219 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00219 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00219 {overflow:visible;}
  }
}
.c_c00219 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00219 { /* 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_c00219:after { /* webkit #35443 */
  content: '';
}
.t_c00219:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00219 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 */
}
.__c00219 { /* 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_c00219 { /* info for Javascript */
  display:none;
}
.l_c00219 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00219 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00219 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00219: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_c00219 {
    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_c00219.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00219.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_c00219 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00219{font-family:sans-serif;visibility:hidden;}
.sc__c00219{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00219{-webkit-text-stroke:0px transparent;}
}
.y0_c00219{bottom:0.000000px;}
.h0_c00219{height:682.500000px;}
.w0_c00219{width:941.700000px;}
.w1_c00219{width:942.000000px;}
.x0_c00219{left:0.000000px;}
@media print{
.y0_c00219{bottom:0.000000pt;}
.h0_c00219{height:606.666667pt;}
.w0_c00219{width:837.066667pt;}
.w1_c00219{width:837.333333pt;}
.x0_c00219{left:0.000000pt;}
}





/* 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_c00220 {
    display:none;
  }
  .loading-indicator_c00220.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00220 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_c00220 { 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_c00220" -> "#page-container .classname_c00220")
 */
.pf_c00220 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00220 { /* 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_c00220.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00220 { /* 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_c00220 { /* 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_c00220 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00220 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00220 {overflow:visible;}
  }
}
.c_c00220 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00220 { /* 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_c00220:after { /* webkit #35443 */
  content: '';
}
.t_c00220:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00220 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 */
}
.__c00220 { /* 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_c00220 { /* info for Javascript */
  display:none;
}
.l_c00220 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00220 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00220 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00220: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_c00220 {
    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_c00220.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00220.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_c00220 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00220{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00220;src:url('chunks/assets/font_53ec0c54e60da7c2d414b553.woff2')format("woff");}.ff1_c00220{font-family:ff1_c00220;line-height:1.000000;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;}
.m17_c00220{transform:matrix(0.008469,-0.000526,0.015501,0.249519,0,0);-ms-transform:matrix(0.008469,-0.000526,0.015501,0.249519,0,0);-webkit-transform:matrix(0.008469,-0.000526,0.015501,0.249519,0,0);}
.m1e_c00220{transform:matrix(0.075655,-0.001740,0.005748,0.249934,0,0);-ms-transform:matrix(0.075655,-0.001740,0.005748,0.249934,0,0);-webkit-transform:matrix(0.075655,-0.001740,0.005748,0.249934,0,0);}
.mc_c00220{transform:matrix(0.133215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133215,0.000000,0.000000,0.250000,0,0);}
.m6_c00220{transform:matrix(0.145745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145745,0.000000,0.000000,0.250000,0,0);}
.md_c00220{transform:matrix(0.146845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146845,0.000000,0.000000,0.250000,0,0);}
.mb_c00220{transform:matrix(0.171635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171635,0.000000,0.000000,0.250000,0,0);}
.me_c00220{transform:matrix(0.174850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174850,0.000000,0.000000,0.250000,0,0);}
.m1d_c00220{transform:matrix(0.192949,-0.004438,0.005748,0.249934,0,0);-ms-transform:matrix(0.192949,-0.004438,0.005748,0.249934,0,0);-webkit-transform:matrix(0.192949,-0.004438,0.005748,0.249934,0,0);}
.m4_c00220{transform:matrix(0.206865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206865,0.000000,0.000000,0.250000,0,0);}
.m5_c00220{transform:matrix(0.224790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224790,0.000000,0.000000,0.250000,0,0);}
.m0_c00220{transform:matrix(0.231785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231785,0.000000,0.000000,0.250000,0,0);}
.m2_c00220{transform:matrix(0.232650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232650,0.000000,0.000000,0.250000,0,0);}
.m3_c00220{transform:matrix(0.240705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240705,0.000000,0.000000,0.250000,0,0);}
.mf_c00220{transform:matrix(0.249620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249620,0.000000,0.000000,0.250000,0,0);}
.m1_c00220{transform:matrix(0.280250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280250,0.000000,0.000000,0.250000,0,0);}
.m9_c00220{transform:matrix(0.284785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284785,0.000000,0.000000,0.250000,0,0);}
.m1a_c00220{transform:matrix(0.286014,-0.006578,0.005748,0.249934,0,0);-ms-transform:matrix(0.286014,-0.006578,0.005748,0.249934,0,0);-webkit-transform:matrix(0.286014,-0.006578,0.005748,0.249934,0,0);}
.m19_c00220{transform:matrix(0.286239,-0.006584,0.005748,0.249934,0,0);-ms-transform:matrix(0.286239,-0.006584,0.005748,0.249934,0,0);-webkit-transform:matrix(0.286239,-0.006584,0.005748,0.249934,0,0);}
.m13_c00220{transform:matrix(0.298110,-0.018520,0.015501,0.249519,0,0);-ms-transform:matrix(0.298110,-0.018520,0.015501,0.249519,0,0);-webkit-transform:matrix(0.298110,-0.018520,0.015501,0.249519,0,0);}
.ma_c00220{transform:matrix(0.312555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312555,0.000000,0.000000,0.250000,0,0);}
.m1c_c00220{transform:matrix(0.318361,-0.007322,0.005748,0.249934,0,0);-ms-transform:matrix(0.318361,-0.007322,0.005748,0.249934,0,0);-webkit-transform:matrix(0.318361,-0.007322,0.005748,0.249934,0,0);}
.m7_c00220{transform:matrix(0.346145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346145,0.000000,0.000000,0.250000,0,0);}
.m11_c00220{transform:matrix(0.350670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350670,0.000000,0.000000,0.250000,0,0);}
.m8_c00220{transform:matrix(0.356730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356730,0.000000,0.000000,0.250000,0,0);}
.m1b_c00220{transform:matrix(0.428307,-0.009851,0.005748,0.249934,0,0);-ms-transform:matrix(0.428307,-0.009851,0.005748,0.249934,0,0);-webkit-transform:matrix(0.428307,-0.009851,0.005748,0.249934,0,0);}
.m18_c00220{transform:matrix(0.528725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528725,0.000000,0.000000,0.250000,0,0);}
.m14_c00220{transform:matrix(0.570540,-0.035444,0.015501,0.249519,0,0);-ms-transform:matrix(0.570540,-0.035444,0.015501,0.249519,0,0);-webkit-transform:matrix(0.570540,-0.035444,0.015501,0.249519,0,0);}
.m16_c00220{transform:matrix(0.611701,-0.038001,0.015501,0.249519,0,0);-ms-transform:matrix(0.611701,-0.038001,0.015501,0.249519,0,0);-webkit-transform:matrix(0.611701,-0.038001,0.015501,0.249519,0,0);}
.m12_c00220{transform:matrix(0.650920,-0.040438,0.015501,0.249519,0,0);-ms-transform:matrix(0.650920,-0.040438,0.015501,0.249519,0,0);-webkit-transform:matrix(0.650920,-0.040438,0.015501,0.249519,0,0);}
.m15_c00220{transform:matrix(0.729633,-0.045328,0.015501,0.249519,0,0);-ms-transform:matrix(0.729633,-0.045328,0.015501,0.249519,0,0);-webkit-transform:matrix(0.729633,-0.045328,0.015501,0.249519,0,0);}
.m10_c00220{transform:matrix(0.773885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.773885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.773885,0.000000,0.000000,0.250000,0,0);}
.m1f_c00220{transform:matrix(0.866866,-0.019938,0.005748,0.249934,0,0);-ms-transform:matrix(0.866866,-0.019938,0.005748,0.249934,0,0);-webkit-transform:matrix(0.866866,-0.019938,0.005748,0.249934,0,0);}
.v0_c00220{vertical-align:0.000000px;}
.ls0_c00220{letter-spacing:0.000000px;}
.sc__c00220{text-shadow:none;}
.sc0_c00220{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__c00220{-webkit-text-stroke:0px transparent;}
.sc0_c00220{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00220{word-spacing:0.000000px;}
.fc0_c00220{color:transparent;}
.fs0_c00220{font-size:42.000000px;}
.fs3_c00220{font-size:48.000000px;}
.fs1_c00220{font-size:54.000000px;}
.fs2_c00220{font-size:66.000000px;}
.fs5_c00220{font-size:78.000000px;}
.fs4_c00220{font-size:84.000000px;}
.fs7_c00220{font-size:89.993160px;}
.fs8_c00220{font-size:96.025389px;}
.fs6_c00220{font-size:114.000000px;}
.y0_c00220{bottom:0.000000px;}
.y7_c00220{bottom:151.470000px;}
.y6_c00220{bottom:158.760000px;}
.y5_c00220{bottom:169.830000px;}
.y4_c00220{bottom:184.680000px;}
.y3_c00220{bottom:209.520000px;}
.y2_c00220{bottom:240.409500px;}
.y1_c00220{bottom:250.290000px;}
.y12_c00220{bottom:287.541000px;}
.y13_c00220{bottom:288.986826px;}
.y11_c00220{bottom:290.935500px;}
.y14_c00220{bottom:291.135624px;}
.y15_c00220{bottom:294.794556px;}
.y16_c00220{bottom:295.886861px;}
.y17_c00220{bottom:296.444898px;}
.y18_c00220{bottom:299.601096px;}
.yb_c00220{bottom:322.293000px;}
.ya_c00220{bottom:326.532000px;}
.yc_c00220{bottom:329.919186px;}
.yd_c00220{bottom:334.130040px;}
.ye_c00220{bottom:346.427709px;}
.yf_c00220{bottom:353.385690px;}
.y10_c00220{bottom:371.250897px;}
.y9_c00220{bottom:444.157500px;}
.y8_c00220{bottom:462.780000px;}
.h1_c00220{height:42.000000px;}
.h4_c00220{height:48.000000px;}
.h2_c00220{height:54.000000px;}
.h3_c00220{height:66.000000px;}
.h6_c00220{height:78.000000px;}
.h5_c00220{height:84.000000px;}
.h8_c00220{height:89.993160px;}
.h9_c00220{height:96.025389px;}
.h7_c00220{height:114.000000px;}
.h0_c00220{height:682.500000px;}
.w0_c00220{width:941.700000px;}
.w1_c00220{width:942.000000px;}
.x0_c00220{left:0.000000px;}
.x6_c00220{left:8.640000px;}
.x8_c00220{left:14.850000px;}
.x7_c00220{left:15.930000px;}
.x5_c00220{left:17.550000px;}
.x2_c00220{left:24.840000px;}
.x1_c00220{left:25.920000px;}
.x3_c00220{left:27.540000px;}
.x4_c00220{left:29.970000px;}
.xa_c00220{left:42.120000px;}
.x9_c00220{left:52.650000px;}
.xb_c00220{left:142.869000px;}
.x11_c00220{left:164.970000px;}
.x12_c00220{left:251.506500px;}
.xc_c00220{left:265.625994px;}
.x13_c00220{left:314.368500px;}
.xd_c00220{left:333.407160px;}
.x14_c00220{left:407.794500px;}
.xe_c00220{left:531.359961px;}
.x15_c00220{left:566.878500px;}
.x16_c00220{left:614.370000px;}
.x17_c00220{left:638.632500px;}
.xf_c00220{left:643.361010px;}
.x18_c00220{left:775.858500px;}
.x10_c00220{left:930.933213px;}
@media print{
.v0_c00220{vertical-align:0.000000pt;}
.ls0_c00220{letter-spacing:0.000000pt;}
.ws0_c00220{word-spacing:0.000000pt;}
.fs0_c00220{font-size:37.333333pt;}
.fs3_c00220{font-size:42.666667pt;}
.fs1_c00220{font-size:48.000000pt;}
.fs2_c00220{font-size:58.666667pt;}
.fs5_c00220{font-size:69.333333pt;}
.fs4_c00220{font-size:74.666667pt;}
.fs7_c00220{font-size:79.993920pt;}
.fs8_c00220{font-size:85.355901pt;}
.fs6_c00220{font-size:101.333333pt;}
.y0_c00220{bottom:0.000000pt;}
.y7_c00220{bottom:134.640000pt;}
.y6_c00220{bottom:141.120000pt;}
.y5_c00220{bottom:150.960000pt;}
.y4_c00220{bottom:164.160000pt;}
.y3_c00220{bottom:186.240000pt;}
.y2_c00220{bottom:213.697333pt;}
.y1_c00220{bottom:222.480000pt;}
.y12_c00220{bottom:255.592000pt;}
.y13_c00220{bottom:256.877179pt;}
.y11_c00220{bottom:258.609333pt;}
.y14_c00220{bottom:258.787221pt;}
.y15_c00220{bottom:262.039605pt;}
.y16_c00220{bottom:263.010543pt;}
.y17_c00220{bottom:263.506576pt;}
.y18_c00220{bottom:266.312085pt;}
.yb_c00220{bottom:286.482667pt;}
.ya_c00220{bottom:290.250667pt;}
.yc_c00220{bottom:293.261499pt;}
.yd_c00220{bottom:297.004480pt;}
.ye_c00220{bottom:307.935741pt;}
.yf_c00220{bottom:314.120613pt;}
.y10_c00220{bottom:330.000797pt;}
.y9_c00220{bottom:394.806667pt;}
.y8_c00220{bottom:411.360000pt;}
.h1_c00220{height:37.333333pt;}
.h4_c00220{height:42.666667pt;}
.h2_c00220{height:48.000000pt;}
.h3_c00220{height:58.666667pt;}
.h6_c00220{height:69.333333pt;}
.h5_c00220{height:74.666667pt;}
.h8_c00220{height:79.993920pt;}
.h9_c00220{height:85.355901pt;}
.h7_c00220{height:101.333333pt;}
.h0_c00220{height:606.666667pt;}
.w0_c00220{width:837.066667pt;}
.w1_c00220{width:837.333333pt;}
.x0_c00220{left:0.000000pt;}
.x6_c00220{left:7.680000pt;}
.x8_c00220{left:13.200000pt;}
.x7_c00220{left:14.160000pt;}
.x5_c00220{left:15.600000pt;}
.x2_c00220{left:22.080000pt;}
.x1_c00220{left:23.040000pt;}
.x3_c00220{left:24.480000pt;}
.x4_c00220{left:26.640000pt;}
.xa_c00220{left:37.440000pt;}
.x9_c00220{left:46.800000pt;}
.xb_c00220{left:126.994667pt;}
.x11_c00220{left:146.640000pt;}
.x12_c00220{left:223.561333pt;}
.xc_c00220{left:236.111995pt;}
.x13_c00220{left:279.438667pt;}
.xd_c00220{left:296.361920pt;}
.x14_c00220{left:362.484000pt;}
.xe_c00220{left:472.319965pt;}
.x15_c00220{left:503.892000pt;}
.x16_c00220{left:546.106667pt;}
.x17_c00220{left:567.673333pt;}
.xf_c00220{left:571.876453pt;}
.x18_c00220{left:689.652000pt;}
.x10_c00220{left:827.496189pt;}
}





/* 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_c00221 {
    display:none;
  }
  .loading-indicator_c00221.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00221 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_c00221 { 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_c00221" -> "#page-container .classname_c00221")
 */
.pf_c00221 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00221 { /* 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_c00221.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00221 { /* 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_c00221 { /* 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_c00221 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00221 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00221 {overflow:visible;}
  }
}
.c_c00221 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00221 { /* 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_c00221:after { /* webkit #35443 */
  content: '';
}
.t_c00221:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00221 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 */
}
.__c00221 { /* 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_c00221 { /* info for Javascript */
  display:none;
}
.l_c00221 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00221 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00221 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00221: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_c00221 {
    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_c00221.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00221.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_c00221 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00221{font-family:sans-serif;visibility:hidden;}
.sc__c00221{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00221{-webkit-text-stroke:0px transparent;}
}
.y0_c00221{bottom:0.000000px;}
.h0_c00221{height:682.500000px;}
.w0_c00221{width:941.700000px;}
.w1_c00221{width:942.000000px;}
.x0_c00221{left:0.000000px;}
@media print{
.y0_c00221{bottom:0.000000pt;}
.h0_c00221{height:606.666667pt;}
.w0_c00221{width:837.066667pt;}
.w1_c00221{width:837.333333pt;}
.x0_c00221{left:0.000000pt;}
}





/* 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_c00222 {
    display:none;
  }
  .loading-indicator_c00222.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00222 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_c00222 { 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_c00222" -> "#page-container .classname_c00222")
 */
.pf_c00222 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00222 { /* 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_c00222.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00222 { /* 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_c00222 { /* 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_c00222 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00222 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00222 {overflow:visible;}
  }
}
.c_c00222 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00222 { /* 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_c00222:after { /* webkit #35443 */
  content: '';
}
.t_c00222:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00222 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 */
}
.__c00222 { /* 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_c00222 { /* info for Javascript */
  display:none;
}
.l_c00222 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00222 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00222 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00222: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_c00222 {
    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_c00222.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00222.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_c00222 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00222{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00222;src:url('chunks/assets/font_cfe63ee56e9e10a97d33a3db.woff2')format("woff");}.ff1_c00222{font-family:ff1_c00222;line-height:1.000000;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;}
.m0_c00222{transform:matrix(0.001715,0.081687,-0.249945,0.005249,0,0);-ms-transform:matrix(0.001715,0.081687,-0.249945,0.005249,0,0);-webkit-transform:matrix(0.001715,0.081687,-0.249945,0.005249,0,0);}
.m2_c00222{transform:matrix(0.003933,0.187274,-0.249945,0.005249,0,0);-ms-transform:matrix(0.003933,0.187274,-0.249945,0.005249,0,0);-webkit-transform:matrix(0.003933,0.187274,-0.249945,0.005249,0,0);}
.mf_c00222{transform:matrix(0.004481,0.186696,-0.249928,0.005998,0,0);-ms-transform:matrix(0.004481,0.186696,-0.249928,0.005998,0,0);-webkit-transform:matrix(0.004481,0.186696,-0.249928,0.005998,0,0);}
.m4_c00222{transform:matrix(0.004618,0.164920,-0.249902,0.006997,0,0);-ms-transform:matrix(0.004618,0.164920,-0.249902,0.006997,0,0);-webkit-transform:matrix(0.004618,0.164920,-0.249902,0.006997,0,0);}
.m6_c00222{transform:matrix(0.004825,0.172312,-0.249902,0.006997,0,0);-ms-transform:matrix(0.004825,0.172312,-0.249902,0.006997,0,0);-webkit-transform:matrix(0.004825,0.172312,-0.249902,0.006997,0,0);}
.m5_c00222{transform:matrix(0.005154,0.184083,-0.249902,0.006997,0,0);-ms-transform:matrix(0.005154,0.184083,-0.249902,0.006997,0,0);-webkit-transform:matrix(0.005154,0.184083,-0.249902,0.006997,0,0);}
.m1_c00222{transform:matrix(0.005171,0.246221,-0.249945,0.005249,0,0);-ms-transform:matrix(0.005171,0.246221,-0.249945,0.005249,0,0);-webkit-transform:matrix(0.005171,0.246221,-0.249945,0.005249,0,0);}
.mc_c00222{transform:matrix(0.005413,0.225535,-0.249928,0.005998,0,0);-ms-transform:matrix(0.005413,0.225535,-0.249928,0.005998,0,0);-webkit-transform:matrix(0.005413,0.225535,-0.249928,0.005998,0,0);}
.me_c00222{transform:matrix(0.005433,0.226395,-0.249928,0.005998,0,0);-ms-transform:matrix(0.005433,0.226395,-0.249928,0.005998,0,0);-webkit-transform:matrix(0.005433,0.226395,-0.249928,0.005998,0,0);}
.ma_c00222{transform:matrix(0.006395,0.228385,-0.249902,0.006997,0,0);-ms-transform:matrix(0.006395,0.228385,-0.249902,0.006997,0,0);-webkit-transform:matrix(0.006395,0.228385,-0.249902,0.006997,0,0);}
.md_c00222{transform:matrix(0.006465,0.269377,-0.249928,0.005998,0,0);-ms-transform:matrix(0.006465,0.269377,-0.249928,0.005998,0,0);-webkit-transform:matrix(0.006465,0.269377,-0.249928,0.005998,0,0);}
.mb_c00222{transform:matrix(0.007111,0.253955,-0.249902,0.006997,0,0);-ms-transform:matrix(0.007111,0.253955,-0.249902,0.006997,0,0);-webkit-transform:matrix(0.007111,0.253955,-0.249902,0.006997,0,0);}
.m3_c00222{transform:matrix(0.008720,0.311418,-0.249902,0.006997,0,0);-ms-transform:matrix(0.008720,0.311418,-0.249902,0.006997,0,0);-webkit-transform:matrix(0.008720,0.311418,-0.249902,0.006997,0,0);}
.m10_c00222{transform:matrix(0.011687,-0.376989,0.249880,0.007746,0,0);-ms-transform:matrix(0.011687,-0.376989,0.249880,0.007746,0,0);-webkit-transform:matrix(0.011687,-0.376989,0.249880,0.007746,0,0);}
.m8_c00222{transform:matrix(0.015017,0.536315,-0.249902,0.006997,0,0);-ms-transform:matrix(0.015017,0.536315,-0.249902,0.006997,0,0);-webkit-transform:matrix(0.015017,0.536315,-0.249902,0.006997,0,0);}
.m7_c00222{transform:matrix(0.023530,0.840341,-0.249902,0.006997,0,0);-ms-transform:matrix(0.023530,0.840341,-0.249902,0.006997,0,0);-webkit-transform:matrix(0.023530,0.840341,-0.249902,0.006997,0,0);}
.m9_c00222{transform:matrix(0.070415,2.514819,-0.249902,0.006997,0,0);-ms-transform:matrix(0.070415,2.514819,-0.249902,0.006997,0,0);-webkit-transform:matrix(0.070415,2.514819,-0.249902,0.006997,0,0);}
.m11_c00222{transform:matrix(0.199390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199390,0.000000,0.000000,0.250000,0,0);}
.v0_c00222{vertical-align:0.000000px;}
.ls0_c00222{letter-spacing:0.000000px;}
.sc__c00222{text-shadow:none;}
.sc0_c00222{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__c00222{-webkit-text-stroke:0px transparent;}
.sc0_c00222{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00222{word-spacing:0.000000px;}
.fc0_c00222{color:transparent;}
.fs5_c00222{font-size:24.011529px;}
.fs6_c00222{font-size:42.000000px;}
.fs3_c00222{font-size:54.015550px;}
.fs4_c00222{font-size:60.017278px;}
.fs2_c00222{font-size:90.035273px;}
.fs0_c00222{font-size:138.030426px;}
.fs1_c00222{font-size:444.097891px;}
.y0_c00222{bottom:0.000000px;}
.y8_c00222{bottom:72.736500px;}
.yc_c00222{bottom:78.490650px;}
.yb_c00222{bottom:90.911262px;}
.y7_c00222{bottom:202.452000px;}
.y6_c00222{bottom:272.940000px;}
.ya_c00222{bottom:282.898374px;}
.y5_c00222{bottom:299.412000px;}
.y11_c00222{bottom:321.283500px;}
.y9_c00222{bottom:373.224750px;}
.y4_c00222{bottom:388.492500px;}
.y12_c00222{bottom:469.260000px;}
.ye_c00222{bottom:497.062500px;}
.y10_c00222{bottom:510.559848px;}
.yf_c00222{bottom:538.917204px;}
.yd_c00222{bottom:539.190000px;}
.y2_c00222{bottom:614.182500px;}
.y1_c00222{bottom:640.470000px;}
.y3_c00222{bottom:677.434555px;}
.h6_c00222{height:24.011529px;}
.h7_c00222{height:42.000000px;}
.h4_c00222{height:54.015550px;}
.h5_c00222{height:60.017278px;}
.h3_c00222{height:90.035273px;}
.h1_c00222{height:138.030426px;}
.h2_c00222{height:444.097891px;}
.h0_c00222{height:682.500000px;}
.w0_c00222{width:941.700000px;}
.w1_c00222{width:942.000000px;}
.x7_c00222{left:-2.433936px;}
.x0_c00222{left:0.000000px;}
.x8_c00222{left:2.522532px;}
.xb_c00222{left:6.480000px;}
.x9_c00222{left:16.740000px;}
.xa_c00222{left:17.751060px;}
.x3_c00222{left:23.221500px;}
.x4_c00222{left:25.715754px;}
.x5_c00222{left:28.430634px;}
.x6_c00222{left:32.062668px;}
.x2_c00222{left:728.433798px;}
.x1_c00222{left:919.648500px;}
@media print{
.v0_c00222{vertical-align:0.000000pt;}
.ls0_c00222{letter-spacing:0.000000pt;}
.ws0_c00222{word-spacing:0.000000pt;}
.fs5_c00222{font-size:21.343582pt;}
.fs6_c00222{font-size:37.333333pt;}
.fs3_c00222{font-size:48.013822pt;}
.fs4_c00222{font-size:53.348691pt;}
.fs2_c00222{font-size:80.031354pt;}
.fs0_c00222{font-size:122.693712pt;}
.fs1_c00222{font-size:394.753681pt;}
.y0_c00222{bottom:0.000000pt;}
.y8_c00222{bottom:64.654667pt;}
.yc_c00222{bottom:69.769467pt;}
.yb_c00222{bottom:80.810011pt;}
.y7_c00222{bottom:179.957333pt;}
.y6_c00222{bottom:242.613333pt;}
.ya_c00222{bottom:251.465221pt;}
.y5_c00222{bottom:266.144000pt;}
.y11_c00222{bottom:285.585333pt;}
.y9_c00222{bottom:331.755333pt;}
.y4_c00222{bottom:345.326667pt;}
.y12_c00222{bottom:417.120000pt;}
.ye_c00222{bottom:441.833333pt;}
.y10_c00222{bottom:453.830976pt;}
.yf_c00222{bottom:479.037515pt;}
.yd_c00222{bottom:479.280000pt;}
.y2_c00222{bottom:545.940000pt;}
.y1_c00222{bottom:569.306667pt;}
.y3_c00222{bottom:602.164049pt;}
.h6_c00222{height:21.343582pt;}
.h7_c00222{height:37.333333pt;}
.h4_c00222{height:48.013822pt;}
.h5_c00222{height:53.348691pt;}
.h3_c00222{height:80.031354pt;}
.h1_c00222{height:122.693712pt;}
.h2_c00222{height:394.753681pt;}
.h0_c00222{height:606.666667pt;}
.w0_c00222{width:837.066667pt;}
.w1_c00222{width:837.333333pt;}
.x7_c00222{left:-2.163499pt;}
.x0_c00222{left:0.000000pt;}
.x8_c00222{left:2.242251pt;}
.xb_c00222{left:5.760000pt;}
.x9_c00222{left:14.880000pt;}
.xa_c00222{left:15.778720pt;}
.x3_c00222{left:20.641333pt;}
.x4_c00222{left:22.858448pt;}
.x5_c00222{left:25.271675pt;}
.x6_c00222{left:28.500149pt;}
.x2_c00222{left:647.496709pt;}
.x1_c00222{left:817.465333pt;}
}





/* 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_c00223 {
    display:none;
  }
  .loading-indicator_c00223.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00223 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_c00223 { 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_c00223" -> "#page-container .classname_c00223")
 */
.pf_c00223 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00223 { /* 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_c00223.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00223 { /* 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_c00223 { /* 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_c00223 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00223 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00223 {overflow:visible;}
  }
}
.c_c00223 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00223 { /* 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_c00223:after { /* webkit #35443 */
  content: '';
}
.t_c00223:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00223 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 */
}
.__c00223 { /* 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_c00223 { /* info for Javascript */
  display:none;
}
.l_c00223 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00223 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00223 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00223: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_c00223 {
    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_c00223.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00223.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_c00223 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00223{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00223;src:url('chunks/assets/font_7ef351174269f1343c6a59b1.woff2')format("woff");}.ff1_c00223{font-family:ff1_c00223;line-height:1.000000;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;}
.m1_c00223{transform:matrix(0.467305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467305,0.000000,0.000000,0.250000,0,0);}
.m0_c00223{transform:matrix(0.526155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526155,0.000000,0.000000,0.250000,0,0);}
.v0_c00223{vertical-align:0.000000px;}
.ls0_c00223{letter-spacing:0.000000px;}
.sc__c00223{text-shadow:none;}
.sc0_c00223{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__c00223{-webkit-text-stroke:0px transparent;}
.sc0_c00223{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00223{word-spacing:0.000000px;}
.fc0_c00223{color:transparent;}
.fs0_c00223{font-size:30.000000px;}
.y0_c00223{bottom:0.000000px;}
.y2_c00223{bottom:230.580000px;}
.y1_c00223{bottom:234.630000px;}
.h1_c00223{height:30.000000px;}
.h0_c00223{height:682.500000px;}
.w0_c00223{width:941.700000px;}
.w1_c00223{width:942.000000px;}
.x0_c00223{left:0.000000px;}
.x2_c00223{left:752.760000px;}
.x1_c00223{left:754.380000px;}
@media print{
.v0_c00223{vertical-align:0.000000pt;}
.ls0_c00223{letter-spacing:0.000000pt;}
.ws0_c00223{word-spacing:0.000000pt;}
.fs0_c00223{font-size:26.666667pt;}
.y0_c00223{bottom:0.000000pt;}
.y2_c00223{bottom:204.960000pt;}
.y1_c00223{bottom:208.560000pt;}
.h1_c00223{height:26.666667pt;}
.h0_c00223{height:606.666667pt;}
.w0_c00223{width:837.066667pt;}
.w1_c00223{width:837.333333pt;}
.x0_c00223{left:0.000000pt;}
.x2_c00223{left:669.120000pt;}
.x1_c00223{left:670.560000pt;}
}





/* 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_c00224 {
    display:none;
  }
  .loading-indicator_c00224.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00224 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_c00224 { 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_c00224" -> "#page-container .classname_c00224")
 */
.pf_c00224 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00224 { /* 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_c00224.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00224 { /* 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_c00224 { /* 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_c00224 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00224 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00224 {overflow:visible;}
  }
}
.c_c00224 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00224 { /* 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_c00224:after { /* webkit #35443 */
  content: '';
}
.t_c00224:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00224 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 */
}
.__c00224 { /* 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_c00224 { /* info for Javascript */
  display:none;
}
.l_c00224 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00224 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00224 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00224: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_c00224 {
    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_c00224.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00224.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_c00224 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00224{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00224;src:url('chunks/assets/font_c605e72f209fc835e906f064.woff2')format("woff");}.ff1_c00224{font-family:ff1_c00224;line-height:1.000000;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;}
.md2_c00224{transform:matrix(0.000453,0.014133,-0.249872,0.008004,0,0);-ms-transform:matrix(0.000453,0.014133,-0.249872,0.008004,0,0);-webkit-transform:matrix(0.000453,0.014133,-0.249872,0.008004,0,0);}
.mab_c00224{transform:matrix(0.000906,0.028271,-0.249872,0.008004,0,0);-ms-transform:matrix(0.000906,0.028271,-0.249872,0.008004,0,0);-webkit-transform:matrix(0.000906,0.028271,-0.249872,0.008004,0,0);}
.m22_c00224{transform:matrix(0.002319,0.193271,-0.249982,0.003000,0,0);-ms-transform:matrix(0.002319,0.193271,-0.249982,0.003000,0,0);-webkit-transform:matrix(0.002319,0.193271,-0.249982,0.003000,0,0);}
.m83_c00224{transform:matrix(0.002323,0.072523,-0.249872,0.008004,0,0);-ms-transform:matrix(0.002323,0.072523,-0.249872,0.008004,0,0);-webkit-transform:matrix(0.002323,0.072523,-0.249872,0.008004,0,0);}
.m85_c00224{transform:matrix(0.002385,0.074452,-0.249872,0.008004,0,0);-ms-transform:matrix(0.002385,0.074452,-0.249872,0.008004,0,0);-webkit-transform:matrix(0.002385,0.074452,-0.249872,0.008004,0,0);}
.m1e_c00224{transform:matrix(0.002447,0.203885,-0.249982,0.003000,0,0);-ms-transform:matrix(0.002447,0.203885,-0.249982,0.003000,0,0);-webkit-transform:matrix(0.002447,0.203885,-0.249982,0.003000,0,0);}
.m1f_c00224{transform:matrix(0.002503,0.208620,-0.249982,0.003000,0,0);-ms-transform:matrix(0.002503,0.208620,-0.249982,0.003000,0,0);-webkit-transform:matrix(0.002503,0.208620,-0.249982,0.003000,0,0);}
.m20_c00224{transform:matrix(0.002666,0.222144,-0.249982,0.003000,0,0);-ms-transform:matrix(0.002666,0.222144,-0.249982,0.003000,0,0);-webkit-transform:matrix(0.002666,0.222144,-0.249982,0.003000,0,0);}
.m13_c00224{transform:matrix(0.002720,0.151121,-0.249960,0.004499,0,0);-ms-transform:matrix(0.002720,0.151121,-0.249960,0.004499,0,0);-webkit-transform:matrix(0.002720,0.151121,-0.249960,0.004499,0,0);}
.m21_c00224{transform:matrix(0.003041,0.253427,-0.249982,0.003000,0,0);-ms-transform:matrix(0.003041,0.253427,-0.249982,0.003000,0,0);-webkit-transform:matrix(0.003041,0.253427,-0.249982,0.003000,0,0);}
.m0_c00224{transform:matrix(0.003160,0.395042,-0.249992,0.002000,0,0);-ms-transform:matrix(0.003160,0.395042,-0.249992,0.002000,0,0);-webkit-transform:matrix(0.003160,0.395042,-0.249992,0.002000,0,0);}
.m12_c00224{transform:matrix(0.003163,0.175737,-0.249960,0.004499,0,0);-ms-transform:matrix(0.003163,0.175737,-0.249960,0.004499,0,0);-webkit-transform:matrix(0.003163,0.175737,-0.249960,0.004499,0,0);}
.m11_c00224{transform:matrix(0.003205,0.178036,-0.249960,0.004499,0,0);-ms-transform:matrix(0.003205,0.178036,-0.249960,0.004499,0,0);-webkit-transform:matrix(0.003205,0.178036,-0.249960,0.004499,0,0);}
.m2f_c00224{transform:matrix(0.003206,0.178126,-0.249960,0.004499,0,0);-ms-transform:matrix(0.003206,0.178126,-0.249960,0.004499,0,0);-webkit-transform:matrix(0.003206,0.178126,-0.249960,0.004499,0,0);}
.m8_c00224{transform:matrix(0.003239,0.179931,-0.249960,0.004499,0,0);-ms-transform:matrix(0.003239,0.179931,-0.249960,0.004499,0,0);-webkit-transform:matrix(0.003239,0.179931,-0.249960,0.004499,0,0);}
.m26_c00224{transform:matrix(0.003251,0.180596,-0.249960,0.004499,0,0);-ms-transform:matrix(0.003251,0.180596,-0.249960,0.004499,0,0);-webkit-transform:matrix(0.003251,0.180596,-0.249960,0.004499,0,0);}
.m5b_c00224{transform:matrix(0.003253,0.162647,-0.249950,0.004999,0,0);-ms-transform:matrix(0.003253,0.162647,-0.249950,0.004999,0,0);-webkit-transform:matrix(0.003253,0.162647,-0.249950,0.004999,0,0);}
.m29_c00224{transform:matrix(0.003291,0.182840,-0.249960,0.004499,0,0);-ms-transform:matrix(0.003291,0.182840,-0.249960,0.004499,0,0);-webkit-transform:matrix(0.003291,0.182840,-0.249960,0.004499,0,0);}
.m10_c00224{transform:matrix(0.003340,0.185545,-0.249960,0.004499,0,0);-ms-transform:matrix(0.003340,0.185545,-0.249960,0.004499,0,0);-webkit-transform:matrix(0.003340,0.185545,-0.249960,0.004499,0,0);}
.m5a_c00224{transform:matrix(0.003477,0.173850,-0.249950,0.004999,0,0);-ms-transform:matrix(0.003477,0.173850,-0.249950,0.004999,0,0);-webkit-transform:matrix(0.003477,0.173850,-0.249950,0.004999,0,0);}
.me_c00224{transform:matrix(0.003564,0.197973,-0.249960,0.004499,0,0);-ms-transform:matrix(0.003564,0.197973,-0.249960,0.004499,0,0);-webkit-transform:matrix(0.003564,0.197973,-0.249960,0.004499,0,0);}
.m4c_c00224{transform:matrix(0.003623,0.181154,-0.249950,0.004999,0,0);-ms-transform:matrix(0.003623,0.181154,-0.249950,0.004999,0,0);-webkit-transform:matrix(0.003623,0.181154,-0.249950,0.004999,0,0);}
.m4d_c00224{transform:matrix(0.003626,0.181284,-0.249950,0.004999,0,0);-ms-transform:matrix(0.003626,0.181284,-0.249950,0.004999,0,0);-webkit-transform:matrix(0.003626,0.181284,-0.249950,0.004999,0,0);}
.m2d_c00224{transform:matrix(0.003650,0.202777,-0.249960,0.004499,0,0);-ms-transform:matrix(0.003650,0.202777,-0.249960,0.004499,0,0);-webkit-transform:matrix(0.003650,0.202777,-0.249960,0.004499,0,0);}
.ma_c00224{transform:matrix(0.003672,0.204017,-0.249960,0.004499,0,0);-ms-transform:matrix(0.003672,0.204017,-0.249960,0.004499,0,0);-webkit-transform:matrix(0.003672,0.204017,-0.249960,0.004499,0,0);}
.md_c00224{transform:matrix(0.003697,0.205367,-0.249960,0.004499,0,0);-ms-transform:matrix(0.003697,0.205367,-0.249960,0.004499,0,0);-webkit-transform:matrix(0.003697,0.205367,-0.249960,0.004499,0,0);}
.m5c_c00224{transform:matrix(0.003699,0.184958,-0.249950,0.004999,0,0);-ms-transform:matrix(0.003699,0.184958,-0.249950,0.004999,0,0);-webkit-transform:matrix(0.003699,0.184958,-0.249950,0.004999,0,0);}
.m51_c00224{transform:matrix(0.003703,0.185133,-0.249950,0.004999,0,0);-ms-transform:matrix(0.003703,0.185133,-0.249950,0.004999,0,0);-webkit-transform:matrix(0.003703,0.185133,-0.249950,0.004999,0,0);}
.m4b_c00224{transform:matrix(0.003706,0.185283,-0.249950,0.004999,0,0);-ms-transform:matrix(0.003706,0.185283,-0.249950,0.004999,0,0);-webkit-transform:matrix(0.003706,0.185283,-0.249950,0.004999,0,0);}
.m2e_c00224{transform:matrix(0.003732,0.207346,-0.249960,0.004499,0,0);-ms-transform:matrix(0.003732,0.207346,-0.249960,0.004499,0,0);-webkit-transform:matrix(0.003732,0.207346,-0.249960,0.004499,0,0);}
.m3c_c00224{transform:matrix(0.003773,0.188642,-0.249950,0.004999,0,0);-ms-transform:matrix(0.003773,0.188642,-0.249950,0.004999,0,0);-webkit-transform:matrix(0.003773,0.188642,-0.249950,0.004999,0,0);}
.m9_c00224{transform:matrix(0.003791,0.210616,-0.249960,0.004499,0,0);-ms-transform:matrix(0.003791,0.210616,-0.249960,0.004499,0,0);-webkit-transform:matrix(0.003791,0.210616,-0.249960,0.004499,0,0);}
.m25_c00224{transform:matrix(0.003837,0.213190,-0.249960,0.004499,0,0);-ms-transform:matrix(0.003837,0.213190,-0.249960,0.004499,0,0);-webkit-transform:matrix(0.003837,0.213190,-0.249960,0.004499,0,0);}
.m2c_c00224{transform:matrix(0.003884,0.215795,-0.249960,0.004499,0,0);-ms-transform:matrix(0.003884,0.215795,-0.249960,0.004499,0,0);-webkit-transform:matrix(0.003884,0.215795,-0.249960,0.004499,0,0);}
.m50_c00224{transform:matrix(0.003893,0.194661,-0.249950,0.004999,0,0);-ms-transform:matrix(0.003893,0.194661,-0.249950,0.004999,0,0);-webkit-transform:matrix(0.003893,0.194661,-0.249950,0.004999,0,0);}
.mcf_c00224{transform:matrix(0.003936,0.122862,-0.249872,0.008004,0,0);-ms-transform:matrix(0.003936,0.122862,-0.249872,0.008004,0,0);-webkit-transform:matrix(0.003936,0.122862,-0.249872,0.008004,0,0);}
.mf_c00224{transform:matrix(0.003996,0.222004,-0.249960,0.004499,0,0);-ms-transform:matrix(0.003996,0.222004,-0.249960,0.004499,0,0);-webkit-transform:matrix(0.003996,0.222004,-0.249960,0.004499,0,0);}
.mce_c00224{transform:matrix(0.004019,0.125456,-0.249872,0.008004,0,0);-ms-transform:matrix(0.004019,0.125456,-0.249872,0.008004,0,0);-webkit-transform:matrix(0.004019,0.125456,-0.249872,0.008004,0,0);}
.m38_c00224{transform:matrix(0.004049,0.202475,-0.249950,0.004999,0,0);-ms-transform:matrix(0.004049,0.202475,-0.249950,0.004999,0,0);-webkit-transform:matrix(0.004049,0.202475,-0.249950,0.004999,0,0);}
.m3_c00224{transform:matrix(0.004087,0.215091,-0.249955,0.004749,0,0);-ms-transform:matrix(0.004087,0.215091,-0.249955,0.004749,0,0);-webkit-transform:matrix(0.004087,0.215091,-0.249955,0.004749,0,0);}
.m39_c00224{transform:matrix(0.004122,0.206114,-0.249950,0.004999,0,0);-ms-transform:matrix(0.004122,0.206114,-0.249950,0.004999,0,0);-webkit-transform:matrix(0.004122,0.206114,-0.249950,0.004999,0,0);}
.m93_c00224{transform:matrix(0.004131,0.128969,-0.249872,0.008004,0,0);-ms-transform:matrix(0.004131,0.128969,-0.249872,0.008004,0,0);-webkit-transform:matrix(0.004131,0.128969,-0.249872,0.008004,0,0);}
.m2a_c00224{transform:matrix(0.004147,0.230383,-0.249960,0.004499,0,0);-ms-transform:matrix(0.004147,0.230383,-0.249960,0.004499,0,0);-webkit-transform:matrix(0.004147,0.230383,-0.249960,0.004499,0,0);}
.m27_c00224{transform:matrix(0.004183,0.232387,-0.249960,0.004499,0,0);-ms-transform:matrix(0.004183,0.232387,-0.249960,0.004499,0,0);-webkit-transform:matrix(0.004183,0.232387,-0.249960,0.004499,0,0);}
.m2b_c00224{transform:matrix(0.004196,0.233102,-0.249960,0.004499,0,0);-ms-transform:matrix(0.004196,0.233102,-0.249960,0.004499,0,0);-webkit-transform:matrix(0.004196,0.233102,-0.249960,0.004499,0,0);}
.m48_c00224{transform:matrix(0.004225,0.211258,-0.249950,0.004999,0,0);-ms-transform:matrix(0.004225,0.211258,-0.249950,0.004999,0,0);-webkit-transform:matrix(0.004225,0.211258,-0.249950,0.004999,0,0);}
.m3a_c00224{transform:matrix(0.004292,0.214607,-0.249950,0.004999,0,0);-ms-transform:matrix(0.004292,0.214607,-0.249950,0.004999,0,0);-webkit-transform:matrix(0.004292,0.214607,-0.249950,0.004999,0,0);}
.mc_c00224{transform:matrix(0.004315,0.239721,-0.249960,0.004499,0,0);-ms-transform:matrix(0.004315,0.239721,-0.249960,0.004499,0,0);-webkit-transform:matrix(0.004315,0.239721,-0.249960,0.004499,0,0);}
.m28_c00224{transform:matrix(0.004318,0.239906,-0.249960,0.004499,0,0);-ms-transform:matrix(0.004318,0.239906,-0.249960,0.004499,0,0);-webkit-transform:matrix(0.004318,0.239906,-0.249960,0.004499,0,0);}
.m4f_c00224{transform:matrix(0.004346,0.217302,-0.249950,0.004999,0,0);-ms-transform:matrix(0.004346,0.217302,-0.249950,0.004999,0,0);-webkit-transform:matrix(0.004346,0.217302,-0.249950,0.004999,0,0);}
.mb_c00224{transform:matrix(0.004388,0.243796,-0.249960,0.004499,0,0);-ms-transform:matrix(0.004388,0.243796,-0.249960,0.004499,0,0);-webkit-transform:matrix(0.004388,0.243796,-0.249960,0.004499,0,0);}
.m61_c00224{transform:matrix(0.004468,0.186166,-0.249928,0.005998,0,0);-ms-transform:matrix(0.004468,0.186166,-0.249928,0.005998,0,0);-webkit-transform:matrix(0.004468,0.186166,-0.249928,0.005998,0,0);}
.m3d_c00224{transform:matrix(0.004490,0.224490,-0.249950,0.004999,0,0);-ms-transform:matrix(0.004490,0.224490,-0.249950,0.004999,0,0);-webkit-transform:matrix(0.004490,0.224490,-0.249950,0.004999,0,0);}
.m4e_c00224{transform:matrix(0.004490,0.224495,-0.249950,0.004999,0,0);-ms-transform:matrix(0.004490,0.224495,-0.249950,0.004999,0,0);-webkit-transform:matrix(0.004490,0.224495,-0.249950,0.004999,0,0);}
.m45_c00224{transform:matrix(0.004529,0.226445,-0.249950,0.004999,0,0);-ms-transform:matrix(0.004529,0.226445,-0.249950,0.004999,0,0);-webkit-transform:matrix(0.004529,0.226445,-0.249950,0.004999,0,0);}
.m3e_c00224{transform:matrix(0.004661,0.233033,-0.249950,0.004999,0,0);-ms-transform:matrix(0.004661,0.233033,-0.249950,0.004999,0,0);-webkit-transform:matrix(0.004661,0.233033,-0.249950,0.004999,0,0);}
.m31_c00224{transform:matrix(0.004707,0.213958,-0.249940,0.005499,0,0);-ms-transform:matrix(0.004707,0.213958,-0.249940,0.005499,0,0);-webkit-transform:matrix(0.004707,0.213958,-0.249940,0.005499,0,0);}
.m4a_c00224{transform:matrix(0.004710,0.235508,-0.249950,0.004999,0,0);-ms-transform:matrix(0.004710,0.235508,-0.249950,0.004999,0,0);-webkit-transform:matrix(0.004710,0.235508,-0.249950,0.004999,0,0);}
.m76_c00224{transform:matrix(0.004737,0.147894,-0.249872,0.008004,0,0);-ms-transform:matrix(0.004737,0.147894,-0.249872,0.008004,0,0);-webkit-transform:matrix(0.004737,0.147894,-0.249872,0.008004,0,0);}
.m5d_c00224{transform:matrix(0.004755,0.237727,-0.249950,0.004999,0,0);-ms-transform:matrix(0.004755,0.237727,-0.249950,0.004999,0,0);-webkit-transform:matrix(0.004755,0.237727,-0.249950,0.004999,0,0);}
.m40_c00224{transform:matrix(0.004755,0.237747,-0.249950,0.004999,0,0);-ms-transform:matrix(0.004755,0.237747,-0.249950,0.004999,0,0);-webkit-transform:matrix(0.004755,0.237747,-0.249950,0.004999,0,0);}
.m53_c00224{transform:matrix(0.004801,0.240067,-0.249950,0.004999,0,0);-ms-transform:matrix(0.004801,0.240067,-0.249950,0.004999,0,0);-webkit-transform:matrix(0.004801,0.240067,-0.249950,0.004999,0,0);}
.m2_c00224{transform:matrix(0.004831,0.254244,-0.249955,0.004749,0,0);-ms-transform:matrix(0.004831,0.254244,-0.249955,0.004749,0,0);-webkit-transform:matrix(0.004831,0.254244,-0.249955,0.004749,0,0);}
.m36_c00224{transform:matrix(0.004836,0.241797,-0.249950,0.004999,0,0);-ms-transform:matrix(0.004836,0.241797,-0.249950,0.004999,0,0);-webkit-transform:matrix(0.004836,0.241797,-0.249950,0.004999,0,0);}
.m3b_c00224{transform:matrix(0.004899,0.244926,-0.249950,0.004999,0,0);-ms-transform:matrix(0.004899,0.244926,-0.249950,0.004999,0,0);-webkit-transform:matrix(0.004899,0.244926,-0.249950,0.004999,0,0);}
.m33_c00224{transform:matrix(0.004949,0.224946,-0.249940,0.005499,0,0);-ms-transform:matrix(0.004949,0.224946,-0.249940,0.005499,0,0);-webkit-transform:matrix(0.004949,0.224946,-0.249940,0.005499,0,0);}
.m43_c00224{transform:matrix(0.004951,0.247565,-0.249950,0.004999,0,0);-ms-transform:matrix(0.004951,0.247565,-0.249950,0.004999,0,0);-webkit-transform:matrix(0.004951,0.247565,-0.249950,0.004999,0,0);}
.m56_c00224{transform:matrix(0.005044,0.252195,-0.249950,0.004999,0,0);-ms-transform:matrix(0.005044,0.252195,-0.249950,0.004999,0,0);-webkit-transform:matrix(0.005044,0.252195,-0.249950,0.004999,0,0);}
.m49_c00224{transform:matrix(0.005051,0.252554,-0.249950,0.004999,0,0);-ms-transform:matrix(0.005051,0.252554,-0.249950,0.004999,0,0);-webkit-transform:matrix(0.005051,0.252554,-0.249950,0.004999,0,0);}
.m67_c00224{transform:matrix(0.005150,0.198083,-0.249916,0.006498,0,0);-ms-transform:matrix(0.005150,0.198083,-0.249916,0.006498,0,0);-webkit-transform:matrix(0.005150,0.198083,-0.249916,0.006498,0,0);}
.m63_c00224{transform:matrix(0.005156,0.214818,-0.249928,0.005998,0,0);-ms-transform:matrix(0.005156,0.214818,-0.249928,0.005998,0,0);-webkit-transform:matrix(0.005156,0.214818,-0.249928,0.005998,0,0);}
.m65_c00224{transform:matrix(0.005159,0.198428,-0.249916,0.006498,0,0);-ms-transform:matrix(0.005159,0.198428,-0.249916,0.006498,0,0);-webkit-transform:matrix(0.005159,0.198428,-0.249916,0.006498,0,0);}
.m34_c00224{transform:matrix(0.005166,0.234808,-0.249940,0.005499,0,0);-ms-transform:matrix(0.005166,0.234808,-0.249940,0.005499,0,0);-webkit-transform:matrix(0.005166,0.234808,-0.249940,0.005499,0,0);}
.m42_c00224{transform:matrix(0.005184,0.259178,-0.249950,0.004999,0,0);-ms-transform:matrix(0.005184,0.259178,-0.249950,0.004999,0,0);-webkit-transform:matrix(0.005184,0.259178,-0.249950,0.004999,0,0);}
.m46_c00224{transform:matrix(0.005193,0.259673,-0.249950,0.004999,0,0);-ms-transform:matrix(0.005193,0.259673,-0.249950,0.004999,0,0);-webkit-transform:matrix(0.005193,0.259673,-0.249950,0.004999,0,0);}
.m60_c00224{transform:matrix(0.005263,0.219277,-0.249928,0.005998,0,0);-ms-transform:matrix(0.005263,0.219277,-0.249928,0.005998,0,0);-webkit-transform:matrix(0.005263,0.219277,-0.249928,0.005998,0,0);}
.mbb_c00224{transform:matrix(0.005400,0.168589,-0.249872,0.008004,0,0);-ms-transform:matrix(0.005400,0.168589,-0.249872,0.008004,0,0);-webkit-transform:matrix(0.005400,0.168589,-0.249872,0.008004,0,0);}
.m55_c00224{transform:matrix(0.005437,0.271851,-0.249950,0.004999,0,0);-ms-transform:matrix(0.005437,0.271851,-0.249950,0.004999,0,0);-webkit-transform:matrix(0.005437,0.271851,-0.249950,0.004999,0,0);}
.mb5_c00224{transform:matrix(0.005459,0.170413,-0.249872,0.008004,0,0);-ms-transform:matrix(0.005459,0.170413,-0.249872,0.008004,0,0);-webkit-transform:matrix(0.005459,0.170413,-0.249872,0.008004,0,0);}
.m44_c00224{transform:matrix(0.005462,0.273080,-0.249950,0.004999,0,0);-ms-transform:matrix(0.005462,0.273080,-0.249950,0.004999,0,0);-webkit-transform:matrix(0.005462,0.273080,-0.249950,0.004999,0,0);}
.me8_c00224{transform:matrix(0.005472,0.170822,-0.249872,0.008004,0,0);-ms-transform:matrix(0.005472,0.170822,-0.249872,0.008004,0,0);-webkit-transform:matrix(0.005472,0.170822,-0.249872,0.008004,0,0);}
.m9d_c00224{transform:matrix(0.005485,0.171242,-0.249872,0.008004,0,0);-ms-transform:matrix(0.005485,0.171242,-0.249872,0.008004,0,0);-webkit-transform:matrix(0.005485,0.171242,-0.249872,0.008004,0,0);}
.m54_c00224{transform:matrix(0.005499,0.274955,-0.249950,0.004999,0,0);-ms-transform:matrix(0.005499,0.274955,-0.249950,0.004999,0,0);-webkit-transform:matrix(0.005499,0.274955,-0.249950,0.004999,0,0);}
.m5f_c00224{transform:matrix(0.005504,0.229329,-0.249928,0.005998,0,0);-ms-transform:matrix(0.005504,0.229329,-0.249928,0.005998,0,0);-webkit-transform:matrix(0.005504,0.229329,-0.249928,0.005998,0,0);}
.m58_c00224{transform:matrix(0.005508,0.275410,-0.249950,0.004999,0,0);-ms-transform:matrix(0.005508,0.275410,-0.249950,0.004999,0,0);-webkit-transform:matrix(0.005508,0.275410,-0.249950,0.004999,0,0);}
.m37_c00224{transform:matrix(0.005524,0.276190,-0.249950,0.004999,0,0);-ms-transform:matrix(0.005524,0.276190,-0.249950,0.004999,0,0);-webkit-transform:matrix(0.005524,0.276190,-0.249950,0.004999,0,0);}
.ma0_c00224{transform:matrix(0.005537,0.172851,-0.249872,0.008004,0,0);-ms-transform:matrix(0.005537,0.172851,-0.249872,0.008004,0,0);-webkit-transform:matrix(0.005537,0.172851,-0.249872,0.008004,0,0);}
.m57_c00224{transform:matrix(0.005537,0.276865,-0.249950,0.004999,0,0);-ms-transform:matrix(0.005537,0.276865,-0.249950,0.004999,0,0);-webkit-transform:matrix(0.005537,0.276865,-0.249950,0.004999,0,0);}
.m41_c00224{transform:matrix(0.005588,0.279379,-0.249950,0.004999,0,0);-ms-transform:matrix(0.005588,0.279379,-0.249950,0.004999,0,0);-webkit-transform:matrix(0.005588,0.279379,-0.249950,0.004999,0,0);}
.mb6_c00224{transform:matrix(0.005659,0.176679,-0.249872,0.008004,0,0);-ms-transform:matrix(0.005659,0.176679,-0.249872,0.008004,0,0);-webkit-transform:matrix(0.005659,0.176679,-0.249872,0.008004,0,0);}
.m4_c00224{transform:matrix(0.005667,0.298246,-0.249955,0.004749,0,0);-ms-transform:matrix(0.005667,0.298246,-0.249955,0.004749,0,0);-webkit-transform:matrix(0.005667,0.298246,-0.249955,0.004749,0,0);}
.mb1_c00224{transform:matrix(0.005676,0.177184,-0.249872,0.008004,0,0);-ms-transform:matrix(0.005676,0.177184,-0.249872,0.008004,0,0);-webkit-transform:matrix(0.005676,0.177184,-0.249872,0.008004,0,0);}
.m86_c00224{transform:matrix(0.005683,0.177419,-0.249872,0.008004,0,0);-ms-transform:matrix(0.005683,0.177419,-0.249872,0.008004,0,0);-webkit-transform:matrix(0.005683,0.177419,-0.249872,0.008004,0,0);}
.mb0_c00224{transform:matrix(0.005689,0.177589,-0.249872,0.008004,0,0);-ms-transform:matrix(0.005689,0.177589,-0.249872,0.008004,0,0);-webkit-transform:matrix(0.005689,0.177589,-0.249872,0.008004,0,0);}
.m69_c00224{transform:matrix(0.005701,0.219266,-0.249916,0.006498,0,0);-ms-transform:matrix(0.005701,0.219266,-0.249916,0.006498,0,0);-webkit-transform:matrix(0.005701,0.219266,-0.249916,0.006498,0,0);}
.m52_c00224{transform:matrix(0.005736,0.286788,-0.249950,0.004999,0,0);-ms-transform:matrix(0.005736,0.286788,-0.249950,0.004999,0,0);-webkit-transform:matrix(0.005736,0.286788,-0.249950,0.004999,0,0);}
.m32_c00224{transform:matrix(0.005759,0.261757,-0.249940,0.005499,0,0);-ms-transform:matrix(0.005759,0.261757,-0.249940,0.005499,0,0);-webkit-transform:matrix(0.005759,0.261757,-0.249940,0.005499,0,0);}
.m5e_c00224{transform:matrix(0.005773,0.288647,-0.249950,0.004999,0,0);-ms-transform:matrix(0.005773,0.288647,-0.249950,0.004999,0,0);-webkit-transform:matrix(0.005773,0.288647,-0.249950,0.004999,0,0);}
.m3f_c00224{transform:matrix(0.005781,0.289032,-0.249950,0.004999,0,0);-ms-transform:matrix(0.005781,0.289032,-0.249950,0.004999,0,0);-webkit-transform:matrix(0.005781,0.289032,-0.249950,0.004999,0,0);}
.mb3_c00224{transform:matrix(0.005818,0.181617,-0.249872,0.008004,0,0);-ms-transform:matrix(0.005818,0.181617,-0.249872,0.008004,0,0);-webkit-transform:matrix(0.005818,0.181617,-0.249872,0.008004,0,0);}
.m66_c00224{transform:matrix(0.005863,0.225484,-0.249916,0.006498,0,0);-ms-transform:matrix(0.005863,0.225484,-0.249916,0.006498,0,0);-webkit-transform:matrix(0.005863,0.225484,-0.249916,0.006498,0,0);}
.m8c_c00224{transform:matrix(0.005865,0.183086,-0.249872,0.008004,0,0);-ms-transform:matrix(0.005865,0.183086,-0.249872,0.008004,0,0);-webkit-transform:matrix(0.005865,0.183086,-0.249872,0.008004,0,0);}
.mbf_c00224{transform:matrix(0.005866,0.183126,-0.249872,0.008004,0,0);-ms-transform:matrix(0.005866,0.183126,-0.249872,0.008004,0,0);-webkit-transform:matrix(0.005866,0.183126,-0.249872,0.008004,0,0);}
.m47_c00224{transform:matrix(0.005891,0.294556,-0.249950,0.004999,0,0);-ms-transform:matrix(0.005891,0.294556,-0.249950,0.004999,0,0);-webkit-transform:matrix(0.005891,0.294556,-0.249950,0.004999,0,0);}
.mb9_c00224{transform:matrix(0.005901,0.184226,-0.249872,0.008004,0,0);-ms-transform:matrix(0.005901,0.184226,-0.249872,0.008004,0,0);-webkit-transform:matrix(0.005901,0.184226,-0.249872,0.008004,0,0);}
.m77_c00224{transform:matrix(0.005945,0.185595,-0.249872,0.008004,0,0);-ms-transform:matrix(0.005945,0.185595,-0.249872,0.008004,0,0);-webkit-transform:matrix(0.005945,0.185595,-0.249872,0.008004,0,0);}
.mb4_c00224{transform:matrix(0.005946,0.185635,-0.249872,0.008004,0,0);-ms-transform:matrix(0.005946,0.185635,-0.249872,0.008004,0,0);-webkit-transform:matrix(0.005946,0.185635,-0.249872,0.008004,0,0);}
.m94_c00224{transform:matrix(0.005961,0.186090,-0.249872,0.008004,0,0);-ms-transform:matrix(0.005961,0.186090,-0.249872,0.008004,0,0);-webkit-transform:matrix(0.005961,0.186090,-0.249872,0.008004,0,0);}
.m7d_c00224{transform:matrix(0.006001,0.187349,-0.249872,0.008004,0,0);-ms-transform:matrix(0.006001,0.187349,-0.249872,0.008004,0,0);-webkit-transform:matrix(0.006001,0.187349,-0.249872,0.008004,0,0);}
.m79_c00224{transform:matrix(0.006015,0.187784,-0.249872,0.008004,0,0);-ms-transform:matrix(0.006015,0.187784,-0.249872,0.008004,0,0);-webkit-transform:matrix(0.006015,0.187784,-0.249872,0.008004,0,0);}
.m8f_c00224{transform:matrix(0.006034,0.188368,-0.249872,0.008004,0,0);-ms-transform:matrix(0.006034,0.188368,-0.249872,0.008004,0,0);-webkit-transform:matrix(0.006034,0.188368,-0.249872,0.008004,0,0);}
.maf_c00224{transform:matrix(0.006067,0.189408,-0.249872,0.008004,0,0);-ms-transform:matrix(0.006067,0.189408,-0.249872,0.008004,0,0);-webkit-transform:matrix(0.006067,0.189408,-0.249872,0.008004,0,0);}
.m7e_c00224{transform:matrix(0.006120,0.191062,-0.249872,0.008004,0,0);-ms-transform:matrix(0.006120,0.191062,-0.249872,0.008004,0,0);-webkit-transform:matrix(0.006120,0.191062,-0.249872,0.008004,0,0);}
.m59_c00224{transform:matrix(0.006136,0.306794,-0.249950,0.004999,0,0);-ms-transform:matrix(0.006136,0.306794,-0.249950,0.004999,0,0);-webkit-transform:matrix(0.006136,0.306794,-0.249950,0.004999,0,0);}
.meb_c00224{transform:matrix(0.006153,0.192096,-0.249872,0.008004,0,0);-ms-transform:matrix(0.006153,0.192096,-0.249872,0.008004,0,0);-webkit-transform:matrix(0.006153,0.192096,-0.249872,0.008004,0,0);}
.m62_c00224{transform:matrix(0.006161,0.256706,-0.249928,0.005998,0,0);-ms-transform:matrix(0.006161,0.256706,-0.249928,0.005998,0,0);-webkit-transform:matrix(0.006161,0.256706,-0.249928,0.005998,0,0);}
.ma1_c00224{transform:matrix(0.006166,0.192501,-0.249872,0.008004,0,0);-ms-transform:matrix(0.006166,0.192501,-0.249872,0.008004,0,0);-webkit-transform:matrix(0.006166,0.192501,-0.249872,0.008004,0,0);}
.m92_c00224{transform:matrix(0.006210,0.193861,-0.249872,0.008004,0,0);-ms-transform:matrix(0.006210,0.193861,-0.249872,0.008004,0,0);-webkit-transform:matrix(0.006210,0.193861,-0.249872,0.008004,0,0);}
.mc0_c00224{transform:matrix(0.006220,0.194185,-0.249872,0.008004,0,0);-ms-transform:matrix(0.006220,0.194185,-0.249872,0.008004,0,0);-webkit-transform:matrix(0.006220,0.194185,-0.249872,0.008004,0,0);}
.m64_c00224{transform:matrix(0.006225,0.239409,-0.249916,0.006498,0,0);-ms-transform:matrix(0.006225,0.239409,-0.249916,0.006498,0,0);-webkit-transform:matrix(0.006225,0.239409,-0.249916,0.006498,0,0);}
.ma3_c00224{transform:matrix(0.006232,0.194560,-0.249872,0.008004,0,0);-ms-transform:matrix(0.006232,0.194560,-0.249872,0.008004,0,0);-webkit-transform:matrix(0.006232,0.194560,-0.249872,0.008004,0,0);}
.m78_c00224{transform:matrix(0.006265,0.195585,-0.249872,0.008004,0,0);-ms-transform:matrix(0.006265,0.195585,-0.249872,0.008004,0,0);-webkit-transform:matrix(0.006265,0.195585,-0.249872,0.008004,0,0);}
.mb2_c00224{transform:matrix(0.006269,0.195700,-0.249872,0.008004,0,0);-ms-transform:matrix(0.006269,0.195700,-0.249872,0.008004,0,0);-webkit-transform:matrix(0.006269,0.195700,-0.249872,0.008004,0,0);}
.m81_c00224{transform:matrix(0.006314,0.197114,-0.249872,0.008004,0,0);-ms-transform:matrix(0.006314,0.197114,-0.249872,0.008004,0,0);-webkit-transform:matrix(0.006314,0.197114,-0.249872,0.008004,0,0);}
.me4_c00224{transform:matrix(0.006317,0.197194,-0.249872,0.008004,0,0);-ms-transform:matrix(0.006317,0.197194,-0.249872,0.008004,0,0);-webkit-transform:matrix(0.006317,0.197194,-0.249872,0.008004,0,0);}
.m89_c00224{transform:matrix(0.006340,0.197938,-0.249872,0.008004,0,0);-ms-transform:matrix(0.006340,0.197938,-0.249872,0.008004,0,0);-webkit-transform:matrix(0.006340,0.197938,-0.249872,0.008004,0,0);}
.maa_c00224{transform:matrix(0.006365,0.198703,-0.249872,0.008004,0,0);-ms-transform:matrix(0.006365,0.198703,-0.249872,0.008004,0,0);-webkit-transform:matrix(0.006365,0.198703,-0.249872,0.008004,0,0);}
.mbe_c00224{transform:matrix(0.006398,0.199728,-0.249872,0.008004,0,0);-ms-transform:matrix(0.006398,0.199728,-0.249872,0.008004,0,0);-webkit-transform:matrix(0.006398,0.199728,-0.249872,0.008004,0,0);}
.md5_c00224{transform:matrix(0.006453,0.201452,-0.249872,0.008004,0,0);-ms-transform:matrix(0.006453,0.201452,-0.249872,0.008004,0,0);-webkit-transform:matrix(0.006453,0.201452,-0.249872,0.008004,0,0);}
.m8d_c00224{transform:matrix(0.006471,0.202001,-0.249872,0.008004,0,0);-ms-transform:matrix(0.006471,0.202001,-0.249872,0.008004,0,0);-webkit-transform:matrix(0.006471,0.202001,-0.249872,0.008004,0,0);}
.m7a_c00224{transform:matrix(0.006474,0.202106,-0.249872,0.008004,0,0);-ms-transform:matrix(0.006474,0.202106,-0.249872,0.008004,0,0);-webkit-transform:matrix(0.006474,0.202106,-0.249872,0.008004,0,0);}
.m7c_c00224{transform:matrix(0.006475,0.202146,-0.249872,0.008004,0,0);-ms-transform:matrix(0.006475,0.202146,-0.249872,0.008004,0,0);-webkit-transform:matrix(0.006475,0.202146,-0.249872,0.008004,0,0);}
.mb8_c00224{transform:matrix(0.006490,0.202621,-0.249872,0.008004,0,0);-ms-transform:matrix(0.006490,0.202621,-0.249872,0.008004,0,0);-webkit-transform:matrix(0.006490,0.202621,-0.249872,0.008004,0,0);}
.mc1_c00224{transform:matrix(0.006571,0.205140,-0.249872,0.008004,0,0);-ms-transform:matrix(0.006571,0.205140,-0.249872,0.008004,0,0);-webkit-transform:matrix(0.006571,0.205140,-0.249872,0.008004,0,0);}
.m6d_c00224{transform:matrix(0.006576,0.205295,-0.249872,0.008004,0,0);-ms-transform:matrix(0.006576,0.205295,-0.249872,0.008004,0,0);-webkit-transform:matrix(0.006576,0.205295,-0.249872,0.008004,0,0);}
.m88_c00224{transform:matrix(0.006580,0.205410,-0.249872,0.008004,0,0);-ms-transform:matrix(0.006580,0.205410,-0.249872,0.008004,0,0);-webkit-transform:matrix(0.006580,0.205410,-0.249872,0.008004,0,0);}
.m71_c00224{transform:matrix(0.006624,0.206804,-0.249872,0.008004,0,0);-ms-transform:matrix(0.006624,0.206804,-0.249872,0.008004,0,0);-webkit-transform:matrix(0.006624,0.206804,-0.249872,0.008004,0,0);}
.m9c_c00224{transform:matrix(0.006636,0.207159,-0.249872,0.008004,0,0);-ms-transform:matrix(0.006636,0.207159,-0.249872,0.008004,0,0);-webkit-transform:matrix(0.006636,0.207159,-0.249872,0.008004,0,0);}
.ma9_c00224{transform:matrix(0.006639,0.207264,-0.249872,0.008004,0,0);-ms-transform:matrix(0.006639,0.207264,-0.249872,0.008004,0,0);-webkit-transform:matrix(0.006639,0.207264,-0.249872,0.008004,0,0);}
.m6c_c00224{transform:matrix(0.006668,0.208168,-0.249872,0.008004,0,0);-ms-transform:matrix(0.006668,0.208168,-0.249872,0.008004,0,0);-webkit-transform:matrix(0.006668,0.208168,-0.249872,0.008004,0,0);}
.m72_c00224{transform:matrix(0.006683,0.208648,-0.249872,0.008004,0,0);-ms-transform:matrix(0.006683,0.208648,-0.249872,0.008004,0,0);-webkit-transform:matrix(0.006683,0.208648,-0.249872,0.008004,0,0);}
.m9e_c00224{transform:matrix(0.006737,0.210307,-0.249872,0.008004,0,0);-ms-transform:matrix(0.006737,0.210307,-0.249872,0.008004,0,0);-webkit-transform:matrix(0.006737,0.210307,-0.249872,0.008004,0,0);}
.mbc_c00224{transform:matrix(0.006746,0.210597,-0.249872,0.008004,0,0);-ms-transform:matrix(0.006746,0.210597,-0.249872,0.008004,0,0);-webkit-transform:matrix(0.006746,0.210597,-0.249872,0.008004,0,0);}
.mc8_c00224{transform:matrix(0.006767,0.211262,-0.249872,0.008004,0,0);-ms-transform:matrix(0.006767,0.211262,-0.249872,0.008004,0,0);-webkit-transform:matrix(0.006767,0.211262,-0.249872,0.008004,0,0);}
.m68_c00224{transform:matrix(0.006769,0.260362,-0.249916,0.006498,0,0);-ms-transform:matrix(0.006769,0.260362,-0.249916,0.006498,0,0);-webkit-transform:matrix(0.006769,0.260362,-0.249916,0.006498,0,0);}
.m90_c00224{transform:matrix(0.006779,0.211631,-0.249872,0.008004,0,0);-ms-transform:matrix(0.006779,0.211631,-0.249872,0.008004,0,0);-webkit-transform:matrix(0.006779,0.211631,-0.249872,0.008004,0,0);}
.m9f_c00224{transform:matrix(0.006792,0.212051,-0.249872,0.008004,0,0);-ms-transform:matrix(0.006792,0.212051,-0.249872,0.008004,0,0);-webkit-transform:matrix(0.006792,0.212051,-0.249872,0.008004,0,0);}
.md6_c00224{transform:matrix(0.006871,0.214510,-0.249872,0.008004,0,0);-ms-transform:matrix(0.006871,0.214510,-0.249872,0.008004,0,0);-webkit-transform:matrix(0.006871,0.214510,-0.249872,0.008004,0,0);}
.m82_c00224{transform:matrix(0.006905,0.215559,-0.249872,0.008004,0,0);-ms-transform:matrix(0.006905,0.215559,-0.249872,0.008004,0,0);-webkit-transform:matrix(0.006905,0.215559,-0.249872,0.008004,0,0);}
.m7b_c00224{transform:matrix(0.006946,0.216859,-0.249872,0.008004,0,0);-ms-transform:matrix(0.006946,0.216859,-0.249872,0.008004,0,0);-webkit-transform:matrix(0.006946,0.216859,-0.249872,0.008004,0,0);}
.md0_c00224{transform:matrix(0.006969,0.217558,-0.249872,0.008004,0,0);-ms-transform:matrix(0.006969,0.217558,-0.249872,0.008004,0,0);-webkit-transform:matrix(0.006969,0.217558,-0.249872,0.008004,0,0);}
.ma5_c00224{transform:matrix(0.006974,0.217718,-0.249872,0.008004,0,0);-ms-transform:matrix(0.006974,0.217718,-0.249872,0.008004,0,0);-webkit-transform:matrix(0.006974,0.217718,-0.249872,0.008004,0,0);}
.me5_c00224{transform:matrix(0.006977,0.217828,-0.249872,0.008004,0,0);-ms-transform:matrix(0.006977,0.217828,-0.249872,0.008004,0,0);-webkit-transform:matrix(0.006977,0.217828,-0.249872,0.008004,0,0);}
.md1_c00224{transform:matrix(0.006980,0.217903,-0.249872,0.008004,0,0);-ms-transform:matrix(0.006980,0.217903,-0.249872,0.008004,0,0);-webkit-transform:matrix(0.006980,0.217903,-0.249872,0.008004,0,0);}
.m8a_c00224{transform:matrix(0.007001,0.218558,-0.249872,0.008004,0,0);-ms-transform:matrix(0.007001,0.218558,-0.249872,0.008004,0,0);-webkit-transform:matrix(0.007001,0.218558,-0.249872,0.008004,0,0);}
.ma8_c00224{transform:matrix(0.007001,0.218573,-0.249872,0.008004,0,0);-ms-transform:matrix(0.007001,0.218573,-0.249872,0.008004,0,0);-webkit-transform:matrix(0.007001,0.218573,-0.249872,0.008004,0,0);}
.mc2_c00224{transform:matrix(0.007009,0.218798,-0.249872,0.008004,0,0);-ms-transform:matrix(0.007009,0.218798,-0.249872,0.008004,0,0);-webkit-transform:matrix(0.007009,0.218798,-0.249872,0.008004,0,0);}
.m99_c00224{transform:matrix(0.007014,0.218973,-0.249872,0.008004,0,0);-ms-transform:matrix(0.007014,0.218973,-0.249872,0.008004,0,0);-webkit-transform:matrix(0.007014,0.218973,-0.249872,0.008004,0,0);}
.m23_c00224{transform:matrix(0.007079,0.353974,-0.249950,0.004999,0,0);-ms-transform:matrix(0.007079,0.353974,-0.249950,0.004999,0,0);-webkit-transform:matrix(0.007079,0.353974,-0.249950,0.004999,0,0);}
.me2_c00224{transform:matrix(0.007110,0.221966,-0.249872,0.008004,0,0);-ms-transform:matrix(0.007110,0.221966,-0.249872,0.008004,0,0);-webkit-transform:matrix(0.007110,0.221966,-0.249872,0.008004,0,0);}
.mb7_c00224{transform:matrix(0.007141,0.222926,-0.249872,0.008004,0,0);-ms-transform:matrix(0.007141,0.222926,-0.249872,0.008004,0,0);-webkit-transform:matrix(0.007141,0.222926,-0.249872,0.008004,0,0);}
.ma4_c00224{transform:matrix(0.007176,0.224020,-0.249872,0.008004,0,0);-ms-transform:matrix(0.007176,0.224020,-0.249872,0.008004,0,0);-webkit-transform:matrix(0.007176,0.224020,-0.249872,0.008004,0,0);}
.mba_c00224{transform:matrix(0.007188,0.224385,-0.249872,0.008004,0,0);-ms-transform:matrix(0.007188,0.224385,-0.249872,0.008004,0,0);-webkit-transform:matrix(0.007188,0.224385,-0.249872,0.008004,0,0);}
.mc7_c00224{transform:matrix(0.007234,0.225824,-0.249872,0.008004,0,0);-ms-transform:matrix(0.007234,0.225824,-0.249872,0.008004,0,0);-webkit-transform:matrix(0.007234,0.225824,-0.249872,0.008004,0,0);}
.md4_c00224{transform:matrix(0.007287,0.227493,-0.249872,0.008004,0,0);-ms-transform:matrix(0.007287,0.227493,-0.249872,0.008004,0,0);-webkit-transform:matrix(0.007287,0.227493,-0.249872,0.008004,0,0);}
.ma2_c00224{transform:matrix(0.007297,0.227808,-0.249872,0.008004,0,0);-ms-transform:matrix(0.007297,0.227808,-0.249872,0.008004,0,0);-webkit-transform:matrix(0.007297,0.227808,-0.249872,0.008004,0,0);}
.ma7_c00224{transform:matrix(0.007318,0.228473,-0.249872,0.008004,0,0);-ms-transform:matrix(0.007318,0.228473,-0.249872,0.008004,0,0);-webkit-transform:matrix(0.007318,0.228473,-0.249872,0.008004,0,0);}
.m6e_c00224{transform:matrix(0.007374,0.230197,-0.249872,0.008004,0,0);-ms-transform:matrix(0.007374,0.230197,-0.249872,0.008004,0,0);-webkit-transform:matrix(0.007374,0.230197,-0.249872,0.008004,0,0);}
.md3_c00224{transform:matrix(0.007374,0.230222,-0.249872,0.008004,0,0);-ms-transform:matrix(0.007374,0.230222,-0.249872,0.008004,0,0);-webkit-transform:matrix(0.007374,0.230222,-0.249872,0.008004,0,0);}
.mc5_c00224{transform:matrix(0.007411,0.231376,-0.249872,0.008004,0,0);-ms-transform:matrix(0.007411,0.231376,-0.249872,0.008004,0,0);-webkit-transform:matrix(0.007411,0.231376,-0.249872,0.008004,0,0);}
.m75_c00224{transform:matrix(0.007413,0.231411,-0.249872,0.008004,0,0);-ms-transform:matrix(0.007413,0.231411,-0.249872,0.008004,0,0);-webkit-transform:matrix(0.007413,0.231411,-0.249872,0.008004,0,0);}
.mc4_c00224{transform:matrix(0.007439,0.232226,-0.249872,0.008004,0,0);-ms-transform:matrix(0.007439,0.232226,-0.249872,0.008004,0,0);-webkit-transform:matrix(0.007439,0.232226,-0.249872,0.008004,0,0);}
.me6_c00224{transform:matrix(0.007443,0.232371,-0.249872,0.008004,0,0);-ms-transform:matrix(0.007443,0.232371,-0.249872,0.008004,0,0);-webkit-transform:matrix(0.007443,0.232371,-0.249872,0.008004,0,0);}
.m80_c00224{transform:matrix(0.007474,0.233330,-0.249872,0.008004,0,0);-ms-transform:matrix(0.007474,0.233330,-0.249872,0.008004,0,0);-webkit-transform:matrix(0.007474,0.233330,-0.249872,0.008004,0,0);}
.m74_c00224{transform:matrix(0.007514,0.234575,-0.249872,0.008004,0,0);-ms-transform:matrix(0.007514,0.234575,-0.249872,0.008004,0,0);-webkit-transform:matrix(0.007514,0.234575,-0.249872,0.008004,0,0);}
.m8e_c00224{transform:matrix(0.007535,0.235219,-0.249872,0.008004,0,0);-ms-transform:matrix(0.007535,0.235219,-0.249872,0.008004,0,0);-webkit-transform:matrix(0.007535,0.235219,-0.249872,0.008004,0,0);}
.m96_c00224{transform:matrix(0.007594,0.237078,-0.249872,0.008004,0,0);-ms-transform:matrix(0.007594,0.237078,-0.249872,0.008004,0,0);-webkit-transform:matrix(0.007594,0.237078,-0.249872,0.008004,0,0);}
.m7f_c00224{transform:matrix(0.007601,0.237278,-0.249872,0.008004,0,0);-ms-transform:matrix(0.007601,0.237278,-0.249872,0.008004,0,0);-webkit-transform:matrix(0.007601,0.237278,-0.249872,0.008004,0,0);}
.m87_c00224{transform:matrix(0.007657,0.239057,-0.249872,0.008004,0,0);-ms-transform:matrix(0.007657,0.239057,-0.249872,0.008004,0,0);-webkit-transform:matrix(0.007657,0.239057,-0.249872,0.008004,0,0);}
.m8b_c00224{transform:matrix(0.007660,0.239147,-0.249872,0.008004,0,0);-ms-transform:matrix(0.007660,0.239147,-0.249872,0.008004,0,0);-webkit-transform:matrix(0.007660,0.239147,-0.249872,0.008004,0,0);}
.mea_c00224{transform:matrix(0.007747,0.241856,-0.249872,0.008004,0,0);-ms-transform:matrix(0.007747,0.241856,-0.249872,0.008004,0,0);-webkit-transform:matrix(0.007747,0.241856,-0.249872,0.008004,0,0);}
.mc6_c00224{transform:matrix(0.007779,0.242865,-0.249872,0.008004,0,0);-ms-transform:matrix(0.007779,0.242865,-0.249872,0.008004,0,0);-webkit-transform:matrix(0.007779,0.242865,-0.249872,0.008004,0,0);}
.m73_c00224{transform:matrix(0.007810,0.243805,-0.249872,0.008004,0,0);-ms-transform:matrix(0.007810,0.243805,-0.249872,0.008004,0,0);-webkit-transform:matrix(0.007810,0.243805,-0.249872,0.008004,0,0);}
.m98_c00224{transform:matrix(0.007830,0.244430,-0.249872,0.008004,0,0);-ms-transform:matrix(0.007830,0.244430,-0.249872,0.008004,0,0);-webkit-transform:matrix(0.007830,0.244430,-0.249872,0.008004,0,0);}
.me1_c00224{transform:matrix(0.007959,0.248458,-0.249872,0.008004,0,0);-ms-transform:matrix(0.007959,0.248458,-0.249872,0.008004,0,0);-webkit-transform:matrix(0.007959,0.248458,-0.249872,0.008004,0,0);}
.m6f_c00224{transform:matrix(0.007967,0.248732,-0.249872,0.008004,0,0);-ms-transform:matrix(0.007967,0.248732,-0.249872,0.008004,0,0);-webkit-transform:matrix(0.007967,0.248732,-0.249872,0.008004,0,0);}
.mc3_c00224{transform:matrix(0.007987,0.249342,-0.249872,0.008004,0,0);-ms-transform:matrix(0.007987,0.249342,-0.249872,0.008004,0,0);-webkit-transform:matrix(0.007987,0.249342,-0.249872,0.008004,0,0);}
.m35_c00224{transform:matrix(0.008146,0.280912,-0.249895,0.007247,0,0);-ms-transform:matrix(0.008146,0.280912,-0.249895,0.007247,0,0);-webkit-transform:matrix(0.008146,0.280912,-0.249895,0.007247,0,0);}
.m84_c00224{transform:matrix(0.008206,0.256189,-0.249872,0.008004,0,0);-ms-transform:matrix(0.008206,0.256189,-0.249872,0.008004,0,0);-webkit-transform:matrix(0.008206,0.256189,-0.249872,0.008004,0,0);}
.mc9_c00224{transform:matrix(0.008210,0.256314,-0.249872,0.008004,0,0);-ms-transform:matrix(0.008210,0.256314,-0.249872,0.008004,0,0);-webkit-transform:matrix(0.008210,0.256314,-0.249872,0.008004,0,0);}
.mbd_c00224{transform:matrix(0.008212,0.256379,-0.249872,0.008004,0,0);-ms-transform:matrix(0.008212,0.256379,-0.249872,0.008004,0,0);-webkit-transform:matrix(0.008212,0.256379,-0.249872,0.008004,0,0);}
.mca_c00224{transform:matrix(0.008317,0.259647,-0.249872,0.008004,0,0);-ms-transform:matrix(0.008317,0.259647,-0.249872,0.008004,0,0);-webkit-transform:matrix(0.008317,0.259647,-0.249872,0.008004,0,0);}
.mda_c00224{transform:matrix(0.008348,0.260621,-0.249872,0.008004,0,0);-ms-transform:matrix(0.008348,0.260621,-0.249872,0.008004,0,0);-webkit-transform:matrix(0.008348,0.260621,-0.249872,0.008004,0,0);}
.mcd_c00224{transform:matrix(0.008363,0.261071,-0.249872,0.008004,0,0);-ms-transform:matrix(0.008363,0.261071,-0.249872,0.008004,0,0);-webkit-transform:matrix(0.008363,0.261071,-0.249872,0.008004,0,0);}
.m70_c00224{transform:matrix(0.008393,0.262016,-0.249872,0.008004,0,0);-ms-transform:matrix(0.008393,0.262016,-0.249872,0.008004,0,0);-webkit-transform:matrix(0.008393,0.262016,-0.249872,0.008004,0,0);}
.mcc_c00224{transform:matrix(0.008688,0.271236,-0.249872,0.008004,0,0);-ms-transform:matrix(0.008688,0.271236,-0.249872,0.008004,0,0);-webkit-transform:matrix(0.008688,0.271236,-0.249872,0.008004,0,0);}
.mad_c00224{transform:matrix(0.008697,0.271501,-0.249872,0.008004,0,0);-ms-transform:matrix(0.008697,0.271501,-0.249872,0.008004,0,0);-webkit-transform:matrix(0.008697,0.271501,-0.249872,0.008004,0,0);}
.mcb_c00224{transform:matrix(0.008708,0.271861,-0.249872,0.008004,0,0);-ms-transform:matrix(0.008708,0.271861,-0.249872,0.008004,0,0);-webkit-transform:matrix(0.008708,0.271861,-0.249872,0.008004,0,0);}
.m97_c00224{transform:matrix(0.008853,0.276373,-0.249872,0.008004,0,0);-ms-transform:matrix(0.008853,0.276373,-0.249872,0.008004,0,0);-webkit-transform:matrix(0.008853,0.276373,-0.249872,0.008004,0,0);}
.ma6_c00224{transform:matrix(0.008935,0.278942,-0.249872,0.008004,0,0);-ms-transform:matrix(0.008935,0.278942,-0.249872,0.008004,0,0);-webkit-transform:matrix(0.008935,0.278942,-0.249872,0.008004,0,0);}
.m9a_c00224{transform:matrix(0.008956,0.279582,-0.249872,0.008004,0,0);-ms-transform:matrix(0.008956,0.279582,-0.249872,0.008004,0,0);-webkit-transform:matrix(0.008956,0.279582,-0.249872,0.008004,0,0);}
.mdc_c00224{transform:matrix(0.009297,0.290226,-0.249872,0.008004,0,0);-ms-transform:matrix(0.009297,0.290226,-0.249872,0.008004,0,0);-webkit-transform:matrix(0.009297,0.290226,-0.249872,0.008004,0,0);}
.md9_c00224{transform:matrix(0.009303,0.290426,-0.249872,0.008004,0,0);-ms-transform:matrix(0.009303,0.290426,-0.249872,0.008004,0,0);-webkit-transform:matrix(0.009303,0.290426,-0.249872,0.008004,0,0);}
.m95_c00224{transform:matrix(0.009432,0.294449,-0.249872,0.008004,0,0);-ms-transform:matrix(0.009432,0.294449,-0.249872,0.008004,0,0);-webkit-transform:matrix(0.009432,0.294449,-0.249872,0.008004,0,0);}
.mac_c00224{transform:matrix(0.009878,0.308392,-0.249872,0.008004,0,0);-ms-transform:matrix(0.009878,0.308392,-0.249872,0.008004,0,0);-webkit-transform:matrix(0.009878,0.308392,-0.249872,0.008004,0,0);}
.mdb_c00224{transform:matrix(0.010226,0.319246,-0.249872,0.008004,0,0);-ms-transform:matrix(0.010226,0.319246,-0.249872,0.008004,0,0);-webkit-transform:matrix(0.010226,0.319246,-0.249872,0.008004,0,0);}
.m91_c00224{transform:matrix(0.010281,0.320975,-0.249872,0.008004,0,0);-ms-transform:matrix(0.010281,0.320975,-0.249872,0.008004,0,0);-webkit-transform:matrix(0.010281,0.320975,-0.249872,0.008004,0,0);}
.mae_c00224{transform:matrix(0.010716,0.334538,-0.249872,0.008004,0,0);-ms-transform:matrix(0.010716,0.334538,-0.249872,0.008004,0,0);-webkit-transform:matrix(0.010716,0.334538,-0.249872,0.008004,0,0);}
.m9b_c00224{transform:matrix(0.011075,0.345733,-0.249872,0.008004,0,0);-ms-transform:matrix(0.011075,0.345733,-0.249872,0.008004,0,0);-webkit-transform:matrix(0.011075,0.345733,-0.249872,0.008004,0,0);}
.mde_c00224{transform:matrix(0.011369,0.354913,-0.249872,0.008004,0,0);-ms-transform:matrix(0.011369,0.354913,-0.249872,0.008004,0,0);-webkit-transform:matrix(0.011369,0.354913,-0.249872,0.008004,0,0);}
.md8_c00224{transform:matrix(0.011520,0.359631,-0.249872,0.008004,0,0);-ms-transform:matrix(0.011520,0.359631,-0.249872,0.008004,0,0);-webkit-transform:matrix(0.011520,0.359631,-0.249872,0.008004,0,0);}
.m24_c00224{transform:matrix(0.011630,0.646120,-0.249960,0.004499,0,0);-ms-transform:matrix(0.011630,0.646120,-0.249960,0.004499,0,0);-webkit-transform:matrix(0.011630,0.646120,-0.249960,0.004499,0,0);}
.me0_c00224{transform:matrix(0.011698,0.365188,-0.249872,0.008004,0,0);-ms-transform:matrix(0.011698,0.365188,-0.249872,0.008004,0,0);-webkit-transform:matrix(0.011698,0.365188,-0.249872,0.008004,0,0);}
.mdf_c00224{transform:matrix(0.012564,0.392234,-0.249872,0.008004,0,0);-ms-transform:matrix(0.012564,0.392234,-0.249872,0.008004,0,0);-webkit-transform:matrix(0.012564,0.392234,-0.249872,0.008004,0,0);}
.mdd_c00224{transform:matrix(0.012688,0.396107,-0.249872,0.008004,0,0);-ms-transform:matrix(0.012688,0.396107,-0.249872,0.008004,0,0);-webkit-transform:matrix(0.012688,0.396107,-0.249872,0.008004,0,0);}
.me3_c00224{transform:matrix(0.014215,0.443762,-0.249872,0.008004,0,0);-ms-transform:matrix(0.014215,0.443762,-0.249872,0.008004,0,0);-webkit-transform:matrix(0.014215,0.443762,-0.249872,0.008004,0,0);}
.md7_c00224{transform:matrix(0.015720,0.490768,-0.249872,0.008004,0,0);-ms-transform:matrix(0.015720,0.490768,-0.249872,0.008004,0,0);-webkit-transform:matrix(0.015720,0.490768,-0.249872,0.008004,0,0);}
.m6b_c00224{transform:matrix(0.016525,0.515875,-0.249872,0.008004,0,0);-ms-transform:matrix(0.016525,0.515875,-0.249872,0.008004,0,0);-webkit-transform:matrix(0.016525,0.515875,-0.249872,0.008004,0,0);}
.m30_c00224{transform:matrix(0.019583,0.890115,-0.249940,0.005499,0,0);-ms-transform:matrix(0.019583,0.890115,-0.249940,0.005499,0,0);-webkit-transform:matrix(0.019583,0.890115,-0.249940,0.005499,0,0);}
.me9_c00224{transform:matrix(0.023839,0.744228,-0.249872,0.008004,0,0);-ms-transform:matrix(0.023839,0.744228,-0.249872,0.008004,0,0);-webkit-transform:matrix(0.023839,0.744228,-0.249872,0.008004,0,0);}
.me7_c00224{transform:matrix(0.037157,1.160000,-0.249872,0.008004,0,0);-ms-transform:matrix(0.037157,1.160000,-0.249872,0.008004,0,0);-webkit-transform:matrix(0.037157,1.160000,-0.249872,0.008004,0,0);}
.m6a_c00224{transform:matrix(0.042092,1.314051,-0.249872,0.008004,0,0);-ms-transform:matrix(0.042092,1.314051,-0.249872,0.008004,0,0);-webkit-transform:matrix(0.042092,1.314051,-0.249872,0.008004,0,0);}
.m1b_c00224{transform:matrix(0.051152,0.141987,-0.235203,0.084733,0,0);-ms-transform:matrix(0.051152,0.141987,-0.235203,0.084733,0,0);-webkit-transform:matrix(0.051152,0.141987,-0.235203,0.084733,0,0);}
.m1a_c00224{transform:matrix(0.053763,0.149236,-0.235203,0.084733,0,0);-ms-transform:matrix(0.053763,0.149236,-0.235203,0.084733,0,0);-webkit-transform:matrix(0.053763,0.149236,-0.235203,0.084733,0,0);}
.m1c_c00224{transform:matrix(0.057585,0.159844,-0.235203,0.084733,0,0);-ms-transform:matrix(0.057585,0.159844,-0.235203,0.084733,0,0);-webkit-transform:matrix(0.057585,0.159844,-0.235203,0.084733,0,0);}
.m17_c00224{transform:matrix(0.058547,0.162516,-0.235203,0.084733,0,0);-ms-transform:matrix(0.058547,0.162516,-0.235203,0.084733,0,0);-webkit-transform:matrix(0.058547,0.162516,-0.235203,0.084733,0,0);}
.m19_c00224{transform:matrix(0.064841,0.179987,-0.235203,0.084733,0,0);-ms-transform:matrix(0.064841,0.179987,-0.235203,0.084733,0,0);-webkit-transform:matrix(0.064841,0.179987,-0.235203,0.084733,0,0);}
.m16_c00224{transform:matrix(0.065965,0.183105,-0.235203,0.084733,0,0);-ms-transform:matrix(0.065965,0.183105,-0.235203,0.084733,0,0);-webkit-transform:matrix(0.065965,0.183105,-0.235203,0.084733,0,0);}
.m15_c00224{transform:matrix(0.076799,0.213178,-0.235203,0.084733,0,0);-ms-transform:matrix(0.076799,0.213178,-0.235203,0.084733,0,0);-webkit-transform:matrix(0.076799,0.213178,-0.235203,0.084733,0,0);}
.m18_c00224{transform:matrix(0.078836,0.218833,-0.235203,0.084733,0,0);-ms-transform:matrix(0.078836,0.218833,-0.235203,0.084733,0,0);-webkit-transform:matrix(0.078836,0.218833,-0.235203,0.084733,0,0);}
.m14_c00224{transform:matrix(0.081195,0.225381,-0.235203,0.084733,0,0);-ms-transform:matrix(0.081195,0.225381,-0.235203,0.084733,0,0);-webkit-transform:matrix(0.081195,0.225381,-0.235203,0.084733,0,0);}
.m1d_c00224{transform:matrix(0.129035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129035,0.000000,0.000000,0.250000,0,0);}
.m1_c00224{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m5_c00224{transform:matrix(0.211835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211835,0.000000,0.000000,0.250000,0,0);}
.m6_c00224{transform:matrix(0.251560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251560,0.000000,0.000000,0.250000,0,0);}
.m7_c00224{transform:matrix(0.256540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256540,0.000000,0.000000,0.250000,0,0);}
.mec_c00224{transform:matrix(1.206825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.206825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.206825,0.000000,0.000000,0.250000,0,0);}
.v0_c00224{vertical-align:0.000000px;}
.ls0_c00224{letter-spacing:0.000000px;}
.sc__c00224{text-shadow:none;}
.sc0_c00224{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__c00224{-webkit-text-stroke:0px transparent;}
.sc0_c00224{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00224{word-spacing:0.000000px;}
.fc0_c00224{color:transparent;}
.fs4_c00224{font-size:12.000000px;}
.fs1_c00224{font-size:18.000000px;}
.fs3_c00224{font-size:30.000000px;}
.fs18_c00224{font-size:41.979520px;}
.fs16_c00224{font-size:47.976594px;}
.fs10_c00224{font-size:48.009599px;}
.fs14_c00224{font-size:53.973669px;}
.fsf_c00224{font-size:54.010799px;}
.fs12_c00224{font-size:54.015550px;}
.fs13_c00224{font-size:54.018249px;}
.fs15_c00224{font-size:59.970743px;}
.fs11_c00224{font-size:60.011999px;}
.fs7_c00224{font-size:60.012059px;}
.fs17_c00224{font-size:65.967817px;}
.fsc_c00224{font-size:72.011663px;}
.fsd_c00224{font-size:72.017422px;}
.fsa_c00224{font-size:84.006048px;}
.fs5_c00224{font-size:120.019438px;}
.fs8_c00224{font-size:126.025323px;}
.fs6_c00224{font-size:144.023326px;}
.fs9_c00224{font-size:162.011664px;}
.fse_c00224{font-size:162.068107px;}
.fs2_c00224{font-size:198.035736px;}
.fs0_c00224{font-size:234.007488px;}
.fsb_c00224{font-size:240.047995px;}
.y0_c00224{bottom:0.000000px;}
.ye5_c00224{bottom:0.270000px;}
.ye3_c00224{bottom:46.445818px;}
.ye4_c00224{bottom:46.446499px;}
.yd4_c00224{bottom:49.488660px;}
.y8f_c00224{bottom:67.033762px;}
.y2f_c00224{bottom:71.724000px;}
.y51_c00224{bottom:82.280760px;}
.y75_c00224{bottom:84.274574px;}
.y82_c00224{bottom:84.799182px;}
.y47_c00224{bottom:88.213500px;}
.ycf_c00224{bottom:92.603403px;}
.y50_c00224{bottom:102.796230px;}
.y3d_c00224{bottom:104.695500px;}
.ybc_c00224{bottom:106.633800px;}
.y8e_c00224{bottom:116.419039px;}
.y3c_c00224{bottom:117.415500px;}
.y14_c00224{bottom:119.507487px;}
.y81_c00224{bottom:122.039351px;}
.y46_c00224{bottom:124.936500px;}
.ybb_c00224{bottom:126.882498px;}
.y1d_c00224{bottom:135.690069px;}
.y74_c00224{bottom:138.235559px;}
.yc7_c00224{bottom:146.662071px;}
.y4f_c00224{bottom:152.224170px;}
.y2e_c00224{bottom:153.324000px;}
.y45_c00224{bottom:153.561000px;}
.yce_c00224{bottom:156.560010px;}
.y5e_c00224{bottom:165.444000px;}
.y8d_c00224{bottom:165.786334px;}
.y10_c00224{bottom:170.682000px;}
.y1c_c00224{bottom:174.118776px;}
.y9b_c00224{bottom:176.006544px;}
.ycd_c00224{bottom:176.528622px;}
.y3b_c00224{bottom:182.191500px;}
.y2d_c00224{bottom:186.754500px;}
.y73_c00224{bottom:188.119125px;}
.y80_c00224{bottom:188.678970px;}
.y5d_c00224{bottom:189.756000px;}
.y13_c00224{bottom:191.462175px;}
.y8c_c00224{bottom:192.454596px;}
.yc6_c00224{bottom:196.007752px;}
.y5c_c00224{bottom:200.284500px;}
.yaf_c00224{bottom:200.290162px;}
.ye2_c00224{bottom:202.976298px;}
.y4e_c00224{bottom:204.604110px;}
.y72_c00224{bottom:207.268457px;}
.y1b_c00224{bottom:208.604410px;}
.yba_c00224{bottom:209.998483px;}
.yf_c00224{bottom:214.585500px;}
.y44_c00224{bottom:216.204000px;}
.y9a_c00224{bottom:219.981948px;}
.y56_c00224{bottom:220.879350px;}
.y2c_c00224{bottom:224.023500px;}
.y4d_c00224{bottom:224.315580px;}
.y71_c00224{bottom:232.618581px;}
.y5b_c00224{bottom:233.493000px;}
.y43_c00224{bottom:240.504000px;}
.y3a_c00224{bottom:241.600500px;}
.y99_c00224{bottom:242.917014px;}
.yae_c00224{bottom:250.487307px;}
.y4c_c00224{bottom:251.045550px;}
.y7f_c00224{bottom:253.167666px;}
.yc5_c00224{bottom:253.986175px;}
.yb9_c00224{bottom:261.284328px;}
.y98_c00224{bottom:261.810732px;}
.y5a_c00224{bottom:263.494500px;}
.y39_c00224{bottom:263.746500px;}
.ycc_c00224{bottom:270.989859px;}
.ye1_c00224{bottom:273.404365px;}
.yad_c00224{bottom:275.316802px;}
.yc4_c00224{bottom:277.465053px;}
.y4b_c00224{bottom:278.056020px;}
.y55_c00224{bottom:284.008320px;}
.y7e_c00224{bottom:291.487043px;}
.y42_c00224{bottom:291.550500px;}
.y38_c00224{bottom:292.911000px;}
.ya3_c00224{bottom:294.761511px;}
.ye0_c00224{bottom:300.124941px;}
.y70_c00224{bottom:300.911220px;}
.y1a_c00224{bottom:303.184390px;}
.y8b_c00224{bottom:310.389520px;}
.y7d_c00224{bottom:311.188607px;}
.ye_c00224{bottom:311.268000px;}
.y2b_c00224{bottom:315.568500px;}
.yb8_c00224{bottom:316.593538px;}
.yac_c00224{bottom:321.727248px;}
.y59_c00224{bottom:323.433000px;}
.y97_c00224{bottom:331.710267px;}
.ycb_c00224{bottom:338.728813px;}
.yab_c00224{bottom:339.929235px;}
.y54_c00224{bottom:341.807910px;}
.ydf_c00224{bottom:346.265074px;}
.y7c_c00224{bottom:346.540185px;}
.y96_c00224{bottom:351.413463px;}
.y4a_c00224{bottom:352.598400px;}
.y41_c00224{bottom:353.676000px;}
.y21_c00224{bottom:354.492000px;}
.y58_c00224{bottom:360.436500px;}
.y53_c00224{bottom:362.064930px;}
.y6f_c00224{bottom:365.908658px;}
.ya2_c00224{bottom:367.620018px;}
.y8a_c00224{bottom:369.760972px;}
.y40_c00224{bottom:374.197500px;}
.yd_c00224{bottom:378.520500px;}
.yb7_c00224{bottom:379.736646px;}
.y2a_c00224{bottom:386.383500px;}
.yc3_c00224{bottom:390.855603px;}
.y37_c00224{bottom:390.955500px;}
.y5_c00224{bottom:392.259000px;}
.yca_c00224{bottom:392.423772px;}
.yb6_c00224{bottom:399.985344px;}
.y6e_c00224{bottom:400.476056px;}
.yd3_c00224{bottom:402.137251px;}
.y57_c00224{bottom:406.614000px;}
.y49_c00224{bottom:409.904310px;}
.yc9_c00224{bottom:412.941075px;}
.y6d_c00224{bottom:417.425589px;}
.y89_c00224{bottom:418.078981px;}
.ya1_c00224{bottom:422.183668px;}
.yb5_c00224{bottom:426.696331px;}
.y6c_c00224{bottom:435.767229px;}
.y4_c00224{bottom:439.219500px;}
.yc2_c00224{bottom:441.268552px;}
.yc8_c00224{bottom:441.271968px;}
.yd2_c00224{bottom:441.531228px;}
.ya0_c00224{bottom:442.089892px;}
.y95_c00224{bottom:442.623114px;}
.y88_c00224{bottom:442.888527px;}
.y7b_c00224{bottom:443.201229px;}
.y52_c00224{bottom:443.619450px;}
.y36_c00224{bottom:443.886000px;}
.y29_c00224{bottom:444.640500px;}
.y48_c00224{bottom:445.256250px;}
.y3f_c00224{bottom:449.815500px;}
.y3e_c00224{bottom:459.010500px;}
.y12_c00224{bottom:472.448319px;}
.yc_c00224{bottom:482.563500px;}
.y94_c00224{bottom:487.288068px;}
.y69_c00224{bottom:489.985500px;}
.yde_c00224{bottom:497.728782px;}
.y87_c00224{bottom:498.930754px;}
.ya9_c00224{bottom:506.110698px;}
.y34_c00224{bottom:506.736000px;}
.y9f_c00224{bottom:508.072668px;}
.y6b_c00224{bottom:509.075348px;}
.y7a_c00224{bottom:509.176821px;}
.y63_c00224{bottom:515.923500px;}
.y93_c00224{bottom:518.331352px;}
.y20_c00224{bottom:518.643000px;}
.yc1_c00224{bottom:522.502528px;}
.yb_c00224{bottom:523.497000px;}
.y33_c00224{bottom:524.904000px;}
.ya8_c00224{bottom:526.027038px;}
.y86_c00224{bottom:527.264377px;}
.y79_c00224{bottom:529.343016px;}
.y28_c00224{bottom:529.705500px;}
.y19_c00224{bottom:533.683059px;}
.y85_c00224{bottom:537.446904px;}
.yb4_c00224{bottom:545.103694px;}
.ydd_c00224{bottom:550.348611px;}
.yc0_c00224{bottom:555.985755px;}
.yb3_c00224{bottom:557.849856px;}
.yd1_c00224{bottom:560.294719px;}
.y68_c00224{bottom:564.870000px;}
.y18_c00224{bottom:568.526338px;}
.yd8_c00224{bottom:569.186392px;}
.y92_c00224{bottom:572.900352px;}
.y9e_c00224{bottom:575.128705px;}
.ydc_c00224{bottom:575.451921px;}
.ybf_c00224{bottom:575.940459px;}
.ya7_c00224{bottom:576.555366px;}
.y27_c00224{bottom:577.551000px;}
.y78_c00224{bottom:579.548666px;}
.yd7_c00224{bottom:582.684235px;}
.y84_c00224{bottom:586.905607px;}
.y9d_c00224{bottom:587.728984px;}
.y67_c00224{bottom:589.368000px;}
.y1f_c00224{bottom:590.470500px;}
.y32_c00224{bottom:594.313500px;}
.ydb_c00224{bottom:595.686855px;}
.y26_c00224{bottom:597.214500px;}
.ybe_c00224{bottom:598.875189px;}
.yb2_c00224{bottom:601.238914px;}
.y62_c00224{bottom:601.302000px;}
.ya6_c00224{bottom:604.294105px;}
.y25_c00224{bottom:612.664500px;}
.yd0_c00224{bottom:615.874944px;}
.ya5_c00224{bottom:616.767310px;}
.y31_c00224{bottom:620.433000px;}
.yb1_c00224{bottom:621.751444px;}
.y61_c00224{bottom:622.324500px;}
.y17_c00224{bottom:624.295348px;}
.yd6_c00224{bottom:624.505723px;}
.y66_c00224{bottom:636.637500px;}
.ya_c00224{bottom:637.722000px;}
.y77_c00224{bottom:643.515740px;}
.y60_c00224{bottom:646.090500px;}
.y65_c00224{bottom:649.876500px;}
.y83_c00224{bottom:651.604408px;}
.y91_c00224{bottom:653.054677px;}
.ya4_c00224{bottom:657.505324px;}
.yda_c00224{bottom:659.692170px;}
.yd5_c00224{bottom:659.925966px;}
.yb0_c00224{bottom:661.163590px;}
.y90_c00224{bottom:667.036083px;}
.ybd_c00224{bottom:667.207255px;}
.yaa_c00224{bottom:667.702959px;}
.y2_c00224{bottom:667.980000px;}
.y9c_c00224{bottom:668.385088px;}
.y76_c00224{bottom:669.697047px;}
.y5f_c00224{bottom:670.686000px;}
.y64_c00224{bottom:671.497500px;}
.y35_c00224{bottom:671.673000px;}
.y6a_c00224{bottom:671.760000px;}
.y23_c00224{bottom:672.817500px;}
.y30_c00224{bottom:680.377500px;}
.y6_c00224{bottom:681.210000px;}
.y24_c00224{bottom:681.288000px;}
.y22_c00224{bottom:681.484776px;}
.y8_c00224{bottom:681.750000px;}
.y7_c00224{bottom:682.020000px;}
.y15_c00224{bottom:682.474500px;}
.y1_c00224{bottom:682.581000px;}
.y16_c00224{bottom:682.635178px;}
.y1e_c00224{bottom:682.662000px;}
.y3_c00224{bottom:682.680000px;}
.y9_c00224{bottom:682.683000px;}
.y11_c00224{bottom:682.690275px;}
.yd9_c00224{bottom:682.894902px;}
.h5_c00224{height:12.000000px;}
.h2_c00224{height:18.000000px;}
.h4_c00224{height:30.000000px;}
.h19_c00224{height:41.979520px;}
.h17_c00224{height:47.976594px;}
.h11_c00224{height:48.009599px;}
.h15_c00224{height:53.973669px;}
.h10_c00224{height:54.010799px;}
.h13_c00224{height:54.015550px;}
.h14_c00224{height:54.018249px;}
.h16_c00224{height:59.970743px;}
.h12_c00224{height:60.011999px;}
.h8_c00224{height:60.012059px;}
.h18_c00224{height:65.967817px;}
.hd_c00224{height:72.011663px;}
.he_c00224{height:72.017422px;}
.hb_c00224{height:84.006048px;}
.h6_c00224{height:120.019438px;}
.h9_c00224{height:126.025323px;}
.h7_c00224{height:144.023326px;}
.ha_c00224{height:162.011664px;}
.hf_c00224{height:162.068107px;}
.h3_c00224{height:198.035736px;}
.h1_c00224{height:234.007488px;}
.hc_c00224{height:240.047995px;}
.h0_c00224{height:682.500000px;}
.w0_c00224{width:941.700000px;}
.w1_c00224{width:942.000000px;}
.x0_c00224{left:0.000000px;}
.x9d_c00224{left:4.255472px;}
.x96_c00224{left:15.462527px;}
.x97_c00224{left:17.558460px;}
.x98_c00224{left:18.647727px;}
.x99_c00224{left:19.911737px;}
.x9a_c00224{left:23.551397px;}
.x9b_c00224{left:24.660350px;}
.x9c_c00224{left:26.995198px;}
.x94_c00224{left:31.935162px;}
.x95_c00224{left:33.986361px;}
.x8f_c00224{left:41.927921px;}
.x90_c00224{left:43.447262px;}
.x91_c00224{left:46.693484px;}
.x92_c00224{left:47.770848px;}
.x93_c00224{left:57.409358px;}
.x8a_c00224{left:62.201676px;}
.x8b_c00224{left:64.103307px;}
.x8c_c00224{left:65.359601px;}
.x8d_c00224{left:67.111854px;}
.x8e_c00224{left:68.669121px;}
.x82_c00224{left:71.602926px;}
.x83_c00224{left:73.074723px;}
.x84_c00224{left:74.721575px;}
.x85_c00224{left:76.471643px;}
.x86_c00224{left:77.558459px;}
.x87_c00224{left:80.002559px;}
.x88_c00224{left:81.758280px;}
.x89_c00224{left:82.821410px;}
.x7a_c00224{left:86.447384px;}
.x7b_c00224{left:87.721877px;}
.x7c_c00224{left:88.913987px;}
.x7d_c00224{left:91.430283px;}
.x7e_c00224{left:93.770570px;}
.x7f_c00224{left:94.946721px;}
.x80_c00224{left:96.037497px;}
.x81_c00224{left:97.804349px;}
.x76_c00224{left:113.162088px;}
.x77_c00224{left:119.608245px;}
.x78_c00224{left:120.878393px;}
.x79_c00224{left:122.353125px;}
.x72_c00224{left:128.276109px;}
.x73_c00224{left:129.306523px;}
.x74_c00224{left:130.323087px;}
.x75_c00224{left:131.601104px;}
.x6c_c00224{left:136.377319px;}
.x6d_c00224{left:138.185379px;}
.x6e_c00224{left:139.970413px;}
.x6f_c00224{left:141.449460px;}
.x70_c00224{left:143.119363px;}
.x71_c00224{left:144.752652px;}
.x65_c00224{left:150.411381px;}
.x66_c00224{left:152.397714px;}
.x67_c00224{left:153.548655px;}
.x68_c00224{left:155.145723px;}
.x69_c00224{left:157.069828px;}
.x6a_c00224{left:158.958961px;}
.x6b_c00224{left:160.768420px;}
.x5d_c00224{left:164.716534px;}
.x5e_c00224{left:166.146952px;}
.x5f_c00224{left:167.240703px;}
.x60_c00224{left:169.332076px;}
.x61_c00224{left:170.948483px;}
.x62_c00224{left:172.260756px;}
.x63_c00224{left:174.868422px;}
.x64_c00224{left:176.549476px;}
.x55_c00224{left:177.662829px;}
.x56_c00224{left:179.797446px;}
.x57_c00224{left:180.987124px;}
.x58_c00224{left:183.027903px;}
.x59_c00224{left:185.318633px;}
.x5a_c00224{left:186.621585px;}
.x4b_c00224{left:187.650000px;}
.x5b_c00224{left:189.056715px;}
.x5c_c00224{left:190.634803px;}
.x4c_c00224{left:192.861120px;}
.x4d_c00224{left:195.209328px;}
.x4e_c00224{left:196.339776px;}
.x4f_c00224{left:197.447040px;}
.x50_c00224{left:199.529040px;}
.x51_c00224{left:201.716592px;}
.x52_c00224{left:203.142000px;}
.x53_c00224{left:204.739872px;}
.x54_c00224{left:206.468352px;}
.x48_c00224{left:216.540000px;}
.x49_c00224{left:218.675367px;}
.x4a_c00224{left:221.259312px;}
.x41_c00224{left:223.290000px;}
.x42_c00224{left:224.953620px;}
.x43_c00224{left:226.152390px;}
.x44_c00224{left:227.416590px;}
.x3d_c00224{left:246.768750px;}
.x3e_c00224{left:248.498880px;}
.x3f_c00224{left:250.154550px;}
.x40_c00224{left:251.493660px;}
.x45_c00224{left:255.150000px;}
.x46_c00224{left:256.310676px;}
.x47_c00224{left:258.864300px;}
.x37_c00224{left:261.081750px;}
.x38_c00224{left:262.942410px;}
.x39_c00224{left:264.439260px;}
.x3a_c00224{left:265.517070px;}
.x3b_c00224{left:266.963400px;}
.x3c_c00224{left:268.366770px;}
.x31_c00224{left:275.400000px;}
.x32_c00224{left:277.096260px;}
.x33_c00224{left:278.749200px;}
.x34_c00224{left:279.770130px;}
.x35_c00224{left:281.508990px;}
.x36_c00224{left:282.815940px;}
.x2b_c00224{left:290.520000px;}
.x2c_c00224{left:291.578610px;}
.x2d_c00224{left:293.539500px;}
.x2e_c00224{left:294.565710px;}
.x2f_c00224{left:295.753890px;}
.x30_c00224{left:297.049410px;}
.x2a_c00224{left:299.964000px;}
.x27_c00224{left:344.238000px;}
.x28_c00224{left:345.556779px;}
.x29_c00224{left:347.658417px;}
.x1e_c00224{left:373.134000px;}
.x1f_c00224{left:374.369223px;}
.x20_c00224{left:375.862485px;}
.x21_c00224{left:377.393655px;}
.x22_c00224{left:378.442281px;}
.x23_c00224{left:379.716951px;}
.x24_c00224{left:381.364761px;}
.x25_c00224{left:382.637352px;}
.x26_c00224{left:384.106152px;}
.x1d_c00224{left:416.790000px;}
.x1c_c00224{left:453.597048px;}
.x19_c00224{left:478.438500px;}
.x1a_c00224{left:479.544798px;}
.x1b_c00224{left:482.376540px;}
.x18_c00224{left:511.650000px;}
.x12_c00224{left:522.982957px;}
.x13_c00224{left:524.267485px;}
.x14_c00224{left:525.494968px;}
.x15_c00224{left:531.338203px;}
.x16_c00224{left:533.421643px;}
.x17_c00224{left:535.027527px;}
.x11_c00224{left:550.831500px;}
.xd_c00224{left:574.010475px;}
.xe_c00224{left:577.602768px;}
.xf_c00224{left:582.402435px;}
.x10_c00224{left:583.631598px;}
.x8_c00224{left:621.538500px;}
.x9_c00224{left:624.403848px;}
.xa_c00224{left:627.013425px;}
.xb_c00224{left:628.223970px;}
.xc_c00224{left:629.964255px;}
.x7_c00224{left:643.410000px;}
.x6_c00224{left:663.930000px;}
.x5_c00224{left:667.710000px;}
.x3_c00224{left:668.787000px;}
.x4_c00224{left:673.412750px;}
.x2_c00224{left:713.340000px;}
.x1_c00224{left:730.890000px;}
@media print{
.v0_c00224{vertical-align:0.000000pt;}
.ls0_c00224{letter-spacing:0.000000pt;}
.ws0_c00224{word-spacing:0.000000pt;}
.fs4_c00224{font-size:10.666667pt;}
.fs1_c00224{font-size:16.000000pt;}
.fs3_c00224{font-size:26.666667pt;}
.fs18_c00224{font-size:37.315129pt;}
.fs16_c00224{font-size:42.645862pt;}
.fs10_c00224{font-size:42.675199pt;}
.fs14_c00224{font-size:47.976594pt;}
.fsf_c00224{font-size:48.009599pt;}
.fs12_c00224{font-size:48.013822pt;}
.fs13_c00224{font-size:48.016221pt;}
.fs15_c00224{font-size:53.307327pt;}
.fs11_c00224{font-size:53.343999pt;}
.fs7_c00224{font-size:53.344052pt;}
.fs17_c00224{font-size:58.638060pt;}
.fsc_c00224{font-size:64.010367pt;}
.fsd_c00224{font-size:64.015486pt;}
.fsa_c00224{font-size:74.672042pt;}
.fs5_c00224{font-size:106.683945pt;}
.fs8_c00224{font-size:112.022510pt;}
.fs6_c00224{font-size:128.020734pt;}
.fs9_c00224{font-size:144.010368pt;}
.fse_c00224{font-size:144.060539pt;}
.fs2_c00224{font-size:176.031765pt;}
.fs0_c00224{font-size:208.006656pt;}
.fsb_c00224{font-size:213.375996pt;}
.y0_c00224{bottom:0.000000pt;}
.ye5_c00224{bottom:0.240000pt;}
.ye3_c00224{bottom:41.285172pt;}
.ye4_c00224{bottom:41.285777pt;}
.yd4_c00224{bottom:43.989920pt;}
.y8f_c00224{bottom:59.585567pt;}
.y2f_c00224{bottom:63.754667pt;}
.y51_c00224{bottom:73.138453pt;}
.y75_c00224{bottom:74.910732pt;}
.y82_c00224{bottom:75.377051pt;}
.y47_c00224{bottom:78.412000pt;}
.ycf_c00224{bottom:82.314136pt;}
.y50_c00224{bottom:91.374427pt;}
.y3d_c00224{bottom:93.062667pt;}
.ybc_c00224{bottom:94.785600pt;}
.y8e_c00224{bottom:103.483591pt;}
.y3c_c00224{bottom:104.369333pt;}
.y14_c00224{bottom:106.228877pt;}
.y81_c00224{bottom:108.479423pt;}
.y46_c00224{bottom:111.054667pt;}
.ybb_c00224{bottom:112.784443pt;}
.y1d_c00224{bottom:120.613395pt;}
.y74_c00224{bottom:122.876052pt;}
.yc7_c00224{bottom:130.366285pt;}
.y4f_c00224{bottom:135.310373pt;}
.y2e_c00224{bottom:136.288000pt;}
.y45_c00224{bottom:136.498667pt;}
.yce_c00224{bottom:139.164453pt;}
.y5e_c00224{bottom:147.061333pt;}
.y8d_c00224{bottom:147.365631pt;}
.y10_c00224{bottom:151.717333pt;}
.y1c_c00224{bottom:154.772245pt;}
.y9b_c00224{bottom:156.450261pt;}
.ycd_c00224{bottom:156.914331pt;}
.y3b_c00224{bottom:161.948000pt;}
.y2d_c00224{bottom:166.004000pt;}
.y73_c00224{bottom:167.217000pt;}
.y80_c00224{bottom:167.714640pt;}
.y5d_c00224{bottom:168.672000pt;}
.y13_c00224{bottom:170.188600pt;}
.y8c_c00224{bottom:171.070752pt;}
.yc6_c00224{bottom:174.229113pt;}
.y5c_c00224{bottom:178.030667pt;}
.yaf_c00224{bottom:178.035700pt;}
.ye2_c00224{bottom:180.423376pt;}
.y4e_c00224{bottom:181.870320pt;}
.y72_c00224{bottom:184.238628pt;}
.y1b_c00224{bottom:185.426143pt;}
.yba_c00224{bottom:186.665319pt;}
.yf_c00224{bottom:190.742667pt;}
.y44_c00224{bottom:192.181333pt;}
.y9a_c00224{bottom:195.539509pt;}
.y56_c00224{bottom:196.337200pt;}
.y2c_c00224{bottom:199.132000pt;}
.y4d_c00224{bottom:199.391627pt;}
.y71_c00224{bottom:206.772072pt;}
.y5b_c00224{bottom:207.549333pt;}
.y43_c00224{bottom:213.781333pt;}
.y3a_c00224{bottom:214.756000pt;}
.y99_c00224{bottom:215.926235pt;}
.yae_c00224{bottom:222.655384pt;}
.y4c_c00224{bottom:223.151600pt;}
.y7f_c00224{bottom:225.037925pt;}
.yc5_c00224{bottom:225.765489pt;}
.yb9_c00224{bottom:232.252736pt;}
.y98_c00224{bottom:232.720651pt;}
.y5a_c00224{bottom:234.217333pt;}
.y39_c00224{bottom:234.441333pt;}
.ycc_c00224{bottom:240.879875pt;}
.ye1_c00224{bottom:243.026103pt;}
.yad_c00224{bottom:244.726047pt;}
.yc4_c00224{bottom:246.635603pt;}
.y4b_c00224{bottom:247.160907pt;}
.y55_c00224{bottom:252.451840pt;}
.y7e_c00224{bottom:259.099593pt;}
.y42_c00224{bottom:259.156000pt;}
.y38_c00224{bottom:260.365333pt;}
.ya3_c00224{bottom:262.010232pt;}
.ye0_c00224{bottom:266.777725pt;}
.y70_c00224{bottom:267.476640pt;}
.y1a_c00224{bottom:269.497236pt;}
.y8b_c00224{bottom:275.901796pt;}
.y7d_c00224{bottom:276.612095pt;}
.ye_c00224{bottom:276.682667pt;}
.y2b_c00224{bottom:280.505333pt;}
.yb8_c00224{bottom:281.416479pt;}
.yac_c00224{bottom:285.979776pt;}
.y59_c00224{bottom:287.496000pt;}
.y97_c00224{bottom:294.853571pt;}
.ycb_c00224{bottom:301.092279pt;}
.yab_c00224{bottom:302.159320pt;}
.y54_c00224{bottom:303.829253pt;}
.ydf_c00224{bottom:307.791177pt;}
.y7c_c00224{bottom:308.035720pt;}
.y96_c00224{bottom:312.367523pt;}
.y4a_c00224{bottom:313.420800pt;}
.y41_c00224{bottom:314.378667pt;}
.y21_c00224{bottom:315.104000pt;}
.y58_c00224{bottom:320.388000pt;}
.y53_c00224{bottom:321.835493pt;}
.y6f_c00224{bottom:325.252140pt;}
.ya2_c00224{bottom:326.773349pt;}
.y8a_c00224{bottom:328.676420pt;}
.y40_c00224{bottom:332.620000pt;}
.yd_c00224{bottom:336.462667pt;}
.yb7_c00224{bottom:337.543685pt;}
.y2a_c00224{bottom:343.452000pt;}
.yc3_c00224{bottom:347.427203pt;}
.y37_c00224{bottom:347.516000pt;}
.y5_c00224{bottom:348.674667pt;}
.yca_c00224{bottom:348.821131pt;}
.yb6_c00224{bottom:355.542528pt;}
.y6e_c00224{bottom:355.978716pt;}
.yd3_c00224{bottom:357.455335pt;}
.y57_c00224{bottom:361.434667pt;}
.y49_c00224{bottom:364.359387pt;}
.yc9_c00224{bottom:367.058733pt;}
.y6d_c00224{bottom:371.044968pt;}
.y89_c00224{bottom:371.625761pt;}
.ya1_c00224{bottom:375.274372pt;}
.yb5_c00224{bottom:379.285628pt;}
.y6c_c00224{bottom:387.348648pt;}
.y4_c00224{bottom:390.417333pt;}
.yc2_c00224{bottom:392.238713pt;}
.yc8_c00224{bottom:392.241749pt;}
.yd2_c00224{bottom:392.472203pt;}
.ya0_c00224{bottom:392.968793pt;}
.y95_c00224{bottom:393.442768pt;}
.y88_c00224{bottom:393.678691pt;}
.y7b_c00224{bottom:393.956648pt;}
.y52_c00224{bottom:394.328400pt;}
.y36_c00224{bottom:394.565333pt;}
.y29_c00224{bottom:395.236000pt;}
.y48_c00224{bottom:395.783333pt;}
.y3f_c00224{bottom:399.836000pt;}
.y3e_c00224{bottom:408.009333pt;}
.y12_c00224{bottom:419.954061pt;}
.yc_c00224{bottom:428.945333pt;}
.y94_c00224{bottom:433.144949pt;}
.y69_c00224{bottom:435.542667pt;}
.yde_c00224{bottom:442.425584pt;}
.y87_c00224{bottom:443.494004pt;}
.ya9_c00224{bottom:449.876176pt;}
.y34_c00224{bottom:450.432000pt;}
.y9f_c00224{bottom:451.620149pt;}
.y6b_c00224{bottom:452.511420pt;}
.y7a_c00224{bottom:452.601619pt;}
.y63_c00224{bottom:458.598667pt;}
.y93_c00224{bottom:460.738980pt;}
.y20_c00224{bottom:461.016000pt;}
.yc1_c00224{bottom:464.446692pt;}
.yb_c00224{bottom:465.330667pt;}
.y33_c00224{bottom:466.581333pt;}
.ya8_c00224{bottom:467.579589pt;}
.y86_c00224{bottom:468.679447pt;}
.y79_c00224{bottom:470.527125pt;}
.y28_c00224{bottom:470.849333pt;}
.y19_c00224{bottom:474.384941pt;}
.y85_c00224{bottom:477.730581pt;}
.yb4_c00224{bottom:484.536617pt;}
.ydd_c00224{bottom:489.198765pt;}
.yc0_c00224{bottom:494.209560pt;}
.yb3_c00224{bottom:495.866539pt;}
.yd1_c00224{bottom:498.039751pt;}
.y68_c00224{bottom:502.106667pt;}
.y18_c00224{bottom:505.356745pt;}
.yd8_c00224{bottom:505.943460pt;}
.y92_c00224{bottom:509.244757pt;}
.y9e_c00224{bottom:511.225516pt;}
.ydc_c00224{bottom:511.512819pt;}
.ybf_c00224{bottom:511.947075pt;}
.ya7_c00224{bottom:512.493659pt;}
.y27_c00224{bottom:513.378667pt;}
.y78_c00224{bottom:515.154369pt;}
.yd7_c00224{bottom:517.941543pt;}
.y84_c00224{bottom:521.693873pt;}
.y9d_c00224{bottom:522.425764pt;}
.y67_c00224{bottom:523.882667pt;}
.y1f_c00224{bottom:524.862667pt;}
.y32_c00224{bottom:528.278667pt;}
.ydb_c00224{bottom:529.499427pt;}
.y26_c00224{bottom:530.857333pt;}
.ybe_c00224{bottom:532.333501pt;}
.yb2_c00224{bottom:534.434591pt;}
.y62_c00224{bottom:534.490667pt;}
.ya6_c00224{bottom:537.150316pt;}
.y25_c00224{bottom:544.590667pt;}
.yd0_c00224{bottom:547.444395pt;}
.ya5_c00224{bottom:548.237609pt;}
.y31_c00224{bottom:551.496000pt;}
.yb1_c00224{bottom:552.667951pt;}
.y61_c00224{bottom:553.177333pt;}
.y17_c00224{bottom:554.929199pt;}
.yd6_c00224{bottom:555.116199pt;}
.y66_c00224{bottom:565.900000pt;}
.ya_c00224{bottom:566.864000pt;}
.y77_c00224{bottom:572.013991pt;}
.y60_c00224{bottom:574.302667pt;}
.y65_c00224{bottom:577.668000pt;}
.y83_c00224{bottom:579.203919pt;}
.y91_c00224{bottom:580.493047pt;}
.ya4_c00224{bottom:584.449177pt;}
.yda_c00224{bottom:586.393040pt;}
.yd5_c00224{bottom:586.600859pt;}
.yb0_c00224{bottom:587.700969pt;}
.y90_c00224{bottom:592.920963pt;}
.ybd_c00224{bottom:593.073116pt;}
.yaa_c00224{bottom:593.513741pt;}
.y2_c00224{bottom:593.760000pt;}
.y9c_c00224{bottom:594.120079pt;}
.y76_c00224{bottom:595.286264pt;}
.y5f_c00224{bottom:596.165333pt;}
.y64_c00224{bottom:596.886667pt;}
.y35_c00224{bottom:597.042667pt;}
.y6a_c00224{bottom:597.120000pt;}
.y23_c00224{bottom:598.060000pt;}
.y30_c00224{bottom:604.780000pt;}
.y6_c00224{bottom:605.520000pt;}
.y24_c00224{bottom:605.589333pt;}
.y22_c00224{bottom:605.764245pt;}
.y8_c00224{bottom:606.000000pt;}
.y7_c00224{bottom:606.240000pt;}
.y15_c00224{bottom:606.644000pt;}
.y1_c00224{bottom:606.738667pt;}
.y16_c00224{bottom:606.786825pt;}
.y1e_c00224{bottom:606.810667pt;}
.y3_c00224{bottom:606.826667pt;}
.y9_c00224{bottom:606.829333pt;}
.y11_c00224{bottom:606.835800pt;}
.yd9_c00224{bottom:607.017691pt;}
.h5_c00224{height:10.666667pt;}
.h2_c00224{height:16.000000pt;}
.h4_c00224{height:26.666667pt;}
.h19_c00224{height:37.315129pt;}
.h17_c00224{height:42.645862pt;}
.h11_c00224{height:42.675199pt;}
.h15_c00224{height:47.976594pt;}
.h10_c00224{height:48.009599pt;}
.h13_c00224{height:48.013822pt;}
.h14_c00224{height:48.016221pt;}
.h16_c00224{height:53.307327pt;}
.h12_c00224{height:53.343999pt;}
.h8_c00224{height:53.344052pt;}
.h18_c00224{height:58.638060pt;}
.hd_c00224{height:64.010367pt;}
.he_c00224{height:64.015486pt;}
.hb_c00224{height:74.672042pt;}
.h6_c00224{height:106.683945pt;}
.h9_c00224{height:112.022510pt;}
.h7_c00224{height:128.020734pt;}
.ha_c00224{height:144.010368pt;}
.hf_c00224{height:144.060539pt;}
.h3_c00224{height:176.031765pt;}
.h1_c00224{height:208.006656pt;}
.hc_c00224{height:213.375996pt;}
.h0_c00224{height:606.666667pt;}
.w0_c00224{width:837.066667pt;}
.w1_c00224{width:837.333333pt;}
.x0_c00224{left:0.000000pt;}
.x9d_c00224{left:3.782641pt;}
.x96_c00224{left:13.744468pt;}
.x97_c00224{left:15.607520pt;}
.x98_c00224{left:16.575757pt;}
.x99_c00224{left:17.699321pt;}
.x9a_c00224{left:20.934575pt;}
.x9b_c00224{left:21.920311pt;}
.x9c_c00224{left:23.995732pt;}
.x94_c00224{left:28.386811pt;}
.x95_c00224{left:30.210099pt;}
.x8f_c00224{left:37.269263pt;}
.x90_c00224{left:38.619788pt;}
.x91_c00224{left:41.505319pt;}
.x92_c00224{left:42.462976pt;}
.x93_c00224{left:51.030540pt;}
.x8a_c00224{left:55.290379pt;}
.x8b_c00224{left:56.980717pt;}
.x8c_c00224{left:58.097423pt;}
.x8d_c00224{left:59.654981pt;}
.x8e_c00224{left:61.039219pt;}
.x82_c00224{left:63.647045pt;}
.x83_c00224{left:64.955309pt;}
.x84_c00224{left:66.419177pt;}
.x85_c00224{left:67.974793pt;}
.x86_c00224{left:68.940852pt;}
.x87_c00224{left:71.113385pt;}
.x88_c00224{left:72.674027pt;}
.x89_c00224{left:73.619031pt;}
.x7a_c00224{left:76.842119pt;}
.x7b_c00224{left:77.975001pt;}
.x7c_c00224{left:79.034655pt;}
.x7d_c00224{left:81.271363pt;}
.x7e_c00224{left:83.351617pt;}
.x7f_c00224{left:84.397085pt;}
.x80_c00224{left:85.366664pt;}
.x81_c00224{left:86.937199pt;}
.x76_c00224{left:100.588523pt;}
.x77_c00224{left:106.318440pt;}
.x78_c00224{left:107.447460pt;}
.x79_c00224{left:108.758333pt;}
.x72_c00224{left:114.023208pt;}
.x73_c00224{left:114.939132pt;}
.x74_c00224{left:115.842744pt;}
.x75_c00224{left:116.978759pt;}
.x6c_c00224{left:121.224284pt;}
.x6d_c00224{left:122.831448pt;}
.x6e_c00224{left:124.418145pt;}
.x6f_c00224{left:125.732853pt;}
.x70_c00224{left:127.217212pt;}
.x71_c00224{left:128.669024pt;}
.x65_c00224{left:133.699005pt;}
.x66_c00224{left:135.464635pt;}
.x67_c00224{left:136.487693pt;}
.x68_c00224{left:137.907309pt;}
.x69_c00224{left:139.617625pt;}
.x6a_c00224{left:141.296855pt;}
.x6b_c00224{left:142.905263pt;}
.x5d_c00224{left:146.414697pt;}
.x5e_c00224{left:147.686180pt;}
.x5f_c00224{left:148.658403pt;}
.x60_c00224{left:150.517401pt;}
.x61_c00224{left:151.954207pt;}
.x62_c00224{left:153.120672pt;}
.x63_c00224{left:155.438597pt;}
.x64_c00224{left:156.932868pt;}
.x55_c00224{left:157.922515pt;}
.x56_c00224{left:159.819952pt;}
.x57_c00224{left:160.877444pt;}
.x58_c00224{left:162.691469pt;}
.x59_c00224{left:164.727673pt;}
.x5a_c00224{left:165.885853pt;}
.x4b_c00224{left:166.800000pt;}
.x5b_c00224{left:168.050413pt;}
.x5c_c00224{left:169.453159pt;}
.x4c_c00224{left:171.432107pt;}
.x4d_c00224{left:173.519403pt;}
.x4e_c00224{left:174.524245pt;}
.x4f_c00224{left:175.508480pt;}
.x50_c00224{left:177.359147pt;}
.x51_c00224{left:179.303637pt;}
.x52_c00224{left:180.570667pt;}
.x53_c00224{left:181.990997pt;}
.x54_c00224{left:183.527424pt;}
.x48_c00224{left:192.480000pt;}
.x49_c00224{left:194.378104pt;}
.x4a_c00224{left:196.674944pt;}
.x41_c00224{left:198.480000pt;}
.x42_c00224{left:199.958773pt;}
.x43_c00224{left:201.024347pt;}
.x44_c00224{left:202.148080pt;}
.x3d_c00224{left:219.350000pt;}
.x3e_c00224{left:220.887893pt;}
.x3f_c00224{left:222.359600pt;}
.x40_c00224{left:223.549920pt;}
.x45_c00224{left:226.800000pt;}
.x46_c00224{left:227.831712pt;}
.x47_c00224{left:230.101600pt;}
.x37_c00224{left:232.072667pt;}
.x38_c00224{left:233.726587pt;}
.x39_c00224{left:235.057120pt;}
.x3a_c00224{left:236.015173pt;}
.x3b_c00224{left:237.300800pt;}
.x3c_c00224{left:238.548240pt;}
.x31_c00224{left:244.800000pt;}
.x32_c00224{left:246.307787pt;}
.x33_c00224{left:247.777067pt;}
.x34_c00224{left:248.684560pt;}
.x35_c00224{left:250.230213pt;}
.x36_c00224{left:251.391947pt;}
.x2b_c00224{left:258.240000pt;}
.x2c_c00224{left:259.180987pt;}
.x2d_c00224{left:260.924000pt;}
.x2e_c00224{left:261.836187pt;}
.x2f_c00224{left:262.892347pt;}
.x30_c00224{left:264.043920pt;}
.x2a_c00224{left:266.634667pt;}
.x27_c00224{left:305.989333pt;}
.x28_c00224{left:307.161581pt;}
.x29_c00224{left:309.029704pt;}
.x1e_c00224{left:331.674667pt;}
.x1f_c00224{left:332.772643pt;}
.x20_c00224{left:334.099987pt;}
.x21_c00224{left:335.461027pt;}
.x22_c00224{left:336.393139pt;}
.x23_c00224{left:337.526179pt;}
.x24_c00224{left:338.990899pt;}
.x25_c00224{left:340.122091pt;}
.x26_c00224{left:341.427691pt;}
.x1d_c00224{left:370.480000pt;}
.x1c_c00224{left:403.197376pt;}
.x19_c00224{left:425.278667pt;}
.x1a_c00224{left:426.262043pt;}
.x1b_c00224{left:428.779147pt;}
.x18_c00224{left:454.800000pt;}
.x12_c00224{left:464.873740pt;}
.x13_c00224{left:466.015543pt;}
.x14_c00224{left:467.106639pt;}
.x15_c00224{left:472.300625pt;}
.x16_c00224{left:474.152572pt;}
.x17_c00224{left:475.580024pt;}
.x11_c00224{left:489.628000pt;}
.xd_c00224{left:510.231533pt;}
.xe_c00224{left:513.424683pt;}
.xf_c00224{left:517.691053pt;}
.x10_c00224{left:518.783643pt;}
.x8_c00224{left:552.478667pt;}
.x9_c00224{left:555.025643pt;}
.xa_c00224{left:557.345267pt;}
.xb_c00224{left:558.421307pt;}
.xc_c00224{left:559.968227pt;}
.x7_c00224{left:571.920000pt;}
.x6_c00224{left:590.160000pt;}
.x5_c00224{left:593.520000pt;}
.x3_c00224{left:594.477333pt;}
.x4_c00224{left:598.589111pt;}
.x2_c00224{left:634.080000pt;}
.x1_c00224{left:649.680000pt;}
}





/* 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_c00225 {
    display:none;
  }
  .loading-indicator_c00225.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00225 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_c00225 { 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_c00225" -> "#page-container .classname_c00225")
 */
.pf_c00225 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00225 { /* 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_c00225.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00225 { /* 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_c00225 { /* 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_c00225 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00225 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00225 {overflow:visible;}
  }
}
.c_c00225 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00225 { /* 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_c00225:after { /* webkit #35443 */
  content: '';
}
.t_c00225:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00225 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 */
}
.__c00225 { /* 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_c00225 { /* info for Javascript */
  display:none;
}
.l_c00225 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00225 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00225 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00225: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_c00225 {
    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_c00225.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00225.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_c00225 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00225{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00225;src:url('chunks/assets/font_b11a17f404e7258299fdf971.woff2')format("woff");}.ff1_c00225{font-family:ff1_c00225;line-height:1.000000;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;}
.m2f_c00225{transform:matrix(0.000016,-0.015810,0.250000,0.000250,0,0);-ms-transform:matrix(0.000016,-0.015810,0.250000,0.000250,0,0);-webkit-transform:matrix(0.000016,-0.015810,0.250000,0.000250,0,0);}
.m7d_c00225{transform:matrix(0.000044,-0.014750,0.249999,0.000750,0,0);-ms-transform:matrix(0.000044,-0.014750,0.249999,0.000750,0,0);-webkit-transform:matrix(0.000044,-0.014750,0.249999,0.000750,0,0);}
.m7a_c00225{transform:matrix(0.000140,-0.046645,0.249999,0.000750,0,0);-ms-transform:matrix(0.000140,-0.046645,0.249999,0.000750,0,0);-webkit-transform:matrix(0.000140,-0.046645,0.249999,0.000750,0,0);}
.m31_c00225{transform:matrix(0.000148,-0.148410,0.250000,0.000250,0,0);-ms-transform:matrix(0.000148,-0.148410,0.250000,0.000250,0,0);-webkit-transform:matrix(0.000148,-0.148410,0.250000,0.000250,0,0);}
.m63_c00225{transform:matrix(0.000170,-0.170110,0.250000,0.000250,0,0);-ms-transform:matrix(0.000170,-0.170110,0.250000,0.000250,0,0);-webkit-transform:matrix(0.000170,-0.170110,0.250000,0.000250,0,0);}
.m33_c00225{transform:matrix(0.000178,-0.177545,0.250000,0.000250,0,0);-ms-transform:matrix(0.000178,-0.177545,0.250000,0.000250,0,0);-webkit-transform:matrix(0.000178,-0.177545,0.250000,0.000250,0,0);}
.m4b_c00225{transform:matrix(0.000178,-0.177880,0.250000,0.000250,0,0);-ms-transform:matrix(0.000178,-0.177880,0.250000,0.000250,0,0);-webkit-transform:matrix(0.000178,-0.177880,0.250000,0.000250,0,0);}
.m67_c00225{transform:matrix(0.000185,-0.184665,0.250000,0.000250,0,0);-ms-transform:matrix(0.000185,-0.184665,0.250000,0.000250,0,0);-webkit-transform:matrix(0.000185,-0.184665,0.250000,0.000250,0,0);}
.m66_c00225{transform:matrix(0.000188,-0.188410,0.250000,0.000250,0,0);-ms-transform:matrix(0.000188,-0.188410,0.250000,0.000250,0,0);-webkit-transform:matrix(0.000188,-0.188410,0.250000,0.000250,0,0);}
.m1a_c00225{transform:matrix(0.000191,0.031819,-0.249996,0.001500,0,0);-ms-transform:matrix(0.000191,0.031819,-0.249996,0.001500,0,0);-webkit-transform:matrix(0.000191,0.031819,-0.249996,0.001500,0,0);}
.m65_c00225{transform:matrix(0.000191,-0.191345,0.250000,0.000250,0,0);-ms-transform:matrix(0.000191,-0.191345,0.250000,0.000250,0,0);-webkit-transform:matrix(0.000191,-0.191345,0.250000,0.000250,0,0);}
.m40_c00225{transform:matrix(0.000206,-0.206370,0.250000,0.000250,0,0);-ms-transform:matrix(0.000206,-0.206370,0.250000,0.000250,0,0);-webkit-transform:matrix(0.000206,-0.206370,0.250000,0.000250,0,0);}
.m38_c00225{transform:matrix(0.000212,-0.212130,0.250000,0.000250,0,0);-ms-transform:matrix(0.000212,-0.212130,0.250000,0.000250,0,0);-webkit-transform:matrix(0.000212,-0.212130,0.250000,0.000250,0,0);}
.m3d_c00225{transform:matrix(0.000227,-0.226715,0.250000,0.000250,0,0);-ms-transform:matrix(0.000227,-0.226715,0.250000,0.000250,0,0);-webkit-transform:matrix(0.000227,-0.226715,0.250000,0.000250,0,0);}
.m35_c00225{transform:matrix(0.000240,-0.239775,0.250000,0.000250,0,0);-ms-transform:matrix(0.000240,-0.239775,0.250000,0.000250,0,0);-webkit-transform:matrix(0.000240,-0.239775,0.250000,0.000250,0,0);}
.m6a_c00225{transform:matrix(0.000251,-0.251445,0.250000,0.000250,0,0);-ms-transform:matrix(0.000251,-0.251445,0.250000,0.000250,0,0);-webkit-transform:matrix(0.000251,-0.251445,0.250000,0.000250,0,0);}
.m3f_c00225{transform:matrix(0.000255,-0.254600,0.250000,0.000250,0,0);-ms-transform:matrix(0.000255,-0.254600,0.250000,0.000250,0,0);-webkit-transform:matrix(0.000255,-0.254600,0.250000,0.000250,0,0);}
.mb_c00225{transform:matrix(0.000263,0.131680,-0.250000,0.000500,0,0);-ms-transform:matrix(0.000263,0.131680,-0.250000,0.000500,0,0);-webkit-transform:matrix(0.000263,0.131680,-0.250000,0.000500,0,0);}
.m47_c00225{transform:matrix(0.000266,-0.265510,0.250000,0.000250,0,0);-ms-transform:matrix(0.000266,-0.265510,0.250000,0.000250,0,0);-webkit-transform:matrix(0.000266,-0.265510,0.250000,0.000250,0,0);}
.m41_c00225{transform:matrix(0.000280,-0.279510,0.250000,0.000250,0,0);-ms-transform:matrix(0.000280,-0.279510,0.250000,0.000250,0,0);-webkit-transform:matrix(0.000280,-0.279510,0.250000,0.000250,0,0);}
.m15_c00225{transform:matrix(0.000286,0.047729,-0.249996,0.001500,0,0);-ms-transform:matrix(0.000286,0.047729,-0.249996,0.001500,0,0);-webkit-transform:matrix(0.000286,0.047729,-0.249996,0.001500,0,0);}
.m4d_c00225{transform:matrix(0.000290,-0.289525,0.250000,0.000250,0,0);-ms-transform:matrix(0.000290,-0.289525,0.250000,0.000250,0,0);-webkit-transform:matrix(0.000290,-0.289525,0.250000,0.000250,0,0);}
.m4c_c00225{transform:matrix(0.000315,-0.315295,0.250000,0.000250,0,0);-ms-transform:matrix(0.000315,-0.315295,0.250000,0.000250,0,0);-webkit-transform:matrix(0.000315,-0.315295,0.250000,0.000250,0,0);}
.m3e_c00225{transform:matrix(0.000325,-0.325085,0.250000,0.000250,0,0);-ms-transform:matrix(0.000325,-0.325085,0.250000,0.000250,0,0);-webkit-transform:matrix(0.000325,-0.325085,0.250000,0.000250,0,0);}
.m7c_c00225{transform:matrix(0.000334,-0.111319,0.249999,0.000750,0,0);-ms-transform:matrix(0.000334,-0.111319,0.249999,0.000750,0,0);-webkit-transform:matrix(0.000334,-0.111319,0.249999,0.000750,0,0);}
.m49_c00225{transform:matrix(0.000338,-0.337685,0.250000,0.000250,0,0);-ms-transform:matrix(0.000338,-0.337685,0.250000,0.000250,0,0);-webkit-transform:matrix(0.000338,-0.337685,0.250000,0.000250,0,0);}
.m58_c00225{transform:matrix(0.000347,-0.173455,0.250000,0.000500,0,0);-ms-transform:matrix(0.000347,-0.173455,0.250000,0.000500,0,0);-webkit-transform:matrix(0.000347,-0.173455,0.250000,0.000500,0,0);}
.m36_c00225{transform:matrix(0.000358,-0.357945,0.250000,0.000250,0,0);-ms-transform:matrix(0.000358,-0.357945,0.250000,0.000250,0,0);-webkit-transform:matrix(0.000358,-0.357945,0.250000,0.000250,0,0);}
.m3c_c00225{transform:matrix(0.000362,-0.362300,0.250000,0.000250,0,0);-ms-transform:matrix(0.000362,-0.362300,0.250000,0.000250,0,0);-webkit-transform:matrix(0.000362,-0.362300,0.250000,0.000250,0,0);}
.m4f_c00225{transform:matrix(0.000364,-0.363510,0.250000,0.000250,0,0);-ms-transform:matrix(0.000364,-0.363510,0.250000,0.000250,0,0);-webkit-transform:matrix(0.000364,-0.363510,0.250000,0.000250,0,0);}
.m84_c00225{transform:matrix(0.000371,-0.123694,0.249999,0.000750,0,0);-ms-transform:matrix(0.000371,-0.123694,0.249999,0.000750,0,0);-webkit-transform:matrix(0.000371,-0.123694,0.249999,0.000750,0,0);}
.m44_c00225{transform:matrix(0.000379,-0.378565,0.250000,0.000250,0,0);-ms-transform:matrix(0.000379,-0.378565,0.250000,0.000250,0,0);-webkit-transform:matrix(0.000379,-0.378565,0.250000,0.000250,0,0);}
.m62_c00225{transform:matrix(0.000382,-0.191000,0.250000,0.000500,0,0);-ms-transform:matrix(0.000382,-0.191000,0.250000,0.000500,0,0);-webkit-transform:matrix(0.000382,-0.191000,0.250000,0.000500,0,0);}
.m7_c00225{transform:matrix(0.000383,0.191265,-0.250000,0.000500,0,0);-ms-transform:matrix(0.000383,0.191265,-0.250000,0.000500,0,0);-webkit-transform:matrix(0.000383,0.191265,-0.250000,0.000500,0,0);}
.md_c00225{transform:matrix(0.000387,0.193380,-0.250000,0.000500,0,0);-ms-transform:matrix(0.000387,0.193380,-0.250000,0.000500,0,0);-webkit-transform:matrix(0.000387,0.193380,-0.250000,0.000500,0,0);}
.m4e_c00225{transform:matrix(0.000389,-0.388650,0.250000,0.000250,0,0);-ms-transform:matrix(0.000389,-0.388650,0.250000,0.000250,0,0);-webkit-transform:matrix(0.000389,-0.388650,0.250000,0.000250,0,0);}
.m56_c00225{transform:matrix(0.000396,-0.197955,0.250000,0.000500,0,0);-ms-transform:matrix(0.000396,-0.197955,0.250000,0.000500,0,0);-webkit-transform:matrix(0.000396,-0.197955,0.250000,0.000500,0,0);}
.m69_c00225{transform:matrix(0.000396,-0.396100,0.250000,0.000250,0,0);-ms-transform:matrix(0.000396,-0.396100,0.250000,0.000250,0,0);-webkit-transform:matrix(0.000396,-0.396100,0.250000,0.000250,0,0);}
.m57_c00225{transform:matrix(0.000399,-0.199620,0.250000,0.000500,0,0);-ms-transform:matrix(0.000399,-0.199620,0.250000,0.000500,0,0);-webkit-transform:matrix(0.000399,-0.199620,0.250000,0.000500,0,0);}
.m4a_c00225{transform:matrix(0.000423,-0.423270,0.250000,0.000250,0,0);-ms-transform:matrix(0.000423,-0.423270,0.250000,0.000250,0,0);-webkit-transform:matrix(0.000423,-0.423270,0.250000,0.000250,0,0);}
.m3a_c00225{transform:matrix(0.000428,-0.427550,0.250000,0.000250,0,0);-ms-transform:matrix(0.000428,-0.427550,0.250000,0.000250,0,0);-webkit-transform:matrix(0.000428,-0.427550,0.250000,0.000250,0,0);}
.mc_c00225{transform:matrix(0.000428,0.214010,-0.250000,0.000500,0,0);-ms-transform:matrix(0.000428,0.214010,-0.250000,0.000500,0,0);-webkit-transform:matrix(0.000428,0.214010,-0.250000,0.000500,0,0);}
.m52_c00225{transform:matrix(0.000439,-0.219425,0.250000,0.000500,0,0);-ms-transform:matrix(0.000439,-0.219425,0.250000,0.000500,0,0);-webkit-transform:matrix(0.000439,-0.219425,0.250000,0.000500,0,0);}
.m37_c00225{transform:matrix(0.000448,-0.447770,0.250000,0.000250,0,0);-ms-transform:matrix(0.000448,-0.447770,0.250000,0.000250,0,0);-webkit-transform:matrix(0.000448,-0.447770,0.250000,0.000250,0,0);}
.m34_c00225{transform:matrix(0.000453,-0.452605,0.250000,0.000250,0,0);-ms-transform:matrix(0.000453,-0.452605,0.250000,0.000250,0,0);-webkit-transform:matrix(0.000453,-0.452605,0.250000,0.000250,0,0);}
.m6_c00225{transform:matrix(0.000458,0.228925,-0.250000,0.000500,0,0);-ms-transform:matrix(0.000458,0.228925,-0.250000,0.000500,0,0);-webkit-transform:matrix(0.000458,0.228925,-0.250000,0.000500,0,0);}
.m3_c00225{transform:matrix(0.000459,0.229635,-0.250000,0.000500,0,0);-ms-transform:matrix(0.000459,0.229635,-0.250000,0.000500,0,0);-webkit-transform:matrix(0.000459,0.229635,-0.250000,0.000500,0,0);}
.m42_c00225{transform:matrix(0.000464,-0.463875,0.250000,0.000250,0,0);-ms-transform:matrix(0.000464,-0.463875,0.250000,0.000250,0,0);-webkit-transform:matrix(0.000464,-0.463875,0.250000,0.000250,0,0);}
.m8a_c00225{transform:matrix(0.000465,-0.154869,0.249999,0.000750,0,0);-ms-transform:matrix(0.000465,-0.154869,0.249999,0.000750,0,0);-webkit-transform:matrix(0.000465,-0.154869,0.249999,0.000750,0,0);}
.m46_c00225{transform:matrix(0.000465,-0.465245,0.250000,0.000250,0,0);-ms-transform:matrix(0.000465,-0.465245,0.250000,0.000250,0,0);-webkit-transform:matrix(0.000465,-0.465245,0.250000,0.000250,0,0);}
.m4_c00225{transform:matrix(0.000468,0.233980,-0.250000,0.000500,0,0);-ms-transform:matrix(0.000468,0.233980,-0.250000,0.000500,0,0);-webkit-transform:matrix(0.000468,0.233980,-0.250000,0.000500,0,0);}
.m30_c00225{transform:matrix(0.000473,-0.472925,0.250000,0.000250,0,0);-ms-transform:matrix(0.000473,-0.472925,0.250000,0.000250,0,0);-webkit-transform:matrix(0.000473,-0.472925,0.250000,0.000250,0,0);}
.m48_c00225{transform:matrix(0.000477,-0.477135,0.250000,0.000250,0,0);-ms-transform:matrix(0.000477,-0.477135,0.250000,0.000250,0,0);-webkit-transform:matrix(0.000477,-0.477135,0.250000,0.000250,0,0);}
.m51_c00225{transform:matrix(0.000486,-0.243120,0.250000,0.000500,0,0);-ms-transform:matrix(0.000486,-0.243120,0.250000,0.000500,0,0);-webkit-transform:matrix(0.000486,-0.243120,0.250000,0.000500,0,0);}
.ma_c00225{transform:matrix(0.000504,0.251774,-0.250000,0.000500,0,0);-ms-transform:matrix(0.000504,0.251774,-0.250000,0.000500,0,0);-webkit-transform:matrix(0.000504,0.251774,-0.250000,0.000500,0,0);}
.m68_c00225{transform:matrix(0.000507,-0.507290,0.250000,0.000250,0,0);-ms-transform:matrix(0.000507,-0.507290,0.250000,0.000250,0,0);-webkit-transform:matrix(0.000507,-0.507290,0.250000,0.000250,0,0);}
.m5_c00225{transform:matrix(0.000507,0.253709,-0.250000,0.000500,0,0);-ms-transform:matrix(0.000507,0.253709,-0.250000,0.000500,0,0);-webkit-transform:matrix(0.000507,0.253709,-0.250000,0.000500,0,0);}
.m5b_c00225{transform:matrix(0.000528,-0.264019,0.250000,0.000500,0,0);-ms-transform:matrix(0.000528,-0.264019,0.250000,0.000500,0,0);-webkit-transform:matrix(0.000528,-0.264019,0.250000,0.000500,0,0);}
.m43_c00225{transform:matrix(0.000543,-0.542720,0.250000,0.000250,0,0);-ms-transform:matrix(0.000543,-0.542720,0.250000,0.000250,0,0);-webkit-transform:matrix(0.000543,-0.542720,0.250000,0.000250,0,0);}
.m28_c00225{transform:matrix(0.000543,-0.271384,0.250000,0.000500,0,0);-ms-transform:matrix(0.000543,-0.271384,0.250000,0.000500,0,0);-webkit-transform:matrix(0.000543,-0.271384,0.250000,0.000500,0,0);}
.m91_c00225{transform:matrix(0.000551,-0.183674,0.249999,0.000750,0,0);-ms-transform:matrix(0.000551,-0.183674,0.249999,0.000750,0,0);-webkit-transform:matrix(0.000551,-0.183674,0.249999,0.000750,0,0);}
.m2a_c00225{transform:matrix(0.000555,-0.277279,0.250000,0.000500,0,0);-ms-transform:matrix(0.000555,-0.277279,0.250000,0.000500,0,0);-webkit-transform:matrix(0.000555,-0.277279,0.250000,0.000500,0,0);}
.m6b_c00225{transform:matrix(0.000578,-0.577860,0.250000,0.000250,0,0);-ms-transform:matrix(0.000578,-0.577860,0.250000,0.000250,0,0);-webkit-transform:matrix(0.000578,-0.577860,0.250000,0.000250,0,0);}
.m26_c00225{transform:matrix(0.000583,-0.291719,0.250000,0.000500,0,0);-ms-transform:matrix(0.000583,-0.291719,0.250000,0.000500,0,0);-webkit-transform:matrix(0.000583,-0.291719,0.250000,0.000500,0,0);}
.m2d_c00225{transform:matrix(0.000594,-0.296899,0.250000,0.000500,0,0);-ms-transform:matrix(0.000594,-0.296899,0.250000,0.000500,0,0);-webkit-transform:matrix(0.000594,-0.296899,0.250000,0.000500,0,0);}
.m32_c00225{transform:matrix(0.000619,-0.619240,0.250000,0.000250,0,0);-ms-transform:matrix(0.000619,-0.619240,0.250000,0.000250,0,0);-webkit-transform:matrix(0.000619,-0.619240,0.250000,0.000250,0,0);}
.m80_c00225{transform:matrix(0.000628,-0.209229,0.249999,0.000750,0,0);-ms-transform:matrix(0.000628,-0.209229,0.249999,0.000750,0,0);-webkit-transform:matrix(0.000628,-0.209229,0.249999,0.000750,0,0);}
.m6c_c00225{transform:matrix(0.000634,-0.634200,0.250000,0.000250,0,0);-ms-transform:matrix(0.000634,-0.634200,0.250000,0.000250,0,0);-webkit-transform:matrix(0.000634,-0.634200,0.250000,0.000250,0,0);}
.m5c_c00225{transform:matrix(0.000641,-0.320744,0.250000,0.000500,0,0);-ms-transform:matrix(0.000641,-0.320744,0.250000,0.000500,0,0);-webkit-transform:matrix(0.000641,-0.320744,0.250000,0.000500,0,0);}
.m29_c00225{transform:matrix(0.000663,-0.331339,0.250000,0.000500,0,0);-ms-transform:matrix(0.000663,-0.331339,0.250000,0.000500,0,0);-webkit-transform:matrix(0.000663,-0.331339,0.250000,0.000500,0,0);}
.m82_c00225{transform:matrix(0.000677,-0.225524,0.249999,0.000750,0,0);-ms-transform:matrix(0.000677,-0.225524,0.249999,0.000750,0,0);-webkit-transform:matrix(0.000677,-0.225524,0.249999,0.000750,0,0);}
.m93_c00225{transform:matrix(0.000678,-0.225944,0.249999,0.000750,0,0);-ms-transform:matrix(0.000678,-0.225944,0.249999,0.000750,0,0);-webkit-transform:matrix(0.000678,-0.225944,0.249999,0.000750,0,0);}
.m5e_c00225{transform:matrix(0.000682,-0.341044,0.250000,0.000500,0,0);-ms-transform:matrix(0.000682,-0.341044,0.250000,0.000500,0,0);-webkit-transform:matrix(0.000682,-0.341044,0.250000,0.000500,0,0);}
.m61_c00225{transform:matrix(0.000683,-0.341734,0.250000,0.000500,0,0);-ms-transform:matrix(0.000683,-0.341734,0.250000,0.000500,0,0);-webkit-transform:matrix(0.000683,-0.341734,0.250000,0.000500,0,0);}
.m8d_c00225{transform:matrix(0.000697,-0.232484,0.249999,0.000750,0,0);-ms-transform:matrix(0.000697,-0.232484,0.249999,0.000750,0,0);-webkit-transform:matrix(0.000697,-0.232484,0.249999,0.000750,0,0);}
.m2b_c00225{transform:matrix(0.000700,-0.350214,0.250000,0.000500,0,0);-ms-transform:matrix(0.000700,-0.350214,0.250000,0.000500,0,0);-webkit-transform:matrix(0.000700,-0.350214,0.250000,0.000500,0,0);}
.m60_c00225{transform:matrix(0.000702,-0.351019,0.250000,0.000500,0,0);-ms-transform:matrix(0.000702,-0.351019,0.250000,0.000500,0,0);-webkit-transform:matrix(0.000702,-0.351019,0.250000,0.000500,0,0);}
.m89_c00225{transform:matrix(0.000713,-0.237709,0.249999,0.000750,0,0);-ms-transform:matrix(0.000713,-0.237709,0.249999,0.000750,0,0);-webkit-transform:matrix(0.000713,-0.237709,0.249999,0.000750,0,0);}
.m92_c00225{transform:matrix(0.000724,-0.241494,0.249999,0.000750,0,0);-ms-transform:matrix(0.000724,-0.241494,0.249999,0.000750,0,0);-webkit-transform:matrix(0.000724,-0.241494,0.249999,0.000750,0,0);}
.m5a_c00225{transform:matrix(0.000731,-0.365359,0.250000,0.000500,0,0);-ms-transform:matrix(0.000731,-0.365359,0.250000,0.000500,0,0);-webkit-transform:matrix(0.000731,-0.365359,0.250000,0.000500,0,0);}
.m9_c00225{transform:matrix(0.000755,0.377669,-0.250000,0.000500,0,0);-ms-transform:matrix(0.000755,0.377669,-0.250000,0.000500,0,0);-webkit-transform:matrix(0.000755,0.377669,-0.250000,0.000500,0,0);}
.m50_c00225{transform:matrix(0.000758,-0.378819,0.250000,0.000500,0,0);-ms-transform:matrix(0.000758,-0.378819,0.250000,0.000500,0,0);-webkit-transform:matrix(0.000758,-0.378819,0.250000,0.000500,0,0);}
.m64_c00225{transform:matrix(0.000772,-0.771535,0.250000,0.000250,0,0);-ms-transform:matrix(0.000772,-0.771535,0.250000,0.000250,0,0);-webkit-transform:matrix(0.000772,-0.771535,0.250000,0.000250,0,0);}
.m23_c00225{transform:matrix(0.000797,0.132898,-0.249996,0.001500,0,0);-ms-transform:matrix(0.000797,0.132898,-0.249996,0.001500,0,0);-webkit-transform:matrix(0.000797,0.132898,-0.249996,0.001500,0,0);}
.m94_c00225{transform:matrix(0.000821,0.410594,-0.250000,0.000500,0,0);-ms-transform:matrix(0.000821,0.410594,-0.250000,0.000500,0,0);-webkit-transform:matrix(0.000821,0.410594,-0.250000,0.000500,0,0);}
.m3b_c00225{transform:matrix(0.000845,-0.844810,0.250000,0.000250,0,0);-ms-transform:matrix(0.000845,-0.844810,0.250000,0.000250,0,0);-webkit-transform:matrix(0.000845,-0.844810,0.250000,0.000250,0,0);}
.m7b_c00225{transform:matrix(0.000860,-0.286634,0.249999,0.000750,0,0);-ms-transform:matrix(0.000860,-0.286634,0.249999,0.000750,0,0);-webkit-transform:matrix(0.000860,-0.286634,0.249999,0.000750,0,0);}
.m59_c00225{transform:matrix(0.000905,-0.452549,0.250000,0.000500,0,0);-ms-transform:matrix(0.000905,-0.452549,0.250000,0.000500,0,0);-webkit-transform:matrix(0.000905,-0.452549,0.250000,0.000500,0,0);}
.m14_c00225{transform:matrix(0.000941,0.156892,-0.249996,0.001500,0,0);-ms-transform:matrix(0.000941,0.156892,-0.249996,0.001500,0,0);-webkit-transform:matrix(0.000941,0.156892,-0.249996,0.001500,0,0);}
.m27_c00225{transform:matrix(0.000953,-0.476744,0.250000,0.000500,0,0);-ms-transform:matrix(0.000953,-0.476744,0.250000,0.000500,0,0);-webkit-transform:matrix(0.000953,-0.476744,0.250000,0.000500,0,0);}
.m45_c00225{transform:matrix(0.000963,-0.962785,0.250000,0.000250,0,0);-ms-transform:matrix(0.000963,-0.962785,0.250000,0.000250,0,0);-webkit-transform:matrix(0.000963,-0.962785,0.250000,0.000250,0,0);}
.m54_c00225{transform:matrix(0.000974,-0.487084,0.250000,0.000500,0,0);-ms-transform:matrix(0.000974,-0.487084,0.250000,0.000500,0,0);-webkit-transform:matrix(0.000974,-0.487084,0.250000,0.000500,0,0);}
.m2e_c00225{transform:matrix(0.001011,-0.505454,0.250000,0.000500,0,0);-ms-transform:matrix(0.001011,-0.505454,0.250000,0.000500,0,0);-webkit-transform:matrix(0.001011,-0.505454,0.250000,0.000500,0,0);}
.m39_c00225{transform:matrix(0.001041,-1.041464,0.250000,0.000250,0,0);-ms-transform:matrix(0.001041,-1.041464,0.250000,0.000250,0,0);-webkit-transform:matrix(0.001041,-1.041464,0.250000,0.000250,0,0);}
.m85_c00225{transform:matrix(0.001061,-0.353738,0.249999,0.000750,0,0);-ms-transform:matrix(0.001061,-0.353738,0.249999,0.000750,0,0);-webkit-transform:matrix(0.001061,-0.353738,0.249999,0.000750,0,0);}
.m88_c00225{transform:matrix(0.001110,-0.370053,0.249999,0.000750,0,0);-ms-transform:matrix(0.001110,-0.370053,0.249999,0.000750,0,0);-webkit-transform:matrix(0.001110,-0.370053,0.249999,0.000750,0,0);}
.m8f_c00225{transform:matrix(0.001110,-0.370108,0.249999,0.000750,0,0);-ms-transform:matrix(0.001110,-0.370108,0.249999,0.000750,0,0);-webkit-transform:matrix(0.001110,-0.370108,0.249999,0.000750,0,0);}
.m55_c00225{transform:matrix(0.001122,-0.561029,0.250000,0.000500,0,0);-ms-transform:matrix(0.001122,-0.561029,0.250000,0.000500,0,0);-webkit-transform:matrix(0.001122,-0.561029,0.250000,0.000500,0,0);}
.m22_c00225{transform:matrix(0.001131,0.188582,-0.249996,0.001500,0,0);-ms-transform:matrix(0.001131,0.188582,-0.249996,0.001500,0,0);-webkit-transform:matrix(0.001131,0.188582,-0.249996,0.001500,0,0);}
.m53_c00225{transform:matrix(0.001137,-0.568509,0.250000,0.000500,0,0);-ms-transform:matrix(0.001137,-0.568509,0.250000,0.000500,0,0);-webkit-transform:matrix(0.001137,-0.568509,0.250000,0.000500,0,0);}
.m18_c00225{transform:matrix(0.001222,0.203741,-0.249996,0.001500,0,0);-ms-transform:matrix(0.001222,0.203741,-0.249996,0.001500,0,0);-webkit-transform:matrix(0.001222,0.203741,-0.249996,0.001500,0,0);}
.m90_c00225{transform:matrix(0.001267,-0.422188,0.249999,0.000750,0,0);-ms-transform:matrix(0.001267,-0.422188,0.249999,0.000750,0,0);-webkit-transform:matrix(0.001267,-0.422188,0.249999,0.000750,0,0);}
.m2c_c00225{transform:matrix(0.001287,-0.643639,0.250000,0.000500,0,0);-ms-transform:matrix(0.001287,-0.643639,0.250000,0.000500,0,0);-webkit-transform:matrix(0.001287,-0.643639,0.250000,0.000500,0,0);}
.m5f_c00225{transform:matrix(0.001306,-0.653084,0.250000,0.000500,0,0);-ms-transform:matrix(0.001306,-0.653084,0.250000,0.000500,0,0);-webkit-transform:matrix(0.001306,-0.653084,0.250000,0.000500,0,0);}
.m1b_c00225{transform:matrix(0.001365,0.227511,-0.249996,0.001500,0,0);-ms-transform:matrix(0.001365,0.227511,-0.249996,0.001500,0,0);-webkit-transform:matrix(0.001365,0.227511,-0.249996,0.001500,0,0);}
.m83_c00225{transform:matrix(0.001390,-0.463398,0.249999,0.000750,0,0);-ms-transform:matrix(0.001390,-0.463398,0.249999,0.000750,0,0);-webkit-transform:matrix(0.001390,-0.463398,0.249999,0.000750,0,0);}
.m8c_c00225{transform:matrix(0.001418,-0.472578,0.249999,0.000750,0,0);-ms-transform:matrix(0.001418,-0.472578,0.249999,0.000750,0,0);-webkit-transform:matrix(0.001418,-0.472578,0.249999,0.000750,0,0);}
.m16_c00225{transform:matrix(0.001454,0.242326,-0.249996,0.001500,0,0);-ms-transform:matrix(0.001454,0.242326,-0.249996,0.001500,0,0);-webkit-transform:matrix(0.001454,0.242326,-0.249996,0.001500,0,0);}
.m8b_c00225{transform:matrix(0.001477,-0.492453,0.249999,0.000750,0,0);-ms-transform:matrix(0.001477,-0.492453,0.249999,0.000750,0,0);-webkit-transform:matrix(0.001477,-0.492453,0.249999,0.000750,0,0);}
.m5d_c00225{transform:matrix(0.001481,-0.740344,0.250000,0.000500,0,0);-ms-transform:matrix(0.001481,-0.740344,0.250000,0.000500,0,0);-webkit-transform:matrix(0.001481,-0.740344,0.250000,0.000500,0,0);}
.m86_c00225{transform:matrix(0.001489,-0.496498,0.249999,0.000750,0,0);-ms-transform:matrix(0.001489,-0.496498,0.249999,0.000750,0,0);-webkit-transform:matrix(0.001489,-0.496498,0.249999,0.000750,0,0);}
.m95_c00225{transform:matrix(0.001555,0.777673,-0.250000,0.000500,0,0);-ms-transform:matrix(0.001555,0.777673,-0.250000,0.000500,0,0);-webkit-transform:matrix(0.001555,0.777673,-0.250000,0.000500,0,0);}
.m8_c00225{transform:matrix(0.001575,0.787338,-0.250000,0.000500,0,0);-ms-transform:matrix(0.001575,0.787338,-0.250000,0.000500,0,0);-webkit-transform:matrix(0.001575,0.787338,-0.250000,0.000500,0,0);}
.m87_c00225{transform:matrix(0.001602,-0.533998,0.249999,0.000750,0,0);-ms-transform:matrix(0.001602,-0.533998,0.249999,0.000750,0,0);-webkit-transform:matrix(0.001602,-0.533998,0.249999,0.000750,0,0);}
.m7f_c00225{transform:matrix(0.001767,-0.589117,0.249999,0.000750,0,0);-ms-transform:matrix(0.001767,-0.589117,0.249999,0.000750,0,0);-webkit-transform:matrix(0.001767,-0.589117,0.249999,0.000750,0,0);}
.m8e_c00225{transform:matrix(0.001779,-0.592937,0.249999,0.000750,0,0);-ms-transform:matrix(0.001779,-0.592937,0.249999,0.000750,0,0);-webkit-transform:matrix(0.001779,-0.592937,0.249999,0.000750,0,0);}
.m81_c00225{transform:matrix(0.001976,-0.658502,0.249999,0.000750,0,0);-ms-transform:matrix(0.001976,-0.658502,0.249999,0.000750,0,0);-webkit-transform:matrix(0.001976,-0.658502,0.249999,0.000750,0,0);}
.m17_c00225{transform:matrix(0.002033,0.338824,-0.249996,0.001500,0,0);-ms-transform:matrix(0.002033,0.338824,-0.249996,0.001500,0,0);-webkit-transform:matrix(0.002033,0.338824,-0.249996,0.001500,0,0);}
.m7e_c00225{transform:matrix(0.002112,-0.704072,0.249999,0.000750,0,0);-ms-transform:matrix(0.002112,-0.704072,0.249999,0.000750,0,0);-webkit-transform:matrix(0.002112,-0.704072,0.249999,0.000750,0,0);}
.m1f_c00225{transform:matrix(0.002138,0.356304,-0.249996,0.001500,0,0);-ms-transform:matrix(0.002138,0.356304,-0.249996,0.001500,0,0);-webkit-transform:matrix(0.002138,0.356304,-0.249996,0.001500,0,0);}
.m24_c00225{transform:matrix(0.003508,0.584664,-0.249996,0.001500,0,0);-ms-transform:matrix(0.003508,0.584664,-0.249996,0.001500,0,0);-webkit-transform:matrix(0.003508,0.584664,-0.249996,0.001500,0,0);}
.m1e_c00225{transform:matrix(0.003828,0.638074,-0.249996,0.001500,0,0);-ms-transform:matrix(0.003828,0.638074,-0.249996,0.001500,0,0);-webkit-transform:matrix(0.003828,0.638074,-0.249996,0.001500,0,0);}
.me_c00225{transform:matrix(0.003882,0.242639,-0.249968,0.003999,0,0);-ms-transform:matrix(0.003882,0.242639,-0.249968,0.003999,0,0);-webkit-transform:matrix(0.003882,0.242639,-0.249968,0.003999,0,0);}
.m1c_c00225{transform:matrix(0.004727,0.787886,-0.249996,0.001500,0,0);-ms-transform:matrix(0.004727,0.787886,-0.249996,0.001500,0,0);-webkit-transform:matrix(0.004727,0.787886,-0.249996,0.001500,0,0);}
.m75_c00225{transform:matrix(0.005034,-0.228800,0.249940,0.005499,0,0);-ms-transform:matrix(0.005034,-0.228800,0.249940,0.005499,0,0);-webkit-transform:matrix(0.005034,-0.228800,0.249940,0.005499,0,0);}
.m77_c00225{transform:matrix(0.005249,-0.238602,0.249940,0.005499,0,0);-ms-transform:matrix(0.005249,-0.238602,0.249940,0.005499,0,0);-webkit-transform:matrix(0.005249,-0.238602,0.249940,0.005499,0,0);}
.m76_c00225{transform:matrix(0.005461,-0.248220,0.249940,0.005499,0,0);-ms-transform:matrix(0.005461,-0.248220,0.249940,0.005499,0,0);-webkit-transform:matrix(0.005461,-0.248220,0.249940,0.005499,0,0);}
.m20_c00225{transform:matrix(0.005875,0.979127,-0.249996,0.001500,0,0);-ms-transform:matrix(0.005875,0.979127,-0.249996,0.001500,0,0);-webkit-transform:matrix(0.005875,0.979127,-0.249996,0.001500,0,0);}
.m10_c00225{transform:matrix(0.006139,0.383671,-0.249968,0.003999,0,0);-ms-transform:matrix(0.006139,0.383671,-0.249968,0.003999,0,0);-webkit-transform:matrix(0.006139,0.383671,-0.249968,0.003999,0,0);}
.m73_c00225{transform:matrix(0.006144,-0.279252,0.249940,0.005499,0,0);-ms-transform:matrix(0.006144,-0.279252,0.249940,0.005499,0,0);-webkit-transform:matrix(0.006144,-0.279252,0.249940,0.005499,0,0);}
.m19_c00225{transform:matrix(0.006166,1.027682,-0.249996,0.001500,0,0);-ms-transform:matrix(0.006166,1.027682,-0.249996,0.001500,0,0);-webkit-transform:matrix(0.006166,1.027682,-0.249996,0.001500,0,0);}
.m79_c00225{transform:matrix(0.006734,-0.306101,0.249940,0.005499,0,0);-ms-transform:matrix(0.006734,-0.306101,0.249940,0.005499,0,0);-webkit-transform:matrix(0.006734,-0.306101,0.249940,0.005499,0,0);}
.m11_c00225{transform:matrix(0.006777,0.423581,-0.249968,0.003999,0,0);-ms-transform:matrix(0.006777,0.423581,-0.249968,0.003999,0,0);-webkit-transform:matrix(0.006777,0.423581,-0.249968,0.003999,0,0);}
.m6f_c00225{transform:matrix(0.007613,-0.346066,0.249940,0.005499,0,0);-ms-transform:matrix(0.007613,-0.346066,0.249940,0.005499,0,0);-webkit-transform:matrix(0.007613,-0.346066,0.249940,0.005499,0,0);}
.m6e_c00225{transform:matrix(0.007638,-0.347166,0.249940,0.005499,0,0);-ms-transform:matrix(0.007638,-0.347166,0.249940,0.005499,0,0);-webkit-transform:matrix(0.007638,-0.347166,0.249940,0.005499,0,0);}
.m1d_c00225{transform:matrix(0.007657,1.276197,-0.249996,0.001500,0,0);-ms-transform:matrix(0.007657,1.276197,-0.249996,0.001500,0,0);-webkit-transform:matrix(0.007657,1.276197,-0.249996,0.001500,0,0);}
.mf_c00225{transform:matrix(0.008406,0.525388,-0.249968,0.003999,0,0);-ms-transform:matrix(0.008406,0.525388,-0.249968,0.003999,0,0);-webkit-transform:matrix(0.008406,0.525388,-0.249968,0.003999,0,0);}
.m6d_c00225{transform:matrix(0.008823,-0.401068,0.249940,0.005499,0,0);-ms-transform:matrix(0.008823,-0.401068,0.249940,0.005499,0,0);-webkit-transform:matrix(0.008823,-0.401068,0.249940,0.005499,0,0);}
.m12_c00225{transform:matrix(0.009286,0.580381,-0.249968,0.003999,0,0);-ms-transform:matrix(0.009286,0.580381,-0.249968,0.003999,0,0);-webkit-transform:matrix(0.009286,0.580381,-0.249968,0.003999,0,0);}
.m78_c00225{transform:matrix(0.009328,-0.423997,0.249940,0.005499,0,0);-ms-transform:matrix(0.009328,-0.423997,0.249940,0.005499,0,0);-webkit-transform:matrix(0.009328,-0.423997,0.249940,0.005499,0,0);}
.m72_c00225{transform:matrix(0.010614,-0.482443,0.249940,0.005499,0,0);-ms-transform:matrix(0.010614,-0.482443,0.249940,0.005499,0,0);-webkit-transform:matrix(0.010614,-0.482443,0.249940,0.005499,0,0);}
.m74_c00225{transform:matrix(0.011342,-0.515565,0.249940,0.005499,0,0);-ms-transform:matrix(0.011342,-0.515565,0.249940,0.005499,0,0);-webkit-transform:matrix(0.011342,-0.515565,0.249940,0.005499,0,0);}
.m71_c00225{transform:matrix(0.012135,-0.551577,0.249940,0.005499,0,0);-ms-transform:matrix(0.012135,-0.551577,0.249940,0.005499,0,0);-webkit-transform:matrix(0.012135,-0.551577,0.249940,0.005499,0,0);}
.m13_c00225{transform:matrix(0.014736,0.921022,-0.249968,0.003999,0,0);-ms-transform:matrix(0.014736,0.921022,-0.249968,0.003999,0,0);-webkit-transform:matrix(0.014736,0.921022,-0.249968,0.003999,0,0);}
.m2_c00225{transform:matrix(0.016258,0.295017,-0.249621,0.013757,0,0);-ms-transform:matrix(0.016258,0.295017,-0.249621,0.013757,0,0);-webkit-transform:matrix(0.016258,0.295017,-0.249621,0.013757,0,0);}
.m21_c00225{transform:matrix(0.019680,3.279946,-0.249996,0.001500,0,0);-ms-transform:matrix(0.019680,3.279946,-0.249996,0.001500,0,0);-webkit-transform:matrix(0.019680,3.279946,-0.249996,0.001500,0,0);}
.m70_c00225{transform:matrix(0.039535,-1.797050,0.249940,0.005499,0,0);-ms-transform:matrix(0.039535,-1.797050,0.249940,0.005499,0,0);-webkit-transform:matrix(0.039535,-1.797050,0.249940,0.005499,0,0);}
.m25_c00225{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.m0_c00225{transform:matrix(0.159450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159450,0.000000,0.000000,0.250000,0,0);}
.m1_c00225{transform:matrix(0.241660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241660,0.000000,0.000000,0.250000,0,0);}
.v0_c00225{vertical-align:0.000000px;}
.ls0_c00225{letter-spacing:0.000000px;}
.sc__c00225{text-shadow:none;}
.sc0_c00225{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__c00225{-webkit-text-stroke:0px transparent;}
.sc0_c00225{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00225{word-spacing:0.000000px;}
.fc0_c00225{color:transparent;}
.fs1_c00225{font-size:17.991259px;}
.fs0_c00225{font-size:18.000000px;}
.fs6_c00225{font-size:24.000432px;}
.fsd_c00225{font-size:42.010163px;}
.fs9_c00225{font-size:48.000024px;}
.fs8_c00225{font-size:54.000027px;}
.fsa_c00225{font-size:54.000108px;}
.fsc_c00225{font-size:60.000030px;}
.fs11_c00225{font-size:60.000270px;}
.fse_c00225{font-size:60.014518px;}
.fs7_c00225{font-size:66.000132px;}
.fsf_c00225{font-size:66.000297px;}
.fsb_c00225{font-size:72.000144px;}
.fs10_c00225{font-size:72.000324px;}
.fs12_c00225{font-size:102.000204px;}
.fs2_c00225{font-size:114.000228px;}
.fs4_c00225{font-size:114.014591px;}
.fs3_c00225{font-size:138.000276px;}
.fs5_c00225{font-size:186.023806px;}
.y0_c00225{bottom:0.000000px;}
.y7d_c00225{bottom:42.117000px;}
.y93_c00225{bottom:61.029803px;}
.y89_c00225{bottom:61.057676px;}
.y92_c00225{bottom:74.812171px;}
.y88_c00225{bottom:97.521855px;}
.y7c_c00225{bottom:106.647000px;}
.y79_c00225{bottom:109.395090px;}
.y91_c00225{bottom:112.040166px;}
.y87_c00225{bottom:130.756472px;}
.y70_c00225{bottom:145.567500px;}
.y86_c00225{bottom:157.224462px;}
.y78_c00225{bottom:159.139854px;}
.y2e_c00225{bottom:164.386500px;}
.y90_c00225{bottom:174.161327px;}
.y6f_c00225{bottom:180.849000px;}
.y13_c00225{bottom:183.223500px;}
.y77_c00225{bottom:205.856118px;}
.y6e_c00225{bottom:208.159500px;}
.y85_c00225{bottom:212.806493px;}
.ye_c00225{bottom:217.639500px;}
.y8f_c00225{bottom:218.690019px;}
.y7b_c00225{bottom:219.238500px;}
.y1_c00225{bottom:219.510000px;}
.y6d_c00225{bottom:225.177000px;}
.y84_c00225{bottom:231.658844px;}
.y2c_c00225{bottom:244.579500px;}
.y2d_c00225{bottom:247.833000px;}
.y44_c00225{bottom:262.153881px;}
.y12_c00225{bottom:263.128500px;}
.y8e_c00225{bottom:264.904757px;}
.y62_c00225{bottom:272.697171px;}
.yd_c00225{bottom:280.278000px;}
.y4f_c00225{bottom:281.876640px;}
.y61_c00225{bottom:285.655704px;}
.yc_c00225{bottom:290.788500px;}
.y55_c00225{bottom:294.831000px;}
.y3a_c00225{bottom:300.238500px;}
.y11_c00225{bottom:304.543500px;}
.y2b_c00225{bottom:305.611500px;}
.y6c_c00225{bottom:306.714000px;}
.y83_c00225{bottom:313.747869px;}
.y43_c00225{bottom:315.069111px;}
.y76_c00225{bottom:316.424712px;}
.y7_c00225{bottom:316.735500px;}
.y8d_c00225{bottom:321.363269px;}
.y60_c00225{bottom:324.537303px;}
.y5c_c00225{bottom:328.841064px;}
.y4e_c00225{bottom:338.024534px;}
.y75_c00225{bottom:338.834844px;}
.y6b_c00225{bottom:342.088500px;}
.y54_c00225{bottom:347.484000px;}
.y82_c00225{bottom:356.129657px;}
.y19_c00225{bottom:359.100000px;}
.y4d_c00225{bottom:364.227984px;}
.y5b_c00225{bottom:366.378285px;}
.y3_c00225{bottom:373.140000px;}
.y18_c00225{bottom:375.570000px;}
.y2a_c00225{bottom:376.354500px;}
.y6_c00225{bottom:376.387500px;}
.y21_c00225{bottom:376.646361px;}
.y39_c00225{bottom:383.938500px;}
.y10_c00225{bottom:391.590000px;}
.y8c_c00225{bottom:393.719203px;}
.y38_c00225{bottom:394.471500px;}
.y42_c00225{bottom:395.545201px;}
.y6a_c00225{bottom:397.167000px;}
.y20_c00225{bottom:398.782761px;}
.y4c_c00225{bottom:401.214914px;}
.y25_c00225{bottom:401.225238px;}
.y17_c00225{bottom:402.030000px;}
.y53_c00225{bottom:406.338000px;}
.y26_c00225{bottom:406.890000px;}
.yf_c00225{bottom:407.209500px;}
.yb_c00225{bottom:407.970000px;}
.y4b_c00225{bottom:410.955895px;}
.y5a_c00225{bottom:415.199922px;}
.y1f_c00225{bottom:419.036580px;}
.y37_c00225{bottom:420.384000px;}
.y5f_c00225{bottom:420.926046px;}
.y81_c00225{bottom:429.035511px;}
.y16_c00225{bottom:430.108500px;}
.y41_c00225{bottom:431.734017px;}
.y69_c00225{bottom:436.587000px;}
.y95_c00225{bottom:437.424000px;}
.y74_c00225{bottom:437.836872px;}
.y52_c00225{bottom:440.622000px;}
.y36_c00225{bottom:442.801500px;}
.y24_c00225{bottom:443.612031px;}
.y15_c00225{bottom:446.850000px;}
.y40_c00225{bottom:448.476931px;}
.y5e_c00225{bottom:457.914639px;}
.y4a_c00225{bottom:463.052297px;}
.y29_c00225{bottom:466.528500px;}
.y1e_c00225{bottom:467.367042px;}
.y8b_c00225{bottom:469.265724px;}
.y51_c00225{bottom:469.789500px;}
.y80_c00225{bottom:471.159294px;}
.y3f_c00225{bottom:471.407314px;}
.y23_c00225{bottom:472.222896px;}
.y5_c00225{bottom:474.144000px;}
.y35_c00225{bottom:478.440000px;}
.y49_c00225{bottom:480.060764px;}
.y59_c00225{bottom:484.641903px;}
.y1d_c00225{bottom:491.128005px;}
.y34_c00225{bottom:491.668500px;}
.ya_c00225{bottom:498.183000px;}
.y68_c00225{bottom:498.403500px;}
.y58_c00225{bottom:501.116280px;}
.y1c_c00225{bottom:504.358545px;}
.y33_c00225{bottom:507.058500px;}
.y28_c00225{bottom:508.932000px;}
.y94_c00225{bottom:512.257500px;}
.y7f_c00225{bottom:514.090090px;}
.y50_c00225{bottom:514.888500px;}
.y1b_c00225{bottom:517.589085px;}
.y67_c00225{bottom:519.480000px;}
.y3e_c00225{bottom:522.440055px;}
.y73_c00225{bottom:525.660867px;}
.y57_c00225{bottom:526.740588px;}
.y48_c00225{bottom:529.740669px;}
.y66_c00225{bottom:537.030000px;}
.y47_c00225{bottom:537.849654px;}
.y27_c00225{bottom:542.430000px;}
.y65_c00225{bottom:547.290000px;}
.y3d_c00225{bottom:551.071910px;}
.y22_c00225{bottom:559.994973px;}
.y1a_c00225{bottom:562.139394px;}
.y56_c00225{bottom:568.332279px;}
.y9_c00225{bottom:571.398000px;}
.y72_c00225{bottom:573.140631px;}
.y32_c00225{bottom:573.205500px;}
.y31_c00225{bottom:584.820000px;}
.y46_c00225{bottom:588.063558px;}
.y8a_c00225{bottom:592.083009px;}
.y14_c00225{bottom:592.376736px;}
.y5d_c00225{bottom:593.724981px;}
.y7a_c00225{bottom:599.668500px;}
.y64_c00225{bottom:604.528500px;}
.y3c_c00225{bottom:606.696126px;}
.y2_c00225{bottom:607.500000px;}
.y7e_c00225{bottom:619.389048px;}
.y30_c00225{bottom:632.337000px;}
.y4_c00225{bottom:634.500000px;}
.y2f_c00225{bottom:639.370500px;}
.y8_c00225{bottom:642.871500px;}
.y71_c00225{bottom:643.242027px;}
.y63_c00225{bottom:652.860000px;}
.y3b_c00225{bottom:658.240364px;}
.y45_c00225{bottom:666.354410px;}
.h2_c00225{height:17.991259px;}
.h1_c00225{height:18.000000px;}
.h7_c00225{height:24.000432px;}
.he_c00225{height:42.010163px;}
.ha_c00225{height:48.000024px;}
.h9_c00225{height:54.000027px;}
.hb_c00225{height:54.000108px;}
.hd_c00225{height:60.000030px;}
.h12_c00225{height:60.000270px;}
.hf_c00225{height:60.014518px;}
.h8_c00225{height:66.000132px;}
.h10_c00225{height:66.000297px;}
.hc_c00225{height:72.000144px;}
.h11_c00225{height:72.000324px;}
.h13_c00225{height:102.000204px;}
.h3_c00225{height:114.000228px;}
.h5_c00225{height:114.014591px;}
.h4_c00225{height:138.000276px;}
.h6_c00225{height:186.023806px;}
.h0_c00225{height:682.500000px;}
.w0_c00225{width:941.700000px;}
.w1_c00225{width:942.000000px;}
.x0_c00225{left:0.000000px;}
.x2b_c00225{left:108.270000px;}
.x28_c00225{left:132.844028px;}
.x29_c00225{left:134.017452px;}
.x2a_c00225{left:135.053878px;}
.x26_c00225{left:147.413076px;}
.x27_c00225{left:148.651407px;}
.x25_c00225{left:155.728710px;}
.x24_c00225{left:156.870000px;}
.x23_c00225{left:158.488152px;}
.x22_c00225{left:159.570531px;}
.x21_c00225{left:160.586283px;}
.x20_c00225{left:163.478799px;}
.x1f_c00225{left:165.632832px;}
.x1e_c00225{left:167.542449px;}
.x1d_c00225{left:168.574998px;}
.x1c_c00225{left:170.099220px;}
.x19_c00225{left:177.390000px;}
.x1b_c00225{left:184.391091px;}
.x1a_c00225{left:186.142500px;}
.x18_c00225{left:192.236979px;}
.x17_c00225{left:215.380380px;}
.x16_c00225{left:216.537291px;}
.x15_c00225{left:240.570000px;}
.x14_c00225{left:254.582477px;}
.x13_c00225{left:255.697455px;}
.x12_c00225{left:267.321766px;}
.x11_c00225{left:268.597521px;}
.x10_c00225{left:269.735355px;}
.xf_c00225{left:284.580000px;}
.xe_c00225{left:370.692000px;}
.xd_c00225{left:396.090000px;}
.xc_c00225{left:414.396468px;}
.xb_c00225{left:416.287170px;}
.xa_c00225{left:419.580000px;}
.x9_c00225{left:468.231264px;}
.x6_c00225{left:522.223500px;}
.x7_c00225{left:523.866156px;}
.x8_c00225{left:525.807276px;}
.x5_c00225{left:570.780000px;}
.x3_c00225{left:605.070000px;}
.x2_c00225{left:610.470000px;}
.x1_c00225{left:613.440000px;}
.x4_c00225{left:618.570000px;}
@media print{
.v0_c00225{vertical-align:0.000000pt;}
.ls0_c00225{letter-spacing:0.000000pt;}
.ws0_c00225{word-spacing:0.000000pt;}
.fs1_c00225{font-size:15.992230pt;}
.fs0_c00225{font-size:16.000000pt;}
.fs6_c00225{font-size:21.333717pt;}
.fsd_c00225{font-size:37.342367pt;}
.fs9_c00225{font-size:42.666688pt;}
.fs8_c00225{font-size:48.000024pt;}
.fsa_c00225{font-size:48.000096pt;}
.fsc_c00225{font-size:53.333360pt;}
.fs11_c00225{font-size:53.333573pt;}
.fse_c00225{font-size:53.346238pt;}
.fs7_c00225{font-size:58.666784pt;}
.fsf_c00225{font-size:58.666931pt;}
.fsb_c00225{font-size:64.000128pt;}
.fs10_c00225{font-size:64.000288pt;}
.fs12_c00225{font-size:90.666848pt;}
.fs2_c00225{font-size:101.333536pt;}
.fs4_c00225{font-size:101.346303pt;}
.fs3_c00225{font-size:122.666912pt;}
.fs5_c00225{font-size:165.354495pt;}
.y0_c00225{bottom:0.000000pt;}
.y7d_c00225{bottom:37.437333pt;}
.y93_c00225{bottom:54.248713pt;}
.y89_c00225{bottom:54.273489pt;}
.y92_c00225{bottom:66.499708pt;}
.y88_c00225{bottom:86.686093pt;}
.y7c_c00225{bottom:94.797333pt;}
.y79_c00225{bottom:97.240080pt;}
.y91_c00225{bottom:99.591259pt;}
.y87_c00225{bottom:116.227975pt;}
.y70_c00225{bottom:129.393333pt;}
.y86_c00225{bottom:139.755077pt;}
.y78_c00225{bottom:141.457648pt;}
.y2e_c00225{bottom:146.121333pt;}
.y90_c00225{bottom:154.810068pt;}
.y6f_c00225{bottom:160.754667pt;}
.y13_c00225{bottom:162.865333pt;}
.y77_c00225{bottom:182.983216pt;}
.y6e_c00225{bottom:185.030667pt;}
.y85_c00225{bottom:189.161327pt;}
.ye_c00225{bottom:193.457333pt;}
.y8f_c00225{bottom:194.391128pt;}
.y7b_c00225{bottom:194.878667pt;}
.y1_c00225{bottom:195.120000pt;}
.y6d_c00225{bottom:200.157333pt;}
.y84_c00225{bottom:205.918972pt;}
.y2c_c00225{bottom:217.404000pt;}
.y2d_c00225{bottom:220.296000pt;}
.y44_c00225{bottom:233.025672pt;}
.y12_c00225{bottom:233.892000pt;}
.y8e_c00225{bottom:235.470895pt;}
.y62_c00225{bottom:242.397485pt;}
.yd_c00225{bottom:249.136000pt;}
.y4f_c00225{bottom:250.557013pt;}
.y61_c00225{bottom:253.916181pt;}
.yc_c00225{bottom:258.478667pt;}
.y55_c00225{bottom:262.072000pt;}
.y3a_c00225{bottom:266.878667pt;}
.y11_c00225{bottom:270.705333pt;}
.y2b_c00225{bottom:271.654667pt;}
.y6c_c00225{bottom:272.634667pt;}
.y83_c00225{bottom:278.886995pt;}
.y43_c00225{bottom:280.061432pt;}
.y76_c00225{bottom:281.266411pt;}
.y7_c00225{bottom:281.542667pt;}
.y8d_c00225{bottom:285.656239pt;}
.y60_c00225{bottom:288.477603pt;}
.y5c_c00225{bottom:292.303168pt;}
.y4e_c00225{bottom:300.466252pt;}
.y75_c00225{bottom:301.186528pt;}
.y6b_c00225{bottom:304.078667pt;}
.y54_c00225{bottom:308.874667pt;}
.y82_c00225{bottom:316.559695pt;}
.y19_c00225{bottom:319.200000pt;}
.y4d_c00225{bottom:323.758208pt;}
.y5b_c00225{bottom:325.669587pt;}
.y3_c00225{bottom:331.680000pt;}
.y18_c00225{bottom:333.840000pt;}
.y2a_c00225{bottom:334.537333pt;}
.y6_c00225{bottom:334.566667pt;}
.y21_c00225{bottom:334.796765pt;}
.y39_c00225{bottom:341.278667pt;}
.y10_c00225{bottom:348.080000pt;}
.y8c_c00225{bottom:349.972625pt;}
.y38_c00225{bottom:350.641333pt;}
.y42_c00225{bottom:351.595735pt;}
.y6a_c00225{bottom:353.037333pt;}
.y20_c00225{bottom:354.473565pt;}
.y4c_c00225{bottom:356.635479pt;}
.y25_c00225{bottom:356.644656pt;}
.y17_c00225{bottom:357.360000pt;}
.y53_c00225{bottom:361.189333pt;}
.y26_c00225{bottom:361.680000pt;}
.yf_c00225{bottom:361.964000pt;}
.yb_c00225{bottom:362.640000pt;}
.y4b_c00225{bottom:365.294129pt;}
.y5a_c00225{bottom:369.066597pt;}
.y1f_c00225{bottom:372.476960pt;}
.y37_c00225{bottom:373.674667pt;}
.y5f_c00225{bottom:374.156485pt;}
.y81_c00225{bottom:381.364899pt;}
.y16_c00225{bottom:382.318667pt;}
.y41_c00225{bottom:383.763571pt;}
.y69_c00225{bottom:388.077333pt;}
.y95_c00225{bottom:388.821333pt;}
.y74_c00225{bottom:389.188331pt;}
.y52_c00225{bottom:391.664000pt;}
.y36_c00225{bottom:393.601333pt;}
.y24_c00225{bottom:394.321805pt;}
.y15_c00225{bottom:397.200000pt;}
.y40_c00225{bottom:398.646161pt;}
.y5e_c00225{bottom:407.035235pt;}
.y4a_c00225{bottom:411.602041pt;}
.y29_c00225{bottom:414.692000pt;}
.y1e_c00225{bottom:415.437371pt;}
.y8b_c00225{bottom:417.125088pt;}
.y51_c00225{bottom:417.590667pt;}
.y80_c00225{bottom:418.808261pt;}
.y3f_c00225{bottom:419.028724pt;}
.y23_c00225{bottom:419.753685pt;}
.y5_c00225{bottom:421.461333pt;}
.y35_c00225{bottom:425.280000pt;}
.y49_c00225{bottom:426.720679pt;}
.y59_c00225{bottom:430.792803pt;}
.y1d_c00225{bottom:436.558227pt;}
.y34_c00225{bottom:437.038667pt;}
.ya_c00225{bottom:442.829333pt;}
.y68_c00225{bottom:443.025333pt;}
.y58_c00225{bottom:445.436693pt;}
.y1c_c00225{bottom:448.318707pt;}
.y33_c00225{bottom:450.718667pt;}
.y28_c00225{bottom:452.384000pt;}
.y94_c00225{bottom:455.340000pt;}
.y7f_c00225{bottom:456.968969pt;}
.y50_c00225{bottom:457.678667pt;}
.y1b_c00225{bottom:460.079187pt;}
.y67_c00225{bottom:461.760000pt;}
.y3e_c00225{bottom:464.391160pt;}
.y73_c00225{bottom:467.254104pt;}
.y57_c00225{bottom:468.213856pt;}
.y48_c00225{bottom:470.880595pt;}
.y66_c00225{bottom:477.360000pt;}
.y47_c00225{bottom:478.088581pt;}
.y27_c00225{bottom:482.160000pt;}
.y65_c00225{bottom:486.480000pt;}
.y3d_c00225{bottom:489.841697pt;}
.y22_c00225{bottom:497.773309pt;}
.y1a_c00225{bottom:499.679461pt;}
.y56_c00225{bottom:505.184248pt;}
.y9_c00225{bottom:507.909333pt;}
.y72_c00225{bottom:509.458339pt;}
.y32_c00225{bottom:509.516000pt;}
.y31_c00225{bottom:519.840000pt;}
.y46_c00225{bottom:522.723163pt;}
.y8a_c00225{bottom:526.296008pt;}
.y14_c00225{bottom:526.557099pt;}
.y5d_c00225{bottom:527.755539pt;}
.y7a_c00225{bottom:533.038667pt;}
.y64_c00225{bottom:537.358667pt;}
.y3c_c00225{bottom:539.285445pt;}
.y2_c00225{bottom:540.000000pt;}
.y7e_c00225{bottom:550.568043pt;}
.y30_c00225{bottom:562.077333pt;}
.y4_c00225{bottom:564.000000pt;}
.y2f_c00225{bottom:568.329333pt;}
.y8_c00225{bottom:571.441333pt;}
.y71_c00225{bottom:571.770691pt;}
.y63_c00225{bottom:580.320000pt;}
.y3b_c00225{bottom:585.102545pt;}
.y45_c00225{bottom:592.315031pt;}
.h2_c00225{height:15.992230pt;}
.h1_c00225{height:16.000000pt;}
.h7_c00225{height:21.333717pt;}
.he_c00225{height:37.342367pt;}
.ha_c00225{height:42.666688pt;}
.h9_c00225{height:48.000024pt;}
.hb_c00225{height:48.000096pt;}
.hd_c00225{height:53.333360pt;}
.h12_c00225{height:53.333573pt;}
.hf_c00225{height:53.346238pt;}
.h8_c00225{height:58.666784pt;}
.h10_c00225{height:58.666931pt;}
.hc_c00225{height:64.000128pt;}
.h11_c00225{height:64.000288pt;}
.h13_c00225{height:90.666848pt;}
.h3_c00225{height:101.333536pt;}
.h5_c00225{height:101.346303pt;}
.h4_c00225{height:122.666912pt;}
.h6_c00225{height:165.354495pt;}
.h0_c00225{height:606.666667pt;}
.w0_c00225{width:837.066667pt;}
.w1_c00225{width:837.333333pt;}
.x0_c00225{left:0.000000pt;}
.x2b_c00225{left:96.240000pt;}
.x28_c00225{left:118.083580pt;}
.x29_c00225{left:119.126624pt;}
.x2a_c00225{left:120.047892pt;}
.x26_c00225{left:131.033845pt;}
.x27_c00225{left:132.134584pt;}
.x25_c00225{left:138.425520pt;}
.x24_c00225{left:139.440000pt;}
.x23_c00225{left:140.878357pt;}
.x22_c00225{left:141.840472pt;}
.x21_c00225{left:142.743363pt;}
.x20_c00225{left:145.314488pt;}
.x1f_c00225{left:147.229184pt;}
.x1e_c00225{left:148.926621pt;}
.x1d_c00225{left:149.844443pt;}
.x1c_c00225{left:151.199307pt;}
.x19_c00225{left:157.680000pt;}
.x1b_c00225{left:163.903192pt;}
.x1a_c00225{left:165.460000pt;}
.x18_c00225{left:170.877315pt;}
.x17_c00225{left:191.449227pt;}
.x16_c00225{left:192.477592pt;}
.x15_c00225{left:213.840000pt;}
.x14_c00225{left:226.295535pt;}
.x13_c00225{left:227.286627pt;}
.x12_c00225{left:237.619348pt;}
.x11_c00225{left:238.753352pt;}
.x10_c00225{left:239.764760pt;}
.xf_c00225{left:252.960000pt;}
.xe_c00225{left:329.504000pt;}
.xd_c00225{left:352.080000pt;}
.xc_c00225{left:368.352416pt;}
.xb_c00225{left:370.033040pt;}
.xa_c00225{left:372.960000pt;}
.x9_c00225{left:416.205568pt;}
.x6_c00225{left:464.198667pt;}
.x7_c00225{left:465.658805pt;}
.x8_c00225{left:467.384245pt;}
.x5_c00225{left:507.360000pt;}
.x3_c00225{left:537.840000pt;}
.x2_c00225{left:542.640000pt;}
.x1_c00225{left:545.280000pt;}
.x4_c00225{left:549.840000pt;}
}





/* 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_c00226 {
    display:none;
  }
  .loading-indicator_c00226.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00226 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_c00226 { 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_c00226" -> "#page-container .classname_c00226")
 */
.pf_c00226 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00226 { /* 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_c00226.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00226 { /* 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_c00226 { /* 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_c00226 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00226 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00226 {overflow:visible;}
  }
}
.c_c00226 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00226 { /* 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_c00226:after { /* webkit #35443 */
  content: '';
}
.t_c00226:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00226 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 */
}
.__c00226 { /* 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_c00226 { /* info for Javascript */
  display:none;
}
.l_c00226 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00226 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00226 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00226: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_c00226 {
    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_c00226.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00226.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_c00226 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00226{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00226;src:url('chunks/assets/font_59dc3ab2e04ed21d4ac9992b.woff2')format("woff");}.ff1_c00226{font-family:ff1_c00226;line-height:1.000000;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;}
.m0_c00226{transform:matrix(0.180580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180580,0.000000,0.000000,0.250000,0,0);}
.m1_c00226{transform:matrix(0.180625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180625,0.000000,0.000000,0.250000,0,0);}
.m2_c00226{transform:matrix(0.264010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264010,0.000000,0.000000,0.250000,0,0);}
.m8_c00226{transform:matrix(0.427835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427835,0.000000,0.000000,0.250000,0,0);}
.m3_c00226{transform:matrix(0.476565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.476565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.476565,0.000000,0.000000,0.250000,0,0);}
.m7_c00226{transform:matrix(0.559710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559710,0.000000,0.000000,0.250000,0,0);}
.m5_c00226{transform:matrix(0.664840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.664840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.664840,0.000000,0.000000,0.250000,0,0);}
.m4_c00226{transform:matrix(0.778855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.778855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.778855,0.000000,0.000000,0.250000,0,0);}
.m6_c00226{transform:matrix(0.900440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.900440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.900440,0.000000,0.000000,0.250000,0,0);}
.m9_c00226{transform:matrix(0.910225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.910225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.910225,0.000000,0.000000,0.250000,0,0);}
.v0_c00226{vertical-align:0.000000px;}
.ls0_c00226{letter-spacing:0.000000px;}
.sc__c00226{text-shadow:none;}
.sc0_c00226{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__c00226{-webkit-text-stroke:0px transparent;}
.sc0_c00226{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00226{word-spacing:0.000000px;}
.fc0_c00226{color:transparent;}
.fs2_c00226{font-size:24.000000px;}
.fs3_c00226{font-size:48.000000px;}
.fs1_c00226{font-size:168.000000px;}
.fs0_c00226{font-size:306.000000px;}
.y0_c00226{bottom:0.000000px;}
.y5_c00226{bottom:179.010000px;}
.y4_c00226{bottom:268.380000px;}
.y3_c00226{bottom:273.240000px;}
.y2_c00226{bottom:648.540000px;}
.y1_c00226{bottom:674.460000px;}
.h3_c00226{height:24.000000px;}
.h4_c00226{height:48.000000px;}
.h2_c00226{height:168.000000px;}
.h1_c00226{height:306.000000px;}
.h0_c00226{height:682.500000px;}
.w0_c00226{width:941.700000px;}
.w1_c00226{width:942.000000px;}
.x0_c00226{left:0.000000px;}
.x1_c00226{left:855.090000px;}
.x2_c00226{left:911.520000px;}
.x3_c00226{left:924.750000px;}
.x4_c00226{left:927.990000px;}
.x8_c00226{left:930.150000px;}
.x5_c00226{left:932.850000px;}
.x7_c00226{left:939.060000px;}
.x6_c00226{left:940.410000px;}
@media print{
.v0_c00226{vertical-align:0.000000pt;}
.ls0_c00226{letter-spacing:0.000000pt;}
.ws0_c00226{word-spacing:0.000000pt;}
.fs2_c00226{font-size:21.333333pt;}
.fs3_c00226{font-size:42.666667pt;}
.fs1_c00226{font-size:149.333333pt;}
.fs0_c00226{font-size:272.000000pt;}
.y0_c00226{bottom:0.000000pt;}
.y5_c00226{bottom:159.120000pt;}
.y4_c00226{bottom:238.560000pt;}
.y3_c00226{bottom:242.880000pt;}
.y2_c00226{bottom:576.480000pt;}
.y1_c00226{bottom:599.520000pt;}
.h3_c00226{height:21.333333pt;}
.h4_c00226{height:42.666667pt;}
.h2_c00226{height:149.333333pt;}
.h1_c00226{height:272.000000pt;}
.h0_c00226{height:606.666667pt;}
.w0_c00226{width:837.066667pt;}
.w1_c00226{width:837.333333pt;}
.x0_c00226{left:0.000000pt;}
.x1_c00226{left:760.080000pt;}
.x2_c00226{left:810.240000pt;}
.x3_c00226{left:822.000000pt;}
.x4_c00226{left:824.880000pt;}
.x8_c00226{left:826.800000pt;}
.x5_c00226{left:829.200000pt;}
.x7_c00226{left:834.720000pt;}
.x6_c00226{left:835.920000pt;}
}





/* 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_c00227 {
    display:none;
  }
  .loading-indicator_c00227.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00227 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_c00227 { 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_c00227" -> "#page-container .classname_c00227")
 */
.pf_c00227 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00227 { /* 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_c00227.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00227 { /* 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_c00227 { /* 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_c00227 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00227 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00227 {overflow:visible;}
  }
}
.c_c00227 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00227 { /* 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_c00227:after { /* webkit #35443 */
  content: '';
}
.t_c00227:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00227 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 */
}
.__c00227 { /* 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_c00227 { /* info for Javascript */
  display:none;
}
.l_c00227 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00227 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00227 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00227: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_c00227 {
    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_c00227.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00227.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_c00227 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00227{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00227;src:url('chunks/assets/font_c605e72f209fc835e906f064.woff2')format("woff");}.ff1_c00227{font-family:ff1_c00227;line-height:1.000000;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;}
.m20_c00227{transform:matrix(0.008540,-0.000060,0.001750,0.249994,0,0);-ms-transform:matrix(0.008540,-0.000060,0.001750,0.249994,0,0);-webkit-transform:matrix(0.008540,-0.000060,0.001750,0.249994,0,0);}
.m3a_c00227{transform:matrix(0.016225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.016225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.016225,0.000000,0.000000,0.250000,0,0);}
.m8d_c00227{transform:matrix(0.054085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054085,0.000000,0.000000,0.250000,0,0);}
.m8e_c00227{transform:matrix(0.063640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.063640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.063640,0.000000,0.000000,0.250000,0,0);}
.m7b_c00227{transform:matrix(0.115955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115955,0.000000,0.000000,0.250000,0,0);}
.m97_c00227{transform:matrix(0.120415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120415,0.000000,0.000000,0.250000,0,0);}
.m80_c00227{transform:matrix(0.120555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120555,0.000000,0.000000,0.250000,0,0);}
.m7e_c00227{transform:matrix(0.123145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123145,0.000000,0.000000,0.250000,0,0);}
.m7c_c00227{transform:matrix(0.131505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131505,0.000000,0.000000,0.250000,0,0);}
.m7a_c00227{transform:matrix(0.131680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131680,0.000000,0.000000,0.250000,0,0);}
.m7d_c00227{transform:matrix(0.134535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134535,0.000000,0.000000,0.250000,0,0);}
.m76_c00227{transform:matrix(0.137325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137325,0.000000,0.000000,0.250000,0,0);}
.m11_c00227{transform:matrix(0.139720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139720,0.000000,0.000000,0.250000,0,0);}
.m93_c00227{transform:matrix(0.143180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143180,0.000000,0.000000,0.250000,0,0);}
.m7f_c00227{transform:matrix(0.148605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148605,0.000000,0.000000,0.250000,0,0);}
.m50_c00227{transform:matrix(0.153560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153560,0.000000,0.000000,0.250000,0,0);}
.m4c_c00227{transform:matrix(0.154135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154135,0.000000,0.000000,0.250000,0,0);}
.m58_c00227{transform:matrix(0.159130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159130,0.000000,0.000000,0.250000,0,0);}
.m8b_c00227{transform:matrix(0.161015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161015,0.000000,0.000000,0.250000,0,0);}
.m42_c00227{transform:matrix(0.161705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161705,0.000000,0.000000,0.250000,0,0);}
.m63_c00227{transform:matrix(0.163355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163355,0.000000,0.000000,0.250000,0,0);}
.m5e_c00227{transform:matrix(0.163465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163465,0.000000,0.000000,0.250000,0,0);}
.m5_c00227{transform:matrix(0.165220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165220,0.000000,0.000000,0.250000,0,0);}
.m82_c00227{transform:matrix(0.165605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165605,0.000000,0.000000,0.250000,0,0);}
.m15_c00227{transform:matrix(0.165755,-0.005475,0.008254,0.249864,0,0);-ms-transform:matrix(0.165755,-0.005475,0.008254,0.249864,0,0);-webkit-transform:matrix(0.165755,-0.005475,0.008254,0.249864,0,0);}
.m4b_c00227{transform:matrix(0.166715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166715,0.000000,0.000000,0.250000,0,0);}
.m1b_c00227{transform:matrix(0.166890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166890,0.000000,0.000000,0.250000,0,0);}
.m3c_c00227{transform:matrix(0.168240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168240,0.000000,0.000000,0.250000,0,0);}
.m2e_c00227{transform:matrix(0.169355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169355,0.000000,0.000000,0.250000,0,0);}
.m18_c00227{transform:matrix(0.170640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170640,0.000000,0.000000,0.250000,0,0);}
.m45_c00227{transform:matrix(0.172365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172365,0.000000,0.000000,0.250000,0,0);}
.m57_c00227{transform:matrix(0.172980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172980,0.000000,0.000000,0.250000,0,0);}
.m43_c00227{transform:matrix(0.174820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174820,0.000000,0.000000,0.250000,0,0);}
.m44_c00227{transform:matrix(0.174940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174940,0.000000,0.000000,0.250000,0,0);}
.m39_c00227{transform:matrix(0.176140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176140,0.000000,0.000000,0.250000,0,0);}
.m0_c00227{transform:matrix(0.177835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177835,0.000000,0.000000,0.250000,0,0);}
.m40_c00227{transform:matrix(0.178770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178770,0.000000,0.000000,0.250000,0,0);}
.m83_c00227{transform:matrix(0.178830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178830,0.000000,0.000000,0.250000,0,0);}
.m65_c00227{transform:matrix(0.179660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179660,0.000000,0.000000,0.250000,0,0);}
.m92_c00227{transform:matrix(0.180625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180625,0.000000,0.000000,0.250000,0,0);}
.m64_c00227{transform:matrix(0.181980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181980,0.000000,0.000000,0.250000,0,0);}
.m1a_c00227{transform:matrix(0.184525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184525,0.000000,0.000000,0.250000,0,0);}
.m4d_c00227{transform:matrix(0.185515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185515,0.000000,0.000000,0.250000,0,0);}
.m9a_c00227{transform:matrix(0.185540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185540,0.000000,0.000000,0.250000,0,0);}
.m71_c00227{transform:matrix(0.186204,0.002421,-0.003250,0.249979,0,0);-ms-transform:matrix(0.186204,0.002421,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.186204,0.002421,-0.003250,0.249979,0,0);}
.m3b_c00227{transform:matrix(0.187120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187120,0.000000,0.000000,0.250000,0,0);}
.m24_c00227{transform:matrix(0.188800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188800,0.000000,0.000000,0.250000,0,0);}
.m5d_c00227{transform:matrix(0.191135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191135,0.000000,0.000000,0.250000,0,0);}
.m84_c00227{transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);}
.m25_c00227{transform:matrix(0.191515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191515,0.000000,0.000000,0.250000,0,0);}
.m23_c00227{transform:matrix(0.192095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192095,0.000000,0.000000,0.250000,0,0);}
.m4f_c00227{transform:matrix(0.193055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193055,0.000000,0.000000,0.250000,0,0);}
.m85_c00227{transform:matrix(0.193115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193115,0.000000,0.000000,0.250000,0,0);}
.m3f_c00227{transform:matrix(0.193410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193410,0.000000,0.000000,0.250000,0,0);}
.m5b_c00227{transform:matrix(0.193710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193710,0.000000,0.000000,0.250000,0,0);}
.m4e_c00227{transform:matrix(0.194295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194295,0.000000,0.000000,0.250000,0,0);}
.m27_c00227{transform:matrix(0.194725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194725,0.000000,0.000000,0.250000,0,0);}
.m5c_c00227{transform:matrix(0.195230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195230,0.000000,0.000000,0.250000,0,0);}
.m81_c00227{transform:matrix(0.196063,-0.005686,0.007247,0.249895,0,0);-ms-transform:matrix(0.196063,-0.005686,0.007247,0.249895,0,0);-webkit-transform:matrix(0.196063,-0.005686,0.007247,0.249895,0,0);}
.m6c_c00227{transform:matrix(0.196358,0.002553,-0.003250,0.249979,0,0);-ms-transform:matrix(0.196358,0.002553,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.196358,0.002553,-0.003250,0.249979,0,0);}
.m51_c00227{transform:matrix(0.196815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196815,0.000000,0.000000,0.250000,0,0);}
.m46_c00227{transform:matrix(0.198270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198270,0.000000,0.000000,0.250000,0,0);}
.m5f_c00227{transform:matrix(0.198660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198660,0.000000,0.000000,0.250000,0,0);}
.m33_c00227{transform:matrix(0.198940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198940,0.000000,0.000000,0.250000,0,0);}
.m67_c00227{transform:matrix(0.199200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199200,0.000000,0.000000,0.250000,0,0);}
.m88_c00227{transform:matrix(0.199830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199830,0.000000,0.000000,0.250000,0,0);}
.m54_c00227{transform:matrix(0.201020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201020,0.000000,0.000000,0.250000,0,0);}
.m68_c00227{transform:matrix(0.201220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201220,0.000000,0.000000,0.250000,0,0);}
.m52_c00227{transform:matrix(0.201425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201425,0.000000,0.000000,0.250000,0,0);}
.m37_c00227{transform:matrix(0.202160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202160,0.000000,0.000000,0.250000,0,0);}
.m22_c00227{transform:matrix(0.203025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203025,0.000000,0.000000,0.250000,0,0);}
.m47_c00227{transform:matrix(0.204805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204805,0.000000,0.000000,0.250000,0,0);}
.m6b_c00227{transform:matrix(0.205123,0.002667,-0.003250,0.249979,0,0);-ms-transform:matrix(0.205123,0.002667,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.205123,0.002667,-0.003250,0.249979,0,0);}
.m48_c00227{transform:matrix(0.206650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206650,0.000000,0.000000,0.250000,0,0);}
.m89_c00227{transform:matrix(0.209385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209385,0.000000,0.000000,0.250000,0,0);}
.m69_c00227{transform:matrix(0.211220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211220,0.000000,0.000000,0.250000,0,0);}
.m53_c00227{transform:matrix(0.212075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212075,0.000000,0.000000,0.250000,0,0);}
.m8a_c00227{transform:matrix(0.212400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212400,0.000000,0.000000,0.250000,0,0);}
.m34_c00227{transform:matrix(0.213690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213690,0.000000,0.000000,0.250000,0,0);}
.m66_c00227{transform:matrix(0.215295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215295,0.000000,0.000000,0.250000,0,0);}
.m41_c00227{transform:matrix(0.216060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216060,0.000000,0.000000,0.250000,0,0);}
.m3e_c00227{transform:matrix(0.216190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216190,0.000000,0.000000,0.250000,0,0);}
.m6d_c00227{transform:matrix(0.216907,0.002820,-0.003250,0.249979,0,0);-ms-transform:matrix(0.216907,0.002820,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.216907,0.002820,-0.003250,0.249979,0,0);}
.m32_c00227{transform:matrix(0.217205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217205,0.000000,0.000000,0.250000,0,0);}
.m6f_c00227{transform:matrix(0.218667,0.002843,-0.003250,0.249979,0,0);-ms-transform:matrix(0.218667,0.002843,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.218667,0.002843,-0.003250,0.249979,0,0);}
.m26_c00227{transform:matrix(0.219275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219275,0.000000,0.000000,0.250000,0,0);}
.m2b_c00227{transform:matrix(0.221020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221020,0.000000,0.000000,0.250000,0,0);}
.m6e_c00227{transform:matrix(0.222071,0.002887,-0.003250,0.249979,0,0);-ms-transform:matrix(0.222071,0.002887,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.222071,0.002887,-0.003250,0.249979,0,0);}
.m86_c00227{transform:matrix(0.222205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222205,0.000000,0.000000,0.250000,0,0);}
.m31_c00227{transform:matrix(0.223360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223360,0.000000,0.000000,0.250000,0,0);}
.m70_c00227{transform:matrix(0.223426,0.002905,-0.003250,0.249979,0,0);-ms-transform:matrix(0.223426,0.002905,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.223426,0.002905,-0.003250,0.249979,0,0);}
.m90_c00227{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m28_c00227{transform:matrix(0.225415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225415,0.000000,0.000000,0.250000,0,0);}
.m62_c00227{transform:matrix(0.226740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226740,0.000000,0.000000,0.250000,0,0);}
.m5a_c00227{transform:matrix(0.226775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226775,0.000000,0.000000,0.250000,0,0);}
.m59_c00227{transform:matrix(0.227705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227705,0.000000,0.000000,0.250000,0,0);}
.m74_c00227{transform:matrix(0.228755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228755,0.000000,0.000000,0.250000,0,0);}
.m2c_c00227{transform:matrix(0.232570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232570,0.000000,0.000000,0.250000,0,0);}
.m87_c00227{transform:matrix(0.232840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232840,0.000000,0.000000,0.250000,0,0);}
.m36_c00227{transform:matrix(0.232880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232880,0.000000,0.000000,0.250000,0,0);}
.m3d_c00227{transform:matrix(0.234315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234315,0.000000,0.000000,0.250000,0,0);}
.m49_c00227{transform:matrix(0.234540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234540,0.000000,0.000000,0.250000,0,0);}
.m2d_c00227{transform:matrix(0.234910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234910,0.000000,0.000000,0.250000,0,0);}
.mb_c00227{transform:matrix(0.236209,-0.007086,0.007497,0.249888,0,0);-ms-transform:matrix(0.236209,-0.007086,0.007497,0.249888,0,0);-webkit-transform:matrix(0.236209,-0.007086,0.007497,0.249888,0,0);}
.m8c_c00227{transform:matrix(0.236520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236520,0.000000,0.000000,0.250000,0,0);}
.m30_c00227{transform:matrix(0.240405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240405,0.000000,0.000000,0.250000,0,0);}
.m12_c00227{transform:matrix(0.243645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243645,0.000000,0.000000,0.250000,0,0);}
.m60_c00227{transform:matrix(0.244175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244175,0.000000,0.000000,0.250000,0,0);}
.m2_c00227{transform:matrix(0.247465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247465,0.000000,0.000000,0.250000,0,0);}
.m29_c00227{transform:matrix(0.248200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248200,0.000000,0.000000,0.250000,0,0);}
.m35_c00227{transform:matrix(0.250115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250115,0.000000,0.000000,0.250000,0,0);}
.m6a_c00227{transform:matrix(0.251395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251395,0.000000,0.000000,0.250000,0,0);}
.m72_c00227{transform:matrix(0.255173,0.003317,-0.003250,0.249979,0,0);-ms-transform:matrix(0.255173,0.003317,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.255173,0.003317,-0.003250,0.249979,0,0);}
.m56_c00227{transform:matrix(0.257880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257880,0.000000,0.000000,0.250000,0,0);}
.m38_c00227{transform:matrix(0.262660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262660,0.000000,0.000000,0.250000,0,0);}
.m55_c00227{transform:matrix(0.280415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280415,0.000000,0.000000,0.250000,0,0);}
.m75_c00227{transform:matrix(0.282450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282450,0.000000,0.000000,0.250000,0,0);}
.mc_c00227{transform:matrix(0.286161,-0.008585,0.007497,0.249888,0,0);-ms-transform:matrix(0.286161,-0.008585,0.007497,0.249888,0,0);-webkit-transform:matrix(0.286161,-0.008585,0.007497,0.249888,0,0);}
.ma_c00227{transform:matrix(0.286935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286935,0.000000,0.000000,0.250000,0,0);}
.m2a_c00227{transform:matrix(0.298170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298170,0.000000,0.000000,0.250000,0,0);}
.m2f_c00227{transform:matrix(0.300270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300270,0.000000,0.000000,0.250000,0,0);}
.m17_c00227{transform:matrix(0.300735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300735,0.000000,0.000000,0.250000,0,0);}
.m4a_c00227{transform:matrix(0.304540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304540,0.000000,0.000000,0.250000,0,0);}
.md_c00227{transform:matrix(0.305822,-0.009175,0.007497,0.249888,0,0);-ms-transform:matrix(0.305822,-0.009175,0.007497,0.249888,0,0);-webkit-transform:matrix(0.305822,-0.009175,0.007497,0.249888,0,0);}
.m73_c00227{transform:matrix(0.306170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306170,0.000000,0.000000,0.250000,0,0);}
.m8_c00227{transform:matrix(0.306635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306635,0.000000,0.000000,0.250000,0,0);}
.m1f_c00227{transform:matrix(0.307925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307925,0.000000,0.000000,0.250000,0,0);}
.m1_c00227{transform:matrix(0.309235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309235,0.000000,0.000000,0.250000,0,0);}
.m19_c00227{transform:matrix(0.327510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327510,0.000000,0.000000,0.250000,0,0);}
.m8f_c00227{transform:matrix(0.328975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328975,0.000000,0.000000,0.250000,0,0);}
.m98_c00227{transform:matrix(0.332885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332885,0.000000,0.000000,0.250000,0,0);}
.m3_c00227{transform:matrix(0.333465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333465,0.000000,0.000000,0.250000,0,0);}
.me_c00227{transform:matrix(0.333600,-0.010008,0.007497,0.249888,0,0);-ms-transform:matrix(0.333600,-0.010008,0.007497,0.249888,0,0);-webkit-transform:matrix(0.333600,-0.010008,0.007497,0.249888,0,0);}
.m13_c00227{transform:matrix(0.335410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335410,0.000000,0.000000,0.250000,0,0);}
.m16_c00227{transform:matrix(0.348485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348485,0.000000,0.000000,0.250000,0,0);}
.m10_c00227{transform:matrix(0.359900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359900,0.000000,0.000000,0.250000,0,0);}
.m6_c00227{transform:matrix(0.368820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368820,0.000000,0.000000,0.250000,0,0);}
.m61_c00227{transform:matrix(0.373265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373265,0.000000,0.000000,0.250000,0,0);}
.mf_c00227{transform:matrix(0.403134,-0.012094,0.007497,0.249888,0,0);-ms-transform:matrix(0.403134,-0.012094,0.007497,0.249888,0,0);-webkit-transform:matrix(0.403134,-0.012094,0.007497,0.249888,0,0);}
.m9_c00227{transform:matrix(0.420225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420225,0.000000,0.000000,0.250000,0,0);}
.m77_c00227{transform:matrix(0.432575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432575,0.000000,0.000000,0.250000,0,0);}
.m4_c00227{transform:matrix(0.451040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451040,0.000000,0.000000,0.250000,0,0);}
.m9b_c00227{transform:matrix(0.455465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455465,0.000000,0.000000,0.250000,0,0);}
.m9c_c00227{transform:matrix(0.475185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475185,0.000000,0.000000,0.250000,0,0);}
.m1e_c00227{transform:matrix(0.476470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.476470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.476470,0.000000,0.000000,0.250000,0,0);}
.m14_c00227{transform:matrix(0.569235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.569235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.569235,0.000000,0.000000,0.250000,0,0);}
.m7_c00227{transform:matrix(0.625575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625575,0.000000,0.000000,0.250000,0,0);}
.m94_c00227{transform:matrix(0.657875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.657875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.657875,0.000000,0.000000,0.250000,0,0);}
.m21_c00227{transform:matrix(0.673354,-0.004713,0.001750,0.249994,0,0);-ms-transform:matrix(0.673354,-0.004713,0.001750,0.249994,0,0);-webkit-transform:matrix(0.673354,-0.004713,0.001750,0.249994,0,0);}
.m79_c00227{transform:matrix(0.716435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.716435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.716435,0.000000,0.000000,0.250000,0,0);}
.m1d_c00227{transform:matrix(1.006790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.006790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.006790,0.000000,0.000000,0.250000,0,0);}
.m96_c00227{transform:matrix(1.010000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.010000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.010000,0.000000,0.000000,0.250000,0,0);}
.m95_c00227{transform:matrix(1.041395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.041395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.041395,0.000000,0.000000,0.250000,0,0);}
.m91_c00227{transform:matrix(1.212335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.212335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.212335,0.000000,0.000000,0.250000,0,0);}
.m99_c00227{transform:matrix(1.233290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.233290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.233290,0.000000,0.000000,0.250000,0,0);}
.m78_c00227{transform:matrix(1.437560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.437560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.437560,0.000000,0.000000,0.250000,0,0);}
.m1c_c00227{transform:matrix(5.071195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.071195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.071195,0.000000,0.000000,0.250000,0,0);}
.v0_c00227{vertical-align:0.000000px;}
.ls0_c00227{letter-spacing:0.000000px;}
.sc__c00227{text-shadow:none;}
.sc0_c00227{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__c00227{-webkit-text-stroke:0px transparent;}
.sc0_c00227{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00227{word-spacing:0.000000px;}
.fc0_c00227{color:transparent;}
.fs1c_c00227{font-size:12.000000px;}
.fs13_c00227{font-size:18.000000px;}
.fs19_c00227{font-size:24.000000px;}
.fsc_c00227{font-size:30.000000px;}
.fs6_c00227{font-size:36.000000px;}
.fs7_c00227{font-size:42.000000px;}
.fs1_c00227{font-size:48.000000px;}
.fs16_c00227{font-size:54.000000px;}
.fs18_c00227{font-size:54.004563px;}
.fs17_c00227{font-size:60.000000px;}
.fs8_c00227{font-size:78.000000px;}
.fs0_c00227{font-size:84.000000px;}
.fs3_c00227{font-size:90.000000px;}
.fs11_c00227{font-size:96.000000px;}
.fsf_c00227{font-size:102.000000px;}
.fsb_c00227{font-size:108.000000px;}
.fs14_c00227{font-size:114.000000px;}
.fs15_c00227{font-size:114.002793px;}
.fsa_c00227{font-size:114.051288px;}
.fs2_c00227{font-size:120.000000px;}
.fs5_c00227{font-size:126.000000px;}
.fs4_c00227{font-size:132.000000px;}
.fsd_c00227{font-size:156.000000px;}
.fs9_c00227{font-size:156.070184px;}
.fs1a_c00227{font-size:198.000000px;}
.fs1b_c00227{font-size:264.110989px;}
.fse_c00227{font-size:269.877122px;}
.fs12_c00227{font-size:270.000000px;}
.fs10_c00227{font-size:402.000000px;}
.y0_c00227{bottom:0.000000px;}
.y31_c00227{bottom:0.267000px;}
.y3d_c00227{bottom:3.364500px;}
.y3c_c00227{bottom:7.290000px;}
.y3b_c00227{bottom:11.746500px;}
.y3a_c00227{bottom:18.898500px;}
.y32_c00227{bottom:24.901500px;}
.y38_c00227{bottom:29.430000px;}
.y39_c00227{bottom:39.690000px;}
.y37_c00227{bottom:50.220000px;}
.y36_c00227{bottom:54.546000px;}
.y30_c00227{bottom:71.550000px;}
.y2f_c00227{bottom:101.784483px;}
.y2e_c00227{bottom:102.110893px;}
.y35_c00227{bottom:102.192000px;}
.y2d_c00227{bottom:103.086635px;}
.y2c_c00227{bottom:103.353336px;}
.y2b_c00227{bottom:104.108415px;}
.y2a_c00227{bottom:104.462886px;}
.y29_c00227{bottom:104.785280px;}
.y28_c00227{bottom:105.571500px;}
.y27_c00227{bottom:123.019500px;}
.y26_c00227{bottom:140.583000px;}
.y25_c00227{bottom:158.163000px;}
.y24_c00227{bottom:175.212000px;}
.y20_c00227{bottom:193.050000px;}
.y23_c00227{bottom:193.320000px;}
.y22_c00227{bottom:211.276500px;}
.y21_c00227{bottom:228.352500px;}
.y1f_c00227{bottom:246.076500px;}
.y34_c00227{bottom:263.722500px;}
.y14_c00227{bottom:302.995500px;}
.y18_c00227{bottom:306.483000px;}
.y16_c00227{bottom:306.990000px;}
.y17_c00227{bottom:307.785000px;}
.y33_c00227{bottom:308.386500px;}
.y15_c00227{bottom:340.072500px;}
.y1a_c00227{bottom:341.965500px;}
.y19_c00227{bottom:356.674500px;}
.y4_c00227{bottom:359.640000px;}
.y10_c00227{bottom:359.782500px;}
.y13_c00227{bottom:360.165000px;}
.y1c_c00227{bottom:360.732723px;}
.y9_c00227{bottom:361.531500px;}
.y1d_c00227{bottom:361.792500px;}
.y1e_c00227{bottom:361.800000px;}
.y7_c00227{bottom:370.035000px;}
.y8_c00227{bottom:373.006500px;}
.y3_c00227{bottom:379.080000px;}
.y6_c00227{bottom:383.839500px;}
.yf_c00227{bottom:384.141060px;}
.ye_c00227{bottom:384.141165px;}
.y1b_c00227{bottom:384.210000px;}
.y12_c00227{bottom:386.910000px;}
.y11_c00227{bottom:390.690000px;}
.yb_c00227{bottom:400.440000px;}
.yc_c00227{bottom:405.064155px;}
.yd_c00227{bottom:407.183070px;}
.y2_c00227{bottom:409.590000px;}
.y5_c00227{bottom:417.297000px;}
.y1_c00227{bottom:421.200000px;}
.ya_c00227{bottom:428.490000px;}
.h1d_c00227{height:12.000000px;}
.h14_c00227{height:18.000000px;}
.h1a_c00227{height:24.000000px;}
.hd_c00227{height:30.000000px;}
.h7_c00227{height:36.000000px;}
.h8_c00227{height:42.000000px;}
.h2_c00227{height:48.000000px;}
.h17_c00227{height:54.000000px;}
.h19_c00227{height:54.004563px;}
.h18_c00227{height:60.000000px;}
.h9_c00227{height:78.000000px;}
.h1_c00227{height:84.000000px;}
.h4_c00227{height:90.000000px;}
.h12_c00227{height:96.000000px;}
.h10_c00227{height:102.000000px;}
.hc_c00227{height:108.000000px;}
.h15_c00227{height:114.000000px;}
.h16_c00227{height:114.002793px;}
.hb_c00227{height:114.051288px;}
.h3_c00227{height:120.000000px;}
.h6_c00227{height:126.000000px;}
.h5_c00227{height:132.000000px;}
.he_c00227{height:156.000000px;}
.ha_c00227{height:156.070184px;}
.h1b_c00227{height:198.000000px;}
.h1c_c00227{height:264.110989px;}
.hf_c00227{height:269.877122px;}
.h13_c00227{height:270.000000px;}
.h11_c00227{height:402.000000px;}
.h0_c00227{height:682.500000px;}
.w0_c00227{width:941.700000px;}
.w1_c00227{width:942.000000px;}
.x0_c00227{left:0.000000px;}
.x13_c00227{left:349.459500px;}
.x3_c00227{left:403.110000px;}
.x4_c00227{left:414.720000px;}
.x14_c00227{left:416.070000px;}
.x29_c00227{left:417.690000px;}
.x3e_c00227{left:425.790000px;}
.x5_c00227{left:439.830000px;}
.x60_c00227{left:447.390000px;}
.x6_c00227{left:448.740000px;}
.x2_c00227{left:450.630000px;}
.x2a_c00227{left:454.680000px;}
.x1_c00227{left:469.530000px;}
.x7_c00227{left:471.960000px;}
.x17_c00227{left:476.280000px;}
.x46_c00227{left:482.220000px;}
.x3f_c00227{left:490.320000px;}
.x8_c00227{left:492.480000px;}
.x40_c00227{left:505.980000px;}
.x61_c00227{left:509.220000px;}
.x4d_c00227{left:510.570000px;}
.x2c_c00227{left:524.070000px;}
.xd_c00227{left:526.498680px;}
.xf_c00227{left:527.850000px;}
.xa_c00227{left:529.107000px;}
.x9_c00227{left:532.440000px;}
.x62_c00227{left:534.330000px;}
.x1f_c00227{left:539.730000px;}
.x2d_c00227{left:545.130000px;}
.x2b_c00227{left:549.180000px;}
.x41_c00227{left:553.770000px;}
.x20_c00227{left:558.090000px;}
.x63_c00227{left:560.520000px;}
.x47_c00227{left:564.840000px;}
.x4e_c00227{left:569.700000px;}
.x2e_c00227{left:572.400000px;}
.x36_c00227{left:574.020000px;}
.x56_c00227{left:576.180000px;}
.x21_c00227{left:584.550000px;}
.x42_c00227{left:590.220000px;}
.x48_c00227{left:591.840000px;}
.x39_c00227{left:595.080000px;}
.x4f_c00227{left:621.810000px;}
.x22_c00227{left:624.510000px;}
.x5b_c00227{left:627.210000px;}
.x64_c00227{left:628.560000px;}
.x2f_c00227{left:630.720000px;}
.x51_c00227{left:631.963500px;}
.x49_c00227{left:635.850000px;}
.x37_c00227{left:638.550000px;}
.x3a_c00227{left:640.980000px;}
.x1c_c00227{left:642.869072px;}
.x15_c00227{left:644.220000px;}
.x23_c00227{left:645.570000px;}
.x43_c00227{left:648.540000px;}
.x30_c00227{left:650.970000px;}
.x57_c00227{left:655.290000px;}
.x52_c00227{left:656.763000px;}
.x16_c00227{left:659.610000px;}
.x4a_c00227{left:670.140000px;}
.x5c_c00227{left:671.490000px;}
.x1b_c00227{left:678.817500px;}
.xb_c00227{left:683.245500px;}
.x3b_c00227{left:685.800000px;}
.x58_c00227{left:687.150000px;}
.xe_c00227{left:688.841160px;}
.x59_c00227{left:690.660000px;}
.x38_c00227{left:693.900000px;}
.x18_c00227{left:700.920000px;}
.x44_c00227{left:702.810000px;}
.x33_c00227{left:704.160000px;}
.x65_c00227{left:706.590000px;}
.x24_c00227{left:709.830000px;}
.x34_c00227{left:715.230000px;}
.x50_c00227{left:716.850000px;}
.x4b_c00227{left:718.470000px;}
.x31_c00227{left:720.900000px;}
.x12_c00227{left:737.910000px;}
.x53_c00227{left:742.113000px;}
.x25_c00227{left:746.280000px;}
.x45_c00227{left:747.630000px;}
.x32_c00227{left:751.950000px;}
.xc_c00227{left:753.876000px;}
.x26_c00227{left:757.350000px;}
.x66_c00227{left:759.240000px;}
.x54_c00227{left:762.628500px;}
.x4c_c00227{left:768.690000px;}
.x27_c00227{left:772.740000px;}
.x35_c00227{left:781.920000px;}
.x19_c00227{left:783.000000px;}
.x5d_c00227{left:788.670000px;}
.x3c_c00227{left:799.470000px;}
.x1a_c00227{left:804.330000px;}
.x3d_c00227{left:811.890000px;}
.x5f_c00227{left:814.843500px;}
.x5a_c00227{left:819.450000px;}
.x5e_c00227{left:834.300000px;}
.x28_c00227{left:837.000000px;}
.x55_c00227{left:862.794000px;}
.x10_c00227{left:866.160000px;}
.x1e_c00227{left:869.940000px;}
.x1d_c00227{left:871.290000px;}
.x6b_c00227{left:872.910000px;}
.x71_c00227{left:875.610000px;}
.x74_c00227{left:891.810000px;}
.x11_c00227{left:892.890000px;}
.x6c_c00227{left:897.480000px;}
.x6e_c00227{left:907.200000px;}
.x72_c00227{left:909.090000px;}
.x6d_c00227{left:916.650000px;}
.x67_c00227{left:917.730000px;}
.x73_c00227{left:927.180000px;}
.x70_c00227{left:929.340000px;}
.x68_c00227{left:930.690000px;}
.x69_c00227{left:936.360000px;}
.x6f_c00227{left:937.980000px;}
.x6a_c00227{left:939.330000px;}
@media print{
.v0_c00227{vertical-align:0.000000pt;}
.ls0_c00227{letter-spacing:0.000000pt;}
.ws0_c00227{word-spacing:0.000000pt;}
.fs1c_c00227{font-size:10.666667pt;}
.fs13_c00227{font-size:16.000000pt;}
.fs19_c00227{font-size:21.333333pt;}
.fsc_c00227{font-size:26.666667pt;}
.fs6_c00227{font-size:32.000000pt;}
.fs7_c00227{font-size:37.333333pt;}
.fs1_c00227{font-size:42.666667pt;}
.fs16_c00227{font-size:48.000000pt;}
.fs18_c00227{font-size:48.004056pt;}
.fs17_c00227{font-size:53.333333pt;}
.fs8_c00227{font-size:69.333333pt;}
.fs0_c00227{font-size:74.666667pt;}
.fs3_c00227{font-size:80.000000pt;}
.fs11_c00227{font-size:85.333333pt;}
.fsf_c00227{font-size:90.666667pt;}
.fsb_c00227{font-size:96.000000pt;}
.fs14_c00227{font-size:101.333333pt;}
.fs15_c00227{font-size:101.335816pt;}
.fsa_c00227{font-size:101.378923pt;}
.fs2_c00227{font-size:106.666667pt;}
.fs5_c00227{font-size:112.000000pt;}
.fs4_c00227{font-size:117.333333pt;}
.fsd_c00227{font-size:138.666667pt;}
.fs9_c00227{font-size:138.729053pt;}
.fs1a_c00227{font-size:176.000000pt;}
.fs1b_c00227{font-size:234.765323pt;}
.fse_c00227{font-size:239.890775pt;}
.fs12_c00227{font-size:240.000000pt;}
.fs10_c00227{font-size:357.333333pt;}
.y0_c00227{bottom:0.000000pt;}
.y31_c00227{bottom:0.237333pt;}
.y3d_c00227{bottom:2.990667pt;}
.y3c_c00227{bottom:6.480000pt;}
.y3b_c00227{bottom:10.441333pt;}
.y3a_c00227{bottom:16.798667pt;}
.y32_c00227{bottom:22.134667pt;}
.y38_c00227{bottom:26.160000pt;}
.y39_c00227{bottom:35.280000pt;}
.y37_c00227{bottom:44.640000pt;}
.y36_c00227{bottom:48.485333pt;}
.y30_c00227{bottom:63.600000pt;}
.y2f_c00227{bottom:90.475096pt;}
.y2e_c00227{bottom:90.765239pt;}
.y35_c00227{bottom:90.837333pt;}
.y2d_c00227{bottom:91.632564pt;}
.y2c_c00227{bottom:91.869632pt;}
.y2b_c00227{bottom:92.540813pt;}
.y2a_c00227{bottom:92.855899pt;}
.y29_c00227{bottom:93.142471pt;}
.y28_c00227{bottom:93.841333pt;}
.y27_c00227{bottom:109.350667pt;}
.y26_c00227{bottom:124.962667pt;}
.y25_c00227{bottom:140.589333pt;}
.y24_c00227{bottom:155.744000pt;}
.y20_c00227{bottom:171.600000pt;}
.y23_c00227{bottom:171.840000pt;}
.y22_c00227{bottom:187.801333pt;}
.y21_c00227{bottom:202.980000pt;}
.y1f_c00227{bottom:218.734667pt;}
.y34_c00227{bottom:234.420000pt;}
.y14_c00227{bottom:269.329333pt;}
.y18_c00227{bottom:272.429333pt;}
.y16_c00227{bottom:272.880000pt;}
.y17_c00227{bottom:273.586667pt;}
.y33_c00227{bottom:274.121333pt;}
.y15_c00227{bottom:302.286667pt;}
.y1a_c00227{bottom:303.969333pt;}
.y19_c00227{bottom:317.044000pt;}
.y4_c00227{bottom:319.680000pt;}
.y10_c00227{bottom:319.806667pt;}
.y13_c00227{bottom:320.146667pt;}
.y1c_c00227{bottom:320.651309pt;}
.y9_c00227{bottom:321.361333pt;}
.y1d_c00227{bottom:321.593333pt;}
.y1e_c00227{bottom:321.600000pt;}
.y7_c00227{bottom:328.920000pt;}
.y8_c00227{bottom:331.561333pt;}
.y3_c00227{bottom:336.960000pt;}
.y6_c00227{bottom:341.190667pt;}
.yf_c00227{bottom:341.458720pt;}
.ye_c00227{bottom:341.458813pt;}
.y1b_c00227{bottom:341.520000pt;}
.y12_c00227{bottom:343.920000pt;}
.y11_c00227{bottom:347.280000pt;}
.yb_c00227{bottom:355.946667pt;}
.yc_c00227{bottom:360.057027pt;}
.yd_c00227{bottom:361.940507pt;}
.y2_c00227{bottom:364.080000pt;}
.y5_c00227{bottom:370.930667pt;}
.y1_c00227{bottom:374.400000pt;}
.ya_c00227{bottom:380.880000pt;}
.h1d_c00227{height:10.666667pt;}
.h14_c00227{height:16.000000pt;}
.h1a_c00227{height:21.333333pt;}
.hd_c00227{height:26.666667pt;}
.h7_c00227{height:32.000000pt;}
.h8_c00227{height:37.333333pt;}
.h2_c00227{height:42.666667pt;}
.h17_c00227{height:48.000000pt;}
.h19_c00227{height:48.004056pt;}
.h18_c00227{height:53.333333pt;}
.h9_c00227{height:69.333333pt;}
.h1_c00227{height:74.666667pt;}
.h4_c00227{height:80.000000pt;}
.h12_c00227{height:85.333333pt;}
.h10_c00227{height:90.666667pt;}
.hc_c00227{height:96.000000pt;}
.h15_c00227{height:101.333333pt;}
.h16_c00227{height:101.335816pt;}
.hb_c00227{height:101.378923pt;}
.h3_c00227{height:106.666667pt;}
.h6_c00227{height:112.000000pt;}
.h5_c00227{height:117.333333pt;}
.he_c00227{height:138.666667pt;}
.ha_c00227{height:138.729053pt;}
.h1b_c00227{height:176.000000pt;}
.h1c_c00227{height:234.765323pt;}
.hf_c00227{height:239.890775pt;}
.h13_c00227{height:240.000000pt;}
.h11_c00227{height:357.333333pt;}
.h0_c00227{height:606.666667pt;}
.w0_c00227{width:837.066667pt;}
.w1_c00227{width:837.333333pt;}
.x0_c00227{left:0.000000pt;}
.x13_c00227{left:310.630667pt;}
.x3_c00227{left:358.320000pt;}
.x4_c00227{left:368.640000pt;}
.x14_c00227{left:369.840000pt;}
.x29_c00227{left:371.280000pt;}
.x3e_c00227{left:378.480000pt;}
.x5_c00227{left:390.960000pt;}
.x60_c00227{left:397.680000pt;}
.x6_c00227{left:398.880000pt;}
.x2_c00227{left:400.560000pt;}
.x2a_c00227{left:404.160000pt;}
.x1_c00227{left:417.360000pt;}
.x7_c00227{left:419.520000pt;}
.x17_c00227{left:423.360000pt;}
.x46_c00227{left:428.640000pt;}
.x3f_c00227{left:435.840000pt;}
.x8_c00227{left:437.760000pt;}
.x40_c00227{left:449.760000pt;}
.x61_c00227{left:452.640000pt;}
.x4d_c00227{left:453.840000pt;}
.x2c_c00227{left:465.840000pt;}
.xd_c00227{left:467.998827pt;}
.xf_c00227{left:469.200000pt;}
.xa_c00227{left:470.317333pt;}
.x9_c00227{left:473.280000pt;}
.x62_c00227{left:474.960000pt;}
.x1f_c00227{left:479.760000pt;}
.x2d_c00227{left:484.560000pt;}
.x2b_c00227{left:488.160000pt;}
.x41_c00227{left:492.240000pt;}
.x20_c00227{left:496.080000pt;}
.x63_c00227{left:498.240000pt;}
.x47_c00227{left:502.080000pt;}
.x4e_c00227{left:506.400000pt;}
.x2e_c00227{left:508.800000pt;}
.x36_c00227{left:510.240000pt;}
.x56_c00227{left:512.160000pt;}
.x21_c00227{left:519.600000pt;}
.x42_c00227{left:524.640000pt;}
.x48_c00227{left:526.080000pt;}
.x39_c00227{left:528.960000pt;}
.x4f_c00227{left:552.720000pt;}
.x22_c00227{left:555.120000pt;}
.x5b_c00227{left:557.520000pt;}
.x64_c00227{left:558.720000pt;}
.x2f_c00227{left:560.640000pt;}
.x51_c00227{left:561.745333pt;}
.x49_c00227{left:565.200000pt;}
.x37_c00227{left:567.600000pt;}
.x3a_c00227{left:569.760000pt;}
.x1c_c00227{left:571.439175pt;}
.x15_c00227{left:572.640000pt;}
.x23_c00227{left:573.840000pt;}
.x43_c00227{left:576.480000pt;}
.x30_c00227{left:578.640000pt;}
.x57_c00227{left:582.480000pt;}
.x52_c00227{left:583.789333pt;}
.x16_c00227{left:586.320000pt;}
.x4a_c00227{left:595.680000pt;}
.x5c_c00227{left:596.880000pt;}
.x1b_c00227{left:603.393333pt;}
.xb_c00227{left:607.329333pt;}
.x3b_c00227{left:609.600000pt;}
.x58_c00227{left:610.800000pt;}
.xe_c00227{left:612.303253pt;}
.x59_c00227{left:613.920000pt;}
.x38_c00227{left:616.800000pt;}
.x18_c00227{left:623.040000pt;}
.x44_c00227{left:624.720000pt;}
.x33_c00227{left:625.920000pt;}
.x65_c00227{left:628.080000pt;}
.x24_c00227{left:630.960000pt;}
.x34_c00227{left:635.760000pt;}
.x50_c00227{left:637.200000pt;}
.x4b_c00227{left:638.640000pt;}
.x31_c00227{left:640.800000pt;}
.x12_c00227{left:655.920000pt;}
.x53_c00227{left:659.656000pt;}
.x25_c00227{left:663.360000pt;}
.x45_c00227{left:664.560000pt;}
.x32_c00227{left:668.400000pt;}
.xc_c00227{left:670.112000pt;}
.x26_c00227{left:673.200000pt;}
.x66_c00227{left:674.880000pt;}
.x54_c00227{left:677.892000pt;}
.x4c_c00227{left:683.280000pt;}
.x27_c00227{left:686.880000pt;}
.x35_c00227{left:695.040000pt;}
.x19_c00227{left:696.000000pt;}
.x5d_c00227{left:701.040000pt;}
.x3c_c00227{left:710.640000pt;}
.x1a_c00227{left:714.960000pt;}
.x3d_c00227{left:721.680000pt;}
.x5f_c00227{left:724.305333pt;}
.x5a_c00227{left:728.400000pt;}
.x5e_c00227{left:741.600000pt;}
.x28_c00227{left:744.000000pt;}
.x55_c00227{left:766.928000pt;}
.x10_c00227{left:769.920000pt;}
.x1e_c00227{left:773.280000pt;}
.x1d_c00227{left:774.480000pt;}
.x6b_c00227{left:775.920000pt;}
.x71_c00227{left:778.320000pt;}
.x74_c00227{left:792.720000pt;}
.x11_c00227{left:793.680000pt;}
.x6c_c00227{left:797.760000pt;}
.x6e_c00227{left:806.400000pt;}
.x72_c00227{left:808.080000pt;}
.x6d_c00227{left:814.800000pt;}
.x67_c00227{left:815.760000pt;}
.x73_c00227{left:824.160000pt;}
.x70_c00227{left:826.080000pt;}
.x68_c00227{left:827.280000pt;}
.x69_c00227{left:832.320000pt;}
.x6f_c00227{left:833.760000pt;}
.x6a_c00227{left:834.960000pt;}
}





/* 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_c00228 {
    display:none;
  }
  .loading-indicator_c00228.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00228 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_c00228 { 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_c00228" -> "#page-container .classname_c00228")
 */
.pf_c00228 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00228 { /* 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_c00228.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00228 { /* 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_c00228 { /* 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_c00228 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00228 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00228 {overflow:visible;}
  }
}
.c_c00228 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00228 { /* 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_c00228:after { /* webkit #35443 */
  content: '';
}
.t_c00228:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00228 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 */
}
.__c00228 { /* 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_c00228 { /* info for Javascript */
  display:none;
}
.l_c00228 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00228 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00228 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00228: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_c00228 {
    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_c00228.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00228.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_c00228 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00228{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00228;src:url('chunks/assets/font_cfe63ee56e9e10a97d33a3db.woff2')format("woff");}.ff1_c00228{font-family:ff1_c00228;line-height:1.000000;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;}
.m17_c00228{transform:matrix(0.009789,0.000137,-0.003500,0.249976,0,0);-ms-transform:matrix(0.009789,0.000137,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.009789,0.000137,-0.003500,0.249976,0,0);}
.m34_c00228{transform:matrix(0.012729,0.000153,-0.003000,0.249982,0,0);-ms-transform:matrix(0.012729,0.000153,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.012729,0.000153,-0.003000,0.249982,0,0);}
.m12_c00228{transform:matrix(0.032796,0.000525,-0.003999,0.249968,0,0);-ms-transform:matrix(0.032796,0.000525,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.032796,0.000525,-0.003999,0.249968,0,0);}
.m36_c00228{transform:matrix(0.073250,0.000879,-0.003000,0.249982,0,0);-ms-transform:matrix(0.073250,0.000879,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.073250,0.000879,-0.003000,0.249982,0,0);}
.mc_c00228{transform:matrix(0.074141,0.001186,-0.003999,0.249968,0,0);-ms-transform:matrix(0.074141,0.001186,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.074141,0.001186,-0.003999,0.249968,0,0);}
.m26_c00228{transform:matrix(0.090746,0.001270,-0.003500,0.249976,0,0);-ms-transform:matrix(0.090746,0.001270,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.090746,0.001270,-0.003500,0.249976,0,0);}
.m3_c00228{transform:matrix(0.094958,0.001519,-0.003999,0.249968,0,0);-ms-transform:matrix(0.094958,0.001519,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.094958,0.001519,-0.003999,0.249968,0,0);}
.m4_c00228{transform:matrix(0.136842,0.002189,-0.003999,0.249968,0,0);-ms-transform:matrix(0.136842,0.002189,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.136842,0.002189,-0.003999,0.249968,0,0);}
.m2a_c00228{transform:matrix(0.177450,0.002662,-0.003750,0.249972,0,0);-ms-transform:matrix(0.177450,0.002662,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.177450,0.002662,-0.003750,0.249972,0,0);}
.m2d_c00228{transform:matrix(0.195003,0.002925,-0.003750,0.249972,0,0);-ms-transform:matrix(0.195003,0.002925,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.195003,0.002925,-0.003750,0.249972,0,0);}
.mf_c00228{transform:matrix(0.197945,0.003167,-0.003999,0.249968,0,0);-ms-transform:matrix(0.197945,0.003167,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.197945,0.003167,-0.003999,0.249968,0,0);}
.m28_c00228{transform:matrix(0.200632,0.003009,-0.003750,0.249972,0,0);-ms-transform:matrix(0.200632,0.003009,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.200632,0.003009,-0.003750,0.249972,0,0);}
.m10_c00228{transform:matrix(0.205874,0.003294,-0.003999,0.249968,0,0);-ms-transform:matrix(0.205874,0.003294,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.205874,0.003294,-0.003999,0.249968,0,0);}
.m2f_c00228{transform:matrix(0.208087,0.003121,-0.003750,0.249972,0,0);-ms-transform:matrix(0.208087,0.003121,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.208087,0.003121,-0.003750,0.249972,0,0);}
.m2b_c00228{transform:matrix(0.219995,0.003300,-0.003750,0.249972,0,0);-ms-transform:matrix(0.219995,0.003300,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.219995,0.003300,-0.003750,0.249972,0,0);}
.m33_c00228{transform:matrix(0.269716,0.003237,-0.003000,0.249982,0,0);-ms-transform:matrix(0.269716,0.003237,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.269716,0.003237,-0.003000,0.249982,0,0);}
.m31_c00228{transform:matrix(0.275410,0.003305,-0.003000,0.249982,0,0);-ms-transform:matrix(0.275410,0.003305,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.275410,0.003305,-0.003000,0.249982,0,0);}
.m11_c00228{transform:matrix(0.293327,0.004693,-0.003999,0.249968,0,0);-ms-transform:matrix(0.293327,0.004693,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.293327,0.004693,-0.003999,0.249968,0,0);}
.m2c_c00228{transform:matrix(0.310370,0.004656,-0.003750,0.249972,0,0);-ms-transform:matrix(0.310370,0.004656,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.310370,0.004656,-0.003750,0.249972,0,0);}
.m1_c00228{transform:matrix(0.313520,0.005016,-0.003999,0.249968,0,0);-ms-transform:matrix(0.313520,0.005016,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.313520,0.005016,-0.003999,0.249968,0,0);}
.m15_c00228{transform:matrix(0.318044,0.004453,-0.003500,0.249976,0,0);-ms-transform:matrix(0.318044,0.004453,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.318044,0.004453,-0.003500,0.249976,0,0);}
.m30_c00228{transform:matrix(0.322449,0.004837,-0.003750,0.249972,0,0);-ms-transform:matrix(0.322449,0.004837,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.322449,0.004837,-0.003750,0.249972,0,0);}
.m23_c00228{transform:matrix(0.347236,0.004861,-0.003500,0.249976,0,0);-ms-transform:matrix(0.347236,0.004861,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.347236,0.004861,-0.003500,0.249976,0,0);}
.m19_c00228{transform:matrix(0.349051,0.004887,-0.003500,0.249976,0,0);-ms-transform:matrix(0.349051,0.004887,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.349051,0.004887,-0.003500,0.249976,0,0);}
.m7_c00228{transform:matrix(0.350980,0.005616,-0.003999,0.249968,0,0);-ms-transform:matrix(0.350980,0.005616,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.350980,0.005616,-0.003999,0.249968,0,0);}
.m2e_c00228{transform:matrix(0.360629,0.005409,-0.003750,0.249972,0,0);-ms-transform:matrix(0.360629,0.005409,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.360629,0.005409,-0.003750,0.249972,0,0);}
.m22_c00228{transform:matrix(0.377588,0.005286,-0.003500,0.249976,0,0);-ms-transform:matrix(0.377588,0.005286,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.377588,0.005286,-0.003500,0.249976,0,0);}
.m21_c00228{transform:matrix(0.387747,0.005428,-0.003500,0.249976,0,0);-ms-transform:matrix(0.387747,0.005428,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.387747,0.005428,-0.003500,0.249976,0,0);}
.m29_c00228{transform:matrix(0.391306,0.005870,-0.003750,0.249972,0,0);-ms-transform:matrix(0.391306,0.005870,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.391306,0.005870,-0.003750,0.249972,0,0);}
.m2_c00228{transform:matrix(0.392305,0.006277,-0.003999,0.249968,0,0);-ms-transform:matrix(0.392305,0.006277,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.392305,0.006277,-0.003999,0.249968,0,0);}
.m9_c00228{transform:matrix(0.435059,0.006961,-0.003999,0.249968,0,0);-ms-transform:matrix(0.435059,0.006961,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.435059,0.006961,-0.003999,0.249968,0,0);}
.m1e_c00228{transform:matrix(0.447216,0.006261,-0.003500,0.249976,0,0);-ms-transform:matrix(0.447216,0.006261,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.447216,0.006261,-0.003500,0.249976,0,0);}
.m24_c00228{transform:matrix(0.458220,0.006415,-0.003500,0.249976,0,0);-ms-transform:matrix(0.458220,0.006415,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.458220,0.006415,-0.003500,0.249976,0,0);}
.me_c00228{transform:matrix(0.475479,0.007608,-0.003999,0.249968,0,0);-ms-transform:matrix(0.475479,0.007608,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.475479,0.007608,-0.003999,0.249968,0,0);}
.m27_c00228{transform:matrix(0.479406,0.007191,-0.003750,0.249972,0,0);-ms-transform:matrix(0.479406,0.007191,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.479406,0.007191,-0.003750,0.249972,0,0);}
.m35_c00228{transform:matrix(0.503904,0.006047,-0.003000,0.249982,0,0);-ms-transform:matrix(0.503904,0.006047,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.503904,0.006047,-0.003000,0.249982,0,0);}
.m32_c00228{transform:matrix(0.513383,0.006161,-0.003000,0.249982,0,0);-ms-transform:matrix(0.513383,0.006161,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.513383,0.006161,-0.003000,0.249982,0,0);}
.m20_c00228{transform:matrix(0.531103,0.007435,-0.003500,0.249976,0,0);-ms-transform:matrix(0.531103,0.007435,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.531103,0.007435,-0.003500,0.249976,0,0);}
.m1c_c00228{transform:matrix(0.532313,0.007452,-0.003500,0.249976,0,0);-ms-transform:matrix(0.532313,0.007452,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.532313,0.007452,-0.003500,0.249976,0,0);}
.m8_c00228{transform:matrix(0.532362,0.008518,-0.003999,0.249968,0,0);-ms-transform:matrix(0.532362,0.008518,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.532362,0.008518,-0.003999,0.249968,0,0);}
.m1f_c00228{transform:matrix(0.612130,0.008570,-0.003500,0.249976,0,0);-ms-transform:matrix(0.612130,0.008570,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.612130,0.008570,-0.003500,0.249976,0,0);}
.m1d_c00228{transform:matrix(0.654461,0.009162,-0.003500,0.249976,0,0);-ms-transform:matrix(0.654461,0.009162,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.654461,0.009162,-0.003500,0.249976,0,0);}
.m25_c00228{transform:matrix(0.768165,0.010754,-0.003500,0.249976,0,0);-ms-transform:matrix(0.768165,0.010754,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.768165,0.010754,-0.003500,0.249976,0,0);}
.md_c00228{transform:matrix(1.031938,0.016511,-0.003999,0.249968,0,0);-ms-transform:matrix(1.031938,0.016511,-0.003999,0.249968,0,0);-webkit-transform:matrix(1.031938,0.016511,-0.003999,0.249968,0,0);}
.m0_c00228{transform:matrix(1.089081,0.017425,-0.003999,0.249968,0,0);-ms-transform:matrix(1.089081,0.017425,-0.003999,0.249968,0,0);-webkit-transform:matrix(1.089081,0.017425,-0.003999,0.249968,0,0);}
.m5_c00228{transform:matrix(1.143564,0.018297,-0.003999,0.249968,0,0);-ms-transform:matrix(1.143564,0.018297,-0.003999,0.249968,0,0);-webkit-transform:matrix(1.143564,0.018297,-0.003999,0.249968,0,0);}
.ma_c00228{transform:matrix(1.156282,0.018501,-0.003999,0.249968,0,0);-ms-transform:matrix(1.156282,0.018501,-0.003999,0.249968,0,0);-webkit-transform:matrix(1.156282,0.018501,-0.003999,0.249968,0,0);}
.mb_c00228{transform:matrix(1.168210,0.018691,-0.003999,0.249968,0,0);-ms-transform:matrix(1.168210,0.018691,-0.003999,0.249968,0,0);-webkit-transform:matrix(1.168210,0.018691,-0.003999,0.249968,0,0);}
.m6_c00228{transform:matrix(1.406325,0.022501,-0.003999,0.249968,0,0);-ms-transform:matrix(1.406325,0.022501,-0.003999,0.249968,0,0);-webkit-transform:matrix(1.406325,0.022501,-0.003999,0.249968,0,0);}
.m18_c00228{transform:matrix(1.967427,0.027544,-0.003500,0.249976,0,0);-ms-transform:matrix(1.967427,0.027544,-0.003500,0.249976,0,0);-webkit-transform:matrix(1.967427,0.027544,-0.003500,0.249976,0,0);}
.m13_c00228{transform:matrix(2.005838,0.032093,-0.003999,0.249968,0,0);-ms-transform:matrix(2.005838,0.032093,-0.003999,0.249968,0,0);-webkit-transform:matrix(2.005838,0.032093,-0.003999,0.249968,0,0);}
.m16_c00228{transform:matrix(2.262988,0.031682,-0.003500,0.249976,0,0);-ms-transform:matrix(2.262988,0.031682,-0.003500,0.249976,0,0);-webkit-transform:matrix(2.262988,0.031682,-0.003500,0.249976,0,0);}
.m1b_c00228{transform:matrix(2.871219,0.040197,-0.003500,0.249976,0,0);-ms-transform:matrix(2.871219,0.040197,-0.003500,0.249976,0,0);-webkit-transform:matrix(2.871219,0.040197,-0.003500,0.249976,0,0);}
.m1a_c00228{transform:matrix(4.146854,0.058056,-0.003500,0.249976,0,0);-ms-transform:matrix(4.146854,0.058056,-0.003500,0.249976,0,0);-webkit-transform:matrix(4.146854,0.058056,-0.003500,0.249976,0,0);}
.m14_c00228{transform:matrix(4.308643,0.060321,-0.003500,0.249976,0,0);-ms-transform:matrix(4.308643,0.060321,-0.003500,0.249976,0,0);-webkit-transform:matrix(4.308643,0.060321,-0.003500,0.249976,0,0);}
.v0_c00228{vertical-align:0.000000px;}
.ls0_c00228{letter-spacing:0.000000px;}
.sc__c00228{text-shadow:none;}
.sc0_c00228{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__c00228{-webkit-text-stroke:0px transparent;}
.sc0_c00228{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00228{word-spacing:0.000000px;}
.fc0_c00228{color:transparent;}
.fs0_c00228{font-size:42.005376px;}
.fs2_c00228{font-size:48.006144px;}
.fs7_c00228{font-size:60.004320px;}
.fs4_c00228{font-size:78.007644px;}
.fs3_c00228{font-size:96.009408px;}
.fs5_c00228{font-size:108.010583px;}
.fs1_c00228{font-size:150.019199px;}
.fs6_c00228{font-size:156.017549px;}
.y37_c00228{bottom:-8.683626px;}
.y36_c00228{bottom:-8.380416px;}
.y35_c00228{bottom:-8.072976px;}
.y34_c00228{bottom:-1.656876px;}
.y33_c00228{bottom:-1.006266px;}
.y0_c00228{bottom:0.000000px;}
.y32_c00228{bottom:0.001500px;}
.y31_c00228{bottom:30.907140px;}
.y30_c00228{bottom:34.738777px;}
.y2f_c00228{bottom:35.914358px;}
.y2e_c00228{bottom:36.613050px;}
.y2d_c00228{bottom:38.723775px;}
.y2c_c00228{bottom:39.894405px;}
.y2b_c00228{bottom:40.594785px;}
.y2a_c00228{bottom:42.005940px;}
.y29_c00228{bottom:43.171148px;}
.y28_c00228{bottom:44.565000px;}
.y27_c00228{bottom:163.154922px;}
.y26_c00228{bottom:174.147186px;}
.y25_c00228{bottom:176.581155px;}
.y24_c00228{bottom:205.327116px;}
.y23_c00228{bottom:206.884329px;}
.y22_c00228{bottom:208.408572px;}
.y21_c00228{bottom:210.211254px;}
.y20_c00228{bottom:211.997640px;}
.y1f_c00228{bottom:213.945789px;}
.y1e_c00228{bottom:216.285000px;}
.y1d_c00228{bottom:461.627331px;}
.y1c_c00228{bottom:466.390005px;}
.y1b_c00228{bottom:470.357619px;}
.y1a_c00228{bottom:470.461443px;}
.y19_c00228{bottom:473.004291px;}
.y18_c00228{bottom:473.299215px;}
.y17_c00228{bottom:592.006710px;}
.y16_c00228{bottom:593.016327px;}
.y15_c00228{bottom:597.456000px;}
.y14_c00228{bottom:619.439568px;}
.y13_c00228{bottom:620.543844px;}
.y12_c00228{bottom:621.532116px;}
.y11_c00228{bottom:622.870344px;}
.y10_c00228{bottom:628.975884px;}
.yf_c00228{bottom:631.780104px;}
.ye_c00228{bottom:633.785700px;}
.yd_c00228{bottom:633.955152px;}
.yc_c00228{bottom:666.887112px;}
.yb_c00228{bottom:668.774712px;}
.ya_c00228{bottom:669.154824px;}
.y9_c00228{bottom:669.651552px;}
.y8_c00228{bottom:670.385856px;}
.y7_c00228{bottom:672.161160px;}
.y6_c00228{bottom:674.346792px;}
.y5_c00228{bottom:674.958768px;}
.y4_c00228{bottom:675.089736px;}
.y3_c00228{bottom:675.693840px;}
.y2_c00228{bottom:676.108512px;}
.y1_c00228{bottom:677.163000px;}
.h1_c00228{height:42.005376px;}
.h3_c00228{height:48.006144px;}
.h8_c00228{height:60.004320px;}
.h5_c00228{height:78.007644px;}
.h4_c00228{height:96.009408px;}
.h6_c00228{height:108.010583px;}
.h2_c00228{height:150.019199px;}
.h7_c00228{height:156.017549px;}
.h0_c00228{height:682.500000px;}
.w0_c00228{width:941.700000px;}
.w1_c00228{width:942.000000px;}
.x0_c00228{left:0.000000px;}
.xd_c00228{left:4.804296px;}
.x1b_c00228{left:9.489000px;}
.xe_c00228{left:18.864684px;}
.x17_c00228{left:40.424670px;}
.x12_c00228{left:94.975848px;}
.x24_c00228{left:101.914500px;}
.x22_c00228{left:171.131862px;}
.x1c_c00228{left:176.575500px;}
.x25_c00228{left:179.595000px;}
.xf_c00228{left:185.943864px;}
.x13_c00228{left:195.407388px;}
.x2d_c00228{left:216.940500px;}
.x18_c00228{left:222.056670px;}
.x1_c00228{left:229.687500px;}
.x14_c00228{left:231.010500px;}
.x26_c00228{left:273.672000px;}
.x2_c00228{left:295.593000px;}
.x2e_c00228{left:300.921000px;}
.x1d_c00228{left:315.729000px;}
.x27_c00228{left:320.364000px;}
.x3_c00228{left:321.510000px;}
.x2f_c00228{left:355.138500px;}
.x4_c00228{left:359.266500px;}
.x5_c00228{left:367.452000px;}
.x28_c00228{left:398.406000px;}
.x6_c00228{left:405.700500px;}
.x10_c00228{left:419.628816px;}
.x1e_c00228{left:443.328000px;}
.x19_c00228{left:512.873670px;}
.x29_c00228{left:539.121000px;}
.x7_c00228{left:542.302500px;}
.x15_c00228{left:548.130000px;}
.x1f_c00228{left:572.091000px;}
.x2a_c00228{left:585.700500px;}
.x16_c00228{left:620.245500px;}
.x8_c00228{left:653.259000px;}
.x2b_c00228{left:664.072500px;}
.x20_c00228{left:680.965500px;}
.x9_c00228{left:699.153000px;}
.xa_c00228{left:730.198500px;}
.xb_c00228{left:753.955500px;}
.x21_c00228{left:792.195000px;}
.x1a_c00228{left:853.064670px;}
.xc_c00228{left:871.930500px;}
.x30_c00228{left:889.813500px;}
.x23_c00228{left:903.997614px;}
.x31_c00228{left:915.433500px;}
.x2c_c00228{left:919.515000px;}
.x11_c00228{left:928.476384px;}
.x32_c00228{left:940.701000px;}
@media print{
.v0_c00228{vertical-align:0.000000pt;}
.ls0_c00228{letter-spacing:0.000000pt;}
.ws0_c00228{word-spacing:0.000000pt;}
.fs0_c00228{font-size:37.338112pt;}
.fs2_c00228{font-size:42.672128pt;}
.fs7_c00228{font-size:53.337173pt;}
.fs4_c00228{font-size:69.340128pt;}
.fs3_c00228{font-size:85.341696pt;}
.fs5_c00228{font-size:96.009408pt;}
.fs1_c00228{font-size:133.350399pt;}
.fs6_c00228{font-size:138.682266pt;}
.y37_c00228{bottom:-7.718779pt;}
.y36_c00228{bottom:-7.449259pt;}
.y35_c00228{bottom:-7.175979pt;}
.y34_c00228{bottom:-1.472779pt;}
.y33_c00228{bottom:-0.894459pt;}
.y0_c00228{bottom:0.000000pt;}
.y32_c00228{bottom:0.001333pt;}
.y31_c00228{bottom:27.473013pt;}
.y30_c00228{bottom:30.878913pt;}
.y2f_c00228{bottom:31.923873pt;}
.y2e_c00228{bottom:32.544933pt;}
.y2d_c00228{bottom:34.421133pt;}
.y2c_c00228{bottom:35.461693pt;}
.y2b_c00228{bottom:36.084253pt;}
.y2a_c00228{bottom:37.338613pt;}
.y29_c00228{bottom:38.374353pt;}
.y28_c00228{bottom:39.613333pt;}
.y27_c00228{bottom:145.026597pt;}
.y26_c00228{bottom:154.797499pt;}
.y25_c00228{bottom:156.961027pt;}
.y24_c00228{bottom:182.512992pt;}
.y23_c00228{bottom:183.897181pt;}
.y22_c00228{bottom:185.252064pt;}
.y21_c00228{bottom:186.854448pt;}
.y20_c00228{bottom:188.442347pt;}
.y1f_c00228{bottom:190.174035pt;}
.y1e_c00228{bottom:192.253333pt;}
.y1d_c00228{bottom:410.335405pt;}
.y1c_c00228{bottom:414.568893pt;}
.y1b_c00228{bottom:418.095661pt;}
.y1a_c00228{bottom:418.187949pt;}
.y19_c00228{bottom:420.448259pt;}
.y18_c00228{bottom:420.710413pt;}
.y17_c00228{bottom:526.228187pt;}
.y16_c00228{bottom:527.125624pt;}
.y15_c00228{bottom:531.072000pt;}
.y14_c00228{bottom:550.612949pt;}
.y13_c00228{bottom:551.594528pt;}
.y12_c00228{bottom:552.472992pt;}
.y11_c00228{bottom:553.662528pt;}
.y10_c00228{bottom:559.089675pt;}
.yf_c00228{bottom:561.582315pt;}
.ye_c00228{bottom:563.365067pt;}
.yd_c00228{bottom:563.515691pt;}
.yc_c00228{bottom:592.788544pt;}
.yb_c00228{bottom:594.466411pt;}
.ya_c00228{bottom:594.804288pt;}
.y9_c00228{bottom:595.245824pt;}
.y8_c00228{bottom:595.898539pt;}
.y7_c00228{bottom:597.476587pt;}
.y6_c00228{bottom:599.419371pt;}
.y5_c00228{bottom:599.963349pt;}
.y4_c00228{bottom:600.079765pt;}
.y3_c00228{bottom:600.616747pt;}
.y2_c00228{bottom:600.985344pt;}
.y1_c00228{bottom:601.922667pt;}
.h1_c00228{height:37.338112pt;}
.h3_c00228{height:42.672128pt;}
.h8_c00228{height:53.337173pt;}
.h5_c00228{height:69.340128pt;}
.h4_c00228{height:85.341696pt;}
.h6_c00228{height:96.009408pt;}
.h2_c00228{height:133.350399pt;}
.h7_c00228{height:138.682266pt;}
.h0_c00228{height:606.666667pt;}
.w0_c00228{width:837.066667pt;}
.w1_c00228{width:837.333333pt;}
.x0_c00228{left:0.000000pt;}
.xd_c00228{left:4.270485pt;}
.x1b_c00228{left:8.434667pt;}
.xe_c00228{left:16.768608pt;}
.x17_c00228{left:35.933040pt;}
.x12_c00228{left:84.422976pt;}
.x24_c00228{left:90.590667pt;}
.x22_c00228{left:152.117211pt;}
.x1c_c00228{left:156.956000pt;}
.x25_c00228{left:159.640000pt;}
.xf_c00228{left:165.283435pt;}
.x13_c00228{left:173.695456pt;}
.x2d_c00228{left:192.836000pt;}
.x18_c00228{left:197.383707pt;}
.x1_c00228{left:204.166667pt;}
.x14_c00228{left:205.342667pt;}
.x26_c00228{left:243.264000pt;}
.x2_c00228{left:262.749333pt;}
.x2e_c00228{left:267.485333pt;}
.x1d_c00228{left:280.648000pt;}
.x27_c00228{left:284.768000pt;}
.x3_c00228{left:285.786667pt;}
.x2f_c00228{left:315.678667pt;}
.x4_c00228{left:319.348000pt;}
.x5_c00228{left:326.624000pt;}
.x28_c00228{left:354.138667pt;}
.x6_c00228{left:360.622667pt;}
.x10_c00228{left:373.003392pt;}
.x1e_c00228{left:394.069333pt;}
.x19_c00228{left:455.887707pt;}
.x29_c00228{left:479.218667pt;}
.x7_c00228{left:482.046667pt;}
.x15_c00228{left:487.226667pt;}
.x1f_c00228{left:508.525333pt;}
.x2a_c00228{left:520.622667pt;}
.x16_c00228{left:551.329333pt;}
.x8_c00228{left:580.674667pt;}
.x2b_c00228{left:590.286667pt;}
.x20_c00228{left:605.302667pt;}
.x9_c00228{left:621.469333pt;}
.xa_c00228{left:649.065333pt;}
.xb_c00228{left:670.182667pt;}
.x21_c00228{left:704.173333pt;}
.x1a_c00228{left:758.279707pt;}
.xc_c00228{left:775.049333pt;}
.x30_c00228{left:790.945333pt;}
.x23_c00228{left:803.553435pt;}
.x31_c00228{left:813.718667pt;}
.x2c_c00228{left:817.346667pt;}
.x11_c00228{left:825.312341pt;}
.x32_c00228{left:836.178667pt;}
}





/* 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_c00229 {
    display:none;
  }
  .loading-indicator_c00229.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00229 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_c00229 { 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_c00229" -> "#page-container .classname_c00229")
 */
.pf_c00229 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00229 { /* 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_c00229.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00229 { /* 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_c00229 { /* 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_c00229 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00229 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00229 {overflow:visible;}
  }
}
.c_c00229 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00229 { /* 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_c00229:after { /* webkit #35443 */
  content: '';
}
.t_c00229:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00229 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 */
}
.__c00229 { /* 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_c00229 { /* info for Javascript */
  display:none;
}
.l_c00229 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00229 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00229 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00229: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_c00229 {
    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_c00229.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00229.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_c00229 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00229{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00229;src:url('chunks/assets/font_fe3cd3c6b9706b260f6e1774.woff2')format("woff");}.ff1_c00229{font-family:ff1_c00229;line-height:1.000000;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;}
.m2_c00229{transform:matrix(0.145625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145625,0.000000,0.000000,0.250000,0,0);}
.m1_c00229{transform:matrix(0.230325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230325,0.000000,0.000000,0.250000,0,0);}
.m5_c00229{transform:matrix(0.311160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311160,0.000000,0.000000,0.250000,0,0);}
.m6_c00229{transform:matrix(0.324500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324500,0.000000,0.000000,0.250000,0,0);}
.m3_c00229{transform:matrix(0.413400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413400,0.000000,0.000000,0.250000,0,0);}
.m0_c00229{transform:matrix(0.481055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.481055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.481055,0.000000,0.000000,0.250000,0,0);}
.m4_c00229{transform:matrix(0.811250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811250,0.000000,0.000000,0.250000,0,0);}
.v0_c00229{vertical-align:0.000000px;}
.ls0_c00229{letter-spacing:0.000000px;}
.sc__c00229{text-shadow:none;}
.sc0_c00229{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__c00229{-webkit-text-stroke:0px transparent;}
.sc0_c00229{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00229{word-spacing:0.000000px;}
.fc0_c00229{color:transparent;}
.fs1_c00229{font-size:24.000000px;}
.fs0_c00229{font-size:36.000000px;}
.y0_c00229{bottom:0.000000px;}
.y2_c00229{bottom:415.530000px;}
.y1_c00229{bottom:419.310000px;}
.h2_c00229{height:24.000000px;}
.h1_c00229{height:36.000000px;}
.h0_c00229{height:682.500000px;}
.w0_c00229{width:937.440000px;}
.w1_c00229{width:937.500000px;}
.x0_c00229{left:0.000000px;}
.x5_c00229{left:740.070000px;}
.x1_c00229{left:744.120000px;}
.x2_c00229{left:767.880000px;}
.x3_c00229{left:784.890000px;}
.x4_c00229{left:793.800000px;}
.x6_c00229{left:799.740000px;}
@media print{
.v0_c00229{vertical-align:0.000000pt;}
.ls0_c00229{letter-spacing:0.000000pt;}
.ws0_c00229{word-spacing:0.000000pt;}
.fs1_c00229{font-size:21.333333pt;}
.fs0_c00229{font-size:32.000000pt;}
.y0_c00229{bottom:0.000000pt;}
.y2_c00229{bottom:369.360000pt;}
.y1_c00229{bottom:372.720000pt;}
.h2_c00229{height:21.333333pt;}
.h1_c00229{height:32.000000pt;}
.h0_c00229{height:606.666667pt;}
.w0_c00229{width:833.280000pt;}
.w1_c00229{width:833.333333pt;}
.x0_c00229{left:0.000000pt;}
.x5_c00229{left:657.840000pt;}
.x1_c00229{left:661.440000pt;}
.x2_c00229{left:682.560000pt;}
.x3_c00229{left:697.680000pt;}
.x4_c00229{left:705.600000pt;}
.x6_c00229{left:710.880000pt;}
}





/* 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_c00230 {
    display:none;
  }
  .loading-indicator_c00230.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00230 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_c00230 { 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_c00230" -> "#page-container .classname_c00230")
 */
.pf_c00230 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00230 { /* 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_c00230.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00230 { /* 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_c00230 { /* 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_c00230 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00230 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00230 {overflow:visible;}
  }
}
.c_c00230 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00230 { /* 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_c00230:after { /* webkit #35443 */
  content: '';
}
.t_c00230:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00230 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 */
}
.__c00230 { /* 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_c00230 { /* info for Javascript */
  display:none;
}
.l_c00230 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00230 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00230 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00230: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_c00230 {
    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_c00230.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00230.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_c00230 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00230{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00230;src:url('chunks/assets/font_cfe63ee56e9e10a97d33a3db.woff2')format("woff");}.ff1_c00230{font-family:ff1_c00230;line-height:1.000000;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;}
.m3c_c00230{transform:matrix(0.028460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.028460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.028460,0.000000,0.000000,0.250000,0,0);}
.m41_c00230{transform:matrix(0.031820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.031820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.031820,0.000000,0.000000,0.250000,0,0);}
.m4f_c00230{transform:matrix(0.032450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032450,0.000000,0.000000,0.250000,0,0);}
.m50_c00230{transform:matrix(0.045000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.045000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.045000,0.000000,0.000000,0.250000,0,0);}
.m51_c00230{transform:matrix(0.045890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.045890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.045890,0.000000,0.000000,0.250000,0,0);}
.m4a_c00230{transform:matrix(0.047435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.047435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.047435,0.000000,0.000000,0.250000,0,0);}
.m42_c00230{transform:matrix(0.050310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.050310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.050310,0.000000,0.000000,0.250000,0,0);}
.m4b_c00230{transform:matrix(0.054085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054085,0.000000,0.000000,0.250000,0,0);}
.m54_c00230{transform:matrix(0.063640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.063640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.063640,0.000000,0.000000,0.250000,0,0);}
.m48_c00230{transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);}
.m34_c00230{transform:matrix(0.079550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.079550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.079550,0.000000,0.000000,0.250000,0,0);}
.m3f_c00230{transform:matrix(0.081125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.081125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.081125,0.000000,0.000000,0.250000,0,0);}
.m45_c00230{transform:matrix(0.087465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087465,0.000000,0.000000,0.250000,0,0);}
.m37_c00230{transform:matrix(0.092770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092770,0.000000,0.000000,0.250000,0,0);}
.m7_c00230{transform:matrix(0.111495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111495,0.000000,0.000000,0.250000,0,0);}
.m3e_c00230{transform:matrix(0.112500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112500,0.000000,0.000000,0.250000,0,0);}
.m17_c00230{transform:matrix(0.119923,0.001319,-0.002750,0.249985,0,0);-ms-transform:matrix(0.119923,0.001319,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.119923,0.001319,-0.002750,0.249985,0,0);}
.m14_c00230{transform:matrix(0.120281,-0.001804,0.003750,0.249972,0,0);-ms-transform:matrix(0.120281,-0.001804,0.003750,0.249972,0,0);-webkit-transform:matrix(0.120281,-0.001804,0.003750,0.249972,0,0);}
.m18_c00230{transform:matrix(0.122773,0.001350,-0.002750,0.249985,0,0);-ms-transform:matrix(0.122773,0.001350,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.122773,0.001350,-0.002750,0.249985,0,0);}
.m13_c00230{transform:matrix(0.123131,-0.001847,0.003750,0.249972,0,0);-ms-transform:matrix(0.123131,-0.001847,0.003750,0.249972,0,0);-webkit-transform:matrix(0.123131,-0.001847,0.003750,0.249972,0,0);}
.m2_c00230{transform:matrix(0.129385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129385,0.000000,0.000000,0.250000,0,0);}
.m2a_c00230{transform:matrix(0.130865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130865,0.000000,0.000000,0.250000,0,0);}
.m16_c00230{transform:matrix(0.136167,0.001498,-0.002750,0.249985,0,0);-ms-transform:matrix(0.136167,0.001498,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.136167,0.001498,-0.002750,0.249985,0,0);}
.m38_c00230{transform:matrix(0.138295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138295,0.000000,0.000000,0.250000,0,0);}
.m3b_c00230{transform:matrix(0.146510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146510,0.000000,0.000000,0.250000,0,0);}
.m1b_c00230{transform:matrix(0.155686,0.001713,-0.002750,0.249985,0,0);-ms-transform:matrix(0.155686,0.001713,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.155686,0.001713,-0.002750,0.249985,0,0);}
.m30_c00230{transform:matrix(0.164235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164235,0.000000,0.000000,0.250000,0,0);}
.m15_c00230{transform:matrix(0.167631,-0.002514,0.003750,0.249972,0,0);-ms-transform:matrix(0.167631,-0.002514,0.003750,0.249972,0,0);-webkit-transform:matrix(0.167631,-0.002514,0.003750,0.249972,0,0);}
.m19_c00230{transform:matrix(0.167650,0.001844,-0.002750,0.249985,0,0);-ms-transform:matrix(0.167650,0.001844,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.167650,0.001844,-0.002750,0.249985,0,0);}
.m3_c00230{transform:matrix(0.171360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171360,0.000000,0.000000,0.250000,0,0);}
.m5_c00230{transform:matrix(0.172945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172945,0.000000,0.000000,0.250000,0,0);}
.m1_c00230{transform:matrix(0.172965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172965,0.000000,0.000000,0.250000,0,0);}
.m4_c00230{transform:matrix(0.173080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173080,0.000000,0.000000,0.250000,0,0);}
.m4c_c00230{transform:matrix(0.174750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174750,0.000000,0.000000,0.250000,0,0);}
.m1d_c00230{transform:matrix(0.177340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177340,0.000000,0.000000,0.250000,0,0);}
.mc_c00230{transform:matrix(0.178375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178375,0.000000,0.000000,0.250000,0,0);}
.m3a_c00230{transform:matrix(0.181030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181030,0.000000,0.000000,0.250000,0,0);}
.m40_c00230{transform:matrix(0.183135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183135,0.000000,0.000000,0.250000,0,0);}
.m1f_c00230{transform:matrix(0.187665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187665,0.000000,0.000000,0.250000,0,0);}
.md_c00230{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m1a_c00230{transform:matrix(0.193003,0.002123,-0.002750,0.249985,0,0);-ms-transform:matrix(0.193003,0.002123,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.193003,0.002123,-0.002750,0.249985,0,0);}
.m39_c00230{transform:matrix(0.194565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194565,0.000000,0.000000,0.250000,0,0);}
.m10_c00230{transform:matrix(0.198730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198730,0.000000,0.000000,0.250000,0,0);}
.m8_c00230{transform:matrix(0.206945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206945,0.000000,0.000000,0.250000,0,0);}
.m23_c00230{transform:matrix(0.208030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208030,0.000000,0.000000,0.250000,0,0);}
.m0_c00230{transform:matrix(0.213265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213265,0.000000,0.000000,0.250000,0,0);}
.m52_c00230{transform:matrix(0.213930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213930,0.000000,0.000000,0.250000,0,0);}
.m32_c00230{transform:matrix(0.214045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214045,0.000000,0.000000,0.250000,0,0);}
.me_c00230{transform:matrix(0.214995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214995,0.000000,0.000000,0.250000,0,0);}
.m11_c00230{transform:matrix(0.216025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216025,0.000000,0.000000,0.250000,0,0);}
.mf_c00230{transform:matrix(0.218725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218725,0.000000,0.000000,0.250000,0,0);}
.m2d_c00230{transform:matrix(0.220710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220710,0.000000,0.000000,0.250000,0,0);}
.mb_c00230{transform:matrix(0.221810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221810,0.000000,0.000000,0.250000,0,0);}
.m22_c00230{transform:matrix(0.222205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222205,0.000000,0.000000,0.250000,0,0);}
.m12_c00230{transform:matrix(0.225200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225200,0.000000,0.000000,0.250000,0,0);}
.m26_c00230{transform:matrix(0.225985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225985,0.000000,0.000000,0.250000,0,0);}
.m9_c00230{transform:matrix(0.228815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228815,0.000000,0.000000,0.250000,0,0);}
.m33_c00230{transform:matrix(0.239650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239650,0.000000,0.000000,0.250000,0,0);}
.m28_c00230{transform:matrix(0.259325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259325,0.000000,0.000000,0.250000,0,0);}
.m2b_c00230{transform:matrix(0.260825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260825,0.000000,0.000000,0.250000,0,0);}
.m5a_c00230{transform:matrix(0.262395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262395,0.000000,0.000000,0.250000,0,0);}
.m6_c00230{transform:matrix(0.263640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263640,0.000000,0.000000,0.250000,0,0);}
.m31_c00230{transform:matrix(0.273725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273725,0.000000,0.000000,0.250000,0,0);}
.m2f_c00230{transform:matrix(0.276585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276585,0.000000,0.000000,0.250000,0,0);}
.m21_c00230{transform:matrix(0.276760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276760,0.000000,0.000000,0.250000,0,0);}
.m59_c00230{transform:matrix(0.288140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288140,0.000000,0.000000,0.250000,0,0);}
.ma_c00230{transform:matrix(0.290840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290840,0.000000,0.000000,0.250000,0,0);}
.m27_c00230{transform:matrix(0.307425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307425,0.000000,0.000000,0.250000,0,0);}
.m29_c00230{transform:matrix(0.317290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317290,0.000000,0.000000,0.250000,0,0);}
.m2e_c00230{transform:matrix(0.321580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321580,0.000000,0.000000,0.250000,0,0);}
.m20_c00230{transform:matrix(0.331645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331645,0.000000,0.000000,0.250000,0,0);}
.m2c_c00230{transform:matrix(0.333850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333850,0.000000,0.000000,0.250000,0,0);}
.m25_c00230{transform:matrix(0.333955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333955,0.000000,0.000000,0.250000,0,0);}
.m24_c00230{transform:matrix(0.354410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354410,0.000000,0.000000,0.250000,0,0);}
.m3d_c00230{transform:matrix(0.378585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378585,0.000000,0.000000,0.250000,0,0);}
.m46_c00230{transform:matrix(0.394590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394590,0.000000,0.000000,0.250000,0,0);}
.m4d_c00230{transform:matrix(0.397585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397585,0.000000,0.000000,0.250000,0,0);}
.m44_c00230{transform:matrix(0.401620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401620,0.000000,0.000000,0.250000,0,0);}
.m1c_c00230{transform:matrix(0.427435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427435,0.000000,0.000000,0.250000,0,0);}
.m1e_c00230{transform:matrix(0.440475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440475,0.000000,0.000000,0.250000,0,0);}
.m43_c00230{transform:matrix(0.453115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453115,0.000000,0.000000,0.250000,0,0);}
.m55_c00230{transform:matrix(0.489745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.489745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.489745,0.000000,0.000000,0.250000,0,0);}
.m53_c00230{transform:matrix(0.500650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.500650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.500650,0.000000,0.000000,0.250000,0,0);}
.m49_c00230{transform:matrix(0.556620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556620,0.000000,0.000000,0.250000,0,0);}
.m58_c00230{transform:matrix(0.558235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558235,0.000000,0.000000,0.250000,0,0);}
.m47_c00230{transform:matrix(0.614910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.614910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.614910,0.000000,0.000000,0.250000,0,0);}
.m35_c00230{transform:matrix(0.646090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.646090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.646090,0.000000,0.000000,0.250000,0,0);}
.m57_c00230{transform:matrix(0.676500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.676500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.676500,0.000000,0.000000,0.250000,0,0);}
.m36_c00230{transform:matrix(0.719270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.719270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.719270,0.000000,0.000000,0.250000,0,0);}
.m56_c00230{transform:matrix(0.767970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.767970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.767970,0.000000,0.000000,0.250000,0,0);}
.m5b_c00230{transform:matrix(0.795565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.795565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.795565,0.000000,0.000000,0.250000,0,0);}
.m4e_c00230{transform:matrix(0.823770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.823770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.823770,0.000000,0.000000,0.250000,0,0);}
.v0_c00230{vertical-align:0.000000px;}
.ls0_c00230{letter-spacing:0.000000px;}
.sc__c00230{text-shadow:none;}
.sc0_c00230{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__c00230{-webkit-text-stroke:0px transparent;}
.sc0_c00230{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00230{word-spacing:0.000000px;}
.fc0_c00230{color:transparent;}
.fsa_c00230{font-size:12.000000px;}
.fse_c00230{font-size:18.000000px;}
.fsc_c00230{font-size:24.000000px;}
.fsb_c00230{font-size:30.000000px;}
.fs6_c00230{font-size:42.000000px;}
.fsd_c00230{font-size:48.000000px;}
.fs7_c00230{font-size:66.000000px;}
.fs9_c00230{font-size:72.000000px;}
.fs2_c00230{font-size:84.000000px;}
.fs3_c00230{font-size:102.000000px;}
.fs8_c00230{font-size:108.000000px;}
.fs0_c00230{font-size:132.000000px;}
.fs5_c00230{font-size:198.011979px;}
.fs1_c00230{font-size:270.000000px;}
.fs4_c00230{font-size:492.055347px;}
.y0_c00230{bottom:0.000000px;}
.y23_c00230{bottom:14.310000px;}
.y22_c00230{bottom:25.561500px;}
.y21_c00230{bottom:28.407000px;}
.y20_c00230{bottom:70.470000px;}
.y1f_c00230{bottom:77.760000px;}
.y1e_c00230{bottom:89.910000px;}
.y1d_c00230{bottom:93.831000px;}
.y15_c00230{bottom:105.840000px;}
.y1c_c00230{bottom:106.110000px;}
.y1b_c00230{bottom:109.740000px;}
.y14_c00230{bottom:115.963500px;}
.y1a_c00230{bottom:116.662500px;}
.y19_c00230{bottom:130.680000px;}
.y18_c00230{bottom:137.970000px;}
.y17_c00230{bottom:140.940000px;}
.y16_c00230{bottom:157.276500px;}
.y13_c00230{bottom:161.941500px;}
.y12_c00230{bottom:197.370000px;}
.y11_c00230{bottom:248.125500px;}
.y10_c00230{bottom:294.171000px;}
.yf_c00230{bottom:328.721360px;}
.ye_c00230{bottom:329.731159px;}
.yd_c00230{bottom:331.922921px;}
.yc_c00230{bottom:332.406965px;}
.yb_c00230{bottom:333.832449px;}
.ya_c00230{bottom:334.263000px;}
.y7_c00230{bottom:392.328000px;}
.y8_c00230{bottom:396.753053px;}
.y9_c00230{bottom:399.081308px;}
.y6_c00230{bottom:498.435000px;}
.y5_c00230{bottom:536.494500px;}
.y4_c00230{bottom:573.156000px;}
.y3_c00230{bottom:574.446000px;}
.y2_c00230{bottom:575.374500px;}
.y1_c00230{bottom:649.080000px;}
.hb_c00230{height:12.000000px;}
.hf_c00230{height:18.000000px;}
.hd_c00230{height:24.000000px;}
.hc_c00230{height:30.000000px;}
.h7_c00230{height:42.000000px;}
.he_c00230{height:48.000000px;}
.h8_c00230{height:66.000000px;}
.ha_c00230{height:72.000000px;}
.h3_c00230{height:84.000000px;}
.h4_c00230{height:102.000000px;}
.h9_c00230{height:108.000000px;}
.h1_c00230{height:132.000000px;}
.h6_c00230{height:198.011979px;}
.h2_c00230{height:270.000000px;}
.h5_c00230{height:492.055347px;}
.h0_c00230{height:682.500000px;}
.w0_c00230{width:937.440000px;}
.w1_c00230{width:937.500000px;}
.x0_c00230{left:0.000000px;}
.x3e_c00230{left:224.100000px;}
.x30_c00230{left:225.450000px;}
.x2d_c00230{left:226.530000px;}
.x34_c00230{left:260.820000px;}
.x38_c00230{left:275.400000px;}
.x32_c00230{left:277.560000px;}
.x2c_c00230{left:278.640000px;}
.x39_c00230{left:296.190000px;}
.x2e_c00230{left:304.020000px;}
.x3f_c00230{left:308.610000px;}
.x31_c00230{left:319.950000px;}
.x36_c00230{left:323.730000px;}
.x3a_c00230{left:328.860000px;}
.x3b_c00230{left:335.880000px;}
.x3c_c00230{left:348.300000px;}
.x35_c00230{left:349.920000px;}
.x33_c00230{left:362.610000px;}
.x45_c00230{left:364.770000px;}
.x40_c00230{left:383.670000px;}
.x1_c00230{left:396.630000px;}
.x1d_c00230{left:399.330000px;}
.x15_c00230{left:400.956000px;}
.x46_c00230{left:422.280000px;}
.x24_c00230{left:426.330000px;}
.x13_c00230{left:428.656500px;}
.x16_c00230{left:440.097000px;}
.x47_c00230{left:442.530000px;}
.x9_c00230{left:448.813500px;}
.x48_c00230{left:451.710000px;}
.x41_c00230{left:461.970000px;}
.x49_c00230{left:472.230000px;}
.x42_c00230{left:484.650000px;}
.x4a_c00230{left:492.480000px;}
.x3d_c00230{left:504.630000px;}
.x4b_c00230{left:508.680000px;}
.x43_c00230{left:511.650000px;}
.x2_c00230{left:513.810000px;}
.x4c_c00230{left:516.510000px;}
.x1e_c00230{left:519.210000px;}
.x4d_c00230{left:544.590000px;}
.xa_c00230{left:551.935500px;}
.x17_c00230{left:569.686500px;}
.x3_c00230{left:575.370000px;}
.x25_c00230{left:586.440000px;}
.x1f_c00230{left:592.650000px;}
.x18_c00230{left:613.690500px;}
.xe_c00230{left:619.380000px;}
.x4_c00230{left:632.610000px;}
.x26_c00230{left:635.850000px;}
.xb_c00230{left:695.233500px;}
.xf_c00230{left:709.020000px;}
.x14_c00230{left:723.660000px;}
.x37_c00230{left:733.860000px;}
.x2f_c00230{left:755.190000px;}
.x21_c00230{left:757.080000px;}
.xc_c00230{left:760.320000px;}
.x5_c00230{left:762.210000px;}
.x27_c00230{left:767.880000px;}
.x28_c00230{left:798.660000px;}
.x22_c00230{left:801.900000px;}
.x19_c00230{left:812.941500px;}
.x10_c00230{left:831.060000px;}
.x1b_c00230{left:837.810000px;}
.x6_c00230{left:845.100000px;}
.xd_c00230{left:850.230000px;}
.x11_c00230{left:868.860000px;}
.x23_c00230{left:872.370000px;}
.x44_c00230{left:876.960000px;}
.x7_c00230{left:878.310000px;}
.x8_c00230{left:895.050000px;}
.x1a_c00230{left:904.741500px;}
.x2b_c00230{left:907.470000px;}
.x12_c00230{left:910.170000px;}
.x2a_c00230{left:921.780000px;}
.x29_c00230{left:923.400000px;}
.x20_c00230{left:926.640000px;}
.x1c_c00230{left:932.310000px;}
@media print{
.v0_c00230{vertical-align:0.000000pt;}
.ls0_c00230{letter-spacing:0.000000pt;}
.ws0_c00230{word-spacing:0.000000pt;}
.fsa_c00230{font-size:10.666667pt;}
.fse_c00230{font-size:16.000000pt;}
.fsc_c00230{font-size:21.333333pt;}
.fsb_c00230{font-size:26.666667pt;}
.fs6_c00230{font-size:37.333333pt;}
.fsd_c00230{font-size:42.666667pt;}
.fs7_c00230{font-size:58.666667pt;}
.fs9_c00230{font-size:64.000000pt;}
.fs2_c00230{font-size:74.666667pt;}
.fs3_c00230{font-size:90.666667pt;}
.fs8_c00230{font-size:96.000000pt;}
.fs0_c00230{font-size:117.333333pt;}
.fs5_c00230{font-size:176.010648pt;}
.fs1_c00230{font-size:240.000000pt;}
.fs4_c00230{font-size:437.382531pt;}
.y0_c00230{bottom:0.000000pt;}
.y23_c00230{bottom:12.720000pt;}
.y22_c00230{bottom:22.721333pt;}
.y21_c00230{bottom:25.250667pt;}
.y20_c00230{bottom:62.640000pt;}
.y1f_c00230{bottom:69.120000pt;}
.y1e_c00230{bottom:79.920000pt;}
.y1d_c00230{bottom:83.405333pt;}
.y15_c00230{bottom:94.080000pt;}
.y1c_c00230{bottom:94.320000pt;}
.y1b_c00230{bottom:97.546667pt;}
.y14_c00230{bottom:103.078667pt;}
.y1a_c00230{bottom:103.700000pt;}
.y19_c00230{bottom:116.160000pt;}
.y18_c00230{bottom:122.640000pt;}
.y17_c00230{bottom:125.280000pt;}
.y16_c00230{bottom:139.801333pt;}
.y13_c00230{bottom:143.948000pt;}
.y12_c00230{bottom:175.440000pt;}
.y11_c00230{bottom:220.556000pt;}
.y10_c00230{bottom:261.485333pt;}
.yf_c00230{bottom:292.196764pt;}
.ye_c00230{bottom:293.094364pt;}
.yd_c00230{bottom:295.042596pt;}
.yc_c00230{bottom:295.472857pt;}
.yb_c00230{bottom:296.739955pt;}
.ya_c00230{bottom:297.122667pt;}
.y7_c00230{bottom:348.736000pt;}
.y8_c00230{bottom:352.669380pt;}
.y9_c00230{bottom:354.738940pt;}
.y6_c00230{bottom:443.053333pt;}
.y5_c00230{bottom:476.884000pt;}
.y4_c00230{bottom:509.472000pt;}
.y3_c00230{bottom:510.618667pt;}
.y2_c00230{bottom:511.444000pt;}
.y1_c00230{bottom:576.960000pt;}
.hb_c00230{height:10.666667pt;}
.hf_c00230{height:16.000000pt;}
.hd_c00230{height:21.333333pt;}
.hc_c00230{height:26.666667pt;}
.h7_c00230{height:37.333333pt;}
.he_c00230{height:42.666667pt;}
.h8_c00230{height:58.666667pt;}
.ha_c00230{height:64.000000pt;}
.h3_c00230{height:74.666667pt;}
.h4_c00230{height:90.666667pt;}
.h9_c00230{height:96.000000pt;}
.h1_c00230{height:117.333333pt;}
.h6_c00230{height:176.010648pt;}
.h2_c00230{height:240.000000pt;}
.h5_c00230{height:437.382531pt;}
.h0_c00230{height:606.666667pt;}
.w0_c00230{width:833.280000pt;}
.w1_c00230{width:833.333333pt;}
.x0_c00230{left:0.000000pt;}
.x3e_c00230{left:199.200000pt;}
.x30_c00230{left:200.400000pt;}
.x2d_c00230{left:201.360000pt;}
.x34_c00230{left:231.840000pt;}
.x38_c00230{left:244.800000pt;}
.x32_c00230{left:246.720000pt;}
.x2c_c00230{left:247.680000pt;}
.x39_c00230{left:263.280000pt;}
.x2e_c00230{left:270.240000pt;}
.x3f_c00230{left:274.320000pt;}
.x31_c00230{left:284.400000pt;}
.x36_c00230{left:287.760000pt;}
.x3a_c00230{left:292.320000pt;}
.x3b_c00230{left:298.560000pt;}
.x3c_c00230{left:309.600000pt;}
.x35_c00230{left:311.040000pt;}
.x33_c00230{left:322.320000pt;}
.x45_c00230{left:324.240000pt;}
.x40_c00230{left:341.040000pt;}
.x1_c00230{left:352.560000pt;}
.x1d_c00230{left:354.960000pt;}
.x15_c00230{left:356.405333pt;}
.x46_c00230{left:375.360000pt;}
.x24_c00230{left:378.960000pt;}
.x13_c00230{left:381.028000pt;}
.x16_c00230{left:391.197333pt;}
.x47_c00230{left:393.360000pt;}
.x9_c00230{left:398.945333pt;}
.x48_c00230{left:401.520000pt;}
.x41_c00230{left:410.640000pt;}
.x49_c00230{left:419.760000pt;}
.x42_c00230{left:430.800000pt;}
.x4a_c00230{left:437.760000pt;}
.x3d_c00230{left:448.560000pt;}
.x4b_c00230{left:452.160000pt;}
.x43_c00230{left:454.800000pt;}
.x2_c00230{left:456.720000pt;}
.x4c_c00230{left:459.120000pt;}
.x1e_c00230{left:461.520000pt;}
.x4d_c00230{left:484.080000pt;}
.xa_c00230{left:490.609333pt;}
.x17_c00230{left:506.388000pt;}
.x3_c00230{left:511.440000pt;}
.x25_c00230{left:521.280000pt;}
.x1f_c00230{left:526.800000pt;}
.x18_c00230{left:545.502667pt;}
.xe_c00230{left:550.560000pt;}
.x4_c00230{left:562.320000pt;}
.x26_c00230{left:565.200000pt;}
.xb_c00230{left:617.985333pt;}
.xf_c00230{left:630.240000pt;}
.x14_c00230{left:643.253333pt;}
.x37_c00230{left:652.320000pt;}
.x2f_c00230{left:671.280000pt;}
.x21_c00230{left:672.960000pt;}
.xc_c00230{left:675.840000pt;}
.x5_c00230{left:677.520000pt;}
.x27_c00230{left:682.560000pt;}
.x28_c00230{left:709.920000pt;}
.x22_c00230{left:712.800000pt;}
.x19_c00230{left:722.614667pt;}
.x10_c00230{left:738.720000pt;}
.x1b_c00230{left:744.720000pt;}
.x6_c00230{left:751.200000pt;}
.xd_c00230{left:755.760000pt;}
.x11_c00230{left:772.320000pt;}
.x23_c00230{left:775.440000pt;}
.x44_c00230{left:779.520000pt;}
.x7_c00230{left:780.720000pt;}
.x8_c00230{left:795.600000pt;}
.x1a_c00230{left:804.214667pt;}
.x2b_c00230{left:806.640000pt;}
.x12_c00230{left:809.040000pt;}
.x2a_c00230{left:819.360000pt;}
.x29_c00230{left:820.800000pt;}
.x20_c00230{left:823.680000pt;}
.x1c_c00230{left:828.720000pt;}
}





/* 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_c00231 {
    display:none;
  }
  .loading-indicator_c00231.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00231 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_c00231 { 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_c00231" -> "#page-container .classname_c00231")
 */
.pf_c00231 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00231 { /* 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_c00231.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00231 { /* 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_c00231 { /* 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_c00231 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00231 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00231 {overflow:visible;}
  }
}
.c_c00231 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00231 { /* 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_c00231:after { /* webkit #35443 */
  content: '';
}
.t_c00231:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00231 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 */
}
.__c00231 { /* 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_c00231 { /* info for Javascript */
  display:none;
}
.l_c00231 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00231 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00231 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00231: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_c00231 {
    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_c00231.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00231.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_c00231 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00231{font-family:sans-serif;visibility:hidden;}
.sc__c00231{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00231{-webkit-text-stroke:0px transparent;}
}
.y0_c00231{bottom:0.000000px;}
.h0_c00231{height:682.500000px;}
.w0_c00231{width:937.440000px;}
.w1_c00231{width:937.500000px;}
.x0_c00231{left:0.000000px;}
@media print{
.y0_c00231{bottom:0.000000pt;}
.h0_c00231{height:606.666667pt;}
.w0_c00231{width:833.280000pt;}
.w1_c00231{width:833.333333pt;}
.x0_c00231{left:0.000000pt;}
}





/* 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_c00232 {
    display:none;
  }
  .loading-indicator_c00232.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00232 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_c00232 { 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_c00232" -> "#page-container .classname_c00232")
 */
.pf_c00232 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00232 { /* 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_c00232.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00232 { /* 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_c00232 { /* 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_c00232 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00232 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00232 {overflow:visible;}
  }
}
.c_c00232 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00232 { /* 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_c00232:after { /* webkit #35443 */
  content: '';
}
.t_c00232:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00232 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 */
}
.__c00232 { /* 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_c00232 { /* info for Javascript */
  display:none;
}
.l_c00232 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00232 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00232 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00232: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_c00232 {
    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_c00232.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00232.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_c00232 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00232{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00232;src:url('chunks/assets/font_bfe6362fd3009c591583128f.woff2')format("woff");}.ff1_c00232{font-family:ff1_c00232;line-height:1.000000;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;}
.m3_c00232{transform:matrix(0.021209,-0.000488,0.005748,0.249934,0,0);-ms-transform:matrix(0.021209,-0.000488,0.005748,0.249934,0,0);-webkit-transform:matrix(0.021209,-0.000488,0.005748,0.249934,0,0);}
.m1_c00232{transform:matrix(0.027033,-0.000622,0.005748,0.249934,0,0);-ms-transform:matrix(0.027033,-0.000622,0.005748,0.249934,0,0);-webkit-transform:matrix(0.027033,-0.000622,0.005748,0.249934,0,0);}
.m6_c00232{transform:matrix(0.040379,-0.000929,0.005748,0.249934,0,0);-ms-transform:matrix(0.040379,-0.000929,0.005748,0.249934,0,0);-webkit-transform:matrix(0.040379,-0.000929,0.005748,0.249934,0,0);}
.m2_c00232{transform:matrix(0.054071,-0.001244,0.005748,0.249934,0,0);-ms-transform:matrix(0.054071,-0.001244,0.005748,0.249934,0,0);-webkit-transform:matrix(0.054071,-0.001244,0.005748,0.249934,0,0);}
.m8_c00232{transform:matrix(0.132655,-0.003051,0.005748,0.249934,0,0);-ms-transform:matrix(0.132655,-0.003051,0.005748,0.249934,0,0);-webkit-transform:matrix(0.132655,-0.003051,0.005748,0.249934,0,0);}
.m4_c00232{transform:matrix(0.148831,-0.003423,0.005748,0.249934,0,0);-ms-transform:matrix(0.148831,-0.003423,0.005748,0.249934,0,0);-webkit-transform:matrix(0.148831,-0.003423,0.005748,0.249934,0,0);}
.me_c00232{transform:matrix(0.220342,-0.005068,0.005748,0.249934,0,0);-ms-transform:matrix(0.220342,-0.005068,0.005748,0.249934,0,0);-webkit-transform:matrix(0.220342,-0.005068,0.005748,0.249934,0,0);}
.mb_c00232{transform:matrix(0.265150,-0.006098,0.005748,0.249934,0,0);-ms-transform:matrix(0.265150,-0.006098,0.005748,0.249934,0,0);-webkit-transform:matrix(0.265150,-0.006098,0.005748,0.249934,0,0);}
.m5_c00232{transform:matrix(0.312497,-0.007187,0.005748,0.249934,0,0);-ms-transform:matrix(0.312497,-0.007187,0.005748,0.249934,0,0);-webkit-transform:matrix(0.312497,-0.007187,0.005748,0.249934,0,0);}
.md_c00232{transform:matrix(0.367563,-0.008454,0.005748,0.249934,0,0);-ms-transform:matrix(0.367563,-0.008454,0.005748,0.249934,0,0);-webkit-transform:matrix(0.367563,-0.008454,0.005748,0.249934,0,0);}
.ma_c00232{transform:matrix(0.378860,-0.008714,0.005748,0.249934,0,0);-ms-transform:matrix(0.378860,-0.008714,0.005748,0.249934,0,0);-webkit-transform:matrix(0.378860,-0.008714,0.005748,0.249934,0,0);}
.m7_c00232{transform:matrix(0.395180,-0.009089,0.005748,0.249934,0,0);-ms-transform:matrix(0.395180,-0.009089,0.005748,0.249934,0,0);-webkit-transform:matrix(0.395180,-0.009089,0.005748,0.249934,0,0);}
.mf_c00232{transform:matrix(0.401514,-0.009235,0.005748,0.249934,0,0);-ms-transform:matrix(0.401514,-0.009235,0.005748,0.249934,0,0);-webkit-transform:matrix(0.401514,-0.009235,0.005748,0.249934,0,0);}
.m9_c00232{transform:matrix(0.430911,-0.009911,0.005748,0.249934,0,0);-ms-transform:matrix(0.430911,-0.009911,0.005748,0.249934,0,0);-webkit-transform:matrix(0.430911,-0.009911,0.005748,0.249934,0,0);}
.mc_c00232{transform:matrix(0.447552,-0.010294,0.005748,0.249934,0,0);-ms-transform:matrix(0.447552,-0.010294,0.005748,0.249934,0,0);-webkit-transform:matrix(0.447552,-0.010294,0.005748,0.249934,0,0);}
.m0_c00232{transform:matrix(0.619371,-0.014246,0.005748,0.249934,0,0);-ms-transform:matrix(0.619371,-0.014246,0.005748,0.249934,0,0);-webkit-transform:matrix(0.619371,-0.014246,0.005748,0.249934,0,0);}
.m10_c00232{transform:matrix(0.769212,-0.017692,0.005748,0.249934,0,0);-ms-transform:matrix(0.769212,-0.017692,0.005748,0.249934,0,0);-webkit-transform:matrix(0.769212,-0.017692,0.005748,0.249934,0,0);}
.v0_c00232{vertical-align:0.000000px;}
.ls0_c00232{letter-spacing:0.000000px;}
.sc__c00232{text-shadow:none;}
.sc0_c00232{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__c00232{-webkit-text-stroke:0px transparent;}
.sc0_c00232{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00232{word-spacing:0.000000px;}
.fc0_c00232{color:transparent;}
.fs0_c00232{font-size:36.009521px;}
.fs1_c00232{font-size:72.019041px;}
.y0_c00232{bottom:0.000000px;}
.yb_c00232{bottom:502.760286px;}
.yc_c00232{bottom:506.491121px;}
.yd_c00232{bottom:508.364118px;}
.ye_c00232{bottom:509.848808px;}
.yf_c00232{bottom:512.093124px;}
.y10_c00232{bottom:514.595082px;}
.y11_c00232{bottom:515.997036px;}
.y12_c00232{bottom:518.581488px;}
.y1_c00232{bottom:526.218000px;}
.y2_c00232{bottom:530.668604px;}
.y3_c00232{bottom:531.566811px;}
.y4_c00232{bottom:532.877190px;}
.y5_c00232{bottom:534.119086px;}
.y6_c00232{bottom:534.435348px;}
.y7_c00232{bottom:535.471556px;}
.y8_c00232{bottom:536.724561px;}
.y9_c00232{bottom:537.672863px;}
.ya_c00232{bottom:537.939617px;}
.h1_c00232{height:36.009521px;}
.h2_c00232{height:72.019041px;}
.h0_c00232{height:682.500000px;}
.w0_c00232{width:937.440000px;}
.w1_c00232{width:937.500000px;}
.x0_c00232{left:0.000000px;}
.xb_c00232{left:382.316820px;}
.x1_c00232{left:386.898000px;}
.xc_c00232{left:495.392341px;}
.xd_c00232{left:552.161801px;}
.x2_c00232{left:580.402500px;}
.xe_c00232{left:597.137950px;}
.x3_c00232{left:619.455000px;}
.xf_c00232{left:665.157822px;}
.x4_c00232{left:676.428000px;}
.x5_c00232{left:730.423500px;}
.x10_c00232{left:740.986399px;}
.x6_c00232{left:744.174000px;}
.x11_c00232{left:783.474636px;}
.x7_c00232{left:789.226500px;}
.x8_c00232{left:843.705000px;}
.x12_c00232{left:861.780627px;}
.x9_c00232{left:884.935500px;}
.xa_c00232{left:896.533500px;}
@media print{
.v0_c00232{vertical-align:0.000000pt;}
.ls0_c00232{letter-spacing:0.000000pt;}
.ws0_c00232{word-spacing:0.000000pt;}
.fs0_c00232{font-size:32.008463pt;}
.fs1_c00232{font-size:64.016926pt;}
.y0_c00232{bottom:0.000000pt;}
.yb_c00232{bottom:446.898032pt;}
.yc_c00232{bottom:450.214329pt;}
.yd_c00232{bottom:451.879216pt;}
.ye_c00232{bottom:453.198940pt;}
.yf_c00232{bottom:455.193888pt;}
.y10_c00232{bottom:457.417851pt;}
.y11_c00232{bottom:458.664032pt;}
.y12_c00232{bottom:460.961323pt;}
.y1_c00232{bottom:467.749333pt;}
.y2_c00232{bottom:471.705425pt;}
.y3_c00232{bottom:472.503832pt;}
.y4_c00232{bottom:473.668613pt;}
.y5_c00232{bottom:474.772521pt;}
.y6_c00232{bottom:475.053643pt;}
.y7_c00232{bottom:475.974716pt;}
.y8_c00232{bottom:477.088499pt;}
.y9_c00232{bottom:477.931433pt;}
.ya_c00232{bottom:478.168548pt;}
.h1_c00232{height:32.008463pt;}
.h2_c00232{height:64.016926pt;}
.h0_c00232{height:606.666667pt;}
.w0_c00232{width:833.280000pt;}
.w1_c00232{width:833.333333pt;}
.x0_c00232{left:0.000000pt;}
.xb_c00232{left:339.837173pt;}
.x1_c00232{left:343.909333pt;}
.xc_c00232{left:440.348748pt;}
.xd_c00232{left:490.810489pt;}
.x2_c00232{left:515.913333pt;}
.xe_c00232{left:530.789289pt;}
.x3_c00232{left:550.626667pt;}
.xf_c00232{left:591.251397pt;}
.x4_c00232{left:601.269333pt;}
.x5_c00232{left:649.265333pt;}
.x10_c00232{left:658.654577pt;}
.x6_c00232{left:661.488000pt;}
.x11_c00232{left:696.421899pt;}
.x7_c00232{left:701.534667pt;}
.x8_c00232{left:749.960000pt;}
.x12_c00232{left:766.027224pt;}
.x9_c00232{left:786.609333pt;}
.xa_c00232{left:796.918667pt;}
}





/* 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_c00233 {
    display:none;
  }
  .loading-indicator_c00233.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00233 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_c00233 { 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_c00233" -> "#page-container .classname_c00233")
 */
.pf_c00233 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00233 { /* 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_c00233.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00233 { /* 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_c00233 { /* 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_c00233 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00233 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00233 {overflow:visible;}
  }
}
.c_c00233 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00233 { /* 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_c00233:after { /* webkit #35443 */
  content: '';
}
.t_c00233:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00233 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 */
}
.__c00233 { /* 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_c00233 { /* info for Javascript */
  display:none;
}
.l_c00233 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00233 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00233 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00233: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_c00233 {
    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_c00233.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00233.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_c00233 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00233{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00233;src:url('chunks/assets/font_59dc3ab2e04ed21d4ac9992b.woff2')format("woff");}.ff1_c00233{font-family:ff1_c00233;line-height:1.000000;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;}
.m5_c00233{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.m9_c00233{transform:matrix(0.113840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113840,0.000000,0.000000,0.250000,0,0);}
.m26_c00233{transform:matrix(0.135568,-0.002169,0.003999,0.249968,0,0);-ms-transform:matrix(0.135568,-0.002169,0.003999,0.249968,0,0);-webkit-transform:matrix(0.135568,-0.002169,0.003999,0.249968,0,0);}
.m2_c00233{transform:matrix(0.135650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135650,0.000000,0.000000,0.250000,0,0);}
.m29_c00233{transform:matrix(0.145991,-0.002336,0.003999,0.249968,0,0);-ms-transform:matrix(0.145991,-0.002336,0.003999,0.249968,0,0);-webkit-transform:matrix(0.145991,-0.002336,0.003999,0.249968,0,0);}
.m22_c00233{transform:matrix(0.147780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147780,0.000000,0.000000,0.250000,0,0);}
.m2a_c00233{transform:matrix(0.160234,-0.002564,0.003999,0.249968,0,0);-ms-transform:matrix(0.160234,-0.002564,0.003999,0.249968,0,0);-webkit-transform:matrix(0.160234,-0.002564,0.003999,0.249968,0,0);}
.m21_c00233{transform:matrix(0.170055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170055,0.000000,0.000000,0.250000,0,0);}
.m27_c00233{transform:matrix(0.175143,-0.002802,0.003999,0.249968,0,0);-ms-transform:matrix(0.175143,-0.002802,0.003999,0.249968,0,0);-webkit-transform:matrix(0.175143,-0.002802,0.003999,0.249968,0,0);}
.m28_c00233{transform:matrix(0.180817,-0.002893,0.003999,0.249968,0,0);-ms-transform:matrix(0.180817,-0.002893,0.003999,0.249968,0,0);-webkit-transform:matrix(0.180817,-0.002893,0.003999,0.249968,0,0);}
.m1d_c00233{transform:matrix(0.203225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203225,0.000000,0.000000,0.250000,0,0);}
.m23_c00233{transform:matrix(0.203245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203245,0.000000,0.000000,0.250000,0,0);}
.m16_c00233{transform:matrix(0.208385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208385,0.000000,0.000000,0.250000,0,0);}
.m10_c00233{transform:matrix(0.209890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209890,0.000000,0.000000,0.250000,0,0);}
.mc_c00233{transform:matrix(0.210511,-0.003158,0.003750,0.249972,0,0);-ms-transform:matrix(0.210511,-0.003158,0.003750,0.249972,0,0);-webkit-transform:matrix(0.210511,-0.003158,0.003750,0.249972,0,0);}
.m1b_c00233{transform:matrix(0.232595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232595,0.000000,0.000000,0.250000,0,0);}
.m20_c00233{transform:matrix(0.236010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236010,0.000000,0.000000,0.250000,0,0);}
.m1_c00233{transform:matrix(0.237605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237605,0.000000,0.000000,0.250000,0,0);}
.m1e_c00233{transform:matrix(0.242330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242330,0.000000,0.000000,0.250000,0,0);}
.m2b_c00233{transform:matrix(0.249188,-0.003987,0.003999,0.249968,0,0);-ms-transform:matrix(0.249188,-0.003987,0.003999,0.249968,0,0);-webkit-transform:matrix(0.249188,-0.003987,0.003999,0.249968,0,0);}
.m0_c00233{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m6_c00233{transform:matrix(0.264615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264615,0.000000,0.000000,0.250000,0,0);}
.mb_c00233{transform:matrix(0.284314,-0.004549,0.003999,0.249968,0,0);-ms-transform:matrix(0.284314,-0.004549,0.003999,0.249968,0,0);-webkit-transform:matrix(0.284314,-0.004549,0.003999,0.249968,0,0);}
.m24_c00233{transform:matrix(0.284749,-0.004841,0.004249,0.249964,0,0);-ms-transform:matrix(0.284749,-0.004841,0.004249,0.249964,0,0);-webkit-transform:matrix(0.284749,-0.004841,0.004249,0.249964,0,0);}
.m8_c00233{transform:matrix(0.299175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299175,0.000000,0.000000,0.250000,0,0);}
.m14_c00233{transform:matrix(0.306035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306035,0.000000,0.000000,0.250000,0,0);}
.m3_c00233{transform:matrix(0.308400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308400,0.000000,0.000000,0.250000,0,0);}
.m15_c00233{transform:matrix(0.315785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315785,0.000000,0.000000,0.250000,0,0);}
.m1c_c00233{transform:matrix(0.324425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324425,0.000000,0.000000,0.250000,0,0);}
.ma_c00233{transform:matrix(0.340836,-0.005453,0.003999,0.249968,0,0);-ms-transform:matrix(0.340836,-0.005453,0.003999,0.249968,0,0);-webkit-transform:matrix(0.340836,-0.005453,0.003999,0.249968,0,0);}
.m4_c00233{transform:matrix(0.347895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347895,0.000000,0.000000,0.250000,0,0);}
.m19_c00233{transform:matrix(0.354015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354015,0.000000,0.000000,0.250000,0,0);}
.m25_c00233{transform:matrix(0.384414,-0.006535,0.004249,0.249964,0,0);-ms-transform:matrix(0.384414,-0.006535,0.004249,0.249964,0,0);-webkit-transform:matrix(0.384414,-0.006535,0.004249,0.249964,0,0);}
.me_c00233{transform:matrix(0.389181,-0.005838,0.003750,0.249972,0,0);-ms-transform:matrix(0.389181,-0.005838,0.003750,0.249972,0,0);-webkit-transform:matrix(0.389181,-0.005838,0.003750,0.249972,0,0);}
.m13_c00233{transform:matrix(0.392510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392510,0.000000,0.000000,0.250000,0,0);}
.m11_c00233{transform:matrix(0.434870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434870,0.000000,0.000000,0.250000,0,0);}
.m12_c00233{transform:matrix(0.467775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467775,0.000000,0.000000,0.250000,0,0);}
.m1a_c00233{transform:matrix(0.481165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.481165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.481165,0.000000,0.000000,0.250000,0,0);}
.m1f_c00233{transform:matrix(0.508245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508245,0.000000,0.000000,0.250000,0,0);}
.m7_c00233{transform:matrix(0.569920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.569920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.569920,0.000000,0.000000,0.250000,0,0);}
.md_c00233{transform:matrix(0.637123,-0.009557,0.003750,0.249972,0,0);-ms-transform:matrix(0.637123,-0.009557,0.003750,0.249972,0,0);-webkit-transform:matrix(0.637123,-0.009557,0.003750,0.249972,0,0);}
.m18_c00233{transform:matrix(0.792720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.792720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.792720,0.000000,0.000000,0.250000,0,0);}
.m17_c00233{transform:matrix(0.877570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.877570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.877570,0.000000,0.000000,0.250000,0,0);}
.mf_c00233{transform:matrix(1.144366,-0.017165,0.003750,0.249972,0,0);-ms-transform:matrix(1.144366,-0.017165,0.003750,0.249972,0,0);-webkit-transform:matrix(1.144366,-0.017165,0.003750,0.249972,0,0);}
.v0_c00233{vertical-align:0.000000px;}
.ls0_c00233{letter-spacing:0.000000px;}
.sc__c00233{text-shadow:none;}
.sc0_c00233{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__c00233{-webkit-text-stroke:0px transparent;}
.sc0_c00233{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00233{word-spacing:0.000000px;}
.fc0_c00233{color:transparent;}
.fs6_c00233{font-size:12.000000px;}
.fs5_c00233{font-size:18.000000px;}
.fs0_c00233{font-size:24.000000px;}
.fs1_c00233{font-size:30.000000px;}
.fs7_c00233{font-size:36.000000px;}
.fs2_c00233{font-size:42.000000px;}
.fs9_c00233{font-size:48.000000px;}
.fs8_c00233{font-size:60.000000px;}
.fs4_c00233{font-size:60.006750px;}
.fsa_c00233{font-size:108.015605px;}
.fs3_c00233{font-size:258.033022px;}
.fsb_c00233{font-size:312.039933px;}
.y0_c00233{bottom:0.000000px;}
.y21_c00233{bottom:77.230500px;}
.y22_c00233{bottom:79.685220px;}
.y23_c00233{bottom:81.226884px;}
.y24_c00233{bottom:83.029476px;}
.y25_c00233{bottom:84.165156px;}
.y26_c00233{bottom:86.640540px;}
.y1f_c00233{bottom:142.296000px;}
.y20_c00233{bottom:144.587328px;}
.y1e_c00233{bottom:458.191500px;}
.y1d_c00233{bottom:467.101500px;}
.y1c_c00233{bottom:474.390000px;}
.y1a_c00233{bottom:474.660000px;}
.y1b_c00233{bottom:477.900000px;}
.y19_c00233{bottom:481.680000px;}
.y18_c00233{bottom:484.110000px;}
.y16_c00233{bottom:497.340000px;}
.y17_c00233{bottom:500.040000px;}
.y15_c00233{bottom:524.070000px;}
.y13_c00233{bottom:531.360000px;}
.y14_c00233{bottom:534.870000px;}
.y12_c00233{bottom:584.820000px;}
.y11_c00233{bottom:591.840000px;}
.y9_c00233{bottom:598.863000px;}
.ya_c00233{bottom:599.369430px;}
.yb_c00233{bottom:600.447270px;}
.ye_c00233{bottom:601.560000px;}
.y10_c00233{bottom:603.720000px;}
.yf_c00233{bottom:607.770000px;}
.yc_c00233{bottom:608.298600px;}
.yd_c00233{bottom:614.790000px;}
.y7_c00233{bottom:625.065000px;}
.y8_c00233{bottom:626.334984px;}
.y4_c00233{bottom:629.640000px;}
.y5_c00233{bottom:632.340000px;}
.y6_c00233{bottom:634.770000px;}
.y3_c00233{bottom:668.250000px;}
.y1_c00233{bottom:674.730000px;}
.y2_c00233{bottom:675.540000px;}
.h7_c00233{height:12.000000px;}
.h6_c00233{height:18.000000px;}
.h1_c00233{height:24.000000px;}
.h2_c00233{height:30.000000px;}
.h8_c00233{height:36.000000px;}
.h3_c00233{height:42.000000px;}
.ha_c00233{height:48.000000px;}
.h9_c00233{height:60.000000px;}
.h5_c00233{height:60.006750px;}
.hb_c00233{height:108.015605px;}
.h4_c00233{height:258.033022px;}
.hc_c00233{height:312.039933px;}
.h0_c00233{height:682.500000px;}
.w0_c00233{width:937.440000px;}
.w1_c00233{width:937.500000px;}
.x0_c00233{left:0.000000px;}
.x6_c00233{left:33.924000px;}
.x5_c00233{left:80.281500px;}
.x7_c00233{left:105.780000px;}
.xb_c00233{left:135.142500px;}
.xc_c00233{left:161.542500px;}
.xd_c00233{left:314.962500px;}
.xe_c00233{left:411.316500px;}
.xf_c00233{left:523.978500px;}
.x10_c00233{left:594.958500px;}
.x8_c00233{left:629.202000px;}
.x11_c00233{left:749.670000px;}
.x9_c00233{left:916.380000px;}
.x1_c00233{left:918.000000px;}
.xa_c00233{left:921.510000px;}
.x4_c00233{left:923.400000px;}
.x2_c00233{left:924.480000px;}
.x3_c00233{left:927.180000px;}
@media print{
.v0_c00233{vertical-align:0.000000pt;}
.ls0_c00233{letter-spacing:0.000000pt;}
.ws0_c00233{word-spacing:0.000000pt;}
.fs6_c00233{font-size:10.666667pt;}
.fs5_c00233{font-size:16.000000pt;}
.fs0_c00233{font-size:21.333333pt;}
.fs1_c00233{font-size:26.666667pt;}
.fs7_c00233{font-size:32.000000pt;}
.fs2_c00233{font-size:37.333333pt;}
.fs9_c00233{font-size:42.666667pt;}
.fs8_c00233{font-size:53.333333pt;}
.fs4_c00233{font-size:53.339333pt;}
.fsa_c00233{font-size:96.013871pt;}
.fs3_c00233{font-size:229.362686pt;}
.fsb_c00233{font-size:277.368830pt;}
.y0_c00233{bottom:0.000000pt;}
.y21_c00233{bottom:68.649333pt;}
.y22_c00233{bottom:70.831307pt;}
.y23_c00233{bottom:72.201675pt;}
.y24_c00233{bottom:73.803979pt;}
.y25_c00233{bottom:74.813472pt;}
.y26_c00233{bottom:77.013813pt;}
.y1f_c00233{bottom:126.485333pt;}
.y20_c00233{bottom:128.522069pt;}
.y1e_c00233{bottom:407.281333pt;}
.y1d_c00233{bottom:415.201333pt;}
.y1c_c00233{bottom:421.680000pt;}
.y1a_c00233{bottom:421.920000pt;}
.y1b_c00233{bottom:424.800000pt;}
.y19_c00233{bottom:428.160000pt;}
.y18_c00233{bottom:430.320000pt;}
.y16_c00233{bottom:442.080000pt;}
.y17_c00233{bottom:444.480000pt;}
.y15_c00233{bottom:465.840000pt;}
.y13_c00233{bottom:472.320000pt;}
.y14_c00233{bottom:475.440000pt;}
.y12_c00233{bottom:519.840000pt;}
.y11_c00233{bottom:526.080000pt;}
.y9_c00233{bottom:532.322667pt;}
.ya_c00233{bottom:532.772827pt;}
.yb_c00233{bottom:533.730907pt;}
.ye_c00233{bottom:534.720000pt;}
.y10_c00233{bottom:536.640000pt;}
.yf_c00233{bottom:540.240000pt;}
.yc_c00233{bottom:540.709867pt;}
.yd_c00233{bottom:546.480000pt;}
.y7_c00233{bottom:555.613333pt;}
.y8_c00233{bottom:556.742208pt;}
.y4_c00233{bottom:559.680000pt;}
.y5_c00233{bottom:562.080000pt;}
.y6_c00233{bottom:564.240000pt;}
.y3_c00233{bottom:594.000000pt;}
.y1_c00233{bottom:599.760000pt;}
.y2_c00233{bottom:600.480000pt;}
.h7_c00233{height:10.666667pt;}
.h6_c00233{height:16.000000pt;}
.h1_c00233{height:21.333333pt;}
.h2_c00233{height:26.666667pt;}
.h8_c00233{height:32.000000pt;}
.h3_c00233{height:37.333333pt;}
.ha_c00233{height:42.666667pt;}
.h9_c00233{height:53.333333pt;}
.h5_c00233{height:53.339333pt;}
.hb_c00233{height:96.013871pt;}
.h4_c00233{height:229.362686pt;}
.hc_c00233{height:277.368830pt;}
.h0_c00233{height:606.666667pt;}
.w0_c00233{width:833.280000pt;}
.w1_c00233{width:833.333333pt;}
.x0_c00233{left:0.000000pt;}
.x6_c00233{left:30.154667pt;}
.x5_c00233{left:71.361333pt;}
.x7_c00233{left:94.026667pt;}
.xb_c00233{left:120.126667pt;}
.xc_c00233{left:143.593333pt;}
.xd_c00233{left:279.966667pt;}
.xe_c00233{left:365.614667pt;}
.xf_c00233{left:465.758667pt;}
.x10_c00233{left:528.852000pt;}
.x8_c00233{left:559.290667pt;}
.x11_c00233{left:666.373333pt;}
.x9_c00233{left:814.560000pt;}
.x1_c00233{left:816.000000pt;}
.xa_c00233{left:819.120000pt;}
.x4_c00233{left:820.800000pt;}
.x2_c00233{left:821.760000pt;}
.x3_c00233{left:824.160000pt;}
}





/* 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_c00234 {
    display:none;
  }
  .loading-indicator_c00234.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00234 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_c00234 { 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_c00234" -> "#page-container .classname_c00234")
 */
.pf_c00234 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00234 { /* 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_c00234.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00234 { /* 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_c00234 { /* 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_c00234 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00234 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00234 {overflow:visible;}
  }
}
.c_c00234 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00234 { /* 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_c00234:after { /* webkit #35443 */
  content: '';
}
.t_c00234:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00234 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 */
}
.__c00234 { /* 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_c00234 { /* info for Javascript */
  display:none;
}
.l_c00234 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00234 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00234 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00234: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_c00234 {
    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_c00234.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00234.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_c00234 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00234{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00234;src:url('chunks/assets/font_74d7e987f08e4505b74f4479.woff2')format("woff");}.ff1_c00234{font-family:ff1_c00234;line-height:1.000000;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;}
.m33_c00234{transform:matrix(0.011839,0.000142,-0.003000,0.249982,0,0);-ms-transform:matrix(0.011839,0.000142,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.011839,0.000142,-0.003000,0.249982,0,0);}
.m3b_c00234{transform:matrix(0.021215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021215,0.000000,0.000000,0.250000,0,0);}
.m41_c00234{transform:matrix(0.023715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.023715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.023715,0.000000,0.000000,0.250000,0,0);}
.m3d_c00234{transform:matrix(0.027040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.027040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.027040,0.000000,0.000000,0.250000,0,0);}
.m36_c00234{transform:matrix(0.031820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.031820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.031820,0.000000,0.000000,0.250000,0,0);}
.m3e_c00234{transform:matrix(0.040390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.040390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.040390,0.000000,0.000000,0.250000,0,0);}
.m3f_c00234{transform:matrix(0.043730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.043730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.043730,0.000000,0.000000,0.250000,0,0);}
.m38_c00234{transform:matrix(0.053035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.053035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.053035,0.000000,0.000000,0.250000,0,0);}
.m25_c00234{transform:matrix(0.054050,-0.001459,0.006748,0.249909,0,0);-ms-transform:matrix(0.054050,-0.001459,0.006748,0.249909,0,0);-webkit-transform:matrix(0.054050,-0.001459,0.006748,0.249909,0,0);}
.m39_c00234{transform:matrix(0.070755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.070755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.070755,0.000000,0.000000,0.250000,0,0);}
.m15_c00234{transform:matrix(0.072025,-0.001224,0.004249,0.249964,0,0);-ms-transform:matrix(0.072025,-0.001224,0.004249,0.249964,0,0);-webkit-transform:matrix(0.072025,-0.001224,0.004249,0.249964,0,0);}
.m4f_c00234{transform:matrix(0.073825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.073825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.073825,0.000000,0.000000,0.250000,0,0);}
.m52_c00234{transform:matrix(0.081125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.081125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.081125,0.000000,0.000000,0.250000,0,0);}
.m4b_c00234{transform:matrix(0.111495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111495,0.000000,0.000000,0.250000,0,0);}
.m50_c00234{transform:matrix(0.131195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131195,0.000000,0.000000,0.250000,0,0);}
.m27_c00234{transform:matrix(0.137760,-0.003720,0.006748,0.249909,0,0);-ms-transform:matrix(0.137760,-0.003720,0.006748,0.249909,0,0);-webkit-transform:matrix(0.137760,-0.003720,0.006748,0.249909,0,0);}
.m42_c00234{transform:matrix(0.144850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144850,0.000000,0.000000,0.250000,0,0);}
.m19_c00234{transform:matrix(0.163410,-0.004412,0.006748,0.249909,0,0);-ms-transform:matrix(0.163410,-0.004412,0.006748,0.249909,0,0);-webkit-transform:matrix(0.163410,-0.004412,0.006748,0.249909,0,0);}
.m44_c00234{transform:matrix(0.178885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178885,0.000000,0.000000,0.250000,0,0);}
.m3a_c00234{transform:matrix(0.198115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198115,0.000000,0.000000,0.250000,0,0);}
.m3_c00234{transform:matrix(0.203586,-0.003461,0.004249,0.249964,0,0);-ms-transform:matrix(0.203586,-0.003461,0.004249,0.249964,0,0);-webkit-transform:matrix(0.203586,-0.003461,0.004249,0.249964,0,0);}
.m34_c00234{transform:matrix(0.224799,0.002698,-0.003000,0.249982,0,0);-ms-transform:matrix(0.224799,0.002698,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.224799,0.002698,-0.003000,0.249982,0,0);}
.m31_c00234{transform:matrix(0.232778,0.002793,-0.003000,0.249982,0,0);-ms-transform:matrix(0.232778,0.002793,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.232778,0.002793,-0.003000,0.249982,0,0);}
.m3c_c00234{transform:matrix(0.233975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233975,0.000000,0.000000,0.250000,0,0);}
.m49_c00234{transform:matrix(0.237540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237540,0.000000,0.000000,0.250000,0,0);}
.m37_c00234{transform:matrix(0.263785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263785,0.000000,0.000000,0.250000,0,0);}
.m1f_c00234{transform:matrix(0.276689,-0.007471,0.006748,0.249909,0,0);-ms-transform:matrix(0.276689,-0.007471,0.006748,0.249909,0,0);-webkit-transform:matrix(0.276689,-0.007471,0.006748,0.249909,0,0);}
.m11_c00234{transform:matrix(0.277450,-0.004717,0.004249,0.249964,0,0);-ms-transform:matrix(0.277450,-0.004717,0.004249,0.249964,0,0);-webkit-transform:matrix(0.277450,-0.004717,0.004249,0.249964,0,0);}
.m47_c00234{transform:matrix(0.285975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285975,0.000000,0.000000,0.250000,0,0);}
.m2c_c00234{transform:matrix(0.286716,-0.007741,0.006748,0.249909,0,0);-ms-transform:matrix(0.286716,-0.007741,0.006748,0.249909,0,0);-webkit-transform:matrix(0.286716,-0.007741,0.006748,0.249909,0,0);}
.m48_c00234{transform:matrix(0.287455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287455,0.000000,0.000000,0.250000,0,0);}
.m24_c00234{transform:matrix(0.293028,-0.007912,0.006748,0.249909,0,0);-ms-transform:matrix(0.293028,-0.007912,0.006748,0.249909,0,0);-webkit-transform:matrix(0.293028,-0.007912,0.006748,0.249909,0,0);}
.m12_c00234{transform:matrix(0.297132,-0.005051,0.004249,0.249964,0,0);-ms-transform:matrix(0.297132,-0.005051,0.004249,0.249964,0,0);-webkit-transform:matrix(0.297132,-0.005051,0.004249,0.249964,0,0);}
.m9_c00234{transform:matrix(0.303191,-0.005154,0.004249,0.249964,0,0);-ms-transform:matrix(0.303191,-0.005154,0.004249,0.249964,0,0);-webkit-transform:matrix(0.303191,-0.005154,0.004249,0.249964,0,0);}
.m32_c00234{transform:matrix(0.304458,0.003653,-0.003000,0.249982,0,0);-ms-transform:matrix(0.304458,0.003653,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.304458,0.003653,-0.003000,0.249982,0,0);}
.m8_c00234{transform:matrix(0.305396,-0.005192,0.004249,0.249964,0,0);-ms-transform:matrix(0.305396,-0.005192,0.004249,0.249964,0,0);-webkit-transform:matrix(0.305396,-0.005192,0.004249,0.249964,0,0);}
.mf_c00234{transform:matrix(0.306186,-0.005205,0.004249,0.249964,0,0);-ms-transform:matrix(0.306186,-0.005205,0.004249,0.249964,0,0);-webkit-transform:matrix(0.306186,-0.005205,0.004249,0.249964,0,0);}
.m1e_c00234{transform:matrix(0.307643,-0.008306,0.006748,0.249909,0,0);-ms-transform:matrix(0.307643,-0.008306,0.006748,0.249909,0,0);-webkit-transform:matrix(0.307643,-0.008306,0.006748,0.249909,0,0);}
.m40_c00234{transform:matrix(0.324350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324350,0.000000,0.000000,0.250000,0,0);}
.m4e_c00234{transform:matrix(0.324935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324935,0.000000,0.000000,0.250000,0,0);}
.m2f_c00234{transform:matrix(0.334298,-0.009026,0.006748,0.249909,0,0);-ms-transform:matrix(0.334298,-0.009026,0.006748,0.249909,0,0);-webkit-transform:matrix(0.334298,-0.009026,0.006748,0.249909,0,0);}
.ma_c00234{transform:matrix(0.353594,-0.006011,0.004249,0.249964,0,0);-ms-transform:matrix(0.353594,-0.006011,0.004249,0.249964,0,0);-webkit-transform:matrix(0.353594,-0.006011,0.004249,0.249964,0,0);}
.m30_c00234{transform:matrix(0.355455,-0.009597,0.006748,0.249909,0,0);-ms-transform:matrix(0.355455,-0.009597,0.006748,0.249909,0,0);-webkit-transform:matrix(0.355455,-0.009597,0.006748,0.249909,0,0);}
.m2b_c00234{transform:matrix(0.357490,-0.009652,0.006748,0.249909,0,0);-ms-transform:matrix(0.357490,-0.009652,0.006748,0.249909,0,0);-webkit-transform:matrix(0.357490,-0.009652,0.006748,0.249909,0,0);}
.m4a_c00234{transform:matrix(0.365780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365780,0.000000,0.000000,0.250000,0,0);}
.m5_c00234{transform:matrix(0.370356,-0.006296,0.004249,0.249964,0,0);-ms-transform:matrix(0.370356,-0.006296,0.004249,0.249964,0,0);-webkit-transform:matrix(0.370356,-0.006296,0.004249,0.249964,0,0);}
.m6_c00234{transform:matrix(0.393698,-0.006693,0.004249,0.249964,0,0);-ms-transform:matrix(0.393698,-0.006693,0.004249,0.249964,0,0);-webkit-transform:matrix(0.393698,-0.006693,0.004249,0.249964,0,0);}
.m2d_c00234{transform:matrix(0.397300,-0.010727,0.006748,0.249909,0,0);-ms-transform:matrix(0.397300,-0.010727,0.006748,0.249909,0,0);-webkit-transform:matrix(0.397300,-0.010727,0.006748,0.249909,0,0);}
.m43_c00234{transform:matrix(0.401310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401310,0.000000,0.000000,0.250000,0,0);}
.m26_c00234{transform:matrix(0.411350,-0.011106,0.006748,0.249909,0,0);-ms-transform:matrix(0.411350,-0.011106,0.006748,0.249909,0,0);-webkit-transform:matrix(0.411350,-0.011106,0.006748,0.249909,0,0);}
.m18_c00234{transform:matrix(0.441651,-0.007508,0.004249,0.249964,0,0);-ms-transform:matrix(0.441651,-0.007508,0.004249,0.249964,0,0);-webkit-transform:matrix(0.441651,-0.007508,0.004249,0.249964,0,0);}
.m10_c00234{transform:matrix(0.444136,-0.007550,0.004249,0.249964,0,0);-ms-transform:matrix(0.444136,-0.007550,0.004249,0.249964,0,0);-webkit-transform:matrix(0.444136,-0.007550,0.004249,0.249964,0,0);}
.m20_c00234{transform:matrix(0.447767,-0.012090,0.006748,0.249909,0,0);-ms-transform:matrix(0.447767,-0.012090,0.006748,0.249909,0,0);-webkit-transform:matrix(0.447767,-0.012090,0.006748,0.249909,0,0);}
.m1d_c00234{transform:matrix(0.459088,-0.012395,0.006748,0.249909,0,0);-ms-transform:matrix(0.459088,-0.012395,0.006748,0.249909,0,0);-webkit-transform:matrix(0.459088,-0.012395,0.006748,0.249909,0,0);}
.m35_c00234{transform:matrix(0.472610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472610,0.000000,0.000000,0.250000,0,0);}
.me_c00234{transform:matrix(0.479176,-0.008146,0.004249,0.249964,0,0);-ms-transform:matrix(0.479176,-0.008146,0.004249,0.249964,0,0);-webkit-transform:matrix(0.479176,-0.008146,0.004249,0.249964,0,0);}
.m46_c00234{transform:matrix(0.482455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482455,0.000000,0.000000,0.250000,0,0);}
.mc_c00234{transform:matrix(0.486040,-0.008263,0.004249,0.249964,0,0);-ms-transform:matrix(0.486040,-0.008263,0.004249,0.249964,0,0);-webkit-transform:matrix(0.486040,-0.008263,0.004249,0.249964,0,0);}
.m2e_c00234{transform:matrix(0.503122,-0.013584,0.006748,0.249909,0,0);-ms-transform:matrix(0.503122,-0.013584,0.006748,0.249909,0,0);-webkit-transform:matrix(0.503122,-0.013584,0.006748,0.249909,0,0);}
.m29_c00234{transform:matrix(0.512368,-0.013834,0.006748,0.249909,0,0);-ms-transform:matrix(0.512368,-0.013834,0.006748,0.249909,0,0);-webkit-transform:matrix(0.512368,-0.013834,0.006748,0.249909,0,0);}
.m4d_c00234{transform:matrix(0.516235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516235,0.000000,0.000000,0.250000,0,0);}
.m4_c00234{transform:matrix(0.533498,-0.009069,0.004249,0.249964,0,0);-ms-transform:matrix(0.533498,-0.009069,0.004249,0.249964,0,0);-webkit-transform:matrix(0.533498,-0.009069,0.004249,0.249964,0,0);}
.m1_c00234{transform:matrix(0.534038,-0.009079,0.004249,0.249964,0,0);-ms-transform:matrix(0.534038,-0.009079,0.004249,0.249964,0,0);-webkit-transform:matrix(0.534038,-0.009079,0.004249,0.249964,0,0);}
.m22_c00234{transform:matrix(0.536300,-0.014480,0.006748,0.249909,0,0);-ms-transform:matrix(0.536300,-0.014480,0.006748,0.249909,0,0);-webkit-transform:matrix(0.536300,-0.014480,0.006748,0.249909,0,0);}
.m17_c00234{transform:matrix(0.568188,-0.009659,0.004249,0.249964,0,0);-ms-transform:matrix(0.568188,-0.009659,0.004249,0.249964,0,0);-webkit-transform:matrix(0.568188,-0.009659,0.004249,0.249964,0,0);}
.m23_c00234{transform:matrix(0.572661,-0.015462,0.006748,0.249909,0,0);-ms-transform:matrix(0.572661,-0.015462,0.006748,0.249909,0,0);-webkit-transform:matrix(0.572661,-0.015462,0.006748,0.249909,0,0);}
.m0_c00234{transform:matrix(0.591020,-0.010047,0.004249,0.249964,0,0);-ms-transform:matrix(0.591020,-0.010047,0.004249,0.249964,0,0);-webkit-transform:matrix(0.591020,-0.010047,0.004249,0.249964,0,0);}
.m4c_c00234{transform:matrix(0.592925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592925,0.000000,0.000000,0.250000,0,0);}
.mb_c00234{transform:matrix(0.596864,-0.010147,0.004249,0.249964,0,0);-ms-transform:matrix(0.596864,-0.010147,0.004249,0.249964,0,0);-webkit-transform:matrix(0.596864,-0.010147,0.004249,0.249964,0,0);}
.m28_c00234{transform:matrix(0.619209,-0.016719,0.006748,0.249909,0,0);-ms-transform:matrix(0.619209,-0.016719,0.006748,0.249909,0,0);-webkit-transform:matrix(0.619209,-0.016719,0.006748,0.249909,0,0);}
.m45_c00234{transform:matrix(0.630755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630755,0.000000,0.000000,0.250000,0,0);}
.md_c00234{transform:matrix(0.640078,-0.010881,0.004249,0.249964,0,0);-ms-transform:matrix(0.640078,-0.010881,0.004249,0.249964,0,0);-webkit-transform:matrix(0.640078,-0.010881,0.004249,0.249964,0,0);}
.m14_c00234{transform:matrix(0.652406,-0.011091,0.004249,0.249964,0,0);-ms-transform:matrix(0.652406,-0.011091,0.004249,0.249964,0,0);-webkit-transform:matrix(0.652406,-0.011091,0.004249,0.249964,0,0);}
.m1b_c00234{transform:matrix(0.712335,-0.019233,0.006748,0.249909,0,0);-ms-transform:matrix(0.712335,-0.019233,0.006748,0.249909,0,0);-webkit-transform:matrix(0.712335,-0.019233,0.006748,0.249909,0,0);}
.m13_c00234{transform:matrix(0.727510,-0.012368,0.004249,0.249964,0,0);-ms-transform:matrix(0.727510,-0.012368,0.004249,0.249964,0,0);-webkit-transform:matrix(0.727510,-0.012368,0.004249,0.249964,0,0);}
.m51_c00234{transform:matrix(0.740110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.740110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.740110,0.000000,0.000000,0.250000,0,0);}
.m1c_c00234{transform:matrix(0.749612,-0.020240,0.006748,0.249909,0,0);-ms-transform:matrix(0.749612,-0.020240,0.006748,0.249909,0,0);-webkit-transform:matrix(0.749612,-0.020240,0.006748,0.249909,0,0);}
.m2a_c00234{transform:matrix(0.844087,-0.022790,0.006748,0.249909,0,0);-ms-transform:matrix(0.844087,-0.022790,0.006748,0.249909,0,0);-webkit-transform:matrix(0.844087,-0.022790,0.006748,0.249909,0,0);}
.m2_c00234{transform:matrix(1.561609,-0.026547,0.004249,0.249964,0,0);-ms-transform:matrix(1.561609,-0.026547,0.004249,0.249964,0,0);-webkit-transform:matrix(1.561609,-0.026547,0.004249,0.249964,0,0);}
.m16_c00234{transform:matrix(1.586956,-0.026978,0.004249,0.249964,0,0);-ms-transform:matrix(1.586956,-0.026978,0.004249,0.249964,0,0);-webkit-transform:matrix(1.586956,-0.026978,0.004249,0.249964,0,0);}
.m1a_c00234{transform:matrix(1.698226,-0.045852,0.006748,0.249909,0,0);-ms-transform:matrix(1.698226,-0.045852,0.006748,0.249909,0,0);-webkit-transform:matrix(1.698226,-0.045852,0.006748,0.249909,0,0);}
.m21_c00234{transform:matrix(2.064613,-0.055745,0.006748,0.249909,0,0);-ms-transform:matrix(2.064613,-0.055745,0.006748,0.249909,0,0);-webkit-transform:matrix(2.064613,-0.055745,0.006748,0.249909,0,0);}
.m7_c00234{transform:matrix(2.339217,-0.039767,0.004249,0.249964,0,0);-ms-transform:matrix(2.339217,-0.039767,0.004249,0.249964,0,0);-webkit-transform:matrix(2.339217,-0.039767,0.004249,0.249964,0,0);}
.v0_c00234{vertical-align:0.000000px;}
.ls0_c00234{letter-spacing:0.000000px;}
.sc__c00234{text-shadow:none;}
.sc0_c00234{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__c00234{-webkit-text-stroke:0px transparent;}
.sc0_c00234{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00234{word-spacing:0.000000px;}
._1_c00234{width:1898.632307px;}
._0_c00234{width:2114.718028px;}
.fc0_c00234{color:transparent;}
.fs9_c00234{font-size:12.000000px;}
.fs8_c00234{font-size:36.000000px;}
.fs2_c00234{font-size:72.010403px;}
.fs0_c00234{font-size:78.011270px;}
.fs4_c00234{font-size:78.028426px;}
.fs1_c00234{font-size:84.012137px;}
.fs5_c00234{font-size:102.037172px;}
.fs6_c00234{font-size:114.008208px;}
.fs7_c00234{font-size:150.000000px;}
.fs3_c00234{font-size:186.067785px;}
.y0_c00234{bottom:0.000000px;}
.y47_c00234{bottom:3.364500px;}
.y46_c00234{bottom:7.390500px;}
.y38_c00234{bottom:12.420000px;}
.y39_c00234{bottom:12.600000px;}
.y3a_c00234{bottom:12.780000px;}
.y3b_c00234{bottom:13.006500px;}
.y3c_c00234{bottom:13.321500px;}
.y3d_c00234{bottom:13.530000px;}
.y3e_c00234{bottom:13.807500px;}
.y3f_c00234{bottom:13.995000px;}
.y40_c00234{bottom:14.016000px;}
.y41_c00234{bottom:14.374500px;}
.y42_c00234{bottom:14.506500px;}
.y43_c00234{bottom:14.835000px;}
.y44_c00234{bottom:14.988000px;}
.y45_c00234{bottom:15.678000px;}
.y37_c00234{bottom:21.912000px;}
.y36_c00234{bottom:26.608500px;}
.y35_c00234{bottom:43.965000px;}
.y34_c00234{bottom:88.141542px;}
.y33_c00234{bottom:91.492062px;}
.y32_c00234{bottom:96.386982px;}
.y31_c00234{bottom:96.630000px;}
.y30_c00234{bottom:127.961789px;}
.y2f_c00234{bottom:128.623251px;}
.y2e_c00234{bottom:129.728166px;}
.y2d_c00234{bottom:130.378449px;}
.y2c_c00234{bottom:130.991253px;}
.y2b_c00234{bottom:131.768610px;}
.y2a_c00234{bottom:133.093161px;}
.y29_c00234{bottom:135.738315px;}
.y28_c00234{bottom:136.187946px;}
.y27_c00234{bottom:196.965531px;}
.y26_c00234{bottom:197.121897px;}
.y25_c00234{bottom:197.266752px;}
.y24_c00234{bottom:198.121028px;}
.y23_c00234{bottom:198.773502px;}
.y22_c00234{bottom:199.389446px;}
.y21_c00234{bottom:200.077961px;}
.y20_c00234{bottom:200.452605px;}
.y1f_c00234{bottom:200.997080px;}
.y1e_c00234{bottom:201.461457px;}
.y1d_c00234{bottom:202.006337px;}
.y1c_c00234{bottom:203.965139px;}
.y19_c00234{bottom:267.075000px;}
.y1a_c00234{bottom:270.570920px;}
.y1b_c00234{bottom:280.458306px;}
.y13_c00234{bottom:372.035484px;}
.y17_c00234{bottom:372.035487px;}
.y14_c00234{bottom:372.035751px;}
.y15_c00234{bottom:372.035997px;}
.y18_c00234{bottom:372.036049px;}
.y16_c00234{bottom:372.036138px;}
.ya_c00234{bottom:466.541832px;}
.yb_c00234{bottom:467.362488px;}
.yc_c00234{bottom:468.989808px;}
.yd_c00234{bottom:470.136456px;}
.ye_c00234{bottom:471.466623px;}
.yf_c00234{bottom:473.067046px;}
.y10_c00234{bottom:473.862982px;}
.y11_c00234{bottom:475.074050px;}
.y12_c00234{bottom:476.202867px;}
.y4_c00234{bottom:503.546095px;}
.y5_c00234{bottom:505.561642px;}
.y6_c00234{bottom:507.987472px;}
.y7_c00234{bottom:508.578606px;}
.y8_c00234{bottom:510.163697px;}
.y9_c00234{bottom:512.324717px;}
.y1_c00234{bottom:534.019500px;}
.y2_c00234{bottom:535.783029px;}
.y3_c00234{bottom:536.256895px;}
.ha_c00234{height:12.000000px;}
.h9_c00234{height:36.000000px;}
.h3_c00234{height:72.010403px;}
.h1_c00234{height:78.011270px;}
.h5_c00234{height:78.028426px;}
.h2_c00234{height:84.012137px;}
.h6_c00234{height:102.037172px;}
.h7_c00234{height:114.008208px;}
.h8_c00234{height:150.000000px;}
.h4_c00234{height:186.067785px;}
.h0_c00234{height:682.500000px;}
.w0_c00234{width:937.440000px;}
.w1_c00234{width:937.500000px;}
.x0_c00234{left:0.000000px;}
.x10_c00234{left:8.099741px;}
.x1_c00234{left:10.495500px;}
.x4_c00234{left:39.733345px;}
.x3b_c00234{left:45.120000px;}
.x19_c00234{left:57.752681px;}
.x47_c00234{left:68.580000px;}
.x3c_c00234{left:70.809000px;}
.x11_c00234{left:72.369305px;}
.x35_c00234{left:76.680000px;}
.x31_c00234{left:86.940000px;}
.x24_c00234{left:96.231862px;}
.x2_c00234{left:114.232500px;}
.x32_c00234{left:115.830000px;}
.x3d_c00234{left:128.820000px;}
.x17_c00234{left:140.619000px;}
.x3_c00234{left:142.107000px;}
.x30_c00234{left:151.470000px;}
.x3e_c00234{left:173.902500px;}
.x48_c00234{left:189.000000px;}
.x4a_c00234{left:193.050000px;}
.x2c_c00234{left:203.076000px;}
.x49_c00234{left:215.730000px;}
.x33_c00234{left:217.080000px;}
.x2d_c00234{left:223.327500px;}
.x5_c00234{left:241.348341px;}
.x3f_c00234{left:243.289500px;}
.xa_c00234{left:261.897319px;}
.x36_c00234{left:262.980000px;}
.x40_c00234{left:270.060000px;}
.x41_c00234{left:273.000000px;}
.x37_c00234{left:292.950000px;}
.x1a_c00234{left:302.657936px;}
.x42_c00234{left:324.289500px;}
.x38_c00234{left:328.590000px;}
.x43_c00234{left:343.177500px;}
.xb_c00234{left:366.151953px;}
.x12_c00234{left:367.792653px;}
.x1b_c00234{left:370.763750px;}
.x44_c00234{left:390.181500px;}
.x25_c00234{left:405.585715px;}
.x45_c00234{left:412.072500px;}
.x34_c00234{left:418.500000px;}
.x1c_c00234{left:428.786046px;}
.x6_c00234{left:483.867182px;}
.x39_c00234{left:484.920000px;}
.xc_c00234{left:487.115295px;}
.x1d_c00234{left:496.906860px;}
.x18_c00234{left:506.818500px;}
.x46_c00234{left:510.583500px;}
.x3a_c00234{left:532.710000px;}
.x26_c00234{left:538.104988px;}
.x7_c00234{left:542.999719px;}
.x13_c00234{left:554.119484px;}
.x27_c00234{left:615.891627px;}
.x1e_c00234{left:629.933951px;}
.x2e_c00234{left:631.237500px;}
.xd_c00234{left:632.625636px;}
.x14_c00234{left:633.780510px;}
.x28_c00234{left:677.200822px;}
.x8_c00234{left:701.465064px;}
.xe_c00234{left:705.041031px;}
.x1f_c00234{left:706.916148px;}
.x29_c00234{left:742.236744px;}
.x15_c00234{left:783.382733px;}
.x20_c00234{left:788.549719px;}
.xf_c00234{left:815.203276px;}
.x16_c00234{left:834.960125px;}
.x2a_c00234{left:852.702025px;}
.x21_c00234{left:895.344064px;}
.x2f_c00234{left:910.447500px;}
.x22_c00234{left:913.496196px;}
.x9_c00234{left:917.550768px;}
.x2b_c00234{left:918.880581px;}
.x23_c00234{left:933.056664px;}
@media print{
.v0_c00234{vertical-align:0.000000pt;}
.ls0_c00234{letter-spacing:0.000000pt;}
.ws0_c00234{word-spacing:0.000000pt;}
._1_c00234{width:1687.673162pt;}
._0_c00234{width:1879.749358pt;}
.fs9_c00234{font-size:10.666667pt;}
.fs8_c00234{font-size:32.000000pt;}
.fs2_c00234{font-size:64.009247pt;}
.fs0_c00234{font-size:69.343351pt;}
.fs4_c00234{font-size:69.358601pt;}
.fs1_c00234{font-size:74.677455pt;}
.fs5_c00234{font-size:90.699709pt;}
.fs6_c00234{font-size:101.340629pt;}
.fs7_c00234{font-size:133.333333pt;}
.fs3_c00234{font-size:165.393586pt;}
.y0_c00234{bottom:0.000000pt;}
.y47_c00234{bottom:2.990667pt;}
.y46_c00234{bottom:6.569333pt;}
.y38_c00234{bottom:11.040000pt;}
.y39_c00234{bottom:11.200000pt;}
.y3a_c00234{bottom:11.360000pt;}
.y3b_c00234{bottom:11.561333pt;}
.y3c_c00234{bottom:11.841333pt;}
.y3d_c00234{bottom:12.026667pt;}
.y3e_c00234{bottom:12.273333pt;}
.y3f_c00234{bottom:12.440000pt;}
.y40_c00234{bottom:12.458667pt;}
.y41_c00234{bottom:12.777333pt;}
.y42_c00234{bottom:12.894667pt;}
.y43_c00234{bottom:13.186667pt;}
.y44_c00234{bottom:13.322667pt;}
.y45_c00234{bottom:13.936000pt;}
.y37_c00234{bottom:19.477333pt;}
.y36_c00234{bottom:23.652000pt;}
.y35_c00234{bottom:39.080000pt;}
.y34_c00234{bottom:78.348037pt;}
.y33_c00234{bottom:81.326277pt;}
.y32_c00234{bottom:85.677317pt;}
.y31_c00234{bottom:85.893333pt;}
.y30_c00234{bottom:113.743812pt;}
.y2f_c00234{bottom:114.331779pt;}
.y2e_c00234{bottom:115.313925pt;}
.y2d_c00234{bottom:115.891955pt;}
.y2c_c00234{bottom:116.436669pt;}
.y2b_c00234{bottom:117.127653pt;}
.y2a_c00234{bottom:118.305032pt;}
.y29_c00234{bottom:120.656280pt;}
.y28_c00234{bottom:121.055952pt;}
.y27_c00234{bottom:175.080472pt;}
.y26_c00234{bottom:175.219464pt;}
.y25_c00234{bottom:175.348224pt;}
.y24_c00234{bottom:176.107580pt;}
.y23_c00234{bottom:176.687557pt;}
.y22_c00234{bottom:177.235063pt;}
.y21_c00234{bottom:177.847076pt;}
.y20_c00234{bottom:178.180093pt;}
.y1f_c00234{bottom:178.664071pt;}
.y1e_c00234{bottom:179.076851pt;}
.y1d_c00234{bottom:179.561188pt;}
.y1c_c00234{bottom:181.302345pt;}
.y19_c00234{bottom:237.400000pt;}
.y1a_c00234{bottom:240.507484pt;}
.y1b_c00234{bottom:249.296272pt;}
.y13_c00234{bottom:330.698208pt;}
.y17_c00234{bottom:330.698211pt;}
.y14_c00234{bottom:330.698445pt;}
.y15_c00234{bottom:330.698664pt;}
.y18_c00234{bottom:330.698711pt;}
.y16_c00234{bottom:330.698789pt;}
.ya_c00234{bottom:414.703851pt;}
.yb_c00234{bottom:415.433323pt;}
.yc_c00234{bottom:416.879829pt;}
.yd_c00234{bottom:417.899072pt;}
.ye_c00234{bottom:419.081443pt;}
.yf_c00234{bottom:420.504041pt;}
.y10_c00234{bottom:421.211540pt;}
.y11_c00234{bottom:422.288044pt;}
.y12_c00234{bottom:423.291437pt;}
.y4_c00234{bottom:447.596529pt;}
.y5_c00234{bottom:449.388127pt;}
.y6_c00234{bottom:451.544420pt;}
.y7_c00234{bottom:452.069872pt;}
.y8_c00234{bottom:453.478841pt;}
.y9_c00234{bottom:455.399748pt;}
.y1_c00234{bottom:474.684000pt;}
.y2_c00234{bottom:476.251581pt;}
.y3_c00234{bottom:476.672796pt;}
.ha_c00234{height:10.666667pt;}
.h9_c00234{height:32.000000pt;}
.h3_c00234{height:64.009247pt;}
.h1_c00234{height:69.343351pt;}
.h5_c00234{height:69.358601pt;}
.h2_c00234{height:74.677455pt;}
.h6_c00234{height:90.699709pt;}
.h7_c00234{height:101.340629pt;}
.h8_c00234{height:133.333333pt;}
.h4_c00234{height:165.393586pt;}
.h0_c00234{height:606.666667pt;}
.w0_c00234{width:833.280000pt;}
.w1_c00234{width:833.333333pt;}
.x0_c00234{left:0.000000pt;}
.x10_c00234{left:7.199769pt;}
.x1_c00234{left:9.329333pt;}
.x4_c00234{left:35.318529pt;}
.x3b_c00234{left:40.106667pt;}
.x19_c00234{left:51.335716pt;}
.x47_c00234{left:60.960000pt;}
.x3c_c00234{left:62.941333pt;}
.x11_c00234{left:64.328271pt;}
.x35_c00234{left:68.160000pt;}
.x31_c00234{left:77.280000pt;}
.x24_c00234{left:85.539433pt;}
.x2_c00234{left:101.540000pt;}
.x32_c00234{left:102.960000pt;}
.x3d_c00234{left:114.506667pt;}
.x17_c00234{left:124.994667pt;}
.x3_c00234{left:126.317333pt;}
.x30_c00234{left:134.640000pt;}
.x3e_c00234{left:154.580000pt;}
.x48_c00234{left:168.000000pt;}
.x4a_c00234{left:171.600000pt;}
.x2c_c00234{left:180.512000pt;}
.x49_c00234{left:191.760000pt;}
.x33_c00234{left:192.960000pt;}
.x2d_c00234{left:198.513333pt;}
.x5_c00234{left:214.531859pt;}
.x3f_c00234{left:216.257333pt;}
.xa_c00234{left:232.797617pt;}
.x36_c00234{left:233.760000pt;}
.x40_c00234{left:240.053333pt;}
.x41_c00234{left:242.666667pt;}
.x37_c00234{left:260.400000pt;}
.x1a_c00234{left:269.029276pt;}
.x42_c00234{left:288.257333pt;}
.x38_c00234{left:292.080000pt;}
.x43_c00234{left:305.046667pt;}
.xb_c00234{left:325.468403pt;}
.x12_c00234{left:326.926803pt;}
.x1b_c00234{left:329.567777pt;}
.x44_c00234{left:346.828000pt;}
.x25_c00234{left:360.520636pt;}
.x45_c00234{left:366.286667pt;}
.x34_c00234{left:372.000000pt;}
.x1c_c00234{left:381.143152pt;}
.x6_c00234{left:430.104161pt;}
.x39_c00234{left:431.040000pt;}
.xc_c00234{left:432.991373pt;}
.x1d_c00234{left:441.694987pt;}
.x18_c00234{left:450.505333pt;}
.x46_c00234{left:453.852000pt;}
.x3a_c00234{left:473.520000pt;}
.x26_c00234{left:478.315545pt;}
.x7_c00234{left:482.666417pt;}
.x13_c00234{left:492.550652pt;}
.x27_c00234{left:547.459224pt;}
.x1e_c00234{left:559.941289pt;}
.x2e_c00234{left:561.100000pt;}
.xd_c00234{left:562.333899pt;}
.x14_c00234{left:563.360453pt;}
.x28_c00234{left:601.956287pt;}
.x8_c00234{left:623.524501pt;}
.xe_c00234{left:626.703139pt;}
.x1f_c00234{left:628.369909pt;}
.x29_c00234{left:659.765995pt;}
.x15_c00234{left:696.340207pt;}
.x20_c00234{left:700.933084pt;}
.xf_c00234{left:724.625135pt;}
.x16_c00234{left:742.186777pt;}
.x2a_c00234{left:757.957356pt;}
.x21_c00234{left:795.861391pt;}
.x2f_c00234{left:809.286667pt;}
.x22_c00234{left:811.996619pt;}
.x9_c00234{left:815.600683pt;}
.x2b_c00234{left:816.782739pt;}
.x23_c00234{left:829.383701pt;}
}





/* 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_c00235 {
    display:none;
  }
  .loading-indicator_c00235.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00235 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_c00235 { 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_c00235" -> "#page-container .classname_c00235")
 */
.pf_c00235 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00235 { /* 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_c00235.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00235 { /* 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_c00235 { /* 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_c00235 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00235 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00235 {overflow:visible;}
  }
}
.c_c00235 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00235 { /* 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_c00235:after { /* webkit #35443 */
  content: '';
}
.t_c00235:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00235 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 */
}
.__c00235 { /* 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_c00235 { /* info for Javascript */
  display:none;
}
.l_c00235 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00235 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00235 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00235: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_c00235 {
    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_c00235.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00235.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_c00235 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00235{font-family:sans-serif;visibility:hidden;}
.sc__c00235{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00235{-webkit-text-stroke:0px transparent;}
}
.y0_c00235{bottom:0.000000px;}
.h0_c00235{height:682.500000px;}
.w0_c00235{width:937.440000px;}
.w1_c00235{width:937.500000px;}
.x0_c00235{left:0.000000px;}
@media print{
.y0_c00235{bottom:0.000000pt;}
.h0_c00235{height:606.666667pt;}
.w0_c00235{width:833.280000pt;}
.w1_c00235{width:833.333333pt;}
.x0_c00235{left:0.000000pt;}
}





/* 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_c00236 {
    display:none;
  }
  .loading-indicator_c00236.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00236 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_c00236 { 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_c00236" -> "#page-container .classname_c00236")
 */
.pf_c00236 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00236 { /* 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_c00236.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00236 { /* 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_c00236 { /* 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_c00236 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00236 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00236 {overflow:visible;}
  }
}
.c_c00236 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00236 { /* 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_c00236:after { /* webkit #35443 */
  content: '';
}
.t_c00236:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00236 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 */
}
.__c00236 { /* 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_c00236 { /* info for Javascript */
  display:none;
}
.l_c00236 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00236 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00236 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00236: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_c00236 {
    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_c00236.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00236.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_c00236 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00236{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00236;src:url('chunks/assets/font_fe3cd3c6b9706b260f6e1774.woff2')format("woff");}.ff1_c00236{font-family:ff1_c00236;line-height:1.000000;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;}
.m0_c00236{transform:matrix(0.250120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250120,0.000000,0.000000,0.250000,0,0);}
.m1_c00236{transform:matrix(0.274660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274660,0.000000,0.000000,0.250000,0,0);}
.m3_c00236{transform:matrix(0.289950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289950,0.000000,0.000000,0.250000,0,0);}
.m2_c00236{transform:matrix(0.306070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306070,0.000000,0.000000,0.250000,0,0);}
.m4_c00236{transform:matrix(0.309290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309290,0.000000,0.000000,0.250000,0,0);}
.v0_c00236{vertical-align:0.000000px;}
.ls0_c00236{letter-spacing:0.000000px;}
.sc__c00236{text-shadow:none;}
.sc0_c00236{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__c00236{-webkit-text-stroke:0px transparent;}
.sc0_c00236{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00236{word-spacing:0.000000px;}
.fc0_c00236{color:transparent;}
.fs0_c00236{font-size:102.000000px;}
.y0_c00236{bottom:0.000000px;}
.y2_c00236{bottom:488.707500px;}
.y3_c00236{bottom:490.582500px;}
.y4_c00236{bottom:493.177500px;}
.y1_c00236{bottom:537.069000px;}
.h1_c00236{height:102.000000px;}
.h0_c00236{height:682.500000px;}
.w0_c00236{width:937.440000px;}
.w1_c00236{width:937.500000px;}
.x0_c00236{left:0.000000px;}
.x3_c00236{left:308.739000px;}
.x1_c00236{left:399.330000px;}
.x4_c00236{left:412.944000px;}
.x2_c00236{left:524.880000px;}
.x5_c00236{left:557.149500px;}
@media print{
.v0_c00236{vertical-align:0.000000pt;}
.ls0_c00236{letter-spacing:0.000000pt;}
.ws0_c00236{word-spacing:0.000000pt;}
.fs0_c00236{font-size:90.666667pt;}
.y0_c00236{bottom:0.000000pt;}
.y2_c00236{bottom:434.406667pt;}
.y3_c00236{bottom:436.073333pt;}
.y4_c00236{bottom:438.380000pt;}
.y1_c00236{bottom:477.394667pt;}
.h1_c00236{height:90.666667pt;}
.h0_c00236{height:606.666667pt;}
.w0_c00236{width:833.280000pt;}
.w1_c00236{width:833.333333pt;}
.x0_c00236{left:0.000000pt;}
.x3_c00236{left:274.434667pt;}
.x1_c00236{left:354.960000pt;}
.x4_c00236{left:367.061333pt;}
.x2_c00236{left:466.560000pt;}
.x5_c00236{left:495.244000pt;}
}





/* 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_c00237 {
    display:none;
  }
  .loading-indicator_c00237.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00237 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_c00237 { 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_c00237" -> "#page-container .classname_c00237")
 */
.pf_c00237 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00237 { /* 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_c00237.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00237 { /* 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_c00237 { /* 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_c00237 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00237 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00237 {overflow:visible;}
  }
}
.c_c00237 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00237 { /* 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_c00237:after { /* webkit #35443 */
  content: '';
}
.t_c00237:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00237 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 */
}
.__c00237 { /* 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_c00237 { /* info for Javascript */
  display:none;
}
.l_c00237 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00237 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00237 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00237: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_c00237 {
    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_c00237.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00237.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_c00237 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00237{font-family:sans-serif;visibility:hidden;}
.sc__c00237{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00237{-webkit-text-stroke:0px transparent;}
}
.y0_c00237{bottom:0.000000px;}
.h0_c00237{height:682.500000px;}
.w1_c00237{width:950.250000px;}
.w0_c00237{width:950.400000px;}
.x0_c00237{left:0.000000px;}
@media print{
.y0_c00237{bottom:0.000000pt;}
.h0_c00237{height:606.666667pt;}
.w1_c00237{width:844.666667pt;}
.w0_c00237{width:844.800000pt;}
.x0_c00237{left:0.000000pt;}
}





/* 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_c00238 {
    display:none;
  }
  .loading-indicator_c00238.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00238 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_c00238 { 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_c00238" -> "#page-container .classname_c00238")
 */
.pf_c00238 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00238 { /* 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_c00238.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00238 { /* 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_c00238 { /* 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_c00238 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00238 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00238 {overflow:visible;}
  }
}
.c_c00238 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00238 { /* 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_c00238:after { /* webkit #35443 */
  content: '';
}
.t_c00238:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00238 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 */
}
.__c00238 { /* 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_c00238 { /* info for Javascript */
  display:none;
}
.l_c00238 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00238 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00238 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00238: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_c00238 {
    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_c00238.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00238.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_c00238 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00238{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00238;src:url('chunks/assets/font_59dc3ab2e04ed21d4ac9992b.woff2')format("woff");}.ff1_c00238{font-family:ff1_c00238;line-height:1.000000;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;}
.m0_c00238{transform:matrix(0.009790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.009790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.009790,0.000000,0.000000,0.250000,0,0);}
.m1_c00238{transform:matrix(0.297555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297555,0.000000,0.000000,0.250000,0,0);}
.m2_c00238{transform:matrix(0.319415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319415,0.000000,0.000000,0.250000,0,0);}
.v0_c00238{vertical-align:0.000000px;}
.ls0_c00238{letter-spacing:0.000000px;}
.sc__c00238{text-shadow:none;}
.sc0_c00238{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__c00238{-webkit-text-stroke:0px transparent;}
.sc0_c00238{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00238{word-spacing:0.000000px;}
.fc0_c00238{color:transparent;}
.fs0_c00238{font-size:156.000000px;}
.y0_c00238{bottom:0.000000px;}
.y1_c00238{bottom:478.443000px;}
.h1_c00238{height:156.000000px;}
.h0_c00238{height:682.500000px;}
.w1_c00238{width:950.250000px;}
.w0_c00238{width:950.400000px;}
.x0_c00238{left:0.000000px;}
.x1_c00238{left:224.640000px;}
.x2_c00238{left:361.530000px;}
.x3_c00238{left:480.600000px;}
@media print{
.v0_c00238{vertical-align:0.000000pt;}
.ls0_c00238{letter-spacing:0.000000pt;}
.ws0_c00238{word-spacing:0.000000pt;}
.fs0_c00238{font-size:138.666667pt;}
.y0_c00238{bottom:0.000000pt;}
.y1_c00238{bottom:425.282667pt;}
.h1_c00238{height:138.666667pt;}
.h0_c00238{height:606.666667pt;}
.w1_c00238{width:844.666667pt;}
.w0_c00238{width:844.800000pt;}
.x0_c00238{left:0.000000pt;}
.x1_c00238{left:199.680000pt;}
.x2_c00238{left:321.360000pt;}
.x3_c00238{left:427.200000pt;}
}





/* 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_c00239 {
    display:none;
  }
  .loading-indicator_c00239.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00239 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_c00239 { 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_c00239" -> "#page-container .classname_c00239")
 */
.pf_c00239 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00239 { /* 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_c00239.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00239 { /* 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_c00239 { /* 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_c00239 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00239 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00239 {overflow:visible;}
  }
}
.c_c00239 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00239 { /* 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_c00239:after { /* webkit #35443 */
  content: '';
}
.t_c00239:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00239 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 */
}
.__c00239 { /* 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_c00239 { /* info for Javascript */
  display:none;
}
.l_c00239 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00239 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00239 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00239: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_c00239 {
    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_c00239.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00239.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_c00239 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00239{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00239;src:url('chunks/assets/font_fe3cd3c6b9706b260f6e1774.woff2')format("woff");}.ff1_c00239{font-family:ff1_c00239;line-height:1.000000;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;}
.m1f_c00239{transform:matrix(0.000198,0.198225,-0.250000,0.000250,0,0);-ms-transform:matrix(0.000198,0.198225,-0.250000,0.000250,0,0);-webkit-transform:matrix(0.000198,0.198225,-0.250000,0.000250,0,0);}
.m20_c00239{transform:matrix(0.000361,0.360770,-0.250000,0.000250,0,0);-ms-transform:matrix(0.000361,0.360770,-0.250000,0.000250,0,0);-webkit-transform:matrix(0.000361,0.360770,-0.250000,0.000250,0,0);}
.m17_c00239{transform:matrix(0.000893,0.297679,-0.249999,0.000750,0,0);-ms-transform:matrix(0.000893,0.297679,-0.249999,0.000750,0,0);-webkit-transform:matrix(0.000893,0.297679,-0.249999,0.000750,0,0);}
.m5_c00239{transform:matrix(0.001453,0.103760,-0.249976,0.003500,0,0);-ms-transform:matrix(0.001453,0.103760,-0.249976,0.003500,0,0);-webkit-transform:matrix(0.001453,0.103760,-0.249976,0.003500,0,0);}
.m1b_c00239{transform:matrix(0.001604,0.089121,-0.249960,0.004499,0,0);-ms-transform:matrix(0.001604,0.089121,-0.249960,0.004499,0,0);-webkit-transform:matrix(0.001604,0.089121,-0.249960,0.004499,0,0);}
.ma_c00239{transform:matrix(0.002106,0.150430,-0.249976,0.003500,0,0);-ms-transform:matrix(0.002106,0.150430,-0.249976,0.003500,0,0);-webkit-transform:matrix(0.002106,0.150430,-0.249976,0.003500,0,0);}
.m7_c00239{transform:matrix(0.002284,0.163149,-0.249976,0.003500,0,0);-ms-transform:matrix(0.002284,0.163149,-0.249976,0.003500,0,0);-webkit-transform:matrix(0.002284,0.163149,-0.249976,0.003500,0,0);}
.m11_c00239{transform:matrix(0.002793,0.199495,-0.249976,0.003500,0,0);-ms-transform:matrix(0.002793,0.199495,-0.249976,0.003500,0,0);-webkit-transform:matrix(0.002793,0.199495,-0.249976,0.003500,0,0);}
.mb_c00239{transform:matrix(0.003049,0.217764,-0.249976,0.003500,0,0);-ms-transform:matrix(0.003049,0.217764,-0.249976,0.003500,0,0);-webkit-transform:matrix(0.003049,0.217764,-0.249976,0.003500,0,0);}
.m12_c00239{transform:matrix(0.003669,0.262059,-0.249976,0.003500,0,0);-ms-transform:matrix(0.003669,0.262059,-0.249976,0.003500,0,0);-webkit-transform:matrix(0.003669,0.262059,-0.249976,0.003500,0,0);}
.m16_c00239{transform:matrix(0.003885,0.168925,-0.249934,0.005748,0,0);-ms-transform:matrix(0.003885,0.168925,-0.249934,0.005748,0,0);-webkit-transform:matrix(0.003885,0.168925,-0.249934,0.005748,0,0);}
.m13_c00239{transform:matrix(0.004125,0.294671,-0.249976,0.003500,0,0);-ms-transform:matrix(0.004125,0.294671,-0.249976,0.003500,0,0);-webkit-transform:matrix(0.004125,0.294671,-0.249976,0.003500,0,0);}
.m14_c00239{transform:matrix(0.004210,0.183037,-0.249934,0.005748,0,0);-ms-transform:matrix(0.004210,0.183037,-0.249934,0.005748,0,0);-webkit-transform:matrix(0.004210,0.183037,-0.249934,0.005748,0,0);}
.m3_c00239{transform:matrix(0.004272,0.305110,-0.249976,0.003500,0,0);-ms-transform:matrix(0.004272,0.305110,-0.249976,0.003500,0,0);-webkit-transform:matrix(0.004272,0.305110,-0.249976,0.003500,0,0);}
.m1e_c00239{transform:matrix(0.004362,0.242321,-0.249960,0.004499,0,0);-ms-transform:matrix(0.004362,0.242321,-0.249960,0.004499,0,0);-webkit-transform:matrix(0.004362,0.242321,-0.249960,0.004499,0,0);}
.m1c_c00239{transform:matrix(0.004644,0.257993,-0.249960,0.004499,0,0);-ms-transform:matrix(0.004644,0.257993,-0.249960,0.004499,0,0);-webkit-transform:matrix(0.004644,0.257993,-0.249960,0.004499,0,0);}
.m10_c00239{transform:matrix(0.004765,0.340377,-0.249976,0.003500,0,0);-ms-transform:matrix(0.004765,0.340377,-0.249976,0.003500,0,0);-webkit-transform:matrix(0.004765,0.340377,-0.249976,0.003500,0,0);}
.m1_c00239{transform:matrix(0.004776,0.341117,-0.249976,0.003500,0,0);-ms-transform:matrix(0.004776,0.341117,-0.249976,0.003500,0,0);-webkit-transform:matrix(0.004776,0.341117,-0.249976,0.003500,0,0);}
.m2_c00239{transform:matrix(0.004794,0.342436,-0.249976,0.003500,0,0);-ms-transform:matrix(0.004794,0.342436,-0.249976,0.003500,0,0);-webkit-transform:matrix(0.004794,0.342436,-0.249976,0.003500,0,0);}
.m4_c00239{transform:matrix(0.005209,0.372064,-0.249976,0.003500,0,0);-ms-transform:matrix(0.005209,0.372064,-0.249976,0.003500,0,0);-webkit-transform:matrix(0.005209,0.372064,-0.249976,0.003500,0,0);}
.m15_c00239{transform:matrix(0.005280,0.229544,-0.249934,0.005748,0,0);-ms-transform:matrix(0.005280,0.229544,-0.249934,0.005748,0,0);-webkit-transform:matrix(0.005280,0.229544,-0.249934,0.005748,0,0);}
.m18_c00239{transform:matrix(0.005287,0.182298,-0.249895,0.007247,0,0);-ms-transform:matrix(0.005287,0.182298,-0.249895,0.007247,0,0);-webkit-transform:matrix(0.005287,0.182298,-0.249895,0.007247,0,0);}
.m6_c00239{transform:matrix(0.005354,0.382463,-0.249976,0.003500,0,0);-ms-transform:matrix(0.005354,0.382463,-0.249976,0.003500,0,0);-webkit-transform:matrix(0.005354,0.382463,-0.249976,0.003500,0,0);}
.m1a_c00239{transform:matrix(0.005533,0.190790,-0.249895,0.007247,0,0);-ms-transform:matrix(0.005533,0.190790,-0.249895,0.007247,0,0);-webkit-transform:matrix(0.005533,0.190790,-0.249895,0.007247,0,0);}
.m1d_c00239{transform:matrix(0.005992,0.332916,-0.249960,0.004499,0,0);-ms-transform:matrix(0.005992,0.332916,-0.249960,0.004499,0,0);-webkit-transform:matrix(0.005992,0.332916,-0.249960,0.004499,0,0);}
.m19_c00239{transform:matrix(0.006180,0.213110,-0.249895,0.007247,0,0);-ms-transform:matrix(0.006180,0.213110,-0.249895,0.007247,0,0);-webkit-transform:matrix(0.006180,0.213110,-0.249895,0.007247,0,0);}
.md_c00239{transform:matrix(0.006373,0.455190,-0.249976,0.003500,0,0);-ms-transform:matrix(0.006373,0.455190,-0.249976,0.003500,0,0);-webkit-transform:matrix(0.006373,0.455190,-0.249976,0.003500,0,0);}
.mc_c00239{transform:matrix(0.009156,0.653986,-0.249976,0.003500,0,0);-ms-transform:matrix(0.009156,0.653986,-0.249976,0.003500,0,0);-webkit-transform:matrix(0.009156,0.653986,-0.249976,0.003500,0,0);}
.me_c00239{transform:matrix(0.009902,0.707276,-0.249976,0.003500,0,0);-ms-transform:matrix(0.009902,0.707276,-0.249976,0.003500,0,0);-webkit-transform:matrix(0.009902,0.707276,-0.249976,0.003500,0,0);}
.m9_c00239{transform:matrix(0.011644,0.831698,-0.249976,0.003500,0,0);-ms-transform:matrix(0.011644,0.831698,-0.249976,0.003500,0,0);-webkit-transform:matrix(0.011644,0.831698,-0.249976,0.003500,0,0);}
.mf_c00239{transform:matrix(0.011972,0.855111,-0.249976,0.003500,0,0);-ms-transform:matrix(0.011972,0.855111,-0.249976,0.003500,0,0);-webkit-transform:matrix(0.011972,0.855111,-0.249976,0.003500,0,0);}
.m0_c00239{transform:matrix(0.012853,0.918095,-0.249976,0.003500,0,0);-ms-transform:matrix(0.012853,0.918095,-0.249976,0.003500,0,0);-webkit-transform:matrix(0.012853,0.918095,-0.249976,0.003500,0,0);}
.m8_c00239{transform:matrix(0.014532,1.038013,-0.249976,0.003500,0,0);-ms-transform:matrix(0.014532,1.038013,-0.249976,0.003500,0,0);-webkit-transform:matrix(0.014532,1.038013,-0.249976,0.003500,0,0);}
.v0_c00239{vertical-align:0.000000px;}
.ls0_c00239{letter-spacing:0.000000px;}
.sc__c00239{text-shadow:none;}
.sc0_c00239{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__c00239{-webkit-text-stroke:0px transparent;}
.sc0_c00239{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00239{word-spacing:0.000000px;}
.fc0_c00239{color:transparent;}
.fs9_c00239{font-size:84.013607px;}
.fs0_c00239{font-size:96.009408px;}
.fs3_c00239{font-size:108.010583px;}
.fsa_c00239{font-size:114.018467px;}
.fs5_c00239{font-size:132.012935px;}
.fs4_c00239{font-size:156.015287px;}
.fs8_c00239{font-size:174.073152px;}
.fs6_c00239{font-size:180.047604px;}
.fs1_c00239{font-size:186.018227px;}
.fs2_c00239{font-size:198.019403px;}
.fs7_c00239{font-size:336.001512px;}
.fsb_c00239{font-size:348.000174px;}
.y0_c00239{bottom:0.000000px;}
.y1b_c00239{bottom:19.266000px;}
.y1d_c00239{bottom:24.336000px;}
.y4_c00239{bottom:34.510500px;}
.y17_c00239{bottom:38.314500px;}
.y12_c00239{bottom:57.888675px;}
.y1f_c00239{bottom:80.421801px;}
.yc_c00239{bottom:119.326776px;}
.y8_c00239{bottom:136.907883px;}
.yb_c00239{bottom:144.085689px;}
.y11_c00239{bottom:145.089561px;}
.y3_c00239{bottom:157.431000px;}
.y21_c00239{bottom:174.420000px;}
.y1a_c00239{bottom:180.123000px;}
.y16_c00239{bottom:220.344000px;}
.y19_c00239{bottom:239.767500px;}
.y7_c00239{bottom:260.564283px;}
.y10_c00239{bottom:261.837360px;}
.y15_c00239{bottom:287.538000px;}
.y6_c00239{bottom:294.279339px;}
.y1c_c00239{bottom:324.000000px;}
.y1e_c00239{bottom:329.139588px;}
.y18_c00239{bottom:352.630500px;}
.y2_c00239{bottom:362.649000px;}
.yf_c00239{bottom:363.538734px;}
.ya_c00239{bottom:377.183583px;}
.y20_c00239{bottom:431.190000px;}
.ye_c00239{bottom:489.749046px;}
.y1_c00239{bottom:514.249500px;}
.y13_c00239{bottom:544.904853px;}
.yd_c00239{bottom:545.474229px;}
.y14_c00239{bottom:560.746515px;}
.y5_c00239{bottom:564.436308px;}
.y9_c00239{bottom:580.069257px;}
.ha_c00239{height:84.013607px;}
.h1_c00239{height:96.009408px;}
.h4_c00239{height:108.010583px;}
.hb_c00239{height:114.018467px;}
.h6_c00239{height:132.012935px;}
.h5_c00239{height:156.015287px;}
.h9_c00239{height:174.073152px;}
.h7_c00239{height:180.047604px;}
.h2_c00239{height:186.018227px;}
.h3_c00239{height:198.019403px;}
.h8_c00239{height:336.001512px;}
.hc_c00239{height:348.000174px;}
.h0_c00239{height:682.500000px;}
.w1_c00239{width:950.250000px;}
.w0_c00239{width:950.400000px;}
.x0_c00239{left:0.000000px;}
.x1b_c00239{left:82.889232px;}
.x19_c00239{left:96.120000px;}
.x1a_c00239{left:101.513952px;}
.x16_c00239{left:134.460000px;}
.x17_c00239{left:136.189690px;}
.x18_c00239{left:140.854544px;}
.x15_c00239{left:201.690000px;}
.x12_c00239{left:320.490000px;}
.x13_c00239{left:322.035462px;}
.x14_c00239{left:326.222141px;}
.x10_c00239{left:678.491862px;}
.x11_c00239{left:680.103438px;}
.xa_c00239{left:727.627521px;}
.xb_c00239{left:728.823255px;}
.xc_c00239{left:731.532384px;}
.xd_c00239{left:733.715352px;}
.xe_c00239{left:736.221492px;}
.xf_c00239{left:738.093432px;}
.x7_c00239{left:751.399944px;}
.x8_c00239{left:756.049698px;}
.x9_c00239{left:761.392476px;}
.x5_c00239{left:793.523517px;}
.x6_c00239{left:799.272600px;}
.x1_c00239{left:801.205500px;}
.x2_c00239{left:803.327907px;}
.x3_c00239{left:806.200959px;}
.x4_c00239{left:807.921846px;}
@media print{
.v0_c00239{vertical-align:0.000000pt;}
.ls0_c00239{letter-spacing:0.000000pt;}
.ws0_c00239{word-spacing:0.000000pt;}
.fs9_c00239{font-size:74.678762pt;}
.fs0_c00239{font-size:85.341696pt;}
.fs3_c00239{font-size:96.009408pt;}
.fsa_c00239{font-size:101.349748pt;}
.fs5_c00239{font-size:117.344831pt;}
.fs4_c00239{font-size:138.680255pt;}
.fs8_c00239{font-size:154.731690pt;}
.fs6_c00239{font-size:160.042314pt;}
.fs1_c00239{font-size:165.349535pt;}
.fs2_c00239{font-size:176.017247pt;}
.fs7_c00239{font-size:298.668011pt;}
.fsb_c00239{font-size:309.333488pt;}
.y0_c00239{bottom:0.000000pt;}
.y1b_c00239{bottom:17.125333pt;}
.y1d_c00239{bottom:21.632000pt;}
.y4_c00239{bottom:30.676000pt;}
.y17_c00239{bottom:34.057333pt;}
.y12_c00239{bottom:51.456600pt;}
.y1f_c00239{bottom:71.486045pt;}
.yc_c00239{bottom:106.068245pt;}
.y8_c00239{bottom:121.695896pt;}
.yb_c00239{bottom:128.076168pt;}
.y11_c00239{bottom:128.968499pt;}
.y3_c00239{bottom:139.938667pt;}
.y21_c00239{bottom:155.040000pt;}
.y1a_c00239{bottom:160.109333pt;}
.y16_c00239{bottom:195.861333pt;}
.y19_c00239{bottom:213.126667pt;}
.y7_c00239{bottom:231.612696pt;}
.y10_c00239{bottom:232.744320pt;}
.y15_c00239{bottom:255.589333pt;}
.y6_c00239{bottom:261.581635pt;}
.y1c_c00239{bottom:288.000000pt;}
.y1e_c00239{bottom:292.568523pt;}
.y18_c00239{bottom:313.449333pt;}
.y2_c00239{bottom:322.354667pt;}
.yf_c00239{bottom:323.145541pt;}
.ya_c00239{bottom:335.274296pt;}
.y20_c00239{bottom:383.280000pt;}
.ye_c00239{bottom:435.332485pt;}
.y1_c00239{bottom:457.110667pt;}
.y13_c00239{bottom:484.359869pt;}
.yd_c00239{bottom:484.865981pt;}
.y14_c00239{bottom:498.441347pt;}
.y5_c00239{bottom:501.721163pt;}
.y9_c00239{bottom:515.617117pt;}
.ha_c00239{height:74.678762pt;}
.h1_c00239{height:85.341696pt;}
.h4_c00239{height:96.009408pt;}
.hb_c00239{height:101.349748pt;}
.h6_c00239{height:117.344831pt;}
.h5_c00239{height:138.680255pt;}
.h9_c00239{height:154.731690pt;}
.h7_c00239{height:160.042314pt;}
.h2_c00239{height:165.349535pt;}
.h3_c00239{height:176.017247pt;}
.h8_c00239{height:298.668011pt;}
.hc_c00239{height:309.333488pt;}
.h0_c00239{height:606.666667pt;}
.w1_c00239{width:844.666667pt;}
.w0_c00239{width:844.800000pt;}
.x0_c00239{left:0.000000pt;}
.x1b_c00239{left:73.679317pt;}
.x19_c00239{left:85.440000pt;}
.x1a_c00239{left:90.234624pt;}
.x16_c00239{left:119.520000pt;}
.x17_c00239{left:121.057503pt;}
.x18_c00239{left:125.204039pt;}
.x15_c00239{left:179.280000pt;}
.x12_c00239{left:284.880000pt;}
.x13_c00239{left:286.253744pt;}
.x14_c00239{left:289.975236pt;}
.x10_c00239{left:603.103877pt;}
.x11_c00239{left:604.536389pt;}
.xa_c00239{left:646.780019pt;}
.xb_c00239{left:647.842893pt;}
.xc_c00239{left:650.251008pt;}
.xd_c00239{left:652.191424pt;}
.xe_c00239{left:654.419104pt;}
.xf_c00239{left:656.083051pt;}
.x7_c00239{left:667.911061pt;}
.x8_c00239{left:672.044176pt;}
.x9_c00239{left:676.793312pt;}
.x5_c00239{left:705.354237pt;}
.x6_c00239{left:710.464533pt;}
.x1_c00239{left:712.182667pt;}
.x2_c00239{left:714.069251pt;}
.x3_c00239{left:716.623075pt;}
.x4_c00239{left:718.152752pt;}
}





/* 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_c00240 {
    display:none;
  }
  .loading-indicator_c00240.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00240 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_c00240 { 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_c00240" -> "#page-container .classname_c00240")
 */
.pf_c00240 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00240 { /* 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_c00240.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00240 { /* 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_c00240 { /* 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_c00240 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00240 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00240 {overflow:visible;}
  }
}
.c_c00240 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00240 { /* 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_c00240:after { /* webkit #35443 */
  content: '';
}
.t_c00240:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00240 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 */
}
.__c00240 { /* 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_c00240 { /* info for Javascript */
  display:none;
}
.l_c00240 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00240 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00240 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00240: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_c00240 {
    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_c00240.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00240.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_c00240 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00240{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00240;src:url('chunks/assets/font_7c6b9abe6ee2a268480c528b.woff2')format("woff");}.ff1_c00240{font-family:ff1_c00240;line-height:1.000000;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;}
.mf_c00240{transform:matrix(0.012368,0.000223,-0.004499,0.249960,0,0);-ms-transform:matrix(0.012368,0.000223,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.012368,0.000223,-0.004499,0.249960,0,0);}
.m33_c00240{transform:matrix(0.025455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.025455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.025455,0.000000,0.000000,0.250000,0,0);}
.m32_c00240{transform:matrix(0.030515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.030515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.030515,0.000000,0.000000,0.250000,0,0);}
.m2a_c00240{transform:matrix(0.134738,0.002425,-0.004499,0.249960,0,0);-ms-transform:matrix(0.134738,0.002425,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.134738,0.002425,-0.004499,0.249960,0,0);}
.m3e_c00240{transform:matrix(0.141925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141925,0.000000,0.000000,0.250000,0,0);}
.m41_c00240{transform:matrix(0.156870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156870,0.000000,0.000000,0.250000,0,0);}
.m42_c00240{transform:matrix(0.181275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181275,0.000000,0.000000,0.250000,0,0);}
.m31_c00240{transform:matrix(0.184060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184060,0.000000,0.000000,0.250000,0,0);}
.m2c_c00240{transform:matrix(0.193184,0.003477,-0.004499,0.249960,0,0);-ms-transform:matrix(0.193184,0.003477,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.193184,0.003477,-0.004499,0.249960,0,0);}
.m43_c00240{transform:matrix(0.199935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199935,0.000000,0.000000,0.250000,0,0);}
.m14_c00240{transform:matrix(0.203657,0.003666,-0.004499,0.249960,0,0);-ms-transform:matrix(0.203657,0.003666,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.203657,0.003666,-0.004499,0.249960,0,0);}
.m28_c00240{transform:matrix(0.204037,0.003673,-0.004499,0.249960,0,0);-ms-transform:matrix(0.204037,0.003673,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.204037,0.003673,-0.004499,0.249960,0,0);}
.m3a_c00240{transform:matrix(0.211835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211835,0.000000,0.000000,0.250000,0,0);}
.m29_c00240{transform:matrix(0.218525,0.003933,-0.004499,0.249960,0,0);-ms-transform:matrix(0.218525,0.003933,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.218525,0.003933,-0.004499,0.249960,0,0);}
.m21_c00240{transform:matrix(0.224964,0.004049,-0.004499,0.249960,0,0);-ms-transform:matrix(0.224964,0.004049,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.224964,0.004049,-0.004499,0.249960,0,0);}
.m3f_c00240{transform:matrix(0.241355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241355,0.000000,0.000000,0.250000,0,0);}
.m17_c00240{transform:matrix(0.242706,0.004369,-0.004499,0.249960,0,0);-ms-transform:matrix(0.242706,0.004369,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.242706,0.004369,-0.004499,0.249960,0,0);}
.m44_c00240{transform:matrix(0.247425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247425,0.000000,0.000000,0.250000,0,0);}
.m36_c00240{transform:matrix(0.259600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259600,0.000000,0.000000,0.250000,0,0);}
.m2e_c00240{transform:matrix(0.260330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260330,0.000000,0.000000,0.250000,0,0);}
.m26_c00240{transform:matrix(0.261173,0.004701,-0.004499,0.249960,0,0);-ms-transform:matrix(0.261173,0.004701,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.261173,0.004701,-0.004499,0.249960,0,0);}
.m1b_c00240{transform:matrix(0.279685,0.005034,-0.004499,0.249960,0,0);-ms-transform:matrix(0.279685,0.005034,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.279685,0.005034,-0.004499,0.249960,0,0);}
.m2b_c00240{transform:matrix(0.282034,0.005077,-0.004499,0.249960,0,0);-ms-transform:matrix(0.282034,0.005077,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.282034,0.005077,-0.004499,0.249960,0,0);}
.m2f_c00240{transform:matrix(0.282965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282965,0.000000,0.000000,0.250000,0,0);}
.ma_c00240{transform:matrix(0.299239,0.006284,-0.005249,0.249945,0,0);-ms-transform:matrix(0.299239,0.006284,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.299239,0.006284,-0.005249,0.249945,0,0);}
.m40_c00240{transform:matrix(0.300855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300855,0.000000,0.000000,0.250000,0,0);}
.m25_c00240{transform:matrix(0.306375,0.005515,-0.004499,0.249960,0,0);-ms-transform:matrix(0.306375,0.005515,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.306375,0.005515,-0.004499,0.249960,0,0);}
.m12_c00240{transform:matrix(0.307100,0.005528,-0.004499,0.249960,0,0);-ms-transform:matrix(0.307100,0.005528,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.307100,0.005528,-0.004499,0.249960,0,0);}
.m3_c00240{transform:matrix(0.318600,0.006691,-0.005249,0.249945,0,0);-ms-transform:matrix(0.318600,0.006691,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.318600,0.006691,-0.005249,0.249945,0,0);}
.m15_c00240{transform:matrix(0.330581,0.005950,-0.004499,0.249960,0,0);-ms-transform:matrix(0.330581,0.005950,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.330581,0.005950,-0.004499,0.249960,0,0);}
.m6_c00240{transform:matrix(0.332677,0.006986,-0.005249,0.249945,0,0);-ms-transform:matrix(0.332677,0.006986,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.332677,0.006986,-0.005249,0.249945,0,0);}
.m22_c00240{transform:matrix(0.332991,0.005994,-0.004499,0.249960,0,0);-ms-transform:matrix(0.332991,0.005994,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.332991,0.005994,-0.004499,0.249960,0,0);}
.m3d_c00240{transform:matrix(0.338990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338990,0.000000,0.000000,0.250000,0,0);}
.m1_c00240{transform:matrix(0.348283,0.007314,-0.005249,0.249945,0,0);-ms-transform:matrix(0.348283,0.007314,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.348283,0.007314,-0.005249,0.249945,0,0);}
.m10_c00240{transform:matrix(0.354258,0.006377,-0.004499,0.249960,0,0);-ms-transform:matrix(0.354258,0.006377,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.354258,0.006377,-0.004499,0.249960,0,0);}
.m1a_c00240{transform:matrix(0.361616,0.006509,-0.004499,0.249960,0,0);-ms-transform:matrix(0.361616,0.006509,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.361616,0.006509,-0.004499,0.249960,0,0);}
.m2_c00240{transform:matrix(0.364290,0.007650,-0.005249,0.249945,0,0);-ms-transform:matrix(0.364290,0.007650,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.364290,0.007650,-0.005249,0.249945,0,0);}
.m30_c00240{transform:matrix(0.364300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364300,0.000000,0.000000,0.250000,0,0);}
.m4_c00240{transform:matrix(0.375517,0.007886,-0.005249,0.249945,0,0);-ms-transform:matrix(0.375517,0.007886,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.375517,0.007886,-0.005249,0.249945,0,0);}
.m35_c00240{transform:matrix(0.396940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396940,0.000000,0.000000,0.250000,0,0);}
.m0_c00240{transform:matrix(0.406535,0.008537,-0.005249,0.249945,0,0);-ms-transform:matrix(0.406535,0.008537,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.406535,0.008537,-0.005249,0.249945,0,0);}
.m39_c00240{transform:matrix(0.423810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423810,0.000000,0.000000,0.250000,0,0);}
.m16_c00240{transform:matrix(0.424526,0.007641,-0.004499,0.249960,0,0);-ms-transform:matrix(0.424526,0.007641,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.424526,0.007641,-0.004499,0.249960,0,0);}
.m7_c00240{transform:matrix(0.426791,0.008963,-0.005249,0.249945,0,0);-ms-transform:matrix(0.426791,0.008963,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.426791,0.008963,-0.005249,0.249945,0,0);}
.m19_c00240{transform:matrix(0.436959,0.007865,-0.004499,0.249960,0,0);-ms-transform:matrix(0.436959,0.007865,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.436959,0.007865,-0.004499,0.249960,0,0);}
.m5_c00240{transform:matrix(0.439388,0.009227,-0.005249,0.249945,0,0);-ms-transform:matrix(0.439388,0.009227,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.439388,0.009227,-0.005249,0.249945,0,0);}
.m18_c00240{transform:matrix(0.459391,0.008269,-0.004499,0.249960,0,0);-ms-transform:matrix(0.459391,0.008269,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.459391,0.008269,-0.004499,0.249960,0,0);}
.m9_c00240{transform:matrix(0.468647,0.009842,-0.005249,0.249945,0,0);-ms-transform:matrix(0.468647,0.009842,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.468647,0.009842,-0.005249,0.249945,0,0);}
.m11_c00240{transform:matrix(0.484047,0.008713,-0.004499,0.249960,0,0);-ms-transform:matrix(0.484047,0.008713,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.484047,0.008713,-0.004499,0.249960,0,0);}
.m3b_c00240{transform:matrix(0.502570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502570,0.000000,0.000000,0.250000,0,0);}
.m2d_c00240{transform:matrix(0.503818,0.009069,-0.004499,0.249960,0,0);-ms-transform:matrix(0.503818,0.009069,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.503818,0.009069,-0.004499,0.249960,0,0);}
.m20_c00240{transform:matrix(0.508453,0.009152,-0.004499,0.249960,0,0);-ms-transform:matrix(0.508453,0.009152,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.508453,0.009152,-0.004499,0.249960,0,0);}
.m8_c00240{transform:matrix(0.519900,0.010918,-0.005249,0.249945,0,0);-ms-transform:matrix(0.519900,0.010918,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.519900,0.010918,-0.005249,0.249945,0,0);}
.m27_c00240{transform:matrix(0.540347,0.009726,-0.004499,0.249960,0,0);-ms-transform:matrix(0.540347,0.009726,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.540347,0.009726,-0.004499,0.249960,0,0);}
.m23_c00240{transform:matrix(0.562139,0.010119,-0.004499,0.249960,0,0);-ms-transform:matrix(0.562139,0.010119,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.562139,0.010119,-0.004499,0.249960,0,0);}
.m1d_c00240{transform:matrix(0.590504,0.010629,-0.004499,0.249960,0,0);-ms-transform:matrix(0.590504,0.010629,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.590504,0.010629,-0.004499,0.249960,0,0);}
.m34_c00240{transform:matrix(0.594755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.594755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.594755,0.000000,0.000000,0.250000,0,0);}
.m37_c00240{transform:matrix(0.612740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612740,0.000000,0.000000,0.250000,0,0);}
.m3c_c00240{transform:matrix(0.614545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.614545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.614545,0.000000,0.000000,0.250000,0,0);}
.me_c00240{transform:matrix(0.625332,0.013132,-0.005249,0.249945,0,0);-ms-transform:matrix(0.625332,0.013132,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.625332,0.013132,-0.005249,0.249945,0,0);}
.m38_c00240{transform:matrix(0.628715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.628715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.628715,0.000000,0.000000,0.250000,0,0);}
.m24_c00240{transform:matrix(0.643641,0.011586,-0.004499,0.249960,0,0);-ms-transform:matrix(0.643641,0.011586,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.643641,0.011586,-0.004499,0.249960,0,0);}
.mb_c00240{transform:matrix(0.751489,0.015781,-0.005249,0.249945,0,0);-ms-transform:matrix(0.751489,0.015781,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.751489,0.015781,-0.005249,0.249945,0,0);}
.mc_c00240{transform:matrix(0.859006,0.018039,-0.005249,0.249945,0,0);-ms-transform:matrix(0.859006,0.018039,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.859006,0.018039,-0.005249,0.249945,0,0);}
.m1f_c00240{transform:matrix(0.893340,0.016080,-0.004499,0.249960,0,0);-ms-transform:matrix(0.893340,0.016080,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.893340,0.016080,-0.004499,0.249960,0,0);}
.md_c00240{transform:matrix(0.943767,0.019819,-0.005249,0.249945,0,0);-ms-transform:matrix(0.943767,0.019819,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.943767,0.019819,-0.005249,0.249945,0,0);}
.m1c_c00240{transform:matrix(1.047050,0.018847,-0.004499,0.249960,0,0);-ms-transform:matrix(1.047050,0.018847,-0.004499,0.249960,0,0);-webkit-transform:matrix(1.047050,0.018847,-0.004499,0.249960,0,0);}
.m13_c00240{transform:matrix(1.132537,0.020386,-0.004499,0.249960,0,0);-ms-transform:matrix(1.132537,0.020386,-0.004499,0.249960,0,0);-webkit-transform:matrix(1.132537,0.020386,-0.004499,0.249960,0,0);}
.m1e_c00240{transform:matrix(1.150279,0.020705,-0.004499,0.249960,0,0);-ms-transform:matrix(1.150279,0.020705,-0.004499,0.249960,0,0);-webkit-transform:matrix(1.150279,0.020705,-0.004499,0.249960,0,0);}
.v0_c00240{vertical-align:0.000000px;}
.ls0_c00240{letter-spacing:0.000000px;}
.sc__c00240{text-shadow:none;}
.sc0_c00240{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__c00240{-webkit-text-stroke:0px transparent;}
.sc0_c00240{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00240{word-spacing:0.000000px;}
.fc0_c00240{color:transparent;}
.fs6_c00240{font-size:60.000000px;}
.fs3_c00240{font-size:78.012635px;}
.fs2_c00240{font-size:90.014579px;}
.fs1_c00240{font-size:96.021166px;}
.fs0_c00240{font-size:102.022489px;}
.fs5_c00240{font-size:108.000000px;}
.fs4_c00240{font-size:174.028186px;}
.fs7_c00240{font-size:180.000000px;}
.y0_c00240{bottom:0.000000px;}
.y3a_c00240{bottom:63.958500px;}
.y39_c00240{bottom:192.394500px;}
.y38_c00240{bottom:193.026000px;}
.y37_c00240{bottom:193.338000px;}
.y36_c00240{bottom:194.140500px;}
.y35_c00240{bottom:194.820000px;}
.y34_c00240{bottom:195.406500px;}
.y33_c00240{bottom:195.564000px;}
.y32_c00240{bottom:196.855500px;}
.y31_c00240{bottom:198.372000px;}
.y30_c00240{bottom:199.260000px;}
.y2f_c00240{bottom:202.750500px;}
.y2e_c00240{bottom:220.709766px;}
.y2d_c00240{bottom:223.275120px;}
.y2c_c00240{bottom:227.069088px;}
.y2b_c00240{bottom:229.444227px;}
.y2a_c00240{bottom:232.264032px;}
.y29_c00240{bottom:234.015756px;}
.y28_c00240{bottom:240.637740px;}
.y27_c00240{bottom:242.277801px;}
.y26_c00240{bottom:243.842943px;}
.y25_c00240{bottom:260.418726px;}
.y24_c00240{bottom:262.449114px;}
.y23_c00240{bottom:265.087590px;}
.y22_c00240{bottom:265.756554px;}
.y21_c00240{bottom:267.851220px;}
.y20_c00240{bottom:270.064989px;}
.y1f_c00240{bottom:272.357850px;}
.y1e_c00240{bottom:274.653141px;}
.y1d_c00240{bottom:278.044710px;}
.y1c_c00240{bottom:278.873694px;}
.y1b_c00240{bottom:279.732642px;}
.y1a_c00240{bottom:280.536387px;}
.y19_c00240{bottom:307.378797px;}
.y18_c00240{bottom:308.358249px;}
.y17_c00240{bottom:309.911937px;}
.y16_c00240{bottom:311.282241px;}
.y15_c00240{bottom:311.909073px;}
.y14_c00240{bottom:313.893951px;}
.y13_c00240{bottom:314.867544px;}
.y12_c00240{bottom:315.822669px;}
.y11_c00240{bottom:316.696713px;}
.y10_c00240{bottom:318.327000px;}
.yf_c00240{bottom:337.191481px;}
.ye_c00240{bottom:339.987537px;}
.yd_c00240{bottom:343.229059px;}
.yc_c00240{bottom:345.593772px;}
.yb_c00240{bottom:346.826926px;}
.ya_c00240{bottom:348.427652px;}
.y9_c00240{bottom:350.479242px;}
.y8_c00240{bottom:373.545633px;}
.y7_c00240{bottom:376.102236px;}
.y6_c00240{bottom:377.431410px;}
.y5_c00240{bottom:378.569316px;}
.y4_c00240{bottom:383.597503px;}
.y3_c00240{bottom:386.062378px;}
.y2_c00240{bottom:387.717641px;}
.y1_c00240{bottom:390.184500px;}
.h7_c00240{height:60.000000px;}
.h4_c00240{height:78.012635px;}
.h3_c00240{height:90.014579px;}
.h2_c00240{height:96.021166px;}
.h1_c00240{height:102.022489px;}
.h6_c00240{height:108.000000px;}
.h5_c00240{height:174.028186px;}
.h8_c00240{height:180.000000px;}
.h0_c00240{height:682.500000px;}
.w1_c00240{width:950.250000px;}
.w0_c00240{width:950.400000px;}
.x0_c00240{left:0.000000px;}
.x36_c00240{left:38.070000px;}
.x1_c00240{left:44.518500px;}
.x9_c00240{left:48.985026px;}
.x18_c00240{left:50.751576px;}
.x19_c00240{left:82.900026px;}
.x24_c00240{left:112.060002px;}
.x1a_c00240{left:117.281706px;}
.x1b_c00240{left:150.415521px;}
.xa_c00240{left:156.970062px;}
.x2_c00240{left:161.988000px;}
.x25_c00240{left:177.666240px;}
.xf_c00240{left:228.010500px;}
.x2b_c00240{left:232.740000px;}
.x37_c00240{left:233.820000px;}
.x2e_c00240{left:238.398000px;}
.x3_c00240{left:240.810000px;}
.x1c_c00240{left:286.068930px;}
.xb_c00240{left:306.065799px;}
.x10_c00240{left:318.582000px;}
.x38_c00240{left:355.050000px;}
.x4_c00240{left:358.185000px;}
.x11_c00240{left:367.140000px;}
.x1d_c00240{left:377.906874px;}
.x12_c00240{left:420.202500px;}
.xc_c00240{left:430.533528px;}
.x26_c00240{left:442.520868px;}
.x2f_c00240{left:456.982500px;}
.x1e_c00240{left:469.609818px;}
.x13_c00240{left:474.291000px;}
.x27_c00240{left:512.580039px;}
.x39_c00240{left:522.180000px;}
.x1f_c00240{left:558.169167px;}
.x30_c00240{left:574.453500px;}
.x3a_c00240{left:580.770000px;}
.x14_c00240{left:584.562000px;}
.x31_c00240{left:588.826500px;}
.x5_c00240{left:597.622500px;}
.xd_c00240{left:601.113179px;}
.x15_c00240{left:619.386000px;}
.x28_c00240{left:625.388337px;}
.x20_c00240{left:641.945610px;}
.x6_c00240{left:651.808500px;}
.x21_c00240{left:668.690235px;}
.x3b_c00240{left:685.260000px;}
.x16_c00240{left:695.514000px;}
.x32_c00240{left:704.010000px;}
.x7_c00240{left:715.102500px;}
.x2c_c00240{left:716.310000px;}
.x29_c00240{left:720.411876px;}
.xe_c00240{left:748.264853px;}
.x3c_c00240{left:753.840000px;}
.x22_c00240{left:774.258951px;}
.x33_c00240{left:777.007500px;}
.x17_c00240{left:781.830000px;}
.x34_c00240{left:805.378500px;}
.x8_c00240{left:836.845500px;}
.x23_c00240{left:855.464718px;}
.x35_c00240{left:862.795500px;}
.x2d_c00240{left:870.480000px;}
.x2a_c00240{left:872.168760px;}
@media print{
.v0_c00240{vertical-align:0.000000pt;}
.ls0_c00240{letter-spacing:0.000000pt;}
.ws0_c00240{word-spacing:0.000000pt;}
.fs6_c00240{font-size:53.333333pt;}
.fs3_c00240{font-size:69.344564pt;}
.fs2_c00240{font-size:80.012959pt;}
.fs1_c00240{font-size:85.352147pt;}
.fs0_c00240{font-size:90.686656pt;}
.fs5_c00240{font-size:96.000000pt;}
.fs4_c00240{font-size:154.691721pt;}
.fs7_c00240{font-size:160.000000pt;}
.y0_c00240{bottom:0.000000pt;}
.y3a_c00240{bottom:56.852000pt;}
.y39_c00240{bottom:171.017333pt;}
.y38_c00240{bottom:171.578667pt;}
.y37_c00240{bottom:171.856000pt;}
.y36_c00240{bottom:172.569333pt;}
.y35_c00240{bottom:173.173333pt;}
.y34_c00240{bottom:173.694667pt;}
.y33_c00240{bottom:173.834667pt;}
.y32_c00240{bottom:174.982667pt;}
.y31_c00240{bottom:176.330667pt;}
.y30_c00240{bottom:177.120000pt;}
.y2f_c00240{bottom:180.222667pt;}
.y2e_c00240{bottom:196.186459pt;}
.y2d_c00240{bottom:198.466773pt;}
.y2c_c00240{bottom:201.839189pt;}
.y2b_c00240{bottom:203.950424pt;}
.y2a_c00240{bottom:206.456917pt;}
.y29_c00240{bottom:208.014005pt;}
.y28_c00240{bottom:213.900213pt;}
.y27_c00240{bottom:215.358045pt;}
.y26_c00240{bottom:216.749283pt;}
.y25_c00240{bottom:231.483312pt;}
.y24_c00240{bottom:233.288101pt;}
.y23_c00240{bottom:235.633413pt;}
.y22_c00240{bottom:236.228048pt;}
.y21_c00240{bottom:238.089973pt;}
.y20_c00240{bottom:240.057768pt;}
.y1f_c00240{bottom:242.095867pt;}
.y1e_c00240{bottom:244.136125pt;}
.y1d_c00240{bottom:247.150853pt;}
.y1c_c00240{bottom:247.887728pt;}
.y1b_c00240{bottom:248.651237pt;}
.y1a_c00240{bottom:249.365677pt;}
.y19_c00240{bottom:273.225597pt;}
.y18_c00240{bottom:274.096221pt;}
.y17_c00240{bottom:275.477277pt;}
.y16_c00240{bottom:276.695325pt;}
.y15_c00240{bottom:277.252509pt;}
.y14_c00240{bottom:279.016845pt;}
.y13_c00240{bottom:279.882261pt;}
.y12_c00240{bottom:280.731261pt;}
.y11_c00240{bottom:281.508189pt;}
.y10_c00240{bottom:282.957333pt;}
.yf_c00240{bottom:299.725761pt;}
.ye_c00240{bottom:302.211144pt;}
.yd_c00240{bottom:305.092497pt;}
.yc_c00240{bottom:307.194464pt;}
.yb_c00240{bottom:308.290601pt;}
.ya_c00240{bottom:309.713468pt;}
.y9_c00240{bottom:311.537104pt;}
.y8_c00240{bottom:332.040563pt;}
.y7_c00240{bottom:334.313099pt;}
.y6_c00240{bottom:335.494587pt;}
.y5_c00240{bottom:336.506059pt;}
.y4_c00240{bottom:340.975559pt;}
.y3_c00240{bottom:343.166559pt;}
.y2_c00240{bottom:344.637903pt;}
.y1_c00240{bottom:346.830667pt;}
.h7_c00240{height:53.333333pt;}
.h4_c00240{height:69.344564pt;}
.h3_c00240{height:80.012959pt;}
.h2_c00240{height:85.352147pt;}
.h1_c00240{height:90.686656pt;}
.h6_c00240{height:96.000000pt;}
.h5_c00240{height:154.691721pt;}
.h8_c00240{height:160.000000pt;}
.h0_c00240{height:606.666667pt;}
.w1_c00240{width:844.666667pt;}
.w0_c00240{width:844.800000pt;}
.x0_c00240{left:0.000000pt;}
.x36_c00240{left:33.840000pt;}
.x1_c00240{left:39.572000pt;}
.x9_c00240{left:43.542245pt;}
.x18_c00240{left:45.112512pt;}
.x19_c00240{left:73.688912pt;}
.x24_c00240{left:99.608891pt;}
.x1a_c00240{left:104.250405pt;}
.x1b_c00240{left:133.702685pt;}
.xa_c00240{left:139.528944pt;}
.x2_c00240{left:143.989333pt;}
.x25_c00240{left:157.925547pt;}
.xf_c00240{left:202.676000pt;}
.x2b_c00240{left:206.880000pt;}
.x37_c00240{left:207.840000pt;}
.x2e_c00240{left:211.909333pt;}
.x3_c00240{left:214.053333pt;}
.x1c_c00240{left:254.283493pt;}
.xb_c00240{left:272.058488pt;}
.x10_c00240{left:283.184000pt;}
.x38_c00240{left:315.600000pt;}
.x4_c00240{left:318.386667pt;}
.x11_c00240{left:326.346667pt;}
.x1d_c00240{left:335.917221pt;}
.x12_c00240{left:373.513333pt;}
.xc_c00240{left:382.696469pt;}
.x26_c00240{left:393.351883pt;}
.x2f_c00240{left:406.206667pt;}
.x1e_c00240{left:417.430949pt;}
.x13_c00240{left:421.592000pt;}
.x27_c00240{left:455.626701pt;}
.x39_c00240{left:464.160000pt;}
.x1f_c00240{left:496.150371pt;}
.x30_c00240{left:510.625333pt;}
.x3a_c00240{left:516.240000pt;}
.x14_c00240{left:519.610667pt;}
.x31_c00240{left:523.401333pt;}
.x5_c00240{left:531.220000pt;}
.xd_c00240{left:534.322825pt;}
.x15_c00240{left:550.565333pt;}
.x28_c00240{left:555.900744pt;}
.x20_c00240{left:570.618320pt;}
.x6_c00240{left:579.385333pt;}
.x21_c00240{left:594.391320pt;}
.x3b_c00240{left:609.120000pt;}
.x16_c00240{left:618.234667pt;}
.x32_c00240{left:625.786667pt;}
.x7_c00240{left:635.646667pt;}
.x2c_c00240{left:636.720000pt;}
.x29_c00240{left:640.366112pt;}
.xe_c00240{left:665.124313pt;}
.x3c_c00240{left:670.080000pt;}
.x22_c00240{left:688.230179pt;}
.x33_c00240{left:690.673333pt;}
.x17_c00240{left:694.960000pt;}
.x34_c00240{left:715.892000pt;}
.x8_c00240{left:743.862667pt;}
.x23_c00240{left:760.413083pt;}
.x35_c00240{left:766.929333pt;}
.x2d_c00240{left:773.760000pt;}
.x2a_c00240{left:775.261120pt;}
}





/* 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_c00241 {
    display:none;
  }
  .loading-indicator_c00241.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00241 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_c00241 { 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_c00241" -> "#page-container .classname_c00241")
 */
.pf_c00241 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00241 { /* 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_c00241.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00241 { /* 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_c00241 { /* 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_c00241 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00241 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00241 {overflow:visible;}
  }
}
.c_c00241 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00241 { /* 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_c00241:after { /* webkit #35443 */
  content: '';
}
.t_c00241:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00241 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 */
}
.__c00241 { /* 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_c00241 { /* info for Javascript */
  display:none;
}
.l_c00241 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00241 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00241 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00241: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_c00241 {
    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_c00241.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00241.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_c00241 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00241{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00241;src:url('chunks/assets/font_fe3cd3c6b9706b260f6e1774.woff2')format("woff");}.ff1_c00241{font-family:ff1_c00241;line-height:1.000000;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;}
.mb_c00241{transform:matrix(0.000023,-0.023190,0.250000,0.000250,0,0);-ms-transform:matrix(0.000023,-0.023190,0.250000,0.000250,0,0);-webkit-transform:matrix(0.000023,-0.023190,0.250000,0.000250,0,0);}
.mc_c00241{transform:matrix(0.000190,-0.189775,0.250000,0.000250,0,0);-ms-transform:matrix(0.000190,-0.189775,0.250000,0.000250,0,0);-webkit-transform:matrix(0.000190,-0.189775,0.250000,0.000250,0,0);}
.m6_c00241{transform:matrix(0.000214,-0.214195,0.250000,0.000250,0,0);-ms-transform:matrix(0.000214,-0.214195,0.250000,0.000250,0,0);-webkit-transform:matrix(0.000214,-0.214195,0.250000,0.000250,0,0);}
.m8_c00241{transform:matrix(0.000252,-0.252115,0.250000,0.000250,0,0);-ms-transform:matrix(0.000252,-0.252115,0.250000,0.000250,0,0);-webkit-transform:matrix(0.000252,-0.252115,0.250000,0.000250,0,0);}
.md_c00241{transform:matrix(0.000280,-0.280150,0.250000,0.000250,0,0);-ms-transform:matrix(0.000280,-0.280150,0.250000,0.000250,0,0);-webkit-transform:matrix(0.000280,-0.280150,0.250000,0.000250,0,0);}
.m4_c00241{transform:matrix(0.000296,-0.296465,0.250000,0.000250,0,0);-ms-transform:matrix(0.000296,-0.296465,0.250000,0.000250,0,0);-webkit-transform:matrix(0.000296,-0.296465,0.250000,0.000250,0,0);}
.m5_c00241{transform:matrix(0.000305,-0.304895,0.250000,0.000250,0,0);-ms-transform:matrix(0.000305,-0.304895,0.250000,0.000250,0,0);-webkit-transform:matrix(0.000305,-0.304895,0.250000,0.000250,0,0);}
.m0_c00241{transform:matrix(0.000324,-0.324500,0.250000,0.000250,0,0);-ms-transform:matrix(0.000324,-0.324500,0.250000,0.000250,0,0);-webkit-transform:matrix(0.000324,-0.324500,0.250000,0.000250,0,0);}
.ma_c00241{transform:matrix(0.000379,-0.379195,0.250000,0.000250,0,0);-ms-transform:matrix(0.000379,-0.379195,0.250000,0.000250,0,0);-webkit-transform:matrix(0.000379,-0.379195,0.250000,0.000250,0,0);}
.m7_c00241{transform:matrix(0.000395,-0.395075,0.250000,0.000250,0,0);-ms-transform:matrix(0.000395,-0.395075,0.250000,0.000250,0,0);-webkit-transform:matrix(0.000395,-0.395075,0.250000,0.000250,0,0);}
.m9_c00241{transform:matrix(0.000568,-0.567570,0.250000,0.000250,0,0);-ms-transform:matrix(0.000568,-0.567570,0.250000,0.000250,0,0);-webkit-transform:matrix(0.000568,-0.567570,0.250000,0.000250,0,0);}
.m2_c00241{transform:matrix(0.000685,-0.685420,0.250000,0.000250,0,0);-ms-transform:matrix(0.000685,-0.685420,0.250000,0.000250,0,0);-webkit-transform:matrix(0.000685,-0.685420,0.250000,0.000250,0,0);}
.m3_c00241{transform:matrix(0.000821,-0.820575,0.250000,0.000250,0,0);-ms-transform:matrix(0.000821,-0.820575,0.250000,0.000250,0,0);-webkit-transform:matrix(0.000821,-0.820575,0.250000,0.000250,0,0);}
.m1_c00241{transform:matrix(0.001575,-1.574924,0.250000,0.000250,0,0);-ms-transform:matrix(0.001575,-1.574924,0.250000,0.000250,0,0);-webkit-transform:matrix(0.001575,-1.574924,0.250000,0.000250,0,0);}
.v0_c00241{vertical-align:0.000000px;}
.ls0_c00241{letter-spacing:0.000000px;}
.sc__c00241{text-shadow:none;}
.sc0_c00241{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__c00241{-webkit-text-stroke:0px transparent;}
.sc0_c00241{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00241{word-spacing:0.000000px;}
.fc0_c00241{color:transparent;}
.fs0_c00241{font-size:48.000024px;}
.y0_c00241{bottom:0.000000px;}
.ye_c00241{bottom:122.850000px;}
.yd_c00241{bottom:184.945500px;}
.yc_c00241{bottom:226.530000px;}
.yb_c00241{bottom:260.286000px;}
.ya_c00241{bottom:371.520000px;}
.y9_c00241{bottom:429.840000px;}
.y8_c00241{bottom:453.060000px;}
.y7_c00241{bottom:480.600000px;}
.y6_c00241{bottom:539.190000px;}
.y5_c00241{bottom:574.290000px;}
.y4_c00241{bottom:680.400000px;}
.y3_c00241{bottom:720.085500px;}
.y2_c00241{bottom:841.320000px;}
.y1_c00241{bottom:862.645500px;}
.h2_c00241{height:48.000024px;}
.h1_c00241{height:952.500000px;}
.h0_c00241{height:952.800000px;}
.w0_c00241{width:682.500000px;}
.x0_c00241{left:0.000000px;}
.x1_c00241{left:673.921500px;}
@media print{
.v0_c00241{vertical-align:0.000000pt;}
.ls0_c00241{letter-spacing:0.000000pt;}
.ws0_c00241{word-spacing:0.000000pt;}
.fs0_c00241{font-size:42.666688pt;}
.y0_c00241{bottom:0.000000pt;}
.ye_c00241{bottom:109.200000pt;}
.yd_c00241{bottom:164.396000pt;}
.yc_c00241{bottom:201.360000pt;}
.yb_c00241{bottom:231.365333pt;}
.ya_c00241{bottom:330.240000pt;}
.y9_c00241{bottom:382.080000pt;}
.y8_c00241{bottom:402.720000pt;}
.y7_c00241{bottom:427.200000pt;}
.y6_c00241{bottom:479.280000pt;}
.y5_c00241{bottom:510.480000pt;}
.y4_c00241{bottom:604.800000pt;}
.y3_c00241{bottom:640.076000pt;}
.y2_c00241{bottom:747.840000pt;}
.y1_c00241{bottom:766.796000pt;}
.h2_c00241{height:42.666688pt;}
.h1_c00241{height:846.666667pt;}
.h0_c00241{height:846.933333pt;}
.w0_c00241{width:606.666667pt;}
.x0_c00241{left:0.000000pt;}
.x1_c00241{left:599.041333pt;}
}





/* 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_c00242 {
    display:none;
  }
  .loading-indicator_c00242.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00242 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_c00242 { 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_c00242" -> "#page-container .classname_c00242")
 */
.pf_c00242 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00242 { /* 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_c00242.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00242 { /* 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_c00242 { /* 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_c00242 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00242 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00242 {overflow:visible;}
  }
}
.c_c00242 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00242 { /* 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_c00242:after { /* webkit #35443 */
  content: '';
}
.t_c00242:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00242 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 */
}
.__c00242 { /* 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_c00242 { /* info for Javascript */
  display:none;
}
.l_c00242 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00242 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00242 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00242: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_c00242 {
    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_c00242.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00242.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_c00242 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00242{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00242;src:url('chunks/assets/font_ffdda91d43f5751d6c5cd797.woff2')format("woff");}.ff1_c00242{font-family:ff1_c00242;line-height:1.000000;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;}
.m32_c00242{transform:matrix(0.000557,-0.061842,0.249990,0.002250,0,0);-ms-transform:matrix(0.000557,-0.061842,0.249990,0.002250,0,0);-webkit-transform:matrix(0.000557,-0.061842,0.249990,0.002250,0,0);}
.m9_c00242{transform:matrix(0.000739,-0.184844,0.249998,0.001000,0,0);-ms-transform:matrix(0.000739,-0.184844,0.249998,0.001000,0,0);-webkit-transform:matrix(0.000739,-0.184844,0.249998,0.001000,0,0);}
.m1a_c00242{transform:matrix(0.001250,-0.312567,0.249998,0.001000,0,0);-ms-transform:matrix(0.001250,-0.312567,0.249998,0.001000,0,0);-webkit-transform:matrix(0.001250,-0.312567,0.249998,0.001000,0,0);}
.m7_c00242{transform:matrix(0.001312,-0.327927,0.249998,0.001000,0,0);-ms-transform:matrix(0.001312,-0.327927,0.249998,0.001000,0,0);-webkit-transform:matrix(0.001312,-0.327927,0.249998,0.001000,0,0);}
.m1e_c00242{transform:matrix(0.001484,-0.371077,0.249998,0.001000,0,0);-ms-transform:matrix(0.001484,-0.371077,0.249998,0.001000,0,0);-webkit-transform:matrix(0.001484,-0.371077,0.249998,0.001000,0,0);}
.m8_c00242{transform:matrix(0.001618,-0.404482,0.249998,0.001000,0,0);-ms-transform:matrix(0.001618,-0.404482,0.249998,0.001000,0,0);-webkit-transform:matrix(0.001618,-0.404482,0.249998,0.001000,0,0);}
.m1d_c00242{transform:matrix(0.001690,-0.422402,0.249998,0.001000,0,0);-ms-transform:matrix(0.001690,-0.422402,0.249998,0.001000,0,0);-webkit-transform:matrix(0.001690,-0.422402,0.249998,0.001000,0,0);}
.m1b_c00242{transform:matrix(0.001824,-0.456066,0.249998,0.001000,0,0);-ms-transform:matrix(0.001824,-0.456066,0.249998,0.001000,0,0);-webkit-transform:matrix(0.001824,-0.456066,0.249998,0.001000,0,0);}
.m26_c00242{transform:matrix(0.001857,-0.309519,0.249996,0.001500,0,0);-ms-transform:matrix(0.001857,-0.309519,0.249996,0.001500,0,0);-webkit-transform:matrix(0.001857,-0.309519,0.249996,0.001500,0,0);}
.m1f_c00242{transform:matrix(0.002120,-0.529996,0.249998,0.001000,0,0);-ms-transform:matrix(0.002120,-0.529996,0.249998,0.001000,0,0);-webkit-transform:matrix(0.002120,-0.529996,0.249998,0.001000,0,0);}
.m2b_c00242{transform:matrix(0.002177,-0.241860,0.249990,0.002250,0,0);-ms-transform:matrix(0.002177,-0.241860,0.249990,0.002250,0,0);-webkit-transform:matrix(0.002177,-0.241860,0.249990,0.002250,0,0);}
.m0_c00242{transform:matrix(0.002202,-0.314607,0.249994,0.001750,0,0);-ms-transform:matrix(0.002202,-0.314607,0.249994,0.001750,0,0);-webkit-transform:matrix(0.002202,-0.314607,0.249994,0.001750,0,0);}
.m41_c00242{transform:matrix(0.002262,-0.452394,0.249997,0.001250,0,0);-ms-transform:matrix(0.002262,-0.452394,0.249997,0.001250,0,0);-webkit-transform:matrix(0.002262,-0.452394,0.249997,0.001250,0,0);}
.m1c_c00242{transform:matrix(0.002472,-0.617915,0.249998,0.001000,0,0);-ms-transform:matrix(0.002472,-0.617915,0.249998,0.001000,0,0);-webkit-transform:matrix(0.002472,-0.617915,0.249998,0.001000,0,0);}
.m24_c00242{transform:matrix(0.003094,-0.441954,0.249994,0.001750,0,0);-ms-transform:matrix(0.003094,-0.441954,0.249994,0.001750,0,0);-webkit-transform:matrix(0.003094,-0.441954,0.249994,0.001750,0,0);}
.m2d_c00242{transform:matrix(0.003097,-0.344081,0.249990,0.002250,0,0);-ms-transform:matrix(0.003097,-0.344081,0.249990,0.002250,0,0);-webkit-transform:matrix(0.003097,-0.344081,0.249990,0.002250,0,0);}
.m19_c00242{transform:matrix(0.003120,-0.780059,0.249998,0.001000,0,0);-ms-transform:matrix(0.003120,-0.780059,0.249998,0.001000,0,0);-webkit-transform:matrix(0.003120,-0.780059,0.249998,0.001000,0,0);}
.m28_c00242{transform:matrix(0.003464,-0.288654,0.249982,0.003000,0,0);-ms-transform:matrix(0.003464,-0.288654,0.249982,0.003000,0,0);-webkit-transform:matrix(0.003464,-0.288654,0.249982,0.003000,0,0);}
.m20_c00242{transform:matrix(0.003771,-0.314242,0.249982,0.003000,0,0);-ms-transform:matrix(0.003771,-0.314242,0.249982,0.003000,0,0);-webkit-transform:matrix(0.003771,-0.314242,0.249982,0.003000,0,0);}
.m2e_c00242{transform:matrix(0.004014,-0.445962,0.249990,0.002250,0,0);-ms-transform:matrix(0.004014,-0.445962,0.249990,0.002250,0,0);-webkit-transform:matrix(0.004014,-0.445962,0.249990,0.002250,0,0);}
.m2c_c00242{transform:matrix(0.004248,-0.471996,0.249990,0.002250,0,0);-ms-transform:matrix(0.004248,-0.471996,0.249990,0.002250,0,0);-webkit-transform:matrix(0.004248,-0.471996,0.249990,0.002250,0,0);}
.m25_c00242{transform:matrix(0.004257,-0.608185,0.249994,0.001750,0,0);-ms-transform:matrix(0.004257,-0.608185,0.249994,0.001750,0,0);-webkit-transform:matrix(0.004257,-0.608185,0.249994,0.001750,0,0);}
.m2f_c00242{transform:matrix(0.004568,-0.507549,0.249990,0.002250,0,0);-ms-transform:matrix(0.004568,-0.507549,0.249990,0.002250,0,0);-webkit-transform:matrix(0.004568,-0.507549,0.249990,0.002250,0,0);}
.m30_c00242{transform:matrix(0.004770,-0.529979,0.249990,0.002250,0,0);-ms-transform:matrix(0.004770,-0.529979,0.249990,0.002250,0,0);-webkit-transform:matrix(0.004770,-0.529979,0.249990,0.002250,0,0);}
.m44_c00242{transform:matrix(0.005648,-0.297266,0.249955,0.004749,0,0);-ms-transform:matrix(0.005648,-0.297266,0.249955,0.004749,0,0);-webkit-transform:matrix(0.005648,-0.297266,0.249955,0.004749,0,0);}
.m33_c00242{transform:matrix(0.005957,-0.661863,0.249990,0.002250,0,0);-ms-transform:matrix(0.005957,-0.661863,0.249990,0.002250,0,0);-webkit-transform:matrix(0.005957,-0.661863,0.249990,0.002250,0,0);}
.m18_c00242{transform:matrix(0.007092,-1.773096,0.249998,0.001000,0,0);-ms-transform:matrix(0.007092,-1.773096,0.249998,0.001000,0,0);-webkit-transform:matrix(0.007092,-1.773096,0.249998,0.001000,0,0);}
.m40_c00242{transform:matrix(0.007849,-0.182351,0.249769,0.010751,0,0);-ms-transform:matrix(0.007849,-0.182351,0.249769,0.010751,0,0);-webkit-transform:matrix(0.007849,-0.182351,0.249769,0.010751,0,0);}
.m29_c00242{transform:matrix(0.008285,-0.517844,0.249968,0.003999,0,0);-ms-transform:matrix(0.008285,-0.517844,0.249968,0.003999,0,0);-webkit-transform:matrix(0.008285,-0.517844,0.249968,0.003999,0,0);}
.m31_c00242{transform:matrix(0.009108,-1.011989,0.249990,0.002250,0,0);-ms-transform:matrix(0.009108,-1.011989,0.249990,0.002250,0,0);-webkit-transform:matrix(0.009108,-1.011989,0.249990,0.002250,0,0);}
.m43_c00242{transform:matrix(0.009748,-0.513037,0.249955,0.004749,0,0);-ms-transform:matrix(0.009748,-0.513037,0.249955,0.004749,0,0);-webkit-transform:matrix(0.009748,-0.513037,0.249955,0.004749,0,0);}
.m3f_c00242{transform:matrix(0.012060,-0.280181,0.249769,0.010751,0,0);-ms-transform:matrix(0.012060,-0.280181,0.249769,0.010751,0,0);-webkit-transform:matrix(0.012060,-0.280181,0.249769,0.010751,0,0);}
.m42_c00242{transform:matrix(0.013097,-0.689296,0.249955,0.004749,0,0);-ms-transform:matrix(0.013097,-0.689296,0.249955,0.004749,0,0);-webkit-transform:matrix(0.013097,-0.689296,0.249955,0.004749,0,0);}
.m2a_c00242{transform:matrix(0.013640,-1.515609,0.249990,0.002250,0,0);-ms-transform:matrix(0.013640,-1.515609,0.249990,0.002250,0,0);-webkit-transform:matrix(0.013640,-1.515609,0.249990,0.002250,0,0);}
.m38_c00242{transform:matrix(0.037616,0.854047,-0.249758,0.011000,0,0);-ms-transform:matrix(0.037616,0.854047,-0.249758,0.011000,0,0);-webkit-transform:matrix(0.037616,0.854047,-0.249758,0.011000,0,0);}
.m39_c00242{transform:matrix(0.052449,1.190841,-0.249758,0.011000,0,0);-ms-transform:matrix(0.052449,1.190841,-0.249758,0.011000,0,0);-webkit-transform:matrix(0.052449,1.190841,-0.249758,0.011000,0,0);}
.m10_c00242{transform:matrix(0.093020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093020,0.000000,0.000000,0.250000,0,0);}
.m22_c00242{transform:matrix(0.169810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169810,0.000000,0.000000,0.250000,0,0);}
.m27_c00242{transform:matrix(0.173645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173645,0.000000,0.000000,0.250000,0,0);}
.m21_c00242{transform:matrix(0.175570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175570,0.000000,0.000000,0.250000,0,0);}
.m15_c00242{transform:matrix(0.184995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184995,0.000000,0.000000,0.250000,0,0);}
.mf_c00242{transform:matrix(0.198030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198030,0.000000,0.000000,0.250000,0,0);}
.m13_c00242{transform:matrix(0.198040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198040,0.000000,0.000000,0.250000,0,0);}
.m11_c00242{transform:matrix(0.203765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203765,0.000000,0.000000,0.250000,0,0);}
.m12_c00242{transform:matrix(0.206120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206120,0.000000,0.000000,0.250000,0,0);}
.mc_c00242{transform:matrix(0.208445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208445,0.000000,0.000000,0.250000,0,0);}
.m34_c00242{transform:matrix(0.225277,0.003830,-0.004249,0.249964,0,0);-ms-transform:matrix(0.225277,0.003830,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.225277,0.003830,-0.004249,0.249964,0,0);}
.ma_c00242{transform:matrix(0.228575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228575,0.000000,0.000000,0.250000,0,0);}
.m2_c00242{transform:matrix(0.237950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237950,0.000000,0.000000,0.250000,0,0);}
.m3e_c00242{transform:matrix(0.247705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247705,0.000000,0.000000,0.250000,0,0);}
.m14_c00242{transform:matrix(0.259220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259220,0.000000,0.000000,0.250000,0,0);}
.m3_c00242{transform:matrix(0.261725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261725,0.000000,0.000000,0.250000,0,0);}
.m37_c00242{transform:matrix(0.263202,0.005527,-0.005249,0.249945,0,0);-ms-transform:matrix(0.263202,0.005527,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.263202,0.005527,-0.005249,0.249945,0,0);}
.m4_c00242{transform:matrix(0.267420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267420,0.000000,0.000000,0.250000,0,0);}
.m3d_c00242{transform:matrix(0.296195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296195,0.000000,0.000000,0.250000,0,0);}
.m36_c00242{transform:matrix(0.296200,0.006220,-0.005249,0.249945,0,0);-ms-transform:matrix(0.296200,0.006220,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.296200,0.006220,-0.005249,0.249945,0,0);}
.m16_c00242{transform:matrix(0.298415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298415,0.000000,0.000000,0.250000,0,0);}
.m3b_c00242{transform:matrix(0.302835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302835,0.000000,0.000000,0.250000,0,0);}
.m3a_c00242{transform:matrix(0.305820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305820,0.000000,0.000000,0.250000,0,0);}
.m1_c00242{transform:matrix(0.309235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309235,0.000000,0.000000,0.250000,0,0);}
.md_c00242{transform:matrix(0.313100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313100,0.000000,0.000000,0.250000,0,0);}
.m35_c00242{transform:matrix(0.352069,0.005985,-0.004249,0.249964,0,0);-ms-transform:matrix(0.352069,0.005985,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.352069,0.005985,-0.004249,0.249964,0,0);}
.mb_c00242{transform:matrix(0.385875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385875,0.000000,0.000000,0.250000,0,0);}
.m3c_c00242{transform:matrix(0.427680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427680,0.000000,0.000000,0.250000,0,0);}
.m6_c00242{transform:matrix(0.469050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469050,0.000000,0.000000,0.250000,0,0);}
.m17_c00242{transform:matrix(0.638600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638600,0.000000,0.000000,0.250000,0,0);}
.me_c00242{transform:matrix(0.640845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.640845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.640845,0.000000,0.000000,0.250000,0,0);}
.m23_c00242{transform:matrix(0.692715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.692715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.692715,0.000000,0.000000,0.250000,0,0);}
.m5_c00242{transform:matrix(0.780960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.780960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.780960,0.000000,0.000000,0.250000,0,0);}
.v0_c00242{vertical-align:0.000000px;}
.ls0_c00242{letter-spacing:0.000000px;}
.sc__c00242{text-shadow:none;}
.sc0_c00242{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__c00242{-webkit-text-stroke:0px transparent;}
.sc0_c00242{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00242{word-spacing:0.000000px;}
.fc0_c00242{color:transparent;}
.fsd_c00242{font-size:18.000144px;}
.fs14_c00242{font-size:18.000729px;}
.fs1d_c00242{font-size:18.003249px;}
.fsa_c00242{font-size:24.000000px;}
.fs7_c00242{font-size:54.000000px;}
.fsf_c00242{font-size:60.000000px;}
.fs19_c00242{font-size:84.000000px;}
.fs3_c00242{font-size:90.000000px;}
.fsc_c00242{font-size:96.000000px;}
.fs8_c00242{font-size:102.000000px;}
.fs1_c00242{font-size:108.000000px;}
.fsb_c00242{font-size:114.000000px;}
.fs6_c00242{font-size:120.000000px;}
.fs0_c00242{font-size:126.003087px;}
.fs15_c00242{font-size:126.018206px;}
.fs16_c00242{font-size:132.029103px;}
.fs4_c00242{font-size:156.000000px;}
.fs5_c00242{font-size:156.001248px;}
.fs1c_c00242{font-size:162.002025px;}
.fs11_c00242{font-size:162.002916px;}
.fse_c00242{font-size:162.011664px;}
.fs13_c00242{font-size:162.020735px;}
.fs1b_c00242{font-size:167.987400px;}
.fs10_c00242{font-size:168.004116px;}
.fs12_c00242{font-size:168.012096px;}
.fs17_c00242{font-size:173.994519px;}
.fs9_c00242{font-size:174.000000px;}
.fs18_c00242{font-size:179.994330px;}
.fs2_c00242{font-size:222.000000px;}
.fs1a_c00242{font-size:317.976149px;}
.y0_c00242{bottom:0.000000px;}
.y40_c00242{bottom:15.886500px;}
.y3f_c00242{bottom:31.003500px;}
.y3e_c00242{bottom:54.759000px;}
.y3c_c00242{bottom:57.507870px;}
.y3b_c00242{bottom:82.750500px;}
.y3a_c00242{bottom:100.237500px;}
.y37_c00242{bottom:156.677929px;}
.y36_c00242{bottom:158.502000px;}
.y3d_c00242{bottom:190.063500px;}
.y38_c00242{bottom:226.524000px;}
.y33_c00242{bottom:262.156500px;}
.y25_c00242{bottom:271.080000px;}
.y39_c00242{bottom:293.938749px;}
.y26_c00242{bottom:302.121000px;}
.y27_c00242{bottom:302.838000px;}
.y32_c00242{bottom:304.803000px;}
.y31_c00242{bottom:313.195500px;}
.y9_c00242{bottom:339.876000px;}
.y24_c00242{bottom:341.277000px;}
.y35_c00242{bottom:343.558926px;}
.y34_c00242{bottom:345.337500px;}
.y1f_c00242{bottom:347.220000px;}
.y30_c00242{bottom:352.861500px;}
.y2f_c00242{bottom:392.559000px;}
.y2e_c00242{bottom:406.329000px;}
.y1e_c00242{bottom:418.221000px;}
.y2d_c00242{bottom:424.687500px;}
.y2c_c00242{bottom:430.897500px;}
.y2b_c00242{bottom:442.507500px;}
.y2a_c00242{bottom:457.357500px;}
.y29_c00242{bottom:480.871500px;}
.y23_c00242{bottom:494.887500px;}
.y20_c00242{bottom:501.120000px;}
.y6_c00242{bottom:501.390000px;}
.y28_c00242{bottom:509.220000px;}
.y1d_c00242{bottom:523.249500px;}
.y21_c00242{bottom:532.140000px;}
.y1c_c00242{bottom:542.970000px;}
.y1b_c00242{bottom:546.739500px;}
.y1a_c00242{bottom:563.220000px;}
.y8_c00242{bottom:571.537500px;}
.y19_c00242{bottom:584.539500px;}
.y18_c00242{bottom:597.780000px;}
.y17_c00242{bottom:628.021500px;}
.y22_c00242{bottom:634.062000px;}
.y16_c00242{bottom:699.837000px;}
.y7_c00242{bottom:726.789000px;}
.yb_c00242{bottom:749.520000px;}
.yf_c00242{bottom:752.490000px;}
.yd_c00242{bottom:753.300000px;}
.y15_c00242{bottom:753.570000px;}
.ye_c00242{bottom:758.560500px;}
.y12_c00242{bottom:759.505500px;}
.yc_c00242{bottom:759.508500px;}
.ya_c00242{bottom:760.174500px;}
.y14_c00242{bottom:767.610000px;}
.y10_c00242{bottom:780.394500px;}
.y3_c00242{bottom:780.976500px;}
.y5_c00242{bottom:781.920000px;}
.y11_c00242{bottom:782.730000px;}
.y4_c00242{bottom:783.000000px;}
.y13_c00242{bottom:783.540000px;}
.y2_c00242{bottom:783.810000px;}
.y1_c00242{bottom:835.068000px;}
.hf_c00242{height:18.000144px;}
.h16_c00242{height:18.000729px;}
.h1f_c00242{height:18.003249px;}
.hc_c00242{height:24.000000px;}
.h9_c00242{height:54.000000px;}
.h11_c00242{height:60.000000px;}
.h1b_c00242{height:84.000000px;}
.h5_c00242{height:90.000000px;}
.he_c00242{height:96.000000px;}
.ha_c00242{height:102.000000px;}
.h3_c00242{height:108.000000px;}
.hd_c00242{height:114.000000px;}
.h8_c00242{height:120.000000px;}
.h2_c00242{height:126.003087px;}
.h17_c00242{height:126.018206px;}
.h18_c00242{height:132.029103px;}
.h6_c00242{height:156.000000px;}
.h7_c00242{height:156.001248px;}
.h1e_c00242{height:162.002025px;}
.h13_c00242{height:162.002916px;}
.h10_c00242{height:162.011664px;}
.h15_c00242{height:162.020735px;}
.h1d_c00242{height:167.987400px;}
.h12_c00242{height:168.004116px;}
.h14_c00242{height:168.012096px;}
.h19_c00242{height:173.994519px;}
.hb_c00242{height:174.000000px;}
.h1a_c00242{height:179.994330px;}
.h4_c00242{height:222.000000px;}
.h1c_c00242{height:317.976149px;}
.h1_c00242{height:952.500000px;}
.h0_c00242{height:952.800000px;}
.w0_c00242{width:682.500000px;}
.x0_c00242{left:0.000000px;}
.x22_c00242{left:12.960000px;}
.x11_c00242{left:40.230000px;}
.x23_c00242{left:64.530000px;}
.x13_c00242{left:67.770000px;}
.x14_c00242{left:81.540000px;}
.x20_c00242{left:86.283000px;}
.x12_c00242{left:87.480000px;}
.x1f_c00242{left:104.176500px;}
.x24_c00242{left:123.120000px;}
.x10_c00242{left:136.350000px;}
.xf_c00242{left:158.760000px;}
.xe_c00242{left:164.700000px;}
.xc_c00242{left:218.430000px;}
.x4_c00242{left:222.750000px;}
.x25_c00242{left:224.910000px;}
.xd_c00242{left:235.710000px;}
.xb_c00242{left:241.920000px;}
.x3_c00242{left:247.590000px;}
.x2_c00242{left:298.890000px;}
.x26_c00242{left:303.480000px;}
.xa_c00242{left:312.390000px;}
.x5_c00242{left:351.270000px;}
.x9_c00242{left:529.272348px;}
.x8_c00242{left:530.820000px;}
.x1_c00242{left:543.897000px;}
.x29_c00242{left:547.290000px;}
.x6_c00242{left:549.450000px;}
.x7_c00242{left:551.340000px;}
.x1a_c00242{left:554.310000px;}
.x28_c00242{left:562.415715px;}
.x1d_c00242{left:566.730000px;}
.x21_c00242{left:583.458000px;}
.x27_c00242{left:586.164000px;}
.x1e_c00242{left:589.948500px;}
.x15_c00242{left:591.030000px;}
.x19_c00242{left:592.650000px;}
.x1b_c00242{left:605.340000px;}
.x16_c00242{left:606.960000px;}
.x1c_c00242{left:609.930000px;}
.x17_c00242{left:611.010000px;}
.x18_c00242{left:612.360000px;}
@media print{
.v0_c00242{vertical-align:0.000000pt;}
.ls0_c00242{letter-spacing:0.000000pt;}
.ws0_c00242{word-spacing:0.000000pt;}
.fsd_c00242{font-size:16.000128pt;}
.fs14_c00242{font-size:16.000648pt;}
.fs1d_c00242{font-size:16.002888pt;}
.fsa_c00242{font-size:21.333333pt;}
.fs7_c00242{font-size:48.000000pt;}
.fsf_c00242{font-size:53.333333pt;}
.fs19_c00242{font-size:74.666667pt;}
.fs3_c00242{font-size:80.000000pt;}
.fsc_c00242{font-size:85.333333pt;}
.fs8_c00242{font-size:90.666667pt;}
.fs1_c00242{font-size:96.000000pt;}
.fsb_c00242{font-size:101.333333pt;}
.fs6_c00242{font-size:106.666667pt;}
.fs0_c00242{font-size:112.002744pt;}
.fs15_c00242{font-size:112.016183pt;}
.fs16_c00242{font-size:117.359202pt;}
.fs4_c00242{font-size:138.666667pt;}
.fs5_c00242{font-size:138.667776pt;}
.fs1c_c00242{font-size:144.001800pt;}
.fs11_c00242{font-size:144.002592pt;}
.fse_c00242{font-size:144.010368pt;}
.fs13_c00242{font-size:144.018431pt;}
.fs1b_c00242{font-size:149.322133pt;}
.fs10_c00242{font-size:149.336992pt;}
.fs12_c00242{font-size:149.344085pt;}
.fs17_c00242{font-size:154.661795pt;}
.fs9_c00242{font-size:154.666667pt;}
.fs18_c00242{font-size:159.994960pt;}
.fs2_c00242{font-size:197.333333pt;}
.fs1a_c00242{font-size:282.645466pt;}
.y0_c00242{bottom:0.000000pt;}
.y40_c00242{bottom:14.121333pt;}
.y3f_c00242{bottom:27.558667pt;}
.y3e_c00242{bottom:48.674667pt;}
.y3c_c00242{bottom:51.118107pt;}
.y3b_c00242{bottom:73.556000pt;}
.y3a_c00242{bottom:89.100000pt;}
.y37_c00242{bottom:139.269271pt;}
.y36_c00242{bottom:140.890667pt;}
.y3d_c00242{bottom:168.945333pt;}
.y38_c00242{bottom:201.354667pt;}
.y33_c00242{bottom:233.028000pt;}
.y25_c00242{bottom:240.960000pt;}
.y39_c00242{bottom:261.278888pt;}
.y26_c00242{bottom:268.552000pt;}
.y27_c00242{bottom:269.189333pt;}
.y32_c00242{bottom:270.936000pt;}
.y31_c00242{bottom:278.396000pt;}
.y9_c00242{bottom:302.112000pt;}
.y24_c00242{bottom:303.357333pt;}
.y35_c00242{bottom:305.385712pt;}
.y34_c00242{bottom:306.966667pt;}
.y1f_c00242{bottom:308.640000pt;}
.y30_c00242{bottom:313.654667pt;}
.y2f_c00242{bottom:348.941333pt;}
.y2e_c00242{bottom:361.181333pt;}
.y1e_c00242{bottom:371.752000pt;}
.y2d_c00242{bottom:377.500000pt;}
.y2c_c00242{bottom:383.020000pt;}
.y2b_c00242{bottom:393.340000pt;}
.y2a_c00242{bottom:406.540000pt;}
.y29_c00242{bottom:427.441333pt;}
.y23_c00242{bottom:439.900000pt;}
.y20_c00242{bottom:445.440000pt;}
.y6_c00242{bottom:445.680000pt;}
.y28_c00242{bottom:452.640000pt;}
.y1d_c00242{bottom:465.110667pt;}
.y21_c00242{bottom:473.013333pt;}
.y1c_c00242{bottom:482.640000pt;}
.y1b_c00242{bottom:485.990667pt;}
.y1a_c00242{bottom:500.640000pt;}
.y8_c00242{bottom:508.033333pt;}
.y19_c00242{bottom:519.590667pt;}
.y18_c00242{bottom:531.360000pt;}
.y17_c00242{bottom:558.241333pt;}
.y22_c00242{bottom:563.610667pt;}
.y16_c00242{bottom:622.077333pt;}
.y7_c00242{bottom:646.034667pt;}
.yb_c00242{bottom:666.240000pt;}
.yf_c00242{bottom:668.880000pt;}
.yd_c00242{bottom:669.600000pt;}
.y15_c00242{bottom:669.840000pt;}
.ye_c00242{bottom:674.276000pt;}
.y12_c00242{bottom:675.116000pt;}
.yc_c00242{bottom:675.118667pt;}
.ya_c00242{bottom:675.710667pt;}
.y14_c00242{bottom:682.320000pt;}
.y10_c00242{bottom:693.684000pt;}
.y3_c00242{bottom:694.201333pt;}
.y5_c00242{bottom:695.040000pt;}
.y11_c00242{bottom:695.760000pt;}
.y4_c00242{bottom:696.000000pt;}
.y13_c00242{bottom:696.480000pt;}
.y2_c00242{bottom:696.720000pt;}
.y1_c00242{bottom:742.282667pt;}
.hf_c00242{height:16.000128pt;}
.h16_c00242{height:16.000648pt;}
.h1f_c00242{height:16.002888pt;}
.hc_c00242{height:21.333333pt;}
.h9_c00242{height:48.000000pt;}
.h11_c00242{height:53.333333pt;}
.h1b_c00242{height:74.666667pt;}
.h5_c00242{height:80.000000pt;}
.he_c00242{height:85.333333pt;}
.ha_c00242{height:90.666667pt;}
.h3_c00242{height:96.000000pt;}
.hd_c00242{height:101.333333pt;}
.h8_c00242{height:106.666667pt;}
.h2_c00242{height:112.002744pt;}
.h17_c00242{height:112.016183pt;}
.h18_c00242{height:117.359202pt;}
.h6_c00242{height:138.666667pt;}
.h7_c00242{height:138.667776pt;}
.h1e_c00242{height:144.001800pt;}
.h13_c00242{height:144.002592pt;}
.h10_c00242{height:144.010368pt;}
.h15_c00242{height:144.018431pt;}
.h1d_c00242{height:149.322133pt;}
.h12_c00242{height:149.336992pt;}
.h14_c00242{height:149.344085pt;}
.h19_c00242{height:154.661795pt;}
.hb_c00242{height:154.666667pt;}
.h1a_c00242{height:159.994960pt;}
.h4_c00242{height:197.333333pt;}
.h1c_c00242{height:282.645466pt;}
.h1_c00242{height:846.666667pt;}
.h0_c00242{height:846.933333pt;}
.w0_c00242{width:606.666667pt;}
.x0_c00242{left:0.000000pt;}
.x22_c00242{left:11.520000pt;}
.x11_c00242{left:35.760000pt;}
.x23_c00242{left:57.360000pt;}
.x13_c00242{left:60.240000pt;}
.x14_c00242{left:72.480000pt;}
.x20_c00242{left:76.696000pt;}
.x12_c00242{left:77.760000pt;}
.x1f_c00242{left:92.601333pt;}
.x24_c00242{left:109.440000pt;}
.x10_c00242{left:121.200000pt;}
.xf_c00242{left:141.120000pt;}
.xe_c00242{left:146.400000pt;}
.xc_c00242{left:194.160000pt;}
.x4_c00242{left:198.000000pt;}
.x25_c00242{left:199.920000pt;}
.xd_c00242{left:209.520000pt;}
.xb_c00242{left:215.040000pt;}
.x3_c00242{left:220.080000pt;}
.x2_c00242{left:265.680000pt;}
.x26_c00242{left:269.760000pt;}
.xa_c00242{left:277.680000pt;}
.x5_c00242{left:312.240000pt;}
.x9_c00242{left:470.464309pt;}
.x8_c00242{left:471.840000pt;}
.x1_c00242{left:483.464000pt;}
.x29_c00242{left:486.480000pt;}
.x6_c00242{left:488.400000pt;}
.x7_c00242{left:490.080000pt;}
.x1a_c00242{left:492.720000pt;}
.x28_c00242{left:499.925080pt;}
.x1d_c00242{left:503.760000pt;}
.x21_c00242{left:518.629333pt;}
.x27_c00242{left:521.034667pt;}
.x1e_c00242{left:524.398667pt;}
.x15_c00242{left:525.360000pt;}
.x19_c00242{left:526.800000pt;}
.x1b_c00242{left:538.080000pt;}
.x16_c00242{left:539.520000pt;}
.x1c_c00242{left:542.160000pt;}
.x17_c00242{left:543.120000pt;}
.x18_c00242{left:544.320000pt;}
}





/* 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_c00243 {
    display:none;
  }
  .loading-indicator_c00243.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00243 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_c00243 { 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_c00243" -> "#page-container .classname_c00243")
 */
.pf_c00243 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00243 { /* 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_c00243.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00243 { /* 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_c00243 { /* 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_c00243 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00243 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00243 {overflow:visible;}
  }
}
.c_c00243 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00243 { /* 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_c00243:after { /* webkit #35443 */
  content: '';
}
.t_c00243:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00243 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 */
}
.__c00243 { /* 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_c00243 { /* info for Javascript */
  display:none;
}
.l_c00243 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00243 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00243 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00243: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_c00243 {
    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_c00243.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00243.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_c00243 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00243{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00243;src:url('chunks/assets/font_fe3cd3c6b9706b260f6e1774.woff2')format("woff");}.ff1_c00243{font-family:ff1_c00243;line-height:1.000000;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;}
.m4_c00243{transform:matrix(0.004812,0.437494,-0.249985,0.002750,0,0);-ms-transform:matrix(0.004812,0.437494,-0.249985,0.002750,0,0);-webkit-transform:matrix(0.004812,0.437494,-0.249985,0.002750,0,0);}
.m2_c00243{transform:matrix(0.004988,0.453473,-0.249985,0.002750,0,0);-ms-transform:matrix(0.004988,0.453473,-0.249985,0.002750,0,0);-webkit-transform:matrix(0.004988,0.453473,-0.249985,0.002750,0,0);}
.m3_c00243{transform:matrix(0.005073,0.461222,-0.249985,0.002750,0,0);-ms-transform:matrix(0.005073,0.461222,-0.249985,0.002750,0,0);-webkit-transform:matrix(0.005073,0.461222,-0.249985,0.002750,0,0);}
.m0_c00243{transform:matrix(0.010509,0.955397,-0.249985,0.002750,0,0);-ms-transform:matrix(0.010509,0.955397,-0.249985,0.002750,0,0);-webkit-transform:matrix(0.010509,0.955397,-0.249985,0.002750,0,0);}
.m1_c00243{transform:matrix(0.011618,1.056151,-0.249985,0.002750,0,0);-ms-transform:matrix(0.011618,1.056151,-0.249985,0.002750,0,0);-webkit-transform:matrix(0.011618,1.056151,-0.249985,0.002750,0,0);}
.m8_c00243{transform:matrix(0.081125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.081125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.081125,0.000000,0.000000,0.250000,0,0);}
.m7_c00243{transform:matrix(0.306035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306035,0.000000,0.000000,0.250000,0,0);}
.m5_c00243{transform:matrix(0.398370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398370,0.000000,0.000000,0.250000,0,0);}
.mb_c00243{transform:matrix(0.415030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415030,0.000000,0.000000,0.250000,0,0);}
.m6_c00243{transform:matrix(0.443200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443200,0.000000,0.000000,0.250000,0,0);}
.mc_c00243{transform:matrix(0.493975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493975,0.000000,0.000000,0.250000,0,0);}
.ma_c00243{transform:matrix(0.896055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.896055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.896055,0.000000,0.000000,0.250000,0,0);}
.m9_c00243{transform:matrix(1.083745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.083745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.083745,0.000000,0.000000,0.250000,0,0);}
.md_c00243{transform:matrix(1.801405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.801405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.801405,0.000000,0.000000,0.250000,0,0);}
.v0_c00243{vertical-align:0.000000px;}
.ls0_c00243{letter-spacing:0.000000px;}
.sc__c00243{text-shadow:none;}
.sc0_c00243{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__c00243{-webkit-text-stroke:0px transparent;}
.sc0_c00243{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00243{word-spacing:0.000000px;}
.fc0_c00243{color:transparent;}
.fs2_c00243{font-size:12.000000px;}
.fs1_c00243{font-size:24.000000px;}
.fs0_c00243{font-size:24.001452px;}
.y0_c00243{bottom:0.000000px;}
.y5_c00243{bottom:494.098029px;}
.y3_c00243{bottom:512.227500px;}
.y4_c00243{bottom:513.019837px;}
.y2_c00243{bottom:547.296000px;}
.y1_c00243{bottom:572.692500px;}
.y7_c00243{bottom:631.260000px;}
.y9_c00243{bottom:637.465500px;}
.y8_c00243{bottom:663.097500px;}
.y6_c00243{bottom:698.220000px;}
.h4_c00243{height:12.000000px;}
.h3_c00243{height:24.000000px;}
.h2_c00243{height:24.001452px;}
.h1_c00243{height:952.500000px;}
.h0_c00243{height:952.800000px;}
.w0_c00243{width:682.500000px;}
.x0_c00243{left:0.000000px;}
.x4_c00243{left:436.860000px;}
.x3_c00243{left:439.020000px;}
.x5_c00243{left:440.640000px;}
.x6_c00243{left:441.720000px;}
.x1_c00243{left:444.960000px;}
.x2_c00243{left:446.328986px;}
@media print{
.v0_c00243{vertical-align:0.000000pt;}
.ls0_c00243{letter-spacing:0.000000pt;}
.ws0_c00243{word-spacing:0.000000pt;}
.fs2_c00243{font-size:10.666667pt;}
.fs1_c00243{font-size:21.333333pt;}
.fs0_c00243{font-size:21.334624pt;}
.y0_c00243{bottom:0.000000pt;}
.y5_c00243{bottom:439.198248pt;}
.y3_c00243{bottom:455.313333pt;}
.y4_c00243{bottom:456.017633pt;}
.y2_c00243{bottom:486.485333pt;}
.y1_c00243{bottom:509.060000pt;}
.y7_c00243{bottom:561.120000pt;}
.y9_c00243{bottom:566.636000pt;}
.y8_c00243{bottom:589.420000pt;}
.y6_c00243{bottom:620.640000pt;}
.h4_c00243{height:10.666667pt;}
.h3_c00243{height:21.333333pt;}
.h2_c00243{height:21.334624pt;}
.h1_c00243{height:846.666667pt;}
.h0_c00243{height:846.933333pt;}
.w0_c00243{width:606.666667pt;}
.x0_c00243{left:0.000000pt;}
.x4_c00243{left:388.320000pt;}
.x3_c00243{left:390.240000pt;}
.x5_c00243{left:391.680000pt;}
.x6_c00243{left:392.640000pt;}
.x1_c00243{left:395.520000pt;}
.x2_c00243{left:396.736876pt;}
}





/* 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_c00244 {
    display:none;
  }
  .loading-indicator_c00244.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00244 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_c00244 { 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_c00244" -> "#page-container .classname_c00244")
 */
.pf_c00244 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00244 { /* 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_c00244.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00244 { /* 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_c00244 { /* 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_c00244 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00244 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00244 {overflow:visible;}
  }
}
.c_c00244 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00244 { /* 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_c00244:after { /* webkit #35443 */
  content: '';
}
.t_c00244:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00244 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 */
}
.__c00244 { /* 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_c00244 { /* info for Javascript */
  display:none;
}
.l_c00244 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00244 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00244 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00244: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_c00244 {
    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_c00244.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00244.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_c00244 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00244{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00244;src:url('chunks/assets/font_fabf4b590f7fb32aea93ffb2.woff2')format("woff");}.ff1_c00244{font-family:ff1_c00244;line-height:1.000000;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;}
.m90_c00244{transform:matrix(0.139176,0.001948,-0.003500,0.249976,0,0);-ms-transform:matrix(0.139176,0.001948,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.139176,0.001948,-0.003500,0.249976,0,0);}
.m8f_c00244{transform:matrix(0.147516,0.002065,-0.003500,0.249976,0,0);-ms-transform:matrix(0.147516,0.002065,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.147516,0.002065,-0.003500,0.249976,0,0);}
.m92_c00244{transform:matrix(0.147571,0.002066,-0.003500,0.249976,0,0);-ms-transform:matrix(0.147571,0.002066,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.147571,0.002066,-0.003500,0.249976,0,0);}
.m8e_c00244{transform:matrix(0.149765,0.002097,-0.003500,0.249976,0,0);-ms-transform:matrix(0.149765,0.002097,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.149765,0.002097,-0.003500,0.249976,0,0);}
.m93_c00244{transform:matrix(0.158269,0.002216,-0.003500,0.249976,0,0);-ms-transform:matrix(0.158269,0.002216,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.158269,0.002216,-0.003500,0.249976,0,0);}
.m8d_c00244{transform:matrix(0.160064,0.002241,-0.003500,0.249976,0,0);-ms-transform:matrix(0.160064,0.002241,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.160064,0.002241,-0.003500,0.249976,0,0);}
.m97_c00244{transform:matrix(0.162864,0.002280,-0.003500,0.249976,0,0);-ms-transform:matrix(0.162864,0.002280,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.162864,0.002280,-0.003500,0.249976,0,0);}
.m95_c00244{transform:matrix(0.170428,0.002386,-0.003500,0.249976,0,0);-ms-transform:matrix(0.170428,0.002386,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.170428,0.002386,-0.003500,0.249976,0,0);}
.m0_c00244{transform:matrix(0.173155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173155,0.000000,0.000000,0.250000,0,0);}
.m94_c00244{transform:matrix(0.174848,0.002448,-0.003500,0.249976,0,0);-ms-transform:matrix(0.174848,0.002448,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.174848,0.002448,-0.003500,0.249976,0,0);}
.m96_c00244{transform:matrix(0.178997,0.002506,-0.003500,0.249976,0,0);-ms-transform:matrix(0.178997,0.002506,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.178997,0.002506,-0.003500,0.249976,0,0);}
.m98_c00244{transform:matrix(0.184952,0.002589,-0.003500,0.249976,0,0);-ms-transform:matrix(0.184952,0.002589,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.184952,0.002589,-0.003500,0.249976,0,0);}
.m91_c00244{transform:matrix(0.185127,0.002592,-0.003500,0.249976,0,0);-ms-transform:matrix(0.185127,0.002592,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.185127,0.002592,-0.003500,0.249976,0,0);}
.m51_c00244{transform:matrix(0.190969,0.002865,-0.003750,0.249972,0,0);-ms-transform:matrix(0.190969,0.002865,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.190969,0.002865,-0.003750,0.249972,0,0);}
.m84_c00244{transform:matrix(0.196656,0.002753,-0.003500,0.249976,0,0);-ms-transform:matrix(0.196656,0.002753,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.196656,0.002753,-0.003500,0.249976,0,0);}
.m82_c00244{transform:matrix(0.199185,0.002789,-0.003500,0.249976,0,0);-ms-transform:matrix(0.199185,0.002789,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.199185,0.002789,-0.003500,0.249976,0,0);}
.m3c_c00244{transform:matrix(0.205542,0.003083,-0.003750,0.249972,0,0);-ms-transform:matrix(0.205542,0.003083,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.205542,0.003083,-0.003750,0.249972,0,0);}
.m1a_c00244{transform:matrix(0.208572,0.003129,-0.003750,0.249972,0,0);-ms-transform:matrix(0.208572,0.003129,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.208572,0.003129,-0.003750,0.249972,0,0);}
.m36_c00244{transform:matrix(0.211296,0.003169,-0.003750,0.249972,0,0);-ms-transform:matrix(0.211296,0.003169,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.211296,0.003169,-0.003750,0.249972,0,0);}
.mb_c00244{transform:matrix(0.212241,0.003184,-0.003750,0.249972,0,0);-ms-transform:matrix(0.212241,0.003184,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.212241,0.003184,-0.003750,0.249972,0,0);}
.m83_c00244{transform:matrix(0.217159,0.003040,-0.003500,0.249976,0,0);-ms-transform:matrix(0.217159,0.003040,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.217159,0.003040,-0.003500,0.249976,0,0);}
.m4_c00244{transform:matrix(0.222065,0.003331,-0.003750,0.249972,0,0);-ms-transform:matrix(0.222065,0.003331,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.222065,0.003331,-0.003750,0.249972,0,0);}
.m5_c00244{transform:matrix(0.226719,0.003401,-0.003750,0.249972,0,0);-ms-transform:matrix(0.226719,0.003401,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.226719,0.003401,-0.003750,0.249972,0,0);}
.m64_c00244{transform:matrix(0.227503,0.003185,-0.003500,0.249976,0,0);-ms-transform:matrix(0.227503,0.003185,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.227503,0.003185,-0.003500,0.249976,0,0);}
.m38_c00244{transform:matrix(0.228269,0.003424,-0.003750,0.249972,0,0);-ms-transform:matrix(0.228269,0.003424,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.228269,0.003424,-0.003750,0.249972,0,0);}
.m6_c00244{transform:matrix(0.230259,0.003454,-0.003750,0.249972,0,0);-ms-transform:matrix(0.230259,0.003454,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.230259,0.003454,-0.003750,0.249972,0,0);}
.m26_c00244{transform:matrix(0.231714,0.003476,-0.003750,0.249972,0,0);-ms-transform:matrix(0.231714,0.003476,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.231714,0.003476,-0.003750,0.249972,0,0);}
.m88_c00244{transform:matrix(0.235057,0.003291,-0.003500,0.249976,0,0);-ms-transform:matrix(0.235057,0.003291,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.235057,0.003291,-0.003500,0.249976,0,0);}
.m41_c00244{transform:matrix(0.235294,0.003529,-0.003750,0.249972,0,0);-ms-transform:matrix(0.235294,0.003529,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.235294,0.003529,-0.003750,0.249972,0,0);}
.m7c_c00244{transform:matrix(0.235427,0.003296,-0.003500,0.249976,0,0);-ms-transform:matrix(0.235427,0.003296,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.235427,0.003296,-0.003500,0.249976,0,0);}
.m8_c00244{transform:matrix(0.235823,0.003537,-0.003750,0.249972,0,0);-ms-transform:matrix(0.235823,0.003537,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.235823,0.003537,-0.003750,0.249972,0,0);}
.m6b_c00244{transform:matrix(0.236607,0.003312,-0.003500,0.249976,0,0);-ms-transform:matrix(0.236607,0.003312,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.236607,0.003312,-0.003500,0.249976,0,0);}
.m1b_c00244{transform:matrix(0.237608,0.003564,-0.003750,0.249972,0,0);-ms-transform:matrix(0.237608,0.003564,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.237608,0.003564,-0.003750,0.249972,0,0);}
.m44_c00244{transform:matrix(0.238248,0.003574,-0.003750,0.249972,0,0);-ms-transform:matrix(0.238248,0.003574,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.238248,0.003574,-0.003750,0.249972,0,0);}
.m8a_c00244{transform:matrix(0.238582,0.003340,-0.003500,0.249976,0,0);-ms-transform:matrix(0.238582,0.003340,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.238582,0.003340,-0.003500,0.249976,0,0);}
.m2e_c00244{transform:matrix(0.240253,0.003604,-0.003750,0.249972,0,0);-ms-transform:matrix(0.240253,0.003604,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.240253,0.003604,-0.003750,0.249972,0,0);}
.m6e_c00244{transform:matrix(0.241366,0.003379,-0.003500,0.249976,0,0);-ms-transform:matrix(0.241366,0.003379,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.241366,0.003379,-0.003500,0.249976,0,0);}
.m33_c00244{transform:matrix(0.241993,0.003630,-0.003750,0.249972,0,0);-ms-transform:matrix(0.241993,0.003630,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.241993,0.003630,-0.003750,0.249972,0,0);}
.m39_c00244{transform:matrix(0.242928,0.003644,-0.003750,0.249972,0,0);-ms-transform:matrix(0.242928,0.003644,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.242928,0.003644,-0.003750,0.249972,0,0);}
.m46_c00244{transform:matrix(0.243458,0.003652,-0.003750,0.249972,0,0);-ms-transform:matrix(0.243458,0.003652,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.243458,0.003652,-0.003750,0.249972,0,0);}
.m86_c00244{transform:matrix(0.244366,0.003421,-0.003500,0.249976,0,0);-ms-transform:matrix(0.244366,0.003421,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.244366,0.003421,-0.003500,0.249976,0,0);}
.m9_c00244{transform:matrix(0.245262,0.003679,-0.003750,0.249972,0,0);-ms-transform:matrix(0.245262,0.003679,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.245262,0.003679,-0.003750,0.249972,0,0);}
.m8b_c00244{transform:matrix(0.246401,0.003450,-0.003500,0.249976,0,0);-ms-transform:matrix(0.246401,0.003450,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.246401,0.003450,-0.003500,0.249976,0,0);}
.m69_c00244{transform:matrix(0.246596,0.003452,-0.003500,0.249976,0,0);-ms-transform:matrix(0.246596,0.003452,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.246596,0.003452,-0.003500,0.249976,0,0);}
.m30_c00244{transform:matrix(0.246632,0.003699,-0.003750,0.249972,0,0);-ms-transform:matrix(0.246632,0.003699,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.246632,0.003699,-0.003750,0.249972,0,0);}
.m85_c00244{transform:matrix(0.247591,0.003466,-0.003500,0.249976,0,0);-ms-transform:matrix(0.247591,0.003466,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.247591,0.003466,-0.003500,0.249976,0,0);}
.ma_c00244{transform:matrix(0.248882,0.003733,-0.003750,0.249972,0,0);-ms-transform:matrix(0.248882,0.003733,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.248882,0.003733,-0.003750,0.249972,0,0);}
.m77_c00244{transform:matrix(0.248891,0.003484,-0.003500,0.249976,0,0);-ms-transform:matrix(0.248891,0.003484,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.248891,0.003484,-0.003500,0.249976,0,0);}
.m54_c00244{transform:matrix(0.249591,0.003494,-0.003500,0.249976,0,0);-ms-transform:matrix(0.249591,0.003494,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.249591,0.003494,-0.003500,0.249976,0,0);}
.m67_c00244{transform:matrix(0.249656,0.003495,-0.003500,0.249976,0,0);-ms-transform:matrix(0.249656,0.003495,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.249656,0.003495,-0.003500,0.249976,0,0);}
.m2c_c00244{transform:matrix(0.249752,0.003746,-0.003750,0.249972,0,0);-ms-transform:matrix(0.249752,0.003746,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.249752,0.003746,-0.003750,0.249972,0,0);}
.m53_c00244{transform:matrix(0.249972,0.003750,-0.003750,0.249972,0,0);-ms-transform:matrix(0.249972,0.003750,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.249972,0.003750,-0.003750,0.249972,0,0);}
.m18_c00244{transform:matrix(0.251192,0.003768,-0.003750,0.249972,0,0);-ms-transform:matrix(0.251192,0.003768,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.251192,0.003768,-0.003750,0.249972,0,0);}
.m81_c00244{transform:matrix(0.252655,0.003537,-0.003500,0.249976,0,0);-ms-transform:matrix(0.252655,0.003537,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.252655,0.003537,-0.003500,0.249976,0,0);}
.m4e_c00244{transform:matrix(0.253506,0.003803,-0.003750,0.249972,0,0);-ms-transform:matrix(0.253506,0.003803,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.253506,0.003803,-0.003750,0.249972,0,0);}
.m63_c00244{transform:matrix(0.253510,0.003549,-0.003500,0.249976,0,0);-ms-transform:matrix(0.253510,0.003549,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.253510,0.003549,-0.003500,0.249976,0,0);}
.m61_c00244{transform:matrix(0.254140,0.003558,-0.003500,0.249976,0,0);-ms-transform:matrix(0.254140,0.003558,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.254140,0.003558,-0.003500,0.249976,0,0);}
.me_c00244{transform:matrix(0.254936,0.003824,-0.003750,0.249972,0,0);-ms-transform:matrix(0.254936,0.003824,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.254936,0.003824,-0.003750,0.249972,0,0);}
.m2a_c00244{transform:matrix(0.254951,0.003824,-0.003750,0.249972,0,0);-ms-transform:matrix(0.254951,0.003824,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.254951,0.003824,-0.003750,0.249972,0,0);}
.m58_c00244{transform:matrix(0.254955,0.003569,-0.003500,0.249976,0,0);-ms-transform:matrix(0.254955,0.003569,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.254955,0.003569,-0.003500,0.249976,0,0);}
.m3f_c00244{transform:matrix(0.255661,0.003835,-0.003750,0.249972,0,0);-ms-transform:matrix(0.255661,0.003835,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.255661,0.003835,-0.003750,0.249972,0,0);}
.m15_c00244{transform:matrix(0.255826,0.003837,-0.003750,0.249972,0,0);-ms-transform:matrix(0.255826,0.003837,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.255826,0.003837,-0.003750,0.249972,0,0);}
.m31_c00244{transform:matrix(0.256231,0.003843,-0.003750,0.249972,0,0);-ms-transform:matrix(0.256231,0.003843,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.256231,0.003843,-0.003750,0.249972,0,0);}
.m37_c00244{transform:matrix(0.256511,0.003848,-0.003750,0.249972,0,0);-ms-transform:matrix(0.256511,0.003848,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.256511,0.003848,-0.003750,0.249972,0,0);}
.m3a_c00244{transform:matrix(0.257136,0.003857,-0.003750,0.249972,0,0);-ms-transform:matrix(0.257136,0.003857,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.257136,0.003857,-0.003750,0.249972,0,0);}
.m79_c00244{transform:matrix(0.257265,0.003602,-0.003500,0.249976,0,0);-ms-transform:matrix(0.257265,0.003602,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.257265,0.003602,-0.003500,0.249976,0,0);}
.m5e_c00244{transform:matrix(0.259995,0.003640,-0.003500,0.249976,0,0);-ms-transform:matrix(0.259995,0.003640,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.259995,0.003640,-0.003500,0.249976,0,0);}
.m5a_c00244{transform:matrix(0.260160,0.003642,-0.003500,0.249976,0,0);-ms-transform:matrix(0.260160,0.003642,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.260160,0.003642,-0.003500,0.249976,0,0);}
.mf_c00244{transform:matrix(0.260226,0.003903,-0.003750,0.249972,0,0);-ms-transform:matrix(0.260226,0.003903,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.260226,0.003903,-0.003750,0.249972,0,0);}
.m70_c00244{transform:matrix(0.260229,0.003643,-0.003500,0.249976,0,0);-ms-transform:matrix(0.260229,0.003643,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.260229,0.003643,-0.003500,0.249976,0,0);}
.m22_c00244{transform:matrix(0.260571,0.003909,-0.003750,0.249972,0,0);-ms-transform:matrix(0.260571,0.003909,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.260571,0.003909,-0.003750,0.249972,0,0);}
.m56_c00244{transform:matrix(0.262114,0.003670,-0.003500,0.249976,0,0);-ms-transform:matrix(0.262114,0.003670,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.262114,0.003670,-0.003500,0.249976,0,0);}
.m7a_c00244{transform:matrix(0.262589,0.003676,-0.003500,0.249976,0,0);-ms-transform:matrix(0.262589,0.003676,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.262589,0.003676,-0.003500,0.249976,0,0);}
.m20_c00244{transform:matrix(0.262910,0.003944,-0.003750,0.249972,0,0);-ms-transform:matrix(0.262910,0.003944,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.262910,0.003944,-0.003750,0.249972,0,0);}
.m29_c00244{transform:matrix(0.263605,0.003954,-0.003750,0.249972,0,0);-ms-transform:matrix(0.263605,0.003954,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.263605,0.003954,-0.003750,0.249972,0,0);}
.m6d_c00244{transform:matrix(0.266669,0.003733,-0.003500,0.249976,0,0);-ms-transform:matrix(0.266669,0.003733,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.266669,0.003733,-0.003500,0.249976,0,0);}
.m21_c00244{transform:matrix(0.266670,0.004000,-0.003750,0.249972,0,0);-ms-transform:matrix(0.266670,0.004000,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.266670,0.004000,-0.003750,0.249972,0,0);}
.m5c_c00244{transform:matrix(0.267504,0.003745,-0.003500,0.249976,0,0);-ms-transform:matrix(0.267504,0.003745,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.267504,0.003745,-0.003500,0.249976,0,0);}
.m7b_c00244{transform:matrix(0.268669,0.003761,-0.003500,0.249976,0,0);-ms-transform:matrix(0.268669,0.003761,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.268669,0.003761,-0.003500,0.249976,0,0);}
.m35_c00244{transform:matrix(0.268720,0.004031,-0.003750,0.249972,0,0);-ms-transform:matrix(0.268720,0.004031,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.268720,0.004031,-0.003750,0.249972,0,0);}
.m7_c00244{transform:matrix(0.269240,0.004039,-0.003750,0.249972,0,0);-ms-transform:matrix(0.269240,0.004039,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.269240,0.004039,-0.003750,0.249972,0,0);}
.m32_c00244{transform:matrix(0.269325,0.004040,-0.003750,0.249972,0,0);-ms-transform:matrix(0.269325,0.004040,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.269325,0.004040,-0.003750,0.249972,0,0);}
.m7e_c00244{transform:matrix(0.269384,0.003771,-0.003500,0.249976,0,0);-ms-transform:matrix(0.269384,0.003771,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.269384,0.003771,-0.003500,0.249976,0,0);}
.m13_c00244{transform:matrix(0.269490,0.004042,-0.003750,0.249972,0,0);-ms-transform:matrix(0.269490,0.004042,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.269490,0.004042,-0.003750,0.249972,0,0);}
.m47_c00244{transform:matrix(0.269755,0.004046,-0.003750,0.249972,0,0);-ms-transform:matrix(0.269755,0.004046,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.269755,0.004046,-0.003750,0.249972,0,0);}
.m25_c00244{transform:matrix(0.269915,0.004049,-0.003750,0.249972,0,0);-ms-transform:matrix(0.269915,0.004049,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.269915,0.004049,-0.003750,0.249972,0,0);}
.m72_c00244{transform:matrix(0.270668,0.003789,-0.003500,0.249976,0,0);-ms-transform:matrix(0.270668,0.003789,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.270668,0.003789,-0.003500,0.249976,0,0);}
.m75_c00244{transform:matrix(0.272718,0.003818,-0.003500,0.249976,0,0);-ms-transform:matrix(0.272718,0.003818,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.272718,0.003818,-0.003500,0.249976,0,0);}
.m8c_c00244{transform:matrix(0.272763,0.003819,-0.003500,0.249976,0,0);-ms-transform:matrix(0.272763,0.003819,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.272763,0.003819,-0.003500,0.249976,0,0);}
.md_c00244{transform:matrix(0.272824,0.004092,-0.003750,0.249972,0,0);-ms-transform:matrix(0.272824,0.004092,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.272824,0.004092,-0.003750,0.249972,0,0);}
.m71_c00244{transform:matrix(0.273023,0.003822,-0.003500,0.249976,0,0);-ms-transform:matrix(0.273023,0.003822,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.273023,0.003822,-0.003500,0.249976,0,0);}
.m4a_c00244{transform:matrix(0.273789,0.004107,-0.003750,0.249972,0,0);-ms-transform:matrix(0.273789,0.004107,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.273789,0.004107,-0.003750,0.249972,0,0);}
.m1d_c00244{transform:matrix(0.273849,0.004108,-0.003750,0.249972,0,0);-ms-transform:matrix(0.273849,0.004108,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.273849,0.004108,-0.003750,0.249972,0,0);}
.m89_c00244{transform:matrix(0.274013,0.003836,-0.003500,0.249976,0,0);-ms-transform:matrix(0.274013,0.003836,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.274013,0.003836,-0.003500,0.249976,0,0);}
.m34_c00244{transform:matrix(0.274379,0.004116,-0.003750,0.249972,0,0);-ms-transform:matrix(0.274379,0.004116,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.274379,0.004116,-0.003750,0.249972,0,0);}
.m87_c00244{transform:matrix(0.276018,0.003864,-0.003500,0.249976,0,0);-ms-transform:matrix(0.276018,0.003864,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.276018,0.003864,-0.003500,0.249976,0,0);}
.m50_c00244{transform:matrix(0.276624,0.004149,-0.003750,0.249972,0,0);-ms-transform:matrix(0.276624,0.004149,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.276624,0.004149,-0.003750,0.249972,0,0);}
.m52_c00244{transform:matrix(0.277284,0.004159,-0.003750,0.249972,0,0);-ms-transform:matrix(0.277284,0.004159,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.277284,0.004159,-0.003750,0.249972,0,0);}
.m5f_c00244{transform:matrix(0.277333,0.003883,-0.003500,0.249976,0,0);-ms-transform:matrix(0.277333,0.003883,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.277333,0.003883,-0.003500,0.249976,0,0);}
.m57_c00244{transform:matrix(0.277478,0.003885,-0.003500,0.249976,0,0);-ms-transform:matrix(0.277478,0.003885,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.277478,0.003885,-0.003500,0.249976,0,0);}
.m3d_c00244{transform:matrix(0.277789,0.004167,-0.003750,0.249972,0,0);-ms-transform:matrix(0.277789,0.004167,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.277789,0.004167,-0.003750,0.249972,0,0);}
.mc_c00244{transform:matrix(0.277969,0.004170,-0.003750,0.249972,0,0);-ms-transform:matrix(0.277969,0.004170,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.277969,0.004170,-0.003750,0.249972,0,0);}
.m4f_c00244{transform:matrix(0.278374,0.004176,-0.003750,0.249972,0,0);-ms-transform:matrix(0.278374,0.004176,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.278374,0.004176,-0.003750,0.249972,0,0);}
.m62_c00244{transform:matrix(0.278378,0.003897,-0.003500,0.249976,0,0);-ms-transform:matrix(0.278378,0.003897,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.278378,0.003897,-0.003500,0.249976,0,0);}
.m7d_c00244{transform:matrix(0.279443,0.003912,-0.003500,0.249976,0,0);-ms-transform:matrix(0.279443,0.003912,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.279443,0.003912,-0.003500,0.249976,0,0);}
.m3e_c00244{transform:matrix(0.279704,0.004196,-0.003750,0.249972,0,0);-ms-transform:matrix(0.279704,0.004196,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.279704,0.004196,-0.003750,0.249972,0,0);}
.m65_c00244{transform:matrix(0.280078,0.003921,-0.003500,0.249976,0,0);-ms-transform:matrix(0.280078,0.003921,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.280078,0.003921,-0.003500,0.249976,0,0);}
.m27_c00244{transform:matrix(0.280438,0.004207,-0.003750,0.249972,0,0);-ms-transform:matrix(0.280438,0.004207,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.280438,0.004207,-0.003750,0.249972,0,0);}
.m5d_c00244{transform:matrix(0.281012,0.003934,-0.003500,0.249976,0,0);-ms-transform:matrix(0.281012,0.003934,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.281012,0.003934,-0.003500,0.249976,0,0);}
.m24_c00244{transform:matrix(0.281423,0.004221,-0.003750,0.249972,0,0);-ms-transform:matrix(0.281423,0.004221,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.281423,0.004221,-0.003750,0.249972,0,0);}
.m16_c00244{transform:matrix(0.281528,0.004223,-0.003750,0.249972,0,0);-ms-transform:matrix(0.281528,0.004223,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.281528,0.004223,-0.003750,0.249972,0,0);}
.m10_c00244{transform:matrix(0.282293,0.004234,-0.003750,0.249972,0,0);-ms-transform:matrix(0.282293,0.004234,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.282293,0.004234,-0.003750,0.249972,0,0);}
.m68_c00244{transform:matrix(0.282572,0.003956,-0.003500,0.249976,0,0);-ms-transform:matrix(0.282572,0.003956,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.282572,0.003956,-0.003500,0.249976,0,0);}
.m78_c00244{transform:matrix(0.283097,0.003963,-0.003500,0.249976,0,0);-ms-transform:matrix(0.283097,0.003963,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.283097,0.003963,-0.003500,0.249976,0,0);}
.m76_c00244{transform:matrix(0.283432,0.003968,-0.003500,0.249976,0,0);-ms-transform:matrix(0.283432,0.003968,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.283432,0.003968,-0.003500,0.249976,0,0);}
.m4c_c00244{transform:matrix(0.283778,0.004257,-0.003750,0.249972,0,0);-ms-transform:matrix(0.283778,0.004257,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.283778,0.004257,-0.003750,0.249972,0,0);}
.m42_c00244{transform:matrix(0.284738,0.004271,-0.003750,0.249972,0,0);-ms-transform:matrix(0.284738,0.004271,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.284738,0.004271,-0.003750,0.249972,0,0);}
.m3_c00244{transform:matrix(0.285469,0.005138,-0.004499,0.249960,0,0);-ms-transform:matrix(0.285469,0.005138,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.285469,0.005138,-0.004499,0.249960,0,0);}
.m48_c00244{transform:matrix(0.286568,0.004299,-0.003750,0.249972,0,0);-ms-transform:matrix(0.286568,0.004299,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.286568,0.004299,-0.003750,0.249972,0,0);}
.m2f_c00244{transform:matrix(0.288103,0.004322,-0.003750,0.249972,0,0);-ms-transform:matrix(0.288103,0.004322,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.288103,0.004322,-0.003750,0.249972,0,0);}
.m23_c00244{transform:matrix(0.288243,0.004324,-0.003750,0.249972,0,0);-ms-transform:matrix(0.288243,0.004324,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.288243,0.004324,-0.003750,0.249972,0,0);}
.m80_c00244{transform:matrix(0.288247,0.004035,-0.003500,0.249976,0,0);-ms-transform:matrix(0.288247,0.004035,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.288247,0.004035,-0.003500,0.249976,0,0);}
.m66_c00244{transform:matrix(0.288362,0.004037,-0.003500,0.249976,0,0);-ms-transform:matrix(0.288362,0.004037,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.288362,0.004037,-0.003500,0.249976,0,0);}
.m59_c00244{transform:matrix(0.288807,0.004043,-0.003500,0.249976,0,0);-ms-transform:matrix(0.288807,0.004043,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.288807,0.004043,-0.003500,0.249976,0,0);}
.m19_c00244{transform:matrix(0.289407,0.004341,-0.003750,0.249972,0,0);-ms-transform:matrix(0.289407,0.004341,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.289407,0.004341,-0.003750,0.249972,0,0);}
.m49_c00244{transform:matrix(0.289552,0.004343,-0.003750,0.249972,0,0);-ms-transform:matrix(0.289552,0.004343,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.289552,0.004343,-0.003750,0.249972,0,0);}
.m74_c00244{transform:matrix(0.290227,0.004063,-0.003500,0.249976,0,0);-ms-transform:matrix(0.290227,0.004063,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.290227,0.004063,-0.003500,0.249976,0,0);}
.m43_c00244{transform:matrix(0.290357,0.004355,-0.003750,0.249972,0,0);-ms-transform:matrix(0.290357,0.004355,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.290357,0.004355,-0.003750,0.249972,0,0);}
.m55_c00244{transform:matrix(0.291231,0.004077,-0.003500,0.249976,0,0);-ms-transform:matrix(0.291231,0.004077,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.291231,0.004077,-0.003500,0.249976,0,0);}
.m2_c00244{transform:matrix(0.291313,0.005244,-0.004499,0.249960,0,0);-ms-transform:matrix(0.291313,0.005244,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.291313,0.005244,-0.004499,0.249960,0,0);}
.m7f_c00244{transform:matrix(0.293886,0.004114,-0.003500,0.249976,0,0);-ms-transform:matrix(0.293886,0.004114,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.293886,0.004114,-0.003500,0.249976,0,0);}
.m3b_c00244{transform:matrix(0.294047,0.004411,-0.003750,0.249972,0,0);-ms-transform:matrix(0.294047,0.004411,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.294047,0.004411,-0.003750,0.249972,0,0);}
.m2d_c00244{transform:matrix(0.294062,0.004411,-0.003750,0.249972,0,0);-ms-transform:matrix(0.294062,0.004411,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.294062,0.004411,-0.003750,0.249972,0,0);}
.m2b_c00244{transform:matrix(0.294987,0.004425,-0.003750,0.249972,0,0);-ms-transform:matrix(0.294987,0.004425,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.294987,0.004425,-0.003750,0.249972,0,0);}
.m17_c00244{transform:matrix(0.294997,0.004425,-0.003750,0.249972,0,0);-ms-transform:matrix(0.294997,0.004425,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.294997,0.004425,-0.003750,0.249972,0,0);}
.m6c_c00244{transform:matrix(0.295521,0.004137,-0.003500,0.249976,0,0);-ms-transform:matrix(0.295521,0.004137,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.295521,0.004137,-0.003500,0.249976,0,0);}
.m28_c00244{transform:matrix(0.295567,0.004434,-0.003750,0.249972,0,0);-ms-transform:matrix(0.295567,0.004434,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.295567,0.004434,-0.003750,0.249972,0,0);}
.m60_c00244{transform:matrix(0.296331,0.004149,-0.003500,0.249976,0,0);-ms-transform:matrix(0.296331,0.004149,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.296331,0.004149,-0.003500,0.249976,0,0);}
.m5b_c00244{transform:matrix(0.296881,0.004156,-0.003500,0.249976,0,0);-ms-transform:matrix(0.296881,0.004156,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.296881,0.004156,-0.003500,0.249976,0,0);}
.m4d_c00244{transform:matrix(0.297382,0.004461,-0.003750,0.249972,0,0);-ms-transform:matrix(0.297382,0.004461,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.297382,0.004461,-0.003750,0.249972,0,0);}
.m1_c00244{transform:matrix(0.298727,0.005377,-0.004499,0.249960,0,0);-ms-transform:matrix(0.298727,0.005377,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.298727,0.005377,-0.004499,0.249960,0,0);}
.m45_c00244{transform:matrix(0.298971,0.004485,-0.003750,0.249972,0,0);-ms-transform:matrix(0.298971,0.004485,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.298971,0.004485,-0.003750,0.249972,0,0);}
.m12_c00244{transform:matrix(0.299426,0.004491,-0.003750,0.249972,0,0);-ms-transform:matrix(0.299426,0.004491,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.299426,0.004491,-0.003750,0.249972,0,0);}
.m14_c00244{transform:matrix(0.299856,0.004498,-0.003750,0.249972,0,0);-ms-transform:matrix(0.299856,0.004498,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.299856,0.004498,-0.003750,0.249972,0,0);}
.m4b_c00244{transform:matrix(0.300296,0.004504,-0.003750,0.249972,0,0);-ms-transform:matrix(0.300296,0.004504,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.300296,0.004504,-0.003750,0.249972,0,0);}
.m6f_c00244{transform:matrix(0.300831,0.004212,-0.003500,0.249976,0,0);-ms-transform:matrix(0.300831,0.004212,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.300831,0.004212,-0.003500,0.249976,0,0);}
.m6a_c00244{transform:matrix(0.301100,0.004215,-0.003500,0.249976,0,0);-ms-transform:matrix(0.301100,0.004215,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.301100,0.004215,-0.003500,0.249976,0,0);}
.m1f_c00244{transform:matrix(0.301851,0.004528,-0.003750,0.249972,0,0);-ms-transform:matrix(0.301851,0.004528,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.301851,0.004528,-0.003750,0.249972,0,0);}
.m1e_c00244{transform:matrix(0.302631,0.004539,-0.003750,0.249972,0,0);-ms-transform:matrix(0.302631,0.004539,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.302631,0.004539,-0.003750,0.249972,0,0);}
.m73_c00244{transform:matrix(0.303875,0.004254,-0.003500,0.249976,0,0);-ms-transform:matrix(0.303875,0.004254,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.303875,0.004254,-0.003500,0.249976,0,0);}
.m1c_c00244{transform:matrix(0.304226,0.004563,-0.003750,0.249972,0,0);-ms-transform:matrix(0.304226,0.004563,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.304226,0.004563,-0.003750,0.249972,0,0);}
.m11_c00244{transform:matrix(0.308065,0.004621,-0.003750,0.249972,0,0);-ms-transform:matrix(0.308065,0.004621,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.308065,0.004621,-0.003750,0.249972,0,0);}
.m40_c00244{transform:matrix(0.312530,0.004688,-0.003750,0.249972,0,0);-ms-transform:matrix(0.312530,0.004688,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.312530,0.004688,-0.003750,0.249972,0,0);}
.v0_c00244{vertical-align:0.000000px;}
.ls0_c00244{letter-spacing:0.000000px;}
.sc__c00244{text-shadow:none;}
.sc0_c00244{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__c00244{-webkit-text-stroke:0px transparent;}
.sc0_c00244{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00244{word-spacing:0.000000px;}
.fc0_c00244{color:transparent;}
.fs4_c00244{font-size:66.006468px;}
.fs3_c00244{font-size:66.007425px;}
.fs1_c00244{font-size:66.010691px;}
.fs6_c00244{font-size:72.007056px;}
.fs2_c00244{font-size:72.008100px;}
.fs5_c00244{font-size:84.008232px;}
.fs7_c00244{font-size:102.009996px;}
.fs0_c00244{font-size:114.000000px;}
.y0_c00244{bottom:0.000000px;}
.y1_c00244{bottom:203.040000px;}
.ya1_c00244{bottom:235.529262px;}
.ya0_c00244{bottom:236.119194px;}
.y9f_c00244{bottom:236.921961px;}
.y9e_c00244{bottom:237.668847px;}
.y9d_c00244{bottom:238.451223px;}
.y9c_c00244{bottom:238.923933px;}
.y9b_c00244{bottom:239.396391px;}
.y9a_c00244{bottom:240.470289px;}
.y99_c00244{bottom:240.931407px;}
.y98_c00244{bottom:241.411572px;}
.y97_c00244{bottom:241.895370px;}
.y96_c00244{bottom:242.463000px;}
.y95_c00244{bottom:511.048551px;}
.y94_c00244{bottom:511.822737px;}
.y93_c00244{bottom:512.288328px;}
.y92_c00244{bottom:513.546732px;}
.y91_c00244{bottom:514.007955px;}
.y90_c00244{bottom:515.259219px;}
.y8f_c00244{bottom:516.015261px;}
.y8e_c00244{bottom:516.783000px;}
.y8d_c00244{bottom:548.374059px;}
.y8c_c00244{bottom:548.374614px;}
.y8b_c00244{bottom:548.375352px;}
.y8a_c00244{bottom:571.953843px;}
.y89_c00244{bottom:572.393406px;}
.y88_c00244{bottom:573.249705px;}
.y87_c00244{bottom:573.677382px;}
.y86_c00244{bottom:574.829247px;}
.y85_c00244{bottom:575.133687px;}
.y84_c00244{bottom:575.990511px;}
.y83_c00244{bottom:576.418230px;}
.y82_c00244{bottom:577.148991px;}
.y81_c00244{bottom:577.739115px;}
.y80_c00244{bottom:578.164188px;}
.y7f_c00244{bottom:579.031722px;}
.y7e_c00244{bottom:579.456417px;}
.y7d_c00244{bottom:579.894564px;}
.y7c_c00244{bottom:580.762350px;}
.y7b_c00244{bottom:603.013953px;}
.y7a_c00244{bottom:604.175763px;}
.y79_c00244{bottom:605.762928px;}
.y78_c00244{bottom:606.489279px;}
.y77_c00244{bottom:607.198923px;}
.y76_c00244{bottom:607.773843px;}
.y75_c00244{bottom:609.084102px;}
.y74_c00244{bottom:609.508440px;}
.y73_c00244{bottom:609.806862px;}
.y72_c00244{bottom:611.387160px;}
.y71_c00244{bottom:611.814732px;}
.y70_c00244{bottom:635.304426px;}
.y6f_c00244{bottom:635.693673px;}
.y6e_c00244{bottom:636.361521px;}
.y6d_c00244{bottom:636.878649px;}
.y6c_c00244{bottom:638.204547px;}
.y6b_c00244{bottom:639.277542px;}
.y6a_c00244{bottom:639.911910px;}
.y69_c00244{bottom:640.350264px;}
.y68_c00244{bottom:641.014248px;}
.y67_c00244{bottom:641.415657px;}
.y66_c00244{bottom:642.225762px;}
.y65_c00244{bottom:642.873972px;}
.y64_c00244{bottom:643.409130px;}
.y63_c00244{bottom:667.372107px;}
.y62_c00244{bottom:668.135814px;}
.y61_c00244{bottom:669.678117px;}
.y60_c00244{bottom:670.308684px;}
.y5f_c00244{bottom:671.246187px;}
.y5e_c00244{bottom:671.711778px;}
.y5d_c00244{bottom:672.637689px;}
.y5c_c00244{bottom:673.253514px;}
.y5b_c00244{bottom:674.808060px;}
.y5a_c00244{bottom:675.273000px;}
.y59_c00244{bottom:706.541737px;}
.y58_c00244{bottom:708.571447px;}
.y57_c00244{bottom:709.002322px;}
.y56_c00244{bottom:730.898475px;}
.y55_c00244{bottom:731.374230px;}
.y54_c00244{bottom:732.140903px;}
.y53_c00244{bottom:732.614220px;}
.y52_c00244{bottom:734.012355px;}
.y51_c00244{bottom:734.946885px;}
.y50_c00244{bottom:736.333920px;}
.y4f_c00244{bottom:737.116522px;}
.y4e_c00244{bottom:738.047565px;}
.y4d_c00244{bottom:739.125248px;}
.y4c_c00244{bottom:739.457332px;}
.y4b_c00244{bottom:740.055840px;}
.y4a_c00244{bottom:762.563783px;}
.y49_c00244{bottom:762.981143px;}
.y48_c00244{bottom:763.865467px;}
.y47_c00244{bottom:764.728245px;}
.y46_c00244{bottom:765.143055px;}
.y45_c00244{bottom:765.588630px;}
.y44_c00244{bottom:767.603055px;}
.y43_c00244{bottom:768.178687px;}
.y42_c00244{bottom:769.055782px;}
.y41_c00244{bottom:769.905562px;}
.y40_c00244{bottom:770.196690px;}
.y3f_c00244{bottom:771.355365px;}
.y3e_c00244{bottom:771.645795px;}
.y3d_c00244{bottom:794.736990px;}
.y3c_c00244{bottom:795.381413px;}
.y3b_c00244{bottom:795.789915px;}
.y3a_c00244{bottom:796.310970px;}
.y39_c00244{bottom:796.986045px;}
.y38_c00244{bottom:797.373915px;}
.y37_c00244{bottom:798.320100px;}
.y36_c00244{bottom:799.512180px;}
.y35_c00244{bottom:800.039790px;}
.y34_c00244{bottom:801.116768px;}
.y33_c00244{bottom:802.050735px;}
.y32_c00244{bottom:802.698713px;}
.y31_c00244{bottom:826.571880px;}
.y30_c00244{bottom:826.970513px;}
.y2f_c00244{bottom:828.043148px;}
.y2e_c00244{bottom:828.442365px;}
.y2d_c00244{bottom:829.631895px;}
.y2c_c00244{bottom:830.042812px;}
.y2b_c00244{bottom:830.310855px;}
.y2a_c00244{bottom:831.490230px;}
.y29_c00244{bottom:832.171410px;}
.y28_c00244{bottom:832.556798px;}
.y27_c00244{bottom:833.367540px;}
.y26_c00244{bottom:834.164317px;}
.y25_c00244{bottom:834.563378px;}
.y24_c00244{bottom:857.626327px;}
.y23_c00244{bottom:857.901060px;}
.y22_c00244{bottom:858.432480px;}
.y21_c00244{bottom:858.957540px;}
.y20_c00244{bottom:860.302987px;}
.y1f_c00244{bottom:861.498960px;}
.y1e_c00244{bottom:862.155615px;}
.y1d_c00244{bottom:863.490323px;}
.y1c_c00244{bottom:863.878890px;}
.y1b_c00244{bottom:864.151230px;}
.y1a_c00244{bottom:865.204065px;}
.y19_c00244{bottom:865.614825px;}
.y18_c00244{bottom:889.473930px;}
.y17_c00244{bottom:890.439360px;}
.y16_c00244{bottom:890.813070px;}
.y15_c00244{bottom:891.894473px;}
.y14_c00244{bottom:892.646190px;}
.y13_c00244{bottom:893.857657px;}
.y12_c00244{bottom:895.203307px;}
.y11_c00244{bottom:896.175337px;}
.y10_c00244{bottom:896.669092px;}
.yf_c00244{bottom:920.745502px;}
.ye_c00244{bottom:922.102522px;}
.yd_c00244{bottom:923.763135px;}
.yc_c00244{bottom:924.261172px;}
.yb_c00244{bottom:925.107532px;}
.ya_c00244{bottom:925.913932px;}
.y9_c00244{bottom:926.436382px;}
.y8_c00244{bottom:927.598485px;}
.y7_c00244{bottom:928.101045px;}
.y6_c00244{bottom:928.570800px;}
.y5_c00244{bottom:929.073000px;}
.y4_c00244{bottom:988.307505px;}
.y3_c00244{bottom:989.736372px;}
.y2_c00244{bottom:991.714500px;}
.h6_c00244{height:66.006468px;}
.h5_c00244{height:66.007425px;}
.h3_c00244{height:66.010691px;}
.h8_c00244{height:72.007056px;}
.h4_c00244{height:72.008100px;}
.h7_c00244{height:84.008232px;}
.h9_c00244{height:102.009996px;}
.h2_c00244{height:114.000000px;}
.h1_c00244{height:1137.000000px;}
.h0_c00244{height:1137.240000px;}
.w0_c00244{width:915.000000px;}
.x0_c00244{left:0.000000px;}
.x1_c00244{left:1.350000px;}
.x5a_c00244{left:142.105992px;}
.x51_c00244{left:143.227860px;}
.x34_c00244{left:144.320880px;}
.x10_c00244{left:145.909665px;}
.x46_c00244{left:165.536250px;}
.x35_c00244{left:166.683555px;}
.x52_c00244{left:176.126322px;}
.x21_c00244{left:178.564650px;}
.x18_c00244{left:179.913945px;}
.x6a_c00244{left:182.079000px;}
.x3e_c00244{left:188.045498px;}
.x11_c00244{left:190.729343px;}
.x2b_c00244{left:199.893353px;}
.x5b_c00244{left:208.805916px;}
.x3f_c00244{left:211.784858px;}
.x6b_c00244{left:216.636000px;}
.x4b_c00244{left:242.027892px;}
.x22_c00244{left:244.986143px;}
.x6c_c00244{left:250.933500px;}
.x65_c00244{left:253.888500px;}
.x36_c00244{left:255.831233px;}
.x5_c00244{left:258.760500px;}
.x19_c00244{left:267.706905px;}
.x5c_c00244{left:275.259861px;}
.x2c_c00244{left:277.661340px;}
.x12_c00244{left:279.036630px;}
.x6d_c00244{left:283.870500px;}
.x40_c00244{left:288.731505px;}
.x1a_c00244{left:290.363917px;}
.x6_c00244{left:292.240500px;}
.x53_c00244{left:297.685023px;}
.x4c_c00244{left:309.537282px;}
.x23_c00244{left:312.538680px;}
.x2_c00244{left:314.065500px;}
.x54_c00244{left:320.608338px;}
.x7_c00244{left:323.557500px;}
.x5d_c00244{left:341.941785px;}
.x37_c00244{left:343.594365px;}
.x24_c00244{left:344.632620px;}
.x55_c00244{left:353.275800px;}
.x41_c00244{left:355.201995px;}
.x8_c00244{left:357.061500px;}
.x6e_c00244{left:360.577500px;}
.x66_c00244{left:362.730000px;}
.x2d_c00244{left:367.363868px;}
.x5e_c00244{left:374.661747px;}
.x6f_c00244{left:394.324500px;}
.x47_c00244{left:399.225000px;}
.x13_c00244{left:401.353965px;}
.x2e_c00244{left:411.339848px;}
.x5f_c00244{left:420.028377px;}
.x3_c00244{left:423.961500px;}
.x70_c00244{left:428.089500px;}
.x9_c00244{left:434.535000px;}
.x48_c00244{left:443.212500px;}
.x67_c00244{left:452.106000px;}
.x56_c00244{left:454.045707px;}
.x38_c00244{left:455.346218px;}
.xa_c00244{left:469.365000px;}
.x60_c00244{left:476.190654px;}
.x71_c00244{left:483.973500px;}
.x68_c00244{left:485.050500px;}
.x4d_c00244{left:487.764780px;}
.x1b_c00244{left:488.834872px;}
.x57_c00244{left:498.326337px;}
.x25_c00244{left:499.676595px;}
.x4_c00244{left:503.343000px;}
.x61_c00244{left:509.099616px;}
.x42_c00244{left:510.146813px;}
.x14_c00244{left:511.525080px;}
.x26_c00244{left:522.047108px;}
.xb_c00244{left:523.125000px;}
.x72_c00244{left:537.322500px;}
.x49_c00244{left:542.605500px;}
.x58_c00244{left:552.873093px;}
.x27_c00244{left:556.343160px;}
.x62_c00244{left:575.016540px;}
.x43_c00244{left:576.849803px;}
.xc_c00244{left:579.549000px;}
.x1c_c00244{left:588.470850px;}
.x2f_c00244{left:589.598880px;}
.x73_c00244{left:594.663000px;}
.x63_c00244{left:598.476876px;}
.x59_c00244{left:608.720370px;}
.x39_c00244{left:610.345875px;}
.xd_c00244{left:612.751500px;}
.x30_c00244{left:621.958343px;}
.x74_c00244{left:636.801000px;}
.x3a_c00244{left:644.651910px;}
.x28_c00244{left:655.449615px;}
.x69_c00244{left:663.492000px;}
.x3b_c00244{left:676.506855px;}
.x15_c00244{left:678.143070px;}
.x4e_c00244{left:687.619866px;}
.x29_c00244{left:688.665600px;}
.x1d_c00244{left:700.572390px;}
.x44_c00244{left:710.515305px;}
.x16_c00244{left:712.159117px;}
.x64_c00244{left:719.981577px;}
.x31_c00244{left:721.604820px;}
.xe_c00244{left:723.459000px;}
.x4f_c00244{left:730.773084px;}
.x3c_c00244{left:742.927358px;}
.x1e_c00244{left:744.278347px;}
.x32_c00244{left:755.639850px;}
.x45_c00244{left:765.327638px;}
.x2a_c00244{left:778.078628px;}
.x50_c00244{left:786.406638px;}
.x1f_c00244{left:788.608350px;}
.x17_c00244{left:799.926383px;}
.x33_c00244{left:809.403780px;}
.x20_c00244{left:811.524885px;}
.xf_c00244{left:813.927000px;}
.x4a_c00244{left:819.325500px;}
.x3d_c00244{left:843.109373px;}
@media print{
.v0_c00244{vertical-align:0.000000pt;}
.ls0_c00244{letter-spacing:0.000000pt;}
.ws0_c00244{word-spacing:0.000000pt;}
.fs4_c00244{font-size:58.672416pt;}
.fs3_c00244{font-size:58.673266pt;}
.fs1_c00244{font-size:58.676170pt;}
.fs6_c00244{font-size:64.006272pt;}
.fs2_c00244{font-size:64.007200pt;}
.fs5_c00244{font-size:74.673984pt;}
.fs7_c00244{font-size:90.675552pt;}
.fs0_c00244{font-size:101.333333pt;}
.y0_c00244{bottom:0.000000pt;}
.y1_c00244{bottom:180.480000pt;}
.ya1_c00244{bottom:209.359344pt;}
.ya0_c00244{bottom:209.883728pt;}
.y9f_c00244{bottom:210.597299pt;}
.y9e_c00244{bottom:211.261197pt;}
.y9d_c00244{bottom:211.956643pt;}
.y9c_c00244{bottom:212.376829pt;}
.y9b_c00244{bottom:212.796792pt;}
.y9a_c00244{bottom:213.751368pt;}
.y99_c00244{bottom:214.161251pt;}
.y98_c00244{bottom:214.588064pt;}
.y97_c00244{bottom:215.018107pt;}
.y96_c00244{bottom:215.522667pt;}
.y95_c00244{bottom:454.265379pt;}
.y94_c00244{bottom:454.953544pt;}
.y93_c00244{bottom:455.367403pt;}
.y92_c00244{bottom:456.485984pt;}
.y91_c00244{bottom:456.895960pt;}
.y90_c00244{bottom:458.008195pt;}
.y8f_c00244{bottom:458.680232pt;}
.y8e_c00244{bottom:459.362667pt;}
.y8d_c00244{bottom:487.443608pt;}
.y8c_c00244{bottom:487.444101pt;}
.y8b_c00244{bottom:487.444757pt;}
.y8a_c00244{bottom:508.403416pt;}
.y89_c00244{bottom:508.794139pt;}
.y88_c00244{bottom:509.555293pt;}
.y87_c00244{bottom:509.935451pt;}
.y86_c00244{bottom:510.959331pt;}
.y85_c00244{bottom:511.229944pt;}
.y84_c00244{bottom:511.991565pt;}
.y83_c00244{bottom:512.371760pt;}
.y82_c00244{bottom:513.021325pt;}
.y81_c00244{bottom:513.545880pt;}
.y80_c00244{bottom:513.923723pt;}
.y7f_c00244{bottom:514.694864pt;}
.y7e_c00244{bottom:515.072371pt;}
.y7d_c00244{bottom:515.461835pt;}
.y7c_c00244{bottom:516.233200pt;}
.y7b_c00244{bottom:536.012403pt;}
.y7a_c00244{bottom:537.045123pt;}
.y79_c00244{bottom:538.455936pt;}
.y78_c00244{bottom:539.101581pt;}
.y77_c00244{bottom:539.732376pt;}
.y76_c00244{bottom:540.243416pt;}
.y75_c00244{bottom:541.408091pt;}
.y74_c00244{bottom:541.785280pt;}
.y73_c00244{bottom:542.050544pt;}
.y72_c00244{bottom:543.455253pt;}
.y71_c00244{bottom:543.835317pt;}
.y70_c00244{bottom:564.715045pt;}
.y6f_c00244{bottom:565.061043pt;}
.y6e_c00244{bottom:565.654685pt;}
.y6d_c00244{bottom:566.114355pt;}
.y6c_c00244{bottom:567.292931pt;}
.y6b_c00244{bottom:568.246704pt;}
.y6a_c00244{bottom:568.810587pt;}
.y69_c00244{bottom:569.200235pt;}
.y68_c00244{bottom:569.790443pt;}
.y67_c00244{bottom:570.147251pt;}
.y66_c00244{bottom:570.867344pt;}
.y65_c00244{bottom:571.443531pt;}
.y64_c00244{bottom:571.919227pt;}
.y63_c00244{bottom:593.219651pt;}
.y62_c00244{bottom:593.898501pt;}
.y61_c00244{bottom:595.269437pt;}
.y60_c00244{bottom:595.829941pt;}
.y5f_c00244{bottom:596.663277pt;}
.y5e_c00244{bottom:597.077136pt;}
.y5d_c00244{bottom:597.900168pt;}
.y5c_c00244{bottom:598.447568pt;}
.y5b_c00244{bottom:599.829387pt;}
.y5a_c00244{bottom:600.242667pt;}
.y59_c00244{bottom:628.037100pt;}
.y58_c00244{bottom:629.841287pt;}
.y57_c00244{bottom:630.224287pt;}
.y56_c00244{bottom:649.687533pt;}
.y55_c00244{bottom:650.110427pt;}
.y54_c00244{bottom:650.791913pt;}
.y53_c00244{bottom:651.212640pt;}
.y52_c00244{bottom:652.455427pt;}
.y51_c00244{bottom:653.286120pt;}
.y50_c00244{bottom:654.519040pt;}
.y4f_c00244{bottom:655.214687pt;}
.y4e_c00244{bottom:656.042280pt;}
.y4d_c00244{bottom:657.000220pt;}
.y4c_c00244{bottom:657.295407pt;}
.y4b_c00244{bottom:657.827413pt;}
.y4a_c00244{bottom:677.834473pt;}
.y49_c00244{bottom:678.205460pt;}
.y48_c00244{bottom:678.991527pt;}
.y47_c00244{bottom:679.758440pt;}
.y46_c00244{bottom:680.127160pt;}
.y45_c00244{bottom:680.523227pt;}
.y44_c00244{bottom:682.313827pt;}
.y43_c00244{bottom:682.825500pt;}
.y42_c00244{bottom:683.605140pt;}
.y41_c00244{bottom:684.360500pt;}
.y40_c00244{bottom:684.619280pt;}
.y3f_c00244{bottom:685.649213pt;}
.y3e_c00244{bottom:685.907373pt;}
.y3d_c00244{bottom:706.432880pt;}
.y3c_c00244{bottom:707.005700pt;}
.y3b_c00244{bottom:707.368813pt;}
.y3a_c00244{bottom:707.831973pt;}
.y39_c00244{bottom:708.432040pt;}
.y38_c00244{bottom:708.776813pt;}
.y37_c00244{bottom:709.617867pt;}
.y36_c00244{bottom:710.677493pt;}
.y35_c00244{bottom:711.146480pt;}
.y34_c00244{bottom:712.103793pt;}
.y33_c00244{bottom:712.933987pt;}
.y32_c00244{bottom:713.509967pt;}
.y31_c00244{bottom:734.730560pt;}
.y30_c00244{bottom:735.084900pt;}
.y2f_c00244{bottom:736.038353pt;}
.y2e_c00244{bottom:736.393213pt;}
.y2d_c00244{bottom:737.450573pt;}
.y2c_c00244{bottom:737.815833pt;}
.y2b_c00244{bottom:738.054093pt;}
.y2a_c00244{bottom:739.102427pt;}
.y29_c00244{bottom:739.707920pt;}
.y28_c00244{bottom:740.050487pt;}
.y27_c00244{bottom:740.771147pt;}
.y26_c00244{bottom:741.479393pt;}
.y25_c00244{bottom:741.834113pt;}
.y24_c00244{bottom:762.334513pt;}
.y23_c00244{bottom:762.578720pt;}
.y22_c00244{bottom:763.051093pt;}
.y21_c00244{bottom:763.517813pt;}
.y20_c00244{bottom:764.713767pt;}
.y1f_c00244{bottom:765.776853pt;}
.y1e_c00244{bottom:766.360547pt;}
.y1d_c00244{bottom:767.546953pt;}
.y1c_c00244{bottom:767.892347pt;}
.y1b_c00244{bottom:768.134427pt;}
.y1a_c00244{bottom:769.070280pt;}
.y19_c00244{bottom:769.435400pt;}
.y18_c00244{bottom:790.643493pt;}
.y17_c00244{bottom:791.501653pt;}
.y16_c00244{bottom:791.833840pt;}
.y15_c00244{bottom:792.795087pt;}
.y14_c00244{bottom:793.463280pt;}
.y13_c00244{bottom:794.540140pt;}
.y12_c00244{bottom:795.736273pt;}
.y11_c00244{bottom:796.600300pt;}
.y10_c00244{bottom:797.039193pt;}
.yf_c00244{bottom:818.440447pt;}
.ye_c00244{bottom:819.646687pt;}
.yd_c00244{bottom:821.122787pt;}
.yc_c00244{bottom:821.565487pt;}
.yb_c00244{bottom:822.317807pt;}
.ya_c00244{bottom:823.034607pt;}
.y9_c00244{bottom:823.499007pt;}
.y8_c00244{bottom:824.531987pt;}
.y7_c00244{bottom:824.978707pt;}
.y6_c00244{bottom:825.396267pt;}
.y5_c00244{bottom:825.842667pt;}
.y4_c00244{bottom:878.495560pt;}
.y3_c00244{bottom:879.765664pt;}
.y2_c00244{bottom:881.524000pt;}
.h6_c00244{height:58.672416pt;}
.h5_c00244{height:58.673266pt;}
.h3_c00244{height:58.676170pt;}
.h8_c00244{height:64.006272pt;}
.h4_c00244{height:64.007200pt;}
.h7_c00244{height:74.673984pt;}
.h9_c00244{height:90.675552pt;}
.h2_c00244{height:101.333333pt;}
.h1_c00244{height:1010.666667pt;}
.h0_c00244{height:1010.880000pt;}
.w0_c00244{width:813.333333pt;}
.x0_c00244{left:0.000000pt;}
.x1_c00244{left:1.200000pt;}
.x5a_c00244{left:126.316437pt;}
.x51_c00244{left:127.313653pt;}
.x34_c00244{left:128.285227pt;}
.x10_c00244{left:129.697480pt;}
.x46_c00244{left:147.143333pt;}
.x35_c00244{left:148.163160pt;}
.x52_c00244{left:156.556731pt;}
.x21_c00244{left:158.724133pt;}
.x18_c00244{left:159.923507pt;}
.x6a_c00244{left:161.848000pt;}
.x3e_c00244{left:167.151553pt;}
.x11_c00244{left:169.537193pt;}
.x2b_c00244{left:177.682980pt;}
.x5b_c00244{left:185.605259pt;}
.x3f_c00244{left:188.253207pt;}
.x6b_c00244{left:192.565333pt;}
.x4b_c00244{left:215.135904pt;}
.x22_c00244{left:217.765460pt;}
.x6c_c00244{left:223.052000pt;}
.x65_c00244{left:225.678667pt;}
.x36_c00244{left:227.405540pt;}
.x5_c00244{left:230.009333pt;}
.x19_c00244{left:237.961693pt;}
.x5c_c00244{left:244.675432pt;}
.x2c_c00244{left:246.810080pt;}
.x12_c00244{left:248.032560pt;}
.x6d_c00244{left:252.329333pt;}
.x40_c00244{left:256.650227pt;}
.x1a_c00244{left:258.101260pt;}
.x6_c00244{left:259.769333pt;}
.x53_c00244{left:264.608909pt;}
.x4c_c00244{left:275.144251pt;}
.x23_c00244{left:277.812160pt;}
.x2_c00244{left:279.169333pt;}
.x54_c00244{left:284.985189pt;}
.x7_c00244{left:287.606667pt;}
.x5d_c00244{left:303.948253pt;}
.x37_c00244{left:305.417213pt;}
.x24_c00244{left:306.340107pt;}
.x55_c00244{left:314.022933pt;}
.x41_c00244{left:315.735107pt;}
.x8_c00244{left:317.388000pt;}
.x6e_c00244{left:320.513333pt;}
.x66_c00244{left:322.426667pt;}
.x2d_c00244{left:326.545660pt;}
.x5e_c00244{left:333.032664pt;}
.x6f_c00244{left:350.510667pt;}
.x47_c00244{left:354.866667pt;}
.x13_c00244{left:356.759080pt;}
.x2e_c00244{left:365.635420pt;}
.x5f_c00244{left:373.358557pt;}
.x3_c00244{left:376.854667pt;}
.x70_c00244{left:380.524000pt;}
.x9_c00244{left:386.253333pt;}
.x48_c00244{left:393.966667pt;}
.x67_c00244{left:401.872000pt;}
.x56_c00244{left:403.596184pt;}
.x38_c00244{left:404.752193pt;}
.xa_c00244{left:417.213333pt;}
.x60_c00244{left:423.280581pt;}
.x71_c00244{left:430.198667pt;}
.x68_c00244{left:431.156000pt;}
.x4d_c00244{left:433.568693pt;}
.x1b_c00244{left:434.519887pt;}
.x57_c00244{left:442.956744pt;}
.x25_c00244{left:444.156973pt;}
.x4_c00244{left:447.416000pt;}
.x61_c00244{left:452.532992pt;}
.x42_c00244{left:453.463833pt;}
.x14_c00244{left:454.688960pt;}
.x26_c00244{left:464.041873pt;}
.xb_c00244{left:465.000000pt;}
.x72_c00244{left:477.620000pt;}
.x49_c00244{left:482.316000pt;}
.x58_c00244{left:491.442749pt;}
.x27_c00244{left:494.527253pt;}
.x62_c00244{left:511.125813pt;}
.x43_c00244{left:512.755380pt;}
.xc_c00244{left:515.154667pt;}
.x1c_c00244{left:523.085200pt;}
.x2f_c00244{left:524.087893pt;}
.x73_c00244{left:528.589333pt;}
.x63_c00244{left:531.979445pt;}
.x59_c00244{left:541.084773pt;}
.x39_c00244{left:542.529667pt;}
.xd_c00244{left:544.668000pt;}
.x30_c00244{left:552.851860pt;}
.x74_c00244{left:566.045333pt;}
.x3a_c00244{left:573.023920pt;}
.x28_c00244{left:582.621880pt;}
.x69_c00244{left:589.770667pt;}
.x3b_c00244{left:601.339427pt;}
.x15_c00244{left:602.793840pt;}
.x4e_c00244{left:611.217659pt;}
.x29_c00244{left:612.147200pt;}
.x1d_c00244{left:622.731013pt;}
.x44_c00244{left:631.569160pt;}
.x16_c00244{left:633.030327pt;}
.x64_c00244{left:639.983624pt;}
.x31_c00244{left:641.426507pt;}
.xe_c00244{left:643.074667pt;}
.x4f_c00244{left:649.576075pt;}
.x3c_c00244{left:660.379873pt;}
.x1e_c00244{left:661.580753pt;}
.x32_c00244{left:671.679867pt;}
.x45_c00244{left:680.291233pt;}
.x2a_c00244{left:691.625447pt;}
.x50_c00244{left:699.028123pt;}
.x1f_c00244{left:700.985200pt;}
.x17_c00244{left:711.045673pt;}
.x33_c00244{left:719.470027pt;}
.x20_c00244{left:721.355453pt;}
.xf_c00244{left:723.490667pt;}
.x4a_c00244{left:728.289333pt;}
.x3d_c00244{left:749.430553pt;}
}





/* 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_c00245 {
    display:none;
  }
  .loading-indicator_c00245.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00245 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_c00245 { 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_c00245" -> "#page-container .classname_c00245")
 */
.pf_c00245 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00245 { /* 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_c00245.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00245 { /* 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_c00245 { /* 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_c00245 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00245 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00245 {overflow:visible;}
  }
}
.c_c00245 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00245 { /* 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_c00245:after { /* webkit #35443 */
  content: '';
}
.t_c00245:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00245 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 */
}
.__c00245 { /* 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_c00245 { /* info for Javascript */
  display:none;
}
.l_c00245 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00245 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00245 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00245: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_c00245 {
    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_c00245.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00245.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_c00245 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00245{font-family:sans-serif;visibility:hidden;}
.sc__c00245{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00245{-webkit-text-stroke:0px transparent;}
}
.y0_c00245{bottom:0.000000px;}
.h0_c00245{height:1129.350000px;}
.h1_c00245{height:1129.500000px;}
.w0_c00245{width:915.000000px;}
.x0_c00245{left:0.000000px;}
@media print{
.y0_c00245{bottom:0.000000pt;}
.h0_c00245{height:1003.866667pt;}
.h1_c00245{height:1004.000000pt;}
.w0_c00245{width:813.333333pt;}
.x0_c00245{left:0.000000pt;}
}





/* 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_c00246 {
    display:none;
  }
  .loading-indicator_c00246.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00246 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_c00246 { 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_c00246" -> "#page-container .classname_c00246")
 */
.pf_c00246 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00246 { /* 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_c00246.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00246 { /* 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_c00246 { /* 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_c00246 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00246 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00246 {overflow:visible;}
  }
}
.c_c00246 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00246 { /* 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_c00246:after { /* webkit #35443 */
  content: '';
}
.t_c00246:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00246 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 */
}
.__c00246 { /* 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_c00246 { /* info for Javascript */
  display:none;
}
.l_c00246 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00246 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00246 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00246: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_c00246 {
    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_c00246.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00246.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_c00246 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00246{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00246;src:url('chunks/assets/font_c605e72f209fc835e906f064.woff2')format("woff");}.ff1_c00246{font-family:ff1_c00246;line-height:1.000000;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;}
.m29_c00246{transform:matrix(0.153978,0.002310,-0.003750,0.249972,0,0);-ms-transform:matrix(0.153978,0.002310,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.153978,0.002310,-0.003750,0.249972,0,0);}
.m37_c00246{transform:matrix(0.165126,0.002477,-0.003750,0.249972,0,0);-ms-transform:matrix(0.165126,0.002477,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.165126,0.002477,-0.003750,0.249972,0,0);}
.m3a_c00246{transform:matrix(0.168231,0.002523,-0.003750,0.249972,0,0);-ms-transform:matrix(0.168231,0.002523,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.168231,0.002523,-0.003750,0.249972,0,0);}
.m3c_c00246{transform:matrix(0.198368,0.002976,-0.003750,0.249972,0,0);-ms-transform:matrix(0.198368,0.002976,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.198368,0.002976,-0.003750,0.249972,0,0);}
.m1_c00246{transform:matrix(0.198741,0.003379,-0.004249,0.249964,0,0);-ms-transform:matrix(0.198741,0.003379,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.198741,0.003379,-0.004249,0.249964,0,0);}
.m38_c00246{transform:matrix(0.199183,0.002988,-0.003750,0.249972,0,0);-ms-transform:matrix(0.199183,0.002988,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.199183,0.002988,-0.003750,0.249972,0,0);}
.m58_c00246{transform:matrix(0.204000,0.002856,-0.003500,0.249976,0,0);-ms-transform:matrix(0.204000,0.002856,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.204000,0.002856,-0.003500,0.249976,0,0);}
.m0_c00246{transform:matrix(0.204970,0.003484,-0.004249,0.249964,0,0);-ms-transform:matrix(0.204970,0.003484,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.204970,0.003484,-0.004249,0.249964,0,0);}
.m2_c00246{transform:matrix(0.206005,0.003502,-0.004249,0.249964,0,0);-ms-transform:matrix(0.206005,0.003502,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.206005,0.003502,-0.004249,0.249964,0,0);}
.m30_c00246{transform:matrix(0.208252,0.003124,-0.003750,0.249972,0,0);-ms-transform:matrix(0.208252,0.003124,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.208252,0.003124,-0.003750,0.249972,0,0);}
.m3b_c00246{transform:matrix(0.216486,0.003247,-0.003750,0.249972,0,0);-ms-transform:matrix(0.216486,0.003247,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.216486,0.003247,-0.003750,0.249972,0,0);}
.m26_c00246{transform:matrix(0.222010,0.003330,-0.003750,0.249972,0,0);-ms-transform:matrix(0.222010,0.003330,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.222010,0.003330,-0.003750,0.249972,0,0);}
.m53_c00246{transform:matrix(0.224213,0.003139,-0.003500,0.249976,0,0);-ms-transform:matrix(0.224213,0.003139,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.224213,0.003139,-0.003500,0.249976,0,0);}
.m4b_c00246{transform:matrix(0.225618,0.003159,-0.003500,0.249976,0,0);-ms-transform:matrix(0.225618,0.003159,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.225618,0.003159,-0.003500,0.249976,0,0);}
.m11_c00246{transform:matrix(0.226040,0.003391,-0.003750,0.249972,0,0);-ms-transform:matrix(0.226040,0.003391,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.226040,0.003391,-0.003750,0.249972,0,0);}
.m14_c00246{transform:matrix(0.226814,0.003402,-0.003750,0.249972,0,0);-ms-transform:matrix(0.226814,0.003402,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.226814,0.003402,-0.003750,0.249972,0,0);}
.m39_c00246{transform:matrix(0.227629,0.003414,-0.003750,0.249972,0,0);-ms-transform:matrix(0.227629,0.003414,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.227629,0.003414,-0.003750,0.249972,0,0);}
.m52_c00246{transform:matrix(0.227663,0.003187,-0.003500,0.249976,0,0);-ms-transform:matrix(0.227663,0.003187,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.227663,0.003187,-0.003500,0.249976,0,0);}
.m12_c00246{transform:matrix(0.227714,0.003416,-0.003750,0.249972,0,0);-ms-transform:matrix(0.227714,0.003416,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.227714,0.003416,-0.003750,0.249972,0,0);}
.m4f_c00246{transform:matrix(0.228798,0.003203,-0.003500,0.249976,0,0);-ms-transform:matrix(0.228798,0.003203,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.228798,0.003203,-0.003500,0.249976,0,0);}
.md_c00246{transform:matrix(0.228939,0.003434,-0.003750,0.249972,0,0);-ms-transform:matrix(0.228939,0.003434,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.228939,0.003434,-0.003750,0.249972,0,0);}
.m25_c00246{transform:matrix(0.229229,0.003438,-0.003750,0.249972,0,0);-ms-transform:matrix(0.229229,0.003438,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.229229,0.003438,-0.003750,0.249972,0,0);}
.m55_c00246{transform:matrix(0.229503,0.003213,-0.003500,0.249976,0,0);-ms-transform:matrix(0.229503,0.003213,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.229503,0.003213,-0.003500,0.249976,0,0);}
.m6_c00246{transform:matrix(0.232959,0.003494,-0.003750,0.249972,0,0);-ms-transform:matrix(0.232959,0.003494,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.232959,0.003494,-0.003750,0.249972,0,0);}
.m16_c00246{transform:matrix(0.233709,0.003506,-0.003750,0.249972,0,0);-ms-transform:matrix(0.233709,0.003506,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.233709,0.003506,-0.003750,0.249972,0,0);}
.m1a_c00246{transform:matrix(0.234264,0.003514,-0.003750,0.249972,0,0);-ms-transform:matrix(0.234264,0.003514,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.234264,0.003514,-0.003750,0.249972,0,0);}
.mb_c00246{transform:matrix(0.236343,0.003545,-0.003750,0.249972,0,0);-ms-transform:matrix(0.236343,0.003545,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.236343,0.003545,-0.003750,0.249972,0,0);}
.m20_c00246{transform:matrix(0.236603,0.003549,-0.003750,0.249972,0,0);-ms-transform:matrix(0.236603,0.003549,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.236603,0.003549,-0.003750,0.249972,0,0);}
.m56_c00246{transform:matrix(0.237147,0.003320,-0.003500,0.249976,0,0);-ms-transform:matrix(0.237147,0.003320,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.237147,0.003320,-0.003500,0.249976,0,0);}
.m33_c00246{transform:matrix(0.238248,0.003574,-0.003750,0.249972,0,0);-ms-transform:matrix(0.238248,0.003574,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.238248,0.003574,-0.003750,0.249972,0,0);}
.m57_c00246{transform:matrix(0.240021,0.003360,-0.003500,0.249976,0,0);-ms-transform:matrix(0.240021,0.003360,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.240021,0.003360,-0.003500,0.249976,0,0);}
.mf_c00246{transform:matrix(0.240268,0.003604,-0.003750,0.249972,0,0);-ms-transform:matrix(0.240268,0.003604,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.240268,0.003604,-0.003750,0.249972,0,0);}
.m4e_c00246{transform:matrix(0.241721,0.003384,-0.003500,0.249976,0,0);-ms-transform:matrix(0.241721,0.003384,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.241721,0.003384,-0.003500,0.249976,0,0);}
.m54_c00246{transform:matrix(0.242451,0.003394,-0.003500,0.249976,0,0);-ms-transform:matrix(0.242451,0.003394,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.242451,0.003394,-0.003500,0.249976,0,0);}
.m1b_c00246{transform:matrix(0.242823,0.003642,-0.003750,0.249972,0,0);-ms-transform:matrix(0.242823,0.003642,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.242823,0.003642,-0.003750,0.249972,0,0);}
.m10_c00246{transform:matrix(0.244937,0.003674,-0.003750,0.249972,0,0);-ms-transform:matrix(0.244937,0.003674,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.244937,0.003674,-0.003750,0.249972,0,0);}
.m3d_c00246{transform:matrix(0.246002,0.003690,-0.003750,0.249972,0,0);-ms-transform:matrix(0.246002,0.003690,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.246002,0.003690,-0.003750,0.249972,0,0);}
.m21_c00246{transform:matrix(0.247432,0.003711,-0.003750,0.249972,0,0);-ms-transform:matrix(0.247432,0.003711,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.247432,0.003711,-0.003750,0.249972,0,0);}
.m42_c00246{transform:matrix(0.247807,0.003717,-0.003750,0.249972,0,0);-ms-transform:matrix(0.247807,0.003717,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.247807,0.003717,-0.003750,0.249972,0,0);}
.m4_c00246{transform:matrix(0.248887,0.003733,-0.003750,0.249972,0,0);-ms-transform:matrix(0.248887,0.003733,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.248887,0.003733,-0.003750,0.249972,0,0);}
.m18_c00246{transform:matrix(0.249752,0.003746,-0.003750,0.249972,0,0);-ms-transform:matrix(0.249752,0.003746,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.249752,0.003746,-0.003750,0.249972,0,0);}
.m47_c00246{transform:matrix(0.252655,0.003537,-0.003500,0.249976,0,0);-ms-transform:matrix(0.252655,0.003537,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.252655,0.003537,-0.003500,0.249976,0,0);}
.m4c_c00246{transform:matrix(0.254140,0.003558,-0.003500,0.249976,0,0);-ms-transform:matrix(0.254140,0.003558,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.254140,0.003558,-0.003500,0.249976,0,0);}
.m50_c00246{transform:matrix(0.254255,0.003560,-0.003500,0.249976,0,0);-ms-transform:matrix(0.254255,0.003560,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.254255,0.003560,-0.003500,0.249976,0,0);}
.m49_c00246{transform:matrix(0.256475,0.003591,-0.003500,0.249976,0,0);-ms-transform:matrix(0.256475,0.003591,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.256475,0.003591,-0.003500,0.249976,0,0);}
.m2e_c00246{transform:matrix(0.257546,0.003863,-0.003750,0.249972,0,0);-ms-transform:matrix(0.257546,0.003863,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.257546,0.003863,-0.003750,0.249972,0,0);}
.me_c00246{transform:matrix(0.258686,0.003880,-0.003750,0.249972,0,0);-ms-transform:matrix(0.258686,0.003880,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.258686,0.003880,-0.003750,0.249972,0,0);}
.m59_c00246{transform:matrix(0.258915,0.003625,-0.003500,0.249976,0,0);-ms-transform:matrix(0.258915,0.003625,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.258915,0.003625,-0.003500,0.249976,0,0);}
.m35_c00246{transform:matrix(0.259431,0.003891,-0.003750,0.249972,0,0);-ms-transform:matrix(0.259431,0.003891,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.259431,0.003891,-0.003750,0.249972,0,0);}
.m23_c00246{transform:matrix(0.259996,0.003900,-0.003750,0.249972,0,0);-ms-transform:matrix(0.259996,0.003900,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.259996,0.003900,-0.003750,0.249972,0,0);}
.m3e_c00246{transform:matrix(0.263385,0.003951,-0.003750,0.249972,0,0);-ms-transform:matrix(0.263385,0.003951,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.263385,0.003951,-0.003750,0.249972,0,0);}
.m51_c00246{transform:matrix(0.263909,0.003695,-0.003500,0.249976,0,0);-ms-transform:matrix(0.263909,0.003695,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.263909,0.003695,-0.003500,0.249976,0,0);}
.m7_c00246{transform:matrix(0.265085,0.003976,-0.003750,0.249972,0,0);-ms-transform:matrix(0.265085,0.003976,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.265085,0.003976,-0.003750,0.249972,0,0);}
.m1e_c00246{transform:matrix(0.265100,0.003977,-0.003750,0.249972,0,0);-ms-transform:matrix(0.265100,0.003977,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.265100,0.003977,-0.003750,0.249972,0,0);}
.m2d_c00246{transform:matrix(0.265180,0.003978,-0.003750,0.249972,0,0);-ms-transform:matrix(0.265180,0.003978,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.265180,0.003978,-0.003750,0.249972,0,0);}
.m1f_c00246{transform:matrix(0.265650,0.003985,-0.003750,0.249972,0,0);-ms-transform:matrix(0.265650,0.003985,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.265650,0.003985,-0.003750,0.249972,0,0);}
.mc_c00246{transform:matrix(0.266830,0.004002,-0.003750,0.249972,0,0);-ms-transform:matrix(0.266830,0.004002,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.266830,0.004002,-0.003750,0.249972,0,0);}
.m4a_c00246{transform:matrix(0.267059,0.003739,-0.003500,0.249976,0,0);-ms-transform:matrix(0.267059,0.003739,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.267059,0.003739,-0.003500,0.249976,0,0);}
.m13_c00246{transform:matrix(0.268485,0.004027,-0.003750,0.249972,0,0);-ms-transform:matrix(0.268485,0.004027,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.268485,0.004027,-0.003750,0.249972,0,0);}
.m19_c00246{transform:matrix(0.271629,0.004074,-0.003750,0.249972,0,0);-ms-transform:matrix(0.271629,0.004074,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.271629,0.004074,-0.003750,0.249972,0,0);}
.m24_c00246{transform:matrix(0.272394,0.004086,-0.003750,0.249972,0,0);-ms-transform:matrix(0.272394,0.004086,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.272394,0.004086,-0.003750,0.249972,0,0);}
.m2c_c00246{transform:matrix(0.273504,0.004103,-0.003750,0.249972,0,0);-ms-transform:matrix(0.273504,0.004103,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.273504,0.004103,-0.003750,0.249972,0,0);}
.m2a_c00246{transform:matrix(0.274749,0.004121,-0.003750,0.249972,0,0);-ms-transform:matrix(0.274749,0.004121,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.274749,0.004121,-0.003750,0.249972,0,0);}
.m45_c00246{transform:matrix(0.274753,0.003847,-0.003500,0.249976,0,0);-ms-transform:matrix(0.274753,0.003847,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.274753,0.003847,-0.003500,0.249976,0,0);}
.m46_c00246{transform:matrix(0.274828,0.003848,-0.003500,0.249976,0,0);-ms-transform:matrix(0.274828,0.003848,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.274828,0.003848,-0.003500,0.249976,0,0);}
.m17_c00246{transform:matrix(0.276299,0.004144,-0.003750,0.249972,0,0);-ms-transform:matrix(0.276299,0.004144,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.276299,0.004144,-0.003750,0.249972,0,0);}
.m48_c00246{transform:matrix(0.276858,0.003876,-0.003500,0.249976,0,0);-ms-transform:matrix(0.276858,0.003876,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.276858,0.003876,-0.003500,0.249976,0,0);}
.m22_c00246{transform:matrix(0.283308,0.004250,-0.003750,0.249972,0,0);-ms-transform:matrix(0.283308,0.004250,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.283308,0.004250,-0.003750,0.249972,0,0);}
.m3f_c00246{transform:matrix(0.283428,0.004251,-0.003750,0.249972,0,0);-ms-transform:matrix(0.283428,0.004251,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.283428,0.004251,-0.003750,0.249972,0,0);}
.m15_c00246{transform:matrix(0.283798,0.004257,-0.003750,0.249972,0,0);-ms-transform:matrix(0.283798,0.004257,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.283798,0.004257,-0.003750,0.249972,0,0);}
.m5_c00246{transform:matrix(0.284083,0.004261,-0.003750,0.249972,0,0);-ms-transform:matrix(0.284083,0.004261,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.284083,0.004261,-0.003750,0.249972,0,0);}
.ma_c00246{transform:matrix(0.286393,0.004296,-0.003750,0.249972,0,0);-ms-transform:matrix(0.286393,0.004296,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.286393,0.004296,-0.003750,0.249972,0,0);}
.m32_c00246{transform:matrix(0.288213,0.004323,-0.003750,0.249972,0,0);-ms-transform:matrix(0.288213,0.004323,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.288213,0.004323,-0.003750,0.249972,0,0);}
.m2b_c00246{transform:matrix(0.288503,0.004328,-0.003750,0.249972,0,0);-ms-transform:matrix(0.288503,0.004328,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.288503,0.004328,-0.003750,0.249972,0,0);}
.m41_c00246{transform:matrix(0.289597,0.004344,-0.003750,0.249972,0,0);-ms-transform:matrix(0.289597,0.004344,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.289597,0.004344,-0.003750,0.249972,0,0);}
.m36_c00246{transform:matrix(0.290877,0.004363,-0.003750,0.249972,0,0);-ms-transform:matrix(0.290877,0.004363,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.290877,0.004363,-0.003750,0.249972,0,0);}
.m40_c00246{transform:matrix(0.291812,0.004377,-0.003750,0.249972,0,0);-ms-transform:matrix(0.291812,0.004377,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.291812,0.004377,-0.003750,0.249972,0,0);}
.m2f_c00246{transform:matrix(0.291832,0.004377,-0.003750,0.249972,0,0);-ms-transform:matrix(0.291832,0.004377,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.291832,0.004377,-0.003750,0.249972,0,0);}
.m8_c00246{transform:matrix(0.292002,0.004380,-0.003750,0.249972,0,0);-ms-transform:matrix(0.292002,0.004380,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.292002,0.004380,-0.003750,0.249972,0,0);}
.m34_c00246{transform:matrix(0.293072,0.004396,-0.003750,0.249972,0,0);-ms-transform:matrix(0.293072,0.004396,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.293072,0.004396,-0.003750,0.249972,0,0);}
.m1d_c00246{transform:matrix(0.293097,0.004396,-0.003750,0.249972,0,0);-ms-transform:matrix(0.293097,0.004396,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.293097,0.004396,-0.003750,0.249972,0,0);}
.m31_c00246{transform:matrix(0.293147,0.004397,-0.003750,0.249972,0,0);-ms-transform:matrix(0.293147,0.004397,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.293147,0.004397,-0.003750,0.249972,0,0);}
.m44_c00246{transform:matrix(0.293882,0.004408,-0.003750,0.249972,0,0);-ms-transform:matrix(0.293882,0.004408,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.293882,0.004408,-0.003750,0.249972,0,0);}
.m3_c00246{transform:matrix(0.294157,0.004412,-0.003750,0.249972,0,0);-ms-transform:matrix(0.294157,0.004412,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.294157,0.004412,-0.003750,0.249972,0,0);}
.m1c_c00246{transform:matrix(0.295952,0.004439,-0.003750,0.249972,0,0);-ms-transform:matrix(0.295952,0.004439,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.295952,0.004439,-0.003750,0.249972,0,0);}
.m9_c00246{transform:matrix(0.296572,0.004449,-0.003750,0.249972,0,0);-ms-transform:matrix(0.296572,0.004449,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.296572,0.004449,-0.003750,0.249972,0,0);}
.m4d_c00246{transform:matrix(0.297266,0.004162,-0.003500,0.249976,0,0);-ms-transform:matrix(0.297266,0.004162,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.297266,0.004162,-0.003500,0.249976,0,0);}
.m43_c00246{transform:matrix(0.298241,0.004474,-0.003750,0.249972,0,0);-ms-transform:matrix(0.298241,0.004474,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.298241,0.004474,-0.003750,0.249972,0,0);}
.m28_c00246{transform:matrix(0.649567,0.009744,-0.003750,0.249972,0,0);-ms-transform:matrix(0.649567,0.009744,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.649567,0.009744,-0.003750,0.249972,0,0);}
.m27_c00246{transform:matrix(0.859913,0.012899,-0.003750,0.249972,0,0);-ms-transform:matrix(0.859913,0.012899,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.859913,0.012899,-0.003750,0.249972,0,0);}
.v0_c00246{vertical-align:0.000000px;}
.ls0_c00246{letter-spacing:0.000000px;}
.sc__c00246{text-shadow:none;}
.sc0_c00246{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__c00246{-webkit-text-stroke:0px transparent;}
.sc0_c00246{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00246{word-spacing:0.000000px;}
.fc0_c00246{color:transparent;}
.fs4_c00246{font-size:66.006468px;}
.fs1_c00246{font-size:66.007425px;}
.fs5_c00246{font-size:72.007056px;}
.fs2_c00246{font-size:72.008100px;}
.fs3_c00246{font-size:84.009449px;}
.fs0_c00246{font-size:90.013004px;}
.y0_c00246{bottom:0.000000px;}
.y62_c00246{bottom:291.353340px;}
.y61_c00246{bottom:291.803433px;}
.y60_c00246{bottom:292.582239px;}
.y5f_c00246{bottom:293.481900px;}
.y5e_c00246{bottom:293.965740px;}
.y5d_c00246{bottom:294.271794px;}
.y5c_c00246{bottom:294.733227px;}
.y5b_c00246{bottom:295.353189px;}
.y5a_c00246{bottom:296.422992px;}
.y59_c00246{bottom:297.515307px;}
.y58_c00246{bottom:298.083000px;}
.y57_c00246{bottom:703.176864px;}
.y56_c00246{bottom:704.413596px;}
.y55_c00246{bottom:704.878599px;}
.y54_c00246{bottom:705.320187px;}
.y53_c00246{bottom:706.103151px;}
.y52_c00246{bottom:706.719501px;}
.y51_c00246{bottom:707.932923px;}
.y50_c00246{bottom:708.416973px;}
.y4f_c00246{bottom:709.331901px;}
.y4e_c00246{bottom:710.103000px;}
.y4d_c00246{bottom:733.898775px;}
.y4c_c00246{bottom:735.373425px;}
.y4b_c00246{bottom:735.890970px;}
.y4a_c00246{bottom:737.191853px;}
.y49_c00246{bottom:737.689282px;}
.y48_c00246{bottom:738.856470px;}
.y47_c00246{bottom:739.848788px;}
.y46_c00246{bottom:740.646615px;}
.y45_c00246{bottom:741.153000px;}
.y44_c00246{bottom:770.112420px;}
.y43_c00246{bottom:771.071670px;}
.y42_c00246{bottom:771.384600px;}
.y41_c00246{bottom:772.463093px;}
.y40_c00246{bottom:772.932473px;}
.y3f_c00246{bottom:773.537130px;}
.y3e_c00246{bottom:797.079555px;}
.y3d_c00246{bottom:797.637420px;}
.y3c_c00246{bottom:798.911993px;}
.y3b_c00246{bottom:799.346490px;}
.y3a_c00246{bottom:800.493998px;}
.y39_c00246{bottom:801.926078px;}
.y38_c00246{bottom:802.944465px;}
.y37_c00246{bottom:803.221920px;}
.y36_c00246{bottom:804.380595px;}
.y35_c00246{bottom:804.932018px;}
.y34_c00246{bottom:805.367190px;}
.y33_c00246{bottom:805.938458px;}
.y32_c00246{bottom:828.800258px;}
.y31_c00246{bottom:829.583925px;}
.y30_c00246{bottom:829.994775px;}
.y2f_c00246{bottom:831.038078px;}
.y2e_c00246{bottom:831.701760px;}
.y2d_c00246{bottom:831.966713px;}
.y2c_c00246{bottom:832.838123px;}
.y2b_c00246{bottom:834.133988px;}
.y2a_c00246{bottom:834.734745px;}
.y29_c00246{bottom:835.130295px;}
.y28_c00246{bottom:835.800735px;}
.y27_c00246{bottom:836.575455px;}
.y26_c00246{bottom:836.990310px;}
.y25_c00246{bottom:860.646817px;}
.y24_c00246{bottom:861.057622px;}
.y23_c00246{bottom:861.430440px;}
.y22_c00246{bottom:861.838268px;}
.y21_c00246{bottom:862.499850px;}
.y20_c00246{bottom:863.027708px;}
.y1f_c00246{bottom:864.213480px;}
.y1e_c00246{bottom:865.536150px;}
.y1d_c00246{bottom:865.935210px;}
.y1c_c00246{bottom:866.327333px;}
.y1b_c00246{bottom:867.251280px;}
.y1a_c00246{bottom:867.659535px;}
.y19_c00246{bottom:868.314112px;}
.y18_c00246{bottom:891.453225px;}
.y17_c00246{bottom:893.303977px;}
.y16_c00246{bottom:893.699078px;}
.y15_c00246{bottom:894.875362px;}
.y14_c00246{bottom:895.410068px;}
.y13_c00246{bottom:895.811925px;}
.y12_c00246{bottom:896.348730px;}
.y11_c00246{bottom:896.861715px;}
.y10_c00246{bottom:898.038000px;}
.yf_c00246{bottom:898.448760px;}
.ye_c00246{bottom:899.378723px;}
.yd_c00246{bottom:899.637615px;}
.yc_c00246{bottom:922.678725px;}
.yb_c00246{bottom:924.339405px;}
.ya_c00246{bottom:925.513905px;}
.y9_c00246{bottom:926.004090px;}
.y8_c00246{bottom:926.825655px;}
.y7_c00246{bottom:927.311722px;}
.y6_c00246{bottom:928.470923px;}
.y5_c00246{bottom:928.973010px;}
.y4_c00246{bottom:930.423000px;}
.y3_c00246{bottom:991.147299px;}
.y2_c00246{bottom:992.469270px;}
.y1_c00246{bottom:993.603000px;}
.h6_c00246{height:66.006468px;}
.h3_c00246{height:66.007425px;}
.h7_c00246{height:72.007056px;}
.h4_c00246{height:72.008100px;}
.h5_c00246{height:84.009449px;}
.h2_c00246{height:90.013004px;}
.h0_c00246{height:1129.350000px;}
.h1_c00246{height:1129.500000px;}
.w0_c00246{width:915.000000px;}
.x0_c00246{left:0.000000px;}
.x44_c00246{left:148.828500px;}
.x2a_c00246{left:151.601093px;}
.xd_c00246{left:152.696010px;}
.xe_c00246{left:174.256477px;}
.x22_c00246{left:186.401872px;}
.x45_c00246{left:189.378000px;}
.x2b_c00246{left:195.586920px;}
.x3e_c00246{left:206.104500px;}
.x18_c00246{left:207.200707px;}
.x2c_c00246{left:229.099433px;}
.x19_c00246{left:241.219237px;}
.xf_c00246{left:251.757465px;}
.x36_c00246{left:261.721500px;}
.x4_c00246{left:265.224000px;}
.x46_c00246{left:267.400500px;}
.x2d_c00246{left:271.462193px;}
.x10_c00246{left:286.043018px;}
.x37_c00246{left:295.480500px;}
.x34_c00246{left:305.508023px;}
.x23_c00246{left:306.851295px;}
.x1a_c00246{left:318.219202px;}
.x35_c00246{left:327.870360px;}
.x1_c00246{left:329.742000px;}
.x24_c00246{left:339.822780px;}
.x47_c00246{left:343.815000px;}
.x38_c00246{left:348.669000px;}
.x1b_c00246{left:350.862165px;}
.x2e_c00246{left:360.609870px;}
.x5_c00246{left:361.890000px;}
.x2f_c00246{left:381.907500px;}
.x11_c00246{left:384.066428px;}
.x48_c00246{left:388.098000px;}
.x25_c00246{left:389.875530px;}
.x3f_c00246{left:392.704500px;}
.x6_c00246{left:395.362500px;}
.x2_c00246{left:396.432000px;}
.x39_c00246{left:414.823500px;}
.x49_c00246{left:421.057500px;}
.x12_c00246{left:426.767340px;}
.x40_c00246{left:436.729500px;}
.x4a_c00246{left:442.918500px;}
.x30_c00246{left:460.202340px;}
.x13_c00246{left:471.556365px;}
.x7_c00246{left:472.642500px;}
.x3_c00246{left:474.195000px;}
.x4b_c00246{left:477.478500px;}
.x3a_c00246{left:492.636000px;}
.x1c_c00246{left:494.250600px;}
.x26_c00246{left:497.871390px;}
.x8_c00246{left:505.047000px;}
.x41_c00246{left:524.197500px;}
.x3b_c00246{left:525.798000px;}
.x4c_c00246{left:541.740000px;}
.x14_c00246{left:549.597375px;}
.x42_c00246{left:557.412000px;}
.x9_c00246{left:559.818000px;}
.x27_c00246{left:570.468652px;}
.xa_c00246{left:592.497000px;}
.x4d_c00246{left:597.369000px;}
.x3c_c00246{left:612.523500px;}
.x4e_c00246{left:629.518500px;}
.x1d_c00246{left:637.099035px;}
.x43_c00246{left:645.750000px;}
.x15_c00246{left:647.620785px;}
.x31_c00246{left:658.680803px;}
.xb_c00246{left:670.797000px;}
.x16_c00246{left:680.562270px;}
.x1e_c00246{left:692.207010px;}
.x1f_c00246{left:726.197040px;}
.x28_c00246{left:734.838555px;}
.x3d_c00246{left:745.336500px;}
.x20_c00246{left:757.252935px;}
.x29_c00246{left:769.130108px;}
.xc_c00246{left:781.509000px;}
.x32_c00246{left:790.222763px;}
.x21_c00246{left:791.541487px;}
.x33_c00246{left:833.115045px;}
.x17_c00246{left:834.752700px;}
@media print{
.v0_c00246{vertical-align:0.000000pt;}
.ls0_c00246{letter-spacing:0.000000pt;}
.ws0_c00246{word-spacing:0.000000pt;}
.fs4_c00246{font-size:58.672416pt;}
.fs1_c00246{font-size:58.673266pt;}
.fs5_c00246{font-size:64.006272pt;}
.fs2_c00246{font-size:64.007200pt;}
.fs3_c00246{font-size:74.675066pt;}
.fs0_c00246{font-size:80.011559pt;}
.y0_c00246{bottom:0.000000pt;}
.y62_c00246{bottom:258.980747pt;}
.y61_c00246{bottom:259.380829pt;}
.y60_c00246{bottom:260.073101pt;}
.y5f_c00246{bottom:260.872800pt;}
.y5e_c00246{bottom:261.302880pt;}
.y5d_c00246{bottom:261.574928pt;}
.y5c_c00246{bottom:261.985091pt;}
.y5b_c00246{bottom:262.536168pt;}
.y5a_c00246{bottom:263.487104pt;}
.y59_c00246{bottom:264.458051pt;}
.y58_c00246{bottom:264.962667pt;}
.y57_c00246{bottom:625.046101pt;}
.y56_c00246{bottom:626.145419pt;}
.y55_c00246{bottom:626.558755pt;}
.y54_c00246{bottom:626.951277pt;}
.y53_c00246{bottom:627.647245pt;}
.y52_c00246{bottom:628.195112pt;}
.y51_c00246{bottom:629.273709pt;}
.y50_c00246{bottom:629.703976pt;}
.y4f_c00246{bottom:630.517245pt;}
.y4e_c00246{bottom:631.202667pt;}
.y4d_c00246{bottom:652.354467pt;}
.y4c_c00246{bottom:653.665267pt;}
.y4b_c00246{bottom:654.125307pt;}
.y4a_c00246{bottom:655.281647pt;}
.y49_c00246{bottom:655.723807pt;}
.y48_c00246{bottom:656.761307pt;}
.y47_c00246{bottom:657.643367pt;}
.y46_c00246{bottom:658.352547pt;}
.y45_c00246{bottom:658.802667pt;}
.y44_c00246{bottom:684.544373pt;}
.y43_c00246{bottom:685.397040pt;}
.y42_c00246{bottom:685.675200pt;}
.y41_c00246{bottom:686.633860pt;}
.y40_c00246{bottom:687.051087pt;}
.y3f_c00246{bottom:687.588560pt;}
.y3e_c00246{bottom:708.515160pt;}
.y3d_c00246{bottom:709.011040pt;}
.y3c_c00246{bottom:710.143993pt;}
.y3b_c00246{bottom:710.530213pt;}
.y3a_c00246{bottom:711.550220pt;}
.y39_c00246{bottom:712.823180pt;}
.y38_c00246{bottom:713.728413pt;}
.y37_c00246{bottom:713.975040pt;}
.y36_c00246{bottom:715.004973pt;}
.y35_c00246{bottom:715.495127pt;}
.y34_c00246{bottom:715.881947pt;}
.y33_c00246{bottom:716.389740pt;}
.y32_c00246{bottom:736.711340pt;}
.y31_c00246{bottom:737.407933pt;}
.y30_c00246{bottom:737.773133pt;}
.y2f_c00246{bottom:738.700513pt;}
.y2e_c00246{bottom:739.290453pt;}
.y2d_c00246{bottom:739.525967pt;}
.y2c_c00246{bottom:740.300553pt;}
.y2b_c00246{bottom:741.452433pt;}
.y2a_c00246{bottom:741.986440pt;}
.y29_c00246{bottom:742.338040pt;}
.y28_c00246{bottom:742.933987pt;}
.y27_c00246{bottom:743.622627pt;}
.y26_c00246{bottom:743.991387pt;}
.y25_c00246{bottom:765.019393pt;}
.y24_c00246{bottom:765.384553pt;}
.y23_c00246{bottom:765.715947pt;}
.y22_c00246{bottom:766.078460pt;}
.y21_c00246{bottom:766.666533pt;}
.y20_c00246{bottom:767.135740pt;}
.y1f_c00246{bottom:768.189760pt;}
.y1e_c00246{bottom:769.365467pt;}
.y1d_c00246{bottom:769.720187pt;}
.y1c_c00246{bottom:770.068740pt;}
.y1b_c00246{bottom:770.890027pt;}
.y1a_c00246{bottom:771.252920pt;}
.y19_c00246{bottom:771.834767pt;}
.y18_c00246{bottom:792.402867pt;}
.y17_c00246{bottom:794.047980pt;}
.y16_c00246{bottom:794.399180pt;}
.y15_c00246{bottom:795.444767pt;}
.y14_c00246{bottom:795.920060pt;}
.y13_c00246{bottom:796.277267pt;}
.y12_c00246{bottom:796.754427pt;}
.y11_c00246{bottom:797.210413pt;}
.y10_c00246{bottom:798.256000pt;}
.yf_c00246{bottom:798.621120pt;}
.ye_c00246{bottom:799.447753pt;}
.yd_c00246{bottom:799.677880pt;}
.yc_c00246{bottom:820.158867pt;}
.yb_c00246{bottom:821.635027pt;}
.ya_c00246{bottom:822.679027pt;}
.y9_c00246{bottom:823.114747pt;}
.y8_c00246{bottom:823.845027pt;}
.y7_c00246{bottom:824.277087pt;}
.y6_c00246{bottom:825.307487pt;}
.y5_c00246{bottom:825.753787pt;}
.y4_c00246{bottom:827.042667pt;}
.y3_c00246{bottom:881.019821pt;}
.y2_c00246{bottom:882.194907pt;}
.y1_c00246{bottom:883.202667pt;}
.h6_c00246{height:58.672416pt;}
.h3_c00246{height:58.673266pt;}
.h7_c00246{height:64.006272pt;}
.h4_c00246{height:64.007200pt;}
.h5_c00246{height:74.675066pt;}
.h2_c00246{height:80.011559pt;}
.h0_c00246{height:1003.866667pt;}
.h1_c00246{height:1004.000000pt;}
.w0_c00246{width:813.333333pt;}
.x0_c00246{left:0.000000pt;}
.x44_c00246{left:132.292000pt;}
.x2a_c00246{left:134.756527pt;}
.xd_c00246{left:135.729787pt;}
.xe_c00246{left:154.894647pt;}
.x22_c00246{left:165.690553pt;}
.x45_c00246{left:168.336000pt;}
.x2b_c00246{left:173.855040pt;}
.x3e_c00246{left:183.204000pt;}
.x18_c00246{left:184.178407pt;}
.x2c_c00246{left:203.643940pt;}
.x19_c00246{left:214.417100pt;}
.xf_c00246{left:223.784413pt;}
.x36_c00246{left:232.641333pt;}
.x4_c00246{left:235.754667pt;}
.x46_c00246{left:237.689333pt;}
.x2d_c00246{left:241.299727pt;}
.x10_c00246{left:254.260460pt;}
.x37_c00246{left:262.649333pt;}
.x34_c00246{left:271.562687pt;}
.x23_c00246{left:272.756707pt;}
.x1a_c00246{left:282.861513pt;}
.x35_c00246{left:291.440320pt;}
.x1_c00246{left:293.104000pt;}
.x24_c00246{left:302.064693pt;}
.x47_c00246{left:305.613333pt;}
.x38_c00246{left:309.928000pt;}
.x1b_c00246{left:311.877480pt;}
.x2e_c00246{left:320.542107pt;}
.x5_c00246{left:321.680000pt;}
.x2f_c00246{left:339.473333pt;}
.x11_c00246{left:341.392380pt;}
.x48_c00246{left:344.976000pt;}
.x25_c00246{left:346.556027pt;}
.x3f_c00246{left:349.070667pt;}
.x6_c00246{left:351.433333pt;}
.x2_c00246{left:352.384000pt;}
.x39_c00246{left:368.732000pt;}
.x49_c00246{left:374.273333pt;}
.x12_c00246{left:379.348747pt;}
.x40_c00246{left:388.204000pt;}
.x4a_c00246{left:393.705333pt;}
.x30_c00246{left:409.068747pt;}
.x13_c00246{left:419.161213pt;}
.x7_c00246{left:420.126667pt;}
.x3_c00246{left:421.506667pt;}
.x4b_c00246{left:424.425333pt;}
.x3a_c00246{left:437.898667pt;}
.x1c_c00246{left:439.333867pt;}
.x26_c00246{left:442.552347pt;}
.x8_c00246{left:448.930667pt;}
.x41_c00246{left:465.953333pt;}
.x3b_c00246{left:467.376000pt;}
.x4c_c00246{left:481.546667pt;}
.x14_c00246{left:488.531000pt;}
.x42_c00246{left:495.477333pt;}
.x9_c00246{left:497.616000pt;}
.x27_c00246{left:507.083247pt;}
.xa_c00246{left:526.664000pt;}
.x4d_c00246{left:530.994667pt;}
.x3c_c00246{left:544.465333pt;}
.x4e_c00246{left:559.572000pt;}
.x1d_c00246{left:566.310253pt;}
.x43_c00246{left:574.000000pt;}
.x15_c00246{left:575.662920pt;}
.x31_c00246{left:585.494047pt;}
.xb_c00246{left:596.264000pt;}
.x16_c00246{left:604.944240pt;}
.x1e_c00246{left:615.295120pt;}
.x1f_c00246{left:645.508480pt;}
.x28_c00246{left:653.189827pt;}
.x3d_c00246{left:662.521333pt;}
.x20_c00246{left:673.113720pt;}
.x29_c00246{left:683.671207pt;}
.xc_c00246{left:694.674667pt;}
.x32_c00246{left:702.420233pt;}
.x21_c00246{left:703.592433pt;}
.x33_c00246{left:740.546707pt;}
.x17_c00246{left:742.002400pt;}
}





/* 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_c00247 {
    display:none;
  }
  .loading-indicator_c00247.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00247 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_c00247 { 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_c00247" -> "#page-container .classname_c00247")
 */
.pf_c00247 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00247 { /* 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_c00247.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00247 { /* 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_c00247 { /* 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_c00247 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00247 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00247 {overflow:visible;}
  }
}
.c_c00247 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00247 { /* 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_c00247:after { /* webkit #35443 */
  content: '';
}
.t_c00247:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00247 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 */
}
.__c00247 { /* 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_c00247 { /* info for Javascript */
  display:none;
}
.l_c00247 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00247 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00247 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00247: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_c00247 {
    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_c00247.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00247.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_c00247 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00247{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00247;src:url('chunks/assets/font_92d6bb63cbc780ceff7db400.woff2')format("woff");}.ff1_c00247{font-family:ff1_c00247;line-height:1.000000;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;}
.m22_c00247{transform:matrix(0.185935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185935,0.000000,0.000000,0.250000,0,0);}
.m1c_c00247{transform:matrix(0.186935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186935,0.000000,0.000000,0.250000,0,0);}
.m21_c00247{transform:matrix(0.189665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189665,0.000000,0.000000,0.250000,0,0);}
.m1b_c00247{transform:matrix(0.210755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210755,0.000000,0.000000,0.250000,0,0);}
.m1d_c00247{transform:matrix(0.211575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211575,0.000000,0.000000,0.250000,0,0);}
.m4_c00247{transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);}
.m7_c00247{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m23_c00247{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m18_c00247{transform:matrix(0.214285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214285,0.000000,0.000000,0.250000,0,0);}
.m25_c00247{transform:matrix(0.217170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217170,0.000000,0.000000,0.250000,0,0);}
.m1_c00247{transform:matrix(0.217405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217405,0.000000,0.000000,0.250000,0,0);}
.m9_c00247{transform:matrix(0.219720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219720,0.000000,0.000000,0.250000,0,0);}
.mc_c00247{transform:matrix(0.219920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219920,0.000000,0.000000,0.250000,0,0);}
.m2_c00247{transform:matrix(0.220195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220195,0.000000,0.000000,0.250000,0,0);}
.m20_c00247{transform:matrix(0.222990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222990,0.000000,0.000000,0.250000,0,0);}
.m8_c00247{transform:matrix(0.226525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226525,0.000000,0.000000,0.250000,0,0);}
.m5_c00247{transform:matrix(0.228170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228170,0.000000,0.000000,0.250000,0,0);}
.ma_c00247{transform:matrix(0.228965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228965,0.000000,0.000000,0.250000,0,0);}
.m0_c00247{transform:matrix(0.230320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230320,0.000000,0.000000,0.250000,0,0);}
.m1f_c00247{transform:matrix(0.232580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232580,0.000000,0.000000,0.250000,0,0);}
.m6_c00247{transform:matrix(0.239435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239435,0.000000,0.000000,0.250000,0,0);}
.m1e_c00247{transform:matrix(0.241915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241915,0.000000,0.000000,0.250000,0,0);}
.m10_c00247{transform:matrix(0.244330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244330,0.000000,0.000000,0.250000,0,0);}
.mf_c00247{transform:matrix(0.247365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247365,0.000000,0.000000,0.250000,0,0);}
.md_c00247{transform:matrix(0.248360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248360,0.000000,0.000000,0.250000,0,0);}
.m16_c00247{transform:matrix(0.260920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260920,0.000000,0.000000,0.250000,0,0);}
.m11_c00247{transform:matrix(0.264110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264110,0.000000,0.000000,0.250000,0,0);}
.me_c00247{transform:matrix(0.265080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265080,0.000000,0.000000,0.250000,0,0);}
.m14_c00247{transform:matrix(0.266605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266605,0.000000,0.000000,0.250000,0,0);}
.mb_c00247{transform:matrix(0.271760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271760,0.000000,0.000000,0.250000,0,0);}
.m3_c00247{transform:matrix(0.272425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272425,0.000000,0.000000,0.250000,0,0);}
.m1a_c00247{transform:matrix(0.279610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279610,0.000000,0.000000,0.250000,0,0);}
.m19_c00247{transform:matrix(0.280645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280645,0.000000,0.000000,0.250000,0,0);}
.m13_c00247{transform:matrix(0.283865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283865,0.000000,0.000000,0.250000,0,0);}
.m29_c00247{transform:matrix(0.288553,-0.005194,0.004499,0.249960,0,0);-ms-transform:matrix(0.288553,-0.005194,0.004499,0.249960,0,0);-webkit-transform:matrix(0.288553,-0.005194,0.004499,0.249960,0,0);}
.m15_c00247{transform:matrix(0.290215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290215,0.000000,0.000000,0.250000,0,0);}
.m2c_c00247{transform:matrix(0.298872,-0.005380,0.004499,0.249960,0,0);-ms-transform:matrix(0.298872,-0.005380,0.004499,0.249960,0,0);-webkit-transform:matrix(0.298872,-0.005380,0.004499,0.249960,0,0);}
.m2f_c00247{transform:matrix(0.310440,-0.005588,0.004499,0.249960,0,0);-ms-transform:matrix(0.310440,-0.005588,0.004499,0.249960,0,0);-webkit-transform:matrix(0.310440,-0.005588,0.004499,0.249960,0,0);}
.m17_c00247{transform:matrix(0.314430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314430,0.000000,0.000000,0.250000,0,0);}
.m24_c00247{transform:matrix(0.340580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340580,0.000000,0.000000,0.250000,0,0);}
.m12_c00247{transform:matrix(0.374275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374275,0.000000,0.000000,0.250000,0,0);}
.m27_c00247{transform:matrix(0.393816,-0.007089,0.004499,0.249960,0,0);-ms-transform:matrix(0.393816,-0.007089,0.004499,0.249960,0,0);-webkit-transform:matrix(0.393816,-0.007089,0.004499,0.249960,0,0);}
.m26_c00247{transform:matrix(0.431860,-0.007773,0.004499,0.249960,0,0);-ms-transform:matrix(0.431860,-0.007773,0.004499,0.249960,0,0);-webkit-transform:matrix(0.431860,-0.007773,0.004499,0.249960,0,0);}
.m2e_c00247{transform:matrix(0.467624,-0.008417,0.004499,0.249960,0,0);-ms-transform:matrix(0.467624,-0.008417,0.004499,0.249960,0,0);-webkit-transform:matrix(0.467624,-0.008417,0.004499,0.249960,0,0);}
.m2d_c00247{transform:matrix(0.517816,-0.009321,0.004499,0.249960,0,0);-ms-transform:matrix(0.517816,-0.009321,0.004499,0.249960,0,0);-webkit-transform:matrix(0.517816,-0.009321,0.004499,0.249960,0,0);}
.m2a_c00247{transform:matrix(0.578021,-0.010404,0.004499,0.249960,0,0);-ms-transform:matrix(0.578021,-0.010404,0.004499,0.249960,0,0);-webkit-transform:matrix(0.578021,-0.010404,0.004499,0.249960,0,0);}
.m28_c00247{transform:matrix(0.630278,-0.011345,0.004499,0.249960,0,0);-ms-transform:matrix(0.630278,-0.011345,0.004499,0.249960,0,0);-webkit-transform:matrix(0.630278,-0.011345,0.004499,0.249960,0,0);}
.m30_c00247{transform:matrix(0.630890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630890,0.000000,0.000000,0.250000,0,0);}
.m2b_c00247{transform:matrix(0.851587,-0.015329,0.004499,0.249960,0,0);-ms-transform:matrix(0.851587,-0.015329,0.004499,0.249960,0,0);-webkit-transform:matrix(0.851587,-0.015329,0.004499,0.249960,0,0);}
.v0_c00247{vertical-align:0.000000px;}
.ls0_c00247{letter-spacing:0.000000px;}
.sc__c00247{text-shadow:none;}
.sc0_c00247{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__c00247{-webkit-text-stroke:0px transparent;}
.sc0_c00247{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00247{word-spacing:0.000000px;}
.fc0_c00247{color:transparent;}
.fs5_c00247{font-size:18.000000px;}
.fs2_c00247{font-size:66.000000px;}
.fs4_c00247{font-size:66.010691px;}
.fs1_c00247{font-size:72.000000px;}
.fs3_c00247{font-size:84.000000px;}
.fs0_c00247{font-size:96.000000px;}
.y0_c00247{bottom:0.000000px;}
.y2e_c00247{bottom:294.300000px;}
.y24_c00247{bottom:845.868000px;}
.y25_c00247{bottom:847.117695px;}
.y26_c00247{bottom:847.758594px;}
.y27_c00247{bottom:849.309555px;}
.y28_c00247{bottom:850.731591px;}
.y29_c00247{bottom:852.277422px;}
.y2a_c00247{bottom:854.890374px;}
.y2b_c00247{bottom:855.436665px;}
.y2c_c00247{bottom:856.509186px;}
.y2d_c00247{bottom:857.628768px;}
.y17_c00247{bottom:878.311500px;}
.y18_c00247{bottom:878.986500px;}
.y19_c00247{bottom:879.600000px;}
.y1a_c00247{bottom:880.149000px;}
.y1b_c00247{bottom:880.719000px;}
.y1c_c00247{bottom:881.641500px;}
.y1d_c00247{bottom:882.423000px;}
.y1e_c00247{bottom:884.103000px;}
.y1f_c00247{bottom:885.970500px;}
.y20_c00247{bottom:886.512000px;}
.y21_c00247{bottom:887.136000px;}
.y22_c00247{bottom:888.282000px;}
.y23_c00247{bottom:888.937500px;}
.y16_c00247{bottom:910.048500px;}
.yb_c00247{bottom:912.603000px;}
.yc_c00247{bottom:912.927000px;}
.yd_c00247{bottom:913.429500px;}
.ye_c00247{bottom:914.935500px;}
.yf_c00247{bottom:915.588000px;}
.y10_c00247{bottom:916.057500px;}
.y11_c00247{bottom:916.722000px;}
.y12_c00247{bottom:917.446500px;}
.y13_c00247{bottom:918.840000px;}
.y14_c00247{bottom:919.350000px;}
.y15_c00247{bottom:920.491500px;}
.y2_c00247{bottom:943.114500px;}
.y3_c00247{bottom:944.955000px;}
.y4_c00247{bottom:946.291500px;}
.y5_c00247{bottom:946.873500px;}
.y6_c00247{bottom:947.778000px;}
.y7_c00247{bottom:948.351000px;}
.y8_c00247{bottom:948.957000px;}
.y9_c00247{bottom:949.645500px;}
.ya_c00247{bottom:950.004000px;}
.y1_c00247{bottom:1013.154000px;}
.h7_c00247{height:18.000000px;}
.h4_c00247{height:66.000000px;}
.h6_c00247{height:66.010691px;}
.h3_c00247{height:72.000000px;}
.h5_c00247{height:84.000000px;}
.h2_c00247{height:96.000000px;}
.h0_c00247{height:1129.350000px;}
.h1_c00247{height:1129.500000px;}
.w0_c00247{width:915.000000px;}
.x0_c00247{left:0.000000px;}
.x26_c00247{left:94.860000px;}
.x19_c00247{left:100.276500px;}
.x17_c00247{left:108.810000px;}
.x1a_c00247{left:139.969500px;}
.x4_c00247{left:154.134000px;}
.x18_c00247{left:159.840000px;}
.x27_c00247{left:164.287500px;}
.x1b_c00247{left:176.074500px;}
.x28_c00247{left:199.893000px;}
.x1c_c00247{left:208.345500px;}
.xd_c00247{left:230.995500px;}
.x1d_c00247{left:241.852500px;}
.xe_c00247{left:252.634500px;}
.x5_c00247{left:262.395000px;}
.xf_c00247{left:286.140000px;}
.x1e_c00247{left:296.107500px;}
.x2e_c00247{left:339.930000px;}
.x6_c00247{left:340.969500px;}
.x1f_c00247{left:342.118500px;}
.x29_c00247{left:365.059500px;}
.x7_c00247{left:375.222000px;}
.x10_c00247{left:386.577000px;}
.x1_c00247{left:406.080000px;}
.x8_c00247{left:428.415000px;}
.x11_c00247{left:430.057500px;}
.x20_c00247{left:440.905500px;}
.x2a_c00247{left:450.939000px;}
.x9_c00247{left:462.160500px;}
.x2_c00247{left:463.860000px;}
.xa_c00247{left:497.845500px;}
.x12_c00247{left:505.665000px;}
.xb_c00247{left:538.329000px;}
.x3_c00247{left:539.460000px;}
.x21_c00247{left:550.764000px;}
.x13_c00247{left:554.001000px;}
.xc_c00247{left:559.405500px;}
.x22_c00247{left:582.588000px;}
.x2b_c00247{left:596.103000px;}
.x23_c00247{left:619.252500px;}
.x2c_c00247{left:626.452500px;}
.x14_c00247{left:646.852500px;}
.x15_c00247{left:680.881500px;}
.x24_c00247{left:686.628000px;}
.x25_c00247{left:725.176500px;}
.x2d_c00247{left:748.236000px;}
.x16_c00247{left:756.960000px;}
@media print{
.v0_c00247{vertical-align:0.000000pt;}
.ls0_c00247{letter-spacing:0.000000pt;}
.ws0_c00247{word-spacing:0.000000pt;}
.fs5_c00247{font-size:16.000000pt;}
.fs2_c00247{font-size:58.666667pt;}
.fs4_c00247{font-size:58.676170pt;}
.fs1_c00247{font-size:64.000000pt;}
.fs3_c00247{font-size:74.666667pt;}
.fs0_c00247{font-size:85.333333pt;}
.y0_c00247{bottom:0.000000pt;}
.y2e_c00247{bottom:261.600000pt;}
.y24_c00247{bottom:751.882667pt;}
.y25_c00247{bottom:752.993507pt;}
.y26_c00247{bottom:753.563195pt;}
.y27_c00247{bottom:754.941827pt;}
.y28_c00247{bottom:756.205859pt;}
.y29_c00247{bottom:757.579931pt;}
.y2a_c00247{bottom:759.902555pt;}
.y2b_c00247{bottom:760.388147pt;}
.y2c_c00247{bottom:761.341499pt;}
.y2d_c00247{bottom:762.336683pt;}
.y17_c00247{bottom:780.721333pt;}
.y18_c00247{bottom:781.321333pt;}
.y19_c00247{bottom:781.866667pt;}
.y1a_c00247{bottom:782.354667pt;}
.y1b_c00247{bottom:782.861333pt;}
.y1c_c00247{bottom:783.681333pt;}
.y1d_c00247{bottom:784.376000pt;}
.y1e_c00247{bottom:785.869333pt;}
.y1f_c00247{bottom:787.529333pt;}
.y20_c00247{bottom:788.010667pt;}
.y21_c00247{bottom:788.565333pt;}
.y22_c00247{bottom:789.584000pt;}
.y23_c00247{bottom:790.166667pt;}
.y16_c00247{bottom:808.932000pt;}
.yb_c00247{bottom:811.202667pt;}
.yc_c00247{bottom:811.490667pt;}
.yd_c00247{bottom:811.937333pt;}
.ye_c00247{bottom:813.276000pt;}
.yf_c00247{bottom:813.856000pt;}
.y10_c00247{bottom:814.273333pt;}
.y11_c00247{bottom:814.864000pt;}
.y12_c00247{bottom:815.508000pt;}
.y13_c00247{bottom:816.746667pt;}
.y14_c00247{bottom:817.200000pt;}
.y15_c00247{bottom:818.214667pt;}
.y2_c00247{bottom:838.324000pt;}
.y3_c00247{bottom:839.960000pt;}
.y4_c00247{bottom:841.148000pt;}
.y5_c00247{bottom:841.665333pt;}
.y6_c00247{bottom:842.469333pt;}
.y7_c00247{bottom:842.978667pt;}
.y8_c00247{bottom:843.517333pt;}
.y9_c00247{bottom:844.129333pt;}
.ya_c00247{bottom:844.448000pt;}
.y1_c00247{bottom:900.581333pt;}
.h7_c00247{height:16.000000pt;}
.h4_c00247{height:58.666667pt;}
.h6_c00247{height:58.676170pt;}
.h3_c00247{height:64.000000pt;}
.h5_c00247{height:74.666667pt;}
.h2_c00247{height:85.333333pt;}
.h0_c00247{height:1003.866667pt;}
.h1_c00247{height:1004.000000pt;}
.w0_c00247{width:813.333333pt;}
.x0_c00247{left:0.000000pt;}
.x26_c00247{left:84.320000pt;}
.x19_c00247{left:89.134667pt;}
.x17_c00247{left:96.720000pt;}
.x1a_c00247{left:124.417333pt;}
.x4_c00247{left:137.008000pt;}
.x18_c00247{left:142.080000pt;}
.x27_c00247{left:146.033333pt;}
.x1b_c00247{left:156.510667pt;}
.x28_c00247{left:177.682667pt;}
.x1c_c00247{left:185.196000pt;}
.xd_c00247{left:205.329333pt;}
.x1d_c00247{left:214.980000pt;}
.xe_c00247{left:224.564000pt;}
.x5_c00247{left:233.240000pt;}
.xf_c00247{left:254.346667pt;}
.x1e_c00247{left:263.206667pt;}
.x2e_c00247{left:302.160000pt;}
.x6_c00247{left:303.084000pt;}
.x1f_c00247{left:304.105333pt;}
.x29_c00247{left:324.497333pt;}
.x7_c00247{left:333.530667pt;}
.x10_c00247{left:343.624000pt;}
.x1_c00247{left:360.960000pt;}
.x8_c00247{left:380.813333pt;}
.x11_c00247{left:382.273333pt;}
.x20_c00247{left:391.916000pt;}
.x2a_c00247{left:400.834667pt;}
.x9_c00247{left:410.809333pt;}
.x2_c00247{left:412.320000pt;}
.xa_c00247{left:442.529333pt;}
.x12_c00247{left:449.480000pt;}
.xb_c00247{left:478.514667pt;}
.x3_c00247{left:479.520000pt;}
.x21_c00247{left:489.568000pt;}
.x13_c00247{left:492.445333pt;}
.xc_c00247{left:497.249333pt;}
.x22_c00247{left:517.856000pt;}
.x2b_c00247{left:529.869333pt;}
.x23_c00247{left:550.446667pt;}
.x2c_c00247{left:556.846667pt;}
.x14_c00247{left:574.980000pt;}
.x15_c00247{left:605.228000pt;}
.x24_c00247{left:610.336000pt;}
.x25_c00247{left:644.601333pt;}
.x2d_c00247{left:665.098667pt;}
.x16_c00247{left:672.853333pt;}
}





/* 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_c00248 {
    display:none;
  }
  .loading-indicator_c00248.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00248 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_c00248 { 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_c00248" -> "#page-container .classname_c00248")
 */
.pf_c00248 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00248 { /* 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_c00248.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00248 { /* 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_c00248 { /* 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_c00248 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00248 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00248 {overflow:visible;}
  }
}
.c_c00248 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00248 { /* 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_c00248:after { /* webkit #35443 */
  content: '';
}
.t_c00248:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00248 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 */
}
.__c00248 { /* 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_c00248 { /* info for Javascript */
  display:none;
}
.l_c00248 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00248 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00248 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00248: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_c00248 {
    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_c00248.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00248.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_c00248 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00248{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00248;src:url('chunks/assets/font_c605e72f209fc835e906f064.woff2')format("woff");}.ff1_c00248{font-family:ff1_c00248;line-height:1.000000;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;}
.m9_c00248{transform:matrix(0.113275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113275,0.000000,0.000000,0.250000,0,0);}
.m57_c00248{transform:matrix(0.132170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132170,0.000000,0.000000,0.250000,0,0);}
.m89_c00248{transform:matrix(0.136943,0.000685,-0.001250,0.249997,0,0);-ms-transform:matrix(0.136943,0.000685,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.136943,0.000685,-0.001250,0.249997,0,0);}
.m13d_c00248{transform:matrix(0.140005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140005,0.000000,0.000000,0.250000,0,0);}
.m112_c00248{transform:matrix(0.148900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148900,0.000000,0.000000,0.250000,0,0);}
.m12_c00248{transform:matrix(0.150735,0.001206,-0.002000,0.249992,0,0);-ms-transform:matrix(0.150735,0.001206,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.150735,0.001206,-0.002000,0.249992,0,0);}
.m119_c00248{transform:matrix(0.154555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154555,0.000000,0.000000,0.250000,0,0);}
.m10_c00248{transform:matrix(0.155890,0.001247,-0.002000,0.249992,0,0);-ms-transform:matrix(0.155890,0.001247,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.155890,0.001247,-0.002000,0.249992,0,0);}
.me_c00248{transform:matrix(0.157350,0.001259,-0.002000,0.249992,0,0);-ms-transform:matrix(0.157350,0.001259,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.157350,0.001259,-0.002000,0.249992,0,0);}
.m1a_c00248{transform:matrix(0.157855,0.001263,-0.002000,0.249992,0,0);-ms-transform:matrix(0.157855,0.001263,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.157855,0.001263,-0.002000,0.249992,0,0);}
.m16_c00248{transform:matrix(0.158965,0.001272,-0.002000,0.249992,0,0);-ms-transform:matrix(0.158965,0.001272,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.158965,0.001272,-0.002000,0.249992,0,0);}
.m12c_c00248{transform:matrix(0.159940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159940,0.000000,0.000000,0.250000,0,0);}
.m127_c00248{transform:matrix(0.160435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160435,0.000000,0.000000,0.250000,0,0);}
.m5e_c00248{transform:matrix(0.162220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162220,0.000000,0.000000,0.250000,0,0);}
.m17_c00248{transform:matrix(0.164930,0.001319,-0.002000,0.249992,0,0);-ms-transform:matrix(0.164930,0.001319,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.164930,0.001319,-0.002000,0.249992,0,0);}
.m5b_c00248{transform:matrix(0.165965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165965,0.000000,0.000000,0.250000,0,0);}
.m19_c00248{transform:matrix(0.167185,0.001337,-0.002000,0.249992,0,0);-ms-transform:matrix(0.167185,0.001337,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.167185,0.001337,-0.002000,0.249992,0,0);}
.mc_c00248{transform:matrix(0.167925,0.001343,-0.002000,0.249992,0,0);-ms-transform:matrix(0.167925,0.001343,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.167925,0.001343,-0.002000,0.249992,0,0);}
.m11_c00248{transform:matrix(0.169165,0.001353,-0.002000,0.249992,0,0);-ms-transform:matrix(0.169165,0.001353,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.169165,0.001353,-0.002000,0.249992,0,0);}
.m126_c00248{transform:matrix(0.169985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169985,0.000000,0.000000,0.250000,0,0);}
.m129_c00248{transform:matrix(0.170130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170130,0.000000,0.000000,0.250000,0,0);}
.m12a_c00248{transform:matrix(0.173765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173765,0.000000,0.000000,0.250000,0,0);}
.m1c_c00248{transform:matrix(0.173814,0.001391,-0.002000,0.249992,0,0);-ms-transform:matrix(0.173814,0.001391,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.173814,0.001391,-0.002000,0.249992,0,0);}
.m12e_c00248{transform:matrix(0.174185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174185,0.000000,0.000000,0.250000,0,0);}
.m124_c00248{transform:matrix(0.175350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175350,0.000000,0.000000,0.250000,0,0);}
.mec_c00248{transform:matrix(0.176340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176340,0.000000,0.000000,0.250000,0,0);}
.m5d_c00248{transform:matrix(0.176465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176465,0.000000,0.000000,0.250000,0,0);}
.mb_c00248{transform:matrix(0.176504,0.001412,-0.002000,0.249992,0,0);-ms-transform:matrix(0.176504,0.001412,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.176504,0.001412,-0.002000,0.249992,0,0);}
.m7f_c00248{transform:matrix(0.177423,0.000887,-0.001250,0.249997,0,0);-ms-transform:matrix(0.177423,0.000887,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.177423,0.000887,-0.001250,0.249997,0,0);}
.m12b_c00248{transform:matrix(0.177680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177680,0.000000,0.000000,0.250000,0,0);}
.m1e_c00248{transform:matrix(0.178014,0.001424,-0.002000,0.249992,0,0);-ms-transform:matrix(0.178014,0.001424,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.178014,0.001424,-0.002000,0.249992,0,0);}
.m125_c00248{transform:matrix(0.178065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178065,0.000000,0.000000,0.250000,0,0);}
.m13_c00248{transform:matrix(0.178779,0.001430,-0.002000,0.249992,0,0);-ms-transform:matrix(0.178779,0.001430,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.178779,0.001430,-0.002000,0.249992,0,0);}
.m14_c00248{transform:matrix(0.180274,0.001442,-0.002000,0.249992,0,0);-ms-transform:matrix(0.180274,0.001442,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.180274,0.001442,-0.002000,0.249992,0,0);}
.mee_c00248{transform:matrix(0.180480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180480,0.000000,0.000000,0.250000,0,0);}
.m107_c00248{transform:matrix(0.180925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180925,0.000000,0.000000,0.250000,0,0);}
.m5a_c00248{transform:matrix(0.181145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181145,0.000000,0.000000,0.250000,0,0);}
.m1b_c00248{transform:matrix(0.181289,0.001450,-0.002000,0.249992,0,0);-ms-transform:matrix(0.181289,0.001450,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.181289,0.001450,-0.002000,0.249992,0,0);}
.m12d_c00248{transform:matrix(0.182280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182280,0.000000,0.000000,0.250000,0,0);}
.m1d_c00248{transform:matrix(0.182369,0.001459,-0.002000,0.249992,0,0);-ms-transform:matrix(0.182369,0.001459,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.182369,0.001459,-0.002000,0.249992,0,0);}
.m123_c00248{transform:matrix(0.182595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182595,0.000000,0.000000,0.250000,0,0);}
.mea_c00248{transform:matrix(0.183655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183655,0.000000,0.000000,0.250000,0,0);}
.m62_c00248{transform:matrix(0.183663,0.000918,-0.001250,0.249997,0,0);-ms-transform:matrix(0.183663,0.000918,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.183663,0.000918,-0.001250,0.249997,0,0);}
.m15_c00248{transform:matrix(0.183874,0.001471,-0.002000,0.249992,0,0);-ms-transform:matrix(0.183874,0.001471,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.183874,0.001471,-0.002000,0.249992,0,0);}
.m18_c00248{transform:matrix(0.183879,0.001471,-0.002000,0.249992,0,0);-ms-transform:matrix(0.183879,0.001471,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.183879,0.001471,-0.002000,0.249992,0,0);}
.mc4_c00248{transform:matrix(0.184225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184225,0.000000,0.000000,0.250000,0,0);}
.m128_c00248{transform:matrix(0.185590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185590,0.000000,0.000000,0.250000,0,0);}
.mf_c00248{transform:matrix(0.185689,0.001486,-0.002000,0.249992,0,0);-ms-transform:matrix(0.185689,0.001486,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.185689,0.001486,-0.002000,0.249992,0,0);}
.md_c00248{transform:matrix(0.185914,0.001487,-0.002000,0.249992,0,0);-ms-transform:matrix(0.185914,0.001487,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.185914,0.001487,-0.002000,0.249992,0,0);}
.m7c_c00248{transform:matrix(0.186003,0.000930,-0.001250,0.249997,0,0);-ms-transform:matrix(0.186003,0.000930,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.186003,0.000930,-0.001250,0.249997,0,0);}
.m108_c00248{transform:matrix(0.188310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188310,0.000000,0.000000,0.250000,0,0);}
.mad_c00248{transform:matrix(0.188990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188990,0.000000,0.000000,0.250000,0,0);}
.mbf_c00248{transform:matrix(0.189315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189315,0.000000,0.000000,0.250000,0,0);}
.mf2_c00248{transform:matrix(0.189475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189475,0.000000,0.000000,0.250000,0,0);}
.m74_c00248{transform:matrix(0.190418,0.000952,-0.001250,0.249997,0,0);-ms-transform:matrix(0.190418,0.000952,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.190418,0.000952,-0.001250,0.249997,0,0);}
.mef_c00248{transform:matrix(0.190570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190570,0.000000,0.000000,0.250000,0,0);}
.m60_c00248{transform:matrix(0.190588,0.000953,-0.001250,0.249997,0,0);-ms-transform:matrix(0.190588,0.000953,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.190588,0.000953,-0.001250,0.249997,0,0);}
.m9a_c00248{transform:matrix(0.191007,0.001719,-0.002250,0.249990,0,0);-ms-transform:matrix(0.191007,0.001719,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.191007,0.001719,-0.002250,0.249990,0,0);}
.m101_c00248{transform:matrix(0.191205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191205,0.000000,0.000000,0.250000,0,0);}
.m10a_c00248{transform:matrix(0.191930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191930,0.000000,0.000000,0.250000,0,0);}
.m58_c00248{transform:matrix(0.192545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192545,0.000000,0.000000,0.250000,0,0);}
.m7_c00248{transform:matrix(0.192905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192905,0.000000,0.000000,0.250000,0,0);}
.mf1_c00248{transform:matrix(0.193135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193135,0.000000,0.000000,0.250000,0,0);}
.m8a_c00248{transform:matrix(0.193147,0.001738,-0.002250,0.249990,0,0);-ms-transform:matrix(0.193147,0.001738,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.193147,0.001738,-0.002250,0.249990,0,0);}
.m79_c00248{transform:matrix(0.193713,0.000969,-0.001250,0.249997,0,0);-ms-transform:matrix(0.193713,0.000969,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.193713,0.000969,-0.001250,0.249997,0,0);}
.m5c_c00248{transform:matrix(0.194260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194260,0.000000,0.000000,0.250000,0,0);}
.mcc_c00248{transform:matrix(0.194280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194280,0.000000,0.000000,0.250000,0,0);}
.m7e_c00248{transform:matrix(0.194493,0.000972,-0.001250,0.249997,0,0);-ms-transform:matrix(0.194493,0.000972,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.194493,0.000972,-0.001250,0.249997,0,0);}
.m7b_c00248{transform:matrix(0.194648,0.000973,-0.001250,0.249997,0,0);-ms-transform:matrix(0.194648,0.000973,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.194648,0.000973,-0.001250,0.249997,0,0);}
.m122_c00248{transform:matrix(0.195515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195515,0.000000,0.000000,0.250000,0,0);}
.m141_c00248{transform:matrix(0.195660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195660,0.000000,0.000000,0.250000,0,0);}
.m137_c00248{transform:matrix(0.195795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195795,0.000000,0.000000,0.250000,0,0);}
.m9b_c00248{transform:matrix(0.195860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195860,0.000000,0.000000,0.250000,0,0);}
.m139_c00248{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.mf0_c00248{transform:matrix(0.196305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196305,0.000000,0.000000,0.250000,0,0);}
.m80_c00248{transform:matrix(0.197548,0.000988,-0.001250,0.249997,0,0);-ms-transform:matrix(0.197548,0.000988,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.197548,0.000988,-0.001250,0.249997,0,0);}
.m135_c00248{transform:matrix(0.197695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197695,0.000000,0.000000,0.250000,0,0);}
.m5f_c00248{transform:matrix(0.198315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198315,0.000000,0.000000,0.250000,0,0);}
.m26_c00248{transform:matrix(0.198819,0.001591,-0.002000,0.249992,0,0);-ms-transform:matrix(0.198819,0.001591,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.198819,0.001591,-0.002000,0.249992,0,0);}
.m59_c00248{transform:matrix(0.199200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199200,0.000000,0.000000,0.250000,0,0);}
.mc6_c00248{transform:matrix(0.199410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199410,0.000000,0.000000,0.250000,0,0);}
.m66_c00248{transform:matrix(0.199448,0.000997,-0.001250,0.249997,0,0);-ms-transform:matrix(0.199448,0.000997,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.199448,0.000997,-0.001250,0.249997,0,0);}
.md3_c00248{transform:matrix(0.199735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199735,0.000000,0.000000,0.250000,0,0);}
.m81_c00248{transform:matrix(0.199738,0.000999,-0.001250,0.249997,0,0);-ms-transform:matrix(0.199738,0.000999,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.199738,0.000999,-0.001250,0.249997,0,0);}
.me7_c00248{transform:matrix(0.199780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199780,0.000000,0.000000,0.250000,0,0);}
.me3_c00248{transform:matrix(0.199920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199920,0.000000,0.000000,0.250000,0,0);}
.me2_c00248{transform:matrix(0.200215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200215,0.000000,0.000000,0.250000,0,0);}
.m91_c00248{transform:matrix(0.200427,0.001804,-0.002250,0.249990,0,0);-ms-transform:matrix(0.200427,0.001804,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.200427,0.001804,-0.002250,0.249990,0,0);}
.mb6_c00248{transform:matrix(0.200435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200435,0.000000,0.000000,0.250000,0,0);}
.m140_c00248{transform:matrix(0.200710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200710,0.000000,0.000000,0.250000,0,0);}
.m13a_c00248{transform:matrix(0.200715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200715,0.000000,0.000000,0.250000,0,0);}
.m136_c00248{transform:matrix(0.200890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200890,0.000000,0.000000,0.250000,0,0);}
.m132_c00248{transform:matrix(0.201255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201255,0.000000,0.000000,0.250000,0,0);}
.me6_c00248{transform:matrix(0.201305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201305,0.000000,0.000000,0.250000,0,0);}
.ma2_c00248{transform:matrix(0.201475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201475,0.000000,0.000000,0.250000,0,0);}
.m78_c00248{transform:matrix(0.202012,0.001010,-0.001250,0.249997,0,0);-ms-transform:matrix(0.202012,0.001010,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.202012,0.001010,-0.001250,0.249997,0,0);}
.mb3_c00248{transform:matrix(0.202120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202120,0.000000,0.000000,0.250000,0,0);}
.mb0_c00248{transform:matrix(0.202315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202315,0.000000,0.000000,0.250000,0,0);}
.ma7_c00248{transform:matrix(0.202400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202400,0.000000,0.000000,0.250000,0,0);}
.m2b_c00248{transform:matrix(0.202524,0.001620,-0.002000,0.249992,0,0);-ms-transform:matrix(0.202524,0.001620,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.202524,0.001620,-0.002000,0.249992,0,0);}
.m6a_c00248{transform:matrix(0.202602,0.001013,-0.001250,0.249997,0,0);-ms-transform:matrix(0.202602,0.001013,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.202602,0.001013,-0.001250,0.249997,0,0);}
.mf4_c00248{transform:matrix(0.203040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203040,0.000000,0.000000,0.250000,0,0);}
.m110_c00248{transform:matrix(0.203200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203200,0.000000,0.000000,0.250000,0,0);}
.m114_c00248{transform:matrix(0.203345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203345,0.000000,0.000000,0.250000,0,0);}
.m133_c00248{transform:matrix(0.203430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203430,0.000000,0.000000,0.250000,0,0);}
.m22_c00248{transform:matrix(0.203563,0.001629,-0.002000,0.249992,0,0);-ms-transform:matrix(0.203563,0.001629,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.203563,0.001629,-0.002000,0.249992,0,0);}
.mf9_c00248{transform:matrix(0.203570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203570,0.000000,0.000000,0.250000,0,0);}
.m82_c00248{transform:matrix(0.203702,0.001019,-0.001250,0.249997,0,0);-ms-transform:matrix(0.203702,0.001019,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.203702,0.001019,-0.001250,0.249997,0,0);}
.m13b_c00248{transform:matrix(0.203730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203730,0.000000,0.000000,0.250000,0,0);}
.mc7_c00248{transform:matrix(0.204020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204020,0.000000,0.000000,0.250000,0,0);}
.m67_c00248{transform:matrix(0.204152,0.001021,-0.001250,0.249997,0,0);-ms-transform:matrix(0.204152,0.001021,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.204152,0.001021,-0.001250,0.249997,0,0);}
.mc9_c00248{transform:matrix(0.204155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204155,0.000000,0.000000,0.250000,0,0);}
.ma9_c00248{transform:matrix(0.204200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204200,0.000000,0.000000,0.250000,0,0);}
.m134_c00248{transform:matrix(0.204240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204240,0.000000,0.000000,0.250000,0,0);}
.med_c00248{transform:matrix(0.204260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204260,0.000000,0.000000,0.250000,0,0);}
.m8f_c00248{transform:matrix(0.204387,0.001839,-0.002250,0.249990,0,0);-ms-transform:matrix(0.204387,0.001839,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.204387,0.001839,-0.002250,0.249990,0,0);}
.m88_c00248{transform:matrix(0.204687,0.001023,-0.001250,0.249997,0,0);-ms-transform:matrix(0.204687,0.001023,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.204687,0.001023,-0.001250,0.249997,0,0);}
.mdc_c00248{transform:matrix(0.205840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205840,0.000000,0.000000,0.250000,0,0);}
.m77_c00248{transform:matrix(0.205977,0.001030,-0.001250,0.249997,0,0);-ms-transform:matrix(0.205977,0.001030,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.205977,0.001030,-0.001250,0.249997,0,0);}
.m138_c00248{transform:matrix(0.206440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206440,0.000000,0.000000,0.250000,0,0);}
.m104_c00248{transform:matrix(0.206650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206650,0.000000,0.000000,0.250000,0,0);}
.mca_c00248{transform:matrix(0.206890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206890,0.000000,0.000000,0.250000,0,0);}
.ma_c00248{transform:matrix(0.207205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207205,0.000000,0.000000,0.250000,0,0);}
.md0_c00248{transform:matrix(0.207290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207290,0.000000,0.000000,0.250000,0,0);}
.mfc_c00248{transform:matrix(0.207315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207315,0.000000,0.000000,0.250000,0,0);}
.ma5_c00248{transform:matrix(0.207425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207425,0.000000,0.000000,0.250000,0,0);}
.m73_c00248{transform:matrix(0.208017,0.001040,-0.001250,0.249997,0,0);-ms-transform:matrix(0.208017,0.001040,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.208017,0.001040,-0.001250,0.249997,0,0);}
.mb5_c00248{transform:matrix(0.208070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208070,0.000000,0.000000,0.250000,0,0);}
.m3b_c00248{transform:matrix(0.208173,0.001665,-0.002000,0.249992,0,0);-ms-transform:matrix(0.208173,0.001665,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.208173,0.001665,-0.002000,0.249992,0,0);}
.mc0_c00248{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m113_c00248{transform:matrix(0.209410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209410,0.000000,0.000000,0.250000,0,0);}
.ma8_c00248{transform:matrix(0.209440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209440,0.000000,0.000000,0.250000,0,0);}
.m12f_c00248{transform:matrix(0.209675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209675,0.000000,0.000000,0.250000,0,0);}
.m64_c00248{transform:matrix(0.209697,0.001048,-0.001250,0.249997,0,0);-ms-transform:matrix(0.209697,0.001048,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.209697,0.001048,-0.001250,0.249997,0,0);}
.m102_c00248{transform:matrix(0.209700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209700,0.000000,0.000000,0.250000,0,0);}
.m7d_c00248{transform:matrix(0.209822,0.001049,-0.001250,0.249997,0,0);-ms-transform:matrix(0.209822,0.001049,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.209822,0.001049,-0.001250,0.249997,0,0);}
.m8b_c00248{transform:matrix(0.210096,0.001891,-0.002250,0.249990,0,0);-ms-transform:matrix(0.210096,0.001891,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.210096,0.001891,-0.002250,0.249990,0,0);}
.m131_c00248{transform:matrix(0.210165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210165,0.000000,0.000000,0.250000,0,0);}
.m4_c00248{transform:matrix(0.210580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210580,0.000000,0.000000,0.250000,0,0);}
.m72_c00248{transform:matrix(0.210722,0.001054,-0.001250,0.249997,0,0);-ms-transform:matrix(0.210722,0.001054,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.210722,0.001054,-0.001250,0.249997,0,0);}
.m76_c00248{transform:matrix(0.210802,0.001054,-0.001250,0.249997,0,0);-ms-transform:matrix(0.210802,0.001054,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.210802,0.001054,-0.001250,0.249997,0,0);}
.m115_c00248{transform:matrix(0.211050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211050,0.000000,0.000000,0.250000,0,0);}
.mcf_c00248{transform:matrix(0.211410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211410,0.000000,0.000000,0.250000,0,0);}
.ma3_c00248{transform:matrix(0.211485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211485,0.000000,0.000000,0.250000,0,0);}
.meb_c00248{transform:matrix(0.211580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211580,0.000000,0.000000,0.250000,0,0);}
.m69_c00248{transform:matrix(0.211602,0.001058,-0.001250,0.249997,0,0);-ms-transform:matrix(0.211602,0.001058,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.211602,0.001058,-0.001250,0.249997,0,0);}
.m116_c00248{transform:matrix(0.212185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212185,0.000000,0.000000,0.250000,0,0);}
.m7a_c00248{transform:matrix(0.212397,0.001062,-0.001250,0.249997,0,0);-ms-transform:matrix(0.212397,0.001062,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.212397,0.001062,-0.001250,0.249997,0,0);}
.m65_c00248{transform:matrix(0.212487,0.001062,-0.001250,0.249997,0,0);-ms-transform:matrix(0.212487,0.001062,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.212487,0.001062,-0.001250,0.249997,0,0);}
.md2_c00248{transform:matrix(0.212490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212490,0.000000,0.000000,0.250000,0,0);}
.mfd_c00248{transform:matrix(0.212830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212830,0.000000,0.000000,0.250000,0,0);}
.mb8_c00248{transform:matrix(0.213050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213050,0.000000,0.000000,0.250000,0,0);}
.mcd_c00248{transform:matrix(0.213055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213055,0.000000,0.000000,0.250000,0,0);}
.mf3_c00248{transform:matrix(0.213135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213135,0.000000,0.000000,0.250000,0,0);}
.m70_c00248{transform:matrix(0.213427,0.001067,-0.001250,0.249997,0,0);-ms-transform:matrix(0.213427,0.001067,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.213427,0.001067,-0.001250,0.249997,0,0);}
.m61_c00248{transform:matrix(0.213912,0.001070,-0.001250,0.249997,0,0);-ms-transform:matrix(0.213912,0.001070,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.213912,0.001070,-0.001250,0.249997,0,0);}
.mba_c00248{transform:matrix(0.214065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214065,0.000000,0.000000,0.250000,0,0);}
.m63_c00248{transform:matrix(0.214167,0.001071,-0.001250,0.249997,0,0);-ms-transform:matrix(0.214167,0.001071,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.214167,0.001071,-0.001250,0.249997,0,0);}
.mdd_c00248{transform:matrix(0.214180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214180,0.000000,0.000000,0.250000,0,0);}
.m6d_c00248{transform:matrix(0.214512,0.001073,-0.001250,0.249997,0,0);-ms-transform:matrix(0.214512,0.001073,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.214512,0.001073,-0.001250,0.249997,0,0);}
.ma6_c00248{transform:matrix(0.214895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214895,0.000000,0.000000,0.250000,0,0);}
.m54_c00248{transform:matrix(0.214953,0.001720,-0.002000,0.249992,0,0);-ms-transform:matrix(0.214953,0.001720,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.214953,0.001720,-0.002000,0.249992,0,0);}
.m85_c00248{transform:matrix(0.215147,0.001076,-0.001250,0.249997,0,0);-ms-transform:matrix(0.215147,0.001076,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.215147,0.001076,-0.001250,0.249997,0,0);}
.mfb_c00248{transform:matrix(0.215650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215650,0.000000,0.000000,0.250000,0,0);}
.mcb_c00248{transform:matrix(0.215930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215930,0.000000,0.000000,0.250000,0,0);}
.m3c_c00248{transform:matrix(0.216223,0.001730,-0.002000,0.249992,0,0);-ms-transform:matrix(0.216223,0.001730,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.216223,0.001730,-0.002000,0.249992,0,0);}
.m99_c00248{transform:matrix(0.216836,0.001952,-0.002250,0.249990,0,0);-ms-transform:matrix(0.216836,0.001952,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.216836,0.001952,-0.002250,0.249990,0,0);}
.mac_c00248{transform:matrix(0.216845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216845,0.000000,0.000000,0.250000,0,0);}
.md1_c00248{transform:matrix(0.216880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216880,0.000000,0.000000,0.250000,0,0);}
.m71_c00248{transform:matrix(0.216897,0.001084,-0.001250,0.249997,0,0);-ms-transform:matrix(0.216897,0.001084,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.216897,0.001084,-0.001250,0.249997,0,0);}
.mb2_c00248{transform:matrix(0.216980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216980,0.000000,0.000000,0.250000,0,0);}
.m11b_c00248{transform:matrix(0.217190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217190,0.000000,0.000000,0.250000,0,0);}
.m55_c00248{transform:matrix(0.217383,0.001739,-0.002000,0.249992,0,0);-ms-transform:matrix(0.217383,0.001739,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.217383,0.001739,-0.002000,0.249992,0,0);}
.m13c_c00248{transform:matrix(0.217670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217670,0.000000,0.000000,0.250000,0,0);}
.mce_c00248{transform:matrix(0.217760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217760,0.000000,0.000000,0.250000,0,0);}
.m10b_c00248{transform:matrix(0.217875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217875,0.000000,0.000000,0.250000,0,0);}
.m2a_c00248{transform:matrix(0.218043,0.001744,-0.002000,0.249992,0,0);-ms-transform:matrix(0.218043,0.001744,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.218043,0.001744,-0.002000,0.249992,0,0);}
.m2_c00248{transform:matrix(0.218050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218050,0.000000,0.000000,0.250000,0,0);}
.m34_c00248{transform:matrix(0.218103,0.001745,-0.002000,0.249992,0,0);-ms-transform:matrix(0.218103,0.001745,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.218103,0.001745,-0.002000,0.249992,0,0);}
.m8c_c00248{transform:matrix(0.218196,0.001964,-0.002250,0.249990,0,0);-ms-transform:matrix(0.218196,0.001964,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.218196,0.001964,-0.002250,0.249990,0,0);}
.mf7_c00248{transform:matrix(0.218215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218215,0.000000,0.000000,0.250000,0,0);}
.mc8_c00248{transform:matrix(0.218235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218235,0.000000,0.000000,0.250000,0,0);}
.m6_c00248{transform:matrix(0.218620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218620,0.000000,0.000000,0.250000,0,0);}
.mdf_c00248{transform:matrix(0.218740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218740,0.000000,0.000000,0.250000,0,0);}
.m49_c00248{transform:matrix(0.218823,0.001751,-0.002000,0.249992,0,0);-ms-transform:matrix(0.218823,0.001751,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.218823,0.001751,-0.002000,0.249992,0,0);}
.m75_c00248{transform:matrix(0.218847,0.001094,-0.001250,0.249997,0,0);-ms-transform:matrix(0.218847,0.001094,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.218847,0.001094,-0.001250,0.249997,0,0);}
.m109_c00248{transform:matrix(0.218905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218905,0.000000,0.000000,0.250000,0,0);}
.mae_c00248{transform:matrix(0.218955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218955,0.000000,0.000000,0.250000,0,0);}
.m23_c00248{transform:matrix(0.219238,0.001754,-0.002000,0.249992,0,0);-ms-transform:matrix(0.219238,0.001754,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.219238,0.001754,-0.002000,0.249992,0,0);}
.m92_c00248{transform:matrix(0.219336,0.001974,-0.002250,0.249990,0,0);-ms-transform:matrix(0.219336,0.001974,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.219336,0.001974,-0.002250,0.249990,0,0);}
.m31_c00248{transform:matrix(0.219828,0.001759,-0.002000,0.249992,0,0);-ms-transform:matrix(0.219828,0.001759,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.219828,0.001759,-0.002000,0.249992,0,0);}
.m84_c00248{transform:matrix(0.220067,0.001100,-0.001250,0.249997,0,0);-ms-transform:matrix(0.220067,0.001100,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.220067,0.001100,-0.001250,0.249997,0,0);}
.md6_c00248{transform:matrix(0.220510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220510,0.000000,0.000000,0.250000,0,0);}
.m1f_c00248{transform:matrix(0.220638,0.001765,-0.002000,0.249992,0,0);-ms-transform:matrix(0.220638,0.001765,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.220638,0.001765,-0.002000,0.249992,0,0);}
.m4d_c00248{transform:matrix(0.220723,0.001766,-0.002000,0.249992,0,0);-ms-transform:matrix(0.220723,0.001766,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.220723,0.001766,-0.002000,0.249992,0,0);}
.me4_c00248{transform:matrix(0.221060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221060,0.000000,0.000000,0.250000,0,0);}
.m93_c00248{transform:matrix(0.221081,0.001990,-0.002250,0.249990,0,0);-ms-transform:matrix(0.221081,0.001990,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.221081,0.001990,-0.002250,0.249990,0,0);}
.m6f_c00248{transform:matrix(0.221632,0.001108,-0.001250,0.249997,0,0);-ms-transform:matrix(0.221632,0.001108,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.221632,0.001108,-0.001250,0.249997,0,0);}
.m3d_c00248{transform:matrix(0.221808,0.001774,-0.002000,0.249992,0,0);-ms-transform:matrix(0.221808,0.001774,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.221808,0.001774,-0.002000,0.249992,0,0);}
.mab_c00248{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m21_c00248{transform:matrix(0.222448,0.001780,-0.002000,0.249992,0,0);-ms-transform:matrix(0.222448,0.001780,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.222448,0.001780,-0.002000,0.249992,0,0);}
.mb7_c00248{transform:matrix(0.222695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222695,0.000000,0.000000,0.250000,0,0);}
.m45_c00248{transform:matrix(0.222728,0.001782,-0.002000,0.249992,0,0);-ms-transform:matrix(0.222728,0.001782,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.222728,0.001782,-0.002000,0.249992,0,0);}
.mda_c00248{transform:matrix(0.222735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222735,0.000000,0.000000,0.250000,0,0);}
.m103_c00248{transform:matrix(0.222840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222840,0.000000,0.000000,0.250000,0,0);}
.mbc_c00248{transform:matrix(0.222960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222960,0.000000,0.000000,0.250000,0,0);}
.m6e_c00248{transform:matrix(0.223047,0.001115,-0.001250,0.249997,0,0);-ms-transform:matrix(0.223047,0.001115,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.223047,0.001115,-0.001250,0.249997,0,0);}
.m98_c00248{transform:matrix(0.223061,0.002008,-0.002250,0.249990,0,0);-ms-transform:matrix(0.223061,0.002008,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.223061,0.002008,-0.002250,0.249990,0,0);}
.m105_c00248{transform:matrix(0.223090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223090,0.000000,0.000000,0.250000,0,0);}
.m11c_c00248{transform:matrix(0.223230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223230,0.000000,0.000000,0.250000,0,0);}
.me5_c00248{transform:matrix(0.223480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223480,0.000000,0.000000,0.250000,0,0);}
.m68_c00248{transform:matrix(0.223617,0.001118,-0.001250,0.249997,0,0);-ms-transform:matrix(0.223617,0.001118,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.223617,0.001118,-0.001250,0.249997,0,0);}
.m29_c00248{transform:matrix(0.223753,0.001790,-0.002000,0.249992,0,0);-ms-transform:matrix(0.223753,0.001790,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.223753,0.001790,-0.002000,0.249992,0,0);}
.m130_c00248{transform:matrix(0.224015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224015,0.000000,0.000000,0.250000,0,0);}
.m87_c00248{transform:matrix(0.224057,0.001120,-0.001250,0.249997,0,0);-ms-transform:matrix(0.224057,0.001120,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.224057,0.001120,-0.001250,0.249997,0,0);}
.m97_c00248{transform:matrix(0.224126,0.002017,-0.002250,0.249990,0,0);-ms-transform:matrix(0.224126,0.002017,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.224126,0.002017,-0.002250,0.249990,0,0);}
.m9f_c00248{transform:matrix(0.224190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224190,0.000000,0.000000,0.250000,0,0);}
.m28_c00248{transform:matrix(0.224303,0.001794,-0.002000,0.249992,0,0);-ms-transform:matrix(0.224303,0.001794,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.224303,0.001794,-0.002000,0.249992,0,0);}
.m40_c00248{transform:matrix(0.224408,0.001795,-0.002000,0.249992,0,0);-ms-transform:matrix(0.224408,0.001795,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.224408,0.001795,-0.002000,0.249992,0,0);}
.m117_c00248{transform:matrix(0.224445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224445,0.000000,0.000000,0.250000,0,0);}
.mc2_c00248{transform:matrix(0.224745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224745,0.000000,0.000000,0.250000,0,0);}
.mff_c00248{transform:matrix(0.224870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224870,0.000000,0.000000,0.250000,0,0);}
.m13f_c00248{transform:matrix(0.225185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225185,0.000000,0.000000,0.250000,0,0);}
.m11e_c00248{transform:matrix(0.225295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225295,0.000000,0.000000,0.250000,0,0);}
.m6c_c00248{transform:matrix(0.225737,0.001129,-0.001250,0.249997,0,0);-ms-transform:matrix(0.225737,0.001129,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.225737,0.001129,-0.001250,0.249997,0,0);}
.m5_c00248{transform:matrix(0.225920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225920,0.000000,0.000000,0.250000,0,0);}
.m13e_c00248{transform:matrix(0.226175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226175,0.000000,0.000000,0.250000,0,0);}
.m11a_c00248{transform:matrix(0.226470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226470,0.000000,0.000000,0.250000,0,0);}
.m111_c00248{transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);}
.m106_c00248{transform:matrix(0.226605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226605,0.000000,0.000000,0.250000,0,0);}
.m37_c00248{transform:matrix(0.227098,0.001817,-0.002000,0.249992,0,0);-ms-transform:matrix(0.227098,0.001817,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.227098,0.001817,-0.002000,0.249992,0,0);}
.m6b_c00248{transform:matrix(0.227782,0.001139,-0.001250,0.249997,0,0);-ms-transform:matrix(0.227782,0.001139,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.227782,0.001139,-0.001250,0.249997,0,0);}
.m10c_c00248{transform:matrix(0.227840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227840,0.000000,0.000000,0.250000,0,0);}
.maa_c00248{transform:matrix(0.228085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228085,0.000000,0.000000,0.250000,0,0);}
.ma4_c00248{transform:matrix(0.228510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228510,0.000000,0.000000,0.250000,0,0);}
.m121_c00248{transform:matrix(0.228710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228710,0.000000,0.000000,0.250000,0,0);}
.m10f_c00248{transform:matrix(0.228915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228915,0.000000,0.000000,0.250000,0,0);}
.m27_c00248{transform:matrix(0.228928,0.001831,-0.002000,0.249992,0,0);-ms-transform:matrix(0.228928,0.001831,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.228928,0.001831,-0.002000,0.249992,0,0);}
.m43_c00248{transform:matrix(0.229293,0.001834,-0.002000,0.249992,0,0);-ms-transform:matrix(0.229293,0.001834,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.229293,0.001834,-0.002000,0.249992,0,0);}
.mc3_c00248{transform:matrix(0.229295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229295,0.000000,0.000000,0.250000,0,0);}
.m11d_c00248{transform:matrix(0.229445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229445,0.000000,0.000000,0.250000,0,0);}
.m3_c00248{transform:matrix(0.230285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230285,0.000000,0.000000,0.250000,0,0);}
.m8e_c00248{transform:matrix(0.230561,0.002075,-0.002250,0.249990,0,0);-ms-transform:matrix(0.230561,0.002075,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.230561,0.002075,-0.002250,0.249990,0,0);}
.ma0_c00248{transform:matrix(0.230850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230850,0.000000,0.000000,0.250000,0,0);}
.m8d_c00248{transform:matrix(0.230851,0.002078,-0.002250,0.249990,0,0);-ms-transform:matrix(0.230851,0.002078,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.230851,0.002078,-0.002250,0.249990,0,0);}
.mb1_c00248{transform:matrix(0.230980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230980,0.000000,0.000000,0.250000,0,0);}
.mf8_c00248{transform:matrix(0.231905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231905,0.000000,0.000000,0.250000,0,0);}
.mf6_c00248{transform:matrix(0.232640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232640,0.000000,0.000000,0.250000,0,0);}
.mbb_c00248{transform:matrix(0.232735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232735,0.000000,0.000000,0.250000,0,0);}
.me8_c00248{transform:matrix(0.233005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233005,0.000000,0.000000,0.250000,0,0);}
.m9d_c00248{transform:matrix(0.233225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233225,0.000000,0.000000,0.250000,0,0);}
.mc1_c00248{transform:matrix(0.233260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233260,0.000000,0.000000,0.250000,0,0);}
.m94_c00248{transform:matrix(0.233996,0.002106,-0.002250,0.249990,0,0);-ms-transform:matrix(0.233996,0.002106,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.233996,0.002106,-0.002250,0.249990,0,0);}
.m100_c00248{transform:matrix(0.234185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234185,0.000000,0.000000,0.250000,0,0);}
.m120_c00248{transform:matrix(0.234435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234435,0.000000,0.000000,0.250000,0,0);}
.m9e_c00248{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m90_c00248{transform:matrix(0.235350,0.002118,-0.002250,0.249990,0,0);-ms-transform:matrix(0.235350,0.002118,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.235350,0.002118,-0.002250,0.249990,0,0);}
.m48_c00248{transform:matrix(0.235357,0.001883,-0.002000,0.249992,0,0);-ms-transform:matrix(0.235357,0.001883,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.235357,0.001883,-0.002000,0.249992,0,0);}
.m50_c00248{transform:matrix(0.235557,0.001884,-0.002000,0.249992,0,0);-ms-transform:matrix(0.235557,0.001884,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.235557,0.001884,-0.002000,0.249992,0,0);}
.m10e_c00248{transform:matrix(0.236270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236270,0.000000,0.000000,0.250000,0,0);}
.me0_c00248{transform:matrix(0.236545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236545,0.000000,0.000000,0.250000,0,0);}
.m11f_c00248{transform:matrix(0.236565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236565,0.000000,0.000000,0.250000,0,0);}
.mfe_c00248{transform:matrix(0.236585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236585,0.000000,0.000000,0.250000,0,0);}
.m4f_c00248{transform:matrix(0.236937,0.001895,-0.002000,0.249992,0,0);-ms-transform:matrix(0.236937,0.001895,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.236937,0.001895,-0.002000,0.249992,0,0);}
.m9c_c00248{transform:matrix(0.237230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237230,0.000000,0.000000,0.250000,0,0);}
.m86_c00248{transform:matrix(0.237467,0.001187,-0.001250,0.249997,0,0);-ms-transform:matrix(0.237467,0.001187,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.237467,0.001187,-0.001250,0.249997,0,0);}
.m95_c00248{transform:matrix(0.237580,0.002138,-0.002250,0.249990,0,0);-ms-transform:matrix(0.237580,0.002138,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.237580,0.002138,-0.002250,0.249990,0,0);}
.md4_c00248{transform:matrix(0.237705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237705,0.000000,0.000000,0.250000,0,0);}
.ma1_c00248{transform:matrix(0.237770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237770,0.000000,0.000000,0.250000,0,0);}
.m20_c00248{transform:matrix(0.238127,0.001905,-0.002000,0.249992,0,0);-ms-transform:matrix(0.238127,0.001905,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.238127,0.001905,-0.002000,0.249992,0,0);}
.m39_c00248{transform:matrix(0.238767,0.001910,-0.002000,0.249992,0,0);-ms-transform:matrix(0.238767,0.001910,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.238767,0.001910,-0.002000,0.249992,0,0);}
.me9_c00248{transform:matrix(0.238870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238870,0.000000,0.000000,0.250000,0,0);}
.m96_c00248{transform:matrix(0.238955,0.002151,-0.002250,0.249990,0,0);-ms-transform:matrix(0.238955,0.002151,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.238955,0.002151,-0.002250,0.249990,0,0);}
.m10d_c00248{transform:matrix(0.239005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239005,0.000000,0.000000,0.250000,0,0);}
.mfa_c00248{transform:matrix(0.239405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239405,0.000000,0.000000,0.250000,0,0);}
.mc5_c00248{transform:matrix(0.239415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239415,0.000000,0.000000,0.250000,0,0);}
.m25_c00248{transform:matrix(0.239517,0.001916,-0.002000,0.249992,0,0);-ms-transform:matrix(0.239517,0.001916,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.239517,0.001916,-0.002000,0.249992,0,0);}
.mbd_c00248{transform:matrix(0.239525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239525,0.000000,0.000000,0.250000,0,0);}
.m24_c00248{transform:matrix(0.240572,0.001925,-0.002000,0.249992,0,0);-ms-transform:matrix(0.240572,0.001925,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.240572,0.001925,-0.002000,0.249992,0,0);}
.mb9_c00248{transform:matrix(0.240880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240880,0.000000,0.000000,0.250000,0,0);}
.md9_c00248{transform:matrix(0.240965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240965,0.000000,0.000000,0.250000,0,0);}
.m47_c00248{transform:matrix(0.241432,0.001931,-0.002000,0.249992,0,0);-ms-transform:matrix(0.241432,0.001931,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.241432,0.001931,-0.002000,0.249992,0,0);}
.m46_c00248{transform:matrix(0.241917,0.001935,-0.002000,0.249992,0,0);-ms-transform:matrix(0.241917,0.001935,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.241917,0.001935,-0.002000,0.249992,0,0);}
.m2f_c00248{transform:matrix(0.241982,0.001936,-0.002000,0.249992,0,0);-ms-transform:matrix(0.241982,0.001936,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.241982,0.001936,-0.002000,0.249992,0,0);}
.m3a_c00248{transform:matrix(0.242807,0.001942,-0.002000,0.249992,0,0);-ms-transform:matrix(0.242807,0.001942,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.242807,0.001942,-0.002000,0.249992,0,0);}
.m83_c00248{transform:matrix(0.242907,0.001215,-0.001250,0.249997,0,0);-ms-transform:matrix(0.242907,0.001215,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.242907,0.001215,-0.001250,0.249997,0,0);}
.m53_c00248{transform:matrix(0.243807,0.001950,-0.002000,0.249992,0,0);-ms-transform:matrix(0.243807,0.001950,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.243807,0.001950,-0.002000,0.249992,0,0);}
.maf_c00248{transform:matrix(0.244475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244475,0.000000,0.000000,0.250000,0,0);}
.m32_c00248{transform:matrix(0.244792,0.001958,-0.002000,0.249992,0,0);-ms-transform:matrix(0.244792,0.001958,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.244792,0.001958,-0.002000,0.249992,0,0);}
.m118_c00248{transform:matrix(0.245480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245480,0.000000,0.000000,0.250000,0,0);}
.m42_c00248{transform:matrix(0.245692,0.001966,-0.002000,0.249992,0,0);-ms-transform:matrix(0.245692,0.001966,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.245692,0.001966,-0.002000,0.249992,0,0);}
.m38_c00248{transform:matrix(0.246167,0.001969,-0.002000,0.249992,0,0);-ms-transform:matrix(0.246167,0.001969,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.246167,0.001969,-0.002000,0.249992,0,0);}
.m2c_c00248{transform:matrix(0.246292,0.001970,-0.002000,0.249992,0,0);-ms-transform:matrix(0.246292,0.001970,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.246292,0.001970,-0.002000,0.249992,0,0);}
.m30_c00248{transform:matrix(0.246432,0.001971,-0.002000,0.249992,0,0);-ms-transform:matrix(0.246432,0.001971,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.246432,0.001971,-0.002000,0.249992,0,0);}
.mdb_c00248{transform:matrix(0.246625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246625,0.000000,0.000000,0.250000,0,0);}
.me1_c00248{transform:matrix(0.246915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246915,0.000000,0.000000,0.250000,0,0);}
.mde_c00248{transform:matrix(0.248310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248310,0.000000,0.000000,0.250000,0,0);}
.md7_c00248{transform:matrix(0.248510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248510,0.000000,0.000000,0.250000,0,0);}
.m4a_c00248{transform:matrix(0.249227,0.001994,-0.002000,0.249992,0,0);-ms-transform:matrix(0.249227,0.001994,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.249227,0.001994,-0.002000,0.249992,0,0);}
.mbe_c00248{transform:matrix(0.250920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250920,0.000000,0.000000,0.250000,0,0);}
.m2e_c00248{transform:matrix(0.251007,0.002008,-0.002000,0.249992,0,0);-ms-transform:matrix(0.251007,0.002008,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.251007,0.002008,-0.002000,0.249992,0,0);}
.m56_c00248{transform:matrix(0.251452,0.002012,-0.002000,0.249992,0,0);-ms-transform:matrix(0.251452,0.002012,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.251452,0.002012,-0.002000,0.249992,0,0);}
.m4b_c00248{transform:matrix(0.251547,0.002012,-0.002000,0.249992,0,0);-ms-transform:matrix(0.251547,0.002012,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.251547,0.002012,-0.002000,0.249992,0,0);}
.m41_c00248{transform:matrix(0.251667,0.002013,-0.002000,0.249992,0,0);-ms-transform:matrix(0.251667,0.002013,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.251667,0.002013,-0.002000,0.249992,0,0);}
.m35_c00248{transform:matrix(0.251887,0.002015,-0.002000,0.249992,0,0);-ms-transform:matrix(0.251887,0.002015,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.251887,0.002015,-0.002000,0.249992,0,0);}
.m2d_c00248{transform:matrix(0.252547,0.002020,-0.002000,0.249992,0,0);-ms-transform:matrix(0.252547,0.002020,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.252547,0.002020,-0.002000,0.249992,0,0);}
.m33_c00248{transform:matrix(0.252682,0.002021,-0.002000,0.249992,0,0);-ms-transform:matrix(0.252682,0.002021,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.252682,0.002021,-0.002000,0.249992,0,0);}
.m3e_c00248{transform:matrix(0.253427,0.002027,-0.002000,0.249992,0,0);-ms-transform:matrix(0.253427,0.002027,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.253427,0.002027,-0.002000,0.249992,0,0);}
.mf5_c00248{transform:matrix(0.254560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254560,0.000000,0.000000,0.250000,0,0);}
.md8_c00248{transform:matrix(0.254980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254980,0.000000,0.000000,0.250000,0,0);}
.m3f_c00248{transform:matrix(0.255247,0.002042,-0.002000,0.249992,0,0);-ms-transform:matrix(0.255247,0.002042,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.255247,0.002042,-0.002000,0.249992,0,0);}
.m4e_c00248{transform:matrix(0.256202,0.002050,-0.002000,0.249992,0,0);-ms-transform:matrix(0.256202,0.002050,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.256202,0.002050,-0.002000,0.249992,0,0);}
.m4c_c00248{transform:matrix(0.257727,0.002062,-0.002000,0.249992,0,0);-ms-transform:matrix(0.257727,0.002062,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.257727,0.002062,-0.002000,0.249992,0,0);}
.m44_c00248{transform:matrix(0.258137,0.002065,-0.002000,0.249992,0,0);-ms-transform:matrix(0.258137,0.002065,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.258137,0.002065,-0.002000,0.249992,0,0);}
.md5_c00248{transform:matrix(0.261395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261395,0.000000,0.000000,0.250000,0,0);}
.m36_c00248{transform:matrix(0.263437,0.002107,-0.002000,0.249992,0,0);-ms-transform:matrix(0.263437,0.002107,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.263437,0.002107,-0.002000,0.249992,0,0);}
.mb4_c00248{transform:matrix(0.265930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265930,0.000000,0.000000,0.250000,0,0);}
.m52_c00248{transform:matrix(0.279191,0.002234,-0.002000,0.249992,0,0);-ms-transform:matrix(0.279191,0.002234,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.279191,0.002234,-0.002000,0.249992,0,0);}
.m1_c00248{transform:matrix(0.334635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334635,0.000000,0.000000,0.250000,0,0);}
.m8_c00248{transform:matrix(0.360175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360175,0.000000,0.000000,0.250000,0,0);}
.m51_c00248{transform:matrix(0.364793,0.002918,-0.002000,0.249992,0,0);-ms-transform:matrix(0.364793,0.002918,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.364793,0.002918,-0.002000,0.249992,0,0);}
.m0_c00248{transform:matrix(2.803520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.803520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.803520,0.000000,0.000000,0.250000,0,0);}
.v0_c00248{vertical-align:0.000000px;}
.ls0_c00248{letter-spacing:0.000000px;}
.sc__c00248{text-shadow:none;}
.sc0_c00248{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__c00248{-webkit-text-stroke:0px transparent;}
.sc0_c00248{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00248{word-spacing:0.000000px;}
.fc0_c00248{color:transparent;}
.fs0_c00248{font-size:42.000000px;}
.fsc_c00248{font-size:78.000000px;}
.fs6_c00248{font-size:78.002496px;}
.fs2_c00248{font-size:84.000000px;}
.fsa_c00248{font-size:84.001050px;}
.fs5_c00248{font-size:84.002688px;}
.fsb_c00248{font-size:84.003402px;}
.fs1_c00248{font-size:90.000000px;}
.fs8_c00248{font-size:90.001125px;}
.fsd_c00248{font-size:96.000000px;}
.fs9_c00248{font-size:96.001200px;}
.fs7_c00248{font-size:102.000000px;}
.fs3_c00248{font-size:108.000000px;}
.fs4_c00248{font-size:108.003456px;}
.y0_c00248{bottom:0.000000px;}
.y12d_c00248{bottom:6.087000px;}
.y12c_c00248{bottom:6.684000px;}
.y12b_c00248{bottom:8.284500px;}
.y12a_c00248{bottom:9.612000px;}
.y129_c00248{bottom:9.834000px;}
.y128_c00248{bottom:10.689000px;}
.y127_c00248{bottom:11.401500px;}
.y126_c00248{bottom:11.877000px;}
.y125_c00248{bottom:36.981000px;}
.y124_c00248{bottom:37.450500px;}
.y123_c00248{bottom:37.824000px;}
.y122_c00248{bottom:38.448000px;}
.y121_c00248{bottom:38.688000px;}
.y120_c00248{bottom:39.291000px;}
.y11f_c00248{bottom:39.835500px;}
.y11e_c00248{bottom:40.074000px;}
.y11d_c00248{bottom:40.611000px;}
.y11c_c00248{bottom:40.806000px;}
.y11b_c00248{bottom:41.307000px;}
.y11a_c00248{bottom:67.968000px;}
.y119_c00248{bottom:68.853000px;}
.y118_c00248{bottom:69.151500px;}
.y117_c00248{bottom:69.747000px;}
.y116_c00248{bottom:70.342500px;}
.y115_c00248{bottom:70.648500px;}
.y114_c00248{bottom:71.424000px;}
.y113_c00248{bottom:71.724000px;}
.y112_c00248{bottom:72.124500px;}
.y111_c00248{bottom:72.724500px;}
.y110_c00248{bottom:73.023000px;}
.y10f_c00248{bottom:73.705500px;}
.y10e_c00248{bottom:100.320000px;}
.y10d_c00248{bottom:101.020500px;}
.y10c_c00248{bottom:101.341500px;}
.y10b_c00248{bottom:102.111000px;}
.y10a_c00248{bottom:102.613500px;}
.y109_c00248{bottom:102.927000px;}
.y108_c00248{bottom:103.410000px;}
.y107_c00248{bottom:103.704000px;}
.y106_c00248{bottom:104.494500px;}
.y105_c00248{bottom:104.788500px;}
.y104_c00248{bottom:104.976000px;}
.y103_c00248{bottom:106.375500px;}
.y102_c00248{bottom:132.853500px;}
.y101_c00248{bottom:133.159500px;}
.y100_c00248{bottom:133.563000px;}
.yff_c00248{bottom:133.849500px;}
.yfe_c00248{bottom:134.346000px;}
.yfd_c00248{bottom:134.640000px;}
.yfc_c00248{bottom:135.244500px;}
.yfb_c00248{bottom:135.535500px;}
.yfa_c00248{bottom:135.732000px;}
.yf9_c00248{bottom:136.825500px;}
.yf8_c00248{bottom:137.718000px;}
.yf7_c00248{bottom:138.121500px;}
.yf6_c00248{bottom:138.505500px;}
.yf5_c00248{bottom:165.072000px;}
.yf4_c00248{bottom:165.963000px;}
.yf3_c00248{bottom:166.284000px;}
.yf2_c00248{bottom:166.510500px;}
.yf1_c00248{bottom:167.734500px;}
.yf0_c00248{bottom:169.030500px;}
.yef_c00248{bottom:169.486500px;}
.yee_c00248{bottom:170.574000px;}
.yed_c00248{bottom:171.138000px;}
.yec_c00248{bottom:171.445500px;}
.yeb_c00248{bottom:198.738000px;}
.yea_c00248{bottom:199.173000px;}
.ye9_c00248{bottom:199.801500px;}
.ye8_c00248{bottom:200.316000px;}
.ye7_c00248{bottom:200.587500px;}
.ye6_c00248{bottom:200.937000px;}
.ye5_c00248{bottom:201.730500px;}
.ye4_c00248{bottom:201.985500px;}
.ye3_c00248{bottom:202.605000px;}
.ye2_c00248{bottom:202.876500px;}
.ye1_c00248{bottom:203.317500px;}
.ye0_c00248{bottom:203.574000px;}
.ydf_c00248{bottom:229.507500px;}
.yde_c00248{bottom:230.389500px;}
.ydd_c00248{bottom:230.739000px;}
.ydc_c00248{bottom:231.007500px;}
.ydb_c00248{bottom:231.532500px;}
.yda_c00248{bottom:231.880500px;}
.yd9_c00248{bottom:232.144500px;}
.yd8_c00248{bottom:232.756500px;}
.yd7_c00248{bottom:233.023500px;}
.yd6_c00248{bottom:233.820000px;}
.yd5_c00248{bottom:234.085500px;}
.yd4_c00248{bottom:260.193000px;}
.yd3_c00248{bottom:260.811000px;}
.yd2_c00248{bottom:261.079500px;}
.yd1_c00248{bottom:261.340500px;}
.yd0_c00248{bottom:261.522000px;}
.ycf_c00248{bottom:262.135500px;}
.yce_c00248{bottom:262.399500px;}
.ycd_c00248{bottom:262.581000px;}
.ycc_c00248{bottom:263.902500px;}
.ycb_c00248{bottom:264.870000px;}
.yca_c00248{bottom:265.135500px;}
.yc9_c00248{bottom:291.874500px;}
.yc8_c00248{bottom:292.483500px;}
.yc7_c00248{bottom:292.642500px;}
.yc6_c00248{bottom:293.101500px;}
.yc5_c00248{bottom:293.340000px;}
.yc4_c00248{bottom:293.796000px;}
.yc3_c00248{bottom:293.956500px;}
.yc2_c00248{bottom:294.489000px;}
.yc1_c00248{bottom:294.648000px;}
.yc0_c00248{bottom:295.563000px;}
.ybf_c00248{bottom:295.804500px;}
.ybe_c00248{bottom:296.187000px;}
.ybd_c00248{bottom:324.091500px;}
.ybc_c00248{bottom:324.703500px;}
.ybb_c00248{bottom:325.014000px;}
.yba_c00248{bottom:325.399500px;}
.yb9_c00248{bottom:325.789500px;}
.yb8_c00248{bottom:326.008500px;}
.yb7_c00248{bottom:326.383500px;}
.yb6_c00248{bottom:327.010500px;}
.yb5_c00248{bottom:327.402000px;}
.yb4_c00248{bottom:327.636000px;}
.yb3_c00248{bottom:328.318500px;}
.yb2_c00248{bottom:356.926500px;}
.yb1_c00248{bottom:357.147000px;}
.yb0_c00248{bottom:357.642000px;}
.yaf_c00248{bottom:357.756000px;}
.yae_c00248{bottom:358.084500px;}
.yad_c00248{bottom:358.416000px;}
.yac_c00248{bottom:358.801500px;}
.yab_c00248{bottom:358.960500px;}
.yaa_c00248{bottom:359.074500px;}
.ya9_c00248{bottom:359.860500px;}
.ya8_c00248{bottom:360.063000px;}
.ya7_c00248{bottom:360.178500px;}
.ya6_c00248{bottom:388.467000px;}
.ya5_c00248{bottom:388.960500px;}
.ya4_c00248{bottom:389.188500px;}
.ya3_c00248{bottom:389.844000px;}
.ya2_c00248{bottom:390.117000px;}
.ya1_c00248{bottom:390.448500px;}
.ya0_c00248{bottom:390.615000px;}
.y9f_c00248{bottom:390.937500px;}
.y9e_c00248{bottom:391.056000px;}
.y9d_c00248{bottom:391.323000px;}
.y9c_c00248{bottom:391.500000px;}
.y9b_c00248{bottom:420.274500px;}
.y9a_c00248{bottom:420.469500px;}
.y99_c00248{bottom:420.606000px;}
.y98_c00248{bottom:420.925500px;}
.y97_c00248{bottom:421.066500px;}
.y96_c00248{bottom:421.389000px;}
.y95_c00248{bottom:421.599000px;}
.y94_c00248{bottom:422.056500px;}
.y93_c00248{bottom:422.251500px;}
.y92_c00248{bottom:422.641500px;}
.y91_c00248{bottom:422.787000px;}
.y90_c00248{bottom:423.103500px;}
.y8f_c00248{bottom:423.310500px;}
.y8e_c00248{bottom:423.901500px;}
.y8d_c00248{bottom:454.332000px;}
.y89_c00248{bottom:488.091699px;}
.y86_c00248{bottom:488.092111px;}
.y8b_c00248{bottom:488.092249px;}
.y8a_c00248{bottom:488.092266px;}
.y88_c00248{bottom:488.092435px;}
.y87_c00248{bottom:488.092438px;}
.y85_c00248{bottom:488.092488px;}
.y8c_c00248{bottom:488.092696px;}
.y84_c00248{bottom:515.744767px;}
.y83_c00248{bottom:516.031494px;}
.y82_c00248{bottom:517.018357px;}
.y81_c00248{bottom:517.319448px;}
.y80_c00248{bottom:518.104567px;}
.y7f_c00248{bottom:519.105795px;}
.y7e_c00248{bottom:519.501763px;}
.y7d_c00248{bottom:519.997619px;}
.y7c_c00248{bottom:520.291500px;}
.y7b_c00248{bottom:547.031865px;}
.y7a_c00248{bottom:549.136905px;}
.y79_c00248{bottom:549.397740px;}
.y78_c00248{bottom:549.829958px;}
.y77_c00248{bottom:550.097625px;}
.y76_c00248{bottom:550.540778px;}
.y75_c00248{bottom:550.797743px;}
.y72_c00248{bottom:578.319645px;}
.y71_c00248{bottom:578.319795px;}
.y70_c00248{bottom:578.320245px;}
.y73_c00248{bottom:578.320253px;}
.y74_c00248{bottom:578.320410px;}
.y6f_c00248{bottom:578.320687px;}
.y6e_c00248{bottom:578.320838px;}
.y6d_c00248{bottom:578.321438px;}
.y6c_c00248{bottom:578.322030px;}
.y6a_c00248{bottom:578.322330px;}
.y6b_c00248{bottom:578.322630px;}
.y69_c00248{bottom:609.651870px;}
.y68_c00248{bottom:610.139302px;}
.y67_c00248{bottom:610.802145px;}
.y66_c00248{bottom:610.966830px;}
.y65_c00248{bottom:611.140995px;}
.y64_c00248{bottom:611.466353px;}
.y63_c00248{bottom:611.853780px;}
.y62_c00248{bottom:612.181815px;}
.y61_c00248{bottom:612.292508px;}
.y60_c00248{bottom:612.790763px;}
.y5f_c00248{bottom:612.900000px;}
.y5e_c00248{bottom:642.115440px;}
.y5d_c00248{bottom:642.226042px;}
.y5c_c00248{bottom:642.447532px;}
.y5b_c00248{bottom:642.612225px;}
.y5a_c00248{bottom:643.160310px;}
.y59_c00248{bottom:643.327702px;}
.y58_c00248{bottom:643.549035px;}
.y57_c00248{bottom:643.767877px;}
.y56_c00248{bottom:644.041875px;}
.y55_c00248{bottom:644.368575px;}
.y54_c00248{bottom:644.479185px;}
.y53_c00248{bottom:644.862690px;}
.y52_c00248{bottom:645.030000px;}
.y51_c00248{bottom:675.255000px;}
.y4d_c00248{bottom:707.023728px;}
.y4b_c00248{bottom:707.023812px;}
.y49_c00248{bottom:707.024208px;}
.y4a_c00248{bottom:707.024220px;}
.y4c_c00248{bottom:707.024316px;}
.y4e_c00248{bottom:707.024472px;}
.y50_c00248{bottom:707.024796px;}
.y4f_c00248{bottom:707.024964px;}
.y3e_c00248{bottom:738.744396px;}
.y43_c00248{bottom:738.744408px;}
.y45_c00248{bottom:738.744684px;}
.y44_c00248{bottom:738.744720px;}
.y41_c00248{bottom:738.744804px;}
.y42_c00248{bottom:738.744816px;}
.y3f_c00248{bottom:738.744960px;}
.y3d_c00248{bottom:738.745044px;}
.y46_c00248{bottom:738.745128px;}
.y40_c00248{bottom:738.745272px;}
.y47_c00248{bottom:738.745452px;}
.y48_c00248{bottom:738.745524px;}
.y36_c00248{bottom:770.283948px;}
.y37_c00248{bottom:770.284152px;}
.y3c_c00248{bottom:770.284308px;}
.y35_c00248{bottom:770.284428px;}
.y3b_c00248{bottom:770.284464px;}
.y31_c00248{bottom:770.284560px;}
.y32_c00248{bottom:770.284572px;}
.y38_c00248{bottom:770.284584px;}
.y33_c00248{bottom:770.284764px;}
.y34_c00248{bottom:770.284776px;}
.y3a_c00248{bottom:770.284812px;}
.y39_c00248{bottom:770.285268px;}
.y2f_c00248{bottom:802.412676px;}
.y30_c00248{bottom:802.412760px;}
.y2e_c00248{bottom:802.413204px;}
.y2d_c00248{bottom:802.413804px;}
.y2c_c00248{bottom:802.414440px;}
.y2b_c00248{bottom:802.414488px;}
.y29_c00248{bottom:802.414872px;}
.y2a_c00248{bottom:802.415064px;}
.y28_c00248{bottom:802.415388px;}
.y26_c00248{bottom:802.415472px;}
.y27_c00248{bottom:802.416084px;}
.y20_c00248{bottom:833.743932px;}
.y25_c00248{bottom:833.743944px;}
.y21_c00248{bottom:833.744064px;}
.y23_c00248{bottom:833.744268px;}
.y24_c00248{bottom:833.744472px;}
.y1f_c00248{bottom:833.744532px;}
.y22_c00248{bottom:833.744796px;}
.y1e_c00248{bottom:833.745060px;}
.y1d_c00248{bottom:833.745648px;}
.y1b_c00248{bottom:833.745804px;}
.y1c_c00248{bottom:833.745996px;}
.y19_c00248{bottom:833.746368px;}
.y1a_c00248{bottom:833.746440px;}
.y18_c00248{bottom:863.404620px;}
.y17_c00248{bottom:863.844084px;}
.y16_c00248{bottom:864.012144px;}
.y15_c00248{bottom:864.451572px;}
.y14_c00248{bottom:864.665928px;}
.y13_c00248{bottom:864.886020px;}
.y12_c00248{bottom:865.271028px;}
.y11_c00248{bottom:865.490796px;}
.y10_c00248{bottom:865.655220px;}
.yf_c00248{bottom:866.095500px;}
.ye_c00248{bottom:866.429376px;}
.yd_c00248{bottom:895.330128px;}
.yc_c00248{bottom:895.595592px;}
.yb_c00248{bottom:896.021340px;}
.ya_c00248{bottom:896.295444px;}
.y9_c00248{bottom:897.261576px;}
.y8_c00248{bottom:897.528816px;}
.y7_c00248{bottom:898.401672px;}
.y6_c00248{bottom:898.842156px;}
.y5_c00248{bottom:899.371500px;}
.y4_c00248{bottom:960.891000px;}
.y3_c00248{bottom:994.045500px;}
.y1_c00248{bottom:1011.960000px;}
.y2_c00248{bottom:1070.820000px;}
.h2_c00248{height:42.000000px;}
.he_c00248{height:78.000000px;}
.h8_c00248{height:78.002496px;}
.h4_c00248{height:84.000000px;}
.hc_c00248{height:84.001050px;}
.h7_c00248{height:84.002688px;}
.hd_c00248{height:84.003402px;}
.h3_c00248{height:90.000000px;}
.ha_c00248{height:90.001125px;}
.hf_c00248{height:96.000000px;}
.hb_c00248{height:96.001200px;}
.h9_c00248{height:102.000000px;}
.h5_c00248{height:108.000000px;}
.h6_c00248{height:108.003456px;}
.h0_c00248{height:1129.350000px;}
.h1_c00248{height:1129.500000px;}
.w0_c00248{width:915.000000px;}
.x0_c00248{left:0.000000px;}
.x94_c00248{left:172.678500px;}
.x68_c00248{left:173.803500px;}
.x47_c00248{left:174.900000px;}
.x14_c00248{left:176.244864px;}
.x1d_c00248{left:178.734576px;}
.x48_c00248{left:196.747500px;}
.x7a_c00248{left:206.430000px;}
.x52_c00248{left:207.533528px;}
.x2c_c00248{left:209.515884px;}
.x86_c00248{left:216.385500px;}
.x4e_c00248{left:218.702213px;}
.x74_c00248{left:228.315000px;}
.x33_c00248{left:230.036892px;}
.x6c_c00248{left:236.982000px;}
.x1e_c00248{left:241.917120px;}
.x15_c00248{left:242.918460px;}
.x95_c00248{left:244.255500px;}
.x90_c00248{left:249.595500px;}
.x3a_c00248{left:260.545596px;}
.x53_c00248{left:262.863195px;}
.x2d_c00248{left:264.057876px;}
.x96_c00248{left:272.043000px;}
.x5f_c00248{left:273.688500px;}
.x91_c00248{left:282.829500px;}
.x9a_c00248{left:284.137500px;}
.x42_c00248{left:285.874500px;}
.xb_c00248{left:287.437500px;}
.x3d_c00248{left:288.900000px;}
.x80_c00248{left:295.267500px;}
.x49_c00248{left:296.398500px;}
.x2e_c00248{left:297.808536px;}
.x71_c00248{left:306.337500px;}
.x3e_c00248{left:307.800000px;}
.x2_c00248{left:310.230000px;}
.x57_c00248{left:318.199500px;}
.x34_c00248{left:319.409616px;}
.x28_c00248{left:320.490516px;}
.x8_c00248{left:325.350000px;}
.x7b_c00248{left:327.384000px;}
.x1f_c00248{left:329.939748px;}
.x16_c00248{left:330.955572px;}
.x3b_c00248{left:340.737732px;}
.x97_c00248{left:348.717000px;}
.x54_c00248{left:350.338883px;}
.x35_c00248{left:351.810192px;}
.xc_c00248{left:353.605500px;}
.x60_c00248{left:360.916500px;}
.x72_c00248{left:362.218500px;}
.x17_c00248{left:363.884364px;}
.x3_c00248{left:365.040000px;}
.x83_c00248{left:371.077500px;}
.x3f_c00248{left:373.410000px;}
.x55_c00248{left:383.005395px;}
.x4a_c00248{left:384.144000px;}
.x2f_c00248{left:385.292628px;}
.x6d_c00248{left:394.141500px;}
.x20_c00248{left:396.901032px;}
.x81_c00248{left:404.605500px;}
.x29_c00248{left:406.623024px;}
.xd_c00248{left:408.666000px;}
.x5c_c00248{left:416.880000px;}
.x4f_c00248{left:417.965685px;}
.x1_c00248{left:419.580000px;}
.x43_c00248{left:428.136000px;}
.x9_c00248{left:430.650000px;}
.x21_c00248{left:440.102292px;}
.x6e_c00248{left:448.659000px;}
.x50_c00248{left:450.096488px;}
.x4_c00248{left:451.710000px;}
.xa_c00248{left:453.600000px;}
.x98_c00248{left:460.504500px;}
.x4b_c00248{left:461.629500px;}
.x8b_c00248{left:470.487000px;}
.x44_c00248{left:471.904500px;}
.x30_c00248{left:473.585280px;}
.x61_c00248{left:482.665500px;}
.x36_c00248{left:484.114152px;}
.x5_c00248{left:485.190000px;}
.x5b_c00248{left:493.299057px;}
.x5d_c00248{left:494.370000px;}
.x82_c00248{left:503.725500px;}
.x69_c00248{left:504.823500px;}
.x22_c00248{left:505.985004px;}
.x92_c00248{left:513.658500px;}
.x75_c00248{left:515.323500px;}
.x37_c00248{left:516.514728px;}
.xe_c00248{left:517.773000px;}
.x4c_c00248{left:526.701000px;}
.x18_c00248{left:528.871824px;}
.x73_c00248{left:536.641500px;}
.x3c_c00248{left:540.002988px;}
.x84_c00248{left:546.298500px;}
.x7c_c00248{left:548.233500px;}
.x45_c00248{left:549.649500px;}
.xf_c00248{left:551.178000px;}
.x8c_c00248{left:556.851000px;}
.x62_c00248{left:558.799500px;}
.x23_c00248{left:560.797008px;}
.x6_c00248{left:562.140000px;}
.x19_c00248{left:571.792356px;}
.x5e_c00248{left:581.040000px;}
.x7_c00248{left:584.280000px;}
.x6f_c00248{left:592.303500px;}
.x63_c00248{left:593.910000px;}
.x38_c00248{left:595.086756px;}
.x87_c00248{left:603.313500px;}
.x31_c00248{left:605.079204px;}
.x76_c00248{left:614.425500px;}
.x58_c00248{left:615.774000px;}
.x24_c00248{left:616.959108px;}
.x7d_c00248{left:624.943500px;}
.x51_c00248{left:626.409390px;}
.x6a_c00248{left:636.060000px;}
.x56_c00248{left:646.209450px;}
.x64_c00248{left:647.659500px;}
.x59_c00248{left:649.228500px;}
.x70_c00248{left:657.933000px;}
.x1a_c00248{left:659.535456px;}
.x85_c00248{left:668.655000px;}
.x99_c00248{left:670.029000px;}
.x10_c00248{left:671.944500px;}
.x77_c00248{left:680.040000px;}
.x6b_c00248{left:681.672000px;}
.x25_c00248{left:682.841820px;}
.x88_c00248{left:691.077000px;}
.x46_c00248{left:692.205000px;}
.x1b_c00248{left:693.293772px;}
.x78_c00248{left:702.693000px;}
.x40_c00248{left:704.700000px;}
.x11_c00248{left:706.207500px;}
.x7e_c00248{left:713.752500px;}
.x89_c00248{left:722.940000px;}
.x65_c00248{left:724.330500px;}
.x2a_c00248{left:726.042948px;}
.x8d_c00248{left:733.161000px;}
.x41_c00248{left:737.370000px;}
.x7f_c00248{left:745.626000px;}
.x66_c00248{left:747.016500px;}
.x12_c00248{left:759.426000px;}
.x8a_c00248{left:767.742000px;}
.x8e_c00248{left:768.820500px;}
.x26_c00248{left:771.134472px;}
.x67_c00248{left:779.394000px;}
.x1c_c00248{left:781.041372px;}
.x79_c00248{left:789.637500px;}
.x5a_c00248{left:790.738500px;}
.x13_c00248{left:792.609000px;}
.x2b_c00248{left:802.724856px;}
.x93_c00248{left:811.509000px;}
.x32_c00248{left:813.525036px;}
.x4d_c00248{left:824.526000px;}
.x39_c00248{left:835.934676px;}
.x27_c00248{left:837.017184px;}
.x8f_c00248{left:846.579000px;}
@media print{
.v0_c00248{vertical-align:0.000000pt;}
.ls0_c00248{letter-spacing:0.000000pt;}
.ws0_c00248{word-spacing:0.000000pt;}
.fs0_c00248{font-size:37.333333pt;}
.fsc_c00248{font-size:69.333333pt;}
.fs6_c00248{font-size:69.335552pt;}
.fs2_c00248{font-size:74.666667pt;}
.fsa_c00248{font-size:74.667600pt;}
.fs5_c00248{font-size:74.669056pt;}
.fsb_c00248{font-size:74.669691pt;}
.fs1_c00248{font-size:80.000000pt;}
.fs8_c00248{font-size:80.001000pt;}
.fsd_c00248{font-size:85.333333pt;}
.fs9_c00248{font-size:85.334400pt;}
.fs7_c00248{font-size:90.666667pt;}
.fs3_c00248{font-size:96.000000pt;}
.fs4_c00248{font-size:96.003072pt;}
.y0_c00248{bottom:0.000000pt;}
.y12d_c00248{bottom:5.410667pt;}
.y12c_c00248{bottom:5.941333pt;}
.y12b_c00248{bottom:7.364000pt;}
.y12a_c00248{bottom:8.544000pt;}
.y129_c00248{bottom:8.741333pt;}
.y128_c00248{bottom:9.501333pt;}
.y127_c00248{bottom:10.134667pt;}
.y126_c00248{bottom:10.557333pt;}
.y125_c00248{bottom:32.872000pt;}
.y124_c00248{bottom:33.289333pt;}
.y123_c00248{bottom:33.621333pt;}
.y122_c00248{bottom:34.176000pt;}
.y121_c00248{bottom:34.389333pt;}
.y120_c00248{bottom:34.925333pt;}
.y11f_c00248{bottom:35.409333pt;}
.y11e_c00248{bottom:35.621333pt;}
.y11d_c00248{bottom:36.098667pt;}
.y11c_c00248{bottom:36.272000pt;}
.y11b_c00248{bottom:36.717333pt;}
.y11a_c00248{bottom:60.416000pt;}
.y119_c00248{bottom:61.202667pt;}
.y118_c00248{bottom:61.468000pt;}
.y117_c00248{bottom:61.997333pt;}
.y116_c00248{bottom:62.526667pt;}
.y115_c00248{bottom:62.798667pt;}
.y114_c00248{bottom:63.488000pt;}
.y113_c00248{bottom:63.754667pt;}
.y112_c00248{bottom:64.110667pt;}
.y111_c00248{bottom:64.644000pt;}
.y110_c00248{bottom:64.909333pt;}
.y10f_c00248{bottom:65.516000pt;}
.y10e_c00248{bottom:89.173333pt;}
.y10d_c00248{bottom:89.796000pt;}
.y10c_c00248{bottom:90.081333pt;}
.y10b_c00248{bottom:90.765333pt;}
.y10a_c00248{bottom:91.212000pt;}
.y109_c00248{bottom:91.490667pt;}
.y108_c00248{bottom:91.920000pt;}
.y107_c00248{bottom:92.181333pt;}
.y106_c00248{bottom:92.884000pt;}
.y105_c00248{bottom:93.145333pt;}
.y104_c00248{bottom:93.312000pt;}
.y103_c00248{bottom:94.556000pt;}
.y102_c00248{bottom:118.092000pt;}
.y101_c00248{bottom:118.364000pt;}
.y100_c00248{bottom:118.722667pt;}
.yff_c00248{bottom:118.977333pt;}
.yfe_c00248{bottom:119.418667pt;}
.yfd_c00248{bottom:119.680000pt;}
.yfc_c00248{bottom:120.217333pt;}
.yfb_c00248{bottom:120.476000pt;}
.yfa_c00248{bottom:120.650667pt;}
.yf9_c00248{bottom:121.622667pt;}
.yf8_c00248{bottom:122.416000pt;}
.yf7_c00248{bottom:122.774667pt;}
.yf6_c00248{bottom:123.116000pt;}
.yf5_c00248{bottom:146.730667pt;}
.yf4_c00248{bottom:147.522667pt;}
.yf3_c00248{bottom:147.808000pt;}
.yf2_c00248{bottom:148.009333pt;}
.yf1_c00248{bottom:149.097333pt;}
.yf0_c00248{bottom:150.249333pt;}
.yef_c00248{bottom:150.654667pt;}
.yee_c00248{bottom:151.621333pt;}
.yed_c00248{bottom:152.122667pt;}
.yec_c00248{bottom:152.396000pt;}
.yeb_c00248{bottom:176.656000pt;}
.yea_c00248{bottom:177.042667pt;}
.ye9_c00248{bottom:177.601333pt;}
.ye8_c00248{bottom:178.058667pt;}
.ye7_c00248{bottom:178.300000pt;}
.ye6_c00248{bottom:178.610667pt;}
.ye5_c00248{bottom:179.316000pt;}
.ye4_c00248{bottom:179.542667pt;}
.ye3_c00248{bottom:180.093333pt;}
.ye2_c00248{bottom:180.334667pt;}
.ye1_c00248{bottom:180.726667pt;}
.ye0_c00248{bottom:180.954667pt;}
.ydf_c00248{bottom:204.006667pt;}
.yde_c00248{bottom:204.790667pt;}
.ydd_c00248{bottom:205.101333pt;}
.ydc_c00248{bottom:205.340000pt;}
.ydb_c00248{bottom:205.806667pt;}
.yda_c00248{bottom:206.116000pt;}
.yd9_c00248{bottom:206.350667pt;}
.yd8_c00248{bottom:206.894667pt;}
.yd7_c00248{bottom:207.132000pt;}
.yd6_c00248{bottom:207.840000pt;}
.yd5_c00248{bottom:208.076000pt;}
.yd4_c00248{bottom:231.282667pt;}
.yd3_c00248{bottom:231.832000pt;}
.yd2_c00248{bottom:232.070667pt;}
.yd1_c00248{bottom:232.302667pt;}
.yd0_c00248{bottom:232.464000pt;}
.ycf_c00248{bottom:233.009333pt;}
.yce_c00248{bottom:233.244000pt;}
.ycd_c00248{bottom:233.405333pt;}
.ycc_c00248{bottom:234.580000pt;}
.ycb_c00248{bottom:235.440000pt;}
.yca_c00248{bottom:235.676000pt;}
.yc9_c00248{bottom:259.444000pt;}
.yc8_c00248{bottom:259.985333pt;}
.yc7_c00248{bottom:260.126667pt;}
.yc6_c00248{bottom:260.534667pt;}
.yc5_c00248{bottom:260.746667pt;}
.yc4_c00248{bottom:261.152000pt;}
.yc3_c00248{bottom:261.294667pt;}
.yc2_c00248{bottom:261.768000pt;}
.yc1_c00248{bottom:261.909333pt;}
.yc0_c00248{bottom:262.722667pt;}
.ybf_c00248{bottom:262.937333pt;}
.ybe_c00248{bottom:263.277333pt;}
.ybd_c00248{bottom:288.081333pt;}
.ybc_c00248{bottom:288.625333pt;}
.ybb_c00248{bottom:288.901333pt;}
.yba_c00248{bottom:289.244000pt;}
.yb9_c00248{bottom:289.590667pt;}
.yb8_c00248{bottom:289.785333pt;}
.yb7_c00248{bottom:290.118667pt;}
.yb6_c00248{bottom:290.676000pt;}
.yb5_c00248{bottom:291.024000pt;}
.yb4_c00248{bottom:291.232000pt;}
.yb3_c00248{bottom:291.838667pt;}
.yb2_c00248{bottom:317.268000pt;}
.yb1_c00248{bottom:317.464000pt;}
.yb0_c00248{bottom:317.904000pt;}
.yaf_c00248{bottom:318.005333pt;}
.yae_c00248{bottom:318.297333pt;}
.yad_c00248{bottom:318.592000pt;}
.yac_c00248{bottom:318.934667pt;}
.yab_c00248{bottom:319.076000pt;}
.yaa_c00248{bottom:319.177333pt;}
.ya9_c00248{bottom:319.876000pt;}
.ya8_c00248{bottom:320.056000pt;}
.ya7_c00248{bottom:320.158667pt;}
.ya6_c00248{bottom:345.304000pt;}
.ya5_c00248{bottom:345.742667pt;}
.ya4_c00248{bottom:345.945333pt;}
.ya3_c00248{bottom:346.528000pt;}
.ya2_c00248{bottom:346.770667pt;}
.ya1_c00248{bottom:347.065333pt;}
.ya0_c00248{bottom:347.213333pt;}
.y9f_c00248{bottom:347.500000pt;}
.y9e_c00248{bottom:347.605333pt;}
.y9d_c00248{bottom:347.842667pt;}
.y9c_c00248{bottom:348.000000pt;}
.y9b_c00248{bottom:373.577333pt;}
.y9a_c00248{bottom:373.750667pt;}
.y99_c00248{bottom:373.872000pt;}
.y98_c00248{bottom:374.156000pt;}
.y97_c00248{bottom:374.281333pt;}
.y96_c00248{bottom:374.568000pt;}
.y95_c00248{bottom:374.754667pt;}
.y94_c00248{bottom:375.161333pt;}
.y93_c00248{bottom:375.334667pt;}
.y92_c00248{bottom:375.681333pt;}
.y91_c00248{bottom:375.810667pt;}
.y90_c00248{bottom:376.092000pt;}
.y8f_c00248{bottom:376.276000pt;}
.y8e_c00248{bottom:376.801333pt;}
.y8d_c00248{bottom:403.850667pt;}
.y89_c00248{bottom:433.859288pt;}
.y86_c00248{bottom:433.859655pt;}
.y8b_c00248{bottom:433.859777pt;}
.y8a_c00248{bottom:433.859792pt;}
.y88_c00248{bottom:433.859943pt;}
.y87_c00248{bottom:433.859945pt;}
.y85_c00248{bottom:433.859989pt;}
.y8c_c00248{bottom:433.860175pt;}
.y84_c00248{bottom:458.439793pt;}
.y83_c00248{bottom:458.694661pt;}
.y82_c00248{bottom:459.571873pt;}
.y81_c00248{bottom:459.839509pt;}
.y80_c00248{bottom:460.537393pt;}
.y7f_c00248{bottom:461.427373pt;}
.y7e_c00248{bottom:461.779345pt;}
.y7d_c00248{bottom:462.220105pt;}
.y7c_c00248{bottom:462.481333pt;}
.y7b_c00248{bottom:486.250547pt;}
.y7a_c00248{bottom:488.121693pt;}
.y79_c00248{bottom:488.353547pt;}
.y78_c00248{bottom:488.737740pt;}
.y77_c00248{bottom:488.975667pt;}
.y76_c00248{bottom:489.369580pt;}
.y75_c00248{bottom:489.597993pt;}
.y72_c00248{bottom:514.061907pt;}
.y71_c00248{bottom:514.062040pt;}
.y70_c00248{bottom:514.062440pt;}
.y73_c00248{bottom:514.062447pt;}
.y74_c00248{bottom:514.062587pt;}
.y6f_c00248{bottom:514.062833pt;}
.y6e_c00248{bottom:514.062967pt;}
.y6d_c00248{bottom:514.063500pt;}
.y6c_c00248{bottom:514.064027pt;}
.y6a_c00248{bottom:514.064293pt;}
.y6b_c00248{bottom:514.064560pt;}
.y69_c00248{bottom:541.912773pt;}
.y68_c00248{bottom:542.346047pt;}
.y67_c00248{bottom:542.935240pt;}
.y66_c00248{bottom:543.081627pt;}
.y65_c00248{bottom:543.236440pt;}
.y64_c00248{bottom:543.525647pt;}
.y63_c00248{bottom:543.870027pt;}
.y62_c00248{bottom:544.161613pt;}
.y61_c00248{bottom:544.260007pt;}
.y60_c00248{bottom:544.702900pt;}
.y5f_c00248{bottom:544.800000pt;}
.y5e_c00248{bottom:570.769280pt;}
.y5d_c00248{bottom:570.867593pt;}
.y5c_c00248{bottom:571.064473pt;}
.y5b_c00248{bottom:571.210867pt;}
.y5a_c00248{bottom:571.698053pt;}
.y59_c00248{bottom:571.846847pt;}
.y58_c00248{bottom:572.043587pt;}
.y57_c00248{bottom:572.238113pt;}
.y56_c00248{bottom:572.481667pt;}
.y55_c00248{bottom:572.772067pt;}
.y54_c00248{bottom:572.870387pt;}
.y53_c00248{bottom:573.211280pt;}
.y52_c00248{bottom:573.360000pt;}
.y51_c00248{bottom:600.226667pt;}
.y4d_c00248{bottom:628.465536pt;}
.y4b_c00248{bottom:628.465611pt;}
.y49_c00248{bottom:628.465963pt;}
.y4a_c00248{bottom:628.465973pt;}
.y4c_c00248{bottom:628.466059pt;}
.y4e_c00248{bottom:628.466197pt;}
.y50_c00248{bottom:628.466485pt;}
.y4f_c00248{bottom:628.466635pt;}
.y3e_c00248{bottom:656.661685pt;}
.y43_c00248{bottom:656.661696pt;}
.y45_c00248{bottom:656.661941pt;}
.y44_c00248{bottom:656.661973pt;}
.y41_c00248{bottom:656.662048pt;}
.y42_c00248{bottom:656.662059pt;}
.y3f_c00248{bottom:656.662187pt;}
.y3d_c00248{bottom:656.662261pt;}
.y46_c00248{bottom:656.662336pt;}
.y40_c00248{bottom:656.662464pt;}
.y47_c00248{bottom:656.662624pt;}
.y48_c00248{bottom:656.662688pt;}
.y36_c00248{bottom:684.696843pt;}
.y37_c00248{bottom:684.697024pt;}
.y3c_c00248{bottom:684.697163pt;}
.y35_c00248{bottom:684.697269pt;}
.y3b_c00248{bottom:684.697301pt;}
.y31_c00248{bottom:684.697387pt;}
.y32_c00248{bottom:684.697397pt;}
.y38_c00248{bottom:684.697408pt;}
.y33_c00248{bottom:684.697568pt;}
.y34_c00248{bottom:684.697579pt;}
.y3a_c00248{bottom:684.697611pt;}
.y39_c00248{bottom:684.698016pt;}
.y2f_c00248{bottom:713.255712pt;}
.y30_c00248{bottom:713.255787pt;}
.y2e_c00248{bottom:713.256181pt;}
.y2d_c00248{bottom:713.256715pt;}
.y2c_c00248{bottom:713.257280pt;}
.y2b_c00248{bottom:713.257323pt;}
.y29_c00248{bottom:713.257664pt;}
.y2a_c00248{bottom:713.257835pt;}
.y28_c00248{bottom:713.258123pt;}
.y26_c00248{bottom:713.258197pt;}
.y27_c00248{bottom:713.258741pt;}
.y20_c00248{bottom:741.105717pt;}
.y25_c00248{bottom:741.105728pt;}
.y21_c00248{bottom:741.105835pt;}
.y23_c00248{bottom:741.106016pt;}
.y24_c00248{bottom:741.106197pt;}
.y1f_c00248{bottom:741.106251pt;}
.y22_c00248{bottom:741.106485pt;}
.y1e_c00248{bottom:741.106720pt;}
.y1d_c00248{bottom:741.107243pt;}
.y1b_c00248{bottom:741.107381pt;}
.y1c_c00248{bottom:741.107552pt;}
.y19_c00248{bottom:741.107883pt;}
.y1a_c00248{bottom:741.107947pt;}
.y18_c00248{bottom:767.470773pt;}
.y17_c00248{bottom:767.861408pt;}
.y16_c00248{bottom:768.010795pt;}
.y15_c00248{bottom:768.401397pt;}
.y14_c00248{bottom:768.591936pt;}
.y13_c00248{bottom:768.787573pt;}
.y12_c00248{bottom:769.129803pt;}
.y11_c00248{bottom:769.325152pt;}
.y10_c00248{bottom:769.471307pt;}
.yf_c00248{bottom:769.862667pt;}
.ye_c00248{bottom:770.159445pt;}
.yd_c00248{bottom:795.849003pt;}
.yc_c00248{bottom:796.084971pt;}
.yb_c00248{bottom:796.463413pt;}
.ya_c00248{bottom:796.707061pt;}
.y9_c00248{bottom:797.565845pt;}
.y8_c00248{bottom:797.803392pt;}
.y7_c00248{bottom:798.579264pt;}
.y6_c00248{bottom:798.970805pt;}
.y5_c00248{bottom:799.441333pt;}
.y4_c00248{bottom:854.125333pt;}
.y3_c00248{bottom:883.596000pt;}
.y1_c00248{bottom:899.520000pt;}
.y2_c00248{bottom:951.840000pt;}
.h2_c00248{height:37.333333pt;}
.he_c00248{height:69.333333pt;}
.h8_c00248{height:69.335552pt;}
.h4_c00248{height:74.666667pt;}
.hc_c00248{height:74.667600pt;}
.h7_c00248{height:74.669056pt;}
.hd_c00248{height:74.669691pt;}
.h3_c00248{height:80.000000pt;}
.ha_c00248{height:80.001000pt;}
.hf_c00248{height:85.333333pt;}
.hb_c00248{height:85.334400pt;}
.h9_c00248{height:90.666667pt;}
.h5_c00248{height:96.000000pt;}
.h6_c00248{height:96.003072pt;}
.h0_c00248{height:1003.866667pt;}
.h1_c00248{height:1004.000000pt;}
.w0_c00248{width:813.333333pt;}
.x0_c00248{left:0.000000pt;}
.x94_c00248{left:153.492000pt;}
.x68_c00248{left:154.492000pt;}
.x47_c00248{left:155.466667pt;}
.x14_c00248{left:156.662101pt;}
.x1d_c00248{left:158.875179pt;}
.x48_c00248{left:174.886667pt;}
.x7a_c00248{left:183.493333pt;}
.x52_c00248{left:184.474247pt;}
.x2c_c00248{left:186.236341pt;}
.x86_c00248{left:192.342667pt;}
.x4e_c00248{left:194.401967pt;}
.x74_c00248{left:202.946667pt;}
.x33_c00248{left:204.477237pt;}
.x6c_c00248{left:210.650667pt;}
.x1e_c00248{left:215.037440pt;}
.x15_c00248{left:215.927520pt;}
.x95_c00248{left:217.116000pt;}
.x90_c00248{left:221.862667pt;}
.x3a_c00248{left:231.596085pt;}
.x53_c00248{left:233.656173pt;}
.x2d_c00248{left:234.718112pt;}
.x96_c00248{left:241.816000pt;}
.x5f_c00248{left:243.278667pt;}
.x91_c00248{left:251.404000pt;}
.x9a_c00248{left:252.566667pt;}
.x42_c00248{left:254.110667pt;}
.xb_c00248{left:255.500000pt;}
.x3d_c00248{left:256.800000pt;}
.x80_c00248{left:262.460000pt;}
.x49_c00248{left:263.465333pt;}
.x2e_c00248{left:264.718699pt;}
.x71_c00248{left:272.300000pt;}
.x3e_c00248{left:273.600000pt;}
.x2_c00248{left:275.760000pt;}
.x57_c00248{left:282.844000pt;}
.x34_c00248{left:283.919659pt;}
.x28_c00248{left:284.880459pt;}
.x8_c00248{left:289.200000pt;}
.x7b_c00248{left:291.008000pt;}
.x1f_c00248{left:293.279776pt;}
.x16_c00248{left:294.182731pt;}
.x3b_c00248{left:302.877984pt;}
.x97_c00248{left:309.970667pt;}
.x54_c00248{left:311.412340pt;}
.x35_c00248{left:312.720171pt;}
.xc_c00248{left:314.316000pt;}
.x60_c00248{left:320.814667pt;}
.x72_c00248{left:321.972000pt;}
.x17_c00248{left:323.452768pt;}
.x3_c00248{left:324.480000pt;}
.x83_c00248{left:329.846667pt;}
.x3f_c00248{left:331.920000pt;}
.x55_c00248{left:340.449240pt;}
.x4a_c00248{left:341.461333pt;}
.x2f_c00248{left:342.482336pt;}
.x6d_c00248{left:350.348000pt;}
.x20_c00248{left:352.800917pt;}
.x81_c00248{left:359.649333pt;}
.x29_c00248{left:361.442688pt;}
.xd_c00248{left:363.258667pt;}
.x5c_c00248{left:370.560000pt;}
.x4f_c00248{left:371.525053pt;}
.x1_c00248{left:372.960000pt;}
.x43_c00248{left:380.565333pt;}
.x9_c00248{left:382.800000pt;}
.x21_c00248{left:391.202037pt;}
.x6e_c00248{left:398.808000pt;}
.x50_c00248{left:400.085767pt;}
.x4_c00248{left:401.520000pt;}
.xa_c00248{left:403.200000pt;}
.x98_c00248{left:409.337333pt;}
.x4b_c00248{left:410.337333pt;}
.x8b_c00248{left:418.210667pt;}
.x44_c00248{left:419.470667pt;}
.x30_c00248{left:420.964693pt;}
.x61_c00248{left:429.036000pt;}
.x36_c00248{left:430.323691pt;}
.x5_c00248{left:431.280000pt;}
.x5b_c00248{left:438.488051pt;}
.x5d_c00248{left:439.440000pt;}
.x82_c00248{left:447.756000pt;}
.x69_c00248{left:448.732000pt;}
.x22_c00248{left:449.764448pt;}
.x92_c00248{left:456.585333pt;}
.x75_c00248{left:458.065333pt;}
.x37_c00248{left:459.124203pt;}
.xe_c00248{left:460.242667pt;}
.x4c_c00248{left:468.178667pt;}
.x18_c00248{left:470.108288pt;}
.x73_c00248{left:477.014667pt;}
.x3c_c00248{left:480.002656pt;}
.x84_c00248{left:485.598667pt;}
.x7c_c00248{left:487.318667pt;}
.x45_c00248{left:488.577333pt;}
.xf_c00248{left:489.936000pt;}
.x8c_c00248{left:494.978667pt;}
.x62_c00248{left:496.710667pt;}
.x23_c00248{left:498.486229pt;}
.x6_c00248{left:499.680000pt;}
.x19_c00248{left:508.259872pt;}
.x5e_c00248{left:516.480000pt;}
.x7_c00248{left:519.360000pt;}
.x6f_c00248{left:526.492000pt;}
.x63_c00248{left:527.920000pt;}
.x38_c00248{left:528.966005pt;}
.x87_c00248{left:536.278667pt;}
.x31_c00248{left:537.848181pt;}
.x76_c00248{left:546.156000pt;}
.x58_c00248{left:547.354667pt;}
.x24_c00248{left:548.408096pt;}
.x7d_c00248{left:555.505333pt;}
.x51_c00248{left:556.808347pt;}
.x6a_c00248{left:565.386667pt;}
.x56_c00248{left:574.408400pt;}
.x64_c00248{left:575.697333pt;}
.x59_c00248{left:577.092000pt;}
.x70_c00248{left:584.829333pt;}
.x1a_c00248{left:586.253739pt;}
.x85_c00248{left:594.360000pt;}
.x99_c00248{left:595.581333pt;}
.x10_c00248{left:597.284000pt;}
.x77_c00248{left:604.480000pt;}
.x6b_c00248{left:605.930667pt;}
.x25_c00248{left:606.970507pt;}
.x88_c00248{left:614.290667pt;}
.x46_c00248{left:615.293333pt;}
.x1b_c00248{left:616.261131pt;}
.x78_c00248{left:624.616000pt;}
.x40_c00248{left:626.400000pt;}
.x11_c00248{left:627.740000pt;}
.x7e_c00248{left:634.446667pt;}
.x89_c00248{left:642.613333pt;}
.x65_c00248{left:643.849333pt;}
.x2a_c00248{left:645.371509pt;}
.x8d_c00248{left:651.698667pt;}
.x41_c00248{left:655.440000pt;}
.x7f_c00248{left:662.778667pt;}
.x66_c00248{left:664.014667pt;}
.x12_c00248{left:675.045333pt;}
.x8a_c00248{left:682.437333pt;}
.x8e_c00248{left:683.396000pt;}
.x26_c00248{left:685.452864pt;}
.x67_c00248{left:692.794667pt;}
.x1c_c00248{left:694.258997pt;}
.x79_c00248{left:701.900000pt;}
.x5a_c00248{left:702.878667pt;}
.x13_c00248{left:704.541333pt;}
.x2b_c00248{left:713.533205pt;}
.x93_c00248{left:721.341333pt;}
.x32_c00248{left:723.133365pt;}
.x4d_c00248{left:732.912000pt;}
.x39_c00248{left:743.053045pt;}
.x27_c00248{left:744.015275pt;}
.x8f_c00248{left:752.514667pt;}
}





/* 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_c00249 {
    display:none;
  }
  .loading-indicator_c00249.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00249 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_c00249 { 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_c00249" -> "#page-container .classname_c00249")
 */
.pf_c00249 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00249 { /* 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_c00249.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00249 { /* 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_c00249 { /* 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_c00249 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00249 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00249 {overflow:visible;}
  }
}
.c_c00249 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00249 { /* 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_c00249:after { /* webkit #35443 */
  content: '';
}
.t_c00249:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00249 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 */
}
.__c00249 { /* 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_c00249 { /* info for Javascript */
  display:none;
}
.l_c00249 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00249 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00249 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00249: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_c00249 {
    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_c00249.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00249.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_c00249 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00249{font-family:sans-serif;visibility:hidden;}
.sc__c00249{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00249{-webkit-text-stroke:0px transparent;}
}
.y0_c00249{bottom:0.000000px;}
.h0_c00249{height:1129.350000px;}
.h1_c00249{height:1129.500000px;}
.w0_c00249{width:915.000000px;}
.x0_c00249{left:0.000000px;}
@media print{
.y0_c00249{bottom:0.000000pt;}
.h0_c00249{height:1003.866667pt;}
.h1_c00249{height:1004.000000pt;}
.w0_c00249{width:813.333333pt;}
.x0_c00249{left:0.000000pt;}
}





/* 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_c00250 {
    display:none;
  }
  .loading-indicator_c00250.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00250 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_c00250 { 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_c00250" -> "#page-container .classname_c00250")
 */
.pf_c00250 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00250 { /* 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_c00250.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00250 { /* 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_c00250 { /* 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_c00250 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00250 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00250 {overflow:visible;}
  }
}
.c_c00250 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00250 { /* 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_c00250:after { /* webkit #35443 */
  content: '';
}
.t_c00250:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00250 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 */
}
.__c00250 { /* 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_c00250 { /* info for Javascript */
  display:none;
}
.l_c00250 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00250 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00250 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00250: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_c00250 {
    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_c00250.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00250.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_c00250 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00250{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00250;src:url('chunks/assets/font_fabf4b590f7fb32aea93ffb2.woff2')format("woff");}.ff1_c00250{font-family:ff1_c00250;line-height:1.000000;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;}
.m6a_c00250{transform:matrix(0.013413,0.000215,-0.003999,0.249968,0,0);-ms-transform:matrix(0.013413,0.000215,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.013413,0.000215,-0.003999,0.249968,0,0);}
.m6c_c00250{transform:matrix(0.014148,0.000226,-0.003999,0.249968,0,0);-ms-transform:matrix(0.014148,0.000226,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.014148,0.000226,-0.003999,0.249968,0,0);}
.m76_c00250{transform:matrix(0.024955,0.000499,-0.004999,0.249950,0,0);-ms-transform:matrix(0.024955,0.000499,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.024955,0.000499,-0.004999,0.249950,0,0);}
.m7b_c00250{transform:matrix(0.042247,0.000845,-0.004999,0.249950,0,0);-ms-transform:matrix(0.042247,0.000845,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.042247,0.000845,-0.004999,0.249950,0,0);}
.m5c_c00250{transform:matrix(0.058564,0.001113,-0.004749,0.249955,0,0);-ms-transform:matrix(0.058564,0.001113,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.058564,0.001113,-0.004749,0.249955,0,0);}
.m27_c00250{transform:matrix(0.075920,0.001215,-0.003999,0.249968,0,0);-ms-transform:matrix(0.075920,0.001215,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.075920,0.001215,-0.003999,0.249968,0,0);}
.m7a_c00250{transform:matrix(0.084523,0.001690,-0.004999,0.249950,0,0);-ms-transform:matrix(0.084523,0.001690,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.084523,0.001690,-0.004999,0.249950,0,0);}
.m7c_c00250{transform:matrix(0.111283,0.002226,-0.004999,0.249950,0,0);-ms-transform:matrix(0.111283,0.002226,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.111283,0.002226,-0.004999,0.249950,0,0);}
.m10f_c00250{transform:matrix(0.117329,0.002229,-0.004749,0.249955,0,0);-ms-transform:matrix(0.117329,0.002229,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.117329,0.002229,-0.004749,0.249955,0,0);}
.m115_c00250{transform:matrix(0.127317,0.002419,-0.004749,0.249955,0,0);-ms-transform:matrix(0.127317,0.002419,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.127317,0.002419,-0.004749,0.249955,0,0);}
.m74_c00250{transform:matrix(0.131503,0.002104,-0.003999,0.249968,0,0);-ms-transform:matrix(0.131503,0.002104,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.131503,0.002104,-0.003999,0.249968,0,0);}
.m6d_c00250{transform:matrix(0.138732,0.002220,-0.003999,0.249968,0,0);-ms-transform:matrix(0.138732,0.002220,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.138732,0.002220,-0.003999,0.249968,0,0);}
.m37_c00250{transform:matrix(0.140972,0.002256,-0.003999,0.249968,0,0);-ms-transform:matrix(0.140972,0.002256,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.140972,0.002256,-0.003999,0.249968,0,0);}
.m1_c00250{transform:matrix(0.148170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148170,0.000000,0.000000,0.250000,0,0);}
.mcd_c00250{transform:matrix(0.158746,0.003016,-0.004749,0.249955,0,0);-ms-transform:matrix(0.158746,0.003016,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.158746,0.003016,-0.004749,0.249955,0,0);}
.mcb_c00250{transform:matrix(0.160016,0.003040,-0.004749,0.249955,0,0);-ms-transform:matrix(0.160016,0.003040,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.160016,0.003040,-0.004749,0.249955,0,0);}
.m2a_c00250{transform:matrix(0.161749,0.002588,-0.003999,0.249968,0,0);-ms-transform:matrix(0.161749,0.002588,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.161749,0.002588,-0.003999,0.249968,0,0);}
.m30_c00250{transform:matrix(0.161924,0.002591,-0.003999,0.249968,0,0);-ms-transform:matrix(0.161924,0.002591,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.161924,0.002591,-0.003999,0.249968,0,0);}
.mc6_c00250{transform:matrix(0.163685,0.003110,-0.004749,0.249955,0,0);-ms-transform:matrix(0.163685,0.003110,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.163685,0.003110,-0.004749,0.249955,0,0);}
.mc9_c00250{transform:matrix(0.165290,0.003141,-0.004749,0.249955,0,0);-ms-transform:matrix(0.165290,0.003141,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.165290,0.003141,-0.004749,0.249955,0,0);}
.m1e_c00250{transform:matrix(0.170128,0.002722,-0.003999,0.249968,0,0);-ms-transform:matrix(0.170128,0.002722,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.170128,0.002722,-0.003999,0.249968,0,0);}
.mcc_c00250{transform:matrix(0.172704,0.003281,-0.004749,0.249955,0,0);-ms-transform:matrix(0.172704,0.003281,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.172704,0.003281,-0.004749,0.249955,0,0);}
.m6b_c00250{transform:matrix(0.173193,0.002771,-0.003999,0.249968,0,0);-ms-transform:matrix(0.173193,0.002771,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.173193,0.002771,-0.003999,0.249968,0,0);}
.mca_c00250{transform:matrix(0.173374,0.003294,-0.004749,0.249955,0,0);-ms-transform:matrix(0.173374,0.003294,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.173374,0.003294,-0.004749,0.249955,0,0);}
.mc5_c00250{transform:matrix(0.174074,0.003307,-0.004749,0.249955,0,0);-ms-transform:matrix(0.174074,0.003307,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.174074,0.003307,-0.004749,0.249955,0,0);}
.m117_c00250{transform:matrix(0.174623,0.003318,-0.004749,0.249955,0,0);-ms-transform:matrix(0.174623,0.003318,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.174623,0.003318,-0.004749,0.249955,0,0);}
.m73_c00250{transform:matrix(0.185156,0.002963,-0.003999,0.249968,0,0);-ms-transform:matrix(0.185156,0.002963,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.185156,0.002963,-0.003999,0.249968,0,0);}
.m118_c00250{transform:matrix(0.188156,0.003575,-0.004749,0.249955,0,0);-ms-transform:matrix(0.188156,0.003575,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.188156,0.003575,-0.004749,0.249955,0,0);}
.mc7_c00250{transform:matrix(0.190956,0.003628,-0.004749,0.249955,0,0);-ms-transform:matrix(0.190956,0.003628,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.190956,0.003628,-0.004749,0.249955,0,0);}
.mb3_c00250{transform:matrix(0.194590,0.003697,-0.004749,0.249955,0,0);-ms-transform:matrix(0.194590,0.003697,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.194590,0.003697,-0.004749,0.249955,0,0);}
.m71_c00250{transform:matrix(0.195550,0.003129,-0.003999,0.249968,0,0);-ms-transform:matrix(0.195550,0.003129,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.195550,0.003129,-0.003999,0.249968,0,0);}
.m113_c00250{transform:matrix(0.196420,0.003732,-0.004749,0.249955,0,0);-ms-transform:matrix(0.196420,0.003732,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.196420,0.003732,-0.004749,0.249955,0,0);}
.mf8_c00250{transform:matrix(0.196756,0.003935,-0.004999,0.249950,0,0);-ms-transform:matrix(0.196756,0.003935,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.196756,0.003935,-0.004999,0.249950,0,0);}
.m5_c00250{transform:matrix(0.198364,0.003769,-0.004749,0.249955,0,0);-ms-transform:matrix(0.198364,0.003769,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.198364,0.003769,-0.004749,0.249955,0,0);}
.mc8_c00250{transform:matrix(0.199164,0.003784,-0.004749,0.249955,0,0);-ms-transform:matrix(0.199164,0.003784,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.199164,0.003784,-0.004749,0.249955,0,0);}
.m34_c00250{transform:matrix(0.199384,0.003190,-0.003999,0.249968,0,0);-ms-transform:matrix(0.199384,0.003190,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.199384,0.003190,-0.003999,0.249968,0,0);}
.mbb_c00250{transform:matrix(0.199744,0.003795,-0.004749,0.249955,0,0);-ms-transform:matrix(0.199744,0.003795,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.199744,0.003795,-0.004749,0.249955,0,0);}
.m35_c00250{transform:matrix(0.200854,0.003214,-0.003999,0.249968,0,0);-ms-transform:matrix(0.200854,0.003214,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.200854,0.003214,-0.003999,0.249968,0,0);}
.m114_c00250{transform:matrix(0.201084,0.003821,-0.004749,0.249955,0,0);-ms-transform:matrix(0.201084,0.003821,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.201084,0.003821,-0.004749,0.249955,0,0);}
.m3d_c00250{transform:matrix(0.201256,0.003421,-0.004249,0.249964,0,0);-ms-transform:matrix(0.201256,0.003421,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.201256,0.003421,-0.004249,0.249964,0,0);}
.m103_c00250{transform:matrix(0.201820,0.004036,-0.004999,0.249950,0,0);-ms-transform:matrix(0.201820,0.004036,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.201820,0.004036,-0.004999,0.249950,0,0);}
.mc1_c00250{transform:matrix(0.201824,0.003835,-0.004749,0.249955,0,0);-ms-transform:matrix(0.201824,0.003835,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.201824,0.003835,-0.004749,0.249955,0,0);}
.mfb_c00250{transform:matrix(0.202035,0.004041,-0.004999,0.249950,0,0);-ms-transform:matrix(0.202035,0.004041,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.202035,0.004041,-0.004999,0.249950,0,0);}
.m38_c00250{transform:matrix(0.203264,0.003252,-0.003999,0.249968,0,0);-ms-transform:matrix(0.203264,0.003252,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.203264,0.003252,-0.003999,0.249968,0,0);}
.md1_c00250{transform:matrix(0.205184,0.004104,-0.004999,0.249950,0,0);-ms-transform:matrix(0.205184,0.004104,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.205184,0.004104,-0.004999,0.249950,0,0);}
.m8a_c00250{transform:matrix(0.205769,0.004115,-0.004999,0.249950,0,0);-ms-transform:matrix(0.205769,0.004115,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.205769,0.004115,-0.004999,0.249950,0,0);}
.mb4_c00250{transform:matrix(0.206968,0.003932,-0.004749,0.249955,0,0);-ms-transform:matrix(0.206968,0.003932,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.206968,0.003932,-0.004749,0.249955,0,0);}
.mad_c00250{transform:matrix(0.208397,0.003960,-0.004749,0.249955,0,0);-ms-transform:matrix(0.208397,0.003960,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.208397,0.003960,-0.004749,0.249955,0,0);}
.m111_c00250{transform:matrix(0.208477,0.003961,-0.004749,0.249955,0,0);-ms-transform:matrix(0.208477,0.003961,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.208477,0.003961,-0.004749,0.249955,0,0);}
.m116_c00250{transform:matrix(0.208677,0.003965,-0.004749,0.249955,0,0);-ms-transform:matrix(0.208677,0.003965,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.208677,0.003965,-0.004749,0.249955,0,0);}
.m110_c00250{transform:matrix(0.208742,0.003966,-0.004749,0.249955,0,0);-ms-transform:matrix(0.208742,0.003966,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.208742,0.003966,-0.004749,0.249955,0,0);}
.m112_c00250{transform:matrix(0.208962,0.003970,-0.004749,0.249955,0,0);-ms-transform:matrix(0.208962,0.003970,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.208962,0.003970,-0.004749,0.249955,0,0);}
.md5_c00250{transform:matrix(0.209123,0.004182,-0.004999,0.249950,0,0);-ms-transform:matrix(0.209123,0.004182,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.209123,0.004182,-0.004999,0.249950,0,0);}
.m20_c00250{transform:matrix(0.209863,0.003358,-0.003999,0.249968,0,0);-ms-transform:matrix(0.209863,0.003358,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.209863,0.003358,-0.003999,0.249968,0,0);}
.m32_c00250{transform:matrix(0.211243,0.003380,-0.003999,0.249968,0,0);-ms-transform:matrix(0.211243,0.003380,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.211243,0.003380,-0.003999,0.249968,0,0);}
.m29_c00250{transform:matrix(0.211483,0.003384,-0.003999,0.249968,0,0);-ms-transform:matrix(0.211483,0.003384,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.211483,0.003384,-0.003999,0.249968,0,0);}
.m4b_c00250{transform:matrix(0.211599,0.003597,-0.004249,0.249964,0,0);-ms-transform:matrix(0.211599,0.003597,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.211599,0.003597,-0.004249,0.249964,0,0);}
.m56_c00250{transform:matrix(0.212119,0.003606,-0.004249,0.249964,0,0);-ms-transform:matrix(0.212119,0.003606,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.212119,0.003606,-0.004249,0.249964,0,0);}
.mb8_c00250{transform:matrix(0.213571,0.004058,-0.004749,0.249955,0,0);-ms-transform:matrix(0.213571,0.004058,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.213571,0.004058,-0.004749,0.249955,0,0);}
.m16_c00250{transform:matrix(0.214376,0.004073,-0.004749,0.249955,0,0);-ms-transform:matrix(0.214376,0.004073,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.214376,0.004073,-0.004749,0.249955,0,0);}
.mba_c00250{transform:matrix(0.214586,0.004077,-0.004749,0.249955,0,0);-ms-transform:matrix(0.214586,0.004077,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.214586,0.004077,-0.004749,0.249955,0,0);}
.m80_c00250{transform:matrix(0.214587,0.004292,-0.004999,0.249950,0,0);-ms-transform:matrix(0.214587,0.004292,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.214587,0.004292,-0.004999,0.249950,0,0);}
.m87_c00250{transform:matrix(0.214707,0.004294,-0.004999,0.249950,0,0);-ms-transform:matrix(0.214707,0.004294,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.214707,0.004294,-0.004999,0.249950,0,0);}
.m13_c00250{transform:matrix(0.214711,0.004080,-0.004749,0.249955,0,0);-ms-transform:matrix(0.214711,0.004080,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.214711,0.004080,-0.004749,0.249955,0,0);}
.me1_c00250{transform:matrix(0.215107,0.004302,-0.004999,0.249950,0,0);-ms-transform:matrix(0.215107,0.004302,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.215107,0.004302,-0.004999,0.249950,0,0);}
.m8f_c00250{transform:matrix(0.215672,0.004313,-0.004999,0.249950,0,0);-ms-transform:matrix(0.215672,0.004313,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.215672,0.004313,-0.004999,0.249950,0,0);}
.mc_c00250{transform:matrix(0.215676,0.004098,-0.004749,0.249955,0,0);-ms-transform:matrix(0.215676,0.004098,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.215676,0.004098,-0.004749,0.249955,0,0);}
.m3a_c00250{transform:matrix(0.215684,0.003667,-0.004249,0.249964,0,0);-ms-transform:matrix(0.215684,0.003667,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.215684,0.003667,-0.004249,0.249964,0,0);}
.m55_c00250{transform:matrix(0.215729,0.003667,-0.004249,0.249964,0,0);-ms-transform:matrix(0.215729,0.003667,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.215729,0.003667,-0.004249,0.249964,0,0);}
.m7_c00250{transform:matrix(0.215816,0.004101,-0.004749,0.249955,0,0);-ms-transform:matrix(0.215816,0.004101,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.215816,0.004101,-0.004749,0.249955,0,0);}
.m48_c00250{transform:matrix(0.215824,0.003669,-0.004249,0.249964,0,0);-ms-transform:matrix(0.215824,0.003669,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.215824,0.003669,-0.004249,0.249964,0,0);}
.maa_c00250{transform:matrix(0.216306,0.004110,-0.004749,0.249955,0,0);-ms-transform:matrix(0.216306,0.004110,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.216306,0.004110,-0.004749,0.249955,0,0);}
.m8_c00250{transform:matrix(0.216996,0.004123,-0.004749,0.249955,0,0);-ms-transform:matrix(0.216996,0.004123,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.216996,0.004123,-0.004749,0.249955,0,0);}
.mfe_c00250{transform:matrix(0.217192,0.004344,-0.004999,0.249950,0,0);-ms-transform:matrix(0.217192,0.004344,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.217192,0.004344,-0.004999,0.249950,0,0);}
.mfa_c00250{transform:matrix(0.217487,0.004350,-0.004999,0.249950,0,0);-ms-transform:matrix(0.217487,0.004350,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.217487,0.004350,-0.004999,0.249950,0,0);}
.m98_c00250{transform:matrix(0.217497,0.004350,-0.004999,0.249950,0,0);-ms-transform:matrix(0.217497,0.004350,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.217497,0.004350,-0.004999,0.249950,0,0);}
.ma3_c00250{transform:matrix(0.217741,0.004137,-0.004749,0.249955,0,0);-ms-transform:matrix(0.217741,0.004137,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.217741,0.004137,-0.004749,0.249955,0,0);}
.m50_c00250{transform:matrix(0.217844,0.003703,-0.004249,0.249964,0,0);-ms-transform:matrix(0.217844,0.003703,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.217844,0.003703,-0.004249,0.249964,0,0);}
.m54_c00250{transform:matrix(0.218468,0.003714,-0.004249,0.249964,0,0);-ms-transform:matrix(0.218468,0.003714,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.218468,0.003714,-0.004249,0.249964,0,0);}
.m21_c00250{transform:matrix(0.218927,0.003503,-0.003999,0.249968,0,0);-ms-transform:matrix(0.218927,0.003503,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.218927,0.003503,-0.003999,0.249968,0,0);}
.mea_c00250{transform:matrix(0.219221,0.004384,-0.004999,0.249950,0,0);-ms-transform:matrix(0.219221,0.004384,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.219221,0.004384,-0.004999,0.249950,0,0);}
.mb2_c00250{transform:matrix(0.219425,0.004169,-0.004749,0.249955,0,0);-ms-transform:matrix(0.219425,0.004169,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.219425,0.004169,-0.004749,0.249955,0,0);}
.mf5_c00250{transform:matrix(0.219921,0.004398,-0.004999,0.249950,0,0);-ms-transform:matrix(0.219921,0.004398,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.219921,0.004398,-0.004999,0.249950,0,0);}
.mbe_c00250{transform:matrix(0.219925,0.004179,-0.004749,0.249955,0,0);-ms-transform:matrix(0.219925,0.004179,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.219925,0.004179,-0.004749,0.249955,0,0);}
.md3_c00250{transform:matrix(0.220086,0.004402,-0.004999,0.249950,0,0);-ms-transform:matrix(0.220086,0.004402,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.220086,0.004402,-0.004999,0.249950,0,0);}
.med_c00250{transform:matrix(0.220206,0.004404,-0.004999,0.249950,0,0);-ms-transform:matrix(0.220206,0.004404,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.220206,0.004404,-0.004999,0.249950,0,0);}
.m8b_c00250{transform:matrix(0.220786,0.004416,-0.004999,0.249950,0,0);-ms-transform:matrix(0.220786,0.004416,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.220786,0.004416,-0.004999,0.249950,0,0);}
.m9a_c00250{transform:matrix(0.220790,0.004195,-0.004749,0.249955,0,0);-ms-transform:matrix(0.220790,0.004195,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.220790,0.004195,-0.004749,0.249955,0,0);}
.m58_c00250{transform:matrix(0.221008,0.003757,-0.004249,0.249964,0,0);-ms-transform:matrix(0.221008,0.003757,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.221008,0.003757,-0.004249,0.249964,0,0);}
.ma7_c00250{transform:matrix(0.221165,0.004202,-0.004749,0.249955,0,0);-ms-transform:matrix(0.221165,0.004202,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.221165,0.004202,-0.004749,0.249955,0,0);}
.mda_c00250{transform:matrix(0.221541,0.004431,-0.004999,0.249950,0,0);-ms-transform:matrix(0.221541,0.004431,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.221541,0.004431,-0.004999,0.249950,0,0);}
.mfd_c00250{transform:matrix(0.221666,0.004433,-0.004999,0.249950,0,0);-ms-transform:matrix(0.221666,0.004433,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.221666,0.004433,-0.004999,0.249950,0,0);}
.mf3_c00250{transform:matrix(0.221676,0.004434,-0.004999,0.249950,0,0);-ms-transform:matrix(0.221676,0.004434,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.221676,0.004434,-0.004999,0.249950,0,0);}
.mbc_c00250{transform:matrix(0.221940,0.004217,-0.004749,0.249955,0,0);-ms-transform:matrix(0.221940,0.004217,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.221940,0.004217,-0.004749,0.249955,0,0);}
.ma5_c00250{transform:matrix(0.222055,0.004219,-0.004749,0.249955,0,0);-ms-transform:matrix(0.222055,0.004219,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.222055,0.004219,-0.004749,0.249955,0,0);}
.me_c00250{transform:matrix(0.222105,0.004220,-0.004749,0.249955,0,0);-ms-transform:matrix(0.222105,0.004220,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.222105,0.004220,-0.004749,0.249955,0,0);}
.mb7_c00250{transform:matrix(0.222330,0.004224,-0.004749,0.249955,0,0);-ms-transform:matrix(0.222330,0.004224,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.222330,0.004224,-0.004749,0.249955,0,0);}
.m10c_c00250{transform:matrix(0.222386,0.004448,-0.004999,0.249950,0,0);-ms-transform:matrix(0.222386,0.004448,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.222386,0.004448,-0.004999,0.249950,0,0);}
.m33_c00250{transform:matrix(0.223126,0.003570,-0.003999,0.249968,0,0);-ms-transform:matrix(0.223126,0.003570,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.223126,0.003570,-0.003999,0.249968,0,0);}
.m66_c00250{transform:matrix(0.223845,0.004253,-0.004749,0.249955,0,0);-ms-transform:matrix(0.223845,0.004253,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.223845,0.004253,-0.004749,0.249955,0,0);}
.md7_c00250{transform:matrix(0.224000,0.004480,-0.004999,0.249950,0,0);-ms-transform:matrix(0.224000,0.004480,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.224000,0.004480,-0.004999,0.249950,0,0);}
.mde_c00250{transform:matrix(0.224165,0.004483,-0.004999,0.249950,0,0);-ms-transform:matrix(0.224165,0.004483,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.224165,0.004483,-0.004999,0.249950,0,0);}
.m25_c00250{transform:matrix(0.224356,0.003590,-0.003999,0.249968,0,0);-ms-transform:matrix(0.224356,0.003590,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.224356,0.003590,-0.003999,0.249968,0,0);}
.mbd_c00250{transform:matrix(0.224484,0.004265,-0.004749,0.249955,0,0);-ms-transform:matrix(0.224484,0.004265,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.224484,0.004265,-0.004749,0.249955,0,0);}
.mc3_c00250{transform:matrix(0.224959,0.004274,-0.004749,0.249955,0,0);-ms-transform:matrix(0.224959,0.004274,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.224959,0.004274,-0.004749,0.249955,0,0);}
.mf7_c00250{transform:matrix(0.225405,0.004508,-0.004999,0.249950,0,0);-ms-transform:matrix(0.225405,0.004508,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.225405,0.004508,-0.004999,0.249950,0,0);}
.mac_c00250{transform:matrix(0.225894,0.004292,-0.004749,0.249955,0,0);-ms-transform:matrix(0.225894,0.004292,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.225894,0.004292,-0.004749,0.249955,0,0);}
.m108_c00250{transform:matrix(0.225980,0.004520,-0.004999,0.249950,0,0);-ms-transform:matrix(0.225980,0.004520,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.225980,0.004520,-0.004999,0.249950,0,0);}
.m79_c00250{transform:matrix(0.226945,0.004539,-0.004999,0.249950,0,0);-ms-transform:matrix(0.226945,0.004539,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.226945,0.004539,-0.004999,0.249950,0,0);}
.m39_c00250{transform:matrix(0.227131,0.003634,-0.003999,0.249968,0,0);-ms-transform:matrix(0.227131,0.003634,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.227131,0.003634,-0.003999,0.249968,0,0);}
.m101_c00250{transform:matrix(0.227190,0.004544,-0.004999,0.249950,0,0);-ms-transform:matrix(0.227190,0.004544,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.227190,0.004544,-0.004999,0.249950,0,0);}
.mb9_c00250{transform:matrix(0.227339,0.004319,-0.004749,0.249955,0,0);-ms-transform:matrix(0.227339,0.004319,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.227339,0.004319,-0.004749,0.249955,0,0);}
.mc4_c00250{transform:matrix(0.227349,0.004320,-0.004749,0.249955,0,0);-ms-transform:matrix(0.227349,0.004320,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.227349,0.004320,-0.004749,0.249955,0,0);}
.mfc_c00250{transform:matrix(0.227375,0.004547,-0.004999,0.249950,0,0);-ms-transform:matrix(0.227375,0.004547,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.227375,0.004547,-0.004999,0.249950,0,0);}
.m22_c00250{transform:matrix(0.227981,0.003648,-0.003999,0.249968,0,0);-ms-transform:matrix(0.227981,0.003648,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.227981,0.003648,-0.003999,0.249968,0,0);}
.m23_c00250{transform:matrix(0.228026,0.003648,-0.003999,0.249968,0,0);-ms-transform:matrix(0.228026,0.003648,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.228026,0.003648,-0.003999,0.249968,0,0);}
.mae_c00250{transform:matrix(0.228264,0.004337,-0.004749,0.249955,0,0);-ms-transform:matrix(0.228264,0.004337,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.228264,0.004337,-0.004749,0.249955,0,0);}
.ma8_c00250{transform:matrix(0.228414,0.004340,-0.004749,0.249955,0,0);-ms-transform:matrix(0.228414,0.004340,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.228414,0.004340,-0.004749,0.249955,0,0);}
.m92_c00250{transform:matrix(0.228424,0.004568,-0.004999,0.249950,0,0);-ms-transform:matrix(0.228424,0.004568,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.228424,0.004568,-0.004999,0.249950,0,0);}
.m24_c00250{transform:matrix(0.228696,0.003659,-0.003999,0.249968,0,0);-ms-transform:matrix(0.228696,0.003659,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.228696,0.003659,-0.003999,0.249968,0,0);}
.mbf_c00250{transform:matrix(0.228724,0.004346,-0.004749,0.249955,0,0);-ms-transform:matrix(0.228724,0.004346,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.228724,0.004346,-0.004749,0.249955,0,0);}
.m53_c00250{transform:matrix(0.228982,0.003893,-0.004249,0.249964,0,0);-ms-transform:matrix(0.228982,0.003893,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.228982,0.003893,-0.004249,0.249964,0,0);}
.m2c_c00250{transform:matrix(0.229236,0.003668,-0.003999,0.249968,0,0);-ms-transform:matrix(0.229236,0.003668,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.229236,0.003668,-0.003999,0.249968,0,0);}
.m97_c00250{transform:matrix(0.229884,0.004598,-0.004999,0.249950,0,0);-ms-transform:matrix(0.229884,0.004598,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.229884,0.004598,-0.004999,0.249950,0,0);}
.mb0_c00250{transform:matrix(0.229919,0.004368,-0.004749,0.249955,0,0);-ms-transform:matrix(0.229919,0.004368,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.229919,0.004368,-0.004749,0.249955,0,0);}
.mb1_c00250{transform:matrix(0.230293,0.004376,-0.004749,0.249955,0,0);-ms-transform:matrix(0.230293,0.004376,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.230293,0.004376,-0.004749,0.249955,0,0);}
.m40_c00250{transform:matrix(0.230297,0.003915,-0.004249,0.249964,0,0);-ms-transform:matrix(0.230297,0.003915,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.230297,0.003915,-0.004249,0.249964,0,0);}
.m9b_c00250{transform:matrix(0.231018,0.004389,-0.004749,0.249955,0,0);-ms-transform:matrix(0.231018,0.004389,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.231018,0.004389,-0.004749,0.249955,0,0);}
.m77_c00250{transform:matrix(0.231209,0.004624,-0.004999,0.249950,0,0);-ms-transform:matrix(0.231209,0.004624,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.231209,0.004624,-0.004999,0.249950,0,0);}
.ma_c00250{transform:matrix(0.231578,0.004400,-0.004749,0.249955,0,0);-ms-transform:matrix(0.231578,0.004400,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.231578,0.004400,-0.004749,0.249955,0,0);}
.mf4_c00250{transform:matrix(0.231959,0.004639,-0.004999,0.249950,0,0);-ms-transform:matrix(0.231959,0.004639,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.231959,0.004639,-0.004999,0.249950,0,0);}
.m10b_c00250{transform:matrix(0.232289,0.004646,-0.004999,0.249950,0,0);-ms-transform:matrix(0.232289,0.004646,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.232289,0.004646,-0.004999,0.249950,0,0);}
.m60_c00250{transform:matrix(0.232608,0.004420,-0.004749,0.249955,0,0);-ms-transform:matrix(0.232608,0.004420,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.232608,0.004420,-0.004749,0.249955,0,0);}
.m18_c00250{transform:matrix(0.232953,0.004426,-0.004749,0.249955,0,0);-ms-transform:matrix(0.232953,0.004426,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.232953,0.004426,-0.004749,0.249955,0,0);}
.me4_c00250{transform:matrix(0.233078,0.004662,-0.004999,0.249950,0,0);-ms-transform:matrix(0.233078,0.004662,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.233078,0.004662,-0.004999,0.249950,0,0);}
.m9d_c00250{transform:matrix(0.233483,0.004436,-0.004749,0.249955,0,0);-ms-transform:matrix(0.233483,0.004436,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.233483,0.004436,-0.004749,0.249955,0,0);}
.m57_c00250{transform:matrix(0.233616,0.003971,-0.004249,0.249964,0,0);-ms-transform:matrix(0.233616,0.003971,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.233616,0.003971,-0.004249,0.249964,0,0);}
.mec_c00250{transform:matrix(0.233733,0.004675,-0.004999,0.249950,0,0);-ms-transform:matrix(0.233733,0.004675,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.233733,0.004675,-0.004999,0.249950,0,0);}
.mf1_c00250{transform:matrix(0.233903,0.004678,-0.004999,0.249950,0,0);-ms-transform:matrix(0.233903,0.004678,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.233903,0.004678,-0.004999,0.249950,0,0);}
.m42_c00250{transform:matrix(0.234226,0.003982,-0.004249,0.249964,0,0);-ms-transform:matrix(0.234226,0.003982,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.234226,0.003982,-0.004249,0.249964,0,0);}
.m91_c00250{transform:matrix(0.234293,0.004686,-0.004999,0.249950,0,0);-ms-transform:matrix(0.234293,0.004686,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.234293,0.004686,-0.004999,0.249950,0,0);}
.m86_c00250{transform:matrix(0.234573,0.004691,-0.004999,0.249950,0,0);-ms-transform:matrix(0.234573,0.004691,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.234573,0.004691,-0.004999,0.249950,0,0);}
.m43_c00250{transform:matrix(0.234681,0.003990,-0.004249,0.249964,0,0);-ms-transform:matrix(0.234681,0.003990,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.234681,0.003990,-0.004249,0.249964,0,0);}
.m94_c00250{transform:matrix(0.234853,0.004697,-0.004999,0.249950,0,0);-ms-transform:matrix(0.234853,0.004697,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.234853,0.004697,-0.004999,0.249950,0,0);}
.m1a_c00250{transform:matrix(0.234858,0.004462,-0.004749,0.249955,0,0);-ms-transform:matrix(0.234858,0.004462,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.234858,0.004462,-0.004749,0.249955,0,0);}
.md4_c00250{transform:matrix(0.234948,0.004699,-0.004999,0.249950,0,0);-ms-transform:matrix(0.234948,0.004699,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.234948,0.004699,-0.004999,0.249950,0,0);}
.m52_c00250{transform:matrix(0.235201,0.003998,-0.004249,0.249964,0,0);-ms-transform:matrix(0.235201,0.003998,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.235201,0.003998,-0.004249,0.249964,0,0);}
.m44_c00250{transform:matrix(0.235536,0.004004,-0.004249,0.249964,0,0);-ms-transform:matrix(0.235536,0.004004,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.235536,0.004004,-0.004249,0.249964,0,0);}
.m102_c00250{transform:matrix(0.235608,0.004712,-0.004999,0.249950,0,0);-ms-transform:matrix(0.235608,0.004712,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.235608,0.004712,-0.004999,0.249950,0,0);}
.m8d_c00250{transform:matrix(0.235648,0.004713,-0.004999,0.249950,0,0);-ms-transform:matrix(0.235648,0.004713,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.235648,0.004713,-0.004999,0.249950,0,0);}
.m2d_c00250{transform:matrix(0.235725,0.003772,-0.003999,0.249968,0,0);-ms-transform:matrix(0.235725,0.003772,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.235725,0.003772,-0.003999,0.249968,0,0);}
.mc2_c00250{transform:matrix(0.235727,0.004479,-0.004749,0.249955,0,0);-ms-transform:matrix(0.235727,0.004479,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.235727,0.004479,-0.004749,0.249955,0,0);}
.mab_c00250{transform:matrix(0.235867,0.004481,-0.004749,0.249955,0,0);-ms-transform:matrix(0.235867,0.004481,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.235867,0.004481,-0.004749,0.249955,0,0);}
.m41_c00250{transform:matrix(0.235991,0.004012,-0.004249,0.249964,0,0);-ms-transform:matrix(0.235991,0.004012,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.235991,0.004012,-0.004249,0.249964,0,0);}
.mdf_c00250{transform:matrix(0.236158,0.004723,-0.004999,0.249950,0,0);-ms-transform:matrix(0.236158,0.004723,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.236158,0.004723,-0.004999,0.249950,0,0);}
.m1d_c00250{transform:matrix(0.236200,0.003779,-0.003999,0.249968,0,0);-ms-transform:matrix(0.236200,0.003779,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.236200,0.003779,-0.003999,0.249968,0,0);}
.ma9_c00250{transform:matrix(0.236287,0.004489,-0.004749,0.249955,0,0);-ms-transform:matrix(0.236287,0.004489,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.236287,0.004489,-0.004749,0.249955,0,0);}
.m106_c00250{transform:matrix(0.236303,0.004726,-0.004999,0.249950,0,0);-ms-transform:matrix(0.236303,0.004726,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.236303,0.004726,-0.004999,0.249950,0,0);}
.m45_c00250{transform:matrix(0.236446,0.004020,-0.004249,0.249964,0,0);-ms-transform:matrix(0.236446,0.004020,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.236446,0.004020,-0.004249,0.249964,0,0);}
.m51_c00250{transform:matrix(0.236536,0.004021,-0.004249,0.249964,0,0);-ms-transform:matrix(0.236536,0.004021,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.236536,0.004021,-0.004249,0.249964,0,0);}
.m9e_c00250{transform:matrix(0.236887,0.004501,-0.004749,0.249955,0,0);-ms-transform:matrix(0.236887,0.004501,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.236887,0.004501,-0.004749,0.249955,0,0);}
.m11_c00250{transform:matrix(0.237282,0.004508,-0.004749,0.249955,0,0);-ms-transform:matrix(0.237282,0.004508,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.237282,0.004508,-0.004749,0.249955,0,0);}
.m10a_c00250{transform:matrix(0.238047,0.004761,-0.004999,0.249950,0,0);-ms-transform:matrix(0.238047,0.004761,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.238047,0.004761,-0.004999,0.249950,0,0);}
.m63_c00250{transform:matrix(0.238172,0.004525,-0.004749,0.249955,0,0);-ms-transform:matrix(0.238172,0.004525,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.238172,0.004525,-0.004749,0.249955,0,0);}
.m4e_c00250{transform:matrix(0.238186,0.004049,-0.004249,0.249964,0,0);-ms-transform:matrix(0.238186,0.004049,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.238186,0.004049,-0.004249,0.249964,0,0);}
.ma4_c00250{transform:matrix(0.238417,0.004530,-0.004749,0.249955,0,0);-ms-transform:matrix(0.238417,0.004530,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.238417,0.004530,-0.004749,0.249955,0,0);}
.md0_c00250{transform:matrix(0.238632,0.004773,-0.004999,0.249950,0,0);-ms-transform:matrix(0.238632,0.004773,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.238632,0.004773,-0.004999,0.249950,0,0);}
.m9f_c00250{transform:matrix(0.238677,0.004535,-0.004749,0.249955,0,0);-ms-transform:matrix(0.238677,0.004535,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.238677,0.004535,-0.004749,0.249955,0,0);}
.mb6_c00250{transform:matrix(0.238707,0.004535,-0.004749,0.249955,0,0);-ms-transform:matrix(0.238707,0.004535,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.238707,0.004535,-0.004749,0.249955,0,0);}
.m127_c00250{transform:matrix(0.238717,0.005252,-0.005499,0.249940,0,0);-ms-transform:matrix(0.238717,0.005252,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.238717,0.005252,-0.005499,0.249940,0,0);}
.m100_c00250{transform:matrix(0.238922,0.004778,-0.004999,0.249950,0,0);-ms-transform:matrix(0.238922,0.004778,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.238922,0.004778,-0.004999,0.249950,0,0);}
.mf6_c00250{transform:matrix(0.238932,0.004779,-0.004999,0.249950,0,0);-ms-transform:matrix(0.238932,0.004779,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.238932,0.004779,-0.004999,0.249950,0,0);}
.mce_c00250{transform:matrix(0.239087,0.004782,-0.004999,0.249950,0,0);-ms-transform:matrix(0.239087,0.004782,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.239087,0.004782,-0.004999,0.249950,0,0);}
.mb5_c00250{transform:matrix(0.239162,0.004544,-0.004749,0.249955,0,0);-ms-transform:matrix(0.239162,0.004544,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.239162,0.004544,-0.004749,0.249955,0,0);}
.m12_c00250{transform:matrix(0.239337,0.004547,-0.004749,0.249955,0,0);-ms-transform:matrix(0.239337,0.004547,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.239337,0.004547,-0.004749,0.249955,0,0);}
.me8_c00250{transform:matrix(0.240052,0.004801,-0.004999,0.249950,0,0);-ms-transform:matrix(0.240052,0.004801,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.240052,0.004801,-0.004999,0.249950,0,0);}
.ma6_c00250{transform:matrix(0.240807,0.004575,-0.004749,0.249955,0,0);-ms-transform:matrix(0.240807,0.004575,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.240807,0.004575,-0.004749,0.249955,0,0);}
.m49_c00250{transform:matrix(0.240925,0.004096,-0.004249,0.249964,0,0);-ms-transform:matrix(0.240925,0.004096,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.240925,0.004096,-0.004249,0.249964,0,0);}
.m46_c00250{transform:matrix(0.240945,0.004096,-0.004249,0.249964,0,0);-ms-transform:matrix(0.240945,0.004096,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.240945,0.004096,-0.004249,0.249964,0,0);}
.mf9_c00250{transform:matrix(0.241177,0.004824,-0.004999,0.249950,0,0);-ms-transform:matrix(0.241177,0.004824,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.241177,0.004824,-0.004999,0.249950,0,0);}
.mdd_c00250{transform:matrix(0.241392,0.004828,-0.004999,0.249950,0,0);-ms-transform:matrix(0.241392,0.004828,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.241392,0.004828,-0.004999,0.249950,0,0);}
.mff_c00250{transform:matrix(0.241597,0.004832,-0.004999,0.249950,0,0);-ms-transform:matrix(0.241597,0.004832,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.241597,0.004832,-0.004999,0.249950,0,0);}
.me0_c00250{transform:matrix(0.241652,0.004833,-0.004999,0.249950,0,0);-ms-transform:matrix(0.241652,0.004833,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.241652,0.004833,-0.004999,0.249950,0,0);}
.m3_c00250{transform:matrix(0.241881,0.004596,-0.004749,0.249955,0,0);-ms-transform:matrix(0.241881,0.004596,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.241881,0.004596,-0.004749,0.249955,0,0);}
.md2_c00250{transform:matrix(0.242107,0.004842,-0.004999,0.249950,0,0);-ms-transform:matrix(0.242107,0.004842,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.242107,0.004842,-0.004999,0.249950,0,0);}
.m59_c00250{transform:matrix(0.242215,0.004118,-0.004249,0.249964,0,0);-ms-transform:matrix(0.242215,0.004118,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.242215,0.004118,-0.004249,0.249964,0,0);}
.md6_c00250{transform:matrix(0.242292,0.004846,-0.004999,0.249950,0,0);-ms-transform:matrix(0.242292,0.004846,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.242292,0.004846,-0.004999,0.249950,0,0);}
.m104_c00250{transform:matrix(0.242502,0.004850,-0.004999,0.249950,0,0);-ms-transform:matrix(0.242502,0.004850,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.242502,0.004850,-0.004999,0.249950,0,0);}
.mcf_c00250{transform:matrix(0.242751,0.004855,-0.004999,0.249950,0,0);-ms-transform:matrix(0.242751,0.004855,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.242751,0.004855,-0.004999,0.249950,0,0);}
.maf_c00250{transform:matrix(0.243036,0.004618,-0.004749,0.249955,0,0);-ms-transform:matrix(0.243036,0.004618,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.243036,0.004618,-0.004749,0.249955,0,0);}
.m26_c00250{transform:matrix(0.243524,0.003896,-0.003999,0.249968,0,0);-ms-transform:matrix(0.243524,0.003896,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.243524,0.003896,-0.003999,0.249968,0,0);}
.mf2_c00250{transform:matrix(0.243756,0.004875,-0.004999,0.249950,0,0);-ms-transform:matrix(0.243756,0.004875,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.243756,0.004875,-0.004999,0.249950,0,0);}
.mdb_c00250{transform:matrix(0.243836,0.004877,-0.004999,0.249950,0,0);-ms-transform:matrix(0.243836,0.004877,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.243836,0.004877,-0.004999,0.249950,0,0);}
.me6_c00250{transform:matrix(0.244201,0.004884,-0.004999,0.249950,0,0);-ms-transform:matrix(0.244201,0.004884,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.244201,0.004884,-0.004999,0.249950,0,0);}
.m9c_c00250{transform:matrix(0.244206,0.004640,-0.004749,0.249955,0,0);-ms-transform:matrix(0.244206,0.004640,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.244206,0.004640,-0.004749,0.249955,0,0);}
.m109_c00250{transform:matrix(0.244351,0.004887,-0.004999,0.249950,0,0);-ms-transform:matrix(0.244351,0.004887,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.244351,0.004887,-0.004999,0.249950,0,0);}
.m19_c00250{transform:matrix(0.244356,0.004643,-0.004749,0.249955,0,0);-ms-transform:matrix(0.244356,0.004643,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.244356,0.004643,-0.004749,0.249955,0,0);}
.m5b_c00250{transform:matrix(0.244605,0.004158,-0.004249,0.249964,0,0);-ms-transform:matrix(0.244605,0.004158,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.244605,0.004158,-0.004249,0.249964,0,0);}
.m1b_c00250{transform:matrix(0.244671,0.004649,-0.004749,0.249955,0,0);-ms-transform:matrix(0.244671,0.004649,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.244671,0.004649,-0.004749,0.249955,0,0);}
.m4c_c00250{transform:matrix(0.244755,0.004161,-0.004249,0.249964,0,0);-ms-transform:matrix(0.244755,0.004161,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.244755,0.004161,-0.004249,0.249964,0,0);}
.m81_c00250{transform:matrix(0.245136,0.004903,-0.004999,0.249950,0,0);-ms-transform:matrix(0.245136,0.004903,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.245136,0.004903,-0.004999,0.249950,0,0);}
.md9_c00250{transform:matrix(0.245611,0.004912,-0.004999,0.249950,0,0);-ms-transform:matrix(0.245611,0.004912,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.245611,0.004912,-0.004999,0.249950,0,0);}
.md_c00250{transform:matrix(0.246026,0.004674,-0.004749,0.249955,0,0);-ms-transform:matrix(0.246026,0.004674,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.246026,0.004674,-0.004749,0.249955,0,0);}
.m14_c00250{transform:matrix(0.246096,0.004676,-0.004749,0.249955,0,0);-ms-transform:matrix(0.246096,0.004676,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.246096,0.004676,-0.004749,0.249955,0,0);}
.ma2_c00250{transform:matrix(0.246321,0.004680,-0.004749,0.249955,0,0);-ms-transform:matrix(0.246321,0.004680,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.246321,0.004680,-0.004749,0.249955,0,0);}
.mdc_c00250{transform:matrix(0.247201,0.004944,-0.004999,0.249950,0,0);-ms-transform:matrix(0.247201,0.004944,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.247201,0.004944,-0.004999,0.249950,0,0);}
.m7f_c00250{transform:matrix(0.247471,0.004949,-0.004999,0.249950,0,0);-ms-transform:matrix(0.247471,0.004949,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.247471,0.004949,-0.004999,0.249950,0,0);}
.m65_c00250{transform:matrix(0.248200,0.004716,-0.004749,0.249955,0,0);-ms-transform:matrix(0.248200,0.004716,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.248200,0.004716,-0.004749,0.249955,0,0);}
.mf0_c00250{transform:matrix(0.248250,0.004965,-0.004999,0.249950,0,0);-ms-transform:matrix(0.248250,0.004965,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.248250,0.004965,-0.004999,0.249950,0,0);}
.m10d_c00250{transform:matrix(0.248735,0.004975,-0.004999,0.249950,0,0);-ms-transform:matrix(0.248735,0.004975,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.248735,0.004975,-0.004999,0.249950,0,0);}
.m105_c00250{transform:matrix(0.248785,0.004976,-0.004999,0.249950,0,0);-ms-transform:matrix(0.248785,0.004976,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.248785,0.004976,-0.004999,0.249950,0,0);}
.m5a_c00250{transform:matrix(0.248924,0.004232,-0.004249,0.249964,0,0);-ms-transform:matrix(0.248924,0.004232,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.248924,0.004232,-0.004249,0.249964,0,0);}
.m85_c00250{transform:matrix(0.249040,0.004981,-0.004999,0.249950,0,0);-ms-transform:matrix(0.249040,0.004981,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.249040,0.004981,-0.004999,0.249950,0,0);}
.m8e_c00250{transform:matrix(0.249205,0.004984,-0.004999,0.249950,0,0);-ms-transform:matrix(0.249205,0.004984,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.249205,0.004984,-0.004999,0.249950,0,0);}
.m10_c00250{transform:matrix(0.249595,0.004742,-0.004749,0.249955,0,0);-ms-transform:matrix(0.249595,0.004742,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.249595,0.004742,-0.004749,0.249955,0,0);}
.m128_c00250{transform:matrix(0.249995,0.005500,-0.005499,0.249940,0,0);-ms-transform:matrix(0.249995,0.005500,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.249995,0.005500,-0.005499,0.249940,0,0);}
.mf_c00250{transform:matrix(0.250385,0.004757,-0.004749,0.249955,0,0);-ms-transform:matrix(0.250385,0.004757,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.250385,0.004757,-0.004749,0.249955,0,0);}
.mef_c00250{transform:matrix(0.250615,0.005012,-0.004999,0.249950,0,0);-ms-transform:matrix(0.250615,0.005012,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.250615,0.005012,-0.004999,0.249950,0,0);}
.m93_c00250{transform:matrix(0.250655,0.005013,-0.004999,0.249950,0,0);-ms-transform:matrix(0.250655,0.005013,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.250655,0.005013,-0.004999,0.249950,0,0);}
.m17_c00250{transform:matrix(0.250730,0.004764,-0.004749,0.249955,0,0);-ms-transform:matrix(0.250730,0.004764,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.250730,0.004764,-0.004749,0.249955,0,0);}
.m120_c00250{transform:matrix(0.250949,0.005521,-0.005499,0.249940,0,0);-ms-transform:matrix(0.250949,0.005521,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.250949,0.005521,-0.005499,0.249940,0,0);}
.m3f_c00250{transform:matrix(0.251484,0.004275,-0.004249,0.249964,0,0);-ms-transform:matrix(0.251484,0.004275,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.251484,0.004275,-0.004249,0.249964,0,0);}
.m6_c00250{transform:matrix(0.251625,0.004781,-0.004749,0.249955,0,0);-ms-transform:matrix(0.251625,0.004781,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.251625,0.004781,-0.004749,0.249955,0,0);}
.m61_c00250{transform:matrix(0.251760,0.004783,-0.004749,0.249955,0,0);-ms-transform:matrix(0.251760,0.004783,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.251760,0.004783,-0.004749,0.249955,0,0);}
.m3e_c00250{transform:matrix(0.252599,0.004294,-0.004249,0.249964,0,0);-ms-transform:matrix(0.252599,0.004294,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.252599,0.004294,-0.004249,0.249964,0,0);}
.m96_c00250{transform:matrix(0.252639,0.005053,-0.004999,0.249950,0,0);-ms-transform:matrix(0.252639,0.005053,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.252639,0.005053,-0.004999,0.249950,0,0);}
.mb_c00250{transform:matrix(0.252664,0.004801,-0.004749,0.249955,0,0);-ms-transform:matrix(0.252664,0.004801,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.252664,0.004801,-0.004749,0.249955,0,0);}
.m3b_c00250{transform:matrix(0.253023,0.004301,-0.004249,0.249964,0,0);-ms-transform:matrix(0.253023,0.004301,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.253023,0.004301,-0.004249,0.249964,0,0);}
.m4_c00250{transform:matrix(0.253169,0.004810,-0.004749,0.249955,0,0);-ms-transform:matrix(0.253169,0.004810,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.253169,0.004810,-0.004749,0.249955,0,0);}
.m83_c00250{transform:matrix(0.253444,0.005069,-0.004999,0.249950,0,0);-ms-transform:matrix(0.253444,0.005069,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.253444,0.005069,-0.004999,0.249950,0,0);}
.m121_c00250{transform:matrix(0.253724,0.005582,-0.005499,0.249940,0,0);-ms-transform:matrix(0.253724,0.005582,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.253724,0.005582,-0.005499,0.249940,0,0);}
.me7_c00250{transform:matrix(0.253854,0.005077,-0.004999,0.249950,0,0);-ms-transform:matrix(0.253854,0.005077,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.253854,0.005077,-0.004999,0.249950,0,0);}
.m2_c00250{transform:matrix(0.253999,0.004826,-0.004749,0.249955,0,0);-ms-transform:matrix(0.253999,0.004826,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.253999,0.004826,-0.004749,0.249955,0,0);}
.m90_c00250{transform:matrix(0.254004,0.005080,-0.004999,0.249950,0,0);-ms-transform:matrix(0.254004,0.005080,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.254004,0.005080,-0.004999,0.249950,0,0);}
.mc0_c00250{transform:matrix(0.254314,0.004832,-0.004749,0.249955,0,0);-ms-transform:matrix(0.254314,0.004832,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.254314,0.004832,-0.004749,0.249955,0,0);}
.mee_c00250{transform:matrix(0.254454,0.005089,-0.004999,0.249950,0,0);-ms-transform:matrix(0.254454,0.005089,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.254454,0.005089,-0.004999,0.249950,0,0);}
.m11d_c00250{transform:matrix(0.254853,0.005607,-0.005499,0.249940,0,0);-ms-transform:matrix(0.254853,0.005607,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.254853,0.005607,-0.005499,0.249940,0,0);}
.m88_c00250{transform:matrix(0.255014,0.005100,-0.004999,0.249950,0,0);-ms-transform:matrix(0.255014,0.005100,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.255014,0.005100,-0.004999,0.249950,0,0);}
.m95_c00250{transform:matrix(0.255409,0.005108,-0.004999,0.249950,0,0);-ms-transform:matrix(0.255409,0.005108,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.255409,0.005108,-0.004999,0.249950,0,0);}
.me3_c00250{transform:matrix(0.256034,0.005121,-0.004999,0.249950,0,0);-ms-transform:matrix(0.256034,0.005121,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.256034,0.005121,-0.004999,0.249950,0,0);}
.m2f_c00250{transform:matrix(0.256192,0.004099,-0.003999,0.249968,0,0);-ms-transform:matrix(0.256192,0.004099,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.256192,0.004099,-0.003999,0.249968,0,0);}
.me9_c00250{transform:matrix(0.256299,0.005126,-0.004999,0.249950,0,0);-ms-transform:matrix(0.256299,0.005126,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.256299,0.005126,-0.004999,0.249950,0,0);}
.m5f_c00250{transform:matrix(0.256549,0.004874,-0.004749,0.249955,0,0);-ms-transform:matrix(0.256549,0.004874,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.256549,0.004874,-0.004749,0.249955,0,0);}
.m4d_c00250{transform:matrix(0.257363,0.004375,-0.004249,0.249964,0,0);-ms-transform:matrix(0.257363,0.004375,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.257363,0.004375,-0.004249,0.249964,0,0);}
.m122_c00250{transform:matrix(0.257438,0.005664,-0.005499,0.249940,0,0);-ms-transform:matrix(0.257438,0.005664,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.257438,0.005664,-0.005499,0.249940,0,0);}
.meb_c00250{transform:matrix(0.257683,0.005154,-0.004999,0.249950,0,0);-ms-transform:matrix(0.257683,0.005154,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.257683,0.005154,-0.004999,0.249950,0,0);}
.m10e_c00250{transform:matrix(0.257793,0.005156,-0.004999,0.249950,0,0);-ms-transform:matrix(0.257793,0.005156,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.257793,0.005156,-0.004999,0.249950,0,0);}
.m64_c00250{transform:matrix(0.257853,0.004899,-0.004749,0.249955,0,0);-ms-transform:matrix(0.257853,0.004899,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.257853,0.004899,-0.004749,0.249955,0,0);}
.m11f_c00250{transform:matrix(0.257873,0.005673,-0.005499,0.249940,0,0);-ms-transform:matrix(0.257873,0.005673,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.257873,0.005673,-0.005499,0.249940,0,0);}
.m9_c00250{transform:matrix(0.258073,0.004903,-0.004749,0.249955,0,0);-ms-transform:matrix(0.258073,0.004903,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.258073,0.004903,-0.004749,0.249955,0,0);}
.m8c_c00250{transform:matrix(0.259173,0.005183,-0.004999,0.249950,0,0);-ms-transform:matrix(0.259173,0.005183,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.259173,0.005183,-0.004999,0.249950,0,0);}
.m107_c00250{transform:matrix(0.259273,0.005185,-0.004999,0.249950,0,0);-ms-transform:matrix(0.259273,0.005185,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.259273,0.005185,-0.004999,0.249950,0,0);}
.me2_c00250{transform:matrix(0.259448,0.005189,-0.004999,0.249950,0,0);-ms-transform:matrix(0.259448,0.005189,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.259448,0.005189,-0.004999,0.249950,0,0);}
.m4f_c00250{transform:matrix(0.259523,0.004412,-0.004249,0.249964,0,0);-ms-transform:matrix(0.259523,0.004412,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.259523,0.004412,-0.004249,0.249964,0,0);}
.ma1_c00250{transform:matrix(0.262148,0.004981,-0.004749,0.249955,0,0);-ms-transform:matrix(0.262148,0.004981,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.262148,0.004981,-0.004749,0.249955,0,0);}
.ma0_c00250{transform:matrix(0.262323,0.004984,-0.004749,0.249955,0,0);-ms-transform:matrix(0.262323,0.004984,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.262323,0.004984,-0.004749,0.249955,0,0);}
.m3c_c00250{transform:matrix(0.262592,0.004464,-0.004249,0.249964,0,0);-ms-transform:matrix(0.262592,0.004464,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.262592,0.004464,-0.004249,0.249964,0,0);}
.m125_c00250{transform:matrix(0.262731,0.005780,-0.005499,0.249940,0,0);-ms-transform:matrix(0.262731,0.005780,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.262731,0.005780,-0.005499,0.249940,0,0);}
.m5e_c00250{transform:matrix(0.263642,0.005009,-0.004749,0.249955,0,0);-ms-transform:matrix(0.263642,0.005009,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.263642,0.005009,-0.004749,0.249955,0,0);}
.m4a_c00250{transform:matrix(0.263822,0.004485,-0.004249,0.249964,0,0);-ms-transform:matrix(0.263822,0.004485,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.263822,0.004485,-0.004249,0.249964,0,0);}
.m28_c00250{transform:matrix(0.263831,0.004221,-0.003999,0.249968,0,0);-ms-transform:matrix(0.263831,0.004221,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.263831,0.004221,-0.003999,0.249968,0,0);}
.m2b_c00250{transform:matrix(0.264631,0.004234,-0.003999,0.249968,0,0);-ms-transform:matrix(0.264631,0.004234,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.264631,0.004234,-0.003999,0.249968,0,0);}
.m47_c00250{transform:matrix(0.266242,0.004526,-0.004249,0.249964,0,0);-ms-transform:matrix(0.266242,0.004526,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.266242,0.004526,-0.004249,0.249964,0,0);}
.m2e_c00250{transform:matrix(0.266591,0.004265,-0.003999,0.249968,0,0);-ms-transform:matrix(0.266591,0.004265,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.266591,0.004265,-0.003999,0.249968,0,0);}
.m89_c00250{transform:matrix(0.266707,0.005334,-0.004999,0.249950,0,0);-ms-transform:matrix(0.266707,0.005334,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.266707,0.005334,-0.004999,0.249950,0,0);}
.m123_c00250{transform:matrix(0.267330,0.005881,-0.005499,0.249940,0,0);-ms-transform:matrix(0.267330,0.005881,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.267330,0.005881,-0.005499,0.249940,0,0);}
.m99_c00250{transform:matrix(0.268332,0.005098,-0.004749,0.249955,0,0);-ms-transform:matrix(0.268332,0.005098,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.268332,0.005098,-0.004749,0.249955,0,0);}
.m5d_c00250{transform:matrix(0.268846,0.005108,-0.004749,0.249955,0,0);-ms-transform:matrix(0.268846,0.005108,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.268846,0.005108,-0.004749,0.249955,0,0);}
.m84_c00250{transform:matrix(0.268936,0.005379,-0.004999,0.249950,0,0);-ms-transform:matrix(0.268936,0.005379,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.268936,0.005379,-0.004999,0.249950,0,0);}
.me5_c00250{transform:matrix(0.269786,0.005396,-0.004999,0.249950,0,0);-ms-transform:matrix(0.269786,0.005396,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.269786,0.005396,-0.004999,0.249950,0,0);}
.m78_c00250{transform:matrix(0.272011,0.005440,-0.004999,0.249950,0,0);-ms-transform:matrix(0.272011,0.005440,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.272011,0.005440,-0.004999,0.249950,0,0);}
.m11e_c00250{transform:matrix(0.273069,0.006008,-0.005499,0.249940,0,0);-ms-transform:matrix(0.273069,0.006008,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.273069,0.006008,-0.005499,0.249940,0,0);}
.m82_c00250{transform:matrix(0.273190,0.005464,-0.004999,0.249950,0,0);-ms-transform:matrix(0.273190,0.005464,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.273190,0.005464,-0.004999,0.249950,0,0);}
.m124_c00250{transform:matrix(0.273694,0.006021,-0.005499,0.249940,0,0);-ms-transform:matrix(0.273694,0.006021,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.273694,0.006021,-0.005499,0.249940,0,0);}
.m36_c00250{transform:matrix(0.274235,0.004388,-0.003999,0.249968,0,0);-ms-transform:matrix(0.274235,0.004388,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.274235,0.004388,-0.003999,0.249968,0,0);}
.m126_c00250{transform:matrix(0.279412,0.006147,-0.005499,0.249940,0,0);-ms-transform:matrix(0.279412,0.006147,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.279412,0.006147,-0.005499,0.249940,0,0);}
.m62_c00250{transform:matrix(0.284259,0.005401,-0.004749,0.249955,0,0);-ms-transform:matrix(0.284259,0.005401,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.284259,0.005401,-0.004749,0.249955,0,0);}
.m75_c00250{transform:matrix(0.284454,0.004551,-0.003999,0.249968,0,0);-ms-transform:matrix(0.284454,0.004551,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.284454,0.004551,-0.003999,0.249968,0,0);}
.m15_c00250{transform:matrix(0.286308,0.005440,-0.004749,0.249955,0,0);-ms-transform:matrix(0.286308,0.005440,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.286308,0.005440,-0.004749,0.249955,0,0);}
.m69_c00250{transform:matrix(0.289563,0.005502,-0.004749,0.249955,0,0);-ms-transform:matrix(0.289563,0.005502,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.289563,0.005502,-0.004749,0.249955,0,0);}
.md8_c00250{transform:matrix(0.291412,0.005828,-0.004999,0.249950,0,0);-ms-transform:matrix(0.291412,0.005828,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.291412,0.005828,-0.004999,0.249950,0,0);}
.m6f_c00250{transform:matrix(0.292983,0.004688,-0.003999,0.249968,0,0);-ms-transform:matrix(0.292983,0.004688,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.292983,0.004688,-0.003999,0.249968,0,0);}
.m31_c00250{transform:matrix(0.294462,0.004711,-0.003999,0.249968,0,0);-ms-transform:matrix(0.294462,0.004711,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.294462,0.004711,-0.003999,0.249968,0,0);}
.m11c_c00250{transform:matrix(0.308935,0.006797,-0.005499,0.249940,0,0);-ms-transform:matrix(0.308935,0.006797,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.308935,0.006797,-0.005499,0.249940,0,0);}
.m1f_c00250{transform:matrix(0.309315,0.004949,-0.003999,0.249968,0,0);-ms-transform:matrix(0.309315,0.004949,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.309315,0.004949,-0.003999,0.249968,0,0);}
.m1c_c00250{transform:matrix(0.315568,0.005996,-0.004749,0.249955,0,0);-ms-transform:matrix(0.315568,0.005996,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.315568,0.005996,-0.004749,0.249955,0,0);}
.m7d_c00250{transform:matrix(0.325030,0.006501,-0.004999,0.249950,0,0);-ms-transform:matrix(0.325030,0.006501,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.325030,0.006501,-0.004999,0.249950,0,0);}
.m70_c00250{transform:matrix(0.332957,0.005327,-0.003999,0.249968,0,0);-ms-transform:matrix(0.332957,0.005327,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.332957,0.005327,-0.003999,0.249968,0,0);}
.m7e_c00250{transform:matrix(0.342641,0.006853,-0.004999,0.249950,0,0);-ms-transform:matrix(0.342641,0.006853,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.342641,0.006853,-0.004999,0.249950,0,0);}
.m6e_c00250{transform:matrix(0.378582,0.006057,-0.003999,0.249968,0,0);-ms-transform:matrix(0.378582,0.006057,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.378582,0.006057,-0.003999,0.249968,0,0);}
.m68_c00250{transform:matrix(0.394739,0.007500,-0.004749,0.249955,0,0);-ms-transform:matrix(0.394739,0.007500,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.394739,0.007500,-0.004749,0.249955,0,0);}
.m67_c00250{transform:matrix(0.416435,0.007912,-0.004749,0.249955,0,0);-ms-transform:matrix(0.416435,0.007912,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.416435,0.007912,-0.004749,0.249955,0,0);}
.m0_c00250{transform:matrix(0.423325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423325,0.000000,0.000000,0.250000,0,0);}
.m72_c00250{transform:matrix(0.467940,0.007487,-0.003999,0.249968,0,0);-ms-transform:matrix(0.467940,0.007487,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.467940,0.007487,-0.003999,0.249968,0,0);}
.m11b_c00250{transform:matrix(0.573207,0.010891,-0.004749,0.249955,0,0);-ms-transform:matrix(0.573207,0.010891,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.573207,0.010891,-0.004749,0.249955,0,0);}
.m119_c00250{transform:matrix(0.751549,0.014279,-0.004749,0.249955,0,0);-ms-transform:matrix(0.751549,0.014279,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.751549,0.014279,-0.004749,0.249955,0,0);}
.m11a_c00250{transform:matrix(1.832494,0.034817,-0.004749,0.249955,0,0);-ms-transform:matrix(1.832494,0.034817,-0.004749,0.249955,0,0);-webkit-transform:matrix(1.832494,0.034817,-0.004749,0.249955,0,0);}
.v0_c00250{vertical-align:0.000000px;}
.ls0_c00250{letter-spacing:0.000000px;}
.sc__c00250{text-shadow:none;}
.sc0_c00250{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__c00250{-webkit-text-stroke:0px transparent;}
.sc0_c00250{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00250{word-spacing:0.000000px;}
.fc0_c00250{color:transparent;}
.fse_c00250{font-size:24.004332px;}
.fs2_c00250{font-size:54.009746px;}
.fs4_c00250{font-size:72.009215px;}
.fs7_c00250{font-size:72.012995px;}
.fsf_c00250{font-size:72.017422px;}
.fs5_c00250{font-size:78.011270px;}
.fs1_c00250{font-size:78.014078px;}
.fs9_c00250{font-size:78.015598px;}
.fs10_c00250{font-size:78.018874px;}
.fs0_c00250{font-size:84.000000px;}
.fs3_c00250{font-size:84.010751px;}
.fs6_c00250{font-size:84.012137px;}
.fsa_c00250{font-size:84.015161px;}
.fsc_c00250{font-size:84.016798px;}
.fs8_c00250{font-size:90.011519px;}
.fsd_c00250{font-size:96.017326px;}
.fsb_c00250{font-size:108.019492px;}
.y0_c00250{bottom:0.000000px;}
.y12c_c00250{bottom:79.550049px;}
.y12d_c00250{bottom:79.550274px;}
.y12b_c00250{bottom:99.927594px;}
.y12a_c00250{bottom:100.651977px;}
.y129_c00250{bottom:103.047315px;}
.y128_c00250{bottom:104.758134px;}
.y127_c00250{bottom:107.419386px;}
.y126_c00250{bottom:108.173964px;}
.y125_c00250{bottom:108.887391px;}
.y124_c00250{bottom:110.086974px;}
.y123_c00250{bottom:112.000380px;}
.y122_c00250{bottom:112.974573px;}
.y121_c00250{bottom:114.216000px;}
.y120_c00250{bottom:136.812579px;}
.y11f_c00250{bottom:138.482772px;}
.y11e_c00250{bottom:139.607793px;}
.y11d_c00250{bottom:143.086197px;}
.y11c_c00250{bottom:143.706129px;}
.y11b_c00250{bottom:145.387230px;}
.y11a_c00250{bottom:145.785945px;}
.y119_c00250{bottom:147.268743px;}
.y118_c00250{bottom:148.710302px;}
.y117_c00250{bottom:151.260510px;}
.y116_c00250{bottom:153.127887px;}
.y115_c00250{bottom:155.410823px;}
.y114_c00250{bottom:155.796000px;}
.y113_c00250{bottom:176.701650px;}
.y112_c00250{bottom:178.107840px;}
.y111_c00250{bottom:179.025720px;}
.y110_c00250{bottom:179.949570px;}
.y10f_c00250{bottom:180.665910px;}
.y10e_c00250{bottom:182.015430px;}
.y10d_c00250{bottom:182.745360px;}
.y10c_c00250{bottom:185.236530px;}
.y10b_c00250{bottom:186.397890px;}
.y10a_c00250{bottom:188.248890px;}
.y109_c00250{bottom:188.974440px;}
.y108_c00250{bottom:209.617410px;}
.y107_c00250{bottom:210.297990px;}
.y106_c00250{bottom:210.978780px;}
.y105_c00250{bottom:212.507220px;}
.y104_c00250{bottom:213.813750px;}
.y103_c00250{bottom:214.715910px;}
.y102_c00250{bottom:216.687480px;}
.y101_c00250{bottom:218.210190px;}
.y100_c00250{bottom:218.896170px;}
.yff_c00250{bottom:220.203450px;}
.yfe_c00250{bottom:220.840080px;}
.yfd_c00250{bottom:238.415550px;}
.yfc_c00250{bottom:240.905010px;}
.yfb_c00250{bottom:241.530690px;}
.yfa_c00250{bottom:242.182800px;}
.yf9_c00250{bottom:244.071150px;}
.yf8_c00250{bottom:244.685820px;}
.yf7_c00250{bottom:245.924640px;}
.yf6_c00250{bottom:246.565380px;}
.yf5_c00250{bottom:249.063210px;}
.yf4_c00250{bottom:251.356980px;}
.yf3_c00250{bottom:271.358340px;}
.yf2_c00250{bottom:272.830470px;}
.yf1_c00250{bottom:274.302810px;}
.yf0_c00250{bottom:274.917480px;}
.yef_c00250{bottom:275.773710px;}
.yee_c00250{bottom:277.652100px;}
.yed_c00250{bottom:278.262780px;}
.yec_c00250{bottom:280.115760px;}
.yeb_c00250{bottom:280.783860px;}
.yea_c00250{bottom:282.235080px;}
.ye9_c00250{bottom:283.492650px;}
.ye8_c00250{bottom:303.206700px;}
.ye7_c00250{bottom:303.789450px;}
.ye6_c00250{bottom:305.273130px;}
.ye5_c00250{bottom:307.146360px;}
.ye4_c00250{bottom:307.706250px;}
.ye3_c00250{bottom:308.655870px;}
.ye2_c00250{bottom:309.381180px;}
.ye1_c00250{bottom:310.304400px;}
.ye0_c00250{bottom:310.901940px;}
.ydf_c00250{bottom:312.008160px;}
.yde_c00250{bottom:312.590730px;}
.ydd_c00250{bottom:313.109250px;}
.ydc_c00250{bottom:313.682730px;}
.ydb_c00250{bottom:314.072850px;}
.yda_c00250{bottom:314.817300px;}
.yd9_c00250{bottom:335.046450px;}
.yd8_c00250{bottom:335.916330px;}
.yd7_c00250{bottom:336.385170px;}
.yd6_c00250{bottom:337.255800px;}
.yd5_c00250{bottom:338.573040px;}
.yd4_c00250{bottom:339.226080px;}
.yd3_c00250{bottom:340.974690px;}
.yd2_c00250{bottom:343.597170px;}
.yd1_c00250{bottom:345.606000px;}
.yd0_c00250{bottom:370.276612px;}
.ycf_c00250{bottom:371.442420px;}
.yce_c00250{bottom:372.185910px;}
.ycd_c00250{bottom:372.769446px;}
.ycc_c00250{bottom:373.516053px;}
.ycb_c00250{bottom:374.082354px;}
.yca_c00250{bottom:376.318506px;}
.yc9_c00250{bottom:376.860760px;}
.yc8_c00250{bottom:377.980566px;}
.yc7_c00250{bottom:397.978234px;}
.yc6_c00250{bottom:398.629630px;}
.yc5_c00250{bottom:400.491678px;}
.yc4_c00250{bottom:401.107363px;}
.yc3_c00250{bottom:401.856999px;}
.yc2_c00250{bottom:403.211376px;}
.yc1_c00250{bottom:403.852512px;}
.yc0_c00250{bottom:404.883642px;}
.ybf_c00250{bottom:406.110282px;}
.ybe_c00250{bottom:406.751218px;}
.ybd_c00250{bottom:407.602171px;}
.ybc_c00250{bottom:408.644844px;}
.ybb_c00250{bottom:409.464532px;}
.yba_c00250{bottom:410.116983px;}
.yb9_c00250{bottom:430.640085px;}
.yb8_c00250{bottom:432.512677px;}
.yb7_c00250{bottom:433.143154px;}
.yb6_c00250{bottom:433.743450px;}
.yb5_c00250{bottom:435.012868px;}
.yb4_c00250{bottom:435.653520px;}
.yb3_c00250{bottom:436.904043px;}
.yb2_c00250{bottom:438.972915px;}
.yb1_c00250{bottom:440.861182px;}
.yb0_c00250{bottom:442.522903px;}
.yaf_c00250{bottom:461.919292px;}
.yae_c00250{bottom:462.596709px;}
.yad_c00250{bottom:464.240646px;}
.yac_c00250{bottom:465.100576px;}
.yab_c00250{bottom:466.552481px;}
.yaa_c00250{bottom:467.999169px;}
.ya9_c00250{bottom:468.651049px;}
.ya8_c00250{bottom:470.302909px;}
.ya7_c00250{bottom:471.149986px;}
.ya6_c00250{bottom:472.596589px;}
.ya5_c00250{bottom:473.448511px;}
.ya4_c00250{bottom:474.682618px;}
.ya3_c00250{bottom:494.982994px;}
.ya2_c00250{bottom:497.065005px;}
.ya1_c00250{bottom:497.693743px;}
.ya0_c00250{bottom:498.750324px;}
.y9f_c00250{bottom:499.576396px;}
.y9e_c00250{bottom:500.603394px;}
.y9d_c00250{bottom:501.265421px;}
.y9c_c00250{bottom:502.507051px;}
.y9b_c00250{bottom:503.143143px;}
.y9a_c00250{bottom:503.738309px;}
.y99_c00250{bottom:504.477000px;}
.y98_c00250{bottom:528.562500px;}
.y97_c00250{bottom:529.416300px;}
.y96_c00250{bottom:529.890330px;}
.y95_c00250{bottom:532.062750px;}
.y94_c00250{bottom:532.743120px;}
.y93_c00250{bottom:534.303720px;}
.y92_c00250{bottom:535.140990px;}
.y91_c00250{bottom:535.832370px;}
.y90_c00250{bottom:537.566280px;}
.y8f_c00250{bottom:555.865410px;}
.y8e_c00250{bottom:556.711770px;}
.y8d_c00250{bottom:557.942310px;}
.y8c_c00250{bottom:558.799350px;}
.y8b_c00250{bottom:559.420770px;}
.y8a_c00250{bottom:560.045730px;}
.y89_c00250{bottom:562.997700px;}
.y88_c00250{bottom:564.223530px;}
.y87_c00250{bottom:564.852960px;}
.y86_c00250{bottom:566.330400px;}
.y85_c00250{bottom:567.777960px;}
.y84_c00250{bottom:568.623030px;}
.y83_c00250{bottom:587.673480px;}
.y82_c00250{bottom:588.356760px;}
.y81_c00250{bottom:589.439460px;}
.y80_c00250{bottom:590.083230px;}
.y7f_c00250{bottom:590.546460px;}
.y7e_c00250{bottom:590.937870px;}
.y7d_c00250{bottom:592.518660px;}
.y7c_c00250{bottom:593.533020px;}
.y7b_c00250{bottom:594.644430px;}
.y7a_c00250{bottom:595.504380px;}
.y79_c00250{bottom:597.335910px;}
.y78_c00250{bottom:598.743960px;}
.y77_c00250{bottom:599.351760px;}
.y76_c00250{bottom:599.673000px;}
.y75_c00250{bottom:619.411344px;}
.y74_c00250{bottom:619.760424px;}
.y73_c00250{bottom:620.646120px;}
.y72_c00250{bottom:621.199608px;}
.y71_c00250{bottom:621.505008px;}
.y70_c00250{bottom:621.899088px;}
.y6f_c00250{bottom:622.987872px;}
.y6e_c00250{bottom:624.136848px;}
.y6d_c00250{bottom:624.816864px;}
.y6c_c00250{bottom:626.082120px;}
.y6b_c00250{bottom:627.309336px;}
.y6a_c00250{bottom:628.290000px;}
.y69_c00250{bottom:683.951304px;}
.y68_c00250{bottom:685.303629px;}
.y67_c00250{bottom:686.071932px;}
.y66_c00250{bottom:686.424762px;}
.y65_c00250{bottom:687.077526px;}
.y64_c00250{bottom:688.313742px;}
.y63_c00250{bottom:689.134485px;}
.y62_c00250{bottom:690.828553px;}
.y61_c00250{bottom:691.844008px;}
.y60_c00250{bottom:692.489306px;}
.y5f_c00250{bottom:693.330768px;}
.y5e_c00250{bottom:693.961843px;}
.y5d_c00250{bottom:695.647875px;}
.y5c_c00250{bottom:695.797500px;}
.y5b_c00250{bottom:715.756407px;}
.y5a_c00250{bottom:716.338929px;}
.y59_c00250{bottom:717.110024px;}
.y58_c00250{bottom:717.444354px;}
.y57_c00250{bottom:718.744395px;}
.y56_c00250{bottom:719.478846px;}
.y55_c00250{bottom:720.062005px;}
.y54_c00250{bottom:720.984697px;}
.y53_c00250{bottom:722.301925px;}
.y52_c00250{bottom:723.982248px;}
.y51_c00250{bottom:725.295804px;}
.y50_c00250{bottom:726.025359px;}
.y4f_c00250{bottom:746.988186px;}
.y4e_c00250{bottom:747.520419px;}
.y4d_c00250{bottom:748.584809px;}
.y4c_c00250{bottom:749.095081px;}
.y4b_c00250{bottom:749.624382px;}
.y4a_c00250{bottom:751.750488px;}
.y49_c00250{bottom:753.300798px;}
.y48_c00250{bottom:753.840885px;}
.y47_c00250{bottom:755.948193px;}
.y46_c00250{bottom:757.008630px;}
.y45_c00250{bottom:757.889668px;}
.y44_c00250{bottom:779.272886px;}
.y43_c00250{bottom:780.205701px;}
.y42_c00250{bottom:780.779604px;}
.y41_c00250{bottom:781.706886px;}
.y40_c00250{bottom:782.262582px;}
.y3f_c00250{bottom:783.772463px;}
.y3e_c00250{bottom:785.080893px;}
.y3d_c00250{bottom:785.809963px;}
.y3c_c00250{bottom:786.745813px;}
.y3b_c00250{bottom:787.922689px;}
.y3a_c00250{bottom:788.409000px;}
.y39_c00250{bottom:842.171880px;}
.y38_c00250{bottom:842.860548px;}
.y37_c00250{bottom:843.329712px;}
.y36_c00250{bottom:845.480796px;}
.y35_c00250{bottom:846.025680px;}
.y34_c00250{bottom:846.750024px;}
.y33_c00250{bottom:847.447260px;}
.y32_c00250{bottom:848.877156px;}
.y31_c00250{bottom:873.599784px;}
.y30_c00250{bottom:874.067448px;}
.y2f_c00250{bottom:875.706576px;}
.y2e_c00250{bottom:877.778424px;}
.y2d_c00250{bottom:878.582844px;}
.y2c_c00250{bottom:879.365772px;}
.y2b_c00250{bottom:880.442832px;}
.y2a_c00250{bottom:880.915596px;}
.y29_c00250{bottom:882.753252px;}
.y28_c00250{bottom:885.464124px;}
.y27_c00250{bottom:885.868188px;}
.y26_c00250{bottom:906.692592px;}
.y25_c00250{bottom:907.392216px;}
.y24_c00250{bottom:908.442192px;}
.y23_c00250{bottom:909.504696px;}
.y22_c00250{bottom:909.854304px;}
.y21_c00250{bottom:910.706280px;}
.y20_c00250{bottom:911.262720px;}
.y1f_c00250{bottom:912.484824px;}
.y1e_c00250{bottom:912.835776px;}
.y1d_c00250{bottom:914.223000px;}
.y1c_c00250{bottom:947.156781px;}
.y1b_c00250{bottom:967.348113px;}
.y1a_c00250{bottom:967.955119px;}
.y19_c00250{bottom:969.130665px;}
.y18_c00250{bottom:969.942803px;}
.y17_c00250{bottom:971.133624px;}
.y16_c00250{bottom:971.712509px;}
.y15_c00250{bottom:972.704640px;}
.y14_c00250{bottom:973.889961px;}
.y13_c00250{bottom:974.471535px;}
.y12_c00250{bottom:975.474582px;}
.y11_c00250{bottom:976.445955px;}
.y10_c00250{bottom:977.836407px;}
.yf_c00250{bottom:978.249615px;}
.ye_c00250{bottom:979.019209px;}
.yd_c00250{bottom:998.014326px;}
.yc_c00250{bottom:998.675184px;}
.yb_c00250{bottom:1000.564620px;}
.ya_c00250{bottom:1001.399984px;}
.y9_c00250{bottom:1003.284204px;}
.y8_c00250{bottom:1003.915080px;}
.y7_c00250{bottom:1004.535126px;}
.y6_c00250{bottom:1005.998373px;}
.y5_c00250{bottom:1006.428239px;}
.y4_c00250{bottom:1008.086483px;}
.y3_c00250{bottom:1009.147623px;}
.y2_c00250{bottom:1010.616000px;}
.y1_c00250{bottom:1063.252500px;}
.h10_c00250{height:24.004332px;}
.h4_c00250{height:54.009746px;}
.h6_c00250{height:72.009215px;}
.h9_c00250{height:72.012995px;}
.h11_c00250{height:72.017422px;}
.h7_c00250{height:78.011270px;}
.h3_c00250{height:78.014078px;}
.hb_c00250{height:78.015598px;}
.h12_c00250{height:78.018874px;}
.h2_c00250{height:84.000000px;}
.h5_c00250{height:84.010751px;}
.h8_c00250{height:84.012137px;}
.hc_c00250{height:84.015161px;}
.he_c00250{height:84.016798px;}
.ha_c00250{height:90.011519px;}
.hf_c00250{height:96.017326px;}
.hd_c00250{height:108.019492px;}
.h0_c00250{height:1129.350000px;}
.h1_c00250{height:1129.500000px;}
.w0_c00250{width:915.000000px;}
.x0_c00250{left:0.000000px;}
.xc7_c00250{left:138.661247px;}
.xcd_c00250{left:139.861101px;}
.x4f_c00250{left:141.069000px;}
.xa9_c00250{left:142.872240px;}
.x98_c00250{left:143.882017px;}
.x8b_c00250{left:146.154642px;}
.x6f_c00250{left:147.483930px;}
.x50_c00250{left:148.944000px;}
.x3c_c00250{left:150.940098px;}
.x3_c00250{left:153.883500px;}
.xf_c00250{left:154.983275px;}
.x65_c00250{left:164.538000px;}
.xbd_c00250{left:174.360810px;}
.x99_c00250{left:178.221517px;}
.x66_c00250{left:180.600000px;}
.xaa_c00250{left:186.622350px;}
.x70_c00250{left:191.988330px;}
.x45_c00250{left:193.566978px;}
.xca_c00250{left:196.531500px;}
.x10_c00250{left:197.699573px;}
.xc8_c00250{left:204.822755px;}
.x3d_c00250{left:206.031542px;}
.xb2_c00250{left:208.433070px;}
.xab_c00250{left:209.579730px;}
.x67_c00250{left:210.990000px;}
.x11_c00250{left:220.632000px;}
.x4_c00250{left:231.166500px;}
.x7b_c00250{left:233.820900px;}
.x51_c00250{left:237.682500px;}
.xbe_c00250{left:239.724810px;}
.xcb_c00250{left:240.813000px;}
.x9e_c00250{left:242.458651px;}
.x5b_c00250{left:244.329000px;}
.x81_c00250{left:251.370000px;}
.xa2_c00250{left:253.497000px;}
.x8c_c00250{left:255.945642px;}
.x31_c00250{left:262.471500px;}
.x1c_c00250{left:264.097500px;}
.x71_c00250{left:268.192860px;}
.x46_c00250{left:270.834978px;}
.x3e_c00250{left:272.293664px;}
.xac_c00250{left:273.783570px;}
.x9a_c00250{left:276.240517px;}
.x68_c00250{left:281.392500px;}
.xb3_c00250{left:284.820600px;}
.x5_c00250{left:287.016000px;}
.x32_c00250{left:291.078000px;}
.x12_c00250{left:297.841454px;}
.xc9_c00250{left:303.073488px;}
.x5c_c00250{left:305.620500px;}
.xad_c00250{left:308.089140px;}
.x26_c00250{left:310.925424px;}
.x52_c00250{left:315.184500px;}
.xc1_c00250{left:318.565410px;}
.xb4_c00250{left:319.951290px;}
.x82_c00250{left:321.573000px;}
.x27_c00250{left:327.739764px;}
.x8d_c00250{left:332.082642px;}
.x72_c00250{left:345.966420px;}
.x53_c00250{left:349.147500px;}
.x1d_c00250{left:350.799000px;}
.x13_c00250{left:351.809480px;}
.xa3_c00250{left:353.938500px;}
.x83_c00250{left:355.051500px;}
.x33_c00250{left:360.306000px;}
.x47_c00250{left:369.677478px;}
.x1e_c00250{left:372.733500px;}
.x6_c00250{left:374.292000px;}
.x8e_c00250{left:376.665642px;}
.x73_c00250{left:379.088580px;}
.x5d_c00250{left:382.321500px;}
.x7c_c00250{left:388.283400px;}
.xb7_c00250{left:394.454340px;}
.x7_c00250{left:396.916500px;}
.x54_c00250{left:402.592500px;}
.x3f_c00250{left:404.019908px;}
.x14_c00250{left:407.523534px;}
.x34_c00250{left:415.356000px;}
.xb5_c00250{left:417.477240px;}
.x9b_c00250{left:419.321017px;}
.x84_c00250{left:420.400500px;}
.x7d_c00250{left:422.301900px;}
.xb8_c00250{left:428.142000px;}
.x1_c00250{left:431.460000px;}
.x40_c00250{left:437.731469px;}
.x15_c00250{left:439.870161px;}
.x94_c00250{left:441.258102px;}
.x74_c00250{left:443.606370px;}
.x48_c00250{left:447.161478px;}
.x1f_c00250{left:449.115000px;}
.x9f_c00250{left:451.206574px;}
.x85_c00250{left:455.244000px;}
.x35_c00250{left:458.242500px;}
.x5e_c00250{left:461.400000px;}
.x8f_c00250{left:463.605642px;}
.x69_c00250{left:471.537000px;}
.x8_c00250{left:473.929500px;}
.x2_c00250{left:474.930000px;}
.x20_c00250{left:483.892500px;}
.xa0_c00250{left:485.551885px;}
.x55_c00250{left:491.754000px;}
.xb9_c00250{left:493.309290px;}
.x90_c00250{left:497.915142px;}
.x49_c00250{left:501.437478px;}
.x5f_c00250{left:503.901000px;}
.xae_c00250{left:505.265460px;}
.x9_c00250{left:506.563500px;}
.x86_c00250{left:509.296500px;}
.x28_c00250{left:517.311024px;}
.x6a_c00250{left:522.255000px;}
.xba_c00250{left:525.693450px;}
.xa1_c00250{left:529.263538px;}
.x7e_c00250{left:530.922900px;}
.x36_c00250{left:535.209000px;}
.x21_c00250{left:537.141000px;}
.xa_c00250{left:539.767500px;}
.x95_c00250{left:540.793602px;}
.x2d_c00250{left:549.429888px;}
.x87_c00250{left:552.774000px;}
.x7f_c00250{left:554.624400px;}
.x22_c00250{left:558.991500px;}
.x16_c00250{left:560.869970px;}
.xc2_c00250{left:570.308370px;}
.xa4_c00250{left:572.493000px;}
.x91_c00250{left:574.056642px;}
.x60_c00250{left:575.712000px;}
.x4a_c00250{left:578.943978px;}
.x29_c00250{left:581.916768px;}
.x17_c00250{left:592.996068px;}
.xaf_c00250{left:594.096300px;}
.x80_c00250{left:597.314400px;}
.x75_c00250{left:599.007990px;}
.x56_c00250{left:600.015000px;}
.x6b_c00250{left:601.294500px;}
.xa5_c00250{left:605.145000px;}
.x88_c00250{left:608.383500px;}
.x2a_c00250{left:614.533092px;}
.x9c_c00250{left:618.072518px;}
.x6c_c00250{left:620.865000px;}
.x37_c00250{left:624.025500px;}
.x23_c00250{left:625.398000px;}
.x76_c00250{left:631.906650px;}
.x57_c00250{left:634.371000px;}
.xbf_c00250{left:635.594310px;}
.xb_c00250{left:638.937000px;}
.x89_c00250{left:641.475000px;}
.x61_c00250{left:643.761000px;}
.x2b_c00250{left:648.023796px;}
.x92_c00250{left:650.472642px;}
.x58_c00250{left:652.941000px;}
.x4b_c00250{left:655.416978px;}
.x38_c00250{left:656.713500px;}
.xc3_c00250{left:658.043130px;}
.x18_c00250{left:659.145822px;}
.x77_c00250{left:664.628310px;}
.x41_c00250{left:667.583396px;}
.xc0_c00250{left:669.633810px;}
.xa6_c00250{left:671.007000px;}
.x96_c00250{left:672.382602px;}
.x4c_c00250{left:675.083478px;}
.x6d_c00250{left:676.215000px;}
.xc_c00250{left:682.903500px;}
.x62_c00250{left:687.478500px;}
.x24_c00250{left:691.021500px;}
.xbb_c00250{left:692.328780px;}
.x59_c00250{left:693.378000px;}
.x93_c00250{left:695.732142px;}
.x42_c00250{left:700.660457px;}
.x19_c00250{left:704.259177px;}
.x78_c00250{left:709.731210px;}
.x39_c00250{left:711.259500px;}
.xa7_c00250{left:714.538500px;}
.x4d_c00250{left:720.441978px;}
.x63_c00250{left:722.071500px;}
.xc4_c00250{left:724.976280px;}
.x6e_c00250{left:730.350000px;}
.x43_c00250{left:732.529992px;}
.x25_c00250{left:734.748000px;}
.x2e_c00250{left:736.539912px;}
.xa8_c00250{left:737.980500px;}
.x3a_c00250{left:745.018500px;}
.x9d_c00250{left:748.479517px;}
.x8a_c00250{left:751.054500px;}
.x4e_c00250{left:754.707978px;}
.xcc_c00250{left:756.649500px;}
.x2f_c00250{left:757.891872px;}
.x5a_c00250{left:764.553000px;}
.x1a_c00250{left:769.604931px;}
.x97_c00250{left:770.940102px;}
.x79_c00250{left:774.484500px;}
.x64_c00250{left:777.427500px;}
.xc5_c00250{left:779.926500px;}
.xb6_c00250{left:780.931530px;}
.xd_c00250{left:782.347500px;}
.x30_c00250{left:789.211872px;}
.xb0_c00250{left:791.503620px;}
.x3b_c00250{left:799.890000px;}
.x1b_c00250{left:803.369086px;}
.xc6_c00250{left:812.554500px;}
.xe_c00250{left:817.129500px;}
.x7a_c00250{left:819.053400px;}
.x2c_c00250{left:822.166524px;}
.xbc_c00250{left:823.329390px;}
.xb1_c00250{left:825.818190px;}
.x44_c00250{left:832.274175px;}
@media print{
.v0_c00250{vertical-align:0.000000pt;}
.ls0_c00250{letter-spacing:0.000000pt;}
.ws0_c00250{word-spacing:0.000000pt;}
.fse_c00250{font-size:21.337184pt;}
.fs2_c00250{font-size:48.008663pt;}
.fs4_c00250{font-size:64.008191pt;}
.fs7_c00250{font-size:64.011551pt;}
.fsf_c00250{font-size:64.015486pt;}
.fs5_c00250{font-size:69.343351pt;}
.fs1_c00250{font-size:69.345847pt;}
.fs9_c00250{font-size:69.347199pt;}
.fs10_c00250{font-size:69.350110pt;}
.fs0_c00250{font-size:74.666667pt;}
.fs3_c00250{font-size:74.676223pt;}
.fs6_c00250{font-size:74.677455pt;}
.fsa_c00250{font-size:74.680143pt;}
.fsc_c00250{font-size:74.681599pt;}
.fs8_c00250{font-size:80.010239pt;}
.fsd_c00250{font-size:85.348735pt;}
.fsb_c00250{font-size:96.017326pt;}
.y0_c00250{bottom:0.000000pt;}
.y12c_c00250{bottom:70.711155pt;}
.y12d_c00250{bottom:70.711355pt;}
.y12b_c00250{bottom:88.824528pt;}
.y12a_c00250{bottom:89.468424pt;}
.y129_c00250{bottom:91.597613pt;}
.y128_c00250{bottom:93.118341pt;}
.y127_c00250{bottom:95.483899pt;}
.y126_c00250{bottom:96.154635pt;}
.y125_c00250{bottom:96.788792pt;}
.y124_c00250{bottom:97.855088pt;}
.y123_c00250{bottom:99.555893pt;}
.y122_c00250{bottom:100.421843pt;}
.y121_c00250{bottom:101.525333pt;}
.y120_c00250{bottom:121.611181pt;}
.y11f_c00250{bottom:123.095797pt;}
.y11e_c00250{bottom:124.095816pt;}
.y11d_c00250{bottom:127.187731pt;}
.y11c_c00250{bottom:127.738781pt;}
.y11b_c00250{bottom:129.233093pt;}
.y11a_c00250{bottom:129.587507pt;}
.y119_c00250{bottom:130.905549pt;}
.y118_c00250{bottom:132.186935pt;}
.y117_c00250{bottom:134.453787pt;}
.y116_c00250{bottom:136.113677pt;}
.y115_c00250{bottom:138.142953pt;}
.y114_c00250{bottom:138.485333pt;}
.y113_c00250{bottom:157.068133pt;}
.y112_c00250{bottom:158.318080pt;}
.y111_c00250{bottom:159.133973pt;}
.y110_c00250{bottom:159.955173pt;}
.y10f_c00250{bottom:160.591920pt;}
.y10e_c00250{bottom:161.791493pt;}
.y10d_c00250{bottom:162.440320pt;}
.y10c_c00250{bottom:164.654693pt;}
.y10b_c00250{bottom:165.687013pt;}
.y10a_c00250{bottom:167.332347pt;}
.y109_c00250{bottom:167.977280pt;}
.y108_c00250{bottom:186.326587pt;}
.y107_c00250{bottom:186.931547pt;}
.y106_c00250{bottom:187.536693pt;}
.y105_c00250{bottom:188.895307pt;}
.y104_c00250{bottom:190.056667pt;}
.y103_c00250{bottom:190.858587pt;}
.y102_c00250{bottom:192.611093pt;}
.y101_c00250{bottom:193.964613pt;}
.y100_c00250{bottom:194.574373pt;}
.yff_c00250{bottom:195.736400pt;}
.yfe_c00250{bottom:196.302293pt;}
.yfd_c00250{bottom:211.924933pt;}
.yfc_c00250{bottom:214.137787pt;}
.yfb_c00250{bottom:214.693947pt;}
.yfa_c00250{bottom:215.273600pt;}
.yf9_c00250{bottom:216.952133pt;}
.yf8_c00250{bottom:217.498507pt;}
.yf7_c00250{bottom:218.599680pt;}
.yf6_c00250{bottom:219.169227pt;}
.yf5_c00250{bottom:221.389520pt;}
.yf4_c00250{bottom:223.428427pt;}
.yf3_c00250{bottom:241.207413pt;}
.yf2_c00250{bottom:242.515973pt;}
.yf1_c00250{bottom:243.824720pt;}
.yf0_c00250{bottom:244.371093pt;}
.yef_c00250{bottom:245.132187pt;}
.yee_c00250{bottom:246.801867pt;}
.yed_c00250{bottom:247.344693pt;}
.yec_c00250{bottom:248.991787pt;}
.yeb_c00250{bottom:249.585653pt;}
.yea_c00250{bottom:250.875627pt;}
.ye9_c00250{bottom:251.993467pt;}
.ye8_c00250{bottom:269.517067pt;}
.ye7_c00250{bottom:270.035067pt;}
.ye6_c00250{bottom:271.353893pt;}
.ye5_c00250{bottom:273.018987pt;}
.ye4_c00250{bottom:273.516667pt;}
.ye3_c00250{bottom:274.360773pt;}
.ye2_c00250{bottom:275.005493pt;}
.ye1_c00250{bottom:275.826133pt;}
.ye0_c00250{bottom:276.357280pt;}
.ydf_c00250{bottom:277.340587pt;}
.yde_c00250{bottom:277.858427pt;}
.ydd_c00250{bottom:278.319333pt;}
.ydc_c00250{bottom:278.829093pt;}
.ydb_c00250{bottom:279.175867pt;}
.yda_c00250{bottom:279.837600pt;}
.yd9_c00250{bottom:297.819067pt;}
.yd8_c00250{bottom:298.592293pt;}
.yd7_c00250{bottom:299.009040pt;}
.yd6_c00250{bottom:299.782933pt;}
.yd5_c00250{bottom:300.953813pt;}
.yd4_c00250{bottom:301.534293pt;}
.yd3_c00250{bottom:303.088613pt;}
.yd2_c00250{bottom:305.419707pt;}
.yd1_c00250{bottom:307.205333pt;}
.yd0_c00250{bottom:329.134767pt;}
.ycf_c00250{bottom:330.171040pt;}
.yce_c00250{bottom:330.831920pt;}
.ycd_c00250{bottom:331.350619pt;}
.ycc_c00250{bottom:332.014269pt;}
.ycb_c00250{bottom:332.517648pt;}
.yca_c00250{bottom:334.505339pt;}
.yc9_c00250{bottom:334.987343pt;}
.yc8_c00250{bottom:335.982725pt;}
.yc7_c00250{bottom:353.758431pt;}
.yc6_c00250{bottom:354.337449pt;}
.yc5_c00250{bottom:355.992603pt;}
.yc4_c00250{bottom:356.539879pt;}
.yc3_c00250{bottom:357.206221pt;}
.yc2_c00250{bottom:358.410112pt;}
.yc1_c00250{bottom:358.980011pt;}
.yc0_c00250{bottom:359.896571pt;}
.ybf_c00250{bottom:360.986917pt;}
.ybe_c00250{bottom:361.556639pt;}
.ybd_c00250{bottom:362.313041pt;}
.ybc_c00250{bottom:363.239861pt;}
.ybb_c00250{bottom:363.968473pt;}
.yba_c00250{bottom:364.548429pt;}
.yb9_c00250{bottom:382.791187pt;}
.yb8_c00250{bottom:384.455713pt;}
.yb7_c00250{bottom:385.016137pt;}
.yb6_c00250{bottom:385.549733pt;}
.yb5_c00250{bottom:386.678105pt;}
.yb4_c00250{bottom:387.247573pt;}
.yb3_c00250{bottom:388.359149pt;}
.yb2_c00250{bottom:390.198147pt;}
.yb1_c00250{bottom:391.876607pt;}
.yb0_c00250{bottom:393.353692pt;}
.yaf_c00250{bottom:410.594927pt;}
.yae_c00250{bottom:411.197075pt;}
.yad_c00250{bottom:412.658352pt;}
.yac_c00250{bottom:413.422735pt;}
.yab_c00250{bottom:414.713316pt;}
.yaa_c00250{bottom:415.999261pt;}
.ya9_c00250{bottom:416.578711pt;}
.ya8_c00250{bottom:418.047031pt;}
.ya7_c00250{bottom:418.799988pt;}
.ya6_c00250{bottom:420.085857pt;}
.ya5_c00250{bottom:420.843121pt;}
.ya4_c00250{bottom:421.940105pt;}
.ya3_c00250{bottom:439.984884pt;}
.ya2_c00250{bottom:441.835560pt;}
.ya1_c00250{bottom:442.394439pt;}
.ya0_c00250{bottom:443.333621pt;}
.y9f_c00250{bottom:444.067908pt;}
.y9e_c00250{bottom:444.980795pt;}
.y9d_c00250{bottom:445.569263pt;}
.y9c_c00250{bottom:446.672935pt;}
.y9b_c00250{bottom:447.238349pt;}
.y9a_c00250{bottom:447.767385pt;}
.y99_c00250{bottom:448.424000pt;}
.y98_c00250{bottom:469.833333pt;}
.y97_c00250{bottom:470.592267pt;}
.y96_c00250{bottom:471.013627pt;}
.y95_c00250{bottom:472.944667pt;}
.y94_c00250{bottom:473.549440pt;}
.y93_c00250{bottom:474.936640pt;}
.y92_c00250{bottom:475.680880pt;}
.y91_c00250{bottom:476.295440pt;}
.y90_c00250{bottom:477.836693pt;}
.y8f_c00250{bottom:494.102587pt;}
.y8e_c00250{bottom:494.854907pt;}
.y8d_c00250{bottom:495.948720pt;}
.y8c_c00250{bottom:496.710533pt;}
.y8b_c00250{bottom:497.262907pt;}
.y8a_c00250{bottom:497.818427pt;}
.y89_c00250{bottom:500.442400pt;}
.y88_c00250{bottom:501.532027pt;}
.y87_c00250{bottom:502.091520pt;}
.y86_c00250{bottom:503.404800pt;}
.y85_c00250{bottom:504.691520pt;}
.y84_c00250{bottom:505.442693pt;}
.y83_c00250{bottom:522.376427pt;}
.y82_c00250{bottom:522.983787pt;}
.y81_c00250{bottom:523.946187pt;}
.y80_c00250{bottom:524.518427pt;}
.y7f_c00250{bottom:524.930187pt;}
.y7e_c00250{bottom:525.278107pt;}
.y7d_c00250{bottom:526.683253pt;}
.y7c_c00250{bottom:527.584907pt;}
.y7b_c00250{bottom:528.572827pt;}
.y7a_c00250{bottom:529.337227pt;}
.y79_c00250{bottom:530.965253pt;}
.y78_c00250{bottom:532.216853pt;}
.y77_c00250{bottom:532.757120pt;}
.y76_c00250{bottom:533.042667pt;}
.y75_c00250{bottom:550.587861pt;}
.y74_c00250{bottom:550.898155pt;}
.y73_c00250{bottom:551.685440pt;}
.y72_c00250{bottom:552.177429pt;}
.y71_c00250{bottom:552.448896pt;}
.y70_c00250{bottom:552.799189pt;}
.y6f_c00250{bottom:553.766997pt;}
.y6e_c00250{bottom:554.788309pt;}
.y6d_c00250{bottom:555.392768pt;}
.y6c_c00250{bottom:556.517440pt;}
.y6b_c00250{bottom:557.608299pt;}
.y6a_c00250{bottom:558.480000pt;}
.y69_c00250{bottom:607.956715pt;}
.y68_c00250{bottom:609.158781pt;}
.y67_c00250{bottom:609.841717pt;}
.y66_c00250{bottom:610.155344pt;}
.y65_c00250{bottom:610.735579pt;}
.y64_c00250{bottom:611.834437pt;}
.y63_c00250{bottom:612.563987pt;}
.y62_c00250{bottom:614.069825pt;}
.y61_c00250{bottom:614.972452pt;}
.y60_c00250{bottom:615.546049pt;}
.y5f_c00250{bottom:616.294016pt;}
.y5e_c00250{bottom:616.854972pt;}
.y5d_c00250{bottom:618.353667pt;}
.y5c_c00250{bottom:618.486667pt;}
.y5b_c00250{bottom:636.227917pt;}
.y5a_c00250{bottom:636.745715pt;}
.y59_c00250{bottom:637.431132pt;}
.y58_c00250{bottom:637.728315pt;}
.y57_c00250{bottom:638.883907pt;}
.y56_c00250{bottom:639.536752pt;}
.y55_c00250{bottom:640.055116pt;}
.y54_c00250{bottom:640.875287pt;}
.y53_c00250{bottom:642.046156pt;}
.y52_c00250{bottom:643.539776pt;}
.y51_c00250{bottom:644.707381pt;}
.y50_c00250{bottom:645.355875pt;}
.y4f_c00250{bottom:663.989499pt;}
.y4e_c00250{bottom:664.462595pt;}
.y4d_c00250{bottom:665.408719pt;}
.y4c_c00250{bottom:665.862295pt;}
.y4b_c00250{bottom:666.332784pt;}
.y4a_c00250{bottom:668.222656pt;}
.y49_c00250{bottom:669.600709pt;}
.y48_c00250{bottom:670.080787pt;}
.y47_c00250{bottom:671.953949pt;}
.y46_c00250{bottom:672.896560pt;}
.y45_c00250{bottom:673.679705pt;}
.y44_c00250{bottom:692.687009pt;}
.y43_c00250{bottom:693.516179pt;}
.y42_c00250{bottom:694.026315pt;}
.y41_c00250{bottom:694.850565pt;}
.y40_c00250{bottom:695.344517pt;}
.y3f_c00250{bottom:696.686633pt;}
.y3e_c00250{bottom:697.849683pt;}
.y3d_c00250{bottom:698.497745pt;}
.y3c_c00250{bottom:699.329612pt;}
.y3b_c00250{bottom:700.375724pt;}
.y3a_c00250{bottom:700.808000pt;}
.y39_c00250{bottom:748.597227pt;}
.y38_c00250{bottom:749.209376pt;}
.y37_c00250{bottom:749.626411pt;}
.y36_c00250{bottom:751.538485pt;}
.y35_c00250{bottom:752.022827pt;}
.y34_c00250{bottom:752.666688pt;}
.y33_c00250{bottom:753.286453pt;}
.y32_c00250{bottom:754.557472pt;}
.y31_c00250{bottom:776.533141pt;}
.y30_c00250{bottom:776.948843pt;}
.y2f_c00250{bottom:778.405845pt;}
.y2e_c00250{bottom:780.247488pt;}
.y2d_c00250{bottom:780.962528pt;}
.y2c_c00250{bottom:781.658464pt;}
.y2b_c00250{bottom:782.615851pt;}
.y2a_c00250{bottom:783.036085pt;}
.y29_c00250{bottom:784.669557pt;}
.y28_c00250{bottom:787.079221pt;}
.y27_c00250{bottom:787.438389pt;}
.y26_c00250{bottom:805.948971pt;}
.y25_c00250{bottom:806.570859pt;}
.y24_c00250{bottom:807.504171pt;}
.y23_c00250{bottom:808.448619pt;}
.y22_c00250{bottom:808.759381pt;}
.y21_c00250{bottom:809.516693pt;}
.y20_c00250{bottom:810.011307pt;}
.y1f_c00250{bottom:811.097621pt;}
.y1e_c00250{bottom:811.409579pt;}
.y1d_c00250{bottom:812.642667pt;}
.y1c_c00250{bottom:841.917139pt;}
.y1b_c00250{bottom:859.864989pt;}
.y1a_c00250{bottom:860.404551pt;}
.y19_c00250{bottom:861.449480pt;}
.y18_c00250{bottom:862.171380pt;}
.y17_c00250{bottom:863.229888pt;}
.y16_c00250{bottom:863.744452pt;}
.y15_c00250{bottom:864.626347pt;}
.y14_c00250{bottom:865.679965pt;}
.y13_c00250{bottom:866.196920pt;}
.y12_c00250{bottom:867.088517pt;}
.y11_c00250{bottom:867.951960pt;}
.y10_c00250{bottom:869.187917pt;}
.yf_c00250{bottom:869.555213pt;}
.ye_c00250{bottom:870.239297pt;}
.yd_c00250{bottom:887.123845pt;}
.yc_c00250{bottom:887.711275pt;}
.yb_c00250{bottom:889.390773pt;}
.ya_c00250{bottom:890.133319pt;}
.y9_c00250{bottom:891.808181pt;}
.y8_c00250{bottom:892.368960pt;}
.y7_c00250{bottom:892.920112pt;}
.y6_c00250{bottom:894.220776pt;}
.y5_c00250{bottom:894.602879pt;}
.y4_c00250{bottom:896.076873pt;}
.y3_c00250{bottom:897.020109pt;}
.y2_c00250{bottom:898.325333pt;}
.y1_c00250{bottom:945.113333pt;}
.h10_c00250{height:21.337184pt;}
.h4_c00250{height:48.008663pt;}
.h6_c00250{height:64.008191pt;}
.h9_c00250{height:64.011551pt;}
.h11_c00250{height:64.015486pt;}
.h7_c00250{height:69.343351pt;}
.h3_c00250{height:69.345847pt;}
.hb_c00250{height:69.347199pt;}
.h12_c00250{height:69.350110pt;}
.h2_c00250{height:74.666667pt;}
.h5_c00250{height:74.676223pt;}
.h8_c00250{height:74.677455pt;}
.hc_c00250{height:74.680143pt;}
.he_c00250{height:74.681599pt;}
.ha_c00250{height:80.010239pt;}
.hf_c00250{height:85.348735pt;}
.hd_c00250{height:96.017326pt;}
.h0_c00250{height:1003.866667pt;}
.h1_c00250{height:1004.000000pt;}
.w0_c00250{width:813.333333pt;}
.x0_c00250{left:0.000000pt;}
.xc7_c00250{left:123.254441pt;}
.xcd_c00250{left:124.320979pt;}
.x4f_c00250{left:125.394667pt;}
.xa9_c00250{left:126.997547pt;}
.x98_c00250{left:127.895127pt;}
.x8b_c00250{left:129.915237pt;}
.x6f_c00250{left:131.096827pt;}
.x50_c00250{left:132.394667pt;}
.x3c_c00250{left:134.168976pt;}
.x3_c00250{left:136.785333pt;}
.xf_c00250{left:137.762911pt;}
.x65_c00250{left:146.256000pt;}
.xbd_c00250{left:154.987387pt;}
.x99_c00250{left:158.419127pt;}
.x66_c00250{left:160.533333pt;}
.xaa_c00250{left:165.886533pt;}
.x70_c00250{left:170.656293pt;}
.x45_c00250{left:172.059536pt;}
.xca_c00250{left:174.694667pt;}
.x10_c00250{left:175.732953pt;}
.xc8_c00250{left:182.064671pt;}
.x3d_c00250{left:183.139148pt;}
.xb2_c00250{left:185.273840pt;}
.xab_c00250{left:186.293093pt;}
.x67_c00250{left:187.546667pt;}
.x11_c00250{left:196.117333pt;}
.x4_c00250{left:205.481333pt;}
.x7b_c00250{left:207.840800pt;}
.x51_c00250{left:211.273333pt;}
.xbe_c00250{left:213.088720pt;}
.xcb_c00250{left:214.056000pt;}
.x9e_c00250{left:215.518801pt;}
.x5b_c00250{left:217.181333pt;}
.x81_c00250{left:223.440000pt;}
.xa2_c00250{left:225.330667pt;}
.x8c_c00250{left:227.507237pt;}
.x31_c00250{left:233.308000pt;}
.x1c_c00250{left:234.753333pt;}
.x71_c00250{left:238.393653pt;}
.x46_c00250{left:240.742203pt;}
.x3e_c00250{left:242.038812pt;}
.xac_c00250{left:243.363173pt;}
.x9a_c00250{left:245.547127pt;}
.x68_c00250{left:250.126667pt;}
.xb3_c00250{left:253.173867pt;}
.x5_c00250{left:255.125333pt;}
.x32_c00250{left:258.736000pt;}
.x12_c00250{left:264.747959pt;}
.xc9_c00250{left:269.398656pt;}
.x5c_c00250{left:271.662667pt;}
.xad_c00250{left:273.857013pt;}
.x26_c00250{left:276.378155pt;}
.x52_c00250{left:280.164000pt;}
.xc1_c00250{left:283.169253pt;}
.xb4_c00250{left:284.401147pt;}
.x82_c00250{left:285.842667pt;}
.x27_c00250{left:291.324235pt;}
.x8d_c00250{left:295.184571pt;}
.x72_c00250{left:307.525707pt;}
.x53_c00250{left:310.353333pt;}
.x1d_c00250{left:311.821333pt;}
.x13_c00250{left:312.719537pt;}
.xa3_c00250{left:314.612000pt;}
.x83_c00250{left:315.601333pt;}
.x33_c00250{left:320.272000pt;}
.x47_c00250{left:328.602203pt;}
.x1e_c00250{left:331.318667pt;}
.x6_c00250{left:332.704000pt;}
.x8e_c00250{left:334.813904pt;}
.x73_c00250{left:336.967627pt;}
.x5d_c00250{left:339.841333pt;}
.x7c_c00250{left:345.140800pt;}
.xb7_c00250{left:350.626080pt;}
.x7_c00250{left:352.814667pt;}
.x54_c00250{left:357.860000pt;}
.x3f_c00250{left:359.128807pt;}
.x14_c00250{left:362.243141pt;}
.x34_c00250{left:369.205333pt;}
.xb5_c00250{left:371.090880pt;}
.x9b_c00250{left:372.729793pt;}
.x84_c00250{left:373.689333pt;}
.x7d_c00250{left:375.379467pt;}
.xb8_c00250{left:380.570667pt;}
.x1_c00250{left:383.520000pt;}
.x40_c00250{left:389.094639pt;}
.x15_c00250{left:390.995699pt;}
.x94_c00250{left:392.229424pt;}
.x74_c00250{left:394.316773pt;}
.x48_c00250{left:397.476869pt;}
.x1f_c00250{left:399.213333pt;}
.x9f_c00250{left:401.072511pt;}
.x85_c00250{left:404.661333pt;}
.x35_c00250{left:407.326667pt;}
.x5e_c00250{left:410.133333pt;}
.x8f_c00250{left:412.093904pt;}
.x69_c00250{left:419.144000pt;}
.x8_c00250{left:421.270667pt;}
.x2_c00250{left:422.160000pt;}
.x20_c00250{left:430.126667pt;}
.xa0_c00250{left:431.601676pt;}
.x55_c00250{left:437.114667pt;}
.xb9_c00250{left:438.497147pt;}
.x90_c00250{left:442.591237pt;}
.x49_c00250{left:445.722203pt;}
.x5f_c00250{left:447.912000pt;}
.xae_c00250{left:449.124853pt;}
.x9_c00250{left:450.278667pt;}
.x86_c00250{left:452.708000pt;}
.x28_c00250{left:459.832021pt;}
.x6a_c00250{left:464.226667pt;}
.xba_c00250{left:467.283067pt;}
.xa1_c00250{left:470.456479pt;}
.x7e_c00250{left:471.931467pt;}
.x36_c00250{left:475.741333pt;}
.x21_c00250{left:477.458667pt;}
.xa_c00250{left:479.793333pt;}
.x95_c00250{left:480.705424pt;}
.x2d_c00250{left:488.382123pt;}
.x87_c00250{left:491.354667pt;}
.x7f_c00250{left:492.999467pt;}
.x22_c00250{left:496.881333pt;}
.x16_c00250{left:498.551084pt;}
.xc2_c00250{left:506.940773pt;}
.xa4_c00250{left:508.882667pt;}
.x91_c00250{left:510.272571pt;}
.x60_c00250{left:511.744000pt;}
.x4a_c00250{left:514.616869pt;}
.x29_c00250{left:517.259349pt;}
.x17_c00250{left:527.107616pt;}
.xaf_c00250{left:528.085600pt;}
.x80_c00250{left:530.946133pt;}
.x75_c00250{left:532.451547pt;}
.x56_c00250{left:533.346667pt;}
.x6b_c00250{left:534.484000pt;}
.xa5_c00250{left:537.906667pt;}
.x88_c00250{left:540.785333pt;}
.x2a_c00250{left:546.251637pt;}
.x9c_c00250{left:549.397793pt;}
.x6c_c00250{left:551.880000pt;}
.x37_c00250{left:554.689333pt;}
.x23_c00250{left:555.909333pt;}
.x76_c00250{left:561.694800pt;}
.x57_c00250{left:563.885333pt;}
.xbf_c00250{left:564.972720pt;}
.xb_c00250{left:567.944000pt;}
.x89_c00250{left:570.200000pt;}
.x61_c00250{left:572.232000pt;}
.x2b_c00250{left:576.021152pt;}
.x92_c00250{left:578.197904pt;}
.x58_c00250{left:580.392000pt;}
.x4b_c00250{left:582.592869pt;}
.x38_c00250{left:583.745333pt;}
.xc3_c00250{left:584.927227pt;}
.x18_c00250{left:585.907397pt;}
.x77_c00250{left:590.780720pt;}
.x41_c00250{left:593.407463pt;}
.xc0_c00250{left:595.230053pt;}
.xa6_c00250{left:596.450667pt;}
.x96_c00250{left:597.673424pt;}
.x4c_c00250{left:600.074203pt;}
.x6d_c00250{left:601.080000pt;}
.xc_c00250{left:607.025333pt;}
.x62_c00250{left:611.092000pt;}
.x24_c00250{left:614.241333pt;}
.xbb_c00250{left:615.403360pt;}
.x59_c00250{left:616.336000pt;}
.x93_c00250{left:618.428571pt;}
.x42_c00250{left:622.809295pt;}
.x19_c00250{left:626.008157pt;}
.x78_c00250{left:630.872187pt;}
.x39_c00250{left:632.230667pt;}
.xa7_c00250{left:635.145333pt;}
.x4d_c00250{left:640.392869pt;}
.x63_c00250{left:641.841333pt;}
.xc4_c00250{left:644.423360pt;}
.x6e_c00250{left:649.200000pt;}
.x43_c00250{left:651.137771pt;}
.x25_c00250{left:653.109333pt;}
.x2e_c00250{left:654.702144pt;}
.xa8_c00250{left:655.982667pt;}
.x3a_c00250{left:662.238667pt;}
.x9d_c00250{left:665.315127pt;}
.x8a_c00250{left:667.604000pt;}
.x4e_c00250{left:670.851536pt;}
.xcc_c00250{left:672.577333pt;}
.x2f_c00250{left:673.681664pt;}
.x5a_c00250{left:679.602667pt;}
.x1a_c00250{left:684.093272pt;}
.x97_c00250{left:685.280091pt;}
.x79_c00250{left:688.430667pt;}
.x64_c00250{left:691.046667pt;}
.xc5_c00250{left:693.268000pt;}
.xb6_c00250{left:694.161360pt;}
.xd_c00250{left:695.420000pt;}
.x30_c00250{left:701.521664pt;}
.xb0_c00250{left:703.558773pt;}
.x3b_c00250{left:711.013333pt;}
.x1b_c00250{left:714.105855pt;}
.xc6_c00250{left:722.270667pt;}
.xe_c00250{left:726.337333pt;}
.x7a_c00250{left:728.047467pt;}
.x2c_c00250{left:730.814688pt;}
.xbc_c00250{left:731.848347pt;}
.xb1_c00250{left:734.060613pt;}
.x44_c00250{left:739.799267pt;}
}





/* 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_c00251 {
    display:none;
  }
  .loading-indicator_c00251.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00251 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_c00251 { 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_c00251" -> "#page-container .classname_c00251")
 */
.pf_c00251 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00251 { /* 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_c00251.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00251 { /* 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_c00251 { /* 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_c00251 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00251 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00251 {overflow:visible;}
  }
}
.c_c00251 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00251 { /* 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_c00251:after { /* webkit #35443 */
  content: '';
}
.t_c00251:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00251 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 */
}
.__c00251 { /* 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_c00251 { /* info for Javascript */
  display:none;
}
.l_c00251 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00251 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00251 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00251: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_c00251 {
    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_c00251.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00251.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_c00251 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00251{font-family:sans-serif;visibility:hidden;}
.sc__c00251{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00251{-webkit-text-stroke:0px transparent;}
}
.y0_c00251{bottom:0.000000px;}
.h0_c00251{height:1129.350000px;}
.h1_c00251{height:1129.500000px;}
.w0_c00251{width:915.000000px;}
.x0_c00251{left:0.000000px;}
@media print{
.y0_c00251{bottom:0.000000pt;}
.h0_c00251{height:1003.866667pt;}
.h1_c00251{height:1004.000000pt;}
.w0_c00251{width:813.333333pt;}
.x0_c00251{left:0.000000pt;}
}





/* 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_c00252 {
    display:none;
  }
  .loading-indicator_c00252.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00252 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_c00252 { 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_c00252" -> "#page-container .classname_c00252")
 */
.pf_c00252 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00252 { /* 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_c00252.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00252 { /* 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_c00252 { /* 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_c00252 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00252 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00252 {overflow:visible;}
  }
}
.c_c00252 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00252 { /* 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_c00252:after { /* webkit #35443 */
  content: '';
}
.t_c00252:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00252 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 */
}
.__c00252 { /* 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_c00252 { /* info for Javascript */
  display:none;
}
.l_c00252 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00252 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00252 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00252: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_c00252 {
    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_c00252.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00252.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_c00252 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00252{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00252;src:url('chunks/assets/font_fabf4b590f7fb32aea93ffb2.woff2')format("woff");}.ff1_c00252{font-family:ff1_c00252;line-height:1.000000;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;}
.mc8_c00252{transform:matrix(0.020580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.020580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.020580,0.000000,0.000000,0.250000,0,0);}
.m99_c00252{transform:matrix(0.025930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.025930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.025930,0.000000,0.000000,0.250000,0,0);}
.m86_c00252{transform:matrix(0.032655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032655,0.000000,0.000000,0.250000,0,0);}
.m0_c00252{transform:matrix(0.102700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102700,0.000000,0.000000,0.250000,0,0);}
.mfb_c00252{transform:matrix(0.107530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107530,0.000000,0.000000,0.250000,0,0);}
.m12c_c00252{transform:matrix(0.121655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121655,0.000000,0.000000,0.250000,0,0);}
.m1_c00252{transform:matrix(0.144005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144005,0.000000,0.000000,0.250000,0,0);}
.m9_c00252{transform:matrix(0.166595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166595,0.000000,0.000000,0.250000,0,0);}
.m5_c00252{transform:matrix(0.166985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166985,0.000000,0.000000,0.250000,0,0);}
.md_c00252{transform:matrix(0.172895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172895,0.000000,0.000000,0.250000,0,0);}
.mee_c00252{transform:matrix(0.173320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173320,0.000000,0.000000,0.250000,0,0);}
.me_c00252{transform:matrix(0.176690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176690,0.000000,0.000000,0.250000,0,0);}
.m3_c00252{transform:matrix(0.176980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176980,0.000000,0.000000,0.250000,0,0);}
.m7_c00252{transform:matrix(0.179140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179140,0.000000,0.000000,0.250000,0,0);}
.mc_c00252{transform:matrix(0.182585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182585,0.000000,0.000000,0.250000,0,0);}
.m132_c00252{transform:matrix(0.183135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183135,0.000000,0.000000,0.250000,0,0);}
.mb_c00252{transform:matrix(0.184345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184345,0.000000,0.000000,0.250000,0,0);}
.m61_c00252{transform:matrix(0.184715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184715,0.000000,0.000000,0.250000,0,0);}
.md3_c00252{transform:matrix(0.184880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184880,0.000000,0.000000,0.250000,0,0);}
.m5e_c00252{transform:matrix(0.185050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185050,0.000000,0.000000,0.250000,0,0);}
.m91_c00252{transform:matrix(0.186180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186180,0.000000,0.000000,0.250000,0,0);}
.m67_c00252{transform:matrix(0.186715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186715,0.000000,0.000000,0.250000,0,0);}
.m56_c00252{transform:matrix(0.187495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187495,0.000000,0.000000,0.250000,0,0);}
.ma6_c00252{transform:matrix(0.188585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188585,0.000000,0.000000,0.250000,0,0);}
.m4_c00252{transform:matrix(0.188685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188685,0.000000,0.000000,0.250000,0,0);}
.m2e_c00252{transform:matrix(0.188870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188870,0.000000,0.000000,0.250000,0,0);}
.m58_c00252{transform:matrix(0.189050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189050,0.000000,0.000000,0.250000,0,0);}
.m5a_c00252{transform:matrix(0.190405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190405,0.000000,0.000000,0.250000,0,0);}
.md4_c00252{transform:matrix(0.190880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190880,0.000000,0.000000,0.250000,0,0);}
.ma3_c00252{transform:matrix(0.191840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191840,0.000000,0.000000,0.250000,0,0);}
.ma5_c00252{transform:matrix(0.192615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192615,0.000000,0.000000,0.250000,0,0);}
.m9d_c00252{transform:matrix(0.193895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193895,0.000000,0.000000,0.250000,0,0);}
.m8_c00252{transform:matrix(0.193915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193915,0.000000,0.000000,0.250000,0,0);}
.m11a_c00252{transform:matrix(0.194700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194700,0.000000,0.000000,0.250000,0,0);}
.m116_c00252{transform:matrix(0.195565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195565,0.000000,0.000000,0.250000,0,0);}
.m6_c00252{transform:matrix(0.195630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195630,0.000000,0.000000,0.250000,0,0);}
.ma_c00252{transform:matrix(0.196465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196465,0.000000,0.000000,0.250000,0,0);}
.m10d_c00252{transform:matrix(0.196690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196690,0.000000,0.000000,0.250000,0,0);}
.m55_c00252{transform:matrix(0.197040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197040,0.000000,0.000000,0.250000,0,0);}
.m9f_c00252{transform:matrix(0.197290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197290,0.000000,0.000000,0.250000,0,0);}
.ma4_c00252{transform:matrix(0.198195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198195,0.000000,0.000000,0.250000,0,0);}
.m82_c00252{transform:matrix(0.198370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198370,0.000000,0.000000,0.250000,0,0);}
.m112_c00252{transform:matrix(0.198470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198470,0.000000,0.000000,0.250000,0,0);}
.m5d_c00252{transform:matrix(0.198490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198490,0.000000,0.000000,0.250000,0,0);}
.mdb_c00252{transform:matrix(0.198595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198595,0.000000,0.000000,0.250000,0,0);}
.md9_c00252{transform:matrix(0.199370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199370,0.000000,0.000000,0.250000,0,0);}
.m9e_c00252{transform:matrix(0.199990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199990,0.000000,0.000000,0.250000,0,0);}
.m63_c00252{transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);}
.m5b_c00252{transform:matrix(0.200280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200280,0.000000,0.000000,0.250000,0,0);}
.md0_c00252{transform:matrix(0.201030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201030,0.000000,0.000000,0.250000,0,0);}
.m59_c00252{transform:matrix(0.201040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201040,0.000000,0.000000,0.250000,0,0);}
.m5c_c00252{transform:matrix(0.201285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201285,0.000000,0.000000,0.250000,0,0);}
.m9b_c00252{transform:matrix(0.201300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201300,0.000000,0.000000,0.250000,0,0);}
.m10e_c00252{transform:matrix(0.202965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202965,0.000000,0.000000,0.250000,0,0);}
.m9c_c00252{transform:matrix(0.203095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203095,0.000000,0.000000,0.250000,0,0);}
.m111_c00252{transform:matrix(0.203200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203200,0.000000,0.000000,0.250000,0,0);}
.ma2_c00252{transform:matrix(0.203405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203405,0.000000,0.000000,0.250000,0,0);}
.m9a_c00252{transform:matrix(0.203480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203480,0.000000,0.000000,0.250000,0,0);}
.mb8_c00252{transform:matrix(0.204515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204515,0.000000,0.000000,0.250000,0,0);}
.m103_c00252{transform:matrix(0.206470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206470,0.000000,0.000000,0.250000,0,0);}
.mf0_c00252{transform:matrix(0.207440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207440,0.000000,0.000000,0.250000,0,0);}
.m12_c00252{transform:matrix(0.208410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208410,0.000000,0.000000,0.250000,0,0);}
.ma1_c00252{transform:matrix(0.208495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208495,0.000000,0.000000,0.250000,0,0);}
.m16_c00252{transform:matrix(0.208675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208675,0.000000,0.000000,0.250000,0,0);}
.m27_c00252{transform:matrix(0.208715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208715,0.000000,0.000000,0.250000,0,0);}
.m65_c00252{transform:matrix(0.208810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208810,0.000000,0.000000,0.250000,0,0);}
.md7_c00252{transform:matrix(0.209095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209095,0.000000,0.000000,0.250000,0,0);}
.ma0_c00252{transform:matrix(0.209165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209165,0.000000,0.000000,0.250000,0,0);}
.m53_c00252{transform:matrix(0.209630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209630,0.000000,0.000000,0.250000,0,0);}
.m42_c00252{transform:matrix(0.211630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211630,0.000000,0.000000,0.250000,0,0);}
.ma7_c00252{transform:matrix(0.211690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211690,0.000000,0.000000,0.250000,0,0);}
.m84_c00252{transform:matrix(0.211820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211820,0.000000,0.000000,0.250000,0,0);}
.m90_c00252{transform:matrix(0.211870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211870,0.000000,0.000000,0.250000,0,0);}
.mdc_c00252{transform:matrix(0.212075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212075,0.000000,0.000000,0.250000,0,0);}
.mbe_c00252{transform:matrix(0.212150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212150,0.000000,0.000000,0.250000,0,0);}
.m25_c00252{transform:matrix(0.212510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212510,0.000000,0.000000,0.250000,0,0);}
.m2b_c00252{transform:matrix(0.212770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212770,0.000000,0.000000,0.250000,0,0);}
.mcb_c00252{transform:matrix(0.213065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213065,0.000000,0.000000,0.250000,0,0);}
.m3b_c00252{transform:matrix(0.213110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213110,0.000000,0.000000,0.250000,0,0);}
.ma8_c00252{transform:matrix(0.213125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213125,0.000000,0.000000,0.250000,0,0);}
.m80_c00252{transform:matrix(0.213135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213135,0.000000,0.000000,0.250000,0,0);}
.mb3_c00252{transform:matrix(0.213320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213320,0.000000,0.000000,0.250000,0,0);}
.mcd_c00252{transform:matrix(0.213510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213510,0.000000,0.000000,0.250000,0,0);}
.me3_c00252{transform:matrix(0.213670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213670,0.000000,0.000000,0.250000,0,0);}
.m66_c00252{transform:matrix(0.213720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213720,0.000000,0.000000,0.250000,0,0);}
.m68_c00252{transform:matrix(0.213745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213745,0.000000,0.000000,0.250000,0,0);}
.m72_c00252{transform:matrix(0.213820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213820,0.000000,0.000000,0.250000,0,0);}
.m40_c00252{transform:matrix(0.214415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214415,0.000000,0.000000,0.250000,0,0);}
.mac_c00252{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.mc7_c00252{transform:matrix(0.215150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215150,0.000000,0.000000,0.250000,0,0);}
.mda_c00252{transform:matrix(0.215345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215345,0.000000,0.000000,0.250000,0,0);}
.m62_c00252{transform:matrix(0.215460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215460,0.000000,0.000000,0.250000,0,0);}
.mc0_c00252{transform:matrix(0.215525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215525,0.000000,0.000000,0.250000,0,0);}
.mc1_c00252{transform:matrix(0.215650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215650,0.000000,0.000000,0.250000,0,0);}
.m108_c00252{transform:matrix(0.215715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215715,0.000000,0.000000,0.250000,0,0);}
.md8_c00252{transform:matrix(0.216065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216065,0.000000,0.000000,0.250000,0,0);}
.m43_c00252{transform:matrix(0.216725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216725,0.000000,0.000000,0.250000,0,0);}
.m6b_c00252{transform:matrix(0.216995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216995,0.000000,0.000000,0.250000,0,0);}
.me7_c00252{transform:matrix(0.217035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217035,0.000000,0.000000,0.250000,0,0);}
.mb4_c00252{transform:matrix(0.217530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217530,0.000000,0.000000,0.250000,0,0);}
.m105_c00252{transform:matrix(0.217770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217770,0.000000,0.000000,0.250000,0,0);}
.mb9_c00252{transform:matrix(0.218050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218050,0.000000,0.000000,0.250000,0,0);}
.m7d_c00252{transform:matrix(0.218925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218925,0.000000,0.000000,0.250000,0,0);}
.m60_c00252{transform:matrix(0.219050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219050,0.000000,0.000000,0.250000,0,0);}
.m1b_c00252{transform:matrix(0.219315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219315,0.000000,0.000000,0.250000,0,0);}
.m21_c00252{transform:matrix(0.219890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219890,0.000000,0.000000,0.250000,0,0);}
.mc4_c00252{transform:matrix(0.219975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219975,0.000000,0.000000,0.250000,0,0);}
.mba_c00252{transform:matrix(0.220010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220010,0.000000,0.000000,0.250000,0,0);}
.m110_c00252{transform:matrix(0.220130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220130,0.000000,0.000000,0.250000,0,0);}
.mf4_c00252{transform:matrix(0.220230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220230,0.000000,0.000000,0.250000,0,0);}
.m113_c00252{transform:matrix(0.220465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220465,0.000000,0.000000,0.250000,0,0);}
.m69_c00252{transform:matrix(0.220830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220830,0.000000,0.000000,0.250000,0,0);}
.m13_c00252{transform:matrix(0.220875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220875,0.000000,0.000000,0.250000,0,0);}
.m31_c00252{transform:matrix(0.221120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221120,0.000000,0.000000,0.250000,0,0);}
.m87_c00252{transform:matrix(0.221600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221600,0.000000,0.000000,0.250000,0,0);}
.m2a_c00252{transform:matrix(0.221680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221680,0.000000,0.000000,0.250000,0,0);}
.mdd_c00252{transform:matrix(0.222035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222035,0.000000,0.000000,0.250000,0,0);}
.m115_c00252{transform:matrix(0.222900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222900,0.000000,0.000000,0.250000,0,0);}
.md2_c00252{transform:matrix(0.223020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223020,0.000000,0.000000,0.250000,0,0);}
.maa_c00252{transform:matrix(0.223180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223180,0.000000,0.000000,0.250000,0,0);}
.ma9_c00252{transform:matrix(0.223435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223435,0.000000,0.000000,0.250000,0,0);}
.me8_c00252{transform:matrix(0.223760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223760,0.000000,0.000000,0.250000,0,0);}
.m8b_c00252{transform:matrix(0.224600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224600,0.000000,0.000000,0.250000,0,0);}
.m5f_c00252{transform:matrix(0.224720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224720,0.000000,0.000000,0.250000,0,0);}
.mc9_c00252{transform:matrix(0.224915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224915,0.000000,0.000000,0.250000,0,0);}
.mf9_c00252{transform:matrix(0.225060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225060,0.000000,0.000000,0.250000,0,0);}
.m45_c00252{transform:matrix(0.225940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225940,0.000000,0.000000,0.250000,0,0);}
.m49_c00252{transform:matrix(0.226025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226025,0.000000,0.000000,0.250000,0,0);}
.md1_c00252{transform:matrix(0.226240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226240,0.000000,0.000000,0.250000,0,0);}
.m1e_c00252{transform:matrix(0.226575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226575,0.000000,0.000000,0.250000,0,0);}
.mb7_c00252{transform:matrix(0.226625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226625,0.000000,0.000000,0.250000,0,0);}
.m51_c00252{transform:matrix(0.226965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226965,0.000000,0.000000,0.250000,0,0);}
.mae_c00252{transform:matrix(0.227245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227245,0.000000,0.000000,0.250000,0,0);}
.m3a_c00252{transform:matrix(0.227685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227685,0.000000,0.000000,0.250000,0,0);}
.me0_c00252{transform:matrix(0.227855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227855,0.000000,0.000000,0.250000,0,0);}
.m64_c00252{transform:matrix(0.228190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228190,0.000000,0.000000,0.250000,0,0);}
.m114_c00252{transform:matrix(0.228420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228420,0.000000,0.000000,0.250000,0,0);}
.m118_c00252{transform:matrix(0.228940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228940,0.000000,0.000000,0.250000,0,0);}
.m10c_c00252{transform:matrix(0.229105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229105,0.000000,0.000000,0.250000,0,0);}
.m70_c00252{transform:matrix(0.229150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229150,0.000000,0.000000,0.250000,0,0);}
.m3e_c00252{transform:matrix(0.229195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229195,0.000000,0.000000,0.250000,0,0);}
.m34_c00252{transform:matrix(0.229205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229205,0.000000,0.000000,0.250000,0,0);}
.mb1_c00252{transform:matrix(0.229220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229220,0.000000,0.000000,0.250000,0,0);}
.me9_c00252{transform:matrix(0.229225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229225,0.000000,0.000000,0.250000,0,0);}
.mf2_c00252{transform:matrix(0.230325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230325,0.000000,0.000000,0.250000,0,0);}
.m18_c00252{transform:matrix(0.230425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230425,0.000000,0.000000,0.250000,0,0);}
.m32_c00252{transform:matrix(0.230445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230445,0.000000,0.000000,0.250000,0,0);}
.mfe_c00252{transform:matrix(0.230455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230455,0.000000,0.000000,0.250000,0,0);}
.mbf_c00252{transform:matrix(0.230915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230915,0.000000,0.000000,0.250000,0,0);}
.mbc_c00252{transform:matrix(0.230965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230965,0.000000,0.000000,0.250000,0,0);}
.m7f_c00252{transform:matrix(0.231440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231440,0.000000,0.000000,0.250000,0,0);}
.m57_c00252{transform:matrix(0.231810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231810,0.000000,0.000000,0.250000,0,0);}
.m1a_c00252{transform:matrix(0.232065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232065,0.000000,0.000000,0.250000,0,0);}
.m100_c00252{transform:matrix(0.232355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232355,0.000000,0.000000,0.250000,0,0);}
.mde_c00252{transform:matrix(0.232390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232390,0.000000,0.000000,0.250000,0,0);}
.mb5_c00252{transform:matrix(0.232610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232610,0.000000,0.000000,0.250000,0,0);}
.m7a_c00252{transform:matrix(0.232725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232725,0.000000,0.000000,0.250000,0,0);}
.m6c_c00252{transform:matrix(0.233045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233045,0.000000,0.000000,0.250000,0,0);}
.me4_c00252{transform:matrix(0.233065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233065,0.000000,0.000000,0.250000,0,0);}
.mbd_c00252{transform:matrix(0.233735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233735,0.000000,0.000000,0.250000,0,0);}
.m10a_c00252{transform:matrix(0.233800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233800,0.000000,0.000000,0.250000,0,0);}
.mea_c00252{transform:matrix(0.233840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233840,0.000000,0.000000,0.250000,0,0);}
.m15_c00252{transform:matrix(0.233910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233910,0.000000,0.000000,0.250000,0,0);}
.mbb_c00252{transform:matrix(0.233990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233990,0.000000,0.000000,0.250000,0,0);}
.m94_c00252{transform:matrix(0.234080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234080,0.000000,0.000000,0.250000,0,0);}
.m107_c00252{transform:matrix(0.234260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234260,0.000000,0.000000,0.250000,0,0);}
.m78_c00252{transform:matrix(0.234345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234345,0.000000,0.000000,0.250000,0,0);}
.m37_c00252{transform:matrix(0.234690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234690,0.000000,0.000000,0.250000,0,0);}
.m10f_c00252{transform:matrix(0.234725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234725,0.000000,0.000000,0.250000,0,0);}
.m30_c00252{transform:matrix(0.235130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235130,0.000000,0.000000,0.250000,0,0);}
.m101_c00252{transform:matrix(0.235160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235160,0.000000,0.000000,0.250000,0,0);}
.mc3_c00252{transform:matrix(0.235435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235435,0.000000,0.000000,0.250000,0,0);}
.mad_c00252{transform:matrix(0.235485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235485,0.000000,0.000000,0.250000,0,0);}
.m3d_c00252{transform:matrix(0.235670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235670,0.000000,0.000000,0.250000,0,0);}
.m26_c00252{transform:matrix(0.235685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235685,0.000000,0.000000,0.250000,0,0);}
.m102_c00252{transform:matrix(0.235850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235850,0.000000,0.000000,0.250000,0,0);}
.m8f_c00252{transform:matrix(0.236275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236275,0.000000,0.000000,0.250000,0,0);}
.m47_c00252{transform:matrix(0.236480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236480,0.000000,0.000000,0.250000,0,0);}
.mc6_c00252{transform:matrix(0.236620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236620,0.000000,0.000000,0.250000,0,0);}
.mb0_c00252{transform:matrix(0.236805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236805,0.000000,0.000000,0.250000,0,0);}
.m7c_c00252{transform:matrix(0.237165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237165,0.000000,0.000000,0.250000,0,0);}
.m7b_c00252{transform:matrix(0.237330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237330,0.000000,0.000000,0.250000,0,0);}
.mf_c00252{transform:matrix(0.237620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237620,0.000000,0.000000,0.250000,0,0);}
.m83_c00252{transform:matrix(0.238850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238850,0.000000,0.000000,0.250000,0,0);}
.me5_c00252{transform:matrix(0.239335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239335,0.000000,0.000000,0.250000,0,0);}
.m33_c00252{transform:matrix(0.239560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239560,0.000000,0.000000,0.250000,0,0);}
.me2_c00252{transform:matrix(0.239960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239960,0.000000,0.000000,0.250000,0,0);}
.m117_c00252{transform:matrix(0.240030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240030,0.000000,0.000000,0.250000,0,0);}
.m93_c00252{transform:matrix(0.240230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240230,0.000000,0.000000,0.250000,0,0);}
.mc2_c00252{transform:matrix(0.240330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240330,0.000000,0.000000,0.250000,0,0);}
.m6a_c00252{transform:matrix(0.240350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240350,0.000000,0.000000,0.250000,0,0);}
.mca_c00252{transform:matrix(0.240480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240480,0.000000,0.000000,0.250000,0,0);}
.mb6_c00252{transform:matrix(0.240880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240880,0.000000,0.000000,0.250000,0,0);}
.mc5_c00252{transform:matrix(0.240940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240940,0.000000,0.000000,0.250000,0,0);}
.med_c00252{transform:matrix(0.240980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240980,0.000000,0.000000,0.250000,0,0);}
.m10b_c00252{transform:matrix(0.242420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242420,0.000000,0.000000,0.250000,0,0);}
.m76_c00252{transform:matrix(0.242870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242870,0.000000,0.000000,0.250000,0,0);}
.m36_c00252{transform:matrix(0.243320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243320,0.000000,0.000000,0.250000,0,0);}
.m1d_c00252{transform:matrix(0.243925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243925,0.000000,0.000000,0.250000,0,0);}
.maf_c00252{transform:matrix(0.244715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244715,0.000000,0.000000,0.250000,0,0);}
.m88_c00252{transform:matrix(0.244905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244905,0.000000,0.000000,0.250000,0,0);}
.m44_c00252{transform:matrix(0.244910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244910,0.000000,0.000000,0.250000,0,0);}
.m2d_c00252{transform:matrix(0.245015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245015,0.000000,0.000000,0.250000,0,0);}
.m29_c00252{transform:matrix(0.245030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245030,0.000000,0.000000,0.250000,0,0);}
.m20_c00252{transform:matrix(0.245210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245210,0.000000,0.000000,0.250000,0,0);}
.m85_c00252{transform:matrix(0.245870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245870,0.000000,0.000000,0.250000,0,0);}
.m95_c00252{transform:matrix(0.246020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246020,0.000000,0.000000,0.250000,0,0);}
.m22_c00252{transform:matrix(0.246300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246300,0.000000,0.000000,0.250000,0,0);}
.m89_c00252{transform:matrix(0.246450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246450,0.000000,0.000000,0.250000,0,0);}
.m2c_c00252{transform:matrix(0.246625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246625,0.000000,0.000000,0.250000,0,0);}
.mb2_c00252{transform:matrix(0.247430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247430,0.000000,0.000000,0.250000,0,0);}
.m79_c00252{transform:matrix(0.247720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247720,0.000000,0.000000,0.250000,0,0);}
.m8c_c00252{transform:matrix(0.247875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247875,0.000000,0.000000,0.250000,0,0);}
.mec_c00252{transform:matrix(0.248430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248430,0.000000,0.000000,0.250000,0,0);}
.m28_c00252{transform:matrix(0.248555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248555,0.000000,0.000000,0.250000,0,0);}
.m1c_c00252{transform:matrix(0.248675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248675,0.000000,0.000000,0.250000,0,0);}
.m19_c00252{transform:matrix(0.248900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248900,0.000000,0.000000,0.250000,0,0);}
.m8d_c00252{transform:matrix(0.249395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249395,0.000000,0.000000,0.250000,0,0);}
.m46_c00252{transform:matrix(0.249560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249560,0.000000,0.000000,0.250000,0,0);}
.m2f_c00252{transform:matrix(0.249825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249825,0.000000,0.000000,0.250000,0,0);}
.m8e_c00252{transform:matrix(0.250170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250170,0.000000,0.000000,0.250000,0,0);}
.m6f_c00252{transform:matrix(0.250335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250335,0.000000,0.000000,0.250000,0,0);}
.mf3_c00252{transform:matrix(0.250710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250710,0.000000,0.000000,0.250000,0,0);}
.m10_c00252{transform:matrix(0.251200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251200,0.000000,0.000000,0.250000,0,0);}
.m7e_c00252{transform:matrix(0.251335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251335,0.000000,0.000000,0.250000,0,0);}
.m92_c00252{transform:matrix(0.251435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251435,0.000000,0.000000,0.250000,0,0);}
.m39_c00252{transform:matrix(0.251650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251650,0.000000,0.000000,0.250000,0,0);}
.me1_c00252{transform:matrix(0.251675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251675,0.000000,0.000000,0.250000,0,0);}
.m38_c00252{transform:matrix(0.251745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251745,0.000000,0.000000,0.250000,0,0);}
.m97_c00252{transform:matrix(0.251980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251980,0.000000,0.000000,0.250000,0,0);}
.m48_c00252{transform:matrix(0.252320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252320,0.000000,0.000000,0.250000,0,0);}
.m6d_c00252{transform:matrix(0.252390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252390,0.000000,0.000000,0.250000,0,0);}
.m1f_c00252{transform:matrix(0.252540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252540,0.000000,0.000000,0.250000,0,0);}
.m74_c00252{transform:matrix(0.252565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252565,0.000000,0.000000,0.250000,0,0);}
.m4b_c00252{transform:matrix(0.252880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252880,0.000000,0.000000,0.250000,0,0);}
.m14_c00252{transform:matrix(0.253310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253310,0.000000,0.000000,0.250000,0,0);}
.m3c_c00252{transform:matrix(0.253705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253705,0.000000,0.000000,0.250000,0,0);}
.m4e_c00252{transform:matrix(0.253785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253785,0.000000,0.000000,0.250000,0,0);}
.m35_c00252{transform:matrix(0.253820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253820,0.000000,0.000000,0.250000,0,0);}
.m104_c00252{transform:matrix(0.254225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254225,0.000000,0.000000,0.250000,0,0);}
.m81_c00252{transform:matrix(0.254320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254320,0.000000,0.000000,0.250000,0,0);}
.mdf_c00252{transform:matrix(0.255105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255105,0.000000,0.000000,0.250000,0,0);}
.m17_c00252{transform:matrix(0.255705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255705,0.000000,0.000000,0.250000,0,0);}
.meb_c00252{transform:matrix(0.255805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255805,0.000000,0.000000,0.250000,0,0);}
.m24_c00252{transform:matrix(0.255985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255985,0.000000,0.000000,0.250000,0,0);}
.m75_c00252{transform:matrix(0.256120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256120,0.000000,0.000000,0.250000,0,0);}
.m23_c00252{transform:matrix(0.256220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256220,0.000000,0.000000,0.250000,0,0);}
.mab_c00252{transform:matrix(0.256275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256275,0.000000,0.000000,0.250000,0,0);}
.mcf_c00252{transform:matrix(0.256295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256295,0.000000,0.000000,0.250000,0,0);}
.m71_c00252{transform:matrix(0.256610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256610,0.000000,0.000000,0.250000,0,0);}
.m41_c00252{transform:matrix(0.256815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256815,0.000000,0.000000,0.250000,0,0);}
.m11_c00252{transform:matrix(0.256980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256980,0.000000,0.000000,0.250000,0,0);}
.m4d_c00252{transform:matrix(0.257550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257550,0.000000,0.000000,0.250000,0,0);}
.m6e_c00252{transform:matrix(0.258655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258655,0.000000,0.000000,0.250000,0,0);}
.m3f_c00252{transform:matrix(0.258740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258740,0.000000,0.000000,0.250000,0,0);}
.me6_c00252{transform:matrix(0.258975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258975,0.000000,0.000000,0.250000,0,0);}
.m11d_c00252{transform:matrix(0.259600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259600,0.000000,0.000000,0.250000,0,0);}
.m106_c00252{transform:matrix(0.259860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259860,0.000000,0.000000,0.250000,0,0);}
.m77_c00252{transform:matrix(0.261125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261125,0.000000,0.000000,0.250000,0,0);}
.m73_c00252{transform:matrix(0.261865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261865,0.000000,0.000000,0.250000,0,0);}
.m8a_c00252{transform:matrix(0.261905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261905,0.000000,0.000000,0.250000,0,0);}
.mff_c00252{transform:matrix(0.262855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262855,0.000000,0.000000,0.250000,0,0);}
.m109_c00252{transform:matrix(0.264485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264485,0.000000,0.000000,0.250000,0,0);}
.mcc_c00252{transform:matrix(0.265090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265090,0.000000,0.000000,0.250000,0,0);}
.m96_c00252{transform:matrix(0.265315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265315,0.000000,0.000000,0.250000,0,0);}
.mf7_c00252{transform:matrix(0.265840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265840,0.000000,0.000000,0.250000,0,0);}
.m4f_c00252{transform:matrix(0.268225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268225,0.000000,0.000000,0.250000,0,0);}
.m54_c00252{transform:matrix(0.268755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268755,0.000000,0.000000,0.250000,0,0);}
.m52_c00252{transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);}
.mef_c00252{transform:matrix(0.269445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269445,0.000000,0.000000,0.250000,0,0);}
.mf6_c00252{transform:matrix(0.271305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271305,0.000000,0.000000,0.250000,0,0);}
.mfc_c00252{transform:matrix(0.273425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273425,0.000000,0.000000,0.250000,0,0);}
.mf5_c00252{transform:matrix(0.275710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275710,0.000000,0.000000,0.250000,0,0);}
.m4a_c00252{transform:matrix(0.276155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276155,0.000000,0.000000,0.250000,0,0);}
.m4c_c00252{transform:matrix(0.276620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276620,0.000000,0.000000,0.250000,0,0);}
.m50_c00252{transform:matrix(0.277325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277325,0.000000,0.000000,0.250000,0,0);}
.md6_c00252{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m11c_c00252{transform:matrix(0.281170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281170,0.000000,0.000000,0.250000,0,0);}
.m123_c00252{transform:matrix(0.282903,0.001980,-0.001750,0.249994,0,0);-ms-transform:matrix(0.282903,0.001980,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.282903,0.001980,-0.001750,0.249994,0,0);}
.mfd_c00252{transform:matrix(0.283855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283855,0.000000,0.000000,0.250000,0,0);}
.m122_c00252{transform:matrix(0.286568,0.002006,-0.001750,0.249994,0,0);-ms-transform:matrix(0.286568,0.002006,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.286568,0.002006,-0.001750,0.249994,0,0);}
.m12f_c00252{transform:matrix(0.286820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286820,0.000000,0.000000,0.250000,0,0);}
.mf1_c00252{transform:matrix(0.292225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292225,0.000000,0.000000,0.250000,0,0);}
.m124_c00252{transform:matrix(0.292493,0.002047,-0.001750,0.249994,0,0);-ms-transform:matrix(0.292493,0.002047,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.292493,0.002047,-0.001750,0.249994,0,0);}
.m11f_c00252{transform:matrix(0.293463,0.002054,-0.001750,0.249994,0,0);-ms-transform:matrix(0.293463,0.002054,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.293463,0.002054,-0.001750,0.249994,0,0);}
.m126_c00252{transform:matrix(0.295983,0.002072,-0.001750,0.249994,0,0);-ms-transform:matrix(0.295983,0.002072,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.295983,0.002072,-0.001750,0.249994,0,0);}
.m128_c00252{transform:matrix(0.296838,0.002078,-0.001750,0.249994,0,0);-ms-transform:matrix(0.296838,0.002078,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.296838,0.002078,-0.001750,0.249994,0,0);}
.m127_c00252{transform:matrix(0.300483,0.002103,-0.001750,0.249994,0,0);-ms-transform:matrix(0.300483,0.002103,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.300483,0.002103,-0.001750,0.249994,0,0);}
.m12e_c00252{transform:matrix(0.300870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300870,0.000000,0.000000,0.250000,0,0);}
.md5_c00252{transform:matrix(0.300885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300885,0.000000,0.000000,0.250000,0,0);}
.m125_c00252{transform:matrix(0.308702,0.002161,-0.001750,0.249994,0,0);-ms-transform:matrix(0.308702,0.002161,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.308702,0.002161,-0.001750,0.249994,0,0);}
.m12a_c00252{transform:matrix(0.311450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311450,0.000000,0.000000,0.250000,0,0);}
.m2_c00252{transform:matrix(0.311825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311825,0.000000,0.000000,0.250000,0,0);}
.m120_c00252{transform:matrix(0.315702,0.002210,-0.001750,0.249994,0,0);-ms-transform:matrix(0.315702,0.002210,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.315702,0.002210,-0.001750,0.249994,0,0);}
.m119_c00252{transform:matrix(0.318455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318455,0.000000,0.000000,0.250000,0,0);}
.m121_c00252{transform:matrix(0.325547,0.002279,-0.001750,0.249994,0,0);-ms-transform:matrix(0.325547,0.002279,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.325547,0.002279,-0.001750,0.249994,0,0);}
.m98_c00252{transform:matrix(0.349420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349420,0.000000,0.000000,0.250000,0,0);}
.m11e_c00252{transform:matrix(0.351000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351000,0.000000,0.000000,0.250000,0,0);}
.m11b_c00252{transform:matrix(0.362245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362245,0.000000,0.000000,0.250000,0,0);}
.mce_c00252{transform:matrix(0.362470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362470,0.000000,0.000000,0.250000,0,0);}
.m131_c00252{transform:matrix(0.370055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370055,0.000000,0.000000,0.250000,0,0);}
.mf8_c00252{transform:matrix(0.388585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388585,0.000000,0.000000,0.250000,0,0);}
.mfa_c00252{transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413025,0.000000,0.000000,0.250000,0,0);}
.m12d_c00252{transform:matrix(0.432795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432795,0.000000,0.000000,0.250000,0,0);}
.m134_c00252{transform:matrix(0.614130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.614130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.614130,0.000000,0.000000,0.250000,0,0);}
.m130_c00252{transform:matrix(0.622420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.622420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.622420,0.000000,0.000000,0.250000,0,0);}
.m129_c00252{transform:matrix(0.846535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.846535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.846535,0.000000,0.000000,0.250000,0,0);}
.m133_c00252{transform:matrix(1.478935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.478935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.478935,0.000000,0.000000,0.250000,0,0);}
.m12b_c00252{transform:matrix(1.980630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.980630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.980630,0.000000,0.000000,0.250000,0,0);}
.v0_c00252{vertical-align:0.000000px;}
.ls0_c00252{letter-spacing:0.000000px;}
.sc__c00252{text-shadow:none;}
.sc0_c00252{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__c00252{-webkit-text-stroke:0px transparent;}
.sc0_c00252{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00252{word-spacing:0.000000px;}
._0_c00252{width:1.304780px;}
._1_c00252{width:10.249003px;}
.fc0_c00252{color:transparent;}
.fs8_c00252{font-size:18.000000px;}
.fs9_c00252{font-size:24.000000px;}
.fs6_c00252{font-size:30.000000px;}
.fs7_c00252{font-size:60.001470px;}
.fs3_c00252{font-size:72.000000px;}
.fs2_c00252{font-size:78.000000px;}
.fs0_c00252{font-size:84.000000px;}
.fs5_c00252{font-size:90.000000px;}
.fs4_c00252{font-size:96.000000px;}
.fs1_c00252{font-size:102.000000px;}
.y0_c00252{bottom:0.000000px;}
.y31_c00252{bottom:30.347733px;}
.y30_c00252{bottom:30.735225px;}
.y2f_c00252{bottom:31.184982px;}
.y2e_c00252{bottom:31.428803px;}
.y2d_c00252{bottom:31.572411px;}
.y2c_c00252{bottom:31.803012px;}
.y2b_c00252{bottom:32.044953px;}
.y2a_c00252{bottom:32.576054px;}
.y29_c00252{bottom:33.195932px;}
.y28_c00252{bottom:33.481500px;}
.y27_c00252{bottom:66.708000px;}
.y26_c00252{bottom:93.904500px;}
.y33_c00252{bottom:104.490000px;}
.y25_c00252{bottom:123.975000px;}
.y24_c00252{bottom:124.282500px;}
.y23_c00252{bottom:125.367000px;}
.y22_c00252{bottom:126.132000px;}
.y21_c00252{bottom:126.357000px;}
.y20_c00252{bottom:126.597000px;}
.y1f_c00252{bottom:127.366500px;}
.y1e_c00252{bottom:127.590000px;}
.y1d_c00252{bottom:127.824000px;}
.y1c_c00252{bottom:128.521500px;}
.y1b_c00252{bottom:158.704500px;}
.y1a_c00252{bottom:253.764000px;}
.y19_c00252{bottom:285.948000px;}
.y18_c00252{bottom:317.098500px;}
.y17_c00252{bottom:349.227000px;}
.y16_c00252{bottom:380.521500px;}
.y32_c00252{bottom:387.990000px;}
.y15_c00252{bottom:412.561500px;}
.y14_c00252{bottom:444.615000px;}
.y13_c00252{bottom:476.745000px;}
.y12_c00252{bottom:508.258500px;}
.y11_c00252{bottom:539.449500px;}
.y10_c00252{bottom:570.121500px;}
.yf_c00252{bottom:601.474500px;}
.ye_c00252{bottom:633.600000px;}
.yd_c00252{bottom:665.199000px;}
.yc_c00252{bottom:697.410000px;}
.yb_c00252{bottom:728.190000px;}
.ya_c00252{bottom:760.860000px;}
.y9_c00252{bottom:792.907500px;}
.y8_c00252{bottom:824.767500px;}
.y7_c00252{bottom:856.170000px;}
.y6_c00252{bottom:887.143500px;}
.y5_c00252{bottom:918.810000px;}
.y4_c00252{bottom:949.774500px;}
.y3_c00252{bottom:981.990000px;}
.y2_c00252{bottom:1012.887000px;}
.y1_c00252{bottom:1071.090000px;}
.ha_c00252{height:18.000000px;}
.hb_c00252{height:24.000000px;}
.h8_c00252{height:30.000000px;}
.h9_c00252{height:60.001470px;}
.h5_c00252{height:72.000000px;}
.h4_c00252{height:78.000000px;}
.h2_c00252{height:84.000000px;}
.h7_c00252{height:90.000000px;}
.h6_c00252{height:96.000000px;}
.h3_c00252{height:102.000000px;}
.h0_c00252{height:1129.350000px;}
.h1_c00252{height:1129.500000px;}
.w0_c00252{width:915.000000px;}
.x0_c00252{left:0.000000px;}
.x4f_c00252{left:126.900000px;}
.x4a_c00252{left:135.270000px;}
.x50_c00252{left:144.180000px;}
.x59_c00252{left:146.070000px;}
.x63_c00252{left:149.850000px;}
.x3f_c00252{left:151.200000px;}
.x2a_c00252{left:153.090000px;}
.x4_c00252{left:154.710000px;}
.x69_c00252{left:155.790000px;}
.x7b_c00252{left:157.828500px;}
.x74_c00252{left:167.670000px;}
.x75_c00252{left:178.200000px;}
.x23_c00252{left:187.380000px;}
.x5d_c00252{left:188.460000px;}
.x1b_c00252{left:197.370000px;}
.x5_c00252{left:198.720000px;}
.x4c_c00252{left:209.790000px;}
.x76_c00252{left:211.410000px;}
.x1c_c00252{left:219.510000px;}
.x10_c00252{left:220.860000px;}
.x6a_c00252{left:223.020000px;}
.x5a_c00252{left:231.120000px;}
.x64_c00252{left:232.200000px;}
.x77_c00252{left:234.090000px;}
.x37_c00252{left:242.460000px;}
.x78_c00252{left:246.240000px;}
.x45_c00252{left:254.070000px;}
.x79_c00252{left:255.960000px;}
.x24_c00252{left:262.980000px;}
.x6_c00252{left:264.600000px;}
.x67_c00252{left:265.680000px;}
.x7a_c00252{left:269.730000px;}
.x57_c00252{left:274.590000px;}
.x51_c00252{left:275.670000px;}
.x1d_c00252{left:285.390000px;}
.x65_c00252{left:287.280000px;}
.x7_c00252{left:297.000000px;}
.x41_c00252{left:298.620000px;}
.x2b_c00252{left:308.880000px;}
.x11_c00252{left:318.060000px;}
.x5c_c00252{left:320.490000px;}
.x25_c00252{left:331.020000px;}
.x4d_c00252{left:340.740000px;}
.x46_c00252{left:342.090000px;}
.x6b_c00252{left:343.980000px;}
.x31_c00252{left:353.160000px;}
.x2c_c00252{left:363.420000px;}
.x68_c00252{left:369.090000px;}
.x52_c00252{left:374.220000px;}
.x26_c00252{left:375.300000px;}
.x3a_c00252{left:385.290000px;}
.x8_c00252{left:395.010000px;}
.x66_c00252{left:396.900000px;}
.x1_c00252{left:406.620000px;}
.x12_c00252{left:417.690000px;}
.x53_c00252{left:419.040000px;}
.x9_c00252{left:427.950000px;}
.x2_c00252{left:429.570000px;}
.x13_c00252{left:439.290000px;}
.x70_c00252{left:440.910000px;}
.x32_c00252{left:451.170000px;}
.x6c_c00252{left:453.060000px;}
.x3b_c00252{left:461.700000px;}
.x6e_c00252{left:463.216500px;}
.x14_c00252{left:471.960000px;}
.x1e_c00252{left:473.580000px;}
.x71_c00252{left:475.470000px;}
.x3_c00252{left:478.710000px;}
.x33_c00252{left:483.300000px;}
.x2d_c00252{left:484.920000px;}
.x56_c00252{left:495.720000px;}
.x5e_c00252{left:506.520000px;}
.x2e_c00252{left:517.320000px;}
.x72_c00252{left:518.400000px;}
.x3c_c00252{left:527.580000px;}
.x5f_c00252{left:538.650000px;}
.xa_c00252{left:539.730000px;}
.x15_c00252{left:549.720000px;}
.x47_c00252{left:551.880000px;}
.x1f_c00252{left:559.980000px;}
.x43_c00252{left:561.870000px;}
.x27_c00252{left:570.780000px;}
.xb_c00252{left:572.940000px;}
.x34_c00252{left:582.390000px;}
.x3d_c00252{left:583.740000px;}
.x16_c00252{left:594.270000px;}
.x6f_c00252{left:604.681500px;}
.x42_c00252{left:605.880000px;}
.x2f_c00252{left:615.060000px;}
.x17_c00252{left:626.400000px;}
.x44_c00252{left:638.550000px;}
.x38_c00252{left:649.080000px;}
.x60_c00252{left:650.160000px;}
.x20_c00252{left:660.420000px;}
.x48_c00252{left:661.770000px;}
.x54_c00252{left:669.870000px;}
.x5b_c00252{left:671.220000px;}
.xc_c00252{left:681.750000px;}
.x35_c00252{left:692.280000px;}
.x73_c00252{left:693.900000px;}
.x30_c00252{left:704.160000px;}
.x40_c00252{left:715.230000px;}
.x4b_c00252{left:716.580000px;}
.x18_c00252{left:725.220000px;}
.x3e_c00252{left:726.300000px;}
.x28_c00252{left:735.750000px;}
.x55_c00252{left:737.100000px;}
.xd_c00252{left:747.090000px;}
.x4e_c00252{left:748.170000px;}
.x49_c00252{left:759.510000px;}
.x21_c00252{left:769.770000px;}
.x19_c00252{left:770.850000px;}
.x29_c00252{left:780.030000px;}
.x61_c00252{left:781.110000px;}
.xe_c00252{left:782.190000px;}
.x39_c00252{left:792.720000px;}
.x58_c00252{left:801.900000px;}
.x22_c00252{left:802.980000px;}
.x1a_c00252{left:813.510000px;}
.x62_c00252{left:815.400000px;}
.xf_c00252{left:825.120000px;}
.x36_c00252{left:835.110000px;}
.x6d_c00252{left:837.540000px;}
.x7e_c00252{left:909.900000px;}
.x7c_c00252{left:912.060000px;}
.x7d_c00252{left:913.140000px;}
@media print{
.v0_c00252{vertical-align:0.000000pt;}
.ls0_c00252{letter-spacing:0.000000pt;}
.ws0_c00252{word-spacing:0.000000pt;}
._0_c00252{width:1.159804pt;}
._1_c00252{width:9.110225pt;}
.fs8_c00252{font-size:16.000000pt;}
.fs9_c00252{font-size:21.333333pt;}
.fs6_c00252{font-size:26.666667pt;}
.fs7_c00252{font-size:53.334640pt;}
.fs3_c00252{font-size:64.000000pt;}
.fs2_c00252{font-size:69.333333pt;}
.fs0_c00252{font-size:74.666667pt;}
.fs5_c00252{font-size:80.000000pt;}
.fs4_c00252{font-size:85.333333pt;}
.fs1_c00252{font-size:90.666667pt;}
.y0_c00252{bottom:0.000000pt;}
.y31_c00252{bottom:26.975763pt;}
.y30_c00252{bottom:27.320200pt;}
.y2f_c00252{bottom:27.719984pt;}
.y2e_c00252{bottom:27.936713pt;}
.y2d_c00252{bottom:28.064365pt;}
.y2c_c00252{bottom:28.269344pt;}
.y2b_c00252{bottom:28.484403pt;}
.y2a_c00252{bottom:28.956492pt;}
.y29_c00252{bottom:29.507495pt;}
.y28_c00252{bottom:29.761333pt;}
.y27_c00252{bottom:59.296000pt;}
.y26_c00252{bottom:83.470667pt;}
.y33_c00252{bottom:92.880000pt;}
.y25_c00252{bottom:110.200000pt;}
.y24_c00252{bottom:110.473333pt;}
.y23_c00252{bottom:111.437333pt;}
.y22_c00252{bottom:112.117333pt;}
.y21_c00252{bottom:112.317333pt;}
.y20_c00252{bottom:112.530667pt;}
.y1f_c00252{bottom:113.214667pt;}
.y1e_c00252{bottom:113.413333pt;}
.y1d_c00252{bottom:113.621333pt;}
.y1c_c00252{bottom:114.241333pt;}
.y1b_c00252{bottom:141.070667pt;}
.y1a_c00252{bottom:225.568000pt;}
.y19_c00252{bottom:254.176000pt;}
.y18_c00252{bottom:281.865333pt;}
.y17_c00252{bottom:310.424000pt;}
.y16_c00252{bottom:338.241333pt;}
.y32_c00252{bottom:344.880000pt;}
.y15_c00252{bottom:366.721333pt;}
.y14_c00252{bottom:395.213333pt;}
.y13_c00252{bottom:423.773333pt;}
.y12_c00252{bottom:451.785333pt;}
.y11_c00252{bottom:479.510667pt;}
.y10_c00252{bottom:506.774667pt;}
.yf_c00252{bottom:534.644000pt;}
.ye_c00252{bottom:563.200000pt;}
.yd_c00252{bottom:591.288000pt;}
.yc_c00252{bottom:619.920000pt;}
.yb_c00252{bottom:647.280000pt;}
.ya_c00252{bottom:676.320000pt;}
.y9_c00252{bottom:704.806667pt;}
.y8_c00252{bottom:733.126667pt;}
.y7_c00252{bottom:761.040000pt;}
.y6_c00252{bottom:788.572000pt;}
.y5_c00252{bottom:816.720000pt;}
.y4_c00252{bottom:844.244000pt;}
.y3_c00252{bottom:872.880000pt;}
.y2_c00252{bottom:900.344000pt;}
.y1_c00252{bottom:952.080000pt;}
.ha_c00252{height:16.000000pt;}
.hb_c00252{height:21.333333pt;}
.h8_c00252{height:26.666667pt;}
.h9_c00252{height:53.334640pt;}
.h5_c00252{height:64.000000pt;}
.h4_c00252{height:69.333333pt;}
.h2_c00252{height:74.666667pt;}
.h7_c00252{height:80.000000pt;}
.h6_c00252{height:85.333333pt;}
.h3_c00252{height:90.666667pt;}
.h0_c00252{height:1003.866667pt;}
.h1_c00252{height:1004.000000pt;}
.w0_c00252{width:813.333333pt;}
.x0_c00252{left:0.000000pt;}
.x4f_c00252{left:112.800000pt;}
.x4a_c00252{left:120.240000pt;}
.x50_c00252{left:128.160000pt;}
.x59_c00252{left:129.840000pt;}
.x63_c00252{left:133.200000pt;}
.x3f_c00252{left:134.400000pt;}
.x2a_c00252{left:136.080000pt;}
.x4_c00252{left:137.520000pt;}
.x69_c00252{left:138.480000pt;}
.x7b_c00252{left:140.292000pt;}
.x74_c00252{left:149.040000pt;}
.x75_c00252{left:158.400000pt;}
.x23_c00252{left:166.560000pt;}
.x5d_c00252{left:167.520000pt;}
.x1b_c00252{left:175.440000pt;}
.x5_c00252{left:176.640000pt;}
.x4c_c00252{left:186.480000pt;}
.x76_c00252{left:187.920000pt;}
.x1c_c00252{left:195.120000pt;}
.x10_c00252{left:196.320000pt;}
.x6a_c00252{left:198.240000pt;}
.x5a_c00252{left:205.440000pt;}
.x64_c00252{left:206.400000pt;}
.x77_c00252{left:208.080000pt;}
.x37_c00252{left:215.520000pt;}
.x78_c00252{left:218.880000pt;}
.x45_c00252{left:225.840000pt;}
.x79_c00252{left:227.520000pt;}
.x24_c00252{left:233.760000pt;}
.x6_c00252{left:235.200000pt;}
.x67_c00252{left:236.160000pt;}
.x7a_c00252{left:239.760000pt;}
.x57_c00252{left:244.080000pt;}
.x51_c00252{left:245.040000pt;}
.x1d_c00252{left:253.680000pt;}
.x65_c00252{left:255.360000pt;}
.x7_c00252{left:264.000000pt;}
.x41_c00252{left:265.440000pt;}
.x2b_c00252{left:274.560000pt;}
.x11_c00252{left:282.720000pt;}
.x5c_c00252{left:284.880000pt;}
.x25_c00252{left:294.240000pt;}
.x4d_c00252{left:302.880000pt;}
.x46_c00252{left:304.080000pt;}
.x6b_c00252{left:305.760000pt;}
.x31_c00252{left:313.920000pt;}
.x2c_c00252{left:323.040000pt;}
.x68_c00252{left:328.080000pt;}
.x52_c00252{left:332.640000pt;}
.x26_c00252{left:333.600000pt;}
.x3a_c00252{left:342.480000pt;}
.x8_c00252{left:351.120000pt;}
.x66_c00252{left:352.800000pt;}
.x1_c00252{left:361.440000pt;}
.x12_c00252{left:371.280000pt;}
.x53_c00252{left:372.480000pt;}
.x9_c00252{left:380.400000pt;}
.x2_c00252{left:381.840000pt;}
.x13_c00252{left:390.480000pt;}
.x70_c00252{left:391.920000pt;}
.x32_c00252{left:401.040000pt;}
.x6c_c00252{left:402.720000pt;}
.x3b_c00252{left:410.400000pt;}
.x6e_c00252{left:411.748000pt;}
.x14_c00252{left:419.520000pt;}
.x1e_c00252{left:420.960000pt;}
.x71_c00252{left:422.640000pt;}
.x3_c00252{left:425.520000pt;}
.x33_c00252{left:429.600000pt;}
.x2d_c00252{left:431.040000pt;}
.x56_c00252{left:440.640000pt;}
.x5e_c00252{left:450.240000pt;}
.x2e_c00252{left:459.840000pt;}
.x72_c00252{left:460.800000pt;}
.x3c_c00252{left:468.960000pt;}
.x5f_c00252{left:478.800000pt;}
.xa_c00252{left:479.760000pt;}
.x15_c00252{left:488.640000pt;}
.x47_c00252{left:490.560000pt;}
.x1f_c00252{left:497.760000pt;}
.x43_c00252{left:499.440000pt;}
.x27_c00252{left:507.360000pt;}
.xb_c00252{left:509.280000pt;}
.x34_c00252{left:517.680000pt;}
.x3d_c00252{left:518.880000pt;}
.x16_c00252{left:528.240000pt;}
.x6f_c00252{left:537.494667pt;}
.x42_c00252{left:538.560000pt;}
.x2f_c00252{left:546.720000pt;}
.x17_c00252{left:556.800000pt;}
.x44_c00252{left:567.600000pt;}
.x38_c00252{left:576.960000pt;}
.x60_c00252{left:577.920000pt;}
.x20_c00252{left:587.040000pt;}
.x48_c00252{left:588.240000pt;}
.x54_c00252{left:595.440000pt;}
.x5b_c00252{left:596.640000pt;}
.xc_c00252{left:606.000000pt;}
.x35_c00252{left:615.360000pt;}
.x73_c00252{left:616.800000pt;}
.x30_c00252{left:625.920000pt;}
.x40_c00252{left:635.760000pt;}
.x4b_c00252{left:636.960000pt;}
.x18_c00252{left:644.640000pt;}
.x3e_c00252{left:645.600000pt;}
.x28_c00252{left:654.000000pt;}
.x55_c00252{left:655.200000pt;}
.xd_c00252{left:664.080000pt;}
.x4e_c00252{left:665.040000pt;}
.x49_c00252{left:675.120000pt;}
.x21_c00252{left:684.240000pt;}
.x19_c00252{left:685.200000pt;}
.x29_c00252{left:693.360000pt;}
.x61_c00252{left:694.320000pt;}
.xe_c00252{left:695.280000pt;}
.x39_c00252{left:704.640000pt;}
.x58_c00252{left:712.800000pt;}
.x22_c00252{left:713.760000pt;}
.x1a_c00252{left:723.120000pt;}
.x62_c00252{left:724.800000pt;}
.xf_c00252{left:733.440000pt;}
.x36_c00252{left:742.320000pt;}
.x6d_c00252{left:744.480000pt;}
.x7e_c00252{left:808.800000pt;}
.x7c_c00252{left:810.720000pt;}
.x7d_c00252{left:811.680000pt;}
}





/* 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_c00253 {
    display:none;
  }
  .loading-indicator_c00253.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00253 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_c00253 { 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_c00253" -> "#page-container .classname_c00253")
 */
.pf_c00253 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00253 { /* 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_c00253.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00253 { /* 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_c00253 { /* 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_c00253 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00253 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00253 {overflow:visible;}
  }
}
.c_c00253 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00253 { /* 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_c00253:after { /* webkit #35443 */
  content: '';
}
.t_c00253:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00253 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 */
}
.__c00253 { /* 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_c00253 { /* info for Javascript */
  display:none;
}
.l_c00253 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00253 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00253 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00253: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_c00253 {
    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_c00253.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00253.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_c00253 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00253{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00253;src:url('chunks/assets/font_fabf4b590f7fb32aea93ffb2.woff2')format("woff");}.ff1_c00253{font-family:ff1_c00253;line-height:1.000000;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;}
.m1f_c00253{transform:matrix(0.035575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.035575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.035575,0.000000,0.000000,0.250000,0,0);}
.m20_c00253{transform:matrix(0.037500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.037500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.037500,0.000000,0.000000,0.250000,0,0);}
.m7_c00253{transform:matrix(0.040560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.040560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.040560,0.000000,0.000000,0.250000,0,0);}
.md_c00253{transform:matrix(0.046385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.046385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.046385,0.000000,0.000000,0.250000,0,0);}
.m12_c00253{transform:matrix(0.047435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.047435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.047435,0.000000,0.000000,0.250000,0,0);}
.m27_c00253{transform:matrix(0.047730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.047730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.047730,0.000000,0.000000,0.250000,0,0);}
.m1d_c00253{transform:matrix(0.056250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.056250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.056250,0.000000,0.000000,0.250000,0,0);}
.m9_c00253{transform:matrix(0.060585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060585,0.000000,0.000000,0.250000,0,0);}
.m13_c00253{transform:matrix(0.061845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.061845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.061845,0.000000,0.000000,0.250000,0,0);}
.mb_c00253{transform:matrix(0.063640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.063640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.063640,0.000000,0.000000,0.250000,0,0);}
.m32_c00253{transform:matrix(0.065600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065600,0.000000,0.000000,0.250000,0,0);}
.m10_c00253{transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);}
.m21_c00253{transform:matrix(0.102010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102010,0.000000,0.000000,0.250000,0,0);}
.m16_c00253{transform:matrix(0.109200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109200,0.000000,0.000000,0.250000,0,0);}
.m31_c00253{transform:matrix(0.111370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111370,0.000000,0.000000,0.250000,0,0);}
.m2d_c00253{transform:matrix(0.115695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115695,0.000000,0.000000,0.250000,0,0);}
.m1_c00253{transform:matrix(0.133065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133065,0.000000,0.000000,0.250000,0,0);}
.ma_c00253{transform:matrix(0.139155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139155,0.000000,0.000000,0.250000,0,0);}
.m34_c00253{transform:matrix(0.161075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161075,0.000000,0.000000,0.250000,0,0);}
.m6_c00253{transform:matrix(0.167705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167705,0.000000,0.000000,0.250000,0,0);}
.m15_c00253{transform:matrix(0.171025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171025,0.000000,0.000000,0.250000,0,0);}
.m2a_c00253{transform:matrix(0.191655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191655,0.000000,0.000000,0.250000,0,0);}
.m2_c00253{transform:matrix(0.192355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192355,0.000000,0.000000,0.250000,0,0);}
.m3_c00253{transform:matrix(0.196675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196675,0.000000,0.000000,0.250000,0,0);}
.m4_c00253{transform:matrix(0.201245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201245,0.000000,0.000000,0.250000,0,0);}
.m5_c00253{transform:matrix(0.205295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205295,0.000000,0.000000,0.250000,0,0);}
.m11_c00253{transform:matrix(0.210950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210950,0.000000,0.000000,0.250000,0,0);}
.mc_c00253{transform:matrix(0.211370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211370,0.000000,0.000000,0.250000,0,0);}
.m28_c00253{transform:matrix(0.211735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211735,0.000000,0.000000,0.250000,0,0);}
.m0_c00253{transform:matrix(0.213930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213930,0.000000,0.000000,0.250000,0,0);}
.m44_c00253{transform:matrix(0.214420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214420,0.000000,0.000000,0.250000,0,0);}
.m45_c00253{transform:matrix(0.226415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226415,0.000000,0.000000,0.250000,0,0);}
.m3e_c00253{transform:matrix(0.233080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233080,0.000000,0.000000,0.250000,0,0);}
.m17_c00253{transform:matrix(0.255440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255440,0.000000,0.000000,0.250000,0,0);}
.mf_c00253{transform:matrix(0.258290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258290,0.000000,0.000000,0.250000,0,0);}
.m30_c00253{transform:matrix(0.259725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259725,0.000000,0.000000,0.250000,0,0);}
.m3c_c00253{transform:matrix(0.285100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285100,0.000000,0.000000,0.250000,0,0);}
.m25_c00253{transform:matrix(0.294035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294035,0.000000,0.000000,0.250000,0,0);}
.m1e_c00253{transform:matrix(0.294130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294130,0.000000,0.000000,0.250000,0,0);}
.m33_c00253{transform:matrix(0.312580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312580,0.000000,0.000000,0.250000,0,0);}
.m14_c00253{transform:matrix(0.322490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322490,0.000000,0.000000,0.250000,0,0);}
.m35_c00253{transform:matrix(0.364820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364820,0.000000,0.000000,0.250000,0,0);}
.m18_c00253{transform:matrix(0.381365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381365,0.000000,0.000000,0.250000,0,0);}
.m19_c00253{transform:matrix(0.384840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384840,0.000000,0.000000,0.250000,0,0);}
.me_c00253{transform:matrix(0.388990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388990,0.000000,0.000000,0.250000,0,0);}
.m41_c00253{transform:matrix(0.389600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389600,0.000000,0.000000,0.250000,0,0);}
.m2c_c00253{transform:matrix(0.399195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399195,0.000000,0.000000,0.250000,0,0);}
.m24_c00253{transform:matrix(0.401890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401890,0.000000,0.000000,0.250000,0,0);}
.m39_c00253{transform:matrix(0.407370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407370,0.000000,0.000000,0.250000,0,0);}
.m1c_c00253{transform:matrix(0.415935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415935,0.000000,0.000000,0.250000,0,0);}
.m2f_c00253{transform:matrix(0.436870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436870,0.000000,0.000000,0.250000,0,0);}
.m43_c00253{transform:matrix(0.453030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453030,0.000000,0.000000,0.250000,0,0);}
.m38_c00253{transform:matrix(0.468230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468230,0.000000,0.000000,0.250000,0,0);}
.m36_c00253{transform:matrix(0.469765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469765,0.000000,0.000000,0.250000,0,0);}
.m29_c00253{transform:matrix(0.509365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509365,0.000000,0.000000,0.250000,0,0);}
.m23_c00253{transform:matrix(0.533395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533395,0.000000,0.000000,0.250000,0,0);}
.m2e_c00253{transform:matrix(0.554940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554940,0.000000,0.000000,0.250000,0,0);}
.m3a_c00253{transform:matrix(0.563510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563510,0.000000,0.000000,0.250000,0,0);}
.m3d_c00253{transform:matrix(0.587185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.587185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.587185,0.000000,0.000000,0.250000,0,0);}
.m26_c00253{transform:matrix(0.598050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598050,0.000000,0.000000,0.250000,0,0);}
.m37_c00253{transform:matrix(0.612265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612265,0.000000,0.000000,0.250000,0,0);}
.m2b_c00253{transform:matrix(0.624440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.624440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.624440,0.000000,0.000000,0.250000,0,0);}
.m8_c00253{transform:matrix(0.625565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625565,0.000000,0.000000,0.250000,0,0);}
.m22_c00253{transform:matrix(0.645580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.645580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.645580,0.000000,0.000000,0.250000,0,0);}
.m1b_c00253{transform:matrix(0.674165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.674165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.674165,0.000000,0.000000,0.250000,0,0);}
.m3b_c00253{transform:matrix(0.707745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.707745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.707745,0.000000,0.000000,0.250000,0,0);}
.m1a_c00253{transform:matrix(0.715680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.715680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.715680,0.000000,0.000000,0.250000,0,0);}
.m42_c00253{transform:matrix(0.804985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.804985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.804985,0.000000,0.000000,0.250000,0,0);}
.m3f_c00253{transform:matrix(1.005475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.005475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.005475,0.000000,0.000000,0.250000,0,0);}
.m40_c00253{transform:matrix(1.295570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.295570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.295570,0.000000,0.000000,0.250000,0,0);}
.v0_c00253{vertical-align:0.000000px;}
.ls0_c00253{letter-spacing:0.000000px;}
.sc__c00253{text-shadow:none;}
.sc0_c00253{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__c00253{-webkit-text-stroke:0px transparent;}
.sc0_c00253{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00253{word-spacing:0.000000px;}
._0_c00253{width:2548.874209px;}
.fc0_c00253{color:transparent;}
.fs3_c00253{font-size:12.000000px;}
.fs5_c00253{font-size:18.000000px;}
.fs4_c00253{font-size:24.000000px;}
.fs0_c00253{font-size:30.000000px;}
.fs1_c00253{font-size:42.000000px;}
.fs6_c00253{font-size:48.000000px;}
.fs2_c00253{font-size:54.000000px;}
.y0_c00253{bottom:0.000000px;}
.y12_c00253{bottom:144.456000px;}
.y13_c00253{bottom:149.580000px;}
.y11_c00253{bottom:159.030000px;}
.ye_c00253{bottom:201.546000px;}
.yf_c00253{bottom:204.930000px;}
.y10_c00253{bottom:206.010000px;}
.yd_c00253{bottom:206.680500px;}
.yc_c00253{bottom:220.186500px;}
.yb_c00253{bottom:224.958000px;}
.ya_c00253{bottom:227.548500px;}
.y9_c00253{bottom:234.589500px;}
.y8_c00253{bottom:240.300000px;}
.y7_c00253{bottom:923.400000px;}
.y6_c00253{bottom:928.530000px;}
.y5_c00253{bottom:935.550000px;}
.y4_c00253{bottom:940.410000px;}
.y3_c00253{bottom:949.050000px;}
.y2_c00253{bottom:960.120000px;}
.y1_c00253{bottom:972.270000px;}
.h5_c00253{height:12.000000px;}
.h7_c00253{height:18.000000px;}
.h6_c00253{height:24.000000px;}
.h2_c00253{height:30.000000px;}
.h3_c00253{height:42.000000px;}
.h8_c00253{height:48.000000px;}
.h4_c00253{height:54.000000px;}
.h0_c00253{height:1115.640000px;}
.h1_c00253{height:1116.000000px;}
.w0_c00253{width:915.000000px;}
.x0_c00253{left:0.000000px;}
.x2a_c00253{left:279.450000px;}
.x2b_c00253{left:288.900000px;}
.xd_c00253{left:290.790000px;}
.x1c_c00253{left:298.890000px;}
.x3_c00253{left:302.940000px;}
.xe_c00253{left:304.290000px;}
.x1d_c00253{left:315.360000px;}
.x2c_c00253{left:318.330000px;}
.xf_c00253{left:329.130000px;}
.x2d_c00253{left:331.560000px;}
.x1e_c00253{left:355.320000px;}
.x2e_c00253{left:370.440000px;}
.x1f_c00253{left:373.140000px;}
.x10_c00253{left:387.180000px;}
.x4_c00253{left:388.260000px;}
.x11_c00253{left:403.110000px;}
.x20_c00253{left:405.810000px;}
.x5_c00253{left:417.150000px;}
.x21_c00253{left:423.360000px;}
.x2f_c00253{left:437.670000px;}
.x12_c00253{left:458.730000px;}
.x22_c00253{left:460.080000px;}
.x30_c00253{left:478.980000px;}
.x13_c00253{left:480.060000px;}
.x23_c00253{left:483.030000px;}
.x24_c00253{left:491.400000px;}
.x31_c00253{left:506.250000px;}
.x6_c00253{left:514.080000px;}
.x14_c00253{left:559.980000px;}
.x7_c00253{left:562.410000px;}
.x25_c00253{left:571.050000px;}
.x3c_c00253{left:582.660000px;}
.x26_c00253{left:598.050000px;}
.x15_c00253{left:599.130000px;}
.x3d_c00253{left:605.070000px;}
.x32_c00253{left:612.090000px;}
.x27_c00253{left:613.440000px;}
.x8_c00253{left:616.140000px;}
.x16_c00253{left:636.930000px;}
.x3e_c00253{left:641.250000px;}
.x9_c00253{left:655.020000px;}
.x17_c00253{left:659.340000px;}
.x18_c00253{left:665.010000px;}
.x34_c00253{left:668.520000px;}
.xa_c00253{left:677.700000px;}
.x28_c00253{left:685.530000px;}
.x35_c00253{left:688.230000px;}
.xb_c00253{left:699.300000px;}
.x19_c00253{left:701.730000px;}
.x37_c00253{left:705.780000px;}
.x38_c00253{left:707.130000px;}
.x36_c00253{left:714.420000px;}
.x29_c00253{left:715.500000px;}
.x1a_c00253{left:719.550000px;}
.x33_c00253{left:721.440000px;}
.xc_c00253{left:739.800000px;}
.x1b_c00253{left:747.090000px;}
.x1_c00253{left:867.510000px;}
.x2_c00253{left:868.590000px;}
.x39_c00253{left:882.900000px;}
.x3a_c00253{left:886.680000px;}
.x3b_c00253{left:889.110000px;}
@media print{
.v0_c00253{vertical-align:0.000000pt;}
.ls0_c00253{letter-spacing:0.000000pt;}
.ws0_c00253{word-spacing:0.000000pt;}
._0_c00253{width:2265.665964pt;}
.fs3_c00253{font-size:10.666667pt;}
.fs5_c00253{font-size:16.000000pt;}
.fs4_c00253{font-size:21.333333pt;}
.fs0_c00253{font-size:26.666667pt;}
.fs1_c00253{font-size:37.333333pt;}
.fs6_c00253{font-size:42.666667pt;}
.fs2_c00253{font-size:48.000000pt;}
.y0_c00253{bottom:0.000000pt;}
.y12_c00253{bottom:128.405333pt;}
.y13_c00253{bottom:132.960000pt;}
.y11_c00253{bottom:141.360000pt;}
.ye_c00253{bottom:179.152000pt;}
.yf_c00253{bottom:182.160000pt;}
.y10_c00253{bottom:183.120000pt;}
.yd_c00253{bottom:183.716000pt;}
.yc_c00253{bottom:195.721333pt;}
.yb_c00253{bottom:199.962667pt;}
.ya_c00253{bottom:202.265333pt;}
.y9_c00253{bottom:208.524000pt;}
.y8_c00253{bottom:213.600000pt;}
.y7_c00253{bottom:820.800000pt;}
.y6_c00253{bottom:825.360000pt;}
.y5_c00253{bottom:831.600000pt;}
.y4_c00253{bottom:835.920000pt;}
.y3_c00253{bottom:843.600000pt;}
.y2_c00253{bottom:853.440000pt;}
.y1_c00253{bottom:864.240000pt;}
.h5_c00253{height:10.666667pt;}
.h7_c00253{height:16.000000pt;}
.h6_c00253{height:21.333333pt;}
.h2_c00253{height:26.666667pt;}
.h3_c00253{height:37.333333pt;}
.h8_c00253{height:42.666667pt;}
.h4_c00253{height:48.000000pt;}
.h0_c00253{height:991.680000pt;}
.h1_c00253{height:992.000000pt;}
.w0_c00253{width:813.333333pt;}
.x0_c00253{left:0.000000pt;}
.x2a_c00253{left:248.400000pt;}
.x2b_c00253{left:256.800000pt;}
.xd_c00253{left:258.480000pt;}
.x1c_c00253{left:265.680000pt;}
.x3_c00253{left:269.280000pt;}
.xe_c00253{left:270.480000pt;}
.x1d_c00253{left:280.320000pt;}
.x2c_c00253{left:282.960000pt;}
.xf_c00253{left:292.560000pt;}
.x2d_c00253{left:294.720000pt;}
.x1e_c00253{left:315.840000pt;}
.x2e_c00253{left:329.280000pt;}
.x1f_c00253{left:331.680000pt;}
.x10_c00253{left:344.160000pt;}
.x4_c00253{left:345.120000pt;}
.x11_c00253{left:358.320000pt;}
.x20_c00253{left:360.720000pt;}
.x5_c00253{left:370.800000pt;}
.x21_c00253{left:376.320000pt;}
.x2f_c00253{left:389.040000pt;}
.x12_c00253{left:407.760000pt;}
.x22_c00253{left:408.960000pt;}
.x30_c00253{left:425.760000pt;}
.x13_c00253{left:426.720000pt;}
.x23_c00253{left:429.360000pt;}
.x24_c00253{left:436.800000pt;}
.x31_c00253{left:450.000000pt;}
.x6_c00253{left:456.960000pt;}
.x14_c00253{left:497.760000pt;}
.x7_c00253{left:499.920000pt;}
.x25_c00253{left:507.600000pt;}
.x3c_c00253{left:517.920000pt;}
.x26_c00253{left:531.600000pt;}
.x15_c00253{left:532.560000pt;}
.x3d_c00253{left:537.840000pt;}
.x32_c00253{left:544.080000pt;}
.x27_c00253{left:545.280000pt;}
.x8_c00253{left:547.680000pt;}
.x16_c00253{left:566.160000pt;}
.x3e_c00253{left:570.000000pt;}
.x9_c00253{left:582.240000pt;}
.x17_c00253{left:586.080000pt;}
.x18_c00253{left:591.120000pt;}
.x34_c00253{left:594.240000pt;}
.xa_c00253{left:602.400000pt;}
.x28_c00253{left:609.360000pt;}
.x35_c00253{left:611.760000pt;}
.xb_c00253{left:621.600000pt;}
.x19_c00253{left:623.760000pt;}
.x37_c00253{left:627.360000pt;}
.x38_c00253{left:628.560000pt;}
.x36_c00253{left:635.040000pt;}
.x29_c00253{left:636.000000pt;}
.x1a_c00253{left:639.600000pt;}
.x33_c00253{left:641.280000pt;}
.xc_c00253{left:657.600000pt;}
.x1b_c00253{left:664.080000pt;}
.x1_c00253{left:771.120000pt;}
.x2_c00253{left:772.080000pt;}
.x39_c00253{left:784.800000pt;}
.x3a_c00253{left:788.160000pt;}
.x3b_c00253{left:790.320000pt;}
}





/* 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_c00254 {
    display:none;
  }
  .loading-indicator_c00254.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00254 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_c00254 { 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_c00254" -> "#page-container .classname_c00254")
 */
.pf_c00254 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00254 { /* 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_c00254.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00254 { /* 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_c00254 { /* 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_c00254 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00254 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00254 {overflow:visible;}
  }
}
.c_c00254 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00254 { /* 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_c00254:after { /* webkit #35443 */
  content: '';
}
.t_c00254:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00254 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 */
}
.__c00254 { /* 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_c00254 { /* info for Javascript */
  display:none;
}
.l_c00254 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00254 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00254 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00254: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_c00254 {
    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_c00254.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00254.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_c00254 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00254{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00254;src:url('chunks/assets/font_c605e72f209fc835e906f064.woff2')format("woff");}.ff1_c00254{font-family:ff1_c00254;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mdc_c00254{transform:matrix(0.036250,0.000181,-0.001250,0.249997,0,0);-ms-transform:matrix(0.036250,0.000181,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.036250,0.000181,-0.001250,0.249997,0,0);}
.m0_c00254{transform:matrix(0.102010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102010,0.000000,0.000000,0.250000,0,0);}
.m89_c00254{transform:matrix(0.123068,0.000615,-0.001250,0.249997,0,0);-ms-transform:matrix(0.123068,0.000615,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.123068,0.000615,-0.001250,0.249997,0,0);}
.mb6_c00254{transform:matrix(0.123108,0.000616,-0.001250,0.249997,0,0);-ms-transform:matrix(0.123108,0.000616,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.123108,0.000616,-0.001250,0.249997,0,0);}
.mc1_c00254{transform:matrix(0.138518,0.000693,-0.001250,0.249997,0,0);-ms-transform:matrix(0.138518,0.000693,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.138518,0.000693,-0.001250,0.249997,0,0);}
.me1_c00254{transform:matrix(0.140493,0.000702,-0.001250,0.249997,0,0);-ms-transform:matrix(0.140493,0.000702,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.140493,0.000702,-0.001250,0.249997,0,0);}
.m169_c00254{transform:matrix(0.147385,0.001179,-0.002000,0.249992,0,0);-ms-transform:matrix(0.147385,0.001179,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.147385,0.001179,-0.002000,0.249992,0,0);}
.m16b_c00254{transform:matrix(0.147515,0.001180,-0.002000,0.249992,0,0);-ms-transform:matrix(0.147515,0.001180,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.147515,0.001180,-0.002000,0.249992,0,0);}
.m16a_c00254{transform:matrix(0.148540,0.001188,-0.002000,0.249992,0,0);-ms-transform:matrix(0.148540,0.001188,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.148540,0.001188,-0.002000,0.249992,0,0);}
.m168_c00254{transform:matrix(0.159805,0.001278,-0.002000,0.249992,0,0);-ms-transform:matrix(0.159805,0.001278,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.159805,0.001278,-0.002000,0.249992,0,0);}
.m167_c00254{transform:matrix(0.160990,0.001288,-0.002000,0.249992,0,0);-ms-transform:matrix(0.160990,0.001288,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.160990,0.001288,-0.002000,0.249992,0,0);}
.m71_c00254{transform:matrix(0.163965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163965,0.000000,0.000000,0.250000,0,0);}
.m9a_c00254{transform:matrix(0.164523,0.000823,-0.001250,0.249997,0,0);-ms-transform:matrix(0.164523,0.000823,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.164523,0.000823,-0.001250,0.249997,0,0);}
.me7_c00254{transform:matrix(0.164883,0.000824,-0.001250,0.249997,0,0);-ms-transform:matrix(0.164883,0.000824,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.164883,0.000824,-0.001250,0.249997,0,0);}
.m16c_c00254{transform:matrix(0.165615,0.001325,-0.002000,0.249992,0,0);-ms-transform:matrix(0.165615,0.001325,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.165615,0.001325,-0.002000,0.249992,0,0);}
.m97_c00254{transform:matrix(0.166983,0.000835,-0.001250,0.249997,0,0);-ms-transform:matrix(0.166983,0.000835,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.166983,0.000835,-0.001250,0.249997,0,0);}
.m16d_c00254{transform:matrix(0.169400,0.001355,-0.002000,0.249992,0,0);-ms-transform:matrix(0.169400,0.001355,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.169400,0.001355,-0.002000,0.249992,0,0);}
.m152_c00254{transform:matrix(0.169443,0.001525,-0.002250,0.249990,0,0);-ms-transform:matrix(0.169443,0.001525,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.169443,0.001525,-0.002250,0.249990,0,0);}
.m155_c00254{transform:matrix(0.169863,0.001529,-0.002250,0.249990,0,0);-ms-transform:matrix(0.169863,0.001529,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.169863,0.001529,-0.002250,0.249990,0,0);}
.m13b_c00254{transform:matrix(0.170727,0.001024,-0.001500,0.249996,0,0);-ms-transform:matrix(0.170727,0.001024,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.170727,0.001024,-0.001500,0.249996,0,0);}
.m140_c00254{transform:matrix(0.170872,0.001025,-0.001500,0.249996,0,0);-ms-transform:matrix(0.170872,0.001025,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.170872,0.001025,-0.001500,0.249996,0,0);}
.me4_c00254{transform:matrix(0.171038,0.000855,-0.001250,0.249997,0,0);-ms-transform:matrix(0.171038,0.000855,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.171038,0.000855,-0.001250,0.249997,0,0);}
.me5_c00254{transform:matrix(0.171203,0.000856,-0.001250,0.249997,0,0);-ms-transform:matrix(0.171203,0.000856,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.171203,0.000856,-0.001250,0.249997,0,0);}
.m158_c00254{transform:matrix(0.172303,0.001551,-0.002250,0.249990,0,0);-ms-transform:matrix(0.172303,0.001551,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.172303,0.001551,-0.002250,0.249990,0,0);}
.mdf_c00254{transform:matrix(0.172308,0.000862,-0.001250,0.249997,0,0);-ms-transform:matrix(0.172308,0.000862,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.172308,0.000862,-0.001250,0.249997,0,0);}
.m14f_c00254{transform:matrix(0.172583,0.001553,-0.002250,0.249990,0,0);-ms-transform:matrix(0.172583,0.001553,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.172583,0.001553,-0.002250,0.249990,0,0);}
.m142_c00254{transform:matrix(0.172832,0.001037,-0.001500,0.249996,0,0);-ms-transform:matrix(0.172832,0.001037,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.172832,0.001037,-0.001500,0.249996,0,0);}
.m6e_c00254{transform:matrix(0.172870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172870,0.000000,0.000000,0.250000,0,0);}
.m11e_c00254{transform:matrix(0.173783,0.000869,-0.001250,0.249997,0,0);-ms-transform:matrix(0.173783,0.000869,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.173783,0.000869,-0.001250,0.249997,0,0);}
.m96_c00254{transform:matrix(0.174238,0.000871,-0.001250,0.249997,0,0);-ms-transform:matrix(0.174238,0.000871,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.174238,0.000871,-0.001250,0.249997,0,0);}
.mb0_c00254{transform:matrix(0.175025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175025,0.000000,0.000000,0.250000,0,0);}
.m166_c00254{transform:matrix(0.175279,0.001402,-0.002000,0.249992,0,0);-ms-transform:matrix(0.175279,0.001402,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.175279,0.001402,-0.002000,0.249992,0,0);}
.me8_c00254{transform:matrix(0.175413,0.000877,-0.001250,0.249997,0,0);-ms-transform:matrix(0.175413,0.000877,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.175413,0.000877,-0.001250,0.249997,0,0);}
.m125_c00254{transform:matrix(0.175808,0.000879,-0.001250,0.249997,0,0);-ms-transform:matrix(0.175808,0.000879,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.175808,0.000879,-0.001250,0.249997,0,0);}
.m73_c00254{transform:matrix(0.175915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175915,0.000000,0.000000,0.250000,0,0);}
.m75_c00254{transform:matrix(0.176140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176140,0.000000,0.000000,0.250000,0,0);}
.m139_c00254{transform:matrix(0.176902,0.001061,-0.001500,0.249996,0,0);-ms-transform:matrix(0.176902,0.001061,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.176902,0.001061,-0.001500,0.249996,0,0);}
.m16e_c00254{transform:matrix(0.177284,0.001418,-0.002000,0.249992,0,0);-ms-transform:matrix(0.177284,0.001418,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.177284,0.001418,-0.002000,0.249992,0,0);}
.m10d_c00254{transform:matrix(0.177308,0.000887,-0.001250,0.249997,0,0);-ms-transform:matrix(0.177308,0.000887,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.177308,0.000887,-0.001250,0.249997,0,0);}
.m6f_c00254{transform:matrix(0.177670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177670,0.000000,0.000000,0.250000,0,0);}
.m6b_c00254{transform:matrix(0.178155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178155,0.000000,0.000000,0.250000,0,0);}
.m123_c00254{transform:matrix(0.178453,0.000892,-0.001250,0.249997,0,0);-ms-transform:matrix(0.178453,0.000892,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.178453,0.000892,-0.001250,0.249997,0,0);}
.med_c00254{transform:matrix(0.178993,0.000895,-0.001250,0.249997,0,0);-ms-transform:matrix(0.178993,0.000895,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.178993,0.000895,-0.001250,0.249997,0,0);}
.m93_c00254{transform:matrix(0.179358,0.000897,-0.001250,0.249997,0,0);-ms-transform:matrix(0.179358,0.000897,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.179358,0.000897,-0.001250,0.249997,0,0);}
.m109_c00254{transform:matrix(0.179933,0.000900,-0.001250,0.249997,0,0);-ms-transform:matrix(0.179933,0.000900,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.179933,0.000900,-0.001250,0.249997,0,0);}
.m95_c00254{transform:matrix(0.180078,0.000900,-0.001250,0.249997,0,0);-ms-transform:matrix(0.180078,0.000900,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.180078,0.000900,-0.001250,0.249997,0,0);}
.m13e_c00254{transform:matrix(0.180142,0.001081,-0.001500,0.249996,0,0);-ms-transform:matrix(0.180142,0.001081,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.180142,0.001081,-0.001500,0.249996,0,0);}
.m6c_c00254{transform:matrix(0.180355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180355,0.000000,0.000000,0.250000,0,0);}
.me2_c00254{transform:matrix(0.180563,0.000903,-0.001250,0.249997,0,0);-ms-transform:matrix(0.180563,0.000903,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.180563,0.000903,-0.001250,0.249997,0,0);}
.m157_c00254{transform:matrix(0.180598,0.001625,-0.002250,0.249990,0,0);-ms-transform:matrix(0.180598,0.001625,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.180598,0.001625,-0.002250,0.249990,0,0);}
.m74_c00254{transform:matrix(0.180810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180810,0.000000,0.000000,0.250000,0,0);}
.m151_c00254{transform:matrix(0.181588,0.001634,-0.002250,0.249990,0,0);-ms-transform:matrix(0.181588,0.001634,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.181588,0.001634,-0.002250,0.249990,0,0);}
.mfc_c00254{transform:matrix(0.182113,0.000911,-0.001250,0.249997,0,0);-ms-transform:matrix(0.182113,0.000911,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.182113,0.000911,-0.001250,0.249997,0,0);}
.m110_c00254{transform:matrix(0.182623,0.000913,-0.001250,0.249997,0,0);-ms-transform:matrix(0.182623,0.000913,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.182623,0.000913,-0.001250,0.249997,0,0);}
.mda_c00254{transform:matrix(0.182628,0.000913,-0.001250,0.249997,0,0);-ms-transform:matrix(0.182628,0.000913,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.182628,0.000913,-0.001250,0.249997,0,0);}
.mdd_c00254{transform:matrix(0.182648,0.000913,-0.001250,0.249997,0,0);-ms-transform:matrix(0.182648,0.000913,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.182648,0.000913,-0.001250,0.249997,0,0);}
.m124_c00254{transform:matrix(0.183198,0.000916,-0.001250,0.249997,0,0);-ms-transform:matrix(0.183198,0.000916,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.183198,0.000916,-0.001250,0.249997,0,0);}
.m13a_c00254{transform:matrix(0.183702,0.001102,-0.001500,0.249996,0,0);-ms-transform:matrix(0.183702,0.001102,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.183702,0.001102,-0.001500,0.249996,0,0);}
.m91_c00254{transform:matrix(0.184043,0.000920,-0.001250,0.249997,0,0);-ms-transform:matrix(0.184043,0.000920,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.184043,0.000920,-0.001250,0.249997,0,0);}
.m92_c00254{transform:matrix(0.184108,0.000921,-0.001250,0.249997,0,0);-ms-transform:matrix(0.184108,0.000921,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.184108,0.000921,-0.001250,0.249997,0,0);}
.m8e_c00254{transform:matrix(0.185808,0.000929,-0.001250,0.249997,0,0);-ms-transform:matrix(0.185808,0.000929,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.185808,0.000929,-0.001250,0.249997,0,0);}
.m134_c00254{transform:matrix(0.185827,0.001115,-0.001500,0.249996,0,0);-ms-transform:matrix(0.185827,0.001115,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.185827,0.001115,-0.001500,0.249996,0,0);}
.m12b_c00254{transform:matrix(0.186587,0.001120,-0.001500,0.249996,0,0);-ms-transform:matrix(0.186587,0.001120,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.186587,0.001120,-0.001500,0.249996,0,0);}
.mf8_c00254{transform:matrix(0.186793,0.000934,-0.001250,0.249997,0,0);-ms-transform:matrix(0.186793,0.000934,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.186793,0.000934,-0.001250,0.249997,0,0);}
.md3_c00254{transform:matrix(0.186868,0.000934,-0.001250,0.249997,0,0);-ms-transform:matrix(0.186868,0.000934,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.186868,0.000934,-0.001250,0.249997,0,0);}
.m12d_c00254{transform:matrix(0.187067,0.001122,-0.001500,0.249996,0,0);-ms-transform:matrix(0.187067,0.001122,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.187067,0.001122,-0.001500,0.249996,0,0);}
.m11f_c00254{transform:matrix(0.187408,0.000937,-0.001250,0.249997,0,0);-ms-transform:matrix(0.187408,0.000937,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.187408,0.000937,-0.001250,0.249997,0,0);}
.m94_c00254{transform:matrix(0.187588,0.000938,-0.001250,0.249997,0,0);-ms-transform:matrix(0.187588,0.000938,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.187588,0.000938,-0.001250,0.249997,0,0);}
.m81_c00254{transform:matrix(0.188308,0.000942,-0.001250,0.249997,0,0);-ms-transform:matrix(0.188308,0.000942,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.188308,0.000942,-0.001250,0.249997,0,0);}
.m121_c00254{transform:matrix(0.188518,0.000943,-0.001250,0.249997,0,0);-ms-transform:matrix(0.188518,0.000943,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.188518,0.000943,-0.001250,0.249997,0,0);}
.mb9_c00254{transform:matrix(0.188828,0.000944,-0.001250,0.249997,0,0);-ms-transform:matrix(0.188828,0.000944,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.188828,0.000944,-0.001250,0.249997,0,0);}
.m12e_c00254{transform:matrix(0.189247,0.001135,-0.001500,0.249996,0,0);-ms-transform:matrix(0.189247,0.001135,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.189247,0.001135,-0.001500,0.249996,0,0);}
.m8f_c00254{transform:matrix(0.189498,0.000947,-0.001250,0.249997,0,0);-ms-transform:matrix(0.189498,0.000947,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.189498,0.000947,-0.001250,0.249997,0,0);}
.mf2_c00254{transform:matrix(0.189648,0.000948,-0.001250,0.249997,0,0);-ms-transform:matrix(0.189648,0.000948,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.189648,0.000948,-0.001250,0.249997,0,0);}
.m128_c00254{transform:matrix(0.189778,0.000949,-0.001250,0.249997,0,0);-ms-transform:matrix(0.189778,0.000949,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.189778,0.000949,-0.001250,0.249997,0,0);}
.me3_c00254{transform:matrix(0.189793,0.000949,-0.001250,0.249997,0,0);-ms-transform:matrix(0.189793,0.000949,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.189793,0.000949,-0.001250,0.249997,0,0);}
.m72_c00254{transform:matrix(0.190535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190535,0.000000,0.000000,0.250000,0,0);}
.m16f_c00254{transform:matrix(0.190689,0.001526,-0.002000,0.249992,0,0);-ms-transform:matrix(0.190689,0.001526,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.190689,0.001526,-0.002000,0.249992,0,0);}
.m131_c00254{transform:matrix(0.190827,0.001145,-0.001500,0.249996,0,0);-ms-transform:matrix(0.190827,0.001145,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.190827,0.001145,-0.001500,0.249996,0,0);}
.mf7_c00254{transform:matrix(0.191038,0.000955,-0.001250,0.249997,0,0);-ms-transform:matrix(0.191038,0.000955,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.191038,0.000955,-0.001250,0.249997,0,0);}
.m111_c00254{transform:matrix(0.191393,0.000957,-0.001250,0.249997,0,0);-ms-transform:matrix(0.191393,0.000957,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.191393,0.000957,-0.001250,0.249997,0,0);}
.m143_c00254{transform:matrix(0.191702,0.001150,-0.001500,0.249996,0,0);-ms-transform:matrix(0.191702,0.001150,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.191702,0.001150,-0.001500,0.249996,0,0);}
.m90_c00254{transform:matrix(0.191808,0.000959,-0.001250,0.249997,0,0);-ms-transform:matrix(0.191808,0.000959,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.191808,0.000959,-0.001250,0.249997,0,0);}
.m153_c00254{transform:matrix(0.191887,0.001727,-0.002250,0.249990,0,0);-ms-transform:matrix(0.191887,0.001727,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.191887,0.001727,-0.002250,0.249990,0,0);}
.m13f_c00254{transform:matrix(0.192057,0.001152,-0.001500,0.249996,0,0);-ms-transform:matrix(0.192057,0.001152,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.192057,0.001152,-0.001500,0.249996,0,0);}
.mf3_c00254{transform:matrix(0.192518,0.000963,-0.001250,0.249997,0,0);-ms-transform:matrix(0.192518,0.000963,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.192518,0.000963,-0.001250,0.249997,0,0);}
.md8_c00254{transform:matrix(0.192568,0.000963,-0.001250,0.249997,0,0);-ms-transform:matrix(0.192568,0.000963,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.192568,0.000963,-0.001250,0.249997,0,0);}
.mde_c00254{transform:matrix(0.192583,0.000963,-0.001250,0.249997,0,0);-ms-transform:matrix(0.192583,0.000963,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.192583,0.000963,-0.001250,0.249997,0,0);}
.m150_c00254{transform:matrix(0.192617,0.001734,-0.002250,0.249990,0,0);-ms-transform:matrix(0.192617,0.001734,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.192617,0.001734,-0.002250,0.249990,0,0);}
.m70_c00254{transform:matrix(0.193040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193040,0.000000,0.000000,0.250000,0,0);}
.m165_c00254{transform:matrix(0.193339,0.001547,-0.002000,0.249992,0,0);-ms-transform:matrix(0.193339,0.001547,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.193339,0.001547,-0.002000,0.249992,0,0);}
.me6_c00254{transform:matrix(0.193468,0.000967,-0.001250,0.249997,0,0);-ms-transform:matrix(0.193468,0.000967,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.193468,0.000967,-0.001250,0.249997,0,0);}
.meb_c00254{transform:matrix(0.194698,0.000973,-0.001250,0.249997,0,0);-ms-transform:matrix(0.194698,0.000973,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.194698,0.000973,-0.001250,0.249997,0,0);}
.m103_c00254{transform:matrix(0.194803,0.000974,-0.001250,0.249997,0,0);-ms-transform:matrix(0.194803,0.000974,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.194803,0.000974,-0.001250,0.249997,0,0);}
.m6d_c00254{transform:matrix(0.195235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195235,0.000000,0.000000,0.250000,0,0);}
.m120_c00254{transform:matrix(0.195718,0.000979,-0.001250,0.249997,0,0);-ms-transform:matrix(0.195718,0.000979,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.195718,0.000979,-0.001250,0.249997,0,0);}
.mbf_c00254{transform:matrix(0.195918,0.000980,-0.001250,0.249997,0,0);-ms-transform:matrix(0.195918,0.000980,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.195918,0.000980,-0.001250,0.249997,0,0);}
.m129_c00254{transform:matrix(0.196516,0.001179,-0.001500,0.249996,0,0);-ms-transform:matrix(0.196516,0.001179,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.196516,0.001179,-0.001500,0.249996,0,0);}
.m112_c00254{transform:matrix(0.196653,0.000983,-0.001250,0.249997,0,0);-ms-transform:matrix(0.196653,0.000983,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.196653,0.000983,-0.001250,0.249997,0,0);}
.m159_c00254{transform:matrix(0.196707,0.001770,-0.002250,0.249990,0,0);-ms-transform:matrix(0.196707,0.001770,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.196707,0.001770,-0.002250,0.249990,0,0);}
.m7e_c00254{transform:matrix(0.196793,0.000984,-0.001250,0.249997,0,0);-ms-transform:matrix(0.196793,0.000984,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.196793,0.000984,-0.001250,0.249997,0,0);}
.m32_c00254{transform:matrix(0.196965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196965,0.000000,0.000000,0.250000,0,0);}
.m13c_c00254{transform:matrix(0.197041,0.001182,-0.001500,0.249996,0,0);-ms-transform:matrix(0.197041,0.001182,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.197041,0.001182,-0.001500,0.249996,0,0);}
.m3_c00254{transform:matrix(0.197525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197525,0.000000,0.000000,0.250000,0,0);}
.mf6_c00254{transform:matrix(0.197853,0.000989,-0.001250,0.249997,0,0);-ms-transform:matrix(0.197853,0.000989,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.197853,0.000989,-0.001250,0.249997,0,0);}
.m46_c00254{transform:matrix(0.197910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197910,0.000000,0.000000,0.250000,0,0);}
.m106_c00254{transform:matrix(0.198038,0.000990,-0.001250,0.249997,0,0);-ms-transform:matrix(0.198038,0.000990,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.198038,0.000990,-0.001250,0.249997,0,0);}
.m13d_c00254{transform:matrix(0.198326,0.001190,-0.001500,0.249996,0,0);-ms-transform:matrix(0.198326,0.001190,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.198326,0.001190,-0.001500,0.249996,0,0);}
.m122_c00254{transform:matrix(0.198438,0.000992,-0.001250,0.249997,0,0);-ms-transform:matrix(0.198438,0.000992,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.198438,0.000992,-0.001250,0.249997,0,0);}
.mcf_c00254{transform:matrix(0.198573,0.000993,-0.001250,0.249997,0,0);-ms-transform:matrix(0.198573,0.000993,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.198573,0.000993,-0.001250,0.249997,0,0);}
.m156_c00254{transform:matrix(0.198647,0.001788,-0.002250,0.249990,0,0);-ms-transform:matrix(0.198647,0.001788,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.198647,0.001788,-0.002250,0.249990,0,0);}
.mfb_c00254{transform:matrix(0.198818,0.000994,-0.001250,0.249997,0,0);-ms-transform:matrix(0.198818,0.000994,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.198818,0.000994,-0.001250,0.249997,0,0);}
.m76_c00254{transform:matrix(0.199098,0.000995,-0.001250,0.249997,0,0);-ms-transform:matrix(0.199098,0.000995,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.199098,0.000995,-0.001250,0.249997,0,0);}
.m3d_c00254{transform:matrix(0.199295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199295,0.000000,0.000000,0.250000,0,0);}
.me0_c00254{transform:matrix(0.199863,0.000999,-0.001250,0.249997,0,0);-ms-transform:matrix(0.199863,0.000999,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.199863,0.000999,-0.001250,0.249997,0,0);}
.m101_c00254{transform:matrix(0.199993,0.001000,-0.001250,0.249997,0,0);-ms-transform:matrix(0.199993,0.001000,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.199993,0.001000,-0.001250,0.249997,0,0);}
.m3c_c00254{transform:matrix(0.200310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200310,0.000000,0.000000,0.250000,0,0);}
.m13_c00254{transform:matrix(0.200770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200770,0.000000,0.000000,0.250000,0,0);}
.mbc_c00254{transform:matrix(0.200807,0.001004,-0.001250,0.249997,0,0);-ms-transform:matrix(0.200807,0.001004,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.200807,0.001004,-0.001250,0.249997,0,0);}
.mfa_c00254{transform:matrix(0.201377,0.001007,-0.001250,0.249997,0,0);-ms-transform:matrix(0.201377,0.001007,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.201377,0.001007,-0.001250,0.249997,0,0);}
.m10f_c00254{transform:matrix(0.201882,0.001009,-0.001250,0.249997,0,0);-ms-transform:matrix(0.201882,0.001009,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.201882,0.001009,-0.001250,0.249997,0,0);}
.m37_c00254{transform:matrix(0.202665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202665,0.000000,0.000000,0.250000,0,0);}
.m105_c00254{transform:matrix(0.203867,0.001019,-0.001250,0.249997,0,0);-ms-transform:matrix(0.203867,0.001019,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.203867,0.001019,-0.001250,0.249997,0,0);}
.m146_c00254{transform:matrix(0.204016,0.001224,-0.001500,0.249996,0,0);-ms-transform:matrix(0.204016,0.001224,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.204016,0.001224,-0.001500,0.249996,0,0);}
.m36_c00254{transform:matrix(0.204395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204395,0.000000,0.000000,0.250000,0,0);}
.m34_c00254{transform:matrix(0.204460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204460,0.000000,0.000000,0.250000,0,0);}
.ma_c00254{transform:matrix(0.204515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204515,0.000000,0.000000,0.250000,0,0);}
.m43_c00254{transform:matrix(0.206040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206040,0.000000,0.000000,0.250000,0,0);}
.m12a_c00254{transform:matrix(0.207331,0.001244,-0.001500,0.249996,0,0);-ms-transform:matrix(0.207331,0.001244,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.207331,0.001244,-0.001500,0.249996,0,0);}
.m10c_c00254{transform:matrix(0.207437,0.001037,-0.001250,0.249997,0,0);-ms-transform:matrix(0.207437,0.001037,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.207437,0.001037,-0.001250,0.249997,0,0);}
.m130_c00254{transform:matrix(0.207456,0.001245,-0.001500,0.249996,0,0);-ms-transform:matrix(0.207456,0.001245,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.207456,0.001245,-0.001500,0.249996,0,0);}
.md7_c00254{transform:matrix(0.207487,0.001037,-0.001250,0.249997,0,0);-ms-transform:matrix(0.207487,0.001037,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.207487,0.001037,-0.001250,0.249997,0,0);}
.m10b_c00254{transform:matrix(0.207832,0.001039,-0.001250,0.249997,0,0);-ms-transform:matrix(0.207832,0.001039,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.207832,0.001039,-0.001250,0.249997,0,0);}
.mc9_c00254{transform:matrix(0.208062,0.001040,-0.001250,0.249997,0,0);-ms-transform:matrix(0.208062,0.001040,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.208062,0.001040,-0.001250,0.249997,0,0);}
.m8a_c00254{transform:matrix(0.208707,0.001044,-0.001250,0.249997,0,0);-ms-transform:matrix(0.208707,0.001044,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.208707,0.001044,-0.001250,0.249997,0,0);}
.mee_c00254{transform:matrix(0.209092,0.001045,-0.001250,0.249997,0,0);-ms-transform:matrix(0.209092,0.001045,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.209092,0.001045,-0.001250,0.249997,0,0);}
.mff_c00254{transform:matrix(0.209692,0.001048,-0.001250,0.249997,0,0);-ms-transform:matrix(0.209692,0.001048,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.209692,0.001048,-0.001250,0.249997,0,0);}
.m18_c00254{transform:matrix(0.210555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210555,0.000000,0.000000,0.250000,0,0);}
.m12f_c00254{transform:matrix(0.210766,0.001265,-0.001500,0.249996,0,0);-ms-transform:matrix(0.210766,0.001265,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.210766,0.001265,-0.001500,0.249996,0,0);}
.m11a_c00254{transform:matrix(0.211007,0.001055,-0.001250,0.249997,0,0);-ms-transform:matrix(0.211007,0.001055,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.211007,0.001055,-0.001250,0.249997,0,0);}
.m2b_c00254{transform:matrix(0.211020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211020,0.000000,0.000000,0.250000,0,0);}
.m12c_c00254{transform:matrix(0.211096,0.001267,-0.001500,0.249996,0,0);-ms-transform:matrix(0.211096,0.001267,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.211096,0.001267,-0.001500,0.249996,0,0);}
.m104_c00254{transform:matrix(0.211517,0.001058,-0.001250,0.249997,0,0);-ms-transform:matrix(0.211517,0.001058,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.211517,0.001058,-0.001250,0.249997,0,0);}
.m4d_c00254{transform:matrix(0.211580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211580,0.000000,0.000000,0.250000,0,0);}
.m149_c00254{transform:matrix(0.212236,0.001273,-0.001500,0.249996,0,0);-ms-transform:matrix(0.212236,0.001273,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.212236,0.001273,-0.001500,0.249996,0,0);}
.m31_c00254{transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);}
.m3a_c00254{transform:matrix(0.212300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212300,0.000000,0.000000,0.250000,0,0);}
.mf4_c00254{transform:matrix(0.212537,0.001063,-0.001250,0.249997,0,0);-ms-transform:matrix(0.212537,0.001063,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.212537,0.001063,-0.001250,0.249997,0,0);}
.m7d_c00254{transform:matrix(0.212777,0.001064,-0.001250,0.249997,0,0);-ms-transform:matrix(0.212777,0.001064,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.212777,0.001064,-0.001250,0.249997,0,0);}
.m53_c00254{transform:matrix(0.212960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212960,0.000000,0.000000,0.250000,0,0);}
.m15f_c00254{transform:matrix(0.212996,0.001917,-0.002250,0.249990,0,0);-ms-transform:matrix(0.212996,0.001917,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.212996,0.001917,-0.002250,0.249990,0,0);}
.m10e_c00254{transform:matrix(0.213282,0.001066,-0.001250,0.249997,0,0);-ms-transform:matrix(0.213282,0.001066,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.213282,0.001066,-0.001250,0.249997,0,0);}
.m39_c00254{transform:matrix(0.213360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213360,0.000000,0.000000,0.250000,0,0);}
.m4_c00254{transform:matrix(0.213480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213480,0.000000,0.000000,0.250000,0,0);}
.m113_c00254{transform:matrix(0.213542,0.001068,-0.001250,0.249997,0,0);-ms-transform:matrix(0.213542,0.001068,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.213542,0.001068,-0.001250,0.249997,0,0);}
.mfd_c00254{transform:matrix(0.213732,0.001069,-0.001250,0.249997,0,0);-ms-transform:matrix(0.213732,0.001069,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.213732,0.001069,-0.001250,0.249997,0,0);}
.md9_c00254{transform:matrix(0.213742,0.001069,-0.001250,0.249997,0,0);-ms-transform:matrix(0.213742,0.001069,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.213742,0.001069,-0.001250,0.249997,0,0);}
.m107_c00254{transform:matrix(0.213767,0.001069,-0.001250,0.249997,0,0);-ms-transform:matrix(0.213767,0.001069,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.213767,0.001069,-0.001250,0.249997,0,0);}
.m9_c00254{transform:matrix(0.213965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213965,0.000000,0.000000,0.250000,0,0);}
.m3e_c00254{transform:matrix(0.213985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213985,0.000000,0.000000,0.250000,0,0);}
.m30_c00254{transform:matrix(0.214135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214135,0.000000,0.000000,0.250000,0,0);}
.mbe_c00254{transform:matrix(0.214512,0.001073,-0.001250,0.249997,0,0);-ms-transform:matrix(0.214512,0.001073,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.214512,0.001073,-0.001250,0.249997,0,0);}
.mbd_c00254{transform:matrix(0.214717,0.001074,-0.001250,0.249997,0,0);-ms-transform:matrix(0.214717,0.001074,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.214717,0.001074,-0.001250,0.249997,0,0);}
.mf5_c00254{transform:matrix(0.214887,0.001074,-0.001250,0.249997,0,0);-ms-transform:matrix(0.214887,0.001074,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.214887,0.001074,-0.001250,0.249997,0,0);}
.mea_c00254{transform:matrix(0.214897,0.001074,-0.001250,0.249997,0,0);-ms-transform:matrix(0.214897,0.001074,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.214897,0.001074,-0.001250,0.249997,0,0);}
.m1b_c00254{transform:matrix(0.214960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214960,0.000000,0.000000,0.250000,0,0);}
.mcd_c00254{transform:matrix(0.215057,0.001075,-0.001250,0.249997,0,0);-ms-transform:matrix(0.215057,0.001075,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.215057,0.001075,-0.001250,0.249997,0,0);}
.m82_c00254{transform:matrix(0.215072,0.001075,-0.001250,0.249997,0,0);-ms-transform:matrix(0.215072,0.001075,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.215072,0.001075,-0.001250,0.249997,0,0);}
.m87_c00254{transform:matrix(0.215147,0.001076,-0.001250,0.249997,0,0);-ms-transform:matrix(0.215147,0.001076,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.215147,0.001076,-0.001250,0.249997,0,0);}
.mb3_c00254{transform:matrix(0.215150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215150,0.000000,0.000000,0.250000,0,0);}
.m108_c00254{transform:matrix(0.215397,0.001077,-0.001250,0.249997,0,0);-ms-transform:matrix(0.215397,0.001077,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.215397,0.001077,-0.001250,0.249997,0,0);}
.ma8_c00254{transform:matrix(0.215525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215525,0.000000,0.000000,0.250000,0,0);}
.m2e_c00254{transform:matrix(0.215540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215540,0.000000,0.000000,0.250000,0,0);}
.m44_c00254{transform:matrix(0.215650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215650,0.000000,0.000000,0.250000,0,0);}
.mf9_c00254{transform:matrix(0.216052,0.001080,-0.001250,0.249997,0,0);-ms-transform:matrix(0.216052,0.001080,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.216052,0.001080,-0.001250,0.249997,0,0);}
.m7b_c00254{transform:matrix(0.216332,0.001082,-0.001250,0.249997,0,0);-ms-transform:matrix(0.216332,0.001082,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.216332,0.001082,-0.001250,0.249997,0,0);}
.me9_c00254{transform:matrix(0.217037,0.001085,-0.001250,0.249997,0,0);-ms-transform:matrix(0.217037,0.001085,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.217037,0.001085,-0.001250,0.249997,0,0);}
.m26_c00254{transform:matrix(0.217100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217100,0.000000,0.000000,0.250000,0,0);}
.md0_c00254{transform:matrix(0.217242,0.001086,-0.001250,0.249997,0,0);-ms-transform:matrix(0.217242,0.001086,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.217242,0.001086,-0.001250,0.249997,0,0);}
.md6_c00254{transform:matrix(0.217407,0.001087,-0.001250,0.249997,0,0);-ms-transform:matrix(0.217407,0.001087,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.217407,0.001087,-0.001250,0.249997,0,0);}
.ma9_c00254{transform:matrix(0.217875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217875,0.000000,0.000000,0.250000,0,0);}
.m132_c00254{transform:matrix(0.218001,0.001308,-0.001500,0.249996,0,0);-ms-transform:matrix(0.218001,0.001308,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.218001,0.001308,-0.001500,0.249996,0,0);}
.m2f_c00254{transform:matrix(0.218010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218010,0.000000,0.000000,0.250000,0,0);}
.mac_c00254{transform:matrix(0.218215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218215,0.000000,0.000000,0.250000,0,0);}
.mae_c00254{transform:matrix(0.218695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218695,0.000000,0.000000,0.250000,0,0);}
.m78_c00254{transform:matrix(0.218737,0.001094,-0.001250,0.249997,0,0);-ms-transform:matrix(0.218737,0.001094,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.218737,0.001094,-0.001250,0.249997,0,0);}
.m40_c00254{transform:matrix(0.218740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218740,0.000000,0.000000,0.250000,0,0);}
.mb8_c00254{transform:matrix(0.218887,0.001094,-0.001250,0.249997,0,0);-ms-transform:matrix(0.218887,0.001094,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.218887,0.001094,-0.001250,0.249997,0,0);}
.mef_c00254{transform:matrix(0.218982,0.001095,-0.001250,0.249997,0,0);-ms-transform:matrix(0.218982,0.001095,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.218982,0.001095,-0.001250,0.249997,0,0);}
.m9f_c00254{transform:matrix(0.219227,0.001096,-0.001250,0.249997,0,0);-ms-transform:matrix(0.219227,0.001096,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.219227,0.001096,-0.001250,0.249997,0,0);}
.m49_c00254{transform:matrix(0.219305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219305,0.000000,0.000000,0.250000,0,0);}
.m10a_c00254{transform:matrix(0.219552,0.001098,-0.001250,0.249997,0,0);-ms-transform:matrix(0.219552,0.001098,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.219552,0.001098,-0.001250,0.249997,0,0);}
.m154_c00254{transform:matrix(0.219986,0.001980,-0.002250,0.249990,0,0);-ms-transform:matrix(0.219986,0.001980,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.219986,0.001980,-0.002250,0.249990,0,0);}
.m85_c00254{transform:matrix(0.220127,0.001101,-0.001250,0.249997,0,0);-ms-transform:matrix(0.220127,0.001101,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.220127,0.001101,-0.001250,0.249997,0,0);}
.m100_c00254{transform:matrix(0.220212,0.001101,-0.001250,0.249997,0,0);-ms-transform:matrix(0.220212,0.001101,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.220212,0.001101,-0.001250,0.249997,0,0);}
.m41_c00254{transform:matrix(0.220620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220620,0.000000,0.000000,0.250000,0,0);}
.mca_c00254{transform:matrix(0.220727,0.001104,-0.001250,0.249997,0,0);-ms-transform:matrix(0.220727,0.001104,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.220727,0.001104,-0.001250,0.249997,0,0);}
.m88_c00254{transform:matrix(0.220757,0.001104,-0.001250,0.249997,0,0);-ms-transform:matrix(0.220757,0.001104,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.220757,0.001104,-0.001250,0.249997,0,0);}
.m50_c00254{transform:matrix(0.220775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220775,0.000000,0.000000,0.250000,0,0);}
.mfe_c00254{transform:matrix(0.220787,0.001104,-0.001250,0.249997,0,0);-ms-transform:matrix(0.220787,0.001104,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.220787,0.001104,-0.001250,0.249997,0,0);}
.m45_c00254{transform:matrix(0.220815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220815,0.000000,0.000000,0.250000,0,0);}
.ma5_c00254{transform:matrix(0.220827,0.001104,-0.001250,0.249997,0,0);-ms-transform:matrix(0.220827,0.001104,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.220827,0.001104,-0.001250,0.249997,0,0);}
.m2d_c00254{transform:matrix(0.220950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220950,0.000000,0.000000,0.250000,0,0);}
.mad_c00254{transform:matrix(0.221190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221190,0.000000,0.000000,0.250000,0,0);}
.m138_c00254{transform:matrix(0.221396,0.001328,-0.001500,0.249996,0,0);-ms-transform:matrix(0.221396,0.001328,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.221396,0.001328,-0.001500,0.249996,0,0);}
.mf0_c00254{transform:matrix(0.221402,0.001107,-0.001250,0.249997,0,0);-ms-transform:matrix(0.221402,0.001107,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.221402,0.001107,-0.001250,0.249997,0,0);}
.m84_c00254{transform:matrix(0.221717,0.001109,-0.001250,0.249997,0,0);-ms-transform:matrix(0.221717,0.001109,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.221717,0.001109,-0.001250,0.249997,0,0);}
.m2a_c00254{transform:matrix(0.221935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221935,0.000000,0.000000,0.250000,0,0);}
.m163_c00254{transform:matrix(0.222006,0.001998,-0.002250,0.249990,0,0);-ms-transform:matrix(0.222006,0.001998,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.222006,0.001998,-0.002250,0.249990,0,0);}
.md5_c00254{transform:matrix(0.222182,0.001111,-0.001250,0.249997,0,0);-ms-transform:matrix(0.222182,0.001111,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.222182,0.001111,-0.001250,0.249997,0,0);}
.m145_c00254{transform:matrix(0.222421,0.001335,-0.001500,0.249996,0,0);-ms-transform:matrix(0.222421,0.001335,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.222421,0.001335,-0.001500,0.249996,0,0);}
.m33_c00254{transform:matrix(0.222715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222715,0.000000,0.000000,0.250000,0,0);}
.mb2_c00254{transform:matrix(0.222880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222880,0.000000,0.000000,0.250000,0,0);}
.m15c_c00254{transform:matrix(0.222941,0.002006,-0.002250,0.249990,0,0);-ms-transform:matrix(0.222941,0.002006,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.222941,0.002006,-0.002250,0.249990,0,0);}
.m148_c00254{transform:matrix(0.222946,0.001338,-0.001500,0.249996,0,0);-ms-transform:matrix(0.222946,0.001338,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.222946,0.001338,-0.001500,0.249996,0,0);}
.md1_c00254{transform:matrix(0.223042,0.001115,-0.001250,0.249997,0,0);-ms-transform:matrix(0.223042,0.001115,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.223042,0.001115,-0.001250,0.249997,0,0);}
.m83_c00254{transform:matrix(0.223847,0.001119,-0.001250,0.249997,0,0);-ms-transform:matrix(0.223847,0.001119,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.223847,0.001119,-0.001250,0.249997,0,0);}
.m42_c00254{transform:matrix(0.223850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223850,0.000000,0.000000,0.250000,0,0);}
.mec_c00254{transform:matrix(0.223907,0.001120,-0.001250,0.249997,0,0);-ms-transform:matrix(0.223907,0.001120,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.223907,0.001120,-0.001250,0.249997,0,0);}
.m137_c00254{transform:matrix(0.224216,0.001345,-0.001500,0.249996,0,0);-ms-transform:matrix(0.224216,0.001345,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.224216,0.001345,-0.001500,0.249996,0,0);}
.mf1_c00254{transform:matrix(0.224317,0.001122,-0.001250,0.249997,0,0);-ms-transform:matrix(0.224317,0.001122,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.224317,0.001122,-0.001250,0.249997,0,0);}
.m135_c00254{transform:matrix(0.224396,0.001346,-0.001500,0.249996,0,0);-ms-transform:matrix(0.224396,0.001346,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.224396,0.001346,-0.001500,0.249996,0,0);}
.ma2_c00254{transform:matrix(0.224597,0.001123,-0.001250,0.249997,0,0);-ms-transform:matrix(0.224597,0.001123,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.224597,0.001123,-0.001250,0.249997,0,0);}
.m15a_c00254{transform:matrix(0.224696,0.002022,-0.002250,0.249990,0,0);-ms-transform:matrix(0.224696,0.002022,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.224696,0.002022,-0.002250,0.249990,0,0);}
.md2_c00254{transform:matrix(0.225192,0.001126,-0.001250,0.249997,0,0);-ms-transform:matrix(0.225192,0.001126,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.225192,0.001126,-0.001250,0.249997,0,0);}
.mc5_c00254{transform:matrix(0.225267,0.001126,-0.001250,0.249997,0,0);-ms-transform:matrix(0.225267,0.001126,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.225267,0.001126,-0.001250,0.249997,0,0);}
.m15d_c00254{transform:matrix(0.225386,0.002028,-0.002250,0.249990,0,0);-ms-transform:matrix(0.225386,0.002028,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.225386,0.002028,-0.002250,0.249990,0,0);}
.mb7_c00254{transform:matrix(0.225522,0.001128,-0.001250,0.249997,0,0);-ms-transform:matrix(0.225522,0.001128,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.225522,0.001128,-0.001250,0.249997,0,0);}
.m19_c00254{transform:matrix(0.225670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225670,0.000000,0.000000,0.250000,0,0);}
.m102_c00254{transform:matrix(0.225717,0.001129,-0.001250,0.249997,0,0);-ms-transform:matrix(0.225717,0.001129,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.225717,0.001129,-0.001250,0.249997,0,0);}
.maf_c00254{transform:matrix(0.225720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225720,0.000000,0.000000,0.250000,0,0);}
.m162_c00254{transform:matrix(0.225926,0.002033,-0.002250,0.249990,0,0);-ms-transform:matrix(0.225926,0.002033,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.225926,0.002033,-0.002250,0.249990,0,0);}
.m141_c00254{transform:matrix(0.226161,0.001357,-0.001500,0.249996,0,0);-ms-transform:matrix(0.226161,0.001357,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.226161,0.001357,-0.001500,0.249996,0,0);}
.mba_c00254{transform:matrix(0.226172,0.001131,-0.001250,0.249997,0,0);-ms-transform:matrix(0.226172,0.001131,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.226172,0.001131,-0.001250,0.249997,0,0);}
.m133_c00254{transform:matrix(0.226236,0.001357,-0.001500,0.249996,0,0);-ms-transform:matrix(0.226236,0.001357,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.226236,0.001357,-0.001500,0.249996,0,0);}
.m51_c00254{transform:matrix(0.226375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226375,0.000000,0.000000,0.250000,0,0);}
.m14e_c00254{transform:matrix(0.226461,0.001359,-0.001500,0.249996,0,0);-ms-transform:matrix(0.226461,0.001359,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.226461,0.001359,-0.001500,0.249996,0,0);}
.m3b_c00254{transform:matrix(0.226575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226575,0.000000,0.000000,0.250000,0,0);}
.m4b_c00254{transform:matrix(0.226940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226940,0.000000,0.000000,0.250000,0,0);}
.maa_c00254{transform:matrix(0.227410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227410,0.000000,0.000000,0.250000,0,0);}
.m7a_c00254{transform:matrix(0.227412,0.001137,-0.001250,0.249997,0,0);-ms-transform:matrix(0.227412,0.001137,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.227412,0.001137,-0.001250,0.249997,0,0);}
.m2c_c00254{transform:matrix(0.227975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227975,0.000000,0.000000,0.250000,0,0);}
.m4a_c00254{transform:matrix(0.228335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228335,0.000000,0.000000,0.250000,0,0);}
.m27_c00254{transform:matrix(0.228485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228485,0.000000,0.000000,0.250000,0,0);}
.m144_c00254{transform:matrix(0.228556,0.001371,-0.001500,0.249996,0,0);-ms-transform:matrix(0.228556,0.001371,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.228556,0.001371,-0.001500,0.249996,0,0);}
.m22_c00254{transform:matrix(0.229125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229125,0.000000,0.000000,0.250000,0,0);}
.m7f_c00254{transform:matrix(0.229292,0.001146,-0.001250,0.249997,0,0);-ms-transform:matrix(0.229292,0.001146,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.229292,0.001146,-0.001250,0.249997,0,0);}
.m24_c00254{transform:matrix(0.230325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230325,0.000000,0.000000,0.250000,0,0);}
.m15_c00254{transform:matrix(0.230455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230455,0.000000,0.000000,0.250000,0,0);}
.m114_c00254{transform:matrix(0.230457,0.001152,-0.001250,0.249997,0,0);-ms-transform:matrix(0.230457,0.001152,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.230457,0.001152,-0.001250,0.249997,0,0);}
.m8b_c00254{transform:matrix(0.230537,0.001153,-0.001250,0.249997,0,0);-ms-transform:matrix(0.230537,0.001153,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.230537,0.001153,-0.001250,0.249997,0,0);}
.m164_c00254{transform:matrix(0.230598,0.001845,-0.002000,0.249992,0,0);-ms-transform:matrix(0.230598,0.001845,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.230598,0.001845,-0.002000,0.249992,0,0);}
.mc0_c00254{transform:matrix(0.230792,0.001154,-0.001250,0.249997,0,0);-ms-transform:matrix(0.230792,0.001154,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.230792,0.001154,-0.001250,0.249997,0,0);}
.m28_c00254{transform:matrix(0.231350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231350,0.000000,0.000000,0.250000,0,0);}
.mc4_c00254{transform:matrix(0.231377,0.001157,-0.001250,0.249997,0,0);-ms-transform:matrix(0.231377,0.001157,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.231377,0.001157,-0.001250,0.249997,0,0);}
.m48_c00254{transform:matrix(0.231440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231440,0.000000,0.000000,0.250000,0,0);}
.mb1_c00254{transform:matrix(0.231985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231985,0.000000,0.000000,0.250000,0,0);}
.m11_c00254{transform:matrix(0.232065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232065,0.000000,0.000000,0.250000,0,0);}
.m79_c00254{transform:matrix(0.232297,0.001161,-0.001250,0.249997,0,0);-ms-transform:matrix(0.232297,0.001161,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.232297,0.001161,-0.001250,0.249997,0,0);}
.m1f_c00254{transform:matrix(0.232335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232335,0.000000,0.000000,0.250000,0,0);}
.md_c00254{transform:matrix(0.232355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232355,0.000000,0.000000,0.250000,0,0);}
.m3f_c00254{transform:matrix(0.232445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232445,0.000000,0.000000,0.250000,0,0);}
.m14c_c00254{transform:matrix(0.232751,0.001397,-0.001500,0.249996,0,0);-ms-transform:matrix(0.232751,0.001397,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.232751,0.001397,-0.001500,0.249996,0,0);}
.m136_c00254{transform:matrix(0.232851,0.001397,-0.001500,0.249996,0,0);-ms-transform:matrix(0.232851,0.001397,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.232851,0.001397,-0.001500,0.249996,0,0);}
.mbb_c00254{transform:matrix(0.232922,0.001165,-0.001250,0.249997,0,0);-ms-transform:matrix(0.232922,0.001165,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.232922,0.001165,-0.001250,0.249997,0,0);}
.mc6_c00254{transform:matrix(0.232972,0.001165,-0.001250,0.249997,0,0);-ms-transform:matrix(0.232972,0.001165,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.232972,0.001165,-0.001250,0.249997,0,0);}
.m7_c00254{transform:matrix(0.233505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233505,0.000000,0.000000,0.250000,0,0);}
.m147_c00254{transform:matrix(0.233631,0.001402,-0.001500,0.249996,0,0);-ms-transform:matrix(0.233631,0.001402,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.233631,0.001402,-0.001500,0.249996,0,0);}
.m5a_c00254{transform:matrix(0.233670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233670,0.000000,0.000000,0.250000,0,0);}
.m14a_c00254{transform:matrix(0.233751,0.001403,-0.001500,0.249996,0,0);-ms-transform:matrix(0.233751,0.001403,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.233751,0.001403,-0.001500,0.249996,0,0);}
.mdb_c00254{transform:matrix(0.233777,0.001169,-0.001250,0.249997,0,0);-ms-transform:matrix(0.233777,0.001169,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.233777,0.001169,-0.001250,0.249997,0,0);}
.m161_c00254{transform:matrix(0.233781,0.002104,-0.002250,0.249990,0,0);-ms-transform:matrix(0.233781,0.002104,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.233781,0.002104,-0.002250,0.249990,0,0);}
.m6_c00254{transform:matrix(0.233820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233820,0.000000,0.000000,0.250000,0,0);}
.m1d_c00254{transform:matrix(0.233910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233910,0.000000,0.000000,0.250000,0,0);}
.m15e_c00254{transform:matrix(0.234206,0.002108,-0.002250,0.249990,0,0);-ms-transform:matrix(0.234206,0.002108,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.234206,0.002108,-0.002250,0.249990,0,0);}
.mab_c00254{transform:matrix(0.234340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234340,0.000000,0.000000,0.250000,0,0);}
.m5d_c00254{transform:matrix(0.234345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234345,0.000000,0.000000,0.250000,0,0);}
.m127_c00254{transform:matrix(0.234352,0.001172,-0.001250,0.249997,0,0);-ms-transform:matrix(0.234352,0.001172,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.234352,0.001172,-0.001250,0.249997,0,0);}
.m4c_c00254{transform:matrix(0.234375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234375,0.000000,0.000000,0.250000,0,0);}
.m5_c00254{transform:matrix(0.234405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234405,0.000000,0.000000,0.250000,0,0);}
.mb5_c00254{transform:matrix(0.234727,0.001174,-0.001250,0.249997,0,0);-ms-transform:matrix(0.234727,0.001174,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.234727,0.001174,-0.001250,0.249997,0,0);}
.m118_c00254{transform:matrix(0.235562,0.001178,-0.001250,0.249997,0,0);-ms-transform:matrix(0.235562,0.001178,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.235562,0.001178,-0.001250,0.249997,0,0);}
.m8c_c00254{transform:matrix(0.235817,0.001179,-0.001250,0.249997,0,0);-ms-transform:matrix(0.235817,0.001179,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.235817,0.001179,-0.001250,0.249997,0,0);}
.m14_c00254{transform:matrix(0.236025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236025,0.000000,0.000000,0.250000,0,0);}
.m10_c00254{transform:matrix(0.236205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236205,0.000000,0.000000,0.250000,0,0);}
.m1c_c00254{transform:matrix(0.236380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236380,0.000000,0.000000,0.250000,0,0);}
.m160_c00254{transform:matrix(0.236770,0.002131,-0.002250,0.249990,0,0);-ms-transform:matrix(0.236770,0.002131,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.236770,0.002131,-0.002250,0.249990,0,0);}
.m14b_c00254{transform:matrix(0.237071,0.001422,-0.001500,0.249996,0,0);-ms-transform:matrix(0.237071,0.001422,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.237071,0.001422,-0.001500,0.249996,0,0);}
.mc3_c00254{transform:matrix(0.237327,0.001187,-0.001250,0.249997,0,0);-ms-transform:matrix(0.237327,0.001187,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.237327,0.001187,-0.001250,0.249997,0,0);}
.m1e_c00254{transform:matrix(0.237740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237740,0.000000,0.000000,0.250000,0,0);}
.m35_c00254{transform:matrix(0.238165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238165,0.000000,0.000000,0.250000,0,0);}
.m29_c00254{transform:matrix(0.238300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238300,0.000000,0.000000,0.250000,0,0);}
.ma1_c00254{transform:matrix(0.238667,0.001193,-0.001250,0.249997,0,0);-ms-transform:matrix(0.238667,0.001193,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.238667,0.001193,-0.001250,0.249997,0,0);}
.md4_c00254{transform:matrix(0.239177,0.001196,-0.001250,0.249997,0,0);-ms-transform:matrix(0.239177,0.001196,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.239177,0.001196,-0.001250,0.249997,0,0);}
.ma7_c00254{transform:matrix(0.239232,0.001196,-0.001250,0.249997,0,0);-ms-transform:matrix(0.239232,0.001196,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.239232,0.001196,-0.001250,0.249997,0,0);}
.m77_c00254{transform:matrix(0.239787,0.001199,-0.001250,0.249997,0,0);-ms-transform:matrix(0.239787,0.001199,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.239787,0.001199,-0.001250,0.249997,0,0);}
.m14d_c00254{transform:matrix(0.239996,0.001440,-0.001500,0.249996,0,0);-ms-transform:matrix(0.239996,0.001440,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.239996,0.001440,-0.001500,0.249996,0,0);}
.mc_c00254{transform:matrix(0.240020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240020,0.000000,0.000000,0.250000,0,0);}
.m17_c00254{transform:matrix(0.240320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240320,0.000000,0.000000,0.250000,0,0);}
.m9c_c00254{transform:matrix(0.240672,0.001203,-0.001250,0.249997,0,0);-ms-transform:matrix(0.240672,0.001203,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.240672,0.001203,-0.001250,0.249997,0,0);}
.m20_c00254{transform:matrix(0.240740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240740,0.000000,0.000000,0.250000,0,0);}
.m23_c00254{transform:matrix(0.240755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240755,0.000000,0.000000,0.250000,0,0);}
.m8_c00254{transform:matrix(0.240775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240775,0.000000,0.000000,0.250000,0,0);}
.m119_c00254{transform:matrix(0.241792,0.001209,-0.001250,0.249997,0,0);-ms-transform:matrix(0.241792,0.001209,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.241792,0.001209,-0.001250,0.249997,0,0);}
.m38_c00254{transform:matrix(0.242570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242570,0.000000,0.000000,0.250000,0,0);}
.m7c_c00254{transform:matrix(0.242817,0.001214,-0.001250,0.249997,0,0);-ms-transform:matrix(0.242817,0.001214,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.242817,0.001214,-0.001250,0.249997,0,0);}
.m11b_c00254{transform:matrix(0.243467,0.001217,-0.001250,0.249997,0,0);-ms-transform:matrix(0.243467,0.001217,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.243467,0.001217,-0.001250,0.249997,0,0);}
.m12_c00254{transform:matrix(0.243515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243515,0.000000,0.000000,0.250000,0,0);}
.m5e_c00254{transform:matrix(0.243540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243540,0.000000,0.000000,0.250000,0,0);}
.mb_c00254{transform:matrix(0.243650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243650,0.000000,0.000000,0.250000,0,0);}
.m16_c00254{transform:matrix(0.244060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244060,0.000000,0.000000,0.250000,0,0);}
.m25_c00254{transform:matrix(0.244230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244230,0.000000,0.000000,0.250000,0,0);}
.m115_c00254{transform:matrix(0.244397,0.001222,-0.001250,0.249997,0,0);-ms-transform:matrix(0.244397,0.001222,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.244397,0.001222,-0.001250,0.249997,0,0);}
.m117_c00254{transform:matrix(0.244902,0.001225,-0.001250,0.249997,0,0);-ms-transform:matrix(0.244902,0.001225,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.244902,0.001225,-0.001250,0.249997,0,0);}
.m9e_c00254{transform:matrix(0.244962,0.001225,-0.001250,0.249997,0,0);-ms-transform:matrix(0.244962,0.001225,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.244962,0.001225,-0.001250,0.249997,0,0);}
.m15b_c00254{transform:matrix(0.245005,0.002205,-0.002250,0.249990,0,0);-ms-transform:matrix(0.245005,0.002205,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.245005,0.002205,-0.002250,0.249990,0,0);}
.m9b_c00254{transform:matrix(0.245637,0.001228,-0.001250,0.249997,0,0);-ms-transform:matrix(0.245637,0.001228,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.245637,0.001228,-0.001250,0.249997,0,0);}
.m80_c00254{transform:matrix(0.245677,0.001228,-0.001250,0.249997,0,0);-ms-transform:matrix(0.245677,0.001228,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.245677,0.001228,-0.001250,0.249997,0,0);}
.ma6_c00254{transform:matrix(0.246332,0.001232,-0.001250,0.249997,0,0);-ms-transform:matrix(0.246332,0.001232,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.246332,0.001232,-0.001250,0.249997,0,0);}
.m4f_c00254{transform:matrix(0.246515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246515,0.000000,0.000000,0.250000,0,0);}
.mcc_c00254{transform:matrix(0.246712,0.001234,-0.001250,0.249997,0,0);-ms-transform:matrix(0.246712,0.001234,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.246712,0.001234,-0.001250,0.249997,0,0);}
.m116_c00254{transform:matrix(0.247087,0.001235,-0.001250,0.249997,0,0);-ms-transform:matrix(0.247087,0.001235,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.247087,0.001235,-0.001250,0.249997,0,0);}
.m1a_c00254{transform:matrix(0.247320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247320,0.000000,0.000000,0.250000,0,0);}
.m69_c00254{transform:matrix(0.248245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248245,0.000000,0.000000,0.250000,0,0);}
.me_c00254{transform:matrix(0.248805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248805,0.000000,0.000000,0.250000,0,0);}
.m86_c00254{transform:matrix(0.249832,0.001249,-0.001250,0.249997,0,0);-ms-transform:matrix(0.249832,0.001249,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.249832,0.001249,-0.001250,0.249997,0,0);}
.m47_c00254{transform:matrix(0.250045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250045,0.000000,0.000000,0.250000,0,0);}
.ma4_c00254{transform:matrix(0.250857,0.001254,-0.001250,0.249997,0,0);-ms-transform:matrix(0.250857,0.001254,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.250857,0.001254,-0.001250,0.249997,0,0);}
.m9d_c00254{transform:matrix(0.251652,0.001258,-0.001250,0.249997,0,0);-ms-transform:matrix(0.251652,0.001258,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.251652,0.001258,-0.001250,0.249997,0,0);}
.mc7_c00254{transform:matrix(0.252822,0.001264,-0.001250,0.249997,0,0);-ms-transform:matrix(0.252822,0.001264,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.252822,0.001264,-0.001250,0.249997,0,0);}
.m11c_c00254{transform:matrix(0.253467,0.001267,-0.001250,0.249997,0,0);-ms-transform:matrix(0.253467,0.001267,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.253467,0.001267,-0.001250,0.249997,0,0);}
.m8d_c00254{transform:matrix(0.253587,0.001268,-0.001250,0.249997,0,0);-ms-transform:matrix(0.253587,0.001268,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.253587,0.001268,-0.001250,0.249997,0,0);}
.m66_c00254{transform:matrix(0.253875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253875,0.000000,0.000000,0.250000,0,0);}
.ma3_c00254{transform:matrix(0.254192,0.001271,-0.001250,0.249997,0,0);-ms-transform:matrix(0.254192,0.001271,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.254192,0.001271,-0.001250,0.249997,0,0);}
.m55_c00254{transform:matrix(0.255735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255735,0.000000,0.000000,0.250000,0,0);}
.m62_c00254{transform:matrix(0.255855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255855,0.000000,0.000000,0.250000,0,0);}
.m64_c00254{transform:matrix(0.256565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256565,0.000000,0.000000,0.250000,0,0);}
.ma0_c00254{transform:matrix(0.256777,0.001284,-0.001250,0.249997,0,0);-ms-transform:matrix(0.256777,0.001284,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.256777,0.001284,-0.001250,0.249997,0,0);}
.m21_c00254{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m67_c00254{transform:matrix(0.258375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258375,0.000000,0.000000,0.250000,0,0);}
.mc8_c00254{transform:matrix(0.259102,0.001296,-0.001250,0.249997,0,0);-ms-transform:matrix(0.259102,0.001296,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.259102,0.001296,-0.001250,0.249997,0,0);}
.mcb_c00254{transform:matrix(0.259807,0.001299,-0.001250,0.249997,0,0);-ms-transform:matrix(0.259807,0.001299,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.259807,0.001299,-0.001250,0.249997,0,0);}
.m11d_c00254{transform:matrix(0.261162,0.001306,-0.001250,0.249997,0,0);-ms-transform:matrix(0.261162,0.001306,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.261162,0.001306,-0.001250,0.249997,0,0);}
.m61_c00254{transform:matrix(0.263525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263525,0.000000,0.000000,0.250000,0,0);}
.m4e_c00254{transform:matrix(0.265160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265160,0.000000,0.000000,0.250000,0,0);}
.m57_c00254{transform:matrix(0.266570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266570,0.000000,0.000000,0.250000,0,0);}
.m5b_c00254{transform:matrix(0.266590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266590,0.000000,0.000000,0.250000,0,0);}
.m65_c00254{transform:matrix(0.266845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266845,0.000000,0.000000,0.250000,0,0);}
.mf_c00254{transform:matrix(0.266850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266850,0.000000,0.000000,0.250000,0,0);}
.m52_c00254{transform:matrix(0.268210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268210,0.000000,0.000000,0.250000,0,0);}
.m5f_c00254{transform:matrix(0.268715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268715,0.000000,0.000000,0.250000,0,0);}
.m98_c00254{transform:matrix(0.269572,0.001348,-0.001250,0.249997,0,0);-ms-transform:matrix(0.269572,0.001348,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.269572,0.001348,-0.001250,0.249997,0,0);}
.m5c_c00254{transform:matrix(0.270920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270920,0.000000,0.000000,0.250000,0,0);}
.m68_c00254{transform:matrix(0.271195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271195,0.000000,0.000000,0.250000,0,0);}
.mc2_c00254{transform:matrix(0.273157,0.001366,-0.001250,0.249997,0,0);-ms-transform:matrix(0.273157,0.001366,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.273157,0.001366,-0.001250,0.249997,0,0);}
.m56_c00254{transform:matrix(0.276425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276425,0.000000,0.000000,0.250000,0,0);}
.m60_c00254{transform:matrix(0.277045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277045,0.000000,0.000000,0.250000,0,0);}
.mb4_c00254{transform:matrix(0.277370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277370,0.000000,0.000000,0.250000,0,0);}
.m63_c00254{transform:matrix(0.277815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277815,0.000000,0.000000,0.250000,0,0);}
.m6a_c00254{transform:matrix(0.279915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279915,0.000000,0.000000,0.250000,0,0);}
.m58_c00254{transform:matrix(0.290770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290770,0.000000,0.000000,0.250000,0,0);}
.m126_c00254{transform:matrix(0.318526,0.001593,-0.001250,0.249997,0,0);-ms-transform:matrix(0.318526,0.001593,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.318526,0.001593,-0.001250,0.249997,0,0);}
.m1_c00254{transform:matrix(0.323890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323890,0.000000,0.000000,0.250000,0,0);}
.m99_c00254{transform:matrix(0.339231,0.001696,-0.001250,0.249997,0,0);-ms-transform:matrix(0.339231,0.001696,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.339231,0.001696,-0.001250,0.249997,0,0);}
.m59_c00254{transform:matrix(0.394030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394030,0.000000,0.000000,0.250000,0,0);}
.m2_c00254{transform:matrix(0.397570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397570,0.000000,0.000000,0.250000,0,0);}
.mce_c00254{transform:matrix(0.408590,0.002043,-0.001250,0.249997,0,0);-ms-transform:matrix(0.408590,0.002043,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.408590,0.002043,-0.001250,0.249997,0,0);}
.m54_c00254{transform:matrix(0.824820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.824820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.824820,0.000000,0.000000,0.250000,0,0);}
.v0_c00254{vertical-align:0.000000px;}
.ls0_c00254{letter-spacing:0.000000px;}
.sc__c00254{text-shadow:none;}
.sc0_c00254{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__c00254{-webkit-text-stroke:0px transparent;}
.sc0_c00254{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00254{word-spacing:0.000000px;}
._0_c00254{width:74.018362px;}
.fc0_c00254{color:transparent;}
.fs1_c00254{font-size:24.000000px;}
.fs0_c00254{font-size:36.000000px;}
.fs5_c00254{font-size:72.000000px;}
.fs3_c00254{font-size:78.000000px;}
.fs9_c00254{font-size:78.000975px;}
.fs2_c00254{font-size:84.000000px;}
.fs7_c00254{font-size:84.001050px;}
.fsd_c00254{font-size:84.001512px;}
.fs10_c00254{font-size:84.003402px;}
.fs4_c00254{font-size:90.000000px;}
.fsa_c00254{font-size:90.001125px;}
.fsc_c00254{font-size:90.001620px;}
.fsb_c00254{font-size:96.001200px;}
.fs6_c00254{font-size:102.000000px;}
.fs8_c00254{font-size:102.001275px;}
.fse_c00254{font-size:102.001836px;}
.fsf_c00254{font-size:102.004131px;}
.fs11_c00254{font-size:126.004032px;}
.y0_c00254{bottom:0.000000px;}
.yff_c00254{bottom:16.333020px;}
.yfe_c00254{bottom:16.667760px;}
.yfd_c00254{bottom:17.307516px;}
.yfc_c00254{bottom:17.587908px;}
.yfb_c00254{bottom:18.097692px;}
.yfa_c00254{bottom:18.616128px;}
.yf9_c00254{bottom:18.894624px;}
.yf8_c00254{bottom:19.500444px;}
.yf7_c00254{bottom:20.176500px;}
.yf6_c00254{bottom:20.552256px;}
.yf5_c00254{bottom:20.919432px;}
.yf4_c00254{bottom:21.331500px;}
.yf3_c00254{bottom:49.137774px;}
.yf2_c00254{bottom:49.377425px;}
.yf1_c00254{bottom:50.112897px;}
.yf0_c00254{bottom:50.757000px;}
.yef_c00254{bottom:50.990780px;}
.yee_c00254{bottom:51.522244px;}
.yed_c00254{bottom:52.065141px;}
.yec_c00254{bottom:52.304589px;}
.yeb_c00254{bottom:53.226483px;}
.yea_c00254{bottom:53.460290px;}
.ye9_c00254{bottom:70.272146px;}
.ye8_c00254{bottom:70.670612px;}
.ye7_c00254{bottom:70.981746px;}
.ye6_c00254{bottom:71.871315px;}
.ye5_c00254{bottom:72.160364px;}
.ye4_c00254{bottom:73.135239px;}
.ye3_c00254{bottom:73.737501px;}
.ye2_c00254{bottom:74.043560px;}
.ye1_c00254{bottom:74.349820px;}
.ye0_c00254{bottom:75.042344px;}
.ydf_c00254{bottom:75.331500px;}
.yde_c00254{bottom:90.522696px;}
.ydd_c00254{bottom:91.606815px;}
.ydc_c00254{bottom:92.316837px;}
.ydb_c00254{bottom:92.515515px;}
.yda_c00254{bottom:93.200508px;}
.yd9_c00254{bottom:93.501834px;}
.yd8_c00254{bottom:93.806397px;}
.yd7_c00254{bottom:94.484886px;}
.yd6_c00254{bottom:94.783083px;}
.yd5_c00254{bottom:95.191698px;}
.yd4_c00254{bottom:95.587713px;}
.yd3_c00254{bottom:113.573142px;}
.yd2_c00254{bottom:113.827446px;}
.yd1_c00254{bottom:114.418935px;}
.yd0_c00254{bottom:114.558174px;}
.ycf_c00254{bottom:115.027974px;}
.yce_c00254{bottom:115.351902px;}
.ycd_c00254{bottom:116.016075px;}
.ycc_c00254{bottom:116.675541px;}
.ycb_c00254{bottom:116.869833px;}
.yca_c00254{bottom:117.135576px;}
.yc9_c00254{bottom:117.450000px;}
.yc6_c00254{bottom:148.406382px;}
.yc8_c00254{bottom:148.406640px;}
.yc7_c00254{bottom:148.406871px;}
.yc5_c00254{bottom:167.421978px;}
.yc4_c00254{bottom:167.624433px;}
.yc3_c00254{bottom:167.955237px;}
.yc2_c00254{bottom:168.614316px;}
.yc1_c00254{bottom:168.813513px;}
.yc0_c00254{bottom:169.019307px;}
.ybf_c00254{bottom:169.404831px;}
.ybe_c00254{bottom:169.605738px;}
.ybd_c00254{bottom:169.801677px;}
.ybc_c00254{bottom:170.138781px;}
.ybb_c00254{bottom:170.328195px;}
.yba_c00254{bottom:170.600472px;}
.yb9_c00254{bottom:170.910000px;}
.yb8_c00254{bottom:198.664282px;}
.yb7_c00254{bottom:198.889635px;}
.yb6_c00254{bottom:199.277205px;}
.yb5_c00254{bottom:199.728840px;}
.yb4_c00254{bottom:199.974855px;}
.yb3_c00254{bottom:200.109675px;}
.yb2_c00254{bottom:200.345947px;}
.yb1_c00254{bottom:200.508532px;}
.yb0_c00254{bottom:201.039420px;}
.yaf_c00254{bottom:201.586883px;}
.yae_c00254{bottom:201.953887px;}
.yad_c00254{bottom:229.437608px;}
.yac_c00254{bottom:229.698450px;}
.yab_c00254{bottom:229.904437px;}
.yaa_c00254{bottom:230.490653px;}
.ya9_c00254{bottom:230.821515px;}
.ya8_c00254{bottom:230.957325px;}
.ya7_c00254{bottom:231.282712px;}
.ya6_c00254{bottom:231.490095px;}
.ya5_c00254{bottom:231.884115px;}
.ya4_c00254{bottom:232.147702px;}
.ya3_c00254{bottom:232.732552px;}
.ya2_c00254{bottom:233.002950px;}
.y9c_c00254{bottom:263.228460px;}
.y99_c00254{bottom:263.228595px;}
.y9e_c00254{bottom:263.228617px;}
.ya1_c00254{bottom:263.228782px;}
.y9a_c00254{bottom:263.228903px;}
.y9d_c00254{bottom:263.228910px;}
.y98_c00254{bottom:263.229045px;}
.y9b_c00254{bottom:263.229060px;}
.y9f_c00254{bottom:263.229075px;}
.ya0_c00254{bottom:263.229225px;}
.y8f_c00254{bottom:294.218183px;}
.y97_c00254{bottom:294.218355px;}
.y90_c00254{bottom:294.218482px;}
.y91_c00254{bottom:294.218490px;}
.y8e_c00254{bottom:294.218625px;}
.y93_c00254{bottom:294.218648px;}
.y92_c00254{bottom:294.219090px;}
.y94_c00254{bottom:294.219098px;}
.y96_c00254{bottom:294.219398px;}
.y95_c00254{bottom:294.219697px;}
.y88_c00254{bottom:326.117993px;}
.y8b_c00254{bottom:326.118450px;}
.y89_c00254{bottom:326.118592px;}
.y87_c00254{bottom:326.118743px;}
.y8a_c00254{bottom:326.118750px;}
.y8d_c00254{bottom:326.118758px;}
.y85_c00254{bottom:326.118878px;}
.y8c_c00254{bottom:326.119058px;}
.y86_c00254{bottom:326.119485px;}
.y83_c00254{bottom:358.785533px;}
.y84_c00254{bottom:358.785833px;}
.y82_c00254{bottom:358.785975px;}
.y81_c00254{bottom:358.786718px;}
.y80_c00254{bottom:358.787318px;}
.y7f_c00254{bottom:358.787460px;}
.y7e_c00254{bottom:358.787610px;}
.y7d_c00254{bottom:358.788353px;}
.y7c_c00254{bottom:358.789103px;}
.y7b_c00254{bottom:358.789252px;}
.y7a_c00254{bottom:358.789703px;}
.y79_c00254{bottom:388.409880px;}
.y78_c00254{bottom:388.528605px;}
.y77_c00254{bottom:389.020058px;}
.y76_c00254{bottom:389.236080px;}
.y75_c00254{bottom:389.561438px;}
.y74_c00254{bottom:389.680178px;}
.y73_c00254{bottom:389.955653px;}
.y72_c00254{bottom:390.063555px;}
.y71_c00254{bottom:390.721230px;}
.y70_c00254{bottom:390.942488px;}
.y6f_c00254{bottom:391.550010px;}
.y6e_c00254{bottom:391.768680px;}
.y64_c00254{bottom:422.054377px;}
.y65_c00254{bottom:422.054535px;}
.y66_c00254{bottom:422.054685px;}
.y69_c00254{bottom:422.054692px;}
.y67_c00254{bottom:422.054842px;}
.y6a_c00254{bottom:422.054850px;}
.y6b_c00254{bottom:422.054858px;}
.y6d_c00254{bottom:422.055173px;}
.y68_c00254{bottom:422.055292px;}
.y6c_c00254{bottom:422.055465px;}
.y63_c00254{bottom:454.177125px;}
.y62_c00254{bottom:454.177275px;}
.y61_c00254{bottom:454.178018px;}
.y58_c00254{bottom:454.178137px;}
.y60_c00254{bottom:454.178160px;}
.y59_c00254{bottom:454.178595px;}
.y5b_c00254{bottom:454.178745px;}
.y5f_c00254{bottom:454.178760px;}
.y5a_c00254{bottom:454.179045px;}
.y5e_c00254{bottom:454.179202px;}
.y5c_c00254{bottom:454.179345px;}
.y5d_c00254{bottom:454.179945px;}
.y57_c00254{bottom:484.115047px;}
.y56_c00254{bottom:484.911885px;}
.y55_c00254{bottom:485.123730px;}
.y54_c00254{bottom:485.239762px;}
.y53_c00254{bottom:485.563845px;}
.y52_c00254{bottom:485.735280px;}
.y51_c00254{bottom:485.956635px;}
.y50_c00254{bottom:486.284767px;}
.y4f_c00254{bottom:486.446670px;}
.y4e_c00254{bottom:486.889508px;}
.y4d_c00254{bottom:487.488945px;}
.y4c_c00254{bottom:487.588867px;}
.y4b_c00254{bottom:487.890000px;}
.y4a_c00254{bottom:518.071500px;}
.y42_c00254{bottom:548.617920px;}
.y41_c00254{bottom:548.618070px;}
.y44_c00254{bottom:548.618377px;}
.y43_c00254{bottom:548.618528px;}
.y3e_c00254{bottom:548.618663px;}
.y45_c00254{bottom:548.618677px;}
.y47_c00254{bottom:548.618685px;}
.y40_c00254{bottom:548.618820px;}
.y48_c00254{bottom:548.618985px;}
.y3f_c00254{bottom:548.619113px;}
.y46_c00254{bottom:548.619135px;}
.y49_c00254{bottom:548.619592px;}
.y3c_c00254{bottom:579.710880px;}
.y3d_c00254{bottom:579.711480px;}
.y3b_c00254{bottom:579.711622px;}
.y3a_c00254{bottom:579.711773px;}
.y36_c00254{bottom:579.712207px;}
.y37_c00254{bottom:579.712358px;}
.y39_c00254{bottom:579.712373px;}
.y38_c00254{bottom:579.712665px;}
.y34_c00254{bottom:579.712943px;}
.y35_c00254{bottom:579.712950px;}
.y32_c00254{bottom:579.713235px;}
.y33_c00254{bottom:579.713543px;}
.y29_c00254{bottom:611.033280px;}
.y2a_c00254{bottom:611.033580px;}
.y31_c00254{bottom:611.033610px;}
.y28_c00254{bottom:611.033730px;}
.y30_c00254{bottom:611.033903px;}
.y27_c00254{bottom:611.034022px;}
.y2d_c00254{bottom:611.034045px;}
.y26_c00254{bottom:611.034173px;}
.y2b_c00254{bottom:611.034188px;}
.y2c_c00254{bottom:611.034337px;}
.y2e_c00254{bottom:611.034345px;}
.y2f_c00254{bottom:611.034645px;}
.y25_c00254{bottom:641.191958px;}
.y24_c00254{bottom:641.360723px;}
.y23_c00254{bottom:641.687423px;}
.y22_c00254{bottom:641.848035px;}
.y21_c00254{bottom:642.018158px;}
.y20_c00254{bottom:642.674265px;}
.y1f_c00254{bottom:642.845700px;}
.y1e_c00254{bottom:643.219650px;}
.y1d_c00254{bottom:643.665158px;}
.y1c_c00254{bottom:643.836615px;}
.y1b_c00254{bottom:644.329358px;}
.y1a_c00254{bottom:644.490000px;}
.y19_c00254{bottom:674.847000px;}
.y18_c00254{bottom:704.536500px;}
.y17_c00254{bottom:704.701500px;}
.y16_c00254{bottom:705.141000px;}
.y15_c00254{bottom:705.361500px;}
.y14_c00254{bottom:705.628500px;}
.y13_c00254{bottom:705.966000px;}
.y12_c00254{bottom:706.132500px;}
.y11_c00254{bottom:706.455000px;}
.y10_c00254{bottom:706.627500px;}
.yf_c00254{bottom:707.067000px;}
.ye_c00254{bottom:707.175000px;}
.yd_c00254{bottom:707.503500px;}
.yc_c00254{bottom:707.671500px;}
.yb_c00254{bottom:738.369000px;}
.ya_c00254{bottom:802.399500px;}
.y9_c00254{bottom:833.889000px;}
.y8_c00254{bottom:865.881000px;}
.y7_c00254{bottom:897.010500px;}
.y6_c00254{bottom:929.572500px;}
.y5_c00254{bottom:961.128000px;}
.y4_c00254{bottom:991.569000px;}
.y3_c00254{bottom:1023.718500px;}
.y2_c00254{bottom:1081.993500px;}
.y1_c00254{bottom:1087.131000px;}
.h3_c00254{height:24.000000px;}
.h2_c00254{height:36.000000px;}
.h7_c00254{height:72.000000px;}
.h5_c00254{height:78.000000px;}
.hb_c00254{height:78.000975px;}
.h4_c00254{height:84.000000px;}
.h9_c00254{height:84.001050px;}
.hf_c00254{height:84.001512px;}
.h12_c00254{height:84.003402px;}
.h6_c00254{height:90.000000px;}
.hc_c00254{height:90.001125px;}
.he_c00254{height:90.001620px;}
.hd_c00254{height:96.001200px;}
.h8_c00254{height:102.000000px;}
.ha_c00254{height:102.001275px;}
.h10_c00254{height:102.001836px;}
.h11_c00254{height:102.004131px;}
.h13_c00254{height:126.004032px;}
.h0_c00254{height:1115.640000px;}
.h1_c00254{height:1116.000000px;}
.w0_c00254{width:915.000000px;}
.x0_c00254{left:0.000000px;}
.x46_c00254{left:136.239000px;}
.x6d_c00254{left:140.130563px;}
.x7e_c00254{left:145.533420px;}
.x3a_c00254{left:146.880000px;}
.x4_c00254{left:148.770000px;}
.x67_c00254{left:155.427000px;}
.x7a_c00254{left:167.131305px;}
.x47_c00254{left:169.758000px;}
.x41_c00254{left:179.820000px;}
.x5_c00254{left:181.170000px;}
.x3b_c00254{left:182.250000px;}
.x50_c00254{left:190.621793px;}
.x28_c00254{left:191.970000px;}
.x90_c00254{left:200.658000px;}
.x5e_c00254{left:201.692003px;}
.xd_c00254{left:202.770000px;}
.x58_c00254{left:212.761747px;}
.x32_c00254{left:214.920000px;}
.x6_c00254{left:216.000000px;}
.x19_c00254{left:225.720000px;}
.x7f_c00254{left:233.824125px;}
.x48_c00254{left:235.380000px;}
.xe_c00254{left:236.790000px;}
.x62_c00254{left:245.700000px;}
.x4e_c00254{left:247.590000px;}
.x1a_c00254{left:257.850000px;}
.x2a_c00254{left:259.200000px;}
.x70_c00254{left:266.493608px;}
.x82_c00254{left:268.926060px;}
.x8b_c00254{left:278.008500px;}
.x33_c00254{left:279.450000px;}
.x85_c00254{left:288.811155px;}
.x3c_c00254{left:291.060000px;}
.x91_c00254{left:293.524500px;}
.x71_c00254{left:299.164425px;}
.x51_c00254{left:300.783045px;}
.x8e_c00254{left:310.906500px;}
.x42_c00254{left:312.390000px;}
.x7_c00254{left:313.740000px;}
.x59_c00254{left:322.382985px;}
.xf_c00254{left:323.730000px;}
.x43_c00254{left:333.180000px;}
.x8c_c00254{left:334.192500px;}
.x1b_c00254{left:335.610000px;}
.x49_c00254{left:344.716500px;}
.x22_c00254{left:345.870000px;}
.x68_c00254{left:355.525500px;}
.x2b_c00254{left:358.290000px;}
.x6e_c00254{left:366.394725px;}
.x34_c00254{left:368.010000px;}
.x52_c00254{left:376.114928px;}
.x5f_c00254{left:377.734898px;}
.x4a_c00254{left:379.282500px;}
.x72_c00254{left:388.535160px;}
.x1c_c00254{left:390.150000px;}
.x86_c00254{left:398.432108px;}
.x63_c00254{left:399.600000px;}
.x3_c00254{left:401.490000px;}
.x29_c00254{left:403.650000px;}
.x73_c00254{left:410.945723px;}
.x10_c00254{left:412.290000px;}
.x88_c00254{left:431.623365px;}
.x35_c00254{left:433.620000px;}
.x8_c00254{left:434.700000px;}
.x1d_c00254{left:436.050000px;}
.x7b_c00254{left:441.725160px;}
.x4b_c00254{left:443.806500px;}
.x23_c00254{left:445.770000px;}
.x92_c00254{left:453.759000px;}
.x2c_c00254{left:456.030000px;}
.x11_c00254{left:457.380000px;}
.x7c_c00254{left:464.407388px;}
.x44_c00254{left:465.480000px;}
.x36_c00254{left:467.100000px;}
.x4c_c00254{left:477.015000px;}
.x53_c00254{left:487.896225px;}
.x2d_c00254{left:489.240000px;}
.x1e_c00254{left:499.230000px;}
.x1_c00254{left:502.200000px;}
.x45_c00254{left:510.030000px;}
.x9_c00254{left:511.380000px;}
.x2e_c00254{left:521.100000px;}
.x54_c00254{left:523.267110px;}
.x89_c00254{left:531.252368px;}
.x24_c00254{left:532.440000px;}
.x3d_c00254{left:542.970000px;}
.x1f_c00254{left:544.050000px;}
.x74_c00254{left:553.237778px;}
.x37_c00254{left:554.580000px;}
.x77_c00254{left:564.510690px;}
.x3e_c00254{left:566.730000px;}
.x80_c00254{left:575.649675px;}
.x4f_c00254{left:577.530000px;}
.x5a_c00254{left:583.746517px;}
.x69_c00254{left:586.371000px;}
.x12_c00254{left:588.060000px;}
.x55_c00254{left:590.227283px;}
.x4d_c00254{left:597.969000px;}
.x56_c00254{left:609.667770px;}
.x13_c00254{left:611.010000px;}
.x93_c00254{left:617.098500px;}
.x8a_c00254{left:618.735990px;}
.x3f_c00254{left:621.270000px;}
.x81_c00254{left:630.191040px;}
.xa_c00254{left:631.260000px;}
.x38_c00254{left:642.060000px;}
.x8d_c00254{left:643.257732px;}
.x94_c00254{left:652.147500px;}
.x57_c00254{left:653.408865px;}
.x64_c00254{left:654.480000px;}
.x87_c00254{left:662.762288px;}
.x14_c00254{left:664.470000px;}
.x2f_c00254{left:665.820000px;}
.x75_c00254{left:674.739315px;}
.xb_c00254{left:676.350000px;}
.x8f_c00254{left:679.209716px;}
.x6a_c00254{left:685.474500px;}
.x60_c00254{left:686.889630px;}
.x25_c00254{left:687.960000px;}
.x40_c00254{left:689.040000px;}
.x78_c00254{left:696.534690px;}
.x15_c00254{left:698.220000px;}
.xc_c00254{left:708.480000px;}
.x30_c00254{left:709.560000px;}
.x83_c00254{left:717.672780px;}
.x61_c00254{left:719.830455px;}
.x5b_c00254{left:727.658610px;}
.x20_c00254{left:730.620000px;}
.x95_c00254{left:732.117000px;}
.x26_c00254{left:741.420000px;}
.x6b_c00254{left:751.050000px;}
.x16_c00254{left:753.030000px;}
.x7d_c00254{left:761.681820px;}
.x39_c00254{left:763.830000px;}
.x76_c00254{left:773.020275px;}
.x17_c00254{left:774.630000px;}
.x21_c00254{left:776.250000px;}
.x65_c00254{left:784.620000px;}
.x31_c00254{left:786.240000px;}
.x79_c00254{left:794.825190px;}
.x18_c00254{left:796.770000px;}
.x5c_c00254{left:804.609030px;}
.x27_c00254{left:808.110000px;}
.x84_c00254{left:816.763755px;}
.x66_c00254{left:818.370000px;}
.x5d_c00254{left:829.989667px;}
.x6f_c00254{left:886.421715px;}
.x6c_c00254{left:910.417500px;}
.x2_c00254{left:913.410000px;}
@media print{
.v0_c00254{vertical-align:0.000000pt;}
.ls0_c00254{letter-spacing:0.000000pt;}
.ws0_c00254{word-spacing:0.000000pt;}
._0_c00254{width:65.794099pt;}
.fs1_c00254{font-size:21.333333pt;}
.fs0_c00254{font-size:32.000000pt;}
.fs5_c00254{font-size:64.000000pt;}
.fs3_c00254{font-size:69.333333pt;}
.fs9_c00254{font-size:69.334200pt;}
.fs2_c00254{font-size:74.666667pt;}
.fs7_c00254{font-size:74.667600pt;}
.fsd_c00254{font-size:74.668011pt;}
.fs10_c00254{font-size:74.669691pt;}
.fs4_c00254{font-size:80.000000pt;}
.fsa_c00254{font-size:80.001000pt;}
.fsc_c00254{font-size:80.001440pt;}
.fsb_c00254{font-size:85.334400pt;}
.fs6_c00254{font-size:90.666667pt;}
.fs8_c00254{font-size:90.667800pt;}
.fse_c00254{font-size:90.668299pt;}
.fsf_c00254{font-size:90.670339pt;}
.fs11_c00254{font-size:112.003584pt;}
.y0_c00254{bottom:0.000000pt;}
.yff_c00254{bottom:14.518240pt;}
.yfe_c00254{bottom:14.815787pt;}
.yfd_c00254{bottom:15.384459pt;}
.yfc_c00254{bottom:15.633696pt;}
.yfb_c00254{bottom:16.086837pt;}
.yfa_c00254{bottom:16.547669pt;}
.yf9_c00254{bottom:16.795221pt;}
.yf8_c00254{bottom:17.333728pt;}
.yf7_c00254{bottom:17.934667pt;}
.yf6_c00254{bottom:18.268672pt;}
.yf5_c00254{bottom:18.595051pt;}
.yf4_c00254{bottom:18.961333pt;}
.yf3_c00254{bottom:43.678021pt;}
.yf2_c00254{bottom:43.891044pt;}
.yf1_c00254{bottom:44.544797pt;}
.yf0_c00254{bottom:45.117333pt;}
.yef_c00254{bottom:45.325137pt;}
.yee_c00254{bottom:45.797551pt;}
.yed_c00254{bottom:46.280125pt;}
.yec_c00254{bottom:46.492968pt;}
.yeb_c00254{bottom:47.312429pt;}
.yea_c00254{bottom:47.520257pt;}
.ye9_c00254{bottom:62.464129pt;}
.ye8_c00254{bottom:62.818321pt;}
.ye7_c00254{bottom:63.094885pt;}
.ye6_c00254{bottom:63.885613pt;}
.ye5_c00254{bottom:64.142545pt;}
.ye4_c00254{bottom:65.009101pt;}
.ye3_c00254{bottom:65.544445pt;}
.ye2_c00254{bottom:65.816497pt;}
.ye1_c00254{bottom:66.088729pt;}
.ye0_c00254{bottom:66.704305pt;}
.ydf_c00254{bottom:66.961333pt;}
.yde_c00254{bottom:80.464619pt;}
.ydd_c00254{bottom:81.428280pt;}
.ydc_c00254{bottom:82.059411pt;}
.ydb_c00254{bottom:82.236013pt;}
.yda_c00254{bottom:82.844896pt;}
.yd9_c00254{bottom:83.112741pt;}
.yd8_c00254{bottom:83.383464pt;}
.yd7_c00254{bottom:83.986565pt;}
.yd6_c00254{bottom:84.251629pt;}
.yd5_c00254{bottom:84.614843pt;}
.yd4_c00254{bottom:84.966856pt;}
.yd3_c00254{bottom:100.953904pt;}
.yd2_c00254{bottom:101.179952pt;}
.yd1_c00254{bottom:101.705720pt;}
.yd0_c00254{bottom:101.829488pt;}
.ycf_c00254{bottom:102.247088pt;}
.yce_c00254{bottom:102.535024pt;}
.ycd_c00254{bottom:103.125400pt;}
.ycc_c00254{bottom:103.711592pt;}
.ycb_c00254{bottom:103.884296pt;}
.yca_c00254{bottom:104.120512pt;}
.yc9_c00254{bottom:104.400000pt;}
.yc6_c00254{bottom:131.916784pt;}
.yc8_c00254{bottom:131.917013pt;}
.yc7_c00254{bottom:131.917219pt;}
.yc5_c00254{bottom:148.819536pt;}
.yc4_c00254{bottom:148.999496pt;}
.yc3_c00254{bottom:149.293544pt;}
.yc2_c00254{bottom:149.879392pt;}
.yc1_c00254{bottom:150.056456pt;}
.yc0_c00254{bottom:150.239384pt;}
.ybf_c00254{bottom:150.582072pt;}
.ybe_c00254{bottom:150.760656pt;}
.ybd_c00254{bottom:150.934824pt;}
.ybc_c00254{bottom:151.234472pt;}
.ybb_c00254{bottom:151.402840pt;}
.yba_c00254{bottom:151.644864pt;}
.yb9_c00254{bottom:151.920000pt;}
.yb8_c00254{bottom:176.590473pt;}
.yb7_c00254{bottom:176.790787pt;}
.yb6_c00254{bottom:177.135293pt;}
.yb5_c00254{bottom:177.536747pt;}
.yb4_c00254{bottom:177.755427pt;}
.yb3_c00254{bottom:177.875267pt;}
.yb2_c00254{bottom:178.085287pt;}
.yb1_c00254{bottom:178.229807pt;}
.yb0_c00254{bottom:178.701707pt;}
.yaf_c00254{bottom:179.188340pt;}
.yae_c00254{bottom:179.514567pt;}
.yad_c00254{bottom:203.944540pt;}
.yac_c00254{bottom:204.176400pt;}
.yab_c00254{bottom:204.359500pt;}
.yaa_c00254{bottom:204.880580pt;}
.ya9_c00254{bottom:205.174680pt;}
.ya8_c00254{bottom:205.295400pt;}
.ya7_c00254{bottom:205.584633pt;}
.ya6_c00254{bottom:205.768973pt;}
.ya5_c00254{bottom:206.119213pt;}
.ya4_c00254{bottom:206.353513pt;}
.ya3_c00254{bottom:206.873380pt;}
.ya2_c00254{bottom:207.113733pt;}
.y9c_c00254{bottom:233.980853pt;}
.y99_c00254{bottom:233.980973pt;}
.y9e_c00254{bottom:233.980993pt;}
.ya1_c00254{bottom:233.981140pt;}
.y9a_c00254{bottom:233.981247pt;}
.y9d_c00254{bottom:233.981253pt;}
.y98_c00254{bottom:233.981373pt;}
.y9b_c00254{bottom:233.981387pt;}
.y9f_c00254{bottom:233.981400pt;}
.ya0_c00254{bottom:233.981533pt;}
.y8f_c00254{bottom:261.527273pt;}
.y97_c00254{bottom:261.527427pt;}
.y90_c00254{bottom:261.527540pt;}
.y91_c00254{bottom:261.527547pt;}
.y8e_c00254{bottom:261.527667pt;}
.y93_c00254{bottom:261.527687pt;}
.y92_c00254{bottom:261.528080pt;}
.y94_c00254{bottom:261.528087pt;}
.y96_c00254{bottom:261.528353pt;}
.y95_c00254{bottom:261.528620pt;}
.y88_c00254{bottom:289.882660pt;}
.y8b_c00254{bottom:289.883067pt;}
.y89_c00254{bottom:289.883193pt;}
.y87_c00254{bottom:289.883327pt;}
.y8a_c00254{bottom:289.883333pt;}
.y8d_c00254{bottom:289.883340pt;}
.y85_c00254{bottom:289.883447pt;}
.y8c_c00254{bottom:289.883607pt;}
.y86_c00254{bottom:289.883987pt;}
.y83_c00254{bottom:318.920473pt;}
.y84_c00254{bottom:318.920740pt;}
.y82_c00254{bottom:318.920867pt;}
.y81_c00254{bottom:318.921527pt;}
.y80_c00254{bottom:318.922060pt;}
.y7f_c00254{bottom:318.922187pt;}
.y7e_c00254{bottom:318.922320pt;}
.y7d_c00254{bottom:318.922980pt;}
.y7c_c00254{bottom:318.923647pt;}
.y7b_c00254{bottom:318.923780pt;}
.y7a_c00254{bottom:318.924180pt;}
.y79_c00254{bottom:345.253227pt;}
.y78_c00254{bottom:345.358760pt;}
.y77_c00254{bottom:345.795607pt;}
.y76_c00254{bottom:345.987627pt;}
.y75_c00254{bottom:346.276833pt;}
.y74_c00254{bottom:346.382380pt;}
.y73_c00254{bottom:346.627247pt;}
.y72_c00254{bottom:346.723160pt;}
.y71_c00254{bottom:347.307760pt;}
.y70_c00254{bottom:347.504433pt;}
.y6f_c00254{bottom:348.044453pt;}
.y6e_c00254{bottom:348.238827pt;}
.y64_c00254{bottom:375.159447pt;}
.y65_c00254{bottom:375.159587pt;}
.y66_c00254{bottom:375.159720pt;}
.y69_c00254{bottom:375.159727pt;}
.y67_c00254{bottom:375.159860pt;}
.y6a_c00254{bottom:375.159867pt;}
.y6b_c00254{bottom:375.159873pt;}
.y6d_c00254{bottom:375.160153pt;}
.y68_c00254{bottom:375.160260pt;}
.y6c_c00254{bottom:375.160413pt;}
.y63_c00254{bottom:403.713000pt;}
.y62_c00254{bottom:403.713133pt;}
.y61_c00254{bottom:403.713793pt;}
.y58_c00254{bottom:403.713900pt;}
.y60_c00254{bottom:403.713920pt;}
.y59_c00254{bottom:403.714307pt;}
.y5b_c00254{bottom:403.714440pt;}
.y5f_c00254{bottom:403.714453pt;}
.y5a_c00254{bottom:403.714707pt;}
.y5e_c00254{bottom:403.714847pt;}
.y5c_c00254{bottom:403.714973pt;}
.y5d_c00254{bottom:403.715507pt;}
.y57_c00254{bottom:430.324487pt;}
.y56_c00254{bottom:431.032787pt;}
.y55_c00254{bottom:431.221093pt;}
.y54_c00254{bottom:431.324233pt;}
.y53_c00254{bottom:431.612307pt;}
.y52_c00254{bottom:431.764693pt;}
.y51_c00254{bottom:431.961453pt;}
.y50_c00254{bottom:432.253127pt;}
.y4f_c00254{bottom:432.397040pt;}
.y4e_c00254{bottom:432.790673pt;}
.y4d_c00254{bottom:433.323507pt;}
.y4c_c00254{bottom:433.412327pt;}
.y4b_c00254{bottom:433.680000pt;}
.y4a_c00254{bottom:460.508000pt;}
.y42_c00254{bottom:487.660373pt;}
.y41_c00254{bottom:487.660507pt;}
.y44_c00254{bottom:487.660780pt;}
.y43_c00254{bottom:487.660913pt;}
.y3e_c00254{bottom:487.661033pt;}
.y45_c00254{bottom:487.661047pt;}
.y47_c00254{bottom:487.661053pt;}
.y40_c00254{bottom:487.661173pt;}
.y48_c00254{bottom:487.661320pt;}
.y3f_c00254{bottom:487.661433pt;}
.y46_c00254{bottom:487.661453pt;}
.y49_c00254{bottom:487.661860pt;}
.y3c_c00254{bottom:515.298560pt;}
.y3d_c00254{bottom:515.299093pt;}
.y3b_c00254{bottom:515.299220pt;}
.y3a_c00254{bottom:515.299353pt;}
.y36_c00254{bottom:515.299740pt;}
.y37_c00254{bottom:515.299873pt;}
.y39_c00254{bottom:515.299887pt;}
.y38_c00254{bottom:515.300147pt;}
.y34_c00254{bottom:515.300393pt;}
.y35_c00254{bottom:515.300400pt;}
.y32_c00254{bottom:515.300653pt;}
.y33_c00254{bottom:515.300927pt;}
.y29_c00254{bottom:543.140693pt;}
.y2a_c00254{bottom:543.140960pt;}
.y31_c00254{bottom:543.140987pt;}
.y28_c00254{bottom:543.141093pt;}
.y30_c00254{bottom:543.141247pt;}
.y27_c00254{bottom:543.141353pt;}
.y2d_c00254{bottom:543.141373pt;}
.y26_c00254{bottom:543.141487pt;}
.y2b_c00254{bottom:543.141500pt;}
.y2c_c00254{bottom:543.141633pt;}
.y2e_c00254{bottom:543.141640pt;}
.y2f_c00254{bottom:543.141907pt;}
.y25_c00254{bottom:569.948407pt;}
.y24_c00254{bottom:570.098420pt;}
.y23_c00254{bottom:570.388820pt;}
.y22_c00254{bottom:570.531587pt;}
.y21_c00254{bottom:570.682807pt;}
.y20_c00254{bottom:571.266013pt;}
.y1f_c00254{bottom:571.418400pt;}
.y1e_c00254{bottom:571.750800pt;}
.y1d_c00254{bottom:572.146807pt;}
.y1c_c00254{bottom:572.299213pt;}
.y1b_c00254{bottom:572.737207pt;}
.y1a_c00254{bottom:572.880000pt;}
.y19_c00254{bottom:599.864000pt;}
.y18_c00254{bottom:626.254667pt;}
.y17_c00254{bottom:626.401333pt;}
.y16_c00254{bottom:626.792000pt;}
.y15_c00254{bottom:626.988000pt;}
.y14_c00254{bottom:627.225333pt;}
.y13_c00254{bottom:627.525333pt;}
.y12_c00254{bottom:627.673333pt;}
.y11_c00254{bottom:627.960000pt;}
.y10_c00254{bottom:628.113333pt;}
.yf_c00254{bottom:628.504000pt;}
.ye_c00254{bottom:628.600000pt;}
.yd_c00254{bottom:628.892000pt;}
.yc_c00254{bottom:629.041333pt;}
.yb_c00254{bottom:656.328000pt;}
.ya_c00254{bottom:713.244000pt;}
.y9_c00254{bottom:741.234667pt;}
.y8_c00254{bottom:769.672000pt;}
.y7_c00254{bottom:797.342667pt;}
.y6_c00254{bottom:826.286667pt;}
.y5_c00254{bottom:854.336000pt;}
.y4_c00254{bottom:881.394667pt;}
.y3_c00254{bottom:909.972000pt;}
.y2_c00254{bottom:961.772000pt;}
.y1_c00254{bottom:966.338667pt;}
.h3_c00254{height:21.333333pt;}
.h2_c00254{height:32.000000pt;}
.h7_c00254{height:64.000000pt;}
.h5_c00254{height:69.333333pt;}
.hb_c00254{height:69.334200pt;}
.h4_c00254{height:74.666667pt;}
.h9_c00254{height:74.667600pt;}
.hf_c00254{height:74.668011pt;}
.h12_c00254{height:74.669691pt;}
.h6_c00254{height:80.000000pt;}
.hc_c00254{height:80.001000pt;}
.he_c00254{height:80.001440pt;}
.hd_c00254{height:85.334400pt;}
.h8_c00254{height:90.666667pt;}
.ha_c00254{height:90.667800pt;}
.h10_c00254{height:90.668299pt;}
.h11_c00254{height:90.670339pt;}
.h13_c00254{height:112.003584pt;}
.h0_c00254{height:991.680000pt;}
.h1_c00254{height:992.000000pt;}
.w0_c00254{width:813.333333pt;}
.x0_c00254{left:0.000000pt;}
.x46_c00254{left:121.101333pt;}
.x6d_c00254{left:124.560500pt;}
.x7e_c00254{left:129.363040pt;}
.x3a_c00254{left:130.560000pt;}
.x4_c00254{left:132.240000pt;}
.x67_c00254{left:138.157333pt;}
.x7a_c00254{left:148.561160pt;}
.x47_c00254{left:150.896000pt;}
.x41_c00254{left:159.840000pt;}
.x5_c00254{left:161.040000pt;}
.x3b_c00254{left:162.000000pt;}
.x50_c00254{left:169.441593pt;}
.x28_c00254{left:170.640000pt;}
.x90_c00254{left:178.362667pt;}
.x5e_c00254{left:179.281780pt;}
.xd_c00254{left:180.240000pt;}
.x58_c00254{left:189.121553pt;}
.x32_c00254{left:191.040000pt;}
.x6_c00254{left:192.000000pt;}
.x19_c00254{left:200.640000pt;}
.x7f_c00254{left:207.843667pt;}
.x48_c00254{left:209.226667pt;}
.xe_c00254{left:210.480000pt;}
.x62_c00254{left:218.400000pt;}
.x4e_c00254{left:220.080000pt;}
.x1a_c00254{left:229.200000pt;}
.x2a_c00254{left:230.400000pt;}
.x70_c00254{left:236.883207pt;}
.x82_c00254{left:239.045387pt;}
.x8b_c00254{left:247.118667pt;}
.x33_c00254{left:248.400000pt;}
.x85_c00254{left:256.721027pt;}
.x3c_c00254{left:258.720000pt;}
.x91_c00254{left:260.910667pt;}
.x71_c00254{left:265.923933pt;}
.x51_c00254{left:267.362707pt;}
.x8e_c00254{left:276.361333pt;}
.x42_c00254{left:277.680000pt;}
.x7_c00254{left:278.880000pt;}
.x59_c00254{left:286.562653pt;}
.xf_c00254{left:287.760000pt;}
.x43_c00254{left:296.160000pt;}
.x8c_c00254{left:297.060000pt;}
.x1b_c00254{left:298.320000pt;}
.x49_c00254{left:306.414667pt;}
.x22_c00254{left:307.440000pt;}
.x68_c00254{left:316.022667pt;}
.x2b_c00254{left:318.480000pt;}
.x6e_c00254{left:325.684200pt;}
.x34_c00254{left:327.120000pt;}
.x52_c00254{left:334.324380pt;}
.x5f_c00254{left:335.764353pt;}
.x4a_c00254{left:337.140000pt;}
.x72_c00254{left:345.364587pt;}
.x1c_c00254{left:346.800000pt;}
.x86_c00254{left:354.161873pt;}
.x63_c00254{left:355.200000pt;}
.x3_c00254{left:356.880000pt;}
.x29_c00254{left:358.800000pt;}
.x73_c00254{left:365.285087pt;}
.x10_c00254{left:366.480000pt;}
.x88_c00254{left:383.665213pt;}
.x35_c00254{left:385.440000pt;}
.x8_c00254{left:386.400000pt;}
.x1d_c00254{left:387.600000pt;}
.x7b_c00254{left:392.644587pt;}
.x4b_c00254{left:394.494667pt;}
.x23_c00254{left:396.240000pt;}
.x92_c00254{left:403.341333pt;}
.x2c_c00254{left:405.360000pt;}
.x11_c00254{left:406.560000pt;}
.x7c_c00254{left:412.806567pt;}
.x44_c00254{left:413.760000pt;}
.x36_c00254{left:415.200000pt;}
.x4c_c00254{left:424.013333pt;}
.x53_c00254{left:433.685533pt;}
.x2d_c00254{left:434.880000pt;}
.x1e_c00254{left:443.760000pt;}
.x1_c00254{left:446.400000pt;}
.x45_c00254{left:453.360000pt;}
.x9_c00254{left:454.560000pt;}
.x2e_c00254{left:463.200000pt;}
.x54_c00254{left:465.126320pt;}
.x89_c00254{left:472.224327pt;}
.x24_c00254{left:473.280000pt;}
.x3d_c00254{left:482.640000pt;}
.x1f_c00254{left:483.600000pt;}
.x74_c00254{left:491.766913pt;}
.x37_c00254{left:492.960000pt;}
.x77_c00254{left:501.787280pt;}
.x3e_c00254{left:503.760000pt;}
.x80_c00254{left:511.688600pt;}
.x4f_c00254{left:513.360000pt;}
.x5a_c00254{left:518.885793pt;}
.x69_c00254{left:521.218667pt;}
.x12_c00254{left:522.720000pt;}
.x55_c00254{left:524.646473pt;}
.x4d_c00254{left:531.528000pt;}
.x56_c00254{left:541.926907pt;}
.x13_c00254{left:543.120000pt;}
.x93_c00254{left:548.532000pt;}
.x8a_c00254{left:549.987547pt;}
.x3f_c00254{left:552.240000pt;}
.x81_c00254{left:560.169813pt;}
.xa_c00254{left:561.120000pt;}
.x38_c00254{left:570.720000pt;}
.x8d_c00254{left:571.784651pt;}
.x94_c00254{left:579.686667pt;}
.x57_c00254{left:580.807880pt;}
.x64_c00254{left:581.760000pt;}
.x87_c00254{left:589.122033pt;}
.x14_c00254{left:590.640000pt;}
.x2f_c00254{left:591.840000pt;}
.x75_c00254{left:599.768280pt;}
.xb_c00254{left:601.200000pt;}
.x8f_c00254{left:603.741969pt;}
.x6a_c00254{left:609.310667pt;}
.x60_c00254{left:610.568560pt;}
.x25_c00254{left:611.520000pt;}
.x40_c00254{left:612.480000pt;}
.x78_c00254{left:619.141947pt;}
.x15_c00254{left:620.640000pt;}
.xc_c00254{left:629.760000pt;}
.x30_c00254{left:630.720000pt;}
.x83_c00254{left:637.931360pt;}
.x61_c00254{left:639.849293pt;}
.x5b_c00254{left:646.807653pt;}
.x20_c00254{left:649.440000pt;}
.x95_c00254{left:650.770667pt;}
.x26_c00254{left:659.040000pt;}
.x6b_c00254{left:667.600000pt;}
.x16_c00254{left:669.360000pt;}
.x7d_c00254{left:677.050507pt;}
.x39_c00254{left:678.960000pt;}
.x76_c00254{left:687.129133pt;}
.x17_c00254{left:688.560000pt;}
.x21_c00254{left:690.000000pt;}
.x65_c00254{left:697.440000pt;}
.x31_c00254{left:698.880000pt;}
.x79_c00254{left:706.511280pt;}
.x18_c00254{left:708.240000pt;}
.x5c_c00254{left:715.208027pt;}
.x27_c00254{left:718.320000pt;}
.x84_c00254{left:726.012227pt;}
.x66_c00254{left:727.440000pt;}
.x5d_c00254{left:737.768593pt;}
.x6f_c00254{left:787.930413pt;}
.x6c_c00254{left:809.260000pt;}
.x2_c00254{left:811.920000pt;}
}





/* 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_c00255 {
    display:none;
  }
  .loading-indicator_c00255.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00255 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_c00255 { 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_c00255" -> "#page-container .classname_c00255")
 */
.pf_c00255 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00255 { /* 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_c00255.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00255 { /* 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_c00255 { /* 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_c00255 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00255 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00255 {overflow:visible;}
  }
}
.c_c00255 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00255 { /* 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_c00255:after { /* webkit #35443 */
  content: '';
}
.t_c00255:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00255 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 */
}
.__c00255 { /* 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_c00255 { /* info for Javascript */
  display:none;
}
.l_c00255 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00255 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00255 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00255: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_c00255 {
    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_c00255.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00255.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_c00255 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00255{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00255;src:url('chunks/assets/font_bfe6362fd3009c591583128f.woff2')format("woff");}.ff1_c00255{font-family:ff1_c00255;line-height:1.000000;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;}
.m1_c00255{transform:matrix(0.138925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138925,0.000000,0.000000,0.250000,0,0);}
.m4_c00255{transform:matrix(0.171725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171725,0.000000,0.000000,0.250000,0,0);}
.m2_c00255{transform:matrix(0.201805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201805,0.000000,0.000000,0.250000,0,0);}
.m3_c00255{transform:matrix(0.204020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204020,0.000000,0.000000,0.250000,0,0);}
.m9_c00255{transform:matrix(0.211735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211735,0.000000,0.000000,0.250000,0,0);}
.md_c00255{transform:matrix(0.224720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224720,0.000000,0.000000,0.250000,0,0);}
.mc_c00255{transform:matrix(0.270415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270415,0.000000,0.000000,0.250000,0,0);}
.m5_c00255{transform:matrix(0.306035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306035,0.000000,0.000000,0.250000,0,0);}
.ma_c00255{transform:matrix(0.311970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311970,0.000000,0.000000,0.250000,0,0);}
.m8_c00255{transform:matrix(0.327655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327655,0.000000,0.000000,0.250000,0,0);}
.mb_c00255{transform:matrix(0.344185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344185,0.000000,0.000000,0.250000,0,0);}
.m0_c00255{transform:matrix(0.414880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414880,0.000000,0.000000,0.250000,0,0);}
.m6_c00255{transform:matrix(0.448310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448310,0.000000,0.000000,0.250000,0,0);}
.m7_c00255{transform:matrix(0.488365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488365,0.000000,0.000000,0.250000,0,0);}
.v0_c00255{vertical-align:0.000000px;}
.ls0_c00255{letter-spacing:0.000000px;}
.sc__c00255{text-shadow:none;}
.sc0_c00255{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__c00255{-webkit-text-stroke:0px transparent;}
.sc0_c00255{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00255{word-spacing:0.000000px;}
.fc0_c00255{color:transparent;}
.fs0_c00255{font-size:12.000000px;}
.fs1_c00255{font-size:18.000000px;}
.fs2_c00255{font-size:24.000000px;}
.y0_c00255{bottom:0.000000px;}
.y5_c00255{bottom:750.196500px;}
.y7_c00255{bottom:750.600000px;}
.y6_c00255{bottom:751.533000px;}
.y4_c00255{bottom:755.328000px;}
.y3_c00255{bottom:756.136500px;}
.y2_c00255{bottom:825.930000px;}
.y1_c00255{bottom:1014.660000px;}
.h2_c00255{height:12.000000px;}
.h3_c00255{height:18.000000px;}
.h4_c00255{height:24.000000px;}
.h0_c00255{height:1127.790000px;}
.h1_c00255{height:1128.000000px;}
.w0_c00255{width:915.000000px;}
.x0_c00255{left:0.000000px;}
.xd_c00255{left:289.440000px;}
.x7_c00255{left:297.270000px;}
.x2_c00255{left:298.350000px;}
.x5_c00255{left:309.420000px;}
.x8_c00255{left:312.120000px;}
.x6_c00255{left:325.350000px;}
.x9_c00255{left:333.990000px;}
.xa_c00255{left:352.620000px;}
.xb_c00255{left:364.500000px;}
.xc_c00255{left:378.810000px;}
.x3_c00255{left:397.980000px;}
.x4_c00255{left:404.460000px;}
.x1_c00255{left:405.540000px;}
@media print{
.v0_c00255{vertical-align:0.000000pt;}
.ls0_c00255{letter-spacing:0.000000pt;}
.ws0_c00255{word-spacing:0.000000pt;}
.fs0_c00255{font-size:10.666667pt;}
.fs1_c00255{font-size:16.000000pt;}
.fs2_c00255{font-size:21.333333pt;}
.y0_c00255{bottom:0.000000pt;}
.y5_c00255{bottom:666.841333pt;}
.y7_c00255{bottom:667.200000pt;}
.y6_c00255{bottom:668.029333pt;}
.y4_c00255{bottom:671.402667pt;}
.y3_c00255{bottom:672.121333pt;}
.y2_c00255{bottom:734.160000pt;}
.y1_c00255{bottom:901.920000pt;}
.h2_c00255{height:10.666667pt;}
.h3_c00255{height:16.000000pt;}
.h4_c00255{height:21.333333pt;}
.h0_c00255{height:1002.480000pt;}
.h1_c00255{height:1002.666667pt;}
.w0_c00255{width:813.333333pt;}
.x0_c00255{left:0.000000pt;}
.xd_c00255{left:257.280000pt;}
.x7_c00255{left:264.240000pt;}
.x2_c00255{left:265.200000pt;}
.x5_c00255{left:275.040000pt;}
.x8_c00255{left:277.440000pt;}
.x6_c00255{left:289.200000pt;}
.x9_c00255{left:296.880000pt;}
.xa_c00255{left:313.440000pt;}
.xb_c00255{left:324.000000pt;}
.xc_c00255{left:336.720000pt;}
.x3_c00255{left:353.760000pt;}
.x4_c00255{left:359.520000pt;}
.x1_c00255{left:360.480000pt;}
}





/* 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_c00256 {
    display:none;
  }
  .loading-indicator_c00256.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00256 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_c00256 { 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_c00256" -> "#page-container .classname_c00256")
 */
.pf_c00256 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00256 { /* 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_c00256.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00256 { /* 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_c00256 { /* 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_c00256 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00256 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00256 {overflow:visible;}
  }
}
.c_c00256 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00256 { /* 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_c00256:after { /* webkit #35443 */
  content: '';
}
.t_c00256:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00256 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 */
}
.__c00256 { /* 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_c00256 { /* info for Javascript */
  display:none;
}
.l_c00256 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00256 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00256 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00256: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_c00256 {
    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_c00256.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00256.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_c00256 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00256{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00256;src:url('chunks/assets/font_fabf4b590f7fb32aea93ffb2.woff2')format("woff");}.ff1_c00256{font-family:ff1_c00256;line-height:1.000000;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;}
.m100_c00256{transform:matrix(0.017310,0.000087,-0.001250,0.249997,0,0);-ms-transform:matrix(0.017310,0.000087,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.017310,0.000087,-0.001250,0.249997,0,0);}
.m0_c00256{transform:matrix(0.026515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.026515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.026515,0.000000,0.000000,0.250000,0,0);}
.m16_c00256{transform:matrix(0.026535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.026535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.026535,0.000000,0.000000,0.250000,0,0);}
.m3d_c00256{transform:matrix(0.134645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134645,0.000000,0.000000,0.250000,0,0);}
.mb4_c00256{transform:matrix(0.134820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134820,0.000000,0.000000,0.250000,0,0);}
.m126_c00256{transform:matrix(0.142710,0.001713,-0.003000,0.249982,0,0);-ms-transform:matrix(0.142710,0.001713,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.142710,0.001713,-0.003000,0.249982,0,0);}
.m127_c00256{transform:matrix(0.145600,0.001747,-0.003000,0.249982,0,0);-ms-transform:matrix(0.145600,0.001747,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.145600,0.001747,-0.003000,0.249982,0,0);}
.m12b_c00256{transform:matrix(0.156839,0.001882,-0.003000,0.249982,0,0);-ms-transform:matrix(0.156839,0.001882,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.156839,0.001882,-0.003000,0.249982,0,0);}
.m123_c00256{transform:matrix(0.157319,0.001888,-0.003000,0.249982,0,0);-ms-transform:matrix(0.157319,0.001888,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.157319,0.001888,-0.003000,0.249982,0,0);}
.m12a_c00256{transform:matrix(0.159189,0.001910,-0.003000,0.249982,0,0);-ms-transform:matrix(0.159189,0.001910,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.159189,0.001910,-0.003000,0.249982,0,0);}
.m19_c00256{transform:matrix(0.160165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160165,0.000000,0.000000,0.250000,0,0);}
.m129_c00256{transform:matrix(0.163628,0.001964,-0.003000,0.249982,0,0);-ms-transform:matrix(0.163628,0.001964,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.163628,0.001964,-0.003000,0.249982,0,0);}
.m128_c00256{transform:matrix(0.167508,0.002010,-0.003000,0.249982,0,0);-ms-transform:matrix(0.167508,0.002010,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.167508,0.002010,-0.003000,0.249982,0,0);}
.mf7_c00256{transform:matrix(0.167630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167630,0.000000,0.000000,0.250000,0,0);}
.m1e_c00256{transform:matrix(0.170130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170130,0.000000,0.000000,0.250000,0,0);}
.m125_c00256{transform:matrix(0.177252,0.002127,-0.003000,0.249982,0,0);-ms-transform:matrix(0.177252,0.002127,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.177252,0.002127,-0.003000,0.249982,0,0);}
.mfe_c00256{transform:matrix(0.178620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178620,0.000000,0.000000,0.250000,0,0);}
.m85_c00256{transform:matrix(0.178885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178885,0.000000,0.000000,0.250000,0,0);}
.m12c_c00256{transform:matrix(0.179022,0.002148,-0.003000,0.249982,0,0);-ms-transform:matrix(0.179022,0.002148,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.179022,0.002148,-0.003000,0.249982,0,0);}
.m124_c00256{transform:matrix(0.179322,0.002152,-0.003000,0.249982,0,0);-ms-transform:matrix(0.179322,0.002152,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.179322,0.002152,-0.003000,0.249982,0,0);}
.mb_c00256{transform:matrix(0.180420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180420,0.000000,0.000000,0.250000,0,0);}
.m7f_c00256{transform:matrix(0.180675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180675,0.000000,0.000000,0.250000,0,0);}
.m7c_c00256{transform:matrix(0.181395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181395,0.000000,0.000000,0.250000,0,0);}
.m83_c00256{transform:matrix(0.182525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182525,0.000000,0.000000,0.250000,0,0);}
.m18_c00256{transform:matrix(0.183070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183070,0.000000,0.000000,0.250000,0,0);}
.m80_c00256{transform:matrix(0.183620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183620,0.000000,0.000000,0.250000,0,0);}
.m12d_c00256{transform:matrix(0.184802,0.002218,-0.003000,0.249982,0,0);-ms-transform:matrix(0.184802,0.002218,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.184802,0.002218,-0.003000,0.249982,0,0);}
.m1d_c00256{transform:matrix(0.185235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185235,0.000000,0.000000,0.250000,0,0);}
.m20_c00256{transform:matrix(0.186060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186060,0.000000,0.000000,0.250000,0,0);}
.m5f_c00256{transform:matrix(0.186710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186710,0.000000,0.000000,0.250000,0,0);}
.m21_c00256{transform:matrix(0.187050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187050,0.000000,0.000000,0.250000,0,0);}
.m1c_c00256{transform:matrix(0.188200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188200,0.000000,0.000000,0.250000,0,0);}
.m10e_c00256{transform:matrix(0.188573,0.000943,-0.001250,0.249997,0,0);-ms-transform:matrix(0.188573,0.000943,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.188573,0.000943,-0.001250,0.249997,0,0);}
.mcd_c00256{transform:matrix(0.189010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189010,0.000000,0.000000,0.250000,0,0);}
.m1b_c00256{transform:matrix(0.189025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189025,0.000000,0.000000,0.250000,0,0);}
.m10_c00256{transform:matrix(0.189475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189475,0.000000,0.000000,0.250000,0,0);}
.m113_c00256{transform:matrix(0.189938,0.000950,-0.001250,0.249997,0,0);-ms-transform:matrix(0.189938,0.000950,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.189938,0.000950,-0.001250,0.249997,0,0);}
.m23_c00256{transform:matrix(0.191015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191015,0.000000,0.000000,0.250000,0,0);}
.m9a_c00256{transform:matrix(0.191725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191725,0.000000,0.000000,0.250000,0,0);}
.m82_c00256{transform:matrix(0.192085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192085,0.000000,0.000000,0.250000,0,0);}
.m88_c00256{transform:matrix(0.192235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192235,0.000000,0.000000,0.250000,0,0);}
.m3e_c00256{transform:matrix(0.192620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192620,0.000000,0.000000,0.250000,0,0);}
.m7d_c00256{transform:matrix(0.192665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192665,0.000000,0.000000,0.250000,0,0);}
.md_c00256{transform:matrix(0.192770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192770,0.000000,0.000000,0.250000,0,0);}
.m28_c00256{transform:matrix(0.194540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194540,0.000000,0.000000,0.250000,0,0);}
.m2d_c00256{transform:matrix(0.194940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194940,0.000000,0.000000,0.250000,0,0);}
.mf6_c00256{transform:matrix(0.195305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195305,0.000000,0.000000,0.250000,0,0);}
.m9d_c00256{transform:matrix(0.195680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195680,0.000000,0.000000,0.250000,0,0);}
.m46_c00256{transform:matrix(0.196455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196455,0.000000,0.000000,0.250000,0,0);}
.ma_c00256{transform:matrix(0.196955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196955,0.000000,0.000000,0.250000,0,0);}
.m2c_c00256{transform:matrix(0.197420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197420,0.000000,0.000000,0.250000,0,0);}
.m29_c00256{transform:matrix(0.197910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197910,0.000000,0.000000,0.250000,0,0);}
.m87_c00256{transform:matrix(0.197920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197920,0.000000,0.000000,0.250000,0,0);}
.mf4_c00256{transform:matrix(0.198005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198005,0.000000,0.000000,0.250000,0,0);}
.mfa_c00256{transform:matrix(0.198150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198150,0.000000,0.000000,0.250000,0,0);}
.m4e_c00256{transform:matrix(0.198195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198195,0.000000,0.000000,0.250000,0,0);}
.m12_c00256{transform:matrix(0.198930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198930,0.000000,0.000000,0.250000,0,0);}
.m17_c00256{transform:matrix(0.199005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199005,0.000000,0.000000,0.250000,0,0);}
.m115_c00256{transform:matrix(0.200247,0.001001,-0.001250,0.249997,0,0);-ms-transform:matrix(0.200247,0.001001,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.200247,0.001001,-0.001250,0.249997,0,0);}
.m54_c00256{transform:matrix(0.200475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200475,0.000000,0.000000,0.250000,0,0);}
.m22_c00256{transform:matrix(0.201775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201775,0.000000,0.000000,0.250000,0,0);}
.m59_c00256{transform:matrix(0.203010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203010,0.000000,0.000000,0.250000,0,0);}
.m62_c00256{transform:matrix(0.203975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203975,0.000000,0.000000,0.250000,0,0);}
.m112_c00256{transform:matrix(0.204042,0.001020,-0.001250,0.249997,0,0);-ms-transform:matrix(0.204042,0.001020,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.204042,0.001020,-0.001250,0.249997,0,0);}
.m7b_c00256{transform:matrix(0.204330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204330,0.000000,0.000000,0.250000,0,0);}
.m39_c00256{transform:matrix(0.204435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204435,0.000000,0.000000,0.250000,0,0);}
.m1f_c00256{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00256{transform:matrix(0.205065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205065,0.000000,0.000000,0.250000,0,0);}
.m66_c00256{transform:matrix(0.205300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205300,0.000000,0.000000,0.250000,0,0);}
.m58_c00256{transform:matrix(0.206260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206260,0.000000,0.000000,0.250000,0,0);}
.mfb_c00256{transform:matrix(0.206905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206905,0.000000,0.000000,0.250000,0,0);}
.m84_c00256{transform:matrix(0.207490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207490,0.000000,0.000000,0.250000,0,0);}
.m98_c00256{transform:matrix(0.208065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208065,0.000000,0.000000,0.250000,0,0);}
.m14_c00256{transform:matrix(0.208280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208280,0.000000,0.000000,0.250000,0,0);}
.m2f_c00256{transform:matrix(0.208555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208555,0.000000,0.000000,0.250000,0,0);}
.m64_c00256{transform:matrix(0.208605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208605,0.000000,0.000000,0.250000,0,0);}
.m94_c00256{transform:matrix(0.208675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208675,0.000000,0.000000,0.250000,0,0);}
.m13_c00256{transform:matrix(0.208835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208835,0.000000,0.000000,0.250000,0,0);}
.m45_c00256{transform:matrix(0.208930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208930,0.000000,0.000000,0.250000,0,0);}
.md0_c00256{transform:matrix(0.209220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209220,0.000000,0.000000,0.250000,0,0);}
.m5b_c00256{transform:matrix(0.209360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209360,0.000000,0.000000,0.250000,0,0);}
.mee_c00256{transform:matrix(0.209505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209505,0.000000,0.000000,0.250000,0,0);}
.m42_c00256{transform:matrix(0.210395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210395,0.000000,0.000000,0.250000,0,0);}
.me_c00256{transform:matrix(0.210525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210525,0.000000,0.000000,0.250000,0,0);}
.m110_c00256{transform:matrix(0.210532,0.001053,-0.001250,0.249997,0,0);-ms-transform:matrix(0.210532,0.001053,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.210532,0.001053,-0.001250,0.249997,0,0);}
.mf1_c00256{transform:matrix(0.210610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210610,0.000000,0.000000,0.250000,0,0);}
.m108_c00256{transform:matrix(0.210617,0.001053,-0.001250,0.249997,0,0);-ms-transform:matrix(0.210617,0.001053,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.210617,0.001053,-0.001250,0.249997,0,0);}
.m5e_c00256{transform:matrix(0.210620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210620,0.000000,0.000000,0.250000,0,0);}
.m27_c00256{transform:matrix(0.210830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210830,0.000000,0.000000,0.250000,0,0);}
.m2a_c00256{transform:matrix(0.211025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211025,0.000000,0.000000,0.250000,0,0);}
.m9b_c00256{transform:matrix(0.212300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212300,0.000000,0.000000,0.250000,0,0);}
.m81_c00256{transform:matrix(0.212565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212565,0.000000,0.000000,0.250000,0,0);}
.m57_c00256{transform:matrix(0.213465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213465,0.000000,0.000000,0.250000,0,0);}
.md3_c00256{transform:matrix(0.213855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213855,0.000000,0.000000,0.250000,0,0);}
.md2_c00256{transform:matrix(0.214420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214420,0.000000,0.000000,0.250000,0,0);}
.mfc_c00256{transform:matrix(0.214670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214670,0.000000,0.000000,0.250000,0,0);}
.mfd_c00256{transform:matrix(0.215375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215375,0.000000,0.000000,0.250000,0,0);}
.m15_c00256{transform:matrix(0.215630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215630,0.000000,0.000000,0.250000,0,0);}
.m7_c00256{transform:matrix(0.215785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215785,0.000000,0.000000,0.250000,0,0);}
.m8a_c00256{transform:matrix(0.216335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216335,0.000000,0.000000,0.250000,0,0);}
.m99_c00256{transform:matrix(0.216400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216400,0.000000,0.000000,0.250000,0,0);}
.m10d_c00256{transform:matrix(0.216667,0.001083,-0.001250,0.249997,0,0);-ms-transform:matrix(0.216667,0.001083,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.216667,0.001083,-0.001250,0.249997,0,0);}
.m101_c00256{transform:matrix(0.218402,0.001092,-0.001250,0.249997,0,0);-ms-transform:matrix(0.218402,0.001092,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.218402,0.001092,-0.001250,0.249997,0,0);}
.m56_c00256{transform:matrix(0.218530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218530,0.000000,0.000000,0.250000,0,0);}
.m76_c00256{transform:matrix(0.219160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219160,0.000000,0.000000,0.250000,0,0);}
.m31_c00256{transform:matrix(0.219245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219245,0.000000,0.000000,0.250000,0,0);}
.m8b_c00256{transform:matrix(0.219315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219315,0.000000,0.000000,0.250000,0,0);}
.m97_c00256{transform:matrix(0.219480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219480,0.000000,0.000000,0.250000,0,0);}
.m107_c00256{transform:matrix(0.219532,0.001098,-0.001250,0.249997,0,0);-ms-transform:matrix(0.219532,0.001098,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.219532,0.001098,-0.001250,0.249997,0,0);}
.mab_c00256{transform:matrix(0.219800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219800,0.000000,0.000000,0.250000,0,0);}
.m7e_c00256{transform:matrix(0.220050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220050,0.000000,0.000000,0.250000,0,0);}
.mf5_c00256{transform:matrix(0.220305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220305,0.000000,0.000000,0.250000,0,0);}
.m79_c00256{transform:matrix(0.220510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220510,0.000000,0.000000,0.250000,0,0);}
.mf_c00256{transform:matrix(0.220675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220675,0.000000,0.000000,0.250000,0,0);}
.m111_c00256{transform:matrix(0.221532,0.001108,-0.001250,0.249997,0,0);-ms-transform:matrix(0.221532,0.001108,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.221532,0.001108,-0.001250,0.249997,0,0);}
.m55_c00256{transform:matrix(0.221540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221540,0.000000,0.000000,0.250000,0,0);}
.m49_c00256{transform:matrix(0.221635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221635,0.000000,0.000000,0.250000,0,0);}
.m86_c00256{transform:matrix(0.221690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221690,0.000000,0.000000,0.250000,0,0);}
.m11_c00256{transform:matrix(0.221710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221710,0.000000,0.000000,0.250000,0,0);}
.m44_c00256{transform:matrix(0.222255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222255,0.000000,0.000000,0.250000,0,0);}
.m6b_c00256{transform:matrix(0.222515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222515,0.000000,0.000000,0.250000,0,0);}
.m26_c00256{transform:matrix(0.222995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222995,0.000000,0.000000,0.250000,0,0);}
.m9c_c00256{transform:matrix(0.223155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223155,0.000000,0.000000,0.250000,0,0);}
.maf_c00256{transform:matrix(0.223270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223270,0.000000,0.000000,0.250000,0,0);}
.m2b_c00256{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.ma6_c00256{transform:matrix(0.223605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223605,0.000000,0.000000,0.250000,0,0);}
.m65_c00256{transform:matrix(0.224430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224430,0.000000,0.000000,0.250000,0,0);}
.m11c_c00256{transform:matrix(0.224857,0.001124,-0.001250,0.249997,0,0);-ms-transform:matrix(0.224857,0.001124,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.224857,0.001124,-0.001250,0.249997,0,0);}
.m30_c00256{transform:matrix(0.225255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225255,0.000000,0.000000,0.250000,0,0);}
.m8e_c00256{transform:matrix(0.225315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225315,0.000000,0.000000,0.250000,0,0);}
.m50_c00256{transform:matrix(0.225465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225465,0.000000,0.000000,0.250000,0,0);}
.m3_c00256{transform:matrix(0.225525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225525,0.000000,0.000000,0.250000,0,0);}
.m10f_c00256{transform:matrix(0.225577,0.001128,-0.001250,0.249997,0,0);-ms-transform:matrix(0.225577,0.001128,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.225577,0.001128,-0.001250,0.249997,0,0);}
.m114_c00256{transform:matrix(0.225967,0.001130,-0.001250,0.249997,0,0);-ms-transform:matrix(0.225967,0.001130,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.225967,0.001130,-0.001250,0.249997,0,0);}
.m102_c00256{transform:matrix(0.225992,0.001130,-0.001250,0.249997,0,0);-ms-transform:matrix(0.225992,0.001130,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.225992,0.001130,-0.001250,0.249997,0,0);}
.me9_c00256{transform:matrix(0.226095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226095,0.000000,0.000000,0.250000,0,0);}
.m61_c00256{transform:matrix(0.226385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226385,0.000000,0.000000,0.250000,0,0);}
.m41_c00256{transform:matrix(0.226490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226490,0.000000,0.000000,0.250000,0,0);}
.m104_c00256{transform:matrix(0.227247,0.001136,-0.001250,0.249997,0,0);-ms-transform:matrix(0.227247,0.001136,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.227247,0.001136,-0.001250,0.249997,0,0);}
.mb6_c00256{transform:matrix(0.227260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227260,0.000000,0.000000,0.250000,0,0);}
.m89_c00256{transform:matrix(0.227685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227685,0.000000,0.000000,0.250000,0,0);}
.m35_c00256{transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);}
.mf3_c00256{transform:matrix(0.228040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228040,0.000000,0.000000,0.250000,0,0);}
.m4b_c00256{transform:matrix(0.228630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228630,0.000000,0.000000,0.250000,0,0);}
.mf0_c00256{transform:matrix(0.229150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229150,0.000000,0.000000,0.250000,0,0);}
.m10a_c00256{transform:matrix(0.229327,0.001147,-0.001250,0.249997,0,0);-ms-transform:matrix(0.229327,0.001147,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.229327,0.001147,-0.001250,0.249997,0,0);}
.mec_c00256{transform:matrix(0.229330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229330,0.000000,0.000000,0.250000,0,0);}
.md6_c00256{transform:matrix(0.229470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229470,0.000000,0.000000,0.250000,0,0);}
.m5c_c00256{transform:matrix(0.229635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229635,0.000000,0.000000,0.250000,0,0);}
.mcf_c00256{transform:matrix(0.229650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229650,0.000000,0.000000,0.250000,0,0);}
.m5a_c00256{transform:matrix(0.229935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229935,0.000000,0.000000,0.250000,0,0);}
.mca_c00256{transform:matrix(0.230200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230200,0.000000,0.000000,0.250000,0,0);}
.m25_c00256{transform:matrix(0.230315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230315,0.000000,0.000000,0.250000,0,0);}
.m48_c00256{transform:matrix(0.230785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230785,0.000000,0.000000,0.250000,0,0);}
.mba_c00256{transform:matrix(0.231125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231125,0.000000,0.000000,0.250000,0,0);}
.meb_c00256{transform:matrix(0.231195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231195,0.000000,0.000000,0.250000,0,0);}
.mbc_c00256{transform:matrix(0.231205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231205,0.000000,0.000000,0.250000,0,0);}
.md1_c00256{transform:matrix(0.231700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231700,0.000000,0.000000,0.250000,0,0);}
.m4d_c00256{transform:matrix(0.231805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231805,0.000000,0.000000,0.250000,0,0);}
.ma1_c00256{transform:matrix(0.231925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231925,0.000000,0.000000,0.250000,0,0);}
.m105_c00256{transform:matrix(0.232332,0.001162,-0.001250,0.249997,0,0);-ms-transform:matrix(0.232332,0.001162,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.232332,0.001162,-0.001250,0.249997,0,0);}
.m67_c00256{transform:matrix(0.232405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232405,0.000000,0.000000,0.250000,0,0);}
.m60_c00256{transform:matrix(0.233030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233030,0.000000,0.000000,0.250000,0,0);}
.mc4_c00256{transform:matrix(0.233655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233655,0.000000,0.000000,0.250000,0,0);}
.m96_c00256{transform:matrix(0.233695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233695,0.000000,0.000000,0.250000,0,0);}
.m90_c00256{transform:matrix(0.234380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234380,0.000000,0.000000,0.250000,0,0);}
.m10b_c00256{transform:matrix(0.234987,0.001175,-0.001250,0.249997,0,0);-ms-transform:matrix(0.234987,0.001175,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.234987,0.001175,-0.001250,0.249997,0,0);}
.m47_c00256{transform:matrix(0.235395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235395,0.000000,0.000000,0.250000,0,0);}
.m9f_c00256{transform:matrix(0.236120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236120,0.000000,0.000000,0.250000,0,0);}
.mc7_c00256{transform:matrix(0.236165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236165,0.000000,0.000000,0.250000,0,0);}
.mce_c00256{transform:matrix(0.236620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236620,0.000000,0.000000,0.250000,0,0);}
.m9e_c00256{transform:matrix(0.236685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236685,0.000000,0.000000,0.250000,0,0);}
.med_c00256{transform:matrix(0.237035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237035,0.000000,0.000000,0.250000,0,0);}
.mbe_c00256{transform:matrix(0.237185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237185,0.000000,0.000000,0.250000,0,0);}
.m40_c00256{transform:matrix(0.237290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237290,0.000000,0.000000,0.250000,0,0);}
.m106_c00256{transform:matrix(0.237322,0.001187,-0.001250,0.249997,0,0);-ms-transform:matrix(0.237322,0.001187,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.237322,0.001187,-0.001250,0.249997,0,0);}
.m4a_c00256{transform:matrix(0.237615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237615,0.000000,0.000000,0.250000,0,0);}
.m93_c00256{transform:matrix(0.237920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237920,0.000000,0.000000,0.250000,0,0);}
.mc0_c00256{transform:matrix(0.237975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237975,0.000000,0.000000,0.250000,0,0);}
.m5d_c00256{transform:matrix(0.238030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238030,0.000000,0.000000,0.250000,0,0);}
.mae_c00256{transform:matrix(0.238535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238535,0.000000,0.000000,0.250000,0,0);}
.mb5_c00256{transform:matrix(0.239095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239095,0.000000,0.000000,0.250000,0,0);}
.m10c_c00256{transform:matrix(0.239102,0.001196,-0.001250,0.249997,0,0);-ms-transform:matrix(0.239102,0.001196,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.239102,0.001196,-0.001250,0.249997,0,0);}
.m43_c00256{transform:matrix(0.239210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239210,0.000000,0.000000,0.250000,0,0);}
.mcc_c00256{transform:matrix(0.239405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239405,0.000000,0.000000,0.250000,0,0);}
.m4f_c00256{transform:matrix(0.239560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239560,0.000000,0.000000,0.250000,0,0);}
.m91_c00256{transform:matrix(0.239850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239850,0.000000,0.000000,0.250000,0,0);}
.m116_c00256{transform:matrix(0.240062,0.001200,-0.001250,0.249997,0,0);-ms-transform:matrix(0.240062,0.001200,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.240062,0.001200,-0.001250,0.249997,0,0);}
.m6f_c00256{transform:matrix(0.240105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240105,0.000000,0.000000,0.250000,0,0);}
.m69_c00256{transform:matrix(0.240635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240635,0.000000,0.000000,0.250000,0,0);}
.m63_c00256{transform:matrix(0.240740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240740,0.000000,0.000000,0.250000,0,0);}
.m121_c00256{transform:matrix(0.241517,0.001208,-0.001250,0.249997,0,0);-ms-transform:matrix(0.241517,0.001208,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.241517,0.001208,-0.001250,0.249997,0,0);}
.mb7_c00256{transform:matrix(0.241615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241615,0.000000,0.000000,0.250000,0,0);}
.mc9_c00256{transform:matrix(0.241925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241925,0.000000,0.000000,0.250000,0,0);}
.ma4_c00256{transform:matrix(0.242545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242545,0.000000,0.000000,0.250000,0,0);}
.m72_c00256{transform:matrix(0.242745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242745,0.000000,0.000000,0.250000,0,0);}
.m78_c00256{transform:matrix(0.243540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243540,0.000000,0.000000,0.250000,0,0);}
.m8d_c00256{transform:matrix(0.243850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243850,0.000000,0.000000,0.250000,0,0);}
.md5_c00256{transform:matrix(0.244095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244095,0.000000,0.000000,0.250000,0,0);}
.m36_c00256{transform:matrix(0.244870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244870,0.000000,0.000000,0.250000,0,0);}
.m11d_c00256{transform:matrix(0.245267,0.001226,-0.001250,0.249997,0,0);-ms-transform:matrix(0.245267,0.001226,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.245267,0.001226,-0.001250,0.249997,0,0);}
.mb9_c00256{transform:matrix(0.245295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245295,0.000000,0.000000,0.250000,0,0);}
.mb8_c00256{transform:matrix(0.245645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245645,0.000000,0.000000,0.250000,0,0);}
.m8c_c00256{transform:matrix(0.245660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245660,0.000000,0.000000,0.250000,0,0);}
.m75_c00256{transform:matrix(0.245675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245675,0.000000,0.000000,0.250000,0,0);}
.m38_c00256{transform:matrix(0.245800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245800,0.000000,0.000000,0.250000,0,0);}
.m109_c00256{transform:matrix(0.245887,0.001229,-0.001250,0.249997,0,0);-ms-transform:matrix(0.245887,0.001229,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.245887,0.001229,-0.001250,0.249997,0,0);}
.m8f_c00256{transform:matrix(0.246135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246135,0.000000,0.000000,0.250000,0,0);}
.m11b_c00256{transform:matrix(0.246257,0.001231,-0.001250,0.249997,0,0);-ms-transform:matrix(0.246257,0.001231,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.246257,0.001231,-0.001250,0.249997,0,0);}
.m2e_c00256{transform:matrix(0.246315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246315,0.000000,0.000000,0.250000,0,0);}
.m11e_c00256{transform:matrix(0.246657,0.001233,-0.001250,0.249997,0,0);-ms-transform:matrix(0.246657,0.001233,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.246657,0.001233,-0.001250,0.249997,0,0);}
.mdb_c00256{transform:matrix(0.246730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246730,0.000000,0.000000,0.250000,0,0);}
.m6_c00256{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.mc8_c00256{transform:matrix(0.247505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247505,0.000000,0.000000,0.250000,0,0);}
.mea_c00256{transform:matrix(0.247595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247595,0.000000,0.000000,0.250000,0,0);}
.mdd_c00256{transform:matrix(0.247625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247625,0.000000,0.000000,0.250000,0,0);}
.mdf_c00256{transform:matrix(0.247685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247685,0.000000,0.000000,0.250000,0,0);}
.mb3_c00256{transform:matrix(0.248555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248555,0.000000,0.000000,0.250000,0,0);}
.mbb_c00256{transform:matrix(0.249090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249090,0.000000,0.000000,0.250000,0,0);}
.m3c_c00256{transform:matrix(0.249130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249130,0.000000,0.000000,0.250000,0,0);}
.m11a_c00256{transform:matrix(0.249657,0.001248,-0.001250,0.249997,0,0);-ms-transform:matrix(0.249657,0.001248,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.249657,0.001248,-0.001250,0.249997,0,0);}
.m92_c00256{transform:matrix(0.250010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250010,0.000000,0.000000,0.250000,0,0);}
.md9_c00256{transform:matrix(0.250470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250470,0.000000,0.000000,0.250000,0,0);}
.m3f_c00256{transform:matrix(0.250865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250865,0.000000,0.000000,0.250000,0,0);}
.mb2_c00256{transform:matrix(0.251400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251400,0.000000,0.000000,0.250000,0,0);}
.me8_c00256{transform:matrix(0.251690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251690,0.000000,0.000000,0.250000,0,0);}
.m34_c00256{transform:matrix(0.252230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252230,0.000000,0.000000,0.250000,0,0);}
.md7_c00256{transform:matrix(0.252365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252365,0.000000,0.000000,0.250000,0,0);}
.mc1_c00256{transform:matrix(0.252435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252435,0.000000,0.000000,0.250000,0,0);}
.m51_c00256{transform:matrix(0.252535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252535,0.000000,0.000000,0.250000,0,0);}
.m11f_c00256{transform:matrix(0.252627,0.001263,-0.001250,0.249997,0,0);-ms-transform:matrix(0.252627,0.001263,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.252627,0.001263,-0.001250,0.249997,0,0);}
.ma3_c00256{transform:matrix(0.252825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252825,0.000000,0.000000,0.250000,0,0);}
.ma9_c00256{transform:matrix(0.253145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253145,0.000000,0.000000,0.250000,0,0);}
.m4c_c00256{transform:matrix(0.253300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253300,0.000000,0.000000,0.250000,0,0);}
.mbf_c00256{transform:matrix(0.253325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253325,0.000000,0.000000,0.250000,0,0);}
.m68_c00256{transform:matrix(0.253590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253590,0.000000,0.000000,0.250000,0,0);}
.m95_c00256{transform:matrix(0.253815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253815,0.000000,0.000000,0.250000,0,0);}
.m6a_c00256{transform:matrix(0.254275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254275,0.000000,0.000000,0.250000,0,0);}
.me4_c00256{transform:matrix(0.254780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254780,0.000000,0.000000,0.250000,0,0);}
.m1_c00256{transform:matrix(0.255025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255025,0.000000,0.000000,0.250000,0,0);}
.md8_c00256{transform:matrix(0.255055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255055,0.000000,0.000000,0.250000,0,0);}
.m37_c00256{transform:matrix(0.256040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256040,0.000000,0.000000,0.250000,0,0);}
.mb0_c00256{transform:matrix(0.256275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256275,0.000000,0.000000,0.250000,0,0);}
.mf2_c00256{transform:matrix(0.256530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256530,0.000000,0.000000,0.250000,0,0);}
.m52_c00256{transform:matrix(0.256590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256590,0.000000,0.000000,0.250000,0,0);}
.mdc_c00256{transform:matrix(0.256870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256870,0.000000,0.000000,0.250000,0,0);}
.mef_c00256{transform:matrix(0.257230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257230,0.000000,0.000000,0.250000,0,0);}
.m33_c00256{transform:matrix(0.257320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257320,0.000000,0.000000,0.250000,0,0);}
.m3a_c00256{transform:matrix(0.257405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257405,0.000000,0.000000,0.250000,0,0);}
.m9_c00256{transform:matrix(0.257720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257720,0.000000,0.000000,0.250000,0,0);}
.ma2_c00256{transform:matrix(0.258160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258160,0.000000,0.000000,0.250000,0,0);}
.m3b_c00256{transform:matrix(0.258655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258655,0.000000,0.000000,0.250000,0,0);}
.m120_c00256{transform:matrix(0.260297,0.001301,-0.001250,0.249997,0,0);-ms-transform:matrix(0.260297,0.001301,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.260297,0.001301,-0.001250,0.249997,0,0);}
.mc5_c00256{transform:matrix(0.260520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260520,0.000000,0.000000,0.250000,0,0);}
.mff_c00256{transform:matrix(0.261265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261265,0.000000,0.000000,0.250000,0,0);}
.ma7_c00256{transform:matrix(0.261650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261650,0.000000,0.000000,0.250000,0,0);}
.m6c_c00256{transform:matrix(0.261690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261690,0.000000,0.000000,0.250000,0,0);}
.mc6_c00256{transform:matrix(0.261820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261820,0.000000,0.000000,0.250000,0,0);}
.mc3_c00256{transform:matrix(0.264105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264105,0.000000,0.000000,0.250000,0,0);}
.m70_c00256{transform:matrix(0.264280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264280,0.000000,0.000000,0.250000,0,0);}
.m119_c00256{transform:matrix(0.264297,0.001321,-0.001250,0.249997,0,0);-ms-transform:matrix(0.264297,0.001321,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.264297,0.001321,-0.001250,0.249997,0,0);}
.mc_c00256{transform:matrix(0.264425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264425,0.000000,0.000000,0.250000,0,0);}
.mde_c00256{transform:matrix(0.265115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265115,0.000000,0.000000,0.250000,0,0);}
.me6_c00256{transform:matrix(0.265755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265755,0.000000,0.000000,0.250000,0,0);}
.m117_c00256{transform:matrix(0.266237,0.001331,-0.001250,0.249997,0,0);-ms-transform:matrix(0.266237,0.001331,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.266237,0.001331,-0.001250,0.249997,0,0);}
.m122_c00256{transform:matrix(0.266422,0.001332,-0.001250,0.249997,0,0);-ms-transform:matrix(0.266422,0.001332,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.266422,0.001332,-0.001250,0.249997,0,0);}
.ma8_c00256{transform:matrix(0.266710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266710,0.000000,0.000000,0.250000,0,0);}
.me7_c00256{transform:matrix(0.266840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266840,0.000000,0.000000,0.250000,0,0);}
.me3_c00256{transform:matrix(0.266845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266845,0.000000,0.000000,0.250000,0,0);}
.me0_c00256{transform:matrix(0.267495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267495,0.000000,0.000000,0.250000,0,0);}
.me2_c00256{transform:matrix(0.267690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267690,0.000000,0.000000,0.250000,0,0);}
.mac_c00256{transform:matrix(0.267990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267990,0.000000,0.000000,0.250000,0,0);}
.mda_c00256{transform:matrix(0.268065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268065,0.000000,0.000000,0.250000,0,0);}
.mc2_c00256{transform:matrix(0.268200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268200,0.000000,0.000000,0.250000,0,0);}
.ma0_c00256{transform:matrix(0.269180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269180,0.000000,0.000000,0.250000,0,0);}
.md4_c00256{transform:matrix(0.269750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269750,0.000000,0.000000,0.250000,0,0);}
.m6d_c00256{transform:matrix(0.270030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270030,0.000000,0.000000,0.250000,0,0);}
.ma5_c00256{transform:matrix(0.270275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270275,0.000000,0.000000,0.250000,0,0);}
.m74_c00256{transform:matrix(0.271100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271100,0.000000,0.000000,0.250000,0,0);}
.m8_c00256{transform:matrix(0.271405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271405,0.000000,0.000000,0.250000,0,0);}
.m32_c00256{transform:matrix(0.271565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271565,0.000000,0.000000,0.250000,0,0);}
.m5_c00256{transform:matrix(0.272630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272630,0.000000,0.000000,0.250000,0,0);}
.mad_c00256{transform:matrix(0.272930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272930,0.000000,0.000000,0.250000,0,0);}
.maa_c00256{transform:matrix(0.274500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274500,0.000000,0.000000,0.250000,0,0);}
.mcb_c00256{transform:matrix(0.274985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274985,0.000000,0.000000,0.250000,0,0);}
.mbd_c00256{transform:matrix(0.275635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275635,0.000000,0.000000,0.250000,0,0);}
.mb1_c00256{transform:matrix(0.276195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276195,0.000000,0.000000,0.250000,0,0);}
.m4_c00256{transform:matrix(0.276715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276715,0.000000,0.000000,0.250000,0,0);}
.m2_c00256{transform:matrix(0.277060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277060,0.000000,0.000000,0.250000,0,0);}
.m118_c00256{transform:matrix(0.277727,0.001389,-0.001250,0.249997,0,0);-ms-transform:matrix(0.277727,0.001389,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.277727,0.001389,-0.001250,0.249997,0,0);}
.m7a_c00256{transform:matrix(0.277800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277800,0.000000,0.000000,0.250000,0,0);}
.me5_c00256{transform:matrix(0.277995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277995,0.000000,0.000000,0.250000,0,0);}
.me1_c00256{transform:matrix(0.279215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279215,0.000000,0.000000,0.250000,0,0);}
.m77_c00256{transform:matrix(0.280205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280205,0.000000,0.000000,0.250000,0,0);}
.m73_c00256{transform:matrix(0.280550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280550,0.000000,0.000000,0.250000,0,0);}
.m6e_c00256{transform:matrix(0.281055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281055,0.000000,0.000000,0.250000,0,0);}
.m71_c00256{transform:matrix(0.281535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281535,0.000000,0.000000,0.250000,0,0);}
.mf8_c00256{transform:matrix(0.287950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287950,0.000000,0.000000,0.250000,0,0);}
.m103_c00256{transform:matrix(0.290236,0.001451,-0.001250,0.249997,0,0);-ms-transform:matrix(0.290236,0.001451,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.290236,0.001451,-0.001250,0.249997,0,0);}
.m53_c00256{transform:matrix(0.303150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303150,0.000000,0.000000,0.250000,0,0);}
.mf9_c00256{transform:matrix(0.309930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309930,0.000000,0.000000,0.250000,0,0);}
.m24_c00256{transform:matrix(0.321930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321930,0.000000,0.000000,0.250000,0,0);}
.v0_c00256{vertical-align:0.000000px;}
.ls0_c00256{letter-spacing:0.000000px;}
.sc__c00256{text-shadow:none;}
.sc0_c00256{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__c00256{-webkit-text-stroke:0px transparent;}
.sc0_c00256{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00256{word-spacing:0.000000px;}
.fc0_c00256{color:transparent;}
.fs0_c00256{font-size:72.000000px;}
.fs7_c00256{font-size:72.000900px;}
.fs4_c00256{font-size:78.000000px;}
.fs5_c00256{font-size:78.000975px;}
.fs3_c00256{font-size:84.000000px;}
.fs1_c00256{font-size:90.000000px;}
.fs6_c00256{font-size:90.001125px;}
.fs2_c00256{font-size:96.000000px;}
.fs8_c00256{font-size:108.007776px;}
.y0_c00256{bottom:0.000000px;}
.y47_c00256{bottom:119.015106px;}
.y46_c00256{bottom:120.045660px;}
.y45_c00256{bottom:120.725502px;}
.y44_c00256{bottom:121.493490px;}
.y43_c00256{bottom:121.917894px;}
.y42_c00256{bottom:122.173674px;}
.y41_c00256{bottom:122.562600px;}
.y40_c00256{bottom:122.964252px;}
.y3f_c00256{bottom:123.884538px;}
.y3e_c00256{bottom:124.822194px;}
.y3d_c00256{bottom:125.281500px;}
.y6_c00256{bottom:163.693500px;}
.y3c_c00256{bottom:194.135805px;}
.y3b_c00256{bottom:194.136105px;}
.y3a_c00256{bottom:194.136248px;}
.y31_c00256{bottom:194.136675px;}
.y36_c00256{bottom:194.136690px;}
.y34_c00256{bottom:194.136982px;}
.y39_c00256{bottom:194.136998px;}
.y32_c00256{bottom:194.137125px;}
.y37_c00256{bottom:194.137290px;}
.y33_c00256{bottom:194.137433px;}
.y35_c00256{bottom:194.137440px;}
.y38_c00256{bottom:194.137740px;}
.y2d_c00256{bottom:225.142185px;}
.y30_c00256{bottom:225.142493px;}
.y2c_c00256{bottom:225.142628px;}
.y2e_c00256{bottom:225.142785px;}
.y2f_c00256{bottom:225.142935px;}
.y2b_c00256{bottom:225.143227px;}
.y27_c00256{bottom:225.143362px;}
.y29_c00256{bottom:225.143670px;}
.y2a_c00256{bottom:225.143820px;}
.y28_c00256{bottom:225.143963px;}
.y26_c00256{bottom:256.184633px;}
.y25_c00256{bottom:256.403273px;}
.y24_c00256{bottom:256.790828px;}
.y23_c00256{bottom:256.951440px;}
.y22_c00256{bottom:257.118862px;}
.y21_c00256{bottom:257.444198px;}
.y20_c00256{bottom:257.666895px;}
.y1f_c00256{bottom:257.939625px;}
.y1e_c00256{bottom:258.332528px;}
.y1d_c00256{bottom:258.595725px;}
.y1c_c00256{bottom:258.919740px;}
.y1b_c00256{bottom:259.200000px;}
.y5_c00256{bottom:288.718500px;}
.y1a_c00256{bottom:320.784000px;}
.y19_c00256{bottom:353.215500px;}
.y18_c00256{bottom:384.480000px;}
.y17_c00256{bottom:416.422500px;}
.y4_c00256{bottom:448.557000px;}
.y16_c00256{bottom:481.282500px;}
.y15_c00256{bottom:512.953500px;}
.y14_c00256{bottom:543.606000px;}
.y3_c00256{bottom:574.554000px;}
.y2_c00256{bottom:605.437500px;}
.y13_c00256{bottom:636.183000px;}
.y1_c00256{bottom:669.330000px;}
.y12_c00256{bottom:701.016000px;}
.y11_c00256{bottom:733.320000px;}
.y10_c00256{bottom:765.931500px;}
.yf_c00256{bottom:797.580000px;}
.ye_c00256{bottom:828.900000px;}
.yd_c00256{bottom:859.950000px;}
.yc_c00256{bottom:892.080000px;}
.yb_c00256{bottom:923.590500px;}
.ya_c00256{bottom:955.530000px;}
.y9_c00256{bottom:987.555000px;}
.y8_c00256{bottom:1018.710000px;}
.y7_c00256{bottom:1088.098500px;}
.h2_c00256{height:72.000000px;}
.h9_c00256{height:72.000900px;}
.h6_c00256{height:78.000000px;}
.h7_c00256{height:78.000975px;}
.h5_c00256{height:84.000000px;}
.h3_c00256{height:90.000000px;}
.h8_c00256{height:90.001125px;}
.h4_c00256{height:96.000000px;}
.ha_c00256{height:108.007776px;}
.h0_c00256{height:1127.790000px;}
.h1_c00256{height:1128.000000px;}
.w0_c00256{width:915.000000px;}
.x0_c00256{left:0.000000px;}
.x7b_c00256{left:108.904500px;}
.x1_c00256{left:137.970000px;}
.x21_c00256{left:139.320000px;}
.x2c_c00256{left:142.560000px;}
.x2_c00256{left:147.420000px;}
.x5e_c00256{left:148.500000px;}
.x6c_c00256{left:150.930000px;}
.x35_c00256{left:178.200000px;}
.xa_c00256{left:180.090000px;}
.x22_c00256{left:181.170000px;}
.x31_c00256{left:191.970000px;}
.x5f_c00256{left:193.320000px;}
.x3_c00256{left:202.500000px;}
.x76_c00256{left:203.625000px;}
.x23_c00256{left:213.300000px;}
.xb_c00256{left:214.380000px;}
.x4b_c00256{left:222.210000px;}
.x16_c00256{left:224.370000px;}
.x38_c00256{left:236.250000px;}
.x2d_c00256{left:245.970000px;}
.xc_c00256{left:247.860000px;}
.x6d_c00256{left:252.180000px;}
.x3d_c00256{left:257.850000px;}
.x17_c00256{left:258.930000px;}
.x5c_c00256{left:260.010000px;}
.x47_c00256{left:267.840000px;}
.x56_c00256{left:269.460000px;}
.x24_c00256{left:279.720000px;}
.x67_c00256{left:289.980000px;}
.x18_c00256{left:291.060000px;}
.xd_c00256{left:301.320000px;}
.x57_c00256{left:302.400000px;}
.x32_c00256{left:311.580000px;}
.x4_c00256{left:312.930000px;}
.x6e_c00256{left:322.380000px;}
.x25_c00256{left:323.460000px;}
.x77_c00256{left:324.480000px;}
.xe_c00256{left:334.260000px;}
.x5d_c00256{left:335.610000px;}
.x4f_c00256{left:336.690000px;}
.x3e_c00256{left:345.060000px;}
.x5_c00256{left:346.410000px;}
.x26_c00256{left:356.400000px;}
.x6f_c00256{left:366.660000px;}
.x2e_c00256{left:367.740000px;}
.xf_c00256{left:369.360000px;}
.x43_c00256{left:378.000000px;}
.x34_c00256{left:379.080000px;}
.x19_c00256{left:389.340000px;}
.x60_c00256{left:390.420000px;}
.x71_c00256{left:392.040000px;}
.x4c_c00256{left:401.220000px;}
.x1a_c00256{left:412.020000px;}
.x58_c00256{left:413.370000px;}
.x72_c00256{left:417.420000px;}
.x68_c00256{left:421.740000px;}
.x27_c00256{left:422.820000px;}
.x45_c00256{left:423.900000px;}
.x6a_c00256{left:432.810000px;}
.x33_c00256{left:434.160000px;}
.x39_c00256{left:444.690000px;}
.x6_c00256{left:455.220000px;}
.x1b_c00256{left:465.750000px;}
.x61_c00256{left:476.820000px;}
.x10_c00256{left:478.170000px;}
.x28_c00256{left:488.160000px;}
.x3a_c00256{left:489.240000px;}
.x44_c00256{left:490.590000px;}
.x48_c00256{left:498.960000px;}
.x1c_c00256{left:500.580000px;}
.x3f_c00256{left:510.570000px;}
.x2f_c00256{left:520.560000px;}
.x11_c00256{left:522.450000px;}
.x65_c00256{left:532.710000px;}
.x1d_c00256{left:533.790000px;}
.x6b_c00256{left:542.700000px;}
.x59_c00256{left:544.320000px;}
.x7_c00256{left:554.580000px;}
.x53_c00256{left:555.930000px;}
.x49_c00256{left:565.380000px;}
.x8_c00256{left:578.070000px;}
.x3b_c00256{left:586.980000px;}
.x30_c00256{left:588.330000px;}
.x62_c00256{left:598.860000px;}
.x66_c00256{left:608.850000px;}
.x9_c00256{left:610.740000px;}
.x78_c00256{left:619.852500px;}
.x73_c00256{left:630.720000px;}
.x1e_c00256{left:632.610000px;}
.x12_c00256{left:642.060000px;}
.x55_c00256{left:643.140000px;}
.x50_c00256{left:653.940000px;}
.x4d_c00256{left:665.010000px;}
.x46_c00256{left:675.270000px;}
.x79_c00256{left:685.459500px;}
.x54_c00256{left:686.610000px;}
.x13_c00256{left:687.690000px;}
.x69_c00256{left:697.410000px;}
.x36_c00256{left:708.480000px;}
.x63_c00256{left:709.560000px;}
.x29_c00256{left:718.740000px;}
.x3c_c00256{left:729.810000px;}
.x1f_c00256{left:731.160000px;}
.x40_c00256{left:741.960000px;}
.x70_c00256{left:751.410000px;}
.x14_c00256{left:752.490000px;}
.x2a_c00256{left:762.480000px;}
.x5a_c00256{left:763.560000px;}
.x7a_c00256{left:773.292930px;}
.x15_c00256{left:774.630000px;}
.x4e_c00256{left:785.160000px;}
.x37_c00256{left:786.240000px;}
.x41_c00256{left:796.770000px;}
.x64_c00256{left:798.660000px;}
.x74_c00256{left:806.490000px;}
.x51_c00256{left:807.570000px;}
.x20_c00256{left:808.650000px;}
.x75_c00256{left:817.560000px;}
.x5b_c00256{left:818.910000px;}
.x42_c00256{left:828.630000px;}
.x2b_c00256{left:829.710000px;}
.x52_c00256{left:840.240000px;}
.x4a_c00256{left:851.040000px;}
@media print{
.v0_c00256{vertical-align:0.000000pt;}
.ls0_c00256{letter-spacing:0.000000pt;}
.ws0_c00256{word-spacing:0.000000pt;}
.fs0_c00256{font-size:64.000000pt;}
.fs7_c00256{font-size:64.000800pt;}
.fs4_c00256{font-size:69.333333pt;}
.fs5_c00256{font-size:69.334200pt;}
.fs3_c00256{font-size:74.666667pt;}
.fs1_c00256{font-size:80.000000pt;}
.fs6_c00256{font-size:80.001000pt;}
.fs2_c00256{font-size:85.333333pt;}
.fs8_c00256{font-size:96.006912pt;}
.y0_c00256{bottom:0.000000pt;}
.y47_c00256{bottom:105.791205pt;}
.y46_c00256{bottom:106.707253pt;}
.y45_c00256{bottom:107.311557pt;}
.y44_c00256{bottom:107.994213pt;}
.y43_c00256{bottom:108.371461pt;}
.y42_c00256{bottom:108.598821pt;}
.y41_c00256{bottom:108.944533pt;}
.y40_c00256{bottom:109.301557pt;}
.y3f_c00256{bottom:110.119589pt;}
.y3e_c00256{bottom:110.953061pt;}
.y3d_c00256{bottom:111.361333pt;}
.y6_c00256{bottom:145.505333pt;}
.y3c_c00256{bottom:172.565160pt;}
.y3b_c00256{bottom:172.565427pt;}
.y3a_c00256{bottom:172.565553pt;}
.y31_c00256{bottom:172.565933pt;}
.y36_c00256{bottom:172.565947pt;}
.y34_c00256{bottom:172.566207pt;}
.y39_c00256{bottom:172.566220pt;}
.y32_c00256{bottom:172.566333pt;}
.y37_c00256{bottom:172.566480pt;}
.y33_c00256{bottom:172.566607pt;}
.y35_c00256{bottom:172.566613pt;}
.y38_c00256{bottom:172.566880pt;}
.y2d_c00256{bottom:200.126387pt;}
.y30_c00256{bottom:200.126660pt;}
.y2c_c00256{bottom:200.126780pt;}
.y2e_c00256{bottom:200.126920pt;}
.y2f_c00256{bottom:200.127053pt;}
.y2b_c00256{bottom:200.127313pt;}
.y27_c00256{bottom:200.127433pt;}
.y29_c00256{bottom:200.127707pt;}
.y2a_c00256{bottom:200.127840pt;}
.y28_c00256{bottom:200.127967pt;}
.y26_c00256{bottom:227.719673pt;}
.y25_c00256{bottom:227.914020pt;}
.y24_c00256{bottom:228.258513pt;}
.y23_c00256{bottom:228.401280pt;}
.y22_c00256{bottom:228.550100pt;}
.y21_c00256{bottom:228.839287pt;}
.y20_c00256{bottom:229.037240pt;}
.y1f_c00256{bottom:229.279667pt;}
.y1e_c00256{bottom:229.628913pt;}
.y1d_c00256{bottom:229.862867pt;}
.y1c_c00256{bottom:230.150880pt;}
.y1b_c00256{bottom:230.400000pt;}
.y5_c00256{bottom:256.638667pt;}
.y1a_c00256{bottom:285.141333pt;}
.y19_c00256{bottom:313.969333pt;}
.y18_c00256{bottom:341.760000pt;}
.y17_c00256{bottom:370.153333pt;}
.y4_c00256{bottom:398.717333pt;}
.y16_c00256{bottom:427.806667pt;}
.y15_c00256{bottom:455.958667pt;}
.y14_c00256{bottom:483.205333pt;}
.y3_c00256{bottom:510.714667pt;}
.y2_c00256{bottom:538.166667pt;}
.y13_c00256{bottom:565.496000pt;}
.y1_c00256{bottom:594.960000pt;}
.y12_c00256{bottom:623.125333pt;}
.y11_c00256{bottom:651.840000pt;}
.y10_c00256{bottom:680.828000pt;}
.yf_c00256{bottom:708.960000pt;}
.ye_c00256{bottom:736.800000pt;}
.yd_c00256{bottom:764.400000pt;}
.yc_c00256{bottom:792.960000pt;}
.yb_c00256{bottom:820.969333pt;}
.ya_c00256{bottom:849.360000pt;}
.y9_c00256{bottom:877.826667pt;}
.y8_c00256{bottom:905.520000pt;}
.y7_c00256{bottom:967.198667pt;}
.h2_c00256{height:64.000000pt;}
.h9_c00256{height:64.000800pt;}
.h6_c00256{height:69.333333pt;}
.h7_c00256{height:69.334200pt;}
.h5_c00256{height:74.666667pt;}
.h3_c00256{height:80.000000pt;}
.h8_c00256{height:80.001000pt;}
.h4_c00256{height:85.333333pt;}
.ha_c00256{height:96.006912pt;}
.h0_c00256{height:1002.480000pt;}
.h1_c00256{height:1002.666667pt;}
.w0_c00256{width:813.333333pt;}
.x0_c00256{left:0.000000pt;}
.x7b_c00256{left:96.804000pt;}
.x1_c00256{left:122.640000pt;}
.x21_c00256{left:123.840000pt;}
.x2c_c00256{left:126.720000pt;}
.x2_c00256{left:131.040000pt;}
.x5e_c00256{left:132.000000pt;}
.x6c_c00256{left:134.160000pt;}
.x35_c00256{left:158.400000pt;}
.xa_c00256{left:160.080000pt;}
.x22_c00256{left:161.040000pt;}
.x31_c00256{left:170.640000pt;}
.x5f_c00256{left:171.840000pt;}
.x3_c00256{left:180.000000pt;}
.x76_c00256{left:181.000000pt;}
.x23_c00256{left:189.600000pt;}
.xb_c00256{left:190.560000pt;}
.x4b_c00256{left:197.520000pt;}
.x16_c00256{left:199.440000pt;}
.x38_c00256{left:210.000000pt;}
.x2d_c00256{left:218.640000pt;}
.xc_c00256{left:220.320000pt;}
.x6d_c00256{left:224.160000pt;}
.x3d_c00256{left:229.200000pt;}
.x17_c00256{left:230.160000pt;}
.x5c_c00256{left:231.120000pt;}
.x47_c00256{left:238.080000pt;}
.x56_c00256{left:239.520000pt;}
.x24_c00256{left:248.640000pt;}
.x67_c00256{left:257.760000pt;}
.x18_c00256{left:258.720000pt;}
.xd_c00256{left:267.840000pt;}
.x57_c00256{left:268.800000pt;}
.x32_c00256{left:276.960000pt;}
.x4_c00256{left:278.160000pt;}
.x6e_c00256{left:286.560000pt;}
.x25_c00256{left:287.520000pt;}
.x77_c00256{left:288.426667pt;}
.xe_c00256{left:297.120000pt;}
.x5d_c00256{left:298.320000pt;}
.x4f_c00256{left:299.280000pt;}
.x3e_c00256{left:306.720000pt;}
.x5_c00256{left:307.920000pt;}
.x26_c00256{left:316.800000pt;}
.x6f_c00256{left:325.920000pt;}
.x2e_c00256{left:326.880000pt;}
.xf_c00256{left:328.320000pt;}
.x43_c00256{left:336.000000pt;}
.x34_c00256{left:336.960000pt;}
.x19_c00256{left:346.080000pt;}
.x60_c00256{left:347.040000pt;}
.x71_c00256{left:348.480000pt;}
.x4c_c00256{left:356.640000pt;}
.x1a_c00256{left:366.240000pt;}
.x58_c00256{left:367.440000pt;}
.x72_c00256{left:371.040000pt;}
.x68_c00256{left:374.880000pt;}
.x27_c00256{left:375.840000pt;}
.x45_c00256{left:376.800000pt;}
.x6a_c00256{left:384.720000pt;}
.x33_c00256{left:385.920000pt;}
.x39_c00256{left:395.280000pt;}
.x6_c00256{left:404.640000pt;}
.x1b_c00256{left:414.000000pt;}
.x61_c00256{left:423.840000pt;}
.x10_c00256{left:425.040000pt;}
.x28_c00256{left:433.920000pt;}
.x3a_c00256{left:434.880000pt;}
.x44_c00256{left:436.080000pt;}
.x48_c00256{left:443.520000pt;}
.x1c_c00256{left:444.960000pt;}
.x3f_c00256{left:453.840000pt;}
.x2f_c00256{left:462.720000pt;}
.x11_c00256{left:464.400000pt;}
.x65_c00256{left:473.520000pt;}
.x1d_c00256{left:474.480000pt;}
.x6b_c00256{left:482.400000pt;}
.x59_c00256{left:483.840000pt;}
.x7_c00256{left:492.960000pt;}
.x53_c00256{left:494.160000pt;}
.x49_c00256{left:502.560000pt;}
.x8_c00256{left:513.840000pt;}
.x3b_c00256{left:521.760000pt;}
.x30_c00256{left:522.960000pt;}
.x62_c00256{left:532.320000pt;}
.x66_c00256{left:541.200000pt;}
.x9_c00256{left:542.880000pt;}
.x78_c00256{left:550.980000pt;}
.x73_c00256{left:560.640000pt;}
.x1e_c00256{left:562.320000pt;}
.x12_c00256{left:570.720000pt;}
.x55_c00256{left:571.680000pt;}
.x50_c00256{left:581.280000pt;}
.x4d_c00256{left:591.120000pt;}
.x46_c00256{left:600.240000pt;}
.x79_c00256{left:609.297333pt;}
.x54_c00256{left:610.320000pt;}
.x13_c00256{left:611.280000pt;}
.x69_c00256{left:619.920000pt;}
.x36_c00256{left:629.760000pt;}
.x63_c00256{left:630.720000pt;}
.x29_c00256{left:638.880000pt;}
.x3c_c00256{left:648.720000pt;}
.x1f_c00256{left:649.920000pt;}
.x40_c00256{left:659.520000pt;}
.x70_c00256{left:667.920000pt;}
.x14_c00256{left:668.880000pt;}
.x2a_c00256{left:677.760000pt;}
.x5a_c00256{left:678.720000pt;}
.x7a_c00256{left:687.371493pt;}
.x15_c00256{left:688.560000pt;}
.x4e_c00256{left:697.920000pt;}
.x37_c00256{left:698.880000pt;}
.x41_c00256{left:708.240000pt;}
.x64_c00256{left:709.920000pt;}
.x74_c00256{left:716.880000pt;}
.x51_c00256{left:717.840000pt;}
.x20_c00256{left:718.800000pt;}
.x75_c00256{left:726.720000pt;}
.x5b_c00256{left:727.920000pt;}
.x42_c00256{left:736.560000pt;}
.x2b_c00256{left:737.520000pt;}
.x52_c00256{left:746.880000pt;}
.x4a_c00256{left:756.480000pt;}
}





/* 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_c00257 {
    display:none;
  }
  .loading-indicator_c00257.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00257 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_c00257 { 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_c00257" -> "#page-container .classname_c00257")
 */
.pf_c00257 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00257 { /* 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_c00257.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00257 { /* 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_c00257 { /* 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_c00257 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00257 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00257 {overflow:visible;}
  }
}
.c_c00257 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00257 { /* 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_c00257:after { /* webkit #35443 */
  content: '';
}
.t_c00257:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00257 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 */
}
.__c00257 { /* 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_c00257 { /* info for Javascript */
  display:none;
}
.l_c00257 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00257 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00257 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00257: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_c00257 {
    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_c00257.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00257.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_c00257 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00257{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00257;src:url('chunks/assets/font_c605e72f209fc835e906f064.woff2')format("woff");}.ff1_c00257{font-family:ff1_c00257;line-height:1.000000;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;}
.mff_c00257{transform:matrix(0.006325,-0.000063,0.002500,0.249988,0,0);-ms-transform:matrix(0.006325,-0.000063,0.002500,0.249988,0,0);-webkit-transform:matrix(0.006325,-0.000063,0.002500,0.249988,0,0);}
.me4_c00257{transform:matrix(0.009790,-0.000078,0.002000,0.249992,0,0);-ms-transform:matrix(0.009790,-0.000078,0.002000,0.249992,0,0);-webkit-transform:matrix(0.009790,-0.000078,0.002000,0.249992,0,0);}
.m10_c00257{transform:matrix(0.013519,-0.000149,0.002750,0.249985,0,0);-ms-transform:matrix(0.013519,-0.000149,0.002750,0.249985,0,0);-webkit-transform:matrix(0.013519,-0.000149,0.002750,0.249985,0,0);}
.m10e_c00257{transform:matrix(0.032450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032450,0.000000,0.000000,0.250000,0,0);}
.m107_c00257{transform:matrix(0.040250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.040250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.040250,0.000000,0.000000,0.250000,0,0);}
.m100_c00257{transform:matrix(0.074996,-0.000750,0.002500,0.249988,0,0);-ms-transform:matrix(0.074996,-0.000750,0.002500,0.249988,0,0);-webkit-transform:matrix(0.074996,-0.000750,0.002500,0.249988,0,0);}
.m2d_c00257{transform:matrix(0.076424,-0.000382,0.001250,0.249997,0,0);-ms-transform:matrix(0.076424,-0.000382,0.001250,0.249997,0,0);-webkit-transform:matrix(0.076424,-0.000382,0.001250,0.249997,0,0);}
.m109_c00257{transform:matrix(0.084905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084905,0.000000,0.000000,0.250000,0,0);}
.m10f_c00257{transform:matrix(0.093965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093965,0.000000,0.000000,0.250000,0,0);}
.m87_c00257{transform:matrix(0.100616,-0.001308,0.003250,0.249979,0,0);-ms-transform:matrix(0.100616,-0.001308,0.003250,0.249979,0,0);-webkit-transform:matrix(0.100616,-0.001308,0.003250,0.249979,0,0);}
.m45_c00257{transform:matrix(0.102166,-0.003167,0.007746,0.249880,0,0);-ms-transform:matrix(0.102166,-0.003167,0.007746,0.249880,0,0);-webkit-transform:matrix(0.102166,-0.003167,0.007746,0.249880,0,0);}
.m108_c00257{transform:matrix(0.108375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108375,0.000000,0.000000,0.250000,0,0);}
.m4d_c00257{transform:matrix(0.115079,-0.001611,0.003500,0.249976,0,0);-ms-transform:matrix(0.115079,-0.001611,0.003500,0.249976,0,0);-webkit-transform:matrix(0.115079,-0.001611,0.003500,0.249976,0,0);}
.m7a_c00257{transform:matrix(0.117440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117440,0.000000,0.000000,0.250000,0,0);}
.m67_c00257{transform:matrix(0.123845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123845,0.000000,0.000000,0.250000,0,0);}
.m106_c00257{transform:matrix(0.127280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127280,0.000000,0.000000,0.250000,0,0);}
.mac_c00257{transform:matrix(0.127984,-0.001664,0.003250,0.249979,0,0);-ms-transform:matrix(0.127984,-0.001664,0.003250,0.249979,0,0);-webkit-transform:matrix(0.127984,-0.001664,0.003250,0.249979,0,0);}
.m8a_c00257{transform:matrix(0.134319,-0.001746,0.003250,0.249979,0,0);-ms-transform:matrix(0.134319,-0.001746,0.003250,0.249979,0,0);-webkit-transform:matrix(0.134319,-0.001746,0.003250,0.249979,0,0);}
.m94_c00257{transform:matrix(0.152422,-0.001981,0.003250,0.249979,0,0);-ms-transform:matrix(0.152422,-0.001981,0.003250,0.249979,0,0);-webkit-transform:matrix(0.152422,-0.001981,0.003250,0.249979,0,0);}
.mca_c00257{transform:matrix(0.178440,-0.005353,0.007497,0.249888,0,0);-ms-transform:matrix(0.178440,-0.005353,0.007497,0.249888,0,0);-webkit-transform:matrix(0.178440,-0.005353,0.007497,0.249888,0,0);}
.me5_c00257{transform:matrix(0.178689,-0.001430,0.002000,0.249992,0,0);-ms-transform:matrix(0.178689,-0.001430,0.002000,0.249992,0,0);-webkit-transform:matrix(0.178689,-0.001430,0.002000,0.249992,0,0);}
.m1d_c00257{transform:matrix(0.181134,-0.001992,0.002750,0.249985,0,0);-ms-transform:matrix(0.181134,-0.001992,0.002750,0.249985,0,0);-webkit-transform:matrix(0.181134,-0.001992,0.002750,0.249985,0,0);}
.m105_c00257{transform:matrix(0.181555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181555,0.000000,0.000000,0.250000,0,0);}
.m64_c00257{transform:matrix(0.181935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181935,0.000000,0.000000,0.250000,0,0);}
.m110_c00257{transform:matrix(0.183850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183850,0.000000,0.000000,0.250000,0,0);}
.m9d_c00257{transform:matrix(0.186029,-0.002418,0.003250,0.249979,0,0);-ms-transform:matrix(0.186029,-0.002418,0.003250,0.249979,0,0);-webkit-transform:matrix(0.186029,-0.002418,0.003250,0.249979,0,0);}
.ma6_c00257{transform:matrix(0.187409,-0.002436,0.003250,0.249979,0,0);-ms-transform:matrix(0.187409,-0.002436,0.003250,0.249979,0,0);-webkit-transform:matrix(0.187409,-0.002436,0.003250,0.249979,0,0);}
.m4a_c00257{transform:matrix(0.188941,-0.002645,0.003500,0.249976,0,0);-ms-transform:matrix(0.188941,-0.002645,0.003500,0.249976,0,0);-webkit-transform:matrix(0.188941,-0.002645,0.003500,0.249976,0,0);}
.m1c_c00257{transform:matrix(0.191943,-0.002111,0.002750,0.249985,0,0);-ms-transform:matrix(0.191943,-0.002111,0.002750,0.249985,0,0);-webkit-transform:matrix(0.191943,-0.002111,0.002750,0.249985,0,0);}
.md0_c00257{transform:matrix(0.192240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192240,0.000000,0.000000,0.250000,0,0);}
.m85_c00257{transform:matrix(0.193212,-0.003285,0.004249,0.249964,0,0);-ms-transform:matrix(0.193212,-0.003285,0.004249,0.249964,0,0);-webkit-transform:matrix(0.193212,-0.003285,0.004249,0.249964,0,0);}
.m101_c00257{transform:matrix(0.193230,-0.001932,0.002500,0.249988,0,0);-ms-transform:matrix(0.193230,-0.001932,0.002500,0.249988,0,0);-webkit-transform:matrix(0.193230,-0.001932,0.002500,0.249988,0,0);}
.m26_c00257{transform:matrix(0.193968,-0.000970,0.001250,0.249997,0,0);-ms-transform:matrix(0.193968,-0.000970,0.001250,0.249997,0,0);-webkit-transform:matrix(0.193968,-0.000970,0.001250,0.249997,0,0);}
.m41_c00257{transform:matrix(0.194000,-0.003104,0.003999,0.249968,0,0);-ms-transform:matrix(0.194000,-0.003104,0.003999,0.249968,0,0);-webkit-transform:matrix(0.194000,-0.003104,0.003999,0.249968,0,0);}
.m8e_c00257{transform:matrix(0.196758,-0.002558,0.003250,0.249979,0,0);-ms-transform:matrix(0.196758,-0.002558,0.003250,0.249979,0,0);-webkit-transform:matrix(0.196758,-0.002558,0.003250,0.249979,0,0);}
.m89_c00257{transform:matrix(0.196828,-0.002559,0.003250,0.249979,0,0);-ms-transform:matrix(0.196828,-0.002559,0.003250,0.249979,0,0);-webkit-transform:matrix(0.196828,-0.002559,0.003250,0.249979,0,0);}
.m2_c00257{transform:matrix(0.197173,-0.002169,0.002750,0.249985,0,0);-ms-transform:matrix(0.197173,-0.002169,0.002750,0.249985,0,0);-webkit-transform:matrix(0.197173,-0.002169,0.002750,0.249985,0,0);}
.m36_c00257{transform:matrix(0.198273,-0.000991,0.001250,0.249997,0,0);-ms-transform:matrix(0.198273,-0.000991,0.001250,0.249997,0,0);-webkit-transform:matrix(0.198273,-0.000991,0.001250,0.249997,0,0);}
.m3e_c00257{transform:matrix(0.199764,-0.003196,0.003999,0.249968,0,0);-ms-transform:matrix(0.199764,-0.003196,0.003999,0.249968,0,0);-webkit-transform:matrix(0.199764,-0.003196,0.003999,0.249968,0,0);}
.m1f_c00257{transform:matrix(0.201233,-0.002214,0.002750,0.249985,0,0);-ms-transform:matrix(0.201233,-0.002214,0.002750,0.249985,0,0);-webkit-transform:matrix(0.201233,-0.002214,0.002750,0.249985,0,0);}
.mde_c00257{transform:matrix(0.201834,-0.001615,0.002000,0.249992,0,0);-ms-transform:matrix(0.201834,-0.001615,0.002000,0.249992,0,0);-webkit-transform:matrix(0.201834,-0.001615,0.002000,0.249992,0,0);}
.me8_c00257{transform:matrix(0.202799,-0.001622,0.002000,0.249992,0,0);-ms-transform:matrix(0.202799,-0.001622,0.002000,0.249992,0,0);-webkit-transform:matrix(0.202799,-0.001622,0.002000,0.249992,0,0);}
.m19_c00257{transform:matrix(0.207162,-0.002279,0.002750,0.249985,0,0);-ms-transform:matrix(0.207162,-0.002279,0.002750,0.249985,0,0);-webkit-transform:matrix(0.207162,-0.002279,0.002750,0.249985,0,0);}
.m44_c00257{transform:matrix(0.208685,-0.006469,0.007746,0.249880,0,0);-ms-transform:matrix(0.208685,-0.006469,0.007746,0.249880,0,0);-webkit-transform:matrix(0.208685,-0.006469,0.007746,0.249880,0,0);}
.mc7_c00257{transform:matrix(0.210910,-0.006327,0.007497,0.249888,0,0);-ms-transform:matrix(0.210910,-0.006327,0.007497,0.249888,0,0);-webkit-transform:matrix(0.210910,-0.006327,0.007497,0.249888,0,0);}
.m1e_c00257{transform:matrix(0.210957,-0.002321,0.002750,0.249985,0,0);-ms-transform:matrix(0.210957,-0.002321,0.002750,0.249985,0,0);-webkit-transform:matrix(0.210957,-0.002321,0.002750,0.249985,0,0);}
.md8_c00257{transform:matrix(0.211578,-0.001693,0.002000,0.249992,0,0);-ms-transform:matrix(0.211578,-0.001693,0.002000,0.249992,0,0);-webkit-transform:matrix(0.211578,-0.001693,0.002000,0.249992,0,0);}
.m3c_c00257{transform:matrix(0.211893,-0.003390,0.003999,0.249968,0,0);-ms-transform:matrix(0.211893,-0.003390,0.003999,0.249968,0,0);-webkit-transform:matrix(0.211893,-0.003390,0.003999,0.249968,0,0);}
.m6b_c00257{transform:matrix(0.217055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217055,0.000000,0.000000,0.250000,0,0);}
.m5_c00257{transform:matrix(0.218442,-0.002403,0.002750,0.249985,0,0);-ms-transform:matrix(0.218442,-0.002403,0.002750,0.249985,0,0);-webkit-transform:matrix(0.218442,-0.002403,0.002750,0.249985,0,0);}
.m0_c00257{transform:matrix(0.218672,-0.002405,0.002750,0.249985,0,0);-ms-transform:matrix(0.218672,-0.002405,0.002750,0.249985,0,0);-webkit-transform:matrix(0.218672,-0.002405,0.002750,0.249985,0,0);}
.mbe_c00257{transform:matrix(0.220046,-0.002861,0.003250,0.249979,0,0);-ms-transform:matrix(0.220046,-0.002861,0.003250,0.249979,0,0);-webkit-transform:matrix(0.220046,-0.002861,0.003250,0.249979,0,0);}
.md1_c00257{transform:matrix(0.223155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223155,0.000000,0.000000,0.250000,0,0);}
.m20_c00257{transform:matrix(0.224476,-0.002469,0.002750,0.249985,0,0);-ms-transform:matrix(0.224476,-0.002469,0.002750,0.249985,0,0);-webkit-transform:matrix(0.224476,-0.002469,0.002750,0.249985,0,0);}
.m8d_c00257{transform:matrix(0.224871,-0.002923,0.003250,0.249979,0,0);-ms-transform:matrix(0.224871,-0.002923,0.003250,0.249979,0,0);-webkit-transform:matrix(0.224871,-0.002923,0.003250,0.249979,0,0);}
.m2c_c00257{transform:matrix(0.226867,-0.001134,0.001250,0.249997,0,0);-ms-transform:matrix(0.226867,-0.001134,0.001250,0.249997,0,0);-webkit-transform:matrix(0.226867,-0.001134,0.001250,0.249997,0,0);}
.me_c00257{transform:matrix(0.227381,-0.002501,0.002750,0.249985,0,0);-ms-transform:matrix(0.227381,-0.002501,0.002750,0.249985,0,0);-webkit-transform:matrix(0.227381,-0.002501,0.002750,0.249985,0,0);}
.m30_c00257{transform:matrix(0.227802,-0.001139,0.001250,0.249997,0,0);-ms-transform:matrix(0.227802,-0.001139,0.001250,0.249997,0,0);-webkit-transform:matrix(0.227802,-0.001139,0.001250,0.249997,0,0);}
.m38_c00257{transform:matrix(0.228167,-0.001141,0.001250,0.249997,0,0);-ms-transform:matrix(0.228167,-0.001141,0.001250,0.249997,0,0);-webkit-transform:matrix(0.228167,-0.001141,0.001250,0.249997,0,0);}
.m9b_c00257{transform:matrix(0.228181,-0.002966,0.003250,0.249979,0,0);-ms-transform:matrix(0.228181,-0.002966,0.003250,0.249979,0,0);-webkit-transform:matrix(0.228181,-0.002966,0.003250,0.249979,0,0);}
.m4b_c00257{transform:matrix(0.228943,-0.003205,0.003500,0.249976,0,0);-ms-transform:matrix(0.228943,-0.003205,0.003500,0.249976,0,0);-webkit-transform:matrix(0.228943,-0.003205,0.003500,0.249976,0,0);}
.m103_c00257{transform:matrix(0.231153,-0.002312,0.002500,0.249988,0,0);-ms-transform:matrix(0.231153,-0.002312,0.002500,0.249988,0,0);-webkit-transform:matrix(0.231153,-0.002312,0.002500,0.249988,0,0);}
.mcd_c00257{transform:matrix(0.231646,-0.006949,0.007497,0.249888,0,0);-ms-transform:matrix(0.231646,-0.006949,0.007497,0.249888,0,0);-webkit-transform:matrix(0.231646,-0.006949,0.007497,0.249888,0,0);}
.m3d_c00257{transform:matrix(0.233335,-0.003733,0.003999,0.249968,0,0);-ms-transform:matrix(0.233335,-0.003733,0.003999,0.249968,0,0);-webkit-transform:matrix(0.233335,-0.003733,0.003999,0.249968,0,0);}
.m65_c00257{transform:matrix(0.233560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233560,0.000000,0.000000,0.250000,0,0);}
.m17_c00257{transform:matrix(0.235836,-0.002594,0.002750,0.249985,0,0);-ms-transform:matrix(0.235836,-0.002594,0.002750,0.249985,0,0);-webkit-transform:matrix(0.235836,-0.002594,0.002750,0.249985,0,0);}
.mba_c00257{transform:matrix(0.236495,-0.003074,0.003250,0.249979,0,0);-ms-transform:matrix(0.236495,-0.003074,0.003250,0.249979,0,0);-webkit-transform:matrix(0.236495,-0.003074,0.003250,0.249979,0,0);}
.mbd_c00257{transform:matrix(0.238575,-0.003101,0.003250,0.249979,0,0);-ms-transform:matrix(0.238575,-0.003101,0.003250,0.249979,0,0);-webkit-transform:matrix(0.238575,-0.003101,0.003250,0.249979,0,0);}
.mc6_c00257{transform:matrix(0.239302,-0.007179,0.007497,0.249888,0,0);-ms-transform:matrix(0.239302,-0.007179,0.007497,0.249888,0,0);-webkit-transform:matrix(0.239302,-0.007179,0.007497,0.249888,0,0);}
.md9_c00257{transform:matrix(0.239727,-0.001918,0.002000,0.249992,0,0);-ms-transform:matrix(0.239727,-0.001918,0.002000,0.249992,0,0);-webkit-transform:matrix(0.239727,-0.001918,0.002000,0.249992,0,0);}
.m95_c00257{transform:matrix(0.240135,-0.003122,0.003250,0.249979,0,0);-ms-transform:matrix(0.240135,-0.003122,0.003250,0.249979,0,0);-webkit-transform:matrix(0.240135,-0.003122,0.003250,0.249979,0,0);}
.m6_c00257{transform:matrix(0.241365,-0.002655,0.002750,0.249985,0,0);-ms-transform:matrix(0.241365,-0.002655,0.002750,0.249985,0,0);-webkit-transform:matrix(0.241365,-0.002655,0.002750,0.249985,0,0);}
.m6e_c00257{transform:matrix(0.241520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241520,0.000000,0.000000,0.250000,0,0);}
.m53_c00257{transform:matrix(0.242701,-0.003398,0.003500,0.249976,0,0);-ms-transform:matrix(0.242701,-0.003398,0.003500,0.249976,0,0);-webkit-transform:matrix(0.242701,-0.003398,0.003500,0.249976,0,0);}
.mf3_c00257{transform:matrix(0.243620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243620,0.000000,0.000000,0.250000,0,0);}
.m98_c00257{transform:matrix(0.245044,-0.003186,0.003250,0.249979,0,0);-ms-transform:matrix(0.245044,-0.003186,0.003250,0.249979,0,0);-webkit-transform:matrix(0.245044,-0.003186,0.003250,0.249979,0,0);}
.mc4_c00257{transform:matrix(0.246119,-0.007384,0.007497,0.249888,0,0);-ms-transform:matrix(0.246119,-0.007384,0.007497,0.249888,0,0);-webkit-transform:matrix(0.246119,-0.007384,0.007497,0.249888,0,0);}
.me1_c00257{transform:matrix(0.246152,-0.001969,0.002000,0.249992,0,0);-ms-transform:matrix(0.246152,-0.001969,0.002000,0.249992,0,0);-webkit-transform:matrix(0.246152,-0.001969,0.002000,0.249992,0,0);}
.ma_c00257{transform:matrix(0.246820,-0.002715,0.002750,0.249985,0,0);-ms-transform:matrix(0.246820,-0.002715,0.002750,0.249985,0,0);-webkit-transform:matrix(0.246820,-0.002715,0.002750,0.249985,0,0);}
.md2_c00257{transform:matrix(0.246960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246960,0.000000,0.000000,0.250000,0,0);}
.m5f_c00257{transform:matrix(0.248227,-0.002979,0.003000,0.249982,0,0);-ms-transform:matrix(0.248227,-0.002979,0.003000,0.249982,0,0);-webkit-transform:matrix(0.248227,-0.002979,0.003000,0.249982,0,0);}
.mdf_c00257{transform:matrix(0.249342,-0.001995,0.002000,0.249992,0,0);-ms-transform:matrix(0.249342,-0.001995,0.002000,0.249992,0,0);-webkit-transform:matrix(0.249342,-0.001995,0.002000,0.249992,0,0);}
.md3_c00257{transform:matrix(0.249720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249720,0.000000,0.000000,0.250000,0,0);}
.m9a_c00257{transform:matrix(0.250289,-0.003254,0.003250,0.249979,0,0);-ms-transform:matrix(0.250289,-0.003254,0.003250,0.249979,0,0);-webkit-transform:matrix(0.250289,-0.003254,0.003250,0.249979,0,0);}
.m5c_c00257{transform:matrix(0.253127,-0.003038,0.003000,0.249982,0,0);-ms-transform:matrix(0.253127,-0.003038,0.003000,0.249982,0,0);-webkit-transform:matrix(0.253127,-0.003038,0.003000,0.249982,0,0);}
.m90_c00257{transform:matrix(0.253789,-0.003299,0.003250,0.249979,0,0);-ms-transform:matrix(0.253789,-0.003299,0.003250,0.249979,0,0);-webkit-transform:matrix(0.253789,-0.003299,0.003250,0.249979,0,0);}
.m1b_c00257{transform:matrix(0.254140,-0.002796,0.002750,0.249985,0,0);-ms-transform:matrix(0.254140,-0.002796,0.002750,0.249985,0,0);-webkit-transform:matrix(0.254140,-0.002796,0.002750,0.249985,0,0);}
.m9e_c00257{transform:matrix(0.254339,-0.003306,0.003250,0.249979,0,0);-ms-transform:matrix(0.254339,-0.003306,0.003250,0.249979,0,0);-webkit-transform:matrix(0.254339,-0.003306,0.003250,0.249979,0,0);}
.mcc_c00257{transform:matrix(0.254885,-0.007647,0.007497,0.249888,0,0);-ms-transform:matrix(0.254885,-0.007647,0.007497,0.249888,0,0);-webkit-transform:matrix(0.254885,-0.007647,0.007497,0.249888,0,0);}
.m25_c00257{transform:matrix(0.255832,-0.001279,0.001250,0.249997,0,0);-ms-transform:matrix(0.255832,-0.001279,0.001250,0.249997,0,0);-webkit-transform:matrix(0.255832,-0.001279,0.001250,0.249997,0,0);}
.m5a_c00257{transform:matrix(0.256472,-0.003078,0.003000,0.249982,0,0);-ms-transform:matrix(0.256472,-0.003078,0.003000,0.249982,0,0);-webkit-transform:matrix(0.256472,-0.003078,0.003000,0.249982,0,0);}
.mf2_c00257{transform:matrix(0.257645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257645,0.000000,0.000000,0.250000,0,0);}
.m52_c00257{transform:matrix(0.258025,-0.003612,0.003500,0.249976,0,0);-ms-transform:matrix(0.258025,-0.003612,0.003500,0.249976,0,0);-webkit-transform:matrix(0.258025,-0.003612,0.003500,0.249976,0,0);}
.m28_c00257{transform:matrix(0.258107,-0.001291,0.001250,0.249997,0,0);-ms-transform:matrix(0.258107,-0.001291,0.001250,0.249997,0,0);-webkit-transform:matrix(0.258107,-0.001291,0.001250,0.249997,0,0);}
.me9_c00257{transform:matrix(0.258852,-0.002071,0.002000,0.249992,0,0);-ms-transform:matrix(0.258852,-0.002071,0.002000,0.249992,0,0);-webkit-transform:matrix(0.258852,-0.002071,0.002000,0.249992,0,0);}
.m2b_c00257{transform:matrix(0.259657,-0.001298,0.001250,0.249997,0,0);-ms-transform:matrix(0.259657,-0.001298,0.001250,0.249997,0,0);-webkit-transform:matrix(0.259657,-0.001298,0.001250,0.249997,0,0);}
.m16_c00257{transform:matrix(0.260589,-0.002866,0.002750,0.249985,0,0);-ms-transform:matrix(0.260589,-0.002866,0.002750,0.249985,0,0);-webkit-transform:matrix(0.260589,-0.002866,0.002750,0.249985,0,0);}
.m3a_c00257{transform:matrix(0.261127,-0.001306,0.001250,0.249997,0,0);-ms-transform:matrix(0.261127,-0.001306,0.001250,0.249997,0,0);-webkit-transform:matrix(0.261127,-0.001306,0.001250,0.249997,0,0);}
.m63_c00257{transform:matrix(0.262101,-0.003145,0.003000,0.249982,0,0);-ms-transform:matrix(0.262101,-0.003145,0.003000,0.249982,0,0);-webkit-transform:matrix(0.262101,-0.003145,0.003000,0.249982,0,0);}
.mbf_c00257{transform:matrix(0.263453,-0.003425,0.003250,0.249979,0,0);-ms-transform:matrix(0.263453,-0.003425,0.003250,0.249979,0,0);-webkit-transform:matrix(0.263453,-0.003425,0.003250,0.249979,0,0);}
.mb8_c00257{transform:matrix(0.264188,-0.003434,0.003250,0.249979,0,0);-ms-transform:matrix(0.264188,-0.003434,0.003250,0.249979,0,0);-webkit-transform:matrix(0.264188,-0.003434,0.003250,0.249979,0,0);}
.m5b_c00257{transform:matrix(0.264201,-0.003170,0.003000,0.249982,0,0);-ms-transform:matrix(0.264201,-0.003170,0.003000,0.249982,0,0);-webkit-transform:matrix(0.264201,-0.003170,0.003000,0.249982,0,0);}
.m6d_c00257{transform:matrix(0.265060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265060,0.000000,0.000000,0.250000,0,0);}
.mae_c00257{transform:matrix(0.265473,-0.003451,0.003250,0.249979,0,0);-ms-transform:matrix(0.265473,-0.003451,0.003250,0.249979,0,0);-webkit-transform:matrix(0.265473,-0.003451,0.003250,0.249979,0,0);}
.m81_c00257{transform:matrix(0.266102,-0.004524,0.004249,0.249964,0,0);-ms-transform:matrix(0.266102,-0.004524,0.004249,0.249964,0,0);-webkit-transform:matrix(0.266102,-0.004524,0.004249,0.249964,0,0);}
.m24_c00257{transform:matrix(0.267062,-0.001335,0.001250,0.249997,0,0);-ms-transform:matrix(0.267062,-0.001335,0.001250,0.249997,0,0);-webkit-transform:matrix(0.267062,-0.001335,0.001250,0.249997,0,0);}
.ma7_c00257{transform:matrix(0.268772,-0.003494,0.003250,0.249979,0,0);-ms-transform:matrix(0.268772,-0.003494,0.003250,0.249979,0,0);-webkit-transform:matrix(0.268772,-0.003494,0.003250,0.249979,0,0);}
.m96_c00257{transform:matrix(0.268877,-0.003495,0.003250,0.249979,0,0);-ms-transform:matrix(0.268877,-0.003495,0.003250,0.249979,0,0);-webkit-transform:matrix(0.268877,-0.003495,0.003250,0.249979,0,0);}
.m51_c00257{transform:matrix(0.270099,-0.003781,0.003500,0.249976,0,0);-ms-transform:matrix(0.270099,-0.003781,0.003500,0.249976,0,0);-webkit-transform:matrix(0.270099,-0.003781,0.003500,0.249976,0,0);}
.mc5_c00257{transform:matrix(0.271123,-0.008134,0.007497,0.249888,0,0);-ms-transform:matrix(0.271123,-0.008134,0.007497,0.249888,0,0);-webkit-transform:matrix(0.271123,-0.008134,0.007497,0.249888,0,0);}
.me7_c00257{transform:matrix(0.271216,-0.002170,0.002000,0.249992,0,0);-ms-transform:matrix(0.271216,-0.002170,0.002000,0.249992,0,0);-webkit-transform:matrix(0.271216,-0.002170,0.002000,0.249992,0,0);}
.m99_c00257{transform:matrix(0.271307,-0.003527,0.003250,0.249979,0,0);-ms-transform:matrix(0.271307,-0.003527,0.003250,0.249979,0,0);-webkit-transform:matrix(0.271307,-0.003527,0.003250,0.249979,0,0);}
.m69_c00257{transform:matrix(0.272465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272465,0.000000,0.000000,0.250000,0,0);}
.mdb_c00257{transform:matrix(0.272506,-0.002180,0.002000,0.249992,0,0);-ms-transform:matrix(0.272506,-0.002180,0.002000,0.249992,0,0);-webkit-transform:matrix(0.272506,-0.002180,0.002000,0.249992,0,0);}
.m56_c00257{transform:matrix(0.272678,-0.003817,0.003500,0.249976,0,0);-ms-transform:matrix(0.272678,-0.003817,0.003500,0.249976,0,0);-webkit-transform:matrix(0.272678,-0.003817,0.003500,0.249976,0,0);}
.md4_c00257{transform:matrix(0.273200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273200,0.000000,0.000000,0.250000,0,0);}
.m33_c00257{transform:matrix(0.274087,-0.001370,0.001250,0.249997,0,0);-ms-transform:matrix(0.274087,-0.001370,0.001250,0.249997,0,0);-webkit-transform:matrix(0.274087,-0.001370,0.001250,0.249997,0,0);}
.m55_c00257{transform:matrix(0.274553,-0.003844,0.003500,0.249976,0,0);-ms-transform:matrix(0.274553,-0.003844,0.003500,0.249976,0,0);-webkit-transform:matrix(0.274553,-0.003844,0.003500,0.249976,0,0);}
.m111_c00257{transform:matrix(0.275770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275770,0.000000,0.000000,0.250000,0,0);}
.mf4_c00257{transform:matrix(0.276866,-0.002769,0.002500,0.249988,0,0);-ms-transform:matrix(0.276866,-0.002769,0.002500,0.249988,0,0);-webkit-transform:matrix(0.276866,-0.002769,0.002500,0.249988,0,0);}
.m6f_c00257{transform:matrix(0.276880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276880,0.000000,0.000000,0.250000,0,0);}
.mb4_c00257{transform:matrix(0.279091,-0.003628,0.003250,0.249979,0,0);-ms-transform:matrix(0.279091,-0.003628,0.003250,0.249979,0,0);-webkit-transform:matrix(0.279091,-0.003628,0.003250,0.249979,0,0);}
.m5e_c00257{transform:matrix(0.279570,-0.003355,0.003000,0.249982,0,0);-ms-transform:matrix(0.279570,-0.003355,0.003000,0.249982,0,0);-webkit-transform:matrix(0.279570,-0.003355,0.003000,0.249982,0,0);}
.m18_c00257{transform:matrix(0.279713,-0.003077,0.002750,0.249985,0,0);-ms-transform:matrix(0.279713,-0.003077,0.002750,0.249985,0,0);-webkit-transform:matrix(0.279713,-0.003077,0.002750,0.249985,0,0);}
.ma0_c00257{transform:matrix(0.279961,-0.003639,0.003250,0.249979,0,0);-ms-transform:matrix(0.279961,-0.003639,0.003250,0.249979,0,0);-webkit-transform:matrix(0.279961,-0.003639,0.003250,0.249979,0,0);}
.mcb_c00257{transform:matrix(0.280234,-0.008407,0.007497,0.249888,0,0);-ms-transform:matrix(0.280234,-0.008407,0.007497,0.249888,0,0);-webkit-transform:matrix(0.280234,-0.008407,0.007497,0.249888,0,0);}
.mad_c00257{transform:matrix(0.280881,-0.003651,0.003250,0.249979,0,0);-ms-transform:matrix(0.280881,-0.003651,0.003250,0.249979,0,0);-webkit-transform:matrix(0.280881,-0.003651,0.003250,0.249979,0,0);}
.m3b_c00257{transform:matrix(0.281389,-0.004502,0.003999,0.249968,0,0);-ms-transform:matrix(0.281389,-0.004502,0.003999,0.249968,0,0);-webkit-transform:matrix(0.281389,-0.004502,0.003999,0.249968,0,0);}
.m2f_c00257{transform:matrix(0.282096,-0.001410,0.001250,0.249997,0,0);-ms-transform:matrix(0.282096,-0.001410,0.001250,0.249997,0,0);-webkit-transform:matrix(0.282096,-0.001410,0.001250,0.249997,0,0);}
.m3_c00257{transform:matrix(0.282403,-0.003106,0.002750,0.249985,0,0);-ms-transform:matrix(0.282403,-0.003106,0.002750,0.249985,0,0);-webkit-transform:matrix(0.282403,-0.003106,0.002750,0.249985,0,0);}
.m47_c00257{transform:matrix(0.282497,-0.003955,0.003500,0.249976,0,0);-ms-transform:matrix(0.282497,-0.003955,0.003500,0.249976,0,0);-webkit-transform:matrix(0.282497,-0.003955,0.003500,0.249976,0,0);}
.m58_c00257{transform:matrix(0.282702,-0.003958,0.003500,0.249976,0,0);-ms-transform:matrix(0.282702,-0.003958,0.003500,0.249976,0,0);-webkit-transform:matrix(0.282702,-0.003958,0.003500,0.249976,0,0);}
.m92_c00257{transform:matrix(0.283186,-0.003681,0.003250,0.249979,0,0);-ms-transform:matrix(0.283186,-0.003681,0.003250,0.249979,0,0);-webkit-transform:matrix(0.283186,-0.003681,0.003250,0.249979,0,0);}
.m1a_c00257{transform:matrix(0.283308,-0.003116,0.002750,0.249985,0,0);-ms-transform:matrix(0.283308,-0.003116,0.002750,0.249985,0,0);-webkit-transform:matrix(0.283308,-0.003116,0.002750,0.249985,0,0);}
.m2e_c00257{transform:matrix(0.283716,-0.001419,0.001250,0.249997,0,0);-ms-transform:matrix(0.283716,-0.001419,0.001250,0.249997,0,0);-webkit-transform:matrix(0.283716,-0.001419,0.001250,0.249997,0,0);}
.m78_c00257{transform:matrix(0.283910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283910,0.000000,0.000000,0.250000,0,0);}
.mce_c00257{transform:matrix(0.283970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283970,0.000000,0.000000,0.250000,0,0);}
.m29_c00257{transform:matrix(0.284346,-0.001422,0.001250,0.249997,0,0);-ms-transform:matrix(0.284346,-0.001422,0.001250,0.249997,0,0);-webkit-transform:matrix(0.284346,-0.001422,0.001250,0.249997,0,0);}
.m5d_c00257{transform:matrix(0.285254,-0.003423,0.003000,0.249982,0,0);-ms-transform:matrix(0.285254,-0.003423,0.003000,0.249982,0,0);-webkit-transform:matrix(0.285254,-0.003423,0.003000,0.249982,0,0);}
.m70_c00257{transform:matrix(0.286810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286810,0.000000,0.000000,0.250000,0,0);}
.m3f_c00257{transform:matrix(0.288633,-0.004618,0.003999,0.249968,0,0);-ms-transform:matrix(0.288633,-0.004618,0.003999,0.249968,0,0);-webkit-transform:matrix(0.288633,-0.004618,0.003999,0.249968,0,0);}
.ma5_c00257{transform:matrix(0.288836,-0.003755,0.003250,0.249979,0,0);-ms-transform:matrix(0.288836,-0.003755,0.003250,0.249979,0,0);-webkit-transform:matrix(0.288836,-0.003755,0.003250,0.249979,0,0);}
.m2a_c00257{transform:matrix(0.289196,-0.001446,0.001250,0.249997,0,0);-ms-transform:matrix(0.289196,-0.001446,0.001250,0.249997,0,0);-webkit-transform:matrix(0.289196,-0.001446,0.001250,0.249997,0,0);}
.mcf_c00257{transform:matrix(0.290080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290080,0.000000,0.000000,0.250000,0,0);}
.m10a_c00257{transform:matrix(0.290870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290870,0.000000,0.000000,0.250000,0,0);}
.maa_c00257{transform:matrix(0.291960,-0.003795,0.003250,0.249979,0,0);-ms-transform:matrix(0.291960,-0.003795,0.003250,0.249979,0,0);-webkit-transform:matrix(0.291960,-0.003795,0.003250,0.249979,0,0);}
.m8_c00257{transform:matrix(0.293032,-0.003223,0.002750,0.249985,0,0);-ms-transform:matrix(0.293032,-0.003223,0.002750,0.249985,0,0);-webkit-transform:matrix(0.293032,-0.003223,0.002750,0.249985,0,0);}
.mfc_c00257{transform:matrix(0.293175,-0.002932,0.002500,0.249988,0,0);-ms-transform:matrix(0.293175,-0.002932,0.002500,0.249988,0,0);-webkit-transform:matrix(0.293175,-0.002932,0.002500,0.249988,0,0);}
.mdc_c00257{transform:matrix(0.294511,-0.002356,0.002000,0.249992,0,0);-ms-transform:matrix(0.294511,-0.002356,0.002000,0.249992,0,0);-webkit-transform:matrix(0.294511,-0.002356,0.002000,0.249992,0,0);}
.m61_c00257{transform:matrix(0.295199,-0.003542,0.003000,0.249982,0,0);-ms-transform:matrix(0.295199,-0.003542,0.003000,0.249982,0,0);-webkit-transform:matrix(0.295199,-0.003542,0.003000,0.249982,0,0);}
.m43_c00257{transform:matrix(0.295913,-0.009173,0.007746,0.249880,0,0);-ms-transform:matrix(0.295913,-0.009173,0.007746,0.249880,0,0);-webkit-transform:matrix(0.295913,-0.009173,0.007746,0.249880,0,0);}
.mab_c00257{transform:matrix(0.298180,-0.003876,0.003250,0.249979,0,0);-ms-transform:matrix(0.298180,-0.003876,0.003250,0.249979,0,0);-webkit-transform:matrix(0.298180,-0.003876,0.003250,0.249979,0,0);}
.me0_c00257{transform:matrix(0.298340,-0.002387,0.002000,0.249992,0,0);-ms-transform:matrix(0.298340,-0.002387,0.002000,0.249992,0,0);-webkit-transform:matrix(0.298340,-0.002387,0.002000,0.249992,0,0);}
.m54_c00257{transform:matrix(0.298361,-0.004177,0.003500,0.249976,0,0);-ms-transform:matrix(0.298361,-0.004177,0.003500,0.249976,0,0);-webkit-transform:matrix(0.298361,-0.004177,0.003500,0.249976,0,0);}
.md_c00257{transform:matrix(0.299487,-0.003294,0.002750,0.249985,0,0);-ms-transform:matrix(0.299487,-0.003294,0.002750,0.249985,0,0);-webkit-transform:matrix(0.299487,-0.003294,0.002750,0.249985,0,0);}
.m48_c00257{transform:matrix(0.301825,-0.004226,0.003500,0.249976,0,0);-ms-transform:matrix(0.301825,-0.004226,0.003500,0.249976,0,0);-webkit-transform:matrix(0.301825,-0.004226,0.003500,0.249976,0,0);}
.mb3_c00257{transform:matrix(0.303384,-0.003944,0.003250,0.249979,0,0);-ms-transform:matrix(0.303384,-0.003944,0.003250,0.249979,0,0);-webkit-transform:matrix(0.303384,-0.003944,0.003250,0.249979,0,0);}
.m6c_c00257{transform:matrix(0.305945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305945,0.000000,0.000000,0.250000,0,0);}
.m73_c00257{transform:matrix(0.308070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308070,0.000000,0.000000,0.250000,0,0);}
.mf7_c00257{transform:matrix(0.308745,-0.003087,0.002500,0.249988,0,0);-ms-transform:matrix(0.308745,-0.003087,0.002500,0.249988,0,0);-webkit-transform:matrix(0.308745,-0.003087,0.002500,0.249988,0,0);}
.m77_c00257{transform:matrix(0.309770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309770,0.000000,0.000000,0.250000,0,0);}
.m7_c00257{transform:matrix(0.310486,-0.003415,0.002750,0.249985,0,0);-ms-transform:matrix(0.310486,-0.003415,0.002750,0.249985,0,0);-webkit-transform:matrix(0.310486,-0.003415,0.002750,0.249985,0,0);}
.maf_c00257{transform:matrix(0.310519,-0.004037,0.003250,0.249979,0,0);-ms-transform:matrix(0.310519,-0.004037,0.003250,0.249979,0,0);-webkit-transform:matrix(0.310519,-0.004037,0.003250,0.249979,0,0);}
.m31_c00257{transform:matrix(0.310536,-0.001553,0.001250,0.249997,0,0);-ms-transform:matrix(0.310536,-0.001553,0.001250,0.249997,0,0);-webkit-transform:matrix(0.310536,-0.001553,0.001250,0.249997,0,0);}
.m57_c00257{transform:matrix(0.312514,-0.004375,0.003500,0.249976,0,0);-ms-transform:matrix(0.312514,-0.004375,0.003500,0.249976,0,0);-webkit-transform:matrix(0.312514,-0.004375,0.003500,0.249976,0,0);}
.m93_c00257{transform:matrix(0.313264,-0.004072,0.003250,0.249979,0,0);-ms-transform:matrix(0.313264,-0.004072,0.003250,0.249979,0,0);-webkit-transform:matrix(0.313264,-0.004072,0.003250,0.249979,0,0);}
.m8b_c00257{transform:matrix(0.313978,-0.004082,0.003250,0.249979,0,0);-ms-transform:matrix(0.313978,-0.004082,0.003250,0.249979,0,0);-webkit-transform:matrix(0.313978,-0.004082,0.003250,0.249979,0,0);}
.m35_c00257{transform:matrix(0.314081,-0.001570,0.001250,0.249997,0,0);-ms-transform:matrix(0.314081,-0.001570,0.001250,0.249997,0,0);-webkit-transform:matrix(0.314081,-0.001570,0.001250,0.249997,0,0);}
.mdd_c00257{transform:matrix(0.315275,-0.002522,0.002000,0.249992,0,0);-ms-transform:matrix(0.315275,-0.002522,0.002000,0.249992,0,0);-webkit-transform:matrix(0.315275,-0.002522,0.002000,0.249992,0,0);}
.mb2_c00257{transform:matrix(0.315288,-0.004099,0.003250,0.249979,0,0);-ms-transform:matrix(0.315288,-0.004099,0.003250,0.249979,0,0);-webkit-transform:matrix(0.315288,-0.004099,0.003250,0.249979,0,0);}
.m7b_c00257{transform:matrix(0.318764,-0.005419,0.004249,0.249964,0,0);-ms-transform:matrix(0.318764,-0.005419,0.004249,0.249964,0,0);-webkit-transform:matrix(0.318764,-0.005419,0.004249,0.249964,0,0);}
.m102_c00257{transform:matrix(0.321649,-0.003216,0.002500,0.249988,0,0);-ms-transform:matrix(0.321649,-0.003216,0.002500,0.249988,0,0);-webkit-transform:matrix(0.321649,-0.003216,0.002500,0.249988,0,0);}
.m37_c00257{transform:matrix(0.322681,-0.001613,0.001250,0.249997,0,0);-ms-transform:matrix(0.322681,-0.001613,0.001250,0.249997,0,0);-webkit-transform:matrix(0.322681,-0.001613,0.001250,0.249997,0,0);}
.m83_c00257{transform:matrix(0.323128,-0.005493,0.004249,0.249964,0,0);-ms-transform:matrix(0.323128,-0.005493,0.004249,0.249964,0,0);-webkit-transform:matrix(0.323128,-0.005493,0.004249,0.249964,0,0);}
.ma4_c00257{transform:matrix(0.323798,-0.004209,0.003250,0.249979,0,0);-ms-transform:matrix(0.323798,-0.004209,0.003250,0.249979,0,0);-webkit-transform:matrix(0.323798,-0.004209,0.003250,0.249979,0,0);}
.m91_c00257{transform:matrix(0.324998,-0.004225,0.003250,0.249979,0,0);-ms-transform:matrix(0.324998,-0.004225,0.003250,0.249979,0,0);-webkit-transform:matrix(0.324998,-0.004225,0.003250,0.249979,0,0);}
.m42_c00257{transform:matrix(0.325174,-0.010080,0.007746,0.249880,0,0);-ms-transform:matrix(0.325174,-0.010080,0.007746,0.249880,0,0);-webkit-transform:matrix(0.325174,-0.010080,0.007746,0.249880,0,0);}
.m60_c00257{transform:matrix(0.325552,-0.003907,0.003000,0.249982,0,0);-ms-transform:matrix(0.325552,-0.003907,0.003000,0.249982,0,0);-webkit-transform:matrix(0.325552,-0.003907,0.003000,0.249982,0,0);}
.m88_c00257{transform:matrix(0.326172,-0.004240,0.003250,0.249979,0,0);-ms-transform:matrix(0.326172,-0.004240,0.003250,0.249979,0,0);-webkit-transform:matrix(0.326172,-0.004240,0.003250,0.249979,0,0);}
.m8f_c00257{transform:matrix(0.326592,-0.004246,0.003250,0.249979,0,0);-ms-transform:matrix(0.326592,-0.004246,0.003250,0.249979,0,0);-webkit-transform:matrix(0.326592,-0.004246,0.003250,0.249979,0,0);}
.mb9_c00257{transform:matrix(0.327247,-0.004254,0.003250,0.249979,0,0);-ms-transform:matrix(0.327247,-0.004254,0.003250,0.249979,0,0);-webkit-transform:matrix(0.327247,-0.004254,0.003250,0.249979,0,0);}
.mea_c00257{transform:matrix(0.330204,-0.002642,0.002000,0.249992,0,0);-ms-transform:matrix(0.330204,-0.002642,0.002000,0.249992,0,0);-webkit-transform:matrix(0.330204,-0.002642,0.002000,0.249992,0,0);}
.m32_c00257{transform:matrix(0.330446,-0.001652,0.001250,0.249997,0,0);-ms-transform:matrix(0.330446,-0.001652,0.001250,0.249997,0,0);-webkit-transform:matrix(0.330446,-0.001652,0.001250,0.249997,0,0);}
.m9c_c00257{transform:matrix(0.331012,-0.004303,0.003250,0.249979,0,0);-ms-transform:matrix(0.331012,-0.004303,0.003250,0.249979,0,0);-webkit-transform:matrix(0.331012,-0.004303,0.003250,0.249979,0,0);}
.md5_c00257{transform:matrix(0.333605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333605,0.000000,0.000000,0.250000,0,0);}
.mb6_c00257{transform:matrix(0.336662,-0.004377,0.003250,0.249979,0,0);-ms-transform:matrix(0.336662,-0.004377,0.003250,0.249979,0,0);-webkit-transform:matrix(0.336662,-0.004377,0.003250,0.249979,0,0);}
.mc0_c00257{transform:matrix(0.336787,-0.004378,0.003250,0.249979,0,0);-ms-transform:matrix(0.336787,-0.004378,0.003250,0.249979,0,0);-webkit-transform:matrix(0.336787,-0.004378,0.003250,0.249979,0,0);}
.m104_c00257{transform:matrix(0.339623,-0.003396,0.002500,0.249988,0,0);-ms-transform:matrix(0.339623,-0.003396,0.002500,0.249988,0,0);-webkit-transform:matrix(0.339623,-0.003396,0.002500,0.249988,0,0);}
.m74_c00257{transform:matrix(0.339955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339955,0.000000,0.000000,0.250000,0,0);}
.mf_c00257{transform:matrix(0.340869,-0.003750,0.002750,0.249985,0,0);-ms-transform:matrix(0.340869,-0.003750,0.002750,0.249985,0,0);-webkit-transform:matrix(0.340869,-0.003750,0.002750,0.249985,0,0);}
.m8c_c00257{transform:matrix(0.344906,-0.004484,0.003250,0.249979,0,0);-ms-transform:matrix(0.344906,-0.004484,0.003250,0.249979,0,0);-webkit-transform:matrix(0.344906,-0.004484,0.003250,0.249979,0,0);}
.ma2_c00257{transform:matrix(0.345186,-0.004487,0.003250,0.249979,0,0);-ms-transform:matrix(0.345186,-0.004487,0.003250,0.249979,0,0);-webkit-transform:matrix(0.345186,-0.004487,0.003250,0.249979,0,0);}
.mb7_c00257{transform:matrix(0.347496,-0.004517,0.003250,0.249979,0,0);-ms-transform:matrix(0.347496,-0.004517,0.003250,0.249979,0,0);-webkit-transform:matrix(0.347496,-0.004517,0.003250,0.249979,0,0);}
.m4_c00257{transform:matrix(0.350944,-0.003860,0.002750,0.249985,0,0);-ms-transform:matrix(0.350944,-0.003860,0.002750,0.249985,0,0);-webkit-transform:matrix(0.350944,-0.003860,0.002750,0.249985,0,0);}
.ma9_c00257{transform:matrix(0.352215,-0.004579,0.003250,0.249979,0,0);-ms-transform:matrix(0.352215,-0.004579,0.003250,0.249979,0,0);-webkit-transform:matrix(0.352215,-0.004579,0.003250,0.249979,0,0);}
.m4e_c00257{transform:matrix(0.355970,-0.004984,0.003500,0.249976,0,0);-ms-transform:matrix(0.355970,-0.004984,0.003500,0.249976,0,0);-webkit-transform:matrix(0.355970,-0.004984,0.003500,0.249976,0,0);}
.m15_c00257{transform:matrix(0.358598,-0.003945,0.002750,0.249985,0,0);-ms-transform:matrix(0.358598,-0.003945,0.002750,0.249985,0,0);-webkit-transform:matrix(0.358598,-0.003945,0.002750,0.249985,0,0);}
.m62_c00257{transform:matrix(0.362934,-0.004355,0.003000,0.249982,0,0);-ms-transform:matrix(0.362934,-0.004355,0.003000,0.249982,0,0);-webkit-transform:matrix(0.362934,-0.004355,0.003000,0.249982,0,0);}
.m97_c00257{transform:matrix(0.369889,-0.004809,0.003250,0.249979,0,0);-ms-transform:matrix(0.369889,-0.004809,0.003250,0.249979,0,0);-webkit-transform:matrix(0.369889,-0.004809,0.003250,0.249979,0,0);}
.mfa_c00257{transform:matrix(0.371631,-0.003716,0.002500,0.249988,0,0);-ms-transform:matrix(0.371631,-0.003716,0.002500,0.249988,0,0);-webkit-transform:matrix(0.371631,-0.003716,0.002500,0.249988,0,0);}
.m10d_c00257{transform:matrix(0.373610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373610,0.000000,0.000000,0.250000,0,0);}
.m27_c00257{transform:matrix(0.378800,-0.001894,0.001250,0.249997,0,0);-ms-transform:matrix(0.378800,-0.001894,0.001250,0.249997,0,0);-webkit-transform:matrix(0.378800,-0.001894,0.001250,0.249997,0,0);}
.m13_c00257{transform:matrix(0.379027,-0.004169,0.002750,0.249985,0,0);-ms-transform:matrix(0.379027,-0.004169,0.002750,0.249985,0,0);-webkit-transform:matrix(0.379027,-0.004169,0.002750,0.249985,0,0);}
.m6a_c00257{transform:matrix(0.381135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381135,0.000000,0.000000,0.250000,0,0);}
.m22_c00257{transform:matrix(0.384025,-0.001920,0.001250,0.249997,0,0);-ms-transform:matrix(0.384025,-0.001920,0.001250,0.249997,0,0);-webkit-transform:matrix(0.384025,-0.001920,0.001250,0.249997,0,0);}
.mfd_c00257{transform:matrix(0.386256,-0.003863,0.002500,0.249988,0,0);-ms-transform:matrix(0.386256,-0.003863,0.002500,0.249988,0,0);-webkit-transform:matrix(0.386256,-0.003863,0.002500,0.249988,0,0);}
.ma3_c00257{transform:matrix(0.386532,-0.005025,0.003250,0.249979,0,0);-ms-transform:matrix(0.386532,-0.005025,0.003250,0.249979,0,0);-webkit-transform:matrix(0.386532,-0.005025,0.003250,0.249979,0,0);}
.m39_c00257{transform:matrix(0.388560,-0.001943,0.001250,0.249997,0,0);-ms-transform:matrix(0.388560,-0.001943,0.001250,0.249997,0,0);-webkit-transform:matrix(0.388560,-0.001943,0.001250,0.249997,0,0);}
.m66_c00257{transform:matrix(0.388625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388625,0.000000,0.000000,0.250000,0,0);}
.mb0_c00257{transform:matrix(0.390002,-0.005070,0.003250,0.249979,0,0);-ms-transform:matrix(0.390002,-0.005070,0.003250,0.249979,0,0);-webkit-transform:matrix(0.390002,-0.005070,0.003250,0.249979,0,0);}
.m14_c00257{transform:matrix(0.392421,-0.004317,0.002750,0.249985,0,0);-ms-transform:matrix(0.392421,-0.004317,0.002750,0.249985,0,0);-webkit-transform:matrix(0.392421,-0.004317,0.002750,0.249985,0,0);}
.mfb_c00257{transform:matrix(0.392680,-0.003927,0.002500,0.249988,0,0);-ms-transform:matrix(0.392680,-0.003927,0.002500,0.249988,0,0);-webkit-transform:matrix(0.392680,-0.003927,0.002500,0.249988,0,0);}
.m10b_c00257{transform:matrix(0.393080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393080,0.000000,0.000000,0.250000,0,0);}
.mc8_c00257{transform:matrix(0.394373,-0.011831,0.007497,0.249888,0,0);-ms-transform:matrix(0.394373,-0.011831,0.007497,0.249888,0,0);-webkit-transform:matrix(0.394373,-0.011831,0.007497,0.249888,0,0);}
.m4c_c00257{transform:matrix(0.395971,-0.005544,0.003500,0.249976,0,0);-ms-transform:matrix(0.395971,-0.005544,0.003500,0.249976,0,0);-webkit-transform:matrix(0.395971,-0.005544,0.003500,0.249976,0,0);}
.m72_c00257{transform:matrix(0.398225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398225,0.000000,0.000000,0.250000,0,0);}
.m40_c00257{transform:matrix(0.399679,-0.006395,0.003999,0.249968,0,0);-ms-transform:matrix(0.399679,-0.006395,0.003999,0.249968,0,0);-webkit-transform:matrix(0.399679,-0.006395,0.003999,0.249968,0,0);}
.mbc_c00257{transform:matrix(0.402806,-0.005236,0.003250,0.249979,0,0);-ms-transform:matrix(0.402806,-0.005236,0.003250,0.249979,0,0);-webkit-transform:matrix(0.402806,-0.005236,0.003250,0.249979,0,0);}
.m59_c00257{transform:matrix(0.404775,-0.005667,0.003500,0.249976,0,0);-ms-transform:matrix(0.404775,-0.005667,0.003500,0.249976,0,0);-webkit-transform:matrix(0.404775,-0.005667,0.003500,0.249976,0,0);}
.md7_c00257{transform:matrix(0.405337,-0.003243,0.002000,0.249992,0,0);-ms-transform:matrix(0.405337,-0.003243,0.002000,0.249992,0,0);-webkit-transform:matrix(0.405337,-0.003243,0.002000,0.249992,0,0);}
.mda_c00257{transform:matrix(0.406042,-0.003248,0.002000,0.249992,0,0);-ms-transform:matrix(0.406042,-0.003248,0.002000,0.249992,0,0);-webkit-transform:matrix(0.406042,-0.003248,0.002000,0.249992,0,0);}
.mb1_c00257{transform:matrix(0.412040,-0.005357,0.003250,0.249979,0,0);-ms-transform:matrix(0.412040,-0.005357,0.003250,0.249979,0,0);-webkit-transform:matrix(0.412040,-0.005357,0.003250,0.249979,0,0);}
.me2_c00257{transform:matrix(0.422411,-0.003379,0.002000,0.249992,0,0);-ms-transform:matrix(0.422411,-0.003379,0.002000,0.249992,0,0);-webkit-transform:matrix(0.422411,-0.003379,0.002000,0.249992,0,0);}
.ma8_c00257{transform:matrix(0.423019,-0.005499,0.003250,0.249979,0,0);-ms-transform:matrix(0.423019,-0.005499,0.003250,0.249979,0,0);-webkit-transform:matrix(0.423019,-0.005499,0.003250,0.249979,0,0);}
.m7c_c00257{transform:matrix(0.424109,-0.007210,0.004249,0.249964,0,0);-ms-transform:matrix(0.424109,-0.007210,0.004249,0.249964,0,0);-webkit-transform:matrix(0.424109,-0.007210,0.004249,0.249964,0,0);}
.m34_c00257{transform:matrix(0.424655,-0.002123,0.001250,0.249997,0,0);-ms-transform:matrix(0.424655,-0.002123,0.001250,0.249997,0,0);-webkit-transform:matrix(0.424655,-0.002123,0.001250,0.249997,0,0);}
.m7f_c00257{transform:matrix(0.433692,-0.007373,0.004249,0.249964,0,0);-ms-transform:matrix(0.433692,-0.007373,0.004249,0.249964,0,0);-webkit-transform:matrix(0.433692,-0.007373,0.004249,0.249964,0,0);}
.m7e_c00257{transform:matrix(0.443111,-0.007533,0.004249,0.249964,0,0);-ms-transform:matrix(0.443111,-0.007533,0.004249,0.249964,0,0);-webkit-transform:matrix(0.443111,-0.007533,0.004249,0.249964,0,0);}
.m68_c00257{transform:matrix(0.443775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443775,0.000000,0.000000,0.250000,0,0);}
.mc3_c00257{transform:matrix(0.444600,-0.013338,0.007497,0.249888,0,0);-ms-transform:matrix(0.444600,-0.013338,0.007497,0.249888,0,0);-webkit-transform:matrix(0.444600,-0.013338,0.007497,0.249888,0,0);}
.m7d_c00257{transform:matrix(0.448190,-0.007619,0.004249,0.249964,0,0);-ms-transform:matrix(0.448190,-0.007619,0.004249,0.249964,0,0);-webkit-transform:matrix(0.448190,-0.007619,0.004249,0.249964,0,0);}
.m1_c00257{transform:matrix(0.458627,-0.005045,0.002750,0.249985,0,0);-ms-transform:matrix(0.458627,-0.005045,0.002750,0.249985,0,0);-webkit-transform:matrix(0.458627,-0.005045,0.002750,0.249985,0,0);}
.ma1_c00257{transform:matrix(0.461476,-0.005999,0.003250,0.249979,0,0);-ms-transform:matrix(0.461476,-0.005999,0.003250,0.249979,0,0);-webkit-transform:matrix(0.461476,-0.005999,0.003250,0.249979,0,0);}
.m84_c00257{transform:matrix(0.468532,-0.007965,0.004249,0.249964,0,0);-ms-transform:matrix(0.468532,-0.007965,0.004249,0.249964,0,0);-webkit-transform:matrix(0.468532,-0.007965,0.004249,0.249964,0,0);}
.mc9_c00257{transform:matrix(0.472542,-0.014176,0.007497,0.249888,0,0);-ms-transform:matrix(0.472542,-0.014176,0.007497,0.249888,0,0);-webkit-transform:matrix(0.472542,-0.014176,0.007497,0.249888,0,0);}
.mf8_c00257{transform:matrix(0.472611,-0.004726,0.002500,0.249988,0,0);-ms-transform:matrix(0.472611,-0.004726,0.002500,0.249988,0,0);-webkit-transform:matrix(0.472611,-0.004726,0.002500,0.249988,0,0);}
.mc_c00257{transform:matrix(0.488770,-0.005376,0.002750,0.249985,0,0);-ms-transform:matrix(0.488770,-0.005376,0.002750,0.249985,0,0);-webkit-transform:matrix(0.488770,-0.005376,0.002750,0.249985,0,0);}
.mf1_c00257{transform:matrix(0.491470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491470,0.000000,0.000000,0.250000,0,0);}
.m80_c00257{transform:matrix(0.494164,-0.008401,0.004249,0.249964,0,0);-ms-transform:matrix(0.494164,-0.008401,0.004249,0.249964,0,0);-webkit-transform:matrix(0.494164,-0.008401,0.004249,0.249964,0,0);}
.mf6_c00257{transform:matrix(0.496710,-0.004967,0.002500,0.249988,0,0);-ms-transform:matrix(0.496710,-0.004967,0.002500,0.249988,0,0);-webkit-transform:matrix(0.496710,-0.004967,0.002500,0.249988,0,0);}
.m21_c00257{transform:matrix(0.510274,-0.005613,0.002750,0.249985,0,0);-ms-transform:matrix(0.510274,-0.005613,0.002750,0.249985,0,0);-webkit-transform:matrix(0.510274,-0.005613,0.002750,0.249985,0,0);}
.m10c_c00257{transform:matrix(0.513080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513080,0.000000,0.000000,0.250000,0,0);}
.m49_c00257{transform:matrix(0.513420,-0.007188,0.003500,0.249976,0,0);-ms-transform:matrix(0.513420,-0.007188,0.003500,0.249976,0,0);-webkit-transform:matrix(0.513420,-0.007188,0.003500,0.249976,0,0);}
.m76_c00257{transform:matrix(0.531880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531880,0.000000,0.000000,0.250000,0,0);}
.mf5_c00257{transform:matrix(0.532428,-0.005324,0.002500,0.249988,0,0);-ms-transform:matrix(0.532428,-0.005324,0.002500,0.249988,0,0);-webkit-transform:matrix(0.532428,-0.005324,0.002500,0.249988,0,0);}
.m11_c00257{transform:matrix(0.555196,-0.006107,0.002750,0.249985,0,0);-ms-transform:matrix(0.555196,-0.006107,0.002750,0.249985,0,0);-webkit-transform:matrix(0.555196,-0.006107,0.002750,0.249985,0,0);}
.m79_c00257{transform:matrix(0.579535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579535,0.000000,0.000000,0.250000,0,0);}
.mb5_c00257{transform:matrix(0.604074,-0.007853,0.003250,0.249979,0,0);-ms-transform:matrix(0.604074,-0.007853,0.003250,0.249979,0,0);-webkit-transform:matrix(0.604074,-0.007853,0.003250,0.249979,0,0);}
.mbb_c00257{transform:matrix(0.608424,-0.007910,0.003250,0.249979,0,0);-ms-transform:matrix(0.608424,-0.007910,0.003250,0.249979,0,0);-webkit-transform:matrix(0.608424,-0.007910,0.003250,0.249979,0,0);}
.m4f_c00257{transform:matrix(0.615130,-0.008612,0.003500,0.249976,0,0);-ms-transform:matrix(0.615130,-0.008612,0.003500,0.249976,0,0);-webkit-transform:matrix(0.615130,-0.008612,0.003500,0.249976,0,0);}
.md6_c00257{transform:matrix(0.620580,-0.004965,0.002000,0.249992,0,0);-ms-transform:matrix(0.620580,-0.004965,0.002000,0.249992,0,0);-webkit-transform:matrix(0.620580,-0.004965,0.002000,0.249992,0,0);}
.me3_c00257{transform:matrix(0.634725,-0.005078,0.002000,0.249992,0,0);-ms-transform:matrix(0.634725,-0.005078,0.002000,0.249992,0,0);-webkit-transform:matrix(0.634725,-0.005078,0.002000,0.249992,0,0);}
.m9_c00257{transform:matrix(0.636526,-0.007002,0.002750,0.249985,0,0);-ms-transform:matrix(0.636526,-0.007002,0.002750,0.249985,0,0);-webkit-transform:matrix(0.636526,-0.007002,0.002750,0.249985,0,0);}
.m82_c00257{transform:matrix(0.666199,-0.011325,0.004249,0.249964,0,0);-ms-transform:matrix(0.666199,-0.011325,0.004249,0.249964,0,0);-webkit-transform:matrix(0.666199,-0.011325,0.004249,0.249964,0,0);}
.mf0_c00257{transform:matrix(0.673550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.673550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.673550,0.000000,0.000000,0.250000,0,0);}
.mef_c00257{transform:matrix(0.675000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.675000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.675000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00257{transform:matrix(0.684382,-0.008897,0.003250,0.249979,0,0);-ms-transform:matrix(0.684382,-0.008897,0.003250,0.249979,0,0);-webkit-transform:matrix(0.684382,-0.008897,0.003250,0.249979,0,0);}
.m75_c00257{transform:matrix(0.692290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.692290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.692290,0.000000,0.000000,0.250000,0,0);}
.meb_c00257{transform:matrix(0.693503,-0.005548,0.002000,0.249992,0,0);-ms-transform:matrix(0.693503,-0.005548,0.002000,0.249992,0,0);-webkit-transform:matrix(0.693503,-0.005548,0.002000,0.249992,0,0);}
.m71_c00257{transform:matrix(0.696710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.696710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.696710,0.000000,0.000000,0.250000,0,0);}
.mb_c00257{transform:matrix(0.700148,-0.007702,0.002750,0.249985,0,0);-ms-transform:matrix(0.700148,-0.007702,0.002750,0.249985,0,0);-webkit-transform:matrix(0.700148,-0.007702,0.002750,0.249985,0,0);}
.mc1_c00257{transform:matrix(0.703960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.703960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.703960,0.000000,0.000000,0.250000,0,0);}
.m23_c00257{transform:matrix(0.718886,-0.003594,0.001250,0.249997,0,0);-ms-transform:matrix(0.718886,-0.003594,0.001250,0.249997,0,0);-webkit-transform:matrix(0.718886,-0.003594,0.001250,0.249997,0,0);}
.m86_c00257{transform:matrix(0.728010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728010,0.000000,0.000000,0.250000,0,0);}
.med_c00257{transform:matrix(0.739095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.739095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.739095,0.000000,0.000000,0.250000,0,0);}
.mee_c00257{transform:matrix(0.739560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.739560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.739560,0.000000,0.000000,0.250000,0,0);}
.mfe_c00257{transform:matrix(0.752962,-0.007530,0.002500,0.249988,0,0);-ms-transform:matrix(0.752962,-0.007530,0.002500,0.249988,0,0);-webkit-transform:matrix(0.752962,-0.007530,0.002500,0.249988,0,0);}
.m12_c00257{transform:matrix(0.766514,-0.008432,0.002750,0.249985,0,0);-ms-transform:matrix(0.766514,-0.008432,0.002750,0.249985,0,0);-webkit-transform:matrix(0.766514,-0.008432,0.002750,0.249985,0,0);}
.m46_c00257{transform:matrix(0.776319,-0.010868,0.003500,0.249976,0,0);-ms-transform:matrix(0.776319,-0.010868,0.003500,0.249976,0,0);-webkit-transform:matrix(0.776319,-0.010868,0.003500,0.249976,0,0);}
.mec_c00257{transform:matrix(0.816885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.816885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.816885,0.000000,0.000000,0.250000,0,0);}
.mf9_c00257{transform:matrix(0.923819,-0.009238,0.002500,0.249988,0,0);-ms-transform:matrix(0.923819,-0.009238,0.002500,0.249988,0,0);-webkit-transform:matrix(0.923819,-0.009238,0.002500,0.249988,0,0);}
.me6_c00257{transform:matrix(1.003433,-0.008027,0.002000,0.249992,0,0);-ms-transform:matrix(1.003433,-0.008027,0.002000,0.249992,0,0);-webkit-transform:matrix(1.003433,-0.008027,0.002000,0.249992,0,0);}
.m50_c00257{transform:matrix(1.052952,-0.014741,0.003500,0.249976,0,0);-ms-transform:matrix(1.052952,-0.014741,0.003500,0.249976,0,0);-webkit-transform:matrix(1.052952,-0.014741,0.003500,0.249976,0,0);}
.mc2_c00257{transform:matrix(1.085220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.085220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.085220,0.000000,0.000000,0.250000,0,0);}
.m112_c00257{transform:matrix(1.179670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.179670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.179670,0.000000,0.000000,0.250000,0,0);}
.v1_c00257{vertical-align:-1.338043px;}
.v0_c00257{vertical-align:0.000000px;}
.ls0_c00257{letter-spacing:0.000000px;}
.sc__c00257{text-shadow:none;}
.sc0_c00257{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__c00257{-webkit-text-stroke:0px transparent;}
.sc0_c00257{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00257{word-spacing:0.000000px;}
._0_c00257{width:4196.751246px;}
.fc0_c00257{color:transparent;}
.fsf_c00257{font-size:18.000000px;}
.fs13_c00257{font-size:24.000000px;}
.fs1c_c00257{font-size:30.000000px;}
.fs19_c00257{font-size:48.000000px;}
.fs17_c00257{font-size:60.000000px;}
.fs4_c00257{font-size:66.000825px;}
.fsa_c00257{font-size:66.006468px;}
.fsd_c00257{font-size:72.000000px;}
.fs5_c00257{font-size:72.000900px;}
.fs1a_c00257{font-size:72.003600px;}
.fs1_c00257{font-size:72.004356px;}
.fsb_c00257{font-size:72.005184px;}
.fs12_c00257{font-size:72.006084px;}
.fs8_c00257{font-size:72.007056px;}
.fsc_c00257{font-size:78.000000px;}
.fs3_c00257{font-size:78.000975px;}
.fs18_c00257{font-size:78.002496px;}
.fs0_c00257{font-size:78.004719px;}
.fs6_c00257{font-size:78.009983px;}
.fse_c00257{font-size:78.011270px;}
.fs16_c00257{font-size:84.000000px;}
.fs11_c00257{font-size:84.007098px;}
.fs9_c00257{font-size:84.008232px;}
.fs1b_c00257{font-size:90.004500px;}
.fs10_c00257{font-size:90.007605px;}
.fs2_c00257{font-size:102.006171px;}
.fs14_c00257{font-size:102.045890px;}
.fs7_c00257{font-size:114.054764px;}
.fs15_c00257{font-size:126.056687px;}
.y0_c00257{bottom:0.000000px;}
.yfb_c00257{bottom:133.650000px;}
.yfa_c00257{bottom:143.910000px;}
.yf9_c00257{bottom:186.300000px;}
.yc2_c00257{bottom:255.417675px;}
.yc3_c00257{bottom:256.343160px;}
.yc4_c00257{bottom:258.423795px;}
.yc5_c00257{bottom:259.506885px;}
.yf7_c00257{bottom:260.280000px;}
.yc6_c00257{bottom:260.848170px;}
.yc7_c00257{bottom:262.596225px;}
.yc8_c00257{bottom:263.837955px;}
.ybe_c00257{bottom:288.930000px;}
.yf0_c00257{bottom:291.059880px;}
.yf1_c00257{bottom:291.411270px;}
.ybf_c00257{bottom:292.372230px;}
.yf2_c00257{bottom:293.268630px;}
.yf3_c00257{bottom:293.667960px;}
.yf4_c00257{bottom:294.114465px;}
.yc0_c00257{bottom:294.257235px;}
.yf5_c00257{bottom:295.060170px;}
.yc1_c00257{bottom:295.672395px;}
.yf6_c00257{bottom:316.710000px;}
.ye5_c00257{bottom:321.301500px;}
.ye6_c00257{bottom:321.531525px;}
.ye7_c00257{bottom:321.931935px;}
.ye8_c00257{bottom:322.686660px;}
.ye9_c00257{bottom:323.399700px;}
.yea_c00257{bottom:323.894400px;}
.yeb_c00257{bottom:324.801360px;}
.yec_c00257{bottom:325.125540px;}
.yed_c00257{bottom:325.433220px;}
.yee_c00257{bottom:326.324505px;}
.yef_c00257{bottom:326.754375px;}
.yf8_c00257{bottom:329.670000px;}
.yb0_c00257{bottom:356.604893px;}
.yb7_c00257{bottom:356.604941px;}
.yb6_c00257{bottom:356.605049px;}
.yb9_c00257{bottom:356.605274px;}
.yb8_c00257{bottom:356.605362px;}
.yba_c00257{bottom:356.605526px;}
.yb3_c00257{bottom:356.605565px;}
.yb1_c00257{bottom:356.605613px;}
.yb5_c00257{bottom:356.605638px;}
.yb2_c00257{bottom:356.605874px;}
.ybb_c00257{bottom:356.606187px;}
.yb4_c00257{bottom:356.606256px;}
.ybd_c00257{bottom:371.931000px;}
.ya7_c00257{bottom:385.011923px;}
.ya8_c00257{bottom:385.629546px;}
.ya9_c00257{bottom:386.525259px;}
.yaa_c00257{bottom:386.851884px;}
.yab_c00257{bottom:388.455369px;}
.yac_c00257{bottom:388.714271px;}
.yad_c00257{bottom:389.329476px;}
.ye4_c00257{bottom:389.794500px;}
.yae_c00257{bottom:390.157622px;}
.yaf_c00257{bottom:390.471981px;}
.y9a_c00257{bottom:416.993531px;}
.y9b_c00257{bottom:418.355447px;}
.y9c_c00257{bottom:418.906407px;}
.y9d_c00257{bottom:419.794667px;}
.y9e_c00257{bottom:420.358985px;}
.y9f_c00257{bottom:421.010651px;}
.ya0_c00257{bottom:421.632110px;}
.ya1_c00257{bottom:422.207583px;}
.ya2_c00257{bottom:422.216243px;}
.ya3_c00257{bottom:422.489441px;}
.ya4_c00257{bottom:423.180851px;}
.ya5_c00257{bottom:423.750572px;}
.ya6_c00257{bottom:424.073753px;}
.y8f_c00257{bottom:447.662301px;}
.y90_c00257{bottom:448.293126px;}
.y91_c00257{bottom:448.604716px;}
.y92_c00257{bottom:449.273430px;}
.y93_c00257{bottom:449.638626px;}
.y94_c00257{bottom:451.414452px;}
.y95_c00257{bottom:451.848737px;}
.y96_c00257{bottom:452.250066px;}
.y97_c00257{bottom:453.063860px;}
.y98_c00257{bottom:453.581936px;}
.y99_c00257{bottom:453.886818px;}
.ye3_c00257{bottom:454.408500px;}
.y82_c00257{bottom:480.063000px;}
.y83_c00257{bottom:480.202932px;}
.y84_c00257{bottom:481.207260px;}
.y85_c00257{bottom:481.679979px;}
.y86_c00257{bottom:481.725980px;}
.y87_c00257{bottom:482.778668px;}
.y88_c00257{bottom:483.170247px;}
.y89_c00257{bottom:483.465068px;}
.ybc_c00257{bottom:483.570000px;}
.y8a_c00257{bottom:484.220712px;}
.y8b_c00257{bottom:485.507907px;}
.y8c_c00257{bottom:485.958201px;}
.y8d_c00257{bottom:487.178570px;}
.y8e_c00257{bottom:488.445290px;}
.ye2_c00257{bottom:495.325500px;}
.y81_c00257{bottom:498.487500px;}
.yd8_c00257{bottom:519.238260px;}
.yd9_c00257{bottom:519.238908px;}
.yda_c00257{bottom:519.239472px;}
.ydb_c00257{bottom:519.240168px;}
.ydc_c00257{bottom:519.240876px;}
.ydd_c00257{bottom:519.241152px;}
.ye0_c00257{bottom:519.241596px;}
.yde_c00257{bottom:519.241740px;}
.ydf_c00257{bottom:519.242028px;}
.ye1_c00257{bottom:519.242244px;}
.ycc_c00257{bottom:543.157500px;}
.ycd_c00257{bottom:543.818700px;}
.yce_c00257{bottom:544.504032px;}
.ycf_c00257{bottom:544.841796px;}
.yd0_c00257{bottom:545.362632px;}
.yd1_c00257{bottom:545.913312px;}
.yd2_c00257{bottom:546.295116px;}
.yd3_c00257{bottom:546.569388px;}
.yd4_c00257{bottom:547.052952px;}
.yd5_c00257{bottom:547.340580px;}
.yd6_c00257{bottom:548.295096px;}
.yd7_c00257{bottom:548.742132px;}
.ycb_c00257{bottom:582.660000px;}
.y76_c00257{bottom:604.929000px;}
.y77_c00257{bottom:606.308371px;}
.y78_c00257{bottom:606.743121px;}
.y79_c00257{bottom:607.895440px;}
.y7a_c00257{bottom:608.611914px;}
.y7b_c00257{bottom:609.985369px;}
.y7c_c00257{bottom:610.727598px;}
.y7d_c00257{bottom:611.444632px;}
.y7e_c00257{bottom:613.334590px;}
.yca_c00257{bottom:613.441500px;}
.y7f_c00257{bottom:614.432467px;}
.y80_c00257{bottom:615.413886px;}
.y6c_c00257{bottom:637.206000px;}
.y6d_c00257{bottom:638.437500px;}
.y6e_c00257{bottom:638.886000px;}
.y6f_c00257{bottom:639.493500px;}
.y70_c00257{bottom:640.333500px;}
.y71_c00257{bottom:641.917500px;}
.y72_c00257{bottom:643.063500px;}
.y73_c00257{bottom:643.524000px;}
.y74_c00257{bottom:644.782500px;}
.y75_c00257{bottom:645.397500px;}
.y65_c00257{bottom:668.787000px;}
.y66_c00257{bottom:669.354000px;}
.y67_c00257{bottom:670.839000px;}
.y68_c00257{bottom:672.832500px;}
.y69_c00257{bottom:673.455000px;}
.y6a_c00257{bottom:673.797000px;}
.y6b_c00257{bottom:675.379500px;}
.y63_c00257{bottom:676.605000px;}
.y64_c00257{bottom:702.081000px;}
.y59_c00257{bottom:703.794000px;}
.y5a_c00257{bottom:704.811450px;}
.y5b_c00257{bottom:705.193824px;}
.y5c_c00257{bottom:705.590274px;}
.y5d_c00257{bottom:705.916758px;}
.y5e_c00257{bottom:706.775016px;}
.y5f_c00257{bottom:707.173266px;}
.y60_c00257{bottom:708.139722px;}
.y61_c00257{bottom:708.485790px;}
.y62_c00257{bottom:709.519152px;}
.y50_c00257{bottom:734.472630px;}
.y51_c00257{bottom:734.673426px;}
.y52_c00257{bottom:735.795438px;}
.y53_c00257{bottom:736.228722px;}
.y54_c00257{bottom:737.383338px;}
.y55_c00257{bottom:737.969745px;}
.y56_c00257{bottom:738.640956px;}
.y57_c00257{bottom:739.497486px;}
.y58_c00257{bottom:740.070525px;}
.y4c_c00257{bottom:764.369910px;}
.y3a_c00257{bottom:765.565500px;}
.y3b_c00257{bottom:767.666652px;}
.y3c_c00257{bottom:768.430188px;}
.y4d_c00257{bottom:769.673226px;}
.y3d_c00257{bottom:769.779348px;}
.y4e_c00257{bottom:770.018886px;}
.y3e_c00257{bottom:770.458044px;}
.y4f_c00257{bottom:771.107718px;}
.y3f_c00257{bottom:771.519900px;}
.y40_c00257{bottom:772.220388px;}
.y45_c00257{bottom:796.503000px;}
.y46_c00257{bottom:797.263662px;}
.y47_c00257{bottom:798.126216px;}
.y48_c00257{bottom:799.417737px;}
.y36_c00257{bottom:803.222325px;}
.y39_c00257{bottom:803.222618px;}
.y35_c00257{bottom:803.222625px;}
.y37_c00257{bottom:803.223075px;}
.y38_c00257{bottom:803.223218px;}
.y49_c00257{bottom:804.893739px;}
.y4a_c00257{bottom:805.423632px;}
.y4b_c00257{bottom:805.856001px;}
.y41_c00257{bottom:826.485000px;}
.y42_c00257{bottom:828.703236px;}
.y43_c00257{bottom:831.147136px;}
.y44_c00257{bottom:832.099643px;}
.y2e_c00257{bottom:835.129793px;}
.y2f_c00257{bottom:835.130535px;}
.y30_c00257{bottom:835.130678px;}
.y32_c00257{bottom:835.131120px;}
.y31_c00257{bottom:835.131270px;}
.y34_c00257{bottom:835.131413px;}
.y33_c00257{bottom:835.132013px;}
.yc9_c00257{bottom:835.722000px;}
.y23_c00257{bottom:862.920000px;}
.y24_c00257{bottom:863.126558px;}
.y25_c00257{bottom:863.563740px;}
.y26_c00257{bottom:863.910705px;}
.y27_c00257{bottom:864.468285px;}
.y28_c00257{bottom:864.534593px;}
.y29_c00257{bottom:864.789698px;}
.y2a_c00257{bottom:865.206915px;}
.y2b_c00257{bottom:865.761840px;}
.y2c_c00257{bottom:865.944098px;}
.y2d_c00257{bottom:866.398845px;}
.y1a_c00257{bottom:893.697502px;}
.y1b_c00257{bottom:894.226492px;}
.y1c_c00257{bottom:894.613167px;}
.y1d_c00257{bottom:895.857849px;}
.y1e_c00257{bottom:896.499131px;}
.y1f_c00257{bottom:896.700291px;}
.y20_c00257{bottom:897.215002px;}
.y21_c00257{bottom:897.435839px;}
.y22_c00257{bottom:897.833422px;}
.y11_c00257{bottom:927.570786px;}
.y19_c00257{bottom:927.570789px;}
.y12_c00257{bottom:927.570826px;}
.y13_c00257{bottom:927.571107px;}
.y16_c00257{bottom:927.571158px;}
.y17_c00257{bottom:927.571228px;}
.y18_c00257{bottom:927.571346px;}
.y14_c00257{bottom:927.571374px;}
.y10_c00257{bottom:927.571442px;}
.y15_c00257{bottom:927.571865px;}
.yf_c00257{bottom:927.571925px;}
.y1_c00257{bottom:953.299500px;}
.y2_c00257{bottom:953.302569px;}
.y3_c00257{bottom:954.054590px;}
.y4_c00257{bottom:954.404868px;}
.y5_c00257{bottom:954.989397px;}
.y6_c00257{bottom:956.086399px;}
.y7_c00257{bottom:957.060428px;}
.y8_c00257{bottom:957.525546px;}
.y9_c00257{bottom:958.466954px;}
.ya_c00257{bottom:958.936445px;}
.yb_c00257{bottom:959.343401px;}
.yc_c00257{bottom:959.719139px;}
.yd_c00257{bottom:960.323088px;}
.ye_c00257{bottom:960.951672px;}
.h11_c00257{height:18.000000px;}
.h15_c00257{height:24.000000px;}
.h1e_c00257{height:30.000000px;}
.h1b_c00257{height:48.000000px;}
.h19_c00257{height:60.000000px;}
.h6_c00257{height:66.000825px;}
.hc_c00257{height:66.006468px;}
.hf_c00257{height:72.000000px;}
.h7_c00257{height:72.000900px;}
.h1c_c00257{height:72.003600px;}
.h3_c00257{height:72.004356px;}
.hd_c00257{height:72.005184px;}
.h14_c00257{height:72.006084px;}
.ha_c00257{height:72.007056px;}
.he_c00257{height:78.000000px;}
.h5_c00257{height:78.000975px;}
.h1a_c00257{height:78.002496px;}
.h2_c00257{height:78.004719px;}
.h8_c00257{height:78.009983px;}
.h10_c00257{height:78.011270px;}
.h18_c00257{height:84.000000px;}
.h13_c00257{height:84.007098px;}
.hb_c00257{height:84.008232px;}
.h1d_c00257{height:90.004500px;}
.h12_c00257{height:90.007605px;}
.h4_c00257{height:102.006171px;}
.h16_c00257{height:102.045890px;}
.h9_c00257{height:114.054764px;}
.h17_c00257{height:126.056687px;}
.h0_c00257{height:1127.790000px;}
.h1_c00257{height:1128.000000px;}
.w0_c00257{width:915.000000px;}
.x0_c00257{left:0.000000px;}
.x1e_c00257{left:23.320500px;}
.xa2_c00257{left:24.856500px;}
.x5a_c00257{left:31.954500px;}
.x17_c00257{left:34.474203px;}
.x3f_c00257{left:36.418500px;}
.x66_c00257{left:38.298000px;}
.xab_c00257{left:40.768860px;}
.xd_c00257{left:44.551854px;}
.x45_c00257{left:46.185189px;}
.x6f_c00257{left:47.724000px;}
.x3b_c00257{left:52.038000px;}
.x29_c00257{left:55.618755px;}
.x79_c00257{left:57.323760px;}
.x70_c00257{left:58.488000px;}
.x1f_c00257{left:64.632000px;}
.x5b_c00257{left:67.404000px;}
.x1_c00257{left:68.731500px;}
.x88_c00257{left:70.495803px;}
.x8c_c00257{left:71.555211px;}
.x58_c00257{left:78.030000px;}
.x36_c00257{left:81.897000px;}
.x40_c00257{left:90.751500px;}
.x80_c00257{left:91.899729px;}
.x2_c00257{left:100.575000px;}
.x7a_c00257{left:105.848760px;}
.xa3_c00257{left:107.506500px;}
.x5f_c00257{left:110.779500px;}
.x8d_c00257{left:112.599134px;}
.x89_c00257{left:118.005303px;}
.x67_c00257{left:119.437500px;}
.x48_c00257{left:120.598251px;}
.x3c_c00257{left:123.594000px;}
.xb5_c00257{left:127.356000px;}
.x7b_c00257{left:129.817260px;}
.x59_c00257{left:134.730000px;}
.x49_c00257{left:136.012461px;}
.x60_c00257{left:142.851000px;}
.x68_c00257{left:145.011000px;}
.x18_c00257{left:148.947482px;}
.xb6_c00257{left:150.358500px;}
.x20_c00257{left:152.068500px;}
.x3_c00257{left:153.714000px;}
.x5c_c00257{left:160.177500px;}
.x71_c00257{left:172.107000px;}
.x72_c00257{left:175.645500px;}
.x7c_c00257{left:181.256760px;}
.x61_c00257{left:186.244500px;}
.xb7_c00257{left:190.399500px;}
.x8e_c00257{left:193.065225px;}
.xbd_c00257{left:195.338670px;}
.x3d_c00257{left:202.429500px;}
.x81_c00257{left:205.433211px;}
.x7d_c00257{left:209.348760px;}
.xe_c00257{left:211.421550px;}
.x37_c00257{left:213.219000px;}
.xac_c00257{left:219.244272px;}
.x21_c00257{left:221.461500px;}
.x3e_c00257{left:233.155500px;}
.xa4_c00257{left:235.393500px;}
.x4f_c00257{left:238.332000px;}
.x41_c00257{left:244.614000px;}
.x62_c00257{left:246.252000px;}
.x96_c00257{left:250.075560px;}
.x82_c00257{left:251.392315px;}
.x4_c00257{left:253.441500px;}
.x4a_c00257{left:255.678141px;}
.x8f_c00257{left:259.490457px;}
.x38_c00257{left:260.940000px;}
.xb8_c00257{left:265.872000px;}
.x2a_c00257{left:278.101313px;}
.x5d_c00257{left:284.773500px;}
.x73_c00257{left:286.743000px;}
.xf_c00257{left:291.616752px;}
.xa5_c00257{left:300.498000px;}
.x19_c00257{left:304.514613px;}
.x74_c00257{left:309.421500px;}
.x95_c00257{left:316.624500px;}
.x30_c00257{left:322.651463px;}
.x83_c00257{left:325.374771px;}
.x22_c00257{left:332.977500px;}
.x69_c00257{left:335.731500px;}
.xb9_c00257{left:337.176000px;}
.x97_c00257{left:340.549050px;}
.x5_c00257{left:341.989500px;}
.x4b_c00257{left:344.473380px;}
.x23_c00257{left:346.239000px;}
.x90_c00257{left:351.298479px;}
.x50_c00257{left:354.984000px;}
.x10_c00257{left:356.150057px;}
.x63_c00257{left:359.404500px;}
.x2b_c00257{left:366.122010px;}
.x75_c00257{left:367.548000px;}
.x31_c00257{left:369.092625px;}
.x84_c00257{left:372.361376px;}
.x6a_c00257{left:379.392000px;}
.x6_c00257{left:384.273000px;}
.x32_c00257{left:386.643060px;}
.x39_c00257{left:387.681000px;}
.x4c_c00257{left:389.574510px;}
.x24_c00257{left:397.260000px;}
.x2c_c00257{left:398.792828px;}
.x8a_c00257{left:402.615303px;}
.x91_c00257{left:404.763008px;}
.x11_c00257{left:407.453261px;}
.x1a_c00257{left:409.740078px;}
.x51_c00257{left:415.228500px;}
.xa6_c00257{left:417.058500px;}
.x6b_c00257{left:421.570500px;}
.x85_c00257{left:426.644078px;}
.x2d_c00257{left:430.923630px;}
.x4d_c00257{left:441.161724px;}
.x5e_c00257{left:443.958000px;}
.x98_c00257{left:445.983690px;}
.xa7_c00257{left:451.342500px;}
.x3a_c00257{left:454.047000px;}
.x92_c00257{left:457.957497px;}
.x33_c00257{left:464.673510px;}
.x76_c00257{left:466.563000px;}
.x7_c00257{left:469.855500px;}
.x7e_c00257{left:472.828260px;}
.x1b_c00257{left:473.988690px;}
.xba_c00257{left:477.342000px;}
.x86_c00257{left:478.487760px;}
.x25_c00257{left:480.703500px;}
.x12_c00257{left:483.597968px;}
.x52_c00257{left:486.750000px;}
.x8b_c00257{left:490.500303px;}
.x34_c00257{left:495.454283px;}
.x2e_c00257{left:497.073780px;}
.x1c_c00257{left:501.565598px;}
.xb3_c00257{left:504.090000px;}
.x4e_c00257{left:507.057648px;}
.xbb_c00257{left:509.760000px;}
.x8_c00257{left:512.536500px;}
.x13_c00257{left:516.810494px;}
.x53_c00257{left:519.937500px;}
.x99_c00257{left:522.018165px;}
.x87_c00257{left:526.447884px;}
.x2f_c00257{left:527.854553px;}
.x6c_c00257{left:532.744500px;}
.x93_c00257{left:534.374406px;}
.x7f_c00257{left:536.132760px;}
.x35_c00257{left:538.655363px;}
.xbc_c00257{left:540.528000px;}
.xa8_c00257{left:547.741500px;}
.x9_c00257{left:549.532500px;}
.x1d_c00257{left:551.211231px;}
.x9b_c00257{left:554.580000px;}
.xad_c00257{left:556.486836px;}
.x46_c00257{left:559.740756px;}
.x64_c00257{left:564.004500px;}
.x9a_c00257{left:576.020505px;}
.x94_c00257{left:580.817745px;}
.xa_c00257{left:583.690500px;}
.x57_c00257{left:587.790000px;}
.x26_c00257{left:591.688500px;}
.x77_c00257{left:595.075500px;}
.x14_c00257{left:596.735663px;}
.xae_c00257{left:598.338012px;}
.x54_c00257{left:600.475500px;}
.x65_c00257{left:607.983000px;}
.x9f_c00257{left:609.390000px;}
.xb1_c00257{left:620.730000px;}
.x27_c00257{left:628.140000px;}
.x55_c00257{left:629.314500px;}
.x42_c00257{left:635.757000px;}
.xb_c00257{left:638.595000px;}
.xa0_c00257{left:642.060000px;}
.x15_c00257{left:649.389032px;}
.xbe_c00257{left:651.737820px;}
.x6d_c00257{left:655.056000px;}
.x47_c00257{left:658.732914px;}
.xa9_c00257{left:667.056000px;}
.x9c_c00257{left:670.140000px;}
.x43_c00257{left:673.606500px;}
.xa1_c00257{left:675.810000px;}
.x16_c00257{left:681.251393px;}
.xaf_c00257{left:683.120436px;}
.x9e_c00257{left:685.260000px;}
.xb4_c00257{left:690.660000px;}
.x78_c00257{left:692.515500px;}
.xc_c00257{left:695.739000px;}
.x6e_c00257{left:700.920000px;}
.x44_c00257{left:704.490000px;}
.xb2_c00257{left:713.340000px;}
.x56_c00257{left:715.428000px;}
.x9d_c00257{left:716.850000px;}
.x28_c00257{left:719.089500px;}
.xaa_c00257{left:722.935500px;}
.xb0_c00257{left:730.350000px;}
.xbf_c00257{left:792.990000px;}
.xc0_c00257{left:853.200000px;}
.xc1_c00257{left:855.360000px;}
.xc6_c00257{left:884.250000px;}
.xc2_c00257{left:885.600000px;}
.xc4_c00257{left:888.570000px;}
.xc3_c00257{left:889.650000px;}
.xc5_c00257{left:890.730000px;}
.xc7_c00257{left:891.810000px;}
@media print{
.v1_c00257{vertical-align:-1.189371pt;}
.v0_c00257{vertical-align:0.000000pt;}
.ls0_c00257{letter-spacing:0.000000pt;}
.ws0_c00257{word-spacing:0.000000pt;}
._0_c00257{width:3730.445552pt;}
.fsf_c00257{font-size:16.000000pt;}
.fs13_c00257{font-size:21.333333pt;}
.fs1c_c00257{font-size:26.666667pt;}
.fs19_c00257{font-size:42.666667pt;}
.fs17_c00257{font-size:53.333333pt;}
.fs4_c00257{font-size:58.667400pt;}
.fsa_c00257{font-size:58.672416pt;}
.fsd_c00257{font-size:64.000000pt;}
.fs5_c00257{font-size:64.000800pt;}
.fs1a_c00257{font-size:64.003200pt;}
.fs1_c00257{font-size:64.003872pt;}
.fsb_c00257{font-size:64.004608pt;}
.fs12_c00257{font-size:64.005408pt;}
.fs8_c00257{font-size:64.006272pt;}
.fsc_c00257{font-size:69.333333pt;}
.fs3_c00257{font-size:69.334200pt;}
.fs18_c00257{font-size:69.335552pt;}
.fs0_c00257{font-size:69.337528pt;}
.fs6_c00257{font-size:69.342207pt;}
.fse_c00257{font-size:69.343351pt;}
.fs16_c00257{font-size:74.666667pt;}
.fs11_c00257{font-size:74.672976pt;}
.fs9_c00257{font-size:74.673984pt;}
.fs1b_c00257{font-size:80.004000pt;}
.fs10_c00257{font-size:80.006760pt;}
.fs2_c00257{font-size:90.672152pt;}
.fs14_c00257{font-size:90.707457pt;}
.fs7_c00257{font-size:101.382012pt;}
.fs15_c00257{font-size:112.050389pt;}
.y0_c00257{bottom:0.000000pt;}
.yfb_c00257{bottom:118.800000pt;}
.yfa_c00257{bottom:127.920000pt;}
.yf9_c00257{bottom:165.600000pt;}
.yc2_c00257{bottom:227.037933pt;}
.yc3_c00257{bottom:227.860587pt;}
.yc4_c00257{bottom:229.710040pt;}
.yc5_c00257{bottom:230.672787pt;}
.yf7_c00257{bottom:231.360000pt;}
.yc6_c00257{bottom:231.865040pt;}
.yc7_c00257{bottom:233.418867pt;}
.yc8_c00257{bottom:234.522627pt;}
.ybe_c00257{bottom:256.826667pt;}
.yf0_c00257{bottom:258.719893pt;}
.yf1_c00257{bottom:259.032240pt;}
.ybf_c00257{bottom:259.886427pt;}
.yf2_c00257{bottom:260.683227pt;}
.yf3_c00257{bottom:261.038187pt;}
.yf4_c00257{bottom:261.435080pt;}
.yc0_c00257{bottom:261.561987pt;}
.yf5_c00257{bottom:262.275707pt;}
.yc1_c00257{bottom:262.819907pt;}
.yf6_c00257{bottom:281.520000pt;}
.ye5_c00257{bottom:285.601333pt;}
.ye6_c00257{bottom:285.805800pt;}
.ye7_c00257{bottom:286.161720pt;}
.ye8_c00257{bottom:286.832587pt;}
.ye9_c00257{bottom:287.466400pt;}
.yea_c00257{bottom:287.906133pt;}
.yeb_c00257{bottom:288.712320pt;}
.yec_c00257{bottom:289.000480pt;}
.yed_c00257{bottom:289.273973pt;}
.yee_c00257{bottom:290.066227pt;}
.yef_c00257{bottom:290.448333pt;}
.yf8_c00257{bottom:293.040000pt;}
.yb0_c00257{bottom:316.982127pt;}
.yb7_c00257{bottom:316.982169pt;}
.yb6_c00257{bottom:316.982265pt;}
.yb9_c00257{bottom:316.982465pt;}
.yb8_c00257{bottom:316.982544pt;}
.yba_c00257{bottom:316.982689pt;}
.yb3_c00257{bottom:316.982724pt;}
.yb1_c00257{bottom:316.982767pt;}
.yb5_c00257{bottom:316.982789pt;}
.yb2_c00257{bottom:316.982999pt;}
.ybb_c00257{bottom:316.983277pt;}
.yb4_c00257{bottom:316.983339pt;}
.ybd_c00257{bottom:330.605333pt;}
.ya7_c00257{bottom:342.232820pt;}
.ya8_c00257{bottom:342.781819pt;}
.ya9_c00257{bottom:343.578008pt;}
.yaa_c00257{bottom:343.868341pt;}
.yab_c00257{bottom:345.293661pt;}
.yac_c00257{bottom:345.523796pt;}
.yad_c00257{bottom:346.070645pt;}
.ye4_c00257{bottom:346.484000pt;}
.yae_c00257{bottom:346.806775pt;}
.yaf_c00257{bottom:347.086205pt;}
.y9a_c00257{bottom:370.660916pt;}
.y9b_c00257{bottom:371.871508pt;}
.y9c_c00257{bottom:372.361251pt;}
.y9d_c00257{bottom:373.150815pt;}
.y9e_c00257{bottom:373.652431pt;}
.y9f_c00257{bottom:374.231689pt;}
.ya0_c00257{bottom:374.784097pt;}
.ya1_c00257{bottom:375.295629pt;}
.ya2_c00257{bottom:375.303327pt;}
.ya3_c00257{bottom:375.546169pt;}
.ya4_c00257{bottom:376.160756pt;}
.ya5_c00257{bottom:376.667175pt;}
.ya6_c00257{bottom:376.954447pt;}
.y8f_c00257{bottom:397.922045pt;}
.y90_c00257{bottom:398.482779pt;}
.y91_c00257{bottom:398.759748pt;}
.y92_c00257{bottom:399.354160pt;}
.y93_c00257{bottom:399.678779pt;}
.y94_c00257{bottom:401.257291pt;}
.y95_c00257{bottom:401.643321pt;}
.y96_c00257{bottom:402.000059pt;}
.y97_c00257{bottom:402.723431pt;}
.y98_c00257{bottom:403.183943pt;}
.y99_c00257{bottom:403.454949pt;}
.ye3_c00257{bottom:403.918667pt;}
.y82_c00257{bottom:426.722667pt;}
.y83_c00257{bottom:426.847051pt;}
.y84_c00257{bottom:427.739787pt;}
.y85_c00257{bottom:428.159981pt;}
.y86_c00257{bottom:428.200871pt;}
.y87_c00257{bottom:429.136593pt;}
.y88_c00257{bottom:429.484664pt;}
.y89_c00257{bottom:429.746727pt;}
.ybc_c00257{bottom:429.840000pt;}
.y8a_c00257{bottom:430.418411pt;}
.y8b_c00257{bottom:431.562584pt;}
.y8c_c00257{bottom:431.962845pt;}
.y8d_c00257{bottom:433.047617pt;}
.y8e_c00257{bottom:434.173591pt;}
.ye2_c00257{bottom:440.289333pt;}
.y81_c00257{bottom:443.100000pt;}
.yd8_c00257{bottom:461.545120pt;}
.yd9_c00257{bottom:461.545696pt;}
.yda_c00257{bottom:461.546197pt;}
.ydb_c00257{bottom:461.546816pt;}
.ydc_c00257{bottom:461.547445pt;}
.ydd_c00257{bottom:461.547691pt;}
.ye0_c00257{bottom:461.548085pt;}
.yde_c00257{bottom:461.548213pt;}
.ydf_c00257{bottom:461.548469pt;}
.ye1_c00257{bottom:461.548661pt;}
.ycc_c00257{bottom:482.806667pt;}
.ycd_c00257{bottom:483.394400pt;}
.yce_c00257{bottom:484.003584pt;}
.ycf_c00257{bottom:484.303819pt;}
.yd0_c00257{bottom:484.766784pt;}
.yd1_c00257{bottom:485.256277pt;}
.yd2_c00257{bottom:485.595659pt;}
.yd3_c00257{bottom:485.839456pt;}
.yd4_c00257{bottom:486.269291pt;}
.yd5_c00257{bottom:486.524960pt;}
.yd6_c00257{bottom:487.373419pt;}
.yd7_c00257{bottom:487.770784pt;}
.ycb_c00257{bottom:517.920000pt;}
.y76_c00257{bottom:537.714667pt;}
.y77_c00257{bottom:538.940775pt;}
.y78_c00257{bottom:539.327219pt;}
.y79_c00257{bottom:540.351503pt;}
.y7a_c00257{bottom:540.988368pt;}
.y7b_c00257{bottom:542.209217pt;}
.y7c_c00257{bottom:542.868976pt;}
.y7d_c00257{bottom:543.506340pt;}
.y7e_c00257{bottom:545.186303pt;}
.yca_c00257{bottom:545.281333pt;}
.y7f_c00257{bottom:546.162193pt;}
.y80_c00257{bottom:547.034565pt;}
.y6c_c00257{bottom:566.405333pt;}
.y6d_c00257{bottom:567.500000pt;}
.y6e_c00257{bottom:567.898667pt;}
.y6f_c00257{bottom:568.438667pt;}
.y70_c00257{bottom:569.185333pt;}
.y71_c00257{bottom:570.593333pt;}
.y72_c00257{bottom:571.612000pt;}
.y73_c00257{bottom:572.021333pt;}
.y74_c00257{bottom:573.140000pt;}
.y75_c00257{bottom:573.686667pt;}
.y65_c00257{bottom:594.477333pt;}
.y66_c00257{bottom:594.981333pt;}
.y67_c00257{bottom:596.301333pt;}
.y68_c00257{bottom:598.073333pt;}
.y69_c00257{bottom:598.626667pt;}
.y6a_c00257{bottom:598.930667pt;}
.y6b_c00257{bottom:600.337333pt;}
.y63_c00257{bottom:601.426667pt;}
.y64_c00257{bottom:624.072000pt;}
.y59_c00257{bottom:625.594667pt;}
.y5a_c00257{bottom:626.499067pt;}
.y5b_c00257{bottom:626.838955pt;}
.y5c_c00257{bottom:627.191355pt;}
.y5d_c00257{bottom:627.481563pt;}
.y5e_c00257{bottom:628.244459pt;}
.y5f_c00257{bottom:628.598459pt;}
.y60_c00257{bottom:629.457531pt;}
.y61_c00257{bottom:629.765147pt;}
.y62_c00257{bottom:630.683691pt;}
.y50_c00257{bottom:652.864560pt;}
.y51_c00257{bottom:653.043045pt;}
.y52_c00257{bottom:654.040389pt;}
.y53_c00257{bottom:654.425531pt;}
.y54_c00257{bottom:655.451856pt;}
.y55_c00257{bottom:655.973107pt;}
.y56_c00257{bottom:656.569739pt;}
.y57_c00257{bottom:657.331099pt;}
.y58_c00257{bottom:657.840467pt;}
.y4c_c00257{bottom:679.439920pt;}
.y3a_c00257{bottom:680.502667pt;}
.y3b_c00257{bottom:682.370357pt;}
.y3c_c00257{bottom:683.049056pt;}
.y4d_c00257{bottom:684.153979pt;}
.y3d_c00257{bottom:684.248309pt;}
.y4e_c00257{bottom:684.461232pt;}
.y3e_c00257{bottom:684.851595pt;}
.y4f_c00257{bottom:685.429083pt;}
.y3f_c00257{bottom:685.795467pt;}
.y40_c00257{bottom:686.418123pt;}
.y45_c00257{bottom:708.002667pt;}
.y46_c00257{bottom:708.678811pt;}
.y47_c00257{bottom:709.445525pt;}
.y48_c00257{bottom:710.593544pt;}
.y36_c00257{bottom:713.975400pt;}
.y39_c00257{bottom:713.975660pt;}
.y35_c00257{bottom:713.975667pt;}
.y37_c00257{bottom:713.976067pt;}
.y38_c00257{bottom:713.976193pt;}
.y49_c00257{bottom:715.461101pt;}
.y4a_c00257{bottom:715.932117pt;}
.y4b_c00257{bottom:716.316445pt;}
.y41_c00257{bottom:734.653333pt;}
.y42_c00257{bottom:736.625099pt;}
.y43_c00257{bottom:738.797455pt;}
.y44_c00257{bottom:739.644127pt;}
.y2e_c00257{bottom:742.337593pt;}
.y2f_c00257{bottom:742.338253pt;}
.y30_c00257{bottom:742.338380pt;}
.y32_c00257{bottom:742.338773pt;}
.y31_c00257{bottom:742.338907pt;}
.y34_c00257{bottom:742.339033pt;}
.y33_c00257{bottom:742.339567pt;}
.yc9_c00257{bottom:742.864000pt;}
.y23_c00257{bottom:767.040000pt;}
.y24_c00257{bottom:767.223607pt;}
.y25_c00257{bottom:767.612213pt;}
.y26_c00257{bottom:767.920627pt;}
.y27_c00257{bottom:768.416253pt;}
.y28_c00257{bottom:768.475193pt;}
.y29_c00257{bottom:768.701953pt;}
.y2a_c00257{bottom:769.072813pt;}
.y2b_c00257{bottom:769.566080pt;}
.y2c_c00257{bottom:769.728087pt;}
.y2d_c00257{bottom:770.132307pt;}
.y1a_c00257{bottom:794.397780pt;}
.y1b_c00257{bottom:794.867993pt;}
.y1c_c00257{bottom:795.211704pt;}
.y1d_c00257{bottom:796.318088pt;}
.y1e_c00257{bottom:796.888116pt;}
.y1f_c00257{bottom:797.066925pt;}
.y20_c00257{bottom:797.524447pt;}
.y21_c00257{bottom:797.720745pt;}
.y22_c00257{bottom:798.074153pt;}
.y11_c00257{bottom:824.507365pt;}
.y19_c00257{bottom:824.507368pt;}
.y12_c00257{bottom:824.507401pt;}
.y13_c00257{bottom:824.507651pt;}
.y16_c00257{bottom:824.507696pt;}
.y17_c00257{bottom:824.507759pt;}
.y18_c00257{bottom:824.507863pt;}
.y14_c00257{bottom:824.507888pt;}
.y10_c00257{bottom:824.507948pt;}
.y15_c00257{bottom:824.508324pt;}
.yf_c00257{bottom:824.508377pt;}
.y1_c00257{bottom:847.377333pt;}
.y2_c00257{bottom:847.380061pt;}
.y3_c00257{bottom:848.048524pt;}
.y4_c00257{bottom:848.359883pt;}
.y5_c00257{bottom:848.879464pt;}
.y6_c00257{bottom:849.854577pt;}
.y7_c00257{bottom:850.720380pt;}
.y8_c00257{bottom:851.133819pt;}
.y9_c00257{bottom:851.970625pt;}
.ya_c00257{bottom:852.387951pt;}
.yb_c00257{bottom:852.749689pt;}
.yc_c00257{bottom:853.083679pt;}
.yd_c00257{bottom:853.620523pt;}
.ye_c00257{bottom:854.179264pt;}
.h11_c00257{height:16.000000pt;}
.h15_c00257{height:21.333333pt;}
.h1e_c00257{height:26.666667pt;}
.h1b_c00257{height:42.666667pt;}
.h19_c00257{height:53.333333pt;}
.h6_c00257{height:58.667400pt;}
.hc_c00257{height:58.672416pt;}
.hf_c00257{height:64.000000pt;}
.h7_c00257{height:64.000800pt;}
.h1c_c00257{height:64.003200pt;}
.h3_c00257{height:64.003872pt;}
.hd_c00257{height:64.004608pt;}
.h14_c00257{height:64.005408pt;}
.ha_c00257{height:64.006272pt;}
.he_c00257{height:69.333333pt;}
.h5_c00257{height:69.334200pt;}
.h1a_c00257{height:69.335552pt;}
.h2_c00257{height:69.337528pt;}
.h8_c00257{height:69.342207pt;}
.h10_c00257{height:69.343351pt;}
.h18_c00257{height:74.666667pt;}
.h13_c00257{height:74.672976pt;}
.hb_c00257{height:74.673984pt;}
.h1d_c00257{height:80.004000pt;}
.h12_c00257{height:80.006760pt;}
.h4_c00257{height:90.672152pt;}
.h16_c00257{height:90.707457pt;}
.h9_c00257{height:101.382012pt;}
.h17_c00257{height:112.050389pt;}
.h0_c00257{height:1002.480000pt;}
.h1_c00257{height:1002.666667pt;}
.w0_c00257{width:813.333333pt;}
.x0_c00257{left:0.000000pt;}
.x1e_c00257{left:20.729333pt;}
.xa2_c00257{left:22.094667pt;}
.x5a_c00257{left:28.404000pt;}
.x17_c00257{left:30.643736pt;}
.x3f_c00257{left:32.372000pt;}
.x66_c00257{left:34.042667pt;}
.xab_c00257{left:36.238987pt;}
.xd_c00257{left:39.601648pt;}
.x45_c00257{left:41.053501pt;}
.x6f_c00257{left:42.421333pt;}
.x3b_c00257{left:46.256000pt;}
.x29_c00257{left:49.438893pt;}
.x79_c00257{left:50.954453pt;}
.x70_c00257{left:51.989333pt;}
.x1f_c00257{left:57.450667pt;}
.x5b_c00257{left:59.914667pt;}
.x1_c00257{left:61.094667pt;}
.x88_c00257{left:62.662936pt;}
.x8c_c00257{left:63.604632pt;}
.x58_c00257{left:69.360000pt;}
.x36_c00257{left:72.797333pt;}
.x40_c00257{left:80.668000pt;}
.x80_c00257{left:81.688648pt;}
.x2_c00257{left:89.400000pt;}
.x7a_c00257{left:94.087787pt;}
.xa3_c00257{left:95.561333pt;}
.x5f_c00257{left:98.470667pt;}
.x8d_c00257{left:100.088119pt;}
.x89_c00257{left:104.893603pt;}
.x67_c00257{left:106.166667pt;}
.x48_c00257{left:107.198445pt;}
.x3c_c00257{left:109.861333pt;}
.xb5_c00257{left:113.205333pt;}
.x7b_c00257{left:115.393120pt;}
.x59_c00257{left:119.760000pt;}
.x49_c00257{left:120.899965pt;}
.x60_c00257{left:126.978667pt;}
.x68_c00257{left:128.898667pt;}
.x18_c00257{left:132.397761pt;}
.xb6_c00257{left:133.652000pt;}
.x20_c00257{left:135.172000pt;}
.x3_c00257{left:136.634667pt;}
.x5c_c00257{left:142.380000pt;}
.x71_c00257{left:152.984000pt;}
.x72_c00257{left:156.129333pt;}
.x7c_c00257{left:161.117120pt;}
.x61_c00257{left:165.550667pt;}
.xb7_c00257{left:169.244000pt;}
.x8e_c00257{left:171.613533pt;}
.xbd_c00257{left:173.634373pt;}
.x3d_c00257{left:179.937333pt;}
.x81_c00257{left:182.607299pt;}
.x7d_c00257{left:186.087787pt;}
.xe_c00257{left:187.930267pt;}
.x37_c00257{left:189.528000pt;}
.xac_c00257{left:194.883797pt;}
.x21_c00257{left:196.854667pt;}
.x3e_c00257{left:207.249333pt;}
.xa4_c00257{left:209.238667pt;}
.x4f_c00257{left:211.850667pt;}
.x41_c00257{left:217.434667pt;}
.x62_c00257{left:218.890667pt;}
.x96_c00257{left:222.289387pt;}
.x82_c00257{left:223.459836pt;}
.x4_c00257{left:225.281333pt;}
.x4a_c00257{left:227.269459pt;}
.x8f_c00257{left:230.658184pt;}
.x38_c00257{left:231.946667pt;}
.xb8_c00257{left:236.330667pt;}
.x2a_c00257{left:247.201167pt;}
.x5d_c00257{left:253.132000pt;}
.x73_c00257{left:254.882667pt;}
.xf_c00257{left:259.214891pt;}
.xa5_c00257{left:267.109333pt;}
.x19_c00257{left:270.679656pt;}
.x74_c00257{left:275.041333pt;}
.x95_c00257{left:281.444000pt;}
.x30_c00257{left:286.801300pt;}
.x83_c00257{left:289.222019pt;}
.x22_c00257{left:295.980000pt;}
.x69_c00257{left:298.428000pt;}
.xb9_c00257{left:299.712000pt;}
.x97_c00257{left:302.710267pt;}
.x5_c00257{left:303.990667pt;}
.x4b_c00257{left:306.198560pt;}
.x23_c00257{left:307.768000pt;}
.x90_c00257{left:312.265315pt;}
.x50_c00257{left:315.541333pt;}
.x10_c00257{left:316.577828pt;}
.x63_c00257{left:319.470667pt;}
.x2b_c00257{left:325.441787pt;}
.x75_c00257{left:326.709333pt;}
.x31_c00257{left:328.082333pt;}
.x84_c00257{left:330.987889pt;}
.x6a_c00257{left:337.237333pt;}
.x6_c00257{left:341.576000pt;}
.x32_c00257{left:343.682720pt;}
.x39_c00257{left:344.605333pt;}
.x4c_c00257{left:346.288453pt;}
.x24_c00257{left:353.120000pt;}
.x2c_c00257{left:354.482513pt;}
.x8a_c00257{left:357.880269pt;}
.x91_c00257{left:359.789340pt;}
.x11_c00257{left:362.180676pt;}
.x1a_c00257{left:364.213403pt;}
.x51_c00257{left:369.092000pt;}
.xa6_c00257{left:370.718667pt;}
.x6b_c00257{left:374.729333pt;}
.x85_c00257{left:379.239180pt;}
.x2d_c00257{left:383.043227pt;}
.x4d_c00257{left:392.143755pt;}
.x5e_c00257{left:394.629333pt;}
.x98_c00257{left:396.429947pt;}
.xa7_c00257{left:401.193333pt;}
.x3a_c00257{left:403.597333pt;}
.x92_c00257{left:407.073331pt;}
.x33_c00257{left:413.043120pt;}
.x76_c00257{left:414.722667pt;}
.x7_c00257{left:417.649333pt;}
.x7e_c00257{left:420.291787pt;}
.x1b_c00257{left:421.323280pt;}
.xba_c00257{left:424.304000pt;}
.x86_c00257{left:425.322453pt;}
.x25_c00257{left:427.292000pt;}
.x12_c00257{left:429.864860pt;}
.x52_c00257{left:432.666667pt;}
.x8b_c00257{left:436.000269pt;}
.x34_c00257{left:440.403807pt;}
.x2e_c00257{left:441.843360pt;}
.x1c_c00257{left:445.836087pt;}
.xb3_c00257{left:448.080000pt;}
.x4e_c00257{left:450.717909pt;}
.xbb_c00257{left:453.120000pt;}
.x8_c00257{left:455.588000pt;}
.x13_c00257{left:459.387105pt;}
.x53_c00257{left:462.166667pt;}
.x99_c00257{left:464.016147pt;}
.x87_c00257{left:467.953675pt;}
.x2f_c00257{left:469.204047pt;}
.x6c_c00257{left:473.550667pt;}
.x93_c00257{left:474.999472pt;}
.x7f_c00257{left:476.562453pt;}
.x35_c00257{left:478.804767pt;}
.xbc_c00257{left:480.469333pt;}
.xa8_c00257{left:486.881333pt;}
.x9_c00257{left:488.473333pt;}
.x1d_c00257{left:489.965539pt;}
.x9b_c00257{left:492.960000pt;}
.xad_c00257{left:494.654965pt;}
.x46_c00257{left:497.547339pt;}
.x64_c00257{left:501.337333pt;}
.x9a_c00257{left:512.018227pt;}
.x94_c00257{left:516.282440pt;}
.xa_c00257{left:518.836000pt;}
.x57_c00257{left:522.480000pt;}
.x26_c00257{left:525.945333pt;}
.x77_c00257{left:528.956000pt;}
.x14_c00257{left:530.431700pt;}
.xae_c00257{left:531.856011pt;}
.x54_c00257{left:533.756000pt;}
.x65_c00257{left:540.429333pt;}
.x9f_c00257{left:541.680000pt;}
.xb1_c00257{left:551.760000pt;}
.x27_c00257{left:558.346667pt;}
.x55_c00257{left:559.390667pt;}
.x42_c00257{left:565.117333pt;}
.xb_c00257{left:567.640000pt;}
.xa0_c00257{left:570.720000pt;}
.x15_c00257{left:577.234695pt;}
.xbe_c00257{left:579.322507pt;}
.x6d_c00257{left:582.272000pt;}
.x47_c00257{left:585.540368pt;}
.xa9_c00257{left:592.938667pt;}
.x9c_c00257{left:595.680000pt;}
.x43_c00257{left:598.761333pt;}
.xa1_c00257{left:600.720000pt;}
.x16_c00257{left:605.556793pt;}
.xaf_c00257{left:607.218165pt;}
.x9e_c00257{left:609.120000pt;}
.xb4_c00257{left:613.920000pt;}
.x78_c00257{left:615.569333pt;}
.xc_c00257{left:618.434667pt;}
.x6e_c00257{left:623.040000pt;}
.x44_c00257{left:626.213333pt;}
.xb2_c00257{left:634.080000pt;}
.x56_c00257{left:635.936000pt;}
.x9d_c00257{left:637.200000pt;}
.x28_c00257{left:639.190667pt;}
.xaa_c00257{left:642.609333pt;}
.xb0_c00257{left:649.200000pt;}
.xbf_c00257{left:704.880000pt;}
.xc0_c00257{left:758.400000pt;}
.xc1_c00257{left:760.320000pt;}
.xc6_c00257{left:786.000000pt;}
.xc2_c00257{left:787.200000pt;}
.xc4_c00257{left:789.840000pt;}
.xc3_c00257{left:790.800000pt;}
.xc5_c00257{left:791.760000pt;}
.xc7_c00257{left:792.720000pt;}
}





/* 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_c00258 {
    display:none;
  }
  .loading-indicator_c00258.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00258 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_c00258 { 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_c00258" -> "#page-container .classname_c00258")
 */
.pf_c00258 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00258 { /* 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_c00258.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00258 { /* 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_c00258 { /* 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_c00258 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00258 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00258 {overflow:visible;}
  }
}
.c_c00258 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00258 { /* 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_c00258:after { /* webkit #35443 */
  content: '';
}
.t_c00258:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00258 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 */
}
.__c00258 { /* 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_c00258 { /* info for Javascript */
  display:none;
}
.l_c00258 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00258 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00258 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00258: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_c00258 {
    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_c00258.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00258.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_c00258 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00258{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00258;src:url('chunks/assets/font_fabf4b590f7fb32aea93ffb2.woff2')format("woff");}.ff1_c00258{font-family:ff1_c00258;line-height:1.000000;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;}
.m136_c00258{transform:matrix(0.010814,0.000119,-0.002750,0.249985,0,0);-ms-transform:matrix(0.010814,0.000119,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.010814,0.000119,-0.002750,0.249985,0,0);}
.m1d_c00258{transform:matrix(0.014060,0.000112,-0.002000,0.249992,0,0);-ms-transform:matrix(0.014060,0.000112,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.014060,0.000112,-0.002000,0.249992,0,0);}
.m9c_c00258{transform:matrix(0.028519,0.000285,-0.002500,0.249988,0,0);-ms-transform:matrix(0.028519,0.000285,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.028519,0.000285,-0.002500,0.249988,0,0);}
.m26_c00258{transform:matrix(0.080437,0.000643,-0.002000,0.249992,0,0);-ms-transform:matrix(0.080437,0.000643,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.080437,0.000643,-0.002000,0.249992,0,0);}
.m30_c00258{transform:matrix(0.105957,0.000848,-0.002000,0.249992,0,0);-ms-transform:matrix(0.105957,0.000848,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.105957,0.000848,-0.002000,0.249992,0,0);}
.m68_c00258{transform:matrix(0.108136,0.000973,-0.002250,0.249990,0,0);-ms-transform:matrix(0.108136,0.000973,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.108136,0.000973,-0.002250,0.249990,0,0);}
.m1a_c00258{transform:matrix(0.121681,0.000973,-0.002000,0.249992,0,0);-ms-transform:matrix(0.121681,0.000973,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.121681,0.000973,-0.002000,0.249992,0,0);}
.me9_c00258{transform:matrix(0.159062,0.001591,-0.002500,0.249988,0,0);-ms-transform:matrix(0.159062,0.001591,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.159062,0.001591,-0.002500,0.249988,0,0);}
.md9_c00258{transform:matrix(0.160548,0.001445,-0.002250,0.249990,0,0);-ms-transform:matrix(0.160548,0.001445,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.160548,0.001445,-0.002250,0.249990,0,0);}
.ma3_c00258{transform:matrix(0.161482,0.001615,-0.002500,0.249988,0,0);-ms-transform:matrix(0.161482,0.001615,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.161482,0.001615,-0.002500,0.249988,0,0);}
.ma0_c00258{transform:matrix(0.162372,0.001624,-0.002500,0.249988,0,0);-ms-transform:matrix(0.162372,0.001624,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.162372,0.001624,-0.002500,0.249988,0,0);}
.ma2_c00258{transform:matrix(0.162687,0.001627,-0.002500,0.249988,0,0);-ms-transform:matrix(0.162687,0.001627,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.162687,0.001627,-0.002500,0.249988,0,0);}
.me7_c00258{transform:matrix(0.164212,0.001642,-0.002500,0.249988,0,0);-ms-transform:matrix(0.164212,0.001642,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.164212,0.001642,-0.002500,0.249988,0,0);}
.mdf_c00258{transform:matrix(0.164683,0.001482,-0.002250,0.249990,0,0);-ms-transform:matrix(0.164683,0.001482,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.164683,0.001482,-0.002250,0.249990,0,0);}
.md4_c00258{transform:matrix(0.166433,0.001498,-0.002250,0.249990,0,0);-ms-transform:matrix(0.166433,0.001498,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.166433,0.001498,-0.002250,0.249990,0,0);}
.md6_c00258{transform:matrix(0.166968,0.001503,-0.002250,0.249990,0,0);-ms-transform:matrix(0.166968,0.001503,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.166968,0.001503,-0.002250,0.249990,0,0);}
.mca_c00258{transform:matrix(0.167457,0.001675,-0.002500,0.249988,0,0);-ms-transform:matrix(0.167457,0.001675,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.167457,0.001675,-0.002500,0.249988,0,0);}
.m9d_c00258{transform:matrix(0.168992,0.001690,-0.002500,0.249988,0,0);-ms-transform:matrix(0.168992,0.001690,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.168992,0.001690,-0.002500,0.249988,0,0);}
.mde_c00258{transform:matrix(0.169843,0.001529,-0.002250,0.249990,0,0);-ms-transform:matrix(0.169843,0.001529,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.169843,0.001529,-0.002250,0.249990,0,0);}
.md8_c00258{transform:matrix(0.171498,0.001543,-0.002250,0.249990,0,0);-ms-transform:matrix(0.171498,0.001543,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.171498,0.001543,-0.002250,0.249990,0,0);}
.me0_c00258{transform:matrix(0.172163,0.001549,-0.002250,0.249990,0,0);-ms-transform:matrix(0.172163,0.001549,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.172163,0.001549,-0.002250,0.249990,0,0);}
.mdb_c00258{transform:matrix(0.172693,0.001554,-0.002250,0.249990,0,0);-ms-transform:matrix(0.172693,0.001554,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.172693,0.001554,-0.002250,0.249990,0,0);}
.md7_c00258{transform:matrix(0.172793,0.001555,-0.002250,0.249990,0,0);-ms-transform:matrix(0.172793,0.001555,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.172793,0.001555,-0.002250,0.249990,0,0);}
.md0_c00258{transform:matrix(0.172946,0.001729,-0.002500,0.249988,0,0);-ms-transform:matrix(0.172946,0.001729,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.172946,0.001729,-0.002500,0.249988,0,0);}
.m9f_c00258{transform:matrix(0.174291,0.001743,-0.002500,0.249988,0,0);-ms-transform:matrix(0.174291,0.001743,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.174291,0.001743,-0.002500,0.249988,0,0);}
.m24_c00258{transform:matrix(0.174409,0.001395,-0.002000,0.249992,0,0);-ms-transform:matrix(0.174409,0.001395,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.174409,0.001395,-0.002000,0.249992,0,0);}
.me2_c00258{transform:matrix(0.174581,0.001746,-0.002500,0.249988,0,0);-ms-transform:matrix(0.174581,0.001746,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.174581,0.001746,-0.002500,0.249988,0,0);}
.mdc_c00258{transform:matrix(0.175478,0.001579,-0.002250,0.249990,0,0);-ms-transform:matrix(0.175478,0.001579,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.175478,0.001579,-0.002250,0.249990,0,0);}
.me4_c00258{transform:matrix(0.176471,0.001765,-0.002500,0.249988,0,0);-ms-transform:matrix(0.176471,0.001765,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.176471,0.001765,-0.002500,0.249988,0,0);}
.mcf_c00258{transform:matrix(0.177781,0.001778,-0.002500,0.249988,0,0);-ms-transform:matrix(0.177781,0.001778,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.177781,0.001778,-0.002500,0.249988,0,0);}
.ma1_c00258{transform:matrix(0.178486,0.001785,-0.002500,0.249988,0,0);-ms-transform:matrix(0.178486,0.001785,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.178486,0.001785,-0.002500,0.249988,0,0);}
.m22_c00258{transform:matrix(0.178944,0.001432,-0.002000,0.249992,0,0);-ms-transform:matrix(0.178944,0.001432,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.178944,0.001432,-0.002000,0.249992,0,0);}
.mae_c00258{transform:matrix(0.179101,0.001791,-0.002500,0.249988,0,0);-ms-transform:matrix(0.179101,0.001791,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.179101,0.001791,-0.002500,0.249988,0,0);}
.m1f_c00258{transform:matrix(0.179249,0.001434,-0.002000,0.249992,0,0);-ms-transform:matrix(0.179249,0.001434,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.179249,0.001434,-0.002000,0.249992,0,0);}
.ma4_c00258{transform:matrix(0.179791,0.001798,-0.002500,0.249988,0,0);-ms-transform:matrix(0.179791,0.001798,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.179791,0.001798,-0.002500,0.249988,0,0);}
.me6_c00258{transform:matrix(0.180071,0.001801,-0.002500,0.249988,0,0);-ms-transform:matrix(0.180071,0.001801,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.180071,0.001801,-0.002500,0.249988,0,0);}
.mce_c00258{transform:matrix(0.180136,0.001801,-0.002500,0.249988,0,0);-ms-transform:matrix(0.180136,0.001801,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.180136,0.001801,-0.002500,0.249988,0,0);}
.m1e_c00258{transform:matrix(0.180949,0.001448,-0.002000,0.249992,0,0);-ms-transform:matrix(0.180949,0.001448,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.180949,0.001448,-0.002000,0.249992,0,0);}
.mcd_c00258{transform:matrix(0.181481,0.001815,-0.002500,0.249988,0,0);-ms-transform:matrix(0.181481,0.001815,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.181481,0.001815,-0.002500,0.249988,0,0);}
.mad_c00258{transform:matrix(0.182106,0.001821,-0.002500,0.249988,0,0);-ms-transform:matrix(0.182106,0.001821,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.182106,0.001821,-0.002500,0.249988,0,0);}
.me5_c00258{transform:matrix(0.182826,0.001828,-0.002500,0.249988,0,0);-ms-transform:matrix(0.182826,0.001828,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.182826,0.001828,-0.002500,0.249988,0,0);}
.m9e_c00258{transform:matrix(0.183116,0.001831,-0.002500,0.249988,0,0);-ms-transform:matrix(0.183116,0.001831,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.183116,0.001831,-0.002500,0.249988,0,0);}
.md5_c00258{transform:matrix(0.183703,0.001653,-0.002250,0.249990,0,0);-ms-transform:matrix(0.183703,0.001653,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.183703,0.001653,-0.002250,0.249990,0,0);}
.mda_c00258{transform:matrix(0.185352,0.001668,-0.002250,0.249990,0,0);-ms-transform:matrix(0.185352,0.001668,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.185352,0.001668,-0.002250,0.249990,0,0);}
.m146_c00258{transform:matrix(0.185464,0.002040,-0.002750,0.249985,0,0);-ms-transform:matrix(0.185464,0.002040,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.185464,0.002040,-0.002750,0.249985,0,0);}
.meb_c00258{transform:matrix(0.185671,0.001857,-0.002500,0.249988,0,0);-ms-transform:matrix(0.185671,0.001857,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.185671,0.001857,-0.002500,0.249988,0,0);}
.mab_c00258{transform:matrix(0.186051,0.001861,-0.002500,0.249988,0,0);-ms-transform:matrix(0.186051,0.001861,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.186051,0.001861,-0.002500,0.249988,0,0);}
.mdd_c00258{transform:matrix(0.187422,0.001687,-0.002250,0.249990,0,0);-ms-transform:matrix(0.187422,0.001687,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.187422,0.001687,-0.002250,0.249990,0,0);}
.mec_c00258{transform:matrix(0.187456,0.001875,-0.002500,0.249988,0,0);-ms-transform:matrix(0.187456,0.001875,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.187456,0.001875,-0.002500,0.249988,0,0);}
.m27_c00258{transform:matrix(0.187839,0.001503,-0.002000,0.249992,0,0);-ms-transform:matrix(0.187839,0.001503,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.187839,0.001503,-0.002000,0.249992,0,0);}
.m20_c00258{transform:matrix(0.188904,0.001511,-0.002000,0.249992,0,0);-ms-transform:matrix(0.188904,0.001511,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.188904,0.001511,-0.002000,0.249992,0,0);}
.mac_c00258{transform:matrix(0.189956,0.001900,-0.002500,0.249988,0,0);-ms-transform:matrix(0.189956,0.001900,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.189956,0.001900,-0.002500,0.249988,0,0);}
.m21_c00258{transform:matrix(0.190334,0.001523,-0.002000,0.249992,0,0);-ms-transform:matrix(0.190334,0.001523,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.190334,0.001523,-0.002000,0.249992,0,0);}
.maa_c00258{transform:matrix(0.191030,0.001910,-0.002500,0.249988,0,0);-ms-transform:matrix(0.191030,0.001910,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.191030,0.001910,-0.002500,0.249988,0,0);}
.mcb_c00258{transform:matrix(0.191570,0.001916,-0.002500,0.249988,0,0);-ms-transform:matrix(0.191570,0.001916,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.191570,0.001916,-0.002500,0.249988,0,0);}
.me8_c00258{transform:matrix(0.191685,0.001917,-0.002500,0.249988,0,0);-ms-transform:matrix(0.191685,0.001917,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.191685,0.001917,-0.002500,0.249988,0,0);}
.m10f_c00258{transform:matrix(0.193205,0.001932,-0.002500,0.249988,0,0);-ms-transform:matrix(0.193205,0.001932,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.193205,0.001932,-0.002500,0.249988,0,0);}
.ma8_c00258{transform:matrix(0.193985,0.001940,-0.002500,0.249988,0,0);-ms-transform:matrix(0.193985,0.001940,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.193985,0.001940,-0.002500,0.249988,0,0);}
.mcc_c00258{transform:matrix(0.194655,0.001947,-0.002500,0.249988,0,0);-ms-transform:matrix(0.194655,0.001947,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.194655,0.001947,-0.002500,0.249988,0,0);}
.mea_c00258{transform:matrix(0.194665,0.001947,-0.002500,0.249988,0,0);-ms-transform:matrix(0.194665,0.001947,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.194665,0.001947,-0.002500,0.249988,0,0);}
.md1_c00258{transform:matrix(0.195185,0.001952,-0.002500,0.249988,0,0);-ms-transform:matrix(0.195185,0.001952,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.195185,0.001952,-0.002500,0.249988,0,0);}
.me3_c00258{transform:matrix(0.196560,0.001966,-0.002500,0.249988,0,0);-ms-transform:matrix(0.196560,0.001966,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.196560,0.001966,-0.002500,0.249988,0,0);}
.m114_c00258{transform:matrix(0.196765,0.001968,-0.002500,0.249988,0,0);-ms-transform:matrix(0.196765,0.001968,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.196765,0.001968,-0.002500,0.249988,0,0);}
.m23_c00258{transform:matrix(0.196969,0.001576,-0.002000,0.249992,0,0);-ms-transform:matrix(0.196969,0.001576,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.196969,0.001576,-0.002000,0.249992,0,0);}
.mc2_c00258{transform:matrix(0.197900,0.001979,-0.002500,0.249988,0,0);-ms-transform:matrix(0.197900,0.001979,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.197900,0.001979,-0.002500,0.249988,0,0);}
.m144_c00258{transform:matrix(0.198143,0.002180,-0.002750,0.249985,0,0);-ms-transform:matrix(0.198143,0.002180,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.198143,0.002180,-0.002750,0.249985,0,0);}
.maf_c00258{transform:matrix(0.198495,0.001985,-0.002500,0.249988,0,0);-ms-transform:matrix(0.198495,0.001985,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.198495,0.001985,-0.002500,0.249988,0,0);}
.mb0_c00258{transform:matrix(0.199935,0.001999,-0.002500,0.249988,0,0);-ms-transform:matrix(0.199935,0.001999,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.199935,0.001999,-0.002500,0.249988,0,0);}
.m13a_c00258{transform:matrix(0.201908,0.002221,-0.002750,0.249985,0,0);-ms-transform:matrix(0.201908,0.002221,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.201908,0.002221,-0.002750,0.249985,0,0);}
.m98_c00258{transform:matrix(0.202250,0.002022,-0.002500,0.249988,0,0);-ms-transform:matrix(0.202250,0.002022,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.202250,0.002022,-0.002500,0.249988,0,0);}
.m10d_c00258{transform:matrix(0.202280,0.002023,-0.002500,0.249988,0,0);-ms-transform:matrix(0.202280,0.002023,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.202280,0.002023,-0.002500,0.249988,0,0);}
.m143_c00258{transform:matrix(0.202318,0.002225,-0.002750,0.249985,0,0);-ms-transform:matrix(0.202318,0.002225,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.202318,0.002225,-0.002750,0.249985,0,0);}
.md3_c00258{transform:matrix(0.202450,0.002024,-0.002500,0.249988,0,0);-ms-transform:matrix(0.202450,0.002024,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.202450,0.002024,-0.002500,0.249988,0,0);}
.md2_c00258{transform:matrix(0.202970,0.002030,-0.002500,0.249988,0,0);-ms-transform:matrix(0.202970,0.002030,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.202970,0.002030,-0.002500,0.249988,0,0);}
.m94_c00258{transform:matrix(0.203015,0.002030,-0.002500,0.249988,0,0);-ms-transform:matrix(0.203015,0.002030,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.203015,0.002030,-0.002500,0.249988,0,0);}
.mc0_c00258{transform:matrix(0.203335,0.002033,-0.002500,0.249988,0,0);-ms-transform:matrix(0.203335,0.002033,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.203335,0.002033,-0.002500,0.249988,0,0);}
.m113_c00258{transform:matrix(0.204080,0.002041,-0.002500,0.249988,0,0);-ms-transform:matrix(0.204080,0.002041,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.204080,0.002041,-0.002500,0.249988,0,0);}
.mbb_c00258{transform:matrix(0.204105,0.002041,-0.002500,0.249988,0,0);-ms-transform:matrix(0.204105,0.002041,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.204105,0.002041,-0.002500,0.249988,0,0);}
.m112_c00258{transform:matrix(0.204215,0.002042,-0.002500,0.249988,0,0);-ms-transform:matrix(0.204215,0.002042,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.204215,0.002042,-0.002500,0.249988,0,0);}
.me1_c00258{transform:matrix(0.204540,0.002045,-0.002500,0.249988,0,0);-ms-transform:matrix(0.204540,0.002045,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.204540,0.002045,-0.002500,0.249988,0,0);}
.m13e_c00258{transform:matrix(0.204618,0.002251,-0.002750,0.249985,0,0);-ms-transform:matrix(0.204618,0.002251,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.204618,0.002251,-0.002750,0.249985,0,0);}
.m116_c00258{transform:matrix(0.204620,0.002046,-0.002500,0.249988,0,0);-ms-transform:matrix(0.204620,0.002046,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.204620,0.002046,-0.002500,0.249988,0,0);}
.m13c_c00258{transform:matrix(0.205343,0.002259,-0.002750,0.249985,0,0);-ms-transform:matrix(0.205343,0.002259,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.205343,0.002259,-0.002750,0.249985,0,0);}
.m99_c00258{transform:matrix(0.206045,0.002060,-0.002500,0.249988,0,0);-ms-transform:matrix(0.206045,0.002060,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.206045,0.002060,-0.002500,0.249988,0,0);}
.m6_c00258{transform:matrix(0.206593,0.001653,-0.002000,0.249992,0,0);-ms-transform:matrix(0.206593,0.001653,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.206593,0.001653,-0.002000,0.249992,0,0);}
.m13d_c00258{transform:matrix(0.206917,0.002276,-0.002750,0.249985,0,0);-ms-transform:matrix(0.206917,0.002276,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.206917,0.002276,-0.002750,0.249985,0,0);}
.ma6_c00258{transform:matrix(0.206930,0.002069,-0.002500,0.249988,0,0);-ms-transform:matrix(0.206930,0.002069,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.206930,0.002069,-0.002500,0.249988,0,0);}
.m107_c00258{transform:matrix(0.207305,0.002073,-0.002500,0.249988,0,0);-ms-transform:matrix(0.207305,0.002073,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.207305,0.002073,-0.002500,0.249988,0,0);}
.mb4_c00258{transform:matrix(0.208055,0.002081,-0.002500,0.249988,0,0);-ms-transform:matrix(0.208055,0.002081,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.208055,0.002081,-0.002500,0.249988,0,0);}
.m73_c00258{transform:matrix(0.208125,0.002081,-0.002500,0.249988,0,0);-ms-transform:matrix(0.208125,0.002081,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.208125,0.002081,-0.002500,0.249988,0,0);}
.m1_c00258{transform:matrix(0.208428,0.001667,-0.002000,0.249992,0,0);-ms-transform:matrix(0.208428,0.001667,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.208428,0.001667,-0.002000,0.249992,0,0);}
.m40_c00258{transform:matrix(0.208503,0.001668,-0.002000,0.249992,0,0);-ms-transform:matrix(0.208503,0.001668,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.208503,0.001668,-0.002000,0.249992,0,0);}
.m69_c00258{transform:matrix(0.208835,0.002088,-0.002500,0.249988,0,0);-ms-transform:matrix(0.208835,0.002088,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.208835,0.002088,-0.002500,0.249988,0,0);}
.m71_c00258{transform:matrix(0.208975,0.002090,-0.002500,0.249988,0,0);-ms-transform:matrix(0.208975,0.002090,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.208975,0.002090,-0.002500,0.249988,0,0);}
.ma7_c00258{transform:matrix(0.210089,0.002101,-0.002500,0.249988,0,0);-ms-transform:matrix(0.210089,0.002101,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.210089,0.002101,-0.002500,0.249988,0,0);}
.m58_c00258{transform:matrix(0.210686,0.001896,-0.002250,0.249990,0,0);-ms-transform:matrix(0.210686,0.001896,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.210686,0.001896,-0.002250,0.249990,0,0);}
.m138_c00258{transform:matrix(0.210862,0.002319,-0.002750,0.249985,0,0);-ms-transform:matrix(0.210862,0.002319,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.210862,0.002319,-0.002750,0.249985,0,0);}
.m80_c00258{transform:matrix(0.211449,0.002114,-0.002500,0.249988,0,0);-ms-transform:matrix(0.211449,0.002114,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.211449,0.002114,-0.002500,0.249988,0,0);}
.m16_c00258{transform:matrix(0.211578,0.001693,-0.002000,0.249992,0,0);-ms-transform:matrix(0.211578,0.001693,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.211578,0.001693,-0.002000,0.249992,0,0);}
.mf6_c00258{transform:matrix(0.211619,0.002116,-0.002500,0.249988,0,0);-ms-transform:matrix(0.211619,0.002116,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.211619,0.002116,-0.002500,0.249988,0,0);}
.m95_c00258{transform:matrix(0.212494,0.002125,-0.002500,0.249988,0,0);-ms-transform:matrix(0.212494,0.002125,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.212494,0.002125,-0.002500,0.249988,0,0);}
.m54_c00258{transform:matrix(0.212501,0.001913,-0.002250,0.249990,0,0);-ms-transform:matrix(0.212501,0.001913,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.212501,0.001913,-0.002250,0.249990,0,0);}
.m85_c00258{transform:matrix(0.212814,0.002128,-0.002500,0.249988,0,0);-ms-transform:matrix(0.212814,0.002128,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.212814,0.002128,-0.002500,0.249988,0,0);}
.m140_c00258{transform:matrix(0.213652,0.002350,-0.002750,0.249985,0,0);-ms-transform:matrix(0.213652,0.002350,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.213652,0.002350,-0.002750,0.249985,0,0);}
.mf8_c00258{transform:matrix(0.213659,0.002137,-0.002500,0.249988,0,0);-ms-transform:matrix(0.213659,0.002137,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.213659,0.002137,-0.002500,0.249988,0,0);}
.m11d_c00258{transform:matrix(0.214109,0.002141,-0.002500,0.249988,0,0);-ms-transform:matrix(0.214109,0.002141,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.214109,0.002141,-0.002500,0.249988,0,0);}
.m2b_c00258{transform:matrix(0.214408,0.001715,-0.002000,0.249992,0,0);-ms-transform:matrix(0.214408,0.001715,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.214408,0.001715,-0.002000,0.249992,0,0);}
.m4d_c00258{transform:matrix(0.214747,0.001074,-0.001250,0.249997,0,0);-ms-transform:matrix(0.214747,0.001074,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.214747,0.001074,-0.001250,0.249997,0,0);}
.mc8_c00258{transform:matrix(0.214929,0.002149,-0.002500,0.249988,0,0);-ms-transform:matrix(0.214929,0.002149,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.214929,0.002149,-0.002500,0.249988,0,0);}
.m141_c00258{transform:matrix(0.215187,0.002367,-0.002750,0.249985,0,0);-ms-transform:matrix(0.215187,0.002367,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.215187,0.002367,-0.002750,0.249985,0,0);}
.m139_c00258{transform:matrix(0.215237,0.002368,-0.002750,0.249985,0,0);-ms-transform:matrix(0.215237,0.002368,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.215237,0.002368,-0.002750,0.249985,0,0);}
.m110_c00258{transform:matrix(0.215599,0.002156,-0.002500,0.249988,0,0);-ms-transform:matrix(0.215599,0.002156,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.215599,0.002156,-0.002500,0.249988,0,0);}
.m8d_c00258{transform:matrix(0.215884,0.002159,-0.002500,0.249988,0,0);-ms-transform:matrix(0.215884,0.002159,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.215884,0.002159,-0.002500,0.249988,0,0);}
.m65_c00258{transform:matrix(0.215951,0.001944,-0.002250,0.249990,0,0);-ms-transform:matrix(0.215951,0.001944,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.215951,0.001944,-0.002250,0.249990,0,0);}
.ma9_c00258{transform:matrix(0.216079,0.002161,-0.002500,0.249988,0,0);-ms-transform:matrix(0.216079,0.002161,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.216079,0.002161,-0.002500,0.249988,0,0);}
.m88_c00258{transform:matrix(0.216404,0.002164,-0.002500,0.249988,0,0);-ms-transform:matrix(0.216404,0.002164,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.216404,0.002164,-0.002500,0.249988,0,0);}
.m6f_c00258{transform:matrix(0.216529,0.002165,-0.002500,0.249988,0,0);-ms-transform:matrix(0.216529,0.002165,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.216529,0.002165,-0.002500,0.249988,0,0);}
.m9b_c00258{transform:matrix(0.216649,0.002166,-0.002500,0.249988,0,0);-ms-transform:matrix(0.216649,0.002166,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.216649,0.002166,-0.002500,0.249988,0,0);}
.m91_c00258{transform:matrix(0.216714,0.002167,-0.002500,0.249988,0,0);-ms-transform:matrix(0.216714,0.002167,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.216714,0.002167,-0.002500,0.249988,0,0);}
.m2_c00258{transform:matrix(0.217163,0.001737,-0.002000,0.249992,0,0);-ms-transform:matrix(0.217163,0.001737,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.217163,0.001737,-0.002000,0.249992,0,0);}
.m10b_c00258{transform:matrix(0.217519,0.002175,-0.002500,0.249988,0,0);-ms-transform:matrix(0.217519,0.002175,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.217519,0.002175,-0.002500,0.249988,0,0);}
.m8_c00258{transform:matrix(0.217598,0.001741,-0.002000,0.249992,0,0);-ms-transform:matrix(0.217598,0.001741,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.217598,0.001741,-0.002000,0.249992,0,0);}
.m14_c00258{transform:matrix(0.217763,0.001742,-0.002000,0.249992,0,0);-ms-transform:matrix(0.217763,0.001742,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.217763,0.001742,-0.002000,0.249992,0,0);}
.m132_c00258{transform:matrix(0.217782,0.002396,-0.002750,0.249985,0,0);-ms-transform:matrix(0.217782,0.002396,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.217782,0.002396,-0.002750,0.249985,0,0);}
.m119_c00258{transform:matrix(0.217869,0.002179,-0.002500,0.249988,0,0);-ms-transform:matrix(0.217869,0.002179,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.217869,0.002179,-0.002500,0.249988,0,0);}
.mbd_c00258{transform:matrix(0.217939,0.002179,-0.002500,0.249988,0,0);-ms-transform:matrix(0.217939,0.002179,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.217939,0.002179,-0.002500,0.249988,0,0);}
.m4_c00258{transform:matrix(0.217943,0.001744,-0.002000,0.249992,0,0);-ms-transform:matrix(0.217943,0.001744,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.217943,0.001744,-0.002000,0.249992,0,0);}
.m5b_c00258{transform:matrix(0.218431,0.001966,-0.002250,0.249990,0,0);-ms-transform:matrix(0.218431,0.001966,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.218431,0.001966,-0.002250,0.249990,0,0);}
.m130_c00258{transform:matrix(0.218487,0.002403,-0.002750,0.249985,0,0);-ms-transform:matrix(0.218487,0.002403,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.218487,0.002403,-0.002750,0.249985,0,0);}
.m12c_c00258{transform:matrix(0.218542,0.002404,-0.002750,0.249985,0,0);-ms-transform:matrix(0.218542,0.002404,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.218542,0.002404,-0.002750,0.249985,0,0);}
.m5_c00258{transform:matrix(0.218658,0.001749,-0.002000,0.249992,0,0);-ms-transform:matrix(0.218658,0.001749,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.218658,0.001749,-0.002000,0.249992,0,0);}
.m4a_c00258{transform:matrix(0.218792,0.001094,-0.001250,0.249997,0,0);-ms-transform:matrix(0.218792,0.001094,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.218792,0.001094,-0.001250,0.249997,0,0);}
.m7a_c00258{transform:matrix(0.219254,0.002193,-0.002500,0.249988,0,0);-ms-transform:matrix(0.219254,0.002193,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.219254,0.002193,-0.002500,0.249988,0,0);}
.m43_c00258{transform:matrix(0.219712,0.001099,-0.001250,0.249997,0,0);-ms-transform:matrix(0.219712,0.001099,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.219712,0.001099,-0.001250,0.249997,0,0);}
.mbf_c00258{transform:matrix(0.219999,0.002200,-0.002500,0.249988,0,0);-ms-transform:matrix(0.219999,0.002200,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.219999,0.002200,-0.002500,0.249988,0,0);}
.mbe_c00258{transform:matrix(0.220369,0.002204,-0.002500,0.249988,0,0);-ms-transform:matrix(0.220369,0.002204,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.220369,0.002204,-0.002500,0.249988,0,0);}
.m6a_c00258{transform:matrix(0.220449,0.002204,-0.002500,0.249988,0,0);-ms-transform:matrix(0.220449,0.002204,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.220449,0.002204,-0.002500,0.249988,0,0);}
.m137_c00258{transform:matrix(0.220462,0.002425,-0.002750,0.249985,0,0);-ms-transform:matrix(0.220462,0.002425,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.220462,0.002425,-0.002750,0.249985,0,0);}
.ma5_c00258{transform:matrix(0.220579,0.002206,-0.002500,0.249988,0,0);-ms-transform:matrix(0.220579,0.002206,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.220579,0.002206,-0.002500,0.249988,0,0);}
.med_c00258{transform:matrix(0.220719,0.002207,-0.002500,0.249988,0,0);-ms-transform:matrix(0.220719,0.002207,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.220719,0.002207,-0.002500,0.249988,0,0);}
.m81_c00258{transform:matrix(0.220784,0.002208,-0.002500,0.249988,0,0);-ms-transform:matrix(0.220784,0.002208,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.220784,0.002208,-0.002500,0.249988,0,0);}
.m86_c00258{transform:matrix(0.221079,0.002211,-0.002500,0.249988,0,0);-ms-transform:matrix(0.221079,0.002211,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.221079,0.002211,-0.002500,0.249988,0,0);}
.m8e_c00258{transform:matrix(0.221454,0.002215,-0.002500,0.249988,0,0);-ms-transform:matrix(0.221454,0.002215,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.221454,0.002215,-0.002500,0.249988,0,0);}
.m7e_c00258{transform:matrix(0.221589,0.002216,-0.002500,0.249988,0,0);-ms-transform:matrix(0.221589,0.002216,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.221589,0.002216,-0.002500,0.249988,0,0);}
.mc4_c00258{transform:matrix(0.221699,0.002217,-0.002500,0.249988,0,0);-ms-transform:matrix(0.221699,0.002217,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.221699,0.002217,-0.002500,0.249988,0,0);}
.m12_c00258{transform:matrix(0.221878,0.001775,-0.002000,0.249992,0,0);-ms-transform:matrix(0.221878,0.001775,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.221878,0.001775,-0.002000,0.249992,0,0);}
.m8a_c00258{transform:matrix(0.222359,0.002224,-0.002500,0.249988,0,0);-ms-transform:matrix(0.222359,0.002224,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.222359,0.002224,-0.002500,0.249988,0,0);}
.m96_c00258{transform:matrix(0.222454,0.002225,-0.002500,0.249988,0,0);-ms-transform:matrix(0.222454,0.002225,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.222454,0.002225,-0.002500,0.249988,0,0);}
.md_c00258{transform:matrix(0.222483,0.001780,-0.002000,0.249992,0,0);-ms-transform:matrix(0.222483,0.001780,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.222483,0.001780,-0.002000,0.249992,0,0);}
.m12e_c00258{transform:matrix(0.222547,0.002448,-0.002750,0.249985,0,0);-ms-transform:matrix(0.222547,0.002448,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.222547,0.002448,-0.002750,0.249985,0,0);}
.m47_c00258{transform:matrix(0.222927,0.001115,-0.001250,0.249997,0,0);-ms-transform:matrix(0.222927,0.001115,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.222927,0.001115,-0.001250,0.249997,0,0);}
.m100_c00258{transform:matrix(0.223019,0.002230,-0.002500,0.249988,0,0);-ms-transform:matrix(0.223019,0.002230,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.223019,0.002230,-0.002500,0.249988,0,0);}
.m89_c00258{transform:matrix(0.223244,0.002232,-0.002500,0.249988,0,0);-ms-transform:matrix(0.223244,0.002232,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.223244,0.002232,-0.002500,0.249988,0,0);}
.m44_c00258{transform:matrix(0.223462,0.001117,-0.001250,0.249997,0,0);-ms-transform:matrix(0.223462,0.001117,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.223462,0.001117,-0.001250,0.249997,0,0);}
.m134_c00258{transform:matrix(0.223471,0.002458,-0.002750,0.249985,0,0);-ms-transform:matrix(0.223471,0.002458,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.223471,0.002458,-0.002750,0.249985,0,0);}
.m70_c00258{transform:matrix(0.223644,0.002236,-0.002500,0.249988,0,0);-ms-transform:matrix(0.223644,0.002236,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.223644,0.002236,-0.002500,0.249988,0,0);}
.mf5_c00258{transform:matrix(0.223944,0.002239,-0.002500,0.249988,0,0);-ms-transform:matrix(0.223944,0.002239,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.223944,0.002239,-0.002500,0.249988,0,0);}
.m5a_c00258{transform:matrix(0.224391,0.002020,-0.002250,0.249990,0,0);-ms-transform:matrix(0.224391,0.002020,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.224391,0.002020,-0.002250,0.249990,0,0);}
.m90_c00258{transform:matrix(0.224434,0.002244,-0.002500,0.249988,0,0);-ms-transform:matrix(0.224434,0.002244,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.224434,0.002244,-0.002500,0.249988,0,0);}
.m11a_c00258{transform:matrix(0.224489,0.002245,-0.002500,0.249988,0,0);-ms-transform:matrix(0.224489,0.002245,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.224489,0.002245,-0.002500,0.249988,0,0);}
.m93_c00258{transform:matrix(0.224619,0.002246,-0.002500,0.249988,0,0);-ms-transform:matrix(0.224619,0.002246,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.224619,0.002246,-0.002500,0.249988,0,0);}
.mf1_c00258{transform:matrix(0.224644,0.002246,-0.002500,0.249988,0,0);-ms-transform:matrix(0.224644,0.002246,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.224644,0.002246,-0.002500,0.249988,0,0);}
.m117_c00258{transform:matrix(0.224834,0.002248,-0.002500,0.249988,0,0);-ms-transform:matrix(0.224834,0.002248,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.224834,0.002248,-0.002500,0.249988,0,0);}
.mb5_c00258{transform:matrix(0.225049,0.002250,-0.002500,0.249988,0,0);-ms-transform:matrix(0.225049,0.002250,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.225049,0.002250,-0.002500,0.249988,0,0);}
.m9a_c00258{transform:matrix(0.225219,0.002252,-0.002500,0.249988,0,0);-ms-transform:matrix(0.225219,0.002252,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.225219,0.002252,-0.002500,0.249988,0,0);}
.mc6_c00258{transform:matrix(0.225244,0.002252,-0.002500,0.249988,0,0);-ms-transform:matrix(0.225244,0.002252,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.225244,0.002252,-0.002500,0.249988,0,0);}
.m72_c00258{transform:matrix(0.225259,0.002253,-0.002500,0.249988,0,0);-ms-transform:matrix(0.225259,0.002253,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.225259,0.002253,-0.002500,0.249988,0,0);}
.m12f_c00258{transform:matrix(0.225721,0.002483,-0.002750,0.249985,0,0);-ms-transform:matrix(0.225721,0.002483,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.225721,0.002483,-0.002750,0.249985,0,0);}
.m50_c00258{transform:matrix(0.226331,0.002037,-0.002250,0.249990,0,0);-ms-transform:matrix(0.226331,0.002037,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.226331,0.002037,-0.002250,0.249990,0,0);}
.m12b_c00258{transform:matrix(0.227676,0.002504,-0.002750,0.249985,0,0);-ms-transform:matrix(0.227676,0.002504,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.227676,0.002504,-0.002750,0.249985,0,0);}
.m6c_c00258{transform:matrix(0.228434,0.002284,-0.002500,0.249988,0,0);-ms-transform:matrix(0.228434,0.002284,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.228434,0.002284,-0.002500,0.249988,0,0);}
.m13b_c00258{transform:matrix(0.228531,0.002514,-0.002750,0.249985,0,0);-ms-transform:matrix(0.228531,0.002514,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.228531,0.002514,-0.002750,0.249985,0,0);}
.mf3_c00258{transform:matrix(0.228989,0.002290,-0.002500,0.249988,0,0);-ms-transform:matrix(0.228989,0.002290,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.228989,0.002290,-0.002500,0.249988,0,0);}
.m111_c00258{transform:matrix(0.230063,0.002301,-0.002500,0.249988,0,0);-ms-transform:matrix(0.230063,0.002301,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.230063,0.002301,-0.002500,0.249988,0,0);}
.m8c_c00258{transform:matrix(0.230588,0.002306,-0.002500,0.249988,0,0);-ms-transform:matrix(0.230588,0.002306,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.230588,0.002306,-0.002500,0.249988,0,0);}
.m11e_c00258{transform:matrix(0.230668,0.002307,-0.002500,0.249988,0,0);-ms-transform:matrix(0.230668,0.002307,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.230668,0.002307,-0.002500,0.249988,0,0);}
.m46_c00258{transform:matrix(0.230797,0.001154,-0.001250,0.249997,0,0);-ms-transform:matrix(0.230797,0.001154,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.230797,0.001154,-0.001250,0.249997,0,0);}
.mb7_c00258{transform:matrix(0.231183,0.002312,-0.002500,0.249988,0,0);-ms-transform:matrix(0.231183,0.002312,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.231183,0.002312,-0.002500,0.249988,0,0);}
.m126_c00258{transform:matrix(0.231603,0.002779,-0.003000,0.249982,0,0);-ms-transform:matrix(0.231603,0.002779,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.231603,0.002779,-0.003000,0.249982,0,0);}
.mb6_c00258{transform:matrix(0.231638,0.002316,-0.002500,0.249988,0,0);-ms-transform:matrix(0.231638,0.002316,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.231638,0.002316,-0.002500,0.249988,0,0);}
.m3_c00258{transform:matrix(0.231643,0.001853,-0.002000,0.249992,0,0);-ms-transform:matrix(0.231643,0.001853,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.231643,0.001853,-0.002000,0.249992,0,0);}
.m108_c00258{transform:matrix(0.231968,0.002320,-0.002500,0.249988,0,0);-ms-transform:matrix(0.231968,0.002320,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.231968,0.002320,-0.002500,0.249988,0,0);}
.m5d_c00258{transform:matrix(0.232346,0.002091,-0.002250,0.249990,0,0);-ms-transform:matrix(0.232346,0.002091,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.232346,0.002091,-0.002250,0.249990,0,0);}
.m62_c00258{transform:matrix(0.232426,0.002092,-0.002250,0.249990,0,0);-ms-transform:matrix(0.232426,0.002092,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.232426,0.002092,-0.002250,0.249990,0,0);}
.m10e_c00258{transform:matrix(0.232488,0.002325,-0.002500,0.249988,0,0);-ms-transform:matrix(0.232488,0.002325,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.232488,0.002325,-0.002500,0.249988,0,0);}
.m124_c00258{transform:matrix(0.232553,0.002791,-0.003000,0.249982,0,0);-ms-transform:matrix(0.232553,0.002791,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.232553,0.002791,-0.003000,0.249982,0,0);}
.m33_c00258{transform:matrix(0.232618,0.001861,-0.002000,0.249992,0,0);-ms-transform:matrix(0.232618,0.001861,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.232618,0.001861,-0.002000,0.249992,0,0);}
.m77_c00258{transform:matrix(0.232943,0.002329,-0.002500,0.249988,0,0);-ms-transform:matrix(0.232943,0.002329,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.232943,0.002329,-0.002500,0.249988,0,0);}
.m52_c00258{transform:matrix(0.232946,0.002097,-0.002250,0.249990,0,0);-ms-transform:matrix(0.232946,0.002097,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.232946,0.002097,-0.002250,0.249990,0,0);}
.m48_c00258{transform:matrix(0.232987,0.001165,-0.001250,0.249997,0,0);-ms-transform:matrix(0.232987,0.001165,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.232987,0.001165,-0.001250,0.249997,0,0);}
.mb8_c00258{transform:matrix(0.233033,0.002330,-0.002500,0.249988,0,0);-ms-transform:matrix(0.233033,0.002330,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.233033,0.002330,-0.002500,0.249988,0,0);}
.m103_c00258{transform:matrix(0.233128,0.002331,-0.002500,0.249988,0,0);-ms-transform:matrix(0.233128,0.002331,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.233128,0.002331,-0.002500,0.249988,0,0);}
.m6d_c00258{transform:matrix(0.233143,0.002331,-0.002500,0.249988,0,0);-ms-transform:matrix(0.233143,0.002331,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.233143,0.002331,-0.002500,0.249988,0,0);}
.m57_c00258{transform:matrix(0.233191,0.002099,-0.002250,0.249990,0,0);-ms-transform:matrix(0.233191,0.002099,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.233191,0.002099,-0.002250,0.249990,0,0);}
.mc3_c00258{transform:matrix(0.233683,0.002337,-0.002500,0.249988,0,0);-ms-transform:matrix(0.233683,0.002337,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.233683,0.002337,-0.002500,0.249988,0,0);}
.mfd_c00258{transform:matrix(0.234248,0.002342,-0.002500,0.249988,0,0);-ms-transform:matrix(0.234248,0.002342,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.234248,0.002342,-0.002500,0.249988,0,0);}
.m121_c00258{transform:matrix(0.234258,0.002811,-0.003000,0.249982,0,0);-ms-transform:matrix(0.234258,0.002811,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.234258,0.002811,-0.003000,0.249982,0,0);}
.m109_c00258{transform:matrix(0.234368,0.002344,-0.002500,0.249988,0,0);-ms-transform:matrix(0.234368,0.002344,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.234368,0.002344,-0.002500,0.249988,0,0);}
.m8f_c00258{transform:matrix(0.234578,0.002346,-0.002500,0.249988,0,0);-ms-transform:matrix(0.234578,0.002346,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.234578,0.002346,-0.002500,0.249988,0,0);}
.mc1_c00258{transform:matrix(0.234643,0.002346,-0.002500,0.249988,0,0);-ms-transform:matrix(0.234643,0.002346,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.234643,0.002346,-0.002500,0.249988,0,0);}
.m63_c00258{transform:matrix(0.234740,0.002113,-0.002250,0.249990,0,0);-ms-transform:matrix(0.234740,0.002113,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.234740,0.002113,-0.002250,0.249990,0,0);}
.mbc_c00258{transform:matrix(0.234783,0.002348,-0.002500,0.249988,0,0);-ms-transform:matrix(0.234783,0.002348,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.234783,0.002348,-0.002500,0.249988,0,0);}
.mf4_c00258{transform:matrix(0.235118,0.002351,-0.002500,0.249988,0,0);-ms-transform:matrix(0.235118,0.002351,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.235118,0.002351,-0.002500,0.249988,0,0);}
.m106_c00258{transform:matrix(0.235188,0.002352,-0.002500,0.249988,0,0);-ms-transform:matrix(0.235188,0.002352,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.235188,0.002352,-0.002500,0.249988,0,0);}
.m7f_c00258{transform:matrix(0.235198,0.002352,-0.002500,0.249988,0,0);-ms-transform:matrix(0.235198,0.002352,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.235198,0.002352,-0.002500,0.249988,0,0);}
.m10a_c00258{transform:matrix(0.235293,0.002353,-0.002500,0.249988,0,0);-ms-transform:matrix(0.235293,0.002353,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.235293,0.002353,-0.002500,0.249988,0,0);}
.mb2_c00258{transform:matrix(0.235353,0.002354,-0.002500,0.249988,0,0);-ms-transform:matrix(0.235353,0.002354,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.235353,0.002354,-0.002500,0.249988,0,0);}
.mf0_c00258{transform:matrix(0.235553,0.002356,-0.002500,0.249988,0,0);-ms-transform:matrix(0.235553,0.002356,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.235553,0.002356,-0.002500,0.249988,0,0);}
.m78_c00258{transform:matrix(0.235988,0.002360,-0.002500,0.249988,0,0);-ms-transform:matrix(0.235988,0.002360,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.235988,0.002360,-0.002500,0.249988,0,0);}
.m49_c00258{transform:matrix(0.236477,0.001182,-0.001250,0.249997,0,0);-ms-transform:matrix(0.236477,0.001182,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.236477,0.001182,-0.001250,0.249997,0,0);}
.m6b_c00258{transform:matrix(0.236758,0.002368,-0.002500,0.249988,0,0);-ms-transform:matrix(0.236758,0.002368,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.236758,0.002368,-0.002500,0.249988,0,0);}
.m53_c00258{transform:matrix(0.236820,0.002131,-0.002250,0.249990,0,0);-ms-transform:matrix(0.236820,0.002131,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.236820,0.002131,-0.002250,0.249990,0,0);}
.m11_c00258{transform:matrix(0.236822,0.001895,-0.002000,0.249992,0,0);-ms-transform:matrix(0.236822,0.001895,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.236822,0.001895,-0.002000,0.249992,0,0);}
.m56_c00258{transform:matrix(0.236875,0.002132,-0.002250,0.249990,0,0);-ms-transform:matrix(0.236875,0.002132,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.236875,0.002132,-0.002250,0.249990,0,0);}
.m3d_c00258{transform:matrix(0.237017,0.001896,-0.002000,0.249992,0,0);-ms-transform:matrix(0.237017,0.001896,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.237017,0.001896,-0.002000,0.249992,0,0);}
.mff_c00258{transform:matrix(0.237938,0.002379,-0.002500,0.249988,0,0);-ms-transform:matrix(0.237938,0.002379,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.237938,0.002379,-0.002500,0.249988,0,0);}
.mf9_c00258{transform:matrix(0.239058,0.002391,-0.002500,0.249988,0,0);-ms-transform:matrix(0.239058,0.002391,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.239058,0.002391,-0.002500,0.249988,0,0);}
.m12d_c00258{transform:matrix(0.239436,0.002634,-0.002750,0.249985,0,0);-ms-transform:matrix(0.239436,0.002634,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.239436,0.002634,-0.002750,0.249985,0,0);}
.m8b_c00258{transform:matrix(0.239893,0.002399,-0.002500,0.249988,0,0);-ms-transform:matrix(0.239893,0.002399,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.239893,0.002399,-0.002500,0.249988,0,0);}
.m7_c00258{transform:matrix(0.240377,0.001923,-0.002000,0.249992,0,0);-ms-transform:matrix(0.240377,0.001923,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.240377,0.001923,-0.002000,0.249992,0,0);}
.m131_c00258{transform:matrix(0.240405,0.002644,-0.002750,0.249985,0,0);-ms-transform:matrix(0.240405,0.002644,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.240405,0.002644,-0.002750,0.249985,0,0);}
.m25_c00258{transform:matrix(0.240532,0.001924,-0.002000,0.249992,0,0);-ms-transform:matrix(0.240532,0.001924,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.240532,0.001924,-0.002000,0.249992,0,0);}
.m87_c00258{transform:matrix(0.240848,0.002408,-0.002500,0.249988,0,0);-ms-transform:matrix(0.240848,0.002408,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.240848,0.002408,-0.002500,0.249988,0,0);}
.mf_c00258{transform:matrix(0.240852,0.001927,-0.002000,0.249992,0,0);-ms-transform:matrix(0.240852,0.001927,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.240852,0.001927,-0.002000,0.249992,0,0);}
.mc5_c00258{transform:matrix(0.240863,0.002409,-0.002500,0.249988,0,0);-ms-transform:matrix(0.240863,0.002409,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.240863,0.002409,-0.002500,0.249988,0,0);}
.m84_c00258{transform:matrix(0.241198,0.002412,-0.002500,0.249988,0,0);-ms-transform:matrix(0.241198,0.002412,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.241198,0.002412,-0.002500,0.249988,0,0);}
.m76_c00258{transform:matrix(0.241283,0.002413,-0.002500,0.249988,0,0);-ms-transform:matrix(0.241283,0.002413,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.241283,0.002413,-0.002500,0.249988,0,0);}
.m36_c00258{transform:matrix(0.242537,0.001940,-0.002000,0.249992,0,0);-ms-transform:matrix(0.242537,0.001940,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.242537,0.001940,-0.002000,0.249992,0,0);}
.m17_c00258{transform:matrix(0.242642,0.001941,-0.002000,0.249992,0,0);-ms-transform:matrix(0.242642,0.001941,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.242642,0.001941,-0.002000,0.249992,0,0);}
.m18_c00258{transform:matrix(0.242647,0.001941,-0.002000,0.249992,0,0);-ms-transform:matrix(0.242647,0.001941,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.242647,0.001941,-0.002000,0.249992,0,0);}
.m29_c00258{transform:matrix(0.243282,0.001946,-0.002000,0.249992,0,0);-ms-transform:matrix(0.243282,0.001946,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.243282,0.001946,-0.002000,0.249992,0,0);}
.m75_c00258{transform:matrix(0.243308,0.002433,-0.002500,0.249988,0,0);-ms-transform:matrix(0.243308,0.002433,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.243308,0.002433,-0.002500,0.249988,0,0);}
.mf7_c00258{transform:matrix(0.243738,0.002437,-0.002500,0.249988,0,0);-ms-transform:matrix(0.243738,0.002437,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.243738,0.002437,-0.002500,0.249988,0,0);}
.m4e_c00258{transform:matrix(0.244327,0.001222,-0.001250,0.249997,0,0);-ms-transform:matrix(0.244327,0.001222,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.244327,0.001222,-0.001250,0.249997,0,0);}
.mfe_c00258{transform:matrix(0.244593,0.002446,-0.002500,0.249988,0,0);-ms-transform:matrix(0.244593,0.002446,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.244593,0.002446,-0.002500,0.249988,0,0);}
.m10c_c00258{transform:matrix(0.244723,0.002447,-0.002500,0.249988,0,0);-ms-transform:matrix(0.244723,0.002447,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.244723,0.002447,-0.002500,0.249988,0,0);}
.m2a_c00258{transform:matrix(0.244772,0.001958,-0.002000,0.249992,0,0);-ms-transform:matrix(0.244772,0.001958,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.244772,0.001958,-0.002000,0.249992,0,0);}
.m6e_c00258{transform:matrix(0.244913,0.002449,-0.002500,0.249988,0,0);-ms-transform:matrix(0.244913,0.002449,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.244913,0.002449,-0.002500,0.249988,0,0);}
.m133_c00258{transform:matrix(0.245010,0.002695,-0.002750,0.249985,0,0);-ms-transform:matrix(0.245010,0.002695,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.245010,0.002695,-0.002750,0.249985,0,0);}
.mc_c00258{transform:matrix(0.245347,0.001963,-0.002000,0.249992,0,0);-ms-transform:matrix(0.245347,0.001963,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.245347,0.001963,-0.002000,0.249992,0,0);}
.m10_c00258{transform:matrix(0.245502,0.001964,-0.002000,0.249992,0,0);-ms-transform:matrix(0.245502,0.001964,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.245502,0.001964,-0.002000,0.249992,0,0);}
.mf2_c00258{transform:matrix(0.245788,0.002458,-0.002500,0.249988,0,0);-ms-transform:matrix(0.245788,0.002458,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.245788,0.002458,-0.002500,0.249988,0,0);}
.m128_c00258{transform:matrix(0.245822,0.002950,-0.003000,0.249982,0,0);-ms-transform:matrix(0.245822,0.002950,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.245822,0.002950,-0.003000,0.249982,0,0);}
.m55_c00258{transform:matrix(0.245890,0.002213,-0.002250,0.249990,0,0);-ms-transform:matrix(0.245890,0.002213,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.245890,0.002213,-0.002250,0.249990,0,0);}
.mef_c00258{transform:matrix(0.245903,0.002459,-0.002500,0.249988,0,0);-ms-transform:matrix(0.245903,0.002459,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.245903,0.002459,-0.002500,0.249988,0,0);}
.m83_c00258{transform:matrix(0.245983,0.002460,-0.002500,0.249988,0,0);-ms-transform:matrix(0.245983,0.002460,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.245983,0.002460,-0.002500,0.249988,0,0);}
.m97_c00258{transform:matrix(0.246063,0.002461,-0.002500,0.249988,0,0);-ms-transform:matrix(0.246063,0.002461,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.246063,0.002461,-0.002500,0.249988,0,0);}
.m5c_c00258{transform:matrix(0.246290,0.002217,-0.002250,0.249990,0,0);-ms-transform:matrix(0.246290,0.002217,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.246290,0.002217,-0.002250,0.249990,0,0);}
.m125_c00258{transform:matrix(0.246917,0.002963,-0.003000,0.249982,0,0);-ms-transform:matrix(0.246917,0.002963,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.246917,0.002963,-0.003000,0.249982,0,0);}
.mb3_c00258{transform:matrix(0.247123,0.002471,-0.002500,0.249988,0,0);-ms-transform:matrix(0.247123,0.002471,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.247123,0.002471,-0.002500,0.249988,0,0);}
.m2e_c00258{transform:matrix(0.247512,0.001980,-0.002000,0.249992,0,0);-ms-transform:matrix(0.247512,0.001980,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.247512,0.001980,-0.002000,0.249992,0,0);}
.m11f_c00258{transform:matrix(0.247533,0.002475,-0.002500,0.249988,0,0);-ms-transform:matrix(0.247533,0.002475,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.247533,0.002475,-0.002500,0.249988,0,0);}
.m32_c00258{transform:matrix(0.248187,0.001985,-0.002000,0.249992,0,0);-ms-transform:matrix(0.248187,0.001985,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.248187,0.001985,-0.002000,0.249992,0,0);}
.m145_c00258{transform:matrix(0.248410,0.002733,-0.002750,0.249985,0,0);-ms-transform:matrix(0.248410,0.002733,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.248410,0.002733,-0.002750,0.249985,0,0);}
.mee_c00258{transform:matrix(0.249508,0.002495,-0.002500,0.249988,0,0);-ms-transform:matrix(0.249508,0.002495,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.249508,0.002495,-0.002500,0.249988,0,0);}
.m4f_c00258{transform:matrix(0.250112,0.001251,-0.001250,0.249997,0,0);-ms-transform:matrix(0.250112,0.001251,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.250112,0.001251,-0.001250,0.249997,0,0);}
.m7d_c00258{transform:matrix(0.250302,0.002503,-0.002500,0.249988,0,0);-ms-transform:matrix(0.250302,0.002503,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.250302,0.002503,-0.002500,0.249988,0,0);}
.m45_c00258{transform:matrix(0.250577,0.001253,-0.001250,0.249997,0,0);-ms-transform:matrix(0.250577,0.001253,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.250577,0.001253,-0.001250,0.249997,0,0);}
.me_c00258{transform:matrix(0.250697,0.002006,-0.002000,0.249992,0,0);-ms-transform:matrix(0.250697,0.002006,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.250697,0.002006,-0.002000,0.249992,0,0);}
.m79_c00258{transform:matrix(0.251137,0.002511,-0.002500,0.249988,0,0);-ms-transform:matrix(0.251137,0.002511,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.251137,0.002511,-0.002500,0.249988,0,0);}
.m13_c00258{transform:matrix(0.252142,0.002017,-0.002000,0.249992,0,0);-ms-transform:matrix(0.252142,0.002017,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.252142,0.002017,-0.002000,0.249992,0,0);}
.m2c_c00258{transform:matrix(0.252342,0.002019,-0.002000,0.249992,0,0);-ms-transform:matrix(0.252342,0.002019,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.252342,0.002019,-0.002000,0.249992,0,0);}
.m5f_c00258{transform:matrix(0.252400,0.002272,-0.002250,0.249990,0,0);-ms-transform:matrix(0.252400,0.002272,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.252400,0.002272,-0.002250,0.249990,0,0);}
.m120_c00258{transform:matrix(0.252572,0.002526,-0.002500,0.249988,0,0);-ms-transform:matrix(0.252572,0.002526,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.252572,0.002526,-0.002500,0.249988,0,0);}
.m3b_c00258{transform:matrix(0.252622,0.002021,-0.002000,0.249992,0,0);-ms-transform:matrix(0.252622,0.002021,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.252622,0.002021,-0.002000,0.249992,0,0);}
.m15_c00258{transform:matrix(0.252922,0.002023,-0.002000,0.249992,0,0);-ms-transform:matrix(0.252922,0.002023,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.252922,0.002023,-0.002000,0.249992,0,0);}
.m135_c00258{transform:matrix(0.253565,0.002789,-0.002750,0.249985,0,0);-ms-transform:matrix(0.253565,0.002789,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.253565,0.002789,-0.002750,0.249985,0,0);}
.m31_c00258{transform:matrix(0.253942,0.002032,-0.002000,0.249992,0,0);-ms-transform:matrix(0.253942,0.002032,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.253942,0.002032,-0.002000,0.249992,0,0);}
.m5e_c00258{transform:matrix(0.254165,0.002287,-0.002250,0.249990,0,0);-ms-transform:matrix(0.254165,0.002287,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.254165,0.002287,-0.002250,0.249990,0,0);}
.mb1_c00258{transform:matrix(0.254212,0.002542,-0.002500,0.249988,0,0);-ms-transform:matrix(0.254212,0.002542,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.254212,0.002542,-0.002500,0.249988,0,0);}
.ma_c00258{transform:matrix(0.254712,0.002038,-0.002000,0.249992,0,0);-ms-transform:matrix(0.254712,0.002038,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.254712,0.002038,-0.002000,0.249992,0,0);}
.m61_c00258{transform:matrix(0.254970,0.002295,-0.002250,0.249990,0,0);-ms-transform:matrix(0.254970,0.002295,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.254970,0.002295,-0.002250,0.249990,0,0);}
.m2f_c00258{transform:matrix(0.255117,0.002041,-0.002000,0.249992,0,0);-ms-transform:matrix(0.255117,0.002041,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.255117,0.002041,-0.002000,0.249992,0,0);}
.m74_c00258{transform:matrix(0.255117,0.002551,-0.002500,0.249988,0,0);-ms-transform:matrix(0.255117,0.002551,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.255117,0.002551,-0.002500,0.249988,0,0);}
.m42_c00258{transform:matrix(0.255277,0.002042,-0.002000,0.249992,0,0);-ms-transform:matrix(0.255277,0.002042,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.255277,0.002042,-0.002000,0.249992,0,0);}
.m37_c00258{transform:matrix(0.255682,0.002045,-0.002000,0.249992,0,0);-ms-transform:matrix(0.255682,0.002045,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.255682,0.002045,-0.002000,0.249992,0,0);}
.m51_c00258{transform:matrix(0.255960,0.002304,-0.002250,0.249990,0,0);-ms-transform:matrix(0.255960,0.002304,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.255960,0.002304,-0.002250,0.249990,0,0);}
.m101_c00258{transform:matrix(0.255972,0.002560,-0.002500,0.249988,0,0);-ms-transform:matrix(0.255972,0.002560,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.255972,0.002560,-0.002500,0.249988,0,0);}
.m129_c00258{transform:matrix(0.256257,0.003075,-0.003000,0.249982,0,0);-ms-transform:matrix(0.256257,0.003075,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.256257,0.003075,-0.003000,0.249982,0,0);}
.m102_c00258{transform:matrix(0.256462,0.002565,-0.002500,0.249988,0,0);-ms-transform:matrix(0.256462,0.002565,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.256462,0.002565,-0.002500,0.249988,0,0);}
.m35_c00258{transform:matrix(0.256557,0.002052,-0.002000,0.249992,0,0);-ms-transform:matrix(0.256557,0.002052,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.256557,0.002052,-0.002000,0.249992,0,0);}
.mfc_c00258{transform:matrix(0.256597,0.002566,-0.002500,0.249988,0,0);-ms-transform:matrix(0.256597,0.002566,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.256597,0.002566,-0.002500,0.249988,0,0);}
.m67_c00258{transform:matrix(0.257140,0.002314,-0.002250,0.249990,0,0);-ms-transform:matrix(0.257140,0.002314,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.257140,0.002314,-0.002250,0.249990,0,0);}
.m11b_c00258{transform:matrix(0.257662,0.002577,-0.002500,0.249988,0,0);-ms-transform:matrix(0.257662,0.002577,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.257662,0.002577,-0.002500,0.249988,0,0);}
.m41_c00258{transform:matrix(0.258202,0.002066,-0.002000,0.249992,0,0);-ms-transform:matrix(0.258202,0.002066,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.258202,0.002066,-0.002000,0.249992,0,0);}
.m39_c00258{transform:matrix(0.258517,0.002068,-0.002000,0.249992,0,0);-ms-transform:matrix(0.258517,0.002068,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.258517,0.002068,-0.002000,0.249992,0,0);}
.m4c_c00258{transform:matrix(0.258597,0.001293,-0.001250,0.249997,0,0);-ms-transform:matrix(0.258597,0.001293,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.258597,0.001293,-0.001250,0.249997,0,0);}
.m123_c00258{transform:matrix(0.258911,0.003107,-0.003000,0.249982,0,0);-ms-transform:matrix(0.258911,0.003107,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.258911,0.003107,-0.003000,0.249982,0,0);}
.m4b_c00258{transform:matrix(0.258992,0.001295,-0.001250,0.249997,0,0);-ms-transform:matrix(0.258992,0.001295,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.258992,0.001295,-0.001250,0.249997,0,0);}
.mfa_c00258{transform:matrix(0.259507,0.002595,-0.002500,0.249988,0,0);-ms-transform:matrix(0.259507,0.002595,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.259507,0.002595,-0.002500,0.249988,0,0);}
.m59_c00258{transform:matrix(0.259604,0.002336,-0.002250,0.249990,0,0);-ms-transform:matrix(0.259604,0.002336,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.259604,0.002336,-0.002250,0.249990,0,0);}
.m7c_c00258{transform:matrix(0.259887,0.002599,-0.002500,0.249988,0,0);-ms-transform:matrix(0.259887,0.002599,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.259887,0.002599,-0.002500,0.249988,0,0);}
.m3e_c00258{transform:matrix(0.259912,0.002079,-0.002000,0.249992,0,0);-ms-transform:matrix(0.259912,0.002079,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.259912,0.002079,-0.002000,0.249992,0,0);}
.m122_c00258{transform:matrix(0.260171,0.003122,-0.003000,0.249982,0,0);-ms-transform:matrix(0.260171,0.003122,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.260171,0.003122,-0.003000,0.249982,0,0);}
.m118_c00258{transform:matrix(0.260312,0.002603,-0.002500,0.249988,0,0);-ms-transform:matrix(0.260312,0.002603,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.260312,0.002603,-0.002500,0.249988,0,0);}
.m7b_c00258{transform:matrix(0.260667,0.002607,-0.002500,0.249988,0,0);-ms-transform:matrix(0.260667,0.002607,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.260667,0.002607,-0.002500,0.249988,0,0);}
.mba_c00258{transform:matrix(0.260992,0.002610,-0.002500,0.249988,0,0);-ms-transform:matrix(0.260992,0.002610,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.260992,0.002610,-0.002500,0.249988,0,0);}
.mfb_c00258{transform:matrix(0.261142,0.002611,-0.002500,0.249988,0,0);-ms-transform:matrix(0.261142,0.002611,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.261142,0.002611,-0.002500,0.249988,0,0);}
.m12a_c00258{transform:matrix(0.261491,0.003138,-0.003000,0.249982,0,0);-ms-transform:matrix(0.261491,0.003138,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.261491,0.003138,-0.003000,0.249982,0,0);}
.m64_c00258{transform:matrix(0.261974,0.002358,-0.002250,0.249990,0,0);-ms-transform:matrix(0.261974,0.002358,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.261974,0.002358,-0.002250,0.249990,0,0);}
.m2d_c00258{transform:matrix(0.262297,0.002098,-0.002000,0.249992,0,0);-ms-transform:matrix(0.262297,0.002098,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.262297,0.002098,-0.002000,0.249992,0,0);}
.m3c_c00258{transform:matrix(0.262352,0.002099,-0.002000,0.249992,0,0);-ms-transform:matrix(0.262352,0.002099,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.262352,0.002099,-0.002000,0.249992,0,0);}
.mb9_c00258{transform:matrix(0.262902,0.002629,-0.002500,0.249988,0,0);-ms-transform:matrix(0.262902,0.002629,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.262902,0.002629,-0.002500,0.249988,0,0);}
.m34_c00258{transform:matrix(0.263137,0.002105,-0.002000,0.249992,0,0);-ms-transform:matrix(0.263137,0.002105,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.263137,0.002105,-0.002000,0.249992,0,0);}
.m127_c00258{transform:matrix(0.263376,0.003161,-0.003000,0.249982,0,0);-ms-transform:matrix(0.263376,0.003161,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.263376,0.003161,-0.003000,0.249982,0,0);}
.m60_c00258{transform:matrix(0.263964,0.002376,-0.002250,0.249990,0,0);-ms-transform:matrix(0.263964,0.002376,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.263964,0.002376,-0.002250,0.249990,0,0);}
.mb_c00258{transform:matrix(0.264752,0.002118,-0.002000,0.249992,0,0);-ms-transform:matrix(0.264752,0.002118,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.264752,0.002118,-0.002000,0.249992,0,0);}
.m0_c00258{transform:matrix(0.266665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266665,0.000000,0.000000,0.250000,0,0);}
.m11c_c00258{transform:matrix(0.266867,0.002669,-0.002500,0.249988,0,0);-ms-transform:matrix(0.266867,0.002669,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.266867,0.002669,-0.002500,0.249988,0,0);}
.m38_c00258{transform:matrix(0.268136,0.002145,-0.002000,0.249992,0,0);-ms-transform:matrix(0.268136,0.002145,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.268136,0.002145,-0.002000,0.249992,0,0);}
.m3a_c00258{transform:matrix(0.269056,0.002152,-0.002000,0.249992,0,0);-ms-transform:matrix(0.269056,0.002152,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.269056,0.002152,-0.002000,0.249992,0,0);}
.m66_c00258{transform:matrix(0.270304,0.002433,-0.002250,0.249990,0,0);-ms-transform:matrix(0.270304,0.002433,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.270304,0.002433,-0.002250,0.249990,0,0);}
.m1c_c00258{transform:matrix(0.274321,0.002195,-0.002000,0.249992,0,0);-ms-transform:matrix(0.274321,0.002195,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.274321,0.002195,-0.002000,0.249992,0,0);}
.m19_c00258{transform:matrix(0.275796,0.002206,-0.002000,0.249992,0,0);-ms-transform:matrix(0.275796,0.002206,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.275796,0.002206,-0.002000,0.249992,0,0);}
.m1b_c00258{transform:matrix(0.280971,0.002248,-0.002000,0.249992,0,0);-ms-transform:matrix(0.280971,0.002248,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.280971,0.002248,-0.002000,0.249992,0,0);}
.m3f_c00258{transform:matrix(0.288811,0.002310,-0.002000,0.249992,0,0);-ms-transform:matrix(0.288811,0.002310,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.288811,0.002310,-0.002000,0.249992,0,0);}
.m82_c00258{transform:matrix(0.294665,0.002947,-0.002500,0.249988,0,0);-ms-transform:matrix(0.294665,0.002947,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.294665,0.002947,-0.002500,0.249988,0,0);}
.m28_c00258{transform:matrix(0.296806,0.002374,-0.002000,0.249992,0,0);-ms-transform:matrix(0.296806,0.002374,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.296806,0.002374,-0.002000,0.249992,0,0);}
.m9_c00258{transform:matrix(0.304825,0.002439,-0.002000,0.249992,0,0);-ms-transform:matrix(0.304825,0.002439,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.304825,0.002439,-0.002000,0.249992,0,0);}
.m92_c00258{transform:matrix(0.306750,0.003067,-0.002500,0.249988,0,0);-ms-transform:matrix(0.306750,0.003067,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.306750,0.003067,-0.002500,0.249988,0,0);}
.m104_c00258{transform:matrix(0.314954,0.003150,-0.002500,0.249988,0,0);-ms-transform:matrix(0.314954,0.003150,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.314954,0.003150,-0.002500,0.249988,0,0);}
.mc9_c00258{transform:matrix(0.315564,0.003156,-0.002500,0.249988,0,0);-ms-transform:matrix(0.315564,0.003156,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.315564,0.003156,-0.002500,0.249988,0,0);}
.m142_c00258{transform:matrix(0.329535,0.003625,-0.002750,0.249985,0,0);-ms-transform:matrix(0.329535,0.003625,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.329535,0.003625,-0.002750,0.249985,0,0);}
.m105_c00258{transform:matrix(0.341438,0.003414,-0.002500,0.249988,0,0);-ms-transform:matrix(0.341438,0.003414,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.341438,0.003414,-0.002500,0.249988,0,0);}
.m115_c00258{transform:matrix(0.363072,0.003631,-0.002500,0.249988,0,0);-ms-transform:matrix(0.363072,0.003631,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.363072,0.003631,-0.002500,0.249988,0,0);}
.mc7_c00258{transform:matrix(0.391045,0.003910,-0.002500,0.249988,0,0);-ms-transform:matrix(0.391045,0.003910,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.391045,0.003910,-0.002500,0.249988,0,0);}
.m13f_c00258{transform:matrix(0.598004,0.006578,-0.002750,0.249985,0,0);-ms-transform:matrix(0.598004,0.006578,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.598004,0.006578,-0.002750,0.249985,0,0);}
.v0_c00258{vertical-align:0.000000px;}
.ls0_c00258{letter-spacing:0.000000px;}
.sc__c00258{text-shadow:none;}
.sc0_c00258{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__c00258{-webkit-text-stroke:0px transparent;}
.sc0_c00258{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00258{word-spacing:0.000000px;}
.fc0_c00258{color:transparent;}
.fs0_c00258{font-size:54.000000px;}
.fs3_c00258{font-size:72.002304px;}
.fs5_c00258{font-size:78.000975px;}
.fs2_c00258{font-size:78.002496px;}
.fs6_c00258{font-size:78.003159px;}
.fs8_c00258{font-size:78.003900px;}
.fse_c00258{font-size:78.005616px;}
.fs1_c00258{font-size:84.002688px;}
.fs7_c00258{font-size:84.004200px;}
.fsf_c00258{font-size:84.005082px;}
.fs9_c00258{font-size:90.004500px;}
.fs10_c00258{font-size:90.005445px;}
.fs4_c00258{font-size:96.003072px;}
.fsb_c00258{font-size:96.004800px;}
.fs11_c00258{font-size:96.005808px;}
.fsc_c00258{font-size:102.005100px;}
.fsd_c00258{font-size:108.004374px;}
.fsa_c00258{font-size:114.005700px;}
.y0_c00258{bottom:0.000000px;}
.y146_c00258{bottom:19.484413px;}
.y147_c00258{bottom:19.484476px;}
.y149_c00258{bottom:19.484682px;}
.y145_c00258{bottom:19.484814px;}
.y148_c00258{bottom:19.484839px;}
.y144_c00258{bottom:34.129512px;}
.y143_c00258{bottom:34.497874px;}
.y142_c00258{bottom:35.706714px;}
.y141_c00258{bottom:36.179043px;}
.y140_c00258{bottom:36.556249px;}
.y13f_c00258{bottom:37.141339px;}
.y13e_c00258{bottom:38.608503px;}
.y13d_c00258{bottom:39.089874px;}
.y13c_c00258{bottom:40.043244px;}
.y13b_c00258{bottom:40.423486px;}
.y13a_c00258{bottom:41.501662px;}
.y139_c00258{bottom:42.120000px;}
.y138_c00258{bottom:65.520703px;}
.y137_c00258{bottom:65.888802px;}
.y136_c00258{bottom:67.578732px;}
.y135_c00258{bottom:68.051160px;}
.y134_c00258{bottom:69.152700px;}
.y133_c00258{bottom:69.624963px;}
.y132_c00258{bottom:70.230909px;}
.y131_c00258{bottom:70.834182px;}
.y130_c00258{bottom:72.049060px;}
.y12f_c00258{bottom:72.533039px;}
.y12e_c00258{bottom:72.901500px;}
.y12d_c00258{bottom:98.023326px;}
.y12c_c00258{bottom:99.092598px;}
.y12b_c00258{bottom:99.494556px;}
.y12a_c00258{bottom:101.069232px;}
.y129_c00258{bottom:101.587524px;}
.y128_c00258{bottom:102.381414px;}
.y127_c00258{bottom:103.029450px;}
.y126_c00258{bottom:104.354700px;}
.y125_c00258{bottom:104.629722px;}
.y124_c00258{bottom:105.031500px;}
.y123_c00258{bottom:131.036595px;}
.y122_c00258{bottom:131.729595px;}
.y121_c00258{bottom:132.130170px;}
.y120_c00258{bottom:132.423645px;}
.y11f_c00258{bottom:133.823190px;}
.y11e_c00258{bottom:134.114175px;}
.y11d_c00258{bottom:135.103620px;}
.y11c_c00258{bottom:135.488220px;}
.y11b_c00258{bottom:135.784395px;}
.y11a_c00258{bottom:136.883610px;}
.y119_c00258{bottom:162.195225px;}
.y118_c00258{bottom:162.709695px;}
.y117_c00258{bottom:163.786995px;}
.y116_c00258{bottom:164.424930px;}
.y115_c00258{bottom:164.958705px;}
.y114_c00258{bottom:165.609300px;}
.y113_c00258{bottom:167.470170px;}
.y112_c00258{bottom:168.389910px;}
.y111_c00258{bottom:168.768780px;}
.y110_c00258{bottom:169.216740px;}
.y10f_c00258{bottom:169.825980px;}
.y10e_c00258{bottom:194.286795px;}
.y10d_c00258{bottom:194.658975px;}
.y10c_c00258{bottom:195.499560px;}
.y10b_c00258{bottom:195.743175px;}
.y10a_c00258{bottom:196.712205px;}
.y109_c00258{bottom:197.184945px;}
.y108_c00258{bottom:197.549880px;}
.y107_c00258{bottom:198.637290px;}
.y106_c00258{bottom:198.871935px;}
.y105_c00258{bottom:199.596480px;}
.y104_c00258{bottom:200.339025px;}
.y103_c00258{bottom:224.737755px;}
.y102_c00258{bottom:225.842055px;}
.y101_c00258{bottom:226.271355px;}
.y100_c00258{bottom:226.722045px;}
.yff_c00258{bottom:227.378415px;}
.yfe_c00258{bottom:227.926440px;}
.yfd_c00258{bottom:228.920175px;}
.yfc_c00258{bottom:230.121780px;}
.yfb_c00258{bottom:231.120810px;}
.yfa_c00258{bottom:257.149545px;}
.yf9_c00258{bottom:257.443110px;}
.yf8_c00258{bottom:258.041550px;}
.yf7_c00258{bottom:258.335115px;}
.yf6_c00258{bottom:258.643530px;}
.yf5_c00258{bottom:259.028235px;}
.yf4_c00258{bottom:259.520790px;}
.yf3_c00258{bottom:260.012355px;}
.yf2_c00258{bottom:260.614335px;}
.yf1_c00258{bottom:260.905545px;}
.yf0_c00258{bottom:261.208695px;}
.yef_c00258{bottom:261.890790px;}
.yee_c00258{bottom:262.590450px;}
.yed_c00258{bottom:262.978905px;}
.yec_c00258{bottom:288.014880px;}
.yeb_c00258{bottom:288.665715px;}
.yea_c00258{bottom:289.653915px;}
.ye9_c00258{bottom:289.977825px;}
.ye8_c00258{bottom:290.874075px;}
.ye7_c00258{bottom:291.189960px;}
.ye6_c00258{bottom:291.635490px;}
.ye5_c00258{bottom:292.172895px;}
.ye4_c00258{bottom:292.726530px;}
.ye3_c00258{bottom:293.933610px;}
.ye2_c00258{bottom:294.381495px;}
.ye1_c00258{bottom:294.841500px;}
.ye0_c00258{bottom:319.723098px;}
.ydf_c00258{bottom:320.019814px;}
.yde_c00258{bottom:320.515345px;}
.ydd_c00258{bottom:321.417213px;}
.ydc_c00258{bottom:321.992840px;}
.ydb_c00258{bottom:322.493635px;}
.yda_c00258{bottom:323.487573px;}
.yd9_c00258{bottom:323.873902px;}
.yd8_c00258{bottom:324.185037px;}
.yd7_c00258{bottom:324.678084px;}
.yd6_c00258{bottom:324.976960px;}
.yd5_c00258{bottom:325.859348px;}
.yd4_c00258{bottom:326.166000px;}
.yd3_c00258{bottom:352.296570px;}
.yd2_c00258{bottom:352.999380px;}
.yd1_c00258{bottom:353.789055px;}
.yd0_c00258{bottom:354.132840px;}
.ycf_c00258{bottom:354.486975px;}
.yce_c00258{bottom:354.922860px;}
.ycd_c00258{bottom:355.364400px;}
.ycc_c00258{bottom:355.986075px;}
.ycb_c00258{bottom:356.681550px;}
.yca_c00258{bottom:357.028905px;}
.yc9_c00258{bottom:357.206070px;}
.yc8_c00258{bottom:357.745920px;}
.yc7_c00258{bottom:382.843815px;}
.yc6_c00258{bottom:383.175975px;}
.yc5_c00258{bottom:384.374880px;}
.yc4_c00258{bottom:384.715065px;}
.yc3_c00258{bottom:385.471110px;}
.yc2_c00258{bottom:385.797720px;}
.yc1_c00258{bottom:386.683470px;}
.yc0_c00258{bottom:387.007185px;}
.ybf_c00258{bottom:387.447270px;}
.ybe_c00258{bottom:387.995400px;}
.ybd_c00258{bottom:388.546440px;}
.ybc_c00258{bottom:389.540130px;}
.ybb_c00258{bottom:389.877795px;}
.yba_c00258{bottom:416.502825px;}
.yb9_c00258{bottom:417.401355px;}
.yb8_c00258{bottom:417.880590px;}
.yb7_c00258{bottom:418.376055px;}
.yb6_c00258{bottom:419.277390px;}
.yb5_c00258{bottom:419.665605px;}
.yb4_c00258{bottom:419.869875px;}
.yb3_c00258{bottom:420.450675px;}
.yb2_c00258{bottom:420.848790px;}
.yb1_c00258{bottom:421.738020px;}
.yb0_c00258{bottom:447.859980px;}
.yaf_c00258{bottom:448.513260px;}
.yae_c00258{bottom:448.848015px;}
.yad_c00258{bottom:449.182800px;}
.yac_c00258{bottom:449.617485px;}
.yab_c00258{bottom:450.160215px;}
.yaa_c00258{bottom:450.714015px;}
.ya9_c00258{bottom:452.477190px;}
.ya8_c00258{bottom:452.812020px;}
.ya7_c00258{bottom:454.008195px;}
.ya6_c00258{bottom:454.680465px;}
.ya5_c00258{bottom:478.824555px;}
.ya4_c00258{bottom:479.926290px;}
.ya3_c00258{bottom:480.455280px;}
.ya2_c00258{bottom:481.006350px;}
.ya1_c00258{bottom:482.105355px;}
.ya0_c00258{bottom:482.764020px;}
.y9f_c00258{bottom:482.990670px;}
.y9e_c00258{bottom:484.530570px;}
.y9d_c00258{bottom:485.526030px;}
.y9c_c00258{bottom:485.730000px;}
.y9b_c00258{bottom:511.395975px;}
.y9a_c00258{bottom:512.192760px;}
.y99_c00258{bottom:512.627295px;}
.y98_c00258{bottom:513.056790px;}
.y97_c00258{bottom:514.014495px;}
.y96_c00258{bottom:514.652010px;}
.y95_c00258{bottom:515.094510px;}
.y94_c00258{bottom:515.360625px;}
.y93_c00258{bottom:516.235170px;}
.y92_c00258{bottom:541.249785px;}
.y91_c00258{bottom:541.638480px;}
.y90_c00258{bottom:542.231370px;}
.y8f_c00258{bottom:542.926875px;}
.y8e_c00258{bottom:543.320835px;}
.y8d_c00258{bottom:543.807000px;}
.y8c_c00258{bottom:545.301075px;}
.y8b_c00258{bottom:546.385320px;}
.y8a_c00258{bottom:546.696450px;}
.y89_c00258{bottom:547.286310px;}
.y88_c00258{bottom:572.433720px;}
.y87_c00258{bottom:573.424725px;}
.y86_c00258{bottom:573.759555px;}
.y85_c00258{bottom:574.183380px;}
.y84_c00258{bottom:575.290485px;}
.y83_c00258{bottom:576.840375px;}
.y82_c00258{bottom:577.086225px;}
.y81_c00258{bottom:577.501890px;}
.y80_c00258{bottom:578.033655px;}
.y7f_c00258{bottom:578.714205px;}
.y7e_c00258{bottom:579.148665px;}
.y7d_c00258{bottom:604.192230px;}
.y7c_c00258{bottom:605.543595px;}
.y7b_c00258{bottom:606.975570px;}
.y7a_c00258{bottom:607.352655px;}
.y79_c00258{bottom:608.208660px;}
.y78_c00258{bottom:608.691870px;}
.y77_c00258{bottom:609.291570px;}
.y76_c00258{bottom:609.659445px;}
.y75_c00258{bottom:609.893430px;}
.y74_c00258{bottom:610.739925px;}
.y73_c00258{bottom:636.256155px;}
.y72_c00258{bottom:636.801720px;}
.y71_c00258{bottom:637.249740px;}
.y70_c00258{bottom:637.798170px;}
.y6f_c00258{bottom:638.227155px;}
.y6e_c00258{bottom:639.107715px;}
.y6d_c00258{bottom:639.988005px;}
.y6c_c00258{bottom:640.646805px;}
.y6b_c00258{bottom:640.873245px;}
.y6a_c00258{bottom:641.427120px;}
.y69_c00258{bottom:642.061500px;}
.y67_c00258{bottom:672.716872px;}
.y65_c00258{bottom:672.717118px;}
.y66_c00258{bottom:672.717282px;}
.y68_c00258{bottom:672.717543px;}
.y64_c00258{bottom:701.223783px;}
.y63_c00258{bottom:701.649858px;}
.y62_c00258{bottom:702.265921px;}
.y61_c00258{bottom:702.452293px;}
.y60_c00258{bottom:703.601337px;}
.y5f_c00258{bottom:703.774453px;}
.y5e_c00258{bottom:704.643475px;}
.y5d_c00258{bottom:704.912833px;}
.y5c_c00258{bottom:705.603501px;}
.y5b_c00258{bottom:705.953566px;}
.y5a_c00258{bottom:706.319991px;}
.y59_c00258{bottom:732.007666px;}
.y58_c00258{bottom:732.291963px;}
.y57_c00258{bottom:732.692913px;}
.y56_c00258{bottom:733.186230px;}
.y55_c00258{bottom:734.170623px;}
.y54_c00258{bottom:734.462196px;}
.y53_c00258{bottom:734.780580px;}
.y52_c00258{bottom:735.259249px;}
.y51_c00258{bottom:736.255617px;}
.y50_c00258{bottom:736.831500px;}
.y4e_c00258{bottom:768.695280px;}
.y4f_c00258{bottom:768.695430px;}
.y4d_c00258{bottom:797.496262px;}
.y4c_c00258{bottom:797.936407px;}
.y4b_c00258{bottom:798.102337px;}
.y4a_c00258{bottom:798.369690px;}
.y49_c00258{bottom:798.754485px;}
.y48_c00258{bottom:798.924495px;}
.y47_c00258{bottom:799.190527px;}
.y46_c00258{bottom:799.530750px;}
.y45_c00258{bottom:799.687327px;}
.y44_c00258{bottom:800.010000px;}
.y43_c00258{bottom:832.043388px;}
.y42_c00258{bottom:832.043832px;}
.y41_c00258{bottom:832.043880px;}
.y40_c00258{bottom:860.171928px;}
.y3f_c00258{bottom:860.780412px;}
.y3e_c00258{bottom:861.020028px;}
.y3d_c00258{bottom:861.471984px;}
.y3c_c00258{bottom:861.783192px;}
.y3b_c00258{bottom:862.555836px;}
.y3a_c00258{bottom:862.929504px;}
.y39_c00258{bottom:863.095416px;}
.y38_c00258{bottom:863.480760px;}
.y37_c00258{bottom:863.779992px;}
.y36_c00258{bottom:864.022044px;}
.y35_c00258{bottom:864.540384px;}
.y34_c00258{bottom:892.111800px;}
.y33_c00258{bottom:892.241112px;}
.y32_c00258{bottom:892.836000px;}
.y31_c00258{bottom:892.947060px;}
.y30_c00258{bottom:893.488956px;}
.y2f_c00258{bottom:893.623128px;}
.y2e_c00258{bottom:894.476628px;}
.y2d_c00258{bottom:894.942048px;}
.y2c_c00258{bottom:895.139532px;}
.y2b_c00258{bottom:895.466400px;}
.y2a_c00258{bottom:895.861296px;}
.y29_c00258{bottom:896.137668px;}
.y28_c00258{bottom:923.007768px;}
.y27_c00258{bottom:923.162832px;}
.y26_c00258{bottom:924.446568px;}
.y25_c00258{bottom:924.768228px;}
.y24_c00258{bottom:925.636764px;}
.y23_c00258{bottom:925.904616px;}
.y22_c00258{bottom:926.181108px;}
.y21_c00258{bottom:926.610912px;}
.y20_c00258{bottom:926.971464px;}
.y1f_c00258{bottom:927.401532px;}
.y1e_c00258{bottom:927.991500px;}
.y1b_c00258{bottom:957.775632px;}
.y1c_c00258{bottom:957.776112px;}
.y19_c00258{bottom:957.776316px;}
.y1a_c00258{bottom:957.776328px;}
.y1d_c00258{bottom:957.776628px;}
.y18_c00258{bottom:986.103576px;}
.y17_c00258{bottom:986.473044px;}
.y16_c00258{bottom:986.930964px;}
.y15_c00258{bottom:987.123468px;}
.y14_c00258{bottom:987.588984px;}
.y13_c00258{bottom:987.784272px;}
.y12_c00258{bottom:987.986940px;}
.y11_c00258{bottom:988.379160px;}
.y10_c00258{bottom:988.705356px;}
.yf_c00258{bottom:989.434368px;}
.ye_c00258{bottom:989.692176px;}
.yd_c00258{bottom:990.089532px;}
.yc_c00258{bottom:1017.936000px;}
.yb_c00258{bottom:1018.184460px;}
.ya_c00258{bottom:1018.722144px;}
.y9_c00258{bottom:1018.996560px;}
.y8_c00258{bottom:1019.785560px;}
.y7_c00258{bottom:1020.130548px;}
.y6_c00258{bottom:1020.486852px;}
.y5_c00258{bottom:1020.921036px;}
.y4_c00258{bottom:1021.543344px;}
.y3_c00258{bottom:1021.977456px;}
.y2_c00258{bottom:1022.491500px;}
.y1_c00258{bottom:1088.509500px;}
.h2_c00258{height:54.000000px;}
.h5_c00258{height:72.002304px;}
.h7_c00258{height:78.000975px;}
.h4_c00258{height:78.002496px;}
.h8_c00258{height:78.003159px;}
.ha_c00258{height:78.003900px;}
.h10_c00258{height:78.005616px;}
.h3_c00258{height:84.002688px;}
.h9_c00258{height:84.004200px;}
.h11_c00258{height:84.005082px;}
.hb_c00258{height:90.004500px;}
.h12_c00258{height:90.005445px;}
.h6_c00258{height:96.003072px;}
.hd_c00258{height:96.004800px;}
.h13_c00258{height:96.005808px;}
.he_c00258{height:102.005100px;}
.hf_c00258{height:108.004374px;}
.hc_c00258{height:114.005700px;}
.h0_c00258{height:1127.790000px;}
.h1_c00258{height:1128.000000px;}
.w0_c00258{width:915.000000px;}
.x0_c00258{left:0.000000px;}
.xc8_c00258{left:61.020524px;}
.xc1_c00258{left:81.846000px;}
.x8f_c00258{left:105.378000px;}
.x6d_c00258{left:119.070000px;}
.x95_c00258{left:126.141000px;}
.x2c_c00258{left:134.357472px;}
.xb5_c00258{left:137.284500px;}
.xa6_c00258{left:138.344790px;}
.x6e_c00258{left:139.467000px;}
.x58_c00258{left:140.815650px;}
.x25_c00258{left:142.137732px;}
.xd_c00258{left:144.621648px;}
.xb6_c00258{left:170.766000px;}
.x7f_c00258{left:172.650555px;}
.x35_c00258{left:175.231632px;}
.x18_c00258{left:177.390756px;}
.x1b_c00258{left:180.478500px;}
.x47_c00258{left:181.703124px;}
.x9b_c00258{left:182.929200px;}
.x59_c00258{left:184.261650px;}
.x26_c00258{left:188.122464px;}
.xac_c00258{left:190.417305px;}
.xc9_c00258{left:192.248897px;}
.xb7_c00258{left:193.684500px;}
.x5f_c00258{left:205.869165px;}
.x72_c00258{left:206.942100px;}
.x2d_c00258{left:208.338060px;}
.xe_c00258{left:210.792204px;}
.xbd_c00258{left:215.016000px;}
.x96_c00258{left:216.930000px;}
.x50_c00258{left:218.304315px;}
.x88_c00258{left:228.603570px;}
.x3a_c00258{left:231.931845px;}
.xc2_c00258{left:236.074500px;}
.x90_c00258{left:237.493500px;}
.xa1_c00258{left:238.527105px;}
.x51_c00258{left:239.602605px;}
.x2e_c00258{left:242.907336px;}
.x66_c00258{left:249.892740px;}
.x5a_c00258{left:252.316650px;}
.xf_c00258{left:253.706388px;}
.x37_c00258{left:255.345000px;}
.x2_c00258{left:256.392000px;}
.xad_c00258{left:259.298925px;}
.x9c_c00258{left:260.695980px;}
.x91_c00258{left:270.702000px;}
.x80_c00258{left:272.019555px;}
.x52_c00258{left:273.089775px;}
.x19_c00258{left:275.674044px;}
.x67_c00258{left:283.104900px;}
.x2f_c00258{left:285.561672px;}
.xa7_c00258{left:293.066745px;}
.x36_c00258{left:297.544956px;}
.xb8_c00258{left:304.122000px;}
.x5b_c00258{left:305.493150px;}
.x1c_c00258{left:307.983000px;}
.x49_c00258{left:317.110500px;}
.x3b_c00258{left:318.471000px;}
.x3_c00258{left:320.647500px;}
.x92_c00258{left:325.485000px;}
.x73_c00258{left:326.559600px;}
.x53_c00258{left:327.659235px;}
.x9d_c00258{left:336.556245px;}
.x68_c00258{left:338.456010px;}
.x27_c00258{left:341.468424px;}
.x5c_c00258{left:347.059650px;}
.x79_c00258{left:348.196875px;}
.x38_c00258{left:351.195000px;}
.x1d_c00258{left:353.052000px;}
.xca_c00258{left:355.068098px;}
.xc3_c00258{left:357.312000px;}
.x89_c00258{left:358.989180px;}
.x60_c00258{left:360.858210px;}
.x30_c00258{left:364.406808px;}
.x7a_c00258{left:370.874100px;}
.x4a_c00258{left:372.498000px;}
.x4_c00258{left:374.911500px;}
.xbe_c00258{left:380.302500px;}
.x81_c00258{left:381.936555px;}
.x1_c00258{left:385.560000px;}
.xa8_c00258{left:391.906755px;}
.x6f_c00258{left:393.003000px;}
.x4b_c00258{left:395.142000px;}
.x1a_c00258{left:396.367272px;}
.xc4_c00258{left:401.073000px;}
.x93_c00258{left:402.981000px;}
.x1e_c00258{left:406.777500px;}
.x7b_c00258{left:414.046035px;}
.x70_c00258{left:415.668000px;}
.x31_c00258{left:417.865740px;}
.x28_c00258{left:418.959660px;}
.xb9_c00258{left:424.282500px;}
.x82_c00258{left:425.945055px;}
.x10_c00258{left:429.485196px;}
.x48_c00258{left:431.194334px;}
.xbf_c00258{left:435.388500px;}
.x8a_c00258{left:436.758240px;}
.x1f_c00258{left:441.339000px;}
.xb2_c00258{left:445.648335px;}
.x97_c00258{left:446.742000px;}
.x54_c00258{left:449.429520px;}
.x5_c00258{left:452.700000px;}
.x83_c00258{left:458.316555px;}
.x42_c00258{left:460.541700px;}
.xa9_c00258{left:468.023490px;}
.x9e_c00258{left:469.691595px;}
.x39_c00258{left:472.446000px;}
.x20_c00258{left:474.820500px;}
.xb3_c00258{left:478.047165px;}
.x3c_c00258{left:482.364000px;}
.x55_c00258{left:483.687675px;}
.x8b_c00258{left:491.863335px;}
.x11_c00258{left:494.826240px;}
.x6_c00258{left:506.973000px;}
.xa2_c00258{left:512.863605px;}
.x7c_c00258{left:514.230540px;}
.x3d_c00258{left:517.740000px;}
.x98_c00258{left:522.883500px;}
.x9f_c00258{left:524.248635px;}
.x5d_c00258{left:526.633650px;}
.x12_c00258{left:528.597780px;}
.xc5_c00258{left:534.451500px;}
.x74_c00258{left:536.360100px;}
.x69_c00258{left:537.731985px;}
.xae_c00258{left:545.263710px;}
.x84_c00258{left:546.891555px;}
.x4c_c00258{left:549.051000px;}
.x3e_c00258{left:550.137000px;}
.x7_c00258{left:551.511000px;}
.xaa_c00258{left:556.075605px;}
.x13_c00258{left:561.259308px;}
.x7d_c00258{left:569.327595px;}
.x32_c00258{left:572.848488px;}
.xa3_c00258{left:578.500605px;}
.x85_c00258{left:579.552555px;}
.x61_c00258{left:580.934415px;}
.x21_c00258{left:583.387500px;}
.xc6_c00258{left:587.641500px;}
.xaf_c00258{left:589.790325px;}
.x6a_c00258{left:591.482565px;}
.x8_c00258{left:594.634500px;}
.xba_c00258{left:598.696500px;}
.x99_c00258{left:612.508500px;}
.x56_c00258{left:613.833870px;}
.xc0_c00258{left:621.409500px;}
.x7e_c00258{left:622.501620px;}
.x22_c00258{left:623.595000px;}
.x62_c00258{left:624.680850px;}
.x43_c00258{left:625.783185px;}
.xbb_c00258{left:632.193000px;}
.x8c_c00258{left:633.596670px;}
.x33_c00258{left:637.406004px;}
.x14_c00258{left:638.762544px;}
.xb0_c00258{left:642.932760px;}
.x6b_c00258{left:645.737145px;}
.x44_c00258{left:648.991387px;}
.x86_c00258{left:655.157055px;}
.x3f_c00258{left:659.514000px;}
.xc7_c00258{left:664.872000px;}
.xa4_c00258{left:666.499605px;}
.x15_c00258{left:670.888560px;}
.x29_c00258{left:673.909740px;}
.x4d_c00258{left:680.005500px;}
.xab_c00258{left:688.362270px;}
.x75_c00258{left:689.481600px;}
.x9_c00258{left:693.259500px;}
.x71_c00258{left:699.441000px;}
.x63_c00258{left:701.882115px;}
.xb4_c00258{left:710.809005px;}
.x5e_c00258{left:713.209650px;}
.x40_c00258{left:714.327000px;}
.xbc_c00258{left:721.299000px;}
.x76_c00258{left:722.960100px;}
.x45_c00258{left:725.943576px;}
.xa_c00258{left:727.561500px;}
.x8d_c00258{left:732.366150px;}
.x4e_c00258{left:734.848500px;}
.x57_c00258{left:736.669140px;}
.x9a_c00258{left:743.719500px;}
.x6c_c00258{left:745.367640px;}
.x16_c00258{left:747.254784px;}
.xa0_c00258{left:755.118945px;}
.x77_c00258{left:756.435600px;}
.x34_c00258{left:758.606976px;}
.x64_c00258{left:767.771775px;}
.xb1_c00258{left:775.557105px;}
.xa5_c00258{left:776.929605px;}
.x46_c00258{left:779.119048px;}
.x23_c00258{left:784.062000px;}
.x94_c00258{left:788.287500px;}
.x41_c00258{left:790.465500px;}
.x2a_c00258{left:791.592624px;}
.xb_c00258{left:794.772000px;}
.x24_c00258{left:803.445000px;}
.x17_c00258{left:808.814268px;}
.x65_c00258{left:810.991710px;}
.x2b_c00258{left:813.194472px;}
.x8e_c00258{left:820.198905px;}
.x78_c00258{left:821.763600px;}
.xc_c00258{left:825.829500px;}
.x4f_c00258{left:834.207000px;}
.x87_c00258{left:842.282055px;}
@media print{
.v0_c00258{vertical-align:0.000000pt;}
.ls0_c00258{letter-spacing:0.000000pt;}
.ws0_c00258{word-spacing:0.000000pt;}
.fs0_c00258{font-size:48.000000pt;}
.fs3_c00258{font-size:64.002048pt;}
.fs5_c00258{font-size:69.334200pt;}
.fs2_c00258{font-size:69.335552pt;}
.fs6_c00258{font-size:69.336141pt;}
.fs8_c00258{font-size:69.336800pt;}
.fse_c00258{font-size:69.338325pt;}
.fs1_c00258{font-size:74.669056pt;}
.fs7_c00258{font-size:74.670400pt;}
.fsf_c00258{font-size:74.671184pt;}
.fs9_c00258{font-size:80.004000pt;}
.fs10_c00258{font-size:80.004840pt;}
.fs4_c00258{font-size:85.336064pt;}
.fsb_c00258{font-size:85.337600pt;}
.fs11_c00258{font-size:85.338496pt;}
.fsc_c00258{font-size:90.671200pt;}
.fsd_c00258{font-size:96.003888pt;}
.fsa_c00258{font-size:101.338400pt;}
.y0_c00258{bottom:0.000000pt;}
.y146_c00258{bottom:17.319479pt;}
.y147_c00258{bottom:17.319535pt;}
.y149_c00258{bottom:17.319717pt;}
.y145_c00258{bottom:17.319835pt;}
.y148_c00258{bottom:17.319857pt;}
.y144_c00258{bottom:30.337344pt;}
.y143_c00258{bottom:30.664777pt;}
.y142_c00258{bottom:31.739301pt;}
.y141_c00258{bottom:32.159149pt;}
.y140_c00258{bottom:32.494444pt;}
.y13f_c00258{bottom:33.014524pt;}
.y13e_c00258{bottom:34.318669pt;}
.y13d_c00258{bottom:34.746555pt;}
.y13c_c00258{bottom:35.593995pt;}
.y13b_c00258{bottom:35.931988pt;}
.y13a_c00258{bottom:36.890367pt;}
.y139_c00258{bottom:37.440000pt;}
.y138_c00258{bottom:58.240625pt;}
.y137_c00258{bottom:58.567824pt;}
.y136_c00258{bottom:60.069984pt;}
.y135_c00258{bottom:60.489920pt;}
.y134_c00258{bottom:61.469067pt;}
.y133_c00258{bottom:61.888856pt;}
.y132_c00258{bottom:62.427475pt;}
.y131_c00258{bottom:62.963717pt;}
.y130_c00258{bottom:64.043609pt;}
.y12f_c00258{bottom:64.473812pt;}
.y12e_c00258{bottom:64.801333pt;}
.y12d_c00258{bottom:87.131845pt;}
.y12c_c00258{bottom:88.082309pt;}
.y12b_c00258{bottom:88.439605pt;}
.y12a_c00258{bottom:89.839317pt;}
.y129_c00258{bottom:90.300021pt;}
.y128_c00258{bottom:91.005701pt;}
.y127_c00258{bottom:91.581733pt;}
.y126_c00258{bottom:92.759733pt;}
.y125_c00258{bottom:93.004197pt;}
.y124_c00258{bottom:93.361333pt;}
.y123_c00258{bottom:116.476973pt;}
.y122_c00258{bottom:117.092973pt;}
.y121_c00258{bottom:117.449040pt;}
.y120_c00258{bottom:117.709907pt;}
.y11f_c00258{bottom:118.953947pt;}
.y11e_c00258{bottom:119.212600pt;}
.y11d_c00258{bottom:120.092107pt;}
.y11c_c00258{bottom:120.433973pt;}
.y11b_c00258{bottom:120.697240pt;}
.y11a_c00258{bottom:121.674320pt;}
.y119_c00258{bottom:144.173533pt;}
.y118_c00258{bottom:144.630840pt;}
.y117_c00258{bottom:145.588440pt;}
.y116_c00258{bottom:146.155493pt;}
.y115_c00258{bottom:146.629960pt;}
.y114_c00258{bottom:147.208267pt;}
.y113_c00258{bottom:148.862373pt;}
.y112_c00258{bottom:149.679920pt;}
.y111_c00258{bottom:150.016693pt;}
.y110_c00258{bottom:150.414880pt;}
.y10f_c00258{bottom:150.956427pt;}
.y10e_c00258{bottom:172.699373pt;}
.y10d_c00258{bottom:173.030200pt;}
.y10c_c00258{bottom:173.777387pt;}
.y10b_c00258{bottom:173.993933pt;}
.y10a_c00258{bottom:174.855293pt;}
.y109_c00258{bottom:175.275507pt;}
.y108_c00258{bottom:175.599893pt;}
.y107_c00258{bottom:176.566480pt;}
.y106_c00258{bottom:176.775053pt;}
.y105_c00258{bottom:177.419093pt;}
.y104_c00258{bottom:178.079133pt;}
.y103_c00258{bottom:199.766893pt;}
.y102_c00258{bottom:200.748493pt;}
.y101_c00258{bottom:201.130093pt;}
.y100_c00258{bottom:201.530707pt;}
.yff_c00258{bottom:202.114147pt;}
.yfe_c00258{bottom:202.601280pt;}
.yfd_c00258{bottom:203.484600pt;}
.yfc_c00258{bottom:204.552693pt;}
.yfb_c00258{bottom:205.440720pt;}
.yfa_c00258{bottom:228.577373pt;}
.yf9_c00258{bottom:228.838320pt;}
.yf8_c00258{bottom:229.370267pt;}
.yf7_c00258{bottom:229.631213pt;}
.yf6_c00258{bottom:229.905360pt;}
.yf5_c00258{bottom:230.247320pt;}
.yf4_c00258{bottom:230.685147pt;}
.yf3_c00258{bottom:231.122093pt;}
.yf2_c00258{bottom:231.657187pt;}
.yf1_c00258{bottom:231.916040pt;}
.yf0_c00258{bottom:232.185507pt;}
.yef_c00258{bottom:232.791813pt;}
.yee_c00258{bottom:233.413733pt;}
.yed_c00258{bottom:233.759027pt;}
.yec_c00258{bottom:256.013227pt;}
.yeb_c00258{bottom:256.591747pt;}
.yea_c00258{bottom:257.470147pt;}
.ye9_c00258{bottom:257.758067pt;}
.ye8_c00258{bottom:258.554733pt;}
.ye7_c00258{bottom:258.835520pt;}
.ye6_c00258{bottom:259.231547pt;}
.ye5_c00258{bottom:259.709240pt;}
.ye4_c00258{bottom:260.201360pt;}
.ye3_c00258{bottom:261.274320pt;}
.ye2_c00258{bottom:261.672440pt;}
.ye1_c00258{bottom:262.081333pt;}
.ye0_c00258{bottom:284.198309pt;}
.ydf_c00258{bottom:284.462057pt;}
.yde_c00258{bottom:284.902529pt;}
.ydd_c00258{bottom:285.704189pt;}
.ydc_c00258{bottom:286.215857pt;}
.ydb_c00258{bottom:286.661009pt;}
.yda_c00258{bottom:287.544509pt;}
.yd9_c00258{bottom:287.887913pt;}
.yd8_c00258{bottom:288.164477pt;}
.yd7_c00258{bottom:288.602741pt;}
.yd6_c00258{bottom:288.868409pt;}
.yd5_c00258{bottom:289.652753pt;}
.yd4_c00258{bottom:289.925333pt;}
.yd3_c00258{bottom:313.152507pt;}
.yd2_c00258{bottom:313.777227pt;}
.yd1_c00258{bottom:314.479160pt;}
.yd0_c00258{bottom:314.784747pt;}
.ycf_c00258{bottom:315.099533pt;}
.yce_c00258{bottom:315.486987pt;}
.ycd_c00258{bottom:315.879467pt;}
.ycc_c00258{bottom:316.432067pt;}
.ycb_c00258{bottom:317.050267pt;}
.yca_c00258{bottom:317.359027pt;}
.yc9_c00258{bottom:317.516507pt;}
.yc8_c00258{bottom:317.996373pt;}
.yc7_c00258{bottom:340.305613pt;}
.yc6_c00258{bottom:340.600867pt;}
.yc5_c00258{bottom:341.666560pt;}
.yc4_c00258{bottom:341.968947pt;}
.yc3_c00258{bottom:342.640987pt;}
.yc2_c00258{bottom:342.931307pt;}
.yc1_c00258{bottom:343.718640pt;}
.yc0_c00258{bottom:344.006387pt;}
.ybf_c00258{bottom:344.397573pt;}
.ybe_c00258{bottom:344.884800pt;}
.ybd_c00258{bottom:345.374613pt;}
.ybc_c00258{bottom:346.257893pt;}
.ybb_c00258{bottom:346.558040pt;}
.yba_c00258{bottom:370.224733pt;}
.yb9_c00258{bottom:371.023427pt;}
.yb8_c00258{bottom:371.449413pt;}
.yb7_c00258{bottom:371.889827pt;}
.yb6_c00258{bottom:372.691013pt;}
.yb5_c00258{bottom:373.036093pt;}
.yb4_c00258{bottom:373.217667pt;}
.yb3_c00258{bottom:373.733933pt;}
.yb2_c00258{bottom:374.087813pt;}
.yb1_c00258{bottom:374.878240pt;}
.yb0_c00258{bottom:398.097760pt;}
.yaf_c00258{bottom:398.678453pt;}
.yae_c00258{bottom:398.976013pt;}
.yad_c00258{bottom:399.273600pt;}
.yac_c00258{bottom:399.659987pt;}
.yab_c00258{bottom:400.142413pt;}
.yaa_c00258{bottom:400.634680pt;}
.ya9_c00258{bottom:402.201947pt;}
.ya8_c00258{bottom:402.499573pt;}
.ya7_c00258{bottom:403.562840pt;}
.ya6_c00258{bottom:404.160413pt;}
.ya5_c00258{bottom:425.621827pt;}
.ya4_c00258{bottom:426.601147pt;}
.ya3_c00258{bottom:427.071360pt;}
.ya2_c00258{bottom:427.561200pt;}
.ya1_c00258{bottom:428.538093pt;}
.ya0_c00258{bottom:429.123573pt;}
.y9f_c00258{bottom:429.325040pt;}
.y9e_c00258{bottom:430.693840pt;}
.y9d_c00258{bottom:431.578693pt;}
.y9c_c00258{bottom:431.760000pt;}
.y9b_c00258{bottom:454.574200pt;}
.y9a_c00258{bottom:455.282453pt;}
.y99_c00258{bottom:455.668707pt;}
.y98_c00258{bottom:456.050480pt;}
.y97_c00258{bottom:456.901773pt;}
.y96_c00258{bottom:457.468453pt;}
.y95_c00258{bottom:457.861787pt;}
.y94_c00258{bottom:458.098333pt;}
.y93_c00258{bottom:458.875707pt;}
.y92_c00258{bottom:481.110920pt;}
.y91_c00258{bottom:481.456427pt;}
.y90_c00258{bottom:481.983440pt;}
.y8f_c00258{bottom:482.601667pt;}
.y8e_c00258{bottom:482.951853pt;}
.y8d_c00258{bottom:483.384000pt;}
.y8c_c00258{bottom:484.712067pt;}
.y8b_c00258{bottom:485.675840pt;}
.y8a_c00258{bottom:485.952400pt;}
.y89_c00258{bottom:486.476720pt;}
.y88_c00258{bottom:508.829973pt;}
.y87_c00258{bottom:509.710867pt;}
.y86_c00258{bottom:510.008493pt;}
.y85_c00258{bottom:510.385227pt;}
.y84_c00258{bottom:511.369320pt;}
.y83_c00258{bottom:512.747000pt;}
.y82_c00258{bottom:512.965533pt;}
.y81_c00258{bottom:513.335013pt;}
.y80_c00258{bottom:513.807693pt;}
.y7f_c00258{bottom:514.412627pt;}
.y7e_c00258{bottom:514.798813pt;}
.y7d_c00258{bottom:537.059760pt;}
.y7c_c00258{bottom:538.260973pt;}
.y7b_c00258{bottom:539.533840pt;}
.y7a_c00258{bottom:539.869027pt;}
.y79_c00258{bottom:540.629920pt;}
.y78_c00258{bottom:541.059440pt;}
.y77_c00258{bottom:541.592507pt;}
.y76_c00258{bottom:541.919507pt;}
.y75_c00258{bottom:542.127493pt;}
.y74_c00258{bottom:542.879933pt;}
.y73_c00258{bottom:565.561027pt;}
.y72_c00258{bottom:566.045973pt;}
.y71_c00258{bottom:566.444213pt;}
.y70_c00258{bottom:566.931707pt;}
.y6f_c00258{bottom:567.313027pt;}
.y6e_c00258{bottom:568.095747pt;}
.y6d_c00258{bottom:568.878227pt;}
.y6c_c00258{bottom:569.463827pt;}
.y6b_c00258{bottom:569.665107pt;}
.y6a_c00258{bottom:570.157440pt;}
.y69_c00258{bottom:570.721333pt;}
.y67_c00258{bottom:597.970553pt;}
.y65_c00258{bottom:597.970772pt;}
.y66_c00258{bottom:597.970917pt;}
.y68_c00258{bottom:597.971149pt;}
.y64_c00258{bottom:623.310029pt;}
.y63_c00258{bottom:623.688763pt;}
.y62_c00258{bottom:624.236375pt;}
.y61_c00258{bottom:624.402039pt;}
.y60_c00258{bottom:625.423411pt;}
.y5f_c00258{bottom:625.577292pt;}
.y5e_c00258{bottom:626.349756pt;}
.y5d_c00258{bottom:626.589185pt;}
.y5c_c00258{bottom:627.203112pt;}
.y5b_c00258{bottom:627.514281pt;}
.y5a_c00258{bottom:627.839992pt;}
.y59_c00258{bottom:650.673481pt;}
.y58_c00258{bottom:650.926189pt;}
.y57_c00258{bottom:651.282589pt;}
.y56_c00258{bottom:651.721093pt;}
.y55_c00258{bottom:652.596109pt;}
.y54_c00258{bottom:652.855285pt;}
.y53_c00258{bottom:653.138293pt;}
.y52_c00258{bottom:653.563777pt;}
.y51_c00258{bottom:654.449437pt;}
.y50_c00258{bottom:654.961333pt;}
.y4e_c00258{bottom:683.284693pt;}
.y4f_c00258{bottom:683.284827pt;}
.y4d_c00258{bottom:708.885567pt;}
.y4c_c00258{bottom:709.276807pt;}
.y4b_c00258{bottom:709.424300pt;}
.y4a_c00258{bottom:709.661947pt;}
.y49_c00258{bottom:710.003987pt;}
.y48_c00258{bottom:710.155107pt;}
.y47_c00258{bottom:710.391580pt;}
.y46_c00258{bottom:710.694000pt;}
.y45_c00258{bottom:710.833180pt;}
.y44_c00258{bottom:711.120000pt;}
.y43_c00258{bottom:739.594123pt;}
.y42_c00258{bottom:739.594517pt;}
.y41_c00258{bottom:739.594560pt;}
.y40_c00258{bottom:764.597269pt;}
.y3f_c00258{bottom:765.138144pt;}
.y3e_c00258{bottom:765.351136pt;}
.y3d_c00258{bottom:765.752875pt;}
.y3c_c00258{bottom:766.029504pt;}
.y3b_c00258{bottom:766.716299pt;}
.y3a_c00258{bottom:767.048448pt;}
.y39_c00258{bottom:767.195925pt;}
.y38_c00258{bottom:767.538453pt;}
.y37_c00258{bottom:767.804437pt;}
.y36_c00258{bottom:768.019595pt;}
.y35_c00258{bottom:768.480341pt;}
.y34_c00258{bottom:792.988267pt;}
.y33_c00258{bottom:793.103211pt;}
.y32_c00258{bottom:793.632000pt;}
.y31_c00258{bottom:793.730720pt;}
.y30_c00258{bottom:794.212405pt;}
.y2f_c00258{bottom:794.331669pt;}
.y2e_c00258{bottom:795.090336pt;}
.y2d_c00258{bottom:795.504043pt;}
.y2c_c00258{bottom:795.679584pt;}
.y2b_c00258{bottom:795.970133pt;}
.y2a_c00258{bottom:796.321152pt;}
.y29_c00258{bottom:796.566816pt;}
.y28_c00258{bottom:820.451349pt;}
.y27_c00258{bottom:820.589184pt;}
.y26_c00258{bottom:821.730283pt;}
.y25_c00258{bottom:822.016203pt;}
.y24_c00258{bottom:822.788235pt;}
.y23_c00258{bottom:823.026325pt;}
.y22_c00258{bottom:823.272096pt;}
.y21_c00258{bottom:823.654144pt;}
.y20_c00258{bottom:823.974635pt;}
.y1f_c00258{bottom:824.356917pt;}
.y1e_c00258{bottom:824.881333pt;}
.y1b_c00258{bottom:851.356117pt;}
.y1c_c00258{bottom:851.356544pt;}
.y19_c00258{bottom:851.356725pt;}
.y1a_c00258{bottom:851.356736pt;}
.y1d_c00258{bottom:851.357003pt;}
.y18_c00258{bottom:876.536512pt;}
.y17_c00258{bottom:876.864928pt;}
.y16_c00258{bottom:877.271968pt;}
.y15_c00258{bottom:877.443083pt;}
.y14_c00258{bottom:877.856875pt;}
.y13_c00258{bottom:878.030464pt;}
.y12_c00258{bottom:878.210613pt;}
.y11_c00258{bottom:878.559253pt;}
.y10_c00258{bottom:878.849205pt;}
.yf_c00258{bottom:879.497216pt;}
.ye_c00258{bottom:879.726379pt;}
.yd_c00258{bottom:880.079584pt;}
.yc_c00258{bottom:904.832000pt;}
.yb_c00258{bottom:905.052853pt;}
.ya_c00258{bottom:905.530795pt;}
.y9_c00258{bottom:905.774720pt;}
.y8_c00258{bottom:906.476053pt;}
.y7_c00258{bottom:906.782709pt;}
.y6_c00258{bottom:907.099424pt;}
.y5_c00258{bottom:907.485365pt;}
.y4_c00258{bottom:908.038528pt;}
.y3_c00258{bottom:908.424405pt;}
.y2_c00258{bottom:908.881333pt;}
.y1_c00258{bottom:967.564000pt;}
.h2_c00258{height:48.000000pt;}
.h5_c00258{height:64.002048pt;}
.h7_c00258{height:69.334200pt;}
.h4_c00258{height:69.335552pt;}
.h8_c00258{height:69.336141pt;}
.ha_c00258{height:69.336800pt;}
.h10_c00258{height:69.338325pt;}
.h3_c00258{height:74.669056pt;}
.h9_c00258{height:74.670400pt;}
.h11_c00258{height:74.671184pt;}
.hb_c00258{height:80.004000pt;}
.h12_c00258{height:80.004840pt;}
.h6_c00258{height:85.336064pt;}
.hd_c00258{height:85.337600pt;}
.h13_c00258{height:85.338496pt;}
.he_c00258{height:90.671200pt;}
.hf_c00258{height:96.003888pt;}
.hc_c00258{height:101.338400pt;}
.h0_c00258{height:1002.480000pt;}
.h1_c00258{height:1002.666667pt;}
.w0_c00258{width:813.333333pt;}
.x0_c00258{left:0.000000pt;}
.xc8_c00258{left:54.240465pt;}
.xc1_c00258{left:72.752000pt;}
.x8f_c00258{left:93.669333pt;}
.x6d_c00258{left:105.840000pt;}
.x95_c00258{left:112.125333pt;}
.x2c_c00258{left:119.428864pt;}
.xb5_c00258{left:122.030667pt;}
.xa6_c00258{left:122.973147pt;}
.x6e_c00258{left:123.970667pt;}
.x58_c00258{left:125.169467pt;}
.x25_c00258{left:126.344651pt;}
.xd_c00258{left:128.552576pt;}
.xb6_c00258{left:151.792000pt;}
.x7f_c00258{left:153.467160pt;}
.x35_c00258{left:155.761451pt;}
.x18_c00258{left:157.680672pt;}
.x1b_c00258{left:160.425333pt;}
.x47_c00258{left:161.513888pt;}
.x9b_c00258{left:162.603733pt;}
.x59_c00258{left:163.788133pt;}
.x26_c00258{left:167.219968pt;}
.xac_c00258{left:169.259827pt;}
.xc9_c00258{left:170.887908pt;}
.xb7_c00258{left:172.164000pt;}
.x5f_c00258{left:182.994813pt;}
.x72_c00258{left:183.948533pt;}
.x2d_c00258{left:185.189387pt;}
.xe_c00258{left:187.370848pt;}
.xbd_c00258{left:191.125333pt;}
.x96_c00258{left:192.826667pt;}
.x50_c00258{left:194.048280pt;}
.x88_c00258{left:203.203173pt;}
.x3a_c00258{left:206.161640pt;}
.xc2_c00258{left:209.844000pt;}
.x90_c00258{left:211.105333pt;}
.xa1_c00258{left:212.024093pt;}
.x51_c00258{left:212.980093pt;}
.x2e_c00258{left:215.917632pt;}
.x66_c00258{left:222.126880pt;}
.x5a_c00258{left:224.281467pt;}
.xf_c00258{left:225.516789pt;}
.x37_c00258{left:226.973333pt;}
.x2_c00258{left:227.904000pt;}
.xad_c00258{left:230.487933pt;}
.x9c_c00258{left:231.729760pt;}
.x91_c00258{left:240.624000pt;}
.x80_c00258{left:241.795160pt;}
.x52_c00258{left:242.746467pt;}
.x19_c00258{left:245.043595pt;}
.x67_c00258{left:251.648800pt;}
.x2f_c00258{left:253.832597pt;}
.xa7_c00258{left:260.503773pt;}
.x36_c00258{left:264.484405pt;}
.xb8_c00258{left:270.330667pt;}
.x5b_c00258{left:271.549467pt;}
.x1c_c00258{left:273.762667pt;}
.x49_c00258{left:281.876000pt;}
.x3b_c00258{left:283.085333pt;}
.x3_c00258{left:285.020000pt;}
.x92_c00258{left:289.320000pt;}
.x73_c00258{left:290.275200pt;}
.x53_c00258{left:291.252653pt;}
.x9d_c00258{left:299.161107pt;}
.x68_c00258{left:300.849787pt;}
.x27_c00258{left:303.527488pt;}
.x5c_c00258{left:308.497467pt;}
.x79_c00258{left:309.508333pt;}
.x38_c00258{left:312.173333pt;}
.x1d_c00258{left:313.824000pt;}
.xca_c00258{left:315.616087pt;}
.xc3_c00258{left:317.610667pt;}
.x89_c00258{left:319.101493pt;}
.x60_c00258{left:320.762853pt;}
.x30_c00258{left:323.917163pt;}
.x7a_c00258{left:329.665867pt;}
.x4a_c00258{left:331.109333pt;}
.x4_c00258{left:333.254667pt;}
.xbe_c00258{left:338.046667pt;}
.x81_c00258{left:339.499160pt;}
.x1_c00258{left:342.720000pt;}
.xa8_c00258{left:348.361560pt;}
.x6f_c00258{left:349.336000pt;}
.x4b_c00258{left:351.237333pt;}
.x1a_c00258{left:352.326464pt;}
.xc4_c00258{left:356.509333pt;}
.x93_c00258{left:358.205333pt;}
.x1e_c00258{left:361.580000pt;}
.x7b_c00258{left:368.040920pt;}
.x70_c00258{left:369.482667pt;}
.x31_c00258{left:371.436213pt;}
.x28_c00258{left:372.408587pt;}
.xb9_c00258{left:377.140000pt;}
.x82_c00258{left:378.617827pt;}
.x10_c00258{left:381.764619pt;}
.x48_c00258{left:383.283852pt;}
.xbf_c00258{left:387.012000pt;}
.x8a_c00258{left:388.229547pt;}
.x1f_c00258{left:392.301333pt;}
.xb2_c00258{left:396.131853pt;}
.x97_c00258{left:397.104000pt;}
.x54_c00258{left:399.492907pt;}
.x5_c00258{left:402.400000pt;}
.x83_c00258{left:407.392493pt;}
.x42_c00258{left:409.370400pt;}
.xa9_c00258{left:416.020880pt;}
.x9e_c00258{left:417.503640pt;}
.x39_c00258{left:419.952000pt;}
.x20_c00258{left:422.062667pt;}
.xb3_c00258{left:424.930813pt;}
.x3c_c00258{left:428.768000pt;}
.x55_c00258{left:429.944600pt;}
.x8b_c00258{left:437.211853pt;}
.x11_c00258{left:439.845547pt;}
.x6_c00258{left:450.642667pt;}
.xa2_c00258{left:455.878760pt;}
.x7c_c00258{left:457.093813pt;}
.x3d_c00258{left:460.213333pt;}
.x98_c00258{left:464.785333pt;}
.x9f_c00258{left:465.998787pt;}
.x5d_c00258{left:468.118800pt;}
.x12_c00258{left:469.864693pt;}
.xc5_c00258{left:475.068000pt;}
.x74_c00258{left:476.764533pt;}
.x69_c00258{left:477.983987pt;}
.xae_c00258{left:484.678853pt;}
.x84_c00258{left:486.125827pt;}
.x4c_c00258{left:488.045333pt;}
.x3e_c00258{left:489.010667pt;}
.x7_c00258{left:490.232000pt;}
.xaa_c00258{left:494.289427pt;}
.x13_c00258{left:498.897163pt;}
.x7d_c00258{left:506.068973pt;}
.x32_c00258{left:509.198656pt;}
.xa3_c00258{left:514.222760pt;}
.x85_c00258{left:515.157827pt;}
.x61_c00258{left:516.386147pt;}
.x21_c00258{left:518.566667pt;}
.xc6_c00258{left:522.348000pt;}
.xaf_c00258{left:524.258067pt;}
.x6a_c00258{left:525.762280pt;}
.x8_c00258{left:528.564000pt;}
.xba_c00258{left:532.174667pt;}
.x99_c00258{left:544.452000pt;}
.x56_c00258{left:545.630107pt;}
.xc0_c00258{left:552.364000pt;}
.x7e_c00258{left:553.334773pt;}
.x22_c00258{left:554.306667pt;}
.x62_c00258{left:555.271867pt;}
.x43_c00258{left:556.251720pt;}
.xbb_c00258{left:561.949333pt;}
.x8c_c00258{left:563.197040pt;}
.x33_c00258{left:566.583115pt;}
.x14_c00258{left:567.788928pt;}
.xb0_c00258{left:571.495787pt;}
.x6b_c00258{left:573.988573pt;}
.x44_c00258{left:576.881233pt;}
.x86_c00258{left:582.361827pt;}
.x3f_c00258{left:586.234667pt;}
.xc7_c00258{left:590.997333pt;}
.xa4_c00258{left:592.444093pt;}
.x15_c00258{left:596.345387pt;}
.x29_c00258{left:599.030880pt;}
.x4d_c00258{left:604.449333pt;}
.xab_c00258{left:611.877573pt;}
.x75_c00258{left:612.872533pt;}
.x9_c00258{left:616.230667pt;}
.x71_c00258{left:621.725333pt;}
.x63_c00258{left:623.895213pt;}
.xb4_c00258{left:631.830227pt;}
.x5e_c00258{left:633.964133pt;}
.x40_c00258{left:634.957333pt;}
.xbc_c00258{left:641.154667pt;}
.x76_c00258{left:642.631200pt;}
.x45_c00258{left:645.283179pt;}
.xa_c00258{left:646.721333pt;}
.x8d_c00258{left:650.992133pt;}
.x4e_c00258{left:653.198667pt;}
.x57_c00258{left:654.817013pt;}
.x9a_c00258{left:661.084000pt;}
.x6c_c00258{left:662.549013pt;}
.x16_c00258{left:664.226475pt;}
.xa0_c00258{left:671.216840pt;}
.x77_c00258{left:672.387200pt;}
.x34_c00258{left:674.317312pt;}
.x64_c00258{left:682.463800pt;}
.xb1_c00258{left:689.384093pt;}
.xa5_c00258{left:690.604093pt;}
.x46_c00258{left:692.550265pt;}
.x23_c00258{left:696.944000pt;}
.x94_c00258{left:700.700000pt;}
.x41_c00258{left:702.636000pt;}
.x2a_c00258{left:703.637888pt;}
.xb_c00258{left:706.464000pt;}
.x24_c00258{left:714.173333pt;}
.x17_c00258{left:718.946016pt;}
.x65_c00258{left:720.881520pt;}
.x2b_c00258{left:722.839531pt;}
.x8e_c00258{left:729.065693pt;}
.x78_c00258{left:730.456533pt;}
.xc_c00258{left:734.070667pt;}
.x4f_c00258{left:741.517333pt;}
.x87_c00258{left:748.695160pt;}
}





/* 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_c00259 {
    display:none;
  }
  .loading-indicator_c00259.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00259 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_c00259 { 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_c00259" -> "#page-container .classname_c00259")
 */
.pf_c00259 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00259 { /* 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_c00259.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00259 { /* 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_c00259 { /* 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_c00259 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00259 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00259 {overflow:visible;}
  }
}
.c_c00259 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00259 { /* 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_c00259:after { /* webkit #35443 */
  content: '';
}
.t_c00259:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00259 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 */
}
.__c00259 { /* 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_c00259 { /* info for Javascript */
  display:none;
}
.l_c00259 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00259 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00259 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00259: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_c00259 {
    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_c00259.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00259.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_c00259 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00259{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00259;src:url('chunks/assets/font_ffdda91d43f5751d6c5cd797.woff2')format("woff");}.ff1_c00259{font-family:ff1_c00259;line-height:1.000000;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;}
.m0_c00259{transform:matrix(0.041165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.041165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.041165,0.000000,0.000000,0.250000,0,0);}
.m5_c00259{transform:matrix(0.061845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.061845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.061845,0.000000,0.000000,0.250000,0,0);}
.m3_c00259{transform:matrix(0.081125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.081125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.081125,0.000000,0.000000,0.250000,0,0);}
.me_c00259{transform:matrix(0.173565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173565,0.000000,0.000000,0.250000,0,0);}
.m13_c00259{transform:matrix(0.185540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185540,0.000000,0.000000,0.250000,0,0);}
.m12_c00259{transform:matrix(0.193360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193360,0.000000,0.000000,0.250000,0,0);}
.m15_c00259{transform:matrix(0.202985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202985,0.000000,0.000000,0.250000,0,0);}
.m11_c00259{transform:matrix(0.222140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222140,0.000000,0.000000,0.250000,0,0);}
.m14_c00259{transform:matrix(0.229455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229455,0.000000,0.000000,0.250000,0,0);}
.m10_c00259{transform:matrix(0.234360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234360,0.000000,0.000000,0.250000,0,0);}
.m6_c00259{transform:matrix(0.237360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237360,0.000000,0.000000,0.250000,0,0);}
.mf_c00259{transform:matrix(0.252810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252810,0.000000,0.000000,0.250000,0,0);}
.m9_c00259{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m4_c00259{transform:matrix(0.256540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256540,0.000000,0.000000,0.250000,0,0);}
.mc_c00259{transform:matrix(0.323110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323110,0.000000,0.000000,0.250000,0,0);}
.m8_c00259{transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);}
.m1_c00259{transform:matrix(0.494495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494495,0.000000,0.000000,0.250000,0,0);}
.m7_c00259{transform:matrix(0.500165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.500165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.500165,0.000000,0.000000,0.250000,0,0);}
.md_c00259{transform:matrix(0.579740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579740,0.000000,0.000000,0.250000,0,0);}
.ma_c00259{transform:matrix(0.674165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.674165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.674165,0.000000,0.000000,0.250000,0,0);}
.m2_c00259{transform:matrix(0.677655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.677655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.677655,0.000000,0.000000,0.250000,0,0);}
.mb_c00259{transform:matrix(0.783635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.783635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.783635,0.000000,0.000000,0.250000,0,0);}
.v0_c00259{vertical-align:0.000000px;}
.ls0_c00259{letter-spacing:0.000000px;}
.sc__c00259{text-shadow:none;}
.sc0_c00259{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__c00259{-webkit-text-stroke:0px transparent;}
.sc0_c00259{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00259{word-spacing:0.000000px;}
.fc0_c00259{color:transparent;}
.fs1_c00259{font-size:12.000000px;}
.fs2_c00259{font-size:18.000000px;}
.fs4_c00259{font-size:24.000000px;}
.fs0_c00259{font-size:42.000000px;}
.fs3_c00259{font-size:54.000000px;}
.fs5_c00259{font-size:72.000000px;}
.fs6_c00259{font-size:132.000000px;}
.y0_c00259{bottom:0.000000px;}
.yd_c00259{bottom:605.610000px;}
.yc_c00259{bottom:615.600000px;}
.yb_c00259{bottom:629.910000px;}
.ya_c00259{bottom:637.470000px;}
.y9_c00259{bottom:665.010000px;}
.y8_c00259{bottom:694.980000px;}
.y7_c00259{bottom:713.610000px;}
.y6_c00259{bottom:721.980000px;}
.y5_c00259{bottom:896.265000px;}
.y4_c00259{bottom:899.497500px;}
.y3_c00259{bottom:903.274500px;}
.y2_c00259{bottom:906.385500px;}
.y1_c00259{bottom:931.387500px;}
.h3_c00259{height:12.000000px;}
.h4_c00259{height:18.000000px;}
.h6_c00259{height:24.000000px;}
.h2_c00259{height:42.000000px;}
.h5_c00259{height:54.000000px;}
.h7_c00259{height:72.000000px;}
.h8_c00259{height:132.000000px;}
.h0_c00259{height:1127.790000px;}
.h1_c00259{height:1128.000000px;}
.w0_c00259{width:915.000000px;}
.x0_c00259{left:0.000000px;}
.x7_c00259{left:142.020000px;}
.x1_c00259{left:143.640000px;}
.x4_c00259{left:145.530000px;}
.x9_c00259{left:147.690000px;}
.xa_c00259{left:152.550000px;}
.x2_c00259{left:154.710000px;}
.xc_c00259{left:156.330000px;}
.x8_c00259{left:161.190000px;}
.x5_c00259{left:162.540000px;}
.xd_c00259{left:171.180000px;}
.x6_c00259{left:176.580000px;}
.xb_c00259{left:180.900000px;}
.x3_c00259{left:186.300000px;}
.xf_c00259{left:887.490000px;}
.xe_c00259{left:891.000000px;}
.x10_c00259{left:892.350000px;}
@media print{
.v0_c00259{vertical-align:0.000000pt;}
.ls0_c00259{letter-spacing:0.000000pt;}
.ws0_c00259{word-spacing:0.000000pt;}
.fs1_c00259{font-size:10.666667pt;}
.fs2_c00259{font-size:16.000000pt;}
.fs4_c00259{font-size:21.333333pt;}
.fs0_c00259{font-size:37.333333pt;}
.fs3_c00259{font-size:48.000000pt;}
.fs5_c00259{font-size:64.000000pt;}
.fs6_c00259{font-size:117.333333pt;}
.y0_c00259{bottom:0.000000pt;}
.yd_c00259{bottom:538.320000pt;}
.yc_c00259{bottom:547.200000pt;}
.yb_c00259{bottom:559.920000pt;}
.ya_c00259{bottom:566.640000pt;}
.y9_c00259{bottom:591.120000pt;}
.y8_c00259{bottom:617.760000pt;}
.y7_c00259{bottom:634.320000pt;}
.y6_c00259{bottom:641.760000pt;}
.y5_c00259{bottom:796.680000pt;}
.y4_c00259{bottom:799.553333pt;}
.y3_c00259{bottom:802.910667pt;}
.y2_c00259{bottom:805.676000pt;}
.y1_c00259{bottom:827.900000pt;}
.h3_c00259{height:10.666667pt;}
.h4_c00259{height:16.000000pt;}
.h6_c00259{height:21.333333pt;}
.h2_c00259{height:37.333333pt;}
.h5_c00259{height:48.000000pt;}
.h7_c00259{height:64.000000pt;}
.h8_c00259{height:117.333333pt;}
.h0_c00259{height:1002.480000pt;}
.h1_c00259{height:1002.666667pt;}
.w0_c00259{width:813.333333pt;}
.x0_c00259{left:0.000000pt;}
.x7_c00259{left:126.240000pt;}
.x1_c00259{left:127.680000pt;}
.x4_c00259{left:129.360000pt;}
.x9_c00259{left:131.280000pt;}
.xa_c00259{left:135.600000pt;}
.x2_c00259{left:137.520000pt;}
.xc_c00259{left:138.960000pt;}
.x8_c00259{left:143.280000pt;}
.x5_c00259{left:144.480000pt;}
.xd_c00259{left:152.160000pt;}
.x6_c00259{left:156.960000pt;}
.xb_c00259{left:160.800000pt;}
.x3_c00259{left:165.600000pt;}
.xf_c00259{left:788.880000pt;}
.xe_c00259{left:792.000000pt;}
.x10_c00259{left:793.200000pt;}
}





/* 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_c00260 {
    display:none;
  }
  .loading-indicator_c00260.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00260 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_c00260 { 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_c00260" -> "#page-container .classname_c00260")
 */
.pf_c00260 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00260 { /* 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_c00260.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00260 { /* 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_c00260 { /* 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_c00260 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00260 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00260 {overflow:visible;}
  }
}
.c_c00260 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00260 { /* 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_c00260:after { /* webkit #35443 */
  content: '';
}
.t_c00260:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00260 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 */
}
.__c00260 { /* 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_c00260 { /* info for Javascript */
  display:none;
}
.l_c00260 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00260 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00260 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00260: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_c00260 {
    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_c00260.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00260.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_c00260 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00260{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00260;src:url('chunks/assets/font_fabf4b590f7fb32aea93ffb2.woff2')format("woff");}.ff1_c00260{font-family:ff1_c00260;line-height:1.000000;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;}
.m129_c00260{transform:matrix(0.010605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.010605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.010605,0.000000,0.000000,0.250000,0,0);}
.m23_c00260{transform:matrix(0.021560,-0.000108,0.001250,0.249997,0,0);-ms-transform:matrix(0.021560,-0.000108,0.001250,0.249997,0,0);-webkit-transform:matrix(0.021560,-0.000108,0.001250,0.249997,0,0);}
.mf1_c00260{transform:matrix(0.024010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.024010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.024010,0.000000,0.000000,0.250000,0,0);}
.mb8_c00260{transform:matrix(0.044470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.044470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.044470,0.000000,0.000000,0.250000,0,0);}
.m87_c00260{transform:matrix(0.066448,-0.000465,0.001750,0.249994,0,0);-ms-transform:matrix(0.066448,-0.000465,0.001750,0.249994,0,0);-webkit-transform:matrix(0.066448,-0.000465,0.001750,0.249994,0,0);}
.m42_c00260{transform:matrix(0.082719,-0.000496,0.001500,0.249996,0,0);-ms-transform:matrix(0.082719,-0.000496,0.001500,0.249996,0,0);-webkit-transform:matrix(0.082719,-0.000496,0.001500,0.249996,0,0);}
.m4f_c00260{transform:matrix(0.099848,-0.000599,0.001500,0.249996,0,0);-ms-transform:matrix(0.099848,-0.000599,0.001500,0.249996,0,0);-webkit-transform:matrix(0.099848,-0.000599,0.001500,0.249996,0,0);}
.m89_c00260{transform:matrix(0.145120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145120,0.000000,0.000000,0.250000,0,0);}
.m106_c00260{transform:matrix(0.159540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159540,0.000000,0.000000,0.250000,0,0);}
.mc4_c00260{transform:matrix(0.168380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168380,0.000000,0.000000,0.250000,0,0);}
.mcb_c00260{transform:matrix(0.171350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171350,0.000000,0.000000,0.250000,0,0);}
.mc6_c00260{transform:matrix(0.176305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176305,0.000000,0.000000,0.250000,0,0);}
.m4_c00260{transform:matrix(0.179345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179345,0.000000,0.000000,0.250000,0,0);}
.mc3_c00260{transform:matrix(0.179775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179775,0.000000,0.000000,0.250000,0,0);}
.mc7_c00260{transform:matrix(0.182505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182505,0.000000,0.000000,0.250000,0,0);}
.m8c_c00260{transform:matrix(0.183620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183620,0.000000,0.000000,0.250000,0,0);}
.ma5_c00260{transform:matrix(0.184225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184225,0.000000,0.000000,0.250000,0,0);}
.m45_c00260{transform:matrix(0.185627,-0.001114,0.001500,0.249996,0,0);-ms-transform:matrix(0.185627,-0.001114,0.001500,0.249996,0,0);-webkit-transform:matrix(0.185627,-0.001114,0.001500,0.249996,0,0);}
.m2_c00260{transform:matrix(0.186220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186220,0.000000,0.000000,0.250000,0,0);}
.mc0_c00260{transform:matrix(0.187320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187320,0.000000,0.000000,0.250000,0,0);}
.mc8_c00260{transform:matrix(0.187520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187520,0.000000,0.000000,0.250000,0,0);}
.mbe_c00260{transform:matrix(0.188380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188380,0.000000,0.000000,0.250000,0,0);}
.m3e_c00260{transform:matrix(0.188787,-0.001133,0.001500,0.249996,0,0);-ms-transform:matrix(0.188787,-0.001133,0.001500,0.249996,0,0);-webkit-transform:matrix(0.188787,-0.001133,0.001500,0.249996,0,0);}
.mc9_c00260{transform:matrix(0.190135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190135,0.000000,0.000000,0.250000,0,0);}
.m40_c00260{transform:matrix(0.190567,-0.001143,0.001500,0.249996,0,0);-ms-transform:matrix(0.190567,-0.001143,0.001500,0.249996,0,0);-webkit-transform:matrix(0.190567,-0.001143,0.001500,0.249996,0,0);}
.me0_c00260{transform:matrix(0.191435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191435,0.000000,0.000000,0.250000,0,0);}
.m3_c00260{transform:matrix(0.192005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192005,0.000000,0.000000,0.250000,0,0);}
.mc2_c00260{transform:matrix(0.192225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192225,0.000000,0.000000,0.250000,0,0);}
.me5_c00260{transform:matrix(0.193040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193040,0.000000,0.000000,0.250000,0,0);}
.m7_c00260{transform:matrix(0.193410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193410,0.000000,0.000000,0.250000,0,0);}
.mcc_c00260{transform:matrix(0.194020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194020,0.000000,0.000000,0.250000,0,0);}
.m43_c00260{transform:matrix(0.195141,-0.001171,0.001500,0.249996,0,0);-ms-transform:matrix(0.195141,-0.001171,0.001500,0.249996,0,0);-webkit-transform:matrix(0.195141,-0.001171,0.001500,0.249996,0,0);}
.mde_c00260{transform:matrix(0.195260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195260,0.000000,0.000000,0.250000,0,0);}
.m46_c00260{transform:matrix(0.195366,-0.001172,0.001500,0.249996,0,0);-ms-transform:matrix(0.195366,-0.001172,0.001500,0.249996,0,0);-webkit-transform:matrix(0.195366,-0.001172,0.001500,0.249996,0,0);}
.mc5_c00260{transform:matrix(0.195505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195505,0.000000,0.000000,0.250000,0,0);}
.m3c_c00260{transform:matrix(0.195686,-0.001174,0.001500,0.249996,0,0);-ms-transform:matrix(0.195686,-0.001174,0.001500,0.249996,0,0);-webkit-transform:matrix(0.195686,-0.001174,0.001500,0.249996,0,0);}
.m3f_c00260{transform:matrix(0.196681,-0.001180,0.001500,0.249996,0,0);-ms-transform:matrix(0.196681,-0.001180,0.001500,0.249996,0,0);-webkit-transform:matrix(0.196681,-0.001180,0.001500,0.249996,0,0);}
.m9f_c00260{transform:matrix(0.196690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196690,0.000000,0.000000,0.250000,0,0);}
.m161_c00260{transform:matrix(0.196940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196940,0.000000,0.000000,0.250000,0,0);}
.m12_c00260{transform:matrix(0.198400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198400,0.000000,0.000000,0.250000,0,0);}
.ma3_c00260{transform:matrix(0.199100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199100,0.000000,0.000000,0.250000,0,0);}
.mca_c00260{transform:matrix(0.199195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199195,0.000000,0.000000,0.250000,0,0);}
.m47_c00260{transform:matrix(0.199506,-0.001197,0.001500,0.249996,0,0);-ms-transform:matrix(0.199506,-0.001197,0.001500,0.249996,0,0);-webkit-transform:matrix(0.199506,-0.001197,0.001500,0.249996,0,0);}
.me2_c00260{transform:matrix(0.199810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199810,0.000000,0.000000,0.250000,0,0);}
.m5_c00260{transform:matrix(0.200350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200350,0.000000,0.000000,0.250000,0,0);}
.m60_c00260{transform:matrix(0.200775,-0.001405,0.001750,0.249994,0,0);-ms-transform:matrix(0.200775,-0.001405,0.001750,0.249994,0,0);-webkit-transform:matrix(0.200775,-0.001405,0.001750,0.249994,0,0);}
.mbf_c00260{transform:matrix(0.200815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200815,0.000000,0.000000,0.250000,0,0);}
.m9_c00260{transform:matrix(0.200990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200990,0.000000,0.000000,0.250000,0,0);}
.m44_c00260{transform:matrix(0.200996,-0.001206,0.001500,0.249996,0,0);-ms-transform:matrix(0.200996,-0.001206,0.001500,0.249996,0,0);-webkit-transform:matrix(0.200996,-0.001206,0.001500,0.249996,0,0);}
.m29_c00260{transform:matrix(0.201242,-0.001006,0.001250,0.249997,0,0);-ms-transform:matrix(0.201242,-0.001006,0.001250,0.249997,0,0);-webkit-transform:matrix(0.201242,-0.001006,0.001250,0.249997,0,0);}
.m8b_c00260{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m140_c00260{transform:matrix(0.201615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201615,0.000000,0.000000,0.250000,0,0);}
.mbd_c00260{transform:matrix(0.202110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202110,0.000000,0.000000,0.250000,0,0);}
.mc1_c00260{transform:matrix(0.202350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202350,0.000000,0.000000,0.250000,0,0);}
.m8_c00260{transform:matrix(0.202845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202845,0.000000,0.000000,0.250000,0,0);}
.mae_c00260{transform:matrix(0.203505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203505,0.000000,0.000000,0.250000,0,0);}
.mb0_c00260{transform:matrix(0.203855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203855,0.000000,0.000000,0.250000,0,0);}
.m24_c00260{transform:matrix(0.204127,-0.001021,0.001250,0.249997,0,0);-ms-transform:matrix(0.204127,-0.001021,0.001250,0.249997,0,0);-webkit-transform:matrix(0.204127,-0.001021,0.001250,0.249997,0,0);}
.m3d_c00260{transform:matrix(0.204146,-0.001225,0.001500,0.249996,0,0);-ms-transform:matrix(0.204146,-0.001225,0.001500,0.249996,0,0);-webkit-transform:matrix(0.204146,-0.001225,0.001500,0.249996,0,0);}
.mdf_c00260{transform:matrix(0.204465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204465,0.000000,0.000000,0.250000,0,0);}
.ma0_c00260{transform:matrix(0.205055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205055,0.000000,0.000000,0.250000,0,0);}
.m68_c00260{transform:matrix(0.205660,-0.001440,0.001750,0.249994,0,0);-ms-transform:matrix(0.205660,-0.001440,0.001750,0.249994,0,0);-webkit-transform:matrix(0.205660,-0.001440,0.001750,0.249994,0,0);}
.mdd_c00260{transform:matrix(0.205680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205680,0.000000,0.000000,0.250000,0,0);}
.mb9_c00260{transform:matrix(0.206335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206335,0.000000,0.000000,0.250000,0,0);}
.m8f_c00260{transform:matrix(0.206680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206680,0.000000,0.000000,0.250000,0,0);}
.m48_c00260{transform:matrix(0.207101,-0.001243,0.001500,0.249996,0,0);-ms-transform:matrix(0.207101,-0.001243,0.001500,0.249996,0,0);-webkit-transform:matrix(0.207101,-0.001243,0.001500,0.249996,0,0);}
.m41_c00260{transform:matrix(0.207116,-0.001243,0.001500,0.249996,0,0);-ms-transform:matrix(0.207116,-0.001243,0.001500,0.249996,0,0);-webkit-transform:matrix(0.207116,-0.001243,0.001500,0.249996,0,0);}
.m2b_c00260{transform:matrix(0.207237,-0.001036,0.001250,0.249997,0,0);-ms-transform:matrix(0.207237,-0.001036,0.001250,0.249997,0,0);-webkit-transform:matrix(0.207237,-0.001036,0.001250,0.249997,0,0);}
.m9b_c00260{transform:matrix(0.207425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207425,0.000000,0.000000,0.250000,0,0);}
.me6_c00260{transform:matrix(0.207835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207835,0.000000,0.000000,0.250000,0,0);}
.m8d_c00260{transform:matrix(0.208390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208390,0.000000,0.000000,0.250000,0,0);}
.m32_c00260{transform:matrix(0.208672,-0.001043,0.001250,0.249997,0,0);-ms-transform:matrix(0.208672,-0.001043,0.001250,0.249997,0,0);-webkit-transform:matrix(0.208672,-0.001043,0.001250,0.249997,0,0);}
.m9d_c00260{transform:matrix(0.209220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209220,0.000000,0.000000,0.250000,0,0);}
.m61_c00260{transform:matrix(0.209295,-0.001465,0.001750,0.249994,0,0);-ms-transform:matrix(0.209295,-0.001465,0.001750,0.249994,0,0);-webkit-transform:matrix(0.209295,-0.001465,0.001750,0.249994,0,0);}
.m14a_c00260{transform:matrix(0.210555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210555,0.000000,0.000000,0.250000,0,0);}
.m91_c00260{transform:matrix(0.210875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210875,0.000000,0.000000,0.250000,0,0);}
.m10b_c00260{transform:matrix(0.210900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210900,0.000000,0.000000,0.250000,0,0);}
.mbc_c00260{transform:matrix(0.211695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211695,0.000000,0.000000,0.250000,0,0);}
.mdc_c00260{transform:matrix(0.212165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212165,0.000000,0.000000,0.250000,0,0);}
.m4c_c00260{transform:matrix(0.212196,-0.001273,0.001500,0.249996,0,0);-ms-transform:matrix(0.212196,-0.001273,0.001500,0.249996,0,0);-webkit-transform:matrix(0.212196,-0.001273,0.001500,0.249996,0,0);}
.ma_c00260{transform:matrix(0.212510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212510,0.000000,0.000000,0.250000,0,0);}
.m90_c00260{transform:matrix(0.212530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212530,0.000000,0.000000,0.250000,0,0);}
.m1e_c00260{transform:matrix(0.213135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213135,0.000000,0.000000,0.250000,0,0);}
.mb4_c00260{transform:matrix(0.213360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213360,0.000000,0.000000,0.250000,0,0);}
.m1b_c00260{transform:matrix(0.213830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213830,0.000000,0.000000,0.250000,0,0);}
.m9e_c00260{transform:matrix(0.214280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214280,0.000000,0.000000,0.250000,0,0);}
.me3_c00260{transform:matrix(0.214400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214400,0.000000,0.000000,0.250000,0,0);}
.m15e_c00260{transform:matrix(0.214555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214555,0.000000,0.000000,0.250000,0,0);}
.mad_c00260{transform:matrix(0.215075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215075,0.000000,0.000000,0.250000,0,0);}
.m160_c00260{transform:matrix(0.216005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216005,0.000000,0.000000,0.250000,0,0);}
.mec_c00260{transform:matrix(0.216925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216925,0.000000,0.000000,0.250000,0,0);}
.m11f_c00260{transform:matrix(0.217085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217085,0.000000,0.000000,0.250000,0,0);}
.m95_c00260{transform:matrix(0.217285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217285,0.000000,0.000000,0.250000,0,0);}
.m124_c00260{transform:matrix(0.217730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217730,0.000000,0.000000,0.250000,0,0);}
.m10a_c00260{transform:matrix(0.218940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218940,0.000000,0.000000,0.250000,0,0);}
.m144_c00260{transform:matrix(0.219540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219540,0.000000,0.000000,0.250000,0,0);}
.m88_c00260{transform:matrix(0.219720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219720,0.000000,0.000000,0.250000,0,0);}
.m98_c00260{transform:matrix(0.220105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220105,0.000000,0.000000,0.250000,0,0);}
.mce_c00260{transform:matrix(0.220255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220255,0.000000,0.000000,0.250000,0,0);}
.m76_c00260{transform:matrix(0.220295,-0.001542,0.001750,0.249994,0,0);-ms-transform:matrix(0.220295,-0.001542,0.001750,0.249994,0,0);-webkit-transform:matrix(0.220295,-0.001542,0.001750,0.249994,0,0);}
.m17_c00260{transform:matrix(0.220400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220400,0.000000,0.000000,0.250000,0,0);}
.m51_c00260{transform:matrix(0.220476,-0.001323,0.001500,0.249996,0,0);-ms-transform:matrix(0.220476,-0.001323,0.001500,0.249996,0,0);-webkit-transform:matrix(0.220476,-0.001323,0.001500,0.249996,0,0);}
.m6_c00260{transform:matrix(0.220615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220615,0.000000,0.000000,0.250000,0,0);}
.m143_c00260{transform:matrix(0.220830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220830,0.000000,0.000000,0.250000,0,0);}
.m153_c00260{transform:matrix(0.221455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221455,0.000000,0.000000,0.250000,0,0);}
.m150_c00260{transform:matrix(0.221680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221680,0.000000,0.000000,0.250000,0,0);}
.m93_c00260{transform:matrix(0.221685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221685,0.000000,0.000000,0.250000,0,0);}
.m92_c00260{transform:matrix(0.221850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221850,0.000000,0.000000,0.250000,0,0);}
.mf8_c00260{transform:matrix(0.221880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221880,0.000000,0.000000,0.250000,0,0);}
.m8e_c00260{transform:matrix(0.221940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221940,0.000000,0.000000,0.250000,0,0);}
.me1_c00260{transform:matrix(0.222180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222180,0.000000,0.000000,0.250000,0,0);}
.m100_c00260{transform:matrix(0.222625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222625,0.000000,0.000000,0.250000,0,0);}
.m2a_c00260{transform:matrix(0.222692,-0.001113,0.001250,0.249997,0,0);-ms-transform:matrix(0.222692,-0.001113,0.001250,0.249997,0,0);-webkit-transform:matrix(0.222692,-0.001113,0.001250,0.249997,0,0);}
.m9c_c00260{transform:matrix(0.222820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222820,0.000000,0.000000,0.250000,0,0);}
.m28_c00260{transform:matrix(0.223032,-0.001115,0.001250,0.249997,0,0);-ms-transform:matrix(0.223032,-0.001115,0.001250,0.249997,0,0);-webkit-transform:matrix(0.223032,-0.001115,0.001250,0.249997,0,0);}
.me4_c00260{transform:matrix(0.223035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223035,0.000000,0.000000,0.250000,0,0);}
.m151_c00260{transform:matrix(0.223380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223380,0.000000,0.000000,0.250000,0,0);}
.ma8_c00260{transform:matrix(0.224635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224635,0.000000,0.000000,0.250000,0,0);}
.m6b_c00260{transform:matrix(0.224759,-0.001573,0.001750,0.249994,0,0);-ms-transform:matrix(0.224759,-0.001573,0.001750,0.249994,0,0);-webkit-transform:matrix(0.224759,-0.001573,0.001750,0.249994,0,0);}
.m10f_c00260{transform:matrix(0.224765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224765,0.000000,0.000000,0.250000,0,0);}
.m1c_c00260{transform:matrix(0.224910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224910,0.000000,0.000000,0.250000,0,0);}
.m15f_c00260{transform:matrix(0.225255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225255,0.000000,0.000000,0.250000,0,0);}
.mb2_c00260{transform:matrix(0.225380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225380,0.000000,0.000000,0.250000,0,0);}
.m12a_c00260{transform:matrix(0.225845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225845,0.000000,0.000000,0.250000,0,0);}
.m13f_c00260{transform:matrix(0.225940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225940,0.000000,0.000000,0.250000,0,0);}
.m14f_c00260{transform:matrix(0.226175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226175,0.000000,0.000000,0.250000,0,0);}
.m97_c00260{transform:matrix(0.226540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226540,0.000000,0.000000,0.250000,0,0);}
.m18_c00260{transform:matrix(0.226775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226775,0.000000,0.000000,0.250000,0,0);}
.mea_c00260{transform:matrix(0.226840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226840,0.000000,0.000000,0.250000,0,0);}
.m134_c00260{transform:matrix(0.226965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226965,0.000000,0.000000,0.250000,0,0);}
.m70_c00260{transform:matrix(0.227089,-0.001590,0.001750,0.249994,0,0);-ms-transform:matrix(0.227089,-0.001590,0.001750,0.249994,0,0);-webkit-transform:matrix(0.227089,-0.001590,0.001750,0.249994,0,0);}
.m58_c00260{transform:matrix(0.227095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227095,0.000000,0.000000,0.250000,0,0);}
.m2c_c00260{transform:matrix(0.227507,-0.001138,0.001250,0.249997,0,0);-ms-transform:matrix(0.227507,-0.001138,0.001250,0.249997,0,0);-webkit-transform:matrix(0.227507,-0.001138,0.001250,0.249997,0,0);}
.m38_c00260{transform:matrix(0.227962,-0.001140,0.001250,0.249997,0,0);-ms-transform:matrix(0.227962,-0.001140,0.001250,0.249997,0,0);-webkit-transform:matrix(0.227962,-0.001140,0.001250,0.249997,0,0);}
.m77_c00260{transform:matrix(0.228099,-0.001597,0.001750,0.249994,0,0);-ms-transform:matrix(0.228099,-0.001597,0.001750,0.249994,0,0);-webkit-transform:matrix(0.228099,-0.001597,0.001750,0.249994,0,0);}
.m135_c00260{transform:matrix(0.228815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228815,0.000000,0.000000,0.250000,0,0);}
.m19_c00260{transform:matrix(0.229195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229195,0.000000,0.000000,0.250000,0,0);}
.m2d_c00260{transform:matrix(0.229427,-0.001147,0.001250,0.249997,0,0);-ms-transform:matrix(0.229427,-0.001147,0.001250,0.249997,0,0);-webkit-transform:matrix(0.229427,-0.001147,0.001250,0.249997,0,0);}
.m113_c00260{transform:matrix(0.229535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229535,0.000000,0.000000,0.250000,0,0);}
.m74_c00260{transform:matrix(0.229769,-0.001608,0.001750,0.249994,0,0);-ms-transform:matrix(0.229769,-0.001608,0.001750,0.249994,0,0);-webkit-transform:matrix(0.229769,-0.001608,0.001750,0.249994,0,0);}
.ma7_c00260{transform:matrix(0.229840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229840,0.000000,0.000000,0.250000,0,0);}
.mb5_c00260{transform:matrix(0.229885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229885,0.000000,0.000000,0.250000,0,0);}
.ma9_c00260{transform:matrix(0.229910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229910,0.000000,0.000000,0.250000,0,0);}
.m154_c00260{transform:matrix(0.229930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229930,0.000000,0.000000,0.250000,0,0);}
.m14d_c00260{transform:matrix(0.229965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229965,0.000000,0.000000,0.250000,0,0);}
.m104_c00260{transform:matrix(0.230340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230340,0.000000,0.000000,0.250000,0,0);}
.m26_c00260{transform:matrix(0.230462,-0.001152,0.001250,0.249997,0,0);-ms-transform:matrix(0.230462,-0.001152,0.001250,0.249997,0,0);-webkit-transform:matrix(0.230462,-0.001152,0.001250,0.249997,0,0);}
.m9a_c00260{transform:matrix(0.230465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230465,0.000000,0.000000,0.250000,0,0);}
.mf_c00260{transform:matrix(0.230765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230765,0.000000,0.000000,0.250000,0,0);}
.mef_c00260{transform:matrix(0.230895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230895,0.000000,0.000000,0.250000,0,0);}
.mac_c00260{transform:matrix(0.231080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231080,0.000000,0.000000,0.250000,0,0);}
.m1d_c00260{transform:matrix(0.231160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231160,0.000000,0.000000,0.250000,0,0);}
.md1_c00260{transform:matrix(0.231530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231530,0.000000,0.000000,0.250000,0,0);}
.m78_c00260{transform:matrix(0.231619,-0.001621,0.001750,0.249994,0,0);-ms-transform:matrix(0.231619,-0.001621,0.001750,0.249994,0,0);-webkit-transform:matrix(0.231619,-0.001621,0.001750,0.249994,0,0);}
.m11_c00260{transform:matrix(0.231620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231620,0.000000,0.000000,0.250000,0,0);}
.m96_c00260{transform:matrix(0.231670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231670,0.000000,0.000000,0.250000,0,0);}
.m3b_c00260{transform:matrix(0.231697,-0.001158,0.001250,0.249997,0,0);-ms-transform:matrix(0.231697,-0.001158,0.001250,0.249997,0,0);-webkit-transform:matrix(0.231697,-0.001158,0.001250,0.249997,0,0);}
.mcd_c00260{transform:matrix(0.231955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231955,0.000000,0.000000,0.250000,0,0);}
.m15a_c00260{transform:matrix(0.232135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232135,0.000000,0.000000,0.250000,0,0);}
.m147_c00260{transform:matrix(0.232520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232520,0.000000,0.000000,0.250000,0,0);}
.mb3_c00260{transform:matrix(0.232620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232620,0.000000,0.000000,0.250000,0,0);}
.m55_c00260{transform:matrix(0.232646,-0.001396,0.001500,0.249996,0,0);-ms-transform:matrix(0.232646,-0.001396,0.001500,0.249996,0,0);-webkit-transform:matrix(0.232646,-0.001396,0.001500,0.249996,0,0);}
.m14e_c00260{transform:matrix(0.232955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232955,0.000000,0.000000,0.250000,0,0);}
.m5f_c00260{transform:matrix(0.233119,-0.001632,0.001750,0.249994,0,0);-ms-transform:matrix(0.233119,-0.001632,0.001750,0.249994,0,0);-webkit-transform:matrix(0.233119,-0.001632,0.001750,0.249994,0,0);}
.m110_c00260{transform:matrix(0.233160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233160,0.000000,0.000000,0.250000,0,0);}
.m10d_c00260{transform:matrix(0.233570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233570,0.000000,0.000000,0.250000,0,0);}
.m72_c00260{transform:matrix(0.233809,-0.001637,0.001750,0.249994,0,0);-ms-transform:matrix(0.233809,-0.001637,0.001750,0.249994,0,0);-webkit-transform:matrix(0.233809,-0.001637,0.001750,0.249994,0,0);}
.m36_c00260{transform:matrix(0.233907,-0.001170,0.001250,0.249997,0,0);-ms-transform:matrix(0.233907,-0.001170,0.001250,0.249997,0,0);-webkit-transform:matrix(0.233907,-0.001170,0.001250,0.249997,0,0);}
.m102_c00260{transform:matrix(0.234360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234360,0.000000,0.000000,0.250000,0,0);}
.m12f_c00260{transform:matrix(0.234380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234380,0.000000,0.000000,0.250000,0,0);}
.m15b_c00260{transform:matrix(0.234535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234535,0.000000,0.000000,0.250000,0,0);}
.m15c_c00260{transform:matrix(0.234550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234550,0.000000,0.000000,0.250000,0,0);}
.ma1_c00260{transform:matrix(0.234660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234660,0.000000,0.000000,0.250000,0,0);}
.m27_c00260{transform:matrix(0.234872,-0.001174,0.001250,0.249997,0,0);-ms-transform:matrix(0.234872,-0.001174,0.001250,0.249997,0,0);-webkit-transform:matrix(0.234872,-0.001174,0.001250,0.249997,0,0);}
.m5b_c00260{transform:matrix(0.235365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235365,0.000000,0.000000,0.250000,0,0);}
.m35_c00260{transform:matrix(0.235642,-0.001178,0.001250,0.249997,0,0);-ms-transform:matrix(0.235642,-0.001178,0.001250,0.249997,0,0);-webkit-transform:matrix(0.235642,-0.001178,0.001250,0.249997,0,0);}
.mab_c00260{transform:matrix(0.235765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235765,0.000000,0.000000,0.250000,0,0);}
.md4_c00260{transform:matrix(0.235995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235995,0.000000,0.000000,0.250000,0,0);}
.mb7_c00260{transform:matrix(0.236470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236470,0.000000,0.000000,0.250000,0,0);}
.md5_c00260{transform:matrix(0.236670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236670,0.000000,0.000000,0.250000,0,0);}
.ma2_c00260{transform:matrix(0.237320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237320,0.000000,0.000000,0.250000,0,0);}
.mb6_c00260{transform:matrix(0.237465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237465,0.000000,0.000000,0.250000,0,0);}
.m85_c00260{transform:matrix(0.237494,-0.001662,0.001750,0.249994,0,0);-ms-transform:matrix(0.237494,-0.001662,0.001750,0.249994,0,0);-webkit-transform:matrix(0.237494,-0.001662,0.001750,0.249994,0,0);}
.m15d_c00260{transform:matrix(0.237825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237825,0.000000,0.000000,0.250000,0,0);}
.m1f_c00260{transform:matrix(0.238155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238155,0.000000,0.000000,0.250000,0,0);}
.m157_c00260{transform:matrix(0.238445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238445,0.000000,0.000000,0.250000,0,0);}
.m52_c00260{transform:matrix(0.238806,-0.001433,0.001500,0.249996,0,0);-ms-transform:matrix(0.238806,-0.001433,0.001500,0.249996,0,0);-webkit-transform:matrix(0.238806,-0.001433,0.001500,0.249996,0,0);}
.m99_c00260{transform:matrix(0.238965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238965,0.000000,0.000000,0.250000,0,0);}
.maa_c00260{transform:matrix(0.239195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239195,0.000000,0.000000,0.250000,0,0);}
.m25_c00260{transform:matrix(0.239252,-0.001196,0.001250,0.249997,0,0);-ms-transform:matrix(0.239252,-0.001196,0.001250,0.249997,0,0);-webkit-transform:matrix(0.239252,-0.001196,0.001250,0.249997,0,0);}
.md7_c00260{transform:matrix(0.239295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239295,0.000000,0.000000,0.250000,0,0);}
.m0_c00260{transform:matrix(0.239435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239435,0.000000,0.000000,0.250000,0,0);}
.m33_c00260{transform:matrix(0.239532,-0.001198,0.001250,0.249997,0,0);-ms-transform:matrix(0.239532,-0.001198,0.001250,0.249997,0,0);-webkit-transform:matrix(0.239532,-0.001198,0.001250,0.249997,0,0);}
.m2e_c00260{transform:matrix(0.239557,-0.001198,0.001250,0.249997,0,0);-ms-transform:matrix(0.239557,-0.001198,0.001250,0.249997,0,0);-webkit-transform:matrix(0.239557,-0.001198,0.001250,0.249997,0,0);}
.m132_c00260{transform:matrix(0.239590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239590,0.000000,0.000000,0.250000,0,0);}
.ma4_c00260{transform:matrix(0.239715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239715,0.000000,0.000000,0.250000,0,0);}
.m145_c00260{transform:matrix(0.240180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240180,0.000000,0.000000,0.250000,0,0);}
.maf_c00260{transform:matrix(0.240215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240215,0.000000,0.000000,0.250000,0,0);}
.mf4_c00260{transform:matrix(0.240635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240635,0.000000,0.000000,0.250000,0,0);}
.m155_c00260{transform:matrix(0.240670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240670,0.000000,0.000000,0.250000,0,0);}
.ma6_c00260{transform:matrix(0.240775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240775,0.000000,0.000000,0.250000,0,0);}
.m59_c00260{transform:matrix(0.240960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240960,0.000000,0.000000,0.250000,0,0);}
.mb1_c00260{transform:matrix(0.241005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241005,0.000000,0.000000,0.250000,0,0);}
.mb_c00260{transform:matrix(0.241080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241080,0.000000,0.000000,0.250000,0,0);}
.m146_c00260{transform:matrix(0.241120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241120,0.000000,0.000000,0.250000,0,0);}
.m14_c00260{transform:matrix(0.241150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241150,0.000000,0.000000,0.250000,0,0);}
.m5a_c00260{transform:matrix(0.241275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241275,0.000000,0.000000,0.250000,0,0);}
.me9_c00260{transform:matrix(0.241415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241415,0.000000,0.000000,0.250000,0,0);}
.m6d_c00260{transform:matrix(0.241899,-0.001693,0.001750,0.249994,0,0);-ms-transform:matrix(0.241899,-0.001693,0.001750,0.249994,0,0);-webkit-transform:matrix(0.241899,-0.001693,0.001750,0.249994,0,0);}
.md3_c00260{transform:matrix(0.242020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242020,0.000000,0.000000,0.250000,0,0);}
.m10_c00260{transform:matrix(0.242045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242045,0.000000,0.000000,0.250000,0,0);}
.m15_c00260{transform:matrix(0.242275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242275,0.000000,0.000000,0.250000,0,0);}
.m152_c00260{transform:matrix(0.242370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242370,0.000000,0.000000,0.250000,0,0);}
.m116_c00260{transform:matrix(0.242545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242545,0.000000,0.000000,0.250000,0,0);}
.m30_c00260{transform:matrix(0.242627,-0.001213,0.001250,0.249997,0,0);-ms-transform:matrix(0.242627,-0.001213,0.001250,0.249997,0,0);-webkit-transform:matrix(0.242627,-0.001213,0.001250,0.249997,0,0);}
.m141_c00260{transform:matrix(0.242675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242675,0.000000,0.000000,0.250000,0,0);}
.m137_c00260{transform:matrix(0.242745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242745,0.000000,0.000000,0.250000,0,0);}
.m22_c00260{transform:matrix(0.243140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243140,0.000000,0.000000,0.250000,0,0);}
.m149_c00260{transform:matrix(0.243200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243200,0.000000,0.000000,0.250000,0,0);}
.m13a_c00260{transform:matrix(0.244095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244095,0.000000,0.000000,0.250000,0,0);}
.mfa_c00260{transform:matrix(0.244130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244130,0.000000,0.000000,0.250000,0,0);}
.mbb_c00260{transform:matrix(0.244180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244180,0.000000,0.000000,0.250000,0,0);}
.mff_c00260{transform:matrix(0.244255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244255,0.000000,0.000000,0.250000,0,0);}
.md8_c00260{transform:matrix(0.244475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244475,0.000000,0.000000,0.250000,0,0);}
.m8a_c00260{transform:matrix(0.244805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244805,0.000000,0.000000,0.250000,0,0);}
.meb_c00260{transform:matrix(0.245025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245025,0.000000,0.000000,0.250000,0,0);}
.m111_c00260{transform:matrix(0.245290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245290,0.000000,0.000000,0.250000,0,0);}
.m94_c00260{transform:matrix(0.245680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245680,0.000000,0.000000,0.250000,0,0);}
.m138_c00260{transform:matrix(0.245725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245725,0.000000,0.000000,0.250000,0,0);}
.m62_c00260{transform:matrix(0.245819,-0.001721,0.001750,0.249994,0,0);-ms-transform:matrix(0.245819,-0.001721,0.001750,0.249994,0,0);-webkit-transform:matrix(0.245819,-0.001721,0.001750,0.249994,0,0);}
.m6e_c00260{transform:matrix(0.245984,-0.001722,0.001750,0.249994,0,0);-ms-transform:matrix(0.245984,-0.001722,0.001750,0.249994,0,0);-webkit-transform:matrix(0.245984,-0.001722,0.001750,0.249994,0,0);}
.m65_c00260{transform:matrix(0.246014,-0.001722,0.001750,0.249994,0,0);-ms-transform:matrix(0.246014,-0.001722,0.001750,0.249994,0,0);-webkit-transform:matrix(0.246014,-0.001722,0.001750,0.249994,0,0);}
.m10e_c00260{transform:matrix(0.246135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246135,0.000000,0.000000,0.250000,0,0);}
.m12e_c00260{transform:matrix(0.246195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246195,0.000000,0.000000,0.250000,0,0);}
.m108_c00260{transform:matrix(0.246615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246615,0.000000,0.000000,0.250000,0,0);}
.m6c_c00260{transform:matrix(0.246624,-0.001726,0.001750,0.249994,0,0);-ms-transform:matrix(0.246624,-0.001726,0.001750,0.249994,0,0);-webkit-transform:matrix(0.246624,-0.001726,0.001750,0.249994,0,0);}
.m7e_c00260{transform:matrix(0.246654,-0.001727,0.001750,0.249994,0,0);-ms-transform:matrix(0.246654,-0.001727,0.001750,0.249994,0,0);-webkit-transform:matrix(0.246654,-0.001727,0.001750,0.249994,0,0);}
.m7b_c00260{transform:matrix(0.246699,-0.001727,0.001750,0.249994,0,0);-ms-transform:matrix(0.246699,-0.001727,0.001750,0.249994,0,0);-webkit-transform:matrix(0.246699,-0.001727,0.001750,0.249994,0,0);}
.mfd_c00260{transform:matrix(0.246705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246705,0.000000,0.000000,0.250000,0,0);}
.m12b_c00260{transform:matrix(0.246730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246730,0.000000,0.000000,0.250000,0,0);}
.m159_c00260{transform:matrix(0.246855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246855,0.000000,0.000000,0.250000,0,0);}
.mf7_c00260{transform:matrix(0.246940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246940,0.000000,0.000000,0.250000,0,0);}
.m136_c00260{transform:matrix(0.247695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247695,0.000000,0.000000,0.250000,0,0);}
.md_c00260{transform:matrix(0.247810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247810,0.000000,0.000000,0.250000,0,0);}
.m158_c00260{transform:matrix(0.247815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247815,0.000000,0.000000,0.250000,0,0);}
.m21_c00260{transform:matrix(0.248005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248005,0.000000,0.000000,0.250000,0,0);}
.m63_c00260{transform:matrix(0.248189,-0.001737,0.001750,0.249994,0,0);-ms-transform:matrix(0.248189,-0.001737,0.001750,0.249994,0,0);-webkit-transform:matrix(0.248189,-0.001737,0.001750,0.249994,0,0);}
.m13_c00260{transform:matrix(0.248275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248275,0.000000,0.000000,0.250000,0,0);}
.mc_c00260{transform:matrix(0.248340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248340,0.000000,0.000000,0.250000,0,0);}
.m109_c00260{transform:matrix(0.248495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248495,0.000000,0.000000,0.250000,0,0);}
.m114_c00260{transform:matrix(0.248650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248650,0.000000,0.000000,0.250000,0,0);}
.m56_c00260{transform:matrix(0.248971,-0.001494,0.001500,0.249996,0,0);-ms-transform:matrix(0.248971,-0.001494,0.001500,0.249996,0,0);-webkit-transform:matrix(0.248971,-0.001494,0.001500,0.249996,0,0);}
.me_c00260{transform:matrix(0.249255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249255,0.000000,0.000000,0.250000,0,0);}
.m11b_c00260{transform:matrix(0.249480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249480,0.000000,0.000000,0.250000,0,0);}
.m3a_c00260{transform:matrix(0.249552,-0.001248,0.001250,0.249997,0,0);-ms-transform:matrix(0.249552,-0.001248,0.001250,0.249997,0,0);-webkit-transform:matrix(0.249552,-0.001248,0.001250,0.249997,0,0);}
.m117_c00260{transform:matrix(0.249760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249760,0.000000,0.000000,0.250000,0,0);}
.m14b_c00260{transform:matrix(0.249790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249790,0.000000,0.000000,0.250000,0,0);}
.m4d_c00260{transform:matrix(0.250150,-0.001501,0.001500,0.249996,0,0);-ms-transform:matrix(0.250150,-0.001501,0.001500,0.249996,0,0);-webkit-transform:matrix(0.250150,-0.001501,0.001500,0.249996,0,0);}
.md0_c00260{transform:matrix(0.250155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250155,0.000000,0.000000,0.250000,0,0);}
.m31_c00260{transform:matrix(0.250497,-0.001252,0.001250,0.249997,0,0);-ms-transform:matrix(0.250497,-0.001252,0.001250,0.249997,0,0);-webkit-transform:matrix(0.250497,-0.001252,0.001250,0.249997,0,0);}
.m7d_c00260{transform:matrix(0.250784,-0.001755,0.001750,0.249994,0,0);-ms-transform:matrix(0.250784,-0.001755,0.001750,0.249994,0,0);-webkit-transform:matrix(0.250784,-0.001755,0.001750,0.249994,0,0);}
.m34_c00260{transform:matrix(0.250827,-0.001254,0.001250,0.249997,0,0);-ms-transform:matrix(0.250827,-0.001254,0.001250,0.249997,0,0);-webkit-transform:matrix(0.250827,-0.001254,0.001250,0.249997,0,0);}
.m11c_c00260{transform:matrix(0.250930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250930,0.000000,0.000000,0.250000,0,0);}
.m37_c00260{transform:matrix(0.251017,-0.001255,0.001250,0.249997,0,0);-ms-transform:matrix(0.251017,-0.001255,0.001250,0.249997,0,0);-webkit-transform:matrix(0.251017,-0.001255,0.001250,0.249997,0,0);}
.m69_c00260{transform:matrix(0.251034,-0.001757,0.001750,0.249994,0,0);-ms-transform:matrix(0.251034,-0.001757,0.001750,0.249994,0,0);-webkit-transform:matrix(0.251034,-0.001757,0.001750,0.249994,0,0);}
.m50_c00260{transform:matrix(0.251120,-0.001507,0.001500,0.249996,0,0);-ms-transform:matrix(0.251120,-0.001507,0.001500,0.249996,0,0);-webkit-transform:matrix(0.251120,-0.001507,0.001500,0.249996,0,0);}
.m123_c00260{transform:matrix(0.251125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251125,0.000000,0.000000,0.250000,0,0);}
.m53_c00260{transform:matrix(0.251690,-0.001510,0.001500,0.249996,0,0);-ms-transform:matrix(0.251690,-0.001510,0.001500,0.249996,0,0);-webkit-transform:matrix(0.251690,-0.001510,0.001500,0.249996,0,0);}
.m10c_c00260{transform:matrix(0.251865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251865,0.000000,0.000000,0.250000,0,0);}
.m64_c00260{transform:matrix(0.251869,-0.001763,0.001750,0.249994,0,0);-ms-transform:matrix(0.251869,-0.001763,0.001750,0.249994,0,0);-webkit-transform:matrix(0.251869,-0.001763,0.001750,0.249994,0,0);}
.m5e_c00260{transform:matrix(0.251980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251980,0.000000,0.000000,0.250000,0,0);}
.m148_c00260{transform:matrix(0.252230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252230,0.000000,0.000000,0.250000,0,0);}
.m7a_c00260{transform:matrix(0.252384,-0.001767,0.001750,0.249994,0,0);-ms-transform:matrix(0.252384,-0.001767,0.001750,0.249994,0,0);-webkit-transform:matrix(0.252384,-0.001767,0.001750,0.249994,0,0);}
.m5c_c00260{transform:matrix(0.252410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252410,0.000000,0.000000,0.250000,0,0);}
.md9_c00260{transform:matrix(0.252590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252590,0.000000,0.000000,0.250000,0,0);}
.m16_c00260{transform:matrix(0.252955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252955,0.000000,0.000000,0.250000,0,0);}
.m20_c00260{transform:matrix(0.253195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253195,0.000000,0.000000,0.250000,0,0);}
.m13d_c00260{transform:matrix(0.253590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253590,0.000000,0.000000,0.250000,0,0);}
.m67_c00260{transform:matrix(0.253634,-0.001775,0.001750,0.249994,0,0);-ms-transform:matrix(0.253634,-0.001775,0.001750,0.249994,0,0);-webkit-transform:matrix(0.253634,-0.001775,0.001750,0.249994,0,0);}
.m66_c00260{transform:matrix(0.254229,-0.001780,0.001750,0.249994,0,0);-ms-transform:matrix(0.254229,-0.001780,0.001750,0.249994,0,0);-webkit-transform:matrix(0.254229,-0.001780,0.001750,0.249994,0,0);}
.md2_c00260{transform:matrix(0.254275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254275,0.000000,0.000000,0.250000,0,0);}
.m112_c00260{transform:matrix(0.254280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254280,0.000000,0.000000,0.250000,0,0);}
.m79_c00260{transform:matrix(0.255204,-0.001786,0.001750,0.249994,0,0);-ms-transform:matrix(0.255204,-0.001786,0.001750,0.249994,0,0);-webkit-transform:matrix(0.255204,-0.001786,0.001750,0.249994,0,0);}
.m11e_c00260{transform:matrix(0.255440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255440,0.000000,0.000000,0.250000,0,0);}
.m139_c00260{transform:matrix(0.256350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256350,0.000000,0.000000,0.250000,0,0);}
.m156_c00260{transform:matrix(0.256615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256615,0.000000,0.000000,0.250000,0,0);}
.med_c00260{transform:matrix(0.256640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256640,0.000000,0.000000,0.250000,0,0);}
.m6f_c00260{transform:matrix(0.256649,-0.001797,0.001750,0.249994,0,0);-ms-transform:matrix(0.256649,-0.001797,0.001750,0.249994,0,0);-webkit-transform:matrix(0.256649,-0.001797,0.001750,0.249994,0,0);}
.m75_c00260{transform:matrix(0.257849,-0.001805,0.001750,0.249994,0,0);-ms-transform:matrix(0.257849,-0.001805,0.001750,0.249994,0,0);-webkit-transform:matrix(0.257849,-0.001805,0.001750,0.249994,0,0);}
.m39_c00260{transform:matrix(0.257912,-0.001290,0.001250,0.249997,0,0);-ms-transform:matrix(0.257912,-0.001290,0.001250,0.249997,0,0);-webkit-transform:matrix(0.257912,-0.001290,0.001250,0.249997,0,0);}
.m6a_c00260{transform:matrix(0.258129,-0.001807,0.001750,0.249994,0,0);-ms-transform:matrix(0.258129,-0.001807,0.001750,0.249994,0,0);-webkit-transform:matrix(0.258129,-0.001807,0.001750,0.249994,0,0);}
.m142_c00260{transform:matrix(0.258185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258185,0.000000,0.000000,0.250000,0,0);}
.m127_c00260{transform:matrix(0.258315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258315,0.000000,0.000000,0.250000,0,0);}
.m5d_c00260{transform:matrix(0.258330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258330,0.000000,0.000000,0.250000,0,0);}
.mf5_c00260{transform:matrix(0.258800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258800,0.000000,0.000000,0.250000,0,0);}
.m119_c00260{transform:matrix(0.260350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260350,0.000000,0.000000,0.250000,0,0);}
.m1a_c00260{transform:matrix(0.260355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260355,0.000000,0.000000,0.250000,0,0);}
.m83_c00260{transform:matrix(0.260534,-0.001824,0.001750,0.249994,0,0);-ms-transform:matrix(0.260534,-0.001824,0.001750,0.249994,0,0);-webkit-transform:matrix(0.260534,-0.001824,0.001750,0.249994,0,0);}
.mdb_c00260{transform:matrix(0.260725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260725,0.000000,0.000000,0.250000,0,0);}
.m4b_c00260{transform:matrix(0.261380,-0.001568,0.001500,0.249996,0,0);-ms-transform:matrix(0.261380,-0.001568,0.001500,0.249996,0,0);-webkit-transform:matrix(0.261380,-0.001568,0.001500,0.249996,0,0);}
.m120_c00260{transform:matrix(0.262255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262255,0.000000,0.000000,0.250000,0,0);}
.md6_c00260{transform:matrix(0.262550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262550,0.000000,0.000000,0.250000,0,0);}
.m7c_c00260{transform:matrix(0.262759,-0.001839,0.001750,0.249994,0,0);-ms-transform:matrix(0.262759,-0.001839,0.001750,0.249994,0,0);-webkit-transform:matrix(0.262759,-0.001839,0.001750,0.249994,0,0);}
.m86_c00260{transform:matrix(0.262869,-0.001840,0.001750,0.249994,0,0);-ms-transform:matrix(0.262869,-0.001840,0.001750,0.249994,0,0);-webkit-transform:matrix(0.262869,-0.001840,0.001750,0.249994,0,0);}
.m130_c00260{transform:matrix(0.262885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262885,0.000000,0.000000,0.250000,0,0);}
.m125_c00260{transform:matrix(0.262900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262900,0.000000,0.000000,0.250000,0,0);}
.m101_c00260{transform:matrix(0.263260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263260,0.000000,0.000000,0.250000,0,0);}
.mf6_c00260{transform:matrix(0.263440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263440,0.000000,0.000000,0.250000,0,0);}
.m49_c00260{transform:matrix(0.263755,-0.001583,0.001500,0.249996,0,0);-ms-transform:matrix(0.263755,-0.001583,0.001500,0.249996,0,0);-webkit-transform:matrix(0.263755,-0.001583,0.001500,0.249996,0,0);}
.mee_c00260{transform:matrix(0.264450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264450,0.000000,0.000000,0.250000,0,0);}
.m7f_c00260{transform:matrix(0.264499,-0.001851,0.001750,0.249994,0,0);-ms-transform:matrix(0.264499,-0.001851,0.001750,0.249994,0,0);-webkit-transform:matrix(0.264499,-0.001851,0.001750,0.249994,0,0);}
.m81_c00260{transform:matrix(0.264609,-0.001852,0.001750,0.249994,0,0);-ms-transform:matrix(0.264609,-0.001852,0.001750,0.249994,0,0);-webkit-transform:matrix(0.264609,-0.001852,0.001750,0.249994,0,0);}
.m13e_c00260{transform:matrix(0.264980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264980,0.000000,0.000000,0.250000,0,0);}
.mfc_c00260{transform:matrix(0.265435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265435,0.000000,0.000000,0.250000,0,0);}
.mcf_c00260{transform:matrix(0.265495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265495,0.000000,0.000000,0.250000,0,0);}
.m13c_c00260{transform:matrix(0.265980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265980,0.000000,0.000000,0.250000,0,0);}
.mf3_c00260{transform:matrix(0.266650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266650,0.000000,0.000000,0.250000,0,0);}
.m105_c00260{transform:matrix(0.266765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266765,0.000000,0.000000,0.250000,0,0);}
.m115_c00260{transform:matrix(0.266860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266860,0.000000,0.000000,0.250000,0,0);}
.mf0_c00260{transform:matrix(0.267095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267095,0.000000,0.000000,0.250000,0,0);}
.m133_c00260{transform:matrix(0.267150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267150,0.000000,0.000000,0.250000,0,0);}
.m13b_c00260{transform:matrix(0.268380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268380,0.000000,0.000000,0.250000,0,0);}
.m126_c00260{transform:matrix(0.268465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268465,0.000000,0.000000,0.250000,0,0);}
.m73_c00260{transform:matrix(0.270203,-0.001891,0.001750,0.249994,0,0);-ms-transform:matrix(0.270203,-0.001891,0.001750,0.249994,0,0);-webkit-transform:matrix(0.270203,-0.001891,0.001750,0.249994,0,0);}
.m11a_c00260{transform:matrix(0.270855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270855,0.000000,0.000000,0.250000,0,0);}
.m80_c00260{transform:matrix(0.270928,-0.001896,0.001750,0.249994,0,0);-ms-transform:matrix(0.270928,-0.001896,0.001750,0.249994,0,0);-webkit-transform:matrix(0.270928,-0.001896,0.001750,0.249994,0,0);}
.m12d_c00260{transform:matrix(0.271165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271165,0.000000,0.000000,0.250000,0,0);}
.m103_c00260{transform:matrix(0.271260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271260,0.000000,0.000000,0.250000,0,0);}
.m84_c00260{transform:matrix(0.271933,-0.001904,0.001750,0.249994,0,0);-ms-transform:matrix(0.271933,-0.001904,0.001750,0.249994,0,0);-webkit-transform:matrix(0.271933,-0.001904,0.001750,0.249994,0,0);}
.me8_c00260{transform:matrix(0.273990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273990,0.000000,0.000000,0.250000,0,0);}
.mf9_c00260{transform:matrix(0.275840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275840,0.000000,0.000000,0.250000,0,0);}
.m128_c00260{transform:matrix(0.275935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275935,0.000000,0.000000,0.250000,0,0);}
.m122_c00260{transform:matrix(0.276525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276525,0.000000,0.000000,0.250000,0,0);}
.mfe_c00260{transform:matrix(0.276530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276530,0.000000,0.000000,0.250000,0,0);}
.m4e_c00260{transform:matrix(0.276950,-0.001662,0.001500,0.249996,0,0);-ms-transform:matrix(0.276950,-0.001662,0.001500,0.249996,0,0);-webkit-transform:matrix(0.276950,-0.001662,0.001500,0.249996,0,0);}
.m12c_c00260{transform:matrix(0.277140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277140,0.000000,0.000000,0.250000,0,0);}
.m4a_c00260{transform:matrix(0.277705,-0.001666,0.001500,0.249996,0,0);-ms-transform:matrix(0.277705,-0.001666,0.001500,0.249996,0,0);-webkit-transform:matrix(0.277705,-0.001666,0.001500,0.249996,0,0);}
.m11d_c00260{transform:matrix(0.278435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278435,0.000000,0.000000,0.250000,0,0);}
.m82_c00260{transform:matrix(0.278998,-0.001953,0.001750,0.249994,0,0);-ms-transform:matrix(0.278998,-0.001953,0.001750,0.249994,0,0);-webkit-transform:matrix(0.278998,-0.001953,0.001750,0.249994,0,0);}
.m131_c00260{transform:matrix(0.279465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279465,0.000000,0.000000,0.250000,0,0);}
.mfb_c00260{transform:matrix(0.279700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279700,0.000000,0.000000,0.250000,0,0);}
.mda_c00260{transform:matrix(0.279775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279775,0.000000,0.000000,0.250000,0,0);}
.me7_c00260{transform:matrix(0.279890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279890,0.000000,0.000000,0.250000,0,0);}
.m54_c00260{transform:matrix(0.281020,-0.001686,0.001500,0.249996,0,0);-ms-transform:matrix(0.281020,-0.001686,0.001500,0.249996,0,0);-webkit-transform:matrix(0.281020,-0.001686,0.001500,0.249996,0,0);}
.mf2_c00260{transform:matrix(0.283505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283505,0.000000,0.000000,0.250000,0,0);}
.m118_c00260{transform:matrix(0.283965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283965,0.000000,0.000000,0.250000,0,0);}
.m121_c00260{transform:matrix(0.287425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287425,0.000000,0.000000,0.250000,0,0);}
.m14c_c00260{transform:matrix(0.289490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289490,0.000000,0.000000,0.250000,0,0);}
.m71_c00260{transform:matrix(0.289508,-0.002027,0.001750,0.249994,0,0);-ms-transform:matrix(0.289508,-0.002027,0.001750,0.249994,0,0);-webkit-transform:matrix(0.289508,-0.002027,0.001750,0.249994,0,0);}
.m2f_c00260{transform:matrix(0.290356,-0.001452,0.001250,0.249997,0,0);-ms-transform:matrix(0.290356,-0.001452,0.001250,0.249997,0,0);-webkit-transform:matrix(0.290356,-0.001452,0.001250,0.249997,0,0);}
.m57_c00260{transform:matrix(0.291035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291035,0.000000,0.000000,0.250000,0,0);}
.m107_c00260{transform:matrix(0.291960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291960,0.000000,0.000000,0.250000,0,0);}
.mba_c00260{transform:matrix(0.316145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316145,0.000000,0.000000,0.250000,0,0);}
.m1_c00260{transform:matrix(0.564295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.564295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.564295,0.000000,0.000000,0.250000,0,0);}
.v0_c00260{vertical-align:0.000000px;}
.ls0_c00260{letter-spacing:0.000000px;}
.sc__c00260{text-shadow:none;}
.sc0_c00260{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__c00260{-webkit-text-stroke:0px transparent;}
.sc0_c00260{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00260{word-spacing:0.000000px;}
.fc0_c00260{color:transparent;}
.fs9_c00260{font-size:30.000000px;}
.fs0_c00260{font-size:60.000000px;}
.fsd_c00260{font-size:72.000000px;}
.fs6_c00260{font-size:72.001296px;}
.fs8_c00260{font-size:72.001764px;}
.fs2_c00260{font-size:78.000000px;}
.fs4_c00260{font-size:78.000975px;}
.fs7_c00260{font-size:78.001911px;}
.fsb_c00260{font-size:84.000000px;}
.fs3_c00260{font-size:84.001050px;}
.fsa_c00260{font-size:90.000000px;}
.fs1_c00260{font-size:96.000000px;}
.fs5_c00260{font-size:96.001728px;}
.fsc_c00260{font-size:102.000000px;}
.y0_c00260{bottom:0.000000px;}
.y83_c00260{bottom:29.398500px;}
.y82_c00260{bottom:70.228500px;}
.y81_c00260{bottom:100.623000px;}
.y80_c00260{bottom:132.570000px;}
.y7f_c00260{bottom:165.510000px;}
.y7e_c00260{bottom:196.927500px;}
.y7d_c00260{bottom:228.252000px;}
.y7c_c00260{bottom:260.152500px;}
.y7b_c00260{bottom:291.223500px;}
.y7a_c00260{bottom:323.097000px;}
.y79_c00260{bottom:355.236000px;}
.y78_c00260{bottom:388.029000px;}
.y77_c00260{bottom:419.347500px;}
.y76_c00260{bottom:451.450500px;}
.y75_c00260{bottom:484.024500px;}
.y74_c00260{bottom:512.553000px;}
.y73_c00260{bottom:543.339000px;}
.y72_c00260{bottom:575.370000px;}
.y71_c00260{bottom:606.757500px;}
.y70_c00260{bottom:637.161000px;}
.y6f_c00260{bottom:663.390000px;}
.y6a_c00260{bottom:667.526462px;}
.y69_c00260{bottom:667.526742px;}
.y6d_c00260{bottom:667.526748px;}
.y6b_c00260{bottom:667.526871px;}
.y6c_c00260{bottom:667.527161px;}
.y6e_c00260{bottom:680.940000px;}
.y68_c00260{bottom:702.346618px;}
.y5c_c00260{bottom:702.346865px;}
.y60_c00260{bottom:702.347062px;}
.y5f_c00260{bottom:702.347073px;}
.y62_c00260{bottom:702.347132px;}
.y66_c00260{bottom:702.347139px;}
.y65_c00260{bottom:702.347160px;}
.y63_c00260{bottom:702.347211px;}
.y5d_c00260{bottom:702.347214px;}
.y67_c00260{bottom:702.347289px;}
.y61_c00260{bottom:702.347472px;}
.y5e_c00260{bottom:702.347504px;}
.y64_c00260{bottom:702.347830px;}
.y50_c00260{bottom:732.239885px;}
.y51_c00260{bottom:732.931247px;}
.y52_c00260{bottom:733.231788px;}
.y53_c00260{bottom:733.777945px;}
.y54_c00260{bottom:734.310810px;}
.y55_c00260{bottom:734.462241px;}
.y56_c00260{bottom:735.236952px;}
.y57_c00260{bottom:735.314494px;}
.y58_c00260{bottom:735.777670px;}
.y59_c00260{bottom:736.158012px;}
.y5a_c00260{bottom:736.616851px;}
.y5b_c00260{bottom:736.855033px;}
.y45_c00260{bottom:764.910000px;}
.y46_c00260{bottom:765.142491px;}
.y47_c00260{bottom:765.382532px;}
.y48_c00260{bottom:765.605604px;}
.y49_c00260{bottom:765.985326px;}
.y4a_c00260{bottom:766.148034px;}
.y4b_c00260{bottom:766.752845px;}
.y4c_c00260{bottom:767.215947px;}
.y4d_c00260{bottom:767.835867px;}
.y4e_c00260{bottom:768.521748px;}
.y4f_c00260{bottom:768.680728px;}
.y44_c00260{bottom:797.074500px;}
.y36_c00260{bottom:827.548911px;}
.y37_c00260{bottom:827.873109px;}
.y38_c00260{bottom:828.138528px;}
.y39_c00260{bottom:828.467298px;}
.y3a_c00260{bottom:828.598635px;}
.y3b_c00260{bottom:828.864342px;}
.y3c_c00260{bottom:829.542744px;}
.y3d_c00260{bottom:829.656414px;}
.y3e_c00260{bottom:829.923732px;}
.y3f_c00260{bottom:830.124675px;}
.y40_c00260{bottom:830.315781px;}
.y41_c00260{bottom:830.576664px;}
.y42_c00260{bottom:831.305619px;}
.y43_c00260{bottom:831.500010px;}
.y29_c00260{bottom:858.600000px;}
.y2a_c00260{bottom:858.992229px;}
.y2b_c00260{bottom:859.319334px;}
.y2c_c00260{bottom:859.526658px;}
.y2d_c00260{bottom:860.045076px;}
.y2e_c00260{bottom:860.309163px;}
.y2f_c00260{bottom:860.854725px;}
.y30_c00260{bottom:860.971743px;}
.y31_c00260{bottom:861.298974px;}
.y32_c00260{bottom:861.692652px;}
.y33_c00260{bottom:861.963183px;}
.y34_c00260{bottom:862.419924px;}
.y35_c00260{bottom:862.557912px;}
.y1c_c00260{bottom:889.919400px;}
.y1d_c00260{bottom:890.182643px;}
.y1e_c00260{bottom:890.293432px;}
.y1f_c00260{bottom:890.736157px;}
.y20_c00260{bottom:890.898240px;}
.y21_c00260{bottom:891.126397px;}
.y22_c00260{bottom:891.559770px;}
.y23_c00260{bottom:891.829770px;}
.y24_c00260{bottom:892.051163px;}
.y25_c00260{bottom:892.435830px;}
.y26_c00260{bottom:892.543920px;}
.y27_c00260{bottom:893.100150px;}
.y28_c00260{bottom:893.533478px;}
.y10_c00260{bottom:922.320000px;}
.y11_c00260{bottom:922.398525px;}
.y12_c00260{bottom:922.614593px;}
.y13_c00260{bottom:923.269260px;}
.y14_c00260{bottom:923.380005px;}
.y15_c00260{bottom:923.878193px;}
.y16_c00260{bottom:924.370875px;}
.y17_c00260{bottom:924.538395px;}
.y18_c00260{bottom:924.865050px;}
.y19_c00260{bottom:925.082407px;}
.y1a_c00260{bottom:925.465845px;}
.y1b_c00260{bottom:925.854637px;}
.yf_c00260{bottom:955.654500px;}
.y3_c00260{bottom:984.960000px;}
.y4_c00260{bottom:985.231500px;}
.y5_c00260{bottom:985.692000px;}
.y6_c00260{bottom:986.215500px;}
.y7_c00260{bottom:986.343000px;}
.y8_c00260{bottom:986.614500px;}
.y9_c00260{bottom:987.204000px;}
.ya_c00260{bottom:987.469500px;}
.yb_c00260{bottom:987.600000px;}
.yc_c00260{bottom:988.066500px;}
.yd_c00260{bottom:988.522500px;}
.ye_c00260{bottom:988.858500px;}
.y2_c00260{bottom:1019.097000px;}
.y1_c00260{bottom:1087.695000px;}
.hb_c00260{height:30.000000px;}
.h2_c00260{height:60.000000px;}
.hf_c00260{height:72.000000px;}
.h8_c00260{height:72.001296px;}
.ha_c00260{height:72.001764px;}
.h4_c00260{height:78.000000px;}
.h6_c00260{height:78.000975px;}
.h9_c00260{height:78.001911px;}
.hd_c00260{height:84.000000px;}
.h5_c00260{height:84.001050px;}
.hc_c00260{height:90.000000px;}
.h3_c00260{height:96.000000px;}
.h7_c00260{height:96.001728px;}
.he_c00260{height:102.000000px;}
.h0_c00260{height:1127.790000px;}
.h1_c00260{height:1128.000000px;}
.w0_c00260{width:915.000000px;}
.x0_c00260{left:0.000000px;}
.xc2_c00260{left:92.880000px;}
.xab_c00260{left:98.820000px;}
.x1f_c00260{left:126.648000px;}
.x77_c00260{left:130.680000px;}
.x2a_c00260{left:132.090135px;}
.x3c_c00260{left:134.190000px;}
.x60_c00260{left:137.970000px;}
.xc_c00260{left:139.948500px;}
.x20_c00260{left:142.353000px;}
.x78_c00260{left:143.640000px;}
.x96_c00260{left:144.990000px;}
.xac_c00260{left:146.340000px;}
.xbb_c00260{left:168.210000px;}
.x4d_c00260{left:176.039196px;}
.x92_c00260{left:177.120000px;}
.xb4_c00260{left:179.280000px;}
.xd_c00260{left:185.311500px;}
.x3d_c00260{left:186.570000px;}
.x9f_c00260{left:189.810000px;}
.x17_c00260{left:196.020000px;}
.x55_c00260{left:198.176514px;}
.x8f_c00260{left:199.800000px;}
.x2b_c00260{left:206.896635px;}
.x4e_c00260{left:208.439282px;}
.x71_c00260{left:209.790000px;}
.x82_c00260{left:220.590000px;}
.xbc_c00260{left:221.940000px;}
.xc3_c00260{left:224.370000px;}
.x18_c00260{left:228.960000px;}
.x61_c00260{left:230.040000px;}
.x6a_c00260{left:231.120000px;}
.x93_c00260{left:232.470000px;}
.xc1_c00260{left:234.900000px;}
.x37_c00260{left:240.109800px;}
.x49_c00260{left:241.475825px;}
.xa6_c00260{left:244.350000px;}
.x3_c00260{left:250.830000px;}
.x40_c00260{left:252.003000px;}
.x72_c00260{left:254.070000px;}
.xe_c00260{left:261.994500px;}
.x19_c00260{left:271.890000px;}
.x6b_c00260{left:275.670000px;}
.xad_c00260{left:277.560000px;}
.x41_c00260{left:285.216000px;}
.x56_c00260{left:286.739351px;}
.xa0_c00260{left:288.360000px;}
.x4_c00260{left:294.570000px;}
.x31_c00260{left:296.278500px;}
.x6c_c00260{left:308.610000px;}
.xae_c00260{left:309.960000px;}
.x21_c00260{left:316.500000px;}
.x42_c00260{left:319.507500px;}
.x90_c00260{left:320.760000px;}
.x2c_c00260{left:327.858135px;}
.x4f_c00260{left:329.940735px;}
.x9a_c00260{left:331.020000px;}
.x83_c00260{left:332.100000px;}
.x22_c00260{left:338.649000px;}
.x62_c00260{left:341.550000px;}
.xf_c00260{left:349.185000px;}
.x43_c00260{left:351.375000px;}
.x9b_c00260{left:353.160000px;}
.xc4_c00260{left:354.780000px;}
.x5_c00260{left:360.720000px;}
.x4a_c00260{left:362.432825px;}
.x97_c00260{left:363.690000px;}
.xbd_c00260{left:365.040000px;}
.x10_c00260{left:370.531500px;}
.x2d_c00260{left:373.489635px;}
.x8a_c00260{left:376.110000px;}
.x32_c00260{left:382.681500px;}
.x50_c00260{left:384.751923px;}
.x7a_c00260{left:385.830000px;}
.xb5_c00260{left:386.910000px;}
.xc5_c00260{left:388.260000px;}
.x1_c00260{left:393.120000px;}
.x84_c00260{left:395.820000px;}
.xa7_c00260{left:397.170000px;}
.xaf_c00260{left:398.250000px;}
.x6_c00260{left:403.380000px;}
.x44_c00260{left:405.621000px;}
.x5a_c00260{left:408.510000px;}
.x2_c00260{left:416.340000px;}
.x63_c00260{left:418.230000px;}
.xb6_c00260{left:420.660000px;}
.x1a_c00260{left:426.870000px;}
.x45_c00260{left:428.865000px;}
.x23_c00260{left:438.286500px;}
.x6d_c00260{left:441.180000px;}
.x3e_c00260{left:449.820000px;}
.x98_c00260{left:451.980000px;}
.xb0_c00260{left:453.600000px;}
.x2e_c00260{left:460.164135px;}
.xb7_c00260{left:463.320000px;}
.x5b_c00260{left:473.040000px;}
.x38_c00260{left:474.145800px;}
.x7_c00260{left:475.470000px;}
.x64_c00260{left:483.300000px;}
.xc6_c00260{left:487.620000px;}
.x1b_c00260{left:491.400000px;}
.x39_c00260{left:493.090800px;}
.xa1_c00260{left:497.070000px;}
.x51_c00260{left:505.714845px;}
.x11_c00260{left:514.152000px;}
.x46_c00260{left:515.266500px;}
.x33_c00260{left:517.623000px;}
.x8b_c00260{left:518.670000px;}
.x1c_c00260{left:525.960000px;}
.x7c_c00260{left:527.580000px;}
.x9c_c00260{left:528.930000px;}
.x24_c00260{left:536.823000px;}
.x73_c00260{left:538.110000px;}
.xb1_c00260{left:539.730000px;}
.xa2_c00260{left:541.080000px;}
.x85_c00260{left:549.990000px;}
.x7b_c00260{left:551.070000px;}
.x12_c00260{left:558.427500px;}
.x7d_c00260{left:560.250000px;}
.x52_c00260{left:561.336075px;}
.xbe_c00260{left:563.760000px;}
.x25_c00260{left:570.327000px;}
.x86_c00260{left:572.670000px;}
.x13_c00260{left:580.056000px;}
.x3f_c00260{left:581.310000px;}
.x6e_c00260{left:583.470000px;}
.x59_c00260{left:590.220000px;}
.x34_c00260{left:591.664500px;}
.x65_c00260{left:593.730000px;}
.x8c_c00260{left:594.810000px;}
.x3a_c00260{left:602.985300px;}
.x94_c00260{left:604.800000px;}
.xa8_c00260{left:606.690000px;}
.x8_c00260{left:612.900000px;}
.x66_c00260{left:616.140000px;}
.x99_c00260{left:617.220000px;}
.x58_c00260{left:622.890000px;}
.x1d_c00260{left:623.970000px;}
.x7e_c00260{left:626.400000px;}
.x9d_c00260{left:627.480000px;}
.x9_c00260{left:634.230000px;}
.x26_c00260{left:635.658000px;}
.x57_c00260{left:636.667497px;}
.x5c_c00260{left:637.740000px;}
.xa3_c00260{left:640.440000px;}
.x3b_c00260{left:646.465800px;}
.x4b_c00260{left:648.107825px;}
.x67_c00260{left:649.620000px;}
.x9e_c00260{left:651.240000px;}
.x14_c00260{left:657.804000px;}
.x74_c00260{left:659.340000px;}
.x47_c00260{left:669.984000px;}
.x87_c00260{left:671.220000px;}
.x27_c00260{left:679.129500px;}
.x8d_c00260{left:683.100000px;}
.x53_c00260{left:692.289491px;}
.x75_c00260{left:693.360000px;}
.xbf_c00260{left:695.250000px;}
.x35_c00260{left:702.366000px;}
.x7f_c00260{left:703.620000px;}
.xb8_c00260{left:706.050000px;}
.x5d_c00260{left:714.420000px;}
.xc0_c00260{left:716.850000px;}
.xa_c00260{left:722.520000px;}
.x6f_c00260{left:725.490000px;}
.x80_c00260{left:726.570000px;}
.xa9_c00260{left:727.920000px;}
.x15_c00260{left:733.683000px;}
.x5e_c00260{left:736.020000px;}
.x91_c00260{left:737.910000px;}
.x54_c00260{left:747.910721px;}
.xb2_c00260{left:750.060000px;}
.x28_c00260{left:755.817000px;}
.x95_c00260{left:758.430000px;}
.xaa_c00260{left:761.130000px;}
.x2f_c00260{left:768.240135px;}
.x76_c00260{left:769.500000px;}
.xb9_c00260{left:772.200000px;}
.x36_c00260{left:778.489500px;}
.x88_c00260{left:780.300000px;}
.x16_c00260{left:789.571500px;}
.x48_c00260{left:790.678500px;}
.x68_c00260{left:792.180000px;}
.xb3_c00260{left:793.530000px;}
.xb_c00260{left:800.820000px;}
.x4c_c00260{left:802.016825px;}
.xba_c00260{left:806.220000px;}
.x5f_c00260{left:812.430000px;}
.x89_c00260{left:814.320000px;}
.x79_c00260{left:824.040000px;}
.x69_c00260{left:825.120000px;}
.x1e_c00260{left:832.410000px;}
.x29_c00260{left:833.575500px;}
.x70_c00260{left:835.920000px;}
.xa4_c00260{left:847.800000px;}
.x30_c00260{left:854.905635px;}
.x81_c00260{left:857.520000px;}
.x8e_c00260{left:868.860000px;}
.xa5_c00260{left:889.380000px;}
@media print{
.v0_c00260{vertical-align:0.000000pt;}
.ls0_c00260{letter-spacing:0.000000pt;}
.ws0_c00260{word-spacing:0.000000pt;}
.fs9_c00260{font-size:26.666667pt;}
.fs0_c00260{font-size:53.333333pt;}
.fsd_c00260{font-size:64.000000pt;}
.fs6_c00260{font-size:64.001152pt;}
.fs8_c00260{font-size:64.001568pt;}
.fs2_c00260{font-size:69.333333pt;}
.fs4_c00260{font-size:69.334200pt;}
.fs7_c00260{font-size:69.335032pt;}
.fsb_c00260{font-size:74.666667pt;}
.fs3_c00260{font-size:74.667600pt;}
.fsa_c00260{font-size:80.000000pt;}
.fs1_c00260{font-size:85.333333pt;}
.fs5_c00260{font-size:85.334869pt;}
.fsc_c00260{font-size:90.666667pt;}
.y0_c00260{bottom:0.000000pt;}
.y83_c00260{bottom:26.132000pt;}
.y82_c00260{bottom:62.425333pt;}
.y81_c00260{bottom:89.442667pt;}
.y80_c00260{bottom:117.840000pt;}
.y7f_c00260{bottom:147.120000pt;}
.y7e_c00260{bottom:175.046667pt;}
.y7d_c00260{bottom:202.890667pt;}
.y7c_c00260{bottom:231.246667pt;}
.y7b_c00260{bottom:258.865333pt;}
.y7a_c00260{bottom:287.197333pt;}
.y79_c00260{bottom:315.765333pt;}
.y78_c00260{bottom:344.914667pt;}
.y77_c00260{bottom:372.753333pt;}
.y76_c00260{bottom:401.289333pt;}
.y75_c00260{bottom:430.244000pt;}
.y74_c00260{bottom:455.602667pt;}
.y73_c00260{bottom:482.968000pt;}
.y72_c00260{bottom:511.440000pt;}
.y71_c00260{bottom:539.340000pt;}
.y70_c00260{bottom:566.365333pt;}
.y6f_c00260{bottom:589.680000pt;}
.y6a_c00260{bottom:593.356855pt;}
.y69_c00260{bottom:593.357104pt;}
.y6d_c00260{bottom:593.357109pt;}
.y6b_c00260{bottom:593.357219pt;}
.y6c_c00260{bottom:593.357476pt;}
.y6e_c00260{bottom:605.280000pt;}
.y68_c00260{bottom:624.308105pt;}
.y5c_c00260{bottom:624.308324pt;}
.y60_c00260{bottom:624.308500pt;}
.y5f_c00260{bottom:624.308509pt;}
.y62_c00260{bottom:624.308561pt;}
.y66_c00260{bottom:624.308568pt;}
.y65_c00260{bottom:624.308587pt;}
.y63_c00260{bottom:624.308632pt;}
.y5d_c00260{bottom:624.308635pt;}
.y67_c00260{bottom:624.308701pt;}
.y61_c00260{bottom:624.308864pt;}
.y5e_c00260{bottom:624.308892pt;}
.y64_c00260{bottom:624.309183pt;}
.y50_c00260{bottom:650.879897pt;}
.y51_c00260{bottom:651.494441pt;}
.y52_c00260{bottom:651.761589pt;}
.y53_c00260{bottom:652.247063pt;}
.y54_c00260{bottom:652.720720pt;}
.y55_c00260{bottom:652.855325pt;}
.y56_c00260{bottom:653.543957pt;}
.y57_c00260{bottom:653.612884pt;}
.y58_c00260{bottom:654.024596pt;}
.y59_c00260{bottom:654.362677pt;}
.y5a_c00260{bottom:654.770535pt;}
.y5b_c00260{bottom:654.982252pt;}
.y45_c00260{bottom:679.920000pt;}
.y46_c00260{bottom:680.126659pt;}
.y47_c00260{bottom:680.340028pt;}
.y48_c00260{bottom:680.538315pt;}
.y49_c00260{bottom:680.875845pt;}
.y4a_c00260{bottom:681.020475pt;}
.y4b_c00260{bottom:681.558084pt;}
.y4c_c00260{bottom:681.969731pt;}
.y4d_c00260{bottom:682.520771pt;}
.y4e_c00260{bottom:683.130443pt;}
.y4f_c00260{bottom:683.271759pt;}
.y44_c00260{bottom:708.510667pt;}
.y36_c00260{bottom:735.599032pt;}
.y37_c00260{bottom:735.887208pt;}
.y38_c00260{bottom:736.123136pt;}
.y39_c00260{bottom:736.415376pt;}
.y3a_c00260{bottom:736.532120pt;}
.y3b_c00260{bottom:736.768304pt;}
.y3c_c00260{bottom:737.371328pt;}
.y3d_c00260{bottom:737.472368pt;}
.y3e_c00260{bottom:737.709984pt;}
.y3f_c00260{bottom:737.888600pt;}
.y40_c00260{bottom:738.058472pt;}
.y41_c00260{bottom:738.290368pt;}
.y42_c00260{bottom:738.938328pt;}
.y43_c00260{bottom:739.111120pt;}
.y29_c00260{bottom:763.200000pt;}
.y2a_c00260{bottom:763.548648pt;}
.y2b_c00260{bottom:763.839408pt;}
.y2c_c00260{bottom:764.023696pt;}
.y2d_c00260{bottom:764.484512pt;}
.y2e_c00260{bottom:764.719256pt;}
.y2f_c00260{bottom:765.204200pt;}
.y30_c00260{bottom:765.308216pt;}
.y31_c00260{bottom:765.599088pt;}
.y32_c00260{bottom:765.949024pt;}
.y33_c00260{bottom:766.189496pt;}
.y34_c00260{bottom:766.595488pt;}
.y35_c00260{bottom:766.718144pt;}
.y1c_c00260{bottom:791.039467pt;}
.y1d_c00260{bottom:791.273460pt;}
.y1e_c00260{bottom:791.371940pt;}
.y1f_c00260{bottom:791.765473pt;}
.y20_c00260{bottom:791.909547pt;}
.y21_c00260{bottom:792.112353pt;}
.y22_c00260{bottom:792.497573pt;}
.y23_c00260{bottom:792.737573pt;}
.y24_c00260{bottom:792.934367pt;}
.y25_c00260{bottom:793.276293pt;}
.y26_c00260{bottom:793.372373pt;}
.y27_c00260{bottom:793.866800pt;}
.y28_c00260{bottom:794.251980pt;}
.y10_c00260{bottom:819.840000pt;}
.y11_c00260{bottom:819.909800pt;}
.y12_c00260{bottom:820.101860pt;}
.y13_c00260{bottom:820.683787pt;}
.y14_c00260{bottom:820.782227pt;}
.y15_c00260{bottom:821.225060pt;}
.y16_c00260{bottom:821.663000pt;}
.y17_c00260{bottom:821.811907pt;}
.y18_c00260{bottom:822.102267pt;}
.y19_c00260{bottom:822.295473pt;}
.y1a_c00260{bottom:822.636307pt;}
.y1b_c00260{bottom:822.981900pt;}
.yf_c00260{bottom:849.470667pt;}
.y3_c00260{bottom:875.520000pt;}
.y4_c00260{bottom:875.761333pt;}
.y5_c00260{bottom:876.170667pt;}
.y6_c00260{bottom:876.636000pt;}
.y7_c00260{bottom:876.749333pt;}
.y8_c00260{bottom:876.990667pt;}
.y9_c00260{bottom:877.514667pt;}
.ya_c00260{bottom:877.750667pt;}
.yb_c00260{bottom:877.866667pt;}
.yc_c00260{bottom:878.281333pt;}
.yd_c00260{bottom:878.686667pt;}
.ye_c00260{bottom:878.985333pt;}
.y2_c00260{bottom:905.864000pt;}
.y1_c00260{bottom:966.840000pt;}
.hb_c00260{height:26.666667pt;}
.h2_c00260{height:53.333333pt;}
.hf_c00260{height:64.000000pt;}
.h8_c00260{height:64.001152pt;}
.ha_c00260{height:64.001568pt;}
.h4_c00260{height:69.333333pt;}
.h6_c00260{height:69.334200pt;}
.h9_c00260{height:69.335032pt;}
.hd_c00260{height:74.666667pt;}
.h5_c00260{height:74.667600pt;}
.hc_c00260{height:80.000000pt;}
.h3_c00260{height:85.333333pt;}
.h7_c00260{height:85.334869pt;}
.he_c00260{height:90.666667pt;}
.h0_c00260{height:1002.480000pt;}
.h1_c00260{height:1002.666667pt;}
.w0_c00260{width:813.333333pt;}
.x0_c00260{left:0.000000pt;}
.xc2_c00260{left:82.560000pt;}
.xab_c00260{left:87.840000pt;}
.x1f_c00260{left:112.576000pt;}
.x77_c00260{left:116.160000pt;}
.x2a_c00260{left:117.413453pt;}
.x3c_c00260{left:119.280000pt;}
.x60_c00260{left:122.640000pt;}
.xc_c00260{left:124.398667pt;}
.x20_c00260{left:126.536000pt;}
.x78_c00260{left:127.680000pt;}
.x96_c00260{left:128.880000pt;}
.xac_c00260{left:130.080000pt;}
.xbb_c00260{left:149.520000pt;}
.x4d_c00260{left:156.479285pt;}
.x92_c00260{left:157.440000pt;}
.xb4_c00260{left:159.360000pt;}
.xd_c00260{left:164.721333pt;}
.x3d_c00260{left:165.840000pt;}
.x9f_c00260{left:168.720000pt;}
.x17_c00260{left:174.240000pt;}
.x55_c00260{left:176.156901pt;}
.x8f_c00260{left:177.600000pt;}
.x2b_c00260{left:183.908120pt;}
.x4e_c00260{left:185.279361pt;}
.x71_c00260{left:186.480000pt;}
.x82_c00260{left:196.080000pt;}
.xbc_c00260{left:197.280000pt;}
.xc3_c00260{left:199.440000pt;}
.x18_c00260{left:203.520000pt;}
.x61_c00260{left:204.480000pt;}
.x6a_c00260{left:205.440000pt;}
.x93_c00260{left:206.640000pt;}
.xc1_c00260{left:208.800000pt;}
.x37_c00260{left:213.430933pt;}
.x49_c00260{left:214.645177pt;}
.xa6_c00260{left:217.200000pt;}
.x3_c00260{left:222.960000pt;}
.x40_c00260{left:224.002667pt;}
.x72_c00260{left:225.840000pt;}
.xe_c00260{left:232.884000pt;}
.x19_c00260{left:241.680000pt;}
.x6b_c00260{left:245.040000pt;}
.xad_c00260{left:246.720000pt;}
.x41_c00260{left:253.525333pt;}
.x56_c00260{left:254.879423pt;}
.xa0_c00260{left:256.320000pt;}
.x4_c00260{left:261.840000pt;}
.x31_c00260{left:263.358667pt;}
.x6c_c00260{left:274.320000pt;}
.xae_c00260{left:275.520000pt;}
.x21_c00260{left:281.333333pt;}
.x42_c00260{left:284.006667pt;}
.x90_c00260{left:285.120000pt;}
.x2c_c00260{left:291.429453pt;}
.x4f_c00260{left:293.280653pt;}
.x9a_c00260{left:294.240000pt;}
.x83_c00260{left:295.200000pt;}
.x22_c00260{left:301.021333pt;}
.x62_c00260{left:303.600000pt;}
.xf_c00260{left:310.386667pt;}
.x43_c00260{left:312.333333pt;}
.x9b_c00260{left:313.920000pt;}
.xc4_c00260{left:315.360000pt;}
.x5_c00260{left:320.640000pt;}
.x4a_c00260{left:322.162511pt;}
.x97_c00260{left:323.280000pt;}
.xbd_c00260{left:324.480000pt;}
.x10_c00260{left:329.361333pt;}
.x2d_c00260{left:331.990787pt;}
.x8a_c00260{left:334.320000pt;}
.x32_c00260{left:340.161333pt;}
.x50_c00260{left:342.001709pt;}
.x7a_c00260{left:342.960000pt;}
.xb5_c00260{left:343.920000pt;}
.xc5_c00260{left:345.120000pt;}
.x1_c00260{left:349.440000pt;}
.x84_c00260{left:351.840000pt;}
.xa7_c00260{left:353.040000pt;}
.xaf_c00260{left:354.000000pt;}
.x6_c00260{left:358.560000pt;}
.x44_c00260{left:360.552000pt;}
.x5a_c00260{left:363.120000pt;}
.x2_c00260{left:370.080000pt;}
.x63_c00260{left:371.760000pt;}
.xb6_c00260{left:373.920000pt;}
.x1a_c00260{left:379.440000pt;}
.x45_c00260{left:381.213333pt;}
.x23_c00260{left:389.588000pt;}
.x6d_c00260{left:392.160000pt;}
.x3e_c00260{left:399.840000pt;}
.x98_c00260{left:401.760000pt;}
.xb0_c00260{left:403.200000pt;}
.x2e_c00260{left:409.034787pt;}
.xb7_c00260{left:411.840000pt;}
.x5b_c00260{left:420.480000pt;}
.x38_c00260{left:421.462933pt;}
.x7_c00260{left:422.640000pt;}
.x64_c00260{left:429.600000pt;}
.xc6_c00260{left:433.440000pt;}
.x1b_c00260{left:436.800000pt;}
.x39_c00260{left:438.302933pt;}
.xa1_c00260{left:441.840000pt;}
.x51_c00260{left:449.524307pt;}
.x11_c00260{left:457.024000pt;}
.x46_c00260{left:458.014667pt;}
.x33_c00260{left:460.109333pt;}
.x8b_c00260{left:461.040000pt;}
.x1c_c00260{left:467.520000pt;}
.x7c_c00260{left:468.960000pt;}
.x9c_c00260{left:470.160000pt;}
.x24_c00260{left:477.176000pt;}
.x73_c00260{left:478.320000pt;}
.xb1_c00260{left:479.760000pt;}
.xa2_c00260{left:480.960000pt;}
.x85_c00260{left:488.880000pt;}
.x7b_c00260{left:489.840000pt;}
.x12_c00260{left:496.380000pt;}
.x7d_c00260{left:498.000000pt;}
.x52_c00260{left:498.965400pt;}
.xbe_c00260{left:501.120000pt;}
.x25_c00260{left:506.957333pt;}
.x86_c00260{left:509.040000pt;}
.x13_c00260{left:515.605333pt;}
.x3f_c00260{left:516.720000pt;}
.x6e_c00260{left:518.640000pt;}
.x59_c00260{left:524.640000pt;}
.x34_c00260{left:525.924000pt;}
.x65_c00260{left:527.760000pt;}
.x8c_c00260{left:528.720000pt;}
.x3a_c00260{left:535.986933pt;}
.x94_c00260{left:537.600000pt;}
.xa8_c00260{left:539.280000pt;}
.x8_c00260{left:544.800000pt;}
.x66_c00260{left:547.680000pt;}
.x99_c00260{left:548.640000pt;}
.x58_c00260{left:553.680000pt;}
.x1d_c00260{left:554.640000pt;}
.x7e_c00260{left:556.800000pt;}
.x9d_c00260{left:557.760000pt;}
.x9_c00260{left:563.760000pt;}
.x26_c00260{left:565.029333pt;}
.x57_c00260{left:565.926664pt;}
.x5c_c00260{left:566.880000pt;}
.xa3_c00260{left:569.280000pt;}
.x3b_c00260{left:574.636267pt;}
.x4b_c00260{left:576.095844pt;}
.x67_c00260{left:577.440000pt;}
.x9e_c00260{left:578.880000pt;}
.x14_c00260{left:584.714667pt;}
.x74_c00260{left:586.080000pt;}
.x47_c00260{left:595.541333pt;}
.x87_c00260{left:596.640000pt;}
.x27_c00260{left:603.670667pt;}
.x8d_c00260{left:607.200000pt;}
.x53_c00260{left:615.368436pt;}
.x75_c00260{left:616.320000pt;}
.xbf_c00260{left:618.000000pt;}
.x35_c00260{left:624.325333pt;}
.x7f_c00260{left:625.440000pt;}
.xb8_c00260{left:627.600000pt;}
.x5d_c00260{left:635.040000pt;}
.xc0_c00260{left:637.200000pt;}
.xa_c00260{left:642.240000pt;}
.x6f_c00260{left:644.880000pt;}
.x80_c00260{left:645.840000pt;}
.xa9_c00260{left:647.040000pt;}
.x15_c00260{left:652.162667pt;}
.x5e_c00260{left:654.240000pt;}
.x91_c00260{left:655.920000pt;}
.x54_c00260{left:664.809529pt;}
.xb2_c00260{left:666.720000pt;}
.x28_c00260{left:671.837333pt;}
.x95_c00260{left:674.160000pt;}
.xaa_c00260{left:676.560000pt;}
.x2f_c00260{left:682.880120pt;}
.x76_c00260{left:684.000000pt;}
.xb9_c00260{left:686.400000pt;}
.x36_c00260{left:691.990667pt;}
.x88_c00260{left:693.600000pt;}
.x16_c00260{left:701.841333pt;}
.x48_c00260{left:702.825333pt;}
.x68_c00260{left:704.160000pt;}
.xb3_c00260{left:705.360000pt;}
.xb_c00260{left:711.840000pt;}
.x4c_c00260{left:712.903844pt;}
.xba_c00260{left:716.640000pt;}
.x5f_c00260{left:722.160000pt;}
.x89_c00260{left:723.840000pt;}
.x79_c00260{left:732.480000pt;}
.x69_c00260{left:733.440000pt;}
.x1e_c00260{left:739.920000pt;}
.x29_c00260{left:740.956000pt;}
.x70_c00260{left:743.040000pt;}
.xa4_c00260{left:753.600000pt;}
.x30_c00260{left:759.916120pt;}
.x81_c00260{left:762.240000pt;}
.x8e_c00260{left:772.320000pt;}
.xa5_c00260{left:790.560000pt;}
}





/* 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_c00261 {
    display:none;
  }
  .loading-indicator_c00261.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00261 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_c00261 { 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_c00261" -> "#page-container .classname_c00261")
 */
.pf_c00261 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00261 { /* 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_c00261.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00261 { /* 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_c00261 { /* 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_c00261 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00261 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00261 {overflow:visible;}
  }
}
.c_c00261 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00261 { /* 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_c00261:after { /* webkit #35443 */
  content: '';
}
.t_c00261:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00261 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 */
}
.__c00261 { /* 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_c00261 { /* info for Javascript */
  display:none;
}
.l_c00261 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00261 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00261 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00261: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_c00261 {
    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_c00261.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00261.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_c00261 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00261{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00261;src:url('chunks/assets/font_53ec0c54e60da7c2d414b553.woff2')format("woff");}.ff1_c00261{font-family:ff1_c00261;line-height:1.000000;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;}
.ma7_c00261{transform:matrix(0.025105,-0.000126,0.001250,0.249997,0,0);-ms-transform:matrix(0.025105,-0.000126,0.001250,0.249997,0,0);-webkit-transform:matrix(0.025105,-0.000126,0.001250,0.249997,0,0);}
.m114_c00261{transform:matrix(0.036790,0.000625,-0.004249,0.249964,0,0);-ms-transform:matrix(0.036790,0.000625,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.036790,0.000625,-0.004249,0.249964,0,0);}
.m115_c00261{transform:matrix(0.040560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.040560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.040560,0.000000,0.000000,0.250000,0,0);}
.m117_c00261{transform:matrix(0.046385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.046385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.046385,0.000000,0.000000,0.250000,0,0);}
.m60_c00261{transform:matrix(0.055925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.055925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.055925,0.000000,0.000000,0.250000,0,0);}
.m116_c00261{transform:matrix(0.056250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.056250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.056250,0.000000,0.000000,0.250000,0,0);}
.m2a_c00261{transform:matrix(0.059005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.059005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.059005,0.000000,0.000000,0.250000,0,0);}
.mba_c00261{transform:matrix(0.068409,-0.000342,0.001250,0.249997,0,0);-ms-transform:matrix(0.068409,-0.000342,0.001250,0.249997,0,0);-webkit-transform:matrix(0.068409,-0.000342,0.001250,0.249997,0,0);}
.m54_c00261{transform:matrix(0.070090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.070090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.070090,0.000000,0.000000,0.250000,0,0);}
.m11d_c00261{transform:matrix(0.072035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072035,0.000000,0.000000,0.250000,0,0);}
.m108_c00261{transform:matrix(0.081093,0.001379,-0.004249,0.249964,0,0);-ms-transform:matrix(0.081093,0.001379,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.081093,0.001379,-0.004249,0.249964,0,0);}
.mfd_c00261{transform:matrix(0.093335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093335,0.000000,0.000000,0.250000,0,0);}
.m34_c00261{transform:matrix(0.097390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.097390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.097390,0.000000,0.000000,0.250000,0,0);}
.mb0_c00261{transform:matrix(0.109199,-0.000546,0.001250,0.249997,0,0);-ms-transform:matrix(0.109199,-0.000546,0.001250,0.249997,0,0);-webkit-transform:matrix(0.109199,-0.000546,0.001250,0.249997,0,0);}
.m92_c00261{transform:matrix(0.118403,-0.000710,0.001500,0.249996,0,0);-ms-transform:matrix(0.118403,-0.000710,0.001500,0.249996,0,0);-webkit-transform:matrix(0.118403,-0.000710,0.001500,0.249996,0,0);}
.ma1_c00261{transform:matrix(0.119274,-0.000596,0.001250,0.249997,0,0);-ms-transform:matrix(0.119274,-0.000596,0.001250,0.249997,0,0);-webkit-transform:matrix(0.119274,-0.000596,0.001250,0.249997,0,0);}
.m93_c00261{transform:matrix(0.135933,-0.000816,0.001500,0.249996,0,0);-ms-transform:matrix(0.135933,-0.000816,0.001500,0.249996,0,0);-webkit-transform:matrix(0.135933,-0.000816,0.001500,0.249996,0,0);}
.m10d_c00261{transform:matrix(0.144039,0.002449,-0.004249,0.249964,0,0);-ms-transform:matrix(0.144039,0.002449,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.144039,0.002449,-0.004249,0.249964,0,0);}
.md9_c00261{transform:matrix(0.145535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145535,0.000000,0.000000,0.250000,0,0);}
.m73_c00261{transform:matrix(0.154615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154615,0.000000,0.000000,0.250000,0,0);}
.m71_c00261{transform:matrix(0.157235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157235,0.000000,0.000000,0.250000,0,0);}
.m76_c00261{transform:matrix(0.158395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158395,0.000000,0.000000,0.250000,0,0);}
.m106_c00261{transform:matrix(0.159850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159850,0.000000,0.000000,0.250000,0,0);}
.m103_c00261{transform:matrix(0.162940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162940,0.000000,0.000000,0.250000,0,0);}
.m88_c00261{transform:matrix(0.162977,-0.000978,0.001500,0.249996,0,0);-ms-transform:matrix(0.162977,-0.000978,0.001500,0.249996,0,0);-webkit-transform:matrix(0.162977,-0.000978,0.001500,0.249996,0,0);}
.m6f_c00261{transform:matrix(0.175365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175365,0.000000,0.000000,0.250000,0,0);}
.mea_c00261{transform:matrix(0.175465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175465,0.000000,0.000000,0.250000,0,0);}
.m70_c00261{transform:matrix(0.175730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175730,0.000000,0.000000,0.250000,0,0);}
.md5_c00261{transform:matrix(0.176525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176525,0.000000,0.000000,0.250000,0,0);}
.m6e_c00261{transform:matrix(0.180925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180925,0.000000,0.000000,0.250000,0,0);}
.me9_c00261{transform:matrix(0.185640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185640,0.000000,0.000000,0.250000,0,0);}
.maa_c00261{transform:matrix(0.189813,-0.000949,0.001250,0.249997,0,0);-ms-transform:matrix(0.189813,-0.000949,0.001250,0.249997,0,0);-webkit-transform:matrix(0.189813,-0.000949,0.001250,0.249997,0,0);}
.m72_c00261{transform:matrix(0.190065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190065,0.000000,0.000000,0.250000,0,0);}
.m109_c00261{transform:matrix(0.190103,0.003232,-0.004249,0.249964,0,0);-ms-transform:matrix(0.190103,0.003232,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.190103,0.003232,-0.004249,0.249964,0,0);}
.m33_c00261{transform:matrix(0.190470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190470,0.000000,0.000000,0.250000,0,0);}
.m5b_c00261{transform:matrix(0.193590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193590,0.000000,0.000000,0.250000,0,0);}
.mcd_c00261{transform:matrix(0.195595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195595,0.000000,0.000000,0.250000,0,0);}
.me8_c00261{transform:matrix(0.196350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196350,0.000000,0.000000,0.250000,0,0);}
.m6d_c00261{transform:matrix(0.196585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196585,0.000000,0.000000,0.250000,0,0);}
.m15_c00261{transform:matrix(0.199105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199105,0.000000,0.000000,0.250000,0,0);}
.mf1_c00261{transform:matrix(0.199810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199810,0.000000,0.000000,0.250000,0,0);}
.mff_c00261{transform:matrix(0.200570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200570,0.000000,0.000000,0.250000,0,0);}
.me1_c00261{transform:matrix(0.201860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201860,0.000000,0.000000,0.250000,0,0);}
.mb6_c00261{transform:matrix(0.202852,-0.001014,0.001250,0.249997,0,0);-ms-transform:matrix(0.202852,-0.001014,0.001250,0.249997,0,0);-webkit-transform:matrix(0.202852,-0.001014,0.001250,0.249997,0,0);}
.m44_c00261{transform:matrix(0.203245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203245,0.000000,0.000000,0.250000,0,0);}
.m7e_c00261{transform:matrix(0.204036,-0.001224,0.001500,0.249996,0,0);-ms-transform:matrix(0.204036,-0.001224,0.001500,0.249996,0,0);-webkit-transform:matrix(0.204036,-0.001224,0.001500,0.249996,0,0);}
.m23_c00261{transform:matrix(0.206040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206040,0.000000,0.000000,0.250000,0,0);}
.me5_c00261{transform:matrix(0.206465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206465,0.000000,0.000000,0.250000,0,0);}
.mf2_c00261{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.mec_c00261{transform:matrix(0.207925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207925,0.000000,0.000000,0.250000,0,0);}
.mda_c00261{transform:matrix(0.208290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208290,0.000000,0.000000,0.250000,0,0);}
.m97_c00261{transform:matrix(0.208996,-0.001254,0.001500,0.249996,0,0);-ms-transform:matrix(0.208996,-0.001254,0.001500,0.249996,0,0);-webkit-transform:matrix(0.208996,-0.001254,0.001500,0.249996,0,0);}
.m5d_c00261{transform:matrix(0.211010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211010,0.000000,0.000000,0.250000,0,0);}
.mb9_c00261{transform:matrix(0.212607,-0.001063,0.001250,0.249997,0,0);-ms-transform:matrix(0.212607,-0.001063,0.001250,0.249997,0,0);-webkit-transform:matrix(0.212607,-0.001063,0.001250,0.249997,0,0);}
.m9c_c00261{transform:matrix(0.212726,-0.001276,0.001500,0.249996,0,0);-ms-transform:matrix(0.212726,-0.001276,0.001500,0.249996,0,0);-webkit-transform:matrix(0.212726,-0.001276,0.001500,0.249996,0,0);}
.mb8_c00261{transform:matrix(0.213547,-0.001068,0.001250,0.249997,0,0);-ms-transform:matrix(0.213547,-0.001068,0.001250,0.249997,0,0);-webkit-transform:matrix(0.213547,-0.001068,0.001250,0.249997,0,0);}
.meb_c00261{transform:matrix(0.213825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213825,0.000000,0.000000,0.250000,0,0);}
.me6_c00261{transform:matrix(0.213915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213915,0.000000,0.000000,0.250000,0,0);}
.m105_c00261{transform:matrix(0.215525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215525,0.000000,0.000000,0.250000,0,0);}
.m7_c00261{transform:matrix(0.215605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215605,0.000000,0.000000,0.250000,0,0);}
.m4d_c00261{transform:matrix(0.216310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216310,0.000000,0.000000,0.250000,0,0);}
.m6c_c00261{transform:matrix(0.216335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216335,0.000000,0.000000,0.250000,0,0);}
.m4a_c00261{transform:matrix(0.216705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216705,0.000000,0.000000,0.250000,0,0);}
.ma4_c00261{transform:matrix(0.217097,-0.001085,0.001250,0.249997,0,0);-ms-transform:matrix(0.217097,-0.001085,0.001250,0.249997,0,0);-webkit-transform:matrix(0.217097,-0.001085,0.001250,0.249997,0,0);}
.mee_c00261{transform:matrix(0.217670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217670,0.000000,0.000000,0.250000,0,0);}
.m80_c00261{transform:matrix(0.217996,-0.001308,0.001500,0.249996,0,0);-ms-transform:matrix(0.217996,-0.001308,0.001500,0.249996,0,0);-webkit-transform:matrix(0.217996,-0.001308,0.001500,0.249996,0,0);}
.m102_c00261{transform:matrix(0.218155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218155,0.000000,0.000000,0.250000,0,0);}
.m8c_c00261{transform:matrix(0.218656,-0.001312,0.001500,0.249996,0,0);-ms-transform:matrix(0.218656,-0.001312,0.001500,0.249996,0,0);-webkit-transform:matrix(0.218656,-0.001312,0.001500,0.249996,0,0);}
.m3a_c00261{transform:matrix(0.220185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220185,0.000000,0.000000,0.250000,0,0);}
.mf5_c00261{transform:matrix(0.220195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220195,0.000000,0.000000,0.250000,0,0);}
.mfb_c00261{transform:matrix(0.221210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221210,0.000000,0.000000,0.250000,0,0);}
.mcc_c00261{transform:matrix(0.221460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221460,0.000000,0.000000,0.250000,0,0);}
.m100_c00261{transform:matrix(0.223925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223925,0.000000,0.000000,0.250000,0,0);}
.m4e_c00261{transform:matrix(0.227185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227185,0.000000,0.000000,0.250000,0,0);}
.m4c_c00261{transform:matrix(0.228085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228085,0.000000,0.000000,0.250000,0,0);}
.mb2_c00261{transform:matrix(0.229587,-0.001148,0.001250,0.249997,0,0);-ms-transform:matrix(0.229587,-0.001148,0.001250,0.249997,0,0);-webkit-transform:matrix(0.229587,-0.001148,0.001250,0.249997,0,0);}
.m3e_c00261{transform:matrix(0.230915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230915,0.000000,0.000000,0.250000,0,0);}
.m40_c00261{transform:matrix(0.231450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231450,0.000000,0.000000,0.250000,0,0);}
.mdf_c00261{transform:matrix(0.232690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232690,0.000000,0.000000,0.250000,0,0);}
.m9_c00261{transform:matrix(0.233395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233395,0.000000,0.000000,0.250000,0,0);}
.m52_c00261{transform:matrix(0.234160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234160,0.000000,0.000000,0.250000,0,0);}
.m8e_c00261{transform:matrix(0.234556,-0.001407,0.001500,0.249996,0,0);-ms-transform:matrix(0.234556,-0.001407,0.001500,0.249996,0,0);-webkit-transform:matrix(0.234556,-0.001407,0.001500,0.249996,0,0);}
.m8f_c00261{transform:matrix(0.235076,-0.001410,0.001500,0.249996,0,0);-ms-transform:matrix(0.235076,-0.001410,0.001500,0.249996,0,0);-webkit-transform:matrix(0.235076,-0.001410,0.001500,0.249996,0,0);}
.me2_c00261{transform:matrix(0.236010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236010,0.000000,0.000000,0.250000,0,0);}
.ma2_c00261{transform:matrix(0.236772,-0.001184,0.001250,0.249997,0,0);-ms-transform:matrix(0.236772,-0.001184,0.001250,0.249997,0,0);-webkit-transform:matrix(0.236772,-0.001184,0.001250,0.249997,0,0);}
.ma9_c00261{transform:matrix(0.237207,-0.001186,0.001250,0.249997,0,0);-ms-transform:matrix(0.237207,-0.001186,0.001250,0.249997,0,0);-webkit-transform:matrix(0.237207,-0.001186,0.001250,0.249997,0,0);}
.m104_c00261{transform:matrix(0.237355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237355,0.000000,0.000000,0.250000,0,0);}
.ma3_c00261{transform:matrix(0.239522,-0.001198,0.001250,0.249997,0,0);-ms-transform:matrix(0.239522,-0.001198,0.001250,0.249997,0,0);-webkit-transform:matrix(0.239522,-0.001198,0.001250,0.249997,0,0);}
.m19_c00261{transform:matrix(0.239525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239525,0.000000,0.000000,0.250000,0,0);}
.mf7_c00261{transform:matrix(0.239795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239795,0.000000,0.000000,0.250000,0,0);}
.me_c00261{transform:matrix(0.240025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240025,0.000000,0.000000,0.250000,0,0);}
.mc7_c00261{transform:matrix(0.241457,-0.001207,0.001250,0.249997,0,0);-ms-transform:matrix(0.241457,-0.001207,0.001250,0.249997,0,0);-webkit-transform:matrix(0.241457,-0.001207,0.001250,0.249997,0,0);}
.m98_c00261{transform:matrix(0.243051,-0.001458,0.001500,0.249996,0,0);-ms-transform:matrix(0.243051,-0.001458,0.001500,0.249996,0,0);-webkit-transform:matrix(0.243051,-0.001458,0.001500,0.249996,0,0);}
.m2e_c00261{transform:matrix(0.244460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244460,0.000000,0.000000,0.250000,0,0);}
.mc5_c00261{transform:matrix(0.245287,-0.001226,0.001250,0.249997,0,0);-ms-transform:matrix(0.245287,-0.001226,0.001250,0.249997,0,0);-webkit-transform:matrix(0.245287,-0.001226,0.001250,0.249997,0,0);}
.m4b_c00261{transform:matrix(0.246515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246515,0.000000,0.000000,0.250000,0,0);}
.m30_c00261{transform:matrix(0.248830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248830,0.000000,0.000000,0.250000,0,0);}
.md2_c00261{transform:matrix(0.249355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249355,0.000000,0.000000,0.250000,0,0);}
.m7b_c00261{transform:matrix(0.249646,-0.001498,0.001500,0.249996,0,0);-ms-transform:matrix(0.249646,-0.001498,0.001500,0.249996,0,0);-webkit-transform:matrix(0.249646,-0.001498,0.001500,0.249996,0,0);}
.m1a_c00261{transform:matrix(0.250215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250215,0.000000,0.000000,0.250000,0,0);}
.mdb_c00261{transform:matrix(0.251545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251545,0.000000,0.000000,0.250000,0,0);}
.m1f_c00261{transform:matrix(0.252280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252280,0.000000,0.000000,0.250000,0,0);}
.me4_c00261{transform:matrix(0.252480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252480,0.000000,0.000000,0.250000,0,0);}
.mb4_c00261{transform:matrix(0.253792,-0.001269,0.001250,0.249997,0,0);-ms-transform:matrix(0.253792,-0.001269,0.001250,0.249997,0,0);-webkit-transform:matrix(0.253792,-0.001269,0.001250,0.249997,0,0);}
.mb_c00261{transform:matrix(0.255440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255440,0.000000,0.000000,0.250000,0,0);}
.maf_c00261{transform:matrix(0.256657,-0.001283,0.001250,0.249997,0,0);-ms-transform:matrix(0.256657,-0.001283,0.001250,0.249997,0,0);-webkit-transform:matrix(0.256657,-0.001283,0.001250,0.249997,0,0);}
.m75_c00261{transform:matrix(0.257015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257015,0.000000,0.000000,0.250000,0,0);}
.mf3_c00261{transform:matrix(0.257100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257100,0.000000,0.000000,0.250000,0,0);}
.md3_c00261{transform:matrix(0.257350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257350,0.000000,0.000000,0.250000,0,0);}
.m14_c00261{transform:matrix(0.258890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258890,0.000000,0.000000,0.250000,0,0);}
.m5a_c00261{transform:matrix(0.260105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260105,0.000000,0.000000,0.250000,0,0);}
.m63_c00261{transform:matrix(0.261410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261410,0.000000,0.000000,0.250000,0,0);}
.mf_c00261{transform:matrix(0.262635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262635,0.000000,0.000000,0.250000,0,0);}
.mac_c00261{transform:matrix(0.263117,-0.001316,0.001250,0.249997,0,0);-ms-transform:matrix(0.263117,-0.001316,0.001250,0.249997,0,0);-webkit-transform:matrix(0.263117,-0.001316,0.001250,0.249997,0,0);}
.m89_c00261{transform:matrix(0.264045,-0.001584,0.001500,0.249996,0,0);-ms-transform:matrix(0.264045,-0.001584,0.001500,0.249996,0,0);-webkit-transform:matrix(0.264045,-0.001584,0.001500,0.249996,0,0);}
.mfa_c00261{transform:matrix(0.264120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264120,0.000000,0.000000,0.250000,0,0);}
.m7d_c00261{transform:matrix(0.264265,-0.001586,0.001500,0.249996,0,0);-ms-transform:matrix(0.264265,-0.001586,0.001500,0.249996,0,0);-webkit-transform:matrix(0.264265,-0.001586,0.001500,0.249996,0,0);}
.mc0_c00261{transform:matrix(0.265522,-0.001328,0.001250,0.249997,0,0);-ms-transform:matrix(0.265522,-0.001328,0.001250,0.249997,0,0);-webkit-transform:matrix(0.265522,-0.001328,0.001250,0.249997,0,0);}
.ma5_c00261{transform:matrix(0.265787,-0.001329,0.001250,0.249997,0,0);-ms-transform:matrix(0.265787,-0.001329,0.001250,0.249997,0,0);-webkit-transform:matrix(0.265787,-0.001329,0.001250,0.249997,0,0);}
.m55_c00261{transform:matrix(0.266130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266130,0.000000,0.000000,0.250000,0,0);}
.m1c_c00261{transform:matrix(0.266535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266535,0.000000,0.000000,0.250000,0,0);}
.ma0_c00261{transform:matrix(0.267065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267065,0.000000,0.000000,0.250000,0,0);}
.mcb_c00261{transform:matrix(0.267440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267440,0.000000,0.000000,0.250000,0,0);}
.m49_c00261{transform:matrix(0.267725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267725,0.000000,0.000000,0.250000,0,0);}
.mb7_c00261{transform:matrix(0.267737,-0.001339,0.001250,0.249997,0,0);-ms-transform:matrix(0.267737,-0.001339,0.001250,0.249997,0,0);-webkit-transform:matrix(0.267737,-0.001339,0.001250,0.249997,0,0);}
.me3_c00261{transform:matrix(0.268150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268150,0.000000,0.000000,0.250000,0,0);}
.m51_c00261{transform:matrix(0.268715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268715,0.000000,0.000000,0.250000,0,0);}
.mc9_c00261{transform:matrix(0.269180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269180,0.000000,0.000000,0.250000,0,0);}
.m8_c00261{transform:matrix(0.271015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271015,0.000000,0.000000,0.250000,0,0);}
.m20_c00261{transform:matrix(0.271300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271300,0.000000,0.000000,0.250000,0,0);}
.m9d_c00261{transform:matrix(0.271360,-0.001628,0.001500,0.249996,0,0);-ms-transform:matrix(0.271360,-0.001628,0.001500,0.249996,0,0);-webkit-transform:matrix(0.271360,-0.001628,0.001500,0.249996,0,0);}
.m67_c00261{transform:matrix(0.271485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271485,0.000000,0.000000,0.250000,0,0);}
.m56_c00261{transform:matrix(0.271585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271585,0.000000,0.000000,0.250000,0,0);}
.md0_c00261{transform:matrix(0.272815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272815,0.000000,0.000000,0.250000,0,0);}
.m2c_c00261{transform:matrix(0.273840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273840,0.000000,0.000000,0.250000,0,0);}
.m3d_c00261{transform:matrix(0.274070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274070,0.000000,0.000000,0.250000,0,0);}
.m65_c00261{transform:matrix(0.274160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274160,0.000000,0.000000,0.250000,0,0);}
.m8b_c00261{transform:matrix(0.274685,-0.001648,0.001500,0.249996,0,0);-ms-transform:matrix(0.274685,-0.001648,0.001500,0.249996,0,0);-webkit-transform:matrix(0.274685,-0.001648,0.001500,0.249996,0,0);}
.mbf_c00261{transform:matrix(0.275097,-0.001375,0.001250,0.249997,0,0);-ms-transform:matrix(0.275097,-0.001375,0.001250,0.249997,0,0);-webkit-transform:matrix(0.275097,-0.001375,0.001250,0.249997,0,0);}
.m87_c00261{transform:matrix(0.275235,-0.001651,0.001500,0.249996,0,0);-ms-transform:matrix(0.275235,-0.001651,0.001500,0.249996,0,0);-webkit-transform:matrix(0.275235,-0.001651,0.001500,0.249996,0,0);}
.m10a_c00261{transform:matrix(0.276040,0.004693,-0.004249,0.249964,0,0);-ms-transform:matrix(0.276040,0.004693,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.276040,0.004693,-0.004249,0.249964,0,0);}
.mf8_c00261{transform:matrix(0.276270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276270,0.000000,0.000000,0.250000,0,0);}
.m26_c00261{transform:matrix(0.278685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278685,0.000000,0.000000,0.250000,0,0);}
.m1d_c00261{transform:matrix(0.278870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278870,0.000000,0.000000,0.250000,0,0);}
.m1e_c00261{transform:matrix(0.278890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278890,0.000000,0.000000,0.250000,0,0);}
.mf4_c00261{transform:matrix(0.279710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279710,0.000000,0.000000,0.250000,0,0);}
.mb5_c00261{transform:matrix(0.279827,-0.001399,0.001250,0.249997,0,0);-ms-transform:matrix(0.279827,-0.001399,0.001250,0.249997,0,0);-webkit-transform:matrix(0.279827,-0.001399,0.001250,0.249997,0,0);}
.m64_c00261{transform:matrix(0.279840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279840,0.000000,0.000000,0.250000,0,0);}
.m5c_c00261{transform:matrix(0.279905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279905,0.000000,0.000000,0.250000,0,0);}
.mde_c00261{transform:matrix(0.280025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280025,0.000000,0.000000,0.250000,0,0);}
.mdd_c00261{transform:matrix(0.280550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280550,0.000000,0.000000,0.250000,0,0);}
.mc8_c00261{transform:matrix(0.281776,-0.001409,0.001250,0.249997,0,0);-ms-transform:matrix(0.281776,-0.001409,0.001250,0.249997,0,0);-webkit-transform:matrix(0.281776,-0.001409,0.001250,0.249997,0,0);}
.m7f_c00261{transform:matrix(0.282450,-0.001695,0.001500,0.249996,0,0);-ms-transform:matrix(0.282450,-0.001695,0.001500,0.249996,0,0);-webkit-transform:matrix(0.282450,-0.001695,0.001500,0.249996,0,0);}
.m12_c00261{transform:matrix(0.283740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283740,0.000000,0.000000,0.250000,0,0);}
.m85_c00261{transform:matrix(0.283995,-0.001704,0.001500,0.249996,0,0);-ms-transform:matrix(0.283995,-0.001704,0.001500,0.249996,0,0);-webkit-transform:matrix(0.283995,-0.001704,0.001500,0.249996,0,0);}
.m99_c00261{transform:matrix(0.284425,-0.001707,0.001500,0.249996,0,0);-ms-transform:matrix(0.284425,-0.001707,0.001500,0.249996,0,0);-webkit-transform:matrix(0.284425,-0.001707,0.001500,0.249996,0,0);}
.m17_c00261{transform:matrix(0.284445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284445,0.000000,0.000000,0.250000,0,0);}
.m96_c00261{transform:matrix(0.284810,-0.001709,0.001500,0.249996,0,0);-ms-transform:matrix(0.284810,-0.001709,0.001500,0.249996,0,0);-webkit-transform:matrix(0.284810,-0.001709,0.001500,0.249996,0,0);}
.me0_c00261{transform:matrix(0.285360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285360,0.000000,0.000000,0.250000,0,0);}
.mca_c00261{transform:matrix(0.285505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285505,0.000000,0.000000,0.250000,0,0);}
.mbc_c00261{transform:matrix(0.285781,-0.001429,0.001250,0.249997,0,0);-ms-transform:matrix(0.285781,-0.001429,0.001250,0.249997,0,0);-webkit-transform:matrix(0.285781,-0.001429,0.001250,0.249997,0,0);}
.m48_c00261{transform:matrix(0.287370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287370,0.000000,0.000000,0.250000,0,0);}
.mae_c00261{transform:matrix(0.288906,-0.001445,0.001250,0.249997,0,0);-ms-transform:matrix(0.288906,-0.001445,0.001250,0.249997,0,0);-webkit-transform:matrix(0.288906,-0.001445,0.001250,0.249997,0,0);}
.m4_c00261{transform:matrix(0.289315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289315,0.000000,0.000000,0.250000,0,0);}
.m50_c00261{transform:matrix(0.289815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289815,0.000000,0.000000,0.250000,0,0);}
.m38_c00261{transform:matrix(0.290080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290080,0.000000,0.000000,0.250000,0,0);}
.m47_c00261{transform:matrix(0.290495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290495,0.000000,0.000000,0.250000,0,0);}
.m9e_c00261{transform:matrix(0.290995,-0.001746,0.001500,0.249996,0,0);-ms-transform:matrix(0.290995,-0.001746,0.001500,0.249996,0,0);-webkit-transform:matrix(0.290995,-0.001746,0.001500,0.249996,0,0);}
.mc4_c00261{transform:matrix(0.291691,-0.001458,0.001250,0.249997,0,0);-ms-transform:matrix(0.291691,-0.001458,0.001250,0.249997,0,0);-webkit-transform:matrix(0.291691,-0.001458,0.001250,0.249997,0,0);}
.m90_c00261{transform:matrix(0.291995,-0.001752,0.001500,0.249996,0,0);-ms-transform:matrix(0.291995,-0.001752,0.001500,0.249996,0,0);-webkit-transform:matrix(0.291995,-0.001752,0.001500,0.249996,0,0);}
.mc_c00261{transform:matrix(0.292030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292030,0.000000,0.000000,0.250000,0,0);}
.ma8_c00261{transform:matrix(0.292281,-0.001461,0.001250,0.249997,0,0);-ms-transform:matrix(0.292281,-0.001461,0.001250,0.249997,0,0);-webkit-transform:matrix(0.292281,-0.001461,0.001250,0.249997,0,0);}
.m43_c00261{transform:matrix(0.292330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292330,0.000000,0.000000,0.250000,0,0);}
.md6_c00261{transform:matrix(0.293215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293215,0.000000,0.000000,0.250000,0,0);}
.m69_c00261{transform:matrix(0.295805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295805,0.000000,0.000000,0.250000,0,0);}
.m4f_c00261{transform:matrix(0.296435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296435,0.000000,0.000000,0.250000,0,0);}
.m101_c00261{transform:matrix(0.297180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297180,0.000000,0.000000,0.250000,0,0);}
.m68_c00261{transform:matrix(0.302705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302705,0.000000,0.000000,0.250000,0,0);}
.md8_c00261{transform:matrix(0.304750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304750,0.000000,0.000000,0.250000,0,0);}
.md4_c00261{transform:matrix(0.304875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304875,0.000000,0.000000,0.250000,0,0);}
.m77_c00261{transform:matrix(0.307390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307390,0.000000,0.000000,0.250000,0,0);}
.m9f_c00261{transform:matrix(0.307449,-0.001845,0.001500,0.249996,0,0);-ms-transform:matrix(0.307449,-0.001845,0.001500,0.249996,0,0);-webkit-transform:matrix(0.307449,-0.001845,0.001500,0.249996,0,0);}
.m86_c00261{transform:matrix(0.308344,-0.001850,0.001500,0.249996,0,0);-ms-transform:matrix(0.308344,-0.001850,0.001500,0.249996,0,0);-webkit-transform:matrix(0.308344,-0.001850,0.001500,0.249996,0,0);}
.m18_c00261{transform:matrix(0.308640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308640,0.000000,0.000000,0.250000,0,0);}
.ma6_c00261{transform:matrix(0.309111,-0.001546,0.001250,0.249997,0,0);-ms-transform:matrix(0.309111,-0.001546,0.001250,0.249997,0,0);-webkit-transform:matrix(0.309111,-0.001546,0.001250,0.249997,0,0);}
.m95_c00261{transform:matrix(0.309229,-0.001855,0.001500,0.249996,0,0);-ms-transform:matrix(0.309229,-0.001855,0.001500,0.249996,0,0);-webkit-transform:matrix(0.309229,-0.001855,0.001500,0.249996,0,0);}
.me7_c00261{transform:matrix(0.309605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309605,0.000000,0.000000,0.250000,0,0);}
.md_c00261{transform:matrix(0.310265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310265,0.000000,0.000000,0.250000,0,0);}
.m79_c00261{transform:matrix(0.310974,-0.001866,0.001500,0.249996,0,0);-ms-transform:matrix(0.310974,-0.001866,0.001500,0.249996,0,0);-webkit-transform:matrix(0.310974,-0.001866,0.001500,0.249996,0,0);}
.mab_c00261{transform:matrix(0.311266,-0.001556,0.001250,0.249997,0,0);-ms-transform:matrix(0.311266,-0.001556,0.001250,0.249997,0,0);-webkit-transform:matrix(0.311266,-0.001556,0.001250,0.249997,0,0);}
.md1_c00261{transform:matrix(0.311595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311595,0.000000,0.000000,0.250000,0,0);}
.m32_c00261{transform:matrix(0.316070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316070,0.000000,0.000000,0.250000,0,0);}
.m83_c00261{transform:matrix(0.317269,-0.001904,0.001500,0.249996,0,0);-ms-transform:matrix(0.317269,-0.001904,0.001500,0.249996,0,0);-webkit-transform:matrix(0.317269,-0.001904,0.001500,0.249996,0,0);}
.m1b_c00261{transform:matrix(0.317295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317295,0.000000,0.000000,0.250000,0,0);}
.m7c_c00261{transform:matrix(0.317299,-0.001904,0.001500,0.249996,0,0);-ms-transform:matrix(0.317299,-0.001904,0.001500,0.249996,0,0);-webkit-transform:matrix(0.317299,-0.001904,0.001500,0.249996,0,0);}
.m10b_c00261{transform:matrix(0.318154,0.005409,-0.004249,0.249964,0,0);-ms-transform:matrix(0.318154,0.005409,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.318154,0.005409,-0.004249,0.249964,0,0);}
.mfc_c00261{transform:matrix(0.319065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319065,0.000000,0.000000,0.250000,0,0);}
.m9a_c00261{transform:matrix(0.319449,-0.001917,0.001500,0.249996,0,0);-ms-transform:matrix(0.319449,-0.001917,0.001500,0.249996,0,0);-webkit-transform:matrix(0.319449,-0.001917,0.001500,0.249996,0,0);}
.mf0_c00261{transform:matrix(0.324030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324030,0.000000,0.000000,0.250000,0,0);}
.m21_c00261{transform:matrix(0.326995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326995,0.000000,0.000000,0.250000,0,0);}
.m78_c00261{transform:matrix(0.333034,-0.001998,0.001500,0.249996,0,0);-ms-transform:matrix(0.333034,-0.001998,0.001500,0.249996,0,0);-webkit-transform:matrix(0.333034,-0.001998,0.001500,0.249996,0,0);}
.m107_c00261{transform:matrix(0.333905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333905,0.000000,0.000000,0.250000,0,0);}
.m58_c00261{transform:matrix(0.334130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334130,0.000000,0.000000,0.250000,0,0);}
.m66_c00261{transform:matrix(0.334555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334555,0.000000,0.000000,0.250000,0,0);}
.mbd_c00261{transform:matrix(0.335951,-0.001680,0.001250,0.249997,0,0);-ms-transform:matrix(0.335951,-0.001680,0.001250,0.249997,0,0);-webkit-transform:matrix(0.335951,-0.001680,0.001250,0.249997,0,0);}
.mb3_c00261{transform:matrix(0.336581,-0.001683,0.001250,0.249997,0,0);-ms-transform:matrix(0.336581,-0.001683,0.001250,0.249997,0,0);-webkit-transform:matrix(0.336581,-0.001683,0.001250,0.249997,0,0);}
.m46_c00261{transform:matrix(0.338115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338115,0.000000,0.000000,0.250000,0,0);}
.mc2_c00261{transform:matrix(0.338881,-0.001694,0.001250,0.249997,0,0);-ms-transform:matrix(0.338881,-0.001694,0.001250,0.249997,0,0);-webkit-transform:matrix(0.338881,-0.001694,0.001250,0.249997,0,0);}
.m5e_c00261{transform:matrix(0.340010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340010,0.000000,0.000000,0.250000,0,0);}
.mef_c00261{transform:matrix(0.343630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343630,0.000000,0.000000,0.250000,0,0);}
.m10_c00261{transform:matrix(0.343855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343855,0.000000,0.000000,0.250000,0,0);}
.m62_c00261{transform:matrix(0.346865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346865,0.000000,0.000000,0.250000,0,0);}
.m2f_c00261{transform:matrix(0.350025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350025,0.000000,0.000000,0.250000,0,0);}
.m6_c00261{transform:matrix(0.350465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350465,0.000000,0.000000,0.250000,0,0);}
.m94_c00261{transform:matrix(0.352824,-0.002117,0.001500,0.249996,0,0);-ms-transform:matrix(0.352824,-0.002117,0.001500,0.249996,0,0);-webkit-transform:matrix(0.352824,-0.002117,0.001500,0.249996,0,0);}
.m1_c00261{transform:matrix(0.355770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355770,0.000000,0.000000,0.250000,0,0);}
.mf9_c00261{transform:matrix(0.357725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357725,0.000000,0.000000,0.250000,0,0);}
.m0_c00261{transform:matrix(0.358200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358200,0.000000,0.000000,0.250000,0,0);}
.mbe_c00261{transform:matrix(0.359261,-0.001796,0.001250,0.249997,0,0);-ms-transform:matrix(0.359261,-0.001796,0.001250,0.249997,0,0);-webkit-transform:matrix(0.359261,-0.001796,0.001250,0.249997,0,0);}
.m84_c00261{transform:matrix(0.370003,-0.002220,0.001500,0.249996,0,0);-ms-transform:matrix(0.370003,-0.002220,0.001500,0.249996,0,0);-webkit-transform:matrix(0.370003,-0.002220,0.001500,0.249996,0,0);}
.mfe_c00261{transform:matrix(0.370370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370370,0.000000,0.000000,0.250000,0,0);}
.mf6_c00261{transform:matrix(0.370430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370430,0.000000,0.000000,0.250000,0,0);}
.ma_c00261{transform:matrix(0.374735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374735,0.000000,0.000000,0.250000,0,0);}
.m2b_c00261{transform:matrix(0.375455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375455,0.000000,0.000000,0.250000,0,0);}
.m7a_c00261{transform:matrix(0.377103,-0.002263,0.001500,0.249996,0,0);-ms-transform:matrix(0.377103,-0.002263,0.001500,0.249996,0,0);-webkit-transform:matrix(0.377103,-0.002263,0.001500,0.249996,0,0);}
.mc6_c00261{transform:matrix(0.378625,-0.001893,0.001250,0.249997,0,0);-ms-transform:matrix(0.378625,-0.001893,0.001250,0.249997,0,0);-webkit-transform:matrix(0.378625,-0.001893,0.001250,0.249997,0,0);}
.mb1_c00261{transform:matrix(0.379385,-0.001897,0.001250,0.249997,0,0);-ms-transform:matrix(0.379385,-0.001897,0.001250,0.249997,0,0);-webkit-transform:matrix(0.379385,-0.001897,0.001250,0.249997,0,0);}
.m28_c00261{transform:matrix(0.384525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384525,0.000000,0.000000,0.250000,0,0);}
.m3b_c00261{transform:matrix(0.388715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388715,0.000000,0.000000,0.250000,0,0);}
.m31_c00261{transform:matrix(0.390910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390910,0.000000,0.000000,0.250000,0,0);}
.mc3_c00261{transform:matrix(0.393560,-0.001968,0.001250,0.249997,0,0);-ms-transform:matrix(0.393560,-0.001968,0.001250,0.249997,0,0);-webkit-transform:matrix(0.393560,-0.001968,0.001250,0.249997,0,0);}
.md7_c00261{transform:matrix(0.394675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394675,0.000000,0.000000,0.250000,0,0);}
.m29_c00261{transform:matrix(0.395060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395060,0.000000,0.000000,0.250000,0,0);}
.m25_c00261{transform:matrix(0.395710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395710,0.000000,0.000000,0.250000,0,0);}
.m22_c00261{transform:matrix(0.396575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396575,0.000000,0.000000,0.250000,0,0);}
.m6b_c00261{transform:matrix(0.401980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401980,0.000000,0.000000,0.250000,0,0);}
.m10e_c00261{transform:matrix(0.404367,0.006874,-0.004249,0.249964,0,0);-ms-transform:matrix(0.404367,0.006874,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.404367,0.006874,-0.004249,0.249964,0,0);}
.m61_c00261{transform:matrix(0.404605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404605,0.000000,0.000000,0.250000,0,0);}
.mc1_c00261{transform:matrix(0.410265,-0.002051,0.001250,0.249997,0,0);-ms-transform:matrix(0.410265,-0.002051,0.001250,0.249997,0,0);-webkit-transform:matrix(0.410265,-0.002051,0.001250,0.249997,0,0);}
.m3c_c00261{transform:matrix(0.417655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417655,0.000000,0.000000,0.250000,0,0);}
.m82_c00261{transform:matrix(0.418472,-0.002511,0.001500,0.249996,0,0);-ms-transform:matrix(0.418472,-0.002511,0.001500,0.249996,0,0);-webkit-transform:matrix(0.418472,-0.002511,0.001500,0.249996,0,0);}
.m8a_c00261{transform:matrix(0.430267,-0.002582,0.001500,0.249996,0,0);-ms-transform:matrix(0.430267,-0.002582,0.001500,0.249996,0,0);-webkit-transform:matrix(0.430267,-0.002582,0.001500,0.249996,0,0);}
.m10f_c00261{transform:matrix(0.430298,0.007315,-0.004249,0.249964,0,0);-ms-transform:matrix(0.430298,0.007315,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.430298,0.007315,-0.004249,0.249964,0,0);}
.m81_c00261{transform:matrix(0.430377,-0.002582,0.001500,0.249996,0,0);-ms-transform:matrix(0.430377,-0.002582,0.001500,0.249996,0,0);-webkit-transform:matrix(0.430377,-0.002582,0.001500,0.249996,0,0);}
.m27_c00261{transform:matrix(0.438030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.438030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.438030,0.000000,0.000000,0.250000,0,0);}
.m11e_c00261{transform:matrix(0.442340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442340,0.000000,0.000000,0.250000,0,0);}
.m5f_c00261{transform:matrix(0.450665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450665,0.000000,0.000000,0.250000,0,0);}
.m59_c00261{transform:matrix(0.461995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461995,0.000000,0.000000,0.250000,0,0);}
.m2d_c00261{transform:matrix(0.464095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464095,0.000000,0.000000,0.250000,0,0);}
.m118_c00261{transform:matrix(0.469815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469815,0.000000,0.000000,0.250000,0,0);}
.m36_c00261{transform:matrix(0.475325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475325,0.000000,0.000000,0.250000,0,0);}
.m11c_c00261{transform:matrix(0.475410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475410,0.000000,0.000000,0.250000,0,0);}
.m37_c00261{transform:matrix(0.490670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490670,0.000000,0.000000,0.250000,0,0);}
.m74_c00261{transform:matrix(0.493550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493550,0.000000,0.000000,0.250000,0,0);}
.m41_c00261{transform:matrix(0.498090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.498090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.498090,0.000000,0.000000,0.250000,0,0);}
.med_c00261{transform:matrix(0.499050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.499050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.499050,0.000000,0.000000,0.250000,0,0);}
.m16_c00261{transform:matrix(0.501695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.501695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.501695,0.000000,0.000000,0.250000,0,0);}
.mcf_c00261{transform:matrix(0.508615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508615,0.000000,0.000000,0.250000,0,0);}
.m24_c00261{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.mce_c00261{transform:matrix(0.510670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510670,0.000000,0.000000,0.250000,0,0);}
.mad_c00261{transform:matrix(0.511989,-0.002560,0.001250,0.249997,0,0);-ms-transform:matrix(0.511989,-0.002560,0.001250,0.249997,0,0);-webkit-transform:matrix(0.511989,-0.002560,0.001250,0.249997,0,0);}
.m2_c00261{transform:matrix(0.531060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531060,0.000000,0.000000,0.250000,0,0);}
.mdc_c00261{transform:matrix(0.532830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532830,0.000000,0.000000,0.250000,0,0);}
.m45_c00261{transform:matrix(0.534790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534790,0.000000,0.000000,0.250000,0,0);}
.m3f_c00261{transform:matrix(0.536305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536305,0.000000,0.000000,0.250000,0,0);}
.m112_c00261{transform:matrix(0.540142,0.009182,-0.004249,0.249964,0,0);-ms-transform:matrix(0.540142,0.009182,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.540142,0.009182,-0.004249,0.249964,0,0);}
.m42_c00261{transform:matrix(0.540815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540815,0.000000,0.000000,0.250000,0,0);}
.m35_c00261{transform:matrix(0.542700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542700,0.000000,0.000000,0.250000,0,0);}
.m9b_c00261{transform:matrix(0.554945,-0.003330,0.001500,0.249996,0,0);-ms-transform:matrix(0.554945,-0.003330,0.001500,0.249996,0,0);-webkit-transform:matrix(0.554945,-0.003330,0.001500,0.249996,0,0);}
.m5_c00261{transform:matrix(0.555870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555870,0.000000,0.000000,0.250000,0,0);}
.m11b_c00261{transform:matrix(0.558890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558890,0.000000,0.000000,0.250000,0,0);}
.m6a_c00261{transform:matrix(0.569250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.569250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.569250,0.000000,0.000000,0.250000,0,0);}
.m3_c00261{transform:matrix(0.585100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.585100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.585100,0.000000,0.000000,0.250000,0,0);}
.m113_c00261{transform:matrix(0.634428,0.010785,-0.004249,0.249964,0,0);-ms-transform:matrix(0.634428,0.010785,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.634428,0.010785,-0.004249,0.249964,0,0);}
.m91_c00261{transform:matrix(0.644618,-0.003868,0.001500,0.249996,0,0);-ms-transform:matrix(0.644618,-0.003868,0.001500,0.249996,0,0);-webkit-transform:matrix(0.644618,-0.003868,0.001500,0.249996,0,0);}
.m10c_c00261{transform:matrix(0.649121,0.011035,-0.004249,0.249964,0,0);-ms-transform:matrix(0.649121,0.011035,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.649121,0.011035,-0.004249,0.249964,0,0);}
.m39_c00261{transform:matrix(0.649865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.649865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.649865,0.000000,0.000000,0.250000,0,0);}
.m119_c00261{transform:matrix(0.679580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.679580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.679580,0.000000,0.000000,0.250000,0,0);}
.m111_c00261{transform:matrix(0.701339,0.011923,-0.004249,0.249964,0,0);-ms-transform:matrix(0.701339,0.011923,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.701339,0.011923,-0.004249,0.249964,0,0);}
.mbb_c00261{transform:matrix(0.701826,-0.003509,0.001250,0.249997,0,0);-ms-transform:matrix(0.701826,-0.003509,0.001250,0.249997,0,0);-webkit-transform:matrix(0.701826,-0.003509,0.001250,0.249997,0,0);}
.m8d_c00261{transform:matrix(0.716337,-0.004298,0.001500,0.249996,0,0);-ms-transform:matrix(0.716337,-0.004298,0.001500,0.249996,0,0);-webkit-transform:matrix(0.716337,-0.004298,0.001500,0.249996,0,0);}
.m13_c00261{transform:matrix(0.729835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.729835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.729835,0.000000,0.000000,0.250000,0,0);}
.m57_c00261{transform:matrix(0.763325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.763325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.763325,0.000000,0.000000,0.250000,0,0);}
.m110_c00261{transform:matrix(0.872739,0.014837,-0.004249,0.249964,0,0);-ms-transform:matrix(0.872739,0.014837,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.872739,0.014837,-0.004249,0.249964,0,0);}
.m53_c00261{transform:matrix(1.046655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.046655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.046655,0.000000,0.000000,0.250000,0,0);}
.m11_c00261{transform:matrix(1.417105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.417105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.417105,0.000000,0.000000,0.250000,0,0);}
.m11f_c00261{transform:matrix(1.534130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.534130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.534130,0.000000,0.000000,0.250000,0,0);}
.m11a_c00261{transform:matrix(4.033780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.033780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.033780,0.000000,0.000000,0.250000,0,0);}
.v0_c00261{vertical-align:0.000000px;}
.ls0_c00261{letter-spacing:0.000000px;}
.sc__c00261{text-shadow:none;}
.sc0_c00261{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__c00261{-webkit-text-stroke:0px transparent;}
.sc0_c00261{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00261{word-spacing:0.000000px;}
.fc0_c00261{color:transparent;}
.fs5_c00261{font-size:18.000000px;}
.fsc_c00261{font-size:24.000000px;}
.fs0_c00261{font-size:72.000000px;}
.fs4_c00261{font-size:72.001296px;}
.fs3_c00261{font-size:78.000000px;}
.fsb_c00261{font-size:78.011270px;}
.fs2_c00261{font-size:84.000000px;}
.fs6_c00261{font-size:84.001050px;}
.fs9_c00261{font-size:90.000000px;}
.fs7_c00261{font-size:90.001125px;}
.fs8_c00261{font-size:96.000000px;}
.fs1_c00261{font-size:108.000000px;}
.fsa_c00261{font-size:114.000000px;}
.y0_c00261{bottom:0.000000px;}
.y99_c00261{bottom:86.130000px;}
.y98_c00261{bottom:168.210000px;}
.y97_c00261{bottom:187.808178px;}
.y96_c00261{bottom:188.572133px;}
.y95_c00261{bottom:189.144174px;}
.y94_c00261{bottom:191.544107px;}
.y93_c00261{bottom:192.289217px;}
.y92_c00261{bottom:192.305231px;}
.y90_c00261{bottom:193.185338px;}
.y91_c00261{bottom:193.190973px;}
.y8f_c00261{bottom:194.530131px;}
.y8e_c00261{bottom:194.790563px;}
.y8d_c00261{bottom:195.021669px;}
.y8c_c00261{bottom:196.442325px;}
.y8b_c00261{bottom:198.453000px;}
.y8a_c00261{bottom:213.160500px;}
.y89_c00261{bottom:213.486000px;}
.y88_c00261{bottom:214.392000px;}
.y87_c00261{bottom:215.217000px;}
.y86_c00261{bottom:215.475000px;}
.y85_c00261{bottom:217.080000px;}
.y84_c00261{bottom:217.665000px;}
.y83_c00261{bottom:218.041500px;}
.y82_c00261{bottom:218.901000px;}
.y81_c00261{bottom:220.291500px;}
.y80_c00261{bottom:220.663500px;}
.y7f_c00261{bottom:221.404500px;}
.y7e_c00261{bottom:251.574000px;}
.y7d_c00261{bottom:252.349500px;}
.y7c_c00261{bottom:253.144500px;}
.y7b_c00261{bottom:253.605000px;}
.y7a_c00261{bottom:253.881000px;}
.y79_c00261{bottom:254.856000px;}
.y78_c00261{bottom:255.544500px;}
.y77_c00261{bottom:255.801000px;}
.y76_c00261{bottom:256.200000px;}
.y75_c00261{bottom:256.873500px;}
.y74_c00261{bottom:257.134500px;}
.y73_c00261{bottom:257.982000px;}
.y72_c00261{bottom:258.220500px;}
.y71_c00261{bottom:258.930000px;}
.y70_c00261{bottom:278.055000px;}
.y6f_c00261{bottom:315.009000px;}
.y6e_c00261{bottom:347.040000px;}
.y62_c00261{bottom:378.270172px;}
.y63_c00261{bottom:378.577312px;}
.y64_c00261{bottom:378.890227px;}
.y65_c00261{bottom:379.434480px;}
.y66_c00261{bottom:379.873282px;}
.y67_c00261{bottom:380.118420px;}
.y68_c00261{bottom:380.482035px;}
.y69_c00261{bottom:380.746927px;}
.y6a_c00261{bottom:381.019462px;}
.y6b_c00261{bottom:381.880305px;}
.y6c_c00261{bottom:382.173277px;}
.y6d_c00261{bottom:382.445415px;}
.y55_c00261{bottom:409.590382px;}
.y56_c00261{bottom:409.648912px;}
.y57_c00261{bottom:409.947615px;}
.y58_c00261{bottom:410.724353px;}
.y59_c00261{bottom:411.410835px;}
.y5a_c00261{bottom:411.577965px;}
.y5b_c00261{bottom:412.051530px;}
.y5c_c00261{bottom:412.389180px;}
.y5d_c00261{bottom:412.641960px;}
.y5e_c00261{bottom:413.113065px;}
.y5f_c00261{bottom:413.424127px;}
.y60_c00261{bottom:413.438580px;}
.y61_c00261{bottom:413.831842px;}
.y46_c00261{bottom:442.530000px;}
.y47_c00261{bottom:442.727640px;}
.y48_c00261{bottom:443.050080px;}
.y49_c00261{bottom:443.173020px;}
.y4a_c00261{bottom:443.389027px;}
.y4b_c00261{bottom:443.549782px;}
.y4c_c00261{bottom:443.700930px;}
.y4d_c00261{bottom:443.884605px;}
.y4e_c00261{bottom:444.100462px;}
.y4f_c00261{bottom:444.328657px;}
.y50_c00261{bottom:444.552727px;}
.y51_c00261{bottom:444.824130px;}
.y52_c00261{bottom:445.065817px;}
.y53_c00261{bottom:445.534155px;}
.y54_c00261{bottom:445.684132px;}
.y45_c00261{bottom:474.660000px;}
.y40_c00261{bottom:474.999180px;}
.y3f_c00261{bottom:474.999429px;}
.y41_c00261{bottom:474.999711px;}
.y3e_c00261{bottom:474.999858px;}
.y3d_c00261{bottom:475.000158px;}
.y42_c00261{bottom:475.000371px;}
.y43_c00261{bottom:475.000533px;}
.y44_c00261{bottom:475.000653px;}
.y3c_c00261{bottom:475.000818px;}
.y3b_c00261{bottom:475.001007px;}
.y39_c00261{bottom:475.001307px;}
.y3a_c00261{bottom:475.001667px;}
.y2c_c00261{bottom:501.662118px;}
.y2d_c00261{bottom:502.009641px;}
.y2e_c00261{bottom:502.632066px;}
.y2f_c00261{bottom:502.813335px;}
.y30_c00261{bottom:503.460129px;}
.y31_c00261{bottom:504.133461px;}
.y32_c00261{bottom:504.817569px;}
.y33_c00261{bottom:505.008543px;}
.y34_c00261{bottom:505.561182px;}
.y35_c00261{bottom:505.886523px;}
.y36_c00261{bottom:506.134701px;}
.y37_c00261{bottom:506.672937px;}
.y38_c00261{bottom:507.448719px;}
.y1e_c00261{bottom:535.951500px;}
.y1f_c00261{bottom:536.404839px;}
.y20_c00261{bottom:536.545896px;}
.y21_c00261{bottom:537.012339px;}
.y22_c00261{bottom:537.198720px;}
.y23_c00261{bottom:537.663642px;}
.y24_c00261{bottom:537.992520px;}
.y25_c00261{bottom:538.321398px;}
.y26_c00261{bottom:538.666341px;}
.y27_c00261{bottom:538.834740px;}
.y28_c00261{bottom:539.003445px;}
.y29_c00261{bottom:539.390445px;}
.y2a_c00261{bottom:539.641446px;}
.y2b_c00261{bottom:539.901069px;}
.y1d_c00261{bottom:569.314500px;}
.y1c_c00261{bottom:600.981000px;}
.y15_c00261{bottom:631.801500px;}
.y16_c00261{bottom:632.574000px;}
.y17_c00261{bottom:633.883500px;}
.y18_c00261{bottom:634.044000px;}
.y19_c00261{bottom:634.626000px;}
.y1a_c00261{bottom:635.020500px;}
.y1b_c00261{bottom:635.709000px;}
.y14_c00261{bottom:665.055000px;}
.y13_c00261{bottom:695.667000px;}
.y12_c00261{bottom:727.876500px;}
.y11_c00261{bottom:823.533000px;}
.y10_c00261{bottom:854.554500px;}
.yf_c00261{bottom:886.471500px;}
.ye_c00261{bottom:916.288500px;}
.yd_c00261{bottom:916.608000px;}
.yc_c00261{bottom:916.864500px;}
.yb_c00261{bottom:917.122500px;}
.ya_c00261{bottom:917.344500px;}
.y9_c00261{bottom:917.577000px;}
.y8_c00261{bottom:917.842500px;}
.y7_c00261{bottom:918.300000px;}
.y6_c00261{bottom:919.060500px;}
.y5_c00261{bottom:919.365000px;}
.y4_c00261{bottom:920.302500px;}
.y3_c00261{bottom:920.808000px;}
.y2_c00261{bottom:948.396000px;}
.y1_c00261{bottom:1011.592500px;}
.h7_c00261{height:18.000000px;}
.he_c00261{height:24.000000px;}
.h2_c00261{height:72.000000px;}
.h6_c00261{height:72.001296px;}
.h5_c00261{height:78.000000px;}
.hd_c00261{height:78.011270px;}
.h4_c00261{height:84.000000px;}
.h8_c00261{height:84.001050px;}
.hb_c00261{height:90.000000px;}
.h9_c00261{height:90.001125px;}
.ha_c00261{height:96.000000px;}
.h3_c00261{height:108.000000px;}
.hc_c00261{height:114.000000px;}
.h0_c00261{height:1127.790000px;}
.h1_c00261{height:1128.000000px;}
.w0_c00261{width:915.000000px;}
.x0_c00261{left:0.000000px;}
.x67_c00261{left:38.749500px;}
.x76_c00261{left:40.499751px;}
.x4f_c00261{left:55.620000px;}
.x57_c00261{left:57.510000px;}
.x36_c00261{left:61.560000px;}
.x43_c00261{left:64.800000px;}
.x6_c00261{left:66.690000px;}
.x7e_c00261{left:76.138500px;}
.xb1_c00261{left:78.537000px;}
.x91_c00261{left:80.094390px;}
.x58_c00261{left:81.270000px;}
.x88_c00261{left:83.885595px;}
.x37_c00261{left:85.860000px;}
.xab_c00261{left:95.628000px;}
.x77_c00261{left:101.251938px;}
.x68_c00261{left:114.306000px;}
.x7f_c00261{left:115.666500px;}
.x59_c00261{left:117.720000px;}
.x97_c00261{left:121.230000px;}
.x89_c00261{left:126.525668px;}
.x98_c00261{left:134.190000px;}
.xb2_c00261{left:135.511500px;}
.x38_c00261{left:137.700000px;}
.x9d_c00261{left:149.310000px;}
.x11_c00261{left:153.559500px;}
.x44_c00261{left:158.220000px;}
.x1d_c00261{left:160.380000px;}
.xb3_c00261{left:164.074500px;}
.x9e_c00261{left:167.670000px;}
.x99_c00261{left:170.370000px;}
.xa6_c00261{left:176.310000px;}
.x7_c00261{left:180.360000px;}
.x60_c00261{left:181.980000px;}
.x5a_c00261{left:185.760000px;}
.x28_c00261{left:195.210000px;}
.x9a_c00261{left:201.150000px;}
.x80_c00261{left:204.742500px;}
.x39_c00261{left:207.360000px;}
.x45_c00261{left:212.760000px;}
.x69_c00261{left:215.556000px;}
.x12_c00261{left:216.660000px;}
.x3a_c00261{left:218.700000px;}
.x92_c00261{left:225.653708px;}
.x1e_c00261{left:230.850000px;}
.x78_c00261{left:237.065334px;}
.x46_c00261{left:239.760000px;}
.x29_c00261{left:242.460000px;}
.x6a_c00261{left:246.619500px;}
.x81_c00261{left:247.944000px;}
.x5b_c00261{left:256.770000px;}
.x3b_c00261{left:257.850000px;}
.x61_c00261{left:259.470000px;}
.x71_c00261{left:263.474031px;}
.xb9_c00261{left:266.601000px;}
.x9f_c00261{left:267.840000px;}
.x1f_c00261{left:269.460000px;}
.xb4_c00261{left:271.026000px;}
.x8_c00261{left:279.180000px;}
.x93_c00261{left:280.413383px;}
.xac_c00261{left:282.589500px;}
.x54_c00261{left:285.954000px;}
.x5c_c00261{left:289.980000px;}
.xa7_c00261{left:291.330000px;}
.xa0_c00261{left:304.830000px;}
.x82_c00261{left:310.324500px;}
.x3c_c00261{left:311.580000px;}
.x2a_c00261{left:314.010000px;}
.x62_c00261{left:323.460000px;}
.x13_c00261{left:333.858000px;}
.x3d_c00261{left:336.420000px;}
.x20_c00261{left:342.630000px;}
.xad_c00261{left:343.774500px;}
.x9_c00261{left:344.790000px;}
.x63_c00261{left:345.870000px;}
.x47_c00261{left:346.950000px;}
.xa1_c00261{left:351.000000px;}
.x79_c00261{left:356.948154px;}
.xa8_c00261{left:358.020000px;}
.x8a_c00261{left:359.293335px;}
.xba_c00261{left:363.763500px;}
.xb5_c00261{left:366.096000px;}
.x14_c00261{left:371.883000px;}
.xa_c00261{left:378.540000px;}
.xae_c00261{left:380.062500px;}
.x21_c00261{left:385.830000px;}
.x2b_c00261{left:389.880000px;}
.x9b_c00261{left:395.280000px;}
.x48_c00261{left:396.360000px;}
.xb_c00261{left:401.490000px;}
.xa2_c00261{left:402.840000px;}
.x1_c00261{left:405.540000px;}
.xb6_c00261{left:411.129000px;}
.x2_c00261{left:423.360000px;}
.x8b_c00261{left:427.005660px;}
.x2f_c00261{left:429.300000px;}
.x6b_c00261{left:433.732500px;}
.x83_c00261{left:435.870000px;}
.x7a_c00261{left:437.409552px;}
.x22_c00261{left:441.180000px;}
.x3e_c00261{left:444.420000px;}
.x49_c00261{left:446.040000px;}
.x30_c00261{left:455.220000px;}
.x72_c00261{left:457.040709px;}
.x55_c00261{left:458.439000px;}
.x15_c00261{left:466.926000px;}
.xc_c00261{left:473.850000px;}
.x8c_c00261{left:475.335180px;}
.x2c_c00261{left:478.980000px;}
.x84_c00261{left:480.684000px;}
.x64_c00261{left:487.620000px;}
.x5d_c00261{left:489.780000px;}
.x6c_c00261{left:491.223000px;}
.x3_c00261{left:495.180000px;}
.xa3_c00261{left:496.530000px;}
.x9c_c00261{left:501.930000px;}
.x50_c00261{left:503.820000px;}
.xd_c00261{left:505.980000px;}
.xbb_c00261{left:509.959500px;}
.x8d_c00261{left:511.490820px;}
.x51_c00261{left:516.780000px;}
.x6d_c00261{left:519.289500px;}
.x7b_c00261{left:523.001130px;}
.x16_c00261{left:524.163000px;}
.x73_c00261{left:526.146381px;}
.x23_c00261{left:528.390000px;}
.x7d_c00261{left:530.280000px;}
.x94_c00261{left:531.514125px;}
.x56_c00261{left:533.482500px;}
.x85_c00261{left:534.964500px;}
.x4_c00261{left:537.300000px;}
.x31_c00261{left:541.890000px;}
.x3f_c00261{left:544.860000px;}
.xa9_c00261{left:546.210000px;}
.x6e_c00261{left:547.407000px;}
.xaf_c00261{left:554.722500px;}
.x17_c00261{left:557.388000px;}
.x74_c00261{left:566.869395px;}
.x95_c00261{left:568.208078px;}
.x24_c00261{left:572.940000px;}
.x4a_c00261{left:577.530000px;}
.x8e_c00261{left:578.711145px;}
.x40_c00261{left:580.770000px;}
.x86_c00261{left:583.302000px;}
.x18_c00261{left:586.528500px;}
.x5e_c00261{left:587.790000px;}
.x32_c00261{left:589.680000px;}
.x65_c00261{left:598.320000px;}
.x33_c00261{left:601.020000px;}
.x96_c00261{left:602.235068px;}
.x25_c00261{left:606.690000px;}
.x5_c00261{left:608.040000px;}
.x4b_c00261{left:609.660000px;}
.x6f_c00261{left:611.907000px;}
.x19_c00261{left:614.317500px;}
.xb7_c00261{left:617.922000px;}
.x52_c00261{left:619.920000px;}
.x41_c00261{left:621.270000px;}
.x8f_c00261{left:623.223203px;}
.xe_c00261{left:625.050000px;}
.x66_c00261{left:632.070000px;}
.x2d_c00261{left:639.090000px;}
.x1a_c00261{left:646.491000px;}
.x70_c00261{left:653.740500px;}
.x4c_c00261{left:662.850000px;}
.x34_c00261{left:663.930000px;}
.x42_c00261{left:665.010000px;}
.x7c_c00261{left:666.643296px;}
.xf_c00261{left:670.410000px;}
.xa4_c00261{left:674.460000px;}
.x5f_c00261{left:676.080000px;}
.x1b_c00261{left:678.565500px;}
.x90_c00261{left:681.365618px;}
.xaa_c00261{left:686.610000px;}
.xb8_c00261{left:687.633000px;}
.x26_c00261{left:692.010000px;}
.x4d_c00261{left:693.360000px;}
.x2e_c00261{left:696.060000px;}
.x35_c00261{left:705.240000px;}
.x87_c00261{left:706.965000px;}
.x53_c00261{left:708.210000px;}
.x10_c00261{left:711.990000px;}
.x27_c00261{left:714.150000px;}
.x1c_c00261{left:718.579500px;}
.x4e_c00261{left:726.570000px;}
.xa5_c00261{left:728.730000px;}
.x75_c00261{left:762.233055px;}
.xb0_c00261{left:764.350500px;}
.xbc_c00261{left:774.492000px;}
.xc0_c00261{left:874.800000px;}
.xbe_c00261{left:876.690000px;}
.xbd_c00261{left:877.770000px;}
.xbf_c00261{left:879.120000px;}
.xc3_c00261{left:889.920000px;}
.xc2_c00261{left:891.270000px;}
.xc1_c00261{left:894.780000px;}
@media print{
.v0_c00261{vertical-align:0.000000pt;}
.ls0_c00261{letter-spacing:0.000000pt;}
.ws0_c00261{word-spacing:0.000000pt;}
.fs5_c00261{font-size:16.000000pt;}
.fsc_c00261{font-size:21.333333pt;}
.fs0_c00261{font-size:64.000000pt;}
.fs4_c00261{font-size:64.001152pt;}
.fs3_c00261{font-size:69.333333pt;}
.fsb_c00261{font-size:69.343351pt;}
.fs2_c00261{font-size:74.666667pt;}
.fs6_c00261{font-size:74.667600pt;}
.fs9_c00261{font-size:80.000000pt;}
.fs7_c00261{font-size:80.001000pt;}
.fs8_c00261{font-size:85.333333pt;}
.fs1_c00261{font-size:96.000000pt;}
.fsa_c00261{font-size:101.333333pt;}
.y0_c00261{bottom:0.000000pt;}
.y99_c00261{bottom:76.560000pt;}
.y98_c00261{bottom:149.520000pt;}
.y97_c00261{bottom:166.940603pt;}
.y96_c00261{bottom:167.619673pt;}
.y95_c00261{bottom:168.128155pt;}
.y94_c00261{bottom:170.261428pt;}
.y93_c00261{bottom:170.923748pt;}
.y92_c00261{bottom:170.937983pt;}
.y90_c00261{bottom:171.720300pt;}
.y91_c00261{bottom:171.725309pt;}
.y8f_c00261{bottom:172.915672pt;}
.y8e_c00261{bottom:173.147167pt;}
.y8d_c00261{bottom:173.352595pt;}
.y8c_c00261{bottom:174.615400pt;}
.y8b_c00261{bottom:176.402667pt;}
.y8a_c00261{bottom:189.476000pt;}
.y89_c00261{bottom:189.765333pt;}
.y88_c00261{bottom:190.570667pt;}
.y87_c00261{bottom:191.304000pt;}
.y86_c00261{bottom:191.533333pt;}
.y85_c00261{bottom:192.960000pt;}
.y84_c00261{bottom:193.480000pt;}
.y83_c00261{bottom:193.814667pt;}
.y82_c00261{bottom:194.578667pt;}
.y81_c00261{bottom:195.814667pt;}
.y80_c00261{bottom:196.145333pt;}
.y7f_c00261{bottom:196.804000pt;}
.y7e_c00261{bottom:223.621333pt;}
.y7d_c00261{bottom:224.310667pt;}
.y7c_c00261{bottom:225.017333pt;}
.y7b_c00261{bottom:225.426667pt;}
.y7a_c00261{bottom:225.672000pt;}
.y79_c00261{bottom:226.538667pt;}
.y78_c00261{bottom:227.150667pt;}
.y77_c00261{bottom:227.378667pt;}
.y76_c00261{bottom:227.733333pt;}
.y75_c00261{bottom:228.332000pt;}
.y74_c00261{bottom:228.564000pt;}
.y73_c00261{bottom:229.317333pt;}
.y72_c00261{bottom:229.529333pt;}
.y71_c00261{bottom:230.160000pt;}
.y70_c00261{bottom:247.160000pt;}
.y6f_c00261{bottom:280.008000pt;}
.y6e_c00261{bottom:308.480000pt;}
.y62_c00261{bottom:336.240153pt;}
.y63_c00261{bottom:336.513167pt;}
.y64_c00261{bottom:336.791313pt;}
.y65_c00261{bottom:337.275093pt;}
.y66_c00261{bottom:337.665140pt;}
.y67_c00261{bottom:337.883040pt;}
.y68_c00261{bottom:338.206253pt;}
.y69_c00261{bottom:338.441713pt;}
.y6a_c00261{bottom:338.683967pt;}
.y6b_c00261{bottom:339.449160pt;}
.y6c_c00261{bottom:339.709580pt;}
.y6d_c00261{bottom:339.951480pt;}
.y55_c00261{bottom:364.080340pt;}
.y56_c00261{bottom:364.132367pt;}
.y57_c00261{bottom:364.397880pt;}
.y58_c00261{bottom:365.088313pt;}
.y59_c00261{bottom:365.698520pt;}
.y5a_c00261{bottom:365.847080pt;}
.y5b_c00261{bottom:366.268027pt;}
.y5c_c00261{bottom:366.568160pt;}
.y5d_c00261{bottom:366.792853pt;}
.y5e_c00261{bottom:367.211613pt;}
.y5f_c00261{bottom:367.488113pt;}
.y60_c00261{bottom:367.500960pt;}
.y61_c00261{bottom:367.850527pt;}
.y46_c00261{bottom:393.360000pt;}
.y47_c00261{bottom:393.535680pt;}
.y48_c00261{bottom:393.822293pt;}
.y49_c00261{bottom:393.931573pt;}
.y4a_c00261{bottom:394.123580pt;}
.y4b_c00261{bottom:394.266473pt;}
.y4c_c00261{bottom:394.400827pt;}
.y4d_c00261{bottom:394.564093pt;}
.y4e_c00261{bottom:394.755967pt;}
.y4f_c00261{bottom:394.958807pt;}
.y50_c00261{bottom:395.157980pt;}
.y51_c00261{bottom:395.399227pt;}
.y52_c00261{bottom:395.614060pt;}
.y53_c00261{bottom:396.030360pt;}
.y54_c00261{bottom:396.163673pt;}
.y45_c00261{bottom:421.920000pt;}
.y40_c00261{bottom:422.221493pt;}
.y3f_c00261{bottom:422.221715pt;}
.y41_c00261{bottom:422.221965pt;}
.y3e_c00261{bottom:422.222096pt;}
.y3d_c00261{bottom:422.222363pt;}
.y42_c00261{bottom:422.222552pt;}
.y43_c00261{bottom:422.222696pt;}
.y44_c00261{bottom:422.222803pt;}
.y3c_c00261{bottom:422.222949pt;}
.y3b_c00261{bottom:422.223117pt;}
.y39_c00261{bottom:422.223384pt;}
.y3a_c00261{bottom:422.223704pt;}
.y2c_c00261{bottom:445.921883pt;}
.y2d_c00261{bottom:446.230792pt;}
.y2e_c00261{bottom:446.784059pt;}
.y2f_c00261{bottom:446.945187pt;}
.y30_c00261{bottom:447.520115pt;}
.y31_c00261{bottom:448.118632pt;}
.y32_c00261{bottom:448.726728pt;}
.y33_c00261{bottom:448.896483pt;}
.y34_c00261{bottom:449.387717pt;}
.y35_c00261{bottom:449.676909pt;}
.y36_c00261{bottom:449.897512pt;}
.y37_c00261{bottom:450.375944pt;}
.y38_c00261{bottom:451.065528pt;}
.y1e_c00261{bottom:476.401333pt;}
.y1f_c00261{bottom:476.804301pt;}
.y20_c00261{bottom:476.929685pt;}
.y21_c00261{bottom:477.344301pt;}
.y22_c00261{bottom:477.509973pt;}
.y23_c00261{bottom:477.923237pt;}
.y24_c00261{bottom:478.215573pt;}
.y25_c00261{bottom:478.507909pt;}
.y26_c00261{bottom:478.814525pt;}
.y27_c00261{bottom:478.964213pt;}
.y28_c00261{bottom:479.114173pt;}
.y29_c00261{bottom:479.458173pt;}
.y2a_c00261{bottom:479.681285pt;}
.y2b_c00261{bottom:479.912061pt;}
.y1d_c00261{bottom:506.057333pt;}
.y1c_c00261{bottom:534.205333pt;}
.y15_c00261{bottom:561.601333pt;}
.y16_c00261{bottom:562.288000pt;}
.y17_c00261{bottom:563.452000pt;}
.y18_c00261{bottom:563.594667pt;}
.y19_c00261{bottom:564.112000pt;}
.y1a_c00261{bottom:564.462667pt;}
.y1b_c00261{bottom:565.074667pt;}
.y14_c00261{bottom:591.160000pt;}
.y13_c00261{bottom:618.370667pt;}
.y12_c00261{bottom:647.001333pt;}
.y11_c00261{bottom:732.029333pt;}
.y10_c00261{bottom:759.604000pt;}
.yf_c00261{bottom:787.974667pt;}
.ye_c00261{bottom:814.478667pt;}
.yd_c00261{bottom:814.762667pt;}
.yc_c00261{bottom:814.990667pt;}
.yb_c00261{bottom:815.220000pt;}
.ya_c00261{bottom:815.417333pt;}
.y9_c00261{bottom:815.624000pt;}
.y8_c00261{bottom:815.860000pt;}
.y7_c00261{bottom:816.266667pt;}
.y6_c00261{bottom:816.942667pt;}
.y5_c00261{bottom:817.213333pt;}
.y4_c00261{bottom:818.046667pt;}
.y3_c00261{bottom:818.496000pt;}
.y2_c00261{bottom:843.018667pt;}
.y1_c00261{bottom:899.193333pt;}
.h7_c00261{height:16.000000pt;}
.he_c00261{height:21.333333pt;}
.h2_c00261{height:64.000000pt;}
.h6_c00261{height:64.001152pt;}
.h5_c00261{height:69.333333pt;}
.hd_c00261{height:69.343351pt;}
.h4_c00261{height:74.666667pt;}
.h8_c00261{height:74.667600pt;}
.hb_c00261{height:80.000000pt;}
.h9_c00261{height:80.001000pt;}
.ha_c00261{height:85.333333pt;}
.h3_c00261{height:96.000000pt;}
.hc_c00261{height:101.333333pt;}
.h0_c00261{height:1002.480000pt;}
.h1_c00261{height:1002.666667pt;}
.w0_c00261{width:813.333333pt;}
.x0_c00261{left:0.000000pt;}
.x67_c00261{left:34.444000pt;}
.x76_c00261{left:35.999779pt;}
.x4f_c00261{left:49.440000pt;}
.x57_c00261{left:51.120000pt;}
.x36_c00261{left:54.720000pt;}
.x43_c00261{left:57.600000pt;}
.x6_c00261{left:59.280000pt;}
.x7e_c00261{left:67.678667pt;}
.xb1_c00261{left:69.810667pt;}
.x91_c00261{left:71.195013pt;}
.x58_c00261{left:72.240000pt;}
.x88_c00261{left:74.564973pt;}
.x37_c00261{left:76.320000pt;}
.xab_c00261{left:85.002667pt;}
.x77_c00261{left:90.001723pt;}
.x68_c00261{left:101.605333pt;}
.x7f_c00261{left:102.814667pt;}
.x59_c00261{left:104.640000pt;}
.x97_c00261{left:107.760000pt;}
.x89_c00261{left:112.467260pt;}
.x98_c00261{left:119.280000pt;}
.xb2_c00261{left:120.454667pt;}
.x38_c00261{left:122.400000pt;}
.x9d_c00261{left:132.720000pt;}
.x11_c00261{left:136.497333pt;}
.x44_c00261{left:140.640000pt;}
.x1d_c00261{left:142.560000pt;}
.xb3_c00261{left:145.844000pt;}
.x9e_c00261{left:149.040000pt;}
.x99_c00261{left:151.440000pt;}
.xa6_c00261{left:156.720000pt;}
.x7_c00261{left:160.320000pt;}
.x60_c00261{left:161.760000pt;}
.x5a_c00261{left:165.120000pt;}
.x28_c00261{left:173.520000pt;}
.x9a_c00261{left:178.800000pt;}
.x80_c00261{left:181.993333pt;}
.x39_c00261{left:184.320000pt;}
.x45_c00261{left:189.120000pt;}
.x69_c00261{left:191.605333pt;}
.x12_c00261{left:192.586667pt;}
.x3a_c00261{left:194.400000pt;}
.x92_c00261{left:200.581073pt;}
.x1e_c00261{left:205.200000pt;}
.x78_c00261{left:210.724741pt;}
.x46_c00261{left:213.120000pt;}
.x29_c00261{left:215.520000pt;}
.x6a_c00261{left:219.217333pt;}
.x81_c00261{left:220.394667pt;}
.x5b_c00261{left:228.240000pt;}
.x3b_c00261{left:229.200000pt;}
.x61_c00261{left:230.640000pt;}
.x71_c00261{left:234.199139pt;}
.xb9_c00261{left:236.978667pt;}
.x9f_c00261{left:238.080000pt;}
.x1f_c00261{left:239.520000pt;}
.xb4_c00261{left:240.912000pt;}
.x8_c00261{left:248.160000pt;}
.x93_c00261{left:249.256340pt;}
.xac_c00261{left:251.190667pt;}
.x54_c00261{left:254.181333pt;}
.x5c_c00261{left:257.760000pt;}
.xa7_c00261{left:258.960000pt;}
.xa0_c00261{left:270.960000pt;}
.x82_c00261{left:275.844000pt;}
.x3c_c00261{left:276.960000pt;}
.x2a_c00261{left:279.120000pt;}
.x62_c00261{left:287.520000pt;}
.x13_c00261{left:296.762667pt;}
.x3d_c00261{left:299.040000pt;}
.x20_c00261{left:304.560000pt;}
.xad_c00261{left:305.577333pt;}
.x9_c00261{left:306.480000pt;}
.x63_c00261{left:307.440000pt;}
.x47_c00261{left:308.400000pt;}
.xa1_c00261{left:312.000000pt;}
.x79_c00261{left:317.287248pt;}
.xa8_c00261{left:318.240000pt;}
.x8a_c00261{left:319.371853pt;}
.xba_c00261{left:323.345333pt;}
.xb5_c00261{left:325.418667pt;}
.x14_c00261{left:330.562667pt;}
.xa_c00261{left:336.480000pt;}
.xae_c00261{left:337.833333pt;}
.x21_c00261{left:342.960000pt;}
.x2b_c00261{left:346.560000pt;}
.x9b_c00261{left:351.360000pt;}
.x48_c00261{left:352.320000pt;}
.xb_c00261{left:356.880000pt;}
.xa2_c00261{left:358.080000pt;}
.x1_c00261{left:360.480000pt;}
.xb6_c00261{left:365.448000pt;}
.x2_c00261{left:376.320000pt;}
.x8b_c00261{left:379.560587pt;}
.x2f_c00261{left:381.600000pt;}
.x6b_c00261{left:385.540000pt;}
.x83_c00261{left:387.440000pt;}
.x7a_c00261{left:388.808491pt;}
.x22_c00261{left:392.160000pt;}
.x3e_c00261{left:395.040000pt;}
.x49_c00261{left:396.480000pt;}
.x30_c00261{left:404.640000pt;}
.x72_c00261{left:406.258408pt;}
.x55_c00261{left:407.501333pt;}
.x15_c00261{left:415.045333pt;}
.xc_c00261{left:421.200000pt;}
.x8c_c00261{left:422.520160pt;}
.x2c_c00261{left:425.760000pt;}
.x84_c00261{left:427.274667pt;}
.x64_c00261{left:433.440000pt;}
.x5d_c00261{left:435.360000pt;}
.x6c_c00261{left:436.642667pt;}
.x3_c00261{left:440.160000pt;}
.xa3_c00261{left:441.360000pt;}
.x9c_c00261{left:446.160000pt;}
.x50_c00261{left:447.840000pt;}
.xd_c00261{left:449.760000pt;}
.xbb_c00261{left:453.297333pt;}
.x8d_c00261{left:454.658507pt;}
.x51_c00261{left:459.360000pt;}
.x6d_c00261{left:461.590667pt;}
.x7b_c00261{left:464.889893pt;}
.x16_c00261{left:465.922667pt;}
.x73_c00261{left:467.685672pt;}
.x23_c00261{left:469.680000pt;}
.x7d_c00261{left:471.360000pt;}
.x94_c00261{left:472.457000pt;}
.x56_c00261{left:474.206667pt;}
.x85_c00261{left:475.524000pt;}
.x4_c00261{left:477.600000pt;}
.x31_c00261{left:481.680000pt;}
.x3f_c00261{left:484.320000pt;}
.xa9_c00261{left:485.520000pt;}
.x6e_c00261{left:486.584000pt;}
.xaf_c00261{left:493.086667pt;}
.x17_c00261{left:495.456000pt;}
.x74_c00261{left:503.883907pt;}
.x95_c00261{left:505.073847pt;}
.x24_c00261{left:509.280000pt;}
.x4a_c00261{left:513.360000pt;}
.x8e_c00261{left:514.409907pt;}
.x40_c00261{left:516.240000pt;}
.x86_c00261{left:518.490667pt;}
.x18_c00261{left:521.358667pt;}
.x5e_c00261{left:522.480000pt;}
.x32_c00261{left:524.160000pt;}
.x65_c00261{left:531.840000pt;}
.x33_c00261{left:534.240000pt;}
.x96_c00261{left:535.320060pt;}
.x25_c00261{left:539.280000pt;}
.x5_c00261{left:540.480000pt;}
.x4b_c00261{left:541.920000pt;}
.x6f_c00261{left:543.917333pt;}
.x19_c00261{left:546.060000pt;}
.xb7_c00261{left:549.264000pt;}
.x52_c00261{left:551.040000pt;}
.x41_c00261{left:552.240000pt;}
.x8f_c00261{left:553.976180pt;}
.xe_c00261{left:555.600000pt;}
.x66_c00261{left:561.840000pt;}
.x2d_c00261{left:568.080000pt;}
.x1a_c00261{left:574.658667pt;}
.x70_c00261{left:581.102667pt;}
.x4c_c00261{left:589.200000pt;}
.x34_c00261{left:590.160000pt;}
.x42_c00261{left:591.120000pt;}
.x7c_c00261{left:592.571819pt;}
.xf_c00261{left:595.920000pt;}
.xa4_c00261{left:599.520000pt;}
.x5f_c00261{left:600.960000pt;}
.x1b_c00261{left:603.169333pt;}
.x90_c00261{left:605.658327pt;}
.xaa_c00261{left:610.320000pt;}
.xb8_c00261{left:611.229333pt;}
.x26_c00261{left:615.120000pt;}
.x4d_c00261{left:616.320000pt;}
.x2e_c00261{left:618.720000pt;}
.x35_c00261{left:626.880000pt;}
.x87_c00261{left:628.413333pt;}
.x53_c00261{left:629.520000pt;}
.x10_c00261{left:632.880000pt;}
.x27_c00261{left:634.800000pt;}
.x1c_c00261{left:638.737333pt;}
.x4e_c00261{left:645.840000pt;}
.xa5_c00261{left:647.760000pt;}
.x75_c00261{left:677.540493pt;}
.xb0_c00261{left:679.422667pt;}
.xbc_c00261{left:688.437333pt;}
.xc0_c00261{left:777.600000pt;}
.xbe_c00261{left:779.280000pt;}
.xbd_c00261{left:780.240000pt;}
.xbf_c00261{left:781.440000pt;}
.xc3_c00261{left:791.040000pt;}
.xc2_c00261{left:792.240000pt;}
.xc1_c00261{left:795.360000pt;}
}





/* 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_c00262 {
    display:none;
  }
  .loading-indicator_c00262.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00262 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_c00262 { 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_c00262" -> "#page-container .classname_c00262")
 */
.pf_c00262 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00262 { /* 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_c00262.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00262 { /* 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_c00262 { /* 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_c00262 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00262 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00262 {overflow:visible;}
  }
}
.c_c00262 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00262 { /* 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_c00262:after { /* webkit #35443 */
  content: '';
}
.t_c00262:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00262 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 */
}
.__c00262 { /* 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_c00262 { /* info for Javascript */
  display:none;
}
.l_c00262 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00262 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00262 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00262: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_c00262 {
    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_c00262.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00262.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_c00262 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00262{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00262;src:url('chunks/assets/font_b11a17f404e7258299fdf971.woff2')format("woff");}.ff1_c00262{font-family:ff1_c00262;line-height:1.000000;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;}
.m0_c00262{transform:matrix(0.090500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090500,0.000000,0.000000,0.250000,0,0);}
.m47_c00262{transform:matrix(0.115935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115935,0.000000,0.000000,0.250000,0,0);}
.m44_c00262{transform:matrix(0.191745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191745,0.000000,0.000000,0.250000,0,0);}
.m14_c00262{transform:matrix(0.197210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197210,0.000000,0.000000,0.250000,0,0);}
.m4a_c00262{transform:matrix(0.199700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199700,0.000000,0.000000,0.250000,0,0);}
.m45_c00262{transform:matrix(0.201245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201245,0.000000,0.000000,0.250000,0,0);}
.m50_c00262{transform:matrix(0.201285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201285,0.000000,0.000000,0.250000,0,0);}
.m42_c00262{transform:matrix(0.207440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207440,0.000000,0.000000,0.250000,0,0);}
.m4f_c00262{transform:matrix(0.212130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212130,0.000000,0.000000,0.250000,0,0);}
.m11_c00262{transform:matrix(0.218090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218090,0.000000,0.000000,0.250000,0,0);}
.m21_c00262{transform:matrix(0.220246,-0.001982,0.002250,0.249990,0,0);-ms-transform:matrix(0.220246,-0.001982,0.002250,0.249990,0,0);-webkit-transform:matrix(0.220246,-0.001982,0.002250,0.249990,0,0);}
.m46_c00262{transform:matrix(0.223585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223585,0.000000,0.000000,0.250000,0,0);}
.m8_c00262{transform:matrix(0.225195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225195,0.000000,0.000000,0.250000,0,0);}
.m49_c00262{transform:matrix(0.227460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227460,0.000000,0.000000,0.250000,0,0);}
.m1_c00262{transform:matrix(0.229525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229525,0.000000,0.000000,0.250000,0,0);}
.m48_c00262{transform:matrix(0.230980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230980,0.000000,0.000000,0.250000,0,0);}
.m6_c00262{transform:matrix(0.233240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233240,0.000000,0.000000,0.250000,0,0);}
.m4c_c00262{transform:matrix(0.234730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234730,0.000000,0.000000,0.250000,0,0);}
.m1a_c00262{transform:matrix(0.235080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235080,0.000000,0.000000,0.250000,0,0);}
.m4b_c00262{transform:matrix(0.235405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235405,0.000000,0.000000,0.250000,0,0);}
.m3c_c00262{transform:matrix(0.235440,-0.002119,0.002250,0.249990,0,0);-ms-transform:matrix(0.235440,-0.002119,0.002250,0.249990,0,0);-webkit-transform:matrix(0.235440,-0.002119,0.002250,0.249990,0,0);}
.m15_c00262{transform:matrix(0.235850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235850,0.000000,0.000000,0.250000,0,0);}
.ma_c00262{transform:matrix(0.236585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236585,0.000000,0.000000,0.250000,0,0);}
.m41_c00262{transform:matrix(0.236615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236615,0.000000,0.000000,0.250000,0,0);}
.m2e_c00262{transform:matrix(0.236775,-0.002131,0.002250,0.249990,0,0);-ms-transform:matrix(0.236775,-0.002131,0.002250,0.249990,0,0);-webkit-transform:matrix(0.236775,-0.002131,0.002250,0.249990,0,0);}
.m4_c00262{transform:matrix(0.237185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237185,0.000000,0.000000,0.250000,0,0);}
.m25_c00262{transform:matrix(0.238525,-0.002147,0.002250,0.249990,0,0);-ms-transform:matrix(0.238525,-0.002147,0.002250,0.249990,0,0);-webkit-transform:matrix(0.238525,-0.002147,0.002250,0.249990,0,0);}
.m17_c00262{transform:matrix(0.239295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239295,0.000000,0.000000,0.250000,0,0);}
.m3d_c00262{transform:matrix(0.239945,-0.002160,0.002250,0.249990,0,0);-ms-transform:matrix(0.239945,-0.002160,0.002250,0.249990,0,0);-webkit-transform:matrix(0.239945,-0.002160,0.002250,0.249990,0,0);}
.m2c_c00262{transform:matrix(0.241380,-0.002172,0.002250,0.249990,0,0);-ms-transform:matrix(0.241380,-0.002172,0.002250,0.249990,0,0);-webkit-transform:matrix(0.241380,-0.002172,0.002250,0.249990,0,0);}
.mb_c00262{transform:matrix(0.243495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243495,0.000000,0.000000,0.250000,0,0);}
.m4e_c00262{transform:matrix(0.243515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243515,0.000000,0.000000,0.250000,0,0);}
.m16_c00262{transform:matrix(0.244760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244760,0.000000,0.000000,0.250000,0,0);}
.m32_c00262{transform:matrix(0.245515,-0.002210,0.002250,0.249990,0,0);-ms-transform:matrix(0.245515,-0.002210,0.002250,0.249990,0,0);-webkit-transform:matrix(0.245515,-0.002210,0.002250,0.249990,0,0);}
.m1d_c00262{transform:matrix(0.246205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246205,0.000000,0.000000,0.250000,0,0);}
.m23_c00262{transform:matrix(0.246225,-0.002216,0.002250,0.249990,0,0);-ms-transform:matrix(0.246225,-0.002216,0.002250,0.249990,0,0);-webkit-transform:matrix(0.246225,-0.002216,0.002250,0.249990,0,0);}
.m12_c00262{transform:matrix(0.246425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246425,0.000000,0.000000,0.250000,0,0);}
.m4d_c00262{transform:matrix(0.247120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247120,0.000000,0.000000,0.250000,0,0);}
.mc_c00262{transform:matrix(0.247265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247265,0.000000,0.000000,0.250000,0,0);}
.m30_c00262{transform:matrix(0.251210,-0.002261,0.002250,0.249990,0,0);-ms-transform:matrix(0.251210,-0.002261,0.002250,0.249990,0,0);-webkit-transform:matrix(0.251210,-0.002261,0.002250,0.249990,0,0);}
.m1f_c00262{transform:matrix(0.254110,-0.002287,0.002250,0.249990,0,0);-ms-transform:matrix(0.254110,-0.002287,0.002250,0.249990,0,0);-webkit-transform:matrix(0.254110,-0.002287,0.002250,0.249990,0,0);}
.me_c00262{transform:matrix(0.254170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254170,0.000000,0.000000,0.250000,0,0);}
.m9_c00262{transform:matrix(0.256215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256215,0.000000,0.000000,0.250000,0,0);}
.m36_c00262{transform:matrix(0.258735,-0.002329,0.002250,0.249990,0,0);-ms-transform:matrix(0.258735,-0.002329,0.002250,0.249990,0,0);-webkit-transform:matrix(0.258735,-0.002329,0.002250,0.249990,0,0);}
.m34_c00262{transform:matrix(0.259409,-0.002335,0.002250,0.249990,0,0);-ms-transform:matrix(0.259409,-0.002335,0.002250,0.249990,0,0);-webkit-transform:matrix(0.259409,-0.002335,0.002250,0.249990,0,0);}
.m7_c00262{transform:matrix(0.260640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260640,0.000000,0.000000,0.250000,0,0);}
.m26_c00262{transform:matrix(0.262144,-0.002359,0.002250,0.249990,0,0);-ms-transform:matrix(0.262144,-0.002359,0.002250,0.249990,0,0);-webkit-transform:matrix(0.262144,-0.002359,0.002250,0.249990,0,0);}
.m22_c00262{transform:matrix(0.264599,-0.002381,0.002250,0.249990,0,0);-ms-transform:matrix(0.264599,-0.002381,0.002250,0.249990,0,0);-webkit-transform:matrix(0.264599,-0.002381,0.002250,0.249990,0,0);}
.m40_c00262{transform:matrix(0.265309,-0.002388,0.002250,0.249990,0,0);-ms-transform:matrix(0.265309,-0.002388,0.002250,0.249990,0,0);-webkit-transform:matrix(0.265309,-0.002388,0.002250,0.249990,0,0);}
.m2b_c00262{transform:matrix(0.265449,-0.002389,0.002250,0.249990,0,0);-ms-transform:matrix(0.265449,-0.002389,0.002250,0.249990,0,0);-webkit-transform:matrix(0.265449,-0.002389,0.002250,0.249990,0,0);}
.md_c00262{transform:matrix(0.265855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265855,0.000000,0.000000,0.250000,0,0);}
.m1c_c00262{transform:matrix(0.265895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265895,0.000000,0.000000,0.250000,0,0);}
.m5_c00262{transform:matrix(0.266170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266170,0.000000,0.000000,0.250000,0,0);}
.m43_c00262{transform:matrix(0.267150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267150,0.000000,0.000000,0.250000,0,0);}
.m3f_c00262{transform:matrix(0.267154,-0.002404,0.002250,0.249990,0,0);-ms-transform:matrix(0.267154,-0.002404,0.002250,0.249990,0,0);-webkit-transform:matrix(0.267154,-0.002404,0.002250,0.249990,0,0);}
.m13_c00262{transform:matrix(0.267700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267700,0.000000,0.000000,0.250000,0,0);}
.m39_c00262{transform:matrix(0.268039,-0.002412,0.002250,0.249990,0,0);-ms-transform:matrix(0.268039,-0.002412,0.002250,0.249990,0,0);-webkit-transform:matrix(0.268039,-0.002412,0.002250,0.249990,0,0);}
.m27_c00262{transform:matrix(0.268404,-0.002416,0.002250,0.249990,0,0);-ms-transform:matrix(0.268404,-0.002416,0.002250,0.249990,0,0);-webkit-transform:matrix(0.268404,-0.002416,0.002250,0.249990,0,0);}
.m10_c00262{transform:matrix(0.271275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271275,0.000000,0.000000,0.250000,0,0);}
.m3_c00262{transform:matrix(0.271535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271535,0.000000,0.000000,0.250000,0,0);}
.m19_c00262{transform:matrix(0.271715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271715,0.000000,0.000000,0.250000,0,0);}
.m24_c00262{transform:matrix(0.274589,-0.002471,0.002250,0.249990,0,0);-ms-transform:matrix(0.274589,-0.002471,0.002250,0.249990,0,0);-webkit-transform:matrix(0.274589,-0.002471,0.002250,0.249990,0,0);}
.m2_c00262{transform:matrix(0.274615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274615,0.000000,0.000000,0.250000,0,0);}
.m1b_c00262{transform:matrix(0.275135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275135,0.000000,0.000000,0.250000,0,0);}
.mf_c00262{transform:matrix(0.278230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278230,0.000000,0.000000,0.250000,0,0);}
.m28_c00262{transform:matrix(0.278404,-0.002506,0.002250,0.249990,0,0);-ms-transform:matrix(0.278404,-0.002506,0.002250,0.249990,0,0);-webkit-transform:matrix(0.278404,-0.002506,0.002250,0.249990,0,0);}
.m1e_c00262{transform:matrix(0.278490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278490,0.000000,0.000000,0.250000,0,0);}
.m3b_c00262{transform:matrix(0.279839,-0.002519,0.002250,0.249990,0,0);-ms-transform:matrix(0.279839,-0.002519,0.002250,0.249990,0,0);-webkit-transform:matrix(0.279839,-0.002519,0.002250,0.249990,0,0);}
.m18_c00262{transform:matrix(0.280130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280130,0.000000,0.000000,0.250000,0,0);}
.m20_c00262{transform:matrix(0.281154,-0.002530,0.002250,0.249990,0,0);-ms-transform:matrix(0.281154,-0.002530,0.002250,0.249990,0,0);-webkit-transform:matrix(0.281154,-0.002530,0.002250,0.249990,0,0);}
.m37_c00262{transform:matrix(0.281714,-0.002535,0.002250,0.249990,0,0);-ms-transform:matrix(0.281714,-0.002535,0.002250,0.249990,0,0);-webkit-transform:matrix(0.281714,-0.002535,0.002250,0.249990,0,0);}
.m38_c00262{transform:matrix(0.285343,-0.002568,0.002250,0.249990,0,0);-ms-transform:matrix(0.285343,-0.002568,0.002250,0.249990,0,0);-webkit-transform:matrix(0.285343,-0.002568,0.002250,0.249990,0,0);}
.m2f_c00262{transform:matrix(0.285743,-0.002572,0.002250,0.249990,0,0);-ms-transform:matrix(0.285743,-0.002572,0.002250,0.249990,0,0);-webkit-transform:matrix(0.285743,-0.002572,0.002250,0.249990,0,0);}
.m3a_c00262{transform:matrix(0.286293,-0.002577,0.002250,0.249990,0,0);-ms-transform:matrix(0.286293,-0.002577,0.002250,0.249990,0,0);-webkit-transform:matrix(0.286293,-0.002577,0.002250,0.249990,0,0);}
.m31_c00262{transform:matrix(0.292253,-0.002630,0.002250,0.249990,0,0);-ms-transform:matrix(0.292253,-0.002630,0.002250,0.249990,0,0);-webkit-transform:matrix(0.292253,-0.002630,0.002250,0.249990,0,0);}
.m3e_c00262{transform:matrix(0.293338,-0.002640,0.002250,0.249990,0,0);-ms-transform:matrix(0.293338,-0.002640,0.002250,0.249990,0,0);-webkit-transform:matrix(0.293338,-0.002640,0.002250,0.249990,0,0);}
.m35_c00262{transform:matrix(0.297553,-0.002678,0.002250,0.249990,0,0);-ms-transform:matrix(0.297553,-0.002678,0.002250,0.249990,0,0);-webkit-transform:matrix(0.297553,-0.002678,0.002250,0.249990,0,0);}
.m2d_c00262{transform:matrix(0.300138,-0.002701,0.002250,0.249990,0,0);-ms-transform:matrix(0.300138,-0.002701,0.002250,0.249990,0,0);-webkit-transform:matrix(0.300138,-0.002701,0.002250,0.249990,0,0);}
.m2a_c00262{transform:matrix(0.300243,-0.002702,0.002250,0.249990,0,0);-ms-transform:matrix(0.300243,-0.002702,0.002250,0.249990,0,0);-webkit-transform:matrix(0.300243,-0.002702,0.002250,0.249990,0,0);}
.m51_c00262{transform:matrix(0.316425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316425,0.000000,0.000000,0.250000,0,0);}
.m29_c00262{transform:matrix(0.336661,-0.003030,0.002250,0.249990,0,0);-ms-transform:matrix(0.336661,-0.003030,0.002250,0.249990,0,0);-webkit-transform:matrix(0.336661,-0.003030,0.002250,0.249990,0,0);}
.m33_c00262{transform:matrix(0.340296,-0.003063,0.002250,0.249990,0,0);-ms-transform:matrix(0.340296,-0.003063,0.002250,0.249990,0,0);-webkit-transform:matrix(0.340296,-0.003063,0.002250,0.249990,0,0);}
.v0_c00262{vertical-align:0.000000px;}
.ls0_c00262{letter-spacing:0.000000px;}
.sc__c00262{text-shadow:none;}
.sc0_c00262{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__c00262{-webkit-text-stroke:0px transparent;}
.sc0_c00262{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00262{word-spacing:0.000000px;}
.fc0_c00262{color:transparent;}
.fs5_c00262{font-size:36.000000px;}
.fs3_c00262{font-size:66.002673px;}
.fs1_c00262{font-size:72.000000px;}
.fs2_c00262{font-size:72.002916px;}
.fs0_c00262{font-size:78.000000px;}
.fs4_c00262{font-size:84.000000px;}
.fs6_c00262{font-size:96.000000px;}
.y0_c00262{bottom:0.000000px;}
.y3e_c00262{bottom:107.190000px;}
.y3d_c00262{bottom:147.420000px;}
.y3c_c00262{bottom:168.480000px;}
.y3b_c00262{bottom:178.470000px;}
.y3a_c00262{bottom:842.722500px;}
.y2e_c00262{bottom:873.181500px;}
.y2f_c00262{bottom:874.073269px;}
.y30_c00262{bottom:874.379395px;}
.y31_c00262{bottom:875.062063px;}
.y32_c00262{bottom:875.761904px;}
.y33_c00262{bottom:876.160693px;}
.y34_c00262{bottom:876.850827px;}
.y35_c00262{bottom:877.446015px;}
.y36_c00262{bottom:877.740207px;}
.y37_c00262{bottom:878.044078px;}
.y38_c00262{bottom:878.925912px;}
.y39_c00262{bottom:879.324432px;}
.y21_c00262{bottom:904.769451px;}
.y22_c00262{bottom:905.219593px;}
.y23_c00262{bottom:905.383111px;}
.y24_c00262{bottom:906.184114px;}
.y25_c00262{bottom:906.618490px;}
.y26_c00262{bottom:906.876268px;}
.y27_c00262{bottom:907.937398px;}
.y28_c00262{bottom:908.192746px;}
.y29_c00262{bottom:908.724486px;}
.y2a_c00262{bottom:908.998650px;}
.y2b_c00262{bottom:909.783307px;}
.y2c_c00262{bottom:910.312711px;}
.y2d_c00262{bottom:910.480900px;}
.y18_c00262{bottom:936.091500px;}
.y19_c00262{bottom:936.881398px;}
.y1a_c00262{bottom:938.166598px;}
.y1b_c00262{bottom:938.463423px;}
.y1c_c00262{bottom:939.464569px;}
.y1d_c00262{bottom:940.042950px;}
.y1e_c00262{bottom:940.927456px;}
.y1f_c00262{bottom:941.233623px;}
.y20_c00262{bottom:941.726940px;}
.ye_c00262{bottom:968.221500px;}
.yf_c00262{bottom:968.463000px;}
.y10_c00262{bottom:968.835000px;}
.y11_c00262{bottom:969.069000px;}
.y12_c00262{bottom:969.912000px;}
.y13_c00262{bottom:970.452000px;}
.y14_c00262{bottom:970.690500px;}
.y15_c00262{bottom:971.466000px;}
.y16_c00262{bottom:972.075000px;}
.y17_c00262{bottom:972.375000px;}
.y3_c00262{bottom:999.811500px;}
.y4_c00262{bottom:1000.161000px;}
.y5_c00262{bottom:1000.513500px;}
.y6_c00262{bottom:1000.956000px;}
.y7_c00262{bottom:1001.556000px;}
.y8_c00262{bottom:1001.919000px;}
.y9_c00262{bottom:1002.964500px;}
.ya_c00262{bottom:1003.588500px;}
.yb_c00262{bottom:1003.854000px;}
.yc_c00262{bottom:1004.284500px;}
.yd_c00262{bottom:1004.820000px;}
.y2_c00262{bottom:1035.526500px;}
.y1_c00262{bottom:1102.006500px;}
.h7_c00262{height:36.000000px;}
.h5_c00262{height:66.002673px;}
.h3_c00262{height:72.000000px;}
.h4_c00262{height:72.002916px;}
.h2_c00262{height:78.000000px;}
.h6_c00262{height:84.000000px;}
.h8_c00262{height:96.000000px;}
.h0_c00262{height:1127.790000px;}
.h1_c00262{height:1128.000000px;}
.w0_c00262{width:915.000000px;}
.x0_c00262{left:0.000000px;}
.xb_c00262{left:146.694000px;}
.x33_c00262{left:147.960000px;}
.x37_c00262{left:156.870000px;}
.x13_c00262{left:180.457500px;}
.xc_c00262{left:190.437000px;}
.x34_c00262{left:192.510000px;}
.x20_c00262{left:203.175353px;}
.x38_c00262{left:210.060000px;}
.x21_c00262{left:223.677542px;}
.x35_c00262{left:225.180000px;}
.xd_c00262{left:234.463500px;}
.x28_c00262{left:245.824500px;}
.x2_c00262{left:255.690000px;}
.x14_c00262{left:267.136500px;}
.x29_c00262{left:279.838500px;}
.x3_c00262{left:289.440000px;}
.x39_c00262{left:310.230000px;}
.x22_c00262{left:323.845446px;}
.x36_c00262{left:326.700000px;}
.x3a_c00262{left:330.210000px;}
.x2a_c00262{left:355.690500px;}
.xe_c00262{left:364.858500px;}
.x1a_c00262{left:377.838000px;}
.x15_c00262{left:387.550500px;}
.x4_c00262{left:399.060000px;}
.x1_c00262{left:409.320000px;}
.x1b_c00262{left:410.818500px;}
.x3b_c00262{left:430.110000px;}
.x2b_c00262{left:433.450500px;}
.x16_c00262{left:464.770500px;}
.x2c_c00262{left:477.760500px;}
.x17_c00262{left:498.796500px;}
.x5_c00262{left:507.600000px;}
.x1c_c00262{left:522.057000px;}
.x3c_c00262{left:527.310000px;}
.xf_c00262{left:540.921000px;}
.x6_c00262{left:542.700000px;}
.x2d_c00262{left:554.442000px;}
.x3d_c00262{left:561.870000px;}
.x23_c00262{left:574.695687px;}
.x1d_c00262{left:586.321500px;}
.x18_c00262{left:609.495000px;}
.x10_c00262{left:618.922500px;}
.x2e_c00262{left:620.574000px;}
.x7_c00262{left:629.100000px;}
.x24_c00262{left:641.111781px;}
.x11_c00262{left:652.147500px;}
.x2f_c00262{left:653.262000px;}
.x8_c00262{left:663.390000px;}
.x25_c00262{left:675.408091px;}
.x3e_c00262{left:682.830000px;}
.x1e_c00262{left:684.600000px;}
.x30_c00262{left:687.025500px;}
.x19_c00262{left:696.409500px;}
.x12_c00262{left:705.889500px;}
.x1f_c00262{left:718.618500px;}
.x9_c00262{left:739.260000px;}
.xa_c00262{left:772.740000px;}
.x31_c00262{left:785.007000px;}
.x3f_c00262{left:804.600000px;}
.x32_c00262{left:829.287000px;}
.x26_c00262{left:839.583063px;}
.x27_c00262{left:860.604252px;}
.x40_c00262{left:871.560000px;}
.x41_c00262{left:912.330000px;}
.x42_c00262{left:913.410000px;}
@media print{
.v0_c00262{vertical-align:0.000000pt;}
.ls0_c00262{letter-spacing:0.000000pt;}
.ws0_c00262{word-spacing:0.000000pt;}
.fs5_c00262{font-size:32.000000pt;}
.fs3_c00262{font-size:58.669043pt;}
.fs1_c00262{font-size:64.000000pt;}
.fs2_c00262{font-size:64.002592pt;}
.fs0_c00262{font-size:69.333333pt;}
.fs4_c00262{font-size:74.666667pt;}
.fs6_c00262{font-size:85.333333pt;}
.y0_c00262{bottom:0.000000pt;}
.y3e_c00262{bottom:95.280000pt;}
.y3d_c00262{bottom:131.040000pt;}
.y3c_c00262{bottom:149.760000pt;}
.y3b_c00262{bottom:158.640000pt;}
.y3a_c00262{bottom:749.086667pt;}
.y2e_c00262{bottom:776.161333pt;}
.y2f_c00262{bottom:776.954017pt;}
.y30_c00262{bottom:777.226129pt;}
.y31_c00262{bottom:777.832945pt;}
.y32_c00262{bottom:778.455025pt;}
.y33_c00262{bottom:778.809505pt;}
.y34_c00262{bottom:779.422957pt;}
.y35_c00262{bottom:779.952013pt;}
.y36_c00262{bottom:780.213517pt;}
.y37_c00262{bottom:780.483625pt;}
.y38_c00262{bottom:781.267477pt;}
.y39_c00262{bottom:781.621717pt;}
.y21_c00262{bottom:804.239512pt;}
.y22_c00262{bottom:804.639639pt;}
.y23_c00262{bottom:804.784988pt;}
.y24_c00262{bottom:805.496991pt;}
.y25_c00262{bottom:805.883103pt;}
.y26_c00262{bottom:806.112239pt;}
.y27_c00262{bottom:807.055465pt;}
.y28_c00262{bottom:807.282441pt;}
.y29_c00262{bottom:807.755099pt;}
.y2a_c00262{bottom:807.998800pt;}
.y2b_c00262{bottom:808.696273pt;}
.y2c_c00262{bottom:809.166855pt;}
.y2d_c00262{bottom:809.316356pt;}
.y18_c00262{bottom:832.081333pt;}
.y19_c00262{bottom:832.783465pt;}
.y1a_c00262{bottom:833.925865pt;}
.y1b_c00262{bottom:834.189709pt;}
.y1c_c00262{bottom:835.079617pt;}
.y1d_c00262{bottom:835.593733pt;}
.y1e_c00262{bottom:836.379961pt;}
.y1f_c00262{bottom:836.652109pt;}
.y20_c00262{bottom:837.090613pt;}
.ye_c00262{bottom:860.641333pt;}
.yf_c00262{bottom:860.856000pt;}
.y10_c00262{bottom:861.186667pt;}
.y11_c00262{bottom:861.394667pt;}
.y12_c00262{bottom:862.144000pt;}
.y13_c00262{bottom:862.624000pt;}
.y14_c00262{bottom:862.836000pt;}
.y15_c00262{bottom:863.525333pt;}
.y16_c00262{bottom:864.066667pt;}
.y17_c00262{bottom:864.333333pt;}
.y3_c00262{bottom:888.721333pt;}
.y4_c00262{bottom:889.032000pt;}
.y5_c00262{bottom:889.345333pt;}
.y6_c00262{bottom:889.738667pt;}
.y7_c00262{bottom:890.272000pt;}
.y8_c00262{bottom:890.594667pt;}
.y9_c00262{bottom:891.524000pt;}
.ya_c00262{bottom:892.078667pt;}
.yb_c00262{bottom:892.314667pt;}
.yc_c00262{bottom:892.697333pt;}
.yd_c00262{bottom:893.173333pt;}
.y2_c00262{bottom:920.468000pt;}
.y1_c00262{bottom:979.561333pt;}
.h7_c00262{height:32.000000pt;}
.h5_c00262{height:58.669043pt;}
.h3_c00262{height:64.000000pt;}
.h4_c00262{height:64.002592pt;}
.h2_c00262{height:69.333333pt;}
.h6_c00262{height:74.666667pt;}
.h8_c00262{height:85.333333pt;}
.h0_c00262{height:1002.480000pt;}
.h1_c00262{height:1002.666667pt;}
.w0_c00262{width:813.333333pt;}
.x0_c00262{left:0.000000pt;}
.xb_c00262{left:130.394667pt;}
.x33_c00262{left:131.520000pt;}
.x37_c00262{left:139.440000pt;}
.x13_c00262{left:160.406667pt;}
.xc_c00262{left:169.277333pt;}
.x34_c00262{left:171.120000pt;}
.x20_c00262{left:180.600313pt;}
.x38_c00262{left:186.720000pt;}
.x21_c00262{left:198.824481pt;}
.x35_c00262{left:200.160000pt;}
.xd_c00262{left:208.412000pt;}
.x28_c00262{left:218.510667pt;}
.x2_c00262{left:227.280000pt;}
.x14_c00262{left:237.454667pt;}
.x29_c00262{left:248.745333pt;}
.x3_c00262{left:257.280000pt;}
.x39_c00262{left:275.760000pt;}
.x22_c00262{left:287.862619pt;}
.x36_c00262{left:290.400000pt;}
.x3a_c00262{left:293.520000pt;}
.x2a_c00262{left:316.169333pt;}
.xe_c00262{left:324.318667pt;}
.x1a_c00262{left:335.856000pt;}
.x15_c00262{left:344.489333pt;}
.x4_c00262{left:354.720000pt;}
.x1_c00262{left:363.840000pt;}
.x1b_c00262{left:365.172000pt;}
.x3b_c00262{left:382.320000pt;}
.x2b_c00262{left:385.289333pt;}
.x16_c00262{left:413.129333pt;}
.x2c_c00262{left:424.676000pt;}
.x17_c00262{left:443.374667pt;}
.x5_c00262{left:451.200000pt;}
.x1c_c00262{left:464.050667pt;}
.x3c_c00262{left:468.720000pt;}
.xf_c00262{left:480.818667pt;}
.x6_c00262{left:482.400000pt;}
.x2d_c00262{left:492.837333pt;}
.x3d_c00262{left:499.440000pt;}
.x23_c00262{left:510.840611pt;}
.x1d_c00262{left:521.174667pt;}
.x18_c00262{left:541.773333pt;}
.x10_c00262{left:550.153333pt;}
.x2e_c00262{left:551.621333pt;}
.x7_c00262{left:559.200000pt;}
.x24_c00262{left:569.877139pt;}
.x11_c00262{left:579.686667pt;}
.x2f_c00262{left:580.677333pt;}
.x8_c00262{left:589.680000pt;}
.x25_c00262{left:600.362748pt;}
.x3e_c00262{left:606.960000pt;}
.x1e_c00262{left:608.533333pt;}
.x30_c00262{left:610.689333pt;}
.x19_c00262{left:619.030667pt;}
.x12_c00262{left:627.457333pt;}
.x1f_c00262{left:638.772000pt;}
.x9_c00262{left:657.120000pt;}
.xa_c00262{left:686.880000pt;}
.x31_c00262{left:697.784000pt;}
.x3f_c00262{left:715.200000pt;}
.x32_c00262{left:737.144000pt;}
.x26_c00262{left:746.296056pt;}
.x27_c00262{left:764.981557pt;}
.x40_c00262{left:774.720000pt;}
.x41_c00262{left:810.960000pt;}
.x42_c00262{left:811.920000pt;}
}





/* 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_c00263 {
    display:none;
  }
  .loading-indicator_c00263.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00263 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_c00263 { 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_c00263" -> "#page-container .classname_c00263")
 */
.pf_c00263 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00263 { /* 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_c00263.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00263 { /* 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_c00263 { /* 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_c00263 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00263 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00263 {overflow:visible;}
  }
}
.c_c00263 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00263 { /* 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_c00263:after { /* webkit #35443 */
  content: '';
}
.t_c00263:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00263 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 */
}
.__c00263 { /* 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_c00263 { /* info for Javascript */
  display:none;
}
.l_c00263 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00263 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00263 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00263: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_c00263 {
    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_c00263.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00263.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_c00263 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00263{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00263;src:url('chunks/assets/font_74d7e987f08e4505b74f4479.woff2')format("woff");}.ff1_c00263{font-family:ff1_c00263;line-height:1.000000;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;}
.m24_c00263{transform:matrix(0.031819,-0.000223,0.001750,0.249994,0,0);-ms-transform:matrix(0.031819,-0.000223,0.001750,0.249994,0,0);-webkit-transform:matrix(0.031819,-0.000223,0.001750,0.249994,0,0);}
.md_c00263{transform:matrix(0.075465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.075465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.075465,0.000000,0.000000,0.250000,0,0);}
.m16_c00263{transform:matrix(0.076485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076485,0.000000,0.000000,0.250000,0,0);}
.ma_c00263{transform:matrix(0.089310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.089310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.089310,0.000000,0.000000,0.250000,0,0);}
.m14_c00263{transform:matrix(0.135830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135830,0.000000,0.000000,0.250000,0,0);}
.m1f_c00263{transform:matrix(0.173661,-0.001216,0.001750,0.249994,0,0);-ms-transform:matrix(0.173661,-0.001216,0.001750,0.249994,0,0);-webkit-transform:matrix(0.173661,-0.001216,0.001750,0.249994,0,0);}
.m28_c00263{transform:matrix(0.199280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199280,0.000000,0.000000,0.250000,0,0);}
.m8_c00263{transform:matrix(0.201580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201580,0.000000,0.000000,0.250000,0,0);}
.m5_c00263{transform:matrix(0.222800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222800,0.000000,0.000000,0.250000,0,0);}
.m6_c00263{transform:matrix(0.242155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242155,0.000000,0.000000,0.250000,0,0);}
.m9_c00263{transform:matrix(0.247955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247955,0.000000,0.000000,0.250000,0,0);}
.m29_c00263{transform:matrix(0.276715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276715,0.000000,0.000000,0.250000,0,0);}
.m20_c00263{transform:matrix(0.279628,-0.001957,0.001750,0.249994,0,0);-ms-transform:matrix(0.279628,-0.001957,0.001750,0.249994,0,0);-webkit-transform:matrix(0.279628,-0.001957,0.001750,0.249994,0,0);}
.mb_c00263{transform:matrix(0.288490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288490,0.000000,0.000000,0.250000,0,0);}
.m4_c00263{transform:matrix(0.290795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290795,0.000000,0.000000,0.250000,0,0);}
.m10_c00263{transform:matrix(0.312780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312780,0.000000,0.000000,0.250000,0,0);}
.m17_c00263{transform:matrix(0.342527,-0.002398,0.001750,0.249994,0,0);-ms-transform:matrix(0.342527,-0.002398,0.001750,0.249994,0,0);-webkit-transform:matrix(0.342527,-0.002398,0.001750,0.249994,0,0);}
.m7_c00263{transform:matrix(0.346445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346445,0.000000,0.000000,0.250000,0,0);}
.m1_c00263{transform:matrix(0.376565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376565,0.000000,0.000000,0.250000,0,0);}
.m1c_c00263{transform:matrix(0.378896,-0.002652,0.001750,0.249994,0,0);-ms-transform:matrix(0.378896,-0.002652,0.001750,0.249994,0,0);-webkit-transform:matrix(0.378896,-0.002652,0.001750,0.249994,0,0);}
.m11_c00263{transform:matrix(0.396350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396350,0.000000,0.000000,0.250000,0,0);}
.m0_c00263{transform:matrix(0.405380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405380,0.000000,0.000000,0.250000,0,0);}
.m19_c00263{transform:matrix(0.433714,-0.003036,0.001750,0.249994,0,0);-ms-transform:matrix(0.433714,-0.003036,0.001750,0.249994,0,0);-webkit-transform:matrix(0.433714,-0.003036,0.001750,0.249994,0,0);}
.m1a_c00263{transform:matrix(0.435709,-0.003050,0.001750,0.249994,0,0);-ms-transform:matrix(0.435709,-0.003050,0.001750,0.249994,0,0);-webkit-transform:matrix(0.435709,-0.003050,0.001750,0.249994,0,0);}
.mc_c00263{transform:matrix(0.463835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463835,0.000000,0.000000,0.250000,0,0);}
.m15_c00263{transform:matrix(0.510220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510220,0.000000,0.000000,0.250000,0,0);}
.m3_c00263{transform:matrix(0.525000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525000,0.000000,0.000000,0.250000,0,0);}
.m2_c00263{transform:matrix(0.578750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578750,0.000000,0.000000,0.250000,0,0);}
.mf_c00263{transform:matrix(0.602435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602435,0.000000,0.000000,0.250000,0,0);}
.m18_c00263{transform:matrix(0.603895,-0.004227,0.001750,0.249994,0,0);-ms-transform:matrix(0.603895,-0.004227,0.001750,0.249994,0,0);-webkit-transform:matrix(0.603895,-0.004227,0.001750,0.249994,0,0);}
.m12_c00263{transform:matrix(0.608410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608410,0.000000,0.000000,0.250000,0,0);}
.m1d_c00263{transform:matrix(0.615075,-0.004306,0.001750,0.249994,0,0);-ms-transform:matrix(0.615075,-0.004306,0.001750,0.249994,0,0);-webkit-transform:matrix(0.615075,-0.004306,0.001750,0.249994,0,0);}
.m26_c00263{transform:matrix(0.673355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.673355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.673355,0.000000,0.000000,0.250000,0,0);}
.me_c00263{transform:matrix(0.683385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.683385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.683385,0.000000,0.000000,0.250000,0,0);}
.m1e_c00263{transform:matrix(0.752672,-0.005269,0.001750,0.249994,0,0);-ms-transform:matrix(0.752672,-0.005269,0.001750,0.249994,0,0);-webkit-transform:matrix(0.752672,-0.005269,0.001750,0.249994,0,0);}
.m25_c00263{transform:matrix(0.759020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.759020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.759020,0.000000,0.000000,0.250000,0,0);}
.m27_c00263{transform:matrix(0.950410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.950410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.950410,0.000000,0.000000,0.250000,0,0);}
.m21_c00263{transform:matrix(0.964881,-0.006754,0.001750,0.249994,0,0);-ms-transform:matrix(0.964881,-0.006754,0.001750,0.249994,0,0);-webkit-transform:matrix(0.964881,-0.006754,0.001750,0.249994,0,0);}
.m1b_c00263{transform:matrix(1.019545,-0.007137,0.001750,0.249994,0,0);-ms-transform:matrix(1.019545,-0.007137,0.001750,0.249994,0,0);-webkit-transform:matrix(1.019545,-0.007137,0.001750,0.249994,0,0);}
.m22_c00263{transform:matrix(1.196601,-0.008376,0.001750,0.249994,0,0);-ms-transform:matrix(1.196601,-0.008376,0.001750,0.249994,0,0);-webkit-transform:matrix(1.196601,-0.008376,0.001750,0.249994,0,0);}
.m13_c00263{transform:matrix(1.226155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.226155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.226155,0.000000,0.000000,0.250000,0,0);}
.m23_c00263{transform:matrix(2.247835,-0.015735,0.001750,0.249994,0,0);-ms-transform:matrix(2.247835,-0.015735,0.001750,0.249994,0,0);-webkit-transform:matrix(2.247835,-0.015735,0.001750,0.249994,0,0);}
.v0_c00263{vertical-align:0.000000px;}
.ls0_c00263{letter-spacing:0.000000px;}
.sc__c00263{text-shadow:none;}
.sc0_c00263{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__c00263{-webkit-text-stroke:0px transparent;}
.sc0_c00263{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00263{word-spacing:0.000000px;}
.fc0_c00263{color:transparent;}
.fs1_c00263{font-size:18.000000px;}
.fs5_c00263{font-size:24.000000px;}
.fs7_c00263{font-size:24.000588px;}
.fs0_c00263{font-size:42.000000px;}
.fs6_c00263{font-size:42.001029px;}
.fs3_c00263{font-size:72.000000px;}
.fs4_c00263{font-size:84.000000px;}
.fs2_c00263{font-size:90.000000px;}
.y0_c00263{bottom:0.000000px;}
.y14_c00263{bottom:852.389197px;}
.y15_c00263{bottom:853.371851px;}
.y17_c00263{bottom:854.010000px;}
.y16_c00263{bottom:857.971383px;}
.y9_c00263{bottom:858.600000px;}
.ya_c00263{bottom:858.821056px;}
.yb_c00263{bottom:859.046040px;}
.yc_c00263{bottom:859.518624px;}
.yd_c00263{bottom:859.933584px;}
.ye_c00263{bottom:860.055206px;}
.yf_c00263{bottom:860.363296px;}
.y10_c00263{bottom:860.901999px;}
.y11_c00263{bottom:861.483751px;}
.y12_c00263{bottom:861.673161px;}
.y13_c00263{bottom:861.967476px;}
.y8_c00263{bottom:885.151500px;}
.y7_c00263{bottom:890.469000px;}
.y6_c00263{bottom:895.167000px;}
.y5_c00263{bottom:920.698500px;}
.y4_c00263{bottom:952.261500px;}
.y3_c00263{bottom:983.932500px;}
.y2_c00263{bottom:994.140000px;}
.y1_c00263{bottom:1017.084000px;}
.h3_c00263{height:18.000000px;}
.h7_c00263{height:24.000000px;}
.h9_c00263{height:24.000588px;}
.h2_c00263{height:42.000000px;}
.h8_c00263{height:42.001029px;}
.h5_c00263{height:72.000000px;}
.h6_c00263{height:84.000000px;}
.h4_c00263{height:90.000000px;}
.h0_c00263{height:1154.790000px;}
.h1_c00263{height:1155.000000px;}
.w0_c00263{width:915.000000px;}
.x0_c00263{left:0.000000px;}
.x16_c00263{left:207.973500px;}
.x21_c00263{left:222.260173px;}
.x17_c00263{left:239.553000px;}
.x18_c00263{left:271.693500px;}
.x22_c00263{left:311.636674px;}
.x19_c00263{left:339.205500px;}
.x9_c00263{left:374.490000px;}
.xa_c00263{left:382.320000px;}
.x5_c00263{left:392.580000px;}
.xb_c00263{left:396.360000px;}
.x1a_c00263{left:398.485500px;}
.x1b_c00263{left:415.860000px;}
.x7_c00263{left:427.680000px;}
.x1_c00263{left:434.430000px;}
.x4_c00263{left:450.090000px;}
.x1c_c00263{left:459.873000px;}
.x6_c00263{left:480.060000px;}
.x2_c00263{left:489.780000px;}
.x8_c00263{left:502.200000px;}
.xc_c00263{left:520.830000px;}
.x10_c00263{left:522.180000px;}
.x3_c00263{left:524.610000px;}
.x1d_c00263{left:536.830500px;}
.xd_c00263{left:539.730000px;}
.x24_c00263{left:563.490000px;}
.x11_c00263{left:568.080000px;}
.x25_c00263{left:581.850000px;}
.x12_c00263{left:585.360000px;}
.xe_c00263{left:605.610000px;}
.x26_c00263{left:617.760000px;}
.x1e_c00263{left:619.938000px;}
.x13_c00263{left:625.860000px;}
.xf_c00263{left:632.880000px;}
.x14_c00263{left:639.090000px;}
.x27_c00263{left:643.410000px;}
.x1f_c00263{left:646.996500px;}
.x15_c00263{left:654.210000px;}
.x28_c00263{left:666.900000px;}
.x20_c00263{left:689.041500px;}
.x23_c00263{left:729.772467px;}
@media print{
.v0_c00263{vertical-align:0.000000pt;}
.ls0_c00263{letter-spacing:0.000000pt;}
.ws0_c00263{word-spacing:0.000000pt;}
.fs1_c00263{font-size:16.000000pt;}
.fs5_c00263{font-size:21.333333pt;}
.fs7_c00263{font-size:21.333856pt;}
.fs0_c00263{font-size:37.333333pt;}
.fs6_c00263{font-size:37.334248pt;}
.fs3_c00263{font-size:64.000000pt;}
.fs4_c00263{font-size:74.666667pt;}
.fs2_c00263{font-size:80.000000pt;}
.y0_c00263{bottom:0.000000pt;}
.y14_c00263{bottom:757.679287pt;}
.y15_c00263{bottom:758.552756pt;}
.y17_c00263{bottom:759.120000pt;}
.y16_c00263{bottom:762.641229pt;}
.y9_c00263{bottom:763.200000pt;}
.ya_c00263{bottom:763.396495pt;}
.yb_c00263{bottom:763.596480pt;}
.yc_c00263{bottom:764.016555pt;}
.yd_c00263{bottom:764.385408pt;}
.ye_c00263{bottom:764.493516pt;}
.yf_c00263{bottom:764.767375pt;}
.y10_c00263{bottom:765.246221pt;}
.y11_c00263{bottom:765.763335pt;}
.y12_c00263{bottom:765.931699pt;}
.y13_c00263{bottom:766.193312pt;}
.y8_c00263{bottom:786.801333pt;}
.y7_c00263{bottom:791.528000pt;}
.y6_c00263{bottom:795.704000pt;}
.y5_c00263{bottom:818.398667pt;}
.y4_c00263{bottom:846.454667pt;}
.y3_c00263{bottom:874.606667pt;}
.y2_c00263{bottom:883.680000pt;}
.y1_c00263{bottom:904.074667pt;}
.h3_c00263{height:16.000000pt;}
.h7_c00263{height:21.333333pt;}
.h9_c00263{height:21.333856pt;}
.h2_c00263{height:37.333333pt;}
.h8_c00263{height:37.334248pt;}
.h5_c00263{height:64.000000pt;}
.h6_c00263{height:74.666667pt;}
.h4_c00263{height:80.000000pt;}
.h0_c00263{height:1026.480000pt;}
.h1_c00263{height:1026.666667pt;}
.w0_c00263{width:813.333333pt;}
.x0_c00263{left:0.000000pt;}
.x16_c00263{left:184.865333pt;}
.x21_c00263{left:197.564599pt;}
.x17_c00263{left:212.936000pt;}
.x18_c00263{left:241.505333pt;}
.x22_c00263{left:277.010377pt;}
.x19_c00263{left:301.516000pt;}
.x9_c00263{left:332.880000pt;}
.xa_c00263{left:339.840000pt;}
.x5_c00263{left:348.960000pt;}
.xb_c00263{left:352.320000pt;}
.x1a_c00263{left:354.209333pt;}
.x1b_c00263{left:369.653333pt;}
.x7_c00263{left:380.160000pt;}
.x1_c00263{left:386.160000pt;}
.x4_c00263{left:400.080000pt;}
.x1c_c00263{left:408.776000pt;}
.x6_c00263{left:426.720000pt;}
.x2_c00263{left:435.360000pt;}
.x8_c00263{left:446.400000pt;}
.xc_c00263{left:462.960000pt;}
.x10_c00263{left:464.160000pt;}
.x3_c00263{left:466.320000pt;}
.x1d_c00263{left:477.182667pt;}
.xd_c00263{left:479.760000pt;}
.x24_c00263{left:500.880000pt;}
.x11_c00263{left:504.960000pt;}
.x25_c00263{left:517.200000pt;}
.x12_c00263{left:520.320000pt;}
.xe_c00263{left:538.320000pt;}
.x26_c00263{left:549.120000pt;}
.x1e_c00263{left:551.056000pt;}
.x13_c00263{left:556.320000pt;}
.xf_c00263{left:562.560000pt;}
.x14_c00263{left:568.080000pt;}
.x27_c00263{left:571.920000pt;}
.x1f_c00263{left:575.108000pt;}
.x15_c00263{left:581.520000pt;}
.x28_c00263{left:592.800000pt;}
.x20_c00263{left:612.481333pt;}
.x23_c00263{left:648.686637pt;}
}





/* 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_c00264 {
    display:none;
  }
  .loading-indicator_c00264.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00264 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_c00264 { 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_c00264" -> "#page-container .classname_c00264")
 */
.pf_c00264 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00264 { /* 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_c00264.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00264 { /* 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_c00264 { /* 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_c00264 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00264 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00264 {overflow:visible;}
  }
}
.c_c00264 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00264 { /* 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_c00264:after { /* webkit #35443 */
  content: '';
}
.t_c00264:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00264 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 */
}
.__c00264 { /* 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_c00264 { /* info for Javascript */
  display:none;
}
.l_c00264 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00264 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00264 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00264: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_c00264 {
    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_c00264.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00264.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_c00264 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00264{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00264;src:url('chunks/assets/font_c605e72f209fc835e906f064.woff2')format("woff");}.ff1_c00264{font-family:ff1_c00264;line-height:1.000000;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;}
.m113_c00264{transform:matrix(0.014685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.014685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.014685,0.000000,0.000000,0.250000,0,0);}
.m6_c00264{transform:matrix(0.118515,-0.001896,0.003999,0.249968,0,0);-ms-transform:matrix(0.118515,-0.001896,0.003999,0.249968,0,0);-webkit-transform:matrix(0.118515,-0.001896,0.003999,0.249968,0,0);}
.m167_c00264{transform:matrix(0.119790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119790,0.000000,0.000000,0.250000,0,0);}
.m48_c00264{transform:matrix(0.129420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129420,0.000000,0.000000,0.250000,0,0);}
.m105_c00264{transform:matrix(0.153060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153060,0.000000,0.000000,0.250000,0,0);}
.m104_c00264{transform:matrix(0.154425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154425,0.000000,0.000000,0.250000,0,0);}
.m109_c00264{transform:matrix(0.164120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164120,0.000000,0.000000,0.250000,0,0);}
.m145_c00264{transform:matrix(0.164527,0.000987,-0.001500,0.249996,0,0);-ms-transform:matrix(0.164527,0.000987,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.164527,0.000987,-0.001500,0.249996,0,0);}
.m102_c00264{transform:matrix(0.164865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164865,0.000000,0.000000,0.250000,0,0);}
.m148_c00264{transform:matrix(0.166897,0.001001,-0.001500,0.249996,0,0);-ms-transform:matrix(0.166897,0.001001,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.166897,0.001001,-0.001500,0.249996,0,0);}
.m0_c00264{transform:matrix(0.167915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167915,0.000000,0.000000,0.250000,0,0);}
.m136_c00264{transform:matrix(0.167920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167920,0.000000,0.000000,0.250000,0,0);}
.m106_c00264{transform:matrix(0.168855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168855,0.000000,0.000000,0.250000,0,0);}
.mff_c00264{transform:matrix(0.170140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170140,0.000000,0.000000,0.250000,0,0);}
.m147_c00264{transform:matrix(0.171172,0.001027,-0.001500,0.249996,0,0);-ms-transform:matrix(0.171172,0.001027,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.171172,0.001027,-0.001500,0.249996,0,0);}
.m14d_c00264{transform:matrix(0.174632,0.001048,-0.001500,0.249996,0,0);-ms-transform:matrix(0.174632,0.001048,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.174632,0.001048,-0.001500,0.249996,0,0);}
.m101_c00264{transform:matrix(0.175560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175560,0.000000,0.000000,0.250000,0,0);}
.m100_c00264{transform:matrix(0.175690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175690,0.000000,0.000000,0.250000,0,0);}
.m103_c00264{transform:matrix(0.178045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178045,0.000000,0.000000,0.250000,0,0);}
.m108_c00264{transform:matrix(0.178595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178595,0.000000,0.000000,0.250000,0,0);}
.m138_c00264{transform:matrix(0.178645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178645,0.000000,0.000000,0.250000,0,0);}
.m14a_c00264{transform:matrix(0.178662,0.001072,-0.001500,0.249996,0,0);-ms-transform:matrix(0.178662,0.001072,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.178662,0.001072,-0.001500,0.249996,0,0);}
.m5d_c00264{transform:matrix(0.179685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179685,0.000000,0.000000,0.250000,0,0);}
.m44_c00264{transform:matrix(0.179800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179800,0.000000,0.000000,0.250000,0,0);}
.m134_c00264{transform:matrix(0.180100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180100,0.000000,0.000000,0.250000,0,0);}
.m107_c00264{transform:matrix(0.181900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181900,0.000000,0.000000,0.250000,0,0);}
.m60_c00264{transform:matrix(0.182340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182340,0.000000,0.000000,0.250000,0,0);}
.m149_c00264{transform:matrix(0.182547,0.001095,-0.001500,0.249996,0,0);-ms-transform:matrix(0.182547,0.001095,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.182547,0.001095,-0.001500,0.249996,0,0);}
.m2b_c00264{transform:matrix(0.183445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183445,0.000000,0.000000,0.250000,0,0);}
.m132_c00264{transform:matrix(0.183675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183675,0.000000,0.000000,0.250000,0,0);}
.m45_c00264{transform:matrix(0.184715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184715,0.000000,0.000000,0.250000,0,0);}
.m2_c00264{transform:matrix(0.187950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187950,0.000000,0.000000,0.250000,0,0);}
.m49_c00264{transform:matrix(0.188670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188670,0.000000,0.000000,0.250000,0,0);}
.m3f_c00264{transform:matrix(0.188800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188800,0.000000,0.000000,0.250000,0,0);}
.m146_c00264{transform:matrix(0.188942,0.001134,-0.001500,0.249996,0,0);-ms-transform:matrix(0.188942,0.001134,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.188942,0.001134,-0.001500,0.249996,0,0);}
.m14c_c00264{transform:matrix(0.189317,0.001136,-0.001500,0.249996,0,0);-ms-transform:matrix(0.189317,0.001136,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.189317,0.001136,-0.001500,0.249996,0,0);}
.m3_c00264{transform:matrix(0.189621,-0.003034,0.003999,0.249968,0,0);-ms-transform:matrix(0.189621,-0.003034,0.003999,0.249968,0,0);-webkit-transform:matrix(0.189621,-0.003034,0.003999,0.249968,0,0);}
.m14b_c00264{transform:matrix(0.189692,0.001138,-0.001500,0.249996,0,0);-ms-transform:matrix(0.189692,0.001138,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.189692,0.001138,-0.001500,0.249996,0,0);}
.m13a_c00264{transform:matrix(0.190590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190590,0.000000,0.000000,0.250000,0,0);}
.m8f_c00264{transform:matrix(0.191170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191170,0.000000,0.000000,0.250000,0,0);}
.m14e_c00264{transform:matrix(0.193052,0.001158,-0.001500,0.249996,0,0);-ms-transform:matrix(0.193052,0.001158,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.193052,0.001158,-0.001500,0.249996,0,0);}
.m14f_c00264{transform:matrix(0.193347,0.001160,-0.001500,0.249996,0,0);-ms-transform:matrix(0.193347,0.001160,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.193347,0.001160,-0.001500,0.249996,0,0);}
.me2_c00264{transform:matrix(0.193620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193620,0.000000,0.000000,0.250000,0,0);}
.m13e_c00264{transform:matrix(0.193670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193670,0.000000,0.000000,0.250000,0,0);}
.m143_c00264{transform:matrix(0.194330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194330,0.000000,0.000000,0.250000,0,0);}
.m5e_c00264{transform:matrix(0.194435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194435,0.000000,0.000000,0.250000,0,0);}
.m47_c00264{transform:matrix(0.198100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198100,0.000000,0.000000,0.250000,0,0);}
.m41_c00264{transform:matrix(0.198380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198380,0.000000,0.000000,0.250000,0,0);}
.m8e_c00264{transform:matrix(0.199280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199280,0.000000,0.000000,0.250000,0,0);}
.m37_c00264{transform:matrix(0.199525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199525,0.000000,0.000000,0.250000,0,0);}
.ma7_c00264{transform:matrix(0.200710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200710,0.000000,0.000000,0.250000,0,0);}
.mb_c00264{transform:matrix(0.200950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200950,0.000000,0.000000,0.250000,0,0);}
.m4b_c00264{transform:matrix(0.202380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202380,0.000000,0.000000,0.250000,0,0);}
.m9e_c00264{transform:matrix(0.202665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202665,0.000000,0.000000,0.250000,0,0);}
.m140_c00264{transform:matrix(0.203275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203275,0.000000,0.000000,0.250000,0,0);}
.m141_c00264{transform:matrix(0.204170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204170,0.000000,0.000000,0.250000,0,0);}
.m13c_c00264{transform:matrix(0.204795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204795,0.000000,0.000000,0.250000,0,0);}
.m15b_c00264{transform:matrix(0.204846,0.001229,-0.001500,0.249996,0,0);-ms-transform:matrix(0.204846,0.001229,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.204846,0.001229,-0.001500,0.249996,0,0);}
.me0_c00264{transform:matrix(0.205110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205110,0.000000,0.000000,0.250000,0,0);}
.m13d_c00264{transform:matrix(0.206075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206075,0.000000,0.000000,0.250000,0,0);}
.m5a_c00264{transform:matrix(0.206665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206665,0.000000,0.000000,0.250000,0,0);}
.mf0_c00264{transform:matrix(0.206830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206830,0.000000,0.000000,0.250000,0,0);}
.mb6_c00264{transform:matrix(0.207395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207395,0.000000,0.000000,0.250000,0,0);}
.me3_c00264{transform:matrix(0.207875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207875,0.000000,0.000000,0.250000,0,0);}
.m53_c00264{transform:matrix(0.208065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208065,0.000000,0.000000,0.250000,0,0);}
.ma3_c00264{transform:matrix(0.208605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208605,0.000000,0.000000,0.250000,0,0);}
.mb4_c00264{transform:matrix(0.208715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208715,0.000000,0.000000,0.250000,0,0);}
.m68_c00264{transform:matrix(0.209255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209255,0.000000,0.000000,0.250000,0,0);}
.m10f_c00264{transform:matrix(0.210050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210050,0.000000,0.000000,0.250000,0,0);}
.m161_c00264{transform:matrix(0.210301,0.001262,-0.001500,0.249996,0,0);-ms-transform:matrix(0.210301,0.001262,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.210301,0.001262,-0.001500,0.249996,0,0);}
.m78_c00264{transform:matrix(0.210555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210555,0.000000,0.000000,0.250000,0,0);}
.mab_c00264{transform:matrix(0.210695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210695,0.000000,0.000000,0.250000,0,0);}
.me6_c00264{transform:matrix(0.210830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210830,0.000000,0.000000,0.250000,0,0);}
.m46_c00264{transform:matrix(0.211045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211045,0.000000,0.000000,0.250000,0,0);}
.m10a_c00264{transform:matrix(0.211115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211115,0.000000,0.000000,0.250000,0,0);}
.m7_c00264{transform:matrix(0.211870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211870,0.000000,0.000000,0.250000,0,0);}
.m9d_c00264{transform:matrix(0.212300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212300,0.000000,0.000000,0.250000,0,0);}
.m135_c00264{transform:matrix(0.212565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212565,0.000000,0.000000,0.250000,0,0);}
.m91_c00264{transform:matrix(0.212610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212610,0.000000,0.000000,0.250000,0,0);}
.m142_c00264{transform:matrix(0.213320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213320,0.000000,0.000000,0.250000,0,0);}
.m43_c00264{transform:matrix(0.213770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213770,0.000000,0.000000,0.250000,0,0);}
.m40_c00264{transform:matrix(0.214440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214440,0.000000,0.000000,0.250000,0,0);}
.m76_c00264{transform:matrix(0.214630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214630,0.000000,0.000000,0.250000,0,0);}
.mee_c00264{transform:matrix(0.214710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214710,0.000000,0.000000,0.250000,0,0);}
.m71_c00264{transform:matrix(0.214725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214725,0.000000,0.000000,0.250000,0,0);}
.m157_c00264{transform:matrix(0.214956,0.001290,-0.001500,0.249996,0,0);-ms-transform:matrix(0.214956,0.001290,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.214956,0.001290,-0.001500,0.249996,0,0);}
.mce_c00264{transform:matrix(0.215060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215060,0.000000,0.000000,0.250000,0,0);}
.m62_c00264{transform:matrix(0.215075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215075,0.000000,0.000000,0.250000,0,0);}
.m4a_c00264{transform:matrix(0.215605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215605,0.000000,0.000000,0.250000,0,0);}
.m4d_c00264{transform:matrix(0.215650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215650,0.000000,0.000000,0.250000,0,0);}
.mac_c00264{transform:matrix(0.215715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215715,0.000000,0.000000,0.250000,0,0);}
.m67_c00264{transform:matrix(0.215960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215960,0.000000,0.000000,0.250000,0,0);}
.m155_c00264{transform:matrix(0.216036,0.001296,-0.001500,0.249996,0,0);-ms-transform:matrix(0.216036,0.001296,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.216036,0.001296,-0.001500,0.249996,0,0);}
.m12f_c00264{transform:matrix(0.216080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216080,0.000000,0.000000,0.250000,0,0);}
.m4e_c00264{transform:matrix(0.216205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216205,0.000000,0.000000,0.250000,0,0);}
.ma0_c00264{transform:matrix(0.216415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216415,0.000000,0.000000,0.250000,0,0);}
.me_c00264{transform:matrix(0.216725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216725,0.000000,0.000000,0.250000,0,0);}
.m9a_c00264{transform:matrix(0.217035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217035,0.000000,0.000000,0.250000,0,0);}
.m5_c00264{transform:matrix(0.217832,-0.003485,0.003999,0.249968,0,0);-ms-transform:matrix(0.217832,-0.003485,0.003999,0.249968,0,0);-webkit-transform:matrix(0.217832,-0.003485,0.003999,0.249968,0,0);}
.m13f_c00264{transform:matrix(0.218060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218060,0.000000,0.000000,0.250000,0,0);}
.m133_c00264{transform:matrix(0.218165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218165,0.000000,0.000000,0.250000,0,0);}
.m92_c00264{transform:matrix(0.218925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218925,0.000000,0.000000,0.250000,0,0);}
.m4_c00264{transform:matrix(0.219427,-0.003511,0.003999,0.249968,0,0);-ms-transform:matrix(0.219427,-0.003511,0.003999,0.249968,0,0);-webkit-transform:matrix(0.219427,-0.003511,0.003999,0.249968,0,0);}
.m81_c00264{transform:matrix(0.219535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219535,0.000000,0.000000,0.250000,0,0);}
.m28_c00264{transform:matrix(0.219545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219545,0.000000,0.000000,0.250000,0,0);}
.m131_c00264{transform:matrix(0.219595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219595,0.000000,0.000000,0.250000,0,0);}
.mb9_c00264{transform:matrix(0.219670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219670,0.000000,0.000000,0.250000,0,0);}
.mdf_c00264{transform:matrix(0.219705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219705,0.000000,0.000000,0.250000,0,0);}
.m1d_c00264{transform:matrix(0.220300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220300,0.000000,0.000000,0.250000,0,0);}
.mbf_c00264{transform:matrix(0.220480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220480,0.000000,0.000000,0.250000,0,0);}
.m11a_c00264{transform:matrix(0.220625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220625,0.000000,0.000000,0.250000,0,0);}
.m137_c00264{transform:matrix(0.220950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220950,0.000000,0.000000,0.250000,0,0);}
.maa_c00264{transform:matrix(0.221080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221080,0.000000,0.000000,0.250000,0,0);}
.m2f_c00264{transform:matrix(0.221375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221375,0.000000,0.000000,0.250000,0,0);}
.m7c_c00264{transform:matrix(0.221455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221455,0.000000,0.000000,0.250000,0,0);}
.md9_c00264{transform:matrix(0.221470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221470,0.000000,0.000000,0.250000,0,0);}
.m130_c00264{transform:matrix(0.222510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222510,0.000000,0.000000,0.250000,0,0);}
.m66_c00264{transform:matrix(0.222995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222995,0.000000,0.000000,0.250000,0,0);}
.me7_c00264{transform:matrix(0.223215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223215,0.000000,0.000000,0.250000,0,0);}
.ma2_c00264{transform:matrix(0.223585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223585,0.000000,0.000000,0.250000,0,0);}
.m1a_c00264{transform:matrix(0.223605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223605,0.000000,0.000000,0.250000,0,0);}
.m65_c00264{transform:matrix(0.223895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223895,0.000000,0.000000,0.250000,0,0);}
.mcb_c00264{transform:matrix(0.224035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224035,0.000000,0.000000,0.250000,0,0);}
.m139_c00264{transform:matrix(0.224055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224055,0.000000,0.000000,0.250000,0,0);}
.m8c_c00264{transform:matrix(0.224310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224310,0.000000,0.000000,0.250000,0,0);}
.m116_c00264{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m13b_c00264{transform:matrix(0.224980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224980,0.000000,0.000000,0.250000,0,0);}
.mb1_c00264{transform:matrix(0.224985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224985,0.000000,0.000000,0.250000,0,0);}
.mc9_c00264{transform:matrix(0.225325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225325,0.000000,0.000000,0.250000,0,0);}
.m4f_c00264{transform:matrix(0.225815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225815,0.000000,0.000000,0.250000,0,0);}
.med_c00264{transform:matrix(0.225885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225885,0.000000,0.000000,0.250000,0,0);}
.m15d_c00264{transform:matrix(0.226061,0.001356,-0.001500,0.249996,0,0);-ms-transform:matrix(0.226061,0.001356,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.226061,0.001356,-0.001500,0.249996,0,0);}
.m32_c00264{transform:matrix(0.226110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226110,0.000000,0.000000,0.250000,0,0);}
.m127_c00264{transform:matrix(0.226175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226175,0.000000,0.000000,0.250000,0,0);}
.ma4_c00264{transform:matrix(0.226205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226205,0.000000,0.000000,0.250000,0,0);}
.mdd_c00264{transform:matrix(0.226385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226385,0.000000,0.000000,0.250000,0,0);}
.m9_c00264{transform:matrix(0.226575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226575,0.000000,0.000000,0.250000,0,0);}
.ma_c00264{transform:matrix(0.227050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227050,0.000000,0.000000,0.250000,0,0);}
.m58_c00264{transform:matrix(0.227095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227095,0.000000,0.000000,0.250000,0,0);}
.m84_c00264{transform:matrix(0.227245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227245,0.000000,0.000000,0.250000,0,0);}
.m12e_c00264{transform:matrix(0.227540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227540,0.000000,0.000000,0.250000,0,0);}
.m97_c00264{transform:matrix(0.227625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227625,0.000000,0.000000,0.250000,0,0);}
.m42_c00264{transform:matrix(0.227645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227645,0.000000,0.000000,0.250000,0,0);}
.m11c_c00264{transform:matrix(0.227855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227855,0.000000,0.000000,0.250000,0,0);}
.m9f_c00264{transform:matrix(0.228135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228135,0.000000,0.000000,0.250000,0,0);}
.m17_c00264{transform:matrix(0.228160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228160,0.000000,0.000000,0.250000,0,0);}
.m56_c00264{transform:matrix(0.228510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228510,0.000000,0.000000,0.250000,0,0);}
.mfc_c00264{transform:matrix(0.228575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228575,0.000000,0.000000,0.250000,0,0);}
.mf6_c00264{transform:matrix(0.228630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228630,0.000000,0.000000,0.250000,0,0);}
.m5f_c00264{transform:matrix(0.228810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228810,0.000000,0.000000,0.250000,0,0);}
.m1_c00264{transform:matrix(0.229020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229020,0.000000,0.000000,0.250000,0,0);}
.m7d_c00264{transform:matrix(0.229195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229195,0.000000,0.000000,0.250000,0,0);}
.m79_c00264{transform:matrix(0.229930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229930,0.000000,0.000000,0.250000,0,0);}
.m35_c00264{transform:matrix(0.230340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230340,0.000000,0.000000,0.250000,0,0);}
.m16_c00264{transform:matrix(0.230870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230870,0.000000,0.000000,0.250000,0,0);}
.mae_c00264{transform:matrix(0.231060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231060,0.000000,0.000000,0.250000,0,0);}
.maf_c00264{transform:matrix(0.231495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231495,0.000000,0.000000,0.250000,0,0);}
.m6b_c00264{transform:matrix(0.231620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231620,0.000000,0.000000,0.250000,0,0);}
.m12_c00264{transform:matrix(0.231625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231625,0.000000,0.000000,0.250000,0,0);}
.m63_c00264{transform:matrix(0.231980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231980,0.000000,0.000000,0.250000,0,0);}
.m85_c00264{transform:matrix(0.232065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232065,0.000000,0.000000,0.250000,0,0);}
.md2_c00264{transform:matrix(0.232240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232240,0.000000,0.000000,0.250000,0,0);}
.m54_c00264{transform:matrix(0.232425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232425,0.000000,0.000000,0.250000,0,0);}
.m95_c00264{transform:matrix(0.232570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232570,0.000000,0.000000,0.250000,0,0);}
.mfd_c00264{transform:matrix(0.232975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232975,0.000000,0.000000,0.250000,0,0);}
.m64_c00264{transform:matrix(0.233020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233020,0.000000,0.000000,0.250000,0,0);}
.mc_c00264{transform:matrix(0.233045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233045,0.000000,0.000000,0.250000,0,0);}
.m159_c00264{transform:matrix(0.233061,0.001398,-0.001500,0.249996,0,0);-ms-transform:matrix(0.233061,0.001398,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.233061,0.001398,-0.001500,0.249996,0,0);}
.mc7_c00264{transform:matrix(0.233295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233295,0.000000,0.000000,0.250000,0,0);}
.ma9_c00264{transform:matrix(0.233570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233570,0.000000,0.000000,0.250000,0,0);}
.m3b_c00264{transform:matrix(0.233735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233735,0.000000,0.000000,0.250000,0,0);}
.mbc_c00264{transform:matrix(0.233800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233800,0.000000,0.000000,0.250000,0,0);}
.mf9_c00264{transform:matrix(0.233815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233815,0.000000,0.000000,0.250000,0,0);}
.mf7_c00264{transform:matrix(0.233840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233840,0.000000,0.000000,0.250000,0,0);}
.m73_c00264{transform:matrix(0.234085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234085,0.000000,0.000000,0.250000,0,0);}
.m6a_c00264{transform:matrix(0.234340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234340,0.000000,0.000000,0.250000,0,0);}
.m61_c00264{transform:matrix(0.234425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234425,0.000000,0.000000,0.250000,0,0);}
.me4_c00264{transform:matrix(0.234475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234475,0.000000,0.000000,0.250000,0,0);}
.m96_c00264{transform:matrix(0.234930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234930,0.000000,0.000000,0.250000,0,0);}
.m154_c00264{transform:matrix(0.235361,0.001412,-0.001500,0.249996,0,0);-ms-transform:matrix(0.235361,0.001412,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.235361,0.001412,-0.001500,0.249996,0,0);}
.m75_c00264{transform:matrix(0.235565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235565,0.000000,0.000000,0.250000,0,0);}
.mb0_c00264{transform:matrix(0.235570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235570,0.000000,0.000000,0.250000,0,0);}
.m5b_c00264{transform:matrix(0.235600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235600,0.000000,0.000000,0.250000,0,0);}
.me1_c00264{transform:matrix(0.235680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235680,0.000000,0.000000,0.250000,0,0);}
.mc1_c00264{transform:matrix(0.235755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235755,0.000000,0.000000,0.250000,0,0);}
.m55_c00264{transform:matrix(0.235770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235770,0.000000,0.000000,0.250000,0,0);}
.m69_c00264{transform:matrix(0.235815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235815,0.000000,0.000000,0.250000,0,0);}
.m52_c00264{transform:matrix(0.236040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236040,0.000000,0.000000,0.250000,0,0);}
.m94_c00264{transform:matrix(0.236175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236175,0.000000,0.000000,0.250000,0,0);}
.me5_c00264{transform:matrix(0.236215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236215,0.000000,0.000000,0.250000,0,0);}
.m112_c00264{transform:matrix(0.236260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236260,0.000000,0.000000,0.250000,0,0);}
.me8_c00264{transform:matrix(0.236565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236565,0.000000,0.000000,0.250000,0,0);}
.m9b_c00264{transform:matrix(0.236655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236655,0.000000,0.000000,0.250000,0,0);}
.mca_c00264{transform:matrix(0.236900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236900,0.000000,0.000000,0.250000,0,0);}
.md6_c00264{transform:matrix(0.237170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237170,0.000000,0.000000,0.250000,0,0);}
.m165_c00264{transform:matrix(0.237241,0.001423,-0.001500,0.249996,0,0);-ms-transform:matrix(0.237241,0.001423,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.237241,0.001423,-0.001500,0.249996,0,0);}
.m8b_c00264{transform:matrix(0.237670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237670,0.000000,0.000000,0.250000,0,0);}
.m12c_c00264{transform:matrix(0.237735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237735,0.000000,0.000000,0.250000,0,0);}
.m11b_c00264{transform:matrix(0.237870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237870,0.000000,0.000000,0.250000,0,0);}
.mb8_c00264{transform:matrix(0.238195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238195,0.000000,0.000000,0.250000,0,0);}
.mea_c00264{transform:matrix(0.238385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238385,0.000000,0.000000,0.250000,0,0);}
.md1_c00264{transform:matrix(0.238400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238400,0.000000,0.000000,0.250000,0,0);}
.m119_c00264{transform:matrix(0.238445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238445,0.000000,0.000000,0.250000,0,0);}
.m98_c00264{transform:matrix(0.238775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238775,0.000000,0.000000,0.250000,0,0);}
.md3_c00264{transform:matrix(0.239125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239125,0.000000,0.000000,0.250000,0,0);}
.m9c_c00264{transform:matrix(0.239200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239200,0.000000,0.000000,0.250000,0,0);}
.mb2_c00264{transform:matrix(0.239495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239495,0.000000,0.000000,0.250000,0,0);}
.m6c_c00264{transform:matrix(0.239680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239680,0.000000,0.000000,0.250000,0,0);}
.m150_c00264{transform:matrix(0.240671,0.001444,-0.001500,0.249996,0,0);-ms-transform:matrix(0.240671,0.001444,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.240671,0.001444,-0.001500,0.249996,0,0);}
.m19_c00264{transform:matrix(0.240695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240695,0.000000,0.000000,0.250000,0,0);}
.m152_c00264{transform:matrix(0.241376,0.001448,-0.001500,0.249996,0,0);-ms-transform:matrix(0.241376,0.001448,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.241376,0.001448,-0.001500,0.249996,0,0);}
.m57_c00264{transform:matrix(0.241590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241590,0.000000,0.000000,0.250000,0,0);}
.mfb_c00264{transform:matrix(0.241615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241615,0.000000,0.000000,0.250000,0,0);}
.m7a_c00264{transform:matrix(0.241815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241815,0.000000,0.000000,0.250000,0,0);}
.ma6_c00264{transform:matrix(0.241990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241990,0.000000,0.000000,0.250000,0,0);}
.m114_c00264{transform:matrix(0.242280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242280,0.000000,0.000000,0.250000,0,0);}
.mf5_c00264{transform:matrix(0.242375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242375,0.000000,0.000000,0.250000,0,0);}
.m8_c00264{transform:matrix(0.242435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242435,0.000000,0.000000,0.250000,0,0);}
.m118_c00264{transform:matrix(0.242460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242460,0.000000,0.000000,0.250000,0,0);}
.mbd_c00264{transform:matrix(0.242550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242550,0.000000,0.000000,0.250000,0,0);}
.m160_c00264{transform:matrix(0.242701,0.001456,-0.001500,0.249996,0,0);-ms-transform:matrix(0.242701,0.001456,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.242701,0.001456,-0.001500,0.249996,0,0);}
.m15f_c00264{transform:matrix(0.242891,0.001457,-0.001500,0.249996,0,0);-ms-transform:matrix(0.242891,0.001457,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.242891,0.001457,-0.001500,0.249996,0,0);}
.mcf_c00264{transform:matrix(0.243050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243050,0.000000,0.000000,0.250000,0,0);}
.m8d_c00264{transform:matrix(0.243290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243290,0.000000,0.000000,0.250000,0,0);}
.mb7_c00264{transform:matrix(0.243300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243300,0.000000,0.000000,0.250000,0,0);}
.mba_c00264{transform:matrix(0.243790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243790,0.000000,0.000000,0.250000,0,0);}
.m59_c00264{transform:matrix(0.243800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243800,0.000000,0.000000,0.250000,0,0);}
.m87_c00264{transform:matrix(0.243855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243855,0.000000,0.000000,0.250000,0,0);}
.m11f_c00264{transform:matrix(0.244095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244095,0.000000,0.000000,0.250000,0,0);}
.m1f_c00264{transform:matrix(0.244105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244105,0.000000,0.000000,0.250000,0,0);}
.mcc_c00264{transform:matrix(0.244410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244410,0.000000,0.000000,0.250000,0,0);}
.mf4_c00264{transform:matrix(0.245025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245025,0.000000,0.000000,0.250000,0,0);}
.mfa_c00264{transform:matrix(0.245090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245090,0.000000,0.000000,0.250000,0,0);}
.m4c_c00264{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.mb5_c00264{transform:matrix(0.245600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245600,0.000000,0.000000,0.250000,0,0);}
.mcd_c00264{transform:matrix(0.245770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245770,0.000000,0.000000,0.250000,0,0);}
.m3c_c00264{transform:matrix(0.246185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246185,0.000000,0.000000,0.250000,0,0);}
.m1b_c00264{transform:matrix(0.246290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246290,0.000000,0.000000,0.250000,0,0);}
.m11_c00264{transform:matrix(0.246415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246415,0.000000,0.000000,0.250000,0,0);}
.m144_c00264{transform:matrix(0.246531,0.001479,-0.001500,0.249996,0,0);-ms-transform:matrix(0.246531,0.001479,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.246531,0.001479,-0.001500,0.249996,0,0);}
.m6d_c00264{transform:matrix(0.246550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246550,0.000000,0.000000,0.250000,0,0);}
.m93_c00264{transform:matrix(0.246695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246695,0.000000,0.000000,0.250000,0,0);}
.m30_c00264{transform:matrix(0.246705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246705,0.000000,0.000000,0.250000,0,0);}
.m11d_c00264{transform:matrix(0.246840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246840,0.000000,0.000000,0.250000,0,0);}
.m70_c00264{transform:matrix(0.246935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246935,0.000000,0.000000,0.250000,0,0);}
.mef_c00264{transform:matrix(0.247070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247070,0.000000,0.000000,0.250000,0,0);}
.mad_c00264{transform:matrix(0.247120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247120,0.000000,0.000000,0.250000,0,0);}
.m72_c00264{transform:matrix(0.247375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247375,0.000000,0.000000,0.250000,0,0);}
.mbe_c00264{transform:matrix(0.247595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247595,0.000000,0.000000,0.250000,0,0);}
.m12d_c00264{transform:matrix(0.247675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247675,0.000000,0.000000,0.250000,0,0);}
.mfe_c00264{transform:matrix(0.247860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247860,0.000000,0.000000,0.250000,0,0);}
.m128_c00264{transform:matrix(0.248125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248125,0.000000,0.000000,0.250000,0,0);}
.mf2_c00264{transform:matrix(0.248245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248245,0.000000,0.000000,0.250000,0,0);}
.m27_c00264{transform:matrix(0.248295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248295,0.000000,0.000000,0.250000,0,0);}
.md8_c00264{transform:matrix(0.248305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248305,0.000000,0.000000,0.250000,0,0);}
.mc4_c00264{transform:matrix(0.248445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248445,0.000000,0.000000,0.250000,0,0);}
.mbb_c00264{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m3e_c00264{transform:matrix(0.248925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248925,0.000000,0.000000,0.250000,0,0);}
.m10c_c00264{transform:matrix(0.248975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248975,0.000000,0.000000,0.250000,0,0);}
.m82_c00264{transform:matrix(0.249020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249020,0.000000,0.000000,0.250000,0,0);}
.mc6_c00264{transform:matrix(0.249100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249100,0.000000,0.000000,0.250000,0,0);}
.m14_c00264{transform:matrix(0.249215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249215,0.000000,0.000000,0.250000,0,0);}
.mb3_c00264{transform:matrix(0.249245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249245,0.000000,0.000000,0.250000,0,0);}
.ma8_c00264{transform:matrix(0.249255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249255,0.000000,0.000000,0.250000,0,0);}
.mf1_c00264{transform:matrix(0.249655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249655,0.000000,0.000000,0.250000,0,0);}
.m12a_c00264{transform:matrix(0.249735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249735,0.000000,0.000000,0.250000,0,0);}
.m15c_c00264{transform:matrix(0.249946,0.001500,-0.001500,0.249996,0,0);-ms-transform:matrix(0.249946,0.001500,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.249946,0.001500,-0.001500,0.249996,0,0);}
.m158_c00264{transform:matrix(0.250185,0.001501,-0.001500,0.249996,0,0);-ms-transform:matrix(0.250185,0.001501,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.250185,0.001501,-0.001500,0.249996,0,0);}
.m8a_c00264{transform:matrix(0.250610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250610,0.000000,0.000000,0.250000,0,0);}
.m117_c00264{transform:matrix(0.250690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250690,0.000000,0.000000,0.250000,0,0);}
.m26_c00264{transform:matrix(0.250920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250920,0.000000,0.000000,0.250000,0,0);}
.m83_c00264{transform:matrix(0.251160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251160,0.000000,0.000000,0.250000,0,0);}
.m111_c00264{transform:matrix(0.251405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251405,0.000000,0.000000,0.250000,0,0);}
.m10e_c00264{transform:matrix(0.251545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251545,0.000000,0.000000,0.250000,0,0);}
.m24_c00264{transform:matrix(0.251635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251635,0.000000,0.000000,0.250000,0,0);}
.m74_c00264{transform:matrix(0.251910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251910,0.000000,0.000000,0.250000,0,0);}
.m12b_c00264{transform:matrix(0.252040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252040,0.000000,0.000000,0.250000,0,0);}
.m86_c00264{transform:matrix(0.252125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252125,0.000000,0.000000,0.250000,0,0);}
.m99_c00264{transform:matrix(0.252200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252200,0.000000,0.000000,0.250000,0,0);}
.m7f_c00264{transform:matrix(0.252405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252405,0.000000,0.000000,0.250000,0,0);}
.m39_c00264{transform:matrix(0.252630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252630,0.000000,0.000000,0.250000,0,0);}
.md_c00264{transform:matrix(0.252840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252840,0.000000,0.000000,0.250000,0,0);}
.m25_c00264{transform:matrix(0.252880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252880,0.000000,0.000000,0.250000,0,0);}
.mf3_c00264{transform:matrix(0.252980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252980,0.000000,0.000000,0.250000,0,0);}
.m15e_c00264{transform:matrix(0.253495,0.001521,-0.001500,0.249996,0,0);-ms-transform:matrix(0.253495,0.001521,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.253495,0.001521,-0.001500,0.249996,0,0);}
.m7b_c00264{transform:matrix(0.253515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253515,0.000000,0.000000,0.250000,0,0);}
.m164_c00264{transform:matrix(0.253750,0.001523,-0.001500,0.249996,0,0);-ms-transform:matrix(0.253750,0.001523,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.253750,0.001523,-0.001500,0.249996,0,0);}
.m11e_c00264{transform:matrix(0.254065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254065,0.000000,0.000000,0.250000,0,0);}
.m2c_c00264{transform:matrix(0.254175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254175,0.000000,0.000000,0.250000,0,0);}
.m80_c00264{transform:matrix(0.254225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254225,0.000000,0.000000,0.250000,0,0);}
.m2d_c00264{transform:matrix(0.254315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254315,0.000000,0.000000,0.250000,0,0);}
.m90_c00264{transform:matrix(0.254440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254440,0.000000,0.000000,0.250000,0,0);}
.m77_c00264{transform:matrix(0.254595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254595,0.000000,0.000000,0.250000,0,0);}
.md0_c00264{transform:matrix(0.254980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254980,0.000000,0.000000,0.250000,0,0);}
.m115_c00264{transform:matrix(0.255365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255365,0.000000,0.000000,0.250000,0,0);}
.m110_c00264{transform:matrix(0.255680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255680,0.000000,0.000000,0.250000,0,0);}
.m89_c00264{transform:matrix(0.256535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256535,0.000000,0.000000,0.250000,0,0);}
.m162_c00264{transform:matrix(0.256560,0.001539,-0.001500,0.249996,0,0);-ms-transform:matrix(0.256560,0.001539,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.256560,0.001539,-0.001500,0.249996,0,0);}
.ma5_c00264{transform:matrix(0.256745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256745,0.000000,0.000000,0.250000,0,0);}
.m15a_c00264{transform:matrix(0.257430,0.001545,-0.001500,0.249996,0,0);-ms-transform:matrix(0.257430,0.001545,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.257430,0.001545,-0.001500,0.249996,0,0);}
.m36_c00264{transform:matrix(0.257550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257550,0.000000,0.000000,0.250000,0,0);}
.m10d_c00264{transform:matrix(0.257700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257700,0.000000,0.000000,0.250000,0,0);}
.m22_c00264{transform:matrix(0.259185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259185,0.000000,0.000000,0.250000,0,0);}
.m51_c00264{transform:matrix(0.259320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259320,0.000000,0.000000,0.250000,0,0);}
.m7e_c00264{transform:matrix(0.259690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259690,0.000000,0.000000,0.250000,0,0);}
.mf8_c00264{transform:matrix(0.259780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259780,0.000000,0.000000,0.250000,0,0);}
.mc2_c00264{transform:matrix(0.259810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259810,0.000000,0.000000,0.250000,0,0);}
.m34_c00264{transform:matrix(0.259945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259945,0.000000,0.000000,0.250000,0,0);}
.m153_c00264{transform:matrix(0.260190,0.001561,-0.001500,0.249996,0,0);-ms-transform:matrix(0.260190,0.001561,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.260190,0.001561,-0.001500,0.249996,0,0);}
.mdb_c00264{transform:matrix(0.260485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260485,0.000000,0.000000,0.250000,0,0);}
.m15_c00264{transform:matrix(0.260605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260605,0.000000,0.000000,0.250000,0,0);}
.m129_c00264{transform:matrix(0.260850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260850,0.000000,0.000000,0.250000,0,0);}
.md4_c00264{transform:matrix(0.262100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262100,0.000000,0.000000,0.250000,0,0);}
.m33_c00264{transform:matrix(0.262210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262210,0.000000,0.000000,0.250000,0,0);}
.meb_c00264{transform:matrix(0.262360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262360,0.000000,0.000000,0.250000,0,0);}
.m2a_c00264{transform:matrix(0.262525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262525,0.000000,0.000000,0.250000,0,0);}
.m125_c00264{transform:matrix(0.262560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262560,0.000000,0.000000,0.250000,0,0);}
.m13_c00264{transform:matrix(0.262875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262875,0.000000,0.000000,0.250000,0,0);}
.m31_c00264{transform:matrix(0.262920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262920,0.000000,0.000000,0.250000,0,0);}
.mdc_c00264{transform:matrix(0.263155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263155,0.000000,0.000000,0.250000,0,0);}
.ma1_c00264{transform:matrix(0.263425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263425,0.000000,0.000000,0.250000,0,0);}
.m3a_c00264{transform:matrix(0.263880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263880,0.000000,0.000000,0.250000,0,0);}
.m29_c00264{transform:matrix(0.264385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264385,0.000000,0.000000,0.250000,0,0);}
.m123_c00264{transform:matrix(0.265320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265320,0.000000,0.000000,0.250000,0,0);}
.m2e_c00264{transform:matrix(0.265650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265650,0.000000,0.000000,0.250000,0,0);}
.mc0_c00264{transform:matrix(0.266380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266380,0.000000,0.000000,0.250000,0,0);}
.m120_c00264{transform:matrix(0.266845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266845,0.000000,0.000000,0.250000,0,0);}
.m121_c00264{transform:matrix(0.266965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266965,0.000000,0.000000,0.250000,0,0);}
.m122_c00264{transform:matrix(0.266990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266990,0.000000,0.000000,0.250000,0,0);}
.mde_c00264{transform:matrix(0.268965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268965,0.000000,0.000000,0.250000,0,0);}
.m18_c00264{transform:matrix(0.269585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269585,0.000000,0.000000,0.250000,0,0);}
.m1e_c00264{transform:matrix(0.270505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270505,0.000000,0.000000,0.250000,0,0);}
.m124_c00264{transform:matrix(0.270590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270590,0.000000,0.000000,0.250000,0,0);}
.m21_c00264{transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);}
.m1c_c00264{transform:matrix(0.270845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270845,0.000000,0.000000,0.250000,0,0);}
.mda_c00264{transform:matrix(0.271205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271205,0.000000,0.000000,0.250000,0,0);}
.mc5_c00264{transform:matrix(0.272115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272115,0.000000,0.000000,0.250000,0,0);}
.m23_c00264{transform:matrix(0.272125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272125,0.000000,0.000000,0.250000,0,0);}
.md5_c00264{transform:matrix(0.272170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272170,0.000000,0.000000,0.250000,0,0);}
.mec_c00264{transform:matrix(0.272930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272930,0.000000,0.000000,0.250000,0,0);}
.m163_c00264{transform:matrix(0.273100,0.001639,-0.001500,0.249996,0,0);-ms-transform:matrix(0.273100,0.001639,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.273100,0.001639,-0.001500,0.249996,0,0);}
.m126_c00264{transform:matrix(0.274135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274135,0.000000,0.000000,0.250000,0,0);}
.md7_c00264{transform:matrix(0.274280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274280,0.000000,0.000000,0.250000,0,0);}
.m5c_c00264{transform:matrix(0.274450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274450,0.000000,0.000000,0.250000,0,0);}
.me9_c00264{transform:matrix(0.275880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275880,0.000000,0.000000,0.250000,0,0);}
.m38_c00264{transform:matrix(0.276935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276935,0.000000,0.000000,0.250000,0,0);}
.mc3_c00264{transform:matrix(0.277200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277200,0.000000,0.000000,0.250000,0,0);}
.mc8_c00264{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m10_c00264{transform:matrix(0.277575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277575,0.000000,0.000000,0.250000,0,0);}
.m88_c00264{transform:matrix(0.278650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278650,0.000000,0.000000,0.250000,0,0);}
.m3d_c00264{transform:matrix(0.278655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278655,0.000000,0.000000,0.250000,0,0);}
.m20_c00264{transform:matrix(0.280735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280735,0.000000,0.000000,0.250000,0,0);}
.m166_c00264{transform:matrix(0.284725,0.001708,-0.001500,0.249996,0,0);-ms-transform:matrix(0.284725,0.001708,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.284725,0.001708,-0.001500,0.249996,0,0);}
.m10b_c00264{transform:matrix(0.289385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289385,0.000000,0.000000,0.250000,0,0);}
.m6f_c00264{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.mf_c00264{transform:matrix(0.339935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339935,0.000000,0.000000,0.250000,0,0);}
.m50_c00264{transform:matrix(0.347950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347950,0.000000,0.000000,0.250000,0,0);}
.m6e_c00264{transform:matrix(0.367355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367355,0.000000,0.000000,0.250000,0,0);}
.m169_c00264{transform:matrix(0.429200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429200,0.000000,0.000000,0.250000,0,0);}
.m151_c00264{transform:matrix(0.472062,0.002832,-0.001500,0.249996,0,0);-ms-transform:matrix(0.472062,0.002832,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.472062,0.002832,-0.001500,0.249996,0,0);}
.m156_c00264{transform:matrix(0.560460,0.003363,-0.001500,0.249996,0,0);-ms-transform:matrix(0.560460,0.003363,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.560460,0.003363,-0.001500,0.249996,0,0);}
.m168_c00264{transform:matrix(1.440030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.440030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.440030,0.000000,0.000000,0.250000,0,0);}
.v0_c00264{vertical-align:0.000000px;}
.ls0_c00264{letter-spacing:0.000000px;}
.sc__c00264{text-shadow:none;}
.sc0_c00264{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__c00264{-webkit-text-stroke:0px transparent;}
.sc0_c00264{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00264{word-spacing:0.000000px;}
._0_c00264{width:16.546791px;}
.fc0_c00264{color:transparent;}
.fs0_c00264{font-size:72.000000px;}
.fs8_c00264{font-size:72.001296px;}
.fs2_c00264{font-size:78.000000px;}
.fs7_c00264{font-size:78.001404px;}
.fs4_c00264{font-size:84.000000px;}
.fs3_c00264{font-size:90.000000px;}
.fs6_c00264{font-size:102.001836px;}
.fs1_c00264{font-size:102.013055px;}
.fs5_c00264{font-size:108.000000px;}
.fs9_c00264{font-size:174.000000px;}
.y0_c00264{bottom:0.000000px;}
.y59_c00264{bottom:4.486500px;}
.y4d_c00264{bottom:27.250731px;}
.y4e_c00264{bottom:27.251220px;}
.y4f_c00264{bottom:27.251838px;}
.y50_c00264{bottom:27.252198px;}
.y51_c00264{bottom:27.252798px;}
.y53_c00264{bottom:27.252936px;}
.y54_c00264{bottom:27.253065px;}
.y52_c00264{bottom:27.253107px;}
.y56_c00264{bottom:27.253194px;}
.y58_c00264{bottom:27.253392px;}
.y57_c00264{bottom:27.253443px;}
.y55_c00264{bottom:27.253605px;}
.y4c_c00264{bottom:45.372387px;}
.y4b_c00264{bottom:45.629868px;}
.y4a_c00264{bottom:46.150041px;}
.y49_c00264{bottom:46.363782px;}
.y48_c00264{bottom:46.896924px;}
.y47_c00264{bottom:47.149554px;}
.y46_c00264{bottom:47.423325px;}
.y45_c00264{bottom:48.210681px;}
.y44_c00264{bottom:48.486027px;}
.y43_c00264{bottom:48.931590px;}
.y42_c00264{bottom:49.140570px;}
.y41_c00264{bottom:66.052968px;}
.y40_c00264{bottom:66.702579px;}
.y3f_c00264{bottom:66.974721px;}
.y3e_c00264{bottom:67.374870px;}
.y3d_c00264{bottom:68.022906px;}
.y3c_c00264{bottom:68.235081px;}
.y3b_c00264{bottom:68.351703px;}
.y3a_c00264{bottom:68.559099px;}
.y39_c00264{bottom:68.758350px;}
.y38_c00264{bottom:69.220077px;}
.y37_c00264{bottom:69.685251px;}
.y36_c00264{bottom:69.931500px;}
.y35_c00264{bottom:102.483000px;}
.y34_c00264{bottom:102.829500px;}
.y33_c00264{bottom:103.096500px;}
.y32_c00264{bottom:103.321500px;}
.y31_c00264{bottom:103.704000px;}
.y30_c00264{bottom:103.867500px;}
.y2f_c00264{bottom:104.089500px;}
.y2e_c00264{bottom:104.362500px;}
.y2d_c00264{bottom:105.024000px;}
.y2c_c00264{bottom:105.297000px;}
.y2b_c00264{bottom:134.557500px;}
.y2a_c00264{bottom:134.670000px;}
.y29_c00264{bottom:135.114000px;}
.y28_c00264{bottom:135.219000px;}
.y27_c00264{bottom:135.549000px;}
.y26_c00264{bottom:135.715500px;}
.y25_c00264{bottom:136.204500px;}
.y24_c00264{bottom:136.372500px;}
.y23_c00264{bottom:136.762500px;}
.y22_c00264{bottom:137.254500px;}
.y21_c00264{bottom:137.698500px;}
.y20_c00264{bottom:167.632500px;}
.y1f_c00264{bottom:199.533000px;}
.y1e_c00264{bottom:230.863500px;}
.y1d_c00264{bottom:262.417500px;}
.y1c_c00264{bottom:293.449500px;}
.y1b_c00264{bottom:325.312500px;}
.y1a_c00264{bottom:357.334500px;}
.y19_c00264{bottom:389.184000px;}
.y18_c00264{bottom:421.527000px;}
.y17_c00264{bottom:453.466500px;}
.y16_c00264{bottom:485.317500px;}
.y15_c00264{bottom:516.517500px;}
.y14_c00264{bottom:547.059000px;}
.y13_c00264{bottom:579.067500px;}
.y12_c00264{bottom:609.778500px;}
.y11_c00264{bottom:642.082500px;}
.y10_c00264{bottom:673.303500px;}
.yf_c00264{bottom:705.334500px;}
.ye_c00264{bottom:737.293500px;}
.yd_c00264{bottom:769.429500px;}
.yc_c00264{bottom:801.549000px;}
.yb_c00264{bottom:833.058000px;}
.ya_c00264{bottom:864.376500px;}
.y9_c00264{bottom:896.130000px;}
.y8_c00264{bottom:927.450000px;}
.y7_c00264{bottom:959.116500px;}
.y6_c00264{bottom:990.856500px;}
.y2_c00264{bottom:1044.903000px;}
.y3_c00264{bottom:1046.289552px;}
.y4_c00264{bottom:1048.082256px;}
.y5_c00264{bottom:1056.190608px;}
.y1_c00264{bottom:1108.210500px;}
.h2_c00264{height:72.000000px;}
.ha_c00264{height:72.001296px;}
.h4_c00264{height:78.000000px;}
.h9_c00264{height:78.001404px;}
.h6_c00264{height:84.000000px;}
.h5_c00264{height:90.000000px;}
.h8_c00264{height:102.001836px;}
.h3_c00264{height:102.013055px;}
.h7_c00264{height:108.000000px;}
.hb_c00264{height:174.000000px;}
.h0_c00264{height:1154.790000px;}
.h1_c00264{height:1155.000000px;}
.w0_c00264{width:915.000000px;}
.x0_c00264{left:0.000000px;}
.x6a_c00264{left:135.810000px;}
.x69_c00264{left:145.260000px;}
.x39_c00264{left:151.200000px;}
.x4_c00264{left:152.500500px;}
.x75_c00264{left:154.575000px;}
.x3d_c00264{left:174.690000px;}
.x13_c00264{left:184.680000px;}
.x3a_c00264{left:185.760000px;}
.x30_c00264{left:195.210000px;}
.x1d_c00264{left:196.830000px;}
.x2b_c00264{left:206.820000px;}
.x3e_c00264{left:208.170000px;}
.x65_c00264{left:218.430000px;}
.x6b_c00264{left:219.510000px;}
.x23_c00264{left:228.690000px;}
.x50_c00264{left:229.770000px;}
.x5_c00264{left:239.160000px;}
.x71_c00264{left:240.223500px;}
.x49_c00264{left:250.290000px;}
.x6e_c00264{left:251.640000px;}
.x76_c00264{left:260.195634px;}
.x31_c00264{left:261.630000px;}
.x8_c00264{left:263.520000px;}
.x14_c00264{left:272.970000px;}
.x3b_c00264{left:284.040000px;}
.x9_c00264{left:294.840000px;}
.x45_c00264{left:305.100000px;}
.x24_c00264{left:306.450000px;}
.x15_c00264{left:316.980000px;}
.x1e_c00264{left:328.050000px;}
.x55_c00264{left:338.580000px;}
.x59_c00264{left:339.660000px;}
.x2c_c00264{left:349.110000px;}
.x4a_c00264{left:350.190000px;}
.x6_c00264{left:351.204000px;}
.x61_c00264{left:361.260000px;}
.x1_c00264{left:371.520000px;}
.x78_c00264{left:372.603780px;}
.xa_c00264{left:381.780000px;}
.x16_c00264{left:383.400000px;}
.x5d_c00264{left:394.200000px;}
.x2_c00264{left:395.280000px;}
.x1f_c00264{left:404.730000px;}
.x41_c00264{left:416.070000px;}
.xb_c00264{left:417.150000px;}
.x3_c00264{left:426.330000px;}
.x47_c00264{left:427.410000px;}
.x5e_c00264{left:436.860000px;}
.x72_c00264{left:438.679500px;}
.x4e_c00264{left:447.930000px;}
.x66_c00264{left:449.820000px;}
.x17_c00264{left:458.730000px;}
.x3f_c00264{left:460.080000px;}
.x25_c00264{left:461.160000px;}
.x3c_c00264{left:462.510000px;}
.xc_c00264{left:470.340000px;}
.x20_c00264{left:471.960000px;}
.x4b_c00264{left:480.600000px;}
.x2d_c00264{left:482.220000px;}
.x35_c00264{left:483.570000px;}
.x51_c00264{left:492.750000px;}
.xd_c00264{left:493.830000px;}
.x5f_c00264{left:504.090000px;}
.x6f_c00264{left:505.170000px;}
.x56_c00264{left:513.270000px;}
.x36_c00264{left:515.700000px;}
.x5a_c00264{left:524.070000px;}
.x18_c00264{left:525.420000px;}
.x62_c00264{left:526.500000px;}
.x32_c00264{left:537.030000px;}
.x6c_c00264{left:546.750000px;}
.x4f_c00264{left:547.830000px;}
.xe_c00264{left:548.910000px;}
.x52_c00264{left:557.820000px;}
.x48_c00264{left:559.170000px;}
.x5b_c00264{left:568.620000px;}
.x26_c00264{left:570.240000px;}
.x19_c00264{left:580.770000px;}
.x53_c00264{left:591.300000px;}
.x73_c00264{left:592.849500px;}
.x27_c00264{left:603.180000px;}
.x37_c00264{left:613.440000px;}
.x1a_c00264{left:615.060000px;}
.x40_c00264{left:624.240000px;}
.x42_c00264{left:625.860000px;}
.x54_c00264{left:635.310000px;}
.x63_c00264{left:637.200000px;}
.xf_c00264{left:646.110000px;}
.x21_c00264{left:647.730000px;}
.x77_c00264{left:649.526634px;}
.x28_c00264{left:657.180000px;}
.x6d_c00264{left:667.980000px;}
.x57_c00264{left:669.060000px;}
.x10_c00264{left:680.130000px;}
.x4c_c00264{left:690.660000px;}
.x70_c00264{left:692.010000px;}
.x64_c00264{left:700.920000px;}
.x5c_c00264{left:702.270000px;}
.x2e_c00264{left:713.610000px;}
.x74_c00264{left:715.681500px;}
.x22_c00264{left:723.870000px;}
.x67_c00264{left:733.590000px;}
.x46_c00264{left:734.670000px;}
.x33_c00264{left:736.830000px;}
.x4d_c00264{left:745.470000px;}
.x29_c00264{left:747.360000px;}
.x43_c00264{left:757.620000px;}
.x34_c00264{left:758.700000px;}
.x60_c00264{left:766.800000px;}
.x1b_c00264{left:768.150000px;}
.x38_c00264{left:769.500000px;}
.x2a_c00264{left:779.760000px;}
.x11_c00264{left:788.940000px;}
.x44_c00264{left:790.020000px;}
.x58_c00264{left:800.280000px;}
.x1c_c00264{left:801.630000px;}
.x12_c00264{left:822.690000px;}
.x68_c00264{left:823.770000px;}
.x2f_c00264{left:833.220000px;}
.x79_c00264{left:845.111799px;}
.x7_c00264{left:857.976000px;}
@media print{
.v0_c00264{vertical-align:0.000000pt;}
.ls0_c00264{letter-spacing:0.000000pt;}
.ws0_c00264{word-spacing:0.000000pt;}
._0_c00264{width:14.708259pt;}
.fs0_c00264{font-size:64.000000pt;}
.fs8_c00264{font-size:64.001152pt;}
.fs2_c00264{font-size:69.333333pt;}
.fs7_c00264{font-size:69.334581pt;}
.fs4_c00264{font-size:74.666667pt;}
.fs3_c00264{font-size:80.000000pt;}
.fs6_c00264{font-size:90.668299pt;}
.fs1_c00264{font-size:90.678271pt;}
.fs5_c00264{font-size:96.000000pt;}
.fs9_c00264{font-size:154.666667pt;}
.y0_c00264{bottom:0.000000pt;}
.y59_c00264{bottom:3.988000pt;}
.y4d_c00264{bottom:24.222872pt;}
.y4e_c00264{bottom:24.223307pt;}
.y4f_c00264{bottom:24.223856pt;}
.y50_c00264{bottom:24.224176pt;}
.y51_c00264{bottom:24.224709pt;}
.y53_c00264{bottom:24.224832pt;}
.y54_c00264{bottom:24.224947pt;}
.y52_c00264{bottom:24.224984pt;}
.y56_c00264{bottom:24.225061pt;}
.y58_c00264{bottom:24.225237pt;}
.y57_c00264{bottom:24.225283pt;}
.y55_c00264{bottom:24.225427pt;}
.y4c_c00264{bottom:40.331011pt;}
.y4b_c00264{bottom:40.559883pt;}
.y4a_c00264{bottom:41.022259pt;}
.y49_c00264{bottom:41.212251pt;}
.y48_c00264{bottom:41.686155pt;}
.y47_c00264{bottom:41.910715pt;}
.y46_c00264{bottom:42.154067pt;}
.y45_c00264{bottom:42.853939pt;}
.y44_c00264{bottom:43.098691pt;}
.y43_c00264{bottom:43.494747pt;}
.y42_c00264{bottom:43.680507pt;}
.y41_c00264{bottom:58.713749pt;}
.y40_c00264{bottom:59.291181pt;}
.y3f_c00264{bottom:59.533085pt;}
.y3e_c00264{bottom:59.888773pt;}
.y3d_c00264{bottom:60.464805pt;}
.y3c_c00264{bottom:60.653405pt;}
.y3b_c00264{bottom:60.757069pt;}
.y3a_c00264{bottom:60.941421pt;}
.y39_c00264{bottom:61.118533pt;}
.y38_c00264{bottom:61.528957pt;}
.y37_c00264{bottom:61.942445pt;}
.y36_c00264{bottom:62.161333pt;}
.y35_c00264{bottom:91.096000pt;}
.y34_c00264{bottom:91.404000pt;}
.y33_c00264{bottom:91.641333pt;}
.y32_c00264{bottom:91.841333pt;}
.y31_c00264{bottom:92.181333pt;}
.y30_c00264{bottom:92.326667pt;}
.y2f_c00264{bottom:92.524000pt;}
.y2e_c00264{bottom:92.766667pt;}
.y2d_c00264{bottom:93.354667pt;}
.y2c_c00264{bottom:93.597333pt;}
.y2b_c00264{bottom:119.606667pt;}
.y2a_c00264{bottom:119.706667pt;}
.y29_c00264{bottom:120.101333pt;}
.y28_c00264{bottom:120.194667pt;}
.y27_c00264{bottom:120.488000pt;}
.y26_c00264{bottom:120.636000pt;}
.y25_c00264{bottom:121.070667pt;}
.y24_c00264{bottom:121.220000pt;}
.y23_c00264{bottom:121.566667pt;}
.y22_c00264{bottom:122.004000pt;}
.y21_c00264{bottom:122.398667pt;}
.y20_c00264{bottom:149.006667pt;}
.y1f_c00264{bottom:177.362667pt;}
.y1e_c00264{bottom:205.212000pt;}
.y1d_c00264{bottom:233.260000pt;}
.y1c_c00264{bottom:260.844000pt;}
.y1b_c00264{bottom:289.166667pt;}
.y1a_c00264{bottom:317.630667pt;}
.y19_c00264{bottom:345.941333pt;}
.y18_c00264{bottom:374.690667pt;}
.y17_c00264{bottom:403.081333pt;}
.y16_c00264{bottom:431.393333pt;}
.y15_c00264{bottom:459.126667pt;}
.y14_c00264{bottom:486.274667pt;}
.y13_c00264{bottom:514.726667pt;}
.y12_c00264{bottom:542.025333pt;}
.y11_c00264{bottom:570.740000pt;}
.y10_c00264{bottom:598.492000pt;}
.yf_c00264{bottom:626.964000pt;}
.ye_c00264{bottom:655.372000pt;}
.yd_c00264{bottom:683.937333pt;}
.yc_c00264{bottom:712.488000pt;}
.yb_c00264{bottom:740.496000pt;}
.ya_c00264{bottom:768.334667pt;}
.y9_c00264{bottom:796.560000pt;}
.y8_c00264{bottom:824.400000pt;}
.y7_c00264{bottom:852.548000pt;}
.y6_c00264{bottom:880.761333pt;}
.y2_c00264{bottom:928.802667pt;}
.y3_c00264{bottom:930.035157pt;}
.y4_c00264{bottom:931.628672pt;}
.y5_c00264{bottom:938.836096pt;}
.y1_c00264{bottom:985.076000pt;}
.h2_c00264{height:64.000000pt;}
.ha_c00264{height:64.001152pt;}
.h4_c00264{height:69.333333pt;}
.h9_c00264{height:69.334581pt;}
.h6_c00264{height:74.666667pt;}
.h5_c00264{height:80.000000pt;}
.h8_c00264{height:90.668299pt;}
.h3_c00264{height:90.678271pt;}
.h7_c00264{height:96.000000pt;}
.hb_c00264{height:154.666667pt;}
.h0_c00264{height:1026.480000pt;}
.h1_c00264{height:1026.666667pt;}
.w0_c00264{width:813.333333pt;}
.x0_c00264{left:0.000000pt;}
.x6a_c00264{left:120.720000pt;}
.x69_c00264{left:129.120000pt;}
.x39_c00264{left:134.400000pt;}
.x4_c00264{left:135.556000pt;}
.x75_c00264{left:137.400000pt;}
.x3d_c00264{left:155.280000pt;}
.x13_c00264{left:164.160000pt;}
.x3a_c00264{left:165.120000pt;}
.x30_c00264{left:173.520000pt;}
.x1d_c00264{left:174.960000pt;}
.x2b_c00264{left:183.840000pt;}
.x3e_c00264{left:185.040000pt;}
.x65_c00264{left:194.160000pt;}
.x6b_c00264{left:195.120000pt;}
.x23_c00264{left:203.280000pt;}
.x50_c00264{left:204.240000pt;}
.x5_c00264{left:212.586667pt;}
.x71_c00264{left:213.532000pt;}
.x49_c00264{left:222.480000pt;}
.x6e_c00264{left:223.680000pt;}
.x76_c00264{left:231.285008pt;}
.x31_c00264{left:232.560000pt;}
.x8_c00264{left:234.240000pt;}
.x14_c00264{left:242.640000pt;}
.x3b_c00264{left:252.480000pt;}
.x9_c00264{left:262.080000pt;}
.x45_c00264{left:271.200000pt;}
.x24_c00264{left:272.400000pt;}
.x15_c00264{left:281.760000pt;}
.x1e_c00264{left:291.600000pt;}
.x55_c00264{left:300.960000pt;}
.x59_c00264{left:301.920000pt;}
.x2c_c00264{left:310.320000pt;}
.x4a_c00264{left:311.280000pt;}
.x6_c00264{left:312.181333pt;}
.x61_c00264{left:321.120000pt;}
.x1_c00264{left:330.240000pt;}
.x78_c00264{left:331.203360pt;}
.xa_c00264{left:339.360000pt;}
.x16_c00264{left:340.800000pt;}
.x5d_c00264{left:350.400000pt;}
.x2_c00264{left:351.360000pt;}
.x1f_c00264{left:359.760000pt;}
.x41_c00264{left:369.840000pt;}
.xb_c00264{left:370.800000pt;}
.x3_c00264{left:378.960000pt;}
.x47_c00264{left:379.920000pt;}
.x5e_c00264{left:388.320000pt;}
.x72_c00264{left:389.937333pt;}
.x4e_c00264{left:398.160000pt;}
.x66_c00264{left:399.840000pt;}
.x17_c00264{left:407.760000pt;}
.x3f_c00264{left:408.960000pt;}
.x25_c00264{left:409.920000pt;}
.x3c_c00264{left:411.120000pt;}
.xc_c00264{left:418.080000pt;}
.x20_c00264{left:419.520000pt;}
.x4b_c00264{left:427.200000pt;}
.x2d_c00264{left:428.640000pt;}
.x35_c00264{left:429.840000pt;}
.x51_c00264{left:438.000000pt;}
.xd_c00264{left:438.960000pt;}
.x5f_c00264{left:448.080000pt;}
.x6f_c00264{left:449.040000pt;}
.x56_c00264{left:456.240000pt;}
.x36_c00264{left:458.400000pt;}
.x5a_c00264{left:465.840000pt;}
.x18_c00264{left:467.040000pt;}
.x62_c00264{left:468.000000pt;}
.x32_c00264{left:477.360000pt;}
.x6c_c00264{left:486.000000pt;}
.x4f_c00264{left:486.960000pt;}
.xe_c00264{left:487.920000pt;}
.x52_c00264{left:495.840000pt;}
.x48_c00264{left:497.040000pt;}
.x5b_c00264{left:505.440000pt;}
.x26_c00264{left:506.880000pt;}
.x19_c00264{left:516.240000pt;}
.x53_c00264{left:525.600000pt;}
.x73_c00264{left:526.977333pt;}
.x27_c00264{left:536.160000pt;}
.x37_c00264{left:545.280000pt;}
.x1a_c00264{left:546.720000pt;}
.x40_c00264{left:554.880000pt;}
.x42_c00264{left:556.320000pt;}
.x54_c00264{left:564.720000pt;}
.x63_c00264{left:566.400000pt;}
.xf_c00264{left:574.320000pt;}
.x21_c00264{left:575.760000pt;}
.x77_c00264{left:577.357008pt;}
.x28_c00264{left:584.160000pt;}
.x6d_c00264{left:593.760000pt;}
.x57_c00264{left:594.720000pt;}
.x10_c00264{left:604.560000pt;}
.x4c_c00264{left:613.920000pt;}
.x70_c00264{left:615.120000pt;}
.x64_c00264{left:623.040000pt;}
.x5c_c00264{left:624.240000pt;}
.x2e_c00264{left:634.320000pt;}
.x74_c00264{left:636.161333pt;}
.x22_c00264{left:643.440000pt;}
.x67_c00264{left:652.080000pt;}
.x46_c00264{left:653.040000pt;}
.x33_c00264{left:654.960000pt;}
.x4d_c00264{left:662.640000pt;}
.x29_c00264{left:664.320000pt;}
.x43_c00264{left:673.440000pt;}
.x34_c00264{left:674.400000pt;}
.x60_c00264{left:681.600000pt;}
.x1b_c00264{left:682.800000pt;}
.x38_c00264{left:684.000000pt;}
.x2a_c00264{left:693.120000pt;}
.x11_c00264{left:701.280000pt;}
.x44_c00264{left:702.240000pt;}
.x58_c00264{left:711.360000pt;}
.x1c_c00264{left:712.560000pt;}
.x12_c00264{left:731.280000pt;}
.x68_c00264{left:732.240000pt;}
.x2f_c00264{left:740.640000pt;}
.x79_c00264{left:751.210488pt;}
.x7_c00264{left:762.645333pt;}
}





/* 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_c00265 {
    display:none;
  }
  .loading-indicator_c00265.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00265 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_c00265 { 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_c00265" -> "#page-container .classname_c00265")
 */
.pf_c00265 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00265 { /* 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_c00265.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00265 { /* 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_c00265 { /* 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_c00265 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00265 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00265 {overflow:visible;}
  }
}
.c_c00265 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00265 { /* 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_c00265:after { /* webkit #35443 */
  content: '';
}
.t_c00265:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00265 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 */
}
.__c00265 { /* 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_c00265 { /* info for Javascript */
  display:none;
}
.l_c00265 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00265 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00265 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00265: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_c00265 {
    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_c00265.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00265.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_c00265 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00265{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00265;src:url('chunks/assets/font_b11a17f404e7258299fdf971.woff2')format("woff");}.ff1_c00265{font-family:ff1_c00265;line-height:1.000000;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;}
.m79_c00265{transform:matrix(0.009790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.009790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.009790,0.000000,0.000000,0.250000,0,0);}
.m9c_c00265{transform:matrix(0.010813,-0.000205,0.004749,0.249955,0,0);-ms-transform:matrix(0.010813,-0.000205,0.004749,0.249955,0,0);-webkit-transform:matrix(0.010813,-0.000205,0.004749,0.249955,0,0);}
.mc5_c00265{transform:matrix(0.014372,0.000302,-0.005249,0.249945,0,0);-ms-transform:matrix(0.014372,0.000302,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.014372,0.000302,-0.005249,0.249945,0,0);}
.m17_c00265{transform:matrix(0.015810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.015810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.015810,0.000000,0.000000,0.250000,0,0);}
.m31_c00265{transform:matrix(0.015910,-0.000111,0.001750,0.249994,0,0);-ms-transform:matrix(0.015910,-0.000111,0.001750,0.249994,0,0);-webkit-transform:matrix(0.015910,-0.000111,0.001750,0.249994,0,0);}
.m91_c00265{transform:matrix(0.017307,-0.000329,0.004749,0.249955,0,0);-ms-transform:matrix(0.017307,-0.000329,0.004749,0.249955,0,0);-webkit-transform:matrix(0.017307,-0.000329,0.004749,0.249955,0,0);}
.m18_c00265{transform:matrix(0.018030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.018030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.018030,0.000000,0.000000,0.250000,0,0);}
.m2_c00265{transform:matrix(0.018640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.018640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.018640,0.000000,0.000000,0.250000,0,0);}
.m10_c00265{transform:matrix(0.031820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.031820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.031820,0.000000,0.000000,0.250000,0,0);}
.mad_c00265{transform:matrix(0.031908,0.000670,-0.005249,0.249945,0,0);-ms-transform:matrix(0.031908,0.000670,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.031908,0.000670,-0.005249,0.249945,0,0);}
.m7_c00265{transform:matrix(0.035575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.035575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.035575,0.000000,0.000000,0.250000,0,0);}
.m44_c00265{transform:matrix(0.047730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.047730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.047730,0.000000,0.000000,0.250000,0,0);}
.me_c00265{transform:matrix(0.050310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.050310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.050310,0.000000,0.000000,0.250000,0,0);}
.mf_c00265{transform:matrix(0.057365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.057365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.057365,0.000000,0.000000,0.250000,0,0);}
.mab_c00265{transform:matrix(0.063816,0.001340,-0.005249,0.249945,0,0);-ms-transform:matrix(0.063816,0.001340,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.063816,0.001340,-0.005249,0.249945,0,0);}
.m3_c00265{transform:matrix(0.071275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.071275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.071275,0.000000,0.000000,0.250000,0,0);}
.m6_c00265{transform:matrix(0.072035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072035,0.000000,0.000000,0.250000,0,0);}
.ma9_c00265{transform:matrix(0.075978,0.001596,-0.005249,0.249945,0,0);-ms-transform:matrix(0.075978,0.001596,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.075978,0.001596,-0.005249,0.249945,0,0);}
.m76_c00265{transform:matrix(0.078325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.078325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.078325,0.000000,0.000000,0.250000,0,0);}
.m4c_c00265{transform:matrix(0.082835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.082835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.082835,0.000000,0.000000,0.250000,0,0);}
.md_c00265{transform:matrix(0.090700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090700,0.000000,0.000000,0.250000,0,0);}
.m28_c00265{transform:matrix(0.094533,-0.000662,0.001750,0.249994,0,0);-ms-transform:matrix(0.094533,-0.000662,0.001750,0.249994,0,0);-webkit-transform:matrix(0.094533,-0.000662,0.001750,0.249994,0,0);}
.m9_c00265{transform:matrix(0.096775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096775,0.000000,0.000000,0.250000,0,0);}
.m4f_c00265{transform:matrix(0.120935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120935,0.000000,0.000000,0.250000,0,0);}
.mae_c00265{transform:matrix(0.121573,0.002553,-0.005249,0.249945,0,0);-ms-transform:matrix(0.121573,0.002553,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.121573,0.002553,-0.005249,0.249945,0,0);}
.m12_c00265{transform:matrix(0.135470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135470,0.000000,0.000000,0.250000,0,0);}
.m4_c00265{transform:matrix(0.140235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140235,0.000000,0.000000,0.250000,0,0);}
.m2c_c00265{transform:matrix(0.149996,-0.001050,0.001750,0.249994,0,0);-ms-transform:matrix(0.149996,-0.001050,0.001750,0.249994,0,0);-webkit-transform:matrix(0.149996,-0.001050,0.001750,0.249994,0,0);}
.mc6_c00265{transform:matrix(0.155086,0.003257,-0.005249,0.249945,0,0);-ms-transform:matrix(0.155086,0.003257,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.155086,0.003257,-0.005249,0.249945,0,0);}
.md3_c00265{transform:matrix(0.155691,0.003270,-0.005249,0.249945,0,0);-ms-transform:matrix(0.155691,0.003270,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.155691,0.003270,-0.005249,0.249945,0,0);}
.m4a_c00265{transform:matrix(0.169375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169375,0.000000,0.000000,0.250000,0,0);}
.m1b_c00265{transform:matrix(0.171865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171865,0.000000,0.000000,0.250000,0,0);}
.mca_c00265{transform:matrix(0.173332,0.003640,-0.005249,0.249945,0,0);-ms-transform:matrix(0.173332,0.003640,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.173332,0.003640,-0.005249,0.249945,0,0);}
.m7b_c00265{transform:matrix(0.175860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175860,0.000000,0.000000,0.250000,0,0);}
.ma7_c00265{transform:matrix(0.178656,0.003752,-0.005249,0.249945,0,0);-ms-transform:matrix(0.178656,0.003752,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.178656,0.003752,-0.005249,0.249945,0,0);}
.mb7_c00265{transform:matrix(0.182145,0.003825,-0.005249,0.249945,0,0);-ms-transform:matrix(0.182145,0.003825,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.182145,0.003825,-0.005249,0.249945,0,0);}
.m88_c00265{transform:matrix(0.187016,-0.003553,0.004749,0.249955,0,0);-ms-transform:matrix(0.187016,-0.003553,0.004749,0.249955,0,0);-webkit-transform:matrix(0.187016,-0.003553,0.004749,0.249955,0,0);}
.m9a_c00265{transform:matrix(0.200024,-0.003800,0.004749,0.249955,0,0);-ms-transform:matrix(0.200024,-0.003800,0.004749,0.249955,0,0);-webkit-transform:matrix(0.200024,-0.003800,0.004749,0.249955,0,0);}
.m64_c00265{transform:matrix(0.202555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202555,0.000000,0.000000,0.250000,0,0);}
.m13_c00265{transform:matrix(0.206830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206830,0.000000,0.000000,0.250000,0,0);}
.m16_c00265{transform:matrix(0.207185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207185,0.000000,0.000000,0.250000,0,0);}
.m98_c00265{transform:matrix(0.207578,-0.003944,0.004749,0.249955,0,0);-ms-transform:matrix(0.207578,-0.003944,0.004749,0.249955,0,0);-webkit-transform:matrix(0.207578,-0.003944,0.004749,0.249955,0,0);}
.mdb_c00265{transform:matrix(0.208579,0.004380,-0.005249,0.249945,0,0);-ms-transform:matrix(0.208579,0.004380,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.208579,0.004380,-0.005249,0.249945,0,0);}
.m7e_c00265{transform:matrix(0.209365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209365,0.000000,0.000000,0.250000,0,0);}
.mce_c00265{transform:matrix(0.213948,0.004493,-0.005249,0.249945,0,0);-ms-transform:matrix(0.213948,0.004493,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.213948,0.004493,-0.005249,0.249945,0,0);}
.mc3_c00265{transform:matrix(0.215957,0.004535,-0.005249,0.249945,0,0);-ms-transform:matrix(0.215957,0.004535,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.215957,0.004535,-0.005249,0.249945,0,0);}
.md4_c00265{transform:matrix(0.216662,0.004550,-0.005249,0.249945,0,0);-ms-transform:matrix(0.216662,0.004550,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.216662,0.004550,-0.005249,0.249945,0,0);}
.mbe_c00265{transform:matrix(0.220361,0.004628,-0.005249,0.249945,0,0);-ms-transform:matrix(0.220361,0.004628,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.220361,0.004628,-0.005249,0.249945,0,0);}
.m1_c00265{transform:matrix(0.222990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222990,0.000000,0.000000,0.250000,0,0);}
.mb8_c00265{transform:matrix(0.223801,0.004700,-0.005249,0.249945,0,0);-ms-transform:matrix(0.223801,0.004700,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.223801,0.004700,-0.005249,0.249945,0,0);}
.md8_c00265{transform:matrix(0.225945,0.004745,-0.005249,0.249945,0,0);-ms-transform:matrix(0.225945,0.004745,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.225945,0.004745,-0.005249,0.249945,0,0);}
.m63_c00265{transform:matrix(0.229845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229845,0.000000,0.000000,0.250000,0,0);}
.m7f_c00265{transform:matrix(0.230800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230800,0.000000,0.000000,0.250000,0,0);}
.mdc_c00265{transform:matrix(0.230824,0.004847,-0.005249,0.249945,0,0);-ms-transform:matrix(0.230824,0.004847,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.230824,0.004847,-0.005249,0.249945,0,0);}
.m21_c00265{transform:matrix(0.231030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231030,0.000000,0.000000,0.250000,0,0);}
.m55_c00265{transform:matrix(0.232420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232420,0.000000,0.000000,0.250000,0,0);}
.mcc_c00265{transform:matrix(0.234493,0.004924,-0.005249,0.249945,0,0);-ms-transform:matrix(0.234493,0.004924,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.234493,0.004924,-0.005249,0.249945,0,0);}
.mcb_c00265{transform:matrix(0.235163,0.004938,-0.005249,0.249945,0,0);-ms-transform:matrix(0.235163,0.004938,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.235163,0.004938,-0.005249,0.249945,0,0);}
.mcf_c00265{transform:matrix(0.236873,0.004974,-0.005249,0.249945,0,0);-ms-transform:matrix(0.236873,0.004974,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.236873,0.004974,-0.005249,0.249945,0,0);}
.m81_c00265{transform:matrix(0.239555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239555,0.000000,0.000000,0.250000,0,0);}
.m59_c00265{transform:matrix(0.241495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241495,0.000000,0.000000,0.250000,0,0);}
.mbf_c00265{transform:matrix(0.243911,0.005122,-0.005249,0.249945,0,0);-ms-transform:matrix(0.243911,0.005122,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.243911,0.005122,-0.005249,0.249945,0,0);}
.m14_c00265{transform:matrix(0.244130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244130,0.000000,0.000000,0.250000,0,0);}
.m2f_c00265{transform:matrix(0.244789,-0.001714,0.001750,0.249994,0,0);-ms-transform:matrix(0.244789,-0.001714,0.001750,0.249994,0,0);-webkit-transform:matrix(0.244789,-0.001714,0.001750,0.249994,0,0);}
.m86_c00265{transform:matrix(0.245731,-0.004669,0.004749,0.249955,0,0);-ms-transform:matrix(0.245731,-0.004669,0.004749,0.249955,0,0);-webkit-transform:matrix(0.245731,-0.004669,0.004749,0.249955,0,0);}
.m62_c00265{transform:matrix(0.246840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246840,0.000000,0.000000,0.250000,0,0);}
.m8b_c00265{transform:matrix(0.247660,-0.004706,0.004749,0.249955,0,0);-ms-transform:matrix(0.247660,-0.004706,0.004749,0.249955,0,0);-webkit-transform:matrix(0.247660,-0.004706,0.004749,0.249955,0,0);}
.mb2_c00265{transform:matrix(0.252119,0.005295,-0.005249,0.249945,0,0);-ms-transform:matrix(0.252119,0.005295,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.252119,0.005295,-0.005249,0.249945,0,0);}
.m58_c00265{transform:matrix(0.252420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252420,0.000000,0.000000,0.250000,0,0);}
.m60_c00265{transform:matrix(0.254290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254290,0.000000,0.000000,0.250000,0,0);}
.m61_c00265{transform:matrix(0.258720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258720,0.000000,0.000000,0.250000,0,0);}
.mc0_c00265{transform:matrix(0.259703,0.005454,-0.005249,0.249945,0,0);-ms-transform:matrix(0.259703,0.005454,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.259703,0.005454,-0.005249,0.249945,0,0);}
.mc1_c00265{transform:matrix(0.262127,0.005505,-0.005249,0.249945,0,0);-ms-transform:matrix(0.262127,0.005505,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.262127,0.005505,-0.005249,0.249945,0,0);}
.m25_c00265{transform:matrix(0.262629,-0.001838,0.001750,0.249994,0,0);-ms-transform:matrix(0.262629,-0.001838,0.001750,0.249994,0,0);-webkit-transform:matrix(0.262629,-0.001838,0.001750,0.249994,0,0);}
.m5d_c00265{transform:matrix(0.265985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265985,0.000000,0.000000,0.250000,0,0);}
.mc9_c00265{transform:matrix(0.266761,0.005602,-0.005249,0.249945,0,0);-ms-transform:matrix(0.266761,0.005602,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.266761,0.005602,-0.005249,0.249945,0,0);}
.m69_c00265{transform:matrix(0.268330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268330,0.000000,0.000000,0.250000,0,0);}
.m39_c00265{transform:matrix(0.268613,-0.001880,0.001750,0.249994,0,0);-ms-transform:matrix(0.268613,-0.001880,0.001750,0.249994,0,0);-webkit-transform:matrix(0.268613,-0.001880,0.001750,0.249994,0,0);}
.m5e_c00265{transform:matrix(0.271035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271035,0.000000,0.000000,0.250000,0,0);}
.m7d_c00265{transform:matrix(0.271660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271660,0.000000,0.000000,0.250000,0,0);}
.m11_c00265{transform:matrix(0.275160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275160,0.000000,0.000000,0.250000,0,0);}
.maf_c00265{transform:matrix(0.275829,0.005792,-0.005249,0.249945,0,0);-ms-transform:matrix(0.275829,0.005792,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.275829,0.005792,-0.005249,0.249945,0,0);}
.m5f_c00265{transform:matrix(0.277895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277895,0.000000,0.000000,0.250000,0,0);}
.m5a_c00265{transform:matrix(0.277900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277900,0.000000,0.000000,0.250000,0,0);}
.md7_c00265{transform:matrix(0.277994,0.005838,-0.005249,0.249945,0,0);-ms-transform:matrix(0.277994,0.005838,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.277994,0.005838,-0.005249,0.249945,0,0);}
.md6_c00265{transform:matrix(0.278354,0.005845,-0.005249,0.249945,0,0);-ms-transform:matrix(0.278354,0.005845,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.278354,0.005845,-0.005249,0.249945,0,0);}
.m2e_c00265{transform:matrix(0.279463,-0.001956,0.001750,0.249994,0,0);-ms-transform:matrix(0.279463,-0.001956,0.001750,0.249994,0,0);-webkit-transform:matrix(0.279463,-0.001956,0.001750,0.249994,0,0);}
.m3e_c00265{transform:matrix(0.279503,-0.001957,0.001750,0.249994,0,0);-ms-transform:matrix(0.279503,-0.001957,0.001750,0.249994,0,0);-webkit-transform:matrix(0.279503,-0.001957,0.001750,0.249994,0,0);}
.m99_c00265{transform:matrix(0.279969,-0.005319,0.004749,0.249955,0,0);-ms-transform:matrix(0.279969,-0.005319,0.004749,0.249955,0,0);-webkit-transform:matrix(0.279969,-0.005319,0.004749,0.249955,0,0);}
.m2a_c00265{transform:matrix(0.280068,-0.001960,0.001750,0.249994,0,0);-ms-transform:matrix(0.280068,-0.001960,0.001750,0.249994,0,0);-webkit-transform:matrix(0.280068,-0.001960,0.001750,0.249994,0,0);}
.m3d_c00265{transform:matrix(0.282623,-0.001978,0.001750,0.249994,0,0);-ms-transform:matrix(0.282623,-0.001978,0.001750,0.249994,0,0);-webkit-transform:matrix(0.282623,-0.001978,0.001750,0.249994,0,0);}
.mcd_c00265{transform:matrix(0.283228,0.005948,-0.005249,0.249945,0,0);-ms-transform:matrix(0.283228,0.005948,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.283228,0.005948,-0.005249,0.249945,0,0);}
.m70_c00265{transform:matrix(0.283445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283445,0.000000,0.000000,0.250000,0,0);}
.ma0_c00265{transform:matrix(0.283492,0.005953,-0.005249,0.249945,0,0);-ms-transform:matrix(0.283492,0.005953,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.283492,0.005953,-0.005249,0.249945,0,0);}
.ma5_c00265{transform:matrix(0.283887,0.005962,-0.005249,0.249945,0,0);-ms-transform:matrix(0.283887,0.005962,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.283887,0.005962,-0.005249,0.249945,0,0);}
.m57_c00265{transform:matrix(0.284275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284275,0.000000,0.000000,0.250000,0,0);}
.mbc_c00265{transform:matrix(0.286172,0.006010,-0.005249,0.249945,0,0);-ms-transform:matrix(0.286172,0.006010,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.286172,0.006010,-0.005249,0.249945,0,0);}
.m89_c00265{transform:matrix(0.286988,-0.005453,0.004749,0.249955,0,0);-ms-transform:matrix(0.286988,-0.005453,0.004749,0.249955,0,0);-webkit-transform:matrix(0.286988,-0.005453,0.004749,0.249955,0,0);}
.mc2_c00265{transform:matrix(0.287452,0.006036,-0.005249,0.249945,0,0);-ms-transform:matrix(0.287452,0.006036,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.287452,0.006036,-0.005249,0.249945,0,0);}
.m54_c00265{transform:matrix(0.290880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290880,0.000000,0.000000,0.250000,0,0);}
.ma1_c00265{transform:matrix(0.291771,0.006127,-0.005249,0.249945,0,0);-ms-transform:matrix(0.291771,0.006127,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.291771,0.006127,-0.005249,0.249945,0,0);}
.m42_c00265{transform:matrix(0.291950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291950,0.000000,0.000000,0.250000,0,0);}
.ma_c00265{transform:matrix(0.294440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294440,0.000000,0.000000,0.250000,0,0);}
.m53_c00265{transform:matrix(0.294690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294690,0.000000,0.000000,0.250000,0,0);}
.m6d_c00265{transform:matrix(0.295370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295370,0.000000,0.000000,0.250000,0,0);}
.md9_c00265{transform:matrix(0.296265,0.006222,-0.005249,0.249945,0,0);-ms-transform:matrix(0.296265,0.006222,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.296265,0.006222,-0.005249,0.249945,0,0);}
.m73_c00265{transform:matrix(0.300225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300225,0.000000,0.000000,0.250000,0,0);}
.m66_c00265{transform:matrix(0.300895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300895,0.000000,0.000000,0.250000,0,0);}
.m90_c00265{transform:matrix(0.301936,-0.005737,0.004749,0.249955,0,0);-ms-transform:matrix(0.301936,-0.005737,0.004749,0.249955,0,0);-webkit-transform:matrix(0.301936,-0.005737,0.004749,0.249955,0,0);}
.m3b_c00265{transform:matrix(0.302448,-0.002117,0.001750,0.249994,0,0);-ms-transform:matrix(0.302448,-0.002117,0.001750,0.249994,0,0);-webkit-transform:matrix(0.302448,-0.002117,0.001750,0.249994,0,0);}
.m8a_c00265{transform:matrix(0.303615,-0.005769,0.004749,0.249955,0,0);-ms-transform:matrix(0.303615,-0.005769,0.004749,0.249955,0,0);-webkit-transform:matrix(0.303615,-0.005769,0.004749,0.249955,0,0);}
.m15_c00265{transform:matrix(0.306955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306955,0.000000,0.000000,0.250000,0,0);}
.ma2_c00265{transform:matrix(0.306992,0.006447,-0.005249,0.249945,0,0);-ms-transform:matrix(0.306992,0.006447,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.306992,0.006447,-0.005249,0.249945,0,0);}
.m93_c00265{transform:matrix(0.309124,-0.005873,0.004749,0.249955,0,0);-ms-transform:matrix(0.309124,-0.005873,0.004749,0.249955,0,0);-webkit-transform:matrix(0.309124,-0.005873,0.004749,0.249955,0,0);}
.mb1_c00265{transform:matrix(0.309177,0.006493,-0.005249,0.249945,0,0);-ms-transform:matrix(0.309177,0.006493,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.309177,0.006493,-0.005249,0.249945,0,0);}
.m95_c00265{transform:matrix(0.312919,-0.005945,0.004749,0.249955,0,0);-ms-transform:matrix(0.312919,-0.005945,0.004749,0.249955,0,0);-webkit-transform:matrix(0.312919,-0.005945,0.004749,0.249955,0,0);}
.m6e_c00265{transform:matrix(0.313665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313665,0.000000,0.000000,0.250000,0,0);}
.m71_c00265{transform:matrix(0.320960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320960,0.000000,0.000000,0.250000,0,0);}
.m6f_c00265{transform:matrix(0.323460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323460,0.000000,0.000000,0.250000,0,0);}
.m8e_c00265{transform:matrix(0.324087,-0.006158,0.004749,0.249955,0,0);-ms-transform:matrix(0.324087,-0.006158,0.004749,0.249955,0,0);-webkit-transform:matrix(0.324087,-0.006158,0.004749,0.249955,0,0);}
.m84_c00265{transform:matrix(0.324646,-0.006168,0.004749,0.249955,0,0);-ms-transform:matrix(0.324646,-0.006168,0.004749,0.249955,0,0);-webkit-transform:matrix(0.324646,-0.006168,0.004749,0.249955,0,0);}
.m72_c00265{transform:matrix(0.325575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325575,0.000000,0.000000,0.250000,0,0);}
.mc4_c00265{transform:matrix(0.328793,0.006905,-0.005249,0.249945,0,0);-ms-transform:matrix(0.328793,0.006905,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.328793,0.006905,-0.005249,0.249945,0,0);}
.mb4_c00265{transform:matrix(0.328872,0.006906,-0.005249,0.249945,0,0);-ms-transform:matrix(0.328872,0.006906,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.328872,0.006906,-0.005249,0.249945,0,0);}
.m3a_c00265{transform:matrix(0.331712,-0.002322,0.001750,0.249994,0,0);-ms-transform:matrix(0.331712,-0.002322,0.001750,0.249994,0,0);-webkit-transform:matrix(0.331712,-0.002322,0.001750,0.249994,0,0);}
.m27_c00265{transform:matrix(0.332307,-0.002326,0.001750,0.249994,0,0);-ms-transform:matrix(0.332307,-0.002326,0.001750,0.249994,0,0);-webkit-transform:matrix(0.332307,-0.002326,0.001750,0.249994,0,0);}
.m5_c00265{transform:matrix(0.338830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338830,0.000000,0.000000,0.250000,0,0);}
.m49_c00265{transform:matrix(0.339445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339445,0.000000,0.000000,0.250000,0,0);}
.m2b_c00265{transform:matrix(0.339977,-0.002380,0.001750,0.249994,0,0);-ms-transform:matrix(0.339977,-0.002380,0.001750,0.249994,0,0);-webkit-transform:matrix(0.339977,-0.002380,0.001750,0.249994,0,0);}
.m6b_c00265{transform:matrix(0.344330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344330,0.000000,0.000000,0.250000,0,0);}
.mc7_c00265{transform:matrix(0.351063,0.007372,-0.005249,0.249945,0,0);-ms-transform:matrix(0.351063,0.007372,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.351063,0.007372,-0.005249,0.249945,0,0);}
.md2_c00265{transform:matrix(0.356391,0.007484,-0.005249,0.249945,0,0);-ms-transform:matrix(0.356391,0.007484,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.356391,0.007484,-0.005249,0.249945,0,0);}
.m67_c00265{transform:matrix(0.359840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359840,0.000000,0.000000,0.250000,0,0);}
.m6a_c00265{transform:matrix(0.360025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360025,0.000000,0.000000,0.250000,0,0);}
.m0_c00265{transform:matrix(0.362355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362355,0.000000,0.000000,0.250000,0,0);}
.m4d_c00265{transform:matrix(0.364845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364845,0.000000,0.000000,0.250000,0,0);}
.m38_c00265{transform:matrix(0.367611,-0.002573,0.001750,0.249994,0,0);-ms-transform:matrix(0.367611,-0.002573,0.001750,0.249994,0,0);-webkit-transform:matrix(0.367611,-0.002573,0.001750,0.249994,0,0);}
.mac_c00265{transform:matrix(0.369184,0.007753,-0.005249,0.249945,0,0);-ms-transform:matrix(0.369184,0.007753,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.369184,0.007753,-0.005249,0.249945,0,0);}
.m1c_c00265{transform:matrix(0.369415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369415,0.000000,0.000000,0.250000,0,0);}
.m52_c00265{transform:matrix(0.374305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374305,0.000000,0.000000,0.250000,0,0);}
.m8c_c00265{transform:matrix(0.378842,-0.007198,0.004749,0.249955,0,0);-ms-transform:matrix(0.378842,-0.007198,0.004749,0.249955,0,0);-webkit-transform:matrix(0.378842,-0.007198,0.004749,0.249955,0,0);}
.mb_c00265{transform:matrix(0.381840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381840,0.000000,0.000000,0.250000,0,0);}
.maa_c00265{transform:matrix(0.382256,0.008027,-0.005249,0.249945,0,0);-ms-transform:matrix(0.382256,0.008027,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.382256,0.008027,-0.005249,0.249945,0,0);}
.m96_c00265{transform:matrix(0.385865,-0.007331,0.004749,0.249955,0,0);-ms-transform:matrix(0.385865,-0.007331,0.004749,0.249955,0,0);-webkit-transform:matrix(0.385865,-0.007331,0.004749,0.249955,0,0);}
.mbb_c00265{transform:matrix(0.395938,0.008315,-0.005249,0.249945,0,0);-ms-transform:matrix(0.395938,0.008315,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.395938,0.008315,-0.005249,0.249945,0,0);}
.m75_c00265{transform:matrix(0.397405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397405,0.000000,0.000000,0.250000,0,0);}
.m6c_c00265{transform:matrix(0.399345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399345,0.000000,0.000000,0.250000,0,0);}
.m3f_c00265{transform:matrix(0.403720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403720,0.000000,0.000000,0.250000,0,0);}
.md5_c00265{transform:matrix(0.404281,0.008490,-0.005249,0.249945,0,0);-ms-transform:matrix(0.404281,0.008490,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.404281,0.008490,-0.005249,0.249945,0,0);}
.mc8_c00265{transform:matrix(0.405511,0.008516,-0.005249,0.249945,0,0);-ms-transform:matrix(0.405511,0.008516,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.405511,0.008516,-0.005249,0.249945,0,0);}
.m68_c00265{transform:matrix(0.408045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408045,0.000000,0.000000,0.250000,0,0);}
.m32_c00265{transform:matrix(0.409655,-0.002868,0.001750,0.249994,0,0);-ms-transform:matrix(0.409655,-0.002868,0.001750,0.249994,0,0);-webkit-transform:matrix(0.409655,-0.002868,0.001750,0.249994,0,0);}
.m92_c00265{transform:matrix(0.410751,-0.007804,0.004749,0.249955,0,0);-ms-transform:matrix(0.410751,-0.007804,0.004749,0.249955,0,0);-webkit-transform:matrix(0.410751,-0.007804,0.004749,0.249955,0,0);}
.mba_c00265{transform:matrix(0.410764,0.008626,-0.005249,0.249945,0,0);-ms-transform:matrix(0.410764,0.008626,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.410764,0.008626,-0.005249,0.249945,0,0);}
.m3c_c00265{transform:matrix(0.411400,-0.002880,0.001750,0.249994,0,0);-ms-transform:matrix(0.411400,-0.002880,0.001750,0.249994,0,0);-webkit-transform:matrix(0.411400,-0.002880,0.001750,0.249994,0,0);}
.m51_c00265{transform:matrix(0.412625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412625,0.000000,0.000000,0.250000,0,0);}
.m8f_c00265{transform:matrix(0.413810,-0.007862,0.004749,0.249955,0,0);-ms-transform:matrix(0.413810,-0.007862,0.004749,0.249955,0,0);-webkit-transform:matrix(0.413810,-0.007862,0.004749,0.249955,0,0);}
.m78_c00265{transform:matrix(0.413950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413950,0.000000,0.000000,0.250000,0,0);}
.m23_c00265{transform:matrix(0.416135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416135,0.000000,0.000000,0.250000,0,0);}
.m97_c00265{transform:matrix(0.416625,-0.007916,0.004749,0.249955,0,0);-ms-transform:matrix(0.416625,-0.007916,0.004749,0.249955,0,0);-webkit-transform:matrix(0.416625,-0.007916,0.004749,0.249955,0,0);}
.m4e_c00265{transform:matrix(0.416935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416935,0.000000,0.000000,0.250000,0,0);}
.m4b_c00265{transform:matrix(0.420545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420545,0.000000,0.000000,0.250000,0,0);}
.m37_c00265{transform:matrix(0.420880,-0.002946,0.001750,0.249994,0,0);-ms-transform:matrix(0.420880,-0.002946,0.001750,0.249994,0,0);-webkit-transform:matrix(0.420880,-0.002946,0.001750,0.249994,0,0);}
.m1d_c00265{transform:matrix(0.426885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426885,0.000000,0.000000,0.250000,0,0);}
.m87_c00265{transform:matrix(0.428428,-0.008140,0.004749,0.249955,0,0);-ms-transform:matrix(0.428428,-0.008140,0.004749,0.249955,0,0);-webkit-transform:matrix(0.428428,-0.008140,0.004749,0.249955,0,0);}
.m85_c00265{transform:matrix(0.429787,-0.008166,0.004749,0.249955,0,0);-ms-transform:matrix(0.429787,-0.008166,0.004749,0.249955,0,0);-webkit-transform:matrix(0.429787,-0.008166,0.004749,0.249955,0,0);}
.mb5_c00265{transform:matrix(0.430805,0.009047,-0.005249,0.249945,0,0);-ms-transform:matrix(0.430805,0.009047,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.430805,0.009047,-0.005249,0.249945,0,0);}
.m83_c00265{transform:matrix(0.438475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.438475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.438475,0.000000,0.000000,0.250000,0,0);}
.m19_c00265{transform:matrix(0.440330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440330,0.000000,0.000000,0.250000,0,0);}
.m65_c00265{transform:matrix(0.442795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442795,0.000000,0.000000,0.250000,0,0);}
.m48_c00265{transform:matrix(0.443200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443200,0.000000,0.000000,0.250000,0,0);}
.m8d_c00265{transform:matrix(0.443485,-0.008426,0.004749,0.249955,0,0);-ms-transform:matrix(0.443485,-0.008426,0.004749,0.249955,0,0);-webkit-transform:matrix(0.443485,-0.008426,0.004749,0.249955,0,0);}
.m74_c00265{transform:matrix(0.470640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470640,0.000000,0.000000,0.250000,0,0);}
.mb9_c00265{transform:matrix(0.475620,0.009988,-0.005249,0.249945,0,0);-ms-transform:matrix(0.475620,0.009988,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.475620,0.009988,-0.005249,0.249945,0,0);}
.m5c_c00265{transform:matrix(0.477605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477605,0.000000,0.000000,0.250000,0,0);}
.m56_c00265{transform:matrix(0.479035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479035,0.000000,0.000000,0.250000,0,0);}
.m9f_c00265{transform:matrix(0.481784,0.010117,-0.005249,0.249945,0,0);-ms-transform:matrix(0.481784,0.010117,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.481784,0.010117,-0.005249,0.249945,0,0);}
.m80_c00265{transform:matrix(0.495760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495760,0.000000,0.000000,0.250000,0,0);}
.m40_c00265{transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);}
.m82_c00265{transform:matrix(0.498330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.498330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.498330,0.000000,0.000000,0.250000,0,0);}
.m7a_c00265{transform:matrix(0.518955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518955,0.000000,0.000000,0.250000,0,0);}
.md0_c00265{transform:matrix(0.520450,0.010929,-0.005249,0.249945,0,0);-ms-transform:matrix(0.520450,0.010929,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.520450,0.010929,-0.005249,0.249945,0,0);}
.m8_c00265{transform:matrix(0.522975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522975,0.000000,0.000000,0.250000,0,0);}
.ma4_c00265{transform:matrix(0.523165,0.010986,-0.005249,0.249945,0,0);-ms-transform:matrix(0.523165,0.010986,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.523165,0.010986,-0.005249,0.249945,0,0);}
.m29_c00265{transform:matrix(0.524272,-0.003670,0.001750,0.249994,0,0);-ms-transform:matrix(0.524272,-0.003670,0.001750,0.249994,0,0);-webkit-transform:matrix(0.524272,-0.003670,0.001750,0.249994,0,0);}
.m24_c00265{transform:matrix(0.527177,-0.003690,0.001750,0.249994,0,0);-ms-transform:matrix(0.527177,-0.003690,0.001750,0.249994,0,0);-webkit-transform:matrix(0.527177,-0.003690,0.001750,0.249994,0,0);}
.m9b_c00265{transform:matrix(0.542037,-0.010299,0.004749,0.249955,0,0);-ms-transform:matrix(0.542037,-0.010299,0.004749,0.249955,0,0);-webkit-transform:matrix(0.542037,-0.010299,0.004749,0.249955,0,0);}
.m33_c00265{transform:matrix(0.556011,-0.003892,0.001750,0.249994,0,0);-ms-transform:matrix(0.556011,-0.003892,0.001750,0.249994,0,0);-webkit-transform:matrix(0.556011,-0.003892,0.001750,0.249994,0,0);}
.mb6_c00265{transform:matrix(0.570209,0.011974,-0.005249,0.249945,0,0);-ms-transform:matrix(0.570209,0.011974,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.570209,0.011974,-0.005249,0.249945,0,0);}
.m1e_c00265{transform:matrix(0.571270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571270,0.000000,0.000000,0.250000,0,0);}
.m5b_c00265{transform:matrix(0.571825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571825,0.000000,0.000000,0.250000,0,0);}
.m50_c00265{transform:matrix(0.575445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575445,0.000000,0.000000,0.250000,0,0);}
.ma3_c00265{transform:matrix(0.577523,0.012128,-0.005249,0.249945,0,0);-ms-transform:matrix(0.577523,0.012128,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.577523,0.012128,-0.005249,0.249945,0,0);}
.m77_c00265{transform:matrix(0.580115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.580115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.580115,0.000000,0.000000,0.250000,0,0);}
.m9e_c00265{transform:matrix(0.592714,0.012447,-0.005249,0.249945,0,0);-ms-transform:matrix(0.592714,0.012447,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.592714,0.012447,-0.005249,0.249945,0,0);}
.mc_c00265{transform:matrix(0.600375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.600375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.600375,0.000000,0.000000,0.250000,0,0);}
.m41_c00265{transform:matrix(0.601260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.601260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.601260,0.000000,0.000000,0.250000,0,0);}
.ma6_c00265{transform:matrix(0.605332,0.012712,-0.005249,0.249945,0,0);-ms-transform:matrix(0.605332,0.012712,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.605332,0.012712,-0.005249,0.249945,0,0);}
.m9d_c00265{transform:matrix(0.611005,0.012831,-0.005249,0.249945,0,0);-ms-transform:matrix(0.611005,0.012831,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.611005,0.012831,-0.005249,0.249945,0,0);}
.m35_c00265{transform:matrix(0.655559,-0.004589,0.001750,0.249994,0,0);-ms-transform:matrix(0.655559,-0.004589,0.001750,0.249994,0,0);-webkit-transform:matrix(0.655559,-0.004589,0.001750,0.249994,0,0);}
.mbd_c00265{transform:matrix(0.658290,0.013824,-0.005249,0.249945,0,0);-ms-transform:matrix(0.658290,0.013824,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.658290,0.013824,-0.005249,0.249945,0,0);}
.m7c_c00265{transform:matrix(0.659005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.659005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.659005,0.000000,0.000000,0.250000,0,0);}
.mb0_c00265{transform:matrix(0.700696,0.014715,-0.005249,0.249945,0,0);-ms-transform:matrix(0.700696,0.014715,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.700696,0.014715,-0.005249,0.249945,0,0);}
.m36_c00265{transform:matrix(0.703403,-0.004924,0.001750,0.249994,0,0);-ms-transform:matrix(0.703403,-0.004924,0.001750,0.249994,0,0);-webkit-transform:matrix(0.703403,-0.004924,0.001750,0.249994,0,0);}
.m2d_c00265{transform:matrix(0.723052,-0.005061,0.001750,0.249994,0,0);-ms-transform:matrix(0.723052,-0.005061,0.001750,0.249994,0,0);-webkit-transform:matrix(0.723052,-0.005061,0.001750,0.249994,0,0);}
.m94_c00265{transform:matrix(0.729188,-0.013855,0.004749,0.249955,0,0);-ms-transform:matrix(0.729188,-0.013855,0.004749,0.249955,0,0);-webkit-transform:matrix(0.729188,-0.013855,0.004749,0.249955,0,0);}
.m34_c00265{transform:matrix(0.778301,-0.005448,0.001750,0.249994,0,0);-ms-transform:matrix(0.778301,-0.005448,0.001750,0.249994,0,0);-webkit-transform:matrix(0.778301,-0.005448,0.001750,0.249994,0,0);}
.m1a_c00265{transform:matrix(0.779400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.779400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.779400,0.000000,0.000000,0.250000,0,0);}
.m30_c00265{transform:matrix(0.837619,-0.005863,0.001750,0.249994,0,0);-ms-transform:matrix(0.837619,-0.005863,0.001750,0.249994,0,0);-webkit-transform:matrix(0.837619,-0.005863,0.001750,0.249994,0,0);}
.md1_c00265{transform:matrix(0.864849,0.018162,-0.005249,0.249945,0,0);-ms-transform:matrix(0.864849,0.018162,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.864849,0.018162,-0.005249,0.249945,0,0);}
.mda_c00265{transform:matrix(0.884175,0.018568,-0.005249,0.249945,0,0);-ms-transform:matrix(0.884175,0.018568,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.884175,0.018568,-0.005249,0.249945,0,0);}
.ma8_c00265{transform:matrix(0.942302,0.019788,-0.005249,0.249945,0,0);-ms-transform:matrix(0.942302,0.019788,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.942302,0.019788,-0.005249,0.249945,0,0);}
.mb3_c00265{transform:matrix(0.950930,0.019970,-0.005249,0.249945,0,0);-ms-transform:matrix(0.950930,0.019970,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.950930,0.019970,-0.005249,0.249945,0,0);}
.m20_c00265{transform:matrix(1.005345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.005345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.005345,0.000000,0.000000,0.250000,0,0);}
.m26_c00265{transform:matrix(1.013225,-0.007093,0.001750,0.249994,0,0);-ms-transform:matrix(1.013225,-0.007093,0.001750,0.249994,0,0);-webkit-transform:matrix(1.013225,-0.007093,0.001750,0.249994,0,0);}
.m22_c00265{transform:matrix(1.100325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.100325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.100325,0.000000,0.000000,0.250000,0,0);}
.m1f_c00265{transform:matrix(1.193860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.193860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.193860,0.000000,0.000000,0.250000,0,0);}
.m46_c00265{transform:matrix(1.356735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.356735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.356735,0.000000,0.000000,0.250000,0,0);}
.m47_c00265{transform:matrix(1.433170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.433170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.433170,0.000000,0.000000,0.250000,0,0);}
.m45_c00265{transform:matrix(1.834990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.834990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.834990,0.000000,0.000000,0.250000,0,0);}
.m43_c00265{transform:matrix(2.197900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.197900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.197900,0.000000,0.000000,0.250000,0,0);}
.v0_c00265{vertical-align:0.000000px;}
.ls0_c00265{letter-spacing:0.000000px;}
.sc__c00265{text-shadow:none;}
.sc0_c00265{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__c00265{-webkit-text-stroke:0px transparent;}
.sc0_c00265{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00265{word-spacing:0.000000px;}
.fc0_c00265{color:transparent;}
.fs0_c00265{font-size:18.000000px;}
.fs2_c00265{font-size:24.000000px;}
.fs5_c00265{font-size:42.000000px;}
.fs3_c00265{font-size:54.000000px;}
.fs4_c00265{font-size:66.000000px;}
.fs7_c00265{font-size:72.001764px;}
.fs1_c00265{font-size:78.000000px;}
.fsa_c00265{font-size:78.014078px;}
.fsc_c00265{font-size:78.017197px;}
.fs8_c00265{font-size:84.000000px;}
.fs6_c00265{font-size:84.002058px;}
.fsd_c00265{font-size:84.018520px;}
.fs9_c00265{font-size:90.000000px;}
.fsb_c00265{font-size:90.016244px;}
.fse_c00265{font-size:102.022489px;}
.fsf_c00265{font-size:108.023811px;}
.y0_c00265{bottom:0.000000px;}
.yb5_c00265{bottom:282.955463px;}
.yb4_c00265{bottom:283.998076px;}
.yb3_c00265{bottom:286.095483px;}
.yb2_c00265{bottom:286.354401px;}
.yb1_c00265{bottom:289.018716px;}
.yb0_c00265{bottom:289.782358px;}
.yaf_c00265{bottom:290.630872px;}
.yae_c00265{bottom:291.853959px;}
.yad_c00265{bottom:292.681360px;}
.yac_c00265{bottom:293.321088px;}
.yab_c00265{bottom:295.646925px;}
.ya6_c00265{bottom:316.368588px;}
.ya2_c00265{bottom:316.368742px;}
.ya3_c00265{bottom:316.368762px;}
.ya7_c00265{bottom:316.368903px;}
.ya5_c00265{bottom:316.369002px;}
.ya1_c00265{bottom:316.369209px;}
.ya4_c00265{bottom:316.369290px;}
.ya0_c00265{bottom:316.369500px;}
.ya8_c00265{bottom:316.369630px;}
.y9f_c00265{bottom:316.369947px;}
.yaa_c00265{bottom:316.369980px;}
.ya9_c00265{bottom:316.370334px;}
.y9e_c00265{bottom:347.168627px;}
.y9d_c00265{bottom:348.880884px;}
.y9c_c00265{bottom:349.048692px;}
.y9b_c00265{bottom:349.845249px;}
.y9a_c00265{bottom:351.059619px;}
.y99_c00265{bottom:352.838394px;}
.y98_c00265{bottom:353.413943px;}
.y97_c00265{bottom:353.977339px;}
.y96_c00265{bottom:355.044621px;}
.y95_c00265{bottom:355.437702px;}
.y94_c00265{bottom:356.590280px;}
.y93_c00265{bottom:357.296721px;}
.y92_c00265{bottom:358.551963px;}
.y91_c00265{bottom:358.822498px;}
.y90_c00265{bottom:380.662468px;}
.y8f_c00265{bottom:381.467889px;}
.y8e_c00265{bottom:381.994402px;}
.y8d_c00265{bottom:382.796850px;}
.y8c_c00265{bottom:384.576114px;}
.y8b_c00265{bottom:385.550284px;}
.y8a_c00265{bottom:386.263425px;}
.y89_c00265{bottom:387.056430px;}
.y88_c00265{bottom:387.423983px;}
.y87_c00265{bottom:388.461030px;}
.y86_c00265{bottom:389.059308px;}
.y85_c00265{bottom:414.794074px;}
.y84_c00265{bottom:414.909869px;}
.y83_c00265{bottom:415.170909px;}
.y82_c00265{bottom:415.449810px;}
.y81_c00265{bottom:416.001186px;}
.y80_c00265{bottom:416.906275px;}
.y7f_c00265{bottom:418.223291px;}
.y7e_c00265{bottom:418.786479px;}
.y7d_c00265{bottom:420.836814px;}
.y7c_c00265{bottom:421.500645px;}
.y7b_c00265{bottom:422.251731px;}
.y7a_c00265{bottom:423.709204px;}
.y79_c00265{bottom:424.994814px;}
.y78_c00265{bottom:426.487347px;}
.y77_c00265{bottom:427.541746px;}
.y76_c00265{bottom:428.404500px;}
.y6b_c00265{bottom:476.314848px;}
.y6c_c00265{bottom:477.620175px;}
.y6d_c00265{bottom:478.758895px;}
.y6e_c00265{bottom:481.332584px;}
.y6f_c00265{bottom:482.461208px;}
.y70_c00265{bottom:485.686590px;}
.y71_c00265{bottom:487.504883px;}
.y72_c00265{bottom:488.334221px;}
.y73_c00265{bottom:489.640232px;}
.y74_c00265{bottom:491.482212px;}
.y75_c00265{bottom:492.539961px;}
.y5d_c00265{bottom:506.530500px;}
.y5e_c00265{bottom:507.010241px;}
.y5f_c00265{bottom:508.903524px;}
.y60_c00265{bottom:509.776194px;}
.y61_c00265{bottom:511.431474px;}
.y62_c00265{bottom:511.736823px;}
.y63_c00265{bottom:512.604505px;}
.y64_c00265{bottom:513.284829px;}
.y65_c00265{bottom:515.146478px;}
.y66_c00265{bottom:516.031802px;}
.y67_c00265{bottom:516.643241px;}
.y68_c00265{bottom:517.127313px;}
.y69_c00265{bottom:518.864075px;}
.y6a_c00265{bottom:519.401413px;}
.y5c_c00265{bottom:560.790000px;}
.y4f_c00265{bottom:629.371500px;}
.y50_c00265{bottom:629.440500px;}
.y51_c00265{bottom:629.907000px;}
.y52_c00265{bottom:630.465000px;}
.y53_c00265{bottom:630.655500px;}
.y54_c00265{bottom:631.428000px;}
.y55_c00265{bottom:631.618500px;}
.y56_c00265{bottom:632.322000px;}
.y57_c00265{bottom:632.620500px;}
.y58_c00265{bottom:633.145500px;}
.y59_c00265{bottom:633.607500px;}
.y5a_c00265{bottom:634.077000px;}
.y5b_c00265{bottom:634.386000px;}
.y4e_c00265{bottom:666.618000px;}
.y4d_c00265{bottom:667.281000px;}
.y4c_c00265{bottom:668.475000px;}
.y4b_c00265{bottom:669.753000px;}
.y4a_c00265{bottom:670.236000px;}
.y49_c00265{bottom:670.938000px;}
.y48_c00265{bottom:671.889000px;}
.y47_c00265{bottom:673.417500px;}
.y46_c00265{bottom:674.410500px;}
.y45_c00265{bottom:675.405000px;}
.y44_c00265{bottom:675.943500px;}
.y43_c00265{bottom:676.411500px;}
.y42_c00265{bottom:676.891500px;}
.y34_c00265{bottom:691.201500px;}
.y35_c00265{bottom:691.563000px;}
.y36_c00265{bottom:692.008500px;}
.y37_c00265{bottom:692.340000px;}
.y38_c00265{bottom:693.426000px;}
.y39_c00265{bottom:693.702000px;}
.y3a_c00265{bottom:694.507500px;}
.y3b_c00265{bottom:695.014500px;}
.y3c_c00265{bottom:695.763000px;}
.y3d_c00265{bottom:695.986500px;}
.y3e_c00265{bottom:696.462000px;}
.y3f_c00265{bottom:697.192500px;}
.y40_c00265{bottom:697.777500px;}
.y41_c00265{bottom:698.229000px;}
.y25_c00265{bottom:699.840000px;}
.y33_c00265{bottom:726.234000px;}
.y32_c00265{bottom:728.617500px;}
.y31_c00265{bottom:729.090000px;}
.y30_c00265{bottom:731.862000px;}
.y2f_c00265{bottom:732.660000px;}
.y2e_c00265{bottom:734.652000px;}
.y2d_c00265{bottom:736.480500px;}
.y2c_c00265{bottom:736.945500px;}
.y2b_c00265{bottom:738.562500px;}
.y2a_c00265{bottom:739.842000px;}
.y29_c00265{bottom:740.742000px;}
.y28_c00265{bottom:741.144000px;}
.y27_c00265{bottom:762.754500px;}
.y24_c00265{bottom:872.910000px;}
.y26_c00265{bottom:889.527000px;}
.y23_c00265{bottom:920.803500px;}
.y15_c00265{bottom:947.699578px;}
.y16_c00265{bottom:947.780912px;}
.y17_c00265{bottom:948.156885px;}
.y18_c00265{bottom:948.463128px;}
.y19_c00265{bottom:949.013443px;}
.y1a_c00265{bottom:949.467169px;}
.y1b_c00265{bottom:949.756066px;}
.y1c_c00265{bottom:950.122590px;}
.y1d_c00265{bottom:950.606220px;}
.y1e_c00265{bottom:950.797383px;}
.y1f_c00265{bottom:951.090207px;}
.y20_c00265{bottom:951.534357px;}
.y21_c00265{bottom:951.907170px;}
.y22_c00265{bottom:952.511686px;}
.y8_c00265{bottom:980.038500px;}
.y9_c00265{bottom:980.308948px;}
.ya_c00265{bottom:980.502316px;}
.yb_c00265{bottom:981.312454px;}
.yd_c00265{bottom:981.473671px;}
.yc_c00265{bottom:981.542131px;}
.ye_c00265{bottom:981.795412px;}
.yf_c00265{bottom:982.191955px;}
.y10_c00265{bottom:982.612386px;}
.y11_c00265{bottom:982.730374px;}
.y12_c00265{bottom:983.164402px;}
.y13_c00265{bottom:983.427480px;}
.y14_c00265{bottom:983.930913px;}
.y7_c00265{bottom:1018.651500px;}
.y6_c00265{bottom:1038.967500px;}
.y5_c00265{bottom:1101.769500px;}
.y4_c00265{bottom:1123.812000px;}
.y3_c00265{bottom:1133.005500px;}
.y2_c00265{bottom:1137.154500px;}
.y1_c00265{bottom:1148.940000px;}
.h2_c00265{height:18.000000px;}
.h4_c00265{height:24.000000px;}
.h7_c00265{height:42.000000px;}
.h5_c00265{height:54.000000px;}
.h6_c00265{height:66.000000px;}
.h9_c00265{height:72.001764px;}
.h3_c00265{height:78.000000px;}
.hc_c00265{height:78.014078px;}
.he_c00265{height:78.017197px;}
.ha_c00265{height:84.000000px;}
.h8_c00265{height:84.002058px;}
.hf_c00265{height:84.018520px;}
.hb_c00265{height:90.000000px;}
.hd_c00265{height:90.016244px;}
.h10_c00265{height:102.022489px;}
.h11_c00265{height:108.023811px;}
.h0_c00265{height:1154.790000px;}
.h1_c00265{height:1155.000000px;}
.w0_c00265{width:915.000000px;}
.x0_c00265{left:0.000000px;}
.x30_c00265{left:26.072492px;}
.x23_c00265{left:33.621000px;}
.x31_c00265{left:37.691492px;}
.x6f_c00265{left:62.800500px;}
.x8c_c00265{left:66.864936px;}
.x4a_c00265{left:68.835000px;}
.x24_c00265{left:72.256500px;}
.x4b_c00265{left:86.295000px;}
.x70_c00265{left:88.050000px;}
.x32_c00265{left:91.401992px;}
.x5d_c00265{left:98.334000px;}
.x25_c00265{left:99.880500px;}
.x54_c00265{left:102.534000px;}
.x8d_c00265{left:106.787976px;}
.x82_c00265{left:110.623500px;}
.x67_c00265{left:112.809000px;}
.xa4_c00265{left:117.849615px;}
.x68_c00265{left:120.439500px;}
.x9d_c00265{left:124.212402px;}
.x4c_c00265{left:125.412000px;}
.x5e_c00265{left:127.603500px;}
.x33_c00265{left:135.150992px;}
.x55_c00265{left:143.044500px;}
.x78_c00265{left:146.396558px;}
.x94_c00265{left:157.885338px;}
.x5f_c00265{left:161.250000px;}
.x9e_c00265{left:163.100538px;}
.x56_c00265{left:173.121000px;}
.x8e_c00265{left:175.894170px;}
.x4d_c00265{left:181.071000px;}
.x71_c00265{left:187.696500px;}
.x79_c00265{left:194.722205px;}
.x95_c00265{left:197.099295px;}
.x8f_c00265{left:200.399757px;}
.x34_c00265{left:213.767492px;}
.x26_c00265{left:215.614500px;}
.x60_c00265{left:223.365000px;}
.x83_c00265{left:231.906000px;}
.x69_c00265{left:234.237000px;}
.x7a_c00265{left:236.885292px;}
.x28_c00265{left:238.645500px;}
.xa5_c00265{left:241.416335px;}
.x27_c00265{left:248.425500px;}
.x4e_c00265{left:251.383500px;}
.x90_c00265{left:253.311435px;}
.x6a_c00265{left:255.397500px;}
.x96_c00265{left:261.130827px;}
.x4f_c00265{left:271.606500px;}
.xa6_c00265{left:275.885661px;}
.x35_c00265{left:278.585491px;}
.x97_c00265{left:282.993213px;}
.x29_c00265{left:284.608500px;}
.x84_c00265{left:293.125500px;}
.x57_c00265{left:296.959500px;}
.x91_c00265{left:300.847920px;}
.x9f_c00265{left:309.472050px;}
.x36_c00265{left:319.856492px;}
.xa7_c00265{left:326.838948px;}
.x7b_c00265{left:332.222814px;}
.x72_c00265{left:336.817500px;}
.x2a_c00265{left:341.257500px;}
.x50_c00265{left:351.081000px;}
.x6b_c00265{left:362.296500px;}
.x92_c00265{left:365.816610px;}
.x58_c00265{left:370.168500px;}
.x37_c00265{left:372.216991px;}
.x7c_c00265{left:374.012459px;}
.x61_c00265{left:381.027000px;}
.x73_c00265{left:382.485000px;}
.xa0_c00265{left:391.840370px;}
.xa8_c00265{left:393.961196px;}
.x85_c00265{left:398.295000px;}
.x2b_c00265{left:401.319000px;}
.x98_c00265{left:405.487899px;}
.x59_c00265{left:416.262000px;}
.x2c_c00265{left:418.174500px;}
.x1_c00265{left:430.650000px;}
.x5_c00265{left:436.860000px;}
.x62_c00265{left:440.446500px;}
.xc_c00265{left:441.720000px;}
.x15_c00265{left:447.390000px;}
.xa1_c00265{left:449.093601px;}
.x6_c00265{left:463.860000px;}
.x18_c00265{left:467.370000px;}
.x38_c00265{left:468.615992px;}
.xd_c00265{left:470.610000px;}
.x51_c00265{left:472.342500px;}
.x6c_c00265{left:473.733000px;}
.x2d_c00265{left:480.178500px;}
.x1d_c00265{left:481.410000px;}
.xe_c00265{left:483.300000px;}
.x63_c00265{left:484.368000px;}
.x7d_c00265{left:493.461804px;}
.x3_c00265{left:503.550000px;}
.x7_c00265{left:505.170000px;}
.x39_c00265{left:510.447991px;}
.x1e_c00265{left:513.540000px;}
.x64_c00265{left:514.596000px;}
.x74_c00265{left:516.273000px;}
.x2e_c00265{left:517.761000px;}
.x8_c00265{left:521.100000px;}
.x86_c00265{left:527.541000px;}
.x6d_c00265{left:532.045500px;}
.x93_c00265{left:537.919782px;}
.x3d_c00265{left:538.920000px;}
.x19_c00265{left:541.620000px;}
.xa2_c00265{left:546.855693px;}
.x5a_c00265{left:547.858500px;}
.x3e_c00265{left:549.180000px;}
.x87_c00265{left:554.359500px;}
.x7e_c00265{left:560.809073px;}
.x75_c00265{left:562.869000px;}
.x99_c00265{left:571.743357px;}
.x3a_c00265{left:573.897991px;}
.xa3_c00265{left:581.693565px;}
.x6e_c00265{left:583.438500px;}
.xf_c00265{left:586.170000px;}
.x2f_c00265{left:589.680000px;}
.x7f_c00265{left:591.506399px;}
.x44_c00265{left:593.460000px;}
.x1f_c00265{left:595.350000px;}
.xa9_c00265{left:603.097497px;}
.x52_c00265{left:613.407000px;}
.x9a_c00265{left:615.963129px;}
.x88_c00265{left:617.074500px;}
.x47_c00265{left:620.730000px;}
.x9b_c00265{left:625.311728px;}
.x3b_c00265{left:627.156992px;}
.x48_c00265{left:631.530000px;}
.x20_c00265{left:633.420000px;}
.x21_c00265{left:635.850000px;}
.x80_c00265{left:639.868046px;}
.x10_c00265{left:642.330000px;}
.xaa_c00265{left:646.528757px;}
.x1a_c00265{left:651.240000px;}
.x45_c00265{left:653.130000px;}
.x1b_c00265{left:656.910000px;}
.x89_c00265{left:660.174000px;}
.x5b_c00265{left:667.489500px;}
.x65_c00265{left:669.118500px;}
.x11_c00265{left:674.190000px;}
.x46_c00265{left:679.320000px;}
.x8a_c00265{left:686.430000px;}
.x16_c00265{left:689.040000px;}
.x22_c00265{left:691.200000px;}
.x49_c00265{left:693.360000px;}
.x1c_c00265{left:695.790000px;}
.x8b_c00265{left:699.711000px;}
.x3f_c00265{left:703.620000px;}
.x12_c00265{left:705.510000px;}
.x5c_c00265{left:708.534000px;}
.x66_c00265{left:710.550000px;}
.x76_c00265{left:711.936000px;}
.x3c_c00265{left:713.516491px;}
.x53_c00265{left:717.010500px;}
.x9c_c00265{left:720.425213px;}
.x9_c00265{left:729.540000px;}
.x77_c00265{left:740.217000px;}
.x81_c00265{left:747.232215px;}
.x17_c00265{left:750.330000px;}
.x13_c00265{left:756.270000px;}
.xa_c00265{left:774.630000px;}
.x4_c00265{left:779.490000px;}
.x14_c00265{left:781.650000px;}
.xb_c00265{left:786.240000px;}
.x2_c00265{left:787.860000px;}
.x40_c00265{left:888.840000px;}
.x42_c00265{left:890.190000px;}
.x41_c00265{left:891.270000px;}
.x43_c00265{left:893.160000px;}
@media print{
.v0_c00265{vertical-align:0.000000pt;}
.ls0_c00265{letter-spacing:0.000000pt;}
.ws0_c00265{word-spacing:0.000000pt;}
.fs0_c00265{font-size:16.000000pt;}
.fs2_c00265{font-size:21.333333pt;}
.fs5_c00265{font-size:37.333333pt;}
.fs3_c00265{font-size:48.000000pt;}
.fs4_c00265{font-size:58.666667pt;}
.fs7_c00265{font-size:64.001568pt;}
.fs1_c00265{font-size:69.333333pt;}
.fsa_c00265{font-size:69.345847pt;}
.fsc_c00265{font-size:69.348620pt;}
.fs8_c00265{font-size:74.666667pt;}
.fs6_c00265{font-size:74.668496pt;}
.fsd_c00265{font-size:74.683129pt;}
.fs9_c00265{font-size:80.000000pt;}
.fsb_c00265{font-size:80.014439pt;}
.fse_c00265{font-size:90.686656pt;}
.fsf_c00265{font-size:96.021166pt;}
.y0_c00265{bottom:0.000000pt;}
.yb5_c00265{bottom:251.515967pt;}
.yb4_c00265{bottom:252.442735pt;}
.yb3_c00265{bottom:254.307096pt;}
.yb2_c00265{bottom:254.537245pt;}
.yb1_c00265{bottom:256.905525pt;}
.yb0_c00265{bottom:257.584319pt;}
.yaf_c00265{bottom:258.338553pt;}
.yae_c00265{bottom:259.425741pt;}
.yad_c00265{bottom:260.161209pt;}
.yac_c00265{bottom:260.729856pt;}
.yab_c00265{bottom:262.797267pt;}
.ya6_c00265{bottom:281.216523pt;}
.ya2_c00265{bottom:281.216660pt;}
.ya3_c00265{bottom:281.216677pt;}
.ya7_c00265{bottom:281.216803pt;}
.ya5_c00265{bottom:281.216891pt;}
.ya1_c00265{bottom:281.217075pt;}
.ya4_c00265{bottom:281.217147pt;}
.ya0_c00265{bottom:281.217333pt;}
.ya8_c00265{bottom:281.217449pt;}
.y9f_c00265{bottom:281.217731pt;}
.yaa_c00265{bottom:281.217760pt;}
.ya9_c00265{bottom:281.218075pt;}
.y9e_c00265{bottom:308.594335pt;}
.y9d_c00265{bottom:310.116341pt;}
.y9c_c00265{bottom:310.265504pt;}
.y9b_c00265{bottom:310.973555pt;}
.y9a_c00265{bottom:312.052995pt;}
.y99_c00265{bottom:313.634128pt;}
.y98_c00265{bottom:314.145727pt;}
.y97_c00265{bottom:314.646524pt;}
.y96_c00265{bottom:315.595219pt;}
.y95_c00265{bottom:315.944624pt;}
.y94_c00265{bottom:316.969137pt;}
.y93_c00265{bottom:317.597085pt;}
.y92_c00265{bottom:318.712856pt;}
.y91_c00265{bottom:318.953332pt;}
.y90_c00265{bottom:338.366639pt;}
.y8f_c00265{bottom:339.082568pt;}
.y8e_c00265{bottom:339.550580pt;}
.y8d_c00265{bottom:340.263867pt;}
.y8c_c00265{bottom:341.845435pt;}
.y8b_c00265{bottom:342.711364pt;}
.y8a_c00265{bottom:343.345267pt;}
.y89_c00265{bottom:344.050160pt;}
.y88_c00265{bottom:344.376873pt;}
.y87_c00265{bottom:345.298693pt;}
.y86_c00265{bottom:345.830496pt;}
.y85_c00265{bottom:368.705844pt;}
.y84_c00265{bottom:368.808772pt;}
.y83_c00265{bottom:369.040808pt;}
.y82_c00265{bottom:369.288720pt;}
.y81_c00265{bottom:369.778832pt;}
.y80_c00265{bottom:370.583356pt;}
.y7f_c00265{bottom:371.754036pt;}
.y7e_c00265{bottom:372.254648pt;}
.y7d_c00265{bottom:374.077168pt;}
.y7c_c00265{bottom:374.667240pt;}
.y7b_c00265{bottom:375.334872pt;}
.y7a_c00265{bottom:376.630404pt;}
.y79_c00265{bottom:377.773168pt;}
.y78_c00265{bottom:379.099864pt;}
.y77_c00265{bottom:380.037108pt;}
.y76_c00265{bottom:380.804000pt;}
.y6b_c00265{bottom:423.390976pt;}
.y6c_c00265{bottom:424.551267pt;}
.y6d_c00265{bottom:425.563463pt;}
.y6e_c00265{bottom:427.851185pt;}
.y6f_c00265{bottom:428.854407pt;}
.y70_c00265{bottom:431.721413pt;}
.y71_c00265{bottom:433.337673pt;}
.y72_c00265{bottom:434.074863pt;}
.y73_c00265{bottom:435.235761pt;}
.y74_c00265{bottom:436.873077pt;}
.y75_c00265{bottom:437.813299pt;}
.y5d_c00265{bottom:450.249333pt;}
.y5e_c00265{bottom:450.675769pt;}
.y5f_c00265{bottom:452.358688pt;}
.y60_c00265{bottom:453.134395pt;}
.y61_c00265{bottom:454.605755pt;}
.y62_c00265{bottom:454.877176pt;}
.y63_c00265{bottom:455.648449pt;}
.y64_c00265{bottom:456.253181pt;}
.y65_c00265{bottom:457.907980pt;}
.y66_c00265{bottom:458.694935pt;}
.y67_c00265{bottom:459.238436pt;}
.y68_c00265{bottom:459.668723pt;}
.y69_c00265{bottom:461.212511pt;}
.y6a_c00265{bottom:461.690145pt;}
.y5c_c00265{bottom:498.480000pt;}
.y4f_c00265{bottom:559.441333pt;}
.y50_c00265{bottom:559.502667pt;}
.y51_c00265{bottom:559.917333pt;}
.y52_c00265{bottom:560.413333pt;}
.y53_c00265{bottom:560.582667pt;}
.y54_c00265{bottom:561.269333pt;}
.y55_c00265{bottom:561.438667pt;}
.y56_c00265{bottom:562.064000pt;}
.y57_c00265{bottom:562.329333pt;}
.y58_c00265{bottom:562.796000pt;}
.y59_c00265{bottom:563.206667pt;}
.y5a_c00265{bottom:563.624000pt;}
.y5b_c00265{bottom:563.898667pt;}
.y4e_c00265{bottom:592.549333pt;}
.y4d_c00265{bottom:593.138667pt;}
.y4c_c00265{bottom:594.200000pt;}
.y4b_c00265{bottom:595.336000pt;}
.y4a_c00265{bottom:595.765333pt;}
.y49_c00265{bottom:596.389333pt;}
.y48_c00265{bottom:597.234667pt;}
.y47_c00265{bottom:598.593333pt;}
.y46_c00265{bottom:599.476000pt;}
.y45_c00265{bottom:600.360000pt;}
.y44_c00265{bottom:600.838667pt;}
.y43_c00265{bottom:601.254667pt;}
.y42_c00265{bottom:601.681333pt;}
.y34_c00265{bottom:614.401333pt;}
.y35_c00265{bottom:614.722667pt;}
.y36_c00265{bottom:615.118667pt;}
.y37_c00265{bottom:615.413333pt;}
.y38_c00265{bottom:616.378667pt;}
.y39_c00265{bottom:616.624000pt;}
.y3a_c00265{bottom:617.340000pt;}
.y3b_c00265{bottom:617.790667pt;}
.y3c_c00265{bottom:618.456000pt;}
.y3d_c00265{bottom:618.654667pt;}
.y3e_c00265{bottom:619.077333pt;}
.y3f_c00265{bottom:619.726667pt;}
.y40_c00265{bottom:620.246667pt;}
.y41_c00265{bottom:620.648000pt;}
.y25_c00265{bottom:622.080000pt;}
.y33_c00265{bottom:645.541333pt;}
.y32_c00265{bottom:647.660000pt;}
.y31_c00265{bottom:648.080000pt;}
.y30_c00265{bottom:650.544000pt;}
.y2f_c00265{bottom:651.253333pt;}
.y2e_c00265{bottom:653.024000pt;}
.y2d_c00265{bottom:654.649333pt;}
.y2c_c00265{bottom:655.062667pt;}
.y2b_c00265{bottom:656.500000pt;}
.y2a_c00265{bottom:657.637333pt;}
.y29_c00265{bottom:658.437333pt;}
.y28_c00265{bottom:658.794667pt;}
.y27_c00265{bottom:678.004000pt;}
.y24_c00265{bottom:775.920000pt;}
.y26_c00265{bottom:790.690667pt;}
.y23_c00265{bottom:818.492000pt;}
.y15_c00265{bottom:842.399625pt;}
.y16_c00265{bottom:842.471921pt;}
.y17_c00265{bottom:842.806120pt;}
.y18_c00265{bottom:843.078336pt;}
.y19_c00265{bottom:843.567505pt;}
.y1a_c00265{bottom:843.970817pt;}
.y1b_c00265{bottom:844.227615pt;}
.y1c_c00265{bottom:844.553413pt;}
.y1d_c00265{bottom:844.983307pt;}
.y1e_c00265{bottom:845.153229pt;}
.y1f_c00265{bottom:845.413517pt;}
.y20_c00265{bottom:845.808317pt;}
.y21_c00265{bottom:846.139707pt;}
.y22_c00265{bottom:846.677055pt;}
.y8_c00265{bottom:871.145333pt;}
.y9_c00265{bottom:871.385732pt;}
.ya_c00265{bottom:871.557615pt;}
.yb_c00265{bottom:872.277737pt;}
.yd_c00265{bottom:872.421041pt;}
.yc_c00265{bottom:872.481895pt;}
.ye_c00265{bottom:872.707033pt;}
.yf_c00265{bottom:873.059516pt;}
.y10_c00265{bottom:873.433232pt;}
.y11_c00265{bottom:873.538111pt;}
.y12_c00265{bottom:873.923913pt;}
.y13_c00265{bottom:874.157760pt;}
.y14_c00265{bottom:874.605256pt;}
.y7_c00265{bottom:905.468000pt;}
.y6_c00265{bottom:923.526667pt;}
.y5_c00265{bottom:979.350667pt;}
.y4_c00265{bottom:998.944000pt;}
.y3_c00265{bottom:1007.116000pt;}
.y2_c00265{bottom:1010.804000pt;}
.y1_c00265{bottom:1021.280000pt;}
.h2_c00265{height:16.000000pt;}
.h4_c00265{height:21.333333pt;}
.h7_c00265{height:37.333333pt;}
.h5_c00265{height:48.000000pt;}
.h6_c00265{height:58.666667pt;}
.h9_c00265{height:64.001568pt;}
.h3_c00265{height:69.333333pt;}
.hc_c00265{height:69.345847pt;}
.he_c00265{height:69.348620pt;}
.ha_c00265{height:74.666667pt;}
.h8_c00265{height:74.668496pt;}
.hf_c00265{height:74.683129pt;}
.hb_c00265{height:80.000000pt;}
.hd_c00265{height:80.014439pt;}
.h10_c00265{height:90.686656pt;}
.h11_c00265{height:96.021166pt;}
.h0_c00265{height:1026.480000pt;}
.h1_c00265{height:1026.666667pt;}
.w0_c00265{width:813.333333pt;}
.x0_c00265{left:0.000000pt;}
.x30_c00265{left:23.175548pt;}
.x23_c00265{left:29.885333pt;}
.x31_c00265{left:33.503548pt;}
.x6f_c00265{left:55.822667pt;}
.x8c_c00265{left:59.435499pt;}
.x4a_c00265{left:61.186667pt;}
.x24_c00265{left:64.228000pt;}
.x4b_c00265{left:76.706667pt;}
.x70_c00265{left:78.266667pt;}
.x32_c00265{left:81.246215pt;}
.x5d_c00265{left:87.408000pt;}
.x25_c00265{left:88.782667pt;}
.x54_c00265{left:91.141333pt;}
.x8d_c00265{left:94.922645pt;}
.x82_c00265{left:98.332000pt;}
.x67_c00265{left:100.274667pt;}
.xa4_c00265{left:104.755213pt;}
.x68_c00265{left:107.057333pt;}
.x9d_c00265{left:110.411024pt;}
.x4c_c00265{left:111.477333pt;}
.x5e_c00265{left:113.425333pt;}
.x33_c00265{left:120.134215pt;}
.x55_c00265{left:127.150667pt;}
.x78_c00265{left:130.130273pt;}
.x94_c00265{left:140.342523pt;}
.x5f_c00265{left:143.333333pt;}
.x9e_c00265{left:144.978256pt;}
.x56_c00265{left:153.885333pt;}
.x8e_c00265{left:156.350373pt;}
.x4d_c00265{left:160.952000pt;}
.x71_c00265{left:166.841333pt;}
.x79_c00265{left:173.086404pt;}
.x95_c00265{left:175.199373pt;}
.x8f_c00265{left:178.133117pt;}
.x34_c00265{left:190.015548pt;}
.x26_c00265{left:191.657333pt;}
.x60_c00265{left:198.546667pt;}
.x83_c00265{left:206.138667pt;}
.x69_c00265{left:208.210667pt;}
.x7a_c00265{left:210.564704pt;}
.x28_c00265{left:212.129333pt;}
.xa5_c00265{left:214.592297pt;}
.x27_c00265{left:220.822667pt;}
.x4e_c00265{left:223.452000pt;}
.x90_c00265{left:225.165720pt;}
.x6a_c00265{left:227.020000pt;}
.x96_c00265{left:232.116291pt;}
.x4f_c00265{left:241.428000pt;}
.xa6_c00265{left:245.231699pt;}
.x35_c00265{left:247.631548pt;}
.x97_c00265{left:251.549523pt;}
.x29_c00265{left:252.985333pt;}
.x84_c00265{left:260.556000pt;}
.x57_c00265{left:263.964000pt;}
.x91_c00265{left:267.420373pt;}
.x9f_c00265{left:275.086267pt;}
.x36_c00265{left:284.316881pt;}
.xa7_c00265{left:290.523509pt;}
.x7b_c00265{left:295.309168pt;}
.x72_c00265{left:299.393333pt;}
.x2a_c00265{left:303.340000pt;}
.x50_c00265{left:312.072000pt;}
.x6b_c00265{left:322.041333pt;}
.x92_c00265{left:325.170320pt;}
.x58_c00265{left:329.038667pt;}
.x37_c00265{left:330.859548pt;}
.x7c_c00265{left:332.455519pt;}
.x61_c00265{left:338.690667pt;}
.x73_c00265{left:339.986667pt;}
.xa0_c00265{left:348.302551pt;}
.xa8_c00265{left:350.187729pt;}
.x85_c00265{left:354.040000pt;}
.x2b_c00265{left:356.728000pt;}
.x98_c00265{left:360.433688pt;}
.x59_c00265{left:370.010667pt;}
.x2c_c00265{left:371.710667pt;}
.x1_c00265{left:382.800000pt;}
.x5_c00265{left:388.320000pt;}
.x62_c00265{left:391.508000pt;}
.xc_c00265{left:392.640000pt;}
.x15_c00265{left:397.680000pt;}
.xa1_c00265{left:399.194312pt;}
.x6_c00265{left:412.320000pt;}
.x18_c00265{left:415.440000pt;}
.x38_c00265{left:416.547548pt;}
.xd_c00265{left:418.320000pt;}
.x51_c00265{left:419.860000pt;}
.x6c_c00265{left:421.096000pt;}
.x2d_c00265{left:426.825333pt;}
.x1d_c00265{left:427.920000pt;}
.xe_c00265{left:429.600000pt;}
.x63_c00265{left:430.549333pt;}
.x7d_c00265{left:438.632715pt;}
.x3_c00265{left:447.600000pt;}
.x7_c00265{left:449.040000pt;}
.x39_c00265{left:453.731548pt;}
.x1e_c00265{left:456.480000pt;}
.x64_c00265{left:457.418667pt;}
.x74_c00265{left:458.909333pt;}
.x2e_c00265{left:460.232000pt;}
.x8_c00265{left:463.200000pt;}
.x86_c00265{left:468.925333pt;}
.x6d_c00265{left:472.929333pt;}
.x93_c00265{left:478.150917pt;}
.x3d_c00265{left:479.040000pt;}
.x19_c00265{left:481.440000pt;}
.xa2_c00265{left:486.093949pt;}
.x5a_c00265{left:486.985333pt;}
.x3e_c00265{left:488.160000pt;}
.x87_c00265{left:492.764000pt;}
.x7e_c00265{left:498.496953pt;}
.x75_c00265{left:500.328000pt;}
.x99_c00265{left:508.216317pt;}
.x3a_c00265{left:510.131548pt;}
.xa3_c00265{left:517.060947pt;}
.x6e_c00265{left:518.612000pt;}
.xf_c00265{left:521.040000pt;}
.x2f_c00265{left:524.160000pt;}
.x7f_c00265{left:525.783465pt;}
.x44_c00265{left:527.520000pt;}
.x1f_c00265{left:529.200000pt;}
.xa9_c00265{left:536.086664pt;}
.x52_c00265{left:545.250667pt;}
.x9a_c00265{left:547.522781pt;}
.x88_c00265{left:548.510667pt;}
.x47_c00265{left:551.760000pt;}
.x9b_c00265{left:555.832647pt;}
.x3b_c00265{left:557.472881pt;}
.x48_c00265{left:561.360000pt;}
.x20_c00265{left:563.040000pt;}
.x21_c00265{left:565.200000pt;}
.x80_c00265{left:568.771596pt;}
.x10_c00265{left:570.960000pt;}
.xaa_c00265{left:574.692228pt;}
.x1a_c00265{left:578.880000pt;}
.x45_c00265{left:580.560000pt;}
.x1b_c00265{left:583.920000pt;}
.x89_c00265{left:586.821333pt;}
.x5b_c00265{left:593.324000pt;}
.x65_c00265{left:594.772000pt;}
.x11_c00265{left:599.280000pt;}
.x46_c00265{left:603.840000pt;}
.x8a_c00265{left:610.160000pt;}
.x16_c00265{left:612.480000pt;}
.x22_c00265{left:614.400000pt;}
.x49_c00265{left:616.320000pt;}
.x1c_c00265{left:618.480000pt;}
.x8b_c00265{left:621.965333pt;}
.x3f_c00265{left:625.440000pt;}
.x12_c00265{left:627.120000pt;}
.x5c_c00265{left:629.808000pt;}
.x66_c00265{left:631.600000pt;}
.x76_c00265{left:632.832000pt;}
.x3c_c00265{left:634.236881pt;}
.x53_c00265{left:637.342667pt;}
.x9c_c00265{left:640.377967pt;}
.x9_c00265{left:648.480000pt;}
.x77_c00265{left:657.970667pt;}
.x81_c00265{left:664.206413pt;}
.x17_c00265{left:666.960000pt;}
.x13_c00265{left:672.240000pt;}
.xa_c00265{left:688.560000pt;}
.x4_c00265{left:692.880000pt;}
.x14_c00265{left:694.800000pt;}
.xb_c00265{left:698.880000pt;}
.x2_c00265{left:700.320000pt;}
.x40_c00265{left:790.080000pt;}
.x42_c00265{left:791.280000pt;}
.x41_c00265{left:792.240000pt;}
.x43_c00265{left:793.920000pt;}
}





/* 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_c00266 {
    display:none;
  }
  .loading-indicator_c00266.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00266 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_c00266 { 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_c00266" -> "#page-container .classname_c00266")
 */
.pf_c00266 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00266 { /* 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_c00266.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00266 { /* 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_c00266 { /* 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_c00266 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00266 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00266 {overflow:visible;}
  }
}
.c_c00266 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00266 { /* 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_c00266:after { /* webkit #35443 */
  content: '';
}
.t_c00266:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00266 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 */
}
.__c00266 { /* 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_c00266 { /* info for Javascript */
  display:none;
}
.l_c00266 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00266 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00266 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00266: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_c00266 {
    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_c00266.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00266.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_c00266 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00266{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00266;src:url('chunks/assets/font_fabf4b590f7fb32aea93ffb2.woff2')format("woff");}.ff1_c00266{font-family:ff1_c00266;line-height:1.000000;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;}
.mb_c00266{transform:matrix(0.016070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.016070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.016070,0.000000,0.000000,0.250000,0,0);}
.ma_c00266{transform:matrix(0.102100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102100,0.000000,0.000000,0.250000,0,0);}
.m122_c00266{transform:matrix(0.129568,0.000777,-0.001500,0.249996,0,0);-ms-transform:matrix(0.129568,0.000777,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.129568,0.000777,-0.001500,0.249996,0,0);}
.mdc_c00266{transform:matrix(0.149925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149925,0.000000,0.000000,0.250000,0,0);}
.md9_c00266{transform:matrix(0.154095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154095,0.000000,0.000000,0.250000,0,0);}
.m5d_c00266{transform:matrix(0.155580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155580,0.000000,0.000000,0.250000,0,0);}
.m11d_c00266{transform:matrix(0.156647,0.000940,-0.001500,0.249996,0,0);-ms-transform:matrix(0.156647,0.000940,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.156647,0.000940,-0.001500,0.249996,0,0);}
.mda_c00266{transform:matrix(0.158725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158725,0.000000,0.000000,0.250000,0,0);}
.md6_c00266{transform:matrix(0.163510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163510,0.000000,0.000000,0.250000,0,0);}
.md0_c00266{transform:matrix(0.165965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165965,0.000000,0.000000,0.250000,0,0);}
.mc7_c00266{transform:matrix(0.166480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166480,0.000000,0.000000,0.250000,0,0);}
.m62_c00266{transform:matrix(0.168510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168510,0.000000,0.000000,0.250000,0,0);}
.mce_c00266{transform:matrix(0.168870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168870,0.000000,0.000000,0.250000,0,0);}
.md8_c00266{transform:matrix(0.174165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174165,0.000000,0.000000,0.250000,0,0);}
.mc9_c00266{transform:matrix(0.176465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176465,0.000000,0.000000,0.250000,0,0);}
.mcc_c00266{transform:matrix(0.176980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176980,0.000000,0.000000,0.250000,0,0);}
.mb0_c00266{transform:matrix(0.179685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179685,0.000000,0.000000,0.250000,0,0);}
.m81_c00266{transform:matrix(0.181835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181835,0.000000,0.000000,0.250000,0,0);}
.md2_c00266{transform:matrix(0.182075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182075,0.000000,0.000000,0.250000,0,0);}
.mc8_c00266{transform:matrix(0.182560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182560,0.000000,0.000000,0.250000,0,0);}
.md5_c00266{transform:matrix(0.184790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184790,0.000000,0.000000,0.250000,0,0);}
.md1_c00266{transform:matrix(0.185160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185160,0.000000,0.000000,0.250000,0,0);}
.m25_c00266{transform:matrix(0.186095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186095,0.000000,0.000000,0.250000,0,0);}
.m61_c00266{transform:matrix(0.186230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186230,0.000000,0.000000,0.250000,0,0);}
.m5c_c00266{transform:matrix(0.189440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189440,0.000000,0.000000,0.250000,0,0);}
.m101_c00266{transform:matrix(0.189602,0.001138,-0.001500,0.249996,0,0);-ms-transform:matrix(0.189602,0.001138,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.189602,0.001138,-0.001500,0.249996,0,0);}
.mde_c00266{transform:matrix(0.190980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190980,0.000000,0.000000,0.250000,0,0);}
.m27_c00266{transform:matrix(0.192095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192095,0.000000,0.000000,0.250000,0,0);}
.md3_c00266{transform:matrix(0.192195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192195,0.000000,0.000000,0.250000,0,0);}
.mf6_c00266{transform:matrix(0.192585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192585,0.000000,0.000000,0.250000,0,0);}
.me6_c00266{transform:matrix(0.193505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193505,0.000000,0.000000,0.250000,0,0);}
.mcb_c00266{transform:matrix(0.193645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193645,0.000000,0.000000,0.250000,0,0);}
.md7_c00266{transform:matrix(0.194530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194530,0.000000,0.000000,0.250000,0,0);}
.m12f_c00266{transform:matrix(0.195160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195160,0.000000,0.000000,0.250000,0,0);}
.mca_c00266{transform:matrix(0.195300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195300,0.000000,0.000000,0.250000,0,0);}
.m22_c00266{transform:matrix(0.195405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195405,0.000000,0.000000,0.250000,0,0);}
.mf5_c00266{transform:matrix(0.195515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195515,0.000000,0.000000,0.250000,0,0);}
.m135_c00266{transform:matrix(0.195605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195605,0.000000,0.000000,0.250000,0,0);}
.mf3_c00266{transform:matrix(0.196060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196060,0.000000,0.000000,0.250000,0,0);}
.mcd_c00266{transform:matrix(0.196480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196480,0.000000,0.000000,0.250000,0,0);}
.m9_c00266{transform:matrix(0.196515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196515,0.000000,0.000000,0.250000,0,0);}
.m5e_c00266{transform:matrix(0.197025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197025,0.000000,0.000000,0.250000,0,0);}
.m130_c00266{transform:matrix(0.197910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197910,0.000000,0.000000,0.250000,0,0);}
.mdb_c00266{transform:matrix(0.198140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198140,0.000000,0.000000,0.250000,0,0);}
.m12a_c00266{transform:matrix(0.198406,0.001190,-0.001500,0.249996,0,0);-ms-transform:matrix(0.198406,0.001190,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.198406,0.001190,-0.001500,0.249996,0,0);}
.m24_c00266{transform:matrix(0.199140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199140,0.000000,0.000000,0.250000,0,0);}
.md4_c00266{transform:matrix(0.199540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199540,0.000000,0.000000,0.250000,0,0);}
.m65_c00266{transform:matrix(0.199550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199550,0.000000,0.000000,0.250000,0,0);}
.m29_c00266{transform:matrix(0.199720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199720,0.000000,0.000000,0.250000,0,0);}
.m133_c00266{transform:matrix(0.199935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199935,0.000000,0.000000,0.250000,0,0);}
.ma1_c00266{transform:matrix(0.200770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200770,0.000000,0.000000,0.250000,0,0);}
.m98_c00266{transform:matrix(0.201310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201310,0.000000,0.000000,0.250000,0,0);}
.m7f_c00266{transform:matrix(0.201910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201910,0.000000,0.000000,0.250000,0,0);}
.m63_c00266{transform:matrix(0.202020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202020,0.000000,0.000000,0.250000,0,0);}
.m86_c00266{transform:matrix(0.202105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202105,0.000000,0.000000,0.250000,0,0);}
.mcf_c00266{transform:matrix(0.202465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202465,0.000000,0.000000,0.250000,0,0);}
.m127_c00266{transform:matrix(0.203006,0.001218,-0.001500,0.249996,0,0);-ms-transform:matrix(0.203006,0.001218,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.203006,0.001218,-0.001500,0.249996,0,0);}
.m13d_c00266{transform:matrix(0.203450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203450,0.000000,0.000000,0.250000,0,0);}
.m66_c00266{transform:matrix(0.203520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203520,0.000000,0.000000,0.250000,0,0);}
.m1f_c00266{transform:matrix(0.203570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203570,0.000000,0.000000,0.250000,0,0);}
.m83_c00266{transform:matrix(0.203660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203660,0.000000,0.000000,0.250000,0,0);}
.m103_c00266{transform:matrix(0.204146,0.001225,-0.001500,0.249996,0,0);-ms-transform:matrix(0.204146,0.001225,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.204146,0.001225,-0.001500,0.249996,0,0);}
.m131_c00266{transform:matrix(0.204560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204560,0.000000,0.000000,0.250000,0,0);}
.m43_c00266{transform:matrix(0.204815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204815,0.000000,0.000000,0.250000,0,0);}
.m60_c00266{transform:matrix(0.204860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204860,0.000000,0.000000,0.250000,0,0);}
.m2_c00266{transform:matrix(0.204865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204865,0.000000,0.000000,0.250000,0,0);}
.m28_c00266{transform:matrix(0.204950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204950,0.000000,0.000000,0.250000,0,0);}
.m5f_c00266{transform:matrix(0.205295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205295,0.000000,0.000000,0.250000,0,0);}
.m84_c00266{transform:matrix(0.206155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206155,0.000000,0.000000,0.250000,0,0);}
.m21_c00266{transform:matrix(0.207085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207085,0.000000,0.000000,0.250000,0,0);}
.m123_c00266{transform:matrix(0.207421,0.001245,-0.001500,0.249996,0,0);-ms-transform:matrix(0.207421,0.001245,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.207421,0.001245,-0.001500,0.249996,0,0);}
.m126_c00266{transform:matrix(0.208061,0.001248,-0.001500,0.249996,0,0);-ms-transform:matrix(0.208061,0.001248,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.208061,0.001248,-0.001500,0.249996,0,0);}
.m7e_c00266{transform:matrix(0.208430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208430,0.000000,0.000000,0.250000,0,0);}
.m20_c00266{transform:matrix(0.208925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208925,0.000000,0.000000,0.250000,0,0);}
.m120_c00266{transform:matrix(0.209216,0.001255,-0.001500,0.249996,0,0);-ms-transform:matrix(0.209216,0.001255,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.209216,0.001255,-0.001500,0.249996,0,0);}
.m1_c00266{transform:matrix(0.209360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209360,0.000000,0.000000,0.250000,0,0);}
.m15_c00266{transform:matrix(0.209505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209505,0.000000,0.000000,0.250000,0,0);}
.m100_c00266{transform:matrix(0.209876,0.001259,-0.001500,0.249996,0,0);-ms-transform:matrix(0.209876,0.001259,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.209876,0.001259,-0.001500,0.249996,0,0);}
.m2a_c00266{transform:matrix(0.210130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210130,0.000000,0.000000,0.250000,0,0);}
.mc2_c00266{transform:matrix(0.210555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210555,0.000000,0.000000,0.250000,0,0);}
.m11f_c00266{transform:matrix(0.211366,0.001268,-0.001500,0.249996,0,0);-ms-transform:matrix(0.211366,0.001268,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.211366,0.001268,-0.001500,0.249996,0,0);}
.m64_c00266{transform:matrix(0.211445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211445,0.000000,0.000000,0.250000,0,0);}
.mfe_c00266{transform:matrix(0.211576,0.001269,-0.001500,0.249996,0,0);-ms-transform:matrix(0.211576,0.001269,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.211576,0.001269,-0.001500,0.249996,0,0);}
.m32_c00266{transform:matrix(0.211930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211930,0.000000,0.000000,0.250000,0,0);}
.m77_c00266{transform:matrix(0.212200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212200,0.000000,0.000000,0.250000,0,0);}
.m12_c00266{transform:matrix(0.212510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212510,0.000000,0.000000,0.250000,0,0);}
.m85_c00266{transform:matrix(0.212530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212530,0.000000,0.000000,0.250000,0,0);}
.mf8_c00266{transform:matrix(0.213360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213360,0.000000,0.000000,0.250000,0,0);}
.m7_c00266{transform:matrix(0.213985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213985,0.000000,0.000000,0.250000,0,0);}
.m138_c00266{transform:matrix(0.213995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213995,0.000000,0.000000,0.250000,0,0);}
.m104_c00266{transform:matrix(0.214276,0.001286,-0.001500,0.249996,0,0);-ms-transform:matrix(0.214276,0.001286,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.214276,0.001286,-0.001500,0.249996,0,0);}
.m99_c00266{transform:matrix(0.214530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214530,0.000000,0.000000,0.250000,0,0);}
.m3b_c00266{transform:matrix(0.215715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215715,0.000000,0.000000,0.250000,0,0);}
.mac_c00266{transform:matrix(0.215790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215790,0.000000,0.000000,0.250000,0,0);}
.ma9_c00266{transform:matrix(0.216335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216335,0.000000,0.000000,0.250000,0,0);}
.mfc_c00266{transform:matrix(0.216536,0.001299,-0.001500,0.249996,0,0);-ms-transform:matrix(0.216536,0.001299,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.216536,0.001299,-0.001500,0.249996,0,0);}
.mf9_c00266{transform:matrix(0.216540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216540,0.000000,0.000000,0.250000,0,0);}
.m26_c00266{transform:matrix(0.216610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216610,0.000000,0.000000,0.250000,0,0);}
.mc4_c00266{transform:matrix(0.216725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216725,0.000000,0.000000,0.250000,0,0);}
.m23_c00266{transform:matrix(0.216815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216815,0.000000,0.000000,0.250000,0,0);}
.m80_c00266{transform:matrix(0.217385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217385,0.000000,0.000000,0.250000,0,0);}
.m34_c00266{transform:matrix(0.217620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217620,0.000000,0.000000,0.250000,0,0);}
.m82_c00266{transform:matrix(0.217765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217765,0.000000,0.000000,0.250000,0,0);}
.m13a_c00266{transform:matrix(0.217980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217980,0.000000,0.000000,0.250000,0,0);}
.m5_c00266{transform:matrix(0.218205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218205,0.000000,0.000000,0.250000,0,0);}
.m2f_c00266{transform:matrix(0.218365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218365,0.000000,0.000000,0.250000,0,0);}
.mf4_c00266{transform:matrix(0.218405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218405,0.000000,0.000000,0.250000,0,0);}
.m18_c00266{transform:matrix(0.218440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218440,0.000000,0.000000,0.250000,0,0);}
.me4_c00266{transform:matrix(0.218795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218795,0.000000,0.000000,0.250000,0,0);}
.m12d_c00266{transform:matrix(0.219180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219180,0.000000,0.000000,0.250000,0,0);}
.maa_c00266{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.m128_c00266{transform:matrix(0.219886,0.001319,-0.001500,0.249996,0,0);-ms-transform:matrix(0.219886,0.001319,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.219886,0.001319,-0.001500,0.249996,0,0);}
.md_c00266{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.mae_c00266{transform:matrix(0.220505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220505,0.000000,0.000000,0.250000,0,0);}
.m87_c00266{transform:matrix(0.220865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220865,0.000000,0.000000,0.250000,0,0);}
.m3e_c00266{transform:matrix(0.221120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221120,0.000000,0.000000,0.250000,0,0);}
.m49_c00266{transform:matrix(0.221710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221710,0.000000,0.000000,0.250000,0,0);}
.mfd_c00266{transform:matrix(0.221956,0.001332,-0.001500,0.249996,0,0);-ms-transform:matrix(0.221956,0.001332,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.221956,0.001332,-0.001500,0.249996,0,0);}
.mdf_c00266{transform:matrix(0.222195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222195,0.000000,0.000000,0.250000,0,0);}
.m2b_c00266{transform:matrix(0.222525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222525,0.000000,0.000000,0.250000,0,0);}
.m113_c00266{transform:matrix(0.222666,0.001336,-0.001500,0.249996,0,0);-ms-transform:matrix(0.222666,0.001336,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.222666,0.001336,-0.001500,0.249996,0,0);}
.m11b_c00266{transform:matrix(0.223266,0.001340,-0.001500,0.249996,0,0);-ms-transform:matrix(0.223266,0.001340,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.223266,0.001340,-0.001500,0.249996,0,0);}
.m13b_c00266{transform:matrix(0.223395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223395,0.000000,0.000000,0.250000,0,0);}
.mb3_c00266{transform:matrix(0.223415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223415,0.000000,0.000000,0.250000,0,0);}
.m10e_c00266{transform:matrix(0.223671,0.001342,-0.001500,0.249996,0,0);-ms-transform:matrix(0.223671,0.001342,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.223671,0.001342,-0.001500,0.249996,0,0);}
.mff_c00266{transform:matrix(0.223846,0.001343,-0.001500,0.249996,0,0);-ms-transform:matrix(0.223846,0.001343,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.223846,0.001343,-0.001500,0.249996,0,0);}
.m5a_c00266{transform:matrix(0.225125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225125,0.000000,0.000000,0.250000,0,0);}
.mb8_c00266{transform:matrix(0.225465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225465,0.000000,0.000000,0.250000,0,0);}
.mfb_c00266{transform:matrix(0.225661,0.001354,-0.001500,0.249996,0,0);-ms-transform:matrix(0.225661,0.001354,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.225661,0.001354,-0.001500,0.249996,0,0);}
.m3a_c00266{transform:matrix(0.226025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226025,0.000000,0.000000,0.250000,0,0);}
.m47_c00266{transform:matrix(0.226065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226065,0.000000,0.000000,0.250000,0,0);}
.ma6_c00266{transform:matrix(0.226175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226175,0.000000,0.000000,0.250000,0,0);}
.mbd_c00266{transform:matrix(0.226280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226280,0.000000,0.000000,0.250000,0,0);}
.m134_c00266{transform:matrix(0.226375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226375,0.000000,0.000000,0.250000,0,0);}
.m102_c00266{transform:matrix(0.226471,0.001359,-0.001500,0.249996,0,0);-ms-transform:matrix(0.226471,0.001359,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.226471,0.001359,-0.001500,0.249996,0,0);}
.mf_c00266{transform:matrix(0.226575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226575,0.000000,0.000000,0.250000,0,0);}
.m69_c00266{transform:matrix(0.226835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226835,0.000000,0.000000,0.250000,0,0);}
.m115_c00266{transform:matrix(0.226961,0.001362,-0.001500,0.249996,0,0);-ms-transform:matrix(0.226961,0.001362,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.226961,0.001362,-0.001500,0.249996,0,0);}
.mad_c00266{transform:matrix(0.226970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226970,0.000000,0.000000,0.250000,0,0);}
.mf7_c00266{transform:matrix(0.227030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227030,0.000000,0.000000,0.250000,0,0);}
.m40_c00266{transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);}
.m124_c00266{transform:matrix(0.227771,0.001367,-0.001500,0.249996,0,0);-ms-transform:matrix(0.227771,0.001367,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.227771,0.001367,-0.001500,0.249996,0,0);}
.m3d_c00266{transform:matrix(0.227855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227855,0.000000,0.000000,0.250000,0,0);}
.mc6_c00266{transform:matrix(0.228470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228470,0.000000,0.000000,0.250000,0,0);}
.m5b_c00266{transform:matrix(0.228965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228965,0.000000,0.000000,0.250000,0,0);}
.mb4_c00266{transform:matrix(0.229115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229115,0.000000,0.000000,0.250000,0,0);}
.m31_c00266{transform:matrix(0.229150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229150,0.000000,0.000000,0.250000,0,0);}
.m1a_c00266{transform:matrix(0.229205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229205,0.000000,0.000000,0.250000,0,0);}
.mb1_c00266{transform:matrix(0.229400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229400,0.000000,0.000000,0.250000,0,0);}
.m109_c00266{transform:matrix(0.229586,0.001378,-0.001500,0.249996,0,0);-ms-transform:matrix(0.229586,0.001378,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.229586,0.001378,-0.001500,0.249996,0,0);}
.m137_c00266{transform:matrix(0.229775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229775,0.000000,0.000000,0.250000,0,0);}
.m12e_c00266{transform:matrix(0.229865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229865,0.000000,0.000000,0.250000,0,0);}
.m6b_c00266{transform:matrix(0.229930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229930,0.000000,0.000000,0.250000,0,0);}
.m4e_c00266{transform:matrix(0.230215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230215,0.000000,0.000000,0.250000,0,0);}
.m10_c00266{transform:matrix(0.230615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230615,0.000000,0.000000,0.250000,0,0);}
.ma5_c00266{transform:matrix(0.230680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230680,0.000000,0.000000,0.250000,0,0);}
.m105_c00266{transform:matrix(0.230871,0.001385,-0.001500,0.249996,0,0);-ms-transform:matrix(0.230871,0.001385,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.230871,0.001385,-0.001500,0.249996,0,0);}
.m3f_c00266{transform:matrix(0.231100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231100,0.000000,0.000000,0.250000,0,0);}
.maf_c00266{transform:matrix(0.231190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231190,0.000000,0.000000,0.250000,0,0);}
.mf0_c00266{transform:matrix(0.231380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231380,0.000000,0.000000,0.250000,0,0);}
.m39_c00266{transform:matrix(0.231715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231715,0.000000,0.000000,0.250000,0,0);}
.mfa_c00266{transform:matrix(0.231855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231855,0.000000,0.000000,0.250000,0,0);}
.m12b_c00266{transform:matrix(0.232211,0.001393,-0.001500,0.249996,0,0);-ms-transform:matrix(0.232211,0.001393,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.232211,0.001393,-0.001500,0.249996,0,0);}
.m13c_c00266{transform:matrix(0.232240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232240,0.000000,0.000000,0.250000,0,0);}
.m11_c00266{transform:matrix(0.232520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232520,0.000000,0.000000,0.250000,0,0);}
.m89_c00266{transform:matrix(0.232650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232650,0.000000,0.000000,0.250000,0,0);}
.m2c_c00266{transform:matrix(0.232725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232725,0.000000,0.000000,0.250000,0,0);}
.mc0_c00266{transform:matrix(0.232755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232755,0.000000,0.000000,0.250000,0,0);}
.m2e_c00266{transform:matrix(0.232975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232975,0.000000,0.000000,0.250000,0,0);}
.m6d_c00266{transform:matrix(0.233065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233065,0.000000,0.000000,0.250000,0,0);}
.m8_c00266{transform:matrix(0.233095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233095,0.000000,0.000000,0.250000,0,0);}
.m129_c00266{transform:matrix(0.233096,0.001399,-0.001500,0.249996,0,0);-ms-transform:matrix(0.233096,0.001399,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.233096,0.001399,-0.001500,0.249996,0,0);}
.m4_c00266{transform:matrix(0.233240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233240,0.000000,0.000000,0.250000,0,0);}
.me8_c00266{transform:matrix(0.233570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233570,0.000000,0.000000,0.250000,0,0);}
.m139_c00266{transform:matrix(0.233745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233745,0.000000,0.000000,0.250000,0,0);}
.m97_c00266{transform:matrix(0.233800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233800,0.000000,0.000000,0.250000,0,0);}
.m7a_c00266{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00266{transform:matrix(0.234535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234535,0.000000,0.000000,0.250000,0,0);}
.m9e_c00266{transform:matrix(0.234900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234900,0.000000,0.000000,0.250000,0,0);}
.m3c_c00266{transform:matrix(0.234990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234990,0.000000,0.000000,0.250000,0,0);}
.me2_c00266{transform:matrix(0.235175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235175,0.000000,0.000000,0.250000,0,0);}
.m3_c00266{transform:matrix(0.235580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235580,0.000000,0.000000,0.250000,0,0);}
.m112_c00266{transform:matrix(0.235911,0.001415,-0.001500,0.249996,0,0);-ms-transform:matrix(0.235911,0.001415,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.235911,0.001415,-0.001500,0.249996,0,0);}
.m37_c00266{transform:matrix(0.235920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235920,0.000000,0.000000,0.250000,0,0);}
.m6_c00266{transform:matrix(0.235935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235935,0.000000,0.000000,0.250000,0,0);}
.m125_c00266{transform:matrix(0.235956,0.001416,-0.001500,0.249996,0,0);-ms-transform:matrix(0.235956,0.001416,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.235956,0.001416,-0.001500,0.249996,0,0);}
.m17_c00266{transform:matrix(0.236175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236175,0.000000,0.000000,0.250000,0,0);}
.me9_c00266{transform:matrix(0.236440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236440,0.000000,0.000000,0.250000,0,0);}
.m8e_c00266{transform:matrix(0.237025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237025,0.000000,0.000000,0.250000,0,0);}
.m132_c00266{transform:matrix(0.237465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237465,0.000000,0.000000,0.250000,0,0);}
.m121_c00266{transform:matrix(0.237861,0.001427,-0.001500,0.249996,0,0);-ms-transform:matrix(0.237861,0.001427,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.237861,0.001427,-0.001500,0.249996,0,0);}
.m6e_c00266{transform:matrix(0.238060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238060,0.000000,0.000000,0.250000,0,0);}
.m118_c00266{transform:matrix(0.238211,0.001429,-0.001500,0.249996,0,0);-ms-transform:matrix(0.238211,0.001429,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.238211,0.001429,-0.001500,0.249996,0,0);}
.m41_c00266{transform:matrix(0.238535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238535,0.000000,0.000000,0.250000,0,0);}
.m95_c00266{transform:matrix(0.238765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238765,0.000000,0.000000,0.250000,0,0);}
.mee_c00266{transform:matrix(0.238850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238850,0.000000,0.000000,0.250000,0,0);}
.mab_c00266{transform:matrix(0.239555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239555,0.000000,0.000000,0.250000,0,0);}
.ma3_c00266{transform:matrix(0.240235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240235,0.000000,0.000000,0.250000,0,0);}
.m10b_c00266{transform:matrix(0.240631,0.001444,-0.001500,0.249996,0,0);-ms-transform:matrix(0.240631,0.001444,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.240631,0.001444,-0.001500,0.249996,0,0);}
.m6a_c00266{transform:matrix(0.240730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240730,0.000000,0.000000,0.250000,0,0);}
.m91_c00266{transform:matrix(0.240835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240835,0.000000,0.000000,0.250000,0,0);}
.m35_c00266{transform:matrix(0.241070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241070,0.000000,0.000000,0.250000,0,0);}
.me3_c00266{transform:matrix(0.241320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241320,0.000000,0.000000,0.250000,0,0);}
.ma7_c00266{transform:matrix(0.241550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241550,0.000000,0.000000,0.250000,0,0);}
.mbc_c00266{transform:matrix(0.241955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241955,0.000000,0.000000,0.250000,0,0);}
.mec_c00266{transform:matrix(0.242675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242675,0.000000,0.000000,0.250000,0,0);}
.m70_c00266{transform:matrix(0.243320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243320,0.000000,0.000000,0.250000,0,0);}
.m44_c00266{transform:matrix(0.243475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243475,0.000000,0.000000,0.250000,0,0);}
.mb2_c00266{transform:matrix(0.244280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244280,0.000000,0.000000,0.250000,0,0);}
.m9f_c00266{transform:matrix(0.244330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244330,0.000000,0.000000,0.250000,0,0);}
.m38_c00266{transform:matrix(0.244715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244715,0.000000,0.000000,0.250000,0,0);}
.m108_c00266{transform:matrix(0.244766,0.001469,-0.001500,0.249996,0,0);-ms-transform:matrix(0.244766,0.001469,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.244766,0.001469,-0.001500,0.249996,0,0);}
.m59_c00266{transform:matrix(0.244770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244770,0.000000,0.000000,0.250000,0,0);}
.ma0_c00266{transform:matrix(0.245200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245200,0.000000,0.000000,0.250000,0,0);}
.m45_c00266{transform:matrix(0.245390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245390,0.000000,0.000000,0.250000,0,0);}
.m9a_c00266{transform:matrix(0.245470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245470,0.000000,0.000000,0.250000,0,0);}
.ma8_c00266{transform:matrix(0.245755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245755,0.000000,0.000000,0.250000,0,0);}
.m72_c00266{transform:matrix(0.245970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245970,0.000000,0.000000,0.250000,0,0);}
.m36_c00266{transform:matrix(0.246430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246430,0.000000,0.000000,0.250000,0,0);}
.m71_c00266{transform:matrix(0.246630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246630,0.000000,0.000000,0.250000,0,0);}
.m90_c00266{transform:matrix(0.246705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246705,0.000000,0.000000,0.250000,0,0);}
.mb9_c00266{transform:matrix(0.246855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246855,0.000000,0.000000,0.250000,0,0);}
.mdd_c00266{transform:matrix(0.247430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247430,0.000000,0.000000,0.250000,0,0);}
.m11a_c00266{transform:matrix(0.247851,0.001487,-0.001500,0.249996,0,0);-ms-transform:matrix(0.247851,0.001487,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.247851,0.001487,-0.001500,0.249996,0,0);}
.m42_c00266{transform:matrix(0.249090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249090,0.000000,0.000000,0.250000,0,0);}
.m48_c00266{transform:matrix(0.249095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249095,0.000000,0.000000,0.250000,0,0);}
.m16_c00266{transform:matrix(0.249155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249155,0.000000,0.000000,0.250000,0,0);}
.m14_c00266{transform:matrix(0.249235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249235,0.000000,0.000000,0.250000,0,0);}
.m1e_c00266{transform:matrix(0.249350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249350,0.000000,0.000000,0.250000,0,0);}
.m67_c00266{transform:matrix(0.249670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249670,0.000000,0.000000,0.250000,0,0);}
.m1b_c00266{transform:matrix(0.249820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249820,0.000000,0.000000,0.250000,0,0);}
.m96_c00266{transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);}
.m92_c00266{transform:matrix(0.250335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250335,0.000000,0.000000,0.250000,0,0);}
.m46_c00266{transform:matrix(0.250390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250390,0.000000,0.000000,0.250000,0,0);}
.m6c_c00266{transform:matrix(0.250690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250690,0.000000,0.000000,0.250000,0,0);}
.me7_c00266{transform:matrix(0.250705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250705,0.000000,0.000000,0.250000,0,0);}
.m93_c00266{transform:matrix(0.250860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250860,0.000000,0.000000,0.250000,0,0);}
.me5_c00266{transform:matrix(0.251020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251020,0.000000,0.000000,0.250000,0,0);}
.m1d_c00266{transform:matrix(0.251170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251170,0.000000,0.000000,0.250000,0,0);}
.mb5_c00266{transform:matrix(0.251235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251235,0.000000,0.000000,0.250000,0,0);}
.mef_c00266{transform:matrix(0.251450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251450,0.000000,0.000000,0.250000,0,0);}
.ma4_c00266{transform:matrix(0.251545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251545,0.000000,0.000000,0.250000,0,0);}
.m53_c00266{transform:matrix(0.251755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251755,0.000000,0.000000,0.250000,0,0);}
.m8c_c00266{transform:matrix(0.251795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251795,0.000000,0.000000,0.250000,0,0);}
.m111_c00266{transform:matrix(0.251865,0.001511,-0.001500,0.249996,0,0);-ms-transform:matrix(0.251865,0.001511,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.251865,0.001511,-0.001500,0.249996,0,0);}
.mf2_c00266{transform:matrix(0.251875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251875,0.000000,0.000000,0.250000,0,0);}
.m50_c00266{transform:matrix(0.251895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251895,0.000000,0.000000,0.250000,0,0);}
.m9d_c00266{transform:matrix(0.252040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252040,0.000000,0.000000,0.250000,0,0);}
.m94_c00266{transform:matrix(0.252300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252300,0.000000,0.000000,0.250000,0,0);}
.m75_c00266{transform:matrix(0.252485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252485,0.000000,0.000000,0.250000,0,0);}
.mc1_c00266{transform:matrix(0.252890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252890,0.000000,0.000000,0.250000,0,0);}
.mf1_c00266{transform:matrix(0.253160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253160,0.000000,0.000000,0.250000,0,0);}
.m68_c00266{transform:matrix(0.253820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253820,0.000000,0.000000,0.250000,0,0);}
.m4d_c00266{transform:matrix(0.254310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254310,0.000000,0.000000,0.250000,0,0);}
.m2d_c00266{transform:matrix(0.254345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254345,0.000000,0.000000,0.250000,0,0);}
.me1_c00266{transform:matrix(0.254400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254400,0.000000,0.000000,0.250000,0,0);}
.m117_c00266{transform:matrix(0.254470,0.001527,-0.001500,0.249996,0,0);-ms-transform:matrix(0.254470,0.001527,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.254470,0.001527,-0.001500,0.249996,0,0);}
.m33_c00266{transform:matrix(0.255150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255150,0.000000,0.000000,0.250000,0,0);}
.m110_c00266{transform:matrix(0.255435,0.001533,-0.001500,0.249996,0,0);-ms-transform:matrix(0.255435,0.001533,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.255435,0.001533,-0.001500,0.249996,0,0);}
.m55_c00266{transform:matrix(0.255440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255440,0.000000,0.000000,0.250000,0,0);}
.m1c_c00266{transform:matrix(0.255915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255915,0.000000,0.000000,0.250000,0,0);}
.ma2_c00266{transform:matrix(0.256460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256460,0.000000,0.000000,0.250000,0,0);}
.m79_c00266{transform:matrix(0.256625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256625,0.000000,0.000000,0.250000,0,0);}
.mbe_c00266{transform:matrix(0.256915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256915,0.000000,0.000000,0.250000,0,0);}
.m10c_c00266{transform:matrix(0.257105,0.001543,-0.001500,0.249996,0,0);-ms-transform:matrix(0.257105,0.001543,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.257105,0.001543,-0.001500,0.249996,0,0);}
.m6f_c00266{transform:matrix(0.257170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257170,0.000000,0.000000,0.250000,0,0);}
.m19_c00266{transform:matrix(0.257320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257320,0.000000,0.000000,0.250000,0,0);}
.meb_c00266{transform:matrix(0.257450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257450,0.000000,0.000000,0.250000,0,0);}
.m9b_c00266{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m13_c00266{transform:matrix(0.257600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257600,0.000000,0.000000,0.250000,0,0);}
.mb7_c00266{transform:matrix(0.257700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257700,0.000000,0.000000,0.250000,0,0);}
.m30_c00266{transform:matrix(0.257805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257805,0.000000,0.000000,0.250000,0,0);}
.m10d_c00266{transform:matrix(0.258115,0.001549,-0.001500,0.249996,0,0);-ms-transform:matrix(0.258115,0.001549,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.258115,0.001549,-0.001500,0.249996,0,0);}
.me_c00266{transform:matrix(0.258570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258570,0.000000,0.000000,0.250000,0,0);}
.mb6_c00266{transform:matrix(0.259515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259515,0.000000,0.000000,0.250000,0,0);}
.mc3_c00266{transform:matrix(0.259615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259615,0.000000,0.000000,0.250000,0,0);}
.mbf_c00266{transform:matrix(0.259780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259780,0.000000,0.000000,0.250000,0,0);}
.m76_c00266{transform:matrix(0.259945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259945,0.000000,0.000000,0.250000,0,0);}
.me0_c00266{transform:matrix(0.260020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260020,0.000000,0.000000,0.250000,0,0);}
.m51_c00266{transform:matrix(0.260200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260200,0.000000,0.000000,0.250000,0,0);}
.m7d_c00266{transform:matrix(0.260725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260725,0.000000,0.000000,0.250000,0,0);}
.m56_c00266{transform:matrix(0.260730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260730,0.000000,0.000000,0.250000,0,0);}
.mba_c00266{transform:matrix(0.261120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261120,0.000000,0.000000,0.250000,0,0);}
.m10f_c00266{transform:matrix(0.261380,0.001568,-0.001500,0.249996,0,0);-ms-transform:matrix(0.261380,0.001568,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.261380,0.001568,-0.001500,0.249996,0,0);}
.m11c_c00266{transform:matrix(0.263560,0.001581,-0.001500,0.249996,0,0);-ms-transform:matrix(0.263560,0.001581,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.263560,0.001581,-0.001500,0.249996,0,0);}
.m8b_c00266{transform:matrix(0.263760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263760,0.000000,0.000000,0.250000,0,0);}
.mbb_c00266{transform:matrix(0.264215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264215,0.000000,0.000000,0.250000,0,0);}
.med_c00266{transform:matrix(0.264375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264375,0.000000,0.000000,0.250000,0,0);}
.mea_c00266{transform:matrix(0.264985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264985,0.000000,0.000000,0.250000,0,0);}
.m9c_c00266{transform:matrix(0.265995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265995,0.000000,0.000000,0.250000,0,0);}
.m114_c00266{transform:matrix(0.266940,0.001602,-0.001500,0.249996,0,0);-ms-transform:matrix(0.266940,0.001602,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.266940,0.001602,-0.001500,0.249996,0,0);}
.m11e_c00266{transform:matrix(0.268255,0.001610,-0.001500,0.249996,0,0);-ms-transform:matrix(0.268255,0.001610,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.268255,0.001610,-0.001500,0.249996,0,0);}
.m7c_c00266{transform:matrix(0.268550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268550,0.000000,0.000000,0.250000,0,0);}
.mc5_c00266{transform:matrix(0.268610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268610,0.000000,0.000000,0.250000,0,0);}
.m106_c00266{transform:matrix(0.268825,0.001613,-0.001500,0.249996,0,0);-ms-transform:matrix(0.268825,0.001613,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.268825,0.001613,-0.001500,0.249996,0,0);}
.m12c_c00266{transform:matrix(0.268910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268910,0.000000,0.000000,0.250000,0,0);}
.m78_c00266{transform:matrix(0.269925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269925,0.000000,0.000000,0.250000,0,0);}
.m10a_c00266{transform:matrix(0.270000,0.001620,-0.001500,0.249996,0,0);-ms-transform:matrix(0.270000,0.001620,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.270000,0.001620,-0.001500,0.249996,0,0);}
.m136_c00266{transform:matrix(0.270280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270280,0.000000,0.000000,0.250000,0,0);}
.m4a_c00266{transform:matrix(0.270945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270945,0.000000,0.000000,0.250000,0,0);}
.m88_c00266{transform:matrix(0.271195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271195,0.000000,0.000000,0.250000,0,0);}
.m57_c00266{transform:matrix(0.272170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272170,0.000000,0.000000,0.250000,0,0);}
.mc_c00266{transform:matrix(0.272515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272515,0.000000,0.000000,0.250000,0,0);}
.m73_c00266{transform:matrix(0.272615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272615,0.000000,0.000000,0.250000,0,0);}
.m116_c00266{transform:matrix(0.272920,0.001638,-0.001500,0.249996,0,0);-ms-transform:matrix(0.272920,0.001638,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.272920,0.001638,-0.001500,0.249996,0,0);}
.m4b_c00266{transform:matrix(0.273455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273455,0.000000,0.000000,0.250000,0,0);}
.m54_c00266{transform:matrix(0.274175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274175,0.000000,0.000000,0.250000,0,0);}
.m52_c00266{transform:matrix(0.276610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276610,0.000000,0.000000,0.250000,0,0);}
.m7b_c00266{transform:matrix(0.276900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276900,0.000000,0.000000,0.250000,0,0);}
.m58_c00266{transform:matrix(0.279765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279765,0.000000,0.000000,0.250000,0,0);}
.m107_c00266{transform:matrix(0.279795,0.001679,-0.001500,0.249996,0,0);-ms-transform:matrix(0.279795,0.001679,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.279795,0.001679,-0.001500,0.249996,0,0);}
.m4c_c00266{transform:matrix(0.279800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279800,0.000000,0.000000,0.250000,0,0);}
.m119_c00266{transform:matrix(0.281170,0.001687,-0.001500,0.249996,0,0);-ms-transform:matrix(0.281170,0.001687,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.281170,0.001687,-0.001500,0.249996,0,0);}
.m8f_c00266{transform:matrix(0.281425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281425,0.000000,0.000000,0.250000,0,0);}
.m4f_c00266{transform:matrix(0.282235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282235,0.000000,0.000000,0.250000,0,0);}
.m74_c00266{transform:matrix(0.283490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283490,0.000000,0.000000,0.250000,0,0);}
.m8d_c00266{transform:matrix(0.289570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289570,0.000000,0.000000,0.250000,0,0);}
.m0_c00266{transform:matrix(0.458550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458550,0.000000,0.000000,0.250000,0,0);}
.v0_c00266{vertical-align:0.000000px;}
.ls0_c00266{letter-spacing:0.000000px;}
.sc__c00266{text-shadow:none;}
.sc0_c00266{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__c00266{-webkit-text-stroke:0px transparent;}
.sc0_c00266{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00266{word-spacing:0.000000px;}
._0_c00266{width:35.543478px;}
.fc0_c00266{color:transparent;}
.fs0_c00266{font-size:72.000000px;}
.fs7_c00266{font-size:72.001296px;}
.fs2_c00266{font-size:78.000000px;}
.fs1_c00266{font-size:84.000000px;}
.fs6_c00266{font-size:84.001512px;}
.fs3_c00266{font-size:90.000000px;}
.fs4_c00266{font-size:96.000000px;}
.fs5_c00266{font-size:102.000000px;}
.y0_c00266{bottom:0.000000px;}
.y4b_c00266{bottom:124.980000px;}
.y4a_c00266{bottom:157.674000px;}
.y49_c00266{bottom:217.507419px;}
.y48_c00266{bottom:217.670448px;}
.y47_c00266{bottom:218.105232px;}
.y46_c00266{bottom:218.495394px;}
.y45_c00266{bottom:218.712714px;}
.y44_c00266{bottom:218.885592px;}
.y43_c00266{bottom:219.321825px;}
.y42_c00266{bottom:219.595212px;}
.y41_c00266{bottom:219.763101px;}
.y40_c00266{bottom:219.860250px;}
.y3f_c00266{bottom:220.474350px;}
.y3e_c00266{bottom:220.642221px;}
.y3d_c00266{bottom:220.862790px;}
.y30_c00266{bottom:251.829105px;}
.y31_c00266{bottom:251.829345px;}
.y32_c00266{bottom:251.829945px;}
.y33_c00266{bottom:251.830134px;}
.y35_c00266{bottom:251.830263px;}
.y36_c00266{bottom:251.830692px;}
.y34_c00266{bottom:251.830734px;}
.y37_c00266{bottom:251.830761px;}
.y39_c00266{bottom:251.830779px;}
.y3c_c00266{bottom:251.830788px;}
.y3a_c00266{bottom:251.831259px;}
.y38_c00266{bottom:251.831310px;}
.y3b_c00266{bottom:251.831388px;}
.y27_c00266{bottom:283.140666px;}
.y2b_c00266{bottom:283.140744px;}
.y2a_c00266{bottom:283.140864px;}
.y26_c00266{bottom:283.140906px;}
.y29_c00266{bottom:283.140975px;}
.y28_c00266{bottom:283.141095px;}
.y25_c00266{bottom:283.141137px;}
.y2c_c00266{bottom:283.141473px;}
.y24_c00266{bottom:283.141728px;}
.y2d_c00266{bottom:283.141953px;}
.y2e_c00266{bottom:283.142622px;}
.y2f_c00266{bottom:283.143162px;}
.y23_c00266{bottom:312.809004px;}
.y22_c00266{bottom:313.076340px;}
.y21_c00266{bottom:313.325910px;}
.y20_c00266{bottom:313.857180px;}
.y1f_c00266{bottom:314.061273px;}
.y1e_c00266{bottom:314.267022px;}
.y1d_c00266{bottom:314.654202px;}
.y1c_c00266{bottom:314.858331px;}
.y1b_c00266{bottom:315.243882px;}
.y1a_c00266{bottom:315.519300px;}
.y19_c00266{bottom:315.900000px;}
.y18_c00266{bottom:347.377500px;}
.y17_c00266{bottom:377.569500px;}
.y16_c00266{bottom:409.978500px;}
.y15_c00266{bottom:441.604500px;}
.y14_c00266{bottom:473.464500px;}
.y13_c00266{bottom:504.282000px;}
.y12_c00266{bottom:535.311000px;}
.y11_c00266{bottom:567.129000px;}
.y10_c00266{bottom:598.417500px;}
.yf_c00266{bottom:630.097500px;}
.ye_c00266{bottom:662.439000px;}
.yd_c00266{bottom:693.835500px;}
.yc_c00266{bottom:725.596500px;}
.yb_c00266{bottom:757.815000px;}
.ya_c00266{bottom:790.015500px;}
.y9_c00266{bottom:821.340000px;}
.y8_c00266{bottom:852.930000px;}
.y7_c00266{bottom:883.980000px;}
.y6_c00266{bottom:915.570000px;}
.y5_c00266{bottom:946.978500px;}
.y4_c00266{bottom:979.020000px;}
.y3_c00266{bottom:1010.805000px;}
.y2_c00266{bottom:1042.882500px;}
.y1_c00266{bottom:1122.930000px;}
.h2_c00266{height:72.000000px;}
.h9_c00266{height:72.001296px;}
.h4_c00266{height:78.000000px;}
.h3_c00266{height:84.000000px;}
.h8_c00266{height:84.001512px;}
.h5_c00266{height:90.000000px;}
.h6_c00266{height:96.000000px;}
.h7_c00266{height:102.000000px;}
.h0_c00266{height:1154.790000px;}
.h1_c00266{height:1155.000000px;}
.w0_c00266{width:915.000000px;}
.x0_c00266{left:0.000000px;}
.x3d_c00266{left:132.570000px;}
.x5b_c00266{left:143.100000px;}
.xd_c00266{left:144.180000px;}
.x3f_c00266{left:145.260000px;}
.x72_c00266{left:146.880000px;}
.x33_c00266{left:167.130000px;}
.x5c_c00266{left:176.310000px;}
.xe_c00266{left:177.660000px;}
.x57_c00266{left:186.570000px;}
.x6d_c00266{left:187.848525px;}
.x45_c00266{left:189.270000px;}
.x1c_c00266{left:199.260000px;}
.x40_c00266{left:209.520000px;}
.xf_c00266{left:211.140000px;}
.x39_c00266{left:221.130000px;}
.x4f_c00266{left:231.390000px;}
.x48_c00266{left:232.470000px;}
.x15_c00266{left:242.460000px;}
.x34_c00266{left:243.810000px;}
.x50_c00266{left:254.070000px;}
.x2_c00266{left:255.690000px;}
.x1d_c00266{left:264.870000px;}
.x4b_c00266{left:266.220000px;}
.x26_c00266{left:275.940000px;}
.x16_c00266{left:277.020000px;}
.x1e_c00266{left:288.090000px;}
.x3_c00266{left:297.540000px;}
.x4c_c00266{left:298.620000px;}
.x27_c00266{left:309.420000px;}
.x17_c00266{left:319.950000px;}
.x35_c00266{left:321.030000px;}
.x1f_c00266{left:330.480000px;}
.x41_c00266{left:332.370000px;}
.x64_c00266{left:341.010000px;}
.x4_c00266{left:342.360000px;}
.x6e_c00266{left:344.177961px;}
.x51_c00266{left:352.080000px;}
.x3a_c00266{left:353.160000px;}
.x6f_c00266{left:363.619578px;}
.x66_c00266{left:365.229000px;}
.x65_c00266{left:373.680000px;}
.x54_c00266{left:374.760000px;}
.x10_c00266{left:376.380000px;}
.x2f_c00266{left:385.830000px;}
.x52_c00266{left:387.180000px;}
.x1_c00266{left:388.260000px;}
.x36_c00266{left:397.710000px;}
.x42_c00266{left:407.970000px;}
.x20_c00266{left:418.500000px;}
.x46_c00266{left:419.850000px;}
.x5d_c00266{left:429.840000px;}
.x18_c00266{left:440.100000px;}
.x11_c00266{left:441.180000px;}
.x28_c00266{left:451.440000px;}
.x5_c00266{left:452.790000px;}
.x30_c00266{left:462.780000px;}
.x5e_c00266{left:472.770000px;}
.x19_c00266{left:473.850000px;}
.x73_c00266{left:474.930000px;}
.x58_c00266{left:483.840000px;}
.x29_c00266{left:485.190000px;}
.x55_c00266{left:494.640000px;}
.x12_c00266{left:495.720000px;}
.x49_c00266{left:497.070000px;}
.x68_c00266{left:506.255967px;}
.x2a_c00266{left:517.320000px;}
.x61_c00266{left:527.580000px;}
.x13_c00266{left:529.200000px;}
.x53_c00266{left:530.550000px;}
.x70_c00266{left:539.122131px;}
.x4a_c00266{left:540.540000px;}
.x6_c00266{left:551.340000px;}
.x1a_c00266{left:561.870000px;}
.x43_c00266{left:573.750000px;}
.x37_c00266{left:584.280000px;}
.x69_c00266{left:594.547644px;}
.x7_c00266{left:595.620000px;}
.x21_c00266{left:605.610000px;}
.x56_c00266{left:606.690000px;}
.x63_c00266{left:615.600000px;}
.x4d_c00266{left:616.950000px;}
.x22_c00266{left:628.290000px;}
.x59_c00266{left:638.010000px;}
.x2b_c00266{left:639.630000px;}
.x4e_c00266{left:649.620000px;}
.x62_c00266{left:650.970000px;}
.x1b_c00266{left:661.500000px;}
.x2c_c00266{left:671.220000px;}
.x23_c00266{left:681.750000px;}
.x3b_c00266{left:683.370000px;}
.x67_c00266{left:684.891000px;}
.x8_c00266{left:693.360000px;}
.x6a_c00266{left:694.449744px;}
.x5f_c00266{left:703.890000px;}
.x31_c00266{left:705.510000px;}
.x24_c00266{left:715.770000px;}
.x9_c00266{left:727.110000px;}
.x2d_c00266{left:738.180000px;}
.x32_c00266{left:739.260000px;}
.x14_c00266{left:748.440000px;}
.x6b_c00266{left:750.611412px;}
.x3e_c00266{left:760.050000px;}
.x44_c00266{left:770.580000px;}
.x6c_c00266{left:772.212186px;}
.x5a_c00266{left:782.190000px;}
.x3c_c00266{left:792.450000px;}
.x38_c00266{left:793.530000px;}
.x25_c00266{left:802.980000px;}
.x71_c00266{left:814.819287px;}
.x2e_c00266{left:825.120000px;}
.xa_c00266{left:826.470000px;}
.x47_c00266{left:836.190000px;}
.xb_c00266{left:856.980000px;}
.xc_c00266{left:879.390000px;}
.x60_c00266{left:914.220000px;}
@media print{
.v0_c00266{vertical-align:0.000000pt;}
.ls0_c00266{letter-spacing:0.000000pt;}
.ws0_c00266{word-spacing:0.000000pt;}
._0_c00266{width:31.594203pt;}
.fs0_c00266{font-size:64.000000pt;}
.fs7_c00266{font-size:64.001152pt;}
.fs2_c00266{font-size:69.333333pt;}
.fs1_c00266{font-size:74.666667pt;}
.fs6_c00266{font-size:74.668011pt;}
.fs3_c00266{font-size:80.000000pt;}
.fs4_c00266{font-size:85.333333pt;}
.fs5_c00266{font-size:90.666667pt;}
.y0_c00266{bottom:0.000000pt;}
.y4b_c00266{bottom:111.093333pt;}
.y4a_c00266{bottom:140.154667pt;}
.y49_c00266{bottom:193.339928pt;}
.y48_c00266{bottom:193.484843pt;}
.y47_c00266{bottom:193.871317pt;}
.y46_c00266{bottom:194.218128pt;}
.y45_c00266{bottom:194.411301pt;}
.y44_c00266{bottom:194.564971pt;}
.y43_c00266{bottom:194.952733pt;}
.y42_c00266{bottom:195.195744pt;}
.y41_c00266{bottom:195.344979pt;}
.y40_c00266{bottom:195.431333pt;}
.y3f_c00266{bottom:195.977200pt;}
.y3e_c00266{bottom:196.126419pt;}
.y3d_c00266{bottom:196.322480pt;}
.y30_c00266{bottom:223.848093pt;}
.y31_c00266{bottom:223.848307pt;}
.y32_c00266{bottom:223.848840pt;}
.y33_c00266{bottom:223.849008pt;}
.y35_c00266{bottom:223.849123pt;}
.y36_c00266{bottom:223.849504pt;}
.y34_c00266{bottom:223.849541pt;}
.y37_c00266{bottom:223.849565pt;}
.y39_c00266{bottom:223.849581pt;}
.y3c_c00266{bottom:223.849589pt;}
.y3a_c00266{bottom:223.850008pt;}
.y38_c00266{bottom:223.850053pt;}
.y3b_c00266{bottom:223.850123pt;}
.y27_c00266{bottom:251.680592pt;}
.y2b_c00266{bottom:251.680661pt;}
.y2a_c00266{bottom:251.680768pt;}
.y26_c00266{bottom:251.680805pt;}
.y29_c00266{bottom:251.680867pt;}
.y28_c00266{bottom:251.680973pt;}
.y25_c00266{bottom:251.681011pt;}
.y2c_c00266{bottom:251.681309pt;}
.y24_c00266{bottom:251.681536pt;}
.y2d_c00266{bottom:251.681736pt;}
.y2e_c00266{bottom:251.682331pt;}
.y2f_c00266{bottom:251.682811pt;}
.y23_c00266{bottom:278.052448pt;}
.y22_c00266{bottom:278.290080pt;}
.y21_c00266{bottom:278.511920pt;}
.y20_c00266{bottom:278.984160pt;}
.y1f_c00266{bottom:279.165576pt;}
.y1e_c00266{bottom:279.348464pt;}
.y1d_c00266{bottom:279.692624pt;}
.y1c_c00266{bottom:279.874072pt;}
.y1b_c00266{bottom:280.216784pt;}
.y1a_c00266{bottom:280.461600pt;}
.y19_c00266{bottom:280.800000pt;}
.y18_c00266{bottom:308.780000pt;}
.y17_c00266{bottom:335.617333pt;}
.y16_c00266{bottom:364.425333pt;}
.y15_c00266{bottom:392.537333pt;}
.y14_c00266{bottom:420.857333pt;}
.y13_c00266{bottom:448.250667pt;}
.y12_c00266{bottom:475.832000pt;}
.y11_c00266{bottom:504.114667pt;}
.y10_c00266{bottom:531.926667pt;}
.yf_c00266{bottom:560.086667pt;}
.ye_c00266{bottom:588.834667pt;}
.yd_c00266{bottom:616.742667pt;}
.yc_c00266{bottom:644.974667pt;}
.yb_c00266{bottom:673.613333pt;}
.ya_c00266{bottom:702.236000pt;}
.y9_c00266{bottom:730.080000pt;}
.y8_c00266{bottom:758.160000pt;}
.y7_c00266{bottom:785.760000pt;}
.y6_c00266{bottom:813.840000pt;}
.y5_c00266{bottom:841.758667pt;}
.y4_c00266{bottom:870.240000pt;}
.y3_c00266{bottom:898.493333pt;}
.y2_c00266{bottom:927.006667pt;}
.y1_c00266{bottom:998.160000pt;}
.h2_c00266{height:64.000000pt;}
.h9_c00266{height:64.001152pt;}
.h4_c00266{height:69.333333pt;}
.h3_c00266{height:74.666667pt;}
.h8_c00266{height:74.668011pt;}
.h5_c00266{height:80.000000pt;}
.h6_c00266{height:85.333333pt;}
.h7_c00266{height:90.666667pt;}
.h0_c00266{height:1026.480000pt;}
.h1_c00266{height:1026.666667pt;}
.w0_c00266{width:813.333333pt;}
.x0_c00266{left:0.000000pt;}
.x3d_c00266{left:117.840000pt;}
.x5b_c00266{left:127.200000pt;}
.xd_c00266{left:128.160000pt;}
.x3f_c00266{left:129.120000pt;}
.x72_c00266{left:130.560000pt;}
.x33_c00266{left:148.560000pt;}
.x5c_c00266{left:156.720000pt;}
.xe_c00266{left:157.920000pt;}
.x57_c00266{left:165.840000pt;}
.x6d_c00266{left:166.976467pt;}
.x45_c00266{left:168.240000pt;}
.x1c_c00266{left:177.120000pt;}
.x40_c00266{left:186.240000pt;}
.xf_c00266{left:187.680000pt;}
.x39_c00266{left:196.560000pt;}
.x4f_c00266{left:205.680000pt;}
.x48_c00266{left:206.640000pt;}
.x15_c00266{left:215.520000pt;}
.x34_c00266{left:216.720000pt;}
.x50_c00266{left:225.840000pt;}
.x2_c00266{left:227.280000pt;}
.x1d_c00266{left:235.440000pt;}
.x4b_c00266{left:236.640000pt;}
.x26_c00266{left:245.280000pt;}
.x16_c00266{left:246.240000pt;}
.x1e_c00266{left:256.080000pt;}
.x3_c00266{left:264.480000pt;}
.x4c_c00266{left:265.440000pt;}
.x27_c00266{left:275.040000pt;}
.x17_c00266{left:284.400000pt;}
.x35_c00266{left:285.360000pt;}
.x1f_c00266{left:293.760000pt;}
.x41_c00266{left:295.440000pt;}
.x64_c00266{left:303.120000pt;}
.x4_c00266{left:304.320000pt;}
.x6e_c00266{left:305.935965pt;}
.x51_c00266{left:312.960000pt;}
.x3a_c00266{left:313.920000pt;}
.x6f_c00266{left:323.217403pt;}
.x66_c00266{left:324.648000pt;}
.x65_c00266{left:332.160000pt;}
.x54_c00266{left:333.120000pt;}
.x10_c00266{left:334.560000pt;}
.x2f_c00266{left:342.960000pt;}
.x52_c00266{left:344.160000pt;}
.x1_c00266{left:345.120000pt;}
.x36_c00266{left:353.520000pt;}
.x42_c00266{left:362.640000pt;}
.x20_c00266{left:372.000000pt;}
.x46_c00266{left:373.200000pt;}
.x5d_c00266{left:382.080000pt;}
.x18_c00266{left:391.200000pt;}
.x11_c00266{left:392.160000pt;}
.x28_c00266{left:401.280000pt;}
.x5_c00266{left:402.480000pt;}
.x30_c00266{left:411.360000pt;}
.x5e_c00266{left:420.240000pt;}
.x19_c00266{left:421.200000pt;}
.x73_c00266{left:422.160000pt;}
.x58_c00266{left:430.080000pt;}
.x29_c00266{left:431.280000pt;}
.x55_c00266{left:439.680000pt;}
.x12_c00266{left:440.640000pt;}
.x49_c00266{left:441.840000pt;}
.x68_c00266{left:450.005304pt;}
.x2a_c00266{left:459.840000pt;}
.x61_c00266{left:468.960000pt;}
.x13_c00266{left:470.400000pt;}
.x53_c00266{left:471.600000pt;}
.x70_c00266{left:479.219672pt;}
.x4a_c00266{left:480.480000pt;}
.x6_c00266{left:490.080000pt;}
.x1a_c00266{left:499.440000pt;}
.x43_c00266{left:510.000000pt;}
.x37_c00266{left:519.360000pt;}
.x69_c00266{left:528.486795pt;}
.x7_c00266{left:529.440000pt;}
.x21_c00266{left:538.320000pt;}
.x56_c00266{left:539.280000pt;}
.x63_c00266{left:547.200000pt;}
.x4d_c00266{left:548.400000pt;}
.x22_c00266{left:558.480000pt;}
.x59_c00266{left:567.120000pt;}
.x2b_c00266{left:568.560000pt;}
.x4e_c00266{left:577.440000pt;}
.x62_c00266{left:578.640000pt;}
.x1b_c00266{left:588.000000pt;}
.x2c_c00266{left:596.640000pt;}
.x23_c00266{left:606.000000pt;}
.x3b_c00266{left:607.440000pt;}
.x67_c00266{left:608.792000pt;}
.x8_c00266{left:616.320000pt;}
.x6a_c00266{left:617.288661pt;}
.x5f_c00266{left:625.680000pt;}
.x31_c00266{left:627.120000pt;}
.x24_c00266{left:636.240000pt;}
.x9_c00266{left:646.320000pt;}
.x2d_c00266{left:656.160000pt;}
.x32_c00266{left:657.120000pt;}
.x14_c00266{left:665.280000pt;}
.x6b_c00266{left:667.210144pt;}
.x3e_c00266{left:675.600000pt;}
.x44_c00266{left:684.960000pt;}
.x6c_c00266{left:686.410832pt;}
.x5a_c00266{left:695.280000pt;}
.x3c_c00266{left:704.400000pt;}
.x38_c00266{left:705.360000pt;}
.x25_c00266{left:713.760000pt;}
.x71_c00266{left:724.283811pt;}
.x2e_c00266{left:733.440000pt;}
.xa_c00266{left:734.640000pt;}
.x47_c00266{left:743.280000pt;}
.xb_c00266{left:761.760000pt;}
.xc_c00266{left:781.680000pt;}
.x60_c00266{left:812.640000pt;}
}





/* 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_c00267 {
    display:none;
  }
  .loading-indicator_c00267.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00267 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_c00267 { 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_c00267" -> "#page-container .classname_c00267")
 */
.pf_c00267 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00267 { /* 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_c00267.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00267 { /* 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_c00267 { /* 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_c00267 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00267 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00267 {overflow:visible;}
  }
}
.c_c00267 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00267 { /* 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_c00267:after { /* webkit #35443 */
  content: '';
}
.t_c00267:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00267 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 */
}
.__c00267 { /* 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_c00267 { /* info for Javascript */
  display:none;
}
.l_c00267 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00267 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00267 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00267: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_c00267 {
    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_c00267.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00267.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_c00267 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00267{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00267;src:url('chunks/assets/font_cfe63ee56e9e10a97d33a3db.woff2')format("woff");}.ff1_c00267{font-family:ff1_c00267;line-height:1.000000;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;}
.m7b_c00267{transform:matrix(0.009090,-0.000064,0.001750,0.249994,0,0);-ms-transform:matrix(0.009090,-0.000064,0.001750,0.249994,0,0);-webkit-transform:matrix(0.009090,-0.000064,0.001750,0.249994,0,0);}
.m7a_c00267{transform:matrix(0.010165,-0.000071,0.001750,0.249994,0,0);-ms-transform:matrix(0.010165,-0.000071,0.001750,0.249994,0,0);-webkit-transform:matrix(0.010165,-0.000071,0.001750,0.249994,0,0);}
.m0_c00267{transform:matrix(0.012579,-0.000189,0.003750,0.249972,0,0);-ms-transform:matrix(0.012579,-0.000189,0.003750,0.249972,0,0);-webkit-transform:matrix(0.012579,-0.000189,0.003750,0.249972,0,0);}
.m18_c00267{transform:matrix(0.031886,-0.000478,0.003750,0.249972,0,0);-ms-transform:matrix(0.031886,-0.000478,0.003750,0.249972,0,0);-webkit-transform:matrix(0.031886,-0.000478,0.003750,0.249972,0,0);}
.m4_c00267{transform:matrix(0.033536,-0.000503,0.003750,0.249972,0,0);-ms-transform:matrix(0.033536,-0.000503,0.003750,0.249972,0,0);-webkit-transform:matrix(0.033536,-0.000503,0.003750,0.249972,0,0);}
.m24_c00267{transform:matrix(0.034571,-0.000519,0.003750,0.249972,0,0);-ms-transform:matrix(0.034571,-0.000519,0.003750,0.249972,0,0);-webkit-transform:matrix(0.034571,-0.000519,0.003750,0.249972,0,0);}
.m88_c00267{transform:matrix(0.035575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.035575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.035575,0.000000,0.000000,0.250000,0,0);}
.mad_c00267{transform:matrix(0.037500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.037500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.037500,0.000000,0.000000,0.250000,0,0);}
.m94_c00267{transform:matrix(0.040560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.040560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.040560,0.000000,0.000000,0.250000,0,0);}
.mb7_c00267{transform:matrix(0.042425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.042425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.042425,0.000000,0.000000,0.250000,0,0);}
.m86_c00267{transform:matrix(0.046385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.046385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.046385,0.000000,0.000000,0.250000,0,0);}
.mba_c00267{transform:matrix(0.047435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.047435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.047435,0.000000,0.000000,0.250000,0,0);}
.m9b_c00267{transform:matrix(0.047730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.047730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.047730,0.000000,0.000000,0.250000,0,0);}
.m8f_c00267{transform:matrix(0.050310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.050310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.050310,0.000000,0.000000,0.250000,0,0);}
.m82_c00267{transform:matrix(0.056250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.056250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.056250,0.000000,0.000000,0.250000,0,0);}
.mb5_c00267{transform:matrix(0.063640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.063640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.063640,0.000000,0.000000,0.250000,0,0);}
.m93_c00267{transform:matrix(0.065600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065600,0.000000,0.000000,0.250000,0,0);}
.m48_c00267{transform:matrix(0.068335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.068335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.068335,0.000000,0.000000,0.250000,0,0);}
.m95_c00267{transform:matrix(0.072035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072035,0.000000,0.000000,0.250000,0,0);}
.m8c_c00267{transform:matrix(0.079550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.079550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.079550,0.000000,0.000000,0.250000,0,0);}
.mb8_c00267{transform:matrix(0.080775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080775,0.000000,0.000000,0.250000,0,0);}
.mbd_c00267{transform:matrix(0.085675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.085675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.085675,0.000000,0.000000,0.250000,0,0);}
.m98_c00267{transform:matrix(0.087865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087865,0.000000,0.000000,0.250000,0,0);}
.mac_c00267{transform:matrix(0.096775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096775,0.000000,0.000000,0.250000,0,0);}
.m81_c00267{transform:matrix(0.100625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100625,0.000000,0.000000,0.250000,0,0);}
.maa_c00267{transform:matrix(0.101825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.101825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.101825,0.000000,0.000000,0.250000,0,0);}
.m3_c00267{transform:matrix(0.102308,-0.001535,0.003750,0.249972,0,0);-ms-transform:matrix(0.102308,-0.001535,0.003750,0.249972,0,0);-webkit-transform:matrix(0.102308,-0.001535,0.003750,0.249972,0,0);}
.mbe_c00267{transform:matrix(0.106130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106130,0.000000,0.000000,0.250000,0,0);}
.ma4_c00267{transform:matrix(0.111370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111370,0.000000,0.000000,0.250000,0,0);}
.mb0_c00267{transform:matrix(0.117455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117455,0.000000,0.000000,0.250000,0,0);}
.mbf_c00267{transform:matrix(0.119590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119590,0.000000,0.000000,0.250000,0,0);}
.mc7_c00267{transform:matrix(0.120935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120935,0.000000,0.000000,0.250000,0,0);}
.mbc_c00267{transform:matrix(0.121685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121685,0.000000,0.000000,0.250000,0,0);}
.m7c_c00267{transform:matrix(0.126490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126490,0.000000,0.000000,0.250000,0,0);}
.mc2_c00267{transform:matrix(0.128270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128270,0.000000,0.000000,0.250000,0,0);}
.m97_c00267{transform:matrix(0.137325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137325,0.000000,0.000000,0.250000,0,0);}
.mb3_c00267{transform:matrix(0.138295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138295,0.000000,0.000000,0.250000,0,0);}
.m8e_c00267{transform:matrix(0.145625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145625,0.000000,0.000000,0.250000,0,0);}
.m89_c00267{transform:matrix(0.148870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148870,0.000000,0.000000,0.250000,0,0);}
.ma8_c00267{transform:matrix(0.151355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151355,0.000000,0.000000,0.250000,0,0);}
.mc6_c00267{transform:matrix(0.154435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154435,0.000000,0.000000,0.250000,0,0);}
.m25_c00267{transform:matrix(0.158767,-0.002382,0.003750,0.249972,0,0);-ms-transform:matrix(0.158767,-0.002382,0.003750,0.249972,0,0);-webkit-transform:matrix(0.158767,-0.002382,0.003750,0.249972,0,0);}
.mb_c00267{transform:matrix(0.167201,-0.002508,0.003750,0.249972,0,0);-ms-transform:matrix(0.167201,-0.002508,0.003750,0.249972,0,0);-webkit-transform:matrix(0.167201,-0.002508,0.003750,0.249972,0,0);}
.m19_c00267{transform:matrix(0.169036,-0.002536,0.003750,0.249972,0,0);-ms-transform:matrix(0.169036,-0.002536,0.003750,0.249972,0,0);-webkit-transform:matrix(0.169036,-0.002536,0.003750,0.249972,0,0);}
.m5b_c00267{transform:matrix(0.169200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169200,0.000000,0.000000,0.250000,0,0);}
.mbb_c00267{transform:matrix(0.174465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174465,0.000000,0.000000,0.250000,0,0);}
.m50_c00267{transform:matrix(0.176835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176835,0.000000,0.000000,0.250000,0,0);}
.mc1_c00267{transform:matrix(0.177880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177880,0.000000,0.000000,0.250000,0,0);}
.m90_c00267{transform:matrix(0.181555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181555,0.000000,0.000000,0.250000,0,0);}
.mca_c00267{transform:matrix(0.183100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183100,0.000000,0.000000,0.250000,0,0);}
.ma9_c00267{transform:matrix(0.183135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183135,0.000000,0.000000,0.250000,0,0);}
.m43_c00267{transform:matrix(0.189976,-0.002280,0.003000,0.249982,0,0);-ms-transform:matrix(0.189976,-0.002280,0.003000,0.249982,0,0);-webkit-transform:matrix(0.189976,-0.002280,0.003000,0.249982,0,0);}
.m39_c00267{transform:matrix(0.190359,-0.002855,0.003750,0.249972,0,0);-ms-transform:matrix(0.190359,-0.002855,0.003750,0.249972,0,0);-webkit-transform:matrix(0.190359,-0.002855,0.003750,0.249972,0,0);}
.m92_c00267{transform:matrix(0.190920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190920,0.000000,0.000000,0.250000,0,0);}
.m3b_c00267{transform:matrix(0.195553,-0.002933,0.003750,0.249972,0,0);-ms-transform:matrix(0.195553,-0.002933,0.003750,0.249972,0,0);-webkit-transform:matrix(0.195553,-0.002933,0.003750,0.249972,0,0);}
.m83_c00267{transform:matrix(0.198005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198005,0.000000,0.000000,0.250000,0,0);}
.m2_c00267{transform:matrix(0.198633,-0.002979,0.003750,0.249972,0,0);-ms-transform:matrix(0.198633,-0.002979,0.003750,0.249972,0,0);-webkit-transform:matrix(0.198633,-0.002979,0.003750,0.249972,0,0);}
.m6b_c00267{transform:matrix(0.210295,-0.001472,0.001750,0.249994,0,0);-ms-transform:matrix(0.210295,-0.001472,0.001750,0.249994,0,0);-webkit-transform:matrix(0.210295,-0.001472,0.001750,0.249994,0,0);}
.ma6_c00267{transform:matrix(0.211550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211550,0.000000,0.000000,0.250000,0,0);}
.m33_c00267{transform:matrix(0.214866,-0.003223,0.003750,0.249972,0,0);-ms-transform:matrix(0.214866,-0.003223,0.003750,0.249972,0,0);-webkit-transform:matrix(0.214866,-0.003223,0.003750,0.249972,0,0);}
.mce_c00267{transform:matrix(0.217275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217275,0.000000,0.000000,0.250000,0,0);}
.md7_c00267{transform:matrix(0.218435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218435,0.000000,0.000000,0.250000,0,0);}
.m2e_c00267{transform:matrix(0.218835,-0.003283,0.003750,0.249972,0,0);-ms-transform:matrix(0.218835,-0.003283,0.003750,0.249972,0,0);-webkit-transform:matrix(0.218835,-0.003283,0.003750,0.249972,0,0);}
.m23_c00267{transform:matrix(0.219245,-0.003289,0.003750,0.249972,0,0);-ms-transform:matrix(0.219245,-0.003289,0.003750,0.249972,0,0);-webkit-transform:matrix(0.219245,-0.003289,0.003750,0.249972,0,0);}
.m17_c00267{transform:matrix(0.220555,-0.003308,0.003750,0.249972,0,0);-ms-transform:matrix(0.220555,-0.003308,0.003750,0.249972,0,0);-webkit-transform:matrix(0.220555,-0.003308,0.003750,0.249972,0,0);}
.ma_c00267{transform:matrix(0.225220,-0.003378,0.003750,0.249972,0,0);-ms-transform:matrix(0.225220,-0.003378,0.003750,0.249972,0,0);-webkit-transform:matrix(0.225220,-0.003378,0.003750,0.249972,0,0);}
.m5f_c00267{transform:matrix(0.225400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225400,0.000000,0.000000,0.250000,0,0);}
.m62_c00267{transform:matrix(0.231080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231080,0.000000,0.000000,0.250000,0,0);}
.maf_c00267{transform:matrix(0.232620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232620,0.000000,0.000000,0.250000,0,0);}
.m2b_c00267{transform:matrix(0.236388,-0.003546,0.003750,0.249972,0,0);-ms-transform:matrix(0.236388,-0.003546,0.003750,0.249972,0,0);-webkit-transform:matrix(0.236388,-0.003546,0.003750,0.249972,0,0);}
.m53_c00267{transform:matrix(0.237430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237430,0.000000,0.000000,0.250000,0,0);}
.m32_c00267{transform:matrix(0.237973,-0.003570,0.003750,0.249972,0,0);-ms-transform:matrix(0.237973,-0.003570,0.003750,0.249972,0,0);-webkit-transform:matrix(0.237973,-0.003570,0.003750,0.249972,0,0);}
.m87_c00267{transform:matrix(0.239180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239180,0.000000,0.000000,0.250000,0,0);}
.m65_c00267{transform:matrix(0.240865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240865,0.000000,0.000000,0.250000,0,0);}
.m11_c00267{transform:matrix(0.241183,-0.003618,0.003750,0.249972,0,0);-ms-transform:matrix(0.241183,-0.003618,0.003750,0.249972,0,0);-webkit-transform:matrix(0.241183,-0.003618,0.003750,0.249972,0,0);}
.m84_c00267{transform:matrix(0.241520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241520,0.000000,0.000000,0.250000,0,0);}
.m57_c00267{transform:matrix(0.241805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241805,0.000000,0.000000,0.250000,0,0);}
.m2f_c00267{transform:matrix(0.242058,-0.003631,0.003750,0.249972,0,0);-ms-transform:matrix(0.242058,-0.003631,0.003750,0.249972,0,0);-webkit-transform:matrix(0.242058,-0.003631,0.003750,0.249972,0,0);}
.m91_c00267{transform:matrix(0.242330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242330,0.000000,0.000000,0.250000,0,0);}
.m1b_c00267{transform:matrix(0.242553,-0.003638,0.003750,0.249972,0,0);-ms-transform:matrix(0.242553,-0.003638,0.003750,0.249972,0,0);-webkit-transform:matrix(0.242553,-0.003638,0.003750,0.249972,0,0);}
.m5c_c00267{transform:matrix(0.242770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242770,0.000000,0.000000,0.250000,0,0);}
.m2c_c00267{transform:matrix(0.243348,-0.003650,0.003750,0.249972,0,0);-ms-transform:matrix(0.243348,-0.003650,0.003750,0.249972,0,0);-webkit-transform:matrix(0.243348,-0.003650,0.003750,0.249972,0,0);}
.m5a_c00267{transform:matrix(0.245465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245465,0.000000,0.000000,0.250000,0,0);}
.mc3_c00267{transform:matrix(0.245675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245675,0.000000,0.000000,0.250000,0,0);}
.m44_c00267{transform:matrix(0.245757,-0.002949,0.003000,0.249982,0,0);-ms-transform:matrix(0.245757,-0.002949,0.003000,0.249982,0,0);-webkit-transform:matrix(0.245757,-0.002949,0.003000,0.249982,0,0);}
.m63_c00267{transform:matrix(0.247225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247225,0.000000,0.000000,0.250000,0,0);}
.m61_c00267{transform:matrix(0.247465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247465,0.000000,0.000000,0.250000,0,0);}
.m4b_c00267{transform:matrix(0.249775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249775,0.000000,0.000000,0.250000,0,0);}
.m56_c00267{transform:matrix(0.250015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250015,0.000000,0.000000,0.250000,0,0);}
.mc_c00267{transform:matrix(0.250722,-0.003761,0.003750,0.249972,0,0);-ms-transform:matrix(0.250722,-0.003761,0.003750,0.249972,0,0);-webkit-transform:matrix(0.250722,-0.003761,0.003750,0.249972,0,0);}
.m22_c00267{transform:matrix(0.253247,-0.003799,0.003750,0.249972,0,0);-ms-transform:matrix(0.253247,-0.003799,0.003750,0.249972,0,0);-webkit-transform:matrix(0.253247,-0.003799,0.003750,0.249972,0,0);}
.m42_c00267{transform:matrix(0.253332,-0.003040,0.003000,0.249982,0,0);-ms-transform:matrix(0.253332,-0.003040,0.003000,0.249982,0,0);-webkit-transform:matrix(0.253332,-0.003040,0.003000,0.249982,0,0);}
.m7_c00267{transform:matrix(0.253621,-0.003804,0.003750,0.249972,0,0);-ms-transform:matrix(0.253621,-0.003804,0.003750,0.249972,0,0);-webkit-transform:matrix(0.253621,-0.003804,0.003750,0.249972,0,0);}
.m47_c00267{transform:matrix(0.253777,-0.003045,0.003000,0.249982,0,0);-ms-transform:matrix(0.253777,-0.003045,0.003000,0.249982,0,0);-webkit-transform:matrix(0.253777,-0.003045,0.003000,0.249982,0,0);}
.m54_c00267{transform:matrix(0.254690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254690,0.000000,0.000000,0.250000,0,0);}
.m96_c00267{transform:matrix(0.256320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256320,0.000000,0.000000,0.250000,0,0);}
.m85_c00267{transform:matrix(0.256785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256785,0.000000,0.000000,0.250000,0,0);}
.m78_c00267{transform:matrix(0.260859,-0.001826,0.001750,0.249994,0,0);-ms-transform:matrix(0.260859,-0.001826,0.001750,0.249994,0,0);-webkit-transform:matrix(0.260859,-0.001826,0.001750,0.249994,0,0);}
.m64_c00267{transform:matrix(0.261890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261890,0.000000,0.000000,0.250000,0,0);}
.m26_c00267{transform:matrix(0.262071,-0.003931,0.003750,0.249972,0,0);-ms-transform:matrix(0.262071,-0.003931,0.003750,0.249972,0,0);-webkit-transform:matrix(0.262071,-0.003931,0.003750,0.249972,0,0);}
.m69_c00267{transform:matrix(0.262744,-0.001839,0.001750,0.249994,0,0);-ms-transform:matrix(0.262744,-0.001839,0.001750,0.249994,0,0);-webkit-transform:matrix(0.262744,-0.001839,0.001750,0.249994,0,0);}
.m8b_c00267{transform:matrix(0.263355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263355,0.000000,0.000000,0.250000,0,0);}
.m75_c00267{transform:matrix(0.265383,-0.001858,0.001750,0.249994,0,0);-ms-transform:matrix(0.265383,-0.001858,0.001750,0.249994,0,0);-webkit-transform:matrix(0.265383,-0.001858,0.001750,0.249994,0,0);}
.m35_c00267{transform:matrix(0.266390,-0.003996,0.003750,0.249972,0,0);-ms-transform:matrix(0.266390,-0.003996,0.003750,0.249972,0,0);-webkit-transform:matrix(0.266390,-0.003996,0.003750,0.249972,0,0);}
.me_c00267{transform:matrix(0.266610,-0.003999,0.003750,0.249972,0,0);-ms-transform:matrix(0.266610,-0.003999,0.003750,0.249972,0,0);-webkit-transform:matrix(0.266610,-0.003999,0.003750,0.249972,0,0);}
.m40_c00267{transform:matrix(0.267281,-0.003207,0.003000,0.249982,0,0);-ms-transform:matrix(0.267281,-0.003207,0.003000,0.249982,0,0);-webkit-transform:matrix(0.267281,-0.003207,0.003000,0.249982,0,0);}
.mf_c00267{transform:matrix(0.268070,-0.004021,0.003750,0.249972,0,0);-ms-transform:matrix(0.268070,-0.004021,0.003750,0.249972,0,0);-webkit-transform:matrix(0.268070,-0.004021,0.003750,0.249972,0,0);}
.mae_c00267{transform:matrix(0.268355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268355,0.000000,0.000000,0.250000,0,0);}
.m5d_c00267{transform:matrix(0.268450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268450,0.000000,0.000000,0.250000,0,0);}
.m3a_c00267{transform:matrix(0.269375,-0.004041,0.003750,0.249972,0,0);-ms-transform:matrix(0.269375,-0.004041,0.003750,0.249972,0,0);-webkit-transform:matrix(0.269375,-0.004041,0.003750,0.249972,0,0);}
.m1d_c00267{transform:matrix(0.273569,-0.004104,0.003750,0.249972,0,0);-ms-transform:matrix(0.273569,-0.004104,0.003750,0.249972,0,0);-webkit-transform:matrix(0.273569,-0.004104,0.003750,0.249972,0,0);}
.m1a_c00267{transform:matrix(0.275334,-0.004130,0.003750,0.249972,0,0);-ms-transform:matrix(0.275334,-0.004130,0.003750,0.249972,0,0);-webkit-transform:matrix(0.275334,-0.004130,0.003750,0.249972,0,0);}
.m6c_c00267{transform:matrix(0.276723,-0.001937,0.001750,0.249994,0,0);-ms-transform:matrix(0.276723,-0.001937,0.001750,0.249994,0,0);-webkit-transform:matrix(0.276723,-0.001937,0.001750,0.249994,0,0);}
.m4d_c00267{transform:matrix(0.277290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277290,0.000000,0.000000,0.250000,0,0);}
.m74_c00267{transform:matrix(0.277523,-0.001943,0.001750,0.249994,0,0);-ms-transform:matrix(0.277523,-0.001943,0.001750,0.249994,0,0);-webkit-transform:matrix(0.277523,-0.001943,0.001750,0.249994,0,0);}
.m3f_c00267{transform:matrix(0.280380,-0.003365,0.003000,0.249982,0,0);-ms-transform:matrix(0.280380,-0.003365,0.003000,0.249982,0,0);-webkit-transform:matrix(0.280380,-0.003365,0.003000,0.249982,0,0);}
.m68_c00267{transform:matrix(0.280628,-0.001964,0.001750,0.249994,0,0);-ms-transform:matrix(0.280628,-0.001964,0.001750,0.249994,0,0);-webkit-transform:matrix(0.280628,-0.001964,0.001750,0.249994,0,0);}
.m16_c00267{transform:matrix(0.281318,-0.004220,0.003750,0.249972,0,0);-ms-transform:matrix(0.281318,-0.004220,0.003750,0.249972,0,0);-webkit-transform:matrix(0.281318,-0.004220,0.003750,0.249972,0,0);}
.mb9_c00267{transform:matrix(0.281605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281605,0.000000,0.000000,0.250000,0,0);}
.m41_c00267{transform:matrix(0.282960,-0.003396,0.003000,0.249982,0,0);-ms-transform:matrix(0.282960,-0.003396,0.003000,0.249982,0,0);-webkit-transform:matrix(0.282960,-0.003396,0.003000,0.249982,0,0);}
.m8d_c00267{transform:matrix(0.283935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283935,0.000000,0.000000,0.250000,0,0);}
.mb4_c00267{transform:matrix(0.285590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285590,0.000000,0.000000,0.250000,0,0);}
.m27_c00267{transform:matrix(0.286948,-0.004304,0.003750,0.249972,0,0);-ms-transform:matrix(0.286948,-0.004304,0.003750,0.249972,0,0);-webkit-transform:matrix(0.286948,-0.004304,0.003750,0.249972,0,0);}
.m5_c00267{transform:matrix(0.287408,-0.004311,0.003750,0.249972,0,0);-ms-transform:matrix(0.287408,-0.004311,0.003750,0.249972,0,0);-webkit-transform:matrix(0.287408,-0.004311,0.003750,0.249972,0,0);}
.ma7_c00267{transform:matrix(0.289505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289505,0.000000,0.000000,0.250000,0,0);}
.m46_c00267{transform:matrix(0.290289,-0.003483,0.003000,0.249982,0,0);-ms-transform:matrix(0.290289,-0.003483,0.003000,0.249982,0,0);-webkit-transform:matrix(0.290289,-0.003483,0.003000,0.249982,0,0);}
.m70_c00267{transform:matrix(0.292258,-0.002046,0.001750,0.249994,0,0);-ms-transform:matrix(0.292258,-0.002046,0.001750,0.249994,0,0);-webkit-transform:matrix(0.292258,-0.002046,0.001750,0.249994,0,0);}
.m3e_c00267{transform:matrix(0.295259,-0.003543,0.003000,0.249982,0,0);-ms-transform:matrix(0.295259,-0.003543,0.003000,0.249982,0,0);-webkit-transform:matrix(0.295259,-0.003543,0.003000,0.249982,0,0);}
.mb2_c00267{transform:matrix(0.295465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295465,0.000000,0.000000,0.250000,0,0);}
.m30_c00267{transform:matrix(0.296782,-0.004452,0.003750,0.249972,0,0);-ms-transform:matrix(0.296782,-0.004452,0.003750,0.249972,0,0);-webkit-transform:matrix(0.296782,-0.004452,0.003750,0.249972,0,0);}
.m60_c00267{transform:matrix(0.297725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297725,0.000000,0.000000,0.250000,0,0);}
.m58_c00267{transform:matrix(0.299205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299205,0.000000,0.000000,0.250000,0,0);}
.mc8_c00267{transform:matrix(0.300830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300830,0.000000,0.000000,0.250000,0,0);}
.m5e_c00267{transform:matrix(0.302425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302425,0.000000,0.000000,0.250000,0,0);}
.m2d_c00267{transform:matrix(0.309385,-0.004641,0.003750,0.249972,0,0);-ms-transform:matrix(0.309385,-0.004641,0.003750,0.249972,0,0);-webkit-transform:matrix(0.309385,-0.004641,0.003750,0.249972,0,0);}
.m20_c00267{transform:matrix(0.309680,-0.004645,0.003750,0.249972,0,0);-ms-transform:matrix(0.309680,-0.004645,0.003750,0.249972,0,0);-webkit-transform:matrix(0.309680,-0.004645,0.003750,0.249972,0,0);}
.m9_c00267{transform:matrix(0.309705,-0.004646,0.003750,0.249972,0,0);-ms-transform:matrix(0.309705,-0.004646,0.003750,0.249972,0,0);-webkit-transform:matrix(0.309705,-0.004646,0.003750,0.249972,0,0);}
.mda_c00267{transform:matrix(0.311160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311160,0.000000,0.000000,0.250000,0,0);}
.m52_c00267{transform:matrix(0.314415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314415,0.000000,0.000000,0.250000,0,0);}
.m28_c00267{transform:matrix(0.314510,-0.004718,0.003750,0.249972,0,0);-ms-transform:matrix(0.314510,-0.004718,0.003750,0.249972,0,0);-webkit-transform:matrix(0.314510,-0.004718,0.003750,0.249972,0,0);}
.m29_c00267{transform:matrix(0.316889,-0.004753,0.003750,0.249972,0,0);-ms-transform:matrix(0.316889,-0.004753,0.003750,0.249972,0,0);-webkit-transform:matrix(0.316889,-0.004753,0.003750,0.249972,0,0);}
.m8_c00267{transform:matrix(0.318319,-0.004775,0.003750,0.249972,0,0);-ms-transform:matrix(0.318319,-0.004775,0.003750,0.249972,0,0);-webkit-transform:matrix(0.318319,-0.004775,0.003750,0.249972,0,0);}
.me1_c00267{transform:matrix(0.329340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329340,0.000000,0.000000,0.250000,0,0);}
.m59_c00267{transform:matrix(0.330820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330820,0.000000,0.000000,0.250000,0,0);}
.m73_c00267{transform:matrix(0.331182,-0.002318,0.001750,0.249994,0,0);-ms-transform:matrix(0.331182,-0.002318,0.001750,0.249994,0,0);-webkit-transform:matrix(0.331182,-0.002318,0.001750,0.249994,0,0);}
.m1f_c00267{transform:matrix(0.331278,-0.004969,0.003750,0.249972,0,0);-ms-transform:matrix(0.331278,-0.004969,0.003750,0.249972,0,0);-webkit-transform:matrix(0.331278,-0.004969,0.003750,0.249972,0,0);}
.m1c_c00267{transform:matrix(0.333248,-0.004999,0.003750,0.249972,0,0);-ms-transform:matrix(0.333248,-0.004999,0.003750,0.249972,0,0);-webkit-transform:matrix(0.333248,-0.004999,0.003750,0.249972,0,0);}
.m99_c00267{transform:matrix(0.338435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338435,0.000000,0.000000,0.250000,0,0);}
.m6d_c00267{transform:matrix(0.340077,-0.002381,0.001750,0.249994,0,0);-ms-transform:matrix(0.340077,-0.002381,0.001750,0.249994,0,0);-webkit-transform:matrix(0.340077,-0.002381,0.001750,0.249994,0,0);}
.m7d_c00267{transform:matrix(0.347130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347130,0.000000,0.000000,0.250000,0,0);}
.md3_c00267{transform:matrix(0.348930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348930,0.000000,0.000000,0.250000,0,0);}
.m6_c00267{transform:matrix(0.351066,-0.005266,0.003750,0.249972,0,0);-ms-transform:matrix(0.351066,-0.005266,0.003750,0.249972,0,0);-webkit-transform:matrix(0.351066,-0.005266,0.003750,0.249972,0,0);}
.m4e_c00267{transform:matrix(0.351740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351740,0.000000,0.000000,0.250000,0,0);}
.me2_c00267{transform:matrix(0.357530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357530,0.000000,0.000000,0.250000,0,0);}
.m66_c00267{transform:matrix(0.361300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361300,0.000000,0.000000,0.250000,0,0);}
.m6e_c00267{transform:matrix(0.362426,-0.002537,0.001750,0.249994,0,0);-ms-transform:matrix(0.362426,-0.002537,0.001750,0.249994,0,0);-webkit-transform:matrix(0.362426,-0.002537,0.001750,0.249994,0,0);}
.m2a_c00267{transform:matrix(0.366019,-0.005490,0.003750,0.249972,0,0);-ms-transform:matrix(0.366019,-0.005490,0.003750,0.249972,0,0);-webkit-transform:matrix(0.366019,-0.005490,0.003750,0.249972,0,0);}
.mdf_c00267{transform:matrix(0.367310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367310,0.000000,0.000000,0.250000,0,0);}
.m6f_c00267{transform:matrix(0.372086,-0.002605,0.001750,0.249994,0,0);-ms-transform:matrix(0.372086,-0.002605,0.001750,0.249994,0,0);-webkit-transform:matrix(0.372086,-0.002605,0.001750,0.249994,0,0);}
.mdd_c00267{transform:matrix(0.372610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372610,0.000000,0.000000,0.250000,0,0);}
.m9c_c00267{transform:matrix(0.375485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375485,0.000000,0.000000,0.250000,0,0);}
.m3c_c00267{transform:matrix(0.376583,-0.004519,0.003000,0.249982,0,0);-ms-transform:matrix(0.376583,-0.004519,0.003000,0.249982,0,0);-webkit-transform:matrix(0.376583,-0.004519,0.003000,0.249982,0,0);}
.mc9_c00267{transform:matrix(0.380790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380790,0.000000,0.000000,0.250000,0,0);}
.m15_c00267{transform:matrix(0.382402,-0.005736,0.003750,0.249972,0,0);-ms-transform:matrix(0.382402,-0.005736,0.003750,0.249972,0,0);-webkit-transform:matrix(0.382402,-0.005736,0.003750,0.249972,0,0);}
.md6_c00267{transform:matrix(0.383985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383985,0.000000,0.000000,0.250000,0,0);}
.me3_c00267{transform:matrix(0.385140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385140,0.000000,0.000000,0.250000,0,0);}
.mc4_c00267{transform:matrix(0.388575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388575,0.000000,0.000000,0.250000,0,0);}
.m49_c00267{transform:matrix(0.389685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389685,0.000000,0.000000,0.250000,0,0);}
.m76_c00267{transform:matrix(0.392900,-0.002750,0.001750,0.249994,0,0);-ms-transform:matrix(0.392900,-0.002750,0.001750,0.249994,0,0);-webkit-transform:matrix(0.392900,-0.002750,0.001750,0.249994,0,0);}
.m37_c00267{transform:matrix(0.394726,-0.005921,0.003750,0.249972,0,0);-ms-transform:matrix(0.394726,-0.005921,0.003750,0.249972,0,0);-webkit-transform:matrix(0.394726,-0.005921,0.003750,0.249972,0,0);}
.m9e_c00267{transform:matrix(0.402690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402690,0.000000,0.000000,0.250000,0,0);}
.mcd_c00267{transform:matrix(0.407490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407490,0.000000,0.000000,0.250000,0,0);}
.m45_c00267{transform:matrix(0.408061,-0.004897,0.003000,0.249982,0,0);-ms-transform:matrix(0.408061,-0.004897,0.003000,0.249982,0,0);-webkit-transform:matrix(0.408061,-0.004897,0.003000,0.249982,0,0);}
.mcc_c00267{transform:matrix(0.410000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410000,0.000000,0.000000,0.250000,0,0);}
.mcb_c00267{transform:matrix(0.414365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414365,0.000000,0.000000,0.250000,0,0);}
.mb1_c00267{transform:matrix(0.414880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414880,0.000000,0.000000,0.250000,0,0);}
.m14_c00267{transform:matrix(0.415253,-0.006229,0.003750,0.249972,0,0);-ms-transform:matrix(0.415253,-0.006229,0.003750,0.249972,0,0);-webkit-transform:matrix(0.415253,-0.006229,0.003750,0.249972,0,0);}
.md5_c00267{transform:matrix(0.416400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416400,0.000000,0.000000,0.250000,0,0);}
.m1_c00267{transform:matrix(0.425912,-0.006389,0.003750,0.249972,0,0);-ms-transform:matrix(0.425912,-0.006389,0.003750,0.249972,0,0);-webkit-transform:matrix(0.425912,-0.006389,0.003750,0.249972,0,0);}
.m72_c00267{transform:matrix(0.433029,-0.003031,0.001750,0.249994,0,0);-ms-transform:matrix(0.433029,-0.003031,0.001750,0.249994,0,0);-webkit-transform:matrix(0.433029,-0.003031,0.001750,0.249994,0,0);}
.m12_c00267{transform:matrix(0.433476,-0.006502,0.003750,0.249972,0,0);-ms-transform:matrix(0.433476,-0.006502,0.003750,0.249972,0,0);-webkit-transform:matrix(0.433476,-0.006502,0.003750,0.249972,0,0);}
.m51_c00267{transform:matrix(0.439640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439640,0.000000,0.000000,0.250000,0,0);}
.m1e_c00267{transform:matrix(0.447110,-0.006707,0.003750,0.249972,0,0);-ms-transform:matrix(0.447110,-0.006707,0.003750,0.249972,0,0);-webkit-transform:matrix(0.447110,-0.006707,0.003750,0.249972,0,0);}
.m31_c00267{transform:matrix(0.449894,-0.006748,0.003750,0.249972,0,0);-ms-transform:matrix(0.449894,-0.006748,0.003750,0.249972,0,0);-webkit-transform:matrix(0.449894,-0.006748,0.003750,0.249972,0,0);}
.m13_c00267{transform:matrix(0.451994,-0.006780,0.003750,0.249972,0,0);-ms-transform:matrix(0.451994,-0.006780,0.003750,0.249972,0,0);-webkit-transform:matrix(0.451994,-0.006780,0.003750,0.249972,0,0);}
.m3d_c00267{transform:matrix(0.461197,-0.005534,0.003000,0.249982,0,0);-ms-transform:matrix(0.461197,-0.005534,0.003000,0.249982,0,0);-webkit-transform:matrix(0.461197,-0.005534,0.003000,0.249982,0,0);}
.md2_c00267{transform:matrix(0.461385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461385,0.000000,0.000000,0.250000,0,0);}
.md9_c00267{transform:matrix(0.475835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475835,0.000000,0.000000,0.250000,0,0);}
.m9f_c00267{transform:matrix(0.477295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477295,0.000000,0.000000,0.250000,0,0);}
.m4f_c00267{transform:matrix(0.504390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504390,0.000000,0.000000,0.250000,0,0);}
.mab_c00267{transform:matrix(0.505215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505215,0.000000,0.000000,0.250000,0,0);}
.m21_c00267{transform:matrix(0.510488,-0.007657,0.003750,0.249972,0,0);-ms-transform:matrix(0.510488,-0.007657,0.003750,0.249972,0,0);-webkit-transform:matrix(0.510488,-0.007657,0.003750,0.249972,0,0);}
.mc0_c00267{transform:matrix(0.523940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523940,0.000000,0.000000,0.250000,0,0);}
.m8a_c00267{transform:matrix(0.531795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531795,0.000000,0.000000,0.250000,0,0);}
.mdb_c00267{transform:matrix(0.533820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533820,0.000000,0.000000,0.250000,0,0);}
.md1_c00267{transform:matrix(0.546755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.546755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.546755,0.000000,0.000000,0.250000,0,0);}
.m9a_c00267{transform:matrix(0.556115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556115,0.000000,0.000000,0.250000,0,0);}
.mb6_c00267{transform:matrix(0.574890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574890,0.000000,0.000000,0.250000,0,0);}
.m55_c00267{transform:matrix(0.578400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578400,0.000000,0.000000,0.250000,0,0);}
.m4a_c00267{transform:matrix(0.600170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.600170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.600170,0.000000,0.000000,0.250000,0,0);}
.mcf_c00267{transform:matrix(0.610100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.610100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.610100,0.000000,0.000000,0.250000,0,0);}
.me5_c00267{transform:matrix(0.617950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617950,0.000000,0.000000,0.250000,0,0);}
.md8_c00267{transform:matrix(0.642825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.642825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.642825,0.000000,0.000000,0.250000,0,0);}
.m6a_c00267{transform:matrix(0.647679,-0.004534,0.001750,0.249994,0,0);-ms-transform:matrix(0.647679,-0.004534,0.001750,0.249994,0,0);-webkit-transform:matrix(0.647679,-0.004534,0.001750,0.249994,0,0);}
.m77_c00267{transform:matrix(0.647749,-0.004534,0.001750,0.249994,0,0);-ms-transform:matrix(0.647749,-0.004534,0.001750,0.249994,0,0);-webkit-transform:matrix(0.647749,-0.004534,0.001750,0.249994,0,0);}
.ma0_c00267{transform:matrix(0.661915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.661915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.661915,0.000000,0.000000,0.250000,0,0);}
.ma5_c00267{transform:matrix(0.662125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662125,0.000000,0.000000,0.250000,0,0);}
.m4c_c00267{transform:matrix(0.665775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665775,0.000000,0.000000,0.250000,0,0);}
.m36_c00267{transform:matrix(0.672249,-0.010084,0.003750,0.249972,0,0);-ms-transform:matrix(0.672249,-0.010084,0.003750,0.249972,0,0);-webkit-transform:matrix(0.672249,-0.010084,0.003750,0.249972,0,0);}
.md_c00267{transform:matrix(0.728368,-0.010926,0.003750,0.249972,0,0);-ms-transform:matrix(0.728368,-0.010926,0.003750,0.249972,0,0);-webkit-transform:matrix(0.728368,-0.010926,0.003750,0.249972,0,0);}
.ma1_c00267{transform:matrix(0.728560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.728560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.728560,0.000000,0.000000,0.250000,0,0);}
.ma2_c00267{transform:matrix(0.739510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.739510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.739510,0.000000,0.000000,0.250000,0,0);}
.m38_c00267{transform:matrix(0.741282,-0.011119,0.003750,0.249972,0,0);-ms-transform:matrix(0.741282,-0.011119,0.003750,0.249972,0,0);-webkit-transform:matrix(0.741282,-0.011119,0.003750,0.249972,0,0);}
.m7f_c00267{transform:matrix(0.811700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811700,0.000000,0.000000,0.250000,0,0);}
.mde_c00267{transform:matrix(0.840065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.840065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.840065,0.000000,0.000000,0.250000,0,0);}
.mc5_c00267{transform:matrix(0.903440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.903440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.903440,0.000000,0.000000,0.250000,0,0);}
.m34_c00267{transform:matrix(0.912152,-0.013682,0.003750,0.249972,0,0);-ms-transform:matrix(0.912152,-0.013682,0.003750,0.249972,0,0);-webkit-transform:matrix(0.912152,-0.013682,0.003750,0.249972,0,0);}
.me0_c00267{transform:matrix(0.936185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.936185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.936185,0.000000,0.000000,0.250000,0,0);}
.m10_c00267{transform:matrix(0.952113,-0.014282,0.003750,0.249972,0,0);-ms-transform:matrix(0.952113,-0.014282,0.003750,0.249972,0,0);-webkit-transform:matrix(0.952113,-0.014282,0.003750,0.249972,0,0);}
.m71_c00267{transform:matrix(1.056549,-0.007396,0.001750,0.249994,0,0);-ms-transform:matrix(1.056549,-0.007396,0.001750,0.249994,0,0);-webkit-transform:matrix(1.056549,-0.007396,0.001750,0.249994,0,0);}
.m67_c00267{transform:matrix(1.089653,-0.007628,0.001750,0.249994,0,0);-ms-transform:matrix(1.089653,-0.007628,0.001750,0.249994,0,0);-webkit-transform:matrix(1.089653,-0.007628,0.001750,0.249994,0,0);}
.mdc_c00267{transform:matrix(1.203805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.203805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.203805,0.000000,0.000000,0.250000,0,0);}
.ma3_c00267{transform:matrix(1.222475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.222475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.222475,0.000000,0.000000,0.250000,0,0);}
.m9d_c00267{transform:matrix(1.492565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.492565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.492565,0.000000,0.000000,0.250000,0,0);}
.m79_c00267{transform:matrix(1.571407,-0.011000,0.001750,0.249994,0,0);-ms-transform:matrix(1.571407,-0.011000,0.001750,0.249994,0,0);-webkit-transform:matrix(1.571407,-0.011000,0.001750,0.249994,0,0);}
.m7e_c00267{transform:matrix(1.812760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.812760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.812760,0.000000,0.000000,0.250000,0,0);}
.m80_c00267{transform:matrix(2.119305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.119305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.119305,0.000000,0.000000,0.250000,0,0);}
.md4_c00267{transform:matrix(2.937305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.937305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.937305,0.000000,0.000000,0.250000,0,0);}
.md0_c00267{transform:matrix(3.702090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.702090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.702090,0.000000,0.000000,0.250000,0,0);}
.me4_c00267{transform:matrix(12.847675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(12.847675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(12.847675,0.000000,0.000000,0.250000,0,0);}
.v0_c00267{vertical-align:0.000000px;}
.ls0_c00267{letter-spacing:0.000000px;}
.sc__c00267{text-shadow:none;}
.sc0_c00267{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__c00267{-webkit-text-stroke:0px transparent;}
.sc0_c00267{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00267{word-spacing:0.000000px;}
._0_c00267{width:82.254392px;}
.fc0_c00267{color:transparent;}
.fs9_c00267{font-size:18.000000px;}
.fsa_c00267{font-size:24.000000px;}
.fsb_c00267{font-size:30.000000px;}
.fs7_c00267{font-size:72.001764px;}
.fs3_c00267{font-size:72.008100px;}
.fs5_c00267{font-size:84.000000px;}
.fs8_c00267{font-size:84.002058px;}
.fs1_c00267{font-size:84.009449px;}
.fs6_c00267{font-size:90.000000px;}
.fs2_c00267{font-size:90.010124px;}
.fs0_c00267{font-size:96.010799px;}
.fs4_c00267{font-size:108.007776px;}
.y0_c00267{bottom:0.000000px;}
.y7f_c00267{bottom:47.520000px;}
.y7e_c00267{bottom:128.250000px;}
.y7d_c00267{bottom:128.520000px;}
.y7b_c00267{bottom:145.260000px;}
.y7a_c00267{bottom:147.150000px;}
.y7c_c00267{bottom:163.350000px;}
.y79_c00267{bottom:293.490000px;}
.y78_c00267{bottom:355.860000px;}
.y77_c00267{bottom:358.020000px;}
.y90_c00267{bottom:381.510000px;}
.y76_c00267{bottom:404.460000px;}
.y6d_c00267{bottom:514.904838px;}
.y6e_c00267{bottom:515.809383px;}
.y6f_c00267{bottom:516.524597px;}
.y70_c00267{bottom:517.260531px;}
.y71_c00267{bottom:517.734043px;}
.y72_c00267{bottom:518.065713px;}
.y73_c00267{bottom:519.100083px;}
.y74_c00267{bottom:520.479232px;}
.y75_c00267{bottom:520.922640px;}
.y61_c00267{bottom:545.401500px;}
.y62_c00267{bottom:546.176169px;}
.y63_c00267{bottom:546.568963px;}
.y64_c00267{bottom:546.792215px;}
.y65_c00267{bottom:547.328534px;}
.y66_c00267{bottom:547.485656px;}
.y67_c00267{bottom:548.096199px;}
.y68_c00267{bottom:548.302849px;}
.y69_c00267{bottom:548.857963px;}
.y6a_c00267{bottom:549.075450px;}
.y6b_c00267{bottom:549.808550px;}
.y6c_c00267{bottom:550.290688px;}
.y55_c00267{bottom:579.148500px;}
.y56_c00267{bottom:579.327000px;}
.y8f_c00267{bottom:579.420000px;}
.y57_c00267{bottom:579.642000px;}
.y58_c00267{bottom:579.871500px;}
.y8d_c00267{bottom:579.960000px;}
.y59_c00267{bottom:580.093500px;}
.y5a_c00267{bottom:580.620000px;}
.y5b_c00267{bottom:580.851000px;}
.y5c_c00267{bottom:581.295000px;}
.y5d_c00267{bottom:581.379000px;}
.y5e_c00267{bottom:581.655000px;}
.y5f_c00267{bottom:581.934000px;}
.y60_c00267{bottom:582.115500px;}
.y8e_c00267{bottom:583.470000px;}
.y4a_c00267{bottom:609.937500px;}
.y4b_c00267{bottom:610.300500px;}
.y4c_c00267{bottom:610.957500px;}
.y4d_c00267{bottom:611.152500px;}
.y4e_c00267{bottom:611.352000px;}
.y4f_c00267{bottom:611.622000px;}
.y50_c00267{bottom:612.211500px;}
.y51_c00267{bottom:612.420000px;}
.y52_c00267{bottom:612.996000px;}
.y53_c00267{bottom:613.135500px;}
.y54_c00267{bottom:613.462500px;}
.y8c_c00267{bottom:614.520000px;}
.y8a_c00267{bottom:633.420000px;}
.y88_c00267{bottom:642.870000px;}
.y49_c00267{bottom:644.257500px;}
.y3d_c00267{bottom:669.654000px;}
.y3e_c00267{bottom:669.893742px;}
.y3f_c00267{bottom:670.926564px;}
.y40_c00267{bottom:671.409954px;}
.y41_c00267{bottom:672.381540px;}
.y42_c00267{bottom:673.156008px;}
.y43_c00267{bottom:673.674480px;}
.y44_c00267{bottom:675.113724px;}
.y45_c00267{bottom:675.618174px;}
.y46_c00267{bottom:675.815724px;}
.y47_c00267{bottom:676.852794px;}
.y48_c00267{bottom:677.199096px;}
.y8b_c00267{bottom:761.670000px;}
.y89_c00267{bottom:764.640000px;}
.y33_c00267{bottom:832.124677px;}
.y34_c00267{bottom:832.347757px;}
.y35_c00267{bottom:832.712452px;}
.y36_c00267{bottom:833.487128px;}
.y37_c00267{bottom:834.000345px;}
.y38_c00267{bottom:834.553275px;}
.y39_c00267{bottom:834.706140px;}
.y3a_c00267{bottom:835.117792px;}
.y3b_c00267{bottom:835.352745px;}
.y3c_c00267{bottom:835.659255px;}
.y25_c00267{bottom:862.371225px;}
.y26_c00267{bottom:863.009355px;}
.y28_c00267{bottom:863.126775px;}
.y27_c00267{bottom:863.166173px;}
.y29_c00267{bottom:863.389050px;}
.y2a_c00267{bottom:863.926245px;}
.y2b_c00267{bottom:864.263235px;}
.y2c_c00267{bottom:864.638753px;}
.y2d_c00267{bottom:864.944497px;}
.y2e_c00267{bottom:865.144972px;}
.y2f_c00267{bottom:865.478692px;}
.y30_c00267{bottom:865.714965px;}
.y31_c00267{bottom:865.952963px;}
.y32_c00267{bottom:866.390775px;}
.y19_c00267{bottom:892.886640px;}
.y1a_c00267{bottom:892.997820px;}
.y1b_c00267{bottom:893.221815px;}
.y1c_c00267{bottom:893.495520px;}
.y1d_c00267{bottom:893.813520px;}
.y1e_c00267{bottom:894.199875px;}
.y1f_c00267{bottom:895.298047px;}
.y20_c00267{bottom:895.868258px;}
.y21_c00267{bottom:896.814022px;}
.y22_c00267{bottom:897.113077px;}
.y23_c00267{bottom:897.418027px;}
.y24_c00267{bottom:898.130902px;}
.yd_c00267{bottom:923.937187px;}
.ye_c00267{bottom:924.529762px;}
.yf_c00267{bottom:924.936270px;}
.y10_c00267{bottom:925.500135px;}
.y11_c00267{bottom:925.692997px;}
.y12_c00267{bottom:926.839358px;}
.y13_c00267{bottom:927.199762px;}
.y14_c00267{bottom:927.580245px;}
.y15_c00267{bottom:928.442985px;}
.y16_c00267{bottom:928.883122px;}
.y17_c00267{bottom:929.118338px;}
.y18_c00267{bottom:929.790360px;}
.y87_c00267{bottom:947.430000px;}
.y1_c00267{bottom:953.640000px;}
.y2_c00267{bottom:954.379890px;}
.y3_c00267{bottom:955.553760px;}
.y4_c00267{bottom:956.462985px;}
.y5_c00267{bottom:957.548452px;}
.y6_c00267{bottom:957.775297px;}
.y7_c00267{bottom:958.673655px;}
.y8_c00267{bottom:959.221912px;}
.y9_c00267{bottom:959.589113px;}
.ya_c00267{bottom:960.305760px;}
.yb_c00267{bottom:960.839325px;}
.yc_c00267{bottom:961.885237px;}
.y85_c00267{bottom:1099.440000px;}
.y84_c00267{bottom:1101.060000px;}
.y81_c00267{bottom:1101.330000px;}
.y82_c00267{bottom:1105.110000px;}
.y83_c00267{bottom:1119.150000px;}
.y86_c00267{bottom:1127.250000px;}
.y80_c00267{bottom:1139.130000px;}
.hb_c00267{height:18.000000px;}
.hc_c00267{height:24.000000px;}
.hd_c00267{height:30.000000px;}
.h9_c00267{height:72.001764px;}
.h5_c00267{height:72.008100px;}
.h7_c00267{height:84.000000px;}
.ha_c00267{height:84.002058px;}
.h3_c00267{height:84.009449px;}
.h8_c00267{height:90.000000px;}
.h4_c00267{height:90.010124px;}
.h2_c00267{height:96.010799px;}
.h6_c00267{height:108.007776px;}
.h0_c00267{height:1154.790000px;}
.h1_c00267{height:1155.000000px;}
.w0_c00267{width:915.000000px;}
.x0_c00267{left:0.000000px;}
.x5a_c00267{left:16.401000px;}
.x37_c00267{left:62.572500px;}
.x52_c00267{left:70.207500px;}
.x38_c00267{left:82.551000px;}
.x61_c00267{left:96.952413px;}
.x53_c00267{left:105.996000px;}
.xd_c00267{left:107.211203px;}
.x18_c00267{left:109.340835px;}
.x19_c00267{left:121.653938px;}
.x5b_c00267{left:127.068000px;}
.x49_c00267{left:131.239500px;}
.x1a_c00267{left:146.589188px;}
.x1_c00267{left:166.066500px;}
.x39_c00267{left:168.619500px;}
.x1b_c00267{left:177.038933px;}
.x5c_c00267{left:183.181500px;}
.x62_c00267{left:187.385513px;}
.x4a_c00267{left:191.655000px;}
.x22_c00267{left:198.089858px;}
.xe_c00267{left:207.024173px;}
.x3a_c00267{left:208.902000px;}
.x1c_c00267{left:212.442128px;}
.x2_c00267{left:215.392500px;}
.x23_c00267{left:220.447035px;}
.x2d_c00267{left:221.779853px;}
.x24_c00267{left:252.309360px;}
.x2e_c00267{left:253.655678px;}
.x1d_c00267{left:255.402998px;}
.x54_c00267{left:259.012500px;}
.xf_c00267{left:263.419403px;}
.x41_c00267{left:270.540000px;}
.x10_c00267{left:282.778365px;}
.x3b_c00267{left:289.867500px;}
.x5d_c00267{left:291.691500px;}
.x3_c00267{left:293.650500px;}
.x4b_c00267{left:301.248000px;}
.x2f_c00267{left:305.774933px;}
.x5e_c00267{left:314.137500px;}
.x25_c00267{left:329.031563px;}
.x63_c00267{left:332.546468px;}
.x4c_c00267{left:333.799500px;}
.x42_c00267{left:336.690000px;}
.x4_c00267{left:354.265500px;}
.x55_c00267{left:364.308000px;}
.x4d_c00267{left:367.042500px;}
.x43_c00267{left:374.490000px;}
.x1e_c00267{left:377.425478px;}
.x64_c00267{left:379.832970px;}
.x11_c00267{left:397.410960px;}
.x5f_c00267{left:401.358000px;}
.x56_c00267{left:410.493000px;}
.x4e_c00267{left:412.131000px;}
.x30_c00267{left:416.533230px;}
.x5_c00267{left:426.630000px;}
.x26_c00267{left:430.844280px;}
.x12_c00267{left:433.440660px;}
.x6_c00267{left:441.753000px;}
.x44_c00267{left:456.840000px;}
.x13_c00267{left:471.509018px;}
.x27_c00267{left:474.532523px;}
.x31_c00267{left:489.956550px;}
.x57_c00267{left:499.284000px;}
.x7_c00267{left:501.643500px;}
.x28_c00267{left:503.200965px;}
.x4f_c00267{left:510.394500px;}
.x45_c00267{left:515.970000px;}
.x3c_c00267{left:517.549500px;}
.x8_c00267{left:538.194000px;}
.x60_c00267{left:541.251000px;}
.x1f_c00267{left:545.905643px;}
.x29_c00267{left:550.954703px;}
.x14_c00267{left:557.831498px;}
.x3d_c00267{left:559.587000px;}
.x9_c00267{left:562.674000px;}
.x32_c00267{left:569.028045px;}
.x58_c00267{left:571.164000px;}
.x3e_c00267{left:576.049500px;}
.x20_c00267{left:579.145635px;}
.x2a_c00267{left:584.710253px;}
.x33_c00267{left:590.921678px;}
.x46_c00267{left:594.270000px;}
.x15_c00267{left:601.777283px;}
.xa_c00267{left:610.450500px;}
.x21_c00267{left:613.078695px;}
.x2b_c00267{left:618.780848px;}
.x16_c00267{left:625.260038px;}
.x59_c00267{left:627.010500px;}
.x47_c00267{left:628.290000px;}
.x50_c00267{left:641.325000px;}
.xb_c00267{left:646.021500px;}
.x34_c00267{left:649.772243px;}
.x65_c00267{left:654.354206px;}
.x3f_c00267{left:662.472000px;}
.x48_c00267{left:663.660000px;}
.x2c_c00267{left:681.375863px;}
.x35_c00267{left:683.239748px;}
.x40_c00267{left:691.330500px;}
.x17_c00267{left:692.466578px;}
.x66_c00267{left:698.625771px;}
.xc_c00267{left:715.749000px;}
.x51_c00267{left:719.089500px;}
.x36_c00267{left:726.978990px;}
.x7b_c00267{left:750.060000px;}
.x7a_c00267{left:751.410000px;}
.x7c_c00267{left:755.460000px;}
.x7d_c00267{left:763.290000px;}
.x7f_c00267{left:778.410000px;}
.x7e_c00267{left:779.490000px;}
.x80_c00267{left:806.490000px;}
.x81_c00267{left:807.570000px;}
.x82_c00267{left:808.650000px;}
.x83_c00267{left:819.720000px;}
.x69_c00267{left:823.770000px;}
.x84_c00267{left:825.120000px;}
.x85_c00267{left:826.740000px;}
.x86_c00267{left:830.250000px;}
.x6a_c00267{left:831.330000px;}
.x87_c00267{left:832.680000px;}
.x88_c00267{left:834.570000px;}
.x89_c00267{left:835.650000px;}
.x8a_c00267{left:836.730000px;}
.x8b_c00267{left:838.080000px;}
.x6b_c00267{left:841.590000px;}
.x6c_c00267{left:842.940000px;}
.x8c_c00267{left:844.020000px;}
.x8d_c00267{left:845.640000px;}
.x8e_c00267{left:847.530000px;}
.x6d_c00267{left:848.610000px;}
.x6e_c00267{left:850.230000px;}
.x8f_c00267{left:851.580000px;}
.x90_c00267{left:852.930000px;}
.x70_c00267{left:864.810000px;}
.x6f_c00267{left:865.890000px;}
.x72_c00267{left:868.860000px;}
.x73_c00267{left:870.480000px;}
.x71_c00267{left:872.640000px;}
.x76_c00267{left:874.260000px;}
.x74_c00267{left:875.610000px;}
.x75_c00267{left:877.770000px;}
.x67_c00267{left:885.330000px;}
.x91_c00267{left:887.490000px;}
.x78_c00267{left:889.920000px;}
.x68_c00267{left:891.810000px;}
.x79_c00267{left:892.890000px;}
.x92_c00267{left:893.970000px;}
.x77_c00267{left:895.590000px;}
@media print{
.v0_c00267{vertical-align:0.000000pt;}
.ls0_c00267{letter-spacing:0.000000pt;}
.ws0_c00267{word-spacing:0.000000pt;}
._0_c00267{width:73.115015pt;}
.fs9_c00267{font-size:16.000000pt;}
.fsa_c00267{font-size:21.333333pt;}
.fsb_c00267{font-size:26.666667pt;}
.fs7_c00267{font-size:64.001568pt;}
.fs3_c00267{font-size:64.007200pt;}
.fs5_c00267{font-size:74.666667pt;}
.fs8_c00267{font-size:74.668496pt;}
.fs1_c00267{font-size:74.675066pt;}
.fs6_c00267{font-size:80.000000pt;}
.fs2_c00267{font-size:80.008999pt;}
.fs0_c00267{font-size:85.342933pt;}
.fs4_c00267{font-size:96.006912pt;}
.y0_c00267{bottom:0.000000pt;}
.y7f_c00267{bottom:42.240000pt;}
.y7e_c00267{bottom:114.000000pt;}
.y7d_c00267{bottom:114.240000pt;}
.y7b_c00267{bottom:129.120000pt;}
.y7a_c00267{bottom:130.800000pt;}
.y7c_c00267{bottom:145.200000pt;}
.y79_c00267{bottom:260.880000pt;}
.y78_c00267{bottom:316.320000pt;}
.y77_c00267{bottom:318.240000pt;}
.y90_c00267{bottom:339.120000pt;}
.y76_c00267{bottom:359.520000pt;}
.y6d_c00267{bottom:457.693189pt;}
.y6e_c00267{bottom:458.497229pt;}
.y6f_c00267{bottom:459.132975pt;}
.y70_c00267{bottom:459.787139pt;}
.y71_c00267{bottom:460.208039pt;}
.y72_c00267{bottom:460.502856pt;}
.y73_c00267{bottom:461.422296pt;}
.y74_c00267{bottom:462.648207pt;}
.y75_c00267{bottom:463.042347pt;}
.y61_c00267{bottom:484.801333pt;}
.y62_c00267{bottom:485.489928pt;}
.y63_c00267{bottom:485.839079pt;}
.y64_c00267{bottom:486.037524pt;}
.y65_c00267{bottom:486.514252pt;}
.y66_c00267{bottom:486.653916pt;}
.y67_c00267{bottom:487.196621pt;}
.y68_c00267{bottom:487.380311pt;}
.y69_c00267{bottom:487.873745pt;}
.y6a_c00267{bottom:488.067067pt;}
.y6b_c00267{bottom:488.718711pt;}
.y6c_c00267{bottom:489.147279pt;}
.y55_c00267{bottom:514.798667pt;}
.y56_c00267{bottom:514.957333pt;}
.y8f_c00267{bottom:515.040000pt;}
.y57_c00267{bottom:515.237333pt;}
.y58_c00267{bottom:515.441333pt;}
.y8d_c00267{bottom:515.520000pt;}
.y59_c00267{bottom:515.638667pt;}
.y5a_c00267{bottom:516.106667pt;}
.y5b_c00267{bottom:516.312000pt;}
.y5c_c00267{bottom:516.706667pt;}
.y5d_c00267{bottom:516.781333pt;}
.y5e_c00267{bottom:517.026667pt;}
.y5f_c00267{bottom:517.274667pt;}
.y60_c00267{bottom:517.436000pt;}
.y8e_c00267{bottom:518.640000pt;}
.y4a_c00267{bottom:542.166667pt;}
.y4b_c00267{bottom:542.489333pt;}
.y4c_c00267{bottom:543.073333pt;}
.y4d_c00267{bottom:543.246667pt;}
.y4e_c00267{bottom:543.424000pt;}
.y4f_c00267{bottom:543.664000pt;}
.y50_c00267{bottom:544.188000pt;}
.y51_c00267{bottom:544.373333pt;}
.y52_c00267{bottom:544.885333pt;}
.y53_c00267{bottom:545.009333pt;}
.y54_c00267{bottom:545.300000pt;}
.y8c_c00267{bottom:546.240000pt;}
.y8a_c00267{bottom:563.040000pt;}
.y88_c00267{bottom:571.440000pt;}
.y49_c00267{bottom:572.673333pt;}
.y3d_c00267{bottom:595.248000pt;}
.y3e_c00267{bottom:595.461104pt;}
.y3f_c00267{bottom:596.379168pt;}
.y40_c00267{bottom:596.808848pt;}
.y41_c00267{bottom:597.672480pt;}
.y42_c00267{bottom:598.360896pt;}
.y43_c00267{bottom:598.821760pt;}
.y44_c00267{bottom:600.101088pt;}
.y45_c00267{bottom:600.549488pt;}
.y46_c00267{bottom:600.725088pt;}
.y47_c00267{bottom:601.646928pt;}
.y48_c00267{bottom:601.954752pt;}
.y8b_c00267{bottom:677.040000pt;}
.y89_c00267{bottom:679.680000pt;}
.y33_c00267{bottom:739.666380pt;}
.y34_c00267{bottom:739.864673pt;}
.y35_c00267{bottom:740.188847pt;}
.y36_c00267{bottom:740.877447pt;}
.y37_c00267{bottom:741.333640pt;}
.y38_c00267{bottom:741.825133pt;}
.y39_c00267{bottom:741.961013pt;}
.y3a_c00267{bottom:742.326927pt;}
.y3b_c00267{bottom:742.535773pt;}
.y3c_c00267{bottom:742.808227pt;}
.y25_c00267{bottom:766.552200pt;}
.y26_c00267{bottom:767.119427pt;}
.y28_c00267{bottom:767.223800pt;}
.y27_c00267{bottom:767.258820pt;}
.y29_c00267{bottom:767.456933pt;}
.y2a_c00267{bottom:767.934440pt;}
.y2b_c00267{bottom:768.233987pt;}
.y2c_c00267{bottom:768.567780pt;}
.y2d_c00267{bottom:768.839553pt;}
.y2e_c00267{bottom:769.017753pt;}
.y2f_c00267{bottom:769.314393pt;}
.y30_c00267{bottom:769.524413pt;}
.y31_c00267{bottom:769.735967pt;}
.y32_c00267{bottom:770.125133pt;}
.y19_c00267{bottom:793.677013pt;}
.y1a_c00267{bottom:793.775840pt;}
.y1b_c00267{bottom:793.974947pt;}
.y1c_c00267{bottom:794.218240pt;}
.y1d_c00267{bottom:794.500907pt;}
.y1e_c00267{bottom:794.844333pt;}
.y1f_c00267{bottom:795.820487pt;}
.y20_c00267{bottom:796.327340pt;}
.y21_c00267{bottom:797.168020pt;}
.y22_c00267{bottom:797.433847pt;}
.y23_c00267{bottom:797.704913pt;}
.y24_c00267{bottom:798.338580pt;}
.yd_c00267{bottom:821.277500pt;}
.ye_c00267{bottom:821.804233pt;}
.yf_c00267{bottom:822.165573pt;}
.y10_c00267{bottom:822.666787pt;}
.y11_c00267{bottom:822.838220pt;}
.y12_c00267{bottom:823.857207pt;}
.y13_c00267{bottom:824.177567pt;}
.y14_c00267{bottom:824.515773pt;}
.y15_c00267{bottom:825.282653pt;}
.y16_c00267{bottom:825.673887pt;}
.y17_c00267{bottom:825.882967pt;}
.y18_c00267{bottom:826.480320pt;}
.y87_c00267{bottom:842.160000pt;}
.y1_c00267{bottom:847.680000pt;}
.y2_c00267{bottom:848.337680pt;}
.y3_c00267{bottom:849.381120pt;}
.y4_c00267{bottom:850.189320pt;}
.y5_c00267{bottom:851.154180pt;}
.y6_c00267{bottom:851.355820pt;}
.y7_c00267{bottom:852.154360pt;}
.y8_c00267{bottom:852.641700pt;}
.y9_c00267{bottom:852.968100pt;}
.ya_c00267{bottom:853.605120pt;}
.yb_c00267{bottom:854.079400pt;}
.yc_c00267{bottom:855.009100pt;}
.y85_c00267{bottom:977.280000pt;}
.y84_c00267{bottom:978.720000pt;}
.y81_c00267{bottom:978.960000pt;}
.y82_c00267{bottom:982.320000pt;}
.y83_c00267{bottom:994.800000pt;}
.y86_c00267{bottom:1002.000000pt;}
.y80_c00267{bottom:1012.560000pt;}
.hb_c00267{height:16.000000pt;}
.hc_c00267{height:21.333333pt;}
.hd_c00267{height:26.666667pt;}
.h9_c00267{height:64.001568pt;}
.h5_c00267{height:64.007200pt;}
.h7_c00267{height:74.666667pt;}
.ha_c00267{height:74.668496pt;}
.h3_c00267{height:74.675066pt;}
.h8_c00267{height:80.000000pt;}
.h4_c00267{height:80.008999pt;}
.h2_c00267{height:85.342933pt;}
.h6_c00267{height:96.006912pt;}
.h0_c00267{height:1026.480000pt;}
.h1_c00267{height:1026.666667pt;}
.w0_c00267{width:813.333333pt;}
.x0_c00267{left:0.000000pt;}
.x5a_c00267{left:14.578667pt;}
.x37_c00267{left:55.620000pt;}
.x52_c00267{left:62.406667pt;}
.x38_c00267{left:73.378667pt;}
.x61_c00267{left:86.179923pt;}
.x53_c00267{left:94.218667pt;}
.xd_c00267{left:95.298847pt;}
.x18_c00267{left:97.191853pt;}
.x19_c00267{left:108.136833pt;}
.x5b_c00267{left:112.949333pt;}
.x49_c00267{left:116.657333pt;}
.x1a_c00267{left:130.301500pt;}
.x1_c00267{left:147.614667pt;}
.x39_c00267{left:149.884000pt;}
.x1b_c00267{left:157.367940pt;}
.x5c_c00267{left:162.828000pt;}
.x62_c00267{left:166.564900pt;}
.x4a_c00267{left:170.360000pt;}
.x22_c00267{left:176.079873pt;}
.xe_c00267{left:184.021487pt;}
.x3a_c00267{left:185.690667pt;}
.x1c_c00267{left:188.837447pt;}
.x2_c00267{left:191.460000pt;}
.x23_c00267{left:195.952920pt;}
.x2d_c00267{left:197.137647pt;}
.x24_c00267{left:224.274987pt;}
.x2e_c00267{left:225.471713pt;}
.x1d_c00267{left:227.024887pt;}
.x54_c00267{left:230.233333pt;}
.xf_c00267{left:234.150580pt;}
.x41_c00267{left:240.480000pt;}
.x10_c00267{left:251.358547pt;}
.x3b_c00267{left:257.660000pt;}
.x5d_c00267{left:259.281333pt;}
.x3_c00267{left:261.022667pt;}
.x4b_c00267{left:267.776000pt;}
.x2f_c00267{left:271.799940pt;}
.x5e_c00267{left:279.233333pt;}
.x25_c00267{left:292.472500pt;}
.x63_c00267{left:295.596860pt;}
.x4c_c00267{left:296.710667pt;}
.x42_c00267{left:299.280000pt;}
.x4_c00267{left:314.902667pt;}
.x55_c00267{left:323.829333pt;}
.x4d_c00267{left:326.260000pt;}
.x43_c00267{left:332.880000pt;}
.x1e_c00267{left:335.489313pt;}
.x64_c00267{left:337.629307pt;}
.x11_c00267{left:353.254187pt;}
.x5f_c00267{left:356.762667pt;}
.x56_c00267{left:364.882667pt;}
.x4e_c00267{left:366.338667pt;}
.x30_c00267{left:370.251760pt;}
.x5_c00267{left:379.226667pt;}
.x26_c00267{left:382.972693pt;}
.x12_c00267{left:385.280587pt;}
.x6_c00267{left:392.669333pt;}
.x44_c00267{left:406.080000pt;}
.x13_c00267{left:419.119127pt;}
.x27_c00267{left:421.806687pt;}
.x31_c00267{left:435.516933pt;}
.x57_c00267{left:443.808000pt;}
.x7_c00267{left:445.905333pt;}
.x28_c00267{left:447.289747pt;}
.x4f_c00267{left:453.684000pt;}
.x45_c00267{left:458.640000pt;}
.x3c_c00267{left:460.044000pt;}
.x8_c00267{left:478.394667pt;}
.x60_c00267{left:481.112000pt;}
.x1f_c00267{left:485.249460pt;}
.x29_c00267{left:489.737513pt;}
.x14_c00267{left:495.850220pt;}
.x3d_c00267{left:497.410667pt;}
.x9_c00267{left:500.154667pt;}
.x32_c00267{left:505.802707pt;}
.x58_c00267{left:507.701333pt;}
.x3e_c00267{left:512.044000pt;}
.x20_c00267{left:514.796120pt;}
.x2a_c00267{left:519.742447pt;}
.x33_c00267{left:525.263713pt;}
.x46_c00267{left:528.240000pt;}
.x15_c00267{left:534.913140pt;}
.xa_c00267{left:542.622667pt;}
.x21_c00267{left:544.958840pt;}
.x2b_c00267{left:550.027420pt;}
.x16_c00267{left:555.786700pt;}
.x59_c00267{left:557.342667pt;}
.x47_c00267{left:558.480000pt;}
.x50_c00267{left:570.066667pt;}
.xb_c00267{left:574.241333pt;}
.x34_c00267{left:577.575327pt;}
.x65_c00267{left:581.648183pt;}
.x3f_c00267{left:588.864000pt;}
.x48_c00267{left:589.920000pt;}
.x2c_c00267{left:605.667433pt;}
.x35_c00267{left:607.324220pt;}
.x40_c00267{left:614.516000pt;}
.x17_c00267{left:615.525847pt;}
.x66_c00267{left:621.000685pt;}
.xc_c00267{left:636.221333pt;}
.x51_c00267{left:639.190667pt;}
.x36_c00267{left:646.203547pt;}
.x7b_c00267{left:666.720000pt;}
.x7a_c00267{left:667.920000pt;}
.x7c_c00267{left:671.520000pt;}
.x7d_c00267{left:678.480000pt;}
.x7f_c00267{left:691.920000pt;}
.x7e_c00267{left:692.880000pt;}
.x80_c00267{left:716.880000pt;}
.x81_c00267{left:717.840000pt;}
.x82_c00267{left:718.800000pt;}
.x83_c00267{left:728.640000pt;}
.x69_c00267{left:732.240000pt;}
.x84_c00267{left:733.440000pt;}
.x85_c00267{left:734.880000pt;}
.x86_c00267{left:738.000000pt;}
.x6a_c00267{left:738.960000pt;}
.x87_c00267{left:740.160000pt;}
.x88_c00267{left:741.840000pt;}
.x89_c00267{left:742.800000pt;}
.x8a_c00267{left:743.760000pt;}
.x8b_c00267{left:744.960000pt;}
.x6b_c00267{left:748.080000pt;}
.x6c_c00267{left:749.280000pt;}
.x8c_c00267{left:750.240000pt;}
.x8d_c00267{left:751.680000pt;}
.x8e_c00267{left:753.360000pt;}
.x6d_c00267{left:754.320000pt;}
.x6e_c00267{left:755.760000pt;}
.x8f_c00267{left:756.960000pt;}
.x90_c00267{left:758.160000pt;}
.x70_c00267{left:768.720000pt;}
.x6f_c00267{left:769.680000pt;}
.x72_c00267{left:772.320000pt;}
.x73_c00267{left:773.760000pt;}
.x71_c00267{left:775.680000pt;}
.x76_c00267{left:777.120000pt;}
.x74_c00267{left:778.320000pt;}
.x75_c00267{left:780.240000pt;}
.x67_c00267{left:786.960000pt;}
.x91_c00267{left:788.880000pt;}
.x78_c00267{left:791.040000pt;}
.x68_c00267{left:792.720000pt;}
.x79_c00267{left:793.680000pt;}
.x92_c00267{left:794.640000pt;}
.x77_c00267{left:796.080000pt;}
}





/* 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_c00268 {
    display:none;
  }
  .loading-indicator_c00268.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00268 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_c00268 { 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_c00268" -> "#page-container .classname_c00268")
 */
.pf_c00268 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00268 { /* 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_c00268.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00268 { /* 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_c00268 { /* 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_c00268 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00268 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00268 {overflow:visible;}
  }
}
.c_c00268 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00268 { /* 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_c00268:after { /* webkit #35443 */
  content: '';
}
.t_c00268:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00268 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 */
}
.__c00268 { /* 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_c00268 { /* info for Javascript */
  display:none;
}
.l_c00268 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00268 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00268 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00268: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_c00268 {
    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_c00268.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00268.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_c00268 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00268{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00268;src:url('chunks/assets/font_fabf4b590f7fb32aea93ffb2.woff2')format("woff");}.ff1_c00268{font-family:ff1_c00268;line-height:1.000000;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;}
.m7e_c00268{transform:matrix(0.010165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.010165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.010165,0.000000,0.000000,0.250000,0,0);}
.m7d_c00268{transform:matrix(0.011590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.011590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.011590,0.000000,0.000000,0.250000,0,0);}
.m34_c00268{transform:matrix(0.015910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.015910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.015910,0.000000,0.000000,0.250000,0,0);}
.m95_c00268{transform:matrix(0.129420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129420,0.000000,0.000000,0.250000,0,0);}
.m16_c00268{transform:matrix(0.151835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151835,0.000000,0.000000,0.250000,0,0);}
.m8a_c00268{transform:matrix(0.154380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154380,0.000000,0.000000,0.250000,0,0);}
.m8e_c00268{transform:matrix(0.159120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159120,0.000000,0.000000,0.250000,0,0);}
.m31_c00268{transform:matrix(0.171945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171945,0.000000,0.000000,0.250000,0,0);}
.me_c00268{transform:matrix(0.181395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181395,0.000000,0.000000,0.250000,0,0);}
.mc_c00268{transform:matrix(0.182960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182960,0.000000,0.000000,0.250000,0,0);}
.m2e_c00268{transform:matrix(0.188745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188745,0.000000,0.000000,0.250000,0,0);}
.m94_c00268{transform:matrix(0.190120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190120,0.000000,0.000000,0.250000,0,0);}
.m2a_c00268{transform:matrix(0.190980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190980,0.000000,0.000000,0.250000,0,0);}
.m32_c00268{transform:matrix(0.199235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199235,0.000000,0.000000,0.250000,0,0);}
.m93_c00268{transform:matrix(0.202040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202040,0.000000,0.000000,0.250000,0,0);}
.m2d_c00268{transform:matrix(0.202105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202105,0.000000,0.000000,0.250000,0,0);}
.m27_c00268{transform:matrix(0.202870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202870,0.000000,0.000000,0.250000,0,0);}
.m2c_c00268{transform:matrix(0.203760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203760,0.000000,0.000000,0.250000,0,0);}
.m90_c00268{transform:matrix(0.204635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204635,0.000000,0.000000,0.250000,0,0);}
.m41_c00268{transform:matrix(0.206470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206470,0.000000,0.000000,0.250000,0,0);}
.m4b_c00268{transform:matrix(0.207450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207450,0.000000,0.000000,0.250000,0,0);}
.m55_c00268{transform:matrix(0.208510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208510,0.000000,0.000000,0.250000,0,0);}
.m2b_c00268{transform:matrix(0.208710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208710,0.000000,0.000000,0.250000,0,0);}
.m8f_c00268{transform:matrix(0.210050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210050,0.000000,0.000000,0.250000,0,0);}
.m5d_c00268{transform:matrix(0.210555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210555,0.000000,0.000000,0.250000,0,0);}
.m77_c00268{transform:matrix(0.210610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210610,0.000000,0.000000,0.250000,0,0);}
.m2f_c00268{transform:matrix(0.210640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210640,0.000000,0.000000,0.250000,0,0);}
.m14_c00268{transform:matrix(0.212510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212510,0.000000,0.000000,0.250000,0,0);}
.m5b_c00268{transform:matrix(0.212610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212610,0.000000,0.000000,0.250000,0,0);}
.m53_c00268{transform:matrix(0.212720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212720,0.000000,0.000000,0.250000,0,0);}
.m96_c00268{transform:matrix(0.214135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214135,0.000000,0.000000,0.250000,0,0);}
.m6d_c00268{transform:matrix(0.214665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214665,0.000000,0.000000,0.250000,0,0);}
.m59_c00268{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m29_c00268{transform:matrix(0.215065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215065,0.000000,0.000000,0.250000,0,0);}
.m28_c00268{transform:matrix(0.215925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215925,0.000000,0.000000,0.250000,0,0);}
.m86_c00268{transform:matrix(0.218165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218165,0.000000,0.000000,0.250000,0,0);}
.m49_c00268{transform:matrix(0.218580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218580,0.000000,0.000000,0.250000,0,0);}
.m6b_c00268{transform:matrix(0.218795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218795,0.000000,0.000000,0.250000,0,0);}
.m72_c00268{transform:matrix(0.219160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219160,0.000000,0.000000,0.250000,0,0);}
.m6c_c00268{transform:matrix(0.220045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220045,0.000000,0.000000,0.250000,0,0);}
.m56_c00268{transform:matrix(0.221385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221385,0.000000,0.000000,0.250000,0,0);}
.mf_c00268{transform:matrix(0.224035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224035,0.000000,0.000000,0.250000,0,0);}
.m11_c00268{transform:matrix(0.224070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224070,0.000000,0.000000,0.250000,0,0);}
.m7c_c00268{transform:matrix(0.224295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224295,0.000000,0.000000,0.250000,0,0);}
.m7b_c00268{transform:matrix(0.224870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224870,0.000000,0.000000,0.250000,0,0);}
.m92_c00268{transform:matrix(0.225100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225100,0.000000,0.000000,0.250000,0,0);}
.m25_c00268{transform:matrix(0.226965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226965,0.000000,0.000000,0.250000,0,0);}
.m68_c00268{transform:matrix(0.227245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227245,0.000000,0.000000,0.250000,0,0);}
.m5c_c00268{transform:matrix(0.227345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227345,0.000000,0.000000,0.250000,0,0);}
.m30_c00268{transform:matrix(0.229150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229150,0.000000,0.000000,0.250000,0,0);}
.m7f_c00268{transform:matrix(0.229330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229330,0.000000,0.000000,0.250000,0,0);}
.m76_c00268{transform:matrix(0.229775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229775,0.000000,0.000000,0.250000,0,0);}
.m58_c00268{transform:matrix(0.229900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229900,0.000000,0.000000,0.250000,0,0);}
.m38_c00268{transform:matrix(0.230215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230215,0.000000,0.000000,0.250000,0,0);}
.m19_c00268{transform:matrix(0.230220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230220,0.000000,0.000000,0.250000,0,0);}
.m65_c00268{transform:matrix(0.230315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230315,0.000000,0.000000,0.250000,0,0);}
.m89_c00268{transform:matrix(0.230800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230800,0.000000,0.000000,0.250000,0,0);}
.m3c_c00268{transform:matrix(0.231060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231060,0.000000,0.000000,0.250000,0,0);}
.m47_c00268{transform:matrix(0.231620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231620,0.000000,0.000000,0.250000,0,0);}
.m79_c00268{transform:matrix(0.232105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232105,0.000000,0.000000,0.250000,0,0);}
.m70_c00268{transform:matrix(0.232435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232435,0.000000,0.000000,0.250000,0,0);}
.m52_c00268{transform:matrix(0.232460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232460,0.000000,0.000000,0.250000,0,0);}
.m91_c00268{transform:matrix(0.233020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233020,0.000000,0.000000,0.250000,0,0);}
.m40_c00268{transform:matrix(0.233200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233200,0.000000,0.000000,0.250000,0,0);}
.m2_c00268{transform:matrix(0.233840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233840,0.000000,0.000000,0.250000,0,0);}
.m7_c00268{transform:matrix(0.234020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234020,0.000000,0.000000,0.250000,0,0);}
.m81_c00268{transform:matrix(0.235485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235485,0.000000,0.000000,0.250000,0,0);}
.m3f_c00268{transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);}
.m45_c00268{transform:matrix(0.236175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236175,0.000000,0.000000,0.250000,0,0);}
.m4e_c00268{transform:matrix(0.237950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237950,0.000000,0.000000,0.250000,0,0);}
.m3e_c00268{transform:matrix(0.238445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238445,0.000000,0.000000,0.250000,0,0);}
.m84_c00268{transform:matrix(0.238640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238640,0.000000,0.000000,0.250000,0,0);}
.m5f_c00268{transform:matrix(0.240800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240800,0.000000,0.000000,0.250000,0,0);}
.m0_c00268{transform:matrix(0.240835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240835,0.000000,0.000000,0.250000,0,0);}
.mb_c00268{transform:matrix(0.241300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241300,0.000000,0.000000,0.250000,0,0);}
.m6_c00268{transform:matrix(0.241995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241995,0.000000,0.000000,0.250000,0,0);}
.md_c00268{transform:matrix(0.242735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242735,0.000000,0.000000,0.250000,0,0);}
.m15_c00268{transform:matrix(0.242980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242980,0.000000,0.000000,0.250000,0,0);}
.m1f_c00268{transform:matrix(0.243375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243375,0.000000,0.000000,0.250000,0,0);}
.m17_c00268{transform:matrix(0.243515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243515,0.000000,0.000000,0.250000,0,0);}
.m46_c00268{transform:matrix(0.243745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243745,0.000000,0.000000,0.250000,0,0);}
.m5e_c00268{transform:matrix(0.244065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244065,0.000000,0.000000,0.250000,0,0);}
.m10_c00268{transform:matrix(0.245010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245010,0.000000,0.000000,0.250000,0,0);}
.m8c_c00268{transform:matrix(0.245045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245045,0.000000,0.000000,0.250000,0,0);}
.m3_c00268{transform:matrix(0.246290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246290,0.000000,0.000000,0.250000,0,0);}
.m78_c00268{transform:matrix(0.246855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246855,0.000000,0.000000,0.250000,0,0);}
.m8b_c00268{transform:matrix(0.247260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247260,0.000000,0.000000,0.250000,0,0);}
.m69_c00268{transform:matrix(0.247810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247810,0.000000,0.000000,0.250000,0,0);}
.m1d_c00268{transform:matrix(0.248245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248245,0.000000,0.000000,0.250000,0,0);}
.m4a_c00268{transform:matrix(0.248275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248275,0.000000,0.000000,0.250000,0,0);}
.m6a_c00268{transform:matrix(0.248465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248465,0.000000,0.000000,0.250000,0,0);}
.m6e_c00268{transform:matrix(0.248515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248515,0.000000,0.000000,0.250000,0,0);}
.m57_c00268{transform:matrix(0.248675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248675,0.000000,0.000000,0.250000,0,0);}
.m7a_c00268{transform:matrix(0.248780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248780,0.000000,0.000000,0.250000,0,0);}
.m54_c00268{transform:matrix(0.249075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249075,0.000000,0.000000,0.250000,0,0);}
.m43_c00268{transform:matrix(0.249145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249145,0.000000,0.000000,0.250000,0,0);}
.m12_c00268{transform:matrix(0.249155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249155,0.000000,0.000000,0.250000,0,0);}
.m3d_c00268{transform:matrix(0.249685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249685,0.000000,0.000000,0.250000,0,0);}
.m71_c00268{transform:matrix(0.249970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249970,0.000000,0.000000,0.250000,0,0);}
.m80_c00268{transform:matrix(0.249985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249985,0.000000,0.000000,0.250000,0,0);}
.m1a_c00268{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m66_c00268{transform:matrix(0.250580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250580,0.000000,0.000000,0.250000,0,0);}
.m4d_c00268{transform:matrix(0.250790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250790,0.000000,0.000000,0.250000,0,0);}
.m13_c00268{transform:matrix(0.251670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251670,0.000000,0.000000,0.250000,0,0);}
.m61_c00268{transform:matrix(0.251680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251680,0.000000,0.000000,0.250000,0,0);}
.m73_c00268{transform:matrix(0.251865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251865,0.000000,0.000000,0.250000,0,0);}
.m60_c00268{transform:matrix(0.252120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252120,0.000000,0.000000,0.250000,0,0);}
.m44_c00268{transform:matrix(0.252725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252725,0.000000,0.000000,0.250000,0,0);}
.m48_c00268{transform:matrix(0.252825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252825,0.000000,0.000000,0.250000,0,0);}
.m18_c00268{transform:matrix(0.252925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252925,0.000000,0.000000,0.250000,0,0);}
.m21_c00268{transform:matrix(0.253035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253035,0.000000,0.000000,0.250000,0,0);}
.m8d_c00268{transform:matrix(0.253165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253165,0.000000,0.000000,0.250000,0,0);}
.m4c_c00268{transform:matrix(0.253360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253360,0.000000,0.000000,0.250000,0,0);}
.m6f_c00268{transform:matrix(0.253505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253505,0.000000,0.000000,0.250000,0,0);}
.m85_c00268{transform:matrix(0.253910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253910,0.000000,0.000000,0.250000,0,0);}
.m63_c00268{transform:matrix(0.254410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254410,0.000000,0.000000,0.250000,0,0);}
.m64_c00268{transform:matrix(0.254505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254505,0.000000,0.000000,0.250000,0,0);}
.m5a_c00268{transform:matrix(0.254755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254755,0.000000,0.000000,0.250000,0,0);}
.m4_c00268{transform:matrix(0.255440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255440,0.000000,0.000000,0.250000,0,0);}
.m42_c00268{transform:matrix(0.255740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255740,0.000000,0.000000,0.250000,0,0);}
.m67_c00268{transform:matrix(0.256875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256875,0.000000,0.000000,0.250000,0,0);}
.m4f_c00268{transform:matrix(0.257675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257675,0.000000,0.000000,0.250000,0,0);}
.m62_c00268{transform:matrix(0.259405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259405,0.000000,0.000000,0.250000,0,0);}
.m23_c00268{transform:matrix(0.261275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261275,0.000000,0.000000,0.250000,0,0);}
.m36_c00268{transform:matrix(0.262870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262870,0.000000,0.000000,0.250000,0,0);}
.m26_c00268{transform:matrix(0.265095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265095,0.000000,0.000000,0.250000,0,0);}
.m87_c00268{transform:matrix(0.265375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265375,0.000000,0.000000,0.250000,0,0);}
.ma_c00268{transform:matrix(0.265675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265675,0.000000,0.000000,0.250000,0,0);}
.m3a_c00268{transform:matrix(0.268260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268260,0.000000,0.000000,0.250000,0,0);}
.m5_c00268{transform:matrix(0.268380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268380,0.000000,0.000000,0.250000,0,0);}
.m22_c00268{transform:matrix(0.269015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269015,0.000000,0.000000,0.250000,0,0);}
.m88_c00268{transform:matrix(0.269455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269455,0.000000,0.000000,0.250000,0,0);}
.m8_c00268{transform:matrix(0.269495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269495,0.000000,0.000000,0.250000,0,0);}
.m1_c00268{transform:matrix(0.270005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270005,0.000000,0.000000,0.250000,0,0);}
.m1e_c00268{transform:matrix(0.270675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270675,0.000000,0.000000,0.250000,0,0);}
.m39_c00268{transform:matrix(0.270845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270845,0.000000,0.000000,0.250000,0,0);}
.m83_c00268{transform:matrix(0.272515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272515,0.000000,0.000000,0.250000,0,0);}
.m20_c00268{transform:matrix(0.273265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273265,0.000000,0.000000,0.250000,0,0);}
.m33_c00268{transform:matrix(0.273615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273615,0.000000,0.000000,0.250000,0,0);}
.m24_c00268{transform:matrix(0.273995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273995,0.000000,0.000000,0.250000,0,0);}
.m35_c00268{transform:matrix(0.274050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274050,0.000000,0.000000,0.250000,0,0);}
.m9_c00268{transform:matrix(0.274500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00268{transform:matrix(0.274730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274730,0.000000,0.000000,0.250000,0,0);}
.m9a_c00268{transform:matrix(0.274760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274760,0.000000,0.000000,0.250000,0,0);}
.m37_c00268{transform:matrix(0.282875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282875,0.000000,0.000000,0.250000,0,0);}
.m9c_c00268{transform:matrix(0.297265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297265,0.000000,0.000000,0.250000,0,0);}
.m75_c00268{transform:matrix(0.303435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303435,0.000000,0.000000,0.250000,0,0);}
.m51_c00268{transform:matrix(0.311175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311175,0.000000,0.000000,0.250000,0,0);}
.m98_c00268{transform:matrix(0.314700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314700,0.000000,0.000000,0.250000,0,0);}
.m99_c00268{transform:matrix(0.319255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319255,0.000000,0.000000,0.250000,0,0);}
.m97_c00268{transform:matrix(0.321660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321660,0.000000,0.000000,0.250000,0,0);}
.m9b_c00268{transform:matrix(0.324960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324960,0.000000,0.000000,0.250000,0,0);}
.m1c_c00268{transform:matrix(0.333770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333770,0.000000,0.000000,0.250000,0,0);}
.m50_c00268{transform:matrix(0.334830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334830,0.000000,0.000000,0.250000,0,0);}
.m74_c00268{transform:matrix(0.339910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339910,0.000000,0.000000,0.250000,0,0);}
.m1b_c00268{transform:matrix(0.347010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347010,0.000000,0.000000,0.250000,0,0);}
.m82_c00268{transform:matrix(0.357365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357365,0.000000,0.000000,0.250000,0,0);}
.v0_c00268{vertical-align:0.000000px;}
.ls0_c00268{letter-spacing:0.000000px;}
.sc__c00268{text-shadow:none;}
.sc0_c00268{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__c00268{-webkit-text-stroke:0px transparent;}
.sc0_c00268{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00268{word-spacing:0.000000px;}
.fc0_c00268{color:transparent;}
.fs4_c00268{font-size:60.000000px;}
.fs0_c00268{font-size:72.000000px;}
.fs1_c00268{font-size:78.000000px;}
.fs3_c00268{font-size:84.000000px;}
.fs2_c00268{font-size:90.000000px;}
.y0_c00268{bottom:0.000000px;}
.y13_c00268{bottom:169.905000px;}
.y12_c00268{bottom:369.118500px;}
.y11_c00268{bottom:540.622500px;}
.y10_c00268{bottom:570.393000px;}
.yf_c00268{bottom:600.805500px;}
.ye_c00268{bottom:632.784000px;}
.yd_c00268{bottom:664.047000px;}
.yc_c00268{bottom:696.600000px;}
.yb_c00268{bottom:729.000000px;}
.ya_c00268{bottom:760.050000px;}
.y9_c00268{bottom:792.915000px;}
.y8_c00268{bottom:823.042500px;}
.y7_c00268{bottom:855.318000px;}
.y6_c00268{bottom:885.826500px;}
.y5_c00268{bottom:917.649000px;}
.y4_c00268{bottom:949.504500px;}
.y3_c00268{bottom:982.179000px;}
.y2_c00268{bottom:1012.944000px;}
.y1_c00268{bottom:1045.345500px;}
.h6_c00268{height:60.000000px;}
.h2_c00268{height:72.000000px;}
.h3_c00268{height:78.000000px;}
.h5_c00268{height:84.000000px;}
.h4_c00268{height:90.000000px;}
.h0_c00268{height:1154.790000px;}
.h1_c00268{height:1155.000000px;}
.w0_c00268{width:915.000000px;}
.x0_c00268{left:0.000000px;}
.x32_c00268{left:133.380000px;}
.x1_c00268{left:134.730000px;}
.x19_c00268{left:135.810000px;}
.x33_c00268{left:168.210000px;}
.x2_c00268{left:177.660000px;}
.x24_c00268{left:179.280000px;}
.x52_c00268{left:188.730000px;}
.xe_c00268{left:189.810000px;}
.x55_c00268{left:200.340000px;}
.xf_c00268{left:211.140000px;}
.x1a_c00268{left:212.760000px;}
.x1b_c00268{left:233.550000px;}
.x10_c00268{left:244.350000px;}
.x3_c00268{left:255.960000px;}
.x25_c00268{left:265.680000px;}
.x1c_c00268{left:267.300000px;}
.x11_c00268{left:276.750000px;}
.x34_c00268{left:277.830000px;}
.x56_c00268{left:282.690000px;}
.x42_c00268{left:287.820000px;}
.x4_c00268{left:289.980000px;}
.x3c_c00268{left:300.510000px;}
.x49_c00268{left:309.420000px;}
.x57_c00268{left:331.560000px;}
.x2d_c00268{left:332.910000px;}
.x12_c00268{left:342.630000px;}
.x5_c00268{left:353.700000px;}
.x26_c00268{left:356.940000px;}
.x53_c00268{left:364.230000px;}
.x39_c00268{left:366.120000px;}
.x6_c00268{left:375.840000px;}
.x3d_c00268{left:377.460000px;}
.x1d_c00268{left:387.450000px;}
.x2e_c00268{left:397.440000px;}
.x27_c00268{left:398.520000px;}
.x4a_c00268{left:400.140000px;}
.x50_c00268{left:410.130000px;}
.x58_c00268{left:419.040000px;}
.x13_c00268{left:420.660000px;}
.x4e_c00268{left:430.650000px;}
.x7_c00268{left:441.720000px;}
.x51_c00268{left:442.800000px;}
.x14_c00268{left:453.330000px;}
.x43_c00268{left:464.670000px;}
.x3e_c00268{left:474.120000px;}
.x8_c00268{left:476.010000px;}
.x1e_c00268{left:485.460000px;}
.x54_c00268{left:487.350000px;}
.x59_c00268{left:496.260000px;}
.x4d_c00268{left:500.580000px;}
.x1f_c00268{left:507.600000px;}
.x35_c00268{left:519.750000px;}
.x9_c00268{left:520.830000px;}
.x4b_c00268{left:529.200000px;}
.x2f_c00268{left:530.550000px;}
.x15_c00268{left:541.620000px;}
.x28_c00268{left:551.880000px;}
.x30_c00268{left:563.490000px;}
.x46_c00268{left:574.020000px;}
.x29_c00268{left:585.360000px;}
.x3f_c00268{left:595.620000px;}
.x20_c00268{left:606.690000px;}
.x47_c00268{left:608.040000px;}
.x16_c00268{left:617.760000px;}
.xa_c00268{left:619.110000px;}
.x2a_c00268{left:651.240000px;}
.x40_c00268{left:652.590000px;}
.x21_c00268{left:663.120000px;}
.x4c_c00268{left:673.650000px;}
.x48_c00268{left:684.990000px;}
.x36_c00268{left:694.170000px;}
.x3a_c00268{left:705.510000px;}
.x4f_c00268{left:706.860000px;}
.x17_c00268{left:716.310000px;}
.xb_c00268{left:725.490000px;}
.x37_c00268{left:727.110000px;}
.x31_c00268{left:740.070000px;}
.x41_c00268{left:749.520000px;}
.x22_c00268{left:750.600000px;}
.x2c_c00268{left:760.320000px;}
.x18_c00268{left:761.940000px;}
.x44_c00268{left:769.770000px;}
.xc_c00268{left:772.200000px;}
.x23_c00268{left:783.000000px;}
.x2b_c00268{left:794.610000px;}
.x38_c00268{left:804.600000px;}
.xd_c00268{left:805.950000px;}
.x3b_c00268{left:817.020000px;}
.x45_c00268{left:827.280000px;}
@media print{
.v0_c00268{vertical-align:0.000000pt;}
.ls0_c00268{letter-spacing:0.000000pt;}
.ws0_c00268{word-spacing:0.000000pt;}
.fs4_c00268{font-size:53.333333pt;}
.fs0_c00268{font-size:64.000000pt;}
.fs1_c00268{font-size:69.333333pt;}
.fs3_c00268{font-size:74.666667pt;}
.fs2_c00268{font-size:80.000000pt;}
.y0_c00268{bottom:0.000000pt;}
.y13_c00268{bottom:151.026667pt;}
.y12_c00268{bottom:328.105333pt;}
.y11_c00268{bottom:480.553333pt;}
.y10_c00268{bottom:507.016000pt;}
.yf_c00268{bottom:534.049333pt;}
.ye_c00268{bottom:562.474667pt;}
.yd_c00268{bottom:590.264000pt;}
.yc_c00268{bottom:619.200000pt;}
.yb_c00268{bottom:648.000000pt;}
.ya_c00268{bottom:675.600000pt;}
.y9_c00268{bottom:704.813333pt;}
.y8_c00268{bottom:731.593333pt;}
.y7_c00268{bottom:760.282667pt;}
.y6_c00268{bottom:787.401333pt;}
.y5_c00268{bottom:815.688000pt;}
.y4_c00268{bottom:844.004000pt;}
.y3_c00268{bottom:873.048000pt;}
.y2_c00268{bottom:900.394667pt;}
.y1_c00268{bottom:929.196000pt;}
.h6_c00268{height:53.333333pt;}
.h2_c00268{height:64.000000pt;}
.h3_c00268{height:69.333333pt;}
.h5_c00268{height:74.666667pt;}
.h4_c00268{height:80.000000pt;}
.h0_c00268{height:1026.480000pt;}
.h1_c00268{height:1026.666667pt;}
.w0_c00268{width:813.333333pt;}
.x0_c00268{left:0.000000pt;}
.x32_c00268{left:118.560000pt;}
.x1_c00268{left:119.760000pt;}
.x19_c00268{left:120.720000pt;}
.x33_c00268{left:149.520000pt;}
.x2_c00268{left:157.920000pt;}
.x24_c00268{left:159.360000pt;}
.x52_c00268{left:167.760000pt;}
.xe_c00268{left:168.720000pt;}
.x55_c00268{left:178.080000pt;}
.xf_c00268{left:187.680000pt;}
.x1a_c00268{left:189.120000pt;}
.x1b_c00268{left:207.600000pt;}
.x10_c00268{left:217.200000pt;}
.x3_c00268{left:227.520000pt;}
.x25_c00268{left:236.160000pt;}
.x1c_c00268{left:237.600000pt;}
.x11_c00268{left:246.000000pt;}
.x34_c00268{left:246.960000pt;}
.x56_c00268{left:251.280000pt;}
.x42_c00268{left:255.840000pt;}
.x4_c00268{left:257.760000pt;}
.x3c_c00268{left:267.120000pt;}
.x49_c00268{left:275.040000pt;}
.x57_c00268{left:294.720000pt;}
.x2d_c00268{left:295.920000pt;}
.x12_c00268{left:304.560000pt;}
.x5_c00268{left:314.400000pt;}
.x26_c00268{left:317.280000pt;}
.x53_c00268{left:323.760000pt;}
.x39_c00268{left:325.440000pt;}
.x6_c00268{left:334.080000pt;}
.x3d_c00268{left:335.520000pt;}
.x1d_c00268{left:344.400000pt;}
.x2e_c00268{left:353.280000pt;}
.x27_c00268{left:354.240000pt;}
.x4a_c00268{left:355.680000pt;}
.x50_c00268{left:364.560000pt;}
.x58_c00268{left:372.480000pt;}
.x13_c00268{left:373.920000pt;}
.x4e_c00268{left:382.800000pt;}
.x7_c00268{left:392.640000pt;}
.x51_c00268{left:393.600000pt;}
.x14_c00268{left:402.960000pt;}
.x43_c00268{left:413.040000pt;}
.x3e_c00268{left:421.440000pt;}
.x8_c00268{left:423.120000pt;}
.x1e_c00268{left:431.520000pt;}
.x54_c00268{left:433.200000pt;}
.x59_c00268{left:441.120000pt;}
.x4d_c00268{left:444.960000pt;}
.x1f_c00268{left:451.200000pt;}
.x35_c00268{left:462.000000pt;}
.x9_c00268{left:462.960000pt;}
.x4b_c00268{left:470.400000pt;}
.x2f_c00268{left:471.600000pt;}
.x15_c00268{left:481.440000pt;}
.x28_c00268{left:490.560000pt;}
.x30_c00268{left:500.880000pt;}
.x46_c00268{left:510.240000pt;}
.x29_c00268{left:520.320000pt;}
.x3f_c00268{left:529.440000pt;}
.x20_c00268{left:539.280000pt;}
.x47_c00268{left:540.480000pt;}
.x16_c00268{left:549.120000pt;}
.xa_c00268{left:550.320000pt;}
.x2a_c00268{left:578.880000pt;}
.x40_c00268{left:580.080000pt;}
.x21_c00268{left:589.440000pt;}
.x4c_c00268{left:598.800000pt;}
.x48_c00268{left:608.880000pt;}
.x36_c00268{left:617.040000pt;}
.x3a_c00268{left:627.120000pt;}
.x4f_c00268{left:628.320000pt;}
.x17_c00268{left:636.720000pt;}
.xb_c00268{left:644.880000pt;}
.x37_c00268{left:646.320000pt;}
.x31_c00268{left:657.840000pt;}
.x41_c00268{left:666.240000pt;}
.x22_c00268{left:667.200000pt;}
.x2c_c00268{left:675.840000pt;}
.x18_c00268{left:677.280000pt;}
.x44_c00268{left:684.240000pt;}
.xc_c00268{left:686.400000pt;}
.x23_c00268{left:696.000000pt;}
.x2b_c00268{left:706.320000pt;}
.x38_c00268{left:715.200000pt;}
.xd_c00268{left:716.400000pt;}
.x3b_c00268{left:726.240000pt;}
.x45_c00268{left:735.360000pt;}
}





/* 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_c00269 {
    display:none;
  }
  .loading-indicator_c00269.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00269 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_c00269 { 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_c00269" -> "#page-container .classname_c00269")
 */
.pf_c00269 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00269 { /* 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_c00269.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00269 { /* 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_c00269 { /* 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_c00269 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00269 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00269 {overflow:visible;}
  }
}
.c_c00269 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00269 { /* 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_c00269:after { /* webkit #35443 */
  content: '';
}
.t_c00269:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00269 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 */
}
.__c00269 { /* 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_c00269 { /* info for Javascript */
  display:none;
}
.l_c00269 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00269 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00269 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00269: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_c00269 {
    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_c00269.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00269.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_c00269 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00269{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00269;src:url('chunks/assets/font_92d6bb63cbc780ceff7db400.woff2')format("woff");}.ff1_c00269{font-family:ff1_c00269;line-height:1.000000;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;}
.m18_c00269{transform:matrix(0.042425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.042425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.042425,0.000000,0.000000,0.250000,0,0);}
.m2_c00269{transform:matrix(0.129493,0.000777,-0.001500,0.249996,0,0);-ms-transform:matrix(0.129493,0.000777,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.129493,0.000777,-0.001500,0.249996,0,0);}
.md_c00269{transform:matrix(0.176914,-0.006552,0.009253,0.249829,0,0);-ms-transform:matrix(0.176914,-0.006552,0.009253,0.249829,0,0);-webkit-transform:matrix(0.176914,-0.006552,0.009253,0.249829,0,0);}
.m1f_c00269{transform:matrix(0.180995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180995,0.000000,0.000000,0.250000,0,0);}
.m3_c00269{transform:matrix(0.184472,0.001107,-0.001500,0.249996,0,0);-ms-transform:matrix(0.184472,0.001107,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.184472,0.001107,-0.001500,0.249996,0,0);}
.m8_c00269{transform:matrix(0.185547,0.001113,-0.001500,0.249996,0,0);-ms-transform:matrix(0.185547,0.001113,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.185547,0.001113,-0.001500,0.249996,0,0);}
.me_c00269{transform:matrix(0.188416,-0.006978,0.009253,0.249829,0,0);-ms-transform:matrix(0.188416,-0.006978,0.009253,0.249829,0,0);-webkit-transform:matrix(0.188416,-0.006978,0.009253,0.249829,0,0);}
.m9_c00269{transform:matrix(0.195546,0.001173,-0.001500,0.249996,0,0);-ms-transform:matrix(0.195546,0.001173,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.195546,0.001173,-0.001500,0.249996,0,0);}
.m1_c00269{transform:matrix(0.208696,0.001252,-0.001500,0.249996,0,0);-ms-transform:matrix(0.208696,0.001252,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.208696,0.001252,-0.001500,0.249996,0,0);}
.m19_c00269{transform:matrix(0.208925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208925,0.000000,0.000000,0.250000,0,0);}
.m5_c00269{transform:matrix(0.216926,0.001302,-0.001500,0.249996,0,0);-ms-transform:matrix(0.216926,0.001302,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.216926,0.001302,-0.001500,0.249996,0,0);}
.m6_c00269{transform:matrix(0.217831,0.001307,-0.001500,0.249996,0,0);-ms-transform:matrix(0.217831,0.001307,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.217831,0.001307,-0.001500,0.249996,0,0);}
.m7_c00269{transform:matrix(0.229566,0.001377,-0.001500,0.249996,0,0);-ms-transform:matrix(0.229566,0.001377,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.229566,0.001377,-0.001500,0.249996,0,0);}
.m4_c00269{transform:matrix(0.232021,0.001392,-0.001500,0.249996,0,0);-ms-transform:matrix(0.232021,0.001392,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.232021,0.001392,-0.001500,0.249996,0,0);}
.m20_c00269{transform:matrix(0.236505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236505,0.000000,0.000000,0.250000,0,0);}
.m1b_c00269{transform:matrix(0.242330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242330,0.000000,0.000000,0.250000,0,0);}
.mc_c00269{transform:matrix(0.242686,0.001456,-0.001500,0.249996,0,0);-ms-transform:matrix(0.242686,0.001456,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.242686,0.001456,-0.001500,0.249996,0,0);}
.m0_c00269{transform:matrix(0.244130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244130,0.000000,0.000000,0.250000,0,0);}
.m11_c00269{transform:matrix(0.313210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313210,0.000000,0.000000,0.250000,0,0);}
.ma_c00269{transform:matrix(0.355414,0.002132,-0.001500,0.249996,0,0);-ms-transform:matrix(0.355414,0.002132,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.355414,0.002132,-0.001500,0.249996,0,0);}
.mb_c00269{transform:matrix(0.356749,0.002140,-0.001500,0.249996,0,0);-ms-transform:matrix(0.356749,0.002140,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.356749,0.002140,-0.001500,0.249996,0,0);}
.m1e_c00269{transform:matrix(0.434165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434165,0.000000,0.000000,0.250000,0,0);}
.m14_c00269{transform:matrix(0.465725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465725,0.000000,0.000000,0.250000,0,0);}
.m21_c00269{transform:matrix(0.565615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565615,0.000000,0.000000,0.250000,0,0);}
.m1a_c00269{transform:matrix(0.649345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.649345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.649345,0.000000,0.000000,0.250000,0,0);}
.m15_c00269{transform:matrix(0.668975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.668975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.668975,0.000000,0.000000,0.250000,0,0);}
.m16_c00269{transform:matrix(0.750000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.750000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.750000,0.000000,0.000000,0.250000,0,0);}
.m17_c00269{transform:matrix(0.831655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.831655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.831655,0.000000,0.000000,0.250000,0,0);}
.m12_c00269{transform:matrix(0.844810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.844810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.844810,0.000000,0.000000,0.250000,0,0);}
.m10_c00269{transform:matrix(1.022755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.022755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.022755,0.000000,0.000000,0.250000,0,0);}
.m22_c00269{transform:matrix(1.235840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.235840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.235840,0.000000,0.000000,0.250000,0,0);}
.mf_c00269{transform:matrix(1.341810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.341810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.341810,0.000000,0.000000,0.250000,0,0);}
.m1d_c00269{transform:matrix(1.609200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.609200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.609200,0.000000,0.000000,0.250000,0,0);}
.m13_c00269{transform:matrix(3.920630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.920630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.920630,0.000000,0.000000,0.250000,0,0);}
.m1c_c00269{transform:matrix(4.811260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.811260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.811260,0.000000,0.000000,0.250000,0,0);}
.v0_c00269{vertical-align:0.000000px;}
.ls0_c00269{letter-spacing:0.000000px;}
.sc__c00269{text-shadow:none;}
.sc0_c00269{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__c00269{-webkit-text-stroke:0px transparent;}
.sc0_c00269{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00269{word-spacing:0.000000px;}
.fc0_c00269{color:transparent;}
.fs0_c00269{font-size:18.000000px;}
.fs1_c00269{font-size:96.001728px;}
.fs3_c00269{font-size:114.000000px;}
.fs4_c00269{font-size:132.000000px;}
.fs2_c00269{font-size:155.950852px;}
.y0_c00269{bottom:0.000000px;}
.y14_c00269{bottom:374.490000px;}
.y13_c00269{bottom:460.350000px;}
.y12_c00269{bottom:489.510000px;}
.y11_c00269{bottom:515.970000px;}
.y10_c00269{bottom:593.730000px;}
.y1_c00269{bottom:1024.920000px;}
.ye_c00269{bottom:1040.622000px;}
.yf_c00269{bottom:1043.675000px;}
.yd_c00269{bottom:1050.921126px;}
.yc_c00269{bottom:1051.062210px;}
.yb_c00269{bottom:1051.471917px;}
.ya_c00269{bottom:1051.658181px;}
.y9_c00269{bottom:1051.918974px;}
.y8_c00269{bottom:1052.165466px;}
.y7_c00269{bottom:1052.520201px;}
.y6_c00269{bottom:1052.824482px;}
.y5_c00269{bottom:1053.171072px;}
.y4_c00269{bottom:1053.443097px;}
.y3_c00269{bottom:1053.635967px;}
.y2_c00269{bottom:1053.940500px;}
.h2_c00269{height:18.000000px;}
.h3_c00269{height:96.001728px;}
.h5_c00269{height:114.000000px;}
.h6_c00269{height:132.000000px;}
.h4_c00269{height:155.950852px;}
.h0_c00269{height:1154.790000px;}
.h1_c00269{height:1155.000000px;}
.w0_c00269{width:915.000000px;}
.x0_c00269{left:0.000000px;}
.x2_c00269{left:35.896500px;}
.x3_c00269{left:86.652000px;}
.x4_c00269{left:118.797000px;}
.x5_c00269{left:164.134500px;}
.x6_c00269{left:221.899500px;}
.x1_c00269{left:231.930000px;}
.x7_c00269{left:272.613000px;}
.x8_c00269{left:331.735500px;}
.x9_c00269{left:372.817500px;}
.xa_c00269{left:416.283000px;}
.xb_c00269{left:447.327000px;}
.xc_c00269{left:515.611500px;}
.xd_c00269{left:539.125500px;}
.xe_c00269{left:628.327500px;}
.xf_c00269{left:710.758486px;}
.x11_c00269{left:888.570000px;}
.x10_c00269{left:891.810000px;}
.x12_c00269{left:893.160000px;}
@media print{
.v0_c00269{vertical-align:0.000000pt;}
.ls0_c00269{letter-spacing:0.000000pt;}
.ws0_c00269{word-spacing:0.000000pt;}
.fs0_c00269{font-size:16.000000pt;}
.fs1_c00269{font-size:85.334869pt;}
.fs3_c00269{font-size:101.333333pt;}
.fs4_c00269{font-size:117.333333pt;}
.fs2_c00269{font-size:138.622980pt;}
.y0_c00269{bottom:0.000000pt;}
.y14_c00269{bottom:332.880000pt;}
.y13_c00269{bottom:409.200000pt;}
.y12_c00269{bottom:435.120000pt;}
.y11_c00269{bottom:458.640000pt;}
.y10_c00269{bottom:527.760000pt;}
.y1_c00269{bottom:911.040000pt;}
.ye_c00269{bottom:924.997333pt;}
.yf_c00269{bottom:927.711111pt;}
.yd_c00269{bottom:934.152112pt;}
.yc_c00269{bottom:934.277520pt;}
.yb_c00269{bottom:934.641704pt;}
.ya_c00269{bottom:934.807272pt;}
.y9_c00269{bottom:935.039088pt;}
.y8_c00269{bottom:935.258192pt;}
.y7_c00269{bottom:935.573512pt;}
.y6_c00269{bottom:935.843984pt;}
.y5_c00269{bottom:936.152064pt;}
.y4_c00269{bottom:936.393864pt;}
.y3_c00269{bottom:936.565304pt;}
.y2_c00269{bottom:936.836000pt;}
.h2_c00269{height:16.000000pt;}
.h3_c00269{height:85.334869pt;}
.h5_c00269{height:101.333333pt;}
.h6_c00269{height:117.333333pt;}
.h4_c00269{height:138.622980pt;}
.h0_c00269{height:1026.480000pt;}
.h1_c00269{height:1026.666667pt;}
.w0_c00269{width:813.333333pt;}
.x0_c00269{left:0.000000pt;}
.x2_c00269{left:31.908000pt;}
.x3_c00269{left:77.024000pt;}
.x4_c00269{left:105.597333pt;}
.x5_c00269{left:145.897333pt;}
.x6_c00269{left:197.244000pt;}
.x1_c00269{left:206.160000pt;}
.x7_c00269{left:242.322667pt;}
.x8_c00269{left:294.876000pt;}
.x9_c00269{left:331.393333pt;}
.xa_c00269{left:370.029333pt;}
.xb_c00269{left:397.624000pt;}
.xc_c00269{left:458.321333pt;}
.xd_c00269{left:479.222667pt;}
.xe_c00269{left:558.513333pt;}
.xf_c00269{left:631.785321pt;}
.x11_c00269{left:789.840000pt;}
.x10_c00269{left:792.720000pt;}
.x12_c00269{left:793.920000pt;}
}





/* 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_c00270 {
    display:none;
  }
  .loading-indicator_c00270.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00270 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_c00270 { 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_c00270" -> "#page-container .classname_c00270")
 */
.pf_c00270 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00270 { /* 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_c00270.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00270 { /* 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_c00270 { /* 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_c00270 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00270 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00270 {overflow:visible;}
  }
}
.c_c00270 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00270 { /* 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_c00270:after { /* webkit #35443 */
  content: '';
}
.t_c00270:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00270 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 */
}
.__c00270 { /* 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_c00270 { /* info for Javascript */
  display:none;
}
.l_c00270 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00270 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00270 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00270: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_c00270 {
    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_c00270.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00270.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_c00270 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00270{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00270;src:url('chunks/assets/font_c605e72f209fc835e906f064.woff2')format("woff");}.ff1_c00270{font-family:ff1_c00270;line-height:1.000000;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;}
.m43_c00270{transform:matrix(0.125175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125175,0.000000,0.000000,0.250000,0,0);}
.m147_c00270{transform:matrix(0.147746,0.001034,-0.001750,0.249994,0,0);-ms-transform:matrix(0.147746,0.001034,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.147746,0.001034,-0.001750,0.249994,0,0);}
.m4a_c00270{transform:matrix(0.159800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159800,0.000000,0.000000,0.250000,0,0);}
.md1_c00270{transform:matrix(0.167460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167460,0.000000,0.000000,0.250000,0,0);}
.m141_c00270{transform:matrix(0.169698,0.001527,-0.002250,0.249990,0,0);-ms-transform:matrix(0.169698,0.001527,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.169698,0.001527,-0.002250,0.249990,0,0);}
.mb7_c00270{transform:matrix(0.171840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171840,0.000000,0.000000,0.250000,0,0);}
.m4f_c00270{transform:matrix(0.174240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174240,0.000000,0.000000,0.250000,0,0);}
.md2_c00270{transform:matrix(0.174785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174785,0.000000,0.000000,0.250000,0,0);}
.m4c_c00270{transform:matrix(0.175710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175710,0.000000,0.000000,0.250000,0,0);}
.m134_c00270{transform:matrix(0.178105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178105,0.000000,0.000000,0.250000,0,0);}
.md5_c00270{transform:matrix(0.178170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178170,0.000000,0.000000,0.250000,0,0);}
.m4_c00270{transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);}
.mb1_c00270{transform:matrix(0.178905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178905,0.000000,0.000000,0.250000,0,0);}
.m51_c00270{transform:matrix(0.180660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180660,0.000000,0.000000,0.250000,0,0);}
.m83_c00270{transform:matrix(0.181725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181725,0.000000,0.000000,0.250000,0,0);}
.mb6_c00270{transform:matrix(0.182380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182380,0.000000,0.000000,0.250000,0,0);}
.m12a_c00270{transform:matrix(0.182735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182735,0.000000,0.000000,0.250000,0,0);}
.m1_c00270{transform:matrix(0.184075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184075,0.000000,0.000000,0.250000,0,0);}
.m3f_c00270{transform:matrix(0.184360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184360,0.000000,0.000000,0.250000,0,0);}
.m8b_c00270{transform:matrix(0.184545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184545,0.000000,0.000000,0.250000,0,0);}
.m128_c00270{transform:matrix(0.184785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184785,0.000000,0.000000,0.250000,0,0);}
.m40_c00270{transform:matrix(0.185830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185830,0.000000,0.000000,0.250000,0,0);}
.m52_c00270{transform:matrix(0.186050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186050,0.000000,0.000000,0.250000,0,0);}
.m50_c00270{transform:matrix(0.186185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186185,0.000000,0.000000,0.250000,0,0);}
.m7e_c00270{transform:matrix(0.186600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186600,0.000000,0.000000,0.250000,0,0);}
.mb9_c00270{transform:matrix(0.186785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186785,0.000000,0.000000,0.250000,0,0);}
.md7_c00270{transform:matrix(0.187030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187030,0.000000,0.000000,0.250000,0,0);}
.mb4_c00270{transform:matrix(0.188695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188695,0.000000,0.000000,0.250000,0,0);}
.mcc_c00270{transform:matrix(0.189265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189265,0.000000,0.000000,0.250000,0,0);}
.m132_c00270{transform:matrix(0.189270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189270,0.000000,0.000000,0.250000,0,0);}
.mdd_c00270{transform:matrix(0.190040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190040,0.000000,0.000000,0.250000,0,0);}
.m55_c00270{transform:matrix(0.190980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190980,0.000000,0.000000,0.250000,0,0);}
.mdf_c00270{transform:matrix(0.191405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191405,0.000000,0.000000,0.250000,0,0);}
.mc8_c00270{transform:matrix(0.192200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192200,0.000000,0.000000,0.250000,0,0);}
.m131_c00270{transform:matrix(0.192450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192450,0.000000,0.000000,0.250000,0,0);}
.m4d_c00270{transform:matrix(0.193120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193120,0.000000,0.000000,0.250000,0,0);}
.m130_c00270{transform:matrix(0.193195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193195,0.000000,0.000000,0.250000,0,0);}
.md3_c00270{transform:matrix(0.193295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193295,0.000000,0.000000,0.250000,0,0);}
.md6_c00270{transform:matrix(0.193305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193305,0.000000,0.000000,0.250000,0,0);}
.m9b_c00270{transform:matrix(0.193380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193380,0.000000,0.000000,0.250000,0,0);}
.m133_c00270{transform:matrix(0.194120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194120,0.000000,0.000000,0.250000,0,0);}
.m4e_c00270{transform:matrix(0.194285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194285,0.000000,0.000000,0.250000,0,0);}
.md0_c00270{transform:matrix(0.194695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194695,0.000000,0.000000,0.250000,0,0);}
.md8_c00270{transform:matrix(0.194860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194860,0.000000,0.000000,0.250000,0,0);}
.m8e_c00270{transform:matrix(0.195565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195565,0.000000,0.000000,0.250000,0,0);}
.mbf_c00270{transform:matrix(0.196060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196060,0.000000,0.000000,0.250000,0,0);}
.m14b_c00270{transform:matrix(0.196250,0.001374,-0.001750,0.249994,0,0);-ms-transform:matrix(0.196250,0.001374,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.196250,0.001374,-0.001750,0.249994,0,0);}
.m4b_c00270{transform:matrix(0.196360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196360,0.000000,0.000000,0.250000,0,0);}
.m24_c00270{transform:matrix(0.196515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196515,0.000000,0.000000,0.250000,0,0);}
.mb2_c00270{transform:matrix(0.196770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196770,0.000000,0.000000,0.250000,0,0);}
.m126_c00270{transform:matrix(0.196980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196980,0.000000,0.000000,0.250000,0,0);}
.m12e_c00270{transform:matrix(0.197330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197330,0.000000,0.000000,0.250000,0,0);}
.md9_c00270{transform:matrix(0.197420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197420,0.000000,0.000000,0.250000,0,0);}
.md4_c00270{transform:matrix(0.198170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198170,0.000000,0.000000,0.250000,0,0);}
.m58_c00270{transform:matrix(0.198275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198275,0.000000,0.000000,0.250000,0,0);}
.mdc_c00270{transform:matrix(0.198560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198560,0.000000,0.000000,0.250000,0,0);}
.m153_c00270{transform:matrix(0.198820,0.001392,-0.001750,0.249994,0,0);-ms-transform:matrix(0.198820,0.001392,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.198820,0.001392,-0.001750,0.249994,0,0);}
.m42_c00270{transform:matrix(0.198845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198845,0.000000,0.000000,0.250000,0,0);}
.m13_c00270{transform:matrix(0.199100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199100,0.000000,0.000000,0.250000,0,0);}
.m18_c00270{transform:matrix(0.199410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199410,0.000000,0.000000,0.250000,0,0);}
.maf_c00270{transform:matrix(0.199570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199570,0.000000,0.000000,0.250000,0,0);}
.mb5_c00270{transform:matrix(0.201465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201465,0.000000,0.000000,0.250000,0,0);}
.m49_c00270{transform:matrix(0.202460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202460,0.000000,0.000000,0.250000,0,0);}
.m125_c00270{transform:matrix(0.203300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203300,0.000000,0.000000,0.250000,0,0);}
.mb0_c00270{transform:matrix(0.203485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203485,0.000000,0.000000,0.250000,0,0);}
.m117_c00270{transform:matrix(0.203505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203505,0.000000,0.000000,0.250000,0,0);}
.m44_c00270{transform:matrix(0.203935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203935,0.000000,0.000000,0.250000,0,0);}
.m47_c00270{transform:matrix(0.203940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203940,0.000000,0.000000,0.250000,0,0);}
.m92_c00270{transform:matrix(0.204020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204020,0.000000,0.000000,0.250000,0,0);}
.m12_c00270{transform:matrix(0.204130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204130,0.000000,0.000000,0.250000,0,0);}
.m86_c00270{transform:matrix(0.204345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204345,0.000000,0.000000,0.250000,0,0);}
.m156_c00270{transform:matrix(0.205285,0.001437,-0.001750,0.249994,0,0);-ms-transform:matrix(0.205285,0.001437,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.205285,0.001437,-0.001750,0.249994,0,0);}
.mb8_c00270{transform:matrix(0.205610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205610,0.000000,0.000000,0.250000,0,0);}
.m27_c00270{transform:matrix(0.205665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205665,0.000000,0.000000,0.250000,0,0);}
.mf2_c00270{transform:matrix(0.205760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205760,0.000000,0.000000,0.250000,0,0);}
.m9_c00270{transform:matrix(0.205840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205840,0.000000,0.000000,0.250000,0,0);}
.m97_c00270{transform:matrix(0.206270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206270,0.000000,0.000000,0.250000,0,0);}
.m35_c00270{transform:matrix(0.206470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206470,0.000000,0.000000,0.250000,0,0);}
.m7c_c00270{transform:matrix(0.206665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206665,0.000000,0.000000,0.250000,0,0);}
.m6c_c00270{transform:matrix(0.207395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207395,0.000000,0.000000,0.250000,0,0);}
.mee_c00270{transform:matrix(0.208035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208035,0.000000,0.000000,0.250000,0,0);}
.m9f_c00270{transform:matrix(0.208510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208510,0.000000,0.000000,0.250000,0,0);}
.m87_c00270{transform:matrix(0.208715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208715,0.000000,0.000000,0.250000,0,0);}
.m53_c00270{transform:matrix(0.208970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208970,0.000000,0.000000,0.250000,0,0);}
.mf9_c00270{transform:matrix(0.209220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209220,0.000000,0.000000,0.250000,0,0);}
.mec_c00270{transform:matrix(0.209805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209805,0.000000,0.000000,0.250000,0,0);}
.m56_c00270{transform:matrix(0.209810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209810,0.000000,0.000000,0.250000,0,0);}
.m3_c00270{transform:matrix(0.209875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209875,0.000000,0.000000,0.250000,0,0);}
.m84_c00270{transform:matrix(0.210270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210270,0.000000,0.000000,0.250000,0,0);}
.mf5_c00270{transform:matrix(0.210490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210490,0.000000,0.000000,0.250000,0,0);}
.mb3_c00270{transform:matrix(0.210935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210935,0.000000,0.000000,0.250000,0,0);}
.mc3_c00270{transform:matrix(0.211015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211015,0.000000,0.000000,0.250000,0,0);}
.m3e_c00270{transform:matrix(0.211025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211025,0.000000,0.000000,0.250000,0,0);}
.m23_c00270{transform:matrix(0.211370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211370,0.000000,0.000000,0.250000,0,0);}
.m16_c00270{transform:matrix(0.211420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211420,0.000000,0.000000,0.250000,0,0);}
.m67_c00270{transform:matrix(0.211495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211495,0.000000,0.000000,0.250000,0,0);}
.m15d_c00270{transform:matrix(0.211615,0.001481,-0.001750,0.249994,0,0);-ms-transform:matrix(0.211615,0.001481,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.211615,0.001481,-0.001750,0.249994,0,0);}
.m6e_c00270{transform:matrix(0.211630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211630,0.000000,0.000000,0.250000,0,0);}
.m20_c00270{transform:matrix(0.211660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211660,0.000000,0.000000,0.250000,0,0);}
.m5_c00270{transform:matrix(0.212510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212510,0.000000,0.000000,0.250000,0,0);}
.mcf_c00270{transform:matrix(0.212835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212835,0.000000,0.000000,0.250000,0,0);}
.m41_c00270{transform:matrix(0.213105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213105,0.000000,0.000000,0.250000,0,0);}
.m11c_c00270{transform:matrix(0.213670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213670,0.000000,0.000000,0.250000,0,0);}
.me8_c00270{transform:matrix(0.213860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213860,0.000000,0.000000,0.250000,0,0);}
.m2d_c00270{transform:matrix(0.214415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214415,0.000000,0.000000,0.250000,0,0);}
.me1_c00270{transform:matrix(0.214555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214555,0.000000,0.000000,0.250000,0,0);}
.mc5_c00270{transform:matrix(0.214735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214735,0.000000,0.000000,0.250000,0,0);}
.ma7_c00270{transform:matrix(0.215150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215150,0.000000,0.000000,0.250000,0,0);}
.m154_c00270{transform:matrix(0.215220,0.001507,-0.001750,0.249994,0,0);-ms-transform:matrix(0.215220,0.001507,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.215220,0.001507,-0.001750,0.249994,0,0);}
.m148_c00270{transform:matrix(0.215735,0.001510,-0.001750,0.249994,0,0);-ms-transform:matrix(0.215735,0.001510,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.215735,0.001510,-0.001750,0.249994,0,0);}
.me2_c00270{transform:matrix(0.215825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215825,0.000000,0.000000,0.250000,0,0);}
.m94_c00270{transform:matrix(0.216005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216005,0.000000,0.000000,0.250000,0,0);}
.meb_c00270{transform:matrix(0.216315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216315,0.000000,0.000000,0.250000,0,0);}
.m96_c00270{transform:matrix(0.216350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216350,0.000000,0.000000,0.250000,0,0);}
.me3_c00270{transform:matrix(0.216415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216415,0.000000,0.000000,0.250000,0,0);}
.m45_c00270{transform:matrix(0.216510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216510,0.000000,0.000000,0.250000,0,0);}
.m12d_c00270{transform:matrix(0.216515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216515,0.000000,0.000000,0.250000,0,0);}
.m2a_c00270{transform:matrix(0.216790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216790,0.000000,0.000000,0.250000,0,0);}
.m135_c00270{transform:matrix(0.216910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216910,0.000000,0.000000,0.250000,0,0);}
.m22_c00270{transform:matrix(0.217480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217480,0.000000,0.000000,0.250000,0,0);}
.ma4_c00270{transform:matrix(0.217620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217620,0.000000,0.000000,0.250000,0,0);}
.m2f_c00270{transform:matrix(0.217770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217770,0.000000,0.000000,0.250000,0,0);}
.mc_c00270{transform:matrix(0.217780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217780,0.000000,0.000000,0.250000,0,0);}
.m10_c00270{transform:matrix(0.217795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217795,0.000000,0.000000,0.250000,0,0);}
.m77_c00270{transform:matrix(0.217855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217855,0.000000,0.000000,0.250000,0,0);}
.m91_c00270{transform:matrix(0.217875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217875,0.000000,0.000000,0.250000,0,0);}
.m3a_c00270{transform:matrix(0.217965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217965,0.000000,0.000000,0.250000,0,0);}
.m114_c00270{transform:matrix(0.218010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218010,0.000000,0.000000,0.250000,0,0);}
.m159_c00270{transform:matrix(0.218230,0.001528,-0.001750,0.249994,0,0);-ms-transform:matrix(0.218230,0.001528,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.218230,0.001528,-0.001750,0.249994,0,0);}
.m109_c00270{transform:matrix(0.218365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218365,0.000000,0.000000,0.250000,0,0);}
.mf6_c00270{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.me5_c00270{transform:matrix(0.218665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218665,0.000000,0.000000,0.250000,0,0);}
.m21_c00270{transform:matrix(0.218800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218800,0.000000,0.000000,0.250000,0,0);}
.ma0_c00270{transform:matrix(0.218940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218940,0.000000,0.000000,0.250000,0,0);}
.mc7_c00270{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m11f_c00270{transform:matrix(0.219230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219230,0.000000,0.000000,0.250000,0,0);}
.m36_c00270{transform:matrix(0.219535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219535,0.000000,0.000000,0.250000,0,0);}
.m150_c00270{transform:matrix(0.219955,0.001540,-0.001750,0.249994,0,0);-ms-transform:matrix(0.219955,0.001540,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.219955,0.001540,-0.001750,0.249994,0,0);}
.m144_c00270{transform:matrix(0.219960,0.001540,-0.001750,0.249994,0,0);-ms-transform:matrix(0.219960,0.001540,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.219960,0.001540,-0.001750,0.249994,0,0);}
.med_c00270{transform:matrix(0.220380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220380,0.000000,0.000000,0.250000,0,0);}
.m15a_c00270{transform:matrix(0.220740,0.001545,-0.001750,0.249994,0,0);-ms-transform:matrix(0.220740,0.001545,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.220740,0.001545,-0.001750,0.249994,0,0);}
.m12f_c00270{transform:matrix(0.220800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220800,0.000000,0.000000,0.250000,0,0);}
.m79_c00270{transform:matrix(0.220830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220830,0.000000,0.000000,0.250000,0,0);}
.m123_c00270{transform:matrix(0.221080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221080,0.000000,0.000000,0.250000,0,0);}
.mef_c00270{transform:matrix(0.221180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221180,0.000000,0.000000,0.250000,0,0);}
.m60_c00270{transform:matrix(0.221455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221455,0.000000,0.000000,0.250000,0,0);}
.mff_c00270{transform:matrix(0.221585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221585,0.000000,0.000000,0.250000,0,0);}
.m81_c00270{transform:matrix(0.222030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222030,0.000000,0.000000,0.250000,0,0);}
.mce_c00270{transform:matrix(0.222110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222110,0.000000,0.000000,0.250000,0,0);}
.m14d_c00270{transform:matrix(0.222250,0.001556,-0.001750,0.249994,0,0);-ms-transform:matrix(0.222250,0.001556,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.222250,0.001556,-0.001750,0.249994,0,0);}
.m115_c00270{transform:matrix(0.222790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222790,0.000000,0.000000,0.250000,0,0);}
.m15c_c00270{transform:matrix(0.222920,0.001560,-0.001750,0.249994,0,0);-ms-transform:matrix(0.222920,0.001560,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.222920,0.001560,-0.001750,0.249994,0,0);}
.m10e_c00270{transform:matrix(0.223380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223380,0.000000,0.000000,0.250000,0,0);}
.mca_c00270{transform:matrix(0.223755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223755,0.000000,0.000000,0.250000,0,0);}
.mbc_c00270{transform:matrix(0.223760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223760,0.000000,0.000000,0.250000,0,0);}
.m31_c00270{transform:matrix(0.223885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223885,0.000000,0.000000,0.250000,0,0);}
.maa_c00270{transform:matrix(0.224035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224035,0.000000,0.000000,0.250000,0,0);}
.mcb_c00270{transform:matrix(0.224260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224260,0.000000,0.000000,0.250000,0,0);}
.m98_c00270{transform:matrix(0.224345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224345,0.000000,0.000000,0.250000,0,0);}
.m11_c00270{transform:matrix(0.224870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224870,0.000000,0.000000,0.250000,0,0);}
.m152_c00270{transform:matrix(0.224964,0.001575,-0.001750,0.249994,0,0);-ms-transform:matrix(0.224964,0.001575,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.224964,0.001575,-0.001750,0.249994,0,0);}
.me0_c00270{transform:matrix(0.225175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225175,0.000000,0.000000,0.250000,0,0);}
.me6_c00270{transform:matrix(0.225295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225295,0.000000,0.000000,0.250000,0,0);}
.m1f_c00270{transform:matrix(0.225360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225360,0.000000,0.000000,0.250000,0,0);}
.mf0_c00270{transform:matrix(0.225695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225695,0.000000,0.000000,0.250000,0,0);}
.mde_c00270{transform:matrix(0.226100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226100,0.000000,0.000000,0.250000,0,0);}
.m15b_c00270{transform:matrix(0.226169,0.001583,-0.001750,0.249994,0,0);-ms-transform:matrix(0.226169,0.001583,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.226169,0.001583,-0.001750,0.249994,0,0);}
.m14f_c00270{transform:matrix(0.226339,0.001584,-0.001750,0.249994,0,0);-ms-transform:matrix(0.226339,0.001584,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.226339,0.001584,-0.001750,0.249994,0,0);}
.m8_c00270{transform:matrix(0.226555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226555,0.000000,0.000000,0.250000,0,0);}
.m7_c00270{transform:matrix(0.226575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226575,0.000000,0.000000,0.250000,0,0);}
.m9e_c00270{transform:matrix(0.226695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226695,0.000000,0.000000,0.250000,0,0);}
.m93_c00270{transform:matrix(0.226800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226800,0.000000,0.000000,0.250000,0,0);}
.mf_c00270{transform:matrix(0.226890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226890,0.000000,0.000000,0.250000,0,0);}
.m39_c00270{transform:matrix(0.227245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227245,0.000000,0.000000,0.250000,0,0);}
.mc1_c00270{transform:matrix(0.227570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227570,0.000000,0.000000,0.250000,0,0);}
.m158_c00270{transform:matrix(0.227684,0.001594,-0.001750,0.249994,0,0);-ms-transform:matrix(0.227684,0.001594,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.227684,0.001594,-0.001750,0.249994,0,0);}
.m118_c00270{transform:matrix(0.227725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227725,0.000000,0.000000,0.250000,0,0);}
.mda_c00270{transform:matrix(0.227735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227735,0.000000,0.000000,0.250000,0,0);}
.m3c_c00270{transform:matrix(0.227825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227825,0.000000,0.000000,0.250000,0,0);}
.m3d_c00270{transform:matrix(0.227840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227840,0.000000,0.000000,0.250000,0,0);}
.m149_c00270{transform:matrix(0.227969,0.001596,-0.001750,0.249994,0,0);-ms-transform:matrix(0.227969,0.001596,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.227969,0.001596,-0.001750,0.249994,0,0);}
.me4_c00270{transform:matrix(0.227975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227975,0.000000,0.000000,0.250000,0,0);}
.m108_c00270{transform:matrix(0.228280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228280,0.000000,0.000000,0.250000,0,0);}
.m37_c00270{transform:matrix(0.228510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228510,0.000000,0.000000,0.250000,0,0);}
.mdb_c00270{transform:matrix(0.228575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228575,0.000000,0.000000,0.250000,0,0);}
.me9_c00270{transform:matrix(0.228705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228705,0.000000,0.000000,0.250000,0,0);}
.m112_c00270{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00270{transform:matrix(0.229030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229030,0.000000,0.000000,0.250000,0,0);}
.ma6_c00270{transform:matrix(0.229150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229150,0.000000,0.000000,0.250000,0,0);}
.m73_c00270{transform:matrix(0.229195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229195,0.000000,0.000000,0.250000,0,0);}
.m46_c00270{transform:matrix(0.229230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229230,0.000000,0.000000,0.250000,0,0);}
.m155_c00270{transform:matrix(0.229329,0.001605,-0.001750,0.249994,0,0);-ms-transform:matrix(0.229329,0.001605,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.229329,0.001605,-0.001750,0.249994,0,0);}
.m14_c00270{transform:matrix(0.229480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229480,0.000000,0.000000,0.250000,0,0);}
.m11a_c00270{transform:matrix(0.229720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229720,0.000000,0.000000,0.250000,0,0);}
.m157_c00270{transform:matrix(0.229774,0.001608,-0.001750,0.249994,0,0);-ms-transform:matrix(0.229774,0.001608,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.229774,0.001608,-0.001750,0.249994,0,0);}
.m7a_c00270{transform:matrix(0.229885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229885,0.000000,0.000000,0.250000,0,0);}
.m89_c00270{transform:matrix(0.229965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229965,0.000000,0.000000,0.250000,0,0);}
.m11e_c00270{transform:matrix(0.230045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230045,0.000000,0.000000,0.250000,0,0);}
.m19_c00270{transform:matrix(0.230170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230170,0.000000,0.000000,0.250000,0,0);}
.m25_c00270{transform:matrix(0.230205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230205,0.000000,0.000000,0.250000,0,0);}
.mfa_c00270{transform:matrix(0.230385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230385,0.000000,0.000000,0.250000,0,0);}
.mcd_c00270{transform:matrix(0.230540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230540,0.000000,0.000000,0.250000,0,0);}
.m106_c00270{transform:matrix(0.230660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230660,0.000000,0.000000,0.250000,0,0);}
.m15_c00270{transform:matrix(0.230805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230805,0.000000,0.000000,0.250000,0,0);}
.mea_c00270{transform:matrix(0.230950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230950,0.000000,0.000000,0.250000,0,0);}
.mc6_c00270{transform:matrix(0.231220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231220,0.000000,0.000000,0.250000,0,0);}
.m17_c00270{transform:matrix(0.231515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231515,0.000000,0.000000,0.250000,0,0);}
.m62_c00270{transform:matrix(0.231620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231620,0.000000,0.000000,0.250000,0,0);}
.m2b_c00270{transform:matrix(0.231630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231630,0.000000,0.000000,0.250000,0,0);}
.m13f_c00270{transform:matrix(0.231631,0.002085,-0.002250,0.249990,0,0);-ms-transform:matrix(0.231631,0.002085,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.231631,0.002085,-0.002250,0.249990,0,0);}
.me_c00270{transform:matrix(0.231695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231695,0.000000,0.000000,0.250000,0,0);}
.ma2_c00270{transform:matrix(0.231700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231700,0.000000,0.000000,0.250000,0,0);}
.mf4_c00270{transform:matrix(0.231780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231780,0.000000,0.000000,0.250000,0,0);}
.m127_c00270{transform:matrix(0.231875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231875,0.000000,0.000000,0.250000,0,0);}
.m129_c00270{transform:matrix(0.232300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232300,0.000000,0.000000,0.250000,0,0);}
.m10b_c00270{transform:matrix(0.232355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232355,0.000000,0.000000,0.250000,0,0);}
.m33_c00270{transform:matrix(0.232495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232495,0.000000,0.000000,0.250000,0,0);}
.mfc_c00270{transform:matrix(0.232545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232545,0.000000,0.000000,0.250000,0,0);}
.m8a_c00270{transform:matrix(0.232575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232575,0.000000,0.000000,0.250000,0,0);}
.m99_c00270{transform:matrix(0.232655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232655,0.000000,0.000000,0.250000,0,0);}
.mf7_c00270{transform:matrix(0.232765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232765,0.000000,0.000000,0.250000,0,0);}
.mfb_c00270{transform:matrix(0.232925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232925,0.000000,0.000000,0.250000,0,0);}
.m139_c00270{transform:matrix(0.232976,0.002097,-0.002250,0.249990,0,0);-ms-transform:matrix(0.232976,0.002097,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.232976,0.002097,-0.002250,0.249990,0,0);}
.m116_c00270{transform:matrix(0.233085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233085,0.000000,0.000000,0.250000,0,0);}
.m9d_c00270{transform:matrix(0.233160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233160,0.000000,0.000000,0.250000,0,0);}
.m6f_c00270{transform:matrix(0.233200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233200,0.000000,0.000000,0.250000,0,0);}
.m14e_c00270{transform:matrix(0.233239,0.001633,-0.001750,0.249994,0,0);-ms-transform:matrix(0.233239,0.001633,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.233239,0.001633,-0.001750,0.249994,0,0);}
.m14c_c00270{transform:matrix(0.233294,0.001633,-0.001750,0.249994,0,0);-ms-transform:matrix(0.233294,0.001633,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.233294,0.001633,-0.001750,0.249994,0,0);}
.m12b_c00270{transform:matrix(0.233370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233370,0.000000,0.000000,0.250000,0,0);}
.mf3_c00270{transform:matrix(0.233430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233430,0.000000,0.000000,0.250000,0,0);}
.m101_c00270{transform:matrix(0.233670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233670,0.000000,0.000000,0.250000,0,0);}
.m138_c00270{transform:matrix(0.233991,0.002106,-0.002250,0.249990,0,0);-ms-transform:matrix(0.233991,0.002106,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.233991,0.002106,-0.002250,0.249990,0,0);}
.m2_c00270{transform:matrix(0.234240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234240,0.000000,0.000000,0.250000,0,0);}
.ma_c00270{transform:matrix(0.234345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234345,0.000000,0.000000,0.250000,0,0);}
.m72_c00270{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00270{transform:matrix(0.235565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235565,0.000000,0.000000,0.250000,0,0);}
.m14a_c00270{transform:matrix(0.235759,0.001650,-0.001750,0.249994,0,0);-ms-transform:matrix(0.235759,0.001650,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.235759,0.001650,-0.001750,0.249994,0,0);}
.mf8_c00270{transform:matrix(0.236075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236075,0.000000,0.000000,0.250000,0,0);}
.mc4_c00270{transform:matrix(0.236110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236110,0.000000,0.000000,0.250000,0,0);}
.m8f_c00270{transform:matrix(0.236215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236215,0.000000,0.000000,0.250000,0,0);}
.m5d_c00270{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.mba_c00270{transform:matrix(0.236440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236440,0.000000,0.000000,0.250000,0,0);}
.m113_c00270{transform:matrix(0.236905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236905,0.000000,0.000000,0.250000,0,0);}
.m5a_c00270{transform:matrix(0.237065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237065,0.000000,0.000000,0.250000,0,0);}
.m146_c00270{transform:matrix(0.237444,0.001662,-0.001750,0.249994,0,0);-ms-transform:matrix(0.237444,0.001662,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.237444,0.001662,-0.001750,0.249994,0,0);}
.ma3_c00270{transform:matrix(0.237615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237615,0.000000,0.000000,0.250000,0,0);}
.m90_c00270{transform:matrix(0.237690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237690,0.000000,0.000000,0.250000,0,0);}
.m11d_c00270{transform:matrix(0.237715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237715,0.000000,0.000000,0.250000,0,0);}
.mc9_c00270{transform:matrix(0.237775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237775,0.000000,0.000000,0.250000,0,0);}
.m80_c00270{transform:matrix(0.237780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237780,0.000000,0.000000,0.250000,0,0);}
.m10a_c00270{transform:matrix(0.237870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237870,0.000000,0.000000,0.250000,0,0);}
.m95_c00270{transform:matrix(0.238360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238360,0.000000,0.000000,0.250000,0,0);}
.m69_c00270{transform:matrix(0.238445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238445,0.000000,0.000000,0.250000,0,0);}
.m151_c00270{transform:matrix(0.238464,0.001669,-0.001750,0.249994,0,0);-ms-transform:matrix(0.238464,0.001669,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.238464,0.001669,-0.001750,0.249994,0,0);}
.m8c_c00270{transform:matrix(0.238775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238775,0.000000,0.000000,0.250000,0,0);}
.m74_c00270{transform:matrix(0.238880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238880,0.000000,0.000000,0.250000,0,0);}
.m13e_c00270{transform:matrix(0.239005,0.002151,-0.002250,0.249990,0,0);-ms-transform:matrix(0.239005,0.002151,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.239005,0.002151,-0.002250,0.249990,0,0);}
.ma9_c00270{transform:matrix(0.239095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239095,0.000000,0.000000,0.250000,0,0);}
.m5e_c00270{transform:matrix(0.239335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239335,0.000000,0.000000,0.250000,0,0);}
.m9a_c00270{transform:matrix(0.239555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239555,0.000000,0.000000,0.250000,0,0);}
.m145_c00270{transform:matrix(0.239559,0.001677,-0.001750,0.249994,0,0);-ms-transform:matrix(0.239559,0.001677,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.239559,0.001677,-0.001750,0.249994,0,0);}
.m103_c00270{transform:matrix(0.239780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239780,0.000000,0.000000,0.250000,0,0);}
.m12c_c00270{transform:matrix(0.239940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239940,0.000000,0.000000,0.250000,0,0);}
.m63_c00270{transform:matrix(0.239950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239950,0.000000,0.000000,0.250000,0,0);}
.m119_c00270{transform:matrix(0.240020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240020,0.000000,0.000000,0.250000,0,0);}
.m15e_c00270{transform:matrix(0.240264,0.001682,-0.001750,0.249994,0,0);-ms-transform:matrix(0.240264,0.001682,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.240264,0.001682,-0.001750,0.249994,0,0);}
.m65_c00270{transform:matrix(0.240670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240670,0.000000,0.000000,0.250000,0,0);}
.m140_c00270{transform:matrix(0.240700,0.002166,-0.002250,0.249990,0,0);-ms-transform:matrix(0.240700,0.002166,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.240700,0.002166,-0.002250,0.249990,0,0);}
.me7_c00270{transform:matrix(0.240960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240960,0.000000,0.000000,0.250000,0,0);}
.m1b_c00270{transform:matrix(0.241325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241325,0.000000,0.000000,0.250000,0,0);}
.m6_c00270{transform:matrix(0.241580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241580,0.000000,0.000000,0.250000,0,0);}
.m30_c00270{transform:matrix(0.241710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241710,0.000000,0.000000,0.250000,0,0);}
.m1a_c00270{transform:matrix(0.241725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241725,0.000000,0.000000,0.250000,0,0);}
.mab_c00270{transform:matrix(0.242815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242815,0.000000,0.000000,0.250000,0,0);}
.mad_c00270{transform:matrix(0.242920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242920,0.000000,0.000000,0.250000,0,0);}
.m10f_c00270{transform:matrix(0.242980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242980,0.000000,0.000000,0.250000,0,0);}
.m104_c00270{transform:matrix(0.243225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243225,0.000000,0.000000,0.250000,0,0);}
.m57_c00270{transform:matrix(0.243290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243290,0.000000,0.000000,0.250000,0,0);}
.ma8_c00270{transform:matrix(0.243895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243895,0.000000,0.000000,0.250000,0,0);}
.m7d_c00270{transform:matrix(0.244130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244130,0.000000,0.000000,0.250000,0,0);}
.ma5_c00270{transform:matrix(0.244225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244225,0.000000,0.000000,0.250000,0,0);}
.m34_c00270{transform:matrix(0.244240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244240,0.000000,0.000000,0.250000,0,0);}
.mbd_c00270{transform:matrix(0.244260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244260,0.000000,0.000000,0.250000,0,0);}
.m54_c00270{transform:matrix(0.244560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244560,0.000000,0.000000,0.250000,0,0);}
.m70_c00270{transform:matrix(0.244700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244700,0.000000,0.000000,0.250000,0,0);}
.m26_c00270{transform:matrix(0.244805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244805,0.000000,0.000000,0.250000,0,0);}
.m88_c00270{transform:matrix(0.245200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245200,0.000000,0.000000,0.250000,0,0);}
.m66_c00270{transform:matrix(0.245355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245355,0.000000,0.000000,0.250000,0,0);}
.m2c_c00270{transform:matrix(0.245580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245580,0.000000,0.000000,0.250000,0,0);}
.m1e_c00270{transform:matrix(0.245685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245685,0.000000,0.000000,0.250000,0,0);}
.mbb_c00270{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m68_c00270{transform:matrix(0.246120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246120,0.000000,0.000000,0.250000,0,0);}
.mbe_c00270{transform:matrix(0.246305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246305,0.000000,0.000000,0.250000,0,0);}
.m82_c00270{transform:matrix(0.246630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246630,0.000000,0.000000,0.250000,0,0);}
.m10c_c00270{transform:matrix(0.246840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246840,0.000000,0.000000,0.250000,0,0);}
.m3b_c00270{transform:matrix(0.247135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247135,0.000000,0.000000,0.250000,0,0);}
.m13c_c00270{transform:matrix(0.247460,0.002227,-0.002250,0.249990,0,0);-ms-transform:matrix(0.247460,0.002227,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.247460,0.002227,-0.002250,0.249990,0,0);}
.m120_c00270{transform:matrix(0.248155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248155,0.000000,0.000000,0.250000,0,0);}
.m5c_c00270{transform:matrix(0.248275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248275,0.000000,0.000000,0.250000,0,0);}
.m102_c00270{transform:matrix(0.248495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248495,0.000000,0.000000,0.250000,0,0);}
.ma1_c00270{transform:matrix(0.248850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248850,0.000000,0.000000,0.250000,0,0);}
.m110_c00270{transform:matrix(0.249145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249145,0.000000,0.000000,0.250000,0,0);}
.m9c_c00270{transform:matrix(0.249255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249255,0.000000,0.000000,0.250000,0,0);}
.mc2_c00270{transform:matrix(0.249280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249280,0.000000,0.000000,0.250000,0,0);}
.m8d_c00270{transform:matrix(0.249440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249440,0.000000,0.000000,0.250000,0,0);}
.m59_c00270{transform:matrix(0.249935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249935,0.000000,0.000000,0.250000,0,0);}
.m5b_c00270{transform:matrix(0.250170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250170,0.000000,0.000000,0.250000,0,0);}
.m61_c00270{transform:matrix(0.250430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250430,0.000000,0.000000,0.250000,0,0);}
.mac_c00270{transform:matrix(0.250605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250605,0.000000,0.000000,0.250000,0,0);}
.m48_c00270{transform:matrix(0.250620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250620,0.000000,0.000000,0.250000,0,0);}
.m75_c00270{transform:matrix(0.250740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250740,0.000000,0.000000,0.250000,0,0);}
.m7f_c00270{transform:matrix(0.250830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250830,0.000000,0.000000,0.250000,0,0);}
.m71_c00270{transform:matrix(0.250930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250930,0.000000,0.000000,0.250000,0,0);}
.m111_c00270{transform:matrix(0.251185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251185,0.000000,0.000000,0.250000,0,0);}
.m107_c00270{transform:matrix(0.251330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251330,0.000000,0.000000,0.250000,0,0);}
.m122_c00270{transform:matrix(0.252200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252200,0.000000,0.000000,0.250000,0,0);}
.mae_c00270{transform:matrix(0.252540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252540,0.000000,0.000000,0.250000,0,0);}
.m85_c00270{transform:matrix(0.252575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252575,0.000000,0.000000,0.250000,0,0);}
.mfe_c00270{transform:matrix(0.252805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252805,0.000000,0.000000,0.250000,0,0);}
.mb_c00270{transform:matrix(0.252995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252995,0.000000,0.000000,0.250000,0,0);}
.m7b_c00270{transform:matrix(0.253020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253020,0.000000,0.000000,0.250000,0,0);}
.m124_c00270{transform:matrix(0.253050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253050,0.000000,0.000000,0.250000,0,0);}
.mc0_c00270{transform:matrix(0.253155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253155,0.000000,0.000000,0.250000,0,0);}
.m121_c00270{transform:matrix(0.253230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253230,0.000000,0.000000,0.250000,0,0);}
.m10d_c00270{transform:matrix(0.253735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253735,0.000000,0.000000,0.250000,0,0);}
.m6d_c00270{transform:matrix(0.253965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253965,0.000000,0.000000,0.250000,0,0);}
.m13d_c00270{transform:matrix(0.254585,0.002291,-0.002250,0.249990,0,0);-ms-transform:matrix(0.254585,0.002291,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.254585,0.002291,-0.002250,0.249990,0,0);}
.m6a_c00270{transform:matrix(0.255070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255070,0.000000,0.000000,0.250000,0,0);}
.m11b_c00270{transform:matrix(0.255435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255435,0.000000,0.000000,0.250000,0,0);}
.mfd_c00270{transform:matrix(0.255765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255765,0.000000,0.000000,0.250000,0,0);}
.m2e_c00270{transform:matrix(0.255970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255970,0.000000,0.000000,0.250000,0,0);}
.m76_c00270{transform:matrix(0.256085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256085,0.000000,0.000000,0.250000,0,0);}
.m29_c00270{transform:matrix(0.256165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256165,0.000000,0.000000,0.250000,0,0);}
.mf1_c00270{transform:matrix(0.256450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256450,0.000000,0.000000,0.250000,0,0);}
.m38_c00270{transform:matrix(0.256705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256705,0.000000,0.000000,0.250000,0,0);}
.m28_c00270{transform:matrix(0.256785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256785,0.000000,0.000000,0.250000,0,0);}
.m105_c00270{transform:matrix(0.257055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257055,0.000000,0.000000,0.250000,0,0);}
.m100_c00270{transform:matrix(0.257155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257155,0.000000,0.000000,0.250000,0,0);}
.m32_c00270{transform:matrix(0.257520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257520,0.000000,0.000000,0.250000,0,0);}
.md_c00270{transform:matrix(0.257975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257975,0.000000,0.000000,0.250000,0,0);}
.m64_c00270{transform:matrix(0.258235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258235,0.000000,0.000000,0.250000,0,0);}
.m13a_c00270{transform:matrix(0.259175,0.002333,-0.002250,0.249990,0,0);-ms-transform:matrix(0.259175,0.002333,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.259175,0.002333,-0.002250,0.249990,0,0);}
.m13b_c00270{transform:matrix(0.260999,0.002349,-0.002250,0.249990,0,0);-ms-transform:matrix(0.260999,0.002349,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.260999,0.002349,-0.002250,0.249990,0,0);}
.m136_c00270{transform:matrix(0.262454,0.002362,-0.002250,0.249990,0,0);-ms-transform:matrix(0.262454,0.002362,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.262454,0.002362,-0.002250,0.249990,0,0);}
.m78_c00270{transform:matrix(0.262540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262540,0.000000,0.000000,0.250000,0,0);}
.m143_c00270{transform:matrix(0.271774,0.002446,-0.002250,0.249990,0,0);-ms-transform:matrix(0.271774,0.002446,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.271774,0.002446,-0.002250,0.249990,0,0);}
.m137_c00270{transform:matrix(0.272329,0.002451,-0.002250,0.249990,0,0);-ms-transform:matrix(0.272329,0.002451,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.272329,0.002451,-0.002250,0.249990,0,0);}
.m142_c00270{transform:matrix(0.274734,0.002473,-0.002250,0.249990,0,0);-ms-transform:matrix(0.274734,0.002473,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.274734,0.002473,-0.002250,0.249990,0,0);}
.m1d_c00270{transform:matrix(0.317695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317695,0.000000,0.000000,0.250000,0,0);}
.m0_c00270{transform:matrix(0.402550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402550,0.000000,0.000000,0.250000,0,0);}
.m1c_c00270{transform:matrix(0.707015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.707015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.707015,0.000000,0.000000,0.250000,0,0);}
.v0_c00270{vertical-align:0.000000px;}
.ls0_c00270{letter-spacing:0.000000px;}
.sc__c00270{text-shadow:none;}
.sc0_c00270{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__c00270{-webkit-text-stroke:0px transparent;}
.sc0_c00270{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00270{word-spacing:0.000000px;}
.fc0_c00270{color:transparent;}
.fs6_c00270{font-size:36.000000px;}
.fs7_c00270{font-size:72.002916px;}
.fs2_c00270{font-size:78.000000px;}
.fs3_c00270{font-size:84.000000px;}
.fs8_c00270{font-size:84.002058px;}
.fs0_c00270{font-size:90.000000px;}
.fs5_c00270{font-size:96.000000px;}
.fs4_c00270{font-size:102.000000px;}
.fs1_c00270{font-size:108.000000px;}
.y0_c00270{bottom:0.000000px;}
.ybc_c00270{bottom:31.176096px;}
.yba_c00270{bottom:31.176105px;}
.ybb_c00270{bottom:31.176325px;}
.yb9_c00270{bottom:47.156106px;}
.yb8_c00270{bottom:47.451009px;}
.yb7_c00270{bottom:47.912116px;}
.yb6_c00270{bottom:48.161628px;}
.yb5_c00270{bottom:48.617170px;}
.yb4_c00270{bottom:48.838269px;}
.yb3_c00270{bottom:49.382620px;}
.yb2_c00270{bottom:49.613179px;}
.yb1_c00270{bottom:49.839843px;}
.yb0_c00270{bottom:50.225434px;}
.yaf_c00270{bottom:51.079841px;}
.yae_c00270{bottom:51.455866px;}
.yad_c00270{bottom:51.841584px;}
.yac_c00270{bottom:68.814612px;}
.yab_c00270{bottom:69.128278px;}
.yaa_c00270{bottom:69.733289px;}
.ya9_c00270{bottom:69.967523px;}
.ya8_c00270{bottom:70.585668px;}
.ya7_c00270{bottom:71.046839px;}
.ya6_c00270{bottom:71.362448px;}
.ya5_c00270{bottom:71.496700px;}
.ya4_c00270{bottom:72.350928px;}
.ya3_c00270{bottom:73.195790px;}
.ya2_c00270{bottom:73.441500px;}
.ya1_c00270{bottom:100.354817px;}
.ya0_c00270{bottom:101.256333px;}
.y9f_c00270{bottom:101.438664px;}
.y9e_c00270{bottom:101.841990px;}
.y9d_c00270{bottom:102.133617px;}
.y9c_c00270{bottom:102.546744px;}
.y9b_c00270{bottom:103.042505px;}
.y9a_c00270{bottom:103.615917px;}
.y99_c00270{bottom:103.934342px;}
.y98_c00270{bottom:104.109126px;}
.y97_c00270{bottom:104.417817px;}
.y96_c00270{bottom:104.719151px;}
.y95_c00270{bottom:105.404424px;}
.y94_c00270{bottom:106.111500px;}
.y93_c00270{bottom:129.058500px;}
.y92_c00270{bottom:157.707000px;}
.y91_c00270{bottom:188.922000px;}
.y90_c00270{bottom:219.414000px;}
.y8f_c00270{bottom:249.106500px;}
.y8e_c00270{bottom:249.825000px;}
.y8d_c00270{bottom:250.257000px;}
.y8c_c00270{bottom:250.477500px;}
.y8b_c00270{bottom:250.920000px;}
.y8a_c00270{bottom:251.305500px;}
.y89_c00270{bottom:251.527500px;}
.y88_c00270{bottom:252.066000px;}
.y87_c00270{bottom:252.459000px;}
.y86_c00270{bottom:280.489500px;}
.y85_c00270{bottom:280.926000px;}
.y84_c00270{bottom:281.253000px;}
.y83_c00270{bottom:281.421000px;}
.y82_c00270{bottom:281.859000px;}
.y81_c00270{bottom:282.190500px;}
.y80_c00270{bottom:282.357000px;}
.y7f_c00270{bottom:282.682500px;}
.y7e_c00270{bottom:282.846000px;}
.y7d_c00270{bottom:282.960000px;}
.y7c_c00270{bottom:283.398000px;}
.y7b_c00270{bottom:283.780500px;}
.y7a_c00270{bottom:312.556500px;}
.y79_c00270{bottom:313.161000px;}
.y78_c00270{bottom:313.491000px;}
.y77_c00270{bottom:313.878000px;}
.y76_c00270{bottom:314.209500px;}
.y75_c00270{bottom:314.376000px;}
.y74_c00270{bottom:314.917500px;}
.y73_c00270{bottom:315.087000px;}
.y72_c00270{bottom:315.634500px;}
.y71_c00270{bottom:315.910500px;}
.y70_c00270{bottom:345.778500px;}
.y6f_c00270{bottom:377.728500px;}
.y6e_c00270{bottom:409.521000px;}
.y6d_c00270{bottom:440.928000px;}
.y6c_c00270{bottom:473.631000px;}
.y6b_c00270{bottom:504.556500px;}
.y6a_c00270{bottom:534.285000px;}
.y69_c00270{bottom:534.778500px;}
.y68_c00270{bottom:534.990000px;}
.y67_c00270{bottom:535.215000px;}
.y66_c00270{bottom:535.653000px;}
.y65_c00270{bottom:535.878000px;}
.y64_c00270{bottom:536.476500px;}
.y63_c00270{bottom:536.808000px;}
.y62_c00270{bottom:536.970000px;}
.y61_c00270{bottom:537.208500px;}
.y60_c00270{bottom:537.580500px;}
.y5f_c00270{bottom:564.873000px;}
.y5e_c00270{bottom:565.479000px;}
.y5d_c00270{bottom:565.783500px;}
.y5c_c00270{bottom:566.406000px;}
.y5b_c00270{bottom:566.871000px;}
.y5a_c00270{bottom:567.091500px;}
.y59_c00270{bottom:567.478500px;}
.y58_c00270{bottom:568.096500px;}
.y57_c00270{bottom:568.324500px;}
.y56_c00270{bottom:568.563000px;}
.y55_c00270{bottom:569.169000px;}
.y54_c00270{bottom:595.833000px;}
.y53_c00270{bottom:596.293500px;}
.y52_c00270{bottom:596.752500px;}
.y51_c00270{bottom:596.988000px;}
.y50_c00270{bottom:597.379500px;}
.y4f_c00270{bottom:597.685500px;}
.y4e_c00270{bottom:597.918000px;}
.y4d_c00270{bottom:598.371000px;}
.y4c_c00270{bottom:598.603500px;}
.y4b_c00270{bottom:598.830000px;}
.y4a_c00270{bottom:599.061000px;}
.y49_c00270{bottom:599.224500px;}
.y48_c00270{bottom:599.986500px;}
.y47_c00270{bottom:600.223500px;}
.y46_c00270{bottom:600.369000px;}
.y45_c00270{bottom:600.756000px;}
.y44_c00270{bottom:628.612500px;}
.y43_c00270{bottom:628.944000px;}
.y42_c00270{bottom:629.104500px;}
.y41_c00270{bottom:629.326500px;}
.y40_c00270{bottom:629.931000px;}
.y3f_c00270{bottom:630.093000px;}
.y3e_c00270{bottom:630.427500px;}
.y3d_c00270{bottom:630.583500px;}
.y3c_c00270{bottom:630.807000px;}
.y3b_c00270{bottom:631.359000px;}
.y3a_c00270{bottom:631.908000px;}
.y39_c00270{bottom:632.071500px;}
.y38_c00270{bottom:660.204000px;}
.y37_c00270{bottom:660.480000px;}
.y36_c00270{bottom:660.699000px;}
.y35_c00270{bottom:661.081500px;}
.y34_c00270{bottom:661.354500px;}
.y33_c00270{bottom:661.525500px;}
.y32_c00270{bottom:661.849500px;}
.y31_c00270{bottom:662.011500px;}
.y30_c00270{bottom:662.178000px;}
.y2f_c00270{bottom:662.679000px;}
.y2e_c00270{bottom:662.890500px;}
.y2d_c00270{bottom:663.006000px;}
.y2c_c00270{bottom:663.391500px;}
.y2b_c00270{bottom:692.386500px;}
.y2a_c00270{bottom:692.607000px;}
.y29_c00270{bottom:692.994000px;}
.y28_c00270{bottom:693.426000px;}
.y27_c00270{bottom:693.540000px;}
.y26_c00270{bottom:693.922500px;}
.y25_c00270{bottom:694.089000px;}
.y24_c00270{bottom:694.638000px;}
.y23_c00270{bottom:694.914000px;}
.y22_c00270{bottom:695.082000px;}
.y21_c00270{bottom:695.793000px;}
.y20_c00270{bottom:723.762000px;}
.y1f_c00270{bottom:724.363500px;}
.y1e_c00270{bottom:724.857000px;}
.y1d_c00270{bottom:725.134500px;}
.y1c_c00270{bottom:725.356500px;}
.y1b_c00270{bottom:725.520000px;}
.y1a_c00270{bottom:725.904000px;}
.y19_c00270{bottom:726.286500px;}
.y18_c00270{bottom:726.508500px;}
.y17_c00270{bottom:726.672000px;}
.y16_c00270{bottom:727.111500px;}
.y15_c00270{bottom:757.858500px;}
.y14_c00270{bottom:788.665500px;}
.y13_c00270{bottom:821.550000px;}
.y12_c00270{bottom:852.042000px;}
.y11_c00270{bottom:883.995000px;}
.y10_c00270{bottom:914.931000px;}
.yf_c00270{bottom:947.185500px;}
.ye_c00270{bottom:978.396000px;}
.yd_c00270{bottom:1008.607500px;}
.yc_c00270{bottom:1008.810000px;}
.yb_c00270{bottom:1009.461000px;}
.ya_c00270{bottom:1009.668000px;}
.y9_c00270{bottom:1010.248500px;}
.y8_c00270{bottom:1010.580000px;}
.y7_c00270{bottom:1010.722500px;}
.y6_c00270{bottom:1011.037500px;}
.y5_c00270{bottom:1011.252000px;}
.y4_c00270{bottom:1011.771000px;}
.y3_c00270{bottom:1011.961500px;}
.y2_c00270{bottom:1044.097500px;}
.y1_c00270{bottom:1109.022000px;}
.h8_c00270{height:36.000000px;}
.h9_c00270{height:72.002916px;}
.h4_c00270{height:78.000000px;}
.h5_c00270{height:84.000000px;}
.ha_c00270{height:84.002058px;}
.h2_c00270{height:90.000000px;}
.h7_c00270{height:96.000000px;}
.h6_c00270{height:102.000000px;}
.h3_c00270{height:108.000000px;}
.h0_c00270{height:1154.790000px;}
.h1_c00270{height:1155.000000px;}
.w0_c00270{width:915.000000px;}
.x0_c00270{left:0.000000px;}
.x39_c00270{left:124.200000px;}
.x63_c00270{left:125.274000px;}
.x11_c00270{left:126.630000px;}
.x2_c00270{left:127.710000px;}
.x6c_c00270{left:157.404000px;}
.x57_c00270{left:158.691000px;}
.x43_c00270{left:160.110000px;}
.x94_c00270{left:168.210346px;}
.x2c_c00270{left:169.560000px;}
.x64_c00270{left:180.084000px;}
.x5a_c00270{left:181.633500px;}
.x86_c00270{left:191.154000px;}
.x3a_c00270{left:193.050000px;}
.x5e_c00270{left:199.464000px;}
.x79_c00270{left:201.609000px;}
.x25_c00270{left:203.310000px;}
.x5d_c00270{left:213.192000px;}
.x3_c00270{left:214.650000px;}
.x6f_c00270{left:223.554000px;}
.x26_c00270{left:226.530000px;}
.x91_c00270{left:233.707873px;}
.x1c_c00270{left:235.170000px;}
.x48_c00270{left:236.790000px;}
.x6_c00270{left:238.596000px;}
.x4e_c00270{left:246.991500px;}
.x12_c00270{left:258.660000px;}
.x3b_c00270{left:260.280000px;}
.x87_c00270{left:267.834000px;}
.x53_c00270{left:268.851000px;}
.x7_c00270{left:270.451500px;}
.x8b_c00270{left:278.244000px;}
.x8e_c00270{left:279.346500px;}
.x34_c00270{left:280.530000px;}
.x73_c00270{left:289.434000px;}
.x3c_c00270{left:291.330000px;}
.x4_c00270{left:294.840000px;}
.x2d_c00270{left:302.670000px;}
.x81_c00270{left:310.705500px;}
.x7a_c00270{left:312.039000px;}
.x1d_c00270{left:313.740000px;}
.x65_c00270{left:323.994000px;}
.x13_c00270{left:325.080000px;}
.x5_c00270{left:326.160000px;}
.x49_c00270{left:334.530000px;}
.x1e_c00270{left:335.610000px;}
.x7b_c00270{left:344.716500px;}
.x2e_c00270{left:345.870000px;}
.x27_c00270{left:347.490000px;}
.x74_c00270{left:354.774000px;}
.x8_c00270{left:356.851500px;}
.x8c_c00270{left:365.445000px;}
.x67_c00270{left:366.654000px;}
.x4f_c00270{left:367.666500px;}
.x14_c00270{left:368.820000px;}
.x88_c00270{left:377.724000px;}
.x1f_c00270{left:379.080000px;}
.x3d_c00270{left:389.610000px;}
.x9_c00270{left:392.490000px;}
.x6d_c00270{left:399.594000px;}
.x15_c00270{left:400.950000px;}
.x1_c00270{left:402.030000px;}
.x7c_c00270{left:409.774500px;}
.x35_c00270{left:411.750000px;}
.x8f_c00270{left:420.558000px;}
.x6b_c00270{left:422.004000px;}
.x3e_c00270{left:423.360000px;}
.x76_c00270{left:431.917500px;}
.x4a_c00270{left:433.350000px;}
.x2f_c00270{left:434.970000px;}
.x7d_c00270{left:442.990500px;}
.xa_c00270{left:444.889500px;}
.x20_c00270{left:455.220000px;}
.x4b_c00270{left:456.300000px;}
.x8d_c00270{left:464.538000px;}
.x5f_c00270{left:465.675000px;}
.x16_c00270{left:467.370000px;}
.xb_c00270{left:468.628500px;}
.x50_c00270{left:477.016500px;}
.x28_c00270{left:478.440000px;}
.x70_c00270{left:487.614000px;}
.x36_c00270{left:489.510000px;}
.x30_c00270{left:498.960000px;}
.x21_c00270{left:500.850000px;}
.x7e_c00270{left:509.409000px;}
.x44_c00270{left:511.380000px;}
.x89_c00270{left:520.284000px;}
.x51_c00270{left:521.559000px;}
.xc_c00270{left:523.977000px;}
.x77_c00270{left:531.546000px;}
.x29_c00270{left:532.710000px;}
.x31_c00270{left:533.790000px;}
.x6e_c00270{left:542.154000px;}
.x17_c00270{left:545.400000px;}
.x45_c00270{left:554.580000px;}
.x4c_c00270{left:565.380000px;}
.x22_c00270{left:567.000000px;}
.x66_c00270{left:575.904000px;}
.x52_c00270{left:577.182000px;}
.x92_c00270{left:585.517873px;}
.x55_c00270{left:588.006000px;}
.x7f_c00270{left:597.157500px;}
.x60_c00270{left:598.258500px;}
.x54_c00270{left:599.599500px;}
.x5b_c00270{left:608.739000px;}
.x18_c00270{left:610.200000px;}
.xd_c00270{left:620.661000px;}
.x2a_c00270{left:622.080000px;}
.x71_c00270{left:630.714000px;}
.x68_c00270{left:631.794000px;}
.x3f_c00270{left:642.060000px;}
.x23_c00270{left:643.950000px;}
.x82_c00270{left:651.420000px;}
.x32_c00270{left:653.400000px;}
.xe_c00270{left:655.195500px;}
.x69_c00270{left:663.114000px;}
.x4d_c00270{left:665.280000px;}
.x83_c00270{left:673.374000px;}
.x78_c00270{left:674.911500px;}
.x40_c00270{left:676.080000px;}
.x61_c00270{left:685.720500px;}
.x24_c00270{left:686.880000px;}
.x37_c00270{left:694.440000px;}
.x75_c00270{left:696.594000px;}
.x19_c00270{left:698.220000px;}
.x56_c00270{left:708.151500px;}
.x46_c00270{left:719.010000px;}
.x58_c00270{left:720.018000px;}
.x33_c00270{left:730.350000px;}
.x1a_c00270{left:731.970000px;}
.x90_c00270{left:739.725000px;}
.x47_c00270{left:741.420000px;}
.x84_c00270{left:751.404000px;}
.x41_c00270{left:752.490000px;}
.x8a_c00270{left:762.474000px;}
.xf_c00270{left:763.743000px;}
.x42_c00270{left:774.630000px;}
.x80_c00270{left:783.189000px;}
.x62_c00270{left:784.536000px;}
.x85_c00270{left:785.964000px;}
.x93_c00270{left:794.241373px;}
.x6a_c00270{left:795.414000px;}
.x2b_c00270{left:796.500000px;}
.x10_c00270{left:797.503500px;}
.x72_c00270{left:805.944000px;}
.x38_c00270{left:807.570000px;}
.x59_c00270{left:818.581500px;}
.x1b_c00270{left:820.260000px;}
.x5c_c00270{left:829.876500px;}
@media print{
.v0_c00270{vertical-align:0.000000pt;}
.ls0_c00270{letter-spacing:0.000000pt;}
.ws0_c00270{word-spacing:0.000000pt;}
.fs6_c00270{font-size:32.000000pt;}
.fs7_c00270{font-size:64.002592pt;}
.fs2_c00270{font-size:69.333333pt;}
.fs3_c00270{font-size:74.666667pt;}
.fs8_c00270{font-size:74.668496pt;}
.fs0_c00270{font-size:80.000000pt;}
.fs5_c00270{font-size:85.333333pt;}
.fs4_c00270{font-size:90.666667pt;}
.fs1_c00270{font-size:96.000000pt;}
.y0_c00270{bottom:0.000000pt;}
.ybc_c00270{bottom:27.712085pt;}
.yba_c00270{bottom:27.712093pt;}
.ybb_c00270{bottom:27.712289pt;}
.yb9_c00270{bottom:41.916539pt;}
.yb8_c00270{bottom:42.178675pt;}
.yb7_c00270{bottom:42.588548pt;}
.yb6_c00270{bottom:42.810336pt;}
.yb5_c00270{bottom:43.215263pt;}
.yb4_c00270{bottom:43.411795pt;}
.yb3_c00270{bottom:43.895663pt;}
.yb2_c00270{bottom:44.100604pt;}
.yb1_c00270{bottom:44.302083pt;}
.yb0_c00270{bottom:44.644831pt;}
.yaf_c00270{bottom:45.404303pt;}
.yae_c00270{bottom:45.738548pt;}
.yad_c00270{bottom:46.081408pt;}
.yac_c00270{bottom:61.168544pt;}
.yab_c00270{bottom:61.447359pt;}
.yaa_c00270{bottom:61.985145pt;}
.ya9_c00270{bottom:62.193353pt;}
.ya8_c00270{bottom:62.742816pt;}
.ya7_c00270{bottom:63.152745pt;}
.ya6_c00270{bottom:63.433287pt;}
.ya5_c00270{bottom:63.552623pt;}
.ya4_c00270{bottom:64.311936pt;}
.ya3_c00270{bottom:65.062924pt;}
.ya2_c00270{bottom:65.281333pt;}
.ya1_c00270{bottom:89.204281pt;}
.ya0_c00270{bottom:90.005629pt;}
.y9f_c00270{bottom:90.167701pt;}
.y9e_c00270{bottom:90.526213pt;}
.y9d_c00270{bottom:90.785437pt;}
.y9c_c00270{bottom:91.152661pt;}
.y9b_c00270{bottom:91.593337pt;}
.y9a_c00270{bottom:92.103037pt;}
.y99_c00270{bottom:92.386081pt;}
.y98_c00270{bottom:92.541445pt;}
.y97_c00270{bottom:92.815837pt;}
.y96_c00270{bottom:93.083689pt;}
.y95_c00270{bottom:93.692821pt;}
.y94_c00270{bottom:94.321333pt;}
.y93_c00270{bottom:114.718667pt;}
.y92_c00270{bottom:140.184000pt;}
.y91_c00270{bottom:167.930667pt;}
.y90_c00270{bottom:195.034667pt;}
.y8f_c00270{bottom:221.428000pt;}
.y8e_c00270{bottom:222.066667pt;}
.y8d_c00270{bottom:222.450667pt;}
.y8c_c00270{bottom:222.646667pt;}
.y8b_c00270{bottom:223.040000pt;}
.y8a_c00270{bottom:223.382667pt;}
.y89_c00270{bottom:223.580000pt;}
.y88_c00270{bottom:224.058667pt;}
.y87_c00270{bottom:224.408000pt;}
.y86_c00270{bottom:249.324000pt;}
.y85_c00270{bottom:249.712000pt;}
.y84_c00270{bottom:250.002667pt;}
.y83_c00270{bottom:250.152000pt;}
.y82_c00270{bottom:250.541333pt;}
.y81_c00270{bottom:250.836000pt;}
.y80_c00270{bottom:250.984000pt;}
.y7f_c00270{bottom:251.273333pt;}
.y7e_c00270{bottom:251.418667pt;}
.y7d_c00270{bottom:251.520000pt;}
.y7c_c00270{bottom:251.909333pt;}
.y7b_c00270{bottom:252.249333pt;}
.y7a_c00270{bottom:277.828000pt;}
.y79_c00270{bottom:278.365333pt;}
.y78_c00270{bottom:278.658667pt;}
.y77_c00270{bottom:279.002667pt;}
.y76_c00270{bottom:279.297333pt;}
.y75_c00270{bottom:279.445333pt;}
.y74_c00270{bottom:279.926667pt;}
.y73_c00270{bottom:280.077333pt;}
.y72_c00270{bottom:280.564000pt;}
.y71_c00270{bottom:280.809333pt;}
.y70_c00270{bottom:307.358667pt;}
.y6f_c00270{bottom:335.758667pt;}
.y6e_c00270{bottom:364.018667pt;}
.y6d_c00270{bottom:391.936000pt;}
.y6c_c00270{bottom:421.005333pt;}
.y6b_c00270{bottom:448.494667pt;}
.y6a_c00270{bottom:474.920000pt;}
.y69_c00270{bottom:475.358667pt;}
.y68_c00270{bottom:475.546667pt;}
.y67_c00270{bottom:475.746667pt;}
.y66_c00270{bottom:476.136000pt;}
.y65_c00270{bottom:476.336000pt;}
.y64_c00270{bottom:476.868000pt;}
.y63_c00270{bottom:477.162667pt;}
.y62_c00270{bottom:477.306667pt;}
.y61_c00270{bottom:477.518667pt;}
.y60_c00270{bottom:477.849333pt;}
.y5f_c00270{bottom:502.109333pt;}
.y5e_c00270{bottom:502.648000pt;}
.y5d_c00270{bottom:502.918667pt;}
.y5c_c00270{bottom:503.472000pt;}
.y5b_c00270{bottom:503.885333pt;}
.y5a_c00270{bottom:504.081333pt;}
.y59_c00270{bottom:504.425333pt;}
.y58_c00270{bottom:504.974667pt;}
.y57_c00270{bottom:505.177333pt;}
.y56_c00270{bottom:505.389333pt;}
.y55_c00270{bottom:505.928000pt;}
.y54_c00270{bottom:529.629333pt;}
.y53_c00270{bottom:530.038667pt;}
.y52_c00270{bottom:530.446667pt;}
.y51_c00270{bottom:530.656000pt;}
.y50_c00270{bottom:531.004000pt;}
.y4f_c00270{bottom:531.276000pt;}
.y4e_c00270{bottom:531.482667pt;}
.y4d_c00270{bottom:531.885333pt;}
.y4c_c00270{bottom:532.092000pt;}
.y4b_c00270{bottom:532.293333pt;}
.y4a_c00270{bottom:532.498667pt;}
.y49_c00270{bottom:532.644000pt;}
.y48_c00270{bottom:533.321333pt;}
.y47_c00270{bottom:533.532000pt;}
.y46_c00270{bottom:533.661333pt;}
.y45_c00270{bottom:534.005333pt;}
.y44_c00270{bottom:558.766667pt;}
.y43_c00270{bottom:559.061333pt;}
.y42_c00270{bottom:559.204000pt;}
.y41_c00270{bottom:559.401333pt;}
.y40_c00270{bottom:559.938667pt;}
.y3f_c00270{bottom:560.082667pt;}
.y3e_c00270{bottom:560.380000pt;}
.y3d_c00270{bottom:560.518667pt;}
.y3c_c00270{bottom:560.717333pt;}
.y3b_c00270{bottom:561.208000pt;}
.y3a_c00270{bottom:561.696000pt;}
.y39_c00270{bottom:561.841333pt;}
.y38_c00270{bottom:586.848000pt;}
.y37_c00270{bottom:587.093333pt;}
.y36_c00270{bottom:587.288000pt;}
.y35_c00270{bottom:587.628000pt;}
.y34_c00270{bottom:587.870667pt;}
.y33_c00270{bottom:588.022667pt;}
.y32_c00270{bottom:588.310667pt;}
.y31_c00270{bottom:588.454667pt;}
.y30_c00270{bottom:588.602667pt;}
.y2f_c00270{bottom:589.048000pt;}
.y2e_c00270{bottom:589.236000pt;}
.y2d_c00270{bottom:589.338667pt;}
.y2c_c00270{bottom:589.681333pt;}
.y2b_c00270{bottom:615.454667pt;}
.y2a_c00270{bottom:615.650667pt;}
.y29_c00270{bottom:615.994667pt;}
.y28_c00270{bottom:616.378667pt;}
.y27_c00270{bottom:616.480000pt;}
.y26_c00270{bottom:616.820000pt;}
.y25_c00270{bottom:616.968000pt;}
.y24_c00270{bottom:617.456000pt;}
.y23_c00270{bottom:617.701333pt;}
.y22_c00270{bottom:617.850667pt;}
.y21_c00270{bottom:618.482667pt;}
.y20_c00270{bottom:643.344000pt;}
.y1f_c00270{bottom:643.878667pt;}
.y1e_c00270{bottom:644.317333pt;}
.y1d_c00270{bottom:644.564000pt;}
.y1c_c00270{bottom:644.761333pt;}
.y1b_c00270{bottom:644.906667pt;}
.y1a_c00270{bottom:645.248000pt;}
.y19_c00270{bottom:645.588000pt;}
.y18_c00270{bottom:645.785333pt;}
.y17_c00270{bottom:645.930667pt;}
.y16_c00270{bottom:646.321333pt;}
.y15_c00270{bottom:673.652000pt;}
.y14_c00270{bottom:701.036000pt;}
.y13_c00270{bottom:730.266667pt;}
.y12_c00270{bottom:757.370667pt;}
.y11_c00270{bottom:785.773333pt;}
.y10_c00270{bottom:813.272000pt;}
.yf_c00270{bottom:841.942667pt;}
.ye_c00270{bottom:869.685333pt;}
.yd_c00270{bottom:896.540000pt;}
.yc_c00270{bottom:896.720000pt;}
.yb_c00270{bottom:897.298667pt;}
.ya_c00270{bottom:897.482667pt;}
.y9_c00270{bottom:897.998667pt;}
.y8_c00270{bottom:898.293333pt;}
.y7_c00270{bottom:898.420000pt;}
.y6_c00270{bottom:898.700000pt;}
.y5_c00270{bottom:898.890667pt;}
.y4_c00270{bottom:899.352000pt;}
.y3_c00270{bottom:899.521333pt;}
.y2_c00270{bottom:928.086667pt;}
.y1_c00270{bottom:985.797333pt;}
.h8_c00270{height:32.000000pt;}
.h9_c00270{height:64.002592pt;}
.h4_c00270{height:69.333333pt;}
.h5_c00270{height:74.666667pt;}
.ha_c00270{height:74.668496pt;}
.h2_c00270{height:80.000000pt;}
.h7_c00270{height:85.333333pt;}
.h6_c00270{height:90.666667pt;}
.h3_c00270{height:96.000000pt;}
.h0_c00270{height:1026.480000pt;}
.h1_c00270{height:1026.666667pt;}
.w0_c00270{width:813.333333pt;}
.x0_c00270{left:0.000000pt;}
.x39_c00270{left:110.400000pt;}
.x63_c00270{left:111.354667pt;}
.x11_c00270{left:112.560000pt;}
.x2_c00270{left:113.520000pt;}
.x6c_c00270{left:139.914667pt;}
.x57_c00270{left:141.058667pt;}
.x43_c00270{left:142.320000pt;}
.x94_c00270{left:149.520308pt;}
.x2c_c00270{left:150.720000pt;}
.x64_c00270{left:160.074667pt;}
.x5a_c00270{left:161.452000pt;}
.x86_c00270{left:169.914667pt;}
.x3a_c00270{left:171.600000pt;}
.x5e_c00270{left:177.301333pt;}
.x79_c00270{left:179.208000pt;}
.x25_c00270{left:180.720000pt;}
.x5d_c00270{left:189.504000pt;}
.x3_c00270{left:190.800000pt;}
.x6f_c00270{left:198.714667pt;}
.x26_c00270{left:201.360000pt;}
.x91_c00270{left:207.740332pt;}
.x1c_c00270{left:209.040000pt;}
.x48_c00270{left:210.480000pt;}
.x6_c00270{left:212.085333pt;}
.x4e_c00270{left:219.548000pt;}
.x12_c00270{left:229.920000pt;}
.x3b_c00270{left:231.360000pt;}
.x87_c00270{left:238.074667pt;}
.x53_c00270{left:238.978667pt;}
.x7_c00270{left:240.401333pt;}
.x8b_c00270{left:247.328000pt;}
.x8e_c00270{left:248.308000pt;}
.x34_c00270{left:249.360000pt;}
.x73_c00270{left:257.274667pt;}
.x3c_c00270{left:258.960000pt;}
.x4_c00270{left:262.080000pt;}
.x2d_c00270{left:269.040000pt;}
.x81_c00270{left:276.182667pt;}
.x7a_c00270{left:277.368000pt;}
.x1d_c00270{left:278.880000pt;}
.x65_c00270{left:287.994667pt;}
.x13_c00270{left:288.960000pt;}
.x5_c00270{left:289.920000pt;}
.x49_c00270{left:297.360000pt;}
.x1e_c00270{left:298.320000pt;}
.x7b_c00270{left:306.414667pt;}
.x2e_c00270{left:307.440000pt;}
.x27_c00270{left:308.880000pt;}
.x74_c00270{left:315.354667pt;}
.x8_c00270{left:317.201333pt;}
.x8c_c00270{left:324.840000pt;}
.x67_c00270{left:325.914667pt;}
.x4f_c00270{left:326.814667pt;}
.x14_c00270{left:327.840000pt;}
.x88_c00270{left:335.754667pt;}
.x1f_c00270{left:336.960000pt;}
.x3d_c00270{left:346.320000pt;}
.x9_c00270{left:348.880000pt;}
.x6d_c00270{left:355.194667pt;}
.x15_c00270{left:356.400000pt;}
.x1_c00270{left:357.360000pt;}
.x7c_c00270{left:364.244000pt;}
.x35_c00270{left:366.000000pt;}
.x8f_c00270{left:373.829333pt;}
.x6b_c00270{left:375.114667pt;}
.x3e_c00270{left:376.320000pt;}
.x76_c00270{left:383.926667pt;}
.x4a_c00270{left:385.200000pt;}
.x2f_c00270{left:386.640000pt;}
.x7d_c00270{left:393.769333pt;}
.xa_c00270{left:395.457333pt;}
.x20_c00270{left:404.640000pt;}
.x4b_c00270{left:405.600000pt;}
.x8d_c00270{left:412.922667pt;}
.x5f_c00270{left:413.933333pt;}
.x16_c00270{left:415.440000pt;}
.xb_c00270{left:416.558667pt;}
.x50_c00270{left:424.014667pt;}
.x28_c00270{left:425.280000pt;}
.x70_c00270{left:433.434667pt;}
.x36_c00270{left:435.120000pt;}
.x30_c00270{left:443.520000pt;}
.x21_c00270{left:445.200000pt;}
.x7e_c00270{left:452.808000pt;}
.x44_c00270{left:454.560000pt;}
.x89_c00270{left:462.474667pt;}
.x51_c00270{left:463.608000pt;}
.xc_c00270{left:465.757333pt;}
.x77_c00270{left:472.485333pt;}
.x29_c00270{left:473.520000pt;}
.x31_c00270{left:474.480000pt;}
.x6e_c00270{left:481.914667pt;}
.x17_c00270{left:484.800000pt;}
.x45_c00270{left:492.960000pt;}
.x4c_c00270{left:502.560000pt;}
.x22_c00270{left:504.000000pt;}
.x66_c00270{left:511.914667pt;}
.x52_c00270{left:513.050667pt;}
.x92_c00270{left:520.460332pt;}
.x55_c00270{left:522.672000pt;}
.x7f_c00270{left:530.806667pt;}
.x60_c00270{left:531.785333pt;}
.x54_c00270{left:532.977333pt;}
.x5b_c00270{left:541.101333pt;}
.x18_c00270{left:542.400000pt;}
.xd_c00270{left:551.698667pt;}
.x2a_c00270{left:552.960000pt;}
.x71_c00270{left:560.634667pt;}
.x68_c00270{left:561.594667pt;}
.x3f_c00270{left:570.720000pt;}
.x23_c00270{left:572.400000pt;}
.x82_c00270{left:579.040000pt;}
.x32_c00270{left:580.800000pt;}
.xe_c00270{left:582.396000pt;}
.x69_c00270{left:589.434667pt;}
.x4d_c00270{left:591.360000pt;}
.x83_c00270{left:598.554667pt;}
.x78_c00270{left:599.921333pt;}
.x40_c00270{left:600.960000pt;}
.x61_c00270{left:609.529333pt;}
.x24_c00270{left:610.560000pt;}
.x37_c00270{left:617.280000pt;}
.x75_c00270{left:619.194667pt;}
.x19_c00270{left:620.640000pt;}
.x56_c00270{left:629.468000pt;}
.x46_c00270{left:639.120000pt;}
.x58_c00270{left:640.016000pt;}
.x33_c00270{left:649.200000pt;}
.x1a_c00270{left:650.640000pt;}
.x90_c00270{left:657.533333pt;}
.x47_c00270{left:659.040000pt;}
.x84_c00270{left:667.914667pt;}
.x41_c00270{left:668.880000pt;}
.x8a_c00270{left:677.754667pt;}
.xf_c00270{left:678.882667pt;}
.x42_c00270{left:688.560000pt;}
.x80_c00270{left:696.168000pt;}
.x62_c00270{left:697.365333pt;}
.x85_c00270{left:698.634667pt;}
.x93_c00270{left:705.992332pt;}
.x6a_c00270{left:707.034667pt;}
.x2b_c00270{left:708.000000pt;}
.x10_c00270{left:708.892000pt;}
.x72_c00270{left:716.394667pt;}
.x38_c00270{left:717.840000pt;}
.x59_c00270{left:727.628000pt;}
.x1b_c00270{left:729.120000pt;}
.x5c_c00270{left:737.668000pt;}
}





/* 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_c00271 {
    display:none;
  }
  .loading-indicator_c00271.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00271 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_c00271 { 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_c00271" -> "#page-container .classname_c00271")
 */
.pf_c00271 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00271 { /* 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_c00271.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00271 { /* 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_c00271 { /* 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_c00271 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00271 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00271 {overflow:visible;}
  }
}
.c_c00271 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00271 { /* 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_c00271:after { /* webkit #35443 */
  content: '';
}
.t_c00271:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00271 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 */
}
.__c00271 { /* 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_c00271 { /* info for Javascript */
  display:none;
}
.l_c00271 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00271 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00271 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00271: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_c00271 {
    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_c00271.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00271.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_c00271 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00271{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00271;src:url('chunks/assets/font_53ec0c54e60da7c2d414b553.woff2')format("woff");}.ff1_c00271{font-family:ff1_c00271;line-height:1.000000;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;}
.m2f_c00271{transform:matrix(0.010059,-0.000101,0.002500,0.249988,0,0);-ms-transform:matrix(0.010059,-0.000101,0.002500,0.249988,0,0);-webkit-transform:matrix(0.010059,-0.000101,0.002500,0.249988,0,0);}
.m57_c00271{transform:matrix(0.012480,0.000062,-0.001250,0.249997,0,0);-ms-transform:matrix(0.012480,0.000062,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.012480,0.000062,-0.001250,0.249997,0,0);}
.mfc_c00271{transform:matrix(0.015910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.015910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.015910,0.000000,0.000000,0.250000,0,0);}
.mb_c00271{transform:matrix(0.016399,-0.000164,0.002500,0.249988,0,0);-ms-transform:matrix(0.016399,-0.000164,0.002500,0.249988,0,0);-webkit-transform:matrix(0.016399,-0.000164,0.002500,0.249988,0,0);}
.md3_c00271{transform:matrix(0.031820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.031820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.031820,0.000000,0.000000,0.250000,0,0);}
.m129_c00271{transform:matrix(0.040560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.040560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.040560,0.000000,0.000000,0.250000,0,0);}
.md1_c00271{transform:matrix(0.057365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.057365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.057365,0.000000,0.000000,0.250000,0,0);}
.m11d_c00271{transform:matrix(0.063640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.063640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.063640,0.000000,0.000000,0.250000,0,0);}
.m60_c00271{transform:matrix(0.069229,0.000346,-0.001250,0.249997,0,0);-ms-transform:matrix(0.069229,0.000346,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.069229,0.000346,-0.001250,0.249997,0,0);}
.m10d_c00271{transform:matrix(0.072035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072035,0.000000,0.000000,0.250000,0,0);}
.m132_c00271{transform:matrix(0.084855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084855,0.000000,0.000000,0.250000,0,0);}
.m128_c00271{transform:matrix(0.090700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090700,0.000000,0.000000,0.250000,0,0);}
.m11f_c00271{transform:matrix(0.095460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.095460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.095460,0.000000,0.000000,0.250000,0,0);}
.m135_c00271{transform:matrix(0.100625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100625,0.000000,0.000000,0.250000,0,0);}
.md5_c00271{transform:matrix(0.111370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111370,0.000000,0.000000,0.250000,0,0);}
.m144_c00271{transform:matrix(0.114235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114235,0.000000,0.000000,0.250000,0,0);}
.mbf_c00271{transform:matrix(0.115825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115825,0.000000,0.000000,0.250000,0,0);}
.mc4_c00271{transform:matrix(0.119590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119590,0.000000,0.000000,0.250000,0,0);}
.m51_c00271{transform:matrix(0.129168,0.000646,-0.001250,0.249997,0,0);-ms-transform:matrix(0.129168,0.000646,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.129168,0.000646,-0.001250,0.249997,0,0);}
.ma7_c00271{transform:matrix(0.129295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129295,0.000000,0.000000,0.250000,0,0);}
.m9d_c00271{transform:matrix(0.132140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132140,0.000000,0.000000,0.250000,0,0);}
.m141_c00271{transform:matrix(0.135210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135210,0.000000,0.000000,0.250000,0,0);}
.m30_c00271{transform:matrix(0.137518,-0.001375,0.002500,0.249988,0,0);-ms-transform:matrix(0.137518,-0.001375,0.002500,0.249988,0,0);-webkit-transform:matrix(0.137518,-0.001375,0.002500,0.249988,0,0);}
.m48_c00271{transform:matrix(0.140178,0.000701,-0.001250,0.249997,0,0);-ms-transform:matrix(0.140178,0.000701,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.140178,0.000701,-0.001250,0.249997,0,0);}
.ma5_c00271{transform:matrix(0.140860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140860,0.000000,0.000000,0.250000,0,0);}
.m122_c00271{transform:matrix(0.147735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147735,0.000000,0.000000,0.250000,0,0);}
.m7_c00271{transform:matrix(0.153392,-0.001534,0.002500,0.249988,0,0);-ms-transform:matrix(0.153392,-0.001534,0.002500,0.249988,0,0);-webkit-transform:matrix(0.153392,-0.001534,0.002500,0.249988,0,0);}
.m143_c00271{transform:matrix(0.156605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156605,0.000000,0.000000,0.250000,0,0);}
.mef_c00271{transform:matrix(0.160995,0.001771,-0.002750,0.249985,0,0);-ms-transform:matrix(0.160995,0.001771,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.160995,0.001771,-0.002750,0.249985,0,0);}
.m13e_c00271{transform:matrix(0.161905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161905,0.000000,0.000000,0.250000,0,0);}
.m34_c00271{transform:matrix(0.164752,-0.001648,0.002500,0.249988,0,0);-ms-transform:matrix(0.164752,-0.001648,0.002500,0.249988,0,0);-webkit-transform:matrix(0.164752,-0.001648,0.002500,0.249988,0,0);}
.mab_c00271{transform:matrix(0.165530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165530,0.000000,0.000000,0.250000,0,0);}
.m6_c00271{transform:matrix(0.167472,-0.001675,0.002500,0.249988,0,0);-ms-transform:matrix(0.167472,-0.001675,0.002500,0.249988,0,0);-webkit-transform:matrix(0.167472,-0.001675,0.002500,0.249988,0,0);}
.m12e_c00271{transform:matrix(0.168460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168460,0.000000,0.000000,0.250000,0,0);}
.m12a_c00271{transform:matrix(0.168540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168540,0.000000,0.000000,0.250000,0,0);}
.m6e_c00271{transform:matrix(0.169050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169050,0.000000,0.000000,0.250000,0,0);}
.m1_c00271{transform:matrix(0.170046,-0.001700,0.002500,0.249988,0,0);-ms-transform:matrix(0.170046,-0.001700,0.002500,0.249988,0,0);-webkit-transform:matrix(0.170046,-0.001700,0.002500,0.249988,0,0);}
.ma3_c00271{transform:matrix(0.173400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173400,0.000000,0.000000,0.250000,0,0);}
.mbc_c00271{transform:matrix(0.174414,0.001395,-0.002000,0.249992,0,0);-ms-transform:matrix(0.174414,0.001395,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.174414,0.001395,-0.002000,0.249992,0,0);}
.m11e_c00271{transform:matrix(0.175730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175730,0.000000,0.000000,0.250000,0,0);}
.mad_c00271{transform:matrix(0.178885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178885,0.000000,0.000000,0.250000,0,0);}
.m31_c00271{transform:matrix(0.179041,-0.001790,0.002500,0.249988,0,0);-ms-transform:matrix(0.179041,-0.001790,0.002500,0.249988,0,0);-webkit-transform:matrix(0.179041,-0.001790,0.002500,0.249988,0,0);}
.m14_c00271{transform:matrix(0.179096,-0.001791,0.002500,0.249988,0,0);-ms-transform:matrix(0.179096,-0.001791,0.002500,0.249988,0,0);-webkit-transform:matrix(0.179096,-0.001791,0.002500,0.249988,0,0);}
.m32_c00271{transform:matrix(0.179506,-0.001795,0.002500,0.249988,0,0);-ms-transform:matrix(0.179506,-0.001795,0.002500,0.249988,0,0);-webkit-transform:matrix(0.179506,-0.001795,0.002500,0.249988,0,0);}
.m0_c00271{transform:matrix(0.179866,-0.001799,0.002500,0.249988,0,0);-ms-transform:matrix(0.179866,-0.001799,0.002500,0.249988,0,0);-webkit-transform:matrix(0.179866,-0.001799,0.002500,0.249988,0,0);}
.me0_c00271{transform:matrix(0.181140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181140,0.000000,0.000000,0.250000,0,0);}
.m87_c00271{transform:matrix(0.182700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182700,0.000000,0.000000,0.250000,0,0);}
.mc3_c00271{transform:matrix(0.185540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185540,0.000000,0.000000,0.250000,0,0);}
.m100_c00271{transform:matrix(0.185690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185690,0.000000,0.000000,0.250000,0,0);}
.m4_c00271{transform:matrix(0.187466,-0.001875,0.002500,0.249988,0,0);-ms-transform:matrix(0.187466,-0.001875,0.002500,0.249988,0,0);-webkit-transform:matrix(0.187466,-0.001875,0.002500,0.249988,0,0);}
.maf_c00271{transform:matrix(0.189085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189085,0.000000,0.000000,0.250000,0,0);}
.m8_c00271{transform:matrix(0.189171,-0.001892,0.002500,0.249988,0,0);-ms-transform:matrix(0.189171,-0.001892,0.002500,0.249988,0,0);-webkit-transform:matrix(0.189171,-0.001892,0.002500,0.249988,0,0);}
.m86_c00271{transform:matrix(0.189590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189590,0.000000,0.000000,0.250000,0,0);}
.med_c00271{transform:matrix(0.190173,0.002092,-0.002750,0.249985,0,0);-ms-transform:matrix(0.190173,0.002092,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.190173,0.002092,-0.002750,0.249985,0,0);}
.ma4_c00271{transform:matrix(0.192265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192265,0.000000,0.000000,0.250000,0,0);}
.m117_c00271{transform:matrix(0.192610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192610,0.000000,0.000000,0.250000,0,0);}
.m77_c00271{transform:matrix(0.192945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192945,0.000000,0.000000,0.250000,0,0);}
.m10e_c00271{transform:matrix(0.193550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193550,0.000000,0.000000,0.250000,0,0);}
.m33_c00271{transform:matrix(0.193855,-0.001939,0.002500,0.249988,0,0);-ms-transform:matrix(0.193855,-0.001939,0.002500,0.249988,0,0);-webkit-transform:matrix(0.193855,-0.001939,0.002500,0.249988,0,0);}
.me_c00271{transform:matrix(0.195010,-0.001950,0.002500,0.249988,0,0);-ms-transform:matrix(0.195010,-0.001950,0.002500,0.249988,0,0);-webkit-transform:matrix(0.195010,-0.001950,0.002500,0.249988,0,0);}
.m2a_c00271{transform:matrix(0.196775,-0.001968,0.002500,0.249988,0,0);-ms-transform:matrix(0.196775,-0.001968,0.002500,0.249988,0,0);-webkit-transform:matrix(0.196775,-0.001968,0.002500,0.249988,0,0);}
.mc1_c00271{transform:matrix(0.196865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196865,0.000000,0.000000,0.250000,0,0);}
.m10_c00271{transform:matrix(0.197790,-0.001978,0.002500,0.249988,0,0);-ms-transform:matrix(0.197790,-0.001978,0.002500,0.249988,0,0);-webkit-transform:matrix(0.197790,-0.001978,0.002500,0.249988,0,0);}
.m5c_c00271{transform:matrix(0.197793,0.000989,-0.001250,0.249997,0,0);-ms-transform:matrix(0.197793,0.000989,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.197793,0.000989,-0.001250,0.249997,0,0);}
.m19_c00271{transform:matrix(0.198815,-0.001988,0.002500,0.249988,0,0);-ms-transform:matrix(0.198815,-0.001988,0.002500,0.249988,0,0);-webkit-transform:matrix(0.198815,-0.001988,0.002500,0.249988,0,0);}
.m53_c00271{transform:matrix(0.201657,0.001008,-0.001250,0.249997,0,0);-ms-transform:matrix(0.201657,0.001008,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.201657,0.001008,-0.001250,0.249997,0,0);}
.m89_c00271{transform:matrix(0.202855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202855,0.000000,0.000000,0.250000,0,0);}
.m44_c00271{transform:matrix(0.203515,-0.002035,0.002500,0.249988,0,0);-ms-transform:matrix(0.203515,-0.002035,0.002500,0.249988,0,0);-webkit-transform:matrix(0.203515,-0.002035,0.002500,0.249988,0,0);}
.m8c_c00271{transform:matrix(0.204725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204725,0.000000,0.000000,0.250000,0,0);}
.m65_c00271{transform:matrix(0.205487,0.001027,-0.001250,0.249997,0,0);-ms-transform:matrix(0.205487,0.001027,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.205487,0.001027,-0.001250,0.249997,0,0);}
.m15_c00271{transform:matrix(0.207160,-0.002072,0.002500,0.249988,0,0);-ms-transform:matrix(0.207160,-0.002072,0.002500,0.249988,0,0);-webkit-transform:matrix(0.207160,-0.002072,0.002500,0.249988,0,0);}
.m13_c00271{transform:matrix(0.207885,-0.002079,0.002500,0.249988,0,0);-ms-transform:matrix(0.207885,-0.002079,0.002500,0.249988,0,0);-webkit-transform:matrix(0.207885,-0.002079,0.002500,0.249988,0,0);}
.m16_c00271{transform:matrix(0.207970,-0.002080,0.002500,0.249988,0,0);-ms-transform:matrix(0.207970,-0.002080,0.002500,0.249988,0,0);-webkit-transform:matrix(0.207970,-0.002080,0.002500,0.249988,0,0);}
.mbd_c00271{transform:matrix(0.208783,0.001670,-0.002000,0.249992,0,0);-ms-transform:matrix(0.208783,0.001670,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.208783,0.001670,-0.002000,0.249992,0,0);}
.m3_c00271{transform:matrix(0.209330,-0.002093,0.002500,0.249988,0,0);-ms-transform:matrix(0.209330,-0.002093,0.002500,0.249988,0,0);-webkit-transform:matrix(0.209330,-0.002093,0.002500,0.249988,0,0);}
.md_c00271{transform:matrix(0.210494,-0.002105,0.002500,0.249988,0,0);-ms-transform:matrix(0.210494,-0.002105,0.002500,0.249988,0,0);-webkit-transform:matrix(0.210494,-0.002105,0.002500,0.249988,0,0);}
.mc_c00271{transform:matrix(0.210824,-0.002108,0.002500,0.249988,0,0);-ms-transform:matrix(0.210824,-0.002108,0.002500,0.249988,0,0);-webkit-transform:matrix(0.210824,-0.002108,0.002500,0.249988,0,0);}
.m12_c00271{transform:matrix(0.211984,-0.002120,0.002500,0.249988,0,0);-ms-transform:matrix(0.211984,-0.002120,0.002500,0.249988,0,0);-webkit-transform:matrix(0.211984,-0.002120,0.002500,0.249988,0,0);}
.m35_c00271{transform:matrix(0.213279,-0.002133,0.002500,0.249988,0,0);-ms-transform:matrix(0.213279,-0.002133,0.002500,0.249988,0,0);-webkit-transform:matrix(0.213279,-0.002133,0.002500,0.249988,0,0);}
.m12b_c00271{transform:matrix(0.214930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214930,0.000000,0.000000,0.250000,0,0);}
.m88_c00271{transform:matrix(0.215035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215035,0.000000,0.000000,0.250000,0,0);}
.m4b_c00271{transform:matrix(0.215307,0.001077,-0.001250,0.249997,0,0);-ms-transform:matrix(0.215307,0.001077,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.215307,0.001077,-0.001250,0.249997,0,0);}
.m40_c00271{transform:matrix(0.215344,-0.002153,0.002500,0.249988,0,0);-ms-transform:matrix(0.215344,-0.002153,0.002500,0.249988,0,0);-webkit-transform:matrix(0.215344,-0.002153,0.002500,0.249988,0,0);}
.m1e_c00271{transform:matrix(0.215639,-0.002156,0.002500,0.249988,0,0);-ms-transform:matrix(0.215639,-0.002156,0.002500,0.249988,0,0);-webkit-transform:matrix(0.215639,-0.002156,0.002500,0.249988,0,0);}
.m24_c00271{transform:matrix(0.216429,-0.002164,0.002500,0.249988,0,0);-ms-transform:matrix(0.216429,-0.002164,0.002500,0.249988,0,0);-webkit-transform:matrix(0.216429,-0.002164,0.002500,0.249988,0,0);}
.m133_c00271{transform:matrix(0.218015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218015,0.000000,0.000000,0.250000,0,0);}
.ma1_c00271{transform:matrix(0.218215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218215,0.000000,0.000000,0.250000,0,0);}
.m111_c00271{transform:matrix(0.218813,0.008542,-0.009752,0.249810,0,0);-ms-transform:matrix(0.218813,0.008542,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.218813,0.008542,-0.009752,0.249810,0,0);}
.m2d_c00271{transform:matrix(0.220219,-0.002202,0.002500,0.249988,0,0);-ms-transform:matrix(0.220219,-0.002202,0.002500,0.249988,0,0);-webkit-transform:matrix(0.220219,-0.002202,0.002500,0.249988,0,0);}
.mf7_c00271{transform:matrix(0.220867,0.002430,-0.002750,0.249985,0,0);-ms-transform:matrix(0.220867,0.002430,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.220867,0.002430,-0.002750,0.249985,0,0);}
.m1c_c00271{transform:matrix(0.221289,-0.002213,0.002500,0.249988,0,0);-ms-transform:matrix(0.221289,-0.002213,0.002500,0.249988,0,0);-webkit-transform:matrix(0.221289,-0.002213,0.002500,0.249988,0,0);}
.m1b_c00271{transform:matrix(0.222274,-0.002223,0.002500,0.249988,0,0);-ms-transform:matrix(0.222274,-0.002223,0.002500,0.249988,0,0);-webkit-transform:matrix(0.222274,-0.002223,0.002500,0.249988,0,0);}
.ma0_c00271{transform:matrix(0.222850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222850,0.000000,0.000000,0.250000,0,0);}
.m125_c00271{transform:matrix(0.223440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223440,0.000000,0.000000,0.250000,0,0);}
.m9f_c00271{transform:matrix(0.224335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224335,0.000000,0.000000,0.250000,0,0);}
.m1d_c00271{transform:matrix(0.224349,-0.002243,0.002500,0.249988,0,0);-ms-transform:matrix(0.224349,-0.002243,0.002500,0.249988,0,0);-webkit-transform:matrix(0.224349,-0.002243,0.002500,0.249988,0,0);}
.m112_c00271{transform:matrix(0.226537,0.008844,-0.009752,0.249810,0,0);-ms-transform:matrix(0.226537,0.008844,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.226537,0.008844,-0.009752,0.249810,0,0);}
.m98_c00271{transform:matrix(0.226745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226745,0.000000,0.000000,0.250000,0,0);}
.m85_c00271{transform:matrix(0.227995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227995,0.000000,0.000000,0.250000,0,0);}
.m8d_c00271{transform:matrix(0.230030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230030,0.000000,0.000000,0.250000,0,0);}
.m109_c00271{transform:matrix(0.230710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230710,0.000000,0.000000,0.250000,0,0);}
.mf_c00271{transform:matrix(0.232448,-0.002324,0.002500,0.249988,0,0);-ms-transform:matrix(0.232448,-0.002324,0.002500,0.249988,0,0);-webkit-transform:matrix(0.232448,-0.002324,0.002500,0.249988,0,0);}
.m9a_c00271{transform:matrix(0.232870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232870,0.000000,0.000000,0.250000,0,0);}
.mb5_c00271{transform:matrix(0.233543,0.001868,-0.002000,0.249992,0,0);-ms-transform:matrix(0.233543,0.001868,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.233543,0.001868,-0.002000,0.249992,0,0);}
.m2_c00271{transform:matrix(0.233998,-0.002340,0.002500,0.249988,0,0);-ms-transform:matrix(0.233998,-0.002340,0.002500,0.249988,0,0);-webkit-transform:matrix(0.233998,-0.002340,0.002500,0.249988,0,0);}
.mb9_c00271{transform:matrix(0.234492,0.001876,-0.002000,0.249992,0,0);-ms-transform:matrix(0.234492,0.001876,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.234492,0.001876,-0.002000,0.249992,0,0);}
.m113_c00271{transform:matrix(0.237714,0.009280,-0.009752,0.249810,0,0);-ms-transform:matrix(0.237714,0.009280,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.237714,0.009280,-0.009752,0.249810,0,0);}
.m18_c00271{transform:matrix(0.238278,-0.002383,0.002500,0.249988,0,0);-ms-transform:matrix(0.238278,-0.002383,0.002500,0.249988,0,0);-webkit-transform:matrix(0.238278,-0.002383,0.002500,0.249988,0,0);}
.me9_c00271{transform:matrix(0.238316,0.002621,-0.002750,0.249985,0,0);-ms-transform:matrix(0.238316,0.002621,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.238316,0.002621,-0.002750,0.249985,0,0);}
.m5b_c00271{transform:matrix(0.239352,0.001197,-0.001250,0.249997,0,0);-ms-transform:matrix(0.239352,0.001197,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.239352,0.001197,-0.001250,0.249997,0,0);}
.m22_c00271{transform:matrix(0.239478,-0.002395,0.002500,0.249988,0,0);-ms-transform:matrix(0.239478,-0.002395,0.002500,0.249988,0,0);-webkit-transform:matrix(0.239478,-0.002395,0.002500,0.249988,0,0);}
.m1a_c00271{transform:matrix(0.239798,-0.002398,0.002500,0.249988,0,0);-ms-transform:matrix(0.239798,-0.002398,0.002500,0.249988,0,0);-webkit-transform:matrix(0.239798,-0.002398,0.002500,0.249988,0,0);}
.m63_c00271{transform:matrix(0.239832,0.001199,-0.001250,0.249997,0,0);-ms-transform:matrix(0.239832,0.001199,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.239832,0.001199,-0.001250,0.249997,0,0);}
.m6b_c00271{transform:matrix(0.239880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239880,0.000000,0.000000,0.250000,0,0);}
.m4e_c00271{transform:matrix(0.242582,0.001213,-0.001250,0.249997,0,0);-ms-transform:matrix(0.242582,0.001213,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.242582,0.001213,-0.001250,0.249997,0,0);}
.m5a_c00271{transform:matrix(0.243137,0.001216,-0.001250,0.249997,0,0);-ms-transform:matrix(0.243137,0.001216,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.243137,0.001216,-0.001250,0.249997,0,0);}
.mff_c00271{transform:matrix(0.243375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243375,0.000000,0.000000,0.250000,0,0);}
.me4_c00271{transform:matrix(0.244555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244555,0.000000,0.000000,0.250000,0,0);}
.m6f_c00271{transform:matrix(0.244870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244870,0.000000,0.000000,0.250000,0,0);}
.m8e_c00271{transform:matrix(0.244900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244900,0.000000,0.000000,0.250000,0,0);}
.m13b_c00271{transform:matrix(0.245675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245675,0.000000,0.000000,0.250000,0,0);}
.m9b_c00271{transform:matrix(0.245935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245935,0.000000,0.000000,0.250000,0,0);}
.m3e_c00271{transform:matrix(0.246068,-0.002461,0.002500,0.249988,0,0);-ms-transform:matrix(0.246068,-0.002461,0.002500,0.249988,0,0);-webkit-transform:matrix(0.246068,-0.002461,0.002500,0.249988,0,0);}
.m41_c00271{transform:matrix(0.247653,-0.002477,0.002500,0.249988,0,0);-ms-transform:matrix(0.247653,-0.002477,0.002500,0.249988,0,0);-webkit-transform:matrix(0.247653,-0.002477,0.002500,0.249988,0,0);}
.m55_c00271{transform:matrix(0.249207,0.001246,-0.001250,0.249997,0,0);-ms-transform:matrix(0.249207,0.001246,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.249207,0.001246,-0.001250,0.249997,0,0);}
.mc6_c00271{transform:matrix(0.249310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249310,0.000000,0.000000,0.250000,0,0);}
.m71_c00271{transform:matrix(0.250525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250525,0.000000,0.000000,0.250000,0,0);}
.m5e_c00271{transform:matrix(0.255452,0.001277,-0.001250,0.249997,0,0);-ms-transform:matrix(0.255452,0.001277,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.255452,0.001277,-0.001250,0.249997,0,0);}
.m84_c00271{transform:matrix(0.255600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255600,0.000000,0.000000,0.250000,0,0);}
.mb7_c00271{transform:matrix(0.255602,0.002045,-0.002000,0.249992,0,0);-ms-transform:matrix(0.255602,0.002045,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.255602,0.002045,-0.002000,0.249992,0,0);}
.m11_c00271{transform:matrix(0.256132,-0.002561,0.002500,0.249988,0,0);-ms-transform:matrix(0.256132,-0.002561,0.002500,0.249988,0,0);-webkit-transform:matrix(0.256132,-0.002561,0.002500,0.249988,0,0);}
.m12c_c00271{transform:matrix(0.258070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258070,0.000000,0.000000,0.250000,0,0);}
.m103_c00271{transform:matrix(0.258120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258120,0.000000,0.000000,0.250000,0,0);}
.m119_c00271{transform:matrix(0.259210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259210,0.000000,0.000000,0.250000,0,0);}
.mcb_c00271{transform:matrix(0.262395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262395,0.000000,0.000000,0.250000,0,0);}
.md6_c00271{transform:matrix(0.263355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263355,0.000000,0.000000,0.250000,0,0);}
.m5d_c00271{transform:matrix(0.264522,0.001323,-0.001250,0.249997,0,0);-ms-transform:matrix(0.264522,0.001323,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.264522,0.001323,-0.001250,0.249997,0,0);}
.m4c_c00271{transform:matrix(0.264937,0.001325,-0.001250,0.249997,0,0);-ms-transform:matrix(0.264937,0.001325,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.264937,0.001325,-0.001250,0.249997,0,0);}
.m8b_c00271{transform:matrix(0.265150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265150,0.000000,0.000000,0.250000,0,0);}
.m72_c00271{transform:matrix(0.265365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265365,0.000000,0.000000,0.250000,0,0);}
.m7c_c00271{transform:matrix(0.265390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265390,0.000000,0.000000,0.250000,0,0);}
.mee_c00271{transform:matrix(0.265994,0.002926,-0.002750,0.249985,0,0);-ms-transform:matrix(0.265994,0.002926,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.265994,0.002926,-0.002750,0.249985,0,0);}
.m56_c00271{transform:matrix(0.266022,0.001330,-0.001250,0.249997,0,0);-ms-transform:matrix(0.266022,0.001330,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.266022,0.001330,-0.001250,0.249997,0,0);}
.mf4_c00271{transform:matrix(0.266789,0.002935,-0.002750,0.249985,0,0);-ms-transform:matrix(0.266789,0.002935,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.266789,0.002935,-0.002750,0.249985,0,0);}
.m93_c00271{transform:matrix(0.267890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267890,0.000000,0.000000,0.250000,0,0);}
.mf2_c00271{transform:matrix(0.268184,0.002950,-0.002750,0.249985,0,0);-ms-transform:matrix(0.268184,0.002950,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.268184,0.002950,-0.002750,0.249985,0,0);}
.m38_c00271{transform:matrix(0.268592,-0.002686,0.002500,0.249988,0,0);-ms-transform:matrix(0.268592,-0.002686,0.002500,0.249988,0,0);-webkit-transform:matrix(0.268592,-0.002686,0.002500,0.249988,0,0);}
.m2e_c00271{transform:matrix(0.269607,-0.002696,0.002500,0.249988,0,0);-ms-transform:matrix(0.269607,-0.002696,0.002500,0.249988,0,0);-webkit-transform:matrix(0.269607,-0.002696,0.002500,0.249988,0,0);}
.mdc_c00271{transform:matrix(0.272510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272510,0.000000,0.000000,0.250000,0,0);}
.m83_c00271{transform:matrix(0.273065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273065,0.000000,0.000000,0.250000,0,0);}
.m67_c00271{transform:matrix(0.273625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273625,0.000000,0.000000,0.250000,0,0);}
.ma2_c00271{transform:matrix(0.274760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274760,0.000000,0.000000,0.250000,0,0);}
.m64_c00271{transform:matrix(0.276092,0.001380,-0.001250,0.249997,0,0);-ms-transform:matrix(0.276092,0.001380,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.276092,0.001380,-0.001250,0.249997,0,0);}
.m20_c00271{transform:matrix(0.277606,-0.002776,0.002500,0.249988,0,0);-ms-transform:matrix(0.277606,-0.002776,0.002500,0.249988,0,0);-webkit-transform:matrix(0.277606,-0.002776,0.002500,0.249988,0,0);}
.m140_c00271{transform:matrix(0.277855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277855,0.000000,0.000000,0.250000,0,0);}
.m28_c00271{transform:matrix(0.277881,-0.002779,0.002500,0.249988,0,0);-ms-transform:matrix(0.277881,-0.002779,0.002500,0.249988,0,0);-webkit-transform:matrix(0.277881,-0.002779,0.002500,0.249988,0,0);}
.mf6_c00271{transform:matrix(0.278928,0.003068,-0.002750,0.249985,0,0);-ms-transform:matrix(0.278928,0.003068,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.278928,0.003068,-0.002750,0.249985,0,0);}
.mbb_c00271{transform:matrix(0.279211,0.002234,-0.002000,0.249992,0,0);-ms-transform:matrix(0.279211,0.002234,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.279211,0.002234,-0.002000,0.249992,0,0);}
.m10f_c00271{transform:matrix(0.281016,0.010971,-0.009752,0.249810,0,0);-ms-transform:matrix(0.281016,0.010971,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.281016,0.010971,-0.009752,0.249810,0,0);}
.m96_c00271{transform:matrix(0.281675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281675,0.000000,0.000000,0.250000,0,0);}
.m104_c00271{transform:matrix(0.283375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283375,0.000000,0.000000,0.250000,0,0);}
.m54_c00271{transform:matrix(0.284876,0.001424,-0.001250,0.249997,0,0);-ms-transform:matrix(0.284876,0.001424,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.284876,0.001424,-0.001250,0.249997,0,0);}
.m4d_c00271{transform:matrix(0.285246,0.001426,-0.001250,0.249997,0,0);-ms-transform:matrix(0.285246,0.001426,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.285246,0.001426,-0.001250,0.249997,0,0);}
.mfb_c00271{transform:matrix(0.286205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286205,0.000000,0.000000,0.250000,0,0);}
.m45_c00271{transform:matrix(0.290540,-0.002905,0.002500,0.249988,0,0);-ms-transform:matrix(0.290540,-0.002905,0.002500,0.249988,0,0);-webkit-transform:matrix(0.290540,-0.002905,0.002500,0.249988,0,0);}
.m95_c00271{transform:matrix(0.291690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291690,0.000000,0.000000,0.250000,0,0);}
.maa_c00271{transform:matrix(0.291730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291730,0.000000,0.000000,0.250000,0,0);}
.m7f_c00271{transform:matrix(0.291865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291865,0.000000,0.000000,0.250000,0,0);}
.m9c_c00271{transform:matrix(0.294600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294600,0.000000,0.000000,0.250000,0,0);}
.m62_c00271{transform:matrix(0.296861,0.001484,-0.001250,0.249997,0,0);-ms-transform:matrix(0.296861,0.001484,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.296861,0.001484,-0.001250,0.249997,0,0);}
.m75_c00271{transform:matrix(0.298840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298840,0.000000,0.000000,0.250000,0,0);}
.m7a_c00271{transform:matrix(0.299385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299385,0.000000,0.000000,0.250000,0,0);}
.m5_c00271{transform:matrix(0.300045,-0.003000,0.002500,0.249988,0,0);-ms-transform:matrix(0.300045,-0.003000,0.002500,0.249988,0,0);-webkit-transform:matrix(0.300045,-0.003000,0.002500,0.249988,0,0);}
.mfd_c00271{transform:matrix(0.300290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300290,0.000000,0.000000,0.250000,0,0);}
.m92_c00271{transform:matrix(0.301080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301080,0.000000,0.000000,0.250000,0,0);}
.m6a_c00271{transform:matrix(0.303595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303595,0.000000,0.000000,0.250000,0,0);}
.m46_c00271{transform:matrix(0.306020,-0.003060,0.002500,0.249988,0,0);-ms-transform:matrix(0.306020,-0.003060,0.002500,0.249988,0,0);-webkit-transform:matrix(0.306020,-0.003060,0.002500,0.249988,0,0);}
.m97_c00271{transform:matrix(0.306325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306325,0.000000,0.000000,0.250000,0,0);}
.m3c_c00271{transform:matrix(0.306635,-0.003066,0.002500,0.249988,0,0);-ms-transform:matrix(0.306635,-0.003066,0.002500,0.249988,0,0);-webkit-transform:matrix(0.306635,-0.003066,0.002500,0.249988,0,0);}
.m134_c00271{transform:matrix(0.308320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308320,0.000000,0.000000,0.250000,0,0);}
.m8f_c00271{transform:matrix(0.308725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308725,0.000000,0.000000,0.250000,0,0);}
.m36_c00271{transform:matrix(0.308930,-0.003089,0.002500,0.249988,0,0);-ms-transform:matrix(0.308930,-0.003089,0.002500,0.249988,0,0);-webkit-transform:matrix(0.308930,-0.003089,0.002500,0.249988,0,0);}
.m90_c00271{transform:matrix(0.310420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310420,0.000000,0.000000,0.250000,0,0);}
.m91_c00271{transform:matrix(0.311160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311160,0.000000,0.000000,0.250000,0,0);}
.m6d_c00271{transform:matrix(0.312040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312040,0.000000,0.000000,0.250000,0,0);}
.m25_c00271{transform:matrix(0.312229,-0.003122,0.002500,0.249988,0,0);-ms-transform:matrix(0.312229,-0.003122,0.002500,0.249988,0,0);-webkit-transform:matrix(0.312229,-0.003122,0.002500,0.249988,0,0);}
.ma8_c00271{transform:matrix(0.312735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312735,0.000000,0.000000,0.250000,0,0);}
.mb0_c00271{transform:matrix(0.312940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312940,0.000000,0.000000,0.250000,0,0);}
.m59_c00271{transform:matrix(0.314766,0.001574,-0.001250,0.249997,0,0);-ms-transform:matrix(0.314766,0.001574,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.314766,0.001574,-0.001250,0.249997,0,0);}
.m42_c00271{transform:matrix(0.316144,-0.003161,0.002500,0.249988,0,0);-ms-transform:matrix(0.316144,-0.003161,0.002500,0.249988,0,0);-webkit-transform:matrix(0.316144,-0.003161,0.002500,0.249988,0,0);}
.m4f_c00271{transform:matrix(0.316581,0.001583,-0.001250,0.249997,0,0);-ms-transform:matrix(0.316581,0.001583,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.316581,0.001583,-0.001250,0.249997,0,0);}
.m78_c00271{transform:matrix(0.316875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316875,0.000000,0.000000,0.250000,0,0);}
.m114_c00271{transform:matrix(0.317035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317035,0.000000,0.000000,0.250000,0,0);}
.m82_c00271{transform:matrix(0.318005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318005,0.000000,0.000000,0.250000,0,0);}
.mca_c00271{transform:matrix(0.320400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320400,0.000000,0.000000,0.250000,0,0);}
.m5f_c00271{transform:matrix(0.322181,0.001611,-0.001250,0.249997,0,0);-ms-transform:matrix(0.322181,0.001611,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.322181,0.001611,-0.001250,0.249997,0,0);}
.mae_c00271{transform:matrix(0.323030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323030,0.000000,0.000000,0.250000,0,0);}
.m9_c00271{transform:matrix(0.323374,-0.003234,0.002500,0.249988,0,0);-ms-transform:matrix(0.323374,-0.003234,0.002500,0.249988,0,0);-webkit-transform:matrix(0.323374,-0.003234,0.002500,0.249988,0,0);}
.m102_c00271{transform:matrix(0.324585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324585,0.000000,0.000000,0.250000,0,0);}
.m6c_c00271{transform:matrix(0.324680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324680,0.000000,0.000000,0.250000,0,0);}
.m130_c00271{transform:matrix(0.326745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326745,0.000000,0.000000,0.250000,0,0);}
.m9e_c00271{transform:matrix(0.327700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327700,0.000000,0.000000,0.250000,0,0);}
.mdd_c00271{transform:matrix(0.330205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330205,0.000000,0.000000,0.250000,0,0);}
.m3b_c00271{transform:matrix(0.333113,-0.003331,0.002500,0.249988,0,0);-ms-transform:matrix(0.333113,-0.003331,0.002500,0.249988,0,0);-webkit-transform:matrix(0.333113,-0.003331,0.002500,0.249988,0,0);}
.m7e_c00271{transform:matrix(0.333260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333260,0.000000,0.000000,0.250000,0,0);}
.m76_c00271{transform:matrix(0.334650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334650,0.000000,0.000000,0.250000,0,0);}
.mc7_c00271{transform:matrix(0.337350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337350,0.000000,0.000000,0.250000,0,0);}
.m1f_c00271{transform:matrix(0.337428,-0.003374,0.002500,0.249988,0,0);-ms-transform:matrix(0.337428,-0.003374,0.002500,0.249988,0,0);-webkit-transform:matrix(0.337428,-0.003374,0.002500,0.249988,0,0);}
.mce_c00271{transform:matrix(0.339165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339165,0.000000,0.000000,0.250000,0,0);}
.mdf_c00271{transform:matrix(0.342445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342445,0.000000,0.000000,0.250000,0,0);}
.m70_c00271{transform:matrix(0.344385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344385,0.000000,0.000000,0.250000,0,0);}
.m3a_c00271{transform:matrix(0.344448,-0.003444,0.002500,0.249988,0,0);-ms-transform:matrix(0.344448,-0.003444,0.002500,0.249988,0,0);-webkit-transform:matrix(0.344448,-0.003444,0.002500,0.249988,0,0);}
.mbe_c00271{transform:matrix(0.345089,0.002761,-0.002000,0.249992,0,0);-ms-transform:matrix(0.345089,0.002761,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.345089,0.002761,-0.002000,0.249992,0,0);}
.mc9_c00271{transform:matrix(0.348970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348970,0.000000,0.000000,0.250000,0,0);}
.m118_c00271{transform:matrix(0.350190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350190,0.000000,0.000000,0.250000,0,0);}
.me8_c00271{transform:matrix(0.351179,0.003863,-0.002750,0.249985,0,0);-ms-transform:matrix(0.351179,0.003863,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.351179,0.003863,-0.002750,0.249985,0,0);}
.meb_c00271{transform:matrix(0.351464,0.003866,-0.002750,0.249985,0,0);-ms-transform:matrix(0.351464,0.003866,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.351464,0.003866,-0.002750,0.249985,0,0);}
.ma_c00271{transform:matrix(0.352442,-0.003524,0.002500,0.249988,0,0);-ms-transform:matrix(0.352442,-0.003524,0.002500,0.249988,0,0);-webkit-transform:matrix(0.352442,-0.003524,0.002500,0.249988,0,0);}
.m108_c00271{transform:matrix(0.354155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354155,0.000000,0.000000,0.250000,0,0);}
.m13a_c00271{transform:matrix(0.355105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355105,0.000000,0.000000,0.250000,0,0);}
.mf5_c00271{transform:matrix(0.356088,0.003917,-0.002750,0.249985,0,0);-ms-transform:matrix(0.356088,0.003917,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.356088,0.003917,-0.002750,0.249985,0,0);}
.mb2_c00271{transform:matrix(0.356390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356390,0.000000,0.000000,0.250000,0,0);}
.m136_c00271{transform:matrix(0.357770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357770,0.000000,0.000000,0.250000,0,0);}
.md8_c00271{transform:matrix(0.360175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360175,0.000000,0.000000,0.250000,0,0);}
.m106_c00271{transform:matrix(0.361775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361775,0.000000,0.000000,0.250000,0,0);}
.m99_c00271{transform:matrix(0.363620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363620,0.000000,0.000000,0.250000,0,0);}
.m50_c00271{transform:matrix(0.364735,0.001824,-0.001250,0.249997,0,0);-ms-transform:matrix(0.364735,0.001824,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.364735,0.001824,-0.001250,0.249997,0,0);}
.m47_c00271{transform:matrix(0.364757,-0.003648,0.002500,0.249988,0,0);-ms-transform:matrix(0.364757,-0.003648,0.002500,0.249988,0,0);-webkit-transform:matrix(0.364757,-0.003648,0.002500,0.249988,0,0);}
.m13f_c00271{transform:matrix(0.366275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366275,0.000000,0.000000,0.250000,0,0);}
.mb3_c00271{transform:matrix(0.370223,0.002962,-0.002000,0.249992,0,0);-ms-transform:matrix(0.370223,0.002962,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.370223,0.002962,-0.002000,0.249992,0,0);}
.mc8_c00271{transform:matrix(0.370475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370475,0.000000,0.000000,0.250000,0,0);}
.m105_c00271{transform:matrix(0.371650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371650,0.000000,0.000000,0.250000,0,0);}
.m23_c00271{transform:matrix(0.372346,-0.003723,0.002500,0.249988,0,0);-ms-transform:matrix(0.372346,-0.003723,0.002500,0.249988,0,0);-webkit-transform:matrix(0.372346,-0.003723,0.002500,0.249988,0,0);}
.m142_c00271{transform:matrix(0.372590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372590,0.000000,0.000000,0.250000,0,0);}
.ma9_c00271{transform:matrix(0.373250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373250,0.000000,0.000000,0.250000,0,0);}
.m79_c00271{transform:matrix(0.373915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373915,0.000000,0.000000,0.250000,0,0);}
.m29_c00271{transform:matrix(0.377316,-0.003773,0.002500,0.249988,0,0);-ms-transform:matrix(0.377316,-0.003773,0.002500,0.249988,0,0);-webkit-transform:matrix(0.377316,-0.003773,0.002500,0.249988,0,0);}
.me3_c00271{transform:matrix(0.381445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381445,0.000000,0.000000,0.250000,0,0);}
.m68_c00271{transform:matrix(0.384240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384240,0.000000,0.000000,0.250000,0,0);}
.m66_c00271{transform:matrix(0.389445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389445,0.000000,0.000000,0.250000,0,0);}
.mfe_c00271{transform:matrix(0.389775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389775,0.000000,0.000000,0.250000,0,0);}
.m4a_c00271{transform:matrix(0.390875,0.001954,-0.001250,0.249997,0,0);-ms-transform:matrix(0.390875,0.001954,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.390875,0.001954,-0.001250,0.249997,0,0);}
.m116_c00271{transform:matrix(0.394450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394450,0.000000,0.000000,0.250000,0,0);}
.mf1_c00271{transform:matrix(0.395611,0.004352,-0.002750,0.249985,0,0);-ms-transform:matrix(0.395611,0.004352,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.395611,0.004352,-0.002750,0.249985,0,0);}
.m52_c00271{transform:matrix(0.397160,0.001986,-0.001250,0.249997,0,0);-ms-transform:matrix(0.397160,0.001986,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.397160,0.001986,-0.001250,0.249997,0,0);}
.mde_c00271{transform:matrix(0.397720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397720,0.000000,0.000000,0.250000,0,0);}
.m8a_c00271{transform:matrix(0.399105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399105,0.000000,0.000000,0.250000,0,0);}
.m12d_c00271{transform:matrix(0.399265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399265,0.000000,0.000000,0.250000,0,0);}
.m80_c00271{transform:matrix(0.399870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399870,0.000000,0.000000,0.250000,0,0);}
.mac_c00271{transform:matrix(0.401620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401620,0.000000,0.000000,0.250000,0,0);}
.m107_c00271{transform:matrix(0.407225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407225,0.000000,0.000000,0.250000,0,0);}
.mba_c00271{transform:matrix(0.408032,0.003264,-0.002000,0.249992,0,0);-ms-transform:matrix(0.408032,0.003264,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.408032,0.003264,-0.002000,0.249992,0,0);}
.m58_c00271{transform:matrix(0.409445,0.002047,-0.001250,0.249997,0,0);-ms-transform:matrix(0.409445,0.002047,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.409445,0.002047,-0.001250,0.249997,0,0);}
.md4_c00271{transform:matrix(0.409830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409830,0.000000,0.000000,0.250000,0,0);}
.m81_c00271{transform:matrix(0.411655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411655,0.000000,0.000000,0.250000,0,0);}
.m10a_c00271{transform:matrix(0.419265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419265,0.000000,0.000000,0.250000,0,0);}
.mf3_c00271{transform:matrix(0.422664,0.004649,-0.002750,0.249985,0,0);-ms-transform:matrix(0.422664,0.004649,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.422664,0.004649,-0.002750,0.249985,0,0);}
.m2b_c00271{transform:matrix(0.423009,-0.004230,0.002500,0.249988,0,0);-ms-transform:matrix(0.423009,-0.004230,0.002500,0.249988,0,0);-webkit-transform:matrix(0.423009,-0.004230,0.002500,0.249988,0,0);}
.mb8_c00271{transform:matrix(0.428281,0.003426,-0.002000,0.249992,0,0);-ms-transform:matrix(0.428281,0.003426,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.428281,0.003426,-0.002000,0.249992,0,0);}
.m37_c00271{transform:matrix(0.429524,-0.004295,0.002500,0.249988,0,0);-ms-transform:matrix(0.429524,-0.004295,0.002500,0.249988,0,0);-webkit-transform:matrix(0.429524,-0.004295,0.002500,0.249988,0,0);}
.m17_c00271{transform:matrix(0.433488,-0.004335,0.002500,0.249988,0,0);-ms-transform:matrix(0.433488,-0.004335,0.002500,0.249988,0,0);-webkit-transform:matrix(0.433488,-0.004335,0.002500,0.249988,0,0);}
.m61_c00271{transform:matrix(0.436105,0.002181,-0.001250,0.249997,0,0);-ms-transform:matrix(0.436105,0.002181,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.436105,0.002181,-0.001250,0.249997,0,0);}
.m94_c00271{transform:matrix(0.436355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436355,0.000000,0.000000,0.250000,0,0);}
.m3f_c00271{transform:matrix(0.436513,-0.004365,0.002500,0.249988,0,0);-ms-transform:matrix(0.436513,-0.004365,0.002500,0.249988,0,0);-webkit-transform:matrix(0.436513,-0.004365,0.002500,0.249988,0,0);}
.m123_c00271{transform:matrix(0.436935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436935,0.000000,0.000000,0.250000,0,0);}
.m127_c00271{transform:matrix(0.442635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442635,0.000000,0.000000,0.250000,0,0);}
.m21_c00271{transform:matrix(0.445908,-0.004459,0.002500,0.249988,0,0);-ms-transform:matrix(0.445908,-0.004459,0.002500,0.249988,0,0);-webkit-transform:matrix(0.445908,-0.004459,0.002500,0.249988,0,0);}
.md2_c00271{transform:matrix(0.445980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445980,0.000000,0.000000,0.250000,0,0);}
.mb6_c00271{transform:matrix(0.450861,0.003607,-0.002000,0.249992,0,0);-ms-transform:matrix(0.450861,0.003607,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.450861,0.003607,-0.002000,0.249992,0,0);}
.mc0_c00271{transform:matrix(0.451560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451560,0.000000,0.000000,0.250000,0,0);}
.mb4_c00271{transform:matrix(0.452016,0.003616,-0.002000,0.249992,0,0);-ms-transform:matrix(0.452016,0.003616,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.452016,0.003616,-0.002000,0.249992,0,0);}
.m7b_c00271{transform:matrix(0.455025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455025,0.000000,0.000000,0.250000,0,0);}
.m10b_c00271{transform:matrix(0.457945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457945,0.000000,0.000000,0.250000,0,0);}
.m11a_c00271{transform:matrix(0.462090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462090,0.000000,0.000000,0.250000,0,0);}
.mdb_c00271{transform:matrix(0.462835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462835,0.000000,0.000000,0.250000,0,0);}
.md0_c00271{transform:matrix(0.468330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468330,0.000000,0.000000,0.250000,0,0);}
.m13c_c00271{transform:matrix(0.471130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471130,0.000000,0.000000,0.250000,0,0);}
.mcd_c00271{transform:matrix(0.476295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.476295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.476295,0.000000,0.000000,0.250000,0,0);}
.m74_c00271{transform:matrix(0.495025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495025,0.000000,0.000000,0.250000,0,0);}
.m69_c00271{transform:matrix(0.495395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495395,0.000000,0.000000,0.250000,0,0);}
.m43_c00271{transform:matrix(0.502360,-0.005024,0.002500,0.249988,0,0);-ms-transform:matrix(0.502360,-0.005024,0.002500,0.249988,0,0);-webkit-transform:matrix(0.502360,-0.005024,0.002500,0.249988,0,0);}
.m131_c00271{transform:matrix(0.512340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512340,0.000000,0.000000,0.250000,0,0);}
.mda_c00271{transform:matrix(0.514755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514755,0.000000,0.000000,0.250000,0,0);}
.m7d_c00271{transform:matrix(0.518680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518680,0.000000,0.000000,0.250000,0,0);}
.m27_c00271{transform:matrix(0.530728,-0.005307,0.002500,0.249988,0,0);-ms-transform:matrix(0.530728,-0.005307,0.002500,0.249988,0,0);-webkit-transform:matrix(0.530728,-0.005307,0.002500,0.249988,0,0);}
.mfa_c00271{transform:matrix(0.544225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544225,0.000000,0.000000,0.250000,0,0);}
.mec_c00271{transform:matrix(0.546312,0.006009,-0.002750,0.249985,0,0);-ms-transform:matrix(0.546312,0.006009,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.546312,0.006009,-0.002750,0.249985,0,0);}
.m139_c00271{transform:matrix(0.547450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547450,0.000000,0.000000,0.250000,0,0);}
.mf8_c00271{transform:matrix(0.548320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548320,0.000000,0.000000,0.250000,0,0);}
.mb1_c00271{transform:matrix(0.563500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.563500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.563500,0.000000,0.000000,0.250000,0,0);}
.mcf_c00271{transform:matrix(0.572975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572975,0.000000,0.000000,0.250000,0,0);}
.m110_c00271{transform:matrix(0.577360,0.022540,-0.009752,0.249810,0,0);-ms-transform:matrix(0.577360,0.022540,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.577360,0.022540,-0.009752,0.249810,0,0);}
.mf9_c00271{transform:matrix(0.584520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.584520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.584520,0.000000,0.000000,0.250000,0,0);}
.me5_c00271{transform:matrix(0.588465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.588465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.588465,0.000000,0.000000,0.250000,0,0);}
.me1_c00271{transform:matrix(0.594125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.594125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.594125,0.000000,0.000000,0.250000,0,0);}
.ma6_c00271{transform:matrix(0.602555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602555,0.000000,0.000000,0.250000,0,0);}
.m49_c00271{transform:matrix(0.615437,0.003077,-0.001250,0.249997,0,0);-ms-transform:matrix(0.615437,0.003077,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.615437,0.003077,-0.001250,0.249997,0,0);}
.me2_c00271{transform:matrix(0.623280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.623280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.623280,0.000000,0.000000,0.250000,0,0);}
.mea_c00271{transform:matrix(0.630462,0.006935,-0.002750,0.249985,0,0);-ms-transform:matrix(0.630462,0.006935,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.630462,0.006935,-0.002750,0.249985,0,0);}
.m137_c00271{transform:matrix(0.636395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636395,0.000000,0.000000,0.250000,0,0);}
.m26_c00271{transform:matrix(0.647948,-0.006479,0.002500,0.249988,0,0);-ms-transform:matrix(0.647948,-0.006479,0.002500,0.249988,0,0);-webkit-transform:matrix(0.647948,-0.006479,0.002500,0.249988,0,0);}
.m138_c00271{transform:matrix(0.651250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.651250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.651250,0.000000,0.000000,0.250000,0,0);}
.mc5_c00271{transform:matrix(0.681065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.681065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.681065,0.000000,0.000000,0.250000,0,0);}
.m11c_c00271{transform:matrix(0.684310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.684310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.684310,0.000000,0.000000,0.250000,0,0);}
.md9_c00271{transform:matrix(0.696180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.696180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.696180,0.000000,0.000000,0.250000,0,0);}
.m10c_c00271{transform:matrix(0.702160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.702160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.702160,0.000000,0.000000,0.250000,0,0);}
.m120_c00271{transform:matrix(0.706515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.706515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.706515,0.000000,0.000000,0.250000,0,0);}
.m115_c00271{transform:matrix(0.717350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717350,0.000000,0.000000,0.250000,0,0);}
.m39_c00271{transform:matrix(0.723314,-0.007233,0.002500,0.249988,0,0);-ms-transform:matrix(0.723314,-0.007233,0.002500,0.249988,0,0);-webkit-transform:matrix(0.723314,-0.007233,0.002500,0.249988,0,0);}
.mcc_c00271{transform:matrix(0.724295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.724295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.724295,0.000000,0.000000,0.250000,0,0);}
.md7_c00271{transform:matrix(0.744730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.744730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.744730,0.000000,0.000000,0.250000,0,0);}
.m3d_c00271{transform:matrix(0.767452,-0.007675,0.002500,0.249988,0,0);-ms-transform:matrix(0.767452,-0.007675,0.002500,0.249988,0,0);-webkit-transform:matrix(0.767452,-0.007675,0.002500,0.249988,0,0);}
.m101_c00271{transform:matrix(0.774830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.774830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.774830,0.000000,0.000000,0.250000,0,0);}
.mc2_c00271{transform:matrix(0.793025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.793025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.793025,0.000000,0.000000,0.250000,0,0);}
.m124_c00271{transform:matrix(0.793550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.793550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.793550,0.000000,0.000000,0.250000,0,0);}
.m126_c00271{transform:matrix(0.876860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.876860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.876860,0.000000,0.000000,0.250000,0,0);}
.m2c_c00271{transform:matrix(0.886611,-0.008866,0.002500,0.249988,0,0);-ms-transform:matrix(0.886611,-0.008866,0.002500,0.249988,0,0);-webkit-transform:matrix(0.886611,-0.008866,0.002500,0.249988,0,0);}
.m73_c00271{transform:matrix(0.900000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.900000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.900000,0.000000,0.000000,0.250000,0,0);}
.me7_c00271{transform:matrix(0.912415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.912415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.912415,0.000000,0.000000,0.250000,0,0);}
.m11b_c00271{transform:matrix(0.949275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.949275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.949275,0.000000,0.000000,0.250000,0,0);}
.me6_c00271{transform:matrix(0.973990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.973990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.973990,0.000000,0.000000,0.250000,0,0);}
.mf0_c00271{transform:matrix(1.040987,0.011451,-0.002750,0.249985,0,0);-ms-transform:matrix(1.040987,0.011451,-0.002750,0.249985,0,0);-webkit-transform:matrix(1.040987,0.011451,-0.002750,0.249985,0,0);}
.m12f_c00271{transform:matrix(1.080295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.080295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.080295,0.000000,0.000000,0.250000,0,0);}
.m121_c00271{transform:matrix(1.103420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.103420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.103420,0.000000,0.000000,0.250000,0,0);}
.m13d_c00271{transform:matrix(2.269325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.269325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.269325,0.000000,0.000000,0.250000,0,0);}
.v0_c00271{vertical-align:0.000000px;}
.ls0_c00271{letter-spacing:0.000000px;}
.sc__c00271{text-shadow:none;}
.sc0_c00271{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__c00271{-webkit-text-stroke:0px transparent;}
.sc0_c00271{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00271{word-spacing:0.000000px;}
.fc0_c00271{color:transparent;}
.fs13_c00271{font-size:12.000000px;}
.fsc_c00271{font-size:18.000000px;}
.fsd_c00271{font-size:24.000000px;}
.fs12_c00271{font-size:30.000000px;}
.fs14_c00271{font-size:36.000000px;}
.fsf_c00271{font-size:48.000000px;}
.fse_c00271{font-size:66.002112px;}
.fs5_c00271{font-size:66.003300px;}
.fs9_c00271{font-size:72.000000px;}
.fs3_c00271{font-size:72.003600px;}
.fs8_c00271{font-size:78.000000px;}
.fs7_c00271{font-size:78.000975px;}
.fsb_c00271{font-size:84.000000px;}
.fs2_c00271{font-size:84.004200px;}
.fs10_c00271{font-size:84.005082px;}
.fsa_c00271{font-size:90.000000px;}
.fs1_c00271{font-size:90.004500px;}
.fs0_c00271{font-size:96.004800px;}
.fs11_c00271{font-size:101.975619px;}
.fs6_c00271{font-size:108.005400px;}
.fs4_c00271{font-size:120.006000px;}
.y0_c00271{bottom:0.000000px;}
.yc2_c00271{bottom:153.360000px;}
.yc1_c00271{bottom:171.720000px;}
.yc0_c00271{bottom:182.520000px;}
.ybf_c00271{bottom:189.540000px;}
.ybe_c00271{bottom:285.120000px;}
.ybd_c00271{bottom:345.330000px;}
.ybb_c00271{bottom:418.770000px;}
.yba_c00271{bottom:423.090000px;}
.yb9_c00271{bottom:426.586500px;}
.yb8_c00271{bottom:429.139500px;}
.yb7_c00271{bottom:438.072000px;}
.yb6_c00271{bottom:450.346500px;}
.yb5_c00271{bottom:454.680000px;}
.yb4_c00271{bottom:459.036000px;}
.ybc_c00271{bottom:463.320000px;}
.yb2_c00271{bottom:466.162500px;}
.yb3_c00271{bottom:466.425000px;}
.yb0_c00271{bottom:468.734692px;}
.yb1_c00271{bottom:470.610000px;}
.yaf_c00271{bottom:470.842915px;}
.yae_c00271{bottom:472.750659px;}
.yad_c00271{bottom:475.507003px;}
.yac_c00271{bottom:476.842500px;}
.yab_c00271{bottom:487.083000px;}
.yaa_c00271{bottom:490.186500px;}
.ya8_c00271{bottom:490.452000px;}
.ya7_c00271{bottom:502.243863px;}
.ya6_c00271{bottom:502.728666px;}
.ya5_c00271{bottom:503.135341px;}
.ya4_c00271{bottom:503.759206px;}
.ya3_c00271{bottom:503.922573px;}
.ya2_c00271{bottom:504.162862px;}
.ya1_c00271{bottom:504.502135px;}
.y9f_c00271{bottom:505.757257px;}
.ya0_c00271{bottom:505.844724px;}
.y9e_c00271{bottom:506.060824px;}
.y9d_c00271{bottom:506.306278px;}
.y9c_c00271{bottom:507.245887px;}
.y9b_c00271{bottom:507.399997px;}
.y9a_c00271{bottom:508.413394px;}
.y99_c00271{bottom:508.930042px;}
.y98_c00271{bottom:509.289000px;}
.ya9_c00271{bottom:538.333500px;}
.y96_c00271{bottom:568.455000px;}
.y95_c00271{bottom:568.680000px;}
.y94_c00271{bottom:568.842000px;}
.y93_c00271{bottom:568.992000px;}
.y97_c00271{bottom:569.157000px;}
.y92_c00271{bottom:569.170500px;}
.y91_c00271{bottom:569.413500px;}
.y90_c00271{bottom:569.715000px;}
.y8f_c00271{bottom:569.775000px;}
.y8e_c00271{bottom:569.995500px;}
.y8d_c00271{bottom:570.438000px;}
.y8c_c00271{bottom:570.690000px;}
.y8b_c00271{bottom:570.883500px;}
.y8a_c00271{bottom:571.081500px;}
.y89_c00271{bottom:571.375500px;}
.y88_c00271{bottom:571.621500px;}
.y87_c00271{bottom:576.327000px;}
.y7a_c00271{bottom:601.444500px;}
.y86_c00271{bottom:602.362392px;}
.y85_c00271{bottom:602.563284px;}
.y84_c00271{bottom:602.815992px;}
.y83_c00271{bottom:603.518016px;}
.y82_c00271{bottom:603.975936px;}
.y81_c00271{bottom:604.241664px;}
.y80_c00271{bottom:604.754292px;}
.y7f_c00271{bottom:605.015076px;}
.y7e_c00271{bottom:605.464272px;}
.y7d_c00271{bottom:605.822592px;}
.y7c_c00271{bottom:606.510216px;}
.y7b_c00271{bottom:607.309500px;}
.y79_c00271{bottom:629.640000px;}
.y77_c00271{bottom:632.070000px;}
.y76_c00271{bottom:666.294000px;}
.y68_c00271{bottom:697.410000px;}
.y69_c00271{bottom:697.822500px;}
.y6a_c00271{bottom:698.136000px;}
.y6b_c00271{bottom:698.538000px;}
.y6c_c00271{bottom:698.911500px;}
.y6d_c00271{bottom:699.106500px;}
.y6e_c00271{bottom:699.324000px;}
.y6f_c00271{bottom:699.514500px;}
.y70_c00271{bottom:699.702000px;}
.y71_c00271{bottom:699.906000px;}
.y72_c00271{bottom:700.173000px;}
.y73_c00271{bottom:700.498500px;}
.y74_c00271{bottom:700.758000px;}
.y75_c00271{bottom:700.888500px;}
.y78_c00271{bottom:724.680000px;}
.y67_c00271{bottom:729.397500px;}
.y66_c00271{bottom:762.729000px;}
.y63_c00271{bottom:792.916470px;}
.y64_c00271{bottom:792.916620px;}
.y5f_c00271{bottom:792.916755px;}
.y61_c00271{bottom:792.916763px;}
.y65_c00271{bottom:792.917078px;}
.y5e_c00271{bottom:792.917205px;}
.y62_c00271{bottom:792.917220px;}
.y60_c00271{bottom:792.917363px;}
.y5d_c00271{bottom:792.917798px;}
.y5b_c00271{bottom:792.918548px;}
.y5c_c00271{bottom:792.918698px;}
.y5a_c00271{bottom:792.919298px;}
.y59_c00271{bottom:792.919898px;}
.y58_c00271{bottom:816.816008px;}
.y57_c00271{bottom:817.134900px;}
.y56_c00271{bottom:817.611697px;}
.y55_c00271{bottom:817.733152px;}
.y54_c00271{bottom:817.898993px;}
.y53_c00271{bottom:818.238143px;}
.y52_c00271{bottom:818.344485px;}
.y51_c00271{bottom:818.678235px;}
.y50_c00271{bottom:818.895600px;}
.y4f_c00271{bottom:819.116850px;}
.y4e_c00271{bottom:819.552907px;}
.y4d_c00271{bottom:819.940462px;}
.y4c_c00271{bottom:820.044135px;}
.y4b_c00271{bottom:820.385948px;}
.y4a_c00271{bottom:820.705830px;}
.y49_c00271{bottom:820.800000px;}
.y3f_c00271{bottom:854.965395px;}
.y40_c00271{bottom:855.638100px;}
.y41_c00271{bottom:856.005585px;}
.y42_c00271{bottom:856.782630px;}
.y43_c00271{bottom:857.177625px;}
.y44_c00271{bottom:858.132210px;}
.y45_c00271{bottom:859.303245px;}
.y46_c00271{bottom:859.624860px;}
.y47_c00271{bottom:860.621385px;}
.y48_c00271{bottom:861.169020px;}
.y3d_c00271{bottom:888.014010px;}
.y3e_c00271{bottom:888.014280px;}
.y37_c00271{bottom:888.014490px;}
.y35_c00271{bottom:888.014565px;}
.y3c_c00271{bottom:888.014625px;}
.y38_c00271{bottom:888.014700px;}
.y36_c00271{bottom:888.015150px;}
.y3b_c00271{bottom:888.015240px;}
.y39_c00271{bottom:888.015270px;}
.y3a_c00271{bottom:888.015555px;}
.y30_c00271{bottom:914.488950px;}
.y31_c00271{bottom:914.818665px;}
.y32_c00271{bottom:915.544500px;}
.y33_c00271{bottom:915.952725px;}
.y34_c00271{bottom:917.303955px;}
.y2f_c00271{bottom:949.480830px;}
.y2e_c00271{bottom:949.698600px;}
.y2d_c00271{bottom:950.834085px;}
.y2c_c00271{bottom:951.672690px;}
.y2b_c00271{bottom:951.949290px;}
.y2a_c00271{bottom:952.029630px;}
.y29_c00271{bottom:952.470135px;}
.y28_c00271{bottom:953.286705px;}
.y27_c00271{bottom:953.594880px;}
.y26_c00271{bottom:954.605025px;}
.y25_c00271{bottom:954.839850px;}
.y24_c00271{bottom:955.527705px;}
.y19_c00271{bottom:981.691695px;}
.y1a_c00271{bottom:982.170075px;}
.y1b_c00271{bottom:982.362540px;}
.y1c_c00271{bottom:982.627125px;}
.y1d_c00271{bottom:982.918350px;}
.y1e_c00271{bottom:983.364720px;}
.y1f_c00271{bottom:983.757255px;}
.y20_c00271{bottom:984.037215px;}
.y21_c00271{bottom:984.481440px;}
.y22_c00271{bottom:984.723960px;}
.y23_c00271{bottom:985.335300px;}
.yd_c00271{bottom:1009.529430px;}
.ye_c00271{bottom:1009.712430px;}
.yf_c00271{bottom:1010.144265px;}
.y10_c00271{bottom:1010.305365px;}
.y11_c00271{bottom:1010.765535px;}
.y12_c00271{bottom:1011.078540px;}
.y13_c00271{bottom:1011.462585px;}
.y14_c00271{bottom:1011.801180px;}
.y15_c00271{bottom:1011.966660px;}
.y16_c00271{bottom:1012.177845px;}
.y17_c00271{bottom:1012.506765px;}
.y18_c00271{bottom:1012.736220px;}
.y1_c00271{bottom:1044.034500px;}
.y2_c00271{bottom:1044.585540px;}
.y3_c00271{bottom:1044.898830px;}
.y4_c00271{bottom:1045.997700px;}
.y5_c00271{bottom:1046.327655px;}
.y6_c00271{bottom:1047.324900px;}
.y7_c00271{bottom:1047.881910px;}
.y8_c00271{bottom:1048.100895px;}
.y9_c00271{bottom:1048.649190px;}
.ya_c00271{bottom:1049.003325px;}
.yb_c00271{bottom:1049.845920px;}
.yc_c00271{bottom:1050.536730px;}
.h15_c00271{height:12.000000px;}
.he_c00271{height:18.000000px;}
.hf_c00271{height:24.000000px;}
.h14_c00271{height:30.000000px;}
.h16_c00271{height:36.000000px;}
.h11_c00271{height:48.000000px;}
.h10_c00271{height:66.002112px;}
.h7_c00271{height:66.003300px;}
.hb_c00271{height:72.000000px;}
.h5_c00271{height:72.003600px;}
.ha_c00271{height:78.000000px;}
.h9_c00271{height:78.000975px;}
.hd_c00271{height:84.000000px;}
.h4_c00271{height:84.004200px;}
.h12_c00271{height:84.005082px;}
.hc_c00271{height:90.000000px;}
.h3_c00271{height:90.004500px;}
.h2_c00271{height:96.004800px;}
.h13_c00271{height:101.975619px;}
.h8_c00271{height:108.005400px;}
.h6_c00271{height:120.006000px;}
.h1_c00271{height:1165.500000px;}
.h0_c00271{height:1165.800000px;}
.w0_c00271{width:915.000000px;}
.x0_c00271{left:0.000000px;}
.x43_c00271{left:10.749000px;}
.x22_c00271{left:29.013630px;}
.x3a_c00271{left:46.439895px;}
.x60_c00271{left:48.060000px;}
.xd_c00271{left:49.498215px;}
.x1_c00271{left:52.510500px;}
.x32_c00271{left:56.427435px;}
.x19_c00271{left:59.754090px;}
.x7c_c00271{left:62.910000px;}
.x51_c00271{left:64.531447px;}
.xa0_c00271{left:66.583500px;}
.xb2_c00271{left:68.850000px;}
.xb3_c00271{left:82.890000px;}
.xe_c00271{left:85.950030px;}
.x61_c00271{left:88.290000px;}
.xb4_c00271{left:90.450000px;}
.x44_c00271{left:93.559500px;}
.x75_c00271{left:95.850000px;}
.xa8_c00271{left:97.219500px;}
.x33_c00271{left:100.440330px;}
.x5b_c00271{left:102.060000px;}
.x23_c00271{left:105.442650px;}
.x2_c00271{left:107.614500px;}
.x3b_c00271{left:113.710395px;}
.xa1_c00271{left:115.720500px;}
.x6a_c00271{left:119.745000px;}
.x24_c00271{left:131.615115px;}
.xb5_c00271{left:134.730000px;}
.x62_c00271{left:136.080000px;}
.x52_c00271{left:137.703270px;}
.x3_c00271{left:138.943500px;}
.x90_c00271{left:144.990000px;}
.x76_c00271{left:146.610000px;}
.x3c_c00271{left:150.458895px;}
.x91_c00271{left:160.110000px;}
.x45_c00271{left:161.922000px;}
.x8b_c00271{left:163.476000px;}
.xb7_c00271{left:168.750000px;}
.xb6_c00271{left:170.100000px;}
.xf_c00271{left:172.337850px;}
.xa2_c00271{left:174.594000px;}
.x77_c00271{left:180.360000px;}
.x46_c00271{left:182.656500px;}
.x6b_c00271{left:188.601000px;}
.x53_c00271{left:197.374762px;}
.x10_c00271{left:204.499455px;}
.x34_c00271{left:208.985190px;}
.x63_c00271{left:213.840000px;}
.x1a_c00271{left:215.553315px;}
.x78_c00271{left:226.530000px;}
.x3d_c00271{left:228.163395px;}
.x92_c00271{left:233.550000px;}
.xa9_c00271{left:236.314500px;}
.x7d_c00271{left:238.680000px;}
.x54_c00271{left:240.305835px;}
.x25_c00271{left:243.921945px;}
.x4_c00271{left:248.830500px;}
.xaa_c00271{left:250.324500px;}
.xa3_c00271{left:252.939000px;}
.x47_c00271{left:260.167500px;}
.x1b_c00271{left:264.177765px;}
.x3e_c00271{left:267.662895px;}
.x7e_c00271{left:273.510000px;}
.x26_c00271{left:278.210955px;}
.x5_c00271{left:281.826000px;}
.x93_c00271{left:289.980000px;}
.x7f_c00271{left:293.760000px;}
.x11_c00271{left:296.571060px;}
.xa4_c00271{left:303.423000px;}
.x64_c00271{left:304.830000px;}
.x6c_c00271{left:307.942500px;}
.x94_c00271{left:315.900000px;}
.x5c_c00271{left:321.030000px;}
.x65_c00271{left:324.000000px;}
.xb8_c00271{left:333.450000px;}
.xab_c00271{left:335.743500px;}
.x95_c00271{left:337.500000px;}
.x1c_c00271{left:338.667750px;}
.x79_c00271{left:342.360000px;}
.x48_c00271{left:347.379000px;}
.x8c_c00271{left:350.368500px;}
.x96_c00271{left:353.700000px;}
.xac_c00271{left:358.057500px;}
.x12_c00271{left:359.224695px;}
.x3f_c00271{left:363.121395px;}
.x27_c00271{left:368.921190px;}
.x6d_c00271{left:370.284000px;}
.x55_c00271{left:377.467755px;}
.x7a_c00271{left:380.430000px;}
.x6_c00271{left:381.550500px;}
.x8d_c00271{left:382.966500px;}
.xad_c00271{left:385.654500px;}
.x35_c00271{left:388.274115px;}
.x49_c00271{left:391.629000px;}
.x66_c00271{left:399.330000px;}
.x6e_c00271{left:402.697500px;}
.x1d_c00271{left:404.023860px;}
.x97_c00271{left:413.640000px;}
.x28_c00271{left:417.879990px;}
.x5d_c00271{left:425.250000px;}
.x29_c00271{left:426.797685px;}
.x67_c00271{left:433.890000px;}
.x13_c00271{left:435.883020px;}
.x7_c00271{left:437.251500px;}
.x6f_c00271{left:438.849000px;}
.xc0_c00271{left:440.899500px;}
.x7b_c00271{left:446.580000px;}
.x98_c00271{left:447.930000px;}
.x1e_c00271{left:450.771735px;}
.x56_c00271{left:454.148175px;}
.x2a_c00271{left:457.493520px;}
.x8_c00271{left:459.150000px;}
.x80_c00271{left:462.510000px;}
.x70_c00271{left:470.703000px;}
.x36_c00271{left:472.518030px;}
.xc1_c00271{left:475.108756px;}
.x57_c00271{left:477.368752px;}
.x99_c00271{left:478.980000px;}
.x40_c00271{left:480.224895px;}
.x2e_c00271{left:484.662240px;}
.xae_c00271{left:499.756500px;}
.x4a_c00271{left:501.852000px;}
.x14_c00271{left:503.645910px;}
.x37_c00271{left:505.189800px;}
.xa5_c00271{left:508.078500px;}
.x41_c00271{left:512.386395px;}
.x9_c00271{left:513.979500px;}
.x9a_c00271{left:519.210000px;}
.xca_c00271{left:520.290000px;}
.x4b_c00271{left:523.120500px;}
.x1f_c00271{left:524.747190px;}
.xb9_c00271{left:526.500000px;}
.xaf_c00271{left:530.599500px;}
.x81_c00271{left:534.870000px;}
.x15_c00271{left:536.845575px;}
.x68_c00271{left:541.890000px;}
.xc2_c00271{left:545.713581px;}
.xa_c00271{left:549.393000px;}
.x2b_c00271{left:550.650720px;}
.xb0_c00271{left:552.444000px;}
.x38_c00271{left:554.871780px;}
.x2f_c00271{left:557.245740px;}
.xcc_c00271{left:561.060000px;}
.x20_c00271{left:565.200810px;}
.x82_c00271{left:567.810000px;}
.xce_c00271{left:568.890000px;}
.x83_c00271{left:575.370000px;}
.x16_c00271{left:578.966175px;}
.x71_c00271{left:580.620000px;}
.x9b_c00271{left:584.280000px;}
.xcb_c00271{left:586.980000px;}
.x4c_c00271{left:590.950500px;}
.xa6_c00271{left:592.321500px;}
.x9c_c00271{left:593.730000px;}
.x69_c00271{left:595.350000px;}
.x30_c00271{left:598.068240px;}
.xc4_c00271{left:599.130000px;}
.xd1_c00271{left:605.610000px;}
.x42_c00271{left:612.038895px;}
.xc7_c00271{left:615.330000px;}
.x39_c00271{left:616.704960px;}
.xcf_c00271{left:618.570000px;}
.xcd_c00271{left:619.920000px;}
.x58_c00271{left:622.630882px;}
.x4d_c00271{left:624.118500px;}
.x8e_c00271{left:625.254000px;}
.xc8_c00271{left:630.720000px;}
.xb_c00271{left:633.652500px;}
.x72_c00271{left:634.869000px;}
.x9d_c00271{left:637.200000px;}
.xbd_c00271{left:640.170000px;}
.xc5_c00271{left:641.790000px;}
.x17_c00271{left:644.861475px;}
.x4e_c00271{left:648.409500px;}
.x89_c00271{left:649.620000px;}
.xc9_c00271{left:651.240000px;}
.xbe_c00271{left:653.130000px;}
.xa7_c00271{left:654.699000px;}
.x5e_c00271{left:656.370000px;}
.x84_c00271{left:661.770000px;}
.xbf_c00271{left:663.120000px;}
.xc3_c00271{left:665.550000px;}
.x21_c00271{left:666.988875px;}
.x59_c00271{left:668.802037px;}
.x9e_c00271{left:672.300000px;}
.xd0_c00271{left:673.650000px;}
.x2c_c00271{left:676.826190px;}
.x73_c00271{left:678.034500px;}
.x8f_c00271{left:681.954000px;}
.xc6_c00271{left:683.370000px;}
.xba_c00271{left:687.420000px;}
.x5f_c00271{left:688.500000px;}
.x18_c00271{left:690.759270px;}
.xd2_c00271{left:696.060000px;}
.x74_c00271{left:699.660000px;}
.x2d_c00271{left:701.103795px;}
.xc_c00271{left:702.733500px;}
.xb1_c00271{left:705.054000px;}
.x8a_c00271{left:706.590000px;}
.xbb_c00271{left:718.470000px;}
.x85_c00271{left:720.630000px;}
.xbc_c00271{left:723.330000px;}
.x31_c00271{left:733.191240px;}
.x9f_c00271{left:741.420000px;}
.x4f_c00271{left:743.769000px;}
.x5a_c00271{left:745.212450px;}
.x50_c00271{left:807.547500px;}
.x86_c00271{left:817.290000px;}
.x87_c00271{left:821.340000px;}
.x88_c00271{left:823.770000px;}
.xd4_c00271{left:876.150000px;}
.xd5_c00271{left:892.890000px;}
.xd3_c00271{left:894.780000px;}
.xd6_c00271{left:895.860000px;}
@media print{
.v0_c00271{vertical-align:0.000000pt;}
.ls0_c00271{letter-spacing:0.000000pt;}
.ws0_c00271{word-spacing:0.000000pt;}
.fs13_c00271{font-size:10.666667pt;}
.fsc_c00271{font-size:16.000000pt;}
.fsd_c00271{font-size:21.333333pt;}
.fs12_c00271{font-size:26.666667pt;}
.fs14_c00271{font-size:32.000000pt;}
.fsf_c00271{font-size:42.666667pt;}
.fse_c00271{font-size:58.668544pt;}
.fs5_c00271{font-size:58.669600pt;}
.fs9_c00271{font-size:64.000000pt;}
.fs3_c00271{font-size:64.003200pt;}
.fs8_c00271{font-size:69.333333pt;}
.fs7_c00271{font-size:69.334200pt;}
.fsb_c00271{font-size:74.666667pt;}
.fs2_c00271{font-size:74.670400pt;}
.fs10_c00271{font-size:74.671184pt;}
.fsa_c00271{font-size:80.000000pt;}
.fs1_c00271{font-size:80.004000pt;}
.fs0_c00271{font-size:85.337600pt;}
.fs11_c00271{font-size:90.644995pt;}
.fs6_c00271{font-size:96.004800pt;}
.fs4_c00271{font-size:106.672000pt;}
.y0_c00271{bottom:0.000000pt;}
.yc2_c00271{bottom:136.320000pt;}
.yc1_c00271{bottom:152.640000pt;}
.yc0_c00271{bottom:162.240000pt;}
.ybf_c00271{bottom:168.480000pt;}
.ybe_c00271{bottom:253.440000pt;}
.ybd_c00271{bottom:306.960000pt;}
.ybb_c00271{bottom:372.240000pt;}
.yba_c00271{bottom:376.080000pt;}
.yb9_c00271{bottom:379.188000pt;}
.yb8_c00271{bottom:381.457333pt;}
.yb7_c00271{bottom:389.397333pt;}
.yb6_c00271{bottom:400.308000pt;}
.yb5_c00271{bottom:404.160000pt;}
.yb4_c00271{bottom:408.032000pt;}
.ybc_c00271{bottom:411.840000pt;}
.yb2_c00271{bottom:414.366667pt;}
.yb3_c00271{bottom:414.600000pt;}
.yb0_c00271{bottom:416.653060pt;}
.yb1_c00271{bottom:418.320000pt;}
.yaf_c00271{bottom:418.527036pt;}
.yae_c00271{bottom:420.222808pt;}
.yad_c00271{bottom:422.672892pt;}
.yac_c00271{bottom:423.860000pt;}
.yab_c00271{bottom:432.962667pt;}
.yaa_c00271{bottom:435.721333pt;}
.ya8_c00271{bottom:435.957333pt;}
.ya7_c00271{bottom:446.438989pt;}
.ya6_c00271{bottom:446.869925pt;}
.ya5_c00271{bottom:447.231415pt;}
.ya4_c00271{bottom:447.785961pt;}
.ya3_c00271{bottom:447.931176pt;}
.ya2_c00271{bottom:448.144767pt;}
.ya1_c00271{bottom:448.446343pt;}
.y9f_c00271{bottom:449.562007pt;}
.ya0_c00271{bottom:449.639755pt;}
.y9e_c00271{bottom:449.831844pt;}
.y9d_c00271{bottom:450.050025pt;}
.y9c_c00271{bottom:450.885233pt;}
.y9b_c00271{bottom:451.022220pt;}
.y9a_c00271{bottom:451.923017pt;}
.y99_c00271{bottom:452.382260pt;}
.y98_c00271{bottom:452.701333pt;}
.ya9_c00271{bottom:478.518667pt;}
.y96_c00271{bottom:505.293333pt;}
.y95_c00271{bottom:505.493333pt;}
.y94_c00271{bottom:505.637333pt;}
.y93_c00271{bottom:505.770667pt;}
.y97_c00271{bottom:505.917333pt;}
.y92_c00271{bottom:505.929333pt;}
.y91_c00271{bottom:506.145333pt;}
.y90_c00271{bottom:506.413333pt;}
.y8f_c00271{bottom:506.466667pt;}
.y8e_c00271{bottom:506.662667pt;}
.y8d_c00271{bottom:507.056000pt;}
.y8c_c00271{bottom:507.280000pt;}
.y8b_c00271{bottom:507.452000pt;}
.y8a_c00271{bottom:507.628000pt;}
.y89_c00271{bottom:507.889333pt;}
.y88_c00271{bottom:508.108000pt;}
.y87_c00271{bottom:512.290667pt;}
.y7a_c00271{bottom:534.617333pt;}
.y86_c00271{bottom:535.433237pt;}
.y85_c00271{bottom:535.611808pt;}
.y84_c00271{bottom:535.836437pt;}
.y83_c00271{bottom:536.460459pt;}
.y82_c00271{bottom:536.867499pt;}
.y81_c00271{bottom:537.103701pt;}
.y80_c00271{bottom:537.559371pt;}
.y7f_c00271{bottom:537.791179pt;}
.y7e_c00271{bottom:538.190464pt;}
.y7d_c00271{bottom:538.508971pt;}
.y7c_c00271{bottom:539.120192pt;}
.y7b_c00271{bottom:539.830667pt;}
.y79_c00271{bottom:559.680000pt;}
.y77_c00271{bottom:561.840000pt;}
.y76_c00271{bottom:592.261333pt;}
.y68_c00271{bottom:619.920000pt;}
.y69_c00271{bottom:620.286667pt;}
.y6a_c00271{bottom:620.565333pt;}
.y6b_c00271{bottom:620.922667pt;}
.y6c_c00271{bottom:621.254667pt;}
.y6d_c00271{bottom:621.428000pt;}
.y6e_c00271{bottom:621.621333pt;}
.y6f_c00271{bottom:621.790667pt;}
.y70_c00271{bottom:621.957333pt;}
.y71_c00271{bottom:622.138667pt;}
.y72_c00271{bottom:622.376000pt;}
.y73_c00271{bottom:622.665333pt;}
.y74_c00271{bottom:622.896000pt;}
.y75_c00271{bottom:623.012000pt;}
.y78_c00271{bottom:644.160000pt;}
.y67_c00271{bottom:648.353333pt;}
.y66_c00271{bottom:677.981333pt;}
.y63_c00271{bottom:704.814640pt;}
.y64_c00271{bottom:704.814773pt;}
.y5f_c00271{bottom:704.814893pt;}
.y61_c00271{bottom:704.814900pt;}
.y65_c00271{bottom:704.815180pt;}
.y5e_c00271{bottom:704.815293pt;}
.y62_c00271{bottom:704.815307pt;}
.y60_c00271{bottom:704.815433pt;}
.y5d_c00271{bottom:704.815820pt;}
.y5b_c00271{bottom:704.816487pt;}
.y5c_c00271{bottom:704.816620pt;}
.y5a_c00271{bottom:704.817153pt;}
.y59_c00271{bottom:704.817687pt;}
.y58_c00271{bottom:726.058673pt;}
.y57_c00271{bottom:726.342133pt;}
.y56_c00271{bottom:726.765953pt;}
.y55_c00271{bottom:726.873913pt;}
.y54_c00271{bottom:727.021327pt;}
.y53_c00271{bottom:727.322793pt;}
.y52_c00271{bottom:727.417320pt;}
.y51_c00271{bottom:727.713987pt;}
.y50_c00271{bottom:727.907200pt;}
.y4f_c00271{bottom:728.103867pt;}
.y4e_c00271{bottom:728.491473pt;}
.y4d_c00271{bottom:728.835967pt;}
.y4c_c00271{bottom:728.928120pt;}
.y4b_c00271{bottom:729.231953pt;}
.y4a_c00271{bottom:729.516293pt;}
.y49_c00271{bottom:729.600000pt;}
.y3f_c00271{bottom:759.969240pt;}
.y40_c00271{bottom:760.567200pt;}
.y41_c00271{bottom:760.893853pt;}
.y42_c00271{bottom:761.584560pt;}
.y43_c00271{bottom:761.935667pt;}
.y44_c00271{bottom:762.784187pt;}
.y45_c00271{bottom:763.825107pt;}
.y46_c00271{bottom:764.110987pt;}
.y47_c00271{bottom:764.996787pt;}
.y48_c00271{bottom:765.483573pt;}
.y3d_c00271{bottom:789.345787pt;}
.y3e_c00271{bottom:789.346027pt;}
.y37_c00271{bottom:789.346213pt;}
.y35_c00271{bottom:789.346280pt;}
.y3c_c00271{bottom:789.346333pt;}
.y38_c00271{bottom:789.346400pt;}
.y36_c00271{bottom:789.346800pt;}
.y3b_c00271{bottom:789.346880pt;}
.y39_c00271{bottom:789.346907pt;}
.y3a_c00271{bottom:789.347160pt;}
.y30_c00271{bottom:812.879067pt;}
.y31_c00271{bottom:813.172147pt;}
.y32_c00271{bottom:813.817333pt;}
.y33_c00271{bottom:814.180200pt;}
.y34_c00271{bottom:815.381293pt;}
.y2f_c00271{bottom:843.982960pt;}
.y2e_c00271{bottom:844.176533pt;}
.y2d_c00271{bottom:845.185853pt;}
.y2c_c00271{bottom:845.931280pt;}
.y2b_c00271{bottom:846.177147pt;}
.y2a_c00271{bottom:846.248560pt;}
.y29_c00271{bottom:846.640120pt;}
.y28_c00271{bottom:847.365960pt;}
.y27_c00271{bottom:847.639893pt;}
.y26_c00271{bottom:848.537800pt;}
.y25_c00271{bottom:848.746533pt;}
.y24_c00271{bottom:849.357960pt;}
.y19_c00271{bottom:872.614840pt;}
.y1a_c00271{bottom:873.040067pt;}
.y1b_c00271{bottom:873.211147pt;}
.y1c_c00271{bottom:873.446333pt;}
.y1d_c00271{bottom:873.705200pt;}
.y1e_c00271{bottom:874.101973pt;}
.y1f_c00271{bottom:874.450893pt;}
.y20_c00271{bottom:874.699747pt;}
.y21_c00271{bottom:875.094613pt;}
.y22_c00271{bottom:875.310187pt;}
.y23_c00271{bottom:875.853600pt;}
.yd_c00271{bottom:897.359493pt;}
.ye_c00271{bottom:897.522160pt;}
.yf_c00271{bottom:897.906013pt;}
.y10_c00271{bottom:898.049213pt;}
.y11_c00271{bottom:898.458253pt;}
.y12_c00271{bottom:898.736480pt;}
.y13_c00271{bottom:899.077853pt;}
.y14_c00271{bottom:899.378827pt;}
.y15_c00271{bottom:899.525920pt;}
.y16_c00271{bottom:899.713640pt;}
.y17_c00271{bottom:900.006013pt;}
.y18_c00271{bottom:900.209973pt;}
.y1_c00271{bottom:928.030667pt;}
.y2_c00271{bottom:928.520480pt;}
.y3_c00271{bottom:928.798960pt;}
.y4_c00271{bottom:929.775733pt;}
.y5_c00271{bottom:930.069027pt;}
.y6_c00271{bottom:930.955467pt;}
.y7_c00271{bottom:931.450587pt;}
.y8_c00271{bottom:931.645240pt;}
.y9_c00271{bottom:932.132613pt;}
.ya_c00271{bottom:932.447400pt;}
.yb_c00271{bottom:933.196373pt;}
.yc_c00271{bottom:933.810427pt;}
.h15_c00271{height:10.666667pt;}
.he_c00271{height:16.000000pt;}
.hf_c00271{height:21.333333pt;}
.h14_c00271{height:26.666667pt;}
.h16_c00271{height:32.000000pt;}
.h11_c00271{height:42.666667pt;}
.h10_c00271{height:58.668544pt;}
.h7_c00271{height:58.669600pt;}
.hb_c00271{height:64.000000pt;}
.h5_c00271{height:64.003200pt;}
.ha_c00271{height:69.333333pt;}
.h9_c00271{height:69.334200pt;}
.hd_c00271{height:74.666667pt;}
.h4_c00271{height:74.670400pt;}
.h12_c00271{height:74.671184pt;}
.hc_c00271{height:80.000000pt;}
.h3_c00271{height:80.004000pt;}
.h2_c00271{height:85.337600pt;}
.h13_c00271{height:90.644995pt;}
.h8_c00271{height:96.004800pt;}
.h6_c00271{height:106.672000pt;}
.h1_c00271{height:1036.000000pt;}
.h0_c00271{height:1036.266667pt;}
.w0_c00271{width:813.333333pt;}
.x0_c00271{left:0.000000pt;}
.x43_c00271{left:9.554667pt;}
.x22_c00271{left:25.789893pt;}
.x3a_c00271{left:41.279907pt;}
.x60_c00271{left:42.720000pt;}
.xd_c00271{left:43.998413pt;}
.x1_c00271{left:46.676000pt;}
.x32_c00271{left:50.157720pt;}
.x19_c00271{left:53.114747pt;}
.x7c_c00271{left:55.920000pt;}
.x51_c00271{left:57.361287pt;}
.xa0_c00271{left:59.185333pt;}
.xb2_c00271{left:61.200000pt;}
.xb3_c00271{left:73.680000pt;}
.xe_c00271{left:76.400027pt;}
.x61_c00271{left:78.480000pt;}
.xb4_c00271{left:80.400000pt;}
.x44_c00271{left:83.164000pt;}
.x75_c00271{left:85.200000pt;}
.xa8_c00271{left:86.417333pt;}
.x33_c00271{left:89.280293pt;}
.x5b_c00271{left:90.720000pt;}
.x23_c00271{left:93.726800pt;}
.x2_c00271{left:95.657333pt;}
.x3b_c00271{left:101.075907pt;}
.xa1_c00271{left:102.862667pt;}
.x6a_c00271{left:106.440000pt;}
.x24_c00271{left:116.991213pt;}
.xb5_c00271{left:119.760000pt;}
.x62_c00271{left:120.960000pt;}
.x52_c00271{left:122.402907pt;}
.x3_c00271{left:123.505333pt;}
.x90_c00271{left:128.880000pt;}
.x76_c00271{left:130.320000pt;}
.x3c_c00271{left:133.741240pt;}
.x91_c00271{left:142.320000pt;}
.x45_c00271{left:143.930667pt;}
.x8b_c00271{left:145.312000pt;}
.xb7_c00271{left:150.000000pt;}
.xb6_c00271{left:151.200000pt;}
.xf_c00271{left:153.189200pt;}
.xa2_c00271{left:155.194667pt;}
.x77_c00271{left:160.320000pt;}
.x46_c00271{left:162.361333pt;}
.x6b_c00271{left:167.645333pt;}
.x53_c00271{left:175.444233pt;}
.x10_c00271{left:181.777293pt;}
.x34_c00271{left:185.764613pt;}
.x63_c00271{left:190.080000pt;}
.x1a_c00271{left:191.602947pt;}
.x78_c00271{left:201.360000pt;}
.x3d_c00271{left:202.811907pt;}
.x92_c00271{left:207.600000pt;}
.xa9_c00271{left:210.057333pt;}
.x7d_c00271{left:212.160000pt;}
.x54_c00271{left:213.605187pt;}
.x25_c00271{left:216.819507pt;}
.x4_c00271{left:221.182667pt;}
.xaa_c00271{left:222.510667pt;}
.xa3_c00271{left:224.834667pt;}
.x47_c00271{left:231.260000pt;}
.x1b_c00271{left:234.824680pt;}
.x3e_c00271{left:237.922573pt;}
.x7e_c00271{left:243.120000pt;}
.x26_c00271{left:247.298627pt;}
.x5_c00271{left:250.512000pt;}
.x93_c00271{left:257.760000pt;}
.x7f_c00271{left:261.120000pt;}
.x11_c00271{left:263.618720pt;}
.xa4_c00271{left:269.709333pt;}
.x64_c00271{left:270.960000pt;}
.x6c_c00271{left:273.726667pt;}
.x94_c00271{left:280.800000pt;}
.x5c_c00271{left:285.360000pt;}
.x65_c00271{left:288.000000pt;}
.xb8_c00271{left:296.400000pt;}
.xab_c00271{left:298.438667pt;}
.x95_c00271{left:300.000000pt;}
.x1c_c00271{left:301.038000pt;}
.x79_c00271{left:304.320000pt;}
.x48_c00271{left:308.781333pt;}
.x8c_c00271{left:311.438667pt;}
.x96_c00271{left:314.400000pt;}
.xac_c00271{left:318.273333pt;}
.x12_c00271{left:319.310840pt;}
.x3f_c00271{left:322.774573pt;}
.x27_c00271{left:327.929947pt;}
.x6d_c00271{left:329.141333pt;}
.x55_c00271{left:335.526893pt;}
.x7a_c00271{left:338.160000pt;}
.x6_c00271{left:339.156000pt;}
.x8d_c00271{left:340.414667pt;}
.xad_c00271{left:342.804000pt;}
.x35_c00271{left:345.132547pt;}
.x49_c00271{left:348.114667pt;}
.x66_c00271{left:354.960000pt;}
.x6e_c00271{left:357.953333pt;}
.x1d_c00271{left:359.132320pt;}
.x97_c00271{left:367.680000pt;}
.x28_c00271{left:371.448880pt;}
.x5d_c00271{left:378.000000pt;}
.x29_c00271{left:379.375720pt;}
.x67_c00271{left:385.680000pt;}
.x13_c00271{left:387.451573pt;}
.x7_c00271{left:388.668000pt;}
.x6f_c00271{left:390.088000pt;}
.xc0_c00271{left:391.910667pt;}
.x7b_c00271{left:396.960000pt;}
.x98_c00271{left:398.160000pt;}
.x1e_c00271{left:400.685987pt;}
.x56_c00271{left:403.687267pt;}
.x2a_c00271{left:406.660907pt;}
.x8_c00271{left:408.133333pt;}
.x80_c00271{left:411.120000pt;}
.x70_c00271{left:418.402667pt;}
.x36_c00271{left:420.016027pt;}
.xc1_c00271{left:422.318895pt;}
.x57_c00271{left:424.327780pt;}
.x99_c00271{left:425.760000pt;}
.x40_c00271{left:426.866573pt;}
.x2e_c00271{left:430.810880pt;}
.xae_c00271{left:444.228000pt;}
.x4a_c00271{left:446.090667pt;}
.x14_c00271{left:447.685253pt;}
.x37_c00271{left:449.057600pt;}
.xa5_c00271{left:451.625333pt;}
.x41_c00271{left:455.454573pt;}
.x9_c00271{left:456.870667pt;}
.x9a_c00271{left:461.520000pt;}
.xca_c00271{left:462.480000pt;}
.x4b_c00271{left:464.996000pt;}
.x1f_c00271{left:466.441947pt;}
.xb9_c00271{left:468.000000pt;}
.xaf_c00271{left:471.644000pt;}
.x81_c00271{left:475.440000pt;}
.x15_c00271{left:477.196067pt;}
.x68_c00271{left:481.680000pt;}
.xc2_c00271{left:485.078739pt;}
.xa_c00271{left:488.349333pt;}
.x2b_c00271{left:489.467307pt;}
.xb0_c00271{left:491.061333pt;}
.x38_c00271{left:493.219360pt;}
.x2f_c00271{left:495.329547pt;}
.xcc_c00271{left:498.720000pt;}
.x20_c00271{left:502.400720pt;}
.x82_c00271{left:504.720000pt;}
.xce_c00271{left:505.680000pt;}
.x83_c00271{left:511.440000pt;}
.x16_c00271{left:514.636600pt;}
.x71_c00271{left:516.106667pt;}
.x9b_c00271{left:519.360000pt;}
.xcb_c00271{left:521.760000pt;}
.x4c_c00271{left:525.289333pt;}
.xa6_c00271{left:526.508000pt;}
.x9c_c00271{left:527.760000pt;}
.x69_c00271{left:529.200000pt;}
.x30_c00271{left:531.616213pt;}
.xc4_c00271{left:532.560000pt;}
.xd1_c00271{left:538.320000pt;}
.x42_c00271{left:544.034573pt;}
.xc7_c00271{left:546.960000pt;}
.x39_c00271{left:548.182187pt;}
.xcf_c00271{left:549.840000pt;}
.xcd_c00271{left:551.040000pt;}
.x58_c00271{left:553.449673pt;}
.x4d_c00271{left:554.772000pt;}
.x8e_c00271{left:555.781333pt;}
.xc8_c00271{left:560.640000pt;}
.xb_c00271{left:563.246667pt;}
.x72_c00271{left:564.328000pt;}
.x9d_c00271{left:566.400000pt;}
.xbd_c00271{left:569.040000pt;}
.xc5_c00271{left:570.480000pt;}
.x17_c00271{left:573.210200pt;}
.x4e_c00271{left:576.364000pt;}
.x89_c00271{left:577.440000pt;}
.xc9_c00271{left:578.880000pt;}
.xbe_c00271{left:580.560000pt;}
.xa7_c00271{left:581.954667pt;}
.x5e_c00271{left:583.440000pt;}
.x84_c00271{left:588.240000pt;}
.xbf_c00271{left:589.440000pt;}
.xc3_c00271{left:591.600000pt;}
.x21_c00271{left:592.879000pt;}
.x59_c00271{left:594.490700pt;}
.x9e_c00271{left:597.600000pt;}
.xd0_c00271{left:598.800000pt;}
.x2c_c00271{left:601.623280pt;}
.x73_c00271{left:602.697333pt;}
.x8f_c00271{left:606.181333pt;}
.xc6_c00271{left:607.440000pt;}
.xba_c00271{left:611.040000pt;}
.x5f_c00271{left:612.000000pt;}
.x18_c00271{left:614.008240pt;}
.xd2_c00271{left:618.720000pt;}
.x74_c00271{left:621.920000pt;}
.x2d_c00271{left:623.203373pt;}
.xc_c00271{left:624.652000pt;}
.xb1_c00271{left:626.714667pt;}
.x8a_c00271{left:628.080000pt;}
.xbb_c00271{left:638.640000pt;}
.x85_c00271{left:640.560000pt;}
.xbc_c00271{left:642.960000pt;}
.x31_c00271{left:651.725547pt;}
.x9f_c00271{left:659.040000pt;}
.x4f_c00271{left:661.128000pt;}
.x5a_c00271{left:662.411067pt;}
.x50_c00271{left:717.820000pt;}
.x86_c00271{left:726.480000pt;}
.x87_c00271{left:730.080000pt;}
.x88_c00271{left:732.240000pt;}
.xd4_c00271{left:778.800000pt;}
.xd5_c00271{left:793.680000pt;}
.xd3_c00271{left:795.360000pt;}
.xd6_c00271{left:796.320000pt;}
}





/* 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_c00272 {
    display:none;
  }
  .loading-indicator_c00272.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00272 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_c00272 { 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_c00272" -> "#page-container .classname_c00272")
 */
.pf_c00272 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00272 { /* 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_c00272.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00272 { /* 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_c00272 { /* 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_c00272 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00272 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00272 {overflow:visible;}
  }
}
.c_c00272 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00272 { /* 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_c00272:after { /* webkit #35443 */
  content: '';
}
.t_c00272:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00272 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 */
}
.__c00272 { /* 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_c00272 { /* info for Javascript */
  display:none;
}
.l_c00272 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00272 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00272 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00272: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_c00272 {
    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_c00272.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00272.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_c00272 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00272{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00272;src:url('chunks/assets/font_fabf4b590f7fb32aea93ffb2.woff2')format("woff");}.ff1_c00272{font-family:ff1_c00272;line-height:1.000000;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;}
.mb7_c00272{transform:matrix(0.116490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116490,0.000000,0.000000,0.250000,0,0);}
.m17_c00272{transform:matrix(0.123093,-0.002339,0.004749,0.249955,0,0);-ms-transform:matrix(0.123093,-0.002339,0.004749,0.249955,0,0);-webkit-transform:matrix(0.123093,-0.002339,0.004749,0.249955,0,0);}
.m49_c00272{transform:matrix(0.156470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156470,0.000000,0.000000,0.250000,0,0);}
.m9_c00272{transform:matrix(0.159540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159540,0.000000,0.000000,0.250000,0,0);}
.ma9_c00272{transform:matrix(0.167245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167245,0.000000,0.000000,0.250000,0,0);}
.m13a_c00272{transform:matrix(0.169060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169060,0.000000,0.000000,0.250000,0,0);}
.m131_c00272{transform:matrix(0.175710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175710,0.000000,0.000000,0.250000,0,0);}
.m139_c00272{transform:matrix(0.177120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177120,0.000000,0.000000,0.250000,0,0);}
.m135_c00272{transform:matrix(0.179630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179630,0.000000,0.000000,0.250000,0,0);}
.md5_c00272{transform:matrix(0.184375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184375,0.000000,0.000000,0.250000,0,0);}
.m133_c00272{transform:matrix(0.185195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185195,0.000000,0.000000,0.250000,0,0);}
.m34_c00272{transform:matrix(0.186770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186770,0.000000,0.000000,0.250000,0,0);}
.m13b_c00272{transform:matrix(0.187135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187135,0.000000,0.000000,0.250000,0,0);}
.m143_c00272{transform:matrix(0.188805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188805,0.000000,0.000000,0.250000,0,0);}
.m11b_c00272{transform:matrix(0.188825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188825,0.000000,0.000000,0.250000,0,0);}
.m16_c00272{transform:matrix(0.188976,-0.003591,0.004749,0.249955,0,0);-ms-transform:matrix(0.188976,-0.003591,0.004749,0.249955,0,0);-webkit-transform:matrix(0.188976,-0.003591,0.004749,0.249955,0,0);}
.mdd_c00272{transform:matrix(0.188985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188985,0.000000,0.000000,0.250000,0,0);}
.m110_c00272{transform:matrix(0.189070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189070,0.000000,0.000000,0.250000,0,0);}
.m136_c00272{transform:matrix(0.189180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189180,0.000000,0.000000,0.250000,0,0);}
.m35_c00272{transform:matrix(0.189335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189335,0.000000,0.000000,0.250000,0,0);}
.m142_c00272{transform:matrix(0.189790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189790,0.000000,0.000000,0.250000,0,0);}
.m134_c00272{transform:matrix(0.189895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189895,0.000000,0.000000,0.250000,0,0);}
.md_c00272{transform:matrix(0.191940,-0.003647,0.004749,0.249955,0,0);-ms-transform:matrix(0.191940,-0.003647,0.004749,0.249955,0,0);-webkit-transform:matrix(0.191940,-0.003647,0.004749,0.249955,0,0);}
.m4a_c00272{transform:matrix(0.193215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193215,0.000000,0.000000,0.250000,0,0);}
.me2_c00272{transform:matrix(0.196080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196080,0.000000,0.000000,0.250000,0,0);}
.m129_c00272{transform:matrix(0.198275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198275,0.000000,0.000000,0.250000,0,0);}
.m140_c00272{transform:matrix(0.198330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198330,0.000000,0.000000,0.250000,0,0);}
.m2f_c00272{transform:matrix(0.198755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198755,0.000000,0.000000,0.250000,0,0);}
.m13c_c00272{transform:matrix(0.199485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199485,0.000000,0.000000,0.250000,0,0);}
.m132_c00272{transform:matrix(0.199600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199600,0.000000,0.000000,0.250000,0,0);}
.m4f_c00272{transform:matrix(0.200665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200665,0.000000,0.000000,0.250000,0,0);}
.m31_c00272{transform:matrix(0.200760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200760,0.000000,0.000000,0.250000,0,0);}
.m4d_c00272{transform:matrix(0.201735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201735,0.000000,0.000000,0.250000,0,0);}
.mca_c00272{transform:matrix(0.201805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201805,0.000000,0.000000,0.250000,0,0);}
.m51_c00272{transform:matrix(0.202290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202290,0.000000,0.000000,0.250000,0,0);}
.m2e_c00272{transform:matrix(0.202640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202640,0.000000,0.000000,0.250000,0,0);}
.m80_c00272{transform:matrix(0.203040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203040,0.000000,0.000000,0.250000,0,0);}
.md6_c00272{transform:matrix(0.203615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203615,0.000000,0.000000,0.250000,0,0);}
.m145_c00272{transform:matrix(0.204165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204165,0.000000,0.000000,0.250000,0,0);}
.md9_c00272{transform:matrix(0.204190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204190,0.000000,0.000000,0.250000,0,0);}
.m7c_c00272{transform:matrix(0.204330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204330,0.000000,0.000000,0.250000,0,0);}
.mff_c00272{transform:matrix(0.204345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204345,0.000000,0.000000,0.250000,0,0);}
.m112_c00272{transform:matrix(0.204460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204460,0.000000,0.000000,0.250000,0,0);}
.m147_c00272{transform:matrix(0.205010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205010,0.000000,0.000000,0.250000,0,0);}
.m11a_c00272{transform:matrix(0.205100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205100,0.000000,0.000000,0.250000,0,0);}
.mdc_c00272{transform:matrix(0.206130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206130,0.000000,0.000000,0.250000,0,0);}
.me0_c00272{transform:matrix(0.206260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206260,0.000000,0.000000,0.250000,0,0);}
.m10d_c00272{transform:matrix(0.206405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206405,0.000000,0.000000,0.250000,0,0);}
.mf_c00272{transform:matrix(0.207388,-0.003940,0.004749,0.249955,0,0);-ms-transform:matrix(0.207388,-0.003940,0.004749,0.249955,0,0);-webkit-transform:matrix(0.207388,-0.003940,0.004749,0.249955,0,0);}
.md0_c00272{transform:matrix(0.207395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207395,0.000000,0.000000,0.250000,0,0);}
.m12e_c00272{transform:matrix(0.208015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208015,0.000000,0.000000,0.250000,0,0);}
.me1_c00272{transform:matrix(0.208435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208435,0.000000,0.000000,0.250000,0,0);}
.m82_c00272{transform:matrix(0.208675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208675,0.000000,0.000000,0.250000,0,0);}
.m14_c00272{transform:matrix(0.208712,-0.003966,0.004749,0.249955,0,0);-ms-transform:matrix(0.208712,-0.003966,0.004749,0.249955,0,0);-webkit-transform:matrix(0.208712,-0.003966,0.004749,0.249955,0,0);}
.me4_c00272{transform:matrix(0.209220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209220,0.000000,0.000000,0.250000,0,0);}
.mab_c00272{transform:matrix(0.209260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209260,0.000000,0.000000,0.250000,0,0);}
.m53_c00272{transform:matrix(0.209300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209300,0.000000,0.000000,0.250000,0,0);}
.m114_c00272{transform:matrix(0.209880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209880,0.000000,0.000000,0.250000,0,0);}
.mf0_c00272{transform:matrix(0.209900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209900,0.000000,0.000000,0.250000,0,0);}
.m97_c00272{transform:matrix(0.210050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210050,0.000000,0.000000,0.250000,0,0);}
.m89_c00272{transform:matrix(0.210610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210610,0.000000,0.000000,0.250000,0,0);}
.m11e_c00272{transform:matrix(0.211015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211015,0.000000,0.000000,0.250000,0,0);}
.m2d_c00272{transform:matrix(0.211025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211025,0.000000,0.000000,0.250000,0,0);}
.m121_c00272{transform:matrix(0.211425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211425,0.000000,0.000000,0.250000,0,0);}
.m30_c00272{transform:matrix(0.212710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212710,0.000000,0.000000,0.250000,0,0);}
.m71_c00272{transform:matrix(0.213690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213690,0.000000,0.000000,0.250000,0,0);}
.me7_c00272{transform:matrix(0.214420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214420,0.000000,0.000000,0.250000,0,0);}
.m13e_c00272{transform:matrix(0.214670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214670,0.000000,0.000000,0.250000,0,0);}
.m10a_c00272{transform:matrix(0.214760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214760,0.000000,0.000000,0.250000,0,0);}
.m73_c00272{transform:matrix(0.214900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214900,0.000000,0.000000,0.250000,0,0);}
.m10_c00272{transform:matrix(0.215601,-0.004096,0.004749,0.249955,0,0);-ms-transform:matrix(0.215601,-0.004096,0.004749,0.249955,0,0);-webkit-transform:matrix(0.215601,-0.004096,0.004749,0.249955,0,0);}
.m59_c00272{transform:matrix(0.215885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215885,0.000000,0.000000,0.250000,0,0);}
.m144_c00272{transform:matrix(0.216105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216105,0.000000,0.000000,0.250000,0,0);}
.m2b_c00272{transform:matrix(0.216130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216130,0.000000,0.000000,0.250000,0,0);}
.m32_c00272{transform:matrix(0.216380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216380,0.000000,0.000000,0.250000,0,0);}
.m119_c00272{transform:matrix(0.216415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216415,0.000000,0.000000,0.250000,0,0);}
.m12a_c00272{transform:matrix(0.216725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216725,0.000000,0.000000,0.250000,0,0);}
.m42_c00272{transform:matrix(0.216910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216910,0.000000,0.000000,0.250000,0,0);}
.m148_c00272{transform:matrix(0.218280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218280,0.000000,0.000000,0.250000,0,0);}
.mce_c00272{transform:matrix(0.218305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218305,0.000000,0.000000,0.250000,0,0);}
.m33_c00272{transform:matrix(0.218350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218350,0.000000,0.000000,0.250000,0,0);}
.m146_c00272{transform:matrix(0.218840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218840,0.000000,0.000000,0.250000,0,0);}
.m103_c00272{transform:matrix(0.219145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219145,0.000000,0.000000,0.250000,0,0);}
.m11f_c00272{transform:matrix(0.219150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219150,0.000000,0.000000,0.250000,0,0);}
.m36_c00272{transform:matrix(0.219160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219160,0.000000,0.000000,0.250000,0,0);}
.m120_c00272{transform:matrix(0.219375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219375,0.000000,0.000000,0.250000,0,0);}
.m12_c00272{transform:matrix(0.219550,-0.004171,0.004749,0.249955,0,0);-ms-transform:matrix(0.219550,-0.004171,0.004749,0.249955,0,0);-webkit-transform:matrix(0.219550,-0.004171,0.004749,0.249955,0,0);}
.ma0_c00272{transform:matrix(0.219915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219915,0.000000,0.000000,0.250000,0,0);}
.m125_c00272{transform:matrix(0.220130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220130,0.000000,0.000000,0.250000,0,0);}
.mbb_c00272{transform:matrix(0.220480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220480,0.000000,0.000000,0.250000,0,0);}
.m55_c00272{transform:matrix(0.220560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220560,0.000000,0.000000,0.250000,0,0);}
.mde_c00272{transform:matrix(0.221105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221105,0.000000,0.000000,0.250000,0,0);}
.meb_c00272{transform:matrix(0.221470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221470,0.000000,0.000000,0.250000,0,0);}
.m4c_c00272{transform:matrix(0.221600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221600,0.000000,0.000000,0.250000,0,0);}
.m109_c00272{transform:matrix(0.222125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222125,0.000000,0.000000,0.250000,0,0);}
.mee_c00272{transform:matrix(0.222625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222625,0.000000,0.000000,0.250000,0,0);}
.m117_c00272{transform:matrix(0.222780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222780,0.000000,0.000000,0.250000,0,0);}
.m122_c00272{transform:matrix(0.223275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223275,0.000000,0.000000,0.250000,0,0);}
.m127_c00272{transform:matrix(0.223380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223380,0.000000,0.000000,0.250000,0,0);}
.md4_c00272{transform:matrix(0.223760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223760,0.000000,0.000000,0.250000,0,0);}
.m10c_c00272{transform:matrix(0.223885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223885,0.000000,0.000000,0.250000,0,0);}
.me_c00272{transform:matrix(0.223920,-0.004254,0.004749,0.249955,0,0);-ms-transform:matrix(0.223920,-0.004254,0.004749,0.249955,0,0);-webkit-transform:matrix(0.223920,-0.004254,0.004749,0.249955,0,0);}
.mdf_c00272{transform:matrix(0.223970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223970,0.000000,0.000000,0.250000,0,0);}
.m15_c00272{transform:matrix(0.224050,-0.004257,0.004749,0.249955,0,0);-ms-transform:matrix(0.224050,-0.004257,0.004749,0.249955,0,0);-webkit-transform:matrix(0.224050,-0.004257,0.004749,0.249955,0,0);}
.mfb_c00272{transform:matrix(0.224070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224070,0.000000,0.000000,0.250000,0,0);}
.md2_c00272{transform:matrix(0.224655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224655,0.000000,0.000000,0.250000,0,0);}
.m100_c00272{transform:matrix(0.224680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224680,0.000000,0.000000,0.250000,0,0);}
.m124_c00272{transform:matrix(0.225105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225105,0.000000,0.000000,0.250000,0,0);}
.me5_c00272{transform:matrix(0.225225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225225,0.000000,0.000000,0.250000,0,0);}
.m12c_c00272{transform:matrix(0.225380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225380,0.000000,0.000000,0.250000,0,0);}
.m39_c00272{transform:matrix(0.225940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225940,0.000000,0.000000,0.250000,0,0);}
.m3a_c00272{transform:matrix(0.225995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225995,0.000000,0.000000,0.250000,0,0);}
.m99_c00272{transform:matrix(0.226025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226025,0.000000,0.000000,0.250000,0,0);}
.m56_c00272{transform:matrix(0.226065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226065,0.000000,0.000000,0.250000,0,0);}
.m3f_c00272{transform:matrix(0.226575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226575,0.000000,0.000000,0.250000,0,0);}
.m141_c00272{transform:matrix(0.226755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226755,0.000000,0.000000,0.250000,0,0);}
.m21_c00272{transform:matrix(0.226965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226965,0.000000,0.000000,0.250000,0,0);}
.mf9_c00272{transform:matrix(0.227095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227095,0.000000,0.000000,0.250000,0,0);}
.m116_c00272{transform:matrix(0.227570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227570,0.000000,0.000000,0.250000,0,0);}
.m13_c00272{transform:matrix(0.227589,-0.004324,0.004749,0.249955,0,0);-ms-transform:matrix(0.227589,-0.004324,0.004749,0.249955,0,0);-webkit-transform:matrix(0.227589,-0.004324,0.004749,0.249955,0,0);}
.m87_c00272{transform:matrix(0.227625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227625,0.000000,0.000000,0.250000,0,0);}
.m3e_c00272{transform:matrix(0.227685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227685,0.000000,0.000000,0.250000,0,0);}
.me3_c00272{transform:matrix(0.228090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228090,0.000000,0.000000,0.250000,0,0);}
.m111_c00272{transform:matrix(0.228170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228170,0.000000,0.000000,0.250000,0,0);}
.m11c_c00272{transform:matrix(0.228810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228810,0.000000,0.000000,0.250000,0,0);}
.me8_c00272{transform:matrix(0.229505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229505,0.000000,0.000000,0.250000,0,0);}
.mc4_c00272{transform:matrix(0.229525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229525,0.000000,0.000000,0.250000,0,0);}
.mb0_c00272{transform:matrix(0.230045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230045,0.000000,0.000000,0.250000,0,0);}
.m28_c00272{transform:matrix(0.230340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230340,0.000000,0.000000,0.250000,0,0);}
.m2c_c00272{transform:matrix(0.230685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230685,0.000000,0.000000,0.250000,0,0);}
.mfd_c00272{transform:matrix(0.230765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230765,0.000000,0.000000,0.250000,0,0);}
.m9f_c00272{transform:matrix(0.231465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231465,0.000000,0.000000,0.250000,0,0);}
.mb2_c00272{transform:matrix(0.231470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231470,0.000000,0.000000,0.250000,0,0);}
.m1b_c00272{transform:matrix(0.231530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231530,0.000000,0.000000,0.250000,0,0);}
.mf5_c00272{transform:matrix(0.231805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231805,0.000000,0.000000,0.250000,0,0);}
.m115_c00272{transform:matrix(0.232010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232010,0.000000,0.000000,0.250000,0,0);}
.m69_c00272{transform:matrix(0.232285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232285,0.000000,0.000000,0.250000,0,0);}
.mf1_c00272{transform:matrix(0.232555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232555,0.000000,0.000000,0.250000,0,0);}
.mfa_c00272{transform:matrix(0.232945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232945,0.000000,0.000000,0.250000,0,0);}
.mf8_c00272{transform:matrix(0.233045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233045,0.000000,0.000000,0.250000,0,0);}
.mdb_c00272{transform:matrix(0.233065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233065,0.000000,0.000000,0.250000,0,0);}
.m84_c00272{transform:matrix(0.233125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233125,0.000000,0.000000,0.250000,0,0);}
.m1f_c00272{transform:matrix(0.233655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233655,0.000000,0.000000,0.250000,0,0);}
.m85_c00272{transform:matrix(0.233980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233980,0.000000,0.000000,0.250000,0,0);}
.m118_c00272{transform:matrix(0.234360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234360,0.000000,0.000000,0.250000,0,0);}
.m8e_c00272{transform:matrix(0.234935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234935,0.000000,0.000000,0.250000,0,0);}
.me6_c00272{transform:matrix(0.235260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235260,0.000000,0.000000,0.250000,0,0);}
.ma1_c00272{transform:matrix(0.235395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235395,0.000000,0.000000,0.250000,0,0);}
.mc8_c00272{transform:matrix(0.235755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235755,0.000000,0.000000,0.250000,0,0);}
.m9d_c00272{transform:matrix(0.235790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235790,0.000000,0.000000,0.250000,0,0);}
.m6f_c00272{transform:matrix(0.235850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235850,0.000000,0.000000,0.250000,0,0);}
.m61_c00272{transform:matrix(0.235880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235880,0.000000,0.000000,0.250000,0,0);}
.m26_c00272{transform:matrix(0.235915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235915,0.000000,0.000000,0.250000,0,0);}
.mf7_c00272{transform:matrix(0.235920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235920,0.000000,0.000000,0.250000,0,0);}
.m11_c00272{transform:matrix(0.235997,-0.004484,0.004749,0.249955,0,0);-ms-transform:matrix(0.235997,-0.004484,0.004749,0.249955,0,0);-webkit-transform:matrix(0.235997,-0.004484,0.004749,0.249955,0,0);}
.mf6_c00272{transform:matrix(0.236210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236210,0.000000,0.000000,0.250000,0,0);}
.mbf_c00272{transform:matrix(0.236645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236645,0.000000,0.000000,0.250000,0,0);}
.m11d_c00272{transform:matrix(0.236705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236705,0.000000,0.000000,0.250000,0,0);}
.m77_c00272{transform:matrix(0.237425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237425,0.000000,0.000000,0.250000,0,0);}
.m88_c00272{transform:matrix(0.237430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237430,0.000000,0.000000,0.250000,0,0);}
.m123_c00272{transform:matrix(0.237555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237555,0.000000,0.000000,0.250000,0,0);}
.m19_c00272{transform:matrix(0.237830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237830,0.000000,0.000000,0.250000,0,0);}
.m8a_c00272{transform:matrix(0.237950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237950,0.000000,0.000000,0.250000,0,0);}
.m9b_c00272{transform:matrix(0.238265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238265,0.000000,0.000000,0.250000,0,0);}
.m5e_c00272{transform:matrix(0.238355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238355,0.000000,0.000000,0.250000,0,0);}
.md7_c00272{transform:matrix(0.238535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238535,0.000000,0.000000,0.250000,0,0);}
.m113_c00272{transform:matrix(0.238745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238745,0.000000,0.000000,0.250000,0,0);}
.m102_c00272{transform:matrix(0.238950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238950,0.000000,0.000000,0.250000,0,0);}
.m105_c00272{transform:matrix(0.239545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239545,0.000000,0.000000,0.250000,0,0);}
.m5b_c00272{transform:matrix(0.239650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239650,0.000000,0.000000,0.250000,0,0);}
.m7a_c00272{transform:matrix(0.239910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239910,0.000000,0.000000,0.250000,0,0);}
.mad_c00272{transform:matrix(0.240390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240390,0.000000,0.000000,0.250000,0,0);}
.m86_c00272{transform:matrix(0.240970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240970,0.000000,0.000000,0.250000,0,0);}
.m70_c00272{transform:matrix(0.241030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241030,0.000000,0.000000,0.250000,0,0);}
.m12f_c00272{transform:matrix(0.241180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241180,0.000000,0.000000,0.250000,0,0);}
.m52_c00272{transform:matrix(0.241365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241365,0.000000,0.000000,0.250000,0,0);}
.mda_c00272{transform:matrix(0.241580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241580,0.000000,0.000000,0.250000,0,0);}
.m76_c00272{transform:matrix(0.241925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241925,0.000000,0.000000,0.250000,0,0);}
.m128_c00272{transform:matrix(0.242190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242190,0.000000,0.000000,0.250000,0,0);}
.m126_c00272{transform:matrix(0.242650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242650,0.000000,0.000000,0.250000,0,0);}
.m10b_c00272{transform:matrix(0.242695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242695,0.000000,0.000000,0.250000,0,0);}
.m23_c00272{transform:matrix(0.242705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242705,0.000000,0.000000,0.250000,0,0);}
.mb1_c00272{transform:matrix(0.242980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242980,0.000000,0.000000,0.250000,0,0);}
.m6_c00272{transform:matrix(0.243055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243055,0.000000,0.000000,0.250000,0,0);}
.mc9_c00272{transform:matrix(0.243210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243210,0.000000,0.000000,0.250000,0,0);}
.m8b_c00272{transform:matrix(0.243295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243295,0.000000,0.000000,0.250000,0,0);}
.m64_c00272{transform:matrix(0.243375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243375,0.000000,0.000000,0.250000,0,0);}
.md3_c00272{transform:matrix(0.243740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243740,0.000000,0.000000,0.250000,0,0);}
.ma_c00272{transform:matrix(0.243915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243915,0.000000,0.000000,0.250000,0,0);}
.m90_c00272{transform:matrix(0.244095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244095,0.000000,0.000000,0.250000,0,0);}
.mb4_c00272{transform:matrix(0.244105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244105,0.000000,0.000000,0.250000,0,0);}
.m72_c00272{transform:matrix(0.244700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244700,0.000000,0.000000,0.250000,0,0);}
.m60_c00272{transform:matrix(0.244860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244860,0.000000,0.000000,0.250000,0,0);}
.m6e_c00272{transform:matrix(0.244870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244870,0.000000,0.000000,0.250000,0,0);}
.mcd_c00272{transform:matrix(0.245025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245025,0.000000,0.000000,0.250000,0,0);}
.m92_c00272{transform:matrix(0.245270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245270,0.000000,0.000000,0.250000,0,0);}
.m43_c00272{transform:matrix(0.245400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245400,0.000000,0.000000,0.250000,0,0);}
.m79_c00272{transform:matrix(0.245460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245460,0.000000,0.000000,0.250000,0,0);}
.m10e_c00272{transform:matrix(0.245665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245665,0.000000,0.000000,0.250000,0,0);}
.mb9_c00272{transform:matrix(0.245710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245710,0.000000,0.000000,0.250000,0,0);}
.m4b_c00272{transform:matrix(0.246190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246190,0.000000,0.000000,0.250000,0,0);}
.mfc_c00272{transform:matrix(0.246450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246450,0.000000,0.000000,0.250000,0,0);}
.md8_c00272{transform:matrix(0.246625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246625,0.000000,0.000000,0.250000,0,0);}
.mc7_c00272{transform:matrix(0.246730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246730,0.000000,0.000000,0.250000,0,0);}
.m8_c00272{transform:matrix(0.247210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247210,0.000000,0.000000,0.250000,0,0);}
.m66_c00272{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.ma4_c00272{transform:matrix(0.247550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247550,0.000000,0.000000,0.250000,0,0);}
.m2a_c00272{transform:matrix(0.247685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247685,0.000000,0.000000,0.250000,0,0);}
.m95_c00272{transform:matrix(0.248295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248295,0.000000,0.000000,0.250000,0,0);}
.m83_c00272{transform:matrix(0.248805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248805,0.000000,0.000000,0.250000,0,0);}
.med_c00272{transform:matrix(0.249040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249040,0.000000,0.000000,0.250000,0,0);}
.md1_c00272{transform:matrix(0.249090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249090,0.000000,0.000000,0.250000,0,0);}
.m0_c00272{transform:matrix(0.249375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249375,0.000000,0.000000,0.250000,0,0);}
.m98_c00272{transform:matrix(0.249520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249520,0.000000,0.000000,0.250000,0,0);}
.m47_c00272{transform:matrix(0.249760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249760,0.000000,0.000000,0.250000,0,0);}
.m57_c00272{transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);}
.m38_c00272{transform:matrix(0.250275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250275,0.000000,0.000000,0.250000,0,0);}
.m108_c00272{transform:matrix(0.250445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250445,0.000000,0.000000,0.250000,0,0);}
.ma8_c00272{transform:matrix(0.250470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250470,0.000000,0.000000,0.250000,0,0);}
.mac_c00272{transform:matrix(0.250785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250785,0.000000,0.000000,0.250000,0,0);}
.mae_c00272{transform:matrix(0.250830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250830,0.000000,0.000000,0.250000,0,0);}
.maf_c00272{transform:matrix(0.250880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250880,0.000000,0.000000,0.250000,0,0);}
.mcf_c00272{transform:matrix(0.251280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251280,0.000000,0.000000,0.250000,0,0);}
.m5c_c00272{transform:matrix(0.251385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251385,0.000000,0.000000,0.250000,0,0);}
.m8d_c00272{transform:matrix(0.251400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251400,0.000000,0.000000,0.250000,0,0);}
.m9e_c00272{transform:matrix(0.251530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251530,0.000000,0.000000,0.250000,0,0);}
.m25_c00272{transform:matrix(0.251560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251560,0.000000,0.000000,0.250000,0,0);}
.m37_c00272{transform:matrix(0.251650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251650,0.000000,0.000000,0.250000,0,0);}
.m3d_c00272{transform:matrix(0.252125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252125,0.000000,0.000000,0.250000,0,0);}
.m50_c00272{transform:matrix(0.252160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252160,0.000000,0.000000,0.250000,0,0);}
.mba_c00272{transform:matrix(0.252825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252825,0.000000,0.000000,0.250000,0,0);}
.m1e_c00272{transform:matrix(0.252845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252845,0.000000,0.000000,0.250000,0,0);}
.mea_c00272{transform:matrix(0.253035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253035,0.000000,0.000000,0.250000,0,0);}
.m13f_c00272{transform:matrix(0.253145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253145,0.000000,0.000000,0.250000,0,0);}
.mfe_c00272{transform:matrix(0.253240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253240,0.000000,0.000000,0.250000,0,0);}
.m107_c00272{transform:matrix(0.253380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253380,0.000000,0.000000,0.250000,0,0);}
.mbe_c00272{transform:matrix(0.253405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253405,0.000000,0.000000,0.250000,0,0);}
.m12b_c00272{transform:matrix(0.253600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253600,0.000000,0.000000,0.250000,0,0);}
.m4e_c00272{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m41_c00272{transform:matrix(0.253800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253800,0.000000,0.000000,0.250000,0,0);}
.m9c_c00272{transform:matrix(0.253940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253940,0.000000,0.000000,0.250000,0,0);}
.m10f_c00272{transform:matrix(0.254395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254395,0.000000,0.000000,0.250000,0,0);}
.m44_c00272{transform:matrix(0.255180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255180,0.000000,0.000000,0.250000,0,0);}
.m130_c00272{transform:matrix(0.255340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255340,0.000000,0.000000,0.250000,0,0);}
.m94_c00272{transform:matrix(0.255440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255440,0.000000,0.000000,0.250000,0,0);}
.m74_c00272{transform:matrix(0.256005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256005,0.000000,0.000000,0.250000,0,0);}
.m8c_c00272{transform:matrix(0.256190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256190,0.000000,0.000000,0.250000,0,0);}
.m81_c00272{transform:matrix(0.256520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256520,0.000000,0.000000,0.250000,0,0);}
.m6c_c00272{transform:matrix(0.256540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256540,0.000000,0.000000,0.250000,0,0);}
.m6d_c00272{transform:matrix(0.257185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257185,0.000000,0.000000,0.250000,0,0);}
.mc5_c00272{transform:matrix(0.258315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258315,0.000000,0.000000,0.250000,0,0);}
.m7f_c00272{transform:matrix(0.258350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258350,0.000000,0.000000,0.250000,0,0);}
.ma2_c00272{transform:matrix(0.258430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258430,0.000000,0.000000,0.250000,0,0);}
.m91_c00272{transform:matrix(0.258630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258630,0.000000,0.000000,0.250000,0,0);}
.m12d_c00272{transform:matrix(0.258655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258655,0.000000,0.000000,0.250000,0,0);}
.m4_c00272{transform:matrix(0.258805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258805,0.000000,0.000000,0.250000,0,0);}
.m9a_c00272{transform:matrix(0.258900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258900,0.000000,0.000000,0.250000,0,0);}
.m7d_c00272{transform:matrix(0.258990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258990,0.000000,0.000000,0.250000,0,0);}
.m104_c00272{transform:matrix(0.259175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259175,0.000000,0.000000,0.250000,0,0);}
.m29_c00272{transform:matrix(0.259245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259245,0.000000,0.000000,0.250000,0,0);}
.m24_c00272{transform:matrix(0.260835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260835,0.000000,0.000000,0.250000,0,0);}
.m54_c00272{transform:matrix(0.260880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260880,0.000000,0.000000,0.250000,0,0);}
.m5d_c00272{transform:matrix(0.261285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261285,0.000000,0.000000,0.250000,0,0);}
.m5f_c00272{transform:matrix(0.261835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261835,0.000000,0.000000,0.250000,0,0);}
.ma5_c00272{transform:matrix(0.261965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261965,0.000000,0.000000,0.250000,0,0);}
.m46_c00272{transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);}
.me9_c00272{transform:matrix(0.262115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262115,0.000000,0.000000,0.250000,0,0);}
.m48_c00272{transform:matrix(0.262375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262375,0.000000,0.000000,0.250000,0,0);}
.m20_c00272{transform:matrix(0.262515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262515,0.000000,0.000000,0.250000,0,0);}
.m6a_c00272{transform:matrix(0.263005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263005,0.000000,0.000000,0.250000,0,0);}
.mc1_c00272{transform:matrix(0.263780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263780,0.000000,0.000000,0.250000,0,0);}
.ma6_c00272{transform:matrix(0.264005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264005,0.000000,0.000000,0.250000,0,0);}
.m78_c00272{transform:matrix(0.264400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264400,0.000000,0.000000,0.250000,0,0);}
.m101_c00272{transform:matrix(0.264615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264615,0.000000,0.000000,0.250000,0,0);}
.mb3_c00272{transform:matrix(0.264855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264855,0.000000,0.000000,0.250000,0,0);}
.mef_c00272{transform:matrix(0.265310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265310,0.000000,0.000000,0.250000,0,0);}
.mf4_c00272{transform:matrix(0.265340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265340,0.000000,0.000000,0.250000,0,0);}
.maa_c00272{transform:matrix(0.265430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265430,0.000000,0.000000,0.250000,0,0);}
.m7e_c00272{transform:matrix(0.266200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266200,0.000000,0.000000,0.250000,0,0);}
.m137_c00272{transform:matrix(0.266340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266340,0.000000,0.000000,0.250000,0,0);}
.mc0_c00272{transform:matrix(0.267155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267155,0.000000,0.000000,0.250000,0,0);}
.m6b_c00272{transform:matrix(0.267700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267700,0.000000,0.000000,0.250000,0,0);}
.mcb_c00272{transform:matrix(0.268550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268550,0.000000,0.000000,0.250000,0,0);}
.m106_c00272{transform:matrix(0.268805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268805,0.000000,0.000000,0.250000,0,0);}
.m93_c00272{transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00272{transform:matrix(0.269005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269005,0.000000,0.000000,0.250000,0,0);}
.m1a_c00272{transform:matrix(0.269080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269080,0.000000,0.000000,0.250000,0,0);}
.mcc_c00272{transform:matrix(0.269180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269180,0.000000,0.000000,0.250000,0,0);}
.m22_c00272{transform:matrix(0.269355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269355,0.000000,0.000000,0.250000,0,0);}
.m5a_c00272{transform:matrix(0.269510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269510,0.000000,0.000000,0.250000,0,0);}
.mb5_c00272{transform:matrix(0.269900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269900,0.000000,0.000000,0.250000,0,0);}
.m67_c00272{transform:matrix(0.270080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270080,0.000000,0.000000,0.250000,0,0);}
.mb8_c00272{transform:matrix(0.270100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270100,0.000000,0.000000,0.250000,0,0);}
.m75_c00272{transform:matrix(0.270315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270315,0.000000,0.000000,0.250000,0,0);}
.m40_c00272{transform:matrix(0.270435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270435,0.000000,0.000000,0.250000,0,0);}
.mc2_c00272{transform:matrix(0.270595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270595,0.000000,0.000000,0.250000,0,0);}
.m1d_c00272{transform:matrix(0.271120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271120,0.000000,0.000000,0.250000,0,0);}
.m58_c00272{transform:matrix(0.271260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271260,0.000000,0.000000,0.250000,0,0);}
.mbc_c00272{transform:matrix(0.271375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271375,0.000000,0.000000,0.250000,0,0);}
.mc6_c00272{transform:matrix(0.271835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271835,0.000000,0.000000,0.250000,0,0);}
.m27_c00272{transform:matrix(0.272150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272150,0.000000,0.000000,0.250000,0,0);}
.mec_c00272{transform:matrix(0.272220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272220,0.000000,0.000000,0.250000,0,0);}
.mf2_c00272{transform:matrix(0.272620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272620,0.000000,0.000000,0.250000,0,0);}
.m18_c00272{transform:matrix(0.272720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272720,0.000000,0.000000,0.250000,0,0);}
.mf3_c00272{transform:matrix(0.272760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272760,0.000000,0.000000,0.250000,0,0);}
.m45_c00272{transform:matrix(0.272765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272765,0.000000,0.000000,0.250000,0,0);}
.m96_c00272{transform:matrix(0.274895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274895,0.000000,0.000000,0.250000,0,0);}
.m2_c00272{transform:matrix(0.275310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275310,0.000000,0.000000,0.250000,0,0);}
.mb6_c00272{transform:matrix(0.276610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276610,0.000000,0.000000,0.250000,0,0);}
.m65_c00272{transform:matrix(0.276645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276645,0.000000,0.000000,0.250000,0,0);}
.mbd_c00272{transform:matrix(0.277380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277380,0.000000,0.000000,0.250000,0,0);}
.m8f_c00272{transform:matrix(0.278075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278075,0.000000,0.000000,0.250000,0,0);}
.m7b_c00272{transform:matrix(0.278090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278090,0.000000,0.000000,0.250000,0,0);}
.m63_c00272{transform:matrix(0.278785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278785,0.000000,0.000000,0.250000,0,0);}
.mc3_c00272{transform:matrix(0.279345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279345,0.000000,0.000000,0.250000,0,0);}
.ma7_c00272{transform:matrix(0.281075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281075,0.000000,0.000000,0.250000,0,0);}
.m1c_c00272{transform:matrix(0.281480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281480,0.000000,0.000000,0.250000,0,0);}
.m62_c00272{transform:matrix(0.282240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282240,0.000000,0.000000,0.250000,0,0);}
.m7_c00272{transform:matrix(0.282275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282275,0.000000,0.000000,0.250000,0,0);}
.m5_c00272{transform:matrix(0.284015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284015,0.000000,0.000000,0.250000,0,0);}
.m3_c00272{transform:matrix(0.288525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288525,0.000000,0.000000,0.250000,0,0);}
.m138_c00272{transform:matrix(0.291320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291320,0.000000,0.000000,0.250000,0,0);}
.m3c_c00272{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m68_c00272{transform:matrix(0.307950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307950,0.000000,0.000000,0.250000,0,0);}
.m3b_c00272{transform:matrix(0.332855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332855,0.000000,0.000000,0.250000,0,0);}
.m13d_c00272{transform:matrix(0.338365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338365,0.000000,0.000000,0.250000,0,0);}
.mb_c00272{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m1_c00272{transform:matrix(0.537690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537690,0.000000,0.000000,0.250000,0,0);}
.mc_c00272{transform:matrix(0.686895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.686895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.686895,0.000000,0.000000,0.250000,0,0);}
.v0_c00272{vertical-align:0.000000px;}
.ls0_c00272{letter-spacing:0.000000px;}
.sc__c00272{text-shadow:none;}
.sc0_c00272{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__c00272{-webkit-text-stroke:0px transparent;}
.sc0_c00272{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00272{word-spacing:0.000000px;}
.fc0_c00272{color:transparent;}
.fs3_c00272{font-size:30.000000px;}
.fs0_c00272{font-size:54.000000px;}
.fs1_c00272{font-size:66.000000px;}
.fs2_c00272{font-size:72.000000px;}
.fs6_c00272{font-size:78.000000px;}
.fs7_c00272{font-size:84.000000px;}
.fs4_c00272{font-size:84.015161px;}
.fs5_c00272{font-size:90.000000px;}
.fs8_c00272{font-size:102.000000px;}
.y0_c00272{bottom:0.000000px;}
.y2c_c00272{bottom:28.255500px;}
.y2b_c00272{bottom:48.610500px;}
.y2a_c00272{bottom:81.798000px;}
.y29_c00272{bottom:113.590500px;}
.y28_c00272{bottom:145.653000px;}
.y27_c00272{bottom:178.366500px;}
.y26_c00272{bottom:210.553500px;}
.y25_c00272{bottom:240.759000px;}
.y24_c00272{bottom:272.526000px;}
.y23_c00272{bottom:303.933000px;}
.y22_c00272{bottom:335.511000px;}
.y21_c00272{bottom:367.200000px;}
.y20_c00272{bottom:398.955000px;}
.y1f_c00272{bottom:430.720500px;}
.y1e_c00272{bottom:463.447500px;}
.y1d_c00272{bottom:495.589500px;}
.y1c_c00272{bottom:526.230000px;}
.y1b_c00272{bottom:557.479500px;}
.y1a_c00272{bottom:588.912000px;}
.y19_c00272{bottom:620.119500px;}
.y18_c00272{bottom:651.238500px;}
.y17_c00272{bottom:683.368500px;}
.y16_c00272{bottom:715.228500px;}
.y15_c00272{bottom:747.771000px;}
.y14_c00272{bottom:779.695500px;}
.y13_c00272{bottom:811.468500px;}
.y12_c00272{bottom:843.069000px;}
.y11_c00272{bottom:873.838500px;}
.y10_c00272{bottom:905.580000px;}
.y5_c00272{bottom:936.364500px;}
.y6_c00272{bottom:936.985601px;}
.y7_c00272{bottom:938.211443px;}
.y8_c00272{bottom:938.867969px;}
.y9_c00272{bottom:939.893798px;}
.ya_c00272{bottom:941.770836px;}
.yb_c00272{bottom:942.837677px;}
.yc_c00272{bottom:944.458671px;}
.yd_c00272{bottom:945.114998px;}
.ye_c00272{bottom:946.566332px;}
.yf_c00272{bottom:948.194394px;}
.y4_c00272{bottom:1012.375500px;}
.y3_c00272{bottom:1043.154000px;}
.y2_c00272{bottom:1075.035000px;}
.y1_c00272{bottom:1130.760000px;}
.h5_c00272{height:30.000000px;}
.h2_c00272{height:54.000000px;}
.h3_c00272{height:66.000000px;}
.h4_c00272{height:72.000000px;}
.h8_c00272{height:78.000000px;}
.h9_c00272{height:84.000000px;}
.h6_c00272{height:84.015161px;}
.h7_c00272{height:90.000000px;}
.ha_c00272{height:102.000000px;}
.h1_c00272{height:1165.500000px;}
.h0_c00272{height:1165.800000px;}
.w0_c00272{width:915.000000px;}
.x0_c00272{left:0.000000px;}
.x18_c00272{left:150.390000px;}
.x35_c00272{left:151.740000px;}
.x21_c00272{left:182.520000px;}
.x43_c00272{left:184.140000px;}
.x76_c00272{left:185.220000px;}
.x66_c00272{left:186.570000px;}
.x2d_c00272{left:194.670000px;}
.x38_c00272{left:196.020000px;}
.x50_c00272{left:205.740000px;}
.x5e_c00272{left:216.810000px;}
.x39_c00272{left:227.880000px;}
.x6d_c00272{left:229.770000px;}
.x19_c00272{left:237.870000px;}
.x79_c00272{left:243.270000px;}
.x28_c00272{left:250.020000px;}
.x51_c00272{left:259.740000px;}
.xd_c00272{left:261.621000px;}
.x1a_c00272{left:271.620000px;}
.x67_c00272{left:272.700000px;}
.x3a_c00272{left:282.150000px;}
.x70_c00272{left:283.500000px;}
.x52_c00272{left:293.220000px;}
.xe_c00272{left:294.310500px;}
.x6e_c00272{left:295.920000px;}
.x22_c00272{left:304.560000px;}
.x6f_c00272{left:305.640000px;}
.x3_c00272{left:315.090000px;}
.x4d_c00272{left:326.430000px;}
.x7a_c00272{left:331.830000px;}
.x5f_c00272{left:336.690000px;}
.x36_c00272{left:338.580000px;}
.x29_c00272{left:348.030000px;}
.xf_c00272{left:358.828500px;}
.x44_c00272{left:359.910000px;}
.x1b_c00272{left:369.360000px;}
.x4_c00272{left:370.980000px;}
.x68_c00272{left:372.330000px;}
.x3b_c00272{left:382.320000px;}
.x23_c00272{left:391.770000px;}
.x10_c00272{left:393.382500px;}
.x1c_c00272{left:402.840000px;}
.x9_c00272{left:404.190000px;}
.x4e_c00272{left:413.100000px;}
.x1_c00272{left:414.450000px;}
.x2a_c00272{left:415.530000px;}
.x53_c00272{left:423.900000px;}
.x45_c00272{left:425.250000px;}
.x24_c00272{left:435.510000px;}
.x60_c00272{left:436.590000px;}
.x2_c00272{left:437.670000px;}
.x11_c00272{left:447.373500px;}
.xb_c00272{left:448.470000px;}
.x71_c00272{left:449.820000px;}
.x5_c00272{left:456.840000px;}
.x4a_c00272{left:458.730000px;}
.x46_c00272{left:459.810000px;}
.x25_c00272{left:469.530000px;}
.xc_c00272{left:471.150000px;}
.xa_c00272{left:480.600000px;}
.x7b_c00272{left:484.380000px;}
.x6_c00272{left:490.860000px;}
.x77_c00272{left:492.480000px;}
.x4b_c00272{left:502.470000px;}
.x4f_c00272{left:513.810000px;}
.x5a_c00272{left:515.700000px;}
.x56_c00272{left:523.530000px;}
.x3f_c00272{left:525.420000px;}
.x1d_c00272{left:534.600000px;}
.x3c_c00272{left:536.490000px;}
.x12_c00272{left:546.165000px;}
.x6a_c00272{left:556.740000px;}
.x61_c00272{left:558.360000px;}
.x7_c00272{left:567.270000px;}
.x47_c00272{left:569.160000px;}
.x69_c00272{left:578.880000px;}
.x2b_c00272{left:582.390000px;}
.x8_c00272{left:590.220000px;}
.x6b_c00272{left:591.840000px;}
.x26_c00272{left:600.480000px;}
.x13_c00272{left:602.314500px;}
.x2e_c00272{left:605.880000px;}
.x32_c00272{left:612.900000px;}
.x37_c00272{left:622.620000px;}
.x62_c00272{left:623.700000px;}
.x1e_c00272{left:634.770000px;}
.x2f_c00272{left:645.030000px;}
.x57_c00272{left:646.110000px;}
.x40_c00272{left:655.560000px;}
.x74_c00272{left:657.720000px;}
.x5b_c00272{left:667.710000px;}
.x41_c00272{left:677.700000px;}
.x48_c00272{left:678.780000px;}
.x78_c00272{left:679.860000px;}
.x14_c00272{left:687.630000px;}
.x3d_c00272{left:689.310000px;}
.x33_c00272{left:699.030000px;}
.x1f_c00272{left:700.110000px;}
.x54_c00272{left:710.100000px;}
.x63_c00272{left:711.180000px;}
.x15_c00272{left:722.173500px;}
.x72_c00272{left:723.330000px;}
.x30_c00272{left:733.050000px;}
.x58_c00272{left:734.400000px;}
.x20_c00272{left:743.850000px;}
.x75_c00272{left:744.930000px;}
.x2c_c00272{left:746.280000px;}
.x59_c00272{left:753.840000px;}
.x5c_c00272{left:754.920000px;}
.x42_c00272{left:756.000000px;}
.x7c_c00272{left:758.430000px;}
.x6c_c00272{left:765.720000px;}
.x4c_c00272{left:766.800000px;}
.x27_c00272{left:777.060000px;}
.x49_c00272{left:778.680000px;}
.x31_c00272{left:786.510000px;}
.x5d_c00272{left:788.130000px;}
.x16_c00272{left:798.559500px;}
.x3e_c00272{left:808.920000px;}
.x34_c00272{left:811.350000px;}
.x55_c00272{left:821.610000px;}
.x64_c00272{left:831.600000px;}
.x73_c00272{left:832.950000px;}
.x7d_c00272{left:834.030000px;}
.x65_c00272{left:876.150000px;}
.x17_c00272{left:884.247000px;}
@media print{
.v0_c00272{vertical-align:0.000000pt;}
.ls0_c00272{letter-spacing:0.000000pt;}
.ws0_c00272{word-spacing:0.000000pt;}
.fs3_c00272{font-size:26.666667pt;}
.fs0_c00272{font-size:48.000000pt;}
.fs1_c00272{font-size:58.666667pt;}
.fs2_c00272{font-size:64.000000pt;}
.fs6_c00272{font-size:69.333333pt;}
.fs7_c00272{font-size:74.666667pt;}
.fs4_c00272{font-size:74.680143pt;}
.fs5_c00272{font-size:80.000000pt;}
.fs8_c00272{font-size:90.666667pt;}
.y0_c00272{bottom:0.000000pt;}
.y2c_c00272{bottom:25.116000pt;}
.y2b_c00272{bottom:43.209333pt;}
.y2a_c00272{bottom:72.709333pt;}
.y29_c00272{bottom:100.969333pt;}
.y28_c00272{bottom:129.469333pt;}
.y27_c00272{bottom:158.548000pt;}
.y26_c00272{bottom:187.158667pt;}
.y25_c00272{bottom:214.008000pt;}
.y24_c00272{bottom:242.245333pt;}
.y23_c00272{bottom:270.162667pt;}
.y22_c00272{bottom:298.232000pt;}
.y21_c00272{bottom:326.400000pt;}
.y20_c00272{bottom:354.626667pt;}
.y1f_c00272{bottom:382.862667pt;}
.y1e_c00272{bottom:411.953333pt;}
.y1d_c00272{bottom:440.524000pt;}
.y1c_c00272{bottom:467.760000pt;}
.y1b_c00272{bottom:495.537333pt;}
.y1a_c00272{bottom:523.477333pt;}
.y19_c00272{bottom:551.217333pt;}
.y18_c00272{bottom:578.878667pt;}
.y17_c00272{bottom:607.438667pt;}
.y16_c00272{bottom:635.758667pt;}
.y15_c00272{bottom:664.685333pt;}
.y14_c00272{bottom:693.062667pt;}
.y13_c00272{bottom:721.305333pt;}
.y12_c00272{bottom:749.394667pt;}
.y11_c00272{bottom:776.745333pt;}
.y10_c00272{bottom:804.960000pt;}
.y5_c00272{bottom:832.324000pt;}
.y6_c00272{bottom:832.876089pt;}
.y7_c00272{bottom:833.965727pt;}
.y8_c00272{bottom:834.549305pt;}
.y9_c00272{bottom:835.461153pt;}
.ya_c00272{bottom:837.129632pt;}
.yb_c00272{bottom:838.077935pt;}
.yc_c00272{bottom:839.518819pt;}
.yd_c00272{bottom:840.102220pt;}
.ye_c00272{bottom:841.392295pt;}
.yf_c00272{bottom:842.839461pt;}
.y4_c00272{bottom:899.889333pt;}
.y3_c00272{bottom:927.248000pt;}
.y2_c00272{bottom:955.586667pt;}
.y1_c00272{bottom:1005.120000pt;}
.h5_c00272{height:26.666667pt;}
.h2_c00272{height:48.000000pt;}
.h3_c00272{height:58.666667pt;}
.h4_c00272{height:64.000000pt;}
.h8_c00272{height:69.333333pt;}
.h9_c00272{height:74.666667pt;}
.h6_c00272{height:74.680143pt;}
.h7_c00272{height:80.000000pt;}
.ha_c00272{height:90.666667pt;}
.h1_c00272{height:1036.000000pt;}
.h0_c00272{height:1036.266667pt;}
.w0_c00272{width:813.333333pt;}
.x0_c00272{left:0.000000pt;}
.x18_c00272{left:133.680000pt;}
.x35_c00272{left:134.880000pt;}
.x21_c00272{left:162.240000pt;}
.x43_c00272{left:163.680000pt;}
.x76_c00272{left:164.640000pt;}
.x66_c00272{left:165.840000pt;}
.x2d_c00272{left:173.040000pt;}
.x38_c00272{left:174.240000pt;}
.x50_c00272{left:182.880000pt;}
.x5e_c00272{left:192.720000pt;}
.x39_c00272{left:202.560000pt;}
.x6d_c00272{left:204.240000pt;}
.x19_c00272{left:211.440000pt;}
.x79_c00272{left:216.240000pt;}
.x28_c00272{left:222.240000pt;}
.x51_c00272{left:230.880000pt;}
.xd_c00272{left:232.552000pt;}
.x1a_c00272{left:241.440000pt;}
.x67_c00272{left:242.400000pt;}
.x3a_c00272{left:250.800000pt;}
.x70_c00272{left:252.000000pt;}
.x52_c00272{left:260.640000pt;}
.xe_c00272{left:261.609333pt;}
.x6e_c00272{left:263.040000pt;}
.x22_c00272{left:270.720000pt;}
.x6f_c00272{left:271.680000pt;}
.x3_c00272{left:280.080000pt;}
.x4d_c00272{left:290.160000pt;}
.x7a_c00272{left:294.960000pt;}
.x5f_c00272{left:299.280000pt;}
.x36_c00272{left:300.960000pt;}
.x29_c00272{left:309.360000pt;}
.xf_c00272{left:318.958667pt;}
.x44_c00272{left:319.920000pt;}
.x1b_c00272{left:328.320000pt;}
.x4_c00272{left:329.760000pt;}
.x68_c00272{left:330.960000pt;}
.x3b_c00272{left:339.840000pt;}
.x23_c00272{left:348.240000pt;}
.x10_c00272{left:349.673333pt;}
.x1c_c00272{left:358.080000pt;}
.x9_c00272{left:359.280000pt;}
.x4e_c00272{left:367.200000pt;}
.x1_c00272{left:368.400000pt;}
.x2a_c00272{left:369.360000pt;}
.x53_c00272{left:376.800000pt;}
.x45_c00272{left:378.000000pt;}
.x24_c00272{left:387.120000pt;}
.x60_c00272{left:388.080000pt;}
.x2_c00272{left:389.040000pt;}
.x11_c00272{left:397.665333pt;}
.xb_c00272{left:398.640000pt;}
.x71_c00272{left:399.840000pt;}
.x5_c00272{left:406.080000pt;}
.x4a_c00272{left:407.760000pt;}
.x46_c00272{left:408.720000pt;}
.x25_c00272{left:417.360000pt;}
.xc_c00272{left:418.800000pt;}
.xa_c00272{left:427.200000pt;}
.x7b_c00272{left:430.560000pt;}
.x6_c00272{left:436.320000pt;}
.x77_c00272{left:437.760000pt;}
.x4b_c00272{left:446.640000pt;}
.x4f_c00272{left:456.720000pt;}
.x5a_c00272{left:458.400000pt;}
.x56_c00272{left:465.360000pt;}
.x3f_c00272{left:467.040000pt;}
.x1d_c00272{left:475.200000pt;}
.x3c_c00272{left:476.880000pt;}
.x12_c00272{left:485.480000pt;}
.x6a_c00272{left:494.880000pt;}
.x61_c00272{left:496.320000pt;}
.x7_c00272{left:504.240000pt;}
.x47_c00272{left:505.920000pt;}
.x69_c00272{left:514.560000pt;}
.x2b_c00272{left:517.680000pt;}
.x8_c00272{left:524.640000pt;}
.x6b_c00272{left:526.080000pt;}
.x26_c00272{left:533.760000pt;}
.x13_c00272{left:535.390667pt;}
.x2e_c00272{left:538.560000pt;}
.x32_c00272{left:544.800000pt;}
.x37_c00272{left:553.440000pt;}
.x62_c00272{left:554.400000pt;}
.x1e_c00272{left:564.240000pt;}
.x2f_c00272{left:573.360000pt;}
.x57_c00272{left:574.320000pt;}
.x40_c00272{left:582.720000pt;}
.x74_c00272{left:584.640000pt;}
.x5b_c00272{left:593.520000pt;}
.x41_c00272{left:602.400000pt;}
.x48_c00272{left:603.360000pt;}
.x78_c00272{left:604.320000pt;}
.x14_c00272{left:611.226667pt;}
.x3d_c00272{left:612.720000pt;}
.x33_c00272{left:621.360000pt;}
.x1f_c00272{left:622.320000pt;}
.x54_c00272{left:631.200000pt;}
.x63_c00272{left:632.160000pt;}
.x15_c00272{left:641.932000pt;}
.x72_c00272{left:642.960000pt;}
.x30_c00272{left:651.600000pt;}
.x58_c00272{left:652.800000pt;}
.x20_c00272{left:661.200000pt;}
.x75_c00272{left:662.160000pt;}
.x2c_c00272{left:663.360000pt;}
.x59_c00272{left:670.080000pt;}
.x5c_c00272{left:671.040000pt;}
.x42_c00272{left:672.000000pt;}
.x7c_c00272{left:674.160000pt;}
.x6c_c00272{left:680.640000pt;}
.x4c_c00272{left:681.600000pt;}
.x27_c00272{left:690.720000pt;}
.x49_c00272{left:692.160000pt;}
.x31_c00272{left:699.120000pt;}
.x5d_c00272{left:700.560000pt;}
.x16_c00272{left:709.830667pt;}
.x3e_c00272{left:719.040000pt;}
.x34_c00272{left:721.200000pt;}
.x55_c00272{left:730.320000pt;}
.x64_c00272{left:739.200000pt;}
.x73_c00272{left:740.400000pt;}
.x7d_c00272{left:741.360000pt;}
.x65_c00272{left:778.800000pt;}
.x17_c00272{left:785.997333pt;}
}





/* 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_c00273 {
    display:none;
  }
  .loading-indicator_c00273.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00273 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_c00273 { 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_c00273" -> "#page-container .classname_c00273")
 */
.pf_c00273 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00273 { /* 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_c00273.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00273 { /* 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_c00273 { /* 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_c00273 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00273 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00273 {overflow:visible;}
  }
}
.c_c00273 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00273 { /* 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_c00273:after { /* webkit #35443 */
  content: '';
}
.t_c00273:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00273 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 */
}
.__c00273 { /* 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_c00273 { /* info for Javascript */
  display:none;
}
.l_c00273 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00273 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00273 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00273: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_c00273 {
    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_c00273.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00273.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_c00273 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00273{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00273;src:url('chunks/assets/font_c605e72f209fc835e906f064.woff2')format("woff");}.ff1_c00273{font-family:ff1_c00273;line-height:1.000000;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;}
.m7e_c00273{transform:matrix(0.010165,0.000071,-0.001750,0.249994,0,0);-ms-transform:matrix(0.010165,0.000071,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.010165,0.000071,-0.001750,0.249994,0,0);}
.m9e_c00273{transform:matrix(0.020125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.020125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.020125,0.000000,0.000000,0.250000,0,0);}
.m7b_c00273{transform:matrix(0.070333,0.000492,-0.001750,0.249994,0,0);-ms-transform:matrix(0.070333,0.000492,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.070333,0.000492,-0.001750,0.249994,0,0);}
.m73_c00273{transform:matrix(0.074903,0.000524,-0.001750,0.249994,0,0);-ms-transform:matrix(0.074903,0.000524,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.074903,0.000524,-0.001750,0.249994,0,0);}
.m66_c00273{transform:matrix(0.082328,0.000576,-0.001750,0.249994,0,0);-ms-transform:matrix(0.082328,0.000576,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.082328,0.000576,-0.001750,0.249994,0,0);}
.m96_c00273{transform:matrix(0.088410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.088410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.088410,0.000000,0.000000,0.250000,0,0);}
.m9f_c00273{transform:matrix(0.121840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121840,0.000000,0.000000,0.250000,0,0);}
.m0_c00273{transform:matrix(0.132055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132055,0.000000,0.000000,0.250000,0,0);}
.mab_c00273{transform:matrix(0.141120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141120,0.000000,0.000000,0.250000,0,0);}
.m19_c00273{transform:matrix(0.158283,0.000791,-0.001250,0.249997,0,0);-ms-transform:matrix(0.158283,0.000791,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.158283,0.000791,-0.001250,0.249997,0,0);}
.m33_c00273{transform:matrix(0.159208,0.000796,-0.001250,0.249997,0,0);-ms-transform:matrix(0.159208,0.000796,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.159208,0.000796,-0.001250,0.249997,0,0);}
.ma_c00273{transform:matrix(0.164257,0.001643,-0.002500,0.249988,0,0);-ms-transform:matrix(0.164257,0.001643,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.164257,0.001643,-0.002500,0.249988,0,0);}
.m2a_c00273{transform:matrix(0.164348,0.000822,-0.001250,0.249997,0,0);-ms-transform:matrix(0.164348,0.000822,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.164348,0.000822,-0.001250,0.249997,0,0);}
.m4_c00273{transform:matrix(0.173036,0.002596,-0.003750,0.249972,0,0);-ms-transform:matrix(0.173036,0.002596,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.173036,0.002596,-0.003750,0.249972,0,0);}
.m3_c00273{transform:matrix(0.173765,0.002606,-0.003750,0.249972,0,0);-ms-transform:matrix(0.173765,0.002606,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.173765,0.002606,-0.003750,0.249972,0,0);}
.m6_c00273{transform:matrix(0.176760,0.002651,-0.003750,0.249972,0,0);-ms-transform:matrix(0.176760,0.002651,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.176760,0.002651,-0.003750,0.249972,0,0);}
.mc3_c00273{transform:matrix(0.177951,0.001780,-0.002500,0.249988,0,0);-ms-transform:matrix(0.177951,0.001780,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.177951,0.001780,-0.002500,0.249988,0,0);}
.mad_c00273{transform:matrix(0.180350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180350,0.000000,0.000000,0.250000,0,0);}
.m70_c00273{transform:matrix(0.186625,0.001306,-0.001750,0.249994,0,0);-ms-transform:matrix(0.186625,0.001306,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.186625,0.001306,-0.001750,0.249994,0,0);}
.m11_c00273{transform:matrix(0.189451,0.001895,-0.002500,0.249988,0,0);-ms-transform:matrix(0.189451,0.001895,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.189451,0.001895,-0.002500,0.249988,0,0);}
.mba_c00273{transform:matrix(0.193160,0.001932,-0.002500,0.249988,0,0);-ms-transform:matrix(0.193160,0.001932,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.193160,0.001932,-0.002500,0.249988,0,0);}
.mb7_c00273{transform:matrix(0.193900,0.001939,-0.002500,0.249988,0,0);-ms-transform:matrix(0.193900,0.001939,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.193900,0.001939,-0.002500,0.249988,0,0);}
.m38_c00273{transform:matrix(0.197363,0.000987,-0.001250,0.249997,0,0);-ms-transform:matrix(0.197363,0.000987,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.197363,0.000987,-0.001250,0.249997,0,0);}
.m39_c00273{transform:matrix(0.198643,0.000993,-0.001250,0.249997,0,0);-ms-transform:matrix(0.198643,0.000993,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.198643,0.000993,-0.001250,0.249997,0,0);}
.m5_c00273{transform:matrix(0.200457,0.003007,-0.003750,0.249972,0,0);-ms-transform:matrix(0.200457,0.003007,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.200457,0.003007,-0.003750,0.249972,0,0);}
.m31_c00273{transform:matrix(0.201332,0.001007,-0.001250,0.249997,0,0);-ms-transform:matrix(0.201332,0.001007,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.201332,0.001007,-0.001250,0.249997,0,0);}
.m4e_c00273{transform:matrix(0.201837,0.001009,-0.001250,0.249997,0,0);-ms-transform:matrix(0.201837,0.001009,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.201837,0.001009,-0.001250,0.249997,0,0);}
.m7f_c00273{transform:matrix(0.205720,0.001440,-0.001750,0.249994,0,0);-ms-transform:matrix(0.205720,0.001440,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.205720,0.001440,-0.001750,0.249994,0,0);}
.m65_c00273{transform:matrix(0.206820,0.001448,-0.001750,0.249994,0,0);-ms-transform:matrix(0.206820,0.001448,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.206820,0.001448,-0.001750,0.249994,0,0);}
.maa_c00273{transform:matrix(0.209575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209575,0.000000,0.000000,0.250000,0,0);}
.me_c00273{transform:matrix(0.209605,0.002096,-0.002500,0.249988,0,0);-ms-transform:matrix(0.209605,0.002096,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.209605,0.002096,-0.002500,0.249988,0,0);}
.m5c_c00273{transform:matrix(0.210350,0.001472,-0.001750,0.249994,0,0);-ms-transform:matrix(0.210350,0.001472,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.210350,0.001472,-0.001750,0.249994,0,0);}
.mb2_c00273{transform:matrix(0.210555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210555,0.000000,0.000000,0.250000,0,0);}
.ma2_c00273{transform:matrix(0.210610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210610,0.000000,0.000000,0.250000,0,0);}
.md_c00273{transform:matrix(0.211324,0.002113,-0.002500,0.249988,0,0);-ms-transform:matrix(0.211324,0.002113,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.211324,0.002113,-0.002500,0.249988,0,0);}
.maf_c00273{transform:matrix(0.213235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213235,0.000000,0.000000,0.250000,0,0);}
.mf_c00273{transform:matrix(0.214214,0.002142,-0.002500,0.249988,0,0);-ms-transform:matrix(0.214214,0.002142,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.214214,0.002142,-0.002500,0.249988,0,0);}
.m71_c00273{transform:matrix(0.215995,0.001512,-0.001750,0.249994,0,0);-ms-transform:matrix(0.215995,0.001512,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.215995,0.001512,-0.001750,0.249994,0,0);}
.m35_c00273{transform:matrix(0.218587,0.001093,-0.001250,0.249997,0,0);-ms-transform:matrix(0.218587,0.001093,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.218587,0.001093,-0.001250,0.249997,0,0);}
.m3b_c00273{transform:matrix(0.222007,0.001110,-0.001250,0.249997,0,0);-ms-transform:matrix(0.222007,0.001110,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.222007,0.001110,-0.001250,0.249997,0,0);}
.m64_c00273{transform:matrix(0.222300,0.001556,-0.001750,0.249994,0,0);-ms-transform:matrix(0.222300,0.001556,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.222300,0.001556,-0.001750,0.249994,0,0);}
.m72_c00273{transform:matrix(0.222985,0.001561,-0.001750,0.249994,0,0);-ms-transform:matrix(0.222985,0.001561,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.222985,0.001561,-0.001750,0.249994,0,0);}
.mc_c00273{transform:matrix(0.227009,0.002270,-0.002500,0.249988,0,0);-ms-transform:matrix(0.227009,0.002270,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.227009,0.002270,-0.002500,0.249988,0,0);}
.m3a_c00273{transform:matrix(0.227327,0.001137,-0.001250,0.249997,0,0);-ms-transform:matrix(0.227327,0.001137,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.227327,0.001137,-0.001250,0.249997,0,0);}
.m4f_c00273{transform:matrix(0.228612,0.001143,-0.001250,0.249997,0,0);-ms-transform:matrix(0.228612,0.001143,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.228612,0.001143,-0.001250,0.249997,0,0);}
.m4a_c00273{transform:matrix(0.229387,0.001147,-0.001250,0.249997,0,0);-ms-transform:matrix(0.229387,0.001147,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.229387,0.001147,-0.001250,0.249997,0,0);}
.m86_c00273{transform:matrix(0.229594,0.001607,-0.001750,0.249994,0,0);-ms-transform:matrix(0.229594,0.001607,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.229594,0.001607,-0.001750,0.249994,0,0);}
.m77_c00273{transform:matrix(0.230454,0.001613,-0.001750,0.249994,0,0);-ms-transform:matrix(0.230454,0.001613,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.230454,0.001613,-0.001750,0.249994,0,0);}
.m75_c00273{transform:matrix(0.231729,0.001622,-0.001750,0.249994,0,0);-ms-transform:matrix(0.231729,0.001622,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.231729,0.001622,-0.001750,0.249994,0,0);}
.m1b_c00273{transform:matrix(0.234982,0.001175,-0.001250,0.249997,0,0);-ms-transform:matrix(0.234982,0.001175,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.234982,0.001175,-0.001250,0.249997,0,0);}
.m9_c00273{transform:matrix(0.235044,0.003526,-0.003750,0.249972,0,0);-ms-transform:matrix(0.235044,0.003526,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.235044,0.003526,-0.003750,0.249972,0,0);}
.m23_c00273{transform:matrix(0.237117,0.001186,-0.001250,0.249997,0,0);-ms-transform:matrix(0.237117,0.001186,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.237117,0.001186,-0.001250,0.249997,0,0);}
.m5b_c00273{transform:matrix(0.238414,0.001669,-0.001750,0.249994,0,0);-ms-transform:matrix(0.238414,0.001669,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.238414,0.001669,-0.001750,0.249994,0,0);}
.mae_c00273{transform:matrix(0.239655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239655,0.000000,0.000000,0.250000,0,0);}
.m1_c00273{transform:matrix(0.240375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240375,0.000000,0.000000,0.250000,0,0);}
.m26_c00273{transform:matrix(0.240957,0.001205,-0.001250,0.249997,0,0);-ms-transform:matrix(0.240957,0.001205,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.240957,0.001205,-0.001250,0.249997,0,0);}
.m10_c00273{transform:matrix(0.241013,0.002410,-0.002500,0.249988,0,0);-ms-transform:matrix(0.241013,0.002410,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.241013,0.002410,-0.002500,0.249988,0,0);}
.m36_c00273{transform:matrix(0.242907,0.001215,-0.001250,0.249997,0,0);-ms-transform:matrix(0.242907,0.001215,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.242907,0.001215,-0.001250,0.249997,0,0);}
.m57_c00273{transform:matrix(0.243694,0.001706,-0.001750,0.249994,0,0);-ms-transform:matrix(0.243694,0.001706,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.243694,0.001706,-0.001750,0.249994,0,0);}
.m58_c00273{transform:matrix(0.245459,0.001718,-0.001750,0.249994,0,0);-ms-transform:matrix(0.245459,0.001718,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.245459,0.001718,-0.001750,0.249994,0,0);}
.m1a_c00273{transform:matrix(0.246417,0.001232,-0.001250,0.249997,0,0);-ms-transform:matrix(0.246417,0.001232,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.246417,0.001232,-0.001250,0.249997,0,0);}
.m40_c00273{transform:matrix(0.246727,0.001234,-0.001250,0.249997,0,0);-ms-transform:matrix(0.246727,0.001234,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.246727,0.001234,-0.001250,0.249997,0,0);}
.m53_c00273{transform:matrix(0.248777,0.001244,-0.001250,0.249997,0,0);-ms-transform:matrix(0.248777,0.001244,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.248777,0.001244,-0.001250,0.249997,0,0);}
.mb8_c00273{transform:matrix(0.253257,0.002533,-0.002500,0.249988,0,0);-ms-transform:matrix(0.253257,0.002533,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.253257,0.002533,-0.002500,0.249988,0,0);}
.m93_c00273{transform:matrix(0.254050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254050,0.000000,0.000000,0.250000,0,0);}
.m87_c00273{transform:matrix(0.254054,0.001778,-0.001750,0.249994,0,0);-ms-transform:matrix(0.254054,0.001778,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.254054,0.001778,-0.001750,0.249994,0,0);}
.m2_c00273{transform:matrix(0.254590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254590,0.000000,0.000000,0.250000,0,0);}
.mb3_c00273{transform:matrix(0.254815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254815,0.000000,0.000000,0.250000,0,0);}
.m2f_c00273{transform:matrix(0.254912,0.001275,-0.001250,0.249997,0,0);-ms-transform:matrix(0.254912,0.001275,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.254912,0.001275,-0.001250,0.249997,0,0);}
.mbd_c00273{transform:matrix(0.256037,0.002560,-0.002500,0.249988,0,0);-ms-transform:matrix(0.256037,0.002560,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.256037,0.002560,-0.002500,0.249988,0,0);}
.m14_c00273{transform:matrix(0.258552,0.001293,-0.001250,0.249997,0,0);-ms-transform:matrix(0.258552,0.001293,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.258552,0.001293,-0.001250,0.249997,0,0);}
.ma1_c00273{transform:matrix(0.263095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263095,0.000000,0.000000,0.250000,0,0);}
.mbc_c00273{transform:matrix(0.264097,0.002641,-0.002500,0.249988,0,0);-ms-transform:matrix(0.264097,0.002641,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.264097,0.002641,-0.002500,0.249988,0,0);}
.mbb_c00273{transform:matrix(0.265157,0.002652,-0.002500,0.249988,0,0);-ms-transform:matrix(0.265157,0.002652,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.265157,0.002652,-0.002500,0.249988,0,0);}
.mb1_c00273{transform:matrix(0.266560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266560,0.000000,0.000000,0.250000,0,0);}
.m4c_c00273{transform:matrix(0.269592,0.001348,-0.001250,0.249997,0,0);-ms-transform:matrix(0.269592,0.001348,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.269592,0.001348,-0.001250,0.249997,0,0);}
.m42_c00273{transform:matrix(0.271097,0.001355,-0.001250,0.249997,0,0);-ms-transform:matrix(0.271097,0.001355,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.271097,0.001355,-0.001250,0.249997,0,0);}
.ma7_c00273{transform:matrix(0.271330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271330,0.000000,0.000000,0.250000,0,0);}
.m55_c00273{transform:matrix(0.273588,0.001915,-0.001750,0.249994,0,0);-ms-transform:matrix(0.273588,0.001915,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.273588,0.001915,-0.001750,0.249994,0,0);}
.m45_c00273{transform:matrix(0.275962,0.001380,-0.001250,0.249997,0,0);-ms-transform:matrix(0.275962,0.001380,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.275962,0.001380,-0.001250,0.249997,0,0);}
.m3f_c00273{transform:matrix(0.276582,0.001383,-0.001250,0.249997,0,0);-ms-transform:matrix(0.276582,0.001383,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.276582,0.001383,-0.001250,0.249997,0,0);}
.mc1_c00273{transform:matrix(0.279651,0.002797,-0.002500,0.249988,0,0);-ms-transform:matrix(0.279651,0.002797,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.279651,0.002797,-0.002500,0.249988,0,0);}
.m21_c00273{transform:matrix(0.280141,0.001401,-0.001250,0.249997,0,0);-ms-transform:matrix(0.280141,0.001401,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.280141,0.001401,-0.001250,0.249997,0,0);}
.m6b_c00273{transform:matrix(0.284008,0.001988,-0.001750,0.249994,0,0);-ms-transform:matrix(0.284008,0.001988,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.284008,0.001988,-0.001750,0.249994,0,0);}
.m6e_c00273{transform:matrix(0.285088,0.001996,-0.001750,0.249994,0,0);-ms-transform:matrix(0.285088,0.001996,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.285088,0.001996,-0.001750,0.249994,0,0);}
.m8c_c00273{transform:matrix(0.288672,0.004041,-0.003500,0.249976,0,0);-ms-transform:matrix(0.288672,0.004041,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.288672,0.004041,-0.003500,0.249976,0,0);}
.mb_c00273{transform:matrix(0.291395,0.002914,-0.002500,0.249988,0,0);-ms-transform:matrix(0.291395,0.002914,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.291395,0.002914,-0.002500,0.249988,0,0);}
.m51_c00273{transform:matrix(0.291466,0.001457,-0.001250,0.249997,0,0);-ms-transform:matrix(0.291466,0.001457,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.291466,0.001457,-0.001250,0.249997,0,0);}
.m25_c00273{transform:matrix(0.291981,0.001460,-0.001250,0.249997,0,0);-ms-transform:matrix(0.291981,0.001460,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.291981,0.001460,-0.001250,0.249997,0,0);}
.m69_c00273{transform:matrix(0.293823,0.002057,-0.001750,0.249994,0,0);-ms-transform:matrix(0.293823,0.002057,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.293823,0.002057,-0.001750,0.249994,0,0);}
.m5a_c00273{transform:matrix(0.298983,0.002093,-0.001750,0.249994,0,0);-ms-transform:matrix(0.298983,0.002093,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.298983,0.002093,-0.001750,0.249994,0,0);}
.m62_c00273{transform:matrix(0.304288,0.002130,-0.001750,0.249994,0,0);-ms-transform:matrix(0.304288,0.002130,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.304288,0.002130,-0.001750,0.249994,0,0);}
.ma4_c00273{transform:matrix(0.304375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304375,0.000000,0.000000,0.250000,0,0);}
.ma9_c00273{transform:matrix(0.306030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306030,0.000000,0.000000,0.250000,0,0);}
.m56_c00273{transform:matrix(0.308767,0.002161,-0.001750,0.249994,0,0);-ms-transform:matrix(0.308767,0.002161,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.308767,0.002161,-0.001750,0.249994,0,0);}
.m6d_c00273{transform:matrix(0.310417,0.002173,-0.001750,0.249994,0,0);-ms-transform:matrix(0.310417,0.002173,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.310417,0.002173,-0.001750,0.249994,0,0);}
.m43_c00273{transform:matrix(0.310426,0.001552,-0.001250,0.249997,0,0);-ms-transform:matrix(0.310426,0.001552,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.310426,0.001552,-0.001250,0.249997,0,0);}
.m8b_c00273{transform:matrix(0.311699,0.004364,-0.003500,0.249976,0,0);-ms-transform:matrix(0.311699,0.004364,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.311699,0.004364,-0.003500,0.249976,0,0);}
.m95_c00273{transform:matrix(0.312325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312325,0.000000,0.000000,0.250000,0,0);}
.m32_c00273{transform:matrix(0.314626,0.001573,-0.001250,0.249997,0,0);-ms-transform:matrix(0.314626,0.001573,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.314626,0.001573,-0.001250,0.249997,0,0);}
.m8d_c00273{transform:matrix(0.315884,0.004422,-0.003500,0.249976,0,0);-ms-transform:matrix(0.315884,0.004422,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.315884,0.004422,-0.003500,0.249976,0,0);}
.m30_c00273{transform:matrix(0.316026,0.001580,-0.001250,0.249997,0,0);-ms-transform:matrix(0.316026,0.001580,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.316026,0.001580,-0.001250,0.249997,0,0);}
.m6a_c00273{transform:matrix(0.316507,0.002216,-0.001750,0.249994,0,0);-ms-transform:matrix(0.316507,0.002216,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.316507,0.002216,-0.001750,0.249994,0,0);}
.m60_c00273{transform:matrix(0.317607,0.002223,-0.001750,0.249994,0,0);-ms-transform:matrix(0.317607,0.002223,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.317607,0.002223,-0.001750,0.249994,0,0);}
.m17_c00273{transform:matrix(0.324511,0.001623,-0.001250,0.249997,0,0);-ms-transform:matrix(0.324511,0.001623,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.324511,0.001623,-0.001250,0.249997,0,0);}
.ma3_c00273{transform:matrix(0.328325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328325,0.000000,0.000000,0.250000,0,0);}
.m7_c00273{transform:matrix(0.331583,0.004974,-0.003750,0.249972,0,0);-ms-transform:matrix(0.331583,0.004974,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.331583,0.004974,-0.003750,0.249972,0,0);}
.m2d_c00273{transform:matrix(0.332206,0.001661,-0.001250,0.249997,0,0);-ms-transform:matrix(0.332206,0.001661,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.332206,0.001661,-0.001250,0.249997,0,0);}
.m7d_c00273{transform:matrix(0.332442,0.002327,-0.001750,0.249994,0,0);-ms-transform:matrix(0.332442,0.002327,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.332442,0.002327,-0.001750,0.249994,0,0);}
.m9b_c00273{transform:matrix(0.336260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336260,0.000000,0.000000,0.250000,0,0);}
.m13_c00273{transform:matrix(0.336801,0.001684,-0.001250,0.249997,0,0);-ms-transform:matrix(0.336801,0.001684,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.336801,0.001684,-0.001250,0.249997,0,0);}
.mb5_c00273{transform:matrix(0.337485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337485,0.000000,0.000000,0.250000,0,0);}
.m3c_c00273{transform:matrix(0.337766,0.001689,-0.001250,0.249997,0,0);-ms-transform:matrix(0.337766,0.001689,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.337766,0.001689,-0.001250,0.249997,0,0);}
.ma0_c00273{transform:matrix(0.339440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339440,0.000000,0.000000,0.250000,0,0);}
.ma6_c00273{transform:matrix(0.340615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340615,0.000000,0.000000,0.250000,0,0);}
.m8f_c00273{transform:matrix(0.341247,0.004777,-0.003500,0.249976,0,0);-ms-transform:matrix(0.341247,0.004777,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.341247,0.004777,-0.003500,0.249976,0,0);}
.m15_c00273{transform:matrix(0.344586,0.001723,-0.001250,0.249997,0,0);-ms-transform:matrix(0.344586,0.001723,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.344586,0.001723,-0.001250,0.249997,0,0);}
.m94_c00273{transform:matrix(0.347630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347630,0.000000,0.000000,0.250000,0,0);}
.m5e_c00273{transform:matrix(0.347881,0.002435,-0.001750,0.249994,0,0);-ms-transform:matrix(0.347881,0.002435,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.347881,0.002435,-0.001750,0.249994,0,0);}
.m34_c00273{transform:matrix(0.349831,0.001749,-0.001250,0.249997,0,0);-ms-transform:matrix(0.349831,0.001749,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.349831,0.001749,-0.001250,0.249997,0,0);}
.m6c_c00273{transform:matrix(0.351166,0.002458,-0.001750,0.249994,0,0);-ms-transform:matrix(0.351166,0.002458,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.351166,0.002458,-0.001750,0.249994,0,0);}
.m80_c00273{transform:matrix(0.353431,0.002474,-0.001750,0.249994,0,0);-ms-transform:matrix(0.353431,0.002474,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.353431,0.002474,-0.001750,0.249994,0,0);}
.m9d_c00273{transform:matrix(0.353885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353885,0.000000,0.000000,0.250000,0,0);}
.m20_c00273{transform:matrix(0.357771,0.001789,-0.001250,0.249997,0,0);-ms-transform:matrix(0.357771,0.001789,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.357771,0.001789,-0.001250,0.249997,0,0);}
.m83_c00273{transform:matrix(0.358046,0.002506,-0.001750,0.249994,0,0);-ms-transform:matrix(0.358046,0.002506,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.358046,0.002506,-0.001750,0.249994,0,0);}
.m16_c00273{transform:matrix(0.358681,0.001793,-0.001250,0.249997,0,0);-ms-transform:matrix(0.358681,0.001793,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.358681,0.001793,-0.001250,0.249997,0,0);}
.mb9_c00273{transform:matrix(0.368512,0.003685,-0.002500,0.249988,0,0);-ms-transform:matrix(0.368512,0.003685,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.368512,0.003685,-0.002500,0.249988,0,0);}
.m48_c00273{transform:matrix(0.369990,0.001850,-0.001250,0.249997,0,0);-ms-transform:matrix(0.369990,0.001850,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.369990,0.001850,-0.001250,0.249997,0,0);}
.m76_c00273{transform:matrix(0.375451,0.002628,-0.001750,0.249994,0,0);-ms-transform:matrix(0.375451,0.002628,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.375451,0.002628,-0.001750,0.249994,0,0);}
.m4b_c00273{transform:matrix(0.377245,0.001886,-0.001250,0.249997,0,0);-ms-transform:matrix(0.377245,0.001886,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.377245,0.001886,-0.001250,0.249997,0,0);}
.m1c_c00273{transform:matrix(0.378260,0.001891,-0.001250,0.249997,0,0);-ms-transform:matrix(0.378260,0.001891,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.378260,0.001891,-0.001250,0.249997,0,0);}
.m6f_c00273{transform:matrix(0.380206,0.002661,-0.001750,0.249994,0,0);-ms-transform:matrix(0.380206,0.002661,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.380206,0.002661,-0.001750,0.249994,0,0);}
.m88_c00273{transform:matrix(0.380556,0.002664,-0.001750,0.249994,0,0);-ms-transform:matrix(0.380556,0.002664,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.380556,0.002664,-0.001750,0.249994,0,0);}
.m1f_c00273{transform:matrix(0.381155,0.001906,-0.001250,0.249997,0,0);-ms-transform:matrix(0.381155,0.001906,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.381155,0.001906,-0.001250,0.249997,0,0);}
.m52_c00273{transform:matrix(0.381870,0.001909,-0.001250,0.249997,0,0);-ms-transform:matrix(0.381870,0.001909,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.381870,0.001909,-0.001250,0.249997,0,0);}
.m78_c00273{transform:matrix(0.382366,0.002677,-0.001750,0.249994,0,0);-ms-transform:matrix(0.382366,0.002677,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.382366,0.002677,-0.001750,0.249994,0,0);}
.mb0_c00273{transform:matrix(0.388920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388920,0.000000,0.000000,0.250000,0,0);}
.m81_c00273{transform:matrix(0.389645,0.002728,-0.001750,0.249994,0,0);-ms-transform:matrix(0.389645,0.002728,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.389645,0.002728,-0.001750,0.249994,0,0);}
.m24_c00273{transform:matrix(0.397525,0.001988,-0.001250,0.249997,0,0);-ms-transform:matrix(0.397525,0.001988,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.397525,0.001988,-0.001250,0.249997,0,0);}
.m67_c00273{transform:matrix(0.398445,0.002789,-0.001750,0.249994,0,0);-ms-transform:matrix(0.398445,0.002789,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.398445,0.002789,-0.001750,0.249994,0,0);}
.m59_c00273{transform:matrix(0.398715,0.002791,-0.001750,0.249994,0,0);-ms-transform:matrix(0.398715,0.002791,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.398715,0.002791,-0.001750,0.249994,0,0);}
.m2b_c00273{transform:matrix(0.399160,0.001996,-0.001250,0.249997,0,0);-ms-transform:matrix(0.399160,0.001996,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.399160,0.001996,-0.001250,0.249997,0,0);}
.m18_c00273{transform:matrix(0.399345,0.001997,-0.001250,0.249997,0,0);-ms-transform:matrix(0.399345,0.001997,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.399345,0.001997,-0.001250,0.249997,0,0);}
.m50_c00273{transform:matrix(0.401355,0.002007,-0.001250,0.249997,0,0);-ms-transform:matrix(0.401355,0.002007,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.401355,0.002007,-0.001250,0.249997,0,0);}
.m12_c00273{transform:matrix(0.401810,0.004018,-0.002500,0.249988,0,0);-ms-transform:matrix(0.401810,0.004018,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.401810,0.004018,-0.002500,0.249988,0,0);}
.m91_c00273{transform:matrix(0.402310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402310,0.000000,0.000000,0.250000,0,0);}
.m46_c00273{transform:matrix(0.411625,0.002058,-0.001250,0.249997,0,0);-ms-transform:matrix(0.411625,0.002058,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.411625,0.002058,-0.001250,0.249997,0,0);}
.m8a_c00273{transform:matrix(0.413005,0.005782,-0.003500,0.249976,0,0);-ms-transform:matrix(0.413005,0.005782,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.413005,0.005782,-0.003500,0.249976,0,0);}
.mb4_c00273{transform:matrix(0.413655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413655,0.000000,0.000000,0.250000,0,0);}
.m41_c00273{transform:matrix(0.425320,0.002127,-0.001250,0.249997,0,0);-ms-transform:matrix(0.425320,0.002127,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.425320,0.002127,-0.001250,0.249997,0,0);}
.m82_c00273{transform:matrix(0.429124,0.003004,-0.001750,0.249994,0,0);-ms-transform:matrix(0.429124,0.003004,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.429124,0.003004,-0.001750,0.249994,0,0);}
.m44_c00273{transform:matrix(0.431915,0.002160,-0.001250,0.249997,0,0);-ms-transform:matrix(0.431915,0.002160,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.431915,0.002160,-0.001250,0.249997,0,0);}
.m1e_c00273{transform:matrix(0.443779,0.002219,-0.001250,0.249997,0,0);-ms-transform:matrix(0.443779,0.002219,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.443779,0.002219,-0.001250,0.249997,0,0);}
.m61_c00273{transform:matrix(0.445974,0.003122,-0.001750,0.249994,0,0);-ms-transform:matrix(0.445974,0.003122,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.445974,0.003122,-0.001750,0.249994,0,0);}
.mb6_c00273{transform:matrix(0.447495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447495,0.000000,0.000000,0.250000,0,0);}
.m5f_c00273{transform:matrix(0.462674,0.003239,-0.001750,0.249994,0,0);-ms-transform:matrix(0.462674,0.003239,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.462674,0.003239,-0.001750,0.249994,0,0);}
.m8e_c00273{transform:matrix(0.472714,0.006618,-0.003500,0.249976,0,0);-ms-transform:matrix(0.472714,0.006618,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.472714,0.006618,-0.003500,0.249976,0,0);}
.mbf_c00273{transform:matrix(0.474586,0.004746,-0.002500,0.249988,0,0);-ms-transform:matrix(0.474586,0.004746,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.474586,0.004746,-0.002500,0.249988,0,0);}
.m8_c00273{transform:matrix(0.477211,0.007158,-0.003750,0.249972,0,0);-ms-transform:matrix(0.477211,0.007158,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.477211,0.007158,-0.003750,0.249972,0,0);}
.m89_c00273{transform:matrix(0.487918,0.003415,-0.001750,0.249994,0,0);-ms-transform:matrix(0.487918,0.003415,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.487918,0.003415,-0.001750,0.249994,0,0);}
.m27_c00273{transform:matrix(0.507249,0.002536,-0.001250,0.249997,0,0);-ms-transform:matrix(0.507249,0.002536,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.507249,0.002536,-0.001250,0.249997,0,0);}
.m29_c00273{transform:matrix(0.509174,0.002546,-0.001250,0.249997,0,0);-ms-transform:matrix(0.509174,0.002546,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.509174,0.002546,-0.001250,0.249997,0,0);}
.m7a_c00273{transform:matrix(0.510607,0.003574,-0.001750,0.249994,0,0);-ms-transform:matrix(0.510607,0.003574,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.510607,0.003574,-0.001750,0.249994,0,0);}
.m1d_c00273{transform:matrix(0.518364,0.002592,-0.001250,0.249997,0,0);-ms-transform:matrix(0.518364,0.002592,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.518364,0.002592,-0.001250,0.249997,0,0);}
.m54_c00273{transform:matrix(0.525682,0.003680,-0.001750,0.249994,0,0);-ms-transform:matrix(0.525682,0.003680,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.525682,0.003680,-0.001750,0.249994,0,0);}
.ma8_c00273{transform:matrix(0.528755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528755,0.000000,0.000000,0.250000,0,0);}
.m3e_c00273{transform:matrix(0.531013,0.002655,-0.001250,0.249997,0,0);-ms-transform:matrix(0.531013,0.002655,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.531013,0.002655,-0.001250,0.249997,0,0);}
.mc0_c00273{transform:matrix(0.533923,0.005339,-0.002500,0.249988,0,0);-ms-transform:matrix(0.533923,0.005339,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.533923,0.005339,-0.002500,0.249988,0,0);}
.m74_c00273{transform:matrix(0.540007,0.003780,-0.001750,0.249994,0,0);-ms-transform:matrix(0.540007,0.003780,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.540007,0.003780,-0.001750,0.249994,0,0);}
.m92_c00273{transform:matrix(0.545250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545250,0.000000,0.000000,0.250000,0,0);}
.m68_c00273{transform:matrix(0.555166,0.003886,-0.001750,0.249994,0,0);-ms-transform:matrix(0.555166,0.003886,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.555166,0.003886,-0.001750,0.249994,0,0);}
.mbe_c00273{transform:matrix(0.560777,0.005608,-0.002500,0.249988,0,0);-ms-transform:matrix(0.560777,0.005608,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.560777,0.005608,-0.002500,0.249988,0,0);}
.m49_c00273{transform:matrix(0.574773,0.002874,-0.001250,0.249997,0,0);-ms-transform:matrix(0.574773,0.002874,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.574773,0.002874,-0.001250,0.249997,0,0);}
.mc2_c00273{transform:matrix(0.586666,0.005867,-0.002500,0.249988,0,0);-ms-transform:matrix(0.586666,0.005867,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.586666,0.005867,-0.002500,0.249988,0,0);}
.m85_c00273{transform:matrix(0.591106,0.004138,-0.001750,0.249994,0,0);-ms-transform:matrix(0.591106,0.004138,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.591106,0.004138,-0.001750,0.249994,0,0);}
.m5d_c00273{transform:matrix(0.609615,0.004267,-0.001750,0.249994,0,0);-ms-transform:matrix(0.609615,0.004267,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.609615,0.004267,-0.001750,0.249994,0,0);}
.m2e_c00273{transform:matrix(0.613852,0.003069,-0.001250,0.249997,0,0);-ms-transform:matrix(0.613852,0.003069,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.613852,0.003069,-0.001250,0.249997,0,0);}
.m98_c00273{transform:matrix(0.631125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.631125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.631125,0.000000,0.000000,0.250000,0,0);}
.ma5_c00273{transform:matrix(0.634895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634895,0.000000,0.000000,0.250000,0,0);}
.m47_c00273{transform:matrix(0.641377,0.003207,-0.001250,0.249997,0,0);-ms-transform:matrix(0.641377,0.003207,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.641377,0.003207,-0.001250,0.249997,0,0);}
.m99_c00273{transform:matrix(0.643345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.643345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.643345,0.000000,0.000000,0.250000,0,0);}
.m84_c00273{transform:matrix(0.650314,0.004552,-0.001750,0.249994,0,0);-ms-transform:matrix(0.650314,0.004552,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.650314,0.004552,-0.001750,0.249994,0,0);}
.m9a_c00273{transform:matrix(0.656215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.656215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.656215,0.000000,0.000000,0.250000,0,0);}
.mac_c00273{transform:matrix(0.662120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662120,0.000000,0.000000,0.250000,0,0);}
.m3d_c00273{transform:matrix(0.662927,0.003315,-0.001250,0.249997,0,0);-ms-transform:matrix(0.662927,0.003315,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.662927,0.003315,-0.001250,0.249997,0,0);}
.m90_c00273{transform:matrix(0.683908,0.009575,-0.003500,0.249976,0,0);-ms-transform:matrix(0.683908,0.009575,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.683908,0.009575,-0.003500,0.249976,0,0);}
.m97_c00273{transform:matrix(0.705640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.705640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.705640,0.000000,0.000000,0.250000,0,0);}
.m63_c00273{transform:matrix(0.719117,0.005034,-0.001750,0.249994,0,0);-ms-transform:matrix(0.719117,0.005034,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.719117,0.005034,-0.001750,0.249994,0,0);}
.m7c_c00273{transform:matrix(0.776261,0.005434,-0.001750,0.249994,0,0);-ms-transform:matrix(0.776261,0.005434,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.776261,0.005434,-0.001750,0.249994,0,0);}
.m28_c00273{transform:matrix(0.782815,0.003914,-0.001250,0.249997,0,0);-ms-transform:matrix(0.782815,0.003914,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.782815,0.003914,-0.001250,0.249997,0,0);}
.m79_c00273{transform:matrix(0.814495,0.005701,-0.001750,0.249994,0,0);-ms-transform:matrix(0.814495,0.005701,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.814495,0.005701,-0.001750,0.249994,0,0);}
.m22_c00273{transform:matrix(0.854609,0.004273,-0.001250,0.249997,0,0);-ms-transform:matrix(0.854609,0.004273,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.854609,0.004273,-0.001250,0.249997,0,0);}
.m37_c00273{transform:matrix(0.937218,0.004686,-0.001250,0.249997,0,0);-ms-transform:matrix(0.937218,0.004686,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.937218,0.004686,-0.001250,0.249997,0,0);}
.m4d_c00273{transform:matrix(0.949288,0.004746,-0.001250,0.249997,0,0);-ms-transform:matrix(0.949288,0.004746,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.949288,0.004746,-0.001250,0.249997,0,0);}
.m2c_c00273{transform:matrix(1.455452,0.007277,-0.001250,0.249997,0,0);-ms-transform:matrix(1.455452,0.007277,-0.001250,0.249997,0,0);-webkit-transform:matrix(1.455452,0.007277,-0.001250,0.249997,0,0);}
.m9c_c00273{transform:matrix(1.995875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.995875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.995875,0.000000,0.000000,0.250000,0,0);}
.v0_c00273{vertical-align:0.000000px;}
.ls0_c00273{letter-spacing:0.000000px;}
.sc__c00273{text-shadow:none;}
.sc0_c00273{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__c00273{-webkit-text-stroke:0px transparent;}
.sc0_c00273{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00273{word-spacing:0.000000px;}
.fc0_c00273{color:transparent;}
.fs11_c00273{font-size:24.000000px;}
.fsf_c00273{font-size:60.000000px;}
.fs0_c00273{font-size:66.000000px;}
.fs6_c00273{font-size:72.000900px;}
.fsb_c00273{font-size:72.001764px;}
.fs2_c00273{font-size:72.008100px;}
.fs8_c00273{font-size:78.000975px;}
.fsc_c00273{font-size:78.001911px;}
.fs5_c00273{font-size:84.001050px;}
.fsa_c00273{font-size:84.002058px;}
.fsd_c00273{font-size:84.008232px;}
.fs3_c00273{font-size:84.009449px;}
.fs7_c00273{font-size:90.001125px;}
.fs9_c00273{font-size:96.002352px;}
.fs4_c00273{font-size:96.004800px;}
.fs12_c00273{font-size:108.005400px;}
.fs1_c00273{font-size:108.012149px;}
.fse_c00273{font-size:114.000000px;}
.fs10_c00273{font-size:126.000000px;}
.y0_c00273{bottom:0.000000px;}
.yb6_c00273{bottom:250.813620px;}
.yb5_c00273{bottom:251.491260px;}
.yb4_c00273{bottom:251.590965px;}
.yb3_c00273{bottom:252.285285px;}
.yb2_c00273{bottom:253.208535px;}
.yb1_c00273{bottom:253.631820px;}
.yb0_c00273{bottom:254.139780px;}
.yaf_c00273{bottom:254.771715px;}
.yae_c00273{bottom:254.981955px;}
.yad_c00273{bottom:256.100370px;}
.yac_c00273{bottom:256.500570px;}
.yab_c00273{bottom:257.075775px;}
.yaa_c00273{bottom:257.583000px;}
.ya9_c00273{bottom:274.860000px;}
.ya8_c00273{bottom:280.818000px;}
.ya7_c00273{bottom:280.920000px;}
.ya6_c00273{bottom:281.035500px;}
.ya5_c00273{bottom:281.665500px;}
.ya4_c00273{bottom:281.764500px;}
.ya3_c00273{bottom:282.088500px;}
.ya2_c00273{bottom:282.181500px;}
.ya1_c00273{bottom:282.706500px;}
.ya0_c00273{bottom:282.901500px;}
.y9f_c00273{bottom:283.543500px;}
.y9e_c00273{bottom:283.777500px;}
.y9d_c00273{bottom:344.394000px;}
.y9c_c00273{bottom:344.844000px;}
.y9b_c00273{bottom:346.006500px;}
.y9a_c00273{bottom:346.306500px;}
.y99_c00273{bottom:347.326500px;}
.y98_c00273{bottom:348.043500px;}
.y97_c00273{bottom:348.163500px;}
.y96_c00273{bottom:348.594000px;}
.y95_c00273{bottom:349.464000px;}
.y94_c00273{bottom:350.571000px;}
.y93_c00273{bottom:351.100500px;}
.y92_c00273{bottom:351.274500px;}
.y91_c00273{bottom:414.766500px;}
.y90_c00273{bottom:477.318000px;}
.y8f_c00273{bottom:504.643065px;}
.y8e_c00273{bottom:505.605558px;}
.y8d_c00273{bottom:506.220900px;}
.y8c_c00273{bottom:507.217224px;}
.y8b_c00273{bottom:507.765975px;}
.y8a_c00273{bottom:508.910013px;}
.y89_c00273{bottom:510.276000px;}
.y88_c00273{bottom:565.947919px;}
.y87_c00273{bottom:566.566116px;}
.y86_c00273{bottom:566.795118px;}
.y85_c00273{bottom:567.494035px;}
.y84_c00273{bottom:568.337068px;}
.y83_c00273{bottom:569.766973px;}
.y82_c00273{bottom:570.164049px;}
.y81_c00273{bottom:571.308651px;}
.y80_c00273{bottom:572.020707px;}
.y7f_c00273{bottom:572.698542px;}
.y7e_c00273{bottom:573.424219px;}
.y7d_c00273{bottom:574.829138px;}
.y7c_c00273{bottom:598.407876px;}
.y7b_c00273{bottom:599.805463px;}
.y7a_c00273{bottom:599.934021px;}
.y79_c00273{bottom:600.944866px;}
.y78_c00273{bottom:602.000205px;}
.y77_c00273{bottom:602.940862px;}
.y76_c00273{bottom:603.465935px;}
.y75_c00273{bottom:604.196595px;}
.y74_c00273{bottom:604.414180px;}
.y73_c00273{bottom:605.198214px;}
.y72_c00273{bottom:605.341486px;}
.y71_c00273{bottom:630.336751px;}
.y70_c00273{bottom:630.795340px;}
.y6f_c00273{bottom:630.980782px;}
.y6e_c00273{bottom:632.279298px;}
.y6d_c00273{bottom:633.443082px;}
.y6c_c00273{bottom:633.911757px;}
.y6b_c00273{bottom:634.547235px;}
.y6a_c00273{bottom:636.221830px;}
.y69_c00273{bottom:636.512472px;}
.y68_c00273{bottom:637.333917px;}
.y67_c00273{bottom:638.390004px;}
.y66_c00273{bottom:638.555307px;}
.y65_c00273{bottom:638.818998px;}
.y64_c00273{bottom:660.231340px;}
.y63_c00273{bottom:661.734090px;}
.y62_c00273{bottom:663.699966px;}
.y61_c00273{bottom:665.735748px;}
.y60_c00273{bottom:667.413450px;}
.y5f_c00273{bottom:667.930722px;}
.y5e_c00273{bottom:669.502285px;}
.y5d_c00273{bottom:670.328529px;}
.y5c_c00273{bottom:672.322117px;}
.y5b_c00273{bottom:694.765567px;}
.y5a_c00273{bottom:695.446545px;}
.y59_c00273{bottom:695.782786px;}
.y58_c00273{bottom:696.688811px;}
.y57_c00273{bottom:697.077226px;}
.y56_c00273{bottom:697.978851px;}
.y55_c00273{bottom:698.160259px;}
.y54_c00273{bottom:698.718880px;}
.y53_c00273{bottom:699.034500px;}
.y52_c00273{bottom:757.234838px;}
.y51_c00273{bottom:757.923728px;}
.y50_c00273{bottom:758.347028px;}
.y4f_c00273{bottom:759.523673px;}
.y4e_c00273{bottom:759.887947px;}
.y4d_c00273{bottom:760.356120px;}
.y4c_c00273{bottom:762.154125px;}
.y4b_c00273{bottom:762.678150px;}
.y4a_c00273{bottom:763.839375px;}
.y49_c00273{bottom:764.309310px;}
.y48_c00273{bottom:766.163190px;}
.y47_c00273{bottom:766.264110px;}
.y46_c00273{bottom:791.472765px;}
.y45_c00273{bottom:792.040875px;}
.y44_c00273{bottom:792.276540px;}
.y43_c00273{bottom:792.752033px;}
.y42_c00273{bottom:793.240035px;}
.y41_c00273{bottom:794.364968px;}
.y40_c00273{bottom:795.090203px;}
.y3f_c00273{bottom:795.282135px;}
.y3e_c00273{bottom:795.999023px;}
.y3d_c00273{bottom:796.214033px;}
.y3c_c00273{bottom:796.501605px;}
.y3b_c00273{bottom:820.644353px;}
.y3a_c00273{bottom:822.142995px;}
.y39_c00273{bottom:823.634865px;}
.y38_c00273{bottom:824.285235px;}
.y37_c00273{bottom:825.095168px;}
.y36_c00273{bottom:827.380928px;}
.y35_c00273{bottom:828.744720px;}
.y34_c00273{bottom:829.550528px;}
.y33_c00273{bottom:830.207842px;}
.y32_c00273{bottom:830.518365px;}
.y31_c00273{bottom:852.047760px;}
.y30_c00273{bottom:852.603945px;}
.y2f_c00273{bottom:853.550715px;}
.y2e_c00273{bottom:854.259510px;}
.y2d_c00273{bottom:855.402945px;}
.y2c_c00273{bottom:856.188427px;}
.y2b_c00273{bottom:857.957873px;}
.y2a_c00273{bottom:858.762773px;}
.y29_c00273{bottom:859.257953px;}
.y28_c00273{bottom:860.650178px;}
.y27_c00273{bottom:862.002645px;}
.y26_c00273{bottom:884.718233px;}
.y25_c00273{bottom:884.961293px;}
.y24_c00273{bottom:885.554768px;}
.y23_c00273{bottom:885.881242px;}
.y22_c00273{bottom:886.117515px;}
.y21_c00273{bottom:887.035005px;}
.y20_c00273{bottom:887.276633px;}
.y1f_c00273{bottom:887.766135px;}
.y1e_c00273{bottom:888.056333px;}
.y1d_c00273{bottom:888.277327px;}
.y1c_c00273{bottom:888.682973px;}
.y1b_c00273{bottom:918.544718px;}
.y1a_c00273{bottom:918.706860px;}
.y19_c00273{bottom:919.194165px;}
.y18_c00273{bottom:919.380382px;}
.y17_c00273{bottom:919.745040px;}
.y16_c00273{bottom:920.025773px;}
.y15_c00273{bottom:920.514675px;}
.y14_c00273{bottom:920.852048px;}
.y13_c00273{bottom:921.069458px;}
.y12_c00273{bottom:921.559500px;}
.y11_c00273{bottom:948.049755px;}
.y10_c00273{bottom:948.363015px;}
.yf_c00273{bottom:948.921885px;}
.ye_c00273{bottom:949.937055px;}
.yd_c00273{bottom:950.469225px;}
.yc_c00273{bottom:951.346710px;}
.yb_c00273{bottom:951.719190px;}
.ya_c00273{bottom:952.464105px;}
.y9_c00273{bottom:952.831500px;}
.y8_c00273{bottom:1023.699757px;}
.y6_c00273{bottom:1056.495570px;}
.y7_c00273{bottom:1056.495705px;}
.y5_c00273{bottom:1087.035982px;}
.y4_c00273{bottom:1088.360557px;}
.y3_c00273{bottom:1088.862937px;}
.y2_c00273{bottom:1089.993000px;}
.y1_c00273{bottom:1141.144500px;}
.h13_c00273{height:24.000000px;}
.h11_c00273{height:60.000000px;}
.h2_c00273{height:66.000000px;}
.h8_c00273{height:72.000900px;}
.hd_c00273{height:72.001764px;}
.h4_c00273{height:72.008100px;}
.ha_c00273{height:78.000975px;}
.he_c00273{height:78.001911px;}
.h7_c00273{height:84.001050px;}
.hc_c00273{height:84.002058px;}
.hf_c00273{height:84.008232px;}
.h5_c00273{height:84.009449px;}
.h9_c00273{height:90.001125px;}
.hb_c00273{height:96.002352px;}
.h6_c00273{height:96.004800px;}
.h14_c00273{height:108.005400px;}
.h3_c00273{height:108.012149px;}
.h10_c00273{height:114.000000px;}
.h12_c00273{height:126.000000px;}
.h1_c00273{height:1165.500000px;}
.h0_c00273{height:1165.800000px;}
.w0_c00273{width:915.000000px;}
.x0_c00273{left:0.000000px;}
.x3a_c00273{left:37.062833px;}
.x41_c00273{left:49.910970px;}
.x42_c00273{left:56.594633px;}
.x30_c00273{left:61.281517px;}
.x14_c00273{left:72.810000px;}
.xb_c00273{left:76.255500px;}
.x1d_c00273{left:77.651242px;}
.x27_c00273{left:80.483415px;}
.x31_c00273{left:81.984982px;}
.x63_c00273{left:94.545509px;}
.x3b_c00273{left:99.778388px;}
.x5a_c00273{left:102.635736px;}
.x4b_c00273{left:108.271500px;}
.xc_c00273{left:112.995000px;}
.x53_c00273{left:122.282709px;}
.x32_c00273{left:125.845792px;}
.x8a_c00273{left:127.983000px;}
.x5b_c00273{left:133.276235px;}
.x1e_c00273{left:135.679665px;}
.x7e_c00273{left:139.590000px;}
.x6b_c00273{left:145.241417px;}
.x4c_c00273{left:153.360000px;}
.x28_c00273{left:164.972265px;}
.x1f_c00273{left:167.278350px;}
.x15_c00273{left:170.818500px;}
.x33_c00273{left:179.604607px;}
.x8b_c00273{left:185.503500px;}
.xd_c00273{left:187.486500px;}
.x3c_c00273{left:189.454545px;}
.x7f_c00273{left:193.681500px;}
.x64_c00273{left:198.527090px;}
.x20_c00273{left:208.817437px;}
.x43_c00273{left:211.449885px;}
.x16_c00273{left:214.300500px;}
.x54_c00273{left:221.929137px;}
.xe_c00273{left:224.734500px;}
.x77_c00273{left:230.040000px;}
.x4d_c00273{left:233.163000px;}
.x29_c00273{left:252.012480px;}
.x4e_c00273{left:259.078500px;}
.x55_c00273{left:263.245878px;}
.x65_c00273{left:264.976731px;}
.x5c_c00273{left:267.345662px;}
.x34_c00273{left:270.558562px;}
.x78_c00273{left:271.620000px;}
.x21_c00273{left:278.817240px;}
.x17_c00273{left:281.775000px;}
.x2a_c00273{left:282.946777px;}
.x44_c00273{left:288.891015px;}
.x3d_c00273{left:304.186328px;}
.x7b_c00273{left:306.450000px;}
.xf_c00273{left:312.483000px;}
.x85_c00273{left:316.042500px;}
.x6c_c00273{left:320.791860px;}
.x45_c00273{left:323.794268px;}
.x2b_c00273{left:333.224010px;}
.x79_c00273{left:335.340000px;}
.x8c_c00273{left:337.365000px;}
.x56_c00273{left:341.819228px;}
.x80_c00273{left:345.708000px;}
.x86_c00273{left:348.421500px;}
.x4_c00273{left:349.717500px;}
.x8d_c00273{left:358.389000px;}
.x7c_c00273{left:362.880000px;}
.x10_c00273{left:365.700000px;}
.x57_c00273{left:367.712876px;}
.x8_c00273{left:373.682542px;}
.x18_c00273{left:379.555500px;}
.x7a_c00273{left:383.130000px;}
.x73_c00273{left:386.238000px;}
.x4f_c00273{left:387.882000px;}
.x66_c00273{left:398.291503px;}
.x5d_c00273{left:407.729784px;}
.xa_c00273{left:414.187328px;}
.x8e_c00273{left:421.582500px;}
.x35_c00273{left:422.902942px;}
.x5_c00273{left:425.055000px;}
.x1_c00273{left:426.600000px;}
.x19_c00273{left:435.702000px;}
.x6d_c00273{left:436.878552px;}
.x81_c00273{left:443.139000px;}
.x22_c00273{left:444.339082px;}
.x2_c00273{left:446.850000px;}
.x9_c00273{left:451.991160px;}
.x5e_c00273{left:453.081558px;}
.x6_c00273{left:458.547000px;}
.x6e_c00273{left:461.673488px;}
.x7d_c00273{left:463.320000px;}
.x11_c00273{left:467.217000px;}
.x8f_c00273{left:472.378500px;}
.x46_c00273{left:474.922215px;}
.x36_c00273{left:476.886743px;}
.x23_c00273{left:478.093245px;}
.x3_c00273{left:481.140000px;}
.x5f_c00273{left:486.604920px;}
.x2c_c00273{left:492.900728px;}
.x67_c00273{left:494.194316px;}
.x47_c00273{left:499.176000px;}
.x3e_c00273{left:505.870305px;}
.x74_c00273{left:507.151500px;}
.x1a_c00273{left:508.633500px;}
.x90_c00273{left:514.707000px;}
.x37_c00273{left:520.258575px;}
.x82_c00273{left:521.626500px;}
.x12_c00273{left:523.104000px;}
.x24_c00273{left:524.787780px;}
.x83_c00273{left:544.713000px;}
.x7_c00273{left:546.852000px;}
.x6f_c00273{left:551.082860px;}
.x58_c00273{left:553.407981px;}
.x13_c00273{left:554.430000px;}
.x2d_c00273{left:564.383798px;}
.x60_c00273{left:569.712846px;}
.x50_c00273{left:572.802000px;}
.x48_c00273{left:577.601078px;}
.x68_c00273{left:586.098243px;}
.x3f_c00273{left:594.700470px;}
.x69_c00273{left:597.820418px;}
.x70_c00273{left:603.798542px;}
.x49_c00273{left:605.859668px;}
.x91_c00273{left:607.032000px;}
.x25_c00273{left:609.581932px;}
.x38_c00273{left:619.727602px;}
.x51_c00273{left:620.836500px;}
.x75_c00273{left:622.270500px;}
.x87_c00273{left:627.016500px;}
.x84_c00273{left:634.159500px;}
.x1b_c00273{left:643.338000px;}
.x26_c00273{left:644.393587px;}
.x88_c00273{left:646.173000px;}
.x71_c00273{left:647.498291px;}
.x4a_c00273{left:651.835373px;}
.x61_c00273{left:662.424800px;}
.x40_c00273{left:665.721405px;}
.x2e_c00273{left:667.791105px;}
.x1c_c00273{left:675.766500px;}
.x92_c00273{left:686.434500px;}
.x76_c00273{left:691.020000px;}
.x72_c00273{left:700.380452px;}
.x2f_c00273{left:702.526192px;}
.x62_c00273{left:708.355542px;}
.x52_c00273{left:718.119000px;}
.x39_c00273{left:719.651107px;}
.x6a_c00273{left:724.829358px;}
.x59_c00273{left:726.838700px;}
.x89_c00273{left:733.590000px;}
.x93_c00273{left:754.198500px;}
@media print{
.v0_c00273{vertical-align:0.000000pt;}
.ls0_c00273{letter-spacing:0.000000pt;}
.ws0_c00273{word-spacing:0.000000pt;}
.fs11_c00273{font-size:21.333333pt;}
.fsf_c00273{font-size:53.333333pt;}
.fs0_c00273{font-size:58.666667pt;}
.fs6_c00273{font-size:64.000800pt;}
.fsb_c00273{font-size:64.001568pt;}
.fs2_c00273{font-size:64.007200pt;}
.fs8_c00273{font-size:69.334200pt;}
.fsc_c00273{font-size:69.335032pt;}
.fs5_c00273{font-size:74.667600pt;}
.fsa_c00273{font-size:74.668496pt;}
.fsd_c00273{font-size:74.673984pt;}
.fs3_c00273{font-size:74.675066pt;}
.fs7_c00273{font-size:80.001000pt;}
.fs9_c00273{font-size:85.335424pt;}
.fs4_c00273{font-size:85.337600pt;}
.fs12_c00273{font-size:96.004800pt;}
.fs1_c00273{font-size:96.010799pt;}
.fse_c00273{font-size:101.333333pt;}
.fs10_c00273{font-size:112.000000pt;}
.y0_c00273{bottom:0.000000pt;}
.yb6_c00273{bottom:222.945440pt;}
.yb5_c00273{bottom:223.547787pt;}
.yb4_c00273{bottom:223.636413pt;}
.yb3_c00273{bottom:224.253587pt;}
.yb2_c00273{bottom:225.074253pt;}
.yb1_c00273{bottom:225.450507pt;}
.yb0_c00273{bottom:225.902027pt;}
.yaf_c00273{bottom:226.463747pt;}
.yae_c00273{bottom:226.650627pt;}
.yad_c00273{bottom:227.644773pt;}
.yac_c00273{bottom:228.000507pt;}
.yab_c00273{bottom:228.511800pt;}
.yaa_c00273{bottom:228.962667pt;}
.ya9_c00273{bottom:244.320000pt;}
.ya8_c00273{bottom:249.616000pt;}
.ya7_c00273{bottom:249.706667pt;}
.ya6_c00273{bottom:249.809333pt;}
.ya5_c00273{bottom:250.369333pt;}
.ya4_c00273{bottom:250.457333pt;}
.ya3_c00273{bottom:250.745333pt;}
.ya2_c00273{bottom:250.828000pt;}
.ya1_c00273{bottom:251.294667pt;}
.ya0_c00273{bottom:251.468000pt;}
.y9f_c00273{bottom:252.038667pt;}
.y9e_c00273{bottom:252.246667pt;}
.y9d_c00273{bottom:306.128000pt;}
.y9c_c00273{bottom:306.528000pt;}
.y9b_c00273{bottom:307.561333pt;}
.y9a_c00273{bottom:307.828000pt;}
.y99_c00273{bottom:308.734667pt;}
.y98_c00273{bottom:309.372000pt;}
.y97_c00273{bottom:309.478667pt;}
.y96_c00273{bottom:309.861333pt;}
.y95_c00273{bottom:310.634667pt;}
.y94_c00273{bottom:311.618667pt;}
.y93_c00273{bottom:312.089333pt;}
.y92_c00273{bottom:312.244000pt;}
.y91_c00273{bottom:368.681333pt;}
.y90_c00273{bottom:424.282667pt;}
.y8f_c00273{bottom:448.571613pt;}
.y8e_c00273{bottom:449.427163pt;}
.y8d_c00273{bottom:449.974133pt;}
.y8c_c00273{bottom:450.859755pt;}
.y8b_c00273{bottom:451.347533pt;}
.y8a_c00273{bottom:452.364456pt;}
.y89_c00273{bottom:453.578667pt;}
.y88_c00273{bottom:503.064817pt;}
.y87_c00273{bottom:503.614325pt;}
.y86_c00273{bottom:503.817883pt;}
.y85_c00273{bottom:504.439143pt;}
.y84_c00273{bottom:505.188505pt;}
.y83_c00273{bottom:506.459532pt;}
.y82_c00273{bottom:506.812488pt;}
.y81_c00273{bottom:507.829912pt;}
.y80_c00273{bottom:508.462851pt;}
.y7f_c00273{bottom:509.065371pt;}
.y7e_c00273{bottom:509.710417pt;}
.y7d_c00273{bottom:510.959233pt;}
.y7c_c00273{bottom:531.918112pt;}
.y7b_c00273{bottom:533.160412pt;}
.y7a_c00273{bottom:533.274685pt;}
.y79_c00273{bottom:534.173215pt;}
.y78_c00273{bottom:535.111293pt;}
.y77_c00273{bottom:535.947433pt;}
.y76_c00273{bottom:536.414164pt;}
.y75_c00273{bottom:537.063640pt;}
.y74_c00273{bottom:537.257049pt;}
.y73_c00273{bottom:537.953968pt;}
.y72_c00273{bottom:538.081321pt;}
.y71_c00273{bottom:560.299335pt;}
.y70_c00273{bottom:560.706969pt;}
.y6f_c00273{bottom:560.871807pt;}
.y6e_c00273{bottom:562.026043pt;}
.y6d_c00273{bottom:563.060517pt;}
.y6c_c00273{bottom:563.477117pt;}
.y6b_c00273{bottom:564.041987pt;}
.y6a_c00273{bottom:565.530516pt;}
.y69_c00273{bottom:565.788864pt;}
.y68_c00273{bottom:566.519037pt;}
.y67_c00273{bottom:567.457781pt;}
.y66_c00273{bottom:567.604717pt;}
.y65_c00273{bottom:567.839109pt;}
.y64_c00273{bottom:586.872303pt;}
.y63_c00273{bottom:588.208080pt;}
.y62_c00273{bottom:589.955525pt;}
.y61_c00273{bottom:591.765109pt;}
.y60_c00273{bottom:593.256400pt;}
.y5f_c00273{bottom:593.716197pt;}
.y5e_c00273{bottom:595.113143pt;}
.y5d_c00273{bottom:595.847581pt;}
.y5c_c00273{bottom:597.619660pt;}
.y5b_c00273{bottom:617.569393pt;}
.y5a_c00273{bottom:618.174707pt;}
.y59_c00273{bottom:618.473588pt;}
.y58_c00273{bottom:619.278943pt;}
.y57_c00273{bottom:619.624201pt;}
.y56_c00273{bottom:620.425645pt;}
.y55_c00273{bottom:620.586897pt;}
.y54_c00273{bottom:621.083449pt;}
.y53_c00273{bottom:621.364000pt;}
.y52_c00273{bottom:673.097633pt;}
.y51_c00273{bottom:673.709980pt;}
.y50_c00273{bottom:674.086247pt;}
.y4f_c00273{bottom:675.132153pt;}
.y4e_c00273{bottom:675.455953pt;}
.y4d_c00273{bottom:675.872107pt;}
.y4c_c00273{bottom:677.470333pt;}
.y4b_c00273{bottom:677.936133pt;}
.y4a_c00273{bottom:678.968333pt;}
.y49_c00273{bottom:679.386053pt;}
.y48_c00273{bottom:681.033947pt;}
.y47_c00273{bottom:681.123653pt;}
.y46_c00273{bottom:703.531347pt;}
.y45_c00273{bottom:704.036333pt;}
.y44_c00273{bottom:704.245813pt;}
.y43_c00273{bottom:704.668473pt;}
.y42_c00273{bottom:705.102253pt;}
.y41_c00273{bottom:706.102193pt;}
.y40_c00273{bottom:706.746847pt;}
.y3f_c00273{bottom:706.917453pt;}
.y3e_c00273{bottom:707.554687pt;}
.y3d_c00273{bottom:707.745807pt;}
.y3c_c00273{bottom:708.001427pt;}
.y3b_c00273{bottom:729.461647pt;}
.y3a_c00273{bottom:730.793773pt;}
.y39_c00273{bottom:732.119880pt;}
.y38_c00273{bottom:732.697987pt;}
.y37_c00273{bottom:733.417927pt;}
.y36_c00273{bottom:735.449713pt;}
.y35_c00273{bottom:736.661973pt;}
.y34_c00273{bottom:737.378247pt;}
.y33_c00273{bottom:737.962527pt;}
.y32_c00273{bottom:738.238547pt;}
.y31_c00273{bottom:757.375787pt;}
.y30_c00273{bottom:757.870173pt;}
.y2f_c00273{bottom:758.711747pt;}
.y2e_c00273{bottom:759.341787pt;}
.y2d_c00273{bottom:760.358173pt;}
.y2c_c00273{bottom:761.056380pt;}
.y2b_c00273{bottom:762.629220pt;}
.y2a_c00273{bottom:763.344687pt;}
.y29_c00273{bottom:763.784847pt;}
.y28_c00273{bottom:765.022380pt;}
.y27_c00273{bottom:766.224573pt;}
.y26_c00273{bottom:786.416207pt;}
.y25_c00273{bottom:786.632260pt;}
.y24_c00273{bottom:787.159793pt;}
.y23_c00273{bottom:787.449993pt;}
.y22_c00273{bottom:787.660013pt;}
.y21_c00273{bottom:788.475560pt;}
.y20_c00273{bottom:788.690340pt;}
.y1f_c00273{bottom:789.125453pt;}
.y1e_c00273{bottom:789.383407pt;}
.y1d_c00273{bottom:789.579847pt;}
.y1c_c00273{bottom:789.940420pt;}
.y1b_c00273{bottom:816.484193pt;}
.y1a_c00273{bottom:816.628320pt;}
.y19_c00273{bottom:817.061480pt;}
.y18_c00273{bottom:817.227007pt;}
.y17_c00273{bottom:817.551147pt;}
.y16_c00273{bottom:817.800687pt;}
.y15_c00273{bottom:818.235267pt;}
.y14_c00273{bottom:818.535153pt;}
.y13_c00273{bottom:818.728407pt;}
.y12_c00273{bottom:819.164000pt;}
.y11_c00273{bottom:842.710893pt;}
.y10_c00273{bottom:842.989347pt;}
.yf_c00273{bottom:843.486120pt;}
.ye_c00273{bottom:844.388493pt;}
.yd_c00273{bottom:844.861533pt;}
.yc_c00273{bottom:845.641520pt;}
.yb_c00273{bottom:845.972613pt;}
.ya_c00273{bottom:846.634760pt;}
.y9_c00273{bottom:846.961333pt;}
.y8_c00273{bottom:909.955340pt;}
.y6_c00273{bottom:939.107173pt;}
.y7_c00273{bottom:939.107293pt;}
.y5_c00273{bottom:966.254207pt;}
.y4_c00273{bottom:967.431607pt;}
.y3_c00273{bottom:967.878167pt;}
.y2_c00273{bottom:968.882667pt;}
.y1_c00273{bottom:1014.350667pt;}
.h13_c00273{height:21.333333pt;}
.h11_c00273{height:53.333333pt;}
.h2_c00273{height:58.666667pt;}
.h8_c00273{height:64.000800pt;}
.hd_c00273{height:64.001568pt;}
.h4_c00273{height:64.007200pt;}
.ha_c00273{height:69.334200pt;}
.he_c00273{height:69.335032pt;}
.h7_c00273{height:74.667600pt;}
.hc_c00273{height:74.668496pt;}
.hf_c00273{height:74.673984pt;}
.h5_c00273{height:74.675066pt;}
.h9_c00273{height:80.001000pt;}
.hb_c00273{height:85.335424pt;}
.h6_c00273{height:85.337600pt;}
.h14_c00273{height:96.004800pt;}
.h3_c00273{height:96.010799pt;}
.h10_c00273{height:101.333333pt;}
.h12_c00273{height:112.000000pt;}
.h1_c00273{height:1036.000000pt;}
.h0_c00273{height:1036.266667pt;}
.w0_c00273{width:813.333333pt;}
.x0_c00273{left:0.000000pt;}
.x3a_c00273{left:32.944740pt;}
.x41_c00273{left:44.365307pt;}
.x42_c00273{left:50.306340pt;}
.x30_c00273{left:54.472460pt;}
.x14_c00273{left:64.720000pt;}
.xb_c00273{left:67.782667pt;}
.x1d_c00273{left:69.023327pt;}
.x27_c00273{left:71.540813pt;}
.x31_c00273{left:72.875540pt;}
.x63_c00273{left:84.040452pt;}
.x3b_c00273{left:88.691900pt;}
.x5a_c00273{left:91.231765pt;}
.x4b_c00273{left:96.241333pt;}
.xc_c00273{left:100.440000pt;}
.x53_c00273{left:108.695741pt;}
.x32_c00273{left:111.862927pt;}
.x8a_c00273{left:113.762667pt;}
.x5b_c00273{left:118.467764pt;}
.x1e_c00273{left:120.604147pt;}
.x7e_c00273{left:124.080000pt;}
.x6b_c00273{left:129.103481pt;}
.x4c_c00273{left:136.320000pt;}
.x28_c00273{left:146.642013pt;}
.x1f_c00273{left:148.691867pt;}
.x15_c00273{left:151.838667pt;}
.x33_c00273{left:159.648540pt;}
.x8b_c00273{left:164.892000pt;}
.xd_c00273{left:166.654667pt;}
.x3c_c00273{left:168.404040pt;}
.x7f_c00273{left:172.161333pt;}
.x64_c00273{left:176.468524pt;}
.x20_c00273{left:185.615500pt;}
.x43_c00273{left:187.955453pt;}
.x16_c00273{left:190.489333pt;}
.x54_c00273{left:197.270344pt;}
.xe_c00273{left:199.764000pt;}
.x77_c00273{left:204.480000pt;}
.x4d_c00273{left:207.256000pt;}
.x29_c00273{left:224.011093pt;}
.x4e_c00273{left:230.292000pt;}
.x55_c00273{left:233.996336pt;}
.x65_c00273{left:235.534872pt;}
.x5c_c00273{left:237.640588pt;}
.x34_c00273{left:240.496500pt;}
.x78_c00273{left:241.440000pt;}
.x21_c00273{left:247.837547pt;}
.x17_c00273{left:250.466667pt;}
.x2a_c00273{left:251.508247pt;}
.x44_c00273{left:256.792013pt;}
.x3d_c00273{left:270.387847pt;}
.x7b_c00273{left:272.400000pt;}
.xf_c00273{left:277.762667pt;}
.x85_c00273{left:280.926667pt;}
.x6c_c00273{left:285.148320pt;}
.x45_c00273{left:287.817127pt;}
.x2b_c00273{left:296.199120pt;}
.x79_c00273{left:298.080000pt;}
.x8c_c00273{left:299.880000pt;}
.x56_c00273{left:303.839313pt;}
.x80_c00273{left:307.296000pt;}
.x86_c00273{left:309.708000pt;}
.x4_c00273{left:310.860000pt;}
.x8d_c00273{left:318.568000pt;}
.x7c_c00273{left:322.560000pt;}
.x10_c00273{left:325.066667pt;}
.x57_c00273{left:326.855889pt;}
.x8_c00273{left:332.162260pt;}
.x18_c00273{left:337.382667pt;}
.x7a_c00273{left:340.560000pt;}
.x73_c00273{left:343.322667pt;}
.x4f_c00273{left:344.784000pt;}
.x66_c00273{left:354.036892pt;}
.x5d_c00273{left:362.426475pt;}
.xa_c00273{left:368.166513pt;}
.x8e_c00273{left:374.740000pt;}
.x35_c00273{left:375.913727pt;}
.x5_c00273{left:377.826667pt;}
.x1_c00273{left:379.200000pt;}
.x19_c00273{left:387.290667pt;}
.x6d_c00273{left:388.336491pt;}
.x81_c00273{left:393.901333pt;}
.x22_c00273{left:394.968073pt;}
.x2_c00273{left:397.200000pt;}
.x9_c00273{left:401.769920pt;}
.x5e_c00273{left:402.739163pt;}
.x6_c00273{left:407.597333pt;}
.x6e_c00273{left:410.376433pt;}
.x7d_c00273{left:411.840000pt;}
.x11_c00273{left:415.304000pt;}
.x8f_c00273{left:419.892000pt;}
.x46_c00273{left:422.153080pt;}
.x36_c00273{left:423.899327pt;}
.x23_c00273{left:424.971773pt;}
.x3_c00273{left:427.680000pt;}
.x5f_c00273{left:432.537707pt;}
.x2c_c00273{left:438.133980pt;}
.x67_c00273{left:439.283836pt;}
.x47_c00273{left:443.712000pt;}
.x3e_c00273{left:449.662493pt;}
.x74_c00273{left:450.801333pt;}
.x1a_c00273{left:452.118667pt;}
.x90_c00273{left:457.517333pt;}
.x37_c00273{left:462.452067pt;}
.x82_c00273{left:463.668000pt;}
.x12_c00273{left:464.981333pt;}
.x24_c00273{left:466.478027pt;}
.x83_c00273{left:484.189333pt;}
.x7_c00273{left:486.090667pt;}
.x6f_c00273{left:489.851431pt;}
.x58_c00273{left:491.918205pt;}
.x13_c00273{left:492.826667pt;}
.x2d_c00273{left:501.674487pt;}
.x60_c00273{left:506.411419pt;}
.x50_c00273{left:509.157333pt;}
.x48_c00273{left:513.423180pt;}
.x68_c00273{left:520.976216pt;}
.x3f_c00273{left:528.622640pt;}
.x69_c00273{left:531.395927pt;}
.x70_c00273{left:536.709815pt;}
.x49_c00273{left:538.541927pt;}
.x91_c00273{left:539.584000pt;}
.x25_c00273{left:541.850607pt;}
.x38_c00273{left:550.868980pt;}
.x51_c00273{left:551.854667pt;}
.x75_c00273{left:553.129333pt;}
.x87_c00273{left:557.348000pt;}
.x84_c00273{left:563.697333pt;}
.x1b_c00273{left:571.856000pt;}
.x26_c00273{left:572.794300pt;}
.x88_c00273{left:574.376000pt;}
.x71_c00273{left:575.554036pt;}
.x4a_c00273{left:579.409220pt;}
.x61_c00273{left:588.822044pt;}
.x40_c00273{left:591.752360pt;}
.x2e_c00273{left:593.592093pt;}
.x1c_c00273{left:600.681333pt;}
.x92_c00273{left:610.164000pt;}
.x76_c00273{left:614.240000pt;}
.x72_c00273{left:622.560401pt;}
.x2f_c00273{left:624.467727pt;}
.x62_c00273{left:629.649371pt;}
.x52_c00273{left:638.328000pt;}
.x39_c00273{left:639.689873pt;}
.x6a_c00273{left:644.292763pt;}
.x59_c00273{left:646.078844pt;}
.x89_c00273{left:652.080000pt;}
.x93_c00273{left:670.398667pt;}
}





/* 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_c00274 {
    display:none;
  }
  .loading-indicator_c00274.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00274 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_c00274 { 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_c00274" -> "#page-container .classname_c00274")
 */
.pf_c00274 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00274 { /* 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_c00274.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00274 { /* 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_c00274 { /* 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_c00274 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00274 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00274 {overflow:visible;}
  }
}
.c_c00274 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00274 { /* 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_c00274:after { /* webkit #35443 */
  content: '';
}
.t_c00274:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00274 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 */
}
.__c00274 { /* 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_c00274 { /* info for Javascript */
  display:none;
}
.l_c00274 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00274 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00274 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00274: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_c00274 {
    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_c00274.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00274.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_c00274 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00274{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00274;src:url('chunks/assets/font_c605e72f209fc835e906f064.woff2')format("woff");}.ff1_c00274{font-family:ff1_c00274;line-height:1.000000;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;}
.mb1_c00274{transform:matrix(0.113356,-0.000907,0.002000,0.249992,0,0);-ms-transform:matrix(0.113356,-0.000907,0.002000,0.249992,0,0);-webkit-transform:matrix(0.113356,-0.000907,0.002000,0.249992,0,0);}
.m98_c00274{transform:matrix(0.139540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139540,0.000000,0.000000,0.250000,0,0);}
.m9e_c00274{transform:matrix(0.143285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143285,0.000000,0.000000,0.250000,0,0);}
.maf_c00274{transform:matrix(0.143850,-0.001151,0.002000,0.249992,0,0);-ms-transform:matrix(0.143850,-0.001151,0.002000,0.249992,0,0);-webkit-transform:matrix(0.143850,-0.001151,0.002000,0.249992,0,0);}
.m76_c00274{transform:matrix(0.153885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153885,0.000000,0.000000,0.250000,0,0);}
.mac_c00274{transform:matrix(0.156250,-0.001250,0.002000,0.249992,0,0);-ms-transform:matrix(0.156250,-0.001250,0.002000,0.249992,0,0);-webkit-transform:matrix(0.156250,-0.001250,0.002000,0.249992,0,0);}
.ma9_c00274{transform:matrix(0.158390,-0.001267,0.002000,0.249992,0,0);-ms-transform:matrix(0.158390,-0.001267,0.002000,0.249992,0,0);-webkit-transform:matrix(0.158390,-0.001267,0.002000,0.249992,0,0);}
.mab_c00274{transform:matrix(0.161105,-0.001289,0.002000,0.249992,0,0);-ms-transform:matrix(0.161105,-0.001289,0.002000,0.249992,0,0);-webkit-transform:matrix(0.161105,-0.001289,0.002000,0.249992,0,0);}
.ma8_c00274{transform:matrix(0.162060,-0.001296,0.002000,0.249992,0,0);-ms-transform:matrix(0.162060,-0.001296,0.002000,0.249992,0,0);-webkit-transform:matrix(0.162060,-0.001296,0.002000,0.249992,0,0);}
.mb0_c00274{transform:matrix(0.162860,-0.001303,0.002000,0.249992,0,0);-ms-transform:matrix(0.162860,-0.001303,0.002000,0.249992,0,0);-webkit-transform:matrix(0.162860,-0.001303,0.002000,0.249992,0,0);}
.mb4_c00274{transform:matrix(0.165810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165810,0.000000,0.000000,0.250000,0,0);}
.m41_c00274{transform:matrix(0.169050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169050,0.000000,0.000000,0.250000,0,0);}
.ma6_c00274{transform:matrix(0.170860,-0.001367,0.002000,0.249992,0,0);-ms-transform:matrix(0.170860,-0.001367,0.002000,0.249992,0,0);-webkit-transform:matrix(0.170860,-0.001367,0.002000,0.249992,0,0);}
.mae_c00274{transform:matrix(0.175334,-0.001403,0.002000,0.249992,0,0);-ms-transform:matrix(0.175334,-0.001403,0.002000,0.249992,0,0);-webkit-transform:matrix(0.175334,-0.001403,0.002000,0.249992,0,0);}
.maa_c00274{transform:matrix(0.178664,-0.001429,0.002000,0.249992,0,0);-ms-transform:matrix(0.178664,-0.001429,0.002000,0.249992,0,0);-webkit-transform:matrix(0.178664,-0.001429,0.002000,0.249992,0,0);}
.m6a_c00274{transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);}
.m9d_c00274{transform:matrix(0.180270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180270,0.000000,0.000000,0.250000,0,0);}
.m96_c00274{transform:matrix(0.181195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181195,0.000000,0.000000,0.250000,0,0);}
.m45_c00274{transform:matrix(0.181725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181725,0.000000,0.000000,0.250000,0,0);}
.ma7_c00274{transform:matrix(0.183364,-0.001467,0.002000,0.249992,0,0);-ms-transform:matrix(0.183364,-0.001467,0.002000,0.249992,0,0);-webkit-transform:matrix(0.183364,-0.001467,0.002000,0.249992,0,0);}
.mad_c00274{transform:matrix(0.185244,-0.001482,0.002000,0.249992,0,0);-ms-transform:matrix(0.185244,-0.001482,0.002000,0.249992,0,0);-webkit-transform:matrix(0.185244,-0.001482,0.002000,0.249992,0,0);}
.mb2_c00274{transform:matrix(0.185744,-0.001486,0.002000,0.249992,0,0);-ms-transform:matrix(0.185744,-0.001486,0.002000,0.249992,0,0);-webkit-transform:matrix(0.185744,-0.001486,0.002000,0.249992,0,0);}
.m1c_c00274{transform:matrix(0.187625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187625,0.000000,0.000000,0.250000,0,0);}
.m72_c00274{transform:matrix(0.187755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187755,0.000000,0.000000,0.250000,0,0);}
.m12f_c00274{transform:matrix(0.193755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193755,0.000000,0.000000,0.250000,0,0);}
.m11c_c00274{transform:matrix(0.196365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196365,0.000000,0.000000,0.250000,0,0);}
.mba_c00274{transform:matrix(0.197505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197505,0.000000,0.000000,0.250000,0,0);}
.mb6_c00274{transform:matrix(0.198195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198195,0.000000,0.000000,0.250000,0,0);}
.m119_c00274{transform:matrix(0.198405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198405,0.000000,0.000000,0.250000,0,0);}
.m1d_c00274{transform:matrix(0.200360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200360,0.000000,0.000000,0.250000,0,0);}
.m10b_c00274{transform:matrix(0.201265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201265,0.000000,0.000000,0.250000,0,0);}
.m93_c00274{transform:matrix(0.202290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202290,0.000000,0.000000,0.250000,0,0);}
.m115_c00274{transform:matrix(0.203100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203100,0.000000,0.000000,0.250000,0,0);}
.m110_c00274{transform:matrix(0.203650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203650,0.000000,0.000000,0.250000,0,0);}
.m7_c00274{transform:matrix(0.205550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205550,0.000000,0.000000,0.250000,0,0);}
.m137_c00274{transform:matrix(0.206895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206895,0.000000,0.000000,0.250000,0,0);}
.m39_c00274{transform:matrix(0.207020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207020,0.000000,0.000000,0.250000,0,0);}
.m127_c00274{transform:matrix(0.208015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208015,0.000000,0.000000,0.250000,0,0);}
.mf4_c00274{transform:matrix(0.208180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208180,0.000000,0.000000,0.250000,0,0);}
.m100_c00274{transform:matrix(0.208385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208385,0.000000,0.000000,0.250000,0,0);}
.m8d_c00274{transform:matrix(0.209120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209120,0.000000,0.000000,0.250000,0,0);}
.m6b_c00274{transform:matrix(0.209545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209545,0.000000,0.000000,0.250000,0,0);}
.m71_c00274{transform:matrix(0.209550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209550,0.000000,0.000000,0.250000,0,0);}
.m46_c00274{transform:matrix(0.209935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209935,0.000000,0.000000,0.250000,0,0);}
.m67_c00274{transform:matrix(0.210050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210050,0.000000,0.000000,0.250000,0,0);}
.m85_c00274{transform:matrix(0.210135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210135,0.000000,0.000000,0.250000,0,0);}
.m1a_c00274{transform:matrix(0.211310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211310,0.000000,0.000000,0.250000,0,0);}
.m73_c00274{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m122_c00274{transform:matrix(0.211580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211580,0.000000,0.000000,0.250000,0,0);}
.mda_c00274{transform:matrix(0.212610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212610,0.000000,0.000000,0.250000,0,0);}
.m111_c00274{transform:matrix(0.212835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212835,0.000000,0.000000,0.250000,0,0);}
.m10c_c00274{transform:matrix(0.212850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212850,0.000000,0.000000,0.250000,0,0);}
.m11a_c00274{transform:matrix(0.214435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214435,0.000000,0.000000,0.250000,0,0);}
.m10f_c00274{transform:matrix(0.214590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214590,0.000000,0.000000,0.250000,0,0);}
.m84_c00274{transform:matrix(0.214665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214665,0.000000,0.000000,0.250000,0,0);}
.md5_c00274{transform:matrix(0.214710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214710,0.000000,0.000000,0.250000,0,0);}
.m50_c00274{transform:matrix(0.215670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215670,0.000000,0.000000,0.250000,0,0);}
.m3d_c00274{transform:matrix(0.215715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215715,0.000000,0.000000,0.250000,0,0);}
.mcd_c00274{transform:matrix(0.215785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215785,0.000000,0.000000,0.250000,0,0);}
.m118_c00274{transform:matrix(0.215985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215985,0.000000,0.000000,0.250000,0,0);}
.m4b_c00274{transform:matrix(0.216110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216110,0.000000,0.000000,0.250000,0,0);}
.m117_c00274{transform:matrix(0.216260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216260,0.000000,0.000000,0.250000,0,0);}
.m11d_c00274{transform:matrix(0.216735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216735,0.000000,0.000000,0.250000,0,0);}
.mdf_c00274{transform:matrix(0.216790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216790,0.000000,0.000000,0.250000,0,0);}
.mf8_c00274{transform:matrix(0.217620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217620,0.000000,0.000000,0.250000,0,0);}
.m130_c00274{transform:matrix(0.217880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217880,0.000000,0.000000,0.250000,0,0);}
.mbe_c00274{transform:matrix(0.218305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218305,0.000000,0.000000,0.250000,0,0);}
.m23_c00274{transform:matrix(0.218385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218385,0.000000,0.000000,0.250000,0,0);}
.m11f_c00274{transform:matrix(0.218855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218855,0.000000,0.000000,0.250000,0,0);}
.m35_c00274{transform:matrix(0.218860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218860,0.000000,0.000000,0.250000,0,0);}
.m109_c00274{transform:matrix(0.219045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219045,0.000000,0.000000,0.250000,0,0);}
.me6_c00274{transform:matrix(0.219160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219160,0.000000,0.000000,0.250000,0,0);}
.m10d_c00274{transform:matrix(0.219435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219435,0.000000,0.000000,0.250000,0,0);}
.m116_c00274{transform:matrix(0.219600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219600,0.000000,0.000000,0.250000,0,0);}
.m11b_c00274{transform:matrix(0.219695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219695,0.000000,0.000000,0.250000,0,0);}
.m121_c00274{transform:matrix(0.219705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219705,0.000000,0.000000,0.250000,0,0);}
.ma_c00274{transform:matrix(0.220510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220510,0.000000,0.000000,0.250000,0,0);}
.m18_c00274{transform:matrix(0.220900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220900,0.000000,0.000000,0.250000,0,0);}
.m81_c00274{transform:matrix(0.221880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221880,0.000000,0.000000,0.250000,0,0);}
.m56_c00274{transform:matrix(0.222625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222625,0.000000,0.000000,0.250000,0,0);}
.m12_c00274{transform:matrix(0.223270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223270,0.000000,0.000000,0.250000,0,0);}
.m17_c00274{transform:matrix(0.223380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223380,0.000000,0.000000,0.250000,0,0);}
.m19_c00274{transform:matrix(0.223885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223885,0.000000,0.000000,0.250000,0,0);}
.m12b_c00274{transform:matrix(0.224655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224655,0.000000,0.000000,0.250000,0,0);}
.mee_c00274{transform:matrix(0.224735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224735,0.000000,0.000000,0.250000,0,0);}
.mf7_c00274{transform:matrix(0.225325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225325,0.000000,0.000000,0.250000,0,0);}
.m87_c00274{transform:matrix(0.225345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225345,0.000000,0.000000,0.250000,0,0);}
.me1_c00274{transform:matrix(0.226045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226045,0.000000,0.000000,0.250000,0,0);}
.m124_c00274{transform:matrix(0.226595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226595,0.000000,0.000000,0.250000,0,0);}
.m139_c00274{transform:matrix(0.226965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226965,0.000000,0.000000,0.250000,0,0);}
.m80_c00274{transform:matrix(0.227005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227005,0.000000,0.000000,0.250000,0,0);}
.m91_c00274{transform:matrix(0.227260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227260,0.000000,0.000000,0.250000,0,0);}
.mb3_c00274{transform:matrix(0.227470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227470,0.000000,0.000000,0.250000,0,0);}
.m12d_c00274{transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);}
.m94_c00274{transform:matrix(0.227850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227850,0.000000,0.000000,0.250000,0,0);}
.mf9_c00274{transform:matrix(0.228055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228055,0.000000,0.000000,0.250000,0,0);}
.md1_c00274{transform:matrix(0.228090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228090,0.000000,0.000000,0.250000,0,0);}
.m22_c00274{transform:matrix(0.228280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228280,0.000000,0.000000,0.250000,0,0);}
.m112_c00274{transform:matrix(0.228570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228570,0.000000,0.000000,0.250000,0,0);}
.m123_c00274{transform:matrix(0.229145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229145,0.000000,0.000000,0.250000,0,0);}
.m13b_c00274{transform:matrix(0.229265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229265,0.000000,0.000000,0.250000,0,0);}
.mb8_c00274{transform:matrix(0.229435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229435,0.000000,0.000000,0.250000,0,0);}
.m3e_c00274{transform:matrix(0.229800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229800,0.000000,0.000000,0.250000,0,0);}
.mb7_c00274{transform:matrix(0.229885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229885,0.000000,0.000000,0.250000,0,0);}
.mf0_c00274{transform:matrix(0.230370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230370,0.000000,0.000000,0.250000,0,0);}
.m3a_c00274{transform:matrix(0.231160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231160,0.000000,0.000000,0.250000,0,0);}
.m1f_c00274{transform:matrix(0.231380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231380,0.000000,0.000000,0.250000,0,0);}
.m77_c00274{transform:matrix(0.231625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231625,0.000000,0.000000,0.250000,0,0);}
.me3_c00274{transform:matrix(0.231840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231840,0.000000,0.000000,0.250000,0,0);}
.m4e_c00274{transform:matrix(0.232235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232235,0.000000,0.000000,0.250000,0,0);}
.m11e_c00274{transform:matrix(0.232275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232275,0.000000,0.000000,0.250000,0,0);}
.m128_c00274{transform:matrix(0.232335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232335,0.000000,0.000000,0.250000,0,0);}
.md9_c00274{transform:matrix(0.232570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232570,0.000000,0.000000,0.250000,0,0);}
.m70_c00274{transform:matrix(0.232990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232990,0.000000,0.000000,0.250000,0,0);}
.mb_c00274{transform:matrix(0.233405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233405,0.000000,0.000000,0.250000,0,0);}
.m21_c00274{transform:matrix(0.233425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233425,0.000000,0.000000,0.250000,0,0);}
.me7_c00274{transform:matrix(0.233645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233645,0.000000,0.000000,0.250000,0,0);}
.mc8_c00274{transform:matrix(0.233680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233680,0.000000,0.000000,0.250000,0,0);}
.m113_c00274{transform:matrix(0.233695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233695,0.000000,0.000000,0.250000,0,0);}
.m34_c00274{transform:matrix(0.233735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233735,0.000000,0.000000,0.250000,0,0);}
.m8f_c00274{transform:matrix(0.233980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233980,0.000000,0.000000,0.250000,0,0);}
.m10e_c00274{transform:matrix(0.234020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234020,0.000000,0.000000,0.250000,0,0);}
.m114_c00274{transform:matrix(0.234050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234050,0.000000,0.000000,0.250000,0,0);}
.m20_c00274{transform:matrix(0.234085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234085,0.000000,0.000000,0.250000,0,0);}
.m9f_c00274{transform:matrix(0.234305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234305,0.000000,0.000000,0.250000,0,0);}
.m48_c00274{transform:matrix(0.234580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234580,0.000000,0.000000,0.250000,0,0);}
.m1e_c00274{transform:matrix(0.235010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235010,0.000000,0.000000,0.250000,0,0);}
.mc0_c00274{transform:matrix(0.235125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235125,0.000000,0.000000,0.250000,0,0);}
.mf3_c00274{transform:matrix(0.235130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235130,0.000000,0.000000,0.250000,0,0);}
.mdc_c00274{transform:matrix(0.236315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236315,0.000000,0.000000,0.250000,0,0);}
.m2_c00274{transform:matrix(0.236445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236445,0.000000,0.000000,0.250000,0,0);}
.m125_c00274{transform:matrix(0.236495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236495,0.000000,0.000000,0.250000,0,0);}
.md_c00274{transform:matrix(0.236720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236720,0.000000,0.000000,0.250000,0,0);}
.me5_c00274{transform:matrix(0.236725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236725,0.000000,0.000000,0.250000,0,0);}
.m4d_c00274{transform:matrix(0.236830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236830,0.000000,0.000000,0.250000,0,0);}
.md4_c00274{transform:matrix(0.237185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237185,0.000000,0.000000,0.250000,0,0);}
.me9_c00274{transform:matrix(0.237220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237220,0.000000,0.000000,0.250000,0,0);}
.m49_c00274{transform:matrix(0.237550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237550,0.000000,0.000000,0.250000,0,0);}
.m7b_c00274{transform:matrix(0.237830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237830,0.000000,0.000000,0.250000,0,0);}
.m47_c00274{transform:matrix(0.237920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237920,0.000000,0.000000,0.250000,0,0);}
.m88_c00274{transform:matrix(0.238170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238170,0.000000,0.000000,0.250000,0,0);}
.mde_c00274{transform:matrix(0.238225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238225,0.000000,0.000000,0.250000,0,0);}
.m74_c00274{transform:matrix(0.238355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238355,0.000000,0.000000,0.250000,0,0);}
.m11_c00274{transform:matrix(0.238535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238535,0.000000,0.000000,0.250000,0,0);}
.m42_c00274{transform:matrix(0.239045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239045,0.000000,0.000000,0.250000,0,0);}
.m43_c00274{transform:matrix(0.239415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239415,0.000000,0.000000,0.250000,0,0);}
.m83_c00274{transform:matrix(0.239590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239590,0.000000,0.000000,0.250000,0,0);}
.m6f_c00274{transform:matrix(0.239925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239925,0.000000,0.000000,0.250000,0,0);}
.m79_c00274{transform:matrix(0.240065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240065,0.000000,0.000000,0.250000,0,0);}
.m51_c00274{transform:matrix(0.240295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240295,0.000000,0.000000,0.250000,0,0);}
.m65_c00274{transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);}
.m2d_c00274{transform:matrix(0.240835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240835,0.000000,0.000000,0.250000,0,0);}
.mc4_c00274{transform:matrix(0.240975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240975,0.000000,0.000000,0.250000,0,0);}
.m44_c00274{transform:matrix(0.241260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241260,0.000000,0.000000,0.250000,0,0);}
.m1_c00274{transform:matrix(0.241300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241300,0.000000,0.000000,0.250000,0,0);}
.m2f_c00274{transform:matrix(0.241320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241320,0.000000,0.000000,0.250000,0,0);}
.m55_c00274{transform:matrix(0.241415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241415,0.000000,0.000000,0.250000,0,0);}
.m126_c00274{transform:matrix(0.241665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241665,0.000000,0.000000,0.250000,0,0);}
.m97_c00274{transform:matrix(0.241675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241675,0.000000,0.000000,0.250000,0,0);}
.m92_c00274{transform:matrix(0.241835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241835,0.000000,0.000000,0.250000,0,0);}
.mfe_c00274{transform:matrix(0.242015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242015,0.000000,0.000000,0.250000,0,0);}
.m61_c00274{transform:matrix(0.242050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242050,0.000000,0.000000,0.250000,0,0);}
.m30_c00274{transform:matrix(0.242310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242310,0.000000,0.000000,0.250000,0,0);}
.m5_c00274{transform:matrix(0.242545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242545,0.000000,0.000000,0.250000,0,0);}
.mdd_c00274{transform:matrix(0.242675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242675,0.000000,0.000000,0.250000,0,0);}
.me2_c00274{transform:matrix(0.242705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242705,0.000000,0.000000,0.250000,0,0);}
.m9b_c00274{transform:matrix(0.242745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242745,0.000000,0.000000,0.250000,0,0);}
.m8a_c00274{transform:matrix(0.242755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242755,0.000000,0.000000,0.250000,0,0);}
.m6c_c00274{transform:matrix(0.243290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243290,0.000000,0.000000,0.250000,0,0);}
.ma1_c00274{transform:matrix(0.243315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243315,0.000000,0.000000,0.250000,0,0);}
.mfb_c00274{transform:matrix(0.243375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243375,0.000000,0.000000,0.250000,0,0);}
.m3b_c00274{transform:matrix(0.243425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243425,0.000000,0.000000,0.250000,0,0);}
.m37_c00274{transform:matrix(0.243495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243495,0.000000,0.000000,0.250000,0,0);}
.ma5_c00274{transform:matrix(0.243730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243730,0.000000,0.000000,0.250000,0,0);}
.mc_c00274{transform:matrix(0.243735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243735,0.000000,0.000000,0.250000,0,0);}
.m12c_c00274{transform:matrix(0.244060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244060,0.000000,0.000000,0.250000,0,0);}
.m103_c00274{transform:matrix(0.244095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244095,0.000000,0.000000,0.250000,0,0);}
.ma3_c00274{transform:matrix(0.244255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244255,0.000000,0.000000,0.250000,0,0);}
.m4_c00274{transform:matrix(0.244475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244475,0.000000,0.000000,0.250000,0,0);}
.m64_c00274{transform:matrix(0.244600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244600,0.000000,0.000000,0.250000,0,0);}
.mff_c00274{transform:matrix(0.244770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244770,0.000000,0.000000,0.250000,0,0);}
.m28_c00274{transform:matrix(0.244870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244870,0.000000,0.000000,0.250000,0,0);}
.m7e_c00274{transform:matrix(0.245025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245025,0.000000,0.000000,0.250000,0,0);}
.m120_c00274{transform:matrix(0.245185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245185,0.000000,0.000000,0.250000,0,0);}
.m135_c00274{transform:matrix(0.245270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245270,0.000000,0.000000,0.250000,0,0);}
.m75_c00274{transform:matrix(0.245290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245290,0.000000,0.000000,0.250000,0,0);}
.m12a_c00274{transform:matrix(0.245445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245445,0.000000,0.000000,0.250000,0,0);}
.md8_c00274{transform:matrix(0.246300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246300,0.000000,0.000000,0.250000,0,0);}
.mf5_c00274{transform:matrix(0.246485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246485,0.000000,0.000000,0.250000,0,0);}
.mca_c00274{transform:matrix(0.246595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246595,0.000000,0.000000,0.250000,0,0);}
.m9_c00274{transform:matrix(0.246730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246730,0.000000,0.000000,0.250000,0,0);}
.m68_c00274{transform:matrix(0.246870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246870,0.000000,0.000000,0.250000,0,0);}
.mf6_c00274{transform:matrix(0.247135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247135,0.000000,0.000000,0.250000,0,0);}
.m5d_c00274{transform:matrix(0.247595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247595,0.000000,0.000000,0.250000,0,0);}
.m2e_c00274{transform:matrix(0.247625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247625,0.000000,0.000000,0.250000,0,0);}
.m32_c00274{transform:matrix(0.247685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247685,0.000000,0.000000,0.250000,0,0);}
.m26_c00274{transform:matrix(0.247755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247755,0.000000,0.000000,0.250000,0,0);}
.m95_c00274{transform:matrix(0.247955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247955,0.000000,0.000000,0.250000,0,0);}
.me_c00274{transform:matrix(0.248950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248950,0.000000,0.000000,0.250000,0,0);}
.m13e_c00274{transform:matrix(0.249030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249030,0.000000,0.000000,0.250000,0,0);}
.m3c_c00274{transform:matrix(0.249270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249270,0.000000,0.000000,0.250000,0,0);}
.m90_c00274{transform:matrix(0.249700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249700,0.000000,0.000000,0.250000,0,0);}
.m4a_c00274{transform:matrix(0.250110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250110,0.000000,0.000000,0.250000,0,0);}
.m2c_c00274{transform:matrix(0.250155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250155,0.000000,0.000000,0.250000,0,0);}
.m66_c00274{transform:matrix(0.250245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250245,0.000000,0.000000,0.250000,0,0);}
.m3f_c00274{transform:matrix(0.250395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250395,0.000000,0.000000,0.250000,0,0);}
.me4_c00274{transform:matrix(0.250530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250530,0.000000,0.000000,0.250000,0,0);}
.mdb_c00274{transform:matrix(0.250535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250535,0.000000,0.000000,0.250000,0,0);}
.m40_c00274{transform:matrix(0.250755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250755,0.000000,0.000000,0.250000,0,0);}
.m6d_c00274{transform:matrix(0.250785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250785,0.000000,0.000000,0.250000,0,0);}
.m132_c00274{transform:matrix(0.250920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250920,0.000000,0.000000,0.250000,0,0);}
.m134_c00274{transform:matrix(0.251010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251010,0.000000,0.000000,0.250000,0,0);}
.m29_c00274{transform:matrix(0.251025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251025,0.000000,0.000000,0.250000,0,0);}
.m108_c00274{transform:matrix(0.251100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251100,0.000000,0.000000,0.250000,0,0);}
.m129_c00274{transform:matrix(0.251305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251305,0.000000,0.000000,0.250000,0,0);}
.mf2_c00274{transform:matrix(0.251410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251410,0.000000,0.000000,0.250000,0,0);}
.mbc_c00274{transform:matrix(0.251755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251755,0.000000,0.000000,0.250000,0,0);}
.m1b_c00274{transform:matrix(0.252725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252725,0.000000,0.000000,0.250000,0,0);}
.mef_c00274{transform:matrix(0.252970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252970,0.000000,0.000000,0.250000,0,0);}
.m5f_c00274{transform:matrix(0.253010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253010,0.000000,0.000000,0.250000,0,0);}
.mf1_c00274{transform:matrix(0.253050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253050,0.000000,0.000000,0.250000,0,0);}
.m7f_c00274{transform:matrix(0.253160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253160,0.000000,0.000000,0.250000,0,0);}
.mcb_c00274{transform:matrix(0.253515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253515,0.000000,0.000000,0.250000,0,0);}
.me0_c00274{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.mc5_c00274{transform:matrix(0.253925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253925,0.000000,0.000000,0.250000,0,0);}
.md7_c00274{transform:matrix(0.253940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253940,0.000000,0.000000,0.250000,0,0);}
.m4f_c00274{transform:matrix(0.254370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254370,0.000000,0.000000,0.250000,0,0);}
.mc2_c00274{transform:matrix(0.254375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254375,0.000000,0.000000,0.250000,0,0);}
.m7a_c00274{transform:matrix(0.254570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254570,0.000000,0.000000,0.250000,0,0);}
.m24_c00274{transform:matrix(0.254775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254775,0.000000,0.000000,0.250000,0,0);}
.m4c_c00274{transform:matrix(0.254820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254820,0.000000,0.000000,0.250000,0,0);}
.mb9_c00274{transform:matrix(0.255040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255040,0.000000,0.000000,0.250000,0,0);}
.m69_c00274{transform:matrix(0.255365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255365,0.000000,0.000000,0.250000,0,0);}
.m12e_c00274{transform:matrix(0.256090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256090,0.000000,0.000000,0.250000,0,0);}
.mfc_c00274{transform:matrix(0.256540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256540,0.000000,0.000000,0.250000,0,0);}
.m8c_c00274{transform:matrix(0.256845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256845,0.000000,0.000000,0.250000,0,0);}
.md2_c00274{transform:matrix(0.257335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257335,0.000000,0.000000,0.250000,0,0);}
.m16_c00274{transform:matrix(0.257405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257405,0.000000,0.000000,0.250000,0,0);}
.ma0_c00274{transform:matrix(0.257570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257570,0.000000,0.000000,0.250000,0,0);}
.ma4_c00274{transform:matrix(0.257745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257745,0.000000,0.000000,0.250000,0,0);}
.m7d_c00274{transform:matrix(0.258075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258075,0.000000,0.000000,0.250000,0,0);}
.ma2_c00274{transform:matrix(0.258265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258265,0.000000,0.000000,0.250000,0,0);}
.m60_c00274{transform:matrix(0.258745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258745,0.000000,0.000000,0.250000,0,0);}
.m38_c00274{transform:matrix(0.258755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258755,0.000000,0.000000,0.250000,0,0);}
.m78_c00274{transform:matrix(0.258790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258790,0.000000,0.000000,0.250000,0,0);}
.me8_c00274{transform:matrix(0.259210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259210,0.000000,0.000000,0.250000,0,0);}
.m9c_c00274{transform:matrix(0.259220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259220,0.000000,0.000000,0.250000,0,0);}
.m7c_c00274{transform:matrix(0.259350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259350,0.000000,0.000000,0.250000,0,0);}
.mc9_c00274{transform:matrix(0.260415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260415,0.000000,0.000000,0.250000,0,0);}
.m33_c00274{transform:matrix(0.260730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260730,0.000000,0.000000,0.250000,0,0);}
.mcf_c00274{transform:matrix(0.261155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261155,0.000000,0.000000,0.250000,0,0);}
.m31_c00274{transform:matrix(0.261245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261245,0.000000,0.000000,0.250000,0,0);}
.mbb_c00274{transform:matrix(0.261905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261905,0.000000,0.000000,0.250000,0,0);}
.m5b_c00274{transform:matrix(0.261985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261985,0.000000,0.000000,0.250000,0,0);}
.mfa_c00274{transform:matrix(0.262025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262025,0.000000,0.000000,0.250000,0,0);}
.mc1_c00274{transform:matrix(0.264050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264050,0.000000,0.000000,0.250000,0,0);}
.m13a_c00274{transform:matrix(0.264210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264210,0.000000,0.000000,0.250000,0,0);}
.md6_c00274{transform:matrix(0.264765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264765,0.000000,0.000000,0.250000,0,0);}
.m62_c00274{transform:matrix(0.264820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264820,0.000000,0.000000,0.250000,0,0);}
.m5a_c00274{transform:matrix(0.265155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265155,0.000000,0.000000,0.250000,0,0);}
.m131_c00274{transform:matrix(0.265900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265900,0.000000,0.000000,0.250000,0,0);}
.mc7_c00274{transform:matrix(0.266135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266135,0.000000,0.000000,0.250000,0,0);}
.mcc_c00274{transform:matrix(0.266570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266570,0.000000,0.000000,0.250000,0,0);}
.m9a_c00274{transform:matrix(0.267400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267400,0.000000,0.000000,0.250000,0,0);}
.m8e_c00274{transform:matrix(0.267865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267865,0.000000,0.000000,0.250000,0,0);}
.m82_c00274{transform:matrix(0.267945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267945,0.000000,0.000000,0.250000,0,0);}
.m2a_c00274{transform:matrix(0.268120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268120,0.000000,0.000000,0.250000,0,0);}
.m136_c00274{transform:matrix(0.268175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268175,0.000000,0.000000,0.250000,0,0);}
.m2b_c00274{transform:matrix(0.268355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268355,0.000000,0.000000,0.250000,0,0);}
.mc3_c00274{transform:matrix(0.269235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269235,0.000000,0.000000,0.250000,0,0);}
.mbf_c00274{transform:matrix(0.269535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269535,0.000000,0.000000,0.250000,0,0);}
.m89_c00274{transform:matrix(0.269620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269620,0.000000,0.000000,0.250000,0,0);}
.m10_c00274{transform:matrix(0.269720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269720,0.000000,0.000000,0.250000,0,0);}
.m86_c00274{transform:matrix(0.270100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270100,0.000000,0.000000,0.250000,0,0);}
.mea_c00274{transform:matrix(0.270540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270540,0.000000,0.000000,0.250000,0,0);}
.m13_c00274{transform:matrix(0.270810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270810,0.000000,0.000000,0.250000,0,0);}
.m5e_c00274{transform:matrix(0.271295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271295,0.000000,0.000000,0.250000,0,0);}
.meb_c00274{transform:matrix(0.271650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271650,0.000000,0.000000,0.250000,0,0);}
.m6_c00274{transform:matrix(0.271810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271810,0.000000,0.000000,0.250000,0,0);}
.mec_c00274{transform:matrix(0.272430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272430,0.000000,0.000000,0.250000,0,0);}
.m52_c00274{transform:matrix(0.273070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273070,0.000000,0.000000,0.250000,0,0);}
.m133_c00274{transform:matrix(0.273435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273435,0.000000,0.000000,0.250000,0,0);}
.m25_c00274{transform:matrix(0.273440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273440,0.000000,0.000000,0.250000,0,0);}
.m54_c00274{transform:matrix(0.273650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273650,0.000000,0.000000,0.250000,0,0);}
.mc6_c00274{transform:matrix(0.273960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273960,0.000000,0.000000,0.250000,0,0);}
.m8_c00274{transform:matrix(0.274155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274155,0.000000,0.000000,0.250000,0,0);}
.md0_c00274{transform:matrix(0.274425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274425,0.000000,0.000000,0.250000,0,0);}
.m36_c00274{transform:matrix(0.274685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274685,0.000000,0.000000,0.250000,0,0);}
.m138_c00274{transform:matrix(0.274780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274780,0.000000,0.000000,0.250000,0,0);}
.mb5_c00274{transform:matrix(0.274905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274905,0.000000,0.000000,0.250000,0,0);}
.m102_c00274{transform:matrix(0.275105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275105,0.000000,0.000000,0.250000,0,0);}
.m58_c00274{transform:matrix(0.275810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275810,0.000000,0.000000,0.250000,0,0);}
.mfd_c00274{transform:matrix(0.275880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275880,0.000000,0.000000,0.250000,0,0);}
.m27_c00274{transform:matrix(0.275990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275990,0.000000,0.000000,0.250000,0,0);}
.mbd_c00274{transform:matrix(0.276395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276395,0.000000,0.000000,0.250000,0,0);}
.m15_c00274{transform:matrix(0.276585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276585,0.000000,0.000000,0.250000,0,0);}
.m3_c00274{transform:matrix(0.276700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276700,0.000000,0.000000,0.250000,0,0);}
.m99_c00274{transform:matrix(0.277190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277190,0.000000,0.000000,0.250000,0,0);}
.md3_c00274{transform:matrix(0.277460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277460,0.000000,0.000000,0.250000,0,0);}
.mce_c00274{transform:matrix(0.278170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278170,0.000000,0.000000,0.250000,0,0);}
.m57_c00274{transform:matrix(0.278910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278910,0.000000,0.000000,0.250000,0,0);}
.m14_c00274{transform:matrix(0.278955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278955,0.000000,0.000000,0.250000,0,0);}
.mf_c00274{transform:matrix(0.279780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279780,0.000000,0.000000,0.250000,0,0);}
.med_c00274{transform:matrix(0.280025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280025,0.000000,0.000000,0.250000,0,0);}
.m104_c00274{transform:matrix(0.280345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280345,0.000000,0.000000,0.250000,0,0);}
.m53_c00274{transform:matrix(0.280860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280860,0.000000,0.000000,0.250000,0,0);}
.m8b_c00274{transform:matrix(0.281560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281560,0.000000,0.000000,0.250000,0,0);}
.m101_c00274{transform:matrix(0.290200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290200,0.000000,0.000000,0.250000,0,0);}
.m59_c00274{transform:matrix(0.290955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290955,0.000000,0.000000,0.250000,0,0);}
.m5c_c00274{transform:matrix(0.292750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292750,0.000000,0.000000,0.250000,0,0);}
.m63_c00274{transform:matrix(0.295330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295330,0.000000,0.000000,0.250000,0,0);}
.m0_c00274{transform:matrix(0.307875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307875,0.000000,0.000000,0.250000,0,0);}
.m6e_c00274{transform:matrix(0.310060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310060,0.000000,0.000000,0.250000,0,0);}
.m13d_c00274{transform:matrix(0.320335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320335,0.000000,0.000000,0.250000,0,0);}
.m107_c00274{transform:matrix(0.335830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335830,0.000000,0.000000,0.250000,0,0);}
.m105_c00274{transform:matrix(0.339165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339165,0.000000,0.000000,0.250000,0,0);}
.m13c_c00274{transform:matrix(0.378100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378100,0.000000,0.000000,0.250000,0,0);}
.m10a_c00274{transform:matrix(0.440205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440205,0.000000,0.000000,0.250000,0,0);}
.m106_c00274{transform:matrix(0.646295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.646295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.646295,0.000000,0.000000,0.250000,0,0);}
.v0_c00274{vertical-align:0.000000px;}
.ls0_c00274{letter-spacing:0.000000px;}
.sc__c00274{text-shadow:none;}
.sc0_c00274{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__c00274{-webkit-text-stroke:0px transparent;}
.sc0_c00274{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00274{word-spacing:0.000000px;}
._0_c00274{margin-left:-3.036894px;}
._1_c00274{width:29.242468px;}
.fc0_c00274{color:transparent;}
.fs0_c00274{font-size:18.000000px;}
.fs6_c00274{font-size:36.000000px;}
.fs3_c00274{font-size:66.000000px;}
.fs1_c00274{font-size:72.000000px;}
.fs2_c00274{font-size:78.000000px;}
.fs4_c00274{font-size:84.000000px;}
.fs7_c00274{font-size:90.000000px;}
.fs5_c00274{font-size:108.003456px;}
.y0_c00274{bottom:0.000000px;}
.y2f_c00274{bottom:69.120000px;}
.y2e_c00274{bottom:100.158000px;}
.y2d_c00274{bottom:132.040500px;}
.y2c_c00274{bottom:165.687000px;}
.y2b_c00274{bottom:196.872000px;}
.y2a_c00274{bottom:227.610000px;}
.y29_c00274{bottom:262.170000px;}
.y28_c00274{bottom:279.913500px;}
.y27_c00274{bottom:312.040500px;}
.y26_c00274{bottom:344.233500px;}
.y25_c00274{bottom:375.550500px;}
.y24_c00274{bottom:407.160000px;}
.y23_c00274{bottom:439.366500px;}
.y22_c00274{bottom:471.420000px;}
.y21_c00274{bottom:503.280000px;}
.y20_c00274{bottom:534.600000px;}
.y13_c00274{bottom:553.771500px;}
.y14_c00274{bottom:554.127924px;}
.y15_c00274{bottom:554.829660px;}
.y16_c00274{bottom:555.190512px;}
.y17_c00274{bottom:555.536148px;}
.y18_c00274{bottom:556.149288px;}
.y19_c00274{bottom:556.333020px;}
.y1a_c00274{bottom:556.680924px;}
.y1b_c00274{bottom:557.652708px;}
.y1c_c00274{bottom:558.270396px;}
.y1d_c00274{bottom:558.527604px;}
.y1e_c00274{bottom:558.974796px;}
.y1f_c00274{bottom:559.130568px;}
.y12_c00274{bottom:596.089500px;}
.y11_c00274{bottom:628.270500px;}
.y10_c00274{bottom:659.442000px;}
.ye_c00274{bottom:691.740000px;}
.yc_c00274{bottom:723.597000px;}
.yf_c00274{bottom:723.753000px;}
.yd_c00274{bottom:724.282500px;}
.yb_c00274{bottom:755.730000px;}
.ya_c00274{bottom:787.590000px;}
.y9_c00274{bottom:819.238500px;}
.y8_c00274{bottom:850.842000px;}
.y7_c00274{bottom:882.106500px;}
.y6_c00274{bottom:913.209000px;}
.y5_c00274{bottom:944.578500px;}
.y4_c00274{bottom:977.412000px;}
.y3_c00274{bottom:1008.052500px;}
.y2_c00274{bottom:1039.900500px;}
.y1_c00274{bottom:1056.927000px;}
.h2_c00274{height:18.000000px;}
.h8_c00274{height:36.000000px;}
.h5_c00274{height:66.000000px;}
.h3_c00274{height:72.000000px;}
.h4_c00274{height:78.000000px;}
.h6_c00274{height:84.000000px;}
.h9_c00274{height:90.000000px;}
.h7_c00274{height:108.003456px;}
.h1_c00274{height:1165.500000px;}
.h0_c00274{height:1165.800000px;}
.w0_c00274{width:915.000000px;}
.x0_c00274{left:0.000000px;}
.x4f_c00274{left:150.930000px;}
.x2_c00274{left:152.010000px;}
.x45_c00274{left:153.090000px;}
.x8d_c00274{left:154.170000px;}
.x7d_c00274{left:155.250000px;}
.x47_c00274{left:175.230000px;}
.x79_c00274{left:182.520000px;}
.x3_c00274{left:184.680000px;}
.x36_c00274{left:196.560000px;}
.xe_c00274{left:206.820000px;}
.x7e_c00274{left:210.060000px;}
.x4_c00274{left:217.620000px;}
.x3c_c00274{left:218.970000px;}
.x31_c00274{left:228.150000px;}
.x42_c00274{left:229.230000px;}
.x8b_c00274{left:230.310000px;}
.x7a_c00274{left:231.390000px;}
.x59_c00274{left:240.570000px;}
.x88_c00274{left:241.650000px;}
.xf_c00274{left:250.560000px;}
.x27_c00274{left:251.910000px;}
.x73_c00274{left:252.990000px;}
.x2d_c00274{left:262.440000px;}
.x6e_c00274{left:264.060000px;}
.x7b_c00274{left:267.570000px;}
.x16_c00274{left:271.890000px;}
.x89_c00274{left:273.510000px;}
.x7f_c00274{left:274.590000px;}
.x7c_c00274{left:281.340000px;}
.x3d_c00274{left:284.040000px;}
.x64_c00274{left:287.820000px;}
.x32_c00274{left:294.840000px;}
.x68_c00274{left:304.830000px;}
.x17_c00274{left:305.910000px;}
.x5_c00274{left:315.360000px;}
.x28_c00274{left:317.520000px;}
.x74_c00274{left:318.870000px;}
.x82_c00274{left:319.950000px;}
.x2e_c00274{left:326.700000px;}
.x53_c00274{left:328.860000px;}
.x22_c00274{left:337.500000px;}
.x37_c00274{left:339.390000px;}
.x80_c00274{left:340.740000px;}
.x18_c00274{left:349.650000px;}
.x66_c00274{left:350.730000px;}
.x86_c00274{left:352.080000px;}
.x6_c00274{left:359.370000px;}
.x69_c00274{left:360.450000px;}
.x4d_c00274{left:361.530000px;}
.x5f_c00274{left:371.986500px;}
.x3e_c00274{left:382.860000px;}
.x29_c00274{left:392.580000px;}
.x19_c00274{left:393.930000px;}
.x7_c00274{left:403.380000px;}
.x50_c00274{left:404.460000px;}
.x43_c00274{left:405.810000px;}
.x10_c00274{left:415.530000px;}
.x65_c00274{left:416.610000px;}
.x5a_c00274{left:417.690000px;}
.x75_c00274{left:426.870000px;}
.x3f_c00274{left:427.950000px;}
.x1a_c00274{left:436.320000px;}
.x38_c00274{left:437.400000px;}
.x6a_c00274{left:438.750000px;}
.x23_c00274{left:447.930000px;}
.x54_c00274{left:449.820000px;}
.x51_c00274{left:460.890000px;}
.x39_c00274{left:469.800000px;}
.x24_c00274{left:470.880000px;}
.x6d_c00274{left:481.410000px;}
.x33_c00274{left:482.490000px;}
.x76_c00274{left:483.570000px;}
.x8c_c00274{left:492.480000px;}
.x52_c00274{left:493.560000px;}
.x5b_c00274{left:494.640000px;}
.x11_c00274{left:502.200000px;}
.x8_c00274{left:504.360000px;}
.x77_c00274{left:508.410000px;}
.x40_c00274{left:514.620000px;}
.x83_c00274{left:516.510000px;}
.x6f_c00274{left:525.150000px;}
.x1b_c00274{left:526.230000px;}
.x2a_c00274{left:533.520000px;}
.x9_c00274{left:534.870000px;}
.x12_c00274{left:536.220000px;}
.x4e_c00274{left:537.300000px;}
.x1c_c00274{left:547.560000px;}
.x34_c00274{left:548.640000px;}
.x55_c00274{left:559.710000px;}
.x13_c00274{left:569.430000px;}
.x67_c00274{left:570.510000px;}
.x1d_c00274{left:579.960000px;}
.x6b_c00274{left:581.040000px;}
.x84_c00274{left:584.280000px;}
.x46_c00274{left:592.380000px;}
.x78_c00274{left:593.460000px;}
.x3a_c00274{left:602.100000px;}
.x5c_c00274{left:603.180000px;}
.x48_c00274{left:604.260000px;}
.x41_c00274{left:612.900000px;}
.x56_c00274{left:614.520000px;}
.xa_c00274{left:624.240000px;}
.x1e_c00274{left:634.500000px;}
.x60_c00274{left:636.556500px;}
.x44_c00274{left:645.300000px;}
.x49_c00274{left:646.920000px;}
.x25_c00274{left:656.100000px;}
.x71_c00274{left:657.180000px;}
.x35_c00274{left:659.340000px;}
.xb_c00274{left:668.250000px;}
.x2f_c00274{left:679.590000px;}
.x6c_c00274{left:680.940000px;}
.x14_c00274{left:689.580000px;}
.x5d_c00274{left:690.930000px;}
.xc_c00274{left:701.460000px;}
.x4a_c00274{left:703.350000px;}
.x1f_c00274{left:711.720000px;}
.x61_c00274{left:713.767500px;}
.x4b_c00274{left:723.060000px;}
.x72_c00274{left:724.140000px;}
.x57_c00274{left:725.220000px;}
.x5e_c00274{left:735.750000px;}
.xd_c00274{left:744.390000px;}
.x2b_c00274{left:745.740000px;}
.x81_c00274{left:748.980000px;}
.x26_c00274{left:755.190000px;}
.x4c_c00274{left:756.540000px;}
.x70_c00274{left:767.880000px;}
.x20_c00274{left:777.060000px;}
.x3b_c00274{left:778.140000px;}
.x8a_c00274{left:779.490000px;}
.x30_c00274{left:788.940000px;}
.x21_c00274{left:799.740000px;}
.x62_c00274{left:801.817500px;}
.x15_c00274{left:810.540000px;}
.x2c_c00274{left:812.430000px;}
.x58_c00274{left:813.510000px;}
.x87_c00274{left:814.860000px;}
.x63_c00274{left:821.289000px;}
.x85_c00274{left:822.690000px;}
.x1_c00274{left:844.020000px;}
@media print{
.v0_c00274{vertical-align:0.000000pt;}
.ls0_c00274{letter-spacing:0.000000pt;}
.ws0_c00274{word-spacing:0.000000pt;}
._0_c00274{margin-left:-2.699461pt;}
._1_c00274{width:25.993305pt;}
.fs0_c00274{font-size:16.000000pt;}
.fs6_c00274{font-size:32.000000pt;}
.fs3_c00274{font-size:58.666667pt;}
.fs1_c00274{font-size:64.000000pt;}
.fs2_c00274{font-size:69.333333pt;}
.fs4_c00274{font-size:74.666667pt;}
.fs7_c00274{font-size:80.000000pt;}
.fs5_c00274{font-size:96.003072pt;}
.y0_c00274{bottom:0.000000pt;}
.y2f_c00274{bottom:61.440000pt;}
.y2e_c00274{bottom:89.029333pt;}
.y2d_c00274{bottom:117.369333pt;}
.y2c_c00274{bottom:147.277333pt;}
.y2b_c00274{bottom:174.997333pt;}
.y2a_c00274{bottom:202.320000pt;}
.y29_c00274{bottom:233.040000pt;}
.y28_c00274{bottom:248.812000pt;}
.y27_c00274{bottom:277.369333pt;}
.y26_c00274{bottom:305.985333pt;}
.y25_c00274{bottom:333.822667pt;}
.y24_c00274{bottom:361.920000pt;}
.y23_c00274{bottom:390.548000pt;}
.y22_c00274{bottom:419.040000pt;}
.y21_c00274{bottom:447.360000pt;}
.y20_c00274{bottom:475.200000pt;}
.y13_c00274{bottom:492.241333pt;}
.y14_c00274{bottom:492.558155pt;}
.y15_c00274{bottom:493.181920pt;}
.y16_c00274{bottom:493.502677pt;}
.y17_c00274{bottom:493.809909pt;}
.y18_c00274{bottom:494.354923pt;}
.y19_c00274{bottom:494.518240pt;}
.y1a_c00274{bottom:494.827488pt;}
.y1b_c00274{bottom:495.691296pt;}
.y1c_c00274{bottom:496.240352pt;}
.y1d_c00274{bottom:496.468981pt;}
.y1e_c00274{bottom:496.866485pt;}
.y1f_c00274{bottom:497.004949pt;}
.y12_c00274{bottom:529.857333pt;}
.y11_c00274{bottom:558.462667pt;}
.y10_c00274{bottom:586.170667pt;}
.ye_c00274{bottom:614.880000pt;}
.yc_c00274{bottom:643.197333pt;}
.yf_c00274{bottom:643.336000pt;}
.yd_c00274{bottom:643.806667pt;}
.yb_c00274{bottom:671.760000pt;}
.ya_c00274{bottom:700.080000pt;}
.y9_c00274{bottom:728.212000pt;}
.y8_c00274{bottom:756.304000pt;}
.y7_c00274{bottom:784.094667pt;}
.y6_c00274{bottom:811.741333pt;}
.y5_c00274{bottom:839.625333pt;}
.y4_c00274{bottom:868.810667pt;}
.y3_c00274{bottom:896.046667pt;}
.y2_c00274{bottom:924.356000pt;}
.y1_c00274{bottom:939.490667pt;}
.h2_c00274{height:16.000000pt;}
.h8_c00274{height:32.000000pt;}
.h5_c00274{height:58.666667pt;}
.h3_c00274{height:64.000000pt;}
.h4_c00274{height:69.333333pt;}
.h6_c00274{height:74.666667pt;}
.h9_c00274{height:80.000000pt;}
.h7_c00274{height:96.003072pt;}
.h1_c00274{height:1036.000000pt;}
.h0_c00274{height:1036.266667pt;}
.w0_c00274{width:813.333333pt;}
.x0_c00274{left:0.000000pt;}
.x4f_c00274{left:134.160000pt;}
.x2_c00274{left:135.120000pt;}
.x45_c00274{left:136.080000pt;}
.x8d_c00274{left:137.040000pt;}
.x7d_c00274{left:138.000000pt;}
.x47_c00274{left:155.760000pt;}
.x79_c00274{left:162.240000pt;}
.x3_c00274{left:164.160000pt;}
.x36_c00274{left:174.720000pt;}
.xe_c00274{left:183.840000pt;}
.x7e_c00274{left:186.720000pt;}
.x4_c00274{left:193.440000pt;}
.x3c_c00274{left:194.640000pt;}
.x31_c00274{left:202.800000pt;}
.x42_c00274{left:203.760000pt;}
.x8b_c00274{left:204.720000pt;}
.x7a_c00274{left:205.680000pt;}
.x59_c00274{left:213.840000pt;}
.x88_c00274{left:214.800000pt;}
.xf_c00274{left:222.720000pt;}
.x27_c00274{left:223.920000pt;}
.x73_c00274{left:224.880000pt;}
.x2d_c00274{left:233.280000pt;}
.x6e_c00274{left:234.720000pt;}
.x7b_c00274{left:237.840000pt;}
.x16_c00274{left:241.680000pt;}
.x89_c00274{left:243.120000pt;}
.x7f_c00274{left:244.080000pt;}
.x7c_c00274{left:250.080000pt;}
.x3d_c00274{left:252.480000pt;}
.x64_c00274{left:255.840000pt;}
.x32_c00274{left:262.080000pt;}
.x68_c00274{left:270.960000pt;}
.x17_c00274{left:271.920000pt;}
.x5_c00274{left:280.320000pt;}
.x28_c00274{left:282.240000pt;}
.x74_c00274{left:283.440000pt;}
.x82_c00274{left:284.400000pt;}
.x2e_c00274{left:290.400000pt;}
.x53_c00274{left:292.320000pt;}
.x22_c00274{left:300.000000pt;}
.x37_c00274{left:301.680000pt;}
.x80_c00274{left:302.880000pt;}
.x18_c00274{left:310.800000pt;}
.x66_c00274{left:311.760000pt;}
.x86_c00274{left:312.960000pt;}
.x6_c00274{left:319.440000pt;}
.x69_c00274{left:320.400000pt;}
.x4d_c00274{left:321.360000pt;}
.x5f_c00274{left:330.654667pt;}
.x3e_c00274{left:340.320000pt;}
.x29_c00274{left:348.960000pt;}
.x19_c00274{left:350.160000pt;}
.x7_c00274{left:358.560000pt;}
.x50_c00274{left:359.520000pt;}
.x43_c00274{left:360.720000pt;}
.x10_c00274{left:369.360000pt;}
.x65_c00274{left:370.320000pt;}
.x5a_c00274{left:371.280000pt;}
.x75_c00274{left:379.440000pt;}
.x3f_c00274{left:380.400000pt;}
.x1a_c00274{left:387.840000pt;}
.x38_c00274{left:388.800000pt;}
.x6a_c00274{left:390.000000pt;}
.x23_c00274{left:398.160000pt;}
.x54_c00274{left:399.840000pt;}
.x51_c00274{left:409.680000pt;}
.x39_c00274{left:417.600000pt;}
.x24_c00274{left:418.560000pt;}
.x6d_c00274{left:427.920000pt;}
.x33_c00274{left:428.880000pt;}
.x76_c00274{left:429.840000pt;}
.x8c_c00274{left:437.760000pt;}
.x52_c00274{left:438.720000pt;}
.x5b_c00274{left:439.680000pt;}
.x11_c00274{left:446.400000pt;}
.x8_c00274{left:448.320000pt;}
.x77_c00274{left:451.920000pt;}
.x40_c00274{left:457.440000pt;}
.x83_c00274{left:459.120000pt;}
.x6f_c00274{left:466.800000pt;}
.x1b_c00274{left:467.760000pt;}
.x2a_c00274{left:474.240000pt;}
.x9_c00274{left:475.440000pt;}
.x12_c00274{left:476.640000pt;}
.x4e_c00274{left:477.600000pt;}
.x1c_c00274{left:486.720000pt;}
.x34_c00274{left:487.680000pt;}
.x55_c00274{left:497.520000pt;}
.x13_c00274{left:506.160000pt;}
.x67_c00274{left:507.120000pt;}
.x1d_c00274{left:515.520000pt;}
.x6b_c00274{left:516.480000pt;}
.x84_c00274{left:519.360000pt;}
.x46_c00274{left:526.560000pt;}
.x78_c00274{left:527.520000pt;}
.x3a_c00274{left:535.200000pt;}
.x5c_c00274{left:536.160000pt;}
.x48_c00274{left:537.120000pt;}
.x41_c00274{left:544.800000pt;}
.x56_c00274{left:546.240000pt;}
.xa_c00274{left:554.880000pt;}
.x1e_c00274{left:564.000000pt;}
.x60_c00274{left:565.828000pt;}
.x44_c00274{left:573.600000pt;}
.x49_c00274{left:575.040000pt;}
.x25_c00274{left:583.200000pt;}
.x71_c00274{left:584.160000pt;}
.x35_c00274{left:586.080000pt;}
.xb_c00274{left:594.000000pt;}
.x2f_c00274{left:604.080000pt;}
.x6c_c00274{left:605.280000pt;}
.x14_c00274{left:612.960000pt;}
.x5d_c00274{left:614.160000pt;}
.xc_c00274{left:623.520000pt;}
.x4a_c00274{left:625.200000pt;}
.x1f_c00274{left:632.640000pt;}
.x61_c00274{left:634.460000pt;}
.x4b_c00274{left:642.720000pt;}
.x72_c00274{left:643.680000pt;}
.x57_c00274{left:644.640000pt;}
.x5e_c00274{left:654.000000pt;}
.xd_c00274{left:661.680000pt;}
.x2b_c00274{left:662.880000pt;}
.x81_c00274{left:665.760000pt;}
.x26_c00274{left:671.280000pt;}
.x4c_c00274{left:672.480000pt;}
.x70_c00274{left:682.560000pt;}
.x20_c00274{left:690.720000pt;}
.x3b_c00274{left:691.680000pt;}
.x8a_c00274{left:692.880000pt;}
.x30_c00274{left:701.280000pt;}
.x21_c00274{left:710.880000pt;}
.x62_c00274{left:712.726667pt;}
.x15_c00274{left:720.480000pt;}
.x2c_c00274{left:722.160000pt;}
.x58_c00274{left:723.120000pt;}
.x87_c00274{left:724.320000pt;}
.x63_c00274{left:730.034667pt;}
.x85_c00274{left:731.280000pt;}
.x1_c00274{left:750.240000pt;}
}





/* 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_c00275 {
    display:none;
  }
  .loading-indicator_c00275.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00275 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_c00275 { 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_c00275" -> "#page-container .classname_c00275")
 */
.pf_c00275 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00275 { /* 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_c00275.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00275 { /* 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_c00275 { /* 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_c00275 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00275 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00275 {overflow:visible;}
  }
}
.c_c00275 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00275 { /* 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_c00275:after { /* webkit #35443 */
  content: '';
}
.t_c00275:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00275 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 */
}
.__c00275 { /* 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_c00275 { /* info for Javascript */
  display:none;
}
.l_c00275 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00275 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00275 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00275: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_c00275 {
    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_c00275.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00275.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_c00275 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00275{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00275;src:url('chunks/assets/font_a72a081e1d55f37b0ea09712.woff2')format("woff");}.ff1_c00275{font-family:ff1_c00275;line-height:1.000000;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;}
.m0_c00275{transform:matrix(0.138295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138295,0.000000,0.000000,0.250000,0,0);}
.m1_c00275{transform:matrix(0.251445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251445,0.000000,0.000000,0.250000,0,0);}
.m3_c00275{transform:matrix(0.615225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615225,0.000000,0.000000,0.250000,0,0);}
.m2_c00275{transform:matrix(0.723670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.723670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.723670,0.000000,0.000000,0.250000,0,0);}
.v0_c00275{vertical-align:0.000000px;}
.ls0_c00275{letter-spacing:0.000000px;}
.sc__c00275{text-shadow:none;}
.sc0_c00275{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__c00275{-webkit-text-stroke:0px transparent;}
.sc0_c00275{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00275{word-spacing:0.000000px;}
.fc0_c00275{color:transparent;}
.fs0_c00275{font-size:18.000000px;}
.y0_c00275{bottom:0.000000px;}
.y2_c00275{bottom:584.155500px;}
.y1_c00275{bottom:589.410000px;}
.h2_c00275{height:18.000000px;}
.h1_c00275{height:1165.500000px;}
.h0_c00275{height:1165.800000px;}
.w0_c00275{width:915.000000px;}
.x0_c00275{left:0.000000px;}
.x3_c00275{left:701.190000px;}
.x1_c00275{left:711.450000px;}
.x4_c00275{left:721.980000px;}
.x2_c00275{left:724.950000px;}
@media print{
.v0_c00275{vertical-align:0.000000pt;}
.ls0_c00275{letter-spacing:0.000000pt;}
.ws0_c00275{word-spacing:0.000000pt;}
.fs0_c00275{font-size:16.000000pt;}
.y0_c00275{bottom:0.000000pt;}
.y2_c00275{bottom:519.249333pt;}
.y1_c00275{bottom:523.920000pt;}
.h2_c00275{height:16.000000pt;}
.h1_c00275{height:1036.000000pt;}
.h0_c00275{height:1036.266667pt;}
.w0_c00275{width:813.333333pt;}
.x0_c00275{left:0.000000pt;}
.x3_c00275{left:623.280000pt;}
.x1_c00275{left:632.400000pt;}
.x4_c00275{left:641.760000pt;}
.x2_c00275{left:644.400000pt;}
}





/* 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_c00276 {
    display:none;
  }
  .loading-indicator_c00276.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00276 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_c00276 { 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_c00276" -> "#page-container .classname_c00276")
 */
.pf_c00276 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00276 { /* 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_c00276.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00276 { /* 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_c00276 { /* 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_c00276 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00276 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00276 {overflow:visible;}
  }
}
.c_c00276 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00276 { /* 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_c00276:after { /* webkit #35443 */
  content: '';
}
.t_c00276:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00276 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 */
}
.__c00276 { /* 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_c00276 { /* info for Javascript */
  display:none;
}
.l_c00276 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00276 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00276 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00276: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_c00276 {
    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_c00276.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00276.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_c00276 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00276{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00276;src:url('chunks/assets/font_fabf4b590f7fb32aea93ffb2.woff2')format("woff");}.ff1_c00276{font-family:ff1_c00276;line-height:1.000000;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;}
.mbe_c00276{transform:matrix(0.006365,0.000045,-0.001750,0.249994,0,0);-ms-transform:matrix(0.006365,0.000045,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.006365,0.000045,-0.001750,0.249994,0,0);}
.mc8_c00276{transform:matrix(0.039469,0.000276,-0.001750,0.249994,0,0);-ms-transform:matrix(0.039469,0.000276,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.039469,0.000276,-0.001750,0.249994,0,0);}
.mc9_c00276{transform:matrix(0.049549,0.000347,-0.001750,0.249994,0,0);-ms-transform:matrix(0.049549,0.000347,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.049549,0.000347,-0.001750,0.249994,0,0);}
.mc7_c00276{transform:matrix(0.051109,0.000358,-0.001750,0.249994,0,0);-ms-transform:matrix(0.051109,0.000358,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.051109,0.000358,-0.001750,0.249994,0,0);}
.mca_c00276{transform:matrix(0.076433,0.000535,-0.001750,0.249994,0,0);-ms-transform:matrix(0.076433,0.000535,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.076433,0.000535,-0.001750,0.249994,0,0);}
.mc0_c00276{transform:matrix(0.097578,0.000683,-0.001750,0.249994,0,0);-ms-transform:matrix(0.097578,0.000683,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.097578,0.000683,-0.001750,0.249994,0,0);}
.m5a_c00276{transform:matrix(0.125187,0.000876,-0.001750,0.249994,0,0);-ms-transform:matrix(0.125187,0.000876,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.125187,0.000876,-0.001750,0.249994,0,0);}
.m7c_c00276{transform:matrix(0.131517,0.000921,-0.001750,0.249994,0,0);-ms-transform:matrix(0.131517,0.000921,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.131517,0.000921,-0.001750,0.249994,0,0);}
.mbf_c00276{transform:matrix(0.132797,0.000930,-0.001750,0.249994,0,0);-ms-transform:matrix(0.132797,0.000930,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.132797,0.000930,-0.001750,0.249994,0,0);}
.mc5_c00276{transform:matrix(0.135827,0.000951,-0.001750,0.249994,0,0);-ms-transform:matrix(0.135827,0.000951,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.135827,0.000951,-0.001750,0.249994,0,0);}
.mf3_c00276{transform:matrix(0.164061,0.001148,-0.001750,0.249994,0,0);-ms-transform:matrix(0.164061,0.001148,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.164061,0.001148,-0.001750,0.249994,0,0);}
.mf4_c00276{transform:matrix(0.164521,0.001152,-0.001750,0.249994,0,0);-ms-transform:matrix(0.164521,0.001152,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.164521,0.001152,-0.001750,0.249994,0,0);}
.ma2_c00276{transform:matrix(0.166791,0.001168,-0.001750,0.249994,0,0);-ms-transform:matrix(0.166791,0.001168,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.166791,0.001168,-0.001750,0.249994,0,0);}
.m7a_c00276{transform:matrix(0.170171,0.001191,-0.001750,0.249994,0,0);-ms-transform:matrix(0.170171,0.001191,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.170171,0.001191,-0.001750,0.249994,0,0);}
.m114_c00276{transform:matrix(0.172155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172155,0.000000,0.000000,0.250000,0,0);}
.mf2_c00276{transform:matrix(0.173546,0.001215,-0.001750,0.249994,0,0);-ms-transform:matrix(0.173546,0.001215,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.173546,0.001215,-0.001750,0.249994,0,0);}
.mc1_c00276{transform:matrix(0.174411,0.001221,-0.001750,0.249994,0,0);-ms-transform:matrix(0.174411,0.001221,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.174411,0.001221,-0.001750,0.249994,0,0);}
.m80_c00276{transform:matrix(0.181601,0.001271,-0.001750,0.249994,0,0);-ms-transform:matrix(0.181601,0.001271,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.181601,0.001271,-0.001750,0.249994,0,0);}
.m75_c00276{transform:matrix(0.186595,0.001306,-0.001750,0.249994,0,0);-ms-transform:matrix(0.186595,0.001306,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.186595,0.001306,-0.001750,0.249994,0,0);}
.mbd_c00276{transform:matrix(0.187920,0.001315,-0.001750,0.249994,0,0);-ms-transform:matrix(0.187920,0.001315,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.187920,0.001315,-0.001750,0.249994,0,0);}
.m64_c00276{transform:matrix(0.187980,0.001316,-0.001750,0.249994,0,0);-ms-transform:matrix(0.187980,0.001316,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.187980,0.001316,-0.001750,0.249994,0,0);}
.m116_c00276{transform:matrix(0.188885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188885,0.000000,0.000000,0.250000,0,0);}
.mcb_c00276{transform:matrix(0.189535,0.001327,-0.001750,0.249994,0,0);-ms-transform:matrix(0.189535,0.001327,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.189535,0.001327,-0.001750,0.249994,0,0);}
.m83_c00276{transform:matrix(0.189740,0.001328,-0.001750,0.249994,0,0);-ms-transform:matrix(0.189740,0.001328,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.189740,0.001328,-0.001750,0.249994,0,0);}
.m10e_c00276{transform:matrix(0.190595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190595,0.000000,0.000000,0.250000,0,0);}
.mee_c00276{transform:matrix(0.191370,0.001340,-0.001750,0.249994,0,0);-ms-transform:matrix(0.191370,0.001340,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.191370,0.001340,-0.001750,0.249994,0,0);}
.mf6_c00276{transform:matrix(0.192005,0.001344,-0.001750,0.249994,0,0);-ms-transform:matrix(0.192005,0.001344,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.192005,0.001344,-0.001750,0.249994,0,0);}
.m113_c00276{transform:matrix(0.195925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195925,0.000000,0.000000,0.250000,0,0);}
.m118_c00276{transform:matrix(0.196020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196020,0.000000,0.000000,0.250000,0,0);}
.m115_c00276{transform:matrix(0.196085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196085,0.000000,0.000000,0.250000,0,0);}
.m60_c00276{transform:matrix(0.196120,0.001373,-0.001750,0.249994,0,0);-ms-transform:matrix(0.196120,0.001373,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.196120,0.001373,-0.001750,0.249994,0,0);}
.med_c00276{transform:matrix(0.196450,0.001375,-0.001750,0.249994,0,0);-ms-transform:matrix(0.196450,0.001375,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.196450,0.001375,-0.001750,0.249994,0,0);}
.m84_c00276{transform:matrix(0.196945,0.001379,-0.001750,0.249994,0,0);-ms-transform:matrix(0.196945,0.001379,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.196945,0.001379,-0.001750,0.249994,0,0);}
.me9_c00276{transform:matrix(0.199095,0.001394,-0.001750,0.249994,0,0);-ms-transform:matrix(0.199095,0.001394,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.199095,0.001394,-0.001750,0.249994,0,0);}
.m112_c00276{transform:matrix(0.199140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199140,0.000000,0.000000,0.250000,0,0);}
.md2_c00276{transform:matrix(0.199240,0.001395,-0.001750,0.249994,0,0);-ms-transform:matrix(0.199240,0.001395,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.199240,0.001395,-0.001750,0.249994,0,0);}
.mbc_c00276{transform:matrix(0.199725,0.001398,-0.001750,0.249994,0,0);-ms-transform:matrix(0.199725,0.001398,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.199725,0.001398,-0.001750,0.249994,0,0);}
.mf7_c00276{transform:matrix(0.199920,0.001399,-0.001750,0.249994,0,0);-ms-transform:matrix(0.199920,0.001399,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.199920,0.001399,-0.001750,0.249994,0,0);}
.md8_c00276{transform:matrix(0.200660,0.001405,-0.001750,0.249994,0,0);-ms-transform:matrix(0.200660,0.001405,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.200660,0.001405,-0.001750,0.249994,0,0);}
.m1c_c00276{transform:matrix(0.201801,0.001211,-0.001500,0.249996,0,0);-ms-transform:matrix(0.201801,0.001211,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.201801,0.001211,-0.001500,0.249996,0,0);}
.m8d_c00276{transform:matrix(0.202285,0.001416,-0.001750,0.249994,0,0);-ms-transform:matrix(0.202285,0.001416,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.202285,0.001416,-0.001750,0.249994,0,0);}
.m111_c00276{transform:matrix(0.202340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202340,0.000000,0.000000,0.250000,0,0);}
.m42_c00276{transform:matrix(0.202421,0.001215,-0.001500,0.249996,0,0);-ms-transform:matrix(0.202421,0.001215,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.202421,0.001215,-0.001500,0.249996,0,0);}
.m99_c00276{transform:matrix(0.202890,0.001420,-0.001750,0.249994,0,0);-ms-transform:matrix(0.202890,0.001420,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.202890,0.001420,-0.001750,0.249994,0,0);}
.m77_c00276{transform:matrix(0.203345,0.001423,-0.001750,0.249994,0,0);-ms-transform:matrix(0.203345,0.001423,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.203345,0.001423,-0.001750,0.249994,0,0);}
.m11a_c00276{transform:matrix(0.204640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204640,0.000000,0.000000,0.250000,0,0);}
.mce_c00276{transform:matrix(0.205380,0.001438,-0.001750,0.249994,0,0);-ms-transform:matrix(0.205380,0.001438,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.205380,0.001438,-0.001750,0.249994,0,0);}
.m7d_c00276{transform:matrix(0.205645,0.001440,-0.001750,0.249994,0,0);-ms-transform:matrix(0.205645,0.001440,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.205645,0.001440,-0.001750,0.249994,0,0);}
.m9c_c00276{transform:matrix(0.206400,0.001445,-0.001750,0.249994,0,0);-ms-transform:matrix(0.206400,0.001445,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.206400,0.001445,-0.001750,0.249994,0,0);}
.m8e_c00276{transform:matrix(0.206825,0.001448,-0.001750,0.249994,0,0);-ms-transform:matrix(0.206825,0.001448,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.206825,0.001448,-0.001750,0.249994,0,0);}
.m5b_c00276{transform:matrix(0.207155,0.001450,-0.001750,0.249994,0,0);-ms-transform:matrix(0.207155,0.001450,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.207155,0.001450,-0.001750,0.249994,0,0);}
.mf5_c00276{transform:matrix(0.207195,0.001450,-0.001750,0.249994,0,0);-ms-transform:matrix(0.207195,0.001450,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.207195,0.001450,-0.001750,0.249994,0,0);}
.ma0_c00276{transform:matrix(0.207390,0.001452,-0.001750,0.249994,0,0);-ms-transform:matrix(0.207390,0.001452,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.207390,0.001452,-0.001750,0.249994,0,0);}
.m62_c00276{transform:matrix(0.207420,0.001452,-0.001750,0.249994,0,0);-ms-transform:matrix(0.207420,0.001452,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.207420,0.001452,-0.001750,0.249994,0,0);}
.m6_c00276{transform:matrix(0.207446,0.001245,-0.001500,0.249996,0,0);-ms-transform:matrix(0.207446,0.001245,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.207446,0.001245,-0.001500,0.249996,0,0);}
.mfc_c00276{transform:matrix(0.208503,0.001668,-0.002000,0.249992,0,0);-ms-transform:matrix(0.208503,0.001668,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.208503,0.001668,-0.002000,0.249992,0,0);}
.m9f_c00276{transform:matrix(0.208505,0.001460,-0.001750,0.249994,0,0);-ms-transform:matrix(0.208505,0.001460,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.208505,0.001460,-0.001750,0.249994,0,0);}
.me8_c00276{transform:matrix(0.208600,0.001460,-0.001750,0.249994,0,0);-ms-transform:matrix(0.208600,0.001460,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.208600,0.001460,-0.001750,0.249994,0,0);}
.m11b_c00276{transform:matrix(0.208745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208745,0.000000,0.000000,0.250000,0,0);}
.m119_c00276{transform:matrix(0.209095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209095,0.000000,0.000000,0.250000,0,0);}
.m3f_c00276{transform:matrix(0.209356,0.001256,-0.001500,0.249996,0,0);-ms-transform:matrix(0.209356,0.001256,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.209356,0.001256,-0.001500,0.249996,0,0);}
.mc2_c00276{transform:matrix(0.209370,0.001466,-0.001750,0.249994,0,0);-ms-transform:matrix(0.209370,0.001466,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.209370,0.001466,-0.001750,0.249994,0,0);}
.m16_c00276{transform:matrix(0.209896,0.001259,-0.001500,0.249996,0,0);-ms-transform:matrix(0.209896,0.001259,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.209896,0.001259,-0.001500,0.249996,0,0);}
.m67_c00276{transform:matrix(0.209930,0.001470,-0.001750,0.249994,0,0);-ms-transform:matrix(0.209930,0.001470,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.209930,0.001470,-0.001750,0.249994,0,0);}
.m66_c00276{transform:matrix(0.210690,0.001475,-0.001750,0.249994,0,0);-ms-transform:matrix(0.210690,0.001475,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.210690,0.001475,-0.001750,0.249994,0,0);}
.mf9_c00276{transform:matrix(0.211863,0.001695,-0.002000,0.249992,0,0);-ms-transform:matrix(0.211863,0.001695,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.211863,0.001695,-0.002000,0.249992,0,0);}
.m7e_c00276{transform:matrix(0.212400,0.001487,-0.001750,0.249994,0,0);-ms-transform:matrix(0.212400,0.001487,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.212400,0.001487,-0.001750,0.249994,0,0);}
.mff_c00276{transform:matrix(0.212713,0.001702,-0.002000,0.249992,0,0);-ms-transform:matrix(0.212713,0.001702,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.212713,0.001702,-0.002000,0.249992,0,0);}
.m106_c00276{transform:matrix(0.213128,0.001705,-0.002000,0.249992,0,0);-ms-transform:matrix(0.213128,0.001705,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.213128,0.001705,-0.002000,0.249992,0,0);}
.m82_c00276{transform:matrix(0.213270,0.001493,-0.001750,0.249994,0,0);-ms-transform:matrix(0.213270,0.001493,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.213270,0.001493,-0.001750,0.249994,0,0);}
.meb_c00276{transform:matrix(0.213355,0.001493,-0.001750,0.249994,0,0);-ms-transform:matrix(0.213355,0.001493,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.213355,0.001493,-0.001750,0.249994,0,0);}
.m63_c00276{transform:matrix(0.213460,0.001494,-0.001750,0.249994,0,0);-ms-transform:matrix(0.213460,0.001494,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.213460,0.001494,-0.001750,0.249994,0,0);}
.mf8_c00276{transform:matrix(0.214568,0.001717,-0.002000,0.249992,0,0);-ms-transform:matrix(0.214568,0.001717,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.214568,0.001717,-0.002000,0.249992,0,0);}
.m7b_c00276{transform:matrix(0.215210,0.001506,-0.001750,0.249994,0,0);-ms-transform:matrix(0.215210,0.001506,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.215210,0.001506,-0.001750,0.249994,0,0);}
.mdb_c00276{transform:matrix(0.215290,0.001507,-0.001750,0.249994,0,0);-ms-transform:matrix(0.215290,0.001507,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.215290,0.001507,-0.001750,0.249994,0,0);}
.m117_c00276{transform:matrix(0.215345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215345,0.000000,0.000000,0.250000,0,0);}
.m94_c00276{transform:matrix(0.215700,0.001510,-0.001750,0.249994,0,0);-ms-transform:matrix(0.215700,0.001510,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.215700,0.001510,-0.001750,0.249994,0,0);}
.m54_c00276{transform:matrix(0.216905,0.001518,-0.001750,0.249994,0,0);-ms-transform:matrix(0.216905,0.001518,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.216905,0.001518,-0.001750,0.249994,0,0);}
.m12_c00276{transform:matrix(0.216921,0.001302,-0.001500,0.249996,0,0);-ms-transform:matrix(0.216921,0.001302,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.216921,0.001302,-0.001500,0.249996,0,0);}
.m7f_c00276{transform:matrix(0.217150,0.001520,-0.001750,0.249994,0,0);-ms-transform:matrix(0.217150,0.001520,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.217150,0.001520,-0.001750,0.249994,0,0);}
.m10f_c00276{transform:matrix(0.217555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217555,0.000000,0.000000,0.250000,0,0);}
.mc_c00276{transform:matrix(0.219141,0.001315,-0.001500,0.249996,0,0);-ms-transform:matrix(0.219141,0.001315,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.219141,0.001315,-0.001500,0.249996,0,0);}
.m43_c00276{transform:matrix(0.219155,0.001534,-0.001750,0.249994,0,0);-ms-transform:matrix(0.219155,0.001534,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.219155,0.001534,-0.001750,0.249994,0,0);}
.m79_c00276{transform:matrix(0.219310,0.001535,-0.001750,0.249994,0,0);-ms-transform:matrix(0.219310,0.001535,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.219310,0.001535,-0.001750,0.249994,0,0);}
.m5_c00276{transform:matrix(0.219591,0.001318,-0.001500,0.249996,0,0);-ms-transform:matrix(0.219591,0.001318,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.219591,0.001318,-0.001500,0.249996,0,0);}
.m5c_c00276{transform:matrix(0.219750,0.001538,-0.001750,0.249994,0,0);-ms-transform:matrix(0.219750,0.001538,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.219750,0.001538,-0.001750,0.249994,0,0);}
.md6_c00276{transform:matrix(0.220825,0.001546,-0.001750,0.249994,0,0);-ms-transform:matrix(0.220825,0.001546,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.220825,0.001546,-0.001750,0.249994,0,0);}
.m46_c00276{transform:matrix(0.220885,0.001546,-0.001750,0.249994,0,0);-ms-transform:matrix(0.220885,0.001546,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.220885,0.001546,-0.001750,0.249994,0,0);}
.m110_c00276{transform:matrix(0.221470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221470,0.000000,0.000000,0.250000,0,0);}
.md1_c00276{transform:matrix(0.221675,0.001552,-0.001750,0.249994,0,0);-ms-transform:matrix(0.221675,0.001552,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.221675,0.001552,-0.001750,0.249994,0,0);}
.m92_c00276{transform:matrix(0.221880,0.001553,-0.001750,0.249994,0,0);-ms-transform:matrix(0.221880,0.001553,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.221880,0.001553,-0.001750,0.249994,0,0);}
.m69_c00276{transform:matrix(0.222135,0.001555,-0.001750,0.249994,0,0);-ms-transform:matrix(0.222135,0.001555,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.222135,0.001555,-0.001750,0.249994,0,0);}
.m23_c00276{transform:matrix(0.222511,0.001335,-0.001500,0.249996,0,0);-ms-transform:matrix(0.222511,0.001335,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.222511,0.001335,-0.001500,0.249996,0,0);}
.mef_c00276{transform:matrix(0.222700,0.001559,-0.001750,0.249994,0,0);-ms-transform:matrix(0.222700,0.001559,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.222700,0.001559,-0.001750,0.249994,0,0);}
.m8_c00276{transform:matrix(0.222841,0.001337,-0.001500,0.249996,0,0);-ms-transform:matrix(0.222841,0.001337,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.222841,0.001337,-0.001500,0.249996,0,0);}
.m73_c00276{transform:matrix(0.222985,0.001561,-0.001750,0.249994,0,0);-ms-transform:matrix(0.222985,0.001561,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.222985,0.001561,-0.001750,0.249994,0,0);}
.m65_c00276{transform:matrix(0.223270,0.001563,-0.001750,0.249994,0,0);-ms-transform:matrix(0.223270,0.001563,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.223270,0.001563,-0.001750,0.249994,0,0);}
.m6e_c00276{transform:matrix(0.223470,0.001564,-0.001750,0.249994,0,0);-ms-transform:matrix(0.223470,0.001564,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.223470,0.001564,-0.001750,0.249994,0,0);}
.m25_c00276{transform:matrix(0.223626,0.001342,-0.001500,0.249996,0,0);-ms-transform:matrix(0.223626,0.001342,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.223626,0.001342,-0.001500,0.249996,0,0);}
.m3d_c00276{transform:matrix(0.223941,0.001344,-0.001500,0.249996,0,0);-ms-transform:matrix(0.223941,0.001344,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.223941,0.001344,-0.001500,0.249996,0,0);}
.mb4_c00276{transform:matrix(0.224729,0.001573,-0.001750,0.249994,0,0);-ms-transform:matrix(0.224729,0.001573,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.224729,0.001573,-0.001750,0.249994,0,0);}
.m72_c00276{transform:matrix(0.224804,0.001574,-0.001750,0.249994,0,0);-ms-transform:matrix(0.224804,0.001574,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.224804,0.001574,-0.001750,0.249994,0,0);}
.m58_c00276{transform:matrix(0.225119,0.001576,-0.001750,0.249994,0,0);-ms-transform:matrix(0.225119,0.001576,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.225119,0.001576,-0.001750,0.249994,0,0);}
.m49_c00276{transform:matrix(0.225934,0.001582,-0.001750,0.249994,0,0);-ms-transform:matrix(0.225934,0.001582,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.225934,0.001582,-0.001750,0.249994,0,0);}
.m7_c00276{transform:matrix(0.226171,0.001357,-0.001500,0.249996,0,0);-ms-transform:matrix(0.226171,0.001357,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.226171,0.001357,-0.001500,0.249996,0,0);}
.me6_c00276{transform:matrix(0.226609,0.001586,-0.001750,0.249994,0,0);-ms-transform:matrix(0.226609,0.001586,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.226609,0.001586,-0.001750,0.249994,0,0);}
.m68_c00276{transform:matrix(0.227044,0.001589,-0.001750,0.249994,0,0);-ms-transform:matrix(0.227044,0.001589,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.227044,0.001589,-0.001750,0.249994,0,0);}
.m61_c00276{transform:matrix(0.227129,0.001590,-0.001750,0.249994,0,0);-ms-transform:matrix(0.227129,0.001590,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.227129,0.001590,-0.001750,0.249994,0,0);}
.m3e_c00276{transform:matrix(0.227131,0.001363,-0.001500,0.249996,0,0);-ms-transform:matrix(0.227131,0.001363,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.227131,0.001363,-0.001500,0.249996,0,0);}
.m105_c00276{transform:matrix(0.227238,0.001818,-0.002000,0.249992,0,0);-ms-transform:matrix(0.227238,0.001818,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.227238,0.001818,-0.002000,0.249992,0,0);}
.mec_c00276{transform:matrix(0.227489,0.001592,-0.001750,0.249994,0,0);-ms-transform:matrix(0.227489,0.001592,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.227489,0.001592,-0.001750,0.249994,0,0);}
.m104_c00276{transform:matrix(0.227618,0.001821,-0.002000,0.249992,0,0);-ms-transform:matrix(0.227618,0.001821,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.227618,0.001821,-0.002000,0.249992,0,0);}
.m10b_c00276{transform:matrix(0.227848,0.001823,-0.002000,0.249992,0,0);-ms-transform:matrix(0.227848,0.001823,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.227848,0.001823,-0.002000,0.249992,0,0);}
.mea_c00276{transform:matrix(0.227894,0.001595,-0.001750,0.249994,0,0);-ms-transform:matrix(0.227894,0.001595,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.227894,0.001595,-0.001750,0.249994,0,0);}
.m91_c00276{transform:matrix(0.228464,0.001599,-0.001750,0.249994,0,0);-ms-transform:matrix(0.228464,0.001599,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.228464,0.001599,-0.001750,0.249994,0,0);}
.m98_c00276{transform:matrix(0.228569,0.001600,-0.001750,0.249994,0,0);-ms-transform:matrix(0.228569,0.001600,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.228569,0.001600,-0.001750,0.249994,0,0);}
.me7_c00276{transform:matrix(0.229214,0.001605,-0.001750,0.249994,0,0);-ms-transform:matrix(0.229214,0.001605,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.229214,0.001605,-0.001750,0.249994,0,0);}
.mb1_c00276{transform:matrix(0.229584,0.001607,-0.001750,0.249994,0,0);-ms-transform:matrix(0.229584,0.001607,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.229584,0.001607,-0.001750,0.249994,0,0);}
.m6f_c00276{transform:matrix(0.229879,0.001609,-0.001750,0.249994,0,0);-ms-transform:matrix(0.229879,0.001609,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.229879,0.001609,-0.001750,0.249994,0,0);}
.m8b_c00276{transform:matrix(0.231189,0.001618,-0.001750,0.249994,0,0);-ms-transform:matrix(0.231189,0.001618,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.231189,0.001618,-0.001750,0.249994,0,0);}
.m5d_c00276{transform:matrix(0.231424,0.001620,-0.001750,0.249994,0,0);-ms-transform:matrix(0.231424,0.001620,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.231424,0.001620,-0.001750,0.249994,0,0);}
.m38_c00276{transform:matrix(0.231481,0.001389,-0.001500,0.249996,0,0);-ms-transform:matrix(0.231481,0.001389,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.231481,0.001389,-0.001500,0.249996,0,0);}
.m5f_c00276{transform:matrix(0.232354,0.001626,-0.001750,0.249994,0,0);-ms-transform:matrix(0.232354,0.001626,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.232354,0.001626,-0.001750,0.249994,0,0);}
.md7_c00276{transform:matrix(0.232489,0.001627,-0.001750,0.249994,0,0);-ms-transform:matrix(0.232489,0.001627,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.232489,0.001627,-0.001750,0.249994,0,0);}
.m4_c00276{transform:matrix(0.232501,0.001395,-0.001500,0.249996,0,0);-ms-transform:matrix(0.232501,0.001395,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.232501,0.001395,-0.001500,0.249996,0,0);}
.m59_c00276{transform:matrix(0.232534,0.001628,-0.001750,0.249994,0,0);-ms-transform:matrix(0.232534,0.001628,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.232534,0.001628,-0.001750,0.249994,0,0);}
.mb5_c00276{transform:matrix(0.232589,0.001628,-0.001750,0.249994,0,0);-ms-transform:matrix(0.232589,0.001628,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.232589,0.001628,-0.001750,0.249994,0,0);}
.md5_c00276{transform:matrix(0.233039,0.001631,-0.001750,0.249994,0,0);-ms-transform:matrix(0.233039,0.001631,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.233039,0.001631,-0.001750,0.249994,0,0);}
.m6a_c00276{transform:matrix(0.233389,0.001634,-0.001750,0.249994,0,0);-ms-transform:matrix(0.233389,0.001634,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.233389,0.001634,-0.001750,0.249994,0,0);}
.m97_c00276{transform:matrix(0.233464,0.001634,-0.001750,0.249994,0,0);-ms-transform:matrix(0.233464,0.001634,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.233464,0.001634,-0.001750,0.249994,0,0);}
.m5e_c00276{transform:matrix(0.234049,0.001638,-0.001750,0.249994,0,0);-ms-transform:matrix(0.234049,0.001638,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.234049,0.001638,-0.001750,0.249994,0,0);}
.m47_c00276{transform:matrix(0.234254,0.001640,-0.001750,0.249994,0,0);-ms-transform:matrix(0.234254,0.001640,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.234254,0.001640,-0.001750,0.249994,0,0);}
.m9a_c00276{transform:matrix(0.235794,0.001651,-0.001750,0.249994,0,0);-ms-transform:matrix(0.235794,0.001651,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.235794,0.001651,-0.001750,0.249994,0,0);}
.m40_c00276{transform:matrix(0.235916,0.001415,-0.001500,0.249996,0,0);-ms-transform:matrix(0.235916,0.001415,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.235916,0.001415,-0.001500,0.249996,0,0);}
.m3a_c00276{transform:matrix(0.235991,0.001416,-0.001500,0.249996,0,0);-ms-transform:matrix(0.235991,0.001416,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.235991,0.001416,-0.001500,0.249996,0,0);}
.me4_c00276{transform:matrix(0.236029,0.001652,-0.001750,0.249994,0,0);-ms-transform:matrix(0.236029,0.001652,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.236029,0.001652,-0.001750,0.249994,0,0);}
.m71_c00276{transform:matrix(0.236199,0.001653,-0.001750,0.249994,0,0);-ms-transform:matrix(0.236199,0.001653,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.236199,0.001653,-0.001750,0.249994,0,0);}
.mfe_c00276{transform:matrix(0.236357,0.001891,-0.002000,0.249992,0,0);-ms-transform:matrix(0.236357,0.001891,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.236357,0.001891,-0.002000,0.249992,0,0);}
.m8c_c00276{transform:matrix(0.236749,0.001657,-0.001750,0.249994,0,0);-ms-transform:matrix(0.236749,0.001657,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.236749,0.001657,-0.001750,0.249994,0,0);}
.ma_c00276{transform:matrix(0.237166,0.001423,-0.001500,0.249996,0,0);-ms-transform:matrix(0.237166,0.001423,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.237166,0.001423,-0.001500,0.249996,0,0);}
.m109_c00276{transform:matrix(0.237417,0.001899,-0.002000,0.249992,0,0);-ms-transform:matrix(0.237417,0.001899,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.237417,0.001899,-0.002000,0.249992,0,0);}
.m0_c00276{transform:matrix(0.237616,0.001426,-0.001500,0.249996,0,0);-ms-transform:matrix(0.237616,0.001426,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.237616,0.001426,-0.001500,0.249996,0,0);}
.m86_c00276{transform:matrix(0.237734,0.001664,-0.001750,0.249994,0,0);-ms-transform:matrix(0.237734,0.001664,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.237734,0.001664,-0.001750,0.249994,0,0);}
.m41_c00276{transform:matrix(0.238436,0.001431,-0.001500,0.249996,0,0);-ms-transform:matrix(0.238436,0.001431,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.238436,0.001431,-0.001500,0.249996,0,0);}
.m2a_c00276{transform:matrix(0.238711,0.001432,-0.001500,0.249996,0,0);-ms-transform:matrix(0.238711,0.001432,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.238711,0.001432,-0.001500,0.249996,0,0);}
.m4c_c00276{transform:matrix(0.238849,0.001672,-0.001750,0.249994,0,0);-ms-transform:matrix(0.238849,0.001672,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.238849,0.001672,-0.001750,0.249994,0,0);}
.m3c_c00276{transform:matrix(0.239906,0.001439,-0.001500,0.249996,0,0);-ms-transform:matrix(0.239906,0.001439,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.239906,0.001439,-0.001500,0.249996,0,0);}
.m8a_c00276{transform:matrix(0.240084,0.001681,-0.001750,0.249994,0,0);-ms-transform:matrix(0.240084,0.001681,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.240084,0.001681,-0.001750,0.249994,0,0);}
.mab_c00276{transform:matrix(0.240369,0.001683,-0.001750,0.249994,0,0);-ms-transform:matrix(0.240369,0.001683,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.240369,0.001683,-0.001750,0.249994,0,0);}
.m9b_c00276{transform:matrix(0.240444,0.001683,-0.001750,0.249994,0,0);-ms-transform:matrix(0.240444,0.001683,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.240444,0.001683,-0.001750,0.249994,0,0);}
.m11_c00276{transform:matrix(0.240631,0.001444,-0.001500,0.249996,0,0);-ms-transform:matrix(0.240631,0.001444,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.240631,0.001444,-0.001500,0.249996,0,0);}
.m102_c00276{transform:matrix(0.240807,0.001926,-0.002000,0.249992,0,0);-ms-transform:matrix(0.240807,0.001926,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.240807,0.001926,-0.002000,0.249992,0,0);}
.m108_c00276{transform:matrix(0.241112,0.001929,-0.002000,0.249992,0,0);-ms-transform:matrix(0.241112,0.001929,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.241112,0.001929,-0.002000,0.249992,0,0);}
.m22_c00276{transform:matrix(0.241611,0.001450,-0.001500,0.249996,0,0);-ms-transform:matrix(0.241611,0.001450,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.241611,0.001450,-0.001500,0.249996,0,0);}
.m4f_c00276{transform:matrix(0.241774,0.001692,-0.001750,0.249994,0,0);-ms-transform:matrix(0.241774,0.001692,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.241774,0.001692,-0.001750,0.249994,0,0);}
.mda_c00276{transform:matrix(0.241809,0.001693,-0.001750,0.249994,0,0);-ms-transform:matrix(0.241809,0.001693,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.241809,0.001693,-0.001750,0.249994,0,0);}
.m1f_c00276{transform:matrix(0.241991,0.001452,-0.001500,0.249996,0,0);-ms-transform:matrix(0.241991,0.001452,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.241991,0.001452,-0.001500,0.249996,0,0);}
.m4a_c00276{transform:matrix(0.242354,0.001696,-0.001750,0.249994,0,0);-ms-transform:matrix(0.242354,0.001696,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.242354,0.001696,-0.001750,0.249994,0,0);}
.m51_c00276{transform:matrix(0.242459,0.001697,-0.001750,0.249994,0,0);-ms-transform:matrix(0.242459,0.001697,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.242459,0.001697,-0.001750,0.249994,0,0);}
.m10c_c00276{transform:matrix(0.242972,0.001944,-0.002000,0.249992,0,0);-ms-transform:matrix(0.242972,0.001944,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.242972,0.001944,-0.002000,0.249992,0,0);}
.m10d_c00276{transform:matrix(0.243207,0.001946,-0.002000,0.249992,0,0);-ms-transform:matrix(0.243207,0.001946,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.243207,0.001946,-0.002000,0.249992,0,0);}
.mb0_c00276{transform:matrix(0.243369,0.001704,-0.001750,0.249994,0,0);-ms-transform:matrix(0.243369,0.001704,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.243369,0.001704,-0.001750,0.249994,0,0);}
.m85_c00276{transform:matrix(0.243464,0.001704,-0.001750,0.249994,0,0);-ms-transform:matrix(0.243464,0.001704,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.243464,0.001704,-0.001750,0.249994,0,0);}
.m3_c00276{transform:matrix(0.243486,0.001461,-0.001500,0.249996,0,0);-ms-transform:matrix(0.243486,0.001461,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.243486,0.001461,-0.001500,0.249996,0,0);}
.mdd_c00276{transform:matrix(0.243744,0.001706,-0.001750,0.249994,0,0);-ms-transform:matrix(0.243744,0.001706,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.243744,0.001706,-0.001750,0.249994,0,0);}
.m14_c00276{transform:matrix(0.243811,0.001463,-0.001500,0.249996,0,0);-ms-transform:matrix(0.243811,0.001463,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.243811,0.001463,-0.001500,0.249996,0,0);}
.mcd_c00276{transform:matrix(0.243949,0.001708,-0.001750,0.249994,0,0);-ms-transform:matrix(0.243949,0.001708,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.243949,0.001708,-0.001750,0.249994,0,0);}
.m9d_c00276{transform:matrix(0.244084,0.001709,-0.001750,0.249994,0,0);-ms-transform:matrix(0.244084,0.001709,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.244084,0.001709,-0.001750,0.249994,0,0);}
.mb9_c00276{transform:matrix(0.244284,0.001710,-0.001750,0.249994,0,0);-ms-transform:matrix(0.244284,0.001710,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.244284,0.001710,-0.001750,0.249994,0,0);}
.m52_c00276{transform:matrix(0.244464,0.001711,-0.001750,0.249994,0,0);-ms-transform:matrix(0.244464,0.001711,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.244464,0.001711,-0.001750,0.249994,0,0);}
.mdf_c00276{transform:matrix(0.244854,0.001714,-0.001750,0.249994,0,0);-ms-transform:matrix(0.244854,0.001714,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.244854,0.001714,-0.001750,0.249994,0,0);}
.m103_c00276{transform:matrix(0.245022,0.001960,-0.002000,0.249992,0,0);-ms-transform:matrix(0.245022,0.001960,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.245022,0.001960,-0.002000,0.249992,0,0);}
.m89_c00276{transform:matrix(0.245214,0.001716,-0.001750,0.249994,0,0);-ms-transform:matrix(0.245214,0.001716,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.245214,0.001716,-0.001750,0.249994,0,0);}
.m81_c00276{transform:matrix(0.245314,0.001717,-0.001750,0.249994,0,0);-ms-transform:matrix(0.245314,0.001717,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.245314,0.001717,-0.001750,0.249994,0,0);}
.mb8_c00276{transform:matrix(0.245454,0.001718,-0.001750,0.249994,0,0);-ms-transform:matrix(0.245454,0.001718,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.245454,0.001718,-0.001750,0.249994,0,0);}
.ma7_c00276{transform:matrix(0.245479,0.001718,-0.001750,0.249994,0,0);-ms-transform:matrix(0.245479,0.001718,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.245479,0.001718,-0.001750,0.249994,0,0);}
.m78_c00276{transform:matrix(0.245779,0.001720,-0.001750,0.249994,0,0);-ms-transform:matrix(0.245779,0.001720,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.245779,0.001720,-0.001750,0.249994,0,0);}
.m100_c00276{transform:matrix(0.245917,0.001967,-0.002000,0.249992,0,0);-ms-transform:matrix(0.245917,0.001967,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.245917,0.001967,-0.002000,0.249992,0,0);}
.mcc_c00276{transform:matrix(0.245974,0.001722,-0.001750,0.249994,0,0);-ms-transform:matrix(0.245974,0.001722,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.245974,0.001722,-0.001750,0.249994,0,0);}
.me5_c00276{transform:matrix(0.247054,0.001729,-0.001750,0.249994,0,0);-ms-transform:matrix(0.247054,0.001729,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.247054,0.001729,-0.001750,0.249994,0,0);}
.mfd_c00276{transform:matrix(0.247127,0.001977,-0.002000,0.249992,0,0);-ms-transform:matrix(0.247127,0.001977,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.247127,0.001977,-0.002000,0.249992,0,0);}
.m48_c00276{transform:matrix(0.247454,0.001732,-0.001750,0.249994,0,0);-ms-transform:matrix(0.247454,0.001732,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.247454,0.001732,-0.001750,0.249994,0,0);}
.mba_c00276{transform:matrix(0.247609,0.001733,-0.001750,0.249994,0,0);-ms-transform:matrix(0.247609,0.001733,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.247609,0.001733,-0.001750,0.249994,0,0);}
.mfa_c00276{transform:matrix(0.247982,0.001984,-0.002000,0.249992,0,0);-ms-transform:matrix(0.247982,0.001984,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.247982,0.001984,-0.002000,0.249992,0,0);}
.ma1_c00276{transform:matrix(0.248004,0.001736,-0.001750,0.249994,0,0);-ms-transform:matrix(0.248004,0.001736,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.248004,0.001736,-0.001750,0.249994,0,0);}
.m24_c00276{transform:matrix(0.248111,0.001489,-0.001500,0.249996,0,0);-ms-transform:matrix(0.248111,0.001489,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.248111,0.001489,-0.001500,0.249996,0,0);}
.m2b_c00276{transform:matrix(0.248316,0.001490,-0.001500,0.249996,0,0);-ms-transform:matrix(0.248316,0.001490,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.248316,0.001490,-0.001500,0.249996,0,0);}
.m35_c00276{transform:matrix(0.248441,0.001491,-0.001500,0.249996,0,0);-ms-transform:matrix(0.248441,0.001491,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.248441,0.001491,-0.001500,0.249996,0,0);}
.md0_c00276{transform:matrix(0.248634,0.001740,-0.001750,0.249994,0,0);-ms-transform:matrix(0.248634,0.001740,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.248634,0.001740,-0.001750,0.249994,0,0);}
.md9_c00276{transform:matrix(0.248709,0.001741,-0.001750,0.249994,0,0);-ms-transform:matrix(0.248709,0.001741,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.248709,0.001741,-0.001750,0.249994,0,0);}
.m2_c00276{transform:matrix(0.248971,0.001494,-0.001500,0.249996,0,0);-ms-transform:matrix(0.248971,0.001494,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.248971,0.001494,-0.001500,0.249996,0,0);}
.m4e_c00276{transform:matrix(0.249644,0.001748,-0.001750,0.249994,0,0);-ms-transform:matrix(0.249644,0.001748,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.249644,0.001748,-0.001750,0.249994,0,0);}
.m70_c00276{transform:matrix(0.249654,0.001748,-0.001750,0.249994,0,0);-ms-transform:matrix(0.249654,0.001748,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.249654,0.001748,-0.001750,0.249994,0,0);}
.mfb_c00276{transform:matrix(0.249977,0.002000,-0.002000,0.249992,0,0);-ms-transform:matrix(0.249977,0.002000,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.249977,0.002000,-0.002000,0.249992,0,0);}
.m33_c00276{transform:matrix(0.250150,0.001501,-0.001500,0.249996,0,0);-ms-transform:matrix(0.250150,0.001501,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.250150,0.001501,-0.001500,0.249996,0,0);}
.m101_c00276{transform:matrix(0.250507,0.002004,-0.002000,0.249992,0,0);-ms-transform:matrix(0.250507,0.002004,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.250507,0.002004,-0.002000,0.249992,0,0);}
.m56_c00276{transform:matrix(0.250784,0.001755,-0.001750,0.249994,0,0);-ms-transform:matrix(0.250784,0.001755,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.250784,0.001755,-0.001750,0.249994,0,0);}
.m90_c00276{transform:matrix(0.250909,0.001756,-0.001750,0.249994,0,0);-ms-transform:matrix(0.250909,0.001756,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.250909,0.001756,-0.001750,0.249994,0,0);}
.m31_c00276{transform:matrix(0.251005,0.001506,-0.001500,0.249996,0,0);-ms-transform:matrix(0.251005,0.001506,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.251005,0.001506,-0.001500,0.249996,0,0);}
.m57_c00276{transform:matrix(0.251439,0.001760,-0.001750,0.249994,0,0);-ms-transform:matrix(0.251439,0.001760,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.251439,0.001760,-0.001750,0.249994,0,0);}
.mcf_c00276{transform:matrix(0.251629,0.001761,-0.001750,0.249994,0,0);-ms-transform:matrix(0.251629,0.001761,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.251629,0.001761,-0.001750,0.249994,0,0);}
.m19_c00276{transform:matrix(0.251865,0.001511,-0.001500,0.249996,0,0);-ms-transform:matrix(0.251865,0.001511,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.251865,0.001511,-0.001500,0.249996,0,0);}
.m6c_c00276{transform:matrix(0.252274,0.001766,-0.001750,0.249994,0,0);-ms-transform:matrix(0.252274,0.001766,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.252274,0.001766,-0.001750,0.249994,0,0);}
.m6d_c00276{transform:matrix(0.252364,0.001767,-0.001750,0.249994,0,0);-ms-transform:matrix(0.252364,0.001767,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.252364,0.001767,-0.001750,0.249994,0,0);}
.m50_c00276{transform:matrix(0.252584,0.001768,-0.001750,0.249994,0,0);-ms-transform:matrix(0.252584,0.001768,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.252584,0.001768,-0.001750,0.249994,0,0);}
.m55_c00276{transform:matrix(0.252839,0.001770,-0.001750,0.249994,0,0);-ms-transform:matrix(0.252839,0.001770,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.252839,0.001770,-0.001750,0.249994,0,0);}
.m76_c00276{transform:matrix(0.252989,0.001771,-0.001750,0.249994,0,0);-ms-transform:matrix(0.252989,0.001771,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.252989,0.001771,-0.001750,0.249994,0,0);}
.mc4_c00276{transform:matrix(0.253144,0.001772,-0.001750,0.249994,0,0);-ms-transform:matrix(0.253144,0.001772,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.253144,0.001772,-0.001750,0.249994,0,0);}
.m17_c00276{transform:matrix(0.253155,0.001519,-0.001500,0.249996,0,0);-ms-transform:matrix(0.253155,0.001519,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.253155,0.001519,-0.001500,0.249996,0,0);}
.m2e_c00276{transform:matrix(0.253205,0.001519,-0.001500,0.249996,0,0);-ms-transform:matrix(0.253205,0.001519,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.253205,0.001519,-0.001500,0.249996,0,0);}
.m9_c00276{transform:matrix(0.253220,0.001519,-0.001500,0.249996,0,0);-ms-transform:matrix(0.253220,0.001519,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.253220,0.001519,-0.001500,0.249996,0,0);}
.m8f_c00276{transform:matrix(0.253604,0.001775,-0.001750,0.249994,0,0);-ms-transform:matrix(0.253604,0.001775,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.253604,0.001775,-0.001750,0.249994,0,0);}
.ma9_c00276{transform:matrix(0.253869,0.001777,-0.001750,0.249994,0,0);-ms-transform:matrix(0.253869,0.001777,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.253869,0.001777,-0.001750,0.249994,0,0);}
.m45_c00276{transform:matrix(0.253904,0.001777,-0.001750,0.249994,0,0);-ms-transform:matrix(0.253904,0.001777,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.253904,0.001777,-0.001750,0.249994,0,0);}
.mad_c00276{transform:matrix(0.254179,0.001779,-0.001750,0.249994,0,0);-ms-transform:matrix(0.254179,0.001779,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.254179,0.001779,-0.001750,0.249994,0,0);}
.m93_c00276{transform:matrix(0.254229,0.001780,-0.001750,0.249994,0,0);-ms-transform:matrix(0.254229,0.001780,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.254229,0.001780,-0.001750,0.249994,0,0);}
.m34_c00276{transform:matrix(0.254670,0.001528,-0.001500,0.249996,0,0);-ms-transform:matrix(0.254670,0.001528,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.254670,0.001528,-0.001500,0.249996,0,0);}
.mde_c00276{transform:matrix(0.255044,0.001785,-0.001750,0.249994,0,0);-ms-transform:matrix(0.255044,0.001785,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.255044,0.001785,-0.001750,0.249994,0,0);}
.m74_c00276{transform:matrix(0.255114,0.001786,-0.001750,0.249994,0,0);-ms-transform:matrix(0.255114,0.001786,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.255114,0.001786,-0.001750,0.249994,0,0);}
.ma5_c00276{transform:matrix(0.255199,0.001786,-0.001750,0.249994,0,0);-ms-transform:matrix(0.255199,0.001786,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.255199,0.001786,-0.001750,0.249994,0,0);}
.m107_c00276{transform:matrix(0.255282,0.002042,-0.002000,0.249992,0,0);-ms-transform:matrix(0.255282,0.002042,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.255282,0.002042,-0.002000,0.249992,0,0);}
.ma3_c00276{transform:matrix(0.255644,0.001790,-0.001750,0.249994,0,0);-ms-transform:matrix(0.255644,0.001790,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.255644,0.001790,-0.001750,0.249994,0,0);}
.m6b_c00276{transform:matrix(0.256229,0.001794,-0.001750,0.249994,0,0);-ms-transform:matrix(0.256229,0.001794,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.256229,0.001794,-0.001750,0.249994,0,0);}
.m1_c00276{transform:matrix(0.257315,0.001544,-0.001500,0.249996,0,0);-ms-transform:matrix(0.257315,0.001544,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.257315,0.001544,-0.001500,0.249996,0,0);}
.me2_c00276{transform:matrix(0.257874,0.001805,-0.001750,0.249994,0,0);-ms-transform:matrix(0.257874,0.001805,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.257874,0.001805,-0.001750,0.249994,0,0);}
.m39_c00276{transform:matrix(0.257980,0.001548,-0.001500,0.249996,0,0);-ms-transform:matrix(0.257980,0.001548,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.257980,0.001548,-0.001500,0.249996,0,0);}
.mae_c00276{transform:matrix(0.258039,0.001806,-0.001750,0.249994,0,0);-ms-transform:matrix(0.258039,0.001806,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.258039,0.001806,-0.001750,0.249994,0,0);}
.m10a_c00276{transform:matrix(0.258147,0.002065,-0.002000,0.249992,0,0);-ms-transform:matrix(0.258147,0.002065,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.258147,0.002065,-0.002000,0.249992,0,0);}
.m44_c00276{transform:matrix(0.258469,0.001809,-0.001750,0.249994,0,0);-ms-transform:matrix(0.258469,0.001809,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.258469,0.001809,-0.001750,0.249994,0,0);}
.maa_c00276{transform:matrix(0.258624,0.001810,-0.001750,0.249994,0,0);-ms-transform:matrix(0.258624,0.001810,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.258624,0.001810,-0.001750,0.249994,0,0);}
.mb3_c00276{transform:matrix(0.258854,0.001812,-0.001750,0.249994,0,0);-ms-transform:matrix(0.258854,0.001812,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.258854,0.001812,-0.001750,0.249994,0,0);}
.me1_c00276{transform:matrix(0.259169,0.001814,-0.001750,0.249994,0,0);-ms-transform:matrix(0.259169,0.001814,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.259169,0.001814,-0.001750,0.249994,0,0);}
.m2c_c00276{transform:matrix(0.259275,0.001556,-0.001500,0.249996,0,0);-ms-transform:matrix(0.259275,0.001556,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.259275,0.001556,-0.001500,0.249996,0,0);}
.m9e_c00276{transform:matrix(0.259834,0.001819,-0.001750,0.249994,0,0);-ms-transform:matrix(0.259834,0.001819,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.259834,0.001819,-0.001750,0.249994,0,0);}
.m27_c00276{transform:matrix(0.260075,0.001560,-0.001500,0.249996,0,0);-ms-transform:matrix(0.260075,0.001560,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.260075,0.001560,-0.001500,0.249996,0,0);}
.m15_c00276{transform:matrix(0.260120,0.001561,-0.001500,0.249996,0,0);-ms-transform:matrix(0.260120,0.001561,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.260120,0.001561,-0.001500,0.249996,0,0);}
.mb7_c00276{transform:matrix(0.261044,0.001827,-0.001750,0.249994,0,0);-ms-transform:matrix(0.261044,0.001827,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.261044,0.001827,-0.001750,0.249994,0,0);}
.ma6_c00276{transform:matrix(0.261359,0.001830,-0.001750,0.249994,0,0);-ms-transform:matrix(0.261359,0.001830,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.261359,0.001830,-0.001750,0.249994,0,0);}
.m20_c00276{transform:matrix(0.261485,0.001569,-0.001500,0.249996,0,0);-ms-transform:matrix(0.261485,0.001569,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.261485,0.001569,-0.001500,0.249996,0,0);}
.m4d_c00276{transform:matrix(0.261959,0.001834,-0.001750,0.249994,0,0);-ms-transform:matrix(0.261959,0.001834,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.261959,0.001834,-0.001750,0.249994,0,0);}
.m36_c00276{transform:matrix(0.262120,0.001573,-0.001500,0.249996,0,0);-ms-transform:matrix(0.262120,0.001573,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.262120,0.001573,-0.001500,0.249996,0,0);}
.m28_c00276{transform:matrix(0.262570,0.001575,-0.001500,0.249996,0,0);-ms-transform:matrix(0.262570,0.001575,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.262570,0.001575,-0.001500,0.249996,0,0);}
.m4b_c00276{transform:matrix(0.265423,0.001858,-0.001750,0.249994,0,0);-ms-transform:matrix(0.265423,0.001858,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.265423,0.001858,-0.001750,0.249994,0,0);}
.m13_c00276{transform:matrix(0.265895,0.001595,-0.001500,0.249996,0,0);-ms-transform:matrix(0.265895,0.001595,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.265895,0.001595,-0.001500,0.249996,0,0);}
.m1a_c00276{transform:matrix(0.266055,0.001596,-0.001500,0.249996,0,0);-ms-transform:matrix(0.266055,0.001596,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.266055,0.001596,-0.001500,0.249996,0,0);}
.m18_c00276{transform:matrix(0.266130,0.001597,-0.001500,0.249996,0,0);-ms-transform:matrix(0.266130,0.001597,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.266130,0.001597,-0.001500,0.249996,0,0);}
.ma8_c00276{transform:matrix(0.266193,0.001863,-0.001750,0.249994,0,0);-ms-transform:matrix(0.266193,0.001863,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.266193,0.001863,-0.001750,0.249994,0,0);}
.m53_c00276{transform:matrix(0.267663,0.001874,-0.001750,0.249994,0,0);-ms-transform:matrix(0.267663,0.001874,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.267663,0.001874,-0.001750,0.249994,0,0);}
.m3b_c00276{transform:matrix(0.267905,0.001607,-0.001500,0.249996,0,0);-ms-transform:matrix(0.267905,0.001607,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.267905,0.001607,-0.001500,0.249996,0,0);}
.m1e_c00276{transform:matrix(0.268075,0.001608,-0.001500,0.249996,0,0);-ms-transform:matrix(0.268075,0.001608,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.268075,0.001608,-0.001500,0.249996,0,0);}
.me3_c00276{transform:matrix(0.269018,0.001883,-0.001750,0.249994,0,0);-ms-transform:matrix(0.269018,0.001883,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.269018,0.001883,-0.001750,0.249994,0,0);}
.mf_c00276{transform:matrix(0.269175,0.001615,-0.001500,0.249996,0,0);-ms-transform:matrix(0.269175,0.001615,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.269175,0.001615,-0.001500,0.249996,0,0);}
.m37_c00276{transform:matrix(0.269475,0.001617,-0.001500,0.249996,0,0);-ms-transform:matrix(0.269475,0.001617,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.269475,0.001617,-0.001500,0.249996,0,0);}
.mdc_c00276{transform:matrix(0.269918,0.001889,-0.001750,0.249994,0,0);-ms-transform:matrix(0.269918,0.001889,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.269918,0.001889,-0.001750,0.249994,0,0);}
.m26_c00276{transform:matrix(0.270270,0.001622,-0.001500,0.249996,0,0);-ms-transform:matrix(0.270270,0.001622,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.270270,0.001622,-0.001500,0.249996,0,0);}
.md3_c00276{transform:matrix(0.270528,0.001894,-0.001750,0.249994,0,0);-ms-transform:matrix(0.270528,0.001894,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.270528,0.001894,-0.001750,0.249994,0,0);}
.maf_c00276{transform:matrix(0.270598,0.001894,-0.001750,0.249994,0,0);-ms-transform:matrix(0.270598,0.001894,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.270598,0.001894,-0.001750,0.249994,0,0);}
.m88_c00276{transform:matrix(0.271048,0.001897,-0.001750,0.249994,0,0);-ms-transform:matrix(0.271048,0.001897,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.271048,0.001897,-0.001750,0.249994,0,0);}
.me_c00276{transform:matrix(0.271120,0.001627,-0.001500,0.249996,0,0);-ms-transform:matrix(0.271120,0.001627,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.271120,0.001627,-0.001500,0.249996,0,0);}
.m32_c00276{transform:matrix(0.271315,0.001628,-0.001500,0.249996,0,0);-ms-transform:matrix(0.271315,0.001628,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.271315,0.001628,-0.001500,0.249996,0,0);}
.mb2_c00276{transform:matrix(0.271533,0.001901,-0.001750,0.249994,0,0);-ms-transform:matrix(0.271533,0.001901,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.271533,0.001901,-0.001750,0.249994,0,0);}
.m2d_c00276{transform:matrix(0.272425,0.001635,-0.001500,0.249996,0,0);-ms-transform:matrix(0.272425,0.001635,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.272425,0.001635,-0.001500,0.249996,0,0);}
.me0_c00276{transform:matrix(0.274403,0.001921,-0.001750,0.249994,0,0);-ms-transform:matrix(0.274403,0.001921,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.274403,0.001921,-0.001750,0.249994,0,0);}
.m30_c00276{transform:matrix(0.274610,0.001648,-0.001500,0.249996,0,0);-ms-transform:matrix(0.274610,0.001648,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.274610,0.001648,-0.001500,0.249996,0,0);}
.m10_c00276{transform:matrix(0.274800,0.001649,-0.001500,0.249996,0,0);-ms-transform:matrix(0.274800,0.001649,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.274800,0.001649,-0.001500,0.249996,0,0);}
.mac_c00276{transform:matrix(0.274853,0.001924,-0.001750,0.249994,0,0);-ms-transform:matrix(0.274853,0.001924,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.274853,0.001924,-0.001750,0.249994,0,0);}
.m2f_c00276{transform:matrix(0.276050,0.001656,-0.001500,0.249996,0,0);-ms-transform:matrix(0.276050,0.001656,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.276050,0.001656,-0.001500,0.249996,0,0);}
.m21_c00276{transform:matrix(0.276505,0.001659,-0.001500,0.249996,0,0);-ms-transform:matrix(0.276505,0.001659,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.276505,0.001659,-0.001500,0.249996,0,0);}
.m1d_c00276{transform:matrix(0.278015,0.001668,-0.001500,0.249996,0,0);-ms-transform:matrix(0.278015,0.001668,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.278015,0.001668,-0.001500,0.249996,0,0);}
.mbb_c00276{transform:matrix(0.278733,0.001951,-0.001750,0.249994,0,0);-ms-transform:matrix(0.278733,0.001951,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.278733,0.001951,-0.001750,0.249994,0,0);}
.mf1_c00276{transform:matrix(0.279058,0.001953,-0.001750,0.249994,0,0);-ms-transform:matrix(0.279058,0.001953,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.279058,0.001953,-0.001750,0.249994,0,0);}
.mb_c00276{transform:matrix(0.280455,0.001683,-0.001500,0.249996,0,0);-ms-transform:matrix(0.280455,0.001683,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.280455,0.001683,-0.001500,0.249996,0,0);}
.m29_c00276{transform:matrix(0.280905,0.001685,-0.001500,0.249996,0,0);-ms-transform:matrix(0.280905,0.001685,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.280905,0.001685,-0.001500,0.249996,0,0);}
.ma4_c00276{transform:matrix(0.281688,0.001972,-0.001750,0.249994,0,0);-ms-transform:matrix(0.281688,0.001972,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.281688,0.001972,-0.001750,0.249994,0,0);}
.md_c00276{transform:matrix(0.283200,0.001699,-0.001500,0.249996,0,0);-ms-transform:matrix(0.283200,0.001699,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.283200,0.001699,-0.001500,0.249996,0,0);}
.m1b_c00276{transform:matrix(0.284525,0.001707,-0.001500,0.249996,0,0);-ms-transform:matrix(0.284525,0.001707,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.284525,0.001707,-0.001500,0.249996,0,0);}
.mc6_c00276{transform:matrix(0.293258,0.002053,-0.001750,0.249994,0,0);-ms-transform:matrix(0.293258,0.002053,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.293258,0.002053,-0.001750,0.249994,0,0);}
.md4_c00276{transform:matrix(0.304753,0.002133,-0.001750,0.249994,0,0);-ms-transform:matrix(0.304753,0.002133,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.304753,0.002133,-0.001750,0.249994,0,0);}
.mf0_c00276{transform:matrix(0.310612,0.002174,-0.001750,0.249994,0,0);-ms-transform:matrix(0.310612,0.002174,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.310612,0.002174,-0.001750,0.249994,0,0);}
.m95_c00276{transform:matrix(0.314757,0.002203,-0.001750,0.249994,0,0);-ms-transform:matrix(0.314757,0.002203,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.314757,0.002203,-0.001750,0.249994,0,0);}
.m96_c00276{transform:matrix(0.314992,0.002205,-0.001750,0.249994,0,0);-ms-transform:matrix(0.314992,0.002205,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.314992,0.002205,-0.001750,0.249994,0,0);}
.mc3_c00276{transform:matrix(0.316062,0.002212,-0.001750,0.249994,0,0);-ms-transform:matrix(0.316062,0.002212,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.316062,0.002212,-0.001750,0.249994,0,0);}
.m87_c00276{transform:matrix(0.375971,0.002632,-0.001750,0.249994,0,0);-ms-transform:matrix(0.375971,0.002632,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.375971,0.002632,-0.001750,0.249994,0,0);}
.mb6_c00276{transform:matrix(0.762691,0.005339,-0.001750,0.249994,0,0);-ms-transform:matrix(0.762691,0.005339,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.762691,0.005339,-0.001750,0.249994,0,0);}
.v0_c00276{vertical-align:0.000000px;}
.ls0_c00276{letter-spacing:0.000000px;}
.sc__c00276{text-shadow:none;}
.sc0_c00276{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__c00276{-webkit-text-stroke:0px transparent;}
.sc0_c00276{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00276{word-spacing:0.000000px;}
.fc0_c00276{color:transparent;}
.fs1_c00276{font-size:72.001296px;}
.fs4_c00276{font-size:72.001764px;}
.fs0_c00276{font-size:78.001404px;}
.fs3_c00276{font-size:78.001911px;}
.fs8_c00276{font-size:78.002496px;}
.fs2_c00276{font-size:84.001512px;}
.fs5_c00276{font-size:84.002058px;}
.fs9_c00276{font-size:90.000000px;}
.fs6_c00276{font-size:90.002205px;}
.fs7_c00276{font-size:102.002499px;}
.y0_c00276{bottom:0.000000px;}
.y115_c00276{bottom:190.155000px;}
.y114_c00276{bottom:221.478000px;}
.y113_c00276{bottom:251.197764px;}
.y112_c00276{bottom:251.660964px;}
.y111_c00276{bottom:251.891508px;}
.y110_c00276{bottom:252.737676px;}
.y10f_c00276{bottom:253.189404px;}
.y10e_c00276{bottom:253.353168px;}
.y10d_c00276{bottom:254.118684px;}
.y10c_c00276{bottom:254.344128px;}
.y10b_c00276{bottom:254.581860px;}
.y10a_c00276{bottom:254.881188px;}
.y109_c00276{bottom:270.333948px;}
.y108_c00276{bottom:270.776580px;}
.y107_c00276{bottom:271.390272px;}
.y106_c00276{bottom:272.087892px;}
.y105_c00276{bottom:272.349084px;}
.y104_c00276{bottom:272.798556px;}
.y103_c00276{bottom:273.327720px;}
.y102_c00276{bottom:273.580260px;}
.y101_c00276{bottom:274.366752px;}
.y100_c00276{bottom:275.075124px;}
.yff_c00276{bottom:275.330028px;}
.yfe_c00276{bottom:275.671500px;}
.yfd_c00276{bottom:327.146034px;}
.yfa_c00276{bottom:327.146262px;}
.yfc_c00276{bottom:327.146263px;}
.yf8_c00276{bottom:327.146271px;}
.yf9_c00276{bottom:327.146431px;}
.yfb_c00276{bottom:327.146922px;}
.yf7_c00276{bottom:356.361993px;}
.yf6_c00276{bottom:357.152187px;}
.yf5_c00276{bottom:357.539302px;}
.yf4_c00276{bottom:357.738793px;}
.yf3_c00276{bottom:357.940059px;}
.yf2_c00276{bottom:358.531056px;}
.yf1_c00276{bottom:358.734685px;}
.yf0_c00276{bottom:359.129845px;}
.yef_c00276{bottom:359.321355px;}
.yee_c00276{bottom:359.523168px;}
.yed_c00276{bottom:359.977758px;}
.yec_c00276{bottom:360.436117px;}
.yeb_c00276{bottom:388.057798px;}
.yea_c00276{bottom:388.263234px;}
.ye9_c00276{bottom:388.921242px;}
.ye8_c00276{bottom:389.057302px;}
.ye7_c00276{bottom:389.513940px;}
.ye6_c00276{bottom:390.104748px;}
.ye5_c00276{bottom:390.307914px;}
.ye4_c00276{bottom:390.762272px;}
.ye3_c00276{bottom:390.971560px;}
.ye2_c00276{bottom:391.230397px;}
.ye1_c00276{bottom:391.756190px;}
.ye0_c00276{bottom:420.315384px;}
.ydf_c00276{bottom:420.701413px;}
.yde_c00276{bottom:421.140300px;}
.ydd_c00276{bottom:421.302474px;}
.ydc_c00276{bottom:421.528094px;}
.ydb_c00276{bottom:421.859649px;}
.yda_c00276{bottom:422.024103px;}
.yd9_c00276{bottom:422.292255px;}
.yd8_c00276{bottom:422.735941px;}
.yd7_c00276{bottom:423.136572px;}
.yd6_c00276{bottom:423.397780px;}
.yd5_c00276{bottom:423.614934px;}
.yd4_c00276{bottom:453.046200px;}
.yd2_c00276{bottom:453.046319px;}
.yd3_c00276{bottom:453.046359px;}
.yd0_c00276{bottom:453.046417px;}
.yd1_c00276{bottom:453.046728px;}
.ycf_c00276{bottom:453.047037px;}
.yce_c00276{bottom:453.047446px;}
.ycd_c00276{bottom:453.048006px;}
.ycb_c00276{bottom:453.048065px;}
.ycc_c00276{bottom:453.048675px;}
.yca_c00276{bottom:484.523937px;}
.yc9_c00276{bottom:484.631658px;}
.yc8_c00276{bottom:484.802741px;}
.yc7_c00276{bottom:485.186459px;}
.yc6_c00276{bottom:485.570187px;}
.yc5_c00276{bottom:485.728338px;}
.yc4_c00276{bottom:485.835723px;}
.yc3_c00276{bottom:485.979252px;}
.yc2_c00276{bottom:486.360555px;}
.yc1_c00276{bottom:487.713159px;}
.yc0_c00276{bottom:487.879639px;}
.ybf_c00276{bottom:515.858400px;}
.ybe_c00276{bottom:516.050025px;}
.ybd_c00276{bottom:516.441373px;}
.ybc_c00276{bottom:516.652605px;}
.ybb_c00276{bottom:517.172284px;}
.yba_c00276{bottom:517.693854px;}
.yb9_c00276{bottom:517.901127px;}
.yb8_c00276{bottom:518.094558px;}
.yb7_c00276{bottom:518.232739px;}
.yb6_c00276{bottom:518.821446px;}
.yb5_c00276{bottom:519.017146px;}
.yb4_c00276{bottom:519.220818px;}
.yb3_c00276{bottom:519.740519px;}
.yb2_c00276{bottom:545.906661px;}
.yb1_c00276{bottom:546.220464px;}
.yb0_c00276{bottom:546.762789px;}
.yaf_c00276{bottom:546.995185px;}
.yae_c00276{bottom:547.447000px;}
.yad_c00276{bottom:547.828812px;}
.yac_c00276{bottom:548.303181px;}
.yab_c00276{bottom:548.747363px;}
.yaa_c00276{bottom:549.221752px;}
.ya9_c00276{bottom:549.607365px;}
.ya8_c00276{bottom:550.522146px;}
.ya7_c00276{bottom:577.983384px;}
.ya6_c00276{bottom:578.748402px;}
.ya5_c00276{bottom:579.554176px;}
.ya4_c00276{bottom:579.823416px;}
.ya3_c00276{bottom:580.086870px;}
.ya2_c00276{bottom:581.055300px;}
.ya1_c00276{bottom:581.593452px;}
.ya0_c00276{bottom:581.845883px;}
.y9f_c00276{bottom:582.384223px;}
.y9e_c00276{bottom:607.122408px;}
.y9d_c00276{bottom:607.413613px;}
.y9c_c00276{bottom:607.928325px;}
.y9b_c00276{bottom:608.510956px;}
.y9a_c00276{bottom:608.700660px;}
.y99_c00276{bottom:609.592007px;}
.y98_c00276{bottom:609.907996px;}
.y97_c00276{bottom:610.892531px;}
.y96_c00276{bottom:611.485890px;}
.y95_c00276{bottom:611.791320px;}
.y94_c00276{bottom:612.175429px;}
.y93_c00276{bottom:613.165380px;}
.y92_c00276{bottom:640.450953px;}
.y91_c00276{bottom:640.670130px;}
.y90_c00276{bottom:640.900573px;}
.y8f_c00276{bottom:641.441197px;}
.y8e_c00276{bottom:641.824909px;}
.y8d_c00276{bottom:642.293503px;}
.y8c_c00276{bottom:643.049671px;}
.y8b_c00276{bottom:643.287990px;}
.y8a_c00276{bottom:643.756552px;}
.y89_c00276{bottom:644.210184px;}
.y88_c00276{bottom:644.756436px;}
.y87_c00276{bottom:672.675305px;}
.y86_c00276{bottom:672.844075px;}
.y85_c00276{bottom:673.388277px;}
.y84_c00276{bottom:673.826985px;}
.y83_c00276{bottom:673.936585px;}
.y82_c00276{bottom:674.111396px;}
.y81_c00276{bottom:674.381385px;}
.y80_c00276{bottom:674.544075px;}
.y7f_c00276{bottom:674.647289px;}
.y7e_c00276{bottom:675.142908px;}
.y7d_c00276{bottom:675.309283px;}
.y7c_c00276{bottom:675.809231px;}
.y7b_c00276{bottom:704.415202px;}
.y7a_c00276{bottom:704.636144px;}
.y79_c00276{bottom:705.399892px;}
.y78_c00276{bottom:705.560322px;}
.y77_c00276{bottom:706.186080px;}
.y76_c00276{bottom:706.550829px;}
.y75_c00276{bottom:706.794629px;}
.y74_c00276{bottom:707.098950px;}
.y73_c00276{bottom:707.569570px;}
.y72_c00276{bottom:707.940000px;}
.y6f_c00276{bottom:738.169885px;}
.y6c_c00276{bottom:738.170173px;}
.y6b_c00276{bottom:738.170343px;}
.y6e_c00276{bottom:738.170374px;}
.y69_c00276{bottom:738.170592px;}
.y6d_c00276{bottom:738.170604px;}
.y70_c00276{bottom:738.170627px;}
.y6a_c00276{bottom:738.170633px;}
.y71_c00276{bottom:738.171327px;}
.y68_c00276{bottom:768.048130px;}
.y67_c00276{bottom:768.202112px;}
.y66_c00276{bottom:768.484611px;}
.y65_c00276{bottom:768.653371px;}
.y64_c00276{bottom:768.982542px;}
.y63_c00276{bottom:769.145200px;}
.y62_c00276{bottom:769.693930px;}
.y61_c00276{bottom:769.858510px;}
.y60_c00276{bottom:770.191851px;}
.y5f_c00276{bottom:770.348091px;}
.y5e_c00276{bottom:770.512587px;}
.y5d_c00276{bottom:770.613963px;}
.y5c_c00276{bottom:771.117943px;}
.y59_c00276{bottom:801.346303px;}
.y5a_c00276{bottom:801.346794px;}
.y53_c00276{bottom:801.346891px;}
.y58_c00276{bottom:801.346893px;}
.y56_c00276{bottom:801.347052px;}
.y54_c00276{bottom:801.347071px;}
.y55_c00276{bottom:801.347142px;}
.y4f_c00276{bottom:801.347149px;}
.y4e_c00276{bottom:801.347289px;}
.y51_c00276{bottom:801.347290px;}
.y50_c00276{bottom:801.347370px;}
.y5b_c00276{bottom:801.347524px;}
.y57_c00276{bottom:801.347573px;}
.y52_c00276{bottom:801.347601px;}
.y4d_c00276{bottom:831.840019px;}
.y4c_c00276{bottom:832.080070px;}
.y4b_c00276{bottom:832.684870px;}
.y4a_c00276{bottom:833.070409px;}
.y49_c00276{bottom:833.312350px;}
.y48_c00276{bottom:834.147720px;}
.y47_c00276{bottom:835.070071px;}
.y46_c00276{bottom:835.380000px;}
.y45_c00276{bottom:866.023605px;}
.y44_c00276{bottom:866.023956px;}
.y43_c00276{bottom:866.024307px;}
.y42_c00276{bottom:866.024598px;}
.y40_c00276{bottom:866.024880px;}
.y41_c00276{bottom:866.025249px;}
.y3f_c00276{bottom:894.943179px;}
.y3e_c00276{bottom:895.372821px;}
.y3d_c00276{bottom:895.599909px;}
.y3c_c00276{bottom:895.763019px;}
.y3b_c00276{bottom:896.044434px;}
.y3a_c00276{bottom:896.311056px;}
.y39_c00276{bottom:896.754015px;}
.y38_c00276{bottom:897.027255px;}
.y37_c00276{bottom:897.247854px;}
.y36_c00276{bottom:897.631506px;}
.y35_c00276{bottom:897.745005px;}
.y34_c00276{bottom:898.288326px;}
.y33_c00276{bottom:926.262711px;}
.y32_c00276{bottom:926.807700px;}
.y31_c00276{bottom:927.298416px;}
.y30_c00276{bottom:927.579870px;}
.y2f_c00276{bottom:928.013007px;}
.y2e_c00276{bottom:928.347147px;}
.y2d_c00276{bottom:928.457379px;}
.y2c_c00276{bottom:928.663317px;}
.y2b_c00276{bottom:929.278956px;}
.y2a_c00276{bottom:929.608245px;}
.y1f_c00276{bottom:959.272995px;}
.y20_c00276{bottom:959.273484px;}
.y25_c00276{bottom:959.273820px;}
.y27_c00276{bottom:959.273829px;}
.y26_c00276{bottom:959.273940px;}
.y28_c00276{bottom:959.274018px;}
.y29_c00276{bottom:959.274027px;}
.y22_c00276{bottom:959.274093px;}
.y24_c00276{bottom:959.274111px;}
.y21_c00276{bottom:959.274213px;}
.y23_c00276{bottom:959.274582px;}
.y15_c00276{bottom:990.888609px;}
.y16_c00276{bottom:990.889218px;}
.y14_c00276{bottom:990.889269px;}
.y17_c00276{bottom:990.889467px;}
.y1d_c00276{bottom:990.889692px;}
.y18_c00276{bottom:990.889716px;}
.y1a_c00276{bottom:990.889845px;}
.y1c_c00276{bottom:990.890103px;}
.y1b_c00276{bottom:990.890154px;}
.y1e_c00276{bottom:990.890370px;}
.y19_c00276{bottom:990.890376px;}
.y13_c00276{bottom:1023.037353px;}
.yc_c00276{bottom:1023.037521px;}
.y12_c00276{bottom:1023.037884px;}
.y11_c00276{bottom:1023.037995px;}
.yd_c00276{bottom:1023.038010px;}
.ye_c00276{bottom:1023.038328px;}
.y10_c00276{bottom:1023.038406px;}
.yf_c00276{bottom:1023.038808px;}
.yb_c00276{bottom:1052.683488px;}
.ya_c00276{bottom:1052.876259px;}
.y9_c00276{bottom:1053.141858px;}
.y8_c00276{bottom:1053.342738px;}
.y7_c00276{bottom:1053.665235px;}
.y6_c00276{bottom:1054.066995px;}
.y5_c00276{bottom:1054.399032px;}
.y4_c00276{bottom:1054.862442px;}
.y3_c00276{bottom:1055.390580px;}
.y2_c00276{bottom:1056.108240px;}
.y1_c00276{bottom:1056.510000px;}
.h3_c00276{height:72.001296px;}
.h6_c00276{height:72.001764px;}
.h2_c00276{height:78.001404px;}
.h5_c00276{height:78.001911px;}
.ha_c00276{height:78.002496px;}
.h4_c00276{height:84.001512px;}
.h7_c00276{height:84.002058px;}
.hb_c00276{height:90.000000px;}
.h8_c00276{height:90.002205px;}
.h9_c00276{height:102.002499px;}
.h1_c00276{height:1165.500000px;}
.h0_c00276{height:1165.800000px;}
.w0_c00276{width:915.000000px;}
.x0_c00276{left:0.000000px;}
.x4c_c00276{left:151.094259px;}
.x1_c00276{left:153.006000px;}
.x64_c00276{left:184.607652px;}
.x12_c00276{left:185.761965px;}
.x69_c00276{left:187.378644px;}
.x70_c00276{left:193.783416px;}
.x89_c00276{left:194.836368px;}
.x82_c00276{left:196.016799px;}
.xc_c00276{left:198.721821px;}
.x3e_c00276{left:218.158374px;}
.x2_c00276{left:219.966000px;}
.x7c_c00276{left:228.058677px;}
.x31_c00276{left:229.771659px;}
.x8a_c00276{left:237.502704px;}
.x5f_c00276{left:238.593840px;}
.x29_c00276{left:240.574785px;}
.x6a_c00276{left:244.079927px;}
.x71_c00276{left:246.099651px;}
.x55_c00276{left:249.368955px;}
.x45_c00276{left:252.120569px;}
.x1a_c00276{left:253.262211px;}
.x24_c00276{left:262.389882px;}
.x83_c00276{left:268.378848px;}
.x8b_c00276{left:271.531980px;}
.x32_c00276{left:273.242291px;}
.x77_c00276{left:281.520743px;}
.x59_c00276{left:282.587691px;}
.x13_c00276{left:285.664065px;}
.x3f_c00276{left:294.839133px;}
.x53_c00276{left:304.459029px;}
.x2a_c00276{left:306.185643px;}
.x41_c00276{left:315.808500px;}
.x72_c00276{left:326.262275px;}
.xd_c00276{left:329.673537px;}
.x38_c00276{left:338.244398px;}
.x3_c00276{left:339.576000px;}
.x20_c00276{left:342.276261px;}
.x33_c00276{left:349.114508px;}
.x2b_c00276{left:350.735745px;}
.x6b_c00276{left:357.752492px;}
.x4d_c00276{left:360.872259px;}
.xe_c00276{left:362.344716px;}
.x7d_c00276{left:369.547175px;}
.x1b_c00276{left:373.415040px;}
.x21_c00276{left:383.349504px;}
.x46_c00276{left:384.407417px;}
.x78_c00276{left:391.971009px;}
.x4e_c00276{left:394.917759px;}
.x6c_c00276{left:401.763144px;}
.x60_c00276{left:403.320495px;}
.x39_c00276{left:404.936832px;}
.x14_c00276{left:406.085403px;}
.x8c_c00276{left:413.028108px;}
.x73_c00276{left:414.933014px;}
.x42_c00276{left:426.514500px;}
.x4_c00276{left:427.599000px;}
.x7e_c00276{left:435.427637px;}
.x8d_c00276{left:436.498800px;}
.x34_c00276{left:437.675844px;}
.x2c_c00276{left:439.297431px;}
.x85_c00276{left:445.933500px;}
.x40_c00276{left:450.092235px;}
.x65_c00276{left:454.983432px;}
.x61_c00276{left:458.408373px;}
.x1c_c00276{left:460.086663px;}
.x35_c00276{left:461.437010px;}
.x5a_c00276{left:468.899691px;}
.x56_c00276{left:470.515401px;}
.x22_c00276{left:472.162035px;}
.x90_c00276{left:478.980000px;}
.x6d_c00276{left:481.414040px;}
.x47_c00276{left:491.607918px;}
.x15_c00276{left:493.567053px;}
.x74_c00276{left:501.592232px;}
.x4f_c00276{left:502.941759px;}
.x5_c00276{left:504.834000px;}
.x86_c00276{left:512.079000px;}
.x43_c00276{left:513.450000px;}
.xf_c00276{left:515.167215px;}
.x84_c00276{left:521.375238px;}
.x79_c00276{left:524.253933px;}
.x48_c00276{left:526.438401px;}
.x66_c00276{left:531.313503px;}
.x36_c00276{left:536.229174px;}
.x3a_c00276{left:547.768838px;}
.x1d_c00276{left:548.918358px;}
.x6e_c00276{left:557.016246px;}
.x23_c00276{left:558.852057px;}
.x6_c00276{left:560.173500px;}
.x2d_c00276{left:561.610332px;}
.x91_c00276{left:567.000000px;}
.x75_c00276{left:568.029666px;}
.x16_c00276{left:570.518325px;}
.x3b_c00276{left:580.434800px;}
.x67_c00276{left:581.516207px;}
.x5b_c00276{left:591.211191px;}
.x10_c00276{left:593.738541px;}
.x7a_c00276{left:600.416969px;}
.x25_c00276{left:602.320416px;}
.x57_c00276{left:605.016467px;}
.x68_c00276{left:613.109648px;}
.x17_c00276{left:614.528409px;}
.x8e_c00276{left:621.987288px;}
.x7b_c00276{left:623.068626px;}
.x50_c00276{left:624.699759px;}
.x44_c00276{left:625.762500px;}
.x7_c00276{left:627.133500px;}
.x7f_c00276{left:634.698033px;}
.x49_c00276{left:636.055434px;}
.x3c_c00276{left:646.317223px;}
.x2e_c00276{left:647.908500px;}
.x5c_c00276{left:655.756191px;}
.x26_c00276{left:658.473249px;}
.x62_c00276{left:666.555833px;}
.x54_c00276{left:668.934426px;}
.x18_c00276{left:679.599249px;}
.x8_c00276{left:680.883000px;}
.x5d_c00276{left:688.955691px;}
.x27_c00276{left:691.158447px;}
.x80_c00276{left:699.214985px;}
.x58_c00276{left:700.589795px;}
.x51_c00276{left:701.931759px;}
.x37_c00276{left:712.273295px;}
.x9_c00276{left:714.363000px;}
.x8f_c00276{left:721.081080px;}
.x1e_c00276{left:724.690185px;}
.x76_c00276{left:733.271976px;}
.x2f_c00276{left:734.308500px;}
.x28_c00276{left:736.506717px;}
.x4a_c00276{left:744.871457px;}
.xa_c00276{left:758.629500px;}
.x87_c00276{left:764.826000px;}
.x52_c00276{left:766.163259px;}
.x3d_c00276{left:767.281914px;}
.x30_c00276{left:768.601500px;}
.x6f_c00276{left:776.530998px;}
.x4b_c00276{left:778.624929px;}
.xb_c00276{left:790.758000px;}
.x63_c00276{left:798.871757px;}
.x11_c00276{left:801.103002px;}
.x5e_c00276{left:811.259691px;}
.x1f_c00276{left:812.441844px;}
.x88_c00276{left:820.155000px;}
.x19_c00276{left:823.241424px;}
.x81_c00276{left:830.957909px;}
@media print{
.v0_c00276{vertical-align:0.000000pt;}
.ls0_c00276{letter-spacing:0.000000pt;}
.ws0_c00276{word-spacing:0.000000pt;}
.fs1_c00276{font-size:64.001152pt;}
.fs4_c00276{font-size:64.001568pt;}
.fs0_c00276{font-size:69.334581pt;}
.fs3_c00276{font-size:69.335032pt;}
.fs8_c00276{font-size:69.335552pt;}
.fs2_c00276{font-size:74.668011pt;}
.fs5_c00276{font-size:74.668496pt;}
.fs9_c00276{font-size:80.000000pt;}
.fs6_c00276{font-size:80.001960pt;}
.fs7_c00276{font-size:90.668888pt;}
.y0_c00276{bottom:0.000000pt;}
.y115_c00276{bottom:169.026667pt;}
.y114_c00276{bottom:196.869333pt;}
.y113_c00276{bottom:223.286901pt;}
.y112_c00276{bottom:223.698635pt;}
.y111_c00276{bottom:223.903563pt;}
.y110_c00276{bottom:224.655712pt;}
.y10f_c00276{bottom:225.057248pt;}
.y10e_c00276{bottom:225.202816pt;}
.y10d_c00276{bottom:225.883275pt;}
.y10c_c00276{bottom:226.083669pt;}
.y10b_c00276{bottom:226.294987pt;}
.y10a_c00276{bottom:226.561056pt;}
.y109_c00276{bottom:240.296843pt;}
.y108_c00276{bottom:240.690293pt;}
.y107_c00276{bottom:241.235797pt;}
.y106_c00276{bottom:241.855904pt;}
.y105_c00276{bottom:242.088075pt;}
.y104_c00276{bottom:242.487605pt;}
.y103_c00276{bottom:242.957973pt;}
.y102_c00276{bottom:243.182453pt;}
.y101_c00276{bottom:243.881557pt;}
.y100_c00276{bottom:244.511221pt;}
.yff_c00276{bottom:244.737803pt;}
.yfe_c00276{bottom:245.041333pt;}
.yfd_c00276{bottom:290.796475pt;}
.yfa_c00276{bottom:290.796677pt;}
.yfc_c00276{bottom:290.796679pt;}
.yf8_c00276{bottom:290.796685pt;}
.yf9_c00276{bottom:290.796828pt;}
.yfb_c00276{bottom:290.797264pt;}
.yf7_c00276{bottom:316.766216pt;}
.yf6_c00276{bottom:317.468611pt;}
.yf5_c00276{bottom:317.812713pt;}
.yf4_c00276{bottom:317.990039pt;}
.yf3_c00276{bottom:318.168941pt;}
.yf2_c00276{bottom:318.694272pt;}
.yf1_c00276{bottom:318.875276pt;}
.yf0_c00276{bottom:319.226529pt;}
.yef_c00276{bottom:319.396760pt;}
.yee_c00276{bottom:319.576149pt;}
.yed_c00276{bottom:319.980229pt;}
.yec_c00276{bottom:320.387660pt;}
.yeb_c00276{bottom:344.940265pt;}
.yea_c00276{bottom:345.122875pt;}
.ye9_c00276{bottom:345.707771pt;}
.ye8_c00276{bottom:345.828713pt;}
.ye7_c00276{bottom:346.234613pt;}
.ye6_c00276{bottom:346.759776pt;}
.ye5_c00276{bottom:346.940368pt;}
.ye4_c00276{bottom:347.344241pt;}
.ye3_c00276{bottom:347.530276pt;}
.ye2_c00276{bottom:347.760353pt;}
.ye1_c00276{bottom:348.227724pt;}
.ye0_c00276{bottom:373.613675pt;}
.ydf_c00276{bottom:373.956812pt;}
.yde_c00276{bottom:374.346933pt;}
.ydd_c00276{bottom:374.491088pt;}
.ydc_c00276{bottom:374.691639pt;}
.ydb_c00276{bottom:374.986355pt;}
.yda_c00276{bottom:375.132536pt;}
.yd9_c00276{bottom:375.370893pt;}
.yd8_c00276{bottom:375.765281pt;}
.yd7_c00276{bottom:376.121397pt;}
.yd6_c00276{bottom:376.353583pt;}
.yd5_c00276{bottom:376.546608pt;}
.yd4_c00276{bottom:402.707733pt;}
.yd2_c00276{bottom:402.707839pt;}
.yd3_c00276{bottom:402.707875pt;}
.yd0_c00276{bottom:402.707927pt;}
.yd1_c00276{bottom:402.708203pt;}
.ycf_c00276{bottom:402.708477pt;}
.yce_c00276{bottom:402.708841pt;}
.ycd_c00276{bottom:402.709339pt;}
.ycb_c00276{bottom:402.709391pt;}
.ycc_c00276{bottom:402.709933pt;}
.yca_c00276{bottom:430.687944pt;}
.yc9_c00276{bottom:430.783696pt;}
.yc8_c00276{bottom:430.935769pt;}
.yc7_c00276{bottom:431.276852pt;}
.yc6_c00276{bottom:431.617944pt;}
.yc5_c00276{bottom:431.758523pt;}
.yc4_c00276{bottom:431.853976pt;}
.yc3_c00276{bottom:431.981557pt;}
.yc2_c00276{bottom:432.320493pt;}
.yc1_c00276{bottom:433.522808pt;}
.yc0_c00276{bottom:433.670791pt;}
.ybf_c00276{bottom:458.540800pt;}
.ybe_c00276{bottom:458.711133pt;}
.ybd_c00276{bottom:459.058999pt;}
.ybc_c00276{bottom:459.246760pt;}
.ybb_c00276{bottom:459.708697pt;}
.yba_c00276{bottom:460.172315pt;}
.yb9_c00276{bottom:460.356557pt;}
.yb8_c00276{bottom:460.528496pt;}
.yb7_c00276{bottom:460.651324pt;}
.yb6_c00276{bottom:461.174619pt;}
.yb5_c00276{bottom:461.348575pt;}
.yb4_c00276{bottom:461.529616pt;}
.yb3_c00276{bottom:461.991572pt;}
.yb2_c00276{bottom:485.250365pt;}
.yb1_c00276{bottom:485.529301pt;}
.yb0_c00276{bottom:486.011368pt;}
.yaf_c00276{bottom:486.217943pt;}
.yae_c00276{bottom:486.619556pt;}
.yad_c00276{bottom:486.958944pt;}
.yac_c00276{bottom:487.380605pt;}
.yab_c00276{bottom:487.775433pt;}
.yaa_c00276{bottom:488.197113pt;}
.ya9_c00276{bottom:488.539880pt;}
.ya8_c00276{bottom:489.353019pt;}
.ya7_c00276{bottom:513.763008pt;}
.ya6_c00276{bottom:514.443024pt;}
.ya5_c00276{bottom:515.159268pt;}
.ya4_c00276{bottom:515.398592pt;}
.ya3_c00276{bottom:515.632773pt;}
.ya2_c00276{bottom:516.493600pt;}
.ya1_c00276{bottom:516.971957pt;}
.ya0_c00276{bottom:517.196340pt;}
.y9f_c00276{bottom:517.674865pt;}
.y9e_c00276{bottom:539.664363pt;}
.y9d_c00276{bottom:539.923212pt;}
.y9c_c00276{bottom:540.380733pt;}
.y9b_c00276{bottom:540.898628pt;}
.y9a_c00276{bottom:541.067253pt;}
.y99_c00276{bottom:541.859561pt;}
.y98_c00276{bottom:542.140441pt;}
.y97_c00276{bottom:543.015583pt;}
.y96_c00276{bottom:543.543013pt;}
.y95_c00276{bottom:543.814507pt;}
.y94_c00276{bottom:544.155937pt;}
.y93_c00276{bottom:545.035893pt;}
.y92_c00276{bottom:569.289736pt;}
.y91_c00276{bottom:569.484560pt;}
.y90_c00276{bottom:569.689399pt;}
.y8f_c00276{bottom:570.169953pt;}
.y8e_c00276{bottom:570.511031pt;}
.y8d_c00276{bottom:570.927559pt;}
.y8c_c00276{bottom:571.599708pt;}
.y8b_c00276{bottom:571.811547pt;}
.y8a_c00276{bottom:572.228047pt;}
.y89_c00276{bottom:572.631275pt;}
.y88_c00276{bottom:573.116832pt;}
.y87_c00276{bottom:597.933604pt;}
.y86_c00276{bottom:598.083623pt;}
.y85_c00276{bottom:598.567357pt;}
.y84_c00276{bottom:598.957320pt;}
.y83_c00276{bottom:599.054743pt;}
.y82_c00276{bottom:599.210129pt;}
.y81_c00276{bottom:599.450120pt;}
.y80_c00276{bottom:599.594733pt;}
.y7f_c00276{bottom:599.686479pt;}
.y7e_c00276{bottom:600.127029pt;}
.y7d_c00276{bottom:600.274919pt;}
.y7c_c00276{bottom:600.719316pt;}
.y7b_c00276{bottom:626.146847pt;}
.y7a_c00276{bottom:626.343239pt;}
.y79_c00276{bottom:627.022127pt;}
.y78_c00276{bottom:627.164731pt;}
.y77_c00276{bottom:627.720960pt;}
.y76_c00276{bottom:628.045181pt;}
.y75_c00276{bottom:628.261892pt;}
.y74_c00276{bottom:628.532400pt;}
.y73_c00276{bottom:628.950729pt;}
.y72_c00276{bottom:629.280000pt;}
.y6f_c00276{bottom:656.151009pt;}
.y6c_c00276{bottom:656.151265pt;}
.y6b_c00276{bottom:656.151416pt;}
.y6e_c00276{bottom:656.151444pt;}
.y69_c00276{bottom:656.151637pt;}
.y6d_c00276{bottom:656.151648pt;}
.y70_c00276{bottom:656.151668pt;}
.y6a_c00276{bottom:656.151673pt;}
.y71_c00276{bottom:656.152291pt;}
.y68_c00276{bottom:682.709449pt;}
.y67_c00276{bottom:682.846321pt;}
.y66_c00276{bottom:683.097432pt;}
.y65_c00276{bottom:683.247441pt;}
.y64_c00276{bottom:683.540037pt;}
.y63_c00276{bottom:683.684623pt;}
.y62_c00276{bottom:684.172383pt;}
.y61_c00276{bottom:684.318676pt;}
.y60_c00276{bottom:684.614979pt;}
.y5f_c00276{bottom:684.753859pt;}
.y5e_c00276{bottom:684.900077pt;}
.y5d_c00276{bottom:684.990189pt;}
.y5c_c00276{bottom:685.438172pt;}
.y59_c00276{bottom:712.307825pt;}
.y5a_c00276{bottom:712.308261pt;}
.y53_c00276{bottom:712.308348pt;}
.y58_c00276{bottom:712.308349pt;}
.y56_c00276{bottom:712.308491pt;}
.y54_c00276{bottom:712.308508pt;}
.y55_c00276{bottom:712.308571pt;}
.y4f_c00276{bottom:712.308577pt;}
.y4e_c00276{bottom:712.308701pt;}
.y51_c00276{bottom:712.308703pt;}
.y50_c00276{bottom:712.308773pt;}
.y5b_c00276{bottom:712.308911pt;}
.y57_c00276{bottom:712.308953pt;}
.y52_c00276{bottom:712.308979pt;}
.y4d_c00276{bottom:739.413351pt;}
.y4c_c00276{bottom:739.626729pt;}
.y4b_c00276{bottom:740.164329pt;}
.y4a_c00276{bottom:740.507031pt;}
.y49_c00276{bottom:740.722089pt;}
.y48_c00276{bottom:741.464640pt;}
.y47_c00276{bottom:742.284508pt;}
.y46_c00276{bottom:742.560000pt;}
.y45_c00276{bottom:769.798760pt;}
.y44_c00276{bottom:769.799072pt;}
.y43_c00276{bottom:769.799384pt;}
.y42_c00276{bottom:769.799643pt;}
.y40_c00276{bottom:769.799893pt;}
.y41_c00276{bottom:769.800221pt;}
.y3f_c00276{bottom:795.505048pt;}
.y3e_c00276{bottom:795.886952pt;}
.y3d_c00276{bottom:796.088808pt;}
.y3c_c00276{bottom:796.233795pt;}
.y3b_c00276{bottom:796.483941pt;}
.y3a_c00276{bottom:796.720939pt;}
.y39_c00276{bottom:797.114680pt;}
.y38_c00276{bottom:797.357560pt;}
.y37_c00276{bottom:797.553648pt;}
.y36_c00276{bottom:797.894672pt;}
.y35_c00276{bottom:797.995560pt;}
.y34_c00276{bottom:798.478512pt;}
.y33_c00276{bottom:823.344632pt;}
.y32_c00276{bottom:823.829067pt;}
.y31_c00276{bottom:824.265259pt;}
.y30_c00276{bottom:824.515440pt;}
.y2f_c00276{bottom:824.900451pt;}
.y2e_c00276{bottom:825.197464pt;}
.y2d_c00276{bottom:825.295448pt;}
.y2c_c00276{bottom:825.478504pt;}
.y2b_c00276{bottom:826.025739pt;}
.y2a_c00276{bottom:826.318440pt;}
.y1f_c00276{bottom:852.687107pt;}
.y20_c00276{bottom:852.687541pt;}
.y25_c00276{bottom:852.687840pt;}
.y27_c00276{bottom:852.687848pt;}
.y26_c00276{bottom:852.687947pt;}
.y28_c00276{bottom:852.688016pt;}
.y29_c00276{bottom:852.688024pt;}
.y22_c00276{bottom:852.688083pt;}
.y24_c00276{bottom:852.688099pt;}
.y21_c00276{bottom:852.688189pt;}
.y23_c00276{bottom:852.688517pt;}
.y15_c00276{bottom:880.789875pt;}
.y16_c00276{bottom:880.790416pt;}
.y14_c00276{bottom:880.790461pt;}
.y17_c00276{bottom:880.790637pt;}
.y1d_c00276{bottom:880.790837pt;}
.y18_c00276{bottom:880.790859pt;}
.y1a_c00276{bottom:880.790973pt;}
.y1c_c00276{bottom:880.791203pt;}
.y1b_c00276{bottom:880.791248pt;}
.y1e_c00276{bottom:880.791440pt;}
.y19_c00276{bottom:880.791445pt;}
.y13_c00276{bottom:909.366536pt;}
.yc_c00276{bottom:909.366685pt;}
.y12_c00276{bottom:909.367008pt;}
.y11_c00276{bottom:909.367107pt;}
.yd_c00276{bottom:909.367120pt;}
.ye_c00276{bottom:909.367403pt;}
.y10_c00276{bottom:909.367472pt;}
.yf_c00276{bottom:909.367829pt;}
.yb_c00276{bottom:935.718656pt;}
.ya_c00276{bottom:935.890008pt;}
.y9_c00276{bottom:936.126096pt;}
.y8_c00276{bottom:936.304656pt;}
.y7_c00276{bottom:936.591320pt;}
.y6_c00276{bottom:936.948440pt;}
.y5_c00276{bottom:937.243584pt;}
.y4_c00276{bottom:937.655504pt;}
.y3_c00276{bottom:938.124960pt;}
.y2_c00276{bottom:938.762880pt;}
.y1_c00276{bottom:939.120000pt;}
.h3_c00276{height:64.001152pt;}
.h6_c00276{height:64.001568pt;}
.h2_c00276{height:69.334581pt;}
.h5_c00276{height:69.335032pt;}
.ha_c00276{height:69.335552pt;}
.h4_c00276{height:74.668011pt;}
.h7_c00276{height:74.668496pt;}
.hb_c00276{height:80.000000pt;}
.h8_c00276{height:80.001960pt;}
.h9_c00276{height:90.668888pt;}
.h1_c00276{height:1036.000000pt;}
.h0_c00276{height:1036.266667pt;}
.w0_c00276{width:813.333333pt;}
.x0_c00276{left:0.000000pt;}
.x4c_c00276{left:134.306008pt;}
.x1_c00276{left:136.005333pt;}
.x64_c00276{left:164.095691pt;}
.x12_c00276{left:165.121747pt;}
.x69_c00276{left:166.558795pt;}
.x70_c00276{left:172.251925pt;}
.x89_c00276{left:173.187883pt;}
.x82_c00276{left:174.237155pt;}
.xc_c00276{left:176.641619pt;}
.x3e_c00276{left:193.918555pt;}
.x2_c00276{left:195.525333pt;}
.x7c_c00276{left:202.718824pt;}
.x31_c00276{left:204.241475pt;}
.x8a_c00276{left:211.113515pt;}
.x5f_c00276{left:212.083413pt;}
.x29_c00276{left:213.844253pt;}
.x6a_c00276{left:216.959935pt;}
.x71_c00276{left:218.755245pt;}
.x55_c00276{left:221.661293pt;}
.x45_c00276{left:224.107172pt;}
.x1a_c00276{left:225.121965pt;}
.x24_c00276{left:233.235451pt;}
.x83_c00276{left:238.558976pt;}
.x8b_c00276{left:241.361760pt;}
.x32_c00276{left:242.882036pt;}
.x77_c00276{left:250.240660pt;}
.x59_c00276{left:251.189059pt;}
.x13_c00276{left:253.923613pt;}
.x3f_c00276{left:262.079229pt;}
.x53_c00276{left:270.630248pt;}
.x2a_c00276{left:272.165016pt;}
.x41_c00276{left:280.718667pt;}
.x72_c00276{left:290.010911pt;}
.xd_c00276{left:293.043144pt;}
.x38_c00276{left:300.661687pt;}
.x3_c00276{left:301.845333pt;}
.x20_c00276{left:304.245565pt;}
.x33_c00276{left:310.324007pt;}
.x2b_c00276{left:311.765107pt;}
.x6b_c00276{left:318.002215pt;}
.x4d_c00276{left:320.775341pt;}
.xe_c00276{left:322.084192pt;}
.x7d_c00276{left:328.486377pt;}
.x1b_c00276{left:331.924480pt;}
.x21_c00276{left:340.755115pt;}
.x46_c00276{left:341.695481pt;}
.x78_c00276{left:348.418675pt;}
.x4e_c00276{left:351.038008pt;}
.x6c_c00276{left:357.122795pt;}
.x60_c00276{left:358.507107pt;}
.x39_c00276{left:359.943851pt;}
.x14_c00276{left:360.964803pt;}
.x8c_c00276{left:367.136096pt;}
.x73_c00276{left:368.829345pt;}
.x42_c00276{left:379.124000pt;}
.x4_c00276{left:380.088000pt;}
.x7e_c00276{left:387.046788pt;}
.x8d_c00276{left:387.998933pt;}
.x34_c00276{left:389.045195pt;}
.x2c_c00276{left:390.486605pt;}
.x85_c00276{left:396.385333pt;}
.x40_c00276{left:400.081987pt;}
.x65_c00276{left:404.429717pt;}
.x61_c00276{left:407.474109pt;}
.x1c_c00276{left:408.965923pt;}
.x35_c00276{left:410.166231pt;}
.x5a_c00276{left:416.799725pt;}
.x56_c00276{left:418.235912pt;}
.x22_c00276{left:419.699587pt;}
.x90_c00276{left:425.760000pt;}
.x6d_c00276{left:427.923591pt;}
.x47_c00276{left:436.984816pt;}
.x15_c00276{left:438.726269pt;}
.x74_c00276{left:445.859761pt;}
.x4f_c00276{left:447.059341pt;}
.x5_c00276{left:448.741333pt;}
.x86_c00276{left:455.181333pt;}
.x43_c00276{left:456.400000pt;}
.xf_c00276{left:457.926413pt;}
.x84_c00276{left:463.444656pt;}
.x79_c00276{left:466.003496pt;}
.x48_c00276{left:467.945245pt;}
.x66_c00276{left:472.278669pt;}
.x36_c00276{left:476.648155pt;}
.x3a_c00276{left:486.905633pt;}
.x1d_c00276{left:487.927429pt;}
.x6e_c00276{left:495.125552pt;}
.x23_c00276{left:496.757384pt;}
.x6_c00276{left:497.932000pt;}
.x2d_c00276{left:499.209184pt;}
.x91_c00276{left:504.000000pt;}
.x75_c00276{left:504.915259pt;}
.x16_c00276{left:507.127400pt;}
.x3b_c00276{left:515.942044pt;}
.x67_c00276{left:516.903295pt;}
.x5b_c00276{left:525.521059pt;}
.x10_c00276{left:527.767592pt;}
.x7a_c00276{left:533.703972pt;}
.x25_c00276{left:535.395925pt;}
.x57_c00276{left:537.792415pt;}
.x68_c00276{left:544.986353pt;}
.x17_c00276{left:546.247475pt;}
.x8e_c00276{left:552.877589pt;}
.x7b_c00276{left:553.838779pt;}
.x50_c00276{left:555.288675pt;}
.x44_c00276{left:556.233333pt;}
.x7_c00276{left:557.452000pt;}
.x7f_c00276{left:564.176029pt;}
.x49_c00276{left:565.382608pt;}
.x3c_c00276{left:574.504199pt;}
.x2e_c00276{left:575.918667pt;}
.x5c_c00276{left:582.894392pt;}
.x26_c00276{left:585.309555pt;}
.x62_c00276{left:592.494073pt;}
.x54_c00276{left:594.608379pt;}
.x18_c00276{left:604.088221pt;}
.x8_c00276{left:605.229333pt;}
.x5d_c00276{left:612.405059pt;}
.x27_c00276{left:614.363064pt;}
.x80_c00276{left:621.524431pt;}
.x58_c00276{left:622.746484pt;}
.x51_c00276{left:623.939341pt;}
.x37_c00276{left:633.131817pt;}
.x9_c00276{left:634.989333pt;}
.x8f_c00276{left:640.960960pt;}
.x1e_c00276{left:644.169053pt;}
.x76_c00276{left:651.797312pt;}
.x2f_c00276{left:652.718667pt;}
.x28_c00276{left:654.672637pt;}
.x4a_c00276{left:662.107961pt;}
.xa_c00276{left:674.337333pt;}
.x87_c00276{left:679.845333pt;}
.x52_c00276{left:681.034008pt;}
.x3d_c00276{left:682.028368pt;}
.x30_c00276{left:683.201333pt;}
.x6f_c00276{left:690.249776pt;}
.x4b_c00276{left:692.111048pt;}
.xb_c00276{left:702.896000pt;}
.x63_c00276{left:710.108228pt;}
.x11_c00276{left:712.091557pt;}
.x5e_c00276{left:721.119725pt;}
.x1f_c00276{left:722.170528pt;}
.x88_c00276{left:729.026667pt;}
.x19_c00276{left:731.770155pt;}
.x81_c00276{left:738.629252pt;}
}





/* 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_c00277 {
    display:none;
  }
  .loading-indicator_c00277.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00277 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_c00277 { 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_c00277" -> "#page-container .classname_c00277")
 */
.pf_c00277 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00277 { /* 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_c00277.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00277 { /* 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_c00277 { /* 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_c00277 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00277 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00277 {overflow:visible;}
  }
}
.c_c00277 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00277 { /* 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_c00277:after { /* webkit #35443 */
  content: '';
}
.t_c00277:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00277 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 */
}
.__c00277 { /* 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_c00277 { /* info for Javascript */
  display:none;
}
.l_c00277 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00277 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00277 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00277: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_c00277 {
    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_c00277.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00277.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_c00277 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00277{font-family:sans-serif;visibility:hidden;}
.sc__c00277{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00277{-webkit-text-stroke:0px transparent;}
}
.y0_c00277{bottom:0.000000px;}
.h1_c00277{height:1165.500000px;}
.h0_c00277{height:1165.800000px;}
.w0_c00277{width:915.000000px;}
.x0_c00277{left:0.000000px;}
@media print{
.y0_c00277{bottom:0.000000pt;}
.h1_c00277{height:1036.000000pt;}
.h0_c00277{height:1036.266667pt;}
.w0_c00277{width:813.333333pt;}
.x0_c00277{left:0.000000pt;}
}





/* 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_c00278 {
    display:none;
  }
  .loading-indicator_c00278.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00278 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_c00278 { 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_c00278" -> "#page-container .classname_c00278")
 */
.pf_c00278 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00278 { /* 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_c00278.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00278 { /* 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_c00278 { /* 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_c00278 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00278 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00278 {overflow:visible;}
  }
}
.c_c00278 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00278 { /* 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_c00278:after { /* webkit #35443 */
  content: '';
}
.t_c00278:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00278 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 */
}
.__c00278 { /* 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_c00278 { /* info for Javascript */
  display:none;
}
.l_c00278 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00278 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00278 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00278: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_c00278 {
    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_c00278.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00278.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_c00278 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00278{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00278;src:url('chunks/assets/font_c605e72f209fc835e906f064.woff2')format("woff");}.ff1_c00278{font-family:ff1_c00278;line-height:1.000000;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;}
.ma_c00278{transform:matrix(0.010165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.010165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.010165,0.000000,0.000000,0.250000,0,0);}
.mb_c00278{transform:matrix(0.013255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.013255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.013255,0.000000,0.000000,0.250000,0,0);}
.m2_c00278{transform:matrix(0.129650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129650,0.000000,0.000000,0.250000,0,0);}
.m8_c00278{transform:matrix(0.131905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131905,0.000000,0.000000,0.250000,0,0);}
.m0_c00278{transform:matrix(0.132070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132070,0.000000,0.000000,0.250000,0,0);}
.m130_c00278{transform:matrix(0.136443,-0.000819,0.001500,0.249996,0,0);-ms-transform:matrix(0.136443,-0.000819,0.001500,0.249996,0,0);-webkit-transform:matrix(0.136443,-0.000819,0.001500,0.249996,0,0);}
.m25_c00278{transform:matrix(0.141965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141965,0.000000,0.000000,0.250000,0,0);}
.m9d_c00278{transform:matrix(0.142050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142050,0.000000,0.000000,0.250000,0,0);}
.m12f_c00278{transform:matrix(0.151753,-0.000759,0.001250,0.249997,0,0);-ms-transform:matrix(0.151753,-0.000759,0.001250,0.249997,0,0);-webkit-transform:matrix(0.151753,-0.000759,0.001250,0.249997,0,0);}
.mda_c00278{transform:matrix(0.154050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154050,0.000000,0.000000,0.250000,0,0);}
.mdd_c00278{transform:matrix(0.156935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156935,0.000000,0.000000,0.250000,0,0);}
.mdb_c00278{transform:matrix(0.157250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157250,0.000000,0.000000,0.250000,0,0);}
.md6_c00278{transform:matrix(0.171455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171455,0.000000,0.000000,0.250000,0,0);}
.md8_c00278{transform:matrix(0.174535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174535,0.000000,0.000000,0.250000,0,0);}
.mf4_c00278{transform:matrix(0.176100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176100,0.000000,0.000000,0.250000,0,0);}
.m111_c00278{transform:matrix(0.178125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178125,0.000000,0.000000,0.250000,0,0);}
.md9_c00278{transform:matrix(0.179650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179650,0.000000,0.000000,0.250000,0,0);}
.m118_c00278{transform:matrix(0.180480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180480,0.000000,0.000000,0.250000,0,0);}
.m11c_c00278{transform:matrix(0.183573,-0.000918,0.001250,0.249997,0,0);-ms-transform:matrix(0.183573,-0.000918,0.001250,0.249997,0,0);-webkit-transform:matrix(0.183573,-0.000918,0.001250,0.249997,0,0);}
.m67_c00278{transform:matrix(0.183985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183985,0.000000,0.000000,0.250000,0,0);}
.m110_c00278{transform:matrix(0.184180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184180,0.000000,0.000000,0.250000,0,0);}
.md7_c00278{transform:matrix(0.184295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184295,0.000000,0.000000,0.250000,0,0);}
.mdc_c00278{transform:matrix(0.184350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184350,0.000000,0.000000,0.250000,0,0);}
.m113_c00278{transform:matrix(0.184640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184640,0.000000,0.000000,0.250000,0,0);}
.m120_c00278{transform:matrix(0.184713,-0.000924,0.001250,0.249997,0,0);-ms-transform:matrix(0.184713,-0.000924,0.001250,0.249997,0,0);-webkit-transform:matrix(0.184713,-0.000924,0.001250,0.249997,0,0);}
.mb5_c00278{transform:matrix(0.184715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184715,0.000000,0.000000,0.250000,0,0);}
.m92_c00278{transform:matrix(0.189600,-0.001327,0.001750,0.249994,0,0);-ms-transform:matrix(0.189600,-0.001327,0.001750,0.249994,0,0);-webkit-transform:matrix(0.189600,-0.001327,0.001750,0.249994,0,0);}
.m94_c00278{transform:matrix(0.189745,-0.001328,0.001750,0.249994,0,0);-ms-transform:matrix(0.189745,-0.001328,0.001750,0.249994,0,0);-webkit-transform:matrix(0.189745,-0.001328,0.001750,0.249994,0,0);}
.m33_c00278{transform:matrix(0.192630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192630,0.000000,0.000000,0.250000,0,0);}
.m10_c00278{transform:matrix(0.193505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193505,0.000000,0.000000,0.250000,0,0);}
.m115_c00278{transform:matrix(0.194145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194145,0.000000,0.000000,0.250000,0,0);}
.m11b_c00278{transform:matrix(0.194165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194165,0.000000,0.000000,0.250000,0,0);}
.m125_c00278{transform:matrix(0.195273,-0.000976,0.001250,0.249997,0,0);-ms-transform:matrix(0.195273,-0.000976,0.001250,0.249997,0,0);-webkit-transform:matrix(0.195273,-0.000976,0.001250,0.249997,0,0);}
.m8f_c00278{transform:matrix(0.195810,-0.001371,0.001750,0.249994,0,0);-ms-transform:matrix(0.195810,-0.001371,0.001750,0.249994,0,0);-webkit-transform:matrix(0.195810,-0.001371,0.001750,0.249994,0,0);}
.m11e_c00278{transform:matrix(0.195818,-0.000979,0.001250,0.249997,0,0);-ms-transform:matrix(0.195818,-0.000979,0.001250,0.249997,0,0);-webkit-transform:matrix(0.195818,-0.000979,0.001250,0.249997,0,0);}
.m117_c00278{transform:matrix(0.196025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196025,0.000000,0.000000,0.250000,0,0);}
.m119_c00278{transform:matrix(0.196385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196385,0.000000,0.000000,0.250000,0,0);}
.m5e_c00278{transform:matrix(0.196780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196780,0.000000,0.000000,0.250000,0,0);}
.m11a_c00278{transform:matrix(0.196960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196960,0.000000,0.000000,0.250000,0,0);}
.m13d_c00278{transform:matrix(0.197746,-0.001186,0.001500,0.249996,0,0);-ms-transform:matrix(0.197746,-0.001186,0.001500,0.249996,0,0);-webkit-transform:matrix(0.197746,-0.001186,0.001500,0.249996,0,0);}
.m4_c00278{transform:matrix(0.198545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198545,0.000000,0.000000,0.250000,0,0);}
.mb1_c00278{transform:matrix(0.198595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198595,0.000000,0.000000,0.250000,0,0);}
.m56_c00278{transform:matrix(0.198955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198955,0.000000,0.000000,0.250000,0,0);}
.m137_c00278{transform:matrix(0.199096,-0.001195,0.001500,0.249996,0,0);-ms-transform:matrix(0.199096,-0.001195,0.001500,0.249996,0,0);-webkit-transform:matrix(0.199096,-0.001195,0.001500,0.249996,0,0);}
.m112_c00278{transform:matrix(0.199380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199380,0.000000,0.000000,0.250000,0,0);}
.m3_c00278{transform:matrix(0.199700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199700,0.000000,0.000000,0.250000,0,0);}
.m139_c00278{transform:matrix(0.200306,-0.001202,0.001500,0.249996,0,0);-ms-transform:matrix(0.200306,-0.001202,0.001500,0.249996,0,0);-webkit-transform:matrix(0.200306,-0.001202,0.001500,0.249996,0,0);}
.m122_c00278{transform:matrix(0.200732,-0.001004,0.001250,0.249997,0,0);-ms-transform:matrix(0.200732,-0.001004,0.001250,0.249997,0,0);-webkit-transform:matrix(0.200732,-0.001004,0.001250,0.249997,0,0);}
.m141_c00278{transform:matrix(0.202041,-0.001212,0.001500,0.249996,0,0);-ms-transform:matrix(0.202041,-0.001212,0.001500,0.249996,0,0);-webkit-transform:matrix(0.202041,-0.001212,0.001500,0.249996,0,0);}
.m58_c00278{transform:matrix(0.202180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202180,0.000000,0.000000,0.250000,0,0);}
.m2f_c00278{transform:matrix(0.202290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202290,0.000000,0.000000,0.250000,0,0);}
.m3a_c00278{transform:matrix(0.202840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202840,0.000000,0.000000,0.250000,0,0);}
.m87_c00278{transform:matrix(0.203345,-0.001423,0.001750,0.249994,0,0);-ms-transform:matrix(0.203345,-0.001423,0.001750,0.249994,0,0);-webkit-transform:matrix(0.203345,-0.001423,0.001750,0.249994,0,0);}
.m123_c00278{transform:matrix(0.203417,-0.001017,0.001250,0.249997,0,0);-ms-transform:matrix(0.203417,-0.001017,0.001250,0.249997,0,0);-webkit-transform:matrix(0.203417,-0.001017,0.001250,0.249997,0,0);}
.m2c_c00278{transform:matrix(0.203550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203550,0.000000,0.000000,0.250000,0,0);}
.m114_c00278{transform:matrix(0.203740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203740,0.000000,0.000000,0.250000,0,0);}
.mb0_c00278{transform:matrix(0.204280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204280,0.000000,0.000000,0.250000,0,0);}
.me5_c00278{transform:matrix(0.204345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204345,0.000000,0.000000,0.250000,0,0);}
.m5c_c00278{transform:matrix(0.204460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204460,0.000000,0.000000,0.250000,0,0);}
.m116_c00278{transform:matrix(0.204480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204480,0.000000,0.000000,0.250000,0,0);}
.m15_c00278{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m133_c00278{transform:matrix(0.205631,-0.001234,0.001500,0.249996,0,0);-ms-transform:matrix(0.205631,-0.001234,0.001500,0.249996,0,0);-webkit-transform:matrix(0.205631,-0.001234,0.001500,0.249996,0,0);}
.m9_c00278{transform:matrix(0.206045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206045,0.000000,0.000000,0.250000,0,0);}
.m3e_c00278{transform:matrix(0.206470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206470,0.000000,0.000000,0.250000,0,0);}
.m42_c00278{transform:matrix(0.207395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207395,0.000000,0.000000,0.250000,0,0);}
.m61_c00278{transform:matrix(0.207425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207425,0.000000,0.000000,0.250000,0,0);}
.m69_c00278{transform:matrix(0.207565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207565,0.000000,0.000000,0.250000,0,0);}
.m5f_c00278{transform:matrix(0.207895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207895,0.000000,0.000000,0.250000,0,0);}
.md5_c00278{transform:matrix(0.208310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208310,0.000000,0.000000,0.250000,0,0);}
.m12_c00278{transform:matrix(0.208510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208510,0.000000,0.000000,0.250000,0,0);}
.m132_c00278{transform:matrix(0.208601,-0.001252,0.001500,0.249996,0,0);-ms-transform:matrix(0.208601,-0.001252,0.001500,0.249996,0,0);-webkit-transform:matrix(0.208601,-0.001252,0.001500,0.249996,0,0);}
.m6a_c00278{transform:matrix(0.209300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209300,0.000000,0.000000,0.250000,0,0);}
.mc3_c00278{transform:matrix(0.209505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209505,0.000000,0.000000,0.250000,0,0);}
.m21_c00278{transform:matrix(0.209595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209595,0.000000,0.000000,0.250000,0,0);}
.m105_c00278{transform:matrix(0.210150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210150,0.000000,0.000000,0.250000,0,0);}
.m5d_c00278{transform:matrix(0.210235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210235,0.000000,0.000000,0.250000,0,0);}
.m5a_c00278{transform:matrix(0.210335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210335,0.000000,0.000000,0.250000,0,0);}
.m126_c00278{transform:matrix(0.210472,-0.001052,0.001250,0.249997,0,0);-ms-transform:matrix(0.210472,-0.001052,0.001250,0.249997,0,0);-webkit-transform:matrix(0.210472,-0.001052,0.001250,0.249997,0,0);}
.m41_c00278{transform:matrix(0.210555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210555,0.000000,0.000000,0.250000,0,0);}
.m121_c00278{transform:matrix(0.211067,-0.001055,0.001250,0.249997,0,0);-ms-transform:matrix(0.211067,-0.001055,0.001250,0.249997,0,0);-webkit-transform:matrix(0.211067,-0.001055,0.001250,0.249997,0,0);}
.mb2_c00278{transform:matrix(0.211300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211300,0.000000,0.000000,0.250000,0,0);}
.mf2_c00278{transform:matrix(0.211930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211930,0.000000,0.000000,0.250000,0,0);}
.m37_c00278{transform:matrix(0.212150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212150,0.000000,0.000000,0.250000,0,0);}
.m8e_c00278{transform:matrix(0.212180,-0.001485,0.001750,0.249994,0,0);-ms-transform:matrix(0.212180,-0.001485,0.001750,0.249994,0,0);-webkit-transform:matrix(0.212180,-0.001485,0.001750,0.249994,0,0);}
.m103_c00278{transform:matrix(0.212720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212720,0.000000,0.000000,0.250000,0,0);}
.m53_c00278{transform:matrix(0.213135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213135,0.000000,0.000000,0.250000,0,0);}
.mb6_c00278{transform:matrix(0.213455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213455,0.000000,0.000000,0.250000,0,0);}
.m4f_c00278{transform:matrix(0.213635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213635,0.000000,0.000000,0.250000,0,0);}
.me8_c00278{transform:matrix(0.213820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213820,0.000000,0.000000,0.250000,0,0);}
.m11f_c00278{transform:matrix(0.214142,-0.001071,0.001250,0.249997,0,0);-ms-transform:matrix(0.214142,-0.001071,0.001250,0.249997,0,0);-webkit-transform:matrix(0.214142,-0.001071,0.001250,0.249997,0,0);}
.m95_c00278{transform:matrix(0.214275,-0.001500,0.001750,0.249994,0,0);-ms-transform:matrix(0.214275,-0.001500,0.001750,0.249994,0,0);-webkit-transform:matrix(0.214275,-0.001500,0.001750,0.249994,0,0);}
.m34_c00278{transform:matrix(0.214680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214680,0.000000,0.000000,0.250000,0,0);}
.m1e_c00278{transform:matrix(0.214760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214760,0.000000,0.000000,0.250000,0,0);}
.m7e_c00278{transform:matrix(0.214930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214930,0.000000,0.000000,0.250000,0,0);}
.m136_c00278{transform:matrix(0.214956,-0.001290,0.001500,0.249996,0,0);-ms-transform:matrix(0.214956,-0.001290,0.001500,0.249996,0,0);-webkit-transform:matrix(0.214956,-0.001290,0.001500,0.249996,0,0);}
.m6_c00278{transform:matrix(0.214960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214960,0.000000,0.000000,0.250000,0,0);}
.ma8_c00278{transform:matrix(0.215060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215060,0.000000,0.000000,0.250000,0,0);}
.mc6_c00278{transform:matrix(0.215150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215150,0.000000,0.000000,0.250000,0,0);}
.m75_c00278{transform:matrix(0.215785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215785,0.000000,0.000000,0.250000,0,0);}
.m124_c00278{transform:matrix(0.215937,-0.001080,0.001250,0.249997,0,0);-ms-transform:matrix(0.215937,-0.001080,0.001250,0.249997,0,0);-webkit-transform:matrix(0.215937,-0.001080,0.001250,0.249997,0,0);}
.m11d_c00278{transform:matrix(0.216352,-0.001082,0.001250,0.249997,0,0);-ms-transform:matrix(0.216352,-0.001082,0.001250,0.249997,0,0);-webkit-transform:matrix(0.216352,-0.001082,0.001250,0.249997,0,0);}
.m90_c00278{transform:matrix(0.216755,-0.001517,0.001750,0.249994,0,0);-ms-transform:matrix(0.216755,-0.001517,0.001750,0.249994,0,0);-webkit-transform:matrix(0.216755,-0.001517,0.001750,0.249994,0,0);}
.ma0_c00278{transform:matrix(0.216790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216790,0.000000,0.000000,0.250000,0,0);}
.mf6_c00278{transform:matrix(0.217035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217035,0.000000,0.000000,0.250000,0,0);}
.m78_c00278{transform:matrix(0.217055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217055,0.000000,0.000000,0.250000,0,0);}
.m13a_c00278{transform:matrix(0.217056,-0.001302,0.001500,0.249996,0,0);-ms-transform:matrix(0.217056,-0.001302,0.001500,0.249996,0,0);-webkit-transform:matrix(0.217056,-0.001302,0.001500,0.249996,0,0);}
.mf8_c00278{transform:matrix(0.217945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217945,0.000000,0.000000,0.250000,0,0);}
.m1d_c00278{transform:matrix(0.218255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218255,0.000000,0.000000,0.250000,0,0);}
.m144_c00278{transform:matrix(0.218616,-0.001312,0.001500,0.249996,0,0);-ms-transform:matrix(0.218616,-0.001312,0.001500,0.249996,0,0);-webkit-transform:matrix(0.218616,-0.001312,0.001500,0.249996,0,0);}
.me2_c00278{transform:matrix(0.218925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218925,0.000000,0.000000,0.250000,0,0);}
.m1a_c00278{transform:matrix(0.218995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218995,0.000000,0.000000,0.250000,0,0);}
.m8b_c00278{transform:matrix(0.219370,-0.001536,0.001750,0.249994,0,0);-ms-transform:matrix(0.219370,-0.001536,0.001750,0.249994,0,0);-webkit-transform:matrix(0.219370,-0.001536,0.001750,0.249994,0,0);}
.m4d_c00278{transform:matrix(0.219535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219535,0.000000,0.000000,0.250000,0,0);}
.m26_c00278{transform:matrix(0.219670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219670,0.000000,0.000000,0.250000,0,0);}
.m45_c00278{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m30_c00278{transform:matrix(0.220830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220830,0.000000,0.000000,0.250000,0,0);}
.m44_c00278{transform:matrix(0.220890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220890,0.000000,0.000000,0.250000,0,0);}
.m135_c00278{transform:matrix(0.220921,-0.001326,0.001500,0.249996,0,0);-ms-transform:matrix(0.220921,-0.001326,0.001500,0.249996,0,0);-webkit-transform:matrix(0.220921,-0.001326,0.001500,0.249996,0,0);}
.m13b_c00278{transform:matrix(0.221176,-0.001327,0.001500,0.249996,0,0);-ms-transform:matrix(0.221176,-0.001327,0.001500,0.249996,0,0);-webkit-transform:matrix(0.221176,-0.001327,0.001500,0.249996,0,0);}
.m1b_c00278{transform:matrix(0.221455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221455,0.000000,0.000000,0.250000,0,0);}
.mc9_c00278{transform:matrix(0.221555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221555,0.000000,0.000000,0.250000,0,0);}
.mfe_c00278{transform:matrix(0.221810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221810,0.000000,0.000000,0.250000,0,0);}
.m20_c00278{transform:matrix(0.222125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222125,0.000000,0.000000,0.250000,0,0);}
.mb7_c00278{transform:matrix(0.222435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222435,0.000000,0.000000,0.250000,0,0);}
.m84_c00278{transform:matrix(0.222730,-0.001559,0.001750,0.249994,0,0);-ms-transform:matrix(0.222730,-0.001559,0.001750,0.249994,0,0);-webkit-transform:matrix(0.222730,-0.001559,0.001750,0.249994,0,0);}
.m3f_c00278{transform:matrix(0.222735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222735,0.000000,0.000000,0.250000,0,0);}
.m2b_c00278{transform:matrix(0.223030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223030,0.000000,0.000000,0.250000,0,0);}
.m12c_c00278{transform:matrix(0.223462,-0.001117,0.001250,0.249997,0,0);-ms-transform:matrix(0.223462,-0.001117,0.001250,0.249997,0,0);-webkit-transform:matrix(0.223462,-0.001117,0.001250,0.249997,0,0);}
.m52_c00278{transform:matrix(0.224035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224035,0.000000,0.000000,0.250000,0,0);}
.m55_c00278{transform:matrix(0.224070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224070,0.000000,0.000000,0.250000,0,0);}
.m81_c00278{transform:matrix(0.224075,-0.001569,0.001750,0.249994,0,0);-ms-transform:matrix(0.224075,-0.001569,0.001750,0.249994,0,0);-webkit-transform:matrix(0.224075,-0.001569,0.001750,0.249994,0,0);}
.m29_c00278{transform:matrix(0.224600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224600,0.000000,0.000000,0.250000,0,0);}
.m47_c00278{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.mac_c00278{transform:matrix(0.225315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225315,0.000000,0.000000,0.250000,0,0);}
.mde_c00278{transform:matrix(0.225665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225665,0.000000,0.000000,0.250000,0,0);}
.m140_c00278{transform:matrix(0.225936,-0.001356,0.001500,0.249996,0,0);-ms-transform:matrix(0.225936,-0.001356,0.001500,0.249996,0,0);-webkit-transform:matrix(0.225936,-0.001356,0.001500,0.249996,0,0);}
.maf_c00278{transform:matrix(0.226310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226310,0.000000,0.000000,0.250000,0,0);}
.ma5_c00278{transform:matrix(0.226575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226575,0.000000,0.000000,0.250000,0,0);}
.mfc_c00278{transform:matrix(0.226590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226590,0.000000,0.000000,0.250000,0,0);}
.m7_c00278{transform:matrix(0.226655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226655,0.000000,0.000000,0.250000,0,0);}
.m19_c00278{transform:matrix(0.226895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226895,0.000000,0.000000,0.250000,0,0);}
.m128_c00278{transform:matrix(0.227747,-0.001139,0.001250,0.249997,0,0);-ms-transform:matrix(0.227747,-0.001139,0.001250,0.249997,0,0);-webkit-transform:matrix(0.227747,-0.001139,0.001250,0.249997,0,0);}
.m36_c00278{transform:matrix(0.227830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227830,0.000000,0.000000,0.250000,0,0);}
.me1_c00278{transform:matrix(0.227855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227855,0.000000,0.000000,0.250000,0,0);}
.m97_c00278{transform:matrix(0.228084,-0.001597,0.001750,0.249994,0,0);-ms-transform:matrix(0.228084,-0.001597,0.001750,0.249994,0,0);-webkit-transform:matrix(0.228084,-0.001597,0.001750,0.249994,0,0);}
.m13e_c00278{transform:matrix(0.228336,-0.001370,0.001500,0.249996,0,0);-ms-transform:matrix(0.228336,-0.001370,0.001500,0.249996,0,0);-webkit-transform:matrix(0.228336,-0.001370,0.001500,0.249996,0,0);}
.m35_c00278{transform:matrix(0.228365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228365,0.000000,0.000000,0.250000,0,0);}
.m104_c00278{transform:matrix(0.228470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228470,0.000000,0.000000,0.250000,0,0);}
.m6f_c00278{transform:matrix(0.228815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228815,0.000000,0.000000,0.250000,0,0);}
.m4c_c00278{transform:matrix(0.229195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229195,0.000000,0.000000,0.250000,0,0);}
.mec_c00278{transform:matrix(0.229220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229220,0.000000,0.000000,0.250000,0,0);}
.m93_c00278{transform:matrix(0.229879,-0.001609,0.001750,0.249994,0,0);-ms-transform:matrix(0.229879,-0.001609,0.001750,0.249994,0,0);-webkit-transform:matrix(0.229879,-0.001609,0.001750,0.249994,0,0);}
.m134_c00278{transform:matrix(0.229881,-0.001379,0.001500,0.249996,0,0);-ms-transform:matrix(0.229881,-0.001379,0.001500,0.249996,0,0);-webkit-transform:matrix(0.229881,-0.001379,0.001500,0.249996,0,0);}
.mc_c00278{transform:matrix(0.229900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229900,0.000000,0.000000,0.250000,0,0);}
.ma7_c00278{transform:matrix(0.229930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229930,0.000000,0.000000,0.250000,0,0);}
.m142_c00278{transform:matrix(0.230181,-0.001381,0.001500,0.249996,0,0);-ms-transform:matrix(0.230181,-0.001381,0.001500,0.249996,0,0);-webkit-transform:matrix(0.230181,-0.001381,0.001500,0.249996,0,0);}
.m65_c00278{transform:matrix(0.230315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230315,0.000000,0.000000,0.250000,0,0);}
.m13_c00278{transform:matrix(0.230615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230615,0.000000,0.000000,0.250000,0,0);}
.m39_c00278{transform:matrix(0.230735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230735,0.000000,0.000000,0.250000,0,0);}
.me_c00278{transform:matrix(0.230765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230765,0.000000,0.000000,0.250000,0,0);}
.m106_c00278{transform:matrix(0.230770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230770,0.000000,0.000000,0.250000,0,0);}
.m89_c00278{transform:matrix(0.230909,-0.001616,0.001750,0.249994,0,0);-ms-transform:matrix(0.230909,-0.001616,0.001750,0.249994,0,0);-webkit-transform:matrix(0.230909,-0.001616,0.001750,0.249994,0,0);}
.m13f_c00278{transform:matrix(0.231006,-0.001386,0.001500,0.249996,0,0);-ms-transform:matrix(0.231006,-0.001386,0.001500,0.249996,0,0);-webkit-transform:matrix(0.231006,-0.001386,0.001500,0.249996,0,0);}
.mb9_c00278{transform:matrix(0.231045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231045,0.000000,0.000000,0.250000,0,0);}
.m8d_c00278{transform:matrix(0.231059,-0.001617,0.001750,0.249994,0,0);-ms-transform:matrix(0.231059,-0.001617,0.001750,0.249994,0,0);-webkit-transform:matrix(0.231059,-0.001617,0.001750,0.249994,0,0);}
.m32_c00278{transform:matrix(0.231075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231075,0.000000,0.000000,0.250000,0,0);}
.mdf_c00278{transform:matrix(0.231495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231495,0.000000,0.000000,0.250000,0,0);}
.m109_c00278{transform:matrix(0.231620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231620,0.000000,0.000000,0.250000,0,0);}
.m48_c00278{transform:matrix(0.232105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232105,0.000000,0.000000,0.250000,0,0);}
.mfb_c00278{transform:matrix(0.232335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232335,0.000000,0.000000,0.250000,0,0);}
.m60_c00278{transform:matrix(0.232540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232540,0.000000,0.000000,0.250000,0,0);}
.mf0_c00278{transform:matrix(0.232570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232570,0.000000,0.000000,0.250000,0,0);}
.m143_c00278{transform:matrix(0.232761,-0.001397,0.001500,0.249996,0,0);-ms-transform:matrix(0.232761,-0.001397,0.001500,0.249996,0,0);-webkit-transform:matrix(0.232761,-0.001397,0.001500,0.249996,0,0);}
.m2a_c00278{transform:matrix(0.232805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232805,0.000000,0.000000,0.250000,0,0);}
.mce_c00278{transform:matrix(0.233065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233065,0.000000,0.000000,0.250000,0,0);}
.m59_c00278{transform:matrix(0.233160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233160,0.000000,0.000000,0.250000,0,0);}
.ma4_c00278{transform:matrix(0.233570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233570,0.000000,0.000000,0.250000,0,0);}
.med_c00278{transform:matrix(0.233685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233685,0.000000,0.000000,0.250000,0,0);}
.md_c00278{transform:matrix(0.233755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233755,0.000000,0.000000,0.250000,0,0);}
.m12e_c00278{transform:matrix(0.233882,-0.001169,0.001250,0.249997,0,0);-ms-transform:matrix(0.233882,-0.001169,0.001250,0.249997,0,0);-webkit-transform:matrix(0.233882,-0.001169,0.001250,0.249997,0,0);}
.m64_c00278{transform:matrix(0.234260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234260,0.000000,0.000000,0.250000,0,0);}
.m131_c00278{transform:matrix(0.235101,-0.001411,0.001500,0.249996,0,0);-ms-transform:matrix(0.235101,-0.001411,0.001500,0.249996,0,0);-webkit-transform:matrix(0.235101,-0.001411,0.001500,0.249996,0,0);}
.m88_c00278{transform:matrix(0.235384,-0.001648,0.001750,0.249994,0,0);-ms-transform:matrix(0.235384,-0.001648,0.001750,0.249994,0,0);-webkit-transform:matrix(0.235384,-0.001648,0.001750,0.249994,0,0);}
.me7_c00278{transform:matrix(0.235435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235435,0.000000,0.000000,0.250000,0,0);}
.ma1_c00278{transform:matrix(0.235585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235585,0.000000,0.000000,0.250000,0,0);}
.m10a_c00278{transform:matrix(0.236120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236120,0.000000,0.000000,0.250000,0,0);}
.m77_c00278{transform:matrix(0.236130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236130,0.000000,0.000000,0.250000,0,0);}
.m4e_c00278{transform:matrix(0.236210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236210,0.000000,0.000000,0.250000,0,0);}
.m66_c00278{transform:matrix(0.236315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236315,0.000000,0.000000,0.250000,0,0);}
.maa_c00278{transform:matrix(0.236365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236365,0.000000,0.000000,0.250000,0,0);}
.mc7_c00278{transform:matrix(0.236505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236505,0.000000,0.000000,0.250000,0,0);}
.m3b_c00278{transform:matrix(0.236655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236655,0.000000,0.000000,0.250000,0,0);}
.m22_c00278{transform:matrix(0.236945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236945,0.000000,0.000000,0.250000,0,0);}
.mc5_c00278{transform:matrix(0.237330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237330,0.000000,0.000000,0.250000,0,0);}
.mea_c00278{transform:matrix(0.237470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237470,0.000000,0.000000,0.250000,0,0);}
.m8c_c00278{transform:matrix(0.237584,-0.001663,0.001750,0.249994,0,0);-ms-transform:matrix(0.237584,-0.001663,0.001750,0.249994,0,0);-webkit-transform:matrix(0.237584,-0.001663,0.001750,0.249994,0,0);}
.mca_c00278{transform:matrix(0.237640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237640,0.000000,0.000000,0.250000,0,0);}
.m138_c00278{transform:matrix(0.237771,-0.001427,0.001500,0.249996,0,0);-ms-transform:matrix(0.237771,-0.001427,0.001500,0.249996,0,0);-webkit-transform:matrix(0.237771,-0.001427,0.001500,0.249996,0,0);}
.m63_c00278{transform:matrix(0.237785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237785,0.000000,0.000000,0.250000,0,0);}
.m4a_c00278{transform:matrix(0.238220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238220,0.000000,0.000000,0.250000,0,0);}
.m54_c00278{transform:matrix(0.238225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238225,0.000000,0.000000,0.250000,0,0);}
.m8a_c00278{transform:matrix(0.238294,-0.001668,0.001750,0.249994,0,0);-ms-transform:matrix(0.238294,-0.001668,0.001750,0.249994,0,0);-webkit-transform:matrix(0.238294,-0.001668,0.001750,0.249994,0,0);}
.m107_c00278{transform:matrix(0.238440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238440,0.000000,0.000000,0.250000,0,0);}
.m28_c00278{transform:matrix(0.238445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238445,0.000000,0.000000,0.250000,0,0);}
.m12b_c00278{transform:matrix(0.238642,-0.001193,0.001250,0.249997,0,0);-ms-transform:matrix(0.238642,-0.001193,0.001250,0.249997,0,0);-webkit-transform:matrix(0.238642,-0.001193,0.001250,0.249997,0,0);}
.ma9_c00278{transform:matrix(0.239035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239035,0.000000,0.000000,0.250000,0,0);}
.mcb_c00278{transform:matrix(0.239070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239070,0.000000,0.000000,0.250000,0,0);}
.mf9_c00278{transform:matrix(0.239355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239355,0.000000,0.000000,0.250000,0,0);}
.m82_c00278{transform:matrix(0.239549,-0.001677,0.001750,0.249994,0,0);-ms-transform:matrix(0.239549,-0.001677,0.001750,0.249994,0,0);-webkit-transform:matrix(0.239549,-0.001677,0.001750,0.249994,0,0);}
.mab_c00278{transform:matrix(0.239560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239560,0.000000,0.000000,0.250000,0,0);}
.md3_c00278{transform:matrix(0.239650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239650,0.000000,0.000000,0.250000,0,0);}
.m102_c00278{transform:matrix(0.239670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239670,0.000000,0.000000,0.250000,0,0);}
.m38_c00278{transform:matrix(0.239740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239740,0.000000,0.000000,0.250000,0,0);}
.m99_c00278{transform:matrix(0.240289,-0.001682,0.001750,0.249994,0,0);-ms-transform:matrix(0.240289,-0.001682,0.001750,0.249994,0,0);-webkit-transform:matrix(0.240289,-0.001682,0.001750,0.249994,0,0);}
.m10e_c00278{transform:matrix(0.240330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240330,0.000000,0.000000,0.250000,0,0);}
.m31_c00278{transform:matrix(0.240550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240550,0.000000,0.000000,0.250000,0,0);}
.m101_c00278{transform:matrix(0.240670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240670,0.000000,0.000000,0.250000,0,0);}
.m5b_c00278{transform:matrix(0.240710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240710,0.000000,0.000000,0.250000,0,0);}
.mf5_c00278{transform:matrix(0.241070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241070,0.000000,0.000000,0.250000,0,0);}
.m12d_c00278{transform:matrix(0.241077,-0.001205,0.001250,0.249997,0,0);-ms-transform:matrix(0.241077,-0.001205,0.001250,0.249997,0,0);-webkit-transform:matrix(0.241077,-0.001205,0.001250,0.249997,0,0);}
.m3c_c00278{transform:matrix(0.241120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241120,0.000000,0.000000,0.250000,0,0);}
.m46_c00278{transform:matrix(0.241260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241260,0.000000,0.000000,0.250000,0,0);}
.m12a_c00278{transform:matrix(0.241362,-0.001207,0.001250,0.249997,0,0);-ms-transform:matrix(0.241362,-0.001207,0.001250,0.249997,0,0);-webkit-transform:matrix(0.241362,-0.001207,0.001250,0.249997,0,0);}
.m5_c00278{transform:matrix(0.241540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241540,0.000000,0.000000,0.250000,0,0);}
.m62_c00278{transform:matrix(0.241805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241805,0.000000,0.000000,0.250000,0,0);}
.m72_c00278{transform:matrix(0.241995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241995,0.000000,0.000000,0.250000,0,0);}
.me0_c00278{transform:matrix(0.242180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242180,0.000000,0.000000,0.250000,0,0);}
.m74_c00278{transform:matrix(0.242475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242475,0.000000,0.000000,0.250000,0,0);}
.m6c_c00278{transform:matrix(0.242745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242745,0.000000,0.000000,0.250000,0,0);}
.m7b_c00278{transform:matrix(0.243035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243035,0.000000,0.000000,0.250000,0,0);}
.m85_c00278{transform:matrix(0.243044,-0.001701,0.001750,0.249994,0,0);-ms-transform:matrix(0.243044,-0.001701,0.001750,0.249994,0,0);-webkit-transform:matrix(0.243044,-0.001701,0.001750,0.249994,0,0);}
.mf7_c00278{transform:matrix(0.243260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243260,0.000000,0.000000,0.250000,0,0);}
.m6b_c00278{transform:matrix(0.243515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243515,0.000000,0.000000,0.250000,0,0);}
.mf1_c00278{transform:matrix(0.243790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243790,0.000000,0.000000,0.250000,0,0);}
.m10c_c00278{transform:matrix(0.244005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244005,0.000000,0.000000,0.250000,0,0);}
.mf_c00278{transform:matrix(0.244060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244060,0.000000,0.000000,0.250000,0,0);}
.mcc_c00278{transform:matrix(0.244090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244090,0.000000,0.000000,0.250000,0,0);}
.me4_c00278{transform:matrix(0.244335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244335,0.000000,0.000000,0.250000,0,0);}
.m57_c00278{transform:matrix(0.244560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244560,0.000000,0.000000,0.250000,0,0);}
.m27_c00278{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.mb8_c00278{transform:matrix(0.244770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244770,0.000000,0.000000,0.250000,0,0);}
.m9a_c00278{transform:matrix(0.244819,-0.001714,0.001750,0.249994,0,0);-ms-transform:matrix(0.244819,-0.001714,0.001750,0.249994,0,0);-webkit-transform:matrix(0.244819,-0.001714,0.001750,0.249994,0,0);}
.m2e_c00278{transform:matrix(0.244930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244930,0.000000,0.000000,0.250000,0,0);}
.m1c_c00278{transform:matrix(0.245015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245015,0.000000,0.000000,0.250000,0,0);}
.m13c_c00278{transform:matrix(0.245371,-0.001472,0.001500,0.249996,0,0);-ms-transform:matrix(0.245371,-0.001472,0.001500,0.249996,0,0);-webkit-transform:matrix(0.245371,-0.001472,0.001500,0.249996,0,0);}
.m51_c00278{transform:matrix(0.245405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245405,0.000000,0.000000,0.250000,0,0);}
.m91_c00278{transform:matrix(0.245954,-0.001722,0.001750,0.249994,0,0);-ms-transform:matrix(0.245954,-0.001722,0.001750,0.249994,0,0);-webkit-transform:matrix(0.245954,-0.001722,0.001750,0.249994,0,0);}
.mc8_c00278{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.me9_c00278{transform:matrix(0.246120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246120,0.000000,0.000000,0.250000,0,0);}
.m108_c00278{transform:matrix(0.246305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246305,0.000000,0.000000,0.250000,0,0);}
.m50_c00278{transform:matrix(0.246550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246550,0.000000,0.000000,0.250000,0,0);}
.m3d_c00278{transform:matrix(0.246935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246935,0.000000,0.000000,0.250000,0,0);}
.mad_c00278{transform:matrix(0.246945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246945,0.000000,0.000000,0.250000,0,0);}
.m18_c00278{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m129_c00278{transform:matrix(0.247372,-0.001237,0.001250,0.249997,0,0);-ms-transform:matrix(0.247372,-0.001237,0.001250,0.249997,0,0);-webkit-transform:matrix(0.247372,-0.001237,0.001250,0.249997,0,0);}
.m4b_c00278{transform:matrix(0.247395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247395,0.000000,0.000000,0.250000,0,0);}
.m83_c00278{transform:matrix(0.247454,-0.001732,0.001750,0.249994,0,0);-ms-transform:matrix(0.247454,-0.001732,0.001750,0.249994,0,0);-webkit-transform:matrix(0.247454,-0.001732,0.001750,0.249994,0,0);}
.ma2_c00278{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.mcd_c00278{transform:matrix(0.247520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247520,0.000000,0.000000,0.250000,0,0);}
.m10b_c00278{transform:matrix(0.247550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247550,0.000000,0.000000,0.250000,0,0);}
.mbe_c00278{transform:matrix(0.247685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247685,0.000000,0.000000,0.250000,0,0);}
.m49_c00278{transform:matrix(0.248340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248340,0.000000,0.000000,0.250000,0,0);}
.mae_c00278{transform:matrix(0.248370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248370,0.000000,0.000000,0.250000,0,0);}
.mb4_c00278{transform:matrix(0.248405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248405,0.000000,0.000000,0.250000,0,0);}
.m7c_c00278{transform:matrix(0.248445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248445,0.000000,0.000000,0.250000,0,0);}
.m9e_c00278{transform:matrix(0.248555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248555,0.000000,0.000000,0.250000,0,0);}
.m100_c00278{transform:matrix(0.248635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248635,0.000000,0.000000,0.250000,0,0);}
.me3_c00278{transform:matrix(0.248835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248835,0.000000,0.000000,0.250000,0,0);}
.mfa_c00278{transform:matrix(0.249140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249140,0.000000,0.000000,0.250000,0,0);}
.m68_c00278{transform:matrix(0.249370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249370,0.000000,0.000000,0.250000,0,0);}
.m10f_c00278{transform:matrix(0.249485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249485,0.000000,0.000000,0.250000,0,0);}
.m2d_c00278{transform:matrix(0.249895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249895,0.000000,0.000000,0.250000,0,0);}
.md0_c00278{transform:matrix(0.250285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250285,0.000000,0.000000,0.250000,0,0);}
.m7a_c00278{transform:matrix(0.250690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250690,0.000000,0.000000,0.250000,0,0);}
.m40_c00278{transform:matrix(0.250830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250830,0.000000,0.000000,0.250000,0,0);}
.m76_c00278{transform:matrix(0.250950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250950,0.000000,0.000000,0.250000,0,0);}
.m127_c00278{transform:matrix(0.251057,-0.001255,0.001250,0.249997,0,0);-ms-transform:matrix(0.251057,-0.001255,0.001250,0.249997,0,0);-webkit-transform:matrix(0.251057,-0.001255,0.001250,0.249997,0,0);}
.m23_c00278{transform:matrix(0.251090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251090,0.000000,0.000000,0.250000,0,0);}
.mfd_c00278{transform:matrix(0.251180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251180,0.000000,0.000000,0.250000,0,0);}
.mbc_c00278{transform:matrix(0.251695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251695,0.000000,0.000000,0.250000,0,0);}
.ma6_c00278{transform:matrix(0.251730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251730,0.000000,0.000000,0.250000,0,0);}
.m1f_c00278{transform:matrix(0.252040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252040,0.000000,0.000000,0.250000,0,0);}
.mcf_c00278{transform:matrix(0.252415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252415,0.000000,0.000000,0.250000,0,0);}
.m9b_c00278{transform:matrix(0.252624,-0.001768,0.001750,0.249994,0,0);-ms-transform:matrix(0.252624,-0.001768,0.001750,0.249994,0,0);-webkit-transform:matrix(0.252624,-0.001768,0.001750,0.249994,0,0);}
.me6_c00278{transform:matrix(0.253135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253135,0.000000,0.000000,0.250000,0,0);}
.m9f_c00278{transform:matrix(0.253195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253195,0.000000,0.000000,0.250000,0,0);}
.m11_c00278{transform:matrix(0.253595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253595,0.000000,0.000000,0.250000,0,0);}
.mc4_c00278{transform:matrix(0.254070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254070,0.000000,0.000000,0.250000,0,0);}
.m86_c00278{transform:matrix(0.254079,-0.001779,0.001750,0.249994,0,0);-ms-transform:matrix(0.254079,-0.001779,0.001750,0.249994,0,0);-webkit-transform:matrix(0.254079,-0.001779,0.001750,0.249994,0,0);}
.m10d_c00278{transform:matrix(0.254660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254660,0.000000,0.000000,0.250000,0,0);}
.m14_c00278{transform:matrix(0.254845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254845,0.000000,0.000000,0.250000,0,0);}
.ma3_c00278{transform:matrix(0.255295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255295,0.000000,0.000000,0.250000,0,0);}
.meb_c00278{transform:matrix(0.255540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255540,0.000000,0.000000,0.250000,0,0);}
.m43_c00278{transform:matrix(0.255865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255865,0.000000,0.000000,0.250000,0,0);}
.md4_c00278{transform:matrix(0.256115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256115,0.000000,0.000000,0.250000,0,0);}
.mff_c00278{transform:matrix(0.256690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256690,0.000000,0.000000,0.250000,0,0);}
.m24_c00278{transform:matrix(0.257875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257875,0.000000,0.000000,0.250000,0,0);}
.m71_c00278{transform:matrix(0.258630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258630,0.000000,0.000000,0.250000,0,0);}
.m7d_c00278{transform:matrix(0.259380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259380,0.000000,0.000000,0.250000,0,0);}
.m9c_c00278{transform:matrix(0.260134,-0.001821,0.001750,0.249994,0,0);-ms-transform:matrix(0.260134,-0.001821,0.001750,0.249994,0,0);-webkit-transform:matrix(0.260134,-0.001821,0.001750,0.249994,0,0);}
.m73_c00278{transform:matrix(0.261025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261025,0.000000,0.000000,0.250000,0,0);}
.mf3_c00278{transform:matrix(0.261705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261705,0.000000,0.000000,0.250000,0,0);}
.m6d_c00278{transform:matrix(0.261710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261710,0.000000,0.000000,0.250000,0,0);}
.m70_c00278{transform:matrix(0.261945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261945,0.000000,0.000000,0.250000,0,0);}
.m98_c00278{transform:matrix(0.264014,-0.001848,0.001750,0.249994,0,0);-ms-transform:matrix(0.264014,-0.001848,0.001750,0.249994,0,0);-webkit-transform:matrix(0.264014,-0.001848,0.001750,0.249994,0,0);}
.m145_c00278{transform:matrix(0.265065,-0.001590,0.001500,0.249996,0,0);-ms-transform:matrix(0.265065,-0.001590,0.001500,0.249996,0,0);-webkit-transform:matrix(0.265065,-0.001590,0.001500,0.249996,0,0);}
.m79_c00278{transform:matrix(0.266130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266130,0.000000,0.000000,0.250000,0,0);}
.mbb_c00278{transform:matrix(0.266690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266690,0.000000,0.000000,0.250000,0,0);}
.m17_c00278{transform:matrix(0.269220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269220,0.000000,0.000000,0.250000,0,0);}
.m7f_c00278{transform:matrix(0.270170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270170,0.000000,0.000000,0.250000,0,0);}
.m1_c00278{transform:matrix(0.272335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272335,0.000000,0.000000,0.250000,0,0);}
.m96_c00278{transform:matrix(0.272423,-0.001907,0.001750,0.249994,0,0);-ms-transform:matrix(0.272423,-0.001907,0.001750,0.249994,0,0);-webkit-transform:matrix(0.272423,-0.001907,0.001750,0.249994,0,0);}
.mba_c00278{transform:matrix(0.272865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272865,0.000000,0.000000,0.250000,0,0);}
.mbf_c00278{transform:matrix(0.274280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274280,0.000000,0.000000,0.250000,0,0);}
.mc2_c00278{transform:matrix(0.278435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278435,0.000000,0.000000,0.250000,0,0);}
.mbd_c00278{transform:matrix(0.279070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279070,0.000000,0.000000,0.250000,0,0);}
.m6e_c00278{transform:matrix(0.281815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281815,0.000000,0.000000,0.250000,0,0);}
.mc1_c00278{transform:matrix(0.286630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286630,0.000000,0.000000,0.250000,0,0);}
.m80_c00278{transform:matrix(0.288065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288065,0.000000,0.000000,0.250000,0,0);}
.mee_c00278{transform:matrix(0.303515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303515,0.000000,0.000000,0.250000,0,0);}
.mb3_c00278{transform:matrix(0.313750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313750,0.000000,0.000000,0.250000,0,0);}
.mef_c00278{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m146_c00278{transform:matrix(0.334279,-0.002006,0.001500,0.249996,0,0);-ms-transform:matrix(0.334279,-0.002006,0.001500,0.249996,0,0);-webkit-transform:matrix(0.334279,-0.002006,0.001500,0.249996,0,0);}
.md1_c00278{transform:matrix(0.339445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339445,0.000000,0.000000,0.250000,0,0);}
.md2_c00278{transform:matrix(0.342710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342710,0.000000,0.000000,0.250000,0,0);}
.mc0_c00278{transform:matrix(0.405390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405390,0.000000,0.000000,0.250000,0,0);}
.m16_c00278{transform:matrix(0.435770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435770,0.000000,0.000000,0.250000,0,0);}
.v0_c00278{vertical-align:0.000000px;}
.ls0_c00278{letter-spacing:0.000000px;}
.sc__c00278{text-shadow:none;}
.sc0_c00278{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__c00278{-webkit-text-stroke:0px transparent;}
.sc0_c00278{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00278{word-spacing:0.000000px;}
.fc0_c00278{color:transparent;}
.fs3_c00278{font-size:72.000000px;}
.fs6_c00278{font-size:72.001764px;}
.fs2_c00278{font-size:78.000000px;}
.fsa_c00278{font-size:78.000975px;}
.fs4_c00278{font-size:78.001911px;}
.fs1_c00278{font-size:84.000000px;}
.fsb_c00278{font-size:84.001512px;}
.fs5_c00278{font-size:84.002058px;}
.fs7_c00278{font-size:90.000000px;}
.fs9_c00278{font-size:90.001125px;}
.fs0_c00278{font-size:96.000000px;}
.fs8_c00278{font-size:108.000000px;}
.y0_c00278{bottom:0.000000px;}
.y135_c00278{bottom:72.510639px;}
.y134_c00278{bottom:72.510888px;}
.y131_c00278{bottom:72.510906px;}
.y130_c00278{bottom:72.510975px;}
.y133_c00278{bottom:72.511188px;}
.y132_c00278{bottom:72.511317px;}
.y12f_c00278{bottom:72.511395px;}
.y12e_c00278{bottom:72.511824px;}
.y12d_c00278{bottom:72.512013px;}
.y12b_c00278{bottom:72.512322px;}
.y12c_c00278{bottom:72.512373px;}
.y11f_c00278{bottom:103.680000px;}
.y120_c00278{bottom:103.801518px;}
.y121_c00278{bottom:104.387940px;}
.y122_c00278{bottom:104.588820px;}
.y123_c00278{bottom:104.786469px;}
.y124_c00278{bottom:105.249753px;}
.y125_c00278{bottom:105.645024px;}
.y126_c00278{bottom:105.907518px;}
.y127_c00278{bottom:106.102161px;}
.y128_c00278{bottom:106.503651px;}
.y129_c00278{bottom:106.702974px;}
.y12a_c00278{bottom:106.965360px;}
.y116_c00278{bottom:134.730585px;}
.y117_c00278{bottom:135.708240px;}
.y118_c00278{bottom:136.154505px;}
.y119_c00278{bottom:136.916063px;}
.y11a_c00278{bottom:137.683628px;}
.y11b_c00278{bottom:138.127027px;}
.y11c_c00278{bottom:138.453893px;}
.y11d_c00278{bottom:139.239720px;}
.y11e_c00278{bottom:140.011320px;}
.y10b_c00278{bottom:167.940000px;}
.y10c_c00278{bottom:168.103493px;}
.y10d_c00278{bottom:168.600225px;}
.y10e_c00278{bottom:168.823035px;}
.y10f_c00278{bottom:169.373798px;}
.y110_c00278{bottom:169.538520px;}
.y111_c00278{bottom:169.975853px;}
.y112_c00278{bottom:170.195963px;}
.y113_c00278{bottom:170.471362px;}
.y114_c00278{bottom:170.904705px;}
.y115_c00278{bottom:171.074805px;}
.yff_c00278{bottom:198.990000px;}
.y100_c00278{bottom:199.159500px;}
.y101_c00278{bottom:199.323000px;}
.y102_c00278{bottom:199.707000px;}
.y103_c00278{bottom:199.879500px;}
.y104_c00278{bottom:200.419500px;}
.y105_c00278{bottom:200.526000px;}
.y106_c00278{bottom:200.913000px;}
.y107_c00278{bottom:201.244500px;}
.y108_c00278{bottom:201.414000px;}
.y109_c00278{bottom:201.916500px;}
.y10a_c00278{bottom:202.234500px;}
.yf5_c00278{bottom:230.310000px;}
.yf6_c00278{bottom:230.695500px;}
.yf7_c00278{bottom:230.916000px;}
.yf8_c00278{bottom:231.192000px;}
.yf9_c00278{bottom:231.625500px;}
.yfa_c00278{bottom:231.793500px;}
.yfb_c00278{bottom:232.182000px;}
.yfc_c00278{bottom:232.668000px;}
.yfd_c00278{bottom:232.837500px;}
.yfe_c00278{bottom:233.272500px;}
.yea_c00278{bottom:261.358500px;}
.yeb_c00278{bottom:262.021500px;}
.yec_c00278{bottom:262.279500px;}
.yed_c00278{bottom:263.071500px;}
.yee_c00278{bottom:263.598000px;}
.yef_c00278{bottom:263.727000px;}
.yf0_c00278{bottom:264.132000px;}
.yf1_c00278{bottom:264.327000px;}
.yf2_c00278{bottom:264.591000px;}
.yf3_c00278{bottom:264.787500px;}
.yf4_c00278{bottom:265.188000px;}
.ydd_c00278{bottom:292.678500px;}
.yde_c00278{bottom:293.143500px;}
.ydf_c00278{bottom:293.296500px;}
.ye0_c00278{bottom:293.754000px;}
.ye1_c00278{bottom:293.989500px;}
.ye2_c00278{bottom:294.220500px;}
.ye3_c00278{bottom:294.840000px;}
.ye4_c00278{bottom:295.147500px;}
.ye5_c00278{bottom:295.678500px;}
.ye6_c00278{bottom:295.839000px;}
.ye7_c00278{bottom:296.527500px;}
.ye8_c00278{bottom:296.838000px;}
.ye9_c00278{bottom:297.297000px;}
.yd2_c00278{bottom:323.727000px;}
.yd3_c00278{bottom:323.941500px;}
.yd4_c00278{bottom:324.852000px;}
.yd5_c00278{bottom:324.991500px;}
.yd6_c00278{bottom:325.383000px;}
.yd7_c00278{bottom:326.317500px;}
.yd8_c00278{bottom:326.436000px;}
.yd9_c00278{bottom:326.764500px;}
.yda_c00278{bottom:327.163500px;}
.ydb_c00278{bottom:327.559500px;}
.ydc_c00278{bottom:327.757500px;}
.yc5_c00278{bottom:355.858500px;}
.yc6_c00278{bottom:356.125500px;}
.yc7_c00278{bottom:356.391000px;}
.yc8_c00278{bottom:356.781000px;}
.yc9_c00278{bottom:356.982000px;}
.yca_c00278{bottom:357.180000px;}
.ycb_c00278{bottom:357.709500px;}
.ycc_c00278{bottom:357.898500px;}
.ycd_c00278{bottom:358.237500px;}
.yce_c00278{bottom:358.441500px;}
.ycf_c00278{bottom:359.281500px;}
.yd0_c00278{bottom:359.421000px;}
.yd1_c00278{bottom:359.619000px;}
.ybc_c00278{bottom:387.178500px;}
.ybd_c00278{bottom:388.150500px;}
.ybe_c00278{bottom:388.846500px;}
.ybf_c00278{bottom:389.719500px;}
.yc0_c00278{bottom:389.892000px;}
.yc1_c00278{bottom:390.687000px;}
.yc2_c00278{bottom:390.870000px;}
.yc3_c00278{bottom:391.219500px;}
.yc4_c00278{bottom:392.181000px;}
.yb2_c00278{bottom:419.307000px;}
.yb3_c00278{bottom:419.533500px;}
.yb4_c00278{bottom:420.142500px;}
.yb5_c00278{bottom:420.450000px;}
.yb6_c00278{bottom:420.988500px;}
.yb7_c00278{bottom:421.299000px;}
.yb8_c00278{bottom:422.067000px;}
.yb9_c00278{bottom:422.538000px;}
.yba_c00278{bottom:422.692500px;}
.ybb_c00278{bottom:423.303000px;}
.ya6_c00278{bottom:451.710000px;}
.ya7_c00278{bottom:451.914000px;}
.ya8_c00278{bottom:452.503500px;}
.ya9_c00278{bottom:452.764500px;}
.yaa_c00278{bottom:453.097500px;}
.yab_c00278{bottom:453.295500px;}
.yac_c00278{bottom:453.700500px;}
.yad_c00278{bottom:454.212000px;}
.yae_c00278{bottom:454.422000px;}
.yaf_c00278{bottom:454.753500px;}
.yb0_c00278{bottom:455.263500px;}
.yb1_c00278{bottom:455.596500px;}
.y9b_c00278{bottom:483.841500px;}
.y9c_c00278{bottom:484.047000px;}
.y9d_c00278{bottom:484.243500px;}
.y9e_c00278{bottom:484.837500px;}
.y9f_c00278{bottom:485.295000px;}
.ya0_c00278{bottom:485.557500px;}
.ya1_c00278{bottom:486.150000px;}
.ya2_c00278{bottom:486.421500px;}
.ya3_c00278{bottom:487.011000px;}
.ya4_c00278{bottom:487.612500px;}
.ya5_c00278{bottom:487.863000px;}
.y92_c00278{bottom:512.463000px;}
.y93_c00278{bottom:513.567000px;}
.y94_c00278{bottom:514.663500px;}
.y95_c00278{bottom:515.011500px;}
.y96_c00278{bottom:515.983500px;}
.y97_c00278{bottom:516.882000px;}
.y98_c00278{bottom:517.203000px;}
.y99_c00278{bottom:517.534500px;}
.y9a_c00278{bottom:518.407500px;}
.y91_c00278{bottom:548.578500px;}
.y90_c00278{bottom:579.718500px;}
.y8e_c00278{bottom:609.969069px;}
.y8d_c00278{bottom:609.969470px;}
.y8c_c00278{bottom:609.969630px;}
.y8f_c00278{bottom:609.969688px;}
.y89_c00278{bottom:609.969691px;}
.y8b_c00278{bottom:609.970061px;}
.y8a_c00278{bottom:609.970431px;}
.y7e_c00278{bottom:640.438836px;}
.y7f_c00278{bottom:640.579044px;}
.y80_c00278{bottom:641.102430px;}
.y81_c00278{bottom:641.627832px;}
.y82_c00278{bottom:641.837006px;}
.y83_c00278{bottom:642.099811px;}
.y84_c00278{bottom:642.554433px;}
.y85_c00278{bottom:643.415892px;}
.y86_c00278{bottom:643.615425px;}
.y87_c00278{bottom:644.077428px;}
.y88_c00278{bottom:644.270859px;}
.y74_c00278{bottom:672.840000px;}
.y75_c00278{bottom:673.148080px;}
.y76_c00278{bottom:673.539300px;}
.y77_c00278{bottom:674.142252px;}
.y78_c00278{bottom:674.382272px;}
.y79_c00278{bottom:674.921005px;}
.y7a_c00278{bottom:675.610677px;}
.y7b_c00278{bottom:675.841289px;}
.y7c_c00278{bottom:676.296758px;}
.y7d_c00278{bottom:676.457439px;}
.y6a_c00278{bottom:703.618500px;}
.y6b_c00278{bottom:703.815000px;}
.y6c_c00278{bottom:704.268000px;}
.y6d_c00278{bottom:704.538000px;}
.y6e_c00278{bottom:705.001500px;}
.y6f_c00278{bottom:705.256500px;}
.y70_c00278{bottom:705.519000px;}
.y71_c00278{bottom:705.919500px;}
.y72_c00278{bottom:706.059000px;}
.y73_c00278{bottom:706.705500px;}
.y5e_c00278{bottom:736.020000px;}
.y5f_c00278{bottom:736.221000px;}
.y60_c00278{bottom:736.689000px;}
.y61_c00278{bottom:737.545500px;}
.y62_c00278{bottom:737.746500px;}
.y63_c00278{bottom:738.138000px;}
.y64_c00278{bottom:738.528000px;}
.y65_c00278{bottom:738.732000px;}
.y66_c00278{bottom:739.318500px;}
.y67_c00278{bottom:739.458000px;}
.y68_c00278{bottom:739.657500px;}
.y69_c00278{bottom:739.984500px;}
.y51_c00278{bottom:767.070000px;}
.y52_c00278{bottom:767.466000px;}
.y53_c00278{bottom:767.959500px;}
.y54_c00278{bottom:768.460500px;}
.y55_c00278{bottom:768.946500px;}
.y56_c00278{bottom:769.542000px;}
.y57_c00278{bottom:769.941000px;}
.y58_c00278{bottom:770.529000px;}
.y59_c00278{bottom:770.728500px;}
.y5a_c00278{bottom:771.025500px;}
.y5b_c00278{bottom:771.916500px;}
.y5c_c00278{bottom:772.207500px;}
.y5d_c00278{bottom:772.615500px;}
.y45_c00278{bottom:799.740000px;}
.y46_c00278{bottom:799.972500px;}
.y47_c00278{bottom:800.280000px;}
.y48_c00278{bottom:801.118500px;}
.y49_c00278{bottom:801.276000px;}
.y4a_c00278{bottom:802.272000px;}
.y4b_c00278{bottom:802.510500px;}
.y4c_c00278{bottom:802.911000px;}
.y4d_c00278{bottom:803.128500px;}
.y4e_c00278{bottom:803.433000px;}
.y4f_c00278{bottom:804.117000px;}
.y50_c00278{bottom:804.348000px;}
.y37_c00278{bottom:832.138500px;}
.y38_c00278{bottom:832.485000px;}
.y39_c00278{bottom:832.600500px;}
.y3a_c00278{bottom:832.869000px;}
.y3b_c00278{bottom:833.065500px;}
.y3c_c00278{bottom:833.455500px;}
.y3d_c00278{bottom:833.653500px;}
.y3e_c00278{bottom:834.054000px;}
.y3f_c00278{bottom:834.510000px;}
.y40_c00278{bottom:834.715500px;}
.y41_c00278{bottom:834.913500px;}
.y42_c00278{bottom:835.366500px;}
.y43_c00278{bottom:835.573500px;}
.y44_c00278{bottom:835.767000px;}
.y29_c00278{bottom:862.110000px;}
.y2a_c00278{bottom:862.287000px;}
.y2b_c00278{bottom:862.818000px;}
.y2c_c00278{bottom:863.082000px;}
.y2d_c00278{bottom:863.353500px;}
.y2e_c00278{bottom:864.052500px;}
.y2f_c00278{bottom:864.316500px;}
.y30_c00278{bottom:864.582000px;}
.y31_c00278{bottom:865.450500px;}
.y32_c00278{bottom:865.716000px;}
.y33_c00278{bottom:865.981500px;}
.y34_c00278{bottom:866.506500px;}
.y35_c00278{bottom:866.683500px;}
.y36_c00278{bottom:867.124500px;}
.y1e_c00278{bottom:893.431500px;}
.y1f_c00278{bottom:894.306000px;}
.y20_c00278{bottom:894.840000px;}
.y21_c00278{bottom:895.105500px;}
.y22_c00278{bottom:895.543500px;}
.y23_c00278{bottom:896.089500px;}
.y24_c00278{bottom:896.245500px;}
.y25_c00278{bottom:896.589000px;}
.y26_c00278{bottom:897.493500px;}
.y27_c00278{bottom:897.651000px;}
.y28_c00278{bottom:897.994500px;}
.y1d_c00278{bottom:928.627500px;}
.y1c_c00278{bottom:956.986500px;}
.yf_c00278{bottom:987.661500px;}
.y10_c00278{bottom:988.192500px;}
.y11_c00278{bottom:988.540500px;}
.y12_c00278{bottom:988.888500px;}
.y13_c00278{bottom:989.152500px;}
.y14_c00278{bottom:989.767500px;}
.y15_c00278{bottom:990.037500px;}
.y16_c00278{bottom:990.382500px;}
.y17_c00278{bottom:991.182000px;}
.y18_c00278{bottom:991.525500px;}
.y19_c00278{bottom:991.795500px;}
.y1a_c00278{bottom:992.053500px;}
.y1b_c00278{bottom:992.494500px;}
.y3_c00278{bottom:1019.791500px;}
.y4_c00278{bottom:1019.995500px;}
.y5_c00278{bottom:1020.256500px;}
.y6_c00278{bottom:1020.520500px;}
.y7_c00278{bottom:1020.919500px;}
.y8_c00278{bottom:1021.057500px;}
.y9_c00278{bottom:1021.644000px;}
.ya_c00278{bottom:1021.846500px;}
.yb_c00278{bottom:1022.236500px;}
.yc_c00278{bottom:1022.832000px;}
.yd_c00278{bottom:1023.028500px;}
.ye_c00278{bottom:1023.753000px;}
.y2_c00278{bottom:1054.299000px;}
.y1_c00278{bottom:1120.494000px;}
.h5_c00278{height:72.000000px;}
.h8_c00278{height:72.001764px;}
.h4_c00278{height:78.000000px;}
.hc_c00278{height:78.000975px;}
.h6_c00278{height:78.001911px;}
.h3_c00278{height:84.000000px;}
.hd_c00278{height:84.001512px;}
.h7_c00278{height:84.002058px;}
.h9_c00278{height:90.000000px;}
.hb_c00278{height:90.001125px;}
.h2_c00278{height:96.000000px;}
.ha_c00278{height:108.000000px;}
.h1_c00278{height:1165.500000px;}
.h0_c00278{height:1165.800000px;}
.w0_c00278{width:915.000000px;}
.x0_c00278{left:0.000000px;}
.xd_c00278{left:151.830000px;}
.x2d_c00278{left:153.759000px;}
.x50_c00278{left:155.106000px;}
.x62_c00278{left:156.408000px;}
.x93_c00278{left:157.501500px;}
.xb5_c00278{left:158.838000px;}
.xc8_c00278{left:160.267073px;}
.x35_c00278{left:175.083000px;}
.x6a_c00278{left:178.019529px;}
.xe_c00278{left:185.830500px;}
.x49_c00278{left:187.750500px;}
.x63_c00278{left:189.090000px;}
.x8a_c00278{left:190.711500px;}
.xa3_c00278{left:192.351000px;}
.x51_c00278{left:199.141500px;}
.x9d_c00278{left:201.225000px;}
.x79_c00278{left:210.330000px;}
.x41_c00278{left:211.506000px;}
.x19_c00278{left:219.063000px;}
.x84_c00278{left:222.567000px;}
.xaa_c00278{left:223.642500px;}
.xbb_c00278{left:224.716500px;}
.xf_c00278{left:229.323000px;}
.x42_c00278{left:230.667000px;}
.x4a_c00278{left:231.763500px;}
.xb6_c00278{left:236.040000px;}
.x36_c00278{left:241.473000px;}
.x70_c00278{left:244.078016px;}
.x7a_c00278{left:245.160000px;}
.x52_c00278{left:253.938000px;}
.xc9_c00278{left:257.995628px;}
.x4_c00278{left:263.520000px;}
.x22_c00278{left:265.140000px;}
.x75_c00278{left:267.840000px;}
.xd8_c00278{left:270.810957px;}
.xcf_c00278{left:271.978500px;}
.x10_c00278{left:273.321000px;}
.x37_c00278{left:274.438500px;}
.x43_c00278{left:275.484000px;}
.x94_c00278{left:276.858000px;}
.x71_c00278{left:278.098185px;}
.x99_c00278{left:279.306000px;}
.x23_c00278{left:284.580000px;}
.x76_c00278{left:288.360000px;}
.xc1_c00278{left:291.129000px;}
.xd0_c00278{left:292.231500px;}
.x5_c00278{left:295.650000px;}
.xbc_c00278{left:301.398000px;}
.xca_c00278{left:302.547510px;}
.xd9_c00278{left:303.752145px;}
.x1a_c00278{left:306.031500px;}
.x38_c00278{left:308.463000px;}
.x53_c00278{left:309.556500px;}
.x9e_c00278{left:310.596000px;}
.x24_c00278{left:318.600000px;}
.x85_c00278{left:321.655500px;}
.x6_c00278{left:327.240000px;}
.x2e_c00278{left:329.764500px;}
.x8b_c00278{left:332.458500px;}
.xb7_c00278{left:335.139000px;}
.x11_c00278{left:339.732000px;}
.x9f_c00278{left:344.068500px;}
.x4b_c00278{left:351.621000px;}
.x6b_c00278{left:352.704747px;}
.x12_c00278{left:362.704500px;}
.x67_c00278{left:365.406000px;}
.xa4_c00278{left:367.290000px;}
.x44_c00278{left:373.204500px;}
.x77_c00278{left:376.110000px;}
.xab_c00278{left:377.568000px;}
.xcb_c00278{left:378.657105px;}
.x64_c00278{left:386.974500px;}
.x8c_c00278{left:388.074000px;}
.xd1_c00278{left:389.968500px;}
.x1_c00278{left:393.660000px;}
.x39_c00278{left:395.911500px;}
.x86_c00278{left:397.791000px;}
.xda_c00278{left:401.224155px;}
.x25_c00278{left:405.270000px;}
.x5a_c00278{left:408.052500px;}
.x72_c00278{left:409.591632px;}
.x2_c00278{left:416.880000px;}
.x7b_c00278{left:419.850000px;}
.x8d_c00278{left:421.009500px;}
.xd2_c00278{left:423.448500px;}
.x26_c00278{left:427.410000px;}
.x3a_c00278{left:428.866500px;}
.x6c_c00278{left:431.273793px;}
.xa5_c00278{left:432.640500px;}
.x5b_c00278{left:441.534000px;}
.xb0_c00278{left:443.160000px;}
.xc2_c00278{left:445.843500px;}
.x3_c00278{left:448.470000px;}
.x1b_c00278{left:449.662500px;}
.x68_c00278{left:451.542000px;}
.x7c_c00278{left:454.410000px;}
.xb8_c00278{left:455.563500px;}
.x13_c00278{left:460.425000px;}
.x3b_c00278{left:462.094500px;}
.x73_c00278{left:463.322768px;}
.xa0_c00278{left:465.295500px;}
.x7_c00278{left:469.800000px;}
.x27_c00278{left:471.420000px;}
.x45_c00278{left:472.854000px;}
.x54_c00278{left:473.992500px;}
.x9a_c00278{left:475.290000px;}
.xc3_c00278{left:478.788000px;}
.x2f_c00278{left:486.135000px;}
.x8e_c00278{left:488.523000px;}
.x1c_c00278{left:492.873000px;}
.x14_c00278{left:494.194500px;}
.x9b_c00278{left:496.914000px;}
.xcc_c00278{left:499.647075px;}
.x30_c00278{left:505.563000px;}
.x5c_c00278{left:506.877000px;}
.x74_c00278{left:508.413473px;}
.xac_c00278{left:510.127500px;}
.x8_c00278{left:514.890000px;}
.x4c_c00278{left:516.345000px;}
.x7d_c00278{left:518.130000px;}
.xb1_c00278{left:530.893500px;}
.xcd_c00278{left:532.319258px;}
.xb9_c00278{left:533.331000px;}
.x28_c00278{left:537.840000px;}
.x55_c00278{left:539.290500px;}
.x87_c00278{left:540.349500px;}
.xbd_c00278{left:542.778000px;}
.xdb_c00278{left:544.326312px;}
.x31_c00278{left:548.490000px;}
.x4d_c00278{left:550.362000px;}
.x95_c00278{left:551.709000px;}
.xa1_c00278{left:553.300500px;}
.x15_c00278{left:559.272000px;}
.x56_c00278{left:561.438000px;}
.x65_c00278{left:563.043000px;}
.xc4_c00278{left:566.254500px;}
.x3c_c00278{left:570.627000px;}
.x5d_c00278{left:571.953000px;}
.x8f_c00278{left:573.835500px;}
.x9_c00278{left:583.200000px;}
.x78_c00278{left:585.360000px;}
.xa2_c00278{left:587.352000px;}
.xa6_c00278{left:588.441000px;}
.x1d_c00278{left:592.747500px;}
.x57_c00278{left:594.406500px;}
.x9c_c00278{left:596.274000px;}
.x80_c00278{left:597.454500px;}
.xd3_c00278{left:599.482500px;}
.xa_c00278{left:602.370000px;}
.x3d_c00278{left:603.846000px;}
.x5e_c00278{left:605.967000px;}
.x4e_c00278{left:607.626000px;}
.x90_c00278{left:608.928000px;}
.xc5_c00278{left:610.276500px;}
.x29_c00278{left:614.790000px;}
.x46_c00278{left:615.963000px;}
.x96_c00278{left:618.964500px;}
.xb2_c00278{left:619.996500px;}
.x7e_c00278{left:628.290000px;}
.x81_c00278{left:629.511000px;}
.xba_c00278{left:630.529500px;}
.x1e_c00278{left:635.697000px;}
.x3e_c00278{left:637.050000px;}
.x4f_c00278{left:638.658000px;}
.x97_c00278{left:641.088000px;}
.xbe_c00278{left:643.219500px;}
.x6d_c00278{left:650.786837px;}
.xb3_c00278{left:652.393500px;}
.x16_c00278{left:658.617000px;}
.x32_c00278{left:661.638000px;}
.x82_c00278{left:662.722500px;}
.x91_c00278{left:664.294500px;}
.xc6_c00278{left:665.356500px;}
.x1f_c00278{left:669.427500px;}
.x66_c00278{left:670.785000px;}
.xd4_c00278{left:675.672000px;}
.x33_c00278{left:681.322500px;}
.x6e_c00278{left:684.006067px;}
.xce_c00278{left:688.100865px;}
.x17_c00278{left:691.395000px;}
.x58_c00278{left:693.471000px;}
.xb4_c00278{left:696.408000px;}
.x20_c00278{left:701.586000px;}
.x3f_c00278{left:702.630000px;}
.x5f_c00278{left:703.692000px;}
.xad_c00278{left:707.212500px;}
.x2a_c00278{left:712.800000px;}
.x34_c00278{left:724.260000px;}
.x47_c00278{left:726.118500px;}
.x98_c00278{left:728.301000px;}
.xa7_c00278{left:729.366000px;}
.xdc_c00278{left:730.630017px;}
.xb_c00278{left:731.700000px;}
.x7f_c00278{left:738.990000px;}
.xd5_c00278{left:742.587000px;}
.xbf_c00278{left:743.667000px;}
.x83_c00278{left:749.950500px;}
.xae_c00278{left:751.513500px;}
.xdd_c00278{left:753.580845px;}
.x21_c00278{left:756.658500px;}
.x48_c00278{left:758.251500px;}
.x60_c00278{left:760.141500px;}
.x59_c00278{left:771.252000px;}
.xd6_c00278{left:775.807500px;}
.xc_c00278{left:777.600000px;}
.x40_c00278{left:779.883000px;}
.x69_c00278{left:782.283000px;}
.x88_c00278{left:784.173000px;}
.xc7_c00278{left:786.045000px;}
.x2b_c00278{left:790.290000px;}
.x6f_c00278{left:793.068824px;}
.xa8_c00278{left:795.244500px;}
.x92_c00278{left:804.945000px;}
.xc0_c00278{left:807.360000px;}
.x18_c00278{left:812.251500px;}
.x61_c00278{left:814.663500px;}
.xaf_c00278{left:817.099500px;}
.xd7_c00278{left:819.538500px;}
.x2c_c00278{left:822.690000px;}
.x89_c00278{left:825.999000px;}
.xa9_c00278{left:828.178500px;}
.xde_c00278{left:840.792486px;}
@media print{
.v0_c00278{vertical-align:0.000000pt;}
.ls0_c00278{letter-spacing:0.000000pt;}
.ws0_c00278{word-spacing:0.000000pt;}
.fs3_c00278{font-size:64.000000pt;}
.fs6_c00278{font-size:64.001568pt;}
.fs2_c00278{font-size:69.333333pt;}
.fsa_c00278{font-size:69.334200pt;}
.fs4_c00278{font-size:69.335032pt;}
.fs1_c00278{font-size:74.666667pt;}
.fsb_c00278{font-size:74.668011pt;}
.fs5_c00278{font-size:74.668496pt;}
.fs7_c00278{font-size:80.000000pt;}
.fs9_c00278{font-size:80.001000pt;}
.fs0_c00278{font-size:85.333333pt;}
.fs8_c00278{font-size:96.000000pt;}
.y0_c00278{bottom:0.000000pt;}
.y135_c00278{bottom:64.453901pt;}
.y134_c00278{bottom:64.454123pt;}
.y131_c00278{bottom:64.454139pt;}
.y130_c00278{bottom:64.454200pt;}
.y133_c00278{bottom:64.454389pt;}
.y132_c00278{bottom:64.454504pt;}
.y12f_c00278{bottom:64.454573pt;}
.y12e_c00278{bottom:64.454955pt;}
.y12d_c00278{bottom:64.455123pt;}
.y12b_c00278{bottom:64.455397pt;}
.y12c_c00278{bottom:64.455443pt;}
.y11f_c00278{bottom:92.160000pt;}
.y120_c00278{bottom:92.268016pt;}
.y121_c00278{bottom:92.789280pt;}
.y122_c00278{bottom:92.967840pt;}
.y123_c00278{bottom:93.143528pt;}
.y124_c00278{bottom:93.555336pt;}
.y125_c00278{bottom:93.906688pt;}
.y126_c00278{bottom:94.140016pt;}
.y127_c00278{bottom:94.313032pt;}
.y128_c00278{bottom:94.669912pt;}
.y129_c00278{bottom:94.847088pt;}
.y12a_c00278{bottom:95.080320pt;}
.y116_c00278{bottom:119.760520pt;}
.y117_c00278{bottom:120.629547pt;}
.y118_c00278{bottom:121.026227pt;}
.y119_c00278{bottom:121.703167pt;}
.y11a_c00278{bottom:122.385447pt;}
.y11b_c00278{bottom:122.779580pt;}
.y11c_c00278{bottom:123.070127pt;}
.y11d_c00278{bottom:123.768640pt;}
.y11e_c00278{bottom:124.454507pt;}
.y10b_c00278{bottom:149.280000pt;}
.y10c_c00278{bottom:149.425327pt;}
.y10d_c00278{bottom:149.866867pt;}
.y10e_c00278{bottom:150.064920pt;}
.y10f_c00278{bottom:150.554487pt;}
.y110_c00278{bottom:150.700907pt;}
.y111_c00278{bottom:151.089647pt;}
.y112_c00278{bottom:151.285300pt;}
.y113_c00278{bottom:151.530100pt;}
.y114_c00278{bottom:151.915293pt;}
.y115_c00278{bottom:152.066493pt;}
.yff_c00278{bottom:176.880000pt;}
.y100_c00278{bottom:177.030667pt;}
.y101_c00278{bottom:177.176000pt;}
.y102_c00278{bottom:177.517333pt;}
.y103_c00278{bottom:177.670667pt;}
.y104_c00278{bottom:178.150667pt;}
.y105_c00278{bottom:178.245333pt;}
.y106_c00278{bottom:178.589333pt;}
.y107_c00278{bottom:178.884000pt;}
.y108_c00278{bottom:179.034667pt;}
.y109_c00278{bottom:179.481333pt;}
.y10a_c00278{bottom:179.764000pt;}
.yf5_c00278{bottom:204.720000pt;}
.yf6_c00278{bottom:205.062667pt;}
.yf7_c00278{bottom:205.258667pt;}
.yf8_c00278{bottom:205.504000pt;}
.yf9_c00278{bottom:205.889333pt;}
.yfa_c00278{bottom:206.038667pt;}
.yfb_c00278{bottom:206.384000pt;}
.yfc_c00278{bottom:206.816000pt;}
.yfd_c00278{bottom:206.966667pt;}
.yfe_c00278{bottom:207.353333pt;}
.yea_c00278{bottom:232.318667pt;}
.yeb_c00278{bottom:232.908000pt;}
.yec_c00278{bottom:233.137333pt;}
.yed_c00278{bottom:233.841333pt;}
.yee_c00278{bottom:234.309333pt;}
.yef_c00278{bottom:234.424000pt;}
.yf0_c00278{bottom:234.784000pt;}
.yf1_c00278{bottom:234.957333pt;}
.yf2_c00278{bottom:235.192000pt;}
.yf3_c00278{bottom:235.366667pt;}
.yf4_c00278{bottom:235.722667pt;}
.ydd_c00278{bottom:260.158667pt;}
.yde_c00278{bottom:260.572000pt;}
.ydf_c00278{bottom:260.708000pt;}
.ye0_c00278{bottom:261.114667pt;}
.ye1_c00278{bottom:261.324000pt;}
.ye2_c00278{bottom:261.529333pt;}
.ye3_c00278{bottom:262.080000pt;}
.ye4_c00278{bottom:262.353333pt;}
.ye5_c00278{bottom:262.825333pt;}
.ye6_c00278{bottom:262.968000pt;}
.ye7_c00278{bottom:263.580000pt;}
.ye8_c00278{bottom:263.856000pt;}
.ye9_c00278{bottom:264.264000pt;}
.yd2_c00278{bottom:287.757333pt;}
.yd3_c00278{bottom:287.948000pt;}
.yd4_c00278{bottom:288.757333pt;}
.yd5_c00278{bottom:288.881333pt;}
.yd6_c00278{bottom:289.229333pt;}
.yd7_c00278{bottom:290.060000pt;}
.yd8_c00278{bottom:290.165333pt;}
.yd9_c00278{bottom:290.457333pt;}
.yda_c00278{bottom:290.812000pt;}
.ydb_c00278{bottom:291.164000pt;}
.ydc_c00278{bottom:291.340000pt;}
.yc5_c00278{bottom:316.318667pt;}
.yc6_c00278{bottom:316.556000pt;}
.yc7_c00278{bottom:316.792000pt;}
.yc8_c00278{bottom:317.138667pt;}
.yc9_c00278{bottom:317.317333pt;}
.yca_c00278{bottom:317.493333pt;}
.ycb_c00278{bottom:317.964000pt;}
.ycc_c00278{bottom:318.132000pt;}
.ycd_c00278{bottom:318.433333pt;}
.yce_c00278{bottom:318.614667pt;}
.ycf_c00278{bottom:319.361333pt;}
.yd0_c00278{bottom:319.485333pt;}
.yd1_c00278{bottom:319.661333pt;}
.ybc_c00278{bottom:344.158667pt;}
.ybd_c00278{bottom:345.022667pt;}
.ybe_c00278{bottom:345.641333pt;}
.ybf_c00278{bottom:346.417333pt;}
.yc0_c00278{bottom:346.570667pt;}
.yc1_c00278{bottom:347.277333pt;}
.yc2_c00278{bottom:347.440000pt;}
.yc3_c00278{bottom:347.750667pt;}
.yc4_c00278{bottom:348.605333pt;}
.yb2_c00278{bottom:372.717333pt;}
.yb3_c00278{bottom:372.918667pt;}
.yb4_c00278{bottom:373.460000pt;}
.yb5_c00278{bottom:373.733333pt;}
.yb6_c00278{bottom:374.212000pt;}
.yb7_c00278{bottom:374.488000pt;}
.yb8_c00278{bottom:375.170667pt;}
.yb9_c00278{bottom:375.589333pt;}
.yba_c00278{bottom:375.726667pt;}
.ybb_c00278{bottom:376.269333pt;}
.ya6_c00278{bottom:401.520000pt;}
.ya7_c00278{bottom:401.701333pt;}
.ya8_c00278{bottom:402.225333pt;}
.ya9_c00278{bottom:402.457333pt;}
.yaa_c00278{bottom:402.753333pt;}
.yab_c00278{bottom:402.929333pt;}
.yac_c00278{bottom:403.289333pt;}
.yad_c00278{bottom:403.744000pt;}
.yae_c00278{bottom:403.930667pt;}
.yaf_c00278{bottom:404.225333pt;}
.yb0_c00278{bottom:404.678667pt;}
.yb1_c00278{bottom:404.974667pt;}
.y9b_c00278{bottom:430.081333pt;}
.y9c_c00278{bottom:430.264000pt;}
.y9d_c00278{bottom:430.438667pt;}
.y9e_c00278{bottom:430.966667pt;}
.y9f_c00278{bottom:431.373333pt;}
.ya0_c00278{bottom:431.606667pt;}
.ya1_c00278{bottom:432.133333pt;}
.ya2_c00278{bottom:432.374667pt;}
.ya3_c00278{bottom:432.898667pt;}
.ya4_c00278{bottom:433.433333pt;}
.ya5_c00278{bottom:433.656000pt;}
.y92_c00278{bottom:455.522667pt;}
.y93_c00278{bottom:456.504000pt;}
.y94_c00278{bottom:457.478667pt;}
.y95_c00278{bottom:457.788000pt;}
.y96_c00278{bottom:458.652000pt;}
.y97_c00278{bottom:459.450667pt;}
.y98_c00278{bottom:459.736000pt;}
.y99_c00278{bottom:460.030667pt;}
.y9a_c00278{bottom:460.806667pt;}
.y91_c00278{bottom:487.625333pt;}
.y90_c00278{bottom:515.305333pt;}
.y8e_c00278{bottom:542.194728pt;}
.y8d_c00278{bottom:542.195084pt;}
.y8c_c00278{bottom:542.195227pt;}
.y8f_c00278{bottom:542.195279pt;}
.y89_c00278{bottom:542.195281pt;}
.y8b_c00278{bottom:542.195609pt;}
.y8a_c00278{bottom:542.195939pt;}
.y7e_c00278{bottom:569.278965pt;}
.y7f_c00278{bottom:569.403595pt;}
.y80_c00278{bottom:569.868827pt;}
.y81_c00278{bottom:570.335851pt;}
.y82_c00278{bottom:570.521783pt;}
.y83_c00278{bottom:570.755388pt;}
.y84_c00278{bottom:571.159496pt;}
.y85_c00278{bottom:571.925237pt;}
.y86_c00278{bottom:572.102600pt;}
.y87_c00278{bottom:572.513269pt;}
.y88_c00278{bottom:572.685208pt;}
.y74_c00278{bottom:598.080000pt;}
.y75_c00278{bottom:598.353849pt;}
.y76_c00278{bottom:598.701600pt;}
.y77_c00278{bottom:599.237557pt;}
.y78_c00278{bottom:599.450908pt;}
.y79_c00278{bottom:599.929783pt;}
.y7a_c00278{bottom:600.542824pt;}
.y7b_c00278{bottom:600.747812pt;}
.y7c_c00278{bottom:601.152673pt;}
.y7d_c00278{bottom:601.295501pt;}
.y6a_c00278{bottom:625.438667pt;}
.y6b_c00278{bottom:625.613333pt;}
.y6c_c00278{bottom:626.016000pt;}
.y6d_c00278{bottom:626.256000pt;}
.y6e_c00278{bottom:626.668000pt;}
.y6f_c00278{bottom:626.894667pt;}
.y70_c00278{bottom:627.128000pt;}
.y71_c00278{bottom:627.484000pt;}
.y72_c00278{bottom:627.608000pt;}
.y73_c00278{bottom:628.182667pt;}
.y5e_c00278{bottom:654.240000pt;}
.y5f_c00278{bottom:654.418667pt;}
.y60_c00278{bottom:654.834667pt;}
.y61_c00278{bottom:655.596000pt;}
.y62_c00278{bottom:655.774667pt;}
.y63_c00278{bottom:656.122667pt;}
.y64_c00278{bottom:656.469333pt;}
.y65_c00278{bottom:656.650667pt;}
.y66_c00278{bottom:657.172000pt;}
.y67_c00278{bottom:657.296000pt;}
.y68_c00278{bottom:657.473333pt;}
.y69_c00278{bottom:657.764000pt;}
.y51_c00278{bottom:681.840000pt;}
.y52_c00278{bottom:682.192000pt;}
.y53_c00278{bottom:682.630667pt;}
.y54_c00278{bottom:683.076000pt;}
.y55_c00278{bottom:683.508000pt;}
.y56_c00278{bottom:684.037333pt;}
.y57_c00278{bottom:684.392000pt;}
.y58_c00278{bottom:684.914667pt;}
.y59_c00278{bottom:685.092000pt;}
.y5a_c00278{bottom:685.356000pt;}
.y5b_c00278{bottom:686.148000pt;}
.y5c_c00278{bottom:686.406667pt;}
.y5d_c00278{bottom:686.769333pt;}
.y45_c00278{bottom:710.880000pt;}
.y46_c00278{bottom:711.086667pt;}
.y47_c00278{bottom:711.360000pt;}
.y48_c00278{bottom:712.105333pt;}
.y49_c00278{bottom:712.245333pt;}
.y4a_c00278{bottom:713.130667pt;}
.y4b_c00278{bottom:713.342667pt;}
.y4c_c00278{bottom:713.698667pt;}
.y4d_c00278{bottom:713.892000pt;}
.y4e_c00278{bottom:714.162667pt;}
.y4f_c00278{bottom:714.770667pt;}
.y50_c00278{bottom:714.976000pt;}
.y37_c00278{bottom:739.678667pt;}
.y38_c00278{bottom:739.986667pt;}
.y39_c00278{bottom:740.089333pt;}
.y3a_c00278{bottom:740.328000pt;}
.y3b_c00278{bottom:740.502667pt;}
.y3c_c00278{bottom:740.849333pt;}
.y3d_c00278{bottom:741.025333pt;}
.y3e_c00278{bottom:741.381333pt;}
.y3f_c00278{bottom:741.786667pt;}
.y40_c00278{bottom:741.969333pt;}
.y41_c00278{bottom:742.145333pt;}
.y42_c00278{bottom:742.548000pt;}
.y43_c00278{bottom:742.732000pt;}
.y44_c00278{bottom:742.904000pt;}
.y29_c00278{bottom:766.320000pt;}
.y2a_c00278{bottom:766.477333pt;}
.y2b_c00278{bottom:766.949333pt;}
.y2c_c00278{bottom:767.184000pt;}
.y2d_c00278{bottom:767.425333pt;}
.y2e_c00278{bottom:768.046667pt;}
.y2f_c00278{bottom:768.281333pt;}
.y30_c00278{bottom:768.517333pt;}
.y31_c00278{bottom:769.289333pt;}
.y32_c00278{bottom:769.525333pt;}
.y33_c00278{bottom:769.761333pt;}
.y34_c00278{bottom:770.228000pt;}
.y35_c00278{bottom:770.385333pt;}
.y36_c00278{bottom:770.777333pt;}
.y1e_c00278{bottom:794.161333pt;}
.y1f_c00278{bottom:794.938667pt;}
.y20_c00278{bottom:795.413333pt;}
.y21_c00278{bottom:795.649333pt;}
.y22_c00278{bottom:796.038667pt;}
.y23_c00278{bottom:796.524000pt;}
.y24_c00278{bottom:796.662667pt;}
.y25_c00278{bottom:796.968000pt;}
.y26_c00278{bottom:797.772000pt;}
.y27_c00278{bottom:797.912000pt;}
.y28_c00278{bottom:798.217333pt;}
.y1d_c00278{bottom:825.446667pt;}
.y1c_c00278{bottom:850.654667pt;}
.yf_c00278{bottom:877.921333pt;}
.y10_c00278{bottom:878.393333pt;}
.y11_c00278{bottom:878.702667pt;}
.y12_c00278{bottom:879.012000pt;}
.y13_c00278{bottom:879.246667pt;}
.y14_c00278{bottom:879.793333pt;}
.y15_c00278{bottom:880.033333pt;}
.y16_c00278{bottom:880.340000pt;}
.y17_c00278{bottom:881.050667pt;}
.y18_c00278{bottom:881.356000pt;}
.y19_c00278{bottom:881.596000pt;}
.y1a_c00278{bottom:881.825333pt;}
.y1b_c00278{bottom:882.217333pt;}
.y3_c00278{bottom:906.481333pt;}
.y4_c00278{bottom:906.662667pt;}
.y5_c00278{bottom:906.894667pt;}
.y6_c00278{bottom:907.129333pt;}
.y7_c00278{bottom:907.484000pt;}
.y8_c00278{bottom:907.606667pt;}
.y9_c00278{bottom:908.128000pt;}
.ya_c00278{bottom:908.308000pt;}
.yb_c00278{bottom:908.654667pt;}
.yc_c00278{bottom:909.184000pt;}
.yd_c00278{bottom:909.358667pt;}
.ye_c00278{bottom:910.002667pt;}
.y2_c00278{bottom:937.154667pt;}
.y1_c00278{bottom:995.994667pt;}
.h5_c00278{height:64.000000pt;}
.h8_c00278{height:64.001568pt;}
.h4_c00278{height:69.333333pt;}
.hc_c00278{height:69.334200pt;}
.h6_c00278{height:69.335032pt;}
.h3_c00278{height:74.666667pt;}
.hd_c00278{height:74.668011pt;}
.h7_c00278{height:74.668496pt;}
.h9_c00278{height:80.000000pt;}
.hb_c00278{height:80.001000pt;}
.h2_c00278{height:85.333333pt;}
.ha_c00278{height:96.000000pt;}
.h1_c00278{height:1036.000000pt;}
.h0_c00278{height:1036.266667pt;}
.w0_c00278{width:813.333333pt;}
.x0_c00278{left:0.000000pt;}
.xd_c00278{left:134.960000pt;}
.x2d_c00278{left:136.674667pt;}
.x50_c00278{left:137.872000pt;}
.x62_c00278{left:139.029333pt;}
.x93_c00278{left:140.001333pt;}
.xb5_c00278{left:141.189333pt;}
.xc8_c00278{left:142.459620pt;}
.x35_c00278{left:155.629333pt;}
.x6a_c00278{left:158.239581pt;}
.xe_c00278{left:165.182667pt;}
.x49_c00278{left:166.889333pt;}
.x63_c00278{left:168.080000pt;}
.x8a_c00278{left:169.521333pt;}
.xa3_c00278{left:170.978667pt;}
.x51_c00278{left:177.014667pt;}
.x9d_c00278{left:178.866667pt;}
.x79_c00278{left:186.960000pt;}
.x41_c00278{left:188.005333pt;}
.x19_c00278{left:194.722667pt;}
.x84_c00278{left:197.837333pt;}
.xaa_c00278{left:198.793333pt;}
.xbb_c00278{left:199.748000pt;}
.xf_c00278{left:203.842667pt;}
.x42_c00278{left:205.037333pt;}
.x4a_c00278{left:206.012000pt;}
.xb6_c00278{left:209.813333pt;}
.x36_c00278{left:214.642667pt;}
.x70_c00278{left:216.958236pt;}
.x7a_c00278{left:217.920000pt;}
.x52_c00278{left:225.722667pt;}
.xc9_c00278{left:229.329447pt;}
.x4_c00278{left:234.240000pt;}
.x22_c00278{left:235.680000pt;}
.x75_c00278{left:238.080000pt;}
.xd8_c00278{left:240.720851pt;}
.xcf_c00278{left:241.758667pt;}
.x10_c00278{left:242.952000pt;}
.x37_c00278{left:243.945333pt;}
.x43_c00278{left:244.874667pt;}
.x94_c00278{left:246.096000pt;}
.x71_c00278{left:247.198387pt;}
.x99_c00278{left:248.272000pt;}
.x23_c00278{left:252.960000pt;}
.x76_c00278{left:256.320000pt;}
.xc1_c00278{left:258.781333pt;}
.xd0_c00278{left:259.761333pt;}
.x5_c00278{left:262.800000pt;}
.xbc_c00278{left:267.909333pt;}
.xca_c00278{left:268.931120pt;}
.xd9_c00278{left:270.001907pt;}
.x1a_c00278{left:272.028000pt;}
.x38_c00278{left:274.189333pt;}
.x53_c00278{left:275.161333pt;}
.x9e_c00278{left:276.085333pt;}
.x24_c00278{left:283.200000pt;}
.x85_c00278{left:285.916000pt;}
.x6_c00278{left:290.880000pt;}
.x2e_c00278{left:293.124000pt;}
.x8b_c00278{left:295.518667pt;}
.xb7_c00278{left:297.901333pt;}
.x11_c00278{left:301.984000pt;}
.x9f_c00278{left:305.838667pt;}
.x4b_c00278{left:312.552000pt;}
.x6b_c00278{left:313.515331pt;}
.x12_c00278{left:322.404000pt;}
.x67_c00278{left:324.805333pt;}
.xa4_c00278{left:326.480000pt;}
.x44_c00278{left:331.737333pt;}
.x77_c00278{left:334.320000pt;}
.xab_c00278{left:335.616000pt;}
.xcb_c00278{left:336.584093pt;}
.x64_c00278{left:343.977333pt;}
.x8c_c00278{left:344.954667pt;}
.xd1_c00278{left:346.638667pt;}
.x1_c00278{left:349.920000pt;}
.x39_c00278{left:351.921333pt;}
.x86_c00278{left:353.592000pt;}
.xda_c00278{left:356.643693pt;}
.x25_c00278{left:360.240000pt;}
.x5a_c00278{left:362.713333pt;}
.x72_c00278{left:364.081451pt;}
.x2_c00278{left:370.560000pt;}
.x7b_c00278{left:373.200000pt;}
.x8d_c00278{left:374.230667pt;}
.xd2_c00278{left:376.398667pt;}
.x26_c00278{left:379.920000pt;}
.x3a_c00278{left:381.214667pt;}
.x6c_c00278{left:383.354483pt;}
.xa5_c00278{left:384.569333pt;}
.x5b_c00278{left:392.474667pt;}
.xb0_c00278{left:393.920000pt;}
.xc2_c00278{left:396.305333pt;}
.x3_c00278{left:398.640000pt;}
.x1b_c00278{left:399.700000pt;}
.x68_c00278{left:401.370667pt;}
.x7c_c00278{left:403.920000pt;}
.xb8_c00278{left:404.945333pt;}
.x13_c00278{left:409.266667pt;}
.x3b_c00278{left:410.750667pt;}
.x73_c00278{left:411.842460pt;}
.xa0_c00278{left:413.596000pt;}
.x7_c00278{left:417.600000pt;}
.x27_c00278{left:419.040000pt;}
.x45_c00278{left:420.314667pt;}
.x54_c00278{left:421.326667pt;}
.x9a_c00278{left:422.480000pt;}
.xc3_c00278{left:425.589333pt;}
.x2f_c00278{left:432.120000pt;}
.x8e_c00278{left:434.242667pt;}
.x1c_c00278{left:438.109333pt;}
.x14_c00278{left:439.284000pt;}
.x9b_c00278{left:441.701333pt;}
.xcc_c00278{left:444.130733pt;}
.x30_c00278{left:449.389333pt;}
.x5c_c00278{left:450.557333pt;}
.x74_c00278{left:451.923087pt;}
.xac_c00278{left:453.446667pt;}
.x8_c00278{left:457.680000pt;}
.x4c_c00278{left:458.973333pt;}
.x7d_c00278{left:460.560000pt;}
.xb1_c00278{left:471.905333pt;}
.xcd_c00278{left:473.172673pt;}
.xb9_c00278{left:474.072000pt;}
.x28_c00278{left:478.080000pt;}
.x55_c00278{left:479.369333pt;}
.x87_c00278{left:480.310667pt;}
.xbd_c00278{left:482.469333pt;}
.xdb_c00278{left:483.845611pt;}
.x31_c00278{left:487.546667pt;}
.x4d_c00278{left:489.210667pt;}
.x95_c00278{left:490.408000pt;}
.xa1_c00278{left:491.822667pt;}
.x15_c00278{left:497.130667pt;}
.x56_c00278{left:499.056000pt;}
.x65_c00278{left:500.482667pt;}
.xc4_c00278{left:503.337333pt;}
.x3c_c00278{left:507.224000pt;}
.x5d_c00278{left:508.402667pt;}
.x8f_c00278{left:510.076000pt;}
.x9_c00278{left:518.400000pt;}
.x78_c00278{left:520.320000pt;}
.xa2_c00278{left:522.090667pt;}
.xa6_c00278{left:523.058667pt;}
.x1d_c00278{left:526.886667pt;}
.x57_c00278{left:528.361333pt;}
.x9c_c00278{left:530.021333pt;}
.x80_c00278{left:531.070667pt;}
.xd3_c00278{left:532.873333pt;}
.xa_c00278{left:535.440000pt;}
.x3d_c00278{left:536.752000pt;}
.x5e_c00278{left:538.637333pt;}
.x4e_c00278{left:540.112000pt;}
.x90_c00278{left:541.269333pt;}
.xc5_c00278{left:542.468000pt;}
.x29_c00278{left:546.480000pt;}
.x46_c00278{left:547.522667pt;}
.x96_c00278{left:550.190667pt;}
.xb2_c00278{left:551.108000pt;}
.x7e_c00278{left:558.480000pt;}
.x81_c00278{left:559.565333pt;}
.xba_c00278{left:560.470667pt;}
.x1e_c00278{left:565.064000pt;}
.x3e_c00278{left:566.266667pt;}
.x4f_c00278{left:567.696000pt;}
.x97_c00278{left:569.856000pt;}
.xbe_c00278{left:571.750667pt;}
.x6d_c00278{left:578.477188pt;}
.xb3_c00278{left:579.905333pt;}
.x16_c00278{left:585.437333pt;}
.x32_c00278{left:588.122667pt;}
.x82_c00278{left:589.086667pt;}
.x91_c00278{left:590.484000pt;}
.xc6_c00278{left:591.428000pt;}
.x1f_c00278{left:595.046667pt;}
.x66_c00278{left:596.253333pt;}
.xd4_c00278{left:600.597333pt;}
.x33_c00278{left:605.620000pt;}
.x6e_c00278{left:608.005393pt;}
.xce_c00278{left:611.645213pt;}
.x17_c00278{left:614.573333pt;}
.x58_c00278{left:616.418667pt;}
.xb4_c00278{left:619.029333pt;}
.x20_c00278{left:623.632000pt;}
.x3f_c00278{left:624.560000pt;}
.x5f_c00278{left:625.504000pt;}
.xad_c00278{left:628.633333pt;}
.x2a_c00278{left:633.600000pt;}
.x34_c00278{left:643.786667pt;}
.x47_c00278{left:645.438667pt;}
.x98_c00278{left:647.378667pt;}
.xa7_c00278{left:648.325333pt;}
.xdc_c00278{left:649.448904pt;}
.xb_c00278{left:650.400000pt;}
.x7f_c00278{left:656.880000pt;}
.xd5_c00278{left:660.077333pt;}
.xbf_c00278{left:661.037333pt;}
.x83_c00278{left:666.622667pt;}
.xae_c00278{left:668.012000pt;}
.xdd_c00278{left:669.849640pt;}
.x21_c00278{left:672.585333pt;}
.x48_c00278{left:674.001333pt;}
.x60_c00278{left:675.681333pt;}
.x59_c00278{left:685.557333pt;}
.xd6_c00278{left:689.606667pt;}
.xc_c00278{left:691.200000pt;}
.x40_c00278{left:693.229333pt;}
.x69_c00278{left:695.362667pt;}
.x88_c00278{left:697.042667pt;}
.xc7_c00278{left:698.706667pt;}
.x2b_c00278{left:702.480000pt;}
.x6f_c00278{left:704.950065pt;}
.xa8_c00278{left:706.884000pt;}
.x92_c00278{left:715.506667pt;}
.xc0_c00278{left:717.653333pt;}
.x18_c00278{left:722.001333pt;}
.x61_c00278{left:724.145333pt;}
.xaf_c00278{left:726.310667pt;}
.xd7_c00278{left:728.478667pt;}
.x2c_c00278{left:731.280000pt;}
.x89_c00278{left:734.221333pt;}
.xa9_c00278{left:736.158667pt;}
.xde_c00278{left:747.371099pt;}
}





/* 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_c00279 {
    display:none;
  }
  .loading-indicator_c00279.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00279 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_c00279 { 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_c00279" -> "#page-container .classname_c00279")
 */
.pf_c00279 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00279 { /* 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_c00279.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00279 { /* 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_c00279 { /* 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_c00279 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00279 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00279 {overflow:visible;}
  }
}
.c_c00279 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00279 { /* 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_c00279:after { /* webkit #35443 */
  content: '';
}
.t_c00279:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00279 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 */
}
.__c00279 { /* 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_c00279 { /* info for Javascript */
  display:none;
}
.l_c00279 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00279 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00279 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00279: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_c00279 {
    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_c00279.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00279.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_c00279 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00279{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00279;src:url('chunks/assets/font_fe3cd3c6b9706b260f6e1774.woff2')format("woff");}.ff1_c00279{font-family:ff1_c00279;line-height:1.000000;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;}
.m3_c00279{transform:matrix(0.001755,0.146239,-0.249982,0.003000,0,0);-ms-transform:matrix(0.001755,0.146239,-0.249982,0.003000,0,0);-webkit-transform:matrix(0.001755,0.146239,-0.249982,0.003000,0,0);}
.m5_c00279{transform:matrix(0.003781,0.315067,-0.249982,0.003000,0,0);-ms-transform:matrix(0.003781,0.315067,-0.249982,0.003000,0,0);-webkit-transform:matrix(0.003781,0.315067,-0.249982,0.003000,0,0);}
.m0_c00279{transform:matrix(0.004106,0.342130,-0.249982,0.003000,0,0);-ms-transform:matrix(0.004106,0.342130,-0.249982,0.003000,0,0);-webkit-transform:matrix(0.004106,0.342130,-0.249982,0.003000,0,0);}
.m4_c00279{transform:matrix(0.004395,0.366249,-0.249982,0.003000,0,0);-ms-transform:matrix(0.004395,0.366249,-0.249982,0.003000,0,0);-webkit-transform:matrix(0.004395,0.366249,-0.249982,0.003000,0,0);}
.m1_c00279{transform:matrix(0.008816,0.734652,-0.249982,0.003000,0,0);-ms-transform:matrix(0.008816,0.734652,-0.249982,0.003000,0,0);-webkit-transform:matrix(0.008816,0.734652,-0.249982,0.003000,0,0);}
.m2_c00279{transform:matrix(0.048253,4.021060,-0.249982,0.003000,0,0);-ms-transform:matrix(0.048253,4.021060,-0.249982,0.003000,0,0);-webkit-transform:matrix(0.048253,4.021060,-0.249982,0.003000,0,0);}
.m8_c00279{transform:matrix(0.353080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353080,0.000000,0.000000,0.250000,0,0);}
.m6_c00279{transform:matrix(0.468195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468195,0.000000,0.000000,0.250000,0,0);}
.m7_c00279{transform:matrix(1.319735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.319735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.319735,0.000000,0.000000,0.250000,0,0);}
.v0_c00279{vertical-align:0.000000px;}
.ls0_c00279{letter-spacing:0.000000px;}
.sc__c00279{text-shadow:none;}
.sc0_c00279{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__c00279{-webkit-text-stroke:0px transparent;}
.sc0_c00279{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00279{word-spacing:0.000000px;}
.fc0_c00279{color:transparent;}
.fs3_c00279{font-size:12.000000px;}
.fs2_c00279{font-size:18.000000px;}
.fs1_c00279{font-size:24.000000px;}
.fs0_c00279{font-size:24.001728px;}
.y0_c00279{bottom:0.000000px;}
.y8_c00279{bottom:127.710000px;}
.y7_c00279{bottom:137.160000px;}
.y6_c00279{bottom:251.680500px;}
.y5_c00279{bottom:267.069000px;}
.y4_c00279{bottom:284.011500px;}
.y3_c00279{bottom:383.137500px;}
.y2_c00279{bottom:402.295500px;}
.y1_c00279{bottom:429.270000px;}
.y9_c00279{bottom:1115.640000px;}
.h5_c00279{height:12.000000px;}
.h4_c00279{height:18.000000px;}
.h3_c00279{height:24.000000px;}
.h2_c00279{height:24.001728px;}
.h1_c00279{height:1165.500000px;}
.h0_c00279{height:1165.800000px;}
.w0_c00279{width:915.000000px;}
.x0_c00279{left:0.000000px;}
.x5_c00279{left:490.860000px;}
.x4_c00279{left:657.720000px;}
.x3_c00279{left:674.730000px;}
.x1_c00279{left:894.240000px;}
.x2_c00279{left:895.983102px;}
@media print{
.v0_c00279{vertical-align:0.000000pt;}
.ls0_c00279{letter-spacing:0.000000pt;}
.ws0_c00279{word-spacing:0.000000pt;}
.fs3_c00279{font-size:10.666667pt;}
.fs2_c00279{font-size:16.000000pt;}
.fs1_c00279{font-size:21.333333pt;}
.fs0_c00279{font-size:21.334869pt;}
.y0_c00279{bottom:0.000000pt;}
.y8_c00279{bottom:113.520000pt;}
.y7_c00279{bottom:121.920000pt;}
.y6_c00279{bottom:223.716000pt;}
.y5_c00279{bottom:237.394667pt;}
.y4_c00279{bottom:252.454667pt;}
.y3_c00279{bottom:340.566667pt;}
.y2_c00279{bottom:357.596000pt;}
.y1_c00279{bottom:381.573333pt;}
.y9_c00279{bottom:991.680000pt;}
.h5_c00279{height:10.666667pt;}
.h4_c00279{height:16.000000pt;}
.h3_c00279{height:21.333333pt;}
.h2_c00279{height:21.334869pt;}
.h1_c00279{height:1036.000000pt;}
.h0_c00279{height:1036.266667pt;}
.w0_c00279{width:813.333333pt;}
.x0_c00279{left:0.000000pt;}
.x5_c00279{left:436.320000pt;}
.x4_c00279{left:584.640000pt;}
.x3_c00279{left:599.760000pt;}
.x1_c00279{left:794.880000pt;}
.x2_c00279{left:796.429424pt;}
}





/* 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_c00280 {
    display:none;
  }
  .loading-indicator_c00280.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00280 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_c00280 { 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_c00280" -> "#page-container .classname_c00280")
 */
.pf_c00280 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00280 { /* 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_c00280.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00280 { /* 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_c00280 { /* 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_c00280 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00280 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00280 {overflow:visible;}
  }
}
.c_c00280 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00280 { /* 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_c00280:after { /* webkit #35443 */
  content: '';
}
.t_c00280:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00280 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 */
}
.__c00280 { /* 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_c00280 { /* info for Javascript */
  display:none;
}
.l_c00280 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00280 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00280 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00280: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_c00280 {
    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_c00280.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00280.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_c00280 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00280{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00280;src:url('chunks/assets/font_c605e72f209fc835e906f064.woff2')format("woff");}.ff1_c00280{font-family:ff1_c00280;line-height:1.000000;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;}
.m91_c00280{transform:matrix(0.007905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.007905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.007905,0.000000,0.000000,0.250000,0,0);}
.mfc_c00280{transform:matrix(0.010140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.010140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.010140,0.000000,0.000000,0.250000,0,0);}
.m116_c00280{transform:matrix(0.011590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.011590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.011590,0.000000,0.000000,0.250000,0,0);}
.m115_c00280{transform:matrix(0.013520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.013520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.013520,0.000000,0.000000,0.250000,0,0);}
.me_c00280{transform:matrix(0.100560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100560,0.000000,0.000000,0.250000,0,0);}
.m46_c00280{transform:matrix(0.125025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125025,0.000000,0.000000,0.250000,0,0);}
.m10a_c00280{transform:matrix(0.125175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125175,0.000000,0.000000,0.250000,0,0);}
.m117_c00280{transform:matrix(0.131905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131905,0.000000,0.000000,0.250000,0,0);}
.m4d_c00280{transform:matrix(0.134820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134820,0.000000,0.000000,0.250000,0,0);}
.m94_c00280{transform:matrix(0.143285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143285,0.000000,0.000000,0.250000,0,0);}
.m8f_c00280{transform:matrix(0.154415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154415,0.000000,0.000000,0.250000,0,0);}
.m90_c00280{transform:matrix(0.162200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162200,0.000000,0.000000,0.250000,0,0);}
.m2b_c00280{transform:matrix(0.163565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163565,0.000000,0.000000,0.250000,0,0);}
.m28_c00280{transform:matrix(0.166875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166875,0.000000,0.000000,0.250000,0,0);}
.mff_c00280{transform:matrix(0.167000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00280{transform:matrix(0.168645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168645,0.000000,0.000000,0.250000,0,0);}
.m103_c00280{transform:matrix(0.170470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170470,0.000000,0.000000,0.250000,0,0);}
.m0_c00280{transform:matrix(0.171355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171355,0.000000,0.000000,0.250000,0,0);}
.m106_c00280{transform:matrix(0.177100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177100,0.000000,0.000000,0.250000,0,0);}
.mf1_c00280{transform:matrix(0.179030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179030,0.000000,0.000000,0.250000,0,0);}
.m2c_c00280{transform:matrix(0.182775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182775,0.000000,0.000000,0.250000,0,0);}
.m24_c00280{transform:matrix(0.184640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184640,0.000000,0.000000,0.250000,0,0);}
.m10d_c00280{transform:matrix(0.186725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186725,0.000000,0.000000,0.250000,0,0);}
.m107_c00280{transform:matrix(0.188100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188100,0.000000,0.000000,0.250000,0,0);}
.mfe_c00280{transform:matrix(0.188190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188190,0.000000,0.000000,0.250000,0,0);}
.m100_c00280{transform:matrix(0.189180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189180,0.000000,0.000000,0.250000,0,0);}
.m26_c00280{transform:matrix(0.191580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191580,0.000000,0.000000,0.250000,0,0);}
.m43_c00280{transform:matrix(0.193580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193580,0.000000,0.000000,0.250000,0,0);}
.mec_c00280{transform:matrix(0.194350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194350,0.000000,0.000000,0.250000,0,0);}
.m10c_c00280{transform:matrix(0.195305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195305,0.000000,0.000000,0.250000,0,0);}
.m7f_c00280{transform:matrix(0.196470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196470,0.000000,0.000000,0.250000,0,0);}
.m29_c00280{transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);}
.md7_c00280{transform:matrix(0.196735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196735,0.000000,0.000000,0.250000,0,0);}
.m9e_c00280{transform:matrix(0.197910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197910,0.000000,0.000000,0.250000,0,0);}
.m78_c00280{transform:matrix(0.198005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198005,0.000000,0.000000,0.250000,0,0);}
.m11d_c00280{transform:matrix(0.198200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198200,0.000000,0.000000,0.250000,0,0);}
.m22_c00280{transform:matrix(0.198685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198685,0.000000,0.000000,0.250000,0,0);}
.mad_c00280{transform:matrix(0.199280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199280,0.000000,0.000000,0.250000,0,0);}
.m4b_c00280{transform:matrix(0.201495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201495,0.000000,0.000000,0.250000,0,0);}
.m23_c00280{transform:matrix(0.201745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201745,0.000000,0.000000,0.250000,0,0);}
.m25_c00280{transform:matrix(0.203185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203185,0.000000,0.000000,0.250000,0,0);}
.m27_c00280{transform:matrix(0.203600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203600,0.000000,0.000000,0.250000,0,0);}
.m114_c00280{transform:matrix(0.203915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203915,0.000000,0.000000,0.250000,0,0);}
.m105_c00280{transform:matrix(0.204130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204130,0.000000,0.000000,0.250000,0,0);}
.m48_c00280{transform:matrix(0.204305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204305,0.000000,0.000000,0.250000,0,0);}
.m109_c00280{transform:matrix(0.205340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205340,0.000000,0.000000,0.250000,0,0);}
.md6_c00280{transform:matrix(0.205635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205635,0.000000,0.000000,0.250000,0,0);}
.m101_c00280{transform:matrix(0.207030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207030,0.000000,0.000000,0.250000,0,0);}
.md9_c00280{transform:matrix(0.207425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207425,0.000000,0.000000,0.250000,0,0);}
.mf0_c00280{transform:matrix(0.208435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208435,0.000000,0.000000,0.250000,0,0);}
.mef_c00280{transform:matrix(0.208605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208605,0.000000,0.000000,0.250000,0,0);}
.m74_c00280{transform:matrix(0.208715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208715,0.000000,0.000000,0.250000,0,0);}
.md0_c00280{transform:matrix(0.209220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209220,0.000000,0.000000,0.250000,0,0);}
.m102_c00280{transform:matrix(0.209835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209835,0.000000,0.000000,0.250000,0,0);}
.m10e_c00280{transform:matrix(0.210210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210210,0.000000,0.000000,0.250000,0,0);}
.m104_c00280{transform:matrix(0.210765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210765,0.000000,0.000000,0.250000,0,0);}
.m118_c00280{transform:matrix(0.211035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211035,0.000000,0.000000,0.250000,0,0);}
.m11c_c00280{transform:matrix(0.212360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212360,0.000000,0.000000,0.250000,0,0);}
.m11a_c00280{transform:matrix(0.212780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212780,0.000000,0.000000,0.250000,0,0);}
.m9d_c00280{transform:matrix(0.212950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212950,0.000000,0.000000,0.250000,0,0);}
.mee_c00280{transform:matrix(0.213775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213775,0.000000,0.000000,0.250000,0,0);}
.m10f_c00280{transform:matrix(0.213925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213925,0.000000,0.000000,0.250000,0,0);}
.ma3_c00280{transform:matrix(0.213985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213985,0.000000,0.000000,0.250000,0,0);}
.m52_c00280{transform:matrix(0.214005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214005,0.000000,0.000000,0.250000,0,0);}
.m19_c00280{transform:matrix(0.215150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215150,0.000000,0.000000,0.250000,0,0);}
.m88_c00280{transform:matrix(0.216925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216925,0.000000,0.000000,0.250000,0,0);}
.m45_c00280{transform:matrix(0.217860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217860,0.000000,0.000000,0.250000,0,0);}
.md2_c00280{transform:matrix(0.217930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217930,0.000000,0.000000,0.250000,0,0);}
.mdd_c00280{transform:matrix(0.218090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218090,0.000000,0.000000,0.250000,0,0);}
.m2d_c00280{transform:matrix(0.218180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218180,0.000000,0.000000,0.250000,0,0);}
.m6d_c00280{transform:matrix(0.218255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218255,0.000000,0.000000,0.250000,0,0);}
.md4_c00280{transform:matrix(0.218705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218705,0.000000,0.000000,0.250000,0,0);}
.ma7_c00280{transform:matrix(0.218925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218925,0.000000,0.000000,0.250000,0,0);}
.ma5_c00280{transform:matrix(0.218940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218940,0.000000,0.000000,0.250000,0,0);}
.med_c00280{transform:matrix(0.219245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219245,0.000000,0.000000,0.250000,0,0);}
.m49_c00280{transform:matrix(0.219415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219415,0.000000,0.000000,0.250000,0,0);}
.m11_c00280{transform:matrix(0.219465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219465,0.000000,0.000000,0.250000,0,0);}
.m4c_c00280{transform:matrix(0.219645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219645,0.000000,0.000000,0.250000,0,0);}
.m108_c00280{transform:matrix(0.219700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219700,0.000000,0.000000,0.250000,0,0);}
.m121_c00280{transform:matrix(0.220190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220190,0.000000,0.000000,0.250000,0,0);}
.m5f_c00280{transform:matrix(0.220480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220480,0.000000,0.000000,0.250000,0,0);}
.m99_c00280{transform:matrix(0.220510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220510,0.000000,0.000000,0.250000,0,0);}
.m6b_c00280{transform:matrix(0.221020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221020,0.000000,0.000000,0.250000,0,0);}
.m87_c00280{transform:matrix(0.221375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221375,0.000000,0.000000,0.250000,0,0);}
.m10b_c00280{transform:matrix(0.222105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222105,0.000000,0.000000,0.250000,0,0);}
.m76_c00280{transform:matrix(0.222310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222310,0.000000,0.000000,0.250000,0,0);}
.m55_c00280{transform:matrix(0.222610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222610,0.000000,0.000000,0.250000,0,0);}
.mac_c00280{transform:matrix(0.223030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223030,0.000000,0.000000,0.250000,0,0);}
.mb4_c00280{transform:matrix(0.223270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223270,0.000000,0.000000,0.250000,0,0);}
.m21_c00280{transform:matrix(0.223380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223380,0.000000,0.000000,0.250000,0,0);}
.m79_c00280{transform:matrix(0.223405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223405,0.000000,0.000000,0.250000,0,0);}
.me3_c00280{transform:matrix(0.223675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223675,0.000000,0.000000,0.250000,0,0);}
.m70_c00280{transform:matrix(0.223760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223760,0.000000,0.000000,0.250000,0,0);}
.m110_c00280{transform:matrix(0.224075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224075,0.000000,0.000000,0.250000,0,0);}
.m6f_c00280{transform:matrix(0.224360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224360,0.000000,0.000000,0.250000,0,0);}
.m47_c00280{transform:matrix(0.224745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224745,0.000000,0.000000,0.250000,0,0);}
.m11b_c00280{transform:matrix(0.225210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225210,0.000000,0.000000,0.250000,0,0);}
.m44_c00280{transform:matrix(0.225435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225435,0.000000,0.000000,0.250000,0,0);}
.mfd_c00280{transform:matrix(0.225485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225485,0.000000,0.000000,0.250000,0,0);}
.md3_c00280{transform:matrix(0.225550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225550,0.000000,0.000000,0.250000,0,0);}
.m9f_c00280{transform:matrix(0.225720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225720,0.000000,0.000000,0.250000,0,0);}
.mf_c00280{transform:matrix(0.225845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225845,0.000000,0.000000,0.250000,0,0);}
.m92_c00280{transform:matrix(0.226065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226065,0.000000,0.000000,0.250000,0,0);}
.md1_c00280{transform:matrix(0.226100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226100,0.000000,0.000000,0.250000,0,0);}
.md8_c00280{transform:matrix(0.226815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226815,0.000000,0.000000,0.250000,0,0);}
.m40_c00280{transform:matrix(0.227005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227005,0.000000,0.000000,0.250000,0,0);}
.m54_c00280{transform:matrix(0.227685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227685,0.000000,0.000000,0.250000,0,0);}
.m41_c00280{transform:matrix(0.227690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227690,0.000000,0.000000,0.250000,0,0);}
.m4f_c00280{transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);}
.m7a_c00280{transform:matrix(0.228125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228125,0.000000,0.000000,0.250000,0,0);}
.m1f_c00280{transform:matrix(0.228565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228565,0.000000,0.000000,0.250000,0,0);}
.mb9_c00280{transform:matrix(0.228815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228815,0.000000,0.000000,0.250000,0,0);}
.m11f_c00280{transform:matrix(0.228940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228940,0.000000,0.000000,0.250000,0,0);}
.ma8_c00280{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00280{transform:matrix(0.229180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229180,0.000000,0.000000,0.250000,0,0);}
.m61_c00280{transform:matrix(0.229590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229590,0.000000,0.000000,0.250000,0,0);}
.md5_c00280{transform:matrix(0.229615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229615,0.000000,0.000000,0.250000,0,0);}
.m9c_c00280{transform:matrix(0.230295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230295,0.000000,0.000000,0.250000,0,0);}
.m6_c00280{transform:matrix(0.230635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230635,0.000000,0.000000,0.250000,0,0);}
.ma4_c00280{transform:matrix(0.230645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230645,0.000000,0.000000,0.250000,0,0);}
.mdb_c00280{transform:matrix(0.230785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230785,0.000000,0.000000,0.250000,0,0);}
.mf9_c00280{transform:matrix(0.230870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230870,0.000000,0.000000,0.250000,0,0);}
.mc3_c00280{transform:matrix(0.230895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230895,0.000000,0.000000,0.250000,0,0);}
.m4a_c00280{transform:matrix(0.231465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231465,0.000000,0.000000,0.250000,0,0);}
.m119_c00280{transform:matrix(0.231515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231515,0.000000,0.000000,0.250000,0,0);}
.mea_c00280{transform:matrix(0.231595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231595,0.000000,0.000000,0.250000,0,0);}
.mf3_c00280{transform:matrix(0.231625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231625,0.000000,0.000000,0.250000,0,0);}
.m18_c00280{transform:matrix(0.231780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231780,0.000000,0.000000,0.250000,0,0);}
.ma2_c00280{transform:matrix(0.231925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231925,0.000000,0.000000,0.250000,0,0);}
.maf_c00280{transform:matrix(0.232390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232390,0.000000,0.000000,0.250000,0,0);}
.m1e_c00280{transform:matrix(0.232725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232725,0.000000,0.000000,0.250000,0,0);}
.m65_c00280{transform:matrix(0.233135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233135,0.000000,0.000000,0.250000,0,0);}
.m6e_c00280{transform:matrix(0.233215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233215,0.000000,0.000000,0.250000,0,0);}
.mb1_c00280{transform:matrix(0.233395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233395,0.000000,0.000000,0.250000,0,0);}
.m63_c00280{transform:matrix(0.235125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235125,0.000000,0.000000,0.250000,0,0);}
.m42_c00280{transform:matrix(0.235480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235480,0.000000,0.000000,0.250000,0,0);}
.m1c_c00280{transform:matrix(0.235790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235790,0.000000,0.000000,0.250000,0,0);}
.mcc_c00280{transform:matrix(0.235880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235880,0.000000,0.000000,0.250000,0,0);}
.m68_c00280{transform:matrix(0.236130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236130,0.000000,0.000000,0.250000,0,0);}
.m122_c00280{transform:matrix(0.236325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236325,0.000000,0.000000,0.250000,0,0);}
.m69_c00280{transform:matrix(0.236445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236445,0.000000,0.000000,0.250000,0,0);}
.meb_c00280{transform:matrix(0.236470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236470,0.000000,0.000000,0.250000,0,0);}
.m5_c00280{transform:matrix(0.236565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236565,0.000000,0.000000,0.250000,0,0);}
.m6c_c00280{transform:matrix(0.236680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236680,0.000000,0.000000,0.250000,0,0);}
.m77_c00280{transform:matrix(0.236805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236805,0.000000,0.000000,0.250000,0,0);}
.m62_c00280{transform:matrix(0.237185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237185,0.000000,0.000000,0.250000,0,0);}
.m1b_c00280{transform:matrix(0.237620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237620,0.000000,0.000000,0.250000,0,0);}
.m53_c00280{transform:matrix(0.237805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237805,0.000000,0.000000,0.250000,0,0);}
.m3e_c00280{transform:matrix(0.237975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237975,0.000000,0.000000,0.250000,0,0);}
.mdf_c00280{transform:matrix(0.238535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238535,0.000000,0.000000,0.250000,0,0);}
.m8_c00280{transform:matrix(0.238570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238570,0.000000,0.000000,0.250000,0,0);}
.m81_c00280{transform:matrix(0.239230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239230,0.000000,0.000000,0.250000,0,0);}
.mba_c00280{transform:matrix(0.239295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239295,0.000000,0.000000,0.250000,0,0);}
.mc9_c00280{transform:matrix(0.239520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239520,0.000000,0.000000,0.250000,0,0);}
.m8c_c00280{transform:matrix(0.239910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239910,0.000000,0.000000,0.250000,0,0);}
.ma1_c00280{transform:matrix(0.240365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240365,0.000000,0.000000,0.250000,0,0);}
.m7c_c00280{transform:matrix(0.240635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240635,0.000000,0.000000,0.250000,0,0);}
.m34_c00280{transform:matrix(0.241030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241030,0.000000,0.000000,0.250000,0,0);}
.mbf_c00280{transform:matrix(0.241300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241300,0.000000,0.000000,0.250000,0,0);}
.mde_c00280{transform:matrix(0.241915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241915,0.000000,0.000000,0.250000,0,0);}
.m71_c00280{transform:matrix(0.242215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242215,0.000000,0.000000,0.250000,0,0);}
.m83_c00280{transform:matrix(0.243055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243055,0.000000,0.000000,0.250000,0,0);}
.mab_c00280{transform:matrix(0.243200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243200,0.000000,0.000000,0.250000,0,0);}
.m120_c00280{transform:matrix(0.243215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243215,0.000000,0.000000,0.250000,0,0);}
.m2f_c00280{transform:matrix(0.243315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243315,0.000000,0.000000,0.250000,0,0);}
.m37_c00280{transform:matrix(0.243375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243375,0.000000,0.000000,0.250000,0,0);}
.m11e_c00280{transform:matrix(0.243655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243655,0.000000,0.000000,0.250000,0,0);}
.m85_c00280{transform:matrix(0.243700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243700,0.000000,0.000000,0.250000,0,0);}
.mce_c00280{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m17_c00280{transform:matrix(0.243950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243950,0.000000,0.000000,0.250000,0,0);}
.m5a_c00280{transform:matrix(0.244095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244095,0.000000,0.000000,0.250000,0,0);}
.me5_c00280{transform:matrix(0.244180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244180,0.000000,0.000000,0.250000,0,0);}
.ma9_c00280{transform:matrix(0.244480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244480,0.000000,0.000000,0.250000,0,0);}
.maa_c00280{transform:matrix(0.244540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244540,0.000000,0.000000,0.250000,0,0);}
.m75_c00280{transform:matrix(0.244600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244600,0.000000,0.000000,0.250000,0,0);}
.m7e_c00280{transform:matrix(0.244870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244870,0.000000,0.000000,0.250000,0,0);}
.m32_c00280{transform:matrix(0.244935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244935,0.000000,0.000000,0.250000,0,0);}
.me6_c00280{transform:matrix(0.245230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245230,0.000000,0.000000,0.250000,0,0);}
.mb7_c00280{transform:matrix(0.245460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245460,0.000000,0.000000,0.250000,0,0);}
.m3b_c00280{transform:matrix(0.245805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245805,0.000000,0.000000,0.250000,0,0);}
.mb8_c00280{transform:matrix(0.245930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245930,0.000000,0.000000,0.250000,0,0);}
.m39_c00280{transform:matrix(0.246085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246085,0.000000,0.000000,0.250000,0,0);}
.m72_c00280{transform:matrix(0.246090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246090,0.000000,0.000000,0.250000,0,0);}
.mc6_c00280{transform:matrix(0.246730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246730,0.000000,0.000000,0.250000,0,0);}
.me7_c00280{transform:matrix(0.246845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246845,0.000000,0.000000,0.250000,0,0);}
.mc0_c00280{transform:matrix(0.247615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247615,0.000000,0.000000,0.250000,0,0);}
.mc2_c00280{transform:matrix(0.248245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248245,0.000000,0.000000,0.250000,0,0);}
.mf6_c00280{transform:matrix(0.248295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248295,0.000000,0.000000,0.250000,0,0);}
.m20_c00280{transform:matrix(0.248470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248470,0.000000,0.000000,0.250000,0,0);}
.m13_c00280{transform:matrix(0.248635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248635,0.000000,0.000000,0.250000,0,0);}
.m97_c00280{transform:matrix(0.249040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249040,0.000000,0.000000,0.250000,0,0);}
.m58_c00280{transform:matrix(0.249165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249165,0.000000,0.000000,0.250000,0,0);}
.m1d_c00280{transform:matrix(0.249270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249270,0.000000,0.000000,0.250000,0,0);}
.m51_c00280{transform:matrix(0.249385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249385,0.000000,0.000000,0.250000,0,0);}
.mc_c00280{transform:matrix(0.249760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249760,0.000000,0.000000,0.250000,0,0);}
.m73_c00280{transform:matrix(0.250095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250095,0.000000,0.000000,0.250000,0,0);}
.ma6_c00280{transform:matrix(0.250170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250170,0.000000,0.000000,0.250000,0,0);}
.m5b_c00280{transform:matrix(0.250460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250460,0.000000,0.000000,0.250000,0,0);}
.mbd_c00280{transform:matrix(0.250930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250930,0.000000,0.000000,0.250000,0,0);}
.m3c_c00280{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.mb5_c00280{transform:matrix(0.251870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251870,0.000000,0.000000,0.250000,0,0);}
.md_c00280{transform:matrix(0.251950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251950,0.000000,0.000000,0.250000,0,0);}
.m57_c00280{transform:matrix(0.252365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252365,0.000000,0.000000,0.250000,0,0);}
.m1a_c00280{transform:matrix(0.252605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252605,0.000000,0.000000,0.250000,0,0);}
.m50_c00280{transform:matrix(0.253685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253685,0.000000,0.000000,0.250000,0,0);}
.m8e_c00280{transform:matrix(0.253695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253695,0.000000,0.000000,0.250000,0,0);}
.mf4_c00280{transform:matrix(0.253950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253950,0.000000,0.000000,0.250000,0,0);}
.m16_c00280{transform:matrix(0.254060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254060,0.000000,0.000000,0.250000,0,0);}
.m9b_c00280{transform:matrix(0.254470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254470,0.000000,0.000000,0.250000,0,0);}
.ma_c00280{transform:matrix(0.254740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254740,0.000000,0.000000,0.250000,0,0);}
.m2_c00280{transform:matrix(0.255440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255440,0.000000,0.000000,0.250000,0,0);}
.m3_c00280{transform:matrix(0.255690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255690,0.000000,0.000000,0.250000,0,0);}
.mfb_c00280{transform:matrix(0.256190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256190,0.000000,0.000000,0.250000,0,0);}
.m36_c00280{transform:matrix(0.256540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256540,0.000000,0.000000,0.250000,0,0);}
.m31_c00280{transform:matrix(0.257020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257020,0.000000,0.000000,0.250000,0,0);}
.m111_c00280{transform:matrix(0.257110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257110,0.000000,0.000000,0.250000,0,0);}
.mb2_c00280{transform:matrix(0.258310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258310,0.000000,0.000000,0.250000,0,0);}
.mb3_c00280{transform:matrix(0.258490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258490,0.000000,0.000000,0.250000,0,0);}
.mae_c00280{transform:matrix(0.258580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258580,0.000000,0.000000,0.250000,0,0);}
.m66_c00280{transform:matrix(0.259055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259055,0.000000,0.000000,0.250000,0,0);}
.m6a_c00280{transform:matrix(0.259390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259390,0.000000,0.000000,0.250000,0,0);}
.m8a_c00280{transform:matrix(0.260520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260520,0.000000,0.000000,0.250000,0,0);}
.mc7_c00280{transform:matrix(0.260730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260730,0.000000,0.000000,0.250000,0,0);}
.m4e_c00280{transform:matrix(0.261585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261585,0.000000,0.000000,0.250000,0,0);}
.m56_c00280{transform:matrix(0.262290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262290,0.000000,0.000000,0.250000,0,0);}
.mcd_c00280{transform:matrix(0.262495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262495,0.000000,0.000000,0.250000,0,0);}
.m123_c00280{transform:matrix(0.262765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262765,0.000000,0.000000,0.250000,0,0);}
.m35_c00280{transform:matrix(0.263155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263155,0.000000,0.000000,0.250000,0,0);}
.m3f_c00280{transform:matrix(0.263290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263290,0.000000,0.000000,0.250000,0,0);}
.m9_c00280{transform:matrix(0.263505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263505,0.000000,0.000000,0.250000,0,0);}
.me4_c00280{transform:matrix(0.263570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263570,0.000000,0.000000,0.250000,0,0);}
.m5c_c00280{transform:matrix(0.263590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263590,0.000000,0.000000,0.250000,0,0);}
.mcb_c00280{transform:matrix(0.264385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264385,0.000000,0.000000,0.250000,0,0);}
.me0_c00280{transform:matrix(0.264490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264490,0.000000,0.000000,0.250000,0,0);}
.m82_c00280{transform:matrix(0.265360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265360,0.000000,0.000000,0.250000,0,0);}
.m10_c00280{transform:matrix(0.265415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265415,0.000000,0.000000,0.250000,0,0);}
.m60_c00280{transform:matrix(0.265585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265585,0.000000,0.000000,0.250000,0,0);}
.m112_c00280{transform:matrix(0.265655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265655,0.000000,0.000000,0.250000,0,0);}
.mc1_c00280{transform:matrix(0.266095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266095,0.000000,0.000000,0.250000,0,0);}
.m89_c00280{transform:matrix(0.266740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266740,0.000000,0.000000,0.250000,0,0);}
.m93_c00280{transform:matrix(0.266975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266975,0.000000,0.000000,0.250000,0,0);}
.m12_c00280{transform:matrix(0.267385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267385,0.000000,0.000000,0.250000,0,0);}
.m7b_c00280{transform:matrix(0.267415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267415,0.000000,0.000000,0.250000,0,0);}
.mc4_c00280{transform:matrix(0.267655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267655,0.000000,0.000000,0.250000,0,0);}
.m86_c00280{transform:matrix(0.268115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268115,0.000000,0.000000,0.250000,0,0);}
.m8d_c00280{transform:matrix(0.268125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268125,0.000000,0.000000,0.250000,0,0);}
.m113_c00280{transform:matrix(0.268150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268150,0.000000,0.000000,0.250000,0,0);}
.m30_c00280{transform:matrix(0.268345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268345,0.000000,0.000000,0.250000,0,0);}
.mcf_c00280{transform:matrix(0.268665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268665,0.000000,0.000000,0.250000,0,0);}
.mf7_c00280{transform:matrix(0.269615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269615,0.000000,0.000000,0.250000,0,0);}
.mb_c00280{transform:matrix(0.269695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269695,0.000000,0.000000,0.250000,0,0);}
.m8b_c00280{transform:matrix(0.270165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270165,0.000000,0.000000,0.250000,0,0);}
.m4_c00280{transform:matrix(0.270465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270465,0.000000,0.000000,0.250000,0,0);}
.m33_c00280{transform:matrix(0.270720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270720,0.000000,0.000000,0.250000,0,0);}
.mfa_c00280{transform:matrix(0.270820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270820,0.000000,0.000000,0.250000,0,0);}
.m38_c00280{transform:matrix(0.271035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271035,0.000000,0.000000,0.250000,0,0);}
.mb6_c00280{transform:matrix(0.271040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271040,0.000000,0.000000,0.250000,0,0);}
.mc5_c00280{transform:matrix(0.271525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271525,0.000000,0.000000,0.250000,0,0);}
.me2_c00280{transform:matrix(0.271560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271560,0.000000,0.000000,0.250000,0,0);}
.m59_c00280{transform:matrix(0.271635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271635,0.000000,0.000000,0.250000,0,0);}
.m96_c00280{transform:matrix(0.271895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271895,0.000000,0.000000,0.250000,0,0);}
.mbc_c00280{transform:matrix(0.272020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272020,0.000000,0.000000,0.250000,0,0);}
.m80_c00280{transform:matrix(0.272105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272105,0.000000,0.000000,0.250000,0,0);}
.m14_c00280{transform:matrix(0.272720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272720,0.000000,0.000000,0.250000,0,0);}
.mf8_c00280{transform:matrix(0.272865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272865,0.000000,0.000000,0.250000,0,0);}
.mca_c00280{transform:matrix(0.273060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273060,0.000000,0.000000,0.250000,0,0);}
.m2e_c00280{transform:matrix(0.273865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273865,0.000000,0.000000,0.250000,0,0);}
.mf5_c00280{transform:matrix(0.274630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274630,0.000000,0.000000,0.250000,0,0);}
.m9a_c00280{transform:matrix(0.274675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274675,0.000000,0.000000,0.250000,0,0);}
.m95_c00280{transform:matrix(0.275200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275200,0.000000,0.000000,0.250000,0,0);}
.m67_c00280{transform:matrix(0.275370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275370,0.000000,0.000000,0.250000,0,0);}
.m64_c00280{transform:matrix(0.276255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276255,0.000000,0.000000,0.250000,0,0);}
.m3d_c00280{transform:matrix(0.276450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276450,0.000000,0.000000,0.250000,0,0);}
.mbb_c00280{transform:matrix(0.276610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276610,0.000000,0.000000,0.250000,0,0);}
.me9_c00280{transform:matrix(0.278805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278805,0.000000,0.000000,0.250000,0,0);}
.m98_c00280{transform:matrix(0.279280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279280,0.000000,0.000000,0.250000,0,0);}
.m7_c00280{transform:matrix(0.279360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279360,0.000000,0.000000,0.250000,0,0);}
.me8_c00280{transform:matrix(0.279650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279650,0.000000,0.000000,0.250000,0,0);}
.m15_c00280{transform:matrix(0.280370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280370,0.000000,0.000000,0.250000,0,0);}
.me1_c00280{transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);}
.mc8_c00280{transform:matrix(0.281950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281950,0.000000,0.000000,0.250000,0,0);}
.m3a_c00280{transform:matrix(0.283020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283020,0.000000,0.000000,0.250000,0,0);}
.mbe_c00280{transform:matrix(0.284115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284115,0.000000,0.000000,0.250000,0,0);}
.mdc_c00280{transform:matrix(0.292365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292365,0.000000,0.000000,0.250000,0,0);}
.mb0_c00280{transform:matrix(0.300675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300675,0.000000,0.000000,0.250000,0,0);}
.m84_c00280{transform:matrix(0.307780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307780,0.000000,0.000000,0.250000,0,0);}
.m7d_c00280{transform:matrix(0.308360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308360,0.000000,0.000000,0.250000,0,0);}
.mda_c00280{transform:matrix(0.308370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308370,0.000000,0.000000,0.250000,0,0);}
.m5d_c00280{transform:matrix(0.310255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310255,0.000000,0.000000,0.250000,0,0);}
.m5e_c00280{transform:matrix(0.325970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325970,0.000000,0.000000,0.250000,0,0);}
.mf2_c00280{transform:matrix(0.338425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338425,0.000000,0.000000,0.250000,0,0);}
.m1_c00280{transform:matrix(0.463255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463255,0.000000,0.000000,0.250000,0,0);}
.v0_c00280{vertical-align:0.000000px;}
.ls0_c00280{letter-spacing:0.000000px;}
.sc__c00280{text-shadow:none;}
.sc0_c00280{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__c00280{-webkit-text-stroke:0px transparent;}
.sc0_c00280{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00280{word-spacing:0.000000px;}
.fc0_c00280{color:transparent;}
.fs0_c00280{font-size:72.000000px;}
.fs1_c00280{font-size:78.000000px;}
.fs3_c00280{font-size:84.000000px;}
.fs5_c00280{font-size:90.000000px;}
.fs2_c00280{font-size:96.000000px;}
.fs4_c00280{font-size:108.000000px;}
.y0_c00280{bottom:0.000000px;}
.y2a_c00280{bottom:85.171500px;}
.y29_c00280{bottom:116.002500px;}
.y28_c00280{bottom:147.505500px;}
.y27_c00280{bottom:180.871500px;}
.y26_c00280{bottom:212.031000px;}
.y25_c00280{bottom:243.000000px;}
.y24_c00280{bottom:275.217000px;}
.y23_c00280{bottom:306.493500px;}
.y22_c00280{bottom:338.476500px;}
.y21_c00280{bottom:370.129500px;}
.y20_c00280{bottom:401.724000px;}
.y1f_c00280{bottom:433.054500px;}
.y1e_c00280{bottom:465.736500px;}
.y1d_c00280{bottom:497.233500px;}
.y1c_c00280{bottom:528.022500px;}
.y1b_c00280{bottom:559.690500px;}
.y1a_c00280{bottom:590.394000px;}
.y19_c00280{bottom:622.083000px;}
.y18_c00280{bottom:654.103500px;}
.y17_c00280{bottom:686.415000px;}
.y16_c00280{bottom:717.636000px;}
.y15_c00280{bottom:749.952000px;}
.y14_c00280{bottom:781.273500px;}
.y13_c00280{bottom:814.137000px;}
.y12_c00280{bottom:845.088000px;}
.y11_c00280{bottom:876.631500px;}
.y10_c00280{bottom:907.209000px;}
.yf_c00280{bottom:938.985000px;}
.y4_c00280{bottom:967.951500px;}
.y5_c00280{bottom:968.407500px;}
.y6_c00280{bottom:968.613000px;}
.y7_c00280{bottom:968.806500px;}
.y8_c00280{bottom:969.534000px;}
.y9_c00280{bottom:969.922500px;}
.ya_c00280{bottom:970.062000px;}
.yb_c00280{bottom:970.653000px;}
.yc_c00280{bottom:970.923000px;}
.yd_c00280{bottom:971.250000px;}
.ye_c00280{bottom:971.767500px;}
.y3_c00280{bottom:1001.623500px;}
.y2_c00280{bottom:1032.649500px;}
.y1_c00280{bottom:1117.867500px;}
.h2_c00280{height:72.000000px;}
.h3_c00280{height:78.000000px;}
.h5_c00280{height:84.000000px;}
.h7_c00280{height:90.000000px;}
.h4_c00280{height:96.000000px;}
.h6_c00280{height:108.000000px;}
.h1_c00280{height:1165.500000px;}
.h0_c00280{height:1165.800000px;}
.w0_c00280{width:915.000000px;}
.x0_c00280{left:0.000000px;}
.x8d_c00280{left:139.860000px;}
.x89_c00280{left:144.720000px;}
.x8e_c00280{left:146.880000px;}
.x9b_c00280{left:150.660000px;}
.x3_c00280{left:153.090000px;}
.x10_c00280{left:154.170000px;}
.x40_c00280{left:155.520000px;}
.x52_c00280{left:156.600000px;}
.x4_c00280{left:175.230000px;}
.x11_c00280{left:187.380000px;}
.x60_c00280{left:190.080000px;}
.x24_c00280{left:198.180000px;}
.x6d_c00280{left:210.870000px;}
.x34_c00280{left:221.670000px;}
.x5_c00280{left:230.040000px;}
.x84_c00280{left:234.090000px;}
.x92_c00280{left:235.170000px;}
.x1f_c00280{left:241.383000px;}
.x4b_c00280{left:243.000000px;}
.x7e_c00280{left:245.160000px;}
.x98_c00280{left:246.240000px;}
.x58_c00280{left:254.880000px;}
.x18_c00280{left:264.420000px;}
.x79_c00280{left:265.680000px;}
.x3c_c00280{left:266.760000px;}
.x64_c00280{left:267.840000px;}
.x9c_c00280{left:269.460000px;}
.x2c_c00280{left:274.860000px;}
.x53_c00280{left:277.020000px;}
.x7f_c00280{left:278.100000px;}
.x12_c00280{left:287.010000px;}
.x59_c00280{left:288.360000px;}
.x9d_c00280{left:289.440000px;}
.x6_c00280{left:296.730000px;}
.x62_c00280{left:298.620000px;}
.x8a_c00280{left:300.510000px;}
.x4c_c00280{left:309.150000px;}
.x75_c00280{left:311.310000px;}
.x2d_c00280{left:319.410000px;}
.x5a_c00280{left:321.570000px;}
.x9e_c00280{left:324.000000px;}
.x7_c00280{left:329.400000px;}
.x68_c00280{left:331.290000px;}
.x6e_c00280{left:332.640000px;}
.x25_c00280{left:340.740000px;}
.x72_c00280{left:342.360000px;}
.x8f_c00280{left:344.790000px;}
.x35_c00280{left:352.620000px;}
.x93_c00280{left:355.590000px;}
.x1_c00280{left:362.070000px;}
.x20_c00280{left:363.963000px;}
.x80_c00280{left:365.040000px;}
.x85_c00280{left:366.390000px;}
.x7a_c00280{left:367.740000px;}
.x8_c00280{left:372.330000px;}
.x41_c00280{left:374.760000px;}
.x63_c00280{left:375.840000px;}
.x9f_c00280{left:378.270000px;}
.x46_c00280{left:385.290000px;}
.x90_c00280{left:389.070000px;}
.x2_c00280{left:396.360000px;}
.x5b_c00280{left:407.430000px;}
.x6f_c00280{left:408.780000px;}
.x65_c00280{left:409.860000px;}
.x19_c00280{left:417.783000px;}
.x76_c00280{left:420.930000px;}
.x36_c00280{left:429.300000px;}
.x73_c00280{left:430.380000px;}
.xa3_c00280{left:432.270000px;}
.x99_c00280{left:434.160000px;}
.x54_c00280{left:440.640000px;}
.x7b_c00280{left:441.720000px;}
.x5c_c00280{left:442.800000px;}
.x94_c00280{left:444.960000px;}
.x2e_c00280{left:450.900000px;}
.x81_c00280{left:456.030000px;}
.x13_c00280{left:461.160000px;}
.x6b_c00280{left:463.050000px;}
.x86_c00280{left:464.670000px;}
.x9_c00280{left:471.960000px;}
.x3d_c00280{left:473.580000px;}
.x82_c00280{left:475.470000px;}
.x1a_c00280{left:482.563500px;}
.x4d_c00280{left:484.110000px;}
.x8b_c00280{left:487.350000px;}
.x26_c00280{left:494.100000px;}
.x2f_c00280{left:495.450000px;}
.x87_c00280{left:496.800000px;}
.xa0_c00280{left:498.420000px;}
.x1b_c00280{left:505.806000px;}
.x37_c00280{left:507.870000px;}
.x69_c00280{left:509.760000px;}
.xa_c00280{left:516.240000px;}
.x47_c00280{left:517.590000px;}
.x70_c00280{left:519.750000px;}
.x14_c00280{left:526.770000px;}
.x55_c00280{left:528.390000px;}
.x38_c00280{left:530.550000px;}
.x27_c00280{left:538.920000px;}
.x5d_c00280{left:541.080000px;}
.x30_c00280{left:550.800000px;}
.x95_c00280{left:551.880000px;}
.x42_c00280{left:561.600000px;}
.x56_c00280{left:563.490000px;}
.x3e_c00280{left:572.670000px;}
.x74_c00280{left:574.830000px;}
.x71_c00280{left:584.280000px;}
.x96_c00280{left:586.170000px;}
.xb_c00280{left:592.650000px;}
.x39_c00280{left:594.000000px;}
.x7c_c00280{left:595.350000px;}
.xa1_c00280{left:597.240000px;}
.x1c_c00280{left:604.333500px;}
.x48_c00280{left:616.950000px;}
.x4e_c00280{left:627.210000px;}
.x97_c00280{left:629.370000px;}
.x28_c00280{left:636.930000px;}
.x21_c00280{left:638.823000px;}
.x91_c00280{left:640.170000px;}
.x15_c00280{left:648.810000px;}
.x6a_c00280{left:650.700000px;}
.x88_c00280{left:652.050000px;}
.x31_c00280{left:658.800000px;}
.x6c_c00280{left:662.040000px;}
.xc_c00280{left:669.870000px;}
.x3a_c00280{left:670.950000px;}
.x49_c00280{left:672.030000px;}
.x77_c00280{left:673.110000px;}
.x9a_c00280{left:676.620000px;}
.x29_c00280{left:682.020000px;}
.x5e_c00280{left:683.100000px;}
.x8c_c00280{left:684.180000px;}
.x61_c00280{left:688.500000px;}
.x32_c00280{left:693.630000px;}
.x1d_c00280{left:703.981500px;}
.x66_c00280{left:705.780000px;}
.x57_c00280{left:716.850000px;}
.x78_c00280{left:717.930000px;}
.x22_c00280{left:725.223000px;}
.x3f_c00280{left:727.380000px;}
.x4f_c00280{left:737.370000px;}
.x43_c00280{left:739.260000px;}
.x16_c00280{left:746.280000px;}
.x2a_c00280{left:747.630000px;}
.xd_c00280{left:757.350000px;}
.x23_c00280{left:758.703000px;}
.x44_c00280{left:759.780000px;}
.x17_c00280{left:769.500000px;}
.x50_c00280{left:771.390000px;}
.xe_c00280{left:780.300000px;}
.x4a_c00280{left:782.190000px;}
.x1e_c00280{left:790.110000px;}
.x45_c00280{left:792.720000px;}
.x83_c00280{left:794.070000px;}
.x3b_c00280{left:803.520000px;}
.xa2_c00280{left:804.870000px;}
.x2b_c00280{left:812.430000px;}
.x33_c00280{left:813.510000px;}
.x51_c00280{left:815.940000px;}
.x7d_c00280{left:818.100000px;}
.x67_c00280{left:824.850000px;}
.x5f_c00280{left:827.820000px;}
.xf_c00280{left:853.470000px;}
@media print{
.v0_c00280{vertical-align:0.000000pt;}
.ls0_c00280{letter-spacing:0.000000pt;}
.ws0_c00280{word-spacing:0.000000pt;}
.fs0_c00280{font-size:64.000000pt;}
.fs1_c00280{font-size:69.333333pt;}
.fs3_c00280{font-size:74.666667pt;}
.fs5_c00280{font-size:80.000000pt;}
.fs2_c00280{font-size:85.333333pt;}
.fs4_c00280{font-size:96.000000pt;}
.y0_c00280{bottom:0.000000pt;}
.y2a_c00280{bottom:75.708000pt;}
.y29_c00280{bottom:103.113333pt;}
.y28_c00280{bottom:131.116000pt;}
.y27_c00280{bottom:160.774667pt;}
.y26_c00280{bottom:188.472000pt;}
.y25_c00280{bottom:216.000000pt;}
.y24_c00280{bottom:244.637333pt;}
.y23_c00280{bottom:272.438667pt;}
.y22_c00280{bottom:300.868000pt;}
.y21_c00280{bottom:329.004000pt;}
.y20_c00280{bottom:357.088000pt;}
.y1f_c00280{bottom:384.937333pt;}
.y1e_c00280{bottom:413.988000pt;}
.y1d_c00280{bottom:441.985333pt;}
.y1c_c00280{bottom:469.353333pt;}
.y1b_c00280{bottom:497.502667pt;}
.y1a_c00280{bottom:524.794667pt;}
.y19_c00280{bottom:552.962667pt;}
.y18_c00280{bottom:581.425333pt;}
.y17_c00280{bottom:610.146667pt;}
.y16_c00280{bottom:637.898667pt;}
.y15_c00280{bottom:666.624000pt;}
.y14_c00280{bottom:694.465333pt;}
.y13_c00280{bottom:723.677333pt;}
.y12_c00280{bottom:751.189333pt;}
.y11_c00280{bottom:779.228000pt;}
.y10_c00280{bottom:806.408000pt;}
.yf_c00280{bottom:834.653333pt;}
.y4_c00280{bottom:860.401333pt;}
.y5_c00280{bottom:860.806667pt;}
.y6_c00280{bottom:860.989333pt;}
.y7_c00280{bottom:861.161333pt;}
.y8_c00280{bottom:861.808000pt;}
.y9_c00280{bottom:862.153333pt;}
.ya_c00280{bottom:862.277333pt;}
.yb_c00280{bottom:862.802667pt;}
.yc_c00280{bottom:863.042667pt;}
.yd_c00280{bottom:863.333333pt;}
.ye_c00280{bottom:863.793333pt;}
.y3_c00280{bottom:890.332000pt;}
.y2_c00280{bottom:917.910667pt;}
.y1_c00280{bottom:993.660000pt;}
.h2_c00280{height:64.000000pt;}
.h3_c00280{height:69.333333pt;}
.h5_c00280{height:74.666667pt;}
.h7_c00280{height:80.000000pt;}
.h4_c00280{height:85.333333pt;}
.h6_c00280{height:96.000000pt;}
.h1_c00280{height:1036.000000pt;}
.h0_c00280{height:1036.266667pt;}
.w0_c00280{width:813.333333pt;}
.x0_c00280{left:0.000000pt;}
.x8d_c00280{left:124.320000pt;}
.x89_c00280{left:128.640000pt;}
.x8e_c00280{left:130.560000pt;}
.x9b_c00280{left:133.920000pt;}
.x3_c00280{left:136.080000pt;}
.x10_c00280{left:137.040000pt;}
.x40_c00280{left:138.240000pt;}
.x52_c00280{left:139.200000pt;}
.x4_c00280{left:155.760000pt;}
.x11_c00280{left:166.560000pt;}
.x60_c00280{left:168.960000pt;}
.x24_c00280{left:176.160000pt;}
.x6d_c00280{left:187.440000pt;}
.x34_c00280{left:197.040000pt;}
.x5_c00280{left:204.480000pt;}
.x84_c00280{left:208.080000pt;}
.x92_c00280{left:209.040000pt;}
.x1f_c00280{left:214.562667pt;}
.x4b_c00280{left:216.000000pt;}
.x7e_c00280{left:217.920000pt;}
.x98_c00280{left:218.880000pt;}
.x58_c00280{left:226.560000pt;}
.x18_c00280{left:235.040000pt;}
.x79_c00280{left:236.160000pt;}
.x3c_c00280{left:237.120000pt;}
.x64_c00280{left:238.080000pt;}
.x9c_c00280{left:239.520000pt;}
.x2c_c00280{left:244.320000pt;}
.x53_c00280{left:246.240000pt;}
.x7f_c00280{left:247.200000pt;}
.x12_c00280{left:255.120000pt;}
.x59_c00280{left:256.320000pt;}
.x9d_c00280{left:257.280000pt;}
.x6_c00280{left:263.760000pt;}
.x62_c00280{left:265.440000pt;}
.x8a_c00280{left:267.120000pt;}
.x4c_c00280{left:274.800000pt;}
.x75_c00280{left:276.720000pt;}
.x2d_c00280{left:283.920000pt;}
.x5a_c00280{left:285.840000pt;}
.x9e_c00280{left:288.000000pt;}
.x7_c00280{left:292.800000pt;}
.x68_c00280{left:294.480000pt;}
.x6e_c00280{left:295.680000pt;}
.x25_c00280{left:302.880000pt;}
.x72_c00280{left:304.320000pt;}
.x8f_c00280{left:306.480000pt;}
.x35_c00280{left:313.440000pt;}
.x93_c00280{left:316.080000pt;}
.x1_c00280{left:321.840000pt;}
.x20_c00280{left:323.522667pt;}
.x80_c00280{left:324.480000pt;}
.x85_c00280{left:325.680000pt;}
.x7a_c00280{left:326.880000pt;}
.x8_c00280{left:330.960000pt;}
.x41_c00280{left:333.120000pt;}
.x63_c00280{left:334.080000pt;}
.x9f_c00280{left:336.240000pt;}
.x46_c00280{left:342.480000pt;}
.x90_c00280{left:345.840000pt;}
.x2_c00280{left:352.320000pt;}
.x5b_c00280{left:362.160000pt;}
.x6f_c00280{left:363.360000pt;}
.x65_c00280{left:364.320000pt;}
.x19_c00280{left:371.362667pt;}
.x76_c00280{left:374.160000pt;}
.x36_c00280{left:381.600000pt;}
.x73_c00280{left:382.560000pt;}
.xa3_c00280{left:384.240000pt;}
.x99_c00280{left:385.920000pt;}
.x54_c00280{left:391.680000pt;}
.x7b_c00280{left:392.640000pt;}
.x5c_c00280{left:393.600000pt;}
.x94_c00280{left:395.520000pt;}
.x2e_c00280{left:400.800000pt;}
.x81_c00280{left:405.360000pt;}
.x13_c00280{left:409.920000pt;}
.x6b_c00280{left:411.600000pt;}
.x86_c00280{left:413.040000pt;}
.x9_c00280{left:419.520000pt;}
.x3d_c00280{left:420.960000pt;}
.x82_c00280{left:422.640000pt;}
.x1a_c00280{left:428.945333pt;}
.x4d_c00280{left:430.320000pt;}
.x8b_c00280{left:433.200000pt;}
.x26_c00280{left:439.200000pt;}
.x2f_c00280{left:440.400000pt;}
.x87_c00280{left:441.600000pt;}
.xa0_c00280{left:443.040000pt;}
.x1b_c00280{left:449.605333pt;}
.x37_c00280{left:451.440000pt;}
.x69_c00280{left:453.120000pt;}
.xa_c00280{left:458.880000pt;}
.x47_c00280{left:460.080000pt;}
.x70_c00280{left:462.000000pt;}
.x14_c00280{left:468.240000pt;}
.x55_c00280{left:469.680000pt;}
.x38_c00280{left:471.600000pt;}
.x27_c00280{left:479.040000pt;}
.x5d_c00280{left:480.960000pt;}
.x30_c00280{left:489.600000pt;}
.x95_c00280{left:490.560000pt;}
.x42_c00280{left:499.200000pt;}
.x56_c00280{left:500.880000pt;}
.x3e_c00280{left:509.040000pt;}
.x74_c00280{left:510.960000pt;}
.x71_c00280{left:519.360000pt;}
.x96_c00280{left:521.040000pt;}
.xb_c00280{left:526.800000pt;}
.x39_c00280{left:528.000000pt;}
.x7c_c00280{left:529.200000pt;}
.xa1_c00280{left:530.880000pt;}
.x1c_c00280{left:537.185333pt;}
.x48_c00280{left:548.400000pt;}
.x4e_c00280{left:557.520000pt;}
.x97_c00280{left:559.440000pt;}
.x28_c00280{left:566.160000pt;}
.x21_c00280{left:567.842667pt;}
.x91_c00280{left:569.040000pt;}
.x15_c00280{left:576.720000pt;}
.x6a_c00280{left:578.400000pt;}
.x88_c00280{left:579.600000pt;}
.x31_c00280{left:585.600000pt;}
.x6c_c00280{left:588.480000pt;}
.xc_c00280{left:595.440000pt;}
.x3a_c00280{left:596.400000pt;}
.x49_c00280{left:597.360000pt;}
.x77_c00280{left:598.320000pt;}
.x9a_c00280{left:601.440000pt;}
.x29_c00280{left:606.240000pt;}
.x5e_c00280{left:607.200000pt;}
.x8c_c00280{left:608.160000pt;}
.x61_c00280{left:612.000000pt;}
.x32_c00280{left:616.560000pt;}
.x1d_c00280{left:625.761333pt;}
.x66_c00280{left:627.360000pt;}
.x57_c00280{left:637.200000pt;}
.x78_c00280{left:638.160000pt;}
.x22_c00280{left:644.642667pt;}
.x3f_c00280{left:646.560000pt;}
.x4f_c00280{left:655.440000pt;}
.x43_c00280{left:657.120000pt;}
.x16_c00280{left:663.360000pt;}
.x2a_c00280{left:664.560000pt;}
.xd_c00280{left:673.200000pt;}
.x23_c00280{left:674.402667pt;}
.x44_c00280{left:675.360000pt;}
.x17_c00280{left:684.000000pt;}
.x50_c00280{left:685.680000pt;}
.xe_c00280{left:693.600000pt;}
.x4a_c00280{left:695.280000pt;}
.x1e_c00280{left:702.320000pt;}
.x45_c00280{left:704.640000pt;}
.x83_c00280{left:705.840000pt;}
.x3b_c00280{left:714.240000pt;}
.xa2_c00280{left:715.440000pt;}
.x2b_c00280{left:722.160000pt;}
.x33_c00280{left:723.120000pt;}
.x51_c00280{left:725.280000pt;}
.x7d_c00280{left:727.200000pt;}
.x67_c00280{left:733.200000pt;}
.x5f_c00280{left:735.840000pt;}
.xf_c00280{left:758.640000pt;}
}





/* 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_c00281 {
    display:none;
  }
  .loading-indicator_c00281.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00281 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_c00281 { 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_c00281" -> "#page-container .classname_c00281")
 */
.pf_c00281 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00281 { /* 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_c00281.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00281 { /* 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_c00281 { /* 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_c00281 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00281 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00281 {overflow:visible;}
  }
}
.c_c00281 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00281 { /* 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_c00281:after { /* webkit #35443 */
  content: '';
}
.t_c00281:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00281 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 */
}
.__c00281 { /* 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_c00281 { /* info for Javascript */
  display:none;
}
.l_c00281 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00281 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00281 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00281: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_c00281 {
    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_c00281.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00281.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_c00281 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00281{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00281;src:url('chunks/assets/font_0a2c3bc433b660123849705f.woff2')format("woff");}.ff1_c00281{font-family:ff1_c00281;line-height:1.000000;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;}
.m0_c00281{transform:matrix(0.006915,1.382913,-0.249997,0.001250,0,0);-ms-transform:matrix(0.006915,1.382913,-0.249997,0.001250,0,0);-webkit-transform:matrix(0.006915,1.382913,-0.249997,0.001250,0,0);}
.v0_c00281{vertical-align:0.000000px;}
.ls0_c00281{letter-spacing:0.000000px;}
.sc__c00281{text-shadow:none;}
.sc0_c00281{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__c00281{-webkit-text-stroke:0px transparent;}
.sc0_c00281{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00281{word-spacing:0.000000px;}
.fc0_c00281{color:transparent;}
.fs0_c00281{font-size:18.000225px;}
.y0_c00281{bottom:0.000000px;}
.y1_c00281{bottom:1141.831500px;}
.h2_c00281{height:18.000225px;}
.h1_c00281{height:1165.500000px;}
.h0_c00281{height:1165.800000px;}
.w0_c00281{width:915.000000px;}
.x0_c00281{left:0.000000px;}
.x1_c00281{left:902.610000px;}
@media print{
.v0_c00281{vertical-align:0.000000pt;}
.ls0_c00281{letter-spacing:0.000000pt;}
.ws0_c00281{word-spacing:0.000000pt;}
.fs0_c00281{font-size:16.000200pt;}
.y0_c00281{bottom:0.000000pt;}
.y1_c00281{bottom:1014.961333pt;}
.h2_c00281{height:16.000200pt;}
.h1_c00281{height:1036.000000pt;}
.h0_c00281{height:1036.266667pt;}
.w0_c00281{width:813.333333pt;}
.x0_c00281{left:0.000000pt;}
.x1_c00281{left:802.320000pt;}
}





/* 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_c00282 {
    display:none;
  }
  .loading-indicator_c00282.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00282 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_c00282 { 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_c00282" -> "#page-container .classname_c00282")
 */
.pf_c00282 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00282 { /* 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_c00282.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00282 { /* 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_c00282 { /* 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_c00282 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00282 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00282 {overflow:visible;}
  }
}
.c_c00282 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00282 { /* 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_c00282:after { /* webkit #35443 */
  content: '';
}
.t_c00282:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00282 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 */
}
.__c00282 { /* 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_c00282 { /* info for Javascript */
  display:none;
}
.l_c00282 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00282 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00282 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00282: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_c00282 {
    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_c00282.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00282.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_c00282 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00282{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00282;src:url('chunks/assets/font_b11a17f404e7258299fdf971.woff2')format("woff");}.ff1_c00282{font-family:ff1_c00282;line-height:1.000000;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;}
.m54_c00282{transform:matrix(0.143205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143205,0.000000,0.000000,0.250000,0,0);}
.m35_c00282{transform:matrix(0.149330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149330,0.000000,0.000000,0.250000,0,0);}
.mb1_c00282{transform:matrix(0.151835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151835,0.000000,0.000000,0.250000,0,0);}
.m36_c00282{transform:matrix(0.154225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154225,0.000000,0.000000,0.250000,0,0);}
.m6d_c00282{transform:matrix(0.180040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180040,0.000000,0.000000,0.250000,0,0);}
.m6c_c00282{transform:matrix(0.181130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181130,0.000000,0.000000,0.250000,0,0);}
.m5a_c00282{transform:matrix(0.184115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184115,0.000000,0.000000,0.250000,0,0);}
.m6a_c00282{transform:matrix(0.184655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184655,0.000000,0.000000,0.250000,0,0);}
.m0_c00282{transform:matrix(0.185540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185540,0.000000,0.000000,0.250000,0,0);}
.m6e_c00282{transform:matrix(0.187615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187615,0.000000,0.000000,0.250000,0,0);}
.m70_c00282{transform:matrix(0.193960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193960,0.000000,0.000000,0.250000,0,0);}
.m26_c00282{transform:matrix(0.196355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196355,0.000000,0.000000,0.250000,0,0);}
.m5b_c00282{transform:matrix(0.196795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196795,0.000000,0.000000,0.250000,0,0);}
.m71_c00282{transform:matrix(0.198410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198410,0.000000,0.000000,0.250000,0,0);}
.ma3_c00282{transform:matrix(0.200440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200440,0.000000,0.000000,0.250000,0,0);}
.m8_c00282{transform:matrix(0.202580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202580,0.000000,0.000000,0.250000,0,0);}
.m6f_c00282{transform:matrix(0.203100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203100,0.000000,0.000000,0.250000,0,0);}
.md_c00282{transform:matrix(0.204655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204655,0.000000,0.000000,0.250000,0,0);}
.m2b_c00282{transform:matrix(0.204815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204815,0.000000,0.000000,0.250000,0,0);}
.m2a_c00282{transform:matrix(0.206425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206425,0.000000,0.000000,0.250000,0,0);}
.m69_c00282{transform:matrix(0.207230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207230,0.000000,0.000000,0.250000,0,0);}
.m55_c00282{transform:matrix(0.207425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207425,0.000000,0.000000,0.250000,0,0);}
.m6b_c00282{transform:matrix(0.209055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209055,0.000000,0.000000,0.250000,0,0);}
.m3c_c00282{transform:matrix(0.210545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210545,0.000000,0.000000,0.250000,0,0);}
.m27_c00282{transform:matrix(0.211215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211215,0.000000,0.000000,0.250000,0,0);}
.m3d_c00282{transform:matrix(0.211870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211870,0.000000,0.000000,0.250000,0,0);}
.m4b_c00282{transform:matrix(0.212610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212610,0.000000,0.000000,0.250000,0,0);}
.m58_c00282{transform:matrix(0.212835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212835,0.000000,0.000000,0.250000,0,0);}
.m8b_c00282{transform:matrix(0.215715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215715,0.000000,0.000000,0.250000,0,0);}
.m3a_c00282{transform:matrix(0.220190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220190,0.000000,0.000000,0.250000,0,0);}
.m86_c00282{transform:matrix(0.220300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220300,0.000000,0.000000,0.250000,0,0);}
.m5d_c00282{transform:matrix(0.220465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220465,0.000000,0.000000,0.250000,0,0);}
.m61_c00282{transform:matrix(0.220560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220560,0.000000,0.000000,0.250000,0,0);}
.mb_c00282{transform:matrix(0.220730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220730,0.000000,0.000000,0.250000,0,0);}
.m56_c00282{transform:matrix(0.224030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224030,0.000000,0.000000,0.250000,0,0);}
.m28_c00282{transform:matrix(0.224655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224655,0.000000,0.000000,0.250000,0,0);}
.m25_c00282{transform:matrix(0.226065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226065,0.000000,0.000000,0.250000,0,0);}
.m13_c00282{transform:matrix(0.226110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226110,0.000000,0.000000,0.250000,0,0);}
.mc_c00282{transform:matrix(0.227260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227260,0.000000,0.000000,0.250000,0,0);}
.m99_c00282{transform:matrix(0.227695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227695,0.000000,0.000000,0.250000,0,0);}
.m95_c00282{transform:matrix(0.227910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227910,0.000000,0.000000,0.250000,0,0);}
.ma7_c00282{transform:matrix(0.228040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228040,0.000000,0.000000,0.250000,0,0);}
.m59_c00282{transform:matrix(0.228110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228110,0.000000,0.000000,0.250000,0,0);}
.m82_c00282{transform:matrix(0.229195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229195,0.000000,0.000000,0.250000,0,0);}
.m60_c00282{transform:matrix(0.229220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229220,0.000000,0.000000,0.250000,0,0);}
.m33_c00282{transform:matrix(0.229435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229435,0.000000,0.000000,0.250000,0,0);}
.m9b_c00282{transform:matrix(0.230215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230215,0.000000,0.000000,0.250000,0,0);}
.m62_c00282{transform:matrix(0.230385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230385,0.000000,0.000000,0.250000,0,0);}
.m49_c00282{transform:matrix(0.230445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230445,0.000000,0.000000,0.250000,0,0);}
.maf_c00282{transform:matrix(0.230455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230455,0.000000,0.000000,0.250000,0,0);}
.m64_c00282{transform:matrix(0.230545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230545,0.000000,0.000000,0.250000,0,0);}
.m3f_c00282{transform:matrix(0.230765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230765,0.000000,0.000000,0.250000,0,0);}
.ma_c00282{transform:matrix(0.231700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231700,0.000000,0.000000,0.250000,0,0);}
.m97_c00282{transform:matrix(0.231950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231950,0.000000,0.000000,0.250000,0,0);}
.m47_c00282{transform:matrix(0.232105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232105,0.000000,0.000000,0.250000,0,0);}
.m5f_c00282{transform:matrix(0.232705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232705,0.000000,0.000000,0.250000,0,0);}
.m34_c00282{transform:matrix(0.232755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232755,0.000000,0.000000,0.250000,0,0);}
.m2d_c00282{transform:matrix(0.232930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232930,0.000000,0.000000,0.250000,0,0);}
.m2c_c00282{transform:matrix(0.233020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233020,0.000000,0.000000,0.250000,0,0);}
.m45_c00282{transform:matrix(0.233200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233200,0.000000,0.000000,0.250000,0,0);}
.m57_c00282{transform:matrix(0.233395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233395,0.000000,0.000000,0.250000,0,0);}
.m4c_c00282{transform:matrix(0.233425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233425,0.000000,0.000000,0.250000,0,0);}
.m40_c00282{transform:matrix(0.234085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234085,0.000000,0.000000,0.250000,0,0);}
.m17_c00282{transform:matrix(0.235120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235120,0.000000,0.000000,0.250000,0,0);}
.m96_c00282{transform:matrix(0.235325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235325,0.000000,0.000000,0.250000,0,0);}
.m89_c00282{transform:matrix(0.235920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235920,0.000000,0.000000,0.250000,0,0);}
.m2e_c00282{transform:matrix(0.236445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236445,0.000000,0.000000,0.250000,0,0);}
.m43_c00282{transform:matrix(0.236830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236830,0.000000,0.000000,0.250000,0,0);}
.ma9_c00282{transform:matrix(0.237170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237170,0.000000,0.000000,0.250000,0,0);}
.m5c_c00282{transform:matrix(0.238280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238280,0.000000,0.000000,0.250000,0,0);}
.m11_c00282{transform:matrix(0.238535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238535,0.000000,0.000000,0.250000,0,0);}
.me_c00282{transform:matrix(0.238645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238645,0.000000,0.000000,0.250000,0,0);}
.m68_c00282{transform:matrix(0.239070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239070,0.000000,0.000000,0.250000,0,0);}
.m7c_c00282{transform:matrix(0.239230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239230,0.000000,0.000000,0.250000,0,0);}
.m94_c00282{transform:matrix(0.239890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239890,0.000000,0.000000,0.250000,0,0);}
.m98_c00282{transform:matrix(0.240100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240100,0.000000,0.000000,0.250000,0,0);}
.m65_c00282{transform:matrix(0.240230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240230,0.000000,0.000000,0.250000,0,0);}
.m5e_c00282{transform:matrix(0.241805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241805,0.000000,0.000000,0.250000,0,0);}
.m66_c00282{transform:matrix(0.242165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242165,0.000000,0.000000,0.250000,0,0);}
.m39_c00282{transform:matrix(0.242630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242630,0.000000,0.000000,0.250000,0,0);}
.m8c_c00282{transform:matrix(0.242675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242675,0.000000,0.000000,0.250000,0,0);}
.m81_c00282{transform:matrix(0.243465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243465,0.000000,0.000000,0.250000,0,0);}
.m67_c00282{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.m8e_c00282{transform:matrix(0.243540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243540,0.000000,0.000000,0.250000,0,0);}
.m2_c00282{transform:matrix(0.243965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243965,0.000000,0.000000,0.250000,0,0);}
.m5_c00282{transform:matrix(0.244095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244095,0.000000,0.000000,0.250000,0,0);}
.m44_c00282{transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);}
.m4a_c00282{transform:matrix(0.244450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244450,0.000000,0.000000,0.250000,0,0);}
.mf_c00282{transform:matrix(0.245025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245025,0.000000,0.000000,0.250000,0,0);}
.m84_c00282{transform:matrix(0.245390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245390,0.000000,0.000000,0.250000,0,0);}
.m7e_c00282{transform:matrix(0.245575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245575,0.000000,0.000000,0.250000,0,0);}
.m4f_c00282{transform:matrix(0.245795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245795,0.000000,0.000000,0.250000,0,0);}
.m20_c00282{transform:matrix(0.245805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245805,0.000000,0.000000,0.250000,0,0);}
.ma0_c00282{transform:matrix(0.245860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245860,0.000000,0.000000,0.250000,0,0);}
.m41_c00282{transform:matrix(0.245990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245990,0.000000,0.000000,0.250000,0,0);}
.m10_c00282{transform:matrix(0.246085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246085,0.000000,0.000000,0.250000,0,0);}
.m91_c00282{transform:matrix(0.246185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246185,0.000000,0.000000,0.250000,0,0);}
.m8a_c00282{transform:matrix(0.246290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246290,0.000000,0.000000,0.250000,0,0);}
.m12_c00282{transform:matrix(0.246730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246730,0.000000,0.000000,0.250000,0,0);}
.m48_c00282{transform:matrix(0.246855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246855,0.000000,0.000000,0.250000,0,0);}
.m9a_c00282{transform:matrix(0.246940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246940,0.000000,0.000000,0.250000,0,0);}
.m24_c00282{transform:matrix(0.247035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247035,0.000000,0.000000,0.250000,0,0);}
.m90_c00282{transform:matrix(0.247425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247425,0.000000,0.000000,0.250000,0,0);}
.ma4_c00282{transform:matrix(0.247505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247505,0.000000,0.000000,0.250000,0,0);}
.m4_c00282{transform:matrix(0.247725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247725,0.000000,0.000000,0.250000,0,0);}
.m2f_c00282{transform:matrix(0.247935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247935,0.000000,0.000000,0.250000,0,0);}
.m29_c00282{transform:matrix(0.249520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249520,0.000000,0.000000,0.250000,0,0);}
.m1c_c00282{transform:matrix(0.249535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249535,0.000000,0.000000,0.250000,0,0);}
.m32_c00282{transform:matrix(0.249550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249550,0.000000,0.000000,0.250000,0,0);}
.m8d_c00282{transform:matrix(0.250830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250830,0.000000,0.000000,0.250000,0,0);}
.m73_c00282{transform:matrix(0.251200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251200,0.000000,0.000000,0.250000,0,0);}
.m14_c00282{transform:matrix(0.252355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252355,0.000000,0.000000,0.250000,0,0);}
.m79_c00282{transform:matrix(0.252485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252485,0.000000,0.000000,0.250000,0,0);}
.mac_c00282{transform:matrix(0.253380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253380,0.000000,0.000000,0.250000,0,0);}
.m3b_c00282{transform:matrix(0.253950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253950,0.000000,0.000000,0.250000,0,0);}
.m3_c00282{transform:matrix(0.254310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254310,0.000000,0.000000,0.250000,0,0);}
.m74_c00282{transform:matrix(0.254470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254470,0.000000,0.000000,0.250000,0,0);}
.m1e_c00282{transform:matrix(0.254615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254615,0.000000,0.000000,0.250000,0,0);}
.m7d_c00282{transform:matrix(0.254700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254700,0.000000,0.000000,0.250000,0,0);}
.m38_c00282{transform:matrix(0.254745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254745,0.000000,0.000000,0.250000,0,0);}
.m78_c00282{transform:matrix(0.254775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254775,0.000000,0.000000,0.250000,0,0);}
.m77_c00282{transform:matrix(0.255010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255010,0.000000,0.000000,0.250000,0,0);}
.m21_c00282{transform:matrix(0.255665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255665,0.000000,0.000000,0.250000,0,0);}
.m1a_c00282{transform:matrix(0.255935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255935,0.000000,0.000000,0.250000,0,0);}
.mb0_c00282{transform:matrix(0.256160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256160,0.000000,0.000000,0.250000,0,0);}
.m46_c00282{transform:matrix(0.256285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256285,0.000000,0.000000,0.250000,0,0);}
.mab_c00282{transform:matrix(0.256675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256675,0.000000,0.000000,0.250000,0,0);}
.mad_c00282{transform:matrix(0.256880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256880,0.000000,0.000000,0.250000,0,0);}
.m9c_c00282{transform:matrix(0.257420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257420,0.000000,0.000000,0.250000,0,0);}
.m15_c00282{transform:matrix(0.257550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257550,0.000000,0.000000,0.250000,0,0);}
.m1b_c00282{transform:matrix(0.257575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257575,0.000000,0.000000,0.250000,0,0);}
.m4e_c00282{transform:matrix(0.257595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257595,0.000000,0.000000,0.250000,0,0);}
.m16_c00282{transform:matrix(0.258075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258075,0.000000,0.000000,0.250000,0,0);}
.m3e_c00282{transform:matrix(0.258105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258105,0.000000,0.000000,0.250000,0,0);}
.ma8_c00282{transform:matrix(0.258145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258145,0.000000,0.000000,0.250000,0,0);}
.m6_c00282{transform:matrix(0.258525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258525,0.000000,0.000000,0.250000,0,0);}
.mae_c00282{transform:matrix(0.259215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259215,0.000000,0.000000,0.250000,0,0);}
.m75_c00282{transform:matrix(0.259615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259615,0.000000,0.000000,0.250000,0,0);}
.m42_c00282{transform:matrix(0.259655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259655,0.000000,0.000000,0.250000,0,0);}
.m51_c00282{transform:matrix(0.261045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261045,0.000000,0.000000,0.250000,0,0);}
.m50_c00282{transform:matrix(0.261220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261220,0.000000,0.000000,0.250000,0,0);}
.m63_c00282{transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);}
.m72_c00282{transform:matrix(0.264295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264295,0.000000,0.000000,0.250000,0,0);}
.ma5_c00282{transform:matrix(0.264475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264475,0.000000,0.000000,0.250000,0,0);}
.m7_c00282{transform:matrix(0.264765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264765,0.000000,0.000000,0.250000,0,0);}
.maa_c00282{transform:matrix(0.265105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265105,0.000000,0.000000,0.250000,0,0);}
.m53_c00282{transform:matrix(0.265605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265605,0.000000,0.000000,0.250000,0,0);}
.ma2_c00282{transform:matrix(0.265900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265900,0.000000,0.000000,0.250000,0,0);}
.m8f_c00282{transform:matrix(0.265910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265910,0.000000,0.000000,0.250000,0,0);}
.m52_c00282{transform:matrix(0.267165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267165,0.000000,0.000000,0.250000,0,0);}
.m9d_c00282{transform:matrix(0.267665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267665,0.000000,0.000000,0.250000,0,0);}
.m9e_c00282{transform:matrix(0.268015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268015,0.000000,0.000000,0.250000,0,0);}
.m93_c00282{transform:matrix(0.268655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268655,0.000000,0.000000,0.250000,0,0);}
.m31_c00282{transform:matrix(0.268680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268680,0.000000,0.000000,0.250000,0,0);}
.m9f_c00282{transform:matrix(0.269660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269660,0.000000,0.000000,0.250000,0,0);}
.m83_c00282{transform:matrix(0.270075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270075,0.000000,0.000000,0.250000,0,0);}
.m1d_c00282{transform:matrix(0.270315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270315,0.000000,0.000000,0.250000,0,0);}
.m18_c00282{transform:matrix(0.270395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270395,0.000000,0.000000,0.250000,0,0);}
.m87_c00282{transform:matrix(0.270820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270820,0.000000,0.000000,0.250000,0,0);}
.m30_c00282{transform:matrix(0.271195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271195,0.000000,0.000000,0.250000,0,0);}
.m7b_c00282{transform:matrix(0.273040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273040,0.000000,0.000000,0.250000,0,0);}
.m76_c00282{transform:matrix(0.273280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273280,0.000000,0.000000,0.250000,0,0);}
.m7f_c00282{transform:matrix(0.273460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273460,0.000000,0.000000,0.250000,0,0);}
.m1f_c00282{transform:matrix(0.273470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273470,0.000000,0.000000,0.250000,0,0);}
.m22_c00282{transform:matrix(0.273775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273775,0.000000,0.000000,0.250000,0,0);}
.m7a_c00282{transform:matrix(0.274130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274130,0.000000,0.000000,0.250000,0,0);}
.ma6_c00282{transform:matrix(0.274145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274145,0.000000,0.000000,0.250000,0,0);}
.m80_c00282{transform:matrix(0.274290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274290,0.000000,0.000000,0.250000,0,0);}
.m4d_c00282{transform:matrix(0.274440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274440,0.000000,0.000000,0.250000,0,0);}
.m23_c00282{transform:matrix(0.274470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274470,0.000000,0.000000,0.250000,0,0);}
.m19_c00282{transform:matrix(0.275260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275260,0.000000,0.000000,0.250000,0,0);}
.m88_c00282{transform:matrix(0.276305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276305,0.000000,0.000000,0.250000,0,0);}
.m92_c00282{transform:matrix(0.276715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276715,0.000000,0.000000,0.250000,0,0);}
.ma1_c00282{transform:matrix(0.281800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281800,0.000000,0.000000,0.250000,0,0);}
.m9_c00282{transform:matrix(0.307235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307235,0.000000,0.000000,0.250000,0,0);}
.m85_c00282{transform:matrix(0.307760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307760,0.000000,0.000000,0.250000,0,0);}
.m37_c00282{transform:matrix(0.345010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345010,0.000000,0.000000,0.250000,0,0);}
.m1_c00282{transform:matrix(0.499065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.499065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.499065,0.000000,0.000000,0.250000,0,0);}
.v0_c00282{vertical-align:0.000000px;}
.ls0_c00282{letter-spacing:0.000000px;}
.sc__c00282{text-shadow:none;}
.sc0_c00282{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__c00282{-webkit-text-stroke:0px transparent;}
.sc0_c00282{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00282{word-spacing:0.000000px;}
.fc0_c00282{color:transparent;}
.fs0_c00282{font-size:60.000000px;}
.fs2_c00282{font-size:72.000000px;}
.fs1_c00282{font-size:78.000000px;}
.fs3_c00282{font-size:84.000000px;}
.fs4_c00282{font-size:96.000000px;}
.y0_c00282{bottom:0.000000px;}
.y20_c00282{bottom:96.594000px;}
.y1f_c00282{bottom:128.790000px;}
.y1e_c00282{bottom:161.787000px;}
.y1d_c00282{bottom:193.050000px;}
.y1c_c00282{bottom:224.718000px;}
.y1b_c00282{bottom:256.365000px;}
.y1a_c00282{bottom:287.629500px;}
.y19_c00282{bottom:318.960000px;}
.y18_c00282{bottom:350.730000px;}
.y17_c00282{bottom:382.590000px;}
.y16_c00282{bottom:414.390000px;}
.y15_c00282{bottom:446.580000px;}
.y14_c00282{bottom:477.636000px;}
.y13_c00282{bottom:509.490000px;}
.y12_c00282{bottom:538.771500px;}
.y11_c00282{bottom:570.510000px;}
.y10_c00282{bottom:602.121000px;}
.yf_c00282{bottom:633.444000px;}
.ye_c00282{bottom:665.950500px;}
.yd_c00282{bottom:697.950000px;}
.yc_c00282{bottom:750.484500px;}
.yb_c00282{bottom:782.728500px;}
.ya_c00282{bottom:815.170500px;}
.y9_c00282{bottom:846.718500px;}
.y8_c00282{bottom:877.777500px;}
.y7_c00282{bottom:908.382000px;}
.y6_c00282{bottom:940.987500px;}
.y5_c00282{bottom:972.879000px;}
.y4_c00282{bottom:1004.388000px;}
.y3_c00282{bottom:1035.579000px;}
.y2_c00282{bottom:1067.731500px;}
.y1_c00282{bottom:1113.219000px;}
.h2_c00282{height:60.000000px;}
.h4_c00282{height:72.000000px;}
.h3_c00282{height:78.000000px;}
.h5_c00282{height:84.000000px;}
.h6_c00282{height:96.000000px;}
.h1_c00282{height:1165.500000px;}
.h0_c00282{height:1165.800000px;}
.w0_c00282{width:915.000000px;}
.x0_c00282{left:0.000000px;}
.x2a_c00282{left:157.680000px;}
.x31_c00282{left:158.760000px;}
.x2b_c00282{left:179.820000px;}
.x3b_c00282{left:192.510000px;}
.x18_c00282{left:204.660000px;}
.x15_c00282{left:213.300000px;}
.x8_c00282{left:214.650000px;}
.x9_c00282{left:234.090000px;}
.x1e_c00282{left:245.700000px;}
.xe_c00282{left:256.500000px;}
.x32_c00282{left:257.580000px;}
.x4_c00282{left:267.840000px;}
.x43_c00282{left:268.920000px;}
.x21_c00282{left:270.270000px;}
.x3f_c00282{left:271.350000px;}
.xa_c00282{left:277.830000px;}
.x12_c00282{left:278.910000px;}
.x49_c00282{left:279.990000px;}
.x19_c00282{left:290.520000px;}
.x4d_c00282{left:292.680000px;}
.x3d_c00282{left:294.030000px;}
.xf_c00282{left:301.050000px;}
.x53_c00282{left:302.130000px;}
.xb_c00282{left:311.580000px;}
.x51_c00282{left:313.740000px;}
.x5_c00282{left:323.460000px;}
.x10_c00282{left:333.450000px;}
.x1a_c00282{left:334.800000px;}
.x4a_c00282{left:336.420000px;}
.x16_c00282{left:345.600000px;}
.x52_c00282{left:346.680000px;}
.xc_c00282{left:354.240000px;}
.x40_c00282{left:355.860000px;}
.x1f_c00282{left:356.940000px;}
.x1b_c00282{left:366.930000px;}
.x47_c00282{left:368.010000px;}
.x6_c00282{left:376.380000px;}
.x11_c00282{left:378.000000px;}
.x36_c00282{left:379.080000px;}
.xd_c00282{left:389.070000px;}
.x22_c00282{left:391.230000px;}
.x1c_c00282{left:399.330000px;}
.x3c_c00282{left:400.950000px;}
.x3_c00282{left:409.860000px;}
.x17_c00282{left:410.940000px;}
.x1_c00282{left:422.010000px;}
.x44_c00282{left:423.090000px;}
.x1d_c00282{left:432.810000px;}
.x20_c00282{left:434.970000px;}
.x2_c00282{left:444.690000px;}
.x48_c00282{left:456.300000px;}
.x7_c00282{left:465.210000px;}
.x4e_c00282{left:467.370000px;}
.x58_c00282{left:469.260000px;}
.x13_c00282{left:475.470000px;}
.x45_c00282{left:476.550000px;}
.x23_c00282{left:477.900000px;}
.x4c_c00282{left:488.700000px;}
.x14_c00282{left:498.150000px;}
.x37_c00282{left:499.500000px;}
.x2c_c00282{left:509.760000px;}
.x24_c00282{left:510.840000px;}
.x46_c00282{left:521.370000px;}
.x33_c00282{left:542.700000px;}
.x4b_c00282{left:544.050000px;}
.x54_c00282{left:546.750000px;}
.x3e_c00282{left:554.310000px;}
.x4f_c00282{left:555.930000px;}
.x2d_c00282{left:564.840000px;}
.x55_c00282{left:566.190000px;}
.x34_c00282{left:576.450000px;}
.x41_c00282{left:586.980000px;}
.x38_c00282{left:599.400000px;}
.x25_c00282{left:609.390000px;}
.x56_c00282{left:610.740000px;}
.x59_c00282{left:620.730000px;}
.x39_c00282{left:632.070000px;}
.x26_c00282{left:642.060000px;}
.x57_c00282{left:643.410000px;}
.x35_c00282{left:654.210000px;}
.x42_c00282{left:666.900000px;}
.x27_c00282{left:673.920000px;}
.x2e_c00282{left:675.270000px;}
.x50_c00282{left:678.240000px;}
.x5a_c00282{left:699.840000px;}
.x2f_c00282{left:752.490000px;}
.x28_c00282{left:773.010000px;}
.x30_c00282{left:785.160000px;}
.x29_c00282{left:816.750000px;}
.x3a_c00282{left:817.830000px;}
@media print{
.v0_c00282{vertical-align:0.000000pt;}
.ls0_c00282{letter-spacing:0.000000pt;}
.ws0_c00282{word-spacing:0.000000pt;}
.fs0_c00282{font-size:53.333333pt;}
.fs2_c00282{font-size:64.000000pt;}
.fs1_c00282{font-size:69.333333pt;}
.fs3_c00282{font-size:74.666667pt;}
.fs4_c00282{font-size:85.333333pt;}
.y0_c00282{bottom:0.000000pt;}
.y20_c00282{bottom:85.861333pt;}
.y1f_c00282{bottom:114.480000pt;}
.y1e_c00282{bottom:143.810667pt;}
.y1d_c00282{bottom:171.600000pt;}
.y1c_c00282{bottom:199.749333pt;}
.y1b_c00282{bottom:227.880000pt;}
.y1a_c00282{bottom:255.670667pt;}
.y19_c00282{bottom:283.520000pt;}
.y18_c00282{bottom:311.760000pt;}
.y17_c00282{bottom:340.080000pt;}
.y16_c00282{bottom:368.346667pt;}
.y15_c00282{bottom:396.960000pt;}
.y14_c00282{bottom:424.565333pt;}
.y13_c00282{bottom:452.880000pt;}
.y12_c00282{bottom:478.908000pt;}
.y11_c00282{bottom:507.120000pt;}
.y10_c00282{bottom:535.218667pt;}
.yf_c00282{bottom:563.061333pt;}
.ye_c00282{bottom:591.956000pt;}
.yd_c00282{bottom:620.400000pt;}
.yc_c00282{bottom:667.097333pt;}
.yb_c00282{bottom:695.758667pt;}
.ya_c00282{bottom:724.596000pt;}
.y9_c00282{bottom:752.638667pt;}
.y8_c00282{bottom:780.246667pt;}
.y7_c00282{bottom:807.450667pt;}
.y6_c00282{bottom:836.433333pt;}
.y5_c00282{bottom:864.781333pt;}
.y4_c00282{bottom:892.789333pt;}
.y3_c00282{bottom:920.514667pt;}
.y2_c00282{bottom:949.094667pt;}
.y1_c00282{bottom:989.528000pt;}
.h2_c00282{height:53.333333pt;}
.h4_c00282{height:64.000000pt;}
.h3_c00282{height:69.333333pt;}
.h5_c00282{height:74.666667pt;}
.h6_c00282{height:85.333333pt;}
.h1_c00282{height:1036.000000pt;}
.h0_c00282{height:1036.266667pt;}
.w0_c00282{width:813.333333pt;}
.x0_c00282{left:0.000000pt;}
.x2a_c00282{left:140.160000pt;}
.x31_c00282{left:141.120000pt;}
.x2b_c00282{left:159.840000pt;}
.x3b_c00282{left:171.120000pt;}
.x18_c00282{left:181.920000pt;}
.x15_c00282{left:189.600000pt;}
.x8_c00282{left:190.800000pt;}
.x9_c00282{left:208.080000pt;}
.x1e_c00282{left:218.400000pt;}
.xe_c00282{left:228.000000pt;}
.x32_c00282{left:228.960000pt;}
.x4_c00282{left:238.080000pt;}
.x43_c00282{left:239.040000pt;}
.x21_c00282{left:240.240000pt;}
.x3f_c00282{left:241.200000pt;}
.xa_c00282{left:246.960000pt;}
.x12_c00282{left:247.920000pt;}
.x49_c00282{left:248.880000pt;}
.x19_c00282{left:258.240000pt;}
.x4d_c00282{left:260.160000pt;}
.x3d_c00282{left:261.360000pt;}
.xf_c00282{left:267.600000pt;}
.x53_c00282{left:268.560000pt;}
.xb_c00282{left:276.960000pt;}
.x51_c00282{left:278.880000pt;}
.x5_c00282{left:287.520000pt;}
.x10_c00282{left:296.400000pt;}
.x1a_c00282{left:297.600000pt;}
.x4a_c00282{left:299.040000pt;}
.x16_c00282{left:307.200000pt;}
.x52_c00282{left:308.160000pt;}
.xc_c00282{left:314.880000pt;}
.x40_c00282{left:316.320000pt;}
.x1f_c00282{left:317.280000pt;}
.x1b_c00282{left:326.160000pt;}
.x47_c00282{left:327.120000pt;}
.x6_c00282{left:334.560000pt;}
.x11_c00282{left:336.000000pt;}
.x36_c00282{left:336.960000pt;}
.xd_c00282{left:345.840000pt;}
.x22_c00282{left:347.760000pt;}
.x1c_c00282{left:354.960000pt;}
.x3c_c00282{left:356.400000pt;}
.x3_c00282{left:364.320000pt;}
.x17_c00282{left:365.280000pt;}
.x1_c00282{left:375.120000pt;}
.x44_c00282{left:376.080000pt;}
.x1d_c00282{left:384.720000pt;}
.x20_c00282{left:386.640000pt;}
.x2_c00282{left:395.280000pt;}
.x48_c00282{left:405.600000pt;}
.x7_c00282{left:413.520000pt;}
.x4e_c00282{left:415.440000pt;}
.x58_c00282{left:417.120000pt;}
.x13_c00282{left:422.640000pt;}
.x45_c00282{left:423.600000pt;}
.x23_c00282{left:424.800000pt;}
.x4c_c00282{left:434.400000pt;}
.x14_c00282{left:442.800000pt;}
.x37_c00282{left:444.000000pt;}
.x2c_c00282{left:453.120000pt;}
.x24_c00282{left:454.080000pt;}
.x46_c00282{left:463.440000pt;}
.x33_c00282{left:482.400000pt;}
.x4b_c00282{left:483.600000pt;}
.x54_c00282{left:486.000000pt;}
.x3e_c00282{left:492.720000pt;}
.x4f_c00282{left:494.160000pt;}
.x2d_c00282{left:502.080000pt;}
.x55_c00282{left:503.280000pt;}
.x34_c00282{left:512.400000pt;}
.x41_c00282{left:521.760000pt;}
.x38_c00282{left:532.800000pt;}
.x25_c00282{left:541.680000pt;}
.x56_c00282{left:542.880000pt;}
.x59_c00282{left:551.760000pt;}
.x39_c00282{left:561.840000pt;}
.x26_c00282{left:570.720000pt;}
.x57_c00282{left:571.920000pt;}
.x35_c00282{left:581.520000pt;}
.x42_c00282{left:592.800000pt;}
.x27_c00282{left:599.040000pt;}
.x2e_c00282{left:600.240000pt;}
.x50_c00282{left:602.880000pt;}
.x5a_c00282{left:622.080000pt;}
.x2f_c00282{left:668.880000pt;}
.x28_c00282{left:687.120000pt;}
.x30_c00282{left:697.920000pt;}
.x29_c00282{left:726.000000pt;}
.x3a_c00282{left:726.960000pt;}
}





/* 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_c00283 {
    display:none;
  }
  .loading-indicator_c00283.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00283 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_c00283 { 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_c00283" -> "#page-container .classname_c00283")
 */
.pf_c00283 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00283 { /* 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_c00283.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00283 { /* 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_c00283 { /* 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_c00283 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00283 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00283 {overflow:visible;}
  }
}
.c_c00283 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00283 { /* 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_c00283:after { /* webkit #35443 */
  content: '';
}
.t_c00283:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00283 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 */
}
.__c00283 { /* 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_c00283 { /* info for Javascript */
  display:none;
}
.l_c00283 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00283 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00283 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00283: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_c00283 {
    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_c00283.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00283.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_c00283 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00283{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00283;src:url('chunks/assets/font_170a54771682c73350741ec9.woff2')format("woff");}.ff1_c00283{font-family:ff1_c00283;line-height:1.000000;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;}
.m10_c00283{transform:matrix(0.169155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169155,0.000000,0.000000,0.250000,0,0);}
.m18_c00283{transform:matrix(0.218405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218405,0.000000,0.000000,0.250000,0,0);}
.m16_c00283{transform:matrix(0.220470,0.004189,-0.004749,0.249955,0,0);-ms-transform:matrix(0.220470,0.004189,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.220470,0.004189,-0.004749,0.249955,0,0);}
.m11_c00283{transform:matrix(0.233345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233345,0.000000,0.000000,0.250000,0,0);}
.m2_c00283{transform:matrix(0.240415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240415,0.000000,0.000000,0.250000,0,0);}
.m14_c00283{transform:matrix(0.294177,0.005589,-0.004749,0.249955,0,0);-ms-transform:matrix(0.294177,0.005589,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.294177,0.005589,-0.004749,0.249955,0,0);}
.m1_c00283{transform:matrix(0.297320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297320,0.000000,0.000000,0.250000,0,0);}
.md_c00283{transform:matrix(0.363150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363150,0.000000,0.000000,0.250000,0,0);}
.me_c00283{transform:matrix(0.370055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370055,0.000000,0.000000,0.250000,0,0);}
.m13_c00283{transform:matrix(0.397868,0.007559,-0.004749,0.249955,0,0);-ms-transform:matrix(0.397868,0.007559,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.397868,0.007559,-0.004749,0.249955,0,0);}
.m7_c00283{transform:matrix(0.417205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417205,0.000000,0.000000,0.250000,0,0);}
.m12_c00283{transform:matrix(0.440875,0.008377,-0.004749,0.249955,0,0);-ms-transform:matrix(0.440875,0.008377,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.440875,0.008377,-0.004749,0.249955,0,0);}
.m15_c00283{transform:matrix(0.538443,0.010230,-0.004749,0.249955,0,0);-ms-transform:matrix(0.538443,0.010230,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.538443,0.010230,-0.004749,0.249955,0,0);}
.ma_c00283{transform:matrix(0.661840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.661840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.661840,0.000000,0.000000,0.250000,0,0);}
.m5_c00283{transform:matrix(0.729005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.729005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.729005,0.000000,0.000000,0.250000,0,0);}
.m8_c00283{transform:matrix(0.767605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.767605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.767605,0.000000,0.000000,0.250000,0,0);}
.mf_c00283{transform:matrix(0.789905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.789905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.789905,0.000000,0.000000,0.250000,0,0);}
.m19_c00283{transform:matrix(0.876955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.876955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.876955,0.000000,0.000000,0.250000,0,0);}
.m0_c00283{transform:matrix(0.905540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.905540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.905540,0.000000,0.000000,0.250000,0,0);}
.mb_c00283{transform:matrix(1.007300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.007300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.007300,0.000000,0.000000,0.250000,0,0);}
.m6_c00283{transform:matrix(1.445790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.445790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.445790,0.000000,0.000000,0.250000,0,0);}
.m17_c00283{transform:matrix(1.976190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.976190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.976190,0.000000,0.000000,0.250000,0,0);}
.m3_c00283{transform:matrix(2.041200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.041200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.041200,0.000000,0.000000,0.250000,0,0);}
.m9_c00283{transform:matrix(3.744670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.744670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.744670,0.000000,0.000000,0.250000,0,0);}
.m4_c00283{transform:matrix(5.117660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.117660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.117660,0.000000,0.000000,0.250000,0,0);}
.mc_c00283{transform:matrix(5.278275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.278275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.278275,0.000000,0.000000,0.250000,0,0);}
.v0_c00283{vertical-align:0.000000px;}
.ls0_c00283{letter-spacing:0.000000px;}
.sc__c00283{text-shadow:none;}
.sc0_c00283{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__c00283{-webkit-text-stroke:0px transparent;}
.sc0_c00283{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00283{word-spacing:0.000000px;}
._0_c00283{margin-left:-27.000000px;}
.fc0_c00283{color:transparent;}
.fs0_c00283{font-size:18.000000px;}
.fs2_c00283{font-size:24.000000px;}
.fs5_c00283{font-size:72.012995px;}
.fs1_c00283{font-size:84.000000px;}
.fs4_c00283{font-size:90.000000px;}
.fs3_c00283{font-size:162.000000px;}
.y0_c00283{bottom:0.000000px;}
.y10_c00283{bottom:263.250000px;}
.yf_c00283{bottom:570.519568px;}
.ye_c00283{bottom:572.208022px;}
.yd_c00283{bottom:573.776976px;}
.yc_c00283{bottom:574.382402px;}
.yb_c00283{bottom:575.751000px;}
.ya_c00283{bottom:712.800000px;}
.y9_c00283{bottom:738.450000px;}
.y8_c00283{bottom:809.460000px;}
.y7_c00283{bottom:827.010000px;}
.y6_c00283{bottom:909.825000px;}
.y5_c00283{bottom:927.450000px;}
.y4_c00283{bottom:963.090000px;}
.y3_c00283{bottom:1009.800000px;}
.y2_c00283{bottom:1087.560000px;}
.y1_c00283{bottom:1107.000000px;}
.h2_c00283{height:18.000000px;}
.h4_c00283{height:24.000000px;}
.h7_c00283{height:72.012995px;}
.h3_c00283{height:84.000000px;}
.h6_c00283{height:90.000000px;}
.h5_c00283{height:162.000000px;}
.h1_c00283{height:1165.500000px;}
.h0_c00283{height:1165.800000px;}
.w0_c00283{width:915.000000px;}
.x0_c00283{left:0.000000px;}
.x4_c00283{left:366.930000px;}
.x3_c00283{left:434.700000px;}
.x9_c00283{left:441.052500px;}
.x5_c00283{left:483.300000px;}
.xa_c00283{left:513.084000px;}
.x6_c00283{left:542.700000px;}
.xb_c00283{left:544.948500px;}
.xc_c00283{left:627.525000px;}
.xd_c00283{left:716.391000px;}
.xe_c00283{left:894.510000px;}
.xf_c00283{left:896.670000px;}
.x2_c00283{left:899.370000px;}
.x7_c00283{left:901.260000px;}
.x1_c00283{left:902.880000px;}
.x8_c00283{left:905.040000px;}
@media print{
.v0_c00283{vertical-align:0.000000pt;}
.ls0_c00283{letter-spacing:0.000000pt;}
.ws0_c00283{word-spacing:0.000000pt;}
._0_c00283{margin-left:-24.000000pt;}
.fs0_c00283{font-size:16.000000pt;}
.fs2_c00283{font-size:21.333333pt;}
.fs5_c00283{font-size:64.011551pt;}
.fs1_c00283{font-size:74.666667pt;}
.fs4_c00283{font-size:80.000000pt;}
.fs3_c00283{font-size:144.000000pt;}
.y0_c00283{bottom:0.000000pt;}
.y10_c00283{bottom:234.000000pt;}
.yf_c00283{bottom:507.128505pt;}
.ye_c00283{bottom:508.629353pt;}
.yd_c00283{bottom:510.023979pt;}
.yc_c00283{bottom:510.562135pt;}
.yb_c00283{bottom:511.778667pt;}
.ya_c00283{bottom:633.600000pt;}
.y9_c00283{bottom:656.400000pt;}
.y8_c00283{bottom:719.520000pt;}
.y7_c00283{bottom:735.120000pt;}
.y6_c00283{bottom:808.733333pt;}
.y5_c00283{bottom:824.400000pt;}
.y4_c00283{bottom:856.080000pt;}
.y3_c00283{bottom:897.600000pt;}
.y2_c00283{bottom:966.720000pt;}
.y1_c00283{bottom:984.000000pt;}
.h2_c00283{height:16.000000pt;}
.h4_c00283{height:21.333333pt;}
.h7_c00283{height:64.011551pt;}
.h3_c00283{height:74.666667pt;}
.h6_c00283{height:80.000000pt;}
.h5_c00283{height:144.000000pt;}
.h1_c00283{height:1036.000000pt;}
.h0_c00283{height:1036.266667pt;}
.w0_c00283{width:813.333333pt;}
.x0_c00283{left:0.000000pt;}
.x4_c00283{left:326.160000pt;}
.x3_c00283{left:386.400000pt;}
.x9_c00283{left:392.046667pt;}
.x5_c00283{left:429.600000pt;}
.xa_c00283{left:456.074667pt;}
.x6_c00283{left:482.400000pt;}
.xb_c00283{left:484.398667pt;}
.xc_c00283{left:557.800000pt;}
.xd_c00283{left:636.792000pt;}
.xe_c00283{left:795.120000pt;}
.xf_c00283{left:797.040000pt;}
.x2_c00283{left:799.440000pt;}
.x7_c00283{left:801.120000pt;}
.x1_c00283{left:802.560000pt;}
.x8_c00283{left:804.480000pt;}
}





/* 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_c00284 {
    display:none;
  }
  .loading-indicator_c00284.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00284 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_c00284 { 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_c00284" -> "#page-container .classname_c00284")
 */
.pf_c00284 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00284 { /* 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_c00284.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00284 { /* 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_c00284 { /* 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_c00284 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00284 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00284 {overflow:visible;}
  }
}
.c_c00284 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00284 { /* 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_c00284:after { /* webkit #35443 */
  content: '';
}
.t_c00284:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00284 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 */
}
.__c00284 { /* 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_c00284 { /* info for Javascript */
  display:none;
}
.l_c00284 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00284 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00284 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00284: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_c00284 {
    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_c00284.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00284.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_c00284 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00284{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00284;src:url('chunks/assets/font_cfe63ee56e9e10a97d33a3db.woff2')format("woff");}.ff1_c00284{font-family:ff1_c00284;line-height:1.000000;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;}
.m62_c00284{transform:matrix(0.095480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.095480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.095480,0.000000,0.000000,0.250000,0,0);}
.m1d_c00284{transform:matrix(0.131825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131825,0.000000,0.000000,0.250000,0,0);}
.m3d_c00284{transform:matrix(0.134645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134645,0.000000,0.000000,0.250000,0,0);}
.mf_c00284{transform:matrix(0.144435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144435,0.000000,0.000000,0.250000,0,0);}
.m2_c00284{transform:matrix(0.148585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148585,0.000000,0.000000,0.250000,0,0);}
.m27_c00284{transform:matrix(0.153885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153885,0.000000,0.000000,0.250000,0,0);}
.m63_c00284{transform:matrix(0.166480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166480,0.000000,0.000000,0.250000,0,0);}
.m66_c00284{transform:matrix(0.169345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169345,0.000000,0.000000,0.250000,0,0);}
.m7b_c00284{transform:matrix(0.172185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172185,0.000000,0.000000,0.250000,0,0);}
.m6b_c00284{transform:matrix(0.172415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172415,0.000000,0.000000,0.250000,0,0);}
.m68_c00284{transform:matrix(0.172850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172850,0.000000,0.000000,0.250000,0,0);}
.m64_c00284{transform:matrix(0.179140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179140,0.000000,0.000000,0.250000,0,0);}
.m69_c00284{transform:matrix(0.181890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181890,0.000000,0.000000,0.250000,0,0);}
.m0_c00284{transform:matrix(0.183150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183150,0.000000,0.000000,0.250000,0,0);}
.m67_c00284{transform:matrix(0.184740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184740,0.000000,0.000000,0.250000,0,0);}
.mbb_c00284{transform:matrix(0.186725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186725,0.000000,0.000000,0.250000,0,0);}
.mc5_c00284{transform:matrix(0.188615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188615,0.000000,0.000000,0.250000,0,0);}
.m65_c00284{transform:matrix(0.189115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189115,0.000000,0.000000,0.250000,0,0);}
.m85_c00284{transform:matrix(0.193155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193155,0.000000,0.000000,0.250000,0,0);}
.md_c00284{transform:matrix(0.193505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193505,0.000000,0.000000,0.250000,0,0);}
.m21_c00284{transform:matrix(0.194940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194940,0.000000,0.000000,0.250000,0,0);}
.mb0_c00284{transform:matrix(0.195860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195860,0.000000,0.000000,0.250000,0,0);}
.m20_c00284{transform:matrix(0.198375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198375,0.000000,0.000000,0.250000,0,0);}
.mb3_c00284{transform:matrix(0.198825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198825,0.000000,0.000000,0.250000,0,0);}
.m6a_c00284{transform:matrix(0.199285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199285,0.000000,0.000000,0.250000,0,0);}
.m82_c00284{transform:matrix(0.200385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200385,0.000000,0.000000,0.250000,0,0);}
.m7c_c00284{transform:matrix(0.201950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201950,0.000000,0.000000,0.250000,0,0);}
.m24_c00284{transform:matrix(0.203010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203010,0.000000,0.000000,0.250000,0,0);}
.m80_c00284{transform:matrix(0.203350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203350,0.000000,0.000000,0.250000,0,0);}
.m7d_c00284{transform:matrix(0.205150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205150,0.000000,0.000000,0.250000,0,0);}
.m98_c00284{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.mc9_c00284{transform:matrix(0.207100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207100,0.000000,0.000000,0.250000,0,0);}
.m77_c00284{transform:matrix(0.207765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207765,0.000000,0.000000,0.250000,0,0);}
.m70_c00284{transform:matrix(0.208015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208015,0.000000,0.000000,0.250000,0,0);}
.m78_c00284{transform:matrix(0.209150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209150,0.000000,0.000000,0.250000,0,0);}
.m79_c00284{transform:matrix(0.209360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209360,0.000000,0.000000,0.250000,0,0);}
.m9f_c00284{transform:matrix(0.209505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209505,0.000000,0.000000,0.250000,0,0);}
.maf_c00284{transform:matrix(0.209915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209915,0.000000,0.000000,0.250000,0,0);}
.m7e_c00284{transform:matrix(0.210185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210185,0.000000,0.000000,0.250000,0,0);}
.m95_c00284{transform:matrix(0.210555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210555,0.000000,0.000000,0.250000,0,0);}
.m84_c00284{transform:matrix(0.210830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210830,0.000000,0.000000,0.250000,0,0);}
.m23_c00284{transform:matrix(0.211025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211025,0.000000,0.000000,0.250000,0,0);}
.mc2_c00284{transform:matrix(0.212510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212510,0.000000,0.000000,0.250000,0,0);}
.maa_c00284{transform:matrix(0.213270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213270,0.000000,0.000000,0.250000,0,0);}
.m96_c00284{transform:matrix(0.214630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214630,0.000000,0.000000,0.250000,0,0);}
.m60_c00284{transform:matrix(0.214900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214900,0.000000,0.000000,0.250000,0,0);}
.m94_c00284{transform:matrix(0.215060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215060,0.000000,0.000000,0.250000,0,0);}
.m90_c00284{transform:matrix(0.215295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215295,0.000000,0.000000,0.250000,0,0);}
.m9d_c00284{transform:matrix(0.215755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215755,0.000000,0.000000,0.250000,0,0);}
.me_c00284{transform:matrix(0.216865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216865,0.000000,0.000000,0.250000,0,0);}
.m99_c00284{transform:matrix(0.217370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217370,0.000000,0.000000,0.250000,0,0);}
.m92_c00284{transform:matrix(0.217770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217770,0.000000,0.000000,0.250000,0,0);}
.m1e_c00284{transform:matrix(0.220030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220030,0.000000,0.000000,0.250000,0,0);}
.m41_c00284{transform:matrix(0.220890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220890,0.000000,0.000000,0.250000,0,0);}
.m87_c00284{transform:matrix(0.221180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221180,0.000000,0.000000,0.250000,0,0);}
.m86_c00284{transform:matrix(0.222755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222755,0.000000,0.000000,0.250000,0,0);}
.m72_c00284{transform:matrix(0.223275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223275,0.000000,0.000000,0.250000,0,0);}
.m10_c00284{transform:matrix(0.223380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223380,0.000000,0.000000,0.250000,0,0);}
.mb1_c00284{transform:matrix(0.223600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223600,0.000000,0.000000,0.250000,0,0);}
.m48_c00284{transform:matrix(0.223675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223675,0.000000,0.000000,0.250000,0,0);}
.m88_c00284{transform:matrix(0.223895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223895,0.000000,0.000000,0.250000,0,0);}
.m8c_c00284{transform:matrix(0.224070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224070,0.000000,0.000000,0.250000,0,0);}
.m89_c00284{transform:matrix(0.225010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225010,0.000000,0.000000,0.250000,0,0);}
.mb2_c00284{transform:matrix(0.225145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225145,0.000000,0.000000,0.250000,0,0);}
.m55_c00284{transform:matrix(0.225315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225315,0.000000,0.000000,0.250000,0,0);}
.m25_c00284{transform:matrix(0.225330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225330,0.000000,0.000000,0.250000,0,0);}
.mb5_c00284{transform:matrix(0.225780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225780,0.000000,0.000000,0.250000,0,0);}
.m16_c00284{transform:matrix(0.225845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225845,0.000000,0.000000,0.250000,0,0);}
.m6e_c00284{transform:matrix(0.226110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226110,0.000000,0.000000,0.250000,0,0);}
.m7a_c00284{transform:matrix(0.226145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226145,0.000000,0.000000,0.250000,0,0);}
.mb4_c00284{transform:matrix(0.226995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226995,0.000000,0.000000,0.250000,0,0);}
.m71_c00284{transform:matrix(0.227050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227050,0.000000,0.000000,0.250000,0,0);}
.ma3_c00284{transform:matrix(0.227430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227430,0.000000,0.000000,0.250000,0,0);}
.m46_c00284{transform:matrix(0.227465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227465,0.000000,0.000000,0.250000,0,0);}
.m53_c00284{transform:matrix(0.228230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228230,0.000000,0.000000,0.250000,0,0);}
.m13_c00284{transform:matrix(0.228510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228510,0.000000,0.000000,0.250000,0,0);}
.m44_c00284{transform:matrix(0.228695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228695,0.000000,0.000000,0.250000,0,0);}
.mab_c00284{transform:matrix(0.229105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229105,0.000000,0.000000,0.250000,0,0);}
.m57_c00284{transform:matrix(0.229190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229190,0.000000,0.000000,0.250000,0,0);}
.m59_c00284{transform:matrix(0.229195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229195,0.000000,0.000000,0.250000,0,0);}
.m5b_c00284{transform:matrix(0.229525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229525,0.000000,0.000000,0.250000,0,0);}
.mc3_c00284{transform:matrix(0.229930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229930,0.000000,0.000000,0.250000,0,0);}
.m9c_c00284{transform:matrix(0.230340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230340,0.000000,0.000000,0.250000,0,0);}
.m11_c00284{transform:matrix(0.231645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231645,0.000000,0.000000,0.250000,0,0);}
.m81_c00284{transform:matrix(0.232230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232230,0.000000,0.000000,0.250000,0,0);}
.ma1_c00284{transform:matrix(0.232280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232280,0.000000,0.000000,0.250000,0,0);}
.mb9_c00284{transform:matrix(0.233075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233075,0.000000,0.000000,0.250000,0,0);}
.m22_c00284{transform:matrix(0.233625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233625,0.000000,0.000000,0.250000,0,0);}
.ma2_c00284{transform:matrix(0.233695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233695,0.000000,0.000000,0.250000,0,0);}
.m42_c00284{transform:matrix(0.234515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234515,0.000000,0.000000,0.250000,0,0);}
.m61_c00284{transform:matrix(0.234810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234810,0.000000,0.000000,0.250000,0,0);}
.mc7_c00284{transform:matrix(0.235120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235120,0.000000,0.000000,0.250000,0,0);}
.mac_c00284{transform:matrix(0.235355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235355,0.000000,0.000000,0.250000,0,0);}
.m6_c00284{transform:matrix(0.235880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235880,0.000000,0.000000,0.250000,0,0);}
.m1f_c00284{transform:matrix(0.236900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236900,0.000000,0.000000,0.250000,0,0);}
.mb6_c00284{transform:matrix(0.237185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237185,0.000000,0.000000,0.250000,0,0);}
.m30_c00284{transform:matrix(0.237595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237595,0.000000,0.000000,0.250000,0,0);}
.mc6_c00284{transform:matrix(0.237855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237855,0.000000,0.000000,0.250000,0,0);}
.m4c_c00284{transform:matrix(0.238355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238355,0.000000,0.000000,0.250000,0,0);}
.m9e_c00284{transform:matrix(0.238645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238645,0.000000,0.000000,0.250000,0,0);}
.m14_c00284{transform:matrix(0.239540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239540,0.000000,0.000000,0.250000,0,0);}
.m49_c00284{transform:matrix(0.239590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239590,0.000000,0.000000,0.250000,0,0);}
.ma0_c00284{transform:matrix(0.239930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239930,0.000000,0.000000,0.250000,0,0);}
.m5d_c00284{transform:matrix(0.240635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240635,0.000000,0.000000,0.250000,0,0);}
.m7f_c00284{transform:matrix(0.240675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240675,0.000000,0.000000,0.250000,0,0);}
.m4f_c00284{transform:matrix(0.240775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240775,0.000000,0.000000,0.250000,0,0);}
.mc_c00284{transform:matrix(0.240780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240780,0.000000,0.000000,0.250000,0,0);}
.ma6_c00284{transform:matrix(0.240960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240960,0.000000,0.000000,0.250000,0,0);}
.m2b_c00284{transform:matrix(0.241300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241300,0.000000,0.000000,0.250000,0,0);}
.mae_c00284{transform:matrix(0.241420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241420,0.000000,0.000000,0.250000,0,0);}
.mb8_c00284{transform:matrix(0.241465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241465,0.000000,0.000000,0.250000,0,0);}
.m91_c00284{transform:matrix(0.241560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241560,0.000000,0.000000,0.250000,0,0);}
.m5a_c00284{transform:matrix(0.241610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241610,0.000000,0.000000,0.250000,0,0);}
.m40_c00284{transform:matrix(0.241695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241695,0.000000,0.000000,0.250000,0,0);}
.m2e_c00284{transform:matrix(0.241980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241980,0.000000,0.000000,0.250000,0,0);}
.m83_c00284{transform:matrix(0.242300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242300,0.000000,0.000000,0.250000,0,0);}
.m17_c00284{transform:matrix(0.242450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242450,0.000000,0.000000,0.250000,0,0);}
.ma_c00284{transform:matrix(0.242735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242735,0.000000,0.000000,0.250000,0,0);}
.m93_c00284{transform:matrix(0.243295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243295,0.000000,0.000000,0.250000,0,0);}
.m28_c00284{transform:matrix(0.243375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243375,0.000000,0.000000,0.250000,0,0);}
.m50_c00284{transform:matrix(0.243495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243495,0.000000,0.000000,0.250000,0,0);}
.ma4_c00284{transform:matrix(0.243840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243840,0.000000,0.000000,0.250000,0,0);}
.m52_c00284{transform:matrix(0.243900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243900,0.000000,0.000000,0.250000,0,0);}
.m39_c00284{transform:matrix(0.244860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244860,0.000000,0.000000,0.250000,0,0);}
.m34_c00284{transform:matrix(0.245235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245235,0.000000,0.000000,0.250000,0,0);}
.mad_c00284{transform:matrix(0.246140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246140,0.000000,0.000000,0.250000,0,0);}
.m5e_c00284{transform:matrix(0.246260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246260,0.000000,0.000000,0.250000,0,0);}
.mbe_c00284{transform:matrix(0.246510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246510,0.000000,0.000000,0.250000,0,0);}
.m35_c00284{transform:matrix(0.246660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246660,0.000000,0.000000,0.250000,0,0);}
.m8b_c00284{transform:matrix(0.247550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247550,0.000000,0.000000,0.250000,0,0);}
.m1b_c00284{transform:matrix(0.247685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247685,0.000000,0.000000,0.250000,0,0);}
.mc4_c00284{transform:matrix(0.247955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247955,0.000000,0.000000,0.250000,0,0);}
.m73_c00284{transform:matrix(0.248105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248105,0.000000,0.000000,0.250000,0,0);}
.m56_c00284{transform:matrix(0.248780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248780,0.000000,0.000000,0.250000,0,0);}
.mb_c00284{transform:matrix(0.249175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249175,0.000000,0.000000,0.250000,0,0);}
.m97_c00284{transform:matrix(0.249365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249365,0.000000,0.000000,0.250000,0,0);}
.m9b_c00284{transform:matrix(0.249370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249370,0.000000,0.000000,0.250000,0,0);}
.m32_c00284{transform:matrix(0.249405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249405,0.000000,0.000000,0.250000,0,0);}
.ma7_c00284{transform:matrix(0.249965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249965,0.000000,0.000000,0.250000,0,0);}
.m19_c00284{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m54_c00284{transform:matrix(0.251335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251335,0.000000,0.000000,0.250000,0,0);}
.m9a_c00284{transform:matrix(0.251450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251450,0.000000,0.000000,0.250000,0,0);}
.m6d_c00284{transform:matrix(0.252880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252880,0.000000,0.000000,0.250000,0,0);}
.m12_c00284{transform:matrix(0.253060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253060,0.000000,0.000000,0.250000,0,0);}
.m2f_c00284{transform:matrix(0.253160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253160,0.000000,0.000000,0.250000,0,0);}
.m3e_c00284{transform:matrix(0.253425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253425,0.000000,0.000000,0.250000,0,0);}
.m8e_c00284{transform:matrix(0.254020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254020,0.000000,0.000000,0.250000,0,0);}
.m37_c00284{transform:matrix(0.254275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254275,0.000000,0.000000,0.250000,0,0);}
.mcb_c00284{transform:matrix(0.255460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255460,0.000000,0.000000,0.250000,0,0);}
.m4b_c00284{transform:matrix(0.255595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255595,0.000000,0.000000,0.250000,0,0);}
.m3f_c00284{transform:matrix(0.256915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256915,0.000000,0.000000,0.250000,0,0);}
.m43_c00284{transform:matrix(0.257960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257960,0.000000,0.000000,0.250000,0,0);}
.mb7_c00284{transform:matrix(0.258410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258410,0.000000,0.000000,0.250000,0,0);}
.mc8_c00284{transform:matrix(0.258525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258525,0.000000,0.000000,0.250000,0,0);}
.m45_c00284{transform:matrix(0.258710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258710,0.000000,0.000000,0.250000,0,0);}
.mc0_c00284{transform:matrix(0.258860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258860,0.000000,0.000000,0.250000,0,0);}
.m3a_c00284{transform:matrix(0.259505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259505,0.000000,0.000000,0.250000,0,0);}
.m5f_c00284{transform:matrix(0.260820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260820,0.000000,0.000000,0.250000,0,0);}
.mba_c00284{transform:matrix(0.262960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262960,0.000000,0.000000,0.250000,0,0);}
.m31_c00284{transform:matrix(0.264015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264015,0.000000,0.000000,0.250000,0,0);}
.ma8_c00284{transform:matrix(0.264105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264105,0.000000,0.000000,0.250000,0,0);}
.m74_c00284{transform:matrix(0.264265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264265,0.000000,0.000000,0.250000,0,0);}
.m2d_c00284{transform:matrix(0.264490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264490,0.000000,0.000000,0.250000,0,0);}
.m29_c00284{transform:matrix(0.264615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264615,0.000000,0.000000,0.250000,0,0);}
.m6f_c00284{transform:matrix(0.265110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265110,0.000000,0.000000,0.250000,0,0);}
.m58_c00284{transform:matrix(0.265135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265135,0.000000,0.000000,0.250000,0,0);}
.m36_c00284{transform:matrix(0.265375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265375,0.000000,0.000000,0.250000,0,0);}
.m1a_c00284{transform:matrix(0.265390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265390,0.000000,0.000000,0.250000,0,0);}
.m5_c00284{transform:matrix(0.265600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265600,0.000000,0.000000,0.250000,0,0);}
.m8_c00284{transform:matrix(0.265660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265660,0.000000,0.000000,0.250000,0,0);}
.m75_c00284{transform:matrix(0.266110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266110,0.000000,0.000000,0.250000,0,0);}
.m2c_c00284{transform:matrix(0.266585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266585,0.000000,0.000000,0.250000,0,0);}
.m9_c00284{transform:matrix(0.266720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266720,0.000000,0.000000,0.250000,0,0);}
.m7_c00284{transform:matrix(0.266845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266845,0.000000,0.000000,0.250000,0,0);}
.m1c_c00284{transform:matrix(0.266850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266850,0.000000,0.000000,0.250000,0,0);}
.mca_c00284{transform:matrix(0.267135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267135,0.000000,0.000000,0.250000,0,0);}
.m8d_c00284{transform:matrix(0.267335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267335,0.000000,0.000000,0.250000,0,0);}
.m2a_c00284{transform:matrix(0.267515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267515,0.000000,0.000000,0.250000,0,0);}
.m15_c00284{transform:matrix(0.267655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267655,0.000000,0.000000,0.250000,0,0);}
.m38_c00284{transform:matrix(0.267740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267740,0.000000,0.000000,0.250000,0,0);}
.m51_c00284{transform:matrix(0.268330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268330,0.000000,0.000000,0.250000,0,0);}
.m4_c00284{transform:matrix(0.269695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269695,0.000000,0.000000,0.250000,0,0);}
.mc1_c00284{transform:matrix(0.270010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270010,0.000000,0.000000,0.250000,0,0);}
.m6c_c00284{transform:matrix(0.270080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270080,0.000000,0.000000,0.250000,0,0);}
.m4d_c00284{transform:matrix(0.270130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270130,0.000000,0.000000,0.250000,0,0);}
.m76_c00284{transform:matrix(0.270150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270150,0.000000,0.000000,0.250000,0,0);}
.m47_c00284{transform:matrix(0.270185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270185,0.000000,0.000000,0.250000,0,0);}
.m3_c00284{transform:matrix(0.270285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270285,0.000000,0.000000,0.250000,0,0);}
.ma5_c00284{transform:matrix(0.271825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271825,0.000000,0.000000,0.250000,0,0);}
.ma9_c00284{transform:matrix(0.272110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272110,0.000000,0.000000,0.250000,0,0);}
.mbf_c00284{transform:matrix(0.272295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272295,0.000000,0.000000,0.250000,0,0);}
.m18_c00284{transform:matrix(0.272360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272360,0.000000,0.000000,0.250000,0,0);}
.mbc_c00284{transform:matrix(0.272940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272940,0.000000,0.000000,0.250000,0,0);}
.m26_c00284{transform:matrix(0.273180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273180,0.000000,0.000000,0.250000,0,0);}
.m4a_c00284{transform:matrix(0.274590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274590,0.000000,0.000000,0.250000,0,0);}
.mbd_c00284{transform:matrix(0.275795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275795,0.000000,0.000000,0.250000,0,0);}
.m4e_c00284{transform:matrix(0.277840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277840,0.000000,0.000000,0.250000,0,0);}
.m33_c00284{transform:matrix(0.280890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280890,0.000000,0.000000,0.250000,0,0);}
.m5c_c00284{transform:matrix(0.281245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281245,0.000000,0.000000,0.250000,0,0);}
.m3c_c00284{transform:matrix(0.314015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314015,0.000000,0.000000,0.250000,0,0);}
.m8f_c00284{transform:matrix(0.447175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447175,0.000000,0.000000,0.250000,0,0);}
.m3b_c00284{transform:matrix(0.452805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452805,0.000000,0.000000,0.250000,0,0);}
.m8a_c00284{transform:matrix(0.489630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.489630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.489630,0.000000,0.000000,0.250000,0,0);}
.m1_c00284{transform:matrix(0.508620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508620,0.000000,0.000000,0.250000,0,0);}
.v0_c00284{vertical-align:0.000000px;}
.ls0_c00284{letter-spacing:0.000000px;}
.sc__c00284{text-shadow:none;}
.sc0_c00284{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__c00284{-webkit-text-stroke:0px transparent;}
.sc0_c00284{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00284{word-spacing:0.000000px;}
.fc0_c00284{color:transparent;}
.fs4_c00284{font-size:24.000000px;}
.fs0_c00284{font-size:60.000000px;}
.fs6_c00284{font-size:66.000000px;}
.fs1_c00284{font-size:72.000000px;}
.fs2_c00284{font-size:78.000000px;}
.fs3_c00284{font-size:84.000000px;}
.fs7_c00284{font-size:96.000000px;}
.fs5_c00284{font-size:102.000000px;}
.y0_c00284{bottom:0.000000px;}
.y30_c00284{bottom:38.610000px;}
.y2f_c00284{bottom:69.660000px;}
.y2e_c00284{bottom:101.299500px;}
.y2d_c00284{bottom:133.785000px;}
.y2c_c00284{bottom:165.136500px;}
.y2b_c00284{bottom:196.620000px;}
.y2a_c00284{bottom:228.847500px;}
.y29_c00284{bottom:260.700000px;}
.y28_c00284{bottom:291.196500px;}
.y27_c00284{bottom:323.335500px;}
.y26_c00284{bottom:354.349500px;}
.y25_c00284{bottom:387.435000px;}
.y24_c00284{bottom:419.253000px;}
.y23_c00284{bottom:450.910500px;}
.y22_c00284{bottom:481.849500px;}
.y21_c00284{bottom:513.540000px;}
.y1e_c00284{bottom:527.622000px;}
.y1d_c00284{bottom:528.295500px;}
.y1c_c00284{bottom:529.471500px;}
.y20_c00284{bottom:544.594500px;}
.y1b_c00284{bottom:558.220500px;}
.y1f_c00284{bottom:576.481500px;}
.y1a_c00284{bottom:580.177500px;}
.y19_c00284{bottom:606.543000px;}
.y18_c00284{bottom:639.093000px;}
.yd_c00284{bottom:666.631500px;}
.ye_c00284{bottom:667.327500px;}
.yf_c00284{bottom:667.602000px;}
.y10_c00284{bottom:668.127000px;}
.y11_c00284{bottom:668.386500px;}
.y12_c00284{bottom:668.734500px;}
.y13_c00284{bottom:669.873000px;}
.y14_c00284{bottom:670.147500px;}
.y15_c00284{bottom:670.588500px;}
.y16_c00284{bottom:671.115000px;}
.y17_c00284{bottom:671.374500px;}
.yc_c00284{bottom:702.835500px;}
.yb_c00284{bottom:754.779000px;}
.ya_c00284{bottom:787.350000px;}
.y9_c00284{bottom:820.053000px;}
.y8_c00284{bottom:853.470000px;}
.y7_c00284{bottom:871.362000px;}
.y6_c00284{bottom:903.313500px;}
.y5_c00284{bottom:935.020500px;}
.y4_c00284{bottom:986.874000px;}
.y3_c00284{bottom:1018.473000px;}
.y2_c00284{bottom:1051.380000px;}
.y1_c00284{bottom:1115.500500px;}
.h6_c00284{height:24.000000px;}
.h2_c00284{height:60.000000px;}
.h8_c00284{height:66.000000px;}
.h3_c00284{height:72.000000px;}
.h4_c00284{height:78.000000px;}
.h5_c00284{height:84.000000px;}
.h9_c00284{height:96.000000px;}
.h7_c00284{height:102.000000px;}
.h1_c00284{height:1165.500000px;}
.h0_c00284{height:1165.800000px;}
.w0_c00284{width:915.000000px;}
.x0_c00284{left:0.000000px;}
.x1d_c00284{left:153.630000px;}
.xb_c00284{left:154.980000px;}
.x3d_c00284{left:156.472500px;}
.x27_c00284{left:198.720000px;}
.x34_c00284{left:199.800000px;}
.x4c_c00284{left:232.200000px;}
.x14_c00284{left:242.190000px;}
.x3e_c00284{left:243.379500px;}
.xc_c00284{left:252.450000px;}
.x1e_c00284{left:254.610000px;}
.x3_c00284{left:265.410000px;}
.x31_c00284{left:266.760000px;}
.x47_c00284{left:267.840000px;}
.x6e_c00284{left:268.920000px;}
.x1f_c00284{left:274.320000px;}
.x15_c00284{left:275.940000px;}
.x3f_c00284{left:277.689000px;}
.x4_c00284{left:287.280000px;}
.x6c_c00284{left:289.980000px;}
.x60_c00284{left:298.350000px;}
.x54_c00284{left:300.240000px;}
.x70_c00284{left:301.320000px;}
.x20_c00284{left:307.530000px;}
.x5c_c00284{left:309.420000px;}
.x69_c00284{left:311.850000px;}
.x28_c00284{left:318.330000px;}
.x35_c00284{left:321.570000px;}
.x58_c00284{left:332.370000px;}
.x67_c00284{left:333.720000px;}
.x16_c00284{left:340.740000px;}
.x40_c00284{left:343.290000px;}
.x71_c00284{left:345.330000px;}
.x19_c00284{left:352.080000px;}
.x55_c00284{left:354.240000px;}
.x4d_c00284{left:355.320000px;}
.xd_c00284{left:362.070000px;}
.x59_c00284{left:364.770000px;}
.x2f_c00284{left:373.950000px;}
.x41_c00284{left:375.688500px;}
.x73_c00284{left:379.620000px;}
.x21_c00284{left:385.020000px;}
.x65_c00284{left:387.720000px;}
.x30_c00284{left:389.340000px;}
.x1_c00284{left:394.200000px;}
.x5_c00284{left:395.280000px;}
.x5d_c00284{left:397.980000px;}
.x6f_c00284{left:399.060000px;}
.x6a_c00284{left:409.590000px;}
.x2_c00284{left:416.880000px;}
.x42_c00284{left:419.166000px;}
.x5a_c00284{left:420.660000px;}
.x29_c00284{left:429.570000px;}
.x62_c00284{left:431.190000px;}
.x64_c00284{left:432.540000px;}
.x17_c00284{left:440.370000px;}
.x6d_c00284{left:444.150000px;}
.x5e_c00284{left:451.710000px;}
.x5b_c00284{left:453.330000px;}
.x72_c00284{left:455.760000px;}
.x74_c00284{left:456.840000px;}
.x48_c00284{left:462.780000px;}
.x56_c00284{left:464.400000px;}
.x6b_c00284{left:465.750000px;}
.x22_c00284{left:472.230000px;}
.x66_c00284{left:475.740000px;}
.x6_c00284{left:482.220000px;}
.x2a_c00284{left:484.110000px;}
.x5f_c00284{left:486.540000px;}
.xe_c00284{left:494.100000px;}
.x63_c00284{left:495.450000px;}
.x49_c00284{left:497.070000px;}
.x23_c00284{left:506.520000px;}
.x68_c00284{left:509.220000px;}
.xf_c00284{left:517.320000px;}
.x61_c00284{left:518.400000px;}
.x1a_c00284{left:527.580000px;}
.x39_c00284{left:528.930000px;}
.x2b_c00284{left:538.380000px;}
.x36_c00284{left:550.530000px;}
.x7_c00284{left:560.790000px;}
.x1b_c00284{left:561.870000px;}
.x18_c00284{left:570.510000px;}
.x4a_c00284{left:572.940000px;}
.x10_c00284{left:581.310000px;}
.x37_c00284{left:594.270000px;}
.x43_c00284{left:595.726500px;}
.x8_c00284{left:603.720000px;}
.x32_c00284{left:606.960000px;}
.x11_c00284{left:615.330000px;}
.x24_c00284{left:616.950000px;}
.x57_c00284{left:618.570000px;}
.x3a_c00284{left:627.210000px;}
.x4e_c00284{left:649.620000px;}
.x44_c00284{left:650.826000px;}
.x3b_c00284{left:660.420000px;}
.x9_c00284{left:669.600000px;}
.x2c_c00284{left:671.490000px;}
.x4f_c00284{left:681.480000px;}
.x38_c00284{left:682.560000px;}
.x4b_c00284{left:683.640000px;}
.x1c_c00284{left:703.620000px;}
.x45_c00284{left:716.670000px;}
.x25_c00284{left:737.910000px;}
.x53_c00284{left:746.646000px;}
.xa_c00284{left:747.900000px;}
.x46_c00284{left:749.089500px;}
.x2d_c00284{left:757.620000px;}
.x12_c00284{left:767.880000px;}
.x3c_c00284{left:770.310000px;}
.x50_c00284{left:780.840000px;}
.x2e_c00284{left:792.180000px;}
.x13_c00284{left:801.630000px;}
.x26_c00284{left:803.790000px;}
.x33_c00284{left:812.700000px;}
.x51_c00284{left:825.120000px;}
.x52_c00284{left:868.590000px;}
@media print{
.v0_c00284{vertical-align:0.000000pt;}
.ls0_c00284{letter-spacing:0.000000pt;}
.ws0_c00284{word-spacing:0.000000pt;}
.fs4_c00284{font-size:21.333333pt;}
.fs0_c00284{font-size:53.333333pt;}
.fs6_c00284{font-size:58.666667pt;}
.fs1_c00284{font-size:64.000000pt;}
.fs2_c00284{font-size:69.333333pt;}
.fs3_c00284{font-size:74.666667pt;}
.fs7_c00284{font-size:85.333333pt;}
.fs5_c00284{font-size:90.666667pt;}
.y0_c00284{bottom:0.000000pt;}
.y30_c00284{bottom:34.320000pt;}
.y2f_c00284{bottom:61.920000pt;}
.y2e_c00284{bottom:90.044000pt;}
.y2d_c00284{bottom:118.920000pt;}
.y2c_c00284{bottom:146.788000pt;}
.y2b_c00284{bottom:174.773333pt;}
.y2a_c00284{bottom:203.420000pt;}
.y29_c00284{bottom:231.733333pt;}
.y28_c00284{bottom:258.841333pt;}
.y27_c00284{bottom:287.409333pt;}
.y26_c00284{bottom:314.977333pt;}
.y25_c00284{bottom:344.386667pt;}
.y24_c00284{bottom:372.669333pt;}
.y23_c00284{bottom:400.809333pt;}
.y22_c00284{bottom:428.310667pt;}
.y21_c00284{bottom:456.480000pt;}
.y1e_c00284{bottom:468.997333pt;}
.y1d_c00284{bottom:469.596000pt;}
.y1c_c00284{bottom:470.641333pt;}
.y20_c00284{bottom:484.084000pt;}
.y1b_c00284{bottom:496.196000pt;}
.y1f_c00284{bottom:512.428000pt;}
.y1a_c00284{bottom:515.713333pt;}
.y19_c00284{bottom:539.149333pt;}
.y18_c00284{bottom:568.082667pt;}
.yd_c00284{bottom:592.561333pt;}
.ye_c00284{bottom:593.180000pt;}
.yf_c00284{bottom:593.424000pt;}
.y10_c00284{bottom:593.890667pt;}
.y11_c00284{bottom:594.121333pt;}
.y12_c00284{bottom:594.430667pt;}
.y13_c00284{bottom:595.442667pt;}
.y14_c00284{bottom:595.686667pt;}
.y15_c00284{bottom:596.078667pt;}
.y16_c00284{bottom:596.546667pt;}
.y17_c00284{bottom:596.777333pt;}
.yc_c00284{bottom:624.742667pt;}
.yb_c00284{bottom:670.914667pt;}
.ya_c00284{bottom:699.866667pt;}
.y9_c00284{bottom:728.936000pt;}
.y8_c00284{bottom:758.640000pt;}
.y7_c00284{bottom:774.544000pt;}
.y6_c00284{bottom:802.945333pt;}
.y5_c00284{bottom:831.129333pt;}
.y4_c00284{bottom:877.221333pt;}
.y3_c00284{bottom:905.309333pt;}
.y2_c00284{bottom:934.560000pt;}
.y1_c00284{bottom:991.556000pt;}
.h6_c00284{height:21.333333pt;}
.h2_c00284{height:53.333333pt;}
.h8_c00284{height:58.666667pt;}
.h3_c00284{height:64.000000pt;}
.h4_c00284{height:69.333333pt;}
.h5_c00284{height:74.666667pt;}
.h9_c00284{height:85.333333pt;}
.h7_c00284{height:90.666667pt;}
.h1_c00284{height:1036.000000pt;}
.h0_c00284{height:1036.266667pt;}
.w0_c00284{width:813.333333pt;}
.x0_c00284{left:0.000000pt;}
.x1d_c00284{left:136.560000pt;}
.xb_c00284{left:137.760000pt;}
.x3d_c00284{left:139.086667pt;}
.x27_c00284{left:176.640000pt;}
.x34_c00284{left:177.600000pt;}
.x4c_c00284{left:206.400000pt;}
.x14_c00284{left:215.280000pt;}
.x3e_c00284{left:216.337333pt;}
.xc_c00284{left:224.400000pt;}
.x1e_c00284{left:226.320000pt;}
.x3_c00284{left:235.920000pt;}
.x31_c00284{left:237.120000pt;}
.x47_c00284{left:238.080000pt;}
.x6e_c00284{left:239.040000pt;}
.x1f_c00284{left:243.840000pt;}
.x15_c00284{left:245.280000pt;}
.x3f_c00284{left:246.834667pt;}
.x4_c00284{left:255.360000pt;}
.x6c_c00284{left:257.760000pt;}
.x60_c00284{left:265.200000pt;}
.x54_c00284{left:266.880000pt;}
.x70_c00284{left:267.840000pt;}
.x20_c00284{left:273.360000pt;}
.x5c_c00284{left:275.040000pt;}
.x69_c00284{left:277.200000pt;}
.x28_c00284{left:282.960000pt;}
.x35_c00284{left:285.840000pt;}
.x58_c00284{left:295.440000pt;}
.x67_c00284{left:296.640000pt;}
.x16_c00284{left:302.880000pt;}
.x40_c00284{left:305.146667pt;}
.x71_c00284{left:306.960000pt;}
.x19_c00284{left:312.960000pt;}
.x55_c00284{left:314.880000pt;}
.x4d_c00284{left:315.840000pt;}
.xd_c00284{left:321.840000pt;}
.x59_c00284{left:324.240000pt;}
.x2f_c00284{left:332.400000pt;}
.x41_c00284{left:333.945333pt;}
.x73_c00284{left:337.440000pt;}
.x21_c00284{left:342.240000pt;}
.x65_c00284{left:344.640000pt;}
.x30_c00284{left:346.080000pt;}
.x1_c00284{left:350.400000pt;}
.x5_c00284{left:351.360000pt;}
.x5d_c00284{left:353.760000pt;}
.x6f_c00284{left:354.720000pt;}
.x6a_c00284{left:364.080000pt;}
.x2_c00284{left:370.560000pt;}
.x42_c00284{left:372.592000pt;}
.x5a_c00284{left:373.920000pt;}
.x29_c00284{left:381.840000pt;}
.x62_c00284{left:383.280000pt;}
.x64_c00284{left:384.480000pt;}
.x17_c00284{left:391.440000pt;}
.x6d_c00284{left:394.800000pt;}
.x5e_c00284{left:401.520000pt;}
.x5b_c00284{left:402.960000pt;}
.x72_c00284{left:405.120000pt;}
.x74_c00284{left:406.080000pt;}
.x48_c00284{left:411.360000pt;}
.x56_c00284{left:412.800000pt;}
.x6b_c00284{left:414.000000pt;}
.x22_c00284{left:419.760000pt;}
.x66_c00284{left:422.880000pt;}
.x6_c00284{left:428.640000pt;}
.x2a_c00284{left:430.320000pt;}
.x5f_c00284{left:432.480000pt;}
.xe_c00284{left:439.200000pt;}
.x63_c00284{left:440.400000pt;}
.x49_c00284{left:441.840000pt;}
.x23_c00284{left:450.240000pt;}
.x68_c00284{left:452.640000pt;}
.xf_c00284{left:459.840000pt;}
.x61_c00284{left:460.800000pt;}
.x1a_c00284{left:468.960000pt;}
.x39_c00284{left:470.160000pt;}
.x2b_c00284{left:478.560000pt;}
.x36_c00284{left:489.360000pt;}
.x7_c00284{left:498.480000pt;}
.x1b_c00284{left:499.440000pt;}
.x18_c00284{left:507.120000pt;}
.x4a_c00284{left:509.280000pt;}
.x10_c00284{left:516.720000pt;}
.x37_c00284{left:528.240000pt;}
.x43_c00284{left:529.534667pt;}
.x8_c00284{left:536.640000pt;}
.x32_c00284{left:539.520000pt;}
.x11_c00284{left:546.960000pt;}
.x24_c00284{left:548.400000pt;}
.x57_c00284{left:549.840000pt;}
.x3a_c00284{left:557.520000pt;}
.x4e_c00284{left:577.440000pt;}
.x44_c00284{left:578.512000pt;}
.x3b_c00284{left:587.040000pt;}
.x9_c00284{left:595.200000pt;}
.x2c_c00284{left:596.880000pt;}
.x4f_c00284{left:605.760000pt;}
.x38_c00284{left:606.720000pt;}
.x4b_c00284{left:607.680000pt;}
.x1c_c00284{left:625.440000pt;}
.x45_c00284{left:637.040000pt;}
.x25_c00284{left:655.920000pt;}
.x53_c00284{left:663.685333pt;}
.xa_c00284{left:664.800000pt;}
.x46_c00284{left:665.857333pt;}
.x2d_c00284{left:673.440000pt;}
.x12_c00284{left:682.560000pt;}
.x3c_c00284{left:684.720000pt;}
.x50_c00284{left:694.080000pt;}
.x2e_c00284{left:704.160000pt;}
.x13_c00284{left:712.560000pt;}
.x26_c00284{left:714.480000pt;}
.x33_c00284{left:722.400000pt;}
.x51_c00284{left:733.440000pt;}
.x52_c00284{left:772.080000pt;}
}





/* 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_c00285 {
    display:none;
  }
  .loading-indicator_c00285.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00285 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_c00285 { 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_c00285" -> "#page-container .classname_c00285")
 */
.pf_c00285 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00285 { /* 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_c00285.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00285 { /* 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_c00285 { /* 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_c00285 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00285 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00285 {overflow:visible;}
  }
}
.c_c00285 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00285 { /* 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_c00285:after { /* webkit #35443 */
  content: '';
}
.t_c00285:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00285 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 */
}
.__c00285 { /* 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_c00285 { /* info for Javascript */
  display:none;
}
.l_c00285 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00285 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00285 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00285: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_c00285 {
    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_c00285.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00285.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_c00285 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00285{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00285;src:url('chunks/assets/font_1438668c1112de3088b00c5c.woff2')format("woff");}.ff1_c00285{font-family:ff1_c00285;line-height:1.000000;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;}
.m0_c00285{transform:matrix(0.008324,-0.924928,0.249990,0.002250,0,0);-ms-transform:matrix(0.008324,-0.924928,0.249990,0.002250,0,0);-webkit-transform:matrix(0.008324,-0.924928,0.249990,0.002250,0,0);}
.m3_c00285{transform:matrix(0.011058,-1.228650,0.249990,0.002250,0,0);-ms-transform:matrix(0.011058,-1.228650,0.249990,0.002250,0,0);-webkit-transform:matrix(0.011058,-1.228650,0.249990,0.002250,0,0);}
.m2_c00285{transform:matrix(0.013424,-1.491585,0.249990,0.002250,0,0);-ms-transform:matrix(0.013424,-1.491585,0.249990,0.002250,0,0);-webkit-transform:matrix(0.013424,-1.491585,0.249990,0.002250,0,0);}
.m1_c00285{transform:matrix(0.013900,-1.544412,0.249990,0.002250,0,0);-ms-transform:matrix(0.013900,-1.544412,0.249990,0.002250,0,0);-webkit-transform:matrix(0.013900,-1.544412,0.249990,0.002250,0,0);}
.v0_c00285{vertical-align:0.000000px;}
.ls0_c00285{letter-spacing:0.000000px;}
.sc__c00285{text-shadow:none;}
.sc0_c00285{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__c00285{-webkit-text-stroke:0px transparent;}
.sc0_c00285{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00285{word-spacing:0.000000px;}
.fc0_c00285{color:transparent;}
.fs0_c00285{font-size:24.000972px;}
.y0_c00285{bottom:0.000000px;}
.y4_c00285{bottom:263.217000px;}
.y3_c00285{bottom:334.224000px;}
.y2_c00285{bottom:495.685500px;}
.y1_c00285{bottom:552.136500px;}
.h2_c00285{height:24.000972px;}
.h1_c00285{height:1165.500000px;}
.h0_c00285{height:1165.800000px;}
.w0_c00285{width:915.000000px;}
.x0_c00285{left:0.000000px;}
.x2_c00285{left:894.978787px;}
.x1_c00285{left:896.940000px;}
@media print{
.v0_c00285{vertical-align:0.000000pt;}
.ls0_c00285{letter-spacing:0.000000pt;}
.ws0_c00285{word-spacing:0.000000pt;}
.fs0_c00285{font-size:21.334197pt;}
.y0_c00285{bottom:0.000000pt;}
.y4_c00285{bottom:233.970667pt;}
.y3_c00285{bottom:297.088000pt;}
.y2_c00285{bottom:440.609333pt;}
.y1_c00285{bottom:490.788000pt;}
.h2_c00285{height:21.334197pt;}
.h1_c00285{height:1036.000000pt;}
.h0_c00285{height:1036.266667pt;}
.w0_c00285{width:813.333333pt;}
.x0_c00285{left:0.000000pt;}
.x2_c00285{left:795.536700pt;}
.x1_c00285{left:797.280000pt;}
}





/* 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_c00286 {
    display:none;
  }
  .loading-indicator_c00286.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00286 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_c00286 { 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_c00286" -> "#page-container .classname_c00286")
 */
.pf_c00286 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00286 { /* 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_c00286.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00286 { /* 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_c00286 { /* 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_c00286 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00286 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00286 {overflow:visible;}
  }
}
.c_c00286 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00286 { /* 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_c00286:after { /* webkit #35443 */
  content: '';
}
.t_c00286:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00286 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 */
}
.__c00286 { /* 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_c00286 { /* info for Javascript */
  display:none;
}
.l_c00286 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00286 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00286 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00286: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_c00286 {
    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_c00286.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00286.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_c00286 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00286{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00286;src:url('chunks/assets/font_c605e72f209fc835e906f064.woff2')format("woff");}.ff1_c00286{font-family:ff1_c00286;line-height:1.000000;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;}
.mec_c00286{transform:matrix(0.075210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.075210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.075210,0.000000,0.000000,0.250000,0,0);}
.m62_c00286{transform:matrix(0.083105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.083105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.083105,0.000000,0.000000,0.250000,0,0);}
.m107_c00286{transform:matrix(0.101910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.101910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.101910,0.000000,0.000000,0.250000,0,0);}
.m7a_c00286{transform:matrix(0.115065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115065,0.000000,0.000000,0.250000,0,0);}
.m74_c00286{transform:matrix(0.119355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119355,0.000000,0.000000,0.250000,0,0);}
.mdf_c00286{transform:matrix(0.122090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122090,0.000000,0.000000,0.250000,0,0);}
.m1_c00286{transform:matrix(0.125300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125300,0.000000,0.000000,0.250000,0,0);}
.m11a_c00286{transform:matrix(0.127390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127390,0.000000,0.000000,0.250000,0,0);}
.m0_c00286{transform:matrix(0.128270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128270,0.000000,0.000000,0.250000,0,0);}
.m13d_c00286{transform:matrix(0.129960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129960,0.000000,0.000000,0.250000,0,0);}
.ma_c00286{transform:matrix(0.135990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135990,0.000000,0.000000,0.250000,0,0);}
.m16_c00286{transform:matrix(0.141025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141025,0.000000,0.000000,0.250000,0,0);}
.mc7_c00286{transform:matrix(0.143225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143225,0.000000,0.000000,0.250000,0,0);}
.m12b_c00286{transform:matrix(0.146370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146370,0.000000,0.000000,0.250000,0,0);}
.m6a_c00286{transform:matrix(0.148660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148660,0.000000,0.000000,0.250000,0,0);}
.m109_c00286{transform:matrix(0.149585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149585,0.000000,0.000000,0.250000,0,0);}
.mcb_c00286{transform:matrix(0.152735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152735,0.000000,0.000000,0.250000,0,0);}
.mcd_c00286{transform:matrix(0.152870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152870,0.000000,0.000000,0.250000,0,0);}
.m101_c00286{transform:matrix(0.155950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155950,0.000000,0.000000,0.250000,0,0);}
.m5f_c00286{transform:matrix(0.161805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161805,0.000000,0.000000,0.250000,0,0);}
.m60_c00286{transform:matrix(0.166825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166825,0.000000,0.000000,0.250000,0,0);}
.m6b_c00286{transform:matrix(0.169250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169250,0.000000,0.000000,0.250000,0,0);}
.m61_c00286{transform:matrix(0.174025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174025,0.000000,0.000000,0.250000,0,0);}
.m43_c00286{transform:matrix(0.175090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175090,0.000000,0.000000,0.250000,0,0);}
.mf7_c00286{transform:matrix(0.184665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184665,0.000000,0.000000,0.250000,0,0);}
.m69_c00286{transform:matrix(0.191560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191560,0.000000,0.000000,0.250000,0,0);}
.m66_c00286{transform:matrix(0.191925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191925,0.000000,0.000000,0.250000,0,0);}
.m65_c00286{transform:matrix(0.192645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192645,0.000000,0.000000,0.250000,0,0);}
.m64_c00286{transform:matrix(0.196420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196420,0.000000,0.000000,0.250000,0,0);}
.m71_c00286{transform:matrix(0.202390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202390,0.000000,0.000000,0.250000,0,0);}
.m80_c00286{transform:matrix(0.203040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203040,0.000000,0.000000,0.250000,0,0);}
.m83_c00286{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m18_c00286{transform:matrix(0.206385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206385,0.000000,0.000000,0.250000,0,0);}
.m9d_c00286{transform:matrix(0.206790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206790,0.000000,0.000000,0.250000,0,0);}
.m47_c00286{transform:matrix(0.206910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206910,0.000000,0.000000,0.250000,0,0);}
.m137_c00286{transform:matrix(0.209405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209405,0.000000,0.000000,0.250000,0,0);}
.m14_c00286{transform:matrix(0.211510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211510,0.000000,0.000000,0.250000,0,0);}
.m52_c00286{transform:matrix(0.212175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212175,0.000000,0.000000,0.250000,0,0);}
.m17_c00286{transform:matrix(0.212310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212310,0.000000,0.000000,0.250000,0,0);}
.m4f_c00286{transform:matrix(0.213085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213085,0.000000,0.000000,0.250000,0,0);}
.m34_c00286{transform:matrix(0.213445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213445,0.000000,0.000000,0.250000,0,0);}
.m44_c00286{transform:matrix(0.214655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214655,0.000000,0.000000,0.250000,0,0);}
.me1_c00286{transform:matrix(0.218225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218225,0.000000,0.000000,0.250000,0,0);}
.m119_c00286{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.m6d_c00286{transform:matrix(0.219955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219955,0.000000,0.000000,0.250000,0,0);}
.m1d_c00286{transform:matrix(0.220810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220810,0.000000,0.000000,0.250000,0,0);}
.m125_c00286{transform:matrix(0.221270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221270,0.000000,0.000000,0.250000,0,0);}
.m67_c00286{transform:matrix(0.221335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221335,0.000000,0.000000,0.250000,0,0);}
.m4b_c00286{transform:matrix(0.222090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222090,0.000000,0.000000,0.250000,0,0);}
.maa_c00286{transform:matrix(0.222100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222100,0.000000,0.000000,0.250000,0,0);}
.m68_c00286{transform:matrix(0.222340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222340,0.000000,0.000000,0.250000,0,0);}
.me3_c00286{transform:matrix(0.222840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222840,0.000000,0.000000,0.250000,0,0);}
.md_c00286{transform:matrix(0.223255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223255,0.000000,0.000000,0.250000,0,0);}
.m70_c00286{transform:matrix(0.223395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223395,0.000000,0.000000,0.250000,0,0);}
.m115_c00286{transform:matrix(0.223555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223555,0.000000,0.000000,0.250000,0,0);}
.m89_c00286{transform:matrix(0.224050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224050,0.000000,0.000000,0.250000,0,0);}
.m11f_c00286{transform:matrix(0.225290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225290,0.000000,0.000000,0.250000,0,0);}
.m76_c00286{transform:matrix(0.225390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225390,0.000000,0.000000,0.250000,0,0);}
.m97_c00286{transform:matrix(0.225720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225720,0.000000,0.000000,0.250000,0,0);}
.m8b_c00286{transform:matrix(0.226165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226165,0.000000,0.000000,0.250000,0,0);}
.m134_c00286{transform:matrix(0.226840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226840,0.000000,0.000000,0.250000,0,0);}
.mf1_c00286{transform:matrix(0.227150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227150,0.000000,0.000000,0.250000,0,0);}
.m13_c00286{transform:matrix(0.227740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227740,0.000000,0.000000,0.250000,0,0);}
.m78_c00286{transform:matrix(0.228055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228055,0.000000,0.000000,0.250000,0,0);}
.mc_c00286{transform:matrix(0.228195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228195,0.000000,0.000000,0.250000,0,0);}
.mea_c00286{transform:matrix(0.229495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229495,0.000000,0.000000,0.250000,0,0);}
.m84_c00286{transform:matrix(0.230130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230130,0.000000,0.000000,0.250000,0,0);}
.m6_c00286{transform:matrix(0.230775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230775,0.000000,0.000000,0.250000,0,0);}
.m3_c00286{transform:matrix(0.231205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231205,0.000000,0.000000,0.250000,0,0);}
.m46_c00286{transform:matrix(0.231545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231545,0.000000,0.000000,0.250000,0,0);}
.m138_c00286{transform:matrix(0.231925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231925,0.000000,0.000000,0.250000,0,0);}
.m12_c00286{transform:matrix(0.232650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232650,0.000000,0.000000,0.250000,0,0);}
.ma4_c00286{transform:matrix(0.233735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233735,0.000000,0.000000,0.250000,0,0);}
.m4e_c00286{transform:matrix(0.234395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234395,0.000000,0.000000,0.250000,0,0);}
.m8_c00286{transform:matrix(0.234675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234675,0.000000,0.000000,0.250000,0,0);}
.m1b_c00286{transform:matrix(0.237180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237180,0.000000,0.000000,0.250000,0,0);}
.m79_c00286{transform:matrix(0.237320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237320,0.000000,0.000000,0.250000,0,0);}
.m7b_c00286{transform:matrix(0.237875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237875,0.000000,0.000000,0.250000,0,0);}
.m4d_c00286{transform:matrix(0.238155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238155,0.000000,0.000000,0.250000,0,0);}
.m1a_c00286{transform:matrix(0.238390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238390,0.000000,0.000000,0.250000,0,0);}
.m9a_c00286{transform:matrix(0.238415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238415,0.000000,0.000000,0.250000,0,0);}
.m19_c00286{transform:matrix(0.238755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238755,0.000000,0.000000,0.250000,0,0);}
.m136_c00286{transform:matrix(0.239015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239015,0.000000,0.000000,0.250000,0,0);}
.m73_c00286{transform:matrix(0.239100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239100,0.000000,0.000000,0.250000,0,0);}
.m50_c00286{transform:matrix(0.239220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239220,0.000000,0.000000,0.250000,0,0);}
.m25_c00286{transform:matrix(0.239955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239955,0.000000,0.000000,0.250000,0,0);}
.m32_c00286{transform:matrix(0.240530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240530,0.000000,0.000000,0.250000,0,0);}
.m8d_c00286{transform:matrix(0.241390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241390,0.000000,0.000000,0.250000,0,0);}
.m27_c00286{transform:matrix(0.241580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241580,0.000000,0.000000,0.250000,0,0);}
.m9_c00286{transform:matrix(0.241960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241960,0.000000,0.000000,0.250000,0,0);}
.m93_c00286{transform:matrix(0.242050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242050,0.000000,0.000000,0.250000,0,0);}
.m91_c00286{transform:matrix(0.242285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242285,0.000000,0.000000,0.250000,0,0);}
.m13a_c00286{transform:matrix(0.242330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242330,0.000000,0.000000,0.250000,0,0);}
.m53_c00286{transform:matrix(0.242410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242410,0.000000,0.000000,0.250000,0,0);}
.ma3_c00286{transform:matrix(0.243705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243705,0.000000,0.000000,0.250000,0,0);}
.ma0_c00286{transform:matrix(0.243880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243880,0.000000,0.000000,0.250000,0,0);}
.m2_c00286{transform:matrix(0.244070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244070,0.000000,0.000000,0.250000,0,0);}
.m11c_c00286{transform:matrix(0.244140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244140,0.000000,0.000000,0.250000,0,0);}
.mb0_c00286{transform:matrix(0.244235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244235,0.000000,0.000000,0.250000,0,0);}
.m5d_c00286{transform:matrix(0.244310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244310,0.000000,0.000000,0.250000,0,0);}
.m22_c00286{transform:matrix(0.244620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244620,0.000000,0.000000,0.250000,0,0);}
.m40_c00286{transform:matrix(0.244985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244985,0.000000,0.000000,0.250000,0,0);}
.ma6_c00286{transform:matrix(0.244995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244995,0.000000,0.000000,0.250000,0,0);}
.m139_c00286{transform:matrix(0.245820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245820,0.000000,0.000000,0.250000,0,0);}
.m7c_c00286{transform:matrix(0.245990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245990,0.000000,0.000000,0.250000,0,0);}
.maf_c00286{transform:matrix(0.246485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246485,0.000000,0.000000,0.250000,0,0);}
.m2b_c00286{transform:matrix(0.246715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246715,0.000000,0.000000,0.250000,0,0);}
.meb_c00286{transform:matrix(0.246880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246880,0.000000,0.000000,0.250000,0,0);}
.m1c_c00286{transform:matrix(0.248910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248910,0.000000,0.000000,0.250000,0,0);}
.m11b_c00286{transform:matrix(0.248940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248940,0.000000,0.000000,0.250000,0,0);}
.m7e_c00286{transform:matrix(0.249350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249350,0.000000,0.000000,0.250000,0,0);}
.m9c_c00286{transform:matrix(0.249380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249380,0.000000,0.000000,0.250000,0,0);}
.m51_c00286{transform:matrix(0.249605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249605,0.000000,0.000000,0.250000,0,0);}
.m90_c00286{transform:matrix(0.250700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250700,0.000000,0.000000,0.250000,0,0);}
.m117_c00286{transform:matrix(0.251230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251230,0.000000,0.000000,0.250000,0,0);}
.m29_c00286{transform:matrix(0.251450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251450,0.000000,0.000000,0.250000,0,0);}
.m8f_c00286{transform:matrix(0.252080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252080,0.000000,0.000000,0.250000,0,0);}
.m12e_c00286{transform:matrix(0.252285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252285,0.000000,0.000000,0.250000,0,0);}
.m13b_c00286{transform:matrix(0.253160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253160,0.000000,0.000000,0.250000,0,0);}
.m33_c00286{transform:matrix(0.253350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253350,0.000000,0.000000,0.250000,0,0);}
.m12f_c00286{transform:matrix(0.253600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253600,0.000000,0.000000,0.250000,0,0);}
.ma2_c00286{transform:matrix(0.254115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254115,0.000000,0.000000,0.250000,0,0);}
.mf_c00286{transform:matrix(0.254355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254355,0.000000,0.000000,0.250000,0,0);}
.mf6_c00286{transform:matrix(0.254875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254875,0.000000,0.000000,0.250000,0,0);}
.m86_c00286{transform:matrix(0.255235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255235,0.000000,0.000000,0.250000,0,0);}
.m133_c00286{transform:matrix(0.255265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255265,0.000000,0.000000,0.250000,0,0);}
.ma8_c00286{transform:matrix(0.256010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256010,0.000000,0.000000,0.250000,0,0);}
.m116_c00286{transform:matrix(0.256150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256150,0.000000,0.000000,0.250000,0,0);}
.md9_c00286{transform:matrix(0.256320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256320,0.000000,0.000000,0.250000,0,0);}
.mb_c00286{transform:matrix(0.256415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256415,0.000000,0.000000,0.250000,0,0);}
.m5a_c00286{transform:matrix(0.256480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256480,0.000000,0.000000,0.250000,0,0);}
.m77_c00286{transform:matrix(0.256920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256920,0.000000,0.000000,0.250000,0,0);}
.mab_c00286{transform:matrix(0.257150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257150,0.000000,0.000000,0.250000,0,0);}
.m4a_c00286{transform:matrix(0.257295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257295,0.000000,0.000000,0.250000,0,0);}
.m49_c00286{transform:matrix(0.257510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257510,0.000000,0.000000,0.250000,0,0);}
.m7f_c00286{transform:matrix(0.257740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257740,0.000000,0.000000,0.250000,0,0);}
.m132_c00286{transform:matrix(0.258070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258070,0.000000,0.000000,0.250000,0,0);}
.m98_c00286{transform:matrix(0.258305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258305,0.000000,0.000000,0.250000,0,0);}
.m104_c00286{transform:matrix(0.258670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258670,0.000000,0.000000,0.250000,0,0);}
.m42_c00286{transform:matrix(0.259245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259245,0.000000,0.000000,0.250000,0,0);}
.m6c_c00286{transform:matrix(0.259275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259275,0.000000,0.000000,0.250000,0,0);}
.m9b_c00286{transform:matrix(0.259870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259870,0.000000,0.000000,0.250000,0,0);}
.mde_c00286{transform:matrix(0.260205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260205,0.000000,0.000000,0.250000,0,0);}
.mfa_c00286{transform:matrix(0.261125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261125,0.000000,0.000000,0.250000,0,0);}
.m2c_c00286{transform:matrix(0.261705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261705,0.000000,0.000000,0.250000,0,0);}
.m8e_c00286{transform:matrix(0.261910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261910,0.000000,0.000000,0.250000,0,0);}
.m6f_c00286{transform:matrix(0.262300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262300,0.000000,0.000000,0.250000,0,0);}
.m8c_c00286{transform:matrix(0.262395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262395,0.000000,0.000000,0.250000,0,0);}
.m5_c00286{transform:matrix(0.262665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262665,0.000000,0.000000,0.250000,0,0);}
.m15_c00286{transform:matrix(0.262945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262945,0.000000,0.000000,0.250000,0,0);}
.m4_c00286{transform:matrix(0.262960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262960,0.000000,0.000000,0.250000,0,0);}
.me4_c00286{transform:matrix(0.263465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263465,0.000000,0.000000,0.250000,0,0);}
.m11e_c00286{transform:matrix(0.263555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263555,0.000000,0.000000,0.250000,0,0);}
.mdb_c00286{transform:matrix(0.263950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263950,0.000000,0.000000,0.250000,0,0);}
.m1e_c00286{transform:matrix(0.264450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264450,0.000000,0.000000,0.250000,0,0);}
.m6e_c00286{transform:matrix(0.264480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264480,0.000000,0.000000,0.250000,0,0);}
.m120_c00286{transform:matrix(0.264760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264760,0.000000,0.000000,0.250000,0,0);}
.m39_c00286{transform:matrix(0.265040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265040,0.000000,0.000000,0.250000,0,0);}
.m13c_c00286{transform:matrix(0.265110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265110,0.000000,0.000000,0.250000,0,0);}
.mad_c00286{transform:matrix(0.265230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265230,0.000000,0.000000,0.250000,0,0);}
.m130_c00286{transform:matrix(0.265285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265285,0.000000,0.000000,0.250000,0,0);}
.m58_c00286{transform:matrix(0.266510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266510,0.000000,0.000000,0.250000,0,0);}
.m94_c00286{transform:matrix(0.266765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266765,0.000000,0.000000,0.250000,0,0);}
.m2f_c00286{transform:matrix(0.266900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266900,0.000000,0.000000,0.250000,0,0);}
.mc9_c00286{transform:matrix(0.268075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268075,0.000000,0.000000,0.250000,0,0);}
.m1f_c00286{transform:matrix(0.268165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268165,0.000000,0.000000,0.250000,0,0);}
.m41_c00286{transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);}
.mae_c00286{transform:matrix(0.268980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268980,0.000000,0.000000,0.250000,0,0);}
.m48_c00286{transform:matrix(0.269015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269015,0.000000,0.000000,0.250000,0,0);}
.m118_c00286{transform:matrix(0.269260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269260,0.000000,0.000000,0.250000,0,0);}
.md5_c00286{transform:matrix(0.269935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269935,0.000000,0.000000,0.250000,0,0);}
.mca_c00286{transform:matrix(0.269965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269965,0.000000,0.000000,0.250000,0,0);}
.m10_c00286{transform:matrix(0.270455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270455,0.000000,0.000000,0.250000,0,0);}
.m26_c00286{transform:matrix(0.270555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270555,0.000000,0.000000,0.250000,0,0);}
.m4c_c00286{transform:matrix(0.270600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270600,0.000000,0.000000,0.250000,0,0);}
.m10e_c00286{transform:matrix(0.270635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270635,0.000000,0.000000,0.250000,0,0);}
.m45_c00286{transform:matrix(0.270650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270650,0.000000,0.000000,0.250000,0,0);}
.m113_c00286{transform:matrix(0.271280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271280,0.000000,0.000000,0.250000,0,0);}
.m54_c00286{transform:matrix(0.271505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271505,0.000000,0.000000,0.250000,0,0);}
.m88_c00286{transform:matrix(0.271870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271870,0.000000,0.000000,0.250000,0,0);}
.m75_c00286{transform:matrix(0.272055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272055,0.000000,0.000000,0.250000,0,0);}
.m135_c00286{transform:matrix(0.272320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272320,0.000000,0.000000,0.250000,0,0);}
.m7_c00286{transform:matrix(0.272985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272985,0.000000,0.000000,0.250000,0,0);}
.m11d_c00286{transform:matrix(0.273325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273325,0.000000,0.000000,0.250000,0,0);}
.m131_c00286{transform:matrix(0.273395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273395,0.000000,0.000000,0.250000,0,0);}
.m72_c00286{transform:matrix(0.274850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274850,0.000000,0.000000,0.250000,0,0);}
.m2a_c00286{transform:matrix(0.275830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275830,0.000000,0.000000,0.250000,0,0);}
.me2_c00286{transform:matrix(0.275885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275885,0.000000,0.000000,0.250000,0,0);}
.m31_c00286{transform:matrix(0.276010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276010,0.000000,0.000000,0.250000,0,0);}
.md0_c00286{transform:matrix(0.276595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276595,0.000000,0.000000,0.250000,0,0);}
.m20_c00286{transform:matrix(0.277660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277660,0.000000,0.000000,0.250000,0,0);}
.mfd_c00286{transform:matrix(0.279115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279115,0.000000,0.000000,0.250000,0,0);}
.m87_c00286{transform:matrix(0.279200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279200,0.000000,0.000000,0.250000,0,0);}
.m23_c00286{transform:matrix(0.279220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279220,0.000000,0.000000,0.250000,0,0);}
.me0_c00286{transform:matrix(0.279690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279690,0.000000,0.000000,0.250000,0,0);}
.m30_c00286{transform:matrix(0.281260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281260,0.000000,0.000000,0.250000,0,0);}
.m82_c00286{transform:matrix(0.282735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282735,0.000000,0.000000,0.250000,0,0);}
.md4_c00286{transform:matrix(0.282865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282865,0.000000,0.000000,0.250000,0,0);}
.m28_c00286{transform:matrix(0.284615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284615,0.000000,0.000000,0.250000,0,0);}
.m3b_c00286{transform:matrix(0.284675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284675,0.000000,0.000000,0.250000,0,0);}
.ma5_c00286{transform:matrix(0.284770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284770,0.000000,0.000000,0.250000,0,0);}
.m21_c00286{transform:matrix(0.285640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285640,0.000000,0.000000,0.250000,0,0);}
.m95_c00286{transform:matrix(0.285680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285680,0.000000,0.000000,0.250000,0,0);}
.m2d_c00286{transform:matrix(0.285940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285940,0.000000,0.000000,0.250000,0,0);}
.m12a_c00286{transform:matrix(0.286200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286200,0.000000,0.000000,0.250000,0,0);}
.m81_c00286{transform:matrix(0.288020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288020,0.000000,0.000000,0.250000,0,0);}
.me7_c00286{transform:matrix(0.288105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288105,0.000000,0.000000,0.250000,0,0);}
.m92_c00286{transform:matrix(0.288120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288120,0.000000,0.000000,0.250000,0,0);}
.mff_c00286{transform:matrix(0.289585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289585,0.000000,0.000000,0.250000,0,0);}
.mc8_c00286{transform:matrix(0.291025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291025,0.000000,0.000000,0.250000,0,0);}
.mac_c00286{transform:matrix(0.291080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291080,0.000000,0.000000,0.250000,0,0);}
.mc4_c00286{transform:matrix(0.291245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291245,0.000000,0.000000,0.250000,0,0);}
.m9e_c00286{transform:matrix(0.291405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291405,0.000000,0.000000,0.250000,0,0);}
.m99_c00286{transform:matrix(0.292930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292930,0.000000,0.000000,0.250000,0,0);}
.mfb_c00286{transform:matrix(0.293020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293020,0.000000,0.000000,0.250000,0,0);}
.me_c00286{transform:matrix(0.293415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293415,0.000000,0.000000,0.250000,0,0);}
.ma9_c00286{transform:matrix(0.293435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293435,0.000000,0.000000,0.250000,0,0);}
.mbc_c00286{transform:matrix(0.294705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294705,0.000000,0.000000,0.250000,0,0);}
.md2_c00286{transform:matrix(0.295220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295220,0.000000,0.000000,0.250000,0,0);}
.mb1_c00286{transform:matrix(0.296020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296020,0.000000,0.000000,0.250000,0,0);}
.m96_c00286{transform:matrix(0.296520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296520,0.000000,0.000000,0.250000,0,0);}
.ma7_c00286{transform:matrix(0.296560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296560,0.000000,0.000000,0.250000,0,0);}
.mfe_c00286{transform:matrix(0.297105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297105,0.000000,0.000000,0.250000,0,0);}
.m55_c00286{transform:matrix(0.297440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297440,0.000000,0.000000,0.250000,0,0);}
.m11_c00286{transform:matrix(0.297765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297765,0.000000,0.000000,0.250000,0,0);}
.m85_c00286{transform:matrix(0.298360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298360,0.000000,0.000000,0.250000,0,0);}
.mb8_c00286{transform:matrix(0.298875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298875,0.000000,0.000000,0.250000,0,0);}
.m8a_c00286{transform:matrix(0.298880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298880,0.000000,0.000000,0.250000,0,0);}
.ma1_c00286{transform:matrix(0.299400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299400,0.000000,0.000000,0.250000,0,0);}
.m103_c00286{transform:matrix(0.299405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299405,0.000000,0.000000,0.250000,0,0);}
.m3a_c00286{transform:matrix(0.300125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300125,0.000000,0.000000,0.250000,0,0);}
.m5b_c00286{transform:matrix(0.300510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300510,0.000000,0.000000,0.250000,0,0);}
.md7_c00286{transform:matrix(0.301535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301535,0.000000,0.000000,0.250000,0,0);}
.m35_c00286{transform:matrix(0.302800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302800,0.000000,0.000000,0.250000,0,0);}
.m56_c00286{transform:matrix(0.302830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302830,0.000000,0.000000,0.250000,0,0);}
.m24_c00286{transform:matrix(0.303065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303065,0.000000,0.000000,0.250000,0,0);}
.m10a_c00286{transform:matrix(0.303235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303235,0.000000,0.000000,0.250000,0,0);}
.m128_c00286{transform:matrix(0.303410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303410,0.000000,0.000000,0.250000,0,0);}
.m129_c00286{transform:matrix(0.305180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305180,0.000000,0.000000,0.250000,0,0);}
.m108_c00286{transform:matrix(0.305605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305605,0.000000,0.000000,0.250000,0,0);}
.mf8_c00286{transform:matrix(0.305685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305685,0.000000,0.000000,0.250000,0,0);}
.mc3_c00286{transform:matrix(0.305940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305940,0.000000,0.000000,0.250000,0,0);}
.m122_c00286{transform:matrix(0.305960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305960,0.000000,0.000000,0.250000,0,0);}
.m5c_c00286{transform:matrix(0.306035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306035,0.000000,0.000000,0.250000,0,0);}
.m2e_c00286{transform:matrix(0.306370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306370,0.000000,0.000000,0.250000,0,0);}
.m100_c00286{transform:matrix(0.307120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307120,0.000000,0.000000,0.250000,0,0);}
.mcc_c00286{transform:matrix(0.307225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307225,0.000000,0.000000,0.250000,0,0);}
.m102_c00286{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m59_c00286{transform:matrix(0.308100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308100,0.000000,0.000000,0.250000,0,0);}
.m124_c00286{transform:matrix(0.308360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308360,0.000000,0.000000,0.250000,0,0);}
.mc6_c00286{transform:matrix(0.308480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308480,0.000000,0.000000,0.250000,0,0);}
.m123_c00286{transform:matrix(0.308875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308875,0.000000,0.000000,0.250000,0,0);}
.mda_c00286{transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);}
.mba_c00286{transform:matrix(0.309235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309235,0.000000,0.000000,0.250000,0,0);}
.mcf_c00286{transform:matrix(0.309340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309340,0.000000,0.000000,0.250000,0,0);}
.mf9_c00286{transform:matrix(0.309655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309655,0.000000,0.000000,0.250000,0,0);}
.mdc_c00286{transform:matrix(0.309820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309820,0.000000,0.000000,0.250000,0,0);}
.m112_c00286{transform:matrix(0.310435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310435,0.000000,0.000000,0.250000,0,0);}
.m10f_c00286{transform:matrix(0.311570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311570,0.000000,0.000000,0.250000,0,0);}
.md1_c00286{transform:matrix(0.312220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312220,0.000000,0.000000,0.250000,0,0);}
.md8_c00286{transform:matrix(0.312750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312750,0.000000,0.000000,0.250000,0,0);}
.mc0_c00286{transform:matrix(0.313210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313210,0.000000,0.000000,0.250000,0,0);}
.m110_c00286{transform:matrix(0.313420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313420,0.000000,0.000000,0.250000,0,0);}
.m127_c00286{transform:matrix(0.313835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313835,0.000000,0.000000,0.250000,0,0);}
.mce_c00286{transform:matrix(0.314445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314445,0.000000,0.000000,0.250000,0,0);}
.mfc_c00286{transform:matrix(0.314770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314770,0.000000,0.000000,0.250000,0,0);}
.m3f_c00286{transform:matrix(0.315290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315290,0.000000,0.000000,0.250000,0,0);}
.m57_c00286{transform:matrix(0.316080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316080,0.000000,0.000000,0.250000,0,0);}
.md6_c00286{transform:matrix(0.316660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316660,0.000000,0.000000,0.250000,0,0);}
.m10b_c00286{transform:matrix(0.316845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316845,0.000000,0.000000,0.250000,0,0);}
.m121_c00286{transform:matrix(0.318070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318070,0.000000,0.000000,0.250000,0,0);}
.m36_c00286{transform:matrix(0.318240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318240,0.000000,0.000000,0.250000,0,0);}
.m10c_c00286{transform:matrix(0.319100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319100,0.000000,0.000000,0.250000,0,0);}
.md3_c00286{transform:matrix(0.319235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319235,0.000000,0.000000,0.250000,0,0);}
.m111_c00286{transform:matrix(0.321030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321030,0.000000,0.000000,0.250000,0,0);}
.m114_c00286{transform:matrix(0.321280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321280,0.000000,0.000000,0.250000,0,0);}
.m5e_c00286{transform:matrix(0.322120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322120,0.000000,0.000000,0.250000,0,0);}
.m12c_c00286{transform:matrix(0.323330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323330,0.000000,0.000000,0.250000,0,0);}
.mb4_c00286{transform:matrix(0.323805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323805,0.000000,0.000000,0.250000,0,0);}
.m37_c00286{transform:matrix(0.324580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324580,0.000000,0.000000,0.250000,0,0);}
.mdd_c00286{transform:matrix(0.324950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324950,0.000000,0.000000,0.250000,0,0);}
.m12d_c00286{transform:matrix(0.325185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325185,0.000000,0.000000,0.250000,0,0);}
.mb6_c00286{transform:matrix(0.327605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327605,0.000000,0.000000,0.250000,0,0);}
.m38_c00286{transform:matrix(0.327985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327985,0.000000,0.000000,0.250000,0,0);}
.m105_c00286{transform:matrix(0.329430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329430,0.000000,0.000000,0.250000,0,0);}
.m10d_c00286{transform:matrix(0.329920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329920,0.000000,0.000000,0.250000,0,0);}
.m9f_c00286{transform:matrix(0.330675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330675,0.000000,0.000000,0.250000,0,0);}
.mb9_c00286{transform:matrix(0.332040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332040,0.000000,0.000000,0.250000,0,0);}
.m106_c00286{transform:matrix(0.336580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336580,0.000000,0.000000,0.250000,0,0);}
.mbb_c00286{transform:matrix(0.338415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338415,0.000000,0.000000,0.250000,0,0);}
.mb5_c00286{transform:matrix(0.342055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342055,0.000000,0.000000,0.250000,0,0);}
.me6_c00286{transform:matrix(0.342210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342210,0.000000,0.000000,0.250000,0,0);}
.med_c00286{transform:matrix(0.342735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342735,0.000000,0.000000,0.250000,0,0);}
.me5_c00286{transform:matrix(0.368460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368460,0.000000,0.000000,0.250000,0,0);}
.mbf_c00286{transform:matrix(0.368780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368780,0.000000,0.000000,0.250000,0,0);}
.m3c_c00286{transform:matrix(0.369425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369425,0.000000,0.000000,0.250000,0,0);}
.mf2_c00286{transform:matrix(0.370645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370645,0.000000,0.000000,0.250000,0,0);}
.m7d_c00286{transform:matrix(0.372820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372820,0.000000,0.000000,0.250000,0,0);}
.mf3_c00286{transform:matrix(0.375515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375515,0.000000,0.000000,0.250000,0,0);}
.m3e_c00286{transform:matrix(0.378360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378360,0.000000,0.000000,0.250000,0,0);}
.mc1_c00286{transform:matrix(0.382100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382100,0.000000,0.000000,0.250000,0,0);}
.me9_c00286{transform:matrix(0.384340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384340,0.000000,0.000000,0.250000,0,0);}
.me8_c00286{transform:matrix(0.402385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402385,0.000000,0.000000,0.250000,0,0);}
.m3d_c00286{transform:matrix(0.413655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413655,0.000000,0.000000,0.250000,0,0);}
.mc2_c00286{transform:matrix(0.417730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417730,0.000000,0.000000,0.250000,0,0);}
.mbe_c00286{transform:matrix(0.432780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432780,0.000000,0.000000,0.250000,0,0);}
.mb2_c00286{transform:matrix(0.471010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471010,0.000000,0.000000,0.250000,0,0);}
.mb7_c00286{transform:matrix(0.473630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.473630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.473630,0.000000,0.000000,0.250000,0,0);}
.mb3_c00286{transform:matrix(0.517880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517880,0.000000,0.000000,0.250000,0,0);}
.m126_c00286{transform:matrix(0.537920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537920,0.000000,0.000000,0.250000,0,0);}
.mf0_c00286{transform:matrix(0.568425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568425,0.000000,0.000000,0.250000,0,0);}
.mbd_c00286{transform:matrix(0.591885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591885,0.000000,0.000000,0.250000,0,0);}
.mf5_c00286{transform:matrix(0.595975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.595975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.595975,0.000000,0.000000,0.250000,0,0);}
.mef_c00286{transform:matrix(0.651130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.651130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.651130,0.000000,0.000000,0.250000,0,0);}
.m63_c00286{transform:matrix(0.690540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.690540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.690540,0.000000,0.000000,0.250000,0,0);}
.mee_c00286{transform:matrix(0.743160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.743160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.743160,0.000000,0.000000,0.250000,0,0);}
.mc5_c00286{transform:matrix(1.097565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.097565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.097565,0.000000,0.000000,0.250000,0,0);}
.mf4_c00286{transform:matrix(1.188485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.188485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.188485,0.000000,0.000000,0.250000,0,0);}
.v0_c00286{vertical-align:0.000000px;}
.ls0_c00286{letter-spacing:0.000000px;}
.sc__c00286{text-shadow:none;}
.sc0_c00286{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__c00286{-webkit-text-stroke:0px transparent;}
.sc0_c00286{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00286{word-spacing:0.000000px;}
._0_c00286{width:10.845714px;}
._2_c00286{width:13.913479px;}
._3_c00286{width:18.263183px;}
._1_c00286{width:19.911509px;}
.fc0_c00286{color:transparent;}
.fs6_c00286{font-size:18.000000px;}
.fs7_c00286{font-size:30.000000px;}
.fs5_c00286{font-size:54.000000px;}
.fs2_c00286{font-size:60.000000px;}
.fs1_c00286{font-size:66.000000px;}
.fs0_c00286{font-size:72.000000px;}
.fs4_c00286{font-size:78.000000px;}
.fs3_c00286{font-size:108.000000px;}
.y0_c00286{bottom:0.000000px;}
.y3d_c00286{bottom:68.274000px;}
.y3c_c00286{bottom:95.181000px;}
.y3b_c00286{bottom:128.088000px;}
.y3a_c00286{bottom:160.704000px;}
.y39_c00286{bottom:191.880000px;}
.y38_c00286{bottom:223.779000px;}
.y37_c00286{bottom:254.244000px;}
.y36_c00286{bottom:285.961500px;}
.y35_c00286{bottom:302.932500px;}
.y34_c00286{bottom:318.507000px;}
.y33_c00286{bottom:330.783000px;}
.y32_c00286{bottom:349.111500px;}
.y31_c00286{bottom:382.021500px;}
.y30_c00286{bottom:413.508000px;}
.y2f_c00286{bottom:445.230000px;}
.y2e_c00286{bottom:480.850500px;}
.y2d_c00286{bottom:484.236000px;}
.y2c_c00286{bottom:518.940000px;}
.y2b_c00286{bottom:550.498500px;}
.y2a_c00286{bottom:581.572500px;}
.y29_c00286{bottom:612.663000px;}
.y28_c00286{bottom:644.620500px;}
.y27_c00286{bottom:676.492500px;}
.y26_c00286{bottom:708.199500px;}
.y25_c00286{bottom:740.583000px;}
.y17_c00286{bottom:765.990000px;}
.y18_c00286{bottom:766.152000px;}
.y19_c00286{bottom:766.368000px;}
.y1a_c00286{bottom:766.711500px;}
.y1b_c00286{bottom:766.809000px;}
.y1c_c00286{bottom:767.307000px;}
.y1d_c00286{bottom:767.521500px;}
.y1e_c00286{bottom:767.904000px;}
.y1f_c00286{bottom:768.178500px;}
.y20_c00286{bottom:768.345000px;}
.y21_c00286{bottom:768.498000px;}
.y22_c00286{bottom:769.023000px;}
.y23_c00286{bottom:769.119000px;}
.y24_c00286{bottom:769.231500px;}
.y16_c00286{bottom:804.384000px;}
.y15_c00286{bottom:835.363500px;}
.y8_c00286{bottom:865.350000px;}
.y9_c00286{bottom:865.563000px;}
.ya_c00286{bottom:865.677000px;}
.yb_c00286{bottom:865.954500px;}
.yc_c00286{bottom:866.389500px;}
.yd_c00286{bottom:866.722500px;}
.ye_c00286{bottom:866.838000px;}
.yf_c00286{bottom:867.052500px;}
.y10_c00286{bottom:867.709500px;}
.y11_c00286{bottom:867.933000px;}
.y12_c00286{bottom:868.101000px;}
.y13_c00286{bottom:868.593000px;}
.y14_c00286{bottom:868.753500px;}
.y7_c00286{bottom:898.347000px;}
.y6_c00286{bottom:929.932500px;}
.y5_c00286{bottom:961.749000px;}
.y4_c00286{bottom:993.387000px;}
.y3_c00286{bottom:1025.748000px;}
.y2_c00286{bottom:1057.050000px;}
.y1_c00286{bottom:1123.200000px;}
.h8_c00286{height:18.000000px;}
.h9_c00286{height:30.000000px;}
.h7_c00286{height:54.000000px;}
.h4_c00286{height:60.000000px;}
.h3_c00286{height:66.000000px;}
.h2_c00286{height:72.000000px;}
.h6_c00286{height:78.000000px;}
.h5_c00286{height:108.000000px;}
.h1_c00286{height:1165.500000px;}
.h0_c00286{height:1165.800000px;}
.w0_c00286{width:915.000000px;}
.x0_c00286{left:0.000000px;}
.x12_c00286{left:143.100000px;}
.x32_c00286{left:144.180000px;}
.x5a_c00286{left:145.258500px;}
.x84_c00286{left:146.880000px;}
.x9f_c00286{left:147.960000px;}
.x93_c00286{left:150.660000px;}
.x41_c00286{left:176.956500px;}
.x23_c00286{left:186.300000px;}
.x13_c00286{left:187.650000px;}
.x2e_c00286{left:209.311500px;}
.x5f_c00286{left:210.598500px;}
.x2b_c00286{left:220.860000px;}
.x14_c00286{left:230.580000px;}
.x48_c00286{left:231.658500px;}
.x53_c00286{left:233.278500px;}
.x4d_c00286{left:245.428500px;}
.x33_c00286{left:252.450000px;}
.x3_c00286{left:253.530000px;}
.xb_c00286{left:254.610000px;}
.x6a_c00286{left:255.690000px;}
.x85_c00286{left:257.580000px;}
.x24_c00286{left:263.790000px;}
.x49_c00286{left:265.948500px;}
.xc_c00286{left:276.210000px;}
.x86_c00286{left:278.370000px;}
.x25_c00286{left:286.200000px;}
.x42_c00286{left:288.991500px;}
.xb8_c00286{left:298.350000px;}
.x63_c00286{left:299.970000px;}
.x94_c00286{left:301.050000px;}
.x3a_c00286{left:308.070000px;}
.x4e_c00286{left:309.418500px;}
.x54_c00286{left:311.578500px;}
.x97_c00286{left:313.200000px;}
.x4_c00286{left:318.060000px;}
.x15_c00286{left:319.950000px;}
.xb1_c00286{left:324.000000px;}
.x26_c00286{left:330.480000px;}
.x87_c00286{left:332.100000px;}
.x62_c00286{left:333.450000px;}
.x55_c00286{left:342.628500px;}
.x9c_c00286{left:344.520000px;}
.x1d_c00286{left:351.270000px;}
.x16_c00286{left:352.350000px;}
.xa3_c00286{left:355.050000px;}
.xa0_c00286{left:356.130000px;}
.x5_c00286{left:362.070000px;}
.x8e_c00286{left:365.310000px;}
.x88_c00286{left:366.390000px;}
.xa9_c00286{left:367.470000px;}
.xd_c00286{left:373.950000px;}
.x76_c00286{left:375.030000px;}
.x56_c00286{left:376.108500px;}
.x4f_c00286{left:377.728500px;}
.x1e_c00286{left:384.750000px;}
.x3b_c00286{left:386.370000px;}
.x77_c00286{left:390.150000px;}
.x27_c00286{left:396.360000px;}
.x34_c00286{left:397.710000px;}
.x8f_c00286{left:398.790000px;}
.x78_c00286{left:401.490000px;}
.x1_c00286{left:406.350000px;}
.x43_c00286{left:408.081000px;}
.x5b_c00286{left:409.318500px;}
.x79_c00286{left:412.830000px;}
.x95_c00286{left:416.610000px;}
.x17_c00286{left:418.770000px;}
.x6b_c00286{left:420.120000px;}
.xa4_c00286{left:421.200000px;}
.x7a_c00286{left:423.360000px;}
.x4a_c00286{left:429.568500px;}
.x64_c00286{left:431.190000px;}
.xaa_c00286{left:432.270000px;}
.x6e_c00286{left:434.160000px;}
.x2_c00286{left:437.130000px;}
.xe_c00286{left:440.370000px;}
.xb9_c00286{left:441.720000px;}
.x6f_c00286{left:443.610000px;}
.x6_c00286{left:450.630000px;}
.x60_c00286{left:454.678500px;}
.x70_c00286{left:456.300000px;}
.x18_c00286{left:461.970000px;}
.x35_c00286{left:463.320000px;}
.x99_c00286{left:464.670000px;}
.x7b_c00286{left:466.830000px;}
.xa5_c00286{left:467.910000px;}
.x1f_c00286{left:473.040000px;}
.x50_c00286{left:474.928500px;}
.x89_c00286{left:476.010000px;}
.x2f_c00286{left:484.173000px;}
.x61_c00286{left:485.458500px;}
.x7c_c00286{left:488.430000px;}
.x36_c00286{left:495.450000px;}
.x57_c00286{left:496.798500px;}
.xab_c00286{left:498.150000px;}
.x96_c00286{left:503.010000px;}
.x3c_c00286{left:506.790000px;}
.x65_c00286{left:508.410000px;}
.x7d_c00286{left:509.760000px;}
.x71_c00286{left:511.650000px;}
.x5c_c00286{left:519.208500px;}
.x90_c00286{left:520.290000px;}
.x72_c00286{left:522.450000px;}
.x7_c00286{left:526.230000px;}
.x44_c00286{left:527.418000px;}
.x7e_c00286{left:532.440000px;}
.x73_c00286{left:533.790000px;}
.x28_c00286{left:539.190000px;}
.x66_c00286{left:540.540000px;}
.x6c_c00286{left:541.620000px;}
.x74_c00286{left:544.320000px;}
.x37_c00286{left:551.070000px;}
.x7f_c00286{left:553.230000px;}
.xac_c00286{left:554.310000px;}
.x19_c00286{left:560.790000px;}
.x80_c00286{left:563.220000px;}
.xb2_c00286{left:564.840000px;}
.x75_c00286{left:566.460000px;}
.x9a_c00286{left:568.890000px;}
.x8_c00286{left:570.780000px;}
.x8a_c00286{left:573.750000px;}
.x81_c00286{left:576.450000px;}
.x3d_c00286{left:582.390000px;}
.x51_c00286{left:584.008500px;}
.x6d_c00286{left:585.090000px;}
.x9d_c00286{left:586.170000px;}
.x82_c00286{left:587.790000px;}
.x83_c00286{left:598.050000px;}
.x20_c00286{left:603.990000px;}
.x5d_c00286{left:606.148500px;}
.x1a_c00286{left:615.600000px;}
.x38_c00286{left:616.950000px;}
.xb3_c00286{left:619.650000px;}
.xad_c00286{left:621.540000px;}
.xf_c00286{left:626.400000px;}
.x58_c00286{left:628.558500px;}
.xa6_c00286{left:629.640000px;}
.x21_c00286{left:637.740000px;}
.x67_c00286{left:639.630000px;}
.xae_c00286{left:641.790000px;}
.x45_c00286{left:645.924000px;}
.x9b_c00286{left:649.890000px;}
.x8b_c00286{left:651.510000px;}
.xb4_c00286{left:654.210000px;}
.x30_c00286{left:660.465000px;}
.x52_c00286{left:671.758500px;}
.x4b_c00286{left:673.648500px;}
.x98_c00286{left:676.350000px;}
.x9_c00286{left:681.480000px;}
.x3e_c00286{left:682.830000px;}
.x2c_c00286{left:692.820000px;}
.x31_c00286{left:693.982500px;}
.x8c_c00286{left:695.790000px;}
.x10_c00286{left:703.350000px;}
.xa1_c00286{left:706.860000px;}
.x91_c00286{left:711.450000px;}
.x39_c00286{left:714.690000px;}
.x68_c00286{left:716.850000px;}
.xa_c00286{left:725.220000px;}
.x59_c00286{left:727.918500px;}
.xaf_c00286{left:730.620000px;}
.x8d_c00286{left:740.070000px;}
.x9e_c00286{left:741.960000px;}
.x92_c00286{left:744.930000px;}
.x22_c00286{left:747.900000px;}
.x3f_c00286{left:749.250000px;}
.x46_c00286{left:750.957000px;}
.x1b_c00286{left:758.160000px;}
.xa7_c00286{left:763.290000px;}
.x47_c00286{left:770.107500px;}
.xb5_c00286{left:774.630000px;}
.x29_c00286{left:780.570000px;}
.x40_c00286{left:781.650000px;}
.x1c_c00286{left:792.180000px;}
.x5e_c00286{left:794.068500px;}
.x11_c00286{left:803.790000px;}
.xa8_c00286{left:806.220000px;}
.x4c_c00286{left:815.128500px;}
.xa2_c00286{left:816.750000px;}
.xb6_c00286{left:818.910000px;}
.x2a_c00286{left:825.120000px;}
.x69_c00286{left:827.280000px;}
.xb0_c00286{left:829.710000px;}
.x2d_c00286{left:834.840000px;}
.xb7_c00286{left:852.660000px;}
@media print{
.v0_c00286{vertical-align:0.000000pt;}
.ls0_c00286{letter-spacing:0.000000pt;}
.ws0_c00286{word-spacing:0.000000pt;}
._0_c00286{width:9.640634pt;}
._2_c00286{width:12.367537pt;}
._3_c00286{width:16.233940pt;}
._1_c00286{width:17.699119pt;}
.fs6_c00286{font-size:16.000000pt;}
.fs7_c00286{font-size:26.666667pt;}
.fs5_c00286{font-size:48.000000pt;}
.fs2_c00286{font-size:53.333333pt;}
.fs1_c00286{font-size:58.666667pt;}
.fs0_c00286{font-size:64.000000pt;}
.fs4_c00286{font-size:69.333333pt;}
.fs3_c00286{font-size:96.000000pt;}
.y0_c00286{bottom:0.000000pt;}
.y3d_c00286{bottom:60.688000pt;}
.y3c_c00286{bottom:84.605333pt;}
.y3b_c00286{bottom:113.856000pt;}
.y3a_c00286{bottom:142.848000pt;}
.y39_c00286{bottom:170.560000pt;}
.y38_c00286{bottom:198.914667pt;}
.y37_c00286{bottom:225.994667pt;}
.y36_c00286{bottom:254.188000pt;}
.y35_c00286{bottom:269.273333pt;}
.y34_c00286{bottom:283.117333pt;}
.y33_c00286{bottom:294.029333pt;}
.y32_c00286{bottom:310.321333pt;}
.y31_c00286{bottom:339.574667pt;}
.y30_c00286{bottom:367.562667pt;}
.y2f_c00286{bottom:395.760000pt;}
.y2e_c00286{bottom:427.422667pt;}
.y2d_c00286{bottom:430.432000pt;}
.y2c_c00286{bottom:461.280000pt;}
.y2b_c00286{bottom:489.332000pt;}
.y2a_c00286{bottom:516.953333pt;}
.y29_c00286{bottom:544.589333pt;}
.y28_c00286{bottom:572.996000pt;}
.y27_c00286{bottom:601.326667pt;}
.y26_c00286{bottom:629.510667pt;}
.y25_c00286{bottom:658.296000pt;}
.y17_c00286{bottom:680.880000pt;}
.y18_c00286{bottom:681.024000pt;}
.y19_c00286{bottom:681.216000pt;}
.y1a_c00286{bottom:681.521333pt;}
.y1b_c00286{bottom:681.608000pt;}
.y1c_c00286{bottom:682.050667pt;}
.y1d_c00286{bottom:682.241333pt;}
.y1e_c00286{bottom:682.581333pt;}
.y1f_c00286{bottom:682.825333pt;}
.y20_c00286{bottom:682.973333pt;}
.y21_c00286{bottom:683.109333pt;}
.y22_c00286{bottom:683.576000pt;}
.y23_c00286{bottom:683.661333pt;}
.y24_c00286{bottom:683.761333pt;}
.y16_c00286{bottom:715.008000pt;}
.y15_c00286{bottom:742.545333pt;}
.y8_c00286{bottom:769.200000pt;}
.y9_c00286{bottom:769.389333pt;}
.ya_c00286{bottom:769.490667pt;}
.yb_c00286{bottom:769.737333pt;}
.yc_c00286{bottom:770.124000pt;}
.yd_c00286{bottom:770.420000pt;}
.ye_c00286{bottom:770.522667pt;}
.yf_c00286{bottom:770.713333pt;}
.y10_c00286{bottom:771.297333pt;}
.y11_c00286{bottom:771.496000pt;}
.y12_c00286{bottom:771.645333pt;}
.y13_c00286{bottom:772.082667pt;}
.y14_c00286{bottom:772.225333pt;}
.y7_c00286{bottom:798.530667pt;}
.y6_c00286{bottom:826.606667pt;}
.y5_c00286{bottom:854.888000pt;}
.y4_c00286{bottom:883.010667pt;}
.y3_c00286{bottom:911.776000pt;}
.y2_c00286{bottom:939.600000pt;}
.y1_c00286{bottom:998.400000pt;}
.h8_c00286{height:16.000000pt;}
.h9_c00286{height:26.666667pt;}
.h7_c00286{height:48.000000pt;}
.h4_c00286{height:53.333333pt;}
.h3_c00286{height:58.666667pt;}
.h2_c00286{height:64.000000pt;}
.h6_c00286{height:69.333333pt;}
.h5_c00286{height:96.000000pt;}
.h1_c00286{height:1036.000000pt;}
.h0_c00286{height:1036.266667pt;}
.w0_c00286{width:813.333333pt;}
.x0_c00286{left:0.000000pt;}
.x12_c00286{left:127.200000pt;}
.x32_c00286{left:128.160000pt;}
.x5a_c00286{left:129.118667pt;}
.x84_c00286{left:130.560000pt;}
.x9f_c00286{left:131.520000pt;}
.x93_c00286{left:133.920000pt;}
.x41_c00286{left:157.294667pt;}
.x23_c00286{left:165.600000pt;}
.x13_c00286{left:166.800000pt;}
.x2e_c00286{left:186.054667pt;}
.x5f_c00286{left:187.198667pt;}
.x2b_c00286{left:196.320000pt;}
.x14_c00286{left:204.960000pt;}
.x48_c00286{left:205.918667pt;}
.x53_c00286{left:207.358667pt;}
.x4d_c00286{left:218.158667pt;}
.x33_c00286{left:224.400000pt;}
.x3_c00286{left:225.360000pt;}
.xb_c00286{left:226.320000pt;}
.x6a_c00286{left:227.280000pt;}
.x85_c00286{left:228.960000pt;}
.x24_c00286{left:234.480000pt;}
.x49_c00286{left:236.398667pt;}
.xc_c00286{left:245.520000pt;}
.x86_c00286{left:247.440000pt;}
.x25_c00286{left:254.400000pt;}
.x42_c00286{left:256.881333pt;}
.xb8_c00286{left:265.200000pt;}
.x63_c00286{left:266.640000pt;}
.x94_c00286{left:267.600000pt;}
.x3a_c00286{left:273.840000pt;}
.x4e_c00286{left:275.038667pt;}
.x54_c00286{left:276.958667pt;}
.x97_c00286{left:278.400000pt;}
.x4_c00286{left:282.720000pt;}
.x15_c00286{left:284.400000pt;}
.xb1_c00286{left:288.000000pt;}
.x26_c00286{left:293.760000pt;}
.x87_c00286{left:295.200000pt;}
.x62_c00286{left:296.400000pt;}
.x55_c00286{left:304.558667pt;}
.x9c_c00286{left:306.240000pt;}
.x1d_c00286{left:312.240000pt;}
.x16_c00286{left:313.200000pt;}
.xa3_c00286{left:315.600000pt;}
.xa0_c00286{left:316.560000pt;}
.x5_c00286{left:321.840000pt;}
.x8e_c00286{left:324.720000pt;}
.x88_c00286{left:325.680000pt;}
.xa9_c00286{left:326.640000pt;}
.xd_c00286{left:332.400000pt;}
.x76_c00286{left:333.360000pt;}
.x56_c00286{left:334.318667pt;}
.x4f_c00286{left:335.758667pt;}
.x1e_c00286{left:342.000000pt;}
.x3b_c00286{left:343.440000pt;}
.x77_c00286{left:346.800000pt;}
.x27_c00286{left:352.320000pt;}
.x34_c00286{left:353.520000pt;}
.x8f_c00286{left:354.480000pt;}
.x78_c00286{left:356.880000pt;}
.x1_c00286{left:361.200000pt;}
.x43_c00286{left:362.738667pt;}
.x5b_c00286{left:363.838667pt;}
.x79_c00286{left:366.960000pt;}
.x95_c00286{left:370.320000pt;}
.x17_c00286{left:372.240000pt;}
.x6b_c00286{left:373.440000pt;}
.xa4_c00286{left:374.400000pt;}
.x7a_c00286{left:376.320000pt;}
.x4a_c00286{left:381.838667pt;}
.x64_c00286{left:383.280000pt;}
.xaa_c00286{left:384.240000pt;}
.x6e_c00286{left:385.920000pt;}
.x2_c00286{left:388.560000pt;}
.xe_c00286{left:391.440000pt;}
.xb9_c00286{left:392.640000pt;}
.x6f_c00286{left:394.320000pt;}
.x6_c00286{left:400.560000pt;}
.x60_c00286{left:404.158667pt;}
.x70_c00286{left:405.600000pt;}
.x18_c00286{left:410.640000pt;}
.x35_c00286{left:411.840000pt;}
.x99_c00286{left:413.040000pt;}
.x7b_c00286{left:414.960000pt;}
.xa5_c00286{left:415.920000pt;}
.x1f_c00286{left:420.480000pt;}
.x50_c00286{left:422.158667pt;}
.x89_c00286{left:423.120000pt;}
.x2f_c00286{left:430.376000pt;}
.x61_c00286{left:431.518667pt;}
.x7c_c00286{left:434.160000pt;}
.x36_c00286{left:440.400000pt;}
.x57_c00286{left:441.598667pt;}
.xab_c00286{left:442.800000pt;}
.x96_c00286{left:447.120000pt;}
.x3c_c00286{left:450.480000pt;}
.x65_c00286{left:451.920000pt;}
.x7d_c00286{left:453.120000pt;}
.x71_c00286{left:454.800000pt;}
.x5c_c00286{left:461.518667pt;}
.x90_c00286{left:462.480000pt;}
.x72_c00286{left:464.400000pt;}
.x7_c00286{left:467.760000pt;}
.x44_c00286{left:468.816000pt;}
.x7e_c00286{left:473.280000pt;}
.x73_c00286{left:474.480000pt;}
.x28_c00286{left:479.280000pt;}
.x66_c00286{left:480.480000pt;}
.x6c_c00286{left:481.440000pt;}
.x74_c00286{left:483.840000pt;}
.x37_c00286{left:489.840000pt;}
.x7f_c00286{left:491.760000pt;}
.xac_c00286{left:492.720000pt;}
.x19_c00286{left:498.480000pt;}
.x80_c00286{left:500.640000pt;}
.xb2_c00286{left:502.080000pt;}
.x75_c00286{left:503.520000pt;}
.x9a_c00286{left:505.680000pt;}
.x8_c00286{left:507.360000pt;}
.x8a_c00286{left:510.000000pt;}
.x81_c00286{left:512.400000pt;}
.x3d_c00286{left:517.680000pt;}
.x51_c00286{left:519.118667pt;}
.x6d_c00286{left:520.080000pt;}
.x9d_c00286{left:521.040000pt;}
.x82_c00286{left:522.480000pt;}
.x83_c00286{left:531.600000pt;}
.x20_c00286{left:536.880000pt;}
.x5d_c00286{left:538.798667pt;}
.x1a_c00286{left:547.200000pt;}
.x38_c00286{left:548.400000pt;}
.xb3_c00286{left:550.800000pt;}
.xad_c00286{left:552.480000pt;}
.xf_c00286{left:556.800000pt;}
.x58_c00286{left:558.718667pt;}
.xa6_c00286{left:559.680000pt;}
.x21_c00286{left:566.880000pt;}
.x67_c00286{left:568.560000pt;}
.xae_c00286{left:570.480000pt;}
.x45_c00286{left:574.154667pt;}
.x9b_c00286{left:577.680000pt;}
.x8b_c00286{left:579.120000pt;}
.xb4_c00286{left:581.520000pt;}
.x30_c00286{left:587.080000pt;}
.x52_c00286{left:597.118667pt;}
.x4b_c00286{left:598.798667pt;}
.x98_c00286{left:601.200000pt;}
.x9_c00286{left:605.760000pt;}
.x3e_c00286{left:606.960000pt;}
.x2c_c00286{left:615.840000pt;}
.x31_c00286{left:616.873333pt;}
.x8c_c00286{left:618.480000pt;}
.x10_c00286{left:625.200000pt;}
.xa1_c00286{left:628.320000pt;}
.x91_c00286{left:632.400000pt;}
.x39_c00286{left:635.280000pt;}
.x68_c00286{left:637.200000pt;}
.xa_c00286{left:644.640000pt;}
.x59_c00286{left:647.038667pt;}
.xaf_c00286{left:649.440000pt;}
.x8d_c00286{left:657.840000pt;}
.x9e_c00286{left:659.520000pt;}
.x92_c00286{left:662.160000pt;}
.x22_c00286{left:664.800000pt;}
.x3f_c00286{left:666.000000pt;}
.x46_c00286{left:667.517333pt;}
.x1b_c00286{left:673.920000pt;}
.xa7_c00286{left:678.480000pt;}
.x47_c00286{left:684.540000pt;}
.xb5_c00286{left:688.560000pt;}
.x29_c00286{left:693.840000pt;}
.x40_c00286{left:694.800000pt;}
.x1c_c00286{left:704.160000pt;}
.x5e_c00286{left:705.838667pt;}
.x11_c00286{left:714.480000pt;}
.xa8_c00286{left:716.640000pt;}
.x4c_c00286{left:724.558667pt;}
.xa2_c00286{left:726.000000pt;}
.xb6_c00286{left:727.920000pt;}
.x2a_c00286{left:733.440000pt;}
.x69_c00286{left:735.360000pt;}
.xb0_c00286{left:737.520000pt;}
.x2d_c00286{left:742.080000pt;}
.xb7_c00286{left:757.920000pt;}
}





/* 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_c00287 {
    display:none;
  }
  .loading-indicator_c00287.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00287 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_c00287 { 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_c00287" -> "#page-container .classname_c00287")
 */
.pf_c00287 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00287 { /* 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_c00287.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00287 { /* 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_c00287 { /* 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_c00287 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00287 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00287 {overflow:visible;}
  }
}
.c_c00287 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00287 { /* 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_c00287:after { /* webkit #35443 */
  content: '';
}
.t_c00287:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00287 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 */
}
.__c00287 { /* 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_c00287 { /* info for Javascript */
  display:none;
}
.l_c00287 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00287 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00287 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00287: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_c00287 {
    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_c00287.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00287.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_c00287 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00287{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00287;src:url('chunks/assets/font_cfe63ee56e9e10a97d33a3db.woff2')format("woff");}.ff1_c00287{font-family:ff1_c00287;line-height:1.000000;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;}
.m2a_c00287{transform:matrix(0.011569,-0.000150,0.003250,0.249979,0,0);-ms-transform:matrix(0.011569,-0.000150,0.003250,0.249979,0,0);-webkit-transform:matrix(0.011569,-0.000150,0.003250,0.249979,0,0);}
.m53_c00287{transform:matrix(0.040636,0.001383,-0.008504,0.249855,0,0);-ms-transform:matrix(0.040636,0.001383,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.040636,0.001383,-0.008504,0.249855,0,0);}
.m55_c00287{transform:matrix(0.089748,0.003054,-0.008504,0.249855,0,0);-ms-transform:matrix(0.089748,0.003054,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.089748,0.003054,-0.008504,0.249855,0,0);}
.m45_c00287{transform:matrix(0.095532,-0.001242,0.003250,0.249979,0,0);-ms-transform:matrix(0.095532,-0.001242,0.003250,0.249979,0,0);-webkit-transform:matrix(0.095532,-0.001242,0.003250,0.249979,0,0);}
.m61_c00287{transform:matrix(0.100822,0.003431,-0.008504,0.249855,0,0);-ms-transform:matrix(0.100822,0.003431,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.100822,0.003431,-0.008504,0.249855,0,0);}
.m69_c00287{transform:matrix(0.130858,-0.000654,0.001250,0.249997,0,0);-ms-transform:matrix(0.130858,-0.000654,0.001250,0.249997,0,0);-webkit-transform:matrix(0.130858,-0.000654,0.001250,0.249997,0,0);}
.m6b_c00287{transform:matrix(0.132103,-0.000661,0.001250,0.249997,0,0);-ms-transform:matrix(0.132103,-0.000661,0.001250,0.249997,0,0);-webkit-transform:matrix(0.132103,-0.000661,0.001250,0.249997,0,0);}
.m4a_c00287{transform:matrix(0.140923,0.004796,-0.008504,0.249855,0,0);-ms-transform:matrix(0.140923,0.004796,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.140923,0.004796,-0.008504,0.249855,0,0);}
.m68_c00287{transform:matrix(0.141373,-0.000707,0.001250,0.249997,0,0);-ms-transform:matrix(0.141373,-0.000707,0.001250,0.249997,0,0);-webkit-transform:matrix(0.141373,-0.000707,0.001250,0.249997,0,0);}
.m4e_c00287{transform:matrix(0.145411,0.004949,-0.008504,0.249855,0,0);-ms-transform:matrix(0.145411,0.004949,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.145411,0.004949,-0.008504,0.249855,0,0);}
.m67_c00287{transform:matrix(0.153923,-0.000770,0.001250,0.249997,0,0);-ms-transform:matrix(0.153923,-0.000770,0.001250,0.249997,0,0);-webkit-transform:matrix(0.153923,-0.000770,0.001250,0.249997,0,0);}
.m43_c00287{transform:matrix(0.156717,-0.002037,0.003250,0.249979,0,0);-ms-transform:matrix(0.156717,-0.002037,0.003250,0.249979,0,0);-webkit-transform:matrix(0.156717,-0.002037,0.003250,0.249979,0,0);}
.m6a_c00287{transform:matrix(0.165588,-0.000828,0.001250,0.249997,0,0);-ms-transform:matrix(0.165588,-0.000828,0.001250,0.249997,0,0);-webkit-transform:matrix(0.165588,-0.000828,0.001250,0.249997,0,0);}
.m6e_c00287{transform:matrix(0.179088,-0.000895,0.001250,0.249997,0,0);-ms-transform:matrix(0.179088,-0.000895,0.001250,0.249997,0,0);-webkit-transform:matrix(0.179088,-0.000895,0.001250,0.249997,0,0);}
.m0_c00287{transform:matrix(0.191309,-0.002487,0.003250,0.249979,0,0);-ms-transform:matrix(0.191309,-0.002487,0.003250,0.249979,0,0);-webkit-transform:matrix(0.191309,-0.002487,0.003250,0.249979,0,0);}
.m9_c00287{transform:matrix(0.192109,-0.002497,0.003250,0.249979,0,0);-ms-transform:matrix(0.192109,-0.002497,0.003250,0.249979,0,0);-webkit-transform:matrix(0.192109,-0.002497,0.003250,0.249979,0,0);}
.m6d_c00287{transform:matrix(0.194728,-0.000974,0.001250,0.249997,0,0);-ms-transform:matrix(0.194728,-0.000974,0.001250,0.249997,0,0);-webkit-transform:matrix(0.194728,-0.000974,0.001250,0.249997,0,0);}
.m5c_c00287{transform:matrix(0.206196,0.007018,-0.008504,0.249855,0,0);-ms-transform:matrix(0.206196,0.007018,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.206196,0.007018,-0.008504,0.249855,0,0);}
.m1_c00287{transform:matrix(0.229506,-0.002984,0.003250,0.249979,0,0);-ms-transform:matrix(0.229506,-0.002984,0.003250,0.249979,0,0);-webkit-transform:matrix(0.229506,-0.002984,0.003250,0.249979,0,0);}
.m21_c00287{transform:matrix(0.231425,-0.003009,0.003250,0.249979,0,0);-ms-transform:matrix(0.231425,-0.003009,0.003250,0.249979,0,0);-webkit-transform:matrix(0.231425,-0.003009,0.003250,0.249979,0,0);}
.m44_c00287{transform:matrix(0.233275,-0.003033,0.003250,0.249979,0,0);-ms-transform:matrix(0.233275,-0.003033,0.003250,0.249979,0,0);-webkit-transform:matrix(0.233275,-0.003033,0.003250,0.249979,0,0);}
.m3_c00287{transform:matrix(0.235715,-0.003064,0.003250,0.249979,0,0);-ms-transform:matrix(0.235715,-0.003064,0.003250,0.249979,0,0);-webkit-transform:matrix(0.235715,-0.003064,0.003250,0.249979,0,0);}
.m5e_c00287{transform:matrix(0.239931,0.008166,-0.008504,0.249855,0,0);-ms-transform:matrix(0.239931,0.008166,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.239931,0.008166,-0.008504,0.249855,0,0);}
.m11_c00287{transform:matrix(0.240420,-0.003125,0.003250,0.249979,0,0);-ms-transform:matrix(0.240420,-0.003125,0.003250,0.249979,0,0);-webkit-transform:matrix(0.240420,-0.003125,0.003250,0.249979,0,0);}
.m22_c00287{transform:matrix(0.248149,-0.003226,0.003250,0.249979,0,0);-ms-transform:matrix(0.248149,-0.003226,0.003250,0.249979,0,0);-webkit-transform:matrix(0.248149,-0.003226,0.003250,0.249979,0,0);}
.m13_c00287{transform:matrix(0.248339,-0.003228,0.003250,0.249979,0,0);-ms-transform:matrix(0.248339,-0.003228,0.003250,0.249979,0,0);-webkit-transform:matrix(0.248339,-0.003228,0.003250,0.249979,0,0);}
.m38_c00287{transform:matrix(0.248354,-0.003229,0.003250,0.249979,0,0);-ms-transform:matrix(0.248354,-0.003229,0.003250,0.249979,0,0);-webkit-transform:matrix(0.248354,-0.003229,0.003250,0.249979,0,0);}
.m70_c00287{transform:matrix(0.248567,-0.001243,0.001250,0.249997,0,0);-ms-transform:matrix(0.248567,-0.001243,0.001250,0.249997,0,0);-webkit-transform:matrix(0.248567,-0.001243,0.001250,0.249997,0,0);}
.m66_c00287{transform:matrix(0.248675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248675,0.000000,0.000000,0.250000,0,0);}
.m77_c00287{transform:matrix(0.250647,-0.001253,0.001250,0.249997,0,0);-ms-transform:matrix(0.250647,-0.001253,0.001250,0.249997,0,0);-webkit-transform:matrix(0.250647,-0.001253,0.001250,0.249997,0,0);}
.m6c_c00287{transform:matrix(0.251437,-0.001257,0.001250,0.249997,0,0);-ms-transform:matrix(0.251437,-0.001257,0.001250,0.249997,0,0);-webkit-transform:matrix(0.251437,-0.001257,0.001250,0.249997,0,0);}
.m1c_c00287{transform:matrix(0.253379,-0.003294,0.003250,0.249979,0,0);-ms-transform:matrix(0.253379,-0.003294,0.003250,0.249979,0,0);-webkit-transform:matrix(0.253379,-0.003294,0.003250,0.249979,0,0);}
.m29_c00287{transform:matrix(0.254149,-0.003304,0.003250,0.249979,0,0);-ms-transform:matrix(0.254149,-0.003304,0.003250,0.249979,0,0);-webkit-transform:matrix(0.254149,-0.003304,0.003250,0.249979,0,0);}
.m40_c00287{transform:matrix(0.255948,-0.003327,0.003250,0.249979,0,0);-ms-transform:matrix(0.255948,-0.003327,0.003250,0.249979,0,0);-webkit-transform:matrix(0.255948,-0.003327,0.003250,0.249979,0,0);}
.m1f_c00287{transform:matrix(0.256273,-0.003332,0.003250,0.249979,0,0);-ms-transform:matrix(0.256273,-0.003332,0.003250,0.249979,0,0);-webkit-transform:matrix(0.256273,-0.003332,0.003250,0.249979,0,0);}
.m5d_c00287{transform:matrix(0.260204,0.008856,-0.008504,0.249855,0,0);-ms-transform:matrix(0.260204,0.008856,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.260204,0.008856,-0.008504,0.249855,0,0);}
.m7_c00287{transform:matrix(0.260523,-0.003387,0.003250,0.249979,0,0);-ms-transform:matrix(0.260523,-0.003387,0.003250,0.249979,0,0);-webkit-transform:matrix(0.260523,-0.003387,0.003250,0.249979,0,0);}
.m57_c00287{transform:matrix(0.260954,0.008881,-0.008504,0.249855,0,0);-ms-transform:matrix(0.260954,0.008881,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.260954,0.008881,-0.008504,0.249855,0,0);}
.m28_c00287{transform:matrix(0.261018,-0.003393,0.003250,0.249979,0,0);-ms-transform:matrix(0.261018,-0.003393,0.003250,0.249979,0,0);-webkit-transform:matrix(0.261018,-0.003393,0.003250,0.249979,0,0);}
.m14_c00287{transform:matrix(0.261413,-0.003398,0.003250,0.249979,0,0);-ms-transform:matrix(0.261413,-0.003398,0.003250,0.249979,0,0);-webkit-transform:matrix(0.261413,-0.003398,0.003250,0.249979,0,0);}
.m5a_c00287{transform:matrix(0.270678,0.009212,-0.008504,0.249855,0,0);-ms-transform:matrix(0.270678,0.009212,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.270678,0.009212,-0.008504,0.249855,0,0);}
.m48_c00287{transform:matrix(0.270947,-0.003522,0.003250,0.249979,0,0);-ms-transform:matrix(0.270947,-0.003522,0.003250,0.249979,0,0);-webkit-transform:matrix(0.270947,-0.003522,0.003250,0.249979,0,0);}
.ma_c00287{transform:matrix(0.271527,-0.003530,0.003250,0.249979,0,0);-ms-transform:matrix(0.271527,-0.003530,0.003250,0.249979,0,0);-webkit-transform:matrix(0.271527,-0.003530,0.003250,0.249979,0,0);}
.m72_c00287{transform:matrix(0.274262,-0.001371,0.001250,0.249997,0,0);-ms-transform:matrix(0.274262,-0.001371,0.001250,0.249997,0,0);-webkit-transform:matrix(0.274262,-0.001371,0.001250,0.249997,0,0);}
.m52_c00287{transform:matrix(0.274601,0.009346,-0.008504,0.249855,0,0);-ms-transform:matrix(0.274601,0.009346,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.274601,0.009346,-0.008504,0.249855,0,0);}
.m3e_c00287{transform:matrix(0.275497,-0.003581,0.003250,0.249979,0,0);-ms-transform:matrix(0.275497,-0.003581,0.003250,0.249979,0,0);-webkit-transform:matrix(0.275497,-0.003581,0.003250,0.249979,0,0);}
.m23_c00287{transform:matrix(0.275952,-0.003587,0.003250,0.249979,0,0);-ms-transform:matrix(0.275952,-0.003587,0.003250,0.249979,0,0);-webkit-transform:matrix(0.275952,-0.003587,0.003250,0.249979,0,0);}
.m65_c00287{transform:matrix(0.281360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281360,0.000000,0.000000,0.250000,0,0);}
.m63_c00287{transform:matrix(0.281812,0.009591,-0.008504,0.249855,0,0);-ms-transform:matrix(0.281812,0.009591,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.281812,0.009591,-0.008504,0.249855,0,0);}
.m41_c00287{transform:matrix(0.281921,-0.003665,0.003250,0.249979,0,0);-ms-transform:matrix(0.281921,-0.003665,0.003250,0.249979,0,0);-webkit-transform:matrix(0.281921,-0.003665,0.003250,0.249979,0,0);}
.m56_c00287{transform:matrix(0.282037,0.009599,-0.008504,0.249855,0,0);-ms-transform:matrix(0.282037,0.009599,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.282037,0.009599,-0.008504,0.249855,0,0);}
.md_c00287{transform:matrix(0.282881,-0.003677,0.003250,0.249979,0,0);-ms-transform:matrix(0.282881,-0.003677,0.003250,0.249979,0,0);-webkit-transform:matrix(0.282881,-0.003677,0.003250,0.249979,0,0);}
.m2d_c00287{transform:matrix(0.284221,-0.003695,0.003250,0.249979,0,0);-ms-transform:matrix(0.284221,-0.003695,0.003250,0.249979,0,0);-webkit-transform:matrix(0.284221,-0.003695,0.003250,0.249979,0,0);}
.m25_c00287{transform:matrix(0.285201,-0.003708,0.003250,0.249979,0,0);-ms-transform:matrix(0.285201,-0.003708,0.003250,0.249979,0,0);-webkit-transform:matrix(0.285201,-0.003708,0.003250,0.249979,0,0);}
.m24_c00287{transform:matrix(0.286476,-0.003724,0.003250,0.249979,0,0);-ms-transform:matrix(0.286476,-0.003724,0.003250,0.249979,0,0);-webkit-transform:matrix(0.286476,-0.003724,0.003250,0.249979,0,0);}
.m12_c00287{transform:matrix(0.286666,-0.003727,0.003250,0.249979,0,0);-ms-transform:matrix(0.286666,-0.003727,0.003250,0.249979,0,0);-webkit-transform:matrix(0.286666,-0.003727,0.003250,0.249979,0,0);}
.m74_c00287{transform:matrix(0.288711,-0.001444,0.001250,0.249997,0,0);-ms-transform:matrix(0.288711,-0.001444,0.001250,0.249997,0,0);-webkit-transform:matrix(0.288711,-0.001444,0.001250,0.249997,0,0);}
.m10_c00287{transform:matrix(0.290135,-0.003772,0.003250,0.249979,0,0);-ms-transform:matrix(0.290135,-0.003772,0.003250,0.249979,0,0);-webkit-transform:matrix(0.290135,-0.003772,0.003250,0.249979,0,0);}
.m17_c00287{transform:matrix(0.290170,-0.003772,0.003250,0.249979,0,0);-ms-transform:matrix(0.290170,-0.003772,0.003250,0.249979,0,0);-webkit-transform:matrix(0.290170,-0.003772,0.003250,0.249979,0,0);}
.m50_c00287{transform:matrix(0.292331,0.009949,-0.008504,0.249855,0,0);-ms-transform:matrix(0.292331,0.009949,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.292331,0.009949,-0.008504,0.249855,0,0);}
.m18_c00287{transform:matrix(0.292370,-0.003801,0.003250,0.249979,0,0);-ms-transform:matrix(0.292370,-0.003801,0.003250,0.249979,0,0);-webkit-transform:matrix(0.292370,-0.003801,0.003250,0.249979,0,0);}
.m2e_c00287{transform:matrix(0.294270,-0.003826,0.003250,0.249979,0,0);-ms-transform:matrix(0.294270,-0.003826,0.003250,0.249979,0,0);-webkit-transform:matrix(0.294270,-0.003826,0.003250,0.249979,0,0);}
.m26_c00287{transform:matrix(0.296125,-0.003850,0.003250,0.249979,0,0);-ms-transform:matrix(0.296125,-0.003850,0.003250,0.249979,0,0);-webkit-transform:matrix(0.296125,-0.003850,0.003250,0.249979,0,0);}
.m19_c00287{transform:matrix(0.296845,-0.003859,0.003250,0.249979,0,0);-ms-transform:matrix(0.296845,-0.003859,0.003250,0.249979,0,0);-webkit-transform:matrix(0.296845,-0.003859,0.003250,0.249979,0,0);}
.m6f_c00287{transform:matrix(0.299391,-0.001497,0.001250,0.249997,0,0);-ms-transform:matrix(0.299391,-0.001497,0.001250,0.249997,0,0);-webkit-transform:matrix(0.299391,-0.001497,0.001250,0.249997,0,0);}
.m1a_c00287{transform:matrix(0.300025,-0.003900,0.003250,0.249979,0,0);-ms-transform:matrix(0.300025,-0.003900,0.003250,0.249979,0,0);-webkit-transform:matrix(0.300025,-0.003900,0.003250,0.249979,0,0);}
.m42_c00287{transform:matrix(0.301794,-0.003923,0.003250,0.249979,0,0);-ms-transform:matrix(0.301794,-0.003923,0.003250,0.249979,0,0);-webkit-transform:matrix(0.301794,-0.003923,0.003250,0.249979,0,0);}
.m34_c00287{transform:matrix(0.303784,-0.003949,0.003250,0.249979,0,0);-ms-transform:matrix(0.303784,-0.003949,0.003250,0.249979,0,0);-webkit-transform:matrix(0.303784,-0.003949,0.003250,0.249979,0,0);}
.m6_c00287{transform:matrix(0.304509,-0.003959,0.003250,0.249979,0,0);-ms-transform:matrix(0.304509,-0.003959,0.003250,0.249979,0,0);-webkit-transform:matrix(0.304509,-0.003959,0.003250,0.249979,0,0);}
.m4f_c00287{transform:matrix(0.310065,0.010553,-0.008504,0.249855,0,0);-ms-transform:matrix(0.310065,0.010553,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.310065,0.010553,-0.008504,0.249855,0,0);}
.m27_c00287{transform:matrix(0.310339,-0.004034,0.003250,0.249979,0,0);-ms-transform:matrix(0.310339,-0.004034,0.003250,0.249979,0,0);-webkit-transform:matrix(0.310339,-0.004034,0.003250,0.249979,0,0);}
.m64_c00287{transform:matrix(0.313355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313355,0.000000,0.000000,0.250000,0,0);}
.m2f_c00287{transform:matrix(0.313983,-0.004082,0.003250,0.249979,0,0);-ms-transform:matrix(0.313983,-0.004082,0.003250,0.249979,0,0);-webkit-transform:matrix(0.313983,-0.004082,0.003250,0.249979,0,0);}
.m3f_c00287{transform:matrix(0.314033,-0.004082,0.003250,0.249979,0,0);-ms-transform:matrix(0.314033,-0.004082,0.003250,0.249979,0,0);-webkit-transform:matrix(0.314033,-0.004082,0.003250,0.249979,0,0);}
.m58_c00287{transform:matrix(0.317456,0.010804,-0.008504,0.249855,0,0);-ms-transform:matrix(0.317456,0.010804,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.317456,0.010804,-0.008504,0.249855,0,0);}
.m1d_c00287{transform:matrix(0.318168,-0.004136,0.003250,0.249979,0,0);-ms-transform:matrix(0.318168,-0.004136,0.003250,0.249979,0,0);-webkit-transform:matrix(0.318168,-0.004136,0.003250,0.249979,0,0);}
.m2c_c00287{transform:matrix(0.318343,-0.004138,0.003250,0.249979,0,0);-ms-transform:matrix(0.318343,-0.004138,0.003250,0.249979,0,0);-webkit-transform:matrix(0.318343,-0.004138,0.003250,0.249979,0,0);}
.m15_c00287{transform:matrix(0.318883,-0.004145,0.003250,0.249979,0,0);-ms-transform:matrix(0.318883,-0.004145,0.003250,0.249979,0,0);-webkit-transform:matrix(0.318883,-0.004145,0.003250,0.249979,0,0);}
.m1b_c00287{transform:matrix(0.319218,-0.004150,0.003250,0.249979,0,0);-ms-transform:matrix(0.319218,-0.004150,0.003250,0.249979,0,0);-webkit-transform:matrix(0.319218,-0.004150,0.003250,0.249979,0,0);}
.m35_c00287{transform:matrix(0.320148,-0.004162,0.003250,0.249979,0,0);-ms-transform:matrix(0.320148,-0.004162,0.003250,0.249979,0,0);-webkit-transform:matrix(0.320148,-0.004162,0.003250,0.249979,0,0);}
.m76_c00287{transform:matrix(0.320426,-0.001602,0.001250,0.249997,0,0);-ms-transform:matrix(0.320426,-0.001602,0.001250,0.249997,0,0);-webkit-transform:matrix(0.320426,-0.001602,0.001250,0.249997,0,0);}
.m3b_c00287{transform:matrix(0.322183,-0.004188,0.003250,0.249979,0,0);-ms-transform:matrix(0.322183,-0.004188,0.003250,0.249979,0,0);-webkit-transform:matrix(0.322183,-0.004188,0.003250,0.249979,0,0);}
.m5b_c00287{transform:matrix(0.330734,0.011256,-0.008504,0.249855,0,0);-ms-transform:matrix(0.330734,0.011256,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.330734,0.011256,-0.008504,0.249855,0,0);}
.me_c00287{transform:matrix(0.331002,-0.004303,0.003250,0.249979,0,0);-ms-transform:matrix(0.331002,-0.004303,0.003250,0.249979,0,0);-webkit-transform:matrix(0.331002,-0.004303,0.003250,0.249979,0,0);}
.m5_c00287{transform:matrix(0.331447,-0.004309,0.003250,0.249979,0,0);-ms-transform:matrix(0.331447,-0.004309,0.003250,0.249979,0,0);-webkit-transform:matrix(0.331447,-0.004309,0.003250,0.249979,0,0);}
.m3a_c00287{transform:matrix(0.331507,-0.004310,0.003250,0.249979,0,0);-ms-transform:matrix(0.331507,-0.004310,0.003250,0.249979,0,0);-webkit-transform:matrix(0.331507,-0.004310,0.003250,0.249979,0,0);}
.m4c_c00287{transform:matrix(0.334436,0.011382,-0.008504,0.249855,0,0);-ms-transform:matrix(0.334436,0.011382,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.334436,0.011382,-0.008504,0.249855,0,0);}
.m59_c00287{transform:matrix(0.336785,0.011462,-0.008504,0.249855,0,0);-ms-transform:matrix(0.336785,0.011462,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.336785,0.011462,-0.008504,0.249855,0,0);}
.m1e_c00287{transform:matrix(0.339666,-0.004416,0.003250,0.249979,0,0);-ms-transform:matrix(0.339666,-0.004416,0.003250,0.249979,0,0);-webkit-transform:matrix(0.339666,-0.004416,0.003250,0.249979,0,0);}
.mf_c00287{transform:matrix(0.342181,-0.004448,0.003250,0.249979,0,0);-ms-transform:matrix(0.342181,-0.004448,0.003250,0.249979,0,0);-webkit-transform:matrix(0.342181,-0.004448,0.003250,0.249979,0,0);}
.mc_c00287{transform:matrix(0.356785,-0.004638,0.003250,0.249979,0,0);-ms-transform:matrix(0.356785,-0.004638,0.003250,0.249979,0,0);-webkit-transform:matrix(0.356785,-0.004638,0.003250,0.249979,0,0);}
.m46_c00287{transform:matrix(0.357490,-0.004647,0.003250,0.249979,0,0);-ms-transform:matrix(0.357490,-0.004647,0.003250,0.249979,0,0);-webkit-transform:matrix(0.357490,-0.004647,0.003250,0.249979,0,0);}
.m31_c00287{transform:matrix(0.364454,-0.004738,0.003250,0.249979,0,0);-ms-transform:matrix(0.364454,-0.004738,0.003250,0.249979,0,0);-webkit-transform:matrix(0.364454,-0.004738,0.003250,0.249979,0,0);}
.m73_c00287{transform:matrix(0.369020,-0.001845,0.001250,0.249997,0,0);-ms-transform:matrix(0.369020,-0.001845,0.001250,0.249997,0,0);-webkit-transform:matrix(0.369020,-0.001845,0.001250,0.249997,0,0);}
.m4d_c00287{transform:matrix(0.370740,0.012618,-0.008504,0.249855,0,0);-ms-transform:matrix(0.370740,0.012618,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.370740,0.012618,-0.008504,0.249855,0,0);}
.m47_c00287{transform:matrix(0.372729,-0.004845,0.003250,0.249979,0,0);-ms-transform:matrix(0.372729,-0.004845,0.003250,0.249979,0,0);-webkit-transform:matrix(0.372729,-0.004845,0.003250,0.249979,0,0);}
.m39_c00287{transform:matrix(0.375438,-0.004881,0.003250,0.249979,0,0);-ms-transform:matrix(0.375438,-0.004881,0.003250,0.249979,0,0);-webkit-transform:matrix(0.375438,-0.004881,0.003250,0.249979,0,0);}
.m3d_c00287{transform:matrix(0.388822,-0.005055,0.003250,0.249979,0,0);-ms-transform:matrix(0.388822,-0.005055,0.003250,0.249979,0,0);-webkit-transform:matrix(0.388822,-0.005055,0.003250,0.249979,0,0);}
.m37_c00287{transform:matrix(0.395197,-0.005138,0.003250,0.249979,0,0);-ms-transform:matrix(0.395197,-0.005138,0.003250,0.249979,0,0);-webkit-transform:matrix(0.395197,-0.005138,0.003250,0.249979,0,0);}
.mb_c00287{transform:matrix(0.400586,-0.005208,0.003250,0.249979,0,0);-ms-transform:matrix(0.400586,-0.005208,0.003250,0.249979,0,0);-webkit-transform:matrix(0.400586,-0.005208,0.003250,0.249979,0,0);}
.m3c_c00287{transform:matrix(0.404271,-0.005256,0.003250,0.249979,0,0);-ms-transform:matrix(0.404271,-0.005256,0.003250,0.249979,0,0);-webkit-transform:matrix(0.404271,-0.005256,0.003250,0.249979,0,0);}
.m16_c00287{transform:matrix(0.414605,-0.005390,0.003250,0.249979,0,0);-ms-transform:matrix(0.414605,-0.005390,0.003250,0.249979,0,0);-webkit-transform:matrix(0.414605,-0.005390,0.003250,0.249979,0,0);}
.m2_c00287{transform:matrix(0.435838,-0.005666,0.003250,0.249979,0,0);-ms-transform:matrix(0.435838,-0.005666,0.003250,0.249979,0,0);-webkit-transform:matrix(0.435838,-0.005666,0.003250,0.249979,0,0);}
.m75_c00287{transform:matrix(0.438610,-0.002193,0.001250,0.249997,0,0);-ms-transform:matrix(0.438610,-0.002193,0.001250,0.249997,0,0);-webkit-transform:matrix(0.438610,-0.002193,0.001250,0.249997,0,0);}
.m5f_c00287{transform:matrix(0.440660,0.014997,-0.008504,0.249855,0,0);-ms-transform:matrix(0.440660,0.014997,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.440660,0.014997,-0.008504,0.249855,0,0);}
.m36_c00287{transform:matrix(0.463061,-0.006020,0.003250,0.249979,0,0);-ms-transform:matrix(0.463061,-0.006020,0.003250,0.249979,0,0);-webkit-transform:matrix(0.463061,-0.006020,0.003250,0.249979,0,0);}
.m30_c00287{transform:matrix(0.470105,-0.006111,0.003250,0.249979,0,0);-ms-transform:matrix(0.470105,-0.006111,0.003250,0.249979,0,0);-webkit-transform:matrix(0.470105,-0.006111,0.003250,0.249979,0,0);}
.m71_c00287{transform:matrix(0.482079,-0.002410,0.001250,0.249997,0,0);-ms-transform:matrix(0.482079,-0.002410,0.001250,0.249997,0,0);-webkit-transform:matrix(0.482079,-0.002410,0.001250,0.249997,0,0);}
.m8_c00287{transform:matrix(0.489759,-0.006367,0.003250,0.249979,0,0);-ms-transform:matrix(0.489759,-0.006367,0.003250,0.249979,0,0);-webkit-transform:matrix(0.489759,-0.006367,0.003250,0.249979,0,0);}
.m2b_c00287{transform:matrix(0.542754,-0.007056,0.003250,0.249979,0,0);-ms-transform:matrix(0.542754,-0.007056,0.003250,0.249979,0,0);-webkit-transform:matrix(0.542754,-0.007056,0.003250,0.249979,0,0);}
.m32_c00287{transform:matrix(0.544954,-0.007084,0.003250,0.249979,0,0);-ms-transform:matrix(0.544954,-0.007084,0.003250,0.249979,0,0);-webkit-transform:matrix(0.544954,-0.007084,0.003250,0.249979,0,0);}
.m60_c00287{transform:matrix(0.641074,0.021818,-0.008504,0.249855,0,0);-ms-transform:matrix(0.641074,0.021818,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.641074,0.021818,-0.008504,0.249855,0,0);}
.m4_c00287{transform:matrix(0.657384,-0.008546,0.003250,0.249979,0,0);-ms-transform:matrix(0.657384,-0.008546,0.003250,0.249979,0,0);-webkit-transform:matrix(0.657384,-0.008546,0.003250,0.249979,0,0);}
.m62_c00287{transform:matrix(0.685638,0.023335,-0.008504,0.249855,0,0);-ms-transform:matrix(0.685638,0.023335,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.685638,0.023335,-0.008504,0.249855,0,0);}
.m54_c00287{transform:matrix(0.693444,0.023601,-0.008504,0.249855,0,0);-ms-transform:matrix(0.693444,0.023601,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.693444,0.023601,-0.008504,0.249855,0,0);}
.m33_c00287{transform:matrix(0.788583,-0.010252,0.003250,0.249979,0,0);-ms-transform:matrix(0.788583,-0.010252,0.003250,0.249979,0,0);-webkit-transform:matrix(0.788583,-0.010252,0.003250,0.249979,0,0);}
.m49_c00287{transform:matrix(0.994080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.994080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.994080,0.000000,0.000000,0.250000,0,0);}
.m20_c00287{transform:matrix(1.001540,-0.013020,0.003250,0.249979,0,0);-ms-transform:matrix(1.001540,-0.013020,0.003250,0.249979,0,0);-webkit-transform:matrix(1.001540,-0.013020,0.003250,0.249979,0,0);}
.m4b_c00287{transform:matrix(1.082593,0.036845,-0.008504,0.249855,0,0);-ms-transform:matrix(1.082593,0.036845,-0.008504,0.249855,0,0);-webkit-transform:matrix(1.082593,0.036845,-0.008504,0.249855,0,0);}
.m51_c00287{transform:matrix(1.095026,0.037268,-0.008504,0.249855,0,0);-ms-transform:matrix(1.095026,0.037268,-0.008504,0.249855,0,0);-webkit-transform:matrix(1.095026,0.037268,-0.008504,0.249855,0,0);}
.v0_c00287{vertical-align:0.000000px;}
.ls0_c00287{letter-spacing:0.000000px;}
.sc__c00287{text-shadow:none;}
.sc0_c00287{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__c00287{-webkit-text-stroke:0px transparent;}
.sc0_c00287{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00287{word-spacing:0.000000px;}
.fc0_c00287{color:transparent;}
.fs4_c00287{font-size:18.000000px;}
.fs1_c00287{font-size:66.005577px;}
.fs0_c00287{font-size:72.006084px;}
.fs6_c00287{font-size:77.967116px;}
.fs7_c00287{font-size:78.000000px;}
.fs9_c00287{font-size:78.000975px;}
.fs2_c00287{font-size:78.006591px;}
.fs5_c00287{font-size:83.964587px;}
.fs3_c00287{font-size:96.008112px;}
.fs8_c00287{font-size:132.001650px;}
.y0_c00287{bottom:0.000000px;}
.y6f_c00287{bottom:522.332025px;}
.y74_c00287{bottom:522.332310px;}
.y6e_c00287{bottom:522.332332px;}
.y75_c00287{bottom:522.332460px;}
.y73_c00287{bottom:522.332467px;}
.y70_c00287{bottom:522.332475px;}
.y72_c00287{bottom:522.332918px;}
.y71_c00287{bottom:522.332925px;}
.y66_c00287{bottom:541.890000px;}
.y67_c00287{bottom:542.428515px;}
.y68_c00287{bottom:542.647245px;}
.y69_c00287{bottom:542.826780px;}
.y6a_c00287{bottom:543.315555px;}
.y6b_c00287{bottom:543.475282px;}
.y6c_c00287{bottom:543.638325px;}
.y6d_c00287{bottom:544.894680px;}
.y65_c00287{bottom:554.247000px;}
.y64_c00287{bottom:589.403716px;}
.y63_c00287{bottom:590.955144px;}
.y62_c00287{bottom:592.304843px;}
.y61_c00287{bottom:600.782502px;}
.y55_c00287{bottom:604.557894px;}
.y56_c00287{bottom:605.113707px;}
.y57_c00287{bottom:605.311482px;}
.y58_c00287{bottom:606.108926px;}
.y59_c00287{bottom:606.361657px;}
.y5a_c00287{bottom:606.544085px;}
.y5b_c00287{bottom:606.739926px;}
.y5c_c00287{bottom:607.084083px;}
.y5d_c00287{bottom:607.341623px;}
.y5e_c00287{bottom:607.569564px;}
.y5f_c00287{bottom:608.276253px;}
.y60_c00287{bottom:608.819647px;}
.y54_c00287{bottom:642.532206px;}
.y53_c00287{bottom:645.983070px;}
.y52_c00287{bottom:648.127671px;}
.y51_c00287{bottom:648.969528px;}
.y50_c00287{bottom:650.696541px;}
.y4f_c00287{bottom:651.522231px;}
.y4e_c00287{bottom:652.788102px;}
.y4d_c00287{bottom:653.799177px;}
.y4c_c00287{bottom:660.250626px;}
.y4b_c00287{bottom:662.019000px;}
.y4a_c00287{bottom:753.843000px;}
.y45_c00287{bottom:775.220809px;}
.y47_c00287{bottom:775.220821px;}
.y46_c00287{bottom:775.221081px;}
.y49_c00287{bottom:775.221195px;}
.y48_c00287{bottom:775.221553px;}
.y41_c00287{bottom:805.032792px;}
.y42_c00287{bottom:806.149623px;}
.y43_c00287{bottom:807.342064px;}
.y44_c00287{bottom:808.282385px;}
.y36_c00287{bottom:831.039000px;}
.y37_c00287{bottom:832.424475px;}
.y38_c00287{bottom:833.213757px;}
.y39_c00287{bottom:833.731599px;}
.y3a_c00287{bottom:834.611224px;}
.y3b_c00287{bottom:835.323832px;}
.y3c_c00287{bottom:835.741990px;}
.y3d_c00287{bottom:836.531955px;}
.y3e_c00287{bottom:837.142422px;}
.y3f_c00287{bottom:838.480902px;}
.y40_c00287{bottom:838.921309px;}
.y2b_c00287{bottom:925.554749px;}
.y2c_c00287{bottom:925.904728px;}
.y2d_c00287{bottom:927.014530px;}
.y2e_c00287{bottom:928.106375px;}
.y2f_c00287{bottom:929.008595px;}
.y30_c00287{bottom:929.663982px;}
.y31_c00287{bottom:930.933323px;}
.y32_c00287{bottom:931.833066px;}
.y33_c00287{bottom:932.409017px;}
.y34_c00287{bottom:932.887161px;}
.y35_c00287{bottom:933.959624px;}
.y21_c00287{bottom:958.253811px;}
.y22_c00287{bottom:959.452986px;}
.y23_c00287{bottom:959.936811px;}
.y24_c00287{bottom:960.656725px;}
.y25_c00287{bottom:961.010618px;}
.y26_c00287{bottom:962.517110px;}
.y27_c00287{bottom:963.393111px;}
.y28_c00287{bottom:963.758392px;}
.y29_c00287{bottom:964.695089px;}
.y2a_c00287{bottom:965.612535px;}
.y13_c00287{bottom:988.737678px;}
.y14_c00287{bottom:989.263126px;}
.y15_c00287{bottom:989.727857px;}
.y16_c00287{bottom:990.501054px;}
.y17_c00287{bottom:991.721375px;}
.y18_c00287{bottom:992.480124px;}
.y19_c00287{bottom:992.863175px;}
.y1a_c00287{bottom:993.395234px;}
.y1b_c00287{bottom:993.945719px;}
.y1c_c00287{bottom:994.465960px;}
.y1d_c00287{bottom:995.476924px;}
.y1e_c00287{bottom:995.890412px;}
.y1f_c00287{bottom:997.171684px;}
.y20_c00287{bottom:997.760601px;}
.ya_c00287{bottom:1021.139970px;}
.yb_c00287{bottom:1021.543990px;}
.yc_c00287{bottom:1022.886390px;}
.yd_c00287{bottom:1023.792263px;}
.ye_c00287{bottom:1024.607012px;}
.yf_c00287{bottom:1026.238615px;}
.y10_c00287{bottom:1026.700941px;}
.y11_c00287{bottom:1027.148037px;}
.y12_c00287{bottom:1028.351363px;}
.y1_c00287{bottom:1053.273000px;}
.y2_c00287{bottom:1054.083245px;}
.y3_c00287{bottom:1054.675382px;}
.y4_c00287{bottom:1055.396414px;}
.y5_c00287{bottom:1056.053778px;}
.y6_c00287{bottom:1056.619805px;}
.y7_c00287{bottom:1057.624620px;}
.y8_c00287{bottom:1058.829857px;}
.y9_c00287{bottom:1059.343818px;}
.h6_c00287{height:18.000000px;}
.h3_c00287{height:66.005577px;}
.h2_c00287{height:72.006084px;}
.h8_c00287{height:77.967116px;}
.h9_c00287{height:78.000000px;}
.hb_c00287{height:78.000975px;}
.h4_c00287{height:78.006591px;}
.h7_c00287{height:83.964587px;}
.h5_c00287{height:96.008112px;}
.ha_c00287{height:132.001650px;}
.h1_c00287{height:1165.500000px;}
.h0_c00287{height:1165.800000px;}
.w0_c00287{width:915.000000px;}
.x0_c00287{left:0.000000px;}
.x21_c00287{left:43.156418px;}
.xa_c00287{left:63.585487px;}
.x13_c00287{left:69.023565px;}
.x35_c00287{left:76.849500px;}
.x61_c00287{left:82.474500px;}
.xb_c00287{left:94.663987px;}
.x14_c00287{left:106.557578px;}
.x1_c00287{left:108.985500px;}
.x2b_c00287{left:114.280952px;}
.x15_c00287{left:139.767149px;}
.x22_c00287{left:152.134245px;}
.x5a_c00287{left:160.069587px;}
.x51_c00287{left:164.806803px;}
.x2_c00287{left:171.312000px;}
.x36_c00287{left:183.424500px;}
.x62_c00287{left:190.177500px;}
.x16_c00287{left:194.973927px;}
.x23_c00287{left:196.160396px;}
.xc_c00287{left:197.925487px;}
.x3_c00287{left:216.861000px;}
.x2c_c00287{left:218.493587px;}
.x63_c00287{left:233.923500px;}
.x37_c00287{left:244.138500px;}
.x48_c00287{left:253.083000px;}
.x24_c00287{left:261.578592px;}
.xd_c00287{left:267.607988px;}
.x64_c00287{left:269.830500px;}
.x4_c00287{left:272.325000px;}
.x68_c00287{left:273.782070px;}
.x17_c00287{left:282.151296px;}
.x38_c00287{left:283.972500px;}
.x25_c00287{left:293.763431px;}
.x2d_c00287{left:296.480573px;}
.x49_c00287{left:305.041989px;}
.x69_c00287{left:321.573262px;}
.x5_c00287{left:322.891500px;}
.xe_c00287{left:330.280987px;}
.x18_c00287{left:336.362094px;}
.x39_c00287{left:351.636000px;}
.x47_c00287{left:356.130000px;}
.x2e_c00287{left:360.919734px;}
.x19_c00287{left:363.750243px;}
.x6_c00287{left:366.432000px;}
.x65_c00287{left:367.585500px;}
.x52_c00287{left:387.551583px;}
.x66_c00287{left:399.531000px;}
.x1a_c00287{left:401.792756px;}
.x3a_c00287{left:406.452000px;}
.x2f_c00287{left:407.756630px;}
.x5b_c00287{left:416.700928px;}
.x53_c00287{left:423.765373px;}
.x26_c00287{left:430.650980px;}
.x67_c00287{left:432.139500px;}
.x6a_c00287{left:434.164575px;}
.x3b_c00287{left:438.618000px;}
.x3f_c00287{left:439.732840px;}
.x1b_c00287{left:441.137249px;}
.x7_c00287{left:443.725500px;}
.x54_c00287{left:449.878684px;}
.xf_c00287{left:455.788987px;}
.x5c_c00287{left:457.548418px;}
.x5e_c00287{left:463.320000px;}
.x1c_c00287{left:478.270761px;}
.x6b_c00287{left:483.575812px;}
.x10_c00287{left:491.352487px;}
.x4a_c00287{left:494.600741px;}
.x30_c00287{left:498.473960px;}
.x5d_c00287{left:504.499503px;}
.x27_c00287{left:510.268547px;}
.x40_c00287{left:514.217910px;}
.x5f_c00287{left:522.720000px;}
.x4b_c00287{left:524.308503px;}
.x11_c00287{left:525.744487px;}
.x55_c00287{left:527.418744px;}
.x8_c00287{left:536.436000px;}
.x28_c00287{left:543.444905px;}
.x3c_c00287{left:546.343500px;}
.x1d_c00287{left:550.497825px;}
.x4c_c00287{left:561.502772px;}
.x31_c00287{left:562.722621px;}
.x56_c00287{left:564.328807px;}
.x9_c00287{left:575.971500px;}
.x1e_c00287{left:579.996435px;}
.x4d_c00287{left:585.763486px;}
.x41_c00287{left:593.711343px;}
.x43_c00287{left:595.399631px;}
.x57_c00287{left:596.995197px;}
.x32_c00287{left:603.910595px;}
.x60_c00287{left:609.390000px;}
.x44_c00287{left:615.921601px;}
.x12_c00287{left:618.307987px;}
.x29_c00287{left:628.539108px;}
.x4e_c00287{left:636.507192px;}
.x33_c00287{left:638.036646px;}
.x3d_c00287{left:649.303500px;}
.x6c_c00287{left:653.678565px;}
.x42_c00287{left:656.349705px;}
.x4f_c00287{left:661.242931px;}
.x1f_c00287{left:671.516245px;}
.x45_c00287{left:678.296132px;}
.x3e_c00287{left:683.181000px;}
.x58_c00287{left:698.510196px;}
.x2a_c00287{left:711.921773px;}
.x20_c00287{left:713.586200px;}
.x34_c00287{left:714.648152px;}
.x46_c00287{left:724.199393px;}
.x59_c00287{left:776.479438px;}
.x50_c00287{left:825.650859px;}
@media print{
.v0_c00287{vertical-align:0.000000pt;}
.ls0_c00287{letter-spacing:0.000000pt;}
.ws0_c00287{word-spacing:0.000000pt;}
.fs4_c00287{font-size:16.000000pt;}
.fs1_c00287{font-size:58.671624pt;}
.fs0_c00287{font-size:64.005408pt;}
.fs6_c00287{font-size:69.304103pt;}
.fs7_c00287{font-size:69.333333pt;}
.fs9_c00287{font-size:69.334200pt;}
.fs2_c00287{font-size:69.339192pt;}
.fs5_c00287{font-size:74.635188pt;}
.fs3_c00287{font-size:85.340544pt;}
.fs8_c00287{font-size:117.334800pt;}
.y0_c00287{bottom:0.000000pt;}
.y6f_c00287{bottom:464.295133pt;}
.y74_c00287{bottom:464.295387pt;}
.y6e_c00287{bottom:464.295407pt;}
.y75_c00287{bottom:464.295520pt;}
.y73_c00287{bottom:464.295527pt;}
.y70_c00287{bottom:464.295533pt;}
.y72_c00287{bottom:464.295927pt;}
.y71_c00287{bottom:464.295933pt;}
.y66_c00287{bottom:481.680000pt;}
.y67_c00287{bottom:482.158680pt;}
.y68_c00287{bottom:482.353107pt;}
.y69_c00287{bottom:482.512693pt;}
.y6a_c00287{bottom:482.947160pt;}
.y6b_c00287{bottom:483.089140pt;}
.y6c_c00287{bottom:483.234067pt;}
.y6d_c00287{bottom:484.350827pt;}
.y65_c00287{bottom:492.664000pt;}
.y64_c00287{bottom:523.914415pt;}
.y63_c00287{bottom:525.293461pt;}
.y62_c00287{bottom:526.493193pt;}
.y61_c00287{bottom:534.028891pt;}
.y55_c00287{bottom:537.384795pt;}
.y56_c00287{bottom:537.878851pt;}
.y57_c00287{bottom:538.054651pt;}
.y58_c00287{bottom:538.763489pt;}
.y59_c00287{bottom:538.988140pt;}
.y5a_c00287{bottom:539.150297pt;}
.y5b_c00287{bottom:539.324379pt;}
.y5c_c00287{bottom:539.630296pt;}
.y5d_c00287{bottom:539.859220pt;}
.y5e_c00287{bottom:540.061835pt;}
.y5f_c00287{bottom:540.690003pt;}
.y60_c00287{bottom:541.173020pt;}
.y54_c00287{bottom:571.139739pt;}
.y53_c00287{bottom:574.207173pt;}
.y52_c00287{bottom:576.113485pt;}
.y51_c00287{bottom:576.861803pt;}
.y50_c00287{bottom:578.396925pt;}
.y4f_c00287{bottom:579.130872pt;}
.y4e_c00287{bottom:580.256091pt;}
.y4d_c00287{bottom:581.154824pt;}
.y4c_c00287{bottom:586.889445pt;}
.y4b_c00287{bottom:588.461333pt;}
.y4a_c00287{bottom:670.082667pt;}
.y45_c00287{bottom:689.085164pt;}
.y47_c00287{bottom:689.085175pt;}
.y46_c00287{bottom:689.085405pt;}
.y49_c00287{bottom:689.085507pt;}
.y48_c00287{bottom:689.085825pt;}
.y41_c00287{bottom:715.584704pt;}
.y42_c00287{bottom:716.577443pt;}
.y43_c00287{bottom:717.637391pt;}
.y44_c00287{bottom:718.473231pt;}
.y36_c00287{bottom:738.701333pt;}
.y37_c00287{bottom:739.932867pt;}
.y38_c00287{bottom:740.634451pt;}
.y39_c00287{bottom:741.094755pt;}
.y3a_c00287{bottom:741.876644pt;}
.y3b_c00287{bottom:742.510073pt;}
.y3c_c00287{bottom:742.881769pt;}
.y3d_c00287{bottom:743.583960pt;}
.y3e_c00287{bottom:744.126597pt;}
.y3f_c00287{bottom:745.316357pt;}
.y40_c00287{bottom:745.707831pt;}
.y2b_c00287{bottom:822.715332pt;}
.y2c_c00287{bottom:823.026425pt;}
.y2d_c00287{bottom:824.012916pt;}
.y2e_c00287{bottom:824.983444pt;}
.y2f_c00287{bottom:825.785417pt;}
.y30_c00287{bottom:826.367984pt;}
.y31_c00287{bottom:827.496287pt;}
.y32_c00287{bottom:828.296059pt;}
.y33_c00287{bottom:828.808015pt;}
.y34_c00287{bottom:829.233032pt;}
.y35_c00287{bottom:830.186332pt;}
.y21_c00287{bottom:851.781165pt;}
.y22_c00287{bottom:852.847099pt;}
.y23_c00287{bottom:853.277165pt;}
.y24_c00287{bottom:853.917089pt;}
.y25_c00287{bottom:854.231660pt;}
.y26_c00287{bottom:855.570764pt;}
.y27_c00287{bottom:856.349432pt;}
.y28_c00287{bottom:856.674127pt;}
.y29_c00287{bottom:857.506745pt;}
.y2a_c00287{bottom:858.322253pt;}
.y13_c00287{bottom:878.877936pt;}
.y14_c00287{bottom:879.345001pt;}
.y15_c00287{bottom:879.758095pt;}
.y16_c00287{bottom:880.445381pt;}
.y17_c00287{bottom:881.530111pt;}
.y18_c00287{bottom:882.204555pt;}
.y19_c00287{bottom:882.545044pt;}
.y1a_c00287{bottom:883.017985pt;}
.y1b_c00287{bottom:883.507305pt;}
.y1c_c00287{bottom:883.969743pt;}
.y1d_c00287{bottom:884.868377pt;}
.y1e_c00287{bottom:885.235921pt;}
.y1f_c00287{bottom:886.374831pt;}
.y20_c00287{bottom:886.898312pt;}
.ya_c00287{bottom:907.679973pt;}
.yb_c00287{bottom:908.039103pt;}
.yc_c00287{bottom:909.232347pt;}
.yd_c00287{bottom:910.037567pt;}
.ye_c00287{bottom:910.761788pt;}
.yf_c00287{bottom:912.212103pt;}
.y10_c00287{bottom:912.623059pt;}
.y11_c00287{bottom:913.020477pt;}
.y12_c00287{bottom:914.090100pt;}
.y1_c00287{bottom:936.242667pt;}
.y2_c00287{bottom:936.962884pt;}
.y3_c00287{bottom:937.489228pt;}
.y4_c00287{bottom:938.130145pt;}
.y5_c00287{bottom:938.714469pt;}
.y6_c00287{bottom:939.217604pt;}
.y7_c00287{bottom:940.110773pt;}
.y8_c00287{bottom:941.182095pt;}
.y9_c00287{bottom:941.638949pt;}
.h6_c00287{height:16.000000pt;}
.h3_c00287{height:58.671624pt;}
.h2_c00287{height:64.005408pt;}
.h8_c00287{height:69.304103pt;}
.h9_c00287{height:69.333333pt;}
.hb_c00287{height:69.334200pt;}
.h4_c00287{height:69.339192pt;}
.h7_c00287{height:74.635188pt;}
.h5_c00287{height:85.340544pt;}
.ha_c00287{height:117.334800pt;}
.h1_c00287{height:1036.000000pt;}
.h0_c00287{height:1036.266667pt;}
.w0_c00287{width:813.333333pt;}
.x0_c00287{left:0.000000pt;}
.x21_c00287{left:38.361260pt;}
.xa_c00287{left:56.520433pt;}
.x13_c00287{left:61.354280pt;}
.x35_c00287{left:68.310667pt;}
.x61_c00287{left:73.310667pt;}
.xb_c00287{left:84.145767pt;}
.x14_c00287{left:94.717847pt;}
.x1_c00287{left:96.876000pt;}
.x2b_c00287{left:101.583068pt;}
.x15_c00287{left:124.237465pt;}
.x22_c00287{left:135.230440pt;}
.x5a_c00287{left:142.284077pt;}
.x51_c00287{left:146.494936pt;}
.x2_c00287{left:152.277333pt;}
.x36_c00287{left:163.044000pt;}
.x62_c00287{left:169.046667pt;}
.x16_c00287{left:173.310157pt;}
.x23_c00287{left:174.364796pt;}
.xc_c00287{left:175.933767pt;}
.x3_c00287{left:192.765333pt;}
.x2c_c00287{left:194.216521pt;}
.x63_c00287{left:207.932000pt;}
.x37_c00287{left:217.012000pt;}
.x48_c00287{left:224.962667pt;}
.x24_c00287{left:232.514304pt;}
.xd_c00287{left:237.873767pt;}
.x64_c00287{left:239.849333pt;}
.x4_c00287{left:242.066667pt;}
.x68_c00287{left:243.361840pt;}
.x17_c00287{left:250.801152pt;}
.x38_c00287{left:252.420000pt;}
.x25_c00287{left:261.123049pt;}
.x2d_c00287{left:263.538287pt;}
.x49_c00287{left:271.148435pt;}
.x69_c00287{left:285.842900pt;}
.x5_c00287{left:287.014667pt;}
.xe_c00287{left:293.583100pt;}
.x18_c00287{left:298.988528pt;}
.x39_c00287{left:312.565333pt;}
.x47_c00287{left:316.560000pt;}
.x2e_c00287{left:320.817541pt;}
.x19_c00287{left:323.333549pt;}
.x6_c00287{left:325.717333pt;}
.x65_c00287{left:326.742667pt;}
.x52_c00287{left:344.490296pt;}
.x66_c00287{left:355.138667pt;}
.x1a_c00287{left:357.149116pt;}
.x3a_c00287{left:361.290667pt;}
.x2f_c00287{left:362.450337pt;}
.x5b_c00287{left:370.400825pt;}
.x53_c00287{left:376.680332pt;}
.x26_c00287{left:382.800871pt;}
.x67_c00287{left:384.124000pt;}
.x6a_c00287{left:385.924067pt;}
.x3b_c00287{left:389.882667pt;}
.x3f_c00287{left:390.873636pt;}
.x1b_c00287{left:392.121999pt;}
.x7_c00287{left:394.422667pt;}
.x54_c00287{left:399.892164pt;}
.xf_c00287{left:405.145767pt;}
.x5c_c00287{left:406.709705pt;}
.x5e_c00287{left:411.840000pt;}
.x1c_c00287{left:425.129565pt;}
.x6b_c00287{left:429.845167pt;}
.x10_c00287{left:436.757767pt;}
.x4a_c00287{left:439.645103pt;}
.x30_c00287{left:443.087964pt;}
.x5d_c00287{left:448.444003pt;}
.x27_c00287{left:453.572041pt;}
.x40_c00287{left:457.082587pt;}
.x5f_c00287{left:464.640000pt;}
.x4b_c00287{left:466.052003pt;}
.x11_c00287{left:467.328433pt;}
.x55_c00287{left:468.816661pt;}
.x8_c00287{left:476.832000pt;}
.x28_c00287{left:483.062137pt;}
.x3c_c00287{left:485.638667pt;}
.x1d_c00287{left:489.331400pt;}
.x4c_c00287{left:499.113575pt;}
.x31_c00287{left:500.197885pt;}
.x56_c00287{left:501.625607pt;}
.x9_c00287{left:511.974667pt;}
.x1e_c00287{left:515.552387pt;}
.x4d_c00287{left:520.678655pt;}
.x41_c00287{left:527.743416pt;}
.x43_c00287{left:529.244116pt;}
.x57_c00287{left:530.662397pt;}
.x32_c00287{left:536.809417pt;}
.x60_c00287{left:541.680000pt;}
.x44_c00287{left:547.485868pt;}
.x12_c00287{left:549.607100pt;}
.x29_c00287{left:558.701429pt;}
.x4e_c00287{left:565.784171pt;}
.x33_c00287{left:567.143685pt;}
.x3d_c00287{left:577.158667pt;}
.x6c_c00287{left:581.047613pt;}
.x42_c00287{left:583.421960pt;}
.x4f_c00287{left:587.771495pt;}
.x1f_c00287{left:596.903329pt;}
.x45_c00287{left:602.929895pt;}
.x3e_c00287{left:607.272000pt;}
.x58_c00287{left:620.897952pt;}
.x2a_c00287{left:632.819353pt;}
.x20_c00287{left:634.298844pt;}
.x34_c00287{left:635.242801pt;}
.x46_c00287{left:643.732793pt;}
.x59_c00287{left:690.203945pt;}
.x50_c00287{left:733.911875pt;}
}





/* 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_c00288 {
    display:none;
  }
  .loading-indicator_c00288.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00288 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_c00288 { 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_c00288" -> "#page-container .classname_c00288")
 */
.pf_c00288 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00288 { /* 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_c00288.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00288 { /* 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_c00288 { /* 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_c00288 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00288 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00288 {overflow:visible;}
  }
}
.c_c00288 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00288 { /* 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_c00288:after { /* webkit #35443 */
  content: '';
}
.t_c00288:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00288 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 */
}
.__c00288 { /* 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_c00288 { /* info for Javascript */
  display:none;
}
.l_c00288 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00288 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00288 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00288: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_c00288 {
    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_c00288.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00288.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_c00288 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00288{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00288;src:url('chunks/assets/font_c605e72f209fc835e906f064.woff2')format("woff");}.ff1_c00288{font-family:ff1_c00288;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m21_c00288{transform:matrix(0.129561,-0.001555,0.003000,0.249982,0,0);-ms-transform:matrix(0.129561,-0.001555,0.003000,0.249982,0,0);-webkit-transform:matrix(0.129561,-0.001555,0.003000,0.249982,0,0);}
.m20_c00288{transform:matrix(0.131306,-0.001576,0.003000,0.249982,0,0);-ms-transform:matrix(0.131306,-0.001576,0.003000,0.249982,0,0);-webkit-transform:matrix(0.131306,-0.001576,0.003000,0.249982,0,0);}
.m15_c00288{transform:matrix(0.142168,0.006119,-0.010751,0.249769,0,0);-ms-transform:matrix(0.142168,0.006119,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.142168,0.006119,-0.010751,0.249769,0,0);}
.m27_c00288{transform:matrix(0.154499,-0.001854,0.003000,0.249982,0,0);-ms-transform:matrix(0.154499,-0.001854,0.003000,0.249982,0,0);-webkit-transform:matrix(0.154499,-0.001854,0.003000,0.249982,0,0);}
.m14_c00288{transform:matrix(0.164288,0.007071,-0.010751,0.249769,0,0);-ms-transform:matrix(0.164288,0.007071,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.164288,0.007071,-0.010751,0.249769,0,0);}
.m2e_c00288{transform:matrix(0.178126,-0.001781,0.002500,0.249988,0,0);-ms-transform:matrix(0.178126,-0.001781,0.002500,0.249988,0,0);-webkit-transform:matrix(0.178126,-0.001781,0.002500,0.249988,0,0);}
.mb_c00288{transform:matrix(0.191215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191215,0.000000,0.000000,0.250000,0,0);}
.m31_c00288{transform:matrix(0.199265,-0.001993,0.002500,0.249988,0,0);-ms-transform:matrix(0.199265,-0.001993,0.002500,0.249988,0,0);-webkit-transform:matrix(0.199265,-0.001993,0.002500,0.249988,0,0);}
.m12_c00288{transform:matrix(0.199735,0.008597,-0.010751,0.249769,0,0);-ms-transform:matrix(0.199735,0.008597,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.199735,0.008597,-0.010751,0.249769,0,0);}
.m2a_c00288{transform:matrix(0.199850,-0.001999,0.002500,0.249988,0,0);-ms-transform:matrix(0.199850,-0.001999,0.002500,0.249988,0,0);-webkit-transform:matrix(0.199850,-0.001999,0.002500,0.249988,0,0);}
.m30_c00288{transform:matrix(0.201350,-0.002013,0.002500,0.249988,0,0);-ms-transform:matrix(0.201350,-0.002013,0.002500,0.249988,0,0);-webkit-transform:matrix(0.201350,-0.002013,0.002500,0.249988,0,0);}
.m13_c00288{transform:matrix(0.203816,0.008773,-0.010751,0.249769,0,0);-ms-transform:matrix(0.203816,0.008773,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.203816,0.008773,-0.010751,0.249769,0,0);}
.m11_c00288{transform:matrix(0.204061,0.008783,-0.010751,0.249769,0,0);-ms-transform:matrix(0.204061,0.008783,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.204061,0.008783,-0.010751,0.249769,0,0);}
.m1f_c00288{transform:matrix(0.206245,-0.002475,0.003000,0.249982,0,0);-ms-transform:matrix(0.206245,-0.002475,0.003000,0.249982,0,0);-webkit-transform:matrix(0.206245,-0.002475,0.003000,0.249982,0,0);}
.m25_c00288{transform:matrix(0.214145,-0.002570,0.003000,0.249982,0,0);-ms-transform:matrix(0.214145,-0.002570,0.003000,0.249982,0,0);-webkit-transform:matrix(0.214145,-0.002570,0.003000,0.249982,0,0);}
.m2f_c00288{transform:matrix(0.214644,-0.002146,0.002500,0.249988,0,0);-ms-transform:matrix(0.214644,-0.002146,0.002500,0.249988,0,0);-webkit-transform:matrix(0.214644,-0.002146,0.002500,0.249988,0,0);}
.m23_c00288{transform:matrix(0.222534,-0.002670,0.003000,0.249982,0,0);-ms-transform:matrix(0.222534,-0.002670,0.003000,0.249982,0,0);-webkit-transform:matrix(0.222534,-0.002670,0.003000,0.249982,0,0);}
.m26_c00288{transform:matrix(0.225759,-0.002709,0.003000,0.249982,0,0);-ms-transform:matrix(0.225759,-0.002709,0.003000,0.249982,0,0);-webkit-transform:matrix(0.225759,-0.002709,0.003000,0.249982,0,0);}
.m17_c00288{transform:matrix(0.231431,0.009961,-0.010751,0.249769,0,0);-ms-transform:matrix(0.231431,0.009961,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.231431,0.009961,-0.010751,0.249769,0,0);}
.m1c_c00288{transform:matrix(0.231768,-0.002781,0.003000,0.249982,0,0);-ms-transform:matrix(0.231768,-0.002781,0.003000,0.249982,0,0);-webkit-transform:matrix(0.231768,-0.002781,0.003000,0.249982,0,0);}
.m1b_c00288{transform:matrix(0.232118,-0.002785,0.003000,0.249982,0,0);-ms-transform:matrix(0.232118,-0.002785,0.003000,0.249982,0,0);-webkit-transform:matrix(0.232118,-0.002785,0.003000,0.249982,0,0);}
.m1d_c00288{transform:matrix(0.232878,-0.002795,0.003000,0.249982,0,0);-ms-transform:matrix(0.232878,-0.002795,0.003000,0.249982,0,0);-webkit-transform:matrix(0.232878,-0.002795,0.003000,0.249982,0,0);}
.m1e_c00288{transform:matrix(0.232913,-0.002795,0.003000,0.249982,0,0);-ms-transform:matrix(0.232913,-0.002795,0.003000,0.249982,0,0);-webkit-transform:matrix(0.232913,-0.002795,0.003000,0.249982,0,0);}
.m22_c00288{transform:matrix(0.236998,-0.002844,0.003000,0.249982,0,0);-ms-transform:matrix(0.236998,-0.002844,0.003000,0.249982,0,0);-webkit-transform:matrix(0.236998,-0.002844,0.003000,0.249982,0,0);}
.m29_c00288{transform:matrix(0.244008,-0.002440,0.002500,0.249988,0,0);-ms-transform:matrix(0.244008,-0.002440,0.002500,0.249988,0,0);-webkit-transform:matrix(0.244008,-0.002440,0.002500,0.249988,0,0);}
.m16_c00288{transform:matrix(0.252561,0.010871,-0.010751,0.249769,0,0);-ms-transform:matrix(0.252561,0.010871,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.252561,0.010871,-0.010751,0.249769,0,0);}
.m9_c00288{transform:matrix(0.259390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259390,0.000000,0.000000,0.250000,0,0);}
.m2c_c00288{transform:matrix(0.259777,-0.002598,0.002500,0.249988,0,0);-ms-transform:matrix(0.259777,-0.002598,0.002500,0.249988,0,0);-webkit-transform:matrix(0.259777,-0.002598,0.002500,0.249988,0,0);}
.m3_c00288{transform:matrix(0.263570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263570,0.000000,0.000000,0.250000,0,0);}
.m28_c00288{transform:matrix(0.277505,-0.003330,0.003000,0.249982,0,0);-ms-transform:matrix(0.277505,-0.003330,0.003000,0.249982,0,0);-webkit-transform:matrix(0.277505,-0.003330,0.003000,0.249982,0,0);}
.m33_c00288{transform:matrix(0.282591,-0.002826,0.002500,0.249988,0,0);-ms-transform:matrix(0.282591,-0.002826,0.002500,0.249988,0,0);-webkit-transform:matrix(0.282591,-0.002826,0.002500,0.249988,0,0);}
.m0_c00288{transform:matrix(0.284360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284360,0.000000,0.000000,0.250000,0,0);}
.m24_c00288{transform:matrix(0.285529,-0.003426,0.003000,0.249982,0,0);-ms-transform:matrix(0.285529,-0.003426,0.003000,0.249982,0,0);-webkit-transform:matrix(0.285529,-0.003426,0.003000,0.249982,0,0);}
.m1_c00288{transform:matrix(0.308450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308450,0.000000,0.000000,0.250000,0,0);}
.md_c00288{transform:matrix(0.308635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308635,0.000000,0.000000,0.250000,0,0);}
.mf_c00288{transform:matrix(0.310215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310215,0.000000,0.000000,0.250000,0,0);}
.m34_c00288{transform:matrix(0.316229,-0.003162,0.002500,0.249988,0,0);-ms-transform:matrix(0.316229,-0.003162,0.002500,0.249988,0,0);-webkit-transform:matrix(0.316229,-0.003162,0.002500,0.249988,0,0);}
.m18_c00288{transform:matrix(0.348575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348575,0.000000,0.000000,0.250000,0,0);}
.m2b_c00288{transform:matrix(0.351472,-0.003515,0.002500,0.249988,0,0);-ms-transform:matrix(0.351472,-0.003515,0.002500,0.249988,0,0);-webkit-transform:matrix(0.351472,-0.003515,0.002500,0.249988,0,0);}
.m19_c00288{transform:matrix(0.361555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361555,0.000000,0.000000,0.250000,0,0);}
.m1a_c00288{transform:matrix(0.374405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374405,0.000000,0.000000,0.250000,0,0);}
.m4_c00288{transform:matrix(0.436115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436115,0.000000,0.000000,0.250000,0,0);}
.m2_c00288{transform:matrix(0.450870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450870,0.000000,0.000000,0.250000,0,0);}
.m10_c00288{transform:matrix(0.453080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453080,0.000000,0.000000,0.250000,0,0);}
.ma_c00288{transform:matrix(0.489820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.489820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.489820,0.000000,0.000000,0.250000,0,0);}
.m2d_c00288{transform:matrix(0.521914,-0.005219,0.002500,0.249988,0,0);-ms-transform:matrix(0.521914,-0.005219,0.002500,0.249988,0,0);-webkit-transform:matrix(0.521914,-0.005219,0.002500,0.249988,0,0);}
.m7_c00288{transform:matrix(0.522965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522965,0.000000,0.000000,0.250000,0,0);}
.m8_c00288{transform:matrix(0.525530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525530,0.000000,0.000000,0.250000,0,0);}
.me_c00288{transform:matrix(0.612415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612415,0.000000,0.000000,0.250000,0,0);}
.m6_c00288{transform:matrix(0.614455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.614455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.614455,0.000000,0.000000,0.250000,0,0);}
.mc_c00288{transform:matrix(0.619705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.619705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.619705,0.000000,0.000000,0.250000,0,0);}
.m5_c00288{transform:matrix(0.624440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.624440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.624440,0.000000,0.000000,0.250000,0,0);}
.m32_c00288{transform:matrix(1.707285,-0.017073,0.002500,0.249988,0,0);-ms-transform:matrix(1.707285,-0.017073,0.002500,0.249988,0,0);-webkit-transform:matrix(1.707285,-0.017073,0.002500,0.249988,0,0);}
.v0_c00288{vertical-align:0.000000px;}
.ls0_c00288{letter-spacing:0.000000px;}
.sc__c00288{text-shadow:none;}
.sc0_c00288{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__c00288{-webkit-text-stroke:0px transparent;}
.sc0_c00288{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00288{word-spacing:0.000000px;}
.fc0_c00288{color:transparent;}
.fs3_c00288{font-size:36.000000px;}
.fs2_c00288{font-size:42.000000px;}
.fs6_c00288{font-size:54.000000px;}
.fs1_c00288{font-size:72.000000px;}
.fs5_c00288{font-size:77.994150px;}
.fs0_c00288{font-size:78.000000px;}
.fs9_c00288{font-size:84.004200px;}
.fs7_c00288{font-size:84.006048px;}
.fs4_c00288{font-size:89.993250px;}
.fs8_c00288{font-size:90.004500px;}
.y0_c00288{bottom:0.000000px;}
.yf_c00288{bottom:81.681000px;}
.ye_c00288{bottom:177.250500px;}
.yd_c00288{bottom:302.670000px;}
.y30_c00288{bottom:337.028415px;}
.y31_c00288{bottom:337.028640px;}
.yc_c00288{bottom:366.001500px;}
.y26_c00288{bottom:368.254500px;}
.y27_c00288{bottom:368.936295px;}
.y28_c00288{bottom:369.151365px;}
.y29_c00288{bottom:369.936915px;}
.y2a_c00288{bottom:371.016975px;}
.y2b_c00288{bottom:371.017455px;}
.y2c_c00288{bottom:371.347245px;}
.y2d_c00288{bottom:372.205890px;}
.y2e_c00288{bottom:372.654180px;}
.y2f_c00288{bottom:373.024140px;}
.yb_c00288{bottom:429.021000px;}
.y22_c00288{bottom:463.588878px;}
.y23_c00288{bottom:464.651724px;}
.y24_c00288{bottom:465.053736px;}
.y25_c00288{bottom:465.928590px;}
.ya_c00288{bottom:493.174500px;}
.y18_c00288{bottom:494.641500px;}
.y19_c00288{bottom:495.558042px;}
.y1a_c00288{bottom:495.824316px;}
.y1b_c00288{bottom:497.152860px;}
.y1c_c00288{bottom:498.186348px;}
.y1d_c00288{bottom:498.623280px;}
.y1e_c00288{bottom:498.870078px;}
.y1f_c00288{bottom:499.113222px;}
.y20_c00288{bottom:500.305110px;}
.y21_c00288{bottom:501.216072px;}
.y17_c00288{bottom:526.620000px;}
.y9_c00288{bottom:555.804000px;}
.y8_c00288{bottom:586.710000px;}
.y7_c00288{bottom:713.326500px;}
.y16_c00288{bottom:717.223321px;}
.y15_c00288{bottom:721.151785px;}
.y14_c00288{bottom:721.992751px;}
.y13_c00288{bottom:746.204199px;}
.y12_c00288{bottom:749.102506px;}
.y11_c00288{bottom:749.906950px;}
.y10_c00288{bottom:751.966500px;}
.y6_c00288{bottom:777.211500px;}
.y5_c00288{bottom:840.766500px;}
.y4_c00288{bottom:871.290000px;}
.y3_c00288{bottom:933.918000px;}
.y2_c00288{bottom:996.831000px;}
.y1_c00288{bottom:1060.300500px;}
.h5_c00288{height:36.000000px;}
.h4_c00288{height:42.000000px;}
.h8_c00288{height:54.000000px;}
.h3_c00288{height:72.000000px;}
.h7_c00288{height:77.994150px;}
.h2_c00288{height:78.000000px;}
.hb_c00288{height:84.004200px;}
.h9_c00288{height:84.006048px;}
.h6_c00288{height:89.993250px;}
.ha_c00288{height:90.004500px;}
.h1_c00288{height:1165.500000px;}
.h0_c00288{height:1165.800000px;}
.w0_c00288{width:915.000000px;}
.x0_c00288{left:0.000000px;}
.x1_c00288{left:135.270000px;}
.x2_c00288{left:137.160000px;}
.x3_c00288{left:138.780000px;}
.x5_c00288{left:140.670000px;}
.x6_c00288{left:142.290000px;}
.x7_c00288{left:143.640000px;}
.x9_c00288{left:145.260000px;}
.xa_c00288{left:146.340000px;}
.xb_c00288{left:148.500000px;}
.xc_c00288{left:150.120000px;}
.x4_c00288{left:172.260000px;}
.x8_c00288{left:189.000000px;}
.xd_c00288{left:247.747500px;}
.x11_c00288{left:250.276586px;}
.x14_c00288{left:251.640000px;}
.x16_c00288{left:252.888000px;}
.x2a_c00288{left:254.340360px;}
.x12_c00288{left:271.279273px;}
.xe_c00288{left:295.596103px;}
.xf_c00288{left:314.285395px;}
.x22_c00288{left:321.216000px;}
.x15_c00288{left:328.590000px;}
.x1f_c00288{left:340.362420px;}
.x23_c00288{left:342.723000px;}
.x17_c00288{left:351.456000px;}
.x13_c00288{left:369.383725px;}
.x20_c00288{left:373.863420px;}
.x10_c00288{left:381.620493px;}
.x2b_c00288{left:395.827005px;}
.x24_c00288{left:421.278000px;}
.x21_c00288{left:446.767920px;}
.x18_c00288{left:462.168000px;}
.x25_c00288{left:529.284000px;}
.x19_c00288{left:548.292000px;}
.x26_c00288{left:562.311000px;}
.x1a_c00288{left:584.703000px;}
.x1b_c00288{left:605.269500px;}
.x1c_c00288{left:625.531500px;}
.x27_c00288{left:648.175500px;}
.x28_c00288{left:693.004500px;}
.x1d_c00288{left:724.855500px;}
.x29_c00288{left:730.000500px;}
.x1e_c00288{left:800.769000px;}
@media print{
.v0_c00288{vertical-align:0.000000pt;}
.ls0_c00288{letter-spacing:0.000000pt;}
.ws0_c00288{word-spacing:0.000000pt;}
.fs3_c00288{font-size:32.000000pt;}
.fs2_c00288{font-size:37.333333pt;}
.fs6_c00288{font-size:48.000000pt;}
.fs1_c00288{font-size:64.000000pt;}
.fs5_c00288{font-size:69.328133pt;}
.fs0_c00288{font-size:69.333333pt;}
.fs9_c00288{font-size:74.670400pt;}
.fs7_c00288{font-size:74.672042pt;}
.fs4_c00288{font-size:79.994000pt;}
.fs8_c00288{font-size:80.004000pt;}
.y0_c00288{bottom:0.000000pt;}
.yf_c00288{bottom:72.605333pt;}
.ye_c00288{bottom:157.556000pt;}
.yd_c00288{bottom:269.040000pt;}
.y30_c00288{bottom:299.580813pt;}
.y31_c00288{bottom:299.581013pt;}
.yc_c00288{bottom:325.334667pt;}
.y26_c00288{bottom:327.337333pt;}
.y27_c00288{bottom:327.943373pt;}
.y28_c00288{bottom:328.134547pt;}
.y29_c00288{bottom:328.832813pt;}
.y2a_c00288{bottom:329.792867pt;}
.y2b_c00288{bottom:329.793293pt;}
.y2c_c00288{bottom:330.086440pt;}
.y2d_c00288{bottom:330.849680pt;}
.y2e_c00288{bottom:331.248160pt;}
.y2f_c00288{bottom:331.577013pt;}
.yb_c00288{bottom:381.352000pt;}
.y22_c00288{bottom:412.079003pt;}
.y23_c00288{bottom:413.023755pt;}
.y24_c00288{bottom:413.381099pt;}
.y25_c00288{bottom:414.158747pt;}
.ya_c00288{bottom:438.377333pt;}
.y18_c00288{bottom:439.681333pt;}
.y19_c00288{bottom:440.496037pt;}
.y1a_c00288{bottom:440.732725pt;}
.y1b_c00288{bottom:441.913653pt;}
.y1c_c00288{bottom:442.832309pt;}
.y1d_c00288{bottom:443.220693pt;}
.y1e_c00288{bottom:443.440069pt;}
.y1f_c00288{bottom:443.656197pt;}
.y20_c00288{bottom:444.715653pt;}
.y21_c00288{bottom:445.525397pt;}
.y17_c00288{bottom:468.106667pt;}
.y9_c00288{bottom:494.048000pt;}
.y8_c00288{bottom:521.520000pt;}
.y7_c00288{bottom:634.068000pt;}
.y16_c00288{bottom:637.531841pt;}
.y15_c00288{bottom:641.023809pt;}
.y14_c00288{bottom:641.771335pt;}
.y13_c00288{bottom:663.292621pt;}
.y12_c00288{bottom:665.868895pt;}
.y11_c00288{bottom:666.583956pt;}
.y10_c00288{bottom:668.414667pt;}
.y6_c00288{bottom:690.854667pt;}
.y5_c00288{bottom:747.348000pt;}
.y4_c00288{bottom:774.480000pt;}
.y3_c00288{bottom:830.149333pt;}
.y2_c00288{bottom:886.072000pt;}
.y1_c00288{bottom:942.489333pt;}
.h5_c00288{height:32.000000pt;}
.h4_c00288{height:37.333333pt;}
.h8_c00288{height:48.000000pt;}
.h3_c00288{height:64.000000pt;}
.h7_c00288{height:69.328133pt;}
.h2_c00288{height:69.333333pt;}
.hb_c00288{height:74.670400pt;}
.h9_c00288{height:74.672042pt;}
.h6_c00288{height:79.994000pt;}
.ha_c00288{height:80.004000pt;}
.h1_c00288{height:1036.000000pt;}
.h0_c00288{height:1036.266667pt;}
.w0_c00288{width:813.333333pt;}
.x0_c00288{left:0.000000pt;}
.x1_c00288{left:120.240000pt;}
.x2_c00288{left:121.920000pt;}
.x3_c00288{left:123.360000pt;}
.x5_c00288{left:125.040000pt;}
.x6_c00288{left:126.480000pt;}
.x7_c00288{left:127.680000pt;}
.x9_c00288{left:129.120000pt;}
.xa_c00288{left:130.080000pt;}
.xb_c00288{left:132.000000pt;}
.xc_c00288{left:133.440000pt;}
.x4_c00288{left:153.120000pt;}
.x8_c00288{left:168.000000pt;}
.xd_c00288{left:220.220000pt;}
.x11_c00288{left:222.468076pt;}
.x14_c00288{left:223.680000pt;}
.x16_c00288{left:224.789333pt;}
.x2a_c00288{left:226.080320pt;}
.x12_c00288{left:241.137132pt;}
.xe_c00288{left:262.752092pt;}
.xf_c00288{left:279.364796pt;}
.x22_c00288{left:285.525333pt;}
.x15_c00288{left:292.080000pt;}
.x1f_c00288{left:302.544373pt;}
.x23_c00288{left:304.642667pt;}
.x17_c00288{left:312.405333pt;}
.x13_c00288{left:328.341089pt;}
.x20_c00288{left:332.323040pt;}
.x10_c00288{left:339.218216pt;}
.x2b_c00288{left:351.846227pt;}
.x24_c00288{left:374.469333pt;}
.x21_c00288{left:397.127040pt;}
.x18_c00288{left:410.816000pt;}
.x25_c00288{left:470.474667pt;}
.x19_c00288{left:487.370667pt;}
.x26_c00288{left:499.832000pt;}
.x1a_c00288{left:519.736000pt;}
.x1b_c00288{left:538.017333pt;}
.x1c_c00288{left:556.028000pt;}
.x27_c00288{left:576.156000pt;}
.x28_c00288{left:616.004000pt;}
.x1d_c00288{left:644.316000pt;}
.x29_c00288{left:648.889333pt;}
.x1e_c00288{left:711.794667pt;}
}





/* 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_c00289 {
    display:none;
  }
  .loading-indicator_c00289.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00289 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_c00289 { 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_c00289" -> "#page-container .classname_c00289")
 */
.pf_c00289 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00289 { /* 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_c00289.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00289 { /* 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_c00289 { /* 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_c00289 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00289 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00289 {overflow:visible;}
  }
}
.c_c00289 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00289 { /* 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_c00289:after { /* webkit #35443 */
  content: '';
}
.t_c00289:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00289 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 */
}
.__c00289 { /* 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_c00289 { /* info for Javascript */
  display:none;
}
.l_c00289 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00289 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00289 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00289: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_c00289 {
    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_c00289.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00289.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_c00289 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00289{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00289;src:url('chunks/assets/font_c605e72f209fc835e906f064.woff2')format("woff");}.ff1_c00289{font-family:ff1_c00289;line-height:1.000000;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;}
.m46_c00289{transform:matrix(0.022356,-0.000447,0.004999,0.249950,0,0);-ms-transform:matrix(0.022356,-0.000447,0.004999,0.249950,0,0);-webkit-transform:matrix(0.022356,-0.000447,0.004999,0.249950,0,0);}
.m1b_c00289{transform:matrix(0.025453,-0.000356,0.003500,0.249976,0,0);-ms-transform:matrix(0.025453,-0.000356,0.003500,0.249976,0,0);-webkit-transform:matrix(0.025453,-0.000356,0.003500,0.249976,0,0);}
.m4d_c00289{transform:matrix(0.026500,-0.000530,0.004999,0.249950,0,0);-ms-transform:matrix(0.026500,-0.000530,0.004999,0.249950,0,0);-webkit-transform:matrix(0.026500,-0.000530,0.004999,0.249950,0,0);}
.m4b_c00289{transform:matrix(0.029149,-0.000583,0.004999,0.249950,0,0);-ms-transform:matrix(0.029149,-0.000583,0.004999,0.249950,0,0);-webkit-transform:matrix(0.029149,-0.000583,0.004999,0.249950,0,0);}
.m6e_c00289{transform:matrix(0.031820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.031820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.031820,0.000000,0.000000,0.250000,0,0);}
.m3e_c00289{transform:matrix(0.035575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.035575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.035575,0.000000,0.000000,0.250000,0,0);}
.m39_c00289{transform:matrix(0.040560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.040560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.040560,0.000000,0.000000,0.250000,0,0);}
.m1e_c00289{transform:matrix(0.048460,-0.000678,0.003500,0.249976,0,0);-ms-transform:matrix(0.048460,-0.000678,0.003500,0.249976,0,0);-webkit-transform:matrix(0.048460,-0.000678,0.003500,0.249976,0,0);}
.m55_c00289{transform:matrix(0.050300,-0.001006,0.004999,0.249950,0,0);-ms-transform:matrix(0.050300,-0.001006,0.004999,0.249950,0,0);-webkit-transform:matrix(0.050300,-0.001006,0.004999,0.249950,0,0);}
.m8_c00289{transform:matrix(0.054085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054085,0.000000,0.000000,0.250000,0,0);}
.mf_c00289{transform:matrix(0.061845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.061845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.061845,0.000000,0.000000,0.250000,0,0);}
.m61_c00289{transform:matrix(0.063627,-0.001273,0.004999,0.249950,0,0);-ms-transform:matrix(0.063627,-0.001273,0.004999,0.249950,0,0);-webkit-transform:matrix(0.063627,-0.001273,0.004999,0.249950,0,0);}
.ma_c00289{transform:matrix(0.067080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.067080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.067080,0.000000,0.000000,0.250000,0,0);}
.m68_c00289{transform:matrix(0.071136,-0.001423,0.004999,0.249950,0,0);-ms-transform:matrix(0.071136,-0.001423,0.004999,0.249950,0,0);-webkit-transform:matrix(0.071136,-0.001423,0.004999,0.249950,0,0);}
.m2d_c00289{transform:matrix(0.072028,-0.001008,0.003500,0.249976,0,0);-ms-transform:matrix(0.072028,-0.001008,0.003500,0.249976,0,0);-webkit-transform:matrix(0.072028,-0.001008,0.003500,0.249976,0,0);}
.m17_c00289{transform:matrix(0.072031,-0.000792,0.002750,0.249985,0,0);-ms-transform:matrix(0.072031,-0.000792,0.002750,0.249985,0,0);-webkit-transform:matrix(0.072031,-0.000792,0.002750,0.249985,0,0);}
.m22_c00289{transform:matrix(0.080712,-0.001130,0.003500,0.249976,0,0);-ms-transform:matrix(0.080712,-0.001130,0.003500,0.249976,0,0);-webkit-transform:matrix(0.080712,-0.001130,0.003500,0.249976,0,0);}
.m67_c00289{transform:matrix(0.081109,-0.001622,0.004999,0.249950,0,0);-ms-transform:matrix(0.081109,-0.001622,0.004999,0.249950,0,0);-webkit-transform:matrix(0.081109,-0.001622,0.004999,0.249950,0,0);}
.m30_c00289{transform:matrix(0.084855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084855,0.000000,0.000000,0.250000,0,0);}
.me_c00289{transform:matrix(0.087465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087465,0.000000,0.000000,0.250000,0,0);}
.m1d_c00289{transform:matrix(0.089991,-0.001260,0.003500,0.249976,0,0);-ms-transform:matrix(0.089991,-0.001260,0.003500,0.249976,0,0);-webkit-transform:matrix(0.089991,-0.001260,0.003500,0.249976,0,0);}
.m6_c00289{transform:matrix(0.091550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.091550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.091550,0.000000,0.000000,0.250000,0,0);}
.m60_c00289{transform:matrix(0.100605,-0.002012,0.004999,0.249950,0,0);-ms-transform:matrix(0.100605,-0.002012,0.004999,0.249950,0,0);-webkit-transform:matrix(0.100605,-0.002012,0.004999,0.249950,0,0);}
.m16_c00289{transform:matrix(0.103714,-0.001141,0.002750,0.249985,0,0);-ms-transform:matrix(0.103714,-0.001141,0.002750,0.249985,0,0);-webkit-transform:matrix(0.103714,-0.001141,0.002750,0.249985,0,0);}
.m31_c00289{transform:matrix(0.103720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103720,0.000000,0.000000,0.250000,0,0);}
.m20_c00289{transform:matrix(0.104775,-0.001467,0.003500,0.249976,0,0);-ms-transform:matrix(0.104775,-0.001467,0.003500,0.249976,0,0);-webkit-transform:matrix(0.104775,-0.001467,0.003500,0.249976,0,0);}
.md_c00289{transform:matrix(0.117155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117155,0.000000,0.000000,0.250000,0,0);}
.m0_c00289{transform:matrix(0.125780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125780,0.000000,0.000000,0.250000,0,0);}
.m3d_c00289{transform:matrix(0.127280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127280,0.000000,0.000000,0.250000,0,0);}
.m62_c00289{transform:matrix(0.131169,-0.002623,0.004999,0.249950,0,0);-ms-transform:matrix(0.131169,-0.002623,0.004999,0.249950,0,0);-webkit-transform:matrix(0.131169,-0.002623,0.004999,0.249950,0,0);}
.m3_c00289{transform:matrix(0.137325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137325,0.000000,0.000000,0.250000,0,0);}
.m47_c00289{transform:matrix(0.140487,-0.002810,0.004999,0.249950,0,0);-ms-transform:matrix(0.140487,-0.002810,0.004999,0.249950,0,0);-webkit-transform:matrix(0.140487,-0.002810,0.004999,0.249950,0,0);}
.m2e_c00289{transform:matrix(0.141510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141510,0.000000,0.000000,0.250000,0,0);}
.m6a_c00289{transform:matrix(0.145625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145625,0.000000,0.000000,0.250000,0,0);}
.m4c_c00289{transform:matrix(0.149495,-0.002990,0.004999,0.249950,0,0);-ms-transform:matrix(0.149495,-0.002990,0.004999,0.249950,0,0);-webkit-transform:matrix(0.149495,-0.002990,0.004999,0.249950,0,0);}
.m21_c00289{transform:matrix(0.150850,-0.002112,0.003500,0.249976,0,0);-ms-transform:matrix(0.150850,-0.002112,0.003500,0.249976,0,0);-webkit-transform:matrix(0.150850,-0.002112,0.003500,0.249976,0,0);}
.m3f_c00289{transform:matrix(0.151355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151355,0.000000,0.000000,0.250000,0,0);}
.m13_c00289{transform:matrix(0.153006,-0.001683,0.002750,0.249985,0,0);-ms-transform:matrix(0.153006,-0.001683,0.002750,0.249985,0,0);-webkit-transform:matrix(0.153006,-0.001683,0.002750,0.249985,0,0);}
.m4f_c00289{transform:matrix(0.158743,-0.003175,0.004999,0.249950,0,0);-ms-transform:matrix(0.158743,-0.003175,0.004999,0.249950,0,0);-webkit-transform:matrix(0.158743,-0.003175,0.004999,0.249950,0,0);}
.m3a_c00289{transform:matrix(0.165435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165435,0.000000,0.000000,0.250000,0,0);}
.m50_c00289{transform:matrix(0.168706,-0.003374,0.004999,0.249950,0,0);-ms-transform:matrix(0.168706,-0.003374,0.004999,0.249950,0,0);-webkit-transform:matrix(0.168706,-0.003374,0.004999,0.249950,0,0);}
.m49_c00289{transform:matrix(0.168951,-0.003379,0.004999,0.249950,0,0);-ms-transform:matrix(0.168951,-0.003379,0.004999,0.249950,0,0);-webkit-transform:matrix(0.168951,-0.003379,0.004999,0.249950,0,0);}
.m63_c00289{transform:matrix(0.171321,-0.003426,0.004999,0.249950,0,0);-ms-transform:matrix(0.171321,-0.003426,0.004999,0.249950,0,0);-webkit-transform:matrix(0.171321,-0.003426,0.004999,0.249950,0,0);}
.m1c_c00289{transform:matrix(0.174733,-0.002446,0.003500,0.249976,0,0);-ms-transform:matrix(0.174733,-0.002446,0.003500,0.249976,0,0);-webkit-transform:matrix(0.174733,-0.002446,0.003500,0.249976,0,0);}
.m5b_c00289{transform:matrix(0.175695,-0.003514,0.004999,0.249950,0,0);-ms-transform:matrix(0.175695,-0.003514,0.004999,0.249950,0,0);-webkit-transform:matrix(0.175695,-0.003514,0.004999,0.249950,0,0);}
.m19_c00289{transform:matrix(0.178627,-0.002501,0.003500,0.249976,0,0);-ms-transform:matrix(0.178627,-0.002501,0.003500,0.249976,0,0);-webkit-transform:matrix(0.178627,-0.002501,0.003500,0.249976,0,0);}
.m4a_c00289{transform:matrix(0.186043,-0.003721,0.004999,0.249950,0,0);-ms-transform:matrix(0.186043,-0.003721,0.004999,0.249950,0,0);-webkit-transform:matrix(0.186043,-0.003721,0.004999,0.249950,0,0);}
.m56_c00289{transform:matrix(0.202599,-0.004052,0.004999,0.249950,0,0);-ms-transform:matrix(0.202599,-0.004052,0.004999,0.249950,0,0);-webkit-transform:matrix(0.202599,-0.004052,0.004999,0.249950,0,0);}
.m44_c00289{transform:matrix(0.216105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216105,0.000000,0.000000,0.250000,0,0);}
.m2c_c00289{transform:matrix(0.231022,-0.003234,0.003500,0.249976,0,0);-ms-transform:matrix(0.231022,-0.003234,0.003500,0.249976,0,0);-webkit-transform:matrix(0.231022,-0.003234,0.003500,0.249976,0,0);}
.m45_c00289{transform:matrix(0.234153,-0.004683,0.004999,0.249950,0,0);-ms-transform:matrix(0.234153,-0.004683,0.004999,0.249950,0,0);-webkit-transform:matrix(0.234153,-0.004683,0.004999,0.249950,0,0);}
.m9_c00289{transform:matrix(0.241870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241870,0.000000,0.000000,0.250000,0,0);}
.m1f_c00289{transform:matrix(0.245626,-0.003439,0.003500,0.249976,0,0);-ms-transform:matrix(0.245626,-0.003439,0.003500,0.249976,0,0);-webkit-transform:matrix(0.245626,-0.003439,0.003500,0.249976,0,0);}
.m14_c00289{transform:matrix(0.252610,-0.002779,0.002750,0.249985,0,0);-ms-transform:matrix(0.252610,-0.002779,0.002750,0.249985,0,0);-webkit-transform:matrix(0.252610,-0.002779,0.002750,0.249985,0,0);}
.m36_c00289{transform:matrix(0.265375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265375,0.000000,0.000000,0.250000,0,0);}
.m34_c00289{transform:matrix(0.266010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266010,0.000000,0.000000,0.250000,0,0);}
.mc_c00289{transform:matrix(0.276585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276585,0.000000,0.000000,0.250000,0,0);}
.m53_c00289{transform:matrix(0.277724,-0.005554,0.004999,0.249950,0,0);-ms-transform:matrix(0.277724,-0.005554,0.004999,0.249950,0,0);-webkit-transform:matrix(0.277724,-0.005554,0.004999,0.249950,0,0);}
.m5f_c00289{transform:matrix(0.294381,-0.005888,0.004999,0.249950,0,0);-ms-transform:matrix(0.294381,-0.005888,0.004999,0.249950,0,0);-webkit-transform:matrix(0.294381,-0.005888,0.004999,0.249950,0,0);}
.m5e_c00289{transform:matrix(0.301810,-0.006036,0.004999,0.249950,0,0);-ms-transform:matrix(0.301810,-0.006036,0.004999,0.249950,0,0);-webkit-transform:matrix(0.301810,-0.006036,0.004999,0.249950,0,0);}
.m6c_c00289{transform:matrix(0.332000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00289{transform:matrix(0.334255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334255,0.000000,0.000000,0.250000,0,0);}
.m1_c00289{transform:matrix(0.344185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344185,0.000000,0.000000,0.250000,0,0);}
.m5_c00289{transform:matrix(0.352270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352270,0.000000,0.000000,0.250000,0,0);}
.m69_c00289{transform:matrix(0.355684,-0.007114,0.004999,0.249950,0,0);-ms-transform:matrix(0.355684,-0.007114,0.004999,0.249950,0,0);-webkit-transform:matrix(0.355684,-0.007114,0.004999,0.249950,0,0);}
.m43_c00289{transform:matrix(0.355755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355755,0.000000,0.000000,0.250000,0,0);}
.m7_c00289{transform:matrix(0.360175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360175,0.000000,0.000000,0.250000,0,0);}
.m2f_c00289{transform:matrix(0.366445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366445,0.000000,0.000000,0.250000,0,0);}
.m64_c00289{transform:matrix(0.374925,-0.007499,0.004999,0.249950,0,0);-ms-transform:matrix(0.374925,-0.007499,0.004999,0.249950,0,0);-webkit-transform:matrix(0.374925,-0.007499,0.004999,0.249950,0,0);}
.m52_c00289{transform:matrix(0.385208,-0.007704,0.004999,0.249950,0,0);-ms-transform:matrix(0.385208,-0.007704,0.004999,0.249950,0,0);-webkit-transform:matrix(0.385208,-0.007704,0.004999,0.249950,0,0);}
.m70_c00289{transform:matrix(0.399020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399020,0.000000,0.000000,0.250000,0,0);}
.m11_c00289{transform:matrix(0.407970,-0.004488,0.002750,0.249985,0,0);-ms-transform:matrix(0.407970,-0.004488,0.002750,0.249985,0,0);-webkit-transform:matrix(0.407970,-0.004488,0.002750,0.249985,0,0);}
.m71_c00289{transform:matrix(0.422670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422670,0.000000,0.000000,0.250000,0,0);}
.m66_c00289{transform:matrix(0.424445,-0.008489,0.004999,0.249950,0,0);-ms-transform:matrix(0.424445,-0.008489,0.004999,0.249950,0,0);-webkit-transform:matrix(0.424445,-0.008489,0.004999,0.249950,0,0);}
.m15_c00289{transform:matrix(0.428524,-0.004714,0.002750,0.249985,0,0);-ms-transform:matrix(0.428524,-0.004714,0.002750,0.249985,0,0);-webkit-transform:matrix(0.428524,-0.004714,0.002750,0.249985,0,0);}
.m58_c00289{transform:matrix(0.440682,-0.008814,0.004999,0.249950,0,0);-ms-transform:matrix(0.440682,-0.008814,0.004999,0.249950,0,0);-webkit-transform:matrix(0.440682,-0.008814,0.004999,0.249950,0,0);}
.m35_c00289{transform:matrix(0.443200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443200,0.000000,0.000000,0.250000,0,0);}
.m54_c00289{transform:matrix(0.449840,-0.008997,0.004999,0.249950,0,0);-ms-transform:matrix(0.449840,-0.008997,0.004999,0.249950,0,0);-webkit-transform:matrix(0.449840,-0.008997,0.004999,0.249950,0,0);}
.m4e_c00289{transform:matrix(0.449955,-0.008999,0.004999,0.249950,0,0);-ms-transform:matrix(0.449955,-0.008999,0.004999,0.249950,0,0);-webkit-transform:matrix(0.449955,-0.008999,0.004999,0.249950,0,0);}
.m28_c00289{transform:matrix(0.452761,-0.006339,0.003500,0.249976,0,0);-ms-transform:matrix(0.452761,-0.006339,0.003500,0.249976,0,0);-webkit-transform:matrix(0.452761,-0.006339,0.003500,0.249976,0,0);}
.mb_c00289{transform:matrix(0.463670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463670,0.000000,0.000000,0.250000,0,0);}
.m2a_c00289{transform:matrix(0.464834,-0.006508,0.003500,0.249976,0,0);-ms-transform:matrix(0.464834,-0.006508,0.003500,0.249976,0,0);-webkit-transform:matrix(0.464834,-0.006508,0.003500,0.249976,0,0);}
.m10_c00289{transform:matrix(0.466137,-0.005128,0.002750,0.249985,0,0);-ms-transform:matrix(0.466137,-0.005128,0.002750,0.249985,0,0);-webkit-transform:matrix(0.466137,-0.005128,0.002750,0.249985,0,0);}
.m23_c00289{transform:matrix(0.480553,-0.006728,0.003500,0.249976,0,0);-ms-transform:matrix(0.480553,-0.006728,0.003500,0.249976,0,0);-webkit-transform:matrix(0.480553,-0.006728,0.003500,0.249976,0,0);}
.m2_c00289{transform:matrix(0.482455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482455,0.000000,0.000000,0.250000,0,0);}
.m27_c00289{transform:matrix(0.496596,-0.006952,0.003500,0.249976,0,0);-ms-transform:matrix(0.496596,-0.006952,0.003500,0.249976,0,0);-webkit-transform:matrix(0.496596,-0.006952,0.003500,0.249976,0,0);}
.m5d_c00289{transform:matrix(0.560333,-0.011207,0.004999,0.249950,0,0);-ms-transform:matrix(0.560333,-0.011207,0.004999,0.249950,0,0);-webkit-transform:matrix(0.560333,-0.011207,0.004999,0.249950,0,0);}
.m3b_c00289{transform:matrix(0.566200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566200,0.000000,0.000000,0.250000,0,0);}
.m26_c00289{transform:matrix(0.572809,-0.008019,0.003500,0.249976,0,0);-ms-transform:matrix(0.572809,-0.008019,0.003500,0.249976,0,0);-webkit-transform:matrix(0.572809,-0.008019,0.003500,0.249976,0,0);}
.m65_c00289{transform:matrix(0.573525,-0.011471,0.004999,0.249950,0,0);-ms-transform:matrix(0.573525,-0.011471,0.004999,0.249950,0,0);-webkit-transform:matrix(0.573525,-0.011471,0.004999,0.249950,0,0);}
.m25_c00289{transform:matrix(0.574684,-0.008046,0.003500,0.249976,0,0);-ms-transform:matrix(0.574684,-0.008046,0.003500,0.249976,0,0);-webkit-transform:matrix(0.574684,-0.008046,0.003500,0.249976,0,0);}
.m29_c00289{transform:matrix(0.594762,-0.008327,0.003500,0.249976,0,0);-ms-transform:matrix(0.594762,-0.008327,0.003500,0.249976,0,0);-webkit-transform:matrix(0.594762,-0.008327,0.003500,0.249976,0,0);}
.m72_c00289{transform:matrix(0.610085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.610085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.610085,0.000000,0.000000,0.250000,0,0);}
.m59_c00289{transform:matrix(0.638352,-0.012767,0.004999,0.249950,0,0);-ms-transform:matrix(0.638352,-0.012767,0.004999,0.249950,0,0);-webkit-transform:matrix(0.638352,-0.012767,0.004999,0.249950,0,0);}
.m48_c00289{transform:matrix(0.647635,-0.012953,0.004999,0.249950,0,0);-ms-transform:matrix(0.647635,-0.012953,0.004999,0.249950,0,0);-webkit-transform:matrix(0.647635,-0.012953,0.004999,0.249950,0,0);}
.m3c_c00289{transform:matrix(0.678365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.678365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.678365,0.000000,0.000000,0.250000,0,0);}
.m5c_c00289{transform:matrix(0.679069,-0.013581,0.004999,0.249950,0,0);-ms-transform:matrix(0.679069,-0.013581,0.004999,0.249950,0,0);-webkit-transform:matrix(0.679069,-0.013581,0.004999,0.249950,0,0);}
.m18_c00289{transform:matrix(0.704261,-0.009860,0.003500,0.249976,0,0);-ms-transform:matrix(0.704261,-0.009860,0.003500,0.249976,0,0);-webkit-transform:matrix(0.704261,-0.009860,0.003500,0.249976,0,0);}
.m4_c00289{transform:matrix(0.707520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.707520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.707520,0.000000,0.000000,0.250000,0,0);}
.m38_c00289{transform:matrix(0.720070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720070,0.000000,0.000000,0.250000,0,0);}
.m33_c00289{transform:matrix(0.725175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.725175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.725175,0.000000,0.000000,0.250000,0,0);}
.m37_c00289{transform:matrix(0.727615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727615,0.000000,0.000000,0.250000,0,0);}
.m42_c00289{transform:matrix(0.758945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.758945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.758945,0.000000,0.000000,0.250000,0,0);}
.m51_c00289{transform:matrix(0.797146,-0.015943,0.004999,0.249950,0,0);-ms-transform:matrix(0.797146,-0.015943,0.004999,0.249950,0,0);-webkit-transform:matrix(0.797146,-0.015943,0.004999,0.249950,0,0);}
.m40_c00289{transform:matrix(0.811250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811250,0.000000,0.000000,0.250000,0,0);}
.m12_c00289{transform:matrix(0.822065,-0.009043,0.002750,0.249985,0,0);-ms-transform:matrix(0.822065,-0.009043,0.002750,0.249985,0,0);-webkit-transform:matrix(0.822065,-0.009043,0.002750,0.249985,0,0);}
.m2b_c00289{transform:matrix(0.850102,-0.011901,0.003500,0.249976,0,0);-ms-transform:matrix(0.850102,-0.011901,0.003500,0.249976,0,0);-webkit-transform:matrix(0.850102,-0.011901,0.003500,0.249976,0,0);}
.m1a_c00289{transform:matrix(0.859641,-0.012035,0.003500,0.249976,0,0);-ms-transform:matrix(0.859641,-0.012035,0.003500,0.249976,0,0);-webkit-transform:matrix(0.859641,-0.012035,0.003500,0.249976,0,0);}
.m57_c00289{transform:matrix(0.940667,-0.018813,0.004999,0.249950,0,0);-ms-transform:matrix(0.940667,-0.018813,0.004999,0.249950,0,0);-webkit-transform:matrix(0.940667,-0.018813,0.004999,0.249950,0,0);}
.m6d_c00289{transform:matrix(1.081105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.081105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.081105,0.000000,0.000000,0.250000,0,0);}
.m6f_c00289{transform:matrix(1.225165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.225165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.225165,0.000000,0.000000,0.250000,0,0);}
.m5a_c00289{transform:matrix(1.355259,-0.027105,0.004999,0.249950,0,0);-ms-transform:matrix(1.355259,-0.027105,0.004999,0.249950,0,0);-webkit-transform:matrix(1.355259,-0.027105,0.004999,0.249950,0,0);}
.m24_c00289{transform:matrix(1.587809,-0.022229,0.003500,0.249976,0,0);-ms-transform:matrix(1.587809,-0.022229,0.003500,0.249976,0,0);-webkit-transform:matrix(1.587809,-0.022229,0.003500,0.249976,0,0);}
.m32_c00289{transform:matrix(1.650410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.650410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.650410,0.000000,0.000000,0.250000,0,0);}
.m41_c00289{transform:matrix(2.350790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.350790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.350790,0.000000,0.000000,0.250000,0,0);}
.v0_c00289{vertical-align:0.000000px;}
.ls0_c00289{letter-spacing:0.000000px;}
.sc__c00289{text-shadow:none;}
.sc0_c00289{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__c00289{-webkit-text-stroke:0px transparent;}
.sc0_c00289{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00289{word-spacing:0.000000px;}
.fc0_c00289{color:transparent;}
.fs8_c00289{font-size:12.002400px;}
.fs1_c00289{font-size:18.000000px;}
.fs0_c00289{font-size:24.000000px;}
.fs2_c00289{font-size:24.001452px;}
.fs4_c00289{font-size:24.002352px;}
.fs7_c00289{font-size:24.004800px;}
.fs3_c00289{font-size:30.002940px;}
.fs9_c00289{font-size:36.000000px;}
.fs6_c00289{font-size:42.008399px;}
.fs5_c00289{font-size:54.010799px;}
.y0_c00289{bottom:0.000000px;}
.y53_c00289{bottom:174.117000px;}
.y52_c00289{bottom:186.046500px;}
.y51_c00289{bottom:191.160000px;}
.y45_c00289{bottom:198.984660px;}
.y46_c00289{bottom:200.128380px;}
.y47_c00289{bottom:200.332950px;}
.y48_c00289{bottom:200.558010px;}
.y49_c00289{bottom:200.899440px;}
.y4a_c00289{bottom:201.064500px;}
.y4b_c00289{bottom:201.219780px;}
.y4c_c00289{bottom:201.584130px;}
.y4d_c00289{bottom:201.770700px;}
.y4e_c00289{bottom:201.984630px;}
.y4f_c00289{bottom:202.464630px;}
.y50_c00289{bottom:202.607940px;}
.y32_c00289{bottom:206.549250px;}
.y33_c00289{bottom:208.220190px;}
.y43_c00289{bottom:209.487210px;}
.y44_c00289{bottom:209.487390px;}
.y41_c00289{bottom:209.487420px;}
.y3f_c00289{bottom:209.487510px;}
.y3e_c00289{bottom:209.487630px;}
.y42_c00289{bottom:209.487660px;}
.y40_c00289{bottom:209.487930px;}
.y3b_c00289{bottom:209.487960px;}
.y3d_c00289{bottom:209.488110px;}
.y3c_c00289{bottom:209.488170px;}
.y34_c00289{bottom:210.705810px;}
.y35_c00289{bottom:211.466520px;}
.y36_c00289{bottom:212.296410px;}
.y37_c00289{bottom:212.743380px;}
.y38_c00289{bottom:213.844290px;}
.y39_c00289{bottom:214.405200px;}
.y3a_c00289{bottom:214.689360px;}
.y2b_c00289{bottom:216.000000px;}
.y2c_c00289{bottom:221.034270px;}
.y2d_c00289{bottom:222.260580px;}
.y2e_c00289{bottom:223.325370px;}
.y2f_c00289{bottom:224.793990px;}
.y30_c00289{bottom:225.539160px;}
.y31_c00289{bottom:228.507600px;}
.y2a_c00289{bottom:239.889000px;}
.y29_c00289{bottom:247.456500px;}
.y28_c00289{bottom:298.201500px;}
.y27_c00289{bottom:302.940000px;}
.y26_c00289{bottom:400.545000px;}
.y25_c00289{bottom:405.810000px;}
.y24_c00289{bottom:840.136500px;}
.y23_c00289{bottom:844.669500px;}
.y22_c00289{bottom:848.203500px;}
.y17_c00289{bottom:931.230438px;}
.y18_c00289{bottom:931.511187px;}
.y19_c00289{bottom:931.945305px;}
.y1a_c00289{bottom:932.315865px;}
.y1b_c00289{bottom:932.629857px;}
.y1c_c00289{bottom:933.143310px;}
.y1d_c00289{bottom:933.612939px;}
.y1e_c00289{bottom:934.423044px;}
.y1f_c00289{bottom:935.757603px;}
.yc_c00289{bottom:935.821500px;}
.yd_c00289{bottom:936.629769px;}
.ye_c00289{bottom:936.925218px;}
.yf_c00289{bottom:937.918896px;}
.y10_c00289{bottom:938.319849px;}
.y11_c00289{bottom:938.856546px;}
.y12_c00289{bottom:939.850959px;}
.y20_c00289{bottom:939.893562px;}
.y13_c00289{bottom:940.327659px;}
.y14_c00289{bottom:940.625985px;}
.y4_c00289{bottom:940.950000px;}
.y15_c00289{bottom:941.086998px;}
.y5_c00289{bottom:941.140328px;}
.y6_c00289{bottom:941.865189px;}
.y7_c00289{bottom:942.759043px;}
.y21_c00289{bottom:943.178079px;}
.y8_c00289{bottom:943.272622px;}
.y16_c00289{bottom:943.994490px;}
.y9_c00289{bottom:944.122801px;}
.ya_c00289{bottom:944.924355px;}
.yb_c00289{bottom:945.506376px;}
.y3_c00289{bottom:948.592500px;}
.y2_c00289{bottom:964.845000px;}
.y1_c00289{bottom:1062.463500px;}
.ha_c00289{height:12.002400px;}
.h3_c00289{height:18.000000px;}
.h2_c00289{height:24.000000px;}
.h4_c00289{height:24.001452px;}
.h6_c00289{height:24.002352px;}
.h9_c00289{height:24.004800px;}
.h5_c00289{height:30.002940px;}
.hb_c00289{height:36.000000px;}
.h8_c00289{height:42.008399px;}
.h7_c00289{height:54.010799px;}
.h1_c00289{height:1165.500000px;}
.h0_c00289{height:1165.800000px;}
.w0_c00289{width:915.000000px;}
.x0_c00289{left:0.000000px;}
.x19_c00289{left:91.639500px;}
.x9_c00289{left:94.500000px;}
.x12_c00289{left:97.242000px;}
.x3a_c00289{left:99.360000px;}
.x4_c00289{left:100.440000px;}
.x39_c00289{left:103.410000px;}
.xa_c00289{left:108.540000px;}
.x5_c00289{left:110.160000px;}
.x13_c00289{left:114.544500px;}
.x3e_c00289{left:121.776000px;}
.x44_c00289{left:124.028340px;}
.xb_c00289{left:127.170000px;}
.x23_c00289{left:129.508677px;}
.x2f_c00289{left:130.680000px;}
.x3b_c00289{left:137.970000px;}
.x2c_c00289{left:146.880000px;}
.x24_c00289{left:148.047123px;}
.x1a_c00289{left:149.373000px;}
.x6_c00289{left:155.250000px;}
.x25_c00289{left:163.723800px;}
.x1b_c00289{left:170.476500px;}
.x7_c00289{left:178.470000px;}
.x14_c00289{left:180.441000px;}
.x30_c00289{left:183.330000px;}
.x8_c00289{left:188.460000px;}
.x5f_c00289{left:190.080000px;}
.xc_c00289{left:194.400000px;}
.x5e_c00289{left:196.020000px;}
.x2b_c00289{left:197.910000px;}
.x31_c00289{left:202.770000px;}
.x1_c00289{left:209.250000px;}
.x26_c00289{left:212.832663px;}
.x2_c00289{left:216.540000px;}
.x32_c00289{left:219.780000px;}
.x45_c00289{left:222.281220px;}
.x33_c00289{left:225.180000px;}
.x3_c00289{left:231.930000px;}
.x2d_c00289{left:239.220000px;}
.x1c_c00289{left:241.453500px;}
.x2e_c00289{left:248.670000px;}
.x27_c00289{left:253.336761px;}
.x15_c00289{left:261.700500px;}
.x60_c00289{left:263.790000px;}
.x1d_c00289{left:270.093000px;}
.xd_c00289{left:272.700000px;}
.x61_c00289{left:297.540000px;}
.x16_c00289{left:308.389500px;}
.x5d_c00289{left:313.740000px;}
.xe_c00289{left:317.250000px;}
.x28_c00289{left:320.049654px;}
.x4b_c00289{left:341.867190px;}
.xf_c00289{left:346.950000px;}
.x53_c00289{left:359.169090px;}
.x4c_c00289{left:361.310460px;}
.x46_c00289{left:368.470980px;}
.x3f_c00289{left:373.489500px;}
.x1e_c00289{left:379.458000px;}
.x10_c00289{left:385.020000px;}
.x3d_c00289{left:386.370000px;}
.x3c_c00289{left:391.770000px;}
.x11_c00289{left:409.050000px;}
.x1f_c00289{left:413.508000px;}
.x4d_c00289{left:418.831470px;}
.x20_c00289{left:434.817000px;}
.x4e_c00289{left:445.836270px;}
.x54_c00289{left:447.192420px;}
.x17_c00289{left:458.547000px;}
.x47_c00289{left:462.106620px;}
.x21_c00289{left:467.746500px;}
.x55_c00289{left:480.153510px;}
.x40_c00289{left:488.044500px;}
.x56_c00289{left:506.378670px;}
.x18_c00289{left:511.458000px;}
.x57_c00289{left:519.058440px;}
.x29_c00289{left:526.850787px;}
.x58_c00289{left:530.949090px;}
.x36_c00289{left:540.540000px;}
.x34_c00289{left:551.610000px;}
.x48_c00289{left:553.231110px;}
.x37_c00289{left:555.660000px;}
.x4f_c00289{left:557.638470px;}
.x59_c00289{left:558.995520px;}
.x41_c00289{left:561.475500px;}
.x35_c00289{left:564.300000px;}
.x5a_c00289{left:573.351030px;}
.x38_c00289{left:582.930000px;}
.x49_c00289{left:586.228590px;}
.x5b_c00289{left:589.824840px;}
.x50_c00289{left:593.555340px;}
.x42_c00289{left:598.734000px;}
.x4a_c00289{left:602.912580px;}
.x51_c00289{left:625.151970px;}
.x5c_c00289{left:626.805030px;}
.x52_c00289{left:637.033710px;}
.x22_c00289{left:675.424500px;}
.x2a_c00289{left:691.052490px;}
.x43_c00289{left:747.156000px;}
@media print{
.v0_c00289{vertical-align:0.000000pt;}
.ls0_c00289{letter-spacing:0.000000pt;}
.ws0_c00289{word-spacing:0.000000pt;}
.fs8_c00289{font-size:10.668800pt;}
.fs1_c00289{font-size:16.000000pt;}
.fs0_c00289{font-size:21.333333pt;}
.fs2_c00289{font-size:21.334624pt;}
.fs4_c00289{font-size:21.335424pt;}
.fs7_c00289{font-size:21.337600pt;}
.fs3_c00289{font-size:26.669280pt;}
.fs9_c00289{font-size:32.000000pt;}
.fs6_c00289{font-size:37.340799pt;}
.fs5_c00289{font-size:48.009599pt;}
.y0_c00289{bottom:0.000000pt;}
.y53_c00289{bottom:154.770667pt;}
.y52_c00289{bottom:165.374667pt;}
.y51_c00289{bottom:169.920000pt;}
.y45_c00289{bottom:176.875253pt;}
.y46_c00289{bottom:177.891893pt;}
.y47_c00289{bottom:178.073733pt;}
.y48_c00289{bottom:178.273787pt;}
.y49_c00289{bottom:178.577280pt;}
.y4a_c00289{bottom:178.724000pt;}
.y4b_c00289{bottom:178.862027pt;}
.y4c_c00289{bottom:179.185893pt;}
.y4d_c00289{bottom:179.351733pt;}
.y4e_c00289{bottom:179.541893pt;}
.y4f_c00289{bottom:179.968560pt;}
.y50_c00289{bottom:180.095947pt;}
.y32_c00289{bottom:183.599333pt;}
.y33_c00289{bottom:185.084613pt;}
.y43_c00289{bottom:186.210853pt;}
.y44_c00289{bottom:186.211013pt;}
.y41_c00289{bottom:186.211040pt;}
.y3f_c00289{bottom:186.211120pt;}
.y3e_c00289{bottom:186.211227pt;}
.y42_c00289{bottom:186.211253pt;}
.y40_c00289{bottom:186.211493pt;}
.y3b_c00289{bottom:186.211520pt;}
.y3d_c00289{bottom:186.211653pt;}
.y3c_c00289{bottom:186.211707pt;}
.y34_c00289{bottom:187.294053pt;}
.y35_c00289{bottom:187.970240pt;}
.y36_c00289{bottom:188.707920pt;}
.y37_c00289{bottom:189.105227pt;}
.y38_c00289{bottom:190.083813pt;}
.y39_c00289{bottom:190.582400pt;}
.y3a_c00289{bottom:190.834987pt;}
.y2b_c00289{bottom:192.000000pt;}
.y2c_c00289{bottom:196.474907pt;}
.y2d_c00289{bottom:197.564960pt;}
.y2e_c00289{bottom:198.511440pt;}
.y2f_c00289{bottom:199.816880pt;}
.y30_c00289{bottom:200.479253pt;}
.y31_c00289{bottom:203.117867pt;}
.y2a_c00289{bottom:213.234667pt;}
.y29_c00289{bottom:219.961333pt;}
.y28_c00289{bottom:265.068000pt;}
.y27_c00289{bottom:269.280000pt;}
.y26_c00289{bottom:356.040000pt;}
.y25_c00289{bottom:360.720000pt;}
.y24_c00289{bottom:746.788000pt;}
.y23_c00289{bottom:750.817333pt;}
.y22_c00289{bottom:753.958667pt;}
.y17_c00289{bottom:827.760389pt;}
.y18_c00289{bottom:828.009944pt;}
.y19_c00289{bottom:828.395827pt;}
.y1a_c00289{bottom:828.725213pt;}
.y1b_c00289{bottom:829.004317pt;}
.y1c_c00289{bottom:829.460720pt;}
.y1d_c00289{bottom:829.878168pt;}
.y1e_c00289{bottom:830.598261pt;}
.y1f_c00289{bottom:831.784536pt;}
.yc_c00289{bottom:831.841333pt;}
.yd_c00289{bottom:832.559795pt;}
.ye_c00289{bottom:832.822416pt;}
.yf_c00289{bottom:833.705685pt;}
.y10_c00289{bottom:834.062088pt;}
.y11_c00289{bottom:834.539152pt;}
.y12_c00289{bottom:835.423075pt;}
.y20_c00289{bottom:835.460944pt;}
.y13_c00289{bottom:835.846808pt;}
.y14_c00289{bottom:836.111987pt;}
.y4_c00289{bottom:836.400000pt;}
.y15_c00289{bottom:836.521776pt;}
.y5_c00289{bottom:836.569180pt;}
.y6_c00289{bottom:837.213501pt;}
.y7_c00289{bottom:838.008039pt;}
.y21_c00289{bottom:838.380515pt;}
.y8_c00289{bottom:838.464553pt;}
.y16_c00289{bottom:839.106213pt;}
.y9_c00289{bottom:839.220268pt;}
.ya_c00289{bottom:839.932760pt;}
.yb_c00289{bottom:840.450112pt;}
.y3_c00289{bottom:843.193333pt;}
.y2_c00289{bottom:857.640000pt;}
.y1_c00289{bottom:944.412000pt;}
.ha_c00289{height:10.668800pt;}
.h3_c00289{height:16.000000pt;}
.h2_c00289{height:21.333333pt;}
.h4_c00289{height:21.334624pt;}
.h6_c00289{height:21.335424pt;}
.h9_c00289{height:21.337600pt;}
.h5_c00289{height:26.669280pt;}
.hb_c00289{height:32.000000pt;}
.h8_c00289{height:37.340799pt;}
.h7_c00289{height:48.009599pt;}
.h1_c00289{height:1036.000000pt;}
.h0_c00289{height:1036.266667pt;}
.w0_c00289{width:813.333333pt;}
.x0_c00289{left:0.000000pt;}
.x19_c00289{left:81.457333pt;}
.x9_c00289{left:84.000000pt;}
.x12_c00289{left:86.437333pt;}
.x3a_c00289{left:88.320000pt;}
.x4_c00289{left:89.280000pt;}
.x39_c00289{left:91.920000pt;}
.xa_c00289{left:96.480000pt;}
.x5_c00289{left:97.920000pt;}
.x13_c00289{left:101.817333pt;}
.x3e_c00289{left:108.245333pt;}
.x44_c00289{left:110.247413pt;}
.xb_c00289{left:113.040000pt;}
.x23_c00289{left:115.118824pt;}
.x2f_c00289{left:116.160000pt;}
.x3b_c00289{left:122.640000pt;}
.x2c_c00289{left:130.560000pt;}
.x24_c00289{left:131.597443pt;}
.x1a_c00289{left:132.776000pt;}
.x6_c00289{left:138.000000pt;}
.x25_c00289{left:145.532267pt;}
.x1b_c00289{left:151.534667pt;}
.x7_c00289{left:158.640000pt;}
.x14_c00289{left:160.392000pt;}
.x30_c00289{left:162.960000pt;}
.x8_c00289{left:167.520000pt;}
.x5f_c00289{left:168.960000pt;}
.xc_c00289{left:172.800000pt;}
.x5e_c00289{left:174.240000pt;}
.x2b_c00289{left:175.920000pt;}
.x31_c00289{left:180.240000pt;}
.x1_c00289{left:186.000000pt;}
.x26_c00289{left:189.184589pt;}
.x2_c00289{left:192.480000pt;}
.x32_c00289{left:195.360000pt;}
.x45_c00289{left:197.583307pt;}
.x33_c00289{left:200.160000pt;}
.x3_c00289{left:206.160000pt;}
.x2d_c00289{left:212.640000pt;}
.x1c_c00289{left:214.625333pt;}
.x2e_c00289{left:221.040000pt;}
.x27_c00289{left:225.188232pt;}
.x15_c00289{left:232.622667pt;}
.x60_c00289{left:234.480000pt;}
.x1d_c00289{left:240.082667pt;}
.xd_c00289{left:242.400000pt;}
.x61_c00289{left:264.480000pt;}
.x16_c00289{left:274.124000pt;}
.x5d_c00289{left:278.880000pt;}
.xe_c00289{left:282.000000pt;}
.x28_c00289{left:284.488581pt;}
.x4b_c00289{left:303.881947pt;}
.xf_c00289{left:308.400000pt;}
.x53_c00289{left:319.261413pt;}
.x4c_c00289{left:321.164853pt;}
.x46_c00289{left:327.529760pt;}
.x3f_c00289{left:331.990667pt;}
.x1e_c00289{left:337.296000pt;}
.x10_c00289{left:342.240000pt;}
.x3d_c00289{left:343.440000pt;}
.x3c_c00289{left:348.240000pt;}
.x11_c00289{left:363.600000pt;}
.x1f_c00289{left:367.562667pt;}
.x4d_c00289{left:372.294640pt;}
.x20_c00289{left:386.504000pt;}
.x4e_c00289{left:396.298907pt;}
.x54_c00289{left:397.504373pt;}
.x17_c00289{left:407.597333pt;}
.x47_c00289{left:410.761440pt;}
.x21_c00289{left:415.774667pt;}
.x55_c00289{left:426.803120pt;}
.x40_c00289{left:433.817333pt;}
.x56_c00289{left:450.114373pt;}
.x18_c00289{left:454.629333pt;}
.x57_c00289{left:461.385280pt;}
.x29_c00289{left:468.311811pt;}
.x58_c00289{left:471.954747pt;}
.x36_c00289{left:480.480000pt;}
.x34_c00289{left:490.320000pt;}
.x48_c00289{left:491.760987pt;}
.x37_c00289{left:493.920000pt;}
.x4f_c00289{left:495.678640pt;}
.x59_c00289{left:496.884907pt;}
.x41_c00289{left:499.089333pt;}
.x35_c00289{left:501.600000pt;}
.x5a_c00289{left:509.645360pt;}
.x38_c00289{left:518.160000pt;}
.x49_c00289{left:521.092080pt;}
.x5b_c00289{left:524.288747pt;}
.x50_c00289{left:527.604747pt;}
.x42_c00289{left:532.208000pt;}
.x4a_c00289{left:535.922293pt;}
.x51_c00289{left:555.690640pt;}
.x5c_c00289{left:557.160027pt;}
.x52_c00289{left:566.252187pt;}
.x22_c00289{left:600.377333pt;}
.x2a_c00289{left:614.268880pt;}
.x43_c00289{left:664.138667pt;}
}





/* 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_c00290 {
    display:none;
  }
  .loading-indicator_c00290.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00290 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_c00290 { 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_c00290" -> "#page-container .classname_c00290")
 */
.pf_c00290 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00290 { /* 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_c00290.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00290 { /* 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_c00290 { /* 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_c00290 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00290 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00290 {overflow:visible;}
  }
}
.c_c00290 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00290 { /* 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_c00290:after { /* webkit #35443 */
  content: '';
}
.t_c00290:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00290 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 */
}
.__c00290 { /* 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_c00290 { /* info for Javascript */
  display:none;
}
.l_c00290 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00290 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00290 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00290: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_c00290 {
    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_c00290.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00290.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_c00290 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00290{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00290;src:url('chunks/assets/font_53ec0c54e60da7c2d414b553.woff2')format("woff");}.ff1_c00290{font-family:ff1_c00290;line-height:1.000000;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;}
.m34_c00290{transform:matrix(0.031820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.031820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.031820,0.000000,0.000000,0.250000,0,0);}
.m83_c00290{transform:matrix(0.095456,-0.000859,0.002250,0.249990,0,0);-ms-transform:matrix(0.095456,-0.000859,0.002250,0.249990,0,0);-webkit-transform:matrix(0.095456,-0.000859,0.002250,0.249990,0,0);}
.md3_c00290{transform:matrix(0.125188,-0.000626,0.001250,0.249997,0,0);-ms-transform:matrix(0.125188,-0.000626,0.001250,0.249997,0,0);-webkit-transform:matrix(0.125188,-0.000626,0.001250,0.249997,0,0);}
.mb8_c00290{transform:matrix(0.129567,-0.000907,0.001750,0.249994,0,0);-ms-transform:matrix(0.129567,-0.000907,0.001750,0.249994,0,0);-webkit-transform:matrix(0.129567,-0.000907,0.001750,0.249994,0,0);}
.mb2_c00290{transform:matrix(0.129747,-0.000908,0.001750,0.249994,0,0);-ms-transform:matrix(0.129747,-0.000908,0.001750,0.249994,0,0);-webkit-transform:matrix(0.129747,-0.000908,0.001750,0.249994,0,0);}
.m7c_c00290{transform:matrix(0.137879,-0.001241,0.002250,0.249990,0,0);-ms-transform:matrix(0.137879,-0.001241,0.002250,0.249990,0,0);-webkit-transform:matrix(0.137879,-0.001241,0.002250,0.249990,0,0);}
.m88_c00290{transform:matrix(0.140557,-0.000984,0.001750,0.249994,0,0);-ms-transform:matrix(0.140557,-0.000984,0.001750,0.249994,0,0);-webkit-transform:matrix(0.140557,-0.000984,0.001750,0.249994,0,0);}
.mc7_c00290{transform:matrix(0.140558,-0.000703,0.001250,0.249997,0,0);-ms-transform:matrix(0.140558,-0.000703,0.001250,0.249997,0,0);-webkit-transform:matrix(0.140558,-0.000703,0.001250,0.249997,0,0);}
.m98_c00290{transform:matrix(0.143280,-0.001146,0.002000,0.249992,0,0);-ms-transform:matrix(0.143280,-0.001146,0.002000,0.249992,0,0);-webkit-transform:matrix(0.143280,-0.001146,0.002000,0.249992,0,0);}
.m11_c00290{transform:matrix(0.143435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143435,0.000000,0.000000,0.250000,0,0);}
.m49_c00290{transform:matrix(0.147779,-0.001330,0.002250,0.249990,0,0);-ms-transform:matrix(0.147779,-0.001330,0.002250,0.249990,0,0);-webkit-transform:matrix(0.147779,-0.001330,0.002250,0.249990,0,0);}
.mdd_c00290{transform:matrix(0.148834,-0.003274,0.005499,0.249940,0,0);-ms-transform:matrix(0.148834,-0.003274,0.005499,0.249940,0,0);-webkit-transform:matrix(0.148834,-0.003274,0.005499,0.249940,0,0);}
.m61_c00290{transform:matrix(0.148863,-0.001489,0.002500,0.249988,0,0);-ms-transform:matrix(0.148863,-0.001489,0.002500,0.249988,0,0);-webkit-transform:matrix(0.148863,-0.001489,0.002500,0.249988,0,0);}
.m79_c00290{transform:matrix(0.151159,-0.001360,0.002250,0.249990,0,0);-ms-transform:matrix(0.151159,-0.001360,0.002250,0.249990,0,0);-webkit-transform:matrix(0.151159,-0.001360,0.002250,0.249990,0,0);}
.me0_c00290{transform:matrix(0.152083,-0.003346,0.005499,0.249940,0,0);-ms-transform:matrix(0.152083,-0.003346,0.005499,0.249940,0,0);-webkit-transform:matrix(0.152083,-0.003346,0.005499,0.249940,0,0);}
.m27_c00290{transform:matrix(0.156196,-0.001718,0.002750,0.249985,0,0);-ms-transform:matrix(0.156196,-0.001718,0.002750,0.249985,0,0);-webkit-transform:matrix(0.156196,-0.001718,0.002750,0.249985,0,0);}
.m93_c00290{transform:matrix(0.162091,-0.001135,0.001750,0.249994,0,0);-ms-transform:matrix(0.162091,-0.001135,0.001750,0.249994,0,0);-webkit-transform:matrix(0.162091,-0.001135,0.001750,0.249994,0,0);}
.m37_c00290{transform:matrix(0.164490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164490,0.000000,0.000000,0.250000,0,0);}
.mb_c00290{transform:matrix(0.175730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175730,0.000000,0.000000,0.250000,0,0);}
.mbe_c00290{transform:matrix(0.176181,-0.001233,0.001750,0.249994,0,0);-ms-transform:matrix(0.176181,-0.001233,0.001750,0.249994,0,0);-webkit-transform:matrix(0.176181,-0.001233,0.001750,0.249994,0,0);}
.md_c00290{transform:matrix(0.182910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182910,0.000000,0.000000,0.250000,0,0);}
.md7_c00290{transform:matrix(0.185933,-0.000930,0.001250,0.249997,0,0);-ms-transform:matrix(0.185933,-0.000930,0.001250,0.249997,0,0);-webkit-transform:matrix(0.185933,-0.000930,0.001250,0.249997,0,0);}
.m7e_c00290{transform:matrix(0.186817,-0.001681,0.002250,0.249990,0,0);-ms-transform:matrix(0.186817,-0.001681,0.002250,0.249990,0,0);-webkit-transform:matrix(0.186817,-0.001681,0.002250,0.249990,0,0);}
.m9a_c00290{transform:matrix(0.187914,-0.001503,0.002000,0.249992,0,0);-ms-transform:matrix(0.187914,-0.001503,0.002000,0.249992,0,0);-webkit-transform:matrix(0.187914,-0.001503,0.002000,0.249992,0,0);}
.mae_c00290{transform:matrix(0.188227,-0.001129,0.001500,0.249996,0,0);-ms-transform:matrix(0.188227,-0.001129,0.001500,0.249996,0,0);-webkit-transform:matrix(0.188227,-0.001129,0.001500,0.249996,0,0);}
.mab_c00290{transform:matrix(0.193502,-0.001161,0.001500,0.249996,0,0);-ms-transform:matrix(0.193502,-0.001161,0.001500,0.249996,0,0);-webkit-transform:matrix(0.193502,-0.001161,0.001500,0.249996,0,0);}
.mc6_c00290{transform:matrix(0.194355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194355,0.000000,0.000000,0.250000,0,0);}
.md9_c00290{transform:matrix(0.196303,-0.000982,0.001250,0.249997,0,0);-ms-transform:matrix(0.196303,-0.000982,0.001250,0.249997,0,0);-webkit-transform:matrix(0.196303,-0.000982,0.001250,0.249997,0,0);}
.m78_c00290{transform:matrix(0.196605,-0.001376,0.001750,0.249994,0,0);-ms-transform:matrix(0.196605,-0.001376,0.001750,0.249994,0,0);-webkit-transform:matrix(0.196605,-0.001376,0.001750,0.249994,0,0);}
.md2_c00290{transform:matrix(0.198383,-0.000992,0.001250,0.249997,0,0);-ms-transform:matrix(0.198383,-0.000992,0.001250,0.249997,0,0);-webkit-transform:matrix(0.198383,-0.000992,0.001250,0.249997,0,0);}
.m5c_c00290{transform:matrix(0.201427,-0.001813,0.002250,0.249990,0,0);-ms-transform:matrix(0.201427,-0.001813,0.002250,0.249990,0,0);-webkit-transform:matrix(0.201427,-0.001813,0.002250,0.249990,0,0);}
.ma7_c00290{transform:matrix(0.205486,-0.001233,0.001500,0.249996,0,0);-ms-transform:matrix(0.205486,-0.001233,0.001500,0.249996,0,0);-webkit-transform:matrix(0.205486,-0.001233,0.001500,0.249996,0,0);}
.mba_c00290{transform:matrix(0.206255,-0.001444,0.001750,0.249994,0,0);-ms-transform:matrix(0.206255,-0.001444,0.001750,0.249994,0,0);-webkit-transform:matrix(0.206255,-0.001444,0.001750,0.249994,0,0);}
.mb0_c00290{transform:matrix(0.206710,-0.001447,0.001750,0.249994,0,0);-ms-transform:matrix(0.206710,-0.001447,0.001750,0.249994,0,0);-webkit-transform:matrix(0.206710,-0.001447,0.001750,0.249994,0,0);}
.mb5_c00290{transform:matrix(0.207390,-0.001452,0.001750,0.249994,0,0);-ms-transform:matrix(0.207390,-0.001452,0.001750,0.249994,0,0);-webkit-transform:matrix(0.207390,-0.001452,0.001750,0.249994,0,0);}
.m30_c00290{transform:matrix(0.207427,-0.002282,0.002750,0.249985,0,0);-ms-transform:matrix(0.207427,-0.002282,0.002750,0.249985,0,0);-webkit-transform:matrix(0.207427,-0.002282,0.002750,0.249985,0,0);}
.mc4_c00290{transform:matrix(0.208475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208475,0.000000,0.000000,0.250000,0,0);}
.md5_c00290{transform:matrix(0.210017,-0.001050,0.001250,0.249997,0,0);-ms-transform:matrix(0.210017,-0.001050,0.001250,0.249997,0,0);-webkit-transform:matrix(0.210017,-0.001050,0.001250,0.249997,0,0);}
.m12_c00290{transform:matrix(0.213135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213135,0.000000,0.000000,0.250000,0,0);}
.m8d_c00290{transform:matrix(0.214005,-0.001498,0.001750,0.249994,0,0);-ms-transform:matrix(0.214005,-0.001498,0.001750,0.249994,0,0);-webkit-transform:matrix(0.214005,-0.001498,0.001750,0.249994,0,0);}
.m6c_c00290{transform:matrix(0.216100,-0.001513,0.001750,0.249994,0,0);-ms-transform:matrix(0.216100,-0.001513,0.001750,0.249994,0,0);-webkit-transform:matrix(0.216100,-0.001513,0.001750,0.249994,0,0);}
.m71_c00290{transform:matrix(0.216905,-0.001518,0.001750,0.249994,0,0);-ms-transform:matrix(0.216905,-0.001518,0.001750,0.249994,0,0);-webkit-transform:matrix(0.216905,-0.001518,0.001750,0.249994,0,0);}
.m31_c00290{transform:matrix(0.221262,-0.002434,0.002750,0.249985,0,0);-ms-transform:matrix(0.221262,-0.002434,0.002750,0.249985,0,0);-webkit-transform:matrix(0.221262,-0.002434,0.002750,0.249985,0,0);}
.m75_c00290{transform:matrix(0.221270,-0.001549,0.001750,0.249994,0,0);-ms-transform:matrix(0.221270,-0.001549,0.001750,0.249994,0,0);-webkit-transform:matrix(0.221270,-0.001549,0.001750,0.249994,0,0);}
.mb4_c00290{transform:matrix(0.221450,-0.001550,0.001750,0.249994,0,0);-ms-transform:matrix(0.221450,-0.001550,0.001750,0.249994,0,0);-webkit-transform:matrix(0.221450,-0.001550,0.001750,0.249994,0,0);}
.m72_c00290{transform:matrix(0.221875,-0.001553,0.001750,0.249994,0,0);-ms-transform:matrix(0.221875,-0.001553,0.001750,0.249994,0,0);-webkit-transform:matrix(0.221875,-0.001553,0.001750,0.249994,0,0);}
.m48_c00290{transform:matrix(0.222176,-0.002000,0.002250,0.249990,0,0);-ms-transform:matrix(0.222176,-0.002000,0.002250,0.249990,0,0);-webkit-transform:matrix(0.222176,-0.002000,0.002250,0.249990,0,0);}
.md6_c00290{transform:matrix(0.222752,-0.001114,0.001250,0.249997,0,0);-ms-transform:matrix(0.222752,-0.001114,0.001250,0.249997,0,0);-webkit-transform:matrix(0.222752,-0.001114,0.001250,0.249997,0,0);}
.m85_c00290{transform:matrix(0.223145,-0.001562,0.001750,0.249994,0,0);-ms-transform:matrix(0.223145,-0.001562,0.001750,0.249994,0,0);-webkit-transform:matrix(0.223145,-0.001562,0.001750,0.249994,0,0);}
.mdc_c00290{transform:matrix(0.223621,-0.004920,0.005499,0.249940,0,0);-ms-transform:matrix(0.223621,-0.004920,0.005499,0.249940,0,0);-webkit-transform:matrix(0.223621,-0.004920,0.005499,0.249940,0,0);}
.m97_c00290{transform:matrix(0.223883,-0.001791,0.002000,0.249992,0,0);-ms-transform:matrix(0.223883,-0.001791,0.002000,0.249992,0,0);-webkit-transform:matrix(0.223883,-0.001791,0.002000,0.249992,0,0);}
.mcc_c00290{transform:matrix(0.224717,-0.001124,0.001250,0.249997,0,0);-ms-transform:matrix(0.224717,-0.001124,0.001250,0.249997,0,0);-webkit-transform:matrix(0.224717,-0.001124,0.001250,0.249997,0,0);}
.m95_c00290{transform:matrix(0.224843,-0.001799,0.002000,0.249992,0,0);-ms-transform:matrix(0.224843,-0.001799,0.002000,0.249992,0,0);-webkit-transform:matrix(0.224843,-0.001799,0.002000,0.249992,0,0);}
.mac_c00290{transform:matrix(0.225991,-0.001356,0.001500,0.249996,0,0);-ms-transform:matrix(0.225991,-0.001356,0.001500,0.249996,0,0);-webkit-transform:matrix(0.225991,-0.001356,0.001500,0.249996,0,0);}
.mce_c00290{transform:matrix(0.226107,-0.001131,0.001250,0.249997,0,0);-ms-transform:matrix(0.226107,-0.001131,0.001250,0.249997,0,0);-webkit-transform:matrix(0.226107,-0.001131,0.001250,0.249997,0,0);}
.md0_c00290{transform:matrix(0.226272,-0.001131,0.001250,0.249997,0,0);-ms-transform:matrix(0.226272,-0.001131,0.001250,0.249997,0,0);-webkit-transform:matrix(0.226272,-0.001131,0.001250,0.249997,0,0);}
.ma0_c00290{transform:matrix(0.226393,-0.001811,0.002000,0.249992,0,0);-ms-transform:matrix(0.226393,-0.001811,0.002000,0.249992,0,0);-webkit-transform:matrix(0.226393,-0.001811,0.002000,0.249992,0,0);}
.mbf_c00290{transform:matrix(0.226825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226825,0.000000,0.000000,0.250000,0,0);}
.m4b_c00290{transform:matrix(0.228121,-0.002053,0.002250,0.249990,0,0);-ms-transform:matrix(0.228121,-0.002053,0.002250,0.249990,0,0);-webkit-transform:matrix(0.228121,-0.002053,0.002250,0.249990,0,0);}
.m87_c00290{transform:matrix(0.229034,-0.001603,0.001750,0.249994,0,0);-ms-transform:matrix(0.229034,-0.001603,0.001750,0.249994,0,0);-webkit-transform:matrix(0.229034,-0.001603,0.001750,0.249994,0,0);}
.mbc_c00290{transform:matrix(0.230169,-0.001611,0.001750,0.249994,0,0);-ms-transform:matrix(0.230169,-0.001611,0.001750,0.249994,0,0);-webkit-transform:matrix(0.230169,-0.001611,0.001750,0.249994,0,0);}
.m38_c00290{transform:matrix(0.231320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231320,0.000000,0.000000,0.250000,0,0);}
.ma6_c00290{transform:matrix(0.231436,-0.001389,0.001500,0.249996,0,0);-ms-transform:matrix(0.231436,-0.001389,0.001500,0.249996,0,0);-webkit-transform:matrix(0.231436,-0.001389,0.001500,0.249996,0,0);}
.md8_c00290{transform:matrix(0.232652,-0.001163,0.001250,0.249997,0,0);-ms-transform:matrix(0.232652,-0.001163,0.001250,0.249997,0,0);-webkit-transform:matrix(0.232652,-0.001163,0.001250,0.249997,0,0);}
.mb9_c00290{transform:matrix(0.232864,-0.001630,0.001750,0.249994,0,0);-ms-transform:matrix(0.232864,-0.001630,0.001750,0.249994,0,0);-webkit-transform:matrix(0.232864,-0.001630,0.001750,0.249994,0,0);}
.md4_c00290{transform:matrix(0.233697,-0.001168,0.001250,0.249997,0,0);-ms-transform:matrix(0.233697,-0.001168,0.001250,0.249997,0,0);-webkit-transform:matrix(0.233697,-0.001168,0.001250,0.249997,0,0);}
.m74_c00290{transform:matrix(0.233729,-0.001636,0.001750,0.249994,0,0);-ms-transform:matrix(0.233729,-0.001636,0.001750,0.249994,0,0);-webkit-transform:matrix(0.233729,-0.001636,0.001750,0.249994,0,0);}
.m51_c00290{transform:matrix(0.234221,-0.002108,0.002250,0.249990,0,0);-ms-transform:matrix(0.234221,-0.002108,0.002250,0.249990,0,0);-webkit-transform:matrix(0.234221,-0.002108,0.002250,0.249990,0,0);}
.m39_c00290{transform:matrix(0.234491,-0.002110,0.002250,0.249990,0,0);-ms-transform:matrix(0.234491,-0.002110,0.002250,0.249990,0,0);-webkit-transform:matrix(0.234491,-0.002110,0.002250,0.249990,0,0);}
.md1_c00290{transform:matrix(0.234502,-0.001173,0.001250,0.249997,0,0);-ms-transform:matrix(0.234502,-0.001173,0.001250,0.249997,0,0);-webkit-transform:matrix(0.234502,-0.001173,0.001250,0.249997,0,0);}
.mbb_c00290{transform:matrix(0.235039,-0.001645,0.001750,0.249994,0,0);-ms-transform:matrix(0.235039,-0.001645,0.001750,0.249994,0,0);-webkit-transform:matrix(0.235039,-0.001645,0.001750,0.249994,0,0);}
.mc5_c00290{transform:matrix(0.235160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235160,0.000000,0.000000,0.250000,0,0);}
.m1e_c00290{transform:matrix(0.235386,-0.002589,0.002750,0.249985,0,0);-ms-transform:matrix(0.235386,-0.002589,0.002750,0.249985,0,0);-webkit-transform:matrix(0.235386,-0.002589,0.002750,0.249985,0,0);}
.mc_c00290{transform:matrix(0.235805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235805,0.000000,0.000000,0.250000,0,0);}
.m6f_c00290{transform:matrix(0.235844,-0.001651,0.001750,0.249994,0,0);-ms-transform:matrix(0.235844,-0.001651,0.001750,0.249994,0,0);-webkit-transform:matrix(0.235844,-0.001651,0.001750,0.249994,0,0);}
.ma4_c00290{transform:matrix(0.236201,-0.001417,0.001500,0.249996,0,0);-ms-transform:matrix(0.236201,-0.001417,0.001500,0.249996,0,0);-webkit-transform:matrix(0.236201,-0.001417,0.001500,0.249996,0,0);}
.mc2_c00290{transform:matrix(0.236805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236805,0.000000,0.000000,0.250000,0,0);}
.mbd_c00290{transform:matrix(0.237039,-0.001659,0.001750,0.249994,0,0);-ms-transform:matrix(0.237039,-0.001659,0.001750,0.249994,0,0);-webkit-transform:matrix(0.237039,-0.001659,0.001750,0.249994,0,0);}
.m6a_c00290{transform:matrix(0.237173,-0.002372,0.002500,0.249988,0,0);-ms-transform:matrix(0.237173,-0.002372,0.002500,0.249988,0,0);-webkit-transform:matrix(0.237173,-0.002372,0.002500,0.249988,0,0);}
.maf_c00290{transform:matrix(0.237374,-0.001662,0.001750,0.249994,0,0);-ms-transform:matrix(0.237374,-0.001662,0.001750,0.249994,0,0);-webkit-transform:matrix(0.237374,-0.001662,0.001750,0.249994,0,0);}
.m44_c00290{transform:matrix(0.237515,-0.002138,0.002250,0.249990,0,0);-ms-transform:matrix(0.237515,-0.002138,0.002250,0.249990,0,0);-webkit-transform:matrix(0.237515,-0.002138,0.002250,0.249990,0,0);}
.m9e_c00290{transform:matrix(0.238527,-0.001908,0.002000,0.249992,0,0);-ms-transform:matrix(0.238527,-0.001908,0.002000,0.249992,0,0);-webkit-transform:matrix(0.238527,-0.001908,0.002000,0.249992,0,0);}
.m84_c00290{transform:matrix(0.240059,-0.001680,0.001750,0.249994,0,0);-ms-transform:matrix(0.240059,-0.001680,0.001750,0.249994,0,0);-webkit-transform:matrix(0.240059,-0.001680,0.001750,0.249994,0,0);}
.m80_c00290{transform:matrix(0.240285,-0.002163,0.002250,0.249990,0,0);-ms-transform:matrix(0.240285,-0.002163,0.002250,0.249990,0,0);-webkit-transform:matrix(0.240285,-0.002163,0.002250,0.249990,0,0);}
.maa_c00290{transform:matrix(0.241256,-0.001448,0.001500,0.249996,0,0);-ms-transform:matrix(0.241256,-0.001448,0.001500,0.249996,0,0);-webkit-transform:matrix(0.241256,-0.001448,0.001500,0.249996,0,0);}
.mb3_c00290{transform:matrix(0.242254,-0.001696,0.001750,0.249994,0,0);-ms-transform:matrix(0.242254,-0.001696,0.001750,0.249994,0,0);-webkit-transform:matrix(0.242254,-0.001696,0.001750,0.249994,0,0);}
.m66_c00290{transform:matrix(0.243158,-0.002432,0.002500,0.249988,0,0);-ms-transform:matrix(0.243158,-0.002432,0.002500,0.249988,0,0);-webkit-transform:matrix(0.243158,-0.002432,0.002500,0.249988,0,0);}
.ma1_c00290{transform:matrix(0.243331,-0.001460,0.001500,0.249996,0,0);-ms-transform:matrix(0.243331,-0.001460,0.001500,0.249996,0,0);-webkit-transform:matrix(0.243331,-0.001460,0.001500,0.249996,0,0);}
.m68_c00290{transform:matrix(0.244378,-0.002444,0.002500,0.249988,0,0);-ms-transform:matrix(0.244378,-0.002444,0.002500,0.249988,0,0);-webkit-transform:matrix(0.244378,-0.002444,0.002500,0.249988,0,0);}
.mad_c00290{transform:matrix(0.244476,-0.001467,0.001500,0.249996,0,0);-ms-transform:matrix(0.244476,-0.001467,0.001500,0.249996,0,0);-webkit-transform:matrix(0.244476,-0.001467,0.001500,0.249996,0,0);}
.ma8_c00290{transform:matrix(0.245721,-0.001474,0.001500,0.249996,0,0);-ms-transform:matrix(0.245721,-0.001474,0.001500,0.249996,0,0);-webkit-transform:matrix(0.245721,-0.001474,0.001500,0.249996,0,0);}
.m59_c00290{transform:matrix(0.246020,-0.002214,0.002250,0.249990,0,0);-ms-transform:matrix(0.246020,-0.002214,0.002250,0.249990,0,0);-webkit-transform:matrix(0.246020,-0.002214,0.002250,0.249990,0,0);}
.mf_c00290{transform:matrix(0.246980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246980,0.000000,0.000000,0.250000,0,0);}
.mc8_c00290{transform:matrix(0.247152,-0.001236,0.001250,0.249997,0,0);-ms-transform:matrix(0.247152,-0.001236,0.001250,0.249997,0,0);-webkit-transform:matrix(0.247152,-0.001236,0.001250,0.249997,0,0);}
.mb1_c00290{transform:matrix(0.247439,-0.001732,0.001750,0.249994,0,0);-ms-transform:matrix(0.247439,-0.001732,0.001750,0.249994,0,0);-webkit-transform:matrix(0.247439,-0.001732,0.001750,0.249994,0,0);}
.mc0_c00290{transform:matrix(0.247675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247675,0.000000,0.000000,0.250000,0,0);}
.m7f_c00290{transform:matrix(0.247925,-0.002231,0.002250,0.249990,0,0);-ms-transform:matrix(0.247925,-0.002231,0.002250,0.249990,0,0);-webkit-transform:matrix(0.247925,-0.002231,0.002250,0.249990,0,0);}
.mcb_c00290{transform:matrix(0.248212,-0.001241,0.001250,0.249997,0,0);-ms-transform:matrix(0.248212,-0.001241,0.001250,0.249997,0,0);-webkit-transform:matrix(0.248212,-0.001241,0.001250,0.249997,0,0);}
.mc3_c00290{transform:matrix(0.248620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248620,0.000000,0.000000,0.250000,0,0);}
.me2_c00290{transform:matrix(0.249150,-0.005481,0.005499,0.249940,0,0);-ms-transform:matrix(0.249150,-0.005481,0.005499,0.249940,0,0);-webkit-transform:matrix(0.249150,-0.005481,0.005499,0.249940,0,0);}
.ma2_c00290{transform:matrix(0.249661,-0.001498,0.001500,0.249996,0,0);-ms-transform:matrix(0.249661,-0.001498,0.001500,0.249996,0,0);-webkit-transform:matrix(0.249661,-0.001498,0.001500,0.249996,0,0);}
.mdf_c00290{transform:matrix(0.250094,-0.005502,0.005499,0.249940,0,0);-ms-transform:matrix(0.250094,-0.005502,0.005499,0.249940,0,0);-webkit-transform:matrix(0.250094,-0.005502,0.005499,0.249940,0,0);}
.m60_c00290{transform:matrix(0.250720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250720,0.000000,0.000000,0.250000,0,0);}
.mcf_c00290{transform:matrix(0.251112,-0.001256,0.001250,0.249997,0,0);-ms-transform:matrix(0.251112,-0.001256,0.001250,0.249997,0,0);-webkit-transform:matrix(0.251112,-0.001256,0.001250,0.249997,0,0);}
.m81_c00290{transform:matrix(0.251115,-0.002260,0.002250,0.249990,0,0);-ms-transform:matrix(0.251115,-0.002260,0.002250,0.249990,0,0);-webkit-transform:matrix(0.251115,-0.002260,0.002250,0.249990,0,0);}
.m82_c00290{transform:matrix(0.251905,-0.002267,0.002250,0.249990,0,0);-ms-transform:matrix(0.251905,-0.002267,0.002250,0.249990,0,0);-webkit-transform:matrix(0.251905,-0.002267,0.002250,0.249990,0,0);}
.mca_c00290{transform:matrix(0.252592,-0.001263,0.001250,0.249997,0,0);-ms-transform:matrix(0.252592,-0.001263,0.001250,0.249997,0,0);-webkit-transform:matrix(0.252592,-0.001263,0.001250,0.249997,0,0);}
.m5f_c00290{transform:matrix(0.252670,-0.002274,0.002250,0.249990,0,0);-ms-transform:matrix(0.252670,-0.002274,0.002250,0.249990,0,0);-webkit-transform:matrix(0.252670,-0.002274,0.002250,0.249990,0,0);}
.mc1_c00290{transform:matrix(0.252715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252715,0.000000,0.000000,0.250000,0,0);}
.ma3_c00290{transform:matrix(0.252950,-0.001518,0.001500,0.249996,0,0);-ms-transform:matrix(0.252950,-0.001518,0.001500,0.249996,0,0);-webkit-transform:matrix(0.252950,-0.001518,0.001500,0.249996,0,0);}
.m4c_c00290{transform:matrix(0.253730,-0.002284,0.002250,0.249990,0,0);-ms-transform:matrix(0.253730,-0.002284,0.002250,0.249990,0,0);-webkit-transform:matrix(0.253730,-0.002284,0.002250,0.249990,0,0);}
.m8a_c00290{transform:matrix(0.253779,-0.001776,0.001750,0.249994,0,0);-ms-transform:matrix(0.253779,-0.001776,0.001750,0.249994,0,0);-webkit-transform:matrix(0.253779,-0.001776,0.001750,0.249994,0,0);}
.ma9_c00290{transform:matrix(0.253930,-0.001524,0.001500,0.249996,0,0);-ms-transform:matrix(0.253930,-0.001524,0.001500,0.249996,0,0);-webkit-transform:matrix(0.253930,-0.001524,0.001500,0.249996,0,0);}
.m69_c00290{transform:matrix(0.254357,-0.002544,0.002500,0.249988,0,0);-ms-transform:matrix(0.254357,-0.002544,0.002500,0.249988,0,0);-webkit-transform:matrix(0.254357,-0.002544,0.002500,0.249988,0,0);}
.m4f_c00290{transform:matrix(0.254845,-0.002294,0.002250,0.249990,0,0);-ms-transform:matrix(0.254845,-0.002294,0.002250,0.249990,0,0);-webkit-transform:matrix(0.254845,-0.002294,0.002250,0.249990,0,0);}
.m58_c00290{transform:matrix(0.254970,-0.002295,0.002250,0.249990,0,0);-ms-transform:matrix(0.254970,-0.002295,0.002250,0.249990,0,0);-webkit-transform:matrix(0.254970,-0.002295,0.002250,0.249990,0,0);}
.mb7_c00290{transform:matrix(0.255174,-0.001786,0.001750,0.249994,0,0);-ms-transform:matrix(0.255174,-0.001786,0.001750,0.249994,0,0);-webkit-transform:matrix(0.255174,-0.001786,0.001750,0.249994,0,0);}
.m7a_c00290{transform:matrix(0.255215,-0.002297,0.002250,0.249990,0,0);-ms-transform:matrix(0.255215,-0.002297,0.002250,0.249990,0,0);-webkit-transform:matrix(0.255215,-0.002297,0.002250,0.249990,0,0);}
.m9d_c00290{transform:matrix(0.255572,-0.002045,0.002000,0.249992,0,0);-ms-transform:matrix(0.255572,-0.002045,0.002000,0.249992,0,0);-webkit-transform:matrix(0.255572,-0.002045,0.002000,0.249992,0,0);}
.m4e_c00290{transform:matrix(0.256440,-0.002308,0.002250,0.249990,0,0);-ms-transform:matrix(0.256440,-0.002308,0.002250,0.249990,0,0);-webkit-transform:matrix(0.256440,-0.002308,0.002250,0.249990,0,0);}
.ma5_c00290{transform:matrix(0.256610,-0.001540,0.001500,0.249996,0,0);-ms-transform:matrix(0.256610,-0.001540,0.001500,0.249996,0,0);-webkit-transform:matrix(0.256610,-0.001540,0.001500,0.249996,0,0);}
.m54_c00290{transform:matrix(0.257180,-0.002315,0.002250,0.249990,0,0);-ms-transform:matrix(0.257180,-0.002315,0.002250,0.249990,0,0);-webkit-transform:matrix(0.257180,-0.002315,0.002250,0.249990,0,0);}
.m94_c00290{transform:matrix(0.257877,-0.002063,0.002000,0.249992,0,0);-ms-transform:matrix(0.257877,-0.002063,0.002000,0.249992,0,0);-webkit-transform:matrix(0.257877,-0.002063,0.002000,0.249992,0,0);}
.mdb_c00290{transform:matrix(0.257893,-0.005674,0.005499,0.249940,0,0);-ms-transform:matrix(0.257893,-0.005674,0.005499,0.249940,0,0);-webkit-transform:matrix(0.257893,-0.005674,0.005499,0.249940,0,0);}
.m18_c00290{transform:matrix(0.257930,-0.002321,0.002250,0.249990,0,0);-ms-transform:matrix(0.257930,-0.002321,0.002250,0.249990,0,0);-webkit-transform:matrix(0.257930,-0.002321,0.002250,0.249990,0,0);}
.m96_c00290{transform:matrix(0.258302,-0.002066,0.002000,0.249992,0,0);-ms-transform:matrix(0.258302,-0.002066,0.002000,0.249992,0,0);-webkit-transform:matrix(0.258302,-0.002066,0.002000,0.249992,0,0);}
.mb6_c00290{transform:matrix(0.259614,-0.001817,0.001750,0.249994,0,0);-ms-transform:matrix(0.259614,-0.001817,0.001750,0.249994,0,0);-webkit-transform:matrix(0.259614,-0.001817,0.001750,0.249994,0,0);}
.m4_c00290{transform:matrix(0.259635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259635,0.000000,0.000000,0.250000,0,0);}
.m50_c00290{transform:matrix(0.260209,-0.002342,0.002250,0.249990,0,0);-ms-transform:matrix(0.260209,-0.002342,0.002250,0.249990,0,0);-webkit-transform:matrix(0.260209,-0.002342,0.002250,0.249990,0,0);}
.m1b_c00290{transform:matrix(0.261050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261050,0.000000,0.000000,0.250000,0,0);}
.m7d_c00290{transform:matrix(0.261389,-0.002353,0.002250,0.249990,0,0);-ms-transform:matrix(0.261389,-0.002353,0.002250,0.249990,0,0);-webkit-transform:matrix(0.261389,-0.002353,0.002250,0.249990,0,0);}
.m99_c00290{transform:matrix(0.261607,-0.002093,0.002000,0.249992,0,0);-ms-transform:matrix(0.261607,-0.002093,0.002000,0.249992,0,0);-webkit-transform:matrix(0.261607,-0.002093,0.002000,0.249992,0,0);}
.m89_c00290{transform:matrix(0.261829,-0.001833,0.001750,0.249994,0,0);-ms-transform:matrix(0.261829,-0.001833,0.001750,0.249994,0,0);-webkit-transform:matrix(0.261829,-0.001833,0.001750,0.249994,0,0);}
.m14_c00290{transform:matrix(0.261879,-0.002357,0.002250,0.249990,0,0);-ms-transform:matrix(0.261879,-0.002357,0.002250,0.249990,0,0);-webkit-transform:matrix(0.261879,-0.002357,0.002250,0.249990,0,0);}
.m7_c00290{transform:matrix(0.262525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262525,0.000000,0.000000,0.250000,0,0);}
.m73_c00290{transform:matrix(0.263334,-0.001843,0.001750,0.249994,0,0);-ms-transform:matrix(0.263334,-0.001843,0.001750,0.249994,0,0);-webkit-transform:matrix(0.263334,-0.001843,0.001750,0.249994,0,0);}
.m70_c00290{transform:matrix(0.263474,-0.001844,0.001750,0.249994,0,0);-ms-transform:matrix(0.263474,-0.001844,0.001750,0.249994,0,0);-webkit-transform:matrix(0.263474,-0.001844,0.001750,0.249994,0,0);}
.m9c_c00290{transform:matrix(0.263532,-0.002108,0.002000,0.249992,0,0);-ms-transform:matrix(0.263532,-0.002108,0.002000,0.249992,0,0);-webkit-transform:matrix(0.263532,-0.002108,0.002000,0.249992,0,0);}
.m90_c00290{transform:matrix(0.263754,-0.001846,0.001750,0.249994,0,0);-ms-transform:matrix(0.263754,-0.001846,0.001750,0.249994,0,0);-webkit-transform:matrix(0.263754,-0.001846,0.001750,0.249994,0,0);}
.m86_c00290{transform:matrix(0.264864,-0.001854,0.001750,0.249994,0,0);-ms-transform:matrix(0.264864,-0.001854,0.001750,0.249994,0,0);-webkit-transform:matrix(0.264864,-0.001854,0.001750,0.249994,0,0);}
.m2f_c00290{transform:matrix(0.265674,-0.002922,0.002750,0.249985,0,0);-ms-transform:matrix(0.265674,-0.002922,0.002750,0.249985,0,0);-webkit-transform:matrix(0.265674,-0.002922,0.002750,0.249985,0,0);}
.m6e_c00290{transform:matrix(0.266493,-0.001865,0.001750,0.249994,0,0);-ms-transform:matrix(0.266493,-0.001865,0.001750,0.249994,0,0);-webkit-transform:matrix(0.266493,-0.001865,0.001750,0.249994,0,0);}
.m46_c00290{transform:matrix(0.266594,-0.002399,0.002250,0.249990,0,0);-ms-transform:matrix(0.266594,-0.002399,0.002250,0.249990,0,0);-webkit-transform:matrix(0.266594,-0.002399,0.002250,0.249990,0,0);}
.mda_c00290{transform:matrix(0.266645,-0.005866,0.005499,0.249940,0,0);-ms-transform:matrix(0.266645,-0.005866,0.005499,0.249940,0,0);-webkit-transform:matrix(0.266645,-0.005866,0.005499,0.249940,0,0);}
.m2d_c00290{transform:matrix(0.266649,-0.002933,0.002750,0.249985,0,0);-ms-transform:matrix(0.266649,-0.002933,0.002750,0.249985,0,0);-webkit-transform:matrix(0.266649,-0.002933,0.002750,0.249985,0,0);}
.m3f_c00290{transform:matrix(0.267154,-0.002404,0.002250,0.249990,0,0);-ms-transform:matrix(0.267154,-0.002404,0.002250,0.249990,0,0);-webkit-transform:matrix(0.267154,-0.002404,0.002250,0.249990,0,0);}
.m67_c00290{transform:matrix(0.268422,-0.002684,0.002500,0.249988,0,0);-ms-transform:matrix(0.268422,-0.002684,0.002500,0.249988,0,0);-webkit-transform:matrix(0.268422,-0.002684,0.002500,0.249988,0,0);}
.me1_c00290{transform:matrix(0.268690,-0.005911,0.005499,0.249940,0,0);-ms-transform:matrix(0.268690,-0.005911,0.005499,0.249940,0,0);-webkit-transform:matrix(0.268690,-0.005911,0.005499,0.249940,0,0);}
.m7b_c00290{transform:matrix(0.269204,-0.002423,0.002250,0.249990,0,0);-ms-transform:matrix(0.269204,-0.002423,0.002250,0.249990,0,0);-webkit-transform:matrix(0.269204,-0.002423,0.002250,0.249990,0,0);}
.m64_c00290{transform:matrix(0.269302,-0.002693,0.002500,0.249988,0,0);-ms-transform:matrix(0.269302,-0.002693,0.002500,0.249988,0,0);-webkit-transform:matrix(0.269302,-0.002693,0.002500,0.249988,0,0);}
.mde_c00290{transform:matrix(0.269645,-0.005932,0.005499,0.249940,0,0);-ms-transform:matrix(0.269645,-0.005932,0.005499,0.249940,0,0);-webkit-transform:matrix(0.269645,-0.005932,0.005499,0.249940,0,0);}
.m22_c00290{transform:matrix(0.270804,-0.002979,0.002750,0.249985,0,0);-ms-transform:matrix(0.270804,-0.002979,0.002750,0.249985,0,0);-webkit-transform:matrix(0.270804,-0.002979,0.002750,0.249985,0,0);}
.m32_c00290{transform:matrix(0.271009,-0.002981,0.002750,0.249985,0,0);-ms-transform:matrix(0.271009,-0.002981,0.002750,0.249985,0,0);-webkit-transform:matrix(0.271009,-0.002981,0.002750,0.249985,0,0);}
.m76_c00290{transform:matrix(0.272073,-0.001905,0.001750,0.249994,0,0);-ms-transform:matrix(0.272073,-0.001905,0.001750,0.249994,0,0);-webkit-transform:matrix(0.272073,-0.001905,0.001750,0.249994,0,0);}
.m16_c00290{transform:matrix(0.272349,-0.002451,0.002250,0.249990,0,0);-ms-transform:matrix(0.272349,-0.002451,0.002250,0.249990,0,0);-webkit-transform:matrix(0.272349,-0.002451,0.002250,0.249990,0,0);}
.m8b_c00290{transform:matrix(0.272398,-0.001907,0.001750,0.249994,0,0);-ms-transform:matrix(0.272398,-0.001907,0.001750,0.249994,0,0);-webkit-transform:matrix(0.272398,-0.001907,0.001750,0.249994,0,0);}
.m8e_c00290{transform:matrix(0.273878,-0.001917,0.001750,0.249994,0,0);-ms-transform:matrix(0.273878,-0.001917,0.001750,0.249994,0,0);-webkit-transform:matrix(0.273878,-0.001917,0.001750,0.249994,0,0);}
.m2a_c00290{transform:matrix(0.274838,-0.003023,0.002750,0.249985,0,0);-ms-transform:matrix(0.274838,-0.003023,0.002750,0.249985,0,0);-webkit-transform:matrix(0.274838,-0.003023,0.002750,0.249985,0,0);}
.m65_c00290{transform:matrix(0.275481,-0.002755,0.002500,0.249988,0,0);-ms-transform:matrix(0.275481,-0.002755,0.002500,0.249988,0,0);-webkit-transform:matrix(0.275481,-0.002755,0.002500,0.249988,0,0);}
.m9f_c00290{transform:matrix(0.275571,-0.002205,0.002000,0.249992,0,0);-ms-transform:matrix(0.275571,-0.002205,0.002000,0.249992,0,0);-webkit-transform:matrix(0.275571,-0.002205,0.002000,0.249992,0,0);}
.m5d_c00290{transform:matrix(0.276239,-0.002486,0.002250,0.249990,0,0);-ms-transform:matrix(0.276239,-0.002486,0.002250,0.249990,0,0);-webkit-transform:matrix(0.276239,-0.002486,0.002250,0.249990,0,0);}
.mcd_c00290{transform:matrix(0.277137,-0.001386,0.001250,0.249997,0,0);-ms-transform:matrix(0.277137,-0.001386,0.001250,0.249997,0,0);-webkit-transform:matrix(0.277137,-0.001386,0.001250,0.249997,0,0);}
.m33_c00290{transform:matrix(0.277138,-0.003049,0.002750,0.249985,0,0);-ms-transform:matrix(0.277138,-0.003049,0.002750,0.249985,0,0);-webkit-transform:matrix(0.277138,-0.003049,0.002750,0.249985,0,0);}
.m47_c00290{transform:matrix(0.277479,-0.002497,0.002250,0.249990,0,0);-ms-transform:matrix(0.277479,-0.002497,0.002250,0.249990,0,0);-webkit-transform:matrix(0.277479,-0.002497,0.002250,0.249990,0,0);}
.m2c_c00290{transform:matrix(0.278458,-0.003063,0.002750,0.249985,0,0);-ms-transform:matrix(0.278458,-0.003063,0.002750,0.249985,0,0);-webkit-transform:matrix(0.278458,-0.003063,0.002750,0.249985,0,0);}
.m3d_c00290{transform:matrix(0.278534,-0.002507,0.002250,0.249990,0,0);-ms-transform:matrix(0.278534,-0.002507,0.002250,0.249990,0,0);-webkit-transform:matrix(0.278534,-0.002507,0.002250,0.249990,0,0);}
.m6d_c00290{transform:matrix(0.278753,-0.001951,0.001750,0.249994,0,0);-ms-transform:matrix(0.278753,-0.001951,0.001750,0.249994,0,0);-webkit-transform:matrix(0.278753,-0.001951,0.001750,0.249994,0,0);}
.m42_c00290{transform:matrix(0.280739,-0.002527,0.002250,0.249990,0,0);-ms-transform:matrix(0.280739,-0.002527,0.002250,0.249990,0,0);-webkit-transform:matrix(0.280739,-0.002527,0.002250,0.249990,0,0);}
.m8c_c00290{transform:matrix(0.280893,-0.001966,0.001750,0.249994,0,0);-ms-transform:matrix(0.280893,-0.001966,0.001750,0.249994,0,0);-webkit-transform:matrix(0.280893,-0.001966,0.001750,0.249994,0,0);}
.m77_c00290{transform:matrix(0.281373,-0.001970,0.001750,0.249994,0,0);-ms-transform:matrix(0.281373,-0.001970,0.001750,0.249994,0,0);-webkit-transform:matrix(0.281373,-0.001970,0.001750,0.249994,0,0);}
.m6b_c00290{transform:matrix(0.281656,-0.002817,0.002500,0.249988,0,0);-ms-transform:matrix(0.281656,-0.002817,0.002500,0.249988,0,0);-webkit-transform:matrix(0.281656,-0.002817,0.002500,0.249988,0,0);}
.m40_c00290{transform:matrix(0.281784,-0.002536,0.002250,0.249990,0,0);-ms-transform:matrix(0.281784,-0.002536,0.002250,0.249990,0,0);-webkit-transform:matrix(0.281784,-0.002536,0.002250,0.249990,0,0);}
.m9b_c00290{transform:matrix(0.282066,-0.002257,0.002000,0.249992,0,0);-ms-transform:matrix(0.282066,-0.002257,0.002000,0.249992,0,0);-webkit-transform:matrix(0.282066,-0.002257,0.002000,0.249992,0,0);}
.mc9_c00290{transform:matrix(0.282171,-0.001411,0.001250,0.249997,0,0);-ms-transform:matrix(0.282171,-0.001411,0.001250,0.249997,0,0);-webkit-transform:matrix(0.282171,-0.001411,0.001250,0.249997,0,0);}
.m4a_c00290{transform:matrix(0.283314,-0.002550,0.002250,0.249990,0,0);-ms-transform:matrix(0.283314,-0.002550,0.002250,0.249990,0,0);-webkit-transform:matrix(0.283314,-0.002550,0.002250,0.249990,0,0);}
.m41_c00290{transform:matrix(0.283709,-0.002553,0.002250,0.249990,0,0);-ms-transform:matrix(0.283709,-0.002553,0.002250,0.249990,0,0);-webkit-transform:matrix(0.283709,-0.002553,0.002250,0.249990,0,0);}
.m20_c00290{transform:matrix(0.283913,-0.003123,0.002750,0.249985,0,0);-ms-transform:matrix(0.283913,-0.003123,0.002750,0.249985,0,0);-webkit-transform:matrix(0.283913,-0.003123,0.002750,0.249985,0,0);}
.m8f_c00290{transform:matrix(0.284978,-0.001995,0.001750,0.249994,0,0);-ms-transform:matrix(0.284978,-0.001995,0.001750,0.249994,0,0);-webkit-transform:matrix(0.284978,-0.001995,0.001750,0.249994,0,0);}
.m2b_c00290{transform:matrix(0.285738,-0.003143,0.002750,0.249985,0,0);-ms-transform:matrix(0.285738,-0.003143,0.002750,0.249985,0,0);-webkit-transform:matrix(0.285738,-0.003143,0.002750,0.249985,0,0);}
.m3e_c00290{transform:matrix(0.286123,-0.002575,0.002250,0.249990,0,0);-ms-transform:matrix(0.286123,-0.002575,0.002250,0.249990,0,0);-webkit-transform:matrix(0.286123,-0.002575,0.002250,0.249990,0,0);}
.m1d_c00290{transform:matrix(0.287223,-0.003159,0.002750,0.249985,0,0);-ms-transform:matrix(0.287223,-0.003159,0.002750,0.249985,0,0);-webkit-transform:matrix(0.287223,-0.003159,0.002750,0.249985,0,0);}
.m5e_c00290{transform:matrix(0.287613,-0.002589,0.002250,0.249990,0,0);-ms-transform:matrix(0.287613,-0.002589,0.002250,0.249990,0,0);-webkit-transform:matrix(0.287613,-0.002589,0.002250,0.249990,0,0);}
.m43_c00290{transform:matrix(0.288408,-0.002596,0.002250,0.249990,0,0);-ms-transform:matrix(0.288408,-0.002596,0.002250,0.249990,0,0);-webkit-transform:matrix(0.288408,-0.002596,0.002250,0.249990,0,0);}
.m3c_c00290{transform:matrix(0.288823,-0.002599,0.002250,0.249990,0,0);-ms-transform:matrix(0.288823,-0.002599,0.002250,0.249990,0,0);-webkit-transform:matrix(0.288823,-0.002599,0.002250,0.249990,0,0);}
.m45_c00290{transform:matrix(0.289338,-0.002604,0.002250,0.249990,0,0);-ms-transform:matrix(0.289338,-0.002604,0.002250,0.249990,0,0);-webkit-transform:matrix(0.289338,-0.002604,0.002250,0.249990,0,0);}
.m3b_c00290{transform:matrix(0.290428,-0.002614,0.002250,0.249990,0,0);-ms-transform:matrix(0.290428,-0.002614,0.002250,0.249990,0,0);-webkit-transform:matrix(0.290428,-0.002614,0.002250,0.249990,0,0);}
.m5b_c00290{transform:matrix(0.290433,-0.002614,0.002250,0.249990,0,0);-ms-transform:matrix(0.290433,-0.002614,0.002250,0.249990,0,0);-webkit-transform:matrix(0.290433,-0.002614,0.002250,0.249990,0,0);}
.m24_c00290{transform:matrix(0.291457,-0.003206,0.002750,0.249985,0,0);-ms-transform:matrix(0.291457,-0.003206,0.002750,0.249985,0,0);-webkit-transform:matrix(0.291457,-0.003206,0.002750,0.249985,0,0);}
.m3a_c00290{transform:matrix(0.291818,-0.002626,0.002250,0.249990,0,0);-ms-transform:matrix(0.291818,-0.002626,0.002250,0.249990,0,0);-webkit-transform:matrix(0.291818,-0.002626,0.002250,0.249990,0,0);}
.m2e_c00290{transform:matrix(0.292137,-0.003214,0.002750,0.249985,0,0);-ms-transform:matrix(0.292137,-0.003214,0.002750,0.249985,0,0);-webkit-transform:matrix(0.292137,-0.003214,0.002750,0.249985,0,0);}
.m55_c00290{transform:matrix(0.292828,-0.002635,0.002250,0.249990,0,0);-ms-transform:matrix(0.292828,-0.002635,0.002250,0.249990,0,0);-webkit-transform:matrix(0.292828,-0.002635,0.002250,0.249990,0,0);}
.m1c_c00290{transform:matrix(0.293675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293675,0.000000,0.000000,0.250000,0,0);}
.m23_c00290{transform:matrix(0.294437,-0.003239,0.002750,0.249985,0,0);-ms-transform:matrix(0.294437,-0.003239,0.002750,0.249985,0,0);-webkit-transform:matrix(0.294437,-0.003239,0.002750,0.249985,0,0);}
.m28_c00290{transform:matrix(0.294557,-0.003240,0.002750,0.249985,0,0);-ms-transform:matrix(0.294557,-0.003240,0.002750,0.249985,0,0);-webkit-transform:matrix(0.294557,-0.003240,0.002750,0.249985,0,0);}
.m13_c00290{transform:matrix(0.295523,-0.002660,0.002250,0.249990,0,0);-ms-transform:matrix(0.295523,-0.002660,0.002250,0.249990,0,0);-webkit-transform:matrix(0.295523,-0.002660,0.002250,0.249990,0,0);}
.m5a_c00290{transform:matrix(0.297203,-0.002675,0.002250,0.249990,0,0);-ms-transform:matrix(0.297203,-0.002675,0.002250,0.249990,0,0);-webkit-transform:matrix(0.297203,-0.002675,0.002250,0.249990,0,0);}
.m4d_c00290{transform:matrix(0.297488,-0.002677,0.002250,0.249990,0,0);-ms-transform:matrix(0.297488,-0.002677,0.002250,0.249990,0,0);-webkit-transform:matrix(0.297488,-0.002677,0.002250,0.249990,0,0);}
.m56_c00290{transform:matrix(0.298303,-0.002685,0.002250,0.249990,0,0);-ms-transform:matrix(0.298303,-0.002685,0.002250,0.249990,0,0);-webkit-transform:matrix(0.298303,-0.002685,0.002250,0.249990,0,0);}
.m53_c00290{transform:matrix(0.299243,-0.002693,0.002250,0.249990,0,0);-ms-transform:matrix(0.299243,-0.002693,0.002250,0.249990,0,0);-webkit-transform:matrix(0.299243,-0.002693,0.002250,0.249990,0,0);}
.m1f_c00290{transform:matrix(0.299627,-0.003296,0.002750,0.249985,0,0);-ms-transform:matrix(0.299627,-0.003296,0.002750,0.249985,0,0);-webkit-transform:matrix(0.299627,-0.003296,0.002750,0.249985,0,0);}
.m29_c00290{transform:matrix(0.300877,-0.003310,0.002750,0.249985,0,0);-ms-transform:matrix(0.300877,-0.003310,0.002750,0.249985,0,0);-webkit-transform:matrix(0.300877,-0.003310,0.002750,0.249985,0,0);}
.m92_c00290{transform:matrix(0.301303,-0.002109,0.001750,0.249994,0,0);-ms-transform:matrix(0.301303,-0.002109,0.001750,0.249994,0,0);-webkit-transform:matrix(0.301303,-0.002109,0.001750,0.249994,0,0);}
.m52_c00290{transform:matrix(0.301958,-0.002718,0.002250,0.249990,0,0);-ms-transform:matrix(0.301958,-0.002718,0.002250,0.249990,0,0);-webkit-transform:matrix(0.301958,-0.002718,0.002250,0.249990,0,0);}
.m91_c00290{transform:matrix(0.301993,-0.002114,0.001750,0.249994,0,0);-ms-transform:matrix(0.301993,-0.002114,0.001750,0.249994,0,0);-webkit-transform:matrix(0.301993,-0.002114,0.001750,0.249994,0,0);}
.m15_c00290{transform:matrix(0.302518,-0.002723,0.002250,0.249990,0,0);-ms-transform:matrix(0.302518,-0.002723,0.002250,0.249990,0,0);-webkit-transform:matrix(0.302518,-0.002723,0.002250,0.249990,0,0);}
.m1a_c00290{transform:matrix(0.303590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303590,0.000000,0.000000,0.250000,0,0);}
.m10_c00290{transform:matrix(0.305915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305915,0.000000,0.000000,0.250000,0,0);}
.m17_c00290{transform:matrix(0.306653,-0.002760,0.002250,0.249990,0,0);-ms-transform:matrix(0.306653,-0.002760,0.002250,0.249990,0,0);-webkit-transform:matrix(0.306653,-0.002760,0.002250,0.249990,0,0);}
.m21_c00290{transform:matrix(0.306781,-0.003375,0.002750,0.249985,0,0);-ms-transform:matrix(0.306781,-0.003375,0.002750,0.249985,0,0);-webkit-transform:matrix(0.306781,-0.003375,0.002750,0.249985,0,0);}
.m57_c00290{transform:matrix(0.309107,-0.002782,0.002250,0.249990,0,0);-ms-transform:matrix(0.309107,-0.002782,0.002250,0.249990,0,0);-webkit-transform:matrix(0.309107,-0.002782,0.002250,0.249990,0,0);}
.m19_c00290{transform:matrix(0.311427,-0.002803,0.002250,0.249990,0,0);-ms-transform:matrix(0.311427,-0.002803,0.002250,0.249990,0,0);-webkit-transform:matrix(0.311427,-0.002803,0.002250,0.249990,0,0);}
.m9_c00290{transform:matrix(0.315170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315170,0.000000,0.000000,0.250000,0,0);}
.m62_c00290{transform:matrix(0.350892,-0.003509,0.002500,0.249988,0,0);-ms-transform:matrix(0.350892,-0.003509,0.002500,0.249988,0,0);-webkit-transform:matrix(0.350892,-0.003509,0.002500,0.249988,0,0);}
.m63_c00290{transform:matrix(0.351062,-0.003511,0.002500,0.249988,0,0);-ms-transform:matrix(0.351062,-0.003511,0.002500,0.249988,0,0);-webkit-transform:matrix(0.351062,-0.003511,0.002500,0.249988,0,0);}
.m25_c00290{transform:matrix(0.354859,-0.003903,0.002750,0.249985,0,0);-ms-transform:matrix(0.354859,-0.003903,0.002750,0.249985,0,0);-webkit-transform:matrix(0.354859,-0.003903,0.002750,0.249985,0,0);}
.m35_c00290{transform:matrix(0.356545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356545,0.000000,0.000000,0.250000,0,0);}
.m8_c00290{transform:matrix(0.380130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380130,0.000000,0.000000,0.250000,0,0);}
.ma_c00290{transform:matrix(0.437885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437885,0.000000,0.000000,0.250000,0,0);}
.m36_c00290{transform:matrix(0.494250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494250,0.000000,0.000000,0.250000,0,0);}
.m3_c00290{transform:matrix(0.518310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518310,0.000000,0.000000,0.250000,0,0);}
.m1_c00290{transform:matrix(0.519755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519755,0.000000,0.000000,0.250000,0,0);}
.m0_c00290{transform:matrix(0.521355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521355,0.000000,0.000000,0.250000,0,0);}
.me_c00290{transform:matrix(0.531000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531000,0.000000,0.000000,0.250000,0,0);}
.m26_c00290{transform:matrix(0.583335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583335,0.000000,0.000000,0.250000,0,0);}
.m2_c00290{transform:matrix(0.620615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620615,0.000000,0.000000,0.250000,0,0);}
.m5_c00290{transform:matrix(0.622540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.622540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.622540,0.000000,0.000000,0.250000,0,0);}
.m6_c00290{transform:matrix(0.626210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.626210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.626210,0.000000,0.000000,0.250000,0,0);}
.v0_c00290{vertical-align:0.000000px;}
.ls0_c00290{letter-spacing:0.000000px;}
.sc__c00290{text-shadow:none;}
.sc0_c00290{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__c00290{-webkit-text-stroke:0px transparent;}
.sc0_c00290{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00290{word-spacing:0.000000px;}
.fc0_c00290{color:transparent;}
.fs9_c00290{font-size:24.000000px;}
.fs1_c00290{font-size:30.000000px;}
.fs0_c00290{font-size:36.000000px;}
.fs3_c00290{font-size:42.000000px;}
.fs8_c00290{font-size:60.003630px;}
.fs6_c00290{font-size:66.000000px;}
.fse_c00290{font-size:66.001617px;}
.fs5_c00290{font-size:66.002673px;}
.fs7_c00290{font-size:66.003993px;}
.fs2_c00290{font-size:72.000000px;}
.fs13_c00290{font-size:72.000900px;}
.fsc_c00290{font-size:72.001764px;}
.fsf_c00290{font-size:72.002304px;}
.fsd_c00290{font-size:72.002916px;}
.fsb_c00290{font-size:72.003600px;}
.fsa_c00290{font-size:72.004356px;}
.fs15_c00290{font-size:72.017422px;}
.fs4_c00290{font-size:78.000000px;}
.fs10_c00290{font-size:78.001404px;}
.fs11_c00290{font-size:78.001911px;}
.fs14_c00290{font-size:84.001050px;}
.fs12_c00290{font-size:84.002058px;}
.y0_c00290{bottom:0.000000px;}
.yd1_c00290{bottom:55.897500px;}
.yd2_c00290{bottom:57.584460px;}
.yd3_c00290{bottom:59.519910px;}
.yd4_c00290{bottom:60.301185px;}
.yd5_c00290{bottom:61.216044px;}
.yd6_c00290{bottom:63.863865px;}
.yd7_c00290{bottom:64.888614px;}
.yd8_c00290{bottom:65.790570px;}
.yd9_c00290{bottom:67.489509px;}
.y11_c00290{bottom:94.236000px;}
.ycf_c00290{bottom:95.380507px;}
.yce_c00290{bottom:95.380657px;}
.ycd_c00290{bottom:95.380815px;}
.yd0_c00290{bottom:95.380950px;}
.ycc_c00290{bottom:95.381115px;}
.ycb_c00290{bottom:95.381272px;}
.yca_c00290{bottom:95.381872px;}
.yc9_c00290{bottom:95.382472px;}
.yc7_c00290{bottom:95.382487px;}
.yc8_c00290{bottom:95.382780px;}
.y10_c00290{bottom:125.550000px;}
.yf_c00290{bottom:157.269000px;}
.ybe_c00290{bottom:159.030000px;}
.ybf_c00290{bottom:159.128550px;}
.yc0_c00290{bottom:159.398595px;}
.yc1_c00290{bottom:160.115370px;}
.yc2_c00290{bottom:160.444785px;}
.yc3_c00290{bottom:160.666252px;}
.yc4_c00290{bottom:160.832340px;}
.yc5_c00290{bottom:161.434410px;}
.yc6_c00290{bottom:161.615310px;}
.ye_c00290{bottom:190.476000px;}
.ybd_c00290{bottom:191.736000px;}
.yd_c00290{bottom:220.689000px;}
.ybc_c00290{bottom:223.994607px;}
.ybb_c00290{bottom:223.995288px;}
.yba_c00290{bottom:223.995918px;}
.yb8_c00290{bottom:223.996070px;}
.yb9_c00290{bottom:223.996089px;}
.yb7_c00290{bottom:223.996500px;}
.yb6_c00290{bottom:223.997121px;}
.yb5_c00290{bottom:223.997481px;}
.yc_c00290{bottom:251.767500px;}
.yac_c00290{bottom:252.990000px;}
.yad_c00290{bottom:253.594853px;}
.yae_c00290{bottom:253.904896px;}
.yaf_c00290{bottom:254.685435px;}
.yb0_c00290{bottom:254.830944px;}
.yb1_c00290{bottom:255.356427px;}
.yb2_c00290{bottom:255.596426px;}
.yb3_c00290{bottom:255.825189px;}
.yb4_c00290{bottom:256.677558px;}
.yaa_c00290{bottom:286.553778px;}
.ya7_c00290{bottom:286.553796px;}
.ya9_c00290{bottom:286.553907px;}
.ya6_c00290{bottom:286.553925px;}
.ya8_c00290{bottom:286.554327px;}
.yab_c00290{bottom:286.554429px;}
.y9e_c00290{bottom:317.250000px;}
.y9f_c00290{bottom:317.839725px;}
.ya0_c00290{bottom:318.578490px;}
.ya1_c00290{bottom:319.287924px;}
.ya2_c00290{bottom:319.550508px;}
.ya3_c00290{bottom:320.212980px;}
.ya4_c00290{bottom:320.478732px;}
.ya5_c00290{bottom:320.669937px;}
.y9a_c00290{bottom:349.411548px;}
.y9b_c00290{bottom:349.411596px;}
.y9d_c00290{bottom:349.411848px;}
.y9c_c00290{bottom:349.412244px;}
.yb_c00290{bottom:379.080000px;}
.y91_c00290{bottom:380.971500px;}
.y92_c00290{bottom:381.669120px;}
.y93_c00290{bottom:382.032036px;}
.y94_c00290{bottom:382.552608px;}
.y95_c00290{bottom:382.915512px;}
.y96_c00290{bottom:383.081808px;}
.y97_c00290{bottom:383.712024px;}
.y98_c00290{bottom:384.040992px;}
.y99_c00290{bottom:385.533516px;}
.ya_c00290{bottom:411.090000px;}
.y8b_c00290{bottom:413.099455px;}
.y8c_c00290{bottom:413.551050px;}
.y8d_c00290{bottom:414.076617px;}
.y8e_c00290{bottom:414.399891px;}
.y8f_c00290{bottom:415.240899px;}
.y90_c00290{bottom:416.095273px;}
.y81_c00290{bottom:445.500000px;}
.y82_c00290{bottom:445.806170px;}
.y83_c00290{bottom:446.110501px;}
.y84_c00290{bottom:446.567881px;}
.y85_c00290{bottom:446.896763px;}
.y86_c00290{bottom:447.040402px;}
.y87_c00290{bottom:447.563975px;}
.y88_c00290{bottom:447.968466px;}
.y89_c00290{bottom:448.802019px;}
.y8a_c00290{bottom:449.648718px;}
.y9_c00290{bottom:475.326000px;}
.y76_c00290{bottom:477.361500px;}
.y77_c00290{bottom:477.548516px;}
.y78_c00290{bottom:478.236313px;}
.y79_c00290{bottom:479.341964px;}
.y7a_c00290{bottom:479.526630px;}
.y7b_c00290{bottom:480.235501px;}
.y7c_c00290{bottom:480.605658px;}
.y7d_c00290{bottom:480.996874px;}
.y7e_c00290{bottom:481.393032px;}
.y7f_c00290{bottom:481.801231px;}
.y80_c00290{bottom:482.306712px;}
.y75_c00290{bottom:509.054445px;}
.y74_c00290{bottom:509.055126px;}
.y73_c00290{bottom:509.055687px;}
.y8_c00290{bottom:538.525500px;}
.y69_c00290{bottom:539.460000px;}
.y6a_c00290{bottom:539.637681px;}
.y6b_c00290{bottom:540.798194px;}
.y6c_c00290{bottom:541.397313px;}
.y6d_c00290{bottom:541.641155px;}
.y6e_c00290{bottom:542.255226px;}
.y6f_c00290{bottom:542.485943px;}
.y70_c00290{bottom:542.710916px;}
.y71_c00290{bottom:543.247644px;}
.y72_c00290{bottom:543.483862px;}
.y67_c00290{bottom:570.666390px;}
.y68_c00290{bottom:570.666975px;}
.y7_c00290{bottom:601.005000px;}
.y5e_c00290{bottom:601.291500px;}
.y5f_c00290{bottom:601.499340px;}
.y60_c00290{bottom:602.285460px;}
.y61_c00290{bottom:602.498535px;}
.y62_c00290{bottom:603.581295px;}
.y63_c00290{bottom:604.685190px;}
.y64_c00290{bottom:605.128455px;}
.y65_c00290{bottom:606.003135px;}
.y66_c00290{bottom:606.543300px;}
.y5d_c00290{bottom:633.000000px;}
.y6_c00290{bottom:663.915000px;}
.y54_c00290{bottom:665.551500px;}
.y55_c00290{bottom:666.829612px;}
.y56_c00290{bottom:667.130878px;}
.y57_c00290{bottom:667.422559px;}
.y58_c00290{bottom:668.312074px;}
.y59_c00290{bottom:669.132699px;}
.y5a_c00290{bottom:669.500385px;}
.y5b_c00290{bottom:670.190545px;}
.y5c_c00290{bottom:670.783533px;}
.y50_c00290{bottom:695.521901px;}
.y51_c00290{bottom:697.194213px;}
.y52_c00290{bottom:697.589740px;}
.y53_c00290{bottom:698.656359px;}
.y5_c00290{bottom:727.123500px;}
.y45_c00290{bottom:729.271500px;}
.y46_c00290{bottom:729.456085px;}
.y47_c00290{bottom:729.946756px;}
.y48_c00290{bottom:730.231080px;}
.y49_c00290{bottom:730.542417px;}
.y4a_c00290{bottom:731.716174px;}
.y4b_c00290{bottom:732.012405px;}
.y4c_c00290{bottom:732.408805px;}
.y4d_c00290{bottom:733.098939px;}
.y4e_c00290{bottom:733.407319px;}
.y4f_c00290{bottom:733.691967px;}
.y3f_c00290{bottom:761.443893px;}
.y40_c00290{bottom:761.444270px;}
.y41_c00290{bottom:761.444512px;}
.y44_c00290{bottom:761.444685px;}
.y43_c00290{bottom:761.445072px;}
.y42_c00290{bottom:761.445115px;}
.y4_c00290{bottom:791.640000px;}
.y34_c00290{bottom:793.531500px;}
.y35_c00290{bottom:793.815689px;}
.y36_c00290{bottom:794.418328px;}
.y37_c00290{bottom:795.198345px;}
.y38_c00290{bottom:795.400400px;}
.y39_c00290{bottom:795.997977px;}
.y3a_c00290{bottom:796.685640px;}
.y3b_c00290{bottom:797.077140px;}
.y3c_c00290{bottom:797.672490px;}
.y3d_c00290{bottom:798.063747px;}
.y3e_c00290{bottom:798.370008px;}
.y33_c00290{bottom:861.414000px;}
.y2e_c00290{bottom:886.949550px;}
.y2f_c00290{bottom:887.736814px;}
.y30_c00290{bottom:888.006171px;}
.y31_c00290{bottom:888.407781px;}
.y32_c00290{bottom:889.717260px;}
.y3_c00290{bottom:917.745000px;}
.y25_c00290{bottom:919.081500px;}
.y26_c00290{bottom:919.301198px;}
.y27_c00290{bottom:920.275654px;}
.y28_c00290{bottom:921.484412px;}
.y29_c00290{bottom:922.185001px;}
.y2a_c00290{bottom:922.440867px;}
.y2b_c00290{bottom:923.174440px;}
.y2c_c00290{bottom:923.905044px;}
.y2d_c00290{bottom:924.493335px;}
.y24_c00290{bottom:950.940000px;}
.y23_c00290{bottom:952.675134px;}
.y2_c00290{bottom:981.307500px;}
.y1b_c00290{bottom:982.531500px;}
.y1c_c00290{bottom:983.490464px;}
.y1d_c00290{bottom:983.844388px;}
.y1e_c00290{bottom:984.806223px;}
.y1f_c00290{bottom:985.059316px;}
.y20_c00290{bottom:987.099591px;}
.y21_c00290{bottom:987.586836px;}
.y22_c00290{bottom:988.436107px;}
.y1a_c00290{bottom:1015.306500px;}
.y1_c00290{bottom:1045.156500px;}
.y13_c00290{bottom:1047.061500px;}
.y14_c00290{bottom:1048.026196px;}
.y15_c00290{bottom:1048.434544px;}
.y16_c00290{bottom:1049.506134px;}
.y17_c00290{bottom:1049.907138px;}
.y18_c00290{bottom:1050.990918px;}
.y19_c00290{bottom:1051.285002px;}
.y12_c00290{bottom:1125.621000px;}
.hb_c00290{height:24.000000px;}
.h3_c00290{height:30.000000px;}
.h2_c00290{height:36.000000px;}
.h5_c00290{height:42.000000px;}
.ha_c00290{height:60.003630px;}
.h8_c00290{height:66.000000px;}
.h10_c00290{height:66.001617px;}
.h7_c00290{height:66.002673px;}
.h9_c00290{height:66.003993px;}
.h4_c00290{height:72.000000px;}
.h15_c00290{height:72.000900px;}
.he_c00290{height:72.001764px;}
.h11_c00290{height:72.002304px;}
.hf_c00290{height:72.002916px;}
.hd_c00290{height:72.003600px;}
.hc_c00290{height:72.004356px;}
.h17_c00290{height:72.017422px;}
.h6_c00290{height:78.000000px;}
.h12_c00290{height:78.001404px;}
.h13_c00290{height:78.001911px;}
.h16_c00290{height:84.001050px;}
.h14_c00290{height:84.002058px;}
.h1_c00290{height:1165.500000px;}
.h0_c00290{height:1165.800000px;}
.w0_c00290{width:915.000000px;}
.x0_c00290{left:0.000000px;}
.x1_c00290{left:141.750000px;}
.x2_c00290{left:142.830000px;}
.x3_c00290{left:145.260000px;}
.x4_c00290{left:146.880000px;}
.x5_c00290{left:147.960000px;}
.x6_c00290{left:149.040000px;}
.x7_c00290{left:150.120000px;}
.x8_c00290{left:152.010000px;}
.xa_c00290{left:153.090000px;}
.x9_c00290{left:197.370000px;}
.x4a_c00290{left:222.874500px;}
.x46_c00290{left:236.165940px;}
.x76_c00290{left:238.501370px;}
.x14_c00290{left:240.300000px;}
.xd_c00290{left:241.509000px;}
.x1e_c00290{left:243.418500px;}
.x3e_c00290{left:245.818500px;}
.x53_c00290{left:246.918000px;}
.x66_c00290{left:248.254500px;}
.x89_c00290{left:250.923000px;}
.x95_c00290{left:253.054500px;}
.x1f_c00290{left:263.391000px;}
.x3f_c00290{left:266.328000px;}
.x54_c00290{left:267.702000px;}
.x67_c00290{left:269.034000px;}
.x8d_c00290{left:272.429994px;}
.x30_c00290{left:275.221500px;}
.x3a_c00290{left:277.021965px;}
.x5b_c00290{left:278.374860px;}
.x6f_c00290{left:290.877000px;}
.x77_c00290{left:303.014869px;}
.x90_c00290{left:305.370000px;}
.x27_c00290{left:307.390490px;}
.x81_c00290{left:313.200120px;}
.x1d_c00290{left:318.066139px;}
.x40_c00290{left:320.847000px;}
.x96_c00290{left:326.773500px;}
.x16_c00290{left:328.713000px;}
.x28_c00290{left:329.831742px;}
.x70_c00290{left:334.353000px;}
.x7b_c00290{left:335.446500px;}
.x8a_c00290{left:337.330500px;}
.x9c_c00290{left:339.930900px;}
.x31_c00290{left:342.181500px;}
.x64_c00290{left:344.790333px;}
.x55_c00290{left:346.314000px;}
.xe_c00290{left:348.697500px;}
.x20_c00290{left:351.978000px;}
.x17_c00290{left:360.888000px;}
.x29_c00290{left:363.341379px;}
.x4b_c00290{left:364.887000px;}
.x56_c00290{left:367.621500px;}
.x86_c00290{left:369.904032px;}
.x47_c00290{left:375.474673px;}
.x78_c00290{left:378.095869px;}
.x15_c00290{left:381.780000px;}
.x41_c00290{left:387.031500px;}
.x91_c00290{left:392.040000px;}
.xf_c00290{left:394.069500px;}
.x4c_c00290{left:398.361000px;}
.x71_c00290{left:399.693000px;}
.xb_c00290{left:403.380000px;}
.x3b_c00290{left:406.626455px;}
.x48_c00290{left:408.421282px;}
.x92_c00290{left:415.260000px;}
.xc_c00290{left:425.250000px;}
.xa5_c00290{left:427.152000px;}
.x32_c00290{left:428.850000px;}
.x4d_c00290{left:430.770000px;}
.x5c_c00290{left:433.725000px;}
.x87_c00290{left:435.244881px;}
.x9d_c00290{left:437.671845px;}
.x3c_c00290{left:441.457776px;}
.x72_c00290{left:446.676000px;}
.x18_c00290{left:448.327500px;}
.x33_c00290{left:451.300500px;}
.x88_c00290{left:457.925700px;}
.x21_c00290{left:461.865000px;}
.x65_c00290{left:467.913371px;}
.x82_c00290{left:469.804140px;}
.x19_c00290{left:471.336000px;}
.x2a_c00290{left:472.429175px;}
.x57_c00290{left:475.897500px;}
.x93_c00290{left:480.870000px;}
.x9e_c00290{left:484.653023px;}
.x68_c00290{left:488.824500px;}
.x7c_c00290{left:491.245500px;}
.x8b_c00290{left:493.128000px;}
.x49_c00290{left:497.265379px;}
.x9f_c00290{left:504.633525px;}
.x3d_c00290{left:508.420203px;}
.x7d_c00290{left:512.032500px;}
.x10_c00290{left:513.135000px;}
.x34_c00290{left:517.698000px;}
.x5d_c00290{left:519.313500px;}
.x22_c00290{left:525.555000px;}
.x4e_c00290{left:529.605000px;}
.x97_c00290{left:536.011500px;}
.x73_c00290{left:541.992000px;}
.x79_c00290{left:544.421869px;}
.x23_c00290{left:548.815500px;}
.x42_c00290{left:550.363500px;}
.x5e_c00290{left:554.148000px;}
.x11_c00290{left:557.691000px;}
.x69_c00290{left:567.588000px;}
.x98_c00290{left:580.305000px;}
.x58_c00290{left:586.287000px;}
.x83_c00290{left:588.403500px;}
.x8e_c00290{left:589.416534px;}
.x7e_c00290{left:590.809500px;}
.x35_c00290{left:594.105000px;}
.x74_c00290{left:599.776500px;}
.xa0_c00290{left:602.104462px;}
.x6a_c00290{left:608.716500px;}
.x8f_c00290{left:611.827636px;}
.x99_c00290{left:613.522500px;}
.x24_c00290{left:615.504000px;}
.x4f_c00290{left:620.785500px;}
.x8c_c00290{left:623.269500px;}
.xa6_c00290{left:624.604500px;}
.x59_c00290{left:630.613500px;}
.x7f_c00290{left:631.930500px;}
.x36_c00290{left:637.605000px;}
.x5f_c00290{left:641.872500px;}
.xa1_c00290{left:645.845558px;}
.x6b_c00290{left:652.185000px;}
.x1a_c00290{left:656.815500px;}
.x50_c00290{left:661.639500px;}
.x7a_c00290{left:666.475369px;}
.x43_c00290{left:671.089500px;}
.x60_c00290{left:674.832000px;}
.x12_c00290{left:678.111000px;}
.x94_c00290{left:680.130000px;}
.x25_c00290{left:681.922500px;}
.x6c_c00290{left:696.202500px;}
.x1b_c00290{left:701.110500px;}
.x37_c00290{left:703.755000px;}
.x44_c00290{left:705.354000px;}
.x61_c00290{left:706.971000px;}
.x13_c00290{left:710.787000px;}
.xa7_c00290{left:712.182000px;}
.x2b_c00290{left:719.010000px;}
.xa2_c00290{left:724.416023px;}
.x2c_c00290{left:727.920000px;}
.x9a_c00290{left:733.936500px;}
.x26_c00290{left:735.403500px;}
.x45_c00290{left:736.981500px;}
.x51_c00290{left:738.324000px;}
.x6d_c00290{left:741.558000px;}
.x84_c00290{left:742.579500px;}
.x38_c00290{left:747.228000px;}
.xa3_c00290{left:757.086840px;}
.x9b_c00290{left:770.116500px;}
.x5a_c00290{left:772.098000px;}
.x1c_c00290{left:778.317000px;}
.x2d_c00290{left:780.030000px;}
.x39_c00290{left:781.257000px;}
.x62_c00290{left:783.646500px;}
.x85_c00290{left:786.871500px;}
.xa8_c00290{left:789.406500px;}
.x6e_c00290{left:797.722500px;}
.x52_c00290{left:804.211500px;}
.x63_c00290{left:817.392000px;}
.x80_c00290{left:818.496000px;}
.x2e_c00290{left:837.810000px;}
.x75_c00290{left:839.812500px;}
.xa4_c00290{left:845.377545px;}
.x2f_c00290{left:848.340000px;}
@media print{
.v0_c00290{vertical-align:0.000000pt;}
.ls0_c00290{letter-spacing:0.000000pt;}
.ws0_c00290{word-spacing:0.000000pt;}
.fs9_c00290{font-size:21.333333pt;}
.fs1_c00290{font-size:26.666667pt;}
.fs0_c00290{font-size:32.000000pt;}
.fs3_c00290{font-size:37.333333pt;}
.fs8_c00290{font-size:53.336560pt;}
.fs6_c00290{font-size:58.666667pt;}
.fse_c00290{font-size:58.668104pt;}
.fs5_c00290{font-size:58.669043pt;}
.fs7_c00290{font-size:58.670216pt;}
.fs2_c00290{font-size:64.000000pt;}
.fs13_c00290{font-size:64.000800pt;}
.fsc_c00290{font-size:64.001568pt;}
.fsf_c00290{font-size:64.002048pt;}
.fsd_c00290{font-size:64.002592pt;}
.fsb_c00290{font-size:64.003200pt;}
.fsa_c00290{font-size:64.003872pt;}
.fs15_c00290{font-size:64.015486pt;}
.fs4_c00290{font-size:69.333333pt;}
.fs10_c00290{font-size:69.334581pt;}
.fs11_c00290{font-size:69.335032pt;}
.fs14_c00290{font-size:74.667600pt;}
.fs12_c00290{font-size:74.668496pt;}
.y0_c00290{bottom:0.000000pt;}
.yd1_c00290{bottom:49.686667pt;}
.yd2_c00290{bottom:51.186187pt;}
.yd3_c00290{bottom:52.906587pt;}
.yd4_c00290{bottom:53.601053pt;}
.yd5_c00290{bottom:54.414261pt;}
.yd6_c00290{bottom:56.767880pt;}
.yd7_c00290{bottom:57.678768pt;}
.yd8_c00290{bottom:58.480507pt;}
.yd9_c00290{bottom:59.990675pt;}
.y11_c00290{bottom:83.765333pt;}
.ycf_c00290{bottom:84.782673pt;}
.yce_c00290{bottom:84.782807pt;}
.ycd_c00290{bottom:84.782947pt;}
.yd0_c00290{bottom:84.783067pt;}
.ycc_c00290{bottom:84.783213pt;}
.ycb_c00290{bottom:84.783353pt;}
.yca_c00290{bottom:84.783887pt;}
.yc9_c00290{bottom:84.784420pt;}
.yc7_c00290{bottom:84.784433pt;}
.yc8_c00290{bottom:84.784693pt;}
.y10_c00290{bottom:111.600000pt;}
.yf_c00290{bottom:139.794667pt;}
.ybe_c00290{bottom:141.360000pt;}
.ybf_c00290{bottom:141.447600pt;}
.yc0_c00290{bottom:141.687640pt;}
.yc1_c00290{bottom:142.324773pt;}
.yc2_c00290{bottom:142.617587pt;}
.yc3_c00290{bottom:142.814447pt;}
.yc4_c00290{bottom:142.962080pt;}
.yc5_c00290{bottom:143.497253pt;}
.yc6_c00290{bottom:143.658053pt;}
.ye_c00290{bottom:169.312000pt;}
.ybd_c00290{bottom:170.432000pt;}
.yd_c00290{bottom:196.168000pt;}
.ybc_c00290{bottom:199.106317pt;}
.ybb_c00290{bottom:199.106923pt;}
.yba_c00290{bottom:199.107483pt;}
.yb8_c00290{bottom:199.107617pt;}
.yb9_c00290{bottom:199.107635pt;}
.yb7_c00290{bottom:199.108000pt;}
.yb6_c00290{bottom:199.108552pt;}
.yb5_c00290{bottom:199.108872pt;}
.yc_c00290{bottom:223.793333pt;}
.yac_c00290{bottom:224.880000pt;}
.yad_c00290{bottom:225.417647pt;}
.yae_c00290{bottom:225.693241pt;}
.yaf_c00290{bottom:226.387053pt;}
.yb0_c00290{bottom:226.516395pt;}
.yb1_c00290{bottom:226.983491pt;}
.yb2_c00290{bottom:227.196823pt;}
.yb3_c00290{bottom:227.400168pt;}
.yb4_c00290{bottom:228.157829pt;}
.yaa_c00290{bottom:254.714469pt;}
.ya7_c00290{bottom:254.714485pt;}
.ya9_c00290{bottom:254.714584pt;}
.ya6_c00290{bottom:254.714600pt;}
.ya8_c00290{bottom:254.714957pt;}
.yab_c00290{bottom:254.715048pt;}
.y9e_c00290{bottom:282.000000pt;}
.y9f_c00290{bottom:282.524200pt;}
.ya0_c00290{bottom:283.180880pt;}
.ya1_c00290{bottom:283.811488pt;}
.ya2_c00290{bottom:284.044896pt;}
.ya3_c00290{bottom:284.633760pt;}
.ya4_c00290{bottom:284.869984pt;}
.ya5_c00290{bottom:285.039944pt;}
.y9a_c00290{bottom:310.588043pt;}
.y9b_c00290{bottom:310.588085pt;}
.y9d_c00290{bottom:310.588309pt;}
.y9c_c00290{bottom:310.588661pt;}
.yb_c00290{bottom:336.960000pt;}
.y91_c00290{bottom:338.641333pt;}
.y92_c00290{bottom:339.261440pt;}
.y93_c00290{bottom:339.584032pt;}
.y94_c00290{bottom:340.046763pt;}
.y95_c00290{bottom:340.369344pt;}
.y96_c00290{bottom:340.517163pt;}
.y97_c00290{bottom:341.077355pt;}
.y98_c00290{bottom:341.369771pt;}
.y99_c00290{bottom:342.696459pt;}
.ya_c00290{bottom:365.413333pt;}
.y8b_c00290{bottom:367.199516pt;}
.y8c_c00290{bottom:367.600933pt;}
.y8d_c00290{bottom:368.068104pt;}
.y8e_c00290{bottom:368.355459pt;}
.y8f_c00290{bottom:369.103021pt;}
.y90_c00290{bottom:369.862465pt;}
.y81_c00290{bottom:396.000000pt;}
.y82_c00290{bottom:396.272151pt;}
.y83_c00290{bottom:396.542668pt;}
.y84_c00290{bottom:396.949228pt;}
.y85_c00290{bottom:397.241567pt;}
.y86_c00290{bottom:397.369247pt;}
.y87_c00290{bottom:397.834644pt;}
.y88_c00290{bottom:398.194192pt;}
.y89_c00290{bottom:398.935128pt;}
.y8a_c00290{bottom:399.687749pt;}
.y9_c00290{bottom:422.512000pt;}
.y76_c00290{bottom:424.321333pt;}
.y77_c00290{bottom:424.487569pt;}
.y78_c00290{bottom:425.098945pt;}
.y79_c00290{bottom:426.081745pt;}
.y7a_c00290{bottom:426.245893pt;}
.y7b_c00290{bottom:426.876001pt;}
.y7c_c00290{bottom:427.205029pt;}
.y7d_c00290{bottom:427.552777pt;}
.y7e_c00290{bottom:427.904917pt;}
.y7f_c00290{bottom:428.267761pt;}
.y80_c00290{bottom:428.717077pt;}
.y75_c00290{bottom:452.492840pt;}
.y74_c00290{bottom:452.493445pt;}
.y73_c00290{bottom:452.493944pt;}
.y8_c00290{bottom:478.689333pt;}
.y69_c00290{bottom:479.520000pt;}
.y6a_c00290{bottom:479.677939pt;}
.y6b_c00290{bottom:480.709505pt;}
.y6c_c00290{bottom:481.242056pt;}
.y6d_c00290{bottom:481.458804pt;}
.y6e_c00290{bottom:482.004645pt;}
.y6f_c00290{bottom:482.209727pt;}
.y70_c00290{bottom:482.409703pt;}
.y71_c00290{bottom:482.886795pt;}
.y72_c00290{bottom:483.096767pt;}
.y67_c00290{bottom:507.259013pt;}
.y68_c00290{bottom:507.259533pt;}
.y7_c00290{bottom:534.226667pt;}
.y5e_c00290{bottom:534.481333pt;}
.y5f_c00290{bottom:534.666080pt;}
.y60_c00290{bottom:535.364853pt;}
.y61_c00290{bottom:535.554253pt;}
.y62_c00290{bottom:536.516707pt;}
.y63_c00290{bottom:537.497947pt;}
.y64_c00290{bottom:537.891960pt;}
.y65_c00290{bottom:538.669453pt;}
.y66_c00290{bottom:539.149600pt;}
.y5d_c00290{bottom:562.666667pt;}
.y6_c00290{bottom:590.146667pt;}
.y54_c00290{bottom:591.601333pt;}
.y55_c00290{bottom:592.737433pt;}
.y56_c00290{bottom:593.005225pt;}
.y57_c00290{bottom:593.264497pt;}
.y58_c00290{bottom:594.055177pt;}
.y59_c00290{bottom:594.784621pt;}
.y5a_c00290{bottom:595.111453pt;}
.y5b_c00290{bottom:595.724929pt;}
.y5c_c00290{bottom:596.252029pt;}
.y50_c00290{bottom:618.241689pt;}
.y51_c00290{bottom:619.728189pt;}
.y52_c00290{bottom:620.079769pt;}
.y53_c00290{bottom:621.027875pt;}
.y5_c00290{bottom:646.332000pt;}
.y45_c00290{bottom:648.241333pt;}
.y46_c00290{bottom:648.405409pt;}
.y47_c00290{bottom:648.841561pt;}
.y48_c00290{bottom:649.094293pt;}
.y49_c00290{bottom:649.371037pt;}
.y4a_c00290{bottom:650.414377pt;}
.y4b_c00290{bottom:650.677693pt;}
.y4c_c00290{bottom:651.030049pt;}
.y4d_c00290{bottom:651.643501pt;}
.y4e_c00290{bottom:651.917617pt;}
.y4f_c00290{bottom:652.170637pt;}
.y3f_c00290{bottom:676.839016pt;}
.y40_c00290{bottom:676.839351pt;}
.y41_c00290{bottom:676.839567pt;}
.y44_c00290{bottom:676.839720pt;}
.y43_c00290{bottom:676.840064pt;}
.y42_c00290{bottom:676.840103pt;}
.y4_c00290{bottom:703.680000pt;}
.y34_c00290{bottom:705.361333pt;}
.y35_c00290{bottom:705.613945pt;}
.y36_c00290{bottom:706.149625pt;}
.y37_c00290{bottom:706.842973pt;}
.y38_c00290{bottom:707.022577pt;}
.y39_c00290{bottom:707.553757pt;}
.y3a_c00290{bottom:708.165013pt;}
.y3b_c00290{bottom:708.513013pt;}
.y3c_c00290{bottom:709.042213pt;}
.y3d_c00290{bottom:709.389997pt;}
.y3e_c00290{bottom:709.662229pt;}
.y33_c00290{bottom:765.701333pt;}
.y2e_c00290{bottom:788.399600pt;}
.y2f_c00290{bottom:789.099391pt;}
.y30_c00290{bottom:789.338819pt;}
.y31_c00290{bottom:789.695805pt;}
.y32_c00290{bottom:790.859787pt;}
.y3_c00290{bottom:815.773333pt;}
.y25_c00290{bottom:816.961333pt;}
.y26_c00290{bottom:817.156620pt;}
.y27_c00290{bottom:818.022804pt;}
.y28_c00290{bottom:819.097255pt;}
.y29_c00290{bottom:819.720001pt;}
.y2a_c00290{bottom:819.947437pt;}
.y2b_c00290{bottom:820.599503pt;}
.y2c_c00290{bottom:821.248928pt;}
.y2d_c00290{bottom:821.771853pt;}
.y24_c00290{bottom:845.280000pt;}
.y23_c00290{bottom:846.822341pt;}
.y2_c00290{bottom:872.273333pt;}
.y1b_c00290{bottom:873.361333pt;}
.y1c_c00290{bottom:874.213745pt;}
.y1d_c00290{bottom:874.528345pt;}
.y1e_c00290{bottom:875.383309pt;}
.y1f_c00290{bottom:875.608281pt;}
.y20_c00290{bottom:877.421859pt;}
.y21_c00290{bottom:877.854965pt;}
.y22_c00290{bottom:878.609873pt;}
.y1a_c00290{bottom:902.494667pt;}
.y1_c00290{bottom:929.028000pt;}
.y13_c00290{bottom:930.721333pt;}
.y14_c00290{bottom:931.578841pt;}
.y15_c00290{bottom:931.941817pt;}
.y16_c00290{bottom:932.894341pt;}
.y17_c00290{bottom:933.250789pt;}
.y18_c00290{bottom:934.214149pt;}
.y19_c00290{bottom:934.475557pt;}
.y12_c00290{bottom:1000.552000pt;}
.hb_c00290{height:21.333333pt;}
.h3_c00290{height:26.666667pt;}
.h2_c00290{height:32.000000pt;}
.h5_c00290{height:37.333333pt;}
.ha_c00290{height:53.336560pt;}
.h8_c00290{height:58.666667pt;}
.h10_c00290{height:58.668104pt;}
.h7_c00290{height:58.669043pt;}
.h9_c00290{height:58.670216pt;}
.h4_c00290{height:64.000000pt;}
.h15_c00290{height:64.000800pt;}
.he_c00290{height:64.001568pt;}
.h11_c00290{height:64.002048pt;}
.hf_c00290{height:64.002592pt;}
.hd_c00290{height:64.003200pt;}
.hc_c00290{height:64.003872pt;}
.h17_c00290{height:64.015486pt;}
.h6_c00290{height:69.333333pt;}
.h12_c00290{height:69.334581pt;}
.h13_c00290{height:69.335032pt;}
.h16_c00290{height:74.667600pt;}
.h14_c00290{height:74.668496pt;}
.h1_c00290{height:1036.000000pt;}
.h0_c00290{height:1036.266667pt;}
.w0_c00290{width:813.333333pt;}
.x0_c00290{left:0.000000pt;}
.x1_c00290{left:126.000000pt;}
.x2_c00290{left:126.960000pt;}
.x3_c00290{left:129.120000pt;}
.x4_c00290{left:130.560000pt;}
.x5_c00290{left:131.520000pt;}
.x6_c00290{left:132.480000pt;}
.x7_c00290{left:133.440000pt;}
.x8_c00290{left:135.120000pt;}
.xa_c00290{left:136.080000pt;}
.x9_c00290{left:175.440000pt;}
.x4a_c00290{left:198.110667pt;}
.x46_c00290{left:209.925280pt;}
.x76_c00290{left:212.001217pt;}
.x14_c00290{left:213.600000pt;}
.xd_c00290{left:214.674667pt;}
.x1e_c00290{left:216.372000pt;}
.x3e_c00290{left:218.505333pt;}
.x53_c00290{left:219.482667pt;}
.x66_c00290{left:220.670667pt;}
.x89_c00290{left:223.042667pt;}
.x95_c00290{left:224.937333pt;}
.x1f_c00290{left:234.125333pt;}
.x3f_c00290{left:236.736000pt;}
.x54_c00290{left:237.957333pt;}
.x67_c00290{left:239.141333pt;}
.x8d_c00290{left:242.159995pt;}
.x30_c00290{left:244.641333pt;}
.x3a_c00290{left:246.241747pt;}
.x5b_c00290{left:247.444320pt;}
.x6f_c00290{left:258.557333pt;}
.x77_c00290{left:269.346551pt;}
.x90_c00290{left:271.440000pt;}
.x27_c00290{left:273.235991pt;}
.x81_c00290{left:278.400107pt;}
.x1d_c00290{left:282.725457pt;}
.x40_c00290{left:285.197333pt;}
.x96_c00290{left:290.465333pt;}
.x16_c00290{left:292.189333pt;}
.x28_c00290{left:293.183771pt;}
.x70_c00290{left:297.202667pt;}
.x7b_c00290{left:298.174667pt;}
.x8a_c00290{left:299.849333pt;}
.x9c_c00290{left:302.160800pt;}
.x31_c00290{left:304.161333pt;}
.x64_c00290{left:306.480296pt;}
.x55_c00290{left:307.834667pt;}
.xe_c00290{left:309.953333pt;}
.x20_c00290{left:312.869333pt;}
.x17_c00290{left:320.789333pt;}
.x29_c00290{left:322.970115pt;}
.x4b_c00290{left:324.344000pt;}
.x56_c00290{left:326.774667pt;}
.x86_c00290{left:328.803584pt;}
.x47_c00290{left:333.755265pt;}
.x78_c00290{left:336.085217pt;}
.x15_c00290{left:339.360000pt;}
.x41_c00290{left:344.028000pt;}
.x91_c00290{left:348.480000pt;}
.xf_c00290{left:350.284000pt;}
.x4c_c00290{left:354.098667pt;}
.x71_c00290{left:355.282667pt;}
.xb_c00290{left:358.560000pt;}
.x3b_c00290{left:361.445737pt;}
.x48_c00290{left:363.041140pt;}
.x92_c00290{left:369.120000pt;}
.xc_c00290{left:378.000000pt;}
.xa5_c00290{left:379.690667pt;}
.x32_c00290{left:381.200000pt;}
.x4d_c00290{left:382.906667pt;}
.x5c_c00290{left:385.533333pt;}
.x87_c00290{left:386.884339pt;}
.x9d_c00290{left:389.041640pt;}
.x3c_c00290{left:392.406912pt;}
.x72_c00290{left:397.045333pt;}
.x18_c00290{left:398.513333pt;}
.x33_c00290{left:401.156000pt;}
.x88_c00290{left:407.045067pt;}
.x21_c00290{left:410.546667pt;}
.x65_c00290{left:415.922996pt;}
.x82_c00290{left:417.603680pt;}
.x19_c00290{left:418.965333pt;}
.x2a_c00290{left:419.937044pt;}
.x57_c00290{left:423.020000pt;}
.x93_c00290{left:427.440000pt;}
.x9e_c00290{left:430.802687pt;}
.x68_c00290{left:434.510667pt;}
.x7c_c00290{left:436.662667pt;}
.x8b_c00290{left:438.336000pt;}
.x49_c00290{left:442.013671pt;}
.x9f_c00290{left:448.563133pt;}
.x3d_c00290{left:451.929069pt;}
.x7d_c00290{left:455.140000pt;}
.x10_c00290{left:456.120000pt;}
.x34_c00290{left:460.176000pt;}
.x5d_c00290{left:461.612000pt;}
.x22_c00290{left:467.160000pt;}
.x4e_c00290{left:470.760000pt;}
.x97_c00290{left:476.454667pt;}
.x73_c00290{left:481.770667pt;}
.x79_c00290{left:483.930551pt;}
.x23_c00290{left:487.836000pt;}
.x42_c00290{left:489.212000pt;}
.x5e_c00290{left:492.576000pt;}
.x11_c00290{left:495.725333pt;}
.x69_c00290{left:504.522667pt;}
.x98_c00290{left:515.826667pt;}
.x58_c00290{left:521.144000pt;}
.x83_c00290{left:523.025333pt;}
.x8e_c00290{left:523.925808pt;}
.x7e_c00290{left:525.164000pt;}
.x35_c00290{left:528.093333pt;}
.x74_c00290{left:533.134667pt;}
.xa0_c00290{left:535.203967pt;}
.x6a_c00290{left:541.081333pt;}
.x8f_c00290{left:543.846788pt;}
.x99_c00290{left:545.353333pt;}
.x24_c00290{left:547.114667pt;}
.x4f_c00290{left:551.809333pt;}
.x8c_c00290{left:554.017333pt;}
.xa6_c00290{left:555.204000pt;}
.x59_c00290{left:560.545333pt;}
.x7f_c00290{left:561.716000pt;}
.x36_c00290{left:566.760000pt;}
.x5f_c00290{left:570.553333pt;}
.xa1_c00290{left:574.084940pt;}
.x6b_c00290{left:579.720000pt;}
.x1a_c00290{left:583.836000pt;}
.x50_c00290{left:588.124000pt;}
.x7a_c00290{left:592.422551pt;}
.x43_c00290{left:596.524000pt;}
.x60_c00290{left:599.850667pt;}
.x12_c00290{left:602.765333pt;}
.x94_c00290{left:604.560000pt;}
.x25_c00290{left:606.153333pt;}
.x6c_c00290{left:618.846667pt;}
.x1b_c00290{left:623.209333pt;}
.x37_c00290{left:625.560000pt;}
.x44_c00290{left:626.981333pt;}
.x61_c00290{left:628.418667pt;}
.x13_c00290{left:631.810667pt;}
.xa7_c00290{left:633.050667pt;}
.x2b_c00290{left:639.120000pt;}
.xa2_c00290{left:643.925353pt;}
.x2c_c00290{left:647.040000pt;}
.x9a_c00290{left:652.388000pt;}
.x26_c00290{left:653.692000pt;}
.x45_c00290{left:655.094667pt;}
.x51_c00290{left:656.288000pt;}
.x6d_c00290{left:659.162667pt;}
.x84_c00290{left:660.070667pt;}
.x38_c00290{left:664.202667pt;}
.xa3_c00290{left:672.966080pt;}
.x9b_c00290{left:684.548000pt;}
.x5a_c00290{left:686.309333pt;}
.x1c_c00290{left:691.837333pt;}
.x2d_c00290{left:693.360000pt;}
.x39_c00290{left:694.450667pt;}
.x62_c00290{left:696.574667pt;}
.x85_c00290{left:699.441333pt;}
.xa8_c00290{left:701.694667pt;}
.x6e_c00290{left:709.086667pt;}
.x52_c00290{left:714.854667pt;}
.x63_c00290{left:726.570667pt;}
.x80_c00290{left:727.552000pt;}
.x2e_c00290{left:744.720000pt;}
.x75_c00290{left:746.500000pt;}
.xa4_c00290{left:751.446707pt;}
.x2f_c00290{left:754.080000pt;}
}





/* 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_c00291 {
    display:none;
  }
  .loading-indicator_c00291.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00291 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_c00291 { 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_c00291" -> "#page-container .classname_c00291")
 */
.pf_c00291 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00291 { /* 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_c00291.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00291 { /* 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_c00291 { /* 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_c00291 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00291 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00291 {overflow:visible;}
  }
}
.c_c00291 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00291 { /* 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_c00291:after { /* webkit #35443 */
  content: '';
}
.t_c00291:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00291 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 */
}
.__c00291 { /* 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_c00291 { /* info for Javascript */
  display:none;
}
.l_c00291 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00291 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00291 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00291: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_c00291 {
    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_c00291.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00291.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_c00291 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00291{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00291;src:url('chunks/assets/font_c605e72f209fc835e906f064.woff2')format("woff");}.ff1_c00291{font-family:ff1_c00291;line-height:1.000000;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;}
.mb3_c00291{transform:matrix(0.017790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.017790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.017790,0.000000,0.000000,0.250000,0,0);}
.m3d_c00291{transform:matrix(0.030925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.030925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.030925,0.000000,0.000000,0.250000,0,0);}
.m3e_c00291{transform:matrix(0.033540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.033540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.033540,0.000000,0.000000,0.250000,0,0);}
.m41_c00291{transform:matrix(0.035575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.035575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.035575,0.000000,0.000000,0.250000,0,0);}
.m15_c00291{transform:matrix(0.037500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.037500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.037500,0.000000,0.000000,0.250000,0,0);}
.ma8_c00291{transform:matrix(0.040560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.040560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.040560,0.000000,0.000000,0.250000,0,0);}
.m1e_c00291{transform:matrix(0.042425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.042425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.042425,0.000000,0.000000,0.250000,0,0);}
.mb7_c00291{transform:matrix(0.043945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.043945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.043945,0.000000,0.000000,0.250000,0,0);}
.m20_c00291{transform:matrix(0.044720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.044720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.044720,0.000000,0.000000,0.250000,0,0);}
.m8e_c00291{transform:matrix(0.046385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.046385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.046385,0.000000,0.000000,0.250000,0,0);}
.mb1_c00291{transform:matrix(0.047730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.047730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.047730,0.000000,0.000000,0.250000,0,0);}
.m3c_c00291{transform:matrix(0.050310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.050310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.050310,0.000000,0.000000,0.250000,0,0);}
.m1_c00291{transform:matrix(0.054085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054085,0.000000,0.000000,0.250000,0,0);}
.md_c00291{transform:matrix(0.056250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.056250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.056250,0.000000,0.000000,0.250000,0,0);}
.m5a_c00291{transform:matrix(0.060585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060585,0.000000,0.000000,0.250000,0,0);}
.m14_c00291{transform:matrix(0.063640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.063640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.063640,0.000000,0.000000,0.250000,0,0);}
.m39_c00291{transform:matrix(0.065600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065600,0.000000,0.000000,0.250000,0,0);}
.m1a_c00291{transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);}
.m58_c00291{transform:matrix(0.075465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.075465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.075465,0.000000,0.000000,0.250000,0,0);}
.m5b_c00291{transform:matrix(0.079550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.079550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.079550,0.000000,0.000000,0.250000,0,0);}
.m40_c00291{transform:matrix(0.081125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.081125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.081125,0.000000,0.000000,0.250000,0,0);}
.m1c_c00291{transform:matrix(0.084855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084855,0.000000,0.000000,0.250000,0,0);}
.m36_c00291{transform:matrix(0.096775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096775,0.000000,0.000000,0.250000,0,0);}
.m8f_c00291{transform:matrix(0.114235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114235,0.000000,0.000000,0.250000,0,0);}
.m27_c00291{transform:matrix(0.120830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120830,0.000000,0.000000,0.250000,0,0);}
.m2f_c00291{transform:matrix(0.120935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120935,0.000000,0.000000,0.250000,0,0);}
.ma5_c00291{transform:matrix(0.122090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122090,0.000000,0.000000,0.250000,0,0);}
.m5c_c00291{transform:matrix(0.124145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124145,0.000000,0.000000,0.250000,0,0);}
.m81_c00291{transform:matrix(0.131195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131195,0.000000,0.000000,0.250000,0,0);}
.mc_c00291{transform:matrix(0.138295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138295,0.000000,0.000000,0.250000,0,0);}
.m0_c00291{transform:matrix(0.139830,0.025437,-0.044743,0.245963,0,0);-ms-transform:matrix(0.139830,0.025437,-0.044743,0.245963,0,0);-webkit-transform:matrix(0.139830,0.025437,-0.044743,0.245963,0,0);}
.m5e_c00291{transform:matrix(0.142300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142300,0.000000,0.000000,0.250000,0,0);}
.m86_c00291{transform:matrix(0.145625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145625,0.000000,0.000000,0.250000,0,0);}
.m55_c00291{transform:matrix(0.148490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148490,0.000000,0.000000,0.250000,0,0);}
.m63_c00291{transform:matrix(0.150415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150415,0.000000,0.000000,0.250000,0,0);}
.m67_c00291{transform:matrix(0.158215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158215,0.000000,0.000000,0.250000,0,0);}
.m54_c00291{transform:matrix(0.161555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161555,0.000000,0.000000,0.250000,0,0);}
.m93_c00291{transform:matrix(0.168540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168540,0.000000,0.000000,0.250000,0,0);}
.m11_c00291{transform:matrix(0.170035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170035,0.000000,0.000000,0.250000,0,0);}
.mf_c00291{transform:matrix(0.171725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171725,0.000000,0.000000,0.250000,0,0);}
.m12_c00291{transform:matrix(0.174445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174445,0.000000,0.000000,0.250000,0,0);}
.m3f_c00291{transform:matrix(0.174645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174645,0.000000,0.000000,0.250000,0,0);}
.ma4_c00291{transform:matrix(0.175570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175570,0.000000,0.000000,0.250000,0,0);}
.m38_c00291{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.me_c00291{transform:matrix(0.182635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182635,0.000000,0.000000,0.250000,0,0);}
.mc5_c00291{transform:matrix(0.183100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183100,0.000000,0.000000,0.250000,0,0);}
.m8_c00291{transform:matrix(0.185235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185235,0.000000,0.000000,0.250000,0,0);}
.ma9_c00291{transform:matrix(0.186220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186220,0.000000,0.000000,0.250000,0,0);}
.m5d_c00291{transform:matrix(0.187950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187950,0.000000,0.000000,0.250000,0,0);}
.ma2_c00291{transform:matrix(0.188410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188410,0.000000,0.000000,0.250000,0,0);}
.m6c_c00291{transform:matrix(0.193130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193130,0.000000,0.000000,0.250000,0,0);}
.mc9_c00291{transform:matrix(0.200300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200300,0.000000,0.000000,0.250000,0,0);}
.md4_c00291{transform:matrix(0.200490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200490,0.000000,0.000000,0.250000,0,0);}
.mb_c00291{transform:matrix(0.201245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201245,0.000000,0.000000,0.250000,0,0);}
.m4f_c00291{transform:matrix(0.204020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204020,0.000000,0.000000,0.250000,0,0);}
.mec_c00291{transform:matrix(0.206425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206425,0.000000,0.000000,0.250000,0,0);}
.m8d_c00291{transform:matrix(0.208925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208925,0.000000,0.000000,0.250000,0,0);}
.mc1_c00291{transform:matrix(0.212605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212605,0.000000,0.000000,0.250000,0,0);}
.m22_c00291{transform:matrix(0.214010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214010,0.000000,0.000000,0.250000,0,0);}
.maa_c00291{transform:matrix(0.214505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214505,0.000000,0.000000,0.250000,0,0);}
.m9b_c00291{transform:matrix(0.216335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216335,0.000000,0.000000,0.250000,0,0);}
.m44_c00291{transform:matrix(0.216400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216400,0.000000,0.000000,0.250000,0,0);}
.m3a_c00291{transform:matrix(0.221885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221885,0.000000,0.000000,0.250000,0,0);}
.m9c_c00291{transform:matrix(0.222880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222880,0.000000,0.000000,0.250000,0,0);}
.md5_c00291{transform:matrix(0.224580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224580,0.000000,0.000000,0.250000,0,0);}
.m94_c00291{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00291{transform:matrix(0.225625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225625,0.000000,0.000000,0.250000,0,0);}
.m6e_c00291{transform:matrix(0.234095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234095,0.000000,0.000000,0.250000,0,0);}
.md3_c00291{transform:matrix(0.235510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235510,0.000000,0.000000,0.250000,0,0);}
.ma6_c00291{transform:matrix(0.238385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238385,0.000000,0.000000,0.250000,0,0);}
.m25_c00291{transform:matrix(0.244180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244180,0.000000,0.000000,0.250000,0,0);}
.m84_c00291{transform:matrix(0.246020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246020,0.000000,0.000000,0.250000,0,0);}
.md2_c00291{transform:matrix(0.252390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252390,0.000000,0.000000,0.250000,0,0);}
.mbe_c00291{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.mb4_c00291{transform:matrix(0.260415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260415,0.000000,0.000000,0.250000,0,0);}
.m8c_c00291{transform:matrix(0.260890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260890,0.000000,0.000000,0.250000,0,0);}
.md0_c00291{transform:matrix(0.261965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261965,0.000000,0.000000,0.250000,0,0);}
.m26_c00291{transform:matrix(0.266270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266270,0.000000,0.000000,0.250000,0,0);}
.mf4_c00291{transform:matrix(0.269070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269070,0.000000,0.000000,0.250000,0,0);}
.mb6_c00291{transform:matrix(0.269880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269880,0.000000,0.000000,0.250000,0,0);}
.m37_c00291{transform:matrix(0.272335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272335,0.000000,0.000000,0.250000,0,0);}
.m24_c00291{transform:matrix(0.272945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272945,0.000000,0.000000,0.250000,0,0);}
.m6f_c00291{transform:matrix(0.275135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275135,0.000000,0.000000,0.250000,0,0);}
.mdb_c00291{transform:matrix(0.275160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275160,0.000000,0.000000,0.250000,0,0);}
.me8_c00291{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m59_c00291{transform:matrix(0.277855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277855,0.000000,0.000000,0.250000,0,0);}
.me1_c00291{transform:matrix(0.285100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285100,0.000000,0.000000,0.250000,0,0);}
.m2_c00291{transform:matrix(0.286530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286530,0.000000,0.000000,0.250000,0,0);}
.mbd_c00291{transform:matrix(0.287925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287925,0.000000,0.000000,0.250000,0,0);}
.m3_c00291{transform:matrix(0.292955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292955,0.000000,0.000000,0.250000,0,0);}
.m31_c00291{transform:matrix(0.295465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295465,0.000000,0.000000,0.250000,0,0);}
.mf3_c00291{transform:matrix(0.296620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296620,0.000000,0.000000,0.250000,0,0);}
.m77_c00291{transform:matrix(0.297175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297175,0.000000,0.000000,0.250000,0,0);}
.mef_c00291{transform:matrix(0.301080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301080,0.000000,0.000000,0.250000,0,0);}
.mba_c00291{transform:matrix(0.301315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301315,0.000000,0.000000,0.250000,0,0);}
.mdd_c00291{transform:matrix(0.303450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303450,0.000000,0.000000,0.250000,0,0);}
.m6a_c00291{transform:matrix(0.306755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306755,0.000000,0.000000,0.250000,0,0);}
.mc4_c00291{transform:matrix(0.308320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308320,0.000000,0.000000,0.250000,0,0);}
.md6_c00291{transform:matrix(0.310335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310335,0.000000,0.000000,0.250000,0,0);}
.m9a_c00291{transform:matrix(0.312410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312410,0.000000,0.000000,0.250000,0,0);}
.mab_c00291{transform:matrix(0.313390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313390,0.000000,0.000000,0.250000,0,0);}
.mae_c00291{transform:matrix(0.315355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315355,0.000000,0.000000,0.250000,0,0);}
.m1f_c00291{transform:matrix(0.317845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317845,0.000000,0.000000,0.250000,0,0);}
.md1_c00291{transform:matrix(0.319530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319530,0.000000,0.000000,0.250000,0,0);}
.m2c_c00291{transform:matrix(0.321995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321995,0.000000,0.000000,0.250000,0,0);}
.m16_c00291{transform:matrix(0.322150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322150,0.000000,0.000000,0.250000,0,0);}
.ma1_c00291{transform:matrix(0.325625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325625,0.000000,0.000000,0.250000,0,0);}
.me7_c00291{transform:matrix(0.328940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328940,0.000000,0.000000,0.250000,0,0);}
.mac_c00291{transform:matrix(0.336610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336610,0.000000,0.000000,0.250000,0,0);}
.me3_c00291{transform:matrix(0.342895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342895,0.000000,0.000000,0.250000,0,0);}
.mb2_c00291{transform:matrix(0.343450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343450,0.000000,0.000000,0.250000,0,0);}
.me4_c00291{transform:matrix(0.351460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351460,0.000000,0.000000,0.250000,0,0);}
.m6d_c00291{transform:matrix(0.352280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352280,0.000000,0.000000,0.250000,0,0);}
.mca_c00291{transform:matrix(0.355755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355755,0.000000,0.000000,0.250000,0,0);}
.ma7_c00291{transform:matrix(0.356390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356390,0.000000,0.000000,0.250000,0,0);}
.m7e_c00291{transform:matrix(0.356545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356545,0.000000,0.000000,0.250000,0,0);}
.m13_c00291{transform:matrix(0.357530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357530,0.000000,0.000000,0.250000,0,0);}
.m85_c00291{transform:matrix(0.358060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358060,0.000000,0.000000,0.250000,0,0);}
.m8b_c00291{transform:matrix(0.360175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360175,0.000000,0.000000,0.250000,0,0);}
.mf1_c00291{transform:matrix(0.365275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365275,0.000000,0.000000,0.250000,0,0);}
.md9_c00291{transform:matrix(0.367805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367805,0.000000,0.000000,0.250000,0,0);}
.mdc_c00291{transform:matrix(0.368725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368725,0.000000,0.000000,0.250000,0,0);}
.mb8_c00291{transform:matrix(0.371905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371905,0.000000,0.000000,0.250000,0,0);}
.ma_c00291{transform:matrix(0.372365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372365,0.000000,0.000000,0.250000,0,0);}
.me6_c00291{transform:matrix(0.373650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373650,0.000000,0.000000,0.250000,0,0);}
.m19_c00291{transform:matrix(0.382425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382425,0.000000,0.000000,0.250000,0,0);}
.m98_c00291{transform:matrix(0.392945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392945,0.000000,0.000000,0.250000,0,0);}
.md7_c00291{transform:matrix(0.394955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394955,0.000000,0.000000,0.250000,0,0);}
.m42_c00291{transform:matrix(0.395800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395800,0.000000,0.000000,0.250000,0,0);}
.md8_c00291{transform:matrix(0.396010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396010,0.000000,0.000000,0.250000,0,0);}
.m49_c00291{transform:matrix(0.409040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409040,0.000000,0.000000,0.250000,0,0);}
.m74_c00291{transform:matrix(0.412310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412310,0.000000,0.000000,0.250000,0,0);}
.m4e_c00291{transform:matrix(0.414880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414880,0.000000,0.000000,0.250000,0,0);}
.m75_c00291{transform:matrix(0.415965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415965,0.000000,0.000000,0.250000,0,0);}
.m73_c00291{transform:matrix(0.417255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417255,0.000000,0.000000,0.250000,0,0);}
.m8a_c00291{transform:matrix(0.424530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424530,0.000000,0.000000,0.250000,0,0);}
.mf0_c00291{transform:matrix(0.424855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424855,0.000000,0.000000,0.250000,0,0);}
.m62_c00291{transform:matrix(0.427520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427520,0.000000,0.000000,0.250000,0,0);}
.mda_c00291{transform:matrix(0.432285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432285,0.000000,0.000000,0.250000,0,0);}
.m9e_c00291{transform:matrix(0.432665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432665,0.000000,0.000000,0.250000,0,0);}
.m97_c00291{transform:matrix(0.433315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433315,0.000000,0.000000,0.250000,0,0);}
.m29_c00291{transform:matrix(0.434165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434165,0.000000,0.000000,0.250000,0,0);}
.m72_c00291{transform:matrix(0.437320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437320,0.000000,0.000000,0.250000,0,0);}
.m89_c00291{transform:matrix(0.440045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440045,0.000000,0.000000,0.250000,0,0);}
.m78_c00291{transform:matrix(0.444215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444215,0.000000,0.000000,0.250000,0,0);}
.m33_c00291{transform:matrix(0.451250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451250,0.000000,0.000000,0.250000,0,0);}
.mee_c00291{transform:matrix(0.452215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452215,0.000000,0.000000,0.250000,0,0);}
.m87_c00291{transform:matrix(0.453980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453980,0.000000,0.000000,0.250000,0,0);}
.m10_c00291{transform:matrix(0.455175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455175,0.000000,0.000000,0.250000,0,0);}
.m56_c00291{transform:matrix(0.458910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458910,0.000000,0.000000,0.250000,0,0);}
.m46_c00291{transform:matrix(0.464835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464835,0.000000,0.000000,0.250000,0,0);}
.mf7_c00291{transform:matrix(0.466155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466155,0.000000,0.000000,0.250000,0,0);}
.me0_c00291{transform:matrix(0.471010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471010,0.000000,0.000000,0.250000,0,0);}
.mc3_c00291{transform:matrix(0.476705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.476705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.476705,0.000000,0.000000,0.250000,0,0);}
.m2d_c00291{transform:matrix(0.483560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483560,0.000000,0.000000,0.250000,0,0);}
.mad_c00291{transform:matrix(0.485310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485310,0.000000,0.000000,0.250000,0,0);}
.mde_c00291{transform:matrix(0.486880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486880,0.000000,0.000000,0.250000,0,0);}
.mc0_c00291{transform:matrix(0.499300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.499300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.499300,0.000000,0.000000,0.250000,0,0);}
.mea_c00291{transform:matrix(0.502195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502195,0.000000,0.000000,0.250000,0,0);}
.m7a_c00291{transform:matrix(0.502890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502890,0.000000,0.000000,0.250000,0,0);}
.m70_c00291{transform:matrix(0.503115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.503115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.503115,0.000000,0.000000,0.250000,0,0);}
.maf_c00291{transform:matrix(0.511815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511815,0.000000,0.000000,0.250000,0,0);}
.m83_c00291{transform:matrix(0.516575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516575,0.000000,0.000000,0.250000,0,0);}
.m9_c00291{transform:matrix(0.516630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516630,0.000000,0.000000,0.250000,0,0);}
.me5_c00291{transform:matrix(0.517715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517715,0.000000,0.000000,0.250000,0,0);}
.mc6_c00291{transform:matrix(0.524025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524025,0.000000,0.000000,0.250000,0,0);}
.mb9_c00291{transform:matrix(0.524170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524170,0.000000,0.000000,0.250000,0,0);}
.ma3_c00291{transform:matrix(0.527460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527460,0.000000,0.000000,0.250000,0,0);}
.mcf_c00291{transform:matrix(0.534820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534820,0.000000,0.000000,0.250000,0,0);}
.m18_c00291{transform:matrix(0.536005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536005,0.000000,0.000000,0.250000,0,0);}
.m64_c00291{transform:matrix(0.536340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536340,0.000000,0.000000,0.250000,0,0);}
.mbb_c00291{transform:matrix(0.540835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540835,0.000000,0.000000,0.250000,0,0);}
.mc2_c00291{transform:matrix(0.540935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540935,0.000000,0.000000,0.250000,0,0);}
.m2e_c00291{transform:matrix(0.542660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542660,0.000000,0.000000,0.250000,0,0);}
.m52_c00291{transform:matrix(0.545895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545895,0.000000,0.000000,0.250000,0,0);}
.m96_c00291{transform:matrix(0.546010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.546010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.546010,0.000000,0.000000,0.250000,0,0);}
.m30_c00291{transform:matrix(0.548730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548730,0.000000,0.000000,0.250000,0,0);}
.m4d_c00291{transform:matrix(0.553425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553425,0.000000,0.000000,0.250000,0,0);}
.mdf_c00291{transform:matrix(0.555710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555710,0.000000,0.000000,0.250000,0,0);}
.m69_c00291{transform:matrix(0.557390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557390,0.000000,0.000000,0.250000,0,0);}
.m7f_c00291{transform:matrix(0.564645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.564645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.564645,0.000000,0.000000,0.250000,0,0);}
.m53_c00291{transform:matrix(0.574915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574915,0.000000,0.000000,0.250000,0,0);}
.m91_c00291{transform:matrix(0.577060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577060,0.000000,0.000000,0.250000,0,0);}
.m2b_c00291{transform:matrix(0.577235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577235,0.000000,0.000000,0.250000,0,0);}
.m61_c00291{transform:matrix(0.577625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577625,0.000000,0.000000,0.250000,0,0);}
.m7d_c00291{transform:matrix(0.582495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582495,0.000000,0.000000,0.250000,0,0);}
.m9d_c00291{transform:matrix(0.583460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583460,0.000000,0.000000,0.250000,0,0);}
.m80_c00291{transform:matrix(0.586970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.586970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.586970,0.000000,0.000000,0.250000,0,0);}
.m9f_c00291{transform:matrix(0.604670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.604670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.604670,0.000000,0.000000,0.250000,0,0);}
.m92_c00291{transform:matrix(0.612800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612800,0.000000,0.000000,0.250000,0,0);}
.mf2_c00291{transform:matrix(0.622080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.622080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.622080,0.000000,0.000000,0.250000,0,0);}
.m48_c00291{transform:matrix(0.638600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638600,0.000000,0.000000,0.250000,0,0);}
.mbf_c00291{transform:matrix(0.647785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.647785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.647785,0.000000,0.000000,0.250000,0,0);}
.mf5_c00291{transform:matrix(0.655210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.655210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.655210,0.000000,0.000000,0.250000,0,0);}
.m57_c00291{transform:matrix(0.656070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.656070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.656070,0.000000,0.000000,0.250000,0,0);}
.m28_c00291{transform:matrix(0.671660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.671660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.671660,0.000000,0.000000,0.250000,0,0);}
.m5f_c00291{transform:matrix(0.677420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.677420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.677420,0.000000,0.000000,0.250000,0,0);}
.m35_c00291{transform:matrix(0.680310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.680310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.680310,0.000000,0.000000,0.250000,0,0);}
.m4a_c00291{transform:matrix(0.690530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.690530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.690530,0.000000,0.000000,0.250000,0,0);}
.m66_c00291{transform:matrix(0.690755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.690755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.690755,0.000000,0.000000,0.250000,0,0);}
.m88_c00291{transform:matrix(0.691020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.691020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.691020,0.000000,0.000000,0.250000,0,0);}
.m68_c00291{transform:matrix(0.693335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.693335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.693335,0.000000,0.000000,0.250000,0,0);}
.me2_c00291{transform:matrix(0.712500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.712500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.712500,0.000000,0.000000,0.250000,0,0);}
.m65_c00291{transform:matrix(0.721515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.721515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.721515,0.000000,0.000000,0.250000,0,0);}
.m60_c00291{transform:matrix(0.731710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.731710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.731710,0.000000,0.000000,0.250000,0,0);}
.m7b_c00291{transform:matrix(0.735525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735525,0.000000,0.000000,0.250000,0,0);}
.m99_c00291{transform:matrix(0.758055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.758055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.758055,0.000000,0.000000,0.250000,0,0);}
.meb_c00291{transform:matrix(0.759605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.759605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.759605,0.000000,0.000000,0.250000,0,0);}
.m82_c00291{transform:matrix(0.773080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.773080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.773080,0.000000,0.000000,0.250000,0,0);}
.mcd_c00291{transform:matrix(0.807095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.807095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.807095,0.000000,0.000000,0.250000,0,0);}
.ma0_c00291{transform:matrix(0.815295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.815295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.815295,0.000000,0.000000,0.250000,0,0);}
.mf6_c00291{transform:matrix(0.820625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.820625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.820625,0.000000,0.000000,0.250000,0,0);}
.m3b_c00291{transform:matrix(0.823095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.823095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.823095,0.000000,0.000000,0.250000,0,0);}
.mc7_c00291{transform:matrix(0.839345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.839345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.839345,0.000000,0.000000,0.250000,0,0);}
.mc8_c00291{transform:matrix(0.842205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.842205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.842205,0.000000,0.000000,0.250000,0,0);}
.m76_c00291{transform:matrix(0.882900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.882900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.882900,0.000000,0.000000,0.250000,0,0);}
.mb5_c00291{transform:matrix(0.885310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.885310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.885310,0.000000,0.000000,0.250000,0,0);}
.me9_c00291{transform:matrix(0.885890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.885890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.885890,0.000000,0.000000,0.250000,0,0);}
.m43_c00291{transform:matrix(0.885895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.885895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.885895,0.000000,0.000000,0.250000,0,0);}
.m1b_c00291{transform:matrix(0.886395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.886395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.886395,0.000000,0.000000,0.250000,0,0);}
.m95_c00291{transform:matrix(0.900530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.900530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.900530,0.000000,0.000000,0.250000,0,0);}
.mce_c00291{transform:matrix(0.930215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.930215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.930215,0.000000,0.000000,0.250000,0,0);}
.med_c00291{transform:matrix(0.934975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.934975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.934975,0.000000,0.000000,0.250000,0,0);}
.m1d_c00291{transform:matrix(0.984785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.984785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.984785,0.000000,0.000000,0.250000,0,0);}
.m5_c00291{transform:matrix(1.112160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.112160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.112160,0.000000,0.000000,0.250000,0,0);}
.mb0_c00291{transform:matrix(1.121900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.121900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.121900,0.000000,0.000000,0.250000,0,0);}
.m50_c00291{transform:matrix(1.124500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.124500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.124500,0.000000,0.000000,0.250000,0,0);}
.m71_c00291{transform:matrix(1.144380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.144380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.144380,0.000000,0.000000,0.250000,0,0);}
.m17_c00291{transform:matrix(1.151025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.151025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.151025,0.000000,0.000000,0.250000,0,0);}
.mbc_c00291{transform:matrix(1.187140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.187140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.187140,0.000000,0.000000,0.250000,0,0);}
.m79_c00291{transform:matrix(1.261270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.261270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.261270,0.000000,0.000000,0.250000,0,0);}
.m34_c00291{transform:matrix(1.296285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.296285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.296285,0.000000,0.000000,0.250000,0,0);}
.mcc_c00291{transform:matrix(1.319490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.319490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.319490,0.000000,0.000000,0.250000,0,0);}
.m51_c00291{transform:matrix(1.326885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.326885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.326885,0.000000,0.000000,0.250000,0,0);}
.m4b_c00291{transform:matrix(1.370700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.370700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.370700,0.000000,0.000000,0.250000,0,0);}
.m90_c00291{transform:matrix(1.406565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.406565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.406565,0.000000,0.000000,0.250000,0,0);}
.m6_c00291{transform:matrix(1.444650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.444650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.444650,0.000000,0.000000,0.250000,0,0);}
.m4_c00291{transform:matrix(1.519080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.519080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.519080,0.000000,0.000000,0.250000,0,0);}
.m23_c00291{transform:matrix(1.604400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.604400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.604400,0.000000,0.000000,0.250000,0,0);}
.m7c_c00291{transform:matrix(1.769365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.769365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.769365,0.000000,0.000000,0.250000,0,0);}
.m45_c00291{transform:matrix(1.980320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.980320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.980320,0.000000,0.000000,0.250000,0,0);}
.m32_c00291{transform:matrix(2.004505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.004505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.004505,0.000000,0.000000,0.250000,0,0);}
.mcb_c00291{transform:matrix(2.350790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.350790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.350790,0.000000,0.000000,0.250000,0,0);}
.m7_c00291{transform:matrix(2.425440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.425440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.425440,0.000000,0.000000,0.250000,0,0);}
.m21_c00291{transform:matrix(2.625515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.625515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.625515,0.000000,0.000000,0.250000,0,0);}
.m2a_c00291{transform:matrix(2.906210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.906210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.906210,0.000000,0.000000,0.250000,0,0);}
.m4c_c00291{transform:matrix(3.899665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.899665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.899665,0.000000,0.000000,0.250000,0,0);}
.m47_c00291{transform:matrix(4.122475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.122475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.122475,0.000000,0.000000,0.250000,0,0);}
.v0_c00291{vertical-align:0.000000px;}
.ls0_c00291{letter-spacing:0.000000px;}
.sc__c00291{text-shadow:none;}
.sc0_c00291{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__c00291{-webkit-text-stroke:0px transparent;}
.sc0_c00291{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00291{word-spacing:0.000000px;}
._0_c00291{width:4235.585167px;}
.fc0_c00291{color:transparent;}
.fs3_c00291{font-size:12.000000px;}
.fs1_c00291{font-size:18.000000px;}
.fs0_c00291{font-size:18.002673px;}
.fs2_c00291{font-size:24.000000px;}
.fs6_c00291{font-size:30.000000px;}
.fs4_c00291{font-size:36.000000px;}
.fs5_c00291{font-size:42.000000px;}
.y0_c00291{bottom:0.000000px;}
.y3d_c00291{bottom:173.748000px;}
.y3b_c00291{bottom:184.783500px;}
.y3c_c00291{bottom:188.460000px;}
.y3a_c00291{bottom:270.403500px;}
.y39_c00291{bottom:276.480000px;}
.y38_c00291{bottom:281.745000px;}
.y37_c00291{bottom:302.148000px;}
.y36_c00291{bottom:304.830000px;}
.y35_c00291{bottom:313.333500px;}
.y34_c00291{bottom:334.386000px;}
.y33_c00291{bottom:366.118500px;}
.y32_c00291{bottom:371.112000px;}
.y31_c00291{bottom:399.010500px;}
.y30_c00291{bottom:404.190000px;}
.y18_c00291{bottom:420.390000px;}
.y17_c00291{bottom:429.001500px;}
.y2f_c00291{bottom:430.750500px;}
.y16_c00291{bottom:433.650000px;}
.y2e_c00291{bottom:434.455500px;}
.y15_c00291{bottom:439.020000px;}
.y14_c00291{bottom:443.746500px;}
.y2d_c00291{bottom:453.733500px;}
.y2c_c00291{bottom:461.572500px;}
.y2b_c00291{bottom:467.091000px;}
.y2a_c00291{bottom:472.500000px;}
.y29_c00291{bottom:495.048000px;}
.y28_c00291{bottom:505.851000px;}
.y27_c00291{bottom:515.700000px;}
.y26_c00291{bottom:522.990000px;}
.y25_c00291{bottom:526.593000px;}
.y24_c00291{bottom:581.850000px;}
.y23_c00291{bottom:584.010000px;}
.y22_c00291{bottom:585.640500px;}
.y21_c00291{bottom:589.950000px;}
.y20_c00291{bottom:592.792500px;}
.y1f_c00291{bottom:621.693000px;}
.y1e_c00291{bottom:652.954500px;}
.y1d_c00291{bottom:659.380500px;}
.y1c_c00291{bottom:685.354500px;}
.y1b_c00291{bottom:690.135000px;}
.y1a_c00291{bottom:697.833000px;}
.y19_c00291{bottom:697.950000px;}
.y13_c00291{bottom:715.327500px;}
.y12_c00291{bottom:720.010500px;}
.y11_c00291{bottom:723.330000px;}
.y10_c00291{bottom:727.920000px;}
.yf_c00291{bottom:780.439500px;}
.ye_c00291{bottom:793.530000px;}
.yd_c00291{bottom:812.703000px;}
.yc_c00291{bottom:817.675500px;}
.yb_c00291{bottom:823.918500px;}
.y4_c00291{bottom:841.032000px;}
.ya_c00291{bottom:843.258000px;}
.y3_c00291{bottom:845.514000px;}
.y9_c00291{bottom:848.757000px;}
.y8_c00291{bottom:854.820000px;}
.y7_c00291{bottom:858.601500px;}
.y6_c00291{bottom:967.677000px;}
.y2_c00291{bottom:967.686000px;}
.y1_c00291{bottom:974.220000px;}
.y5_c00291{bottom:1034.670000px;}
.h5_c00291{height:12.000000px;}
.h3_c00291{height:18.000000px;}
.h2_c00291{height:18.002673px;}
.h4_c00291{height:24.000000px;}
.h8_c00291{height:30.000000px;}
.h6_c00291{height:36.000000px;}
.h7_c00291{height:42.000000px;}
.h1_c00291{height:1165.500000px;}
.h0_c00291{height:1165.800000px;}
.w0_c00291{width:915.000000px;}
.x0_c00291{left:0.000000px;}
.x6_c00291{left:146.610000px;}
.x5_c00291{left:160.650000px;}
.x4a_c00291{left:177.390000px;}
.x2_c00291{left:194.940000px;}
.x1_c00291{left:197.037000px;}
.x3_c00291{left:199.800000px;}
.x4b_c00291{left:203.850000px;}
.x49_c00291{left:206.010000px;}
.x47_c00291{left:211.410000px;}
.x4_c00291{left:217.080000px;}
.x4c_c00291{left:221.670000px;}
.x48_c00291{left:223.020000px;}
.x3e_c00291{left:227.070000px;}
.x17_c00291{left:231.120000px;}
.xb_c00291{left:233.550000px;}
.x73_c00291{left:235.710000px;}
.x83_c00291{left:240.840000px;}
.x2e_c00291{left:241.920000px;}
.xc_c00291{left:248.940000px;}
.x18_c00291{left:251.640000px;}
.xd_c00291{left:253.530000px;}
.x81_c00291{left:255.420000px;}
.x14_c00291{left:258.660000px;}
.x34_c00291{left:262.710000px;}
.x4d_c00291{left:264.600000px;}
.x84_c00291{left:265.680000px;}
.x2f_c00291{left:267.570000px;}
.x35_c00291{left:270.540000px;}
.x19_c00291{left:271.890000px;}
.x82_c00291{left:275.130000px;}
.x3f_c00291{left:285.660000px;}
.x6f_c00291{left:288.360000px;}
.x1a_c00291{left:297.000000px;}
.x9a_c00291{left:298.350000px;}
.xab_c00291{left:299.700000px;}
.xa9_c00291{left:301.320000px;}
.x36_c00291{left:303.210000px;}
.x74_c00291{left:307.530000px;}
.x40_c00291{left:311.580000px;}
.x9e_c00291{left:313.470000px;}
.x5d_c00291{left:314.550000px;}
.x98_c00291{left:316.170000px;}
.x94_c00291{left:318.060000px;}
.xaa_c00291{left:319.140000px;}
.x5e_c00291{left:320.220000px;}
.x99_c00291{left:321.840000px;}
.x70_c00291{left:323.730000px;}
.x95_c00291{left:325.350000px;}
.x37_c00291{left:326.700000px;}
.xac_c00291{left:331.290000px;}
.x5f_c00291{left:333.450000px;}
.x9f_c00291{left:335.610000px;}
.x38_c00291{left:337.770000px;}
.xa0_c00291{left:339.120000px;}
.x87_c00291{left:340.740000px;}
.x55_c00291{left:343.980000px;}
.x71_c00291{left:347.220000px;}
.x75_c00291{left:348.300000px;}
.x60_c00291{left:352.890000px;}
.x85_c00291{left:354.510000px;}
.x61_c00291{left:364.230000px;}
.x4f_c00291{left:365.310000px;}
.x88_c00291{left:366.660000px;}
.x59_c00291{left:369.630000px;}
.x39_c00291{left:370.710000px;}
.xa1_c00291{left:371.790000px;}
.x9b_c00291{left:373.950000px;}
.x62_c00291{left:375.300000px;}
.x50_c00291{left:376.380000px;}
.xa2_c00291{left:383.130000px;}
.x56_c00291{left:385.020000px;}
.x3a_c00291{left:387.180000px;}
.x72_c00291{left:388.260000px;}
.x76_c00291{left:389.610000px;}
.x1b_c00291{left:394.470000px;}
.xa4_c00291{left:397.980000px;}
.x89_c00291{left:399.330000px;}
.x86_c00291{left:402.570000px;}
.x63_c00291{left:407.160000px;}
.x9c_c00291{left:408.510000px;}
.x1c_c00291{left:409.860000px;}
.xa3_c00291{left:413.640000px;}
.x9d_c00291{left:417.420000px;}
.x29_c00291{left:418.500000px;}
.x1d_c00291{left:422.280000px;}
.x41_c00291{left:426.330000px;}
.x7_c00291{left:428.220000px;}
.x57_c00291{left:429.570000px;}
.x77_c00291{left:431.460000px;}
.xa5_c00291{left:433.890000px;}
.x51_c00291{left:438.750000px;}
.x64_c00291{left:440.910000px;}
.x5a_c00291{left:443.610000px;}
.x42_c00291{left:449.280000px;}
.x65_c00291{left:453.600000px;}
.xa6_c00291{left:456.030000px;}
.x8a_c00291{left:457.650000px;}
.x52_c00291{left:459.810000px;}
.x24_c00291{left:461.430000px;}
.x53_c00291{left:467.370000px;}
.xa7_c00291{left:468.720000px;}
.x3b_c00291{left:470.070000px;}
.x25_c00291{left:473.310000px;}
.x66_c00291{left:474.390000px;}
.x8d_c00291{left:475.470000px;}
.x43_c00291{left:476.550000px;}
.x2a_c00291{left:478.440000px;}
.x30_c00291{left:480.060000px;}
.x54_c00291{left:483.570000px;}
.x26_c00291{left:484.920000px;}
.x4e_c00291{left:486.810000px;}
.x8_c00291{left:488.970000px;}
.x1e_c00291{left:490.320000px;}
.x5b_c00291{left:491.940000px;}
.x78_c00291{left:494.370000px;}
.x8e_c00291{left:496.530000px;}
.x2b_c00291{left:498.420000px;}
.x67_c00291{left:502.740000px;}
.x44_c00291{left:505.170000px;}
.x8f_c00291{left:507.060000px;}
.x96_c00291{left:510.030000px;}
.x2c_c00291{left:512.460000px;}
.x1f_c00291{left:515.970000px;}
.x58_c00291{left:518.130000px;}
.x7d_c00291{left:521.910000px;}
.x31_c00291{left:523.260000px;}
.x7c_c00291{left:526.500000px;}
.x2d_c00291{left:529.200000px;}
.x20_c00291{left:530.550000px;}
.x90_c00291{left:531.900000px;}
.x22_c00291{left:536.490000px;}
.x7e_c00291{left:539.190000px;}
.x45_c00291{left:542.160000px;}
.x27_c00291{left:546.750000px;}
.xa8_c00291{left:549.450000px;}
.x9_c00291{left:551.070000px;}
.x68_c00291{left:552.420000px;}
.x23_c00291{left:554.580000px;}
.xa_c00291{left:559.980000px;}
.x7f_c00291{left:564.840000px;}
.x15_c00291{left:567.810000px;}
.x28_c00291{left:568.890000px;}
.x32_c00291{left:570.780000px;}
.x97_c00291{left:574.830000px;}
.x3c_c00291{left:579.690000px;}
.x16_c00291{left:581.040000px;}
.x69_c00291{left:582.930000px;}
.x21_c00291{left:587.250000px;}
.x91_c00291{left:590.760000px;}
.x6c_c00291{left:594.810000px;}
.x79_c00291{left:597.510000px;}
.x10_c00291{left:599.940000px;}
.x5c_c00291{left:601.830000px;}
.x92_c00291{left:606.960000px;}
.x11_c00291{left:611.010000px;}
.x3d_c00291{left:612.090000px;}
.x7a_c00291{left:615.870000px;}
.x6a_c00291{left:617.490000px;}
.x46_c00291{left:621.810000px;}
.x12_c00291{left:624.780000px;}
.x7b_c00291{left:629.370000px;}
.x33_c00291{left:630.990000px;}
.x93_c00291{left:635.310000px;}
.x8b_c00291{left:636.660000px;}
.xe_c00291{left:638.010000px;}
.x13_c00291{left:643.950000px;}
.x8c_c00291{left:645.840000px;}
.x6b_c00291{left:648.810000px;}
.x6d_c00291{left:649.890000px;}
.xf_c00291{left:654.480000px;}
.x6e_c00291{left:658.800000px;}
.x80_c00291{left:660.690000px;}
@media print{
.v0_c00291{vertical-align:0.000000pt;}
.ls0_c00291{letter-spacing:0.000000pt;}
.ws0_c00291{word-spacing:0.000000pt;}
._0_c00291{width:3764.964592pt;}
.fs3_c00291{font-size:10.666667pt;}
.fs1_c00291{font-size:16.000000pt;}
.fs0_c00291{font-size:16.002376pt;}
.fs2_c00291{font-size:21.333333pt;}
.fs6_c00291{font-size:26.666667pt;}
.fs4_c00291{font-size:32.000000pt;}
.fs5_c00291{font-size:37.333333pt;}
.y0_c00291{bottom:0.000000pt;}
.y3d_c00291{bottom:154.442667pt;}
.y3b_c00291{bottom:164.252000pt;}
.y3c_c00291{bottom:167.520000pt;}
.y3a_c00291{bottom:240.358667pt;}
.y39_c00291{bottom:245.760000pt;}
.y38_c00291{bottom:250.440000pt;}
.y37_c00291{bottom:268.576000pt;}
.y36_c00291{bottom:270.960000pt;}
.y35_c00291{bottom:278.518667pt;}
.y34_c00291{bottom:297.232000pt;}
.y33_c00291{bottom:325.438667pt;}
.y32_c00291{bottom:329.877333pt;}
.y31_c00291{bottom:354.676000pt;}
.y30_c00291{bottom:359.280000pt;}
.y18_c00291{bottom:373.680000pt;}
.y17_c00291{bottom:381.334667pt;}
.y2f_c00291{bottom:382.889333pt;}
.y16_c00291{bottom:385.466667pt;}
.y2e_c00291{bottom:386.182667pt;}
.y15_c00291{bottom:390.240000pt;}
.y14_c00291{bottom:394.441333pt;}
.y2d_c00291{bottom:403.318667pt;}
.y2c_c00291{bottom:410.286667pt;}
.y2b_c00291{bottom:415.192000pt;}
.y2a_c00291{bottom:420.000000pt;}
.y29_c00291{bottom:440.042667pt;}
.y28_c00291{bottom:449.645333pt;}
.y27_c00291{bottom:458.400000pt;}
.y26_c00291{bottom:464.880000pt;}
.y25_c00291{bottom:468.082667pt;}
.y24_c00291{bottom:517.200000pt;}
.y23_c00291{bottom:519.120000pt;}
.y22_c00291{bottom:520.569333pt;}
.y21_c00291{bottom:524.400000pt;}
.y20_c00291{bottom:526.926667pt;}
.y1f_c00291{bottom:552.616000pt;}
.y1e_c00291{bottom:580.404000pt;}
.y1d_c00291{bottom:586.116000pt;}
.y1c_c00291{bottom:609.204000pt;}
.y1b_c00291{bottom:613.453333pt;}
.y1a_c00291{bottom:620.296000pt;}
.y19_c00291{bottom:620.400000pt;}
.y13_c00291{bottom:635.846667pt;}
.y12_c00291{bottom:640.009333pt;}
.y11_c00291{bottom:642.960000pt;}
.y10_c00291{bottom:647.040000pt;}
.yf_c00291{bottom:693.724000pt;}
.ye_c00291{bottom:705.360000pt;}
.yd_c00291{bottom:722.402667pt;}
.yc_c00291{bottom:726.822667pt;}
.yb_c00291{bottom:732.372000pt;}
.y4_c00291{bottom:747.584000pt;}
.ya_c00291{bottom:749.562667pt;}
.y3_c00291{bottom:751.568000pt;}
.y9_c00291{bottom:754.450667pt;}
.y8_c00291{bottom:759.840000pt;}
.y7_c00291{bottom:763.201333pt;}
.y6_c00291{bottom:860.157333pt;}
.y2_c00291{bottom:860.165333pt;}
.y1_c00291{bottom:865.973333pt;}
.y5_c00291{bottom:919.706667pt;}
.h5_c00291{height:10.666667pt;}
.h3_c00291{height:16.000000pt;}
.h2_c00291{height:16.002376pt;}
.h4_c00291{height:21.333333pt;}
.h8_c00291{height:26.666667pt;}
.h6_c00291{height:32.000000pt;}
.h7_c00291{height:37.333333pt;}
.h1_c00291{height:1036.000000pt;}
.h0_c00291{height:1036.266667pt;}
.w0_c00291{width:813.333333pt;}
.x0_c00291{left:0.000000pt;}
.x6_c00291{left:130.320000pt;}
.x5_c00291{left:142.800000pt;}
.x4a_c00291{left:157.680000pt;}
.x2_c00291{left:173.280000pt;}
.x1_c00291{left:175.144000pt;}
.x3_c00291{left:177.600000pt;}
.x4b_c00291{left:181.200000pt;}
.x49_c00291{left:183.120000pt;}
.x47_c00291{left:187.920000pt;}
.x4_c00291{left:192.960000pt;}
.x4c_c00291{left:197.040000pt;}
.x48_c00291{left:198.240000pt;}
.x3e_c00291{left:201.840000pt;}
.x17_c00291{left:205.440000pt;}
.xb_c00291{left:207.600000pt;}
.x73_c00291{left:209.520000pt;}
.x83_c00291{left:214.080000pt;}
.x2e_c00291{left:215.040000pt;}
.xc_c00291{left:221.280000pt;}
.x18_c00291{left:223.680000pt;}
.xd_c00291{left:225.360000pt;}
.x81_c00291{left:227.040000pt;}
.x14_c00291{left:229.920000pt;}
.x34_c00291{left:233.520000pt;}
.x4d_c00291{left:235.200000pt;}
.x84_c00291{left:236.160000pt;}
.x2f_c00291{left:237.840000pt;}
.x35_c00291{left:240.480000pt;}
.x19_c00291{left:241.680000pt;}
.x82_c00291{left:244.560000pt;}
.x3f_c00291{left:253.920000pt;}
.x6f_c00291{left:256.320000pt;}
.x1a_c00291{left:264.000000pt;}
.x9a_c00291{left:265.200000pt;}
.xab_c00291{left:266.400000pt;}
.xa9_c00291{left:267.840000pt;}
.x36_c00291{left:269.520000pt;}
.x74_c00291{left:273.360000pt;}
.x40_c00291{left:276.960000pt;}
.x9e_c00291{left:278.640000pt;}
.x5d_c00291{left:279.600000pt;}
.x98_c00291{left:281.040000pt;}
.x94_c00291{left:282.720000pt;}
.xaa_c00291{left:283.680000pt;}
.x5e_c00291{left:284.640000pt;}
.x99_c00291{left:286.080000pt;}
.x70_c00291{left:287.760000pt;}
.x95_c00291{left:289.200000pt;}
.x37_c00291{left:290.400000pt;}
.xac_c00291{left:294.480000pt;}
.x5f_c00291{left:296.400000pt;}
.x9f_c00291{left:298.320000pt;}
.x38_c00291{left:300.240000pt;}
.xa0_c00291{left:301.440000pt;}
.x87_c00291{left:302.880000pt;}
.x55_c00291{left:305.760000pt;}
.x71_c00291{left:308.640000pt;}
.x75_c00291{left:309.600000pt;}
.x60_c00291{left:313.680000pt;}
.x85_c00291{left:315.120000pt;}
.x61_c00291{left:323.760000pt;}
.x4f_c00291{left:324.720000pt;}
.x88_c00291{left:325.920000pt;}
.x59_c00291{left:328.560000pt;}
.x39_c00291{left:329.520000pt;}
.xa1_c00291{left:330.480000pt;}
.x9b_c00291{left:332.400000pt;}
.x62_c00291{left:333.600000pt;}
.x50_c00291{left:334.560000pt;}
.xa2_c00291{left:340.560000pt;}
.x56_c00291{left:342.240000pt;}
.x3a_c00291{left:344.160000pt;}
.x72_c00291{left:345.120000pt;}
.x76_c00291{left:346.320000pt;}
.x1b_c00291{left:350.640000pt;}
.xa4_c00291{left:353.760000pt;}
.x89_c00291{left:354.960000pt;}
.x86_c00291{left:357.840000pt;}
.x63_c00291{left:361.920000pt;}
.x9c_c00291{left:363.120000pt;}
.x1c_c00291{left:364.320000pt;}
.xa3_c00291{left:367.680000pt;}
.x9d_c00291{left:371.040000pt;}
.x29_c00291{left:372.000000pt;}
.x1d_c00291{left:375.360000pt;}
.x41_c00291{left:378.960000pt;}
.x7_c00291{left:380.640000pt;}
.x57_c00291{left:381.840000pt;}
.x77_c00291{left:383.520000pt;}
.xa5_c00291{left:385.680000pt;}
.x51_c00291{left:390.000000pt;}
.x64_c00291{left:391.920000pt;}
.x5a_c00291{left:394.320000pt;}
.x42_c00291{left:399.360000pt;}
.x65_c00291{left:403.200000pt;}
.xa6_c00291{left:405.360000pt;}
.x8a_c00291{left:406.800000pt;}
.x52_c00291{left:408.720000pt;}
.x24_c00291{left:410.160000pt;}
.x53_c00291{left:415.440000pt;}
.xa7_c00291{left:416.640000pt;}
.x3b_c00291{left:417.840000pt;}
.x25_c00291{left:420.720000pt;}
.x66_c00291{left:421.680000pt;}
.x8d_c00291{left:422.640000pt;}
.x43_c00291{left:423.600000pt;}
.x2a_c00291{left:425.280000pt;}
.x30_c00291{left:426.720000pt;}
.x54_c00291{left:429.840000pt;}
.x26_c00291{left:431.040000pt;}
.x4e_c00291{left:432.720000pt;}
.x8_c00291{left:434.640000pt;}
.x1e_c00291{left:435.840000pt;}
.x5b_c00291{left:437.280000pt;}
.x78_c00291{left:439.440000pt;}
.x8e_c00291{left:441.360000pt;}
.x2b_c00291{left:443.040000pt;}
.x67_c00291{left:446.880000pt;}
.x44_c00291{left:449.040000pt;}
.x8f_c00291{left:450.720000pt;}
.x96_c00291{left:453.360000pt;}
.x2c_c00291{left:455.520000pt;}
.x1f_c00291{left:458.640000pt;}
.x58_c00291{left:460.560000pt;}
.x7d_c00291{left:463.920000pt;}
.x31_c00291{left:465.120000pt;}
.x7c_c00291{left:468.000000pt;}
.x2d_c00291{left:470.400000pt;}
.x20_c00291{left:471.600000pt;}
.x90_c00291{left:472.800000pt;}
.x22_c00291{left:476.880000pt;}
.x7e_c00291{left:479.280000pt;}
.x45_c00291{left:481.920000pt;}
.x27_c00291{left:486.000000pt;}
.xa8_c00291{left:488.400000pt;}
.x9_c00291{left:489.840000pt;}
.x68_c00291{left:491.040000pt;}
.x23_c00291{left:492.960000pt;}
.xa_c00291{left:497.760000pt;}
.x7f_c00291{left:502.080000pt;}
.x15_c00291{left:504.720000pt;}
.x28_c00291{left:505.680000pt;}
.x32_c00291{left:507.360000pt;}
.x97_c00291{left:510.960000pt;}
.x3c_c00291{left:515.280000pt;}
.x16_c00291{left:516.480000pt;}
.x69_c00291{left:518.160000pt;}
.x21_c00291{left:522.000000pt;}
.x91_c00291{left:525.120000pt;}
.x6c_c00291{left:528.720000pt;}
.x79_c00291{left:531.120000pt;}
.x10_c00291{left:533.280000pt;}
.x5c_c00291{left:534.960000pt;}
.x92_c00291{left:539.520000pt;}
.x11_c00291{left:543.120000pt;}
.x3d_c00291{left:544.080000pt;}
.x7a_c00291{left:547.440000pt;}
.x6a_c00291{left:548.880000pt;}
.x46_c00291{left:552.720000pt;}
.x12_c00291{left:555.360000pt;}
.x7b_c00291{left:559.440000pt;}
.x33_c00291{left:560.880000pt;}
.x93_c00291{left:564.720000pt;}
.x8b_c00291{left:565.920000pt;}
.xe_c00291{left:567.120000pt;}
.x13_c00291{left:572.400000pt;}
.x8c_c00291{left:574.080000pt;}
.x6b_c00291{left:576.720000pt;}
.x6d_c00291{left:577.680000pt;}
.xf_c00291{left:581.760000pt;}
.x6e_c00291{left:585.600000pt;}
.x80_c00291{left:587.280000pt;}
}





/* 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_c00292 {
    display:none;
  }
  .loading-indicator_c00292.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00292 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_c00292 { 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_c00292" -> "#page-container .classname_c00292")
 */
.pf_c00292 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00292 { /* 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_c00292.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00292 { /* 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_c00292 { /* 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_c00292 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00292 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00292 {overflow:visible;}
  }
}
.c_c00292 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00292 { /* 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_c00292:after { /* webkit #35443 */
  content: '';
}
.t_c00292:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00292 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 */
}
.__c00292 { /* 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_c00292 { /* info for Javascript */
  display:none;
}
.l_c00292 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00292 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00292 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00292: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_c00292 {
    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_c00292.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00292.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_c00292 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00292{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00292;src:url('chunks/assets/font_c605e72f209fc835e906f064.woff2')format("woff");}.ff1_c00292{font-family:ff1_c00292;line-height:1.000000;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;}
.m1f_c00292{transform:matrix(0.129240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129240,0.000000,0.000000,0.250000,0,0);}
.m6d_c00292{transform:matrix(0.135252,0.001488,-0.002750,0.249985,0,0);-ms-transform:matrix(0.135252,0.001488,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.135252,0.001488,-0.002750,0.249985,0,0);}
.m21_c00292{transform:matrix(0.135750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135750,0.000000,0.000000,0.250000,0,0);}
.m28_c00292{transform:matrix(0.137873,0.001792,-0.003250,0.249979,0,0);-ms-transform:matrix(0.137873,0.001792,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.137873,0.001792,-0.003250,0.249979,0,0);}
.me1_c00292{transform:matrix(0.137980,0.001656,-0.003000,0.249982,0,0);-ms-transform:matrix(0.137980,0.001656,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.137980,0.001656,-0.003000,0.249982,0,0);}
.m89_c00292{transform:matrix(0.140551,0.001546,-0.002750,0.249985,0,0);-ms-transform:matrix(0.140551,0.001546,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.140551,0.001546,-0.002750,0.249985,0,0);}
.m40_c00292{transform:matrix(0.143276,0.001576,-0.002750,0.249985,0,0);-ms-transform:matrix(0.143276,0.001576,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.143276,0.001576,-0.002750,0.249985,0,0);}
.m105_c00292{transform:matrix(0.145849,0.002188,-0.003750,0.249972,0,0);-ms-transform:matrix(0.145849,0.002188,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.145849,0.002188,-0.003750,0.249972,0,0);}
.meb_c00292{transform:matrix(0.147538,0.002213,-0.003750,0.249972,0,0);-ms-transform:matrix(0.147538,0.002213,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.147538,0.002213,-0.003750,0.249972,0,0);}
.m31_c00292{transform:matrix(0.150407,0.001955,-0.003250,0.249979,0,0);-ms-transform:matrix(0.150407,0.001955,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.150407,0.001955,-0.003250,0.249979,0,0);}
.mac_c00292{transform:matrix(0.150521,0.001656,-0.002750,0.249985,0,0);-ms-transform:matrix(0.150521,0.001656,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.150521,0.001656,-0.002750,0.249985,0,0);}
.m96_c00292{transform:matrix(0.153325,0.002147,-0.003500,0.249976,0,0);-ms-transform:matrix(0.153325,0.002147,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.153325,0.002147,-0.003500,0.249976,0,0);}
.mea_c00292{transform:matrix(0.159114,0.001909,-0.003000,0.249982,0,0);-ms-transform:matrix(0.159114,0.001909,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.159114,0.001909,-0.003000,0.249982,0,0);}
.mab_c00292{transform:matrix(0.161983,0.001458,-0.002250,0.249990,0,0);-ms-transform:matrix(0.161983,0.001458,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.161983,0.001458,-0.002250,0.249990,0,0);}
.ma5_c00292{transform:matrix(0.162088,0.001459,-0.002250,0.249990,0,0);-ms-transform:matrix(0.162088,0.001459,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.162088,0.001459,-0.002250,0.249990,0,0);}
.m74_c00292{transform:matrix(0.182474,0.002007,-0.002750,0.249985,0,0);-ms-transform:matrix(0.182474,0.002007,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.182474,0.002007,-0.002750,0.249985,0,0);}
.m49_c00292{transform:matrix(0.182789,0.002011,-0.002750,0.249985,0,0);-ms-transform:matrix(0.182789,0.002011,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.182789,0.002011,-0.002750,0.249985,0,0);}
.m12_c00292{transform:matrix(0.182910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182910,0.000000,0.000000,0.250000,0,0);}
.m38_c00292{transform:matrix(0.199403,0.002592,-0.003250,0.249979,0,0);-ms-transform:matrix(0.199403,0.002592,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.199403,0.002592,-0.003250,0.249979,0,0);}
.mbd_c00292{transform:matrix(0.199768,0.002597,-0.003250,0.249979,0,0);-ms-transform:matrix(0.199768,0.002597,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.199768,0.002597,-0.003250,0.249979,0,0);}
.m2d_c00292{transform:matrix(0.204568,0.002659,-0.003250,0.249979,0,0);-ms-transform:matrix(0.204568,0.002659,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.204568,0.002659,-0.003250,0.249979,0,0);}
.m47_c00292{transform:matrix(0.210182,0.002312,-0.002750,0.249985,0,0);-ms-transform:matrix(0.210182,0.002312,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.210182,0.002312,-0.002750,0.249985,0,0);}
.me5_c00292{transform:matrix(0.210535,0.002526,-0.003000,0.249982,0,0);-ms-transform:matrix(0.210535,0.002526,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.210535,0.002526,-0.003000,0.249982,0,0);}
.m87_c00292{transform:matrix(0.211322,0.002325,-0.002750,0.249985,0,0);-ms-transform:matrix(0.211322,0.002325,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.211322,0.002325,-0.002750,0.249985,0,0);}
.m30_c00292{transform:matrix(0.214467,0.002788,-0.003250,0.249979,0,0);-ms-transform:matrix(0.214467,0.002788,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.214467,0.002788,-0.003250,0.249979,0,0);}
.ma1_c00292{transform:matrix(0.216540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216540,0.000000,0.000000,0.250000,0,0);}
.m1e_c00292{transform:matrix(0.218015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218015,0.000000,0.000000,0.250000,0,0);}
.m20_c00292{transform:matrix(0.218255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218255,0.000000,0.000000,0.250000,0,0);}
.m81_c00292{transform:matrix(0.220242,0.002423,-0.002750,0.249985,0,0);-ms-transform:matrix(0.220242,0.002423,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.220242,0.002423,-0.002750,0.249985,0,0);}
.m82_c00292{transform:matrix(0.220497,0.002425,-0.002750,0.249985,0,0);-ms-transform:matrix(0.220497,0.002425,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.220497,0.002425,-0.002750,0.249985,0,0);}
.m6b_c00292{transform:matrix(0.221362,0.002435,-0.002750,0.249985,0,0);-ms-transform:matrix(0.221362,0.002435,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.221362,0.002435,-0.002750,0.249985,0,0);}
.mcb_c00292{transform:matrix(0.221434,0.002657,-0.003000,0.249982,0,0);-ms-transform:matrix(0.221434,0.002657,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.221434,0.002657,-0.003000,0.249982,0,0);}
.m73_c00292{transform:matrix(0.221867,0.002441,-0.002750,0.249985,0,0);-ms-transform:matrix(0.221867,0.002441,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.221867,0.002441,-0.002750,0.249985,0,0);}
.mcd_c00292{transform:matrix(0.224059,0.002689,-0.003000,0.249982,0,0);-ms-transform:matrix(0.224059,0.002689,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.224059,0.002689,-0.003000,0.249982,0,0);}
.me0_c00292{transform:matrix(0.225624,0.002707,-0.003000,0.249982,0,0);-ms-transform:matrix(0.225624,0.002707,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.225624,0.002707,-0.003000,0.249982,0,0);}
.mde_c00292{transform:matrix(0.228924,0.002747,-0.003000,0.249982,0,0);-ms-transform:matrix(0.228924,0.002747,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.228924,0.002747,-0.003000,0.249982,0,0);}
.m78_c00292{transform:matrix(0.230201,0.002532,-0.002750,0.249985,0,0);-ms-transform:matrix(0.230201,0.002532,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.230201,0.002532,-0.002750,0.249985,0,0);}
.m11_c00292{transform:matrix(0.230560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230560,0.000000,0.000000,0.250000,0,0);}
.m7f_c00292{transform:matrix(0.231946,0.002551,-0.002750,0.249985,0,0);-ms-transform:matrix(0.231946,0.002551,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.231946,0.002551,-0.002750,0.249985,0,0);}
.m44_c00292{transform:matrix(0.232391,0.002556,-0.002750,0.249985,0,0);-ms-transform:matrix(0.232391,0.002556,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.232391,0.002556,-0.002750,0.249985,0,0);}
.m4d_c00292{transform:matrix(0.233721,0.002571,-0.002750,0.249985,0,0);-ms-transform:matrix(0.233721,0.002571,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.233721,0.002571,-0.002750,0.249985,0,0);}
.ma8_c00292{transform:matrix(0.233726,0.002104,-0.002250,0.249990,0,0);-ms-transform:matrix(0.233726,0.002104,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.233726,0.002104,-0.002250,0.249990,0,0);}
.m59_c00292{transform:matrix(0.234273,0.002811,-0.003000,0.249982,0,0);-ms-transform:matrix(0.234273,0.002811,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.234273,0.002811,-0.003000,0.249982,0,0);}
.m3b_c00292{transform:matrix(0.234346,0.002578,-0.002750,0.249985,0,0);-ms-transform:matrix(0.234346,0.002578,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.234346,0.002578,-0.002750,0.249985,0,0);}
.m4b_c00292{transform:matrix(0.234366,0.002578,-0.002750,0.249985,0,0);-ms-transform:matrix(0.234366,0.002578,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.234366,0.002578,-0.002750,0.249985,0,0);}
.m3d_c00292{transform:matrix(0.235066,0.002586,-0.002750,0.249985,0,0);-ms-transform:matrix(0.235066,0.002586,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.235066,0.002586,-0.002750,0.249985,0,0);}
.m23_c00292{transform:matrix(0.235830,0.003066,-0.003250,0.249979,0,0);-ms-transform:matrix(0.235830,0.003066,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.235830,0.003066,-0.003250,0.249979,0,0);}
.m69_c00292{transform:matrix(0.236431,0.002601,-0.002750,0.249985,0,0);-ms-transform:matrix(0.236431,0.002601,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.236431,0.002601,-0.002750,0.249985,0,0);}
.m5a_c00292{transform:matrix(0.236768,0.002841,-0.003000,0.249982,0,0);-ms-transform:matrix(0.236768,0.002841,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.236768,0.002841,-0.003000,0.249982,0,0);}
.mce_c00292{transform:matrix(0.236828,0.002842,-0.003000,0.249982,0,0);-ms-transform:matrix(0.236828,0.002842,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.236828,0.002842,-0.003000,0.249982,0,0);}
.m62_c00292{transform:matrix(0.236845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236845,0.000000,0.000000,0.250000,0,0);}
.md_c00292{transform:matrix(0.237540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237540,0.000000,0.000000,0.250000,0,0);}
.md8_c00292{transform:matrix(0.237923,0.002855,-0.003000,0.249982,0,0);-ms-transform:matrix(0.237923,0.002855,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.237923,0.002855,-0.003000,0.249982,0,0);}
.m2a_c00292{transform:matrix(0.239890,0.003119,-0.003250,0.249979,0,0);-ms-transform:matrix(0.239890,0.003119,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.239890,0.003119,-0.003250,0.249979,0,0);}
.m91_c00292{transform:matrix(0.240256,0.003364,-0.003500,0.249976,0,0);-ms-transform:matrix(0.240256,0.003364,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.240256,0.003364,-0.003500,0.249976,0,0);}
.m4a_c00292{transform:matrix(0.241210,0.002653,-0.002750,0.249985,0,0);-ms-transform:matrix(0.241210,0.002653,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.241210,0.002653,-0.002750,0.249985,0,0);}
.md7_c00292{transform:matrix(0.241298,0.002896,-0.003000,0.249982,0,0);-ms-transform:matrix(0.241298,0.002896,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.241298,0.002896,-0.003000,0.249982,0,0);}
.m27_c00292{transform:matrix(0.242080,0.003147,-0.003250,0.249979,0,0);-ms-transform:matrix(0.242080,0.003147,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.242080,0.003147,-0.003250,0.249979,0,0);}
.m76_c00292{transform:matrix(0.243360,0.002677,-0.002750,0.249985,0,0);-ms-transform:matrix(0.243360,0.002677,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.243360,0.002677,-0.002750,0.249985,0,0);}
.m92_c00292{transform:matrix(0.243546,0.003410,-0.003500,0.249976,0,0);-ms-transform:matrix(0.243546,0.003410,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.243546,0.003410,-0.003500,0.249976,0,0);}
.m72_c00292{transform:matrix(0.244090,0.002685,-0.002750,0.249985,0,0);-ms-transform:matrix(0.244090,0.002685,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.244090,0.002685,-0.002750,0.249985,0,0);}
.m8d_c00292{transform:matrix(0.245081,0.003431,-0.003500,0.249976,0,0);-ms-transform:matrix(0.245081,0.003431,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.245081,0.003431,-0.003500,0.249976,0,0);}
.m8f_c00292{transform:matrix(0.245126,0.003432,-0.003500,0.249976,0,0);-ms-transform:matrix(0.245126,0.003432,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.245126,0.003432,-0.003500,0.249976,0,0);}
.m3e_c00292{transform:matrix(0.246360,0.002710,-0.002750,0.249985,0,0);-ms-transform:matrix(0.246360,0.002710,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.246360,0.002710,-0.002750,0.249985,0,0);}
.m85_c00292{transform:matrix(0.247490,0.002722,-0.002750,0.249985,0,0);-ms-transform:matrix(0.247490,0.002722,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.247490,0.002722,-0.002750,0.249985,0,0);}
.m7e_c00292{transform:matrix(0.248570,0.002734,-0.002750,0.249985,0,0);-ms-transform:matrix(0.248570,0.002734,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.248570,0.002734,-0.002750,0.249985,0,0);}
.m25_c00292{transform:matrix(0.250134,0.003252,-0.003250,0.249979,0,0);-ms-transform:matrix(0.250134,0.003252,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.250134,0.003252,-0.003250,0.249979,0,0);}
.mdc_c00292{transform:matrix(0.250722,0.003009,-0.003000,0.249982,0,0);-ms-transform:matrix(0.250722,0.003009,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.250722,0.003009,-0.003000,0.249982,0,0);}
.m42_c00292{transform:matrix(0.250915,0.002760,-0.002750,0.249985,0,0);-ms-transform:matrix(0.250915,0.002760,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.250915,0.002760,-0.002750,0.249985,0,0);}
.mcc_c00292{transform:matrix(0.250932,0.003011,-0.003000,0.249982,0,0);-ms-transform:matrix(0.250932,0.003011,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.250932,0.003011,-0.003000,0.249982,0,0);}
.m50_c00292{transform:matrix(0.250935,0.002760,-0.002750,0.249985,0,0);-ms-transform:matrix(0.250935,0.002760,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.250935,0.002760,-0.002750,0.249985,0,0);}
.mb3_c00292{transform:matrix(0.251130,0.002762,-0.002750,0.249985,0,0);-ms-transform:matrix(0.251130,0.002762,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.251130,0.002762,-0.002750,0.249985,0,0);}
.m2e_c00292{transform:matrix(0.252244,0.003279,-0.003250,0.249979,0,0);-ms-transform:matrix(0.252244,0.003279,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.252244,0.003279,-0.003250,0.249979,0,0);}
.ma7_c00292{transform:matrix(0.252670,0.002274,-0.002250,0.249990,0,0);-ms-transform:matrix(0.252670,0.002274,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.252670,0.002274,-0.002250,0.249990,0,0);}
.md0_c00292{transform:matrix(0.252807,0.003034,-0.003000,0.249982,0,0);-ms-transform:matrix(0.252807,0.003034,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.252807,0.003034,-0.003000,0.249982,0,0);}
.m26_c00292{transform:matrix(0.252859,0.003287,-0.003250,0.249979,0,0);-ms-transform:matrix(0.252859,0.003287,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.252859,0.003287,-0.003250,0.249979,0,0);}
.ma3_c00292{transform:matrix(0.253435,0.002281,-0.002250,0.249990,0,0);-ms-transform:matrix(0.253435,0.002281,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.253435,0.002281,-0.002250,0.249990,0,0);}
.m94_c00292{transform:matrix(0.253510,0.003549,-0.003500,0.249976,0,0);-ms-transform:matrix(0.253510,0.003549,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.253510,0.003549,-0.003500,0.249976,0,0);}
.mf8_c00292{transform:matrix(0.254136,0.003812,-0.003750,0.249972,0,0);-ms-transform:matrix(0.254136,0.003812,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.254136,0.003812,-0.003750,0.249972,0,0);}
.m5b_c00292{transform:matrix(0.254147,0.003050,-0.003000,0.249982,0,0);-ms-transform:matrix(0.254147,0.003050,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.254147,0.003050,-0.003000,0.249982,0,0);}
.m104_c00292{transform:matrix(0.254466,0.003817,-0.003750,0.249972,0,0);-ms-transform:matrix(0.254466,0.003817,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.254466,0.003817,-0.003750,0.249972,0,0);}
.mbe_c00292{transform:matrix(0.254958,0.003314,-0.003250,0.249979,0,0);-ms-transform:matrix(0.254958,0.003314,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.254958,0.003314,-0.003250,0.249979,0,0);}
.mb8_c00292{transform:matrix(0.254965,0.002805,-0.002750,0.249985,0,0);-ms-transform:matrix(0.254965,0.002805,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.254965,0.002805,-0.002750,0.249985,0,0);}
.m103_c00292{transform:matrix(0.255251,0.003829,-0.003750,0.249972,0,0);-ms-transform:matrix(0.255251,0.003829,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.255251,0.003829,-0.003750,0.249972,0,0);}
.mdf_c00292{transform:matrix(0.255877,0.003071,-0.003000,0.249982,0,0);-ms-transform:matrix(0.255877,0.003071,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.255877,0.003071,-0.003000,0.249982,0,0);}
.m67_c00292{transform:matrix(0.256200,0.002818,-0.002750,0.249985,0,0);-ms-transform:matrix(0.256200,0.002818,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.256200,0.002818,-0.002750,0.249985,0,0);}
.m52_c00292{transform:matrix(0.256244,0.002819,-0.002750,0.249985,0,0);-ms-transform:matrix(0.256244,0.002819,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.256244,0.002819,-0.002750,0.249985,0,0);}
.m83_c00292{transform:matrix(0.256774,0.002825,-0.002750,0.249985,0,0);-ms-transform:matrix(0.256774,0.002825,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.256774,0.002825,-0.002750,0.249985,0,0);}
.m102_c00292{transform:matrix(0.257036,0.003856,-0.003750,0.249972,0,0);-ms-transform:matrix(0.257036,0.003856,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.257036,0.003856,-0.003750,0.249972,0,0);}
.mee_c00292{transform:matrix(0.257261,0.003859,-0.003750,0.249972,0,0);-ms-transform:matrix(0.257261,0.003859,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.257261,0.003859,-0.003750,0.249972,0,0);}
.md6_c00292{transform:matrix(0.257271,0.003087,-0.003000,0.249982,0,0);-ms-transform:matrix(0.257271,0.003087,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.257271,0.003087,-0.003000,0.249982,0,0);}
.m2b_c00292{transform:matrix(0.257518,0.003348,-0.003250,0.249979,0,0);-ms-transform:matrix(0.257518,0.003348,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.257518,0.003348,-0.003250,0.249979,0,0);}
.m75_c00292{transform:matrix(0.257679,0.002834,-0.002750,0.249985,0,0);-ms-transform:matrix(0.257679,0.002834,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.257679,0.002834,-0.002750,0.249985,0,0);}
.m54_c00292{transform:matrix(0.258334,0.002842,-0.002750,0.249985,0,0);-ms-transform:matrix(0.258334,0.002842,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.258334,0.002842,-0.002750,0.249985,0,0);}
.mc1_c00292{transform:matrix(0.258723,0.003363,-0.003250,0.249979,0,0);-ms-transform:matrix(0.258723,0.003363,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.258723,0.003363,-0.003250,0.249979,0,0);}
.m6f_c00292{transform:matrix(0.259264,0.002852,-0.002750,0.249985,0,0);-ms-transform:matrix(0.259264,0.002852,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.259264,0.002852,-0.002750,0.249985,0,0);}
.m71_c00292{transform:matrix(0.259449,0.002854,-0.002750,0.249985,0,0);-ms-transform:matrix(0.259449,0.002854,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.259449,0.002854,-0.002750,0.249985,0,0);}
.me7_c00292{transform:matrix(0.260001,0.003120,-0.003000,0.249982,0,0);-ms-transform:matrix(0.260001,0.003120,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.260001,0.003120,-0.003000,0.249982,0,0);}
.m9f_c00292{transform:matrix(0.260239,0.002863,-0.002750,0.249985,0,0);-ms-transform:matrix(0.260239,0.002863,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.260239,0.002863,-0.002750,0.249985,0,0);}
.m63_c00292{transform:matrix(0.260350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260350,0.000000,0.000000,0.250000,0,0);}
.m3c_c00292{transform:matrix(0.260419,0.002865,-0.002750,0.249985,0,0);-ms-transform:matrix(0.260419,0.002865,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.260419,0.002865,-0.002750,0.249985,0,0);}
.m24_c00292{transform:matrix(0.260653,0.003388,-0.003250,0.249979,0,0);-ms-transform:matrix(0.260653,0.003388,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.260653,0.003388,-0.003250,0.249979,0,0);}
.mdd_c00292{transform:matrix(0.260691,0.003128,-0.003000,0.249982,0,0);-ms-transform:matrix(0.260691,0.003128,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.260691,0.003128,-0.003000,0.249982,0,0);}
.mf2_c00292{transform:matrix(0.261021,0.003915,-0.003750,0.249972,0,0);-ms-transform:matrix(0.261021,0.003915,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.261021,0.003915,-0.003750,0.249972,0,0);}
.mb5_c00292{transform:matrix(0.261034,0.002871,-0.002750,0.249985,0,0);-ms-transform:matrix(0.261034,0.002871,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.261034,0.002871,-0.002750,0.249985,0,0);}
.md4_c00292{transform:matrix(0.261046,0.003133,-0.003000,0.249982,0,0);-ms-transform:matrix(0.261046,0.003133,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.261046,0.003133,-0.003000,0.249982,0,0);}
.m9c_c00292{transform:matrix(0.261049,0.002872,-0.002750,0.249985,0,0);-ms-transform:matrix(0.261049,0.002872,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.261049,0.002872,-0.002750,0.249985,0,0);}
.m86_c00292{transform:matrix(0.261619,0.002878,-0.002750,0.249985,0,0);-ms-transform:matrix(0.261619,0.002878,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.261619,0.002878,-0.002750,0.249985,0,0);}
.md2_c00292{transform:matrix(0.261671,0.003140,-0.003000,0.249982,0,0);-ms-transform:matrix(0.261671,0.003140,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.261671,0.003140,-0.003000,0.249982,0,0);}
.md9_c00292{transform:matrix(0.261871,0.003142,-0.003000,0.249982,0,0);-ms-transform:matrix(0.261871,0.003142,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.261871,0.003142,-0.003000,0.249982,0,0);}
.mf7_c00292{transform:matrix(0.262365,0.003935,-0.003750,0.249972,0,0);-ms-transform:matrix(0.262365,0.003935,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.262365,0.003935,-0.003750,0.249972,0,0);}
.m36_c00292{transform:matrix(0.262918,0.003418,-0.003250,0.249979,0,0);-ms-transform:matrix(0.262918,0.003418,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.262918,0.003418,-0.003250,0.249979,0,0);}
.m51_c00292{transform:matrix(0.263064,0.002894,-0.002750,0.249985,0,0);-ms-transform:matrix(0.263064,0.002894,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.263064,0.002894,-0.002750,0.249985,0,0);}
.m7c_c00292{transform:matrix(0.263284,0.002896,-0.002750,0.249985,0,0);-ms-transform:matrix(0.263284,0.002896,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.263284,0.002896,-0.002750,0.249985,0,0);}
.mb2_c00292{transform:matrix(0.265304,0.002918,-0.002750,0.249985,0,0);-ms-transform:matrix(0.265304,0.002918,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.265304,0.002918,-0.002750,0.249985,0,0);}
.mef_c00292{transform:matrix(0.265650,0.003985,-0.003750,0.249972,0,0);-ms-transform:matrix(0.265650,0.003985,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.265650,0.003985,-0.003750,0.249972,0,0);}
.m6c_c00292{transform:matrix(0.265659,0.002922,-0.002750,0.249985,0,0);-ms-transform:matrix(0.265659,0.002922,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.265659,0.002922,-0.002750,0.249985,0,0);}
.ma4_c00292{transform:matrix(0.265789,0.002392,-0.002250,0.249990,0,0);-ms-transform:matrix(0.265789,0.002392,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.265789,0.002392,-0.002250,0.249990,0,0);}
.m22_c00292{transform:matrix(0.266218,0.003461,-0.003250,0.249979,0,0);-ms-transform:matrix(0.266218,0.003461,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.266218,0.003461,-0.003250,0.249979,0,0);}
.m68_c00292{transform:matrix(0.266219,0.002928,-0.002750,0.249985,0,0);-ms-transform:matrix(0.266219,0.002928,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.266219,0.002928,-0.002750,0.249985,0,0);}
.m77_c00292{transform:matrix(0.266399,0.002930,-0.002750,0.249985,0,0);-ms-transform:matrix(0.266399,0.002930,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.266399,0.002930,-0.002750,0.249985,0,0);}
.m64_c00292{transform:matrix(0.266415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266415,0.000000,0.000000,0.250000,0,0);}
.m53_c00292{transform:matrix(0.266514,0.002932,-0.002750,0.249985,0,0);-ms-transform:matrix(0.266514,0.002932,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.266514,0.002932,-0.002750,0.249985,0,0);}
.m7d_c00292{transform:matrix(0.266924,0.002936,-0.002750,0.249985,0,0);-ms-transform:matrix(0.266924,0.002936,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.266924,0.002936,-0.002750,0.249985,0,0);}
.m100_c00292{transform:matrix(0.266990,0.004005,-0.003750,0.249972,0,0);-ms-transform:matrix(0.266990,0.004005,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.266990,0.004005,-0.003750,0.249972,0,0);}
.mcf_c00292{transform:matrix(0.267411,0.003209,-0.003000,0.249982,0,0);-ms-transform:matrix(0.267411,0.003209,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.267411,0.003209,-0.003000,0.249982,0,0);}
.m65_c00292{transform:matrix(0.267435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267435,0.000000,0.000000,0.250000,0,0);}
.md3_c00292{transform:matrix(0.268036,0.003216,-0.003000,0.249982,0,0);-ms-transform:matrix(0.268036,0.003216,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.268036,0.003216,-0.003000,0.249982,0,0);}
.m4c_c00292{transform:matrix(0.269064,0.002960,-0.002750,0.249985,0,0);-ms-transform:matrix(0.269064,0.002960,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.269064,0.002960,-0.002750,0.249985,0,0);}
.m88_c00292{transform:matrix(0.269184,0.002961,-0.002750,0.249985,0,0);-ms-transform:matrix(0.269184,0.002961,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.269184,0.002961,-0.002750,0.249985,0,0);}
.m8c_c00292{transform:matrix(0.269864,0.003778,-0.003500,0.249976,0,0);-ms-transform:matrix(0.269864,0.003778,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.269864,0.003778,-0.003500,0.249976,0,0);}
.mbf_c00292{transform:matrix(0.270217,0.003513,-0.003250,0.249979,0,0);-ms-transform:matrix(0.270217,0.003513,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.270217,0.003513,-0.003250,0.249979,0,0);}
.m41_c00292{transform:matrix(0.270284,0.002973,-0.002750,0.249985,0,0);-ms-transform:matrix(0.270284,0.002973,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.270284,0.002973,-0.002750,0.249985,0,0);}
.md1_c00292{transform:matrix(0.270336,0.003244,-0.003000,0.249982,0,0);-ms-transform:matrix(0.270336,0.003244,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.270336,0.003244,-0.003000,0.249982,0,0);}
.m3f_c00292{transform:matrix(0.270364,0.002974,-0.002750,0.249985,0,0);-ms-transform:matrix(0.270364,0.002974,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.270364,0.002974,-0.002750,0.249985,0,0);}
.m80_c00292{transform:matrix(0.271104,0.002982,-0.002750,0.249985,0,0);-ms-transform:matrix(0.271104,0.002982,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.271104,0.002982,-0.002750,0.249985,0,0);}
.m45_c00292{transform:matrix(0.271159,0.002983,-0.002750,0.249985,0,0);-ms-transform:matrix(0.271159,0.002983,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.271159,0.002983,-0.002750,0.249985,0,0);}
.m4e_c00292{transform:matrix(0.271244,0.002984,-0.002750,0.249985,0,0);-ms-transform:matrix(0.271244,0.002984,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.271244,0.002984,-0.002750,0.249985,0,0);}
.m84_c00292{transform:matrix(0.271249,0.002984,-0.002750,0.249985,0,0);-ms-transform:matrix(0.271249,0.002984,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.271249,0.002984,-0.002750,0.249985,0,0);}
.mca_c00292{transform:matrix(0.271250,0.003255,-0.003000,0.249982,0,0);-ms-transform:matrix(0.271250,0.003255,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.271250,0.003255,-0.003000,0.249982,0,0);}
.m4f_c00292{transform:matrix(0.271384,0.002985,-0.002750,0.249985,0,0);-ms-transform:matrix(0.271384,0.002985,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.271384,0.002985,-0.002750,0.249985,0,0);}
.me3_c00292{transform:matrix(0.271565,0.003259,-0.003000,0.249982,0,0);-ms-transform:matrix(0.271565,0.003259,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.271565,0.003259,-0.003000,0.249982,0,0);}
.m48_c00292{transform:matrix(0.271619,0.002988,-0.002750,0.249985,0,0);-ms-transform:matrix(0.271619,0.002988,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.271619,0.002988,-0.002750,0.249985,0,0);}
.maf_c00292{transform:matrix(0.271664,0.002988,-0.002750,0.249985,0,0);-ms-transform:matrix(0.271664,0.002988,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.271664,0.002988,-0.002750,0.249985,0,0);}
.mb6_c00292{transform:matrix(0.272059,0.002993,-0.002750,0.249985,0,0);-ms-transform:matrix(0.272059,0.002993,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.272059,0.002993,-0.002750,0.249985,0,0);}
.m66_c00292{transform:matrix(0.272064,0.002993,-0.002750,0.249985,0,0);-ms-transform:matrix(0.272064,0.002993,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.272064,0.002993,-0.002750,0.249985,0,0);}
.mbb_c00292{transform:matrix(0.272167,0.003538,-0.003250,0.249979,0,0);-ms-transform:matrix(0.272167,0.003538,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.272167,0.003538,-0.003250,0.249979,0,0);}
.m101_c00292{transform:matrix(0.272369,0.004086,-0.003750,0.249972,0,0);-ms-transform:matrix(0.272369,0.004086,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.272369,0.004086,-0.003750,0.249972,0,0);}
.me2_c00292{transform:matrix(0.272765,0.003273,-0.003000,0.249982,0,0);-ms-transform:matrix(0.272765,0.003273,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.272765,0.003273,-0.003000,0.249982,0,0);}
.mfb_c00292{transform:matrix(0.273199,0.004098,-0.003750,0.249972,0,0);-ms-transform:matrix(0.273199,0.004098,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.273199,0.004098,-0.003750,0.249972,0,0);}
.m7a_c00292{transform:matrix(0.273438,0.003008,-0.002750,0.249985,0,0);-ms-transform:matrix(0.273438,0.003008,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.273438,0.003008,-0.002750,0.249985,0,0);}
.m6e_c00292{transform:matrix(0.273593,0.003010,-0.002750,0.249985,0,0);-ms-transform:matrix(0.273593,0.003010,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.273593,0.003010,-0.002750,0.249985,0,0);}
.me9_c00292{transform:matrix(0.273740,0.003285,-0.003000,0.249982,0,0);-ms-transform:matrix(0.273740,0.003285,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.273740,0.003285,-0.003000,0.249982,0,0);}
.m6a_c00292{transform:matrix(0.273768,0.003011,-0.002750,0.249985,0,0);-ms-transform:matrix(0.273768,0.003011,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.273768,0.003011,-0.002750,0.249985,0,0);}
.m79_c00292{transform:matrix(0.273833,0.003012,-0.002750,0.249985,0,0);-ms-transform:matrix(0.273833,0.003012,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.273833,0.003012,-0.002750,0.249985,0,0);}
.m9e_c00292{transform:matrix(0.274838,0.003023,-0.002750,0.249985,0,0);-ms-transform:matrix(0.274838,0.003023,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.274838,0.003023,-0.002750,0.249985,0,0);}
.me4_c00292{transform:matrix(0.275560,0.003307,-0.003000,0.249982,0,0);-ms-transform:matrix(0.275560,0.003307,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.275560,0.003307,-0.003000,0.249982,0,0);}
.m98_c00292{transform:matrix(0.275848,0.003034,-0.002750,0.249985,0,0);-ms-transform:matrix(0.275848,0.003034,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.275848,0.003034,-0.002750,0.249985,0,0);}
.m7b_c00292{transform:matrix(0.276068,0.003037,-0.002750,0.249985,0,0);-ms-transform:matrix(0.276068,0.003037,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.276068,0.003037,-0.002750,0.249985,0,0);}
.mfd_c00292{transform:matrix(0.276824,0.004152,-0.003750,0.249972,0,0);-ms-transform:matrix(0.276824,0.004152,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.276824,0.004152,-0.003750,0.249972,0,0);}
.m56_c00292{transform:matrix(0.277815,0.003334,-0.003000,0.249982,0,0);-ms-transform:matrix(0.277815,0.003334,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.277815,0.003334,-0.003000,0.249982,0,0);}
.mc2_c00292{transform:matrix(0.277872,0.003612,-0.003250,0.249979,0,0);-ms-transform:matrix(0.277872,0.003612,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.277872,0.003612,-0.003250,0.249979,0,0);}
.m70_c00292{transform:matrix(0.278603,0.003065,-0.002750,0.249985,0,0);-ms-transform:matrix(0.278603,0.003065,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.278603,0.003065,-0.002750,0.249985,0,0);}
.me8_c00292{transform:matrix(0.278915,0.003347,-0.003000,0.249982,0,0);-ms-transform:matrix(0.278915,0.003347,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.278915,0.003347,-0.003000,0.249982,0,0);}
.ma2_c00292{transform:matrix(0.279849,0.002519,-0.002250,0.249990,0,0);-ms-transform:matrix(0.279849,0.002519,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.279849,0.002519,-0.002250,0.249990,0,0);}
.m99_c00292{transform:matrix(0.279863,0.003078,-0.002750,0.249985,0,0);-ms-transform:matrix(0.279863,0.003078,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.279863,0.003078,-0.002750,0.249985,0,0);}
.md5_c00292{transform:matrix(0.281100,0.003373,-0.003000,0.249982,0,0);-ms-transform:matrix(0.281100,0.003373,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.281100,0.003373,-0.003000,0.249982,0,0);}
.m93_c00292{transform:matrix(0.281147,0.003936,-0.003500,0.249976,0,0);-ms-transform:matrix(0.281147,0.003936,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.281147,0.003936,-0.003500,0.249976,0,0);}
.mb4_c00292{transform:matrix(0.281438,0.003096,-0.002750,0.249985,0,0);-ms-transform:matrix(0.281438,0.003096,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.281438,0.003096,-0.002750,0.249985,0,0);}
.mda_c00292{transform:matrix(0.281775,0.003381,-0.003000,0.249982,0,0);-ms-transform:matrix(0.281775,0.003381,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.281775,0.003381,-0.003000,0.249982,0,0);}
.m43_c00292{transform:matrix(0.282958,0.003113,-0.002750,0.249985,0,0);-ms-transform:matrix(0.282958,0.003113,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.282958,0.003113,-0.002750,0.249985,0,0);}
.m33_c00292{transform:matrix(0.283076,0.003680,-0.003250,0.249979,0,0);-ms-transform:matrix(0.283076,0.003680,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.283076,0.003680,-0.003250,0.249979,0,0);}
.m2c_c00292{transform:matrix(0.283786,0.003689,-0.003250,0.249979,0,0);-ms-transform:matrix(0.283786,0.003689,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.283786,0.003689,-0.003250,0.249979,0,0);}
.m18_c00292{transform:matrix(0.284375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284375,0.000000,0.000000,0.250000,0,0);}
.ma6_c00292{transform:matrix(0.284483,0.002560,-0.002250,0.249990,0,0);-ms-transform:matrix(0.284483,0.002560,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.284483,0.002560,-0.002250,0.249990,0,0);}
.mc0_c00292{transform:matrix(0.284721,0.003701,-0.003250,0.249979,0,0);-ms-transform:matrix(0.284721,0.003701,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.284721,0.003701,-0.003250,0.249979,0,0);}
.mf6_c00292{transform:matrix(0.284838,0.004273,-0.003750,0.249972,0,0);-ms-transform:matrix(0.284838,0.004273,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.284838,0.004273,-0.003750,0.249972,0,0);}
.m46_c00292{transform:matrix(0.284853,0.003133,-0.002750,0.249985,0,0);-ms-transform:matrix(0.284853,0.003133,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.284853,0.003133,-0.002750,0.249985,0,0);}
.m34_c00292{transform:matrix(0.284971,0.003705,-0.003250,0.249979,0,0);-ms-transform:matrix(0.284971,0.003705,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.284971,0.003705,-0.003250,0.249979,0,0);}
.m29_c00292{transform:matrix(0.285016,0.003705,-0.003250,0.249979,0,0);-ms-transform:matrix(0.285016,0.003705,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.285016,0.003705,-0.003250,0.249979,0,0);}
.m8a_c00292{transform:matrix(0.285612,0.003999,-0.003500,0.249976,0,0);-ms-transform:matrix(0.285612,0.003999,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.285612,0.003999,-0.003500,0.249976,0,0);}
.m5c_c00292{transform:matrix(0.285864,0.003430,-0.003000,0.249982,0,0);-ms-transform:matrix(0.285864,0.003430,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.285864,0.003430,-0.003000,0.249982,0,0);}
.m9a_c00292{transform:matrix(0.287223,0.003159,-0.002750,0.249985,0,0);-ms-transform:matrix(0.287223,0.003159,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.287223,0.003159,-0.002750,0.249985,0,0);}
.mf4_c00292{transform:matrix(0.288198,0.004323,-0.003750,0.249972,0,0);-ms-transform:matrix(0.288198,0.004323,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.288198,0.004323,-0.003750,0.249972,0,0);}
.mf1_c00292{transform:matrix(0.288443,0.004327,-0.003750,0.249972,0,0);-ms-transform:matrix(0.288443,0.004327,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.288443,0.004327,-0.003750,0.249972,0,0);}
.mff_c00292{transform:matrix(0.288708,0.004331,-0.003750,0.249972,0,0);-ms-transform:matrix(0.288708,0.004331,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.288708,0.004331,-0.003750,0.249972,0,0);}
.m57_c00292{transform:matrix(0.289514,0.003474,-0.003000,0.249982,0,0);-ms-transform:matrix(0.289514,0.003474,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.289514,0.003474,-0.003000,0.249982,0,0);}
.mfe_c00292{transform:matrix(0.289697,0.004345,-0.003750,0.249972,0,0);-ms-transform:matrix(0.289697,0.004345,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.289697,0.004345,-0.003750,0.249972,0,0);}
.mb1_c00292{transform:matrix(0.290422,0.003195,-0.002750,0.249985,0,0);-ms-transform:matrix(0.290422,0.003195,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.290422,0.003195,-0.002750,0.249985,0,0);}
.m2f_c00292{transform:matrix(0.290735,0.003780,-0.003250,0.249979,0,0);-ms-transform:matrix(0.290735,0.003780,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.290735,0.003780,-0.003250,0.249979,0,0);}
.m58_c00292{transform:matrix(0.291699,0.003500,-0.003000,0.249982,0,0);-ms-transform:matrix(0.291699,0.003500,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.291699,0.003500,-0.003000,0.249982,0,0);}
.m39_c00292{transform:matrix(0.291860,0.003794,-0.003250,0.249979,0,0);-ms-transform:matrix(0.291860,0.003794,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.291860,0.003794,-0.003250,0.249979,0,0);}
.me6_c00292{transform:matrix(0.293134,0.003518,-0.003000,0.249982,0,0);-ms-transform:matrix(0.293134,0.003518,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.293134,0.003518,-0.003000,0.249982,0,0);}
.mf5_c00292{transform:matrix(0.293677,0.004405,-0.003750,0.249972,0,0);-ms-transform:matrix(0.293677,0.004405,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.293677,0.004405,-0.003750,0.249972,0,0);}
.mba_c00292{transform:matrix(0.293805,0.003819,-0.003250,0.249979,0,0);-ms-transform:matrix(0.293805,0.003819,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.293805,0.003819,-0.003250,0.249979,0,0);}
.mb9_c00292{transform:matrix(0.295037,0.003245,-0.002750,0.249985,0,0);-ms-transform:matrix(0.295037,0.003245,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.295037,0.003245,-0.002750,0.249985,0,0);}
.m35_c00292{transform:matrix(0.295455,0.003841,-0.003250,0.249979,0,0);-ms-transform:matrix(0.295455,0.003841,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.295455,0.003841,-0.003250,0.249979,0,0);}
.m55_c00292{transform:matrix(0.295459,0.003546,-0.003000,0.249982,0,0);-ms-transform:matrix(0.295459,0.003546,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.295459,0.003546,-0.003000,0.249982,0,0);}
.mad_c00292{transform:matrix(0.295602,0.003252,-0.002750,0.249985,0,0);-ms-transform:matrix(0.295602,0.003252,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.295602,0.003252,-0.002750,0.249985,0,0);}
.m90_c00292{transform:matrix(0.295891,0.004142,-0.003500,0.249976,0,0);-ms-transform:matrix(0.295891,0.004142,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.295891,0.004142,-0.003500,0.249976,0,0);}
.m8e_c00292{transform:matrix(0.295951,0.004143,-0.003500,0.249976,0,0);-ms-transform:matrix(0.295951,0.004143,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.295951,0.004143,-0.003500,0.249976,0,0);}
.m97_c00292{transform:matrix(0.296152,0.003258,-0.002750,0.249985,0,0);-ms-transform:matrix(0.296152,0.003258,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.296152,0.003258,-0.002750,0.249985,0,0);}
.mb7_c00292{transform:matrix(0.296177,0.003258,-0.002750,0.249985,0,0);-ms-transform:matrix(0.296177,0.003258,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.296177,0.003258,-0.002750,0.249985,0,0);}
.ma9_c00292{transform:matrix(0.296423,0.002668,-0.002250,0.249990,0,0);-ms-transform:matrix(0.296423,0.002668,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.296423,0.002668,-0.002250,0.249990,0,0);}
.mae_c00292{transform:matrix(0.296527,0.003262,-0.002750,0.249985,0,0);-ms-transform:matrix(0.296527,0.003262,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.296527,0.003262,-0.002750,0.249985,0,0);}
.mec_c00292{transform:matrix(0.296782,0.004452,-0.003750,0.249972,0,0);-ms-transform:matrix(0.296782,0.004452,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.296782,0.004452,-0.003750,0.249972,0,0);}
.m9d_c00292{transform:matrix(0.296947,0.003266,-0.002750,0.249985,0,0);-ms-transform:matrix(0.296947,0.003266,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.296947,0.003266,-0.002750,0.249985,0,0);}
.mfc_c00292{transform:matrix(0.297372,0.004461,-0.003750,0.249972,0,0);-ms-transform:matrix(0.297372,0.004461,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.297372,0.004461,-0.003750,0.249972,0,0);}
.m32_c00292{transform:matrix(0.297575,0.003868,-0.003250,0.249979,0,0);-ms-transform:matrix(0.297575,0.003868,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.297575,0.003868,-0.003250,0.249979,0,0);}
.mf0_c00292{transform:matrix(0.298071,0.004471,-0.003750,0.249972,0,0);-ms-transform:matrix(0.298071,0.004471,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.298071,0.004471,-0.003750,0.249972,0,0);}
.mdb_c00292{transform:matrix(0.298873,0.003586,-0.003000,0.249982,0,0);-ms-transform:matrix(0.298873,0.003586,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.298873,0.003586,-0.003000,0.249982,0,0);}
.m3a_c00292{transform:matrix(0.299732,0.003297,-0.002750,0.249985,0,0);-ms-transform:matrix(0.299732,0.003297,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.299732,0.003297,-0.002750,0.249985,0,0);}
.med_c00292{transform:matrix(0.300676,0.004510,-0.003750,0.249972,0,0);-ms-transform:matrix(0.300676,0.004510,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.300676,0.004510,-0.003750,0.249972,0,0);}
.mf9_c00292{transform:matrix(0.300811,0.004512,-0.003750,0.249972,0,0);-ms-transform:matrix(0.300811,0.004512,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.300811,0.004512,-0.003750,0.249972,0,0);}
.m95_c00292{transform:matrix(0.300991,0.004214,-0.003500,0.249976,0,0);-ms-transform:matrix(0.300991,0.004214,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.300991,0.004214,-0.003500,0.249976,0,0);}
.mfa_c00292{transform:matrix(0.301146,0.004517,-0.003750,0.249972,0,0);-ms-transform:matrix(0.301146,0.004517,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.301146,0.004517,-0.003750,0.249972,0,0);}
.mb0_c00292{transform:matrix(0.301247,0.003314,-0.002750,0.249985,0,0);-ms-transform:matrix(0.301247,0.003314,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.301247,0.003314,-0.002750,0.249985,0,0);}
.m8b_c00292{transform:matrix(0.301980,0.004228,-0.003500,0.249976,0,0);-ms-transform:matrix(0.301980,0.004228,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.301980,0.004228,-0.003500,0.249976,0,0);}
.m9b_c00292{transform:matrix(0.302032,0.003322,-0.002750,0.249985,0,0);-ms-transform:matrix(0.302032,0.003322,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.302032,0.003322,-0.002750,0.249985,0,0);}
.ma0_c00292{transform:matrix(0.302695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302695,0.000000,0.000000,0.250000,0,0);}
.mf3_c00292{transform:matrix(0.303396,0.004551,-0.003750,0.249972,0,0);-ms-transform:matrix(0.303396,0.004551,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.303396,0.004551,-0.003750,0.249972,0,0);}
.m37_c00292{transform:matrix(0.303499,0.003945,-0.003250,0.249979,0,0);-ms-transform:matrix(0.303499,0.003945,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.303499,0.003945,-0.003250,0.249979,0,0);}
.m1d_c00292{transform:matrix(0.305625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305625,0.000000,0.000000,0.250000,0,0);}
.m15_c00292{transform:matrix(0.305740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305740,0.000000,0.000000,0.250000,0,0);}
.maa_c00292{transform:matrix(0.305823,0.002752,-0.002250,0.249990,0,0);-ms-transform:matrix(0.305823,0.002752,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.305823,0.002752,-0.002250,0.249990,0,0);}
.mbc_c00292{transform:matrix(0.309194,0.004020,-0.003250,0.249979,0,0);-ms-transform:matrix(0.309194,0.004020,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.309194,0.004020,-0.003250,0.249979,0,0);}
.me_c00292{transform:matrix(0.314485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314485,0.000000,0.000000,0.250000,0,0);}
.mb_c00292{transform:matrix(0.352755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352755,0.000000,0.000000,0.250000,0,0);}
.m17_c00292{transform:matrix(0.357560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357560,0.000000,0.000000,0.250000,0,0);}
.m7_c00292{transform:matrix(0.364005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364005,0.000000,0.000000,0.250000,0,0);}
.mc6_c00292{transform:matrix(0.372334,0.004840,-0.003250,0.249979,0,0);-ms-transform:matrix(0.372334,0.004840,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.372334,0.004840,-0.003250,0.249979,0,0);}
.mc9_c00292{transform:matrix(0.432208,0.005619,-0.003250,0.249979,0,0);-ms-transform:matrix(0.432208,0.005619,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.432208,0.005619,-0.003250,0.249979,0,0);}
.m3_c00292{transform:matrix(0.432665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432665,0.000000,0.000000,0.250000,0,0);}
.m4_c00292{transform:matrix(0.459305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459305,0.000000,0.000000,0.250000,0,0);}
.m6_c00292{transform:matrix(0.460135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460135,0.000000,0.000000,0.250000,0,0);}
.mc_c00292{transform:matrix(0.461125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461125,0.000000,0.000000,0.250000,0,0);}
.m8_c00292{transform:matrix(0.463150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463150,0.000000,0.000000,0.250000,0,0);}
.m0_c00292{transform:matrix(0.465725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465725,0.000000,0.000000,0.250000,0,0);}
.m16_c00292{transform:matrix(0.474340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474340,0.000000,0.000000,0.250000,0,0);}
.m1b_c00292{transform:matrix(0.492630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492630,0.000000,0.000000,0.250000,0,0);}
.m14_c00292{transform:matrix(0.505320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505320,0.000000,0.000000,0.250000,0,0);}
.m1a_c00292{transform:matrix(0.519265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519265,0.000000,0.000000,0.250000,0,0);}
.m19_c00292{transform:matrix(0.521355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521355,0.000000,0.000000,0.250000,0,0);}
.m5_c00292{transform:matrix(0.539010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.539010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.539010,0.000000,0.000000,0.250000,0,0);}
.ma_c00292{transform:matrix(0.540780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540780,0.000000,0.000000,0.250000,0,0);}
.m5f_c00292{transform:matrix(0.540796,0.006490,-0.003000,0.249982,0,0);-ms-transform:matrix(0.540796,0.006490,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.540796,0.006490,-0.003000,0.249982,0,0);}
.m1_c00292{transform:matrix(0.541770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541770,0.000000,0.000000,0.250000,0,0);}
.m9_c00292{transform:matrix(0.546010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.546010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.546010,0.000000,0.000000,0.250000,0,0);}
.m1c_c00292{transform:matrix(0.548730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548730,0.000000,0.000000,0.250000,0,0);}
.m13_c00292{transform:matrix(0.549950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549950,0.000000,0.000000,0.250000,0,0);}
.m2_c00292{transform:matrix(0.551165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551165,0.000000,0.000000,0.250000,0,0);}
.mc8_c00292{transform:matrix(0.551953,0.007175,-0.003250,0.249979,0,0);-ms-transform:matrix(0.551953,0.007175,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.551953,0.007175,-0.003250,0.249979,0,0);}
.mf_c00292{transform:matrix(0.554550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554550,0.000000,0.000000,0.250000,0,0);}
.m10_c00292{transform:matrix(0.637540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.637540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.637540,0.000000,0.000000,0.250000,0,0);}
.mc7_c00292{transform:matrix(0.764790,0.009942,-0.003250,0.249979,0,0);-ms-transform:matrix(0.764790,0.009942,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.764790,0.009942,-0.003250,0.249979,0,0);}
.mc4_c00292{transform:matrix(0.766255,0.009961,-0.003250,0.249979,0,0);-ms-transform:matrix(0.766255,0.009961,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.766255,0.009961,-0.003250,0.249979,0,0);}
.m61_c00292{transform:matrix(0.882261,0.010587,-0.003000,0.249982,0,0);-ms-transform:matrix(0.882261,0.010587,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.882261,0.010587,-0.003000,0.249982,0,0);}
.m60_c00292{transform:matrix(0.979419,0.011753,-0.003000,0.249982,0,0);-ms-transform:matrix(0.979419,0.011753,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.979419,0.011753,-0.003000,0.249982,0,0);}
.mc3_c00292{transform:matrix(3.277818,0.042612,-0.003250,0.249979,0,0);-ms-transform:matrix(3.277818,0.042612,-0.003250,0.249979,0,0);-webkit-transform:matrix(3.277818,0.042612,-0.003250,0.249979,0,0);}
.m5e_c00292{transform:matrix(3.959125,0.047509,-0.003000,0.249982,0,0);-ms-transform:matrix(3.959125,0.047509,-0.003000,0.249982,0,0);-webkit-transform:matrix(3.959125,0.047509,-0.003000,0.249982,0,0);}
.mc5_c00292{transform:matrix(5.301692,0.068922,-0.003250,0.249979,0,0);-ms-transform:matrix(5.301692,0.068922,-0.003250,0.249979,0,0);-webkit-transform:matrix(5.301692,0.068922,-0.003250,0.249979,0,0);}
.m5d_c00292{transform:matrix(9.877379,0.118529,-0.003000,0.249982,0,0);-ms-transform:matrix(9.877379,0.118529,-0.003000,0.249982,0,0);-webkit-transform:matrix(9.877379,0.118529,-0.003000,0.249982,0,0);}
.v0_c00292{vertical-align:0.000000px;}
.ls0_c00292{letter-spacing:0.000000px;}
.sc__c00292{text-shadow:none;}
.sc0_c00292{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__c00292{-webkit-text-stroke:0px transparent;}
.sc0_c00292{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00292{word-spacing:0.000000px;}
.fc0_c00292{color:transparent;}
.fs9_c00292{font-size:18.001296px;}
.fsd_c00292{font-size:24.002028px;}
.fs1_c00292{font-size:30.000000px;}
.fs0_c00292{font-size:36.000000px;}
.fs3_c00292{font-size:66.000000px;}
.fsc_c00292{font-size:66.002673px;}
.fsb_c00292{font-size:66.003993px;}
.fs8_c00292{font-size:66.004752px;}
.fs6_c00292{font-size:66.005577px;}
.fsa_c00292{font-size:66.006468px;}
.fsf_c00292{font-size:66.007425px;}
.fs2_c00292{font-size:72.000000px;}
.fs7_c00292{font-size:72.004356px;}
.fse_c00292{font-size:72.005184px;}
.fs5_c00292{font-size:72.006084px;}
.fs10_c00292{font-size:72.008100px;}
.fs4_c00292{font-size:78.000000px;}
.y0_c00292{bottom:0.000000px;}
.yf8_c00292{bottom:111.695842px;}
.yf7_c00292{bottom:112.369927px;}
.yf6_c00292{bottom:113.047192px;}
.yf5_c00292{bottom:113.948002px;}
.yf4_c00292{bottom:115.019895px;}
.yf3_c00292{bottom:128.712562px;}
.yf2_c00292{bottom:129.830475px;}
.yf1_c00292{bottom:131.021467px;}
.yf0_c00292{bottom:131.847757px;}
.yef_c00292{bottom:133.472055px;}
.yee_c00292{bottom:134.318280px;}
.yed_c00292{bottom:135.958530px;}
.yec_c00292{bottom:137.433000px;}
.y12_c00292{bottom:138.651000px;}
.yeb_c00292{bottom:166.872975px;}
.yea_c00292{bottom:167.727300px;}
.ye9_c00292{bottom:168.075128px;}
.ye8_c00292{bottom:169.233855px;}
.ye7_c00292{bottom:169.561500px;}
.ye6_c00292{bottom:193.757250px;}
.ye5_c00292{bottom:194.275582px;}
.ye4_c00292{bottom:194.931863px;}
.ye3_c00292{bottom:196.413870px;}
.ye2_c00292{bottom:197.223960px;}
.ye1_c00292{bottom:197.738558px;}
.ye0_c00292{bottom:199.378875px;}
.ydf_c00292{bottom:200.845177px;}
.yde_c00292{bottom:201.153000px;}
.y11_c00292{bottom:201.552000px;}
.ydd_c00292{bottom:228.914724px;}
.ydc_c00292{bottom:229.715586px;}
.ydb_c00292{bottom:230.479728px;}
.yda_c00292{bottom:231.099498px;}
.yd9_c00292{bottom:232.467360px;}
.yd8_c00292{bottom:256.348998px;}
.yd7_c00292{bottom:257.559522px;}
.yd6_c00292{bottom:257.788116px;}
.yd5_c00292{bottom:258.978870px;}
.yd4_c00292{bottom:259.192884px;}
.yd3_c00292{bottom:259.653888px;}
.yd2_c00292{bottom:260.296062px;}
.yd1_c00292{bottom:260.747214px;}
.yd0_c00292{bottom:261.515076px;}
.ycf_c00292{bottom:262.167864px;}
.y10_c00292{bottom:264.201000px;}
.yce_c00292{bottom:289.047966px;}
.ycd_c00292{bottom:289.845024px;}
.ycc_c00292{bottom:290.373306px;}
.ycb_c00292{bottom:291.157494px;}
.yca_c00292{bottom:292.074432px;}
.yc9_c00292{bottom:292.469568px;}
.yc8_c00292{bottom:292.877898px;}
.yc7_c00292{bottom:293.655516px;}
.yc6_c00292{bottom:294.190188px;}
.yc5_c00292{bottom:294.841500px;}
.yc4_c00292{bottom:320.927586px;}
.yc3_c00292{bottom:321.974106px;}
.yc2_c00292{bottom:322.644894px;}
.yc1_c00292{bottom:323.820960px;}
.yc0_c00292{bottom:324.355686px;}
.ybf_c00292{bottom:324.887010px;}
.ybe_c00292{bottom:325.528566px;}
.ybd_c00292{bottom:326.056758px;}
.yf_c00292{bottom:327.378000px;}
.ybc_c00292{bottom:327.511500px;}
.ybb_c00292{bottom:345.709631px;}
.yba_c00292{bottom:346.058012px;}
.yb9_c00292{bottom:346.557293px;}
.yb8_c00292{bottom:346.890134px;}
.yb7_c00292{bottom:348.719064px;}
.yb6_c00292{bottom:350.798123px;}
.yb4_c00292{bottom:353.027691px;}
.yb3_c00292{bottom:353.487560px;}
.yb5_c00292{bottom:353.969025px;}
.yb2_c00292{bottom:354.477438px;}
.yb1_c00292{bottom:355.326644px;}
.yb0_c00292{bottom:355.772745px;}
.yaf_c00292{bottom:356.297783px;}
.yae_c00292{bottom:358.201782px;}
.yad_c00292{bottom:358.910841px;}
.ye_c00292{bottom:359.238000px;}
.yac_c00292{bottom:360.181500px;}
.ya7_c00292{bottom:389.483911px;}
.ya8_c00292{bottom:389.484558px;}
.yab_c00292{bottom:389.485077px;}
.ya9_c00292{bottom:389.485131px;}
.yaa_c00292{bottom:389.485780px;}
.ya6_c00292{bottom:417.492081px;}
.ya5_c00292{bottom:417.866416px;}
.ya4_c00292{bottom:418.338234px;}
.ya3_c00292{bottom:419.307048px;}
.ya2_c00292{bottom:420.643597px;}
.ya1_c00292{bottom:421.249378px;}
.ya0_c00292{bottom:422.330623px;}
.y9f_c00292{bottom:423.408733px;}
.y9e_c00292{bottom:423.631500px;}
.yd_c00292{bottom:423.771000px;}
.y9d_c00292{bottom:449.325496px;}
.y9c_c00292{bottom:450.428743px;}
.y9b_c00292{bottom:451.505274px;}
.y9a_c00292{bottom:451.808983px;}
.y99_c00292{bottom:452.112815px;}
.y98_c00292{bottom:452.795658px;}
.y97_c00292{bottom:452.980446px;}
.y96_c00292{bottom:453.585475px;}
.y95_c00292{bottom:453.984049px;}
.y94_c00292{bottom:454.681500px;}
.yc_c00292{bottom:455.502000px;}
.y93_c00292{bottom:486.928500px;}
.y92_c00292{bottom:512.238321px;}
.y91_c00292{bottom:512.957110px;}
.y90_c00292{bottom:514.050235px;}
.y8f_c00292{bottom:514.552166px;}
.y8e_c00292{bottom:515.867826px;}
.y8d_c00292{bottom:516.120028px;}
.y8c_c00292{bottom:516.833175px;}
.y8b_c00292{bottom:517.453938px;}
.y8a_c00292{bottom:518.401500px;}
.yb_c00292{bottom:519.222000px;}
.y89_c00292{bottom:548.613909px;}
.y87_c00292{bottom:548.614140px;}
.y88_c00292{bottom:548.614242px;}
.y86_c00292{bottom:573.758022px;}
.y85_c00292{bottom:574.203915px;}
.y84_c00292{bottom:574.668330px;}
.y83_c00292{bottom:576.044964px;}
.y82_c00292{bottom:576.528762px;}
.y81_c00292{bottom:577.900713px;}
.y80_c00292{bottom:578.369706px;}
.y7f_c00292{bottom:578.981646px;}
.y7e_c00292{bottom:580.524642px;}
.ya_c00292{bottom:581.038500px;}
.y7d_c00292{bottom:581.583000px;}
.y7c_c00292{bottom:607.993048px;}
.y7b_c00292{bottom:609.343956px;}
.y7a_c00292{bottom:609.725603px;}
.y79_c00292{bottom:610.530141px;}
.y78_c00292{bottom:611.051382px;}
.y77_c00292{bottom:612.114504px;}
.y76_c00292{bottom:612.899293px;}
.y75_c00292{bottom:638.209554px;}
.y74_c00292{bottom:638.571647px;}
.y73_c00292{bottom:639.653155px;}
.y72_c00292{bottom:640.021353px;}
.y71_c00292{bottom:640.621392px;}
.y70_c00292{bottom:640.995629px;}
.y6f_c00292{bottom:641.954856px;}
.y6e_c00292{bottom:642.204089px;}
.y6d_c00292{bottom:643.410321px;}
.y6c_c00292{bottom:644.491500px;}
.y9_c00292{bottom:645.028500px;}
.y68_c00292{bottom:674.223800px;}
.y6a_c00292{bottom:674.223882px;}
.y69_c00292{bottom:674.224536px;}
.y6b_c00292{bottom:674.224619px;}
.y67_c00292{bottom:701.886077px;}
.y66_c00292{bottom:702.421028px;}
.y65_c00292{bottom:702.911862px;}
.y64_c00292{bottom:703.344060px;}
.y63_c00292{bottom:703.871274px;}
.y62_c00292{bottom:704.914614px;}
.y61_c00292{bottom:706.509965px;}
.y60_c00292{bottom:707.306568px;}
.y8_c00292{bottom:708.067500px;}
.y5f_c00292{bottom:708.479241px;}
.y5e_c00292{bottom:733.683609px;}
.y5d_c00292{bottom:734.675589px;}
.y5c_c00292{bottom:735.037550px;}
.y5b_c00292{bottom:736.119058px;}
.y5a_c00292{bottom:736.496232px;}
.y59_c00292{bottom:737.455195px;}
.y58_c00292{bottom:738.183291px;}
.y57_c00292{bottom:739.261500px;}
.y7_c00292{bottom:739.627500px;}
.y56_c00292{bottom:769.915500px;}
.y55_c00292{bottom:792.226440px;}
.y54_c00292{bottom:792.576342px;}
.y53_c00292{bottom:792.867924px;}
.y52_c00292{bottom:794.630358px;}
.y50_c00292{bottom:798.024066px;}
.y4f_c00292{bottom:798.422640px;}
.y51_c00292{bottom:798.942492px;}
.y4e_c00292{bottom:799.213254px;}
.y4d_c00292{bottom:799.598670px;}
.y4c_c00292{bottom:799.996812px;}
.y4b_c00292{bottom:801.439098px;}
.y4a_c00292{bottom:802.621572px;}
.y49_c00292{bottom:803.428620px;}
.y6_c00292{bottom:804.310500px;}
.y48_c00292{bottom:804.601500px;}
.y47_c00292{bottom:831.411276px;}
.y46_c00292{bottom:832.275629px;}
.y45_c00292{bottom:833.128035px;}
.y44_c00292{bottom:833.971334px;}
.y43_c00292{bottom:834.571604px;}
.y5_c00292{bottom:835.393500px;}
.y42_c00292{bottom:835.646744px;}
.y41_c00292{bottom:862.017730px;}
.y40_c00292{bottom:862.380087px;}
.y3f_c00292{bottom:863.452257px;}
.y3e_c00292{bottom:863.933430px;}
.y3d_c00292{bottom:864.666673px;}
.y3c_c00292{bottom:865.114467px;}
.y3b_c00292{bottom:866.238199px;}
.y3a_c00292{bottom:866.594286px;}
.y39_c00292{bottom:866.968935px;}
.y38_c00292{bottom:894.554028px;}
.y37_c00292{bottom:895.640883px;}
.y36_c00292{bottom:896.018238px;}
.y35_c00292{bottom:897.464710px;}
.y34_c00292{bottom:898.070624px;}
.y4_c00292{bottom:898.428000px;}
.y33_c00292{bottom:899.139856px;}
.y32_c00292{bottom:899.371500px;}
.y31_c00292{bottom:927.091645px;}
.y30_c00292{bottom:927.807399px;}
.y2f_c00292{bottom:928.184704px;}
.y2e_c00292{bottom:929.025297px;}
.y2d_c00292{bottom:929.390590px;}
.y3_c00292{bottom:930.021000px;}
.y2c_c00292{bottom:930.691500px;}
.y2b_c00292{bottom:989.312430px;}
.y2a_c00292{bottom:989.679407px;}
.y29_c00292{bottom:990.792981px;}
.y28_c00292{bottom:991.199346px;}
.y27_c00292{bottom:992.089467px;}
.y26_c00292{bottom:992.776875px;}
.y25_c00292{bottom:992.975805px;}
.y2_c00292{bottom:993.883500px;}
.y24_c00292{bottom:993.959765px;}
.y23_c00292{bottom:994.136553px;}
.y1e_c00292{bottom:1024.466691px;}
.y1f_c00292{bottom:1024.466739px;}
.y20_c00292{bottom:1024.467228px;}
.y22_c00292{bottom:1024.467345px;}
.y21_c00292{bottom:1024.467657px;}
.y1d_c00292{bottom:1051.250795px;}
.y1c_c00292{bottom:1051.830257px;}
.y1b_c00292{bottom:1053.694047px;}
.y1a_c00292{bottom:1053.946884px;}
.y19_c00292{bottom:1054.824306px;}
.y18_c00292{bottom:1055.824754px;}
.y17_c00292{bottom:1056.126185px;}
.y16_c00292{bottom:1057.105943px;}
.y1_c00292{bottom:1057.461000px;}
.y15_c00292{bottom:1057.548300px;}
.y14_c00292{bottom:1058.671500px;}
.y13_c00292{bottom:1113.600000px;}
.hb_c00292{height:18.001296px;}
.hf_c00292{height:24.002028px;}
.h3_c00292{height:30.000000px;}
.h2_c00292{height:36.000000px;}
.h5_c00292{height:66.000000px;}
.he_c00292{height:66.002673px;}
.hd_c00292{height:66.003993px;}
.ha_c00292{height:66.004752px;}
.h8_c00292{height:66.005577px;}
.hc_c00292{height:66.006468px;}
.h11_c00292{height:66.007425px;}
.h4_c00292{height:72.000000px;}
.h9_c00292{height:72.004356px;}
.h10_c00292{height:72.005184px;}
.h7_c00292{height:72.006084px;}
.h12_c00292{height:72.008100px;}
.h6_c00292{height:78.000000px;}
.h1_c00292{height:1165.500000px;}
.h0_c00292{height:1165.800000px;}
.w0_c00292{width:915.000000px;}
.x0_c00292{left:0.000000px;}
.xb_c00292{left:135.000000px;}
.xa_c00292{left:136.620000px;}
.x7_c00292{left:138.240000px;}
.x5_c00292{left:139.320000px;}
.x3_c00292{left:141.210000px;}
.x1_c00292{left:142.290000px;}
.xc_c00292{left:181.170000px;}
.x9_c00292{left:182.520000px;}
.x8_c00292{left:183.600000px;}
.x6_c00292{left:184.950000px;}
.x4_c00292{left:186.840000px;}
.x2_c00292{left:187.920000px;}
.xd_c00292{left:210.870000px;}
.x9e_c00292{left:242.854500px;}
.x76_c00292{left:244.622081px;}
.x61_c00292{left:245.701689px;}
.x3e_c00292{left:246.728226px;}
.x2d_c00292{left:248.521820px;}
.x36_c00292{left:249.603948px;}
.x11_c00292{left:251.482500px;}
.x9f_c00292{left:264.697500px;}
.x8a_c00292{left:266.595000px;}
.x6f_c00292{left:267.696000px;}
.x1f_c00292{left:271.778319px;}
.x77_c00292{left:277.294541px;}
.x62_c00292{left:278.915199px;}
.x4b_c00292{left:280.534053px;}
.x2e_c00292{left:282.580820px;}
.x42_c00292{left:293.220000px;}
.x91_c00292{left:310.028394px;}
.x54_c00292{left:312.241235px;}
.x2f_c00292{left:314.952320px;}
.x1b_c00292{left:319.146347px;}
.x8b_c00292{left:320.871000px;}
.x5a_c00292{left:323.020500px;}
.x64_c00292{left:332.770500px;}
.x12_c00292{left:337.882500px;}
.xa0_c00292{left:341.946000px;}
.x7a_c00292{left:343.015500px;}
.x47_c00292{left:345.993831px;}
.x37_c00292{left:347.343948px;}
.x68_c00292{left:357.480000px;}
.x1c_c00292{left:361.000425px;}
.x98_c00292{left:364.042500px;}
.x70_c00292{left:365.706000px;}
.x69_c00292{left:366.811500px;}
.x4c_c00292{left:368.558695px;}
.x27_c00292{left:369.759000px;}
.x13_c00292{left:371.910000px;}
.x20_c00292{left:381.165513px;}
.x92_c00292{left:386.768730px;}
.x65_c00292{left:389.203500px;}
.x63_c00292{left:391.246707px;}
.x7b_c00292{left:397.558500px;}
.x55_c00292{left:400.842261px;}
.x38_c00292{left:401.913948px;}
.x21_c00292{left:403.276664px;}
.x1d_c00292{left:404.474777px;}
.xe_c00292{left:405.540000px;}
.xa7_c00292{left:406.999050px;}
.x78_c00292{left:409.062996px;}
.x43_c00292{left:412.731000px;}
.x3a_c00292{left:414.331500px;}
.x30_c00292{left:417.109820px;}
.xa1_c00292{left:422.089500px;}
.x29_c00292{left:424.308000px;}
.xf_c00292{left:426.870000px;}
.x8c_c00292{left:430.228500px;}
.x93_c00292{left:431.865810px;}
.x5b_c00292{left:433.234500px;}
.x96_c00292{left:440.998212px;}
.x79_c00292{left:443.085604px;}
.x56_c00292{left:444.272782px;}
.x14_c00292{left:447.276000px;}
.xa2_c00292{left:451.255500px;}
.x66_c00292{left:454.035000px;}
.x4d_c00292{left:455.400000px;}
.x31_c00292{left:457.818320px;}
.x10_c00292{left:460.080000px;}
.x71_c00292{left:464.001000px;}
.x15_c00292{left:470.463000px;}
.x99_c00292{left:473.397000px;}
.x5c_c00292{left:476.944500px;}
.x39_c00292{left:478.577448px;}
.x22_c00292{left:479.696642px;}
.x1e_c00292{left:482.511958px;}
.x94_c00292{left:496.131858px;}
.x8d_c00292{left:497.184000px;}
.x97_c00292{left:498.235344px;}
.x44_c00292{left:499.909500px;}
.x85_c00292{left:507.459000px;}
.x57_c00292{left:511.275540px;}
.x28_c00292{left:513.685500px;}
.x72_c00292{left:519.072000px;}
.x32_c00292{left:524.476819px;}
.x6a_c00292{left:530.440500px;}
.x45_c00292{left:534.198000px;}
.x58_c00292{left:543.106694px;}
.x48_c00292{left:545.305636px;}
.x16_c00292{left:547.420500px;}
.x86_c00292{left:552.019500px;}
.x2a_c00292{left:555.805500px;}
.x9a_c00292{left:561.709500px;}
.x6b_c00292{left:564.199500px;}
.x4e_c00292{left:565.260000px;}
.x33_c00292{left:568.219820px;}
.x8e_c00292{left:573.595500px;}
.x23_c00292{left:578.518770px;}
.x7c_c00292{left:584.407500px;}
.x2b_c00292{left:590.110500px;}
.x67_c00292{left:596.568000px;}
.x6c_c00292{left:597.945000px;}
.x4f_c00292{left:599.281500px;}
.x3f_c00292{left:606.072726px;}
.x5d_c00292{left:608.440500px;}
.x17_c00292{left:614.914500px;}
.xa3_c00292{left:615.957000px;}
.x7d_c00292{left:618.723000px;}
.x24_c00292{left:623.626110px;}
.x3b_c00292{left:633.061500px;}
.x18_c00292{left:634.363500px;}
.x8f_c00292{left:638.944500px;}
.x73_c00292{left:640.576500px;}
.x5e_c00292{left:642.997500px;}
.x87_c00292{left:650.025000px;}
.x50_c00292{left:653.830500px;}
.x59_c00292{left:655.687956px;}
.x9b_c00292{left:660.510000px;}
.x34_c00292{left:665.689820px;}
.xa4_c00292{left:671.043000px;}
.x49_c00292{left:676.218201px;}
.x90_c00292{left:682.968000px;}
.x7e_c00292{left:684.046500px;}
.x51_c00292{left:687.303000px;}
.x2c_c00292{left:688.915500px;}
.x35_c00292{left:698.631320px;}
.x9c_c00292{left:704.262000px;}
.x88_c00292{left:705.924000px;}
.x4a_c00292{left:712.235805px;}
.x6d_c00292{left:717.559500px;}
.x74_c00292{left:728.650500px;}
.x9d_c00292{left:738.817500px;}
.x5f_c00292{left:741.328500px;}
.x25_c00292{left:747.369045px;}
.x81_c00292{left:749.405425px;}
.xa5_c00292{left:750.442500px;}
.x40_c00292{left:752.942226px;}
.x46_c00292{left:755.602500px;}
.x7f_c00292{left:760.191000px;}
.x3c_c00292{left:764.242500px;}
.x75_c00292{left:771.543000px;}
.x82_c00292{left:773.162114px;}
.x60_c00292{left:774.501000px;}
.x19_c00292{left:777.732000px;}
.x52_c00292{left:785.622000px;}
.x26_c00292{left:788.061651px;}
.x89_c00292{left:793.134000px;}
.x80_c00292{left:795.565500px;}
.x3d_c00292{left:797.457000px;}
.x41_c00292{left:806.399226px;}
.x83_c00292{left:808.798645px;}
.x53_c00292{left:818.539500px;}
.x1a_c00292{left:822.306000px;}
.xa6_c00292{left:824.970000px;}
.x95_c00292{left:826.672296px;}
.x84_c00292{left:833.635314px;}
.x6e_c00292{left:840.142500px;}
@media print{
.v0_c00292{vertical-align:0.000000pt;}
.ls0_c00292{letter-spacing:0.000000pt;}
.ws0_c00292{word-spacing:0.000000pt;}
.fs9_c00292{font-size:16.001152pt;}
.fsd_c00292{font-size:21.335136pt;}
.fs1_c00292{font-size:26.666667pt;}
.fs0_c00292{font-size:32.000000pt;}
.fs3_c00292{font-size:58.666667pt;}
.fsc_c00292{font-size:58.669043pt;}
.fsb_c00292{font-size:58.670216pt;}
.fs8_c00292{font-size:58.670891pt;}
.fs6_c00292{font-size:58.671624pt;}
.fsa_c00292{font-size:58.672416pt;}
.fsf_c00292{font-size:58.673266pt;}
.fs2_c00292{font-size:64.000000pt;}
.fs7_c00292{font-size:64.003872pt;}
.fse_c00292{font-size:64.004608pt;}
.fs5_c00292{font-size:64.005408pt;}
.fs10_c00292{font-size:64.007200pt;}
.fs4_c00292{font-size:69.333333pt;}
.y0_c00292{bottom:0.000000pt;}
.yf8_c00292{bottom:99.285193pt;}
.yf7_c00292{bottom:99.884380pt;}
.yf6_c00292{bottom:100.486393pt;}
.yf5_c00292{bottom:101.287113pt;}
.yf4_c00292{bottom:102.239907pt;}
.yf3_c00292{bottom:114.411167pt;}
.yf2_c00292{bottom:115.404867pt;}
.yf1_c00292{bottom:116.463527pt;}
.yf0_c00292{bottom:117.198007pt;}
.yef_c00292{bottom:118.641827pt;}
.yee_c00292{bottom:119.394027pt;}
.yed_c00292{bottom:120.852027pt;}
.yec_c00292{bottom:122.162667pt;}
.y12_c00292{bottom:123.245333pt;}
.yeb_c00292{bottom:148.331533pt;}
.yea_c00292{bottom:149.090933pt;}
.ye9_c00292{bottom:149.400113pt;}
.ye8_c00292{bottom:150.430093pt;}
.ye7_c00292{bottom:150.721333pt;}
.ye6_c00292{bottom:172.228667pt;}
.ye5_c00292{bottom:172.689407pt;}
.ye4_c00292{bottom:173.272767pt;}
.ye3_c00292{bottom:174.590107pt;}
.ye2_c00292{bottom:175.310187pt;}
.ye1_c00292{bottom:175.767607pt;}
.ye0_c00292{bottom:177.225667pt;}
.ydf_c00292{bottom:178.529047pt;}
.yde_c00292{bottom:178.802667pt;}
.y11_c00292{bottom:179.157333pt;}
.ydd_c00292{bottom:203.479755pt;}
.ydc_c00292{bottom:204.191632pt;}
.ydb_c00292{bottom:204.870869pt;}
.yda_c00292{bottom:205.421776pt;}
.yd9_c00292{bottom:206.637653pt;}
.yd8_c00292{bottom:227.865776pt;}
.yd7_c00292{bottom:228.941797pt;}
.yd6_c00292{bottom:229.144992pt;}
.yd5_c00292{bottom:230.203440pt;}
.yd4_c00292{bottom:230.393675pt;}
.yd3_c00292{bottom:230.803456pt;}
.yd2_c00292{bottom:231.374277pt;}
.yd1_c00292{bottom:231.775301pt;}
.yd0_c00292{bottom:232.457845pt;}
.ycf_c00292{bottom:233.038101pt;}
.y10_c00292{bottom:234.845333pt;}
.yce_c00292{bottom:256.931525pt;}
.ycd_c00292{bottom:257.640021pt;}
.ycc_c00292{bottom:258.109605pt;}
.ycb_c00292{bottom:258.806661pt;}
.yca_c00292{bottom:259.621717pt;}
.yc9_c00292{bottom:259.972949pt;}
.yc8_c00292{bottom:260.335909pt;}
.yc7_c00292{bottom:261.027125pt;}
.yc6_c00292{bottom:261.502389pt;}
.yc5_c00292{bottom:262.081333pt;}
.yc4_c00292{bottom:285.268965pt;}
.yc3_c00292{bottom:286.199205pt;}
.yc2_c00292{bottom:286.795461pt;}
.yc1_c00292{bottom:287.840853pt;}
.yc0_c00292{bottom:288.316165pt;}
.ybf_c00292{bottom:288.788453pt;}
.ybe_c00292{bottom:289.358725pt;}
.ybd_c00292{bottom:289.828229pt;}
.yf_c00292{bottom:291.002667pt;}
.ybc_c00292{bottom:291.121333pt;}
.ybb_c00292{bottom:307.297449pt;}
.yba_c00292{bottom:307.607121pt;}
.yb9_c00292{bottom:308.050927pt;}
.yb8_c00292{bottom:308.346785pt;}
.yb7_c00292{bottom:309.972501pt;}
.yb6_c00292{bottom:311.820553pt;}
.yb4_c00292{bottom:313.802392pt;}
.yb3_c00292{bottom:314.211164pt;}
.yb5_c00292{bottom:314.639133pt;}
.yb2_c00292{bottom:315.091056pt;}
.yb1_c00292{bottom:315.845905pt;}
.yb0_c00292{bottom:316.242440pt;}
.yaf_c00292{bottom:316.709140pt;}
.yae_c00292{bottom:318.401584pt;}
.yad_c00292{bottom:319.031859pt;}
.ye_c00292{bottom:319.322667pt;}
.yac_c00292{bottom:320.161333pt;}
.ya7_c00292{bottom:346.207921pt;}
.ya8_c00292{bottom:346.208496pt;}
.yab_c00292{bottom:346.208957pt;}
.ya9_c00292{bottom:346.209005pt;}
.yaa_c00292{bottom:346.209583pt;}
.ya6_c00292{bottom:371.104072pt;}
.ya5_c00292{bottom:371.436815pt;}
.ya4_c00292{bottom:371.856208pt;}
.ya3_c00292{bottom:372.717376pt;}
.ya2_c00292{bottom:373.905420pt;}
.ya1_c00292{bottom:374.443892pt;}
.ya0_c00292{bottom:375.404999pt;}
.y9f_c00292{bottom:376.363319pt;}
.y9e_c00292{bottom:376.561333pt;}
.yd_c00292{bottom:376.685333pt;}
.y9d_c00292{bottom:399.400441pt;}
.y9c_c00292{bottom:400.381105pt;}
.y9b_c00292{bottom:401.338021pt;}
.y9a_c00292{bottom:401.607985pt;}
.y99_c00292{bottom:401.878057pt;}
.y98_c00292{bottom:402.485029pt;}
.y97_c00292{bottom:402.649285pt;}
.y96_c00292{bottom:403.187089pt;}
.y95_c00292{bottom:403.541377pt;}
.y94_c00292{bottom:404.161333pt;}
.yc_c00292{bottom:404.890667pt;}
.y93_c00292{bottom:432.825333pt;}
.y92_c00292{bottom:455.322952pt;}
.y91_c00292{bottom:455.961876pt;}
.y90_c00292{bottom:456.933543pt;}
.y8f_c00292{bottom:457.379703pt;}
.y8e_c00292{bottom:458.549179pt;}
.y8d_c00292{bottom:458.773359pt;}
.y8c_c00292{bottom:459.407267pt;}
.y8b_c00292{bottom:459.959056pt;}
.y8a_c00292{bottom:460.801333pt;}
.yb_c00292{bottom:461.530667pt;}
.y89_c00292{bottom:487.656808pt;}
.y87_c00292{bottom:487.657013pt;}
.y88_c00292{bottom:487.657104pt;}
.y86_c00292{bottom:510.007131pt;}
.y85_c00292{bottom:510.403480pt;}
.y84_c00292{bottom:510.816293pt;}
.y83_c00292{bottom:512.039968pt;}
.y82_c00292{bottom:512.470011pt;}
.y81_c00292{bottom:513.689523pt;}
.y80_c00292{bottom:514.106405pt;}
.y7f_c00292{bottom:514.650352pt;}
.y7e_c00292{bottom:516.021904pt;}
.ya_c00292{bottom:516.478667pt;}
.y7d_c00292{bottom:516.962667pt;}
.y7c_c00292{bottom:540.438265pt;}
.y7b_c00292{bottom:541.639072pt;}
.y7a_c00292{bottom:541.978313pt;}
.y79_c00292{bottom:542.693459pt;}
.y78_c00292{bottom:543.156784pt;}
.y77_c00292{bottom:544.101781pt;}
.y76_c00292{bottom:544.799372pt;}
.y75_c00292{bottom:567.297381pt;}
.y74_c00292{bottom:567.619241pt;}
.y73_c00292{bottom:568.580583pt;}
.y72_c00292{bottom:568.907869pt;}
.y71_c00292{bottom:569.441237pt;}
.y70_c00292{bottom:569.773892pt;}
.y6f_c00292{bottom:570.626539pt;}
.y6e_c00292{bottom:570.848079pt;}
.y6d_c00292{bottom:571.920285pt;}
.y6c_c00292{bottom:572.881333pt;}
.y9_c00292{bottom:573.358667pt;}
.y68_c00292{bottom:599.310044pt;}
.y6a_c00292{bottom:599.310117pt;}
.y69_c00292{bottom:599.310699pt;}
.y6b_c00292{bottom:599.310772pt;}
.y67_c00292{bottom:623.898735pt;}
.y66_c00292{bottom:624.374247pt;}
.y65_c00292{bottom:624.810544pt;}
.y64_c00292{bottom:625.194720pt;}
.y63_c00292{bottom:625.663355pt;}
.y62_c00292{bottom:626.590768pt;}
.y61_c00292{bottom:628.008857pt;}
.y60_c00292{bottom:628.716949pt;}
.y8_c00292{bottom:629.393333pt;}
.y5f_c00292{bottom:629.759325pt;}
.y5e_c00292{bottom:652.163208pt;}
.y5d_c00292{bottom:653.044968pt;}
.y5c_c00292{bottom:653.366711pt;}
.y5b_c00292{bottom:654.328052pt;}
.y5a_c00292{bottom:654.663317pt;}
.y59_c00292{bottom:655.515729pt;}
.y58_c00292{bottom:656.162925pt;}
.y57_c00292{bottom:657.121333pt;}
.y7_c00292{bottom:657.446667pt;}
.y56_c00292{bottom:684.369333pt;}
.y55_c00292{bottom:704.201280pt;}
.y54_c00292{bottom:704.512304pt;}
.y53_c00292{bottom:704.771488pt;}
.y52_c00292{bottom:706.338096pt;}
.y50_c00292{bottom:709.354725pt;}
.y4f_c00292{bottom:709.709013pt;}
.y51_c00292{bottom:710.171104pt;}
.y4e_c00292{bottom:710.411781pt;}
.y4d_c00292{bottom:710.754373pt;}
.y4c_c00292{bottom:711.108277pt;}
.y4b_c00292{bottom:712.390309pt;}
.y4a_c00292{bottom:713.441397pt;}
.y49_c00292{bottom:714.158773pt;}
.y6_c00292{bottom:714.942667pt;}
.y48_c00292{bottom:715.201333pt;}
.y47_c00292{bottom:739.032245pt;}
.y46_c00292{bottom:739.800559pt;}
.y45_c00292{bottom:740.558253pt;}
.y44_c00292{bottom:741.307852pt;}
.y43_c00292{bottom:741.841425pt;}
.y5_c00292{bottom:742.572000pt;}
.y42_c00292{bottom:742.797105pt;}
.y41_c00292{bottom:766.237983pt;}
.y40_c00292{bottom:766.560077pt;}
.y3f_c00292{bottom:767.513117pt;}
.y3e_c00292{bottom:767.940827pt;}
.y3d_c00292{bottom:768.592599pt;}
.y3c_c00292{bottom:768.990637pt;}
.y3b_c00292{bottom:769.989511pt;}
.y3a_c00292{bottom:770.306032pt;}
.y39_c00292{bottom:770.639053pt;}
.y38_c00292{bottom:795.159136pt;}
.y37_c00292{bottom:796.125229pt;}
.y36_c00292{bottom:796.460656pt;}
.y35_c00292{bottom:797.746409pt;}
.y34_c00292{bottom:798.284999pt;}
.y4_c00292{bottom:798.602667pt;}
.y33_c00292{bottom:799.235428pt;}
.y32_c00292{bottom:799.441333pt;}
.y31_c00292{bottom:824.081463pt;}
.y30_c00292{bottom:824.717688pt;}
.y2f_c00292{bottom:825.053071pt;}
.y2e_c00292{bottom:825.800264pt;}
.y2d_c00292{bottom:826.124969pt;}
.y3_c00292{bottom:826.685333pt;}
.y2c_c00292{bottom:827.281333pt;}
.y2b_c00292{bottom:879.388827pt;}
.y2a_c00292{bottom:879.715028pt;}
.y29_c00292{bottom:880.704872pt;}
.y28_c00292{bottom:881.066085pt;}
.y27_c00292{bottom:881.857304pt;}
.y26_c00292{bottom:882.468333pt;}
.y25_c00292{bottom:882.645160pt;}
.y2_c00292{bottom:883.452000pt;}
.y24_c00292{bottom:883.519791pt;}
.y23_c00292{bottom:883.676936pt;}
.y1e_c00292{bottom:910.637059pt;}
.y1f_c00292{bottom:910.637101pt;}
.y20_c00292{bottom:910.637536pt;}
.y22_c00292{bottom:910.637640pt;}
.y21_c00292{bottom:910.637917pt;}
.y1d_c00292{bottom:934.445151pt;}
.y1c_c00292{bottom:934.960228pt;}
.y1b_c00292{bottom:936.616931pt;}
.y1a_c00292{bottom:936.841675pt;}
.y19_c00292{bottom:937.621605pt;}
.y18_c00292{bottom:938.510892pt;}
.y17_c00292{bottom:938.778831pt;}
.y16_c00292{bottom:939.649727pt;}
.y1_c00292{bottom:939.965333pt;}
.y15_c00292{bottom:940.042933pt;}
.y14_c00292{bottom:941.041333pt;}
.y13_c00292{bottom:989.866667pt;}
.hb_c00292{height:16.001152pt;}
.hf_c00292{height:21.335136pt;}
.h3_c00292{height:26.666667pt;}
.h2_c00292{height:32.000000pt;}
.h5_c00292{height:58.666667pt;}
.he_c00292{height:58.669043pt;}
.hd_c00292{height:58.670216pt;}
.ha_c00292{height:58.670891pt;}
.h8_c00292{height:58.671624pt;}
.hc_c00292{height:58.672416pt;}
.h11_c00292{height:58.673266pt;}
.h4_c00292{height:64.000000pt;}
.h9_c00292{height:64.003872pt;}
.h10_c00292{height:64.004608pt;}
.h7_c00292{height:64.005408pt;}
.h12_c00292{height:64.007200pt;}
.h6_c00292{height:69.333333pt;}
.h1_c00292{height:1036.000000pt;}
.h0_c00292{height:1036.266667pt;}
.w0_c00292{width:813.333333pt;}
.x0_c00292{left:0.000000pt;}
.xb_c00292{left:120.000000pt;}
.xa_c00292{left:121.440000pt;}
.x7_c00292{left:122.880000pt;}
.x5_c00292{left:123.840000pt;}
.x3_c00292{left:125.520000pt;}
.x1_c00292{left:126.480000pt;}
.xc_c00292{left:161.040000pt;}
.x9_c00292{left:162.240000pt;}
.x8_c00292{left:163.200000pt;}
.x6_c00292{left:164.400000pt;}
.x4_c00292{left:166.080000pt;}
.x2_c00292{left:167.040000pt;}
.xd_c00292{left:187.440000pt;}
.x9e_c00292{left:215.870667pt;}
.x76_c00292{left:217.441849pt;}
.x61_c00292{left:218.401501pt;}
.x3e_c00292{left:219.313979pt;}
.x2d_c00292{left:220.908284pt;}
.x36_c00292{left:221.870176pt;}
.x11_c00292{left:223.540000pt;}
.x9f_c00292{left:235.286667pt;}
.x8a_c00292{left:236.973333pt;}
.x6f_c00292{left:237.952000pt;}
.x1f_c00292{left:241.580728pt;}
.x77_c00292{left:246.484036pt;}
.x62_c00292{left:247.924621pt;}
.x4b_c00292{left:249.363603pt;}
.x2e_c00292{left:251.182951pt;}
.x42_c00292{left:260.640000pt;}
.x91_c00292{left:275.580795pt;}
.x54_c00292{left:277.547764pt;}
.x2f_c00292{left:279.957617pt;}
.x1b_c00292{left:283.685641pt;}
.x8b_c00292{left:285.218667pt;}
.x5a_c00292{left:287.129333pt;}
.x64_c00292{left:295.796000pt;}
.x12_c00292{left:300.340000pt;}
.xa0_c00292{left:303.952000pt;}
.x7a_c00292{left:304.902667pt;}
.x47_c00292{left:307.550072pt;}
.x37_c00292{left:308.750176pt;}
.x68_c00292{left:317.760000pt;}
.x1c_c00292{left:320.889267pt;}
.x98_c00292{left:323.593333pt;}
.x70_c00292{left:325.072000pt;}
.x69_c00292{left:326.054667pt;}
.x4c_c00292{left:327.607729pt;}
.x27_c00292{left:328.674667pt;}
.x13_c00292{left:330.586667pt;}
.x20_c00292{left:338.813789pt;}
.x92_c00292{left:343.794427pt;}
.x65_c00292{left:345.958667pt;}
.x63_c00292{left:347.774851pt;}
.x7b_c00292{left:353.385333pt;}
.x55_c00292{left:356.304232pt;}
.x38_c00292{left:357.256843pt;}
.x21_c00292{left:358.468145pt;}
.x1d_c00292{left:359.533135pt;}
.xe_c00292{left:360.480000pt;}
.xa7_c00292{left:361.776933pt;}
.x78_c00292{left:363.611552pt;}
.x43_c00292{left:366.872000pt;}
.x3a_c00292{left:368.294667pt;}
.x30_c00292{left:370.764284pt;}
.xa1_c00292{left:375.190667pt;}
.x29_c00292{left:377.162667pt;}
.xf_c00292{left:379.440000pt;}
.x8c_c00292{left:382.425333pt;}
.x93_c00292{left:383.880720pt;}
.x5b_c00292{left:385.097333pt;}
.x96_c00292{left:391.998411pt;}
.x79_c00292{left:393.853871pt;}
.x56_c00292{left:394.909140pt;}
.x14_c00292{left:397.578667pt;}
.xa2_c00292{left:401.116000pt;}
.x66_c00292{left:403.586667pt;}
.x4d_c00292{left:404.800000pt;}
.x31_c00292{left:406.949617pt;}
.x10_c00292{left:408.960000pt;}
.x71_c00292{left:412.445333pt;}
.x15_c00292{left:418.189333pt;}
.x99_c00292{left:420.797333pt;}
.x5c_c00292{left:423.950667pt;}
.x39_c00292{left:425.402176pt;}
.x22_c00292{left:426.397015pt;}
.x1e_c00292{left:428.899519pt;}
.x94_c00292{left:441.006096pt;}
.x8d_c00292{left:441.941333pt;}
.x97_c00292{left:442.875861pt;}
.x44_c00292{left:444.364000pt;}
.x85_c00292{left:451.074667pt;}
.x57_c00292{left:454.467147pt;}
.x28_c00292{left:456.609333pt;}
.x72_c00292{left:461.397333pt;}
.x32_c00292{left:466.201617pt;}
.x6a_c00292{left:471.502667pt;}
.x45_c00292{left:474.842667pt;}
.x58_c00292{left:482.761505pt;}
.x48_c00292{left:484.716121pt;}
.x16_c00292{left:486.596000pt;}
.x86_c00292{left:490.684000pt;}
.x2a_c00292{left:494.049333pt;}
.x9a_c00292{left:499.297333pt;}
.x6b_c00292{left:501.510667pt;}
.x4e_c00292{left:502.453333pt;}
.x33_c00292{left:505.084284pt;}
.x8e_c00292{left:509.862667pt;}
.x23_c00292{left:514.238907pt;}
.x7c_c00292{left:519.473333pt;}
.x2b_c00292{left:524.542667pt;}
.x67_c00292{left:530.282667pt;}
.x6c_c00292{left:531.506667pt;}
.x4f_c00292{left:532.694667pt;}
.x3f_c00292{left:538.731312pt;}
.x5d_c00292{left:540.836000pt;}
.x17_c00292{left:546.590667pt;}
.xa3_c00292{left:547.517333pt;}
.x7d_c00292{left:549.976000pt;}
.x24_c00292{left:554.334320pt;}
.x3b_c00292{left:562.721333pt;}
.x18_c00292{left:563.878667pt;}
.x8f_c00292{left:567.950667pt;}
.x73_c00292{left:569.401333pt;}
.x5e_c00292{left:571.553333pt;}
.x87_c00292{left:577.800000pt;}
.x50_c00292{left:581.182667pt;}
.x59_c00292{left:582.833739pt;}
.x9b_c00292{left:587.120000pt;}
.x34_c00292{left:591.724284pt;}
.xa4_c00292{left:596.482667pt;}
.x49_c00292{left:601.082845pt;}
.x90_c00292{left:607.082667pt;}
.x7e_c00292{left:608.041333pt;}
.x51_c00292{left:610.936000pt;}
.x2c_c00292{left:612.369333pt;}
.x35_c00292{left:621.005617pt;}
.x9c_c00292{left:626.010667pt;}
.x88_c00292{left:627.488000pt;}
.x4a_c00292{left:633.098493pt;}
.x6d_c00292{left:637.830667pt;}
.x74_c00292{left:647.689333pt;}
.x9d_c00292{left:656.726667pt;}
.x5f_c00292{left:658.958667pt;}
.x25_c00292{left:664.328040pt;}
.x81_c00292{left:666.138156pt;}
.xa5_c00292{left:667.060000pt;}
.x40_c00292{left:669.281979pt;}
.x46_c00292{left:671.646667pt;}
.x7f_c00292{left:675.725333pt;}
.x3c_c00292{left:679.326667pt;}
.x75_c00292{left:685.816000pt;}
.x82_c00292{left:687.255212pt;}
.x60_c00292{left:688.445333pt;}
.x19_c00292{left:691.317333pt;}
.x52_c00292{left:698.330667pt;}
.x26_c00292{left:700.499245pt;}
.x89_c00292{left:705.008000pt;}
.x80_c00292{left:707.169333pt;}
.x3d_c00292{left:708.850667pt;}
.x41_c00292{left:716.799312pt;}
.x83_c00292{left:718.932129pt;}
.x53_c00292{left:727.590667pt;}
.x1a_c00292{left:730.938667pt;}
.xa6_c00292{left:733.306667pt;}
.x95_c00292{left:734.819819pt;}
.x84_c00292{left:741.009168pt;}
.x6e_c00292{left:746.793333pt;}
}





/* 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_c00293 {
    display:none;
  }
  .loading-indicator_c00293.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00293 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_c00293 { 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_c00293" -> "#page-container .classname_c00293")
 */
.pf_c00293 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00293 { /* 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_c00293.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00293 { /* 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_c00293 { /* 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_c00293 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00293 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00293 {overflow:visible;}
  }
}
.c_c00293 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00293 { /* 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_c00293:after { /* webkit #35443 */
  content: '';
}
.t_c00293:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00293 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 */
}
.__c00293 { /* 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_c00293 { /* info for Javascript */
  display:none;
}
.l_c00293 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00293 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00293 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00293: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_c00293 {
    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_c00293.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00293.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_c00293 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00293{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00293;src:url('chunks/assets/font_c605e72f209fc835e906f064.woff2')format("woff");}.ff1_c00293{font-family:ff1_c00293;line-height:1.000000;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;}
.m7d_c00293{transform:matrix(0.025428,-0.001171,0.011499,0.249735,0,0);-ms-transform:matrix(0.025428,-0.001171,0.011499,0.249735,0,0);-webkit-transform:matrix(0.025428,-0.001171,0.011499,0.249735,0,0);}
.m30_c00293{transform:matrix(0.027011,-0.001244,0.011499,0.249735,0,0);-ms-transform:matrix(0.027011,-0.001244,0.011499,0.249735,0,0);-webkit-transform:matrix(0.027011,-0.001244,0.011499,0.249735,0,0);}
.mc_c00293{transform:matrix(0.031788,-0.001432,0.011250,0.249747,0,0);-ms-transform:matrix(0.031788,-0.001432,0.011250,0.249747,0,0);-webkit-transform:matrix(0.031788,-0.001432,0.011250,0.249747,0,0);}
.m8c_c00293{transform:matrix(0.031820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.031820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.031820,0.000000,0.000000,0.250000,0,0);}
.m18_c00293{transform:matrix(0.040560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.040560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.040560,0.000000,0.000000,0.250000,0,0);}
.m7f_c00293{transform:matrix(0.044952,-0.002070,0.011499,0.249735,0,0);-ms-transform:matrix(0.044952,-0.002070,0.011499,0.249735,0,0);-webkit-transform:matrix(0.044952,-0.002070,0.011499,0.249735,0,0);}
.m71_c00293{transform:matrix(0.047679,-0.002195,0.011499,0.249735,0,0);-ms-transform:matrix(0.047679,-0.002195,0.011499,0.249735,0,0);-webkit-transform:matrix(0.047679,-0.002195,0.011499,0.249735,0,0);}
.m1_c00293{transform:matrix(0.056250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.056250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.056250,0.000000,0.000000,0.250000,0,0);}
.m77_c00293{transform:matrix(0.063573,-0.002927,0.011499,0.249735,0,0);-ms-transform:matrix(0.063573,-0.002927,0.011499,0.249735,0,0);-webkit-transform:matrix(0.063573,-0.002927,0.011499,0.249735,0,0);}
.m74_c00293{transform:matrix(0.071075,-0.003273,0.011499,0.249735,0,0);-ms-transform:matrix(0.071075,-0.003273,0.011499,0.249735,0,0);-webkit-transform:matrix(0.071075,-0.003273,0.011499,0.249735,0,0);}
.mb_c00293{transform:matrix(0.071962,-0.003242,0.011250,0.249747,0,0);-ms-transform:matrix(0.071962,-0.003242,0.011250,0.249747,0,0);-webkit-transform:matrix(0.071962,-0.003242,0.011250,0.249747,0,0);}
.m26_c00293{transform:matrix(0.081039,-0.003732,0.011499,0.249735,0,0);-ms-transform:matrix(0.081039,-0.003732,0.011499,0.249735,0,0);-webkit-transform:matrix(0.081039,-0.003732,0.011499,0.249735,0,0);}
.m24_c00293{transform:matrix(0.081043,-0.003651,0.011250,0.249747,0,0);-ms-transform:matrix(0.081043,-0.003651,0.011250,0.249747,0,0);-webkit-transform:matrix(0.081043,-0.003651,0.011250,0.249747,0,0);}
.m79_c00293{transform:matrix(0.095359,-0.004391,0.011499,0.249735,0,0);-ms-transform:matrix(0.095359,-0.004391,0.011499,0.249735,0,0);-webkit-transform:matrix(0.095359,-0.004391,0.011499,0.249735,0,0);}
.m54_c00293{transform:matrix(0.096701,-0.003775,0.009752,0.249810,0,0);-ms-transform:matrix(0.096701,-0.003775,0.009752,0.249810,0,0);-webkit-transform:matrix(0.096701,-0.003775,0.009752,0.249810,0,0);}
.m3d_c00293{transform:matrix(0.096775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096775,0.000000,0.000000,0.250000,0,0);}
.m48_c00293{transform:matrix(0.098245,-0.004327,0.011000,0.249758,0,0);-ms-transform:matrix(0.098245,-0.004327,0.011000,0.249758,0,0);-webkit-transform:matrix(0.098245,-0.004327,0.011000,0.249758,0,0);}
.m2a_c00293{transform:matrix(0.100518,-0.004628,0.011499,0.249735,0,0);-ms-transform:matrix(0.100518,-0.004628,0.011499,0.249735,0,0);-webkit-transform:matrix(0.100518,-0.004628,0.011499,0.249735,0,0);}
.m29_c00293{transform:matrix(0.114609,-0.005277,0.011499,0.249735,0,0);-ms-transform:matrix(0.114609,-0.005277,0.011499,0.249735,0,0);-webkit-transform:matrix(0.114609,-0.005277,0.011499,0.249735,0,0);}
.m16_c00293{transform:matrix(0.115825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115825,0.000000,0.000000,0.250000,0,0);}
.m6_c00293{transform:matrix(0.119590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119590,0.000000,0.000000,0.250000,0,0);}
.m7b_c00293{transform:matrix(0.121037,-0.005573,0.011499,0.249735,0,0);-ms-transform:matrix(0.121037,-0.005573,0.011499,0.249735,0,0);-webkit-transform:matrix(0.121037,-0.005573,0.011499,0.249735,0,0);}
.m8a_c00293{transform:matrix(0.127145,-0.005855,0.011499,0.249735,0,0);-ms-transform:matrix(0.127145,-0.005855,0.011499,0.249735,0,0);-webkit-transform:matrix(0.127145,-0.005855,0.011499,0.249735,0,0);}
.m1b_c00293{transform:matrix(0.127500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127500,0.000000,0.000000,0.250000,0,0);}
.m3_c00293{transform:matrix(0.130385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130385,0.000000,0.000000,0.250000,0,0);}
.m1a_c00293{transform:matrix(0.131195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131195,0.000000,0.000000,0.250000,0,0);}
.m64_c00293{transform:matrix(0.135803,-0.005981,0.011000,0.249758,0,0);-ms-transform:matrix(0.135803,-0.005981,0.011000,0.249758,0,0);-webkit-transform:matrix(0.135803,-0.005981,0.011000,0.249758,0,0);}
.m15_c00293{transform:matrix(0.141367,-0.006368,0.011250,0.249747,0,0);-ms-transform:matrix(0.141367,-0.006368,0.011250,0.249747,0,0);-webkit-transform:matrix(0.141367,-0.006368,0.011250,0.249747,0,0);}
.m7_c00293{transform:matrix(0.144070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144070,0.000000,0.000000,0.250000,0,0);}
.m2e_c00293{transform:matrix(0.149841,-0.006900,0.011499,0.249735,0,0);-ms-transform:matrix(0.149841,-0.006900,0.011499,0.249735,0,0);-webkit-transform:matrix(0.149841,-0.006900,0.011499,0.249735,0,0);}
.m66_c00293{transform:matrix(0.149855,-0.006600,0.011000,0.249758,0,0);-ms-transform:matrix(0.149855,-0.006600,0.011000,0.249758,0,0);-webkit-transform:matrix(0.149855,-0.006600,0.011000,0.249758,0,0);}
.m5d_c00293{transform:matrix(0.155455,-0.006224,0.010002,0.249800,0,0);-ms-transform:matrix(0.155455,-0.006224,0.010002,0.249800,0,0);-webkit-transform:matrix(0.155455,-0.006224,0.010002,0.249800,0,0);}
.m60_c00293{transform:matrix(0.161181,-0.006454,0.010002,0.249800,0,0);-ms-transform:matrix(0.161181,-0.006454,0.010002,0.249800,0,0);-webkit-transform:matrix(0.161181,-0.006454,0.010002,0.249800,0,0);}
.m6e_c00293{transform:matrix(0.163627,-0.007534,0.011499,0.249735,0,0);-ms-transform:matrix(0.163627,-0.007534,0.011499,0.249735,0,0);-webkit-transform:matrix(0.163627,-0.007534,0.011499,0.249735,0,0);}
.m3a_c00293{transform:matrix(0.175730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175730,0.000000,0.000000,0.250000,0,0);}
.m32_c00293{transform:matrix(0.187037,-0.008612,0.011499,0.249735,0,0);-ms-transform:matrix(0.187037,-0.008612,0.011499,0.249735,0,0);-webkit-transform:matrix(0.187037,-0.008612,0.011499,0.249735,0,0);}
.m3e_c00293{transform:matrix(0.192095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192095,0.000000,0.000000,0.250000,0,0);}
.m83_c00293{transform:matrix(0.195575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195575,0.000000,0.000000,0.250000,0,0);}
.me_c00293{transform:matrix(0.199922,-0.009006,0.011250,0.249747,0,0);-ms-transform:matrix(0.199922,-0.009006,0.011250,0.249747,0,0);-webkit-transform:matrix(0.199922,-0.009006,0.011250,0.249747,0,0);}
.m61_c00293{transform:matrix(0.201084,-0.008051,0.010002,0.249800,0,0);-ms-transform:matrix(0.201084,-0.008051,0.010002,0.249800,0,0);-webkit-transform:matrix(0.201084,-0.008051,0.010002,0.249800,0,0);}
.m6a_c00293{transform:matrix(0.208200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208200,0.000000,0.000000,0.250000,0,0);}
.m70_c00293{transform:matrix(0.209943,-0.009667,0.011499,0.249735,0,0);-ms-transform:matrix(0.209943,-0.009667,0.011499,0.249735,0,0);-webkit-transform:matrix(0.209943,-0.009667,0.011499,0.249735,0,0);}
.m7e_c00293{transform:matrix(0.210462,-0.009691,0.011499,0.249735,0,0);-ms-transform:matrix(0.210462,-0.009691,0.011499,0.249735,0,0);-webkit-transform:matrix(0.210462,-0.009691,0.011499,0.249735,0,0);}
.m47_c00293{transform:matrix(0.211255,-0.009305,0.011000,0.249758,0,0);-ms-transform:matrix(0.211255,-0.009305,0.011000,0.249758,0,0);-webkit-transform:matrix(0.211255,-0.009305,0.011000,0.249758,0,0);}
.m5_c00293{transform:matrix(0.211445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211445,0.000000,0.000000,0.250000,0,0);}
.m3f_c00293{transform:matrix(0.216335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216335,0.000000,0.000000,0.250000,0,0);}
.m63_c00293{transform:matrix(0.216920,-0.009554,0.011000,0.249758,0,0);-ms-transform:matrix(0.216920,-0.009554,0.011000,0.249758,0,0);-webkit-transform:matrix(0.216920,-0.009554,0.011000,0.249758,0,0);}
.m20_c00293{transform:matrix(0.224155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224155,0.000000,0.000000,0.250000,0,0);}
.m9_c00293{transform:matrix(0.225625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225625,0.000000,0.000000,0.250000,0,0);}
.m53_c00293{transform:matrix(0.225948,-0.008821,0.009752,0.249810,0,0);-ms-transform:matrix(0.225948,-0.008821,0.009752,0.249810,0,0);-webkit-transform:matrix(0.225948,-0.008821,0.009752,0.249810,0,0);}
.m41_c00293{transform:matrix(0.228475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228475,0.000000,0.000000,0.250000,0,0);}
.ma_c00293{transform:matrix(0.228733,-0.010303,0.011250,0.249747,0,0);-ms-transform:matrix(0.228733,-0.010303,0.011250,0.249747,0,0);-webkit-transform:matrix(0.228733,-0.010303,0.011250,0.249747,0,0);}
.m2f_c00293{transform:matrix(0.232374,-0.010700,0.011499,0.249735,0,0);-ms-transform:matrix(0.232374,-0.010700,0.011499,0.249735,0,0);-webkit-transform:matrix(0.232374,-0.010700,0.011499,0.249735,0,0);}
.m65_c00293{transform:matrix(0.234468,-0.010327,0.011000,0.249758,0,0);-ms-transform:matrix(0.234468,-0.010327,0.011000,0.249758,0,0);-webkit-transform:matrix(0.234468,-0.010327,0.011000,0.249758,0,0);}
.m1c_c00293{transform:matrix(0.240730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240730,0.000000,0.000000,0.250000,0,0);}
.m23_c00293{transform:matrix(0.254302,-0.011455,0.011250,0.249747,0,0);-ms-transform:matrix(0.254302,-0.011455,0.011250,0.249747,0,0);-webkit-transform:matrix(0.254302,-0.011455,0.011250,0.249747,0,0);}
.m1d_c00293{transform:matrix(0.254320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254320,0.000000,0.000000,0.250000,0,0);}
.m6c_c00293{transform:matrix(0.254870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254870,0.000000,0.000000,0.250000,0,0);}
.m67_c00293{transform:matrix(0.258040,-0.011365,0.011000,0.249758,0,0);-ms-transform:matrix(0.258040,-0.011365,0.011000,0.249758,0,0);-webkit-transform:matrix(0.258040,-0.011365,0.011000,0.249758,0,0);}
.m21_c00293{transform:matrix(0.258615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258615,0.000000,0.000000,0.250000,0,0);}
.m5f_c00293{transform:matrix(0.259092,-0.010374,0.010002,0.249800,0,0);-ms-transform:matrix(0.259092,-0.010374,0.010002,0.249800,0,0);-webkit-transform:matrix(0.259092,-0.010374,0.010002,0.249800,0,0);}
.m51_c00293{transform:matrix(0.263274,-0.010278,0.009752,0.249810,0,0);-ms-transform:matrix(0.263274,-0.010278,0.009752,0.249810,0,0);-webkit-transform:matrix(0.263274,-0.010278,0.009752,0.249810,0,0);}
.m5b_c00293{transform:matrix(0.264010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264010,0.000000,0.000000,0.250000,0,0);}
.md_c00293{transform:matrix(0.264527,-0.011916,0.011250,0.249747,0,0);-ms-transform:matrix(0.264527,-0.011916,0.011250,0.249747,0,0);-webkit-transform:matrix(0.264527,-0.011916,0.011250,0.249747,0,0);}
.m19_c00293{transform:matrix(0.273005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273005,0.000000,0.000000,0.250000,0,0);}
.m4c_c00293{transform:matrix(0.274765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274765,0.000000,0.000000,0.250000,0,0);}
.m2c_c00293{transform:matrix(0.280253,-0.012905,0.011499,0.249735,0,0);-ms-transform:matrix(0.280253,-0.012905,0.011499,0.249735,0,0);-webkit-transform:matrix(0.280253,-0.012905,0.011499,0.249735,0,0);}
.m31_c00293{transform:matrix(0.281627,-0.012968,0.011499,0.249735,0,0);-ms-transform:matrix(0.281627,-0.012968,0.011499,0.249735,0,0);-webkit-transform:matrix(0.281627,-0.012968,0.011499,0.249735,0,0);}
.m68_c00293{transform:matrix(0.285313,-0.012566,0.011000,0.249758,0,0);-ms-transform:matrix(0.285313,-0.012566,0.011000,0.249758,0,0);-webkit-transform:matrix(0.285313,-0.012566,0.011000,0.249758,0,0);}
.m76_c00293{transform:matrix(0.287835,-0.013254,0.011499,0.249735,0,0);-ms-transform:matrix(0.287835,-0.013254,0.011499,0.249735,0,0);-webkit-transform:matrix(0.287835,-0.013254,0.011499,0.249735,0,0);}
.mf_c00293{transform:matrix(0.290396,-0.013081,0.011250,0.249747,0,0);-ms-transform:matrix(0.290396,-0.013081,0.011250,0.249747,0,0);-webkit-transform:matrix(0.290396,-0.013081,0.011250,0.249747,0,0);}
.m38_c00293{transform:matrix(0.296671,-0.013661,0.011499,0.249735,0,0);-ms-transform:matrix(0.296671,-0.013661,0.011499,0.249735,0,0);-webkit-transform:matrix(0.296671,-0.013661,0.011499,0.249735,0,0);}
.m4a_c00293{transform:matrix(0.313355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313355,0.000000,0.000000,0.250000,0,0);}
.m40_c00293{transform:matrix(0.314005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314005,0.000000,0.000000,0.250000,0,0);}
.m8e_c00293{transform:matrix(0.315290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315290,0.000000,0.000000,0.250000,0,0);}
.m25_c00293{transform:matrix(0.317863,-0.014636,0.011499,0.249735,0,0);-ms-transform:matrix(0.317863,-0.014636,0.011499,0.249735,0,0);-webkit-transform:matrix(0.317863,-0.014636,0.011499,0.249735,0,0);}
.m33_c00293{transform:matrix(0.318108,-0.014648,0.011499,0.249735,0,0);-ms-transform:matrix(0.318108,-0.014648,0.011499,0.249735,0,0);-webkit-transform:matrix(0.318108,-0.014648,0.011499,0.249735,0,0);}
.m72_c00293{transform:matrix(0.321809,-0.014818,0.011499,0.249735,0,0);-ms-transform:matrix(0.321809,-0.014818,0.011499,0.249735,0,0);-webkit-transform:matrix(0.321809,-0.014818,0.011499,0.249735,0,0);}
.m6b_c00293{transform:matrix(0.327990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327990,0.000000,0.000000,0.250000,0,0);}
.m85_c00293{transform:matrix(0.332048,-0.015290,0.011499,0.249735,0,0);-ms-transform:matrix(0.332048,-0.015290,0.011499,0.249735,0,0);-webkit-transform:matrix(0.332048,-0.015290,0.011499,0.249735,0,0);}
.m50_c00293{transform:matrix(0.336872,-0.014163,0.010501,0.249779,0,0);-ms-transform:matrix(0.336872,-0.014163,0.010501,0.249779,0,0);-webkit-transform:matrix(0.336872,-0.014163,0.010501,0.249779,0,0);}
.m78_c00293{transform:matrix(0.346198,-0.015941,0.011499,0.249735,0,0);-ms-transform:matrix(0.346198,-0.015941,0.011499,0.249735,0,0);-webkit-transform:matrix(0.346198,-0.015941,0.011499,0.249735,0,0);}
.m81_c00293{transform:matrix(0.347037,-0.015980,0.011499,0.249735,0,0);-ms-transform:matrix(0.347037,-0.015980,0.011499,0.249735,0,0);-webkit-transform:matrix(0.347037,-0.015980,0.011499,0.249735,0,0);}
.m7a_c00293{transform:matrix(0.348925,-0.016067,0.011499,0.249735,0,0);-ms-transform:matrix(0.348925,-0.016067,0.011499,0.249735,0,0);-webkit-transform:matrix(0.348925,-0.016067,0.011499,0.249735,0,0);}
.m87_c00293{transform:matrix(0.354045,-0.016302,0.011499,0.249735,0,0);-ms-transform:matrix(0.354045,-0.016302,0.011499,0.249735,0,0);-webkit-transform:matrix(0.354045,-0.016302,0.011499,0.249735,0,0);}
.m3b_c00293{transform:matrix(0.357805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357805,0.000000,0.000000,0.250000,0,0);}
.m28_c00293{transform:matrix(0.360243,-0.016588,0.011499,0.249735,0,0);-ms-transform:matrix(0.360243,-0.016588,0.011499,0.249735,0,0);-webkit-transform:matrix(0.360243,-0.016588,0.011499,0.249735,0,0);}
.m1f_c00293{transform:matrix(0.361840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361840,0.000000,0.000000,0.250000,0,0);}
.m2b_c00293{transform:matrix(0.363425,-0.016734,0.011499,0.249735,0,0);-ms-transform:matrix(0.363425,-0.016734,0.011499,0.249735,0,0);-webkit-transform:matrix(0.363425,-0.016734,0.011499,0.249735,0,0);}
.m5a_c00293{transform:matrix(0.366195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366195,0.000000,0.000000,0.250000,0,0);}
.m59_c00293{transform:matrix(0.379186,-0.014803,0.009752,0.249810,0,0);-ms-transform:matrix(0.379186,-0.014803,0.009752,0.249810,0,0);-webkit-transform:matrix(0.379186,-0.014803,0.009752,0.249810,0,0);}
.m4b_c00293{transform:matrix(0.382205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382205,0.000000,0.000000,0.250000,0,0);}
.m8b_c00293{transform:matrix(0.383090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383090,0.000000,0.000000,0.250000,0,0);}
.m4e_c00293{transform:matrix(0.387470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387470,0.000000,0.000000,0.250000,0,0);}
.m8d_c00293{transform:matrix(0.395230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395230,0.000000,0.000000,0.250000,0,0);}
.m89_c00293{transform:matrix(0.405196,-0.018658,0.011499,0.249735,0,0);-ms-transform:matrix(0.405196,-0.018658,0.011499,0.249735,0,0);-webkit-transform:matrix(0.405196,-0.018658,0.011499,0.249735,0,0);}
.m37_c00293{transform:matrix(0.405316,-0.018663,0.011499,0.249735,0,0);-ms-transform:matrix(0.405316,-0.018663,0.011499,0.249735,0,0);-webkit-transform:matrix(0.405316,-0.018663,0.011499,0.249735,0,0);}
.m2_c00293{transform:matrix(0.412930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412930,0.000000,0.000000,0.250000,0,0);}
.m75_c00293{transform:matrix(0.429405,-0.019772,0.011499,0.249735,0,0);-ms-transform:matrix(0.429405,-0.019772,0.011499,0.249735,0,0);-webkit-transform:matrix(0.429405,-0.019772,0.011499,0.249735,0,0);}
.m6f_c00293{transform:matrix(0.445638,-0.020520,0.011499,0.249735,0,0);-ms-transform:matrix(0.445638,-0.020520,0.011499,0.249735,0,0);-webkit-transform:matrix(0.445638,-0.020520,0.011499,0.249735,0,0);}
.m8_c00293{transform:matrix(0.449310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449310,0.000000,0.000000,0.250000,0,0);}
.m84_c00293{transform:matrix(0.451250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451250,0.000000,0.000000,0.250000,0,0);}
.m82_c00293{transform:matrix(0.453025,-0.020860,0.011499,0.249735,0,0);-ms-transform:matrix(0.453025,-0.020860,0.011499,0.249735,0,0);-webkit-transform:matrix(0.453025,-0.020860,0.011499,0.249735,0,0);}
.m11_c00293{transform:matrix(0.464769,-0.020936,0.011250,0.249747,0,0);-ms-transform:matrix(0.464769,-0.020936,0.011250,0.249747,0,0);-webkit-transform:matrix(0.464769,-0.020936,0.011250,0.249747,0,0);}
.m5c_c00293{transform:matrix(0.470770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470770,0.000000,0.000000,0.250000,0,0);}
.m22_c00293{transform:matrix(0.480600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480600,0.000000,0.000000,0.250000,0,0);}
.m42_c00293{transform:matrix(0.483035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483035,0.000000,0.000000,0.250000,0,0);}
.m52_c00293{transform:matrix(0.490806,-0.019161,0.009752,0.249810,0,0);-ms-transform:matrix(0.490806,-0.019161,0.009752,0.249810,0,0);-webkit-transform:matrix(0.490806,-0.019161,0.009752,0.249810,0,0);}
.m7c_c00293{transform:matrix(0.511748,-0.023564,0.011499,0.249735,0,0);-ms-transform:matrix(0.511748,-0.023564,0.011499,0.249735,0,0);-webkit-transform:matrix(0.511748,-0.023564,0.011499,0.249735,0,0);}
.m62_c00293{transform:matrix(0.516130,-0.022732,0.011000,0.249758,0,0);-ms-transform:matrix(0.516130,-0.022732,0.011000,0.249758,0,0);-webkit-transform:matrix(0.516130,-0.022732,0.011000,0.249758,0,0);}
.m5e_c00293{transform:matrix(0.525839,-0.021055,0.010002,0.249800,0,0);-ms-transform:matrix(0.525839,-0.021055,0.010002,0.249800,0,0);-webkit-transform:matrix(0.525839,-0.021055,0.010002,0.249800,0,0);}
.m45_c00293{transform:matrix(0.528045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528045,0.000000,0.000000,0.250000,0,0);}
.m17_c00293{transform:matrix(0.530660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530660,0.000000,0.000000,0.250000,0,0);}
.m39_c00293{transform:matrix(0.535438,-0.024655,0.011499,0.249735,0,0);-ms-transform:matrix(0.535438,-0.024655,0.011499,0.249735,0,0);-webkit-transform:matrix(0.535438,-0.024655,0.011499,0.249735,0,0);}
.m80_c00293{transform:matrix(0.549393,-0.025297,0.011499,0.249735,0,0);-ms-transform:matrix(0.549393,-0.025297,0.011499,0.249735,0,0);-webkit-transform:matrix(0.549393,-0.025297,0.011499,0.249735,0,0);}
.m2d_c00293{transform:matrix(0.573033,-0.026386,0.011499,0.249735,0,0);-ms-transform:matrix(0.573033,-0.026386,0.011499,0.249735,0,0);-webkit-transform:matrix(0.573033,-0.026386,0.011499,0.249735,0,0);}
.m1e_c00293{transform:matrix(0.582495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582495,0.000000,0.000000,0.250000,0,0);}
.m86_c00293{transform:matrix(0.602447,-0.027740,0.011499,0.249735,0,0);-ms-transform:matrix(0.602447,-0.027740,0.011499,0.249735,0,0);-webkit-transform:matrix(0.602447,-0.027740,0.011499,0.249735,0,0);}
.m55_c00293{transform:matrix(0.657214,-0.025657,0.009752,0.249810,0,0);-ms-transform:matrix(0.657214,-0.025657,0.009752,0.249810,0,0);-webkit-transform:matrix(0.657214,-0.025657,0.009752,0.249810,0,0);}
.m27_c00293{transform:matrix(0.668936,-0.030802,0.011499,0.249735,0,0);-ms-transform:matrix(0.668936,-0.030802,0.011499,0.249735,0,0);-webkit-transform:matrix(0.668936,-0.030802,0.011499,0.249735,0,0);}
.m4d_c00293{transform:matrix(0.673970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.673970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.673970,0.000000,0.000000,0.250000,0,0);}
.m3c_c00293{transform:matrix(0.693130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.693130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.693130,0.000000,0.000000,0.250000,0,0);}
.m46_c00293{transform:matrix(0.718039,-0.031625,0.011000,0.249758,0,0);-ms-transform:matrix(0.718039,-0.031625,0.011000,0.249758,0,0);-webkit-transform:matrix(0.718039,-0.031625,0.011000,0.249758,0,0);}
.m4_c00293{transform:matrix(0.745730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.745730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.745730,0.000000,0.000000,0.250000,0,0);}
.m13_c00293{transform:matrix(0.752362,-0.033890,0.011250,0.249747,0,0);-ms-transform:matrix(0.752362,-0.033890,0.011250,0.249747,0,0);-webkit-transform:matrix(0.752362,-0.033890,0.011250,0.249747,0,0);}
.m10_c00293{transform:matrix(0.756333,-0.034069,0.011250,0.249747,0,0);-ms-transform:matrix(0.756333,-0.034069,0.011250,0.249747,0,0);-webkit-transform:matrix(0.756333,-0.034069,0.011250,0.249747,0,0);}
.m73_c00293{transform:matrix(0.767652,-0.035347,0.011499,0.249735,0,0);-ms-transform:matrix(0.767652,-0.035347,0.011499,0.249735,0,0);-webkit-transform:matrix(0.767652,-0.035347,0.011499,0.249735,0,0);}
.m4f_c00293{transform:matrix(0.835477,-0.035125,0.010501,0.249779,0,0);-ms-transform:matrix(0.835477,-0.035125,0.010501,0.249779,0,0);-webkit-transform:matrix(0.835477,-0.035125,0.010501,0.249779,0,0);}
.m88_c00293{transform:matrix(0.886101,-0.040801,0.011499,0.249735,0,0);-ms-transform:matrix(0.886101,-0.040801,0.011499,0.249735,0,0);-webkit-transform:matrix(0.886101,-0.040801,0.011499,0.249735,0,0);}
.m12_c00293{transform:matrix(0.981705,-0.044221,0.011250,0.249747,0,0);-ms-transform:matrix(0.981705,-0.044221,0.011250,0.249747,0,0);-webkit-transform:matrix(0.981705,-0.044221,0.011250,0.249747,0,0);}
.m36_c00293{transform:matrix(1.079376,-0.049701,0.011499,0.249735,0,0);-ms-transform:matrix(1.079376,-0.049701,0.011499,0.249735,0,0);-webkit-transform:matrix(1.079376,-0.049701,0.011499,0.249735,0,0);}
.m44_c00293{transform:matrix(1.127875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.127875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.127875,0.000000,0.000000,0.250000,0,0);}
.m69_c00293{transform:matrix(1.318680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.318680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.318680,0.000000,0.000000,0.250000,0,0);}
.m57_c00293{transform:matrix(1.356866,-0.052971,0.009752,0.249810,0,0);-ms-transform:matrix(1.356866,-0.052971,0.009752,0.249810,0,0);-webkit-transform:matrix(1.356866,-0.052971,0.009752,0.249810,0,0);}
.m58_c00293{transform:matrix(1.457140,-0.056885,0.009752,0.249810,0,0);-ms-transform:matrix(1.457140,-0.056885,0.009752,0.249810,0,0);-webkit-transform:matrix(1.457140,-0.056885,0.009752,0.249810,0,0);}
.m49_c00293{transform:matrix(1.457470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.457470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.457470,0.000000,0.000000,0.250000,0,0);}
.m14_c00293{transform:matrix(1.509230,-0.067983,0.011250,0.249747,0,0);-ms-transform:matrix(1.509230,-0.067983,0.011250,0.249747,0,0);-webkit-transform:matrix(1.509230,-0.067983,0.011250,0.249747,0,0);}
.m43_c00293{transform:matrix(1.550250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.550250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.550250,0.000000,0.000000,0.250000,0,0);}
.m0_c00293{transform:matrix(1.980320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.980320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.980320,0.000000,0.000000,0.250000,0,0);}
.m34_c00293{transform:matrix(3.074487,-0.141568,0.011499,0.249735,0,0);-ms-transform:matrix(3.074487,-0.141568,0.011499,0.249735,0,0);-webkit-transform:matrix(3.074487,-0.141568,0.011499,0.249735,0,0);}
.m35_c00293{transform:matrix(3.592928,-0.165440,0.011499,0.249735,0,0);-ms-transform:matrix(3.592928,-0.165440,0.011499,0.249735,0,0);-webkit-transform:matrix(3.592928,-0.165440,0.011499,0.249735,0,0);}
.m6d_c00293{transform:matrix(4.341422,-0.208597,0.011998,0.249712,0,0);-ms-transform:matrix(4.341422,-0.208597,0.011998,0.249712,0,0);-webkit-transform:matrix(4.341422,-0.208597,0.011998,0.249712,0,0);}
.m56_c00293{transform:matrix(4.940112,-0.192857,0.009752,0.249810,0,0);-ms-transform:matrix(4.940112,-0.192857,0.009752,0.249810,0,0);-webkit-transform:matrix(4.940112,-0.192857,0.009752,0.249810,0,0);}
.v0_c00293{vertical-align:0.000000px;}
.ls0_c00293{letter-spacing:0.000000px;}
.sc__c00293{text-shadow:none;}
.sc0_c00293{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__c00293{-webkit-text-stroke:0px transparent;}
.sc0_c00293{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00293{word-spacing:0.000000px;}
._1_c00293{width:128.461631px;}
._0_c00293{width:731.432616px;}
.fc0_c00293{color:transparent;}
.fs5_c00293{font-size:12.000156px;}
.fs6_c00293{font-size:12.000702px;}
.fsc_c00293{font-size:17.995697px;}
.fs2_c00293{font-size:18.000000px;}
.fs4_c00293{font-size:18.000234px;}
.fs8_c00293{font-size:18.001053px;}
.fsf_c00293{font-size:18.002745px;}
.fsb_c00293{font-size:23.994263px;}
.fsd_c00293{font-size:23.995212px;}
.fsa_c00293{font-size:23.997180px;}
.fse_c00293{font-size:23.999244px;}
.fs0_c00293{font-size:24.000000px;}
.fs3_c00293{font-size:24.000312px;}
.fs7_c00293{font-size:24.001404px;}
.fs10_c00293{font-size:30.001755px;}
.fs9_c00293{font-size:41.998677px;}
.fs1_c00293{font-size:48.000000px;}
.y0_c00293{bottom:0.000000px;}
.y73_c00293{bottom:140.532000px;}
.y72_c00293{bottom:151.870500px;}
.y71_c00293{bottom:167.266500px;}
.y6b_c00293{bottom:187.119000px;}
.y6c_c00293{bottom:187.682454px;}
.y6d_c00293{bottom:188.788938px;}
.y6e_c00293{bottom:190.042047px;}
.y6f_c00293{bottom:190.629168px;}
.y70_c00293{bottom:191.104509px;}
.y6a_c00293{bottom:193.050000px;}
.y63_c00293{bottom:193.057331px;}
.y67_c00293{bottom:193.721427px;}
.y68_c00293{bottom:193.722857px;}
.y69_c00293{bottom:193.723331px;}
.y64_c00293{bottom:196.554831px;}
.y65_c00293{bottom:197.872748px;}
.y5b_c00293{bottom:198.733500px;}
.y66_c00293{bottom:199.040421px;}
.y5c_c00293{bottom:199.286811px;}
.y5d_c00293{bottom:199.667415px;}
.y5e_c00293{bottom:200.772174px;}
.y5f_c00293{bottom:204.859803px;}
.y60_c00293{bottom:205.486254px;}
.y61_c00293{bottom:205.799859px;}
.y62_c00293{bottom:206.541402px;}
.y59_c00293{bottom:290.632566px;}
.y5a_c00293{bottom:290.633877px;}
.y55_c00293{bottom:294.318000px;}
.y56_c00293{bottom:295.154832px;}
.y57_c00293{bottom:296.665035px;}
.y58_c00293{bottom:297.538092px;}
.y54_c00293{bottom:318.073500px;}
.y53_c00293{bottom:346.942500px;}
.y4f_c00293{bottom:356.803604px;}
.y51_c00293{bottom:356.803782px;}
.y50_c00293{bottom:356.803961px;}
.y52_c00293{bottom:356.804957px;}
.y4d_c00293{bottom:361.388721px;}
.y4e_c00293{bottom:361.389858px;}
.y4c_c00293{bottom:367.474500px;}
.y47_c00293{bottom:387.453000px;}
.y48_c00293{bottom:388.351680px;}
.y49_c00293{bottom:389.177880px;}
.y4a_c00293{bottom:389.970840px;}
.y4b_c00293{bottom:390.465960px;}
.y46_c00293{bottom:399.052500px;}
.y44_c00293{bottom:409.051208px;}
.y45_c00293{bottom:409.053444px;}
.y41_c00293{bottom:414.441411px;}
.y42_c00293{bottom:422.189808px;}
.y43_c00293{bottom:424.993880px;}
.y3d_c00293{bottom:425.526000px;}
.y3e_c00293{bottom:426.549516px;}
.y3f_c00293{bottom:427.666106px;}
.y40_c00293{bottom:428.734842px;}
.y3b_c00293{bottom:504.100500px;}
.y3c_c00293{bottom:507.513210px;}
.y39_c00293{bottom:514.359000px;}
.y3a_c00293{bottom:516.670500px;}
.y36_c00293{bottom:525.159000px;}
.y37_c00293{bottom:527.758212px;}
.y38_c00293{bottom:529.103028px;}
.y35_c00293{bottom:608.170500px;}
.y33_c00293{bottom:608.587500px;}
.y34_c00293{bottom:611.110500px;}
.y32_c00293{bottom:616.669500px;}
.y31_c00293{bottom:623.160000px;}
.y30_c00293{bottom:639.097500px;}
.y2f_c00293{bottom:648.675000px;}
.y2e_c00293{bottom:655.290000px;}
.y28_c00293{bottom:694.721025px;}
.y1f_c00293{bottom:695.261124px;}
.y20_c00293{bottom:696.336253px;}
.y21_c00293{bottom:698.237650px;}
.y29_c00293{bottom:698.262195px;}
.y19_c00293{bottom:698.779500px;}
.y22_c00293{bottom:700.402163px;}
.y1a_c00293{bottom:700.425081px;}
.y23_c00293{bottom:700.677963px;}
.y2a_c00293{bottom:702.456441px;}
.y24_c00293{bottom:703.288166px;}
.y25_c00293{bottom:703.793243px;}
.y1b_c00293{bottom:704.043441px;}
.y26_c00293{bottom:704.140268px;}
.y27_c00293{bottom:704.626272px;}
.y2b_c00293{bottom:704.961689px;}
.y2c_c00293{bottom:705.834783px;}
.y17_c00293{bottom:706.062000px;}
.y2d_c00293{bottom:706.426647px;}
.y1c_c00293{bottom:706.734027px;}
.y1d_c00293{bottom:707.665113px;}
.y1e_c00293{bottom:708.510501px;}
.y18_c00293{bottom:709.493700px;}
.y16_c00293{bottom:737.511000px;}
.y15_c00293{bottom:769.500000px;}
.y14_c00293{bottom:793.396500px;}
.y13_c00293{bottom:800.142000px;}
.yc_c00293{bottom:855.325488px;}
.yd_c00293{bottom:855.594894px;}
.ye_c00293{bottom:856.592503px;}
.yf_c00293{bottom:857.633556px;}
.y10_c00293{bottom:858.432081px;}
.y7_c00293{bottom:859.957500px;}
.y11_c00293{bottom:861.991667px;}
.y8_c00293{bottom:864.568762px;}
.y12_c00293{bottom:864.651072px;}
.y6_c00293{bottom:866.701500px;}
.y9_c00293{bottom:867.404505px;}
.ya_c00293{bottom:868.983532px;}
.yb_c00293{bottom:869.876287px;}
.y5_c00293{bottom:871.830000px;}
.y4_c00293{bottom:886.812000px;}
.y3_c00293{bottom:891.135000px;}
.y2_c00293{bottom:897.616500px;}
.y1_c00293{bottom:1023.978000px;}
.h7_c00293{height:12.000156px;}
.h8_c00293{height:12.000702px;}
.he_c00293{height:17.995697px;}
.h4_c00293{height:18.000000px;}
.h6_c00293{height:18.000234px;}
.ha_c00293{height:18.001053px;}
.h11_c00293{height:18.002745px;}
.hd_c00293{height:23.994263px;}
.hf_c00293{height:23.995212px;}
.hc_c00293{height:23.997180px;}
.h10_c00293{height:23.999244px;}
.h2_c00293{height:24.000000px;}
.h5_c00293{height:24.000312px;}
.h9_c00293{height:24.001404px;}
.h12_c00293{height:30.001755px;}
.hb_c00293{height:41.998677px;}
.h3_c00293{height:48.000000px;}
.h1_c00293{height:1165.500000px;}
.h0_c00293{height:1165.800000px;}
.w0_c00293{width:915.000000px;}
.x0_c00293{left:0.000000px;}
.x1a_c00293{left:1.620000px;}
.x43_c00293{left:104.481000px;}
.x25_c00293{left:112.127539px;}
.x2d_c00293{left:113.377777px;}
.x49_c00293{left:128.874539px;}
.x46_c00293{left:132.434079px;}
.x18_c00293{left:142.290000px;}
.xf_c00293{left:147.042279px;}
.x16_c00293{left:149.310000px;}
.x10_c00293{left:154.323126px;}
.x3_c00293{left:155.520000px;}
.x4_c00293{left:160.110000px;}
.x5_c00293{left:162.270000px;}
.xa_c00293{left:168.637500px;}
.x7_c00293{left:170.370000px;}
.x17_c00293{left:172.530000px;}
.x65_c00293{left:177.930000px;}
.x11_c00293{left:181.236847px;}
.x6_c00293{left:182.790000px;}
.x66_c00293{left:184.680000px;}
.x20_c00293{left:185.727227px;}
.x19_c00293{left:189.810000px;}
.x8_c00293{left:190.890000px;}
.x9_c00293{left:191.970000px;}
.x26_c00293{left:197.087524px;}
.x60_c00293{left:199.754111px;}
.x56_c00293{left:205.740000px;}
.x57_c00293{left:207.630000px;}
.x12_c00293{left:209.348343px;}
.x5c_c00293{left:216.869198px;}
.x1f_c00293{left:229.798740px;}
.x13_c00293{left:230.909031px;}
.x67_c00293{left:235.140956px;}
.x5d_c00293{left:240.861681px;}
.x68_c00293{left:247.891692px;}
.x27_c00293{left:258.835933px;}
.x21_c00293{left:264.308566px;}
.x28_c00293{left:266.684514px;}
.xb_c00293{left:271.007527px;}
.x58_c00293{left:293.221500px;}
.x2e_c00293{left:297.350964px;}
.x61_c00293{left:308.877621px;}
.x22_c00293{left:322.741076px;}
.x14_c00293{left:326.998940px;}
.x5e_c00293{left:329.634320px;}
.x63_c00293{left:331.027181px;}
.xc_c00293{left:333.961011px;}
.x29_c00293{left:341.145121px;}
.x23_c00293{left:342.961834px;}
.x5f_c00293{left:350.049884px;}
.x32_c00293{left:351.810000px;}
.x33_c00293{left:353.700000px;}
.x2a_c00293{left:355.571002px;}
.x2f_c00293{left:356.943793px;}
.x64_c00293{left:358.028772px;}
.x24_c00293{left:361.321456px;}
.x2b_c00293{left:365.455581px;}
.xd_c00293{left:369.015421px;}
.x30_c00293{left:377.698816px;}
.x2c_c00293{left:379.304194px;}
.x3f_c00293{left:385.020000px;}
.x62_c00293{left:386.404385px;}
.xe_c00293{left:388.834583px;}
.x31_c00293{left:391.791834px;}
.x15_c00293{left:398.771406px;}
.x3c_c00293{left:403.863000px;}
.x3a_c00293{left:405.706500px;}
.x35_c00293{left:414.450000px;}
.x5b_c00293{left:418.499211px;}
.x36_c00293{left:426.870000px;}
.x40_c00293{left:428.490000px;}
.x37_c00293{left:434.970000px;}
.x34_c00293{left:441.180000px;}
.x38_c00293{left:442.260000px;}
.x59_c00293{left:446.789808px;}
.x1_c00293{left:449.550000px;}
.x41_c00293{left:450.900000px;}
.x39_c00293{left:454.140000px;}
.x3d_c00293{left:462.876927px;}
.x4a_c00293{left:465.480000px;}
.x3b_c00293{left:467.241000px;}
.x47_c00293{left:468.769398px;}
.x1b_c00293{left:476.010000px;}
.x5a_c00293{left:479.587478px;}
.x42_c00293{left:483.840000px;}
.x4d_c00293{left:485.673378px;}
.x3e_c00293{left:493.410363px;}
.x4b_c00293{left:499.230000px;}
.x1c_c00293{left:501.930000px;}
.x2_c00293{left:504.090000px;}
.x4e_c00293{left:505.477554px;}
.x52_c00293{left:509.490643px;}
.x4c_c00293{left:510.840000px;}
.x50_c00293{left:513.658500px;}
.x1d_c00293{left:515.700000px;}
.x4f_c00293{left:517.843176px;}
.x1e_c00293{left:527.580000px;}
.x53_c00293{left:528.929343px;}
.x44_c00293{left:531.776125px;}
.x54_c00293{left:539.458717px;}
.x51_c00293{left:544.589725px;}
.x55_c00293{left:553.768575px;}
.x45_c00293{left:559.152222px;}
.x48_c00293{left:590.457538px;}
.x6a_c00293{left:606.960000px;}
.x6b_c00293{left:608.580000px;}
.x69_c00293{left:613.710000px;}
@media print{
.v0_c00293{vertical-align:0.000000pt;}
.ls0_c00293{letter-spacing:0.000000pt;}
.ws0_c00293{word-spacing:0.000000pt;}
._1_c00293{width:114.188117pt;}
._0_c00293{width:650.162325pt;}
.fs5_c00293{font-size:10.666805pt;}
.fs6_c00293{font-size:10.667291pt;}
.fsc_c00293{font-size:15.996176pt;}
.fs2_c00293{font-size:16.000000pt;}
.fs4_c00293{font-size:16.000208pt;}
.fs8_c00293{font-size:16.000936pt;}
.fsf_c00293{font-size:16.002440pt;}
.fsb_c00293{font-size:21.328234pt;}
.fsd_c00293{font-size:21.329077pt;}
.fsa_c00293{font-size:21.330827pt;}
.fse_c00293{font-size:21.332661pt;}
.fs0_c00293{font-size:21.333333pt;}
.fs3_c00293{font-size:21.333611pt;}
.fs7_c00293{font-size:21.334581pt;}
.fs10_c00293{font-size:26.668227pt;}
.fs9_c00293{font-size:37.332157pt;}
.fs1_c00293{font-size:42.666667pt;}
.y0_c00293{bottom:0.000000pt;}
.y73_c00293{bottom:124.917333pt;}
.y72_c00293{bottom:134.996000pt;}
.y71_c00293{bottom:148.681333pt;}
.y6b_c00293{bottom:166.328000pt;}
.y6c_c00293{bottom:166.828848pt;}
.y6d_c00293{bottom:167.812389pt;}
.y6e_c00293{bottom:168.926264pt;}
.y6f_c00293{bottom:169.448149pt;}
.y70_c00293{bottom:169.870675pt;}
.y6a_c00293{bottom:171.600000pt;}
.y63_c00293{bottom:171.606516pt;}
.y67_c00293{bottom:172.196824pt;}
.y68_c00293{bottom:172.198095pt;}
.y69_c00293{bottom:172.198516pt;}
.y64_c00293{bottom:174.715405pt;}
.y65_c00293{bottom:175.886887pt;}
.y5b_c00293{bottom:176.652000pt;}
.y66_c00293{bottom:176.924819pt;}
.y5c_c00293{bottom:177.143832pt;}
.y5d_c00293{bottom:177.482147pt;}
.y5e_c00293{bottom:178.464155pt;}
.y5f_c00293{bottom:182.097603pt;}
.y60_c00293{bottom:182.654448pt;}
.y61_c00293{bottom:182.933208pt;}
.y62_c00293{bottom:183.592357pt;}
.y59_c00293{bottom:258.340059pt;}
.y5a_c00293{bottom:258.341224pt;}
.y55_c00293{bottom:261.616000pt;}
.y56_c00293{bottom:262.359851pt;}
.y57_c00293{bottom:263.702253pt;}
.y58_c00293{bottom:264.478304pt;}
.y54_c00293{bottom:282.732000pt;}
.y53_c00293{bottom:308.393333pt;}
.y4f_c00293{bottom:317.158759pt;}
.y51_c00293{bottom:317.158917pt;}
.y50_c00293{bottom:317.159076pt;}
.y52_c00293{bottom:317.159961pt;}
.y4d_c00293{bottom:321.234419pt;}
.y4e_c00293{bottom:321.235429pt;}
.y4c_c00293{bottom:326.644000pt;}
.y47_c00293{bottom:344.402667pt;}
.y48_c00293{bottom:345.201493pt;}
.y49_c00293{bottom:345.935893pt;}
.y4a_c00293{bottom:346.640747pt;}
.y4b_c00293{bottom:347.080853pt;}
.y46_c00293{bottom:354.713333pt;}
.y44_c00293{bottom:363.601073pt;}
.y45_c00293{bottom:363.603061pt;}
.y41_c00293{bottom:368.392365pt;}
.y42_c00293{bottom:375.279829pt;}
.y43_c00293{bottom:377.772337pt;}
.y3d_c00293{bottom:378.245333pt;}
.y3e_c00293{bottom:379.155125pt;}
.y3f_c00293{bottom:380.147649pt;}
.y40_c00293{bottom:381.097637pt;}
.y3b_c00293{bottom:448.089333pt;}
.y3c_c00293{bottom:451.122853pt;}
.y39_c00293{bottom:457.208000pt;}
.y3a_c00293{bottom:459.262667pt;}
.y36_c00293{bottom:466.808000pt;}
.y37_c00293{bottom:469.118411pt;}
.y38_c00293{bottom:470.313803pt;}
.y35_c00293{bottom:540.596000pt;}
.y33_c00293{bottom:540.966667pt;}
.y34_c00293{bottom:543.209333pt;}
.y32_c00293{bottom:548.150667pt;}
.y31_c00293{bottom:553.920000pt;}
.y30_c00293{bottom:568.086667pt;}
.y2f_c00293{bottom:576.600000pt;}
.y2e_c00293{bottom:582.480000pt;}
.y28_c00293{bottom:617.529800pt;}
.y1f_c00293{bottom:618.009888pt;}
.y20_c00293{bottom:618.965559pt;}
.y21_c00293{bottom:620.655689pt;}
.y29_c00293{bottom:620.677507pt;}
.y19_c00293{bottom:621.137333pt;}
.y22_c00293{bottom:622.579700pt;}
.y1a_c00293{bottom:622.600072pt;}
.y23_c00293{bottom:622.824856pt;}
.y2a_c00293{bottom:624.405725pt;}
.y24_c00293{bottom:625.145036pt;}
.y25_c00293{bottom:625.593993pt;}
.y1b_c00293{bottom:625.816392pt;}
.y26_c00293{bottom:625.902460pt;}
.y27_c00293{bottom:626.334464pt;}
.y2b_c00293{bottom:626.632612pt;}
.y2c_c00293{bottom:627.408696pt;}
.y17_c00293{bottom:627.610667pt;}
.y2d_c00293{bottom:627.934797pt;}
.y1c_c00293{bottom:628.208024pt;}
.y1d_c00293{bottom:629.035656pt;}
.y1e_c00293{bottom:629.787112pt;}
.y18_c00293{bottom:630.661067pt;}
.y16_c00293{bottom:655.565333pt;}
.y15_c00293{bottom:684.000000pt;}
.y14_c00293{bottom:705.241333pt;}
.y13_c00293{bottom:711.237333pt;}
.yc_c00293{bottom:760.289323pt;}
.yd_c00293{bottom:760.528795pt;}
.ye_c00293{bottom:761.415559pt;}
.yf_c00293{bottom:762.340939pt;}
.y10_c00293{bottom:763.050739pt;}
.y7_c00293{bottom:764.406667pt;}
.y11_c00293{bottom:766.214815pt;}
.y8_c00293{bottom:768.505567pt;}
.y12_c00293{bottom:768.578731pt;}
.y6_c00293{bottom:770.401333pt;}
.y9_c00293{bottom:771.026227pt;}
.ya_c00293{bottom:772.429807pt;}
.yb_c00293{bottom:773.223367pt;}
.y5_c00293{bottom:774.960000pt;}
.y4_c00293{bottom:788.277333pt;}
.y3_c00293{bottom:792.120000pt;}
.y2_c00293{bottom:797.881333pt;}
.y1_c00293{bottom:910.202667pt;}
.h7_c00293{height:10.666805pt;}
.h8_c00293{height:10.667291pt;}
.he_c00293{height:15.996176pt;}
.h4_c00293{height:16.000000pt;}
.h6_c00293{height:16.000208pt;}
.ha_c00293{height:16.000936pt;}
.h11_c00293{height:16.002440pt;}
.hd_c00293{height:21.328234pt;}
.hf_c00293{height:21.329077pt;}
.hc_c00293{height:21.330827pt;}
.h10_c00293{height:21.332661pt;}
.h2_c00293{height:21.333333pt;}
.h5_c00293{height:21.333611pt;}
.h9_c00293{height:21.334581pt;}
.h12_c00293{height:26.668227pt;}
.hb_c00293{height:37.332157pt;}
.h3_c00293{height:42.666667pt;}
.h1_c00293{height:1036.000000pt;}
.h0_c00293{height:1036.266667pt;}
.w0_c00293{width:813.333333pt;}
.x0_c00293{left:0.000000pt;}
.x1a_c00293{left:1.440000pt;}
.x43_c00293{left:92.872000pt;}
.x25_c00293{left:99.668924pt;}
.x2d_c00293{left:100.780247pt;}
.x49_c00293{left:114.555145pt;}
.x46_c00293{left:117.719181pt;}
.x18_c00293{left:126.480000pt;}
.xf_c00293{left:130.704248pt;}
.x16_c00293{left:132.720000pt;}
.x10_c00293{left:137.176112pt;}
.x3_c00293{left:138.240000pt;}
.x4_c00293{left:142.320000pt;}
.x5_c00293{left:144.240000pt;}
.xa_c00293{left:149.900000pt;}
.x7_c00293{left:151.440000pt;}
.x17_c00293{left:153.360000pt;}
.x65_c00293{left:158.160000pt;}
.x11_c00293{left:161.099420pt;}
.x6_c00293{left:162.480000pt;}
.x66_c00293{left:164.160000pt;}
.x20_c00293{left:165.090868pt;}
.x19_c00293{left:168.720000pt;}
.x8_c00293{left:169.680000pt;}
.x9_c00293{left:170.640000pt;}
.x26_c00293{left:175.188911pt;}
.x60_c00293{left:177.559209pt;}
.x56_c00293{left:182.880000pt;}
.x57_c00293{left:184.560000pt;}
.x12_c00293{left:186.087416pt;}
.x5c_c00293{left:192.772620pt;}
.x1f_c00293{left:204.265547pt;}
.x13_c00293{left:205.252472pt;}
.x67_c00293{left:209.014183pt;}
.x5d_c00293{left:214.099272pt;}
.x68_c00293{left:220.348171pt;}
.x27_c00293{left:230.076385pt;}
.x21_c00293{left:234.940948pt;}
.x28_c00293{left:237.052901pt;}
.xb_c00293{left:240.895580pt;}
.x58_c00293{left:260.641333pt;}
.x2e_c00293{left:264.311968pt;}
.x61_c00293{left:274.557885pt;}
.x22_c00293{left:286.880956pt;}
.x14_c00293{left:290.665724pt;}
.x5e_c00293{left:293.008284pt;}
.x63_c00293{left:294.246383pt;}
.xc_c00293{left:296.854232pt;}
.x29_c00293{left:303.240108pt;}
.x23_c00293{left:304.854964pt;}
.x5f_c00293{left:311.155452pt;}
.x32_c00293{left:312.720000pt;}
.x33_c00293{left:314.400000pt;}
.x2a_c00293{left:316.063113pt;}
.x2f_c00293{left:317.283372pt;}
.x64_c00293{left:318.247797pt;}
.x24_c00293{left:321.174628pt;}
.x2b_c00293{left:324.849405pt;}
.xd_c00293{left:328.013708pt;}
.x30_c00293{left:335.732281pt;}
.x2c_c00293{left:337.159284pt;}
.x3f_c00293{left:342.240000pt;}
.x62_c00293{left:343.470564pt;}
.xe_c00293{left:345.630740pt;}
.x31_c00293{left:348.259408pt;}
.x15_c00293{left:354.463472pt;}
.x3c_c00293{left:358.989333pt;}
.x3a_c00293{left:360.628000pt;}
.x35_c00293{left:368.400000pt;}
.x5b_c00293{left:371.999299pt;}
.x36_c00293{left:379.440000pt;}
.x40_c00293{left:380.880000pt;}
.x37_c00293{left:386.640000pt;}
.x34_c00293{left:392.160000pt;}
.x38_c00293{left:393.120000pt;}
.x59_c00293{left:397.146496pt;}
.x1_c00293{left:399.600000pt;}
.x41_c00293{left:400.800000pt;}
.x39_c00293{left:403.680000pt;}
.x3d_c00293{left:411.446157pt;}
.x4a_c00293{left:413.760000pt;}
.x3b_c00293{left:415.325333pt;}
.x47_c00293{left:416.683909pt;}
.x1b_c00293{left:423.120000pt;}
.x5a_c00293{left:426.299980pt;}
.x42_c00293{left:430.080000pt;}
.x4d_c00293{left:431.709669pt;}
.x3e_c00293{left:438.586989pt;}
.x4b_c00293{left:443.760000pt;}
.x1c_c00293{left:446.160000pt;}
.x2_c00293{left:448.080000pt;}
.x4e_c00293{left:449.313381pt;}
.x52_c00293{left:452.880572pt;}
.x4c_c00293{left:454.080000pt;}
.x50_c00293{left:456.585333pt;}
.x1d_c00293{left:458.400000pt;}
.x4f_c00293{left:460.305045pt;}
.x1e_c00293{left:468.960000pt;}
.x53_c00293{left:470.159416pt;}
.x44_c00293{left:472.689889pt;}
.x54_c00293{left:479.518860pt;}
.x51_c00293{left:484.079756pt;}
.x55_c00293{left:492.238733pt;}
.x45_c00293{left:497.024197pt;}
.x48_c00293{left:524.851145pt;}
.x6a_c00293{left:539.520000pt;}
.x6b_c00293{left:540.960000pt;}
.x69_c00293{left:545.520000pt;}
}





/* 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_c00294 {
    display:none;
  }
  .loading-indicator_c00294.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00294 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_c00294 { 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_c00294" -> "#page-container .classname_c00294")
 */
.pf_c00294 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00294 { /* 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_c00294.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00294 { /* 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_c00294 { /* 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_c00294 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00294 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00294 {overflow:visible;}
  }
}
.c_c00294 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00294 { /* 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_c00294:after { /* webkit #35443 */
  content: '';
}
.t_c00294:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00294 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 */
}
.__c00294 { /* 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_c00294 { /* info for Javascript */
  display:none;
}
.l_c00294 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00294 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00294 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00294: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_c00294 {
    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_c00294.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00294.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_c00294 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00294{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00294;src:url('chunks/assets/font_c605e72f209fc835e906f064.woff2')format("woff");}.ff1_c00294{font-family:ff1_c00294;line-height:1.000000;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;}
.m30_c00294{transform:matrix(0.015909,-0.000207,0.003250,0.249979,0,0);-ms-transform:matrix(0.015909,-0.000207,0.003250,0.249979,0,0);-webkit-transform:matrix(0.015909,-0.000207,0.003250,0.249979,0,0);}
.m3a_c00294{transform:matrix(0.088383,-0.001149,0.003250,0.249979,0,0);-ms-transform:matrix(0.088383,-0.001149,0.003250,0.249979,0,0);-webkit-transform:matrix(0.088383,-0.001149,0.003250,0.249979,0,0);}
.me0_c00294{transform:matrix(0.106225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106225,0.000000,0.000000,0.250000,0,0);}
.m4b_c00294{transform:matrix(0.112440,-0.001462,0.003250,0.249979,0,0);-ms-transform:matrix(0.112440,-0.001462,0.003250,0.249979,0,0);-webkit-transform:matrix(0.112440,-0.001462,0.003250,0.249979,0,0);}
.m71_c00294{transform:matrix(0.120470,-0.001566,0.003250,0.249979,0,0);-ms-transform:matrix(0.120470,-0.001566,0.003250,0.249979,0,0);-webkit-transform:matrix(0.120470,-0.001566,0.003250,0.249979,0,0);}
.m26_c00294{transform:matrix(0.124844,-0.001623,0.003250,0.249979,0,0);-ms-transform:matrix(0.124844,-0.001623,0.003250,0.249979,0,0);-webkit-transform:matrix(0.124844,-0.001623,0.003250,0.249979,0,0);}
.m78_c00294{transform:matrix(0.125014,-0.001625,0.003250,0.249979,0,0);-ms-transform:matrix(0.125014,-0.001625,0.003250,0.249979,0,0);-webkit-transform:matrix(0.125014,-0.001625,0.003250,0.249979,0,0);}
.m60_c00294{transform:matrix(0.129739,-0.001687,0.003250,0.249979,0,0);-ms-transform:matrix(0.129739,-0.001687,0.003250,0.249979,0,0);-webkit-transform:matrix(0.129739,-0.001687,0.003250,0.249979,0,0);}
.m0_c00294{transform:matrix(0.135750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135750,0.000000,0.000000,0.250000,0,0);}
.mf7_c00294{transform:matrix(0.137067,-0.000959,0.001750,0.249994,0,0);-ms-transform:matrix(0.137067,-0.000959,0.001750,0.249994,0,0);-webkit-transform:matrix(0.137067,-0.000959,0.001750,0.249994,0,0);}
.m15_c00294{transform:matrix(0.140551,-0.001546,0.002750,0.249985,0,0);-ms-transform:matrix(0.140551,-0.001546,0.002750,0.249985,0,0);-webkit-transform:matrix(0.140551,-0.001546,0.002750,0.249985,0,0);}
.m94_c00294{transform:matrix(0.143181,-0.001575,0.002750,0.249985,0,0);-ms-transform:matrix(0.143181,-0.001575,0.002750,0.249985,0,0);-webkit-transform:matrix(0.143181,-0.001575,0.002750,0.249985,0,0);}
.m10_c00294{transform:matrix(0.143276,-0.001576,0.002750,0.249985,0,0);-ms-transform:matrix(0.143276,-0.001576,0.002750,0.249985,0,0);-webkit-transform:matrix(0.143276,-0.001576,0.002750,0.249985,0,0);}
.mbe_c00294{transform:matrix(0.143650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143650,0.000000,0.000000,0.250000,0,0);}
.ma8_c00294{transform:matrix(0.145856,-0.001604,0.002750,0.249985,0,0);-ms-transform:matrix(0.145856,-0.001604,0.002750,0.249985,0,0);-webkit-transform:matrix(0.145856,-0.001604,0.002750,0.249985,0,0);}
.m50_c00294{transform:matrix(0.148477,-0.001930,0.003250,0.249979,0,0);-ms-transform:matrix(0.148477,-0.001930,0.003250,0.249979,0,0);-webkit-transform:matrix(0.148477,-0.001930,0.003250,0.249979,0,0);}
.m104_c00294{transform:matrix(0.159087,-0.002068,0.003250,0.249979,0,0);-ms-transform:matrix(0.159087,-0.002068,0.003250,0.249979,0,0);-webkit-transform:matrix(0.159087,-0.002068,0.003250,0.249979,0,0);}
.m75_c00294{transform:matrix(0.170586,-0.002218,0.003250,0.249979,0,0);-ms-transform:matrix(0.170586,-0.002218,0.003250,0.249979,0,0);-webkit-transform:matrix(0.170586,-0.002218,0.003250,0.249979,0,0);}
.ma2_c00294{transform:matrix(0.185034,-0.002035,0.002750,0.249985,0,0);-ms-transform:matrix(0.185034,-0.002035,0.002750,0.249985,0,0);-webkit-transform:matrix(0.185034,-0.002035,0.002750,0.249985,0,0);}
.m24_c00294{transform:matrix(0.186479,-0.002424,0.003250,0.249979,0,0);-ms-transform:matrix(0.186479,-0.002424,0.003250,0.249979,0,0);-webkit-transform:matrix(0.186479,-0.002424,0.003250,0.249979,0,0);}
.m1b_c00294{transform:matrix(0.187415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187415,0.000000,0.000000,0.250000,0,0);}
.m47_c00294{transform:matrix(0.190059,-0.002471,0.003250,0.249979,0,0);-ms-transform:matrix(0.190059,-0.002471,0.003250,0.249979,0,0);-webkit-transform:matrix(0.190059,-0.002471,0.003250,0.249979,0,0);}
.m76_c00294{transform:matrix(0.194924,-0.002534,0.003250,0.249979,0,0);-ms-transform:matrix(0.194924,-0.002534,0.003250,0.249979,0,0);-webkit-transform:matrix(0.194924,-0.002534,0.003250,0.249979,0,0);}
.m9e_c00294{transform:matrix(0.196723,-0.002164,0.002750,0.249985,0,0);-ms-transform:matrix(0.196723,-0.002164,0.002750,0.249985,0,0);-webkit-transform:matrix(0.196723,-0.002164,0.002750,0.249985,0,0);}
.m46_c00294{transform:matrix(0.200233,-0.002603,0.003250,0.249979,0,0);-ms-transform:matrix(0.200233,-0.002603,0.003250,0.249979,0,0);-webkit-transform:matrix(0.200233,-0.002603,0.003250,0.249979,0,0);}
.m49_c00294{transform:matrix(0.201358,-0.002618,0.003250,0.249979,0,0);-ms-transform:matrix(0.201358,-0.002618,0.003250,0.249979,0,0);-webkit-transform:matrix(0.201358,-0.002618,0.003250,0.249979,0,0);}
.mb7_c00294{transform:matrix(0.202648,-0.002634,0.003250,0.249979,0,0);-ms-transform:matrix(0.202648,-0.002634,0.003250,0.249979,0,0);-webkit-transform:matrix(0.202648,-0.002634,0.003250,0.249979,0,0);}
.m9d_c00294{transform:matrix(0.206912,-0.002276,0.002750,0.249985,0,0);-ms-transform:matrix(0.206912,-0.002276,0.002750,0.249985,0,0);-webkit-transform:matrix(0.206912,-0.002276,0.002750,0.249985,0,0);}
.m6c_c00294{transform:matrix(0.207997,-0.002704,0.003250,0.249979,0,0);-ms-transform:matrix(0.207997,-0.002704,0.003250,0.249979,0,0);-webkit-transform:matrix(0.207997,-0.002704,0.003250,0.249979,0,0);}
.md3_c00294{transform:matrix(0.209375,-0.002512,0.003000,0.249982,0,0);-ms-transform:matrix(0.209375,-0.002512,0.003000,0.249982,0,0);-webkit-transform:matrix(0.209375,-0.002512,0.003000,0.249982,0,0);}
.m73_c00294{transform:matrix(0.209862,-0.002728,0.003250,0.249979,0,0);-ms-transform:matrix(0.209862,-0.002728,0.003250,0.249979,0,0);-webkit-transform:matrix(0.209862,-0.002728,0.003250,0.249979,0,0);}
.mf9_c00294{transform:matrix(0.209930,-0.001470,0.001750,0.249994,0,0);-ms-transform:matrix(0.209930,-0.001470,0.001750,0.249994,0,0);-webkit-transform:matrix(0.209930,-0.001470,0.001750,0.249994,0,0);}
.m1f_c00294{transform:matrix(0.211552,-0.002750,0.003250,0.249979,0,0);-ms-transform:matrix(0.211552,-0.002750,0.003250,0.249979,0,0);-webkit-transform:matrix(0.211552,-0.002750,0.003250,0.249979,0,0);}
.m4a_c00294{transform:matrix(0.211867,-0.002754,0.003250,0.249979,0,0);-ms-transform:matrix(0.211867,-0.002754,0.003250,0.249979,0,0);-webkit-transform:matrix(0.211867,-0.002754,0.003250,0.249979,0,0);}
.m9f_c00294{transform:matrix(0.212227,-0.002334,0.002750,0.249985,0,0);-ms-transform:matrix(0.212227,-0.002334,0.002750,0.249985,0,0);-webkit-transform:matrix(0.212227,-0.002334,0.002750,0.249985,0,0);}
.m2a_c00294{transform:matrix(0.213402,-0.002774,0.003250,0.249979,0,0);-ms-transform:matrix(0.213402,-0.002774,0.003250,0.249979,0,0);-webkit-transform:matrix(0.213402,-0.002774,0.003250,0.249979,0,0);}
.m69_c00294{transform:matrix(0.214397,-0.002787,0.003250,0.249979,0,0);-ms-transform:matrix(0.214397,-0.002787,0.003250,0.249979,0,0);-webkit-transform:matrix(0.214397,-0.002787,0.003250,0.249979,0,0);}
.mbb_c00294{transform:matrix(0.214422,-0.002787,0.003250,0.249979,0,0);-ms-transform:matrix(0.214422,-0.002787,0.003250,0.249979,0,0);-webkit-transform:matrix(0.214422,-0.002787,0.003250,0.249979,0,0);}
.m58_c00294{transform:matrix(0.215002,-0.002795,0.003250,0.249979,0,0);-ms-transform:matrix(0.215002,-0.002795,0.003250,0.249979,0,0);-webkit-transform:matrix(0.215002,-0.002795,0.003250,0.249979,0,0);}
.mb4_c00294{transform:matrix(0.216357,-0.002813,0.003250,0.249979,0,0);-ms-transform:matrix(0.216357,-0.002813,0.003250,0.249979,0,0);-webkit-transform:matrix(0.216357,-0.002813,0.003250,0.249979,0,0);}
.m45_c00294{transform:matrix(0.217222,-0.002824,0.003250,0.249979,0,0);-ms-transform:matrix(0.217222,-0.002824,0.003250,0.249979,0,0);-webkit-transform:matrix(0.217222,-0.002824,0.003250,0.249979,0,0);}
.m29_c00294{transform:matrix(0.217687,-0.002830,0.003250,0.249979,0,0);-ms-transform:matrix(0.217687,-0.002830,0.003250,0.249979,0,0);-webkit-transform:matrix(0.217687,-0.002830,0.003250,0.249979,0,0);}
.m48_c00294{transform:matrix(0.219026,-0.002847,0.003250,0.249979,0,0);-ms-transform:matrix(0.219026,-0.002847,0.003250,0.249979,0,0);-webkit-transform:matrix(0.219026,-0.002847,0.003250,0.249979,0,0);}
.m67_c00294{transform:matrix(0.220171,-0.002862,0.003250,0.249979,0,0);-ms-transform:matrix(0.220171,-0.002862,0.003250,0.249979,0,0);-webkit-transform:matrix(0.220171,-0.002862,0.003250,0.249979,0,0);}
.m1_c00294{transform:matrix(0.220190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220190,0.000000,0.000000,0.250000,0,0);}
.m59_c00294{transform:matrix(0.221436,-0.002879,0.003250,0.249979,0,0);-ms-transform:matrix(0.221436,-0.002879,0.003250,0.249979,0,0);-webkit-transform:matrix(0.221436,-0.002879,0.003250,0.249979,0,0);}
.mb3_c00294{transform:matrix(0.221631,-0.002881,0.003250,0.249979,0,0);-ms-transform:matrix(0.221631,-0.002881,0.003250,0.249979,0,0);-webkit-transform:matrix(0.221631,-0.002881,0.003250,0.249979,0,0);}
.m70_c00294{transform:matrix(0.222446,-0.002892,0.003250,0.249979,0,0);-ms-transform:matrix(0.222446,-0.002892,0.003250,0.249979,0,0);-webkit-transform:matrix(0.222446,-0.002892,0.003250,0.249979,0,0);}
.m9c_c00294{transform:matrix(0.222557,-0.002448,0.002750,0.249985,0,0);-ms-transform:matrix(0.222557,-0.002448,0.002750,0.249985,0,0);-webkit-transform:matrix(0.222557,-0.002448,0.002750,0.249985,0,0);}
.m53_c00294{transform:matrix(0.223376,-0.002904,0.003250,0.249979,0,0);-ms-transform:matrix(0.223376,-0.002904,0.003250,0.249979,0,0);-webkit-transform:matrix(0.223376,-0.002904,0.003250,0.249979,0,0);}
.mfe_c00294{transform:matrix(0.223880,-0.001567,0.001750,0.249994,0,0);-ms-transform:matrix(0.223880,-0.001567,0.001750,0.249994,0,0);-webkit-transform:matrix(0.223880,-0.001567,0.001750,0.249994,0,0);}
.mf4_c00294{transform:matrix(0.223961,-0.002016,0.002250,0.249990,0,0);-ms-transform:matrix(0.223961,-0.002016,0.002250,0.249990,0,0);-webkit-transform:matrix(0.223961,-0.002016,0.002250,0.249990,0,0);}
.mf8_c00294{transform:matrix(0.224075,-0.001569,0.001750,0.249994,0,0);-ms-transform:matrix(0.224075,-0.001569,0.001750,0.249994,0,0);-webkit-transform:matrix(0.224075,-0.001569,0.001750,0.249994,0,0);}
.m74_c00294{transform:matrix(0.224641,-0.002920,0.003250,0.249979,0,0);-ms-transform:matrix(0.224641,-0.002920,0.003250,0.249979,0,0);-webkit-transform:matrix(0.224641,-0.002920,0.003250,0.249979,0,0);}
.ma9_c00294{transform:matrix(0.224666,-0.002471,0.002750,0.249985,0,0);-ms-transform:matrix(0.224666,-0.002471,0.002750,0.249985,0,0);-webkit-transform:matrix(0.224666,-0.002471,0.002750,0.249985,0,0);}
.m1a_c00294{transform:matrix(0.225331,-0.002479,0.002750,0.249985,0,0);-ms-transform:matrix(0.225331,-0.002479,0.002750,0.249985,0,0);-webkit-transform:matrix(0.225331,-0.002479,0.002750,0.249985,0,0);}
.m42_c00294{transform:matrix(0.225921,-0.002937,0.003250,0.249979,0,0);-ms-transform:matrix(0.225921,-0.002937,0.003250,0.249979,0,0);-webkit-transform:matrix(0.225921,-0.002937,0.003250,0.249979,0,0);}
.md5_c00294{transform:matrix(0.225924,-0.002711,0.003000,0.249982,0,0);-ms-transform:matrix(0.225924,-0.002711,0.003000,0.249982,0,0);-webkit-transform:matrix(0.225924,-0.002711,0.003000,0.249982,0,0);}
.m2f_c00294{transform:matrix(0.225996,-0.002938,0.003250,0.249979,0,0);-ms-transform:matrix(0.225996,-0.002938,0.003250,0.249979,0,0);-webkit-transform:matrix(0.225996,-0.002938,0.003250,0.249979,0,0);}
.mb9_c00294{transform:matrix(0.226166,-0.002940,0.003250,0.249979,0,0);-ms-transform:matrix(0.226166,-0.002940,0.003250,0.249979,0,0);-webkit-transform:matrix(0.226166,-0.002940,0.003250,0.249979,0,0);}
.m93_c00294{transform:matrix(0.226541,-0.002492,0.002750,0.249985,0,0);-ms-transform:matrix(0.226541,-0.002492,0.002750,0.249985,0,0);-webkit-transform:matrix(0.226541,-0.002492,0.002750,0.249985,0,0);}
.m6e_c00294{transform:matrix(0.226556,-0.002945,0.003250,0.249979,0,0);-ms-transform:matrix(0.226556,-0.002945,0.003250,0.249979,0,0);-webkit-transform:matrix(0.226556,-0.002945,0.003250,0.249979,0,0);}
.m37_c00294{transform:matrix(0.226726,-0.002947,0.003250,0.249979,0,0);-ms-transform:matrix(0.226726,-0.002947,0.003250,0.249979,0,0);-webkit-transform:matrix(0.226726,-0.002947,0.003250,0.249979,0,0);}
.mfb_c00294{transform:matrix(0.227254,-0.001591,0.001750,0.249994,0,0);-ms-transform:matrix(0.227254,-0.001591,0.001750,0.249994,0,0);-webkit-transform:matrix(0.227254,-0.001591,0.001750,0.249994,0,0);}
.m2d_c00294{transform:matrix(0.227551,-0.002958,0.003250,0.249979,0,0);-ms-transform:matrix(0.227551,-0.002958,0.003250,0.249979,0,0);-webkit-transform:matrix(0.227551,-0.002958,0.003250,0.249979,0,0);}
.m2e_c00294{transform:matrix(0.228351,-0.002969,0.003250,0.249979,0,0);-ms-transform:matrix(0.228351,-0.002969,0.003250,0.249979,0,0);-webkit-transform:matrix(0.228351,-0.002969,0.003250,0.249979,0,0);}
.mb6_c00294{transform:matrix(0.228651,-0.002972,0.003250,0.249979,0,0);-ms-transform:matrix(0.228651,-0.002972,0.003250,0.249979,0,0);-webkit-transform:matrix(0.228651,-0.002972,0.003250,0.249979,0,0);}
.m98_c00294{transform:matrix(0.228801,-0.002517,0.002750,0.249985,0,0);-ms-transform:matrix(0.228801,-0.002517,0.002750,0.249985,0,0);-webkit-transform:matrix(0.228801,-0.002517,0.002750,0.249985,0,0);}
.m90_c00294{transform:matrix(0.229491,-0.002524,0.002750,0.249985,0,0);-ms-transform:matrix(0.229491,-0.002524,0.002750,0.249985,0,0);-webkit-transform:matrix(0.229491,-0.002524,0.002750,0.249985,0,0);}
.m4f_c00294{transform:matrix(0.229811,-0.002988,0.003250,0.249979,0,0);-ms-transform:matrix(0.229811,-0.002988,0.003250,0.249979,0,0);-webkit-transform:matrix(0.229811,-0.002988,0.003250,0.249979,0,0);}
.m5b_c00294{transform:matrix(0.232045,-0.003017,0.003250,0.249979,0,0);-ms-transform:matrix(0.232045,-0.003017,0.003250,0.249979,0,0);-webkit-transform:matrix(0.232045,-0.003017,0.003250,0.249979,0,0);}
.mb8_c00294{transform:matrix(0.232115,-0.003018,0.003250,0.249979,0,0);-ms-transform:matrix(0.232115,-0.003018,0.003250,0.249979,0,0);-webkit-transform:matrix(0.232115,-0.003018,0.003250,0.249979,0,0);}
.md1_c00294{transform:matrix(0.232893,-0.002795,0.003000,0.249982,0,0);-ms-transform:matrix(0.232893,-0.002795,0.003000,0.249982,0,0);-webkit-transform:matrix(0.232893,-0.002795,0.003000,0.249982,0,0);}
.m63_c00294{transform:matrix(0.232925,-0.003028,0.003250,0.249979,0,0);-ms-transform:matrix(0.232925,-0.003028,0.003250,0.249979,0,0);-webkit-transform:matrix(0.232925,-0.003028,0.003250,0.249979,0,0);}
.md4_c00294{transform:matrix(0.233963,-0.002808,0.003000,0.249982,0,0);-ms-transform:matrix(0.233963,-0.002808,0.003000,0.249982,0,0);-webkit-transform:matrix(0.233963,-0.002808,0.003000,0.249982,0,0);}
.m44_c00294{transform:matrix(0.234205,-0.003045,0.003250,0.249979,0,0);-ms-transform:matrix(0.234205,-0.003045,0.003250,0.249979,0,0);-webkit-transform:matrix(0.234205,-0.003045,0.003250,0.249979,0,0);}
.m34_c00294{transform:matrix(0.234515,-0.003049,0.003250,0.249979,0,0);-ms-transform:matrix(0.234515,-0.003049,0.003250,0.249979,0,0);-webkit-transform:matrix(0.234515,-0.003049,0.003250,0.249979,0,0);}
.mba_c00294{transform:matrix(0.234730,-0.003051,0.003250,0.249979,0,0);-ms-transform:matrix(0.234730,-0.003051,0.003250,0.249979,0,0);-webkit-transform:matrix(0.234730,-0.003051,0.003250,0.249979,0,0);}
.m97_c00294{transform:matrix(0.235066,-0.002586,0.002750,0.249985,0,0);-ms-transform:matrix(0.235066,-0.002586,0.002750,0.249985,0,0);-webkit-transform:matrix(0.235066,-0.002586,0.002750,0.249985,0,0);}
.mf3_c00294{transform:matrix(0.235070,-0.002116,0.002250,0.249990,0,0);-ms-transform:matrix(0.235070,-0.002116,0.002250,0.249990,0,0);-webkit-transform:matrix(0.235070,-0.002116,0.002250,0.249990,0,0);}
.m6d_c00294{transform:matrix(0.235500,-0.003062,0.003250,0.249979,0,0);-ms-transform:matrix(0.235500,-0.003062,0.003250,0.249979,0,0);-webkit-transform:matrix(0.235500,-0.003062,0.003250,0.249979,0,0);}
.mcd_c00294{transform:matrix(0.235833,-0.002830,0.003000,0.249982,0,0);-ms-transform:matrix(0.235833,-0.002830,0.003000,0.249982,0,0);-webkit-transform:matrix(0.235833,-0.002830,0.003000,0.249982,0,0);}
.m95_c00294{transform:matrix(0.236096,-0.002597,0.002750,0.249985,0,0);-ms-transform:matrix(0.236096,-0.002597,0.002750,0.249985,0,0);-webkit-transform:matrix(0.236096,-0.002597,0.002750,0.249985,0,0);}
.mbc_c00294{transform:matrix(0.236315,-0.003072,0.003250,0.249979,0,0);-ms-transform:matrix(0.236315,-0.003072,0.003250,0.249979,0,0);-webkit-transform:matrix(0.236315,-0.003072,0.003250,0.249979,0,0);}
.me_c00294{transform:matrix(0.236431,-0.002601,0.002750,0.249985,0,0);-ms-transform:matrix(0.236431,-0.002601,0.002750,0.249985,0,0);-webkit-transform:matrix(0.236431,-0.002601,0.002750,0.249985,0,0);}
.mb5_c00294{transform:matrix(0.236465,-0.003074,0.003250,0.249979,0,0);-ms-transform:matrix(0.236465,-0.003074,0.003250,0.249979,0,0);-webkit-transform:matrix(0.236465,-0.003074,0.003250,0.249979,0,0);}
.mff_c00294{transform:matrix(0.236894,-0.001658,0.001750,0.249994,0,0);-ms-transform:matrix(0.236894,-0.001658,0.001750,0.249994,0,0);-webkit-transform:matrix(0.236894,-0.001658,0.001750,0.249994,0,0);}
.m22_c00294{transform:matrix(0.237165,-0.003083,0.003250,0.249979,0,0);-ms-transform:matrix(0.237165,-0.003083,0.003250,0.249979,0,0);-webkit-transform:matrix(0.237165,-0.003083,0.003250,0.249979,0,0);}
.mad_c00294{transform:matrix(0.237581,-0.002613,0.002750,0.249985,0,0);-ms-transform:matrix(0.237581,-0.002613,0.002750,0.249985,0,0);-webkit-transform:matrix(0.237581,-0.002613,0.002750,0.249985,0,0);}
.m55_c00294{transform:matrix(0.238115,-0.003095,0.003250,0.249979,0,0);-ms-transform:matrix(0.238115,-0.003095,0.003250,0.249979,0,0);-webkit-transform:matrix(0.238115,-0.003095,0.003250,0.249979,0,0);}
.mfd_c00294{transform:matrix(0.238249,-0.001668,0.001750,0.249994,0,0);-ms-transform:matrix(0.238249,-0.001668,0.001750,0.249994,0,0);-webkit-transform:matrix(0.238249,-0.001668,0.001750,0.249994,0,0);}
.m64_c00294{transform:matrix(0.238365,-0.003099,0.003250,0.249979,0,0);-ms-transform:matrix(0.238365,-0.003099,0.003250,0.249979,0,0);-webkit-transform:matrix(0.238365,-0.003099,0.003250,0.249979,0,0);}
.mca_c00294{transform:matrix(0.238518,-0.002862,0.003000,0.249982,0,0);-ms-transform:matrix(0.238518,-0.002862,0.003000,0.249982,0,0);-webkit-transform:matrix(0.238518,-0.002862,0.003000,0.249982,0,0);}
.m7a_c00294{transform:matrix(0.238540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238540,0.000000,0.000000,0.250000,0,0);}
.m6_c00294{transform:matrix(0.239068,-0.002869,0.003000,0.249982,0,0);-ms-transform:matrix(0.239068,-0.002869,0.003000,0.249982,0,0);-webkit-transform:matrix(0.239068,-0.002869,0.003000,0.249982,0,0);}
.mc_c00294{transform:matrix(0.239296,-0.002632,0.002750,0.249985,0,0);-ms-transform:matrix(0.239296,-0.002632,0.002750,0.249985,0,0);-webkit-transform:matrix(0.239296,-0.002632,0.002750,0.249985,0,0);}
.ma1_c00294{transform:matrix(0.239411,-0.002634,0.002750,0.249985,0,0);-ms-transform:matrix(0.239411,-0.002634,0.002750,0.249985,0,0);-webkit-transform:matrix(0.239411,-0.002634,0.002750,0.249985,0,0);}
.m5c_c00294{transform:matrix(0.239815,-0.003118,0.003250,0.249979,0,0);-ms-transform:matrix(0.239815,-0.003118,0.003250,0.249979,0,0);-webkit-transform:matrix(0.239815,-0.003118,0.003250,0.249979,0,0);}
.m3d_c00294{transform:matrix(0.240045,-0.003121,0.003250,0.249979,0,0);-ms-transform:matrix(0.240045,-0.003121,0.003250,0.249979,0,0);-webkit-transform:matrix(0.240045,-0.003121,0.003250,0.249979,0,0);}
.m72_c00294{transform:matrix(0.240055,-0.003121,0.003250,0.249979,0,0);-ms-transform:matrix(0.240055,-0.003121,0.003250,0.249979,0,0);-webkit-transform:matrix(0.240055,-0.003121,0.003250,0.249979,0,0);}
.m25_c00294{transform:matrix(0.240385,-0.003125,0.003250,0.249979,0,0);-ms-transform:matrix(0.240385,-0.003125,0.003250,0.249979,0,0);-webkit-transform:matrix(0.240385,-0.003125,0.003250,0.249979,0,0);}
.m2c_c00294{transform:matrix(0.240570,-0.003127,0.003250,0.249979,0,0);-ms-transform:matrix(0.240570,-0.003127,0.003250,0.249979,0,0);-webkit-transform:matrix(0.240570,-0.003127,0.003250,0.249979,0,0);}
.mee_c00294{transform:matrix(0.240625,-0.002166,0.002250,0.249990,0,0);-ms-transform:matrix(0.240625,-0.002166,0.002250,0.249990,0,0);-webkit-transform:matrix(0.240625,-0.002166,0.002250,0.249990,0,0);}
.m5d_c00294{transform:matrix(0.241025,-0.003133,0.003250,0.249979,0,0);-ms-transform:matrix(0.241025,-0.003133,0.003250,0.249979,0,0);-webkit-transform:matrix(0.241025,-0.003133,0.003250,0.249979,0,0);}
.m77_c00294{transform:matrix(0.241060,-0.003134,0.003250,0.249979,0,0);-ms-transform:matrix(0.241060,-0.003134,0.003250,0.249979,0,0);-webkit-transform:matrix(0.241060,-0.003134,0.003250,0.249979,0,0);}
.m57_c00294{transform:matrix(0.241300,-0.003137,0.003250,0.249979,0,0);-ms-transform:matrix(0.241300,-0.003137,0.003250,0.249979,0,0);-webkit-transform:matrix(0.241300,-0.003137,0.003250,0.249979,0,0);}
.m14_c00294{transform:matrix(0.241595,-0.002658,0.002750,0.249985,0,0);-ms-transform:matrix(0.241595,-0.002658,0.002750,0.249985,0,0);-webkit-transform:matrix(0.241595,-0.002658,0.002750,0.249985,0,0);}
.m5f_c00294{transform:matrix(0.242020,-0.003146,0.003250,0.249979,0,0);-ms-transform:matrix(0.242020,-0.003146,0.003250,0.249979,0,0);-webkit-transform:matrix(0.242020,-0.003146,0.003250,0.249979,0,0);}
.m6b_c00294{transform:matrix(0.243014,-0.003159,0.003250,0.249979,0,0);-ms-transform:matrix(0.243014,-0.003159,0.003250,0.249979,0,0);-webkit-transform:matrix(0.243014,-0.003159,0.003250,0.249979,0,0);}
.m16_c00294{transform:matrix(0.243380,-0.002677,0.002750,0.249985,0,0);-ms-transform:matrix(0.243380,-0.002677,0.002750,0.249985,0,0);-webkit-transform:matrix(0.243380,-0.002677,0.002750,0.249985,0,0);}
.m5a_c00294{transform:matrix(0.243584,-0.003167,0.003250,0.249979,0,0);-ms-transform:matrix(0.243584,-0.003167,0.003250,0.249979,0,0);-webkit-transform:matrix(0.243584,-0.003167,0.003250,0.249979,0,0);}
.m1d_c00294{transform:matrix(0.244004,-0.003172,0.003250,0.249979,0,0);-ms-transform:matrix(0.244004,-0.003172,0.003250,0.249979,0,0);-webkit-transform:matrix(0.244004,-0.003172,0.003250,0.249979,0,0);}
.ma7_c00294{transform:matrix(0.245190,-0.002697,0.002750,0.249985,0,0);-ms-transform:matrix(0.245190,-0.002697,0.002750,0.249985,0,0);-webkit-transform:matrix(0.245190,-0.002697,0.002750,0.249985,0,0);}
.m21_c00294{transform:matrix(0.245214,-0.003188,0.003250,0.249979,0,0);-ms-transform:matrix(0.245214,-0.003188,0.003250,0.249979,0,0);-webkit-transform:matrix(0.245214,-0.003188,0.003250,0.249979,0,0);}
.mb2_c00294{transform:matrix(0.245465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245465,0.000000,0.000000,0.250000,0,0);}
.md2_c00294{transform:matrix(0.245532,-0.002946,0.003000,0.249982,0,0);-ms-transform:matrix(0.245532,-0.002946,0.003000,0.249982,0,0);-webkit-transform:matrix(0.245532,-0.002946,0.003000,0.249982,0,0);}
.m1e_c00294{transform:matrix(0.245654,-0.003194,0.003250,0.249979,0,0);-ms-transform:matrix(0.245654,-0.003194,0.003250,0.249979,0,0);-webkit-transform:matrix(0.245654,-0.003194,0.003250,0.249979,0,0);}
.md6_c00294{transform:matrix(0.246122,-0.002953,0.003000,0.249982,0,0);-ms-transform:matrix(0.246122,-0.002953,0.003000,0.249982,0,0);-webkit-transform:matrix(0.246122,-0.002953,0.003000,0.249982,0,0);}
.m2b_c00294{transform:matrix(0.246429,-0.003204,0.003250,0.249979,0,0);-ms-transform:matrix(0.246429,-0.003204,0.003250,0.249979,0,0);-webkit-transform:matrix(0.246429,-0.003204,0.003250,0.249979,0,0);}
.m31_c00294{transform:matrix(0.246489,-0.003204,0.003250,0.249979,0,0);-ms-transform:matrix(0.246489,-0.003204,0.003250,0.249979,0,0);-webkit-transform:matrix(0.246489,-0.003204,0.003250,0.249979,0,0);}
.m6a_c00294{transform:matrix(0.247289,-0.003215,0.003250,0.249979,0,0);-ms-transform:matrix(0.247289,-0.003215,0.003250,0.249979,0,0);-webkit-transform:matrix(0.247289,-0.003215,0.003250,0.249979,0,0);}
.mf1_c00294{transform:matrix(0.247290,-0.002226,0.002250,0.249990,0,0);-ms-transform:matrix(0.247290,-0.002226,0.002250,0.249990,0,0);-webkit-transform:matrix(0.247290,-0.002226,0.002250,0.249990,0,0);}
.m68_c00294{transform:matrix(0.247764,-0.003221,0.003250,0.249979,0,0);-ms-transform:matrix(0.247764,-0.003221,0.003250,0.249979,0,0);-webkit-transform:matrix(0.247764,-0.003221,0.003250,0.249979,0,0);}
.mfc_c00294{transform:matrix(0.247989,-0.001736,0.001750,0.249994,0,0);-ms-transform:matrix(0.247989,-0.001736,0.001750,0.249994,0,0);-webkit-transform:matrix(0.247989,-0.001736,0.001750,0.249994,0,0);}
.m52_c00294{transform:matrix(0.248194,-0.003227,0.003250,0.249979,0,0);-ms-transform:matrix(0.248194,-0.003227,0.003250,0.249979,0,0);-webkit-transform:matrix(0.248194,-0.003227,0.003250,0.249979,0,0);}
.ma0_c00294{transform:matrix(0.248220,-0.002730,0.002750,0.249985,0,0);-ms-transform:matrix(0.248220,-0.002730,0.002750,0.249985,0,0);-webkit-transform:matrix(0.248220,-0.002730,0.002750,0.249985,0,0);}
.m40_c00294{transform:matrix(0.249074,-0.003238,0.003250,0.249979,0,0);-ms-transform:matrix(0.249074,-0.003238,0.003250,0.249979,0,0);-webkit-transform:matrix(0.249074,-0.003238,0.003250,0.249979,0,0);}
.m5e_c00294{transform:matrix(0.249469,-0.003243,0.003250,0.249979,0,0);-ms-transform:matrix(0.249469,-0.003243,0.003250,0.249979,0,0);-webkit-transform:matrix(0.249469,-0.003243,0.003250,0.249979,0,0);}
.me2_c00294{transform:matrix(0.249780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249780,0.000000,0.000000,0.250000,0,0);}
.mcf_c00294{transform:matrix(0.249802,-0.002998,0.003000,0.249982,0,0);-ms-transform:matrix(0.249802,-0.002998,0.003000,0.249982,0,0);-webkit-transform:matrix(0.249802,-0.002998,0.003000,0.249982,0,0);}
.md0_c00294{transform:matrix(0.249907,-0.002999,0.003000,0.249982,0,0);-ms-transform:matrix(0.249907,-0.002999,0.003000,0.249982,0,0);-webkit-transform:matrix(0.249907,-0.002999,0.003000,0.249982,0,0);}
.m27_c00294{transform:matrix(0.250734,-0.003260,0.003250,0.249979,0,0);-ms-transform:matrix(0.250734,-0.003260,0.003250,0.249979,0,0);-webkit-transform:matrix(0.250734,-0.003260,0.003250,0.249979,0,0);}
.mc7_c00294{transform:matrix(0.250997,-0.003012,0.003000,0.249982,0,0);-ms-transform:matrix(0.250997,-0.003012,0.003000,0.249982,0,0);-webkit-transform:matrix(0.250997,-0.003012,0.003000,0.249982,0,0);}
.m1c_c00294{transform:matrix(0.251929,-0.003275,0.003250,0.249979,0,0);-ms-transform:matrix(0.251929,-0.003275,0.003250,0.249979,0,0);-webkit-transform:matrix(0.251929,-0.003275,0.003250,0.249979,0,0);}
.m28_c00294{transform:matrix(0.252019,-0.003276,0.003250,0.249979,0,0);-ms-transform:matrix(0.252019,-0.003276,0.003250,0.249979,0,0);-webkit-transform:matrix(0.252019,-0.003276,0.003250,0.249979,0,0);}
.m61_c00294{transform:matrix(0.252149,-0.003278,0.003250,0.249979,0,0);-ms-transform:matrix(0.252149,-0.003278,0.003250,0.249979,0,0);-webkit-transform:matrix(0.252149,-0.003278,0.003250,0.249979,0,0);}
.mf6_c00294{transform:matrix(0.252954,-0.001771,0.001750,0.249994,0,0);-ms-transform:matrix(0.252954,-0.001771,0.001750,0.249994,0,0);-webkit-transform:matrix(0.252954,-0.001771,0.001750,0.249994,0,0);}
.m65_c00294{transform:matrix(0.253174,-0.003291,0.003250,0.249979,0,0);-ms-transform:matrix(0.253174,-0.003291,0.003250,0.249979,0,0);-webkit-transform:matrix(0.253174,-0.003291,0.003250,0.249979,0,0);}
.m18_c00294{transform:matrix(0.253310,-0.002786,0.002750,0.249985,0,0);-ms-transform:matrix(0.253310,-0.002786,0.002750,0.249985,0,0);-webkit-transform:matrix(0.253310,-0.002786,0.002750,0.249985,0,0);}
.m6f_c00294{transform:matrix(0.253374,-0.003294,0.003250,0.249979,0,0);-ms-transform:matrix(0.253374,-0.003294,0.003250,0.249979,0,0);-webkit-transform:matrix(0.253374,-0.003294,0.003250,0.249979,0,0);}
.mb0_c00294{transform:matrix(0.253400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253400,0.000000,0.000000,0.250000,0,0);}
.m92_c00294{transform:matrix(0.253770,-0.002791,0.002750,0.249985,0,0);-ms-transform:matrix(0.253770,-0.002791,0.002750,0.249985,0,0);-webkit-transform:matrix(0.253770,-0.002791,0.002750,0.249985,0,0);}
.m66_c00294{transform:matrix(0.254024,-0.003302,0.003250,0.249979,0,0);-ms-transform:matrix(0.254024,-0.003302,0.003250,0.249979,0,0);-webkit-transform:matrix(0.254024,-0.003302,0.003250,0.249979,0,0);}
.m62_c00294{transform:matrix(0.254154,-0.003304,0.003250,0.249979,0,0);-ms-transform:matrix(0.254154,-0.003304,0.003250,0.249979,0,0);-webkit-transform:matrix(0.254154,-0.003304,0.003250,0.249979,0,0);}
.m19_c00294{transform:matrix(0.254260,-0.002797,0.002750,0.249985,0,0);-ms-transform:matrix(0.254260,-0.002797,0.002750,0.249985,0,0);-webkit-transform:matrix(0.254260,-0.002797,0.002750,0.249985,0,0);}
.mfa_c00294{transform:matrix(0.255099,-0.001786,0.001750,0.249994,0,0);-ms-transform:matrix(0.255099,-0.001786,0.001750,0.249994,0,0);-webkit-transform:matrix(0.255099,-0.001786,0.001750,0.249994,0,0);}
.m32_c00294{transform:matrix(0.255303,-0.003319,0.003250,0.249979,0,0);-ms-transform:matrix(0.255303,-0.003319,0.003250,0.249979,0,0);-webkit-transform:matrix(0.255303,-0.003319,0.003250,0.249979,0,0);}
.m101_c00294{transform:matrix(0.255653,-0.003323,0.003250,0.249979,0,0);-ms-transform:matrix(0.255653,-0.003323,0.003250,0.249979,0,0);-webkit-transform:matrix(0.255653,-0.003323,0.003250,0.249979,0,0);}
.ma5_c00294{transform:matrix(0.255675,-0.002812,0.002750,0.249985,0,0);-ms-transform:matrix(0.255675,-0.002812,0.002750,0.249985,0,0);-webkit-transform:matrix(0.255675,-0.002812,0.002750,0.249985,0,0);}
.m5_c00294{transform:matrix(0.255837,-0.003070,0.003000,0.249982,0,0);-ms-transform:matrix(0.255837,-0.003070,0.003000,0.249982,0,0);-webkit-transform:matrix(0.255837,-0.003070,0.003000,0.249982,0,0);}
.m9b_c00294{transform:matrix(0.256624,-0.002823,0.002750,0.249985,0,0);-ms-transform:matrix(0.256624,-0.002823,0.002750,0.249985,0,0);-webkit-transform:matrix(0.256624,-0.002823,0.002750,0.249985,0,0);}
.mf5_c00294{transform:matrix(0.257010,-0.002313,0.002250,0.249990,0,0);-ms-transform:matrix(0.257010,-0.002313,0.002250,0.249990,0,0);-webkit-transform:matrix(0.257010,-0.002313,0.002250,0.249990,0,0);}
.m56_c00294{transform:matrix(0.257078,-0.003342,0.003250,0.249979,0,0);-ms-transform:matrix(0.257078,-0.003342,0.003250,0.249979,0,0);-webkit-transform:matrix(0.257078,-0.003342,0.003250,0.249979,0,0);}
.ma6_c00294{transform:matrix(0.257504,-0.002833,0.002750,0.249985,0,0);-ms-transform:matrix(0.257504,-0.002833,0.002750,0.249985,0,0);-webkit-transform:matrix(0.257504,-0.002833,0.002750,0.249985,0,0);}
.m54_c00294{transform:matrix(0.257673,-0.003350,0.003250,0.249979,0,0);-ms-transform:matrix(0.257673,-0.003350,0.003250,0.249979,0,0);-webkit-transform:matrix(0.257673,-0.003350,0.003250,0.249979,0,0);}
.m36_c00294{transform:matrix(0.258048,-0.003355,0.003250,0.249979,0,0);-ms-transform:matrix(0.258048,-0.003355,0.003250,0.249979,0,0);-webkit-transform:matrix(0.258048,-0.003355,0.003250,0.249979,0,0);}
.mcc_c00294{transform:matrix(0.258676,-0.003104,0.003000,0.249982,0,0);-ms-transform:matrix(0.258676,-0.003104,0.003000,0.249982,0,0);-webkit-transform:matrix(0.258676,-0.003104,0.003000,0.249982,0,0);}
.mc6_c00294{transform:matrix(0.259136,-0.003110,0.003000,0.249982,0,0);-ms-transform:matrix(0.259136,-0.003110,0.003000,0.249982,0,0);-webkit-transform:matrix(0.259136,-0.003110,0.003000,0.249982,0,0);}
.m103_c00294{transform:matrix(0.259813,-0.003378,0.003250,0.249979,0,0);-ms-transform:matrix(0.259813,-0.003378,0.003250,0.249979,0,0);-webkit-transform:matrix(0.259813,-0.003378,0.003250,0.249979,0,0);}
.m13_c00294{transform:matrix(0.260009,-0.002860,0.002750,0.249985,0,0);-ms-transform:matrix(0.260009,-0.002860,0.002750,0.249985,0,0);-webkit-transform:matrix(0.260009,-0.002860,0.002750,0.249985,0,0);}
.ma3_c00294{transform:matrix(0.260419,-0.002865,0.002750,0.249985,0,0);-ms-transform:matrix(0.260419,-0.002865,0.002750,0.249985,0,0);-webkit-transform:matrix(0.260419,-0.002865,0.002750,0.249985,0,0);}
.m35_c00294{transform:matrix(0.260763,-0.003390,0.003250,0.249979,0,0);-ms-transform:matrix(0.260763,-0.003390,0.003250,0.249979,0,0);-webkit-transform:matrix(0.260763,-0.003390,0.003250,0.249979,0,0);}
.mef_c00294{transform:matrix(0.260919,-0.002348,0.002250,0.249990,0,0);-ms-transform:matrix(0.260919,-0.002348,0.002250,0.249990,0,0);-webkit-transform:matrix(0.260919,-0.002348,0.002250,0.249990,0,0);}
.mb_c00294{transform:matrix(0.261229,-0.002874,0.002750,0.249985,0,0);-ms-transform:matrix(0.261229,-0.002874,0.002750,0.249985,0,0);-webkit-transform:matrix(0.261229,-0.002874,0.002750,0.249985,0,0);}
.m9_c00294{transform:matrix(0.261351,-0.003136,0.003000,0.249982,0,0);-ms-transform:matrix(0.261351,-0.003136,0.003000,0.249982,0,0);-webkit-transform:matrix(0.261351,-0.003136,0.003000,0.249982,0,0);}
.m11_c00294{transform:matrix(0.262044,-0.002882,0.002750,0.249985,0,0);-ms-transform:matrix(0.262044,-0.002882,0.002750,0.249985,0,0);-webkit-transform:matrix(0.262044,-0.002882,0.002750,0.249985,0,0);}
.m4c_c00294{transform:matrix(0.262503,-0.003413,0.003250,0.249979,0,0);-ms-transform:matrix(0.262503,-0.003413,0.003250,0.249979,0,0);-webkit-transform:matrix(0.262503,-0.003413,0.003250,0.249979,0,0);}
.me3_c00294{transform:matrix(0.262615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262615,0.000000,0.000000,0.250000,0,0);}
.ma4_c00294{transform:matrix(0.262904,-0.002892,0.002750,0.249985,0,0);-ms-transform:matrix(0.262904,-0.002892,0.002750,0.249985,0,0);-webkit-transform:matrix(0.262904,-0.002892,0.002750,0.249985,0,0);}
.mda_c00294{transform:matrix(0.263366,-0.003160,0.003000,0.249982,0,0);-ms-transform:matrix(0.263366,-0.003160,0.003000,0.249982,0,0);-webkit-transform:matrix(0.263366,-0.003160,0.003000,0.249982,0,0);}
.m4e_c00294{transform:matrix(0.263548,-0.003426,0.003250,0.249979,0,0);-ms-transform:matrix(0.263548,-0.003426,0.003250,0.249979,0,0);-webkit-transform:matrix(0.263548,-0.003426,0.003250,0.249979,0,0);}
.m102_c00294{transform:matrix(0.264028,-0.003432,0.003250,0.249979,0,0);-ms-transform:matrix(0.264028,-0.003432,0.003250,0.249979,0,0);-webkit-transform:matrix(0.264028,-0.003432,0.003250,0.249979,0,0);}
.mf2_c00294{transform:matrix(0.264069,-0.002377,0.002250,0.249990,0,0);-ms-transform:matrix(0.264069,-0.002377,0.002250,0.249990,0,0);-webkit-transform:matrix(0.264069,-0.002377,0.002250,0.249990,0,0);}
.m100_c00294{transform:matrix(0.264148,-0.003434,0.003250,0.249979,0,0);-ms-transform:matrix(0.264148,-0.003434,0.003250,0.249979,0,0);-webkit-transform:matrix(0.264148,-0.003434,0.003250,0.249979,0,0);}
.mc8_c00294{transform:matrix(0.264281,-0.003171,0.003000,0.249982,0,0);-ms-transform:matrix(0.264281,-0.003171,0.003000,0.249982,0,0);-webkit-transform:matrix(0.264281,-0.003171,0.003000,0.249982,0,0);}
.m33_c00294{transform:matrix(0.264428,-0.003438,0.003250,0.249979,0,0);-ms-transform:matrix(0.264428,-0.003438,0.003250,0.249979,0,0);-webkit-transform:matrix(0.264428,-0.003438,0.003250,0.249979,0,0);}
.m20_c00294{transform:matrix(0.265153,-0.003447,0.003250,0.249979,0,0);-ms-transform:matrix(0.265153,-0.003447,0.003250,0.249979,0,0);-webkit-transform:matrix(0.265153,-0.003447,0.003250,0.249979,0,0);}
.mac_c00294{transform:matrix(0.265584,-0.002921,0.002750,0.249985,0,0);-ms-transform:matrix(0.265584,-0.002921,0.002750,0.249985,0,0);-webkit-transform:matrix(0.265584,-0.002921,0.002750,0.249985,0,0);}
.md7_c00294{transform:matrix(0.265641,-0.003188,0.003000,0.249982,0,0);-ms-transform:matrix(0.265641,-0.003188,0.003000,0.249982,0,0);-webkit-transform:matrix(0.265641,-0.003188,0.003000,0.249982,0,0);}
.md9_c00294{transform:matrix(0.266096,-0.003193,0.003000,0.249982,0,0);-ms-transform:matrix(0.266096,-0.003193,0.003000,0.249982,0,0);-webkit-transform:matrix(0.266096,-0.003193,0.003000,0.249982,0,0);}
.m4d_c00294{transform:matrix(0.266223,-0.003461,0.003250,0.249979,0,0);-ms-transform:matrix(0.266223,-0.003461,0.003250,0.249979,0,0);-webkit-transform:matrix(0.266223,-0.003461,0.003250,0.249979,0,0);}
.m9a_c00294{transform:matrix(0.266339,-0.002930,0.002750,0.249985,0,0);-ms-transform:matrix(0.266339,-0.002930,0.002750,0.249985,0,0);-webkit-transform:matrix(0.266339,-0.002930,0.002750,0.249985,0,0);}
.m43_c00294{transform:matrix(0.267982,-0.003484,0.003250,0.249979,0,0);-ms-transform:matrix(0.267982,-0.003484,0.003250,0.249979,0,0);-webkit-transform:matrix(0.267982,-0.003484,0.003250,0.249979,0,0);}
.m23_c00294{transform:matrix(0.268107,-0.003485,0.003250,0.249979,0,0);-ms-transform:matrix(0.268107,-0.003485,0.003250,0.249979,0,0);-webkit-transform:matrix(0.268107,-0.003485,0.003250,0.249979,0,0);}
.m96_c00294{transform:matrix(0.268224,-0.002950,0.002750,0.249985,0,0);-ms-transform:matrix(0.268224,-0.002950,0.002750,0.249985,0,0);-webkit-transform:matrix(0.268224,-0.002950,0.002750,0.249985,0,0);}
.m3f_c00294{transform:matrix(0.268547,-0.003491,0.003250,0.249979,0,0);-ms-transform:matrix(0.268547,-0.003491,0.003250,0.249979,0,0);-webkit-transform:matrix(0.268547,-0.003491,0.003250,0.249979,0,0);}
.m39_c00294{transform:matrix(0.268802,-0.003494,0.003250,0.249979,0,0);-ms-transform:matrix(0.268802,-0.003494,0.003250,0.249979,0,0);-webkit-transform:matrix(0.268802,-0.003494,0.003250,0.249979,0,0);}
.m12_c00294{transform:matrix(0.269124,-0.002960,0.002750,0.249985,0,0);-ms-transform:matrix(0.269124,-0.002960,0.002750,0.249985,0,0);-webkit-transform:matrix(0.269124,-0.002960,0.002750,0.249985,0,0);}
.m99_c00294{transform:matrix(0.269444,-0.002964,0.002750,0.249985,0,0);-ms-transform:matrix(0.269444,-0.002964,0.002750,0.249985,0,0);-webkit-transform:matrix(0.269444,-0.002964,0.002750,0.249985,0,0);}
.med_c00294{transform:matrix(0.269744,-0.002428,0.002250,0.249990,0,0);-ms-transform:matrix(0.269744,-0.002428,0.002250,0.249990,0,0);-webkit-transform:matrix(0.269744,-0.002428,0.002250,0.249990,0,0);}
.mcb_c00294{transform:matrix(0.270336,-0.003244,0.003000,0.249982,0,0);-ms-transform:matrix(0.270336,-0.003244,0.003000,0.249982,0,0);-webkit-transform:matrix(0.270336,-0.003244,0.003000,0.249982,0,0);}
.m51_c00294{transform:matrix(0.270552,-0.003517,0.003250,0.249979,0,0);-ms-transform:matrix(0.270552,-0.003517,0.003250,0.249979,0,0);-webkit-transform:matrix(0.270552,-0.003517,0.003250,0.249979,0,0);}
.md_c00294{transform:matrix(0.270694,-0.002978,0.002750,0.249985,0,0);-ms-transform:matrix(0.270694,-0.002978,0.002750,0.249985,0,0);-webkit-transform:matrix(0.270694,-0.002978,0.002750,0.249985,0,0);}
.m3c_c00294{transform:matrix(0.272482,-0.003542,0.003250,0.249979,0,0);-ms-transform:matrix(0.272482,-0.003542,0.003250,0.249979,0,0);-webkit-transform:matrix(0.272482,-0.003542,0.003250,0.249979,0,0);}
.m17_c00294{transform:matrix(0.272489,-0.002997,0.002750,0.249985,0,0);-ms-transform:matrix(0.272489,-0.002997,0.002750,0.249985,0,0);-webkit-transform:matrix(0.272489,-0.002997,0.002750,0.249985,0,0);}
.md8_c00294{transform:matrix(0.272780,-0.003273,0.003000,0.249982,0,0);-ms-transform:matrix(0.272780,-0.003273,0.003000,0.249982,0,0);-webkit-transform:matrix(0.272780,-0.003273,0.003000,0.249982,0,0);}
.m41_c00294{transform:matrix(0.273017,-0.003549,0.003250,0.249979,0,0);-ms-transform:matrix(0.273017,-0.003549,0.003250,0.249979,0,0);-webkit-transform:matrix(0.273017,-0.003549,0.003250,0.249979,0,0);}
.mae_c00294{transform:matrix(0.273098,-0.003004,0.002750,0.249985,0,0);-ms-transform:matrix(0.273098,-0.003004,0.002750,0.249985,0,0);-webkit-transform:matrix(0.273098,-0.003004,0.002750,0.249985,0,0);}
.mf0_c00294{transform:matrix(0.273284,-0.002460,0.002250,0.249990,0,0);-ms-transform:matrix(0.273284,-0.002460,0.002250,0.249990,0,0);-webkit-transform:matrix(0.273284,-0.002460,0.002250,0.249990,0,0);}
.mce_c00294{transform:matrix(0.273305,-0.003280,0.003000,0.249982,0,0);-ms-transform:matrix(0.273305,-0.003280,0.003000,0.249982,0,0);-webkit-transform:matrix(0.273305,-0.003280,0.003000,0.249982,0,0);}
.mf_c00294{transform:matrix(0.274378,-0.003018,0.002750,0.249985,0,0);-ms-transform:matrix(0.274378,-0.003018,0.002750,0.249985,0,0);-webkit-transform:matrix(0.274378,-0.003018,0.002750,0.249985,0,0);}
.m3e_c00294{transform:matrix(0.275627,-0.003583,0.003250,0.249979,0,0);-ms-transform:matrix(0.275627,-0.003583,0.003250,0.249979,0,0);-webkit-transform:matrix(0.275627,-0.003583,0.003250,0.249979,0,0);}
.m38_c00294{transform:matrix(0.278906,-0.003626,0.003250,0.249979,0,0);-ms-transform:matrix(0.278906,-0.003626,0.003250,0.249979,0,0);-webkit-transform:matrix(0.278906,-0.003626,0.003250,0.249979,0,0);}
.mdc_c00294{transform:matrix(0.279155,-0.003350,0.003000,0.249982,0,0);-ms-transform:matrix(0.279155,-0.003350,0.003000,0.249982,0,0);-webkit-transform:matrix(0.279155,-0.003350,0.003000,0.249982,0,0);}
.mc9_c00294{transform:matrix(0.279830,-0.003358,0.003000,0.249982,0,0);-ms-transform:matrix(0.279830,-0.003358,0.003000,0.249982,0,0);-webkit-transform:matrix(0.279830,-0.003358,0.003000,0.249982,0,0);}
.mdb_c00294{transform:matrix(0.280185,-0.003362,0.003000,0.249982,0,0);-ms-transform:matrix(0.280185,-0.003362,0.003000,0.249982,0,0);-webkit-transform:matrix(0.280185,-0.003362,0.003000,0.249982,0,0);}
.m8f_c00294{transform:matrix(0.281797,-0.003945,0.003500,0.249976,0,0);-ms-transform:matrix(0.281797,-0.003945,0.003500,0.249976,0,0);-webkit-transform:matrix(0.281797,-0.003945,0.003500,0.249976,0,0);}
.m2_c00294{transform:matrix(0.283835,-0.003406,0.003000,0.249982,0,0);-ms-transform:matrix(0.283835,-0.003406,0.003000,0.249982,0,0);-webkit-transform:matrix(0.283835,-0.003406,0.003000,0.249982,0,0);}
.mb1_c00294{transform:matrix(0.287530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287530,0.000000,0.000000,0.250000,0,0);}
.m79_c00294{transform:matrix(0.288155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288155,0.000000,0.000000,0.250000,0,0);}
.mbd_c00294{transform:matrix(0.289065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289065,0.000000,0.000000,0.250000,0,0);}
.ma_c00294{transform:matrix(0.290214,-0.003483,0.003000,0.249982,0,0);-ms-transform:matrix(0.290214,-0.003483,0.003000,0.249982,0,0);-webkit-transform:matrix(0.290214,-0.003483,0.003000,0.249982,0,0);}
.m8_c00294{transform:matrix(0.290424,-0.003485,0.003000,0.249982,0,0);-ms-transform:matrix(0.290424,-0.003485,0.003000,0.249982,0,0);-webkit-transform:matrix(0.290424,-0.003485,0.003000,0.249982,0,0);}
.mc0_c00294{transform:matrix(0.290460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290460,0.000000,0.000000,0.250000,0,0);}
.m3_c00294{transform:matrix(0.290709,-0.003489,0.003000,0.249982,0,0);-ms-transform:matrix(0.290709,-0.003489,0.003000,0.249982,0,0);-webkit-transform:matrix(0.290709,-0.003489,0.003000,0.249982,0,0);}
.m7b_c00294{transform:matrix(0.292035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292035,0.000000,0.000000,0.250000,0,0);}
.m7_c00294{transform:matrix(0.293244,-0.003519,0.003000,0.249982,0,0);-ms-transform:matrix(0.293244,-0.003519,0.003000,0.249982,0,0);-webkit-transform:matrix(0.293244,-0.003519,0.003000,0.249982,0,0);}
.m8c_c00294{transform:matrix(0.295436,-0.004136,0.003500,0.249976,0,0);-ms-transform:matrix(0.295436,-0.004136,0.003500,0.249976,0,0);-webkit-transform:matrix(0.295436,-0.004136,0.003500,0.249976,0,0);}
.m4_c00294{transform:matrix(0.296944,-0.003563,0.003000,0.249982,0,0);-ms-transform:matrix(0.296944,-0.003563,0.003000,0.249982,0,0);-webkit-transform:matrix(0.296944,-0.003563,0.003000,0.249982,0,0);}
.mde_c00294{transform:matrix(0.297415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297415,0.000000,0.000000,0.250000,0,0);}
.m91_c00294{transform:matrix(0.297637,-0.003274,0.002750,0.249985,0,0);-ms-transform:matrix(0.297637,-0.003274,0.002750,0.249985,0,0);-webkit-transform:matrix(0.297637,-0.003274,0.002750,0.249985,0,0);}
.mdf_c00294{transform:matrix(0.298610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298610,0.000000,0.000000,0.250000,0,0);}
.mbf_c00294{transform:matrix(0.298665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298665,0.000000,0.000000,0.250000,0,0);}
.me1_c00294{transform:matrix(0.300755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300755,0.000000,0.000000,0.250000,0,0);}
.m85_c00294{transform:matrix(0.303695,-0.004252,0.003500,0.249976,0,0);-ms-transform:matrix(0.303695,-0.004252,0.003500,0.249976,0,0);-webkit-transform:matrix(0.303695,-0.004252,0.003500,0.249976,0,0);}
.maf_c00294{transform:matrix(0.304710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304710,0.000000,0.000000,0.250000,0,0);}
.mec_c00294{transform:matrix(0.305903,-0.002753,0.002250,0.249990,0,0);-ms-transform:matrix(0.305903,-0.002753,0.002250,0.249990,0,0);-webkit-transform:matrix(0.305903,-0.002753,0.002250,0.249990,0,0);}
.mdd_c00294{transform:matrix(0.312165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312165,0.000000,0.000000,0.250000,0,0);}
.mc1_c00294{transform:matrix(0.312210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312210,0.000000,0.000000,0.250000,0,0);}
.m84_c00294{transform:matrix(0.315324,-0.004415,0.003500,0.249976,0,0);-ms-transform:matrix(0.315324,-0.004415,0.003500,0.249976,0,0);-webkit-transform:matrix(0.315324,-0.004415,0.003500,0.249976,0,0);}
.m3b_c00294{transform:matrix(0.321358,-0.004178,0.003250,0.249979,0,0);-ms-transform:matrix(0.321358,-0.004178,0.003250,0.249979,0,0);-webkit-transform:matrix(0.321358,-0.004178,0.003250,0.249979,0,0);}
.m89_c00294{transform:matrix(0.323078,-0.004523,0.003500,0.249976,0,0);-ms-transform:matrix(0.323078,-0.004523,0.003500,0.249976,0,0);-webkit-transform:matrix(0.323078,-0.004523,0.003500,0.249976,0,0);}
.me8_c00294{transform:matrix(0.326495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326495,0.000000,0.000000,0.250000,0,0);}
.m83_c00294{transform:matrix(0.328943,-0.004605,0.003500,0.249976,0,0);-ms-transform:matrix(0.328943,-0.004605,0.003500,0.249976,0,0);-webkit-transform:matrix(0.328943,-0.004605,0.003500,0.249976,0,0);}
.m8e_c00294{transform:matrix(0.335377,-0.004695,0.003500,0.249976,0,0);-ms-transform:matrix(0.335377,-0.004695,0.003500,0.249976,0,0);-webkit-transform:matrix(0.335377,-0.004695,0.003500,0.249976,0,0);}
.me9_c00294{transform:matrix(0.337085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337085,0.000000,0.000000,0.250000,0,0);}
.m8d_c00294{transform:matrix(0.342346,-0.004793,0.003500,0.249976,0,0);-ms-transform:matrix(0.342346,-0.004793,0.003500,0.249976,0,0);-webkit-transform:matrix(0.342346,-0.004793,0.003500,0.249976,0,0);}
.m87_c00294{transform:matrix(0.346266,-0.004848,0.003500,0.249976,0,0);-ms-transform:matrix(0.346266,-0.004848,0.003500,0.249976,0,0);-webkit-transform:matrix(0.346266,-0.004848,0.003500,0.249976,0,0);}
.m86_c00294{transform:matrix(0.356510,-0.004991,0.003500,0.249976,0,0);-ms-transform:matrix(0.356510,-0.004991,0.003500,0.249976,0,0);-webkit-transform:matrix(0.356510,-0.004991,0.003500,0.249976,0,0);}
.me4_c00294{transform:matrix(0.356870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356870,0.000000,0.000000,0.250000,0,0);}
.mab_c00294{transform:matrix(0.357193,-0.003929,0.002750,0.249985,0,0);-ms-transform:matrix(0.357193,-0.003929,0.002750,0.249985,0,0);-webkit-transform:matrix(0.357193,-0.003929,0.002750,0.249985,0,0);}
.m8b_c00294{transform:matrix(0.365239,-0.005113,0.003500,0.249976,0,0);-ms-transform:matrix(0.365239,-0.005113,0.003500,0.249976,0,0);-webkit-transform:matrix(0.365239,-0.005113,0.003500,0.249976,0,0);}
.m81_c00294{transform:matrix(0.368914,-0.005165,0.003500,0.249976,0,0);-ms-transform:matrix(0.368914,-0.005165,0.003500,0.249976,0,0);-webkit-transform:matrix(0.368914,-0.005165,0.003500,0.249976,0,0);}
.m82_c00294{transform:matrix(0.382063,-0.005349,0.003500,0.249976,0,0);-ms-transform:matrix(0.382063,-0.005349,0.003500,0.249976,0,0);-webkit-transform:matrix(0.382063,-0.005349,0.003500,0.249976,0,0);}
.maa_c00294{transform:matrix(0.382597,-0.004209,0.002750,0.249985,0,0);-ms-transform:matrix(0.382597,-0.004209,0.002750,0.249985,0,0);-webkit-transform:matrix(0.382597,-0.004209,0.002750,0.249985,0,0);}
.m80_c00294{transform:matrix(0.417689,-0.005848,0.003500,0.249976,0,0);-ms-transform:matrix(0.417689,-0.005848,0.003500,0.249976,0,0);-webkit-transform:matrix(0.417689,-0.005848,0.003500,0.249976,0,0);}
.meb_c00294{transform:matrix(0.435660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435660,0.000000,0.000000,0.250000,0,0);}
.mea_c00294{transform:matrix(0.489185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.489185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.489185,0.000000,0.000000,0.250000,0,0);}
.me7_c00294{transform:matrix(0.513080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513080,0.000000,0.000000,0.250000,0,0);}
.m7c_c00294{transform:matrix(0.521724,-0.007304,0.003500,0.249976,0,0);-ms-transform:matrix(0.521724,-0.007304,0.003500,0.249976,0,0);-webkit-transform:matrix(0.521724,-0.007304,0.003500,0.249976,0,0);}
.m7f_c00294{transform:matrix(0.545956,-0.007643,0.003500,0.249976,0,0);-ms-transform:matrix(0.545956,-0.007643,0.003500,0.249976,0,0);-webkit-transform:matrix(0.545956,-0.007643,0.003500,0.249976,0,0);}
.m7d_c00294{transform:matrix(0.577003,-0.008078,0.003500,0.249976,0,0);-ms-transform:matrix(0.577003,-0.008078,0.003500,0.249976,0,0);-webkit-transform:matrix(0.577003,-0.008078,0.003500,0.249976,0,0);}
.mc3_c00294{transform:matrix(0.615000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00294{transform:matrix(0.649801,-0.009097,0.003500,0.249976,0,0);-ms-transform:matrix(0.649801,-0.009097,0.003500,0.249976,0,0);-webkit-transform:matrix(0.649801,-0.009097,0.003500,0.249976,0,0);}
.me6_c00294{transform:matrix(0.671030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.671030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.671030,0.000000,0.000000,0.250000,0,0);}
.me5_c00294{transform:matrix(0.704560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.704560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.704560,0.000000,0.000000,0.250000,0,0);}
.mc2_c00294{transform:matrix(0.732460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.732460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.732460,0.000000,0.000000,0.250000,0,0);}
.m88_c00294{transform:matrix(0.900162,-0.012602,0.003500,0.249976,0,0);-ms-transform:matrix(0.900162,-0.012602,0.003500,0.249976,0,0);-webkit-transform:matrix(0.900162,-0.012602,0.003500,0.249976,0,0);}
.mc4_c00294{transform:matrix(1.266690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.266690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.266690,0.000000,0.000000,0.250000,0,0);}
.mc5_c00294{transform:matrix(1.288605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.288605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.288605,0.000000,0.000000,0.250000,0,0);}
.m8a_c00294{transform:matrix(3.574185,-0.050039,0.003500,0.249976,0,0);-ms-transform:matrix(3.574185,-0.050039,0.003500,0.249976,0,0);-webkit-transform:matrix(3.574185,-0.050039,0.003500,0.249976,0,0);}
.v0_c00294{vertical-align:0.000000px;}
.ls0_c00294{letter-spacing:0.000000px;}
.sc__c00294{text-shadow:none;}
.sc0_c00294{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__c00294{-webkit-text-stroke:0px transparent;}
.sc0_c00294{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00294{word-spacing:0.000000px;}
._0_c00294{width:6.618021px;}
.fc0_c00294{color:transparent;}
.fsc_c00294{font-size:18.000000px;}
.fs9_c00294{font-size:18.001764px;}
.fs3_c00294{font-size:36.000000px;}
.fsb_c00294{font-size:42.000000px;}
.fs8_c00294{font-size:66.000000px;}
.fs1_c00294{font-size:66.004752px;}
.fsf_c00294{font-size:72.002916px;}
.fs2_c00294{font-size:72.004356px;}
.fsd_c00294{font-size:72.005184px;}
.fs4_c00294{font-size:72.006084px;}
.fs0_c00294{font-size:78.000000px;}
.fs10_c00294{font-size:78.001911px;}
.fse_c00294{font-size:78.005616px;}
.fs5_c00294{font-size:78.006591px;}
.fsa_c00294{font-size:84.005082px;}
.fs7_c00294{font-size:84.007098px;}
.fs6_c00294{font-size:90.007605px;}
.y0_c00294{bottom:0.000000px;}
.yf5_c00294{bottom:56.971500px;}
.yf6_c00294{bottom:57.540705px;}
.yf7_c00294{bottom:58.263940px;}
.yf8_c00294{bottom:59.260644px;}
.yf9_c00294{bottom:59.706745px;}
.yfa_c00294{bottom:60.570264px;}
.yeb_c00294{bottom:89.370000px;}
.yec_c00294{bottom:90.303660px;}
.yed_c00294{bottom:90.452938px;}
.yee_c00294{bottom:90.755317px;}
.yef_c00294{bottom:90.984071px;}
.yf0_c00294{bottom:91.668313px;}
.yf1_c00294{bottom:91.908312px;}
.yf2_c00294{bottom:92.530132px;}
.yf3_c00294{bottom:93.059375px;}
.yf4_c00294{bottom:93.371193px;}
.ye1_c00294{bottom:119.881500px;}
.ye2_c00294{bottom:120.860898px;}
.ye3_c00294{bottom:121.745378px;}
.ye4_c00294{bottom:122.046684px;}
.ye5_c00294{bottom:122.839094px;}
.ye6_c00294{bottom:124.014903px;}
.ye7_c00294{bottom:124.229081px;}
.ye8_c00294{bottom:125.009016px;}
.ye9_c00294{bottom:125.315142px;}
.yea_c00294{bottom:125.606796px;}
.ye0_c00294{bottom:161.941500px;}
.ydf_c00294{bottom:167.235000px;}
.yde_c00294{bottom:207.801000px;}
.yd8_c00294{bottom:235.438998px;}
.yd9_c00294{bottom:236.535438px;}
.yda_c00294{bottom:237.633744px;}
.ydb_c00294{bottom:238.519824px;}
.ydc_c00294{bottom:240.286176px;}
.ydd_c00294{bottom:241.687380px;}
.yd0_c00294{bottom:268.381500px;}
.yd1_c00294{bottom:269.038698px;}
.yd2_c00294{bottom:269.301750px;}
.yd3_c00294{bottom:270.620376px;}
.yd4_c00294{bottom:271.025268px;}
.yd5_c00294{bottom:271.424076px;}
.yd6_c00294{bottom:272.198580px;}
.yd7_c00294{bottom:272.609880px;}
.yc7_c00294{bottom:298.351500px;}
.yc8_c00294{bottom:299.657436px;}
.yc9_c00294{bottom:300.448176px;}
.yca_c00294{bottom:301.653726px;}
.ycb_c00294{bottom:303.205488px;}
.ycc_c00294{bottom:303.603900px;}
.ycd_c00294{bottom:304.670058px;}
.yce_c00294{bottom:305.580480px;}
.ycf_c00294{bottom:305.979018px;}
.yc6_c00294{bottom:348.000000px;}
.yc5_c00294{bottom:357.160500px;}
.yc4_c00294{bottom:397.057709px;}
.ybb_c00294{bottom:426.063000px;}
.ybc_c00294{bottom:427.470569px;}
.ybd_c00294{bottom:428.179979px;}
.ybe_c00294{bottom:429.464658px;}
.ybf_c00294{bottom:430.608918px;}
.yc0_c00294{bottom:431.040570px;}
.yc1_c00294{bottom:432.044489px;}
.yc2_c00294{bottom:433.034679px;}
.yc3_c00294{bottom:434.459720px;}
.yb9_c00294{bottom:461.448000px;}
.yba_c00294{bottom:469.260000px;}
.yad_c00294{bottom:490.586116px;}
.yae_c00294{bottom:491.901568px;}
.yaf_c00294{bottom:492.934531px;}
.yb0_c00294{bottom:493.598865px;}
.yb1_c00294{bottom:494.521831px;}
.yb2_c00294{bottom:495.335032px;}
.yb3_c00294{bottom:495.584640px;}
.yb4_c00294{bottom:495.963778px;}
.yb5_c00294{bottom:496.637319px;}
.yb6_c00294{bottom:496.883626px;}
.yb7_c00294{bottom:497.806725px;}
.yb8_c00294{bottom:498.334335px;}
.ya6_c00294{bottom:554.309250px;}
.ya7_c00294{bottom:555.630883px;}
.ya8_c00294{bottom:556.008024px;}
.ya9_c00294{bottom:556.364506px;}
.yaa_c00294{bottom:556.964743px;}
.yab_c00294{bottom:559.150465px;}
.yac_c00294{bottom:560.480811px;}
.y9a_c00294{bottom:584.551500px;}
.y9b_c00294{bottom:585.540576px;}
.y9c_c00294{bottom:586.841386px;}
.y9d_c00294{bottom:587.432482px;}
.y9e_c00294{bottom:587.946424px;}
.y9f_c00294{bottom:588.163152px;}
.ya0_c00294{bottom:588.650034px;}
.ya1_c00294{bottom:589.734414px;}
.ya2_c00294{bottom:590.105680px;}
.ya3_c00294{bottom:590.468202px;}
.ya4_c00294{bottom:591.424129px;}
.ya5_c00294{bottom:591.665112px;}
.y8f_c00294{bottom:632.748570px;}
.y90_c00294{bottom:632.749029px;}
.y8d_c00294{bottom:632.749053px;}
.y8e_c00294{bottom:632.749212px;}
.y94_c00294{bottom:632.749245px;}
.y97_c00294{bottom:632.749302px;}
.y99_c00294{bottom:632.749341px;}
.y98_c00294{bottom:632.749362px;}
.y8c_c00294{bottom:632.749377px;}
.y91_c00294{bottom:632.749488px;}
.y96_c00294{bottom:632.749503px;}
.y93_c00294{bottom:632.749506px;}
.y92_c00294{bottom:632.749647px;}
.y95_c00294{bottom:632.749944px;}
.y7d_c00294{bottom:634.770000px;}
.y7e_c00294{bottom:634.989807px;}
.y7f_c00294{bottom:635.170806px;}
.y80_c00294{bottom:635.397585px;}
.y81_c00294{bottom:635.840538px;}
.y82_c00294{bottom:636.043944px;}
.y83_c00294{bottom:636.169356px;}
.y84_c00294{bottom:636.369045px;}
.y85_c00294{bottom:636.512664px;}
.y86_c00294{bottom:636.644901px;}
.y87_c00294{bottom:636.811305px;}
.y88_c00294{bottom:636.943542px;}
.y89_c00294{bottom:637.268748px;}
.y8a_c00294{bottom:637.593786px;}
.y8b_c00294{bottom:637.744965px;}
.y7c_c00294{bottom:641.095500px;}
.y73_c00294{bottom:688.751325px;}
.y74_c00294{bottom:690.407298px;}
.y75_c00294{bottom:690.699720px;}
.y76_c00294{bottom:692.011758px;}
.y77_c00294{bottom:692.509020px;}
.y78_c00294{bottom:693.667263px;}
.y79_c00294{bottom:694.004198px;}
.y7a_c00294{bottom:694.499003px;}
.y7b_c00294{bottom:696.336965px;}
.y6a_c00294{bottom:723.853220px;}
.y6b_c00294{bottom:724.906852px;}
.y6c_c00294{bottom:725.305797px;}
.y6d_c00294{bottom:726.215373px;}
.y6e_c00294{bottom:727.151977px;}
.y6f_c00294{bottom:727.547217px;}
.y70_c00294{bottom:728.062061px;}
.y71_c00294{bottom:728.480234px;}
.y72_c00294{bottom:729.938448px;}
.y60_c00294{bottom:753.286678px;}
.y61_c00294{bottom:754.836876px;}
.y62_c00294{bottom:755.124811px;}
.y63_c00294{bottom:756.492951px;}
.y64_c00294{bottom:758.024001px;}
.y65_c00294{bottom:758.809269px;}
.y66_c00294{bottom:759.562480px;}
.y67_c00294{bottom:760.961017px;}
.y68_c00294{bottom:761.577232px;}
.y69_c00294{bottom:762.949038px;}
.y59_c00294{bottom:787.038307px;}
.y5a_c00294{bottom:787.596709px;}
.y5b_c00294{bottom:788.035654px;}
.y5c_c00294{bottom:788.884957px;}
.y5d_c00294{bottom:789.593880px;}
.y5e_c00294{bottom:790.460596px;}
.y5f_c00294{bottom:791.612734px;}
.y4d_c00294{bottom:818.090747px;}
.y4e_c00294{bottom:819.498373px;}
.y4f_c00294{bottom:820.783287px;}
.y50_c00294{bottom:821.780049px;}
.y51_c00294{bottom:822.383905px;}
.y52_c00294{bottom:822.640291px;}
.y53_c00294{bottom:823.927857px;}
.y54_c00294{bottom:824.496925px;}
.y55_c00294{bottom:824.935773px;}
.y56_c00294{bottom:825.497509px;}
.y57_c00294{bottom:826.206705px;}
.y58_c00294{bottom:826.922218px;}
.y46_c00294{bottom:851.033207px;}
.y47_c00294{bottom:852.324496px;}
.y48_c00294{bottom:853.339296px;}
.y49_c00294{bottom:853.891321px;}
.y4a_c00294{bottom:854.880595px;}
.y4b_c00294{bottom:855.744211px;}
.y4c_c00294{bottom:856.772563px;}
.y3c_c00294{bottom:880.736286px;}
.y3d_c00294{bottom:882.151206px;}
.y3e_c00294{bottom:883.421767px;}
.y3f_c00294{bottom:884.008152px;}
.y40_c00294{bottom:885.415720px;}
.y41_c00294{bottom:886.422603px;}
.y42_c00294{bottom:886.988434px;}
.y43_c00294{bottom:888.132051px;}
.y44_c00294{bottom:888.560778px;}
.y45_c00294{bottom:889.567836px;}
.y31_c00294{bottom:912.869838px;}
.y32_c00294{bottom:913.491823px;}
.y33_c00294{bottom:914.107551px;}
.y34_c00294{bottom:915.180988px;}
.y35_c00294{bottom:916.096525px;}
.y36_c00294{bottom:916.557706px;}
.y37_c00294{bottom:917.790837px;}
.y38_c00294{bottom:918.565770px;}
.y39_c00294{bottom:919.020282px;}
.y3a_c00294{bottom:920.278956px;}
.y3b_c00294{bottom:921.669850px;}
.y26_c00294{bottom:943.920370px;}
.y27_c00294{bottom:945.585078px;}
.y28_c00294{bottom:945.889062px;}
.y29_c00294{bottom:947.529768px;}
.y2a_c00294{bottom:948.995251px;}
.y2b_c00294{bottom:949.504914px;}
.y2c_c00294{bottom:950.153826px;}
.y2d_c00294{bottom:951.481657px;}
.y2e_c00294{bottom:952.627987px;}
.y2f_c00294{bottom:953.292166px;}
.y30_c00294{bottom:953.956287px;}
.y1d_c00294{bottom:977.133000px;}
.y1e_c00294{bottom:977.978520px;}
.y1f_c00294{bottom:978.537195px;}
.y20_c00294{bottom:978.972396px;}
.y21_c00294{bottom:979.400674px;}
.y22_c00294{bottom:980.116929px;}
.y23_c00294{bottom:980.829439px;}
.y24_c00294{bottom:981.257718px;}
.y25_c00294{bottom:982.579506px;}
.y1c_c00294{bottom:990.765000px;}
.y12_c00294{bottom:1007.100820px;}
.y13_c00294{bottom:1008.628080px;}
.y14_c00294{bottom:1010.314101px;}
.y15_c00294{bottom:1011.089467px;}
.y16_c00294{bottom:1012.030179px;}
.y17_c00294{bottom:1012.472301px;}
.y18_c00294{bottom:1013.859472px;}
.y19_c00294{bottom:1015.219524px;}
.y1a_c00294{bottom:1016.009275px;}
.y1b_c00294{bottom:1016.773194px;}
.yc_c00294{bottom:1042.201500px;}
.yd_c00294{bottom:1043.044963px;}
.ye_c00294{bottom:1043.544154px;}
.yf_c00294{bottom:1044.610318px;}
.y10_c00294{bottom:1044.993432px;}
.y11_c00294{bottom:1046.333083px;}
.y2_c00294{bottom:1071.361500px;}
.y3_c00294{bottom:1072.677228px;}
.y4_c00294{bottom:1073.723874px;}
.y5_c00294{bottom:1074.896664px;}
.y6_c00294{bottom:1075.304868px;}
.y7_c00294{bottom:1075.700166px;}
.y8_c00294{bottom:1076.886276px;}
.y9_c00294{bottom:1077.935568px;}
.ya_c00294{bottom:1078.467468px;}
.yb_c00294{bottom:1079.264058px;}
.y1_c00294{bottom:1131.021000px;}
.he_c00294{height:18.000000px;}
.hb_c00294{height:18.001764px;}
.h5_c00294{height:36.000000px;}
.hd_c00294{height:42.000000px;}
.ha_c00294{height:66.000000px;}
.h3_c00294{height:66.004752px;}
.h11_c00294{height:72.002916px;}
.h4_c00294{height:72.004356px;}
.hf_c00294{height:72.005184px;}
.h6_c00294{height:72.006084px;}
.h2_c00294{height:78.000000px;}
.h12_c00294{height:78.001911px;}
.h10_c00294{height:78.005616px;}
.h7_c00294{height:78.006591px;}
.hc_c00294{height:84.005082px;}
.h9_c00294{height:84.007098px;}
.h8_c00294{height:90.007605px;}
.h1_c00294{height:1165.500000px;}
.h0_c00294{height:1165.800000px;}
.w0_c00294{width:915.000000px;}
.x0_c00294{left:0.000000px;}
.x3_c00294{left:137.589000px;}
.x20_c00294{left:139.790264px;}
.x31_c00294{left:141.105240px;}
.x46_c00294{left:142.484538px;}
.x53_c00294{left:143.604045px;}
.x6f_c00294{left:144.604500px;}
.x7f_c00294{left:146.239692px;}
.x88_c00294{left:147.328500px;}
.x90_c00294{left:149.211000px;}
.x9e_c00294{left:151.866000px;}
.x2a_c00294{left:204.202236px;}
.x70_c00294{left:234.520500px;}
.x4_c00294{left:247.233000px;}
.x18_c00294{left:248.848500px;}
.x21_c00294{left:250.764878px;}
.x47_c00294{left:253.190595px;}
.x80_c00294{left:255.870488px;}
.x91_c00294{left:258.039000px;}
.x9f_c00294{left:260.688000px;}
.x22_c00294{left:271.032351px;}
.x48_c00294{left:273.723822px;}
.x2b_c00294{left:292.602086px;}
.x41_c00294{left:293.951177px;}
.xa8_c00294{left:304.749000px;}
.x89_c00294{left:310.173000px;}
.x96_c00294{left:312.522000px;}
.x19_c00294{left:313.888500px;}
.xd_c00294{left:323.067000px;}
.x42_c00294{left:327.716177px;}
.x5_c00294{left:334.453500px;}
.x4d_c00294{left:339.284667px;}
.x81_c00294{left:342.002547px;}
.x32_c00294{left:347.680740px;}
.x37_c00294{left:348.718112px;}
.x5a_c00294{left:351.304500px;}
.x71_c00294{left:352.776000px;}
.x8e_c00294{left:354.780000px;}
.x1a_c00294{left:356.863500px;}
.xa0_c00294{left:358.963500px;}
.x54_c00294{left:360.939390px;}
.x58_c00294{left:363.960000px;}
.x5b_c00294{left:367.005000px;}
.xe_c00294{left:368.448000px;}
.x49_c00294{left:371.464055px;}
.x4e_c00294{left:372.511596px;}
.x79_c00294{left:373.848823px;}
.x8d_c00294{left:379.080000px;}
.x23_c00294{left:380.391504px;}
.x1b_c00294{left:390.340500px;}
.x33_c00294{left:392.787240px;}
.x55_c00294{left:394.112532px;}
.x5c_c00294{left:396.132000px;}
.x82_c00294{left:397.350437px;}
.x1_c00294{left:399.600000px;}
.x72_c00294{left:406.512000px;}
.x7a_c00294{left:408.134323px;}
.x9a_c00294{left:413.100000px;}
.x66_c00294{left:416.885139px;}
.x8f_c00294{left:418.770000px;}
.x2_c00294{left:420.930000px;}
.x11_c00294{left:423.294594px;}
.x3c_c00294{left:425.170541px;}
.x38_c00294{left:426.779612px;}
.x6_c00294{left:432.186000px;}
.x2c_c00294{left:434.636733px;}
.xa9_c00294{left:437.052000px;}
.x7b_c00294{left:440.541823px;}
.x5d_c00294{left:442.300500px;}
.x97_c00294{left:444.328500px;}
.x43_c00294{left:447.579677px;}
.x5e_c00294{left:451.258500px;}
.x67_c00294{left:453.607842px;}
.x99_c00294{left:457.294518px;}
.xa4_c00294{left:459.096000px;}
.x59_c00294{left:462.510000px;}
.x68_c00294{left:464.678505px;}
.x7_c00294{left:466.203000px;}
.x2d_c00294{left:467.573304px;}
.x39_c00294{left:469.243112px;}
.x3d_c00294{left:471.621041px;}
.x73_c00294{left:472.936500px;}
.x83_c00294{left:474.301095px;}
.x5f_c00294{left:475.780500px;}
.x1c_c00294{left:478.381500px;}
.x4a_c00294{left:480.812631px;}
.x69_c00294{left:484.119306px;}
.x60_c00294{left:485.226000px;}
.x12_c00294{left:490.538883px;}
.xa5_c00294{left:491.775000px;}
.x56_c00294{left:493.777439px;}
.x7c_c00294{left:495.108823px;}
.x61_c00294{left:497.112000px;}
.x8_c00294{left:499.144500px;}
.xf_c00294{left:500.200500px;}
.x9b_c00294{left:502.200000px;}
.x62_c00294{left:506.557500px;}
.x6a_c00294{left:507.880968px;}
.x24_c00294{left:512.130092px;}
.x44_c00294{left:514.250177px;}
.x74_c00294{left:517.198500px;}
.x6b_c00294{left:521.112051px;}
.x13_c00294{left:522.139843px;}
.x9c_c00294{left:523.260000px;}
.x4f_c00294{left:526.412105px;}
.x63_c00294{left:529.786500px;}
.x6c_c00294{left:530.832462px;}
.x1d_c00294{left:533.190000px;}
.x4b_c00294{left:536.947910px;}
.x6d_c00294{left:542.713293px;}
.x3a_c00294{left:545.341112px;}
.x6e_c00294{left:550.004721px;}
.x64_c00294{left:553.003500px;}
.x25_c00294{left:555.352961px;}
.x50_c00294{left:559.354034px;}
.x65_c00294{left:563.802000px;}
.x1e_c00294{left:566.134500px;}
.x98_c00294{left:575.845500px;}
.x34_c00294{left:578.514240px;}
.x92_c00294{left:586.911000px;}
.x3e_c00294{left:590.386541px;}
.x84_c00294{left:594.476775px;}
.x9_c00294{left:597.987000px;}
.x9d_c00294{left:599.400000px;}
.x45_c00294{left:602.876177px;}
.x8a_c00294{left:607.443000px;}
.x2e_c00294{left:610.960932px;}
.x75_c00294{left:615.778500px;}
.x10_c00294{left:621.987000px;}
.xa6_c00294{left:623.809500px;}
.x3f_c00294{left:634.161041px;}
.x51_c00294{left:637.125548px;}
.x26_c00294{left:643.876160px;}
.x57_c00294{left:649.332402px;}
.x85_c00294{left:650.661665px;}
.x1f_c00294{left:667.810500px;}
.x86_c00294{left:671.143934px;}
.x93_c00294{left:675.757500px;}
.x76_c00294{left:682.486500px;}
.x8b_c00294{left:683.611500px;}
.xa_c00294{left:685.428000px;}
.x3b_c00294{left:690.877112px;}
.x7d_c00294{left:693.810823px;}
.x17_c00294{left:710.640000px;}
.xa7_c00294{left:712.641000px;}
.x14_c00294{left:718.426375px;}
.x27_c00294{left:720.284171px;}
.xa1_c00294{left:721.590000px;}
.xb_c00294{left:729.753000px;}
.x2f_c00294{left:733.281333px;}
.x4c_c00294{left:734.634836px;}
.x35_c00294{left:742.989240px;}
.x87_c00294{left:748.106592px;}
.x94_c00294{left:751.626000px;}
.xa2_c00294{left:755.604000px;}
.x52_c00294{left:758.643627px;}
.x28_c00294{left:764.566020px;}
.x40_c00294{left:765.682541px;}
.x77_c00294{left:769.389000px;}
.x15_c00294{left:774.811011px;}
.x95_c00294{left:784.837500px;}
.xa3_c00294{left:788.010000px;}
.x78_c00294{left:791.296500px;}
.x8c_c00294{left:793.230000px;}
.xc_c00294{left:796.135500px;}
.x29_c00294{left:808.843370px;}
.x7e_c00294{left:814.751324px;}
.x36_c00294{left:820.455240px;}
.x16_c00294{left:829.392713px;}
.x30_c00294{left:832.656546px;}
@media print{
.v0_c00294{vertical-align:0.000000pt;}
.ls0_c00294{letter-spacing:0.000000pt;}
.ws0_c00294{word-spacing:0.000000pt;}
._0_c00294{width:5.882685pt;}
.fsc_c00294{font-size:16.000000pt;}
.fs9_c00294{font-size:16.001568pt;}
.fs3_c00294{font-size:32.000000pt;}
.fsb_c00294{font-size:37.333333pt;}
.fs8_c00294{font-size:58.666667pt;}
.fs1_c00294{font-size:58.670891pt;}
.fsf_c00294{font-size:64.002592pt;}
.fs2_c00294{font-size:64.003872pt;}
.fsd_c00294{font-size:64.004608pt;}
.fs4_c00294{font-size:64.005408pt;}
.fs0_c00294{font-size:69.333333pt;}
.fs10_c00294{font-size:69.335032pt;}
.fse_c00294{font-size:69.338325pt;}
.fs5_c00294{font-size:69.339192pt;}
.fsa_c00294{font-size:74.671184pt;}
.fs7_c00294{font-size:74.672976pt;}
.fs6_c00294{font-size:80.006760pt;}
.y0_c00294{bottom:0.000000pt;}
.yf5_c00294{bottom:50.641333pt;}
.yf6_c00294{bottom:51.147293pt;}
.yf7_c00294{bottom:51.790169pt;}
.yf8_c00294{bottom:52.676128pt;}
.yf9_c00294{bottom:53.072663pt;}
.yfa_c00294{bottom:53.840235pt;}
.yeb_c00294{bottom:79.440000pt;}
.yec_c00294{bottom:80.269920pt;}
.yed_c00294{bottom:80.402612pt;}
.yee_c00294{bottom:80.671393pt;}
.yef_c00294{bottom:80.874729pt;}
.yf0_c00294{bottom:81.482945pt;}
.yf1_c00294{bottom:81.696277pt;}
.yf2_c00294{bottom:82.249007pt;}
.yf3_c00294{bottom:82.719444pt;}
.yf4_c00294{bottom:82.996616pt;}
.ye1_c00294{bottom:106.561333pt;}
.ye2_c00294{bottom:107.431909pt;}
.ye3_c00294{bottom:108.218113pt;}
.ye4_c00294{bottom:108.485941pt;}
.ye5_c00294{bottom:109.190305pt;}
.ye6_c00294{bottom:110.235469pt;}
.ye7_c00294{bottom:110.425849pt;}
.ye8_c00294{bottom:111.119125pt;}
.ye9_c00294{bottom:111.391237pt;}
.yea_c00294{bottom:111.650485pt;}
.ye0_c00294{bottom:143.948000pt;}
.ydf_c00294{bottom:148.653333pt;}
.yde_c00294{bottom:184.712000pt;}
.yd8_c00294{bottom:209.279109pt;}
.yd9_c00294{bottom:210.253723pt;}
.yda_c00294{bottom:211.229995pt;}
.ydb_c00294{bottom:212.017621pt;}
.ydc_c00294{bottom:213.587712pt;}
.ydd_c00294{bottom:214.833227pt;}
.yd0_c00294{bottom:238.561333pt;}
.yd1_c00294{bottom:239.145509pt;}
.yd2_c00294{bottom:239.379333pt;}
.yd3_c00294{bottom:240.551445pt;}
.yd4_c00294{bottom:240.911349pt;}
.yd5_c00294{bottom:241.265845pt;}
.yd6_c00294{bottom:241.954293pt;}
.yd7_c00294{bottom:242.319893pt;}
.yc7_c00294{bottom:265.201333pt;}
.yc8_c00294{bottom:266.362165pt;}
.yc9_c00294{bottom:267.065045pt;}
.yca_c00294{bottom:268.136645pt;}
.ycb_c00294{bottom:269.515989pt;}
.ycc_c00294{bottom:269.870133pt;}
.ycd_c00294{bottom:270.817829pt;}
.yce_c00294{bottom:271.627093pt;}
.ycf_c00294{bottom:271.981349pt;}
.yc6_c00294{bottom:309.333333pt;}
.yc5_c00294{bottom:317.476000pt;}
.yc4_c00294{bottom:352.940185pt;}
.ybb_c00294{bottom:378.722667pt;}
.ybc_c00294{bottom:379.973839pt;}
.ybd_c00294{bottom:380.604425pt;}
.ybe_c00294{bottom:381.746363pt;}
.ybf_c00294{bottom:382.763483pt;}
.yc0_c00294{bottom:383.147173pt;}
.yc1_c00294{bottom:384.039545pt;}
.yc2_c00294{bottom:384.919715pt;}
.yc3_c00294{bottom:386.186417pt;}
.yb9_c00294{bottom:410.176000pt;}
.yba_c00294{bottom:417.120000pt;}
.yad_c00294{bottom:436.076548pt;}
.yae_c00294{bottom:437.245839pt;}
.yaf_c00294{bottom:438.164028pt;}
.yb0_c00294{bottom:438.754547pt;}
.yb1_c00294{bottom:439.574961pt;}
.yb2_c00294{bottom:440.297807pt;}
.yb3_c00294{bottom:440.519680pt;}
.yb4_c00294{bottom:440.856692pt;}
.yb5_c00294{bottom:441.455395pt;}
.yb6_c00294{bottom:441.674335pt;}
.yb7_c00294{bottom:442.494867pt;}
.yb8_c00294{bottom:442.963853pt;}
.ya6_c00294{bottom:492.719333pt;}
.ya7_c00294{bottom:493.894119pt;}
.ya8_c00294{bottom:494.229355pt;}
.ya9_c00294{bottom:494.546228pt;}
.yaa_c00294{bottom:495.079772pt;}
.yab_c00294{bottom:497.022636pt;}
.yac_c00294{bottom:498.205165pt;}
.y9a_c00294{bottom:519.601333pt;}
.y9b_c00294{bottom:520.480512pt;}
.y9c_c00294{bottom:521.636788pt;}
.y9d_c00294{bottom:522.162207pt;}
.y9e_c00294{bottom:522.619044pt;}
.y9f_c00294{bottom:522.811691pt;}
.ya0_c00294{bottom:523.244475pt;}
.ya1_c00294{bottom:524.208368pt;}
.ya2_c00294{bottom:524.538383pt;}
.ya3_c00294{bottom:524.860624pt;}
.ya4_c00294{bottom:525.710337pt;}
.ya5_c00294{bottom:525.924544pt;}
.y8f_c00294{bottom:562.443173pt;}
.y90_c00294{bottom:562.443581pt;}
.y8d_c00294{bottom:562.443603pt;}
.y8e_c00294{bottom:562.443744pt;}
.y94_c00294{bottom:562.443773pt;}
.y97_c00294{bottom:562.443824pt;}
.y99_c00294{bottom:562.443859pt;}
.y98_c00294{bottom:562.443877pt;}
.y8c_c00294{bottom:562.443891pt;}
.y91_c00294{bottom:562.443989pt;}
.y96_c00294{bottom:562.444003pt;}
.y93_c00294{bottom:562.444005pt;}
.y92_c00294{bottom:562.444131pt;}
.y95_c00294{bottom:562.444395pt;}
.y7d_c00294{bottom:564.240000pt;}
.y7e_c00294{bottom:564.435384pt;}
.y7f_c00294{bottom:564.596272pt;}
.y80_c00294{bottom:564.797853pt;}
.y81_c00294{bottom:565.191589pt;}
.y82_c00294{bottom:565.372395pt;}
.y83_c00294{bottom:565.483872pt;}
.y84_c00294{bottom:565.661373pt;}
.y85_c00294{bottom:565.789035pt;}
.y86_c00294{bottom:565.906579pt;}
.y87_c00294{bottom:566.054493pt;}
.y88_c00294{bottom:566.172037pt;}
.y89_c00294{bottom:566.461109pt;}
.y8a_c00294{bottom:566.750032pt;}
.y8b_c00294{bottom:566.884413pt;}
.y7c_c00294{bottom:569.862667pt;}
.y73_c00294{bottom:612.223400pt;}
.y74_c00294{bottom:613.695376pt;}
.y75_c00294{bottom:613.955307pt;}
.y76_c00294{bottom:615.121563pt;}
.y77_c00294{bottom:615.563573pt;}
.y78_c00294{bottom:616.593123pt;}
.y79_c00294{bottom:616.892620pt;}
.y7a_c00294{bottom:617.332447pt;}
.y7b_c00294{bottom:618.966191pt;}
.y6a_c00294{bottom:643.425084pt;}
.y6b_c00294{bottom:644.361647pt;}
.y6c_c00294{bottom:644.716264pt;}
.y6d_c00294{bottom:645.524776pt;}
.y6e_c00294{bottom:646.357313pt;}
.y6f_c00294{bottom:646.708637pt;}
.y70_c00294{bottom:647.166276pt;}
.y71_c00294{bottom:647.537985pt;}
.y72_c00294{bottom:648.834176pt;}
.y60_c00294{bottom:669.588159pt;}
.y61_c00294{bottom:670.966112pt;}
.y62_c00294{bottom:671.222055pt;}
.y63_c00294{bottom:672.438179pt;}
.y64_c00294{bottom:673.799112pt;}
.y65_c00294{bottom:674.497128pt;}
.y66_c00294{bottom:675.166649pt;}
.y67_c00294{bottom:676.409793pt;}
.y68_c00294{bottom:676.957540pt;}
.y69_c00294{bottom:678.176923pt;}
.y59_c00294{bottom:699.589607pt;}
.y5a_c00294{bottom:700.085964pt;}
.y5b_c00294{bottom:700.476137pt;}
.y5c_c00294{bottom:701.231073pt;}
.y5d_c00294{bottom:701.861227pt;}
.y5e_c00294{bottom:702.631641pt;}
.y5f_c00294{bottom:703.655764pt;}
.y4d_c00294{bottom:727.191775pt;}
.y4e_c00294{bottom:728.442999pt;}
.y4f_c00294{bottom:729.585144pt;}
.y50_c00294{bottom:730.471155pt;}
.y51_c00294{bottom:731.007916pt;}
.y52_c00294{bottom:731.235815pt;}
.y53_c00294{bottom:732.380317pt;}
.y54_c00294{bottom:732.886156pt;}
.y55_c00294{bottom:733.276243pt;}
.y56_c00294{bottom:733.775564pt;}
.y57_c00294{bottom:734.405960pt;}
.y58_c00294{bottom:735.041972pt;}
.y46_c00294{bottom:756.473961pt;}
.y47_c00294{bottom:757.621775pt;}
.y48_c00294{bottom:758.523819pt;}
.y49_c00294{bottom:759.014508pt;}
.y4a_c00294{bottom:759.893863pt;}
.y4b_c00294{bottom:760.661521pt;}
.y4c_c00294{bottom:761.575612pt;}
.y3c_c00294{bottom:782.876699pt;}
.y3d_c00294{bottom:784.134405pt;}
.y3e_c00294{bottom:785.263793pt;}
.y3f_c00294{bottom:785.785024pt;}
.y40_c00294{bottom:787.036196pt;}
.y41_c00294{bottom:787.931203pt;}
.y42_c00294{bottom:788.434164pt;}
.y43_c00294{bottom:789.450712pt;}
.y44_c00294{bottom:789.831803pt;}
.y45_c00294{bottom:790.726965pt;}
.y31_c00294{bottom:811.439856pt;}
.y32_c00294{bottom:811.992732pt;}
.y33_c00294{bottom:812.540045pt;}
.y34_c00294{bottom:813.494212pt;}
.y35_c00294{bottom:814.308023pt;}
.y36_c00294{bottom:814.717961pt;}
.y37_c00294{bottom:815.814077pt;}
.y38_c00294{bottom:816.502907pt;}
.y39_c00294{bottom:816.906917pt;}
.y3a_c00294{bottom:818.025739pt;}
.y3b_c00294{bottom:819.262089pt;}
.y26_c00294{bottom:839.040329pt;}
.y27_c00294{bottom:840.520069pt;}
.y28_c00294{bottom:840.790277pt;}
.y29_c00294{bottom:842.248683pt;}
.y2a_c00294{bottom:843.551335pt;}
.y2b_c00294{bottom:844.004368pt;}
.y2c_c00294{bottom:844.581179pt;}
.y2d_c00294{bottom:845.761473pt;}
.y2e_c00294{bottom:846.780433pt;}
.y2f_c00294{bottom:847.370815pt;}
.y30_c00294{bottom:847.961144pt;}
.y1d_c00294{bottom:868.562667pt;}
.y1e_c00294{bottom:869.314240pt;}
.y1f_c00294{bottom:869.810840pt;}
.y20_c00294{bottom:870.197685pt;}
.y21_c00294{bottom:870.578377pt;}
.y22_c00294{bottom:871.215048pt;}
.y23_c00294{bottom:871.848391pt;}
.y24_c00294{bottom:872.229083pt;}
.y25_c00294{bottom:873.404005pt;}
.y1c_c00294{bottom:880.680000pt;}
.y12_c00294{bottom:895.200729pt;}
.y13_c00294{bottom:896.558293pt;}
.y14_c00294{bottom:898.056979pt;}
.y15_c00294{bottom:898.746193pt;}
.y16_c00294{bottom:899.582381pt;}
.y17_c00294{bottom:899.975379pt;}
.y18_c00294{bottom:901.208420pt;}
.y19_c00294{bottom:902.417355pt;}
.y1a_c00294{bottom:903.119356pt;}
.y1b_c00294{bottom:903.798395pt;}
.yc_c00294{bottom:926.401333pt;}
.yd_c00294{bottom:927.151079pt;}
.ye_c00294{bottom:927.594804pt;}
.yf_c00294{bottom:928.542505pt;}
.y10_c00294{bottom:928.883051pt;}
.y11_c00294{bottom:930.073852pt;}
.y2_c00294{bottom:952.321333pt;}
.y3_c00294{bottom:953.490869pt;}
.y4_c00294{bottom:954.421221pt;}
.y5_c00294{bottom:955.463701pt;}
.y6_c00294{bottom:955.826549pt;}
.y7_c00294{bottom:956.177925pt;}
.y8_c00294{bottom:957.232245pt;}
.y9_c00294{bottom:958.164949pt;}
.ya_c00294{bottom:958.637749pt;}
.yb_c00294{bottom:959.345829pt;}
.y1_c00294{bottom:1005.352000pt;}
.he_c00294{height:16.000000pt;}
.hb_c00294{height:16.001568pt;}
.h5_c00294{height:32.000000pt;}
.hd_c00294{height:37.333333pt;}
.ha_c00294{height:58.666667pt;}
.h3_c00294{height:58.670891pt;}
.h11_c00294{height:64.002592pt;}
.h4_c00294{height:64.003872pt;}
.hf_c00294{height:64.004608pt;}
.h6_c00294{height:64.005408pt;}
.h2_c00294{height:69.333333pt;}
.h12_c00294{height:69.335032pt;}
.h10_c00294{height:69.338325pt;}
.h7_c00294{height:69.339192pt;}
.hc_c00294{height:74.671184pt;}
.h9_c00294{height:74.672976pt;}
.h8_c00294{height:80.006760pt;}
.h1_c00294{height:1036.000000pt;}
.h0_c00294{height:1036.266667pt;}
.w0_c00294{width:813.333333pt;}
.x0_c00294{left:0.000000pt;}
.x3_c00294{left:122.301333pt;}
.x20_c00294{left:124.258012pt;}
.x31_c00294{left:125.426880pt;}
.x46_c00294{left:126.652923pt;}
.x53_c00294{left:127.648040pt;}
.x6f_c00294{left:128.537333pt;}
.x7f_c00294{left:129.990837pt;}
.x88_c00294{left:130.958667pt;}
.x90_c00294{left:132.632000pt;}
.x9e_c00294{left:134.992000pt;}
.x2a_c00294{left:181.513099pt;}
.x70_c00294{left:208.462667pt;}
.x4_c00294{left:219.762667pt;}
.x18_c00294{left:221.198667pt;}
.x21_c00294{left:222.902113pt;}
.x47_c00294{left:225.058307pt;}
.x80_c00294{left:227.440433pt;}
.x91_c00294{left:229.368000pt;}
.x9f_c00294{left:231.722667pt;}
.x22_c00294{left:240.917645pt;}
.x48_c00294{left:243.310064pt;}
.x2b_c00294{left:260.090743pt;}
.x41_c00294{left:261.289935pt;}
.xa8_c00294{left:270.888000pt;}
.x89_c00294{left:275.709333pt;}
.x96_c00294{left:277.797333pt;}
.x19_c00294{left:279.012000pt;}
.xd_c00294{left:287.170667pt;}
.x42_c00294{left:291.303268pt;}
.x5_c00294{left:297.292000pt;}
.x4d_c00294{left:301.586371pt;}
.x81_c00294{left:304.002264pt;}
.x32_c00294{left:309.049547pt;}
.x37_c00294{left:309.971655pt;}
.x5a_c00294{left:312.270667pt;}
.x71_c00294{left:313.578667pt;}
.x8e_c00294{left:315.360000pt;}
.x1a_c00294{left:317.212000pt;}
.xa0_c00294{left:319.078667pt;}
.x54_c00294{left:320.835013pt;}
.x58_c00294{left:323.520000pt;}
.x5b_c00294{left:326.226667pt;}
.xe_c00294{left:327.509333pt;}
.x49_c00294{left:330.190271pt;}
.x4e_c00294{left:331.121419pt;}
.x79_c00294{left:332.310065pt;}
.x8d_c00294{left:336.960000pt;}
.x23_c00294{left:338.125781pt;}
.x1b_c00294{left:346.969333pt;}
.x33_c00294{left:349.144213pt;}
.x55_c00294{left:350.322251pt;}
.x5c_c00294{left:352.117333pt;}
.x82_c00294{left:353.200388pt;}
.x1_c00294{left:355.200000pt;}
.x72_c00294{left:361.344000pt;}
.x7a_c00294{left:362.786065pt;}
.x9a_c00294{left:367.200000pt;}
.x66_c00294{left:370.564568pt;}
.x8f_c00294{left:372.240000pt;}
.x2_c00294{left:374.160000pt;}
.x11_c00294{left:376.261861pt;}
.x3c_c00294{left:377.929369pt;}
.x38_c00294{left:379.359655pt;}
.x6_c00294{left:384.165333pt;}
.x2c_c00294{left:386.343763pt;}
.xa9_c00294{left:388.490667pt;}
.x7b_c00294{left:391.592732pt;}
.x5d_c00294{left:393.156000pt;}
.x97_c00294{left:394.958667pt;}
.x43_c00294{left:397.848601pt;}
.x5e_c00294{left:401.118667pt;}
.x67_c00294{left:403.206971pt;}
.x99_c00294{left:406.484016pt;}
.xa4_c00294{left:408.085333pt;}
.x59_c00294{left:411.120000pt;}
.x68_c00294{left:413.047560pt;}
.x7_c00294{left:414.402667pt;}
.x2d_c00294{left:415.620715pt;}
.x39_c00294{left:417.104988pt;}
.x3d_c00294{left:419.218703pt;}
.x73_c00294{left:420.388000pt;}
.x83_c00294{left:421.600973pt;}
.x5f_c00294{left:422.916000pt;}
.x1c_c00294{left:425.228000pt;}
.x4a_c00294{left:427.389005pt;}
.x69_c00294{left:430.328272pt;}
.x60_c00294{left:431.312000pt;}
.x12_c00294{left:436.034563pt;}
.xa5_c00294{left:437.133333pt;}
.x56_c00294{left:438.913279pt;}
.x7c_c00294{left:440.096732pt;}
.x61_c00294{left:441.877333pt;}
.x8_c00294{left:443.684000pt;}
.xf_c00294{left:444.622667pt;}
.x9b_c00294{left:446.400000pt;}
.x62_c00294{left:450.273333pt;}
.x6a_c00294{left:451.449749pt;}
.x24_c00294{left:455.226748pt;}
.x44_c00294{left:457.111268pt;}
.x74_c00294{left:459.732000pt;}
.x6b_c00294{left:463.210712pt;}
.x13_c00294{left:464.124305pt;}
.x9c_c00294{left:465.120000pt;}
.x4f_c00294{left:467.921871pt;}
.x63_c00294{left:470.921333pt;}
.x6c_c00294{left:471.851077pt;}
.x1d_c00294{left:473.946667pt;}
.x4b_c00294{left:477.287031pt;}
.x6d_c00294{left:482.411816pt;}
.x3a_c00294{left:484.747655pt;}
.x6e_c00294{left:488.893085pt;}
.x64_c00294{left:491.558667pt;}
.x25_c00294{left:493.647076pt;}
.x50_c00294{left:497.203585pt;}
.x65_c00294{left:501.157333pt;}
.x1e_c00294{left:503.230667pt;}
.x98_c00294{left:511.862667pt;}
.x34_c00294{left:514.234880pt;}
.x92_c00294{left:521.698667pt;}
.x3e_c00294{left:524.788036pt;}
.x84_c00294{left:528.423800pt;}
.x9_c00294{left:531.544000pt;}
.x9d_c00294{left:532.800000pt;}
.x45_c00294{left:535.889935pt;}
.x8a_c00294{left:539.949333pt;}
.x2e_c00294{left:543.076384pt;}
.x75_c00294{left:547.358667pt;}
.x10_c00294{left:552.877333pt;}
.xa6_c00294{left:554.497333pt;}
.x3f_c00294{left:563.698703pt;}
.x51_c00294{left:566.333820pt;}
.x26_c00294{left:572.334364pt;}
.x57_c00294{left:577.184357pt;}
.x85_c00294{left:578.365924pt;}
.x1f_c00294{left:593.609333pt;}
.x86_c00294{left:596.572385pt;}
.x93_c00294{left:600.673333pt;}
.x76_c00294{left:606.654667pt;}
.x8b_c00294{left:607.654667pt;}
.xa_c00294{left:609.269333pt;}
.x3b_c00294{left:614.112988pt;}
.x7d_c00294{left:616.720732pt;}
.x17_c00294{left:631.680000pt;}
.xa7_c00294{left:633.458667pt;}
.x14_c00294{left:638.601223pt;}
.x27_c00294{left:640.252596pt;}
.xa1_c00294{left:641.413333pt;}
.xb_c00294{left:648.669333pt;}
.x2f_c00294{left:651.805629pt;}
.x4c_c00294{left:653.008743pt;}
.x35_c00294{left:660.434880pt;}
.x87_c00294{left:664.983637pt;}
.x94_c00294{left:668.112000pt;}
.xa2_c00294{left:671.648000pt;}
.x52_c00294{left:674.349891pt;}
.x28_c00294{left:679.614240pt;}
.x40_c00294{left:680.606703pt;}
.x77_c00294{left:683.901333pt;}
.x15_c00294{left:688.720899pt;}
.x95_c00294{left:697.633333pt;}
.xa3_c00294{left:700.453333pt;}
.x78_c00294{left:703.374667pt;}
.x8c_c00294{left:705.093333pt;}
.xc_c00294{left:707.676000pt;}
.x29_c00294{left:718.971884pt;}
.x7e_c00294{left:724.223399pt;}
.x36_c00294{left:729.293547pt;}
.x16_c00294{left:737.237967pt;}
.x30_c00294{left:740.139152pt;}
}





/* 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_c00295 {
    display:none;
  }
  .loading-indicator_c00295.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00295 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_c00295 { 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_c00295" -> "#page-container .classname_c00295")
 */
.pf_c00295 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00295 { /* 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_c00295.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00295 { /* 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_c00295 { /* 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_c00295 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00295 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00295 {overflow:visible;}
  }
}
.c_c00295 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00295 { /* 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_c00295:after { /* webkit #35443 */
  content: '';
}
.t_c00295:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00295 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 */
}
.__c00295 { /* 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_c00295 { /* info for Javascript */
  display:none;
}
.l_c00295 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00295 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00295 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00295: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_c00295 {
    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_c00295.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00295.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_c00295 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00295{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00295;src:url('chunks/assets/font_c605e72f209fc835e906f064.woff2')format("woff");}.ff1_c00295{font-family:ff1_c00295;line-height:1.000000;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;}
.me2_c00295{transform:matrix(0.021215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021215,0.000000,0.000000,0.250000,0,0);}
.m179_c00295{transform:matrix(0.023714,-0.000213,0.002250,0.249990,0,0);-ms-transform:matrix(0.023714,-0.000213,0.002250,0.249990,0,0);-webkit-transform:matrix(0.023714,-0.000213,0.002250,0.249990,0,0);}
.m15c_c00295{transform:matrix(0.027039,-0.000243,0.002250,0.249990,0,0);-ms-transform:matrix(0.027039,-0.000243,0.002250,0.249990,0,0);-webkit-transform:matrix(0.027039,-0.000243,0.002250,0.249990,0,0);}
.m3a_c00295{transform:matrix(0.028815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.028815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.028815,0.000000,0.000000,0.250000,0,0);}
.m153_c00295{transform:matrix(0.031819,-0.000286,0.002250,0.249990,0,0);-ms-transform:matrix(0.031819,-0.000286,0.002250,0.249990,0,0);-webkit-transform:matrix(0.031819,-0.000286,0.002250,0.249990,0,0);}
.mc_c00295{transform:matrix(0.031820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.031820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.031820,0.000000,0.000000,0.250000,0,0);}
.m180_c00295{transform:matrix(0.033539,-0.000302,0.002250,0.249990,0,0);-ms-transform:matrix(0.033539,-0.000302,0.002250,0.249990,0,0);-webkit-transform:matrix(0.033539,-0.000302,0.002250,0.249990,0,0);}
.m154_c00295{transform:matrix(0.035574,-0.000320,0.002250,0.249990,0,0);-ms-transform:matrix(0.035574,-0.000320,0.002250,0.249990,0,0);-webkit-transform:matrix(0.035574,-0.000320,0.002250,0.249990,0,0);}
.m13_c00295{transform:matrix(0.035575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.035575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.035575,0.000000,0.000000,0.250000,0,0);}
.m139_c00295{transform:matrix(0.037500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.037500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.037500,0.000000,0.000000,0.250000,0,0);}
.m17b_c00295{transform:matrix(0.040388,-0.000363,0.002250,0.249990,0,0);-ms-transform:matrix(0.040388,-0.000363,0.002250,0.249990,0,0);-webkit-transform:matrix(0.040388,-0.000363,0.002250,0.249990,0,0);}
.m0_c00295{transform:matrix(0.040560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.040560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.040560,0.000000,0.000000,0.250000,0,0);}
.m70_c00295{transform:matrix(0.042425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.042425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.042425,0.000000,0.000000,0.250000,0,0);}
.m17f_c00295{transform:matrix(0.043728,-0.000394,0.002250,0.249990,0,0);-ms-transform:matrix(0.043728,-0.000394,0.002250,0.249990,0,0);-webkit-transform:matrix(0.043728,-0.000394,0.002250,0.249990,0,0);}
.m86_c00295{transform:matrix(0.047730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.047730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.047730,0.000000,0.000000,0.250000,0,0);}
.m15d_c00295{transform:matrix(0.048023,-0.000432,0.002250,0.249990,0,0);-ms-transform:matrix(0.048023,-0.000432,0.002250,0.249990,0,0);-webkit-transform:matrix(0.048023,-0.000432,0.002250,0.249990,0,0);}
.m16a_c00295{transform:matrix(0.050308,-0.000453,0.002250,0.249990,0,0);-ms-transform:matrix(0.050308,-0.000453,0.002250,0.249990,0,0);-webkit-transform:matrix(0.050308,-0.000453,0.002250,0.249990,0,0);}
.m2f_c00295{transform:matrix(0.050310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.050310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.050310,0.000000,0.000000,0.250000,0,0);}
.mdd_c00295{transform:matrix(0.054085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054085,0.000000,0.000000,0.250000,0,0);}
.m14_c00295{transform:matrix(0.056250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.056250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.056250,0.000000,0.000000,0.250000,0,0);}
.m13a_c00295{transform:matrix(0.058575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.058575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.058575,0.000000,0.000000,0.250000,0,0);}
.ma0_c00295{transform:matrix(0.060585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060585,0.000000,0.000000,0.250000,0,0);}
.mce_c00295{transform:matrix(0.061845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.061845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.061845,0.000000,0.000000,0.250000,0,0);}
.m50_c00295{transform:matrix(0.063640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.063640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.063640,0.000000,0.000000,0.250000,0,0);}
.m144_c00295{transform:matrix(0.064285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.064285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.064285,0.000000,0.000000,0.250000,0,0);}
.m1a_c00295{transform:matrix(0.065600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065600,0.000000,0.000000,0.250000,0,0);}
.m58_c00295{transform:matrix(0.067080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.067080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.067080,0.000000,0.000000,0.250000,0,0);}
.m114_c00295{transform:matrix(0.069145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.069145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.069145,0.000000,0.000000,0.250000,0,0);}
.m162_c00295{transform:matrix(0.070477,-0.000634,0.002250,0.249990,0,0);-ms-transform:matrix(0.070477,-0.000634,0.002250,0.249990,0,0);-webkit-transform:matrix(0.070477,-0.000634,0.002250,0.249990,0,0);}
.m132_c00295{transform:matrix(0.071150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.071150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.071150,0.000000,0.000000,0.250000,0,0);}
.mb_c00295{transform:matrix(0.072035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072035,0.000000,0.000000,0.250000,0,0);}
.m1f_c00295{transform:matrix(0.075465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.075465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.075465,0.000000,0.000000,0.250000,0,0);}
.m7e_c00295{transform:matrix(0.077215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.077215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.077215,0.000000,0.000000,0.250000,0,0);}
.m166_c00295{transform:matrix(0.081122,-0.000730,0.002250,0.249990,0,0);-ms-transform:matrix(0.081122,-0.000730,0.002250,0.249990,0,0);-webkit-transform:matrix(0.081122,-0.000730,0.002250,0.249990,0,0);}
.m35_c00295{transform:matrix(0.081125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.081125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.081125,0.000000,0.000000,0.250000,0,0);}
.m83_c00295{transform:matrix(0.084855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084855,0.000000,0.000000,0.250000,0,0);}
.m14c_c00295{transform:matrix(0.085512,-0.000770,0.002250,0.249990,0,0);-ms-transform:matrix(0.085512,-0.000770,0.002250,0.249990,0,0);-webkit-transform:matrix(0.085512,-0.000770,0.002250,0.249990,0,0);}
.m7a_c00295{transform:matrix(0.086910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.086910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.086910,0.000000,0.000000,0.250000,0,0);}
.m17a_c00295{transform:matrix(0.086976,-0.000783,0.002250,0.249990,0,0);-ms-transform:matrix(0.086976,-0.000783,0.002250,0.249990,0,0);-webkit-transform:matrix(0.086976,-0.000783,0.002250,0.249990,0,0);}
.m5d_c00295{transform:matrix(0.090700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090700,0.000000,0.000000,0.250000,0,0);}
.m156_c00295{transform:matrix(0.091546,-0.000824,0.002250,0.249990,0,0);-ms-transform:matrix(0.091546,-0.000824,0.002250,0.249990,0,0);-webkit-transform:matrix(0.091546,-0.000824,0.002250,0.249990,0,0);}
.m20_c00295{transform:matrix(0.092770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092770,0.000000,0.000000,0.250000,0,0);}
.m51_c00295{transform:matrix(0.094870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.094870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.094870,0.000000,0.000000,0.250000,0,0);}
.m177_c00295{transform:matrix(0.095456,-0.000859,0.002250,0.249990,0,0);-ms-transform:matrix(0.095456,-0.000859,0.002250,0.249990,0,0);-webkit-transform:matrix(0.095456,-0.000859,0.002250,0.249990,0,0);}
.m16_c00295{transform:matrix(0.095460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.095460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.095460,0.000000,0.000000,0.250000,0,0);}
.m53_c00295{transform:matrix(0.096045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096045,0.000000,0.000000,0.250000,0,0);}
.m3d_c00295{transform:matrix(0.096775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096775,0.000000,0.000000,0.250000,0,0);}
.m116_c00295{transform:matrix(0.100625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100625,0.000000,0.000000,0.250000,0,0);}
.mb9_c00295{transform:matrix(0.102010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102010,0.000000,0.000000,0.250000,0,0);}
.m115_c00295{transform:matrix(0.104465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.104465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.104465,0.000000,0.000000,0.250000,0,0);}
.md4_c00295{transform:matrix(0.106065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106065,0.000000,0.000000,0.250000,0,0);}
.m11_c00295{transform:matrix(0.106130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106130,0.000000,0.000000,0.250000,0,0);}
.m85_c00295{transform:matrix(0.108165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108165,0.000000,0.000000,0.250000,0,0);}
.me7_c00295{transform:matrix(0.109200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109200,0.000000,0.000000,0.250000,0,0);}
.m7f_c00295{transform:matrix(0.110735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110735,0.000000,0.000000,0.250000,0,0);}
.m11c_c00295{transform:matrix(0.110800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110800,0.000000,0.000000,0.250000,0,0);}
.m9e_c00295{transform:matrix(0.111370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111370,0.000000,0.000000,0.250000,0,0);}
.m183_c00295{transform:matrix(0.111495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111495,0.000000,0.000000,0.250000,0,0);}
.ma_c00295{transform:matrix(0.112500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112500,0.000000,0.000000,0.250000,0,0);}
.mf6_c00295{transform:matrix(0.114235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114235,0.000000,0.000000,0.250000,0,0);}
.mf_c00295{transform:matrix(0.114485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114485,0.000000,0.000000,0.250000,0,0);}
.m4_c00295{transform:matrix(0.114730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114730,0.000000,0.000000,0.250000,0,0);}
.m48_c00295{transform:matrix(0.115825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115825,0.000000,0.000000,0.250000,0,0);}
.md2_c00295{transform:matrix(0.117045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117045,0.000000,0.000000,0.250000,0,0);}
.m57_c00295{transform:matrix(0.117155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117155,0.000000,0.000000,0.250000,0,0);}
.m21_c00295{transform:matrix(0.119590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119590,0.000000,0.000000,0.250000,0,0);}
.m82_c00295{transform:matrix(0.120935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120935,0.000000,0.000000,0.250000,0,0);}
.m1c_c00295{transform:matrix(0.121685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121685,0.000000,0.000000,0.250000,0,0);}
.mbf_c00295{transform:matrix(0.122215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122215,0.000000,0.000000,0.250000,0,0);}
.m4e_c00295{transform:matrix(0.125780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125780,0.000000,0.000000,0.250000,0,0);}
.mb3_c00295{transform:matrix(0.127280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127280,0.000000,0.000000,0.250000,0,0);}
.md5_c00295{transform:matrix(0.128160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128160,0.000000,0.000000,0.250000,0,0);}
.m148_c00295{transform:matrix(0.128395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128395,0.000000,0.000000,0.250000,0,0);}
.m19_c00295{transform:matrix(0.130980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130980,0.000000,0.000000,0.250000,0,0);}
.m32_c00295{transform:matrix(0.131680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131680,0.000000,0.000000,0.250000,0,0);}
.m6f_c00295{transform:matrix(0.134535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134535,0.000000,0.000000,0.250000,0,0);}
.m160_c00295{transform:matrix(0.135465,-0.001219,0.002250,0.249990,0,0);-ms-transform:matrix(0.135465,-0.001219,0.002250,0.249990,0,0);-webkit-transform:matrix(0.135465,-0.001219,0.002250,0.249990,0,0);}
.m8c_c00295{transform:matrix(0.135470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135470,0.000000,0.000000,0.250000,0,0);}
.mdc_c00295{transform:matrix(0.136015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136015,0.000000,0.000000,0.250000,0,0);}
.m60_c00295{transform:matrix(0.137325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137325,0.000000,0.000000,0.250000,0,0);}
.m81_c00295{transform:matrix(0.138295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138295,0.000000,0.000000,0.250000,0,0);}
.m8f_c00295{transform:matrix(0.139510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139510,0.000000,0.000000,0.250000,0,0);}
.m10c_c00295{transform:matrix(0.143010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143010,0.000000,0.000000,0.250000,0,0);}
.m8e_c00295{transform:matrix(0.143190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143190,0.000000,0.000000,0.250000,0,0);}
.m75_c00295{transform:matrix(0.146680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146680,0.000000,0.000000,0.250000,0,0);}
.md0_c00295{transform:matrix(0.148490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148490,0.000000,0.000000,0.250000,0,0);}
.m18_c00295{transform:matrix(0.148870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148870,0.000000,0.000000,0.250000,0,0);}
.mb8_c00295{transform:matrix(0.149435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149435,0.000000,0.000000,0.250000,0,0);}
.md6_c00295{transform:matrix(0.152315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152315,0.000000,0.000000,0.250000,0,0);}
.me3_c00295{transform:matrix(0.152970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152970,0.000000,0.000000,0.250000,0,0);}
.m9_c00295{transform:matrix(0.153015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153015,0.000000,0.000000,0.250000,0,0);}
.m4f_c00295{transform:matrix(0.154435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154435,0.000000,0.000000,0.250000,0,0);}
.m39_c00295{transform:matrix(0.155580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155580,0.000000,0.000000,0.250000,0,0);}
.m27_c00295{transform:matrix(0.156290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156290,0.000000,0.000000,0.250000,0,0);}
.m65_c00295{transform:matrix(0.158920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158920,0.000000,0.000000,0.250000,0,0);}
.m163_c00295{transform:matrix(0.159889,-0.001439,0.002250,0.249990,0,0);-ms-transform:matrix(0.159889,-0.001439,0.002250,0.249990,0,0);-webkit-transform:matrix(0.159889,-0.001439,0.002250,0.249990,0,0);}
.m181_c00295{transform:matrix(0.161238,-0.001451,0.002250,0.249990,0,0);-ms-transform:matrix(0.161238,-0.001451,0.002250,0.249990,0,0);-webkit-transform:matrix(0.161238,-0.001451,0.002250,0.249990,0,0);}
.m171_c00295{transform:matrix(0.162243,-0.001460,0.002250,0.249990,0,0);-ms-transform:matrix(0.162243,-0.001460,0.002250,0.249990,0,0);-webkit-transform:matrix(0.162243,-0.001460,0.002250,0.249990,0,0);}
.m157_c00295{transform:matrix(0.163778,-0.001474,0.002250,0.249990,0,0);-ms-transform:matrix(0.163778,-0.001474,0.002250,0.249990,0,0);-webkit-transform:matrix(0.163778,-0.001474,0.002250,0.249990,0,0);}
.m102_c00295{transform:matrix(0.166435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166435,0.000000,0.000000,0.250000,0,0);}
.m150_c00295{transform:matrix(0.167238,-0.001505,0.002250,0.249990,0,0);-ms-transform:matrix(0.167238,-0.001505,0.002250,0.249990,0,0);-webkit-transform:matrix(0.167238,-0.001505,0.002250,0.249990,0,0);}
.m6a_c00295{transform:matrix(0.169705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169705,0.000000,0.000000,0.250000,0,0);}
.m10a_c00295{transform:matrix(0.171025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171025,0.000000,0.000000,0.250000,0,0);}
.md3_c00295{transform:matrix(0.172045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172045,0.000000,0.000000,0.250000,0,0);}
.m15f_c00295{transform:matrix(0.175723,-0.001582,0.002250,0.249990,0,0);-ms-transform:matrix(0.175723,-0.001582,0.002250,0.249990,0,0);-webkit-transform:matrix(0.175723,-0.001582,0.002250,0.249990,0,0);}
.m3_c00295{transform:matrix(0.175730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175730,0.000000,0.000000,0.250000,0,0);}
.m4a_c00295{transform:matrix(0.176530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176530,0.000000,0.000000,0.250000,0,0);}
.m12f_c00295{transform:matrix(0.177800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177800,0.000000,0.000000,0.250000,0,0);}
.m36_c00295{transform:matrix(0.177880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177880,0.000000,0.000000,0.250000,0,0);}
.me8_c00295{transform:matrix(0.178045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178045,0.000000,0.000000,0.250000,0,0);}
.m1e_c00295{transform:matrix(0.178275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178275,0.000000,0.000000,0.250000,0,0);}
.m59_c00295{transform:matrix(0.178885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178885,0.000000,0.000000,0.250000,0,0);}
.mc7_c00295{transform:matrix(0.180625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180625,0.000000,0.000000,0.250000,0,0);}
.mc0_c00295{transform:matrix(0.181995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181995,0.000000,0.000000,0.250000,0,0);}
.mf4_c00295{transform:matrix(0.183100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183100,0.000000,0.000000,0.250000,0,0);}
.m158_c00295{transform:matrix(0.185682,-0.001671,0.002250,0.249990,0,0);-ms-transform:matrix(0.185682,-0.001671,0.002250,0.249990,0,0);-webkit-transform:matrix(0.185682,-0.001671,0.002250,0.249990,0,0);}
.m11a_c00295{transform:matrix(0.186220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186220,0.000000,0.000000,0.250000,0,0);}
.m182_c00295{transform:matrix(0.186295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186295,0.000000,0.000000,0.250000,0,0);}
.m68_c00295{transform:matrix(0.187885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187885,0.000000,0.000000,0.250000,0,0);}
.m54_c00295{transform:matrix(0.187950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187950,0.000000,0.000000,0.250000,0,0);}
.m78_c00295{transform:matrix(0.188100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188100,0.000000,0.000000,0.250000,0,0);}
.m17c_c00295{transform:matrix(0.188207,-0.001694,0.002250,0.249990,0,0);-ms-transform:matrix(0.188207,-0.001694,0.002250,0.249990,0,0);-webkit-transform:matrix(0.188207,-0.001694,0.002250,0.249990,0,0);}
.m15e_c00295{transform:matrix(0.190912,-0.001718,0.002250,0.249990,0,0);-ms-transform:matrix(0.190912,-0.001718,0.002250,0.249990,0,0);-webkit-transform:matrix(0.190912,-0.001718,0.002250,0.249990,0,0);}
.mad_c00295{transform:matrix(0.190920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190920,0.000000,0.000000,0.250000,0,0);}
.m44_c00295{transform:matrix(0.191025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191025,0.000000,0.000000,0.250000,0,0);}
.m10_c00295{transform:matrix(0.191215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191215,0.000000,0.000000,0.250000,0,0);}
.m12_c00295{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m10e_c00295{transform:matrix(0.196045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196045,0.000000,0.000000,0.250000,0,0);}
.mba_c00295{transform:matrix(0.199035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199035,0.000000,0.000000,0.250000,0,0);}
.m122_c00295{transform:matrix(0.201245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201245,0.000000,0.000000,0.250000,0,0);}
.m6e_c00295{transform:matrix(0.201805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201805,0.000000,0.000000,0.250000,0,0);}
.mb5_c00295{transform:matrix(0.201945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201945,0.000000,0.000000,0.250000,0,0);}
.m25_c00295{transform:matrix(0.204710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204710,0.000000,0.000000,0.250000,0,0);}
.m14e_c00295{transform:matrix(0.206517,-0.001859,0.002250,0.249990,0,0);-ms-transform:matrix(0.206517,-0.001859,0.002250,0.249990,0,0);-webkit-transform:matrix(0.206517,-0.001859,0.002250,0.249990,0,0);}
.m64_c00295{transform:matrix(0.206830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206830,0.000000,0.000000,0.250000,0,0);}
.m5f_c00295{transform:matrix(0.207440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207440,0.000000,0.000000,0.250000,0,0);}
.me1_c00295{transform:matrix(0.211200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211200,0.000000,0.000000,0.250000,0,0);}
.m72_c00295{transform:matrix(0.213215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213215,0.000000,0.000000,0.250000,0,0);}
.m17_c00295{transform:matrix(0.214765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214765,0.000000,0.000000,0.250000,0,0);}
.m123_c00295{transform:matrix(0.215405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215405,0.000000,0.000000,0.250000,0,0);}
.mfb_c00295{transform:matrix(0.216335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216335,0.000000,0.000000,0.250000,0,0);}
.m13c_c00295{transform:matrix(0.218015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218015,0.000000,0.000000,0.250000,0,0);}
.m161_c00295{transform:matrix(0.219656,-0.001977,0.002250,0.249990,0,0);-ms-transform:matrix(0.219656,-0.001977,0.002250,0.249990,0,0);-webkit-transform:matrix(0.219656,-0.001977,0.002250,0.249990,0,0);}
.m178_c00295{transform:matrix(0.222601,-0.002003,0.002250,0.249990,0,0);-ms-transform:matrix(0.222601,-0.002003,0.002250,0.249990,0,0);-webkit-transform:matrix(0.222601,-0.002003,0.002250,0.249990,0,0);}
.m2b_c00295{transform:matrix(0.223745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223745,0.000000,0.000000,0.250000,0,0);}
.m2d_c00295{transform:matrix(0.224790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224790,0.000000,0.000000,0.250000,0,0);}
.m67_c00295{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m155_c00295{transform:matrix(0.225931,-0.002033,0.002250,0.249990,0,0);-ms-transform:matrix(0.225931,-0.002033,0.002250,0.249990,0,0);-webkit-transform:matrix(0.225931,-0.002033,0.002250,0.249990,0,0);}
.m16b_c00295{transform:matrix(0.226391,-0.002038,0.002250,0.249990,0,0);-ms-transform:matrix(0.226391,-0.002038,0.002250,0.249990,0,0);-webkit-transform:matrix(0.226391,-0.002038,0.002250,0.249990,0,0);}
.mcc_c00295{transform:matrix(0.228255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228255,0.000000,0.000000,0.250000,0,0);}
.m109_c00295{transform:matrix(0.231835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231835,0.000000,0.000000,0.250000,0,0);}
.md_c00295{transform:matrix(0.234095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234095,0.000000,0.000000,0.250000,0,0);}
.m8d_c00295{transform:matrix(0.234425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234425,0.000000,0.000000,0.250000,0,0);}
.m184_c00295{transform:matrix(0.235055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235055,0.000000,0.000000,0.250000,0,0);}
.m14a_c00295{transform:matrix(0.236510,-0.002129,0.002250,0.249990,0,0);-ms-transform:matrix(0.236510,-0.002129,0.002250,0.249990,0,0);-webkit-transform:matrix(0.236510,-0.002129,0.002250,0.249990,0,0);}
.m84_c00295{transform:matrix(0.237170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237170,0.000000,0.000000,0.250000,0,0);}
.m8b_c00295{transform:matrix(0.239650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239650,0.000000,0.000000,0.250000,0,0);}
.m7_c00295{transform:matrix(0.241520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241520,0.000000,0.000000,0.250000,0,0);}
.mfd_c00295{transform:matrix(0.241870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241870,0.000000,0.000000,0.250000,0,0);}
.me9_c00295{transform:matrix(0.242330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242330,0.000000,0.000000,0.250000,0,0);}
.m80_c00295{transform:matrix(0.242855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242855,0.000000,0.000000,0.250000,0,0);}
.m34_c00295{transform:matrix(0.243665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243665,0.000000,0.000000,0.250000,0,0);}
.m147_c00295{transform:matrix(0.245675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245675,0.000000,0.000000,0.250000,0,0);}
.mbe_c00295{transform:matrix(0.246390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246390,0.000000,0.000000,0.250000,0,0);}
.m46_c00295{transform:matrix(0.246705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246705,0.000000,0.000000,0.250000,0,0);}
.ma1_c00295{transform:matrix(0.249650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249650,0.000000,0.000000,0.250000,0,0);}
.m87_c00295{transform:matrix(0.252810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252810,0.000000,0.000000,0.250000,0,0);}
.m6b_c00295{transform:matrix(0.252980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252980,0.000000,0.000000,0.250000,0,0);}
.mc6_c00295{transform:matrix(0.254560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254560,0.000000,0.000000,0.250000,0,0);}
.m135_c00295{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m2_c00295{transform:matrix(0.256540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256540,0.000000,0.000000,0.250000,0,0);}
.m63_c00295{transform:matrix(0.257030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257030,0.000000,0.000000,0.250000,0,0);}
.m124_c00295{transform:matrix(0.259615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259615,0.000000,0.000000,0.250000,0,0);}
.m71_c00295{transform:matrix(0.261965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261965,0.000000,0.000000,0.250000,0,0);}
.m8_c00295{transform:matrix(0.262930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262930,0.000000,0.000000,0.250000,0,0);}
.m6c_c00295{transform:matrix(0.264010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264010,0.000000,0.000000,0.250000,0,0);}
.ma9_c00295{transform:matrix(0.265375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265375,0.000000,0.000000,0.250000,0,0);}
.m9a_c00295{transform:matrix(0.265800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265800,0.000000,0.000000,0.250000,0,0);}
.m15a_c00295{transform:matrix(0.265999,-0.002394,0.002250,0.249990,0,0);-ms-transform:matrix(0.265999,-0.002394,0.002250,0.249990,0,0);-webkit-transform:matrix(0.265999,-0.002394,0.002250,0.249990,0,0);}
.mcf_c00295{transform:matrix(0.266835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266835,0.000000,0.000000,0.250000,0,0);}
.m151_c00295{transform:matrix(0.268319,-0.002415,0.002250,0.249990,0,0);-ms-transform:matrix(0.268319,-0.002415,0.002250,0.249990,0,0);-webkit-transform:matrix(0.268319,-0.002415,0.002250,0.249990,0,0);}
.m137_c00295{transform:matrix(0.270415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270415,0.000000,0.000000,0.250000,0,0);}
.m10f_c00295{transform:matrix(0.271330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271330,0.000000,0.000000,0.250000,0,0);}
.mc5_c00295{transform:matrix(0.271870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271870,0.000000,0.000000,0.250000,0,0);}
.mde_c00295{transform:matrix(0.277015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277015,0.000000,0.000000,0.250000,0,0);}
.m5_c00295{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m14f_c00295{transform:matrix(0.278524,-0.002507,0.002250,0.249990,0,0);-ms-transform:matrix(0.278524,-0.002507,0.002250,0.249990,0,0);-webkit-transform:matrix(0.278524,-0.002507,0.002250,0.249990,0,0);}
.m88_c00295{transform:matrix(0.280020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280020,0.000000,0.000000,0.250000,0,0);}
.m37_c00295{transform:matrix(0.282425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282425,0.000000,0.000000,0.250000,0,0);}
.mf2_c00295{transform:matrix(0.283195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283195,0.000000,0.000000,0.250000,0,0);}
.m5e_c00295{transform:matrix(0.285590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285590,0.000000,0.000000,0.250000,0,0);}
.md1_c00295{transform:matrix(0.286530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286530,0.000000,0.000000,0.250000,0,0);}
.m6_c00295{transform:matrix(0.288140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288140,0.000000,0.000000,0.250000,0,0);}
.m9d_c00295{transform:matrix(0.289505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289505,0.000000,0.000000,0.250000,0,0);}
.mb7_c00295{transform:matrix(0.291245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291245,0.000000,0.000000,0.250000,0,0);}
.m69_c00295{transform:matrix(0.295465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295465,0.000000,0.000000,0.250000,0,0);}
.mab_c00295{transform:matrix(0.297175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297175,0.000000,0.000000,0.250000,0,0);}
.m62_c00295{transform:matrix(0.298590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298590,0.000000,0.000000,0.250000,0,0);}
.m101_c00295{transform:matrix(0.301960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301960,0.000000,0.000000,0.250000,0,0);}
.m24_c00295{transform:matrix(0.304560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304560,0.000000,0.000000,0.250000,0,0);}
.m140_c00295{transform:matrix(0.308320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308320,0.000000,0.000000,0.250000,0,0);}
.mec_c00295{transform:matrix(0.310775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310775,0.000000,0.000000,0.250000,0,0);}
.m186_c00295{transform:matrix(0.319090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319090,0.000000,0.000000,0.250000,0,0);}
.m13d_c00295{transform:matrix(0.320180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320180,0.000000,0.000000,0.250000,0,0);}
.m30_c00295{transform:matrix(0.322395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322395,0.000000,0.000000,0.250000,0,0);}
.m3b_c00295{transform:matrix(0.324695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324695,0.000000,0.000000,0.250000,0,0);}
.maf_c00295{transform:matrix(0.325575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325575,0.000000,0.000000,0.250000,0,0);}
.m117_c00295{transform:matrix(0.325970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325970,0.000000,0.000000,0.250000,0,0);}
.m26_c00295{transform:matrix(0.328570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328570,0.000000,0.000000,0.250000,0,0);}
.m11b_c00295{transform:matrix(0.330155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330155,0.000000,0.000000,0.250000,0,0);}
.m112_c00295{transform:matrix(0.332210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332210,0.000000,0.000000,0.250000,0,0);}
.m9c_c00295{transform:matrix(0.334150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334150,0.000000,0.000000,0.250000,0,0);}
.m49_c00295{transform:matrix(0.336835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336835,0.000000,0.000000,0.250000,0,0);}
.m14d_c00295{transform:matrix(0.342141,-0.003079,0.002250,0.249990,0,0);-ms-transform:matrix(0.342141,-0.003079,0.002250,0.249990,0,0);-webkit-transform:matrix(0.342141,-0.003079,0.002250,0.249990,0,0);}
.m94_c00295{transform:matrix(0.342710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342710,0.000000,0.000000,0.250000,0,0);}
.m100_c00295{transform:matrix(0.347850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347850,0.000000,0.000000,0.250000,0,0);}
.mf3_c00295{transform:matrix(0.348970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348970,0.000000,0.000000,0.250000,0,0);}
.m38_c00295{transform:matrix(0.353255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353255,0.000000,0.000000,0.250000,0,0);}
.m7d_c00295{transform:matrix(0.355220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355220,0.000000,0.000000,0.250000,0,0);}
.m4b_c00295{transform:matrix(0.355755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355755,0.000000,0.000000,0.250000,0,0);}
.m168_c00295{transform:matrix(0.356881,-0.003212,0.002250,0.249990,0,0);-ms-transform:matrix(0.356881,-0.003212,0.002250,0.249990,0,0);-webkit-transform:matrix(0.356881,-0.003212,0.002250,0.249990,0,0);}
.m95_c00295{transform:matrix(0.360625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360625,0.000000,0.000000,0.250000,0,0);}
.m9f_c00295{transform:matrix(0.361250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361250,0.000000,0.000000,0.250000,0,0);}
.ma7_c00295{transform:matrix(0.366275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366275,0.000000,0.000000,0.250000,0,0);}
.mb1_c00295{transform:matrix(0.368950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368950,0.000000,0.000000,0.250000,0,0);}
.mf0_c00295{transform:matrix(0.372440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372440,0.000000,0.000000,0.250000,0,0);}
.m10d_c00295{transform:matrix(0.373310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373310,0.000000,0.000000,0.250000,0,0);}
.m17d_c00295{transform:matrix(0.376415,-0.003388,0.002250,0.249990,0,0);-ms-transform:matrix(0.376415,-0.003388,0.002250,0.249990,0,0);-webkit-transform:matrix(0.376415,-0.003388,0.002250,0.249990,0,0);}
.m145_c00295{transform:matrix(0.380260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380260,0.000000,0.000000,0.250000,0,0);}
.m66_c00295{transform:matrix(0.380790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380790,0.000000,0.000000,0.250000,0,0);}
.m42_c00295{transform:matrix(0.381025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381025,0.000000,0.000000,0.250000,0,0);}
.m7b_c00295{transform:matrix(0.382665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382665,0.000000,0.000000,0.250000,0,0);}
.mff_c00295{transform:matrix(0.385650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385650,0.000000,0.000000,0.250000,0,0);}
.mb2_c00295{transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);}
.m56_c00295{transform:matrix(0.391150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391150,0.000000,0.000000,0.250000,0,0);}
.ma3_c00295{transform:matrix(0.391735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391735,0.000000,0.000000,0.250000,0,0);}
.m118_c00295{transform:matrix(0.392945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392945,0.000000,0.000000,0.250000,0,0);}
.meb_c00295{transform:matrix(0.394590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394590,0.000000,0.000000,0.250000,0,0);}
.maa_c00295{transform:matrix(0.396010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396010,0.000000,0.000000,0.250000,0,0);}
.m131_c00295{transform:matrix(0.400250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400250,0.000000,0.000000,0.250000,0,0);}
.m12a_c00295{transform:matrix(0.401620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401620,0.000000,0.000000,0.250000,0,0);}
.ma8_c00295{transform:matrix(0.403280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403280,0.000000,0.000000,0.250000,0,0);}
.m9b_c00295{transform:matrix(0.403905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403905,0.000000,0.000000,0.250000,0,0);}
.m74_c00295{transform:matrix(0.404515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404515,0.000000,0.000000,0.250000,0,0);}
.m128_c00295{transform:matrix(0.411825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411825,0.000000,0.000000,0.250000,0,0);}
.md7_c00295{transform:matrix(0.412310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412310,0.000000,0.000000,0.250000,0,0);}
.m8a_c00295{transform:matrix(0.413695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413695,0.000000,0.000000,0.250000,0,0);}
.m45_c00295{transform:matrix(0.417850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417850,0.000000,0.000000,0.250000,0,0);}
.m79_c00295{transform:matrix(0.417985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417985,0.000000,0.000000,0.250000,0,0);}
.m15_c00295{transform:matrix(0.424270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424270,0.000000,0.000000,0.250000,0,0);}
.m134_c00295{transform:matrix(0.424530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424530,0.000000,0.000000,0.250000,0,0);}
.m12e_c00295{transform:matrix(0.429535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429535,0.000000,0.000000,0.250000,0,0);}
.m165_c00295{transform:matrix(0.429563,-0.003866,0.002250,0.249990,0,0);-ms-transform:matrix(0.429563,-0.003866,0.002250,0.249990,0,0);-webkit-transform:matrix(0.429563,-0.003866,0.002250,0.249990,0,0);}
.m41_c00295{transform:matrix(0.431690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431690,0.000000,0.000000,0.250000,0,0);}
.m4d_c00295{transform:matrix(0.432795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432795,0.000000,0.000000,0.250000,0,0);}
.m141_c00295{transform:matrix(0.433245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433245,0.000000,0.000000,0.250000,0,0);}
.m3c_c00295{transform:matrix(0.434695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434695,0.000000,0.000000,0.250000,0,0);}
.m12c_c00295{transform:matrix(0.436805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436805,0.000000,0.000000,0.250000,0,0);}
.me6_c00295{transform:matrix(0.440205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440205,0.000000,0.000000,0.250000,0,0);}
.ma4_c00295{transform:matrix(0.450625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450625,0.000000,0.000000,0.250000,0,0);}
.mac_c00295{transform:matrix(0.451220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451220,0.000000,0.000000,0.250000,0,0);}
.ma5_c00295{transform:matrix(0.452525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452525,0.000000,0.000000,0.250000,0,0);}
.mbd_c00295{transform:matrix(0.454570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.454570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.454570,0.000000,0.000000,0.250000,0,0);}
.m33_c00295{transform:matrix(0.457840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457840,0.000000,0.000000,0.250000,0,0);}
.m136_c00295{transform:matrix(0.460440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460440,0.000000,0.000000,0.250000,0,0);}
.mca_c00295{transform:matrix(0.460975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460975,0.000000,0.000000,0.250000,0,0);}
.m152_c00295{transform:matrix(0.463831,-0.004174,0.002250,0.249990,0,0);-ms-transform:matrix(0.463831,-0.004174,0.002250,0.249990,0,0);-webkit-transform:matrix(0.463831,-0.004174,0.002250,0.249990,0,0);}
.m103_c00295{transform:matrix(0.473630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.473630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.473630,0.000000,0.000000,0.250000,0,0);}
.m89_c00295{transform:matrix(0.483225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483225,0.000000,0.000000,0.250000,0,0);}
.m13b_c00295{transform:matrix(0.484435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484435,0.000000,0.000000,0.250000,0,0);}
.mf1_c00295{transform:matrix(0.484665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484665,0.000000,0.000000,0.250000,0,0);}
.m164_c00295{transform:matrix(0.489225,-0.004403,0.002250,0.249990,0,0);-ms-transform:matrix(0.489225,-0.004403,0.002250,0.249990,0,0);-webkit-transform:matrix(0.489225,-0.004403,0.002250,0.249990,0,0);}
.m159_c00295{transform:matrix(0.491535,-0.004424,0.002250,0.249990,0,0);-ms-transform:matrix(0.491535,-0.004424,0.002250,0.249990,0,0);-webkit-transform:matrix(0.491535,-0.004424,0.002250,0.249990,0,0);}
.mc9_c00295{transform:matrix(0.495225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495225,0.000000,0.000000,0.250000,0,0);}
.m23_c00295{transform:matrix(0.498850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.498850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.498850,0.000000,0.000000,0.250000,0,0);}
.m61_c00295{transform:matrix(0.500310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.500310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.500310,0.000000,0.000000,0.250000,0,0);}
.me0_c00295{transform:matrix(0.502195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502195,0.000000,0.000000,0.250000,0,0);}
.md8_c00295{transform:matrix(0.502890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502890,0.000000,0.000000,0.250000,0,0);}
.m110_c00295{transform:matrix(0.503395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.503395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.503395,0.000000,0.000000,0.250000,0,0);}
.m173_c00295{transform:matrix(0.509979,-0.004590,0.002250,0.249990,0,0);-ms-transform:matrix(0.509979,-0.004590,0.002250,0.249990,0,0);-webkit-transform:matrix(0.509979,-0.004590,0.002250,0.249990,0,0);}
.mf8_c00295{transform:matrix(0.512310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512310,0.000000,0.000000,0.250000,0,0);}
.m90_c00295{transform:matrix(0.514500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514500,0.000000,0.000000,0.250000,0,0);}
.mfe_c00295{transform:matrix(0.516140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516140,0.000000,0.000000,0.250000,0,0);}
.m11d_c00295{transform:matrix(0.516625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516625,0.000000,0.000000,0.250000,0,0);}
.m111_c00295{transform:matrix(0.519235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519235,0.000000,0.000000,0.250000,0,0);}
.mea_c00295{transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519710,0.000000,0.000000,0.250000,0,0);}
.m4c_c00295{transform:matrix(0.520965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520965,0.000000,0.000000,0.250000,0,0);}
.m14b_c00295{transform:matrix(0.523314,-0.004710,0.002250,0.249990,0,0);-ms-transform:matrix(0.523314,-0.004710,0.002250,0.249990,0,0);-webkit-transform:matrix(0.523314,-0.004710,0.002250,0.249990,0,0);}
.m22_c00295{transform:matrix(0.523460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523460,0.000000,0.000000,0.250000,0,0);}
.m129_c00295{transform:matrix(0.525695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525695,0.000000,0.000000,0.250000,0,0);}
.m126_c00295{transform:matrix(0.527565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527565,0.000000,0.000000,0.250000,0,0);}
.m121_c00295{transform:matrix(0.531600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531600,0.000000,0.000000,0.250000,0,0);}
.m16f_c00295{transform:matrix(0.535158,-0.004816,0.002250,0.249990,0,0);-ms-transform:matrix(0.535158,-0.004816,0.002250,0.249990,0,0);-webkit-transform:matrix(0.535158,-0.004816,0.002250,0.249990,0,0);}
.mae_c00295{transform:matrix(0.537075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537075,0.000000,0.000000,0.250000,0,0);}
.m107_c00295{transform:matrix(0.540835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540835,0.000000,0.000000,0.250000,0,0);}
.mb4_c00295{transform:matrix(0.543735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543735,0.000000,0.000000,0.250000,0,0);}
.m113_c00295{transform:matrix(0.547450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547450,0.000000,0.000000,0.250000,0,0);}
.m6d_c00295{transform:matrix(0.548180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548180,0.000000,0.000000,0.250000,0,0);}
.m3e_c00295{transform:matrix(0.548605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548605,0.000000,0.000000,0.250000,0,0);}
.m96_c00295{transform:matrix(0.556620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556620,0.000000,0.000000,0.250000,0,0);}
.m105_c00295{transform:matrix(0.558030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558030,0.000000,0.000000,0.250000,0,0);}
.mb0_c00295{transform:matrix(0.558235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558235,0.000000,0.000000,0.250000,0,0);}
.m11f_c00295{transform:matrix(0.562940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562940,0.000000,0.000000,0.250000,0,0);}
.ma6_c00295{transform:matrix(0.566995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566995,0.000000,0.000000,0.250000,0,0);}
.m52_c00295{transform:matrix(0.568860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568860,0.000000,0.000000,0.250000,0,0);}
.m172_c00295{transform:matrix(0.569187,-0.005123,0.002250,0.249990,0,0);-ms-transform:matrix(0.569187,-0.005123,0.002250,0.249990,0,0);-webkit-transform:matrix(0.569187,-0.005123,0.002250,0.249990,0,0);}
.m77_c00295{transform:matrix(0.575980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575980,0.000000,0.000000,0.250000,0,0);}
.m2e_c00295{transform:matrix(0.590275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590275,0.000000,0.000000,0.250000,0,0);}
.m185_c00295{transform:matrix(0.591865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591865,0.000000,0.000000,0.250000,0,0);}
.m176_c00295{transform:matrix(0.597581,-0.005378,0.002250,0.249990,0,0);-ms-transform:matrix(0.597581,-0.005378,0.002250,0.249990,0,0);-webkit-transform:matrix(0.597581,-0.005378,0.002250,0.249990,0,0);}
.mdf_c00295{transform:matrix(0.603785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.603785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.603785,0.000000,0.000000,0.250000,0,0);}
.m1_c00295{transform:matrix(0.603925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.603925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.603925,0.000000,0.000000,0.250000,0,0);}
.m13f_c00295{transform:matrix(0.609585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609585,0.000000,0.000000,0.250000,0,0);}
.me4_c00295{transform:matrix(0.611340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.611340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.611340,0.000000,0.000000,0.250000,0,0);}
.m28_c00295{transform:matrix(0.615470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615470,0.000000,0.000000,0.250000,0,0);}
.m12b_c00295{transform:matrix(0.618465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.618465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.618465,0.000000,0.000000,0.250000,0,0);}
.mc8_c00295{transform:matrix(0.626420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.626420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.626420,0.000000,0.000000,0.250000,0,0);}
.m97_c00295{transform:matrix(0.626600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.626600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.626600,0.000000,0.000000,0.250000,0,0);}
.m119_c00295{transform:matrix(0.630090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630090,0.000000,0.000000,0.250000,0,0);}
.mc2_c00295{transform:matrix(0.631295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.631295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.631295,0.000000,0.000000,0.250000,0,0);}
.ma2_c00295{transform:matrix(0.632130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632130,0.000000,0.000000,0.250000,0,0);}
.mc1_c00295{transform:matrix(0.633405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.633405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.633405,0.000000,0.000000,0.250000,0,0);}
.mb6_c00295{transform:matrix(0.634450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634450,0.000000,0.000000,0.250000,0,0);}
.m3f_c00295{transform:matrix(0.636970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636970,0.000000,0.000000,0.250000,0,0);}
.m175_c00295{transform:matrix(0.637254,-0.005735,0.002250,0.249990,0,0);-ms-transform:matrix(0.637254,-0.005735,0.002250,0.249990,0,0);-webkit-transform:matrix(0.637254,-0.005735,0.002250,0.249990,0,0);}
.m130_c00295{transform:matrix(0.653490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.653490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.653490,0.000000,0.000000,0.250000,0,0);}
.m76_c00295{transform:matrix(0.655980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.655980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.655980,0.000000,0.000000,0.250000,0,0);}
.m31_c00295{transform:matrix(0.657235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.657235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.657235,0.000000,0.000000,0.250000,0,0);}
.m1d_c00295{transform:matrix(0.657715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.657715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.657715,0.000000,0.000000,0.250000,0,0);}
.md9_c00295{transform:matrix(0.662210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662210,0.000000,0.000000,0.250000,0,0);}
.m10b_c00295{transform:matrix(0.667945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667945,0.000000,0.000000,0.250000,0,0);}
.m146_c00295{transform:matrix(0.669520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.669520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.669520,0.000000,0.000000,0.250000,0,0);}
.mcd_c00295{transform:matrix(0.675425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.675425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.675425,0.000000,0.000000,0.250000,0,0);}
.m16e_c00295{transform:matrix(0.678298,-0.006105,0.002250,0.249990,0,0);-ms-transform:matrix(0.678298,-0.006105,0.002250,0.249990,0,0);-webkit-transform:matrix(0.678298,-0.006105,0.002250,0.249990,0,0);}
.me5_c00295{transform:matrix(0.683200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.683200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.683200,0.000000,0.000000,0.250000,0,0);}
.m7c_c00295{transform:matrix(0.703280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.703280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.703280,0.000000,0.000000,0.250000,0,0);}
.m47_c00295{transform:matrix(0.729170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.729170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.729170,0.000000,0.000000,0.250000,0,0);}
.m99_c00295{transform:matrix(0.739795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.739795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.739795,0.000000,0.000000,0.250000,0,0);}
.m98_c00295{transform:matrix(0.742160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.742160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.742160,0.000000,0.000000,0.250000,0,0);}
.m29_c00295{transform:matrix(0.743605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.743605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.743605,0.000000,0.000000,0.250000,0,0);}
.m73_c00295{transform:matrix(0.745560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.745560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.745560,0.000000,0.000000,0.250000,0,0);}
.m169_c00295{transform:matrix(0.748920,-0.006740,0.002250,0.249990,0,0);-ms-transform:matrix(0.748920,-0.006740,0.002250,0.249990,0,0);-webkit-transform:matrix(0.748920,-0.006740,0.002250,0.249990,0,0);}
.m2a_c00295{transform:matrix(0.756755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.756755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.756755,0.000000,0.000000,0.250000,0,0);}
.mfa_c00295{transform:matrix(0.766940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.766940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.766940,0.000000,0.000000,0.250000,0,0);}
.m1b_c00295{transform:matrix(0.780235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.780235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.780235,0.000000,0.000000,0.250000,0,0);}
.mcb_c00295{transform:matrix(0.782590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.782590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.782590,0.000000,0.000000,0.250000,0,0);}
.m142_c00295{transform:matrix(0.788390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.788390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.788390,0.000000,0.000000,0.250000,0,0);}
.me_c00295{transform:matrix(0.792625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.792625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.792625,0.000000,0.000000,0.250000,0,0);}
.mf9_c00295{transform:matrix(0.796240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.796240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.796240,0.000000,0.000000,0.250000,0,0);}
.m106_c00295{transform:matrix(0.801905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.801905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.801905,0.000000,0.000000,0.250000,0,0);}
.m55_c00295{transform:matrix(0.803245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.803245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.803245,0.000000,0.000000,0.250000,0,0);}
.m12d_c00295{transform:matrix(0.805045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.805045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.805045,0.000000,0.000000,0.250000,0,0);}
.mef_c00295{transform:matrix(0.813120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.813120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.813120,0.000000,0.000000,0.250000,0,0);}
.mf7_c00295{transform:matrix(0.818565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.818565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.818565,0.000000,0.000000,0.250000,0,0);}
.mc3_c00295{transform:matrix(0.829760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.829760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.829760,0.000000,0.000000,0.250000,0,0);}
.m15b_c00295{transform:matrix(0.861975,-0.007758,0.002250,0.249990,0,0);-ms-transform:matrix(0.861975,-0.007758,0.002250,0.249990,0,0);-webkit-transform:matrix(0.861975,-0.007758,0.002250,0.249990,0,0);}
.m17e_c00295{transform:matrix(0.875650,-0.007881,0.002250,0.249990,0,0);-ms-transform:matrix(0.875650,-0.007881,0.002250,0.249990,0,0);-webkit-transform:matrix(0.875650,-0.007881,0.002250,0.249990,0,0);}
.mda_c00295{transform:matrix(0.875730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.875730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.875730,0.000000,0.000000,0.250000,0,0);}
.m2c_c00295{transform:matrix(0.941915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.941915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.941915,0.000000,0.000000,0.250000,0,0);}
.m43_c00295{transform:matrix(0.948270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.948270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.948270,0.000000,0.000000,0.250000,0,0);}
.m125_c00295{transform:matrix(0.950815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.950815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.950815,0.000000,0.000000,0.250000,0,0);}
.mfc_c00295{transform:matrix(0.953415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.953415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.953415,0.000000,0.000000,0.250000,0,0);}
.mf5_c00295{transform:matrix(0.960260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.960260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.960260,0.000000,0.000000,0.250000,0,0);}
.m143_c00295{transform:matrix(0.977210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.977210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.977210,0.000000,0.000000,0.250000,0,0);}
.med_c00295{transform:matrix(1.020470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.020470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.020470,0.000000,0.000000,0.250000,0,0);}
.m120_c00295{transform:matrix(1.027035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.027035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.027035,0.000000,0.000000,0.250000,0,0);}
.mc4_c00295{transform:matrix(1.027090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.027090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.027090,0.000000,0.000000,0.250000,0,0);}
.m11e_c00295{transform:matrix(1.033260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.033260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.033260,0.000000,0.000000,0.250000,0,0);}
.m127_c00295{transform:matrix(1.109695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.109695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.109695,0.000000,0.000000,0.250000,0,0);}
.m167_c00295{transform:matrix(1.110520,-0.009995,0.002250,0.249990,0,0);-ms-transform:matrix(1.110520,-0.009995,0.002250,0.249990,0,0);-webkit-transform:matrix(1.110520,-0.009995,0.002250,0.249990,0,0);}
.mbb_c00295{transform:matrix(1.128595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.128595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.128595,0.000000,0.000000,0.250000,0,0);}
.m13e_c00295{transform:matrix(1.180555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.180555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.180555,0.000000,0.000000,0.250000,0,0);}
.m40_c00295{transform:matrix(1.185580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.185580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.185580,0.000000,0.000000,0.250000,0,0);}
.m5b_c00295{transform:matrix(1.243670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.243670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.243670,0.000000,0.000000,0.250000,0,0);}
.m5c_c00295{transform:matrix(1.307605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.307605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.307605,0.000000,0.000000,0.250000,0,0);}
.m93_c00295{transform:matrix(1.358310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.358310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.358310,0.000000,0.000000,0.250000,0,0);}
.m108_c00295{transform:matrix(1.425555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.425555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.425555,0.000000,0.000000,0.250000,0,0);}
.mee_c00295{transform:matrix(1.457470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.457470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.457470,0.000000,0.000000,0.250000,0,0);}
.m16d_c00295{transform:matrix(1.473990,-0.013266,0.002250,0.249990,0,0);-ms-transform:matrix(1.473990,-0.013266,0.002250,0.249990,0,0);-webkit-transform:matrix(1.473990,-0.013266,0.002250,0.249990,0,0);}
.m16c_c00295{transform:matrix(1.483235,-0.013349,0.002250,0.249990,0,0);-ms-transform:matrix(1.483235,-0.013349,0.002250,0.249990,0,0);-webkit-transform:matrix(1.483235,-0.013349,0.002250,0.249990,0,0);}
.m138_c00295{transform:matrix(1.502330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.502330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.502330,0.000000,0.000000,0.250000,0,0);}
.m174_c00295{transform:matrix(1.844925,-0.016604,0.002250,0.249990,0,0);-ms-transform:matrix(1.844925,-0.016604,0.002250,0.249990,0,0);-webkit-transform:matrix(1.844925,-0.016604,0.002250,0.249990,0,0);}
.mdb_c00295{transform:matrix(1.853760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.853760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.853760,0.000000,0.000000,0.250000,0,0);}
.mbc_c00295{transform:matrix(1.869160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.869160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.869160,0.000000,0.000000,0.250000,0,0);}
.m92_c00295{transform:matrix(2.214430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.214430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.214430,0.000000,0.000000,0.250000,0,0);}
.m5a_c00295{transform:matrix(2.221070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.221070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.221070,0.000000,0.000000,0.250000,0,0);}
.m104_c00295{transform:matrix(2.263845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.263845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.263845,0.000000,0.000000,0.250000,0,0);}
.m170_c00295{transform:matrix(2.271853,-0.020447,0.002250,0.249990,0,0);-ms-transform:matrix(2.271853,-0.020447,0.002250,0.249990,0,0);-webkit-transform:matrix(2.271853,-0.020447,0.002250,0.249990,0,0);}
.m91_c00295{transform:matrix(2.448450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.448450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.448450,0.000000,0.000000,0.250000,0,0);}
.m133_c00295{transform:matrix(3.565240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.565240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.565240,0.000000,0.000000,0.250000,0,0);}
.m149_c00295{transform:matrix(5.544830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.544830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.544830,0.000000,0.000000,0.250000,0,0);}
.v0_c00295{vertical-align:0.000000px;}
.ls0_c00295{letter-spacing:0.000000px;}
.sc__c00295{text-shadow:none;}
.sc0_c00295{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__c00295{-webkit-text-stroke:0px transparent;}
.sc0_c00295{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00295{word-spacing:0.000000px;}
._2_c00295{margin-left:-12.598615px;}
._1_c00295{width:111.059793px;}
._0_c00295{width:2618.751479px;}
._3_c00295{width:2667.273413px;}
.fc0_c00295{color:transparent;}
.fs1_c00295{font-size:12.000000px;}
.fs9_c00295{font-size:12.000486px;}
.fs2_c00295{font-size:18.000000px;}
.fs0_c00295{font-size:24.000000px;}
.fs7_c00295{font-size:24.000972px;}
.fs5_c00295{font-size:30.000000px;}
.fs8_c00295{font-size:36.001458px;}
.fs6_c00295{font-size:42.000000px;}
.fs4_c00295{font-size:48.000000px;}
.fs3_c00295{font-size:66.000000px;}
.y0_c00295{bottom:0.000000px;}
.ya9_c00295{bottom:240.840000px;}
.ya8_c00295{bottom:247.825500px;}
.y9e_c00295{bottom:262.481891px;}
.ya7_c00295{bottom:262.482095px;}
.y9f_c00295{bottom:262.482347px;}
.ya1_c00295{bottom:262.482560px;}
.ya6_c00295{bottom:262.482708px;}
.ya0_c00295{bottom:262.482753px;}
.ya3_c00295{bottom:262.482909px;}
.ya2_c00295{bottom:262.482953px;}
.ya5_c00295{bottom:262.483215px;}
.ya4_c00295{bottom:262.483316px;}
.y92_c00295{bottom:266.488002px;}
.y93_c00295{bottom:268.263750px;}
.y94_c00295{bottom:268.760040px;}
.y95_c00295{bottom:268.922054px;}
.y96_c00295{bottom:269.122227px;}
.y97_c00295{bottom:270.320787px;}
.y98_c00295{bottom:270.472808px;}
.y99_c00295{bottom:270.864310px;}
.y9a_c00295{bottom:270.990689px;}
.y9b_c00295{bottom:271.415964px;}
.y9c_c00295{bottom:271.531944px;}
.y8f_c00295{bottom:272.774603px;}
.y90_c00295{bottom:272.774698px;}
.y91_c00295{bottom:272.775015px;}
.y8e_c00295{bottom:272.775036px;}
.y8d_c00295{bottom:272.775140px;}
.y8c_c00295{bottom:272.775677px;}
.y8b_c00295{bottom:272.776004px;}
.y82_c00295{bottom:272.776022px;}
.y8a_c00295{bottom:272.776467px;}
.y87_c00295{bottom:272.776508px;}
.y83_c00295{bottom:272.776652px;}
.y85_c00295{bottom:272.776668px;}
.y89_c00295{bottom:272.776751px;}
.y88_c00295{bottom:272.776824px;}
.y86_c00295{bottom:272.777165px;}
.y84_c00295{bottom:272.777282px;}
.y9d_c00295{bottom:273.027429px;}
.y80_c00295{bottom:279.199539px;}
.y7c_c00295{bottom:279.199574px;}
.y7b_c00295{bottom:279.199677px;}
.y79_c00295{bottom:279.199794px;}
.y7d_c00295{bottom:279.199877px;}
.y7f_c00295{bottom:279.199970px;}
.y81_c00295{bottom:279.200126px;}
.y7e_c00295{bottom:279.200223px;}
.y7a_c00295{bottom:279.200261px;}
.y6e_c00295{bottom:281.070000px;}
.y6f_c00295{bottom:281.167281px;}
.y70_c00295{bottom:281.461082px;}
.y71_c00295{bottom:281.565828px;}
.y72_c00295{bottom:281.759985px;}
.y73_c00295{bottom:281.842821px;}
.y74_c00295{bottom:282.647124px;}
.y75_c00295{bottom:282.844116px;}
.y76_c00295{bottom:283.441680px;}
.y77_c00295{bottom:283.667481px;}
.y78_c00295{bottom:284.695412px;}
.y6d_c00295{bottom:301.066500px;}
.y6c_c00295{bottom:306.463500px;}
.y6b_c00295{bottom:309.693000px;}
.y6a_c00295{bottom:460.923000px;}
.y69_c00295{bottom:467.079000px;}
.y68_c00295{bottom:471.420000px;}
.y67_c00295{bottom:492.234000px;}
.y66_c00295{bottom:497.610000px;}
.y65_c00295{bottom:525.292500px;}
.y64_c00295{bottom:530.536500px;}
.y63_c00295{bottom:533.383500px;}
.y62_c00295{bottom:539.590500px;}
.y61_c00295{bottom:550.300500px;}
.y60_c00295{bottom:555.175500px;}
.y5f_c00295{bottom:559.725000px;}
.y5e_c00295{bottom:587.392500px;}
.y5d_c00295{bottom:592.921500px;}
.y5c_c00295{bottom:599.940000px;}
.y5b_c00295{bottom:693.025500px;}
.y5a_c00295{bottom:698.844000px;}
.y59_c00295{bottom:702.810000px;}
.y58_c00295{bottom:706.033500px;}
.y57_c00295{bottom:725.737500px;}
.y4f_c00295{bottom:727.920000px;}
.y50_c00295{bottom:729.399000px;}
.y51_c00295{bottom:729.946500px;}
.y52_c00295{bottom:730.062000px;}
.y53_c00295{bottom:730.389000px;}
.y54_c00295{bottom:730.749000px;}
.y55_c00295{bottom:731.052000px;}
.y56_c00295{bottom:731.527500px;}
.y4e_c00295{bottom:735.087000px;}
.y4d_c00295{bottom:738.295500px;}
.y4c_c00295{bottom:739.959000px;}
.y4b_c00295{bottom:758.032500px;}
.y4a_c00295{bottom:763.830000px;}
.y49_c00295{bottom:789.724500px;}
.y48_c00295{bottom:791.386500px;}
.y47_c00295{bottom:819.357000px;}
.y46_c00295{bottom:823.731000px;}
.y3a_c00295{bottom:881.550000px;}
.y3b_c00295{bottom:881.769000px;}
.y3c_c00295{bottom:882.154500px;}
.y3d_c00295{bottom:882.394500px;}
.y3e_c00295{bottom:882.519000px;}
.y3f_c00295{bottom:882.589500px;}
.y40_c00295{bottom:882.786000px;}
.y41_c00295{bottom:883.039500px;}
.y42_c00295{bottom:883.095000px;}
.y43_c00295{bottom:883.158000px;}
.y44_c00295{bottom:884.305500px;}
.y45_c00295{bottom:884.604000px;}
.y39_c00295{bottom:887.830500px;}
.y38_c00295{bottom:891.361500px;}
.y37_c00295{bottom:897.147000px;}
.y36_c00295{bottom:912.135000px;}
.y35_c00295{bottom:914.518500px;}
.y34_c00295{bottom:920.505000px;}
.y33_c00295{bottom:921.700500px;}
.y32_c00295{bottom:926.793000px;}
.y31_c00295{bottom:947.532000px;}
.y30_c00295{bottom:952.659000px;}
.y2f_c00295{bottom:956.070000px;}
.y2e_c00295{bottom:960.094500px;}
.y2d_c00295{bottom:979.408500px;}
.y2c_c00295{bottom:984.690000px;}
.y2b_c00295{bottom:987.979500px;}
.y2a_c00295{bottom:991.005000px;}
.y15_c00295{bottom:1072.438500px;}
.y16_c00295{bottom:1072.477500px;}
.y17_c00295{bottom:1072.578000px;}
.y18_c00295{bottom:1072.743000px;}
.y19_c00295{bottom:1072.834500px;}
.y1a_c00295{bottom:1073.422500px;}
.y1b_c00295{bottom:1073.584500px;}
.y1c_c00295{bottom:1074.022500px;}
.y1d_c00295{bottom:1074.099000px;}
.y1e_c00295{bottom:1074.240000px;}
.y1f_c00295{bottom:1074.786000px;}
.y20_c00295{bottom:1074.973500px;}
.y21_c00295{bottom:1075.075500px;}
.y22_c00295{bottom:1075.156500px;}
.y23_c00295{bottom:1075.290000px;}
.y24_c00295{bottom:1075.339500px;}
.y25_c00295{bottom:1075.707000px;}
.y26_c00295{bottom:1075.761000px;}
.y27_c00295{bottom:1075.857000px;}
.y28_c00295{bottom:1075.998000px;}
.y29_c00295{bottom:1076.400000px;}
.y9_c00295{bottom:1078.920000px;}
.ya_c00295{bottom:1079.130000px;}
.yb_c00295{bottom:1079.412000px;}
.yc_c00295{bottom:1079.844000px;}
.yd_c00295{bottom:1080.111000px;}
.ye_c00295{bottom:1080.442500px;}
.yf_c00295{bottom:1080.531000px;}
.y10_c00295{bottom:1081.374000px;}
.y11_c00295{bottom:1081.603500px;}
.y12_c00295{bottom:1081.971000px;}
.y13_c00295{bottom:1082.182500px;}
.y14_c00295{bottom:1082.791500px;}
.y8_c00295{bottom:1083.780000px;}
.y7_c00295{bottom:1086.745500px;}
.y6_c00295{bottom:1090.078500px;}
.y5_c00295{bottom:1097.674500px;}
.y4_c00295{bottom:1114.830000px;}
.y3_c00295{bottom:1135.798500px;}
.y2_c00295{bottom:1144.530000px;}
.y1_c00295{bottom:1149.102000px;}
.h3_c00295{height:12.000000px;}
.hb_c00295{height:12.000486px;}
.h4_c00295{height:18.000000px;}
.h2_c00295{height:24.000000px;}
.h9_c00295{height:24.000972px;}
.h7_c00295{height:30.000000px;}
.ha_c00295{height:36.001458px;}
.h8_c00295{height:42.000000px;}
.h6_c00295{height:48.000000px;}
.h5_c00295{height:66.000000px;}
.h1_c00295{height:1165.500000px;}
.h0_c00295{height:1165.800000px;}
.w0_c00295{width:915.000000px;}
.x0_c00295{left:0.000000px;}
.xa_c00295{left:1.080000px;}
.x31_c00295{left:39.715500px;}
.x1e_c00295{left:43.470000px;}
.x12_c00295{left:47.250000px;}
.xcb_c00295{left:51.570000px;}
.x8b_c00295{left:53.730000px;}
.x83_c00295{left:56.160000px;}
.xb6_c00295{left:59.424000px;}
.x97_c00295{left:63.477000px;}
.xd2_c00295{left:66.420000px;}
.x2a_c00295{left:68.343000px;}
.x78_c00295{left:69.660000px;}
.x9f_c00295{left:71.550000px;}
.x80_c00295{left:73.170000px;}
.xc_c00295{left:76.410000px;}
.x84_c00295{left:79.650000px;}
.x6f_c00295{left:80.730000px;}
.xb_c00295{left:82.620000px;}
.xcc_c00295{left:85.590000px;}
.xa0_c00295{left:89.100000px;}
.x91_c00295{left:90.180000px;}
.x98_c00295{left:94.795500px;}
.x32_c00295{left:100.447500px;}
.xd3_c00295{left:102.870000px;}
.xcd_c00295{left:108.810000px;}
.x2b_c00295{left:110.431500px;}
.x33_c00295{left:118.807500px;}
.xa1_c00295{left:122.850000px;}
.x92_c00295{left:127.710000px;}
.x9e_c00295{left:131.490000px;}
.x85_c00295{left:133.920000px;}
.x99_c00295{left:149.866500px;}
.x8c_c00295{left:150.930000px;}
.xdf_c00295{left:152.820000px;}
.x93_c00295{left:156.060000px;}
.x102_c00295{left:159.570000px;}
.xd4_c00295{left:160.920000px;}
.xc8_c00295{left:165.240000px;}
.x2c_c00295{left:166.858500px;}
.xa2_c00295{left:171.720000px;}
.x79_c00295{left:176.310000px;}
.xd5_c00295{left:177.390000px;}
.xc9_c00295{left:178.740000px;}
.xc7_c00295{left:181.980000px;}
.x1f_c00295{left:183.600000px;}
.x81_c00295{left:184.680000px;}
.xf1_c00295{left:187.100709px;}
.xca_c00295{left:192.240000px;}
.xe0_c00295{left:195.750000px;}
.x86_c00295{left:197.910000px;}
.xc6_c00295{left:198.990000px;}
.x94_c00295{left:200.340000px;}
.x9a_c00295{left:201.976500px;}
.x95_c00295{left:206.280000px;}
.xb7_c00295{left:207.385500px;}
.x87_c00295{left:209.520000px;}
.x9b_c00295{left:211.963500px;}
.x103_c00295{left:215.730000px;}
.x20_c00295{left:217.350000px;}
.x8d_c00295{left:218.430000px;}
.x96_c00295{left:219.780000px;}
.x7a_c00295{left:223.020000px;}
.xc2_c00295{left:226.530000px;}
.x70_c00295{left:228.420000px;}
.xbb_c00295{left:229.500000px;}
.xf2_c00295{left:230.842746px;}
.xa3_c00295{left:232.740000px;}
.x34_c00295{left:236.260500px;}
.x9c_c00295{left:240.042000px;}
.x13_c00295{left:241.380000px;}
.x8e_c00295{left:249.750000px;}
.xbc_c00295{left:251.100000px;}
.x21_c00295{left:253.260000px;}
.xf3_c00295{left:259.733582px;}
.x75_c00295{left:260.820000px;}
.x71_c00295{left:262.980000px;}
.x14_c00295{left:267.570000px;}
.x35_c00295{left:268.660500px;}
.x22_c00295{left:271.080000px;}
.x88_c00295{left:272.970000px;}
.xbd_c00295{left:274.320000px;}
.x8f_c00295{left:276.210000px;}
.xc3_c00295{left:279.180000px;}
.x72_c00295{left:280.530000px;}
.x6e_c00295{left:283.500000px;}
.xc0_c00295{left:284.850000px;}
.x76_c00295{left:288.090000px;}
.x9d_c00295{left:292.969500px;}
.x23_c00295{left:295.110000px;}
.xa4_c00295{left:296.730000px;}
.x7b_c00295{left:302.940000px;}
.xb8_c00295{left:305.370000px;}
.x15_c00295{left:306.450000px;}
.xa5_c00295{left:308.340000px;}
.x73_c00295{left:309.960000px;}
.x59_c00295{left:312.660000px;}
.xb5_c00295{left:316.170000px;}
.xa6_c00295{left:328.860000px;}
.xc4_c00295{left:330.750000px;}
.xb9_c00295{left:332.370000px;}
.x64_c00295{left:334.260000px;}
.xa7_c00295{left:340.470000px;}
.x5a_c00295{left:341.550000px;}
.xb4_c00295{left:342.900000px;}
.x55_c00295{left:343.980000px;}
.xe9_c00295{left:345.870000px;}
.xf8_c00295{left:347.790831px;}
.x7c_c00295{left:348.840000px;}
.xe8_c00295{left:350.460000px;}
.xba_c00295{left:352.080000px;}
.xe7_c00295{left:354.510000px;}
.x36_c00295{left:356.140500px;}
.x16_c00295{left:360.450000px;}
.x53_c00295{left:362.610000px;}
.xea_c00295{left:363.735000px;}
.x7d_c00295{left:365.580000px;}
.x17_c00295{left:371.790000px;}
.x2d_c00295{left:373.143000px;}
.xac_c00295{left:374.760000px;}
.xb2_c00295{left:377.730000px;}
.x74_c00295{left:378.810000px;}
.xd6_c00295{left:381.240000px;}
.x5b_c00295{left:382.590000px;}
.x77_c00295{left:383.940000px;}
.x56_c00295{left:385.020000px;}
.xbe_c00295{left:386.640000px;}
.xad_c00295{left:388.800000px;}
.x2e_c00295{left:390.961500px;}
.xd7_c00295{left:393.390000px;}
.x18_c00295{left:395.550000px;}
.x24_c00295{left:397.170000px;}
.x5c_c00295{left:398.520000px;}
.x37_c00295{left:399.624000px;}
.xee_c00295{left:402.299830px;}
.xb3_c00295{left:405.000000px;}
.xd_c00295{left:406.350000px;}
.x25_c00295{left:407.970000px;}
.x65_c00295{left:409.860000px;}
.xfe_c00295{left:412.015058px;}
.x5_c00295{left:414.180000px;}
.x5d_c00295{left:415.530000px;}
.x42_c00295{left:416.610000px;}
.x9_c00295{left:417.690000px;}
.xf9_c00295{left:419.341901px;}
.x5e_c00295{left:420.660000px;}
.xe5_c00295{left:422.010000px;}
.xf4_c00295{left:424.169406px;}
.x4c_c00295{left:427.950000px;}
.x7e_c00295{left:429.300000px;}
.xae_c00295{left:431.460000px;}
.xd8_c00295{left:433.620000px;}
.x43_c00295{left:436.050000px;}
.xdd_c00295{left:438.210000px;}
.xe2_c00295{left:439.290000px;}
.x66_c00295{left:442.260000px;}
.xe3_c00295{left:443.340000px;}
.xaf_c00295{left:444.690000px;}
.xe1_c00295{left:446.310000px;}
.x6_c00295{left:450.360000px;}
.x3_c00295{left:451.710000px;}
.x4d_c00295{left:454.140000px;}
.x1_c00295{left:455.760000px;}
.x57_c00295{left:457.110000px;}
.x89_c00295{left:460.620000px;}
.x54_c00295{left:461.970000px;}
.xdc_c00295{left:463.320000px;}
.xce_c00295{left:466.020000px;}
.xc1_c00295{left:467.100000px;}
.x7_c00295{left:468.720000px;}
.xd9_c00295{left:471.420000px;}
.x4e_c00295{left:473.580000px;}
.x5f_c00295{left:474.930000px;}
.x67_c00295{left:477.360000px;}
.xbf_c00295{left:479.250000px;}
.x49_c00295{left:481.410000px;}
.xde_c00295{left:483.840000px;}
.x68_c00295{left:487.620000px;}
.xc5_c00295{left:490.050000px;}
.xcf_c00295{left:494.640000px;}
.xe6_c00295{left:497.070000px;}
.xe_c00295{left:499.770000px;}
.x4f_c00295{left:502.200000px;}
.x44_c00295{left:503.550000px;}
.x69_c00295{left:507.600000px;}
.x38_c00295{left:508.693500px;}
.x4a_c00295{left:510.300000px;}
.x60_c00295{left:515.160000px;}
.xda_c00295{left:516.240000px;}
.xfa_c00295{left:519.179201px;}
.x7f_c00295{left:522.180000px;}
.x58_c00295{left:524.610000px;}
.x8a_c00295{left:526.230000px;}
.x19_c00295{left:527.850000px;}
.x61_c00295{left:530.550000px;}
.x90_c00295{left:532.440000px;}
.x82_c00295{left:534.330000px;}
.x62_c00295{left:538.920000px;}
.x39_c00295{left:546.222000px;}
.xe4_c00295{left:548.640000px;}
.x45_c00295{left:549.720000px;}
.x50_c00295{left:553.770000px;}
.x46_c00295{left:554.850000px;}
.x26_c00295{left:559.980000px;}
.x1a_c00295{left:561.060000px;}
.xdb_c00295{left:563.220000px;}
.x6a_c00295{left:564.300000px;}
.x4b_c00295{left:565.380000px;}
.x3a_c00295{left:566.473500px;}
.x6b_c00295{left:567.810000px;}
.xd0_c00295{left:569.700000px;}
.xf_c00295{left:570.780000px;}
.xfb_c00295{left:575.111202px;}
.x1b_c00295{left:581.310000px;}
.x3b_c00295{left:582.687000px;}
.xd1_c00295{left:584.280000px;}
.x2_c00295{left:586.440000px;}
.x6c_c00295{left:591.030000px;}
.x47_c00295{left:594.540000px;}
.xa8_c00295{left:603.720000px;}
.x4_c00295{left:605.340000px;}
.x27_c00295{left:607.770000px;}
.x3c_c00295{left:609.421500px;}
.xfc_c00295{left:610.529744px;}
.xb0_c00295{left:611.820000px;}
.x8_c00295{left:615.330000px;}
.xeb_c00295{left:616.446000px;}
.x3d_c00295{left:619.392000px;}
.x6d_c00295{left:622.620000px;}
.x10_c00295{left:625.320000px;}
.xa9_c00295{left:628.290000px;}
.x1c_c00295{left:629.370000px;}
.x48_c00295{left:631.530000px;}
.xec_c00295{left:641.535000px;}
.xf5_c00295{left:643.146659px;}
.xb1_c00295{left:653.130000px;}
.x28_c00295{left:678.780000px;}
.xaa_c00295{left:686.610000px;}
.x3e_c00295{left:692.848500px;}
.xff_c00295{left:695.255994px;}
.x29_c00295{left:702.000000px;}
.x11_c00295{left:703.620000px;}
.x1d_c00295{left:704.700000px;}
.xef_c00295{left:707.142522px;}
.x51_c00295{left:709.560000px;}
.x2f_c00295{left:721.156500px;}
.x3f_c00295{left:722.802000px;}
.xf0_c00295{left:726.042547px;}
.x63_c00295{left:736.290000px;}
.xfd_c00295{left:744.911126px;}
.x40_c00295{left:751.123500px;}
.xed_c00295{left:755.749500px;}
.x100_c00295{left:766.538772px;}
.xf6_c00295{left:779.501702px;}
.x101_c00295{left:788.139027px;}
.xf7_c00295{left:801.371970px;}
.xab_c00295{left:824.040000px;}
.x41_c00295{left:831.592500px;}
.x30_c00295{left:842.929500px;}
.x52_c00295{left:848.070000px;}
@media print{
.v0_c00295{vertical-align:0.000000pt;}
.ls0_c00295{letter-spacing:0.000000pt;}
.ws0_c00295{word-spacing:0.000000pt;}
._2_c00295{margin-left:-11.198769pt;}
._1_c00295{width:98.719816pt;}
._0_c00295{width:2327.779093pt;}
._3_c00295{width:2370.909700pt;}
.fs1_c00295{font-size:10.666667pt;}
.fs9_c00295{font-size:10.667099pt;}
.fs2_c00295{font-size:16.000000pt;}
.fs0_c00295{font-size:21.333333pt;}
.fs7_c00295{font-size:21.334197pt;}
.fs5_c00295{font-size:26.666667pt;}
.fs8_c00295{font-size:32.001296pt;}
.fs6_c00295{font-size:37.333333pt;}
.fs4_c00295{font-size:42.666667pt;}
.fs3_c00295{font-size:58.666667pt;}
.y0_c00295{bottom:0.000000pt;}
.ya9_c00295{bottom:214.080000pt;}
.ya8_c00295{bottom:220.289333pt;}
.y9e_c00295{bottom:233.317236pt;}
.ya7_c00295{bottom:233.317417pt;}
.y9f_c00295{bottom:233.317641pt;}
.ya1_c00295{bottom:233.317831pt;}
.ya6_c00295{bottom:233.317963pt;}
.ya0_c00295{bottom:233.318003pt;}
.ya3_c00295{bottom:233.318141pt;}
.ya2_c00295{bottom:233.318180pt;}
.ya5_c00295{bottom:233.318413pt;}
.ya4_c00295{bottom:233.318503pt;}
.y92_c00295{bottom:236.878224pt;}
.y93_c00295{bottom:238.456667pt;}
.y94_c00295{bottom:238.897813pt;}
.y95_c00295{bottom:239.041825pt;}
.y96_c00295{bottom:239.219757pt;}
.y97_c00295{bottom:240.285144pt;}
.y98_c00295{bottom:240.420273pt;}
.y99_c00295{bottom:240.768276pt;}
.y9a_c00295{bottom:240.880612pt;}
.y9b_c00295{bottom:241.258635pt;}
.y9c_c00295{bottom:241.361728pt;}
.y8f_c00295{bottom:242.466313pt;}
.y90_c00295{bottom:242.466399pt;}
.y91_c00295{bottom:242.466680pt;}
.y8e_c00295{bottom:242.466699pt;}
.y8d_c00295{bottom:242.466791pt;}
.y8c_c00295{bottom:242.467268pt;}
.y8b_c00295{bottom:242.467559pt;}
.y82_c00295{bottom:242.467575pt;}
.y8a_c00295{bottom:242.467971pt;}
.y87_c00295{bottom:242.468007pt;}
.y83_c00295{bottom:242.468135pt;}
.y85_c00295{bottom:242.468149pt;}
.y89_c00295{bottom:242.468223pt;}
.y88_c00295{bottom:242.468288pt;}
.y86_c00295{bottom:242.468591pt;}
.y84_c00295{bottom:242.468695pt;}
.y9d_c00295{bottom:242.691048pt;}
.y80_c00295{bottom:248.177368pt;}
.y7c_c00295{bottom:248.177399pt;}
.y7b_c00295{bottom:248.177491pt;}
.y79_c00295{bottom:248.177595pt;}
.y7d_c00295{bottom:248.177668pt;}
.y7f_c00295{bottom:248.177751pt;}
.y81_c00295{bottom:248.177889pt;}
.y7e_c00295{bottom:248.177976pt;}
.y7a_c00295{bottom:248.178009pt;}
.y6e_c00295{bottom:249.840000pt;}
.y6f_c00295{bottom:249.926472pt;}
.y70_c00295{bottom:250.187628pt;}
.y71_c00295{bottom:250.280736pt;}
.y72_c00295{bottom:250.453320pt;}
.y73_c00295{bottom:250.526952pt;}
.y74_c00295{bottom:251.241888pt;}
.y75_c00295{bottom:251.416992pt;}
.y76_c00295{bottom:251.948160pt;}
.y77_c00295{bottom:252.148872pt;}
.y78_c00295{bottom:253.062588pt;}
.y6d_c00295{bottom:267.614667pt;}
.y6c_c00295{bottom:272.412000pt;}
.y6b_c00295{bottom:275.282667pt;}
.y6a_c00295{bottom:409.709333pt;}
.y69_c00295{bottom:415.181333pt;}
.y68_c00295{bottom:419.040000pt;}
.y67_c00295{bottom:437.541333pt;}
.y66_c00295{bottom:442.320000pt;}
.y65_c00295{bottom:466.926667pt;}
.y64_c00295{bottom:471.588000pt;}
.y63_c00295{bottom:474.118667pt;}
.y62_c00295{bottom:479.636000pt;}
.y61_c00295{bottom:489.156000pt;}
.y60_c00295{bottom:493.489333pt;}
.y5f_c00295{bottom:497.533333pt;}
.y5e_c00295{bottom:522.126667pt;}
.y5d_c00295{bottom:527.041333pt;}
.y5c_c00295{bottom:533.280000pt;}
.y5b_c00295{bottom:616.022667pt;}
.y5a_c00295{bottom:621.194667pt;}
.y59_c00295{bottom:624.720000pt;}
.y58_c00295{bottom:627.585333pt;}
.y57_c00295{bottom:645.100000pt;}
.y4f_c00295{bottom:647.040000pt;}
.y50_c00295{bottom:648.354667pt;}
.y51_c00295{bottom:648.841333pt;}
.y52_c00295{bottom:648.944000pt;}
.y53_c00295{bottom:649.234667pt;}
.y54_c00295{bottom:649.554667pt;}
.y55_c00295{bottom:649.824000pt;}
.y56_c00295{bottom:650.246667pt;}
.y4e_c00295{bottom:653.410667pt;}
.y4d_c00295{bottom:656.262667pt;}
.y4c_c00295{bottom:657.741333pt;}
.y4b_c00295{bottom:673.806667pt;}
.y4a_c00295{bottom:678.960000pt;}
.y49_c00295{bottom:701.977333pt;}
.y48_c00295{bottom:703.454667pt;}
.y47_c00295{bottom:728.317333pt;}
.y46_c00295{bottom:732.205333pt;}
.y3a_c00295{bottom:783.600000pt;}
.y3b_c00295{bottom:783.794667pt;}
.y3c_c00295{bottom:784.137333pt;}
.y3d_c00295{bottom:784.350667pt;}
.y3e_c00295{bottom:784.461333pt;}
.y3f_c00295{bottom:784.524000pt;}
.y40_c00295{bottom:784.698667pt;}
.y41_c00295{bottom:784.924000pt;}
.y42_c00295{bottom:784.973333pt;}
.y43_c00295{bottom:785.029333pt;}
.y44_c00295{bottom:786.049333pt;}
.y45_c00295{bottom:786.314667pt;}
.y39_c00295{bottom:789.182667pt;}
.y38_c00295{bottom:792.321333pt;}
.y37_c00295{bottom:797.464000pt;}
.y36_c00295{bottom:810.786667pt;}
.y35_c00295{bottom:812.905333pt;}
.y34_c00295{bottom:818.226667pt;}
.y33_c00295{bottom:819.289333pt;}
.y32_c00295{bottom:823.816000pt;}
.y31_c00295{bottom:842.250667pt;}
.y30_c00295{bottom:846.808000pt;}
.y2f_c00295{bottom:849.840000pt;}
.y2e_c00295{bottom:853.417333pt;}
.y2d_c00295{bottom:870.585333pt;}
.y2c_c00295{bottom:875.280000pt;}
.y2b_c00295{bottom:878.204000pt;}
.y2a_c00295{bottom:880.893333pt;}
.y15_c00295{bottom:953.278667pt;}
.y16_c00295{bottom:953.313333pt;}
.y17_c00295{bottom:953.402667pt;}
.y18_c00295{bottom:953.549333pt;}
.y19_c00295{bottom:953.630667pt;}
.y1a_c00295{bottom:954.153333pt;}
.y1b_c00295{bottom:954.297333pt;}
.y1c_c00295{bottom:954.686667pt;}
.y1d_c00295{bottom:954.754667pt;}
.y1e_c00295{bottom:954.880000pt;}
.y1f_c00295{bottom:955.365333pt;}
.y20_c00295{bottom:955.532000pt;}
.y21_c00295{bottom:955.622667pt;}
.y22_c00295{bottom:955.694667pt;}
.y23_c00295{bottom:955.813333pt;}
.y24_c00295{bottom:955.857333pt;}
.y25_c00295{bottom:956.184000pt;}
.y26_c00295{bottom:956.232000pt;}
.y27_c00295{bottom:956.317333pt;}
.y28_c00295{bottom:956.442667pt;}
.y29_c00295{bottom:956.800000pt;}
.y9_c00295{bottom:959.040000pt;}
.ya_c00295{bottom:959.226667pt;}
.yb_c00295{bottom:959.477333pt;}
.yc_c00295{bottom:959.861333pt;}
.yd_c00295{bottom:960.098667pt;}
.ye_c00295{bottom:960.393333pt;}
.yf_c00295{bottom:960.472000pt;}
.y10_c00295{bottom:961.221333pt;}
.y11_c00295{bottom:961.425333pt;}
.y12_c00295{bottom:961.752000pt;}
.y13_c00295{bottom:961.940000pt;}
.y14_c00295{bottom:962.481333pt;}
.y8_c00295{bottom:963.360000pt;}
.y7_c00295{bottom:965.996000pt;}
.y6_c00295{bottom:968.958667pt;}
.y5_c00295{bottom:975.710667pt;}
.y4_c00295{bottom:990.960000pt;}
.y3_c00295{bottom:1009.598667pt;}
.y2_c00295{bottom:1017.360000pt;}
.y1_c00295{bottom:1021.424000pt;}
.h3_c00295{height:10.666667pt;}
.hb_c00295{height:10.667099pt;}
.h4_c00295{height:16.000000pt;}
.h2_c00295{height:21.333333pt;}
.h9_c00295{height:21.334197pt;}
.h7_c00295{height:26.666667pt;}
.ha_c00295{height:32.001296pt;}
.h8_c00295{height:37.333333pt;}
.h6_c00295{height:42.666667pt;}
.h5_c00295{height:58.666667pt;}
.h1_c00295{height:1036.000000pt;}
.h0_c00295{height:1036.266667pt;}
.w0_c00295{width:813.333333pt;}
.x0_c00295{left:0.000000pt;}
.xa_c00295{left:0.960000pt;}
.x31_c00295{left:35.302667pt;}
.x1e_c00295{left:38.640000pt;}
.x12_c00295{left:42.000000pt;}
.xcb_c00295{left:45.840000pt;}
.x8b_c00295{left:47.760000pt;}
.x83_c00295{left:49.920000pt;}
.xb6_c00295{left:52.821333pt;}
.x97_c00295{left:56.424000pt;}
.xd2_c00295{left:59.040000pt;}
.x2a_c00295{left:60.749333pt;}
.x78_c00295{left:61.920000pt;}
.x9f_c00295{left:63.600000pt;}
.x80_c00295{left:65.040000pt;}
.xc_c00295{left:67.920000pt;}
.x84_c00295{left:70.800000pt;}
.x6f_c00295{left:71.760000pt;}
.xb_c00295{left:73.440000pt;}
.xcc_c00295{left:76.080000pt;}
.xa0_c00295{left:79.200000pt;}
.x91_c00295{left:80.160000pt;}
.x98_c00295{left:84.262667pt;}
.x32_c00295{left:89.286667pt;}
.xd3_c00295{left:91.440000pt;}
.xcd_c00295{left:96.720000pt;}
.x2b_c00295{left:98.161333pt;}
.x33_c00295{left:105.606667pt;}
.xa1_c00295{left:109.200000pt;}
.x92_c00295{left:113.520000pt;}
.x9e_c00295{left:116.880000pt;}
.x85_c00295{left:119.040000pt;}
.x99_c00295{left:133.214667pt;}
.x8c_c00295{left:134.160000pt;}
.xdf_c00295{left:135.840000pt;}
.x93_c00295{left:138.720000pt;}
.x102_c00295{left:141.840000pt;}
.xd4_c00295{left:143.040000pt;}
.xc8_c00295{left:146.880000pt;}
.x2c_c00295{left:148.318667pt;}
.xa2_c00295{left:152.640000pt;}
.x79_c00295{left:156.720000pt;}
.xd5_c00295{left:157.680000pt;}
.xc9_c00295{left:158.880000pt;}
.xc7_c00295{left:161.760000pt;}
.x1f_c00295{left:163.200000pt;}
.x81_c00295{left:164.160000pt;}
.xf1_c00295{left:166.311741pt;}
.xca_c00295{left:170.880000pt;}
.xe0_c00295{left:174.000000pt;}
.x86_c00295{left:175.920000pt;}
.xc6_c00295{left:176.880000pt;}
.x94_c00295{left:178.080000pt;}
.x9a_c00295{left:179.534667pt;}
.x95_c00295{left:183.360000pt;}
.xb7_c00295{left:184.342667pt;}
.x87_c00295{left:186.240000pt;}
.x9b_c00295{left:188.412000pt;}
.x103_c00295{left:191.760000pt;}
.x20_c00295{left:193.200000pt;}
.x8d_c00295{left:194.160000pt;}
.x96_c00295{left:195.360000pt;}
.x7a_c00295{left:198.240000pt;}
.xc2_c00295{left:201.360000pt;}
.x70_c00295{left:203.040000pt;}
.xbb_c00295{left:204.000000pt;}
.xf2_c00295{left:205.193552pt;}
.xa3_c00295{left:206.880000pt;}
.x34_c00295{left:210.009333pt;}
.x9c_c00295{left:213.370667pt;}
.x13_c00295{left:214.560000pt;}
.x8e_c00295{left:222.000000pt;}
.xbc_c00295{left:223.200000pt;}
.x21_c00295{left:225.120000pt;}
.xf3_c00295{left:230.874295pt;}
.x75_c00295{left:231.840000pt;}
.x71_c00295{left:233.760000pt;}
.x14_c00295{left:237.840000pt;}
.x35_c00295{left:238.809333pt;}
.x22_c00295{left:240.960000pt;}
.x88_c00295{left:242.640000pt;}
.xbd_c00295{left:243.840000pt;}
.x8f_c00295{left:245.520000pt;}
.xc3_c00295{left:248.160000pt;}
.x72_c00295{left:249.360000pt;}
.x6e_c00295{left:252.000000pt;}
.xc0_c00295{left:253.200000pt;}
.x76_c00295{left:256.080000pt;}
.x9d_c00295{left:260.417333pt;}
.x23_c00295{left:262.320000pt;}
.xa4_c00295{left:263.760000pt;}
.x7b_c00295{left:269.280000pt;}
.xb8_c00295{left:271.440000pt;}
.x15_c00295{left:272.400000pt;}
.xa5_c00295{left:274.080000pt;}
.x73_c00295{left:275.520000pt;}
.x59_c00295{left:277.920000pt;}
.xb5_c00295{left:281.040000pt;}
.xa6_c00295{left:292.320000pt;}
.xc4_c00295{left:294.000000pt;}
.xb9_c00295{left:295.440000pt;}
.x64_c00295{left:297.120000pt;}
.xa7_c00295{left:302.640000pt;}
.x5a_c00295{left:303.600000pt;}
.xb4_c00295{left:304.800000pt;}
.x55_c00295{left:305.760000pt;}
.xe9_c00295{left:307.440000pt;}
.xf8_c00295{left:309.147405pt;}
.x7c_c00295{left:310.080000pt;}
.xe8_c00295{left:311.520000pt;}
.xba_c00295{left:312.960000pt;}
.xe7_c00295{left:315.120000pt;}
.x36_c00295{left:316.569333pt;}
.x16_c00295{left:320.400000pt;}
.x53_c00295{left:322.320000pt;}
.xea_c00295{left:323.320000pt;}
.x7d_c00295{left:324.960000pt;}
.x17_c00295{left:330.480000pt;}
.x2d_c00295{left:331.682667pt;}
.xac_c00295{left:333.120000pt;}
.xb2_c00295{left:335.760000pt;}
.x74_c00295{left:336.720000pt;}
.xd6_c00295{left:338.880000pt;}
.x5b_c00295{left:340.080000pt;}
.x77_c00295{left:341.280000pt;}
.x56_c00295{left:342.240000pt;}
.xbe_c00295{left:343.680000pt;}
.xad_c00295{left:345.600000pt;}
.x2e_c00295{left:347.521333pt;}
.xd7_c00295{left:349.680000pt;}
.x18_c00295{left:351.600000pt;}
.x24_c00295{left:353.040000pt;}
.x5c_c00295{left:354.240000pt;}
.x37_c00295{left:355.221333pt;}
.xee_c00295{left:357.599849pt;}
.xb3_c00295{left:360.000000pt;}
.xd_c00295{left:361.200000pt;}
.x25_c00295{left:362.640000pt;}
.x65_c00295{left:364.320000pt;}
.xfe_c00295{left:366.235607pt;}
.x5_c00295{left:368.160000pt;}
.x5d_c00295{left:369.360000pt;}
.x42_c00295{left:370.320000pt;}
.x9_c00295{left:371.280000pt;}
.xf9_c00295{left:372.748356pt;}
.x5e_c00295{left:373.920000pt;}
.xe5_c00295{left:375.120000pt;}
.xf4_c00295{left:377.039472pt;}
.x4c_c00295{left:380.400000pt;}
.x7e_c00295{left:381.600000pt;}
.xae_c00295{left:383.520000pt;}
.xd8_c00295{left:385.440000pt;}
.x43_c00295{left:387.600000pt;}
.xdd_c00295{left:389.520000pt;}
.xe2_c00295{left:390.480000pt;}
.x66_c00295{left:393.120000pt;}
.xe3_c00295{left:394.080000pt;}
.xaf_c00295{left:395.280000pt;}
.xe1_c00295{left:396.720000pt;}
.x6_c00295{left:400.320000pt;}
.x3_c00295{left:401.520000pt;}
.x4d_c00295{left:403.680000pt;}
.x1_c00295{left:405.120000pt;}
.x57_c00295{left:406.320000pt;}
.x89_c00295{left:409.440000pt;}
.x54_c00295{left:410.640000pt;}
.xdc_c00295{left:411.840000pt;}
.xce_c00295{left:414.240000pt;}
.xc1_c00295{left:415.200000pt;}
.x7_c00295{left:416.640000pt;}
.xd9_c00295{left:419.040000pt;}
.x4e_c00295{left:420.960000pt;}
.x5f_c00295{left:422.160000pt;}
.x67_c00295{left:424.320000pt;}
.xbf_c00295{left:426.000000pt;}
.x49_c00295{left:427.920000pt;}
.xde_c00295{left:430.080000pt;}
.x68_c00295{left:433.440000pt;}
.xc5_c00295{left:435.600000pt;}
.xcf_c00295{left:439.680000pt;}
.xe6_c00295{left:441.840000pt;}
.xe_c00295{left:444.240000pt;}
.x4f_c00295{left:446.400000pt;}
.x44_c00295{left:447.600000pt;}
.x69_c00295{left:451.200000pt;}
.x38_c00295{left:452.172000pt;}
.x4a_c00295{left:453.600000pt;}
.x60_c00295{left:457.920000pt;}
.xda_c00295{left:458.880000pt;}
.xfa_c00295{left:461.492623pt;}
.x7f_c00295{left:464.160000pt;}
.x58_c00295{left:466.320000pt;}
.x8a_c00295{left:467.760000pt;}
.x19_c00295{left:469.200000pt;}
.x61_c00295{left:471.600000pt;}
.x90_c00295{left:473.280000pt;}
.x82_c00295{left:474.960000pt;}
.x62_c00295{left:479.040000pt;}
.x39_c00295{left:485.530667pt;}
.xe4_c00295{left:487.680000pt;}
.x45_c00295{left:488.640000pt;}
.x50_c00295{left:492.240000pt;}
.x46_c00295{left:493.200000pt;}
.x26_c00295{left:497.760000pt;}
.x1a_c00295{left:498.720000pt;}
.xdb_c00295{left:500.640000pt;}
.x6a_c00295{left:501.600000pt;}
.x4b_c00295{left:502.560000pt;}
.x3a_c00295{left:503.532000pt;}
.x6b_c00295{left:504.720000pt;}
.xd0_c00295{left:506.400000pt;}
.xf_c00295{left:507.360000pt;}
.xfb_c00295{left:511.209957pt;}
.x1b_c00295{left:516.720000pt;}
.x3b_c00295{left:517.944000pt;}
.xd1_c00295{left:519.360000pt;}
.x2_c00295{left:521.280000pt;}
.x6c_c00295{left:525.360000pt;}
.x47_c00295{left:528.480000pt;}
.xa8_c00295{left:536.640000pt;}
.x4_c00295{left:538.080000pt;}
.x27_c00295{left:540.240000pt;}
.x3c_c00295{left:541.708000pt;}
.xfc_c00295{left:542.693105pt;}
.xb0_c00295{left:543.840000pt;}
.x8_c00295{left:546.960000pt;}
.xeb_c00295{left:547.952000pt;}
.x3d_c00295{left:550.570667pt;}
.x6d_c00295{left:553.440000pt;}
.x10_c00295{left:555.840000pt;}
.xa9_c00295{left:558.480000pt;}
.x1c_c00295{left:559.440000pt;}
.x48_c00295{left:561.360000pt;}
.xec_c00295{left:570.253333pt;}
.xf5_c00295{left:571.685919pt;}
.xb1_c00295{left:580.560000pt;}
.x28_c00295{left:603.360000pt;}
.xaa_c00295{left:610.320000pt;}
.x3e_c00295{left:615.865333pt;}
.xff_c00295{left:618.005328pt;}
.x29_c00295{left:624.000000pt;}
.x11_c00295{left:625.440000pt;}
.x1d_c00295{left:626.400000pt;}
.xef_c00295{left:628.571131pt;}
.x51_c00295{left:630.720000pt;}
.x2f_c00295{left:641.028000pt;}
.x3f_c00295{left:642.490667pt;}
.xf0_c00295{left:645.371153pt;}
.x63_c00295{left:654.480000pt;}
.xfd_c00295{left:662.143223pt;}
.x40_c00295{left:667.665333pt;}
.xed_c00295{left:671.777333pt;}
.x100_c00295{left:681.367797pt;}
.xf6_c00295{left:692.890401pt;}
.x101_c00295{left:700.568024pt;}
.xf7_c00295{left:712.330640pt;}
.xab_c00295{left:732.480000pt;}
.x41_c00295{left:739.193333pt;}
.x30_c00295{left:749.270667pt;}
.x52_c00295{left:753.840000pt;}
}





/* 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_c00296 {
    display:none;
  }
  .loading-indicator_c00296.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00296 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_c00296 { 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_c00296" -> "#page-container .classname_c00296")
 */
.pf_c00296 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00296 { /* 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_c00296.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00296 { /* 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_c00296 { /* 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_c00296 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00296 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00296 {overflow:visible;}
  }
}
.c_c00296 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00296 { /* 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_c00296:after { /* webkit #35443 */
  content: '';
}
.t_c00296:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00296 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 */
}
.__c00296 { /* 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_c00296 { /* info for Javascript */
  display:none;
}
.l_c00296 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00296 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00296 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00296: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_c00296 {
    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_c00296.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00296.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_c00296 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00296{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00296;src:url('chunks/assets/font_c605e72f209fc835e906f064.woff2')format("woff");}.ff1_c00296{font-family:ff1_c00296;line-height:1.000000;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;}
.m4e_c00296{transform:matrix(0.102959,-0.001133,0.002750,0.249985,0,0);-ms-transform:matrix(0.102959,-0.001133,0.002750,0.249985,0,0);-webkit-transform:matrix(0.102959,-0.001133,0.002750,0.249985,0,0);}
.m78_c00296{transform:matrix(0.109120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109120,0.000000,0.000000,0.250000,0,0);}
.m77_c00296{transform:matrix(0.115935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115935,0.000000,0.000000,0.250000,0,0);}
.mf5_c00296{transform:matrix(0.122733,0.000736,-0.001500,0.249996,0,0);-ms-transform:matrix(0.122733,0.000736,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.122733,0.000736,-0.001500,0.249996,0,0);}
.m8f_c00296{transform:matrix(0.124260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124260,0.000000,0.000000,0.250000,0,0);}
.m96_c00296{transform:matrix(0.129750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129750,0.000000,0.000000,0.250000,0,0);}
.m0_c00296{transform:matrix(0.131355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131355,0.000000,0.000000,0.250000,0,0);}
.mab_c00296{transform:matrix(0.134645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134645,0.000000,0.000000,0.250000,0,0);}
.m7d_c00296{transform:matrix(0.137885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137885,0.000000,0.000000,0.250000,0,0);}
.m48_c00296{transform:matrix(0.137990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137990,0.000000,0.000000,0.250000,0,0);}
.md4_c00296{transform:matrix(0.140558,0.000703,-0.001250,0.249997,0,0);-ms-transform:matrix(0.140558,0.000703,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.140558,0.000703,-0.001250,0.249997,0,0);}
.m94_c00296{transform:matrix(0.140560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140560,0.000000,0.000000,0.250000,0,0);}
.m4f_c00296{transform:matrix(0.141181,-0.001553,0.002750,0.249985,0,0);-ms-transform:matrix(0.141181,-0.001553,0.002750,0.249985,0,0);-webkit-transform:matrix(0.141181,-0.001553,0.002750,0.249985,0,0);}
.m27_c00296{transform:matrix(0.143190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143190,0.000000,0.000000,0.250000,0,0);}
.m88_c00296{transform:matrix(0.143285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143285,0.000000,0.000000,0.250000,0,0);}
.m20_c00296{transform:matrix(0.145865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145865,0.000000,0.000000,0.250000,0,0);}
.m65_c00296{transform:matrix(0.148576,-0.001634,0.002750,0.249985,0,0);-ms-transform:matrix(0.148576,-0.001634,0.002750,0.249985,0,0);-webkit-transform:matrix(0.148576,-0.001634,0.002750,0.249985,0,0);}
.m2d_c00296{transform:matrix(0.148585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148585,0.000000,0.000000,0.250000,0,0);}
.mc1_c00296{transform:matrix(0.151165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151165,0.000000,0.000000,0.250000,0,0);}
.m51_c00296{transform:matrix(0.154691,-0.001702,0.002750,0.249985,0,0);-ms-transform:matrix(0.154691,-0.001702,0.002750,0.249985,0,0);-webkit-transform:matrix(0.154691,-0.001702,0.002750,0.249985,0,0);}
.m1_c00296{transform:matrix(0.155810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155810,0.000000,0.000000,0.250000,0,0);}
.m3d_c00296{transform:matrix(0.156315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156315,0.000000,0.000000,0.250000,0,0);}
.m1b_c00296{transform:matrix(0.162405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162405,0.000000,0.000000,0.250000,0,0);}
.mdd_c00296{transform:matrix(0.171413,0.000857,-0.001250,0.249997,0,0);-ms-transform:matrix(0.171413,0.000857,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.171413,0.000857,-0.001250,0.249997,0,0);}
.m32_c00296{transform:matrix(0.178780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178780,0.000000,0.000000,0.250000,0,0);}
.m52_c00296{transform:matrix(0.185094,-0.002036,0.002750,0.249985,0,0);-ms-transform:matrix(0.185094,-0.002036,0.002750,0.249985,0,0);-webkit-transform:matrix(0.185094,-0.002036,0.002750,0.249985,0,0);}
.m50_c00296{transform:matrix(0.185589,-0.002041,0.002750,0.249985,0,0);-ms-transform:matrix(0.185589,-0.002041,0.002750,0.249985,0,0);-webkit-transform:matrix(0.185589,-0.002041,0.002750,0.249985,0,0);}
.m8b_c00296{transform:matrix(0.187170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187170,0.000000,0.000000,0.250000,0,0);}
.mf7_c00296{transform:matrix(0.193152,0.001159,-0.001500,0.249996,0,0);-ms-transform:matrix(0.193152,0.001159,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.193152,0.001159,-0.001500,0.249996,0,0);}
.m4d_c00296{transform:matrix(0.195038,-0.002145,0.002750,0.249985,0,0);-ms-transform:matrix(0.195038,-0.002145,0.002750,0.249985,0,0);-webkit-transform:matrix(0.195038,-0.002145,0.002750,0.249985,0,0);}
.m82_c00296{transform:matrix(0.195405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195405,0.000000,0.000000,0.250000,0,0);}
.mf4_c00296{transform:matrix(0.195496,0.001173,-0.001500,0.249996,0,0);-ms-transform:matrix(0.195496,0.001173,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.195496,0.001173,-0.001500,0.249996,0,0);}
.m8d_c00296{transform:matrix(0.199925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199925,0.000000,0.000000,0.250000,0,0);}
.m8c_c00296{transform:matrix(0.201525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201525,0.000000,0.000000,0.250000,0,0);}
.mda_c00296{transform:matrix(0.206092,0.001030,-0.001250,0.249997,0,0);-ms-transform:matrix(0.206092,0.001030,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.206092,0.001030,-0.001250,0.249997,0,0);}
.mf6_c00296{transform:matrix(0.206216,0.001237,-0.001500,0.249996,0,0);-ms-transform:matrix(0.206216,0.001237,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.206216,0.001237,-0.001500,0.249996,0,0);}
.mce_c00296{transform:matrix(0.208100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208100,0.000000,0.000000,0.250000,0,0);}
.ma3_c00296{transform:matrix(0.208675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208675,0.000000,0.000000,0.250000,0,0);}
.mf1_c00296{transform:matrix(0.208951,0.001254,-0.001500,0.249996,0,0);-ms-transform:matrix(0.208951,0.001254,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.208951,0.001254,-0.001500,0.249996,0,0);}
.me3_c00296{transform:matrix(0.209850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209850,0.000000,0.000000,0.250000,0,0);}
.m75_c00296{transform:matrix(0.212780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212780,0.000000,0.000000,0.250000,0,0);}
.mfb_c00296{transform:matrix(0.213356,0.001280,-0.001500,0.249996,0,0);-ms-transform:matrix(0.213356,0.001280,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.213356,0.001280,-0.001500,0.249996,0,0);}
.mf9_c00296{transform:matrix(0.213461,0.001281,-0.001500,0.249996,0,0);-ms-transform:matrix(0.213461,0.001281,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.213461,0.001281,-0.001500,0.249996,0,0);}
.me8_c00296{transform:matrix(0.213805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213805,0.000000,0.000000,0.250000,0,0);}
.mae_c00296{transform:matrix(0.220020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220020,0.000000,0.000000,0.250000,0,0);}
.m83_c00296{transform:matrix(0.220330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220330,0.000000,0.000000,0.250000,0,0);}
.ma0_c00296{transform:matrix(0.221635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221635,0.000000,0.000000,0.250000,0,0);}
.mc8_c00296{transform:matrix(0.222610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222610,0.000000,0.000000,0.250000,0,0);}
.m74_c00296{transform:matrix(0.222705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222705,0.000000,0.000000,0.250000,0,0);}
.m86_c00296{transform:matrix(0.223060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223060,0.000000,0.000000,0.250000,0,0);}
.mdc_c00296{transform:matrix(0.223377,0.001117,-0.001250,0.249997,0,0);-ms-transform:matrix(0.223377,0.001117,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.223377,0.001117,-0.001250,0.249997,0,0);}
.mc7_c00296{transform:matrix(0.223605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223605,0.000000,0.000000,0.250000,0,0);}
.m92_c00296{transform:matrix(0.223970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223970,0.000000,0.000000,0.250000,0,0);}
.me7_c00296{transform:matrix(0.224070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224070,0.000000,0.000000,0.250000,0,0);}
.m71_c00296{transform:matrix(0.224680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224680,0.000000,0.000000,0.250000,0,0);}
.med_c00296{transform:matrix(0.224746,0.001348,-0.001500,0.249996,0,0);-ms-transform:matrix(0.224746,0.001348,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.224746,0.001348,-0.001500,0.249996,0,0);}
.ma5_c00296{transform:matrix(0.225380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225380,0.000000,0.000000,0.250000,0,0);}
.me5_c00296{transform:matrix(0.225465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225465,0.000000,0.000000,0.250000,0,0);}
.m11_c00296{transform:matrix(0.226380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226380,0.000000,0.000000,0.250000,0,0);}
.maa_c00296{transform:matrix(0.227780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227780,0.000000,0.000000,0.250000,0,0);}
.m67_c00296{transform:matrix(0.228906,-0.002518,0.002750,0.249985,0,0);-ms-transform:matrix(0.228906,-0.002518,0.002750,0.249985,0,0);-webkit-transform:matrix(0.228906,-0.002518,0.002750,0.249985,0,0);}
.md9_c00296{transform:matrix(0.229192,0.001146,-0.001250,0.249997,0,0);-ms-transform:matrix(0.229192,0.001146,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.229192,0.001146,-0.001250,0.249997,0,0);}
.mf3_c00296{transform:matrix(0.229376,0.001376,-0.001500,0.249996,0,0);-ms-transform:matrix(0.229376,0.001376,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.229376,0.001376,-0.001500,0.249996,0,0);}
.m98_c00296{transform:matrix(0.230045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230045,0.000000,0.000000,0.250000,0,0);}
.m31_c00296{transform:matrix(0.230690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230690,0.000000,0.000000,0.250000,0,0);}
.mb5_c00296{transform:matrix(0.231445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231445,0.000000,0.000000,0.250000,0,0);}
.mf2_c00296{transform:matrix(0.231606,0.001390,-0.001500,0.249996,0,0);-ms-transform:matrix(0.231606,0.001390,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.231606,0.001390,-0.001500,0.249996,0,0);}
.m99_c00296{transform:matrix(0.232065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232065,0.000000,0.000000,0.250000,0,0);}
.mfa_c00296{transform:matrix(0.234031,0.001404,-0.001500,0.249996,0,0);-ms-transform:matrix(0.234031,0.001404,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.234031,0.001404,-0.001500,0.249996,0,0);}
.m37_c00296{transform:matrix(0.235850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235850,0.000000,0.000000,0.250000,0,0);}
.m33_c00296{transform:matrix(0.236265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236265,0.000000,0.000000,0.250000,0,0);}
.m2a_c00296{transform:matrix(0.236445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236445,0.000000,0.000000,0.250000,0,0);}
.m34_c00296{transform:matrix(0.236845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236845,0.000000,0.000000,0.250000,0,0);}
.m4c_c00296{transform:matrix(0.237185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237185,0.000000,0.000000,0.250000,0,0);}
.ma4_c00296{transform:matrix(0.237215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237215,0.000000,0.000000,0.250000,0,0);}
.m76_c00296{transform:matrix(0.237930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237930,0.000000,0.000000,0.250000,0,0);}
.mc_c00296{transform:matrix(0.238275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238275,0.000000,0.000000,0.250000,0,0);}
.ma2_c00296{transform:matrix(0.238640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238640,0.000000,0.000000,0.250000,0,0);}
.m7e_c00296{transform:matrix(0.238855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238855,0.000000,0.000000,0.250000,0,0);}
.mfc_c00296{transform:matrix(0.238876,0.001433,-0.001500,0.249996,0,0);-ms-transform:matrix(0.238876,0.001433,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.238876,0.001433,-0.001500,0.249996,0,0);}
.m95_c00296{transform:matrix(0.239155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239155,0.000000,0.000000,0.250000,0,0);}
.md1_c00296{transform:matrix(0.239227,0.001196,-0.001250,0.249997,0,0);-ms-transform:matrix(0.239227,0.001196,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.239227,0.001196,-0.001250,0.249997,0,0);}
.me1_c00296{transform:matrix(0.239505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239505,0.000000,0.000000,0.250000,0,0);}
.me0_c00296{transform:matrix(0.239545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239545,0.000000,0.000000,0.250000,0,0);}
.m69_c00296{transform:matrix(0.239895,-0.002639,0.002750,0.249985,0,0);-ms-transform:matrix(0.239895,-0.002639,0.002750,0.249985,0,0);-webkit-transform:matrix(0.239895,-0.002639,0.002750,0.249985,0,0);}
.m21_c00296{transform:matrix(0.240295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240295,0.000000,0.000000,0.250000,0,0);}
.m91_c00296{transform:matrix(0.240635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240635,0.000000,0.000000,0.250000,0,0);}
.mc5_c00296{transform:matrix(0.240960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240960,0.000000,0.000000,0.250000,0,0);}
.ma7_c00296{transform:matrix(0.241080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241080,0.000000,0.000000,0.250000,0,0);}
.m49_c00296{transform:matrix(0.241300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241300,0.000000,0.000000,0.250000,0,0);}
.m6_c00296{transform:matrix(0.242015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242015,0.000000,0.000000,0.250000,0,0);}
.m14_c00296{transform:matrix(0.242050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242050,0.000000,0.000000,0.250000,0,0);}
.mf8_c00296{transform:matrix(0.242181,0.001453,-0.001500,0.249996,0,0);-ms-transform:matrix(0.242181,0.001453,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.242181,0.001453,-0.001500,0.249996,0,0);}
.mdf_c00296{transform:matrix(0.242275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242275,0.000000,0.000000,0.250000,0,0);}
.m9e_c00296{transform:matrix(0.242330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242330,0.000000,0.000000,0.250000,0,0);}
.m1e_c00296{transform:matrix(0.242395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242395,0.000000,0.000000,0.250000,0,0);}
.m6e_c00296{transform:matrix(0.243110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243110,0.000000,0.000000,0.250000,0,0);}
.mdb_c00296{transform:matrix(0.243372,0.001217,-0.001250,0.249997,0,0);-ms-transform:matrix(0.243372,0.001217,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.243372,0.001217,-0.001250,0.249997,0,0);}
.m2e_c00296{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m26_c00296{transform:matrix(0.243825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243825,0.000000,0.000000,0.250000,0,0);}
.mc3_c00296{transform:matrix(0.244860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244860,0.000000,0.000000,0.250000,0,0);}
.m9d_c00296{transform:matrix(0.244930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244930,0.000000,0.000000,0.250000,0,0);}
.mee_c00296{transform:matrix(0.245201,0.001471,-0.001500,0.249996,0,0);-ms-transform:matrix(0.245201,0.001471,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.245201,0.001471,-0.001500,0.249996,0,0);}
.m2b_c00296{transform:matrix(0.245485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245485,0.000000,0.000000,0.250000,0,0);}
.m2c_c00296{transform:matrix(0.245705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245705,0.000000,0.000000,0.250000,0,0);}
.mb0_c00296{transform:matrix(0.245920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245920,0.000000,0.000000,0.250000,0,0);}
.mca_c00296{transform:matrix(0.245970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245970,0.000000,0.000000,0.250000,0,0);}
.ma9_c00296{transform:matrix(0.246065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246065,0.000000,0.000000,0.250000,0,0);}
.mb9_c00296{transform:matrix(0.246185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246185,0.000000,0.000000,0.250000,0,0);}
.ma8_c00296{transform:matrix(0.246345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246345,0.000000,0.000000,0.250000,0,0);}
.m87_c00296{transform:matrix(0.246380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246380,0.000000,0.000000,0.250000,0,0);}
.m19_c00296{transform:matrix(0.246620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246620,0.000000,0.000000,0.250000,0,0);}
.m9f_c00296{transform:matrix(0.246630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246630,0.000000,0.000000,0.250000,0,0);}
.m93_c00296{transform:matrix(0.247155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247155,0.000000,0.000000,0.250000,0,0);}
.m66_c00296{transform:matrix(0.247490,-0.002722,0.002750,0.249985,0,0);-ms-transform:matrix(0.247490,-0.002722,0.002750,0.249985,0,0);-webkit-transform:matrix(0.247490,-0.002722,0.002750,0.249985,0,0);}
.m22_c00296{transform:matrix(0.247565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247565,0.000000,0.000000,0.250000,0,0);}
.m35_c00296{transform:matrix(0.247935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247935,0.000000,0.000000,0.250000,0,0);}
.m29_c00296{transform:matrix(0.248005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248005,0.000000,0.000000,0.250000,0,0);}
.m7f_c00296{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m9c_c00296{transform:matrix(0.248635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248635,0.000000,0.000000,0.250000,0,0);}
.mc0_c00296{transform:matrix(0.248710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248710,0.000000,0.000000,0.250000,0,0);}
.ma_c00296{transform:matrix(0.248875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248875,0.000000,0.000000,0.250000,0,0);}
.md7_c00296{transform:matrix(0.249062,0.001245,-0.001250,0.249997,0,0);-ms-transform:matrix(0.249062,0.001245,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.249062,0.001245,-0.001250,0.249997,0,0);}
.m84_c00296{transform:matrix(0.249165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249165,0.000000,0.000000,0.250000,0,0);}
.m5f_c00296{transform:matrix(0.249745,-0.002747,0.002750,0.249985,0,0);-ms-transform:matrix(0.249745,-0.002747,0.002750,0.249985,0,0);-webkit-transform:matrix(0.249745,-0.002747,0.002750,0.249985,0,0);}
.m68_c00296{transform:matrix(0.250445,-0.002755,0.002750,0.249985,0,0);-ms-transform:matrix(0.250445,-0.002755,0.002750,0.249985,0,0);-webkit-transform:matrix(0.250445,-0.002755,0.002750,0.249985,0,0);}
.me6_c00296{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.ma6_c00296{transform:matrix(0.250755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250755,0.000000,0.000000,0.250000,0,0);}
.me2_c00296{transform:matrix(0.250815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250815,0.000000,0.000000,0.250000,0,0);}
.ma1_c00296{transform:matrix(0.251545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251545,0.000000,0.000000,0.250000,0,0);}
.m30_c00296{transform:matrix(0.251720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251720,0.000000,0.000000,0.250000,0,0);}
.mde_c00296{transform:matrix(0.251727,0.001259,-0.001250,0.249997,0,0);-ms-transform:matrix(0.251727,0.001259,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.251727,0.001259,-0.001250,0.249997,0,0);}
.m70_c00296{transform:matrix(0.251950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251950,0.000000,0.000000,0.250000,0,0);}
.m97_c00296{transform:matrix(0.252170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252170,0.000000,0.000000,0.250000,0,0);}
.m2f_c00296{transform:matrix(0.252270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252270,0.000000,0.000000,0.250000,0,0);}
.m1d_c00296{transform:matrix(0.252605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252605,0.000000,0.000000,0.250000,0,0);}
.m1f_c00296{transform:matrix(0.252650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252650,0.000000,0.000000,0.250000,0,0);}
.me9_c00296{transform:matrix(0.254180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254180,0.000000,0.000000,0.250000,0,0);}
.mb3_c00296{transform:matrix(0.255505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255505,0.000000,0.000000,0.250000,0,0);}
.mcd_c00296{transform:matrix(0.256360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256360,0.000000,0.000000,0.250000,0,0);}
.m4_c00296{transform:matrix(0.256490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256490,0.000000,0.000000,0.250000,0,0);}
.m13_c00296{transform:matrix(0.257290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257290,0.000000,0.000000,0.250000,0,0);}
.mc4_c00296{transform:matrix(0.257570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257570,0.000000,0.000000,0.250000,0,0);}
.me4_c00296{transform:matrix(0.257975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257975,0.000000,0.000000,0.250000,0,0);}
.m3c_c00296{transform:matrix(0.258115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258115,0.000000,0.000000,0.250000,0,0);}
.m7c_c00296{transform:matrix(0.258180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258180,0.000000,0.000000,0.250000,0,0);}
.mb4_c00296{transform:matrix(0.258525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258525,0.000000,0.000000,0.250000,0,0);}
.mb2_c00296{transform:matrix(0.259390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259390,0.000000,0.000000,0.250000,0,0);}
.md2_c00296{transform:matrix(0.259442,0.001297,-0.001250,0.249997,0,0);-ms-transform:matrix(0.259442,0.001297,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.259442,0.001297,-0.001250,0.249997,0,0);}
.m79_c00296{transform:matrix(0.259880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259880,0.000000,0.000000,0.250000,0,0);}
.mbd_c00296{transform:matrix(0.260130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260130,0.000000,0.000000,0.250000,0,0);}
.mb1_c00296{transform:matrix(0.260160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260160,0.000000,0.000000,0.250000,0,0);}
.m1c_c00296{transform:matrix(0.260200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260200,0.000000,0.000000,0.250000,0,0);}
.m3e_c00296{transform:matrix(0.260255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260255,0.000000,0.000000,0.250000,0,0);}
.m8e_c00296{transform:matrix(0.260425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260425,0.000000,0.000000,0.250000,0,0);}
.mea_c00296{transform:matrix(0.260435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260435,0.000000,0.000000,0.250000,0,0);}
.m2_c00296{transform:matrix(0.260675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260675,0.000000,0.000000,0.250000,0,0);}
.m10_c00296{transform:matrix(0.261050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261050,0.000000,0.000000,0.250000,0,0);}
.m38_c00296{transform:matrix(0.261335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261335,0.000000,0.000000,0.250000,0,0);}
.md6_c00296{transform:matrix(0.261362,0.001307,-0.001250,0.249997,0,0);-ms-transform:matrix(0.261362,0.001307,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.261362,0.001307,-0.001250,0.249997,0,0);}
.mec_c00296{transform:matrix(0.261535,0.001569,-0.001500,0.249996,0,0);-ms-transform:matrix(0.261535,0.001569,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.261535,0.001569,-0.001500,0.249996,0,0);}
.m85_c00296{transform:matrix(0.261815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261815,0.000000,0.000000,0.250000,0,0);}
.m28_c00296{transform:matrix(0.261965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261965,0.000000,0.000000,0.250000,0,0);}
.m63_c00296{transform:matrix(0.262164,-0.002884,0.002750,0.249985,0,0);-ms-transform:matrix(0.262164,-0.002884,0.002750,0.249985,0,0);-webkit-transform:matrix(0.262164,-0.002884,0.002750,0.249985,0,0);}
.m44_c00296{transform:matrix(0.262210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262210,0.000000,0.000000,0.250000,0,0);}
.m6d_c00296{transform:matrix(0.262380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262380,0.000000,0.000000,0.250000,0,0);}
.m62_c00296{transform:matrix(0.262449,-0.002887,0.002750,0.249985,0,0);-ms-transform:matrix(0.262449,-0.002887,0.002750,0.249985,0,0);-webkit-transform:matrix(0.262449,-0.002887,0.002750,0.249985,0,0);}
.mcf_c00296{transform:matrix(0.262462,0.001312,-0.001250,0.249997,0,0);-ms-transform:matrix(0.262462,0.001312,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.262462,0.001312,-0.001250,0.249997,0,0);}
.m42_c00296{transform:matrix(0.262515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262515,0.000000,0.000000,0.250000,0,0);}
.m3_c00296{transform:matrix(0.262795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262795,0.000000,0.000000,0.250000,0,0);}
.mcc_c00296{transform:matrix(0.262850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262850,0.000000,0.000000,0.250000,0,0);}
.m24_c00296{transform:matrix(0.264050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264050,0.000000,0.000000,0.250000,0,0);}
.meb_c00296{transform:matrix(0.264335,0.001586,-0.001500,0.249996,0,0);-ms-transform:matrix(0.264335,0.001586,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.264335,0.001586,-0.001500,0.249996,0,0);}
.m81_c00296{transform:matrix(0.264575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264575,0.000000,0.000000,0.250000,0,0);}
.m89_c00296{transform:matrix(0.264980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264980,0.000000,0.000000,0.250000,0,0);}
.md8_c00296{transform:matrix(0.265312,0.001327,-0.001250,0.249997,0,0);-ms-transform:matrix(0.265312,0.001327,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.265312,0.001327,-0.001250,0.249997,0,0);}
.m36_c00296{transform:matrix(0.265390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265390,0.000000,0.000000,0.250000,0,0);}
.md3_c00296{transform:matrix(0.265492,0.001327,-0.001250,0.249997,0,0);-ms-transform:matrix(0.265492,0.001327,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.265492,0.001327,-0.001250,0.249997,0,0);}
.m6b_c00296{transform:matrix(0.265644,-0.002922,0.002750,0.249985,0,0);-ms-transform:matrix(0.265644,-0.002922,0.002750,0.249985,0,0);-webkit-transform:matrix(0.265644,-0.002922,0.002750,0.249985,0,0);}
.m1a_c00296{transform:matrix(0.266010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266010,0.000000,0.000000,0.250000,0,0);}
.mbe_c00296{transform:matrix(0.266480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266480,0.000000,0.000000,0.250000,0,0);}
.m6c_c00296{transform:matrix(0.266579,-0.002932,0.002750,0.249985,0,0);-ms-transform:matrix(0.266579,-0.002932,0.002750,0.249985,0,0);-webkit-transform:matrix(0.266579,-0.002932,0.002750,0.249985,0,0);}
.m4b_c00296{transform:matrix(0.266710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266710,0.000000,0.000000,0.250000,0,0);}
.m46_c00296{transform:matrix(0.266720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266720,0.000000,0.000000,0.250000,0,0);}
.md0_c00296{transform:matrix(0.266817,0.001334,-0.001250,0.249997,0,0);-ms-transform:matrix(0.266817,0.001334,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.266817,0.001334,-0.001250,0.249997,0,0);}
.m8_c00296{transform:matrix(0.267455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267455,0.000000,0.000000,0.250000,0,0);}
.m6a_c00296{transform:matrix(0.267714,-0.002945,0.002750,0.249985,0,0);-ms-transform:matrix(0.267714,-0.002945,0.002750,0.249985,0,0);-webkit-transform:matrix(0.267714,-0.002945,0.002750,0.249985,0,0);}
.m25_c00296{transform:matrix(0.267750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267750,0.000000,0.000000,0.250000,0,0);}
.m3f_c00296{transform:matrix(0.267800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267800,0.000000,0.000000,0.250000,0,0);}
.m9a_c00296{transform:matrix(0.267995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267995,0.000000,0.000000,0.250000,0,0);}
.mbf_c00296{transform:matrix(0.268195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268195,0.000000,0.000000,0.250000,0,0);}
.m7a_c00296{transform:matrix(0.268260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268260,0.000000,0.000000,0.250000,0,0);}
.mef_c00296{transform:matrix(0.268300,0.001610,-0.001500,0.249996,0,0);-ms-transform:matrix(0.268300,0.001610,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.268300,0.001610,-0.001500,0.249996,0,0);}
.m8a_c00296{transform:matrix(0.269925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269925,0.000000,0.000000,0.250000,0,0);}
.m23_c00296{transform:matrix(0.270005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270005,0.000000,0.000000,0.250000,0,0);}
.m4a_c00296{transform:matrix(0.270225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270225,0.000000,0.000000,0.250000,0,0);}
.m7b_c00296{transform:matrix(0.270250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270250,0.000000,0.000000,0.250000,0,0);}
.m6f_c00296{transform:matrix(0.270380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270380,0.000000,0.000000,0.250000,0,0);}
.m64_c00296{transform:matrix(0.270549,-0.002976,0.002750,0.249985,0,0);-ms-transform:matrix(0.270549,-0.002976,0.002750,0.249985,0,0);-webkit-transform:matrix(0.270549,-0.002976,0.002750,0.249985,0,0);}
.m45_c00296{transform:matrix(0.270690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270690,0.000000,0.000000,0.250000,0,0);}
.m3a_c00296{transform:matrix(0.271400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271400,0.000000,0.000000,0.250000,0,0);}
.m73_c00296{transform:matrix(0.271490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271490,0.000000,0.000000,0.250000,0,0);}
.m47_c00296{transform:matrix(0.271560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271560,0.000000,0.000000,0.250000,0,0);}
.m72_c00296{transform:matrix(0.271680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271680,0.000000,0.000000,0.250000,0,0);}
.m80_c00296{transform:matrix(0.272690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272690,0.000000,0.000000,0.250000,0,0);}
.md5_c00296{transform:matrix(0.272852,0.001364,-0.001250,0.249997,0,0);-ms-transform:matrix(0.272852,0.001364,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.272852,0.001364,-0.001250,0.249997,0,0);}
.m7_c00296{transform:matrix(0.273640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273640,0.000000,0.000000,0.250000,0,0);}
.m17_c00296{transform:matrix(0.275200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275200,0.000000,0.000000,0.250000,0,0);}
.mc9_c00296{transform:matrix(0.275370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275370,0.000000,0.000000,0.250000,0,0);}
.mc6_c00296{transform:matrix(0.276465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276465,0.000000,0.000000,0.250000,0,0);}
.mcb_c00296{transform:matrix(0.276605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276605,0.000000,0.000000,0.250000,0,0);}
.m90_c00296{transform:matrix(0.276820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276820,0.000000,0.000000,0.250000,0,0);}
.mb_c00296{transform:matrix(0.277230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277230,0.000000,0.000000,0.250000,0,0);}
.m9_c00296{transform:matrix(0.277400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277400,0.000000,0.000000,0.250000,0,0);}
.mc2_c00296{transform:matrix(0.277860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277860,0.000000,0.000000,0.250000,0,0);}
.mb7_c00296{transform:matrix(0.278290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278290,0.000000,0.000000,0.250000,0,0);}
.m40_c00296{transform:matrix(0.278475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278475,0.000000,0.000000,0.250000,0,0);}
.m5_c00296{transform:matrix(0.278490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278490,0.000000,0.000000,0.250000,0,0);}
.mb8_c00296{transform:matrix(0.278810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278810,0.000000,0.000000,0.250000,0,0);}
.mb6_c00296{transform:matrix(0.279065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279065,0.000000,0.000000,0.250000,0,0);}
.mba_c00296{transform:matrix(0.280055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280055,0.000000,0.000000,0.250000,0,0);}
.m12_c00296{transform:matrix(0.280180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280180,0.000000,0.000000,0.250000,0,0);}
.mad_c00296{transform:matrix(0.280840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280840,0.000000,0.000000,0.250000,0,0);}
.mf0_c00296{transform:matrix(0.281330,0.001688,-0.001500,0.249996,0,0);-ms-transform:matrix(0.281330,0.001688,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.281330,0.001688,-0.001500,0.249996,0,0);}
.m3b_c00296{transform:matrix(0.281835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281835,0.000000,0.000000,0.250000,0,0);}
.me_c00296{transform:matrix(0.286365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286365,0.000000,0.000000,0.250000,0,0);}
.m18_c00296{transform:matrix(0.287450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287450,0.000000,0.000000,0.250000,0,0);}
.mf_c00296{transform:matrix(0.289560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289560,0.000000,0.000000,0.250000,0,0);}
.m43_c00296{transform:matrix(0.289630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289630,0.000000,0.000000,0.250000,0,0);}
.m39_c00296{transform:matrix(0.292260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292260,0.000000,0.000000,0.250000,0,0);}
.m16_c00296{transform:matrix(0.294380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294380,0.000000,0.000000,0.250000,0,0);}
.m41_c00296{transform:matrix(0.297030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297030,0.000000,0.000000,0.250000,0,0);}
.md_c00296{transform:matrix(0.297415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297415,0.000000,0.000000,0.250000,0,0);}
.m9b_c00296{transform:matrix(0.297710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297710,0.000000,0.000000,0.250000,0,0);}
.m15_c00296{transform:matrix(0.300965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300965,0.000000,0.000000,0.250000,0,0);}
.m5b_c00296{transform:matrix(0.326725,-0.003594,0.002750,0.249985,0,0);-ms-transform:matrix(0.326725,-0.003594,0.002750,0.249985,0,0);-webkit-transform:matrix(0.326725,-0.003594,0.002750,0.249985,0,0);}
.m59_c00296{transform:matrix(0.327005,-0.003597,0.002750,0.249985,0,0);-ms-transform:matrix(0.327005,-0.003597,0.002750,0.249985,0,0);-webkit-transform:matrix(0.327005,-0.003597,0.002750,0.249985,0,0);}
.mbb_c00296{transform:matrix(0.329340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329340,0.000000,0.000000,0.250000,0,0);}
.m5e_c00296{transform:matrix(0.334465,-0.003679,0.002750,0.249985,0,0);-ms-transform:matrix(0.334465,-0.003679,0.002750,0.249985,0,0);-webkit-transform:matrix(0.334465,-0.003679,0.002750,0.249985,0,0);}
.m58_c00296{transform:matrix(0.335600,-0.003692,0.002750,0.249985,0,0);-ms-transform:matrix(0.335600,-0.003692,0.002750,0.249985,0,0);-webkit-transform:matrix(0.335600,-0.003692,0.002750,0.249985,0,0);}
.m5a_c00296{transform:matrix(0.342874,-0.003772,0.002750,0.249985,0,0);-ms-transform:matrix(0.342874,-0.003772,0.002750,0.249985,0,0);-webkit-transform:matrix(0.342874,-0.003772,0.002750,0.249985,0,0);}
.mbc_c00296{transform:matrix(0.347945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347945,0.000000,0.000000,0.250000,0,0);}
.m5c_c00296{transform:matrix(0.352559,-0.003878,0.002750,0.249985,0,0);-ms-transform:matrix(0.352559,-0.003878,0.002750,0.249985,0,0);-webkit-transform:matrix(0.352559,-0.003878,0.002750,0.249985,0,0);}
.mac_c00296{transform:matrix(0.356285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356285,0.000000,0.000000,0.250000,0,0);}
.maf_c00296{transform:matrix(0.365365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365365,0.000000,0.000000,0.250000,0,0);}
.m5d_c00296{transform:matrix(0.366863,-0.004035,0.002750,0.249985,0,0);-ms-transform:matrix(0.366863,-0.004035,0.002750,0.249985,0,0);-webkit-transform:matrix(0.366863,-0.004035,0.002750,0.249985,0,0);}
.m55_c00296{transform:matrix(0.373942,-0.004113,0.002750,0.249985,0,0);-ms-transform:matrix(0.373942,-0.004113,0.002750,0.249985,0,0);-webkit-transform:matrix(0.373942,-0.004113,0.002750,0.249985,0,0);}
.m56_c00296{transform:matrix(0.448598,-0.004935,0.002750,0.249985,0,0);-ms-transform:matrix(0.448598,-0.004935,0.002750,0.249985,0,0);-webkit-transform:matrix(0.448598,-0.004935,0.002750,0.249985,0,0);}
.m54_c00296{transform:matrix(0.473141,-0.005205,0.002750,0.249985,0,0);-ms-transform:matrix(0.473141,-0.005205,0.002750,0.249985,0,0);-webkit-transform:matrix(0.473141,-0.005205,0.002750,0.249985,0,0);}
.m61_c00296{transform:matrix(0.474611,-0.005221,0.002750,0.249985,0,0);-ms-transform:matrix(0.474611,-0.005221,0.002750,0.249985,0,0);-webkit-transform:matrix(0.474611,-0.005221,0.002750,0.249985,0,0);}
.m60_c00296{transform:matrix(0.567446,-0.006242,0.002750,0.249985,0,0);-ms-transform:matrix(0.567446,-0.006242,0.002750,0.249985,0,0);-webkit-transform:matrix(0.567446,-0.006242,0.002750,0.249985,0,0);}
.m53_c00296{transform:matrix(0.620472,-0.006825,0.002750,0.249985,0,0);-ms-transform:matrix(0.620472,-0.006825,0.002750,0.249985,0,0);-webkit-transform:matrix(0.620472,-0.006825,0.002750,0.249985,0,0);}
.m57_c00296{transform:matrix(0.953607,-0.010490,0.002750,0.249985,0,0);-ms-transform:matrix(0.953607,-0.010490,0.002750,0.249985,0,0);-webkit-transform:matrix(0.953607,-0.010490,0.002750,0.249985,0,0);}
.v0_c00296{vertical-align:0.000000px;}
.ls0_c00296{letter-spacing:0.000000px;}
.sc__c00296{text-shadow:none;}
.sc0_c00296{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__c00296{-webkit-text-stroke:0px transparent;}
.sc0_c00296{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00296{word-spacing:0.000000px;}
.fc0_c00296{color:transparent;}
.fs4_c00296{font-size:24.001452px;}
.fs2_c00296{font-size:66.000000px;}
.fs1_c00296{font-size:72.000000px;}
.fs8_c00296{font-size:72.000900px;}
.fsa_c00296{font-size:72.001296px;}
.fs5_c00296{font-size:72.004356px;}
.fs0_c00296{font-size:78.000000px;}
.fs9_c00296{font-size:78.000975px;}
.fs6_c00296{font-size:84.000000px;}
.fsb_c00296{font-size:84.001512px;}
.fs7_c00296{font-size:90.000000px;}
.fs3_c00296{font-size:102.006171px;}
.y0_c00296{bottom:0.000000px;}
.y65_c00296{bottom:39.955080px;}
.y64_c00296{bottom:67.407426px;}
.y63_c00296{bottom:67.933944px;}
.y62_c00296{bottom:68.251464px;}
.y61_c00296{bottom:68.987016px;}
.y60_c00296{bottom:69.184611px;}
.y5f_c00296{bottom:69.443793px;}
.y5e_c00296{bottom:69.568551px;}
.y5d_c00296{bottom:69.847182px;}
.y5c_c00296{bottom:70.240887px;}
.y5b_c00296{bottom:70.898607px;}
.y5a_c00296{bottom:71.550000px;}
.y59_c00296{bottom:100.777509px;}
.y58_c00296{bottom:101.558322px;}
.y57_c00296{bottom:101.963304px;}
.y56_c00296{bottom:102.230622px;}
.y55_c00296{bottom:102.758724px;}
.y54_c00296{bottom:103.410000px;}
.y53_c00296{bottom:133.939500px;}
.y52_c00296{bottom:165.210000px;}
.y50_c00296{bottom:197.385660px;}
.y51_c00296{bottom:197.385960px;}
.y4d_c00296{bottom:197.386102px;}
.y4e_c00296{bottom:197.386253px;}
.y4f_c00296{bottom:197.386260px;}
.y4c_c00296{bottom:226.313880px;}
.y4b_c00296{bottom:226.588020px;}
.y4a_c00296{bottom:226.809360px;}
.y49_c00296{bottom:227.087550px;}
.y48_c00296{bottom:227.519558px;}
.y47_c00296{bottom:227.623508px;}
.y46_c00296{bottom:228.181035px;}
.y45_c00296{bottom:228.619800px;}
.y44_c00296{bottom:228.789908px;}
.y43_c00296{bottom:229.228628px;}
.y42_c00296{bottom:229.770000px;}
.y41_c00296{bottom:259.951500px;}
.y40_c00296{bottom:291.627000px;}
.y3f_c00296{bottom:324.279000px;}
.y3e_c00296{bottom:353.263500px;}
.y3d_c00296{bottom:353.458500px;}
.y3c_c00296{bottom:354.058500px;}
.y3b_c00296{bottom:354.714000px;}
.y3a_c00296{bottom:355.375500px;}
.y39_c00296{bottom:355.492500px;}
.y38_c00296{bottom:355.773000px;}
.y37_c00296{bottom:356.097000px;}
.y36_c00296{bottom:356.557500px;}
.y35_c00296{bottom:357.210000px;}
.y34_c00296{bottom:387.571500px;}
.y33_c00296{bottom:419.289000px;}
.y32_c00296{bottom:451.608000px;}
.y31_c00296{bottom:483.330000px;}
.y30_c00296{bottom:516.061500px;}
.y2f_c00296{bottom:545.868000px;}
.y2e_c00296{bottom:577.140000px;}
.y2d_c00296{bottom:608.776500px;}
.y2c_c00296{bottom:640.663500px;}
.y2b_c00296{bottom:672.024000px;}
.y28_c00296{bottom:704.018928px;}
.y21_c00296{bottom:704.018998px;}
.y29_c00296{bottom:704.019058px;}
.y20_c00296{bottom:704.019154px;}
.y2a_c00296{bottom:704.019369px;}
.y26_c00296{bottom:704.019547px;}
.y27_c00296{bottom:704.019574px;}
.y22_c00296{bottom:704.019682px;}
.y23_c00296{bottom:704.019690px;}
.y25_c00296{bottom:704.020030px;}
.y24_c00296{bottom:704.020393px;}
.y10_c00296{bottom:738.848650px;}
.y11_c00296{bottom:738.848814px;}
.y13_c00296{bottom:738.849097px;}
.y12_c00296{bottom:738.849204px;}
.y15_c00296{bottom:738.849544px;}
.y14_c00296{bottom:738.849621px;}
.y16_c00296{bottom:738.849844px;}
.y17_c00296{bottom:738.850144px;}
.y18_c00296{bottom:738.850534px;}
.y19_c00296{bottom:738.850924px;}
.y1a_c00296{bottom:738.851224px;}
.y1b_c00296{bottom:738.851328px;}
.y1c_c00296{bottom:738.851718px;}
.y1e_c00296{bottom:738.851835px;}
.y1f_c00296{bottom:738.851908px;}
.y1d_c00296{bottom:738.852361px;}
.yf_c00296{bottom:758.197294px;}
.ye_c00296{bottom:758.197881px;}
.yd_c00296{bottom:758.198367px;}
.ya_c00296{bottom:796.233000px;}
.yb_c00296{bottom:797.596114px;}
.yc_c00296{bottom:803.458828px;}
.y9_c00296{bottom:832.272000px;}
.y8_c00296{bottom:863.971500px;}
.y7_c00296{bottom:895.548000px;}
.y6_c00296{bottom:926.499000px;}
.y5_c00296{bottom:958.579500px;}
.y4_c00296{bottom:990.471000px;}
.y3_c00296{bottom:1021.813500px;}
.y2_c00296{bottom:1053.820500px;}
.y1_c00296{bottom:1121.967000px;}
.h6_c00296{height:24.001452px;}
.h4_c00296{height:66.000000px;}
.h3_c00296{height:72.000000px;}
.ha_c00296{height:72.000900px;}
.hc_c00296{height:72.001296px;}
.h7_c00296{height:72.004356px;}
.h2_c00296{height:78.000000px;}
.hb_c00296{height:78.000975px;}
.h8_c00296{height:84.000000px;}
.hd_c00296{height:84.001512px;}
.h9_c00296{height:90.000000px;}
.h5_c00296{height:102.006171px;}
.h1_c00296{height:1165.500000px;}
.h0_c00296{height:1165.800000px;}
.w0_c00296{width:915.000000px;}
.x0_c00296{left:0.000000px;}
.x3_c00296{left:148.230000px;}
.x25_c00296{left:193.860000px;}
.xb_c00296{left:256.230000px;}
.x4_c00296{left:257.850000px;}
.x56_c00296{left:278.640000px;}
.x64_c00296{left:289.440000px;}
.x48_c00296{left:299.430000px;}
.xc_c00296{left:302.670000px;}
.x20_c00296{left:322.110000px;}
.x26_c00296{left:324.810000px;}
.x15_c00296{left:332.640000px;}
.x19_c00296{left:334.530000px;}
.x68_c00296{left:343.369500px;}
.x2a_c00296{left:344.790000px;}
.x5_c00296{left:346.140000px;}
.x6b_c00296{left:354.242258px;}
.x21_c00296{left:355.860000px;}
.x55_c00296{left:365.040000px;}
.xd_c00296{left:367.200000px;}
.x57_c00296{left:375.840000px;}
.x35_c00296{left:377.466893px;}
.x44_c00296{left:378.540000px;}
.x31_c00296{left:379.545000px;}
.x62_c00296{left:385.287000px;}
.x5e_c00296{left:387.091500px;}
.x1_c00296{left:389.070000px;}
.x6c_c00296{left:390.963173px;}
.x6d_c00296{left:397.980000px;}
.xe_c00296{left:399.600000px;}
.x33_c00296{left:400.958414px;}
.x36_c00296{left:402.848462px;}
.x5b_c00296{left:408.780000px;}
.x37_c00296{left:412.839666px;}
.x65_c00296{left:419.850000px;}
.x22_c00296{left:421.470000px;}
.x2_c00296{left:424.170000px;}
.x38_c00296{left:427.149899px;}
.x71_c00296{left:431.377500px;}
.x6_c00296{left:432.540000px;}
.x5f_c00296{left:433.798500px;}
.x45_c00296{left:443.610000px;}
.x49_c00296{left:445.500000px;}
.x60_c00296{left:453.240000px;}
.x2b_c00296{left:454.680000px;}
.x70_c00296{left:455.950500px;}
.x39_c00296{left:462.792705px;}
.x4b_c00296{left:464.940000px;}
.x1a_c00296{left:467.370000px;}
.x6e_c00296{left:475.200000px;}
.x16_c00296{left:476.550000px;}
.x42_c00296{left:478.456683px;}
.x1b_c00296{left:488.160000px;}
.x3a_c00296{left:490.334538px;}
.xf_c00296{left:497.610000px;}
.x34_c00296{left:499.244310px;}
.x3b_c00296{left:501.135842px;}
.x27_c00296{left:508.680000px;}
.x17_c00296{left:509.760000px;}
.x3c_c00296{left:511.937145px;}
.x10_c00296{left:519.210000px;}
.x3d_c00296{left:521.928349px;}
.x66_c00296{left:529.740000px;}
.x1c_c00296{left:530.820000px;}
.x3e_c00296{left:531.919554px;}
.x28_c00296{left:541.890000px;}
.x7_c00296{left:552.690000px;}
.x3f_c00296{left:555.140859px;}
.x61_c00296{left:563.395500px;}
.x18_c00296{left:565.920000px;}
.x8_c00296{left:575.100000px;}
.x4c_c00296{left:576.180000px;}
.x40_c00296{left:586.193104px;}
.x2c_c00296{left:587.790000px;}
.x11_c00296{left:596.430000px;}
.x69_c00296{left:597.439500px;}
.x41_c00296{left:604.283799px;}
.x29_c00296{left:607.770000px;}
.x2d_c00296{left:608.850000px;}
.x4d_c00296{left:618.840000px;}
.x12_c00296{left:630.180000px;}
.x63_c00296{left:639.630000px;}
.x1d_c00296{left:640.710000px;}
.x2e_c00296{left:651.240000px;}
.x4e_c00296{left:662.310000px;}
.x9_c00296{left:663.390000px;}
.x52_c00296{left:665.550000px;}
.x23_c00296{left:673.380000px;}
.x58_c00296{left:674.460000px;}
.x5c_c00296{left:684.450000px;}
.x59_c00296{left:694.440000px;}
.x6f_c00296{left:695.520000px;}
.x72_c00296{left:697.330500px;}
.x5d_c00296{left:705.240000px;}
.x53_c00296{left:706.320000px;}
.x24_c00296{left:708.210000px;}
.x1e_c00296{left:717.390000px;}
.x2f_c00296{left:728.730000px;}
.x54_c00296{left:731.160000px;}
.x13_c00296{left:739.530000px;}
.x4f_c00296{left:750.060000px;}
.x67_c00296{left:751.410000px;}
.x46_c00296{left:760.860000px;}
.xa_c00296{left:773.550000px;}
.x5a_c00296{left:782.460000px;}
.x50_c00296{left:784.350000px;}
.x47_c00296{left:795.690000px;}
.x30_c00296{left:804.870000px;}
.x14_c00296{left:806.760000px;}
.x1f_c00296{left:807.840000px;}
.x43_c00296{left:816.786619px;}
.x6a_c00296{left:838.575000px;}
.x4a_c00296{left:877.500000px;}
.x32_c00296{left:912.519000px;}
.x51_c00296{left:914.220000px;}
@media print{
.v0_c00296{vertical-align:0.000000pt;}
.ls0_c00296{letter-spacing:0.000000pt;}
.ws0_c00296{word-spacing:0.000000pt;}
.fs4_c00296{font-size:21.334624pt;}
.fs2_c00296{font-size:58.666667pt;}
.fs1_c00296{font-size:64.000000pt;}
.fs8_c00296{font-size:64.000800pt;}
.fsa_c00296{font-size:64.001152pt;}
.fs5_c00296{font-size:64.003872pt;}
.fs0_c00296{font-size:69.333333pt;}
.fs9_c00296{font-size:69.334200pt;}
.fs6_c00296{font-size:74.666667pt;}
.fsb_c00296{font-size:74.668011pt;}
.fs7_c00296{font-size:80.000000pt;}
.fs3_c00296{font-size:90.672152pt;}
.y0_c00296{bottom:0.000000pt;}
.y65_c00296{bottom:35.515627pt;}
.y64_c00296{bottom:59.917712pt;}
.y63_c00296{bottom:60.385728pt;}
.y62_c00296{bottom:60.667968pt;}
.y61_c00296{bottom:61.321792pt;}
.y60_c00296{bottom:61.497432pt;}
.y5f_c00296{bottom:61.727816pt;}
.y5e_c00296{bottom:61.838712pt;}
.y5d_c00296{bottom:62.086384pt;}
.y5c_c00296{bottom:62.436344pt;}
.y5b_c00296{bottom:63.020984pt;}
.y5a_c00296{bottom:63.600000pt;}
.y59_c00296{bottom:89.580008pt;}
.y58_c00296{bottom:90.274064pt;}
.y57_c00296{bottom:90.634048pt;}
.y56_c00296{bottom:90.871664pt;}
.y55_c00296{bottom:91.341088pt;}
.y54_c00296{bottom:91.920000pt;}
.y53_c00296{bottom:119.057333pt;}
.y52_c00296{bottom:146.853333pt;}
.y50_c00296{bottom:175.453920pt;}
.y51_c00296{bottom:175.454187pt;}
.y4d_c00296{bottom:175.454313pt;}
.y4e_c00296{bottom:175.454447pt;}
.y4f_c00296{bottom:175.454453pt;}
.y4c_c00296{bottom:201.167893pt;}
.y4b_c00296{bottom:201.411573pt;}
.y4a_c00296{bottom:201.608320pt;}
.y49_c00296{bottom:201.855600pt;}
.y48_c00296{bottom:202.239607pt;}
.y47_c00296{bottom:202.332007pt;}
.y46_c00296{bottom:202.827587pt;}
.y45_c00296{bottom:203.217600pt;}
.y44_c00296{bottom:203.368807pt;}
.y43_c00296{bottom:203.758780pt;}
.y42_c00296{bottom:204.240000pt;}
.y41_c00296{bottom:231.068000pt;}
.y40_c00296{bottom:259.224000pt;}
.y3f_c00296{bottom:288.248000pt;}
.y3e_c00296{bottom:314.012000pt;}
.y3d_c00296{bottom:314.185333pt;}
.y3c_c00296{bottom:314.718667pt;}
.y3b_c00296{bottom:315.301333pt;}
.y3a_c00296{bottom:315.889333pt;}
.y39_c00296{bottom:315.993333pt;}
.y38_c00296{bottom:316.242667pt;}
.y37_c00296{bottom:316.530667pt;}
.y36_c00296{bottom:316.940000pt;}
.y35_c00296{bottom:317.520000pt;}
.y34_c00296{bottom:344.508000pt;}
.y33_c00296{bottom:372.701333pt;}
.y32_c00296{bottom:401.429333pt;}
.y31_c00296{bottom:429.626667pt;}
.y30_c00296{bottom:458.721333pt;}
.y2f_c00296{bottom:485.216000pt;}
.y2e_c00296{bottom:513.013333pt;}
.y2d_c00296{bottom:541.134667pt;}
.y2c_c00296{bottom:569.478667pt;}
.y2b_c00296{bottom:597.354667pt;}
.y28_c00296{bottom:625.794603pt;}
.y21_c00296{bottom:625.794665pt;}
.y29_c00296{bottom:625.794719pt;}
.y20_c00296{bottom:625.794804pt;}
.y2a_c00296{bottom:625.794995pt;}
.y26_c00296{bottom:625.795153pt;}
.y27_c00296{bottom:625.795177pt;}
.y22_c00296{bottom:625.795273pt;}
.y23_c00296{bottom:625.795280pt;}
.y25_c00296{bottom:625.795583pt;}
.y24_c00296{bottom:625.795905pt;}
.y10_c00296{bottom:656.754356pt;}
.y11_c00296{bottom:656.754501pt;}
.y13_c00296{bottom:656.754753pt;}
.y12_c00296{bottom:656.754848pt;}
.y15_c00296{bottom:656.755151pt;}
.y14_c00296{bottom:656.755219pt;}
.y16_c00296{bottom:656.755417pt;}
.y17_c00296{bottom:656.755684pt;}
.y18_c00296{bottom:656.756031pt;}
.y19_c00296{bottom:656.756377pt;}
.y1a_c00296{bottom:656.756644pt;}
.y1b_c00296{bottom:656.756736pt;}
.y1c_c00296{bottom:656.757083pt;}
.y1e_c00296{bottom:656.757187pt;}
.y1f_c00296{bottom:656.757252pt;}
.y1d_c00296{bottom:656.757655pt;}
.yf_c00296{bottom:673.953151pt;}
.ye_c00296{bottom:673.953672pt;}
.yd_c00296{bottom:673.954104pt;}
.ya_c00296{bottom:707.762667pt;}
.yb_c00296{bottom:708.974324pt;}
.yc_c00296{bottom:714.185625pt;}
.y9_c00296{bottom:739.797333pt;}
.y8_c00296{bottom:767.974667pt;}
.y7_c00296{bottom:796.042667pt;}
.y6_c00296{bottom:823.554667pt;}
.y5_c00296{bottom:852.070667pt;}
.y4_c00296{bottom:880.418667pt;}
.y3_c00296{bottom:908.278667pt;}
.y2_c00296{bottom:936.729333pt;}
.y1_c00296{bottom:997.304000pt;}
.h6_c00296{height:21.334624pt;}
.h4_c00296{height:58.666667pt;}
.h3_c00296{height:64.000000pt;}
.ha_c00296{height:64.000800pt;}
.hc_c00296{height:64.001152pt;}
.h7_c00296{height:64.003872pt;}
.h2_c00296{height:69.333333pt;}
.hb_c00296{height:69.334200pt;}
.h8_c00296{height:74.666667pt;}
.hd_c00296{height:74.668011pt;}
.h9_c00296{height:80.000000pt;}
.h5_c00296{height:90.672152pt;}
.h1_c00296{height:1036.000000pt;}
.h0_c00296{height:1036.266667pt;}
.w0_c00296{width:813.333333pt;}
.x0_c00296{left:0.000000pt;}
.x3_c00296{left:131.760000pt;}
.x25_c00296{left:172.320000pt;}
.xb_c00296{left:227.760000pt;}
.x4_c00296{left:229.200000pt;}
.x56_c00296{left:247.680000pt;}
.x64_c00296{left:257.280000pt;}
.x48_c00296{left:266.160000pt;}
.xc_c00296{left:269.040000pt;}
.x20_c00296{left:286.320000pt;}
.x26_c00296{left:288.720000pt;}
.x15_c00296{left:295.680000pt;}
.x19_c00296{left:297.360000pt;}
.x68_c00296{left:305.217333pt;}
.x2a_c00296{left:306.480000pt;}
.x5_c00296{left:307.680000pt;}
.x6b_c00296{left:314.882007pt;}
.x21_c00296{left:316.320000pt;}
.x55_c00296{left:324.480000pt;}
.xd_c00296{left:326.400000pt;}
.x57_c00296{left:334.080000pt;}
.x35_c00296{left:335.526127pt;}
.x44_c00296{left:336.480000pt;}
.x31_c00296{left:337.373333pt;}
.x62_c00296{left:342.477333pt;}
.x5e_c00296{left:344.081333pt;}
.x1_c00296{left:345.840000pt;}
.x6c_c00296{left:347.522820pt;}
.x6d_c00296{left:353.760000pt;}
.xe_c00296{left:355.200000pt;}
.x33_c00296{left:356.407479pt;}
.x36_c00296{left:358.087521pt;}
.x5b_c00296{left:363.360000pt;}
.x37_c00296{left:366.968592pt;}
.x65_c00296{left:373.200000pt;}
.x22_c00296{left:374.640000pt;}
.x2_c00296{left:377.040000pt;}
.x38_c00296{left:379.688799pt;}
.x71_c00296{left:383.446667pt;}
.x6_c00296{left:384.480000pt;}
.x5f_c00296{left:385.598667pt;}
.x45_c00296{left:394.320000pt;}
.x49_c00296{left:396.000000pt;}
.x60_c00296{left:402.880000pt;}
.x2b_c00296{left:404.160000pt;}
.x70_c00296{left:405.289333pt;}
.x39_c00296{left:411.371293pt;}
.x4b_c00296{left:413.280000pt;}
.x1a_c00296{left:415.440000pt;}
.x6e_c00296{left:422.400000pt;}
.x16_c00296{left:423.600000pt;}
.x42_c00296{left:425.294829pt;}
.x1b_c00296{left:433.920000pt;}
.x3a_c00296{left:435.852923pt;}
.xf_c00296{left:442.320000pt;}
.x34_c00296{left:443.772720pt;}
.x3b_c00296{left:445.454081pt;}
.x27_c00296{left:452.160000pt;}
.x17_c00296{left:453.120000pt;}
.x3c_c00296{left:455.055240pt;}
.x10_c00296{left:461.520000pt;}
.x3d_c00296{left:463.936311pt;}
.x66_c00296{left:470.880000pt;}
.x1c_c00296{left:471.840000pt;}
.x3e_c00296{left:472.817381pt;}
.x28_c00296{left:481.680000pt;}
.x7_c00296{left:491.280000pt;}
.x3f_c00296{left:493.458541pt;}
.x61_c00296{left:500.796000pt;}
.x18_c00296{left:503.040000pt;}
.x8_c00296{left:511.200000pt;}
.x4c_c00296{left:512.160000pt;}
.x40_c00296{left:521.060537pt;}
.x2c_c00296{left:522.480000pt;}
.x11_c00296{left:530.160000pt;}
.x69_c00296{left:531.057333pt;}
.x41_c00296{left:537.141155pt;}
.x29_c00296{left:540.240000pt;}
.x2d_c00296{left:541.200000pt;}
.x4d_c00296{left:550.080000pt;}
.x12_c00296{left:560.160000pt;}
.x63_c00296{left:568.560000pt;}
.x1d_c00296{left:569.520000pt;}
.x2e_c00296{left:578.880000pt;}
.x4e_c00296{left:588.720000pt;}
.x9_c00296{left:589.680000pt;}
.x52_c00296{left:591.600000pt;}
.x23_c00296{left:598.560000pt;}
.x58_c00296{left:599.520000pt;}
.x5c_c00296{left:608.400000pt;}
.x59_c00296{left:617.280000pt;}
.x6f_c00296{left:618.240000pt;}
.x72_c00296{left:619.849333pt;}
.x5d_c00296{left:626.880000pt;}
.x53_c00296{left:627.840000pt;}
.x24_c00296{left:629.520000pt;}
.x1e_c00296{left:637.680000pt;}
.x2f_c00296{left:647.760000pt;}
.x54_c00296{left:649.920000pt;}
.x13_c00296{left:657.360000pt;}
.x4f_c00296{left:666.720000pt;}
.x67_c00296{left:667.920000pt;}
.x46_c00296{left:676.320000pt;}
.xa_c00296{left:687.600000pt;}
.x5a_c00296{left:695.520000pt;}
.x50_c00296{left:697.200000pt;}
.x47_c00296{left:707.280000pt;}
.x30_c00296{left:715.440000pt;}
.x14_c00296{left:717.120000pt;}
.x1f_c00296{left:718.080000pt;}
.x43_c00296{left:726.032551pt;}
.x6a_c00296{left:745.400000pt;}
.x4a_c00296{left:780.000000pt;}
.x32_c00296{left:811.128000pt;}
.x51_c00296{left:812.640000pt;}
}





/* 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_c00297 {
    display:none;
  }
  .loading-indicator_c00297.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00297 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_c00297 { 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_c00297" -> "#page-container .classname_c00297")
 */
.pf_c00297 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00297 { /* 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_c00297.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00297 { /* 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_c00297 { /* 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_c00297 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00297 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00297 {overflow:visible;}
  }
}
.c_c00297 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00297 { /* 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_c00297:after { /* webkit #35443 */
  content: '';
}
.t_c00297:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00297 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 */
}
.__c00297 { /* 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_c00297 { /* info for Javascript */
  display:none;
}
.l_c00297 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00297 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00297 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00297: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_c00297 {
    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_c00297.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00297.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_c00297 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00297{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00297;src:url('chunks/assets/font_cfe63ee56e9e10a97d33a3db.woff2')format("woff");}.ff1_c00297{font-family:ff1_c00297;line-height:1.000000;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;}
.m49_c00297{transform:matrix(0.007069,-0.000092,0.003250,0.249979,0,0);-ms-transform:matrix(0.007069,-0.000092,0.003250,0.249979,0,0);-webkit-transform:matrix(0.007069,-0.000092,0.003250,0.249979,0,0);}
.m5_c00297{transform:matrix(0.031625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.031625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.031625,0.000000,0.000000,0.250000,0,0);}
.m24_c00297{transform:matrix(0.040560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.040560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.040560,0.000000,0.000000,0.250000,0,0);}
.m1_c00297{transform:matrix(0.056250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.056250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.056250,0.000000,0.000000,0.250000,0,0);}
.m68_c00297{transform:matrix(0.077290,-0.001778,0.005748,0.249934,0,0);-ms-transform:matrix(0.077290,-0.001778,0.005748,0.249934,0,0);-webkit-transform:matrix(0.077290,-0.001778,0.005748,0.249934,0,0);}
.me_c00297{transform:matrix(0.087465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087465,0.000000,0.000000,0.250000,0,0);}
.m2c_c00297{transform:matrix(0.094930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.094930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.094930,0.000000,0.000000,0.250000,0,0);}
.m7e_c00297{transform:matrix(0.098995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098995,0.000000,0.000000,0.250000,0,0);}
.m34_c00297{transform:matrix(0.108375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108375,0.000000,0.000000,0.250000,0,0);}
.m31_c00297{transform:matrix(0.111370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111370,0.000000,0.000000,0.250000,0,0);}
.m25_c00297{transform:matrix(0.112500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112500,0.000000,0.000000,0.250000,0,0);}
.m4_c00297{transform:matrix(0.113135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113135,0.000000,0.000000,0.250000,0,0);}
.md_c00297{transform:matrix(0.117045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117045,0.000000,0.000000,0.250000,0,0);}
.m69_c00297{transform:matrix(0.134140,-0.003085,0.005748,0.249934,0,0);-ms-transform:matrix(0.134140,-0.003085,0.005748,0.249934,0,0);-webkit-transform:matrix(0.134140,-0.003085,0.005748,0.249934,0,0);}
.m7c_c00297{transform:matrix(0.135470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135470,0.000000,0.000000,0.250000,0,0);}
.m2f_c00297{transform:matrix(0.162250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162250,0.000000,0.000000,0.250000,0,0);}
.m17_c00297{transform:matrix(0.177880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177880,0.000000,0.000000,0.250000,0,0);}
.m41_c00297{transform:matrix(0.180625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180625,0.000000,0.000000,0.250000,0,0);}
.m66_c00297{transform:matrix(0.181072,-0.004165,0.005748,0.249934,0,0);-ms-transform:matrix(0.181072,-0.004165,0.005748,0.249934,0,0);-webkit-transform:matrix(0.181072,-0.004165,0.005748,0.249934,0,0);}
.m54_c00297{transform:matrix(0.192095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192095,0.000000,0.000000,0.250000,0,0);}
.m14_c00297{transform:matrix(0.192240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192240,0.000000,0.000000,0.250000,0,0);}
.m3a_c00297{transform:matrix(0.193550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193550,0.000000,0.000000,0.250000,0,0);}
.m50_c00297{transform:matrix(0.198005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198005,0.000000,0.000000,0.250000,0,0);}
.m8c_c00297{transform:matrix(0.205230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205230,0.000000,0.000000,0.250000,0,0);}
.m73_c00297{transform:matrix(0.211839,-0.004872,0.005748,0.249934,0,0);-ms-transform:matrix(0.211839,-0.004872,0.005748,0.249934,0,0);-webkit-transform:matrix(0.211839,-0.004872,0.005748,0.249934,0,0);}
.m39_c00297{transform:matrix(0.212265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212265,0.000000,0.000000,0.250000,0,0);}
.m3f_c00297{transform:matrix(0.213455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213455,0.000000,0.000000,0.250000,0,0);}
.m4d_c00297{transform:matrix(0.218405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218405,0.000000,0.000000,0.250000,0,0);}
.m6c_c00297{transform:matrix(0.222551,-0.005119,0.005748,0.249934,0,0);-ms-transform:matrix(0.222551,-0.005119,0.005748,0.249934,0,0);-webkit-transform:matrix(0.222551,-0.005119,0.005748,0.249934,0,0);}
.m47_c00297{transform:matrix(0.224996,-0.002925,0.003250,0.249979,0,0);-ms-transform:matrix(0.224996,-0.002925,0.003250,0.249979,0,0);-webkit-transform:matrix(0.224996,-0.002925,0.003250,0.249979,0,0);}
.m1c_c00297{transform:matrix(0.227735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227735,0.000000,0.000000,0.250000,0,0);}
.m26_c00297{transform:matrix(0.229525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229525,0.000000,0.000000,0.250000,0,0);}
.m4a_c00297{transform:matrix(0.239060,-0.003108,0.003250,0.249979,0,0);-ms-transform:matrix(0.239060,-0.003108,0.003250,0.249979,0,0);-webkit-transform:matrix(0.239060,-0.003108,0.003250,0.249979,0,0);}
.m40_c00297{transform:matrix(0.243515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243515,0.000000,0.000000,0.250000,0,0);}
.m22_c00297{transform:matrix(0.244870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244870,0.000000,0.000000,0.250000,0,0);}
.m32_c00297{transform:matrix(0.246730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246730,0.000000,0.000000,0.250000,0,0);}
.mc_c00297{transform:matrix(0.269070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269070,0.000000,0.000000,0.250000,0,0);}
.m65_c00297{transform:matrix(0.273568,-0.006292,0.005748,0.249934,0,0);-ms-transform:matrix(0.273568,-0.006292,0.005748,0.249934,0,0);-webkit-transform:matrix(0.273568,-0.006292,0.005748,0.249934,0,0);}
.m11_c00297{transform:matrix(0.273725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273725,0.000000,0.000000,0.250000,0,0);}
.m36_c00297{transform:matrix(0.276080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276080,0.000000,0.000000,0.250000,0,0);}
.m78_c00297{transform:matrix(0.277527,-0.006383,0.005748,0.249934,0,0);-ms-transform:matrix(0.277527,-0.006383,0.005748,0.249934,0,0);-webkit-transform:matrix(0.277527,-0.006383,0.005748,0.249934,0,0);}
.ma_c00297{transform:matrix(0.281525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281525,0.000000,0.000000,0.250000,0,0);}
.m0_c00297{transform:matrix(0.294440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294440,0.000000,0.000000,0.250000,0,0);}
.m77_c00297{transform:matrix(0.297241,-0.006837,0.005748,0.249934,0,0);-ms-transform:matrix(0.297241,-0.006837,0.005748,0.249934,0,0);-webkit-transform:matrix(0.297241,-0.006837,0.005748,0.249934,0,0);}
.m6b_c00297{transform:matrix(0.297686,-0.006847,0.005748,0.249934,0,0);-ms-transform:matrix(0.297686,-0.006847,0.005748,0.249934,0,0);-webkit-transform:matrix(0.297686,-0.006847,0.005748,0.249934,0,0);}
.m48_c00297{transform:matrix(0.303309,-0.003943,0.003250,0.249979,0,0);-ms-transform:matrix(0.303309,-0.003943,0.003250,0.249979,0,0);-webkit-transform:matrix(0.303309,-0.003943,0.003250,0.249979,0,0);}
.m3e_c00297{transform:matrix(0.306755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306755,0.000000,0.000000,0.250000,0,0);}
.m1e_c00297{transform:matrix(0.309375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309375,0.000000,0.000000,0.250000,0,0);}
.m12_c00297{transform:matrix(0.314870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314870,0.000000,0.000000,0.250000,0,0);}
.m75_c00297{transform:matrix(0.318141,-0.007317,0.005748,0.249934,0,0);-ms-transform:matrix(0.318141,-0.007317,0.005748,0.249934,0,0);-webkit-transform:matrix(0.318141,-0.007317,0.005748,0.249934,0,0);}
.m13_c00297{transform:matrix(0.320705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320705,0.000000,0.000000,0.250000,0,0);}
.m1f_c00297{transform:matrix(0.330340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330340,0.000000,0.000000,0.250000,0,0);}
.m4c_c00297{transform:matrix(0.331060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331060,0.000000,0.000000,0.250000,0,0);}
.m3c_c00297{transform:matrix(0.331210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331210,0.000000,0.000000,0.250000,0,0);}
.m29_c00297{transform:matrix(0.345330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345330,0.000000,0.000000,0.250000,0,0);}
.m82_c00297{transform:matrix(0.346060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346060,0.000000,0.000000,0.250000,0,0);}
.m35_c00297{transform:matrix(0.347225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347225,0.000000,0.000000,0.250000,0,0);}
.m1d_c00297{transform:matrix(0.358765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358765,0.000000,0.000000,0.250000,0,0);}
.m20_c00297{transform:matrix(0.360780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360780,0.000000,0.000000,0.250000,0,0);}
.m53_c00297{transform:matrix(0.362800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362800,0.000000,0.000000,0.250000,0,0);}
.m87_c00297{transform:matrix(0.370475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370475,0.000000,0.000000,0.250000,0,0);}
.mb_c00297{transform:matrix(0.371385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371385,0.000000,0.000000,0.250000,0,0);}
.m21_c00297{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.m64_c00297{transform:matrix(0.375861,-0.008645,0.005748,0.249934,0,0);-ms-transform:matrix(0.375861,-0.008645,0.005748,0.249934,0,0);-webkit-transform:matrix(0.375861,-0.008645,0.005748,0.249934,0,0);}
.m59_c00297{transform:matrix(0.382295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382295,0.000000,0.000000,0.250000,0,0);}
.m1b_c00297{transform:matrix(0.384480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384480,0.000000,0.000000,0.250000,0,0);}
.m2a_c00297{transform:matrix(0.387080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387080,0.000000,0.000000,0.250000,0,0);}
.m52_c00297{transform:matrix(0.398065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398065,0.000000,0.000000,0.250000,0,0);}
.m18_c00297{transform:matrix(0.398245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398245,0.000000,0.000000,0.250000,0,0);}
.m5a_c00297{transform:matrix(0.400045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400045,0.000000,0.000000,0.250000,0,0);}
.m80_c00297{transform:matrix(0.401405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401405,0.000000,0.000000,0.250000,0,0);}
.m3d_c00297{transform:matrix(0.415965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415965,0.000000,0.000000,0.250000,0,0);}
.m4b_c00297{transform:matrix(0.418240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418240,0.000000,0.000000,0.250000,0,0);}
.m43_c00297{transform:matrix(0.420370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420370,0.000000,0.000000,0.250000,0,0);}
.m6a_c00297{transform:matrix(0.421499,-0.009694,0.005748,0.249934,0,0);-ms-transform:matrix(0.421499,-0.009694,0.005748,0.249934,0,0);-webkit-transform:matrix(0.421499,-0.009694,0.005748,0.249934,0,0);}
.m3b_c00297{transform:matrix(0.423470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423470,0.000000,0.000000,0.250000,0,0);}
.m56_c00297{transform:matrix(0.432665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432665,0.000000,0.000000,0.250000,0,0);}
.m81_c00297{transform:matrix(0.434870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434870,0.000000,0.000000,0.250000,0,0);}
.m7f_c00297{transform:matrix(0.453020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453020,0.000000,0.000000,0.250000,0,0);}
.m44_c00297{transform:matrix(0.453115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453115,0.000000,0.000000,0.250000,0,0);}
.m71_c00297{transform:matrix(0.456059,-0.010489,0.005748,0.249934,0,0);-ms-transform:matrix(0.456059,-0.010489,0.005748,0.249934,0,0);-webkit-transform:matrix(0.456059,-0.010489,0.005748,0.249934,0,0);}
.m1a_c00297{transform:matrix(0.460440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460440,0.000000,0.000000,0.250000,0,0);}
.m7d_c00297{transform:matrix(0.463305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463305,0.000000,0.000000,0.250000,0,0);}
.m2b_c00297{transform:matrix(0.473630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.473630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.473630,0.000000,0.000000,0.250000,0,0);}
.m85_c00297{transform:matrix(0.481520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.481520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.481520,0.000000,0.000000,0.250000,0,0);}
.m6e_c00297{transform:matrix(0.484122,-0.011135,0.005748,0.249934,0,0);-ms-transform:matrix(0.484122,-0.011135,0.005748,0.249934,0,0);-webkit-transform:matrix(0.484122,-0.011135,0.005748,0.249934,0,0);}
.m79_c00297{transform:matrix(0.484200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484200,0.000000,0.000000,0.250000,0,0);}
.m57_c00297{transform:matrix(0.493465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493465,0.000000,0.000000,0.250000,0,0);}
.m23_c00297{transform:matrix(0.508370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508370,0.000000,0.000000,0.250000,0,0);}
.m88_c00297{transform:matrix(0.525845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525845,0.000000,0.000000,0.250000,0,0);}
.m74_c00297{transform:matrix(0.527905,-0.012142,0.005748,0.249934,0,0);-ms-transform:matrix(0.527905,-0.012142,0.005748,0.249934,0,0);-webkit-transform:matrix(0.527905,-0.012142,0.005748,0.249934,0,0);}
.m51_c00297{transform:matrix(0.529700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.529700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.529700,0.000000,0.000000,0.250000,0,0);}
.m6_c00297{transform:matrix(0.532025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532025,0.000000,0.000000,0.250000,0,0);}
.m6d_c00297{transform:matrix(0.532694,-0.012252,0.005748,0.249934,0,0);-ms-transform:matrix(0.532694,-0.012252,0.005748,0.249934,0,0);-webkit-transform:matrix(0.532694,-0.012252,0.005748,0.249934,0,0);}
.m9_c00297{transform:matrix(0.545390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545390,0.000000,0.000000,0.250000,0,0);}
.m2_c00297{transform:matrix(0.547800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547800,0.000000,0.000000,0.250000,0,0);}
.m8a_c00297{transform:matrix(0.549295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549295,0.000000,0.000000,0.250000,0,0);}
.m28_c00297{transform:matrix(0.549410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549410,0.000000,0.000000,0.250000,0,0);}
.m19_c00297{transform:matrix(0.562250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562250,0.000000,0.000000,0.250000,0,0);}
.m8_c00297{transform:matrix(0.577755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577755,0.000000,0.000000,0.250000,0,0);}
.m89_c00297{transform:matrix(0.583545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583545,0.000000,0.000000,0.250000,0,0);}
.m30_c00297{transform:matrix(0.583970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583970,0.000000,0.000000,0.250000,0,0);}
.m42_c00297{transform:matrix(0.589865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.589865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.589865,0.000000,0.000000,0.250000,0,0);}
.m76_c00297{transform:matrix(0.624175,-0.014356,0.005748,0.249934,0,0);-ms-transform:matrix(0.624175,-0.014356,0.005748,0.249934,0,0);-webkit-transform:matrix(0.624175,-0.014356,0.005748,0.249934,0,0);}
.m83_c00297{transform:matrix(0.648390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.648390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.648390,0.000000,0.000000,0.250000,0,0);}
.m45_c00297{transform:matrix(0.665275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665275,0.000000,0.000000,0.250000,0,0);}
.m3_c00297{transform:matrix(0.675610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.675610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.675610,0.000000,0.000000,0.250000,0,0);}
.m7a_c00297{transform:matrix(0.686860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.686860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.686860,0.000000,0.000000,0.250000,0,0);}
.m58_c00297{transform:matrix(0.707550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.707550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.707550,0.000000,0.000000,0.250000,0,0);}
.m16_c00297{transform:matrix(0.708980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.708980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.708980,0.000000,0.000000,0.250000,0,0);}
.m37_c00297{transform:matrix(0.720780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720780,0.000000,0.000000,0.250000,0,0);}
.m38_c00297{transform:matrix(0.741685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.741685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.741685,0.000000,0.000000,0.250000,0,0);}
.m2e_c00297{transform:matrix(0.762100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.762100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.762100,0.000000,0.000000,0.250000,0,0);}
.m86_c00297{transform:matrix(0.780010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.780010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.780010,0.000000,0.000000,0.250000,0,0);}
.m5e_c00297{transform:matrix(0.805295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.805295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.805295,0.000000,0.000000,0.250000,0,0);}
.m5d_c00297{transform:matrix(0.807775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.807775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.807775,0.000000,0.000000,0.250000,0,0);}
.m67_c00297{transform:matrix(0.831540,-0.019125,0.005748,0.249934,0,0);-ms-transform:matrix(0.831540,-0.019125,0.005748,0.249934,0,0);-webkit-transform:matrix(0.831540,-0.019125,0.005748,0.249934,0,0);}
.m10_c00297{transform:matrix(0.847340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.847340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.847340,0.000000,0.000000,0.250000,0,0);}
.m8b_c00297{transform:matrix(0.861815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.861815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.861815,0.000000,0.000000,0.250000,0,0);}
.m5f_c00297{transform:matrix(0.898445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.898445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.898445,0.000000,0.000000,0.250000,0,0);}
.mf_c00297{transform:matrix(0.918705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.918705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.918705,0.000000,0.000000,0.250000,0,0);}
.m4e_c00297{transform:matrix(0.944525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.944525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.944525,0.000000,0.000000,0.250000,0,0);}
.m2d_c00297{transform:matrix(0.963420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.963420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.963420,0.000000,0.000000,0.250000,0,0);}
.m63_c00297{transform:matrix(1.026935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.026935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.026935,0.000000,0.000000,0.250000,0,0);}
.m84_c00297{transform:matrix(1.027145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.027145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.027145,0.000000,0.000000,0.250000,0,0);}
.m33_c00297{transform:matrix(1.048665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.048665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.048665,0.000000,0.000000,0.250000,0,0);}
.m55_c00297{transform:matrix(1.054385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.054385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.054385,0.000000,0.000000,0.250000,0,0);}
.m62_c00297{transform:matrix(1.082705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.082705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.082705,0.000000,0.000000,0.250000,0,0);}
.m46_c00297{transform:matrix(1.088635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.088635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.088635,0.000000,0.000000,0.250000,0,0);}
.m27_c00297{transform:matrix(1.095845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.095845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.095845,0.000000,0.000000,0.250000,0,0);}
.m61_c00297{transform:matrix(1.183090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.183090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.183090,0.000000,0.000000,0.250000,0,0);}
.m5c_c00297{transform:matrix(1.329255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.329255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.329255,0.000000,0.000000,0.250000,0,0);}
.m4f_c00297{transform:matrix(1.343400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.343400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.343400,0.000000,0.000000,0.250000,0,0);}
.m7_c00297{transform:matrix(1.386670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.386670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.386670,0.000000,0.000000,0.250000,0,0);}
.m5b_c00297{transform:matrix(1.410320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.410320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.410320,0.000000,0.000000,0.250000,0,0);}
.m6f_c00297{transform:matrix(1.464168,-0.033676,0.005748,0.249934,0,0);-ms-transform:matrix(1.464168,-0.033676,0.005748,0.249934,0,0);-webkit-transform:matrix(1.464168,-0.033676,0.005748,0.249934,0,0);}
.m15_c00297{transform:matrix(1.685885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.685885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.685885,0.000000,0.000000,0.250000,0,0);}
.m60_c00297{transform:matrix(1.739610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.739610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.739610,0.000000,0.000000,0.250000,0,0);}
.m7b_c00297{transform:matrix(2.382405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.382405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.382405,0.000000,0.000000,0.250000,0,0);}
.m70_c00297{transform:matrix(2.384030,-0.054833,0.005748,0.249934,0,0);-ms-transform:matrix(2.384030,-0.054833,0.005748,0.249934,0,0);-webkit-transform:matrix(2.384030,-0.054833,0.005748,0.249934,0,0);}
.m72_c00297{transform:matrix(2.898089,-0.066656,0.005748,0.249934,0,0);-ms-transform:matrix(2.898089,-0.066656,0.005748,0.249934,0,0);-webkit-transform:matrix(2.898089,-0.066656,0.005748,0.249934,0,0);}
.v0_c00297{vertical-align:0.000000px;}
.ls0_c00297{letter-spacing:0.000000px;}
.sc__c00297{text-shadow:none;}
.sc0_c00297{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__c00297{-webkit-text-stroke:0px transparent;}
.sc0_c00297{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00297{word-spacing:0.000000px;}
.fc0_c00297{color:transparent;}
.fs4_c00297{font-size:12.000000px;}
.fs2_c00297{font-size:18.000000px;}
.fs8_c00297{font-size:18.004760px;}
.fs0_c00297{font-size:24.000000px;}
.fs3_c00297{font-size:30.000000px;}
.fs9_c00297{font-size:36.000000px;}
.fs1_c00297{font-size:42.000000px;}
.fs7_c00297{font-size:48.012694px;}
.fs6_c00297{font-size:60.015868px;}
.fs5_c00297{font-size:72.006084px;}
.y0_c00297{bottom:0.000000px;}
.y46_c00297{bottom:260.977500px;}
.y45_c00297{bottom:270.607500px;}
.y44_c00297{bottom:270.792000px;}
.y42_c00297{bottom:280.269000px;}
.y41_c00297{bottom:294.030000px;}
.y40_c00297{bottom:299.128500px;}
.y3f_c00297{bottom:304.236000px;}
.y43_c00297{bottom:311.442000px;}
.y35_c00297{bottom:418.390439px;}
.y36_c00297{bottom:419.272958px;}
.y37_c00297{bottom:421.774798px;}
.y38_c00297{bottom:421.946591px;}
.y2e_c00297{bottom:426.059238px;}
.y39_c00297{bottom:426.098556px;}
.y3a_c00297{bottom:426.340973px;}
.y2f_c00297{bottom:426.759281px;}
.y3b_c00297{bottom:427.177788px;}
.y3c_c00297{bottom:427.484430px;}
.y30_c00297{bottom:427.611240px;}
.y3d_c00297{bottom:428.161578px;}
.y3e_c00297{bottom:428.556764px;}
.y31_c00297{bottom:429.244833px;}
.y32_c00297{bottom:430.404112px;}
.y33_c00297{bottom:431.032397px;}
.y34_c00297{bottom:432.206321px;}
.y2a_c00297{bottom:436.593000px;}
.y2b_c00297{bottom:437.964824px;}
.y2c_c00297{bottom:438.570540px;}
.y2d_c00297{bottom:439.314532px;}
.y29_c00297{bottom:459.847500px;}
.y28_c00297{bottom:463.875000px;}
.y24_c00297{bottom:492.879000px;}
.y23_c00297{bottom:498.420000px;}
.y27_c00297{bottom:501.120000px;}
.y26_c00297{bottom:504.070500px;}
.y25_c00297{bottom:507.615000px;}
.y22_c00297{bottom:519.877500px;}
.y21_c00297{bottom:529.342500px;}
.y20_c00297{bottom:536.760000px;}
.y1f_c00297{bottom:642.177000px;}
.y1b_c00297{bottom:650.431500px;}
.y1c_c00297{bottom:654.595744px;}
.y1d_c00297{bottom:655.422349px;}
.y1e_c00297{bottom:655.602900px;}
.y19_c00297{bottom:684.597000px;}
.y1a_c00297{bottom:687.016500px;}
.y18_c00297{bottom:690.390000px;}
.y17_c00297{bottom:690.816000px;}
.y16_c00297{bottom:800.814000px;}
.y15_c00297{bottom:805.812000px;}
.y14_c00297{bottom:812.289000px;}
.y13_c00297{bottom:830.371500px;}
.y12_c00297{bottom:835.506000px;}
.yf_c00297{bottom:870.652500px;}
.y11_c00297{bottom:872.085000px;}
.ye_c00297{bottom:875.334000px;}
.y10_c00297{bottom:877.624500px;}
.yd_c00297{bottom:880.336500px;}
.yc_c00297{bottom:929.746500px;}
.yb_c00297{bottom:934.215000px;}
.ya_c00297{bottom:943.501500px;}
.y9_c00297{bottom:964.225500px;}
.y6_c00297{bottom:966.579000px;}
.y5_c00297{bottom:970.392000px;}
.y8_c00297{bottom:977.538000px;}
.y4_c00297{bottom:978.738000px;}
.y7_c00297{bottom:982.260000px;}
.y3_c00297{bottom:999.259500px;}
.y2_c00297{bottom:1003.422000px;}
.y1_c00297{bottom:1011.423000px;}
.h6_c00297{height:12.000000px;}
.h4_c00297{height:18.000000px;}
.ha_c00297{height:18.004760px;}
.h2_c00297{height:24.000000px;}
.h5_c00297{height:30.000000px;}
.hb_c00297{height:36.000000px;}
.h3_c00297{height:42.000000px;}
.h9_c00297{height:48.012694px;}
.h8_c00297{height:60.015868px;}
.h7_c00297{height:72.006084px;}
.h1_c00297{height:1165.500000px;}
.h0_c00297{height:1165.800000px;}
.w0_c00297{width:915.000000px;}
.x0_c00297{left:0.000000px;}
.x41_c00297{left:207.090000px;}
.x3d_c00297{left:209.863500px;}
.x30_c00297{left:223.830000px;}
.x2d_c00297{left:228.960000px;}
.x2e_c00297{left:238.680000px;}
.x31_c00297{left:258.660000px;}
.x2f_c00297{left:260.550000px;}
.x32_c00297{left:292.410000px;}
.x37_c00297{left:294.570000px;}
.x35_c00297{left:297.540000px;}
.x33_c00297{left:304.290000px;}
.x38_c00297{left:307.800000px;}
.x36_c00297{left:310.500000px;}
.x34_c00297{left:314.010000px;}
.x5d_c00297{left:315.182403px;}
.x39_c00297{left:318.870000px;}
.x6f_c00297{left:319.950000px;}
.x6d_c00297{left:321.030000px;}
.x70_c00297{left:332.910000px;}
.x5e_c00297{left:337.827088px;}
.x58_c00297{left:341.076304px;}
.x21_c00297{left:358.560000px;}
.x22_c00297{left:364.770000px;}
.x20_c00297{left:367.470000px;}
.x59_c00297{left:370.273149px;}
.x23_c00297{left:372.330000px;}
.x1a_c00297{left:380.430000px;}
.x1b_c00297{left:388.530000px;}
.x24_c00297{left:395.280000px;}
.x6e_c00297{left:397.170000px;}
.x45_c00297{left:399.330000px;}
.x5f_c00297{left:401.970490px;}
.x5a_c00297{left:405.748821px;}
.x1c_c00297{left:411.480000px;}
.x25_c00297{left:415.260000px;}
.x17_c00297{left:417.150000px;}
.x1d_c00297{left:420.930000px;}
.x18_c00297{left:429.570000px;}
.x1e_c00297{left:431.730000px;}
.x10_c00297{left:432.810000px;}
.x19_c00297{left:436.860000px;}
.xc_c00297{left:446.580000px;}
.x1f_c00297{left:455.490000px;}
.x14_c00297{left:459.810000px;}
.x11_c00297{left:466.020000px;}
.xd_c00297{left:467.100000px;}
.x26_c00297{left:468.450000px;}
.x27_c00297{left:474.120000px;}
.x57_c00297{left:475.740000px;}
.x53_c00297{left:480.330000px;}
.x3_c00297{left:486.540000px;}
.x28_c00297{left:488.700000px;}
.x3a_c00297{left:496.260000px;}
.xe_c00297{left:501.930000px;}
.x54_c00297{left:504.630000px;}
.x29_c00297{left:508.410000px;}
.x60_c00297{left:512.832212px;}
.x12_c00297{left:516.510000px;}
.x3b_c00297{left:519.750000px;}
.xf_c00297{left:522.450000px;}
.x1_c00297{left:523.800000px;}
.x5_c00297{left:528.120000px;}
.x3e_c00297{left:530.190000px;}
.x2_c00297{left:534.870000px;}
.x4_c00297{left:535.950000px;}
.x6_c00297{left:538.650000px;}
.x61_c00297{left:540.506034px;}
.x7_c00297{left:543.780000px;}
.x13_c00297{left:544.860000px;}
.x3c_c00297{left:547.020000px;}
.x5b_c00297{left:548.361078px;}
.x2c_c00297{left:552.690000px;}
.x8_c00297{left:558.630000px;}
.x55_c00297{left:560.790000px;}
.x2a_c00297{left:562.140000px;}
.x62_c00297{left:565.726753px;}
.x2b_c00297{left:567.810000px;}
.x15_c00297{left:574.290000px;}
.x63_c00297{left:575.861527px;}
.x64_c00297{left:577.530000px;}
.x56_c00297{left:578.880000px;}
.x68_c00297{left:584.550000px;}
.x9_c00297{left:585.630000px;}
.x16_c00297{left:586.980000px;}
.x51_c00297{left:589.950000px;}
.x3f_c00297{left:593.775000px;}
.x5c_c00297{left:597.247940px;}
.x69_c00297{left:600.480000px;}
.x4b_c00297{left:601.830000px;}
.xa_c00297{left:604.260000px;}
.x40_c00297{left:607.663500px;}
.xb_c00297{left:609.660000px;}
.x4c_c00297{left:611.820000px;}
.x48_c00297{left:613.980000px;}
.x52_c00297{left:618.300000px;}
.x44_c00297{left:621.540000px;}
.x42_c00297{left:622.620000px;}
.x65_c00297{left:629.910000px;}
.x43_c00297{left:635.040000px;}
.x4d_c00297{left:636.660000px;}
.x6a_c00297{left:639.090000px;}
.x6b_c00297{left:644.220000px;}
.x4e_c00297{left:647.460000px;}
.x4f_c00297{left:655.290000px;}
.x66_c00297{left:662.580000px;}
.x47_c00297{left:663.930000px;}
.x46_c00297{left:671.490000px;}
.x49_c00297{left:674.730000px;}
.x67_c00297{left:676.620000px;}
.x4a_c00297{left:683.100000px;}
.x50_c00297{left:684.180000px;}
.x6c_c00297{left:704.970000px;}
@media print{
.v0_c00297{vertical-align:0.000000pt;}
.ls0_c00297{letter-spacing:0.000000pt;}
.ws0_c00297{word-spacing:0.000000pt;}
.fs4_c00297{font-size:10.666667pt;}
.fs2_c00297{font-size:16.000000pt;}
.fs8_c00297{font-size:16.004231pt;}
.fs0_c00297{font-size:21.333333pt;}
.fs3_c00297{font-size:26.666667pt;}
.fs9_c00297{font-size:32.000000pt;}
.fs1_c00297{font-size:37.333333pt;}
.fs7_c00297{font-size:42.677951pt;}
.fs6_c00297{font-size:53.347438pt;}
.fs5_c00297{font-size:64.005408pt;}
.y0_c00297{bottom:0.000000pt;}
.y46_c00297{bottom:231.980000pt;}
.y45_c00297{bottom:240.540000pt;}
.y44_c00297{bottom:240.704000pt;}
.y42_c00297{bottom:249.128000pt;}
.y41_c00297{bottom:261.360000pt;}
.y40_c00297{bottom:265.892000pt;}
.y3f_c00297{bottom:270.432000pt;}
.y43_c00297{bottom:276.837333pt;}
.y35_c00297{bottom:371.902612pt;}
.y36_c00297{bottom:372.687073pt;}
.y37_c00297{bottom:374.910932pt;}
.y38_c00297{bottom:375.063636pt;}
.y2e_c00297{bottom:378.719323pt;}
.y39_c00297{bottom:378.754272pt;}
.y3a_c00297{bottom:378.969753pt;}
.y2f_c00297{bottom:379.341583pt;}
.y3b_c00297{bottom:379.713589pt;}
.y3c_c00297{bottom:379.986160pt;}
.y30_c00297{bottom:380.098880pt;}
.y3d_c00297{bottom:380.588069pt;}
.y3e_c00297{bottom:380.939345pt;}
.y31_c00297{bottom:381.550963pt;}
.y32_c00297{bottom:382.581433pt;}
.y33_c00297{bottom:383.139908pt;}
.y34_c00297{bottom:384.183396pt;}
.y2a_c00297{bottom:388.082667pt;}
.y2b_c00297{bottom:389.302065pt;}
.y2c_c00297{bottom:389.840480pt;}
.y2d_c00297{bottom:390.501807pt;}
.y29_c00297{bottom:408.753333pt;}
.y28_c00297{bottom:412.333333pt;}
.y24_c00297{bottom:438.114667pt;}
.y23_c00297{bottom:443.040000pt;}
.y27_c00297{bottom:445.440000pt;}
.y26_c00297{bottom:448.062667pt;}
.y25_c00297{bottom:451.213333pt;}
.y22_c00297{bottom:462.113333pt;}
.y21_c00297{bottom:470.526667pt;}
.y20_c00297{bottom:477.120000pt;}
.y1f_c00297{bottom:570.824000pt;}
.y1b_c00297{bottom:578.161333pt;}
.y1c_c00297{bottom:581.862884pt;}
.y1d_c00297{bottom:582.597644pt;}
.y1e_c00297{bottom:582.758133pt;}
.y19_c00297{bottom:608.530667pt;}
.y1a_c00297{bottom:610.681333pt;}
.y18_c00297{bottom:613.680000pt;}
.y17_c00297{bottom:614.058667pt;}
.y16_c00297{bottom:711.834667pt;}
.y15_c00297{bottom:716.277333pt;}
.y14_c00297{bottom:722.034667pt;}
.y13_c00297{bottom:738.108000pt;}
.y12_c00297{bottom:742.672000pt;}
.yf_c00297{bottom:773.913333pt;}
.y11_c00297{bottom:775.186667pt;}
.ye_c00297{bottom:778.074667pt;}
.y10_c00297{bottom:780.110667pt;}
.yd_c00297{bottom:782.521333pt;}
.yc_c00297{bottom:826.441333pt;}
.yb_c00297{bottom:830.413333pt;}
.ya_c00297{bottom:838.668000pt;}
.y9_c00297{bottom:857.089333pt;}
.y6_c00297{bottom:859.181333pt;}
.y5_c00297{bottom:862.570667pt;}
.y8_c00297{bottom:868.922667pt;}
.y4_c00297{bottom:869.989333pt;}
.y7_c00297{bottom:873.120000pt;}
.y3_c00297{bottom:888.230667pt;}
.y2_c00297{bottom:891.930667pt;}
.y1_c00297{bottom:899.042667pt;}
.h6_c00297{height:10.666667pt;}
.h4_c00297{height:16.000000pt;}
.ha_c00297{height:16.004231pt;}
.h2_c00297{height:21.333333pt;}
.h5_c00297{height:26.666667pt;}
.hb_c00297{height:32.000000pt;}
.h3_c00297{height:37.333333pt;}
.h9_c00297{height:42.677951pt;}
.h8_c00297{height:53.347438pt;}
.h7_c00297{height:64.005408pt;}
.h1_c00297{height:1036.000000pt;}
.h0_c00297{height:1036.266667pt;}
.w0_c00297{width:813.333333pt;}
.x0_c00297{left:0.000000pt;}
.x41_c00297{left:184.080000pt;}
.x3d_c00297{left:186.545333pt;}
.x30_c00297{left:198.960000pt;}
.x2d_c00297{left:203.520000pt;}
.x2e_c00297{left:212.160000pt;}
.x31_c00297{left:229.920000pt;}
.x2f_c00297{left:231.600000pt;}
.x32_c00297{left:259.920000pt;}
.x37_c00297{left:261.840000pt;}
.x35_c00297{left:264.480000pt;}
.x33_c00297{left:270.480000pt;}
.x38_c00297{left:273.600000pt;}
.x36_c00297{left:276.000000pt;}
.x34_c00297{left:279.120000pt;}
.x5d_c00297{left:280.162136pt;}
.x39_c00297{left:283.440000pt;}
.x6f_c00297{left:284.400000pt;}
.x6d_c00297{left:285.360000pt;}
.x70_c00297{left:295.920000pt;}
.x5e_c00297{left:300.290745pt;}
.x58_c00297{left:303.178937pt;}
.x21_c00297{left:318.720000pt;}
.x22_c00297{left:324.240000pt;}
.x20_c00297{left:326.640000pt;}
.x59_c00297{left:329.131688pt;}
.x23_c00297{left:330.960000pt;}
.x1a_c00297{left:338.160000pt;}
.x1b_c00297{left:345.360000pt;}
.x24_c00297{left:351.360000pt;}
.x6e_c00297{left:353.040000pt;}
.x45_c00297{left:354.960000pt;}
.x5f_c00297{left:357.307103pt;}
.x5a_c00297{left:360.665619pt;}
.x1c_c00297{left:365.760000pt;}
.x25_c00297{left:369.120000pt;}
.x17_c00297{left:370.800000pt;}
.x1d_c00297{left:374.160000pt;}
.x18_c00297{left:381.840000pt;}
.x1e_c00297{left:383.760000pt;}
.x10_c00297{left:384.720000pt;}
.x19_c00297{left:388.320000pt;}
.xc_c00297{left:396.960000pt;}
.x1f_c00297{left:404.880000pt;}
.x14_c00297{left:408.720000pt;}
.x11_c00297{left:414.240000pt;}
.xd_c00297{left:415.200000pt;}
.x26_c00297{left:416.400000pt;}
.x27_c00297{left:421.440000pt;}
.x57_c00297{left:422.880000pt;}
.x53_c00297{left:426.960000pt;}
.x3_c00297{left:432.480000pt;}
.x28_c00297{left:434.400000pt;}
.x3a_c00297{left:441.120000pt;}
.xe_c00297{left:446.160000pt;}
.x54_c00297{left:448.560000pt;}
.x29_c00297{left:451.920000pt;}
.x60_c00297{left:455.850855pt;}
.x12_c00297{left:459.120000pt;}
.x3b_c00297{left:462.000000pt;}
.xf_c00297{left:464.400000pt;}
.x1_c00297{left:465.600000pt;}
.x5_c00297{left:469.440000pt;}
.x3e_c00297{left:471.280000pt;}
.x2_c00297{left:475.440000pt;}
.x4_c00297{left:476.400000pt;}
.x6_c00297{left:478.800000pt;}
.x61_c00297{left:480.449808pt;}
.x7_c00297{left:483.360000pt;}
.x13_c00297{left:484.320000pt;}
.x3c_c00297{left:486.240000pt;}
.x5b_c00297{left:487.432069pt;}
.x2c_c00297{left:491.280000pt;}
.x8_c00297{left:496.560000pt;}
.x55_c00297{left:498.480000pt;}
.x2a_c00297{left:499.680000pt;}
.x62_c00297{left:502.868225pt;}
.x2b_c00297{left:504.720000pt;}
.x15_c00297{left:510.480000pt;}
.x63_c00297{left:511.876913pt;}
.x64_c00297{left:513.360000pt;}
.x56_c00297{left:514.560000pt;}
.x68_c00297{left:519.600000pt;}
.x9_c00297{left:520.560000pt;}
.x16_c00297{left:521.760000pt;}
.x51_c00297{left:524.400000pt;}
.x3f_c00297{left:527.800000pt;}
.x5c_c00297{left:530.887057pt;}
.x69_c00297{left:533.760000pt;}
.x4b_c00297{left:534.960000pt;}
.xa_c00297{left:537.120000pt;}
.x40_c00297{left:540.145333pt;}
.xb_c00297{left:541.920000pt;}
.x4c_c00297{left:543.840000pt;}
.x48_c00297{left:545.760000pt;}
.x52_c00297{left:549.600000pt;}
.x44_c00297{left:552.480000pt;}
.x42_c00297{left:553.440000pt;}
.x65_c00297{left:559.920000pt;}
.x43_c00297{left:564.480000pt;}
.x4d_c00297{left:565.920000pt;}
.x6a_c00297{left:568.080000pt;}
.x6b_c00297{left:572.640000pt;}
.x4e_c00297{left:575.520000pt;}
.x4f_c00297{left:582.480000pt;}
.x66_c00297{left:588.960000pt;}
.x47_c00297{left:590.160000pt;}
.x46_c00297{left:596.880000pt;}
.x49_c00297{left:599.760000pt;}
.x67_c00297{left:601.440000pt;}
.x4a_c00297{left:607.200000pt;}
.x50_c00297{left:608.160000pt;}
.x6c_c00297{left:626.640000pt;}
}





/* 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_c00298 {
    display:none;
  }
  .loading-indicator_c00298.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00298 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_c00298 { 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_c00298" -> "#page-container .classname_c00298")
 */
.pf_c00298 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00298 { /* 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_c00298.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00298 { /* 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_c00298 { /* 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_c00298 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00298 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00298 {overflow:visible;}
  }
}
.c_c00298 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00298 { /* 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_c00298:after { /* webkit #35443 */
  content: '';
}
.t_c00298:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00298 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 */
}
.__c00298 { /* 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_c00298 { /* info for Javascript */
  display:none;
}
.l_c00298 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00298 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00298 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00298: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_c00298 {
    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_c00298.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00298.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_c00298 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00298{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00298;src:url('chunks/assets/font_c605e72f209fc835e906f064.woff2')format("woff");}.ff1_c00298{font-family:ff1_c00298;line-height:1.000000;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;}
.m9d_c00298{transform:matrix(0.084845,-0.001273,0.003750,0.249972,0,0);-ms-transform:matrix(0.084845,-0.001273,0.003750,0.249972,0,0);-webkit-transform:matrix(0.084845,-0.001273,0.003750,0.249972,0,0);}
.m0_c00298{transform:matrix(0.121975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121975,0.000000,0.000000,0.250000,0,0);}
.m62_c00298{transform:matrix(0.122468,-0.001715,0.003500,0.249976,0,0);-ms-transform:matrix(0.122468,-0.001715,0.003500,0.249976,0,0);-webkit-transform:matrix(0.122468,-0.001715,0.003500,0.249976,0,0);}
.m2_c00298{transform:matrix(0.124155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124155,0.000000,0.000000,0.250000,0,0);}
.mbd_c00298{transform:matrix(0.124843,-0.001748,0.003500,0.249976,0,0);-ms-transform:matrix(0.124843,-0.001748,0.003500,0.249976,0,0);-webkit-transform:matrix(0.124843,-0.001748,0.003500,0.249976,0,0);}
.md2_c00298{transform:matrix(0.127271,-0.001527,0.003000,0.249982,0,0);-ms-transform:matrix(0.127271,-0.001527,0.003000,0.249982,0,0);-webkit-transform:matrix(0.127271,-0.001527,0.003000,0.249982,0,0);}
.mb4_c00298{transform:matrix(0.129943,-0.002079,0.003999,0.249968,0,0);-ms-transform:matrix(0.129943,-0.002079,0.003999,0.249968,0,0);-webkit-transform:matrix(0.129943,-0.002079,0.003999,0.249968,0,0);}
.mbb_c00298{transform:matrix(0.132248,-0.002116,0.003999,0.249968,0,0);-ms-transform:matrix(0.132248,-0.002116,0.003999,0.249968,0,0);-webkit-transform:matrix(0.132248,-0.002116,0.003999,0.249968,0,0);}
.m36_c00298{transform:matrix(0.132570,-0.001989,0.003750,0.249972,0,0);-ms-transform:matrix(0.132570,-0.001989,0.003750,0.249972,0,0);-webkit-transform:matrix(0.132570,-0.001989,0.003750,0.249972,0,0);}
.m16_c00298{transform:matrix(0.132572,-0.001856,0.003500,0.249976,0,0);-ms-transform:matrix(0.132572,-0.001856,0.003500,0.249976,0,0);-webkit-transform:matrix(0.132572,-0.001856,0.003500,0.249976,0,0);}
.m7_c00298{transform:matrix(0.137871,-0.001930,0.003500,0.249976,0,0);-ms-transform:matrix(0.137871,-0.001930,0.003500,0.249976,0,0);-webkit-transform:matrix(0.137871,-0.001930,0.003500,0.249976,0,0);}
.m69_c00298{transform:matrix(0.137974,-0.002070,0.003750,0.249972,0,0);-ms-transform:matrix(0.137974,-0.002070,0.003750,0.249972,0,0);-webkit-transform:matrix(0.137974,-0.002070,0.003750,0.249972,0,0);}
.m7e_c00298{transform:matrix(0.140546,-0.001968,0.003500,0.249976,0,0);-ms-transform:matrix(0.140546,-0.001968,0.003500,0.249976,0,0);-webkit-transform:matrix(0.140546,-0.001968,0.003500,0.249976,0,0);}
.me8_c00298{transform:matrix(0.143183,-0.001432,0.002500,0.249988,0,0);-ms-transform:matrix(0.143183,-0.001432,0.002500,0.249988,0,0);-webkit-transform:matrix(0.143183,-0.001432,0.002500,0.249988,0,0);}
.m1a_c00298{transform:matrix(0.143271,-0.002006,0.003500,0.249976,0,0);-ms-transform:matrix(0.143271,-0.002006,0.003500,0.249976,0,0);-webkit-transform:matrix(0.143271,-0.002006,0.003500,0.249976,0,0);}
.m38_c00298{transform:matrix(0.150013,-0.002250,0.003750,0.249972,0,0);-ms-transform:matrix(0.150013,-0.002250,0.003750,0.249972,0,0);-webkit-transform:matrix(0.150013,-0.002250,0.003750,0.249972,0,0);}
.m87_c00298{transform:matrix(0.151150,-0.002116,0.003500,0.249976,0,0);-ms-transform:matrix(0.151150,-0.002116,0.003500,0.249976,0,0);-webkit-transform:matrix(0.151150,-0.002116,0.003500,0.249976,0,0);}
.m55_c00298{transform:matrix(0.174998,-0.002800,0.003999,0.249968,0,0);-ms-transform:matrix(0.174998,-0.002800,0.003999,0.249968,0,0);-webkit-transform:matrix(0.174998,-0.002800,0.003999,0.249968,0,0);}
.m80_c00298{transform:matrix(0.178258,-0.002496,0.003500,0.249976,0,0);-ms-transform:matrix(0.178258,-0.002496,0.003500,0.249976,0,0);-webkit-transform:matrix(0.178258,-0.002496,0.003500,0.249976,0,0);}
.m4e_c00298{transform:matrix(0.179650,-0.002695,0.003750,0.249972,0,0);-ms-transform:matrix(0.179650,-0.002695,0.003750,0.249972,0,0);-webkit-transform:matrix(0.179650,-0.002695,0.003750,0.249972,0,0);}
.m25_c00298{transform:matrix(0.188994,-0.002835,0.003750,0.249972,0,0);-ms-transform:matrix(0.188994,-0.002835,0.003750,0.249972,0,0);-webkit-transform:matrix(0.188994,-0.002835,0.003750,0.249972,0,0);}
.m39_c00298{transform:matrix(0.190519,-0.002858,0.003750,0.249972,0,0);-ms-transform:matrix(0.190519,-0.002858,0.003750,0.249972,0,0);-webkit-transform:matrix(0.190519,-0.002858,0.003750,0.249972,0,0);}
.m65_c00298{transform:matrix(0.191531,-0.002681,0.003500,0.249976,0,0);-ms-transform:matrix(0.191531,-0.002681,0.003500,0.249976,0,0);-webkit-transform:matrix(0.191531,-0.002681,0.003500,0.249976,0,0);}
.m5c_c00298{transform:matrix(0.194945,-0.003119,0.003999,0.249968,0,0);-ms-transform:matrix(0.194945,-0.003119,0.003999,0.249968,0,0);-webkit-transform:matrix(0.194945,-0.003119,0.003999,0.249968,0,0);}
.m1_c00298{transform:matrix(0.197330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197330,0.000000,0.000000,0.250000,0,0);}
.md1_c00298{transform:matrix(0.202100,-0.002425,0.003000,0.249982,0,0);-ms-transform:matrix(0.202100,-0.002425,0.003000,0.249982,0,0);-webkit-transform:matrix(0.202100,-0.002425,0.003000,0.249982,0,0);}
.mbf_c00298{transform:matrix(0.204795,-0.002867,0.003500,0.249976,0,0);-ms-transform:matrix(0.204795,-0.002867,0.003500,0.249976,0,0);-webkit-transform:matrix(0.204795,-0.002867,0.003500,0.249976,0,0);}
.md4_c00298{transform:matrix(0.209920,-0.002519,0.003000,0.249982,0,0);-ms-transform:matrix(0.209920,-0.002519,0.003000,0.249982,0,0);-webkit-transform:matrix(0.209920,-0.002519,0.003000,0.249982,0,0);}
.mb_c00298{transform:matrix(0.213534,-0.002989,0.003500,0.249976,0,0);-ms-transform:matrix(0.213534,-0.002989,0.003500,0.249976,0,0);-webkit-transform:matrix(0.213534,-0.002989,0.003500,0.249976,0,0);}
.md0_c00298{transform:matrix(0.214515,-0.002574,0.003000,0.249982,0,0);-ms-transform:matrix(0.214515,-0.002574,0.003000,0.249982,0,0);-webkit-transform:matrix(0.214515,-0.002574,0.003000,0.249982,0,0);}
.mdc_c00298{transform:matrix(0.214660,-0.002576,0.003000,0.249982,0,0);-ms-transform:matrix(0.214660,-0.002576,0.003000,0.249982,0,0);-webkit-transform:matrix(0.214660,-0.002576,0.003000,0.249982,0,0);}
.mc4_c00298{transform:matrix(0.215734,-0.003020,0.003500,0.249976,0,0);-ms-transform:matrix(0.215734,-0.003020,0.003500,0.249976,0,0);-webkit-transform:matrix(0.215734,-0.003020,0.003500,0.249976,0,0);}
.mc5_c00298{transform:matrix(0.216444,-0.003030,0.003500,0.249976,0,0);-ms-transform:matrix(0.216444,-0.003030,0.003500,0.249976,0,0);-webkit-transform:matrix(0.216444,-0.003030,0.003500,0.249976,0,0);}
.m98_c00298{transform:matrix(0.217071,-0.003256,0.003750,0.249972,0,0);-ms-transform:matrix(0.217071,-0.003256,0.003750,0.249972,0,0);-webkit-transform:matrix(0.217071,-0.003256,0.003750,0.249972,0,0);}
.m9_c00298{transform:matrix(0.217994,-0.003052,0.003500,0.249976,0,0);-ms-transform:matrix(0.217994,-0.003052,0.003500,0.249976,0,0);-webkit-transform:matrix(0.217994,-0.003052,0.003500,0.249976,0,0);}
.mbe_c00298{transform:matrix(0.219518,-0.003073,0.003500,0.249976,0,0);-ms-transform:matrix(0.219518,-0.003073,0.003500,0.249976,0,0);-webkit-transform:matrix(0.219518,-0.003073,0.003500,0.249976,0,0);}
.ma9_c00298{transform:matrix(0.219519,-0.002634,0.003000,0.249982,0,0);-ms-transform:matrix(0.219519,-0.002634,0.003000,0.249982,0,0);-webkit-transform:matrix(0.219519,-0.002634,0.003000,0.249982,0,0);}
.m5f_c00298{transform:matrix(0.219648,-0.003075,0.003500,0.249976,0,0);-ms-transform:matrix(0.219648,-0.003075,0.003500,0.249976,0,0);-webkit-transform:matrix(0.219648,-0.003075,0.003500,0.249976,0,0);}
.m6b_c00298{transform:matrix(0.220485,-0.003307,0.003750,0.249972,0,0);-ms-transform:matrix(0.220485,-0.003307,0.003750,0.249972,0,0);-webkit-transform:matrix(0.220485,-0.003307,0.003750,0.249972,0,0);}
.md3_c00298{transform:matrix(0.222069,-0.002665,0.003000,0.249982,0,0);-ms-transform:matrix(0.222069,-0.002665,0.003000,0.249982,0,0);-webkit-transform:matrix(0.222069,-0.002665,0.003000,0.249982,0,0);}
.m91_c00298{transform:matrix(0.223355,-0.003350,0.003750,0.249972,0,0);-ms-transform:matrix(0.223355,-0.003350,0.003750,0.249972,0,0);-webkit-transform:matrix(0.223355,-0.003350,0.003750,0.249972,0,0);}
.mdb_c00298{transform:matrix(0.223379,-0.002681,0.003000,0.249982,0,0);-ms-transform:matrix(0.223379,-0.002681,0.003000,0.249982,0,0);-webkit-transform:matrix(0.223379,-0.002681,0.003000,0.249982,0,0);}
.m15_c00298{transform:matrix(0.224053,-0.003137,0.003500,0.249976,0,0);-ms-transform:matrix(0.224053,-0.003137,0.003500,0.249976,0,0);-webkit-transform:matrix(0.224053,-0.003137,0.003500,0.249976,0,0);}
.me0_c00298{transform:matrix(0.224064,-0.002241,0.002500,0.249988,0,0);-ms-transform:matrix(0.224064,-0.002241,0.002500,0.249988,0,0);-webkit-transform:matrix(0.224064,-0.002241,0.002500,0.249988,0,0);}
.m2a_c00298{transform:matrix(0.225765,-0.003386,0.003750,0.249972,0,0);-ms-transform:matrix(0.225765,-0.003386,0.003750,0.249972,0,0);-webkit-transform:matrix(0.225765,-0.003386,0.003750,0.249972,0,0);}
.mab_c00298{transform:matrix(0.226019,-0.002712,0.003000,0.249982,0,0);-ms-transform:matrix(0.226019,-0.002712,0.003000,0.249982,0,0);-webkit-transform:matrix(0.226019,-0.002712,0.003000,0.249982,0,0);}
.m34_c00298{transform:matrix(0.226530,-0.003398,0.003750,0.249972,0,0);-ms-transform:matrix(0.226530,-0.003398,0.003750,0.249972,0,0);-webkit-transform:matrix(0.226530,-0.003398,0.003750,0.249972,0,0);}
.m54_c00298{transform:matrix(0.227326,-0.003637,0.003999,0.249968,0,0);-ms-transform:matrix(0.227326,-0.003637,0.003999,0.249968,0,0);-webkit-transform:matrix(0.227326,-0.003637,0.003999,0.249968,0,0);}
.m6_c00298{transform:matrix(0.227478,-0.003185,0.003500,0.249976,0,0);-ms-transform:matrix(0.227478,-0.003185,0.003500,0.249976,0,0);-webkit-transform:matrix(0.227478,-0.003185,0.003500,0.249976,0,0);}
.mb3_c00298{transform:matrix(0.228106,-0.003650,0.003999,0.249968,0,0);-ms-transform:matrix(0.228106,-0.003650,0.003999,0.249968,0,0);-webkit-transform:matrix(0.228106,-0.003650,0.003999,0.249968,0,0);}
.mcb_c00298{transform:matrix(0.229807,-0.003217,0.003500,0.249976,0,0);-ms-transform:matrix(0.229807,-0.003217,0.003500,0.249976,0,0);-webkit-transform:matrix(0.229807,-0.003217,0.003500,0.249976,0,0);}
.m49_c00298{transform:matrix(0.230041,-0.003681,0.003999,0.249968,0,0);-ms-transform:matrix(0.230041,-0.003681,0.003999,0.249968,0,0);-webkit-transform:matrix(0.230041,-0.003681,0.003999,0.249968,0,0);}
.md_c00298{transform:matrix(0.231182,-0.003237,0.003500,0.249976,0,0);-ms-transform:matrix(0.231182,-0.003237,0.003500,0.249976,0,0);-webkit-transform:matrix(0.231182,-0.003237,0.003500,0.249976,0,0);}
.m4d_c00298{transform:matrix(0.232069,-0.003481,0.003750,0.249972,0,0);-ms-transform:matrix(0.232069,-0.003481,0.003750,0.249972,0,0);-webkit-transform:matrix(0.232069,-0.003481,0.003750,0.249972,0,0);}
.m8e_c00298{transform:matrix(0.232959,-0.003494,0.003750,0.249972,0,0);-ms-transform:matrix(0.232959,-0.003494,0.003750,0.249972,0,0);-webkit-transform:matrix(0.232959,-0.003494,0.003750,0.249972,0,0);}
.m20_c00298{transform:matrix(0.234354,-0.003515,0.003750,0.249972,0,0);-ms-transform:matrix(0.234354,-0.003515,0.003750,0.249972,0,0);-webkit-transform:matrix(0.234354,-0.003515,0.003750,0.249972,0,0);}
.m2d_c00298{transform:matrix(0.235054,-0.003526,0.003750,0.249972,0,0);-ms-transform:matrix(0.235054,-0.003526,0.003750,0.249972,0,0);-webkit-transform:matrix(0.235054,-0.003526,0.003750,0.249972,0,0);}
.m7b_c00298{transform:matrix(0.235362,-0.003295,0.003500,0.249976,0,0);-ms-transform:matrix(0.235362,-0.003295,0.003500,0.249976,0,0);-webkit-transform:matrix(0.235362,-0.003295,0.003500,0.249976,0,0);}
.m61_c00298{transform:matrix(0.235377,-0.003295,0.003500,0.249976,0,0);-ms-transform:matrix(0.235377,-0.003295,0.003500,0.249976,0,0);-webkit-transform:matrix(0.235377,-0.003295,0.003500,0.249976,0,0);}
.mac_c00298{transform:matrix(0.235778,-0.002829,0.003000,0.249982,0,0);-ms-transform:matrix(0.235778,-0.002829,0.003000,0.249982,0,0);-webkit-transform:matrix(0.235778,-0.002829,0.003000,0.249982,0,0);}
.mcf_c00298{transform:matrix(0.236193,-0.002834,0.003000,0.249982,0,0);-ms-transform:matrix(0.236193,-0.002834,0.003000,0.249982,0,0);-webkit-transform:matrix(0.236193,-0.002834,0.003000,0.249982,0,0);}
.m6a_c00298{transform:matrix(0.236388,-0.003546,0.003750,0.249972,0,0);-ms-transform:matrix(0.236388,-0.003546,0.003750,0.249972,0,0);-webkit-transform:matrix(0.236388,-0.003546,0.003750,0.249972,0,0);}
.m57_c00298{transform:matrix(0.237155,-0.003794,0.003999,0.249968,0,0);-ms-transform:matrix(0.237155,-0.003794,0.003999,0.249968,0,0);-webkit-transform:matrix(0.237155,-0.003794,0.003999,0.249968,0,0);}
.mda_c00298{transform:matrix(0.237168,-0.002846,0.003000,0.249982,0,0);-ms-transform:matrix(0.237168,-0.002846,0.003000,0.249982,0,0);-webkit-transform:matrix(0.237168,-0.002846,0.003000,0.249982,0,0);}
.m7f_c00298{transform:matrix(0.237197,-0.003321,0.003500,0.249976,0,0);-ms-transform:matrix(0.237197,-0.003321,0.003500,0.249976,0,0);-webkit-transform:matrix(0.237197,-0.003321,0.003500,0.249976,0,0);}
.m72_c00298{transform:matrix(0.237808,-0.003567,0.003750,0.249972,0,0);-ms-transform:matrix(0.237808,-0.003567,0.003750,0.249972,0,0);-webkit-transform:matrix(0.237808,-0.003567,0.003750,0.249972,0,0);}
.m26_c00298{transform:matrix(0.237948,-0.003569,0.003750,0.249972,0,0);-ms-transform:matrix(0.237948,-0.003569,0.003750,0.249972,0,0);-webkit-transform:matrix(0.237948,-0.003569,0.003750,0.249972,0,0);}
.m8a_c00298{transform:matrix(0.238508,-0.003578,0.003750,0.249972,0,0);-ms-transform:matrix(0.238508,-0.003578,0.003750,0.249972,0,0);-webkit-transform:matrix(0.238508,-0.003578,0.003750,0.249972,0,0);}
.m97_c00298{transform:matrix(0.238543,-0.003578,0.003750,0.249972,0,0);-ms-transform:matrix(0.238543,-0.003578,0.003750,0.249972,0,0);-webkit-transform:matrix(0.238543,-0.003578,0.003750,0.249972,0,0);}
.m71_c00298{transform:matrix(0.238783,-0.003582,0.003750,0.249972,0,0);-ms-transform:matrix(0.238783,-0.003582,0.003750,0.249972,0,0);-webkit-transform:matrix(0.238783,-0.003582,0.003750,0.249972,0,0);}
.m2e_c00298{transform:matrix(0.238923,-0.003584,0.003750,0.249972,0,0);-ms-transform:matrix(0.238923,-0.003584,0.003750,0.249972,0,0);-webkit-transform:matrix(0.238923,-0.003584,0.003750,0.249972,0,0);}
.m18_c00298{transform:matrix(0.239272,-0.003350,0.003500,0.249976,0,0);-ms-transform:matrix(0.239272,-0.003350,0.003500,0.249976,0,0);-webkit-transform:matrix(0.239272,-0.003350,0.003500,0.249976,0,0);}
.m6e_c00298{transform:matrix(0.239563,-0.003593,0.003750,0.249972,0,0);-ms-transform:matrix(0.239563,-0.003593,0.003750,0.249972,0,0);-webkit-transform:matrix(0.239563,-0.003593,0.003750,0.249972,0,0);}
.m63_c00298{transform:matrix(0.239702,-0.003356,0.003500,0.249976,0,0);-ms-transform:matrix(0.239702,-0.003356,0.003500,0.249976,0,0);-webkit-transform:matrix(0.239702,-0.003356,0.003500,0.249976,0,0);}
.m10_c00298{transform:matrix(0.240041,-0.003361,0.003500,0.249976,0,0);-ms-transform:matrix(0.240041,-0.003361,0.003500,0.249976,0,0);-webkit-transform:matrix(0.240041,-0.003361,0.003500,0.249976,0,0);}
.mad_c00298{transform:matrix(0.240353,-0.002884,0.003000,0.249982,0,0);-ms-transform:matrix(0.240353,-0.002884,0.003000,0.249982,0,0);-webkit-transform:matrix(0.240353,-0.002884,0.003000,0.249982,0,0);}
.ma3_c00298{transform:matrix(0.240615,-0.003128,0.003250,0.249979,0,0);-ms-transform:matrix(0.240615,-0.003128,0.003250,0.249979,0,0);-webkit-transform:matrix(0.240615,-0.003128,0.003250,0.249979,0,0);}
.m30_c00298{transform:matrix(0.241003,-0.003615,0.003750,0.249972,0,0);-ms-transform:matrix(0.241003,-0.003615,0.003750,0.249972,0,0);-webkit-transform:matrix(0.241003,-0.003615,0.003750,0.249972,0,0);}
.m5d_c00298{transform:matrix(0.241126,-0.003376,0.003500,0.249976,0,0);-ms-transform:matrix(0.241126,-0.003376,0.003500,0.249976,0,0);-webkit-transform:matrix(0.241126,-0.003376,0.003500,0.249976,0,0);}
.m60_c00298{transform:matrix(0.242406,-0.003394,0.003500,0.249976,0,0);-ms-transform:matrix(0.242406,-0.003394,0.003500,0.249976,0,0);-webkit-transform:matrix(0.242406,-0.003394,0.003500,0.249976,0,0);}
.md6_c00298{transform:matrix(0.242418,-0.002909,0.003000,0.249982,0,0);-ms-transform:matrix(0.242418,-0.002909,0.003000,0.249982,0,0);-webkit-transform:matrix(0.242418,-0.002909,0.003000,0.249982,0,0);}
.m3d_c00298{transform:matrix(0.242448,-0.003637,0.003750,0.249972,0,0);-ms-transform:matrix(0.242448,-0.003637,0.003750,0.249972,0,0);-webkit-transform:matrix(0.242448,-0.003637,0.003750,0.249972,0,0);}
.maa_c00298{transform:matrix(0.242518,-0.002910,0.003000,0.249982,0,0);-ms-transform:matrix(0.242518,-0.002910,0.003000,0.249982,0,0);-webkit-transform:matrix(0.242518,-0.002910,0.003000,0.249982,0,0);}
.ma7_c00298{transform:matrix(0.242533,-0.002910,0.003000,0.249982,0,0);-ms-transform:matrix(0.242533,-0.002910,0.003000,0.249982,0,0);-webkit-transform:matrix(0.242533,-0.002910,0.003000,0.249982,0,0);}
.m9a_c00298{transform:matrix(0.242678,-0.003640,0.003750,0.249972,0,0);-ms-transform:matrix(0.242678,-0.003640,0.003750,0.249972,0,0);-webkit-transform:matrix(0.242678,-0.003640,0.003750,0.249972,0,0);}
.mbc_c00298{transform:matrix(0.242751,-0.003399,0.003500,0.249976,0,0);-ms-transform:matrix(0.242751,-0.003399,0.003500,0.249976,0,0);-webkit-transform:matrix(0.242751,-0.003399,0.003500,0.249976,0,0);}
.mcd_c00298{transform:matrix(0.242758,-0.002913,0.003000,0.249982,0,0);-ms-transform:matrix(0.242758,-0.002913,0.003000,0.249982,0,0);-webkit-transform:matrix(0.242758,-0.002913,0.003000,0.249982,0,0);}
.mdf_c00298{transform:matrix(0.242798,-0.002428,0.002500,0.249988,0,0);-ms-transform:matrix(0.242798,-0.002428,0.002500,0.249988,0,0);-webkit-transform:matrix(0.242798,-0.002428,0.002500,0.249988,0,0);}
.mc1_c00298{transform:matrix(0.243026,-0.003402,0.003500,0.249976,0,0);-ms-transform:matrix(0.243026,-0.003402,0.003500,0.249976,0,0);-webkit-transform:matrix(0.243026,-0.003402,0.003500,0.249976,0,0);}
.ma1_c00298{transform:matrix(0.243149,-0.003161,0.003250,0.249979,0,0);-ms-transform:matrix(0.243149,-0.003161,0.003250,0.249979,0,0);-webkit-transform:matrix(0.243149,-0.003161,0.003250,0.249979,0,0);}
.m5e_c00298{transform:matrix(0.243351,-0.003407,0.003500,0.249976,0,0);-ms-transform:matrix(0.243351,-0.003407,0.003500,0.249976,0,0);-webkit-transform:matrix(0.243351,-0.003407,0.003500,0.249976,0,0);}
.m79_c00298{transform:matrix(0.243471,-0.003409,0.003500,0.249976,0,0);-ms-transform:matrix(0.243471,-0.003409,0.003500,0.249976,0,0);-webkit-transform:matrix(0.243471,-0.003409,0.003500,0.249976,0,0);}
.mc3_c00298{transform:matrix(0.243876,-0.003414,0.003500,0.249976,0,0);-ms-transform:matrix(0.243876,-0.003414,0.003500,0.249976,0,0);-webkit-transform:matrix(0.243876,-0.003414,0.003500,0.249976,0,0);}
.m90_c00298{transform:matrix(0.244088,-0.003661,0.003750,0.249972,0,0);-ms-transform:matrix(0.244088,-0.003661,0.003750,0.249972,0,0);-webkit-transform:matrix(0.244088,-0.003661,0.003750,0.249972,0,0);}
.me2_c00298{transform:matrix(0.244148,-0.002441,0.002500,0.249988,0,0);-ms-transform:matrix(0.244148,-0.002441,0.002500,0.249988,0,0);-webkit-transform:matrix(0.244148,-0.002441,0.002500,0.249988,0,0);}
.ma_c00298{transform:matrix(0.244231,-0.003419,0.003500,0.249976,0,0);-ms-transform:matrix(0.244231,-0.003419,0.003500,0.249976,0,0);-webkit-transform:matrix(0.244231,-0.003419,0.003500,0.249976,0,0);}
.ma8_c00298{transform:matrix(0.244267,-0.002931,0.003000,0.249982,0,0);-ms-transform:matrix(0.244267,-0.002931,0.003000,0.249982,0,0);-webkit-transform:matrix(0.244267,-0.002931,0.003000,0.249982,0,0);}
.m35_c00298{transform:matrix(0.244822,-0.003672,0.003750,0.249972,0,0);-ms-transform:matrix(0.244822,-0.003672,0.003750,0.249972,0,0);-webkit-transform:matrix(0.244822,-0.003672,0.003750,0.249972,0,0);}
.m1c_c00298{transform:matrix(0.245092,-0.003676,0.003750,0.249972,0,0);-ms-transform:matrix(0.245092,-0.003676,0.003750,0.249972,0,0);-webkit-transform:matrix(0.245092,-0.003676,0.003750,0.249972,0,0);}
.m1e_c00298{transform:matrix(0.245777,-0.003687,0.003750,0.249972,0,0);-ms-transform:matrix(0.245777,-0.003687,0.003750,0.249972,0,0);-webkit-transform:matrix(0.245777,-0.003687,0.003750,0.249972,0,0);}
.m5a_c00298{transform:matrix(0.245789,-0.003933,0.003999,0.249968,0,0);-ms-transform:matrix(0.245789,-0.003933,0.003999,0.249968,0,0);-webkit-transform:matrix(0.245789,-0.003933,0.003999,0.249968,0,0);}
.m84_c00298{transform:matrix(0.245881,-0.003442,0.003500,0.249976,0,0);-ms-transform:matrix(0.245881,-0.003442,0.003500,0.249976,0,0);-webkit-transform:matrix(0.245881,-0.003442,0.003500,0.249976,0,0);}
.m9c_c00298{transform:matrix(0.246762,-0.003701,0.003750,0.249972,0,0);-ms-transform:matrix(0.246762,-0.003701,0.003750,0.249972,0,0);-webkit-transform:matrix(0.246762,-0.003701,0.003750,0.249972,0,0);}
.m82_c00298{transform:matrix(0.247276,-0.003462,0.003500,0.249976,0,0);-ms-transform:matrix(0.247276,-0.003462,0.003500,0.249976,0,0);-webkit-transform:matrix(0.247276,-0.003462,0.003500,0.249976,0,0);}
.me5_c00298{transform:matrix(0.247603,-0.002476,0.002500,0.249988,0,0);-ms-transform:matrix(0.247603,-0.002476,0.002500,0.249988,0,0);-webkit-transform:matrix(0.247603,-0.002476,0.002500,0.249988,0,0);}
.m58_c00298{transform:matrix(0.247923,-0.003967,0.003999,0.249968,0,0);-ms-transform:matrix(0.247923,-0.003967,0.003999,0.249968,0,0);-webkit-transform:matrix(0.247923,-0.003967,0.003999,0.249968,0,0);}
.m4a_c00298{transform:matrix(0.248288,-0.003973,0.003999,0.249968,0,0);-ms-transform:matrix(0.248288,-0.003973,0.003999,0.249968,0,0);-webkit-transform:matrix(0.248288,-0.003973,0.003999,0.249968,0,0);}
.mf_c00298{transform:matrix(0.248421,-0.003478,0.003500,0.249976,0,0);-ms-transform:matrix(0.248421,-0.003478,0.003500,0.249976,0,0);-webkit-transform:matrix(0.248421,-0.003478,0.003500,0.249976,0,0);}
.mc2_c00298{transform:matrix(0.249461,-0.003492,0.003500,0.249976,0,0);-ms-transform:matrix(0.249461,-0.003492,0.003500,0.249976,0,0);-webkit-transform:matrix(0.249461,-0.003492,0.003500,0.249976,0,0);}
.m99_c00298{transform:matrix(0.249502,-0.003743,0.003750,0.249972,0,0);-ms-transform:matrix(0.249502,-0.003743,0.003750,0.249972,0,0);-webkit-transform:matrix(0.249502,-0.003743,0.003750,0.249972,0,0);}
.m64_c00298{transform:matrix(0.250835,-0.003512,0.003500,0.249976,0,0);-ms-transform:matrix(0.250835,-0.003512,0.003500,0.249976,0,0);-webkit-transform:matrix(0.250835,-0.003512,0.003500,0.249976,0,0);}
.m4b_c00298{transform:matrix(0.251298,-0.004021,0.003999,0.249968,0,0);-ms-transform:matrix(0.251298,-0.004021,0.003999,0.249968,0,0);-webkit-transform:matrix(0.251298,-0.004021,0.003999,0.249968,0,0);}
.mb6_c00298{transform:matrix(0.251418,-0.004023,0.003999,0.249968,0,0);-ms-transform:matrix(0.251418,-0.004023,0.003999,0.249968,0,0);-webkit-transform:matrix(0.251418,-0.004023,0.003999,0.249968,0,0);}
.mae_c00298{transform:matrix(0.251712,-0.003021,0.003000,0.249982,0,0);-ms-transform:matrix(0.251712,-0.003021,0.003000,0.249982,0,0);-webkit-transform:matrix(0.251712,-0.003021,0.003000,0.249982,0,0);}
.m96_c00298{transform:matrix(0.252337,-0.003785,0.003750,0.249972,0,0);-ms-transform:matrix(0.252337,-0.003785,0.003750,0.249972,0,0);-webkit-transform:matrix(0.252337,-0.003785,0.003750,0.249972,0,0);}
.m42_c00298{transform:matrix(0.252708,-0.004043,0.003999,0.249968,0,0);-ms-transform:matrix(0.252708,-0.004043,0.003999,0.249968,0,0);-webkit-transform:matrix(0.252708,-0.004043,0.003999,0.249968,0,0);}
.m24_c00298{transform:matrix(0.253317,-0.003800,0.003750,0.249972,0,0);-ms-transform:matrix(0.253317,-0.003800,0.003750,0.249972,0,0);-webkit-transform:matrix(0.253317,-0.003800,0.003750,0.249972,0,0);}
.m3e_c00298{transform:matrix(0.253347,-0.003800,0.003750,0.249972,0,0);-ms-transform:matrix(0.253347,-0.003800,0.003750,0.249972,0,0);-webkit-transform:matrix(0.253347,-0.003800,0.003750,0.249972,0,0);}
.mc7_c00298{transform:matrix(0.253490,-0.003549,0.003500,0.249976,0,0);-ms-transform:matrix(0.253490,-0.003549,0.003500,0.249976,0,0);-webkit-transform:matrix(0.253490,-0.003549,0.003500,0.249976,0,0);}
.md5_c00298{transform:matrix(0.253742,-0.003045,0.003000,0.249982,0,0);-ms-transform:matrix(0.253742,-0.003045,0.003000,0.249982,0,0);-webkit-transform:matrix(0.253742,-0.003045,0.003000,0.249982,0,0);}
.m77_c00298{transform:matrix(0.253760,-0.003553,0.003500,0.249976,0,0);-ms-transform:matrix(0.253760,-0.003553,0.003500,0.249976,0,0);-webkit-transform:matrix(0.253760,-0.003553,0.003500,0.249976,0,0);}
.m13_c00298{transform:matrix(0.253775,-0.003553,0.003500,0.249976,0,0);-ms-transform:matrix(0.253775,-0.003553,0.003500,0.249976,0,0);-webkit-transform:matrix(0.253775,-0.003553,0.003500,0.249976,0,0);}
.mc9_c00298{transform:matrix(0.254025,-0.003556,0.003500,0.249976,0,0);-ms-transform:matrix(0.254025,-0.003556,0.003500,0.249976,0,0);-webkit-transform:matrix(0.254025,-0.003556,0.003500,0.249976,0,0);}
.m92_c00298{transform:matrix(0.254121,-0.003812,0.003750,0.249972,0,0);-ms-transform:matrix(0.254121,-0.003812,0.003750,0.249972,0,0);-webkit-transform:matrix(0.254121,-0.003812,0.003750,0.249972,0,0);}
.m19_c00298{transform:matrix(0.254940,-0.003569,0.003500,0.249976,0,0);-ms-transform:matrix(0.254940,-0.003569,0.003500,0.249976,0,0);-webkit-transform:matrix(0.254940,-0.003569,0.003500,0.249976,0,0);}
.m14_c00298{transform:matrix(0.255180,-0.003573,0.003500,0.249976,0,0);-ms-transform:matrix(0.255180,-0.003573,0.003500,0.249976,0,0);-webkit-transform:matrix(0.255180,-0.003573,0.003500,0.249976,0,0);}
.me1_c00298{transform:matrix(0.255677,-0.002557,0.002500,0.249988,0,0);-ms-transform:matrix(0.255677,-0.002557,0.002500,0.249988,0,0);-webkit-transform:matrix(0.255677,-0.002557,0.002500,0.249988,0,0);}
.mb8_c00298{transform:matrix(0.255752,-0.004092,0.003999,0.249968,0,0);-ms-transform:matrix(0.255752,-0.004092,0.003999,0.249968,0,0);-webkit-transform:matrix(0.255752,-0.004092,0.003999,0.249968,0,0);}
.mc0_c00298{transform:matrix(0.256035,-0.003584,0.003500,0.249976,0,0);-ms-transform:matrix(0.256035,-0.003584,0.003500,0.249976,0,0);-webkit-transform:matrix(0.256035,-0.003584,0.003500,0.249976,0,0);}
.m1d_c00298{transform:matrix(0.256151,-0.003842,0.003750,0.249972,0,0);-ms-transform:matrix(0.256151,-0.003842,0.003750,0.249972,0,0);-webkit-transform:matrix(0.256151,-0.003842,0.003750,0.249972,0,0);}
.mba_c00298{transform:matrix(0.256227,-0.004100,0.003999,0.249968,0,0);-ms-transform:matrix(0.256227,-0.004100,0.003999,0.249968,0,0);-webkit-transform:matrix(0.256227,-0.004100,0.003999,0.249968,0,0);}
.m75_c00298{transform:matrix(0.257290,-0.003602,0.003500,0.249976,0,0);-ms-transform:matrix(0.257290,-0.003602,0.003500,0.249976,0,0);-webkit-transform:matrix(0.257290,-0.003602,0.003500,0.249976,0,0);}
.mb1_c00298{transform:matrix(0.257532,-0.004121,0.003999,0.249968,0,0);-ms-transform:matrix(0.257532,-0.004121,0.003999,0.249968,0,0);-webkit-transform:matrix(0.257532,-0.004121,0.003999,0.249968,0,0);}
.maf_c00298{transform:matrix(0.257586,-0.003091,0.003000,0.249982,0,0);-ms-transform:matrix(0.257586,-0.003091,0.003000,0.249982,0,0);-webkit-transform:matrix(0.257586,-0.003091,0.003000,0.249982,0,0);}
.m33_c00298{transform:matrix(0.257926,-0.003869,0.003750,0.249972,0,0);-ms-transform:matrix(0.257926,-0.003869,0.003750,0.249972,0,0);-webkit-transform:matrix(0.257926,-0.003869,0.003750,0.249972,0,0);}
.m9b_c00298{transform:matrix(0.257971,-0.003870,0.003750,0.249972,0,0);-ms-transform:matrix(0.257971,-0.003870,0.003750,0.249972,0,0);-webkit-transform:matrix(0.257971,-0.003870,0.003750,0.249972,0,0);}
.mce_c00298{transform:matrix(0.258136,-0.003098,0.003000,0.249982,0,0);-ms-transform:matrix(0.258136,-0.003098,0.003000,0.249982,0,0);-webkit-transform:matrix(0.258136,-0.003098,0.003000,0.249982,0,0);}
.m37_c00298{transform:matrix(0.258221,-0.003873,0.003750,0.249972,0,0);-ms-transform:matrix(0.258221,-0.003873,0.003750,0.249972,0,0);-webkit-transform:matrix(0.258221,-0.003873,0.003750,0.249972,0,0);}
.m59_c00298{transform:matrix(0.258267,-0.004132,0.003999,0.249968,0,0);-ms-transform:matrix(0.258267,-0.004132,0.003999,0.249968,0,0);-webkit-transform:matrix(0.258267,-0.004132,0.003999,0.249968,0,0);}
.m29_c00298{transform:matrix(0.258356,-0.003875,0.003750,0.249972,0,0);-ms-transform:matrix(0.258356,-0.003875,0.003750,0.249972,0,0);-webkit-transform:matrix(0.258356,-0.003875,0.003750,0.249972,0,0);}
.m2f_c00298{transform:matrix(0.258581,-0.003879,0.003750,0.249972,0,0);-ms-transform:matrix(0.258581,-0.003879,0.003750,0.249972,0,0);-webkit-transform:matrix(0.258581,-0.003879,0.003750,0.249972,0,0);}
.m8f_c00298{transform:matrix(0.258921,-0.003884,0.003750,0.249972,0,0);-ms-transform:matrix(0.258921,-0.003884,0.003750,0.249972,0,0);-webkit-transform:matrix(0.258921,-0.003884,0.003750,0.249972,0,0);}
.m66_c00298{transform:matrix(0.259126,-0.003887,0.003750,0.249972,0,0);-ms-transform:matrix(0.259126,-0.003887,0.003750,0.249972,0,0);-webkit-transform:matrix(0.259126,-0.003887,0.003750,0.249972,0,0);}
.md8_c00298{transform:matrix(0.259501,-0.003114,0.003000,0.249982,0,0);-ms-transform:matrix(0.259501,-0.003114,0.003000,0.249982,0,0);-webkit-transform:matrix(0.259501,-0.003114,0.003000,0.249982,0,0);}
.m56_c00298{transform:matrix(0.259587,-0.004153,0.003999,0.249968,0,0);-ms-transform:matrix(0.259587,-0.004153,0.003999,0.249968,0,0);-webkit-transform:matrix(0.259587,-0.004153,0.003999,0.249968,0,0);}
.m1b_c00298{transform:matrix(0.259606,-0.003894,0.003750,0.249972,0,0);-ms-transform:matrix(0.259606,-0.003894,0.003750,0.249972,0,0);-webkit-transform:matrix(0.259606,-0.003894,0.003750,0.249972,0,0);}
.m3_c00298{transform:matrix(0.259945,-0.003639,0.003500,0.249976,0,0);-ms-transform:matrix(0.259945,-0.003639,0.003500,0.249976,0,0);-webkit-transform:matrix(0.259945,-0.003639,0.003500,0.249976,0,0);}
.m2c_c00298{transform:matrix(0.260071,-0.003901,0.003750,0.249972,0,0);-ms-transform:matrix(0.260071,-0.003901,0.003750,0.249972,0,0);-webkit-transform:matrix(0.260071,-0.003901,0.003750,0.249972,0,0);}
.me_c00298{transform:matrix(0.260110,-0.003642,0.003500,0.249976,0,0);-ms-transform:matrix(0.260110,-0.003642,0.003500,0.249976,0,0);-webkit-transform:matrix(0.260110,-0.003642,0.003500,0.249976,0,0);}
.m3b_c00298{transform:matrix(0.260171,-0.003903,0.003750,0.249972,0,0);-ms-transform:matrix(0.260171,-0.003903,0.003750,0.249972,0,0);-webkit-transform:matrix(0.260171,-0.003903,0.003750,0.249972,0,0);}
.m74_c00298{transform:matrix(0.260409,-0.003646,0.003500,0.249976,0,0);-ms-transform:matrix(0.260409,-0.003646,0.003500,0.249976,0,0);-webkit-transform:matrix(0.260409,-0.003646,0.003500,0.249976,0,0);}
.me7_c00298{transform:matrix(0.260877,-0.002609,0.002500,0.249988,0,0);-ms-transform:matrix(0.260877,-0.002609,0.002500,0.249988,0,0);-webkit-transform:matrix(0.260877,-0.002609,0.002500,0.249988,0,0);}
.m32_c00298{transform:matrix(0.260891,-0.003913,0.003750,0.249972,0,0);-ms-transform:matrix(0.260891,-0.003913,0.003750,0.249972,0,0);-webkit-transform:matrix(0.260891,-0.003913,0.003750,0.249972,0,0);}
.m4_c00298{transform:matrix(0.260999,-0.003654,0.003500,0.249976,0,0);-ms-transform:matrix(0.260999,-0.003654,0.003500,0.249976,0,0);-webkit-transform:matrix(0.260999,-0.003654,0.003500,0.249976,0,0);}
.m2b_c00298{transform:matrix(0.261136,-0.003917,0.003750,0.249972,0,0);-ms-transform:matrix(0.261136,-0.003917,0.003750,0.249972,0,0);-webkit-transform:matrix(0.261136,-0.003917,0.003750,0.249972,0,0);}
.mde_c00298{transform:matrix(0.261157,-0.002612,0.002500,0.249988,0,0);-ms-transform:matrix(0.261157,-0.002612,0.002500,0.249988,0,0);-webkit-transform:matrix(0.261157,-0.002612,0.002500,0.249988,0,0);}
.m27_c00298{transform:matrix(0.261306,-0.003920,0.003750,0.249972,0,0);-ms-transform:matrix(0.261306,-0.003920,0.003750,0.249972,0,0);-webkit-transform:matrix(0.261306,-0.003920,0.003750,0.249972,0,0);}
.m28_c00298{transform:matrix(0.261451,-0.003922,0.003750,0.249972,0,0);-ms-transform:matrix(0.261451,-0.003922,0.003750,0.249972,0,0);-webkit-transform:matrix(0.261451,-0.003922,0.003750,0.249972,0,0);}
.mc8_c00298{transform:matrix(0.261464,-0.003661,0.003500,0.249976,0,0);-ms-transform:matrix(0.261464,-0.003661,0.003500,0.249976,0,0);-webkit-transform:matrix(0.261464,-0.003661,0.003500,0.249976,0,0);}
.m6c_c00298{transform:matrix(0.261666,-0.003925,0.003750,0.249972,0,0);-ms-transform:matrix(0.261666,-0.003925,0.003750,0.249972,0,0);-webkit-transform:matrix(0.261666,-0.003925,0.003750,0.249972,0,0);}
.m93_c00298{transform:matrix(0.261936,-0.003929,0.003750,0.249972,0,0);-ms-transform:matrix(0.261936,-0.003929,0.003750,0.249972,0,0);-webkit-transform:matrix(0.261936,-0.003929,0.003750,0.249972,0,0);}
.m12_c00298{transform:matrix(0.261939,-0.003667,0.003500,0.249976,0,0);-ms-transform:matrix(0.261939,-0.003667,0.003500,0.249976,0,0);-webkit-transform:matrix(0.261939,-0.003667,0.003500,0.249976,0,0);}
.m9e_c00298{transform:matrix(0.261943,-0.003405,0.003250,0.249979,0,0);-ms-transform:matrix(0.261943,-0.003405,0.003250,0.249979,0,0);-webkit-transform:matrix(0.261943,-0.003405,0.003250,0.249979,0,0);}
.ma0_c00298{transform:matrix(0.262348,-0.003411,0.003250,0.249979,0,0);-ms-transform:matrix(0.262348,-0.003411,0.003250,0.249979,0,0);-webkit-transform:matrix(0.262348,-0.003411,0.003250,0.249979,0,0);}
.m41_c00298{transform:matrix(0.262495,-0.003937,0.003750,0.249972,0,0);-ms-transform:matrix(0.262495,-0.003937,0.003750,0.249972,0,0);-webkit-transform:matrix(0.262495,-0.003937,0.003750,0.249972,0,0);}
.m1f_c00298{transform:matrix(0.262855,-0.003943,0.003750,0.249972,0,0);-ms-transform:matrix(0.262855,-0.003943,0.003750,0.249972,0,0);-webkit-transform:matrix(0.262855,-0.003943,0.003750,0.249972,0,0);}
.m3f_c00298{transform:matrix(0.262890,-0.003943,0.003750,0.249972,0,0);-ms-transform:matrix(0.262890,-0.003943,0.003750,0.249972,0,0);-webkit-transform:matrix(0.262890,-0.003943,0.003750,0.249972,0,0);}
.mca_c00298{transform:matrix(0.263204,-0.003685,0.003500,0.249976,0,0);-ms-transform:matrix(0.263204,-0.003685,0.003500,0.249976,0,0);-webkit-transform:matrix(0.263204,-0.003685,0.003500,0.249976,0,0);}
.m6f_c00298{transform:matrix(0.263350,-0.003950,0.003750,0.249972,0,0);-ms-transform:matrix(0.263350,-0.003950,0.003750,0.249972,0,0);-webkit-transform:matrix(0.263350,-0.003950,0.003750,0.249972,0,0);}
.mc6_c00298{transform:matrix(0.263479,-0.003689,0.003500,0.249976,0,0);-ms-transform:matrix(0.263479,-0.003689,0.003500,0.249976,0,0);-webkit-transform:matrix(0.263479,-0.003689,0.003500,0.249976,0,0);}
.m88_c00298{transform:matrix(0.263780,-0.003957,0.003750,0.249972,0,0);-ms-transform:matrix(0.263780,-0.003957,0.003750,0.249972,0,0);-webkit-transform:matrix(0.263780,-0.003957,0.003750,0.249972,0,0);}
.m83_c00298{transform:matrix(0.264079,-0.003697,0.003500,0.249976,0,0);-ms-transform:matrix(0.264079,-0.003697,0.003500,0.249976,0,0);-webkit-transform:matrix(0.264079,-0.003697,0.003500,0.249976,0,0);}
.m70_c00298{transform:matrix(0.264085,-0.003961,0.003750,0.249972,0,0);-ms-transform:matrix(0.264085,-0.003961,0.003750,0.249972,0,0);-webkit-transform:matrix(0.264085,-0.003961,0.003750,0.249972,0,0);}
.ma6_c00298{transform:matrix(0.264823,-0.003443,0.003250,0.249979,0,0);-ms-transform:matrix(0.264823,-0.003443,0.003250,0.249979,0,0);-webkit-transform:matrix(0.264823,-0.003443,0.003250,0.249979,0,0);}
.mb0_c00298{transform:matrix(0.265061,-0.004241,0.003999,0.249968,0,0);-ms-transform:matrix(0.265061,-0.004241,0.003999,0.249968,0,0);-webkit-transform:matrix(0.265061,-0.004241,0.003999,0.249968,0,0);}
.m3c_c00298{transform:matrix(0.265150,-0.003977,0.003750,0.249972,0,0);-ms-transform:matrix(0.265150,-0.003977,0.003750,0.249972,0,0);-webkit-transform:matrix(0.265150,-0.003977,0.003750,0.249972,0,0);}
.m6d_c00298{transform:matrix(0.266385,-0.003996,0.003750,0.249972,0,0);-ms-transform:matrix(0.266385,-0.003996,0.003750,0.249972,0,0);-webkit-transform:matrix(0.266385,-0.003996,0.003750,0.249972,0,0);}
.m40_c00298{transform:matrix(0.266765,-0.004001,0.003750,0.249972,0,0);-ms-transform:matrix(0.266765,-0.004001,0.003750,0.249972,0,0);-webkit-transform:matrix(0.266765,-0.004001,0.003750,0.249972,0,0);}
.mb5_c00298{transform:matrix(0.266956,-0.004271,0.003999,0.249968,0,0);-ms-transform:matrix(0.266956,-0.004271,0.003999,0.249968,0,0);-webkit-transform:matrix(0.266956,-0.004271,0.003999,0.249968,0,0);}
.m23_c00298{transform:matrix(0.267255,-0.004009,0.003750,0.249972,0,0);-ms-transform:matrix(0.267255,-0.004009,0.003750,0.249972,0,0);-webkit-transform:matrix(0.267255,-0.004009,0.003750,0.249972,0,0);}
.m94_c00298{transform:matrix(0.267270,-0.004009,0.003750,0.249972,0,0);-ms-transform:matrix(0.267270,-0.004009,0.003750,0.249972,0,0);-webkit-transform:matrix(0.267270,-0.004009,0.003750,0.249972,0,0);}
.m89_c00298{transform:matrix(0.267805,-0.004017,0.003750,0.249972,0,0);-ms-transform:matrix(0.267805,-0.004017,0.003750,0.249972,0,0);-webkit-transform:matrix(0.267805,-0.004017,0.003750,0.249972,0,0);}
.m78_c00298{transform:matrix(0.268104,-0.003753,0.003500,0.249976,0,0);-ms-transform:matrix(0.268104,-0.003753,0.003500,0.249976,0,0);-webkit-transform:matrix(0.268104,-0.003753,0.003500,0.249976,0,0);}
.m4c_c00298{transform:matrix(0.268746,-0.004300,0.003999,0.249968,0,0);-ms-transform:matrix(0.268746,-0.004300,0.003999,0.249968,0,0);-webkit-transform:matrix(0.268746,-0.004300,0.003999,0.249968,0,0);}
.mb2_c00298{transform:matrix(0.269236,-0.004308,0.003999,0.249968,0,0);-ms-transform:matrix(0.269236,-0.004308,0.003999,0.249968,0,0);-webkit-transform:matrix(0.269236,-0.004308,0.003999,0.249968,0,0);}
.ma2_c00298{transform:matrix(0.269337,-0.003501,0.003250,0.249979,0,0);-ms-transform:matrix(0.269337,-0.003501,0.003250,0.249979,0,0);-webkit-transform:matrix(0.269337,-0.003501,0.003250,0.249979,0,0);}
.m5b_c00298{transform:matrix(0.269665,-0.004315,0.003999,0.249968,0,0);-ms-transform:matrix(0.269665,-0.004315,0.003999,0.249968,0,0);-webkit-transform:matrix(0.269665,-0.004315,0.003999,0.249968,0,0);}
.m9f_c00298{transform:matrix(0.269952,-0.003509,0.003250,0.249979,0,0);-ms-transform:matrix(0.269952,-0.003509,0.003250,0.249979,0,0);-webkit-transform:matrix(0.269952,-0.003509,0.003250,0.249979,0,0);}
.mcc_c00298{transform:matrix(0.270144,-0.003782,0.003500,0.249976,0,0);-ms-transform:matrix(0.270144,-0.003782,0.003500,0.249976,0,0);-webkit-transform:matrix(0.270144,-0.003782,0.003500,0.249976,0,0);}
.m7c_c00298{transform:matrix(0.270443,-0.003786,0.003500,0.249976,0,0);-ms-transform:matrix(0.270443,-0.003786,0.003500,0.249976,0,0);-webkit-transform:matrix(0.270443,-0.003786,0.003500,0.249976,0,0);}
.m21_c00298{transform:matrix(0.270615,-0.004059,0.003750,0.249972,0,0);-ms-transform:matrix(0.270615,-0.004059,0.003750,0.249972,0,0);-webkit-transform:matrix(0.270615,-0.004059,0.003750,0.249972,0,0);}
.m51_c00298{transform:matrix(0.271129,-0.004067,0.003750,0.249972,0,0);-ms-transform:matrix(0.271129,-0.004067,0.003750,0.249972,0,0);-webkit-transform:matrix(0.271129,-0.004067,0.003750,0.249972,0,0);}
.m11_c00298{transform:matrix(0.271213,-0.003797,0.003500,0.249976,0,0);-ms-transform:matrix(0.271213,-0.003797,0.003500,0.249976,0,0);-webkit-transform:matrix(0.271213,-0.003797,0.003500,0.249976,0,0);}
.m67_c00298{transform:matrix(0.271229,-0.004068,0.003750,0.249972,0,0);-ms-transform:matrix(0.271229,-0.004068,0.003750,0.249972,0,0);-webkit-transform:matrix(0.271229,-0.004068,0.003750,0.249972,0,0);}
.m17_c00298{transform:matrix(0.271348,-0.003799,0.003500,0.249976,0,0);-ms-transform:matrix(0.271348,-0.003799,0.003500,0.249976,0,0);-webkit-transform:matrix(0.271348,-0.003799,0.003500,0.249976,0,0);}
.m4f_c00298{transform:matrix(0.271504,-0.004073,0.003750,0.249972,0,0);-ms-transform:matrix(0.271504,-0.004073,0.003750,0.249972,0,0);-webkit-transform:matrix(0.271504,-0.004073,0.003750,0.249972,0,0);}
.mb9_c00298{transform:matrix(0.271510,-0.004344,0.003999,0.249968,0,0);-ms-transform:matrix(0.271510,-0.004344,0.003999,0.249968,0,0);-webkit-transform:matrix(0.271510,-0.004344,0.003999,0.249968,0,0);}
.ma5_c00298{transform:matrix(0.271562,-0.003530,0.003250,0.249979,0,0);-ms-transform:matrix(0.271562,-0.003530,0.003250,0.249979,0,0);-webkit-transform:matrix(0.271562,-0.003530,0.003250,0.249979,0,0);}
.me3_c00298{transform:matrix(0.272106,-0.002721,0.002500,0.249988,0,0);-ms-transform:matrix(0.272106,-0.002721,0.002500,0.249988,0,0);-webkit-transform:matrix(0.272106,-0.002721,0.002500,0.249988,0,0);}
.m76_c00298{transform:matrix(0.272268,-0.003812,0.003500,0.249976,0,0);-ms-transform:matrix(0.272268,-0.003812,0.003500,0.249976,0,0);-webkit-transform:matrix(0.272268,-0.003812,0.003500,0.249976,0,0);}
.m3a_c00298{transform:matrix(0.273104,-0.004097,0.003750,0.249972,0,0);-ms-transform:matrix(0.273104,-0.004097,0.003750,0.249972,0,0);-webkit-transform:matrix(0.273104,-0.004097,0.003750,0.249972,0,0);}
.md9_c00298{transform:matrix(0.273345,-0.003280,0.003000,0.249982,0,0);-ms-transform:matrix(0.273345,-0.003280,0.003000,0.249982,0,0);-webkit-transform:matrix(0.273345,-0.003280,0.003000,0.249982,0,0);}
.m50_c00298{transform:matrix(0.273354,-0.004100,0.003750,0.249972,0,0);-ms-transform:matrix(0.273354,-0.004100,0.003750,0.249972,0,0);-webkit-transform:matrix(0.273354,-0.004100,0.003750,0.249972,0,0);}
.m73_c00298{transform:matrix(0.273424,-0.004101,0.003750,0.249972,0,0);-ms-transform:matrix(0.273424,-0.004101,0.003750,0.249972,0,0);-webkit-transform:matrix(0.273424,-0.004101,0.003750,0.249972,0,0);}
.m8_c00298{transform:matrix(0.273428,-0.003828,0.003500,0.249976,0,0);-ms-transform:matrix(0.273428,-0.003828,0.003500,0.249976,0,0);-webkit-transform:matrix(0.273428,-0.003828,0.003500,0.249976,0,0);}
.md7_c00298{transform:matrix(0.273890,-0.003287,0.003000,0.249982,0,0);-ms-transform:matrix(0.273890,-0.003287,0.003000,0.249982,0,0);-webkit-transform:matrix(0.273890,-0.003287,0.003000,0.249982,0,0);}
.m7a_c00298{transform:matrix(0.274223,-0.003839,0.003500,0.249976,0,0);-ms-transform:matrix(0.274223,-0.003839,0.003500,0.249976,0,0);-webkit-transform:matrix(0.274223,-0.003839,0.003500,0.249976,0,0);}
.me6_c00298{transform:matrix(0.274431,-0.002744,0.002500,0.249988,0,0);-ms-transform:matrix(0.274431,-0.002744,0.002500,0.249988,0,0);-webkit-transform:matrix(0.274431,-0.002744,0.002500,0.249988,0,0);}
.ma4_c00298{transform:matrix(0.274577,-0.003569,0.003250,0.249979,0,0);-ms-transform:matrix(0.274577,-0.003569,0.003250,0.249979,0,0);-webkit-transform:matrix(0.274577,-0.003569,0.003250,0.249979,0,0);}
.m53_c00298{transform:matrix(0.274974,-0.004125,0.003750,0.249972,0,0);-ms-transform:matrix(0.274974,-0.004125,0.003750,0.249972,0,0);-webkit-transform:matrix(0.274974,-0.004125,0.003750,0.249972,0,0);}
.m7d_c00298{transform:matrix(0.275573,-0.003858,0.003500,0.249976,0,0);-ms-transform:matrix(0.275573,-0.003858,0.003500,0.249976,0,0);-webkit-transform:matrix(0.275573,-0.003858,0.003500,0.249976,0,0);}
.m68_c00298{transform:matrix(0.276069,-0.004141,0.003750,0.249972,0,0);-ms-transform:matrix(0.276069,-0.004141,0.003750,0.249972,0,0);-webkit-transform:matrix(0.276069,-0.004141,0.003750,0.249972,0,0);}
.mc_c00298{transform:matrix(0.276338,-0.003869,0.003500,0.249976,0,0);-ms-transform:matrix(0.276338,-0.003869,0.003500,0.249976,0,0);-webkit-transform:matrix(0.276338,-0.003869,0.003500,0.249976,0,0);}
.m85_c00298{transform:matrix(0.276853,-0.003876,0.003500,0.249976,0,0);-ms-transform:matrix(0.276853,-0.003876,0.003500,0.249976,0,0);-webkit-transform:matrix(0.276853,-0.003876,0.003500,0.249976,0,0);}
.me4_c00298{transform:matrix(0.276856,-0.002769,0.002500,0.249988,0,0);-ms-transform:matrix(0.276856,-0.002769,0.002500,0.249988,0,0);-webkit-transform:matrix(0.276856,-0.002769,0.002500,0.249988,0,0);}
.m22_c00298{transform:matrix(0.277049,-0.004156,0.003750,0.249972,0,0);-ms-transform:matrix(0.277049,-0.004156,0.003750,0.249972,0,0);-webkit-transform:matrix(0.277049,-0.004156,0.003750,0.249972,0,0);}
.mb7_c00298{transform:matrix(0.277374,-0.004438,0.003999,0.249968,0,0);-ms-transform:matrix(0.277374,-0.004438,0.003999,0.249968,0,0);-webkit-transform:matrix(0.277374,-0.004438,0.003999,0.249968,0,0);}
.mdd_c00298{transform:matrix(0.277490,-0.003330,0.003000,0.249982,0,0);-ms-transform:matrix(0.277490,-0.003330,0.003000,0.249982,0,0);-webkit-transform:matrix(0.277490,-0.003330,0.003000,0.249982,0,0);}
.m5_c00298{transform:matrix(0.277553,-0.003886,0.003500,0.249976,0,0);-ms-transform:matrix(0.277553,-0.003886,0.003500,0.249976,0,0);-webkit-transform:matrix(0.277553,-0.003886,0.003500,0.249976,0,0);}
.m86_c00298{transform:matrix(0.277643,-0.003887,0.003500,0.249976,0,0);-ms-transform:matrix(0.277643,-0.003887,0.003500,0.249976,0,0);-webkit-transform:matrix(0.277643,-0.003887,0.003500,0.249976,0,0);}
.m52_c00298{transform:matrix(0.277779,-0.004167,0.003750,0.249972,0,0);-ms-transform:matrix(0.277779,-0.004167,0.003750,0.249972,0,0);-webkit-transform:matrix(0.277779,-0.004167,0.003750,0.249972,0,0);}
.m31_c00298{transform:matrix(0.278974,-0.004185,0.003750,0.249972,0,0);-ms-transform:matrix(0.278974,-0.004185,0.003750,0.249972,0,0);-webkit-transform:matrix(0.278974,-0.004185,0.003750,0.249972,0,0);}
.m47_c00298{transform:matrix(0.279764,-0.004476,0.003999,0.249968,0,0);-ms-transform:matrix(0.279764,-0.004476,0.003999,0.249968,0,0);-webkit-transform:matrix(0.279764,-0.004476,0.003999,0.249968,0,0);}
.m81_c00298{transform:matrix(0.281097,-0.003935,0.003500,0.249976,0,0);-ms-transform:matrix(0.281097,-0.003935,0.003500,0.249976,0,0);-webkit-transform:matrix(0.281097,-0.003935,0.003500,0.249976,0,0);}
.m43_c00298{transform:matrix(0.281619,-0.004506,0.003999,0.249968,0,0);-ms-transform:matrix(0.281619,-0.004506,0.003999,0.249968,0,0);-webkit-transform:matrix(0.281619,-0.004506,0.003999,0.249968,0,0);}
.m8b_c00298{transform:matrix(0.283513,-0.004253,0.003750,0.249972,0,0);-ms-transform:matrix(0.283513,-0.004253,0.003750,0.249972,0,0);-webkit-transform:matrix(0.283513,-0.004253,0.003750,0.249972,0,0);}
.m8d_c00298{transform:matrix(0.287413,-0.004311,0.003750,0.249972,0,0);-ms-transform:matrix(0.287413,-0.004311,0.003750,0.249972,0,0);-webkit-transform:matrix(0.287413,-0.004311,0.003750,0.249972,0,0);}
.m95_c00298{transform:matrix(0.289042,-0.004336,0.003750,0.249972,0,0);-ms-transform:matrix(0.289042,-0.004336,0.003750,0.249972,0,0);-webkit-transform:matrix(0.289042,-0.004336,0.003750,0.249972,0,0);}
.m48_c00298{transform:matrix(0.297122,-0.004754,0.003999,0.249968,0,0);-ms-transform:matrix(0.297122,-0.004754,0.003999,0.249968,0,0);-webkit-transform:matrix(0.297122,-0.004754,0.003999,0.249968,0,0);}
.m45_c00298{transform:matrix(0.301001,-0.004816,0.003999,0.249968,0,0);-ms-transform:matrix(0.301001,-0.004816,0.003999,0.249968,0,0);-webkit-transform:matrix(0.301001,-0.004816,0.003999,0.249968,0,0);}
.m44_c00298{transform:matrix(0.302466,-0.004839,0.003999,0.249968,0,0);-ms-transform:matrix(0.302466,-0.004839,0.003999,0.249968,0,0);-webkit-transform:matrix(0.302466,-0.004839,0.003999,0.249968,0,0);}
.m46_c00298{transform:matrix(0.310115,-0.004962,0.003999,0.249968,0,0);-ms-transform:matrix(0.310115,-0.004962,0.003999,0.249968,0,0);-webkit-transform:matrix(0.310115,-0.004962,0.003999,0.249968,0,0);}
.m8c_c00298{transform:matrix(0.318954,-0.004784,0.003750,0.249972,0,0);-ms-transform:matrix(0.318954,-0.004784,0.003750,0.249972,0,0);-webkit-transform:matrix(0.318954,-0.004784,0.003750,0.249972,0,0);}
.v0_c00298{vertical-align:0.000000px;}
.ls0_c00298{letter-spacing:0.000000px;}
.sc__c00298{text-shadow:none;}
.sc0_c00298{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__c00298{-webkit-text-stroke:0px transparent;}
.sc0_c00298{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00298{word-spacing:0.000000px;}
.fc0_c00298{color:transparent;}
.fs3_c00298{font-size:66.008447px;}
.fsb_c00298{font-size:72.003600px;}
.fsa_c00298{font-size:72.005184px;}
.fs7_c00298{font-size:72.006084px;}
.fs1_c00298{font-size:72.007056px;}
.fs2_c00298{font-size:72.008100px;}
.fs4_c00298{font-size:72.009215px;}
.fs8_c00298{font-size:78.005616px;}
.fs5_c00298{font-size:78.007644px;}
.fs6_c00298{font-size:78.008775px;}
.fs9_c00298{font-size:78.009983px;}
.fs0_c00298{font-size:84.000000px;}
.y0_c00298{bottom:0.000000px;}
.yee_c00298{bottom:63.322545px;}
.yed_c00298{bottom:63.323175px;}
.ye4_c00298{bottom:93.421500px;}
.ye5_c00298{bottom:94.509600px;}
.ye6_c00298{bottom:95.163105px;}
.ye7_c00298{bottom:95.608605px;}
.ye8_c00298{bottom:96.151365px;}
.ye9_c00298{bottom:96.832035px;}
.yea_c00298{bottom:97.914735px;}
.yeb_c00298{bottom:99.118875px;}
.yec_c00298{bottom:99.672405px;}
.ydd_c00298{bottom:126.899136px;}
.yde_c00298{bottom:128.068722px;}
.ydf_c00298{bottom:128.862504px;}
.ye0_c00298{bottom:130.178196px;}
.ye1_c00298{bottom:130.576608px;}
.ye2_c00298{bottom:130.994658px;}
.ye3_c00298{bottom:131.497128px;}
.yd3_c00298{bottom:156.871500px;}
.yd4_c00298{bottom:158.174394px;}
.yd5_c00298{bottom:160.166886px;}
.yd6_c00298{bottom:160.934820px;}
.yd7_c00298{bottom:161.343078px;}
.yd8_c00298{bottom:161.890836px;}
.yd9_c00298{bottom:162.140190px;}
.yda_c00298{bottom:162.661866px;}
.ydb_c00298{bottom:163.057308px;}
.ydc_c00298{bottom:164.136228px;}
.ycb_c00298{bottom:189.003000px;}
.ycc_c00298{bottom:190.530120px;}
.ycd_c00298{bottom:191.297964px;}
.yce_c00298{bottom:192.529971px;}
.ycf_c00298{bottom:193.290213px;}
.yd0_c00298{bottom:194.201109px;}
.yd1_c00298{bottom:194.851521px;}
.yd2_c00298{bottom:196.393614px;}
.yc0_c00298{bottom:219.783000px;}
.yc1_c00298{bottom:221.336748px;}
.yc2_c00298{bottom:221.631567px;}
.yc3_c00298{bottom:222.232629px;}
.yc4_c00298{bottom:222.694167px;}
.yc5_c00298{bottom:224.065530px;}
.yc6_c00298{bottom:224.384079px;}
.yc7_c00298{bottom:225.620013px;}
.yc8_c00298{bottom:226.833435px;}
.yc9_c00298{bottom:227.294553px;}
.yca_c00298{bottom:228.387393px;}
.ybe_c00298{bottom:260.411040px;}
.ybf_c00298{bottom:260.411124px;}
.yb4_c00298{bottom:282.693000px;}
.yb5_c00298{bottom:284.438736px;}
.yb6_c00298{bottom:285.834264px;}
.yb7_c00298{bottom:287.060976px;}
.yb8_c00298{bottom:287.804064px;}
.yb9_c00298{bottom:288.123984px;}
.yba_c00298{bottom:289.571904px;}
.ybb_c00298{bottom:290.578200px;}
.ybc_c00298{bottom:292.331064px;}
.ybd_c00298{bottom:293.053368px;}
.yab_c00298{bottom:314.821500px;}
.yac_c00298{bottom:316.143564px;}
.yad_c00298{bottom:317.177358px;}
.yae_c00298{bottom:317.582322px;}
.yaf_c00298{bottom:318.492348px;}
.yb0_c00298{bottom:318.758622px;}
.yb1_c00298{bottom:319.691994px;}
.yb2_c00298{bottom:320.615448px;}
.yb3_c00298{bottom:322.067130px;}
.ya2_c00298{bottom:346.413000px;}
.ya3_c00298{bottom:347.834842px;}
.ya4_c00298{bottom:348.972082px;}
.ya5_c00298{bottom:350.246700px;}
.ya6_c00298{bottom:351.548793px;}
.ya7_c00298{bottom:352.812471px;}
.ya8_c00298{bottom:353.240886px;}
.ya9_c00298{bottom:354.524883px;}
.yaa_c00298{bottom:354.824949px;}
.ya1_c00298{bottom:380.307202px;}
.ya0_c00298{bottom:380.307615px;}
.y96_c00298{bottom:410.133000px;}
.y97_c00298{bottom:411.259080px;}
.y98_c00298{bottom:412.418032px;}
.y99_c00298{bottom:415.212532px;}
.y9a_c00298{bottom:416.066925px;}
.y9b_c00298{bottom:416.698770px;}
.y9c_c00298{bottom:417.225337px;}
.y9d_c00298{bottom:418.185570px;}
.y9e_c00298{bottom:419.335590px;}
.y9f_c00298{bottom:419.849872px;}
.y95_c00298{bottom:445.072207px;}
.y93_c00298{bottom:445.072665px;}
.y94_c00298{bottom:445.072702px;}
.y8b_c00298{bottom:474.393000px;}
.y8c_c00298{bottom:476.033543px;}
.y8d_c00298{bottom:477.499710px;}
.y8e_c00298{bottom:478.002517px;}
.y8f_c00298{bottom:480.485302px;}
.y90_c00298{bottom:482.968223px;}
.y91_c00298{bottom:483.433432px;}
.y92_c00298{bottom:483.952013px;}
.y81_c00298{bottom:506.793000px;}
.y82_c00298{bottom:507.434382px;}
.y83_c00298{bottom:508.309179px;}
.y84_c00298{bottom:509.990586px;}
.y85_c00298{bottom:510.305187px;}
.y86_c00298{bottom:511.711368px;}
.y87_c00298{bottom:512.800113px;}
.y88_c00298{bottom:513.068577px;}
.y89_c00298{bottom:514.467198px;}
.y8a_c00298{bottom:516.024831px;}
.y7d_c00298{bottom:538.920552px;}
.y7e_c00298{bottom:540.750591px;}
.y7f_c00298{bottom:541.711350px;}
.y80_c00298{bottom:543.067671px;}
.y75_c00298{bottom:568.893000px;}
.y76_c00298{bottom:570.435681px;}
.y77_c00298{bottom:572.564031px;}
.y78_c00298{bottom:573.788793px;}
.y79_c00298{bottom:574.582404px;}
.y7a_c00298{bottom:575.947215px;}
.y7b_c00298{bottom:576.578727px;}
.y7c_c00298{bottom:577.969578px;}
.y70_c00298{bottom:601.019108px;}
.y71_c00298{bottom:601.937437px;}
.y72_c00298{bottom:602.431987px;}
.y73_c00298{bottom:603.030225px;}
.y74_c00298{bottom:604.436348px;}
.y66_c00298{bottom:631.803000px;}
.y67_c00298{bottom:633.423293px;}
.y68_c00298{bottom:634.917810px;}
.y69_c00298{bottom:637.250723px;}
.y6a_c00298{bottom:637.570583px;}
.y6b_c00298{bottom:638.218628px;}
.y6c_c00298{bottom:638.704988px;}
.y6d_c00298{bottom:640.183980px;}
.y6e_c00298{bottom:641.328915px;}
.y6f_c00298{bottom:641.669813px;}
.y5d_c00298{bottom:663.663000px;}
.y5e_c00298{bottom:665.190456px;}
.y5f_c00298{bottom:666.403710px;}
.y60_c00298{bottom:666.895068px;}
.y61_c00298{bottom:668.415069px;}
.y62_c00298{bottom:669.670113px;}
.y63_c00298{bottom:669.957372px;}
.y64_c00298{bottom:670.880175px;}
.y65_c00298{bottom:672.418803px;}
.y54_c00298{bottom:695.253000px;}
.y55_c00298{bottom:695.981400px;}
.y56_c00298{bottom:697.011504px;}
.y57_c00298{bottom:698.385288px;}
.y58_c00298{bottom:698.912256px;}
.y59_c00298{bottom:699.979992px;}
.y5a_c00298{bottom:701.224416px;}
.y5b_c00298{bottom:702.965568px;}
.y5c_c00298{bottom:704.395296px;}
.y4d_c00298{bottom:727.653000px;}
.y4e_c00298{bottom:728.339970px;}
.y4f_c00298{bottom:729.285510px;}
.y50_c00298{bottom:730.934108px;}
.y51_c00298{bottom:732.902858px;}
.y52_c00298{bottom:734.389410px;}
.y53_c00298{bottom:736.042058px;}
.y49_c00298{bottom:761.128644px;}
.y4a_c00298{bottom:761.777184px;}
.y4b_c00298{bottom:762.778224px;}
.y4c_c00298{bottom:763.751052px;}
.y42_c00298{bottom:791.374500px;}
.y43_c00298{bottom:793.110996px;}
.y44_c00298{bottom:794.515428px;}
.y45_c00298{bottom:796.628124px;}
.y46_c00298{bottom:798.196572px;}
.y47_c00298{bottom:800.300148px;}
.y48_c00298{bottom:801.371844px;}
.y3a_c00298{bottom:823.225980px;}
.y3b_c00298{bottom:824.858198px;}
.y3c_c00298{bottom:825.999870px;}
.y3d_c00298{bottom:826.336538px;}
.y3e_c00298{bottom:827.503590px;}
.y3f_c00298{bottom:828.799208px;}
.y40_c00298{bottom:830.115908px;}
.y41_c00298{bottom:830.614305px;}
.y31_c00298{bottom:854.549805px;}
.y32_c00298{bottom:856.285770px;}
.y33_c00298{bottom:857.694975px;}
.y34_c00298{bottom:858.404085px;}
.y35_c00298{bottom:859.488450px;}
.y36_c00298{bottom:859.829287px;}
.y37_c00298{bottom:861.075960px;}
.y38_c00298{bottom:861.769440px;}
.y39_c00298{bottom:862.257675px;}
.y27_c00298{bottom:885.873000px;}
.y28_c00298{bottom:887.513610px;}
.y29_c00298{bottom:888.817687px;}
.y2a_c00298{bottom:889.486297px;}
.y2b_c00298{bottom:890.632673px;}
.y2c_c00298{bottom:891.612660px;}
.y2d_c00298{bottom:892.094002px;}
.y2e_c00298{bottom:892.762837px;}
.y2f_c00298{bottom:893.762647px;}
.y30_c00298{bottom:894.424057px;}
.y25_c00298{bottom:920.794035px;}
.y26_c00298{bottom:920.794140px;}
.y23_c00298{bottom:920.794170px;}
.y24_c00298{bottom:920.794702px;}
.y1a_c00298{bottom:949.593000px;}
.y1b_c00298{bottom:951.241530px;}
.y1c_c00298{bottom:952.043587px;}
.y1d_c00298{bottom:953.027377px;}
.y1e_c00298{bottom:953.675917px;}
.y1f_c00298{bottom:954.846480px;}
.y20_c00298{bottom:955.507170px;}
.y21_c00298{bottom:956.973405px;}
.y22_c00298{bottom:959.119545px;}
.y11_c00298{bottom:980.906349px;}
.y12_c00298{bottom:982.651305px;}
.y13_c00298{bottom:983.709279px;}
.y14_c00298{bottom:984.569646px;}
.y15_c00298{bottom:985.313016px;}
.y16_c00298{bottom:985.628229px;}
.y17_c00298{bottom:987.023001px;}
.y18_c00298{bottom:987.575778px;}
.y19_c00298{bottom:988.646949px;}
.yc_c00298{bottom:1015.468587px;}
.yd_c00298{bottom:1015.944387px;}
.ye_c00298{bottom:1016.778462px;}
.yf_c00298{bottom:1017.270942px;}
.y10_c00298{bottom:1017.749778px;}
.y2_c00298{bottom:1044.903000px;}
.y3_c00298{bottom:1046.581740px;}
.y4_c00298{bottom:1047.957996px;}
.y5_c00298{bottom:1049.481189px;}
.y6_c00298{bottom:1050.139119px;}
.y7_c00298{bottom:1050.426525px;}
.y8_c00298{bottom:1051.813113px;}
.y9_c00298{bottom:1052.266776px;}
.ya_c00298{bottom:1052.894256px;}
.yb_c00298{bottom:1053.333324px;}
.y1_c00298{bottom:1116.039000px;}
.h5_c00298{height:66.008447px;}
.hd_c00298{height:72.003600px;}
.hc_c00298{height:72.005184px;}
.h9_c00298{height:72.006084px;}
.h3_c00298{height:72.007056px;}
.h4_c00298{height:72.008100px;}
.h6_c00298{height:72.009215px;}
.ha_c00298{height:78.005616px;}
.h7_c00298{height:78.007644px;}
.h8_c00298{height:78.008775px;}
.hb_c00298{height:78.009983px;}
.h2_c00298{height:84.000000px;}
.h1_c00298{height:1165.500000px;}
.h0_c00298{height:1165.800000px;}
.w0_c00298{width:915.000000px;}
.x0_c00298{left:0.000000px;}
.x4_c00298{left:143.824500px;}
.x1a_c00298{left:145.458000px;}
.x2a_c00298{left:146.833868px;}
.x35_c00298{left:148.215000px;}
.x40_c00298{left:150.070500px;}
.x59_c00298{left:151.654500px;}
.x62_c00298{left:153.009000px;}
.x6c_c00298{left:154.110000px;}
.x76_c00298{left:155.433000px;}
.x88_c00298{left:157.611000px;}
.x94_c00298{left:158.661000px;}
.x9d_c00298{left:160.248000px;}
.x3c_c00298{left:194.775000px;}
.x63_c00298{left:198.822000px;}
.x6d_c00298{left:229.182000px;}
.x12_c00298{left:253.774899px;}
.x1b_c00298{left:255.360000px;}
.x36_c00298{left:256.746000px;}
.x3d_c00298{left:257.811000px;}
.x4e_c00298{left:258.886500px;}
.x41_c00298{left:259.977000px;}
.x5a_c00298{left:261.846000px;}
.x5_c00298{left:263.734500px;}
.x77_c00298{left:264.805500px;}
.x7d_c00298{left:265.854000px;}
.x8f_c00298{left:267.226500px;}
.x89_c00298{left:268.593000px;}
.x8a_c00298{left:289.651500px;}
.x21_c00298{left:301.338443px;}
.x6e_c00298{left:306.445500px;}
.xe_c00298{left:307.682451px;}
.x1c_c00298{left:308.830500px;}
.x87_c00298{left:311.599668px;}
.x13_c00298{left:319.914051px;}
.x90_c00298{left:322.072500px;}
.x56_c00298{left:325.016558px;}
.x6b_c00298{left:327.526958px;}
.x2f_c00298{left:332.274735px;}
.x9e_c00298{left:334.408500px;}
.xa1_c00298{left:336.971130px;}
.x1_c00298{left:339.390000px;}
.x22_c00298{left:341.302943px;}
.x23_c00298{left:342.589500px;}
.x37_c00298{left:344.523000px;}
.x42_c00298{left:345.838500px;}
.x78_c00298{left:352.285500px;}
.x30_c00298{left:354.719235px;}
.x4f_c00298{left:358.521000px;}
.x2_c00298{left:360.990000px;}
.x6_c00298{left:362.038500px;}
.x8b_c00298{left:365.551500px;}
.x3b_c00298{left:367.430028px;}
.x14_c00298{left:373.653039px;}
.x43_c00298{left:378.774000px;}
.x48_c00298{left:381.171000px;}
.xf_c00298{left:383.548143px;}
.x7e_c00298{left:385.750500px;}
.x24_c00298{left:387.163500px;}
.x3_c00298{left:394.200000px;}
.x57_c00298{left:403.070228px;}
.x91_c00298{left:410.073000px;}
.x5b_c00298{left:413.871000px;}
.x1d_c00298{left:417.652500px;}
.x15_c00298{left:420.106737px;}
.x10_c00298{left:428.370033px;}
.x31_c00298{left:432.522735px;}
.x16_c00298{left:439.835691px;}
.x44_c00298{left:445.507500px;}
.x61_c00298{left:447.367917px;}
.x79_c00298{left:450.333000px;}
.x2b_c00298{left:455.472233px;}
.x7f_c00298{left:461.586000px;}
.x25_c00298{left:463.588500px;}
.x7_c00298{left:470.838000px;}
.x11_c00298{left:471.895860px;}
.x83_c00298{left:475.731000px;}
.x2c_c00298{left:476.794418px;}
.x80_c00298{left:483.775500px;}
.x8c_c00298{left:486.259500px;}
.x49_c00298{left:489.742500px;}
.x6f_c00298{left:492.745500px;}
.x1e_c00298{left:495.690000px;}
.x95_c00298{left:497.271000px;}
.x3e_c00298{left:498.967500px;}
.x5c_c00298{left:501.354000px;}
.x58_c00298{left:503.513235px;}
.x50_c00298{left:514.048500px;}
.x8_c00298{left:517.833000px;}
.x32_c00298{left:518.897235px;}
.x45_c00298{left:523.284000px;}
.x17_c00298{left:527.031255px;}
.x26_c00298{left:528.921000px;}
.x96_c00298{left:531.292500px;}
.x51_c00298{left:535.372500px;}
.x9_c00298{left:538.362000px;}
.x1f_c00298{left:539.736000px;}
.x9b_c00298{left:542.094480px;}
.x70_c00298{left:549.705000px;}
.x2d_c00298{left:554.704748px;}
.x5d_c00298{left:558.040500px;}
.x67_c00298{left:559.188000px;}
.x18_c00298{left:561.585789px;}
.x38_c00298{left:574.594500px;}
.x92_c00298{left:575.898000px;}
.x97_c00298{left:576.939000px;}
.x4a_c00298{left:579.388500px;}
.x64_c00298{left:582.088500px;}
.x84_c00298{left:586.221000px;}
.x71_c00298{left:591.828000px;}
.x2e_c00298{left:598.036095px;}
.x4b_c00298{left:599.907000px;}
.x65_c00298{left:601.264500px;}
.x27_c00298{left:605.599500px;}
.x33_c00298{left:606.677235px;}
.x9f_c00298{left:609.571500px;}
.x52_c00298{left:610.999500px;}
.x72_c00298{left:626.932500px;}
.x19_c00298{left:628.560420px;}
.x46_c00298{left:632.106000px;}
.xa_c00298{left:637.404000px;}
.x81_c00298{left:638.511000px;}
.x34_c00298{left:639.903735px;}
.x98_c00298{left:641.191500px;}
.x7a_c00298{left:647.700000px;}
.x85_c00298{left:649.114500px;}
.x9c_c00298{left:652.005480px;}
.x5e_c00298{left:655.527000px;}
.x8d_c00298{left:661.213500px;}
.x4c_c00298{left:665.821500px;}
.xb_c00298{left:669.808500px;}
.x28_c00298{left:672.253500px;}
.x99_c00298{left:674.145000px;}
.x7b_c00298{left:680.655000px;}
.x93_c00298{left:686.047500px;}
.x73_c00298{left:690.948000px;}
.x8e_c00298{left:694.150500px;}
.x5f_c00298{left:700.635000px;}
.x39_c00298{left:706.068000px;}
.x3f_c00298{left:708.247500px;}
.x53_c00298{left:709.599000px;}
.xc_c00298{left:714.628500px;}
.x29_c00298{left:716.347500px;}
.x47_c00298{left:721.464000px;}
.x68_c00298{left:724.716000px;}
.xa0_c00298{left:729.985500px;}
.xd_c00298{left:745.990500px;}
.x69_c00298{left:755.730000px;}
.x82_c00298{left:759.484500px;}
.x9a_c00298{left:764.055000px;}
.x74_c00298{left:767.616000px;}
.x3a_c00298{left:773.049000px;}
.x4d_c00298{left:775.723500px;}
.x7c_c00298{left:779.424000px;}
.x20_c00298{left:780.561000px;}
.x54_c00298{left:785.928000px;}
.x6a_c00298{left:790.302000px;}
.x60_c00298{left:799.981500px;}
.x75_c00298{left:801.901500px;}
.x86_c00298{left:803.812500px;}
.x55_c00298{left:808.654500px;}
.x66_c00298{left:812.425500px;}
@media print{
.v0_c00298{vertical-align:0.000000pt;}
.ls0_c00298{letter-spacing:0.000000pt;}
.ws0_c00298{word-spacing:0.000000pt;}
.fs3_c00298{font-size:58.674176pt;}
.fsb_c00298{font-size:64.003200pt;}
.fsa_c00298{font-size:64.004608pt;}
.fs7_c00298{font-size:64.005408pt;}
.fs1_c00298{font-size:64.006272pt;}
.fs2_c00298{font-size:64.007200pt;}
.fs4_c00298{font-size:64.008191pt;}
.fs8_c00298{font-size:69.338325pt;}
.fs5_c00298{font-size:69.340128pt;}
.fs6_c00298{font-size:69.341133pt;}
.fs9_c00298{font-size:69.342207pt;}
.fs0_c00298{font-size:74.666667pt;}
.y0_c00298{bottom:0.000000pt;}
.yee_c00298{bottom:56.286707pt;}
.yed_c00298{bottom:56.287267pt;}
.ye4_c00298{bottom:83.041333pt;}
.ye5_c00298{bottom:84.008533pt;}
.ye6_c00298{bottom:84.589427pt;}
.ye7_c00298{bottom:84.985427pt;}
.ye8_c00298{bottom:85.467880pt;}
.ye9_c00298{bottom:86.072920pt;}
.yea_c00298{bottom:87.035320pt;}
.yeb_c00298{bottom:88.105667pt;}
.yec_c00298{bottom:88.597693pt;}
.ydd_c00298{bottom:112.799232pt;}
.yde_c00298{bottom:113.838864pt;}
.ydf_c00298{bottom:114.544448pt;}
.ye0_c00298{bottom:115.713952pt;}
.ye1_c00298{bottom:116.068096pt;}
.ye2_c00298{bottom:116.439696pt;}
.ye3_c00298{bottom:116.886336pt;}
.yd3_c00298{bottom:139.441333pt;}
.yd4_c00298{bottom:140.599461pt;}
.yd5_c00298{bottom:142.370565pt;}
.yd6_c00298{bottom:143.053173pt;}
.yd7_c00298{bottom:143.416069pt;}
.yd8_c00298{bottom:143.902965pt;}
.yd9_c00298{bottom:144.124613pt;}
.yda_c00298{bottom:144.588325pt;}
.ydb_c00298{bottom:144.939829pt;}
.ydc_c00298{bottom:145.898869pt;}
.ycb_c00298{bottom:168.002667pt;}
.ycc_c00298{bottom:169.360107pt;}
.ycd_c00298{bottom:170.042635pt;}
.yce_c00298{bottom:171.137752pt;}
.ycf_c00298{bottom:171.813523pt;}
.yd0_c00298{bottom:172.623208pt;}
.yd1_c00298{bottom:173.201352pt;}
.yd2_c00298{bottom:174.572101pt;}
.yc0_c00298{bottom:195.362667pt;}
.yc1_c00298{bottom:196.743776pt;}
.yc2_c00298{bottom:197.005837pt;}
.yc3_c00298{bottom:197.540115pt;}
.yc4_c00298{bottom:197.950371pt;}
.yc5_c00298{bottom:199.169360pt;}
.yc6_c00298{bottom:199.452515pt;}
.yc7_c00298{bottom:200.551123pt;}
.yc8_c00298{bottom:201.629720pt;}
.yc9_c00298{bottom:202.039603pt;}
.yca_c00298{bottom:203.011016pt;}
.ybe_c00298{bottom:231.476480pt;}
.ybf_c00298{bottom:231.476555pt;}
.yb4_c00298{bottom:251.282667pt;}
.yb5_c00298{bottom:252.834432pt;}
.yb6_c00298{bottom:254.074901pt;}
.yb7_c00298{bottom:255.165312pt;}
.yb8_c00298{bottom:255.825835pt;}
.yb9_c00298{bottom:256.110208pt;}
.yba_c00298{bottom:257.397248pt;}
.ybb_c00298{bottom:258.291733pt;}
.ybc_c00298{bottom:259.849835pt;}
.ybd_c00298{bottom:260.491883pt;}
.yab_c00298{bottom:279.841333pt;}
.yac_c00298{bottom:281.016501pt;}
.yad_c00298{bottom:281.935429pt;}
.yae_c00298{bottom:282.295397pt;}
.yaf_c00298{bottom:283.104309pt;}
.yb0_c00298{bottom:283.340997pt;}
.yb1_c00298{bottom:284.170661pt;}
.yb2_c00298{bottom:284.991509pt;}
.yb3_c00298{bottom:286.281893pt;}
.ya2_c00298{bottom:307.922667pt;}
.ya3_c00298{bottom:309.186527pt;}
.ya4_c00298{bottom:310.197407pt;}
.ya5_c00298{bottom:311.330400pt;}
.ya6_c00298{bottom:312.487816pt;}
.ya7_c00298{bottom:313.611085pt;}
.ya8_c00298{bottom:313.991899pt;}
.ya9_c00298{bottom:315.133229pt;}
.yaa_c00298{bottom:315.399955pt;}
.ya1_c00298{bottom:338.050847pt;}
.ya0_c00298{bottom:338.051213pt;}
.y96_c00298{bottom:364.562667pt;}
.y97_c00298{bottom:365.563627pt;}
.y98_c00298{bottom:366.593807pt;}
.y99_c00298{bottom:369.077807pt;}
.y9a_c00298{bottom:369.837267pt;}
.y9b_c00298{bottom:370.398907pt;}
.y9c_c00298{bottom:370.866967pt;}
.y9d_c00298{bottom:371.720507pt;}
.y9e_c00298{bottom:372.742747pt;}
.y9f_c00298{bottom:373.199887pt;}
.y95_c00298{bottom:395.619740pt;}
.y93_c00298{bottom:395.620147pt;}
.y94_c00298{bottom:395.620180pt;}
.y8b_c00298{bottom:421.682667pt;}
.y8c_c00298{bottom:423.140927pt;}
.y8d_c00298{bottom:424.444187pt;}
.y8e_c00298{bottom:424.891127pt;}
.y8f_c00298{bottom:427.098047pt;}
.y90_c00298{bottom:429.305087pt;}
.y91_c00298{bottom:429.718607pt;}
.y92_c00298{bottom:430.179567pt;}
.y81_c00298{bottom:450.482667pt;}
.y82_c00298{bottom:451.052784pt;}
.y83_c00298{bottom:451.830381pt;}
.y84_c00298{bottom:453.324965pt;}
.y85_c00298{bottom:453.604611pt;}
.y86_c00298{bottom:454.854549pt;}
.y87_c00298{bottom:455.822323pt;}
.y88_c00298{bottom:456.060957pt;}
.y89_c00298{bottom:457.304176pt;}
.y8a_c00298{bottom:458.688739pt;}
.y7d_c00298{bottom:479.040491pt;}
.y7e_c00298{bottom:480.667192pt;}
.y7f_c00298{bottom:481.521200pt;}
.y80_c00298{bottom:482.726819pt;}
.y75_c00298{bottom:505.682667pt;}
.y76_c00298{bottom:507.053939pt;}
.y77_c00298{bottom:508.945805pt;}
.y78_c00298{bottom:510.034483pt;}
.y79_c00298{bottom:510.739915pt;}
.y7a_c00298{bottom:511.953080pt;}
.y7b_c00298{bottom:512.514424pt;}
.y7c_c00298{bottom:513.750736pt;}
.y70_c00298{bottom:534.239207pt;}
.y71_c00298{bottom:535.055500pt;}
.y72_c00298{bottom:535.495100pt;}
.y73_c00298{bottom:536.026867pt;}
.y74_c00298{bottom:537.276753pt;}
.y66_c00298{bottom:561.602667pt;}
.y67_c00298{bottom:563.042927pt;}
.y68_c00298{bottom:564.371387pt;}
.y69_c00298{bottom:566.445087pt;}
.y6a_c00298{bottom:566.729407pt;}
.y6b_c00298{bottom:567.305447pt;}
.y6c_c00298{bottom:567.737767pt;}
.y6d_c00298{bottom:569.052427pt;}
.y6e_c00298{bottom:570.070147pt;}
.y6f_c00298{bottom:570.373167pt;}
.y5d_c00298{bottom:589.922667pt;}
.y5e_c00298{bottom:591.280405pt;}
.y5f_c00298{bottom:592.358853pt;}
.y60_c00298{bottom:592.795616pt;}
.y61_c00298{bottom:594.146728pt;}
.y62_c00298{bottom:595.262323pt;}
.y63_c00298{bottom:595.517664pt;}
.y64_c00298{bottom:596.337933pt;}
.y65_c00298{bottom:597.705603pt;}
.y54_c00298{bottom:618.002667pt;}
.y55_c00298{bottom:618.650133pt;}
.y56_c00298{bottom:619.565781pt;}
.y57_c00298{bottom:620.786923pt;}
.y58_c00298{bottom:621.255339pt;}
.y59_c00298{bottom:622.204437pt;}
.y5a_c00298{bottom:623.310592pt;}
.y5b_c00298{bottom:624.858283pt;}
.y5c_c00298{bottom:626.129152pt;}
.y4d_c00298{bottom:646.802667pt;}
.y4e_c00298{bottom:647.413307pt;}
.y4f_c00298{bottom:648.253787pt;}
.y50_c00298{bottom:649.719207pt;}
.y51_c00298{bottom:651.469207pt;}
.y52_c00298{bottom:652.790587pt;}
.y53_c00298{bottom:654.259607pt;}
.y49_c00298{bottom:676.558795pt;}
.y4a_c00298{bottom:677.135275pt;}
.y4b_c00298{bottom:678.025088pt;}
.y4c_c00298{bottom:678.889824pt;}
.y42_c00298{bottom:703.444000pt;}
.y43_c00298{bottom:704.987552pt;}
.y44_c00298{bottom:706.235936pt;}
.y45_c00298{bottom:708.113888pt;}
.y46_c00298{bottom:709.508064pt;}
.y47_c00298{bottom:711.377909pt;}
.y48_c00298{bottom:712.330528pt;}
.y3a_c00298{bottom:731.756427pt;}
.y3b_c00298{bottom:733.207287pt;}
.y3c_c00298{bottom:734.222107pt;}
.y3d_c00298{bottom:734.521367pt;}
.y3e_c00298{bottom:735.558747pt;}
.y3f_c00298{bottom:736.710407pt;}
.y40_c00298{bottom:737.880807pt;}
.y41_c00298{bottom:738.323827pt;}
.y31_c00298{bottom:759.599827pt;}
.y32_c00298{bottom:761.142907pt;}
.y33_c00298{bottom:762.395533pt;}
.y34_c00298{bottom:763.025853pt;}
.y35_c00298{bottom:763.989733pt;}
.y36_c00298{bottom:764.292700pt;}
.y37_c00298{bottom:765.400853pt;}
.y38_c00298{bottom:766.017280pt;}
.y39_c00298{bottom:766.451267pt;}
.y27_c00298{bottom:787.442667pt;}
.y28_c00298{bottom:788.900987pt;}
.y29_c00298{bottom:790.060167pt;}
.y2a_c00298{bottom:790.654487pt;}
.y2b_c00298{bottom:791.673487pt;}
.y2c_c00298{bottom:792.544587pt;}
.y2d_c00298{bottom:792.972447pt;}
.y2e_c00298{bottom:793.566967pt;}
.y2f_c00298{bottom:794.455687pt;}
.y30_c00298{bottom:795.043607pt;}
.y25_c00298{bottom:818.483587pt;}
.y26_c00298{bottom:818.483680pt;}
.y23_c00298{bottom:818.483707pt;}
.y24_c00298{bottom:818.484180pt;}
.y1a_c00298{bottom:844.082667pt;}
.y1b_c00298{bottom:845.548027pt;}
.y1c_c00298{bottom:846.260967pt;}
.y1d_c00298{bottom:847.135447pt;}
.y1e_c00298{bottom:847.711927pt;}
.y1f_c00298{bottom:848.752427pt;}
.y20_c00298{bottom:849.339707pt;}
.y21_c00298{bottom:850.643027pt;}
.y22_c00298{bottom:852.550707pt;}
.y11_c00298{bottom:871.916755pt;}
.y12_c00298{bottom:873.467827pt;}
.y13_c00298{bottom:874.408248pt;}
.y14_c00298{bottom:875.173019pt;}
.y15_c00298{bottom:875.833792pt;}
.y16_c00298{bottom:876.113981pt;}
.y17_c00298{bottom:877.353779pt;}
.y18_c00298{bottom:877.845136pt;}
.y19_c00298{bottom:878.797288pt;}
.yc_c00298{bottom:902.638744pt;}
.yd_c00298{bottom:903.061677pt;}
.ye_c00298{bottom:903.803077pt;}
.yf_c00298{bottom:904.240837pt;}
.y10_c00298{bottom:904.666469pt;}
.y2_c00298{bottom:928.802667pt;}
.y3_c00298{bottom:930.294880pt;}
.y4_c00298{bottom:931.518219pt;}
.y5_c00298{bottom:932.872168pt;}
.y6_c00298{bottom:933.456995pt;}
.y7_c00298{bottom:933.712467pt;}
.y8_c00298{bottom:934.944989pt;}
.y9_c00298{bottom:935.348245pt;}
.ya_c00298{bottom:935.906005pt;}
.yb_c00298{bottom:936.296288pt;}
.y1_c00298{bottom:992.034667pt;}
.h5_c00298{height:58.674176pt;}
.hd_c00298{height:64.003200pt;}
.hc_c00298{height:64.004608pt;}
.h9_c00298{height:64.005408pt;}
.h3_c00298{height:64.006272pt;}
.h4_c00298{height:64.007200pt;}
.h6_c00298{height:64.008191pt;}
.ha_c00298{height:69.338325pt;}
.h7_c00298{height:69.340128pt;}
.h8_c00298{height:69.341133pt;}
.hb_c00298{height:69.342207pt;}
.h2_c00298{height:74.666667pt;}
.h1_c00298{height:1036.000000pt;}
.h0_c00298{height:1036.266667pt;}
.w0_c00298{width:813.333333pt;}
.x0_c00298{left:0.000000pt;}
.x4_c00298{left:127.844000pt;}
.x1a_c00298{left:129.296000pt;}
.x2a_c00298{left:130.518993pt;}
.x35_c00298{left:131.746667pt;}
.x40_c00298{left:133.396000pt;}
.x59_c00298{left:134.804000pt;}
.x62_c00298{left:136.008000pt;}
.x6c_c00298{left:136.986667pt;}
.x76_c00298{left:138.162667pt;}
.x88_c00298{left:140.098667pt;}
.x94_c00298{left:141.032000pt;}
.x9d_c00298{left:142.442667pt;}
.x3c_c00298{left:173.133333pt;}
.x63_c00298{left:176.730667pt;}
.x6d_c00298{left:203.717333pt;}
.x12_c00298{left:225.577688pt;}
.x1b_c00298{left:226.986667pt;}
.x36_c00298{left:228.218667pt;}
.x3d_c00298{left:229.165333pt;}
.x4e_c00298{left:230.121333pt;}
.x41_c00298{left:231.090667pt;}
.x5a_c00298{left:232.752000pt;}
.x5_c00298{left:234.430667pt;}
.x77_c00298{left:235.382667pt;}
.x7d_c00298{left:236.314667pt;}
.x8f_c00298{left:237.534667pt;}
.x89_c00298{left:238.749333pt;}
.x8a_c00298{left:257.468000pt;}
.x21_c00298{left:267.856393pt;}
.x6e_c00298{left:272.396000pt;}
.xe_c00298{left:273.495512pt;}
.x1c_c00298{left:274.516000pt;}
.x87_c00298{left:276.977483pt;}
.x13_c00298{left:284.368045pt;}
.x90_c00298{left:286.286667pt;}
.x56_c00298{left:288.903607pt;}
.x6b_c00298{left:291.135073pt;}
.x2f_c00298{left:295.355320pt;}
.x9e_c00298{left:297.252000pt;}
.xa1_c00298{left:299.529893pt;}
.x1_c00298{left:301.680000pt;}
.x22_c00298{left:303.380393pt;}
.x23_c00298{left:304.524000pt;}
.x37_c00298{left:306.242667pt;}
.x42_c00298{left:307.412000pt;}
.x78_c00298{left:313.142667pt;}
.x30_c00298{left:315.305987pt;}
.x4f_c00298{left:318.685333pt;}
.x2_c00298{left:320.880000pt;}
.x6_c00298{left:321.812000pt;}
.x8b_c00298{left:324.934667pt;}
.x3b_c00298{left:326.604469pt;}
.x14_c00298{left:332.136035pt;}
.x43_c00298{left:336.688000pt;}
.x48_c00298{left:338.818667pt;}
.xf_c00298{left:340.931683pt;}
.x7e_c00298{left:342.889333pt;}
.x24_c00298{left:344.145333pt;}
.x3_c00298{left:350.400000pt;}
.x57_c00298{left:358.284647pt;}
.x91_c00298{left:364.509333pt;}
.x5b_c00298{left:367.885333pt;}
.x1d_c00298{left:371.246667pt;}
.x15_c00298{left:373.428211pt;}
.x10_c00298{left:380.773363pt;}
.x31_c00298{left:384.464653pt;}
.x16_c00298{left:390.965059pt;}
.x44_c00298{left:396.006667pt;}
.x61_c00298{left:397.660371pt;}
.x79_c00298{left:400.296000pt;}
.x2b_c00298{left:404.864207pt;}
.x7f_c00298{left:410.298667pt;}
.x25_c00298{left:412.078667pt;}
.x7_c00298{left:418.522667pt;}
.x11_c00298{left:419.462987pt;}
.x83_c00298{left:422.872000pt;}
.x2c_c00298{left:423.817260pt;}
.x80_c00298{left:430.022667pt;}
.x8c_c00298{left:432.230667pt;}
.x49_c00298{left:435.326667pt;}
.x6f_c00298{left:437.996000pt;}
.x1e_c00298{left:440.613333pt;}
.x95_c00298{left:442.018667pt;}
.x3e_c00298{left:443.526667pt;}
.x5c_c00298{left:445.648000pt;}
.x58_c00298{left:447.567320pt;}
.x50_c00298{left:456.932000pt;}
.x8_c00298{left:460.296000pt;}
.x32_c00298{left:461.241987pt;}
.x45_c00298{left:465.141333pt;}
.x17_c00298{left:468.472227pt;}
.x26_c00298{left:470.152000pt;}
.x96_c00298{left:472.260000pt;}
.x51_c00298{left:475.886667pt;}
.x9_c00298{left:478.544000pt;}
.x1f_c00298{left:479.765333pt;}
.x9b_c00298{left:481.861760pt;}
.x70_c00298{left:488.626667pt;}
.x2d_c00298{left:493.070887pt;}
.x5d_c00298{left:496.036000pt;}
.x67_c00298{left:497.056000pt;}
.x18_c00298{left:499.187368pt;}
.x38_c00298{left:510.750667pt;}
.x92_c00298{left:511.909333pt;}
.x97_c00298{left:512.834667pt;}
.x4a_c00298{left:515.012000pt;}
.x64_c00298{left:517.412000pt;}
.x84_c00298{left:521.085333pt;}
.x71_c00298{left:526.069333pt;}
.x2e_c00298{left:531.587640pt;}
.x4b_c00298{left:533.250667pt;}
.x65_c00298{left:534.457333pt;}
.x27_c00298{left:538.310667pt;}
.x33_c00298{left:539.268653pt;}
.x9f_c00298{left:541.841333pt;}
.x52_c00298{left:543.110667pt;}
.x72_c00298{left:557.273333pt;}
.x19_c00298{left:558.720373pt;}
.x46_c00298{left:561.872000pt;}
.xa_c00298{left:566.581333pt;}
.x81_c00298{left:567.565333pt;}
.x34_c00298{left:568.803320pt;}
.x98_c00298{left:569.948000pt;}
.x7a_c00298{left:575.733333pt;}
.x85_c00298{left:576.990667pt;}
.x9c_c00298{left:579.560427pt;}
.x5e_c00298{left:582.690667pt;}
.x8d_c00298{left:587.745333pt;}
.x4c_c00298{left:591.841333pt;}
.xb_c00298{left:595.385333pt;}
.x28_c00298{left:597.558667pt;}
.x99_c00298{left:599.240000pt;}
.x7b_c00298{left:605.026667pt;}
.x93_c00298{left:609.820000pt;}
.x73_c00298{left:614.176000pt;}
.x8e_c00298{left:617.022667pt;}
.x5f_c00298{left:622.786667pt;}
.x39_c00298{left:627.616000pt;}
.x3f_c00298{left:629.553333pt;}
.x53_c00298{left:630.754667pt;}
.xc_c00298{left:635.225333pt;}
.x29_c00298{left:636.753333pt;}
.x47_c00298{left:641.301333pt;}
.x68_c00298{left:644.192000pt;}
.xa0_c00298{left:648.876000pt;}
.xd_c00298{left:663.102667pt;}
.x69_c00298{left:671.760000pt;}
.x82_c00298{left:675.097333pt;}
.x9a_c00298{left:679.160000pt;}
.x74_c00298{left:682.325333pt;}
.x3a_c00298{left:687.154667pt;}
.x4d_c00298{left:689.532000pt;}
.x7c_c00298{left:692.821333pt;}
.x20_c00298{left:693.832000pt;}
.x54_c00298{left:698.602667pt;}
.x6a_c00298{left:702.490667pt;}
.x60_c00298{left:711.094667pt;}
.x75_c00298{left:712.801333pt;}
.x86_c00298{left:714.500000pt;}
.x55_c00298{left:718.804000pt;}
.x66_c00298{left:722.156000pt;}
}





/* 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_c00299 {
    display:none;
  }
  .loading-indicator_c00299.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00299 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_c00299 { 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_c00299" -> "#page-container .classname_c00299")
 */
.pf_c00299 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00299 { /* 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_c00299.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00299 { /* 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_c00299 { /* 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_c00299 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00299 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00299 {overflow:visible;}
  }
}
.c_c00299 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00299 { /* 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_c00299:after { /* webkit #35443 */
  content: '';
}
.t_c00299:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00299 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 */
}
.__c00299 { /* 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_c00299 { /* info for Javascript */
  display:none;
}
.l_c00299 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00299 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00299 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00299: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_c00299 {
    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_c00299.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00299.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_c00299 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00299{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00299;src:url('chunks/assets/font_97998a297af8da24a717a89b.woff2')format("woff");}.ff1_c00299{font-family:ff1_c00299;line-height:1.000000;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;}
.m6_c00299{transform:matrix(0.025455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.025455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.025455,0.000000,0.000000,0.250000,0,0);}
.mf_c00299{transform:matrix(0.032450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032450,0.000000,0.000000,0.250000,0,0);}
.m11_c00299{transform:matrix(0.037110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.037110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.037110,0.000000,0.000000,0.250000,0,0);}
.m28_c00299{transform:matrix(0.040560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.040560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.040560,0.000000,0.000000,0.250000,0,0);}
.m22_c00299{transform:matrix(0.081125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.081125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.081125,0.000000,0.000000,0.250000,0,0);}
.m7_c00299{transform:matrix(0.089095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.089095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.089095,0.000000,0.000000,0.250000,0,0);}
.m21_c00299{transform:matrix(0.097790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.097790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.097790,0.000000,0.000000,0.250000,0,0);}
.m1b_c00299{transform:matrix(0.162250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162250,0.000000,0.000000,0.250000,0,0);}
.mc_c00299{transform:matrix(0.174640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174640,0.000000,0.000000,0.250000,0,0);}
.m1c_c00299{transform:matrix(0.175730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175730,0.000000,0.000000,0.250000,0,0);}
.m29_c00299{transform:matrix(0.209260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209260,0.000000,0.000000,0.250000,0,0);}
.m1d_c00299{transform:matrix(0.212265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212265,0.000000,0.000000,0.250000,0,0);}
.m10_c00299{transform:matrix(0.223420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223420,0.000000,0.000000,0.250000,0,0);}
.m2a_c00299{transform:matrix(0.245675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245675,0.000000,0.000000,0.250000,0,0);}
.m20_c00299{transform:matrix(0.246980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246980,0.000000,0.000000,0.250000,0,0);}
.mb_c00299{transform:matrix(0.272855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272855,0.000000,0.000000,0.250000,0,0);}
.m16_c00299{transform:matrix(0.292220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292220,0.000000,0.000000,0.250000,0,0);}
.m1_c00299{transform:matrix(0.313390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313390,0.000000,0.000000,0.250000,0,0);}
.m9_c00299{transform:matrix(0.344185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344185,0.000000,0.000000,0.250000,0,0);}
.md_c00299{transform:matrix(0.348210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348210,0.000000,0.000000,0.250000,0,0);}
.m18_c00299{transform:matrix(0.352955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352955,0.000000,0.000000,0.250000,0,0);}
.m8_c00299{transform:matrix(0.363810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363810,0.000000,0.000000,0.250000,0,0);}
.m0_c00299{transform:matrix(0.371420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371420,0.000000,0.000000,0.250000,0,0);}
.m19_c00299{transform:matrix(0.375900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375900,0.000000,0.000000,0.250000,0,0);}
.m14_c00299{transform:matrix(0.413020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413020,0.000000,0.000000,0.250000,0,0);}
.m25_c00299{transform:matrix(0.422670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422670,0.000000,0.000000,0.250000,0,0);}
.m1f_c00299{transform:matrix(0.429600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429600,0.000000,0.000000,0.250000,0,0);}
.m3_c00299{transform:matrix(0.437070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437070,0.000000,0.000000,0.250000,0,0);}
.m13_c00299{transform:matrix(0.448375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448375,0.000000,0.000000,0.250000,0,0);}
.m15_c00299{transform:matrix(0.497855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497855,0.000000,0.000000,0.250000,0,0);}
.m1e_c00299{transform:matrix(0.602435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602435,0.000000,0.000000,0.250000,0,0);}
.m17_c00299{transform:matrix(0.658635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.658635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.658635,0.000000,0.000000,0.250000,0,0);}
.m12_c00299{transform:matrix(0.678830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.678830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.678830,0.000000,0.000000,0.250000,0,0);}
.m1a_c00299{transform:matrix(0.684145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.684145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.684145,0.000000,0.000000,0.250000,0,0);}
.m2_c00299{transform:matrix(0.702480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.702480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.702480,0.000000,0.000000,0.250000,0,0);}
.m27_c00299{transform:matrix(0.711910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.711910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.711910,0.000000,0.000000,0.250000,0,0);}
.ma_c00299{transform:matrix(0.921195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.921195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.921195,0.000000,0.000000,0.250000,0,0);}
.me_c00299{transform:matrix(0.943285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.943285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.943285,0.000000,0.000000,0.250000,0,0);}
.m24_c00299{transform:matrix(1.099740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.099740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.099740,0.000000,0.000000,0.250000,0,0);}
.m26_c00299{transform:matrix(1.107360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.107360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.107360,0.000000,0.000000,0.250000,0,0);}
.m5_c00299{transform:matrix(1.195890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.195890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.195890,0.000000,0.000000,0.250000,0,0);}
.m4_c00299{transform:matrix(1.694910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.694910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.694910,0.000000,0.000000,0.250000,0,0);}
.m23_c00299{transform:matrix(2.110505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.110505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.110505,0.000000,0.000000,0.250000,0,0);}
.m2b_c00299{transform:matrix(2.700085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.700085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.700085,0.000000,0.000000,0.250000,0,0);}
.v0_c00299{vertical-align:0.000000px;}
.ls0_c00299{letter-spacing:0.000000px;}
.sc__c00299{text-shadow:none;}
.sc0_c00299{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__c00299{-webkit-text-stroke:0px transparent;}
.sc0_c00299{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00299{word-spacing:0.000000px;}
.fc0_c00299{color:transparent;}
.fs4_c00299{font-size:12.000000px;}
.fs5_c00299{font-size:18.000000px;}
.fs0_c00299{font-size:24.000000px;}
.fs2_c00299{font-size:30.000000px;}
.fs3_c00299{font-size:36.000000px;}
.fs1_c00299{font-size:42.000000px;}
.y0_c00299{bottom:0.000000px;}
.y12_c00299{bottom:410.652000px;}
.y11_c00299{bottom:416.199000px;}
.y10_c00299{bottom:422.685000px;}
.yf_c00299{bottom:444.415500px;}
.ye_c00299{bottom:449.544000px;}
.yd_c00299{bottom:670.551000px;}
.yc_c00299{bottom:673.515000px;}
.yb_c00299{bottom:678.376500px;}
.ya_c00299{bottom:696.723000px;}
.y8_c00299{bottom:703.332000px;}
.y9_c00299{bottom:704.026500px;}
.y7_c00299{bottom:707.137500px;}
.y6_c00299{bottom:730.474500px;}
.y5_c00299{bottom:733.320000px;}
.y4_c00299{bottom:785.830500px;}
.y3_c00299{bottom:791.370000px;}
.y2_c00299{bottom:797.700000px;}
.y1_c00299{bottom:810.540000px;}
.h6_c00299{height:12.000000px;}
.h7_c00299{height:18.000000px;}
.h2_c00299{height:24.000000px;}
.h4_c00299{height:30.000000px;}
.h5_c00299{height:36.000000px;}
.h3_c00299{height:42.000000px;}
.h1_c00299{height:1165.500000px;}
.h0_c00299{height:1165.800000px;}
.w0_c00299{width:915.000000px;}
.x0_c00299{left:0.000000px;}
.x1_c00299{left:29.970000px;}
.x2_c00299{left:37.800000px;}
.x3_c00299{left:39.690000px;}
.x5_c00299{left:69.660000px;}
.x7_c00299{left:87.210000px;}
.x4_c00299{left:105.300000px;}
.x8_c00299{left:106.650000px;}
.x13_c00299{left:151.740000px;}
.x28_c00299{left:161.730000px;}
.xf_c00299{left:165.780000px;}
.xc_c00299{left:168.210000px;}
.x6_c00299{left:172.530000px;}
.x14_c00299{left:174.150000px;}
.x26_c00299{left:184.680000px;}
.x15_c00299{left:195.480000px;}
.xb_c00299{left:201.690000px;}
.x9_c00299{left:203.310000px;}
.xd_c00299{left:213.300000px;}
.x27_c00299{left:214.380000px;}
.x1e_c00299{left:222.750000px;}
.x1a_c00299{left:225.720000px;}
.xa_c00299{left:231.120000px;}
.x16_c00299{left:233.280000px;}
.x1c_c00299{left:235.710000px;}
.x1f_c00299{left:242.730000px;}
.x1d_c00299{left:246.240000px;}
.x17_c00299{left:249.750000px;}
.x1b_c00299{left:253.800000px;}
.xe_c00299{left:255.150000px;}
.x10_c00299{left:267.840000px;}
.x18_c00299{left:293.220000px;}
.x11_c00299{left:304.020000px;}
.x19_c00299{left:306.180000px;}
.x12_c00299{left:322.650000px;}
.x22_c00299{left:523.530000px;}
.x20_c00299{left:530.010000px;}
.x21_c00299{left:542.160000px;}
.x23_c00299{left:551.610000px;}
.x24_c00299{left:570.780000px;}
.x25_c00299{left:576.720000px;}
@media print{
.v0_c00299{vertical-align:0.000000pt;}
.ls0_c00299{letter-spacing:0.000000pt;}
.ws0_c00299{word-spacing:0.000000pt;}
.fs4_c00299{font-size:10.666667pt;}
.fs5_c00299{font-size:16.000000pt;}
.fs0_c00299{font-size:21.333333pt;}
.fs2_c00299{font-size:26.666667pt;}
.fs3_c00299{font-size:32.000000pt;}
.fs1_c00299{font-size:37.333333pt;}
.y0_c00299{bottom:0.000000pt;}
.y12_c00299{bottom:365.024000pt;}
.y11_c00299{bottom:369.954667pt;}
.y10_c00299{bottom:375.720000pt;}
.yf_c00299{bottom:395.036000pt;}
.ye_c00299{bottom:399.594667pt;}
.yd_c00299{bottom:596.045333pt;}
.yc_c00299{bottom:598.680000pt;}
.yb_c00299{bottom:603.001333pt;}
.ya_c00299{bottom:619.309333pt;}
.y8_c00299{bottom:625.184000pt;}
.y9_c00299{bottom:625.801333pt;}
.y7_c00299{bottom:628.566667pt;}
.y6_c00299{bottom:649.310667pt;}
.y5_c00299{bottom:651.840000pt;}
.y4_c00299{bottom:698.516000pt;}
.y3_c00299{bottom:703.440000pt;}
.y2_c00299{bottom:709.066667pt;}
.y1_c00299{bottom:720.480000pt;}
.h6_c00299{height:10.666667pt;}
.h7_c00299{height:16.000000pt;}
.h2_c00299{height:21.333333pt;}
.h4_c00299{height:26.666667pt;}
.h5_c00299{height:32.000000pt;}
.h3_c00299{height:37.333333pt;}
.h1_c00299{height:1036.000000pt;}
.h0_c00299{height:1036.266667pt;}
.w0_c00299{width:813.333333pt;}
.x0_c00299{left:0.000000pt;}
.x1_c00299{left:26.640000pt;}
.x2_c00299{left:33.600000pt;}
.x3_c00299{left:35.280000pt;}
.x5_c00299{left:61.920000pt;}
.x7_c00299{left:77.520000pt;}
.x4_c00299{left:93.600000pt;}
.x8_c00299{left:94.800000pt;}
.x13_c00299{left:134.880000pt;}
.x28_c00299{left:143.760000pt;}
.xf_c00299{left:147.360000pt;}
.xc_c00299{left:149.520000pt;}
.x6_c00299{left:153.360000pt;}
.x14_c00299{left:154.800000pt;}
.x26_c00299{left:164.160000pt;}
.x15_c00299{left:173.760000pt;}
.xb_c00299{left:179.280000pt;}
.x9_c00299{left:180.720000pt;}
.xd_c00299{left:189.600000pt;}
.x27_c00299{left:190.560000pt;}
.x1e_c00299{left:198.000000pt;}
.x1a_c00299{left:200.640000pt;}
.xa_c00299{left:205.440000pt;}
.x16_c00299{left:207.360000pt;}
.x1c_c00299{left:209.520000pt;}
.x1f_c00299{left:215.760000pt;}
.x1d_c00299{left:218.880000pt;}
.x17_c00299{left:222.000000pt;}
.x1b_c00299{left:225.600000pt;}
.xe_c00299{left:226.800000pt;}
.x10_c00299{left:238.080000pt;}
.x18_c00299{left:260.640000pt;}
.x11_c00299{left:270.240000pt;}
.x19_c00299{left:272.160000pt;}
.x12_c00299{left:286.800000pt;}
.x22_c00299{left:465.360000pt;}
.x20_c00299{left:471.120000pt;}
.x21_c00299{left:481.920000pt;}
.x23_c00299{left:490.320000pt;}
.x24_c00299{left:507.360000pt;}
.x25_c00299{left:512.640000pt;}
}





/* 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_c00300 {
    display:none;
  }
  .loading-indicator_c00300.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00300 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_c00300 { 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_c00300" -> "#page-container .classname_c00300")
 */
.pf_c00300 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00300 { /* 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_c00300.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00300 { /* 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_c00300 { /* 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_c00300 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00300 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00300 {overflow:visible;}
  }
}
.c_c00300 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00300 { /* 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_c00300:after { /* webkit #35443 */
  content: '';
}
.t_c00300:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00300 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 */
}
.__c00300 { /* 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_c00300 { /* info for Javascript */
  display:none;
}
.l_c00300 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00300 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00300 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00300: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_c00300 {
    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_c00300.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00300.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_c00300 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00300{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00300;src:url('chunks/assets/font_c605e72f209fc835e906f064.woff2')format("woff");}.ff1_c00300{font-family:ff1_c00300;line-height:1.000000;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;}
.m1d_c00300{transform:matrix(0.132585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132585,0.000000,0.000000,0.250000,0,0);}
.m22_c00300{transform:matrix(0.137885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137885,0.000000,0.000000,0.250000,0,0);}
.m1c_c00300{transform:matrix(0.140560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140560,0.000000,0.000000,0.250000,0,0);}
.m32_c00300{transform:matrix(0.147555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147555,0.000000,0.000000,0.250000,0,0);}
.me_c00300{transform:matrix(0.214060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214060,0.000000,0.000000,0.250000,0,0);}
.md_c00300{transform:matrix(0.223205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223205,0.000000,0.000000,0.250000,0,0);}
.m17_c00300{transform:matrix(0.236110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236110,0.000000,0.000000,0.250000,0,0);}
.m1f_c00300{transform:matrix(0.236725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236725,0.000000,0.000000,0.250000,0,0);}
.m5_c00300{transform:matrix(0.242585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242585,0.000000,0.000000,0.250000,0,0);}
.m14_c00300{transform:matrix(0.247615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247615,0.000000,0.000000,0.250000,0,0);}
.m19_c00300{transform:matrix(0.247685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247685,0.000000,0.000000,0.250000,0,0);}
.m1a_c00300{transform:matrix(0.249040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249040,0.000000,0.000000,0.250000,0,0);}
.m1e_c00300{transform:matrix(0.253160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253160,0.000000,0.000000,0.250000,0,0);}
.mf_c00300{transform:matrix(0.253535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253535,0.000000,0.000000,0.250000,0,0);}
.m11_c00300{transform:matrix(0.254980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254980,0.000000,0.000000,0.250000,0,0);}
.m27_c00300{transform:matrix(0.256450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256450,0.000000,0.000000,0.250000,0,0);}
.m25_c00300{transform:matrix(0.258630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258630,0.000000,0.000000,0.250000,0,0);}
.m18_c00300{transform:matrix(0.259085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259085,0.000000,0.000000,0.250000,0,0);}
.m24_c00300{transform:matrix(0.260265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260265,0.000000,0.000000,0.250000,0,0);}
.m23_c00300{transform:matrix(0.260435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260435,0.000000,0.000000,0.250000,0,0);}
.m21_c00300{transform:matrix(0.261050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261050,0.000000,0.000000,0.250000,0,0);}
.m20_c00300{transform:matrix(0.261335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261335,0.000000,0.000000,0.250000,0,0);}
.ma_c00300{transform:matrix(0.261550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261550,0.000000,0.000000,0.250000,0,0);}
.m0_c00300{transform:matrix(0.263005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263005,0.000000,0.000000,0.250000,0,0);}
.m15_c00300{transform:matrix(0.268080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268080,0.000000,0.000000,0.250000,0,0);}
.m1b_c00300{transform:matrix(0.269490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269490,0.000000,0.000000,0.250000,0,0);}
.m7_c00300{transform:matrix(0.271185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271185,0.000000,0.000000,0.250000,0,0);}
.m12_c00300{transform:matrix(0.272350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272350,0.000000,0.000000,0.250000,0,0);}
.m3_c00300{transform:matrix(0.273845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273845,0.000000,0.000000,0.250000,0,0);}
.m4_c00300{transform:matrix(0.273915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273915,0.000000,0.000000,0.250000,0,0);}
.m31_c00300{transform:matrix(0.274915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274915,0.000000,0.000000,0.250000,0,0);}
.m16_c00300{transform:matrix(0.276835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276835,0.000000,0.000000,0.250000,0,0);}
.m2c_c00300{transform:matrix(0.280590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280590,0.000000,0.000000,0.250000,0,0);}
.m8_c00300{transform:matrix(0.282635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282635,0.000000,0.000000,0.250000,0,0);}
.m28_c00300{transform:matrix(0.283355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283355,0.000000,0.000000,0.250000,0,0);}
.m2a_c00300{transform:matrix(0.283965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283965,0.000000,0.000000,0.250000,0,0);}
.m13_c00300{transform:matrix(0.287505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287505,0.000000,0.000000,0.250000,0,0);}
.m29_c00300{transform:matrix(0.287600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287600,0.000000,0.000000,0.250000,0,0);}
.m2d_c00300{transform:matrix(0.288515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288515,0.000000,0.000000,0.250000,0,0);}
.m30_c00300{transform:matrix(0.290215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290215,0.000000,0.000000,0.250000,0,0);}
.m2b_c00300{transform:matrix(0.290390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290390,0.000000,0.000000,0.250000,0,0);}
.m2f_c00300{transform:matrix(0.290890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290890,0.000000,0.000000,0.250000,0,0);}
.m6_c00300{transform:matrix(0.291585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291585,0.000000,0.000000,0.250000,0,0);}
.m2e_c00300{transform:matrix(0.292850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292850,0.000000,0.000000,0.250000,0,0);}
.mb_c00300{transform:matrix(0.293210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293210,0.000000,0.000000,0.250000,0,0);}
.m26_c00300{transform:matrix(0.294995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294995,0.000000,0.000000,0.250000,0,0);}
.mc_c00300{transform:matrix(0.296290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296290,0.000000,0.000000,0.250000,0,0);}
.m10_c00300{transform:matrix(0.300180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300180,0.000000,0.000000,0.250000,0,0);}
.m1_c00300{transform:matrix(0.302625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302625,0.000000,0.000000,0.250000,0,0);}
.m9_c00300{transform:matrix(0.303775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303775,0.000000,0.000000,0.250000,0,0);}
.m2_c00300{transform:matrix(0.626805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.626805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.626805,0.000000,0.000000,0.250000,0,0);}
.v0_c00300{vertical-align:0.000000px;}
.ls0_c00300{letter-spacing:0.000000px;}
.sc__c00300{text-shadow:none;}
.sc0_c00300{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__c00300{-webkit-text-stroke:0px transparent;}
.sc0_c00300{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00300{word-spacing:0.000000px;}
.fc0_c00300{color:transparent;}
.fs1_c00300{font-size:30.000000px;}
.fs2_c00300{font-size:66.000000px;}
.fs0_c00300{font-size:72.000000px;}
.y0_c00300{bottom:0.000000px;}
.ya_c00300{bottom:866.175000px;}
.y3_c00300{bottom:897.622500px;}
.y9_c00300{bottom:897.981000px;}
.y8_c00300{bottom:929.931000px;}
.y7_c00300{bottom:961.200000px;}
.y2_c00300{bottom:992.520000px;}
.y6_c00300{bottom:992.748000px;}
.y5_c00300{bottom:1023.840000px;}
.y4_c00300{bottom:1055.692500px;}
.y1_c00300{bottom:1055.700000px;}
.h3_c00300{height:30.000000px;}
.h4_c00300{height:66.000000px;}
.h2_c00300{height:72.000000px;}
.h1_c00300{height:1165.500000px;}
.h0_c00300{height:1165.800000px;}
.w0_c00300{width:915.000000px;}
.x0_c00300{left:0.000000px;}
.x1_c00300{left:158.220000px;}
.xa_c00300{left:266.220000px;}
.x20_c00300{left:267.840000px;}
.x2_c00300{left:268.920000px;}
.x19_c00300{left:290.520000px;}
.x16_c00300{left:310.230000px;}
.x3_c00300{left:333.180000px;}
.x25_c00300{left:344.250000px;}
.x1a_c00300{left:354.240000px;}
.x17_c00300{left:366.390000px;}
.xb_c00300{left:376.110000px;}
.x1b_c00300{left:377.190000px;}
.x4_c00300{left:409.590000px;}
.x12_c00300{left:441.990000px;}
.x18_c00300{left:444.690000px;}
.x5_c00300{left:452.790000px;}
.x26_c00300{left:464.130000px;}
.xc_c00300{left:465.480000px;}
.x1c_c00300{left:474.930000px;}
.x21_c00300{left:487.350000px;}
.x13_c00300{left:497.880000px;}
.x6_c00300{left:529.740000px;}
.xd_c00300{left:530.820000px;}
.xe_c00300{left:551.610000px;}
.x1d_c00300{left:565.380000px;}
.x27_c00300{left:574.290000px;}
.xf_c00300{left:585.360000px;}
.x7_c00300{left:586.710000px;}
.x22_c00300{left:597.240000px;}
.x28_c00300{left:618.300000px;}
.x8_c00300{left:662.580000px;}
.x1e_c00300{left:683.910000px;}
.x29_c00300{left:694.980000px;}
.x23_c00300{left:697.410000px;}
.x10_c00300{left:727.650000px;}
.x14_c00300{left:738.990000px;}
.x1f_c00300{left:752.220000px;}
.x11_c00300{left:762.480000px;}
.x9_c00300{left:773.010000px;}
.x15_c00300{left:784.350000px;}
.x24_c00300{left:794.610000px;}
@media print{
.v0_c00300{vertical-align:0.000000pt;}
.ls0_c00300{letter-spacing:0.000000pt;}
.ws0_c00300{word-spacing:0.000000pt;}
.fs1_c00300{font-size:26.666667pt;}
.fs2_c00300{font-size:58.666667pt;}
.fs0_c00300{font-size:64.000000pt;}
.y0_c00300{bottom:0.000000pt;}
.ya_c00300{bottom:769.933333pt;}
.y3_c00300{bottom:797.886667pt;}
.y9_c00300{bottom:798.205333pt;}
.y8_c00300{bottom:826.605333pt;}
.y7_c00300{bottom:854.400000pt;}
.y2_c00300{bottom:882.240000pt;}
.y6_c00300{bottom:882.442667pt;}
.y5_c00300{bottom:910.080000pt;}
.y4_c00300{bottom:938.393333pt;}
.y1_c00300{bottom:938.400000pt;}
.h3_c00300{height:26.666667pt;}
.h4_c00300{height:58.666667pt;}
.h2_c00300{height:64.000000pt;}
.h1_c00300{height:1036.000000pt;}
.h0_c00300{height:1036.266667pt;}
.w0_c00300{width:813.333333pt;}
.x0_c00300{left:0.000000pt;}
.x1_c00300{left:140.640000pt;}
.xa_c00300{left:236.640000pt;}
.x20_c00300{left:238.080000pt;}
.x2_c00300{left:239.040000pt;}
.x19_c00300{left:258.240000pt;}
.x16_c00300{left:275.760000pt;}
.x3_c00300{left:296.160000pt;}
.x25_c00300{left:306.000000pt;}
.x1a_c00300{left:314.880000pt;}
.x17_c00300{left:325.680000pt;}
.xb_c00300{left:334.320000pt;}
.x1b_c00300{left:335.280000pt;}
.x4_c00300{left:364.080000pt;}
.x12_c00300{left:392.880000pt;}
.x18_c00300{left:395.280000pt;}
.x5_c00300{left:402.480000pt;}
.x26_c00300{left:412.560000pt;}
.xc_c00300{left:413.760000pt;}
.x1c_c00300{left:422.160000pt;}
.x21_c00300{left:433.200000pt;}
.x13_c00300{left:442.560000pt;}
.x6_c00300{left:470.880000pt;}
.xd_c00300{left:471.840000pt;}
.xe_c00300{left:490.320000pt;}
.x1d_c00300{left:502.560000pt;}
.x27_c00300{left:510.480000pt;}
.xf_c00300{left:520.320000pt;}
.x7_c00300{left:521.520000pt;}
.x22_c00300{left:530.880000pt;}
.x28_c00300{left:549.600000pt;}
.x8_c00300{left:588.960000pt;}
.x1e_c00300{left:607.920000pt;}
.x29_c00300{left:617.760000pt;}
.x23_c00300{left:619.920000pt;}
.x10_c00300{left:646.800000pt;}
.x14_c00300{left:656.880000pt;}
.x1f_c00300{left:668.640000pt;}
.x11_c00300{left:677.760000pt;}
.x9_c00300{left:687.120000pt;}
.x15_c00300{left:697.200000pt;}
.x24_c00300{left:706.320000pt;}
}





/* 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_c00301 {
    display:none;
  }
  .loading-indicator_c00301.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00301 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_c00301 { 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_c00301" -> "#page-container .classname_c00301")
 */
.pf_c00301 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00301 { /* 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_c00301.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00301 { /* 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_c00301 { /* 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_c00301 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00301 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00301 {overflow:visible;}
  }
}
.c_c00301 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00301 { /* 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_c00301:after { /* webkit #35443 */
  content: '';
}
.t_c00301:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00301 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 */
}
.__c00301 { /* 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_c00301 { /* info for Javascript */
  display:none;
}
.l_c00301 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00301 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00301 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00301: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_c00301 {
    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_c00301.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00301.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_c00301 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00301{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00301;src:url('chunks/assets/font_c605e72f209fc835e906f064.woff2')format("woff");}.ff1_c00301{font-family:ff1_c00301;line-height:1.000000;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;}
.m0_c00301{transform:matrix(0.052972,4.074781,-0.249979,0.003250,0,0);-ms-transform:matrix(0.052972,4.074781,-0.249979,0.003250,0,0);-webkit-transform:matrix(0.052972,4.074781,-0.249979,0.003250,0,0);}
.m1_c00301{transform:matrix(0.179440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179440,0.000000,0.000000,0.250000,0,0);}
.m2_c00301{transform:matrix(0.197350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197350,0.000000,0.000000,0.250000,0,0);}
.m5_c00301{transform:matrix(0.231205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231205,0.000000,0.000000,0.250000,0,0);}
.m4_c00301{transform:matrix(0.382320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382320,0.000000,0.000000,0.250000,0,0);}
.m6_c00301{transform:matrix(0.476295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.476295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.476295,0.000000,0.000000,0.250000,0,0);}
.m3_c00301{transform:matrix(0.686895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.686895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.686895,0.000000,0.000000,0.250000,0,0);}
.v0_c00301{vertical-align:0.000000px;}
.ls0_c00301{letter-spacing:0.000000px;}
.sc__c00301{text-shadow:none;}
.sc0_c00301{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__c00301{-webkit-text-stroke:0px transparent;}
.sc0_c00301{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00301{word-spacing:0.000000px;}
.fc0_c00301{color:transparent;}
.fs3_c00301{font-size:12.000000px;}
.fs0_c00301{font-size:24.002028px;}
.fs1_c00301{font-size:42.000000px;}
.fs5_c00301{font-size:72.000000px;}
.fs2_c00301{font-size:84.000000px;}
.fs4_c00301{font-size:90.000000px;}
.y0_c00301{bottom:0.000000px;}
.y1_c00301{bottom:274.053000px;}
.y4_c00301{bottom:922.050000px;}
.y6_c00301{bottom:924.210000px;}
.y5_c00301{bottom:924.741000px;}
.y3_c00301{bottom:925.690500px;}
.y2_c00301{bottom:931.500000px;}
.h5_c00301{height:12.000000px;}
.h2_c00301{height:24.002028px;}
.h3_c00301{height:42.000000px;}
.h7_c00301{height:72.000000px;}
.h4_c00301{height:84.000000px;}
.h6_c00301{height:90.000000px;}
.h1_c00301{height:1165.500000px;}
.h0_c00301{height:1165.800000px;}
.w0_c00301{width:915.000000px;}
.x0_c00301{left:0.000000px;}
.x7_c00301{left:307.800000px;}
.x5_c00301{left:342.090000px;}
.x6_c00301{left:388.530000px;}
.x4_c00301{left:422.010000px;}
.x3_c00301{left:572.670000px;}
.x2_c00301{left:606.150000px;}
.x1_c00301{left:903.690000px;}
@media print{
.v0_c00301{vertical-align:0.000000pt;}
.ls0_c00301{letter-spacing:0.000000pt;}
.ws0_c00301{word-spacing:0.000000pt;}
.fs3_c00301{font-size:10.666667pt;}
.fs0_c00301{font-size:21.335136pt;}
.fs1_c00301{font-size:37.333333pt;}
.fs5_c00301{font-size:64.000000pt;}
.fs2_c00301{font-size:74.666667pt;}
.fs4_c00301{font-size:80.000000pt;}
.y0_c00301{bottom:0.000000pt;}
.y1_c00301{bottom:243.602667pt;}
.y4_c00301{bottom:819.600000pt;}
.y6_c00301{bottom:821.520000pt;}
.y5_c00301{bottom:821.992000pt;}
.y3_c00301{bottom:822.836000pt;}
.y2_c00301{bottom:828.000000pt;}
.h5_c00301{height:10.666667pt;}
.h2_c00301{height:21.335136pt;}
.h3_c00301{height:37.333333pt;}
.h7_c00301{height:64.000000pt;}
.h4_c00301{height:74.666667pt;}
.h6_c00301{height:80.000000pt;}
.h1_c00301{height:1036.000000pt;}
.h0_c00301{height:1036.266667pt;}
.w0_c00301{width:813.333333pt;}
.x0_c00301{left:0.000000pt;}
.x7_c00301{left:273.600000pt;}
.x5_c00301{left:304.080000pt;}
.x6_c00301{left:345.360000pt;}
.x4_c00301{left:375.120000pt;}
.x3_c00301{left:509.040000pt;}
.x2_c00301{left:538.800000pt;}
.x1_c00301{left:803.280000pt;}
}





/* 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_c00302 {
    display:none;
  }
  .loading-indicator_c00302.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00302 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_c00302 { 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_c00302" -> "#page-container .classname_c00302")
 */
.pf_c00302 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00302 { /* 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_c00302.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00302 { /* 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_c00302 { /* 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_c00302 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00302 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00302 {overflow:visible;}
  }
}
.c_c00302 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00302 { /* 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_c00302:after { /* webkit #35443 */
  content: '';
}
.t_c00302:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00302 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 */
}
.__c00302 { /* 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_c00302 { /* info for Javascript */
  display:none;
}
.l_c00302 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00302 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00302 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00302: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_c00302 {
    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_c00302.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00302.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_c00302 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00302{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00302;src:url('chunks/assets/font_fabf4b590f7fb32aea93ffb2.woff2')format("woff");}.ff1_c00302{font-family:ff1_c00302;line-height:1.000000;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;}
.mb3_c00302{transform:matrix(0.122023,-0.000732,0.001500,0.249996,0,0);-ms-transform:matrix(0.122023,-0.000732,0.001500,0.249996,0,0);-webkit-transform:matrix(0.122023,-0.000732,0.001500,0.249996,0,0);}
.mad_c00302{transform:matrix(0.127278,-0.000764,0.001500,0.249996,0,0);-ms-transform:matrix(0.127278,-0.000764,0.001500,0.249996,0,0);-webkit-transform:matrix(0.127278,-0.000764,0.001500,0.249996,0,0);}
.m7_c00302{transform:matrix(0.134270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134270,0.000000,0.000000,0.250000,0,0);}
.mb_c00302{transform:matrix(0.141210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141210,0.000000,0.000000,0.250000,0,0);}
.m1e_c00302{transform:matrix(0.158035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158035,0.000000,0.000000,0.250000,0,0);}
.m95_c00302{transform:matrix(0.162543,-0.001463,0.002250,0.249990,0,0);-ms-transform:matrix(0.162543,-0.001463,0.002250,0.249990,0,0);-webkit-transform:matrix(0.162543,-0.001463,0.002250,0.249990,0,0);}
.m93_c00302{transform:matrix(0.163333,-0.001470,0.002250,0.249990,0,0);-ms-transform:matrix(0.163333,-0.001470,0.002250,0.249990,0,0);-webkit-transform:matrix(0.163333,-0.001470,0.002250,0.249990,0,0);}
.m6e_c00302{transform:matrix(0.167093,-0.001504,0.002250,0.249990,0,0);-ms-transform:matrix(0.167093,-0.001504,0.002250,0.249990,0,0);-webkit-transform:matrix(0.167093,-0.001504,0.002250,0.249990,0,0);}
.mb4_c00302{transform:matrix(0.167672,-0.001006,0.001500,0.249996,0,0);-ms-transform:matrix(0.167672,-0.001006,0.001500,0.249996,0,0);-webkit-transform:matrix(0.167672,-0.001006,0.001500,0.249996,0,0);}
.m98_c00302{transform:matrix(0.168553,-0.001517,0.002250,0.249990,0,0);-ms-transform:matrix(0.168553,-0.001517,0.002250,0.249990,0,0);-webkit-transform:matrix(0.168553,-0.001517,0.002250,0.249990,0,0);}
.m26_c00302{transform:matrix(0.169450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169450,0.000000,0.000000,0.250000,0,0);}
.m96_c00302{transform:matrix(0.171113,-0.001540,0.002250,0.249990,0,0);-ms-transform:matrix(0.171113,-0.001540,0.002250,0.249990,0,0);-webkit-transform:matrix(0.171113,-0.001540,0.002250,0.249990,0,0);}
.m92_c00302{transform:matrix(0.171643,-0.001545,0.002250,0.249990,0,0);-ms-transform:matrix(0.171643,-0.001545,0.002250,0.249990,0,0);-webkit-transform:matrix(0.171643,-0.001545,0.002250,0.249990,0,0);}
.mcc_c00302{transform:matrix(0.173602,-0.001042,0.001500,0.249996,0,0);-ms-transform:matrix(0.173602,-0.001042,0.001500,0.249996,0,0);-webkit-transform:matrix(0.173602,-0.001042,0.001500,0.249996,0,0);}
.mab_c00302{transform:matrix(0.173737,-0.001042,0.001500,0.249996,0,0);-ms-transform:matrix(0.173737,-0.001042,0.001500,0.249996,0,0);-webkit-transform:matrix(0.173737,-0.001042,0.001500,0.249996,0,0);}
.mb7_c00302{transform:matrix(0.173772,-0.001043,0.001500,0.249996,0,0);-ms-transform:matrix(0.173772,-0.001043,0.001500,0.249996,0,0);-webkit-transform:matrix(0.173772,-0.001043,0.001500,0.249996,0,0);}
.m91_c00302{transform:matrix(0.173903,-0.001565,0.002250,0.249990,0,0);-ms-transform:matrix(0.173903,-0.001565,0.002250,0.249990,0,0);-webkit-transform:matrix(0.173903,-0.001565,0.002250,0.249990,0,0);}
.ma3_c00302{transform:matrix(0.173997,-0.001044,0.001500,0.249996,0,0);-ms-transform:matrix(0.173997,-0.001044,0.001500,0.249996,0,0);-webkit-transform:matrix(0.173997,-0.001044,0.001500,0.249996,0,0);}
.m20_c00302{transform:matrix(0.174785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174785,0.000000,0.000000,0.250000,0,0);}
.m94_c00302{transform:matrix(0.175128,-0.001576,0.002250,0.249990,0,0);-ms-transform:matrix(0.175128,-0.001576,0.002250,0.249990,0,0);-webkit-transform:matrix(0.175128,-0.001576,0.002250,0.249990,0,0);}
.m24_c00302{transform:matrix(0.175230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175230,0.000000,0.000000,0.250000,0,0);}
.m99_c00302{transform:matrix(0.176263,-0.001586,0.002250,0.249990,0,0);-ms-transform:matrix(0.176263,-0.001586,0.002250,0.249990,0,0);-webkit-transform:matrix(0.176263,-0.001586,0.002250,0.249990,0,0);}
.mc6_c00302{transform:matrix(0.176287,-0.001058,0.001500,0.249996,0,0);-ms-transform:matrix(0.176287,-0.001058,0.001500,0.249996,0,0);-webkit-transform:matrix(0.176287,-0.001058,0.001500,0.249996,0,0);}
.m97_c00302{transform:matrix(0.176883,-0.001592,0.002250,0.249990,0,0);-ms-transform:matrix(0.176883,-0.001592,0.002250,0.249990,0,0);-webkit-transform:matrix(0.176883,-0.001592,0.002250,0.249990,0,0);}
.m21_c00302{transform:matrix(0.177185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177185,0.000000,0.000000,0.250000,0,0);}
.m29_c00302{transform:matrix(0.177710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177710,0.000000,0.000000,0.250000,0,0);}
.m8f_c00302{transform:matrix(0.177978,-0.001602,0.002250,0.249990,0,0);-ms-transform:matrix(0.177978,-0.001602,0.002250,0.249990,0,0);-webkit-transform:matrix(0.177978,-0.001602,0.002250,0.249990,0,0);}
.m23_c00302{transform:matrix(0.180140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180140,0.000000,0.000000,0.250000,0,0);}
.m25_c00302{transform:matrix(0.180810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180810,0.000000,0.000000,0.250000,0,0);}
.mcd_c00302{transform:matrix(0.181497,-0.001089,0.001500,0.249996,0,0);-ms-transform:matrix(0.181497,-0.001089,0.001500,0.249996,0,0);-webkit-transform:matrix(0.181497,-0.001089,0.001500,0.249996,0,0);}
.m65_c00302{transform:matrix(0.182053,-0.001638,0.002250,0.249990,0,0);-ms-transform:matrix(0.182053,-0.001638,0.002250,0.249990,0,0);-webkit-transform:matrix(0.182053,-0.001638,0.002250,0.249990,0,0);}
.mc7_c00302{transform:matrix(0.182652,-0.001096,0.001500,0.249996,0,0);-ms-transform:matrix(0.182652,-0.001096,0.001500,0.249996,0,0);-webkit-transform:matrix(0.182652,-0.001096,0.001500,0.249996,0,0);}
.mb2_c00302{transform:matrix(0.183562,-0.001101,0.001500,0.249996,0,0);-ms-transform:matrix(0.183562,-0.001101,0.001500,0.249996,0,0);-webkit-transform:matrix(0.183562,-0.001101,0.001500,0.249996,0,0);}
.m22_c00302{transform:matrix(0.184445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184445,0.000000,0.000000,0.250000,0,0);}
.m68_c00302{transform:matrix(0.185492,-0.001669,0.002250,0.249990,0,0);-ms-transform:matrix(0.185492,-0.001669,0.002250,0.249990,0,0);-webkit-transform:matrix(0.185492,-0.001669,0.002250,0.249990,0,0);}
.mae_c00302{transform:matrix(0.185707,-0.001114,0.001500,0.249996,0,0);-ms-transform:matrix(0.185707,-0.001114,0.001500,0.249996,0,0);-webkit-transform:matrix(0.185707,-0.001114,0.001500,0.249996,0,0);}
.m62_c00302{transform:matrix(0.186177,-0.001676,0.002250,0.249990,0,0);-ms-transform:matrix(0.186177,-0.001676,0.002250,0.249990,0,0);-webkit-transform:matrix(0.186177,-0.001676,0.002250,0.249990,0,0);}
.m2a_c00302{transform:matrix(0.186370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186370,0.000000,0.000000,0.250000,0,0);}
.m90_c00302{transform:matrix(0.186432,-0.001678,0.002250,0.249990,0,0);-ms-transform:matrix(0.186432,-0.001678,0.002250,0.249990,0,0);-webkit-transform:matrix(0.186432,-0.001678,0.002250,0.249990,0,0);}
.mb1_c00302{transform:matrix(0.187027,-0.001122,0.001500,0.249996,0,0);-ms-transform:matrix(0.187027,-0.001122,0.001500,0.249996,0,0);-webkit-transform:matrix(0.187027,-0.001122,0.001500,0.249996,0,0);}
.m49_c00302{transform:matrix(0.187885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187885,0.000000,0.000000,0.250000,0,0);}
.md0_c00302{transform:matrix(0.189472,-0.001137,0.001500,0.249996,0,0);-ms-transform:matrix(0.189472,-0.001137,0.001500,0.249996,0,0);-webkit-transform:matrix(0.189472,-0.001137,0.001500,0.249996,0,0);}
.mb5_c00302{transform:matrix(0.189482,-0.001137,0.001500,0.249996,0,0);-ms-transform:matrix(0.189482,-0.001137,0.001500,0.249996,0,0);-webkit-transform:matrix(0.189482,-0.001137,0.001500,0.249996,0,0);}
.m5d_c00302{transform:matrix(0.189957,-0.001710,0.002250,0.249990,0,0);-ms-transform:matrix(0.189957,-0.001710,0.002250,0.249990,0,0);-webkit-transform:matrix(0.189957,-0.001710,0.002250,0.249990,0,0);}
.mca_c00302{transform:matrix(0.189962,-0.001140,0.001500,0.249996,0,0);-ms-transform:matrix(0.189962,-0.001140,0.001500,0.249996,0,0);-webkit-transform:matrix(0.189962,-0.001140,0.001500,0.249996,0,0);}
.mb6_c00302{transform:matrix(0.190342,-0.001142,0.001500,0.249996,0,0);-ms-transform:matrix(0.190342,-0.001142,0.001500,0.249996,0,0);-webkit-transform:matrix(0.190342,-0.001142,0.001500,0.249996,0,0);}
.m63_c00302{transform:matrix(0.191327,-0.001722,0.002250,0.249990,0,0);-ms-transform:matrix(0.191327,-0.001722,0.002250,0.249990,0,0);-webkit-transform:matrix(0.191327,-0.001722,0.002250,0.249990,0,0);}
.m2f_c00302{transform:matrix(0.191900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191900,0.000000,0.000000,0.250000,0,0);}
.m61_c00302{transform:matrix(0.191907,-0.001727,0.002250,0.249990,0,0);-ms-transform:matrix(0.191907,-0.001727,0.002250,0.249990,0,0);-webkit-transform:matrix(0.191907,-0.001727,0.002250,0.249990,0,0);}
.ma7_c00302{transform:matrix(0.192422,-0.001155,0.001500,0.249996,0,0);-ms-transform:matrix(0.192422,-0.001155,0.001500,0.249996,0,0);-webkit-transform:matrix(0.192422,-0.001155,0.001500,0.249996,0,0);}
.ma9_c00302{transform:matrix(0.192987,-0.001158,0.001500,0.249996,0,0);-ms-transform:matrix(0.192987,-0.001158,0.001500,0.249996,0,0);-webkit-transform:matrix(0.192987,-0.001158,0.001500,0.249996,0,0);}
.mac_c00302{transform:matrix(0.193552,-0.001161,0.001500,0.249996,0,0);-ms-transform:matrix(0.193552,-0.001161,0.001500,0.249996,0,0);-webkit-transform:matrix(0.193552,-0.001161,0.001500,0.249996,0,0);}
.maa_c00302{transform:matrix(0.193712,-0.001162,0.001500,0.249996,0,0);-ms-transform:matrix(0.193712,-0.001162,0.001500,0.249996,0,0);-webkit-transform:matrix(0.193712,-0.001162,0.001500,0.249996,0,0);}
.m28_c00302{transform:matrix(0.194210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194210,0.000000,0.000000,0.250000,0,0);}
.m2b_c00302{transform:matrix(0.194320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194320,0.000000,0.000000,0.250000,0,0);}
.mc9_c00302{transform:matrix(0.194327,-0.001166,0.001500,0.249996,0,0);-ms-transform:matrix(0.194327,-0.001166,0.001500,0.249996,0,0);-webkit-transform:matrix(0.194327,-0.001166,0.001500,0.249996,0,0);}
.m4_c00302{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.mcf_c00302{transform:matrix(0.195016,-0.001170,0.001500,0.249996,0,0);-ms-transform:matrix(0.195016,-0.001170,0.001500,0.249996,0,0);-webkit-transform:matrix(0.195016,-0.001170,0.001500,0.249996,0,0);}
.m1f_c00302{transform:matrix(0.195060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195060,0.000000,0.000000,0.250000,0,0);}
.ma5_c00302{transform:matrix(0.195356,-0.001172,0.001500,0.249996,0,0);-ms-transform:matrix(0.195356,-0.001172,0.001500,0.249996,0,0);-webkit-transform:matrix(0.195356,-0.001172,0.001500,0.249996,0,0);}
.m6a_c00302{transform:matrix(0.195497,-0.001759,0.002250,0.249990,0,0);-ms-transform:matrix(0.195497,-0.001759,0.002250,0.249990,0,0);-webkit-transform:matrix(0.195497,-0.001759,0.002250,0.249990,0,0);}
.m3a_c00302{transform:matrix(0.196060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196060,0.000000,0.000000,0.250000,0,0);}
.m64_c00302{transform:matrix(0.196262,-0.001766,0.002250,0.249990,0,0);-ms-transform:matrix(0.196262,-0.001766,0.002250,0.249990,0,0);-webkit-transform:matrix(0.196262,-0.001766,0.002250,0.249990,0,0);}
.m56_c00302{transform:matrix(0.196357,-0.001767,0.002250,0.249990,0,0);-ms-transform:matrix(0.196357,-0.001767,0.002250,0.249990,0,0);-webkit-transform:matrix(0.196357,-0.001767,0.002250,0.249990,0,0);}
.m5f_c00302{transform:matrix(0.196762,-0.001771,0.002250,0.249990,0,0);-ms-transform:matrix(0.196762,-0.001771,0.002250,0.249990,0,0);-webkit-transform:matrix(0.196762,-0.001771,0.002250,0.249990,0,0);}
.ma8_c00302{transform:matrix(0.196796,-0.001181,0.001500,0.249996,0,0);-ms-transform:matrix(0.196796,-0.001181,0.001500,0.249996,0,0);-webkit-transform:matrix(0.196796,-0.001181,0.001500,0.249996,0,0);}
.m67_c00302{transform:matrix(0.197127,-0.001774,0.002250,0.249990,0,0);-ms-transform:matrix(0.197127,-0.001774,0.002250,0.249990,0,0);-webkit-transform:matrix(0.197127,-0.001774,0.002250,0.249990,0,0);}
.m27_c00302{transform:matrix(0.197310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197310,0.000000,0.000000,0.250000,0,0);}
.m46_c00302{transform:matrix(0.197920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197920,0.000000,0.000000,0.250000,0,0);}
.ma4_c00302{transform:matrix(0.197926,-0.001188,0.001500,0.249996,0,0);-ms-transform:matrix(0.197926,-0.001188,0.001500,0.249996,0,0);-webkit-transform:matrix(0.197926,-0.001188,0.001500,0.249996,0,0);}
.m4b_c00302{transform:matrix(0.198040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198040,0.000000,0.000000,0.250000,0,0);}
.m32_c00302{transform:matrix(0.198545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198545,0.000000,0.000000,0.250000,0,0);}
.maf_c00302{transform:matrix(0.198651,-0.001192,0.001500,0.249996,0,0);-ms-transform:matrix(0.198651,-0.001192,0.001500,0.249996,0,0);-webkit-transform:matrix(0.198651,-0.001192,0.001500,0.249996,0,0);}
.m6f_c00302{transform:matrix(0.198897,-0.001790,0.002250,0.249990,0,0);-ms-transform:matrix(0.198897,-0.001790,0.002250,0.249990,0,0);-webkit-transform:matrix(0.198897,-0.001790,0.002250,0.249990,0,0);}
.m69_c00302{transform:matrix(0.200107,-0.001801,0.002250,0.249990,0,0);-ms-transform:matrix(0.200107,-0.001801,0.002250,0.249990,0,0);-webkit-transform:matrix(0.200107,-0.001801,0.002250,0.249990,0,0);}
.m6c_c00302{transform:matrix(0.200892,-0.001808,0.002250,0.249990,0,0);-ms-transform:matrix(0.200892,-0.001808,0.002250,0.249990,0,0);-webkit-transform:matrix(0.200892,-0.001808,0.002250,0.249990,0,0);}
.mf_c00302{transform:matrix(0.201245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201245,0.000000,0.000000,0.250000,0,0);}
.m10_c00302{transform:matrix(0.201530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201530,0.000000,0.000000,0.250000,0,0);}
.m8c_c00302{transform:matrix(0.202207,-0.001820,0.002250,0.249990,0,0);-ms-transform:matrix(0.202207,-0.001820,0.002250,0.249990,0,0);-webkit-transform:matrix(0.202207,-0.001820,0.002250,0.249990,0,0);}
.ma6_c00302{transform:matrix(0.202296,-0.001214,0.001500,0.249996,0,0);-ms-transform:matrix(0.202296,-0.001214,0.001500,0.249996,0,0);-webkit-transform:matrix(0.202296,-0.001214,0.001500,0.249996,0,0);}
.mb0_c00302{transform:matrix(0.202671,-0.001216,0.001500,0.249996,0,0);-ms-transform:matrix(0.202671,-0.001216,0.001500,0.249996,0,0);-webkit-transform:matrix(0.202671,-0.001216,0.001500,0.249996,0,0);}
.m86_c00302{transform:matrix(0.202722,-0.001824,0.002250,0.249990,0,0);-ms-transform:matrix(0.202722,-0.001824,0.002250,0.249990,0,0);-webkit-transform:matrix(0.202722,-0.001824,0.002250,0.249990,0,0);}
.m60_c00302{transform:matrix(0.203207,-0.001829,0.002250,0.249990,0,0);-ms-transform:matrix(0.203207,-0.001829,0.002250,0.249990,0,0);-webkit-transform:matrix(0.203207,-0.001829,0.002250,0.249990,0,0);}
.m89_c00302{transform:matrix(0.203282,-0.001830,0.002250,0.249990,0,0);-ms-transform:matrix(0.203282,-0.001830,0.002250,0.249990,0,0);-webkit-transform:matrix(0.203282,-0.001830,0.002250,0.249990,0,0);}
.m78_c00302{transform:matrix(0.203337,-0.001830,0.002250,0.249990,0,0);-ms-transform:matrix(0.203337,-0.001830,0.002250,0.249990,0,0);-webkit-transform:matrix(0.203337,-0.001830,0.002250,0.249990,0,0);}
.mbd_c00302{transform:matrix(0.204511,-0.001227,0.001500,0.249996,0,0);-ms-transform:matrix(0.204511,-0.001227,0.001500,0.249996,0,0);-webkit-transform:matrix(0.204511,-0.001227,0.001500,0.249996,0,0);}
.m66_c00302{transform:matrix(0.205177,-0.001847,0.002250,0.249990,0,0);-ms-transform:matrix(0.205177,-0.001847,0.002250,0.249990,0,0);-webkit-transform:matrix(0.205177,-0.001847,0.002250,0.249990,0,0);}
.m4c_c00302{transform:matrix(0.205340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205340,0.000000,0.000000,0.250000,0,0);}
.m5e_c00302{transform:matrix(0.205422,-0.001849,0.002250,0.249990,0,0);-ms-transform:matrix(0.205422,-0.001849,0.002250,0.249990,0,0);-webkit-transform:matrix(0.205422,-0.001849,0.002250,0.249990,0,0);}
.mcb_c00302{transform:matrix(0.206341,-0.001238,0.001500,0.249996,0,0);-ms-transform:matrix(0.206341,-0.001238,0.001500,0.249996,0,0);-webkit-transform:matrix(0.206341,-0.001238,0.001500,0.249996,0,0);}
.m4a_c00302{transform:matrix(0.208020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208020,0.000000,0.000000,0.250000,0,0);}
.mce_c00302{transform:matrix(0.208391,-0.001250,0.001500,0.249996,0,0);-ms-transform:matrix(0.208391,-0.001250,0.001500,0.249996,0,0);-webkit-transform:matrix(0.208391,-0.001250,0.001500,0.249996,0,0);}
.m4f_c00302{transform:matrix(0.208580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208580,0.000000,0.000000,0.250000,0,0);}
.m74_c00302{transform:matrix(0.208597,-0.001877,0.002250,0.249990,0,0);-ms-transform:matrix(0.208597,-0.001877,0.002250,0.249990,0,0);-webkit-transform:matrix(0.208597,-0.001877,0.002250,0.249990,0,0);}
.mc5_c00302{transform:matrix(0.208626,-0.001252,0.001500,0.249996,0,0);-ms-transform:matrix(0.208626,-0.001252,0.001500,0.249996,0,0);-webkit-transform:matrix(0.208626,-0.001252,0.001500,0.249996,0,0);}
.m3e_c00302{transform:matrix(0.208675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208675,0.000000,0.000000,0.250000,0,0);}
.mc8_c00302{transform:matrix(0.208921,-0.001254,0.001500,0.249996,0,0);-ms-transform:matrix(0.208921,-0.001254,0.001500,0.249996,0,0);-webkit-transform:matrix(0.208921,-0.001254,0.001500,0.249996,0,0);}
.mb8_c00302{transform:matrix(0.211501,-0.001269,0.001500,0.249996,0,0);-ms-transform:matrix(0.211501,-0.001269,0.001500,0.249996,0,0);-webkit-transform:matrix(0.211501,-0.001269,0.001500,0.249996,0,0);}
.m6d_c00302{transform:matrix(0.211666,-0.001905,0.002250,0.249990,0,0);-ms-transform:matrix(0.211666,-0.001905,0.002250,0.249990,0,0);-webkit-transform:matrix(0.211666,-0.001905,0.002250,0.249990,0,0);}
.md_c00302{transform:matrix(0.211740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211740,0.000000,0.000000,0.250000,0,0);}
.m3f_c00302{transform:matrix(0.211930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211930,0.000000,0.000000,0.250000,0,0);}
.m42_c00302{transform:matrix(0.212130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212130,0.000000,0.000000,0.250000,0,0);}
.m52_c00302{transform:matrix(0.212711,-0.001914,0.002250,0.249990,0,0);-ms-transform:matrix(0.212711,-0.001914,0.002250,0.249990,0,0);-webkit-transform:matrix(0.212711,-0.001914,0.002250,0.249990,0,0);}
.m2d_c00302{transform:matrix(0.214280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214280,0.000000,0.000000,0.250000,0,0);}
.m31_c00302{transform:matrix(0.214490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214490,0.000000,0.000000,0.250000,0,0);}
.m6b_c00302{transform:matrix(0.214946,-0.001935,0.002250,0.249990,0,0);-ms-transform:matrix(0.214946,-0.001935,0.002250,0.249990,0,0);-webkit-transform:matrix(0.214946,-0.001935,0.002250,0.249990,0,0);}
.m15_c00302{transform:matrix(0.215150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215150,0.000000,0.000000,0.250000,0,0);}
.m12_c00302{transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);}
.m82_c00302{transform:matrix(0.215706,-0.001941,0.002250,0.249990,0,0);-ms-transform:matrix(0.215706,-0.001941,0.002250,0.249990,0,0);-webkit-transform:matrix(0.215706,-0.001941,0.002250,0.249990,0,0);}
.m5b_c00302{transform:matrix(0.216486,-0.001948,0.002250,0.249990,0,0);-ms-transform:matrix(0.216486,-0.001948,0.002250,0.249990,0,0);-webkit-transform:matrix(0.216486,-0.001948,0.002250,0.249990,0,0);}
.m4d_c00302{transform:matrix(0.216600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216600,0.000000,0.000000,0.250000,0,0);}
.m57_c00302{transform:matrix(0.217026,-0.001953,0.002250,0.249990,0,0);-ms-transform:matrix(0.217026,-0.001953,0.002250,0.249990,0,0);-webkit-transform:matrix(0.217026,-0.001953,0.002250,0.249990,0,0);}
.m9_c00302{transform:matrix(0.217530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217530,0.000000,0.000000,0.250000,0,0);}
.m1a_c00302{transform:matrix(0.218120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218120,0.000000,0.000000,0.250000,0,0);}
.mbb_c00302{transform:matrix(0.218221,-0.001309,0.001500,0.249996,0,0);-ms-transform:matrix(0.218221,-0.001309,0.001500,0.249996,0,0);-webkit-transform:matrix(0.218221,-0.001309,0.001500,0.249996,0,0);}
.m75_c00302{transform:matrix(0.218491,-0.001966,0.002250,0.249990,0,0);-ms-transform:matrix(0.218491,-0.001966,0.002250,0.249990,0,0);-webkit-transform:matrix(0.218491,-0.001966,0.002250,0.249990,0,0);}
.mb9_c00302{transform:matrix(0.218551,-0.001311,0.001500,0.249996,0,0);-ms-transform:matrix(0.218551,-0.001311,0.001500,0.249996,0,0);-webkit-transform:matrix(0.218551,-0.001311,0.001500,0.249996,0,0);}
.m45_c00302{transform:matrix(0.218890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218890,0.000000,0.000000,0.250000,0,0);}
.m36_c00302{transform:matrix(0.219165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219165,0.000000,0.000000,0.250000,0,0);}
.m88_c00302{transform:matrix(0.219206,-0.001973,0.002250,0.249990,0,0);-ms-transform:matrix(0.219206,-0.001973,0.002250,0.249990,0,0);-webkit-transform:matrix(0.219206,-0.001973,0.002250,0.249990,0,0);}
.m17_c00302{transform:matrix(0.219255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219255,0.000000,0.000000,0.250000,0,0);}
.mba_c00302{transform:matrix(0.219301,-0.001316,0.001500,0.249996,0,0);-ms-transform:matrix(0.219301,-0.001316,0.001500,0.249996,0,0);-webkit-transform:matrix(0.219301,-0.001316,0.001500,0.249996,0,0);}
.m73_c00302{transform:matrix(0.220001,-0.001980,0.002250,0.249990,0,0);-ms-transform:matrix(0.220001,-0.001980,0.002250,0.249990,0,0);-webkit-transform:matrix(0.220001,-0.001980,0.002250,0.249990,0,0);}
.mbf_c00302{transform:matrix(0.220006,-0.001320,0.001500,0.249996,0,0);-ms-transform:matrix(0.220006,-0.001320,0.001500,0.249996,0,0);-webkit-transform:matrix(0.220006,-0.001320,0.001500,0.249996,0,0);}
.m34_c00302{transform:matrix(0.220020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220020,0.000000,0.000000,0.250000,0,0);}
.mc2_c00302{transform:matrix(0.220641,-0.001324,0.001500,0.249996,0,0);-ms-transform:matrix(0.220641,-0.001324,0.001500,0.249996,0,0);-webkit-transform:matrix(0.220641,-0.001324,0.001500,0.249996,0,0);}
.m35_c00302{transform:matrix(0.220820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220820,0.000000,0.000000,0.250000,0,0);}
.m33_c00302{transform:matrix(0.221495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221495,0.000000,0.000000,0.250000,0,0);}
.m1c_c00302{transform:matrix(0.221790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221790,0.000000,0.000000,0.250000,0,0);}
.m50_c00302{transform:matrix(0.222665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222665,0.000000,0.000000,0.250000,0,0);}
.m7a_c00302{transform:matrix(0.222871,-0.002006,0.002250,0.249990,0,0);-ms-transform:matrix(0.222871,-0.002006,0.002250,0.249990,0,0);-webkit-transform:matrix(0.222871,-0.002006,0.002250,0.249990,0,0);}
.m8e_c00302{transform:matrix(0.223476,-0.002011,0.002250,0.249990,0,0);-ms-transform:matrix(0.223476,-0.002011,0.002250,0.249990,0,0);-webkit-transform:matrix(0.223476,-0.002011,0.002250,0.249990,0,0);}
.m18_c00302{transform:matrix(0.223480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223480,0.000000,0.000000,0.250000,0,0);}
.m77_c00302{transform:matrix(0.223711,-0.002013,0.002250,0.249990,0,0);-ms-transform:matrix(0.223711,-0.002013,0.002250,0.249990,0,0);-webkit-transform:matrix(0.223711,-0.002013,0.002250,0.249990,0,0);}
.m2c_c00302{transform:matrix(0.224540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224540,0.000000,0.000000,0.250000,0,0);}
.m76_c00302{transform:matrix(0.225046,-0.002025,0.002250,0.249990,0,0);-ms-transform:matrix(0.225046,-0.002025,0.002250,0.249990,0,0);-webkit-transform:matrix(0.225046,-0.002025,0.002250,0.249990,0,0);}
.m7c_c00302{transform:matrix(0.225061,-0.002026,0.002250,0.249990,0,0);-ms-transform:matrix(0.225061,-0.002026,0.002250,0.249990,0,0);-webkit-transform:matrix(0.225061,-0.002026,0.002250,0.249990,0,0);}
.m39_c00302{transform:matrix(0.225315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225315,0.000000,0.000000,0.250000,0,0);}
.m2e_c00302{transform:matrix(0.226275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226275,0.000000,0.000000,0.250000,0,0);}
.m1b_c00302{transform:matrix(0.226475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226475,0.000000,0.000000,0.250000,0,0);}
.m4e_c00302{transform:matrix(0.227015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227015,0.000000,0.000000,0.250000,0,0);}
.m71_c00302{transform:matrix(0.227901,-0.002051,0.002250,0.249990,0,0);-ms-transform:matrix(0.227901,-0.002051,0.002250,0.249990,0,0);-webkit-transform:matrix(0.227901,-0.002051,0.002250,0.249990,0,0);}
.m13_c00302{transform:matrix(0.228635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228635,0.000000,0.000000,0.250000,0,0);}
.m9e_c00302{transform:matrix(0.229198,-0.001834,0.002000,0.249992,0,0);-ms-transform:matrix(0.229198,-0.001834,0.002000,0.249992,0,0);-webkit-transform:matrix(0.229198,-0.001834,0.002000,0.249992,0,0);}
.m14_c00302{transform:matrix(0.229290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229290,0.000000,0.000000,0.250000,0,0);}
.ma0_c00302{transform:matrix(0.229768,-0.001838,0.002000,0.249992,0,0);-ms-transform:matrix(0.229768,-0.001838,0.002000,0.249992,0,0);-webkit-transform:matrix(0.229768,-0.001838,0.002000,0.249992,0,0);}
.m54_c00302{transform:matrix(0.230036,-0.002070,0.002250,0.249990,0,0);-ms-transform:matrix(0.230036,-0.002070,0.002250,0.249990,0,0);-webkit-transform:matrix(0.230036,-0.002070,0.002250,0.249990,0,0);}
.m41_c00302{transform:matrix(0.230045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230045,0.000000,0.000000,0.250000,0,0);}
.m8_c00302{transform:matrix(0.231190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231190,0.000000,0.000000,0.250000,0,0);}
.m3_c00302{transform:matrix(0.231220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231220,0.000000,0.000000,0.250000,0,0);}
.m30_c00302{transform:matrix(0.231615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231615,0.000000,0.000000,0.250000,0,0);}
.m53_c00302{transform:matrix(0.231691,-0.002085,0.002250,0.249990,0,0);-ms-transform:matrix(0.231691,-0.002085,0.002250,0.249990,0,0);-webkit-transform:matrix(0.231691,-0.002085,0.002250,0.249990,0,0);}
.ma2_c00302{transform:matrix(0.232463,-0.001860,0.002000,0.249992,0,0);-ms-transform:matrix(0.232463,-0.001860,0.002000,0.249992,0,0);-webkit-transform:matrix(0.232463,-0.001860,0.002000,0.249992,0,0);}
.ma1_c00302{transform:matrix(0.232513,-0.001860,0.002000,0.249992,0,0);-ms-transform:matrix(0.232513,-0.001860,0.002000,0.249992,0,0);-webkit-transform:matrix(0.232513,-0.001860,0.002000,0.249992,0,0);}
.m38_c00302{transform:matrix(0.232995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232995,0.000000,0.000000,0.250000,0,0);}
.m44_c00302{transform:matrix(0.233065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233065,0.000000,0.000000,0.250000,0,0);}
.mc1_c00302{transform:matrix(0.233081,-0.001398,0.001500,0.249996,0,0);-ms-transform:matrix(0.233081,-0.001398,0.001500,0.249996,0,0);-webkit-transform:matrix(0.233081,-0.001398,0.001500,0.249996,0,0);}
.m19_c00302{transform:matrix(0.233360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233360,0.000000,0.000000,0.250000,0,0);}
.m79_c00302{transform:matrix(0.233481,-0.002101,0.002250,0.249990,0,0);-ms-transform:matrix(0.233481,-0.002101,0.002250,0.249990,0,0);-webkit-transform:matrix(0.233481,-0.002101,0.002250,0.249990,0,0);}
.md2_c00302{transform:matrix(0.233906,-0.001403,0.001500,0.249996,0,0);-ms-transform:matrix(0.233906,-0.001403,0.001500,0.249996,0,0);-webkit-transform:matrix(0.233906,-0.001403,0.001500,0.249996,0,0);}
.m70_c00302{transform:matrix(0.234366,-0.002109,0.002250,0.249990,0,0);-ms-transform:matrix(0.234366,-0.002109,0.002250,0.249990,0,0);-webkit-transform:matrix(0.234366,-0.002109,0.002250,0.249990,0,0);}
.mc_c00302{transform:matrix(0.235005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235005,0.000000,0.000000,0.250000,0,0);}
.m9c_c00302{transform:matrix(0.235122,-0.001881,0.002000,0.249992,0,0);-ms-transform:matrix(0.235122,-0.001881,0.002000,0.249992,0,0);-webkit-transform:matrix(0.235122,-0.001881,0.002000,0.249992,0,0);}
.m1d_c00302{transform:matrix(0.235235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235235,0.000000,0.000000,0.250000,0,0);}
.mbc_c00302{transform:matrix(0.235431,-0.001413,0.001500,0.249996,0,0);-ms-transform:matrix(0.235431,-0.001413,0.001500,0.249996,0,0);-webkit-transform:matrix(0.235431,-0.001413,0.001500,0.249996,0,0);}
.m3c_c00302{transform:matrix(0.235435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235435,0.000000,0.000000,0.250000,0,0);}
.m7b_c00302{transform:matrix(0.235520,-0.002120,0.002250,0.249990,0,0);-ms-transform:matrix(0.235520,-0.002120,0.002250,0.249990,0,0);-webkit-transform:matrix(0.235520,-0.002120,0.002250,0.249990,0,0);}
.mbe_c00302{transform:matrix(0.235876,-0.001415,0.001500,0.249996,0,0);-ms-transform:matrix(0.235876,-0.001415,0.001500,0.249996,0,0);-webkit-transform:matrix(0.235876,-0.001415,0.001500,0.249996,0,0);}
.mc3_c00302{transform:matrix(0.236211,-0.001417,0.001500,0.249996,0,0);-ms-transform:matrix(0.236211,-0.001417,0.001500,0.249996,0,0);-webkit-transform:matrix(0.236211,-0.001417,0.001500,0.249996,0,0);}
.ma_c00302{transform:matrix(0.236740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236740,0.000000,0.000000,0.250000,0,0);}
.m72_c00302{transform:matrix(0.237590,-0.002138,0.002250,0.249990,0,0);-ms-transform:matrix(0.237590,-0.002138,0.002250,0.249990,0,0);-webkit-transform:matrix(0.237590,-0.002138,0.002250,0.249990,0,0);}
.m84_c00302{transform:matrix(0.238185,-0.002144,0.002250,0.249990,0,0);-ms-transform:matrix(0.238185,-0.002144,0.002250,0.249990,0,0);-webkit-transform:matrix(0.238185,-0.002144,0.002250,0.249990,0,0);}
.m8b_c00302{transform:matrix(0.238735,-0.002149,0.002250,0.249990,0,0);-ms-transform:matrix(0.238735,-0.002149,0.002250,0.249990,0,0);-webkit-transform:matrix(0.238735,-0.002149,0.002250,0.249990,0,0);}
.m81_c00302{transform:matrix(0.238755,-0.002149,0.002250,0.249990,0,0);-ms-transform:matrix(0.238755,-0.002149,0.002250,0.249990,0,0);-webkit-transform:matrix(0.238755,-0.002149,0.002250,0.249990,0,0);}
.m9a_c00302{transform:matrix(0.239170,-0.002153,0.002250,0.249990,0,0);-ms-transform:matrix(0.239170,-0.002153,0.002250,0.249990,0,0);-webkit-transform:matrix(0.239170,-0.002153,0.002250,0.249990,0,0);}
.m59_c00302{transform:matrix(0.240220,-0.002162,0.002250,0.249990,0,0);-ms-transform:matrix(0.240220,-0.002162,0.002250,0.249990,0,0);-webkit-transform:matrix(0.240220,-0.002162,0.002250,0.249990,0,0);}
.m11_c00302{transform:matrix(0.240330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240330,0.000000,0.000000,0.250000,0,0);}
.m8a_c00302{transform:matrix(0.240965,-0.002169,0.002250,0.249990,0,0);-ms-transform:matrix(0.240965,-0.002169,0.002250,0.249990,0,0);-webkit-transform:matrix(0.240965,-0.002169,0.002250,0.249990,0,0);}
.m5a_c00302{transform:matrix(0.241250,-0.002171,0.002250,0.249990,0,0);-ms-transform:matrix(0.241250,-0.002171,0.002250,0.249990,0,0);-webkit-transform:matrix(0.241250,-0.002171,0.002250,0.249990,0,0);}
.m37_c00302{transform:matrix(0.242260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242260,0.000000,0.000000,0.250000,0,0);}
.mc0_c00302{transform:matrix(0.242436,-0.001455,0.001500,0.249996,0,0);-ms-transform:matrix(0.242436,-0.001455,0.001500,0.249996,0,0);-webkit-transform:matrix(0.242436,-0.001455,0.001500,0.249996,0,0);}
.me_c00302{transform:matrix(0.243120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243120,0.000000,0.000000,0.250000,0,0);}
.m8d_c00302{transform:matrix(0.243265,-0.002189,0.002250,0.249990,0,0);-ms-transform:matrix(0.243265,-0.002189,0.002250,0.249990,0,0);-webkit-transform:matrix(0.243265,-0.002189,0.002250,0.249990,0,0);}
.m43_c00302{transform:matrix(0.243605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243605,0.000000,0.000000,0.250000,0,0);}
.m16_c00302{transform:matrix(0.244870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244870,0.000000,0.000000,0.250000,0,0);}
.m55_c00302{transform:matrix(0.244920,-0.002204,0.002250,0.249990,0,0);-ms-transform:matrix(0.244920,-0.002204,0.002250,0.249990,0,0);-webkit-transform:matrix(0.244920,-0.002204,0.002250,0.249990,0,0);}
.m87_c00302{transform:matrix(0.245090,-0.002206,0.002250,0.249990,0,0);-ms-transform:matrix(0.245090,-0.002206,0.002250,0.249990,0,0);-webkit-transform:matrix(0.245090,-0.002206,0.002250,0.249990,0,0);}
.m7d_c00302{transform:matrix(0.246430,-0.002218,0.002250,0.249990,0,0);-ms-transform:matrix(0.246430,-0.002218,0.002250,0.249990,0,0);-webkit-transform:matrix(0.246430,-0.002218,0.002250,0.249990,0,0);}
.m9b_c00302{transform:matrix(0.248502,-0.001988,0.002000,0.249992,0,0);-ms-transform:matrix(0.248502,-0.001988,0.002000,0.249992,0,0);-webkit-transform:matrix(0.248502,-0.001988,0.002000,0.249992,0,0);}
.m3b_c00302{transform:matrix(0.252105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252105,0.000000,0.000000,0.250000,0,0);}
.m5c_c00302{transform:matrix(0.252150,-0.002269,0.002250,0.249990,0,0);-ms-transform:matrix(0.252150,-0.002269,0.002250,0.249990,0,0);-webkit-transform:matrix(0.252150,-0.002269,0.002250,0.249990,0,0);}
.m9d_c00302{transform:matrix(0.252212,-0.002018,0.002000,0.249992,0,0);-ms-transform:matrix(0.252212,-0.002018,0.002000,0.249992,0,0);-webkit-transform:matrix(0.252212,-0.002018,0.002000,0.249992,0,0);}
.m3d_c00302{transform:matrix(0.254330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254330,0.000000,0.000000,0.250000,0,0);}
.m51_c00302{transform:matrix(0.254955,-0.002295,0.002250,0.249990,0,0);-ms-transform:matrix(0.254955,-0.002295,0.002250,0.249990,0,0);-webkit-transform:matrix(0.254955,-0.002295,0.002250,0.249990,0,0);}
.m80_c00302{transform:matrix(0.255225,-0.002297,0.002250,0.249990,0,0);-ms-transform:matrix(0.255225,-0.002297,0.002250,0.249990,0,0);-webkit-transform:matrix(0.255225,-0.002297,0.002250,0.249990,0,0);}
.m40_c00302{transform:matrix(0.255390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255390,0.000000,0.000000,0.250000,0,0);}
.m7e_c00302{transform:matrix(0.255425,-0.002299,0.002250,0.249990,0,0);-ms-transform:matrix(0.255425,-0.002299,0.002250,0.249990,0,0);-webkit-transform:matrix(0.255425,-0.002299,0.002250,0.249990,0,0);}
.m7f_c00302{transform:matrix(0.256155,-0.002305,0.002250,0.249990,0,0);-ms-transform:matrix(0.256155,-0.002305,0.002250,0.249990,0,0);-webkit-transform:matrix(0.256155,-0.002305,0.002250,0.249990,0,0);}
.m58_c00302{transform:matrix(0.257865,-0.002321,0.002250,0.249990,0,0);-ms-transform:matrix(0.257865,-0.002321,0.002250,0.249990,0,0);-webkit-transform:matrix(0.257865,-0.002321,0.002250,0.249990,0,0);}
.m83_c00302{transform:matrix(0.259379,-0.002334,0.002250,0.249990,0,0);-ms-transform:matrix(0.259379,-0.002334,0.002250,0.249990,0,0);-webkit-transform:matrix(0.259379,-0.002334,0.002250,0.249990,0,0);}
.m9f_c00302{transform:matrix(0.262027,-0.002096,0.002000,0.249992,0,0);-ms-transform:matrix(0.262027,-0.002096,0.002000,0.249992,0,0);-webkit-transform:matrix(0.262027,-0.002096,0.002000,0.249992,0,0);}
.m47_c00302{transform:matrix(0.266100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266100,0.000000,0.000000,0.250000,0,0);}
.m85_c00302{transform:matrix(0.268434,-0.002416,0.002250,0.249990,0,0);-ms-transform:matrix(0.268434,-0.002416,0.002250,0.249990,0,0);-webkit-transform:matrix(0.268434,-0.002416,0.002250,0.249990,0,0);}
.mc4_c00302{transform:matrix(0.273760,-0.001643,0.001500,0.249996,0,0);-ms-transform:matrix(0.273760,-0.001643,0.001500,0.249996,0,0);-webkit-transform:matrix(0.273760,-0.001643,0.001500,0.249996,0,0);}
.m1_c00302{transform:matrix(0.274240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274240,0.000000,0.000000,0.250000,0,0);}
.m2_c00302{transform:matrix(0.308870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308870,0.000000,0.000000,0.250000,0,0);}
.md1_c00302{transform:matrix(0.319344,-0.001916,0.001500,0.249996,0,0);-ms-transform:matrix(0.319344,-0.001916,0.001500,0.249996,0,0);-webkit-transform:matrix(0.319344,-0.001916,0.001500,0.249996,0,0);}
.m48_c00302{transform:matrix(0.319860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319860,0.000000,0.000000,0.250000,0,0);}
.m6_c00302{transform:matrix(0.391065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391065,0.000000,0.000000,0.250000,0,0);}
.m0_c00302{transform:matrix(0.503085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.503085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.503085,0.000000,0.000000,0.250000,0,0);}
.m5_c00302{transform:matrix(1.045115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.045115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.045115,0.000000,0.000000,0.250000,0,0);}
.v0_c00302{vertical-align:0.000000px;}
.ls0_c00302{letter-spacing:0.000000px;}
.sc__c00302{text-shadow:none;}
.sc0_c00302{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__c00302{-webkit-text-stroke:0px transparent;}
.sc0_c00302{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00302{word-spacing:0.000000px;}
._0_c00302{width:16.507668px;}
.fc0_c00302{color:transparent;}
.fs1_c00302{font-size:72.000000px;}
.fs4_c00302{font-size:78.000000px;}
.fs9_c00302{font-size:78.002496px;}
.fs5_c00302{font-size:78.003159px;}
.fs2_c00302{font-size:84.000000px;}
.fsc_c00302{font-size:84.001512px;}
.fs7_c00302{font-size:84.003402px;}
.fs0_c00302{font-size:90.000000px;}
.fsa_c00302{font-size:96.001728px;}
.fs6_c00302{font-size:96.003888px;}
.fs3_c00302{font-size:102.000000px;}
.fsb_c00302{font-size:102.001836px;}
.fs8_c00302{font-size:108.004374px;}
.y0_c00302{bottom:0.000000px;}
.yd4_c00302{bottom:425.095299px;}
.yc7_c00302{bottom:456.298875px;}
.yc8_c00302{bottom:457.394448px;}
.yc9_c00302{bottom:457.757268px;}
.yca_c00302{bottom:458.104290px;}
.ycb_c00302{bottom:459.078060px;}
.ycc_c00302{bottom:459.565938px;}
.ycd_c00302{bottom:460.058394px;}
.yce_c00302{bottom:461.017902px;}
.ycf_c00302{bottom:461.374446px;}
.yd0_c00302{bottom:461.743434px;}
.yd1_c00302{bottom:462.693798px;}
.yd2_c00302{bottom:463.079844px;}
.yd3_c00302{bottom:463.555026px;}
.ybb_c00302{bottom:488.159583px;}
.ybc_c00302{bottom:488.507421px;}
.ybd_c00302{bottom:488.783799px;}
.ybe_c00302{bottom:489.209286px;}
.ybf_c00302{bottom:489.396852px;}
.yc0_c00302{bottom:489.647853px;}
.yc1_c00302{bottom:490.260933px;}
.yc2_c00302{bottom:490.623138px;}
.yc3_c00302{bottom:491.498256px;}
.yc4_c00302{bottom:492.211284px;}
.yc5_c00302{bottom:492.735543px;}
.yc6_c00302{bottom:493.537545px;}
.yb1_c00302{bottom:520.019781px;}
.yb2_c00302{bottom:520.935999px;}
.yb3_c00302{bottom:522.084495px;}
.yb4_c00302{bottom:522.539307px;}
.yb5_c00302{bottom:522.941457px;}
.yb6_c00302{bottom:523.087089px;}
.yb7_c00302{bottom:523.324233px;}
.yb8_c00302{bottom:524.088375px;}
.yb9_c00302{bottom:524.549430px;}
.yba_c00302{bottom:524.778513px;}
.ya5_c00302{bottom:552.420000px;}
.ya6_c00302{bottom:552.616047px;}
.ya7_c00302{bottom:553.001724px;}
.ya8_c00302{bottom:553.273758px;}
.ya9_c00302{bottom:553.724136px;}
.yaa_c00302{bottom:553.933143px;}
.yab_c00302{bottom:554.449896px;}
.yac_c00302{bottom:554.652315px;}
.yad_c00302{bottom:554.921226px;}
.yae_c00302{bottom:555.120567px;}
.yaf_c00302{bottom:555.525612px;}
.yb0_c00302{bottom:555.647112px;}
.y9d_c00302{bottom:582.931500px;}
.y9e_c00302{bottom:583.633428px;}
.y9f_c00302{bottom:584.063412px;}
.ya0_c00302{bottom:584.771832px;}
.ya1_c00302{bottom:585.035424px;}
.ya2_c00302{bottom:586.000908px;}
.ya3_c00302{bottom:586.272972px;}
.ya4_c00302{bottom:586.713768px;}
.y91_c00302{bottom:614.244846px;}
.y92_c00302{bottom:614.780296px;}
.y93_c00302{bottom:615.567990px;}
.y94_c00302{bottom:615.921766px;}
.y95_c00302{bottom:616.274302px;}
.y96_c00302{bottom:616.540246px;}
.y97_c00302{bottom:617.062077px;}
.y98_c00302{bottom:617.327994px;}
.y99_c00302{bottom:617.688872px;}
.y9a_c00302{bottom:618.292058px;}
.y9b_c00302{bottom:618.476175px;}
.y9c_c00302{bottom:619.193394px;}
.y88_c00302{bottom:645.027071px;}
.y89_c00302{bottom:645.464528px;}
.y8a_c00302{bottom:646.901004px;}
.y8b_c00302{bottom:647.347156px;}
.y8c_c00302{bottom:647.676819px;}
.y8d_c00302{bottom:648.867016px;}
.y8e_c00302{bottom:649.976409px;}
.y8f_c00302{bottom:650.306315px;}
.y90_c00302{bottom:651.610451px;}
.y7d_c00302{bottom:677.429059px;}
.y7e_c00302{bottom:677.690278px;}
.y7f_c00302{bottom:677.964402px;}
.y80_c00302{bottom:678.570732px;}
.y81_c00302{bottom:679.290016px;}
.y82_c00302{bottom:680.061621px;}
.y83_c00302{bottom:680.677644px;}
.y84_c00302{bottom:680.951700px;}
.y85_c00302{bottom:681.209478px;}
.y86_c00302{bottom:682.084115px;}
.y87_c00302{bottom:682.524335px;}
.y71_c00302{bottom:709.560252px;}
.y72_c00302{bottom:710.260491px;}
.y73_c00302{bottom:710.869332px;}
.y74_c00302{bottom:711.670106px;}
.y75_c00302{bottom:712.022858px;}
.y76_c00302{bottom:712.281350px;}
.y77_c00302{bottom:712.626947px;}
.y78_c00302{bottom:712.982667px;}
.y79_c00302{bottom:713.335243px;}
.y7a_c00302{bottom:713.598947px;}
.y7b_c00302{bottom:714.215037px;}
.y7c_c00302{bottom:714.844086px;}
.y69_c00302{bottom:741.689865px;}
.y6a_c00302{bottom:742.400943px;}
.y6b_c00302{bottom:743.006694px;}
.y6c_c00302{bottom:744.244166px;}
.y6d_c00302{bottom:744.778537px;}
.y6e_c00302{bottom:745.469205px;}
.y6f_c00302{bottom:746.432715px;}
.y70_c00302{bottom:746.607234px;}
.y5d_c00302{bottom:773.551500px;}
.y5e_c00302{bottom:773.943351px;}
.y5f_c00302{bottom:774.635591px;}
.y60_c00302{bottom:775.240728px;}
.y61_c00302{bottom:776.324198px;}
.y62_c00302{bottom:776.713294px;}
.y63_c00302{bottom:777.009552px;}
.y64_c00302{bottom:777.401052px;}
.y65_c00302{bottom:777.996362px;}
.y66_c00302{bottom:778.302636px;}
.y67_c00302{bottom:779.077793px;}
.y68_c00302{bottom:779.573269px;}
.y51_c00302{bottom:805.411500px;}
.y52_c00302{bottom:806.400321px;}
.y53_c00302{bottom:806.694580px;}
.y54_c00302{bottom:806.993268px;}
.y55_c00302{bottom:807.387157px;}
.y56_c00302{bottom:808.079437px;}
.y57_c00302{bottom:808.281397px;}
.y58_c00302{bottom:808.565896px;}
.y59_c00302{bottom:809.855929px;}
.y5a_c00302{bottom:810.254692px;}
.y5b_c00302{bottom:810.750412px;}
.y5c_c00302{bottom:811.044496px;}
.y45_c00302{bottom:836.463000px;}
.y46_c00302{bottom:837.114000px;}
.y47_c00302{bottom:837.571500px;}
.y48_c00302{bottom:838.878000px;}
.y49_c00302{bottom:839.095500px;}
.y4a_c00302{bottom:839.430000px;}
.y4b_c00302{bottom:839.976000px;}
.y4c_c00302{bottom:840.297000px;}
.y4d_c00302{bottom:840.745500px;}
.y4e_c00302{bottom:841.077000px;}
.y4f_c00302{bottom:842.494500px;}
.y50_c00302{bottom:842.721000px;}
.y37_c00302{bottom:868.323000px;}
.y38_c00302{bottom:868.671000px;}
.y39_c00302{bottom:868.941000px;}
.y3a_c00302{bottom:869.551500px;}
.y3b_c00302{bottom:869.733000px;}
.y3c_c00302{bottom:870.337500px;}
.y3d_c00302{bottom:870.517500px;}
.y3e_c00302{bottom:871.140000px;}
.y3f_c00302{bottom:871.401000px;}
.y40_c00302{bottom:871.671000px;}
.y41_c00302{bottom:872.539500px;}
.y42_c00302{bottom:872.893500px;}
.y43_c00302{bottom:873.150000px;}
.y44_c00302{bottom:873.672000px;}
.y2a_c00302{bottom:899.374500px;}
.y2b_c00302{bottom:899.814000px;}
.y2c_c00302{bottom:900.262500px;}
.y2d_c00302{bottom:901.144500px;}
.y2e_c00302{bottom:901.479000px;}
.y2f_c00302{bottom:902.226000px;}
.y30_c00302{bottom:902.677500px;}
.y31_c00302{bottom:903.012000px;}
.y32_c00302{bottom:903.670500px;}
.y33_c00302{bottom:904.203000px;}
.y34_c00302{bottom:904.557000px;}
.y35_c00302{bottom:905.410500px;}
.y36_c00302{bottom:905.970000px;}
.y1c_c00302{bottom:930.693000px;}
.y1d_c00302{bottom:930.982500px;}
.y1e_c00302{bottom:931.290000px;}
.y1f_c00302{bottom:931.572000px;}
.y20_c00302{bottom:931.878000px;}
.y21_c00302{bottom:932.461500px;}
.y22_c00302{bottom:932.778000px;}
.y23_c00302{bottom:933.259500px;}
.y24_c00302{bottom:933.750000px;}
.y25_c00302{bottom:934.051500px;}
.y26_c00302{bottom:935.043000px;}
.y27_c00302{bottom:935.820000px;}
.y28_c00302{bottom:936.136500px;}
.y29_c00302{bottom:936.931500px;}
.y11_c00302{bottom:963.633000px;}
.y12_c00302{bottom:964.161000px;}
.y13_c00302{bottom:964.555500px;}
.y14_c00302{bottom:964.750500px;}
.y15_c00302{bottom:965.544000px;}
.y16_c00302{bottom:965.871000px;}
.y17_c00302{bottom:966.001500px;}
.y18_c00302{bottom:966.397500px;}
.y19_c00302{bottom:966.598500px;}
.y1a_c00302{bottom:967.129500px;}
.y1b_c00302{bottom:967.395000px;}
.y4_c00302{bottom:994.681500px;}
.y5_c00302{bottom:994.864500px;}
.y6_c00302{bottom:995.644500px;}
.y7_c00302{bottom:995.946000px;}
.y8_c00302{bottom:996.850500px;}
.y9_c00302{bottom:997.030500px;}
.ya_c00302{bottom:997.735500px;}
.yb_c00302{bottom:997.983000px;}
.yc_c00302{bottom:998.916000px;}
.yd_c00302{bottom:999.213000px;}
.ye_c00302{bottom:999.507000px;}
.yf_c00302{bottom:1000.494000px;}
.y10_c00302{bottom:1000.803000px;}
.y3_c00302{bottom:1042.794000px;}
.y2_c00302{bottom:1061.400000px;}
.y1_c00302{bottom:1117.392000px;}
.h3_c00302{height:72.000000px;}
.h6_c00302{height:78.000000px;}
.hb_c00302{height:78.002496px;}
.h7_c00302{height:78.003159px;}
.h4_c00302{height:84.000000px;}
.he_c00302{height:84.001512px;}
.h9_c00302{height:84.003402px;}
.h2_c00302{height:90.000000px;}
.hc_c00302{height:96.001728px;}
.h8_c00302{height:96.003888px;}
.h5_c00302{height:102.000000px;}
.hd_c00302{height:102.001836px;}
.ha_c00302{height:108.004374px;}
.h1_c00302{height:1165.500000px;}
.h0_c00302{height:1165.800000px;}
.w0_c00302{width:915.000000px;}
.x0_c00302{left:0.000000px;}
.x44_c00302{left:148.366500px;}
.x15_c00302{left:157.225500px;}
.x1f_c00302{left:158.322000px;}
.x8_c00302{left:159.426000px;}
.x56_c00302{left:160.516464px;}
.x85_c00302{left:161.582055px;}
.x7d_c00302{left:162.923949px;}
.x9_c00302{left:179.683500px;}
.x20_c00302{left:190.522500px;}
.x5d_c00302{left:192.364350px;}
.x2c_c00302{left:201.567000px;}
.x4b_c00302{left:202.951500px;}
.x64_c00302{left:204.016302px;}
.x86_c00302{left:205.054533px;}
.x21_c00302{left:224.769000px;}
.x5e_c00302{left:226.656161px;}
.x37_c00302{left:235.840500px;}
.x87_c00302{left:239.617119px;}
.x16_c00302{left:245.227500px;}
.x2d_c00302{left:246.399000px;}
.x51_c00302{left:248.527050px;}
.x22_c00302{left:256.096500px;}
.x45_c00302{left:258.235500px;}
.x8f_c00302{left:261.497736px;}
.xa_c00302{left:266.353500px;}
.x40_c00302{left:269.935500px;}
.x6f_c00302{left:271.747500px;}
.x6_c00302{left:278.100000px;}
.x4c_c00302{left:279.867000px;}
.x23_c00302{left:290.136000px;}
.x88_c00302{left:292.780980px;}
.x7e_c00302{left:293.876166px;}
.xb_c00302{left:299.833500px;}
.x5f_c00302{left:302.526849px;}
.x74_c00302{left:305.194500px;}
.x2_c00302{left:311.040000px;}
.x38_c00302{left:312.213000px;}
.x89_c00302{left:316.291701px;}
.x46_c00302{left:324.118500px;}
.x67_c00302{left:325.457685px;}
.x2e_c00302{left:334.648500px;}
.x17_c00302{left:343.264500px;}
.x4d_c00302{left:347.104500px;}
.x24_c00302{left:354.924000px;}
.x70_c00302{left:359.488500px;}
.x2f_c00302{left:368.170500px;}
.x68_c00302{left:369.766590px;}
.x25_c00302{left:390.025500px;}
.x60_c00302{left:392.448159px;}
.x1_c00302{left:397.980000px;}
.xc_c00302{left:400.279500px;}
.x3_c00302{left:409.320000px;}
.x39_c00302{left:410.488500px;}
.x69_c00302{left:413.770982px;}
.x75_c00302{left:414.813000px;}
.xd_c00302{left:420.265500px;}
.x41_c00302{left:422.397000px;}
.x57_c00302{left:424.280340px;}
.x3a_c00302{left:432.937500px;}
.x26_c00302{left:443.472000px;}
.x47_c00302{left:444.804000px;}
.x6a_c00302{left:446.987279px;}
.x42_c00302{left:455.911500px;}
.x7f_c00302{left:458.041185px;}
.x48_c00302{left:467.244000px;}
.x58_c00302{left:468.308731px;}
.x8a_c00302{left:469.670865px;}
.x18_c00302{left:475.563000px;}
.x52_c00302{left:478.831615px;}
.x30_c00302{left:488.035500px;}
.x76_c00302{left:489.876000px;}
.xe_c00302{left:498.561000px;}
.x59_c00302{left:500.697028px;}
.x71_c00302{left:501.789000px;}
.x90_c00302{left:503.731473px;}
.x3b_c00302{left:510.666000px;}
.x6b_c00302{left:512.302373px;}
.x31_c00302{left:521.523000px;}
.x80_c00302{left:523.092798px;}
.x77_c00302{left:524.710500px;}
.xf_c00302{left:526.108500px;}
.x19_c00302{left:530.082000px;}
.x27_c00302{left:531.511500px;}
.x4_c00302{left:532.710000px;}
.x72_c00302{left:534.738000px;}
.x3c_c00302{left:543.355500px;}
.x53_c00302{left:545.540209px;}
.x1a_c00302{left:551.956500px;}
.x61_c00302{left:565.797212px;}
.x7_c00302{left:567.540000px;}
.x5_c00302{left:576.720000px;}
.x8b_c00302{left:579.022551px;}
.x81_c00302{left:580.617456px;}
.x32_c00302{left:587.391000px;}
.x5a_c00302{left:588.455325px;}
.x6c_c00302{left:590.613575px;}
.x62_c00302{left:600.081522px;}
.x82_c00302{left:601.389330px;}
.x78_c00302{left:610.836000px;}
.x1b_c00302{left:617.854500px;}
.x43_c00302{left:620.614500px;}
.x91_c00302{left:623.319882px;}
.x10_c00302{left:629.743500px;}
.x54_c00302{left:631.948492px;}
.x83_c00302{left:635.163123px;}
.x33_c00302{left:640.587000px;}
.x28_c00302{left:641.667000px;}
.x79_c00302{left:644.572500px;}
.x1c_c00302{left:651.337500px;}
.x4e_c00302{left:653.286000px;}
.x65_c00302{left:655.165739px;}
.x92_c00302{left:656.816874px;}
.x11_c00302{left:662.712000px;}
.x5b_c00302{left:665.431513px;}
.x8c_c00302{left:668.109480px;}
.x34_c00302{left:675.964500px;}
.x3d_c00302{left:685.626000px;}
.x4f_c00302{left:687.316500px;}
.x6d_c00302{left:688.925952px;}
.x12_c00302{left:695.391000px;}
.x7a_c00302{left:722.614500px;}
.x29_c00302{left:728.055000px;}
.x3e_c00302{left:729.913500px;}
.x8d_c00302{left:733.735197px;}
.x1d_c00302{left:739.873500px;}
.x49_c00302{left:741.579000px;}
.x93_c00302{left:743.208282px;}
.x73_c00302{left:744.531000px;}
.x55_c00302{left:752.339572px;}
.x35_c00302{left:761.278500px;}
.x2a_c00302{left:763.162500px;}
.x4a_c00302{left:774.255000px;}
.x6e_c00302{left:778.617762px;}
.x1e_c00302{left:784.176000px;}
.x7b_c00302{left:790.122000px;}
.x63_c00302{left:796.653791px;}
.x13_c00302{left:804.999000px;}
.x7c_c00302{left:810.372000px;}
.x36_c00302{left:817.155000px;}
.x66_c00302{left:818.557767px;}
.x5c_c00302{left:820.948404px;}
.x3f_c00302{left:827.403000px;}
.x50_c00302{left:828.498000px;}
.x8e_c00302{left:833.900991px;}
.x14_c00302{left:839.281500px;}
.x84_c00302{left:842.791872px;}
.x2b_c00302{left:851.440500px;}
@media print{
.v0_c00302{vertical-align:0.000000pt;}
.ls0_c00302{letter-spacing:0.000000pt;}
.ws0_c00302{word-spacing:0.000000pt;}
._0_c00302{width:14.673482pt;}
.fs1_c00302{font-size:64.000000pt;}
.fs4_c00302{font-size:69.333333pt;}
.fs9_c00302{font-size:69.335552pt;}
.fs5_c00302{font-size:69.336141pt;}
.fs2_c00302{font-size:74.666667pt;}
.fsc_c00302{font-size:74.668011pt;}
.fs7_c00302{font-size:74.669691pt;}
.fs0_c00302{font-size:80.000000pt;}
.fsa_c00302{font-size:85.334869pt;}
.fs6_c00302{font-size:85.336789pt;}
.fs3_c00302{font-size:90.666667pt;}
.fsb_c00302{font-size:90.668299pt;}
.fs8_c00302{font-size:96.003888pt;}
.y0_c00302{bottom:0.000000pt;}
.yd4_c00302{bottom:377.862488pt;}
.yc7_c00302{bottom:405.599000pt;}
.yc8_c00302{bottom:406.572843pt;}
.yc9_c00302{bottom:406.895349pt;}
.yca_c00302{bottom:407.203813pt;}
.ycb_c00302{bottom:408.069387pt;}
.ycc_c00302{bottom:408.503056pt;}
.ycd_c00302{bottom:408.940795pt;}
.yce_c00302{bottom:409.793691pt;}
.ycf_c00302{bottom:410.110619pt;}
.yd0_c00302{bottom:410.438608pt;}
.yd1_c00302{bottom:411.283376pt;}
.yd2_c00302{bottom:411.626528pt;}
.yd3_c00302{bottom:412.048912pt;}
.ybb_c00302{bottom:433.919629pt;}
.ybc_c00302{bottom:434.228819pt;}
.ybd_c00302{bottom:434.474488pt;}
.ybe_c00302{bottom:434.852699pt;}
.ybf_c00302{bottom:435.019424pt;}
.yc0_c00302{bottom:435.242536pt;}
.yc1_c00302{bottom:435.787496pt;}
.yc2_c00302{bottom:436.109456pt;}
.yc3_c00302{bottom:436.887339pt;}
.yc4_c00302{bottom:437.521141pt;}
.yc5_c00302{bottom:437.987149pt;}
.yc6_c00302{bottom:438.700040pt;}
.yb1_c00302{bottom:462.239805pt;}
.yb2_c00302{bottom:463.054221pt;}
.yb3_c00302{bottom:464.075107pt;}
.yb4_c00302{bottom:464.479384pt;}
.yb5_c00302{bottom:464.836851pt;}
.yb6_c00302{bottom:464.966301pt;}
.yb7_c00302{bottom:465.177096pt;}
.yb8_c00302{bottom:465.856333pt;}
.yb9_c00302{bottom:466.266160pt;}
.yba_c00302{bottom:466.469789pt;}
.ya5_c00302{bottom:491.040000pt;}
.ya6_c00302{bottom:491.214264pt;}
.ya7_c00302{bottom:491.557088pt;}
.ya8_c00302{bottom:491.798896pt;}
.ya9_c00302{bottom:492.199232pt;}
.yaa_c00302{bottom:492.385016pt;}
.yab_c00302{bottom:492.844352pt;}
.yac_c00302{bottom:493.024280pt;}
.yad_c00302{bottom:493.263312pt;}
.yae_c00302{bottom:493.440504pt;}
.yaf_c00302{bottom:493.800544pt;}
.yb0_c00302{bottom:493.908544pt;}
.y9d_c00302{bottom:518.161333pt;}
.y9e_c00302{bottom:518.785269pt;}
.y9f_c00302{bottom:519.167477pt;}
.ya0_c00302{bottom:519.797184pt;}
.ya1_c00302{bottom:520.031488pt;}
.ya2_c00302{bottom:520.889696pt;}
.ya3_c00302{bottom:521.131531pt;}
.ya4_c00302{bottom:521.523349pt;}
.y91_c00302{bottom:545.995419pt;}
.y92_c00302{bottom:546.471375pt;}
.y93_c00302{bottom:547.171547pt;}
.y94_c00302{bottom:547.486015pt;}
.y95_c00302{bottom:547.799380pt;}
.y96_c00302{bottom:548.035775pt;}
.y97_c00302{bottom:548.499624pt;}
.y98_c00302{bottom:548.735995pt;}
.y99_c00302{bottom:549.056775pt;}
.y9a_c00302{bottom:549.592940pt;}
.y9b_c00302{bottom:549.756600pt;}
.y9c_c00302{bottom:550.394128pt;}
.y88_c00302{bottom:573.357396pt;}
.y89_c00302{bottom:573.746247pt;}
.y8a_c00302{bottom:575.023115pt;}
.y8b_c00302{bottom:575.419695pt;}
.y8c_c00302{bottom:575.712728pt;}
.y8d_c00302{bottom:576.770681pt;}
.y8e_c00302{bottom:577.756808pt;}
.y8f_c00302{bottom:578.050057pt;}
.y90_c00302{bottom:579.209289pt;}
.y7d_c00302{bottom:602.159164pt;}
.y7e_c00302{bottom:602.391359pt;}
.y7f_c00302{bottom:602.635024pt;}
.y80_c00302{bottom:603.173984pt;}
.y81_c00302{bottom:603.813348pt;}
.y82_c00302{bottom:604.499219pt;}
.y83_c00302{bottom:605.046795pt;}
.y84_c00302{bottom:605.290400pt;}
.y85_c00302{bottom:605.519536pt;}
.y86_c00302{bottom:606.296991pt;}
.y87_c00302{bottom:606.688297pt;}
.y71_c00302{bottom:630.720224pt;}
.y72_c00302{bottom:631.342659pt;}
.y73_c00302{bottom:631.883851pt;}
.y74_c00302{bottom:632.595649pt;}
.y75_c00302{bottom:632.909207pt;}
.y76_c00302{bottom:633.138977pt;}
.y77_c00302{bottom:633.446175pt;}
.y78_c00302{bottom:633.762371pt;}
.y79_c00302{bottom:634.075772pt;}
.y7a_c00302{bottom:634.310175pt;}
.y7b_c00302{bottom:634.857811pt;}
.y7c_c00302{bottom:635.416965pt;}
.y69_c00302{bottom:659.279880pt;}
.y6a_c00302{bottom:659.911949pt;}
.y6b_c00302{bottom:660.450395pt;}
.y6c_c00302{bottom:661.550369pt;}
.y6d_c00302{bottom:662.025367pt;}
.y6e_c00302{bottom:662.639293pt;}
.y6f_c00302{bottom:663.495747pt;}
.y70_c00302{bottom:663.650875pt;}
.y5d_c00302{bottom:687.601333pt;}
.y5e_c00302{bottom:687.949645pt;}
.y5f_c00302{bottom:688.564969pt;}
.y60_c00302{bottom:689.102869pt;}
.y61_c00302{bottom:690.065953pt;}
.y62_c00302{bottom:690.411817pt;}
.y63_c00302{bottom:690.675157pt;}
.y64_c00302{bottom:691.023157pt;}
.y65_c00302{bottom:691.552321pt;}
.y66_c00302{bottom:691.824565pt;}
.y67_c00302{bottom:692.513593pt;}
.y68_c00302{bottom:692.954017pt;}
.y51_c00302{bottom:715.921333pt;}
.y52_c00302{bottom:716.800285pt;}
.y53_c00302{bottom:717.061849pt;}
.y54_c00302{bottom:717.327349pt;}
.y55_c00302{bottom:717.677473pt;}
.y56_c00302{bottom:718.292833pt;}
.y57_c00302{bottom:718.472353pt;}
.y58_c00302{bottom:718.725241pt;}
.y59_c00302{bottom:719.871937pt;}
.y5a_c00302{bottom:720.226393pt;}
.y5b_c00302{bottom:720.667033pt;}
.y5c_c00302{bottom:720.928441pt;}
.y45_c00302{bottom:743.522667pt;}
.y46_c00302{bottom:744.101333pt;}
.y47_c00302{bottom:744.508000pt;}
.y48_c00302{bottom:745.669333pt;}
.y49_c00302{bottom:745.862667pt;}
.y4a_c00302{bottom:746.160000pt;}
.y4b_c00302{bottom:746.645333pt;}
.y4c_c00302{bottom:746.930667pt;}
.y4d_c00302{bottom:747.329333pt;}
.y4e_c00302{bottom:747.624000pt;}
.y4f_c00302{bottom:748.884000pt;}
.y50_c00302{bottom:749.085333pt;}
.y37_c00302{bottom:771.842667pt;}
.y38_c00302{bottom:772.152000pt;}
.y39_c00302{bottom:772.392000pt;}
.y3a_c00302{bottom:772.934667pt;}
.y3b_c00302{bottom:773.096000pt;}
.y3c_c00302{bottom:773.633333pt;}
.y3d_c00302{bottom:773.793333pt;}
.y3e_c00302{bottom:774.346667pt;}
.y3f_c00302{bottom:774.578667pt;}
.y40_c00302{bottom:774.818667pt;}
.y41_c00302{bottom:775.590667pt;}
.y42_c00302{bottom:775.905333pt;}
.y43_c00302{bottom:776.133333pt;}
.y44_c00302{bottom:776.597333pt;}
.y2a_c00302{bottom:799.444000pt;}
.y2b_c00302{bottom:799.834667pt;}
.y2c_c00302{bottom:800.233333pt;}
.y2d_c00302{bottom:801.017333pt;}
.y2e_c00302{bottom:801.314667pt;}
.y2f_c00302{bottom:801.978667pt;}
.y30_c00302{bottom:802.380000pt;}
.y31_c00302{bottom:802.677333pt;}
.y32_c00302{bottom:803.262667pt;}
.y33_c00302{bottom:803.736000pt;}
.y34_c00302{bottom:804.050667pt;}
.y35_c00302{bottom:804.809333pt;}
.y36_c00302{bottom:805.306667pt;}
.y1c_c00302{bottom:827.282667pt;}
.y1d_c00302{bottom:827.540000pt;}
.y1e_c00302{bottom:827.813333pt;}
.y1f_c00302{bottom:828.064000pt;}
.y20_c00302{bottom:828.336000pt;}
.y21_c00302{bottom:828.854667pt;}
.y22_c00302{bottom:829.136000pt;}
.y23_c00302{bottom:829.564000pt;}
.y24_c00302{bottom:830.000000pt;}
.y25_c00302{bottom:830.268000pt;}
.y26_c00302{bottom:831.149333pt;}
.y27_c00302{bottom:831.840000pt;}
.y28_c00302{bottom:832.121333pt;}
.y29_c00302{bottom:832.828000pt;}
.y11_c00302{bottom:856.562667pt;}
.y12_c00302{bottom:857.032000pt;}
.y13_c00302{bottom:857.382667pt;}
.y14_c00302{bottom:857.556000pt;}
.y15_c00302{bottom:858.261333pt;}
.y16_c00302{bottom:858.552000pt;}
.y17_c00302{bottom:858.668000pt;}
.y18_c00302{bottom:859.020000pt;}
.y19_c00302{bottom:859.198667pt;}
.y1a_c00302{bottom:859.670667pt;}
.y1b_c00302{bottom:859.906667pt;}
.y4_c00302{bottom:884.161333pt;}
.y5_c00302{bottom:884.324000pt;}
.y6_c00302{bottom:885.017333pt;}
.y7_c00302{bottom:885.285333pt;}
.y8_c00302{bottom:886.089333pt;}
.y9_c00302{bottom:886.249333pt;}
.ya_c00302{bottom:886.876000pt;}
.yb_c00302{bottom:887.096000pt;}
.yc_c00302{bottom:887.925333pt;}
.yd_c00302{bottom:888.189333pt;}
.ye_c00302{bottom:888.450667pt;}
.yf_c00302{bottom:889.328000pt;}
.y10_c00302{bottom:889.602667pt;}
.y3_c00302{bottom:926.928000pt;}
.y2_c00302{bottom:943.466667pt;}
.y1_c00302{bottom:993.237333pt;}
.h3_c00302{height:64.000000pt;}
.h6_c00302{height:69.333333pt;}
.hb_c00302{height:69.335552pt;}
.h7_c00302{height:69.336141pt;}
.h4_c00302{height:74.666667pt;}
.he_c00302{height:74.668011pt;}
.h9_c00302{height:74.669691pt;}
.h2_c00302{height:80.000000pt;}
.hc_c00302{height:85.334869pt;}
.h8_c00302{height:85.336789pt;}
.h5_c00302{height:90.666667pt;}
.hd_c00302{height:90.668299pt;}
.ha_c00302{height:96.003888pt;}
.h1_c00302{height:1036.000000pt;}
.h0_c00302{height:1036.266667pt;}
.w0_c00302{width:813.333333pt;}
.x0_c00302{left:0.000000pt;}
.x44_c00302{left:131.881333pt;}
.x15_c00302{left:139.756000pt;}
.x1f_c00302{left:140.730667pt;}
.x8_c00302{left:141.712000pt;}
.x56_c00302{left:142.681301pt;}
.x85_c00302{left:143.628493pt;}
.x7d_c00302{left:144.821288pt;}
.x9_c00302{left:159.718667pt;}
.x20_c00302{left:169.353333pt;}
.x5d_c00302{left:170.990533pt;}
.x2c_c00302{left:179.170667pt;}
.x4b_c00302{left:180.401333pt;}
.x64_c00302{left:181.347824pt;}
.x86_c00302{left:182.270696pt;}
.x21_c00302{left:199.794667pt;}
.x5e_c00302{left:201.472143pt;}
.x37_c00302{left:209.636000pt;}
.x87_c00302{left:212.992995pt;}
.x16_c00302{left:217.980000pt;}
.x2d_c00302{left:219.021333pt;}
.x51_c00302{left:220.912933pt;}
.x22_c00302{left:227.641333pt;}
.x45_c00302{left:229.542667pt;}
.x8f_c00302{left:232.442432pt;}
.xa_c00302{left:236.758667pt;}
.x40_c00302{left:239.942667pt;}
.x6f_c00302{left:241.553333pt;}
.x6_c00302{left:247.200000pt;}
.x4c_c00302{left:248.770667pt;}
.x23_c00302{left:257.898667pt;}
.x88_c00302{left:260.249760pt;}
.x7e_c00302{left:261.223259pt;}
.xb_c00302{left:266.518667pt;}
.x5f_c00302{left:268.912755pt;}
.x74_c00302{left:271.284000pt;}
.x2_c00302{left:276.480000pt;}
.x38_c00302{left:277.522667pt;}
.x89_c00302{left:281.148179pt;}
.x46_c00302{left:288.105333pt;}
.x67_c00302{left:289.295720pt;}
.x2e_c00302{left:297.465333pt;}
.x17_c00302{left:305.124000pt;}
.x4d_c00302{left:308.537333pt;}
.x24_c00302{left:315.488000pt;}
.x70_c00302{left:319.545333pt;}
.x2f_c00302{left:327.262667pt;}
.x68_c00302{left:328.681413pt;}
.x25_c00302{left:346.689333pt;}
.x60_c00302{left:348.842808pt;}
.x1_c00302{left:353.760000pt;}
.xc_c00302{left:355.804000pt;}
.x3_c00302{left:363.840000pt;}
.x39_c00302{left:364.878667pt;}
.x69_c00302{left:367.796428pt;}
.x75_c00302{left:368.722667pt;}
.xd_c00302{left:373.569333pt;}
.x41_c00302{left:375.464000pt;}
.x57_c00302{left:377.138080pt;}
.x3a_c00302{left:384.833333pt;}
.x26_c00302{left:394.197333pt;}
.x47_c00302{left:395.381333pt;}
.x6a_c00302{left:397.322025pt;}
.x42_c00302{left:405.254667pt;}
.x7f_c00302{left:407.147720pt;}
.x48_c00302{left:415.328000pt;}
.x58_c00302{left:416.274428pt;}
.x8a_c00302{left:417.485213pt;}
.x18_c00302{left:422.722667pt;}
.x52_c00302{left:425.628103pt;}
.x30_c00302{left:433.809333pt;}
.x76_c00302{left:435.445333pt;}
.xe_c00302{left:443.165333pt;}
.x59_c00302{left:445.064025pt;}
.x71_c00302{left:446.034667pt;}
.x90_c00302{left:447.761309pt;}
.x3b_c00302{left:453.925333pt;}
.x6b_c00302{left:455.379887pt;}
.x31_c00302{left:463.576000pt;}
.x80_c00302{left:464.971376pt;}
.x77_c00302{left:466.409333pt;}
.xf_c00302{left:467.652000pt;}
.x19_c00302{left:471.184000pt;}
.x27_c00302{left:472.454667pt;}
.x4_c00302{left:473.520000pt;}
.x72_c00302{left:475.322667pt;}
.x3c_c00302{left:482.982667pt;}
.x53_c00302{left:484.924631pt;}
.x1a_c00302{left:490.628000pt;}
.x61_c00302{left:502.930855pt;}
.x7_c00302{left:504.480000pt;}
.x5_c00302{left:512.640000pt;}
.x8b_c00302{left:514.686712pt;}
.x81_c00302{left:516.104405pt;}
.x32_c00302{left:522.125333pt;}
.x5a_c00302{left:523.071400pt;}
.x6c_c00302{left:524.989844pt;}
.x62_c00302{left:533.405797pt;}
.x82_c00302{left:534.568293pt;}
.x78_c00302{left:542.965333pt;}
.x1b_c00302{left:549.204000pt;}
.x43_c00302{left:551.657333pt;}
.x91_c00302{left:554.062117pt;}
.x10_c00302{left:559.772000pt;}
.x54_c00302{left:561.731993pt;}
.x83_c00302{left:564.589443pt;}
.x33_c00302{left:569.410667pt;}
.x28_c00302{left:570.370667pt;}
.x79_c00302{left:572.953333pt;}
.x1c_c00302{left:578.966667pt;}
.x4e_c00302{left:580.698667pt;}
.x65_c00302{left:582.369545pt;}
.x92_c00302{left:583.837221pt;}
.x11_c00302{left:589.077333pt;}
.x5b_c00302{left:591.494679pt;}
.x8c_c00302{left:593.875093pt;}
.x34_c00302{left:600.857333pt;}
.x3d_c00302{left:609.445333pt;}
.x4f_c00302{left:610.948000pt;}
.x6d_c00302{left:612.378624pt;}
.x12_c00302{left:618.125333pt;}
.x7a_c00302{left:642.324000pt;}
.x29_c00302{left:647.160000pt;}
.x3e_c00302{left:648.812000pt;}
.x8d_c00302{left:652.209064pt;}
.x1d_c00302{left:657.665333pt;}
.x49_c00302{left:659.181333pt;}
.x93_c00302{left:660.629584pt;}
.x73_c00302{left:661.805333pt;}
.x55_c00302{left:668.746287pt;}
.x35_c00302{left:676.692000pt;}
.x2a_c00302{left:678.366667pt;}
.x4a_c00302{left:688.226667pt;}
.x6e_c00302{left:692.104677pt;}
.x1e_c00302{left:697.045333pt;}
.x7b_c00302{left:702.330667pt;}
.x63_c00302{left:708.136703pt;}
.x13_c00302{left:715.554667pt;}
.x7c_c00302{left:720.330667pt;}
.x36_c00302{left:726.360000pt;}
.x66_c00302{left:727.606904pt;}
.x5c_c00302{left:729.731915pt;}
.x3f_c00302{left:735.469333pt;}
.x50_c00302{left:736.442667pt;}
.x8e_c00302{left:741.245325pt;}
.x14_c00302{left:746.028000pt;}
.x84_c00302{left:749.148331pt;}
.x2b_c00302{left:756.836000pt;}
}





/* 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_c00303 {
    display:none;
  }
  .loading-indicator_c00303.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00303 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_c00303 { 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_c00303" -> "#page-container .classname_c00303")
 */
.pf_c00303 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00303 { /* 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_c00303.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00303 { /* 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_c00303 { /* 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_c00303 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00303 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00303 {overflow:visible;}
  }
}
.c_c00303 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00303 { /* 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_c00303:after { /* webkit #35443 */
  content: '';
}
.t_c00303:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00303 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 */
}
.__c00303 { /* 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_c00303 { /* info for Javascript */
  display:none;
}
.l_c00303 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00303 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00303 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00303: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_c00303 {
    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_c00303.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00303.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_c00303 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00303{font-family:sans-serif;visibility:hidden;}
.sc__c00303{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00303{-webkit-text-stroke:0px transparent;}
}
.y0_c00303{bottom:0.000000px;}
.h1_c00303{height:1165.500000px;}
.h0_c00303{height:1165.800000px;}
.w0_c00303{width:915.000000px;}
.x0_c00303{left:0.000000px;}
@media print{
.y0_c00303{bottom:0.000000pt;}
.h1_c00303{height:1036.000000pt;}
.h0_c00303{height:1036.266667pt;}
.w0_c00303{width:813.333333pt;}
.x0_c00303{left:0.000000pt;}
}





/* 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_c00304 {
    display:none;
  }
  .loading-indicator_c00304.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00304 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_c00304 { 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_c00304" -> "#page-container .classname_c00304")
 */
.pf_c00304 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00304 { /* 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_c00304.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00304 { /* 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_c00304 { /* 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_c00304 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00304 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00304 {overflow:visible;}
  }
}
.c_c00304 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00304 { /* 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_c00304:after { /* webkit #35443 */
  content: '';
}
.t_c00304:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00304 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 */
}
.__c00304 { /* 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_c00304 { /* info for Javascript */
  display:none;
}
.l_c00304 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00304 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00304 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00304: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_c00304 {
    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_c00304.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00304.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_c00304 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00304{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00304;src:url('chunks/assets/font_fabf4b590f7fb32aea93ffb2.woff2')format("woff");}.ff1_c00304{font-family:ff1_c00304;line-height:1.000000;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;}
.ma2_c00304{transform:matrix(0.143550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143550,0.000000,0.000000,0.250000,0,0);}
.mb0_c00304{transform:matrix(0.156650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156650,0.000000,0.000000,0.250000,0,0);}
.m12a_c00304{transform:matrix(0.161690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161690,0.000000,0.000000,0.250000,0,0);}
.mea_c00304{transform:matrix(0.163710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163710,0.000000,0.000000,0.250000,0,0);}
.me9_c00304{transform:matrix(0.165920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165920,0.000000,0.000000,0.250000,0,0);}
.mec_c00304{transform:matrix(0.165965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165965,0.000000,0.000000,0.250000,0,0);}
.m78_c00304{transform:matrix(0.166240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166240,0.000000,0.000000,0.250000,0,0);}
.mbd_c00304{transform:matrix(0.167060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167060,0.000000,0.000000,0.250000,0,0);}
.m30_c00304{transform:matrix(0.169050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169050,0.000000,0.000000,0.250000,0,0);}
.m4d_c00304{transform:matrix(0.169920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169920,0.000000,0.000000,0.250000,0,0);}
.m7c_c00304{transform:matrix(0.170475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170475,0.000000,0.000000,0.250000,0,0);}
.mbf_c00304{transform:matrix(0.170835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170835,0.000000,0.000000,0.250000,0,0);}
.mc7_c00304{transform:matrix(0.171910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171910,0.000000,0.000000,0.250000,0,0);}
.m94_c00304{transform:matrix(0.175190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175190,0.000000,0.000000,0.250000,0,0);}
.maa_c00304{transform:matrix(0.176290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176290,0.000000,0.000000,0.250000,0,0);}
.m8c_c00304{transform:matrix(0.177930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177930,0.000000,0.000000,0.250000,0,0);}
.mab_c00304{transform:matrix(0.178520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178520,0.000000,0.000000,0.250000,0,0);}
.ma5_c00304{transform:matrix(0.179385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179385,0.000000,0.000000,0.250000,0,0);}
.mef_c00304{transform:matrix(0.180140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180140,0.000000,0.000000,0.250000,0,0);}
.m74_c00304{transform:matrix(0.180200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180200,0.000000,0.000000,0.250000,0,0);}
.m76_c00304{transform:matrix(0.180840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180840,0.000000,0.000000,0.250000,0,0);}
.mc6_c00304{transform:matrix(0.182945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182945,0.000000,0.000000,0.250000,0,0);}
.m13c_c00304{transform:matrix(0.183164,0.001465,-0.002000,0.249992,0,0);-ms-transform:matrix(0.183164,0.001465,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.183164,0.001465,-0.002000,0.249992,0,0);}
.mf0_c00304{transform:matrix(0.184535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184535,0.000000,0.000000,0.250000,0,0);}
.m75_c00304{transform:matrix(0.184540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184540,0.000000,0.000000,0.250000,0,0);}
.mc9_c00304{transform:matrix(0.184575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184575,0.000000,0.000000,0.250000,0,0);}
.mf1_c00304{transform:matrix(0.184815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184815,0.000000,0.000000,0.250000,0,0);}
.med_c00304{transform:matrix(0.185090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185090,0.000000,0.000000,0.250000,0,0);}
.mbb_c00304{transform:matrix(0.185930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185930,0.000000,0.000000,0.250000,0,0);}
.mf3_c00304{transform:matrix(0.186070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186070,0.000000,0.000000,0.250000,0,0);}
.m7d_c00304{transform:matrix(0.186285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186285,0.000000,0.000000,0.250000,0,0);}
.m52_c00304{transform:matrix(0.186955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186955,0.000000,0.000000,0.250000,0,0);}
.m7e_c00304{transform:matrix(0.187225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187225,0.000000,0.000000,0.250000,0,0);}
.m141_c00304{transform:matrix(0.188824,0.001511,-0.002000,0.249992,0,0);-ms-transform:matrix(0.188824,0.001511,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.188824,0.001511,-0.002000,0.249992,0,0);}
.m34_c00304{transform:matrix(0.188985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188985,0.000000,0.000000,0.250000,0,0);}
.m12c_c00304{transform:matrix(0.189305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189305,0.000000,0.000000,0.250000,0,0);}
.m77_c00304{transform:matrix(0.189680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189680,0.000000,0.000000,0.250000,0,0);}
.m81_c00304{transform:matrix(0.189965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189965,0.000000,0.000000,0.250000,0,0);}
.m8d_c00304{transform:matrix(0.190125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190125,0.000000,0.000000,0.250000,0,0);}
.m87_c00304{transform:matrix(0.190640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190640,0.000000,0.000000,0.250000,0,0);}
.mc1_c00304{transform:matrix(0.190880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190880,0.000000,0.000000,0.250000,0,0);}
.m124_c00304{transform:matrix(0.190975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190975,0.000000,0.000000,0.250000,0,0);}
.m12f_c00304{transform:matrix(0.192030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192030,0.000000,0.000000,0.250000,0,0);}
.m80_c00304{transform:matrix(0.192615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192615,0.000000,0.000000,0.250000,0,0);}
.m5f_c00304{transform:matrix(0.193310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193310,0.000000,0.000000,0.250000,0,0);}
.m7b_c00304{transform:matrix(0.193415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193415,0.000000,0.000000,0.250000,0,0);}
.m14f_c00304{transform:matrix(0.193910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193910,0.000000,0.000000,0.250000,0,0);}
.m79_c00304{transform:matrix(0.194190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194190,0.000000,0.000000,0.250000,0,0);}
.mf2_c00304{transform:matrix(0.195005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195005,0.000000,0.000000,0.250000,0,0);}
.mee_c00304{transform:matrix(0.195095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195095,0.000000,0.000000,0.250000,0,0);}
.mc0_c00304{transform:matrix(0.195565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195565,0.000000,0.000000,0.250000,0,0);}
.ma3_c00304{transform:matrix(0.195650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195650,0.000000,0.000000,0.250000,0,0);}
.mbe_c00304{transform:matrix(0.195720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195720,0.000000,0.000000,0.250000,0,0);}
.meb_c00304{transform:matrix(0.195755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195755,0.000000,0.000000,0.250000,0,0);}
.m96_c00304{transform:matrix(0.195815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195815,0.000000,0.000000,0.250000,0,0);}
.mad_c00304{transform:matrix(0.196050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196050,0.000000,0.000000,0.250000,0,0);}
.m3e_c00304{transform:matrix(0.196060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196060,0.000000,0.000000,0.250000,0,0);}
.m8f_c00304{transform:matrix(0.196615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196615,0.000000,0.000000,0.250000,0,0);}
.m12b_c00304{transform:matrix(0.196690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196690,0.000000,0.000000,0.250000,0,0);}
.mc4_c00304{transform:matrix(0.196740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196740,0.000000,0.000000,0.250000,0,0);}
.m156_c00304{transform:matrix(0.197050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197050,0.000000,0.000000,0.250000,0,0);}
.m14c_c00304{transform:matrix(0.197744,0.001582,-0.002000,0.249992,0,0);-ms-transform:matrix(0.197744,0.001582,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.197744,0.001582,-0.002000,0.249992,0,0);}
.m91_c00304{transform:matrix(0.198200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198200,0.000000,0.000000,0.250000,0,0);}
.m134_c00304{transform:matrix(0.198404,0.001587,-0.002000,0.249992,0,0);-ms-transform:matrix(0.198404,0.001587,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.198404,0.001587,-0.002000,0.249992,0,0);}
.m8a_c00304{transform:matrix(0.198450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198450,0.000000,0.000000,0.250000,0,0);}
.mc5_c00304{transform:matrix(0.198460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198460,0.000000,0.000000,0.250000,0,0);}
.m155_c00304{transform:matrix(0.198910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198910,0.000000,0.000000,0.250000,0,0);}
.m157_c00304{transform:matrix(0.199215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199215,0.000000,0.000000,0.250000,0,0);}
.m92_c00304{transform:matrix(0.199415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199415,0.000000,0.000000,0.250000,0,0);}
.m12d_c00304{transform:matrix(0.199480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199480,0.000000,0.000000,0.250000,0,0);}
.m83_c00304{transform:matrix(0.200015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200015,0.000000,0.000000,0.250000,0,0);}
.m93_c00304{transform:matrix(0.200120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200120,0.000000,0.000000,0.250000,0,0);}
.m98_c00304{transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);}
.ma8_c00304{transform:matrix(0.200515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200515,0.000000,0.000000,0.250000,0,0);}
.m9f_c00304{transform:matrix(0.200880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200880,0.000000,0.000000,0.250000,0,0);}
.m90_c00304{transform:matrix(0.201200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201200,0.000000,0.000000,0.250000,0,0);}
.m9d_c00304{transform:matrix(0.201245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201245,0.000000,0.000000,0.250000,0,0);}
.mc8_c00304{transform:matrix(0.201530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201530,0.000000,0.000000,0.250000,0,0);}
.ma9_c00304{transform:matrix(0.201535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201535,0.000000,0.000000,0.250000,0,0);}
.md1_c00304{transform:matrix(0.201760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201760,0.000000,0.000000,0.250000,0,0);}
.m152_c00304{transform:matrix(0.201910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201910,0.000000,0.000000,0.250000,0,0);}
.m6a_c00304{transform:matrix(0.202530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202530,0.000000,0.000000,0.250000,0,0);}
.m8e_c00304{transform:matrix(0.202555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202555,0.000000,0.000000,0.250000,0,0);}
.m85_c00304{transform:matrix(0.202575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202575,0.000000,0.000000,0.250000,0,0);}
.m40_c00304{transform:matrix(0.202655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202655,0.000000,0.000000,0.250000,0,0);}
.m8b_c00304{transform:matrix(0.202705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202705,0.000000,0.000000,0.250000,0,0);}
.m86_c00304{transform:matrix(0.202810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202810,0.000000,0.000000,0.250000,0,0);}
.ma4_c00304{transform:matrix(0.202850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202850,0.000000,0.000000,0.250000,0,0);}
.md8_c00304{transform:matrix(0.202860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202860,0.000000,0.000000,0.250000,0,0);}
.m88_c00304{transform:matrix(0.203015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203015,0.000000,0.000000,0.250000,0,0);}
.m117_c00304{transform:matrix(0.203170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203170,0.000000,0.000000,0.250000,0,0);}
.mcb_c00304{transform:matrix(0.203570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203570,0.000000,0.000000,0.250000,0,0);}
.ma6_c00304{transform:matrix(0.203580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203580,0.000000,0.000000,0.250000,0,0);}
.m84_c00304{transform:matrix(0.204060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204060,0.000000,0.000000,0.250000,0,0);}
.m129_c00304{transform:matrix(0.204305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204305,0.000000,0.000000,0.250000,0,0);}
.m82_c00304{transform:matrix(0.204850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204850,0.000000,0.000000,0.250000,0,0);}
.m6b_c00304{transform:matrix(0.204865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204865,0.000000,0.000000,0.250000,0,0);}
.m0_c00304{transform:matrix(0.204950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204950,0.000000,0.000000,0.250000,0,0);}
.m89_c00304{transform:matrix(0.205330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205330,0.000000,0.000000,0.250000,0,0);}
.m6f_c00304{transform:matrix(0.205360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205360,0.000000,0.000000,0.250000,0,0);}
.me_c00304{transform:matrix(0.205435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205435,0.000000,0.000000,0.250000,0,0);}
.ma7_c00304{transform:matrix(0.205745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205745,0.000000,0.000000,0.250000,0,0);}
.m58_c00304{transform:matrix(0.205805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205805,0.000000,0.000000,0.250000,0,0);}
.m11e_c00304{transform:matrix(0.206040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206040,0.000000,0.000000,0.250000,0,0);}
.m131_c00304{transform:matrix(0.206163,0.001649,-0.002000,0.249992,0,0);-ms-transform:matrix(0.206163,0.001649,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.206163,0.001649,-0.002000,0.249992,0,0);}
.m7f_c00304{transform:matrix(0.206220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206220,0.000000,0.000000,0.250000,0,0);}
.m149_c00304{transform:matrix(0.206253,0.001650,-0.002000,0.249992,0,0);-ms-transform:matrix(0.206253,0.001650,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.206253,0.001650,-0.002000,0.249992,0,0);}
.m62_c00304{transform:matrix(0.206595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206595,0.000000,0.000000,0.250000,0,0);}
.m57_c00304{transform:matrix(0.206600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206600,0.000000,0.000000,0.250000,0,0);}
.m5a_c00304{transform:matrix(0.207120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207120,0.000000,0.000000,0.250000,0,0);}
.mda_c00304{transform:matrix(0.207840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207840,0.000000,0.000000,0.250000,0,0);}
.m50_c00304{transform:matrix(0.208200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208200,0.000000,0.000000,0.250000,0,0);}
.m154_c00304{transform:matrix(0.208585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208585,0.000000,0.000000,0.250000,0,0);}
.mac_c00304{transform:matrix(0.208740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208740,0.000000,0.000000,0.250000,0,0);}
.m111_c00304{transform:matrix(0.208970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208970,0.000000,0.000000,0.250000,0,0);}
.mf4_c00304{transform:matrix(0.209040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209040,0.000000,0.000000,0.250000,0,0);}
.m140_c00304{transform:matrix(0.209433,0.001675,-0.002000,0.249992,0,0);-ms-transform:matrix(0.209433,0.001675,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.209433,0.001675,-0.002000,0.249992,0,0);}
.m125_c00304{transform:matrix(0.209890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209890,0.000000,0.000000,0.250000,0,0);}
.mdd_c00304{transform:matrix(0.210010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210010,0.000000,0.000000,0.250000,0,0);}
.m4c_c00304{transform:matrix(0.210100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210100,0.000000,0.000000,0.250000,0,0);}
.m142_c00304{transform:matrix(0.210918,0.001687,-0.002000,0.249992,0,0);-ms-transform:matrix(0.210918,0.001687,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.210918,0.001687,-0.002000,0.249992,0,0);}
.m18_c00304{transform:matrix(0.211215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211215,0.000000,0.000000,0.250000,0,0);}
.m4b_c00304{transform:matrix(0.211365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211365,0.000000,0.000000,0.250000,0,0);}
.m150_c00304{transform:matrix(0.211425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211425,0.000000,0.000000,0.250000,0,0);}
.m55_c00304{transform:matrix(0.211475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211475,0.000000,0.000000,0.250000,0,0);}
.m97_c00304{transform:matrix(0.211550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211550,0.000000,0.000000,0.250000,0,0);}
.m12e_c00304{transform:matrix(0.211560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211560,0.000000,0.000000,0.250000,0,0);}
.m38_c00304{transform:matrix(0.211580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211580,0.000000,0.000000,0.250000,0,0);}
.m13e_c00304{transform:matrix(0.211648,0.001693,-0.002000,0.249992,0,0);-ms-transform:matrix(0.211648,0.001693,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.211648,0.001693,-0.002000,0.249992,0,0);}
.m120_c00304{transform:matrix(0.211795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211795,0.000000,0.000000,0.250000,0,0);}
.mf9_c00304{transform:matrix(0.211820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211820,0.000000,0.000000,0.250000,0,0);}
.m6d_c00304{transform:matrix(0.212150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212150,0.000000,0.000000,0.250000,0,0);}
.m5b_c00304{transform:matrix(0.212185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212185,0.000000,0.000000,0.250000,0,0);}
.m1c_c00304{transform:matrix(0.212510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212510,0.000000,0.000000,0.250000,0,0);}
.mb1_c00304{transform:matrix(0.212770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212770,0.000000,0.000000,0.250000,0,0);}
.m119_c00304{transform:matrix(0.212960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212960,0.000000,0.000000,0.250000,0,0);}
.mbc_c00304{transform:matrix(0.213105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213105,0.000000,0.000000,0.250000,0,0);}
.m145_c00304{transform:matrix(0.213183,0.001705,-0.002000,0.249992,0,0);-ms-transform:matrix(0.213183,0.001705,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.213183,0.001705,-0.002000,0.249992,0,0);}
.m9c_c00304{transform:matrix(0.213215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213215,0.000000,0.000000,0.250000,0,0);}
.ma_c00304{transform:matrix(0.213670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213670,0.000000,0.000000,0.250000,0,0);}
.m4e_c00304{transform:matrix(0.214025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214025,0.000000,0.000000,0.250000,0,0);}
.m37_c00304{transform:matrix(0.214355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214355,0.000000,0.000000,0.250000,0,0);}
.ma0_c00304{transform:matrix(0.214460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214460,0.000000,0.000000,0.250000,0,0);}
.m61_c00304{transform:matrix(0.214625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214625,0.000000,0.000000,0.250000,0,0);}
.m27_c00304{transform:matrix(0.214960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214960,0.000000,0.000000,0.250000,0,0);}
.m33_c00304{transform:matrix(0.215650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215650,0.000000,0.000000,0.250000,0,0);}
.m151_c00304{transform:matrix(0.216620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216620,0.000000,0.000000,0.250000,0,0);}
.m54_c00304{transform:matrix(0.216715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216715,0.000000,0.000000,0.250000,0,0);}
.md_c00304{transform:matrix(0.216790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216790,0.000000,0.000000,0.250000,0,0);}
.m99_c00304{transform:matrix(0.216835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216835,0.000000,0.000000,0.250000,0,0);}
.m5d_c00304{transform:matrix(0.217530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217530,0.000000,0.000000,0.250000,0,0);}
.m95_c00304{transform:matrix(0.217570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217570,0.000000,0.000000,0.250000,0,0);}
.m71_c00304{transform:matrix(0.217795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217795,0.000000,0.000000,0.250000,0,0);}
.m103_c00304{transform:matrix(0.218365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218365,0.000000,0.000000,0.250000,0,0);}
.m153_c00304{transform:matrix(0.219020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219020,0.000000,0.000000,0.250000,0,0);}
.m5e_c00304{transform:matrix(0.219705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219705,0.000000,0.000000,0.250000,0,0);}
.m11b_c00304{transform:matrix(0.219835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219835,0.000000,0.000000,0.250000,0,0);}
.m53_c00304{transform:matrix(0.219870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219870,0.000000,0.000000,0.250000,0,0);}
.mf5_c00304{transform:matrix(0.219915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219915,0.000000,0.000000,0.250000,0,0);}
.mdc_c00304{transform:matrix(0.219950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219950,0.000000,0.000000,0.250000,0,0);}
.m70_c00304{transform:matrix(0.220130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220130,0.000000,0.000000,0.250000,0,0);}
.m9b_c00304{transform:matrix(0.220210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220210,0.000000,0.000000,0.250000,0,0);}
.m11f_c00304{transform:matrix(0.220265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220265,0.000000,0.000000,0.250000,0,0);}
.mce_c00304{transform:matrix(0.220630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220630,0.000000,0.000000,0.250000,0,0);}
.md6_c00304{transform:matrix(0.220670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220670,0.000000,0.000000,0.250000,0,0);}
.m135_c00304{transform:matrix(0.220688,0.001766,-0.002000,0.249992,0,0);-ms-transform:matrix(0.220688,0.001766,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.220688,0.001766,-0.002000,0.249992,0,0);}
.m13b_c00304{transform:matrix(0.220963,0.001768,-0.002000,0.249992,0,0);-ms-transform:matrix(0.220963,0.001768,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.220963,0.001768,-0.002000,0.249992,0,0);}
.md3_c00304{transform:matrix(0.221055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221055,0.000000,0.000000,0.250000,0,0);}
.mb7_c00304{transform:matrix(0.221080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221080,0.000000,0.000000,0.250000,0,0);}
.m14a_c00304{transform:matrix(0.221293,0.001770,-0.002000,0.249992,0,0);-ms-transform:matrix(0.221293,0.001770,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.221293,0.001770,-0.002000,0.249992,0,0);}
.m13f_c00304{transform:matrix(0.221353,0.001771,-0.002000,0.249992,0,0);-ms-transform:matrix(0.221353,0.001771,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.221353,0.001771,-0.002000,0.249992,0,0);}
.mcf_c00304{transform:matrix(0.221390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221390,0.000000,0.000000,0.250000,0,0);}
.m3a_c00304{transform:matrix(0.221720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221720,0.000000,0.000000,0.250000,0,0);}
.md4_c00304{transform:matrix(0.221820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221820,0.000000,0.000000,0.250000,0,0);}
.m56_c00304{transform:matrix(0.222665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222665,0.000000,0.000000,0.250000,0,0);}
.ma1_c00304{transform:matrix(0.222740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222740,0.000000,0.000000,0.250000,0,0);}
.m9e_c00304{transform:matrix(0.222830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222830,0.000000,0.000000,0.250000,0,0);}
.m13d_c00304{transform:matrix(0.223188,0.001786,-0.002000,0.249992,0,0);-ms-transform:matrix(0.223188,0.001786,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.223188,0.001786,-0.002000,0.249992,0,0);}
.m9a_c00304{transform:matrix(0.223235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223235,0.000000,0.000000,0.250000,0,0);}
.m136_c00304{transform:matrix(0.223478,0.001788,-0.002000,0.249992,0,0);-ms-transform:matrix(0.223478,0.001788,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.223478,0.001788,-0.002000,0.249992,0,0);}
.m138_c00304{transform:matrix(0.223508,0.001788,-0.002000,0.249992,0,0);-ms-transform:matrix(0.223508,0.001788,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.223508,0.001788,-0.002000,0.249992,0,0);}
.m13a_c00304{transform:matrix(0.223573,0.001789,-0.002000,0.249992,0,0);-ms-transform:matrix(0.223573,0.001789,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.223573,0.001789,-0.002000,0.249992,0,0);}
.m46_c00304{transform:matrix(0.223825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223825,0.000000,0.000000,0.250000,0,0);}
.m139_c00304{transform:matrix(0.223943,0.001792,-0.002000,0.249992,0,0);-ms-transform:matrix(0.223943,0.001792,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.223943,0.001792,-0.002000,0.249992,0,0);}
.mde_c00304{transform:matrix(0.223950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223950,0.000000,0.000000,0.250000,0,0);}
.m3b_c00304{transform:matrix(0.224445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224445,0.000000,0.000000,0.250000,0,0);}
.m10a_c00304{transform:matrix(0.224600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224600,0.000000,0.000000,0.250000,0,0);}
.m3d_c00304{transform:matrix(0.224665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224665,0.000000,0.000000,0.250000,0,0);}
.md9_c00304{transform:matrix(0.224745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224745,0.000000,0.000000,0.250000,0,0);}
.m105_c00304{transform:matrix(0.225070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225070,0.000000,0.000000,0.250000,0,0);}
.m14b_c00304{transform:matrix(0.225248,0.001802,-0.002000,0.249992,0,0);-ms-transform:matrix(0.225248,0.001802,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.225248,0.001802,-0.002000,0.249992,0,0);}
.m127_c00304{transform:matrix(0.225295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225295,0.000000,0.000000,0.250000,0,0);}
.m128_c00304{transform:matrix(0.225735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225735,0.000000,0.000000,0.250000,0,0);}
.m10c_c00304{transform:matrix(0.226035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226035,0.000000,0.000000,0.250000,0,0);}
.m35_c00304{transform:matrix(0.226080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226080,0.000000,0.000000,0.250000,0,0);}
.m68_c00304{transform:matrix(0.226205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226205,0.000000,0.000000,0.250000,0,0);}
.m5c_c00304{transform:matrix(0.226300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226300,0.000000,0.000000,0.250000,0,0);}
.m59_c00304{transform:matrix(0.226420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226420,0.000000,0.000000,0.250000,0,0);}
.mae_c00304{transform:matrix(0.226910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226910,0.000000,0.000000,0.250000,0,0);}
.m6e_c00304{transform:matrix(0.226970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226970,0.000000,0.000000,0.250000,0,0);}
.m122_c00304{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.m1d_c00304{transform:matrix(0.227850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227850,0.000000,0.000000,0.250000,0,0);}
.m22_c00304{transform:matrix(0.227855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227855,0.000000,0.000000,0.250000,0,0);}
.mb_c00304{transform:matrix(0.228055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228055,0.000000,0.000000,0.250000,0,0);}
.m32_c00304{transform:matrix(0.228095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228095,0.000000,0.000000,0.250000,0,0);}
.m4a_c00304{transform:matrix(0.228520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228520,0.000000,0.000000,0.250000,0,0);}
.m144_c00304{transform:matrix(0.228553,0.001828,-0.002000,0.249992,0,0);-ms-transform:matrix(0.228553,0.001828,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.228553,0.001828,-0.002000,0.249992,0,0);}
.m66_c00304{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m123_c00304{transform:matrix(0.229040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229040,0.000000,0.000000,0.250000,0,0);}
.m3f_c00304{transform:matrix(0.229115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229115,0.000000,0.000000,0.250000,0,0);}
.m63_c00304{transform:matrix(0.229120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229120,0.000000,0.000000,0.250000,0,0);}
.m3c_c00304{transform:matrix(0.229360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229360,0.000000,0.000000,0.250000,0,0);}
.m115_c00304{transform:matrix(0.229775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229775,0.000000,0.000000,0.250000,0,0);}
.m48_c00304{transform:matrix(0.229930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229930,0.000000,0.000000,0.250000,0,0);}
.md5_c00304{transform:matrix(0.230120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230120,0.000000,0.000000,0.250000,0,0);}
.m147_c00304{transform:matrix(0.230288,0.001842,-0.002000,0.249992,0,0);-ms-transform:matrix(0.230288,0.001842,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.230288,0.001842,-0.002000,0.249992,0,0);}
.m20_c00304{transform:matrix(0.230305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230305,0.000000,0.000000,0.250000,0,0);}
.m130_c00304{transform:matrix(0.230388,0.001843,-0.002000,0.249992,0,0);-ms-transform:matrix(0.230388,0.001843,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.230388,0.001843,-0.002000,0.249992,0,0);}
.m43_c00304{transform:matrix(0.230445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230445,0.000000,0.000000,0.250000,0,0);}
.m60_c00304{transform:matrix(0.230540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230540,0.000000,0.000000,0.250000,0,0);}
.m121_c00304{transform:matrix(0.230590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230590,0.000000,0.000000,0.250000,0,0);}
.mf8_c00304{transform:matrix(0.230900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230900,0.000000,0.000000,0.250000,0,0);}
.m24_c00304{transform:matrix(0.231060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231060,0.000000,0.000000,0.250000,0,0);}
.m102_c00304{transform:matrix(0.231440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231440,0.000000,0.000000,0.250000,0,0);}
.mdb_c00304{transform:matrix(0.231650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231650,0.000000,0.000000,0.250000,0,0);}
.m148_c00304{transform:matrix(0.231758,0.001854,-0.002000,0.249992,0,0);-ms-transform:matrix(0.231758,0.001854,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.231758,0.001854,-0.002000,0.249992,0,0);}
.m17_c00304{transform:matrix(0.231875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231875,0.000000,0.000000,0.250000,0,0);}
.m67_c00304{transform:matrix(0.231905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231905,0.000000,0.000000,0.250000,0,0);}
.m69_c00304{transform:matrix(0.232095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232095,0.000000,0.000000,0.250000,0,0);}
.me1_c00304{transform:matrix(0.232240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232240,0.000000,0.000000,0.250000,0,0);}
.mca_c00304{transform:matrix(0.232300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232300,0.000000,0.000000,0.250000,0,0);}
.mf_c00304{transform:matrix(0.232355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232355,0.000000,0.000000,0.250000,0,0);}
.m126_c00304{transform:matrix(0.232545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232545,0.000000,0.000000,0.250000,0,0);}
.m72_c00304{transform:matrix(0.232655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232655,0.000000,0.000000,0.250000,0,0);}
.m11_c00304{transform:matrix(0.232975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232975,0.000000,0.000000,0.250000,0,0);}
.mfe_c00304{transform:matrix(0.233020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233020,0.000000,0.000000,0.250000,0,0);}
.m1e_c00304{transform:matrix(0.233045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233045,0.000000,0.000000,0.250000,0,0);}
.m143_c00304{transform:matrix(0.233048,0.001864,-0.002000,0.249992,0,0);-ms-transform:matrix(0.233048,0.001864,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.233048,0.001864,-0.002000,0.249992,0,0);}
.m29_c00304{transform:matrix(0.233065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233065,0.000000,0.000000,0.250000,0,0);}
.m36_c00304{transform:matrix(0.233490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233490,0.000000,0.000000,0.250000,0,0);}
.md0_c00304{transform:matrix(0.233590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233590,0.000000,0.000000,0.250000,0,0);}
.me5_c00304{transform:matrix(0.233670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233670,0.000000,0.000000,0.250000,0,0);}
.m1a_c00304{transform:matrix(0.233800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233800,0.000000,0.000000,0.250000,0,0);}
.maf_c00304{transform:matrix(0.233815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233815,0.000000,0.000000,0.250000,0,0);}
.mf6_c00304{transform:matrix(0.233840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233840,0.000000,0.000000,0.250000,0,0);}
.m39_c00304{transform:matrix(0.234020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234020,0.000000,0.000000,0.250000,0,0);}
.mc_c00304{transform:matrix(0.234345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234345,0.000000,0.000000,0.250000,0,0);}
.m64_c00304{transform:matrix(0.234465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234465,0.000000,0.000000,0.250000,0,0);}
.m16_c00304{transform:matrix(0.235175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235175,0.000000,0.000000,0.250000,0,0);}
.m44_c00304{transform:matrix(0.235565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235565,0.000000,0.000000,0.250000,0,0);}
.me2_c00304{transform:matrix(0.235645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235645,0.000000,0.000000,0.250000,0,0);}
.m11a_c00304{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.md7_c00304{transform:matrix(0.236525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236525,0.000000,0.000000,0.250000,0,0);}
.m11d_c00304{transform:matrix(0.236770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236770,0.000000,0.000000,0.250000,0,0);}
.m12_c00304{transform:matrix(0.236805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236805,0.000000,0.000000,0.250000,0,0);}
.m10f_c00304{transform:matrix(0.236945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236945,0.000000,0.000000,0.250000,0,0);}
.mcc_c00304{transform:matrix(0.237315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237315,0.000000,0.000000,0.250000,0,0);}
.m113_c00304{transform:matrix(0.237470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237470,0.000000,0.000000,0.250000,0,0);}
.m14d_c00304{transform:matrix(0.237822,0.001903,-0.002000,0.249992,0,0);-ms-transform:matrix(0.237822,0.001903,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.237822,0.001903,-0.002000,0.249992,0,0);}
.me0_c00304{transform:matrix(0.237950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237950,0.000000,0.000000,0.250000,0,0);}
.m1f_c00304{transform:matrix(0.238220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238220,0.000000,0.000000,0.250000,0,0);}
.mff_c00304{transform:matrix(0.238445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238445,0.000000,0.000000,0.250000,0,0);}
.m146_c00304{transform:matrix(0.238462,0.001908,-0.002000,0.249992,0,0);-ms-transform:matrix(0.238462,0.001908,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.238462,0.001908,-0.002000,0.249992,0,0);}
.m132_c00304{transform:matrix(0.238492,0.001908,-0.002000,0.249992,0,0);-ms-transform:matrix(0.238492,0.001908,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.238492,0.001908,-0.002000,0.249992,0,0);}
.m107_c00304{transform:matrix(0.238630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238630,0.000000,0.000000,0.250000,0,0);}
.mb9_c00304{transform:matrix(0.239235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239235,0.000000,0.000000,0.250000,0,0);}
.mfa_c00304{transform:matrix(0.239255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239255,0.000000,0.000000,0.250000,0,0);}
.mb2_c00304{transform:matrix(0.239390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239390,0.000000,0.000000,0.250000,0,0);}
.mb3_c00304{transform:matrix(0.239980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239980,0.000000,0.000000,0.250000,0,0);}
.m133_c00304{transform:matrix(0.240097,0.001921,-0.002000,0.249992,0,0);-ms-transform:matrix(0.240097,0.001921,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.240097,0.001921,-0.002000,0.249992,0,0);}
.m47_c00304{transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);}
.m6c_c00304{transform:matrix(0.240540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240540,0.000000,0.000000,0.250000,0,0);}
.m109_c00304{transform:matrix(0.240800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240800,0.000000,0.000000,0.250000,0,0);}
.m45_c00304{transform:matrix(0.240860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240860,0.000000,0.000000,0.250000,0,0);}
.m65_c00304{transform:matrix(0.241560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241560,0.000000,0.000000,0.250000,0,0);}
.mb8_c00304{transform:matrix(0.241580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241580,0.000000,0.000000,0.250000,0,0);}
.mcd_c00304{transform:matrix(0.241600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241600,0.000000,0.000000,0.250000,0,0);}
.m14e_c00304{transform:matrix(0.242127,0.001937,-0.002000,0.249992,0,0);-ms-transform:matrix(0.242127,0.001937,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.242127,0.001937,-0.002000,0.249992,0,0);}
.m2c_c00304{transform:matrix(0.242495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242495,0.000000,0.000000,0.250000,0,0);}
.m49_c00304{transform:matrix(0.242575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242575,0.000000,0.000000,0.250000,0,0);}
.me6_c00304{transform:matrix(0.242675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242675,0.000000,0.000000,0.250000,0,0);}
.m137_c00304{transform:matrix(0.242757,0.001942,-0.002000,0.249992,0,0);-ms-transform:matrix(0.242757,0.001942,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.242757,0.001942,-0.002000,0.249992,0,0);}
.m2d_c00304{transform:matrix(0.243055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243055,0.000000,0.000000,0.250000,0,0);}
.m112_c00304{transform:matrix(0.243140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243140,0.000000,0.000000,0.250000,0,0);}
.m110_c00304{transform:matrix(0.243710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243710,0.000000,0.000000,0.250000,0,0);}
.m14_c00304{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m25_c00304{transform:matrix(0.243765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243765,0.000000,0.000000,0.250000,0,0);}
.m10e_c00304{transform:matrix(0.244775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244775,0.000000,0.000000,0.250000,0,0);}
.m26_c00304{transform:matrix(0.245990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245990,0.000000,0.000000,0.250000,0,0);}
.m9_c00304{transform:matrix(0.246050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246050,0.000000,0.000000,0.250000,0,0);}
.mfc_c00304{transform:matrix(0.247810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247810,0.000000,0.000000,0.250000,0,0);}
.mb4_c00304{transform:matrix(0.248030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248030,0.000000,0.000000,0.250000,0,0);}
.m100_c00304{transform:matrix(0.248335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248335,0.000000,0.000000,0.250000,0,0);}
.m3_c00304{transform:matrix(0.249625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249625,0.000000,0.000000,0.250000,0,0);}
.m19_c00304{transform:matrix(0.250435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250435,0.000000,0.000000,0.250000,0,0);}
.mf7_c00304{transform:matrix(0.250860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250860,0.000000,0.000000,0.250000,0,0);}
.mfd_c00304{transform:matrix(0.251050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251050,0.000000,0.000000,0.250000,0,0);}
.m106_c00304{transform:matrix(0.251330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251330,0.000000,0.000000,0.250000,0,0);}
.m8_c00304{transform:matrix(0.252005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252005,0.000000,0.000000,0.250000,0,0);}
.m41_c00304{transform:matrix(0.252105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252105,0.000000,0.000000,0.250000,0,0);}
.m101_c00304{transform:matrix(0.252300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252300,0.000000,0.000000,0.250000,0,0);}
.m10b_c00304{transform:matrix(0.252685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252685,0.000000,0.000000,0.250000,0,0);}
.m1b_c00304{transform:matrix(0.253265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253265,0.000000,0.000000,0.250000,0,0);}
.m116_c00304{transform:matrix(0.253480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253480,0.000000,0.000000,0.250000,0,0);}
.me3_c00304{transform:matrix(0.253650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253650,0.000000,0.000000,0.250000,0,0);}
.mdf_c00304{transform:matrix(0.253810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253810,0.000000,0.000000,0.250000,0,0);}
.m21_c00304{transform:matrix(0.253815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253815,0.000000,0.000000,0.250000,0,0);}
.m2f_c00304{transform:matrix(0.254085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254085,0.000000,0.000000,0.250000,0,0);}
.me4_c00304{transform:matrix(0.254175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254175,0.000000,0.000000,0.250000,0,0);}
.m118_c00304{transform:matrix(0.254200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254200,0.000000,0.000000,0.250000,0,0);}
.m10d_c00304{transform:matrix(0.254235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254235,0.000000,0.000000,0.250000,0,0);}
.m2b_c00304{transform:matrix(0.254385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254385,0.000000,0.000000,0.250000,0,0);}
.mb6_c00304{transform:matrix(0.254515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254515,0.000000,0.000000,0.250000,0,0);}
.m28_c00304{transform:matrix(0.254625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254625,0.000000,0.000000,0.250000,0,0);}
.m42_c00304{transform:matrix(0.254655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254655,0.000000,0.000000,0.250000,0,0);}
.m11c_c00304{transform:matrix(0.254760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254760,0.000000,0.000000,0.250000,0,0);}
.m2e_c00304{transform:matrix(0.254805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254805,0.000000,0.000000,0.250000,0,0);}
.m108_c00304{transform:matrix(0.255605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255605,0.000000,0.000000,0.250000,0,0);}
.mb5_c00304{transform:matrix(0.255705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255705,0.000000,0.000000,0.250000,0,0);}
.m104_c00304{transform:matrix(0.255810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255810,0.000000,0.000000,0.250000,0,0);}
.m23_c00304{transform:matrix(0.256085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256085,0.000000,0.000000,0.250000,0,0);}
.m2a_c00304{transform:matrix(0.256655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256655,0.000000,0.000000,0.250000,0,0);}
.m13_c00304{transform:matrix(0.256815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256815,0.000000,0.000000,0.250000,0,0);}
.m10_c00304{transform:matrix(0.257675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257675,0.000000,0.000000,0.250000,0,0);}
.me7_c00304{transform:matrix(0.258110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258110,0.000000,0.000000,0.250000,0,0);}
.m114_c00304{transform:matrix(0.258365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258365,0.000000,0.000000,0.250000,0,0);}
.mba_c00304{transform:matrix(0.258535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258535,0.000000,0.000000,0.250000,0,0);}
.mfb_c00304{transform:matrix(0.258815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258815,0.000000,0.000000,0.250000,0,0);}
.m15_c00304{transform:matrix(0.258930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258930,0.000000,0.000000,0.250000,0,0);}
.mc2_c00304{transform:matrix(0.259155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259155,0.000000,0.000000,0.250000,0,0);}
.m5_c00304{transform:matrix(0.260010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260010,0.000000,0.000000,0.250000,0,0);}
.m73_c00304{transform:matrix(0.260505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260505,0.000000,0.000000,0.250000,0,0);}
.me8_c00304{transform:matrix(0.262585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262585,0.000000,0.000000,0.250000,0,0);}
.m7a_c00304{transform:matrix(0.264085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264085,0.000000,0.000000,0.250000,0,0);}
.md2_c00304{transform:matrix(0.272325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272325,0.000000,0.000000,0.250000,0,0);}
.m2_c00304{transform:matrix(0.273470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273470,0.000000,0.000000,0.250000,0,0);}
.m51_c00304{transform:matrix(0.279065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279065,0.000000,0.000000,0.250000,0,0);}
.m31_c00304{transform:matrix(0.280685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280685,0.000000,0.000000,0.250000,0,0);}
.m4f_c00304{transform:matrix(0.285885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285885,0.000000,0.000000,0.250000,0,0);}
.mc3_c00304{transform:matrix(0.287105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287105,0.000000,0.000000,0.250000,0,0);}
.m6_c00304{transform:matrix(0.339100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339100,0.000000,0.000000,0.250000,0,0);}
.m4_c00304{transform:matrix(0.339645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339645,0.000000,0.000000,0.250000,0,0);}
.m1_c00304{transform:matrix(0.341585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341585,0.000000,0.000000,0.250000,0,0);}
.m7_c00304{transform:matrix(0.390020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390020,0.000000,0.000000,0.250000,0,0);}
.v0_c00304{vertical-align:0.000000px;}
.ls0_c00304{letter-spacing:0.000000px;}
.sc__c00304{text-shadow:none;}
.sc0_c00304{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__c00304{-webkit-text-stroke:0px transparent;}
.sc0_c00304{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00304{word-spacing:0.000000px;}
.fc0_c00304{color:transparent;}
.fs1_c00304{font-size:72.000000px;}
.fs2_c00304{font-size:78.000000px;}
.fs3_c00304{font-size:84.000000px;}
.fs6_c00304{font-size:84.002688px;}
.fs0_c00304{font-size:90.000000px;}
.fs7_c00304{font-size:90.002880px;}
.fs5_c00304{font-size:96.000000px;}
.fs4_c00304{font-size:102.000000px;}
.y0_c00304{bottom:0.000000px;}
.y5a_c00304{bottom:74.404500px;}
.y58_c00304{bottom:116.026896px;}
.y59_c00304{bottom:116.027280px;}
.y57_c00304{bottom:116.027424px;}
.y52_c00304{bottom:116.027472px;}
.y53_c00304{bottom:116.027544px;}
.y51_c00304{bottom:116.027868px;}
.y56_c00304{bottom:116.027892px;}
.y54_c00304{bottom:116.028228px;}
.y50_c00304{bottom:116.028396px;}
.y55_c00304{bottom:116.028540px;}
.y4f_c00304{bottom:116.028744px;}
.y4b_c00304{bottom:147.894876px;}
.y46_c00304{bottom:147.895116px;}
.y48_c00304{bottom:147.895284px;}
.y49_c00304{bottom:147.895416px;}
.y4a_c00304{bottom:147.895572px;}
.y4c_c00304{bottom:147.895596px;}
.y4d_c00304{bottom:147.895608px;}
.y47_c00304{bottom:147.895860px;}
.y4e_c00304{bottom:147.896220px;}
.y45_c00304{bottom:178.661472px;}
.y44_c00304{bottom:178.942296px;}
.y43_c00304{bottom:179.825868px;}
.y42_c00304{bottom:180.085080px;}
.y41_c00304{bottom:180.432852px;}
.y40_c00304{bottom:180.691800px;}
.y3f_c00304{bottom:181.486980px;}
.y3e_c00304{bottom:182.279592px;}
.y3d_c00304{bottom:182.536692px;}
.y3c_c00304{bottom:183.061500px;}
.y3b_c00304{bottom:212.908500px;}
.y3a_c00304{bottom:240.423000px;}
.y39_c00304{bottom:240.807000px;}
.y38_c00304{bottom:241.278000px;}
.y37_c00304{bottom:241.509000px;}
.y36_c00304{bottom:241.654500px;}
.y35_c00304{bottom:242.353500px;}
.y34_c00304{bottom:242.965500px;}
.y33_c00304{bottom:243.729000px;}
.y32_c00304{bottom:243.972000px;}
.y31_c00304{bottom:244.495500px;}
.y30_c00304{bottom:244.738500px;}
.y2f_c00304{bottom:244.891500px;}
.y2e_c00304{bottom:271.843500px;}
.y2d_c00304{bottom:272.269500px;}
.y2c_c00304{bottom:272.725500px;}
.y2b_c00304{bottom:273.816000px;}
.y2a_c00304{bottom:274.267500px;}
.y29_c00304{bottom:274.480500px;}
.y28_c00304{bottom:275.361000px;}
.y27_c00304{bottom:275.568000px;}
.y26_c00304{bottom:276.553500px;}
.y25_c00304{bottom:276.780000px;}
.y24_c00304{bottom:277.111500px;}
.y23_c00304{bottom:278.100000px;}
.y22_c00304{bottom:305.583000px;}
.y21_c00304{bottom:337.218000px;}
.y20_c00304{bottom:369.916500px;}
.y1f_c00304{bottom:401.511000px;}
.y1e_c00304{bottom:433.020000px;}
.y1d_c00304{bottom:465.825000px;}
.y1c_c00304{bottom:497.092500px;}
.y1b_c00304{bottom:527.953500px;}
.y1a_c00304{bottom:558.903000px;}
.y19_c00304{bottom:590.512500px;}
.y18_c00304{bottom:622.135500px;}
.y17_c00304{bottom:653.962500px;}
.yd_c00304{bottom:683.640000px;}
.ye_c00304{bottom:684.235500px;}
.yf_c00304{bottom:684.498000px;}
.y10_c00304{bottom:684.759000px;}
.y11_c00304{bottom:685.219500px;}
.y12_c00304{bottom:685.551000px;}
.y13_c00304{bottom:686.014500px;}
.y14_c00304{bottom:686.533500px;}
.y15_c00304{bottom:686.868000px;}
.y16_c00304{bottom:687.133500px;}
.yc_c00304{bottom:719.010000px;}
.yb_c00304{bottom:750.084000px;}
.ya_c00304{bottom:781.599000px;}
.y9_c00304{bottom:813.804000px;}
.y8_c00304{bottom:844.939500px;}
.y7_c00304{bottom:876.807000px;}
.y6_c00304{bottom:908.607000px;}
.y5_c00304{bottom:940.740000px;}
.y4_c00304{bottom:971.190000px;}
.y3_c00304{bottom:1004.923500px;}
.y2_c00304{bottom:1079.230500px;}
.y1_c00304{bottom:1122.933000px;}
.h3_c00304{height:72.000000px;}
.h4_c00304{height:78.000000px;}
.h5_c00304{height:84.000000px;}
.h8_c00304{height:84.002688px;}
.h2_c00304{height:90.000000px;}
.h9_c00304{height:90.002880px;}
.h7_c00304{height:96.000000px;}
.h6_c00304{height:102.000000px;}
.h1_c00304{height:1165.500000px;}
.h0_c00304{height:1165.800000px;}
.w0_c00304{width:915.000000px;}
.x0_c00304{left:0.000000px;}
.x71_c00304{left:155.980500px;}
.x14_c00304{left:157.410000px;}
.x33_c00304{left:158.760000px;}
.x7b_c00304{left:159.840000px;}
.x3c_c00304{left:178.740000px;}
.x47_c00304{left:180.090000px;}
.x64_c00304{left:189.271500px;}
.x40_c00304{left:200.880000px;}
.x28_c00304{left:201.960000px;}
.x20_c00304{left:211.950000px;}
.x59_c00304{left:218.431500px;}
.x5d_c00304{left:222.751500px;}
.x34_c00304{left:223.830000px;}
.x44_c00304{left:233.820000px;}
.x41_c00304{left:235.170000px;}
.x49_c00304{left:244.621500px;}
.x15_c00304{left:246.510000px;}
.x4e_c00304{left:255.421500px;}
.x2d_c00304{left:257.580000px;}
.x69_c00304{left:265.951500px;}
.x9_c00304{left:267.030000px;}
.x35_c00304{left:268.380000px;}
.x5e_c00304{left:277.561500px;}
.x3_c00304{left:279.180000px;}
.x72_c00304{left:287.464500px;}
.x2e_c00304{left:288.900000px;}
.x5a_c00304{left:299.431500px;}
.x36_c00304{left:300.510000px;}
.x16_c00304{left:311.040000px;}
.x55_c00304{left:312.391500px;}
.x73_c00304{left:321.031500px;}
.x21_c00304{left:322.380000px;}
.xa_c00304{left:333.450000px;}
.x2f_c00304{left:344.250000px;}
.x6e_c00304{left:353.701500px;}
.x5f_c00304{left:354.781500px;}
.x74_c00304{left:365.041500px;}
.x4f_c00304{left:366.661500px;}
.x4_c00304{left:376.380000px;}
.x37_c00304{left:377.460000px;}
.x6f_c00304{left:386.911500px;}
.x1_c00304{left:388.260000px;}
.x62_c00304{left:397.441500px;}
.x50_c00304{left:398.791500px;}
.xb_c00304{left:399.870000px;}
.x75_c00304{left:408.511500px;}
.x5_c00304{left:410.400000px;}
.x2_c00304{left:411.480000px;}
.x6a_c00304{left:420.121500px;}
.x17_c00304{left:421.200000px;}
.x70_c00304{left:430.500000px;}
.x56_c00304{left:432.001500px;}
.xc_c00304{left:433.080000px;}
.x6b_c00304{left:441.991500px;}
.x3d_c00304{left:443.070000px;}
.x65_c00304{left:452.521500px;}
.x22_c00304{left:454.410000px;}
.x29_c00304{left:464.400000px;}
.x18_c00304{left:475.470000px;}
.x7c_c00304{left:476.550000px;}
.x5b_c00304{left:496.261500px;}
.x79_c00304{left:497.349480px;}
.xd_c00304{left:498.420000px;}
.x78_c00304{left:507.338544px;}
.x19_c00304{left:509.490000px;}
.x6_c00304{left:513.810000px;}
.x30_c00304{left:519.480000px;}
.x4a_c00304{left:530.281500px;}
.x5c_c00304{left:531.631500px;}
.x66_c00304{left:540.541500px;}
.x42_c00304{left:541.620000px;}
.x7_c00304{left:543.240000px;}
.x45_c00304{left:552.150000px;}
.xe_c00304{left:553.500000px;}
.x23_c00304{left:563.220000px;}
.x4b_c00304{left:564.301500px;}
.x67_c00304{left:573.481500px;}
.x48_c00304{left:574.560000px;}
.x1a_c00304{left:576.720000px;}
.x7a_c00304{left:584.022024px;}
.x63_c00304{left:585.361500px;}
.xf_c00304{left:586.440000px;}
.x38_c00304{left:595.620000px;}
.x2a_c00304{left:597.240000px;}
.x24_c00304{left:598.590000px;}
.x1b_c00304{left:607.230000px;}
.x10_c00304{left:618.300000px;}
.x51_c00304{left:628.561500px;}
.x46_c00304{left:629.910000px;}
.x43_c00304{left:640.440000px;}
.x8_c00304{left:645.570000px;}
.x11_c00304{left:651.510000px;}
.x31_c00304{left:662.040000px;}
.x52_c00304{left:663.661500px;}
.x76_c00304{left:671.916000px;}
.x1c_c00304{left:673.110000px;}
.x39_c00304{left:674.190000px;}
.x25_c00304{left:684.180000px;}
.x2b_c00304{left:685.260000px;}
.x6c_c00304{left:694.441500px;}
.x32_c00304{left:695.520000px;}
.x60_c00304{left:705.511500px;}
.x26_c00304{left:707.130000px;}
.x1d_c00304{left:717.390000px;}
.x68_c00304{left:727.381500px;}
.x3a_c00304{left:729.000000px;}
.x27_c00304{left:740.340000px;}
.x53_c00304{left:750.331500px;}
.x6d_c00304{left:760.321500px;}
.x12_c00304{left:761.400000px;}
.x3e_c00304{left:771.930000px;}
.x1e_c00304{left:773.010000px;}
.x61_c00304{left:782.461500px;}
.x4c_c00304{left:783.541500px;}
.x57_c00304{left:794.341500px;}
.x13_c00304{left:795.960000px;}
.x3f_c00304{left:804.870000px;}
.x1f_c00304{left:805.950000px;}
.x2c_c00304{left:816.210000px;}
.x77_c00304{left:817.465500px;}
.x3b_c00304{left:827.280000px;}
.x54_c00304{left:837.541500px;}
.x58_c00304{left:839.161500px;}
.x4d_c00304{left:849.421500px;}
@media print{
.v0_c00304{vertical-align:0.000000pt;}
.ls0_c00304{letter-spacing:0.000000pt;}
.ws0_c00304{word-spacing:0.000000pt;}
.fs1_c00304{font-size:64.000000pt;}
.fs2_c00304{font-size:69.333333pt;}
.fs3_c00304{font-size:74.666667pt;}
.fs6_c00304{font-size:74.669056pt;}
.fs0_c00304{font-size:80.000000pt;}
.fs7_c00304{font-size:80.002560pt;}
.fs5_c00304{font-size:85.333333pt;}
.fs4_c00304{font-size:90.666667pt;}
.y0_c00304{bottom:0.000000pt;}
.y5a_c00304{bottom:66.137333pt;}
.y58_c00304{bottom:103.135019pt;}
.y59_c00304{bottom:103.135360pt;}
.y57_c00304{bottom:103.135488pt;}
.y52_c00304{bottom:103.135531pt;}
.y53_c00304{bottom:103.135595pt;}
.y51_c00304{bottom:103.135883pt;}
.y56_c00304{bottom:103.135904pt;}
.y54_c00304{bottom:103.136203pt;}
.y50_c00304{bottom:103.136352pt;}
.y55_c00304{bottom:103.136480pt;}
.y4f_c00304{bottom:103.136661pt;}
.y4b_c00304{bottom:131.462112pt;}
.y46_c00304{bottom:131.462325pt;}
.y48_c00304{bottom:131.462475pt;}
.y49_c00304{bottom:131.462592pt;}
.y4a_c00304{bottom:131.462731pt;}
.y4c_c00304{bottom:131.462752pt;}
.y4d_c00304{bottom:131.462763pt;}
.y47_c00304{bottom:131.462987pt;}
.y4e_c00304{bottom:131.463307pt;}
.y45_c00304{bottom:158.810197pt;}
.y44_c00304{bottom:159.059819pt;}
.y43_c00304{bottom:159.845216pt;}
.y42_c00304{bottom:160.075627pt;}
.y41_c00304{bottom:160.384757pt;}
.y40_c00304{bottom:160.614933pt;}
.y3f_c00304{bottom:161.321760pt;}
.y3e_c00304{bottom:162.026304pt;}
.y3d_c00304{bottom:162.254837pt;}
.y3c_c00304{bottom:162.721333pt;}
.y3b_c00304{bottom:189.252000pt;}
.y3a_c00304{bottom:213.709333pt;}
.y39_c00304{bottom:214.050667pt;}
.y38_c00304{bottom:214.469333pt;}
.y37_c00304{bottom:214.674667pt;}
.y36_c00304{bottom:214.804000pt;}
.y35_c00304{bottom:215.425333pt;}
.y34_c00304{bottom:215.969333pt;}
.y33_c00304{bottom:216.648000pt;}
.y32_c00304{bottom:216.864000pt;}
.y31_c00304{bottom:217.329333pt;}
.y30_c00304{bottom:217.545333pt;}
.y2f_c00304{bottom:217.681333pt;}
.y2e_c00304{bottom:241.638667pt;}
.y2d_c00304{bottom:242.017333pt;}
.y2c_c00304{bottom:242.422667pt;}
.y2b_c00304{bottom:243.392000pt;}
.y2a_c00304{bottom:243.793333pt;}
.y29_c00304{bottom:243.982667pt;}
.y28_c00304{bottom:244.765333pt;}
.y27_c00304{bottom:244.949333pt;}
.y26_c00304{bottom:245.825333pt;}
.y25_c00304{bottom:246.026667pt;}
.y24_c00304{bottom:246.321333pt;}
.y23_c00304{bottom:247.200000pt;}
.y22_c00304{bottom:271.629333pt;}
.y21_c00304{bottom:299.749333pt;}
.y20_c00304{bottom:328.814667pt;}
.y1f_c00304{bottom:356.898667pt;}
.y1e_c00304{bottom:384.906667pt;}
.y1d_c00304{bottom:414.066667pt;}
.y1c_c00304{bottom:441.860000pt;}
.y1b_c00304{bottom:469.292000pt;}
.y1a_c00304{bottom:496.802667pt;}
.y19_c00304{bottom:524.900000pt;}
.y18_c00304{bottom:553.009333pt;}
.y17_c00304{bottom:581.300000pt;}
.yd_c00304{bottom:607.680000pt;}
.ye_c00304{bottom:608.209333pt;}
.yf_c00304{bottom:608.442667pt;}
.y10_c00304{bottom:608.674667pt;}
.y11_c00304{bottom:609.084000pt;}
.y12_c00304{bottom:609.378667pt;}
.y13_c00304{bottom:609.790667pt;}
.y14_c00304{bottom:610.252000pt;}
.y15_c00304{bottom:610.549333pt;}
.y16_c00304{bottom:610.785333pt;}
.yc_c00304{bottom:639.120000pt;}
.yb_c00304{bottom:666.741333pt;}
.ya_c00304{bottom:694.754667pt;}
.y9_c00304{bottom:723.381333pt;}
.y8_c00304{bottom:751.057333pt;}
.y7_c00304{bottom:779.384000pt;}
.y6_c00304{bottom:807.650667pt;}
.y5_c00304{bottom:836.213333pt;}
.y4_c00304{bottom:863.280000pt;}
.y3_c00304{bottom:893.265333pt;}
.y2_c00304{bottom:959.316000pt;}
.y1_c00304{bottom:998.162667pt;}
.h3_c00304{height:64.000000pt;}
.h4_c00304{height:69.333333pt;}
.h5_c00304{height:74.666667pt;}
.h8_c00304{height:74.669056pt;}
.h2_c00304{height:80.000000pt;}
.h9_c00304{height:80.002560pt;}
.h7_c00304{height:85.333333pt;}
.h6_c00304{height:90.666667pt;}
.h1_c00304{height:1036.000000pt;}
.h0_c00304{height:1036.266667pt;}
.w0_c00304{width:813.333333pt;}
.x0_c00304{left:0.000000pt;}
.x71_c00304{left:138.649333pt;}
.x14_c00304{left:139.920000pt;}
.x33_c00304{left:141.120000pt;}
.x7b_c00304{left:142.080000pt;}
.x3c_c00304{left:158.880000pt;}
.x47_c00304{left:160.080000pt;}
.x64_c00304{left:168.241333pt;}
.x40_c00304{left:178.560000pt;}
.x28_c00304{left:179.520000pt;}
.x20_c00304{left:188.400000pt;}
.x59_c00304{left:194.161333pt;}
.x5d_c00304{left:198.001333pt;}
.x34_c00304{left:198.960000pt;}
.x44_c00304{left:207.840000pt;}
.x41_c00304{left:209.040000pt;}
.x49_c00304{left:217.441333pt;}
.x15_c00304{left:219.120000pt;}
.x4e_c00304{left:227.041333pt;}
.x2d_c00304{left:228.960000pt;}
.x69_c00304{left:236.401333pt;}
.x9_c00304{left:237.360000pt;}
.x35_c00304{left:238.560000pt;}
.x5e_c00304{left:246.721333pt;}
.x3_c00304{left:248.160000pt;}
.x72_c00304{left:255.524000pt;}
.x2e_c00304{left:256.800000pt;}
.x5a_c00304{left:266.161333pt;}
.x36_c00304{left:267.120000pt;}
.x16_c00304{left:276.480000pt;}
.x55_c00304{left:277.681333pt;}
.x73_c00304{left:285.361333pt;}
.x21_c00304{left:286.560000pt;}
.xa_c00304{left:296.400000pt;}
.x2f_c00304{left:306.000000pt;}
.x6e_c00304{left:314.401333pt;}
.x5f_c00304{left:315.361333pt;}
.x74_c00304{left:324.481333pt;}
.x4f_c00304{left:325.921333pt;}
.x4_c00304{left:334.560000pt;}
.x37_c00304{left:335.520000pt;}
.x6f_c00304{left:343.921333pt;}
.x1_c00304{left:345.120000pt;}
.x62_c00304{left:353.281333pt;}
.x50_c00304{left:354.481333pt;}
.xb_c00304{left:355.440000pt;}
.x75_c00304{left:363.121333pt;}
.x5_c00304{left:364.800000pt;}
.x2_c00304{left:365.760000pt;}
.x6a_c00304{left:373.441333pt;}
.x17_c00304{left:374.400000pt;}
.x70_c00304{left:382.666667pt;}
.x56_c00304{left:384.001333pt;}
.xc_c00304{left:384.960000pt;}
.x6b_c00304{left:392.881333pt;}
.x3d_c00304{left:393.840000pt;}
.x65_c00304{left:402.241333pt;}
.x22_c00304{left:403.920000pt;}
.x29_c00304{left:412.800000pt;}
.x18_c00304{left:422.640000pt;}
.x7c_c00304{left:423.600000pt;}
.x5b_c00304{left:441.121333pt;}
.x79_c00304{left:442.088427pt;}
.xd_c00304{left:443.040000pt;}
.x78_c00304{left:450.967595pt;}
.x19_c00304{left:452.880000pt;}
.x6_c00304{left:456.720000pt;}
.x30_c00304{left:461.760000pt;}
.x4a_c00304{left:471.361333pt;}
.x5c_c00304{left:472.561333pt;}
.x66_c00304{left:480.481333pt;}
.x42_c00304{left:481.440000pt;}
.x7_c00304{left:482.880000pt;}
.x45_c00304{left:490.800000pt;}
.xe_c00304{left:492.000000pt;}
.x23_c00304{left:500.640000pt;}
.x4b_c00304{left:501.601333pt;}
.x67_c00304{left:509.761333pt;}
.x48_c00304{left:510.720000pt;}
.x1a_c00304{left:512.640000pt;}
.x7a_c00304{left:519.130688pt;}
.x63_c00304{left:520.321333pt;}
.xf_c00304{left:521.280000pt;}
.x38_c00304{left:529.440000pt;}
.x2a_c00304{left:530.880000pt;}
.x24_c00304{left:532.080000pt;}
.x1b_c00304{left:539.760000pt;}
.x10_c00304{left:549.600000pt;}
.x51_c00304{left:558.721333pt;}
.x46_c00304{left:559.920000pt;}
.x43_c00304{left:569.280000pt;}
.x8_c00304{left:573.840000pt;}
.x11_c00304{left:579.120000pt;}
.x31_c00304{left:588.480000pt;}
.x52_c00304{left:589.921333pt;}
.x76_c00304{left:597.258667pt;}
.x1c_c00304{left:598.320000pt;}
.x39_c00304{left:599.280000pt;}
.x25_c00304{left:608.160000pt;}
.x2b_c00304{left:609.120000pt;}
.x6c_c00304{left:617.281333pt;}
.x32_c00304{left:618.240000pt;}
.x60_c00304{left:627.121333pt;}
.x26_c00304{left:628.560000pt;}
.x1d_c00304{left:637.680000pt;}
.x68_c00304{left:646.561333pt;}
.x3a_c00304{left:648.000000pt;}
.x27_c00304{left:658.080000pt;}
.x53_c00304{left:666.961333pt;}
.x6d_c00304{left:675.841333pt;}
.x12_c00304{left:676.800000pt;}
.x3e_c00304{left:686.160000pt;}
.x1e_c00304{left:687.120000pt;}
.x61_c00304{left:695.521333pt;}
.x4c_c00304{left:696.481333pt;}
.x57_c00304{left:706.081333pt;}
.x13_c00304{left:707.520000pt;}
.x3f_c00304{left:715.440000pt;}
.x1f_c00304{left:716.400000pt;}
.x2c_c00304{left:725.520000pt;}
.x77_c00304{left:726.636000pt;}
.x3b_c00304{left:735.360000pt;}
.x54_c00304{left:744.481333pt;}
.x58_c00304{left:745.921333pt;}
.x4d_c00304{left:755.041333pt;}
}





/* 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_c00305 {
    display:none;
  }
  .loading-indicator_c00305.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00305 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_c00305 { 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_c00305" -> "#page-container .classname_c00305")
 */
.pf_c00305 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00305 { /* 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_c00305.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00305 { /* 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_c00305 { /* 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_c00305 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00305 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00305 {overflow:visible;}
  }
}
.c_c00305 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00305 { /* 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_c00305:after { /* webkit #35443 */
  content: '';
}
.t_c00305:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00305 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 */
}
.__c00305 { /* 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_c00305 { /* info for Javascript */
  display:none;
}
.l_c00305 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00305 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00305 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00305: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_c00305 {
    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_c00305.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00305.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_c00305 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00305{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00305;src:url('chunks/assets/font_92d6bb63cbc780ceff7db400.woff2')format("woff");}.ff1_c00305{font-family:ff1_c00305;line-height:1.000000;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;}
.m12_c00305{transform:matrix(0.017790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.017790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.017790,0.000000,0.000000,0.250000,0,0);}
.ma_c00305{transform:matrix(0.040560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.040560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.040560,0.000000,0.000000,0.250000,0,0);}
.m19_c00305{transform:matrix(0.064515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.064515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.064515,0.000000,0.000000,0.250000,0,0);}
.m7_c00305{transform:matrix(0.112500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112500,0.000000,0.000000,0.250000,0,0);}
.mb_c00305{transform:matrix(0.116675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116675,0.000000,0.000000,0.250000,0,0);}
.m13_c00305{transform:matrix(0.133535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133535,0.000000,0.000000,0.250000,0,0);}
.md_c00305{transform:matrix(0.176090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176090,0.000000,0.000000,0.250000,0,0);}
.m4_c00305{transform:matrix(0.199035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199035,0.000000,0.000000,0.250000,0,0);}
.m11_c00305{transform:matrix(0.262395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262395,0.000000,0.000000,0.250000,0,0);}
.m1d_c00305{transform:matrix(0.295675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295675,0.000000,0.000000,0.250000,0,0);}
.m1a_c00305{transform:matrix(0.308870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308870,0.000000,0.000000,0.250000,0,0);}
.m15_c00305{transform:matrix(0.322585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322585,0.000000,0.000000,0.250000,0,0);}
.m1e_c00305{transform:matrix(0.327435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327435,0.000000,0.000000,0.250000,0,0);}
.mc_c00305{transform:matrix(0.355755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355755,0.000000,0.000000,0.250000,0,0);}
.m6_c00305{transform:matrix(0.358945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358945,0.000000,0.000000,0.250000,0,0);}
.m1f_c00305{transform:matrix(0.359340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359340,0.000000,0.000000,0.250000,0,0);}
.m14_c00305{transform:matrix(0.380105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380105,0.000000,0.000000,0.250000,0,0);}
.me_c00305{transform:matrix(0.408610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408610,0.000000,0.000000,0.250000,0,0);}
.m18_c00305{transform:matrix(0.417465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417465,0.000000,0.000000,0.250000,0,0);}
.m10_c00305{transform:matrix(0.467045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467045,0.000000,0.000000,0.250000,0,0);}
.m2_c00305{transform:matrix(0.487595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487595,0.000000,0.000000,0.250000,0,0);}
.m1c_c00305{transform:matrix(0.490950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490950,0.000000,0.000000,0.250000,0,0);}
.mf_c00305{transform:matrix(0.496645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.496645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.496645,0.000000,0.000000,0.250000,0,0);}
.m8_c00305{transform:matrix(0.581585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.581585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.581585,0.000000,0.000000,0.250000,0,0);}
.m16_c00305{transform:matrix(0.709465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.709465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.709465,0.000000,0.000000,0.250000,0,0);}
.m9_c00305{transform:matrix(0.729510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.729510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.729510,0.000000,0.000000,0.250000,0,0);}
.m0_c00305{transform:matrix(0.735650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735650,0.000000,0.000000,0.250000,0,0);}
.m3_c00305{transform:matrix(0.767935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.767935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.767935,0.000000,0.000000,0.250000,0,0);}
.m1b_c00305{transform:matrix(0.778265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.778265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.778265,0.000000,0.000000,0.250000,0,0);}
.m1_c00305{transform:matrix(1.018265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.018265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.018265,0.000000,0.000000,0.250000,0,0);}
.m5_c00305{transform:matrix(1.053235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.053235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.053235,0.000000,0.000000,0.250000,0,0);}
.m17_c00305{transform:matrix(1.401135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.401135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.401135,0.000000,0.000000,0.250000,0,0);}
.v0_c00305{vertical-align:0.000000px;}
.ls0_c00305{letter-spacing:0.000000px;}
.sc__c00305{text-shadow:none;}
.sc0_c00305{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__c00305{-webkit-text-stroke:0px transparent;}
.sc0_c00305{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00305{word-spacing:0.000000px;}
.fc0_c00305{color:transparent;}
.fs0_c00305{font-size:24.000000px;}
.fs1_c00305{font-size:30.000000px;}
.fs3_c00305{font-size:36.000000px;}
.fs2_c00305{font-size:48.000000px;}
.y0_c00305{bottom:0.000000px;}
.yb_c00305{bottom:181.287000px;}
.ya_c00305{bottom:190.080000px;}
.y9_c00305{bottom:437.535000px;}
.y8_c00305{bottom:443.607000px;}
.y7_c00305{bottom:695.923500px;}
.y6_c00305{bottom:1064.604000px;}
.y4_c00305{bottom:1064.880000px;}
.y3_c00305{bottom:1068.120000px;}
.y5_c00305{bottom:1068.126000px;}
.y2_c00305{bottom:1083.510000px;}
.y1_c00305{bottom:1091.748000px;}
.h2_c00305{height:24.000000px;}
.h3_c00305{height:30.000000px;}
.h5_c00305{height:36.000000px;}
.h4_c00305{height:48.000000px;}
.h1_c00305{height:1165.500000px;}
.h0_c00305{height:1165.800000px;}
.w0_c00305{width:915.000000px;}
.x0_c00305{left:0.000000px;}
.xf_c00305{left:317.520000px;}
.x10_c00305{left:332.910000px;}
.x4_c00305{left:414.180000px;}
.x1_c00305{left:417.420000px;}
.x8_c00305{left:422.010000px;}
.x19_c00305{left:424.170000px;}
.x2_c00305{left:445.770000px;}
.x16_c00305{left:451.170000px;}
.x5_c00305{left:454.140000px;}
.xc_c00305{left:455.760000px;}
.x6_c00305{left:457.920000px;}
.x9_c00305{left:459.540000px;}
.xd_c00305{left:462.780000px;}
.xa_c00305{left:468.720000px;}
.x17_c00305{left:476.010000px;}
.x1a_c00305{left:479.520000px;}
.xb_c00305{left:484.650000px;}
.x1b_c00305{left:485.730000px;}
.xe_c00305{left:491.130000px;}
.x18_c00305{left:495.450000px;}
.x3_c00305{left:505.170000px;}
.x7_c00305{left:540.810000px;}
.x11_c00305{left:667.170000px;}
.x14_c00305{left:675.540000px;}
.x12_c00305{left:680.400000px;}
.x13_c00305{left:688.500000px;}
.x15_c00305{left:692.820000px;}
@media print{
.v0_c00305{vertical-align:0.000000pt;}
.ls0_c00305{letter-spacing:0.000000pt;}
.ws0_c00305{word-spacing:0.000000pt;}
.fs0_c00305{font-size:21.333333pt;}
.fs1_c00305{font-size:26.666667pt;}
.fs3_c00305{font-size:32.000000pt;}
.fs2_c00305{font-size:42.666667pt;}
.y0_c00305{bottom:0.000000pt;}
.yb_c00305{bottom:161.144000pt;}
.ya_c00305{bottom:168.960000pt;}
.y9_c00305{bottom:388.920000pt;}
.y8_c00305{bottom:394.317333pt;}
.y7_c00305{bottom:618.598667pt;}
.y6_c00305{bottom:946.314667pt;}
.y4_c00305{bottom:946.560000pt;}
.y3_c00305{bottom:949.440000pt;}
.y5_c00305{bottom:949.445333pt;}
.y2_c00305{bottom:963.120000pt;}
.y1_c00305{bottom:970.442667pt;}
.h2_c00305{height:21.333333pt;}
.h3_c00305{height:26.666667pt;}
.h5_c00305{height:32.000000pt;}
.h4_c00305{height:42.666667pt;}
.h1_c00305{height:1036.000000pt;}
.h0_c00305{height:1036.266667pt;}
.w0_c00305{width:813.333333pt;}
.x0_c00305{left:0.000000pt;}
.xf_c00305{left:282.240000pt;}
.x10_c00305{left:295.920000pt;}
.x4_c00305{left:368.160000pt;}
.x1_c00305{left:371.040000pt;}
.x8_c00305{left:375.120000pt;}
.x19_c00305{left:377.040000pt;}
.x2_c00305{left:396.240000pt;}
.x16_c00305{left:401.040000pt;}
.x5_c00305{left:403.680000pt;}
.xc_c00305{left:405.120000pt;}
.x6_c00305{left:407.040000pt;}
.x9_c00305{left:408.480000pt;}
.xd_c00305{left:411.360000pt;}
.xa_c00305{left:416.640000pt;}
.x17_c00305{left:423.120000pt;}
.x1a_c00305{left:426.240000pt;}
.xb_c00305{left:430.800000pt;}
.x1b_c00305{left:431.760000pt;}
.xe_c00305{left:436.560000pt;}
.x18_c00305{left:440.400000pt;}
.x3_c00305{left:449.040000pt;}
.x7_c00305{left:480.720000pt;}
.x11_c00305{left:593.040000pt;}
.x14_c00305{left:600.480000pt;}
.x12_c00305{left:604.800000pt;}
.x13_c00305{left:612.000000pt;}
.x15_c00305{left:615.840000pt;}
}





/* 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_c00306 {
    display:none;
  }
  .loading-indicator_c00306.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00306 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_c00306 { 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_c00306" -> "#page-container .classname_c00306")
 */
.pf_c00306 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00306 { /* 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_c00306.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00306 { /* 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_c00306 { /* 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_c00306 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00306 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00306 {overflow:visible;}
  }
}
.c_c00306 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00306 { /* 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_c00306:after { /* webkit #35443 */
  content: '';
}
.t_c00306:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00306 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 */
}
.__c00306 { /* 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_c00306 { /* info for Javascript */
  display:none;
}
.l_c00306 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00306 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00306 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00306: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_c00306 {
    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_c00306.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00306.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_c00306 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00306{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00306;src:url('chunks/assets/font_c605e72f209fc835e906f064.woff2')format("woff");}.ff1_c00306{font-family:ff1_c00306;line-height:1.000000;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;}
.m79_c00306{transform:matrix(0.137155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137155,0.000000,0.000000,0.250000,0,0);}
.m107_c00306{transform:matrix(0.142145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142145,0.000000,0.000000,0.250000,0,0);}
.m136_c00306{transform:matrix(0.143560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143560,0.000000,0.000000,0.250000,0,0);}
.m7d_c00306{transform:matrix(0.149330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149330,0.000000,0.000000,0.250000,0,0);}
.mc8_c00306{transform:matrix(0.152432,0.000915,-0.001500,0.249996,0,0);-ms-transform:matrix(0.152432,0.000915,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.152432,0.000915,-0.001500,0.249996,0,0);}
.m101_c00306{transform:matrix(0.159380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159380,0.000000,0.000000,0.250000,0,0);}
.mca_c00306{transform:matrix(0.173832,0.001043,-0.001500,0.249996,0,0);-ms-transform:matrix(0.173832,0.001043,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.173832,0.001043,-0.001500,0.249996,0,0);}
.m56_c00306{transform:matrix(0.184448,0.000922,-0.001250,0.249997,0,0);-ms-transform:matrix(0.184448,0.000922,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.184448,0.000922,-0.001250,0.249997,0,0);}
.m24_c00306{transform:matrix(0.186043,0.000930,-0.001250,0.249997,0,0);-ms-transform:matrix(0.186043,0.000930,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.186043,0.000930,-0.001250,0.249997,0,0);}
.m6_c00306{transform:matrix(0.186868,0.000934,-0.001250,0.249997,0,0);-ms-transform:matrix(0.186868,0.000934,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.186868,0.000934,-0.001250,0.249997,0,0);}
.m13c_c00306{transform:matrix(0.187490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187490,0.000000,0.000000,0.250000,0,0);}
.m3_c00306{transform:matrix(0.188768,0.000944,-0.001250,0.249997,0,0);-ms-transform:matrix(0.188768,0.000944,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.188768,0.000944,-0.001250,0.249997,0,0);}
.ma8_c00306{transform:matrix(0.189440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189440,0.000000,0.000000,0.250000,0,0);}
.maa_c00306{transform:matrix(0.190028,0.000950,-0.001250,0.249997,0,0);-ms-transform:matrix(0.190028,0.000950,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.190028,0.000950,-0.001250,0.249997,0,0);}
.m132_c00306{transform:matrix(0.190265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190265,0.000000,0.000000,0.250000,0,0);}
.m131_c00306{transform:matrix(0.191930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191930,0.000000,0.000000,0.250000,0,0);}
.m121_c00306{transform:matrix(0.192150,0.001345,-0.001750,0.249994,0,0);-ms-transform:matrix(0.192150,0.001345,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.192150,0.001345,-0.001750,0.249994,0,0);}
.m11a_c00306{transform:matrix(0.192235,0.001346,-0.001750,0.249994,0,0);-ms-transform:matrix(0.192235,0.001346,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.192235,0.001346,-0.001750,0.249994,0,0);}
.m120_c00306{transform:matrix(0.192900,0.001350,-0.001750,0.249994,0,0);-ms-transform:matrix(0.192900,0.001350,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.192900,0.001350,-0.001750,0.249994,0,0);}
.m54_c00306{transform:matrix(0.193203,0.000966,-0.001250,0.249997,0,0);-ms-transform:matrix(0.193203,0.000966,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.193203,0.000966,-0.001250,0.249997,0,0);}
.m127_c00306{transform:matrix(0.193305,0.001353,-0.001750,0.249994,0,0);-ms-transform:matrix(0.193305,0.001353,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.193305,0.001353,-0.001750,0.249994,0,0);}
.m11b_c00306{transform:matrix(0.193445,0.001354,-0.001750,0.249994,0,0);-ms-transform:matrix(0.193445,0.001354,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.193445,0.001354,-0.001750,0.249994,0,0);}
.m11d_c00306{transform:matrix(0.194185,0.001359,-0.001750,0.249994,0,0);-ms-transform:matrix(0.194185,0.001359,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.194185,0.001359,-0.001750,0.249994,0,0);}
.m12e_c00306{transform:matrix(0.194295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194295,0.000000,0.000000,0.250000,0,0);}
.m23_c00306{transform:matrix(0.194873,0.000974,-0.001250,0.249997,0,0);-ms-transform:matrix(0.194873,0.000974,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.194873,0.000974,-0.001250,0.249997,0,0);}
.m108_c00306{transform:matrix(0.195125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195125,0.000000,0.000000,0.250000,0,0);}
.m52_c00306{transform:matrix(0.195643,0.000978,-0.001250,0.249997,0,0);-ms-transform:matrix(0.195643,0.000978,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.195643,0.000978,-0.001250,0.249997,0,0);}
.m70_c00306{transform:matrix(0.196363,0.000982,-0.001250,0.249997,0,0);-ms-transform:matrix(0.196363,0.000982,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.196363,0.000982,-0.001250,0.249997,0,0);}
.m140_c00306{transform:matrix(0.197050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197050,0.000000,0.000000,0.250000,0,0);}
.ma3_c00306{transform:matrix(0.197475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197475,0.000000,0.000000,0.250000,0,0);}
.m139_c00306{transform:matrix(0.197740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197740,0.000000,0.000000,0.250000,0,0);}
.m50_c00306{transform:matrix(0.198408,0.000992,-0.001250,0.249997,0,0);-ms-transform:matrix(0.198408,0.000992,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.198408,0.000992,-0.001250,0.249997,0,0);}
.m12c_c00306{transform:matrix(0.198555,0.001390,-0.001750,0.249994,0,0);-ms-transform:matrix(0.198555,0.001390,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.198555,0.001390,-0.001750,0.249994,0,0);}
.m28_c00306{transform:matrix(0.198643,0.000993,-0.001250,0.249997,0,0);-ms-transform:matrix(0.198643,0.000993,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.198643,0.000993,-0.001250,0.249997,0,0);}
.m13e_c00306{transform:matrix(0.199450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199450,0.000000,0.000000,0.250000,0,0);}
.m25_c00306{transform:matrix(0.199603,0.000998,-0.001250,0.249997,0,0);-ms-transform:matrix(0.199603,0.000998,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.199603,0.000998,-0.001250,0.249997,0,0);}
.m135_c00306{transform:matrix(0.200570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200570,0.000000,0.000000,0.250000,0,0);}
.m4a_c00306{transform:matrix(0.200877,0.001004,-0.001250,0.249997,0,0);-ms-transform:matrix(0.200877,0.001004,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.200877,0.001004,-0.001250,0.249997,0,0);}
.ma6_c00306{transform:matrix(0.201535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201535,0.000000,0.000000,0.250000,0,0);}
.m11c_c00306{transform:matrix(0.201785,0.001412,-0.001750,0.249994,0,0);-ms-transform:matrix(0.201785,0.001412,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.201785,0.001412,-0.001750,0.249994,0,0);}
.m2b_c00306{transform:matrix(0.201907,0.001010,-0.001250,0.249997,0,0);-ms-transform:matrix(0.201907,0.001010,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.201907,0.001010,-0.001250,0.249997,0,0);}
.m11f_c00306{transform:matrix(0.202045,0.001414,-0.001750,0.249994,0,0);-ms-transform:matrix(0.202045,0.001414,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.202045,0.001414,-0.001750,0.249994,0,0);}
.m11e_c00306{transform:matrix(0.202500,0.001418,-0.001750,0.249994,0,0);-ms-transform:matrix(0.202500,0.001418,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.202500,0.001418,-0.001750,0.249994,0,0);}
.m13f_c00306{transform:matrix(0.202590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202590,0.000000,0.000000,0.250000,0,0);}
.m84_c00306{transform:matrix(0.203170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203170,0.000000,0.000000,0.250000,0,0);}
.m49_c00306{transform:matrix(0.203197,0.001016,-0.001250,0.249997,0,0);-ms-transform:matrix(0.203197,0.001016,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.203197,0.001016,-0.001250,0.249997,0,0);}
.m134_c00306{transform:matrix(0.203215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203215,0.000000,0.000000,0.250000,0,0);}
.ma7_c00306{transform:matrix(0.203240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203240,0.000000,0.000000,0.250000,0,0);}
.m138_c00306{transform:matrix(0.203510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203510,0.000000,0.000000,0.250000,0,0);}
.m106_c00306{transform:matrix(0.203570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203570,0.000000,0.000000,0.250000,0,0);}
.m13d_c00306{transform:matrix(0.203655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203655,0.000000,0.000000,0.250000,0,0);}
.mda_c00306{transform:matrix(0.204016,0.001224,-0.001500,0.249996,0,0);-ms-transform:matrix(0.204016,0.001224,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.204016,0.001224,-0.001500,0.249996,0,0);}
.m4_c00306{transform:matrix(0.204017,0.001020,-0.001250,0.249997,0,0);-ms-transform:matrix(0.204017,0.001020,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.204017,0.001020,-0.001250,0.249997,0,0);}
.ma9_c00306{transform:matrix(0.204162,0.001021,-0.001250,0.249997,0,0);-ms-transform:matrix(0.204162,0.001021,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.204162,0.001021,-0.001250,0.249997,0,0);}
.m10c_c00306{transform:matrix(0.204390,0.001431,-0.001750,0.249994,0,0);-ms-transform:matrix(0.204390,0.001431,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.204390,0.001431,-0.001750,0.249994,0,0);}
.m137_c00306{transform:matrix(0.204600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204600,0.000000,0.000000,0.250000,0,0);}
.mcb_c00306{transform:matrix(0.205051,0.001230,-0.001500,0.249996,0,0);-ms-transform:matrix(0.205051,0.001230,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.205051,0.001230,-0.001500,0.249996,0,0);}
.ma1_c00306{transform:matrix(0.206080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206080,0.000000,0.000000,0.250000,0,0);}
.m128_c00306{transform:matrix(0.207500,0.001452,-0.001750,0.249994,0,0);-ms-transform:matrix(0.207500,0.001452,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.207500,0.001452,-0.001750,0.249994,0,0);}
.ma5_c00306{transform:matrix(0.207550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207550,0.000000,0.000000,0.250000,0,0);}
.m97_c00306{transform:matrix(0.207565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207565,0.000000,0.000000,0.250000,0,0);}
.m122_c00306{transform:matrix(0.207840,0.001455,-0.001750,0.249994,0,0);-ms-transform:matrix(0.207840,0.001455,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.207840,0.001455,-0.001750,0.249994,0,0);}
.m7f_c00306{transform:matrix(0.208065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208065,0.000000,0.000000,0.250000,0,0);}
.m12f_c00306{transform:matrix(0.208100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208100,0.000000,0.000000,0.250000,0,0);}
.mae_c00306{transform:matrix(0.208387,0.001042,-0.001250,0.249997,0,0);-ms-transform:matrix(0.208387,0.001042,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.208387,0.001042,-0.001250,0.249997,0,0);}
.m102_c00306{transform:matrix(0.208675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208675,0.000000,0.000000,0.250000,0,0);}
.m2c_c00306{transform:matrix(0.209187,0.001046,-0.001250,0.249997,0,0);-ms-transform:matrix(0.209187,0.001046,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.209187,0.001046,-0.001250,0.249997,0,0);}
.m109_c00306{transform:matrix(0.209800,0.001469,-0.001750,0.249994,0,0);-ms-transform:matrix(0.209800,0.001469,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.209800,0.001469,-0.001750,0.249994,0,0);}
.m99_c00306{transform:matrix(0.210555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210555,0.000000,0.000000,0.250000,0,0);}
.mc1_c00306{transform:matrix(0.210692,0.001053,-0.001250,0.249997,0,0);-ms-transform:matrix(0.210692,0.001053,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.210692,0.001053,-0.001250,0.249997,0,0);}
.m65_c00306{transform:matrix(0.210827,0.001054,-0.001250,0.249997,0,0);-ms-transform:matrix(0.210827,0.001054,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.210827,0.001054,-0.001250,0.249997,0,0);}
.m124_c00306{transform:matrix(0.211280,0.001479,-0.001750,0.249994,0,0);-ms-transform:matrix(0.211280,0.001479,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.211280,0.001479,-0.001750,0.249994,0,0);}
.m10f_c00306{transform:matrix(0.211615,0.001481,-0.001750,0.249994,0,0);-ms-transform:matrix(0.211615,0.001481,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.211615,0.001481,-0.001750,0.249994,0,0);}
.m123_c00306{transform:matrix(0.211960,0.001484,-0.001750,0.249994,0,0);-ms-transform:matrix(0.211960,0.001484,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.211960,0.001484,-0.001750,0.249994,0,0);}
.ma4_c00306{transform:matrix(0.212050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212050,0.000000,0.000000,0.250000,0,0);}
.m4d_c00306{transform:matrix(0.212297,0.001061,-0.001250,0.249997,0,0);-ms-transform:matrix(0.212297,0.001061,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.212297,0.001061,-0.001250,0.249997,0,0);}
.m31_c00306{transform:matrix(0.212607,0.001063,-0.001250,0.249997,0,0);-ms-transform:matrix(0.212607,0.001063,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.212607,0.001063,-0.001250,0.249997,0,0);}
.mf3_c00306{transform:matrix(0.212718,0.000851,-0.001000,0.249998,0,0);-ms-transform:matrix(0.212718,0.000851,-0.001000,0.249998,0,0);-webkit-transform:matrix(0.212718,0.000851,-0.001000,0.249998,0,0);}
.m4c_c00306{transform:matrix(0.212777,0.001064,-0.001250,0.249997,0,0);-ms-transform:matrix(0.212777,0.001064,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.212777,0.001064,-0.001250,0.249997,0,0);}
.me5_c00306{transform:matrix(0.213071,0.001278,-0.001500,0.249996,0,0);-ms-transform:matrix(0.213071,0.001278,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.213071,0.001278,-0.001500,0.249996,0,0);}
.mbd_c00306{transform:matrix(0.213072,0.001065,-0.001250,0.249997,0,0);-ms-transform:matrix(0.213072,0.001065,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.213072,0.001065,-0.001250,0.249997,0,0);}
.m1e_c00306{transform:matrix(0.213132,0.001066,-0.001250,0.249997,0,0);-ms-transform:matrix(0.213132,0.001066,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.213132,0.001066,-0.001250,0.249997,0,0);}
.mf6_c00306{transform:matrix(0.214118,0.000856,-0.001000,0.249998,0,0);-ms-transform:matrix(0.214118,0.000856,-0.001000,0.249998,0,0);-webkit-transform:matrix(0.214118,0.000856,-0.001000,0.249998,0,0);}
.md0_c00306{transform:matrix(0.215146,0.001291,-0.001500,0.249996,0,0);-ms-transform:matrix(0.215146,0.001291,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.215146,0.001291,-0.001500,0.249996,0,0);}
.m13a_c00306{transform:matrix(0.216160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216160,0.000000,0.000000,0.250000,0,0);}
.ma2_c00306{transform:matrix(0.216205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216205,0.000000,0.000000,0.250000,0,0);}
.md2_c00306{transform:matrix(0.216331,0.001298,-0.001500,0.249996,0,0);-ms-transform:matrix(0.216331,0.001298,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.216331,0.001298,-0.001500,0.249996,0,0);}
.m64_c00306{transform:matrix(0.216332,0.001082,-0.001250,0.249997,0,0);-ms-transform:matrix(0.216332,0.001082,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.216332,0.001082,-0.001250,0.249997,0,0);}
.m5d_c00306{transform:matrix(0.216947,0.001085,-0.001250,0.249997,0,0);-ms-transform:matrix(0.216947,0.001085,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.216947,0.001085,-0.001250,0.249997,0,0);}
.m29_c00306{transform:matrix(0.217097,0.001085,-0.001250,0.249997,0,0);-ms-transform:matrix(0.217097,0.001085,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.217097,0.001085,-0.001250,0.249997,0,0);}
.m130_c00306{transform:matrix(0.217450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217450,0.000000,0.000000,0.250000,0,0);}
.mde_c00306{transform:matrix(0.217526,0.001305,-0.001500,0.249996,0,0);-ms-transform:matrix(0.217526,0.001305,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.217526,0.001305,-0.001500,0.249996,0,0);}
.m2_c00306{transform:matrix(0.217822,0.001089,-0.001250,0.249997,0,0);-ms-transform:matrix(0.217822,0.001089,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.217822,0.001089,-0.001250,0.249997,0,0);}
.m16_c00306{transform:matrix(0.218362,0.001092,-0.001250,0.249997,0,0);-ms-transform:matrix(0.218362,0.001092,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.218362,0.001092,-0.001250,0.249997,0,0);}
.m13b_c00306{transform:matrix(0.218550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218550,0.000000,0.000000,0.250000,0,0);}
.md6_c00306{transform:matrix(0.218616,0.001312,-0.001500,0.249996,0,0);-ms-transform:matrix(0.218616,0.001312,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.218616,0.001312,-0.001500,0.249996,0,0);}
.m10b_c00306{transform:matrix(0.218735,0.001531,-0.001750,0.249994,0,0);-ms-transform:matrix(0.218735,0.001531,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.218735,0.001531,-0.001750,0.249994,0,0);}
.m5f_c00306{transform:matrix(0.218737,0.001094,-0.001250,0.249997,0,0);-ms-transform:matrix(0.218737,0.001094,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.218737,0.001094,-0.001250,0.249997,0,0);}
.m10e_c00306{transform:matrix(0.218745,0.001531,-0.001750,0.249994,0,0);-ms-transform:matrix(0.218745,0.001531,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.218745,0.001531,-0.001750,0.249994,0,0);}
.maf_c00306{transform:matrix(0.219362,0.001097,-0.001250,0.249997,0,0);-ms-transform:matrix(0.219362,0.001097,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.219362,0.001097,-0.001250,0.249997,0,0);}
.md9_c00306{transform:matrix(0.219416,0.001316,-0.001500,0.249996,0,0);-ms-transform:matrix(0.219416,0.001316,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.219416,0.001316,-0.001500,0.249996,0,0);}
.m47_c00306{transform:matrix(0.219417,0.001097,-0.001250,0.249997,0,0);-ms-transform:matrix(0.219417,0.001097,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.219417,0.001097,-0.001250,0.249997,0,0);}
.m81_c00306{transform:matrix(0.219535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219535,0.000000,0.000000,0.250000,0,0);}
.m2a_c00306{transform:matrix(0.219782,0.001099,-0.001250,0.249997,0,0);-ms-transform:matrix(0.219782,0.001099,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.219782,0.001099,-0.001250,0.249997,0,0);}
.m5c_c00306{transform:matrix(0.220007,0.001100,-0.001250,0.249997,0,0);-ms-transform:matrix(0.220007,0.001100,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.220007,0.001100,-0.001250,0.249997,0,0);}
.mc9_c00306{transform:matrix(0.220666,0.001324,-0.001500,0.249996,0,0);-ms-transform:matrix(0.220666,0.001324,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.220666,0.001324,-0.001500,0.249996,0,0);}
.m112_c00306{transform:matrix(0.220755,0.001545,-0.001750,0.249994,0,0);-ms-transform:matrix(0.220755,0.001545,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.220755,0.001545,-0.001750,0.249994,0,0);}
.m8_c00306{transform:matrix(0.220772,0.001104,-0.001250,0.249997,0,0);-ms-transform:matrix(0.220772,0.001104,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.220772,0.001104,-0.001250,0.249997,0,0);}
.m9f_c00306{transform:matrix(0.220830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220830,0.000000,0.000000,0.250000,0,0);}
.mab_c00306{transform:matrix(0.221002,0.001105,-0.001250,0.249997,0,0);-ms-transform:matrix(0.221002,0.001105,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.221002,0.001105,-0.001250,0.249997,0,0);}
.m62_c00306{transform:matrix(0.221177,0.001106,-0.001250,0.249997,0,0);-ms-transform:matrix(0.221177,0.001106,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.221177,0.001106,-0.001250,0.249997,0,0);}
.m27_c00306{transform:matrix(0.221352,0.001107,-0.001250,0.249997,0,0);-ms-transform:matrix(0.221352,0.001107,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.221352,0.001107,-0.001250,0.249997,0,0);}
.m118_c00306{transform:matrix(0.221385,0.001550,-0.001750,0.249994,0,0);-ms-transform:matrix(0.221385,0.001550,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.221385,0.001550,-0.001750,0.249994,0,0);}
.m5b_c00306{transform:matrix(0.221387,0.001107,-0.001250,0.249997,0,0);-ms-transform:matrix(0.221387,0.001107,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.221387,0.001107,-0.001250,0.249997,0,0);}
.m133_c00306{transform:matrix(0.221450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221450,0.000000,0.000000,0.250000,0,0);}
.mb0_c00306{transform:matrix(0.221812,0.001109,-0.001250,0.249997,0,0);-ms-transform:matrix(0.221812,0.001109,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.221812,0.001109,-0.001250,0.249997,0,0);}
.md8_c00306{transform:matrix(0.222011,0.001332,-0.001500,0.249996,0,0);-ms-transform:matrix(0.222011,0.001332,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.222011,0.001332,-0.001500,0.249996,0,0);}
.m11_c00306{transform:matrix(0.222307,0.001112,-0.001250,0.249997,0,0);-ms-transform:matrix(0.222307,0.001112,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.222307,0.001112,-0.001250,0.249997,0,0);}
.m126_c00306{transform:matrix(0.222690,0.001559,-0.001750,0.249994,0,0);-ms-transform:matrix(0.222690,0.001559,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.222690,0.001559,-0.001750,0.249994,0,0);}
.m13_c00306{transform:matrix(0.223052,0.001115,-0.001250,0.249997,0,0);-ms-transform:matrix(0.223052,0.001115,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.223052,0.001115,-0.001250,0.249997,0,0);}
.m26_c00306{transform:matrix(0.223247,0.001116,-0.001250,0.249997,0,0);-ms-transform:matrix(0.223247,0.001116,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.223247,0.001116,-0.001250,0.249997,0,0);}
.md4_c00306{transform:matrix(0.223891,0.001343,-0.001500,0.249996,0,0);-ms-transform:matrix(0.223891,0.001343,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.223891,0.001343,-0.001500,0.249996,0,0);}
.m2e_c00306{transform:matrix(0.223952,0.001120,-0.001250,0.249997,0,0);-ms-transform:matrix(0.223952,0.001120,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.223952,0.001120,-0.001250,0.249997,0,0);}
.m32_c00306{transform:matrix(0.224032,0.001120,-0.001250,0.249997,0,0);-ms-transform:matrix(0.224032,0.001120,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.224032,0.001120,-0.001250,0.249997,0,0);}
.m12d_c00306{transform:matrix(0.224265,0.001570,-0.001750,0.249994,0,0);-ms-transform:matrix(0.224265,0.001570,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.224265,0.001570,-0.001750,0.249994,0,0);}
.md_c00306{transform:matrix(0.224652,0.001123,-0.001250,0.249997,0,0);-ms-transform:matrix(0.224652,0.001123,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.224652,0.001123,-0.001250,0.249997,0,0);}
.m2d_c00306{transform:matrix(0.224687,0.001123,-0.001250,0.249997,0,0);-ms-transform:matrix(0.224687,0.001123,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.224687,0.001123,-0.001250,0.249997,0,0);}
.md7_c00306{transform:matrix(0.224786,0.001349,-0.001500,0.249996,0,0);-ms-transform:matrix(0.224786,0.001349,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.224786,0.001349,-0.001500,0.249996,0,0);}
.m4e_c00306{transform:matrix(0.224912,0.001125,-0.001250,0.249997,0,0);-ms-transform:matrix(0.224912,0.001125,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.224912,0.001125,-0.001250,0.249997,0,0);}
.me2_c00306{transform:matrix(0.225116,0.001351,-0.001500,0.249996,0,0);-ms-transform:matrix(0.225116,0.001351,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.225116,0.001351,-0.001500,0.249996,0,0);}
.m105_c00306{transform:matrix(0.225120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225120,0.000000,0.000000,0.250000,0,0);}
.m45_c00306{transform:matrix(0.225252,0.001126,-0.001250,0.249997,0,0);-ms-transform:matrix(0.225252,0.001126,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.225252,0.001126,-0.001250,0.249997,0,0);}
.mac_c00306{transform:matrix(0.225322,0.001127,-0.001250,0.249997,0,0);-ms-transform:matrix(0.225322,0.001127,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.225322,0.001127,-0.001250,0.249997,0,0);}
.m22_c00306{transform:matrix(0.225462,0.001127,-0.001250,0.249997,0,0);-ms-transform:matrix(0.225462,0.001127,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.225462,0.001127,-0.001250,0.249997,0,0);}
.m17_c00306{transform:matrix(0.226022,0.001130,-0.001250,0.249997,0,0);-ms-transform:matrix(0.226022,0.001130,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.226022,0.001130,-0.001250,0.249997,0,0);}
.m12a_c00306{transform:matrix(0.226519,0.001586,-0.001750,0.249994,0,0);-ms-transform:matrix(0.226519,0.001586,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.226519,0.001586,-0.001750,0.249994,0,0);}
.mc3_c00306{transform:matrix(0.226682,0.001133,-0.001250,0.249997,0,0);-ms-transform:matrix(0.226682,0.001133,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.226682,0.001133,-0.001250,0.249997,0,0);}
.m59_c00306{transform:matrix(0.226687,0.001133,-0.001250,0.249997,0,0);-ms-transform:matrix(0.226687,0.001133,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.226687,0.001133,-0.001250,0.249997,0,0);}
.m60_c00306{transform:matrix(0.226857,0.001134,-0.001250,0.249997,0,0);-ms-transform:matrix(0.226857,0.001134,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.226857,0.001134,-0.001250,0.249997,0,0);}
.m129_c00306{transform:matrix(0.226864,0.001588,-0.001750,0.249994,0,0);-ms-transform:matrix(0.226864,0.001588,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.226864,0.001588,-0.001750,0.249994,0,0);}
.mbb_c00306{transform:matrix(0.227077,0.001135,-0.001250,0.249997,0,0);-ms-transform:matrix(0.227077,0.001135,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.227077,0.001135,-0.001250,0.249997,0,0);}
.mdf_c00306{transform:matrix(0.227121,0.001363,-0.001500,0.249996,0,0);-ms-transform:matrix(0.227121,0.001363,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.227121,0.001363,-0.001500,0.249996,0,0);}
.m0_c00306{transform:matrix(0.227480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227480,0.000000,0.000000,0.250000,0,0);}
.md3_c00306{transform:matrix(0.228006,0.001368,-0.001500,0.249996,0,0);-ms-transform:matrix(0.228006,0.001368,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.228006,0.001368,-0.001500,0.249996,0,0);}
.mad_c00306{transform:matrix(0.228022,0.001140,-0.001250,0.249997,0,0);-ms-transform:matrix(0.228022,0.001140,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.228022,0.001140,-0.001250,0.249997,0,0);}
.m94_c00306{transform:matrix(0.228100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228100,0.000000,0.000000,0.250000,0,0);}
.mff_c00306{transform:matrix(0.228755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228755,0.000000,0.000000,0.250000,0,0);}
.m38_c00306{transform:matrix(0.229192,0.001146,-0.001250,0.249997,0,0);-ms-transform:matrix(0.229192,0.001146,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.229192,0.001146,-0.001250,0.249997,0,0);}
.m18_c00306{transform:matrix(0.229772,0.001149,-0.001250,0.249997,0,0);-ms-transform:matrix(0.229772,0.001149,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.229772,0.001149,-0.001250,0.249997,0,0);}
.m1b_c00306{transform:matrix(0.229947,0.001150,-0.001250,0.249997,0,0);-ms-transform:matrix(0.229947,0.001150,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.229947,0.001150,-0.001250,0.249997,0,0);}
.m119_c00306{transform:matrix(0.230034,0.001610,-0.001750,0.249994,0,0);-ms-transform:matrix(0.230034,0.001610,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.230034,0.001610,-0.001750,0.249994,0,0);}
.m48_c00306{transform:matrix(0.230107,0.001151,-0.001250,0.249997,0,0);-ms-transform:matrix(0.230107,0.001151,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.230107,0.001151,-0.001250,0.249997,0,0);}
.mc6_c00306{transform:matrix(0.230177,0.001151,-0.001250,0.249997,0,0);-ms-transform:matrix(0.230177,0.001151,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.230177,0.001151,-0.001250,0.249997,0,0);}
.mce_c00306{transform:matrix(0.230461,0.001383,-0.001500,0.249996,0,0);-ms-transform:matrix(0.230461,0.001383,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.230461,0.001383,-0.001500,0.249996,0,0);}
.m4f_c00306{transform:matrix(0.230872,0.001154,-0.001250,0.249997,0,0);-ms-transform:matrix(0.230872,0.001154,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.230872,0.001154,-0.001250,0.249997,0,0);}
.m61_c00306{transform:matrix(0.231007,0.001155,-0.001250,0.249997,0,0);-ms-transform:matrix(0.231007,0.001155,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.231007,0.001155,-0.001250,0.249997,0,0);}
.me8_c00306{transform:matrix(0.231056,0.001386,-0.001500,0.249996,0,0);-ms-transform:matrix(0.231056,0.001386,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.231056,0.001386,-0.001500,0.249996,0,0);}
.m12_c00306{transform:matrix(0.231057,0.001155,-0.001250,0.249997,0,0);-ms-transform:matrix(0.231057,0.001155,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.231057,0.001155,-0.001250,0.249997,0,0);}
.mee_c00306{transform:matrix(0.231058,0.000924,-0.001000,0.249998,0,0);-ms-transform:matrix(0.231058,0.000924,-0.001000,0.249998,0,0);-webkit-transform:matrix(0.231058,0.000924,-0.001000,0.249998,0,0);}
.m12b_c00306{transform:matrix(0.231444,0.001620,-0.001750,0.249994,0,0);-ms-transform:matrix(0.231444,0.001620,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.231444,0.001620,-0.001750,0.249994,0,0);}
.m5_c00306{transform:matrix(0.231582,0.001158,-0.001250,0.249997,0,0);-ms-transform:matrix(0.231582,0.001158,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.231582,0.001158,-0.001250,0.249997,0,0);}
.mf_c00306{transform:matrix(0.231642,0.001158,-0.001250,0.249997,0,0);-ms-transform:matrix(0.231642,0.001158,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.231642,0.001158,-0.001250,0.249997,0,0);}
.m34_c00306{transform:matrix(0.231697,0.001158,-0.001250,0.249997,0,0);-ms-transform:matrix(0.231697,0.001158,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.231697,0.001158,-0.001250,0.249997,0,0);}
.mc5_c00306{transform:matrix(0.231872,0.001159,-0.001250,0.249997,0,0);-ms-transform:matrix(0.231872,0.001159,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.231872,0.001159,-0.001250,0.249997,0,0);}
.m1c_c00306{transform:matrix(0.232062,0.001160,-0.001250,0.249997,0,0);-ms-transform:matrix(0.232062,0.001160,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.232062,0.001160,-0.001250,0.249997,0,0);}
.mbc_c00306{transform:matrix(0.232102,0.001161,-0.001250,0.249997,0,0);-ms-transform:matrix(0.232102,0.001161,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.232102,0.001161,-0.001250,0.249997,0,0);}
.m46_c00306{transform:matrix(0.232112,0.001161,-0.001250,0.249997,0,0);-ms-transform:matrix(0.232112,0.001161,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.232112,0.001161,-0.001250,0.249997,0,0);}
.m7_c00306{transform:matrix(0.232142,0.001161,-0.001250,0.249997,0,0);-ms-transform:matrix(0.232142,0.001161,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.232142,0.001161,-0.001250,0.249997,0,0);}
.m111_c00306{transform:matrix(0.232189,0.001625,-0.001750,0.249994,0,0);-ms-transform:matrix(0.232189,0.001625,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.232189,0.001625,-0.001750,0.249994,0,0);}
.mfb_c00306{transform:matrix(0.232335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232335,0.000000,0.000000,0.250000,0,0);}
.m6b_c00306{transform:matrix(0.232517,0.001163,-0.001250,0.249997,0,0);-ms-transform:matrix(0.232517,0.001163,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.232517,0.001163,-0.001250,0.249997,0,0);}
.mdb_c00306{transform:matrix(0.232551,0.001395,-0.001500,0.249996,0,0);-ms-transform:matrix(0.232551,0.001395,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.232551,0.001395,-0.001500,0.249996,0,0);}
.mcd_c00306{transform:matrix(0.232756,0.001397,-0.001500,0.249996,0,0);-ms-transform:matrix(0.232756,0.001397,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.232756,0.001397,-0.001500,0.249996,0,0);}
.m117_c00306{transform:matrix(0.232794,0.001630,-0.001750,0.249994,0,0);-ms-transform:matrix(0.232794,0.001630,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.232794,0.001630,-0.001750,0.249994,0,0);}
.m72_c00306{transform:matrix(0.232975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232975,0.000000,0.000000,0.250000,0,0);}
.m9_c00306{transform:matrix(0.233002,0.001165,-0.001250,0.249997,0,0);-ms-transform:matrix(0.233002,0.001165,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.233002,0.001165,-0.001250,0.249997,0,0);}
.mb_c00306{transform:matrix(0.233287,0.001166,-0.001250,0.249997,0,0);-ms-transform:matrix(0.233287,0.001166,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.233287,0.001166,-0.001250,0.249997,0,0);}
.ma_c00306{transform:matrix(0.233402,0.001167,-0.001250,0.249997,0,0);-ms-transform:matrix(0.233402,0.001167,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.233402,0.001167,-0.001250,0.249997,0,0);}
.m35_c00306{transform:matrix(0.233797,0.001169,-0.001250,0.249997,0,0);-ms-transform:matrix(0.233797,0.001169,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.233797,0.001169,-0.001250,0.249997,0,0);}
.m7e_c00306{transform:matrix(0.233800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233800,0.000000,0.000000,0.250000,0,0);}
.m57_c00306{transform:matrix(0.233827,0.001169,-0.001250,0.249997,0,0);-ms-transform:matrix(0.233827,0.001169,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.233827,0.001169,-0.001250,0.249997,0,0);}
.m5a_c00306{transform:matrix(0.234132,0.001171,-0.001250,0.249997,0,0);-ms-transform:matrix(0.234132,0.001171,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.234132,0.001171,-0.001250,0.249997,0,0);}
.m55_c00306{transform:matrix(0.234172,0.001171,-0.001250,0.249997,0,0);-ms-transform:matrix(0.234172,0.001171,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.234172,0.001171,-0.001250,0.249997,0,0);}
.m43_c00306{transform:matrix(0.234257,0.001171,-0.001250,0.249997,0,0);-ms-transform:matrix(0.234257,0.001171,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.234257,0.001171,-0.001250,0.249997,0,0);}
.mc_c00306{transform:matrix(0.234372,0.001172,-0.001250,0.249997,0,0);-ms-transform:matrix(0.234372,0.001172,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.234372,0.001172,-0.001250,0.249997,0,0);}
.m103_c00306{transform:matrix(0.235175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235175,0.000000,0.000000,0.250000,0,0);}
.m7b_c00306{transform:matrix(0.235435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235435,0.000000,0.000000,0.250000,0,0);}
.m53_c00306{transform:matrix(0.235442,0.001177,-0.001250,0.249997,0,0);-ms-transform:matrix(0.235442,0.001177,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.235442,0.001177,-0.001250,0.249997,0,0);}
.m51_c00306{transform:matrix(0.235482,0.001177,-0.001250,0.249997,0,0);-ms-transform:matrix(0.235482,0.001177,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.235482,0.001177,-0.001250,0.249997,0,0);}
.m8d_c00306{transform:matrix(0.235485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235485,0.000000,0.000000,0.250000,0,0);}
.m6d_c00306{transform:matrix(0.235572,0.001178,-0.001250,0.249997,0,0);-ms-transform:matrix(0.235572,0.001178,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.235572,0.001178,-0.001250,0.249997,0,0);}
.m8c_c00306{transform:matrix(0.235670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235670,0.000000,0.000000,0.250000,0,0);}
.m91_c00306{transform:matrix(0.235790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235790,0.000000,0.000000,0.250000,0,0);}
.mb2_c00306{transform:matrix(0.236072,0.001180,-0.001250,0.249997,0,0);-ms-transform:matrix(0.236072,0.001180,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.236072,0.001180,-0.001250,0.249997,0,0);}
.mfe_c00306{transform:matrix(0.236110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236110,0.000000,0.000000,0.250000,0,0);}
.mcf_c00306{transform:matrix(0.236566,0.001419,-0.001500,0.249996,0,0);-ms-transform:matrix(0.236566,0.001419,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.236566,0.001419,-0.001500,0.249996,0,0);}
.mb8_c00306{transform:matrix(0.236827,0.001184,-0.001250,0.249997,0,0);-ms-transform:matrix(0.236827,0.001184,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.236827,0.001184,-0.001250,0.249997,0,0);}
.mf1_c00306{transform:matrix(0.236828,0.000947,-0.001000,0.249998,0,0);-ms-transform:matrix(0.236828,0.000947,-0.001000,0.249998,0,0);-webkit-transform:matrix(0.236828,0.000947,-0.001000,0.249998,0,0);}
.m86_c00306{transform:matrix(0.236830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236830,0.000000,0.000000,0.250000,0,0);}
.mf5_c00306{transform:matrix(0.236928,0.000948,-0.001000,0.249998,0,0);-ms-transform:matrix(0.236928,0.000948,-0.001000,0.249998,0,0);-webkit-transform:matrix(0.236928,0.000948,-0.001000,0.249998,0,0);}
.m110_c00306{transform:matrix(0.237339,0.001661,-0.001750,0.249994,0,0);-ms-transform:matrix(0.237339,0.001661,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.237339,0.001661,-0.001750,0.249994,0,0);}
.mea_c00306{transform:matrix(0.237521,0.001425,-0.001500,0.249996,0,0);-ms-transform:matrix(0.237521,0.001425,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.237521,0.001425,-0.001500,0.249996,0,0);}
.m2f_c00306{transform:matrix(0.237522,0.001188,-0.001250,0.249997,0,0);-ms-transform:matrix(0.237522,0.001188,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.237522,0.001188,-0.001250,0.249997,0,0);}
.m125_c00306{transform:matrix(0.237784,0.001664,-0.001750,0.249994,0,0);-ms-transform:matrix(0.237784,0.001664,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.237784,0.001664,-0.001750,0.249994,0,0);}
.m1d_c00306{transform:matrix(0.237802,0.001189,-0.001250,0.249997,0,0);-ms-transform:matrix(0.237802,0.001189,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.237802,0.001189,-0.001250,0.249997,0,0);}
.m73_c00306{transform:matrix(0.237900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237900,0.000000,0.000000,0.250000,0,0);}
.mc0_c00306{transform:matrix(0.238092,0.001190,-0.001250,0.249997,0,0);-ms-transform:matrix(0.238092,0.001190,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.238092,0.001190,-0.001250,0.249997,0,0);}
.m3a_c00306{transform:matrix(0.238137,0.001191,-0.001250,0.249997,0,0);-ms-transform:matrix(0.238137,0.001191,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.238137,0.001191,-0.001250,0.249997,0,0);}
.mdc_c00306{transform:matrix(0.238421,0.001431,-0.001500,0.249996,0,0);-ms-transform:matrix(0.238421,0.001431,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.238421,0.001431,-0.001500,0.249996,0,0);}
.m3f_c00306{transform:matrix(0.238442,0.001192,-0.001250,0.249997,0,0);-ms-transform:matrix(0.238442,0.001192,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.238442,0.001192,-0.001250,0.249997,0,0);}
.m5e_c00306{transform:matrix(0.238497,0.001192,-0.001250,0.249997,0,0);-ms-transform:matrix(0.238497,0.001192,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.238497,0.001192,-0.001250,0.249997,0,0);}
.m75_c00306{transform:matrix(0.238765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238765,0.000000,0.000000,0.250000,0,0);}
.m10_c00306{transform:matrix(0.239032,0.001195,-0.001250,0.249997,0,0);-ms-transform:matrix(0.239032,0.001195,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.239032,0.001195,-0.001250,0.249997,0,0);}
.md1_c00306{transform:matrix(0.239056,0.001434,-0.001500,0.249996,0,0);-ms-transform:matrix(0.239056,0.001434,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.239056,0.001434,-0.001500,0.249996,0,0);}
.mf2_c00306{transform:matrix(0.239068,0.000956,-0.001000,0.249998,0,0);-ms-transform:matrix(0.239068,0.000956,-0.001000,0.249998,0,0);-webkit-transform:matrix(0.239068,0.000956,-0.001000,0.249998,0,0);}
.me6_c00306{transform:matrix(0.239166,0.001435,-0.001500,0.249996,0,0);-ms-transform:matrix(0.239166,0.001435,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.239166,0.001435,-0.001500,0.249996,0,0);}
.m10d_c00306{transform:matrix(0.239349,0.001675,-0.001750,0.249994,0,0);-ms-transform:matrix(0.239349,0.001675,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.239349,0.001675,-0.001750,0.249994,0,0);}
.mbf_c00306{transform:matrix(0.239377,0.001197,-0.001250,0.249997,0,0);-ms-transform:matrix(0.239377,0.001197,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.239377,0.001197,-0.001250,0.249997,0,0);}
.m113_c00306{transform:matrix(0.239554,0.001677,-0.001750,0.249994,0,0);-ms-transform:matrix(0.239554,0.001677,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.239554,0.001677,-0.001750,0.249994,0,0);}
.m100_c00306{transform:matrix(0.239645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239645,0.000000,0.000000,0.250000,0,0);}
.m116_c00306{transform:matrix(0.239794,0.001679,-0.001750,0.249994,0,0);-ms-transform:matrix(0.239794,0.001679,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.239794,0.001679,-0.001750,0.249994,0,0);}
.m9c_c00306{transform:matrix(0.240020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240020,0.000000,0.000000,0.250000,0,0);}
.mf9_c00306{transform:matrix(0.240320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240320,0.000000,0.000000,0.250000,0,0);}
.m63_c00306{transform:matrix(0.240562,0.001203,-0.001250,0.249997,0,0);-ms-transform:matrix(0.240562,0.001203,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.240562,0.001203,-0.001250,0.249997,0,0);}
.m7a_c00306{transform:matrix(0.240670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240670,0.000000,0.000000,0.250000,0,0);}
.mc4_c00306{transform:matrix(0.240712,0.001204,-0.001250,0.249997,0,0);-ms-transform:matrix(0.240712,0.001204,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.240712,0.001204,-0.001250,0.249997,0,0);}
.mb7_c00306{transform:matrix(0.240797,0.001204,-0.001250,0.249997,0,0);-ms-transform:matrix(0.240797,0.001204,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.240797,0.001204,-0.001250,0.249997,0,0);}
.m40_c00306{transform:matrix(0.240857,0.001204,-0.001250,0.249997,0,0);-ms-transform:matrix(0.240857,0.001204,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.240857,0.001204,-0.001250,0.249997,0,0);}
.m3d_c00306{transform:matrix(0.241117,0.001206,-0.001250,0.249997,0,0);-ms-transform:matrix(0.241117,0.001206,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.241117,0.001206,-0.001250,0.249997,0,0);}
.mb1_c00306{transform:matrix(0.241292,0.001206,-0.001250,0.249997,0,0);-ms-transform:matrix(0.241292,0.001206,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.241292,0.001206,-0.001250,0.249997,0,0);}
.m36_c00306{transform:matrix(0.241512,0.001208,-0.001250,0.249997,0,0);-ms-transform:matrix(0.241512,0.001208,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.241512,0.001208,-0.001250,0.249997,0,0);}
.m74_c00306{transform:matrix(0.241550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241550,0.000000,0.000000,0.250000,0,0);}
.m115_c00306{transform:matrix(0.241684,0.001692,-0.001750,0.249994,0,0);-ms-transform:matrix(0.241684,0.001692,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.241684,0.001692,-0.001750,0.249994,0,0);}
.md5_c00306{transform:matrix(0.241686,0.001450,-0.001500,0.249996,0,0);-ms-transform:matrix(0.241686,0.001450,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.241686,0.001450,-0.001500,0.249996,0,0);}
.m9d_c00306{transform:matrix(0.241870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241870,0.000000,0.000000,0.250000,0,0);}
.mdd_c00306{transform:matrix(0.242126,0.001453,-0.001500,0.249996,0,0);-ms-transform:matrix(0.242126,0.001453,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.242126,0.001453,-0.001500,0.249996,0,0);}
.mb9_c00306{transform:matrix(0.242292,0.001211,-0.001250,0.249997,0,0);-ms-transform:matrix(0.242292,0.001211,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.242292,0.001211,-0.001250,0.249997,0,0);}
.m95_c00306{transform:matrix(0.242330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242330,0.000000,0.000000,0.250000,0,0);}
.m4b_c00306{transform:matrix(0.242377,0.001212,-0.001250,0.249997,0,0);-ms-transform:matrix(0.242377,0.001212,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.242377,0.001212,-0.001250,0.249997,0,0);}
.me7_c00306{transform:matrix(0.242531,0.001455,-0.001500,0.249996,0,0);-ms-transform:matrix(0.242531,0.001455,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.242531,0.001455,-0.001500,0.249996,0,0);}
.m66_c00306{transform:matrix(0.242627,0.001213,-0.001250,0.249997,0,0);-ms-transform:matrix(0.242627,0.001213,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.242627,0.001213,-0.001250,0.249997,0,0);}
.m6c_c00306{transform:matrix(0.243077,0.001215,-0.001250,0.249997,0,0);-ms-transform:matrix(0.243077,0.001215,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.243077,0.001215,-0.001250,0.249997,0,0);}
.mbe_c00306{transform:matrix(0.243137,0.001216,-0.001250,0.249997,0,0);-ms-transform:matrix(0.243137,0.001216,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.243137,0.001216,-0.001250,0.249997,0,0);}
.m9b_c00306{transform:matrix(0.243295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243295,0.000000,0.000000,0.250000,0,0);}
.m114_c00306{transform:matrix(0.243399,0.001704,-0.001750,0.249994,0,0);-ms-transform:matrix(0.243399,0.001704,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.243399,0.001704,-0.001750,0.249994,0,0);}
.mb5_c00306{transform:matrix(0.243487,0.001217,-0.001250,0.249997,0,0);-ms-transform:matrix(0.243487,0.001217,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.243487,0.001217,-0.001250,0.249997,0,0);}
.mcc_c00306{transform:matrix(0.243631,0.001462,-0.001500,0.249996,0,0);-ms-transform:matrix(0.243631,0.001462,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.243631,0.001462,-0.001500,0.249996,0,0);}
.m6e_c00306{transform:matrix(0.243787,0.001219,-0.001250,0.249997,0,0);-ms-transform:matrix(0.243787,0.001219,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.243787,0.001219,-0.001250,0.249997,0,0);}
.m89_c00306{transform:matrix(0.244480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244480,0.000000,0.000000,0.250000,0,0);}
.m10a_c00306{transform:matrix(0.244564,0.001712,-0.001750,0.249994,0,0);-ms-transform:matrix(0.244564,0.001712,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.244564,0.001712,-0.001750,0.249994,0,0);}
.me1_c00306{transform:matrix(0.245026,0.001470,-0.001500,0.249996,0,0);-ms-transform:matrix(0.245026,0.001470,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.245026,0.001470,-0.001500,0.249996,0,0);}
.m78_c00306{transform:matrix(0.245470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245470,0.000000,0.000000,0.250000,0,0);}
.m6f_c00306{transform:matrix(0.245547,0.001228,-0.001250,0.249997,0,0);-ms-transform:matrix(0.245547,0.001228,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.245547,0.001228,-0.001250,0.249997,0,0);}
.m30_c00306{transform:matrix(0.245932,0.001230,-0.001250,0.249997,0,0);-ms-transform:matrix(0.245932,0.001230,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.245932,0.001230,-0.001250,0.249997,0,0);}
.med_c00306{transform:matrix(0.245988,0.000984,-0.001000,0.249998,0,0);-ms-transform:matrix(0.245988,0.000984,-0.001000,0.249998,0,0);-webkit-transform:matrix(0.245988,0.000984,-0.001000,0.249998,0,0);}
.mb3_c00306{transform:matrix(0.246047,0.001230,-0.001250,0.249997,0,0);-ms-transform:matrix(0.246047,0.001230,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.246047,0.001230,-0.001250,0.249997,0,0);}
.m82_c00306{transform:matrix(0.246460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246460,0.000000,0.000000,0.250000,0,0);}
.mf8_c00306{transform:matrix(0.246478,0.000986,-0.001000,0.249998,0,0);-ms-transform:matrix(0.246478,0.000986,-0.001000,0.249998,0,0);-webkit-transform:matrix(0.246478,0.000986,-0.001000,0.249998,0,0);}
.m44_c00306{transform:matrix(0.246532,0.001233,-0.001250,0.249997,0,0);-ms-transform:matrix(0.246532,0.001233,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.246532,0.001233,-0.001250,0.249997,0,0);}
.m9e_c00306{transform:matrix(0.246935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246935,0.000000,0.000000,0.250000,0,0);}
.m39_c00306{transform:matrix(0.246952,0.001235,-0.001250,0.249997,0,0);-ms-transform:matrix(0.246952,0.001235,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.246952,0.001235,-0.001250,0.249997,0,0);}
.m92_c00306{transform:matrix(0.247280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247280,0.000000,0.000000,0.250000,0,0);}
.m7c_c00306{transform:matrix(0.247570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247570,0.000000,0.000000,0.250000,0,0);}
.m96_c00306{transform:matrix(0.247810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247810,0.000000,0.000000,0.250000,0,0);}
.mec_c00306{transform:matrix(0.247813,0.000991,-0.001000,0.249998,0,0);-ms-transform:matrix(0.247813,0.000991,-0.001000,0.249998,0,0);-webkit-transform:matrix(0.247813,0.000991,-0.001000,0.249998,0,0);}
.mfc_c00306{transform:matrix(0.247895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247895,0.000000,0.000000,0.250000,0,0);}
.m93_c00306{transform:matrix(0.248195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248195,0.000000,0.000000,0.250000,0,0);}
.m87_c00306{transform:matrix(0.248300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248300,0.000000,0.000000,0.250000,0,0);}
.m9a_c00306{transform:matrix(0.248610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248610,0.000000,0.000000,0.250000,0,0);}
.m77_c00306{transform:matrix(0.248675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248675,0.000000,0.000000,0.250000,0,0);}
.mb4_c00306{transform:matrix(0.249467,0.001247,-0.001250,0.249997,0,0);-ms-transform:matrix(0.249467,0.001247,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.249467,0.001247,-0.001250,0.249997,0,0);}
.m15_c00306{transform:matrix(0.249672,0.001248,-0.001250,0.249997,0,0);-ms-transform:matrix(0.249672,0.001248,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.249672,0.001248,-0.001250,0.249997,0,0);}
.m80_c00306{transform:matrix(0.249895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249895,0.000000,0.000000,0.250000,0,0);}
.mb6_c00306{transform:matrix(0.249957,0.001250,-0.001250,0.249997,0,0);-ms-transform:matrix(0.249957,0.001250,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.249957,0.001250,-0.001250,0.249997,0,0);}
.m68_c00306{transform:matrix(0.250092,0.001250,-0.001250,0.249997,0,0);-ms-transform:matrix(0.250092,0.001250,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.250092,0.001250,-0.001250,0.249997,0,0);}
.m6a_c00306{transform:matrix(0.250427,0.001252,-0.001250,0.249997,0,0);-ms-transform:matrix(0.250427,0.001252,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.250427,0.001252,-0.001250,0.249997,0,0);}
.m67_c00306{transform:matrix(0.250927,0.001255,-0.001250,0.249997,0,0);-ms-transform:matrix(0.250927,0.001255,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.250927,0.001255,-0.001250,0.249997,0,0);}
.m37_c00306{transform:matrix(0.251147,0.001256,-0.001250,0.249997,0,0);-ms-transform:matrix(0.251147,0.001256,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.251147,0.001256,-0.001250,0.249997,0,0);}
.mef_c00306{transform:matrix(0.251233,0.001005,-0.001000,0.249998,0,0);-ms-transform:matrix(0.251233,0.001005,-0.001000,0.249998,0,0);-webkit-transform:matrix(0.251233,0.001005,-0.001000,0.249998,0,0);}
.m88_c00306{transform:matrix(0.251690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251690,0.000000,0.000000,0.250000,0,0);}
.m8e_c00306{transform:matrix(0.251890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251890,0.000000,0.000000,0.250000,0,0);}
.mf4_c00306{transform:matrix(0.252188,0.001009,-0.001000,0.249998,0,0);-ms-transform:matrix(0.252188,0.001009,-0.001000,0.249998,0,0);-webkit-transform:matrix(0.252188,0.001009,-0.001000,0.249998,0,0);}
.m1a_c00306{transform:matrix(0.252197,0.001261,-0.001250,0.249997,0,0);-ms-transform:matrix(0.252197,0.001261,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.252197,0.001261,-0.001250,0.249997,0,0);}
.mc7_c00306{transform:matrix(0.252257,0.001261,-0.001250,0.249997,0,0);-ms-transform:matrix(0.252257,0.001261,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.252257,0.001261,-0.001250,0.249997,0,0);}
.m85_c00306{transform:matrix(0.252420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252420,0.000000,0.000000,0.250000,0,0);}
.mf0_c00306{transform:matrix(0.252538,0.001010,-0.001000,0.249998,0,0);-ms-transform:matrix(0.252538,0.001010,-0.001000,0.249998,0,0);-webkit-transform:matrix(0.252538,0.001010,-0.001000,0.249998,0,0);}
.me3_c00306{transform:matrix(0.252710,0.001516,-0.001500,0.249996,0,0);-ms-transform:matrix(0.252710,0.001516,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.252710,0.001516,-0.001500,0.249996,0,0);}
.m41_c00306{transform:matrix(0.252957,0.001265,-0.001250,0.249997,0,0);-ms-transform:matrix(0.252957,0.001265,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.252957,0.001265,-0.001250,0.249997,0,0);}
.m8b_c00306{transform:matrix(0.253115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253115,0.000000,0.000000,0.250000,0,0);}
.mfd_c00306{transform:matrix(0.253380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253380,0.000000,0.000000,0.250000,0,0);}
.me4_c00306{transform:matrix(0.253430,0.001521,-0.001500,0.249996,0,0);-ms-transform:matrix(0.253430,0.001521,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.253430,0.001521,-0.001500,0.249996,0,0);}
.m69_c00306{transform:matrix(0.253552,0.001268,-0.001250,0.249997,0,0);-ms-transform:matrix(0.253552,0.001268,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.253552,0.001268,-0.001250,0.249997,0,0);}
.m3b_c00306{transform:matrix(0.253637,0.001268,-0.001250,0.249997,0,0);-ms-transform:matrix(0.253637,0.001268,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.253637,0.001268,-0.001250,0.249997,0,0);}
.m8a_c00306{transform:matrix(0.254110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254110,0.000000,0.000000,0.250000,0,0);}
.m14_c00306{transform:matrix(0.254147,0.001271,-0.001250,0.249997,0,0);-ms-transform:matrix(0.254147,0.001271,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.254147,0.001271,-0.001250,0.249997,0,0);}
.m3c_c00306{transform:matrix(0.254342,0.001272,-0.001250,0.249997,0,0);-ms-transform:matrix(0.254342,0.001272,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.254342,0.001272,-0.001250,0.249997,0,0);}
.mf7_c00306{transform:matrix(0.254598,0.001018,-0.001000,0.249998,0,0);-ms-transform:matrix(0.254598,0.001018,-0.001000,0.249998,0,0);-webkit-transform:matrix(0.254598,0.001018,-0.001000,0.249998,0,0);}
.m42_c00306{transform:matrix(0.254847,0.001274,-0.001250,0.249997,0,0);-ms-transform:matrix(0.254847,0.001274,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.254847,0.001274,-0.001250,0.249997,0,0);}
.m20_c00306{transform:matrix(0.255237,0.001276,-0.001250,0.249997,0,0);-ms-transform:matrix(0.255237,0.001276,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.255237,0.001276,-0.001250,0.249997,0,0);}
.me0_c00306{transform:matrix(0.255565,0.001533,-0.001500,0.249996,0,0);-ms-transform:matrix(0.255565,0.001533,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.255565,0.001533,-0.001500,0.249996,0,0);}
.m1f_c00306{transform:matrix(0.255862,0.001279,-0.001250,0.249997,0,0);-ms-transform:matrix(0.255862,0.001279,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.255862,0.001279,-0.001250,0.249997,0,0);}
.m98_c00306{transform:matrix(0.256275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256275,0.000000,0.000000,0.250000,0,0);}
.mc2_c00306{transform:matrix(0.256992,0.001285,-0.001250,0.249997,0,0);-ms-transform:matrix(0.256992,0.001285,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.256992,0.001285,-0.001250,0.249997,0,0);}
.me_c00306{transform:matrix(0.257802,0.001289,-0.001250,0.249997,0,0);-ms-transform:matrix(0.257802,0.001289,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.257802,0.001289,-0.001250,0.249997,0,0);}
.m104_c00306{transform:matrix(0.258400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258400,0.000000,0.000000,0.250000,0,0);}
.m3e_c00306{transform:matrix(0.259077,0.001295,-0.001250,0.249997,0,0);-ms-transform:matrix(0.259077,0.001295,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.259077,0.001295,-0.001250,0.249997,0,0);}
.m21_c00306{transform:matrix(0.259857,0.001299,-0.001250,0.249997,0,0);-ms-transform:matrix(0.259857,0.001299,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.259857,0.001299,-0.001250,0.249997,0,0);}
.m83_c00306{transform:matrix(0.259935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259935,0.000000,0.000000,0.250000,0,0);}
.mfa_c00306{transform:matrix(0.260685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260685,0.000000,0.000000,0.250000,0,0);}
.m33_c00306{transform:matrix(0.261547,0.001308,-0.001250,0.249997,0,0);-ms-transform:matrix(0.261547,0.001308,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.261547,0.001308,-0.001250,0.249997,0,0);}
.m8f_c00306{transform:matrix(0.261940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261940,0.000000,0.000000,0.250000,0,0);}
.m76_c00306{transform:matrix(0.262810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262810,0.000000,0.000000,0.250000,0,0);}
.mba_c00306{transform:matrix(0.263052,0.001315,-0.001250,0.249997,0,0);-ms-transform:matrix(0.263052,0.001315,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.263052,0.001315,-0.001250,0.249997,0,0);}
.m71_c00306{transform:matrix(0.264427,0.001322,-0.001250,0.249997,0,0);-ms-transform:matrix(0.264427,0.001322,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.264427,0.001322,-0.001250,0.249997,0,0);}
.m58_c00306{transform:matrix(0.264737,0.001324,-0.001250,0.249997,0,0);-ms-transform:matrix(0.264737,0.001324,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.264737,0.001324,-0.001250,0.249997,0,0);}
.meb_c00306{transform:matrix(0.266270,0.001598,-0.001500,0.249996,0,0);-ms-transform:matrix(0.266270,0.001598,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.266270,0.001598,-0.001500,0.249996,0,0);}
.m19_c00306{transform:matrix(0.272832,0.001364,-0.001250,0.249997,0,0);-ms-transform:matrix(0.272832,0.001364,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.272832,0.001364,-0.001250,0.249997,0,0);}
.m90_c00306{transform:matrix(0.285510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285510,0.000000,0.000000,0.250000,0,0);}
.ma0_c00306{transform:matrix(0.297915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297915,0.000000,0.000000,0.250000,0,0);}
.me9_c00306{transform:matrix(0.463637,0.002782,-0.001500,0.249996,0,0);-ms-transform:matrix(0.463637,0.002782,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.463637,0.002782,-0.001500,0.249996,0,0);}
.m1_c00306{transform:matrix(0.471850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471850,0.000000,0.000000,0.250000,0,0);}
.v0_c00306{vertical-align:0.000000px;}
.ls0_c00306{letter-spacing:0.000000px;}
.sc__c00306{text-shadow:none;}
.sc0_c00306{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__c00306{-webkit-text-stroke:0px transparent;}
.sc0_c00306{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00306{word-spacing:0.000000px;}
.fc0_c00306{color:transparent;}
.fs0_c00306{font-size:66.000000px;}
.fs4_c00306{font-size:78.000000px;}
.fs8_c00306{font-size:78.000624px;}
.fs2_c00306{font-size:78.000975px;}
.fs7_c00306{font-size:78.001404px;}
.fs1_c00306{font-size:84.001050px;}
.fs6_c00306{font-size:84.001512px;}
.fs9_c00306{font-size:84.002058px;}
.fs5_c00306{font-size:90.000000px;}
.fs3_c00306{font-size:90.001125px;}
.fsa_c00306{font-size:96.002352px;}
.y0_c00306{bottom:0.000000px;}
.yf1_c00306{bottom:116.214000px;}
.yf0_c00306{bottom:147.349500px;}
.yef_c00306{bottom:188.691516px;}
.yea_c00306{bottom:188.691724px;}
.ye6_c00306{bottom:188.691742px;}
.yeb_c00306{bottom:188.691795px;}
.yee_c00306{bottom:188.691865px;}
.yed_c00306{bottom:188.691956px;}
.ye9_c00306{bottom:188.692014px;}
.ye5_c00306{bottom:188.692032px;}
.ye8_c00306{bottom:188.692164px;}
.ye7_c00306{bottom:188.692363px;}
.yec_c00306{bottom:188.692496px;}
.ye4_c00306{bottom:217.437891px;}
.ye3_c00306{bottom:218.054272px;}
.ye2_c00306{bottom:218.517165px;}
.ye1_c00306{bottom:218.906547px;}
.ye0_c00306{bottom:219.365796px;}
.ydf_c00306{bottom:219.673709px;}
.yde_c00306{bottom:220.210468px;}
.ydd_c00306{bottom:220.667995px;}
.ydc_c00306{bottom:221.136695px;}
.ydb_c00306{bottom:221.371044px;}
.yda_c00306{bottom:221.667658px;}
.yd8_c00306{bottom:251.086122px;}
.yd7_c00306{bottom:251.086261px;}
.yd6_c00306{bottom:251.086300px;}
.yd9_c00306{bottom:251.086732px;}
.yd5_c00306{bottom:251.086789px;}
.yd4_c00306{bottom:251.087098px;}
.yd2_c00306{bottom:251.087187px;}
.yd3_c00306{bottom:251.087317px;}
.yd1_c00306{bottom:280.692508px;}
.yd0_c00306{bottom:281.386159px;}
.ycf_c00306{bottom:281.696014px;}
.yce_c00306{bottom:281.932380px;}
.ycd_c00306{bottom:282.542871px;}
.ycc_c00306{bottom:282.769524px;}
.ycb_c00306{bottom:283.007790px;}
.yca_c00306{bottom:284.079462px;}
.yc9_c00306{bottom:284.310000px;}
.yc8_c00306{bottom:315.364500px;}
.yc7_c00306{bottom:346.149000px;}
.yc6_c00306{bottom:376.399416px;}
.yc5_c00306{bottom:376.749366px;}
.yc4_c00306{bottom:376.879992px;}
.yc3_c00306{bottom:377.058246px;}
.yc2_c00306{bottom:377.326044px;}
.yc1_c00306{bottom:377.453478px;}
.yc0_c00306{bottom:377.672754px;}
.ybf_c00306{bottom:377.808840px;}
.ybe_c00306{bottom:378.239766px;}
.ybd_c00306{bottom:378.550800px;}
.ybc_c00306{bottom:378.685806px;}
.ybb_c00306{bottom:378.774318px;}
.yba_c00306{bottom:379.080000px;}
.yb9_c00306{bottom:408.480927px;}
.yb8_c00306{bottom:408.683544px;}
.yb7_c00306{bottom:409.132725px;}
.yb6_c00306{bottom:409.338033px;}
.yb5_c00306{bottom:409.666920px;}
.yb4_c00306{bottom:410.055702px;}
.yb3_c00306{bottom:410.196543px;}
.yb2_c00306{bottom:410.716689px;}
.yb1_c00306{bottom:411.249660px;}
.yb0_c00306{bottom:411.572013px;}
.yaf_c00306{bottom:411.973809px;}
.yae_c00306{bottom:412.560231px;}
.ya2_c00306{bottom:441.980778px;}
.ya6_c00306{bottom:441.981405px;}
.ya3_c00306{bottom:441.981438px;}
.ya9_c00306{bottom:441.981474px;}
.ya4_c00306{bottom:441.981516px;}
.ya5_c00306{bottom:441.981696px;}
.ya7_c00306{bottom:441.982014px;}
.ya8_c00306{bottom:441.982134px;}
.yaa_c00306{bottom:441.982203px;}
.yab_c00306{bottom:441.982212px;}
.yac_c00306{bottom:441.982521px;}
.yad_c00306{bottom:441.982530px;}
.ya1_c00306{bottom:472.323366px;}
.ya0_c00306{bottom:472.522644px;}
.y9f_c00306{bottom:473.178753px;}
.y9e_c00306{bottom:473.378013px;}
.y9d_c00306{bottom:473.838075px;}
.y9c_c00306{bottom:473.972436px;}
.y9b_c00306{bottom:474.432660px;}
.y9a_c00306{bottom:474.964011px;}
.y99_c00306{bottom:475.145406px;}
.y98_c00306{bottom:475.338033px;}
.y97_c00306{bottom:475.613631px;}
.y96_c00306{bottom:475.740000px;}
.y93_c00306{bottom:505.733872px;}
.y8b_c00306{bottom:505.734158px;}
.y92_c00306{bottom:505.734473px;}
.y8c_c00306{bottom:505.734608px;}
.y94_c00306{bottom:505.734630px;}
.y95_c00306{bottom:505.734780px;}
.y8d_c00306{bottom:505.734908px;}
.y8e_c00306{bottom:505.735065px;}
.y91_c00306{bottom:505.735215px;}
.y8f_c00306{bottom:505.735365px;}
.y90_c00306{bottom:505.735515px;}
.y82_c00306{bottom:537.662595px;}
.y84_c00306{bottom:537.662610px;}
.y86_c00306{bottom:537.662775px;}
.y89_c00306{bottom:537.662783px;}
.y81_c00306{bottom:537.663045px;}
.y83_c00306{bottom:537.663053px;}
.y85_c00306{bottom:537.663068px;}
.y8a_c00306{bottom:537.663090px;}
.y87_c00306{bottom:537.663233px;}
.y88_c00306{bottom:537.663383px;}
.y80_c00306{bottom:566.900107px;}
.y7f_c00306{bottom:567.286268px;}
.y7e_c00306{bottom:567.512940px;}
.y7d_c00306{bottom:568.116450px;}
.y7c_c00306{bottom:568.719893px;}
.y7b_c00306{bottom:569.103292px;}
.y7a_c00306{bottom:569.263890px;}
.y79_c00306{bottom:569.430000px;}
.y78_c00306{bottom:599.368500px;}
.y77_c00306{bottom:631.015500px;}
.y76_c00306{bottom:662.874000px;}
.y75_c00306{bottom:694.407000px;}
.y74_c00306{bottom:726.610500px;}
.y68_c00306{bottom:758.475218px;}
.y69_c00306{bottom:758.475518px;}
.y6a_c00306{bottom:758.476125px;}
.y6b_c00306{bottom:758.476725px;}
.y6d_c00306{bottom:758.476733px;}
.y70_c00306{bottom:758.476740px;}
.y71_c00306{bottom:758.476898px;}
.y6f_c00306{bottom:758.477040px;}
.y6e_c00306{bottom:758.477183px;}
.y73_c00306{bottom:758.477198px;}
.y6c_c00306{bottom:758.477333px;}
.y72_c00306{bottom:758.477348px;}
.y67_c00306{bottom:791.545688px;}
.y66_c00306{bottom:791.545838px;}
.y62_c00306{bottom:791.546565px;}
.y65_c00306{bottom:791.546580px;}
.y63_c00306{bottom:791.546723px;}
.y61_c00306{bottom:791.547165px;}
.y64_c00306{bottom:791.547180px;}
.y60_c00306{bottom:791.547908px;}
.y5d_c00306{bottom:791.548058px;}
.y5e_c00306{bottom:791.548508px;}
.y5f_c00306{bottom:791.548658px;}
.y52_c00306{bottom:822.537330px;}
.y5c_c00306{bottom:822.537375px;}
.y54_c00306{bottom:822.537487px;}
.y58_c00306{bottom:822.537503px;}
.y5a_c00306{bottom:822.537510px;}
.y55_c00306{bottom:822.537638px;}
.y59_c00306{bottom:822.537803px;}
.y53_c00306{bottom:822.537938px;}
.y56_c00306{bottom:822.537945px;}
.y5b_c00306{bottom:822.537968px;}
.y57_c00306{bottom:822.538245px;}
.y46_c00306{bottom:853.404360px;}
.y4e_c00306{bottom:853.404540px;}
.y51_c00306{bottom:853.404698px;}
.y47_c00306{bottom:853.404818px;}
.y49_c00306{bottom:853.404825px;}
.y4f_c00306{bottom:853.404840px;}
.y48_c00306{bottom:853.404975px;}
.y4c_c00306{bottom:853.404983px;}
.y4d_c00306{bottom:853.404990px;}
.y50_c00306{bottom:853.404998px;}
.y4a_c00306{bottom:853.405283px;}
.y4b_c00306{bottom:853.405733px;}
.y45_c00306{bottom:884.431628px;}
.y43_c00306{bottom:884.431920px;}
.y44_c00306{bottom:884.431928px;}
.y42_c00306{bottom:884.432363px;}
.y3e_c00306{bottom:884.432955px;}
.y3c_c00306{bottom:884.433090px;}
.y41_c00306{bottom:884.433113px;}
.y3d_c00306{bottom:884.433398px;}
.y3b_c00306{bottom:884.433540px;}
.y3f_c00306{bottom:884.433555px;}
.y40_c00306{bottom:884.433863px;}
.y3a_c00306{bottom:915.025410px;}
.y39_c00306{bottom:915.246833px;}
.y38_c00306{bottom:915.739575px;}
.y37_c00306{bottom:915.959633px;}
.y36_c00306{bottom:916.179623px;}
.y35_c00306{bottom:916.348440px;}
.y34_c00306{bottom:916.893863px;}
.y33_c00306{bottom:917.057190px;}
.y32_c00306{bottom:917.219115px;}
.y31_c00306{bottom:917.655263px;}
.y30_c00306{bottom:917.832090px;}
.y2f_c00306{bottom:917.994023px;}
.y2e_c00306{bottom:946.235963px;}
.y2d_c00306{bottom:946.672043px;}
.y2c_c00306{bottom:946.843485px;}
.y2b_c00306{bottom:947.326800px;}
.y2a_c00306{bottom:947.938343px;}
.y29_c00306{bottom:948.107093px;}
.y28_c00306{bottom:948.594473px;}
.y27_c00306{bottom:949.147868px;}
.y26_c00306{bottom:949.419270px;}
.y25_c00306{bottom:949.583918px;}
.y24_c00306{bottom:979.853385px;}
.y23_c00306{bottom:979.854135px;}
.y22_c00306{bottom:979.854885px;}
.y21_c00306{bottom:979.855628px;}
.y20_c00306{bottom:979.856370px;}
.y1f_c00306{bottom:979.856963px;}
.y1d_c00306{bottom:979.857263px;}
.y1c_c00306{bottom:979.857413px;}
.y1e_c00306{bottom:979.857713px;}
.y1b_c00306{bottom:979.857863px;}
.y1a_c00306{bottom:979.858455px;}
.y14_c00306{bottom:1011.334823px;}
.y15_c00306{bottom:1011.334830px;}
.y12_c00306{bottom:1011.334973px;}
.y11_c00306{bottom:1011.335273px;}
.y16_c00306{bottom:1011.335288px;}
.y17_c00306{bottom:1011.335438px;}
.y13_c00306{bottom:1011.335573px;}
.y18_c00306{bottom:1011.335588px;}
.yd_c00306{bottom:1011.335708px;}
.yf_c00306{bottom:1011.335865px;}
.y19_c00306{bottom:1011.335888px;}
.ye_c00306{bottom:1011.336008px;}
.y10_c00306{bottom:1011.336015px;}
.yc_c00306{bottom:1041.990750px;}
.yb_c00306{bottom:1042.426800px;}
.ya_c00306{bottom:1043.030265px;}
.y9_c00306{bottom:1043.416343px;}
.y8_c00306{bottom:1043.690393px;}
.y7_c00306{bottom:1044.023843px;}
.y6_c00306{bottom:1044.133125px;}
.y5_c00306{bottom:1044.570608px;}
.y4_c00306{bottom:1044.732623px;}
.y3_c00306{bottom:1044.841883px;}
.y2_c00306{bottom:1045.170000px;}
.y1_c00306{bottom:1121.040000px;}
.h2_c00306{height:66.000000px;}
.h6_c00306{height:78.000000px;}
.ha_c00306{height:78.000624px;}
.h4_c00306{height:78.000975px;}
.h9_c00306{height:78.001404px;}
.h3_c00306{height:84.001050px;}
.h8_c00306{height:84.001512px;}
.hb_c00306{height:84.002058px;}
.h7_c00306{height:90.000000px;}
.h5_c00306{height:90.001125px;}
.hc_c00306{height:96.002352px;}
.h1_c00306{height:1165.500000px;}
.h0_c00306{height:1165.800000px;}
.w0_c00306{width:915.000000px;}
.x0_c00306{left:0.000000px;}
.x57_c00306{left:153.900000px;}
.x27_c00306{left:154.929083px;}
.xe_c00306{left:156.058808px;}
.x3_c00306{left:157.069500px;}
.x58_c00306{left:176.040000px;}
.x52_c00306{left:177.660000px;}
.x28_c00306{left:187.315583px;}
.xf_c00306{left:188.999633px;}
.x88_c00306{left:196.450655px;}
.x8f_c00306{left:197.640000px;}
.x3f_c00306{left:199.000973px;}
.x44_c00306{left:209.533875px;}
.x30_c00306{left:211.149188px;}
.x85_c00306{left:220.049315px;}
.x4_c00306{left:222.693000px;}
.x79_c00306{left:230.530500px;}
.x3b_c00306{left:231.670733px;}
.x4d_c00306{left:242.190000px;}
.x1a_c00306{left:243.272602px;}
.x5_c00306{left:244.545000px;}
.x69_c00306{left:253.259888px;}
.x3c_c00306{left:255.161318px;}
.x6d_c00306{left:263.789513px;}
.x5f_c00306{left:265.140000px;}
.x62_c00306{left:275.400000px;}
.x6_c00306{left:276.948000px;}
.x45_c00306{left:286.214295px;}
.x3d_c00306{left:287.832135px;}
.x59_c00306{left:297.540000px;}
.x10_c00306{left:299.430893px;}
.x4e_c00306{left:307.800000px;}
.x46_c00306{left:308.894865px;}
.x29_c00306{left:309.910583px;}
.x31_c00306{left:319.690403px;}
.x65_c00306{left:329.871000px;}
.x1b_c00306{left:331.294800px;}
.x70_c00306{left:332.311500px;}
.x5a_c00306{left:341.010000px;}
.x2a_c00306{left:342.295583px;}
.x6e_c00306{left:351.000195px;}
.x6a_c00306{left:352.350863px;}
.x11_c00306{left:353.702250px;}
.x89_c00306{left:362.247155px;}
.x7_c00306{left:364.444500px;}
.x63_c00306{left:373.410000px;}
.x2b_c00306{left:374.961083px;}
.x8d_c00306{left:385.021152px;}
.x8_c00306{left:386.301000px;}
.x71_c00306{left:394.648500px;}
.x3e_c00306{left:396.913365px;}
.x1_c00306{left:397.980000px;}
.x47_c00306{left:407.175825px;}
.x8e_c00306{left:417.421237px;}
.x40_c00306{left:419.594978px;}
.x2_c00306{left:420.660000px;}
.x90_c00306{left:427.680000px;}
.x6b_c00306{left:428.761275px;}
.x48_c00306{left:430.396403px;}
.x7e_c00306{left:439.020000px;}
.x37_c00306{left:441.461310px;}
.x82_c00306{left:449.716500px;}
.x21_c00306{left:451.373055px;}
.x9_c00306{left:452.991000px;}
.x5b_c00306{left:454.680000px;}
.x92_c00306{left:461.430000px;}
.x12_c00306{left:462.513465px;}
.x7a_c00306{left:471.900000px;}
.x53_c00306{left:473.580000px;}
.x38_c00306{left:474.672143px;}
.x8a_c00306{left:482.914654px;}
.x2c_c00306{left:484.045583px;}
.x22_c00306{left:485.123055px;}
.x64_c00306{left:487.620000px;}
.x93_c00306{left:493.830000px;}
.x13_c00306{left:495.994305px;}
.x39_c00306{left:505.722915px;}
.xa_c00306{left:507.801000px;}
.x7f_c00306{left:516.240000px;}
.x2d_c00306{left:517.809083px;}
.x66_c00306{left:527.239500px;}
.x32_c00306{left:528.402623px;}
.x1c_c00306{left:529.478250px;}
.x91_c00306{left:537.570000px;}
.x14_c00306{left:540.545415px;}
.x77_c00306{left:548.843460px;}
.x86_c00306{left:549.996474px;}
.x33_c00306{left:551.353193px;}
.x80_c00306{left:559.170000px;}
.x49_c00306{left:560.538158px;}
.x2e_c00306{left:561.807083px;}
.x54_c00306{left:571.590000px;}
.x75_c00306{left:572.675025px;}
.x41_c00306{left:582.676058px;}
.xb_c00306{left:585.016500px;}
.x7b_c00306{left:592.599000px;}
.x60_c00306{left:594.000000px;}
.x4a_c00306{left:595.099020px;}
.x83_c00306{left:603.346500px;}
.x6c_c00306{left:604.532670px;}
.x2f_c00306{left:605.818583px;}
.x23_c00306{left:607.431555px;}
.x1d_c00306{left:617.228940px;}
.x6f_c00306{left:626.945588px;}
.x4f_c00306{left:629.640000px;}
.x78_c00306{left:637.113960px;}
.x42_c00306{left:638.297445px;}
.x67_c00306{left:647.941500px;}
.x50_c00306{left:650.160000px;}
.x15_c00306{left:651.246683px;}
.x72_c00306{left:658.981500px;}
.x4b_c00306{left:660.169148px;}
.x8b_c00306{left:670.275154px;}
.x5c_c00306{left:681.480000px;}
.x4c_c00306{left:682.579710px;}
.x55_c00306{left:692.820000px;}
.x3a_c00306{left:694.456133px;}
.x5d_c00306{left:703.080000px;}
.x24_c00306{left:704.094555px;}
.xc_c00306{left:705.709500px;}
.x81_c00306{left:713.610000px;}
.x56_c00306{left:714.960000px;}
.x34_c00306{left:716.595818px;}
.x1e_c00306{left:726.580170px;}
.x7c_c00306{left:736.768500px;}
.x25_c00306{left:738.383055px;}
.x43_c00306{left:747.648675px;}
.x16_c00306{left:749.257635px;}
.x8c_c00306{left:758.329654px;}
.x1f_c00306{left:760.331010px;}
.x68_c00306{left:770.508000px;}
.x87_c00306{left:779.231709px;}
.x84_c00306{left:780.471000px;}
.x17_c00306{left:781.928452px;}
.x61_c00306{left:791.910000px;}
.xd_c00306{left:792.919500px;}
.x51_c00306{left:794.070000px;}
.x73_c00306{left:801.543000px;}
.x35_c00306{left:802.996478px;}
.x20_c00306{left:804.882120px;}
.x5e_c00306{left:812.970000px;}
.x18_c00306{left:814.599270px;}
.x7d_c00306{left:824.256000px;}
.x26_c00306{left:825.599055px;}
.x74_c00306{left:834.756000px;}
.x36_c00306{left:837.557340px;}
.x76_c00306{left:845.380344px;}
.x19_c00306{left:847.540095px;}
@media print{
.v0_c00306{vertical-align:0.000000pt;}
.ls0_c00306{letter-spacing:0.000000pt;}
.ws0_c00306{word-spacing:0.000000pt;}
.fs0_c00306{font-size:58.666667pt;}
.fs4_c00306{font-size:69.333333pt;}
.fs8_c00306{font-size:69.333888pt;}
.fs2_c00306{font-size:69.334200pt;}
.fs7_c00306{font-size:69.334581pt;}
.fs1_c00306{font-size:74.667600pt;}
.fs6_c00306{font-size:74.668011pt;}
.fs9_c00306{font-size:74.668496pt;}
.fs5_c00306{font-size:80.000000pt;}
.fs3_c00306{font-size:80.001000pt;}
.fsa_c00306{font-size:85.335424pt;}
.y0_c00306{bottom:0.000000pt;}
.yf1_c00306{bottom:103.301333pt;}
.yf0_c00306{bottom:130.977333pt;}
.yef_c00306{bottom:167.725792pt;}
.yea_c00306{bottom:167.725977pt;}
.ye6_c00306{bottom:167.725993pt;}
.yeb_c00306{bottom:167.726040pt;}
.yee_c00306{bottom:167.726103pt;}
.yed_c00306{bottom:167.726183pt;}
.ye9_c00306{bottom:167.726235pt;}
.ye5_c00306{bottom:167.726251pt;}
.ye8_c00306{bottom:167.726368pt;}
.ye7_c00306{bottom:167.726545pt;}
.yec_c00306{bottom:167.726663pt;}
.ye4_c00306{bottom:193.278125pt;}
.ye3_c00306{bottom:193.826020pt;}
.ye2_c00306{bottom:194.237480pt;}
.ye1_c00306{bottom:194.583597pt;}
.ye0_c00306{bottom:194.991819pt;}
.ydf_c00306{bottom:195.265519pt;}
.yde_c00306{bottom:195.742639pt;}
.ydd_c00306{bottom:196.149329pt;}
.ydc_c00306{bottom:196.565951pt;}
.ydb_c00306{bottom:196.774261pt;}
.yda_c00306{bottom:197.037919pt;}
.yd8_c00306{bottom:223.187664pt;}
.yd7_c00306{bottom:223.187788pt;}
.yd6_c00306{bottom:223.187823pt;}
.yd9_c00306{bottom:223.188207pt;}
.yd5_c00306{bottom:223.188257pt;}
.yd4_c00306{bottom:223.188532pt;}
.yd2_c00306{bottom:223.188611pt;}
.yd3_c00306{bottom:223.188727pt;}
.yd1_c00306{bottom:249.504452pt;}
.yd0_c00306{bottom:250.121031pt;}
.ycf_c00306{bottom:250.396457pt;}
.yce_c00306{bottom:250.606560pt;}
.ycd_c00306{bottom:251.149219pt;}
.ycc_c00306{bottom:251.350688pt;}
.ycb_c00306{bottom:251.562480pt;}
.yca_c00306{bottom:252.515077pt;}
.yc9_c00306{bottom:252.720000pt;}
.yc8_c00306{bottom:280.324000pt;}
.yc7_c00306{bottom:307.688000pt;}
.yc6_c00306{bottom:334.577259pt;}
.yc5_c00306{bottom:334.888325pt;}
.yc4_c00306{bottom:335.004437pt;}
.yc3_c00306{bottom:335.162885pt;}
.yc2_c00306{bottom:335.400928pt;}
.yc1_c00306{bottom:335.514203pt;}
.yc0_c00306{bottom:335.709115pt;}
.ybf_c00306{bottom:335.830080pt;}
.ybe_c00306{bottom:336.213125pt;}
.ybd_c00306{bottom:336.489600pt;}
.ybc_c00306{bottom:336.609605pt;}
.ybb_c00306{bottom:336.688283pt;}
.yba_c00306{bottom:336.960000pt;}
.yb9_c00306{bottom:363.094157pt;}
.yb8_c00306{bottom:363.274261pt;}
.yb7_c00306{bottom:363.673533pt;}
.yb6_c00306{bottom:363.856029pt;}
.yb5_c00306{bottom:364.148373pt;}
.yb4_c00306{bottom:364.493957pt;}
.yb3_c00306{bottom:364.619149pt;}
.yb2_c00306{bottom:365.081501pt;}
.yb1_c00306{bottom:365.555253pt;}
.yb0_c00306{bottom:365.841789pt;}
.yaf_c00306{bottom:366.198941pt;}
.yae_c00306{bottom:366.720205pt;}
.ya2_c00306{bottom:392.871803pt;}
.ya6_c00306{bottom:392.872360pt;}
.ya3_c00306{bottom:392.872389pt;}
.ya9_c00306{bottom:392.872421pt;}
.ya4_c00306{bottom:392.872459pt;}
.ya5_c00306{bottom:392.872619pt;}
.ya7_c00306{bottom:392.872901pt;}
.ya8_c00306{bottom:392.873008pt;}
.yaa_c00306{bottom:392.873069pt;}
.yab_c00306{bottom:392.873077pt;}
.yac_c00306{bottom:392.873352pt;}
.yad_c00306{bottom:392.873360pt;}
.ya1_c00306{bottom:419.842992pt;}
.ya0_c00306{bottom:420.020128pt;}
.y9f_c00306{bottom:420.603336pt;}
.y9e_c00306{bottom:420.780456pt;}
.y9d_c00306{bottom:421.189400pt;}
.y9c_c00306{bottom:421.308832pt;}
.y9b_c00306{bottom:421.717920pt;}
.y9a_c00306{bottom:422.190232pt;}
.y99_c00306{bottom:422.351472pt;}
.y98_c00306{bottom:422.522696pt;}
.y97_c00306{bottom:422.767672pt;}
.y96_c00306{bottom:422.880000pt;}
.y93_c00306{bottom:449.541220pt;}
.y8b_c00306{bottom:449.541473pt;}
.y92_c00306{bottom:449.541753pt;}
.y8c_c00306{bottom:449.541873pt;}
.y94_c00306{bottom:449.541893pt;}
.y95_c00306{bottom:449.542027pt;}
.y8d_c00306{bottom:449.542140pt;}
.y8e_c00306{bottom:449.542280pt;}
.y91_c00306{bottom:449.542413pt;}
.y8f_c00306{bottom:449.542547pt;}
.y90_c00306{bottom:449.542680pt;}
.y82_c00306{bottom:477.922307pt;}
.y84_c00306{bottom:477.922320pt;}
.y86_c00306{bottom:477.922467pt;}
.y89_c00306{bottom:477.922473pt;}
.y81_c00306{bottom:477.922707pt;}
.y83_c00306{bottom:477.922713pt;}
.y85_c00306{bottom:477.922727pt;}
.y8a_c00306{bottom:477.922747pt;}
.y87_c00306{bottom:477.922873pt;}
.y88_c00306{bottom:477.923007pt;}
.y80_c00306{bottom:503.911207pt;}
.y7f_c00306{bottom:504.254460pt;}
.y7e_c00306{bottom:504.455947pt;}
.y7d_c00306{bottom:504.992400pt;}
.y7c_c00306{bottom:505.528793pt;}
.y7b_c00306{bottom:505.869593pt;}
.y7a_c00306{bottom:506.012347pt;}
.y79_c00306{bottom:506.160000pt;}
.y78_c00306{bottom:532.772000pt;}
.y77_c00306{bottom:560.902667pt;}
.y76_c00306{bottom:589.221333pt;}
.y75_c00306{bottom:617.250667pt;}
.y74_c00306{bottom:645.876000pt;}
.y68_c00306{bottom:674.200193pt;}
.y69_c00306{bottom:674.200460pt;}
.y6a_c00306{bottom:674.201000pt;}
.y6b_c00306{bottom:674.201533pt;}
.y6d_c00306{bottom:674.201540pt;}
.y70_c00306{bottom:674.201547pt;}
.y71_c00306{bottom:674.201687pt;}
.y6f_c00306{bottom:674.201813pt;}
.y6e_c00306{bottom:674.201940pt;}
.y73_c00306{bottom:674.201953pt;}
.y6c_c00306{bottom:674.202073pt;}
.y72_c00306{bottom:674.202087pt;}
.y67_c00306{bottom:703.596167pt;}
.y66_c00306{bottom:703.596300pt;}
.y62_c00306{bottom:703.596947pt;}
.y65_c00306{bottom:703.596960pt;}
.y63_c00306{bottom:703.597087pt;}
.y61_c00306{bottom:703.597480pt;}
.y64_c00306{bottom:703.597493pt;}
.y60_c00306{bottom:703.598140pt;}
.y5d_c00306{bottom:703.598273pt;}
.y5e_c00306{bottom:703.598673pt;}
.y5f_c00306{bottom:703.598807pt;}
.y52_c00306{bottom:731.144293pt;}
.y5c_c00306{bottom:731.144333pt;}
.y54_c00306{bottom:731.144433pt;}
.y58_c00306{bottom:731.144447pt;}
.y5a_c00306{bottom:731.144453pt;}
.y55_c00306{bottom:731.144567pt;}
.y59_c00306{bottom:731.144713pt;}
.y53_c00306{bottom:731.144833pt;}
.y56_c00306{bottom:731.144840pt;}
.y5b_c00306{bottom:731.144860pt;}
.y57_c00306{bottom:731.145107pt;}
.y46_c00306{bottom:758.581653pt;}
.y4e_c00306{bottom:758.581813pt;}
.y51_c00306{bottom:758.581953pt;}
.y47_c00306{bottom:758.582060pt;}
.y49_c00306{bottom:758.582067pt;}
.y4f_c00306{bottom:758.582080pt;}
.y48_c00306{bottom:758.582200pt;}
.y4c_c00306{bottom:758.582207pt;}
.y4d_c00306{bottom:758.582213pt;}
.y50_c00306{bottom:758.582220pt;}
.y4a_c00306{bottom:758.582473pt;}
.y4b_c00306{bottom:758.582873pt;}
.y45_c00306{bottom:786.161447pt;}
.y43_c00306{bottom:786.161707pt;}
.y44_c00306{bottom:786.161713pt;}
.y42_c00306{bottom:786.162100pt;}
.y3e_c00306{bottom:786.162627pt;}
.y3c_c00306{bottom:786.162747pt;}
.y41_c00306{bottom:786.162767pt;}
.y3d_c00306{bottom:786.163020pt;}
.y3b_c00306{bottom:786.163147pt;}
.y3f_c00306{bottom:786.163160pt;}
.y40_c00306{bottom:786.163433pt;}
.y3a_c00306{bottom:813.355920pt;}
.y39_c00306{bottom:813.552740pt;}
.y38_c00306{bottom:813.990733pt;}
.y37_c00306{bottom:814.186340pt;}
.y36_c00306{bottom:814.381887pt;}
.y35_c00306{bottom:814.531947pt;}
.y34_c00306{bottom:815.016767pt;}
.y33_c00306{bottom:815.161947pt;}
.y32_c00306{bottom:815.305880pt;}
.y31_c00306{bottom:815.693567pt;}
.y30_c00306{bottom:815.850747pt;}
.y2f_c00306{bottom:815.994687pt;}
.y2e_c00306{bottom:841.098633pt;}
.y2d_c00306{bottom:841.486260pt;}
.y2c_c00306{bottom:841.638653pt;}
.y2b_c00306{bottom:842.068267pt;}
.y2a_c00306{bottom:842.611860pt;}
.y29_c00306{bottom:842.761860pt;}
.y28_c00306{bottom:843.195087pt;}
.y27_c00306{bottom:843.686993pt;}
.y26_c00306{bottom:843.928240pt;}
.y25_c00306{bottom:844.074593pt;}
.y24_c00306{bottom:870.980787pt;}
.y23_c00306{bottom:870.981453pt;}
.y22_c00306{bottom:870.982120pt;}
.y21_c00306{bottom:870.982780pt;}
.y20_c00306{bottom:870.983440pt;}
.y1f_c00306{bottom:870.983967pt;}
.y1d_c00306{bottom:870.984233pt;}
.y1c_c00306{bottom:870.984367pt;}
.y1e_c00306{bottom:870.984633pt;}
.y1b_c00306{bottom:870.984767pt;}
.y1a_c00306{bottom:870.985293pt;}
.y14_c00306{bottom:898.964287pt;}
.y15_c00306{bottom:898.964293pt;}
.y12_c00306{bottom:898.964420pt;}
.y11_c00306{bottom:898.964687pt;}
.y16_c00306{bottom:898.964700pt;}
.y17_c00306{bottom:898.964833pt;}
.y13_c00306{bottom:898.964953pt;}
.y18_c00306{bottom:898.964967pt;}
.yd_c00306{bottom:898.965073pt;}
.yf_c00306{bottom:898.965213pt;}
.y19_c00306{bottom:898.965233pt;}
.ye_c00306{bottom:898.965340pt;}
.y10_c00306{bottom:898.965347pt;}
.yc_c00306{bottom:926.214000pt;}
.yb_c00306{bottom:926.601600pt;}
.ya_c00306{bottom:927.138013pt;}
.y9_c00306{bottom:927.481193pt;}
.y8_c00306{bottom:927.724793pt;}
.y7_c00306{bottom:928.021193pt;}
.y6_c00306{bottom:928.118333pt;}
.y5_c00306{bottom:928.507207pt;}
.y4_c00306{bottom:928.651220pt;}
.y3_c00306{bottom:928.748340pt;}
.y2_c00306{bottom:929.040000pt;}
.y1_c00306{bottom:996.480000pt;}
.h2_c00306{height:58.666667pt;}
.h6_c00306{height:69.333333pt;}
.ha_c00306{height:69.333888pt;}
.h4_c00306{height:69.334200pt;}
.h9_c00306{height:69.334581pt;}
.h3_c00306{height:74.667600pt;}
.h8_c00306{height:74.668011pt;}
.hb_c00306{height:74.668496pt;}
.h7_c00306{height:80.000000pt;}
.h5_c00306{height:80.001000pt;}
.hc_c00306{height:85.335424pt;}
.h1_c00306{height:1036.000000pt;}
.h0_c00306{height:1036.266667pt;}
.w0_c00306{width:813.333333pt;}
.x0_c00306{left:0.000000pt;}
.x57_c00306{left:136.800000pt;}
.x27_c00306{left:137.714740pt;}
.xe_c00306{left:138.718940pt;}
.x3_c00306{left:139.617333pt;}
.x58_c00306{left:156.480000pt;}
.x52_c00306{left:157.920000pt;}
.x28_c00306{left:166.502740pt;}
.xf_c00306{left:167.999673pt;}
.x88_c00306{left:174.622804pt;}
.x8f_c00306{left:175.680000pt;}
.x3f_c00306{left:176.889753pt;}
.x44_c00306{left:186.252333pt;}
.x30_c00306{left:187.688167pt;}
.x85_c00306{left:195.599391pt;}
.x4_c00306{left:197.949333pt;}
.x79_c00306{left:204.916000pt;}
.x3b_c00306{left:205.929540pt;}
.x4d_c00306{left:215.280000pt;}
.x1a_c00306{left:216.242313pt;}
.x5_c00306{left:217.373333pt;}
.x69_c00306{left:225.119900pt;}
.x3c_c00306{left:226.810060pt;}
.x6d_c00306{left:234.479567pt;}
.x5f_c00306{left:235.680000pt;}
.x62_c00306{left:244.800000pt;}
.x6_c00306{left:246.176000pt;}
.x45_c00306{left:254.412707pt;}
.x3d_c00306{left:255.850787pt;}
.x59_c00306{left:264.480000pt;}
.x10_c00306{left:266.160793pt;}
.x4e_c00306{left:273.600000pt;}
.x46_c00306{left:274.573213pt;}
.x29_c00306{left:275.476073pt;}
.x31_c00306{left:284.169247pt;}
.x65_c00306{left:293.218667pt;}
.x1b_c00306{left:294.484267pt;}
.x70_c00306{left:295.388000pt;}
.x5a_c00306{left:303.120000pt;}
.x2a_c00306{left:304.262740pt;}
.x6e_c00306{left:312.000173pt;}
.x6a_c00306{left:313.200767pt;}
.x11_c00306{left:314.402000pt;}
.x89_c00306{left:321.997471pt;}
.x7_c00306{left:323.950667pt;}
.x63_c00306{left:331.920000pt;}
.x2b_c00306{left:333.298740pt;}
.x8d_c00306{left:342.241024pt;}
.x8_c00306{left:343.378667pt;}
.x71_c00306{left:350.798667pt;}
.x3e_c00306{left:352.811880pt;}
.x1_c00306{left:353.760000pt;}
.x47_c00306{left:361.934067pt;}
.x8e_c00306{left:371.041100pt;}
.x40_c00306{left:372.973313pt;}
.x2_c00306{left:373.920000pt;}
.x90_c00306{left:380.160000pt;}
.x6b_c00306{left:381.121133pt;}
.x48_c00306{left:382.574580pt;}
.x7e_c00306{left:390.240000pt;}
.x37_c00306{left:392.410053pt;}
.x82_c00306{left:399.748000pt;}
.x21_c00306{left:401.220493pt;}
.x9_c00306{left:402.658667pt;}
.x5b_c00306{left:404.160000pt;}
.x92_c00306{left:410.160000pt;}
.x12_c00306{left:411.123080pt;}
.x7a_c00306{left:419.466667pt;}
.x53_c00306{left:420.960000pt;}
.x38_c00306{left:421.930793pt;}
.x8a_c00306{left:429.257471pt;}
.x2c_c00306{left:430.262740pt;}
.x22_c00306{left:431.220493pt;}
.x64_c00306{left:433.440000pt;}
.x93_c00306{left:438.960000pt;}
.x13_c00306{left:440.883827pt;}
.x39_c00306{left:449.531480pt;}
.xa_c00306{left:451.378667pt;}
.x7f_c00306{left:458.880000pt;}
.x2d_c00306{left:460.274740pt;}
.x66_c00306{left:468.657333pt;}
.x32_c00306{left:469.691220pt;}
.x1c_c00306{left:470.647333pt;}
.x91_c00306{left:477.840000pt;}
.x14_c00306{left:480.484813pt;}
.x77_c00306{left:487.860853pt;}
.x86_c00306{left:488.885755pt;}
.x33_c00306{left:490.091727pt;}
.x80_c00306{left:497.040000pt;}
.x49_c00306{left:498.256140pt;}
.x2e_c00306{left:499.384073pt;}
.x54_c00306{left:508.080000pt;}
.x75_c00306{left:509.044467pt;}
.x41_c00306{left:517.934273pt;}
.xb_c00306{left:520.014667pt;}
.x7b_c00306{left:526.754667pt;}
.x60_c00306{left:528.000000pt;}
.x4a_c00306{left:528.976907pt;}
.x83_c00306{left:536.308000pt;}
.x6c_c00306{left:537.362373pt;}
.x2f_c00306{left:538.505407pt;}
.x23_c00306{left:539.939160pt;}
.x1d_c00306{left:548.647947pt;}
.x6f_c00306{left:557.284967pt;}
.x4f_c00306{left:559.680000pt;}
.x78_c00306{left:566.323520pt;}
.x42_c00306{left:567.375507pt;}
.x67_c00306{left:575.948000pt;}
.x50_c00306{left:577.920000pt;}
.x15_c00306{left:578.885940pt;}
.x72_c00306{left:585.761333pt;}
.x4b_c00306{left:586.817020pt;}
.x8b_c00306{left:595.800137pt;}
.x5c_c00306{left:605.760000pt;}
.x4c_c00306{left:606.737520pt;}
.x55_c00306{left:615.840000pt;}
.x3a_c00306{left:617.294340pt;}
.x5d_c00306{left:624.960000pt;}
.x24_c00306{left:625.861827pt;}
.xc_c00306{left:627.297333pt;}
.x81_c00306{left:634.320000pt;}
.x56_c00306{left:635.520000pt;}
.x34_c00306{left:636.974060pt;}
.x1e_c00306{left:645.849040pt;}
.x7c_c00306{left:654.905333pt;}
.x25_c00306{left:656.340493pt;}
.x43_c00306{left:664.576600pt;}
.x16_c00306{left:666.006787pt;}
.x8c_c00306{left:674.070804pt;}
.x1f_c00306{left:675.849787pt;}
.x68_c00306{left:684.896000pt;}
.x87_c00306{left:692.650408pt;}
.x84_c00306{left:693.752000pt;}
.x17_c00306{left:695.047513pt;}
.x61_c00306{left:703.920000pt;}
.xd_c00306{left:704.817333pt;}
.x51_c00306{left:705.840000pt;}
.x73_c00306{left:712.482667pt;}
.x35_c00306{left:713.774647pt;}
.x20_c00306{left:715.450773pt;}
.x5e_c00306{left:722.640000pt;}
.x18_c00306{left:724.088240pt;}
.x7d_c00306{left:732.672000pt;}
.x26_c00306{left:733.865827pt;}
.x74_c00306{left:742.005333pt;}
.x36_c00306{left:744.495413pt;}
.x76_c00306{left:751.449195pt;}
.x19_c00306{left:753.368973pt;}
}





/* 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_c00307 {
    display:none;
  }
  .loading-indicator_c00307.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00307 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_c00307 { 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_c00307" -> "#page-container .classname_c00307")
 */
.pf_c00307 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00307 { /* 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_c00307.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00307 { /* 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_c00307 { /* 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_c00307 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00307 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00307 {overflow:visible;}
  }
}
.c_c00307 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00307 { /* 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_c00307:after { /* webkit #35443 */
  content: '';
}
.t_c00307:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00307 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 */
}
.__c00307 { /* 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_c00307 { /* info for Javascript */
  display:none;
}
.l_c00307 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00307 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00307 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00307: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_c00307 {
    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_c00307.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00307.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_c00307 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00307{font-family:sans-serif;visibility:hidden;}
.sc__c00307{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00307{-webkit-text-stroke:0px transparent;}
}
.y0_c00307{bottom:0.000000px;}
.h1_c00307{height:1165.500000px;}
.h0_c00307{height:1165.800000px;}
.w0_c00307{width:915.000000px;}
.x0_c00307{left:0.000000px;}
@media print{
.y0_c00307{bottom:0.000000pt;}
.h1_c00307{height:1036.000000pt;}
.h0_c00307{height:1036.266667pt;}
.w0_c00307{width:813.333333pt;}
.x0_c00307{left:0.000000pt;}
}





/* 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_c00308 {
    display:none;
  }
  .loading-indicator_c00308.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00308 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_c00308 { 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_c00308" -> "#page-container .classname_c00308")
 */
.pf_c00308 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00308 { /* 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_c00308.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00308 { /* 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_c00308 { /* 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_c00308 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00308 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00308 {overflow:visible;}
  }
}
.c_c00308 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00308 { /* 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_c00308:after { /* webkit #35443 */
  content: '';
}
.t_c00308:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00308 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 */
}
.__c00308 { /* 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_c00308 { /* info for Javascript */
  display:none;
}
.l_c00308 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00308 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00308 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00308: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_c00308 {
    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_c00308.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00308.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_c00308 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00308{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00308;src:url('chunks/assets/font_fabf4b590f7fb32aea93ffb2.woff2')format("woff");}.ff1_c00308{font-family:ff1_c00308;line-height:1.000000;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;}
.m0_c00308{transform:matrix(0.086060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.086060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.086060,0.000000,0.000000,0.250000,0,0);}
.mc9_c00308{transform:matrix(0.132175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132175,0.000000,0.000000,0.250000,0,0);}
.mce_c00308{transform:matrix(0.148585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148585,0.000000,0.000000,0.250000,0,0);}
.me1_c00308{transform:matrix(0.170480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170480,0.000000,0.000000,0.250000,0,0);}
.m11c_c00308{transform:matrix(0.183435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183435,0.000000,0.000000,0.250000,0,0);}
.me7_c00308{transform:matrix(0.191375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191375,0.000000,0.000000,0.250000,0,0);}
.mf7_c00308{transform:matrix(0.191950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191950,0.000000,0.000000,0.250000,0,0);}
.m11d_c00308{transform:matrix(0.194435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194435,0.000000,0.000000,0.250000,0,0);}
.m1c_c00308{transform:matrix(0.196295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196295,0.000000,0.000000,0.250000,0,0);}
.m11e_c00308{transform:matrix(0.196780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196780,0.000000,0.000000,0.250000,0,0);}
.m119_c00308{transform:matrix(0.197020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197020,0.000000,0.000000,0.250000,0,0);}
.m122_c00308{transform:matrix(0.197785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197785,0.000000,0.000000,0.250000,0,0);}
.m107_c00308{transform:matrix(0.199035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199035,0.000000,0.000000,0.250000,0,0);}
.m76_c00308{transform:matrix(0.201245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201245,0.000000,0.000000,0.250000,0,0);}
.mda_c00308{transform:matrix(0.203550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203550,0.000000,0.000000,0.250000,0,0);}
.mb0_c00308{transform:matrix(0.204195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204195,0.000000,0.000000,0.250000,0,0);}
.m105_c00308{transform:matrix(0.204330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204330,0.000000,0.000000,0.250000,0,0);}
.m62_c00308{transform:matrix(0.205745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205745,0.000000,0.000000,0.250000,0,0);}
.m33_c00308{transform:matrix(0.206215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206215,0.000000,0.000000,0.250000,0,0);}
.m75_c00308{transform:matrix(0.206780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206780,0.000000,0.000000,0.250000,0,0);}
.m121_c00308{transform:matrix(0.207065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207065,0.000000,0.000000,0.250000,0,0);}
.mbc_c00308{transform:matrix(0.207100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207100,0.000000,0.000000,0.250000,0,0);}
.m120_c00308{transform:matrix(0.207395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207395,0.000000,0.000000,0.250000,0,0);}
.m11f_c00308{transform:matrix(0.207425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207425,0.000000,0.000000,0.250000,0,0);}
.md9_c00308{transform:matrix(0.207450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207450,0.000000,0.000000,0.250000,0,0);}
.me5_c00308{transform:matrix(0.208710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208710,0.000000,0.000000,0.250000,0,0);}
.ma2_c00308{transform:matrix(0.211215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211215,0.000000,0.000000,0.250000,0,0);}
.me2_c00308{transform:matrix(0.211845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211845,0.000000,0.000000,0.250000,0,0);}
.m45_c00308{transform:matrix(0.212425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212425,0.000000,0.000000,0.250000,0,0);}
.m6b_c00308{transform:matrix(0.213690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213690,0.000000,0.000000,0.250000,0,0);}
.m3d_c00308{transform:matrix(0.214665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214665,0.000000,0.000000,0.250000,0,0);}
.m2d_c00308{transform:matrix(0.214760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214760,0.000000,0.000000,0.250000,0,0);}
.m32_c00308{transform:matrix(0.214900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214900,0.000000,0.000000,0.250000,0,0);}
.mc3_c00308{transform:matrix(0.215715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215715,0.000000,0.000000,0.250000,0,0);}
.m72_c00308{transform:matrix(0.215755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215755,0.000000,0.000000,0.250000,0,0);}
.me0_c00308{transform:matrix(0.216885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216885,0.000000,0.000000,0.250000,0,0);}
.md7_c00308{transform:matrix(0.216995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216995,0.000000,0.000000,0.250000,0,0);}
.m88_c00308{transform:matrix(0.217125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217125,0.000000,0.000000,0.250000,0,0);}
.m127_c00308{transform:matrix(0.217515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217515,0.000000,0.000000,0.250000,0,0);}
.me4_c00308{transform:matrix(0.218110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218110,0.000000,0.000000,0.250000,0,0);}
.m11a_c00308{transform:matrix(0.218350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218350,0.000000,0.000000,0.250000,0,0);}
.m111_c00308{transform:matrix(0.218420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218420,0.000000,0.000000,0.250000,0,0);}
.m78_c00308{transform:matrix(0.218940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218940,0.000000,0.000000,0.250000,0,0);}
.m50_c00308{transform:matrix(0.219145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219145,0.000000,0.000000,0.250000,0,0);}
.m3f_c00308{transform:matrix(0.219160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219160,0.000000,0.000000,0.250000,0,0);}
.mfa_c00308{transform:matrix(0.219275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219275,0.000000,0.000000,0.250000,0,0);}
.m77_c00308{transform:matrix(0.219535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219535,0.000000,0.000000,0.250000,0,0);}
.m8a_c00308{transform:matrix(0.219845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219845,0.000000,0.000000,0.250000,0,0);}
.m7a_c00308{transform:matrix(0.220190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220190,0.000000,0.000000,0.250000,0,0);}
.m39_c00308{transform:matrix(0.220510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220510,0.000000,0.000000,0.250000,0,0);}
.m9b_c00308{transform:matrix(0.220900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220900,0.000000,0.000000,0.250000,0,0);}
.m2b_c00308{transform:matrix(0.221160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221160,0.000000,0.000000,0.250000,0,0);}
.m44_c00308{transform:matrix(0.221375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221375,0.000000,0.000000,0.250000,0,0);}
.maa_c00308{transform:matrix(0.221470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221470,0.000000,0.000000,0.250000,0,0);}
.m36_c00308{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00308{transform:matrix(0.222815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222815,0.000000,0.000000,0.250000,0,0);}
.m2f_c00308{transform:matrix(0.223180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223180,0.000000,0.000000,0.250000,0,0);}
.mf2_c00308{transform:matrix(0.223315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223315,0.000000,0.000000,0.250000,0,0);}
.mc8_c00308{transform:matrix(0.223380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223380,0.000000,0.000000,0.250000,0,0);}
.m23_c00308{transform:matrix(0.223535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223535,0.000000,0.000000,0.250000,0,0);}
.m7b_c00308{transform:matrix(0.223745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223745,0.000000,0.000000,0.250000,0,0);}
.m19_c00308{transform:matrix(0.223970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223970,0.000000,0.000000,0.250000,0,0);}
.m12b_c00308{transform:matrix(0.224015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224015,0.000000,0.000000,0.250000,0,0);}
.mdc_c00308{transform:matrix(0.224070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224070,0.000000,0.000000,0.250000,0,0);}
.m126_c00308{transform:matrix(0.224195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224195,0.000000,0.000000,0.250000,0,0);}
.m70_c00308{transform:matrix(0.224600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224600,0.000000,0.000000,0.250000,0,0);}
.ma1_c00308{transform:matrix(0.224655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224655,0.000000,0.000000,0.250000,0,0);}
.ma5_c00308{transform:matrix(0.224680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224680,0.000000,0.000000,0.250000,0,0);}
.m15_c00308{transform:matrix(0.224760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224760,0.000000,0.000000,0.250000,0,0);}
.me_c00308{transform:matrix(0.225345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225345,0.000000,0.000000,0.250000,0,0);}
.m129_c00308{transform:matrix(0.225810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225810,0.000000,0.000000,0.250000,0,0);}
.m110_c00308{transform:matrix(0.225885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225885,0.000000,0.000000,0.250000,0,0);}
.m48_c00308{transform:matrix(0.226065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226065,0.000000,0.000000,0.250000,0,0);}
.m29_c00308{transform:matrix(0.227020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227020,0.000000,0.000000,0.250000,0,0);}
.m4c_c00308{transform:matrix(0.227090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227090,0.000000,0.000000,0.250000,0,0);}
.m5c_c00308{transform:matrix(0.227430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227430,0.000000,0.000000,0.250000,0,0);}
.m99_c00308{transform:matrix(0.227555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227555,0.000000,0.000000,0.250000,0,0);}
.m11b_c00308{transform:matrix(0.227710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227710,0.000000,0.000000,0.250000,0,0);}
.mfe_c00308{transform:matrix(0.228160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228160,0.000000,0.000000,0.250000,0,0);}
.m7c_c00308{transform:matrix(0.228245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228245,0.000000,0.000000,0.250000,0,0);}
.ma4_c00308{transform:matrix(0.228280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228280,0.000000,0.000000,0.250000,0,0);}
.mc6_c00308{transform:matrix(0.228470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228470,0.000000,0.000000,0.250000,0,0);}
.mc4_c00308{transform:matrix(0.228565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228565,0.000000,0.000000,0.250000,0,0);}
.m73_c00308{transform:matrix(0.228640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228640,0.000000,0.000000,0.250000,0,0);}
.m80_c00308{transform:matrix(0.229265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229265,0.000000,0.000000,0.250000,0,0);}
.m40_c00308{transform:matrix(0.229465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229465,0.000000,0.000000,0.250000,0,0);}
.mef_c00308{transform:matrix(0.229590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229590,0.000000,0.000000,0.250000,0,0);}
.m87_c00308{transform:matrix(0.230545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230545,0.000000,0.000000,0.250000,0,0);}
.m34_c00308{transform:matrix(0.230595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230595,0.000000,0.000000,0.250000,0,0);}
.m6e_c00308{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.mde_c00308{transform:matrix(0.231405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231405,0.000000,0.000000,0.250000,0,0);}
.m92_c00308{transform:matrix(0.231820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231820,0.000000,0.000000,0.250000,0,0);}
.m84_c00308{transform:matrix(0.231840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231840,0.000000,0.000000,0.250000,0,0);}
.me6_c00308{transform:matrix(0.231895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231895,0.000000,0.000000,0.250000,0,0);}
.m30_c00308{transform:matrix(0.232065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232065,0.000000,0.000000,0.250000,0,0);}
.mb_c00308{transform:matrix(0.232405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232405,0.000000,0.000000,0.250000,0,0);}
.m58_c00308{transform:matrix(0.232660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232660,0.000000,0.000000,0.250000,0,0);}
.m123_c00308{transform:matrix(0.232985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232985,0.000000,0.000000,0.250000,0,0);}
.m37_c00308{transform:matrix(0.233405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233405,0.000000,0.000000,0.250000,0,0);}
.mf5_c00308{transform:matrix(0.233815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233815,0.000000,0.000000,0.250000,0,0);}
.mdf_c00308{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.mf0_c00308{transform:matrix(0.235080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235080,0.000000,0.000000,0.250000,0,0);}
.m9e_c00308{transform:matrix(0.235390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235390,0.000000,0.000000,0.250000,0,0);}
.m97_c00308{transform:matrix(0.235755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235755,0.000000,0.000000,0.250000,0,0);}
.m10_c00308{transform:matrix(0.235850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235850,0.000000,0.000000,0.250000,0,0);}
.m10e_c00308{transform:matrix(0.235880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235880,0.000000,0.000000,0.250000,0,0);}
.me8_c00308{transform:matrix(0.236030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236030,0.000000,0.000000,0.250000,0,0);}
.m9c_c00308{transform:matrix(0.236210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236210,0.000000,0.000000,0.250000,0,0);}
.mc0_c00308{transform:matrix(0.236445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236445,0.000000,0.000000,0.250000,0,0);}
.med_c00308{transform:matrix(0.236615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236615,0.000000,0.000000,0.250000,0,0);}
.m10b_c00308{transform:matrix(0.237170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237170,0.000000,0.000000,0.250000,0,0);}
.m4a_c00308{transform:matrix(0.237185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237185,0.000000,0.000000,0.250000,0,0);}
.mf8_c00308{transform:matrix(0.237590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237590,0.000000,0.000000,0.250000,0,0);}
.mb5_c00308{transform:matrix(0.237770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237770,0.000000,0.000000,0.250000,0,0);}
.m4_c00308{transform:matrix(0.237835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237835,0.000000,0.000000,0.250000,0,0);}
.m5a_c00308{transform:matrix(0.238355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238355,0.000000,0.000000,0.250000,0,0);}
.m42_c00308{transform:matrix(0.238630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238630,0.000000,0.000000,0.250000,0,0);}
.me3_c00308{transform:matrix(0.238660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238660,0.000000,0.000000,0.250000,0,0);}
.m68_c00308{transform:matrix(0.239125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239125,0.000000,0.000000,0.250000,0,0);}
.mcc_c00308{transform:matrix(0.239295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239295,0.000000,0.000000,0.250000,0,0);}
.m12a_c00308{transform:matrix(0.239650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239650,0.000000,0.000000,0.250000,0,0);}
.m2a_c00308{transform:matrix(0.239825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239825,0.000000,0.000000,0.250000,0,0);}
.m102_c00308{transform:matrix(0.240065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240065,0.000000,0.000000,0.250000,0,0);}
.m52_c00308{transform:matrix(0.240115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240115,0.000000,0.000000,0.250000,0,0);}
.m38_c00308{transform:matrix(0.240295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240295,0.000000,0.000000,0.250000,0,0);}
.m5d_c00308{transform:matrix(0.240340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240340,0.000000,0.000000,0.250000,0,0);}
.md5_c00308{transform:matrix(0.240460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240460,0.000000,0.000000,0.250000,0,0);}
.m1d_c00308{transform:matrix(0.240835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240835,0.000000,0.000000,0.250000,0,0);}
.m25_c00308{transform:matrix(0.241030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241030,0.000000,0.000000,0.250000,0,0);}
.m67_c00308{transform:matrix(0.241055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241055,0.000000,0.000000,0.250000,0,0);}
.m22_c00308{transform:matrix(0.241320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241320,0.000000,0.000000,0.250000,0,0);}
.m51_c00308{transform:matrix(0.241960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241960,0.000000,0.000000,0.250000,0,0);}
.ma8_c00308{transform:matrix(0.241995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241995,0.000000,0.000000,0.250000,0,0);}
.m115_c00308{transform:matrix(0.242015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242015,0.000000,0.000000,0.250000,0,0);}
.me9_c00308{transform:matrix(0.242020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242020,0.000000,0.000000,0.250000,0,0);}
.m1f_c00308{transform:matrix(0.242075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242075,0.000000,0.000000,0.250000,0,0);}
.mbe_c00308{transform:matrix(0.243100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243100,0.000000,0.000000,0.250000,0,0);}
.ma0_c00308{transform:matrix(0.243715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243715,0.000000,0.000000,0.250000,0,0);}
.m9d_c00308{transform:matrix(0.244110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244110,0.000000,0.000000,0.250000,0,0);}
.mdd_c00308{transform:matrix(0.244315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244315,0.000000,0.000000,0.250000,0,0);}
.m20_c00308{transform:matrix(0.244475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244475,0.000000,0.000000,0.250000,0,0);}
.mb9_c00308{transform:matrix(0.244760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244760,0.000000,0.000000,0.250000,0,0);}
.mc1_c00308{transform:matrix(0.245025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245025,0.000000,0.000000,0.250000,0,0);}
.m6d_c00308{transform:matrix(0.245770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245770,0.000000,0.000000,0.250000,0,0);}
.m9a_c00308{transform:matrix(0.245930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245930,0.000000,0.000000,0.250000,0,0);}
.m96_c00308{transform:matrix(0.247025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247025,0.000000,0.000000,0.250000,0,0);}
.m5_c00308{transform:matrix(0.247460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247460,0.000000,0.000000,0.250000,0,0);}
.m64_c00308{transform:matrix(0.247845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247845,0.000000,0.000000,0.250000,0,0);}
.ma3_c00308{transform:matrix(0.248010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248010,0.000000,0.000000,0.250000,0,0);}
.m31_c00308{transform:matrix(0.248105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248105,0.000000,0.000000,0.250000,0,0);}
.m6f_c00308{transform:matrix(0.248175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248175,0.000000,0.000000,0.250000,0,0);}
.mf4_c00308{transform:matrix(0.248340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248340,0.000000,0.000000,0.250000,0,0);}
.m5f_c00308{transform:matrix(0.248445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248445,0.000000,0.000000,0.250000,0,0);}
.m9f_c00308{transform:matrix(0.248635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248635,0.000000,0.000000,0.250000,0,0);}
.md6_c00308{transform:matrix(0.249090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249090,0.000000,0.000000,0.250000,0,0);}
.m49_c00308{transform:matrix(0.249155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249155,0.000000,0.000000,0.250000,0,0);}
.mc7_c00308{transform:matrix(0.249305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249305,0.000000,0.000000,0.250000,0,0);}
.mfc_c00308{transform:matrix(0.249405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249405,0.000000,0.000000,0.250000,0,0);}
.mb7_c00308{transform:matrix(0.249480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249480,0.000000,0.000000,0.250000,0,0);}
.md8_c00308{transform:matrix(0.249505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249505,0.000000,0.000000,0.250000,0,0);}
.m54_c00308{transform:matrix(0.249760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249760,0.000000,0.000000,0.250000,0,0);}
.m26_c00308{transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);}
.mb2_c00308{transform:matrix(0.250155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250155,0.000000,0.000000,0.250000,0,0);}
.mf3_c00308{transform:matrix(0.250400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250400,0.000000,0.000000,0.250000,0,0);}
.mca_c00308{transform:matrix(0.250545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250545,0.000000,0.000000,0.250000,0,0);}
.mdb_c00308{transform:matrix(0.250785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250785,0.000000,0.000000,0.250000,0,0);}
.mc2_c00308{transform:matrix(0.250855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250855,0.000000,0.000000,0.250000,0,0);}
.md0_c00308{transform:matrix(0.251395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251395,0.000000,0.000000,0.250000,0,0);}
.m61_c00308{transform:matrix(0.251400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251400,0.000000,0.000000,0.250000,0,0);}
.m7e_c00308{transform:matrix(0.251405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251405,0.000000,0.000000,0.250000,0,0);}
.mfd_c00308{transform:matrix(0.251445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251445,0.000000,0.000000,0.250000,0,0);}
.m66_c00308{transform:matrix(0.251950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251950,0.000000,0.000000,0.250000,0,0);}
.mea_c00308{transform:matrix(0.252365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252365,0.000000,0.000000,0.250000,0,0);}
.mc5_c00308{transform:matrix(0.252555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252555,0.000000,0.000000,0.250000,0,0);}
.m8b_c00308{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m108_c00308{transform:matrix(0.252860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252860,0.000000,0.000000,0.250000,0,0);}
.mcb_c00308{transform:matrix(0.252910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252910,0.000000,0.000000,0.250000,0,0);}
.m101_c00308{transform:matrix(0.252925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252925,0.000000,0.000000,0.250000,0,0);}
.mae_c00308{transform:matrix(0.253300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253300,0.000000,0.000000,0.250000,0,0);}
.m10c_c00308{transform:matrix(0.253440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253440,0.000000,0.000000,0.250000,0,0);}
.m57_c00308{transform:matrix(0.253455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253455,0.000000,0.000000,0.250000,0,0);}
.m118_c00308{transform:matrix(0.253915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253915,0.000000,0.000000,0.250000,0,0);}
.ma9_c00308{transform:matrix(0.254020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254020,0.000000,0.000000,0.250000,0,0);}
.m74_c00308{transform:matrix(0.254200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254200,0.000000,0.000000,0.250000,0,0);}
.m3b_c00308{transform:matrix(0.254685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254685,0.000000,0.000000,0.250000,0,0);}
.m79_c00308{transform:matrix(0.254950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254950,0.000000,0.000000,0.250000,0,0);}
.m104_c00308{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00308{transform:matrix(0.255650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255650,0.000000,0.000000,0.250000,0,0);}
.mf1_c00308{transform:matrix(0.255670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255670,0.000000,0.000000,0.250000,0,0);}
.mcd_c00308{transform:matrix(0.255745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255745,0.000000,0.000000,0.250000,0,0);}
.m7f_c00308{transform:matrix(0.255855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255855,0.000000,0.000000,0.250000,0,0);}
.m28_c00308{transform:matrix(0.255860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255860,0.000000,0.000000,0.250000,0,0);}
.m55_c00308{transform:matrix(0.255935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255935,0.000000,0.000000,0.250000,0,0);}
.md1_c00308{transform:matrix(0.256215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256215,0.000000,0.000000,0.250000,0,0);}
.mc_c00308{transform:matrix(0.256480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256480,0.000000,0.000000,0.250000,0,0);}
.m109_c00308{transform:matrix(0.256710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256710,0.000000,0.000000,0.250000,0,0);}
.maf_c00308{transform:matrix(0.256830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256830,0.000000,0.000000,0.250000,0,0);}
.m2e_c00308{transform:matrix(0.256895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256895,0.000000,0.000000,0.250000,0,0);}
.mf6_c00308{transform:matrix(0.256915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256915,0.000000,0.000000,0.250000,0,0);}
.m6_c00308{transform:matrix(0.257290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257290,0.000000,0.000000,0.250000,0,0);}
.mb4_c00308{transform:matrix(0.257420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257420,0.000000,0.000000,0.250000,0,0);}
.mbd_c00308{transform:matrix(0.257855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257855,0.000000,0.000000,0.250000,0,0);}
.m124_c00308{transform:matrix(0.257875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257875,0.000000,0.000000,0.250000,0,0);}
.m117_c00308{transform:matrix(0.258035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258035,0.000000,0.000000,0.250000,0,0);}
.md2_c00308{transform:matrix(0.258350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258350,0.000000,0.000000,0.250000,0,0);}
.m4b_c00308{transform:matrix(0.258695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258695,0.000000,0.000000,0.250000,0,0);}
.mbb_c00308{transform:matrix(0.259280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259280,0.000000,0.000000,0.250000,0,0);}
.m5b_c00308{transform:matrix(0.259520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259520,0.000000,0.000000,0.250000,0,0);}
.m71_c00308{transform:matrix(0.259540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259540,0.000000,0.000000,0.250000,0,0);}
.m8_c00308{transform:matrix(0.259605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259605,0.000000,0.000000,0.250000,0,0);}
.m53_c00308{transform:matrix(0.259725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259725,0.000000,0.000000,0.250000,0,0);}
.mba_c00308{transform:matrix(0.260160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260160,0.000000,0.000000,0.250000,0,0);}
.m5e_c00308{transform:matrix(0.260215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260215,0.000000,0.000000,0.250000,0,0);}
.m8d_c00308{transform:matrix(0.260220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260220,0.000000,0.000000,0.250000,0,0);}
.mab_c00308{transform:matrix(0.260425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260425,0.000000,0.000000,0.250000,0,0);}
.m112_c00308{transform:matrix(0.260820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260820,0.000000,0.000000,0.250000,0,0);}
.m3e_c00308{transform:matrix(0.261815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261815,0.000000,0.000000,0.250000,0,0);}
.m98_c00308{transform:matrix(0.261965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261965,0.000000,0.000000,0.250000,0,0);}
.m106_c00308{transform:matrix(0.262255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262255,0.000000,0.000000,0.250000,0,0);}
.m6c_c00308{transform:matrix(0.262960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262960,0.000000,0.000000,0.250000,0,0);}
.m10f_c00308{transform:matrix(0.263050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263050,0.000000,0.000000,0.250000,0,0);}
.m12_c00308{transform:matrix(0.263485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263485,0.000000,0.000000,0.250000,0,0);}
.m90_c00308{transform:matrix(0.263760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263760,0.000000,0.000000,0.250000,0,0);}
.m93_c00308{transform:matrix(0.263785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263785,0.000000,0.000000,0.250000,0,0);}
.m125_c00308{transform:matrix(0.264050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264050,0.000000,0.000000,0.250000,0,0);}
.ma7_c00308{transform:matrix(0.264060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264060,0.000000,0.000000,0.250000,0,0);}
.m16_c00308{transform:matrix(0.264365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264365,0.000000,0.000000,0.250000,0,0);}
.m59_c00308{transform:matrix(0.264385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264385,0.000000,0.000000,0.250000,0,0);}
.m103_c00308{transform:matrix(0.264435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264435,0.000000,0.000000,0.250000,0,0);}
.m82_c00308{transform:matrix(0.264575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264575,0.000000,0.000000,0.250000,0,0);}
.m1e_c00308{transform:matrix(0.264730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264730,0.000000,0.000000,0.250000,0,0);}
.m9_c00308{transform:matrix(0.264770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264770,0.000000,0.000000,0.250000,0,0);}
.m69_c00308{transform:matrix(0.264990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264990,0.000000,0.000000,0.250000,0,0);}
.m21_c00308{transform:matrix(0.265145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265145,0.000000,0.000000,0.250000,0,0);}
.m46_c00308{transform:matrix(0.265205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265205,0.000000,0.000000,0.250000,0,0);}
.m41_c00308{transform:matrix(0.265310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265310,0.000000,0.000000,0.250000,0,0);}
.m56_c00308{transform:matrix(0.265430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265430,0.000000,0.000000,0.250000,0,0);}
.m3a_c00308{transform:matrix(0.265565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265565,0.000000,0.000000,0.250000,0,0);}
.m1b_c00308{transform:matrix(0.265660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265660,0.000000,0.000000,0.250000,0,0);}
.m35_c00308{transform:matrix(0.265895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265895,0.000000,0.000000,0.250000,0,0);}
.m3c_c00308{transform:matrix(0.266115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266115,0.000000,0.000000,0.250000,0,0);}
.m43_c00308{transform:matrix(0.266520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266520,0.000000,0.000000,0.250000,0,0);}
.mb8_c00308{transform:matrix(0.266570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266570,0.000000,0.000000,0.250000,0,0);}
.m83_c00308{transform:matrix(0.266690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266690,0.000000,0.000000,0.250000,0,0);}
.m116_c00308{transform:matrix(0.266710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266710,0.000000,0.000000,0.250000,0,0);}
.mb1_c00308{transform:matrix(0.266945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266945,0.000000,0.000000,0.250000,0,0);}
.mad_c00308{transform:matrix(0.267160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267160,0.000000,0.000000,0.250000,0,0);}
.mf9_c00308{transform:matrix(0.267180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267180,0.000000,0.000000,0.250000,0,0);}
.m95_c00308{transform:matrix(0.267220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267220,0.000000,0.000000,0.250000,0,0);}
.mf_c00308{transform:matrix(0.267300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267300,0.000000,0.000000,0.250000,0,0);}
.m60_c00308{transform:matrix(0.267335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267335,0.000000,0.000000,0.250000,0,0);}
.m47_c00308{transform:matrix(0.267415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267415,0.000000,0.000000,0.250000,0,0);}
.m11_c00308{transform:matrix(0.267515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267515,0.000000,0.000000,0.250000,0,0);}
.mb6_c00308{transform:matrix(0.267655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267655,0.000000,0.000000,0.250000,0,0);}
.m6a_c00308{transform:matrix(0.268260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268260,0.000000,0.000000,0.250000,0,0);}
.m17_c00308{transform:matrix(0.268345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268345,0.000000,0.000000,0.250000,0,0);}
.m4d_c00308{transform:matrix(0.268935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268935,0.000000,0.000000,0.250000,0,0);}
.mec_c00308{transform:matrix(0.269015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269015,0.000000,0.000000,0.250000,0,0);}
.m10d_c00308{transform:matrix(0.269035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269035,0.000000,0.000000,0.250000,0,0);}
.m13_c00308{transform:matrix(0.269180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269180,0.000000,0.000000,0.250000,0,0);}
.md4_c00308{transform:matrix(0.269750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269750,0.000000,0.000000,0.250000,0,0);}
.m18_c00308{transform:matrix(0.269845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269845,0.000000,0.000000,0.250000,0,0);}
.m2_c00308{transform:matrix(0.270125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270125,0.000000,0.000000,0.250000,0,0);}
.mac_c00308{transform:matrix(0.270250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270250,0.000000,0.000000,0.250000,0,0);}
.m4e_c00308{transform:matrix(0.270315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270315,0.000000,0.000000,0.250000,0,0);}
.m81_c00308{transform:matrix(0.270395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270395,0.000000,0.000000,0.250000,0,0);}
.mbf_c00308{transform:matrix(0.270455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270455,0.000000,0.000000,0.250000,0,0);}
.m24_c00308{transform:matrix(0.270480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270480,0.000000,0.000000,0.250000,0,0);}
.meb_c00308{transform:matrix(0.270890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270890,0.000000,0.000000,0.250000,0,0);}
.m94_c00308{transform:matrix(0.270895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270895,0.000000,0.000000,0.250000,0,0);}
.md_c00308{transform:matrix(0.271120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271120,0.000000,0.000000,0.250000,0,0);}
.m4f_c00308{transform:matrix(0.271210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271210,0.000000,0.000000,0.250000,0,0);}
.m65_c00308{transform:matrix(0.271305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271305,0.000000,0.000000,0.250000,0,0);}
.m100_c00308{transform:matrix(0.271520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271520,0.000000,0.000000,0.250000,0,0);}
.md3_c00308{transform:matrix(0.271940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271940,0.000000,0.000000,0.250000,0,0);}
.ma6_c00308{transform:matrix(0.272115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272115,0.000000,0.000000,0.250000,0,0);}
.m63_c00308{transform:matrix(0.272220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272220,0.000000,0.000000,0.250000,0,0);}
.mfb_c00308{transform:matrix(0.272280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272280,0.000000,0.000000,0.250000,0,0);}
.mee_c00308{transform:matrix(0.272625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272625,0.000000,0.000000,0.250000,0,0);}
.m128_c00308{transform:matrix(0.273785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273785,0.000000,0.000000,0.250000,0,0);}
.m85_c00308{transform:matrix(0.273990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273990,0.000000,0.000000,0.250000,0,0);}
.m114_c00308{transform:matrix(0.274035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274035,0.000000,0.000000,0.250000,0,0);}
.m14_c00308{transform:matrix(0.274490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274490,0.000000,0.000000,0.250000,0,0);}
.m91_c00308{transform:matrix(0.274640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274640,0.000000,0.000000,0.250000,0,0);}
.ma_c00308{transform:matrix(0.275845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275845,0.000000,0.000000,0.250000,0,0);}
.mb3_c00308{transform:matrix(0.275990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275990,0.000000,0.000000,0.250000,0,0);}
.mff_c00308{transform:matrix(0.276210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276210,0.000000,0.000000,0.250000,0,0);}
.m1a_c00308{transform:matrix(0.276805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276805,0.000000,0.000000,0.250000,0,0);}
.m10a_c00308{transform:matrix(0.277015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277015,0.000000,0.000000,0.250000,0,0);}
.m86_c00308{transform:matrix(0.277265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277265,0.000000,0.000000,0.250000,0,0);}
.mcf_c00308{transform:matrix(0.278665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278665,0.000000,0.000000,0.250000,0,0);}
.m113_c00308{transform:matrix(0.279175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279175,0.000000,0.000000,0.250000,0,0);}
.m1_c00308{transform:matrix(0.284100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284100,0.000000,0.000000,0.250000,0,0);}
.m89_c00308{transform:matrix(0.284435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284435,0.000000,0.000000,0.250000,0,0);}
.m8f_c00308{transform:matrix(0.291175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291175,0.000000,0.000000,0.250000,0,0);}
.m8e_c00308{transform:matrix(0.292840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292840,0.000000,0.000000,0.250000,0,0);}
.m3_c00308{transform:matrix(0.293300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293300,0.000000,0.000000,0.250000,0,0);}
.m8c_c00308{transform:matrix(0.301595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301595,0.000000,0.000000,0.250000,0,0);}
.m7_c00308{transform:matrix(0.302660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302660,0.000000,0.000000,0.250000,0,0);}
.m27_c00308{transform:matrix(0.366060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366060,0.000000,0.000000,0.250000,0,0);}
.v0_c00308{vertical-align:0.000000px;}
.ls0_c00308{letter-spacing:0.000000px;}
.sc__c00308{text-shadow:none;}
.sc0_c00308{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__c00308{-webkit-text-stroke:0px transparent;}
.sc0_c00308{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00308{word-spacing:0.000000px;}
.fc0_c00308{color:transparent;}
.fs1_c00308{font-size:66.000000px;}
.fs2_c00308{font-size:72.000000px;}
.fs3_c00308{font-size:78.000000px;}
.fs0_c00308{font-size:84.000000px;}
.y0_c00308{bottom:0.000000px;}
.y20_c00308{bottom:63.255000px;}
.y1f_c00308{bottom:93.615000px;}
.y1e_c00308{bottom:157.870500px;}
.y1d_c00308{bottom:189.930000px;}
.y1c_c00308{bottom:221.400000px;}
.y1b_c00308{bottom:252.381000px;}
.y1a_c00308{bottom:284.830500px;}
.y19_c00308{bottom:316.198500px;}
.y18_c00308{bottom:348.030000px;}
.y17_c00308{bottom:379.696500px;}
.y16_c00308{bottom:411.249000px;}
.y15_c00308{bottom:442.800000px;}
.y14_c00308{bottom:475.470000px;}
.y13_c00308{bottom:506.790000px;}
.y12_c00308{bottom:538.315500px;}
.y11_c00308{bottom:569.371500px;}
.y10_c00308{bottom:601.020000px;}
.yf_c00308{bottom:632.880000px;}
.ye_c00308{bottom:664.810500px;}
.yd_c00308{bottom:697.410000px;}
.yc_c00308{bottom:728.224500px;}
.yb_c00308{bottom:760.255500px;}
.ya_c00308{bottom:792.778500px;}
.y9_c00308{bottom:824.418000px;}
.y8_c00308{bottom:855.970500px;}
.y7_c00308{bottom:886.680000px;}
.y6_c00308{bottom:918.376500px;}
.y5_c00308{bottom:949.929000px;}
.y4_c00308{bottom:981.931500px;}
.y3_c00308{bottom:1012.570500px;}
.y2_c00308{bottom:1045.408500px;}
.y1_c00308{bottom:1113.079500px;}
.h3_c00308{height:66.000000px;}
.h4_c00308{height:72.000000px;}
.h5_c00308{height:78.000000px;}
.h2_c00308{height:84.000000px;}
.h1_c00308{height:1165.500000px;}
.h0_c00308{height:1165.800000px;}
.w0_c00308{width:915.000000px;}
.x0_c00308{left:0.000000px;}
.xc_c00308{left:152.280000px;}
.x15_c00308{left:153.630000px;}
.x68_c00308{left:154.710000px;}
.x73_c00308{left:157.410000px;}
.x65_c00308{left:175.500000px;}
.xd_c00308{left:185.490000px;}
.x4a_c00308{left:186.570000px;}
.x16_c00308{left:196.560000px;}
.x4d_c00308{left:197.910000px;}
.x20_c00308{left:207.360000px;}
.x55_c00308{left:209.250000px;}
.x36_c00308{left:218.970000px;}
.x6c_c00308{left:220.320000px;}
.x17_c00308{left:229.500000px;}
.x4e_c00308{left:230.580000px;}
.x2d_c00308{left:241.650000px;}
.x63_c00308{left:243.270000px;}
.x28_c00308{left:251.640000px;}
.xe_c00308{left:252.720000px;}
.x70_c00308{left:253.800000px;}
.x42_c00308{left:262.170000px;}
.x2_c00308{left:263.250000px;}
.x3d_c00308{left:264.330000px;}
.x37_c00308{left:272.970000px;}
.x2e_c00308{left:274.590000px;}
.x74_c00308{left:275.940000px;}
.x47_c00308{left:284.580000px;}
.x6d_c00308{left:285.660000px;}
.x18_c00308{left:296.730000px;}
.x5f_c00308{left:306.450000px;}
.x52_c00308{left:308.340000px;}
.x2f_c00308{left:318.060000px;}
.x3_c00308{left:328.590000px;}
.x21_c00308{left:339.390000px;}
.x43_c00308{left:340.470000px;}
.xf_c00308{left:350.460000px;}
.x61_c00308{left:351.540000px;}
.x79_c00308{left:353.970000px;}
.x67_c00308{left:361.530000px;}
.x30_c00308{left:362.610000px;}
.x59_c00308{left:363.690000px;}
.x38_c00308{left:372.870000px;}
.x4_c00308{left:382.860000px;}
.x22_c00308{left:384.480000px;}
.x75_c00308{left:385.560000px;}
.x31_c00308{left:394.200000px;}
.x5c_c00308{left:395.280000px;}
.x53_c00308{left:396.360000px;}
.x1_c00308{left:405.810000px;}
.x19_c00308{left:415.530000px;}
.x4f_c00308{left:416.610000px;}
.x39_c00308{left:417.690000px;}
.x76_c00308{left:419.580000px;}
.x23_c00308{left:427.410000px;}
.x7a_c00308{left:429.570000px;}
.x60_c00308{left:439.290000px;}
.x3a_c00308{left:449.010000px;}
.x77_c00308{left:450.090000px;}
.x50_c00308{left:451.440000px;}
.x10_c00308{left:459.810000px;}
.x58_c00308{left:461.430000px;}
.x7b_c00308{left:462.780000px;}
.x5_c00308{left:471.690000px;}
.x32_c00308{left:482.220000px;}
.x44_c00308{left:484.110000px;}
.x1a_c00308{left:492.480000px;}
.x11_c00308{left:493.560000px;}
.x69_c00308{left:494.640000px;}
.x6_c00308{left:504.360000px;}
.x3e_c00308{left:505.980000px;}
.x29_c00308{left:514.890000px;}
.x64_c00308{left:516.240000px;}
.x1b_c00308{left:526.500000px;}
.x4b_c00308{left:527.850000px;}
.x7_c00308{left:536.760000px;}
.x78_c00308{left:538.380000px;}
.x45_c00308{left:548.100000px;}
.x33_c00308{left:549.720000px;}
.x1c_c00308{left:558.630000px;}
.x51_c00308{left:559.980000px;}
.x2a_c00308{left:569.700000px;}
.x8_c00308{left:570.780000px;}
.x12_c00308{left:580.770000px;}
.x3f_c00308{left:582.660000px;}
.x5a_c00308{left:593.190000px;}
.x5d_c00308{left:602.910000px;}
.x6a_c00308{left:604.260000px;}
.x3b_c00308{left:613.980000px;}
.x6e_c00308{left:615.330000px;}
.x62_c00308{left:616.410000px;}
.x24_c00308{left:624.780000px;}
.x48_c00308{left:626.130000px;}
.x34_c00308{left:636.930000px;}
.x7c_c00308{left:638.820000px;}
.x40_c00308{left:646.380000px;}
.x3c_c00308{left:647.730000px;}
.x25_c00308{left:659.070000px;}
.x2b_c00308{left:660.690000px;}
.x1d_c00308{left:668.520000px;}
.x35_c00308{left:670.410000px;}
.x13_c00308{left:680.670000px;}
.x71_c00308{left:681.750000px;}
.x66_c00308{left:683.370000px;}
.x9_c00308{left:690.390000px;}
.x6f_c00308{left:691.470000px;}
.x6b_c00308{left:693.360000px;}
.x4c_c00308{left:702.810000px;}
.x46_c00308{left:712.800000px;}
.x2c_c00308{left:714.150000px;}
.x56_c00308{left:724.410000px;}
.xa_c00308{left:725.490000px;}
.x41_c00308{left:734.940000px;}
.x54_c00308{left:736.560000px;}
.x1e_c00308{left:745.740000px;}
.x26_c00308{left:757.620000px;}
.x14_c00308{left:768.150000px;}
.x5b_c00308{left:778.680000px;}
.x49_c00308{left:780.300000px;}
.xb_c00308{left:790.020000px;}
.x72_c00308{left:791.100000px;}
.x27_c00308{left:801.360000px;}
.x5e_c00308{left:810.810000px;}
.x57_c00308{left:811.890000px;}
.x1f_c00308{left:812.970000px;}
@media print{
.v0_c00308{vertical-align:0.000000pt;}
.ls0_c00308{letter-spacing:0.000000pt;}
.ws0_c00308{word-spacing:0.000000pt;}
.fs1_c00308{font-size:58.666667pt;}
.fs2_c00308{font-size:64.000000pt;}
.fs3_c00308{font-size:69.333333pt;}
.fs0_c00308{font-size:74.666667pt;}
.y0_c00308{bottom:0.000000pt;}
.y20_c00308{bottom:56.226667pt;}
.y1f_c00308{bottom:83.213333pt;}
.y1e_c00308{bottom:140.329333pt;}
.y1d_c00308{bottom:168.826667pt;}
.y1c_c00308{bottom:196.800000pt;}
.y1b_c00308{bottom:224.338667pt;}
.y1a_c00308{bottom:253.182667pt;}
.y19_c00308{bottom:281.065333pt;}
.y18_c00308{bottom:309.360000pt;}
.y17_c00308{bottom:337.508000pt;}
.y16_c00308{bottom:365.554667pt;}
.y15_c00308{bottom:393.600000pt;}
.y14_c00308{bottom:422.640000pt;}
.y13_c00308{bottom:450.480000pt;}
.y12_c00308{bottom:478.502667pt;}
.y11_c00308{bottom:506.108000pt;}
.y10_c00308{bottom:534.240000pt;}
.yf_c00308{bottom:562.560000pt;}
.ye_c00308{bottom:590.942667pt;}
.yd_c00308{bottom:619.920000pt;}
.yc_c00308{bottom:647.310667pt;}
.yb_c00308{bottom:675.782667pt;}
.ya_c00308{bottom:704.692000pt;}
.y9_c00308{bottom:732.816000pt;}
.y8_c00308{bottom:760.862667pt;}
.y7_c00308{bottom:788.160000pt;}
.y6_c00308{bottom:816.334667pt;}
.y5_c00308{bottom:844.381333pt;}
.y4_c00308{bottom:872.828000pt;}
.y3_c00308{bottom:900.062667pt;}
.y2_c00308{bottom:929.252000pt;}
.y1_c00308{bottom:989.404000pt;}
.h3_c00308{height:58.666667pt;}
.h4_c00308{height:64.000000pt;}
.h5_c00308{height:69.333333pt;}
.h2_c00308{height:74.666667pt;}
.h1_c00308{height:1036.000000pt;}
.h0_c00308{height:1036.266667pt;}
.w0_c00308{width:813.333333pt;}
.x0_c00308{left:0.000000pt;}
.xc_c00308{left:135.360000pt;}
.x15_c00308{left:136.560000pt;}
.x68_c00308{left:137.520000pt;}
.x73_c00308{left:139.920000pt;}
.x65_c00308{left:156.000000pt;}
.xd_c00308{left:164.880000pt;}
.x4a_c00308{left:165.840000pt;}
.x16_c00308{left:174.720000pt;}
.x4d_c00308{left:175.920000pt;}
.x20_c00308{left:184.320000pt;}
.x55_c00308{left:186.000000pt;}
.x36_c00308{left:194.640000pt;}
.x6c_c00308{left:195.840000pt;}
.x17_c00308{left:204.000000pt;}
.x4e_c00308{left:204.960000pt;}
.x2d_c00308{left:214.800000pt;}
.x63_c00308{left:216.240000pt;}
.x28_c00308{left:223.680000pt;}
.xe_c00308{left:224.640000pt;}
.x70_c00308{left:225.600000pt;}
.x42_c00308{left:233.040000pt;}
.x2_c00308{left:234.000000pt;}
.x3d_c00308{left:234.960000pt;}
.x37_c00308{left:242.640000pt;}
.x2e_c00308{left:244.080000pt;}
.x74_c00308{left:245.280000pt;}
.x47_c00308{left:252.960000pt;}
.x6d_c00308{left:253.920000pt;}
.x18_c00308{left:263.760000pt;}
.x5f_c00308{left:272.400000pt;}
.x52_c00308{left:274.080000pt;}
.x2f_c00308{left:282.720000pt;}
.x3_c00308{left:292.080000pt;}
.x21_c00308{left:301.680000pt;}
.x43_c00308{left:302.640000pt;}
.xf_c00308{left:311.520000pt;}
.x61_c00308{left:312.480000pt;}
.x79_c00308{left:314.640000pt;}
.x67_c00308{left:321.360000pt;}
.x30_c00308{left:322.320000pt;}
.x59_c00308{left:323.280000pt;}
.x38_c00308{left:331.440000pt;}
.x4_c00308{left:340.320000pt;}
.x22_c00308{left:341.760000pt;}
.x75_c00308{left:342.720000pt;}
.x31_c00308{left:350.400000pt;}
.x5c_c00308{left:351.360000pt;}
.x53_c00308{left:352.320000pt;}
.x1_c00308{left:360.720000pt;}
.x19_c00308{left:369.360000pt;}
.x4f_c00308{left:370.320000pt;}
.x39_c00308{left:371.280000pt;}
.x76_c00308{left:372.960000pt;}
.x23_c00308{left:379.920000pt;}
.x7a_c00308{left:381.840000pt;}
.x60_c00308{left:390.480000pt;}
.x3a_c00308{left:399.120000pt;}
.x77_c00308{left:400.080000pt;}
.x50_c00308{left:401.280000pt;}
.x10_c00308{left:408.720000pt;}
.x58_c00308{left:410.160000pt;}
.x7b_c00308{left:411.360000pt;}
.x5_c00308{left:419.280000pt;}
.x32_c00308{left:428.640000pt;}
.x44_c00308{left:430.320000pt;}
.x1a_c00308{left:437.760000pt;}
.x11_c00308{left:438.720000pt;}
.x69_c00308{left:439.680000pt;}
.x6_c00308{left:448.320000pt;}
.x3e_c00308{left:449.760000pt;}
.x29_c00308{left:457.680000pt;}
.x64_c00308{left:458.880000pt;}
.x1b_c00308{left:468.000000pt;}
.x4b_c00308{left:469.200000pt;}
.x7_c00308{left:477.120000pt;}
.x78_c00308{left:478.560000pt;}
.x45_c00308{left:487.200000pt;}
.x33_c00308{left:488.640000pt;}
.x1c_c00308{left:496.560000pt;}
.x51_c00308{left:497.760000pt;}
.x2a_c00308{left:506.400000pt;}
.x8_c00308{left:507.360000pt;}
.x12_c00308{left:516.240000pt;}
.x3f_c00308{left:517.920000pt;}
.x5a_c00308{left:527.280000pt;}
.x5d_c00308{left:535.920000pt;}
.x6a_c00308{left:537.120000pt;}
.x3b_c00308{left:545.760000pt;}
.x6e_c00308{left:546.960000pt;}
.x62_c00308{left:547.920000pt;}
.x24_c00308{left:555.360000pt;}
.x48_c00308{left:556.560000pt;}
.x34_c00308{left:566.160000pt;}
.x7c_c00308{left:567.840000pt;}
.x40_c00308{left:574.560000pt;}
.x3c_c00308{left:575.760000pt;}
.x25_c00308{left:585.840000pt;}
.x2b_c00308{left:587.280000pt;}
.x1d_c00308{left:594.240000pt;}
.x35_c00308{left:595.920000pt;}
.x13_c00308{left:605.040000pt;}
.x71_c00308{left:606.000000pt;}
.x66_c00308{left:607.440000pt;}
.x9_c00308{left:613.680000pt;}
.x6f_c00308{left:614.640000pt;}
.x6b_c00308{left:616.320000pt;}
.x4c_c00308{left:624.720000pt;}
.x46_c00308{left:633.600000pt;}
.x2c_c00308{left:634.800000pt;}
.x56_c00308{left:643.920000pt;}
.xa_c00308{left:644.880000pt;}
.x41_c00308{left:653.280000pt;}
.x54_c00308{left:654.720000pt;}
.x1e_c00308{left:662.880000pt;}
.x26_c00308{left:673.440000pt;}
.x14_c00308{left:682.800000pt;}
.x5b_c00308{left:692.160000pt;}
.x49_c00308{left:693.600000pt;}
.xb_c00308{left:702.240000pt;}
.x72_c00308{left:703.200000pt;}
.x27_c00308{left:712.320000pt;}
.x5e_c00308{left:720.720000pt;}
.x57_c00308{left:721.680000pt;}
.x1f_c00308{left:722.640000pt;}
}





/* 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_c00309 {
    display:none;
  }
  .loading-indicator_c00309.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00309 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_c00309 { 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_c00309" -> "#page-container .classname_c00309")
 */
.pf_c00309 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00309 { /* 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_c00309.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00309 { /* 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_c00309 { /* 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_c00309 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00309 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00309 {overflow:visible;}
  }
}
.c_c00309 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00309 { /* 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_c00309:after { /* webkit #35443 */
  content: '';
}
.t_c00309:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00309 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 */
}
.__c00309 { /* 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_c00309 { /* info for Javascript */
  display:none;
}
.l_c00309 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00309 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00309 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00309: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_c00309 {
    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_c00309.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00309.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_c00309 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00309{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00309;src:url('chunks/assets/font_c605e72f209fc835e906f064.woff2')format("woff");}.ff1_c00309{font-family:ff1_c00309;line-height:1.000000;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;}
.m20_c00309{transform:matrix(0.037500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.037500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.037500,0.000000,0.000000,0.250000,0,0);}
.m18_c00309{transform:matrix(0.040560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.040560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.040560,0.000000,0.000000,0.250000,0,0);}
.ma_c00309{transform:matrix(0.054085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054085,0.000000,0.000000,0.250000,0,0);}
.m1e_c00309{transform:matrix(0.056250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.056250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.056250,0.000000,0.000000,0.250000,0,0);}
.m19_c00309{transform:matrix(0.081125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.081125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.081125,0.000000,0.000000,0.250000,0,0);}
.m0_c00309{transform:matrix(0.120935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120935,0.000000,0.000000,0.250000,0,0);}
.m21_c00309{transform:matrix(0.132900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132900,0.000000,0.000000,0.250000,0,0);}
.m30_c00309{transform:matrix(0.146680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146680,0.000000,0.000000,0.250000,0,0);}
.m8_c00309{transform:matrix(0.148490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148490,0.000000,0.000000,0.250000,0,0);}
.m2e_c00309{transform:matrix(0.177510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177510,0.000000,0.000000,0.250000,0,0);}
.m32_c00309{transform:matrix(0.178695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178695,0.000000,0.000000,0.250000,0,0);}
.m6_c00309{transform:matrix(0.184515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184515,0.000000,0.000000,0.250000,0,0);}
.m22_c00309{transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);}
.m27_c00309{transform:matrix(0.195575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195575,0.000000,0.000000,0.250000,0,0);}
.m2b_c00309{transform:matrix(0.214830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214830,0.000000,0.000000,0.250000,0,0);}
.m9_c00309{transform:matrix(0.218660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218660,0.000000,0.000000,0.250000,0,0);}
.m24_c00309{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00309{transform:matrix(0.226745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226745,0.000000,0.000000,0.250000,0,0);}
.m34_c00309{transform:matrix(0.230455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230455,0.000000,0.000000,0.250000,0,0);}
.mb_c00309{transform:matrix(0.233450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233450,0.000000,0.000000,0.250000,0,0);}
.m26_c00309{transform:matrix(0.236520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236520,0.000000,0.000000,0.250000,0,0);}
.m29_c00309{transform:matrix(0.247870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247870,0.000000,0.000000,0.250000,0,0);}
.m23_c00309{transform:matrix(0.251445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251445,0.000000,0.000000,0.250000,0,0);}
.md_c00309{transform:matrix(0.260105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260105,0.000000,0.000000,0.250000,0,0);}
.m12_c00309{transform:matrix(0.263665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263665,0.000000,0.000000,0.250000,0,0);}
.mf_c00309{transform:matrix(0.268570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268570,0.000000,0.000000,0.250000,0,0);}
.mc_c00309{transform:matrix(0.281070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281070,0.000000,0.000000,0.250000,0,0);}
.me_c00309{transform:matrix(0.284615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284615,0.000000,0.000000,0.250000,0,0);}
.m33_c00309{transform:matrix(0.285995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285995,0.000000,0.000000,0.250000,0,0);}
.m1a_c00309{transform:matrix(0.313970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313970,0.000000,0.000000,0.250000,0,0);}
.m1b_c00309{transform:matrix(0.315785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315785,0.000000,0.000000,0.250000,0,0);}
.m25_c00309{transform:matrix(0.364005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364005,0.000000,0.000000,0.250000,0,0);}
.m1c_c00309{transform:matrix(0.364580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364580,0.000000,0.000000,0.250000,0,0);}
.m31_c00309{transform:matrix(0.372970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372970,0.000000,0.000000,0.250000,0,0);}
.m17_c00309{transform:matrix(0.427565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427565,0.000000,0.000000,0.250000,0,0);}
.m28_c00309{transform:matrix(0.438750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.438750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.438750,0.000000,0.000000,0.250000,0,0);}
.m2c_c00309{transform:matrix(0.469385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469385,0.000000,0.000000,0.250000,0,0);}
.m10_c00309{transform:matrix(0.469575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469575,0.000000,0.000000,0.250000,0,0);}
.m15_c00309{transform:matrix(0.480525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480525,0.000000,0.000000,0.250000,0,0);}
.m16_c00309{transform:matrix(0.483225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483225,0.000000,0.000000,0.250000,0,0);}
.m1d_c00309{transform:matrix(0.496590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.496590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.496590,0.000000,0.000000,0.250000,0,0);}
.m11_c00309{transform:matrix(0.496805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.496805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.496805,0.000000,0.000000,0.250000,0,0);}
.m3_c00309{transform:matrix(0.527405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527405,0.000000,0.000000,0.250000,0,0);}
.m2d_c00309{transform:matrix(0.541895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541895,0.000000,0.000000,0.250000,0,0);}
.m2_c00309{transform:matrix(0.568655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568655,0.000000,0.000000,0.250000,0,0);}
.m7_c00309{transform:matrix(0.578255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578255,0.000000,0.000000,0.250000,0,0);}
.m14_c00309{transform:matrix(0.662320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662320,0.000000,0.000000,0.250000,0,0);}
.m1f_c00309{transform:matrix(0.673410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.673410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.673410,0.000000,0.000000,0.250000,0,0);}
.m5_c00309{transform:matrix(0.725340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.725340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.725340,0.000000,0.000000,0.250000,0,0);}
.m1_c00309{transform:matrix(0.760520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.760520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.760520,0.000000,0.000000,0.250000,0,0);}
.m4_c00309{transform:matrix(0.769435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.769435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.769435,0.000000,0.000000,0.250000,0,0);}
.m13_c00309{transform:matrix(0.818240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.818240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.818240,0.000000,0.000000,0.250000,0,0);}
.m2f_c00309{transform:matrix(1.214635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.214635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.214635,0.000000,0.000000,0.250000,0,0);}
.v0_c00309{vertical-align:0.000000px;}
.ls0_c00309{letter-spacing:0.000000px;}
.sc__c00309{text-shadow:none;}
.sc0_c00309{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__c00309{-webkit-text-stroke:0px transparent;}
.sc0_c00309{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00309{word-spacing:0.000000px;}
.fc0_c00309{color:transparent;}
.fs0_c00309{font-size:18.000000px;}
.fs5_c00309{font-size:24.000000px;}
.fs3_c00309{font-size:30.000000px;}
.fs4_c00309{font-size:36.000000px;}
.fs1_c00309{font-size:48.000000px;}
.fs2_c00309{font-size:60.000000px;}
.fs6_c00309{font-size:78.000000px;}
.y0_c00309{bottom:0.000000px;}
.y14_c00309{bottom:370.558500px;}
.y15_c00309{bottom:373.660500px;}
.y11_c00309{bottom:695.388000px;}
.y13_c00309{bottom:700.125000px;}
.y12_c00309{bottom:702.382500px;}
.y10_c00309{bottom:727.416000px;}
.yf_c00309{bottom:732.421500px;}
.ye_c00309{bottom:732.970500px;}
.yd_c00309{bottom:733.320000px;}
.yb_c00309{bottom:735.184500px;}
.yc_c00309{bottom:735.210000px;}
.ya_c00309{bottom:822.016500px;}
.y9_c00309{bottom:826.459500px;}
.y8_c00309{bottom:916.266000px;}
.y7_c00309{bottom:929.991000px;}
.y6_c00309{bottom:943.513500px;}
.y5_c00309{bottom:948.774000px;}
.y4_c00309{bottom:999.403500px;}
.y2_c00309{bottom:1004.772000px;}
.y3_c00309{bottom:1008.846000px;}
.y1_c00309{bottom:1059.480000px;}
.h2_c00309{height:18.000000px;}
.h7_c00309{height:24.000000px;}
.h5_c00309{height:30.000000px;}
.h6_c00309{height:36.000000px;}
.h3_c00309{height:48.000000px;}
.h4_c00309{height:60.000000px;}
.h8_c00309{height:78.000000px;}
.h1_c00309{height:1165.500000px;}
.h0_c00309{height:1165.800000px;}
.w0_c00309{width:915.000000px;}
.x0_c00309{left:0.000000px;}
.x2_c00309{left:68.040000px;}
.x3_c00309{left:78.570000px;}
.x5_c00309{left:175.500000px;}
.x4_c00309{left:178.740000px;}
.x6_c00309{left:208.710000px;}
.x7_c00309{left:225.180000px;}
.x2e_c00309{left:286.740000px;}
.x2b_c00309{left:288.900000px;}
.x2f_c00309{left:297.810000px;}
.x2c_c00309{left:347.220000px;}
.x2d_c00309{left:374.490000px;}
.x30_c00309{left:383.670000px;}
.x28_c00309{left:428.220000px;}
.x25_c00309{left:431.460000px;}
.x1a_c00309{left:436.840500px;}
.x17_c00309{left:440.370000px;}
.x29_c00309{left:449.010000px;}
.x1d_c00309{left:453.330000px;}
.x1e_c00309{left:461.430000px;}
.x2a_c00309{left:470.340000px;}
.x26_c00309{left:472.770000px;}
.x27_c00309{left:488.430000px;}
.x22_c00309{left:497.340000px;}
.x23_c00309{left:507.060000px;}
.x24_c00309{left:514.620000px;}
.x18_c00309{left:523.260000px;}
.x1b_c00309{left:541.831500px;}
.x1_c00309{left:550.530000px;}
.x19_c00309{left:560.790000px;}
.x1f_c00309{left:574.290000px;}
.x20_c00309{left:583.740000px;}
.x1c_c00309{left:591.771000px;}
.x21_c00309{left:619.380000px;}
.xc_c00309{left:632.070000px;}
.x8_c00309{left:642.600000px;}
.x13_c00309{left:670.950000px;}
.xd_c00309{left:676.890000px;}
.xf_c00309{left:682.290000px;}
.x14_c00309{left:694.710000px;}
.xe_c00309{left:698.220000px;}
.x10_c00309{left:700.650000px;}
.x11_c00309{left:724.140000px;}
.x9_c00309{left:725.760000px;}
.x15_c00309{left:738.180000px;}
.xa_c00309{left:740.070000px;}
.x12_c00309{left:750.330000px;}
.xb_c00309{left:751.950000px;}
.x16_c00309{left:756.000000px;}
@media print{
.v0_c00309{vertical-align:0.000000pt;}
.ls0_c00309{letter-spacing:0.000000pt;}
.ws0_c00309{word-spacing:0.000000pt;}
.fs0_c00309{font-size:16.000000pt;}
.fs5_c00309{font-size:21.333333pt;}
.fs3_c00309{font-size:26.666667pt;}
.fs4_c00309{font-size:32.000000pt;}
.fs1_c00309{font-size:42.666667pt;}
.fs2_c00309{font-size:53.333333pt;}
.fs6_c00309{font-size:69.333333pt;}
.y0_c00309{bottom:0.000000pt;}
.y14_c00309{bottom:329.385333pt;}
.y15_c00309{bottom:332.142667pt;}
.y11_c00309{bottom:618.122667pt;}
.y13_c00309{bottom:622.333333pt;}
.y12_c00309{bottom:624.340000pt;}
.y10_c00309{bottom:646.592000pt;}
.yf_c00309{bottom:651.041333pt;}
.ye_c00309{bottom:651.529333pt;}
.yd_c00309{bottom:651.840000pt;}
.yb_c00309{bottom:653.497333pt;}
.yc_c00309{bottom:653.520000pt;}
.ya_c00309{bottom:730.681333pt;}
.y9_c00309{bottom:734.630667pt;}
.y8_c00309{bottom:814.458667pt;}
.y7_c00309{bottom:826.658667pt;}
.y6_c00309{bottom:838.678667pt;}
.y5_c00309{bottom:843.354667pt;}
.y4_c00309{bottom:888.358667pt;}
.y2_c00309{bottom:893.130667pt;}
.y3_c00309{bottom:896.752000pt;}
.y1_c00309{bottom:941.760000pt;}
.h2_c00309{height:16.000000pt;}
.h7_c00309{height:21.333333pt;}
.h5_c00309{height:26.666667pt;}
.h6_c00309{height:32.000000pt;}
.h3_c00309{height:42.666667pt;}
.h4_c00309{height:53.333333pt;}
.h8_c00309{height:69.333333pt;}
.h1_c00309{height:1036.000000pt;}
.h0_c00309{height:1036.266667pt;}
.w0_c00309{width:813.333333pt;}
.x0_c00309{left:0.000000pt;}
.x2_c00309{left:60.480000pt;}
.x3_c00309{left:69.840000pt;}
.x5_c00309{left:156.000000pt;}
.x4_c00309{left:158.880000pt;}
.x6_c00309{left:185.520000pt;}
.x7_c00309{left:200.160000pt;}
.x2e_c00309{left:254.880000pt;}
.x2b_c00309{left:256.800000pt;}
.x2f_c00309{left:264.720000pt;}
.x2c_c00309{left:308.640000pt;}
.x2d_c00309{left:332.880000pt;}
.x30_c00309{left:341.040000pt;}
.x28_c00309{left:380.640000pt;}
.x25_c00309{left:383.520000pt;}
.x1a_c00309{left:388.302667pt;}
.x17_c00309{left:391.440000pt;}
.x29_c00309{left:399.120000pt;}
.x1d_c00309{left:402.960000pt;}
.x1e_c00309{left:410.160000pt;}
.x2a_c00309{left:418.080000pt;}
.x26_c00309{left:420.240000pt;}
.x27_c00309{left:434.160000pt;}
.x22_c00309{left:442.080000pt;}
.x23_c00309{left:450.720000pt;}
.x24_c00309{left:457.440000pt;}
.x18_c00309{left:465.120000pt;}
.x1b_c00309{left:481.628000pt;}
.x1_c00309{left:489.360000pt;}
.x19_c00309{left:498.480000pt;}
.x1f_c00309{left:510.480000pt;}
.x20_c00309{left:518.880000pt;}
.x1c_c00309{left:526.018667pt;}
.x21_c00309{left:550.560000pt;}
.xc_c00309{left:561.840000pt;}
.x8_c00309{left:571.200000pt;}
.x13_c00309{left:596.400000pt;}
.xd_c00309{left:601.680000pt;}
.xf_c00309{left:606.480000pt;}
.x14_c00309{left:617.520000pt;}
.xe_c00309{left:620.640000pt;}
.x10_c00309{left:622.800000pt;}
.x11_c00309{left:643.680000pt;}
.x9_c00309{left:645.120000pt;}
.x15_c00309{left:656.160000pt;}
.xa_c00309{left:657.840000pt;}
.x12_c00309{left:666.960000pt;}
.xb_c00309{left:668.400000pt;}
.x16_c00309{left:672.000000pt;}
}





/* 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_c00310 {
    display:none;
  }
  .loading-indicator_c00310.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00310 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_c00310 { 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_c00310" -> "#page-container .classname_c00310")
 */
.pf_c00310 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00310 { /* 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_c00310.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00310 { /* 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_c00310 { /* 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_c00310 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00310 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00310 {overflow:visible;}
  }
}
.c_c00310 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00310 { /* 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_c00310:after { /* webkit #35443 */
  content: '';
}
.t_c00310:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00310 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 */
}
.__c00310 { /* 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_c00310 { /* info for Javascript */
  display:none;
}
.l_c00310 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00310 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00310 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00310: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_c00310 {
    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_c00310.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00310.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_c00310 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00310{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00310;src:url('chunks/assets/font_c605e72f209fc835e906f064.woff2')format("woff");}.ff1_c00310{font-family:ff1_c00310;line-height:1.000000;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;}
.m0_c00310{transform:matrix(0.094870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.094870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.094870,0.000000,0.000000,0.250000,0,0);}
.m150_c00310{transform:matrix(0.103220,-0.001445,0.003500,0.249976,0,0);-ms-transform:matrix(0.103220,-0.001445,0.003500,0.249976,0,0);-webkit-transform:matrix(0.103220,-0.001445,0.003500,0.249976,0,0);}
.m50_c00310{transform:matrix(0.143183,-0.001432,0.002500,0.249988,0,0);-ms-transform:matrix(0.143183,-0.001432,0.002500,0.249988,0,0);-webkit-transform:matrix(0.143183,-0.001432,0.002500,0.249988,0,0);}
.m75_c00310{transform:matrix(0.168878,-0.001520,0.002250,0.249990,0,0);-ms-transform:matrix(0.168878,-0.001520,0.002250,0.249990,0,0);-webkit-transform:matrix(0.168878,-0.001520,0.002250,0.249990,0,0);}
.m7b_c00310{transform:matrix(0.183583,-0.001652,0.002250,0.249990,0,0);-ms-transform:matrix(0.183583,-0.001652,0.002250,0.249990,0,0);-webkit-transform:matrix(0.183583,-0.001652,0.002250,0.249990,0,0);}
.m151_c00310{transform:matrix(0.183602,-0.002570,0.003500,0.249976,0,0);-ms-transform:matrix(0.183602,-0.002570,0.003500,0.249976,0,0);-webkit-transform:matrix(0.183602,-0.002570,0.003500,0.249976,0,0);}
.m14c_c00310{transform:matrix(0.186367,-0.002609,0.003500,0.249976,0,0);-ms-transform:matrix(0.186367,-0.002609,0.003500,0.249976,0,0);-webkit-transform:matrix(0.186367,-0.002609,0.003500,0.249976,0,0);}
.m48_c00310{transform:matrix(0.186702,-0.001680,0.002250,0.249990,0,0);-ms-transform:matrix(0.186702,-0.001680,0.002250,0.249990,0,0);-webkit-transform:matrix(0.186702,-0.001680,0.002250,0.249990,0,0);}
.mb6_c00310{transform:matrix(0.186976,-0.001870,0.002500,0.249988,0,0);-ms-transform:matrix(0.186976,-0.001870,0.002500,0.249988,0,0);-webkit-transform:matrix(0.186976,-0.001870,0.002500,0.249988,0,0);}
.m156_c00310{transform:matrix(0.189176,-0.002648,0.003500,0.249976,0,0);-ms-transform:matrix(0.189176,-0.002648,0.003500,0.249976,0,0);-webkit-transform:matrix(0.189176,-0.002648,0.003500,0.249976,0,0);}
.m42_c00310{transform:matrix(0.190707,-0.001716,0.002250,0.249990,0,0);-ms-transform:matrix(0.190707,-0.001716,0.002250,0.249990,0,0);-webkit-transform:matrix(0.190707,-0.001716,0.002250,0.249990,0,0);}
.m129_c00310{transform:matrix(0.190980,-0.001910,0.002500,0.249988,0,0);-ms-transform:matrix(0.190980,-0.001910,0.002500,0.249988,0,0);-webkit-transform:matrix(0.190980,-0.001910,0.002500,0.249988,0,0);}
.m10d_c00310{transform:matrix(0.191205,-0.001912,0.002500,0.249988,0,0);-ms-transform:matrix(0.191205,-0.001912,0.002500,0.249988,0,0);-webkit-transform:matrix(0.191205,-0.001912,0.002500,0.249988,0,0);}
.me2_c00310{transform:matrix(0.193725,-0.001937,0.002500,0.249988,0,0);-ms-transform:matrix(0.193725,-0.001937,0.002500,0.249988,0,0);-webkit-transform:matrix(0.193725,-0.001937,0.002500,0.249988,0,0);}
.m6c_c00310{transform:matrix(0.193727,-0.001744,0.002250,0.249990,0,0);-ms-transform:matrix(0.193727,-0.001744,0.002250,0.249990,0,0);-webkit-transform:matrix(0.193727,-0.001744,0.002250,0.249990,0,0);}
.m12d_c00310{transform:matrix(0.194015,-0.001940,0.002500,0.249988,0,0);-ms-transform:matrix(0.194015,-0.001940,0.002500,0.249988,0,0);-webkit-transform:matrix(0.194015,-0.001940,0.002500,0.249988,0,0);}
.maf_c00310{transform:matrix(0.194185,-0.001942,0.002500,0.249988,0,0);-ms-transform:matrix(0.194185,-0.001942,0.002500,0.249988,0,0);-webkit-transform:matrix(0.194185,-0.001942,0.002500,0.249988,0,0);}
.m10a_c00310{transform:matrix(0.194695,-0.001947,0.002500,0.249988,0,0);-ms-transform:matrix(0.194695,-0.001947,0.002500,0.249988,0,0);-webkit-transform:matrix(0.194695,-0.001947,0.002500,0.249988,0,0);}
.m153_c00310{transform:matrix(0.194816,-0.002727,0.003500,0.249976,0,0);-ms-transform:matrix(0.194816,-0.002727,0.003500,0.249976,0,0);-webkit-transform:matrix(0.194816,-0.002727,0.003500,0.249976,0,0);}
.m154_c00310{transform:matrix(0.195096,-0.002731,0.003500,0.249976,0,0);-ms-transform:matrix(0.195096,-0.002731,0.003500,0.249976,0,0);-webkit-transform:matrix(0.195096,-0.002731,0.003500,0.249976,0,0);}
.m155_c00310{transform:matrix(0.195211,-0.002733,0.003500,0.249976,0,0);-ms-transform:matrix(0.195211,-0.002733,0.003500,0.249976,0,0);-webkit-transform:matrix(0.195211,-0.002733,0.003500,0.249976,0,0);}
.m143_c00310{transform:matrix(0.196289,-0.001570,0.002000,0.249992,0,0);-ms-transform:matrix(0.196289,-0.001570,0.002000,0.249992,0,0);-webkit-transform:matrix(0.196289,-0.001570,0.002000,0.249992,0,0);}
.m152_c00310{transform:matrix(0.196796,-0.002755,0.003500,0.249976,0,0);-ms-transform:matrix(0.196796,-0.002755,0.003500,0.249976,0,0);-webkit-transform:matrix(0.196796,-0.002755,0.003500,0.249976,0,0);}
.mb1_c00310{transform:matrix(0.196855,-0.001969,0.002500,0.249988,0,0);-ms-transform:matrix(0.196855,-0.001969,0.002500,0.249988,0,0);-webkit-transform:matrix(0.196855,-0.001969,0.002500,0.249988,0,0);}
.m6e_c00310{transform:matrix(0.199027,-0.001791,0.002250,0.249990,0,0);-ms-transform:matrix(0.199027,-0.001791,0.002250,0.249990,0,0);-webkit-transform:matrix(0.199027,-0.001791,0.002250,0.249990,0,0);}
.mf6_c00310{transform:matrix(0.199175,-0.001992,0.002500,0.249988,0,0);-ms-transform:matrix(0.199175,-0.001992,0.002500,0.249988,0,0);-webkit-transform:matrix(0.199175,-0.001992,0.002500,0.249988,0,0);}
.m14f_c00310{transform:matrix(0.199180,-0.002789,0.003500,0.249976,0,0);-ms-transform:matrix(0.199180,-0.002789,0.003500,0.249976,0,0);-webkit-transform:matrix(0.199180,-0.002789,0.003500,0.249976,0,0);}
.m2d_c00310{transform:matrix(0.201607,-0.001814,0.002250,0.249990,0,0);-ms-transform:matrix(0.201607,-0.001814,0.002250,0.249990,0,0);-webkit-transform:matrix(0.201607,-0.001814,0.002250,0.249990,0,0);}
.m108_c00310{transform:matrix(0.203845,-0.002038,0.002500,0.249988,0,0);-ms-transform:matrix(0.203845,-0.002038,0.002500,0.249988,0,0);-webkit-transform:matrix(0.203845,-0.002038,0.002500,0.249988,0,0);}
.m3d_c00310{transform:matrix(0.204247,-0.001838,0.002250,0.249990,0,0);-ms-transform:matrix(0.204247,-0.001838,0.002250,0.249990,0,0);-webkit-transform:matrix(0.204247,-0.001838,0.002250,0.249990,0,0);}
.mdb_c00310{transform:matrix(0.204320,-0.002043,0.002500,0.249988,0,0);-ms-transform:matrix(0.204320,-0.002043,0.002500,0.249988,0,0);-webkit-transform:matrix(0.204320,-0.002043,0.002500,0.249988,0,0);}
.mb3_c00310{transform:matrix(0.204345,-0.002043,0.002500,0.249988,0,0);-ms-transform:matrix(0.204345,-0.002043,0.002500,0.249988,0,0);-webkit-transform:matrix(0.204345,-0.002043,0.002500,0.249988,0,0);}
.m104_c00310{transform:matrix(0.204450,-0.002044,0.002500,0.249988,0,0);-ms-transform:matrix(0.204450,-0.002044,0.002500,0.249988,0,0);-webkit-transform:matrix(0.204450,-0.002044,0.002500,0.249988,0,0);}
.m46_c00310{transform:matrix(0.205762,-0.001852,0.002250,0.249990,0,0);-ms-transform:matrix(0.205762,-0.001852,0.002250,0.249990,0,0);-webkit-transform:matrix(0.205762,-0.001852,0.002250,0.249990,0,0);}
.mb7_c00310{transform:matrix(0.205840,-0.002058,0.002500,0.249988,0,0);-ms-transform:matrix(0.205840,-0.002058,0.002500,0.249988,0,0);-webkit-transform:matrix(0.205840,-0.002058,0.002500,0.249988,0,0);}
.m14d_c00310{transform:matrix(0.206470,-0.002891,0.003500,0.249976,0,0);-ms-transform:matrix(0.206470,-0.002891,0.003500,0.249976,0,0);-webkit-transform:matrix(0.206470,-0.002891,0.003500,0.249976,0,0);}
.m2e_c00310{transform:matrix(0.206587,-0.001859,0.002250,0.249990,0,0);-ms-transform:matrix(0.206587,-0.001859,0.002250,0.249990,0,0);-webkit-transform:matrix(0.206587,-0.001859,0.002250,0.249990,0,0);}
.m29_c00310{transform:matrix(0.206840,-0.001448,0.001750,0.249994,0,0);-ms-transform:matrix(0.206840,-0.001448,0.001750,0.249994,0,0);-webkit-transform:matrix(0.206840,-0.001448,0.001750,0.249994,0,0);}
.md6_c00310{transform:matrix(0.206885,-0.002069,0.002500,0.249988,0,0);-ms-transform:matrix(0.206885,-0.002069,0.002500,0.249988,0,0);-webkit-transform:matrix(0.206885,-0.002069,0.002500,0.249988,0,0);}
.m26_c00310{transform:matrix(0.206920,-0.001448,0.001750,0.249994,0,0);-ms-transform:matrix(0.206920,-0.001448,0.001750,0.249994,0,0);-webkit-transform:matrix(0.206920,-0.001448,0.001750,0.249994,0,0);}
.m25_c00310{transform:matrix(0.207630,-0.001453,0.001750,0.249994,0,0);-ms-transform:matrix(0.207630,-0.001453,0.001750,0.249994,0,0);-webkit-transform:matrix(0.207630,-0.001453,0.001750,0.249994,0,0);}
.m61_c00310{transform:matrix(0.208005,-0.002080,0.002500,0.249988,0,0);-ms-transform:matrix(0.208005,-0.002080,0.002500,0.249988,0,0);-webkit-transform:matrix(0.208005,-0.002080,0.002500,0.249988,0,0);}
.m38_c00310{transform:matrix(0.208667,-0.001878,0.002250,0.249990,0,0);-ms-transform:matrix(0.208667,-0.001878,0.002250,0.249990,0,0);-webkit-transform:matrix(0.208667,-0.001878,0.002250,0.249990,0,0);}
.m105_c00310{transform:matrix(0.208700,-0.002087,0.002500,0.249988,0,0);-ms-transform:matrix(0.208700,-0.002087,0.002500,0.249988,0,0);-webkit-transform:matrix(0.208700,-0.002087,0.002500,0.249988,0,0);}
.mb5_c00310{transform:matrix(0.210299,-0.002103,0.002500,0.249988,0,0);-ms-transform:matrix(0.210299,-0.002103,0.002500,0.249988,0,0);-webkit-transform:matrix(0.210299,-0.002103,0.002500,0.249988,0,0);}
.mb8_c00310{transform:matrix(0.211584,-0.002116,0.002500,0.249988,0,0);-ms-transform:matrix(0.211584,-0.002116,0.002500,0.249988,0,0);-webkit-transform:matrix(0.211584,-0.002116,0.002500,0.249988,0,0);}
.m34_c00310{transform:matrix(0.211811,-0.001906,0.002250,0.249990,0,0);-ms-transform:matrix(0.211811,-0.001906,0.002250,0.249990,0,0);-webkit-transform:matrix(0.211811,-0.001906,0.002250,0.249990,0,0);}
.m14e_c00310{transform:matrix(0.212054,-0.002969,0.003500,0.249976,0,0);-ms-transform:matrix(0.212054,-0.002969,0.003500,0.249976,0,0);-webkit-transform:matrix(0.212054,-0.002969,0.003500,0.249976,0,0);}
.me0_c00310{transform:matrix(0.212489,-0.002125,0.002500,0.249988,0,0);-ms-transform:matrix(0.212489,-0.002125,0.002500,0.249988,0,0);-webkit-transform:matrix(0.212489,-0.002125,0.002500,0.249988,0,0);}
.m18_c00310{transform:matrix(0.213550,-0.001495,0.001750,0.249994,0,0);-ms-transform:matrix(0.213550,-0.001495,0.001750,0.249994,0,0);-webkit-transform:matrix(0.213550,-0.001495,0.001750,0.249994,0,0);}
.m138_c00310{transform:matrix(0.214248,-0.001714,0.002000,0.249992,0,0);-ms-transform:matrix(0.214248,-0.001714,0.002000,0.249992,0,0);-webkit-transform:matrix(0.214248,-0.001714,0.002000,0.249992,0,0);}
.m2f_c00310{transform:matrix(0.214521,-0.001931,0.002250,0.249990,0,0);-ms-transform:matrix(0.214521,-0.001931,0.002250,0.249990,0,0);-webkit-transform:matrix(0.214521,-0.001931,0.002250,0.249990,0,0);}
.mb0_c00310{transform:matrix(0.215219,-0.002152,0.002500,0.249988,0,0);-ms-transform:matrix(0.215219,-0.002152,0.002500,0.249988,0,0);-webkit-transform:matrix(0.215219,-0.002152,0.002500,0.249988,0,0);}
.m3f_c00310{transform:matrix(0.216296,-0.001947,0.002250,0.249990,0,0);-ms-transform:matrix(0.216296,-0.001947,0.002250,0.249990,0,0);-webkit-transform:matrix(0.216296,-0.001947,0.002250,0.249990,0,0);}
.m49_c00310{transform:matrix(0.216636,-0.001950,0.002250,0.249990,0,0);-ms-transform:matrix(0.216636,-0.001950,0.002250,0.249990,0,0);-webkit-transform:matrix(0.216636,-0.001950,0.002250,0.249990,0,0);}
.m1c_c00310{transform:matrix(0.216970,-0.001519,0.001750,0.249994,0,0);-ms-transform:matrix(0.216970,-0.001519,0.001750,0.249994,0,0);-webkit-transform:matrix(0.216970,-0.001519,0.001750,0.249994,0,0);}
.m44_c00310{transform:matrix(0.216986,-0.001953,0.002250,0.249990,0,0);-ms-transform:matrix(0.216986,-0.001953,0.002250,0.249990,0,0);-webkit-transform:matrix(0.216986,-0.001953,0.002250,0.249990,0,0);}
.m8e_c00310{transform:matrix(0.217114,-0.002171,0.002500,0.249988,0,0);-ms-transform:matrix(0.217114,-0.002171,0.002500,0.249988,0,0);-webkit-transform:matrix(0.217114,-0.002171,0.002500,0.249988,0,0);}
.m100_c00310{transform:matrix(0.217124,-0.002171,0.002500,0.249988,0,0);-ms-transform:matrix(0.217124,-0.002171,0.002500,0.249988,0,0);-webkit-transform:matrix(0.217124,-0.002171,0.002500,0.249988,0,0);}
.m28_c00310{transform:matrix(0.217260,-0.001521,0.001750,0.249994,0,0);-ms-transform:matrix(0.217260,-0.001521,0.001750,0.249994,0,0);-webkit-transform:matrix(0.217260,-0.001521,0.001750,0.249994,0,0);}
.mf9_c00310{transform:matrix(0.217269,-0.002173,0.002500,0.249988,0,0);-ms-transform:matrix(0.217269,-0.002173,0.002500,0.249988,0,0);-webkit-transform:matrix(0.217269,-0.002173,0.002500,0.249988,0,0);}
.m107_c00310{transform:matrix(0.217334,-0.002173,0.002500,0.249988,0,0);-ms-transform:matrix(0.217334,-0.002173,0.002500,0.249988,0,0);-webkit-transform:matrix(0.217334,-0.002173,0.002500,0.249988,0,0);}
.m102_c00310{transform:matrix(0.217519,-0.002175,0.002500,0.249988,0,0);-ms-transform:matrix(0.217519,-0.002175,0.002500,0.249988,0,0);-webkit-transform:matrix(0.217519,-0.002175,0.002500,0.249988,0,0);}
.md_c00310{transform:matrix(0.217825,-0.001525,0.001750,0.249994,0,0);-ms-transform:matrix(0.217825,-0.001525,0.001750,0.249994,0,0);-webkit-transform:matrix(0.217825,-0.001525,0.001750,0.249994,0,0);}
.ma9_c00310{transform:matrix(0.218079,-0.002181,0.002500,0.249988,0,0);-ms-transform:matrix(0.218079,-0.002181,0.002500,0.249988,0,0);-webkit-transform:matrix(0.218079,-0.002181,0.002500,0.249988,0,0);}
.m63_c00310{transform:matrix(0.218409,-0.002184,0.002500,0.249988,0,0);-ms-transform:matrix(0.218409,-0.002184,0.002500,0.249988,0,0);-webkit-transform:matrix(0.218409,-0.002184,0.002500,0.249988,0,0);}
.m31_c00310{transform:matrix(0.218456,-0.001966,0.002250,0.249990,0,0);-ms-transform:matrix(0.218456,-0.001966,0.002250,0.249990,0,0);-webkit-transform:matrix(0.218456,-0.001966,0.002250,0.249990,0,0);}
.m7f_c00310{transform:matrix(0.219134,-0.002191,0.002500,0.249988,0,0);-ms-transform:matrix(0.219134,-0.002191,0.002500,0.249988,0,0);-webkit-transform:matrix(0.219134,-0.002191,0.002500,0.249988,0,0);}
.m69_c00310{transform:matrix(0.219136,-0.001972,0.002250,0.249990,0,0);-ms-transform:matrix(0.219136,-0.001972,0.002250,0.249990,0,0);-webkit-transform:matrix(0.219136,-0.001972,0.002250,0.249990,0,0);}
.m27_c00310{transform:matrix(0.219585,-0.001537,0.001750,0.249994,0,0);-ms-transform:matrix(0.219585,-0.001537,0.001750,0.249994,0,0);-webkit-transform:matrix(0.219585,-0.001537,0.001750,0.249994,0,0);}
.m72_c00310{transform:matrix(0.219661,-0.001977,0.002250,0.249990,0,0);-ms-transform:matrix(0.219661,-0.001977,0.002250,0.249990,0,0);-webkit-transform:matrix(0.219661,-0.001977,0.002250,0.249990,0,0);}
.mf1_c00310{transform:matrix(0.219789,-0.002198,0.002500,0.249988,0,0);-ms-transform:matrix(0.219789,-0.002198,0.002500,0.249988,0,0);-webkit-transform:matrix(0.219789,-0.002198,0.002500,0.249988,0,0);}
.m1e_c00310{transform:matrix(0.219840,-0.001539,0.001750,0.249994,0,0);-ms-transform:matrix(0.219840,-0.001539,0.001750,0.249994,0,0);-webkit-transform:matrix(0.219840,-0.001539,0.001750,0.249994,0,0);}
.m116_c00310{transform:matrix(0.220289,-0.002203,0.002500,0.249988,0,0);-ms-transform:matrix(0.220289,-0.002203,0.002500,0.249988,0,0);-webkit-transform:matrix(0.220289,-0.002203,0.002500,0.249988,0,0);}
.m4d_c00310{transform:matrix(0.220501,-0.001985,0.002250,0.249990,0,0);-ms-transform:matrix(0.220501,-0.001985,0.002250,0.249990,0,0);-webkit-transform:matrix(0.220501,-0.001985,0.002250,0.249990,0,0);}
.m71_c00310{transform:matrix(0.220561,-0.001985,0.002250,0.249990,0,0);-ms-transform:matrix(0.220561,-0.001985,0.002250,0.249990,0,0);-webkit-transform:matrix(0.220561,-0.001985,0.002250,0.249990,0,0);}
.m43_c00310{transform:matrix(0.220831,-0.001987,0.002250,0.249990,0,0);-ms-transform:matrix(0.220831,-0.001987,0.002250,0.249990,0,0);-webkit-transform:matrix(0.220831,-0.001987,0.002250,0.249990,0,0);}
.mb9_c00310{transform:matrix(0.221064,-0.002211,0.002500,0.249988,0,0);-ms-transform:matrix(0.221064,-0.002211,0.002500,0.249988,0,0);-webkit-transform:matrix(0.221064,-0.002211,0.002500,0.249988,0,0);}
.mce_c00310{transform:matrix(0.221264,-0.002213,0.002500,0.249988,0,0);-ms-transform:matrix(0.221264,-0.002213,0.002500,0.249988,0,0);-webkit-transform:matrix(0.221264,-0.002213,0.002500,0.249988,0,0);}
.mf8_c00310{transform:matrix(0.221444,-0.002214,0.002500,0.249988,0,0);-ms-transform:matrix(0.221444,-0.002214,0.002500,0.249988,0,0);-webkit-transform:matrix(0.221444,-0.002214,0.002500,0.249988,0,0);}
.mc0_c00310{transform:matrix(0.221459,-0.002215,0.002500,0.249988,0,0);-ms-transform:matrix(0.221459,-0.002215,0.002500,0.249988,0,0);-webkit-transform:matrix(0.221459,-0.002215,0.002500,0.249988,0,0);}
.mb4_c00310{transform:matrix(0.221554,-0.002216,0.002500,0.249988,0,0);-ms-transform:matrix(0.221554,-0.002216,0.002500,0.249988,0,0);-webkit-transform:matrix(0.221554,-0.002216,0.002500,0.249988,0,0);}
.m10e_c00310{transform:matrix(0.221869,-0.002219,0.002500,0.249988,0,0);-ms-transform:matrix(0.221869,-0.002219,0.002500,0.249988,0,0);-webkit-transform:matrix(0.221869,-0.002219,0.002500,0.249988,0,0);}
.m13d_c00310{transform:matrix(0.221873,-0.001775,0.002000,0.249992,0,0);-ms-transform:matrix(0.221873,-0.001775,0.002000,0.249992,0,0);-webkit-transform:matrix(0.221873,-0.001775,0.002000,0.249992,0,0);}
.mb2_c00310{transform:matrix(0.222454,-0.002225,0.002500,0.249988,0,0);-ms-transform:matrix(0.222454,-0.002225,0.002500,0.249988,0,0);-webkit-transform:matrix(0.222454,-0.002225,0.002500,0.249988,0,0);}
.m2_c00310{transform:matrix(0.222750,-0.001559,0.001750,0.249994,0,0);-ms-transform:matrix(0.222750,-0.001559,0.001750,0.249994,0,0);-webkit-transform:matrix(0.222750,-0.001559,0.001750,0.249994,0,0);}
.m32_c00310{transform:matrix(0.223296,-0.002010,0.002250,0.249990,0,0);-ms-transform:matrix(0.223296,-0.002010,0.002250,0.249990,0,0);-webkit-transform:matrix(0.223296,-0.002010,0.002250,0.249990,0,0);}
.m115_c00310{transform:matrix(0.223594,-0.002236,0.002500,0.249988,0,0);-ms-transform:matrix(0.223594,-0.002236,0.002500,0.249988,0,0);-webkit-transform:matrix(0.223594,-0.002236,0.002500,0.249988,0,0);}
.m13b_c00310{transform:matrix(0.223598,-0.001789,0.002000,0.249992,0,0);-ms-transform:matrix(0.223598,-0.001789,0.002000,0.249992,0,0);-webkit-transform:matrix(0.223598,-0.001789,0.002000,0.249992,0,0);}
.m103_c00310{transform:matrix(0.224019,-0.002240,0.002500,0.249988,0,0);-ms-transform:matrix(0.224019,-0.002240,0.002500,0.249988,0,0);-webkit-transform:matrix(0.224019,-0.002240,0.002500,0.249988,0,0);}
.mf4_c00310{transform:matrix(0.224724,-0.002247,0.002500,0.249988,0,0);-ms-transform:matrix(0.224724,-0.002247,0.002500,0.249988,0,0);-webkit-transform:matrix(0.224724,-0.002247,0.002500,0.249988,0,0);}
.m12f_c00310{transform:matrix(0.224739,-0.002247,0.002500,0.249988,0,0);-ms-transform:matrix(0.224739,-0.002247,0.002500,0.249988,0,0);-webkit-transform:matrix(0.224739,-0.002247,0.002500,0.249988,0,0);}
.m91_c00310{transform:matrix(0.225694,-0.002257,0.002500,0.249988,0,0);-ms-transform:matrix(0.225694,-0.002257,0.002500,0.249988,0,0);-webkit-transform:matrix(0.225694,-0.002257,0.002500,0.249988,0,0);}
.m45_c00310{transform:matrix(0.225831,-0.002032,0.002250,0.249990,0,0);-ms-transform:matrix(0.225831,-0.002032,0.002250,0.249990,0,0);-webkit-transform:matrix(0.225831,-0.002032,0.002250,0.249990,0,0);}
.m64_c00310{transform:matrix(0.226065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226065,0.000000,0.000000,0.250000,0,0);}
.mff_c00310{transform:matrix(0.227249,-0.002272,0.002500,0.249988,0,0);-ms-transform:matrix(0.227249,-0.002272,0.002500,0.249988,0,0);-webkit-transform:matrix(0.227249,-0.002272,0.002500,0.249988,0,0);}
.maa_c00310{transform:matrix(0.227419,-0.002274,0.002500,0.249988,0,0);-ms-transform:matrix(0.227419,-0.002274,0.002500,0.249988,0,0);-webkit-transform:matrix(0.227419,-0.002274,0.002500,0.249988,0,0);}
.m41_c00310{transform:matrix(0.227621,-0.002049,0.002250,0.249990,0,0);-ms-transform:matrix(0.227621,-0.002049,0.002250,0.249990,0,0);-webkit-transform:matrix(0.227621,-0.002049,0.002250,0.249990,0,0);}
.m120_c00310{transform:matrix(0.228094,-0.002281,0.002500,0.249988,0,0);-ms-transform:matrix(0.228094,-0.002281,0.002500,0.249988,0,0);-webkit-transform:matrix(0.228094,-0.002281,0.002500,0.249988,0,0);}
.m12_c00310{transform:matrix(0.228164,-0.001597,0.001750,0.249994,0,0);-ms-transform:matrix(0.228164,-0.001597,0.001750,0.249994,0,0);-webkit-transform:matrix(0.228164,-0.001597,0.001750,0.249994,0,0);}
.m78_c00310{transform:matrix(0.228461,-0.002056,0.002250,0.249990,0,0);-ms-transform:matrix(0.228461,-0.002056,0.002250,0.249990,0,0);-webkit-transform:matrix(0.228461,-0.002056,0.002250,0.249990,0,0);}
.m76_c00310{transform:matrix(0.228621,-0.002058,0.002250,0.249990,0,0);-ms-transform:matrix(0.228621,-0.002058,0.002250,0.249990,0,0);-webkit-transform:matrix(0.228621,-0.002058,0.002250,0.249990,0,0);}
.m109_c00310{transform:matrix(0.228799,-0.002288,0.002500,0.249988,0,0);-ms-transform:matrix(0.228799,-0.002288,0.002500,0.249988,0,0);-webkit-transform:matrix(0.228799,-0.002288,0.002500,0.249988,0,0);}
.m47_c00310{transform:matrix(0.229036,-0.002061,0.002250,0.249990,0,0);-ms-transform:matrix(0.229036,-0.002061,0.002250,0.249990,0,0);-webkit-transform:matrix(0.229036,-0.002061,0.002250,0.249990,0,0);}
.m37_c00310{transform:matrix(0.229171,-0.002063,0.002250,0.249990,0,0);-ms-transform:matrix(0.229171,-0.002063,0.002250,0.249990,0,0);-webkit-transform:matrix(0.229171,-0.002063,0.002250,0.249990,0,0);}
.me9_c00310{transform:matrix(0.229184,-0.002292,0.002500,0.249988,0,0);-ms-transform:matrix(0.229184,-0.002292,0.002500,0.249988,0,0);-webkit-transform:matrix(0.229184,-0.002292,0.002500,0.249988,0,0);}
.m2a_c00310{transform:matrix(0.229746,-0.002068,0.002250,0.249990,0,0);-ms-transform:matrix(0.229746,-0.002068,0.002250,0.249990,0,0);-webkit-transform:matrix(0.229746,-0.002068,0.002250,0.249990,0,0);}
.m40_c00310{transform:matrix(0.229776,-0.002068,0.002250,0.249990,0,0);-ms-transform:matrix(0.229776,-0.002068,0.002250,0.249990,0,0);-webkit-transform:matrix(0.229776,-0.002068,0.002250,0.249990,0,0);}
.mfb_c00310{transform:matrix(0.229939,-0.002299,0.002500,0.249988,0,0);-ms-transform:matrix(0.229939,-0.002299,0.002500,0.249988,0,0);-webkit-transform:matrix(0.229939,-0.002299,0.002500,0.249988,0,0);}
.mc1_c00310{transform:matrix(0.230273,-0.002303,0.002500,0.249988,0,0);-ms-transform:matrix(0.230273,-0.002303,0.002500,0.249988,0,0);-webkit-transform:matrix(0.230273,-0.002303,0.002500,0.249988,0,0);}
.m101_c00310{transform:matrix(0.230998,-0.002310,0.002500,0.249988,0,0);-ms-transform:matrix(0.230998,-0.002310,0.002500,0.249988,0,0);-webkit-transform:matrix(0.230998,-0.002310,0.002500,0.249988,0,0);}
.me8_c00310{transform:matrix(0.231518,-0.002315,0.002500,0.249988,0,0);-ms-transform:matrix(0.231518,-0.002315,0.002500,0.249988,0,0);-webkit-transform:matrix(0.231518,-0.002315,0.002500,0.249988,0,0);}
.m106_c00310{transform:matrix(0.231558,-0.002316,0.002500,0.249988,0,0);-ms-transform:matrix(0.231558,-0.002316,0.002500,0.249988,0,0);-webkit-transform:matrix(0.231558,-0.002316,0.002500,0.249988,0,0);}
.m95_c00310{transform:matrix(0.231628,-0.002316,0.002500,0.249988,0,0);-ms-transform:matrix(0.231628,-0.002316,0.002500,0.249988,0,0);-webkit-transform:matrix(0.231628,-0.002316,0.002500,0.249988,0,0);}
.m3c_c00310{transform:matrix(0.231641,-0.002085,0.002250,0.249990,0,0);-ms-transform:matrix(0.231641,-0.002085,0.002250,0.249990,0,0);-webkit-transform:matrix(0.231641,-0.002085,0.002250,0.249990,0,0);}
.m2b_c00310{transform:matrix(0.232496,-0.002092,0.002250,0.249990,0,0);-ms-transform:matrix(0.232496,-0.002092,0.002250,0.249990,0,0);-webkit-transform:matrix(0.232496,-0.002092,0.002250,0.249990,0,0);}
.md3_c00310{transform:matrix(0.232583,-0.002326,0.002500,0.249988,0,0);-ms-transform:matrix(0.232583,-0.002326,0.002500,0.249988,0,0);-webkit-transform:matrix(0.232583,-0.002326,0.002500,0.249988,0,0);}
.mde_c00310{transform:matrix(0.233228,-0.002332,0.002500,0.249988,0,0);-ms-transform:matrix(0.233228,-0.002332,0.002500,0.249988,0,0);-webkit-transform:matrix(0.233228,-0.002332,0.002500,0.249988,0,0);}
.mee_c00310{transform:matrix(0.233393,-0.002334,0.002500,0.249988,0,0);-ms-transform:matrix(0.233393,-0.002334,0.002500,0.249988,0,0);-webkit-transform:matrix(0.233393,-0.002334,0.002500,0.249988,0,0);}
.m111_c00310{transform:matrix(0.233643,-0.002336,0.002500,0.249988,0,0);-ms-transform:matrix(0.233643,-0.002336,0.002500,0.249988,0,0);-webkit-transform:matrix(0.233643,-0.002336,0.002500,0.249988,0,0);}
.m9f_c00310{transform:matrix(0.233723,-0.002337,0.002500,0.249988,0,0);-ms-transform:matrix(0.233723,-0.002337,0.002500,0.249988,0,0);-webkit-transform:matrix(0.233723,-0.002337,0.002500,0.249988,0,0);}
.m10c_c00310{transform:matrix(0.234213,-0.002342,0.002500,0.249988,0,0);-ms-transform:matrix(0.234213,-0.002342,0.002500,0.249988,0,0);-webkit-transform:matrix(0.234213,-0.002342,0.002500,0.249988,0,0);}
.mfa_c00310{transform:matrix(0.234223,-0.002342,0.002500,0.249988,0,0);-ms-transform:matrix(0.234223,-0.002342,0.002500,0.249988,0,0);-webkit-transform:matrix(0.234223,-0.002342,0.002500,0.249988,0,0);}
.mca_c00310{transform:matrix(0.235068,-0.002351,0.002500,0.249988,0,0);-ms-transform:matrix(0.235068,-0.002351,0.002500,0.249988,0,0);-webkit-transform:matrix(0.235068,-0.002351,0.002500,0.249988,0,0);}
.m68_c00310{transform:matrix(0.235070,-0.002116,0.002250,0.249990,0,0);-ms-transform:matrix(0.235070,-0.002116,0.002250,0.249990,0,0);-webkit-transform:matrix(0.235070,-0.002116,0.002250,0.249990,0,0);}
.mfc_c00310{transform:matrix(0.235398,-0.002354,0.002500,0.249988,0,0);-ms-transform:matrix(0.235398,-0.002354,0.002500,0.249988,0,0);-webkit-transform:matrix(0.235398,-0.002354,0.002500,0.249988,0,0);}
.m98_c00310{transform:matrix(0.235743,-0.002357,0.002500,0.249988,0,0);-ms-transform:matrix(0.235743,-0.002357,0.002500,0.249988,0,0);-webkit-transform:matrix(0.235743,-0.002357,0.002500,0.249988,0,0);}
.m80_c00310{transform:matrix(0.235838,-0.002358,0.002500,0.249988,0,0);-ms-transform:matrix(0.235838,-0.002358,0.002500,0.249988,0,0);-webkit-transform:matrix(0.235838,-0.002358,0.002500,0.249988,0,0);}
.m6f_c00310{transform:matrix(0.235870,-0.002123,0.002250,0.249990,0,0);-ms-transform:matrix(0.235870,-0.002123,0.002250,0.249990,0,0);-webkit-transform:matrix(0.235870,-0.002123,0.002250,0.249990,0,0);}
.md1_c00310{transform:matrix(0.235983,-0.002360,0.002500,0.249988,0,0);-ms-transform:matrix(0.235983,-0.002360,0.002500,0.249988,0,0);-webkit-transform:matrix(0.235983,-0.002360,0.002500,0.249988,0,0);}
.m97_c00310{transform:matrix(0.236358,-0.002364,0.002500,0.249988,0,0);-ms-transform:matrix(0.236358,-0.002364,0.002500,0.249988,0,0);-webkit-transform:matrix(0.236358,-0.002364,0.002500,0.249988,0,0);}
.m85_c00310{transform:matrix(0.237158,-0.002372,0.002500,0.249988,0,0);-ms-transform:matrix(0.237158,-0.002372,0.002500,0.249988,0,0);-webkit-transform:matrix(0.237158,-0.002372,0.002500,0.249988,0,0);}
.m5c_c00310{transform:matrix(0.237173,-0.002372,0.002500,0.249988,0,0);-ms-transform:matrix(0.237173,-0.002372,0.002500,0.249988,0,0);-webkit-transform:matrix(0.237173,-0.002372,0.002500,0.249988,0,0);}
.m140_c00310{transform:matrix(0.237177,-0.001897,0.002000,0.249992,0,0);-ms-transform:matrix(0.237177,-0.001897,0.002000,0.249992,0,0);-webkit-transform:matrix(0.237177,-0.001897,0.002000,0.249992,0,0);}
.m14_c00310{transform:matrix(0.237179,-0.001660,0.001750,0.249994,0,0);-ms-transform:matrix(0.237179,-0.001660,0.001750,0.249994,0,0);-webkit-transform:matrix(0.237179,-0.001660,0.001750,0.249994,0,0);}
.m135_c00310{transform:matrix(0.237967,-0.001904,0.002000,0.249992,0,0);-ms-transform:matrix(0.237967,-0.001904,0.002000,0.249992,0,0);-webkit-transform:matrix(0.237967,-0.001904,0.002000,0.249992,0,0);}
.m10b_c00310{transform:matrix(0.238028,-0.002380,0.002500,0.249988,0,0);-ms-transform:matrix(0.238028,-0.002380,0.002500,0.249988,0,0);-webkit-transform:matrix(0.238028,-0.002380,0.002500,0.249988,0,0);}
.m73_c00310{transform:matrix(0.238245,-0.002144,0.002250,0.249990,0,0);-ms-transform:matrix(0.238245,-0.002144,0.002250,0.249990,0,0);-webkit-transform:matrix(0.238245,-0.002144,0.002250,0.249990,0,0);}
.m9d_c00310{transform:matrix(0.238523,-0.002385,0.002500,0.249988,0,0);-ms-transform:matrix(0.238523,-0.002385,0.002500,0.249988,0,0);-webkit-transform:matrix(0.238523,-0.002385,0.002500,0.249988,0,0);}
.m33_c00310{transform:matrix(0.238660,-0.002148,0.002250,0.249990,0,0);-ms-transform:matrix(0.238660,-0.002148,0.002250,0.249990,0,0);-webkit-transform:matrix(0.238660,-0.002148,0.002250,0.249990,0,0);}
.me5_c00310{transform:matrix(0.238998,-0.002390,0.002500,0.249988,0,0);-ms-transform:matrix(0.238998,-0.002390,0.002500,0.249988,0,0);-webkit-transform:matrix(0.238998,-0.002390,0.002500,0.249988,0,0);}
.m12b_c00310{transform:matrix(0.239168,-0.002392,0.002500,0.249988,0,0);-ms-transform:matrix(0.239168,-0.002392,0.002500,0.249988,0,0);-webkit-transform:matrix(0.239168,-0.002392,0.002500,0.249988,0,0);}
.m110_c00310{transform:matrix(0.239283,-0.002393,0.002500,0.249988,0,0);-ms-transform:matrix(0.239283,-0.002393,0.002500,0.249988,0,0);-webkit-transform:matrix(0.239283,-0.002393,0.002500,0.249988,0,0);}
.mf_c00310{transform:matrix(0.239904,-0.001679,0.001750,0.249994,0,0);-ms-transform:matrix(0.239904,-0.001679,0.001750,0.249994,0,0);-webkit-transform:matrix(0.239904,-0.001679,0.001750,0.249994,0,0);}
.m7c_c00310{transform:matrix(0.240053,-0.002401,0.002500,0.249988,0,0);-ms-transform:matrix(0.240053,-0.002401,0.002500,0.249988,0,0);-webkit-transform:matrix(0.240053,-0.002401,0.002500,0.249988,0,0);}
.mc9_c00310{transform:matrix(0.240093,-0.002401,0.002500,0.249988,0,0);-ms-transform:matrix(0.240093,-0.002401,0.002500,0.249988,0,0);-webkit-transform:matrix(0.240093,-0.002401,0.002500,0.249988,0,0);}
.m12e_c00310{transform:matrix(0.240283,-0.002403,0.002500,0.249988,0,0);-ms-transform:matrix(0.240283,-0.002403,0.002500,0.249988,0,0);-webkit-transform:matrix(0.240283,-0.002403,0.002500,0.249988,0,0);}
.m79_c00310{transform:matrix(0.240340,-0.002163,0.002250,0.249990,0,0);-ms-transform:matrix(0.240340,-0.002163,0.002250,0.249990,0,0);-webkit-transform:matrix(0.240340,-0.002163,0.002250,0.249990,0,0);}
.m23_c00310{transform:matrix(0.240549,-0.001684,0.001750,0.249994,0,0);-ms-transform:matrix(0.240549,-0.001684,0.001750,0.249994,0,0);-webkit-transform:matrix(0.240549,-0.001684,0.001750,0.249994,0,0);}
.m59_c00310{transform:matrix(0.240623,-0.002406,0.002500,0.249988,0,0);-ms-transform:matrix(0.240623,-0.002406,0.002500,0.249988,0,0);-webkit-transform:matrix(0.240623,-0.002406,0.002500,0.249988,0,0);}
.ma8_c00310{transform:matrix(0.241018,-0.002410,0.002500,0.249988,0,0);-ms-transform:matrix(0.241018,-0.002410,0.002500,0.249988,0,0);-webkit-transform:matrix(0.241018,-0.002410,0.002500,0.249988,0,0);}
.m35_c00310{transform:matrix(0.241440,-0.002173,0.002250,0.249990,0,0);-ms-transform:matrix(0.241440,-0.002173,0.002250,0.249990,0,0);-webkit-transform:matrix(0.241440,-0.002173,0.002250,0.249990,0,0);}
.m53_c00310{transform:matrix(0.241508,-0.002415,0.002500,0.249988,0,0);-ms-transform:matrix(0.241508,-0.002415,0.002500,0.249988,0,0);-webkit-transform:matrix(0.241508,-0.002415,0.002500,0.249988,0,0);}
.me3_c00310{transform:matrix(0.241603,-0.002416,0.002500,0.249988,0,0);-ms-transform:matrix(0.241603,-0.002416,0.002500,0.249988,0,0);-webkit-transform:matrix(0.241603,-0.002416,0.002500,0.249988,0,0);}
.m70_c00310{transform:matrix(0.241605,-0.002174,0.002250,0.249990,0,0);-ms-transform:matrix(0.241605,-0.002174,0.002250,0.249990,0,0);-webkit-transform:matrix(0.241605,-0.002174,0.002250,0.249990,0,0);}
.m11e_c00310{transform:matrix(0.241983,-0.002420,0.002500,0.249988,0,0);-ms-transform:matrix(0.241983,-0.002420,0.002500,0.249988,0,0);-webkit-transform:matrix(0.241983,-0.002420,0.002500,0.249988,0,0);}
.m131_c00310{transform:matrix(0.242003,-0.002420,0.002500,0.249988,0,0);-ms-transform:matrix(0.242003,-0.002420,0.002500,0.249988,0,0);-webkit-transform:matrix(0.242003,-0.002420,0.002500,0.249988,0,0);}
.m57_c00310{transform:matrix(0.242228,-0.002422,0.002500,0.249988,0,0);-ms-transform:matrix(0.242228,-0.002422,0.002500,0.249988,0,0);-webkit-transform:matrix(0.242228,-0.002422,0.002500,0.249988,0,0);}
.ma3_c00310{transform:matrix(0.242383,-0.002424,0.002500,0.249988,0,0);-ms-transform:matrix(0.242383,-0.002424,0.002500,0.249988,0,0);-webkit-transform:matrix(0.242383,-0.002424,0.002500,0.249988,0,0);}
.m60_c00310{transform:matrix(0.242693,-0.002427,0.002500,0.249988,0,0);-ms-transform:matrix(0.242693,-0.002427,0.002500,0.249988,0,0);-webkit-transform:matrix(0.242693,-0.002427,0.002500,0.249988,0,0);}
.m13c_c00310{transform:matrix(0.243307,-0.001946,0.002000,0.249992,0,0);-ms-transform:matrix(0.243307,-0.001946,0.002000,0.249992,0,0);-webkit-transform:matrix(0.243307,-0.001946,0.002000,0.249992,0,0);}
.m3b_c00310{transform:matrix(0.243480,-0.002191,0.002250,0.249990,0,0);-ms-transform:matrix(0.243480,-0.002191,0.002250,0.249990,0,0);-webkit-transform:matrix(0.243480,-0.002191,0.002250,0.249990,0,0);}
.m7d_c00310{transform:matrix(0.243483,-0.002435,0.002500,0.249988,0,0);-ms-transform:matrix(0.243483,-0.002435,0.002500,0.249988,0,0);-webkit-transform:matrix(0.243483,-0.002435,0.002500,0.249988,0,0);}
.m13f_c00310{transform:matrix(0.243532,-0.001948,0.002000,0.249992,0,0);-ms-transform:matrix(0.243532,-0.001948,0.002000,0.249992,0,0);-webkit-transform:matrix(0.243532,-0.001948,0.002000,0.249992,0,0);}
.m30_c00310{transform:matrix(0.243890,-0.002195,0.002250,0.249990,0,0);-ms-transform:matrix(0.243890,-0.002195,0.002250,0.249990,0,0);-webkit-transform:matrix(0.243890,-0.002195,0.002250,0.249990,0,0);}
.mcb_c00310{transform:matrix(0.244083,-0.002441,0.002500,0.249988,0,0);-ms-transform:matrix(0.244083,-0.002441,0.002500,0.249988,0,0);-webkit-transform:matrix(0.244083,-0.002441,0.002500,0.249988,0,0);}
.m147_c00310{transform:matrix(0.244087,-0.001953,0.002000,0.249992,0,0);-ms-transform:matrix(0.244087,-0.001953,0.002000,0.249992,0,0);-webkit-transform:matrix(0.244087,-0.001953,0.002000,0.249992,0,0);}
.mbf_c00310{transform:matrix(0.244093,-0.002441,0.002500,0.249988,0,0);-ms-transform:matrix(0.244093,-0.002441,0.002500,0.249988,0,0);-webkit-transform:matrix(0.244093,-0.002441,0.002500,0.249988,0,0);}
.m11_c00310{transform:matrix(0.244249,-0.001710,0.001750,0.249994,0,0);-ms-transform:matrix(0.244249,-0.001710,0.001750,0.249994,0,0);-webkit-transform:matrix(0.244249,-0.001710,0.001750,0.249994,0,0);}
.mcf_c00310{transform:matrix(0.244463,-0.002445,0.002500,0.249988,0,0);-ms-transform:matrix(0.244463,-0.002445,0.002500,0.249988,0,0);-webkit-transform:matrix(0.244463,-0.002445,0.002500,0.249988,0,0);}
.mc5_c00310{transform:matrix(0.244848,-0.002448,0.002500,0.249988,0,0);-ms-transform:matrix(0.244848,-0.002448,0.002500,0.249988,0,0);-webkit-transform:matrix(0.244848,-0.002448,0.002500,0.249988,0,0);}
.m9c_c00310{transform:matrix(0.244858,-0.002449,0.002500,0.249988,0,0);-ms-transform:matrix(0.244858,-0.002449,0.002500,0.249988,0,0);-webkit-transform:matrix(0.244858,-0.002449,0.002500,0.249988,0,0);}
.m136_c00310{transform:matrix(0.244862,-0.001959,0.002000,0.249992,0,0);-ms-transform:matrix(0.244862,-0.001959,0.002000,0.249992,0,0);-webkit-transform:matrix(0.244862,-0.001959,0.002000,0.249992,0,0);}
.m4c_c00310{transform:matrix(0.245015,-0.002205,0.002250,0.249990,0,0);-ms-transform:matrix(0.245015,-0.002205,0.002250,0.249990,0,0);-webkit-transform:matrix(0.245015,-0.002205,0.002250,0.249990,0,0);}
.mc7_c00310{transform:matrix(0.245378,-0.002454,0.002500,0.249988,0,0);-ms-transform:matrix(0.245378,-0.002454,0.002500,0.249988,0,0);-webkit-transform:matrix(0.245378,-0.002454,0.002500,0.249988,0,0);}
.mcd_c00310{transform:matrix(0.245463,-0.002455,0.002500,0.249988,0,0);-ms-transform:matrix(0.245463,-0.002455,0.002500,0.249988,0,0);-webkit-transform:matrix(0.245463,-0.002455,0.002500,0.249988,0,0);}
.md8_c00310{transform:matrix(0.245468,-0.002455,0.002500,0.249988,0,0);-ms-transform:matrix(0.245468,-0.002455,0.002500,0.249988,0,0);-webkit-transform:matrix(0.245468,-0.002455,0.002500,0.249988,0,0);}
.mf5_c00310{transform:matrix(0.245583,-0.002456,0.002500,0.249988,0,0);-ms-transform:matrix(0.245583,-0.002456,0.002500,0.249988,0,0);-webkit-transform:matrix(0.245583,-0.002456,0.002500,0.249988,0,0);}
.mec_c00310{transform:matrix(0.245663,-0.002457,0.002500,0.249988,0,0);-ms-transform:matrix(0.245663,-0.002457,0.002500,0.249988,0,0);-webkit-transform:matrix(0.245663,-0.002457,0.002500,0.249988,0,0);}
.m148_c00310{transform:matrix(0.245817,-0.001967,0.002000,0.249992,0,0);-ms-transform:matrix(0.245817,-0.001967,0.002000,0.249992,0,0);-webkit-transform:matrix(0.245817,-0.001967,0.002000,0.249992,0,0);}
.meb_c00310{transform:matrix(0.245958,-0.002460,0.002500,0.249988,0,0);-ms-transform:matrix(0.245958,-0.002460,0.002500,0.249988,0,0);-webkit-transform:matrix(0.245958,-0.002460,0.002500,0.249988,0,0);}
.m12c_c00310{transform:matrix(0.246173,-0.002462,0.002500,0.249988,0,0);-ms-transform:matrix(0.246173,-0.002462,0.002500,0.249988,0,0);-webkit-transform:matrix(0.246173,-0.002462,0.002500,0.249988,0,0);}
.mac_c00310{transform:matrix(0.246183,-0.002462,0.002500,0.249988,0,0);-ms-transform:matrix(0.246183,-0.002462,0.002500,0.249988,0,0);-webkit-transform:matrix(0.246183,-0.002462,0.002500,0.249988,0,0);}
.mae_c00310{transform:matrix(0.246528,-0.002465,0.002500,0.249988,0,0);-ms-transform:matrix(0.246528,-0.002465,0.002500,0.249988,0,0);-webkit-transform:matrix(0.246528,-0.002465,0.002500,0.249988,0,0);}
.m88_c00310{transform:matrix(0.246548,-0.002465,0.002500,0.249988,0,0);-ms-transform:matrix(0.246548,-0.002465,0.002500,0.249988,0,0);-webkit-transform:matrix(0.246548,-0.002465,0.002500,0.249988,0,0);}
.m99_c00310{transform:matrix(0.246778,-0.002468,0.002500,0.249988,0,0);-ms-transform:matrix(0.246778,-0.002468,0.002500,0.249988,0,0);-webkit-transform:matrix(0.246778,-0.002468,0.002500,0.249988,0,0);}
.m126_c00310{transform:matrix(0.246968,-0.002470,0.002500,0.249988,0,0);-ms-transform:matrix(0.246968,-0.002470,0.002500,0.249988,0,0);-webkit-transform:matrix(0.246968,-0.002470,0.002500,0.249988,0,0);}
.me6_c00310{transform:matrix(0.247058,-0.002471,0.002500,0.249988,0,0);-ms-transform:matrix(0.247058,-0.002471,0.002500,0.249988,0,0);-webkit-transform:matrix(0.247058,-0.002471,0.002500,0.249988,0,0);}
.m10f_c00310{transform:matrix(0.247123,-0.002471,0.002500,0.249988,0,0);-ms-transform:matrix(0.247123,-0.002471,0.002500,0.249988,0,0);-webkit-transform:matrix(0.247123,-0.002471,0.002500,0.249988,0,0);}
.m141_c00310{transform:matrix(0.247127,-0.001977,0.002000,0.249992,0,0);-ms-transform:matrix(0.247127,-0.001977,0.002000,0.249992,0,0);-webkit-transform:matrix(0.247127,-0.001977,0.002000,0.249992,0,0);}
.m74_c00310{transform:matrix(0.248330,-0.002235,0.002250,0.249990,0,0);-ms-transform:matrix(0.248330,-0.002235,0.002250,0.249990,0,0);-webkit-transform:matrix(0.248330,-0.002235,0.002250,0.249990,0,0);}
.m10_c00310{transform:matrix(0.248549,-0.001740,0.001750,0.249994,0,0);-ms-transform:matrix(0.248549,-0.001740,0.001750,0.249994,0,0);-webkit-transform:matrix(0.248549,-0.001740,0.001750,0.249994,0,0);}
.mbc_c00310{transform:matrix(0.248648,-0.002486,0.002500,0.249988,0,0);-ms-transform:matrix(0.248648,-0.002486,0.002500,0.249988,0,0);-webkit-transform:matrix(0.248648,-0.002486,0.002500,0.249988,0,0);}
.mfe_c00310{transform:matrix(0.249198,-0.002492,0.002500,0.249988,0,0);-ms-transform:matrix(0.249198,-0.002492,0.002500,0.249988,0,0);-webkit-transform:matrix(0.249198,-0.002492,0.002500,0.249988,0,0);}
.m2c_c00310{transform:matrix(0.249490,-0.002245,0.002250,0.249990,0,0);-ms-transform:matrix(0.249490,-0.002245,0.002250,0.249990,0,0);-webkit-transform:matrix(0.249490,-0.002245,0.002250,0.249990,0,0);}
.m12a_c00310{transform:matrix(0.249523,-0.002495,0.002500,0.249988,0,0);-ms-transform:matrix(0.249523,-0.002495,0.002500,0.249988,0,0);-webkit-transform:matrix(0.249523,-0.002495,0.002500,0.249988,0,0);}
.mbb_c00310{transform:matrix(0.249748,-0.002497,0.002500,0.249988,0,0);-ms-transform:matrix(0.249748,-0.002497,0.002500,0.249988,0,0);-webkit-transform:matrix(0.249748,-0.002497,0.002500,0.249988,0,0);}
.m133_c00310{transform:matrix(0.249868,-0.002499,0.002500,0.249988,0,0);-ms-transform:matrix(0.249868,-0.002499,0.002500,0.249988,0,0);-webkit-transform:matrix(0.249868,-0.002499,0.002500,0.249988,0,0);}
.mef_c00310{transform:matrix(0.249953,-0.002500,0.002500,0.249988,0,0);-ms-transform:matrix(0.249953,-0.002500,0.002500,0.249988,0,0);-webkit-transform:matrix(0.249953,-0.002500,0.002500,0.249988,0,0);}
.m127_c00310{transform:matrix(0.249968,-0.002500,0.002500,0.249988,0,0);-ms-transform:matrix(0.249968,-0.002500,0.002500,0.249988,0,0);-webkit-transform:matrix(0.249968,-0.002500,0.002500,0.249988,0,0);}
.ma5_c00310{transform:matrix(0.250142,-0.002501,0.002500,0.249988,0,0);-ms-transform:matrix(0.250142,-0.002501,0.002500,0.249988,0,0);-webkit-transform:matrix(0.250142,-0.002501,0.002500,0.249988,0,0);}
.m83_c00310{transform:matrix(0.250647,-0.002506,0.002500,0.249988,0,0);-ms-transform:matrix(0.250647,-0.002506,0.002500,0.249988,0,0);-webkit-transform:matrix(0.250647,-0.002506,0.002500,0.249988,0,0);}
.me7_c00310{transform:matrix(0.250677,-0.002507,0.002500,0.249988,0,0);-ms-transform:matrix(0.250677,-0.002507,0.002500,0.249988,0,0);-webkit-transform:matrix(0.250677,-0.002507,0.002500,0.249988,0,0);}
.m125_c00310{transform:matrix(0.250907,-0.002509,0.002500,0.249988,0,0);-ms-transform:matrix(0.250907,-0.002509,0.002500,0.249988,0,0);-webkit-transform:matrix(0.250907,-0.002509,0.002500,0.249988,0,0);}
.m4b_c00310{transform:matrix(0.250920,-0.002258,0.002250,0.249990,0,0);-ms-transform:matrix(0.250920,-0.002258,0.002250,0.249990,0,0);-webkit-transform:matrix(0.250920,-0.002258,0.002250,0.249990,0,0);}
.m7a_c00310{transform:matrix(0.251190,-0.002261,0.002250,0.249990,0,0);-ms-transform:matrix(0.251190,-0.002261,0.002250,0.249990,0,0);-webkit-transform:matrix(0.251190,-0.002261,0.002250,0.249990,0,0);}
.md9_c00310{transform:matrix(0.251387,-0.002514,0.002500,0.249988,0,0);-ms-transform:matrix(0.251387,-0.002514,0.002500,0.249988,0,0);-webkit-transform:matrix(0.251387,-0.002514,0.002500,0.249988,0,0);}
.mdd_c00310{transform:matrix(0.251392,-0.002514,0.002500,0.249988,0,0);-ms-transform:matrix(0.251392,-0.002514,0.002500,0.249988,0,0);-webkit-transform:matrix(0.251392,-0.002514,0.002500,0.249988,0,0);}
.m15_c00310{transform:matrix(0.251439,-0.001760,0.001750,0.249994,0,0);-ms-transform:matrix(0.251439,-0.001760,0.001750,0.249994,0,0);-webkit-transform:matrix(0.251439,-0.001760,0.001750,0.249994,0,0);}
.mf0_c00310{transform:matrix(0.251882,-0.002519,0.002500,0.249988,0,0);-ms-transform:matrix(0.251882,-0.002519,0.002500,0.249988,0,0);-webkit-transform:matrix(0.251882,-0.002519,0.002500,0.249988,0,0);}
.mfd_c00310{transform:matrix(0.252012,-0.002520,0.002500,0.249988,0,0);-ms-transform:matrix(0.252012,-0.002520,0.002500,0.249988,0,0);-webkit-transform:matrix(0.252012,-0.002520,0.002500,0.249988,0,0);}
.m56_c00310{transform:matrix(0.253197,-0.002532,0.002500,0.249988,0,0);-ms-transform:matrix(0.253197,-0.002532,0.002500,0.249988,0,0);-webkit-transform:matrix(0.253197,-0.002532,0.002500,0.249988,0,0);}
.m145_c00310{transform:matrix(0.253317,-0.002027,0.002000,0.249992,0,0);-ms-transform:matrix(0.253317,-0.002027,0.002000,0.249992,0,0);-webkit-transform:matrix(0.253317,-0.002027,0.002000,0.249992,0,0);}
.m36_c00310{transform:matrix(0.253690,-0.002283,0.002250,0.249990,0,0);-ms-transform:matrix(0.253690,-0.002283,0.002250,0.249990,0,0);-webkit-transform:matrix(0.253690,-0.002283,0.002250,0.249990,0,0);}
.m39_c00310{transform:matrix(0.253960,-0.002286,0.002250,0.249990,0,0);-ms-transform:matrix(0.253960,-0.002286,0.002250,0.249990,0,0);-webkit-transform:matrix(0.253960,-0.002286,0.002250,0.249990,0,0);}
.mab_c00310{transform:matrix(0.254707,-0.002547,0.002500,0.249988,0,0);-ms-transform:matrix(0.254707,-0.002547,0.002500,0.249988,0,0);-webkit-transform:matrix(0.254707,-0.002547,0.002500,0.249988,0,0);}
.m1_c00310{transform:matrix(0.254974,-0.001785,0.001750,0.249994,0,0);-ms-transform:matrix(0.254974,-0.001785,0.001750,0.249994,0,0);-webkit-transform:matrix(0.254974,-0.001785,0.001750,0.249994,0,0);}
.ma0_c00310{transform:matrix(0.255137,-0.002551,0.002500,0.249988,0,0);-ms-transform:matrix(0.255137,-0.002551,0.002500,0.249988,0,0);-webkit-transform:matrix(0.255137,-0.002551,0.002500,0.249988,0,0);}
.mdc_c00310{transform:matrix(0.255197,-0.002552,0.002500,0.249988,0,0);-ms-transform:matrix(0.255197,-0.002552,0.002500,0.249988,0,0);-webkit-transform:matrix(0.255197,-0.002552,0.002500,0.249988,0,0);}
.mad_c00310{transform:matrix(0.255297,-0.002553,0.002500,0.249988,0,0);-ms-transform:matrix(0.255297,-0.002553,0.002500,0.249988,0,0);-webkit-transform:matrix(0.255297,-0.002553,0.002500,0.249988,0,0);}
.m3a_c00310{transform:matrix(0.255535,-0.002300,0.002250,0.249990,0,0);-ms-transform:matrix(0.255535,-0.002300,0.002250,0.249990,0,0);-webkit-transform:matrix(0.255535,-0.002300,0.002250,0.249990,0,0);}
.m3e_c00310{transform:matrix(0.255570,-0.002300,0.002250,0.249990,0,0);-ms-transform:matrix(0.255570,-0.002300,0.002250,0.249990,0,0);-webkit-transform:matrix(0.255570,-0.002300,0.002250,0.249990,0,0);}
.m19_c00310{transform:matrix(0.255574,-0.001789,0.001750,0.249994,0,0);-ms-transform:matrix(0.255574,-0.001789,0.001750,0.249994,0,0);-webkit-transform:matrix(0.255574,-0.001789,0.001750,0.249994,0,0);}
.md7_c00310{transform:matrix(0.255882,-0.002559,0.002500,0.249988,0,0);-ms-transform:matrix(0.255882,-0.002559,0.002500,0.249988,0,0);-webkit-transform:matrix(0.255882,-0.002559,0.002500,0.249988,0,0);}
.md2_c00310{transform:matrix(0.256257,-0.002563,0.002500,0.249988,0,0);-ms-transform:matrix(0.256257,-0.002563,0.002500,0.249988,0,0);-webkit-transform:matrix(0.256257,-0.002563,0.002500,0.249988,0,0);}
.mc6_c00310{transform:matrix(0.256857,-0.002569,0.002500,0.249988,0,0);-ms-transform:matrix(0.256857,-0.002569,0.002500,0.249988,0,0);-webkit-transform:matrix(0.256857,-0.002569,0.002500,0.249988,0,0);}
.m54_c00310{transform:matrix(0.257087,-0.002571,0.002500,0.249988,0,0);-ms-transform:matrix(0.257087,-0.002571,0.002500,0.249988,0,0);-webkit-transform:matrix(0.257087,-0.002571,0.002500,0.249988,0,0);}
.m17_c00310{transform:matrix(0.257094,-0.001800,0.001750,0.249994,0,0);-ms-transform:matrix(0.257094,-0.001800,0.001750,0.249994,0,0);-webkit-transform:matrix(0.257094,-0.001800,0.001750,0.249994,0,0);}
.m20_c00310{transform:matrix(0.257284,-0.001801,0.001750,0.249994,0,0);-ms-transform:matrix(0.257284,-0.001801,0.001750,0.249994,0,0);-webkit-transform:matrix(0.257284,-0.001801,0.001750,0.249994,0,0);}
.m146_c00310{transform:matrix(0.257737,-0.002062,0.002000,0.249992,0,0);-ms-transform:matrix(0.257737,-0.002062,0.002000,0.249992,0,0);-webkit-transform:matrix(0.257737,-0.002062,0.002000,0.249992,0,0);}
.m142_c00310{transform:matrix(0.258067,-0.002065,0.002000,0.249992,0,0);-ms-transform:matrix(0.258067,-0.002065,0.002000,0.249992,0,0);-webkit-transform:matrix(0.258067,-0.002065,0.002000,0.249992,0,0);}
.m4a_c00310{transform:matrix(0.258090,-0.002323,0.002250,0.249990,0,0);-ms-transform:matrix(0.258090,-0.002323,0.002250,0.249990,0,0);-webkit-transform:matrix(0.258090,-0.002323,0.002250,0.249990,0,0);}
.mc4_c00310{transform:matrix(0.258422,-0.002584,0.002500,0.249988,0,0);-ms-transform:matrix(0.258422,-0.002584,0.002500,0.249988,0,0);-webkit-transform:matrix(0.258422,-0.002584,0.002500,0.249988,0,0);}
.m81_c00310{transform:matrix(0.258597,-0.002586,0.002500,0.249988,0,0);-ms-transform:matrix(0.258597,-0.002586,0.002500,0.249988,0,0);-webkit-transform:matrix(0.258597,-0.002586,0.002500,0.249988,0,0);}
.ma2_c00310{transform:matrix(0.258617,-0.002586,0.002500,0.249988,0,0);-ms-transform:matrix(0.258617,-0.002586,0.002500,0.249988,0,0);-webkit-transform:matrix(0.258617,-0.002586,0.002500,0.249988,0,0);}
.mbe_c00310{transform:matrix(0.258682,-0.002587,0.002500,0.249988,0,0);-ms-transform:matrix(0.258682,-0.002587,0.002500,0.249988,0,0);-webkit-transform:matrix(0.258682,-0.002587,0.002500,0.249988,0,0);}
.mb_c00310{transform:matrix(0.258739,-0.001811,0.001750,0.249994,0,0);-ms-transform:matrix(0.258739,-0.001811,0.001750,0.249994,0,0);-webkit-transform:matrix(0.258739,-0.001811,0.001750,0.249994,0,0);}
.m13e_c00310{transform:matrix(0.258942,-0.002072,0.002000,0.249992,0,0);-ms-transform:matrix(0.258942,-0.002072,0.002000,0.249992,0,0);-webkit-transform:matrix(0.258942,-0.002072,0.002000,0.249992,0,0);}
.mc3_c00310{transform:matrix(0.259037,-0.002590,0.002500,0.249988,0,0);-ms-transform:matrix(0.259037,-0.002590,0.002500,0.249988,0,0);-webkit-transform:matrix(0.259037,-0.002590,0.002500,0.249988,0,0);}
.me_c00310{transform:matrix(0.259149,-0.001814,0.001750,0.249994,0,0);-ms-transform:matrix(0.259149,-0.001814,0.001750,0.249994,0,0);-webkit-transform:matrix(0.259149,-0.001814,0.001750,0.249994,0,0);}
.m16_c00310{transform:matrix(0.259294,-0.001815,0.001750,0.249994,0,0);-ms-transform:matrix(0.259294,-0.001815,0.001750,0.249994,0,0);-webkit-transform:matrix(0.259294,-0.001815,0.001750,0.249994,0,0);}
.m51_c00310{transform:matrix(0.260162,-0.002602,0.002500,0.249988,0,0);-ms-transform:matrix(0.260162,-0.002602,0.002500,0.249988,0,0);-webkit-transform:matrix(0.260162,-0.002602,0.002500,0.249988,0,0);}
.m119_c00310{transform:matrix(0.260182,-0.002602,0.002500,0.249988,0,0);-ms-transform:matrix(0.260182,-0.002602,0.002500,0.249988,0,0);-webkit-transform:matrix(0.260182,-0.002602,0.002500,0.249988,0,0);}
.mc8_c00310{transform:matrix(0.261232,-0.002612,0.002500,0.249988,0,0);-ms-transform:matrix(0.261232,-0.002612,0.002500,0.249988,0,0);-webkit-transform:matrix(0.261232,-0.002612,0.002500,0.249988,0,0);}
.m4_c00310{transform:matrix(0.261364,-0.001830,0.001750,0.249994,0,0);-ms-transform:matrix(0.261364,-0.001830,0.001750,0.249994,0,0);-webkit-transform:matrix(0.261364,-0.001830,0.001750,0.249994,0,0);}
.m5d_c00310{transform:matrix(0.261707,-0.002617,0.002500,0.249988,0,0);-ms-transform:matrix(0.261707,-0.002617,0.002500,0.249988,0,0);-webkit-transform:matrix(0.261707,-0.002617,0.002500,0.249988,0,0);}
.m132_c00310{transform:matrix(0.261822,-0.002618,0.002500,0.249988,0,0);-ms-transform:matrix(0.261822,-0.002618,0.002500,0.249988,0,0);-webkit-transform:matrix(0.261822,-0.002618,0.002500,0.249988,0,0);}
.mf7_c00310{transform:matrix(0.262382,-0.002624,0.002500,0.249988,0,0);-ms-transform:matrix(0.262382,-0.002624,0.002500,0.249988,0,0);-webkit-transform:matrix(0.262382,-0.002624,0.002500,0.249988,0,0);}
.m66_c00310{transform:matrix(0.262745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262745,0.000000,0.000000,0.250000,0,0);}
.m113_c00310{transform:matrix(0.262752,-0.002628,0.002500,0.249988,0,0);-ms-transform:matrix(0.262752,-0.002628,0.002500,0.249988,0,0);-webkit-transform:matrix(0.262752,-0.002628,0.002500,0.249988,0,0);}
.mba_c00310{transform:matrix(0.262887,-0.002629,0.002500,0.249988,0,0);-ms-transform:matrix(0.262887,-0.002629,0.002500,0.249988,0,0);-webkit-transform:matrix(0.262887,-0.002629,0.002500,0.249988,0,0);}
.mda_c00310{transform:matrix(0.263097,-0.002631,0.002500,0.249988,0,0);-ms-transform:matrix(0.263097,-0.002631,0.002500,0.249988,0,0);-webkit-transform:matrix(0.263097,-0.002631,0.002500,0.249988,0,0);}
.m93_c00310{transform:matrix(0.263347,-0.002633,0.002500,0.249988,0,0);-ms-transform:matrix(0.263347,-0.002633,0.002500,0.249988,0,0);-webkit-transform:matrix(0.263347,-0.002633,0.002500,0.249988,0,0);}
.m11f_c00310{transform:matrix(0.263642,-0.002636,0.002500,0.249988,0,0);-ms-transform:matrix(0.263642,-0.002636,0.002500,0.249988,0,0);-webkit-transform:matrix(0.263642,-0.002636,0.002500,0.249988,0,0);}
.m112_c00310{transform:matrix(0.264037,-0.002640,0.002500,0.249988,0,0);-ms-transform:matrix(0.264037,-0.002640,0.002500,0.249988,0,0);-webkit-transform:matrix(0.264037,-0.002640,0.002500,0.249988,0,0);}
.m65_c00310{transform:matrix(0.264225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264225,0.000000,0.000000,0.250000,0,0);}
.m5f_c00310{transform:matrix(0.264282,-0.002643,0.002500,0.249988,0,0);-ms-transform:matrix(0.264282,-0.002643,0.002500,0.249988,0,0);-webkit-transform:matrix(0.264282,-0.002643,0.002500,0.249988,0,0);}
.md4_c00310{transform:matrix(0.264457,-0.002645,0.002500,0.249988,0,0);-ms-transform:matrix(0.264457,-0.002645,0.002500,0.249988,0,0);-webkit-transform:matrix(0.264457,-0.002645,0.002500,0.249988,0,0);}
.m117_c00310{transform:matrix(0.264977,-0.002650,0.002500,0.249988,0,0);-ms-transform:matrix(0.264977,-0.002650,0.002500,0.249988,0,0);-webkit-transform:matrix(0.264977,-0.002650,0.002500,0.249988,0,0);}
.m21_c00310{transform:matrix(0.265518,-0.001859,0.001750,0.249994,0,0);-ms-transform:matrix(0.265518,-0.001859,0.001750,0.249994,0,0);-webkit-transform:matrix(0.265518,-0.001859,0.001750,0.249994,0,0);}
.m6b_c00310{transform:matrix(0.265574,-0.002390,0.002250,0.249990,0,0);-ms-transform:matrix(0.265574,-0.002390,0.002250,0.249990,0,0);-webkit-transform:matrix(0.265574,-0.002390,0.002250,0.249990,0,0);}
.ma4_c00310{transform:matrix(0.265647,-0.002656,0.002500,0.249988,0,0);-ms-transform:matrix(0.265647,-0.002656,0.002500,0.249988,0,0);-webkit-transform:matrix(0.265647,-0.002656,0.002500,0.249988,0,0);}
.m7e_c00310{transform:matrix(0.265827,-0.002658,0.002500,0.249988,0,0);-ms-transform:matrix(0.265827,-0.002658,0.002500,0.249988,0,0);-webkit-transform:matrix(0.265827,-0.002658,0.002500,0.249988,0,0);}
.me1_c00310{transform:matrix(0.265872,-0.002659,0.002500,0.249988,0,0);-ms-transform:matrix(0.265872,-0.002659,0.002500,0.249988,0,0);-webkit-transform:matrix(0.265872,-0.002659,0.002500,0.249988,0,0);}
.m52_c00310{transform:matrix(0.265897,-0.002659,0.002500,0.249988,0,0);-ms-transform:matrix(0.265897,-0.002659,0.002500,0.249988,0,0);-webkit-transform:matrix(0.265897,-0.002659,0.002500,0.249988,0,0);}
.m8f_c00310{transform:matrix(0.265997,-0.002660,0.002500,0.249988,0,0);-ms-transform:matrix(0.265997,-0.002660,0.002500,0.249988,0,0);-webkit-transform:matrix(0.265997,-0.002660,0.002500,0.249988,0,0);}
.m9e_c00310{transform:matrix(0.266392,-0.002664,0.002500,0.249988,0,0);-ms-transform:matrix(0.266392,-0.002664,0.002500,0.249988,0,0);-webkit-transform:matrix(0.266392,-0.002664,0.002500,0.249988,0,0);}
.m8_c00310{transform:matrix(0.266498,-0.001865,0.001750,0.249994,0,0);-ms-transform:matrix(0.266498,-0.001865,0.001750,0.249994,0,0);-webkit-transform:matrix(0.266498,-0.001865,0.001750,0.249994,0,0);}
.m67_c00310{transform:matrix(0.266699,-0.002400,0.002250,0.249990,0,0);-ms-transform:matrix(0.266699,-0.002400,0.002250,0.249990,0,0);-webkit-transform:matrix(0.266699,-0.002400,0.002250,0.249990,0,0);}
.mea_c00310{transform:matrix(0.267162,-0.002672,0.002500,0.249988,0,0);-ms-transform:matrix(0.267162,-0.002672,0.002500,0.249988,0,0);-webkit-transform:matrix(0.267162,-0.002672,0.002500,0.249988,0,0);}
.m5e_c00310{transform:matrix(0.267167,-0.002672,0.002500,0.249988,0,0);-ms-transform:matrix(0.267167,-0.002672,0.002500,0.249988,0,0);-webkit-transform:matrix(0.267167,-0.002672,0.002500,0.249988,0,0);}
.m121_c00310{transform:matrix(0.267412,-0.002674,0.002500,0.249988,0,0);-ms-transform:matrix(0.267412,-0.002674,0.002500,0.249988,0,0);-webkit-transform:matrix(0.267412,-0.002674,0.002500,0.249988,0,0);}
.m55_c00310{transform:matrix(0.268112,-0.002681,0.002500,0.249988,0,0);-ms-transform:matrix(0.268112,-0.002681,0.002500,0.249988,0,0);-webkit-transform:matrix(0.268112,-0.002681,0.002500,0.249988,0,0);}
.m144_c00310{transform:matrix(0.268191,-0.002146,0.002000,0.249992,0,0);-ms-transform:matrix(0.268191,-0.002146,0.002000,0.249992,0,0);-webkit-transform:matrix(0.268191,-0.002146,0.002000,0.249992,0,0);}
.ma7_c00310{transform:matrix(0.268422,-0.002684,0.002500,0.249988,0,0);-ms-transform:matrix(0.268422,-0.002684,0.002500,0.249988,0,0);-webkit-transform:matrix(0.268422,-0.002684,0.002500,0.249988,0,0);}
.m13_c00310{transform:matrix(0.268468,-0.001879,0.001750,0.249994,0,0);-ms-transform:matrix(0.268468,-0.001879,0.001750,0.249994,0,0);-webkit-transform:matrix(0.268468,-0.001879,0.001750,0.249994,0,0);}
.m122_c00310{transform:matrix(0.268952,-0.002690,0.002500,0.249988,0,0);-ms-transform:matrix(0.268952,-0.002690,0.002500,0.249988,0,0);-webkit-transform:matrix(0.268952,-0.002690,0.002500,0.249988,0,0);}
.m130_c00310{transform:matrix(0.268992,-0.002690,0.002500,0.249988,0,0);-ms-transform:matrix(0.268992,-0.002690,0.002500,0.249988,0,0);-webkit-transform:matrix(0.268992,-0.002690,0.002500,0.249988,0,0);}
.m96_c00310{transform:matrix(0.269027,-0.002690,0.002500,0.249988,0,0);-ms-transform:matrix(0.269027,-0.002690,0.002500,0.249988,0,0);-webkit-transform:matrix(0.269027,-0.002690,0.002500,0.249988,0,0);}
.m14a_c00310{transform:matrix(0.269211,-0.002154,0.002000,0.249992,0,0);-ms-transform:matrix(0.269211,-0.002154,0.002000,0.249992,0,0);-webkit-transform:matrix(0.269211,-0.002154,0.002000,0.249992,0,0);}
.m6d_c00310{transform:matrix(0.269414,-0.002425,0.002250,0.249990,0,0);-ms-transform:matrix(0.269414,-0.002425,0.002250,0.249990,0,0);-webkit-transform:matrix(0.269414,-0.002425,0.002250,0.249990,0,0);}
.ma1_c00310{transform:matrix(0.269497,-0.002695,0.002500,0.249988,0,0);-ms-transform:matrix(0.269497,-0.002695,0.002500,0.249988,0,0);-webkit-transform:matrix(0.269497,-0.002695,0.002500,0.249988,0,0);}
.ma6_c00310{transform:matrix(0.269522,-0.002695,0.002500,0.249988,0,0);-ms-transform:matrix(0.269522,-0.002695,0.002500,0.249988,0,0);-webkit-transform:matrix(0.269522,-0.002695,0.002500,0.249988,0,0);}
.m58_c00310{transform:matrix(0.269602,-0.002696,0.002500,0.249988,0,0);-ms-transform:matrix(0.269602,-0.002696,0.002500,0.249988,0,0);-webkit-transform:matrix(0.269602,-0.002696,0.002500,0.249988,0,0);}
.m8c_c00310{transform:matrix(0.269772,-0.002698,0.002500,0.249988,0,0);-ms-transform:matrix(0.269772,-0.002698,0.002500,0.249988,0,0);-webkit-transform:matrix(0.269772,-0.002698,0.002500,0.249988,0,0);}
.mc2_c00310{transform:matrix(0.269817,-0.002698,0.002500,0.249988,0,0);-ms-transform:matrix(0.269817,-0.002698,0.002500,0.249988,0,0);-webkit-transform:matrix(0.269817,-0.002698,0.002500,0.249988,0,0);}
.m118_c00310{transform:matrix(0.270381,-0.002704,0.002500,0.249988,0,0);-ms-transform:matrix(0.270381,-0.002704,0.002500,0.249988,0,0);-webkit-transform:matrix(0.270381,-0.002704,0.002500,0.249988,0,0);}
.m137_c00310{transform:matrix(0.270711,-0.002166,0.002000,0.249992,0,0);-ms-transform:matrix(0.270711,-0.002166,0.002000,0.249992,0,0);-webkit-transform:matrix(0.270711,-0.002166,0.002000,0.249992,0,0);}
.m86_c00310{transform:matrix(0.270796,-0.002708,0.002500,0.249988,0,0);-ms-transform:matrix(0.270796,-0.002708,0.002500,0.249988,0,0);-webkit-transform:matrix(0.270796,-0.002708,0.002500,0.249988,0,0);}
.m4f_c00310{transform:matrix(0.270954,-0.002439,0.002250,0.249990,0,0);-ms-transform:matrix(0.270954,-0.002439,0.002250,0.249990,0,0);-webkit-transform:matrix(0.270954,-0.002439,0.002250,0.249990,0,0);}
.me4_c00310{transform:matrix(0.271796,-0.002718,0.002500,0.249988,0,0);-ms-transform:matrix(0.271796,-0.002718,0.002500,0.249988,0,0);-webkit-transform:matrix(0.271796,-0.002718,0.002500,0.249988,0,0);}
.m124_c00310{transform:matrix(0.271816,-0.002718,0.002500,0.249988,0,0);-ms-transform:matrix(0.271816,-0.002718,0.002500,0.249988,0,0);-webkit-transform:matrix(0.271816,-0.002718,0.002500,0.249988,0,0);}
.m123_c00310{transform:matrix(0.271856,-0.002719,0.002500,0.249988,0,0);-ms-transform:matrix(0.271856,-0.002719,0.002500,0.249988,0,0);-webkit-transform:matrix(0.271856,-0.002719,0.002500,0.249988,0,0);}
.med_c00310{transform:matrix(0.271926,-0.002719,0.002500,0.249988,0,0);-ms-transform:matrix(0.271926,-0.002719,0.002500,0.249988,0,0);-webkit-transform:matrix(0.271926,-0.002719,0.002500,0.249988,0,0);}
.m149_c00310{transform:matrix(0.272381,-0.002179,0.002000,0.249992,0,0);-ms-transform:matrix(0.272381,-0.002179,0.002000,0.249992,0,0);-webkit-transform:matrix(0.272381,-0.002179,0.002000,0.249992,0,0);}
.m8a_c00310{transform:matrix(0.272886,-0.002729,0.002500,0.249988,0,0);-ms-transform:matrix(0.272886,-0.002729,0.002500,0.249988,0,0);-webkit-transform:matrix(0.272886,-0.002729,0.002500,0.249988,0,0);}
.md5_c00310{transform:matrix(0.273071,-0.002731,0.002500,0.249988,0,0);-ms-transform:matrix(0.273071,-0.002731,0.002500,0.249988,0,0);-webkit-transform:matrix(0.273071,-0.002731,0.002500,0.249988,0,0);}
.m87_c00310{transform:matrix(0.273436,-0.002734,0.002500,0.249988,0,0);-ms-transform:matrix(0.273436,-0.002734,0.002500,0.249988,0,0);-webkit-transform:matrix(0.273436,-0.002734,0.002500,0.249988,0,0);}
.mdf_c00310{transform:matrix(0.273566,-0.002736,0.002500,0.249988,0,0);-ms-transform:matrix(0.273566,-0.002736,0.002500,0.249988,0,0);-webkit-transform:matrix(0.273566,-0.002736,0.002500,0.249988,0,0);}
.m11c_c00310{transform:matrix(0.273576,-0.002736,0.002500,0.249988,0,0);-ms-transform:matrix(0.273576,-0.002736,0.002500,0.249988,0,0);-webkit-transform:matrix(0.273576,-0.002736,0.002500,0.249988,0,0);}
.m7_c00310{transform:matrix(0.273738,-0.001916,0.001750,0.249994,0,0);-ms-transform:matrix(0.273738,-0.001916,0.001750,0.249994,0,0);-webkit-transform:matrix(0.273738,-0.001916,0.001750,0.249994,0,0);}
.m5a_c00310{transform:matrix(0.273861,-0.002739,0.002500,0.249988,0,0);-ms-transform:matrix(0.273861,-0.002739,0.002500,0.249988,0,0);-webkit-transform:matrix(0.273861,-0.002739,0.002500,0.249988,0,0);}
.mf3_c00310{transform:matrix(0.273976,-0.002740,0.002500,0.249988,0,0);-ms-transform:matrix(0.273976,-0.002740,0.002500,0.249988,0,0);-webkit-transform:matrix(0.273976,-0.002740,0.002500,0.249988,0,0);}
.m11b_c00310{transform:matrix(0.274186,-0.002742,0.002500,0.249988,0,0);-ms-transform:matrix(0.274186,-0.002742,0.002500,0.249988,0,0);-webkit-transform:matrix(0.274186,-0.002742,0.002500,0.249988,0,0);}
.m5b_c00310{transform:matrix(0.274386,-0.002744,0.002500,0.249988,0,0);-ms-transform:matrix(0.274386,-0.002744,0.002500,0.249988,0,0);-webkit-transform:matrix(0.274386,-0.002744,0.002500,0.249988,0,0);}
.m4e_c00310{transform:matrix(0.274524,-0.002471,0.002250,0.249990,0,0);-ms-transform:matrix(0.274524,-0.002471,0.002250,0.249990,0,0);-webkit-transform:matrix(0.274524,-0.002471,0.002250,0.249990,0,0);}
.m128_c00310{transform:matrix(0.274886,-0.002749,0.002500,0.249988,0,0);-ms-transform:matrix(0.274886,-0.002749,0.002500,0.249988,0,0);-webkit-transform:matrix(0.274886,-0.002749,0.002500,0.249988,0,0);}
.mf2_c00310{transform:matrix(0.275246,-0.002752,0.002500,0.249988,0,0);-ms-transform:matrix(0.275246,-0.002752,0.002500,0.249988,0,0);-webkit-transform:matrix(0.275246,-0.002752,0.002500,0.249988,0,0);}
.m9_c00310{transform:matrix(0.275468,-0.001928,0.001750,0.249994,0,0);-ms-transform:matrix(0.275468,-0.001928,0.001750,0.249994,0,0);-webkit-transform:matrix(0.275468,-0.001928,0.001750,0.249994,0,0);}
.md0_c00310{transform:matrix(0.275701,-0.002757,0.002500,0.249988,0,0);-ms-transform:matrix(0.275701,-0.002757,0.002500,0.249988,0,0);-webkit-transform:matrix(0.275701,-0.002757,0.002500,0.249988,0,0);}
.m11a_c00310{transform:matrix(0.276086,-0.002761,0.002500,0.249988,0,0);-ms-transform:matrix(0.276086,-0.002761,0.002500,0.249988,0,0);-webkit-transform:matrix(0.276086,-0.002761,0.002500,0.249988,0,0);}
.m139_c00310{transform:matrix(0.276316,-0.002211,0.002000,0.249992,0,0);-ms-transform:matrix(0.276316,-0.002211,0.002000,0.249992,0,0);-webkit-transform:matrix(0.276316,-0.002211,0.002000,0.249992,0,0);}
.mbd_c00310{transform:matrix(0.276586,-0.002766,0.002500,0.249988,0,0);-ms-transform:matrix(0.276586,-0.002766,0.002500,0.249988,0,0);-webkit-transform:matrix(0.276586,-0.002766,0.002500,0.249988,0,0);}
.m84_c00310{transform:matrix(0.277076,-0.002771,0.002500,0.249988,0,0);-ms-transform:matrix(0.277076,-0.002771,0.002500,0.249988,0,0);-webkit-transform:matrix(0.277076,-0.002771,0.002500,0.249988,0,0);}
.m9a_c00310{transform:matrix(0.277351,-0.002774,0.002500,0.249988,0,0);-ms-transform:matrix(0.277351,-0.002774,0.002500,0.249988,0,0);-webkit-transform:matrix(0.277351,-0.002774,0.002500,0.249988,0,0);}
.mcc_c00310{transform:matrix(0.277496,-0.002775,0.002500,0.249988,0,0);-ms-transform:matrix(0.277496,-0.002775,0.002500,0.249988,0,0);-webkit-transform:matrix(0.277496,-0.002775,0.002500,0.249988,0,0);}
.m9b_c00310{transform:matrix(0.277821,-0.002778,0.002500,0.249988,0,0);-ms-transform:matrix(0.277821,-0.002778,0.002500,0.249988,0,0);-webkit-transform:matrix(0.277821,-0.002778,0.002500,0.249988,0,0);}
.m134_c00310{transform:matrix(0.278221,-0.002226,0.002000,0.249992,0,0);-ms-transform:matrix(0.278221,-0.002226,0.002000,0.249992,0,0);-webkit-transform:matrix(0.278221,-0.002226,0.002000,0.249992,0,0);}
.m114_c00310{transform:matrix(0.278641,-0.002786,0.002500,0.249988,0,0);-ms-transform:matrix(0.278641,-0.002786,0.002500,0.249988,0,0);-webkit-transform:matrix(0.278641,-0.002786,0.002500,0.249988,0,0);}
.m94_c00310{transform:matrix(0.278921,-0.002789,0.002500,0.249988,0,0);-ms-transform:matrix(0.278921,-0.002789,0.002500,0.249988,0,0);-webkit-transform:matrix(0.278921,-0.002789,0.002500,0.249988,0,0);}
.m8b_c00310{transform:matrix(0.279666,-0.002797,0.002500,0.249988,0,0);-ms-transform:matrix(0.279666,-0.002797,0.002500,0.249988,0,0);-webkit-transform:matrix(0.279666,-0.002797,0.002500,0.249988,0,0);}
.m13a_c00310{transform:matrix(0.279911,-0.002239,0.002000,0.249992,0,0);-ms-transform:matrix(0.279911,-0.002239,0.002000,0.249992,0,0);-webkit-transform:matrix(0.279911,-0.002239,0.002000,0.249992,0,0);}
.m82_c00310{transform:matrix(0.280011,-0.002800,0.002500,0.249988,0,0);-ms-transform:matrix(0.280011,-0.002800,0.002500,0.249988,0,0);-webkit-transform:matrix(0.280011,-0.002800,0.002500,0.249988,0,0);}
.m1f_c00310{transform:matrix(0.280798,-0.001966,0.001750,0.249994,0,0);-ms-transform:matrix(0.280798,-0.001966,0.001750,0.249994,0,0);-webkit-transform:matrix(0.280798,-0.001966,0.001750,0.249994,0,0);}
.m8d_c00310{transform:matrix(0.281441,-0.002814,0.002500,0.249988,0,0);-ms-transform:matrix(0.281441,-0.002814,0.002500,0.249988,0,0);-webkit-transform:matrix(0.281441,-0.002814,0.002500,0.249988,0,0);}
.m22_c00310{transform:matrix(0.281718,-0.001972,0.001750,0.249994,0,0);-ms-transform:matrix(0.281718,-0.001972,0.001750,0.249994,0,0);-webkit-transform:matrix(0.281718,-0.001972,0.001750,0.249994,0,0);}
.m89_c00310{transform:matrix(0.285871,-0.002859,0.002500,0.249988,0,0);-ms-transform:matrix(0.285871,-0.002859,0.002500,0.249988,0,0);-webkit-transform:matrix(0.285871,-0.002859,0.002500,0.249988,0,0);}
.m24_c00310{transform:matrix(0.287488,-0.002012,0.001750,0.249994,0,0);-ms-transform:matrix(0.287488,-0.002012,0.001750,0.249994,0,0);-webkit-transform:matrix(0.287488,-0.002012,0.001750,0.249994,0,0);}
.m3_c00310{transform:matrix(0.289643,-0.002028,0.001750,0.249994,0,0);-ms-transform:matrix(0.289643,-0.002028,0.001750,0.249994,0,0);-webkit-transform:matrix(0.289643,-0.002028,0.001750,0.249994,0,0);}
.m90_c00310{transform:matrix(0.289871,-0.002899,0.002500,0.249988,0,0);-ms-transform:matrix(0.289871,-0.002899,0.002500,0.249988,0,0);-webkit-transform:matrix(0.289871,-0.002899,0.002500,0.249988,0,0);}
.m5_c00310{transform:matrix(0.291803,-0.002043,0.001750,0.249994,0,0);-ms-transform:matrix(0.291803,-0.002043,0.001750,0.249994,0,0);-webkit-transform:matrix(0.291803,-0.002043,0.001750,0.249994,0,0);}
.ma_c00310{transform:matrix(0.293183,-0.002052,0.001750,0.249994,0,0);-ms-transform:matrix(0.293183,-0.002052,0.001750,0.249994,0,0);-webkit-transform:matrix(0.293183,-0.002052,0.001750,0.249994,0,0);}
.m1d_c00310{transform:matrix(0.293463,-0.002054,0.001750,0.249994,0,0);-ms-transform:matrix(0.293463,-0.002054,0.001750,0.249994,0,0);-webkit-transform:matrix(0.293463,-0.002054,0.001750,0.249994,0,0);}
.m6_c00310{transform:matrix(0.299823,-0.002099,0.001750,0.249994,0,0);-ms-transform:matrix(0.299823,-0.002099,0.001750,0.249994,0,0);-webkit-transform:matrix(0.299823,-0.002099,0.001750,0.249994,0,0);}
.mc_c00310{transform:matrix(0.300838,-0.002106,0.001750,0.249994,0,0);-ms-transform:matrix(0.300838,-0.002106,0.001750,0.249994,0,0);-webkit-transform:matrix(0.300838,-0.002106,0.001750,0.249994,0,0);}
.m1a_c00310{transform:matrix(0.301838,-0.002113,0.001750,0.249994,0,0);-ms-transform:matrix(0.301838,-0.002113,0.001750,0.249994,0,0);-webkit-transform:matrix(0.301838,-0.002113,0.001750,0.249994,0,0);}
.m1b_c00310{transform:matrix(0.303923,-0.002127,0.001750,0.249994,0,0);-ms-transform:matrix(0.303923,-0.002127,0.001750,0.249994,0,0);-webkit-transform:matrix(0.303923,-0.002127,0.001750,0.249994,0,0);}
.m92_c00310{transform:matrix(0.304465,-0.003045,0.002500,0.249988,0,0);-ms-transform:matrix(0.304465,-0.003045,0.002500,0.249988,0,0);-webkit-transform:matrix(0.304465,-0.003045,0.002500,0.249988,0,0);}
.m77_c00310{transform:matrix(0.313162,-0.002818,0.002250,0.249990,0,0);-ms-transform:matrix(0.313162,-0.002818,0.002250,0.249990,0,0);-webkit-transform:matrix(0.313162,-0.002818,0.002250,0.249990,0,0);}
.m6a_c00310{transform:matrix(0.322177,-0.002900,0.002250,0.249990,0,0);-ms-transform:matrix(0.322177,-0.002900,0.002250,0.249990,0,0);-webkit-transform:matrix(0.322177,-0.002900,0.002250,0.249990,0,0);}
.m62_c00310{transform:matrix(0.377216,-0.003772,0.002500,0.249988,0,0);-ms-transform:matrix(0.377216,-0.003772,0.002500,0.249988,0,0);-webkit-transform:matrix(0.377216,-0.003772,0.002500,0.249988,0,0);}
.m11d_c00310{transform:matrix(0.464802,-0.004648,0.002500,0.249988,0,0);-ms-transform:matrix(0.464802,-0.004648,0.002500,0.249988,0,0);-webkit-transform:matrix(0.464802,-0.004648,0.002500,0.249988,0,0);}
.m14b_c00310{transform:matrix(3.673485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.673485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.673485,0.000000,0.000000,0.250000,0,0);}
.v0_c00310{vertical-align:0.000000px;}
.ls0_c00310{letter-spacing:0.000000px;}
.sc__c00310{text-shadow:none;}
.sc0_c00310{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__c00310{-webkit-text-stroke:0px transparent;}
.sc0_c00310{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00310{word-spacing:0.000000px;}
.fc0_c00310{color:transparent;}
.fse_c00310{font-size:18.000000px;}
.fs1_c00310{font-size:66.001617px;}
.fs9_c00310{font-size:66.003300px;}
.fs8_c00310{font-size:72.000000px;}
.fs2_c00310{font-size:72.001764px;}
.fsd_c00310{font-size:72.002304px;}
.fs6_c00310{font-size:72.002916px;}
.fs7_c00310{font-size:72.003600px;}
.fs0_c00310{font-size:78.000000px;}
.fs4_c00310{font-size:78.003159px;}
.fsb_c00310{font-size:78.003900px;}
.fs3_c00310{font-size:84.002058px;}
.fs5_c00310{font-size:84.003402px;}
.fsc_c00310{font-size:84.004200px;}
.fsa_c00310{font-size:90.004500px;}
.fsf_c00310{font-size:90.008820px;}
.y0_c00310{bottom:0.000000px;}
.y163_c00310{bottom:97.473000px;}
.y164_c00310{bottom:98.039412px;}
.y165_c00310{bottom:99.128325px;}
.y166_c00310{bottom:100.197750px;}
.y167_c00310{bottom:100.540113px;}
.y168_c00310{bottom:100.817922px;}
.y169_c00310{bottom:101.275050px;}
.y16a_c00310{bottom:101.566194px;}
.y16b_c00310{bottom:102.057867px;}
.y16c_c00310{bottom:102.953895px;}
.y16d_c00310{bottom:103.751139px;}
.y162_c00310{bottom:123.511500px;}
.y156_c00310{bottom:141.481500px;}
.y157_c00310{bottom:141.747168px;}
.y158_c00310{bottom:142.015032px;}
.y159_c00310{bottom:142.457712px;}
.y15a_c00310{bottom:143.064636px;}
.y15b_c00310{bottom:143.246352px;}
.y15c_c00310{bottom:143.851116px;}
.y15d_c00310{bottom:144.294000px;}
.y15e_c00310{bottom:144.814596px;}
.y15f_c00310{bottom:145.088808px;}
.y160_c00310{bottom:145.527372px;}
.y161_c00310{bottom:146.406516px;}
.y14b_c00310{bottom:173.071500px;}
.y14c_c00310{bottom:174.125388px;}
.y14d_c00310{bottom:174.388956px;}
.y14e_c00310{bottom:174.562032px;}
.y14f_c00310{bottom:175.367640px;}
.y150_c00310{bottom:175.618308px;}
.y151_c00310{bottom:176.491020px;}
.y152_c00310{bottom:177.376344px;}
.y153_c00310{bottom:177.639876px;}
.y154_c00310{bottom:177.994248px;}
.y155_c00310{bottom:178.257864px;}
.y13d_c00310{bottom:204.898905px;}
.y13e_c00310{bottom:205.339890px;}
.y13f_c00310{bottom:205.528665px;}
.y140_c00310{bottom:206.578080px;}
.y141_c00310{bottom:206.744355px;}
.y142_c00310{bottom:207.182565px;}
.y143_c00310{bottom:207.372435px;}
.y144_c00310{bottom:207.800340px;}
.y145_c00310{bottom:207.975555px;}
.y146_c00310{bottom:208.320600px;}
.y147_c00310{bottom:208.593615px;}
.y148_c00310{bottom:209.285985px;}
.y149_c00310{bottom:209.469000px;}
.y14a_c00310{bottom:210.089445px;}
.y130_c00310{bottom:234.872430px;}
.y131_c00310{bottom:235.411650px;}
.y132_c00310{bottom:235.757310px;}
.y133_c00310{bottom:236.626500px;}
.y134_c00310{bottom:236.948190px;}
.y135_c00310{bottom:237.711840px;}
.y136_c00310{bottom:237.938925px;}
.y137_c00310{bottom:238.697775px;}
.y138_c00310{bottom:239.038770px;}
.y139_c00310{bottom:239.688705px;}
.y13a_c00310{bottom:240.136800px;}
.y13b_c00310{bottom:241.119720px;}
.y13c_c00310{bottom:241.548975px;}
.y125_c00310{bottom:266.733570px;}
.y126_c00310{bottom:267.176355px;}
.y127_c00310{bottom:267.508485px;}
.y128_c00310{bottom:267.827445px;}
.y129_c00310{bottom:268.494450px;}
.y12a_c00310{bottom:269.363490px;}
.y12b_c00310{bottom:269.809425px;}
.y12c_c00310{bottom:270.346650px;}
.y12d_c00310{bottom:270.900345px;}
.y12e_c00310{bottom:271.988385px;}
.y12f_c00310{bottom:272.879400px;}
.y119_c00310{bottom:299.136630px;}
.y11a_c00310{bottom:299.539770px;}
.y11b_c00310{bottom:299.744370px;}
.y11c_c00310{bottom:300.037905px;}
.y11d_c00310{bottom:300.616290px;}
.y11e_c00310{bottom:300.924630px;}
.y11f_c00310{bottom:301.310580px;}
.y120_c00310{bottom:301.998195px;}
.y121_c00310{bottom:302.697570px;}
.y122_c00310{bottom:303.094515px;}
.y123_c00310{bottom:304.073115px;}
.y124_c00310{bottom:304.378905px;}
.y10d_c00310{bottom:331.539480px;}
.y10e_c00310{bottom:332.025630px;}
.y10f_c00310{bottom:332.715900px;}
.y110_c00310{bottom:333.211305px;}
.y111_c00310{bottom:333.801405px;}
.y112_c00310{bottom:334.097760px;}
.y113_c00310{bottom:334.494360px;}
.y114_c00310{bottom:335.380695px;}
.y115_c00310{bottom:335.876310px;}
.y116_c00310{bottom:336.182070px;}
.y117_c00310{bottom:336.874740px;}
.y118_c00310{bottom:337.263585px;}
.y102_c00310{bottom:362.051715px;}
.y103_c00310{bottom:362.781555px;}
.y104_c00310{bottom:363.132285px;}
.y105_c00310{bottom:364.694895px;}
.y106_c00310{bottom:365.069520px;}
.y107_c00310{bottom:365.426505px;}
.y108_c00310{bottom:366.020355px;}
.y109_c00310{bottom:366.382800px;}
.y10a_c00310{bottom:366.997665px;}
.y10b_c00310{bottom:368.191035px;}
.y10c_c00310{bottom:369.152835px;}
.yf5_c00310{bottom:393.643320px;}
.yf6_c00310{bottom:394.011540px;}
.yf7_c00310{bottom:394.983030px;}
.yf8_c00310{bottom:395.823195px;}
.yf9_c00310{bottom:396.072900px;}
.yfa_c00310{bottom:396.553560px;}
.yfb_c00310{bottom:397.145130px;}
.yfc_c00310{bottom:397.759560px;}
.yfd_c00310{bottom:398.109795px;}
.yfe_c00310{bottom:398.587935px;}
.yff_c00310{bottom:399.690375px;}
.y100_c00310{bottom:400.892925px;}
.y101_c00310{bottom:401.240745px;}
.ye6_c00310{bottom:425.236575px;}
.ye7_c00310{bottom:425.615910px;}
.ye8_c00310{bottom:426.014085px;}
.ye9_c00310{bottom:426.814080px;}
.yea_c00310{bottom:427.076400px;}
.yeb_c00310{bottom:427.586220px;}
.yec_c00310{bottom:428.767890px;}
.yed_c00310{bottom:429.309015px;}
.yee_c00310{bottom:429.706965px;}
.yef_c00310{bottom:430.352610px;}
.yf0_c00310{bottom:430.876680px;}
.yf1_c00310{bottom:431.269425px;}
.yf2_c00310{bottom:431.677590px;}
.yf3_c00310{bottom:432.730455px;}
.yf4_c00310{bottom:433.118640px;}
.yd8_c00310{bottom:457.639395px;}
.yd9_c00310{bottom:458.019945px;}
.yda_c00310{bottom:458.872980px;}
.ydb_c00310{bottom:459.823515px;}
.ydc_c00310{bottom:460.082490px;}
.ydd_c00310{bottom:460.780245px;}
.yde_c00310{bottom:461.270865px;}
.ydf_c00310{bottom:461.870355px;}
.ye0_c00310{bottom:462.718710px;}
.ye1_c00310{bottom:462.956085px;}
.ye2_c00310{bottom:463.549845px;}
.ye3_c00310{bottom:464.051355px;}
.ye4_c00310{bottom:464.401230px;}
.ye5_c00310{bottom:464.885250px;}
.yca_c00310{bottom:489.231330px;}
.ycb_c00310{bottom:489.881700px;}
.ycc_c00310{bottom:490.111275px;}
.ycd_c00310{bottom:490.869960px;}
.yce_c00310{bottom:491.202390px;}
.ycf_c00310{bottom:491.526480px;}
.yd0_c00310{bottom:491.858595px;}
.yd1_c00310{bottom:492.841125px;}
.yd2_c00310{bottom:493.289550px;}
.yd3_c00310{bottom:493.605570px;}
.yd4_c00310{bottom:494.045670px;}
.yd5_c00310{bottom:495.030900px;}
.yd6_c00310{bottom:495.252345px;}
.yd7_c00310{bottom:495.700905px;}
.ybd_c00310{bottom:521.094060px;}
.ybe_c00310{bottom:521.683815px;}
.ybf_c00310{bottom:521.890830px;}
.yc0_c00310{bottom:522.289050px;}
.yc1_c00310{bottom:523.470750px;}
.yc2_c00310{bottom:524.158155px;}
.yc3_c00310{bottom:524.555955px;}
.yc4_c00310{bottom:524.849865px;}
.yc5_c00310{bottom:525.134370px;}
.yc6_c00310{bottom:525.736395px;}
.yc7_c00310{bottom:526.027455px;}
.yc8_c00310{bottom:526.442715px;}
.yc9_c00310{bottom:527.111685px;}
.yb2_c00310{bottom:552.145005px;}
.yb3_c00310{bottom:552.456195px;}
.yb4_c00310{bottom:553.165305px;}
.yb5_c00310{bottom:553.734000px;}
.yb6_c00310{bottom:554.910000px;}
.yb7_c00310{bottom:555.109200px;}
.yb8_c00310{bottom:556.105155px;}
.yb9_c00310{bottom:556.792755px;}
.yba_c00310{bottom:557.082645px;}
.ybb_c00310{bottom:557.491230px;}
.ybc_c00310{bottom:558.077505px;}
.ya5_c00310{bottom:583.466520px;}
.ya6_c00310{bottom:583.992120px;}
.ya7_c00310{bottom:584.434665px;}
.ya8_c00310{bottom:585.054870px;}
.ya9_c00310{bottom:585.402855px;}
.yaa_c00310{bottom:586.102125px;}
.yab_c00310{bottom:586.810485px;}
.yac_c00310{bottom:587.164815px;}
.yad_c00310{bottom:587.428425px;}
.yae_c00310{bottom:587.688015px;}
.yaf_c00310{bottom:588.123915px;}
.yb0_c00310{bottom:588.380745px;}
.yb1_c00310{bottom:588.745590px;}
.y98_c00310{bottom:615.328500px;}
.y99_c00310{bottom:615.666090px;}
.y9a_c00310{bottom:616.424265px;}
.y9b_c00310{bottom:616.643415px;}
.y9c_c00310{bottom:616.986270px;}
.y9d_c00310{bottom:617.310330px;}
.y9e_c00310{bottom:618.398160px;}
.y9f_c00310{bottom:619.389030px;}
.ya0_c00310{bottom:619.610790px;}
.ya1_c00310{bottom:619.940235px;}
.ya2_c00310{bottom:620.707020px;}
.ya3_c00310{bottom:621.047370px;}
.ya4_c00310{bottom:621.692775px;}
.y8a_c00310{bottom:646.919280px;}
.y8b_c00310{bottom:647.151630px;}
.y8c_c00310{bottom:647.581065px;}
.y8d_c00310{bottom:648.347550px;}
.y8e_c00310{bottom:648.582705px;}
.y8f_c00310{bottom:649.335690px;}
.y90_c00310{bottom:649.557450px;}
.y91_c00310{bottom:650.221320px;}
.y92_c00310{bottom:650.443035px;}
.y93_c00310{bottom:650.993865px;}
.y94_c00310{bottom:651.863085px;}
.y95_c00310{bottom:652.087665px;}
.y96_c00310{bottom:653.281065px;}
.y97_c00310{bottom:653.626620px;}
.y7f_c00310{bottom:678.781500px;}
.y80_c00310{bottom:679.221630px;}
.y81_c00310{bottom:679.659225px;}
.y82_c00310{bottom:680.431245px;}
.y83_c00310{bottom:680.747460px;}
.y84_c00310{bottom:681.090255px;}
.y85_c00310{bottom:681.735795px;}
.y86_c00310{bottom:683.053140px;}
.y87_c00310{bottom:683.280360px;}
.y88_c00310{bottom:684.473400px;}
.y89_c00310{bottom:684.919200px;}
.y73_c00310{bottom:710.639453px;}
.y74_c00310{bottom:711.065635px;}
.y75_c00310{bottom:711.413686px;}
.y76_c00310{bottom:712.169127px;}
.y77_c00310{bottom:712.933263px;}
.y78_c00310{bottom:713.484483px;}
.y79_c00310{bottom:713.929083px;}
.y7a_c00310{bottom:714.479061px;}
.y7b_c00310{bottom:714.925403px;}
.y7c_c00310{bottom:715.689484px;}
.y7d_c00310{bottom:716.675219px;}
.y7e_c00310{bottom:716.888593px;}
.y69_c00310{bottom:743.041500px;}
.y6a_c00310{bottom:743.734050px;}
.y6b_c00310{bottom:744.040189px;}
.y6c_c00310{bottom:744.327618px;}
.y6d_c00310{bottom:745.029132px;}
.y6e_c00310{bottom:745.719077px;}
.y6f_c00310{bottom:745.908724px;}
.y70_c00310{bottom:746.698448px;}
.y71_c00310{bottom:746.898005px;}
.y72_c00310{bottom:747.294216px;}
.y68_c00310{bottom:748.557000px;}
.y5d_c00310{bottom:774.629610px;}
.y5e_c00310{bottom:775.744950px;}
.y5f_c00310{bottom:776.716905px;}
.y60_c00310{bottom:777.057195px;}
.y61_c00310{bottom:777.815940px;}
.y62_c00310{bottom:778.582755px;}
.y63_c00310{bottom:779.241630px;}
.y64_c00310{bottom:780.005715px;}
.y65_c00310{bottom:780.348540px;}
.y66_c00310{bottom:780.587475px;}
.y67_c00310{bottom:781.007325px;}
.y53_c00310{bottom:808.111500px;}
.y54_c00310{bottom:808.316670px;}
.y55_c00310{bottom:808.972710px;}
.y56_c00310{bottom:809.855535px;}
.y57_c00310{bottom:810.390210px;}
.y58_c00310{bottom:811.049190px;}
.y59_c00310{bottom:811.815735px;}
.y5a_c00310{bottom:812.363835px;}
.y5b_c00310{bottom:812.709855px;}
.y5c_c00310{bottom:813.676440px;}
.y4d_c00310{bottom:838.616749px;}
.y4e_c00310{bottom:839.401721px;}
.y4f_c00310{bottom:839.895037px;}
.y50_c00310{bottom:840.293450px;}
.y51_c00310{bottom:840.577881px;}
.y52_c00310{bottom:841.370034px;}
.y41_c00310{bottom:869.399592px;}
.y42_c00310{bottom:869.948450px;}
.y43_c00310{bottom:870.820326px;}
.y44_c00310{bottom:871.705636px;}
.y45_c00310{bottom:872.035110px;}
.y46_c00310{bottom:872.685524px;}
.y47_c00310{bottom:873.351558px;}
.y48_c00310{bottom:874.228294px;}
.y49_c00310{bottom:874.658461px;}
.y4a_c00310{bottom:874.999047px;}
.y4b_c00310{bottom:875.331167px;}
.y4c_c00310{bottom:875.980932px;}
.y36_c00310{bottom:901.259707px;}
.y37_c00310{bottom:901.918790px;}
.y38_c00310{bottom:902.912030px;}
.y39_c00310{bottom:903.463317px;}
.y3a_c00310{bottom:903.792885px;}
.y3b_c00310{bottom:904.886657px;}
.y3c_c00310{bottom:905.998816px;}
.y3d_c00310{bottom:906.856773px;}
.y3e_c00310{bottom:907.300495px;}
.y3f_c00310{bottom:907.624893px;}
.y40_c00310{bottom:907.952301px;}
.y2b_c00310{bottom:934.471500px;}
.y2c_c00310{bottom:935.045155px;}
.y2d_c00310{bottom:935.538378px;}
.y2e_c00310{bottom:936.340265px;}
.y2f_c00310{bottom:936.641598px;}
.y30_c00310{bottom:936.823902px;}
.y31_c00310{bottom:937.134996px;}
.y32_c00310{bottom:937.907750px;}
.y33_c00310{bottom:938.226134px;}
.y34_c00310{bottom:938.714455px;}
.y35_c00310{bottom:939.387390px;}
.y26_c00310{bottom:963.898269px;}
.y27_c00310{bottom:964.363260px;}
.y28_c00310{bottom:964.824840px;}
.y29_c00310{bottom:965.614119px;}
.y2a_c00310{bottom:966.715176px;}
.y1b_c00310{bottom:995.218777px;}
.y1c_c00310{bottom:996.325272px;}
.y1d_c00310{bottom:997.631259px;}
.y1e_c00310{bottom:997.852480px;}
.y1f_c00310{bottom:998.832361px;}
.y20_c00310{bottom:999.062074px;}
.y21_c00310{bottom:999.707484px;}
.y22_c00310{bottom:1000.052736px;}
.y23_c00310{bottom:1000.598131px;}
.y24_c00310{bottom:1001.367813px;}
.y25_c00310{bottom:1001.702715px;}
.ye_c00310{bottom:1027.079085px;}
.yf_c00310{bottom:1027.408801px;}
.y10_c00310{bottom:1028.164512px;}
.y11_c00310{bottom:1028.504715px;}
.y12_c00310{bottom:1029.046374px;}
.y13_c00310{bottom:1029.484743px;}
.y14_c00310{bottom:1029.819718px;}
.y15_c00310{bottom:1030.575366px;}
.y16_c00310{bottom:1030.918906px;}
.y17_c00310{bottom:1031.467534px;}
.y18_c00310{bottom:1032.233878px;}
.y19_c00310{bottom:1032.899956px;}
.y1a_c00310{bottom:1033.219229px;}
.y2_c00310{bottom:1059.480000px;}
.y3_c00310{bottom:1059.712291px;}
.y4_c00310{bottom:1059.871303px;}
.y5_c00310{bottom:1060.477815px;}
.y6_c00310{bottom:1060.632921px;}
.y7_c00310{bottom:1061.169838px;}
.y8_c00310{bottom:1061.937136px;}
.y9_c00310{bottom:1062.320670px;}
.ya_c00310{bottom:1062.628719px;}
.yb_c00310{bottom:1063.022059px;}
.yc_c00310{bottom:1063.632477px;}
.yd_c00310{bottom:1063.859140px;}
.y1_c00310{bottom:1119.820500px;}
.h10_c00310{height:18.000000px;}
.h3_c00310{height:66.001617px;}
.hb_c00310{height:66.003300px;}
.ha_c00310{height:72.000000px;}
.h4_c00310{height:72.001764px;}
.hf_c00310{height:72.002304px;}
.h8_c00310{height:72.002916px;}
.h9_c00310{height:72.003600px;}
.h2_c00310{height:78.000000px;}
.h6_c00310{height:78.003159px;}
.hd_c00310{height:78.003900px;}
.h5_c00310{height:84.002058px;}
.h7_c00310{height:84.003402px;}
.he_c00310{height:84.004200px;}
.hc_c00310{height:90.004500px;}
.h11_c00310{height:90.008820px;}
.h1_c00310{height:1165.500000px;}
.h0_c00310{height:1165.800000px;}
.w0_c00310{width:915.000000px;}
.x0_c00310{left:0.000000px;}
.x2_c00310{left:146.164500px;}
.xe_c00310{left:147.546363px;}
.x36_c00310{left:148.907180px;}
.x59_c00310{left:150.773181px;}
.x84_c00310{left:152.137800px;}
.x8c_c00310{left:153.233505px;}
.x98_c00310{left:154.297995px;}
.xc6_c00310{left:155.632500px;}
.xed_c00310{left:156.870000px;}
.xee_c00310{left:160.636500px;}
.x68_c00310{left:173.736510px;}
.x3_c00310{left:179.349000px;}
.xf_c00310{left:180.505170px;}
.x71_c00310{left:185.098470px;}
.x92_c00310{left:186.460410px;}
.xe7_c00310{left:189.648000px;}
.x5a_c00310{left:193.459803px;}
.x62_c00310{left:195.318000px;}
.xbd_c00310{left:199.078815px;}
.x4_c00310{left:202.065000px;}
.x37_c00310{left:203.724180px;}
.xb3_c00310{left:208.840965px;}
.xcf_c00310{left:210.209145px;}
.x20_c00310{left:212.950326px;}
.x69_c00310{left:216.680010px;}
.x85_c00310{left:217.713960px;}
.x99_c00310{left:219.147705px;}
.xaa_c00310{left:220.977150px;}
.xe8_c00310{left:223.131000px;}
.x54_c00310{left:226.659000px;}
.x5b_c00310{left:228.298492px;}
.xc7_c00310{left:233.124000px;}
.xd8_c00310{left:234.211845px;}
.x41_c00310{left:236.920767px;}
.x63_c00310{left:239.077500px;}
.x86_c00310{left:240.665685px;}
.xd0_c00310{left:244.775145px;}
.xab_c00310{left:252.899835px;}
.xbe_c00310{left:254.442870px;}
.x10_c00310{left:256.105085px;}
.x19_c00310{left:258.008042px;}
.x23_c00310{left:259.042500px;}
.x45_c00310{left:261.231000px;}
.x80_c00310{left:264.752880px;}
.x21_c00310{left:269.344565px;}
.x78_c00310{left:272.276970px;}
.xa3_c00310{left:274.758045px;}
.xe9_c00310{left:278.466000px;}
.x46_c00310{left:281.748000px;}
.x72_c00310{left:282.830970px;}
.x87_c00310{left:284.988135px;}
.x5_c00310{left:288.709500px;}
.x11_c00310{left:290.133371px;}
.x42_c00310{left:291.733767px;}
.x6a_c00310{left:293.328510px;}
.x5c_c00310{left:303.902317px;}
.x9a_c00310{left:307.677435px;}
.x6_c00310{left:310.867500px;}
.x2d_c00310{left:313.056387px;}
.x64_c00310{left:316.279500px;}
.xbf_c00310{left:318.732015px;}
.xe2_c00310{left:321.124500px;}
.x24_c00310{left:322.782000px;}
.x81_c00310{left:327.923010px;}
.xc8_c00310{left:331.720500px;}
.x43_c00310{left:336.001767px;}
.xb4_c00310{left:340.609785px;}
.xe3_c00310{left:342.759000px;}
.x12_c00310{left:344.369237px;}
.x22_c00310{left:347.991711px;}
.x73_c00310{left:349.522470px;}
.xa4_c00310{left:351.123780px;}
.xc0_c00310{left:353.016360px;}
.xea_c00310{left:354.331500px;}
.x4b_c00310{left:357.895080px;}
.xd1_c00310{left:363.863145px;}
.xd9_c00310{left:365.405970px;}
.x2e_c00310{left:368.143388px;}
.x55_c00310{left:370.557000px;}
.x93_c00310{left:373.813020px;}
.x25_c00310{left:377.584500px;}
.x38_c00310{left:379.465601px;}
.x65_c00310{left:382.180500px;}
.xda_c00310{left:386.233890px;}
.x7_c00310{left:387.570000px;}
.x1a_c00310{left:388.646301px;}
.x4c_c00310{left:391.924080px;}
.x79_c00310{left:393.248385px;}
.xac_c00310{left:394.909410px;}
.xc1_c00310{left:395.961795px;}
.x1_c00310{left:398.790000px;}
.x2f_c00310{left:401.095091px;}
.xb5_c00310{left:406.220445px;}
.x1b_c00310{left:410.820339px;}
.x39_c00310{left:412.406804px;}
.x6b_c00310{left:414.318510px;}
.x88_c00310{left:416.209440px;}
.xa5_c00310{left:417.559620px;}
.xc9_c00310{left:418.624500px;}
.x13_c00310{left:421.631109px;}
.xad_c00310{left:428.921565px;}
.xef_c00310{left:432.211500px;}
.x47_c00310{left:435.634500px;}
.x94_c00310{left:437.287890px;}
.xb6_c00310{left:439.156275px;}
.xd2_c00310{left:440.228145px;}
.xe4_c00310{left:443.460000px;}
.x56_c00310{left:447.217500px;}
.x9b_c00310{left:448.623615px;}
.xeb_c00310{left:452.641500px;}
.x44_c00310{left:455.622267px;}
.x74_c00310{left:458.305470px;}
.xae_c00310{left:461.319735px;}
.xca_c00310{left:463.218000px;}
.xdb_c00310{left:464.793465px;}
.x26_c00310{left:466.683000px;}
.x4d_c00310{left:467.798580px;}
.xa6_c00310{left:471.316080px;}
.xc2_c00310{left:472.374060px;}
.xe5_c00310{left:474.793500px;}
.x3a_c00310{left:477.507723px;}
.x5d_c00310{left:479.784724px;}
.x95_c00310{left:481.849440px;}
.xb7_c00310{left:483.166710px;}
.x48_c00310{left:489.102000px;}
.x89_c00310{left:492.600705px;}
.x9c_c00310{left:493.735215px;}
.x8_c00310{left:497.184000px;}
.x27_c00310{left:500.164500px;}
.x6c_c00310{left:502.877010px;}
.x1c_c00310{left:508.801281px;}
.x30_c00310{left:510.457605px;}
.x8d_c00310{left:514.213005px;}
.xaf_c00310{left:515.304195px;}
.xcb_c00310{left:516.940500px;}
.xdc_c00310{left:518.235030px;}
.x28_c00310{left:520.420500px;}
.x9d_c00310{left:526.929555px;}
.x14_c00310{left:531.512799px;}
.x5e_c00310{left:534.726225px;}
.x8a_c00310{left:536.881155px;}
.xd3_c00310{left:538.821645px;}
.xdd_c00310{left:540.106965px;}
.x3b_c00310{left:544.177629px;}
.xb0_c00310{left:548.248365px;}
.xc3_c00310{left:550.112340px;}
.x9_c00310{left:551.974500px;}
.x29_c00310{left:554.986500px;}
.x57_c00310{left:556.036500px;}
.x6d_c00310{left:557.960010px;}
.x8e_c00310{left:559.055505px;}
.x7a_c00310{left:569.264910px;}
.xcc_c00310{left:572.310000px;}
.x58_c00310{left:578.209500px;}
.x5f_c00310{left:579.319320px;}
.x9e_c00310{left:580.692975px;}
.xb8_c00310{left:581.701200px;}
.xde_c00310{left:583.312335px;}
.x15_c00310{left:586.315644px;}
.x82_c00310{left:591.441150px;}
.xc4_c00310{left:594.157275px;}
.xa_c00310{left:595.981500px;}
.x66_c00310{left:601.191000px;}
.xa7_c00310{left:602.545275px;}
.xb1_c00310{left:604.184310px;}
.xec_c00310{left:607.353000px;}
.xf0_c00310{left:609.075000px;}
.x4e_c00310{left:610.367580px;}
.x75_c00310{left:612.512970px;}
.x7b_c00310{left:613.548795px;}
.xdf_c00310{left:617.364510px;}
.x31_c00310{left:621.696606px;}
.x9f_c00310{left:624.399105px;}
.x1d_c00310{left:630.852219px;}
.x3c_c00310{left:631.925346px;}
.x8f_c00310{left:634.667505px;}
.xb9_c00310{left:636.813255px;}
.xd4_c00310{left:637.914645px;}
.x2a_c00310{left:640.848000px;}
.x6e_c00310{left:644.882010px;}
.x7c_c00310{left:646.510455px;}
.xb_c00310{left:652.173000px;}
.x51_c00310{left:655.290000px;}
.xa0_c00310{left:657.072945px;}
.x16_c00310{left:663.006038px;}
.x6f_c00310{left:667.340010px;}
.xba_c00310{left:670.839600px;}
.x3d_c00310{left:674.887955px;}
.x2b_c00310{left:676.224000px;}
.x7d_c00310{left:678.920100px;}
.xcd_c00310{left:681.114000px;}
.xd5_c00310{left:682.724145px;}
.x1e_c00310{left:685.407575px;}
.x49_c00310{left:686.464500px;}
.x52_c00310{left:687.690000px;}
.x76_c00310{left:689.191470px;}
.xa1_c00310{left:691.138770px;}
.xe6_c00310{left:694.548000px;}
.x83_c00310{left:699.991230px;}
.xa8_c00310{left:702.738270px;}
.xe0_c00310{left:704.003250px;}
.x32_c00310{left:707.524337px;}
.x3e_c00310{left:708.897144px;}
.xb2_c00310{left:712.720230px;}
.x4a_c00310{left:721.066500px;}
.x77_c00310{left:723.226470px;}
.xe1_c00310{left:726.955215px;}
.x17_c00310{left:729.658641px;}
.x7e_c00310{left:733.461195px;}
.x96_c00310{left:734.845935px;}
.xc5_c00310{left:736.997715px;}
.xc_c00310{left:739.375500px;}
.x3f_c00310{left:742.132347px;}
.x4f_c00310{left:744.952080px;}
.x8b_c00310{left:746.709270px;}
.xbb_c00310{left:747.757365px;}
.x33_c00310{left:751.826432px;}
.x60_c00310{left:754.241740px;}
.x90_c00310{left:755.335005px;}
.x18_c00310{left:761.553969px;}
.x67_c00310{left:765.075000px;}
.x97_c00310{left:766.683120px;}
.xce_c00310{left:770.215500px;}
.xd_c00310{left:771.756000px;}
.x61_c00310{left:775.616552px;}
.x53_c00310{left:776.790000px;}
.xa2_c00310{left:778.873515px;}
.xd6_c00310{left:781.016145px;}
.x34_c00310{left:784.203635px;}
.x50_c00310{left:786.937080px;}
.xbc_c00310{left:790.992300px;}
.x1f_c00310{left:795.845754px;}
.x91_c00310{left:800.191005px;}
.x2c_c00310{left:805.252500px;}
.x40_c00310{left:807.161267px;}
.x7f_c00310{left:811.230255px;}
.x35_c00310{left:816.915338px;}
.x70_c00310{left:821.235510px;}
.xd7_c00310{left:823.941645px;}
.xa9_c00310{left:843.673860px;}
@media print{
.v0_c00310{vertical-align:0.000000pt;}
.ls0_c00310{letter-spacing:0.000000pt;}
.ws0_c00310{word-spacing:0.000000pt;}
.fse_c00310{font-size:16.000000pt;}
.fs1_c00310{font-size:58.668104pt;}
.fs9_c00310{font-size:58.669600pt;}
.fs8_c00310{font-size:64.000000pt;}
.fs2_c00310{font-size:64.001568pt;}
.fsd_c00310{font-size:64.002048pt;}
.fs6_c00310{font-size:64.002592pt;}
.fs7_c00310{font-size:64.003200pt;}
.fs0_c00310{font-size:69.333333pt;}
.fs4_c00310{font-size:69.336141pt;}
.fsb_c00310{font-size:69.336800pt;}
.fs3_c00310{font-size:74.668496pt;}
.fs5_c00310{font-size:74.669691pt;}
.fsc_c00310{font-size:74.670400pt;}
.fsa_c00310{font-size:80.004000pt;}
.fsf_c00310{font-size:80.007840pt;}
.y0_c00310{bottom:0.000000pt;}
.y163_c00310{bottom:86.642667pt;}
.y164_c00310{bottom:87.146144pt;}
.y165_c00310{bottom:88.114067pt;}
.y166_c00310{bottom:89.064667pt;}
.y167_c00310{bottom:89.368989pt;}
.y168_c00310{bottom:89.615931pt;}
.y169_c00310{bottom:90.022267pt;}
.y16a_c00310{bottom:90.281061pt;}
.y16b_c00310{bottom:90.718104pt;}
.y16c_c00310{bottom:91.514573pt;}
.y16d_c00310{bottom:92.223235pt;}
.y162_c00310{bottom:109.788000pt;}
.y156_c00310{bottom:125.761333pt;}
.y157_c00310{bottom:125.997483pt;}
.y158_c00310{bottom:126.235584pt;}
.y159_c00310{bottom:126.629077pt;}
.y15a_c00310{bottom:127.168565pt;}
.y15b_c00310{bottom:127.330091pt;}
.y15c_c00310{bottom:127.867659pt;}
.y15d_c00310{bottom:128.261333pt;}
.y15e_c00310{bottom:128.724085pt;}
.y15f_c00310{bottom:128.967829pt;}
.y160_c00310{bottom:129.357664pt;}
.y161_c00310{bottom:130.139125pt;}
.y14b_c00310{bottom:153.841333pt;}
.y14c_c00310{bottom:154.778123pt;}
.y14d_c00310{bottom:155.012405pt;}
.y14e_c00310{bottom:155.166251pt;}
.y14f_c00310{bottom:155.882347pt;}
.y150_c00310{bottom:156.105163pt;}
.y151_c00310{bottom:156.880907pt;}
.y152_c00310{bottom:157.667861pt;}
.y153_c00310{bottom:157.902112pt;}
.y154_c00310{bottom:158.217109pt;}
.y155_c00310{bottom:158.451435pt;}
.y13d_c00310{bottom:182.132360pt;}
.y13e_c00310{bottom:182.524347pt;}
.y13f_c00310{bottom:182.692147pt;}
.y140_c00310{bottom:183.624960pt;}
.y141_c00310{bottom:183.772760pt;}
.y142_c00310{bottom:184.162280pt;}
.y143_c00310{bottom:184.331053pt;}
.y144_c00310{bottom:184.711413pt;}
.y145_c00310{bottom:184.867160pt;}
.y146_c00310{bottom:185.173867pt;}
.y147_c00310{bottom:185.416547pt;}
.y148_c00310{bottom:186.031987pt;}
.y149_c00310{bottom:186.194667pt;}
.y14a_c00310{bottom:186.746173pt;}
.y130_c00310{bottom:208.775493pt;}
.y131_c00310{bottom:209.254800pt;}
.y132_c00310{bottom:209.562053pt;}
.y133_c00310{bottom:210.334667pt;}
.y134_c00310{bottom:210.620613pt;}
.y135_c00310{bottom:211.299413pt;}
.y136_c00310{bottom:211.501267pt;}
.y137_c00310{bottom:212.175800pt;}
.y138_c00310{bottom:212.478907pt;}
.y139_c00310{bottom:213.056627pt;}
.y13a_c00310{bottom:213.454933pt;}
.y13b_c00310{bottom:214.328640pt;}
.y13c_c00310{bottom:214.710200pt;}
.y125_c00310{bottom:237.096507pt;}
.y126_c00310{bottom:237.490093pt;}
.y127_c00310{bottom:237.785320pt;}
.y128_c00310{bottom:238.068840pt;}
.y129_c00310{bottom:238.661733pt;}
.y12a_c00310{bottom:239.434213pt;}
.y12b_c00310{bottom:239.830600pt;}
.y12c_c00310{bottom:240.308133pt;}
.y12d_c00310{bottom:240.800307pt;}
.y12e_c00310{bottom:241.767453pt;}
.y12f_c00310{bottom:242.559467pt;}
.y119_c00310{bottom:265.899227pt;}
.y11a_c00310{bottom:266.257573pt;}
.y11b_c00310{bottom:266.439440pt;}
.y11c_c00310{bottom:266.700360pt;}
.y11d_c00310{bottom:267.214480pt;}
.y11e_c00310{bottom:267.488560pt;}
.y11f_c00310{bottom:267.831627pt;}
.y120_c00310{bottom:268.442840pt;}
.y121_c00310{bottom:269.064507pt;}
.y122_c00310{bottom:269.417347pt;}
.y123_c00310{bottom:270.287213pt;}
.y124_c00310{bottom:270.559027pt;}
.y10d_c00310{bottom:294.701760pt;}
.y10e_c00310{bottom:295.133893pt;}
.y10f_c00310{bottom:295.747467pt;}
.y110_c00310{bottom:296.187827pt;}
.y111_c00310{bottom:296.712360pt;}
.y112_c00310{bottom:296.975787pt;}
.y113_c00310{bottom:297.328320pt;}
.y114_c00310{bottom:298.116173pt;}
.y115_c00310{bottom:298.556720pt;}
.y116_c00310{bottom:298.828507pt;}
.y117_c00310{bottom:299.444213pt;}
.y118_c00310{bottom:299.789853pt;}
.y102_c00310{bottom:321.823747pt;}
.y103_c00310{bottom:322.472493pt;}
.y104_c00310{bottom:322.784253pt;}
.y105_c00310{bottom:324.173240pt;}
.y106_c00310{bottom:324.506240pt;}
.y107_c00310{bottom:324.823560pt;}
.y108_c00310{bottom:325.351427pt;}
.y109_c00310{bottom:325.673600pt;}
.y10a_c00310{bottom:326.220147pt;}
.y10b_c00310{bottom:327.280920pt;}
.y10c_c00310{bottom:328.135853pt;}
.yf5_c00310{bottom:349.905173pt;}
.yf6_c00310{bottom:350.232480pt;}
.yf7_c00310{bottom:351.096027pt;}
.yf8_c00310{bottom:351.842840pt;}
.yf9_c00310{bottom:352.064800pt;}
.yfa_c00310{bottom:352.492053pt;}
.yfb_c00310{bottom:353.017893pt;}
.yfc_c00310{bottom:353.564053pt;}
.yfd_c00310{bottom:353.875373pt;}
.yfe_c00310{bottom:354.300387pt;}
.yff_c00310{bottom:355.280333pt;}
.y100_c00310{bottom:356.349267pt;}
.y101_c00310{bottom:356.658440pt;}
.ye6_c00310{bottom:377.988067pt;}
.ye7_c00310{bottom:378.325253pt;}
.ye8_c00310{bottom:378.679187pt;}
.ye9_c00310{bottom:379.390293pt;}
.yea_c00310{bottom:379.623467pt;}
.yeb_c00310{bottom:380.076640pt;}
.yec_c00310{bottom:381.127013pt;}
.yed_c00310{bottom:381.608013pt;}
.yee_c00310{bottom:381.961747pt;}
.yef_c00310{bottom:382.535653pt;}
.yf0_c00310{bottom:383.001493pt;}
.yf1_c00310{bottom:383.350600pt;}
.yf2_c00310{bottom:383.713413pt;}
.yf3_c00310{bottom:384.649293pt;}
.yf4_c00310{bottom:384.994347pt;}
.yd8_c00310{bottom:406.790573pt;}
.yd9_c00310{bottom:407.128840pt;}
.yda_c00310{bottom:407.887093pt;}
.ydb_c00310{bottom:408.732013pt;}
.ydc_c00310{bottom:408.962213pt;}
.ydd_c00310{bottom:409.582440pt;}
.yde_c00310{bottom:410.018547pt;}
.ydf_c00310{bottom:410.551427pt;}
.ye0_c00310{bottom:411.305520pt;}
.ye1_c00310{bottom:411.516520pt;}
.ye2_c00310{bottom:412.044307pt;}
.ye3_c00310{bottom:412.490093pt;}
.ye4_c00310{bottom:412.801093pt;}
.ye5_c00310{bottom:413.231333pt;}
.yca_c00310{bottom:434.872293pt;}
.ycb_c00310{bottom:435.450400pt;}
.ycc_c00310{bottom:435.654467pt;}
.ycd_c00310{bottom:436.328853pt;}
.yce_c00310{bottom:436.624347pt;}
.ycf_c00310{bottom:436.912427pt;}
.yd0_c00310{bottom:437.207640pt;}
.yd1_c00310{bottom:438.081000pt;}
.yd2_c00310{bottom:438.479600pt;}
.yd3_c00310{bottom:438.760507pt;}
.yd4_c00310{bottom:439.151707pt;}
.yd5_c00310{bottom:440.027467pt;}
.yd6_c00310{bottom:440.224307pt;}
.yd7_c00310{bottom:440.623027pt;}
.ybd_c00310{bottom:463.194720pt;}
.ybe_c00310{bottom:463.718947pt;}
.ybf_c00310{bottom:463.902960pt;}
.yc0_c00310{bottom:464.256933pt;}
.yc1_c00310{bottom:465.307333pt;}
.yc2_c00310{bottom:465.918360pt;}
.yc3_c00310{bottom:466.271960pt;}
.yc4_c00310{bottom:466.533213pt;}
.yc5_c00310{bottom:466.786107pt;}
.yc6_c00310{bottom:467.321240pt;}
.yc7_c00310{bottom:467.579960pt;}
.yc8_c00310{bottom:467.949080pt;}
.yc9_c00310{bottom:468.543720pt;}
.yb2_c00310{bottom:490.795560pt;}
.yb3_c00310{bottom:491.072173pt;}
.yb4_c00310{bottom:491.702493pt;}
.yb5_c00310{bottom:492.208000pt;}
.yb6_c00310{bottom:493.253333pt;}
.yb7_c00310{bottom:493.430400pt;}
.yb8_c00310{bottom:494.315693pt;}
.yb9_c00310{bottom:494.926893pt;}
.yba_c00310{bottom:495.184573pt;}
.ybb_c00310{bottom:495.547760pt;}
.ybc_c00310{bottom:496.068893pt;}
.ya5_c00310{bottom:518.636907pt;}
.ya6_c00310{bottom:519.104107pt;}
.ya7_c00310{bottom:519.497480pt;}
.ya8_c00310{bottom:520.048773pt;}
.ya9_c00310{bottom:520.358093pt;}
.yaa_c00310{bottom:520.979667pt;}
.yab_c00310{bottom:521.609320pt;}
.yac_c00310{bottom:521.924280pt;}
.yad_c00310{bottom:522.158600pt;}
.yae_c00310{bottom:522.389347pt;}
.yaf_c00310{bottom:522.776813pt;}
.yb0_c00310{bottom:523.005107pt;}
.yb1_c00310{bottom:523.329413pt;}
.y98_c00310{bottom:546.958667pt;}
.y99_c00310{bottom:547.258747pt;}
.y9a_c00310{bottom:547.932680pt;}
.y9b_c00310{bottom:548.127480pt;}
.y9c_c00310{bottom:548.432240pt;}
.y9d_c00310{bottom:548.720293pt;}
.y9e_c00310{bottom:549.687253pt;}
.y9f_c00310{bottom:550.568027pt;}
.ya0_c00310{bottom:550.765147pt;}
.ya1_c00310{bottom:551.057987pt;}
.ya2_c00310{bottom:551.739573pt;}
.ya3_c00310{bottom:552.042107pt;}
.ya4_c00310{bottom:552.615800pt;}
.y8a_c00310{bottom:575.039360pt;}
.y8b_c00310{bottom:575.245893pt;}
.y8c_c00310{bottom:575.627613pt;}
.y8d_c00310{bottom:576.308933pt;}
.y8e_c00310{bottom:576.517960pt;}
.y8f_c00310{bottom:577.187280pt;}
.y90_c00310{bottom:577.384400pt;}
.y91_c00310{bottom:577.974507pt;}
.y92_c00310{bottom:578.171587pt;}
.y93_c00310{bottom:578.661213pt;}
.y94_c00310{bottom:579.433853pt;}
.y95_c00310{bottom:579.633480pt;}
.y96_c00310{bottom:580.694280pt;}
.y97_c00310{bottom:581.001440pt;}
.y7f_c00310{bottom:603.361333pt;}
.y80_c00310{bottom:603.752560pt;}
.y81_c00310{bottom:604.141533pt;}
.y82_c00310{bottom:604.827773pt;}
.y83_c00310{bottom:605.108853pt;}
.y84_c00310{bottom:605.413560pt;}
.y85_c00310{bottom:605.987373pt;}
.y86_c00310{bottom:607.158347pt;}
.y87_c00310{bottom:607.360320pt;}
.y88_c00310{bottom:608.420800pt;}
.y89_c00310{bottom:608.817067pt;}
.y73_c00310{bottom:631.679513pt;}
.y74_c00310{bottom:632.058343pt;}
.y75_c00310{bottom:632.367721pt;}
.y76_c00310{bottom:633.039224pt;}
.y77_c00310{bottom:633.718456pt;}
.y78_c00310{bottom:634.208429pt;}
.y79_c00310{bottom:634.603629pt;}
.y7a_c00310{bottom:635.092499pt;}
.y7b_c00310{bottom:635.489247pt;}
.y7c_c00310{bottom:636.168431pt;}
.y7d_c00310{bottom:637.044639pt;}
.y7e_c00310{bottom:637.234305pt;}
.y69_c00310{bottom:660.481333pt;}
.y6a_c00310{bottom:661.096933pt;}
.y6b_c00310{bottom:661.369057pt;}
.y6c_c00310{bottom:661.624549pt;}
.y6d_c00310{bottom:662.248117pt;}
.y6e_c00310{bottom:662.861401pt;}
.y6f_c00310{bottom:663.029977pt;}
.y70_c00310{bottom:663.731953pt;}
.y71_c00310{bottom:663.909337pt;}
.y72_c00310{bottom:664.261525pt;}
.y68_c00310{bottom:665.384000pt;}
.y5d_c00310{bottom:688.559653pt;}
.y5e_c00310{bottom:689.551067pt;}
.y5f_c00310{bottom:690.415027pt;}
.y60_c00310{bottom:690.717507pt;}
.y61_c00310{bottom:691.391947pt;}
.y62_c00310{bottom:692.073560pt;}
.y63_c00310{bottom:692.659227pt;}
.y64_c00310{bottom:693.338413pt;}
.y65_c00310{bottom:693.643147pt;}
.y66_c00310{bottom:693.855533pt;}
.y67_c00310{bottom:694.228733pt;}
.y53_c00310{bottom:718.321333pt;}
.y54_c00310{bottom:718.503707pt;}
.y55_c00310{bottom:719.086853pt;}
.y56_c00310{bottom:719.871587pt;}
.y57_c00310{bottom:720.346853pt;}
.y58_c00310{bottom:720.932613pt;}
.y59_c00310{bottom:721.613987pt;}
.y5a_c00310{bottom:722.101187pt;}
.y5b_c00310{bottom:722.408760pt;}
.y5c_c00310{bottom:723.267947pt;}
.y4d_c00310{bottom:745.437111pt;}
.y4e_c00310{bottom:746.134863pt;}
.y4f_c00310{bottom:746.573367pt;}
.y50_c00310{bottom:746.927511pt;}
.y51_c00310{bottom:747.180339pt;}
.y52_c00310{bottom:747.884475pt;}
.y41_c00310{bottom:772.799637pt;}
.y42_c00310{bottom:773.287511pt;}
.y43_c00310{bottom:774.062512pt;}
.y44_c00310{bottom:774.849455pt;}
.y45_c00310{bottom:775.142320pt;}
.y46_c00310{bottom:775.720465pt;}
.y47_c00310{bottom:776.312496pt;}
.y48_c00310{bottom:777.091817pt;}
.y49_c00310{bottom:777.474188pt;}
.y4a_c00310{bottom:777.776931pt;}
.y4b_c00310{bottom:778.072148pt;}
.y4c_c00310{bottom:778.649717pt;}
.y36_c00310{bottom:801.119740pt;}
.y37_c00310{bottom:801.705591pt;}
.y38_c00310{bottom:802.588471pt;}
.y39_c00310{bottom:803.078504pt;}
.y3a_c00310{bottom:803.371453pt;}
.y3b_c00310{bottom:804.343695pt;}
.y3c_c00310{bottom:805.332281pt;}
.y3d_c00310{bottom:806.094909pt;}
.y3e_c00310{bottom:806.489329pt;}
.y3f_c00310{bottom:806.777683pt;}
.y40_c00310{bottom:807.068712pt;}
.y2b_c00310{bottom:830.641333pt;}
.y2c_c00310{bottom:831.151249pt;}
.y2d_c00310{bottom:831.589669pt;}
.y2e_c00310{bottom:832.302457pt;}
.y2f_c00310{bottom:832.570309pt;}
.y30_c00310{bottom:832.732357pt;}
.y31_c00310{bottom:833.008885pt;}
.y32_c00310{bottom:833.695777pt;}
.y33_c00310{bottom:833.978785pt;}
.y34_c00310{bottom:834.412849pt;}
.y35_c00310{bottom:835.011013pt;}
.y26_c00310{bottom:856.798461pt;}
.y27_c00310{bottom:857.211787pt;}
.y28_c00310{bottom:857.622080pt;}
.y29_c00310{bottom:858.323661pt;}
.y2a_c00310{bottom:859.302379pt;}
.y1b_c00310{bottom:884.638913pt;}
.y1c_c00310{bottom:885.622464pt;}
.y1d_c00310{bottom:886.783341pt;}
.y1e_c00310{bottom:886.979983pt;}
.y1f_c00310{bottom:887.850988pt;}
.y20_c00310{bottom:888.055177pt;}
.y21_c00310{bottom:888.628875pt;}
.y22_c00310{bottom:888.935765pt;}
.y23_c00310{bottom:889.420561pt;}
.y24_c00310{bottom:890.104723pt;}
.y25_c00310{bottom:890.402413pt;}
.ye_c00310{bottom:912.959187pt;}
.yf_c00310{bottom:913.252268pt;}
.y10_c00310{bottom:913.924011pt;}
.y11_c00310{bottom:914.226413pt;}
.y12_c00310{bottom:914.707888pt;}
.y13_c00310{bottom:915.097549pt;}
.y14_c00310{bottom:915.395305pt;}
.y15_c00310{bottom:916.066992pt;}
.y16_c00310{bottom:916.372361pt;}
.y17_c00310{bottom:916.860031pt;}
.y18_c00310{bottom:917.541225pt;}
.y19_c00310{bottom:918.133295pt;}
.y1a_c00310{bottom:918.417092pt;}
.y2_c00310{bottom:941.760000pt;}
.y3_c00310{bottom:941.966481pt;}
.y4_c00310{bottom:942.107825pt;}
.y5_c00310{bottom:942.646947pt;}
.y6_c00310{bottom:942.784819pt;}
.y7_c00310{bottom:943.262079pt;}
.y8_c00310{bottom:943.944121pt;}
.y9_c00310{bottom:944.285040pt;}
.ya_c00310{bottom:944.558861pt;}
.yb_c00310{bottom:944.908497pt;}
.yc_c00310{bottom:945.451091pt;}
.yd_c00310{bottom:945.652569pt;}
.y1_c00310{bottom:995.396000pt;}
.h10_c00310{height:16.000000pt;}
.h3_c00310{height:58.668104pt;}
.hb_c00310{height:58.669600pt;}
.ha_c00310{height:64.000000pt;}
.h4_c00310{height:64.001568pt;}
.hf_c00310{height:64.002048pt;}
.h8_c00310{height:64.002592pt;}
.h9_c00310{height:64.003200pt;}
.h2_c00310{height:69.333333pt;}
.h6_c00310{height:69.336141pt;}
.hd_c00310{height:69.336800pt;}
.h5_c00310{height:74.668496pt;}
.h7_c00310{height:74.669691pt;}
.he_c00310{height:74.670400pt;}
.hc_c00310{height:80.004000pt;}
.h11_c00310{height:80.007840pt;}
.h1_c00310{height:1036.000000pt;}
.h0_c00310{height:1036.266667pt;}
.w0_c00310{width:813.333333pt;}
.x0_c00310{left:0.000000pt;}
.x2_c00310{left:129.924000pt;}
.xe_c00310{left:131.152323pt;}
.x36_c00310{left:132.361937pt;}
.x59_c00310{left:134.020605pt;}
.x84_c00310{left:135.233600pt;}
.x8c_c00310{left:136.207560pt;}
.x98_c00310{left:137.153773pt;}
.xc6_c00310{left:138.340000pt;}
.xed_c00310{left:139.440000pt;}
.xee_c00310{left:142.788000pt;}
.x68_c00310{left:154.432453pt;}
.x3_c00310{left:159.421333pt;}
.xf_c00310{left:160.449040pt;}
.x71_c00310{left:164.531973pt;}
.x92_c00310{left:165.742587pt;}
.xe7_c00310{left:168.576000pt;}
.x5a_c00310{left:171.964269pt;}
.x62_c00310{left:173.616000pt;}
.xbd_c00310{left:176.958947pt;}
.x4_c00310{left:179.613333pt;}
.x37_c00310{left:181.088160pt;}
.xb3_c00310{left:185.636413pt;}
.xcf_c00310{left:186.852573pt;}
.x20_c00310{left:189.289179pt;}
.x69_c00310{left:192.604453pt;}
.x85_c00310{left:193.523520pt;}
.x99_c00310{left:194.797960pt;}
.xaa_c00310{left:196.424133pt;}
.xe8_c00310{left:198.338667pt;}
.x54_c00310{left:201.474667pt;}
.x5b_c00310{left:202.931993pt;}
.xc7_c00310{left:207.221333pt;}
.xd8_c00310{left:208.188307pt;}
.x41_c00310{left:210.596237pt;}
.x63_c00310{left:212.513333pt;}
.x86_c00310{left:213.925053pt;}
.xd0_c00310{left:217.577907pt;}
.xab_c00310{left:224.799853pt;}
.xbe_c00310{left:226.171440pt;}
.x10_c00310{left:227.648964pt;}
.x19_c00310{left:229.340481pt;}
.x23_c00310{left:230.260000pt;}
.x45_c00310{left:232.205333pt;}
.x80_c00310{left:235.335893pt;}
.x21_c00310{left:239.417391pt;}
.x78_c00310{left:242.023973pt;}
.xa3_c00310{left:244.229373pt;}
.xe9_c00310{left:247.525333pt;}
.x46_c00310{left:250.442667pt;}
.x72_c00310{left:251.405307pt;}
.x87_c00310{left:253.322787pt;}
.x5_c00310{left:256.630667pt;}
.x11_c00310{left:257.896329pt;}
.x42_c00310{left:259.318904pt;}
.x6a_c00310{left:260.736453pt;}
.x5c_c00310{left:270.135393pt;}
.x9a_c00310{left:273.491053pt;}
.x6_c00310{left:276.326667pt;}
.x2d_c00310{left:278.272344pt;}
.x64_c00310{left:281.137333pt;}
.xbf_c00310{left:283.317347pt;}
.xe2_c00310{left:285.444000pt;}
.x24_c00310{left:286.917333pt;}
.x81_c00310{left:291.487120pt;}
.xc8_c00310{left:294.862667pt;}
.x43_c00310{left:298.668237pt;}
.xb4_c00310{left:302.764253pt;}
.xe3_c00310{left:304.674667pt;}
.x12_c00310{left:306.105988pt;}
.x22_c00310{left:309.325965pt;}
.x73_c00310{left:310.686640pt;}
.xa4_c00310{left:312.110027pt;}
.xc0_c00310{left:313.792320pt;}
.xea_c00310{left:314.961333pt;}
.x4b_c00310{left:318.128960pt;}
.xd1_c00310{left:323.433907pt;}
.xd9_c00310{left:324.805307pt;}
.x2e_c00310{left:327.238567pt;}
.x55_c00310{left:329.384000pt;}
.x93_c00310{left:332.278240pt;}
.x25_c00310{left:335.630667pt;}
.x38_c00310{left:337.302756pt;}
.x65_c00310{left:339.716000pt;}
.xda_c00310{left:343.319013pt;}
.x7_c00310{left:344.506667pt;}
.x1a_c00310{left:345.463379pt;}
.x4c_c00310{left:348.376960pt;}
.x79_c00310{left:349.554120pt;}
.xac_c00310{left:351.030587pt;}
.xc1_c00310{left:351.966040pt;}
.x1_c00310{left:354.480000pt;}
.x2f_c00310{left:356.528969pt;}
.xb5_c00310{left:361.084840pt;}
.x1b_c00310{left:365.173635pt;}
.x39_c00310{left:366.583825pt;}
.x6b_c00310{left:368.283120pt;}
.x88_c00310{left:369.963947pt;}
.xa5_c00310{left:371.164107pt;}
.xc9_c00310{left:372.110667pt;}
.x13_c00310{left:374.783208pt;}
.xad_c00310{left:381.263613pt;}
.xef_c00310{left:384.188000pt;}
.x47_c00310{left:387.230667pt;}
.x94_c00310{left:388.700347pt;}
.xb6_c00310{left:390.361133pt;}
.xd2_c00310{left:391.313907pt;}
.xe4_c00310{left:394.186667pt;}
.x56_c00310{left:397.526667pt;}
.x9b_c00310{left:398.776547pt;}
.xeb_c00310{left:402.348000pt;}
.x44_c00310{left:404.997571pt;}
.x74_c00310{left:407.382640pt;}
.xae_c00310{left:410.061987pt;}
.xca_c00310{left:411.749333pt;}
.xdb_c00310{left:413.149747pt;}
.x26_c00310{left:414.829333pt;}
.x4d_c00310{left:415.820960pt;}
.xa6_c00310{left:418.947627pt;}
.xc2_c00310{left:419.888053pt;}
.xe5_c00310{left:422.038667pt;}
.x3a_c00310{left:424.451309pt;}
.x5d_c00310{left:426.475311pt;}
.x95_c00310{left:428.310613pt;}
.xb7_c00310{left:429.481520pt;}
.x48_c00310{left:434.757333pt;}
.x89_c00310{left:437.867293pt;}
.x9c_c00310{left:438.875747pt;}
.x8_c00310{left:441.941333pt;}
.x27_c00310{left:444.590667pt;}
.x6c_c00310{left:447.001787pt;}
.x1c_c00310{left:452.267805pt;}
.x30_c00310{left:453.740093pt;}
.x8d_c00310{left:457.078227pt;}
.xaf_c00310{left:458.048173pt;}
.xcb_c00310{left:459.502667pt;}
.xdc_c00310{left:460.653360pt;}
.x28_c00310{left:462.596000pt;}
.x9d_c00310{left:468.381827pt;}
.x14_c00310{left:472.455821pt;}
.x5e_c00310{left:475.312200pt;}
.x8a_c00310{left:477.227693pt;}
.xd3_c00310{left:478.952573pt;}
.xdd_c00310{left:480.095080pt;}
.x3b_c00310{left:483.713448pt;}
.xb0_c00310{left:487.331880pt;}
.xc3_c00310{left:488.988747pt;}
.x9_c00310{left:490.644000pt;}
.x29_c00310{left:493.321333pt;}
.x57_c00310{left:494.254667pt;}
.x6d_c00310{left:495.964453pt;}
.x8e_c00310{left:496.938227pt;}
.x7a_c00310{left:506.013253pt;}
.xcc_c00310{left:508.720000pt;}
.x58_c00310{left:513.964000pt;}
.x5f_c00310{left:514.950507pt;}
.x9e_c00310{left:516.171533pt;}
.xb8_c00310{left:517.067733pt;}
.xde_c00310{left:518.499853pt;}
.x15_c00310{left:521.169461pt;}
.x82_c00310{left:525.725467pt;}
.xc4_c00310{left:528.139800pt;}
.xa_c00310{left:529.761333pt;}
.x66_c00310{left:534.392000pt;}
.xa7_c00310{left:535.595800pt;}
.xb1_c00310{left:537.052720pt;}
.xec_c00310{left:539.869333pt;}
.xf0_c00310{left:541.400000pt;}
.x4e_c00310{left:542.548960pt;}
.x75_c00310{left:544.455973pt;}
.x7b_c00310{left:545.376707pt;}
.xdf_c00310{left:548.768453pt;}
.x31_c00310{left:552.619205pt;}
.x9f_c00310{left:555.021427pt;}
.x1d_c00310{left:560.757528pt;}
.x3c_c00310{left:561.711419pt;}
.x8f_c00310{left:564.148893pt;}
.xb9_c00310{left:566.056227pt;}
.xd4_c00310{left:567.035240pt;}
.x2a_c00310{left:569.642667pt;}
.x6e_c00310{left:573.228453pt;}
.x7c_c00310{left:574.675960pt;}
.xb_c00310{left:579.709333pt;}
.x51_c00310{left:582.480000pt;}
.xa0_c00310{left:584.064840pt;}
.x16_c00310{left:589.338700pt;}
.x6f_c00310{left:593.191120pt;}
.xba_c00310{left:596.301867pt;}
.x3d_c00310{left:599.900404pt;}
.x2b_c00310{left:601.088000pt;}
.x7d_c00310{left:603.484533pt;}
.xcd_c00310{left:605.434667pt;}
.xd5_c00310{left:606.865907pt;}
.x1e_c00310{left:609.251177pt;}
.x49_c00310{left:610.190667pt;}
.x52_c00310{left:611.280000pt;}
.x76_c00310{left:612.614640pt;}
.xa1_c00310{left:614.345573pt;}
.xe6_c00310{left:617.376000pt;}
.x83_c00310{left:622.214427pt;}
.xa8_c00310{left:624.656240pt;}
.xe0_c00310{left:625.780667pt;}
.x32_c00310{left:628.910521pt;}
.x3e_c00310{left:630.130795pt;}
.xb2_c00310{left:633.529093pt;}
.x4a_c00310{left:640.948000pt;}
.x77_c00310{left:642.867973pt;}
.xe1_c00310{left:646.182413pt;}
.x17_c00310{left:648.585459pt;}
.x7e_c00310{left:651.965507pt;}
.x96_c00310{left:653.196387pt;}
.xc5_c00310{left:655.109080pt;}
.xc_c00310{left:657.222667pt;}
.x3f_c00310{left:659.673197pt;}
.x4f_c00310{left:662.179627pt;}
.x8b_c00310{left:663.741573pt;}
.xbb_c00310{left:664.673213pt;}
.x33_c00310{left:668.290161pt;}
.x60_c00310{left:670.437103pt;}
.x90_c00310{left:671.408893pt;}
.x18_c00310{left:676.936861pt;}
.x67_c00310{left:680.066667pt;}
.x97_c00310{left:681.496107pt;}
.xce_c00310{left:684.636000pt;}
.xd_c00310{left:686.005333pt;}
.x61_c00310{left:689.436935pt;}
.x53_c00310{left:690.480000pt;}
.xa2_c00310{left:692.332013pt;}
.xd6_c00310{left:694.236573pt;}
.x34_c00310{left:697.069897pt;}
.x50_c00310{left:699.499627pt;}
.xbc_c00310{left:703.104267pt;}
.x1f_c00310{left:707.418448pt;}
.x91_c00310{left:711.280893pt;}
.x2c_c00310{left:715.780000pt;}
.x40_c00310{left:717.476681pt;}
.x7f_c00310{left:721.093560pt;}
.x35_c00310{left:726.146967pt;}
.x70_c00310{left:729.987120pt;}
.xd7_c00310{left:732.392573pt;}
.xa9_c00310{left:749.932320pt;}
}





/* 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_c00311 {
    display:none;
  }
  .loading-indicator_c00311.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00311 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_c00311 { 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_c00311" -> "#page-container .classname_c00311")
 */
.pf_c00311 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00311 { /* 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_c00311.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00311 { /* 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_c00311 { /* 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_c00311 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00311 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00311 {overflow:visible;}
  }
}
.c_c00311 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00311 { /* 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_c00311:after { /* webkit #35443 */
  content: '';
}
.t_c00311:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00311 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 */
}
.__c00311 { /* 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_c00311 { /* info for Javascript */
  display:none;
}
.l_c00311 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00311 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00311 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00311: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_c00311 {
    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_c00311.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00311.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_c00311 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00311{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00311;src:url('chunks/assets/font_fabf4b590f7fb32aea93ffb2.woff2')format("woff");}.ff1_c00311{font-family:ff1_c00311;line-height:1.000000;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;}
.m4d_c00311{transform:matrix(0.024960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.024960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.024960,0.000000,0.000000,0.250000,0,0);}
.m2f_c00311{transform:matrix(0.025455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.025455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.025455,0.000000,0.000000,0.250000,0,0);}
.m25_c00311{transform:matrix(0.035575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.035575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.035575,0.000000,0.000000,0.250000,0,0);}
.m4_c00311{transform:matrix(0.056250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.056250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.056250,0.000000,0.000000,0.250000,0,0);}
.mb_c00311{transform:matrix(0.065600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065600,0.000000,0.000000,0.250000,0,0);}
.m31_c00311{transform:matrix(0.089195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.089195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.089195,0.000000,0.000000,0.250000,0,0);}
.m3e_c00311{transform:matrix(0.127280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127280,0.000000,0.000000,0.250000,0,0);}
.m40_c00311{transform:matrix(0.135830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135830,0.000000,0.000000,0.250000,0,0);}
.m11_c00311{transform:matrix(0.137325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137325,0.000000,0.000000,0.250000,0,0);}
.m39_c00311{transform:matrix(0.156525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156525,0.000000,0.000000,0.250000,0,0);}
.m12_c00311{transform:matrix(0.159450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159450,0.000000,0.000000,0.250000,0,0);}
.m21_c00311{transform:matrix(0.161830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161830,0.000000,0.000000,0.250000,0,0);}
.m4a_c00311{transform:matrix(0.176920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176920,0.000000,0.000000,0.250000,0,0);}
.m9_c00311{transform:matrix(0.178275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178275,0.000000,0.000000,0.250000,0,0);}
.m1f_c00311{transform:matrix(0.183100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183100,0.000000,0.000000,0.250000,0,0);}
.m4e_c00311{transform:matrix(0.210553,0.008641,-0.010252,0.249790,0,0);-ms-transform:matrix(0.210553,0.008641,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.210553,0.008641,-0.010252,0.249790,0,0);}
.m2b_c00311{transform:matrix(0.221360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221360,0.000000,0.000000,0.250000,0,0);}
.m3b_c00311{transform:matrix(0.223765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223765,0.000000,0.000000,0.250000,0,0);}
.m34_c00311{transform:matrix(0.228170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228170,0.000000,0.000000,0.250000,0,0);}
.m22_c00311{transform:matrix(0.229810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229810,0.000000,0.000000,0.250000,0,0);}
.m2a_c00311{transform:matrix(0.230215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230215,0.000000,0.000000,0.250000,0,0);}
.m16_c00311{transform:matrix(0.241660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241660,0.000000,0.000000,0.250000,0,0);}
.m33_c00311{transform:matrix(0.246625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246625,0.000000,0.000000,0.250000,0,0);}
.m30_c00311{transform:matrix(0.249560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249560,0.000000,0.000000,0.250000,0,0);}
.m4c_c00311{transform:matrix(0.251485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251485,0.000000,0.000000,0.250000,0,0);}
.m36_c00311{transform:matrix(0.252810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252810,0.000000,0.000000,0.250000,0,0);}
.m13_c00311{transform:matrix(0.254400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254400,0.000000,0.000000,0.250000,0,0);}
.m2c_c00311{transform:matrix(0.258070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258070,0.000000,0.000000,0.250000,0,0);}
.m17_c00311{transform:matrix(0.265375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265375,0.000000,0.000000,0.250000,0,0);}
.ma_c00311{transform:matrix(0.268330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268330,0.000000,0.000000,0.250000,0,0);}
.m47_c00311{transform:matrix(0.270150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270150,0.000000,0.000000,0.250000,0,0);}
.m32_c00311{transform:matrix(0.275495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275495,0.000000,0.000000,0.250000,0,0);}
.m20_c00311{transform:matrix(0.277290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277290,0.000000,0.000000,0.250000,0,0);}
.m8_c00311{transform:matrix(0.281925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281925,0.000000,0.000000,0.250000,0,0);}
.m14_c00311{transform:matrix(0.285590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285590,0.000000,0.000000,0.250000,0,0);}
.m4f_c00311{transform:matrix(0.296091,0.012152,-0.010252,0.249790,0,0);-ms-transform:matrix(0.296091,0.012152,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.296091,0.012152,-0.010252,0.249790,0,0);}
.m1d_c00311{transform:matrix(0.320335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320335,0.000000,0.000000,0.250000,0,0);}
.m26_c00311{transform:matrix(0.321760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321760,0.000000,0.000000,0.250000,0,0);}
.m24_c00311{transform:matrix(0.322505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322505,0.000000,0.000000,0.250000,0,0);}
.m48_c00311{transform:matrix(0.330925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330925,0.000000,0.000000,0.250000,0,0);}
.m18_c00311{transform:matrix(0.335410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335410,0.000000,0.000000,0.250000,0,0);}
.m35_c00311{transform:matrix(0.345960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345960,0.000000,0.000000,0.250000,0,0);}
.m3_c00311{transform:matrix(0.350180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350180,0.000000,0.000000,0.250000,0,0);}
.m15_c00311{transform:matrix(0.355165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355165,0.000000,0.000000,0.250000,0,0);}
.m50_c00311{transform:matrix(0.362860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362860,0.000000,0.000000,0.250000,0,0);}
.m2d_c00311{transform:matrix(0.369530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369530,0.000000,0.000000,0.250000,0,0);}
.m45_c00311{transform:matrix(0.369596,-0.023702,0.015999,0.249488,0,0);-ms-transform:matrix(0.369596,-0.023702,0.015999,0.249488,0,0);-webkit-transform:matrix(0.369596,-0.023702,0.015999,0.249488,0,0);}
.m1e_c00311{transform:matrix(0.371215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371215,0.000000,0.000000,0.250000,0,0);}
.m1a_c00311{transform:matrix(0.374355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374355,0.000000,0.000000,0.250000,0,0);}
.m49_c00311{transform:matrix(0.380130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380130,0.000000,0.000000,0.250000,0,0);}
.m23_c00311{transform:matrix(0.380260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380260,0.000000,0.000000,0.250000,0,0);}
.m42_c00311{transform:matrix(0.391880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391880,0.000000,0.000000,0.250000,0,0);}
.m29_c00311{transform:matrix(0.392460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392460,0.000000,0.000000,0.250000,0,0);}
.m10_c00311{transform:matrix(0.413850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413850,0.000000,0.000000,0.250000,0,0);}
.m3a_c00311{transform:matrix(0.429290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429290,0.000000,0.000000,0.250000,0,0);}
.m46_c00311{transform:matrix(0.438948,-0.028149,0.015999,0.249488,0,0);-ms-transform:matrix(0.438948,-0.028149,0.015999,0.249488,0,0);-webkit-transform:matrix(0.438948,-0.028149,0.015999,0.249488,0,0);}
.m3f_c00311{transform:matrix(0.460135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460135,0.000000,0.000000,0.250000,0,0);}
.m1_c00311{transform:matrix(0.464910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464910,0.000000,0.000000,0.250000,0,0);}
.m44_c00311{transform:matrix(0.481090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.481090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.481090,0.000000,0.000000,0.250000,0,0);}
.m43_c00311{transform:matrix(0.512100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512100,0.000000,0.000000,0.250000,0,0);}
.m38_c00311{transform:matrix(0.524170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524170,0.000000,0.000000,0.250000,0,0);}
.m19_c00311{transform:matrix(0.536025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536025,0.000000,0.000000,0.250000,0,0);}
.m6_c00311{transform:matrix(0.547090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547090,0.000000,0.000000,0.250000,0,0);}
.m3d_c00311{transform:matrix(0.564645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.564645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.564645,0.000000,0.000000,0.250000,0,0);}
.mf_c00311{transform:matrix(0.579395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579395,0.000000,0.000000,0.250000,0,0);}
.m37_c00311{transform:matrix(0.583945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583945,0.000000,0.000000,0.250000,0,0);}
.m2_c00311{transform:matrix(0.588260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.588260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.588260,0.000000,0.000000,0.250000,0,0);}
.m4b_c00311{transform:matrix(0.632020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632020,0.000000,0.000000,0.250000,0,0);}
.m41_c00311{transform:matrix(0.634125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634125,0.000000,0.000000,0.250000,0,0);}
.m0_c00311{transform:matrix(0.644285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644285,0.000000,0.000000,0.250000,0,0);}
.md_c00311{transform:matrix(0.682235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.682235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.682235,0.000000,0.000000,0.250000,0,0);}
.mc_c00311{transform:matrix(0.729510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.729510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.729510,0.000000,0.000000,0.250000,0,0);}
.m1b_c00311{transform:matrix(0.741185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.741185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.741185,0.000000,0.000000,0.250000,0,0);}
.m5_c00311{transform:matrix(0.765000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00311{transform:matrix(0.791345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.791345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.791345,0.000000,0.000000,0.250000,0,0);}
.m7_c00311{transform:matrix(0.924815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.924815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.924815,0.000000,0.000000,0.250000,0,0);}
.m28_c00311{transform:matrix(0.933480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.933480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.933480,0.000000,0.000000,0.250000,0,0);}
.me_c00311{transform:matrix(0.970015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.970015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.970015,0.000000,0.000000,0.250000,0,0);}
.m27_c00311{transform:matrix(1.034945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.034945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.034945,0.000000,0.000000,0.250000,0,0);}
.m3c_c00311{transform:matrix(1.053060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.053060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.053060,0.000000,0.000000,0.250000,0,0);}
.m2e_c00311{transform:matrix(1.494385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.494385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.494385,0.000000,0.000000,0.250000,0,0);}
.v0_c00311{vertical-align:0.000000px;}
.ls0_c00311{letter-spacing:0.000000px;}
.sc__c00311{text-shadow:none;}
.sc0_c00311{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__c00311{-webkit-text-stroke:0px transparent;}
.sc0_c00311{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00311{word-spacing:0.000000px;}
.fc0_c00311{color:transparent;}
.fs2_c00311{font-size:18.000000px;}
.fs1_c00311{font-size:24.000000px;}
.fs7_c00311{font-size:30.000000px;}
.fs0_c00311{font-size:36.000000px;}
.fs9_c00311{font-size:42.000000px;}
.fs5_c00311{font-size:48.000000px;}
.fs6_c00311{font-size:54.000000px;}
.fs4_c00311{font-size:60.000000px;}
.fs3_c00311{font-size:72.000000px;}
.fsb_c00311{font-size:77.987597px;}
.fs8_c00311{font-size:78.000000px;}
.fsa_c00311{font-size:114.005700px;}
.y0_c00311{bottom:0.000000px;}
.y22_c00311{bottom:210.456000px;}
.y21_c00311{bottom:398.112905px;}
.y20_c00311{bottom:401.785500px;}
.y1f_c00311{bottom:432.148500px;}
.y1b_c00311{bottom:458.548500px;}
.y1c_c00311{bottom:462.488052px;}
.y1e_c00311{bottom:465.084000px;}
.y1d_c00311{bottom:474.930000px;}
.y1a_c00311{bottom:504.787500px;}
.y19_c00311{bottom:535.680000px;}
.y18_c00311{bottom:540.009000px;}
.y17_c00311{bottom:697.230000px;}
.y16_c00311{bottom:729.000000px;}
.y15_c00311{bottom:765.720000px;}
.y14_c00311{bottom:769.636500px;}
.y13_c00311{bottom:780.840000px;}
.y12_c00311{bottom:785.967000px;}
.y11_c00311{bottom:796.677000px;}
.y10_c00311{bottom:819.981000px;}
.yf_c00311{bottom:826.200000px;}
.ye_c00311{bottom:887.358000px;}
.yd_c00311{bottom:891.121500px;}
.yc_c00311{bottom:911.520000px;}
.yb_c00311{bottom:915.030000px;}
.ya_c00311{bottom:932.040000px;}
.y9_c00311{bottom:948.511500px;}
.y8_c00311{bottom:950.836500px;}
.y6_c00311{bottom:973.354500px;}
.y7_c00311{bottom:977.791500px;}
.y5_c00311{bottom:1013.850000px;}
.y4_c00311{bottom:1046.367000px;}
.y3_c00311{bottom:1057.050000px;}
.y2_c00311{bottom:1079.088000px;}
.y1_c00311{bottom:1081.378500px;}
.h4_c00311{height:18.000000px;}
.h3_c00311{height:24.000000px;}
.h9_c00311{height:30.000000px;}
.h2_c00311{height:36.000000px;}
.hb_c00311{height:42.000000px;}
.h7_c00311{height:48.000000px;}
.h8_c00311{height:54.000000px;}
.h6_c00311{height:60.000000px;}
.h5_c00311{height:72.000000px;}
.hd_c00311{height:77.987597px;}
.ha_c00311{height:78.000000px;}
.hc_c00311{height:114.005700px;}
.h1_c00311{height:1165.500000px;}
.h0_c00311{height:1165.800000px;}
.w0_c00311{width:915.000000px;}
.x0_c00311{left:0.000000px;}
.x1c_c00311{left:66.690000px;}
.x26_c00311{left:123.660000px;}
.x1d_c00311{left:128.520000px;}
.x27_c00311{left:138.780000px;}
.x29_c00311{left:146.340000px;}
.x28_c00311{left:147.960000px;}
.x20_c00311{left:149.310000px;}
.x2a_c00311{left:162.000000px;}
.x1f_c00311{left:169.290000px;}
.x3e_c00311{left:173.610000px;}
.x3f_c00311{left:195.480000px;}
.x1e_c00311{left:202.230000px;}
.x1_c00311{left:222.210000px;}
.x5_c00311{left:223.830000px;}
.x14_c00311{left:225.180000px;}
.x6_c00311{left:229.770000px;}
.x13_c00311{left:234.900000px;}
.x16_c00311{left:251.100000px;}
.x7_c00311{left:254.610000px;}
.x15_c00311{left:271.890000px;}
.x8_c00311{left:284.310000px;}
.x9_c00311{left:318.330000px;}
.x3a_c00311{left:356.130000px;}
.xa_c00311{left:380.970000px;}
.xb_c00311{left:396.360000px;}
.x2_c00311{left:399.060000px;}
.xc_c00311{left:407.160000px;}
.xd_c00311{left:422.010000px;}
.x3_c00311{left:441.180000px;}
.xe_c00311{left:454.410000px;}
.x3b_c00311{left:457.650000px;}
.x2f_c00311{left:468.720000px;}
.x3c_c00311{left:485.730000px;}
.x3d_c00311{left:495.720000px;}
.xf_c00311{left:496.800000px;}
.x2e_c00311{left:498.960000px;}
.x2b_c00311{left:501.660000px;}
.x36_c00311{left:503.280000px;}
.x2c_c00311{left:512.730000px;}
.x2d_c00311{left:523.260000px;}
.x4_c00311{left:531.630000px;}
.x34_c00311{left:544.590000px;}
.x10_c00311{left:547.560000px;}
.x30_c00311{left:554.850000px;}
.x38_c00311{left:565.380000px;}
.x48_c00311{left:568.350000px;}
.x11_c00311{left:571.050000px;}
.x35_c00311{left:576.450000px;}
.x39_c00311{left:578.610000px;}
.x31_c00311{left:583.470000px;}
.x12_c00311{left:594.000000px;}
.x37_c00311{left:611.280000px;}
.x32_c00311{left:616.410000px;}
.x1a_c00311{left:618.300000px;}
.x41_c00311{left:630.450000px;}
.x33_c00311{left:631.530000px;}
.x24_c00311{left:639.630000px;}
.x21_c00311{left:648.000000px;}
.x17_c00311{left:649.350000px;}
.x42_c00311{left:652.860000px;}
.x46_c00311{left:655.750500px;}
.x44_c00311{left:661.500000px;}
.x1b_c00311{left:668.250000px;}
.x43_c00311{left:671.220000px;}
.x18_c00311{left:674.460000px;}
.x19_c00311{left:680.400000px;}
.x22_c00311{left:700.380000px;}
.x25_c00311{left:716.850000px;}
.x23_c00311{left:740.340000px;}
.x40_c00311{left:741.859389px;}
.x47_c00311{left:745.236425px;}
.x45_c00311{left:769.500000px;}
@media print{
.v0_c00311{vertical-align:0.000000pt;}
.ls0_c00311{letter-spacing:0.000000pt;}
.ws0_c00311{word-spacing:0.000000pt;}
.fs2_c00311{font-size:16.000000pt;}
.fs1_c00311{font-size:21.333333pt;}
.fs7_c00311{font-size:26.666667pt;}
.fs0_c00311{font-size:32.000000pt;}
.fs9_c00311{font-size:37.333333pt;}
.fs5_c00311{font-size:42.666667pt;}
.fs6_c00311{font-size:48.000000pt;}
.fs4_c00311{font-size:53.333333pt;}
.fs3_c00311{font-size:64.000000pt;}
.fsb_c00311{font-size:69.322308pt;}
.fs8_c00311{font-size:69.333333pt;}
.fsa_c00311{font-size:101.338400pt;}
.y0_c00311{bottom:0.000000pt;}
.y22_c00311{bottom:187.072000pt;}
.y21_c00311{bottom:353.878137pt;}
.y20_c00311{bottom:357.142667pt;}
.y1f_c00311{bottom:384.132000pt;}
.y1b_c00311{bottom:407.598667pt;}
.y1c_c00311{bottom:411.100491pt;}
.y1e_c00311{bottom:413.408000pt;}
.y1d_c00311{bottom:422.160000pt;}
.y1a_c00311{bottom:448.700000pt;}
.y19_c00311{bottom:476.160000pt;}
.y18_c00311{bottom:480.008000pt;}
.y17_c00311{bottom:619.760000pt;}
.y16_c00311{bottom:648.000000pt;}
.y15_c00311{bottom:680.640000pt;}
.y14_c00311{bottom:684.121333pt;}
.y13_c00311{bottom:694.080000pt;}
.y12_c00311{bottom:698.637333pt;}
.y11_c00311{bottom:708.157333pt;}
.y10_c00311{bottom:728.872000pt;}
.yf_c00311{bottom:734.400000pt;}
.ye_c00311{bottom:788.762667pt;}
.yd_c00311{bottom:792.108000pt;}
.yc_c00311{bottom:810.240000pt;}
.yb_c00311{bottom:813.360000pt;}
.ya_c00311{bottom:828.480000pt;}
.y9_c00311{bottom:843.121333pt;}
.y8_c00311{bottom:845.188000pt;}
.y6_c00311{bottom:865.204000pt;}
.y7_c00311{bottom:869.148000pt;}
.y5_c00311{bottom:901.200000pt;}
.y4_c00311{bottom:930.104000pt;}
.y3_c00311{bottom:939.600000pt;}
.y2_c00311{bottom:959.189333pt;}
.y1_c00311{bottom:961.225333pt;}
.h4_c00311{height:16.000000pt;}
.h3_c00311{height:21.333333pt;}
.h9_c00311{height:26.666667pt;}
.h2_c00311{height:32.000000pt;}
.hb_c00311{height:37.333333pt;}
.h7_c00311{height:42.666667pt;}
.h8_c00311{height:48.000000pt;}
.h6_c00311{height:53.333333pt;}
.h5_c00311{height:64.000000pt;}
.hd_c00311{height:69.322308pt;}
.ha_c00311{height:69.333333pt;}
.hc_c00311{height:101.338400pt;}
.h1_c00311{height:1036.000000pt;}
.h0_c00311{height:1036.266667pt;}
.w0_c00311{width:813.333333pt;}
.x0_c00311{left:0.000000pt;}
.x1c_c00311{left:59.280000pt;}
.x26_c00311{left:109.920000pt;}
.x1d_c00311{left:114.240000pt;}
.x27_c00311{left:123.360000pt;}
.x29_c00311{left:130.080000pt;}
.x28_c00311{left:131.520000pt;}
.x20_c00311{left:132.720000pt;}
.x2a_c00311{left:144.000000pt;}
.x1f_c00311{left:150.480000pt;}
.x3e_c00311{left:154.320000pt;}
.x3f_c00311{left:173.760000pt;}
.x1e_c00311{left:179.760000pt;}
.x1_c00311{left:197.520000pt;}
.x5_c00311{left:198.960000pt;}
.x14_c00311{left:200.160000pt;}
.x6_c00311{left:204.240000pt;}
.x13_c00311{left:208.800000pt;}
.x16_c00311{left:223.200000pt;}
.x7_c00311{left:226.320000pt;}
.x15_c00311{left:241.680000pt;}
.x8_c00311{left:252.720000pt;}
.x9_c00311{left:282.960000pt;}
.x3a_c00311{left:316.560000pt;}
.xa_c00311{left:338.640000pt;}
.xb_c00311{left:352.320000pt;}
.x2_c00311{left:354.720000pt;}
.xc_c00311{left:361.920000pt;}
.xd_c00311{left:375.120000pt;}
.x3_c00311{left:392.160000pt;}
.xe_c00311{left:403.920000pt;}
.x3b_c00311{left:406.800000pt;}
.x2f_c00311{left:416.640000pt;}
.x3c_c00311{left:431.760000pt;}
.x3d_c00311{left:440.640000pt;}
.xf_c00311{left:441.600000pt;}
.x2e_c00311{left:443.520000pt;}
.x2b_c00311{left:445.920000pt;}
.x36_c00311{left:447.360000pt;}
.x2c_c00311{left:455.760000pt;}
.x2d_c00311{left:465.120000pt;}
.x4_c00311{left:472.560000pt;}
.x34_c00311{left:484.080000pt;}
.x10_c00311{left:486.720000pt;}
.x30_c00311{left:493.200000pt;}
.x38_c00311{left:502.560000pt;}
.x48_c00311{left:505.200000pt;}
.x11_c00311{left:507.600000pt;}
.x35_c00311{left:512.400000pt;}
.x39_c00311{left:514.320000pt;}
.x31_c00311{left:518.640000pt;}
.x12_c00311{left:528.000000pt;}
.x37_c00311{left:543.360000pt;}
.x32_c00311{left:547.920000pt;}
.x1a_c00311{left:549.600000pt;}
.x41_c00311{left:560.400000pt;}
.x33_c00311{left:561.360000pt;}
.x24_c00311{left:568.560000pt;}
.x21_c00311{left:576.000000pt;}
.x17_c00311{left:577.200000pt;}
.x42_c00311{left:580.320000pt;}
.x46_c00311{left:582.889333pt;}
.x44_c00311{left:588.000000pt;}
.x1b_c00311{left:594.000000pt;}
.x43_c00311{left:596.640000pt;}
.x18_c00311{left:599.520000pt;}
.x19_c00311{left:604.800000pt;}
.x22_c00311{left:622.560000pt;}
.x25_c00311{left:637.200000pt;}
.x23_c00311{left:658.080000pt;}
.x40_c00311{left:659.430568pt;}
.x47_c00311{left:662.432377pt;}
.x45_c00311{left:684.000000pt;}
}





/* 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_c00312 {
    display:none;
  }
  .loading-indicator_c00312.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00312 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_c00312 { 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_c00312" -> "#page-container .classname_c00312")
 */
.pf_c00312 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00312 { /* 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_c00312.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00312 { /* 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_c00312 { /* 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_c00312 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00312 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00312 {overflow:visible;}
  }
}
.c_c00312 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00312 { /* 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_c00312:after { /* webkit #35443 */
  content: '';
}
.t_c00312:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00312 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 */
}
.__c00312 { /* 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_c00312 { /* info for Javascript */
  display:none;
}
.l_c00312 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00312 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00312 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00312: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_c00312 {
    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_c00312.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00312.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_c00312 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00312{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00312;src:url('chunks/assets/font_b11a17f404e7258299fdf971.woff2')format("woff");}.ff1_c00312{font-family:ff1_c00312;line-height:1.000000;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;}
.me3_c00312{transform:matrix(0.156470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156470,0.000000,0.000000,0.250000,0,0);}
.mc3_c00312{transform:matrix(0.177335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177335,0.000000,0.000000,0.250000,0,0);}
.mc1_c00312{transform:matrix(0.183070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183070,0.000000,0.000000,0.250000,0,0);}
.mbf_c00312{transform:matrix(0.184105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184105,0.000000,0.000000,0.250000,0,0);}
.m1_c00312{transform:matrix(0.184222,0.001105,-0.001500,0.249996,0,0);-ms-transform:matrix(0.184222,0.001105,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.184222,0.001105,-0.001500,0.249996,0,0);}
.mbc_c00312{transform:matrix(0.187895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187895,0.000000,0.000000,0.250000,0,0);}
.mc2_c00312{transform:matrix(0.189365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189365,0.000000,0.000000,0.250000,0,0);}
.m11a_c00312{transform:matrix(0.189835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189835,0.000000,0.000000,0.250000,0,0);}
.me_c00312{transform:matrix(0.191722,0.001150,-0.001500,0.249996,0,0);-ms-transform:matrix(0.191722,0.001150,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.191722,0.001150,-0.001500,0.249996,0,0);}
.mc0_c00312{transform:matrix(0.192110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192110,0.000000,0.000000,0.250000,0,0);}
.mbb_c00312{transform:matrix(0.193675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193675,0.000000,0.000000,0.250000,0,0);}
.m68_c00312{transform:matrix(0.193732,0.001162,-0.001500,0.249996,0,0);-ms-transform:matrix(0.193732,0.001162,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.193732,0.001162,-0.001500,0.249996,0,0);}
.m15_c00312{transform:matrix(0.195041,0.001170,-0.001500,0.249996,0,0);-ms-transform:matrix(0.195041,0.001170,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.195041,0.001170,-0.001500,0.249996,0,0);}
.m73_c00312{transform:matrix(0.195505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195505,0.000000,0.000000,0.250000,0,0);}
.m121_c00312{transform:matrix(0.196255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196255,0.000000,0.000000,0.250000,0,0);}
.m122_c00312{transform:matrix(0.197385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197385,0.000000,0.000000,0.250000,0,0);}
.mbe_c00312{transform:matrix(0.198810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198810,0.000000,0.000000,0.250000,0,0);}
.m81_c00312{transform:matrix(0.199280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199280,0.000000,0.000000,0.250000,0,0);}
.m7a_c00312{transform:matrix(0.200095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200095,0.000000,0.000000,0.250000,0,0);}
.maa_c00312{transform:matrix(0.201030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201030,0.000000,0.000000,0.250000,0,0);}
.m10d_c00312{transform:matrix(0.201805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201805,0.000000,0.000000,0.250000,0,0);}
.m11e_c00312{transform:matrix(0.203710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203710,0.000000,0.000000,0.250000,0,0);}
.mc4_c00312{transform:matrix(0.204065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204065,0.000000,0.000000,0.250000,0,0);}
.m33_c00312{transform:matrix(0.204326,0.001226,-0.001500,0.249996,0,0);-ms-transform:matrix(0.204326,0.001226,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.204326,0.001226,-0.001500,0.249996,0,0);}
.m90_c00312{transform:matrix(0.204435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204435,0.000000,0.000000,0.250000,0,0);}
.m12_c00312{transform:matrix(0.205051,0.001230,-0.001500,0.249996,0,0);-ms-transform:matrix(0.205051,0.001230,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.205051,0.001230,-0.001500,0.249996,0,0);}
.m127_c00312{transform:matrix(0.205575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205575,0.000000,0.000000,0.250000,0,0);}
.m117_c00312{transform:matrix(0.205770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205770,0.000000,0.000000,0.250000,0,0);}
.mba_c00312{transform:matrix(0.206245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206245,0.000000,0.000000,0.250000,0,0);}
.m123_c00312{transform:matrix(0.206270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206270,0.000000,0.000000,0.250000,0,0);}
.m92_c00312{transform:matrix(0.206470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206470,0.000000,0.000000,0.250000,0,0);}
.m130_c00312{transform:matrix(0.206973,0.001656,-0.002000,0.249992,0,0);-ms-transform:matrix(0.206973,0.001656,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.206973,0.001656,-0.002000,0.249992,0,0);}
.m126_c00312{transform:matrix(0.207065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207065,0.000000,0.000000,0.250000,0,0);}
.m75_c00312{transform:matrix(0.208065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208065,0.000000,0.000000,0.250000,0,0);}
.m11c_c00312{transform:matrix(0.208885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208885,0.000000,0.000000,0.250000,0,0);}
.mb_c00312{transform:matrix(0.209471,0.001257,-0.001500,0.249996,0,0);-ms-transform:matrix(0.209471,0.001257,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.209471,0.001257,-0.001500,0.249996,0,0);}
.m116_c00312{transform:matrix(0.209805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209805,0.000000,0.000000,0.250000,0,0);}
.m119_c00312{transform:matrix(0.210020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210020,0.000000,0.000000,0.250000,0,0);}
.m10_c00312{transform:matrix(0.210391,0.001262,-0.001500,0.249996,0,0);-ms-transform:matrix(0.210391,0.001262,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.210391,0.001262,-0.001500,0.249996,0,0);}
.m77_c00312{transform:matrix(0.210395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210395,0.000000,0.000000,0.250000,0,0);}
.m133_c00312{transform:matrix(0.210613,0.001685,-0.002000,0.249992,0,0);-ms-transform:matrix(0.210613,0.001685,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.210613,0.001685,-0.002000,0.249992,0,0);}
.mbd_c00312{transform:matrix(0.210825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210825,0.000000,0.000000,0.250000,0,0);}
.m125_c00312{transform:matrix(0.211460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211460,0.000000,0.000000,0.250000,0,0);}
.ma_c00312{transform:matrix(0.211586,0.001270,-0.001500,0.249996,0,0);-ms-transform:matrix(0.211586,0.001270,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.211586,0.001270,-0.001500,0.249996,0,0);}
.m8_c00312{transform:matrix(0.212146,0.001273,-0.001500,0.249996,0,0);-ms-transform:matrix(0.212146,0.001273,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.212146,0.001273,-0.001500,0.249996,0,0);}
.ma9_c00312{transform:matrix(0.212185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212185,0.000000,0.000000,0.250000,0,0);}
.mf_c00312{transform:matrix(0.212236,0.001273,-0.001500,0.249996,0,0);-ms-transform:matrix(0.212236,0.001273,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.212236,0.001273,-0.001500,0.249996,0,0);}
.m74_c00312{transform:matrix(0.212240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212240,0.000000,0.000000,0.250000,0,0);}
.m3_c00312{transform:matrix(0.212296,0.001274,-0.001500,0.249996,0,0);-ms-transform:matrix(0.212296,0.001274,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.212296,0.001274,-0.001500,0.249996,0,0);}
.mb7_c00312{transform:matrix(0.212510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212510,0.000000,0.000000,0.250000,0,0);}
.mc6_c00312{transform:matrix(0.212730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212730,0.000000,0.000000,0.250000,0,0);}
.m124_c00312{transform:matrix(0.212780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212780,0.000000,0.000000,0.250000,0,0);}
.m5_c00312{transform:matrix(0.212946,0.001278,-0.001500,0.249996,0,0);-ms-transform:matrix(0.212946,0.001278,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.212946,0.001278,-0.001500,0.249996,0,0);}
.m13_c00312{transform:matrix(0.213306,0.001280,-0.001500,0.249996,0,0);-ms-transform:matrix(0.213306,0.001280,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.213306,0.001280,-0.001500,0.249996,0,0);}
.m79_c00312{transform:matrix(0.214620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214620,0.000000,0.000000,0.250000,0,0);}
.mac_c00312{transform:matrix(0.214905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214905,0.000000,0.000000,0.250000,0,0);}
.m6_c00312{transform:matrix(0.215481,0.001293,-0.001500,0.249996,0,0);-ms-transform:matrix(0.215481,0.001293,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.215481,0.001293,-0.001500,0.249996,0,0);}
.m1f_c00312{transform:matrix(0.215751,0.001295,-0.001500,0.249996,0,0);-ms-transform:matrix(0.215751,0.001295,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.215751,0.001295,-0.001500,0.249996,0,0);}
.m78_c00312{transform:matrix(0.215910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215910,0.000000,0.000000,0.250000,0,0);}
.m132_c00312{transform:matrix(0.216718,0.001734,-0.002000,0.249992,0,0);-ms-transform:matrix(0.216718,0.001734,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.216718,0.001734,-0.002000,0.249992,0,0);}
.m17_c00312{transform:matrix(0.216786,0.001301,-0.001500,0.249996,0,0);-ms-transform:matrix(0.216786,0.001301,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.216786,0.001301,-0.001500,0.249996,0,0);}
.m1d_c00312{transform:matrix(0.217031,0.001302,-0.001500,0.249996,0,0);-ms-transform:matrix(0.217031,0.001302,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.217031,0.001302,-0.001500,0.249996,0,0);}
.m9c_c00312{transform:matrix(0.217035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217035,0.000000,0.000000,0.250000,0,0);}
.m62_c00312{transform:matrix(0.217081,0.001302,-0.001500,0.249996,0,0);-ms-transform:matrix(0.217081,0.001302,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.217081,0.001302,-0.001500,0.249996,0,0);}
.m86_c00312{transform:matrix(0.217385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217385,0.000000,0.000000,0.250000,0,0);}
.m8a_c00312{transform:matrix(0.218015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218015,0.000000,0.000000,0.250000,0,0);}
.m8c_c00312{transform:matrix(0.218090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218090,0.000000,0.000000,0.250000,0,0);}
.mc_c00312{transform:matrix(0.218376,0.001310,-0.001500,0.249996,0,0);-ms-transform:matrix(0.218376,0.001310,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.218376,0.001310,-0.001500,0.249996,0,0);}
.m114_c00312{transform:matrix(0.219165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219165,0.000000,0.000000,0.250000,0,0);}
.m12f_c00312{transform:matrix(0.219373,0.001755,-0.002000,0.249992,0,0);-ms-transform:matrix(0.219373,0.001755,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.219373,0.001755,-0.002000,0.249992,0,0);}
.maf_c00312{transform:matrix(0.219910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219910,0.000000,0.000000,0.250000,0,0);}
.m11f_c00312{transform:matrix(0.220075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220075,0.000000,0.000000,0.250000,0,0);}
.me9_c00312{transform:matrix(0.220195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220195,0.000000,0.000000,0.250000,0,0);}
.m134_c00312{transform:matrix(0.220908,0.001767,-0.002000,0.249992,0,0);-ms-transform:matrix(0.220908,0.001767,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.220908,0.001767,-0.002000,0.249992,0,0);}
.md7_c00312{transform:matrix(0.221120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221120,0.000000,0.000000,0.250000,0,0);}
.m2b_c00312{transform:matrix(0.221876,0.001331,-0.001500,0.249996,0,0);-ms-transform:matrix(0.221876,0.001331,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.221876,0.001331,-0.001500,0.249996,0,0);}
.ma7_c00312{transform:matrix(0.221985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221985,0.000000,0.000000,0.250000,0,0);}
.mf6_c00312{transform:matrix(0.222515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222515,0.000000,0.000000,0.250000,0,0);}
.m70_c00312{transform:matrix(0.222621,0.001336,-0.001500,0.249996,0,0);-ms-transform:matrix(0.222621,0.001336,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.222621,0.001336,-0.001500,0.249996,0,0);}
.m4d_c00312{transform:matrix(0.223266,0.001340,-0.001500,0.249996,0,0);-ms-transform:matrix(0.223266,0.001340,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.223266,0.001340,-0.001500,0.249996,0,0);}
.mee_c00312{transform:matrix(0.224035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224035,0.000000,0.000000,0.250000,0,0);}
.ma4_c00312{transform:matrix(0.224180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224180,0.000000,0.000000,0.250000,0,0);}
.m11d_c00312{transform:matrix(0.224520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224520,0.000000,0.000000,0.250000,0,0);}
.md3_c00312{transform:matrix(0.224655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224655,0.000000,0.000000,0.250000,0,0);}
.m3b_c00312{transform:matrix(0.224676,0.001348,-0.001500,0.249996,0,0);-ms-transform:matrix(0.224676,0.001348,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.224676,0.001348,-0.001500,0.249996,0,0);}
.mb6_c00312{transform:matrix(0.225315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225315,0.000000,0.000000,0.250000,0,0);}
.m22_c00312{transform:matrix(0.225341,0.001352,-0.001500,0.249996,0,0);-ms-transform:matrix(0.225341,0.001352,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.225341,0.001352,-0.001500,0.249996,0,0);}
.m138_c00312{transform:matrix(0.225488,0.001804,-0.002000,0.249992,0,0);-ms-transform:matrix(0.225488,0.001804,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.225488,0.001804,-0.002000,0.249992,0,0);}
.md2_c00312{transform:matrix(0.225505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225505,0.000000,0.000000,0.250000,0,0);}
.m1c_c00312{transform:matrix(0.226021,0.001356,-0.001500,0.249996,0,0);-ms-transform:matrix(0.226021,0.001356,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.226021,0.001356,-0.001500,0.249996,0,0);}
.m5d_c00312{transform:matrix(0.226061,0.001356,-0.001500,0.249996,0,0);-ms-transform:matrix(0.226061,0.001356,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.226061,0.001356,-0.001500,0.249996,0,0);}
.m93_c00312{transform:matrix(0.226175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226175,0.000000,0.000000,0.250000,0,0);}
.md9_c00312{transform:matrix(0.226575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226575,0.000000,0.000000,0.250000,0,0);}
.m40_c00312{transform:matrix(0.226741,0.001360,-0.001500,0.249996,0,0);-ms-transform:matrix(0.226741,0.001360,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.226741,0.001360,-0.001500,0.249996,0,0);}
.m10b_c00312{transform:matrix(0.227060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227060,0.000000,0.000000,0.250000,0,0);}
.m4_c00312{transform:matrix(0.227221,0.001363,-0.001500,0.249996,0,0);-ms-transform:matrix(0.227221,0.001363,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.227221,0.001363,-0.001500,0.249996,0,0);}
.ma2_c00312{transform:matrix(0.227245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227245,0.000000,0.000000,0.250000,0,0);}
.m136_c00312{transform:matrix(0.227678,0.001821,-0.002000,0.249992,0,0);-ms-transform:matrix(0.227678,0.001821,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.227678,0.001821,-0.002000,0.249992,0,0);}
.m118_c00312{transform:matrix(0.227700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227700,0.000000,0.000000,0.250000,0,0);}
.mef_c00312{transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);}
.m94_c00312{transform:matrix(0.227855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227855,0.000000,0.000000,0.250000,0,0);}
.m97_c00312{transform:matrix(0.228470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228470,0.000000,0.000000,0.250000,0,0);}
.md_c00312{transform:matrix(0.228631,0.001372,-0.001500,0.249996,0,0);-ms-transform:matrix(0.228631,0.001372,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.228631,0.001372,-0.001500,0.249996,0,0);}
.m2_c00312{transform:matrix(0.228991,0.001374,-0.001500,0.249996,0,0);-ms-transform:matrix(0.228991,0.001374,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.228991,0.001374,-0.001500,0.249996,0,0);}
.mfd_c00312{transform:matrix(0.229195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229195,0.000000,0.000000,0.250000,0,0);}
.mad_c00312{transform:matrix(0.229205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229205,0.000000,0.000000,0.250000,0,0);}
.m91_c00312{transform:matrix(0.229330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229330,0.000000,0.000000,0.250000,0,0);}
.md6_c00312{transform:matrix(0.229360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229360,0.000000,0.000000,0.250000,0,0);}
.m4e_c00312{transform:matrix(0.229621,0.001378,-0.001500,0.249996,0,0);-ms-transform:matrix(0.229621,0.001378,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.229621,0.001378,-0.001500,0.249996,0,0);}
.m120_c00312{transform:matrix(0.229705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229705,0.000000,0.000000,0.250000,0,0);}
.mea_c00312{transform:matrix(0.229775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229775,0.000000,0.000000,0.250000,0,0);}
.m11_c00312{transform:matrix(0.229781,0.001379,-0.001500,0.249996,0,0);-ms-transform:matrix(0.229781,0.001379,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.229781,0.001379,-0.001500,0.249996,0,0);}
.me7_c00312{transform:matrix(0.229930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229930,0.000000,0.000000,0.250000,0,0);}
.m11b_c00312{transform:matrix(0.230220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230220,0.000000,0.000000,0.250000,0,0);}
.m1b_c00312{transform:matrix(0.230421,0.001383,-0.001500,0.249996,0,0);-ms-transform:matrix(0.230421,0.001383,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.230421,0.001383,-0.001500,0.249996,0,0);}
.m96_c00312{transform:matrix(0.231700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231700,0.000000,0.000000,0.250000,0,0);}
.m112_c00312{transform:matrix(0.231835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231835,0.000000,0.000000,0.250000,0,0);}
.m113_c00312{transform:matrix(0.231905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231905,0.000000,0.000000,0.250000,0,0);}
.m135_c00312{transform:matrix(0.232348,0.001859,-0.002000,0.249992,0,0);-ms-transform:matrix(0.232348,0.001859,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.232348,0.001859,-0.002000,0.249992,0,0);}
.m9a_c00312{transform:matrix(0.232495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232495,0.000000,0.000000,0.250000,0,0);}
.m7_c00312{transform:matrix(0.233221,0.001399,-0.001500,0.249996,0,0);-ms-transform:matrix(0.233221,0.001399,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.233221,0.001399,-0.001500,0.249996,0,0);}
.m83_c00312{transform:matrix(0.233495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233495,0.000000,0.000000,0.250000,0,0);}
.ma3_c00312{transform:matrix(0.233840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233840,0.000000,0.000000,0.250000,0,0);}
.m111_c00312{transform:matrix(0.234480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234480,0.000000,0.000000,0.250000,0,0);}
.med_c00312{transform:matrix(0.234550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234550,0.000000,0.000000,0.250000,0,0);}
.md4_c00312{transform:matrix(0.234640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234640,0.000000,0.000000,0.250000,0,0);}
.m0_c00312{transform:matrix(0.234746,0.001408,-0.001500,0.249996,0,0);-ms-transform:matrix(0.234746,0.001408,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.234746,0.001408,-0.001500,0.249996,0,0);}
.m37_c00312{transform:matrix(0.235076,0.001410,-0.001500,0.249996,0,0);-ms-transform:matrix(0.235076,0.001410,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.235076,0.001410,-0.001500,0.249996,0,0);}
.ma8_c00312{transform:matrix(0.235215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235215,0.000000,0.000000,0.250000,0,0);}
.mae_c00312{transform:matrix(0.236070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236070,0.000000,0.000000,0.250000,0,0);}
.mc9_c00312{transform:matrix(0.236130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236130,0.000000,0.000000,0.250000,0,0);}
.m27_c00312{transform:matrix(0.236441,0.001419,-0.001500,0.249996,0,0);-ms-transform:matrix(0.236441,0.001419,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.236441,0.001419,-0.001500,0.249996,0,0);}
.mfc_c00312{transform:matrix(0.236720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236720,0.000000,0.000000,0.250000,0,0);}
.m5f_c00312{transform:matrix(0.237181,0.001423,-0.001500,0.249996,0,0);-ms-transform:matrix(0.237181,0.001423,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.237181,0.001423,-0.001500,0.249996,0,0);}
.m8f_c00312{transform:matrix(0.237330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237330,0.000000,0.000000,0.250000,0,0);}
.m115_c00312{transform:matrix(0.237485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237485,0.000000,0.000000,0.250000,0,0);}
.m9_c00312{transform:matrix(0.237596,0.001426,-0.001500,0.249996,0,0);-ms-transform:matrix(0.237596,0.001426,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.237596,0.001426,-0.001500,0.249996,0,0);}
.m9b_c00312{transform:matrix(0.237755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237755,0.000000,0.000000,0.250000,0,0);}
.m42_c00312{transform:matrix(0.237971,0.001428,-0.001500,0.249996,0,0);-ms-transform:matrix(0.237971,0.001428,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.237971,0.001428,-0.001500,0.249996,0,0);}
.m76_c00312{transform:matrix(0.238175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238175,0.000000,0.000000,0.250000,0,0);}
.m7b_c00312{transform:matrix(0.238195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238195,0.000000,0.000000,0.250000,0,0);}
.me6_c00312{transform:matrix(0.239120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239120,0.000000,0.000000,0.250000,0,0);}
.m53_c00312{transform:matrix(0.239291,0.001436,-0.001500,0.249996,0,0);-ms-transform:matrix(0.239291,0.001436,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.239291,0.001436,-0.001500,0.249996,0,0);}
.m14_c00312{transform:matrix(0.239696,0.001438,-0.001500,0.249996,0,0);-ms-transform:matrix(0.239696,0.001438,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.239696,0.001438,-0.001500,0.249996,0,0);}
.m45_c00312{transform:matrix(0.239906,0.001439,-0.001500,0.249996,0,0);-ms-transform:matrix(0.239906,0.001439,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.239906,0.001439,-0.001500,0.249996,0,0);}
.mf8_c00312{transform:matrix(0.239910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239910,0.000000,0.000000,0.250000,0,0);}
.mec_c00312{transform:matrix(0.239960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239960,0.000000,0.000000,0.250000,0,0);}
.m3a_c00312{transform:matrix(0.240101,0.001441,-0.001500,0.249996,0,0);-ms-transform:matrix(0.240101,0.001441,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.240101,0.001441,-0.001500,0.249996,0,0);}
.mab_c00312{transform:matrix(0.240565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240565,0.000000,0.000000,0.250000,0,0);}
.m4c_c00312{transform:matrix(0.240631,0.001444,-0.001500,0.249996,0,0);-ms-transform:matrix(0.240631,0.001444,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.240631,0.001444,-0.001500,0.249996,0,0);}
.md5_c00312{transform:matrix(0.240670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240670,0.000000,0.000000,0.250000,0,0);}
.m72_c00312{transform:matrix(0.240870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240870,0.000000,0.000000,0.250000,0,0);}
.m9f_c00312{transform:matrix(0.240965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240965,0.000000,0.000000,0.250000,0,0);}
.m2a_c00312{transform:matrix(0.241296,0.001448,-0.001500,0.249996,0,0);-ms-transform:matrix(0.241296,0.001448,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.241296,0.001448,-0.001500,0.249996,0,0);}
.m101_c00312{transform:matrix(0.241300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241300,0.000000,0.000000,0.250000,0,0);}
.mb8_c00312{transform:matrix(0.241560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241560,0.000000,0.000000,0.250000,0,0);}
.m60_c00312{transform:matrix(0.241776,0.001451,-0.001500,0.249996,0,0);-ms-transform:matrix(0.241776,0.001451,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.241776,0.001451,-0.001500,0.249996,0,0);}
.mce_c00312{transform:matrix(0.241925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241925,0.000000,0.000000,0.250000,0,0);}
.md8_c00312{transform:matrix(0.242260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242260,0.000000,0.000000,0.250000,0,0);}
.mdb_c00312{transform:matrix(0.242275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242275,0.000000,0.000000,0.250000,0,0);}
.m7c_c00312{transform:matrix(0.242675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242675,0.000000,0.000000,0.250000,0,0);}
.mf3_c00312{transform:matrix(0.242715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242715,0.000000,0.000000,0.250000,0,0);}
.m7d_c00312{transform:matrix(0.242775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242775,0.000000,0.000000,0.250000,0,0);}
.ma0_c00312{transform:matrix(0.242855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242855,0.000000,0.000000,0.250000,0,0);}
.m1a_c00312{transform:matrix(0.243181,0.001459,-0.001500,0.249996,0,0);-ms-transform:matrix(0.243181,0.001459,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.243181,0.001459,-0.001500,0.249996,0,0);}
.mf1_c00312{transform:matrix(0.243465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243465,0.000000,0.000000,0.250000,0,0);}
.m66_c00312{transform:matrix(0.243491,0.001461,-0.001500,0.249996,0,0);-ms-transform:matrix(0.243491,0.001461,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.243491,0.001461,-0.001500,0.249996,0,0);}
.md1_c00312{transform:matrix(0.243810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243810,0.000000,0.000000,0.250000,0,0);}
.mf9_c00312{transform:matrix(0.243840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243840,0.000000,0.000000,0.250000,0,0);}
.mda_c00312{transform:matrix(0.243855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243855,0.000000,0.000000,0.250000,0,0);}
.m24_c00312{transform:matrix(0.244091,0.001465,-0.001500,0.249996,0,0);-ms-transform:matrix(0.244091,0.001465,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.244091,0.001465,-0.001500,0.249996,0,0);}
.m88_c00312{transform:matrix(0.244130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244130,0.000000,0.000000,0.250000,0,0);}
.mb2_c00312{transform:matrix(0.244195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244195,0.000000,0.000000,0.250000,0,0);}
.m137_c00312{transform:matrix(0.244707,0.001958,-0.002000,0.249992,0,0);-ms-transform:matrix(0.244707,0.001958,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.244707,0.001958,-0.002000,0.249992,0,0);}
.m3e_c00312{transform:matrix(0.244756,0.001469,-0.001500,0.249996,0,0);-ms-transform:matrix(0.244756,0.001469,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.244756,0.001469,-0.001500,0.249996,0,0);}
.m84_c00312{transform:matrix(0.244770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244770,0.000000,0.000000,0.250000,0,0);}
.m51_c00312{transform:matrix(0.244866,0.001469,-0.001500,0.249996,0,0);-ms-transform:matrix(0.244866,0.001469,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.244866,0.001469,-0.001500,0.249996,0,0);}
.mb3_c00312{transform:matrix(0.245215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245215,0.000000,0.000000,0.250000,0,0);}
.mc7_c00312{transform:matrix(0.245365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245365,0.000000,0.000000,0.250000,0,0);}
.m7f_c00312{transform:matrix(0.245445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245445,0.000000,0.000000,0.250000,0,0);}
.mcf_c00312{transform:matrix(0.245460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245460,0.000000,0.000000,0.250000,0,0);}
.m105_c00312{transform:matrix(0.245805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245805,0.000000,0.000000,0.250000,0,0);}
.m2e_c00312{transform:matrix(0.246191,0.001477,-0.001500,0.249996,0,0);-ms-transform:matrix(0.246191,0.001477,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.246191,0.001477,-0.001500,0.249996,0,0);}
.m7e_c00312{transform:matrix(0.246260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246260,0.000000,0.000000,0.250000,0,0);}
.m54_c00312{transform:matrix(0.246676,0.001480,-0.001500,0.249996,0,0);-ms-transform:matrix(0.246676,0.001480,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.246676,0.001480,-0.001500,0.249996,0,0);}
.m56_c00312{transform:matrix(0.246726,0.001480,-0.001500,0.249996,0,0);-ms-transform:matrix(0.246726,0.001480,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.246726,0.001480,-0.001500,0.249996,0,0);}
.me1_c00312{transform:matrix(0.246845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246845,0.000000,0.000000,0.250000,0,0);}
.m131_c00312{transform:matrix(0.246847,0.001975,-0.002000,0.249992,0,0);-ms-transform:matrix(0.246847,0.001975,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.246847,0.001975,-0.002000,0.249992,0,0);}
.m20_c00312{transform:matrix(0.247101,0.001483,-0.001500,0.249996,0,0);-ms-transform:matrix(0.247101,0.001483,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.247101,0.001483,-0.001500,0.249996,0,0);}
.m100_c00312{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m85_c00312{transform:matrix(0.247400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247400,0.000000,0.000000,0.250000,0,0);}
.mcc_c00312{transform:matrix(0.247685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247685,0.000000,0.000000,0.250000,0,0);}
.m6f_c00312{transform:matrix(0.247691,0.001486,-0.001500,0.249996,0,0);-ms-transform:matrix(0.247691,0.001486,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.247691,0.001486,-0.001500,0.249996,0,0);}
.me8_c00312{transform:matrix(0.247735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247735,0.000000,0.000000,0.250000,0,0);}
.m6a_c00312{transform:matrix(0.248441,0.001491,-0.001500,0.249996,0,0);-ms-transform:matrix(0.248441,0.001491,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.248441,0.001491,-0.001500,0.249996,0,0);}
.mf0_c00312{transform:matrix(0.248545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248545,0.000000,0.000000,0.250000,0,0);}
.m104_c00312{transform:matrix(0.248555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248555,0.000000,0.000000,0.250000,0,0);}
.m4a_c00312{transform:matrix(0.249036,0.001494,-0.001500,0.249996,0,0);-ms-transform:matrix(0.249036,0.001494,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.249036,0.001494,-0.001500,0.249996,0,0);}
.mf2_c00312{transform:matrix(0.249215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249215,0.000000,0.000000,0.250000,0,0);}
.m82_c00312{transform:matrix(0.249350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249350,0.000000,0.000000,0.250000,0,0);}
.m28_c00312{transform:matrix(0.249491,0.001497,-0.001500,0.249996,0,0);-ms-transform:matrix(0.249491,0.001497,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.249491,0.001497,-0.001500,0.249996,0,0);}
.m107_c00312{transform:matrix(0.249570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249570,0.000000,0.000000,0.250000,0,0);}
.mfe_c00312{transform:matrix(0.249995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249995,0.000000,0.000000,0.250000,0,0);}
.mb5_c00312{transform:matrix(0.250195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250195,0.000000,0.000000,0.250000,0,0);}
.m59_c00312{transform:matrix(0.250385,0.001502,-0.001500,0.249996,0,0);-ms-transform:matrix(0.250385,0.001502,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.250385,0.001502,-0.001500,0.249996,0,0);}
.me0_c00312{transform:matrix(0.250535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250535,0.000000,0.000000,0.250000,0,0);}
.mff_c00312{transform:matrix(0.251445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251445,0.000000,0.000000,0.250000,0,0);}
.m10f_c00312{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m2f_c00312{transform:matrix(0.252920,0.001518,-0.001500,0.249996,0,0);-ms-transform:matrix(0.252920,0.001518,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.252920,0.001518,-0.001500,0.249996,0,0);}
.mfb_c00312{transform:matrix(0.253360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253360,0.000000,0.000000,0.250000,0,0);}
.m30_c00312{transform:matrix(0.253720,0.001522,-0.001500,0.249996,0,0);-ms-transform:matrix(0.253720,0.001522,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.253720,0.001522,-0.001500,0.249996,0,0);}
.md0_c00312{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m9e_c00312{transform:matrix(0.253810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253810,0.000000,0.000000,0.250000,0,0);}
.m102_c00312{transform:matrix(0.253930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253930,0.000000,0.000000,0.250000,0,0);}
.mc5_c00312{transform:matrix(0.254050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254050,0.000000,0.000000,0.250000,0,0);}
.mb4_c00312{transform:matrix(0.254195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254195,0.000000,0.000000,0.250000,0,0);}
.m4f_c00312{transform:matrix(0.254310,0.001526,-0.001500,0.249996,0,0);-ms-transform:matrix(0.254310,0.001526,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.254310,0.001526,-0.001500,0.249996,0,0);}
.m31_c00312{transform:matrix(0.254340,0.001526,-0.001500,0.249996,0,0);-ms-transform:matrix(0.254340,0.001526,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.254340,0.001526,-0.001500,0.249996,0,0);}
.ma1_c00312{transform:matrix(0.254365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254365,0.000000,0.000000,0.250000,0,0);}
.m80_c00312{transform:matrix(0.254380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254380,0.000000,0.000000,0.250000,0,0);}
.m99_c00312{transform:matrix(0.254580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254580,0.000000,0.000000,0.250000,0,0);}
.m34_c00312{transform:matrix(0.254680,0.001528,-0.001500,0.249996,0,0);-ms-transform:matrix(0.254680,0.001528,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.254680,0.001528,-0.001500,0.249996,0,0);}
.m89_c00312{transform:matrix(0.254975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254975,0.000000,0.000000,0.250000,0,0);}
.m6d_c00312{transform:matrix(0.254975,0.001530,-0.001500,0.249996,0,0);-ms-transform:matrix(0.254975,0.001530,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.254975,0.001530,-0.001500,0.249996,0,0);}
.mcb_c00312{transform:matrix(0.255440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255440,0.000000,0.000000,0.250000,0,0);}
.m18_c00312{transform:matrix(0.255645,0.001534,-0.001500,0.249996,0,0);-ms-transform:matrix(0.255645,0.001534,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.255645,0.001534,-0.001500,0.249996,0,0);}
.m1e_c00312{transform:matrix(0.255735,0.001534,-0.001500,0.249996,0,0);-ms-transform:matrix(0.255735,0.001534,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.255735,0.001534,-0.001500,0.249996,0,0);}
.mc8_c00312{transform:matrix(0.255935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255935,0.000000,0.000000,0.250000,0,0);}
.m98_c00312{transform:matrix(0.256120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256120,0.000000,0.000000,0.250000,0,0);}
.m19_c00312{transform:matrix(0.256330,0.001538,-0.001500,0.249996,0,0);-ms-transform:matrix(0.256330,0.001538,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.256330,0.001538,-0.001500,0.249996,0,0);}
.m95_c00312{transform:matrix(0.256705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256705,0.000000,0.000000,0.250000,0,0);}
.mf5_c00312{transform:matrix(0.257005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257005,0.000000,0.000000,0.250000,0,0);}
.m38_c00312{transform:matrix(0.257180,0.001543,-0.001500,0.249996,0,0);-ms-transform:matrix(0.257180,0.001543,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.257180,0.001543,-0.001500,0.249996,0,0);}
.meb_c00312{transform:matrix(0.257220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257220,0.000000,0.000000,0.250000,0,0);}
.m9d_c00312{transform:matrix(0.257230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257230,0.000000,0.000000,0.250000,0,0);}
.m3c_c00312{transform:matrix(0.257545,0.001545,-0.001500,0.249996,0,0);-ms-transform:matrix(0.257545,0.001545,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.257545,0.001545,-0.001500,0.249996,0,0);}
.m44_c00312{transform:matrix(0.257565,0.001545,-0.001500,0.249996,0,0);-ms-transform:matrix(0.257565,0.001545,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.257565,0.001545,-0.001500,0.249996,0,0);}
.m10a_c00312{transform:matrix(0.257940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257940,0.000000,0.000000,0.250000,0,0);}
.m5a_c00312{transform:matrix(0.258070,0.001548,-0.001500,0.249996,0,0);-ms-transform:matrix(0.258070,0.001548,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.258070,0.001548,-0.001500,0.249996,0,0);}
.m5b_c00312{transform:matrix(0.258310,0.001550,-0.001500,0.249996,0,0);-ms-transform:matrix(0.258310,0.001550,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.258310,0.001550,-0.001500,0.249996,0,0);}
.m61_c00312{transform:matrix(0.258665,0.001552,-0.001500,0.249996,0,0);-ms-transform:matrix(0.258665,0.001552,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.258665,0.001552,-0.001500,0.249996,0,0);}
.m2d_c00312{transform:matrix(0.258985,0.001554,-0.001500,0.249996,0,0);-ms-transform:matrix(0.258985,0.001554,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.258985,0.001554,-0.001500,0.249996,0,0);}
.m48_c00312{transform:matrix(0.259220,0.001555,-0.001500,0.249996,0,0);-ms-transform:matrix(0.259220,0.001555,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.259220,0.001555,-0.001500,0.249996,0,0);}
.m5e_c00312{transform:matrix(0.259610,0.001558,-0.001500,0.249996,0,0);-ms-transform:matrix(0.259610,0.001558,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.259610,0.001558,-0.001500,0.249996,0,0);}
.m65_c00312{transform:matrix(0.259735,0.001558,-0.001500,0.249996,0,0);-ms-transform:matrix(0.259735,0.001558,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.259735,0.001558,-0.001500,0.249996,0,0);}
.me5_c00312{transform:matrix(0.259880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259880,0.000000,0.000000,0.250000,0,0);}
.m25_c00312{transform:matrix(0.260430,0.001563,-0.001500,0.249996,0,0);-ms-transform:matrix(0.260430,0.001563,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.260430,0.001563,-0.001500,0.249996,0,0);}
.m63_c00312{transform:matrix(0.261485,0.001569,-0.001500,0.249996,0,0);-ms-transform:matrix(0.261485,0.001569,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.261485,0.001569,-0.001500,0.249996,0,0);}
.mdd_c00312{transform:matrix(0.261940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261940,0.000000,0.000000,0.250000,0,0);}
.mdf_c00312{transform:matrix(0.263255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263255,0.000000,0.000000,0.250000,0,0);}
.me4_c00312{transform:matrix(0.263785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263785,0.000000,0.000000,0.250000,0,0);}
.m3f_c00312{transform:matrix(0.264490,0.001587,-0.001500,0.249996,0,0);-ms-transform:matrix(0.264490,0.001587,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.264490,0.001587,-0.001500,0.249996,0,0);}
.m8b_c00312{transform:matrix(0.264545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264545,0.000000,0.000000,0.250000,0,0);}
.m21_c00312{transform:matrix(0.265080,0.001590,-0.001500,0.249996,0,0);-ms-transform:matrix(0.265080,0.001590,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.265080,0.001590,-0.001500,0.249996,0,0);}
.m58_c00312{transform:matrix(0.265445,0.001593,-0.001500,0.249996,0,0);-ms-transform:matrix(0.265445,0.001593,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.265445,0.001593,-0.001500,0.249996,0,0);}
.me2_c00312{transform:matrix(0.265660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265660,0.000000,0.000000,0.250000,0,0);}
.m32_c00312{transform:matrix(0.265685,0.001594,-0.001500,0.249996,0,0);-ms-transform:matrix(0.265685,0.001594,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.265685,0.001594,-0.001500,0.249996,0,0);}
.mb1_c00312{transform:matrix(0.265985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265985,0.000000,0.000000,0.250000,0,0);}
.m87_c00312{transform:matrix(0.266965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266965,0.000000,0.000000,0.250000,0,0);}
.m6b_c00312{transform:matrix(0.267150,0.001603,-0.001500,0.249996,0,0);-ms-transform:matrix(0.267150,0.001603,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.267150,0.001603,-0.001500,0.249996,0,0);}
.m35_c00312{transform:matrix(0.267190,0.001603,-0.001500,0.249996,0,0);-ms-transform:matrix(0.267190,0.001603,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.267190,0.001603,-0.001500,0.249996,0,0);}
.m26_c00312{transform:matrix(0.267850,0.001607,-0.001500,0.249996,0,0);-ms-transform:matrix(0.267850,0.001607,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.267850,0.001607,-0.001500,0.249996,0,0);}
.m6c_c00312{transform:matrix(0.267860,0.001607,-0.001500,0.249996,0,0);-ms-transform:matrix(0.267860,0.001607,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.267860,0.001607,-0.001500,0.249996,0,0);}
.mf7_c00312{transform:matrix(0.268005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268005,0.000000,0.000000,0.250000,0,0);}
.ma6_c00312{transform:matrix(0.268405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268405,0.000000,0.000000,0.250000,0,0);}
.m5c_c00312{transform:matrix(0.268565,0.001611,-0.001500,0.249996,0,0);-ms-transform:matrix(0.268565,0.001611,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.268565,0.001611,-0.001500,0.249996,0,0);}
.m29_c00312{transform:matrix(0.268795,0.001613,-0.001500,0.249996,0,0);-ms-transform:matrix(0.268795,0.001613,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.268795,0.001613,-0.001500,0.249996,0,0);}
.m8e_c00312{transform:matrix(0.268835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268835,0.000000,0.000000,0.250000,0,0);}
.m49_c00312{transform:matrix(0.269615,0.001618,-0.001500,0.249996,0,0);-ms-transform:matrix(0.269615,0.001618,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.269615,0.001618,-0.001500,0.249996,0,0);}
.mfa_c00312{transform:matrix(0.269720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269720,0.000000,0.000000,0.250000,0,0);}
.m110_c00312{transform:matrix(0.269755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269755,0.000000,0.000000,0.250000,0,0);}
.mcd_c00312{transform:matrix(0.269940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269940,0.000000,0.000000,0.250000,0,0);}
.mde_c00312{transform:matrix(0.269975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269975,0.000000,0.000000,0.250000,0,0);}
.mf4_c00312{transform:matrix(0.270010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270010,0.000000,0.000000,0.250000,0,0);}
.m50_c00312{transform:matrix(0.270035,0.001620,-0.001500,0.249996,0,0);-ms-transform:matrix(0.270035,0.001620,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.270035,0.001620,-0.001500,0.249996,0,0);}
.m57_c00312{transform:matrix(0.270095,0.001621,-0.001500,0.249996,0,0);-ms-transform:matrix(0.270095,0.001621,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.270095,0.001621,-0.001500,0.249996,0,0);}
.m108_c00312{transform:matrix(0.270640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270640,0.000000,0.000000,0.250000,0,0);}
.m39_c00312{transform:matrix(0.270890,0.001625,-0.001500,0.249996,0,0);-ms-transform:matrix(0.270890,0.001625,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.270890,0.001625,-0.001500,0.249996,0,0);}
.mdc_c00312{transform:matrix(0.271100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271100,0.000000,0.000000,0.250000,0,0);}
.m16_c00312{transform:matrix(0.271235,0.001627,-0.001500,0.249996,0,0);-ms-transform:matrix(0.271235,0.001627,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.271235,0.001627,-0.001500,0.249996,0,0);}
.m103_c00312{transform:matrix(0.271270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271270,0.000000,0.000000,0.250000,0,0);}
.m67_c00312{transform:matrix(0.271800,0.001631,-0.001500,0.249996,0,0);-ms-transform:matrix(0.271800,0.001631,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.271800,0.001631,-0.001500,0.249996,0,0);}
.mca_c00312{transform:matrix(0.271820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271820,0.000000,0.000000,0.250000,0,0);}
.m46_c00312{transform:matrix(0.271830,0.001631,-0.001500,0.249996,0,0);-ms-transform:matrix(0.271830,0.001631,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.271830,0.001631,-0.001500,0.249996,0,0);}
.m10c_c00312{transform:matrix(0.271840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271840,0.000000,0.000000,0.250000,0,0);}
.m3d_c00312{transform:matrix(0.272265,0.001634,-0.001500,0.249996,0,0);-ms-transform:matrix(0.272265,0.001634,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.272265,0.001634,-0.001500,0.249996,0,0);}
.m6e_c00312{transform:matrix(0.272855,0.001637,-0.001500,0.249996,0,0);-ms-transform:matrix(0.272855,0.001637,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.272855,0.001637,-0.001500,0.249996,0,0);}
.m8d_c00312{transform:matrix(0.273085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273085,0.000000,0.000000,0.250000,0,0);}
.m106_c00312{transform:matrix(0.273300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273300,0.000000,0.000000,0.250000,0,0);}
.m69_c00312{transform:matrix(0.274235,0.001645,-0.001500,0.249996,0,0);-ms-transform:matrix(0.274235,0.001645,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.274235,0.001645,-0.001500,0.249996,0,0);}
.m47_c00312{transform:matrix(0.274395,0.001646,-0.001500,0.249996,0,0);-ms-transform:matrix(0.274395,0.001646,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.274395,0.001646,-0.001500,0.249996,0,0);}
.m52_c00312{transform:matrix(0.274500,0.001647,-0.001500,0.249996,0,0);-ms-transform:matrix(0.274500,0.001647,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.274500,0.001647,-0.001500,0.249996,0,0);}
.m71_c00312{transform:matrix(0.275465,0.001653,-0.001500,0.249996,0,0);-ms-transform:matrix(0.275465,0.001653,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.275465,0.001653,-0.001500,0.249996,0,0);}
.m109_c00312{transform:matrix(0.275545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275545,0.000000,0.000000,0.250000,0,0);}
.m4b_c00312{transform:matrix(0.275985,0.001656,-0.001500,0.249996,0,0);-ms-transform:matrix(0.275985,0.001656,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.275985,0.001656,-0.001500,0.249996,0,0);}
.m64_c00312{transform:matrix(0.276515,0.001659,-0.001500,0.249996,0,0);-ms-transform:matrix(0.276515,0.001659,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.276515,0.001659,-0.001500,0.249996,0,0);}
.m55_c00312{transform:matrix(0.277055,0.001662,-0.001500,0.249996,0,0);-ms-transform:matrix(0.277055,0.001662,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.277055,0.001662,-0.001500,0.249996,0,0);}
.m2c_c00312{transform:matrix(0.277105,0.001663,-0.001500,0.249996,0,0);-ms-transform:matrix(0.277105,0.001663,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.277105,0.001663,-0.001500,0.249996,0,0);}
.m36_c00312{transform:matrix(0.277435,0.001665,-0.001500,0.249996,0,0);-ms-transform:matrix(0.277435,0.001665,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.277435,0.001665,-0.001500,0.249996,0,0);}
.m10e_c00312{transform:matrix(0.277695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277695,0.000000,0.000000,0.250000,0,0);}
.m23_c00312{transform:matrix(0.278390,0.001670,-0.001500,0.249996,0,0);-ms-transform:matrix(0.278390,0.001670,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.278390,0.001670,-0.001500,0.249996,0,0);}
.m128_c00312{transform:matrix(0.286451,0.002292,-0.002000,0.249992,0,0);-ms-transform:matrix(0.286451,0.002292,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.286451,0.002292,-0.002000,0.249992,0,0);}
.m12c_c00312{transform:matrix(0.290991,0.002328,-0.002000,0.249992,0,0);-ms-transform:matrix(0.290991,0.002328,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.290991,0.002328,-0.002000,0.249992,0,0);}
.m12e_c00312{transform:matrix(0.297540,0.002380,-0.002000,0.249992,0,0);-ms-transform:matrix(0.297540,0.002380,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.297540,0.002380,-0.002000,0.249992,0,0);}
.m12d_c00312{transform:matrix(0.297885,0.002383,-0.002000,0.249992,0,0);-ms-transform:matrix(0.297885,0.002383,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.297885,0.002383,-0.002000,0.249992,0,0);}
.m12b_c00312{transform:matrix(0.304730,0.002438,-0.002000,0.249992,0,0);-ms-transform:matrix(0.304730,0.002438,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.304730,0.002438,-0.002000,0.249992,0,0);}
.m41_c00312{transform:matrix(0.312044,0.001872,-0.001500,0.249996,0,0);-ms-transform:matrix(0.312044,0.001872,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.312044,0.001872,-0.001500,0.249996,0,0);}
.m43_c00312{transform:matrix(0.312979,0.001878,-0.001500,0.249996,0,0);-ms-transform:matrix(0.312979,0.001878,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.312979,0.001878,-0.001500,0.249996,0,0);}
.m12a_c00312{transform:matrix(0.319065,0.002553,-0.002000,0.249992,0,0);-ms-transform:matrix(0.319065,0.002553,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.319065,0.002553,-0.002000,0.249992,0,0);}
.ma5_c00312{transform:matrix(0.319430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319430,0.000000,0.000000,0.250000,0,0);}
.mb0_c00312{transform:matrix(0.345865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345865,0.000000,0.000000,0.250000,0,0);}
.m129_c00312{transform:matrix(0.365513,0.002924,-0.002000,0.249992,0,0);-ms-transform:matrix(0.365513,0.002924,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.365513,0.002924,-0.002000,0.249992,0,0);}
.mb9_c00312{transform:matrix(0.459015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459015,0.000000,0.000000,0.250000,0,0);}
.v0_c00312{vertical-align:0.000000px;}
.ls0_c00312{letter-spacing:0.000000px;}
.sc__c00312{text-shadow:none;}
.sc0_c00312{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__c00312{-webkit-text-stroke:0px transparent;}
.sc0_c00312{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00312{word-spacing:0.000000px;}
.fc0_c00312{color:transparent;}
.fs7_c00312{font-size:60.001920px;}
.fs5_c00312{font-size:72.000000px;}
.fs2_c00312{font-size:72.001296px;}
.fs4_c00312{font-size:78.000000px;}
.fs1_c00312{font-size:78.001404px;}
.fs8_c00312{font-size:78.002496px;}
.fs3_c00312{font-size:84.000000px;}
.fs0_c00312{font-size:84.001512px;}
.fs6_c00312{font-size:96.000000px;}
.y0_c00312{bottom:0.000000px;}
.y103_c00312{bottom:43.908420px;}
.y102_c00312{bottom:44.573340px;}
.y101_c00312{bottom:45.218508px;}
.y100_c00312{bottom:45.566160px;}
.yff_c00312{bottom:45.778836px;}
.yfe_c00312{bottom:46.213560px;}
.yfd_c00312{bottom:46.654188px;}
.yfc_c00312{bottom:47.416368px;}
.yfb_c00312{bottom:48.190692px;}
.yfa_c00312{bottom:48.601800px;}
.yf9_c00312{bottom:69.382704px;}
.yf8_c00312{bottom:69.661296px;}
.yf7_c00312{bottom:69.920484px;}
.yf6_c00312{bottom:70.434564px;}
.yf5_c00312{bottom:71.054532px;}
.yf4_c00312{bottom:71.767272px;}
.yf3_c00312{bottom:72.091500px;}
.yf2_c00312{bottom:102.412500px;}
.yf1_c00312{bottom:216.663000px;}
.yf0_c00312{bottom:243.370500px;}
.yef_c00312{bottom:243.592500px;}
.yee_c00312{bottom:244.135500px;}
.yed_c00312{bottom:244.357500px;}
.yec_c00312{bottom:244.530000px;}
.yeb_c00312{bottom:245.077500px;}
.yea_c00312{bottom:245.352000px;}
.ye9_c00312{bottom:245.736000px;}
.ye8_c00312{bottom:246.334500px;}
.ye7_c00312{bottom:246.774000px;}
.ye6_c00312{bottom:275.085000px;}
.ye5_c00312{bottom:275.551500px;}
.ye4_c00312{bottom:275.941500px;}
.ye3_c00312{bottom:276.144000px;}
.ye2_c00312{bottom:276.799500px;}
.ye1_c00312{bottom:276.934500px;}
.ye0_c00312{bottom:277.393500px;}
.ydf_c00312{bottom:277.585500px;}
.yde_c00312{bottom:277.921500px;}
.ydd_c00312{bottom:278.506500px;}
.ydc_c00312{bottom:279.174000px;}
.ydb_c00312{bottom:306.877500px;}
.yda_c00312{bottom:307.081500px;}
.yd9_c00312{bottom:307.729500px;}
.yd8_c00312{bottom:307.999500px;}
.yd7_c00312{bottom:308.325000px;}
.yd6_c00312{bottom:309.048000px;}
.yd5_c00312{bottom:309.508500px;}
.yd4_c00312{bottom:309.712500px;}
.yd3_c00312{bottom:309.975000px;}
.yd2_c00312{bottom:310.303500px;}
.yd1_c00312{bottom:310.501500px;}
.yd0_c00312{bottom:310.764000px;}
.ycf_c00312{bottom:338.206500px;}
.yce_c00312{bottom:338.538000px;}
.ycd_c00312{bottom:338.868000px;}
.ycc_c00312{bottom:339.394500px;}
.ycb_c00312{bottom:339.715500px;}
.yca_c00312{bottom:339.919500px;}
.yc9_c00312{bottom:340.374000px;}
.yc8_c00312{bottom:340.572000px;}
.yc7_c00312{bottom:341.038500px;}
.yc6_c00312{bottom:341.499000px;}
.yc5_c00312{bottom:341.757000px;}
.yc4_c00312{bottom:342.022500px;}
.yc3_c00312{bottom:342.352500px;}
.yc2_c00312{bottom:371.463000px;}
.yc1_c00312{bottom:371.683500px;}
.yc0_c00312{bottom:372.231000px;}
.ybf_c00312{bottom:372.394500px;}
.ybe_c00312{bottom:372.613500px;}
.ybd_c00312{bottom:372.943500px;}
.ybc_c00312{bottom:373.543500px;}
.ybb_c00312{bottom:373.713000px;}
.yba_c00312{bottom:373.932000px;}
.yb9_c00312{bottom:374.263500px;}
.yb8_c00312{bottom:374.481000px;}
.yb7_c00312{bottom:374.757000px;}
.yb6_c00312{bottom:404.088000px;}
.yb5_c00312{bottom:436.221000px;}
.yb4_c00312{bottom:468.436500px;}
.yb3_c00312{bottom:498.144000px;}
.yb2_c00312{bottom:498.310500px;}
.yb1_c00312{bottom:498.532500px;}
.yb0_c00312{bottom:498.694500px;}
.yaf_c00312{bottom:498.969000px;}
.yae_c00312{bottom:499.192500px;}
.yad_c00312{bottom:499.570500px;}
.yac_c00312{bottom:500.071500px;}
.yab_c00312{bottom:500.233500px;}
.yaa_c00312{bottom:500.598000px;}
.ya9_c00312{bottom:500.860500px;}
.ya8_c00312{bottom:501.388500px;}
.ya7_c00312{bottom:528.724500px;}
.ya6_c00312{bottom:528.882000px;}
.ya5_c00312{bottom:529.051500px;}
.ya4_c00312{bottom:529.434000px;}
.ya3_c00312{bottom:529.923000px;}
.ya2_c00312{bottom:530.419500px;}
.ya1_c00312{bottom:530.805000px;}
.ya0_c00312{bottom:530.964000px;}
.y9f_c00312{bottom:531.462000px;}
.y9e_c00312{bottom:531.627000px;}
.y9d_c00312{bottom:531.897000px;}
.y9c_c00312{bottom:559.317000px;}
.y9b_c00312{bottom:559.593000px;}
.y9a_c00312{bottom:560.250000px;}
.y99_c00312{bottom:560.443500px;}
.y98_c00312{bottom:560.647500px;}
.y97_c00312{bottom:561.108000px;}
.y96_c00312{bottom:561.628500px;}
.y95_c00312{bottom:561.826500px;}
.y94_c00312{bottom:562.417500px;}
.y93_c00312{bottom:562.948500px;}
.y92_c00312{bottom:590.931000px;}
.y91_c00312{bottom:591.169500px;}
.y90_c00312{bottom:591.850500px;}
.y8f_c00312{bottom:592.546500px;}
.y8e_c00312{bottom:592.858500px;}
.y8d_c00312{bottom:593.310000px;}
.y8c_c00312{bottom:593.928000px;}
.y8b_c00312{bottom:594.699000px;}
.y8a_c00312{bottom:594.927000px;}
.y89_c00312{bottom:595.317000px;}
.y88_c00312{bottom:595.620000px;}
.y87_c00312{bottom:623.551500px;}
.y86_c00312{bottom:624.202500px;}
.y85_c00312{bottom:624.430500px;}
.y84_c00312{bottom:624.597000px;}
.y83_c00312{bottom:625.192500px;}
.y82_c00312{bottom:625.362000px;}
.y81_c00312{bottom:625.582500px;}
.y80_c00312{bottom:625.740000px;}
.y7f_c00312{bottom:625.963500px;}
.y7e_c00312{bottom:626.128500px;}
.y7d_c00312{bottom:626.400000px;}
.y7c_c00312{bottom:656.098500px;}
.y7b_c00312{bottom:688.641000px;}
.y7a_c00312{bottom:713.103000px;}
.y79_c00312{bottom:743.848470px;}
.y78_c00312{bottom:744.014712px;}
.y77_c00312{bottom:744.289665px;}
.y76_c00312{bottom:744.837939px;}
.y75_c00312{bottom:745.058409px;}
.y74_c00312{bottom:745.552392px;}
.y73_c00312{bottom:745.987086px;}
.y72_c00312{bottom:746.207556px;}
.y71_c00312{bottom:746.701548px;}
.y70_c00312{bottom:746.813427px;}
.y6f_c00312{bottom:775.867560px;}
.y6e_c00312{bottom:776.256102px;}
.y6d_c00312{bottom:776.476581px;}
.y6c_c00312{bottom:776.856993px;}
.y6b_c00312{bottom:777.513951px;}
.y6a_c00312{bottom:777.956838px;}
.y69_c00312{bottom:778.116408px;}
.y68_c00312{bottom:778.401246px;}
.y67_c00312{bottom:778.944558px;}
.y66_c00312{bottom:806.919036px;}
.y65_c00312{bottom:807.083685px;}
.y64_c00312{bottom:807.412983px;}
.y63_c00312{bottom:807.570987px;}
.y62_c00312{bottom:807.742254px;}
.y61_c00312{bottom:808.124232px;}
.y60_c00312{bottom:808.553892px;}
.y5f_c00312{bottom:808.728345px;}
.y5e_c00312{bottom:809.047803px;}
.y5d_c00312{bottom:809.276592px;}
.y5c_c00312{bottom:809.604243px;}
.y5b_c00312{bottom:810.043899px;}
.y5a_c00312{bottom:810.264579px;}
.y50_c00312{bottom:839.933145px;}
.y58_c00312{bottom:839.933301px;}
.y57_c00312{bottom:839.933541px;}
.y53_c00312{bottom:839.933643px;}
.y55_c00312{bottom:839.933652px;}
.y51_c00312{bottom:839.933865px;}
.y56_c00312{bottom:839.934012px;}
.y59_c00312{bottom:839.934030px;}
.y52_c00312{bottom:839.934234px;}
.y54_c00312{bottom:839.934252px;}
.y4f_c00312{bottom:869.507031px;}
.y4e_c00312{bottom:870.106320px;}
.y4d_c00312{bottom:870.381300px;}
.y4c_c00312{bottom:870.766527px;}
.y4b_c00312{bottom:871.199547px;}
.y4a_c00312{bottom:871.369038px;}
.y49_c00312{bottom:871.854765px;}
.y48_c00312{bottom:872.465487px;}
.y47_c00312{bottom:872.631783px;}
.y46_c00312{bottom:872.905143px;}
.y45_c00312{bottom:901.421865px;}
.y44_c00312{bottom:901.593114px;}
.y43_c00312{bottom:902.024586px;}
.y42_c00312{bottom:902.073762px;}
.y41_c00312{bottom:902.408121px;}
.y40_c00312{bottom:902.684640px;}
.y3f_c00312{bottom:903.290628px;}
.y3e_c00312{bottom:903.619926px;}
.y3d_c00312{bottom:903.779559px;}
.y3c_c00312{bottom:903.950808px;}
.y3b_c00312{bottom:904.332768px;}
.y3a_c00312{bottom:904.764195px;}
.y39_c00312{bottom:932.740497px;}
.y38_c00312{bottom:933.234417px;}
.y37_c00312{bottom:933.777675px;}
.y36_c00312{bottom:933.945711px;}
.y35_c00312{bottom:934.265022px;}
.y34_c00312{bottom:934.383483px;}
.y33_c00312{bottom:934.709622px;}
.y32_c00312{bottom:934.931958px;}
.y31_c00312{bottom:935.310549px;}
.y30_c00312{bottom:935.638191px;}
.y2f_c00312{bottom:935.811069px;}
.y2e_c00312{bottom:936.084318px;}
.y2d_c00312{bottom:964.472481px;}
.y2c_c00312{bottom:964.665270px;}
.y2b_c00312{bottom:964.869444px;}
.y2a_c00312{bottom:965.327895px;}
.y29_c00312{bottom:965.781495px;}
.y28_c00312{bottom:965.987244px;}
.y27_c00312{bottom:966.448998px;}
.y26_c00312{bottom:966.902571px;}
.y25_c00312{bottom:967.108302px;}
.y24_c00312{bottom:967.699602px;}
.y23_c00312{bottom:967.890726px;}
.y22_c00312{bottom:968.485275px;}
.y21_c00312{bottom:996.130539px;}
.y20_c00312{bottom:996.300159px;}
.y1f_c00312{bottom:996.902688px;}
.y1e_c00312{bottom:997.119999px;}
.y1d_c00312{bottom:997.291257px;}
.y1c_c00312{bottom:997.511745px;}
.y1b_c00312{bottom:997.999155px;}
.y1a_c00312{bottom:998.545764px;}
.y19_c00312{bottom:999.093993px;}
.y18_c00312{bottom:999.265107px;}
.y17_c00312{bottom:1027.383282px;}
.y16_c00312{bottom:1027.640076px;}
.y15_c00312{bottom:1028.085318px;}
.y14_c00312{bottom:1028.599473px;}
.y13_c00312{bottom:1028.880501px;}
.y12_c00312{bottom:1029.574503px;}
.y11_c00312{bottom:1029.849288px;}
.y10_c00312{bottom:1030.017594px;}
.yf_c00312{bottom:1030.279506px;}
.ye_c00312{bottom:1031.076975px;}
.yd_c00312{bottom:1031.515326px;}
.yc_c00312{bottom:1031.939346px;}
.yb_c00312{bottom:1059.429771px;}
.ya_c00312{bottom:1060.165215px;}
.y9_c00312{bottom:1060.434018px;}
.y8_c00312{bottom:1060.895952px;}
.y7_c00312{bottom:1061.229582px;}
.y6_c00312{bottom:1061.493561px;}
.y5_c00312{bottom:1061.952201px;}
.y4_c00312{bottom:1062.217800px;}
.y3_c00312{bottom:1062.742680px;}
.y2_c00312{bottom:1062.873792px;}
.y1_c00312{bottom:1063.530000px;}
.h9_c00312{height:60.001920px;}
.h7_c00312{height:72.000000px;}
.h4_c00312{height:72.001296px;}
.h6_c00312{height:78.000000px;}
.h3_c00312{height:78.001404px;}
.ha_c00312{height:78.002496px;}
.h5_c00312{height:84.000000px;}
.h2_c00312{height:84.001512px;}
.h8_c00312{height:96.000000px;}
.h1_c00312{height:1165.500000px;}
.h0_c00312{height:1165.800000px;}
.w0_c00312{width:915.000000px;}
.x0_c00312{left:0.000000px;}
.x6a_c00312{left:131.125500px;}
.x5c_c00312{left:132.219000px;}
.x17_c00312{left:133.600377px;}
.x1_c00312{left:134.920500px;}
.x83_c00312{left:153.360000px;}
.x48_c00312{left:156.012357px;}
.x3b_c00312{left:166.602612px;}
.x18_c00312{left:167.869584px;}
.xa7_c00312{left:173.506500px;}
.x97_c00312{left:174.601500px;}
.x59_c00312{left:175.953000px;}
.x40_c00312{left:177.334665px;}
.x8b_c00312{left:185.688000px;}
.x64_c00312{left:186.777000px;}
.x28_c00312{left:188.394639px;}
.x98_c00312{left:207.541500px;}
.x73_c00312{left:208.980000px;}
.x50_c00312{left:210.060000px;}
.x65_c00312{left:219.700500px;}
.x30_c00312{left:221.340462px;}
.x29_c00312{left:222.957846px;}
.x8c_c00312{left:229.155000px;}
.x7b_c00312{left:230.310000px;}
.x5a_c00312{left:231.567000px;}
.x20_c00312{left:233.479233px;}
.x6b_c00312{left:236.685000px;}
.x45_c00312{left:242.422659px;}
.x2_c00312{left:244.288500px;}
.xc_c00312{left:245.593947px;}
.xa1_c00312{left:251.370000px;}
.x7c_c00312{left:253.260000px;}
.x49_c00312{left:254.844951px;}
.x99_c00312{left:262.374000px;}
.x4b_c00312{left:265.140000px;}
.x3_c00312{left:266.140500px;}
.x74_c00312{left:273.780000px;}
.x19_c00312{left:277.491741px;}
.x3c_c00312{left:287.295459px;}
.x2a_c00312{left:288.565242px;}
.x8d_c00312{left:295.321500px;}
.x54_c00312{left:296.932500px;}
.xd_c00312{left:298.513308px;}
.x7d_c00312{left:306.720000px;}
.x84_c00312{left:317.520000px;}
.x5d_c00312{left:319.303500px;}
.xa8_c00312{left:327.638472px;}
.xa2_c00312{left:329.400000px;}
.x41_c00312{left:330.970092px;}
.x31_c00312{left:332.042628px;}
.x85_c00312{left:339.660000px;}
.x55_c00312{left:340.941000px;}
.x3d_c00312{left:342.645948px;}
.x36_c00312{left:343.650504px;}
.x91_c00312{left:350.115000px;}
.x66_c00312{left:351.187500px;}
.x5e_c00312{left:352.254000px;}
.x4_c00312{left:353.620500px;}
.x6c_c00312{left:361.986000px;}
.x21_c00312{left:363.883233px;}
.xa3_c00312{left:372.060000px;}
.x8e_c00312{left:373.065000px;}
.x51_c00312{left:374.490000px;}
.x42_c00312{left:376.601862px;}
.x4a_c00312{left:385.789734px;}
.x1a_c00312{left:386.843898px;}
.x6d_c00312{left:394.393500px;}
.x5_c00312{left:397.887000px;}
.xa4_c00312{left:404.460000px;}
.x75_c00312{left:405.810000px;}
.x52_c00312{left:407.160000px;}
.x2b_c00312{left:408.720462px;}
.xa9_c00312{left:415.118568px;}
.x7e_c00312{left:416.340000px;}
.x46_c00312{left:419.806221px;}
.x9b_c00312{left:427.050000px;}
.x67_c00312{left:428.406000px;}
.x32_c00312{left:429.781713px;}
.xa5_c00312{left:437.130000px;}
.x5f_c00312{left:438.922500px;}
.x37_c00312{left:440.855589px;}
.x76_c00312{left:450.090000px;}
.xe_c00312{left:452.981454px;}
.x92_c00312{left:460.798500px;}
.x3e_c00312{left:462.798777px;}
.x9e_c00312{left:470.532000px;}
.xa6_c00312{left:471.690000px;}
.x6_c00312{left:474.327000px;}
.x43_c00312{left:475.420956px;}
.x7f_c00312{left:481.680000px;}
.x1b_c00312{left:484.329483px;}
.xf_c00312{left:485.633058px;}
.x8f_c00312{left:492.949500px;}
.x56_c00312{left:494.032500px;}
.x2c_c00312{left:497.821002px;}
.x86_c00312{left:503.820000px;}
.x10_c00312{left:506.683806px;}
.x60_c00312{left:515.605500px;}
.x7_c00312{left:518.323500px;}
.x9c_c00312{left:525.867000px;}
.x57_c00312{left:527.241000px;}
.x1c_c00312{left:528.327744px;}
.x93_c00312{left:536.665500px;}
.x11_c00312{left:540.980892px;}
.x61_c00312{left:549.627000px;}
.x22_c00312{left:550.726233px;}
.x90_c00312{left:558.820500px;}
.x2d_c00312{left:561.539880px;}
.x1d_c00312{left:562.620951px;}
.x6e_c00312{left:570.180000px;}
.x4c_c00312{left:571.860000px;}
.x58_c00312{left:572.868000px;}
.x8_c00312{left:573.928500px;}
.x9f_c00312{left:580.152000px;}
.x62_c00312{left:581.758500px;}
.x53_c00312{left:584.010000px;}
.x23_c00312{left:585.017733px;}
.x77_c00312{left:591.570000px;}
.x2e_c00312{left:595.296087px;}
.x80_c00312{left:602.910000px;}
.x1e_c00312{left:606.089712px;}
.x87_c00312{left:613.170000px;}
.x6f_c00312{left:614.985000px;}
.x4e_c00312{left:616.680000px;}
.x4d_c00312{left:619.380000px;}
.x94_c00312{left:624.144000px;}
.x3f_c00312{left:626.423163px;}
.x12_c00312{left:627.646848px;}
.x78_c00312{left:635.850000px;}
.x38_c00312{left:638.229768px;}
.x88_c00312{left:646.650000px;}
.x9_c00312{left:650.917500px;}
.xa0_c00312{left:658.995000px;}
.x24_c00312{left:660.617733px;}
.x13_c00312{left:662.734425px;}
.x70_c00312{left:669.795000px;}
.x44_c00312{left:671.989635px;}
.x33_c00312{left:673.344180px;}
.x34_c00312{left:683.040234px;}
.x63_c00312{left:691.371000px;}
.x39_c00312{left:693.310101px;}
.xa_c00312{left:695.718000px;}
.x68_c00312{left:701.923500px;}
.x2f_c00312{left:703.839735px;}
.x81_c00312{left:712.260000px;}
.x89_c00312{left:725.490000px;}
.x14_c00312{left:726.926151px;}
.x9d_c00312{left:734.037000px;}
.x69_c00312{left:735.946500px;}
.x25_c00312{left:737.026233px;}
.x79_c00312{left:744.930000px;}
.x71_c00312{left:746.476500px;}
.x47_c00312{left:749.206701px;}
.x4f_c00312{left:759.510000px;}
.x1f_c00312{left:760.532139px;}
.x95_c00312{left:766.998000px;}
.x5b_c00312{left:768.319500px;}
.x35_c00312{left:769.452756px;}
.x26_c00312{left:771.055233px;}
.x9a_c00312{left:778.603500px;}
.x72_c00312{left:779.658000px;}
.x15_c00312{left:782.632485px;}
.x7a_c00312{left:789.210000px;}
.x82_c00312{left:790.290000px;}
.x27_c00312{left:803.186733px;}
.x8a_c00312{left:812.160000px;}
.x3a_c00312{left:813.192321px;}
.x16_c00312{left:814.681098px;}
.xb_c00312{left:818.292000px;}
.x96_c00312{left:822.354000px;}
@media print{
.v0_c00312{vertical-align:0.000000pt;}
.ls0_c00312{letter-spacing:0.000000pt;}
.ws0_c00312{word-spacing:0.000000pt;}
.fs7_c00312{font-size:53.335040pt;}
.fs5_c00312{font-size:64.000000pt;}
.fs2_c00312{font-size:64.001152pt;}
.fs4_c00312{font-size:69.333333pt;}
.fs1_c00312{font-size:69.334581pt;}
.fs8_c00312{font-size:69.335552pt;}
.fs3_c00312{font-size:74.666667pt;}
.fs0_c00312{font-size:74.668011pt;}
.fs6_c00312{font-size:85.333333pt;}
.y0_c00312{bottom:0.000000pt;}
.y103_c00312{bottom:39.029707pt;}
.y102_c00312{bottom:39.620747pt;}
.y101_c00312{bottom:40.194229pt;}
.y100_c00312{bottom:40.503253pt;}
.yff_c00312{bottom:40.692299pt;}
.yfe_c00312{bottom:41.078720pt;}
.yfd_c00312{bottom:41.470389pt;}
.yfc_c00312{bottom:42.147883pt;}
.yfb_c00312{bottom:42.836171pt;}
.yfa_c00312{bottom:43.201600pt;}
.yf9_c00312{bottom:61.673515pt;}
.yf8_c00312{bottom:61.921152pt;}
.yf7_c00312{bottom:62.151541pt;}
.yf6_c00312{bottom:62.608501pt;}
.yf5_c00312{bottom:63.159584pt;}
.yf4_c00312{bottom:63.793131pt;}
.yf3_c00312{bottom:64.081333pt;}
.yf2_c00312{bottom:91.033333pt;}
.yf1_c00312{bottom:192.589333pt;}
.yf0_c00312{bottom:216.329333pt;}
.yef_c00312{bottom:216.526667pt;}
.yee_c00312{bottom:217.009333pt;}
.yed_c00312{bottom:217.206667pt;}
.yec_c00312{bottom:217.360000pt;}
.yeb_c00312{bottom:217.846667pt;}
.yea_c00312{bottom:218.090667pt;}
.ye9_c00312{bottom:218.432000pt;}
.ye8_c00312{bottom:218.964000pt;}
.ye7_c00312{bottom:219.354667pt;}
.ye6_c00312{bottom:244.520000pt;}
.ye5_c00312{bottom:244.934667pt;}
.ye4_c00312{bottom:245.281333pt;}
.ye3_c00312{bottom:245.461333pt;}
.ye2_c00312{bottom:246.044000pt;}
.ye1_c00312{bottom:246.164000pt;}
.ye0_c00312{bottom:246.572000pt;}
.ydf_c00312{bottom:246.742667pt;}
.yde_c00312{bottom:247.041333pt;}
.ydd_c00312{bottom:247.561333pt;}
.ydc_c00312{bottom:248.154667pt;}
.ydb_c00312{bottom:272.780000pt;}
.yda_c00312{bottom:272.961333pt;}
.yd9_c00312{bottom:273.537333pt;}
.yd8_c00312{bottom:273.777333pt;}
.yd7_c00312{bottom:274.066667pt;}
.yd6_c00312{bottom:274.709333pt;}
.yd5_c00312{bottom:275.118667pt;}
.yd4_c00312{bottom:275.300000pt;}
.yd3_c00312{bottom:275.533333pt;}
.yd2_c00312{bottom:275.825333pt;}
.yd1_c00312{bottom:276.001333pt;}
.yd0_c00312{bottom:276.234667pt;}
.ycf_c00312{bottom:300.628000pt;}
.yce_c00312{bottom:300.922667pt;}
.ycd_c00312{bottom:301.216000pt;}
.ycc_c00312{bottom:301.684000pt;}
.ycb_c00312{bottom:301.969333pt;}
.yca_c00312{bottom:302.150667pt;}
.yc9_c00312{bottom:302.554667pt;}
.yc8_c00312{bottom:302.730667pt;}
.yc7_c00312{bottom:303.145333pt;}
.yc6_c00312{bottom:303.554667pt;}
.yc5_c00312{bottom:303.784000pt;}
.yc4_c00312{bottom:304.020000pt;}
.yc3_c00312{bottom:304.313333pt;}
.yc2_c00312{bottom:330.189333pt;}
.yc1_c00312{bottom:330.385333pt;}
.yc0_c00312{bottom:330.872000pt;}
.ybf_c00312{bottom:331.017333pt;}
.ybe_c00312{bottom:331.212000pt;}
.ybd_c00312{bottom:331.505333pt;}
.ybc_c00312{bottom:332.038667pt;}
.ybb_c00312{bottom:332.189333pt;}
.yba_c00312{bottom:332.384000pt;}
.yb9_c00312{bottom:332.678667pt;}
.yb8_c00312{bottom:332.872000pt;}
.yb7_c00312{bottom:333.117333pt;}
.yb6_c00312{bottom:359.189333pt;}
.yb5_c00312{bottom:387.752000pt;}
.yb4_c00312{bottom:416.388000pt;}
.yb3_c00312{bottom:442.794667pt;}
.yb2_c00312{bottom:442.942667pt;}
.yb1_c00312{bottom:443.140000pt;}
.yb0_c00312{bottom:443.284000pt;}
.yaf_c00312{bottom:443.528000pt;}
.yae_c00312{bottom:443.726667pt;}
.yad_c00312{bottom:444.062667pt;}
.yac_c00312{bottom:444.508000pt;}
.yab_c00312{bottom:444.652000pt;}
.yaa_c00312{bottom:444.976000pt;}
.ya9_c00312{bottom:445.209333pt;}
.ya8_c00312{bottom:445.678667pt;}
.ya7_c00312{bottom:469.977333pt;}
.ya6_c00312{bottom:470.117333pt;}
.ya5_c00312{bottom:470.268000pt;}
.ya4_c00312{bottom:470.608000pt;}
.ya3_c00312{bottom:471.042667pt;}
.ya2_c00312{bottom:471.484000pt;}
.ya1_c00312{bottom:471.826667pt;}
.ya0_c00312{bottom:471.968000pt;}
.y9f_c00312{bottom:472.410667pt;}
.y9e_c00312{bottom:472.557333pt;}
.y9d_c00312{bottom:472.797333pt;}
.y9c_c00312{bottom:497.170667pt;}
.y9b_c00312{bottom:497.416000pt;}
.y9a_c00312{bottom:498.000000pt;}
.y99_c00312{bottom:498.172000pt;}
.y98_c00312{bottom:498.353333pt;}
.y97_c00312{bottom:498.762667pt;}
.y96_c00312{bottom:499.225333pt;}
.y95_c00312{bottom:499.401333pt;}
.y94_c00312{bottom:499.926667pt;}
.y93_c00312{bottom:500.398667pt;}
.y92_c00312{bottom:525.272000pt;}
.y91_c00312{bottom:525.484000pt;}
.y90_c00312{bottom:526.089333pt;}
.y8f_c00312{bottom:526.708000pt;}
.y8e_c00312{bottom:526.985333pt;}
.y8d_c00312{bottom:527.386667pt;}
.y8c_c00312{bottom:527.936000pt;}
.y8b_c00312{bottom:528.621333pt;}
.y8a_c00312{bottom:528.824000pt;}
.y89_c00312{bottom:529.170667pt;}
.y88_c00312{bottom:529.440000pt;}
.y87_c00312{bottom:554.268000pt;}
.y86_c00312{bottom:554.846667pt;}
.y85_c00312{bottom:555.049333pt;}
.y84_c00312{bottom:555.197333pt;}
.y83_c00312{bottom:555.726667pt;}
.y82_c00312{bottom:555.877333pt;}
.y81_c00312{bottom:556.073333pt;}
.y80_c00312{bottom:556.213333pt;}
.y7f_c00312{bottom:556.412000pt;}
.y7e_c00312{bottom:556.558667pt;}
.y7d_c00312{bottom:556.800000pt;}
.y7c_c00312{bottom:583.198667pt;}
.y7b_c00312{bottom:612.125333pt;}
.y7a_c00312{bottom:633.869333pt;}
.y79_c00312{bottom:661.198640pt;}
.y78_c00312{bottom:661.346411pt;}
.y77_c00312{bottom:661.590813pt;}
.y76_c00312{bottom:662.078168pt;}
.y75_c00312{bottom:662.274141pt;}
.y74_c00312{bottom:662.713237pt;}
.y73_c00312{bottom:663.099632pt;}
.y72_c00312{bottom:663.295605pt;}
.y71_c00312{bottom:663.734709pt;}
.y70_c00312{bottom:663.834157pt;}
.y6f_c00312{bottom:689.660053pt;}
.y6e_c00312{bottom:690.005424pt;}
.y6d_c00312{bottom:690.201405pt;}
.y6c_c00312{bottom:690.539549pt;}
.y6b_c00312{bottom:691.123512pt;}
.y6a_c00312{bottom:691.517189pt;}
.y69_c00312{bottom:691.659029pt;}
.y68_c00312{bottom:691.912219pt;}
.y67_c00312{bottom:692.395163pt;}
.y66_c00312{bottom:717.261365pt;}
.y65_c00312{bottom:717.407720pt;}
.y64_c00312{bottom:717.700429pt;}
.y63_c00312{bottom:717.840877pt;}
.y62_c00312{bottom:717.993115pt;}
.y61_c00312{bottom:718.332651pt;}
.y60_c00312{bottom:718.714571pt;}
.y5f_c00312{bottom:718.869640pt;}
.y5e_c00312{bottom:719.153603pt;}
.y5d_c00312{bottom:719.356971pt;}
.y5c_c00312{bottom:719.648216pt;}
.y5b_c00312{bottom:720.039021pt;}
.y5a_c00312{bottom:720.235181pt;}
.y50_c00312{bottom:746.607240pt;}
.y58_c00312{bottom:746.607379pt;}
.y57_c00312{bottom:746.607592pt;}
.y53_c00312{bottom:746.607683pt;}
.y55_c00312{bottom:746.607691pt;}
.y51_c00312{bottom:746.607880pt;}
.y56_c00312{bottom:746.608011pt;}
.y59_c00312{bottom:746.608027pt;}
.y52_c00312{bottom:746.608208pt;}
.y54_c00312{bottom:746.608224pt;}
.y4f_c00312{bottom:772.895139pt;}
.y4e_c00312{bottom:773.427840pt;}
.y4d_c00312{bottom:773.672267pt;}
.y4c_c00312{bottom:774.014691pt;}
.y4b_c00312{bottom:774.399597pt;}
.y4a_c00312{bottom:774.550256pt;}
.y49_c00312{bottom:774.982013pt;}
.y48_c00312{bottom:775.524877pt;}
.y47_c00312{bottom:775.672696pt;}
.y46_c00312{bottom:775.915683pt;}
.y45_c00312{bottom:801.263880pt;}
.y44_c00312{bottom:801.416101pt;}
.y43_c00312{bottom:801.799632pt;}
.y42_c00312{bottom:801.843344pt;}
.y41_c00312{bottom:802.140552pt;}
.y40_c00312{bottom:802.386347pt;}
.y3f_c00312{bottom:802.925003pt;}
.y3e_c00312{bottom:803.217712pt;}
.y3d_c00312{bottom:803.359608pt;}
.y3c_c00312{bottom:803.511829pt;}
.y3b_c00312{bottom:803.851349pt;}
.y3a_c00312{bottom:804.234840pt;}
.y39_c00312{bottom:829.102664pt;}
.y38_c00312{bottom:829.541704pt;}
.y37_c00312{bottom:830.024600pt;}
.y36_c00312{bottom:830.173965pt;}
.y35_c00312{bottom:830.457797pt;}
.y34_c00312{bottom:830.563096pt;}
.y33_c00312{bottom:830.852997pt;}
.y32_c00312{bottom:831.050629pt;}
.y31_c00312{bottom:831.387155pt;}
.y30_c00312{bottom:831.678392pt;}
.y2f_c00312{bottom:831.832061pt;}
.y2e_c00312{bottom:832.074949pt;}
.y2d_c00312{bottom:857.308872pt;}
.y2c_c00312{bottom:857.480240pt;}
.y2b_c00312{bottom:857.661728pt;}
.y2a_c00312{bottom:858.069240pt;}
.y29_c00312{bottom:858.472440pt;}
.y28_c00312{bottom:858.655328pt;}
.y27_c00312{bottom:859.065776pt;}
.y26_c00312{bottom:859.468952pt;}
.y25_c00312{bottom:859.651824pt;}
.y24_c00312{bottom:860.177424pt;}
.y23_c00312{bottom:860.347312pt;}
.y22_c00312{bottom:860.875800pt;}
.y21_c00312{bottom:885.449368pt;}
.y20_c00312{bottom:885.600141pt;}
.y1f_c00312{bottom:886.135723pt;}
.y1e_c00312{bottom:886.328888pt;}
.y1d_c00312{bottom:886.481117pt;}
.y1c_c00312{bottom:886.677107pt;}
.y1b_c00312{bottom:887.110360pt;}
.y1a_c00312{bottom:887.596235pt;}
.y19_c00312{bottom:888.083549pt;}
.y18_c00312{bottom:888.235651pt;}
.y17_c00312{bottom:913.229584pt;}
.y16_c00312{bottom:913.457845pt;}
.y15_c00312{bottom:913.853616pt;}
.y14_c00312{bottom:914.310643pt;}
.y13_c00312{bottom:914.560445pt;}
.y12_c00312{bottom:915.177336pt;}
.y11_c00312{bottom:915.421589pt;}
.y10_c00312{bottom:915.571195pt;}
.yf_c00312{bottom:915.804005pt;}
.ye_c00312{bottom:916.512867pt;}
.yd_c00312{bottom:916.902512pt;}
.yc_c00312{bottom:917.279419pt;}
.yb_c00312{bottom:941.715352pt;}
.ya_c00312{bottom:942.369080pt;}
.y9_c00312{bottom:942.608016pt;}
.y8_c00312{bottom:943.018624pt;}
.y7_c00312{bottom:943.315184pt;}
.y6_c00312{bottom:943.549832pt;}
.y5_c00312{bottom:943.957512pt;}
.y4_c00312{bottom:944.193600pt;}
.y3_c00312{bottom:944.660160pt;}
.y2_c00312{bottom:944.776704pt;}
.y1_c00312{bottom:945.360000pt;}
.h9_c00312{height:53.335040pt;}
.h7_c00312{height:64.000000pt;}
.h4_c00312{height:64.001152pt;}
.h6_c00312{height:69.333333pt;}
.h3_c00312{height:69.334581pt;}
.ha_c00312{height:69.335552pt;}
.h5_c00312{height:74.666667pt;}
.h2_c00312{height:74.668011pt;}
.h8_c00312{height:85.333333pt;}
.h1_c00312{height:1036.000000pt;}
.h0_c00312{height:1036.266667pt;}
.w0_c00312{width:813.333333pt;}
.x0_c00312{left:0.000000pt;}
.x6a_c00312{left:116.556000pt;}
.x5c_c00312{left:117.528000pt;}
.x17_c00312{left:118.755891pt;}
.x1_c00312{left:119.929333pt;}
.x83_c00312{left:136.320000pt;}
.x48_c00312{left:138.677651pt;}
.x3b_c00312{left:148.091211pt;}
.x18_c00312{left:149.217408pt;}
.xa7_c00312{left:154.228000pt;}
.x97_c00312{left:155.201333pt;}
.x59_c00312{left:156.402667pt;}
.x40_c00312{left:157.630813pt;}
.x8b_c00312{left:165.056000pt;}
.x64_c00312{left:166.024000pt;}
.x28_c00312{left:167.461901pt;}
.x98_c00312{left:184.481333pt;}
.x73_c00312{left:185.760000pt;}
.x50_c00312{left:186.720000pt;}
.x65_c00312{left:195.289333pt;}
.x30_c00312{left:196.747077pt;}
.x29_c00312{left:198.184752pt;}
.x8c_c00312{left:203.693333pt;}
.x7b_c00312{left:204.720000pt;}
.x5a_c00312{left:205.837333pt;}
.x20_c00312{left:207.537096pt;}
.x6b_c00312{left:210.386667pt;}
.x45_c00312{left:215.486808pt;}
.x2_c00312{left:217.145333pt;}
.xc_c00312{left:218.305731pt;}
.xa1_c00312{left:223.440000pt;}
.x7c_c00312{left:225.120000pt;}
.x49_c00312{left:226.528845pt;}
.x99_c00312{left:233.221333pt;}
.x4b_c00312{left:235.680000pt;}
.x3_c00312{left:236.569333pt;}
.x74_c00312{left:243.360000pt;}
.x19_c00312{left:246.659325pt;}
.x3c_c00312{left:255.373741pt;}
.x2a_c00312{left:256.502437pt;}
.x8d_c00312{left:262.508000pt;}
.x54_c00312{left:263.940000pt;}
.xd_c00312{left:265.345163pt;}
.x7d_c00312{left:272.640000pt;}
.x84_c00312{left:282.240000pt;}
.x5d_c00312{left:283.825333pt;}
.xa8_c00312{left:291.234197pt;}
.xa2_c00312{left:292.800000pt;}
.x41_c00312{left:294.195637pt;}
.x31_c00312{left:295.149003pt;}
.x85_c00312{left:301.920000pt;}
.x55_c00312{left:303.058667pt;}
.x3d_c00312{left:304.574176pt;}
.x36_c00312{left:305.467115pt;}
.x91_c00312{left:311.213333pt;}
.x66_c00312{left:312.166667pt;}
.x5e_c00312{left:313.114667pt;}
.x4_c00312{left:314.329333pt;}
.x6c_c00312{left:321.765333pt;}
.x21_c00312{left:323.451763pt;}
.xa3_c00312{left:330.720000pt;}
.x8e_c00312{left:331.613333pt;}
.x51_c00312{left:332.880000pt;}
.x42_c00312{left:334.757211pt;}
.x4a_c00312{left:342.924208pt;}
.x1a_c00312{left:343.861243pt;}
.x6d_c00312{left:350.572000pt;}
.x5_c00312{left:353.677333pt;}
.xa4_c00312{left:359.520000pt;}
.x75_c00312{left:360.720000pt;}
.x52_c00312{left:361.920000pt;}
.x2b_c00312{left:363.307077pt;}
.xa9_c00312{left:368.994283pt;}
.x7e_c00312{left:370.080000pt;}
.x46_c00312{left:373.161085pt;}
.x9b_c00312{left:379.600000pt;}
.x67_c00312{left:380.805333pt;}
.x32_c00312{left:382.028189pt;}
.xa5_c00312{left:388.560000pt;}
.x5f_c00312{left:390.153333pt;}
.x37_c00312{left:391.871635pt;}
.x76_c00312{left:400.080000pt;}
.xe_c00312{left:402.650181pt;}
.x92_c00312{left:409.598667pt;}
.x3e_c00312{left:411.376691pt;}
.x9e_c00312{left:418.250667pt;}
.xa6_c00312{left:419.280000pt;}
.x6_c00312{left:421.624000pt;}
.x43_c00312{left:422.596405pt;}
.x7f_c00312{left:428.160000pt;}
.x1b_c00312{left:430.515096pt;}
.xf_c00312{left:431.673829pt;}
.x8f_c00312{left:438.177333pt;}
.x56_c00312{left:439.140000pt;}
.x2c_c00312{left:442.507557pt;}
.x86_c00312{left:447.840000pt;}
.x10_c00312{left:450.385605pt;}
.x60_c00312{left:458.316000pt;}
.x7_c00312{left:460.732000pt;}
.x9c_c00312{left:467.437333pt;}
.x57_c00312{left:468.658667pt;}
.x1c_c00312{left:469.624661pt;}
.x93_c00312{left:477.036000pt;}
.x11_c00312{left:480.871904pt;}
.x61_c00312{left:488.557333pt;}
.x22_c00312{left:489.534429pt;}
.x90_c00312{left:496.729333pt;}
.x2d_c00312{left:499.146560pt;}
.x1d_c00312{left:500.107512pt;}
.x6e_c00312{left:506.826667pt;}
.x4c_c00312{left:508.320000pt;}
.x58_c00312{left:509.216000pt;}
.x8_c00312{left:510.158667pt;}
.x9f_c00312{left:515.690667pt;}
.x62_c00312{left:517.118667pt;}
.x53_c00312{left:519.120000pt;}
.x23_c00312{left:520.015763pt;}
.x77_c00312{left:525.840000pt;}
.x2e_c00312{left:529.152077pt;}
.x80_c00312{left:535.920000pt;}
.x1e_c00312{left:538.746411pt;}
.x87_c00312{left:545.040000pt;}
.x6f_c00312{left:546.653333pt;}
.x4e_c00312{left:548.160000pt;}
.x4d_c00312{left:550.560000pt;}
.x94_c00312{left:554.794667pt;}
.x3f_c00312{left:556.820589pt;}
.x12_c00312{left:557.908309pt;}
.x78_c00312{left:565.200000pt;}
.x38_c00312{left:567.315349pt;}
.x88_c00312{left:574.800000pt;}
.x9_c00312{left:578.593333pt;}
.xa0_c00312{left:585.773333pt;}
.x24_c00312{left:587.215763pt;}
.x13_c00312{left:589.097267pt;}
.x70_c00312{left:595.373333pt;}
.x44_c00312{left:597.324120pt;}
.x33_c00312{left:598.528160pt;}
.x34_c00312{left:607.146875pt;}
.x63_c00312{left:614.552000pt;}
.x39_c00312{left:616.275645pt;}
.xa_c00312{left:618.416000pt;}
.x68_c00312{left:623.932000pt;}
.x2f_c00312{left:625.635320pt;}
.x81_c00312{left:633.120000pt;}
.x89_c00312{left:644.880000pt;}
.x14_c00312{left:646.156579pt;}
.x9d_c00312{left:652.477333pt;}
.x69_c00312{left:654.174667pt;}
.x25_c00312{left:655.134429pt;}
.x79_c00312{left:662.160000pt;}
.x71_c00312{left:663.534667pt;}
.x47_c00312{left:665.961512pt;}
.x4f_c00312{left:675.120000pt;}
.x1f_c00312{left:676.028568pt;}
.x95_c00312{left:681.776000pt;}
.x5b_c00312{left:682.950667pt;}
.x35_c00312{left:683.958005pt;}
.x26_c00312{left:685.382429pt;}
.x9a_c00312{left:692.092000pt;}
.x72_c00312{left:693.029333pt;}
.x15_c00312{left:695.673320pt;}
.x7a_c00312{left:701.520000pt;}
.x82_c00312{left:702.480000pt;}
.x27_c00312{left:713.943763pt;}
.x8a_c00312{left:721.920000pt;}
.x3a_c00312{left:722.837619pt;}
.x16_c00312{left:724.160976pt;}
.xb_c00312{left:727.370667pt;}
.x96_c00312{left:730.981333pt;}
}





/* 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_c00313 {
    display:none;
  }
  .loading-indicator_c00313.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00313 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_c00313 { 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_c00313" -> "#page-container .classname_c00313")
 */
.pf_c00313 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00313 { /* 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_c00313.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00313 { /* 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_c00313 { /* 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_c00313 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00313 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00313 {overflow:visible;}
  }
}
.c_c00313 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00313 { /* 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_c00313:after { /* webkit #35443 */
  content: '';
}
.t_c00313:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00313 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 */
}
.__c00313 { /* 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_c00313 { /* info for Javascript */
  display:none;
}
.l_c00313 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00313 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00313 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00313: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_c00313 {
    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_c00313.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00313.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_c00313 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00313{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00313;src:url('chunks/assets/font_bfe6362fd3009c591583128f.woff2')format("woff");}.ff1_c00313{font-family:ff1_c00313;line-height:1.000000;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;}
.m1_c00313{transform:matrix(0.202985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202985,0.000000,0.000000,0.250000,0,0);}
.m0_c00313{transform:matrix(0.262635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262635,0.000000,0.000000,0.250000,0,0);}
.m2_c00313{transform:matrix(0.350020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350020,0.000000,0.000000,0.250000,0,0);}
.m4_c00313{transform:matrix(0.593400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.593400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.593400,0.000000,0.000000,0.250000,0,0);}
.m3_c00313{transform:matrix(0.632490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632490,0.000000,0.000000,0.250000,0,0);}
.v0_c00313{vertical-align:0.000000px;}
.ls0_c00313{letter-spacing:0.000000px;}
.sc__c00313{text-shadow:none;}
.sc0_c00313{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__c00313{-webkit-text-stroke:0px transparent;}
.sc0_c00313{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00313{word-spacing:0.000000px;}
.fc0_c00313{color:transparent;}
.fs3_c00313{font-size:18.000000px;}
.fs0_c00313{font-size:24.000000px;}
.fs1_c00313{font-size:36.000000px;}
.fs2_c00313{font-size:42.000000px;}
.y0_c00313{bottom:0.000000px;}
.y4_c00313{bottom:1053.000000px;}
.y2_c00313{bottom:1057.050000px;}
.y1_c00313{bottom:1059.210000px;}
.y3_c00313{bottom:1065.420000px;}
.h5_c00313{height:18.000000px;}
.h2_c00313{height:24.000000px;}
.h3_c00313{height:36.000000px;}
.h4_c00313{height:42.000000px;}
.h1_c00313{height:1165.500000px;}
.h0_c00313{height:1165.800000px;}
.w0_c00313{width:915.000000px;}
.x0_c00313{left:0.000000px;}
.x5_c00313{left:686.070000px;}
.x4_c00313{left:695.250000px;}
.x2_c00313{left:704.970000px;}
.x3_c00313{left:706.320000px;}
.x1_c00313{left:718.740000px;}
@media print{
.v0_c00313{vertical-align:0.000000pt;}
.ls0_c00313{letter-spacing:0.000000pt;}
.ws0_c00313{word-spacing:0.000000pt;}
.fs3_c00313{font-size:16.000000pt;}
.fs0_c00313{font-size:21.333333pt;}
.fs1_c00313{font-size:32.000000pt;}
.fs2_c00313{font-size:37.333333pt;}
.y0_c00313{bottom:0.000000pt;}
.y4_c00313{bottom:936.000000pt;}
.y2_c00313{bottom:939.600000pt;}
.y1_c00313{bottom:941.520000pt;}
.y3_c00313{bottom:947.040000pt;}
.h5_c00313{height:16.000000pt;}
.h2_c00313{height:21.333333pt;}
.h3_c00313{height:32.000000pt;}
.h4_c00313{height:37.333333pt;}
.h1_c00313{height:1036.000000pt;}
.h0_c00313{height:1036.266667pt;}
.w0_c00313{width:813.333333pt;}
.x0_c00313{left:0.000000pt;}
.x5_c00313{left:609.840000pt;}
.x4_c00313{left:618.000000pt;}
.x2_c00313{left:626.640000pt;}
.x3_c00313{left:627.840000pt;}
.x1_c00313{left:638.880000pt;}
}





/* 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_c00314 {
    display:none;
  }
  .loading-indicator_c00314.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00314 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_c00314 { 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_c00314" -> "#page-container .classname_c00314")
 */
.pf_c00314 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00314 { /* 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_c00314.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00314 { /* 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_c00314 { /* 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_c00314 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00314 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00314 {overflow:visible;}
  }
}
.c_c00314 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00314 { /* 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_c00314:after { /* webkit #35443 */
  content: '';
}
.t_c00314:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00314 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 */
}
.__c00314 { /* 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_c00314 { /* info for Javascript */
  display:none;
}
.l_c00314 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00314 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00314 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00314: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_c00314 {
    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_c00314.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00314.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_c00314 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00314{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00314;src:url('chunks/assets/font_cfe63ee56e9e10a97d33a3db.woff2')format("woff");}.ff1_c00314{font-family:ff1_c00314;line-height:1.000000;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;}
.m14c_c00314{transform:matrix(0.085983,0.000602,-0.001750,0.249994,0,0);-ms-transform:matrix(0.085983,0.000602,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.085983,0.000602,-0.001750,0.249994,0,0);}
.m13d_c00314{transform:matrix(0.128160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128160,0.000000,0.000000,0.250000,0,0);}
.m0_c00314{transform:matrix(0.130170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130170,0.000000,0.000000,0.250000,0,0);}
.me9_c00314{transform:matrix(0.140410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140410,0.000000,0.000000,0.250000,0,0);}
.m134_c00314{transform:matrix(0.141075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141075,0.000000,0.000000,0.250000,0,0);}
.m147_c00314{transform:matrix(0.141412,0.000990,-0.001750,0.249994,0,0);-ms-transform:matrix(0.141412,0.000990,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.141412,0.000990,-0.001750,0.249994,0,0);}
.m135_c00314{transform:matrix(0.147920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147920,0.000000,0.000000,0.250000,0,0);}
.m11e_c00314{transform:matrix(0.148487,0.000891,-0.001500,0.249996,0,0);-ms-transform:matrix(0.148487,0.000891,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.148487,0.000891,-0.001500,0.249996,0,0);}
.m13a_c00314{transform:matrix(0.162115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162115,0.000000,0.000000,0.250000,0,0);}
.m139_c00314{transform:matrix(0.162585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162585,0.000000,0.000000,0.250000,0,0);}
.m138_c00314{transform:matrix(0.163050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163050,0.000000,0.000000,0.250000,0,0);}
.m137_c00314{transform:matrix(0.163640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163640,0.000000,0.000000,0.250000,0,0);}
.m136_c00314{transform:matrix(0.165925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165925,0.000000,0.000000,0.250000,0,0);}
.mb9_c00314{transform:matrix(0.171815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171815,0.000000,0.000000,0.250000,0,0);}
.mb0_c00314{transform:matrix(0.173540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173540,0.000000,0.000000,0.250000,0,0);}
.m132_c00314{transform:matrix(0.173630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173630,0.000000,0.000000,0.250000,0,0);}
.m4d_c00314{transform:matrix(0.175140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175140,0.000000,0.000000,0.250000,0,0);}
.m133_c00314{transform:matrix(0.176730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176730,0.000000,0.000000,0.250000,0,0);}
.md0_c00314{transform:matrix(0.177515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177515,0.000000,0.000000,0.250000,0,0);}
.mdb_c00314{transform:matrix(0.179615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179615,0.000000,0.000000,0.250000,0,0);}
.m13f_c00314{transform:matrix(0.180280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180280,0.000000,0.000000,0.250000,0,0);}
.m131_c00314{transform:matrix(0.180530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180530,0.000000,0.000000,0.250000,0,0);}
.mfe_c00314{transform:matrix(0.183360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183360,0.000000,0.000000,0.250000,0,0);}
.mbf_c00314{transform:matrix(0.184450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184450,0.000000,0.000000,0.250000,0,0);}
.m19_c00314{transform:matrix(0.185424,0.001483,-0.002000,0.249992,0,0);-ms-transform:matrix(0.185424,0.001483,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.185424,0.001483,-0.002000,0.249992,0,0);}
.mbb_c00314{transform:matrix(0.186045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186045,0.000000,0.000000,0.250000,0,0);}
.m140_c00314{transform:matrix(0.186460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186460,0.000000,0.000000,0.250000,0,0);}
.md8_c00314{transform:matrix(0.186690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186690,0.000000,0.000000,0.250000,0,0);}
.mb5_c00314{transform:matrix(0.187830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187830,0.000000,0.000000,0.250000,0,0);}
.m46_c00314{transform:matrix(0.188825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188825,0.000000,0.000000,0.250000,0,0);}
.mc8_c00314{transform:matrix(0.189265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189265,0.000000,0.000000,0.250000,0,0);}
.m48_c00314{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m49_c00314{transform:matrix(0.190810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190810,0.000000,0.000000,0.250000,0,0);}
.m13b_c00314{transform:matrix(0.190970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190970,0.000000,0.000000,0.250000,0,0);}
.m35_c00314{transform:matrix(0.191969,0.001536,-0.002000,0.249992,0,0);-ms-transform:matrix(0.191969,0.001536,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.191969,0.001536,-0.002000,0.249992,0,0);}
.mff_c00314{transform:matrix(0.192035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192035,0.000000,0.000000,0.250000,0,0);}
.mda_c00314{transform:matrix(0.192120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192120,0.000000,0.000000,0.250000,0,0);}
.m100_c00314{transform:matrix(0.192125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192125,0.000000,0.000000,0.250000,0,0);}
.m142_c00314{transform:matrix(0.192560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192560,0.000000,0.000000,0.250000,0,0);}
.mc3_c00314{transform:matrix(0.192585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192585,0.000000,0.000000,0.250000,0,0);}
.md9_c00314{transform:matrix(0.192830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192830,0.000000,0.000000,0.250000,0,0);}
.m77_c00314{transform:matrix(0.193195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193195,0.000000,0.000000,0.250000,0,0);}
.m2d_c00314{transform:matrix(0.193729,0.001550,-0.002000,0.249992,0,0);-ms-transform:matrix(0.193729,0.001550,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.193729,0.001550,-0.002000,0.249992,0,0);}
.mc0_c00314{transform:matrix(0.193805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193805,0.000000,0.000000,0.250000,0,0);}
.m141_c00314{transform:matrix(0.194540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194540,0.000000,0.000000,0.250000,0,0);}
.m102_c00314{transform:matrix(0.195275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195275,0.000000,0.000000,0.250000,0,0);}
.md5_c00314{transform:matrix(0.195565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195565,0.000000,0.000000,0.250000,0,0);}
.mb7_c00314{transform:matrix(0.195890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195890,0.000000,0.000000,0.250000,0,0);}
.m95_c00314{transform:matrix(0.196510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196510,0.000000,0.000000,0.250000,0,0);}
.m101_c00314{transform:matrix(0.196575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196575,0.000000,0.000000,0.250000,0,0);}
.mc6_c00314{transform:matrix(0.196735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196735,0.000000,0.000000,0.250000,0,0);}
.m149_c00314{transform:matrix(0.196815,0.001378,-0.001750,0.249994,0,0);-ms-transform:matrix(0.196815,0.001378,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.196815,0.001378,-0.001750,0.249994,0,0);}
.mfc_c00314{transform:matrix(0.197225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197225,0.000000,0.000000,0.250000,0,0);}
.md7_c00314{transform:matrix(0.197455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197455,0.000000,0.000000,0.250000,0,0);}
.m3a_c00314{transform:matrix(0.198994,0.001592,-0.002000,0.249992,0,0);-ms-transform:matrix(0.198994,0.001592,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.198994,0.001592,-0.002000,0.249992,0,0);}
.m103_c00314{transform:matrix(0.199305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199305,0.000000,0.000000,0.250000,0,0);}
.mb4_c00314{transform:matrix(0.199810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199810,0.000000,0.000000,0.250000,0,0);}
.m106_c00314{transform:matrix(0.201360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201360,0.000000,0.000000,0.250000,0,0);}
.mba_c00314{transform:matrix(0.203025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203025,0.000000,0.000000,0.250000,0,0);}
.m10b_c00314{transform:matrix(0.203075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203075,0.000000,0.000000,0.250000,0,0);}
.m6e_c00314{transform:matrix(0.203350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203350,0.000000,0.000000,0.250000,0,0);}
.m5c_c00314{transform:matrix(0.204605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204605,0.000000,0.000000,0.250000,0,0);}
.m146_c00314{transform:matrix(0.205495,0.001438,-0.001750,0.249994,0,0);-ms-transform:matrix(0.205495,0.001438,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.205495,0.001438,-0.001750,0.249994,0,0);}
.md2_c00314{transform:matrix(0.205635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205635,0.000000,0.000000,0.250000,0,0);}
.mcd_c00314{transform:matrix(0.206380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206380,0.000000,0.000000,0.250000,0,0);}
.m37_c00314{transform:matrix(0.207628,0.001661,-0.002000,0.249992,0,0);-ms-transform:matrix(0.207628,0.001661,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.207628,0.001661,-0.002000,0.249992,0,0);}
.m14e_c00314{transform:matrix(0.208300,0.001458,-0.001750,0.249994,0,0);-ms-transform:matrix(0.208300,0.001458,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.208300,0.001458,-0.001750,0.249994,0,0);}
.mcb_c00314{transform:matrix(0.208555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208555,0.000000,0.000000,0.250000,0,0);}
.m148_c00314{transform:matrix(0.208670,0.001461,-0.001750,0.249994,0,0);-ms-transform:matrix(0.208670,0.001461,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.208670,0.001461,-0.001750,0.249994,0,0);}
.mb6_c00314{transform:matrix(0.208735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208735,0.000000,0.000000,0.250000,0,0);}
.md3_c00314{transform:matrix(0.210020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210020,0.000000,0.000000,0.250000,0,0);}
.m34_c00314{transform:matrix(0.210388,0.001683,-0.002000,0.249992,0,0);-ms-transform:matrix(0.210388,0.001683,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.210388,0.001683,-0.002000,0.249992,0,0);}
.m50_c00314{transform:matrix(0.210395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210395,0.000000,0.000000,0.250000,0,0);}
.mdd_c00314{transform:matrix(0.210555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210555,0.000000,0.000000,0.250000,0,0);}
.mca_c00314{transform:matrix(0.210690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210690,0.000000,0.000000,0.250000,0,0);}
.m1e_c00314{transform:matrix(0.210693,0.001686,-0.002000,0.249992,0,0);-ms-transform:matrix(0.210693,0.001686,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.210693,0.001686,-0.002000,0.249992,0,0);}
.m1c_c00314{transform:matrix(0.210823,0.001687,-0.002000,0.249992,0,0);-ms-transform:matrix(0.210823,0.001687,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.210823,0.001687,-0.002000,0.249992,0,0);}
.m4b_c00314{transform:matrix(0.210830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210830,0.000000,0.000000,0.250000,0,0);}
.mce_c00314{transform:matrix(0.211580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211580,0.000000,0.000000,0.250000,0,0);}
.mb3_c00314{transform:matrix(0.211635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211635,0.000000,0.000000,0.250000,0,0);}
.m5_c00314{transform:matrix(0.212153,0.001697,-0.002000,0.249992,0,0);-ms-transform:matrix(0.212153,0.001697,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.212153,0.001697,-0.002000,0.249992,0,0);}
.m1a_c00314{transform:matrix(0.213043,0.001704,-0.002000,0.249992,0,0);-ms-transform:matrix(0.213043,0.001704,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.213043,0.001704,-0.002000,0.249992,0,0);}
.mc5_c00314{transform:matrix(0.213360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213360,0.000000,0.000000,0.250000,0,0);}
.me6_c00314{transform:matrix(0.214725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214725,0.000000,0.000000,0.250000,0,0);}
.m5f_c00314{transform:matrix(0.214955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214955,0.000000,0.000000,0.250000,0,0);}
.mde_c00314{transform:matrix(0.215060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215060,0.000000,0.000000,0.250000,0,0);}
.m80_c00314{transform:matrix(0.215670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215670,0.000000,0.000000,0.250000,0,0);}
.mb8_c00314{transform:matrix(0.216575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216575,0.000000,0.000000,0.250000,0,0);}
.m13c_c00314{transform:matrix(0.217005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217005,0.000000,0.000000,0.250000,0,0);}
.m62_c00314{transform:matrix(0.217085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217085,0.000000,0.000000,0.250000,0,0);}
.mb1_c00314{transform:matrix(0.217370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217370,0.000000,0.000000,0.250000,0,0);}
.mc9_c00314{transform:matrix(0.217375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217375,0.000000,0.000000,0.250000,0,0);}
.mec_c00314{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m13e_c00314{transform:matrix(0.217505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217505,0.000000,0.000000,0.250000,0,0);}
.m38_c00314{transform:matrix(0.217533,0.001740,-0.002000,0.249992,0,0);-ms-transform:matrix(0.217533,0.001740,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.217533,0.001740,-0.002000,0.249992,0,0);}
.m1b_c00314{transform:matrix(0.217813,0.001743,-0.002000,0.249992,0,0);-ms-transform:matrix(0.217813,0.001743,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.217813,0.001743,-0.002000,0.249992,0,0);}
.mc1_c00314{transform:matrix(0.218050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218050,0.000000,0.000000,0.250000,0,0);}
.m107_c00314{transform:matrix(0.218095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218095,0.000000,0.000000,0.250000,0,0);}
.m143_c00314{transform:matrix(0.218410,0.001529,-0.001750,0.249994,0,0);-ms-transform:matrix(0.218410,0.001529,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.218410,0.001529,-0.001750,0.249994,0,0);}
.m18_c00314{transform:matrix(0.218588,0.001749,-0.002000,0.249992,0,0);-ms-transform:matrix(0.218588,0.001749,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.218588,0.001749,-0.002000,0.249992,0,0);}
.mfd_c00314{transform:matrix(0.218675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218675,0.000000,0.000000,0.250000,0,0);}
.mb2_c00314{transform:matrix(0.219970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219970,0.000000,0.000000,0.250000,0,0);}
.md1_c00314{transform:matrix(0.220010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220010,0.000000,0.000000,0.250000,0,0);}
.m39_c00314{transform:matrix(0.220168,0.001761,-0.002000,0.249992,0,0);-ms-transform:matrix(0.220168,0.001761,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.220168,0.001761,-0.002000,0.249992,0,0);}
.m105_c00314{transform:matrix(0.220300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220300,0.000000,0.000000,0.250000,0,0);}
.m2_c00314{transform:matrix(0.220368,0.001763,-0.002000,0.249992,0,0);-ms-transform:matrix(0.220368,0.001763,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.220368,0.001763,-0.002000,0.249992,0,0);}
.m2f_c00314{transform:matrix(0.221198,0.001770,-0.002000,0.249992,0,0);-ms-transform:matrix(0.221198,0.001770,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.221198,0.001770,-0.002000,0.249992,0,0);}
.m8e_c00314{transform:matrix(0.221470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221470,0.000000,0.000000,0.250000,0,0);}
.mc4_c00314{transform:matrix(0.221495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221495,0.000000,0.000000,0.250000,0,0);}
.m41_c00314{transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);}
.m89_c00314{transform:matrix(0.222215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222215,0.000000,0.000000,0.250000,0,0);}
.m8b_c00314{transform:matrix(0.222490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222490,0.000000,0.000000,0.250000,0,0);}
.m57_c00314{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.me5_c00314{transform:matrix(0.223180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223180,0.000000,0.000000,0.250000,0,0);}
.m17_c00314{transform:matrix(0.223208,0.001786,-0.002000,0.249992,0,0);-ms-transform:matrix(0.223208,0.001786,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.223208,0.001786,-0.002000,0.249992,0,0);}
.m40_c00314{transform:matrix(0.223270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223270,0.000000,0.000000,0.250000,0,0);}
.m91_c00314{transform:matrix(0.223605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223605,0.000000,0.000000,0.250000,0,0);}
.m20_c00314{transform:matrix(0.223618,0.001789,-0.002000,0.249992,0,0);-ms-transform:matrix(0.223618,0.001789,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.223618,0.001789,-0.002000,0.249992,0,0);}
.m65_c00314{transform:matrix(0.223970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223970,0.000000,0.000000,0.250000,0,0);}
.m104_c00314{transform:matrix(0.224430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224430,0.000000,0.000000,0.250000,0,0);}
.m4e_c00314{transform:matrix(0.224555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224555,0.000000,0.000000,0.250000,0,0);}
.m6a_c00314{transform:matrix(0.224735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224735,0.000000,0.000000,0.250000,0,0);}
.mf8_c00314{transform:matrix(0.224860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224860,0.000000,0.000000,0.250000,0,0);}
.m9e_c00314{transform:matrix(0.225345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225345,0.000000,0.000000,0.250000,0,0);}
.m4f_c00314{transform:matrix(0.225395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225395,0.000000,0.000000,0.250000,0,0);}
.m9d_c00314{transform:matrix(0.225885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225885,0.000000,0.000000,0.250000,0,0);}
.m14b_c00314{transform:matrix(0.225954,0.001582,-0.001750,0.249994,0,0);-ms-transform:matrix(0.225954,0.001582,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.225954,0.001582,-0.001750,0.249994,0,0);}
.m4_c00314{transform:matrix(0.226058,0.001808,-0.002000,0.249992,0,0);-ms-transform:matrix(0.226058,0.001808,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.226058,0.001808,-0.002000,0.249992,0,0);}
.mcf_c00314{transform:matrix(0.226110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226110,0.000000,0.000000,0.250000,0,0);}
.md6_c00314{transform:matrix(0.226720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226720,0.000000,0.000000,0.250000,0,0);}
.m72_c00314{transform:matrix(0.227050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227050,0.000000,0.000000,0.250000,0,0);}
.m92_c00314{transform:matrix(0.227430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227430,0.000000,0.000000,0.250000,0,0);}
.me_c00314{transform:matrix(0.227678,0.001821,-0.002000,0.249992,0,0);-ms-transform:matrix(0.227678,0.001821,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.227678,0.001821,-0.002000,0.249992,0,0);}
.me0_c00314{transform:matrix(0.227855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227855,0.000000,0.000000,0.250000,0,0);}
.mc2_c00314{transform:matrix(0.227975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227975,0.000000,0.000000,0.250000,0,0);}
.mf7_c00314{transform:matrix(0.228090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228090,0.000000,0.000000,0.250000,0,0);}
.m76_c00314{transform:matrix(0.228125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228125,0.000000,0.000000,0.250000,0,0);}
.m14a_c00314{transform:matrix(0.229769,0.001608,-0.001750,0.249994,0,0);-ms-transform:matrix(0.229769,0.001608,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.229769,0.001608,-0.001750,0.249994,0,0);}
.me3_c00314{transform:matrix(0.230445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230445,0.000000,0.000000,0.250000,0,0);}
.med_c00314{transform:matrix(0.230635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230635,0.000000,0.000000,0.250000,0,0);}
.md4_c00314{transform:matrix(0.230725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230725,0.000000,0.000000,0.250000,0,0);}
.m118_c00314{transform:matrix(0.230895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230895,0.000000,0.000000,0.250000,0,0);}
.m3b_c00314{transform:matrix(0.231075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231075,0.000000,0.000000,0.250000,0,0);}
.mbd_c00314{transform:matrix(0.231430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231430,0.000000,0.000000,0.250000,0,0);}
.m5e_c00314{transform:matrix(0.231475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231475,0.000000,0.000000,0.250000,0,0);}
.mbc_c00314{transform:matrix(0.231495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231495,0.000000,0.000000,0.250000,0,0);}
.m4c_c00314{transform:matrix(0.231570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231570,0.000000,0.000000,0.250000,0,0);}
.m1d_c00314{transform:matrix(0.231678,0.001853,-0.002000,0.249992,0,0);-ms-transform:matrix(0.231678,0.001853,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.231678,0.001853,-0.002000,0.249992,0,0);}
.m85_c00314{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m33_c00314{transform:matrix(0.232893,0.001863,-0.002000,0.249992,0,0);-ms-transform:matrix(0.232893,0.001863,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.232893,0.001863,-0.002000,0.249992,0,0);}
.m10a_c00314{transform:matrix(0.232985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232985,0.000000,0.000000,0.250000,0,0);}
.m52_c00314{transform:matrix(0.233680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233680,0.000000,0.000000,0.250000,0,0);}
.m47_c00314{transform:matrix(0.233710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233710,0.000000,0.000000,0.250000,0,0);}
.m11_c00314{transform:matrix(0.233948,0.001872,-0.002000,0.249992,0,0);-ms-transform:matrix(0.233948,0.001872,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.233948,0.001872,-0.002000,0.249992,0,0);}
.m88_c00314{transform:matrix(0.234260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234260,0.000000,0.000000,0.250000,0,0);}
.m84_c00314{transform:matrix(0.234340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234340,0.000000,0.000000,0.250000,0,0);}
.m75_c00314{transform:matrix(0.234690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234690,0.000000,0.000000,0.250000,0,0);}
.ma9_c00314{transform:matrix(0.234785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234785,0.000000,0.000000,0.250000,0,0);}
.mcc_c00314{transform:matrix(0.234855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234855,0.000000,0.000000,0.250000,0,0);}
.m63_c00314{transform:matrix(0.235080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235080,0.000000,0.000000,0.250000,0,0);}
.mc7_c00314{transform:matrix(0.235105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235105,0.000000,0.000000,0.250000,0,0);}
.m79_c00314{transform:matrix(0.236280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236280,0.000000,0.000000,0.250000,0,0);}
.m116_c00314{transform:matrix(0.236615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236615,0.000000,0.000000,0.250000,0,0);}
.m14_c00314{transform:matrix(0.237177,0.001897,-0.002000,0.249992,0,0);-ms-transform:matrix(0.237177,0.001897,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.237177,0.001897,-0.002000,0.249992,0,0);}
.m4a_c00314{transform:matrix(0.237300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237300,0.000000,0.000000,0.250000,0,0);}
.m125_c00314{transform:matrix(0.237591,0.001426,-0.001500,0.249996,0,0);-ms-transform:matrix(0.237591,0.001426,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.237591,0.001426,-0.001500,0.249996,0,0);}
.m74_c00314{transform:matrix(0.237620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237620,0.000000,0.000000,0.250000,0,0);}
.m1f_c00314{transform:matrix(0.238352,0.001907,-0.002000,0.249992,0,0);-ms-transform:matrix(0.238352,0.001907,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.238352,0.001907,-0.002000,0.249992,0,0);}
.m51_c00314{transform:matrix(0.238560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238560,0.000000,0.000000,0.250000,0,0);}
.m144_c00314{transform:matrix(0.238694,0.001671,-0.001750,0.249994,0,0);-ms-transform:matrix(0.238694,0.001671,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.238694,0.001671,-0.001750,0.249994,0,0);}
.ma1_c00314{transform:matrix(0.239125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239125,0.000000,0.000000,0.250000,0,0);}
.m28_c00314{transform:matrix(0.239287,0.001914,-0.002000,0.249992,0,0);-ms-transform:matrix(0.239287,0.001914,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.239287,0.001914,-0.002000,0.249992,0,0);}
.m36_c00314{transform:matrix(0.239827,0.001919,-0.002000,0.249992,0,0);-ms-transform:matrix(0.239827,0.001919,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.239827,0.001919,-0.002000,0.249992,0,0);}
.mbe_c00314{transform:matrix(0.240020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240020,0.000000,0.000000,0.250000,0,0);}
.m8d_c00314{transform:matrix(0.240110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240110,0.000000,0.000000,0.250000,0,0);}
.m56_c00314{transform:matrix(0.240635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240635,0.000000,0.000000,0.250000,0,0);}
.m5a_c00314{transform:matrix(0.241415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241415,0.000000,0.000000,0.250000,0,0);}
.m5b_c00314{transform:matrix(0.241920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241920,0.000000,0.000000,0.250000,0,0);}
.m25_c00314{transform:matrix(0.241987,0.001936,-0.002000,0.249992,0,0);-ms-transform:matrix(0.241987,0.001936,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.241987,0.001936,-0.002000,0.249992,0,0);}
.m61_c00314{transform:matrix(0.242705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242705,0.000000,0.000000,0.250000,0,0);}
.mc_c00314{transform:matrix(0.242737,0.001942,-0.002000,0.249992,0,0);-ms-transform:matrix(0.242737,0.001942,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.242737,0.001942,-0.002000,0.249992,0,0);}
.m44_c00314{transform:matrix(0.242745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242745,0.000000,0.000000,0.250000,0,0);}
.m145_c00314{transform:matrix(0.243289,0.001703,-0.001750,0.249994,0,0);-ms-transform:matrix(0.243289,0.001703,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.243289,0.001703,-0.001750,0.249994,0,0);}
.m7e_c00314{transform:matrix(0.243465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243465,0.000000,0.000000,0.250000,0,0);}
.m8_c00314{transform:matrix(0.243532,0.001948,-0.002000,0.249992,0,0);-ms-transform:matrix(0.243532,0.001948,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.243532,0.001948,-0.002000,0.249992,0,0);}
.m42_c00314{transform:matrix(0.243540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243540,0.000000,0.000000,0.250000,0,0);}
.m122_c00314{transform:matrix(0.244001,0.001464,-0.001500,0.249996,0,0);-ms-transform:matrix(0.244001,0.001464,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.244001,0.001464,-0.001500,0.249996,0,0);}
.m6_c00314{transform:matrix(0.244087,0.001953,-0.002000,0.249992,0,0);-ms-transform:matrix(0.244087,0.001953,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.244087,0.001953,-0.002000,0.249992,0,0);}
.m8f_c00314{transform:matrix(0.244770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244770,0.000000,0.000000,0.250000,0,0);}
.mf3_c00314{transform:matrix(0.244860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244860,0.000000,0.000000,0.250000,0,0);}
.mdc_c00314{transform:matrix(0.245150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245150,0.000000,0.000000,0.250000,0,0);}
.me2_c00314{transform:matrix(0.245155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245155,0.000000,0.000000,0.250000,0,0);}
.m112_c00314{transform:matrix(0.245215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245215,0.000000,0.000000,0.250000,0,0);}
.m127_c00314{transform:matrix(0.245386,0.001472,-0.001500,0.249996,0,0);-ms-transform:matrix(0.245386,0.001472,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.245386,0.001472,-0.001500,0.249996,0,0);}
.m3f_c00314{transform:matrix(0.245425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245425,0.000000,0.000000,0.250000,0,0);}
.m7a_c00314{transform:matrix(0.245460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245460,0.000000,0.000000,0.250000,0,0);}
.m70_c00314{transform:matrix(0.245890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245890,0.000000,0.000000,0.250000,0,0);}
.m6d_c00314{transform:matrix(0.246135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246135,0.000000,0.000000,0.250000,0,0);}
.ma0_c00314{transform:matrix(0.246195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246195,0.000000,0.000000,0.250000,0,0);}
.m9_c00314{transform:matrix(0.246197,0.001970,-0.002000,0.249992,0,0);-ms-transform:matrix(0.246197,0.001970,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.246197,0.001970,-0.002000,0.249992,0,0);}
.m45_c00314{transform:matrix(0.246660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246660,0.000000,0.000000,0.250000,0,0);}
.m11f_c00314{transform:matrix(0.246701,0.001480,-0.001500,0.249996,0,0);-ms-transform:matrix(0.246701,0.001480,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.246701,0.001480,-0.001500,0.249996,0,0);}
.m11d_c00314{transform:matrix(0.246726,0.001480,-0.001500,0.249996,0,0);-ms-transform:matrix(0.246726,0.001480,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.246726,0.001480,-0.001500,0.249996,0,0);}
.m23_c00314{transform:matrix(0.246932,0.001975,-0.002000,0.249992,0,0);-ms-transform:matrix(0.246932,0.001975,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.246932,0.001975,-0.002000,0.249992,0,0);}
.mae_c00314{transform:matrix(0.246980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246980,0.000000,0.000000,0.250000,0,0);}
.m115_c00314{transform:matrix(0.247505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247505,0.000000,0.000000,0.250000,0,0);}
.m53_c00314{transform:matrix(0.247550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247550,0.000000,0.000000,0.250000,0,0);}
.m8a_c00314{transform:matrix(0.247915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247915,0.000000,0.000000,0.250000,0,0);}
.me1_c00314{transform:matrix(0.247955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247955,0.000000,0.000000,0.250000,0,0);}
.m124_c00314{transform:matrix(0.248301,0.001490,-0.001500,0.249996,0,0);-ms-transform:matrix(0.248301,0.001490,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.248301,0.001490,-0.001500,0.249996,0,0);}
.ma8_c00314{transform:matrix(0.248305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248305,0.000000,0.000000,0.250000,0,0);}
.ma3_c00314{transform:matrix(0.248445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248445,0.000000,0.000000,0.250000,0,0);}
.me4_c00314{transform:matrix(0.248485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248485,0.000000,0.000000,0.250000,0,0);}
.m7c_c00314{transform:matrix(0.249215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249215,0.000000,0.000000,0.250000,0,0);}
.mdf_c00314{transform:matrix(0.249305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249305,0.000000,0.000000,0.250000,0,0);}
.m83_c00314{transform:matrix(0.249320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249320,0.000000,0.000000,0.250000,0,0);}
.m3d_c00314{transform:matrix(0.249405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249405,0.000000,0.000000,0.250000,0,0);}
.m7f_c00314{transform:matrix(0.249720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249720,0.000000,0.000000,0.250000,0,0);}
.m55_c00314{transform:matrix(0.249760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249760,0.000000,0.000000,0.250000,0,0);}
.m11a_c00314{transform:matrix(0.249930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249930,0.000000,0.000000,0.250000,0,0);}
.m6f_c00314{transform:matrix(0.250235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250235,0.000000,0.000000,0.250000,0,0);}
.m99_c00314{transform:matrix(0.250460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250460,0.000000,0.000000,0.250000,0,0);}
.m110_c00314{transform:matrix(0.250790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250790,0.000000,0.000000,0.250000,0,0);}
.m86_c00314{transform:matrix(0.250815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250815,0.000000,0.000000,0.250000,0,0);}
.mf5_c00314{transform:matrix(0.251100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251100,0.000000,0.000000,0.250000,0,0);}
.m11b_c00314{transform:matrix(0.251400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251400,0.000000,0.000000,0.250000,0,0);}
.m10f_c00314{transform:matrix(0.251635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251635,0.000000,0.000000,0.250000,0,0);}
.mab_c00314{transform:matrix(0.251755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251755,0.000000,0.000000,0.250000,0,0);}
.m8c_c00314{transform:matrix(0.252390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252390,0.000000,0.000000,0.250000,0,0);}
.m69_c00314{transform:matrix(0.252630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252630,0.000000,0.000000,0.250000,0,0);}
.m71_c00314{transform:matrix(0.252715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252715,0.000000,0.000000,0.250000,0,0);}
.mf9_c00314{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m73_c00314{transform:matrix(0.252885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252885,0.000000,0.000000,0.250000,0,0);}
.m16_c00314{transform:matrix(0.253137,0.002025,-0.002000,0.249992,0,0);-ms-transform:matrix(0.253137,0.002025,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.253137,0.002025,-0.002000,0.249992,0,0);}
.m6b_c00314{transform:matrix(0.254060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254060,0.000000,0.000000,0.250000,0,0);}
.m87_c00314{transform:matrix(0.254075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254075,0.000000,0.000000,0.250000,0,0);}
.m108_c00314{transform:matrix(0.254185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254185,0.000000,0.000000,0.250000,0,0);}
.m30_c00314{transform:matrix(0.254222,0.002034,-0.002000,0.249992,0,0);-ms-transform:matrix(0.254222,0.002034,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.254222,0.002034,-0.002000,0.249992,0,0);}
.m114_c00314{transform:matrix(0.254670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254670,0.000000,0.000000,0.250000,0,0);}
.m14d_c00314{transform:matrix(0.255249,0.001787,-0.001750,0.249994,0,0);-ms-transform:matrix(0.255249,0.001787,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.255249,0.001787,-0.001750,0.249994,0,0);}
.mf0_c00314{transform:matrix(0.255675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255675,0.000000,0.000000,0.250000,0,0);}
.m29_c00314{transform:matrix(0.255852,0.002047,-0.002000,0.249992,0,0);-ms-transform:matrix(0.255852,0.002047,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.255852,0.002047,-0.002000,0.249992,0,0);}
.m111_c00314{transform:matrix(0.255895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255895,0.000000,0.000000,0.250000,0,0);}
.ma_c00314{transform:matrix(0.255897,0.002047,-0.002000,0.249992,0,0);-ms-transform:matrix(0.255897,0.002047,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.255897,0.002047,-0.002000,0.249992,0,0);}
.ma2_c00314{transform:matrix(0.256710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256710,0.000000,0.000000,0.250000,0,0);}
.md_c00314{transform:matrix(0.256752,0.002054,-0.002000,0.249992,0,0);-ms-transform:matrix(0.256752,0.002054,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.256752,0.002054,-0.002000,0.249992,0,0);}
.m27_c00314{transform:matrix(0.257012,0.002056,-0.002000,0.249992,0,0);-ms-transform:matrix(0.257012,0.002056,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.257012,0.002056,-0.002000,0.249992,0,0);}
.m94_c00314{transform:matrix(0.257420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257420,0.000000,0.000000,0.250000,0,0);}
.mf2_c00314{transform:matrix(0.257550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257550,0.000000,0.000000,0.250000,0,0);}
.m21_c00314{transform:matrix(0.257867,0.002063,-0.002000,0.249992,0,0);-ms-transform:matrix(0.257867,0.002063,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.257867,0.002063,-0.002000,0.249992,0,0);}
.m43_c00314{transform:matrix(0.257900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257900,0.000000,0.000000,0.250000,0,0);}
.m22_c00314{transform:matrix(0.258017,0.002064,-0.002000,0.249992,0,0);-ms-transform:matrix(0.258017,0.002064,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.258017,0.002064,-0.002000,0.249992,0,0);}
.m11c_c00314{transform:matrix(0.258070,0.001548,-0.001500,0.249996,0,0);-ms-transform:matrix(0.258070,0.001548,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.258070,0.001548,-0.001500,0.249996,0,0);}
.m123_c00314{transform:matrix(0.259515,0.001557,-0.001500,0.249996,0,0);-ms-transform:matrix(0.259515,0.001557,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.259515,0.001557,-0.001500,0.249996,0,0);}
.m96_c00314{transform:matrix(0.260205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260205,0.000000,0.000000,0.250000,0,0);}
.mac_c00314{transform:matrix(0.260545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260545,0.000000,0.000000,0.250000,0,0);}
.m2e_c00314{transform:matrix(0.260782,0.002086,-0.002000,0.249992,0,0);-ms-transform:matrix(0.260782,0.002086,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.260782,0.002086,-0.002000,0.249992,0,0);}
.m9c_c00314{transform:matrix(0.260895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260895,0.000000,0.000000,0.250000,0,0);}
.m12f_c00314{transform:matrix(0.260995,0.001566,-0.001500,0.249996,0,0);-ms-transform:matrix(0.260995,0.001566,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.260995,0.001566,-0.001500,0.249996,0,0);}
.me7_c00314{transform:matrix(0.261155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261155,0.000000,0.000000,0.250000,0,0);}
.m9a_c00314{transform:matrix(0.262085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262085,0.000000,0.000000,0.250000,0,0);}
.ma6_c00314{transform:matrix(0.262290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262290,0.000000,0.000000,0.250000,0,0);}
.m128_c00314{transform:matrix(0.262345,0.001574,-0.001500,0.249996,0,0);-ms-transform:matrix(0.262345,0.001574,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.262345,0.001574,-0.001500,0.249996,0,0);}
.m32_c00314{transform:matrix(0.262787,0.002102,-0.002000,0.249992,0,0);-ms-transform:matrix(0.262787,0.002102,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.262787,0.002102,-0.002000,0.249992,0,0);}
.m2a_c00314{transform:matrix(0.263172,0.002105,-0.002000,0.249992,0,0);-ms-transform:matrix(0.263172,0.002105,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.263172,0.002105,-0.002000,0.249992,0,0);}
.m121_c00314{transform:matrix(0.263280,0.001580,-0.001500,0.249996,0,0);-ms-transform:matrix(0.263280,0.001580,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.263280,0.001580,-0.001500,0.249996,0,0);}
.m93_c00314{transform:matrix(0.263340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263340,0.000000,0.000000,0.250000,0,0);}
.m7b_c00314{transform:matrix(0.263775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263775,0.000000,0.000000,0.250000,0,0);}
.m6c_c00314{transform:matrix(0.263785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263785,0.000000,0.000000,0.250000,0,0);}
.m59_c00314{transform:matrix(0.263935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263935,0.000000,0.000000,0.250000,0,0);}
.m15_c00314{transform:matrix(0.264757,0.002118,-0.002000,0.249992,0,0);-ms-transform:matrix(0.264757,0.002118,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.264757,0.002118,-0.002000,0.249992,0,0);}
.maa_c00314{transform:matrix(0.264765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264765,0.000000,0.000000,0.250000,0,0);}
.ma5_c00314{transform:matrix(0.264805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264805,0.000000,0.000000,0.250000,0,0);}
.m10_c00314{transform:matrix(0.264847,0.002119,-0.002000,0.249992,0,0);-ms-transform:matrix(0.264847,0.002119,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.264847,0.002119,-0.002000,0.249992,0,0);}
.m5d_c00314{transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);}
.m24_c00314{transform:matrix(0.265607,0.002125,-0.002000,0.249992,0,0);-ms-transform:matrix(0.265607,0.002125,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.265607,0.002125,-0.002000,0.249992,0,0);}
.m3_c00314{transform:matrix(0.265731,0.002126,-0.002000,0.249992,0,0);-ms-transform:matrix(0.265731,0.002126,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.265731,0.002126,-0.002000,0.249992,0,0);}
.m60_c00314{transform:matrix(0.266135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266135,0.000000,0.000000,0.250000,0,0);}
.mef_c00314{transform:matrix(0.266240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266240,0.000000,0.000000,0.250000,0,0);}
.maf_c00314{transform:matrix(0.266400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266400,0.000000,0.000000,0.250000,0,0);}
.mfa_c00314{transform:matrix(0.266415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266415,0.000000,0.000000,0.250000,0,0);}
.ma7_c00314{transform:matrix(0.266490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266490,0.000000,0.000000,0.250000,0,0);}
.me8_c00314{transform:matrix(0.267700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267700,0.000000,0.000000,0.250000,0,0);}
.mad_c00314{transform:matrix(0.267755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267755,0.000000,0.000000,0.250000,0,0);}
.m97_c00314{transform:matrix(0.268005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268005,0.000000,0.000000,0.250000,0,0);}
.mee_c00314{transform:matrix(0.268125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268125,0.000000,0.000000,0.250000,0,0);}
.m2b_c00314{transform:matrix(0.268611,0.002149,-0.002000,0.249992,0,0);-ms-transform:matrix(0.268611,0.002149,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.268611,0.002149,-0.002000,0.249992,0,0);}
.m7d_c00314{transform:matrix(0.268715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268715,0.000000,0.000000,0.250000,0,0);}
.m31_c00314{transform:matrix(0.268996,0.002152,-0.002000,0.249992,0,0);-ms-transform:matrix(0.268996,0.002152,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.268996,0.002152,-0.002000,0.249992,0,0);}
.m78_c00314{transform:matrix(0.269070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269070,0.000000,0.000000,0.250000,0,0);}
.m10e_c00314{transform:matrix(0.269355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269355,0.000000,0.000000,0.250000,0,0);}
.m119_c00314{transform:matrix(0.269900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269900,0.000000,0.000000,0.250000,0,0);}
.m126_c00314{transform:matrix(0.270355,0.001622,-0.001500,0.249996,0,0);-ms-transform:matrix(0.270355,0.001622,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.270355,0.001622,-0.001500,0.249996,0,0);}
.m64_c00314{transform:matrix(0.270395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270395,0.000000,0.000000,0.250000,0,0);}
.mf1_c00314{transform:matrix(0.270455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270455,0.000000,0.000000,0.250000,0,0);}
.m9b_c00314{transform:matrix(0.270665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270665,0.000000,0.000000,0.250000,0,0);}
.m10c_c00314{transform:matrix(0.270710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270710,0.000000,0.000000,0.250000,0,0);}
.m26_c00314{transform:matrix(0.270716,0.002166,-0.002000,0.249992,0,0);-ms-transform:matrix(0.270716,0.002166,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.270716,0.002166,-0.002000,0.249992,0,0);}
.m13_c00314{transform:matrix(0.271116,0.002169,-0.002000,0.249992,0,0);-ms-transform:matrix(0.271116,0.002169,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.271116,0.002169,-0.002000,0.249992,0,0);}
.mf_c00314{transform:matrix(0.271311,0.002170,-0.002000,0.249992,0,0);-ms-transform:matrix(0.271311,0.002170,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.271311,0.002170,-0.002000,0.249992,0,0);}
.m113_c00314{transform:matrix(0.271675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271675,0.000000,0.000000,0.250000,0,0);}
.m68_c00314{transform:matrix(0.272565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272565,0.000000,0.000000,0.250000,0,0);}
.mb_c00314{transform:matrix(0.272756,0.002182,-0.002000,0.249992,0,0);-ms-transform:matrix(0.272756,0.002182,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.272756,0.002182,-0.002000,0.249992,0,0);}
.m58_c00314{transform:matrix(0.272775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272775,0.000000,0.000000,0.250000,0,0);}
.m82_c00314{transform:matrix(0.273135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273135,0.000000,0.000000,0.250000,0,0);}
.m54_c00314{transform:matrix(0.273545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273545,0.000000,0.000000,0.250000,0,0);}
.m109_c00314{transform:matrix(0.273650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273650,0.000000,0.000000,0.250000,0,0);}
.m66_c00314{transform:matrix(0.273655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273655,0.000000,0.000000,0.250000,0,0);}
.mf6_c00314{transform:matrix(0.274035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274035,0.000000,0.000000,0.250000,0,0);}
.meb_c00314{transform:matrix(0.275470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275470,0.000000,0.000000,0.250000,0,0);}
.mea_c00314{transform:matrix(0.275505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275505,0.000000,0.000000,0.250000,0,0);}
.m117_c00314{transform:matrix(0.275705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275705,0.000000,0.000000,0.250000,0,0);}
.m12_c00314{transform:matrix(0.276186,0.002209,-0.002000,0.249992,0,0);-ms-transform:matrix(0.276186,0.002209,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.276186,0.002209,-0.002000,0.249992,0,0);}
.m3e_c00314{transform:matrix(0.276390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276390,0.000000,0.000000,0.250000,0,0);}
.m90_c00314{transform:matrix(0.276585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276585,0.000000,0.000000,0.250000,0,0);}
.m7_c00314{transform:matrix(0.276721,0.002214,-0.002000,0.249992,0,0);-ms-transform:matrix(0.276721,0.002214,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.276721,0.002214,-0.002000,0.249992,0,0);}
.mf4_c00314{transform:matrix(0.276790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276790,0.000000,0.000000,0.250000,0,0);}
.m98_c00314{transform:matrix(0.277015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277015,0.000000,0.000000,0.250000,0,0);}
.m81_c00314{transform:matrix(0.277580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277580,0.000000,0.000000,0.250000,0,0);}
.m2c_c00314{transform:matrix(0.277916,0.002223,-0.002000,0.249992,0,0);-ms-transform:matrix(0.277916,0.002223,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.277916,0.002223,-0.002000,0.249992,0,0);}
.m3c_c00314{transform:matrix(0.278545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278545,0.000000,0.000000,0.250000,0,0);}
.m67_c00314{transform:matrix(0.278980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278980,0.000000,0.000000,0.250000,0,0);}
.m10d_c00314{transform:matrix(0.280550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280550,0.000000,0.000000,0.250000,0,0);}
.m9f_c00314{transform:matrix(0.281140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281140,0.000000,0.000000,0.250000,0,0);}
.ma4_c00314{transform:matrix(0.281965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281965,0.000000,0.000000,0.250000,0,0);}
.m120_c00314{transform:matrix(0.285095,0.001711,-0.001500,0.249996,0,0);-ms-transform:matrix(0.285095,0.001711,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.285095,0.001711,-0.001500,0.249996,0,0);}
.mfb_c00314{transform:matrix(0.287165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287165,0.000000,0.000000,0.250000,0,0);}
.m12b_c00314{transform:matrix(0.326739,0.001960,-0.001500,0.249996,0,0);-ms-transform:matrix(0.326739,0.001960,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.326739,0.001960,-0.001500,0.249996,0,0);}
.m1_c00314{transform:matrix(0.354400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354400,0.000000,0.000000,0.250000,0,0);}
.m12d_c00314{transform:matrix(0.369018,0.002214,-0.001500,0.249996,0,0);-ms-transform:matrix(0.369018,0.002214,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.369018,0.002214,-0.001500,0.249996,0,0);}
.m12a_c00314{transform:matrix(0.381978,0.002292,-0.001500,0.249996,0,0);-ms-transform:matrix(0.381978,0.002292,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.381978,0.002292,-0.001500,0.249996,0,0);}
.m12c_c00314{transform:matrix(0.473161,0.002839,-0.001500,0.249996,0,0);-ms-transform:matrix(0.473161,0.002839,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.473161,0.002839,-0.001500,0.249996,0,0);}
.m130_c00314{transform:matrix(0.522306,0.003134,-0.001500,0.249996,0,0);-ms-transform:matrix(0.522306,0.003134,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.522306,0.003134,-0.001500,0.249996,0,0);}
.m12e_c00314{transform:matrix(0.607119,0.003643,-0.001500,0.249996,0,0);-ms-transform:matrix(0.607119,0.003643,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.607119,0.003643,-0.001500,0.249996,0,0);}
.m129_c00314{transform:matrix(0.621289,0.003728,-0.001500,0.249996,0,0);-ms-transform:matrix(0.621289,0.003728,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.621289,0.003728,-0.001500,0.249996,0,0);}
.v0_c00314{vertical-align:0.000000px;}
.ls0_c00314{letter-spacing:0.000000px;}
.sc__c00314{text-shadow:none;}
.sc0_c00314{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__c00314{-webkit-text-stroke:0px transparent;}
.sc0_c00314{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00314{word-spacing:0.000000px;}
.fc0_c00314{color:transparent;}
.fs8_c00314{font-size:24.000432px;}
.fs3_c00314{font-size:72.000000px;}
.fs7_c00314{font-size:72.001296px;}
.fs1_c00314{font-size:72.002304px;}
.fs4_c00314{font-size:78.000000px;}
.fsa_c00314{font-size:78.001911px;}
.fs0_c00314{font-size:84.000000px;}
.fs2_c00314{font-size:84.002688px;}
.fs5_c00314{font-size:90.000000px;}
.fs6_c00314{font-size:96.000000px;}
.fs9_c00314{font-size:108.000000px;}
.y0_c00314{bottom:0.000000px;}
.yb9_c00314{bottom:86.577028px;}
.yb8_c00314{bottom:87.274523px;}
.yb7_c00314{bottom:87.415821px;}
.yb6_c00314{bottom:87.807502px;}
.yb5_c00314{bottom:88.051302px;}
.yb4_c00314{bottom:88.187361px;}
.yb3_c00314{bottom:88.427412px;}
.yb2_c00314{bottom:88.582046px;}
.yb1_c00314{bottom:88.805412px;}
.yb0_c00314{bottom:89.344094px;}
.yaf_c00314{bottom:89.892152px;}
.yae_c00314{bottom:90.181500px;}
.yad_c00314{bottom:119.670000px;}
.yac_c00314{bottom:153.004500px;}
.yab_c00314{bottom:176.728392px;}
.yaa_c00314{bottom:176.728632px;}
.ya8_c00314{bottom:176.728872px;}
.ya7_c00314{bottom:176.729172px;}
.ya9_c00314{bottom:176.729292px;}
.ya4_c00314{bottom:176.729352px;}
.ya1_c00314{bottom:176.729412px;}
.ya6_c00314{bottom:176.729472px;}
.ya2_c00314{bottom:176.729532px;}
.ya5_c00314{bottom:176.729772px;}
.ya3_c00314{bottom:176.730012px;}
.ya0_c00314{bottom:191.530260px;}
.y9f_c00314{bottom:191.663091px;}
.y9e_c00314{bottom:192.382524px;}
.y9d_c00314{bottom:192.643362px;}
.y9c_c00314{bottom:192.853980px;}
.y9b_c00314{bottom:193.241151px;}
.y9a_c00314{bottom:193.685031px;}
.y99_c00314{bottom:194.224491px;}
.y98_c00314{bottom:194.365440px;}
.y97_c00314{bottom:194.679738px;}
.y96_c00314{bottom:194.809338px;}
.y95_c00314{bottom:195.089580px;}
.y94_c00314{bottom:195.480000px;}
.y93_c00314{bottom:222.651000px;}
.y92_c00314{bottom:222.976500px;}
.y91_c00314{bottom:223.242000px;}
.y90_c00314{bottom:223.446000px;}
.y8f_c00314{bottom:224.089500px;}
.y8e_c00314{bottom:224.295000px;}
.y8d_c00314{bottom:224.497500px;}
.y8c_c00314{bottom:225.150000px;}
.y8b_c00314{bottom:225.414000px;}
.y8a_c00314{bottom:225.676500px;}
.y89_c00314{bottom:226.138500px;}
.y88_c00314{bottom:226.540500px;}
.y87_c00314{bottom:226.800000px;}
.y86_c00314{bottom:253.494000px;}
.y85_c00314{bottom:253.765500px;}
.y84_c00314{bottom:254.149500px;}
.y83_c00314{bottom:254.677500px;}
.y82_c00314{bottom:255.468000px;}
.y81_c00314{bottom:256.189500px;}
.y80_c00314{bottom:256.465500px;}
.y7f_c00314{bottom:256.660500px;}
.y7e_c00314{bottom:257.316000px;}
.y7d_c00314{bottom:257.580000px;}
.y7c_c00314{bottom:285.552000px;}
.y7b_c00314{bottom:285.777000px;}
.y7a_c00314{bottom:286.318500px;}
.y79_c00314{bottom:286.872000px;}
.y78_c00314{bottom:287.145000px;}
.y77_c00314{bottom:287.313000px;}
.y76_c00314{bottom:287.581500px;}
.y75_c00314{bottom:287.809500px;}
.y74_c00314{bottom:288.069000px;}
.y73_c00314{bottom:288.243000px;}
.y72_c00314{bottom:288.679500px;}
.y71_c00314{bottom:288.901500px;}
.y70_c00314{bottom:319.419000px;}
.y6f_c00314{bottom:349.659000px;}
.y6e_c00314{bottom:350.092500px;}
.y6d_c00314{bottom:350.262000px;}
.y6c_c00314{bottom:350.643000px;}
.y6b_c00314{bottom:350.862000px;}
.y6a_c00314{bottom:350.976000px;}
.y69_c00314{bottom:351.520500px;}
.y68_c00314{bottom:352.017000px;}
.y67_c00314{bottom:352.113000px;}
.y66_c00314{bottom:352.558500px;}
.y65_c00314{bottom:352.890000px;}
.y64_c00314{bottom:382.195500px;}
.y63_c00314{bottom:415.530000px;}
.y62_c00314{bottom:446.136000px;}
.y61_c00314{bottom:478.720500px;}
.y60_c00314{bottom:508.306500px;}
.y5f_c00314{bottom:508.584000px;}
.y5e_c00314{bottom:508.843500px;}
.y5d_c00314{bottom:509.349000px;}
.y5c_c00314{bottom:509.521500px;}
.y5b_c00314{bottom:509.898000px;}
.y5a_c00314{bottom:510.066000px;}
.y59_c00314{bottom:510.177000px;}
.y58_c00314{bottom:510.555000px;}
.y57_c00314{bottom:511.105500px;}
.y56_c00314{bottom:511.492500px;}
.y55_c00314{bottom:511.650000px;}
.y54_c00314{bottom:540.841500px;}
.y53_c00314{bottom:570.243000px;}
.y52_c00314{bottom:570.454500px;}
.y51_c00314{bottom:570.886500px;}
.y50_c00314{bottom:571.107000px;}
.y4f_c00314{bottom:571.285500px;}
.y4e_c00314{bottom:571.833000px;}
.y4d_c00314{bottom:571.992000px;}
.y4c_c00314{bottom:572.155500px;}
.y4b_c00314{bottom:572.589000px;}
.y4a_c00314{bottom:572.766000px;}
.y49_c00314{bottom:573.150000px;}
.y48_c00314{bottom:573.480000px;}
.y47_c00314{bottom:603.646500px;}
.y46_c00314{bottom:636.045000px;}
.y45_c00314{bottom:666.822000px;}
.y44_c00314{bottom:700.783500px;}
.y43_c00314{bottom:731.151000px;}
.y42_c00314{bottom:762.964500px;}
.y41_c00314{bottom:794.803500px;}
.y40_c00314{bottom:826.209000px;}
.y3f_c00314{bottom:859.035000px;}
.y3a_c00314{bottom:889.807716px;}
.y3e_c00314{bottom:889.807956px;}
.y3d_c00314{bottom:889.808244px;}
.y3b_c00314{bottom:889.808280px;}
.y39_c00314{bottom:889.808424px;}
.y3c_c00314{bottom:889.808652px;}
.y38_c00314{bottom:889.808892px;}
.y37_c00314{bottom:889.809468px;}
.y36_c00314{bottom:919.838544px;}
.y35_c00314{bottom:920.365056px;}
.y34_c00314{bottom:920.570376px;}
.y33_c00314{bottom:920.960304px;}
.y32_c00314{bottom:921.155100px;}
.y31_c00314{bottom:921.616200px;}
.y30_c00314{bottom:922.084488px;}
.y2f_c00314{bottom:922.207980px;}
.y2e_c00314{bottom:922.876080px;}
.y2d_c00314{bottom:923.397612px;}
.y2c_c00314{bottom:951.108492px;}
.y2b_c00314{bottom:951.437496px;}
.y2a_c00314{bottom:951.763068px;}
.y29_c00314{bottom:951.931104px;}
.y28_c00314{bottom:952.309956px;}
.y27_c00314{bottom:952.808568px;}
.y26_c00314{bottom:952.973136px;}
.y25_c00314{bottom:953.193864px;}
.y24_c00314{bottom:953.522208px;}
.y23_c00314{bottom:953.741664px;}
.y22_c00314{bottom:954.064344px;}
.y21_c00314{bottom:954.448332px;}
.y1a_c00314{bottom:984.191760px;}
.y1b_c00314{bottom:984.191952px;}
.y17_c00314{bottom:984.192024px;}
.y18_c00314{bottom:984.192396px;}
.y19_c00314{bottom:984.192468px;}
.y1c_c00314{bottom:984.192516px;}
.y1d_c00314{bottom:984.192828px;}
.y1e_c00314{bottom:984.193092px;}
.y1f_c00314{bottom:984.193344px;}
.y20_c00314{bottom:984.193560px;}
.y16_c00314{bottom:1014.161652px;}
.y15_c00314{bottom:1014.610428px;}
.y14_c00314{bottom:1014.772128px;}
.y13_c00314{bottom:1015.156740px;}
.y12_c00314{bottom:1015.646868px;}
.y11_c00314{bottom:1015.866288px;}
.y10_c00314{bottom:1016.250240px;}
.yf_c00314{bottom:1016.801472px;}
.ye_c00314{bottom:1017.018612px;}
.yd_c00314{bottom:1017.456756px;}
.yc_c00314{bottom:1017.629724px;}
.yb_c00314{bottom:1045.890684px;}
.ya_c00314{bottom:1046.342076px;}
.y9_c00314{bottom:1046.769840px;}
.y8_c00314{bottom:1047.050688px;}
.y7_c00314{bottom:1047.929844px;}
.y6_c00314{bottom:1048.193388px;}
.y5_c00314{bottom:1048.435248px;}
.y4_c00314{bottom:1048.713900px;}
.y3_c00314{bottom:1049.510952px;}
.y2_c00314{bottom:1050.031500px;}
.y1_c00314{bottom:1124.289000px;}
.ha_c00314{height:24.000432px;}
.h5_c00314{height:72.000000px;}
.h9_c00314{height:72.001296px;}
.h3_c00314{height:72.002304px;}
.h6_c00314{height:78.000000px;}
.hc_c00314{height:78.001911px;}
.h2_c00314{height:84.000000px;}
.h4_c00314{height:84.002688px;}
.h7_c00314{height:90.000000px;}
.h8_c00314{height:96.000000px;}
.hb_c00314{height:108.000000px;}
.h1_c00314{height:1165.500000px;}
.h0_c00314{height:1165.800000px;}
.w0_c00314{width:915.000000px;}
.x0_c00314{left:0.000000px;}
.x9e_c00314{left:135.271455px;}
.x6e_c00314{left:136.893000px;}
.x3f_c00314{left:137.970000px;}
.xc_c00314{left:138.978720px;}
.x1b_c00314{left:140.334888px;}
.x9f_c00314{left:148.501932px;}
.xa0_c00314{left:160.922382px;}
.x5a_c00314{left:170.370000px;}
.x37_c00314{left:171.720000px;}
.xd_c00314{left:173.538048px;}
.x95_c00314{left:179.193000px;}
.x90_c00314{left:180.546000px;}
.x63_c00314{left:182.248500px;}
.x7b_c00314{left:191.433000px;}
.xa1_c00314{left:192.513516px;}
.x15_c00314{left:194.130768px;}
.x9a_c00314{left:201.606000px;}
.x5e_c00314{left:202.968000px;}
.x40_c00314{left:204.660000px;}
.xa2_c00314{left:214.114290px;}
.x2b_c00314{left:215.190096px;}
.x1c_c00314{left:217.022724px;}
.x55_c00314{left:224.640000px;}
.x25_c00314{left:226.181820px;}
.x75_c00314{left:236.523000px;}
.x47_c00314{left:238.140000px;}
.x7c_c00314{left:246.240000px;}
.x2e_c00314{left:248.130000px;}
.x3_c00314{left:249.648000px;}
.xa3_c00314{left:257.850000px;}
.x38_c00314{left:260.010000px;}
.xe_c00314{left:261.308160px;}
.x8c_c00314{left:268.593000px;}
.x64_c00314{left:269.998500px;}
.x2f_c00314{left:271.080000px;}
.x76_c00314{left:279.723000px;}
.x50_c00314{left:280.800000px;}
.x16_c00314{left:282.153396px;}
.x87_c00314{left:289.710000px;}
.x39_c00314{left:292.680000px;}
.x51_c00314{left:302.400000px;}
.x8d_c00314{left:303.406500px;}
.xf_c00314{left:304.764204px;}
.x83_c00314{left:311.506500px;}
.x7d_c00314{left:312.930000px;}
.x4_c00314{left:314.716500px;}
.x91_c00314{left:322.288500px;}
.x56_c00314{left:324.270000px;}
.x1d_c00314{left:325.292316px;}
.xa4_c00314{left:334.260000px;}
.x52_c00314{left:335.340000px;}
.x17_c00314{left:336.695388px;}
.x65_c00314{left:345.598500px;}
.x8e_c00314{left:355.261500px;}
.x26_c00314{left:357.945420px;}
.x4a_c00314{left:359.100000px;}
.x96_c00314{left:366.858000px;}
.x92_c00314{left:368.182500px;}
.x41_c00314{left:369.900000px;}
.x7e_c00314{left:378.810000px;}
.xa7_c00314{left:388.977000px;}
.x1e_c00314{left:390.899388px;}
.x42_c00314{left:401.760000px;}
.x66_c00314{left:411.208500px;}
.x5_c00314{left:414.348000px;}
.xa5_c00314{left:421.200000px;}
.x6f_c00314{left:422.283000px;}
.x1_c00314{left:426.060000px;}
.x69_c00314{left:433.023000px;}
.x1f_c00314{left:435.178956px;}
.xa8_c00314{left:442.707000px;}
.x53_c00314{left:444.960000px;}
.x18_c00314{left:446.319408px;}
.x2_c00314{left:449.010000px;}
.x6a_c00314{left:455.163000px;}
.x5f_c00314{left:466.486500px;}
.x20_c00314{left:468.125748px;}
.xa6_c00314{left:476.280000px;}
.x67_c00314{left:477.358500px;}
.x6_c00314{left:479.412000px;}
.x3a_c00314{left:480.600000px;}
.x77_c00314{left:487.353000px;}
.x7f_c00314{left:488.700000px;}
.x2c_c00314{left:489.788664px;}
.x10_c00314{left:491.604180px;}
.x5b_c00314{left:500.580000px;}
.x9b_c00314{left:509.677500px;}
.x54_c00314{left:511.110000px;}
.x7_c00314{left:512.355000px;}
.x84_c00314{left:519.690000px;}
.x4b_c00314{left:521.640000px;}
.x5c_c00314{left:524.340000px;}
.x70_c00314{left:531.093000px;}
.x57_c00314{left:534.060000px;}
.x11_c00314{left:535.345224px;}
.x68_c00314{left:542.158500px;}
.x30_c00314{left:544.320000px;}
.x27_c00314{left:545.346420px;}
.x97_c00314{left:553.411500px;}
.x2d_c00314{left:558.641568px;}
.x6b_c00314{left:564.226500px;}
.x4c_c00314{left:565.650000px;}
.x21_c00314{left:567.767136px;}
.x9c_c00314{left:574.206000px;}
.x60_c00314{left:576.109500px;}
.x3b_c00314{left:577.260000px;}
.x43_c00314{left:578.880000px;}
.x85_c00314{left:586.369500px;}
.x98_c00314{left:587.694000px;}
.x19_c00314{left:589.694088px;}
.x6c_c00314{left:598.785000px;}
.x31_c00314{left:600.210000px;}
.x3c_c00314{left:601.560000px;}
.x88_c00314{left:608.310000px;}
.x28_c00314{left:610.400964px;}
.x61_c00314{left:611.749500px;}
.x93_c00314{left:620.091000px;}
.x8_c00314{left:622.249500px;}
.x71_c00314{left:630.993000px;}
.x12_c00314{left:633.363576px;}
.x32_c00314{left:634.500000px;}
.x89_c00314{left:642.060000px;}
.x22_c00314{left:643.625460px;}
.x29_c00314{left:644.691516px;}
.x58_c00314{left:653.670000px;}
.x4d_c00314{left:655.290000px;}
.x9_c00314{left:657.355500px;}
.x78_c00314{left:662.853000px;}
.x33_c00314{left:664.740000px;}
.x44_c00314{left:665.820000px;}
.x80_c00314{left:673.650000px;}
.x23_c00314{left:677.380776px;}
.x48_c00314{left:687.690000px;}
.x99_c00314{left:694.890000px;}
.x72_c00314{left:696.063000px;}
.x34_c00314{left:699.030000px;}
.x79_c00314{left:706.863000px;}
.x5d_c00314{left:708.210000px;}
.xa_c00314{left:710.826000px;}
.x4e_c00314{left:719.280000px;}
.x49_c00314{left:720.900000px;}
.x73_c00314{left:729.813000px;}
.x45_c00314{left:731.160000px;}
.x2a_c00314{left:732.444420px;}
.x8a_c00314{left:739.800000px;}
.x13_c00314{left:742.717704px;}
.x3d_c00314{left:752.490000px;}
.x1a_c00314{left:755.208684px;}
.x8f_c00314{left:761.610000px;}
.x74_c00314{left:762.753000px;}
.x35_c00314{left:763.830000px;}
.x46_c00314{left:765.180000px;}
.xb_c00314{left:767.250000px;}
.x94_c00314{left:772.104000px;}
.x81_c00314{left:773.280000px;}
.x4f_c00314{left:774.900000px;}
.x86_c00314{left:783.213000px;}
.x62_c00314{left:784.543500px;}
.x3e_c00314{left:786.780000px;}
.x9d_c00314{left:794.826000px;}
.x59_c00314{left:796.230000px;}
.x36_c00314{left:798.660000px;}
.x6d_c00314{left:806.976000px;}
.x24_c00314{left:808.330920px;}
.x82_c00314{left:817.020000px;}
.x8b_c00314{left:827.550000px;}
.x7a_c00314{left:829.173000px;}
.x14_c00314{left:832.379352px;}
@media print{
.v0_c00314{vertical-align:0.000000pt;}
.ls0_c00314{letter-spacing:0.000000pt;}
.ws0_c00314{word-spacing:0.000000pt;}
.fs8_c00314{font-size:21.333717pt;}
.fs3_c00314{font-size:64.000000pt;}
.fs7_c00314{font-size:64.001152pt;}
.fs1_c00314{font-size:64.002048pt;}
.fs4_c00314{font-size:69.333333pt;}
.fsa_c00314{font-size:69.335032pt;}
.fs0_c00314{font-size:74.666667pt;}
.fs2_c00314{font-size:74.669056pt;}
.fs5_c00314{font-size:80.000000pt;}
.fs6_c00314{font-size:85.333333pt;}
.fs9_c00314{font-size:96.000000pt;}
.y0_c00314{bottom:0.000000pt;}
.yb9_c00314{bottom:76.957359pt;}
.yb8_c00314{bottom:77.577353pt;}
.yb7_c00314{bottom:77.702952pt;}
.yb6_c00314{bottom:78.051113pt;}
.yb5_c00314{bottom:78.267824pt;}
.yb4_c00314{bottom:78.388765pt;}
.yb3_c00314{bottom:78.602144pt;}
.yb2_c00314{bottom:78.739596pt;}
.yb1_c00314{bottom:78.938144pt;}
.yb0_c00314{bottom:79.416972pt;}
.yaf_c00314{bottom:79.904135pt;}
.yae_c00314{bottom:80.161333pt;}
.yad_c00314{bottom:106.373333pt;}
.yac_c00314{bottom:136.004000pt;}
.yab_c00314{bottom:157.091904pt;}
.yaa_c00314{bottom:157.092117pt;}
.ya8_c00314{bottom:157.092331pt;}
.ya7_c00314{bottom:157.092597pt;}
.ya9_c00314{bottom:157.092704pt;}
.ya4_c00314{bottom:157.092757pt;}
.ya1_c00314{bottom:157.092811pt;}
.ya6_c00314{bottom:157.092864pt;}
.ya2_c00314{bottom:157.092917pt;}
.ya5_c00314{bottom:157.093131pt;}
.ya3_c00314{bottom:157.093344pt;}
.ya0_c00314{bottom:170.249120pt;}
.y9f_c00314{bottom:170.367192pt;}
.y9e_c00314{bottom:171.006688pt;}
.y9d_c00314{bottom:171.238544pt;}
.y9c_c00314{bottom:171.425760pt;}
.y9b_c00314{bottom:171.769912pt;}
.y9a_c00314{bottom:172.164472pt;}
.y99_c00314{bottom:172.643992pt;}
.y98_c00314{bottom:172.769280pt;}
.y97_c00314{bottom:173.048656pt;}
.y96_c00314{bottom:173.163856pt;}
.y95_c00314{bottom:173.412960pt;}
.y94_c00314{bottom:173.760000pt;}
.y93_c00314{bottom:197.912000pt;}
.y92_c00314{bottom:198.201333pt;}
.y91_c00314{bottom:198.437333pt;}
.y90_c00314{bottom:198.618667pt;}
.y8f_c00314{bottom:199.190667pt;}
.y8e_c00314{bottom:199.373333pt;}
.y8d_c00314{bottom:199.553333pt;}
.y8c_c00314{bottom:200.133333pt;}
.y8b_c00314{bottom:200.368000pt;}
.y8a_c00314{bottom:200.601333pt;}
.y89_c00314{bottom:201.012000pt;}
.y88_c00314{bottom:201.369333pt;}
.y87_c00314{bottom:201.600000pt;}
.y86_c00314{bottom:225.328000pt;}
.y85_c00314{bottom:225.569333pt;}
.y84_c00314{bottom:225.910667pt;}
.y83_c00314{bottom:226.380000pt;}
.y82_c00314{bottom:227.082667pt;}
.y81_c00314{bottom:227.724000pt;}
.y80_c00314{bottom:227.969333pt;}
.y7f_c00314{bottom:228.142667pt;}
.y7e_c00314{bottom:228.725333pt;}
.y7d_c00314{bottom:228.960000pt;}
.y7c_c00314{bottom:253.824000pt;}
.y7b_c00314{bottom:254.024000pt;}
.y7a_c00314{bottom:254.505333pt;}
.y79_c00314{bottom:254.997333pt;}
.y78_c00314{bottom:255.240000pt;}
.y77_c00314{bottom:255.389333pt;}
.y76_c00314{bottom:255.628000pt;}
.y75_c00314{bottom:255.830667pt;}
.y74_c00314{bottom:256.061333pt;}
.y73_c00314{bottom:256.216000pt;}
.y72_c00314{bottom:256.604000pt;}
.y71_c00314{bottom:256.801333pt;}
.y70_c00314{bottom:283.928000pt;}
.y6f_c00314{bottom:310.808000pt;}
.y6e_c00314{bottom:311.193333pt;}
.y6d_c00314{bottom:311.344000pt;}
.y6c_c00314{bottom:311.682667pt;}
.y6b_c00314{bottom:311.877333pt;}
.y6a_c00314{bottom:311.978667pt;}
.y69_c00314{bottom:312.462667pt;}
.y68_c00314{bottom:312.904000pt;}
.y67_c00314{bottom:312.989333pt;}
.y66_c00314{bottom:313.385333pt;}
.y65_c00314{bottom:313.680000pt;}
.y64_c00314{bottom:339.729333pt;}
.y63_c00314{bottom:369.360000pt;}
.y62_c00314{bottom:396.565333pt;}
.y61_c00314{bottom:425.529333pt;}
.y60_c00314{bottom:451.828000pt;}
.y5f_c00314{bottom:452.074667pt;}
.y5e_c00314{bottom:452.305333pt;}
.y5d_c00314{bottom:452.754667pt;}
.y5c_c00314{bottom:452.908000pt;}
.y5b_c00314{bottom:453.242667pt;}
.y5a_c00314{bottom:453.392000pt;}
.y59_c00314{bottom:453.490667pt;}
.y58_c00314{bottom:453.826667pt;}
.y57_c00314{bottom:454.316000pt;}
.y56_c00314{bottom:454.660000pt;}
.y55_c00314{bottom:454.800000pt;}
.y54_c00314{bottom:480.748000pt;}
.y53_c00314{bottom:506.882667pt;}
.y52_c00314{bottom:507.070667pt;}
.y51_c00314{bottom:507.454667pt;}
.y50_c00314{bottom:507.650667pt;}
.y4f_c00314{bottom:507.809333pt;}
.y4e_c00314{bottom:508.296000pt;}
.y4d_c00314{bottom:508.437333pt;}
.y4c_c00314{bottom:508.582667pt;}
.y4b_c00314{bottom:508.968000pt;}
.y4a_c00314{bottom:509.125333pt;}
.y49_c00314{bottom:509.466667pt;}
.y48_c00314{bottom:509.760000pt;}
.y47_c00314{bottom:536.574667pt;}
.y46_c00314{bottom:565.373333pt;}
.y45_c00314{bottom:592.730667pt;}
.y44_c00314{bottom:622.918667pt;}
.y43_c00314{bottom:649.912000pt;}
.y42_c00314{bottom:678.190667pt;}
.y41_c00314{bottom:706.492000pt;}
.y40_c00314{bottom:734.408000pt;}
.y3f_c00314{bottom:763.586667pt;}
.y3a_c00314{bottom:790.940192pt;}
.y3e_c00314{bottom:790.940405pt;}
.y3d_c00314{bottom:790.940661pt;}
.y3b_c00314{bottom:790.940693pt;}
.y39_c00314{bottom:790.940821pt;}
.y3c_c00314{bottom:790.941024pt;}
.y38_c00314{bottom:790.941237pt;}
.y37_c00314{bottom:790.941749pt;}
.y36_c00314{bottom:817.634261pt;}
.y35_c00314{bottom:818.102272pt;}
.y34_c00314{bottom:818.284779pt;}
.y33_c00314{bottom:818.631381pt;}
.y32_c00314{bottom:818.804533pt;}
.y31_c00314{bottom:819.214400pt;}
.y30_c00314{bottom:819.630656pt;}
.y2f_c00314{bottom:819.740427pt;}
.y2e_c00314{bottom:820.334293pt;}
.y2d_c00314{bottom:820.797877pt;}
.y2c_c00314{bottom:845.429771pt;}
.y2b_c00314{bottom:845.722219pt;}
.y2a_c00314{bottom:846.011616pt;}
.y29_c00314{bottom:846.160981pt;}
.y28_c00314{bottom:846.497739pt;}
.y27_c00314{bottom:846.940949pt;}
.y26_c00314{bottom:847.087232pt;}
.y25_c00314{bottom:847.283435pt;}
.y24_c00314{bottom:847.575296pt;}
.y23_c00314{bottom:847.770368pt;}
.y22_c00314{bottom:848.057195pt;}
.y21_c00314{bottom:848.398517pt;}
.y1a_c00314{bottom:874.837120pt;}
.y1b_c00314{bottom:874.837291pt;}
.y17_c00314{bottom:874.837355pt;}
.y18_c00314{bottom:874.837685pt;}
.y19_c00314{bottom:874.837749pt;}
.y1c_c00314{bottom:874.837792pt;}
.y1d_c00314{bottom:874.838069pt;}
.y1e_c00314{bottom:874.838304pt;}
.y1f_c00314{bottom:874.838528pt;}
.y20_c00314{bottom:874.838720pt;}
.y16_c00314{bottom:901.477024pt;}
.y15_c00314{bottom:901.875936pt;}
.y14_c00314{bottom:902.019669pt;}
.y13_c00314{bottom:902.361547pt;}
.y12_c00314{bottom:902.797216pt;}
.y11_c00314{bottom:902.992256pt;}
.y10_c00314{bottom:903.333547pt;}
.yf_c00314{bottom:903.823531pt;}
.ye_c00314{bottom:904.016544pt;}
.yd_c00314{bottom:904.406005pt;}
.yc_c00314{bottom:904.559755pt;}
.yb_c00314{bottom:929.680608pt;}
.ya_c00314{bottom:930.081845pt;}
.y9_c00314{bottom:930.462080pt;}
.y8_c00314{bottom:930.711723pt;}
.y7_c00314{bottom:931.493195pt;}
.y6_c00314{bottom:931.727456pt;}
.y5_c00314{bottom:931.942443pt;}
.y4_c00314{bottom:932.190133pt;}
.y3_c00314{bottom:932.898624pt;}
.y2_c00314{bottom:933.361333pt;}
.y1_c00314{bottom:999.368000pt;}
.ha_c00314{height:21.333717pt;}
.h5_c00314{height:64.000000pt;}
.h9_c00314{height:64.001152pt;}
.h3_c00314{height:64.002048pt;}
.h6_c00314{height:69.333333pt;}
.hc_c00314{height:69.335032pt;}
.h2_c00314{height:74.666667pt;}
.h4_c00314{height:74.669056pt;}
.h7_c00314{height:80.000000pt;}
.h8_c00314{height:85.333333pt;}
.hb_c00314{height:96.000000pt;}
.h1_c00314{height:1036.000000pt;}
.h0_c00314{height:1036.266667pt;}
.w0_c00314{width:813.333333pt;}
.x0_c00314{left:0.000000pt;}
.x9e_c00314{left:120.241293pt;}
.x6e_c00314{left:121.682667pt;}
.x3f_c00314{left:122.640000pt;}
.xc_c00314{left:123.536640pt;}
.x1b_c00314{left:124.742123pt;}
.x9f_c00314{left:132.001717pt;}
.xa0_c00314{left:143.042117pt;}
.x5a_c00314{left:151.440000pt;}
.x37_c00314{left:152.640000pt;}
.xd_c00314{left:154.256043pt;}
.x95_c00314{left:159.282667pt;}
.x90_c00314{left:160.485333pt;}
.x63_c00314{left:161.998667pt;}
.x7b_c00314{left:170.162667pt;}
.xa1_c00314{left:171.123125pt;}
.x15_c00314{left:172.560683pt;}
.x9a_c00314{left:179.205333pt;}
.x5e_c00314{left:180.416000pt;}
.x40_c00314{left:181.920000pt;}
.xa2_c00314{left:190.323813pt;}
.x2b_c00314{left:191.280085pt;}
.x1c_c00314{left:192.909088pt;}
.x55_c00314{left:199.680000pt;}
.x25_c00314{left:201.050507pt;}
.x75_c00314{left:210.242667pt;}
.x47_c00314{left:211.680000pt;}
.x7c_c00314{left:218.880000pt;}
.x2e_c00314{left:220.560000pt;}
.x3_c00314{left:221.909333pt;}
.xa3_c00314{left:229.200000pt;}
.x38_c00314{left:231.120000pt;}
.xe_c00314{left:232.273920pt;}
.x8c_c00314{left:238.749333pt;}
.x64_c00314{left:239.998667pt;}
.x2f_c00314{left:240.960000pt;}
.x76_c00314{left:248.642667pt;}
.x50_c00314{left:249.600000pt;}
.x16_c00314{left:250.803019pt;}
.x87_c00314{left:257.520000pt;}
.x39_c00314{left:260.160000pt;}
.x51_c00314{left:268.800000pt;}
.x8d_c00314{left:269.694667pt;}
.xf_c00314{left:270.901515pt;}
.x83_c00314{left:276.894667pt;}
.x7d_c00314{left:278.160000pt;}
.x4_c00314{left:279.748000pt;}
.x91_c00314{left:286.478667pt;}
.x56_c00314{left:288.240000pt;}
.x1d_c00314{left:289.148725pt;}
.xa4_c00314{left:297.120000pt;}
.x52_c00314{left:298.080000pt;}
.x17_c00314{left:299.284789pt;}
.x65_c00314{left:307.198667pt;}
.x8e_c00314{left:315.788000pt;}
.x26_c00314{left:318.173707pt;}
.x4a_c00314{left:319.200000pt;}
.x96_c00314{left:326.096000pt;}
.x92_c00314{left:327.273333pt;}
.x41_c00314{left:328.800000pt;}
.x7e_c00314{left:336.720000pt;}
.xa7_c00314{left:345.757333pt;}
.x1e_c00314{left:347.466123pt;}
.x42_c00314{left:357.120000pt;}
.x66_c00314{left:365.518667pt;}
.x5_c00314{left:368.309333pt;}
.xa5_c00314{left:374.400000pt;}
.x6f_c00314{left:375.362667pt;}
.x1_c00314{left:378.720000pt;}
.x69_c00314{left:384.909333pt;}
.x1f_c00314{left:386.825739pt;}
.xa8_c00314{left:393.517333pt;}
.x53_c00314{left:395.520000pt;}
.x18_c00314{left:396.728363pt;}
.x2_c00314{left:399.120000pt;}
.x6a_c00314{left:404.589333pt;}
.x5f_c00314{left:414.654667pt;}
.x20_c00314{left:416.111776pt;}
.xa6_c00314{left:423.360000pt;}
.x67_c00314{left:424.318667pt;}
.x6_c00314{left:426.144000pt;}
.x3a_c00314{left:427.200000pt;}
.x77_c00314{left:433.202667pt;}
.x7f_c00314{left:434.400000pt;}
.x2c_c00314{left:435.367701pt;}
.x10_c00314{left:436.981493pt;}
.x5b_c00314{left:444.960000pt;}
.x9b_c00314{left:453.046667pt;}
.x54_c00314{left:454.320000pt;}
.x7_c00314{left:455.426667pt;}
.x84_c00314{left:461.946667pt;}
.x4b_c00314{left:463.680000pt;}
.x5c_c00314{left:466.080000pt;}
.x70_c00314{left:472.082667pt;}
.x57_c00314{left:474.720000pt;}
.x11_c00314{left:475.862421pt;}
.x68_c00314{left:481.918667pt;}
.x30_c00314{left:483.840000pt;}
.x27_c00314{left:484.752373pt;}
.x97_c00314{left:491.921333pt;}
.x2d_c00314{left:496.570283pt;}
.x6b_c00314{left:501.534667pt;}
.x4c_c00314{left:502.800000pt;}
.x21_c00314{left:504.681899pt;}
.x9c_c00314{left:510.405333pt;}
.x60_c00314{left:512.097333pt;}
.x3b_c00314{left:513.120000pt;}
.x43_c00314{left:514.560000pt;}
.x85_c00314{left:521.217333pt;}
.x98_c00314{left:522.394667pt;}
.x19_c00314{left:524.172523pt;}
.x6c_c00314{left:532.253333pt;}
.x31_c00314{left:533.520000pt;}
.x3c_c00314{left:534.720000pt;}
.x88_c00314{left:540.720000pt;}
.x28_c00314{left:542.578635pt;}
.x61_c00314{left:543.777333pt;}
.x93_c00314{left:551.192000pt;}
.x8_c00314{left:553.110667pt;}
.x71_c00314{left:560.882667pt;}
.x12_c00314{left:562.989845pt;}
.x32_c00314{left:564.000000pt;}
.x89_c00314{left:570.720000pt;}
.x22_c00314{left:572.111520pt;}
.x29_c00314{left:573.059125pt;}
.x58_c00314{left:581.040000pt;}
.x4d_c00314{left:582.480000pt;}
.x9_c00314{left:584.316000pt;}
.x78_c00314{left:589.202667pt;}
.x33_c00314{left:590.880000pt;}
.x44_c00314{left:591.840000pt;}
.x80_c00314{left:598.800000pt;}
.x23_c00314{left:602.116245pt;}
.x48_c00314{left:611.280000pt;}
.x99_c00314{left:617.680000pt;}
.x72_c00314{left:618.722667pt;}
.x34_c00314{left:621.360000pt;}
.x79_c00314{left:628.322667pt;}
.x5d_c00314{left:629.520000pt;}
.xa_c00314{left:631.845333pt;}
.x4e_c00314{left:639.360000pt;}
.x49_c00314{left:640.800000pt;}
.x73_c00314{left:648.722667pt;}
.x45_c00314{left:649.920000pt;}
.x2a_c00314{left:651.061707pt;}
.x8a_c00314{left:657.600000pt;}
.x13_c00314{left:660.193515pt;}
.x3d_c00314{left:668.880000pt;}
.x1a_c00314{left:671.296608pt;}
.x8f_c00314{left:676.986667pt;}
.x74_c00314{left:678.002667pt;}
.x35_c00314{left:678.960000pt;}
.x46_c00314{left:680.160000pt;}
.xb_c00314{left:682.000000pt;}
.x94_c00314{left:686.314667pt;}
.x81_c00314{left:687.360000pt;}
.x4f_c00314{left:688.800000pt;}
.x86_c00314{left:696.189333pt;}
.x62_c00314{left:697.372000pt;}
.x3e_c00314{left:699.360000pt;}
.x9d_c00314{left:706.512000pt;}
.x59_c00314{left:707.760000pt;}
.x36_c00314{left:709.920000pt;}
.x6d_c00314{left:717.312000pt;}
.x24_c00314{left:718.516373pt;}
.x82_c00314{left:726.240000pt;}
.x8b_c00314{left:735.600000pt;}
.x7a_c00314{left:737.042667pt;}
.x14_c00314{left:739.892757pt;}
}





/* 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_c00315 {
    display:none;
  }
  .loading-indicator_c00315.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00315 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_c00315 { 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_c00315" -> "#page-container .classname_c00315")
 */
.pf_c00315 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00315 { /* 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_c00315.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00315 { /* 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_c00315 { /* 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_c00315 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00315 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00315 {overflow:visible;}
  }
}
.c_c00315 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00315 { /* 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_c00315:after { /* webkit #35443 */
  content: '';
}
.t_c00315:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00315 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 */
}
.__c00315 { /* 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_c00315 { /* info for Javascript */
  display:none;
}
.l_c00315 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00315 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00315 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00315: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_c00315 {
    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_c00315.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00315.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_c00315 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00315{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00315;src:url('chunks/assets/font_bfe6362fd3009c591583128f.woff2')format("woff");}.ff1_c00315{font-family:ff1_c00315;line-height:1.000000;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;}
.m1_c00315{transform:matrix(0.061035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.061035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.061035,0.000000,0.000000,0.250000,0,0);}
.m2_c00315{transform:matrix(0.198890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198890,0.000000,0.000000,0.250000,0,0);}
.m0_c00315{transform:matrix(0.348210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348210,0.000000,0.000000,0.250000,0,0);}
.m4_c00315{transform:matrix(0.388990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388990,0.000000,0.000000,0.250000,0,0);}
.m5_c00315{transform:matrix(0.409505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409505,0.000000,0.000000,0.250000,0,0);}
.m3_c00315{transform:matrix(0.484200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484200,0.000000,0.000000,0.250000,0,0);}
.v0_c00315{vertical-align:0.000000px;}
.ls0_c00315{letter-spacing:0.000000px;}
.sc__c00315{text-shadow:none;}
.sc0_c00315{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__c00315{-webkit-text-stroke:0px transparent;}
.sc0_c00315{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00315{word-spacing:0.000000px;}
.fc0_c00315{color:transparent;}
.fs1_c00315{font-size:24.000000px;}
.fs0_c00315{font-size:36.000000px;}
.y0_c00315{bottom:0.000000px;}
.y2_c00315{bottom:944.866500px;}
.y1_c00315{bottom:950.736000px;}
.h3_c00315{height:24.000000px;}
.h2_c00315{height:36.000000px;}
.h1_c00315{height:1165.500000px;}
.h0_c00315{height:1165.800000px;}
.w0_c00315{width:915.000000px;}
.x0_c00315{left:0.000000px;}
.x1_c00315{left:374.220000px;}
.x4_c00315{left:375.570000px;}
.x5_c00315{left:397.440000px;}
.x2_c00315{left:409.320000px;}
.x6_c00315{left:414.180000px;}
.x3_c00315{left:424.440000px;}
@media print{
.v0_c00315{vertical-align:0.000000pt;}
.ls0_c00315{letter-spacing:0.000000pt;}
.ws0_c00315{word-spacing:0.000000pt;}
.fs1_c00315{font-size:21.333333pt;}
.fs0_c00315{font-size:32.000000pt;}
.y0_c00315{bottom:0.000000pt;}
.y2_c00315{bottom:839.881333pt;}
.y1_c00315{bottom:845.098667pt;}
.h3_c00315{height:21.333333pt;}
.h2_c00315{height:32.000000pt;}
.h1_c00315{height:1036.000000pt;}
.h0_c00315{height:1036.266667pt;}
.w0_c00315{width:813.333333pt;}
.x0_c00315{left:0.000000pt;}
.x1_c00315{left:332.640000pt;}
.x4_c00315{left:333.840000pt;}
.x5_c00315{left:353.280000pt;}
.x2_c00315{left:363.840000pt;}
.x6_c00315{left:368.160000pt;}
.x3_c00315{left:377.280000pt;}
}





/* 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_c00316 {
    display:none;
  }
  .loading-indicator_c00316.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00316 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_c00316 { 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_c00316" -> "#page-container .classname_c00316")
 */
.pf_c00316 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00316 { /* 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_c00316.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00316 { /* 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_c00316 { /* 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_c00316 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00316 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00316 {overflow:visible;}
  }
}
.c_c00316 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00316 { /* 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_c00316:after { /* webkit #35443 */
  content: '';
}
.t_c00316:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00316 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 */
}
.__c00316 { /* 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_c00316 { /* info for Javascript */
  display:none;
}
.l_c00316 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00316 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00316 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00316: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_c00316 {
    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_c00316.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00316.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_c00316 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00316{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00316;src:url('chunks/assets/font_c605e72f209fc835e906f064.woff2')format("woff");}.ff1_c00316{font-family:ff1_c00316;line-height:1.000000;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;}
.m98_c00316{transform:matrix(0.010140,0.000061,-0.001500,0.249996,0,0);-ms-transform:matrix(0.010140,0.000061,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.010140,0.000061,-0.001500,0.249996,0,0);}
.m25_c00316{transform:matrix(0.010945,0.000077,-0.001750,0.249994,0,0);-ms-transform:matrix(0.010945,0.000077,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.010945,0.000077,-0.001750,0.249994,0,0);}
.me3_c00316{transform:matrix(0.013634,0.000123,-0.002250,0.249990,0,0);-ms-transform:matrix(0.013634,0.000123,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.013634,0.000123,-0.002250,0.249990,0,0);}
.m11f_c00316{transform:matrix(0.116995,0.001053,-0.002250,0.249990,0,0);-ms-transform:matrix(0.116995,0.001053,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.116995,0.001053,-0.002250,0.249990,0,0);}
.m155_c00316{transform:matrix(0.125305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125305,0.000000,0.000000,0.250000,0,0);}
.m1f_c00316{transform:matrix(0.127347,0.000891,-0.001750,0.249994,0,0);-ms-transform:matrix(0.127347,0.000891,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.127347,0.000891,-0.001750,0.249994,0,0);}
.m16b_c00316{transform:matrix(0.128160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128160,0.000000,0.000000,0.250000,0,0);}
.m16d_c00316{transform:matrix(0.134330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134330,0.000000,0.000000,0.250000,0,0);}
.m15e_c00316{transform:matrix(0.140950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140950,0.000000,0.000000,0.250000,0,0);}
.mdd_c00316{transform:matrix(0.144432,0.000867,-0.001500,0.249996,0,0);-ms-transform:matrix(0.144432,0.000867,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.144432,0.000867,-0.001500,0.249996,0,0);}
.ma0_c00316{transform:matrix(0.151612,0.000910,-0.001500,0.249996,0,0);-ms-transform:matrix(0.151612,0.000910,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.151612,0.000910,-0.001500,0.249996,0,0);}
.m168_c00316{transform:matrix(0.164440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164440,0.000000,0.000000,0.250000,0,0);}
.m9b_c00316{transform:matrix(0.167287,0.001004,-0.001500,0.249996,0,0);-ms-transform:matrix(0.167287,0.001004,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.167287,0.001004,-0.001500,0.249996,0,0);}
.m140_c00316{transform:matrix(0.167448,0.001507,-0.002250,0.249990,0,0);-ms-transform:matrix(0.167448,0.001507,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.167448,0.001507,-0.002250,0.249990,0,0);}
.m9a_c00316{transform:matrix(0.167972,0.001008,-0.001500,0.249996,0,0);-ms-transform:matrix(0.167972,0.001008,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.167972,0.001008,-0.001500,0.249996,0,0);}
.m142_c00316{transform:matrix(0.168543,0.001517,-0.002250,0.249990,0,0);-ms-transform:matrix(0.168543,0.001517,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.168543,0.001517,-0.002250,0.249990,0,0);}
.ma4_c00316{transform:matrix(0.170177,0.001021,-0.001500,0.249996,0,0);-ms-transform:matrix(0.170177,0.001021,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.170177,0.001021,-0.001500,0.249996,0,0);}
.mde_c00316{transform:matrix(0.170982,0.001026,-0.001500,0.249996,0,0);-ms-transform:matrix(0.170982,0.001026,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.170982,0.001026,-0.001500,0.249996,0,0);}
.m147_c00316{transform:matrix(0.171113,0.001540,-0.002250,0.249990,0,0);-ms-transform:matrix(0.171113,0.001540,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.171113,0.001540,-0.002250,0.249990,0,0);}
.m157_c00316{transform:matrix(0.171730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171730,0.000000,0.000000,0.250000,0,0);}
.ma2_c00316{transform:matrix(0.171897,0.001031,-0.001500,0.249996,0,0);-ms-transform:matrix(0.171897,0.001031,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.171897,0.001031,-0.001500,0.249996,0,0);}
.m1d_c00316{transform:matrix(0.177176,0.001240,-0.001750,0.249994,0,0);-ms-transform:matrix(0.177176,0.001240,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.177176,0.001240,-0.001750,0.249994,0,0);}
.m166_c00316{transform:matrix(0.177630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177630,0.000000,0.000000,0.250000,0,0);}
.m158_c00316{transform:matrix(0.178680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178680,0.000000,0.000000,0.250000,0,0);}
.m18_c00316{transform:matrix(0.180851,0.001266,-0.001750,0.249994,0,0);-ms-transform:matrix(0.180851,0.001266,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.180851,0.001266,-0.001750,0.249994,0,0);}
.m13b_c00316{transform:matrix(0.181438,0.001633,-0.002250,0.249990,0,0);-ms-transform:matrix(0.181438,0.001633,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.181438,0.001633,-0.002250,0.249990,0,0);}
.m22_c00316{transform:matrix(0.182481,0.001277,-0.001750,0.249994,0,0);-ms-transform:matrix(0.182481,0.001277,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.182481,0.001277,-0.001750,0.249994,0,0);}
.m153_c00316{transform:matrix(0.183070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183070,0.000000,0.000000,0.250000,0,0);}
.m146_c00316{transform:matrix(0.183573,0.001652,-0.002250,0.249990,0,0);-ms-transform:matrix(0.183573,0.001652,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.183573,0.001652,-0.002250,0.249990,0,0);}
.m159_c00316{transform:matrix(0.184885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184885,0.000000,0.000000,0.250000,0,0);}
.me6_c00316{transform:matrix(0.185227,0.001667,-0.002250,0.249990,0,0);-ms-transform:matrix(0.185227,0.001667,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.185227,0.001667,-0.002250,0.249990,0,0);}
.m100_c00316{transform:matrix(0.185302,0.001668,-0.002250,0.249990,0,0);-ms-transform:matrix(0.185302,0.001668,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.185302,0.001668,-0.002250,0.249990,0,0);}
.mc_c00316{transform:matrix(0.186085,0.001303,-0.001750,0.249994,0,0);-ms-transform:matrix(0.186085,0.001303,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.186085,0.001303,-0.001750,0.249994,0,0);}
.m9d_c00316{transform:matrix(0.186157,0.001117,-0.001500,0.249996,0,0);-ms-transform:matrix(0.186157,0.001117,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.186157,0.001117,-0.001500,0.249996,0,0);}
.m78_c00316{transform:matrix(0.186932,0.001122,-0.001500,0.249996,0,0);-ms-transform:matrix(0.186932,0.001122,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.186932,0.001122,-0.001500,0.249996,0,0);}
.m1c_c00316{transform:matrix(0.186950,0.001309,-0.001750,0.249994,0,0);-ms-transform:matrix(0.186950,0.001309,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.186950,0.001309,-0.001750,0.249994,0,0);}
.m11c_c00316{transform:matrix(0.187107,0.001684,-0.002250,0.249990,0,0);-ms-transform:matrix(0.187107,0.001684,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.187107,0.001684,-0.002250,0.249990,0,0);}
.m13d_c00316{transform:matrix(0.187137,0.001684,-0.002250,0.249990,0,0);-ms-transform:matrix(0.187137,0.001684,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.187137,0.001684,-0.002250,0.249990,0,0);}
.ma7_c00316{transform:matrix(0.187377,0.001124,-0.001500,0.249996,0,0);-ms-transform:matrix(0.187377,0.001124,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.187377,0.001124,-0.001500,0.249996,0,0);}
.mb1_c00316{transform:matrix(0.187497,0.001125,-0.001500,0.249996,0,0);-ms-transform:matrix(0.187497,0.001125,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.187497,0.001125,-0.001500,0.249996,0,0);}
.m16_c00316{transform:matrix(0.188600,0.001320,-0.001750,0.249994,0,0);-ms-transform:matrix(0.188600,0.001320,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.188600,0.001320,-0.001750,0.249994,0,0);}
.m89_c00316{transform:matrix(0.188867,0.001133,-0.001500,0.249996,0,0);-ms-transform:matrix(0.188867,0.001133,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.188867,0.001133,-0.001500,0.249996,0,0);}
.m15d_c00316{transform:matrix(0.188965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188965,0.000000,0.000000,0.250000,0,0);}
.mf7_c00316{transform:matrix(0.189742,0.001708,-0.002250,0.249990,0,0);-ms-transform:matrix(0.189742,0.001708,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.189742,0.001708,-0.002250,0.249990,0,0);}
.mfa_c00316{transform:matrix(0.190032,0.001710,-0.002250,0.249990,0,0);-ms-transform:matrix(0.190032,0.001710,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.190032,0.001710,-0.002250,0.249990,0,0);}
.m165_c00316{transform:matrix(0.190595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190595,0.000000,0.000000,0.250000,0,0);}
.mc2_c00316{transform:matrix(0.190857,0.001145,-0.001500,0.249996,0,0);-ms-transform:matrix(0.190857,0.001145,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.190857,0.001145,-0.001500,0.249996,0,0);}
.m6b_c00316{transform:matrix(0.191722,0.001150,-0.001500,0.249996,0,0);-ms-transform:matrix(0.191722,0.001150,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.191722,0.001150,-0.001500,0.249996,0,0);}
.mff_c00316{transform:matrix(0.193207,0.001739,-0.002250,0.249990,0,0);-ms-transform:matrix(0.193207,0.001739,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.193207,0.001739,-0.002250,0.249990,0,0);}
.m12d_c00316{transform:matrix(0.193497,0.001741,-0.002250,0.249990,0,0);-ms-transform:matrix(0.193497,0.001741,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.193497,0.001741,-0.002250,0.249990,0,0);}
.m10a_c00316{transform:matrix(0.193612,0.001743,-0.002250,0.249990,0,0);-ms-transform:matrix(0.193612,0.001743,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.193612,0.001743,-0.002250,0.249990,0,0);}
.m167_c00316{transform:matrix(0.194165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194165,0.000000,0.000000,0.250000,0,0);}
.m111_c00316{transform:matrix(0.194342,0.001749,-0.002250,0.249990,0,0);-ms-transform:matrix(0.194342,0.001749,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.194342,0.001749,-0.002250,0.249990,0,0);}
.m99_c00316{transform:matrix(0.194362,0.001166,-0.001500,0.249996,0,0);-ms-transform:matrix(0.194362,0.001166,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.194362,0.001166,-0.001500,0.249996,0,0);}
.ma6_c00316{transform:matrix(0.194696,0.001168,-0.001500,0.249996,0,0);-ms-transform:matrix(0.194696,0.001168,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.194696,0.001168,-0.001500,0.249996,0,0);}
.m156_c00316{transform:matrix(0.196440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196440,0.000000,0.000000,0.250000,0,0);}
.m115_c00316{transform:matrix(0.196787,0.001771,-0.002250,0.249990,0,0);-ms-transform:matrix(0.196787,0.001771,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.196787,0.001771,-0.002250,0.249990,0,0);}
.mee_c00316{transform:matrix(0.196972,0.001773,-0.002250,0.249990,0,0);-ms-transform:matrix(0.196972,0.001773,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.196972,0.001773,-0.002250,0.249990,0,0);}
.m6c_c00316{transform:matrix(0.197151,0.001183,-0.001500,0.249996,0,0);-ms-transform:matrix(0.197151,0.001183,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.197151,0.001183,-0.001500,0.249996,0,0);}
.m13e_c00316{transform:matrix(0.197192,0.001775,-0.002250,0.249990,0,0);-ms-transform:matrix(0.197192,0.001775,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.197192,0.001775,-0.002250,0.249990,0,0);}
.mab_c00316{transform:matrix(0.198301,0.001190,-0.001500,0.249996,0,0);-ms-transform:matrix(0.198301,0.001190,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.198301,0.001190,-0.001500,0.249996,0,0);}
.m12f_c00316{transform:matrix(0.198392,0.001786,-0.002250,0.249990,0,0);-ms-transform:matrix(0.198392,0.001786,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.198392,0.001786,-0.002250,0.249990,0,0);}
.mf5_c00316{transform:matrix(0.198537,0.001787,-0.002250,0.249990,0,0);-ms-transform:matrix(0.198537,0.001787,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.198537,0.001787,-0.002250,0.249990,0,0);}
.m2b_c00316{transform:matrix(0.198541,0.001191,-0.001500,0.249996,0,0);-ms-transform:matrix(0.198541,0.001191,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.198541,0.001191,-0.001500,0.249996,0,0);}
.m114_c00316{transform:matrix(0.198552,0.001787,-0.002250,0.249990,0,0);-ms-transform:matrix(0.198552,0.001787,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.198552,0.001787,-0.002250,0.249990,0,0);}
.maa_c00316{transform:matrix(0.198641,0.001192,-0.001500,0.249996,0,0);-ms-transform:matrix(0.198641,0.001192,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.198641,0.001192,-0.001500,0.249996,0,0);}
.m23_c00316{transform:matrix(0.198750,0.001391,-0.001750,0.249994,0,0);-ms-transform:matrix(0.198750,0.001391,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.198750,0.001391,-0.001750,0.249994,0,0);}
.me8_c00316{transform:matrix(0.198817,0.001789,-0.002250,0.249990,0,0);-ms-transform:matrix(0.198817,0.001789,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.198817,0.001789,-0.002250,0.249990,0,0);}
.m10_c00316{transform:matrix(0.198995,0.001393,-0.001750,0.249994,0,0);-ms-transform:matrix(0.198995,0.001393,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.198995,0.001393,-0.001750,0.249994,0,0);}
.m10e_c00316{transform:matrix(0.199092,0.001792,-0.002250,0.249990,0,0);-ms-transform:matrix(0.199092,0.001792,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.199092,0.001792,-0.002250,0.249990,0,0);}
.m16c_c00316{transform:matrix(0.199830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199830,0.000000,0.000000,0.250000,0,0);}
.m9c_c00316{transform:matrix(0.199966,0.001200,-0.001500,0.249996,0,0);-ms-transform:matrix(0.199966,0.001200,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.199966,0.001200,-0.001500,0.249996,0,0);}
.mfd_c00316{transform:matrix(0.200242,0.001802,-0.002250,0.249990,0,0);-ms-transform:matrix(0.200242,0.001802,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.200242,0.001802,-0.002250,0.249990,0,0);}
.m101_c00316{transform:matrix(0.200367,0.001803,-0.002250,0.249990,0,0);-ms-transform:matrix(0.200367,0.001803,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.200367,0.001803,-0.002250,0.249990,0,0);}
.m145_c00316{transform:matrix(0.201737,0.001816,-0.002250,0.249990,0,0);-ms-transform:matrix(0.201737,0.001816,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.201737,0.001816,-0.002250,0.249990,0,0);}
.mbf_c00316{transform:matrix(0.201756,0.001211,-0.001500,0.249996,0,0);-ms-transform:matrix(0.201756,0.001211,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.201756,0.001211,-0.001500,0.249996,0,0);}
.m141_c00316{transform:matrix(0.201767,0.001816,-0.002250,0.249990,0,0);-ms-transform:matrix(0.201767,0.001816,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.201767,0.001816,-0.002250,0.249990,0,0);}
.m3f_c00316{transform:matrix(0.202071,0.001212,-0.001500,0.249996,0,0);-ms-transform:matrix(0.202071,0.001212,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.202071,0.001212,-0.001500,0.249996,0,0);}
.m128_c00316{transform:matrix(0.202397,0.001822,-0.002250,0.249990,0,0);-ms-transform:matrix(0.202397,0.001822,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.202397,0.001822,-0.002250,0.249990,0,0);}
.m8e_c00316{transform:matrix(0.202401,0.001214,-0.001500,0.249996,0,0);-ms-transform:matrix(0.202401,0.001214,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.202401,0.001214,-0.001500,0.249996,0,0);}
.m9f_c00316{transform:matrix(0.202981,0.001218,-0.001500,0.249996,0,0);-ms-transform:matrix(0.202981,0.001218,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.202981,0.001218,-0.001500,0.249996,0,0);}
.m123_c00316{transform:matrix(0.203512,0.001832,-0.002250,0.249990,0,0);-ms-transform:matrix(0.203512,0.001832,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.203512,0.001832,-0.002250,0.249990,0,0);}
.m2d_c00316{transform:matrix(0.203706,0.001222,-0.001500,0.249996,0,0);-ms-transform:matrix(0.203706,0.001222,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.203706,0.001222,-0.001500,0.249996,0,0);}
.m154_c00316{transform:matrix(0.203875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203875,0.000000,0.000000,0.250000,0,0);}
.m72_c00316{transform:matrix(0.204121,0.001225,-0.001500,0.249996,0,0);-ms-transform:matrix(0.204121,0.001225,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.204121,0.001225,-0.001500,0.249996,0,0);}
.m75_c00316{transform:matrix(0.204151,0.001225,-0.001500,0.249996,0,0);-ms-transform:matrix(0.204151,0.001225,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.204151,0.001225,-0.001500,0.249996,0,0);}
.m8a_c00316{transform:matrix(0.204186,0.001225,-0.001500,0.249996,0,0);-ms-transform:matrix(0.204186,0.001225,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.204186,0.001225,-0.001500,0.249996,0,0);}
.m35_c00316{transform:matrix(0.204341,0.001226,-0.001500,0.249996,0,0);-ms-transform:matrix(0.204341,0.001226,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.204341,0.001226,-0.001500,0.249996,0,0);}
.mfc_c00316{transform:matrix(0.204352,0.001839,-0.002250,0.249990,0,0);-ms-transform:matrix(0.204352,0.001839,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.204352,0.001839,-0.002250,0.249990,0,0);}
.m19_c00316{transform:matrix(0.204355,0.001430,-0.001750,0.249994,0,0);-ms-transform:matrix(0.204355,0.001430,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.204355,0.001430,-0.001750,0.249994,0,0);}
.m13c_c00316{transform:matrix(0.204842,0.001844,-0.002250,0.249990,0,0);-ms-transform:matrix(0.204842,0.001844,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.204842,0.001844,-0.002250,0.249990,0,0);}
.m16a_c00316{transform:matrix(0.205300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205300,0.000000,0.000000,0.250000,0,0);}
.m3e_c00316{transform:matrix(0.205321,0.001232,-0.001500,0.249996,0,0);-ms-transform:matrix(0.205321,0.001232,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.205321,0.001232,-0.001500,0.249996,0,0);}
.m33_c00316{transform:matrix(0.205396,0.001232,-0.001500,0.249996,0,0);-ms-transform:matrix(0.205396,0.001232,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.205396,0.001232,-0.001500,0.249996,0,0);}
.mfe_c00316{transform:matrix(0.205487,0.001849,-0.002250,0.249990,0,0);-ms-transform:matrix(0.205487,0.001849,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.205487,0.001849,-0.002250,0.249990,0,0);}
.m71_c00316{transform:matrix(0.205941,0.001236,-0.001500,0.249996,0,0);-ms-transform:matrix(0.205941,0.001236,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.205941,0.001236,-0.001500,0.249996,0,0);}
.m16e_c00316{transform:matrix(0.206020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206020,0.000000,0.000000,0.250000,0,0);}
.m43_c00316{transform:matrix(0.206036,0.001236,-0.001500,0.249996,0,0);-ms-transform:matrix(0.206036,0.001236,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.206036,0.001236,-0.001500,0.249996,0,0);}
.m3a_c00316{transform:matrix(0.206211,0.001237,-0.001500,0.249996,0,0);-ms-transform:matrix(0.206211,0.001237,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.206211,0.001237,-0.001500,0.249996,0,0);}
.m152_c00316{transform:matrix(0.206295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206295,0.000000,0.000000,0.250000,0,0);}
.mc8_c00316{transform:matrix(0.206426,0.001239,-0.001500,0.249996,0,0);-ms-transform:matrix(0.206426,0.001239,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.206426,0.001239,-0.001500,0.249996,0,0);}
.ma1_c00316{transform:matrix(0.206531,0.001239,-0.001500,0.249996,0,0);-ms-transform:matrix(0.206531,0.001239,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.206531,0.001239,-0.001500,0.249996,0,0);}
.ma3_c00316{transform:matrix(0.207151,0.001243,-0.001500,0.249996,0,0);-ms-transform:matrix(0.207151,0.001243,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.207151,0.001243,-0.001500,0.249996,0,0);}
.maf_c00316{transform:matrix(0.207461,0.001245,-0.001500,0.249996,0,0);-ms-transform:matrix(0.207461,0.001245,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.207461,0.001245,-0.001500,0.249996,0,0);}
.mb0_c00316{transform:matrix(0.207611,0.001246,-0.001500,0.249996,0,0);-ms-transform:matrix(0.207611,0.001246,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.207611,0.001246,-0.001500,0.249996,0,0);}
.ma5_c00316{transform:matrix(0.207686,0.001246,-0.001500,0.249996,0,0);-ms-transform:matrix(0.207686,0.001246,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.207686,0.001246,-0.001500,0.249996,0,0);}
.mb_c00316{transform:matrix(0.208010,0.001456,-0.001750,0.249994,0,0);-ms-transform:matrix(0.208010,0.001456,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.208010,0.001456,-0.001750,0.249994,0,0);}
.mc7_c00316{transform:matrix(0.208281,0.001250,-0.001500,0.249996,0,0);-ms-transform:matrix(0.208281,0.001250,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.208281,0.001250,-0.001500,0.249996,0,0);}
.m13f_c00316{transform:matrix(0.208282,0.001875,-0.002250,0.249990,0,0);-ms-transform:matrix(0.208282,0.001875,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.208282,0.001875,-0.002250,0.249990,0,0);}
.me2_c00316{transform:matrix(0.208316,0.001250,-0.001500,0.249996,0,0);-ms-transform:matrix(0.208316,0.001250,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.208316,0.001250,-0.001500,0.249996,0,0);}
.mac_c00316{transform:matrix(0.208576,0.001251,-0.001500,0.249996,0,0);-ms-transform:matrix(0.208576,0.001251,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.208576,0.001251,-0.001500,0.249996,0,0);}
.m10d_c00316{transform:matrix(0.208597,0.001877,-0.002250,0.249990,0,0);-ms-transform:matrix(0.208597,0.001877,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.208597,0.001877,-0.002250,0.249990,0,0);}
.m29_c00316{transform:matrix(0.209356,0.001256,-0.001500,0.249996,0,0);-ms-transform:matrix(0.209356,0.001256,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.209356,0.001256,-0.001500,0.249996,0,0);}
.m84_c00316{transform:matrix(0.209541,0.001257,-0.001500,0.249996,0,0);-ms-transform:matrix(0.209541,0.001257,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.209541,0.001257,-0.001500,0.249996,0,0);}
.ma9_c00316{transform:matrix(0.209766,0.001259,-0.001500,0.249996,0,0);-ms-transform:matrix(0.209766,0.001259,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.209766,0.001259,-0.001500,0.249996,0,0);}
.m9e_c00316{transform:matrix(0.209876,0.001259,-0.001500,0.249996,0,0);-ms-transform:matrix(0.209876,0.001259,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.209876,0.001259,-0.001500,0.249996,0,0);}
.m86_c00316{transform:matrix(0.210551,0.001263,-0.001500,0.249996,0,0);-ms-transform:matrix(0.210551,0.001263,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.210551,0.001263,-0.001500,0.249996,0,0);}
.m1e_c00316{transform:matrix(0.210580,0.001474,-0.001750,0.249994,0,0);-ms-transform:matrix(0.210580,0.001474,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.210580,0.001474,-0.001750,0.249994,0,0);}
.m10f_c00316{transform:matrix(0.210821,0.001897,-0.002250,0.249990,0,0);-ms-transform:matrix(0.210821,0.001897,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.210821,0.001897,-0.002250,0.249990,0,0);}
.m49_c00316{transform:matrix(0.211211,0.001267,-0.001500,0.249996,0,0);-ms-transform:matrix(0.211211,0.001267,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.211211,0.001267,-0.001500,0.249996,0,0);}
.m131_c00316{transform:matrix(0.211486,0.001903,-0.002250,0.249990,0,0);-ms-transform:matrix(0.211486,0.001903,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.211486,0.001903,-0.002250,0.249990,0,0);}
.ma8_c00316{transform:matrix(0.211541,0.001269,-0.001500,0.249996,0,0);-ms-transform:matrix(0.211541,0.001269,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.211541,0.001269,-0.001500,0.249996,0,0);}
.m6d_c00316{transform:matrix(0.211576,0.001269,-0.001500,0.249996,0,0);-ms-transform:matrix(0.211576,0.001269,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.211576,0.001269,-0.001500,0.249996,0,0);}
.m70_c00316{transform:matrix(0.212111,0.001273,-0.001500,0.249996,0,0);-ms-transform:matrix(0.212111,0.001273,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.212111,0.001273,-0.001500,0.249996,0,0);}
.mef_c00316{transform:matrix(0.212231,0.001910,-0.002250,0.249990,0,0);-ms-transform:matrix(0.212231,0.001910,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.212231,0.001910,-0.002250,0.249990,0,0);}
.mae_c00316{transform:matrix(0.212251,0.001274,-0.001500,0.249996,0,0);-ms-transform:matrix(0.212251,0.001274,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.212251,0.001274,-0.001500,0.249996,0,0);}
.mc9_c00316{transform:matrix(0.212296,0.001274,-0.001500,0.249996,0,0);-ms-transform:matrix(0.212296,0.001274,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.212296,0.001274,-0.001500,0.249996,0,0);}
.m1b_c00316{transform:matrix(0.212465,0.001487,-0.001750,0.249994,0,0);-ms-transform:matrix(0.212465,0.001487,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.212465,0.001487,-0.001750,0.249994,0,0);}
.mb6_c00316{transform:matrix(0.212506,0.001275,-0.001500,0.249996,0,0);-ms-transform:matrix(0.212506,0.001275,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.212506,0.001275,-0.001500,0.249996,0,0);}
.m52_c00316{transform:matrix(0.212716,0.001276,-0.001500,0.249996,0,0);-ms-transform:matrix(0.212716,0.001276,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.212716,0.001276,-0.001500,0.249996,0,0);}
.me4_c00316{transform:matrix(0.212956,0.001917,-0.002250,0.249990,0,0);-ms-transform:matrix(0.212956,0.001917,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.212956,0.001917,-0.002250,0.249990,0,0);}
.m11d_c00316{transform:matrix(0.212996,0.001917,-0.002250,0.249990,0,0);-ms-transform:matrix(0.212996,0.001917,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.212996,0.001917,-0.002250,0.249990,0,0);}
.m15f_c00316{transform:matrix(0.213135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213135,0.000000,0.000000,0.250000,0,0);}
.mad_c00316{transform:matrix(0.213471,0.001281,-0.001500,0.249996,0,0);-ms-transform:matrix(0.213471,0.001281,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.213471,0.001281,-0.001500,0.249996,0,0);}
.m63_c00316{transform:matrix(0.213666,0.001282,-0.001500,0.249996,0,0);-ms-transform:matrix(0.213666,0.001282,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.213666,0.001282,-0.001500,0.249996,0,0);}
.m103_c00316{transform:matrix(0.213731,0.001924,-0.002250,0.249990,0,0);-ms-transform:matrix(0.213731,0.001924,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.213731,0.001924,-0.002250,0.249990,0,0);}
.m38_c00316{transform:matrix(0.213816,0.001283,-0.001500,0.249996,0,0);-ms-transform:matrix(0.213816,0.001283,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.213816,0.001283,-0.001500,0.249996,0,0);}
.mc4_c00316{transform:matrix(0.213856,0.001283,-0.001500,0.249996,0,0);-ms-transform:matrix(0.213856,0.001283,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.213856,0.001283,-0.001500,0.249996,0,0);}
.m110_c00316{transform:matrix(0.214196,0.001928,-0.002250,0.249990,0,0);-ms-transform:matrix(0.214196,0.001928,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.214196,0.001928,-0.002250,0.249990,0,0);}
.m2e_c00316{transform:matrix(0.214276,0.001286,-0.001500,0.249996,0,0);-ms-transform:matrix(0.214276,0.001286,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.214276,0.001286,-0.001500,0.249996,0,0);}
.m45_c00316{transform:matrix(0.214486,0.001287,-0.001500,0.249996,0,0);-ms-transform:matrix(0.214486,0.001287,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.214486,0.001287,-0.001500,0.249996,0,0);}
.mf9_c00316{transform:matrix(0.214546,0.001931,-0.002250,0.249990,0,0);-ms-transform:matrix(0.214546,0.001931,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.214546,0.001931,-0.002250,0.249990,0,0);}
.mf6_c00316{transform:matrix(0.214741,0.001933,-0.002250,0.249990,0,0);-ms-transform:matrix(0.214741,0.001933,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.214741,0.001933,-0.002250,0.249990,0,0);}
.m107_c00316{transform:matrix(0.214951,0.001935,-0.002250,0.249990,0,0);-ms-transform:matrix(0.214951,0.001935,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.214951,0.001935,-0.002250,0.249990,0,0);}
.mea_c00316{transform:matrix(0.215141,0.001936,-0.002250,0.249990,0,0);-ms-transform:matrix(0.215141,0.001936,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.215141,0.001936,-0.002250,0.249990,0,0);}
.m21_c00316{transform:matrix(0.215375,0.001508,-0.001750,0.249994,0,0);-ms-transform:matrix(0.215375,0.001508,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.215375,0.001508,-0.001750,0.249994,0,0);}
.m95_c00316{transform:matrix(0.215676,0.001294,-0.001500,0.249996,0,0);-ms-transform:matrix(0.215676,0.001294,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.215676,0.001294,-0.001500,0.249996,0,0);}
.m5e_c00316{transform:matrix(0.215751,0.001295,-0.001500,0.249996,0,0);-ms-transform:matrix(0.215751,0.001295,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.215751,0.001295,-0.001500,0.249996,0,0);}
.m10b_c00316{transform:matrix(0.215816,0.001942,-0.002250,0.249990,0,0);-ms-transform:matrix(0.215816,0.001942,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.215816,0.001942,-0.002250,0.249990,0,0);}
.m26_c00316{transform:matrix(0.216096,0.001297,-0.001500,0.249996,0,0);-ms-transform:matrix(0.216096,0.001297,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.216096,0.001297,-0.001500,0.249996,0,0);}
.m102_c00316{transform:matrix(0.216291,0.001947,-0.002250,0.249990,0,0);-ms-transform:matrix(0.216291,0.001947,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.216291,0.001947,-0.002250,0.249990,0,0);}
.mf2_c00316{transform:matrix(0.216306,0.001947,-0.002250,0.249990,0,0);-ms-transform:matrix(0.216306,0.001947,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.216306,0.001947,-0.002250,0.249990,0,0);}
.mec_c00316{transform:matrix(0.216461,0.001948,-0.002250,0.249990,0,0);-ms-transform:matrix(0.216461,0.001948,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.216461,0.001948,-0.002250,0.249990,0,0);}
.m90_c00316{transform:matrix(0.216491,0.001299,-0.001500,0.249996,0,0);-ms-transform:matrix(0.216491,0.001299,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.216491,0.001299,-0.001500,0.249996,0,0);}
.m39_c00316{transform:matrix(0.216721,0.001300,-0.001500,0.249996,0,0);-ms-transform:matrix(0.216721,0.001300,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.216721,0.001300,-0.001500,0.249996,0,0);}
.m73_c00316{transform:matrix(0.216751,0.001301,-0.001500,0.249996,0,0);-ms-transform:matrix(0.216751,0.001301,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.216751,0.001301,-0.001500,0.249996,0,0);}
.mf3_c00316{transform:matrix(0.217051,0.001953,-0.002250,0.249990,0,0);-ms-transform:matrix(0.217051,0.001953,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.217051,0.001953,-0.002250,0.249990,0,0);}
.m20_c00316{transform:matrix(0.217855,0.001525,-0.001750,0.249994,0,0);-ms-transform:matrix(0.217855,0.001525,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.217855,0.001525,-0.001750,0.249994,0,0);}
.mc6_c00316{transform:matrix(0.217926,0.001308,-0.001500,0.249996,0,0);-ms-transform:matrix(0.217926,0.001308,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.217926,0.001308,-0.001500,0.249996,0,0);}
.m6f_c00316{transform:matrix(0.218116,0.001309,-0.001500,0.249996,0,0);-ms-transform:matrix(0.218116,0.001309,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.218116,0.001309,-0.001500,0.249996,0,0);}
.m1a_c00316{transform:matrix(0.218425,0.001529,-0.001750,0.249994,0,0);-ms-transform:matrix(0.218425,0.001529,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.218425,0.001529,-0.001750,0.249994,0,0);}
.med_c00316{transform:matrix(0.218491,0.001966,-0.002250,0.249990,0,0);-ms-transform:matrix(0.218491,0.001966,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.218491,0.001966,-0.002250,0.249990,0,0);}
.m15a_c00316{transform:matrix(0.218925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218925,0.000000,0.000000,0.250000,0,0);}
.m105_c00316{transform:matrix(0.219066,0.001972,-0.002250,0.249990,0,0);-ms-transform:matrix(0.219066,0.001972,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.219066,0.001972,-0.002250,0.249990,0,0);}
.m2a_c00316{transform:matrix(0.219146,0.001315,-0.001500,0.249996,0,0);-ms-transform:matrix(0.219146,0.001315,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.219146,0.001315,-0.001500,0.249996,0,0);}
.mcd_c00316{transform:matrix(0.219271,0.001316,-0.001500,0.249996,0,0);-ms-transform:matrix(0.219271,0.001316,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.219271,0.001316,-0.001500,0.249996,0,0);}
.m42_c00316{transform:matrix(0.219586,0.001318,-0.001500,0.249996,0,0);-ms-transform:matrix(0.219586,0.001318,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.219586,0.001318,-0.001500,0.249996,0,0);}
.m163_c00316{transform:matrix(0.219890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219890,0.000000,0.000000,0.250000,0,0);}
.m7a_c00316{transform:matrix(0.220011,0.001320,-0.001500,0.249996,0,0);-ms-transform:matrix(0.220011,0.001320,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.220011,0.001320,-0.001500,0.249996,0,0);}
.m12b_c00316{transform:matrix(0.220181,0.001982,-0.002250,0.249990,0,0);-ms-transform:matrix(0.220181,0.001982,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.220181,0.001982,-0.002250,0.249990,0,0);}
.mdc_c00316{transform:matrix(0.220191,0.001321,-0.001500,0.249996,0,0);-ms-transform:matrix(0.220191,0.001321,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.220191,0.001321,-0.001500,0.249996,0,0);}
.m47_c00316{transform:matrix(0.220231,0.001321,-0.001500,0.249996,0,0);-ms-transform:matrix(0.220231,0.001321,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.220231,0.001321,-0.001500,0.249996,0,0);}
.m92_c00316{transform:matrix(0.220726,0.001324,-0.001500,0.249996,0,0);-ms-transform:matrix(0.220726,0.001324,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.220726,0.001324,-0.001500,0.249996,0,0);}
.m6a_c00316{transform:matrix(0.221176,0.001327,-0.001500,0.249996,0,0);-ms-transform:matrix(0.221176,0.001327,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.221176,0.001327,-0.001500,0.249996,0,0);}
.md1_c00316{transform:matrix(0.221466,0.001329,-0.001500,0.249996,0,0);-ms-transform:matrix(0.221466,0.001329,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.221466,0.001329,-0.001500,0.249996,0,0);}
.m106_c00316{transform:matrix(0.221836,0.001997,-0.002250,0.249990,0,0);-ms-transform:matrix(0.221836,0.001997,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.221836,0.001997,-0.002250,0.249990,0,0);}
.m76_c00316{transform:matrix(0.222011,0.001332,-0.001500,0.249996,0,0);-ms-transform:matrix(0.222011,0.001332,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.222011,0.001332,-0.001500,0.249996,0,0);}
.m120_c00316{transform:matrix(0.222516,0.002003,-0.002250,0.249990,0,0);-ms-transform:matrix(0.222516,0.002003,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.222516,0.002003,-0.002250,0.249990,0,0);}
.m11b_c00316{transform:matrix(0.222701,0.002004,-0.002250,0.249990,0,0);-ms-transform:matrix(0.222701,0.002004,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.222701,0.002004,-0.002250,0.249990,0,0);}
.mba_c00316{transform:matrix(0.222841,0.001337,-0.001500,0.249996,0,0);-ms-transform:matrix(0.222841,0.001337,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.222841,0.001337,-0.001500,0.249996,0,0);}
.m3c_c00316{transform:matrix(0.222926,0.001338,-0.001500,0.249996,0,0);-ms-transform:matrix(0.222926,0.001338,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.222926,0.001338,-0.001500,0.249996,0,0);}
.m162_c00316{transform:matrix(0.223350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223350,0.000000,0.000000,0.250000,0,0);}
.m94_c00316{transform:matrix(0.223376,0.001340,-0.001500,0.249996,0,0);-ms-transform:matrix(0.223376,0.001340,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.223376,0.001340,-0.001500,0.249996,0,0);}
.m118_c00316{transform:matrix(0.223471,0.002011,-0.002250,0.249990,0,0);-ms-transform:matrix(0.223471,0.002011,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.223471,0.002011,-0.002250,0.249990,0,0);}
.m36_c00316{transform:matrix(0.223666,0.001342,-0.001500,0.249996,0,0);-ms-transform:matrix(0.223666,0.001342,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.223666,0.001342,-0.001500,0.249996,0,0);}
.mc1_c00316{transform:matrix(0.223716,0.001342,-0.001500,0.249996,0,0);-ms-transform:matrix(0.223716,0.001342,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.223716,0.001342,-0.001500,0.249996,0,0);}
.mbd_c00316{transform:matrix(0.223881,0.001343,-0.001500,0.249996,0,0);-ms-transform:matrix(0.223881,0.001343,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.223881,0.001343,-0.001500,0.249996,0,0);}
.meb_c00316{transform:matrix(0.224136,0.002017,-0.002250,0.249990,0,0);-ms-transform:matrix(0.224136,0.002017,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.224136,0.002017,-0.002250,0.249990,0,0);}
.m136_c00316{transform:matrix(0.224646,0.002022,-0.002250,0.249990,0,0);-ms-transform:matrix(0.224646,0.002022,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.224646,0.002022,-0.002250,0.249990,0,0);}
.m12c_c00316{transform:matrix(0.224971,0.002025,-0.002250,0.249990,0,0);-ms-transform:matrix(0.224971,0.002025,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.224971,0.002025,-0.002250,0.249990,0,0);}
.m3d_c00316{transform:matrix(0.224986,0.001350,-0.001500,0.249996,0,0);-ms-transform:matrix(0.224986,0.001350,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.224986,0.001350,-0.001500,0.249996,0,0);}
.m6e_c00316{transform:matrix(0.225266,0.001352,-0.001500,0.249996,0,0);-ms-transform:matrix(0.225266,0.001352,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.225266,0.001352,-0.001500,0.249996,0,0);}
.mb9_c00316{transform:matrix(0.225566,0.001353,-0.001500,0.249996,0,0);-ms-transform:matrix(0.225566,0.001353,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.225566,0.001353,-0.001500,0.249996,0,0);}
.m5f_c00316{transform:matrix(0.225936,0.001356,-0.001500,0.249996,0,0);-ms-transform:matrix(0.225936,0.001356,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.225936,0.001356,-0.001500,0.249996,0,0);}
.m126_c00316{transform:matrix(0.226016,0.002034,-0.002250,0.249990,0,0);-ms-transform:matrix(0.226016,0.002034,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.226016,0.002034,-0.002250,0.249990,0,0);}
.m1_c00316{transform:matrix(0.226029,0.001582,-0.001750,0.249994,0,0);-ms-transform:matrix(0.226029,0.001582,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.226029,0.001582,-0.001750,0.249994,0,0);}
.m87_c00316{transform:matrix(0.226066,0.001356,-0.001500,0.249996,0,0);-ms-transform:matrix(0.226066,0.001356,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.226066,0.001356,-0.001500,0.249996,0,0);}
.m169_c00316{transform:matrix(0.226470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226470,0.000000,0.000000,0.250000,0,0);}
.m17_c00316{transform:matrix(0.226669,0.001587,-0.001750,0.249994,0,0);-ms-transform:matrix(0.226669,0.001587,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.226669,0.001587,-0.001750,0.249994,0,0);}
.m119_c00316{transform:matrix(0.226791,0.002041,-0.002250,0.249990,0,0);-ms-transform:matrix(0.226791,0.002041,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.226791,0.002041,-0.002250,0.249990,0,0);}
.m74_c00316{transform:matrix(0.227011,0.001362,-0.001500,0.249996,0,0);-ms-transform:matrix(0.227011,0.001362,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.227011,0.001362,-0.001500,0.249996,0,0);}
.m65_c00316{transform:matrix(0.227046,0.001362,-0.001500,0.249996,0,0);-ms-transform:matrix(0.227046,0.001362,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.227046,0.001362,-0.001500,0.249996,0,0);}
.m104_c00316{transform:matrix(0.227256,0.002045,-0.002250,0.249990,0,0);-ms-transform:matrix(0.227256,0.002045,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.227256,0.002045,-0.002250,0.249990,0,0);}
.m2c_c00316{transform:matrix(0.227406,0.001364,-0.001500,0.249996,0,0);-ms-transform:matrix(0.227406,0.001364,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.227406,0.001364,-0.001500,0.249996,0,0);}
.m164_c00316{transform:matrix(0.227450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227450,0.000000,0.000000,0.250000,0,0);}
.m8b_c00316{transform:matrix(0.227621,0.001366,-0.001500,0.249996,0,0);-ms-transform:matrix(0.227621,0.001366,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.227621,0.001366,-0.001500,0.249996,0,0);}
.mb4_c00316{transform:matrix(0.227746,0.001366,-0.001500,0.249996,0,0);-ms-transform:matrix(0.227746,0.001366,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.227746,0.001366,-0.001500,0.249996,0,0);}
.m53_c00316{transform:matrix(0.228156,0.001369,-0.001500,0.249996,0,0);-ms-transform:matrix(0.228156,0.001369,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.228156,0.001369,-0.001500,0.249996,0,0);}
.me_c00316{transform:matrix(0.228504,0.001600,-0.001750,0.249994,0,0);-ms-transform:matrix(0.228504,0.001600,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.228504,0.001600,-0.001750,0.249994,0,0);}
.m60_c00316{transform:matrix(0.228636,0.001372,-0.001500,0.249996,0,0);-ms-transform:matrix(0.228636,0.001372,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.228636,0.001372,-0.001500,0.249996,0,0);}
.m12e_c00316{transform:matrix(0.228806,0.002059,-0.002250,0.249990,0,0);-ms-transform:matrix(0.228806,0.002059,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.228806,0.002059,-0.002250,0.249990,0,0);}
.m6_c00316{transform:matrix(0.229189,0.001604,-0.001750,0.249994,0,0);-ms-transform:matrix(0.229189,0.001604,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.229189,0.001604,-0.001750,0.249994,0,0);}
.m85_c00316{transform:matrix(0.229191,0.001375,-0.001500,0.249996,0,0);-ms-transform:matrix(0.229191,0.001375,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.229191,0.001375,-0.001500,0.249996,0,0);}
.mb8_c00316{transform:matrix(0.229201,0.001375,-0.001500,0.249996,0,0);-ms-transform:matrix(0.229201,0.001375,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.229201,0.001375,-0.001500,0.249996,0,0);}
.m160_c00316{transform:matrix(0.229220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229220,0.000000,0.000000,0.250000,0,0);}
.m30_c00316{transform:matrix(0.229771,0.001379,-0.001500,0.249996,0,0);-ms-transform:matrix(0.229771,0.001379,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.229771,0.001379,-0.001500,0.249996,0,0);}
.m10c_c00316{transform:matrix(0.229856,0.002069,-0.002250,0.249990,0,0);-ms-transform:matrix(0.229856,0.002069,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.229856,0.002069,-0.002250,0.249990,0,0);}
.m130_c00316{transform:matrix(0.229876,0.002069,-0.002250,0.249990,0,0);-ms-transform:matrix(0.229876,0.002069,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.229876,0.002069,-0.002250,0.249990,0,0);}
.mc5_c00316{transform:matrix(0.230581,0.001383,-0.001500,0.249996,0,0);-ms-transform:matrix(0.230581,0.001383,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.230581,0.001383,-0.001500,0.249996,0,0);}
.mdb_c00316{transform:matrix(0.230676,0.001384,-0.001500,0.249996,0,0);-ms-transform:matrix(0.230676,0.001384,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.230676,0.001384,-0.001500,0.249996,0,0);}
.m121_c00316{transform:matrix(0.231326,0.002082,-0.002250,0.249990,0,0);-ms-transform:matrix(0.231326,0.002082,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.231326,0.002082,-0.002250,0.249990,0,0);}
.me5_c00316{transform:matrix(0.231441,0.002083,-0.002250,0.249990,0,0);-ms-transform:matrix(0.231441,0.002083,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.231441,0.002083,-0.002250,0.249990,0,0);}
.me7_c00316{transform:matrix(0.231491,0.002083,-0.002250,0.249990,0,0);-ms-transform:matrix(0.231491,0.002083,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.231491,0.002083,-0.002250,0.249990,0,0);}
.m112_c00316{transform:matrix(0.231991,0.002088,-0.002250,0.249990,0,0);-ms-transform:matrix(0.231991,0.002088,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.231991,0.002088,-0.002250,0.249990,0,0);}
.m62_c00316{transform:matrix(0.232491,0.001395,-0.001500,0.249996,0,0);-ms-transform:matrix(0.232491,0.001395,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.232491,0.001395,-0.001500,0.249996,0,0);}
.m125_c00316{transform:matrix(0.232946,0.002097,-0.002250,0.249990,0,0);-ms-transform:matrix(0.232946,0.002097,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.232946,0.002097,-0.002250,0.249990,0,0);}
.m161_c00316{transform:matrix(0.232975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232975,0.000000,0.000000,0.250000,0,0);}
.m7_c00316{transform:matrix(0.232979,0.001631,-0.001750,0.249994,0,0);-ms-transform:matrix(0.232979,0.001631,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.232979,0.001631,-0.001750,0.249994,0,0);}
.m13_c00316{transform:matrix(0.233124,0.001632,-0.001750,0.249994,0,0);-ms-transform:matrix(0.233124,0.001632,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.233124,0.001632,-0.001750,0.249994,0,0);}
.m138_c00316{transform:matrix(0.233151,0.002098,-0.002250,0.249990,0,0);-ms-transform:matrix(0.233151,0.002098,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.233151,0.002098,-0.002250,0.249990,0,0);}
.mf8_c00316{transform:matrix(0.233161,0.002098,-0.002250,0.249990,0,0);-ms-transform:matrix(0.233161,0.002098,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.233161,0.002098,-0.002250,0.249990,0,0);}
.md4_c00316{transform:matrix(0.233161,0.001399,-0.001500,0.249996,0,0);-ms-transform:matrix(0.233161,0.001399,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.233161,0.001399,-0.001500,0.249996,0,0);}
.m28_c00316{transform:matrix(0.233241,0.001399,-0.001500,0.249996,0,0);-ms-transform:matrix(0.233241,0.001399,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.233241,0.001399,-0.001500,0.249996,0,0);}
.m109_c00316{transform:matrix(0.233426,0.002101,-0.002250,0.249990,0,0);-ms-transform:matrix(0.233426,0.002101,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.233426,0.002101,-0.002250,0.249990,0,0);}
.mbe_c00316{transform:matrix(0.233566,0.001401,-0.001500,0.249996,0,0);-ms-transform:matrix(0.233566,0.001401,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.233566,0.001401,-0.001500,0.249996,0,0);}
.m108_c00316{transform:matrix(0.233776,0.002104,-0.002250,0.249990,0,0);-ms-transform:matrix(0.233776,0.002104,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.233776,0.002104,-0.002250,0.249990,0,0);}
.m40_c00316{transform:matrix(0.233821,0.001403,-0.001500,0.249996,0,0);-ms-transform:matrix(0.233821,0.001403,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.233821,0.001403,-0.001500,0.249996,0,0);}
.m3b_c00316{transform:matrix(0.234176,0.001405,-0.001500,0.249996,0,0);-ms-transform:matrix(0.234176,0.001405,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.234176,0.001405,-0.001500,0.249996,0,0);}
.mfb_c00316{transform:matrix(0.234316,0.002109,-0.002250,0.249990,0,0);-ms-transform:matrix(0.234316,0.002109,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.234316,0.002109,-0.002250,0.249990,0,0);}
.m46_c00316{transform:matrix(0.234716,0.001408,-0.001500,0.249996,0,0);-ms-transform:matrix(0.234716,0.001408,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.234716,0.001408,-0.001500,0.249996,0,0);}
.m11e_c00316{transform:matrix(0.234735,0.002113,-0.002250,0.249990,0,0);-ms-transform:matrix(0.234735,0.002113,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.234735,0.002113,-0.002250,0.249990,0,0);}
.m11a_c00316{transform:matrix(0.234975,0.002115,-0.002250,0.249990,0,0);-ms-transform:matrix(0.234975,0.002115,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.234975,0.002115,-0.002250,0.249990,0,0);}
.m50_c00316{transform:matrix(0.235086,0.001411,-0.001500,0.249996,0,0);-ms-transform:matrix(0.235086,0.001411,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.235086,0.001411,-0.001500,0.249996,0,0);}
.mc3_c00316{transform:matrix(0.235091,0.001411,-0.001500,0.249996,0,0);-ms-transform:matrix(0.235091,0.001411,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.235091,0.001411,-0.001500,0.249996,0,0);}
.m37_c00316{transform:matrix(0.235126,0.001411,-0.001500,0.249996,0,0);-ms-transform:matrix(0.235126,0.001411,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.235126,0.001411,-0.001500,0.249996,0,0);}
.m41_c00316{transform:matrix(0.235431,0.001413,-0.001500,0.249996,0,0);-ms-transform:matrix(0.235431,0.001413,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.235431,0.001413,-0.001500,0.249996,0,0);}
.m2f_c00316{transform:matrix(0.235806,0.001415,-0.001500,0.249996,0,0);-ms-transform:matrix(0.235806,0.001415,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.235806,0.001415,-0.001500,0.249996,0,0);}
.me9_c00316{transform:matrix(0.236035,0.002124,-0.002250,0.249990,0,0);-ms-transform:matrix(0.236035,0.002124,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.236035,0.002124,-0.002250,0.249990,0,0);}
.m116_c00316{transform:matrix(0.236205,0.002126,-0.002250,0.249990,0,0);-ms-transform:matrix(0.236205,0.002126,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.236205,0.002126,-0.002250,0.249990,0,0);}
.m77_c00316{transform:matrix(0.236336,0.001418,-0.001500,0.249996,0,0);-ms-transform:matrix(0.236336,0.001418,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.236336,0.001418,-0.001500,0.249996,0,0);}
.mf4_c00316{transform:matrix(0.236730,0.002131,-0.002250,0.249990,0,0);-ms-transform:matrix(0.236730,0.002131,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.236730,0.002131,-0.002250,0.249990,0,0);}
.m4b_c00316{transform:matrix(0.236896,0.001421,-0.001500,0.249996,0,0);-ms-transform:matrix(0.236896,0.001421,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.236896,0.001421,-0.001500,0.249996,0,0);}
.m14_c00316{transform:matrix(0.237254,0.001661,-0.001750,0.249994,0,0);-ms-transform:matrix(0.237254,0.001661,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.237254,0.001661,-0.001750,0.249994,0,0);}
.m56_c00316{transform:matrix(0.237421,0.001425,-0.001500,0.249996,0,0);-ms-transform:matrix(0.237421,0.001425,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.237421,0.001425,-0.001500,0.249996,0,0);}
.m15b_c00316{transform:matrix(0.237470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237470,0.000000,0.000000,0.250000,0,0);}
.m12_c00316{transform:matrix(0.237544,0.001663,-0.001750,0.249994,0,0);-ms-transform:matrix(0.237544,0.001663,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.237544,0.001663,-0.001750,0.249994,0,0);}
.m113_c00316{transform:matrix(0.237860,0.002141,-0.002250,0.249990,0,0);-ms-transform:matrix(0.237860,0.002141,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.237860,0.002141,-0.002250,0.249990,0,0);}
.m144_c00316{transform:matrix(0.238145,0.002143,-0.002250,0.249990,0,0);-ms-transform:matrix(0.238145,0.002143,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.238145,0.002143,-0.002250,0.249990,0,0);}
.m69_c00316{transform:matrix(0.238151,0.001429,-0.001500,0.249996,0,0);-ms-transform:matrix(0.238151,0.001429,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.238151,0.001429,-0.001500,0.249996,0,0);}
.m5b_c00316{transform:matrix(0.238531,0.001431,-0.001500,0.249996,0,0);-ms-transform:matrix(0.238531,0.001431,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.238531,0.001431,-0.001500,0.249996,0,0);}
.m133_c00316{transform:matrix(0.238595,0.002147,-0.002250,0.249990,0,0);-ms-transform:matrix(0.238595,0.002147,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.238595,0.002147,-0.002250,0.249990,0,0);}
.m44_c00316{transform:matrix(0.238731,0.001432,-0.001500,0.249996,0,0);-ms-transform:matrix(0.238731,0.001432,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.238731,0.001432,-0.001500,0.249996,0,0);}
.mb7_c00316{transform:matrix(0.238846,0.001433,-0.001500,0.249996,0,0);-ms-transform:matrix(0.238846,0.001433,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.238846,0.001433,-0.001500,0.249996,0,0);}
.md9_c00316{transform:matrix(0.238941,0.001434,-0.001500,0.249996,0,0);-ms-transform:matrix(0.238941,0.001434,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.238941,0.001434,-0.001500,0.249996,0,0);}
.mbb_c00316{transform:matrix(0.239031,0.001434,-0.001500,0.249996,0,0);-ms-transform:matrix(0.239031,0.001434,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.239031,0.001434,-0.001500,0.249996,0,0);}
.m27_c00316{transform:matrix(0.239291,0.001436,-0.001500,0.249996,0,0);-ms-transform:matrix(0.239291,0.001436,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.239291,0.001436,-0.001500,0.249996,0,0);}
.mc0_c00316{transform:matrix(0.239731,0.001438,-0.001500,0.249996,0,0);-ms-transform:matrix(0.239731,0.001438,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.239731,0.001438,-0.001500,0.249996,0,0);}
.m7d_c00316{transform:matrix(0.239891,0.001439,-0.001500,0.249996,0,0);-ms-transform:matrix(0.239891,0.001439,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.239891,0.001439,-0.001500,0.249996,0,0);}
.m134_c00316{transform:matrix(0.240310,0.002163,-0.002250,0.249990,0,0);-ms-transform:matrix(0.240310,0.002163,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.240310,0.002163,-0.002250,0.249990,0,0);}
.m51_c00316{transform:matrix(0.240316,0.001442,-0.001500,0.249996,0,0);-ms-transform:matrix(0.240316,0.001442,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.240316,0.001442,-0.001500,0.249996,0,0);}
.m5c_c00316{transform:matrix(0.240831,0.001445,-0.001500,0.249996,0,0);-ms-transform:matrix(0.240831,0.001445,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.240831,0.001445,-0.001500,0.249996,0,0);}
.m96_c00316{transform:matrix(0.241066,0.001446,-0.001500,0.249996,0,0);-ms-transform:matrix(0.241066,0.001446,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.241066,0.001446,-0.001500,0.249996,0,0);}
.mb3_c00316{transform:matrix(0.241361,0.001448,-0.001500,0.249996,0,0);-ms-transform:matrix(0.241361,0.001448,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.241361,0.001448,-0.001500,0.249996,0,0);}
.m88_c00316{transform:matrix(0.241686,0.001450,-0.001500,0.249996,0,0);-ms-transform:matrix(0.241686,0.001450,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.241686,0.001450,-0.001500,0.249996,0,0);}
.mda_c00316{transform:matrix(0.241811,0.001451,-0.001500,0.249996,0,0);-ms-transform:matrix(0.241811,0.001451,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.241811,0.001451,-0.001500,0.249996,0,0);}
.m132_c00316{transform:matrix(0.242310,0.002181,-0.002250,0.249990,0,0);-ms-transform:matrix(0.242310,0.002181,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.242310,0.002181,-0.002250,0.249990,0,0);}
.m48_c00316{transform:matrix(0.243286,0.001460,-0.001500,0.249996,0,0);-ms-transform:matrix(0.243286,0.001460,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.243286,0.001460,-0.001500,0.249996,0,0);}
.me0_c00316{transform:matrix(0.243411,0.001460,-0.001500,0.249996,0,0);-ms-transform:matrix(0.243411,0.001460,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.243411,0.001460,-0.001500,0.249996,0,0);}
.m117_c00316{transform:matrix(0.243420,0.002191,-0.002250,0.249990,0,0);-ms-transform:matrix(0.243420,0.002191,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.243420,0.002191,-0.002250,0.249990,0,0);}
.mf_c00316{transform:matrix(0.243709,0.001706,-0.001750,0.249994,0,0);-ms-transform:matrix(0.243709,0.001706,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.243709,0.001706,-0.001750,0.249994,0,0);}
.m59_c00316{transform:matrix(0.244101,0.001465,-0.001500,0.249996,0,0);-ms-transform:matrix(0.244101,0.001465,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.244101,0.001465,-0.001500,0.249996,0,0);}
.mb5_c00316{transform:matrix(0.245221,0.001471,-0.001500,0.249996,0,0);-ms-transform:matrix(0.245221,0.001471,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.245221,0.001471,-0.001500,0.249996,0,0);}
.m124_c00316{transform:matrix(0.245285,0.002208,-0.002250,0.249990,0,0);-ms-transform:matrix(0.245285,0.002208,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.245285,0.002208,-0.002250,0.249990,0,0);}
.m61_c00316{transform:matrix(0.245386,0.001472,-0.001500,0.249996,0,0);-ms-transform:matrix(0.245386,0.001472,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.245386,0.001472,-0.001500,0.249996,0,0);}
.m13a_c00316{transform:matrix(0.245980,0.002214,-0.002250,0.249990,0,0);-ms-transform:matrix(0.245980,0.002214,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.245980,0.002214,-0.002250,0.249990,0,0);}
.m11_c00316{transform:matrix(0.246059,0.001722,-0.001750,0.249994,0,0);-ms-transform:matrix(0.246059,0.001722,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.246059,0.001722,-0.001750,0.249994,0,0);}
.m68_c00316{transform:matrix(0.246346,0.001478,-0.001500,0.249996,0,0);-ms-transform:matrix(0.246346,0.001478,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.246346,0.001478,-0.001500,0.249996,0,0);}
.m15c_c00316{transform:matrix(0.246350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246350,0.000000,0.000000,0.250000,0,0);}
.md8_c00316{transform:matrix(0.246446,0.001479,-0.001500,0.249996,0,0);-ms-transform:matrix(0.246446,0.001479,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.246446,0.001479,-0.001500,0.249996,0,0);}
.m148_c00316{transform:matrix(0.246945,0.002223,-0.002250,0.249990,0,0);-ms-transform:matrix(0.246945,0.002223,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.246945,0.002223,-0.002250,0.249990,0,0);}
.m97_c00316{transform:matrix(0.247081,0.001482,-0.001500,0.249996,0,0);-ms-transform:matrix(0.247081,0.001482,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.247081,0.001482,-0.001500,0.249996,0,0);}
.m32_c00316{transform:matrix(0.247131,0.001483,-0.001500,0.249996,0,0);-ms-transform:matrix(0.247131,0.001483,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.247131,0.001483,-0.001500,0.249996,0,0);}
.m64_c00316{transform:matrix(0.247911,0.001487,-0.001500,0.249996,0,0);-ms-transform:matrix(0.247911,0.001487,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.247911,0.001487,-0.001500,0.249996,0,0);}
.m12a_c00316{transform:matrix(0.248045,0.002232,-0.002250,0.249990,0,0);-ms-transform:matrix(0.248045,0.002232,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.248045,0.002232,-0.002250,0.249990,0,0);}
.m55_c00316{transform:matrix(0.248921,0.001494,-0.001500,0.249996,0,0);-ms-transform:matrix(0.248921,0.001494,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.248921,0.001494,-0.001500,0.249996,0,0);}
.m127_c00316{transform:matrix(0.249200,0.002243,-0.002250,0.249990,0,0);-ms-transform:matrix(0.249200,0.002243,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.249200,0.002243,-0.002250,0.249990,0,0);}
.m34_c00316{transform:matrix(0.249596,0.001498,-0.001500,0.249996,0,0);-ms-transform:matrix(0.249596,0.001498,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.249596,0.001498,-0.001500,0.249996,0,0);}
.m129_c00316{transform:matrix(0.249680,0.002247,-0.002250,0.249990,0,0);-ms-transform:matrix(0.249680,0.002247,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.249680,0.002247,-0.002250,0.249990,0,0);}
.m7f_c00316{transform:matrix(0.249976,0.001500,-0.001500,0.249996,0,0);-ms-transform:matrix(0.249976,0.001500,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.249976,0.001500,-0.001500,0.249996,0,0);}
.m8f_c00316{transform:matrix(0.250140,0.001501,-0.001500,0.249996,0,0);-ms-transform:matrix(0.250140,0.001501,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.250140,0.001501,-0.001500,0.249996,0,0);}
.m8c_c00316{transform:matrix(0.250515,0.001503,-0.001500,0.249996,0,0);-ms-transform:matrix(0.250515,0.001503,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.250515,0.001503,-0.001500,0.249996,0,0);}
.m4f_c00316{transform:matrix(0.250700,0.001504,-0.001500,0.249996,0,0);-ms-transform:matrix(0.250700,0.001504,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.250700,0.001504,-0.001500,0.249996,0,0);}
.m93_c00316{transform:matrix(0.251145,0.001507,-0.001500,0.249996,0,0);-ms-transform:matrix(0.251145,0.001507,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.251145,0.001507,-0.001500,0.249996,0,0);}
.m14c_c00316{transform:matrix(0.251370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251370,0.000000,0.000000,0.250000,0,0);}
.md2_c00316{transform:matrix(0.251395,0.001508,-0.001500,0.249996,0,0);-ms-transform:matrix(0.251395,0.001508,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.251395,0.001508,-0.001500,0.249996,0,0);}
.mbc_c00316{transform:matrix(0.251465,0.001509,-0.001500,0.249996,0,0);-ms-transform:matrix(0.251465,0.001509,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.251465,0.001509,-0.001500,0.249996,0,0);}
.m4e_c00316{transform:matrix(0.251640,0.001510,-0.001500,0.249996,0,0);-ms-transform:matrix(0.251640,0.001510,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.251640,0.001510,-0.001500,0.249996,0,0);}
.md_c00316{transform:matrix(0.251909,0.001763,-0.001750,0.249994,0,0);-ms-transform:matrix(0.251909,0.001763,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.251909,0.001763,-0.001750,0.249994,0,0);}
.m67_c00316{transform:matrix(0.252550,0.001515,-0.001500,0.249996,0,0);-ms-transform:matrix(0.252550,0.001515,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.252550,0.001515,-0.001500,0.249996,0,0);}
.m137_c00316{transform:matrix(0.252900,0.002276,-0.002250,0.249990,0,0);-ms-transform:matrix(0.252900,0.002276,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.252900,0.002276,-0.002250,0.249990,0,0);}
.mcf_c00316{transform:matrix(0.253030,0.001518,-0.001500,0.249996,0,0);-ms-transform:matrix(0.253030,0.001518,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.253030,0.001518,-0.001500,0.249996,0,0);}
.m9_c00316{transform:matrix(0.253294,0.001773,-0.001750,0.249994,0,0);-ms-transform:matrix(0.253294,0.001773,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.253294,0.001773,-0.001750,0.249994,0,0);}
.m81_c00316{transform:matrix(0.253295,0.001520,-0.001500,0.249996,0,0);-ms-transform:matrix(0.253295,0.001520,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.253295,0.001520,-0.001500,0.249996,0,0);}
.m3_c00316{transform:matrix(0.253584,0.001775,-0.001750,0.249994,0,0);-ms-transform:matrix(0.253584,0.001775,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.253584,0.001775,-0.001750,0.249994,0,0);}
.m31_c00316{transform:matrix(0.253590,0.001522,-0.001500,0.249996,0,0);-ms-transform:matrix(0.253590,0.001522,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.253590,0.001522,-0.001500,0.249996,0,0);}
.m83_c00316{transform:matrix(0.253780,0.001523,-0.001500,0.249996,0,0);-ms-transform:matrix(0.253780,0.001523,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.253780,0.001523,-0.001500,0.249996,0,0);}
.m135_c00316{transform:matrix(0.253890,0.002285,-0.002250,0.249990,0,0);-ms-transform:matrix(0.253890,0.002285,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.253890,0.002285,-0.002250,0.249990,0,0);}
.m8d_c00316{transform:matrix(0.253945,0.001524,-0.001500,0.249996,0,0);-ms-transform:matrix(0.253945,0.001524,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.253945,0.001524,-0.001500,0.249996,0,0);}
.m4a_c00316{transform:matrix(0.256485,0.001539,-0.001500,0.249996,0,0);-ms-transform:matrix(0.256485,0.001539,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.256485,0.001539,-0.001500,0.249996,0,0);}
.m139_c00316{transform:matrix(0.256705,0.002310,-0.002250,0.249990,0,0);-ms-transform:matrix(0.256705,0.002310,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.256705,0.002310,-0.002250,0.249990,0,0);}
.mb2_c00316{transform:matrix(0.257035,0.001542,-0.001500,0.249996,0,0);-ms-transform:matrix(0.257035,0.001542,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.257035,0.001542,-0.001500,0.249996,0,0);}
.m66_c00316{transform:matrix(0.258495,0.001551,-0.001500,0.249996,0,0);-ms-transform:matrix(0.258495,0.001551,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.258495,0.001551,-0.001500,0.249996,0,0);}
.m7c_c00316{transform:matrix(0.259940,0.001560,-0.001500,0.249996,0,0);-ms-transform:matrix(0.259940,0.001560,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.259940,0.001560,-0.001500,0.249996,0,0);}
.m122_c00316{transform:matrix(0.259984,0.002340,-0.002250,0.249990,0,0);-ms-transform:matrix(0.259984,0.002340,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.259984,0.002340,-0.002250,0.249990,0,0);}
.mdf_c00316{transform:matrix(0.261115,0.001567,-0.001500,0.249996,0,0);-ms-transform:matrix(0.261115,0.001567,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.261115,0.001567,-0.001500,0.249996,0,0);}
.m4d_c00316{transform:matrix(0.262960,0.001578,-0.001500,0.249996,0,0);-ms-transform:matrix(0.262960,0.001578,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.262960,0.001578,-0.001500,0.249996,0,0);}
.m15_c00316{transform:matrix(0.263494,0.001844,-0.001750,0.249994,0,0);-ms-transform:matrix(0.263494,0.001844,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.263494,0.001844,-0.001750,0.249994,0,0);}
.m57_c00316{transform:matrix(0.264935,0.001590,-0.001500,0.249996,0,0);-ms-transform:matrix(0.264935,0.001590,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.264935,0.001590,-0.001500,0.249996,0,0);}
.m79_c00316{transform:matrix(0.265835,0.001595,-0.001500,0.249996,0,0);-ms-transform:matrix(0.265835,0.001595,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.265835,0.001595,-0.001500,0.249996,0,0);}
.mcb_c00316{transform:matrix(0.266230,0.001597,-0.001500,0.249996,0,0);-ms-transform:matrix(0.266230,0.001597,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.266230,0.001597,-0.001500,0.249996,0,0);}
.md3_c00316{transform:matrix(0.268430,0.001611,-0.001500,0.249996,0,0);-ms-transform:matrix(0.268430,0.001611,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.268430,0.001611,-0.001500,0.249996,0,0);}
.m7e_c00316{transform:matrix(0.269505,0.001617,-0.001500,0.249996,0,0);-ms-transform:matrix(0.269505,0.001617,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.269505,0.001617,-0.001500,0.249996,0,0);}
.m14a_c00316{transform:matrix(0.270470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270470,0.000000,0.000000,0.250000,0,0);}
.mcc_c00316{transform:matrix(0.271015,0.001626,-0.001500,0.249996,0,0);-ms-transform:matrix(0.271015,0.001626,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.271015,0.001626,-0.001500,0.249996,0,0);}
.m5d_c00316{transform:matrix(0.271765,0.001631,-0.001500,0.249996,0,0);-ms-transform:matrix(0.271765,0.001631,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.271765,0.001631,-0.001500,0.249996,0,0);}
.ma_c00316{transform:matrix(0.272153,0.001905,-0.001750,0.249994,0,0);-ms-transform:matrix(0.272153,0.001905,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.272153,0.001905,-0.001750,0.249994,0,0);}
.m2_c00316{transform:matrix(0.273738,0.001916,-0.001750,0.249994,0,0);-ms-transform:matrix(0.273738,0.001916,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.273738,0.001916,-0.001750,0.249994,0,0);}
.m14b_c00316{transform:matrix(0.274475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274475,0.000000,0.000000,0.250000,0,0);}
.m82_c00316{transform:matrix(0.275575,0.001653,-0.001500,0.249996,0,0);-ms-transform:matrix(0.275575,0.001653,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.275575,0.001653,-0.001500,0.249996,0,0);}
.m8_c00316{transform:matrix(0.277133,0.001940,-0.001750,0.249994,0,0);-ms-transform:matrix(0.277133,0.001940,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.277133,0.001940,-0.001750,0.249994,0,0);}
.m5_c00316{transform:matrix(0.277303,0.001941,-0.001750,0.249994,0,0);-ms-transform:matrix(0.277303,0.001941,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.277303,0.001941,-0.001750,0.249994,0,0);}
.m80_c00316{transform:matrix(0.277575,0.001665,-0.001500,0.249996,0,0);-ms-transform:matrix(0.277575,0.001665,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.277575,0.001665,-0.001500,0.249996,0,0);}
.m58_c00316{transform:matrix(0.278530,0.001671,-0.001500,0.249996,0,0);-ms-transform:matrix(0.278530,0.001671,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.278530,0.001671,-0.001500,0.249996,0,0);}
.md0_c00316{transform:matrix(0.279640,0.001678,-0.001500,0.249996,0,0);-ms-transform:matrix(0.279640,0.001678,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.279640,0.001678,-0.001500,0.249996,0,0);}
.m54_c00316{transform:matrix(0.280025,0.001680,-0.001500,0.249996,0,0);-ms-transform:matrix(0.280025,0.001680,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.280025,0.001680,-0.001500,0.249996,0,0);}
.mce_c00316{transform:matrix(0.280205,0.001681,-0.001500,0.249996,0,0);-ms-transform:matrix(0.280205,0.001681,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.280205,0.001681,-0.001500,0.249996,0,0);}
.m4_c00316{transform:matrix(0.280883,0.001966,-0.001750,0.249994,0,0);-ms-transform:matrix(0.280883,0.001966,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.280883,0.001966,-0.001750,0.249994,0,0);}
.mf0_c00316{transform:matrix(0.282519,0.002543,-0.002250,0.249990,0,0);-ms-transform:matrix(0.282519,0.002543,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.282519,0.002543,-0.002250,0.249990,0,0);}
.md7_c00316{transform:matrix(0.282525,0.001695,-0.001500,0.249996,0,0);-ms-transform:matrix(0.282525,0.001695,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.282525,0.001695,-0.001500,0.249996,0,0);}
.m5a_c00316{transform:matrix(0.283510,0.001701,-0.001500,0.249996,0,0);-ms-transform:matrix(0.283510,0.001701,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.283510,0.001701,-0.001500,0.249996,0,0);}
.m7b_c00316{transform:matrix(0.283710,0.001702,-0.001500,0.249996,0,0);-ms-transform:matrix(0.283710,0.001702,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.283710,0.001702,-0.001500,0.249996,0,0);}
.md5_c00316{transform:matrix(0.283845,0.001703,-0.001500,0.249996,0,0);-ms-transform:matrix(0.283845,0.001703,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.283845,0.001703,-0.001500,0.249996,0,0);}
.m24_c00316{transform:matrix(0.290888,0.002036,-0.001750,0.249994,0,0);-ms-transform:matrix(0.290888,0.002036,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.290888,0.002036,-0.001750,0.249994,0,0);}
.m151_c00316{transform:matrix(0.294440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294440,0.000000,0.000000,0.250000,0,0);}
.m91_c00316{transform:matrix(0.305205,0.001831,-0.001500,0.249996,0,0);-ms-transform:matrix(0.305205,0.001831,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.305205,0.001831,-0.001500,0.249996,0,0);}
.m143_c00316{transform:matrix(0.308687,0.002778,-0.002250,0.249990,0,0);-ms-transform:matrix(0.308687,0.002778,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.308687,0.002778,-0.002250,0.249990,0,0);}
.mca_c00316{transform:matrix(0.309974,0.001860,-0.001500,0.249996,0,0);-ms-transform:matrix(0.309974,0.001860,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.309974,0.001860,-0.001500,0.249996,0,0);}
.mf1_c00316{transform:matrix(0.313262,0.002819,-0.002250,0.249990,0,0);-ms-transform:matrix(0.313262,0.002819,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.313262,0.002819,-0.002250,0.249990,0,0);}
.m4c_c00316{transform:matrix(0.343009,0.002058,-0.001500,0.249996,0,0);-ms-transform:matrix(0.343009,0.002058,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.343009,0.002058,-0.001500,0.249996,0,0);}
.m14d_c00316{transform:matrix(0.350380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350380,0.000000,0.000000,0.250000,0,0);}
.m14e_c00316{transform:matrix(0.365965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365965,0.000000,0.000000,0.250000,0,0);}
.m149_c00316{transform:matrix(0.411135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411135,0.000000,0.000000,0.250000,0,0);}
.md6_c00316{transform:matrix(0.496231,0.002977,-0.001500,0.249996,0,0);-ms-transform:matrix(0.496231,0.002977,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.496231,0.002977,-0.001500,0.249996,0,0);}
.me1_c00316{transform:matrix(0.501021,0.003006,-0.001500,0.249996,0,0);-ms-transform:matrix(0.501021,0.003006,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.501021,0.003006,-0.001500,0.249996,0,0);}
.m14f_c00316{transform:matrix(0.538355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538355,0.000000,0.000000,0.250000,0,0);}
.m0_c00316{transform:matrix(0.540785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540785,0.000000,0.000000,0.250000,0,0);}
.m150_c00316{transform:matrix(0.590600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590600,0.000000,0.000000,0.250000,0,0);}
.v0_c00316{vertical-align:0.000000px;}
.ls0_c00316{letter-spacing:0.000000px;}
.sc__c00316{text-shadow:none;}
.sc0_c00316{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__c00316{-webkit-text-stroke:0px transparent;}
.sc0_c00316{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00316{word-spacing:0.000000px;}
.fc0_c00316{color:transparent;}
.fsd_c00316{font-size:24.000000px;}
.fs6_c00316{font-size:72.001296px;}
.fs1_c00316{font-size:72.001764px;}
.fsf_c00316{font-size:78.000000px;}
.fs5_c00316{font-size:78.001404px;}
.fs2_c00316{font-size:78.001911px;}
.fsb_c00316{font-size:78.003159px;}
.fs0_c00316{font-size:84.000000px;}
.fs4_c00316{font-size:84.001512px;}
.fs9_c00316{font-size:84.003402px;}
.fs10_c00316{font-size:90.000000px;}
.fs8_c00316{font-size:90.001620px;}
.fs3_c00316{font-size:90.002205px;}
.fsa_c00316{font-size:90.003645px;}
.fse_c00316{font-size:96.000000px;}
.fs7_c00316{font-size:96.001728px;}
.fsc_c00316{font-size:96.003888px;}
.y0_c00316{bottom:0.000000px;}
.y158_c00316{bottom:80.973000px;}
.y157_c00316{bottom:110.800500px;}
.y156_c00316{bottom:111.160500px;}
.y155_c00316{bottom:111.588000px;}
.y154_c00316{bottom:111.868500px;}
.y153_c00316{bottom:112.036500px;}
.y152_c00316{bottom:112.302000px;}
.y151_c00316{bottom:112.474500px;}
.y150_c00316{bottom:112.644000px;}
.y14f_c00316{bottom:113.259000px;}
.y14e_c00316{bottom:113.881500px;}
.y14d_c00316{bottom:114.211500px;}
.y14c_c00316{bottom:143.878500px;}
.y14b_c00316{bottom:169.180500px;}
.y14a_c00316{bottom:197.376041px;}
.y149_c00316{bottom:224.228810px;}
.y148_c00316{bottom:224.497211px;}
.y147_c00316{bottom:225.195155px;}
.y146_c00316{bottom:225.459155px;}
.y145_c00316{bottom:225.985575px;}
.y144_c00316{bottom:226.243973px;}
.y143_c00316{bottom:226.860212px;}
.y142_c00316{bottom:227.123604px;}
.y141_c00316{bottom:227.921436px;}
.y140_c00316{bottom:228.443726px;}
.y13f_c00316{bottom:228.704526px;}
.y13e_c00316{bottom:229.417778px;}
.y13d_c00316{bottom:229.760499px;}
.y13c_c00316{bottom:256.088691px;}
.y13b_c00316{bottom:256.780287px;}
.y13a_c00316{bottom:256.936815px;}
.y139_c00316{bottom:257.698794px;}
.y138_c00316{bottom:257.932668px;}
.y137_c00316{bottom:258.618285px;}
.y136_c00316{bottom:258.780509px;}
.y135_c00316{bottom:259.156403px;}
.y134_c00316{bottom:259.616339px;}
.y133_c00316{bottom:259.916966px;}
.y132_c00316{bottom:260.303307px;}
.y131_c00316{bottom:260.468028px;}
.y130_c00316{bottom:260.917638px;}
.y12f_c00316{bottom:261.082373px;}
.y12e_c00316{bottom:286.427390px;}
.y12d_c00316{bottom:286.703903px;}
.y12c_c00316{bottom:287.478921px;}
.y12b_c00316{bottom:288.192995px;}
.y12a_c00316{bottom:288.450651px;}
.y129_c00316{bottom:288.982688px;}
.y128_c00316{bottom:289.253370px;}
.y127_c00316{bottom:289.769775px;}
.y126_c00316{bottom:290.212385px;}
.y125_c00316{bottom:290.467382px;}
.y124_c00316{bottom:291.605816px;}
.y123_c00316{bottom:292.135044px;}
.y122_c00316{bottom:319.239138px;}
.y121_c00316{bottom:319.357542px;}
.y120_c00316{bottom:319.770759px;}
.y11f_c00316{bottom:319.961459px;}
.y11e_c00316{bottom:320.152037px;}
.y11d_c00316{bottom:320.492864px;}
.y11c_c00316{bottom:321.073506px;}
.y11b_c00316{bottom:321.478466px;}
.y11a_c00316{bottom:321.611564px;}
.y119_c00316{bottom:322.399773px;}
.y118_c00316{bottom:322.790781px;}
.y117_c00316{bottom:322.990172px;}
.y116_c00316{bottom:323.187551px;}
.y115_c00316{bottom:351.051386px;}
.y114_c00316{bottom:351.600018px;}
.y113_c00316{bottom:351.823772px;}
.y112_c00316{bottom:352.133940px;}
.y111_c00316{bottom:352.440317px;}
.y110_c00316{bottom:352.673382px;}
.y10f_c00316{bottom:352.907229px;}
.y10e_c00316{bottom:353.445306px;}
.y10d_c00316{bottom:353.894619px;}
.y10c_c00316{bottom:354.124863px;}
.y10b_c00316{bottom:354.815556px;}
.y10a_c00316{bottom:355.285613px;}
.y109_c00316{bottom:355.589640px;}
.y108_c00316{bottom:382.490552px;}
.y107_c00316{bottom:383.016396px;}
.y106_c00316{bottom:383.808572px;}
.y105_c00316{bottom:384.205949px;}
.y104_c00316{bottom:384.599979px;}
.y103_c00316{bottom:384.924828px;}
.y102_c00316{bottom:385.114665px;}
.y101_c00316{bottom:385.435494px;}
.y100_c00316{bottom:385.843652px;}
.yff_c00316{bottom:386.048789px;}
.yfe_c00316{bottom:386.369442px;}
.yfd_c00316{bottom:414.994493px;}
.yfc_c00316{bottom:415.152654px;}
.yfb_c00316{bottom:415.326759px;}
.yfa_c00316{bottom:415.655747px;}
.yf9_c00316{bottom:415.810453px;}
.yf8_c00316{bottom:416.081572px;}
.yf7_c00316{bottom:416.254572px;}
.yf6_c00316{bottom:416.748060px;}
.yf5_c00316{bottom:416.965061px;}
.yf4_c00316{bottom:417.239364px;}
.yf3_c00316{bottom:417.728469px;}
.yf2_c00316{bottom:418.229499px;}
.yf1_c00316{bottom:445.744647px;}
.yf0_c00316{bottom:446.038475px;}
.yef_c00316{bottom:446.524785px;}
.yee_c00316{bottom:446.838215px;}
.yed_c00316{bottom:447.428718px;}
.yec_c00316{bottom:447.727568px;}
.yeb_c00316{bottom:448.510082px;}
.yea_c00316{bottom:448.803842px;}
.ye9_c00316{bottom:449.397018px;}
.ye8_c00316{bottom:449.593551px;}
.ye7_c00316{bottom:449.797712px;}
.ye6_c00316{bottom:450.446805px;}
.ye5_c00316{bottom:451.710000px;}
.yd8_c00316{bottom:481.604277px;}
.yd9_c00316{bottom:481.604517px;}
.ye4_c00316{bottom:481.604580px;}
.ye1_c00316{bottom:481.604853px;}
.yda_c00316{bottom:481.605117px;}
.ye2_c00316{bottom:481.605162px;}
.ye3_c00316{bottom:481.605171px;}
.ye0_c00316{bottom:481.605213px;}
.ydb_c00316{bottom:481.605366px;}
.ydf_c00316{bottom:481.605393px;}
.ydc_c00316{bottom:481.605786px;}
.yde_c00316{bottom:481.606044px;}
.ydd_c00316{bottom:481.606095px;}
.yd7_c00316{bottom:510.488358px;}
.yd6_c00316{bottom:510.702336px;}
.yd5_c00316{bottom:511.141902px;}
.yd4_c00316{bottom:511.415316px;}
.yd3_c00316{bottom:511.576653px;}
.yd2_c00316{bottom:512.128167px;}
.yd1_c00316{bottom:512.243313px;}
.yd0_c00316{bottom:512.790048px;}
.ycf_c00316{bottom:512.949591px;}
.yce_c00316{bottom:513.387561px;}
.ycd_c00316{bottom:513.827034px;}
.ycc_c00316{bottom:514.074291px;}
.ycb_c00316{bottom:540.405516px;}
.yca_c00316{bottom:540.700218px;}
.yc9_c00316{bottom:540.930957px;}
.yc8_c00316{bottom:541.316766px;}
.yc7_c00316{bottom:542.013699px;}
.yc6_c00316{bottom:542.393193px;}
.yc5_c00316{bottom:543.083736px;}
.yc4_c00316{bottom:543.312522px;}
.yc3_c00316{bottom:543.554571px;}
.yc2_c00316{bottom:544.469106px;}
.yc1_c00316{bottom:544.773336px;}
.yc0_c00316{bottom:545.394789px;}
.ybf_c00316{bottom:571.373760px;}
.ybe_c00316{bottom:571.985400px;}
.ybd_c00316{bottom:572.517384px;}
.ybc_c00316{bottom:572.779413px;}
.ybb_c00316{bottom:573.297249px;}
.yba_c00316{bottom:573.578340px;}
.yb9_c00316{bottom:574.102554px;}
.yb8_c00316{bottom:574.359780px;}
.yb7_c00316{bottom:574.972887px;}
.yb6_c00316{bottom:575.328534px;}
.yb5_c00316{bottom:575.940156px;}
.yb4_c00316{bottom:576.985317px;}
.yb3_c00316{bottom:603.199029px;}
.yb2_c00316{bottom:603.660390px;}
.yb1_c00316{bottom:603.971097px;}
.yb0_c00316{bottom:604.429128px;}
.yaf_c00316{bottom:604.900053px;}
.yae_c00316{bottom:605.053620px;}
.yad_c00316{bottom:605.499102px;}
.yac_c00316{bottom:605.742573px;}
.yab_c00316{bottom:606.053262px;}
.yaa_c00316{bottom:606.506589px;}
.ya9_c00316{bottom:606.810747px;}
.ya8_c00316{bottom:607.047891px;}
.ya7_c00316{bottom:607.507587px;}
.ya6_c00316{bottom:607.662792px;}
.ya5_c00316{bottom:608.039550px;}
.ya4_c00316{bottom:635.461929px;}
.ya3_c00316{bottom:636.050115px;}
.ya2_c00316{bottom:636.184458px;}
.ya1_c00316{bottom:636.643062px;}
.ya0_c00316{bottom:637.375248px;}
.y9f_c00316{bottom:637.632747px;}
.y9e_c00316{bottom:638.097813px;}
.y9d_c00316{bottom:638.350506px;}
.y9c_c00316{bottom:638.554617px;}
.y9b_c00316{bottom:639.013131px;}
.y9a_c00316{bottom:639.360000px;}
.y99_c00316{bottom:669.465321px;}
.y98_c00316{bottom:669.999024px;}
.y97_c00316{bottom:670.346772px;}
.y96_c00316{bottom:670.618464px;}
.y95_c00316{bottom:671.409393px;}
.y94_c00316{bottom:671.752464px;}
.y93_c00316{bottom:699.344379px;}
.y92_c00316{bottom:699.533991px;}
.y91_c00316{bottom:699.734781px;}
.y90_c00316{bottom:700.321383px;}
.y8f_c00316{bottom:700.520490px;}
.y8e_c00316{bottom:701.113536px;}
.y8d_c00316{bottom:701.699949px;}
.y8c_c00316{bottom:701.973756px;}
.y8b_c00316{bottom:702.163242px;}
.y8a_c00316{bottom:702.300852px;}
.y89_c00316{bottom:702.626616px;}
.y88_c00316{bottom:702.950598px;}
.y87_c00316{bottom:703.154628px;}
.y86_c00316{bottom:703.420326px;}
.y85_c00316{bottom:703.613205px;}
.y84_c00316{bottom:731.477250px;}
.y83_c00316{bottom:732.131703px;}
.y82_c00316{bottom:732.462228px;}
.y81_c00316{bottom:733.116708px;}
.y80_c00316{bottom:733.447161px;}
.y7f_c00316{bottom:733.907250px;}
.y7e_c00316{bottom:734.161527px;}
.y7d_c00316{bottom:734.495328px;}
.y7c_c00316{bottom:735.098004px;}
.y7b_c00316{bottom:735.276168px;}
.y7a_c00316{bottom:735.744375px;}
.y75_c00316{bottom:765.618816px;}
.y74_c00316{bottom:765.618927px;}
.y73_c00316{bottom:765.619167px;}
.y79_c00316{bottom:765.619263px;}
.y72_c00316{bottom:765.619458px;}
.y76_c00316{bottom:765.619485px;}
.y71_c00316{bottom:765.619569px;}
.y78_c00316{bottom:765.619614px;}
.y77_c00316{bottom:765.619845px;}
.y6e_c00316{bottom:765.619920px;}
.y6d_c00316{bottom:765.620100px;}
.y70_c00316{bottom:765.620169px;}
.y6f_c00316{bottom:765.620280px;}
.y6c_c00316{bottom:765.620691px;}
.y6b_c00316{bottom:795.095595px;}
.y6a_c00316{bottom:795.426459px;}
.y69_c00316{bottom:795.810102px;}
.y68_c00316{bottom:796.188729px;}
.y67_c00316{bottom:796.689177px;}
.y66_c00316{bottom:796.906515px;}
.y65_c00316{bottom:797.288475px;}
.y64_c00316{bottom:797.451432px;}
.y63_c00316{bottom:797.672001px;}
.y62_c00316{bottom:798.057318px;}
.y61_c00316{bottom:798.327237px;}
.y60_c00316{bottom:798.496929px;}
.y5f_c00316{bottom:798.658173px;}
.y5e_c00316{bottom:827.177040px;}
.y5d_c00316{bottom:827.389389px;}
.y5c_c00316{bottom:827.562249px;}
.y5b_c00316{bottom:828.166398px;}
.y5a_c00316{bottom:828.386976px;}
.y59_c00316{bottom:828.933549px;}
.y58_c00316{bottom:829.424274px;}
.y57_c00316{bottom:829.636614px;}
.y56_c00316{bottom:829.812843px;}
.y55_c00316{bottom:830.359443px;}
.y54_c00316{bottom:830.519085px;}
.y4d_c00316{bottom:860.098278px;}
.y4e_c00316{bottom:860.098287px;}
.y4f_c00316{bottom:860.098587px;}
.y49_c00316{bottom:860.098731px;}
.y4c_c00316{bottom:860.098749px;}
.y4a_c00316{bottom:860.099100px;}
.y50_c00316{bottom:860.099196px;}
.y4b_c00316{bottom:860.099220px;}
.y51_c00316{bottom:860.099865px;}
.y53_c00316{bottom:860.099874px;}
.y52_c00316{bottom:860.100525px;}
.y48_c00316{bottom:888.619479px;}
.y47_c00316{bottom:889.139598px;}
.y46_c00316{bottom:889.531566px;}
.y45_c00316{bottom:890.127861px;}
.y44_c00316{bottom:890.333475px;}
.y43_c00316{bottom:890.649492px;}
.y42_c00316{bottom:891.380166px;}
.y41_c00316{bottom:891.963348px;}
.y40_c00316{bottom:892.169034px;}
.y3f_c00316{bottom:892.424904px;}
.y3e_c00316{bottom:892.889943px;}
.y3d_c00316{bottom:921.187059px;}
.y3c_c00316{bottom:921.565659px;}
.y3b_c00316{bottom:921.731937px;}
.y3a_c00316{bottom:921.898179px;}
.y39_c00316{bottom:922.059558px;}
.y38_c00316{bottom:922.332717px;}
.y37_c00316{bottom:922.658829px;}
.y36_c00316{bottom:922.828368px;}
.y35_c00316{bottom:923.368467px;}
.y34_c00316{bottom:923.539626px;}
.y33_c00316{bottom:924.027063px;}
.y32_c00316{bottom:924.581865px;}
.y31_c00316{bottom:924.749883px;}
.y30_c00316{bottom:953.316522px;}
.y2f_c00316{bottom:953.583714px;}
.y2e_c00316{bottom:953.831799px;}
.y2d_c00316{bottom:954.243198px;}
.y2c_c00316{bottom:954.437589px;}
.y2b_c00316{bottom:954.766440px;}
.y2a_c00316{bottom:955.035369px;}
.y29_c00316{bottom:955.683405px;}
.y28_c00316{bottom:956.347596px;}
.y27_c00316{bottom:956.610000px;}
.y25_c00316{bottom:994.166376px;}
.y26_c00316{bottom:994.166551px;}
.y24_c00316{bottom:1015.509820px;}
.y23_c00316{bottom:1015.709154px;}
.y22_c00316{bottom:1016.292222px;}
.y21_c00316{bottom:1016.497762px;}
.y20_c00316{bottom:1016.620444px;}
.y1f_c00316{bottom:1017.021665px;}
.y1e_c00316{bottom:1017.217186px;}
.y1d_c00316{bottom:1017.420858px;}
.y1c_c00316{bottom:1017.883165px;}
.y1b_c00316{bottom:1018.406614px;}
.y1a_c00316{bottom:1018.732494px;}
.y19_c00316{bottom:1018.933854px;}
.y18_c00316{bottom:1019.597785px;}
.y17_c00316{bottom:1019.789232px;}
.y16_c00316{bottom:1047.358527px;}
.y15_c00316{bottom:1047.623340px;}
.y14_c00316{bottom:1048.068247px;}
.y13_c00316{bottom:1048.406163px;}
.y12_c00316{bottom:1049.000908px;}
.y11_c00316{bottom:1049.131362px;}
.y10_c00316{bottom:1049.648909px;}
.yf_c00316{bottom:1049.860109px;}
.ye_c00316{bottom:1050.511825px;}
.yd_c00316{bottom:1050.646080px;}
.yc_c00316{bottom:1050.839595px;}
.yb_c00316{bottom:1078.477252px;}
.ya_c00316{bottom:1078.872263px;}
.y9_c00316{bottom:1079.707632px;}
.y8_c00316{bottom:1079.943903px;}
.y7_c00316{bottom:1080.174357px;}
.y6_c00316{bottom:1081.013737px;}
.y5_c00316{bottom:1082.091069px;}
.y4_c00316{bottom:1082.251488px;}
.y3_c00316{bottom:1082.943385px;}
.y2_c00316{bottom:1083.240000px;}
.y1_c00316{bottom:1127.250000px;}
.hf_c00316{height:24.000000px;}
.h8_c00316{height:72.001296px;}
.h3_c00316{height:72.001764px;}
.h11_c00316{height:78.000000px;}
.h7_c00316{height:78.001404px;}
.h4_c00316{height:78.001911px;}
.hd_c00316{height:78.003159px;}
.h2_c00316{height:84.000000px;}
.h6_c00316{height:84.001512px;}
.hb_c00316{height:84.003402px;}
.h12_c00316{height:90.000000px;}
.ha_c00316{height:90.001620px;}
.h5_c00316{height:90.002205px;}
.hc_c00316{height:90.003645px;}
.h10_c00316{height:96.000000px;}
.h9_c00316{height:96.001728px;}
.he_c00316{height:96.003888px;}
.h1_c00316{height:1165.500000px;}
.h0_c00316{height:1165.800000px;}
.w0_c00316{width:915.000000px;}
.x0_c00316{left:0.000000px;}
.x74_c00316{left:114.363723px;}
.xa0_c00316{left:117.637439px;}
.x6e_c00316{left:118.718796px;}
.x23_c00316{left:120.148874px;}
.x16_c00316{left:121.420287px;}
.x2_c00316{left:123.040500px;}
.xac_c00316{left:130.680000px;}
.xa1_c00316{left:141.108357px;}
.x98_c00316{left:151.386297px;}
.x17_c00316{left:153.270008px;}
.xc_c00316{left:154.373889px;}
.x93_c00316{left:161.628762px;}
.x5f_c00316{left:163.242927px;}
.x3_c00316{left:165.414000px;}
.x61_c00316{left:172.416000px;}
.x65_c00316{left:174.343893px;}
.xd_c00316{left:176.767547px;}
.x80_c00316{left:180.010500px;}
.x79_c00316{left:184.950456px;}
.x3f_c00316{left:186.841374px;}
.xb2_c00316{left:194.130000px;}
.x5e_c00316{left:197.312118px;}
.x37_c00316{left:198.651747px;}
.xa2_c00316{left:205.399518px;}
.x6f_c00316{left:207.543765px;}
.x4f_c00316{left:209.525337px;}
.x8b_c00316{left:218.266789px;}
.x40_c00316{left:220.322580px;}
.x58_c00316{left:228.608898px;}
.x25_c00316{left:230.772000px;}
.xad_c00316{left:234.630000px;}
.xb0_c00316{left:239.371500px;}
.x38_c00316{left:241.296747px;}
.x99_c00316{left:249.655443px;}
.x6d_c00316{left:251.262333px;}
.xb3_c00316{left:260.820000px;}
.x45_c00316{left:262.371882px;}
.x4_c00316{left:264.256500px;}
.x7a_c00316{left:272.162097px;}
.x50_c00316{left:273.247632px;}
.x26_c00316{left:274.506000px;}
.x39_c00316{left:275.577747px;}
.xa8_c00316{left:282.540071px;}
.xa3_c00316{left:283.963422px;}
.xe_c00316{left:285.299303px;}
.x5_c00316{left:287.173500px;}
.x7b_c00316{left:294.842916px;}
.x60_c00316{left:296.094834px;}
.x18_c00316{left:297.455516px;}
.x62_c00316{left:306.646500px;}
.x8c_c00316{left:316.115313px;}
.x49_c00316{left:317.738037px;}
.xf_c00316{left:320.399544px;}
.x51_c00316{left:327.518085px;}
.x41_c00316{left:329.405004px;}
.xb1_c00316{left:337.440000px;}
.x75_c00316{left:339.065064px;}
.x46_c00316{left:340.133850px;}
.xa9_c00316{left:347.906165px;}
.x19_c00316{left:351.724394px;}
.x90_c00316{left:359.832046px;}
.x2f_c00316{left:362.557329px;}
.x76_c00316{left:370.905753px;}
.x3a_c00316{left:372.774747px;}
.x70_c00316{left:381.670221px;}
.x63_c00316{left:382.780500px;}
.x27_c00316{left:385.204500px;}
.x81_c00316{left:392.487000px;}
.x4a_c00316{left:394.409496px;}
.x30_c00316{left:396.834036px;}
.x9a_c00316{left:403.027074px;}
.x66_c00316{left:404.097507px;}
.x10_c00316{left:406.549643px;}
.x91_c00316{left:414.094518px;}
.x82_c00316{left:415.171500px;}
.x71_c00316{left:416.261514px;}
.x94_c00316{left:424.612000px;}
.x59_c00316{left:427.067898px;}
.x11_c00316{left:428.400300px;}
.x1_c00316{left:429.570000px;}
.x83_c00316{left:437.008500px;}
.x1a_c00316{left:438.932003px;}
.x6_c00316{left:441.078000px;}
.xa4_c00316{left:446.239338px;}
.x67_c00316{left:448.378737px;}
.xb4_c00316{left:457.650000px;}
.xae_c00316{left:459.270000px;}
.x64_c00316{left:460.291500px;}
.xa5_c00316{left:469.431257px;}
.x4b_c00316{left:470.819955px;}
.x9d_c00316{left:479.142737px;}
.x77_c00316{left:480.278910px;}
.x52_c00316{left:481.690629px;}
.x68_c00316{left:483.207030px;}
.x42_c00316{left:485.737629px;}
.x7c_c00316{left:491.945508px;}
.x28_c00316{left:493.210500px;}
.x3b_c00316{left:494.553747px;}
.x95_c00316{left:501.566391px;}
.xb5_c00316{left:502.740000px;}
.x5a_c00316{left:503.749398px;}
.x31_c00316{left:504.851184px;}
.x7d_c00316{left:513.006264px;}
.x4c_c00316{left:514.293216px;}
.x1b_c00316{left:515.905038px;}
.x12_c00316{left:527.507493px;}
.x84_c00316{left:535.557000px;}
.x29_c00316{left:538.032000px;}
.x92_c00316{left:545.865568px;}
.x3c_c00316{left:547.223247px;}
.x1c_c00316{left:549.929779px;}
.xaf_c00316{left:556.200000px;}
.xaa_c00316{left:557.459541px;}
.x5b_c00316{left:558.824898px;}
.x7_c00316{left:560.989500px;}
.x9b_c00316{left:567.209502px;}
.x69_c00316{left:568.798017px;}
.x53_c00316{left:570.252315px;}
.x9e_c00316{left:579.334628px;}
.x3d_c00316{left:581.492247px;}
.x1d_c00316{left:582.576011px;}
.x13_c00316{left:583.924392px;}
.xab_c00316{left:589.837338px;}
.x47_c00316{left:591.781362px;}
.x2a_c00316{left:592.840500px;}
.x8_c00316{left:593.911500px;}
.x72_c00316{left:601.730898px;}
.x32_c00316{left:604.210287px;}
.x96_c00316{left:611.989376px;}
.x78_c00316{left:613.389702px;}
.x4d_c00316{left:614.451819px;}
.x85_c00316{left:622.503000px;}
.x7e_c00316{left:623.708751px;}
.x2b_c00316{left:625.239000px;}
.x9_c00316{left:627.664500px;}
.x8d_c00316{left:633.084234px;}
.x43_c00316{left:635.591529px;}
.x54_c00316{left:646.393560px;}
.x1e_c00316{left:649.536483px;}
.x86_c00316{left:655.708500px;}
.x14_c00316{left:658.197417px;}
.x5c_c00316{left:667.904898px;}
.x1f_c00316{left:670.062630px;}
.x7f_c00316{left:677.709195px;}
.x55_c00316{left:679.334748px;}
.x3e_c00316{left:680.874747px;}
.x97_c00316{left:688.148739px;}
.x33_c00316{left:690.883800px;}
.x2c_c00316{left:693.805500px;}
.x8e_c00316{left:698.974110px;}
.x6a_c00316{left:701.373216px;}
.x15_c00316{left:702.456732px;}
.x20_c00316{left:704.354372px;}
.xa6_c00316{left:709.765590px;}
.x44_c00316{left:711.732774px;}
.x87_c00316{left:721.320000px;}
.x5d_c00316{left:722.992398px;}
.x34_c00316{left:724.090998px;}
.xa7_c00316{left:732.157995px;}
.x56_c00316{left:733.875210px;}
.x2d_c00316{left:735.153000px;}
.x6b_c00316{left:745.657446px;}
.xa_c00316{left:747.003000px;}
.x88_c00316{left:756.145500px;}
.x35_c00316{left:757.304196px;}
.x8f_c00316{left:765.394999px;}
.x4e_c00316{left:766.747728px;}
.x9c_c00316{left:776.184645px;}
.x2e_c00316{left:779.685000px;}
.x48_c00316{left:789.425541px;}
.x9f_c00316{left:797.753099px;}
.x21_c00316{left:801.579054px;}
.xb_c00316{left:803.433000px;}
.x89_c00316{left:810.180000px;}
.x6c_c00316{left:811.550550px;}
.x24_c00316{left:821.086719px;}
.x57_c00316{left:822.436896px;}
.x73_c00316{left:831.510021px;}
.x36_c00316{left:832.904646px;}
.x22_c00316{left:834.769785px;}
.x8a_c00316{left:842.827500px;}
@media print{
.v0_c00316{vertical-align:0.000000pt;}
.ls0_c00316{letter-spacing:0.000000pt;}
.ws0_c00316{word-spacing:0.000000pt;}
.fsd_c00316{font-size:21.333333pt;}
.fs6_c00316{font-size:64.001152pt;}
.fs1_c00316{font-size:64.001568pt;}
.fsf_c00316{font-size:69.333333pt;}
.fs5_c00316{font-size:69.334581pt;}
.fs2_c00316{font-size:69.335032pt;}
.fsb_c00316{font-size:69.336141pt;}
.fs0_c00316{font-size:74.666667pt;}
.fs4_c00316{font-size:74.668011pt;}
.fs9_c00316{font-size:74.669691pt;}
.fs10_c00316{font-size:80.000000pt;}
.fs8_c00316{font-size:80.001440pt;}
.fs3_c00316{font-size:80.001960pt;}
.fsa_c00316{font-size:80.003240pt;}
.fse_c00316{font-size:85.333333pt;}
.fs7_c00316{font-size:85.334869pt;}
.fsc_c00316{font-size:85.336789pt;}
.y0_c00316{bottom:0.000000pt;}
.y158_c00316{bottom:71.976000pt;}
.y157_c00316{bottom:98.489333pt;}
.y156_c00316{bottom:98.809333pt;}
.y155_c00316{bottom:99.189333pt;}
.y154_c00316{bottom:99.438667pt;}
.y153_c00316{bottom:99.588000pt;}
.y152_c00316{bottom:99.824000pt;}
.y151_c00316{bottom:99.977333pt;}
.y150_c00316{bottom:100.128000pt;}
.y14f_c00316{bottom:100.674667pt;}
.y14e_c00316{bottom:101.228000pt;}
.y14d_c00316{bottom:101.521333pt;}
.y14c_c00316{bottom:127.892000pt;}
.y14b_c00316{bottom:150.382667pt;}
.y14a_c00316{bottom:175.445369pt;}
.y149_c00316{bottom:199.314497pt;}
.y148_c00316{bottom:199.553076pt;}
.y147_c00316{bottom:200.173471pt;}
.y146_c00316{bottom:200.408137pt;}
.y145_c00316{bottom:200.876067pt;}
.y144_c00316{bottom:201.105753pt;}
.y143_c00316{bottom:201.653521pt;}
.y142_c00316{bottom:201.887648pt;}
.y141_c00316{bottom:202.596832pt;}
.y140_c00316{bottom:203.061089pt;}
.y13f_c00316{bottom:203.292912pt;}
.y13e_c00316{bottom:203.926913pt;}
.y13d_c00316{bottom:204.231555pt;}
.y13c_c00316{bottom:227.634392pt;}
.y13b_c00316{bottom:228.249144pt;}
.y13a_c00316{bottom:228.388280pt;}
.y139_c00316{bottom:229.065595pt;}
.y138_c00316{bottom:229.273483pt;}
.y137_c00316{bottom:229.882920pt;}
.y136_c00316{bottom:230.027119pt;}
.y135_c00316{bottom:230.361247pt;}
.y134_c00316{bottom:230.770079pt;}
.y133_c00316{bottom:231.037303pt;}
.y132_c00316{bottom:231.380717pt;}
.y131_c00316{bottom:231.527136pt;}
.y130_c00316{bottom:231.926789pt;}
.y12f_c00316{bottom:232.073220pt;}
.y12e_c00316{bottom:254.602124pt;}
.y12d_c00316{bottom:254.847913pt;}
.y12c_c00316{bottom:255.536819pt;}
.y12b_c00316{bottom:256.171551pt;}
.y12a_c00316{bottom:256.400579pt;}
.y129_c00316{bottom:256.873500pt;}
.y128_c00316{bottom:257.114107pt;}
.y127_c00316{bottom:257.573133pt;}
.y126_c00316{bottom:257.966564pt;}
.y125_c00316{bottom:258.193228pt;}
.y124_c00316{bottom:259.205169pt;}
.y123_c00316{bottom:259.675595pt;}
.y122_c00316{bottom:283.768123pt;}
.y121_c00316{bottom:283.873371pt;}
.y120_c00316{bottom:284.240675pt;}
.y11f_c00316{bottom:284.410185pt;}
.y11e_c00316{bottom:284.579588pt;}
.y11d_c00316{bottom:284.882545pt;}
.y11c_c00316{bottom:285.398672pt;}
.y11b_c00316{bottom:285.758636pt;}
.y11a_c00316{bottom:285.876945pt;}
.y119_c00316{bottom:286.577576pt;}
.y118_c00316{bottom:286.925139pt;}
.y117_c00316{bottom:287.102375pt;}
.y116_c00316{bottom:287.277823pt;}
.y115_c00316{bottom:312.045676pt;}
.y114_c00316{bottom:312.533349pt;}
.y113_c00316{bottom:312.732241pt;}
.y112_c00316{bottom:313.007947pt;}
.y111_c00316{bottom:313.280281pt;}
.y110_c00316{bottom:313.487451pt;}
.y10f_c00316{bottom:313.695315pt;}
.y10e_c00316{bottom:314.173605pt;}
.y10d_c00316{bottom:314.572995pt;}
.y10c_c00316{bottom:314.777656pt;}
.y10b_c00316{bottom:315.391605pt;}
.y10a_c00316{bottom:315.809433pt;}
.y109_c00316{bottom:316.079680pt;}
.y108_c00316{bottom:339.991601pt;}
.y107_c00316{bottom:340.459019pt;}
.y106_c00316{bottom:341.163175pt;}
.y105_c00316{bottom:341.516399pt;}
.y104_c00316{bottom:341.866648pt;}
.y103_c00316{bottom:342.155403pt;}
.y102_c00316{bottom:342.324147pt;}
.y101_c00316{bottom:342.609328pt;}
.y100_c00316{bottom:342.972135pt;}
.yff_c00316{bottom:343.154479pt;}
.yfe_c00316{bottom:343.439504pt;}
.yfd_c00316{bottom:368.883993pt;}
.yfc_c00316{bottom:369.024581pt;}
.yfb_c00316{bottom:369.179341pt;}
.yfa_c00316{bottom:369.471775pt;}
.yf9_c00316{bottom:369.609292pt;}
.yf8_c00316{bottom:369.850287pt;}
.yf7_c00316{bottom:370.004064pt;}
.yf6_c00316{bottom:370.442720pt;}
.yf5_c00316{bottom:370.635609pt;}
.yf4_c00316{bottom:370.879435pt;}
.yf3_c00316{bottom:371.314195pt;}
.yf2_c00316{bottom:371.759555pt;}
.yf1_c00316{bottom:396.217464pt;}
.yf0_c00316{bottom:396.478644pt;}
.yef_c00316{bottom:396.910920pt;}
.yee_c00316{bottom:397.189524pt;}
.yed_c00316{bottom:397.714416pt;}
.yec_c00316{bottom:397.980060pt;}
.yeb_c00316{bottom:398.675628pt;}
.yea_c00316{bottom:398.936748pt;}
.ye9_c00316{bottom:399.464016pt;}
.ye8_c00316{bottom:399.638712pt;}
.ye7_c00316{bottom:399.820188pt;}
.ye6_c00316{bottom:400.397160pt;}
.ye5_c00316{bottom:401.520000pt;}
.yd8_c00316{bottom:428.092691pt;}
.yd9_c00316{bottom:428.092904pt;}
.ye4_c00316{bottom:428.092960pt;}
.ye1_c00316{bottom:428.093203pt;}
.yda_c00316{bottom:428.093437pt;}
.ye2_c00316{bottom:428.093477pt;}
.ye3_c00316{bottom:428.093485pt;}
.ye0_c00316{bottom:428.093523pt;}
.ydb_c00316{bottom:428.093659pt;}
.ydf_c00316{bottom:428.093683pt;}
.ydc_c00316{bottom:428.094032pt;}
.yde_c00316{bottom:428.094261pt;}
.ydd_c00316{bottom:428.094307pt;}
.yd7_c00316{bottom:453.767429pt;}
.yd6_c00316{bottom:453.957632pt;}
.yd5_c00316{bottom:454.348357pt;}
.yd4_c00316{bottom:454.591392pt;}
.yd3_c00316{bottom:454.734803pt;}
.yd2_c00316{bottom:455.225037pt;}
.yd1_c00316{bottom:455.327389pt;}
.yd0_c00316{bottom:455.813376pt;}
.ycf_c00316{bottom:455.955192pt;}
.yce_c00316{bottom:456.344499pt;}
.ycd_c00316{bottom:456.735141pt;}
.ycc_c00316{bottom:456.954925pt;}
.ycb_c00316{bottom:480.360459pt;}
.yca_c00316{bottom:480.622416pt;}
.yc9_c00316{bottom:480.827517pt;}
.yc8_c00316{bottom:481.170459pt;}
.yc7_c00316{bottom:481.789955pt;}
.yc6_c00316{bottom:482.127283pt;}
.yc5_c00316{bottom:482.741099pt;}
.yc4_c00316{bottom:482.944464pt;}
.yc3_c00316{bottom:483.159619pt;}
.yc2_c00316{bottom:483.972539pt;}
.yc1_c00316{bottom:484.242965pt;}
.yc0_c00316{bottom:484.795368pt;}
.ybf_c00316{bottom:507.887787pt;}
.ybe_c00316{bottom:508.431467pt;}
.ybd_c00316{bottom:508.904341pt;}
.ybc_c00316{bottom:509.137256pt;}
.ybb_c00316{bottom:509.597555pt;}
.yba_c00316{bottom:509.847413pt;}
.yb9_c00316{bottom:510.313381pt;}
.yb8_c00316{bottom:510.542027pt;}
.yb7_c00316{bottom:511.087011pt;}
.yb6_c00316{bottom:511.403141pt;}
.yb5_c00316{bottom:511.946805pt;}
.yb4_c00316{bottom:512.875837pt;}
.yb3_c00316{bottom:536.176915pt;}
.yb2_c00316{bottom:536.587013pt;}
.yb1_c00316{bottom:536.863197pt;}
.yb0_c00316{bottom:537.270336pt;}
.yaf_c00316{bottom:537.688936pt;}
.yae_c00316{bottom:537.825440pt;}
.yad_c00316{bottom:538.221424pt;}
.yac_c00316{bottom:538.437843pt;}
.yab_c00316{bottom:538.714011pt;}
.yaa_c00316{bottom:539.116968pt;}
.ya9_c00316{bottom:539.387331pt;}
.ya8_c00316{bottom:539.598125pt;}
.ya7_c00316{bottom:540.006744pt;}
.ya6_c00316{bottom:540.144704pt;}
.ya5_c00316{bottom:540.479600pt;}
.ya4_c00316{bottom:564.855048pt;}
.ya3_c00316{bottom:565.377880pt;}
.ya2_c00316{bottom:565.497296pt;}
.ya1_c00316{bottom:565.904944pt;}
.ya0_c00316{bottom:566.555776pt;}
.y9f_c00316{bottom:566.784664pt;}
.y9e_c00316{bottom:567.198056pt;}
.y9d_c00316{bottom:567.422672pt;}
.y9c_c00316{bottom:567.604104pt;}
.y9b_c00316{bottom:568.011672pt;}
.y9a_c00316{bottom:568.320000pt;}
.y99_c00316{bottom:595.080285pt;}
.y98_c00316{bottom:595.554688pt;}
.y97_c00316{bottom:595.863797pt;}
.y96_c00316{bottom:596.105301pt;}
.y95_c00316{bottom:596.808349pt;}
.y94_c00316{bottom:597.113301pt;}
.y93_c00316{bottom:621.639448pt;}
.y92_c00316{bottom:621.807992pt;}
.y91_c00316{bottom:621.986472pt;}
.y90_c00316{bottom:622.507896pt;}
.y8f_c00316{bottom:622.684880pt;}
.y8e_c00316{bottom:623.212032pt;}
.y8d_c00316{bottom:623.733288pt;}
.y8c_c00316{bottom:623.976672pt;}
.y8b_c00316{bottom:624.145104pt;}
.y8a_c00316{bottom:624.267424pt;}
.y89_c00316{bottom:624.556992pt;}
.y88_c00316{bottom:624.844976pt;}
.y87_c00316{bottom:625.026336pt;}
.y86_c00316{bottom:625.262512pt;}
.y85_c00316{bottom:625.433960pt;}
.y84_c00316{bottom:650.202000pt;}
.y83_c00316{bottom:650.783736pt;}
.y82_c00316{bottom:651.077536pt;}
.y81_c00316{bottom:651.659296pt;}
.y80_c00316{bottom:651.953032pt;}
.y7f_c00316{bottom:652.362000pt;}
.y7e_c00316{bottom:652.588024pt;}
.y7d_c00316{bottom:652.884736pt;}
.y7c_c00316{bottom:653.420448pt;}
.y7b_c00316{bottom:653.578816pt;}
.y7a_c00316{bottom:653.995000pt;}
.y75_c00316{bottom:680.550059pt;}
.y74_c00316{bottom:680.550157pt;}
.y73_c00316{bottom:680.550371pt;}
.y79_c00316{bottom:680.550456pt;}
.y72_c00316{bottom:680.550629pt;}
.y76_c00316{bottom:680.550653pt;}
.y71_c00316{bottom:680.550728pt;}
.y78_c00316{bottom:680.550768pt;}
.y77_c00316{bottom:680.550973pt;}
.y6e_c00316{bottom:680.551040pt;}
.y6d_c00316{bottom:680.551200pt;}
.y70_c00316{bottom:680.551261pt;}
.y6f_c00316{bottom:680.551360pt;}
.y6c_c00316{bottom:680.551725pt;}
.y6b_c00316{bottom:706.751640pt;}
.y6a_c00316{bottom:707.045741pt;}
.y69_c00316{bottom:707.386757pt;}
.y68_c00316{bottom:707.723315pt;}
.y67_c00316{bottom:708.168157pt;}
.y66_c00316{bottom:708.361347pt;}
.y65_c00316{bottom:708.700867pt;}
.y64_c00316{bottom:708.845717pt;}
.y63_c00316{bottom:709.041779pt;}
.y62_c00316{bottom:709.384283pt;}
.y61_c00316{bottom:709.624211pt;}
.y60_c00316{bottom:709.775048pt;}
.y5f_c00316{bottom:709.918376pt;}
.y5e_c00316{bottom:735.268480pt;}
.y5d_c00316{bottom:735.457235pt;}
.y5c_c00316{bottom:735.610888pt;}
.y5b_c00316{bottom:736.147909pt;}
.y5a_c00316{bottom:736.343979pt;}
.y59_c00316{bottom:736.829821pt;}
.y58_c00316{bottom:737.266021pt;}
.y57_c00316{bottom:737.454768pt;}
.y56_c00316{bottom:737.611416pt;}
.y55_c00316{bottom:738.097283pt;}
.y54_c00316{bottom:738.239187pt;}
.y4d_c00316{bottom:764.531803pt;}
.y4e_c00316{bottom:764.531811pt;}
.y4f_c00316{bottom:764.532077pt;}
.y49_c00316{bottom:764.532205pt;}
.y4c_c00316{bottom:764.532221pt;}
.y4a_c00316{bottom:764.532533pt;}
.y50_c00316{bottom:764.532619pt;}
.y4b_c00316{bottom:764.532640pt;}
.y51_c00316{bottom:764.533213pt;}
.y53_c00316{bottom:764.533221pt;}
.y52_c00316{bottom:764.533800pt;}
.y48_c00316{bottom:789.883981pt;}
.y47_c00316{bottom:790.346309pt;}
.y46_c00316{bottom:790.694725pt;}
.y45_c00316{bottom:791.224765pt;}
.y44_c00316{bottom:791.407533pt;}
.y43_c00316{bottom:791.688437pt;}
.y42_c00316{bottom:792.337925pt;}
.y41_c00316{bottom:792.856309pt;}
.y40_c00316{bottom:793.039141pt;}
.y3f_c00316{bottom:793.266581pt;}
.y3e_c00316{bottom:793.679949pt;}
.y3d_c00316{bottom:818.832941pt;}
.y3c_c00316{bottom:819.169475pt;}
.y3b_c00316{bottom:819.317277pt;}
.y3a_c00316{bottom:819.465048pt;}
.y39_c00316{bottom:819.608496pt;}
.y38_c00316{bottom:819.851304pt;}
.y37_c00316{bottom:820.141181pt;}
.y36_c00316{bottom:820.291883pt;}
.y35_c00316{bottom:820.771971pt;}
.y34_c00316{bottom:820.924112pt;}
.y33_c00316{bottom:821.357389pt;}
.y32_c00316{bottom:821.850547pt;}
.y31_c00316{bottom:821.999896pt;}
.y30_c00316{bottom:847.392464pt;}
.y2f_c00316{bottom:847.629968pt;}
.y2e_c00316{bottom:847.850488pt;}
.y2d_c00316{bottom:848.216176pt;}
.y2c_c00316{bottom:848.388968pt;}
.y2b_c00316{bottom:848.681280pt;}
.y2a_c00316{bottom:848.920328pt;}
.y29_c00316{bottom:849.496360pt;}
.y28_c00316{bottom:850.086752pt;}
.y27_c00316{bottom:850.320000pt;}
.y25_c00316{bottom:883.703445pt;}
.y26_c00316{bottom:883.703601pt;}
.y24_c00316{bottom:902.675396pt;}
.y23_c00316{bottom:902.852581pt;}
.y22_c00316{bottom:903.370864pt;}
.y21_c00316{bottom:903.553567pt;}
.y20_c00316{bottom:903.662617pt;}
.y1f_c00316{bottom:904.019257pt;}
.y1e_c00316{bottom:904.193055pt;}
.y1d_c00316{bottom:904.374096pt;}
.y1c_c00316{bottom:904.785036pt;}
.y1b_c00316{bottom:905.250324pt;}
.y1a_c00316{bottom:905.539995pt;}
.y19_c00316{bottom:905.718981pt;}
.y18_c00316{bottom:906.309143pt;}
.y17_c00316{bottom:906.479317pt;}
.y16_c00316{bottom:930.985357pt;}
.y15_c00316{bottom:931.220747pt;}
.y14_c00316{bottom:931.616220pt;}
.y13_c00316{bottom:931.916589pt;}
.y12_c00316{bottom:932.445252pt;}
.y11_c00316{bottom:932.561211pt;}
.y10_c00316{bottom:933.021252pt;}
.yf_c00316{bottom:933.208985pt;}
.ye_c00316{bottom:933.788289pt;}
.yd_c00316{bottom:933.907627pt;}
.yc_c00316{bottom:934.079640pt;}
.yb_c00316{bottom:958.646447pt;}
.ya_c00316{bottom:958.997567pt;}
.y9_c00316{bottom:959.740117pt;}
.y8_c00316{bottom:959.950136pt;}
.y7_c00316{bottom:960.154984pt;}
.y6_c00316{bottom:960.901100pt;}
.y5_c00316{bottom:961.858728pt;}
.y4_c00316{bottom:962.001323pt;}
.y3_c00316{bottom:962.616343pt;}
.y2_c00316{bottom:962.880000pt;}
.y1_c00316{bottom:1002.000000pt;}
.hf_c00316{height:21.333333pt;}
.h8_c00316{height:64.001152pt;}
.h3_c00316{height:64.001568pt;}
.h11_c00316{height:69.333333pt;}
.h7_c00316{height:69.334581pt;}
.h4_c00316{height:69.335032pt;}
.hd_c00316{height:69.336141pt;}
.h2_c00316{height:74.666667pt;}
.h6_c00316{height:74.668011pt;}
.hb_c00316{height:74.669691pt;}
.h12_c00316{height:80.000000pt;}
.ha_c00316{height:80.001440pt;}
.h5_c00316{height:80.001960pt;}
.hc_c00316{height:80.003240pt;}
.h10_c00316{height:85.333333pt;}
.h9_c00316{height:85.334869pt;}
.he_c00316{height:85.336789pt;}
.h1_c00316{height:1036.000000pt;}
.h0_c00316{height:1036.266667pt;}
.w0_c00316{width:813.333333pt;}
.x0_c00316{left:0.000000pt;}
.x74_c00316{left:101.656643pt;}
.xa0_c00316{left:104.566612pt;}
.x6e_c00316{left:105.527819pt;}
.x23_c00316{left:106.798999pt;}
.x16_c00316{left:107.929144pt;}
.x2_c00316{left:109.369333pt;}
.xac_c00316{left:116.160000pt;}
.xa1_c00316{left:125.429651pt;}
.x98_c00316{left:134.565597pt;}
.x17_c00316{left:136.240007pt;}
.xc_c00316{left:137.221235pt;}
.x93_c00316{left:143.670011pt;}
.x5f_c00316{left:145.104824pt;}
.x3_c00316{left:147.034667pt;}
.x61_c00316{left:153.258667pt;}
.x65_c00316{left:154.972349pt;}
.xd_c00316{left:157.126708pt;}
.x80_c00316{left:160.009333pt;}
.x79_c00316{left:164.400405pt;}
.x3f_c00316{left:166.081221pt;}
.xb2_c00316{left:172.560000pt;}
.x5e_c00316{left:175.388549pt;}
.x37_c00316{left:176.579331pt;}
.xa2_c00316{left:182.577349pt;}
.x6f_c00316{left:184.483347pt;}
.x4f_c00316{left:186.244744pt;}
.x8b_c00316{left:194.014924pt;}
.x40_c00316{left:195.842293pt;}
.x58_c00316{left:203.207909pt;}
.x25_c00316{left:205.130667pt;}
.xad_c00316{left:208.560000pt;}
.xb0_c00316{left:212.774667pt;}
.x38_c00316{left:214.485997pt;}
.x99_c00316{left:221.915949pt;}
.x6d_c00316{left:223.344296pt;}
.xb3_c00316{left:231.840000pt;}
.x45_c00316{left:233.219451pt;}
.x4_c00316{left:234.894667pt;}
.x7a_c00316{left:241.921864pt;}
.x50_c00316{left:242.886784pt;}
.x26_c00316{left:244.005333pt;}
.x39_c00316{left:244.957997pt;}
.xa8_c00316{left:251.146729pt;}
.xa3_c00316{left:252.411931pt;}
.xe_c00316{left:253.599380pt;}
.x5_c00316{left:255.265333pt;}
.x7b_c00316{left:262.082592pt;}
.x60_c00316{left:263.195408pt;}
.x18_c00316{left:264.404903pt;}
.x62_c00316{left:272.574667pt;}
.x8c_c00316{left:280.991389pt;}
.x49_c00316{left:282.433811pt;}
.xf_c00316{left:284.799595pt;}
.x51_c00316{left:291.127187pt;}
.x41_c00316{left:292.804448pt;}
.xb1_c00316{left:299.946667pt;}
.x75_c00316{left:301.391168pt;}
.x46_c00316{left:302.341200pt;}
.xa9_c00316{left:309.249924pt;}
.x19_c00316{left:312.643905pt;}
.x90_c00316{left:319.850708pt;}
.x2f_c00316{left:322.273181pt;}
.x76_c00316{left:329.694003pt;}
.x3a_c00316{left:331.355331pt;}
.x70_c00316{left:339.262419pt;}
.x63_c00316{left:340.249333pt;}
.x27_c00316{left:342.404000pt;}
.x81_c00316{left:348.877333pt;}
.x4a_c00316{left:350.586219pt;}
.x30_c00316{left:352.741365pt;}
.x9a_c00316{left:358.246288pt;}
.x66_c00316{left:359.197784pt;}
.x10_c00316{left:361.377460pt;}
.x91_c00316{left:368.084016pt;}
.x82_c00316{left:369.041333pt;}
.x71_c00316{left:370.010235pt;}
.x94_c00316{left:377.432889pt;}
.x59_c00316{left:379.615909pt;}
.x11_c00316{left:380.800267pt;}
.x1_c00316{left:381.840000pt;}
.x83_c00316{left:388.452000pt;}
.x1a_c00316{left:390.161780pt;}
.x6_c00316{left:392.069333pt;}
.xa4_c00316{left:396.657189pt;}
.x67_c00316{left:398.558877pt;}
.xb4_c00316{left:406.800000pt;}
.xae_c00316{left:408.240000pt;}
.x64_c00316{left:409.148000pt;}
.xa5_c00316{left:417.272228pt;}
.x4b_c00316{left:418.506627pt;}
.x9d_c00316{left:425.904655pt;}
.x77_c00316{left:426.914587pt;}
.x52_c00316{left:428.169448pt;}
.x68_c00316{left:429.517360pt;}
.x42_c00316{left:431.766781pt;}
.x7c_c00316{left:437.284896pt;}
.x28_c00316{left:438.409333pt;}
.x3b_c00316{left:439.603331pt;}
.x95_c00316{left:445.836792pt;}
.xb5_c00316{left:446.880000pt;}
.x5a_c00316{left:447.777243pt;}
.x31_c00316{left:448.756608pt;}
.x7d_c00316{left:456.005568pt;}
.x4c_c00316{left:457.149525pt;}
.x1b_c00316{left:458.582256pt;}
.x12_c00316{left:468.895549pt;}
.x84_c00316{left:476.050667pt;}
.x29_c00316{left:478.250667pt;}
.x92_c00316{left:485.213839pt;}
.x3c_c00316{left:486.420664pt;}
.x1c_c00316{left:488.826471pt;}
.xaf_c00316{left:494.400000pt;}
.xaa_c00316{left:495.519592pt;}
.x5b_c00316{left:496.733243pt;}
.x7_c00316{left:498.657333pt;}
.x9b_c00316{left:504.186224pt;}
.x69_c00316{left:505.598237pt;}
.x53_c00316{left:506.890947pt;}
.x9e_c00316{left:514.964113pt;}
.x3d_c00316{left:516.881997pt;}
.x1d_c00316{left:517.845343pt;}
.x13_c00316{left:519.043904pt;}
.xab_c00316{left:524.299856pt;}
.x47_c00316{left:526.027877pt;}
.x2a_c00316{left:526.969333pt;}
.x8_c00316{left:527.921333pt;}
.x72_c00316{left:534.871909pt;}
.x32_c00316{left:537.075811pt;}
.x96_c00316{left:543.990556pt;}
.x78_c00316{left:545.235291pt;}
.x4d_c00316{left:546.179395pt;}
.x85_c00316{left:553.336000pt;}
.x7e_c00316{left:554.407779pt;}
.x2b_c00316{left:555.768000pt;}
.x9_c00316{left:557.924000pt;}
.x8d_c00316{left:562.741541pt;}
.x43_c00316{left:564.970248pt;}
.x54_c00316{left:574.572053pt;}
.x1e_c00316{left:577.365763pt;}
.x86_c00316{left:582.852000pt;}
.x14_c00316{left:585.064371pt;}
.x5c_c00316{left:593.693243pt;}
.x1f_c00316{left:595.611227pt;}
.x7f_c00316{left:602.408173pt;}
.x55_c00316{left:603.853109pt;}
.x3e_c00316{left:605.221997pt;}
.x97_c00316{left:611.687768pt;}
.x33_c00316{left:614.118933pt;}
.x2c_c00316{left:616.716000pt;}
.x8e_c00316{left:621.310320pt;}
.x6a_c00316{left:623.442859pt;}
.x15_c00316{left:624.405984pt;}
.x20_c00316{left:626.092775pt;}
.xa6_c00316{left:630.902747pt;}
.x44_c00316{left:632.651355pt;}
.x87_c00316{left:641.173333pt;}
.x5d_c00316{left:642.659909pt;}
.x34_c00316{left:643.636443pt;}
.xa7_c00316{left:650.807107pt;}
.x56_c00316{left:652.333520pt;}
.x2d_c00316{left:653.469333pt;}
.x6b_c00316{left:662.806619pt;}
.xa_c00316{left:664.002667pt;}
.x88_c00316{left:672.129333pt;}
.x35_c00316{left:673.159285pt;}
.x8f_c00316{left:680.351111pt;}
.x4e_c00316{left:681.553536pt;}
.x9c_c00316{left:689.941907pt;}
.x2e_c00316{left:693.053333pt;}
.x48_c00316{left:701.711592pt;}
.x9f_c00316{left:709.113865pt;}
.x21_c00316{left:712.514715pt;}
.xb_c00316{left:714.162667pt;}
.x89_c00316{left:720.160000pt;}
.x6c_c00316{left:721.378267pt;}
.x24_c00316{left:729.854861pt;}
.x57_c00316{left:731.055019pt;}
.x73_c00316{left:739.120019pt;}
.x36_c00316{left:740.359685pt;}
.x22_c00316{left:742.017587pt;}
.x8a_c00316{left:749.180000pt;}
}





/* 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_c00317 {
    display:none;
  }
  .loading-indicator_c00317.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00317 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_c00317 { 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_c00317" -> "#page-container .classname_c00317")
 */
.pf_c00317 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00317 { /* 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_c00317.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00317 { /* 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_c00317 { /* 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_c00317 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00317 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00317 {overflow:visible;}
  }
}
.c_c00317 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00317 { /* 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_c00317:after { /* webkit #35443 */
  content: '';
}
.t_c00317:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00317 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 */
}
.__c00317 { /* 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_c00317 { /* info for Javascript */
  display:none;
}
.l_c00317 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00317 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00317 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00317: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_c00317 {
    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_c00317.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00317.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_c00317 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00317{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00317;src:url('chunks/assets/font_fe3cd3c6b9706b260f6e1774.woff2')format("woff");}.ff1_c00317{font-family:ff1_c00317;line-height:1.000000;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;}
.m9_c00317{transform:matrix(0.040560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.040560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.040560,0.000000,0.000000,0.250000,0,0);}
.m6_c00317{transform:matrix(0.043730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.043730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.043730,0.000000,0.000000,0.250000,0,0);}
.m0_c00317{transform:matrix(0.065600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065600,0.000000,0.000000,0.250000,0,0);}
.m1_c00317{transform:matrix(0.127280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127280,0.000000,0.000000,0.250000,0,0);}
.m8_c00317{transform:matrix(0.191215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191215,0.000000,0.000000,0.250000,0,0);}
.mb_c00317{transform:matrix(0.266700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266700,0.000000,0.000000,0.250000,0,0);}
.md_c00317{transform:matrix(0.343920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343920,0.000000,0.000000,0.250000,0,0);}
.m2_c00317{transform:matrix(0.348660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348660,0.000000,0.000000,0.250000,0,0);}
.m7_c00317{transform:matrix(0.467465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467465,0.000000,0.000000,0.250000,0,0);}
.mc_c00317{transform:matrix(0.740965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.740965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.740965,0.000000,0.000000,0.250000,0,0);}
.m3_c00317{transform:matrix(0.756310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.756310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.756310,0.000000,0.000000,0.250000,0,0);}
.m5_c00317{transform:matrix(0.811420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811420,0.000000,0.000000,0.250000,0,0);}
.ma_c00317{transform:matrix(0.830140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.830140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.830140,0.000000,0.000000,0.250000,0,0);}
.m4_c00317{transform:matrix(0.886145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.886145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.886145,0.000000,0.000000,0.250000,0,0);}
.v0_c00317{vertical-align:0.000000px;}
.ls0_c00317{letter-spacing:0.000000px;}
.sc__c00317{text-shadow:none;}
.sc0_c00317{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__c00317{-webkit-text-stroke:0px transparent;}
.sc0_c00317{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00317{word-spacing:0.000000px;}
.fc0_c00317{color:transparent;}
.fs0_c00317{font-size:24.000000px;}
.fs1_c00317{font-size:36.000000px;}
.fs2_c00317{font-size:72.000000px;}
.y0_c00317{bottom:0.000000px;}
.y7_c00317{bottom:430.779000px;}
.y6_c00317{bottom:444.420000px;}
.y5_c00317{bottom:715.495500px;}
.y4_c00317{bottom:725.359500px;}
.y3_c00317{bottom:994.800000px;}
.y2_c00317{bottom:1001.302500px;}
.y1_c00317{bottom:1002.510000px;}
.h2_c00317{height:24.000000px;}
.h3_c00317{height:36.000000px;}
.h4_c00317{height:72.000000px;}
.h1_c00317{height:1165.500000px;}
.h0_c00317{height:1165.800000px;}
.w0_c00317{width:915.000000px;}
.x0_c00317{left:0.000000px;}
.xa_c00317{left:68.580000px;}
.xb_c00317{left:83.970000px;}
.x7_c00317{left:85.320000px;}
.x8_c00317{left:89.640000px;}
.x9_c00317{left:117.450000px;}
.x5_c00317{left:174.420000px;}
.x3_c00317{left:181.440000px;}
.x1_c00317{left:193.320000px;}
.x4_c00317{left:217.890000px;}
.x6_c00317{left:220.320000px;}
.x2_c00317{left:241.380000px;}
.xc_c00317{left:319.950000px;}
.xe_c00317{left:324.810000px;}
.xd_c00317{left:334.800000px;}
@media print{
.v0_c00317{vertical-align:0.000000pt;}
.ls0_c00317{letter-spacing:0.000000pt;}
.ws0_c00317{word-spacing:0.000000pt;}
.fs0_c00317{font-size:21.333333pt;}
.fs1_c00317{font-size:32.000000pt;}
.fs2_c00317{font-size:64.000000pt;}
.y0_c00317{bottom:0.000000pt;}
.y7_c00317{bottom:382.914667pt;}
.y6_c00317{bottom:395.040000pt;}
.y5_c00317{bottom:635.996000pt;}
.y4_c00317{bottom:644.764000pt;}
.y3_c00317{bottom:884.266667pt;}
.y2_c00317{bottom:890.046667pt;}
.y1_c00317{bottom:891.120000pt;}
.h2_c00317{height:21.333333pt;}
.h3_c00317{height:32.000000pt;}
.h4_c00317{height:64.000000pt;}
.h1_c00317{height:1036.000000pt;}
.h0_c00317{height:1036.266667pt;}
.w0_c00317{width:813.333333pt;}
.x0_c00317{left:0.000000pt;}
.xa_c00317{left:60.960000pt;}
.xb_c00317{left:74.640000pt;}
.x7_c00317{left:75.840000pt;}
.x8_c00317{left:79.680000pt;}
.x9_c00317{left:104.400000pt;}
.x5_c00317{left:155.040000pt;}
.x3_c00317{left:161.280000pt;}
.x1_c00317{left:171.840000pt;}
.x4_c00317{left:193.680000pt;}
.x6_c00317{left:195.840000pt;}
.x2_c00317{left:214.560000pt;}
.xc_c00317{left:284.400000pt;}
.xe_c00317{left:288.720000pt;}
.xd_c00317{left:297.600000pt;}
}





/* 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_c00318 {
    display:none;
  }
  .loading-indicator_c00318.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00318 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_c00318 { 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_c00318" -> "#page-container .classname_c00318")
 */
.pf_c00318 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00318 { /* 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_c00318.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00318 { /* 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_c00318 { /* 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_c00318 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00318 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00318 {overflow:visible;}
  }
}
.c_c00318 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00318 { /* 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_c00318:after { /* webkit #35443 */
  content: '';
}
.t_c00318:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00318 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 */
}
.__c00318 { /* 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_c00318 { /* info for Javascript */
  display:none;
}
.l_c00318 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00318 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00318 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00318: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_c00318 {
    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_c00318.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00318.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_c00318 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00318{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00318;src:url('chunks/assets/font_c605e72f209fc835e906f064.woff2')format("woff");}.ff1_c00318{font-family:ff1_c00318;line-height:1.000000;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;}
.m45_c00318{transform:matrix(0.117935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117935,0.000000,0.000000,0.250000,0,0);}
.m47_c00318{transform:matrix(0.155800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155800,0.000000,0.000000,0.250000,0,0);}
.me_c00318{transform:matrix(0.183020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183020,0.000000,0.000000,0.250000,0,0);}
.m39_c00318{transform:matrix(0.186120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186120,0.000000,0.000000,0.250000,0,0);}
.m3_c00318{transform:matrix(0.190395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190395,0.000000,0.000000,0.250000,0,0);}
.m49_c00318{transform:matrix(0.193275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193275,0.000000,0.000000,0.250000,0,0);}
.m46_c00318{transform:matrix(0.193470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193470,0.000000,0.000000,0.250000,0,0);}
.m48_c00318{transform:matrix(0.199875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199875,0.000000,0.000000,0.250000,0,0);}
.m3a_c00318{transform:matrix(0.201525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201525,0.000000,0.000000,0.250000,0,0);}
.md_c00318{transform:matrix(0.208270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208270,0.000000,0.000000,0.250000,0,0);}
.m1b_c00318{transform:matrix(0.214665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214665,0.000000,0.000000,0.250000,0,0);}
.m38_c00318{transform:matrix(0.215730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215730,0.000000,0.000000,0.250000,0,0);}
.m24_c00318{transform:matrix(0.216060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216060,0.000000,0.000000,0.250000,0,0);}
.m14_c00318{transform:matrix(0.223760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223760,0.000000,0.000000,0.250000,0,0);}
.m36_c00318{transform:matrix(0.223815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223815,0.000000,0.000000,0.250000,0,0);}
.m19_c00318{transform:matrix(0.229150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229150,0.000000,0.000000,0.250000,0,0);}
.m1f_c00318{transform:matrix(0.229885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229885,0.000000,0.000000,0.250000,0,0);}
.m12_c00318{transform:matrix(0.230530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230530,0.000000,0.000000,0.250000,0,0);}
.m1e_c00318{transform:matrix(0.232430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232430,0.000000,0.000000,0.250000,0,0);}
.m17_c00318{transform:matrix(0.233910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233910,0.000000,0.000000,0.250000,0,0);}
.m20_c00318{transform:matrix(0.234085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234085,0.000000,0.000000,0.250000,0,0);}
.m26_c00318{transform:matrix(0.238235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238235,0.000000,0.000000,0.250000,0,0);}
.m15_c00318{transform:matrix(0.242275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242275,0.000000,0.000000,0.250000,0,0);}
.m1c_c00318{transform:matrix(0.242695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242695,0.000000,0.000000,0.250000,0,0);}
.m44_c00318{transform:matrix(0.243835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243835,0.000000,0.000000,0.250000,0,0);}
.m1d_c00318{transform:matrix(0.245990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245990,0.000000,0.000000,0.250000,0,0);}
.m2_c00318{transform:matrix(0.246515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246515,0.000000,0.000000,0.250000,0,0);}
.m23_c00318{transform:matrix(0.248055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248055,0.000000,0.000000,0.250000,0,0);}
.m35_c00318{transform:matrix(0.248470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248470,0.000000,0.000000,0.250000,0,0);}
.m22_c00318{transform:matrix(0.249160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249160,0.000000,0.000000,0.250000,0,0);}
.m43_c00318{transform:matrix(0.249665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249665,0.000000,0.000000,0.250000,0,0);}
.m16_c00318{transform:matrix(0.250470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250470,0.000000,0.000000,0.250000,0,0);}
.m1a_c00318{transform:matrix(0.252125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252125,0.000000,0.000000,0.250000,0,0);}
.m21_c00318{transform:matrix(0.253965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253965,0.000000,0.000000,0.250000,0,0);}
.m34_c00318{transform:matrix(0.254575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254575,0.000000,0.000000,0.250000,0,0);}
.m2f_c00318{transform:matrix(0.254720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254720,0.000000,0.000000,0.250000,0,0);}
.m18_c00318{transform:matrix(0.255410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255410,0.000000,0.000000,0.250000,0,0);}
.m40_c00318{transform:matrix(0.257180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257180,0.000000,0.000000,0.250000,0,0);}
.m27_c00318{transform:matrix(0.261025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261025,0.000000,0.000000,0.250000,0,0);}
.m5_c00318{transform:matrix(0.265585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265585,0.000000,0.000000,0.250000,0,0);}
.m25_c00318{transform:matrix(0.268845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268845,0.000000,0.000000,0.250000,0,0);}
.m32_c00318{transform:matrix(0.272210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272210,0.000000,0.000000,0.250000,0,0);}
.m41_c00318{transform:matrix(0.274470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274470,0.000000,0.000000,0.250000,0,0);}
.m30_c00318{transform:matrix(0.275160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275160,0.000000,0.000000,0.250000,0,0);}
.m11_c00318{transform:matrix(0.282380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282380,0.000000,0.000000,0.250000,0,0);}
.m3b_c00318{transform:matrix(0.297740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297740,0.000000,0.000000,0.250000,0,0);}
.m3c_c00318{transform:matrix(0.303440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303440,0.000000,0.000000,0.250000,0,0);}
.m4_c00318{transform:matrix(0.308640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308640,0.000000,0.000000,0.250000,0,0);}
.m6_c00318{transform:matrix(0.313210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313210,0.000000,0.000000,0.250000,0,0);}
.m8_c00318{transform:matrix(0.316425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316425,0.000000,0.000000,0.250000,0,0);}
.m31_c00318{transform:matrix(0.326740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326740,0.000000,0.000000,0.250000,0,0);}
.m1_c00318{transform:matrix(0.330335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330335,0.000000,0.000000,0.250000,0,0);}
.m3f_c00318{transform:matrix(0.344155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344155,0.000000,0.000000,0.250000,0,0);}
.mb_c00318{transform:matrix(0.363150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363150,0.000000,0.000000,0.250000,0,0);}
.m37_c00318{transform:matrix(0.363860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363860,0.000000,0.000000,0.250000,0,0);}
.m0_c00318{transform:matrix(0.399195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399195,0.000000,0.000000,0.250000,0,0);}
.m42_c00318{transform:matrix(0.400055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400055,0.000000,0.000000,0.250000,0,0);}
.m9_c00318{transform:matrix(0.415425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415425,0.000000,0.000000,0.250000,0,0);}
.m2a_c00318{transform:matrix(0.421850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421850,0.000000,0.000000,0.250000,0,0);}
.m2e_c00318{transform:matrix(0.428170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428170,0.000000,0.000000,0.250000,0,0);}
.mc_c00318{transform:matrix(0.432940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432940,0.000000,0.000000,0.250000,0,0);}
.m33_c00318{transform:matrix(0.455155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455155,0.000000,0.000000,0.250000,0,0);}
.m2d_c00318{transform:matrix(0.470200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470200,0.000000,0.000000,0.250000,0,0);}
.m10_c00318{transform:matrix(0.475855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475855,0.000000,0.000000,0.250000,0,0);}
.m7_c00318{transform:matrix(0.477980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477980,0.000000,0.000000,0.250000,0,0);}
.ma_c00318{transform:matrix(0.481155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.481155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.481155,0.000000,0.000000,0.250000,0,0);}
.m3e_c00318{transform:matrix(0.484665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484665,0.000000,0.000000,0.250000,0,0);}
.m13_c00318{transform:matrix(0.507570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507570,0.000000,0.000000,0.250000,0,0);}
.m2b_c00318{transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);}
.mf_c00318{transform:matrix(0.588695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.588695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.588695,0.000000,0.000000,0.250000,0,0);}
.m29_c00318{transform:matrix(0.714635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.714635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.714635,0.000000,0.000000,0.250000,0,0);}
.m3d_c00318{transform:matrix(1.574005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.574005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.574005,0.000000,0.000000,0.250000,0,0);}
.m28_c00318{transform:matrix(2.163690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.163690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.163690,0.000000,0.000000,0.250000,0,0);}
.m2c_c00318{transform:matrix(2.399075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.399075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.399075,0.000000,0.000000,0.250000,0,0);}
.v0_c00318{vertical-align:0.000000px;}
.ls0_c00318{letter-spacing:0.000000px;}
.sc__c00318{text-shadow:none;}
.sc0_c00318{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__c00318{-webkit-text-stroke:0px transparent;}
.sc0_c00318{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00318{word-spacing:0.000000px;}
.fc0_c00318{color:transparent;}
.fs6_c00318{font-size:30.000000px;}
.fs3_c00318{font-size:36.000000px;}
.fs0_c00318{font-size:42.000000px;}
.fs4_c00318{font-size:48.000000px;}
.fs7_c00318{font-size:60.000000px;}
.fs8_c00318{font-size:66.000000px;}
.fs1_c00318{font-size:72.000000px;}
.fs5_c00318{font-size:78.000000px;}
.fs2_c00318{font-size:84.000000px;}
.fs9_c00318{font-size:90.000000px;}
.fsa_c00318{font-size:102.000000px;}
.y0_c00318{bottom:0.000000px;}
.yb_c00318{bottom:78.840000px;}
.ya_c00318{bottom:143.499000px;}
.y9_c00318{bottom:205.594500px;}
.y8_c00318{bottom:299.031000px;}
.y17_c00318{bottom:299.254500px;}
.y18_c00318{bottom:301.261500px;}
.y7_c00318{bottom:362.610000px;}
.y6_c00318{bottom:426.319500px;}
.y5_c00318{bottom:489.918000px;}
.y4_c00318{bottom:551.610000px;}
.y16_c00318{bottom:596.790000px;}
.y14_c00318{bottom:614.695500px;}
.y13_c00318{bottom:700.617000px;}
.y15_c00318{bottom:708.480000px;}
.y12_c00318{bottom:732.940500px;}
.y3_c00318{bottom:763.830000px;}
.y2_c00318{bottom:794.883000px;}
.y11_c00318{bottom:835.224000px;}
.y1_c00318{bottom:921.358500px;}
.y10_c00318{bottom:968.670000px;}
.yf_c00318{bottom:986.467500px;}
.ye_c00318{bottom:1017.778500px;}
.yd_c00318{bottom:1049.637000px;}
.yc_c00318{bottom:1116.450000px;}
.h8_c00318{height:30.000000px;}
.h5_c00318{height:36.000000px;}
.h2_c00318{height:42.000000px;}
.h6_c00318{height:48.000000px;}
.h9_c00318{height:60.000000px;}
.ha_c00318{height:66.000000px;}
.h3_c00318{height:72.000000px;}
.h7_c00318{height:78.000000px;}
.h4_c00318{height:84.000000px;}
.hb_c00318{height:90.000000px;}
.hc_c00318{height:102.000000px;}
.h1_c00318{height:1165.500000px;}
.h0_c00318{height:1165.800000px;}
.w0_c00318{width:915.000000px;}
.x0_c00318{left:0.000000px;}
.x13_c00318{left:109.890000px;}
.x1_c00318{left:112.320000px;}
.x3_c00318{left:113.400000px;}
.x5_c00318{left:114.480000px;}
.x7_c00318{left:115.830000px;}
.x14_c00318{left:132.570000px;}
.x2_c00318{left:157.950000px;}
.x4_c00318{left:159.570000px;}
.x6_c00318{left:160.650000px;}
.x15_c00318{left:198.990000px;}
.xa_c00318{left:220.860000px;}
.x24_c00318{left:222.210000px;}
.x16_c00318{left:242.190000px;}
.x21_c00318{left:257.580000px;}
.xb_c00318{left:264.600000px;}
.x2e_c00318{left:271.350000px;}
.x17_c00318{left:286.740000px;}
.x1d_c00318{left:308.340000px;}
.x25_c00318{left:319.410000px;}
.x1b_c00318{left:321.030000px;}
.x22_c00318{left:322.380000px;}
.x2c_c00318{left:331.830000px;}
.xc_c00318{left:342.090000px;}
.x28_c00318{left:355.860000px;}
.x23_c00318{left:359.100000px;}
.x26_c00318{left:365.850000px;}
.x18_c00318{left:373.410000px;}
.x1e_c00318{left:374.490000px;}
.x2f_c00318{left:387.450000px;}
.x8_c00318{left:395.280000px;}
.x1f_c00318{left:401.760000px;}
.x9_c00318{left:418.770000px;}
.x27_c00318{left:420.120000px;}
.x20_c00318{left:423.360000px;}
.xd_c00318{left:440.100000px;}
.x30_c00318{left:442.530000px;}
.x1c_c00318{left:451.980000px;}
.x29_c00318{left:453.330000px;}
.x19_c00318{left:461.160000px;}
.xe_c00318{left:483.570000px;}
.x2a_c00318{left:486.000000px;}
.x2b_c00318{left:542.430000px;}
.x1a_c00318{left:560.790000px;}
.x31_c00318{left:563.760000px;}
.x2d_c00318{left:565.110000px;}
.xf_c00318{left:581.850000px;}
.x10_c00318{left:615.870000px;}
.x32_c00318{left:660.960000px;}
.x33_c00318{left:705.510000px;}
.x11_c00318{left:725.220000px;}
.x12_c00318{left:759.780000px;}
.x34_c00318{left:794.880000px;}
@media print{
.v0_c00318{vertical-align:0.000000pt;}
.ls0_c00318{letter-spacing:0.000000pt;}
.ws0_c00318{word-spacing:0.000000pt;}
.fs6_c00318{font-size:26.666667pt;}
.fs3_c00318{font-size:32.000000pt;}
.fs0_c00318{font-size:37.333333pt;}
.fs4_c00318{font-size:42.666667pt;}
.fs7_c00318{font-size:53.333333pt;}
.fs8_c00318{font-size:58.666667pt;}
.fs1_c00318{font-size:64.000000pt;}
.fs5_c00318{font-size:69.333333pt;}
.fs2_c00318{font-size:74.666667pt;}
.fs9_c00318{font-size:80.000000pt;}
.fsa_c00318{font-size:90.666667pt;}
.y0_c00318{bottom:0.000000pt;}
.yb_c00318{bottom:70.080000pt;}
.ya_c00318{bottom:127.554667pt;}
.y9_c00318{bottom:182.750667pt;}
.y8_c00318{bottom:265.805333pt;}
.y17_c00318{bottom:266.004000pt;}
.y18_c00318{bottom:267.788000pt;}
.y7_c00318{bottom:322.320000pt;}
.y6_c00318{bottom:378.950667pt;}
.y5_c00318{bottom:435.482667pt;}
.y4_c00318{bottom:490.320000pt;}
.y16_c00318{bottom:530.480000pt;}
.y14_c00318{bottom:546.396000pt;}
.y13_c00318{bottom:622.770667pt;}
.y15_c00318{bottom:629.760000pt;}
.y12_c00318{bottom:651.502667pt;}
.y3_c00318{bottom:678.960000pt;}
.y2_c00318{bottom:706.562667pt;}
.y11_c00318{bottom:742.421333pt;}
.y1_c00318{bottom:818.985333pt;}
.y10_c00318{bottom:861.040000pt;}
.yf_c00318{bottom:876.860000pt;}
.ye_c00318{bottom:904.692000pt;}
.yd_c00318{bottom:933.010667pt;}
.yc_c00318{bottom:992.400000pt;}
.h8_c00318{height:26.666667pt;}
.h5_c00318{height:32.000000pt;}
.h2_c00318{height:37.333333pt;}
.h6_c00318{height:42.666667pt;}
.h9_c00318{height:53.333333pt;}
.ha_c00318{height:58.666667pt;}
.h3_c00318{height:64.000000pt;}
.h7_c00318{height:69.333333pt;}
.h4_c00318{height:74.666667pt;}
.hb_c00318{height:80.000000pt;}
.hc_c00318{height:90.666667pt;}
.h1_c00318{height:1036.000000pt;}
.h0_c00318{height:1036.266667pt;}
.w0_c00318{width:813.333333pt;}
.x0_c00318{left:0.000000pt;}
.x13_c00318{left:97.680000pt;}
.x1_c00318{left:99.840000pt;}
.x3_c00318{left:100.800000pt;}
.x5_c00318{left:101.760000pt;}
.x7_c00318{left:102.960000pt;}
.x14_c00318{left:117.840000pt;}
.x2_c00318{left:140.400000pt;}
.x4_c00318{left:141.840000pt;}
.x6_c00318{left:142.800000pt;}
.x15_c00318{left:176.880000pt;}
.xa_c00318{left:196.320000pt;}
.x24_c00318{left:197.520000pt;}
.x16_c00318{left:215.280000pt;}
.x21_c00318{left:228.960000pt;}
.xb_c00318{left:235.200000pt;}
.x2e_c00318{left:241.200000pt;}
.x17_c00318{left:254.880000pt;}
.x1d_c00318{left:274.080000pt;}
.x25_c00318{left:283.920000pt;}
.x1b_c00318{left:285.360000pt;}
.x22_c00318{left:286.560000pt;}
.x2c_c00318{left:294.960000pt;}
.xc_c00318{left:304.080000pt;}
.x28_c00318{left:316.320000pt;}
.x23_c00318{left:319.200000pt;}
.x26_c00318{left:325.200000pt;}
.x18_c00318{left:331.920000pt;}
.x1e_c00318{left:332.880000pt;}
.x2f_c00318{left:344.400000pt;}
.x8_c00318{left:351.360000pt;}
.x1f_c00318{left:357.120000pt;}
.x9_c00318{left:372.240000pt;}
.x27_c00318{left:373.440000pt;}
.x20_c00318{left:376.320000pt;}
.xd_c00318{left:391.200000pt;}
.x30_c00318{left:393.360000pt;}
.x1c_c00318{left:401.760000pt;}
.x29_c00318{left:402.960000pt;}
.x19_c00318{left:409.920000pt;}
.xe_c00318{left:429.840000pt;}
.x2a_c00318{left:432.000000pt;}
.x2b_c00318{left:482.160000pt;}
.x1a_c00318{left:498.480000pt;}
.x31_c00318{left:501.120000pt;}
.x2d_c00318{left:502.320000pt;}
.xf_c00318{left:517.200000pt;}
.x10_c00318{left:547.440000pt;}
.x32_c00318{left:587.520000pt;}
.x33_c00318{left:627.120000pt;}
.x11_c00318{left:644.640000pt;}
.x12_c00318{left:675.360000pt;}
.x34_c00318{left:706.560000pt;}
}





/* 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_c00319 {
    display:none;
  }
  .loading-indicator_c00319.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00319 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_c00319 { 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_c00319" -> "#page-container .classname_c00319")
 */
.pf_c00319 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00319 { /* 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_c00319.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00319 { /* 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_c00319 { /* 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_c00319 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00319 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00319 {overflow:visible;}
  }
}
.c_c00319 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00319 { /* 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_c00319:after { /* webkit #35443 */
  content: '';
}
.t_c00319:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00319 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 */
}
.__c00319 { /* 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_c00319 { /* info for Javascript */
  display:none;
}
.l_c00319 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00319 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00319 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00319: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_c00319 {
    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_c00319.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00319.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_c00319 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00319{font-family:sans-serif;visibility:hidden;}
.sc__c00319{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00319{-webkit-text-stroke:0px transparent;}
}
.y0_c00319{bottom:0.000000px;}
.h1_c00319{height:1165.500000px;}
.h0_c00319{height:1165.800000px;}
.w0_c00319{width:915.000000px;}
.x0_c00319{left:0.000000px;}
@media print{
.y0_c00319{bottom:0.000000pt;}
.h1_c00319{height:1036.000000pt;}
.h0_c00319{height:1036.266667pt;}
.w0_c00319{width:813.333333pt;}
.x0_c00319{left:0.000000pt;}
}





/* 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_c00320 {
    display:none;
  }
  .loading-indicator_c00320.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00320 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_c00320 { 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_c00320" -> "#page-container .classname_c00320")
 */
.pf_c00320 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00320 { /* 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_c00320.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00320 { /* 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_c00320 { /* 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_c00320 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00320 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00320 {overflow:visible;}
  }
}
.c_c00320 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00320 { /* 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_c00320:after { /* webkit #35443 */
  content: '';
}
.t_c00320:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00320 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 */
}
.__c00320 { /* 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_c00320 { /* info for Javascript */
  display:none;
}
.l_c00320 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00320 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00320 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00320: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_c00320 {
    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_c00320.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00320.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_c00320 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00320{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00320;src:url('chunks/assets/font_53ec0c54e60da7c2d414b553.woff2')format("woff");}.ff1_c00320{font-family:ff1_c00320;line-height:1.000000;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;}
.m18_c00320{transform:matrix(0.010605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.010605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.010605,0.000000,0.000000,0.250000,0,0);}
.m15_c00320{transform:matrix(0.043730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.043730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.043730,0.000000,0.000000,0.250000,0,0);}
.m19_c00320{transform:matrix(0.060465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060465,0.000000,0.000000,0.250000,0,0);}
.m1b_c00320{transform:matrix(0.064515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.064515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.064515,0.000000,0.000000,0.250000,0,0);}
.m1f_c00320{transform:matrix(0.070315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.070315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.070315,0.000000,0.000000,0.250000,0,0);}
.m22_c00320{transform:matrix(0.096725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096725,0.000000,0.000000,0.250000,0,0);}
.ma4_c00320{transform:matrix(0.100777,0.000806,-0.002000,0.249992,0,0);-ms-transform:matrix(0.100777,0.000806,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.100777,0.000806,-0.002000,0.249992,0,0);}
.m2d_c00320{transform:matrix(0.122480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122480,0.000000,0.000000,0.250000,0,0);}
.m43_c00320{transform:matrix(0.127280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127280,0.000000,0.000000,0.250000,0,0);}
.m112_c00320{transform:matrix(0.132262,0.000926,-0.001750,0.249994,0,0);-ms-transform:matrix(0.132262,0.000926,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.132262,0.000926,-0.001750,0.249994,0,0);}
.m86_c00320{transform:matrix(0.134645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134645,0.000000,0.000000,0.250000,0,0);}
.m56_c00320{transform:matrix(0.135260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135260,0.000000,0.000000,0.250000,0,0);}
.m13_c00320{transform:matrix(0.142300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142300,0.000000,0.000000,0.250000,0,0);}
.m10c_c00320{transform:matrix(0.143186,0.001002,-0.001750,0.249994,0,0);-ms-transform:matrix(0.143186,0.001002,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.143186,0.001002,-0.001750,0.249994,0,0);}
.m100_c00320{transform:matrix(0.143576,0.001005,-0.001750,0.249994,0,0);-ms-transform:matrix(0.143576,0.001005,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.143576,0.001005,-0.001750,0.249994,0,0);}
.mee_c00320{transform:matrix(0.144629,0.001302,-0.002250,0.249990,0,0);-ms-transform:matrix(0.144629,0.001302,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.144629,0.001302,-0.002250,0.249990,0,0);}
.m120_c00320{transform:matrix(0.145859,0.001313,-0.002250,0.249990,0,0);-ms-transform:matrix(0.145859,0.001313,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.145859,0.001313,-0.002250,0.249990,0,0);}
.ma3_c00320{transform:matrix(0.145865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145865,0.000000,0.000000,0.250000,0,0);}
.m11b_c00320{transform:matrix(0.150420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150420,0.000000,0.000000,0.250000,0,0);}
.mef_c00320{transform:matrix(0.156199,0.001406,-0.002250,0.249990,0,0);-ms-transform:matrix(0.156199,0.001406,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.156199,0.001406,-0.002250,0.249990,0,0);}
.m69_c00320{transform:matrix(0.156205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156205,0.000000,0.000000,0.250000,0,0);}
.m10_c00320{transform:matrix(0.164250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164250,0.000000,0.000000,0.250000,0,0);}
.m3f_c00320{transform:matrix(0.170140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170140,0.000000,0.000000,0.250000,0,0);}
.m4d_c00320{transform:matrix(0.170295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170295,0.000000,0.000000,0.250000,0,0);}
.m39_c00320{transform:matrix(0.179100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179100,0.000000,0.000000,0.250000,0,0);}
.m2a_c00320{transform:matrix(0.181306,0.001269,-0.001750,0.249994,0,0);-ms-transform:matrix(0.181306,0.001269,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.181306,0.001269,-0.001750,0.249994,0,0);}
.m4c_c00320{transform:matrix(0.183620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183620,0.000000,0.000000,0.250000,0,0);}
.m9a_c00320{transform:matrix(0.185430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185430,0.000000,0.000000,0.250000,0,0);}
.m3_c00320{transform:matrix(0.185705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185705,0.000000,0.000000,0.250000,0,0);}
.m99_c00320{transform:matrix(0.185925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185925,0.000000,0.000000,0.250000,0,0);}
.m4f_c00320{transform:matrix(0.186985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186985,0.000000,0.000000,0.250000,0,0);}
.m2c_c00320{transform:matrix(0.187420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187420,0.000000,0.000000,0.250000,0,0);}
.m52_c00320{transform:matrix(0.188065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188065,0.000000,0.000000,0.250000,0,0);}
.m50_c00320{transform:matrix(0.189475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189475,0.000000,0.000000,0.250000,0,0);}
.m23_c00320{transform:matrix(0.190825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190825,0.000000,0.000000,0.250000,0,0);}
.m96_c00320{transform:matrix(0.193405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193405,0.000000,0.000000,0.250000,0,0);}
.m53_c00320{transform:matrix(0.195330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195330,0.000000,0.000000,0.250000,0,0);}
.m94_c00320{transform:matrix(0.195545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195545,0.000000,0.000000,0.250000,0,0);}
.m3e_c00320{transform:matrix(0.200215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200215,0.000000,0.000000,0.250000,0,0);}
.mbd_c00320{transform:matrix(0.200289,0.001602,-0.002000,0.249992,0,0);-ms-transform:matrix(0.200289,0.001602,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.200289,0.001602,-0.002000,0.249992,0,0);}
.md0_c00320{transform:matrix(0.200357,0.001002,-0.001250,0.249997,0,0);-ms-transform:matrix(0.200357,0.001002,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.200357,0.001002,-0.001250,0.249997,0,0);}
.m74_c00320{transform:matrix(0.200880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200880,0.000000,0.000000,0.250000,0,0);}
.m3c_c00320{transform:matrix(0.201030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201030,0.000000,0.000000,0.250000,0,0);}
.m57_c00320{transform:matrix(0.201075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201075,0.000000,0.000000,0.250000,0,0);}
.m8f_c00320{transform:matrix(0.202870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202870,0.000000,0.000000,0.250000,0,0);}
.m36_c00320{transform:matrix(0.202895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202895,0.000000,0.000000,0.250000,0,0);}
.m126_c00320{transform:matrix(0.203662,0.001833,-0.002250,0.249990,0,0);-ms-transform:matrix(0.203662,0.001833,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.203662,0.001833,-0.002250,0.249990,0,0);}
.m9c_c00320{transform:matrix(0.205110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205110,0.000000,0.000000,0.250000,0,0);}
.m12d_c00320{transform:matrix(0.205230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205230,0.000000,0.000000,0.250000,0,0);}
.m59_c00320{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.mc0_c00320{transform:matrix(0.206088,0.001649,-0.002000,0.249992,0,0);-ms-transform:matrix(0.206088,0.001649,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.206088,0.001649,-0.002000,0.249992,0,0);}
.m71_c00320{transform:matrix(0.206830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206830,0.000000,0.000000,0.250000,0,0);}
.m76_c00320{transform:matrix(0.206850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206850,0.000000,0.000000,0.250000,0,0);}
.m49_c00320{transform:matrix(0.207185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207185,0.000000,0.000000,0.250000,0,0);}
.mb8_c00320{transform:matrix(0.207418,0.001659,-0.002000,0.249992,0,0);-ms-transform:matrix(0.207418,0.001659,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.207418,0.001659,-0.002000,0.249992,0,0);}
.m42_c00320{transform:matrix(0.207460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207460,0.000000,0.000000,0.250000,0,0);}
.m4a_c00320{transform:matrix(0.208215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208215,0.000000,0.000000,0.250000,0,0);}
.mfe_c00320{transform:matrix(0.208347,0.001875,-0.002250,0.249990,0,0);-ms-transform:matrix(0.208347,0.001875,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.208347,0.001875,-0.002250,0.249990,0,0);}
.mb9_c00320{transform:matrix(0.208703,0.001670,-0.002000,0.249992,0,0);-ms-transform:matrix(0.208703,0.001670,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.208703,0.001670,-0.002000,0.249992,0,0);}
.m51_c00320{transform:matrix(0.210310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210310,0.000000,0.000000,0.250000,0,0);}
.m58_c00320{transform:matrix(0.211010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211010,0.000000,0.000000,0.250000,0,0);}
.m2f_c00320{transform:matrix(0.212175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212175,0.000000,0.000000,0.250000,0,0);}
.m35_c00320{transform:matrix(0.212570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212570,0.000000,0.000000,0.250000,0,0);}
.m73_c00320{transform:matrix(0.212640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212640,0.000000,0.000000,0.250000,0,0);}
.m4b_c00320{transform:matrix(0.213395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213395,0.000000,0.000000,0.250000,0,0);}
.m46_c00320{transform:matrix(0.213865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213865,0.000000,0.000000,0.250000,0,0);}
.m111_c00320{transform:matrix(0.214450,0.001501,-0.001750,0.249994,0,0);-ms-transform:matrix(0.214450,0.001501,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.214450,0.001501,-0.001750,0.249994,0,0);}
.mac_c00320{transform:matrix(0.214703,0.001718,-0.002000,0.249992,0,0);-ms-transform:matrix(0.214703,0.001718,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.214703,0.001718,-0.002000,0.249992,0,0);}
.mbc_c00320{transform:matrix(0.214953,0.001720,-0.002000,0.249992,0,0);-ms-transform:matrix(0.214953,0.001720,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.214953,0.001720,-0.002000,0.249992,0,0);}
.mb3_c00320{transform:matrix(0.215053,0.001720,-0.002000,0.249992,0,0);-ms-transform:matrix(0.215053,0.001720,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.215053,0.001720,-0.002000,0.249992,0,0);}
.m33_c00320{transform:matrix(0.215060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215060,0.000000,0.000000,0.250000,0,0);}
.m55_c00320{transform:matrix(0.217255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217255,0.000000,0.000000,0.250000,0,0);}
.m8e_c00320{transform:matrix(0.218625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218625,0.000000,0.000000,0.250000,0,0);}
.m5b_c00320{transform:matrix(0.218890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218890,0.000000,0.000000,0.250000,0,0);}
.m28_c00320{transform:matrix(0.218935,0.001533,-0.001750,0.249994,0,0);-ms-transform:matrix(0.218935,0.001533,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.218935,0.001533,-0.001750,0.249994,0,0);}
.m3d_c00320{transform:matrix(0.219065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219065,0.000000,0.000000,0.250000,0,0);}
.m109_c00320{transform:matrix(0.219270,0.001535,-0.001750,0.249994,0,0);-ms-transform:matrix(0.219270,0.001535,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.219270,0.001535,-0.001750,0.249994,0,0);}
.mf_c00320{transform:matrix(0.219840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219840,0.000000,0.000000,0.250000,0,0);}
.m84_c00320{transform:matrix(0.220255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220255,0.000000,0.000000,0.250000,0,0);}
.mcb_c00320{transform:matrix(0.220476,0.001323,-0.001500,0.249996,0,0);-ms-transform:matrix(0.220476,0.001323,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.220476,0.001323,-0.001500,0.249996,0,0);}
.m72_c00320{transform:matrix(0.221085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221085,0.000000,0.000000,0.250000,0,0);}
.m4e_c00320{transform:matrix(0.221280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221280,0.000000,0.000000,0.250000,0,0);}
.mc9_c00320{transform:matrix(0.221371,0.001328,-0.001500,0.249996,0,0);-ms-transform:matrix(0.221371,0.001328,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.221371,0.001328,-0.001500,0.249996,0,0);}
.m25_c00320{transform:matrix(0.221805,0.001553,-0.001750,0.249994,0,0);-ms-transform:matrix(0.221805,0.001553,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.221805,0.001553,-0.001750,0.249994,0,0);}
.mae_c00320{transform:matrix(0.222603,0.001781,-0.002000,0.249992,0,0);-ms-transform:matrix(0.222603,0.001781,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.222603,0.001781,-0.002000,0.249992,0,0);}
.md3_c00320{transform:matrix(0.223147,0.001116,-0.001250,0.249997,0,0);-ms-transform:matrix(0.223147,0.001116,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.223147,0.001116,-0.001250,0.249997,0,0);}
.m123_c00320{transform:matrix(0.224061,0.002017,-0.002250,0.249990,0,0);-ms-transform:matrix(0.224061,0.002017,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.224061,0.002017,-0.002250,0.249990,0,0);}
.mce_c00320{transform:matrix(0.224067,0.001120,-0.001250,0.249997,0,0);-ms-transform:matrix(0.224067,0.001120,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.224067,0.001120,-0.001250,0.249997,0,0);}
.m10a_c00320{transform:matrix(0.224729,0.001573,-0.001750,0.249994,0,0);-ms-transform:matrix(0.224729,0.001573,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.224729,0.001573,-0.001750,0.249994,0,0);}
.m40_c00320{transform:matrix(0.225860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225860,0.000000,0.000000,0.250000,0,0);}
.mbe_c00320{transform:matrix(0.226073,0.001809,-0.002000,0.249992,0,0);-ms-transform:matrix(0.226073,0.001809,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.226073,0.001809,-0.002000,0.249992,0,0);}
.m115_c00320{transform:matrix(0.226889,0.001588,-0.001750,0.249994,0,0);-ms-transform:matrix(0.226889,0.001588,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.226889,0.001588,-0.001750,0.249994,0,0);}
.m93_c00320{transform:matrix(0.227710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227710,0.000000,0.000000,0.250000,0,0);}
.m11f_c00320{transform:matrix(0.228126,0.002053,-0.002250,0.249990,0,0);-ms-transform:matrix(0.228126,0.002053,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.228126,0.002053,-0.002250,0.249990,0,0);}
.mc1_c00320{transform:matrix(0.228193,0.001826,-0.002000,0.249992,0,0);-ms-transform:matrix(0.228193,0.001826,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.228193,0.001826,-0.002000,0.249992,0,0);}
.m89_c00320{transform:matrix(0.229125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229125,0.000000,0.000000,0.250000,0,0);}
.m48_c00320{transform:matrix(0.229155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229155,0.000000,0.000000,0.250000,0,0);}
.m38_c00320{transform:matrix(0.230380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230380,0.000000,0.000000,0.250000,0,0);}
.m27_c00320{transform:matrix(0.230629,0.001614,-0.001750,0.249994,0,0);-ms-transform:matrix(0.230629,0.001614,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.230629,0.001614,-0.001750,0.249994,0,0);}
.m97_c00320{transform:matrix(0.230730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230730,0.000000,0.000000,0.250000,0,0);}
.m113_c00320{transform:matrix(0.231239,0.001619,-0.001750,0.249994,0,0);-ms-transform:matrix(0.231239,0.001619,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.231239,0.001619,-0.001750,0.249994,0,0);}
.mcf_c00320{transform:matrix(0.231627,0.001158,-0.001250,0.249997,0,0);-ms-transform:matrix(0.231627,0.001158,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.231627,0.001158,-0.001250,0.249997,0,0);}
.mb6_c00320{transform:matrix(0.232008,0.001856,-0.002000,0.249992,0,0);-ms-transform:matrix(0.232008,0.001856,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.232008,0.001856,-0.002000,0.249992,0,0);}
.m45_c00320{transform:matrix(0.233065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233065,0.000000,0.000000,0.250000,0,0);}
.m10e_c00320{transform:matrix(0.233154,0.001632,-0.001750,0.249994,0,0);-ms-transform:matrix(0.233154,0.001632,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.233154,0.001632,-0.001750,0.249994,0,0);}
.m102_c00320{transform:matrix(0.233729,0.001636,-0.001750,0.249994,0,0);-ms-transform:matrix(0.233729,0.001636,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.233729,0.001636,-0.001750,0.249994,0,0);}
.m5c_c00320{transform:matrix(0.234015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234015,0.000000,0.000000,0.250000,0,0);}
.m8c_c00320{transform:matrix(0.234800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234800,0.000000,0.000000,0.250000,0,0);}
.mb7_c00320{transform:matrix(0.234977,0.001880,-0.002000,0.249992,0,0);-ms-transform:matrix(0.234977,0.001880,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.234977,0.001880,-0.002000,0.249992,0,0);}
.m9b_c00320{transform:matrix(0.234985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234985,0.000000,0.000000,0.250000,0,0);}
.m75_c00320{transform:matrix(0.235800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235800,0.000000,0.000000,0.250000,0,0);}
.m3b_c00320{transform:matrix(0.236090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236090,0.000000,0.000000,0.250000,0,0);}
.m95_c00320{transform:matrix(0.236550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236550,0.000000,0.000000,0.250000,0,0);}
.m2b_c00320{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.mba_c00320{transform:matrix(0.236782,0.001894,-0.002000,0.249992,0,0);-ms-transform:matrix(0.236782,0.001894,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.236782,0.001894,-0.002000,0.249992,0,0);}
.m8d_c00320{transform:matrix(0.237035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237035,0.000000,0.000000,0.250000,0,0);}
.m3a_c00320{transform:matrix(0.237290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237290,0.000000,0.000000,0.250000,0,0);}
.m98_c00320{transform:matrix(0.237905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237905,0.000000,0.000000,0.250000,0,0);}
.mbb_c00320{transform:matrix(0.238022,0.001904,-0.002000,0.249992,0,0);-ms-transform:matrix(0.238022,0.001904,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.238022,0.001904,-0.002000,0.249992,0,0);}
.md6_c00320{transform:matrix(0.238447,0.001192,-0.001250,0.249997,0,0);-ms-transform:matrix(0.238447,0.001192,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.238447,0.001192,-0.001250,0.249997,0,0);}
.me0_c00320{transform:matrix(0.238527,0.001908,-0.002000,0.249992,0,0);-ms-transform:matrix(0.238527,0.001908,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.238527,0.001908,-0.002000,0.249992,0,0);}
.m34_c00320{transform:matrix(0.239285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239285,0.000000,0.000000,0.250000,0,0);}
.m12a_c00320{transform:matrix(0.239300,0.002154,-0.002250,0.249990,0,0);-ms-transform:matrix(0.239300,0.002154,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.239300,0.002154,-0.002250,0.249990,0,0);}
.me8_c00320{transform:matrix(0.239775,0.002158,-0.002250,0.249990,0,0);-ms-transform:matrix(0.239775,0.002158,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.239775,0.002158,-0.002250,0.249990,0,0);}
.m6d_c00320{transform:matrix(0.239785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239785,0.000000,0.000000,0.250000,0,0);}
.md4_c00320{transform:matrix(0.239827,0.001199,-0.001250,0.249997,0,0);-ms-transform:matrix(0.239827,0.001199,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.239827,0.001199,-0.001250,0.249997,0,0);}
.m8b_c00320{transform:matrix(0.240070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240070,0.000000,0.000000,0.250000,0,0);}
.m10f_c00320{transform:matrix(0.240144,0.001681,-0.001750,0.249994,0,0);-ms-transform:matrix(0.240144,0.001681,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.240144,0.001681,-0.001750,0.249994,0,0);}
.mb4_c00320{transform:matrix(0.240627,0.001925,-0.002000,0.249992,0,0);-ms-transform:matrix(0.240627,0.001925,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.240627,0.001925,-0.002000,0.249992,0,0);}
.m9f_c00320{transform:matrix(0.241615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241615,0.000000,0.000000,0.250000,0,0);}
.m122_c00320{transform:matrix(0.241985,0.002178,-0.002250,0.249990,0,0);-ms-transform:matrix(0.241985,0.002178,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.241985,0.002178,-0.002250,0.249990,0,0);}
.mf2_c00320{transform:matrix(0.242040,0.002178,-0.002250,0.249990,0,0);-ms-transform:matrix(0.242040,0.002178,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.242040,0.002178,-0.002250,0.249990,0,0);}
.md1_c00320{transform:matrix(0.242357,0.001212,-0.001250,0.249997,0,0);-ms-transform:matrix(0.242357,0.001212,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.242357,0.001212,-0.001250,0.249997,0,0);}
.m106_c00320{transform:matrix(0.242539,0.001698,-0.001750,0.249994,0,0);-ms-transform:matrix(0.242539,0.001698,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.242539,0.001698,-0.001750,0.249994,0,0);}
.ma1_c00320{transform:matrix(0.242545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242545,0.000000,0.000000,0.250000,0,0);}
.md8_c00320{transform:matrix(0.242697,0.001942,-0.002000,0.249992,0,0);-ms-transform:matrix(0.242697,0.001942,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.242697,0.001942,-0.002000,0.249992,0,0);}
.m2_c00320{transform:matrix(0.243075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243075,0.000000,0.000000,0.250000,0,0);}
.mdd_c00320{transform:matrix(0.243387,0.001947,-0.002000,0.249992,0,0);-ms-transform:matrix(0.243387,0.001947,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.243387,0.001947,-0.002000,0.249992,0,0);}
.mcc_c00320{transform:matrix(0.243577,0.001218,-0.001250,0.249997,0,0);-ms-transform:matrix(0.243577,0.001218,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.243577,0.001218,-0.001250,0.249997,0,0);}
.m30_c00320{transform:matrix(0.244260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244260,0.000000,0.000000,0.250000,0,0);}
.m67_c00320{transform:matrix(0.244300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244300,0.000000,0.000000,0.250000,0,0);}
.m116_c00320{transform:matrix(0.244389,0.001711,-0.001750,0.249994,0,0);-ms-transform:matrix(0.244389,0.001711,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.244389,0.001711,-0.001750,0.249994,0,0);}
.mbf_c00320{transform:matrix(0.244997,0.001960,-0.002000,0.249992,0,0);-ms-transform:matrix(0.244997,0.001960,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.244997,0.001960,-0.002000,0.249992,0,0);}
.m31_c00320{transform:matrix(0.245085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245085,0.000000,0.000000,0.250000,0,0);}
.m91_c00320{transform:matrix(0.246240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246240,0.000000,0.000000,0.250000,0,0);}
.m26_c00320{transform:matrix(0.246289,0.001724,-0.001750,0.249994,0,0);-ms-transform:matrix(0.246289,0.001724,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.246289,0.001724,-0.001750,0.249994,0,0);}
.m2e_c00320{transform:matrix(0.246305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246305,0.000000,0.000000,0.250000,0,0);}
.mcd_c00320{transform:matrix(0.246437,0.001232,-0.001250,0.249997,0,0);-ms-transform:matrix(0.246437,0.001232,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.246437,0.001232,-0.001250,0.249997,0,0);}
.m81_c00320{transform:matrix(0.247135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247135,0.000000,0.000000,0.250000,0,0);}
.m10b_c00320{transform:matrix(0.247204,0.001730,-0.001750,0.249994,0,0);-ms-transform:matrix(0.247204,0.001730,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.247204,0.001730,-0.001750,0.249994,0,0);}
.m5e_c00320{transform:matrix(0.247425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247425,0.000000,0.000000,0.250000,0,0);}
.mc2_c00320{transform:matrix(0.247452,0.001980,-0.002000,0.249992,0,0);-ms-transform:matrix(0.247452,0.001980,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.247452,0.001980,-0.002000,0.249992,0,0);}
.m37_c00320{transform:matrix(0.247930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247930,0.000000,0.000000,0.250000,0,0);}
.m32_c00320{transform:matrix(0.248525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248525,0.000000,0.000000,0.250000,0,0);}
.mb1_c00320{transform:matrix(0.249032,0.001992,-0.002000,0.249992,0,0);-ms-transform:matrix(0.249032,0.001992,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.249032,0.001992,-0.002000,0.249992,0,0);}
.m8a_c00320{transform:matrix(0.249110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249110,0.000000,0.000000,0.250000,0,0);}
.m127_c00320{transform:matrix(0.249520,0.002246,-0.002250,0.249990,0,0);-ms-transform:matrix(0.249520,0.002246,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.249520,0.002246,-0.002250,0.249990,0,0);}
.m110_c00320{transform:matrix(0.249549,0.001747,-0.001750,0.249994,0,0);-ms-transform:matrix(0.249549,0.001747,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.249549,0.001747,-0.001750,0.249994,0,0);}
.ma9_c00320{transform:matrix(0.249752,0.001998,-0.002000,0.249992,0,0);-ms-transform:matrix(0.249752,0.001998,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.249752,0.001998,-0.002000,0.249992,0,0);}
.mc6_c00320{transform:matrix(0.250255,0.001502,-0.001500,0.249996,0,0);-ms-transform:matrix(0.250255,0.001502,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.250255,0.001502,-0.001500,0.249996,0,0);}
.mdf_c00320{transform:matrix(0.250382,0.002003,-0.002000,0.249992,0,0);-ms-transform:matrix(0.250382,0.002003,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.250382,0.002003,-0.002000,0.249992,0,0);}
.m103_c00320{transform:matrix(0.250454,0.001753,-0.001750,0.249994,0,0);-ms-transform:matrix(0.250454,0.001753,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.250454,0.001753,-0.001750,0.249994,0,0);}
.mb2_c00320{transform:matrix(0.250507,0.002004,-0.002000,0.249992,0,0);-ms-transform:matrix(0.250507,0.002004,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.250507,0.002004,-0.002000,0.249992,0,0);}
.m10d_c00320{transform:matrix(0.250574,0.001754,-0.001750,0.249994,0,0);-ms-transform:matrix(0.250574,0.001754,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.250574,0.001754,-0.001750,0.249994,0,0);}
.md5_c00320{transform:matrix(0.250692,0.001253,-0.001250,0.249997,0,0);-ms-transform:matrix(0.250692,0.001253,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.250692,0.001253,-0.001250,0.249997,0,0);}
.mda_c00320{transform:matrix(0.250717,0.002006,-0.002000,0.249992,0,0);-ms-transform:matrix(0.250717,0.002006,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.250717,0.002006,-0.002000,0.249992,0,0);}
.mca_c00320{transform:matrix(0.250720,0.001504,-0.001500,0.249996,0,0);-ms-transform:matrix(0.250720,0.001504,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.250720,0.001504,-0.001500,0.249996,0,0);}
.me1_c00320{transform:matrix(0.251052,0.002008,-0.002000,0.249992,0,0);-ms-transform:matrix(0.251052,0.002008,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.251052,0.002008,-0.002000,0.249992,0,0);}
.mdb_c00320{transform:matrix(0.251117,0.002009,-0.002000,0.249992,0,0);-ms-transform:matrix(0.251117,0.002009,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.251117,0.002009,-0.002000,0.249992,0,0);}
.mc4_c00320{transform:matrix(0.251395,0.001508,-0.001500,0.249996,0,0);-ms-transform:matrix(0.251395,0.001508,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.251395,0.001508,-0.001500,0.249996,0,0);}
.m65_c00320{transform:matrix(0.252070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252070,0.000000,0.000000,0.250000,0,0);}
.m7f_c00320{transform:matrix(0.253040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253040,0.000000,0.000000,0.250000,0,0);}
.m29_c00320{transform:matrix(0.253084,0.001772,-0.001750,0.249994,0,0);-ms-transform:matrix(0.253084,0.001772,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.253084,0.001772,-0.001750,0.249994,0,0);}
.mc5_c00320{transform:matrix(0.253910,0.001523,-0.001500,0.249996,0,0);-ms-transform:matrix(0.253910,0.001523,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.253910,0.001523,-0.001500,0.249996,0,0);}
.m60_c00320{transform:matrix(0.254165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254165,0.000000,0.000000,0.250000,0,0);}
.ma7_c00320{transform:matrix(0.254182,0.002033,-0.002000,0.249992,0,0);-ms-transform:matrix(0.254182,0.002033,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.254182,0.002033,-0.002000,0.249992,0,0);}
.m88_c00320{transform:matrix(0.254740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254740,0.000000,0.000000,0.250000,0,0);}
.m6c_c00320{transform:matrix(0.254980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254980,0.000000,0.000000,0.250000,0,0);}
.ma6_c00320{transform:matrix(0.255197,0.002042,-0.002000,0.249992,0,0);-ms-transform:matrix(0.255197,0.002042,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.255197,0.002042,-0.002000,0.249992,0,0);}
.maf_c00320{transform:matrix(0.255302,0.002042,-0.002000,0.249992,0,0);-ms-transform:matrix(0.255302,0.002042,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.255302,0.002042,-0.002000,0.249992,0,0);}
.m114_c00320{transform:matrix(0.255429,0.001788,-0.001750,0.249994,0,0);-ms-transform:matrix(0.255429,0.001788,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.255429,0.001788,-0.001750,0.249994,0,0);}
.m41_c00320{transform:matrix(0.255545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255545,0.000000,0.000000,0.250000,0,0);}
.m7_c00320{transform:matrix(0.256675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256675,0.000000,0.000000,0.250000,0,0);}
.m44_c00320{transform:matrix(0.257430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257430,0.000000,0.000000,0.250000,0,0);}
.mf1_c00320{transform:matrix(0.257930,0.002321,-0.002250,0.249990,0,0);-ms-transform:matrix(0.257930,0.002321,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.257930,0.002321,-0.002250,0.249990,0,0);}
.ma_c00320{transform:matrix(0.258110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258110,0.000000,0.000000,0.250000,0,0);}
.m79_c00320{transform:matrix(0.258745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258745,0.000000,0.000000,0.250000,0,0);}
.m83_c00320{transform:matrix(0.258950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258950,0.000000,0.000000,0.250000,0,0);}
.m9d_c00320{transform:matrix(0.259185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259185,0.000000,0.000000,0.250000,0,0);}
.m47_c00320{transform:matrix(0.259455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259455,0.000000,0.000000,0.250000,0,0);}
.md2_c00320{transform:matrix(0.260057,0.001300,-0.001250,0.249997,0,0);-ms-transform:matrix(0.260057,0.001300,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.260057,0.001300,-0.001250,0.249997,0,0);}
.m119_c00320{transform:matrix(0.260295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260295,0.000000,0.000000,0.250000,0,0);}
.m101_c00320{transform:matrix(0.260359,0.001823,-0.001750,0.249994,0,0);-ms-transform:matrix(0.260359,0.001823,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.260359,0.001823,-0.001750,0.249994,0,0);}
.md7_c00320{transform:matrix(0.260427,0.002083,-0.002000,0.249992,0,0);-ms-transform:matrix(0.260427,0.002083,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.260427,0.002083,-0.002000,0.249992,0,0);}
.mb5_c00320{transform:matrix(0.260477,0.002084,-0.002000,0.249992,0,0);-ms-transform:matrix(0.260477,0.002084,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.260477,0.002084,-0.002000,0.249992,0,0);}
.mfc_c00320{transform:matrix(0.261709,0.002355,-0.002250,0.249990,0,0);-ms-transform:matrix(0.261709,0.002355,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.261709,0.002355,-0.002250,0.249990,0,0);}
.ma0_c00320{transform:matrix(0.262290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262290,0.000000,0.000000,0.250000,0,0);}
.m125_c00320{transform:matrix(0.262754,0.002365,-0.002250,0.249990,0,0);-ms-transform:matrix(0.262754,0.002365,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.262754,0.002365,-0.002250,0.249990,0,0);}
.m11c_c00320{transform:matrix(0.263119,0.002368,-0.002250,0.249990,0,0);-ms-transform:matrix(0.263119,0.002368,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.263119,0.002368,-0.002250,0.249990,0,0);}
.mf9_c00320{transform:matrix(0.263249,0.002369,-0.002250,0.249990,0,0);-ms-transform:matrix(0.263249,0.002369,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.263249,0.002369,-0.002250,0.249990,0,0);}
.m105_c00320{transform:matrix(0.263474,0.001844,-0.001750,0.249994,0,0);-ms-transform:matrix(0.263474,0.001844,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.263474,0.001844,-0.001750,0.249994,0,0);}
.m90_c00320{transform:matrix(0.263810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263810,0.000000,0.000000,0.250000,0,0);}
.m63_c00320{transform:matrix(0.263995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263995,0.000000,0.000000,0.250000,0,0);}
.m108_c00320{transform:matrix(0.264569,0.001852,-0.001750,0.249994,0,0);-ms-transform:matrix(0.264569,0.001852,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.264569,0.001852,-0.001750,0.249994,0,0);}
.m12c_c00320{transform:matrix(0.265114,0.002386,-0.002250,0.249990,0,0);-ms-transform:matrix(0.265114,0.002386,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.265114,0.002386,-0.002250,0.249990,0,0);}
.m20_c00320{transform:matrix(0.265375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265375,0.000000,0.000000,0.250000,0,0);}
.m11d_c00320{transform:matrix(0.265454,0.002389,-0.002250,0.249990,0,0);-ms-transform:matrix(0.265454,0.002389,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.265454,0.002389,-0.002250,0.249990,0,0);}
.m7e_c00320{transform:matrix(0.267165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267165,0.000000,0.000000,0.250000,0,0);}
.m68_c00320{transform:matrix(0.267495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267495,0.000000,0.000000,0.250000,0,0);}
.mab_c00320{transform:matrix(0.267746,0.002142,-0.002000,0.249992,0,0);-ms-transform:matrix(0.267746,0.002142,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.267746,0.002142,-0.002000,0.249992,0,0);}
.m9e_c00320{transform:matrix(0.267750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267750,0.000000,0.000000,0.250000,0,0);}
.m92_c00320{transform:matrix(0.268115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268115,0.000000,0.000000,0.250000,0,0);}
.ma2_c00320{transform:matrix(0.268125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268125,0.000000,0.000000,0.250000,0,0);}
.m121_c00320{transform:matrix(0.268149,0.002413,-0.002250,0.249990,0,0);-ms-transform:matrix(0.268149,0.002413,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.268149,0.002413,-0.002250,0.249990,0,0);}
.mb0_c00320{transform:matrix(0.269471,0.002156,-0.002000,0.249992,0,0);-ms-transform:matrix(0.269471,0.002156,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.269471,0.002156,-0.002000,0.249992,0,0);}
.mfa_c00320{transform:matrix(0.269749,0.002428,-0.002250,0.249990,0,0);-ms-transform:matrix(0.269749,0.002428,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.269749,0.002428,-0.002250,0.249990,0,0);}
.mc3_c00320{transform:matrix(0.269920,0.001620,-0.001500,0.249996,0,0);-ms-transform:matrix(0.269920,0.001620,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.269920,0.001620,-0.001500,0.249996,0,0);}
.m82_c00320{transform:matrix(0.270025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270025,0.000000,0.000000,0.250000,0,0);}
.m128_c00320{transform:matrix(0.270644,0.002436,-0.002250,0.249990,0,0);-ms-transform:matrix(0.270644,0.002436,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.270644,0.002436,-0.002250,0.249990,0,0);}
.mdc_c00320{transform:matrix(0.270656,0.002165,-0.002000,0.249992,0,0);-ms-transform:matrix(0.270656,0.002165,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.270656,0.002165,-0.002000,0.249992,0,0);}
.m5d_c00320{transform:matrix(0.270720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270720,0.000000,0.000000,0.250000,0,0);}
.m11e_c00320{transform:matrix(0.271264,0.002441,-0.002250,0.249990,0,0);-ms-transform:matrix(0.271264,0.002441,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.271264,0.002441,-0.002250,0.249990,0,0);}
.m5a_c00320{transform:matrix(0.271525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271525,0.000000,0.000000,0.250000,0,0);}
.m104_c00320{transform:matrix(0.271578,0.001901,-0.001750,0.249994,0,0);-ms-transform:matrix(0.271578,0.001901,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.271578,0.001901,-0.001750,0.249994,0,0);}
.mf4_c00320{transform:matrix(0.271674,0.002445,-0.002250,0.249990,0,0);-ms-transform:matrix(0.271674,0.002445,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.271674,0.002445,-0.002250,0.249990,0,0);}
.m54_c00320{transform:matrix(0.272280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272280,0.000000,0.000000,0.250000,0,0);}
.ma5_c00320{transform:matrix(0.272351,0.002179,-0.002000,0.249992,0,0);-ms-transform:matrix(0.272351,0.002179,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.272351,0.002179,-0.002000,0.249992,0,0);}
.mad_c00320{transform:matrix(0.272681,0.002181,-0.002000,0.249992,0,0);-ms-transform:matrix(0.272681,0.002181,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.272681,0.002181,-0.002000,0.249992,0,0);}
.m124_c00320{transform:matrix(0.272784,0.002455,-0.002250,0.249990,0,0);-ms-transform:matrix(0.272784,0.002455,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.272784,0.002455,-0.002250,0.249990,0,0);}
.mde_c00320{transform:matrix(0.273086,0.002185,-0.002000,0.249992,0,0);-ms-transform:matrix(0.273086,0.002185,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.273086,0.002185,-0.002000,0.249992,0,0);}
.m87_c00320{transform:matrix(0.273160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273160,0.000000,0.000000,0.250000,0,0);}
.mc7_c00320{transform:matrix(0.274140,0.001645,-0.001500,0.249996,0,0);-ms-transform:matrix(0.274140,0.001645,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.274140,0.001645,-0.001500,0.249996,0,0);}
.mc8_c00320{transform:matrix(0.274420,0.001647,-0.001500,0.249996,0,0);-ms-transform:matrix(0.274420,0.001647,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.274420,0.001647,-0.001500,0.249996,0,0);}
.m107_c00320{transform:matrix(0.274463,0.001921,-0.001750,0.249994,0,0);-ms-transform:matrix(0.274463,0.001921,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.274463,0.001921,-0.001750,0.249994,0,0);}
.m12b_c00320{transform:matrix(0.274949,0.002475,-0.002250,0.249990,0,0);-ms-transform:matrix(0.274949,0.002475,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.274949,0.002475,-0.002250,0.249990,0,0);}
.md9_c00320{transform:matrix(0.275066,0.002201,-0.002000,0.249992,0,0);-ms-transform:matrix(0.275066,0.002201,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.275066,0.002201,-0.002000,0.249992,0,0);}
.med_c00320{transform:matrix(0.275544,0.002480,-0.002250,0.249990,0,0);-ms-transform:matrix(0.275544,0.002480,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.275544,0.002480,-0.002250,0.249990,0,0);}
.maa_c00320{transform:matrix(0.275576,0.002205,-0.002000,0.249992,0,0);-ms-transform:matrix(0.275576,0.002205,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.275576,0.002205,-0.002000,0.249992,0,0);}
.mf8_c00320{transform:matrix(0.275854,0.002483,-0.002250,0.249990,0,0);-ms-transform:matrix(0.275854,0.002483,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.275854,0.002483,-0.002250,0.249990,0,0);}
.mf5_c00320{transform:matrix(0.276844,0.002492,-0.002250,0.249990,0,0);-ms-transform:matrix(0.276844,0.002492,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.276844,0.002492,-0.002250,0.249990,0,0);}
.m6e_c00320{transform:matrix(0.277935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277935,0.000000,0.000000,0.250000,0,0);}
.ma8_c00320{transform:matrix(0.278671,0.002229,-0.002000,0.249992,0,0);-ms-transform:matrix(0.278671,0.002229,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.278671,0.002229,-0.002000,0.249992,0,0);}
.m7b_c00320{transform:matrix(0.279155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279155,0.000000,0.000000,0.250000,0,0);}
.m1a_c00320{transform:matrix(0.279510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279510,0.000000,0.000000,0.250000,0,0);}
.mfd_c00320{transform:matrix(0.280169,0.002522,-0.002250,0.249990,0,0);-ms-transform:matrix(0.280169,0.002522,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.280169,0.002522,-0.002250,0.249990,0,0);}
.m24_c00320{transform:matrix(0.282108,0.001975,-0.001750,0.249994,0,0);-ms-transform:matrix(0.282108,0.001975,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.282108,0.001975,-0.001750,0.249994,0,0);}
.m85_c00320{transform:matrix(0.282335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282335,0.000000,0.000000,0.250000,0,0);}
.m62_c00320{transform:matrix(0.283235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283235,0.000000,0.000000,0.250000,0,0);}
.m61_c00320{transform:matrix(0.284100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284100,0.000000,0.000000,0.250000,0,0);}
.m7c_c00320{transform:matrix(0.285640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285640,0.000000,0.000000,0.250000,0,0);}
.m80_c00320{transform:matrix(0.286135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286135,0.000000,0.000000,0.250000,0,0);}
.m129_c00320{transform:matrix(0.288723,0.002599,-0.002250,0.249990,0,0);-ms-transform:matrix(0.288723,0.002599,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.288723,0.002599,-0.002250,0.249990,0,0);}
.mf6_c00320{transform:matrix(0.289238,0.002603,-0.002250,0.249990,0,0);-ms-transform:matrix(0.289238,0.002603,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.289238,0.002603,-0.002250,0.249990,0,0);}
.m6f_c00320{transform:matrix(0.289630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289630,0.000000,0.000000,0.250000,0,0);}
.mf3_c00320{transform:matrix(0.290018,0.002610,-0.002250,0.249990,0,0);-ms-transform:matrix(0.290018,0.002610,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.290018,0.002610,-0.002250,0.249990,0,0);}
.mfb_c00320{transform:matrix(0.290818,0.002617,-0.002250,0.249990,0,0);-ms-transform:matrix(0.290818,0.002617,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.290818,0.002617,-0.002250,0.249990,0,0);}
.me2_c00320{transform:matrix(0.291508,0.002624,-0.002250,0.249990,0,0);-ms-transform:matrix(0.291508,0.002624,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.291508,0.002624,-0.002250,0.249990,0,0);}
.m5f_c00320{transform:matrix(0.291835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291835,0.000000,0.000000,0.250000,0,0);}
.m7a_c00320{transform:matrix(0.292945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292945,0.000000,0.000000,0.250000,0,0);}
.me4_c00320{transform:matrix(0.293258,0.002639,-0.002250,0.249990,0,0);-ms-transform:matrix(0.293258,0.002639,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.293258,0.002639,-0.002250,0.249990,0,0);}
.me9_c00320{transform:matrix(0.295193,0.002657,-0.002250,0.249990,0,0);-ms-transform:matrix(0.295193,0.002657,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.295193,0.002657,-0.002250,0.249990,0,0);}
.me3_c00320{transform:matrix(0.295358,0.002658,-0.002250,0.249990,0,0);-ms-transform:matrix(0.295358,0.002658,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.295358,0.002658,-0.002250,0.249990,0,0);}
.mf7_c00320{transform:matrix(0.295468,0.002659,-0.002250,0.249990,0,0);-ms-transform:matrix(0.295468,0.002659,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.295468,0.002659,-0.002250,0.249990,0,0);}
.mf0_c00320{transform:matrix(0.295478,0.002659,-0.002250,0.249990,0,0);-ms-transform:matrix(0.295478,0.002659,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.295478,0.002659,-0.002250,0.249990,0,0);}
.meb_c00320{transform:matrix(0.295793,0.002662,-0.002250,0.249990,0,0);-ms-transform:matrix(0.295793,0.002662,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.295793,0.002662,-0.002250,0.249990,0,0);}
.m6a_c00320{transform:matrix(0.295920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295920,0.000000,0.000000,0.250000,0,0);}
.m78_c00320{transform:matrix(0.297565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297565,0.000000,0.000000,0.250000,0,0);}
.m7d_c00320{transform:matrix(0.297985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297985,0.000000,0.000000,0.250000,0,0);}
.m6b_c00320{transform:matrix(0.298410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298410,0.000000,0.000000,0.250000,0,0);}
.m117_c00320{transform:matrix(0.298665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298665,0.000000,0.000000,0.250000,0,0);}
.me5_c00320{transform:matrix(0.299948,0.002700,-0.002250,0.249990,0,0);-ms-transform:matrix(0.299948,0.002700,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.299948,0.002700,-0.002250,0.249990,0,0);}
.m66_c00320{transform:matrix(0.301885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301885,0.000000,0.000000,0.250000,0,0);}
.mea_c00320{transform:matrix(0.301903,0.002717,-0.002250,0.249990,0,0);-ms-transform:matrix(0.301903,0.002717,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.301903,0.002717,-0.002250,0.249990,0,0);}
.m118_c00320{transform:matrix(0.302145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302145,0.000000,0.000000,0.250000,0,0);}
.me7_c00320{transform:matrix(0.302568,0.002723,-0.002250,0.249990,0,0);-ms-transform:matrix(0.302568,0.002723,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.302568,0.002723,-0.002250,0.249990,0,0);}
.m1_c00320{transform:matrix(0.302915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302915,0.000000,0.000000,0.250000,0,0);}
.m11a_c00320{transform:matrix(0.303430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303430,0.000000,0.000000,0.250000,0,0);}
.mff_c00320{transform:matrix(0.305183,0.002747,-0.002250,0.249990,0,0);-ms-transform:matrix(0.305183,0.002747,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.305183,0.002747,-0.002250,0.249990,0,0);}
.m64_c00320{transform:matrix(0.305705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305705,0.000000,0.000000,0.250000,0,0);}
.mc_c00320{transform:matrix(0.315825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315825,0.000000,0.000000,0.250000,0,0);}
.mec_c00320{transform:matrix(0.318757,0.002869,-0.002250,0.249990,0,0);-ms-transform:matrix(0.318757,0.002869,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.318757,0.002869,-0.002250,0.249990,0,0);}
.m9_c00320{transform:matrix(0.319630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319630,0.000000,0.000000,0.250000,0,0);}
.m16_c00320{transform:matrix(0.321635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321635,0.000000,0.000000,0.250000,0,0);}
.m77_c00320{transform:matrix(0.344340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344340,0.000000,0.000000,0.250000,0,0);}
.m70_c00320{transform:matrix(0.356845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356845,0.000000,0.000000,0.250000,0,0);}
.me6_c00320{transform:matrix(0.368485,0.003316,-0.002250,0.249990,0,0);-ms-transform:matrix(0.368485,0.003316,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.368485,0.003316,-0.002250,0.249990,0,0);}
.m12_c00320{transform:matrix(0.377465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377465,0.000000,0.000000,0.250000,0,0);}
.me_c00320{transform:matrix(0.440335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440335,0.000000,0.000000,0.250000,0,0);}
.m1e_c00320{transform:matrix(0.464820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464820,0.000000,0.000000,0.250000,0,0);}
.m11_c00320{transform:matrix(0.468510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468510,0.000000,0.000000,0.250000,0,0);}
.mb_c00320{transform:matrix(0.485760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485760,0.000000,0.000000,0.250000,0,0);}
.m8_c00320{transform:matrix(0.488595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488595,0.000000,0.000000,0.250000,0,0);}
.m0_c00320{transform:matrix(0.524420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524420,0.000000,0.000000,0.250000,0,0);}
.m4_c00320{transform:matrix(0.557550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557550,0.000000,0.000000,0.250000,0,0);}
.md_c00320{transform:matrix(0.585685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.585685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.585685,0.000000,0.000000,0.250000,0,0);}
.m5_c00320{transform:matrix(0.615435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615435,0.000000,0.000000,0.250000,0,0);}
.m17_c00320{transform:matrix(0.629645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.629645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.629645,0.000000,0.000000,0.250000,0,0);}
.m1d_c00320{transform:matrix(0.737445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.737445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.737445,0.000000,0.000000,0.250000,0,0);}
.m14_c00320{transform:matrix(0.739370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.739370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.739370,0.000000,0.000000,0.250000,0,0);}
.m6_c00320{transform:matrix(0.740735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.740735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.740735,0.000000,0.000000,0.250000,0,0);}
.m1c_c00320{transform:matrix(0.886555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.886555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.886555,0.000000,0.000000,0.250000,0,0);}
.m21_c00320{transform:matrix(1.923955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.923955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.923955,0.000000,0.000000,0.250000,0,0);}
.v0_c00320{vertical-align:0.000000px;}
.ls0_c00320{letter-spacing:0.000000px;}
.sc__c00320{text-shadow:none;}
.sc0_c00320{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__c00320{-webkit-text-stroke:0px transparent;}
.sc0_c00320{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00320{word-spacing:0.000000px;}
.fc0_c00320{color:transparent;}
.fs3_c00320{font-size:30.000000px;}
.fs0_c00320{font-size:36.000000px;}
.fs6_c00320{font-size:54.000000px;}
.fs9_c00320{font-size:66.000000px;}
.fsf_c00320{font-size:66.002673px;}
.fs1_c00320{font-size:72.000000px;}
.fsd_c00320{font-size:72.001296px;}
.fs10_c00320{font-size:72.001764px;}
.fsa_c00320{font-size:72.002304px;}
.fs11_c00320{font-size:72.002916px;}
.fs5_c00320{font-size:78.000000px;}
.fse_c00320{font-size:78.000975px;}
.fs8_c00320{font-size:78.001911px;}
.fsc_c00320{font-size:78.002496px;}
.fs7_c00320{font-size:84.000000px;}
.fsb_c00320{font-size:84.002688px;}
.fs2_c00320{font-size:90.000000px;}
.fs4_c00320{font-size:114.000000px;}
.y0_c00320{bottom:0.000000px;}
.ybf_c00320{bottom:9.180000px;}
.ybe_c00320{bottom:49.355137px;}
.ybd_c00320{bottom:49.947571px;}
.ybc_c00320{bottom:50.218368px;}
.ybb_c00320{bottom:51.401282px;}
.yba_c00320{bottom:51.993715px;}
.yb9_c00320{bottom:52.379975px;}
.ye_c00320{bottom:52.791000px;}
.yb8_c00320{bottom:78.696173px;}
.yb7_c00320{bottom:79.405719px;}
.yb6_c00320{bottom:80.295153px;}
.yb5_c00320{bottom:80.586766px;}
.yb4_c00320{bottom:80.893000px;}
.yb3_c00320{bottom:81.570971px;}
.yb2_c00320{bottom:81.760524px;}
.yb1_c00320{bottom:82.176013px;}
.yb0_c00320{bottom:82.870993px;}
.yd_c00320{bottom:83.031000px;}
.yaf_c00320{bottom:83.357061px;}
.yae_c00320{bottom:84.241500px;}
.yad_c00320{bottom:114.028500px;}
.yac_c00320{bottom:142.920496px;}
.yab_c00320{bottom:143.324363px;}
.yaa_c00320{bottom:144.112243px;}
.ya9_c00320{bottom:144.687674px;}
.ya8_c00320{bottom:144.882416px;}
.ya7_c00320{bottom:145.305775px;}
.ya6_c00320{bottom:146.075916px;}
.ya5_c00320{bottom:146.870914px;}
.ya4_c00320{bottom:147.079765px;}
.ya3_c00320{bottom:147.959155px;}
.yc_c00320{bottom:147.973500px;}
.ya2_c00320{bottom:174.209533px;}
.ya1_c00320{bottom:174.604596px;}
.ya0_c00320{bottom:174.838788px;}
.y9f_c00320{bottom:175.061829px;}
.y9e_c00320{bottom:175.683796px;}
.y9d_c00320{bottom:176.298120px;}
.y9c_c00320{bottom:176.613740px;}
.y9b_c00320{bottom:177.216607px;}
.y9a_c00320{bottom:177.377152px;}
.y99_c00320{bottom:177.759090px;}
.y98_c00320{bottom:177.991528px;}
.y97_c00320{bottom:178.594407px;}
.y96_c00320{bottom:178.740000px;}
.yb_c00320{bottom:179.149500px;}
.y94_c00320{bottom:209.180675px;}
.y93_c00320{bottom:209.180768px;}
.y95_c00320{bottom:209.180778px;}
.y92_c00320{bottom:209.180934px;}
.y91_c00320{bottom:209.181297px;}
.y90_c00320{bottom:209.181583px;}
.y8f_c00320{bottom:209.182020px;}
.y8e_c00320{bottom:237.786544px;}
.y8d_c00320{bottom:238.872889px;}
.y8c_c00320{bottom:239.669943px;}
.y8b_c00320{bottom:240.158440px;}
.y8a_c00320{bottom:240.556664px;}
.y89_c00320{bottom:241.344280px;}
.y88_c00320{bottom:241.638257px;}
.y87_c00320{bottom:241.939631px;}
.ya_c00320{bottom:242.047500px;}
.y86_c00320{bottom:242.816888px;}
.y85_c00320{bottom:243.001500px;}
.y82_c00320{bottom:272.292030px;}
.y81_c00320{bottom:272.292096px;}
.y83_c00320{bottom:272.292567px;}
.y84_c00320{bottom:272.292594px;}
.y80_c00320{bottom:300.526229px;}
.y7f_c00320{bottom:301.313603px;}
.y7e_c00320{bottom:301.605121px;}
.y7d_c00320{bottom:302.599032px;}
.y7c_c00320{bottom:302.798373px;}
.y7b_c00320{bottom:303.884583px;}
.y7a_c00320{bottom:304.671876px;}
.y79_c00320{bottom:304.868436px;}
.y78_c00320{bottom:305.641500px;}
.y77_c00320{bottom:333.205164px;}
.y76_c00320{bottom:333.483852px;}
.y75_c00320{bottom:333.831636px;}
.y74_c00320{bottom:334.617804px;}
.y73_c00320{bottom:335.054112px;}
.y72_c00320{bottom:335.682828px;}
.y71_c00320{bottom:336.028368px;}
.y70_c00320{bottom:336.373824px;}
.y9_c00320{bottom:336.804000px;}
.y6f_c00320{bottom:337.162428px;}
.y6e_c00320{bottom:337.432452px;}
.y6d_c00320{bottom:338.041500px;}
.y6c_c00320{bottom:369.083168px;}
.y6b_c00320{bottom:396.797272px;}
.y6a_c00320{bottom:397.225335px;}
.y69_c00320{bottom:397.561402px;}
.y68_c00320{bottom:398.272950px;}
.y67_c00320{bottom:398.719777px;}
.y66_c00320{bottom:398.876363px;}
.y65_c00320{bottom:399.150435px;}
.y64_c00320{bottom:399.321900px;}
.y63_c00320{bottom:399.703920px;}
.y62_c00320{bottom:399.870000px;}
.y61_c00320{bottom:429.525603px;}
.y60_c00320{bottom:429.791274px;}
.y5f_c00320{bottom:429.987303px;}
.y5e_c00320{bottom:430.718049px;}
.y5d_c00320{bottom:431.302905px;}
.y5c_c00320{bottom:431.762958px;}
.y5b_c00320{bottom:432.224640px;}
.y5a_c00320{bottom:432.558369px;}
.y59_c00320{bottom:433.080000px;}
.y55_c00320{bottom:463.622640px;}
.y56_c00320{bottom:463.622844px;}
.y58_c00320{bottom:463.622928px;}
.y57_c00320{bottom:463.623156px;}
.y54_c00320{bottom:492.388932px;}
.y53_c00320{bottom:492.623760px;}
.y52_c00320{bottom:492.930192px;}
.y51_c00320{bottom:493.702872px;}
.y50_c00320{bottom:494.541960px;}
.y4f_c00320{bottom:494.846160px;}
.y4e_c00320{bottom:495.081684px;}
.y4d_c00320{bottom:495.766128px;}
.y8_c00320{bottom:496.111500px;}
.y4c_c00320{bottom:496.529196px;}
.y46_c00320{bottom:525.338484px;}
.y45_c00320{bottom:525.338772px;}
.y47_c00320{bottom:525.338808px;}
.y43_c00320{bottom:525.338916px;}
.y4b_c00320{bottom:525.338976px;}
.y44_c00320{bottom:525.339120px;}
.y4a_c00320{bottom:525.339144px;}
.y48_c00320{bottom:525.339360px;}
.y49_c00320{bottom:525.339672px;}
.y42_c00320{bottom:554.533680px;}
.y41_c00320{bottom:555.162276px;}
.y40_c00320{bottom:556.035108px;}
.y3f_c00320{bottom:556.214208px;}
.y3e_c00320{bottom:557.439168px;}
.y3d_c00320{bottom:558.050424px;}
.y3c_c00320{bottom:558.497568px;}
.y7_c00320{bottom:558.771000px;}
.y3b_c00320{bottom:559.275180px;}
.y3a_c00320{bottom:559.441500px;}
.y39_c00320{bottom:586.953000px;}
.y38_c00320{bottom:587.667000px;}
.y37_c00320{bottom:588.067500px;}
.y36_c00320{bottom:588.741000px;}
.y35_c00320{bottom:589.152000px;}
.y34_c00320{bottom:589.834500px;}
.y33_c00320{bottom:590.221500px;}
.y32_c00320{bottom:619.750500px;}
.y6_c00320{bottom:621.531000px;}
.y31_c00320{bottom:651.943500px;}
.y30_c00320{bottom:683.700000px;}
.y2f_c00320{bottom:716.053500px;}
.y2e_c00320{bottom:748.026000px;}
.y5_c00320{bottom:749.373000px;}
.y2d_c00320{bottom:780.888000px;}
.y2c_c00320{bottom:810.927000px;}
.y2b_c00320{bottom:811.200000px;}
.y2a_c00320{bottom:811.363500px;}
.y29_c00320{bottom:811.533000px;}
.y28_c00320{bottom:812.082000px;}
.y27_c00320{bottom:812.569500px;}
.y26_c00320{bottom:812.671500px;}
.y4_c00320{bottom:812.955000px;}
.y25_c00320{bottom:813.009000px;}
.y24_c00320{bottom:813.231000px;}
.y23_c00320{bottom:813.780000px;}
.y22_c00320{bottom:843.373500px;}
.y21_c00320{bottom:875.149500px;}
.y3_c00320{bottom:875.610000px;}
.y20_c00320{bottom:905.745000px;}
.y1f_c00320{bottom:938.305500px;}
.y1e_c00320{bottom:969.748500px;}
.y1d_c00320{bottom:1000.950000px;}
.y2_c00320{bottom:1003.194000px;}
.y1c_c00320{bottom:1031.625555px;}
.y1b_c00320{bottom:1032.413654px;}
.y1a_c00320{bottom:1032.646166px;}
.y19_c00320{bottom:1033.092216px;}
.y1_c00320{bottom:1033.413000px;}
.y18_c00320{bottom:1033.719707px;}
.y17_c00320{bottom:1034.027787px;}
.y16_c00320{bottom:1035.721500px;}
.y15_c00320{bottom:1091.211000px;}
.y14_c00320{bottom:1153.617000px;}
.y13_c00320{bottom:1155.510000px;}
.y12_c00320{bottom:1156.765500px;}
.y11_c00320{bottom:1157.071500px;}
.y10_c00320{bottom:1157.491500px;}
.yf_c00320{bottom:1161.166500px;}
.h5_c00320{height:30.000000px;}
.h2_c00320{height:36.000000px;}
.h8_c00320{height:54.000000px;}
.hb_c00320{height:66.000000px;}
.h11_c00320{height:66.002673px;}
.h3_c00320{height:72.000000px;}
.hf_c00320{height:72.001296px;}
.h12_c00320{height:72.001764px;}
.hc_c00320{height:72.002304px;}
.h13_c00320{height:72.002916px;}
.h7_c00320{height:78.000000px;}
.h10_c00320{height:78.000975px;}
.ha_c00320{height:78.001911px;}
.he_c00320{height:78.002496px;}
.h9_c00320{height:84.000000px;}
.hd_c00320{height:84.002688px;}
.h4_c00320{height:90.000000px;}
.h6_c00320{height:114.000000px;}
.h1_c00320{height:1165.500000px;}
.h0_c00320{height:1165.800000px;}
.w0_c00320{width:915.000000px;}
.x0_c00320{left:0.000000px;}
.x5_c00320{left:118.530000px;}
.x3_c00320{left:119.610000px;}
.x2_c00320{left:120.690000px;}
.x1_c00320{left:121.770000px;}
.x6_c00320{left:162.270000px;}
.x4_c00320{left:164.970000px;}
.x3d_c00320{left:197.910000px;}
.x18_c00320{left:218.029500px;}
.x76_c00320{left:227.266500px;}
.x5d_c00320{left:228.420000px;}
.x46_c00320{left:229.435500px;}
.x1e_c00320{left:231.390000px;}
.x57_c00320{left:244.080000px;}
.x98_c00320{left:248.670000px;}
.x88_c00320{left:250.438500px;}
.x51_c00320{left:251.910000px;}
.x77_c00320{left:260.482500px;}
.x4c_c00320{left:262.980000px;}
.x8e_c00320{left:271.893545px;}
.x5c_c00320{left:273.780000px;}
.x54_c00320{left:284.040000px;}
.x9f_c00320{left:292.863109px;}
.x31_c00320{left:295.920000px;}
.x1f_c00320{left:297.000000px;}
.x7d_c00320{left:303.912000px;}
.x5e_c00320{left:305.640000px;}
.x4d_c00320{left:306.720000px;}
.x29_c00320{left:310.230000px;}
.x71_c00320{left:315.280500px;}
.x69_c00320{left:316.444200px;}
.x37_c00320{left:318.060000px;}
.x94_c00320{left:324.983060px;}
.x20_c00320{left:331.290000px;}
.x78_c00320{left:336.886500px;}
.x6c_c00320{left:338.208024px;}
.x47_c00320{left:339.328500px;}
.x3e_c00320{left:342.090000px;}
.x5f_c00320{left:348.570000px;}
.x21_c00320{left:350.460000px;}
.x99_c00320{left:358.290000px;}
.x87_c00320{left:359.914452px;}
.x4e_c00320{left:361.530000px;}
.x3f_c00320{left:362.880000px;}
.x2a_c00320{left:365.580000px;}
.x8f_c00320{left:369.796500px;}
.x72_c00320{left:370.902000px;}
.x55_c00320{left:373.140000px;}
.x9b_c00320{left:379.506000px;}
.x89_c00320{left:381.397500px;}
.x52_c00320{left:383.130000px;}
.x2b_c00320{left:384.210000px;}
.x9a_c00320{left:390.960000px;}
.x70_c00320{left:392.854392px;}
.x40_c00320{left:394.470000px;}
.x7_c00320{left:401.760000px;}
.x32_c00320{left:405.000000px;}
.x12_c00320{left:409.536000px;}
.x8a_c00320{left:414.061500px;}
.x4f_c00320{left:415.800000px;}
.x43_c00320{left:417.420000px;}
.x84_c00320{left:424.587000px;}
.x79_c00320{left:425.994000px;}
.x22_c00320{left:427.410000px;}
.x6d_c00320{left:435.951804px;}
.x60_c00320{left:437.130000px;}
.x56_c00320{left:438.480000px;}
.x17_c00320{left:439.830000px;}
.x73_c00320{left:447.849000px;}
.x23_c00320{left:449.010000px;}
.x8_c00320{left:450.360000px;}
.x33_c00320{left:451.710000px;}
.x7a_c00320{left:457.311000px;}
.x19_c00320{left:459.988500px;}
.x13_c00320{left:461.967000px;}
.x65_c00320{left:469.407000px;}
.x34_c00320{left:471.150000px;}
.x7e_c00320{left:479.422500px;}
.x67_c00320{left:480.768000px;}
.x61_c00320{left:481.950000px;}
.x6a_c00320{left:490.869360px;}
.x44_c00320{left:492.210000px;}
.x14_c00320{left:500.238000px;}
.x8b_c00320{left:501.574500px;}
.x9c_c00320{left:502.891500px;}
.x1a_c00320{left:504.000000px;}
.x66_c00320{left:513.960000px;}
.x58_c00320{left:515.160000px;}
.xa2_c00320{left:520.830000px;}
.x7f_c00320{left:522.615000px;}
.x9d_c00320{left:523.953000px;}
.x24_c00320{left:525.420000px;}
.x90_c00320{left:533.418000px;}
.x2c_c00320{left:536.220000px;}
.x85_c00320{left:545.277000px;}
.x6b_c00320{left:546.491424px;}
.x25_c00320{left:548.370000px;}
.x9_c00320{left:549.990000px;}
.x59_c00320{left:558.360000px;}
.x41_c00320{left:560.520000px;}
.x86_c00320{left:567.426000px;}
.x48_c00320{left:569.095500px;}
.xa_c00320{left:573.210000px;}
.x91_c00320{left:578.506500px;}
.x35_c00320{left:581.040000px;}
.xa0_c00320{left:588.798601px;}
.x95_c00320{left:590.635332px;}
.x50_c00320{left:592.110000px;}
.x1b_c00320{left:593.641500px;}
.x8c_c00320{left:600.099000px;}
.x80_c00320{left:601.204500px;}
.x38_c00320{left:602.370000px;}
.x53_c00320{left:612.900000px;}
.x74_c00320{left:622.000500px;}
.xb_c00320{left:625.050000px;}
.x68_c00320{left:633.888000px;}
.x39_c00320{left:636.930000px;}
.x5a_c00320{left:645.570000px;}
.x45_c00320{left:649.620000px;}
.x96_c00320{left:654.624440px;}
.x81_c00320{left:655.743000px;}
.x15_c00320{left:657.111000px;}
.x92_c00320{left:666.267000px;}
.x2d_c00320{left:668.250000px;}
.x42_c00320{left:669.600000px;}
.xc_c00320{left:676.620000px;}
.x3a_c00320{left:678.780000px;}
.x7b_c00320{left:688.986000px;}
.x1c_c00320{left:690.579000px;}
.xd_c00320{left:694.710000px;}
.x62_c00320{left:701.460000px;}
.x2e_c00320{left:703.080000px;}
.xe_c00320{left:710.100000px;}
.x49_c00320{left:712.738500px;}
.xa1_c00320{left:732.716989px;}
.x63_c00320{left:733.860000px;}
.x97_c00320{left:742.106211px;}
.x6e_c00320{left:743.515776px;}
.x4a_c00320{left:745.420500px;}
.x26_c00320{left:746.550000px;}
.x82_c00320{left:754.014000px;}
.x3b_c00320{left:755.730000px;}
.x9e_c00320{left:764.536500px;}
.xf_c00320{left:766.260000px;}
.x2f_c00320{left:768.150000px;}
.x75_c00320{left:776.463000px;}
.x27_c00320{left:779.220000px;}
.x6f_c00320{left:787.257624px;}
.x3c_c00320{left:789.480000px;}
.x30_c00320{left:791.640000px;}
.x83_c00320{left:797.487000px;}
.x4b_c00320{left:799.942500px;}
.x1d_c00320{left:803.164500px;}
.x8d_c00320{left:809.365500px;}
.x28_c00320{left:811.620000px;}
.x10_c00320{left:815.400000px;}
.x5b_c00320{left:820.800000px;}
.x64_c00320{left:831.330000px;}
.x7c_c00320{left:841.812000px;}
.x36_c00320{left:844.290000px;}
.x11_c00320{left:861.840000px;}
.x93_c00320{left:876.876000px;}
.x16_c00320{left:893.698500px;}
@media print{
.v0_c00320{vertical-align:0.000000pt;}
.ls0_c00320{letter-spacing:0.000000pt;}
.ws0_c00320{word-spacing:0.000000pt;}
.fs3_c00320{font-size:26.666667pt;}
.fs0_c00320{font-size:32.000000pt;}
.fs6_c00320{font-size:48.000000pt;}
.fs9_c00320{font-size:58.666667pt;}
.fsf_c00320{font-size:58.669043pt;}
.fs1_c00320{font-size:64.000000pt;}
.fsd_c00320{font-size:64.001152pt;}
.fs10_c00320{font-size:64.001568pt;}
.fsa_c00320{font-size:64.002048pt;}
.fs11_c00320{font-size:64.002592pt;}
.fs5_c00320{font-size:69.333333pt;}
.fse_c00320{font-size:69.334200pt;}
.fs8_c00320{font-size:69.335032pt;}
.fsc_c00320{font-size:69.335552pt;}
.fs7_c00320{font-size:74.666667pt;}
.fsb_c00320{font-size:74.669056pt;}
.fs2_c00320{font-size:80.000000pt;}
.fs4_c00320{font-size:101.333333pt;}
.y0_c00320{bottom:0.000000pt;}
.ybf_c00320{bottom:8.160000pt;}
.ybe_c00320{bottom:43.871233pt;}
.ybd_c00320{bottom:44.397841pt;}
.ybc_c00320{bottom:44.638549pt;}
.ybb_c00320{bottom:45.690028pt;}
.yba_c00320{bottom:46.216636pt;}
.yb9_c00320{bottom:46.559977pt;}
.ye_c00320{bottom:46.925333pt;}
.yb8_c00320{bottom:69.952153pt;}
.yb7_c00320{bottom:70.582861pt;}
.yb6_c00320{bottom:71.373469pt;}
.yb5_c00320{bottom:71.632681pt;}
.yb4_c00320{bottom:71.904889pt;}
.yb3_c00320{bottom:72.507529pt;}
.yb2_c00320{bottom:72.676021pt;}
.yb1_c00320{bottom:73.045345pt;}
.yb0_c00320{bottom:73.663105pt;}
.yd_c00320{bottom:73.805333pt;}
.yaf_c00320{bottom:74.095165pt;}
.yae_c00320{bottom:74.881333pt;}
.yad_c00320{bottom:101.358667pt;}
.yac_c00320{bottom:127.040441pt;}
.yab_c00320{bottom:127.399433pt;}
.yaa_c00320{bottom:128.099772pt;}
.ya9_c00320{bottom:128.611265pt;}
.ya8_c00320{bottom:128.784369pt;}
.ya7_c00320{bottom:129.160689pt;}
.ya6_c00320{bottom:129.845259pt;}
.ya5_c00320{bottom:130.551924pt;}
.ya4_c00320{bottom:130.737569pt;}
.ya3_c00320{bottom:131.519249pt;}
.yc_c00320{bottom:131.532000pt;}
.ya2_c00320{bottom:154.852919pt;}
.ya1_c00320{bottom:155.204085pt;}
.ya0_c00320{bottom:155.412256pt;}
.y9f_c00320{bottom:155.610515pt;}
.y9e_c00320{bottom:156.163375pt;}
.y9d_c00320{bottom:156.709440pt;}
.y9c_c00320{bottom:156.989991pt;}
.y9b_c00320{bottom:157.525873pt;}
.y9a_c00320{bottom:157.668580pt;}
.y99_c00320{bottom:158.008080pt;}
.y98_c00320{bottom:158.214692pt;}
.y97_c00320{bottom:158.750584pt;}
.y96_c00320{bottom:158.880000pt;}
.yb_c00320{bottom:159.244000pt;}
.y94_c00320{bottom:185.938377pt;}
.y93_c00320{bottom:185.938460pt;}
.y95_c00320{bottom:185.938469pt;}
.y92_c00320{bottom:185.938608pt;}
.y91_c00320{bottom:185.938931pt;}
.y90_c00320{bottom:185.939185pt;}
.y8f_c00320{bottom:185.939573pt;}
.y8e_c00320{bottom:211.365817pt;}
.y8d_c00320{bottom:212.331457pt;}
.y8c_c00320{bottom:213.039949pt;}
.y8b_c00320{bottom:213.474169pt;}
.y8a_c00320{bottom:213.828145pt;}
.y89_c00320{bottom:214.528249pt;}
.y88_c00320{bottom:214.789561pt;}
.y87_c00320{bottom:215.057449pt;}
.ya_c00320{bottom:215.153333pt;}
.y86_c00320{bottom:215.837233pt;}
.y85_c00320{bottom:216.001333pt;}
.y82_c00320{bottom:242.037360pt;}
.y81_c00320{bottom:242.037419pt;}
.y83_c00320{bottom:242.037837pt;}
.y84_c00320{bottom:242.037861pt;}
.y80_c00320{bottom:267.134425pt;}
.y7f_c00320{bottom:267.834313pt;}
.y7e_c00320{bottom:268.093441pt;}
.y7d_c00320{bottom:268.976917pt;}
.y7c_c00320{bottom:269.154109pt;}
.y7b_c00320{bottom:270.119629pt;}
.y7a_c00320{bottom:270.819445pt;}
.y79_c00320{bottom:270.994165pt;}
.y78_c00320{bottom:271.681333pt;}
.y77_c00320{bottom:296.182368pt;}
.y76_c00320{bottom:296.430091pt;}
.y75_c00320{bottom:296.739232pt;}
.y74_c00320{bottom:297.438048pt;}
.y73_c00320{bottom:297.825877pt;}
.y72_c00320{bottom:298.384736pt;}
.y71_c00320{bottom:298.691883pt;}
.y70_c00320{bottom:298.998955pt;}
.y9_c00320{bottom:299.381333pt;}
.y6f_c00320{bottom:299.699936pt;}
.y6e_c00320{bottom:299.939957pt;}
.y6d_c00320{bottom:300.481333pt;}
.y6c_c00320{bottom:328.073927pt;}
.y6b_c00320{bottom:352.708687pt;}
.y6a_c00320{bottom:353.089187pt;}
.y69_c00320{bottom:353.387913pt;}
.y68_c00320{bottom:354.020400pt;}
.y67_c00320{bottom:354.417580pt;}
.y66_c00320{bottom:354.556767pt;}
.y65_c00320{bottom:354.800387pt;}
.y64_c00320{bottom:354.952800pt;}
.y63_c00320{bottom:355.292373pt;}
.y62_c00320{bottom:355.440000pt;}
.y61_c00320{bottom:381.800536pt;}
.y60_c00320{bottom:382.036688pt;}
.y5f_c00320{bottom:382.210936pt;}
.y5e_c00320{bottom:382.860488pt;}
.y5d_c00320{bottom:383.380360pt;}
.y5c_c00320{bottom:383.789296pt;}
.y5b_c00320{bottom:384.199680pt;}
.y5a_c00320{bottom:384.496328pt;}
.y59_c00320{bottom:384.960000pt;}
.y55_c00320{bottom:412.109013pt;}
.y56_c00320{bottom:412.109195pt;}
.y58_c00320{bottom:412.109269pt;}
.y57_c00320{bottom:412.109472pt;}
.y54_c00320{bottom:437.679051pt;}
.y53_c00320{bottom:437.887787pt;}
.y52_c00320{bottom:438.160171pt;}
.y51_c00320{bottom:438.846997pt;}
.y50_c00320{bottom:439.592853pt;}
.y4f_c00320{bottom:439.863253pt;}
.y4e_c00320{bottom:440.072608pt;}
.y4d_c00320{bottom:440.681003pt;}
.y8_c00320{bottom:440.988000pt;}
.y4c_c00320{bottom:441.359285pt;}
.y46_c00320{bottom:466.967541pt;}
.y45_c00320{bottom:466.967797pt;}
.y47_c00320{bottom:466.967829pt;}
.y43_c00320{bottom:466.967925pt;}
.y4b_c00320{bottom:466.967979pt;}
.y44_c00320{bottom:466.968107pt;}
.y4a_c00320{bottom:466.968128pt;}
.y48_c00320{bottom:466.968320pt;}
.y49_c00320{bottom:466.968597pt;}
.y42_c00320{bottom:492.918827pt;}
.y41_c00320{bottom:493.477579pt;}
.y40_c00320{bottom:494.253429pt;}
.y3f_c00320{bottom:494.412629pt;}
.y3e_c00320{bottom:495.501483pt;}
.y3d_c00320{bottom:496.044821pt;}
.y3c_c00320{bottom:496.442283pt;}
.y7_c00320{bottom:496.685333pt;}
.y3b_c00320{bottom:497.133493pt;}
.y3a_c00320{bottom:497.281333pt;}
.y39_c00320{bottom:521.736000pt;}
.y38_c00320{bottom:522.370667pt;}
.y37_c00320{bottom:522.726667pt;}
.y36_c00320{bottom:523.325333pt;}
.y35_c00320{bottom:523.690667pt;}
.y34_c00320{bottom:524.297333pt;}
.y33_c00320{bottom:524.641333pt;}
.y32_c00320{bottom:550.889333pt;}
.y6_c00320{bottom:552.472000pt;}
.y31_c00320{bottom:579.505333pt;}
.y30_c00320{bottom:607.733333pt;}
.y2f_c00320{bottom:636.492000pt;}
.y2e_c00320{bottom:664.912000pt;}
.y5_c00320{bottom:666.109333pt;}
.y2d_c00320{bottom:694.122667pt;}
.y2c_c00320{bottom:720.824000pt;}
.y2b_c00320{bottom:721.066667pt;}
.y2a_c00320{bottom:721.212000pt;}
.y29_c00320{bottom:721.362667pt;}
.y28_c00320{bottom:721.850667pt;}
.y27_c00320{bottom:722.284000pt;}
.y26_c00320{bottom:722.374667pt;}
.y4_c00320{bottom:722.626667pt;}
.y25_c00320{bottom:722.674667pt;}
.y24_c00320{bottom:722.872000pt;}
.y23_c00320{bottom:723.360000pt;}
.y22_c00320{bottom:749.665333pt;}
.y21_c00320{bottom:777.910667pt;}
.y3_c00320{bottom:778.320000pt;}
.y20_c00320{bottom:805.106667pt;}
.y1f_c00320{bottom:834.049333pt;}
.y1e_c00320{bottom:861.998667pt;}
.y1d_c00320{bottom:889.733333pt;}
.y2_c00320{bottom:891.728000pt;}
.y1c_c00320{bottom:917.000493pt;}
.y1b_c00320{bottom:917.701025pt;}
.y1a_c00320{bottom:917.907703pt;}
.y19_c00320{bottom:918.304192pt;}
.y1_c00320{bottom:918.589333pt;}
.y18_c00320{bottom:918.861961pt;}
.y17_c00320{bottom:919.135811pt;}
.y16_c00320{bottom:920.641333pt;}
.y15_c00320{bottom:969.965333pt;}
.y14_c00320{bottom:1025.437333pt;}
.y13_c00320{bottom:1027.120000pt;}
.y12_c00320{bottom:1028.236000pt;}
.y11_c00320{bottom:1028.508000pt;}
.y10_c00320{bottom:1028.881333pt;}
.yf_c00320{bottom:1032.148000pt;}
.h5_c00320{height:26.666667pt;}
.h2_c00320{height:32.000000pt;}
.h8_c00320{height:48.000000pt;}
.hb_c00320{height:58.666667pt;}
.h11_c00320{height:58.669043pt;}
.h3_c00320{height:64.000000pt;}
.hf_c00320{height:64.001152pt;}
.h12_c00320{height:64.001568pt;}
.hc_c00320{height:64.002048pt;}
.h13_c00320{height:64.002592pt;}
.h7_c00320{height:69.333333pt;}
.h10_c00320{height:69.334200pt;}
.ha_c00320{height:69.335032pt;}
.he_c00320{height:69.335552pt;}
.h9_c00320{height:74.666667pt;}
.hd_c00320{height:74.669056pt;}
.h4_c00320{height:80.000000pt;}
.h6_c00320{height:101.333333pt;}
.h1_c00320{height:1036.000000pt;}
.h0_c00320{height:1036.266667pt;}
.w0_c00320{width:813.333333pt;}
.x0_c00320{left:0.000000pt;}
.x5_c00320{left:105.360000pt;}
.x3_c00320{left:106.320000pt;}
.x2_c00320{left:107.280000pt;}
.x1_c00320{left:108.240000pt;}
.x6_c00320{left:144.240000pt;}
.x4_c00320{left:146.640000pt;}
.x3d_c00320{left:175.920000pt;}
.x18_c00320{left:193.804000pt;}
.x76_c00320{left:202.014667pt;}
.x5d_c00320{left:203.040000pt;}
.x46_c00320{left:203.942667pt;}
.x1e_c00320{left:205.680000pt;}
.x57_c00320{left:216.960000pt;}
.x98_c00320{left:221.040000pt;}
.x88_c00320{left:222.612000pt;}
.x51_c00320{left:223.920000pt;}
.x77_c00320{left:231.540000pt;}
.x4c_c00320{left:233.760000pt;}
.x8e_c00320{left:241.683151pt;}
.x5c_c00320{left:243.360000pt;}
.x54_c00320{left:252.480000pt;}
.x9f_c00320{left:260.322764pt;}
.x31_c00320{left:263.040000pt;}
.x1f_c00320{left:264.000000pt;}
.x7d_c00320{left:270.144000pt;}
.x5e_c00320{left:271.680000pt;}
.x4d_c00320{left:272.640000pt;}
.x29_c00320{left:275.760000pt;}
.x71_c00320{left:280.249333pt;}
.x69_c00320{left:281.283733pt;}
.x37_c00320{left:282.720000pt;}
.x94_c00320{left:288.873831pt;}
.x20_c00320{left:294.480000pt;}
.x78_c00320{left:299.454667pt;}
.x6c_c00320{left:300.629355pt;}
.x47_c00320{left:301.625333pt;}
.x3e_c00320{left:304.080000pt;}
.x5f_c00320{left:309.840000pt;}
.x21_c00320{left:311.520000pt;}
.x99_c00320{left:318.480000pt;}
.x87_c00320{left:319.923957pt;}
.x4e_c00320{left:321.360000pt;}
.x3f_c00320{left:322.560000pt;}
.x2a_c00320{left:324.960000pt;}
.x8f_c00320{left:328.708000pt;}
.x72_c00320{left:329.690667pt;}
.x55_c00320{left:331.680000pt;}
.x9b_c00320{left:337.338667pt;}
.x89_c00320{left:339.020000pt;}
.x52_c00320{left:340.560000pt;}
.x2b_c00320{left:341.520000pt;}
.x9a_c00320{left:347.520000pt;}
.x70_c00320{left:349.203904pt;}
.x40_c00320{left:350.640000pt;}
.x7_c00320{left:357.120000pt;}
.x32_c00320{left:360.000000pt;}
.x12_c00320{left:364.032000pt;}
.x8a_c00320{left:368.054667pt;}
.x4f_c00320{left:369.600000pt;}
.x43_c00320{left:371.040000pt;}
.x84_c00320{left:377.410667pt;}
.x79_c00320{left:378.661333pt;}
.x22_c00320{left:379.920000pt;}
.x6d_c00320{left:387.512715pt;}
.x60_c00320{left:388.560000pt;}
.x56_c00320{left:389.760000pt;}
.x17_c00320{left:390.960000pt;}
.x73_c00320{left:398.088000pt;}
.x23_c00320{left:399.120000pt;}
.x8_c00320{left:400.320000pt;}
.x33_c00320{left:401.520000pt;}
.x7a_c00320{left:406.498667pt;}
.x19_c00320{left:408.878667pt;}
.x13_c00320{left:410.637333pt;}
.x65_c00320{left:417.250667pt;}
.x34_c00320{left:418.800000pt;}
.x7e_c00320{left:426.153333pt;}
.x67_c00320{left:427.349333pt;}
.x61_c00320{left:428.400000pt;}
.x6a_c00320{left:436.328320pt;}
.x44_c00320{left:437.520000pt;}
.x14_c00320{left:444.656000pt;}
.x8b_c00320{left:445.844000pt;}
.x9c_c00320{left:447.014667pt;}
.x1a_c00320{left:448.000000pt;}
.x66_c00320{left:456.853333pt;}
.x58_c00320{left:457.920000pt;}
.xa2_c00320{left:462.960000pt;}
.x7f_c00320{left:464.546667pt;}
.x9d_c00320{left:465.736000pt;}
.x24_c00320{left:467.040000pt;}
.x90_c00320{left:474.149333pt;}
.x2c_c00320{left:476.640000pt;}
.x85_c00320{left:484.690667pt;}
.x6b_c00320{left:485.770155pt;}
.x25_c00320{left:487.440000pt;}
.x9_c00320{left:488.880000pt;}
.x59_c00320{left:496.320000pt;}
.x41_c00320{left:498.240000pt;}
.x86_c00320{left:504.378667pt;}
.x48_c00320{left:505.862667pt;}
.xa_c00320{left:509.520000pt;}
.x91_c00320{left:514.228000pt;}
.x35_c00320{left:516.480000pt;}
.xa0_c00320{left:523.376535pt;}
.x95_c00320{left:525.009184pt;}
.x50_c00320{left:526.320000pt;}
.x1b_c00320{left:527.681333pt;}
.x8c_c00320{left:533.421333pt;}
.x80_c00320{left:534.404000pt;}
.x38_c00320{left:535.440000pt;}
.x53_c00320{left:544.800000pt;}
.x74_c00320{left:552.889333pt;}
.xb_c00320{left:555.600000pt;}
.x68_c00320{left:563.456000pt;}
.x39_c00320{left:566.160000pt;}
.x5a_c00320{left:573.840000pt;}
.x45_c00320{left:577.440000pt;}
.x96_c00320{left:581.888391pt;}
.x81_c00320{left:582.882667pt;}
.x15_c00320{left:584.098667pt;}
.x92_c00320{left:592.237333pt;}
.x2d_c00320{left:594.000000pt;}
.x42_c00320{left:595.200000pt;}
.xc_c00320{left:601.440000pt;}
.x3a_c00320{left:603.360000pt;}
.x7b_c00320{left:612.432000pt;}
.x1c_c00320{left:613.848000pt;}
.xd_c00320{left:617.520000pt;}
.x62_c00320{left:623.520000pt;}
.x2e_c00320{left:624.960000pt;}
.xe_c00320{left:631.200000pt;}
.x49_c00320{left:633.545333pt;}
.xa1_c00320{left:651.303991pt;}
.x63_c00320{left:652.320000pt;}
.x97_c00320{left:659.649965pt;}
.x6e_c00320{left:660.902912pt;}
.x4a_c00320{left:662.596000pt;}
.x26_c00320{left:663.600000pt;}
.x82_c00320{left:670.234667pt;}
.x3b_c00320{left:671.760000pt;}
.x9e_c00320{left:679.588000pt;}
.xf_c00320{left:681.120000pt;}
.x2f_c00320{left:682.800000pt;}
.x75_c00320{left:690.189333pt;}
.x27_c00320{left:692.640000pt;}
.x6f_c00320{left:699.784555pt;}
.x3c_c00320{left:701.760000pt;}
.x30_c00320{left:703.680000pt;}
.x83_c00320{left:708.877333pt;}
.x4b_c00320{left:711.060000pt;}
.x1d_c00320{left:713.924000pt;}
.x8d_c00320{left:719.436000pt;}
.x28_c00320{left:721.440000pt;}
.x10_c00320{left:724.800000pt;}
.x5b_c00320{left:729.600000pt;}
.x64_c00320{left:738.960000pt;}
.x7c_c00320{left:748.277333pt;}
.x36_c00320{left:750.480000pt;}
.x11_c00320{left:766.080000pt;}
.x93_c00320{left:779.445333pt;}
.x16_c00320{left:794.398667pt;}
}





/* 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_c00321 {
    display:none;
  }
  .loading-indicator_c00321.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00321 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_c00321 { 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_c00321" -> "#page-container .classname_c00321")
 */
.pf_c00321 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00321 { /* 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_c00321.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00321 { /* 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_c00321 { /* 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_c00321 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00321 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00321 {overflow:visible;}
  }
}
.c_c00321 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00321 { /* 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_c00321:after { /* webkit #35443 */
  content: '';
}
.t_c00321:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00321 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 */
}
.__c00321 { /* 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_c00321 { /* info for Javascript */
  display:none;
}
.l_c00321 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00321 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00321 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00321: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_c00321 {
    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_c00321.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00321.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_c00321 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00321{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00321;src:url('chunks/assets/font_c605e72f209fc835e906f064.woff2')format("woff");}.ff1_c00321{font-family:ff1_c00321;line-height:1.000000;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;}
.m2f_c00321{transform:matrix(0.025455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.025455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.025455,0.000000,0.000000,0.250000,0,0);}
.m11_c00321{transform:matrix(0.035575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.035575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.035575,0.000000,0.000000,0.250000,0,0);}
.m38_c00321{transform:matrix(0.040390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.040390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.040390,0.000000,0.000000,0.250000,0,0);}
.m21_c00321{transform:matrix(0.093915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093915,0.000000,0.000000,0.250000,0,0);}
.m27_c00321{transform:matrix(0.096045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096045,0.000000,0.000000,0.250000,0,0);}
.m48_c00321{transform:matrix(0.100625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100625,0.000000,0.000000,0.250000,0,0);}
.m61_c00321{transform:matrix(0.106995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106995,0.000000,0.000000,0.250000,0,0);}
.m1d_c00321{transform:matrix(0.108165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108165,0.000000,0.000000,0.250000,0,0);}
.m58_c00321{transform:matrix(0.112500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00321{transform:matrix(0.117155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117155,0.000000,0.000000,0.250000,0,0);}
.m28_c00321{transform:matrix(0.127280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127280,0.000000,0.000000,0.250000,0,0);}
.ma_c00321{transform:matrix(0.133535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133535,0.000000,0.000000,0.250000,0,0);}
.m5c_c00321{transform:matrix(0.147650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147650,0.000000,0.000000,0.250000,0,0);}
.m33_c00321{transform:matrix(0.153325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153325,0.000000,0.000000,0.250000,0,0);}
.m9_c00321{transform:matrix(0.192095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192095,0.000000,0.000000,0.250000,0,0);}
.m5b_c00321{transform:matrix(0.222360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222360,0.000000,0.000000,0.250000,0,0);}
.m36_c00321{transform:matrix(0.225885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225885,0.000000,0.000000,0.250000,0,0);}
.m1f_c00321{transform:matrix(0.230510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230510,0.000000,0.000000,0.250000,0,0);}
.m1_c00321{transform:matrix(0.230635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230635,0.000000,0.000000,0.250000,0,0);}
.m50_c00321{transform:matrix(0.232265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232265,0.000000,0.000000,0.250000,0,0);}
.m34_c00321{transform:matrix(0.237170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237170,0.000000,0.000000,0.250000,0,0);}
.m64_c00321{transform:matrix(0.245635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245635,0.000000,0.000000,0.250000,0,0);}
.mb_c00321{transform:matrix(0.253590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253590,0.000000,0.000000,0.250000,0,0);}
.m26_c00321{transform:matrix(0.270185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270185,0.000000,0.000000,0.250000,0,0);}
.m4d_c00321{transform:matrix(0.281925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281925,0.000000,0.000000,0.250000,0,0);}
.m7_c00321{transform:matrix(0.284255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284255,0.000000,0.000000,0.250000,0,0);}
.m20_c00321{transform:matrix(0.286810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286810,0.000000,0.000000,0.250000,0,0);}
.m29_c00321{transform:matrix(0.297740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297740,0.000000,0.000000,0.250000,0,0);}
.m3_c00321{transform:matrix(0.306035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306035,0.000000,0.000000,0.250000,0,0);}
.m47_c00321{transform:matrix(0.313390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313390,0.000000,0.000000,0.250000,0,0);}
.m10_c00321{transform:matrix(0.314015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314015,0.000000,0.000000,0.250000,0,0);}
.m62_c00321{transform:matrix(0.324540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324540,0.000000,0.000000,0.250000,0,0);}
.m4a_c00321{transform:matrix(0.333245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333245,0.000000,0.000000,0.250000,0,0);}
.m41_c00321{transform:matrix(0.333330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333330,0.000000,0.000000,0.250000,0,0);}
.m12_c00321{transform:matrix(0.335620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335620,0.000000,0.000000,0.250000,0,0);}
.m46_c00321{transform:matrix(0.348890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348890,0.000000,0.000000,0.250000,0,0);}
.m4e_c00321{transform:matrix(0.353775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353775,0.000000,0.000000,0.250000,0,0);}
.m63_c00321{transform:matrix(0.359455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359455,0.000000,0.000000,0.250000,0,0);}
.m8_c00321{transform:matrix(0.360665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360665,0.000000,0.000000,0.250000,0,0);}
.m55_c00321{transform:matrix(0.362355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362355,0.000000,0.000000,0.250000,0,0);}
.mc_c00321{transform:matrix(0.365060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365060,0.000000,0.000000,0.250000,0,0);}
.m30_c00321{transform:matrix(0.370295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370295,0.000000,0.000000,0.250000,0,0);}
.m2d_c00321{transform:matrix(0.381840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381840,0.000000,0.000000,0.250000,0,0);}
.m65_c00321{transform:matrix(0.382270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382270,0.000000,0.000000,0.250000,0,0);}
.m3f_c00321{transform:matrix(0.384610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384610,0.000000,0.000000,0.250000,0,0);}
.m14_c00321{transform:matrix(0.392095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392095,0.000000,0.000000,0.250000,0,0);}
.m16_c00321{transform:matrix(0.393630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393630,0.000000,0.000000,0.250000,0,0);}
.m23_c00321{transform:matrix(0.395980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395980,0.000000,0.000000,0.250000,0,0);}
.m3b_c00321{transform:matrix(0.399405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399405,0.000000,0.000000,0.250000,0,0);}
.m4b_c00321{transform:matrix(0.403085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403085,0.000000,0.000000,0.250000,0,0);}
.m1e_c00321{transform:matrix(0.409870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409870,0.000000,0.000000,0.250000,0,0);}
.m24_c00321{transform:matrix(0.417730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417730,0.000000,0.000000,0.250000,0,0);}
.m6_c00321{transform:matrix(0.418885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418885,0.000000,0.000000,0.250000,0,0);}
.m4c_c00321{transform:matrix(0.419070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419070,0.000000,0.000000,0.250000,0,0);}
.m3c_c00321{transform:matrix(0.424795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424795,0.000000,0.000000,0.250000,0,0);}
.m13_c00321{transform:matrix(0.431040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431040,0.000000,0.000000,0.250000,0,0);}
.m18_c00321{transform:matrix(0.436805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436805,0.000000,0.000000,0.250000,0,0);}
.m2e_c00321{transform:matrix(0.448025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448025,0.000000,0.000000,0.250000,0,0);}
.m5f_c00321{transform:matrix(0.450695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450695,0.000000,0.000000,0.250000,0,0);}
.m39_c00321{transform:matrix(0.474050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474050,0.000000,0.000000,0.250000,0,0);}
.m0_c00321{transform:matrix(0.486885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.486885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.486885,0.000000,0.000000,0.250000,0,0);}
.m1c_c00321{transform:matrix(0.507880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507880,0.000000,0.000000,0.250000,0,0);}
.m2a_c00321{transform:matrix(0.509900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509900,0.000000,0.000000,0.250000,0,0);}
.m53_c00321{transform:matrix(0.549525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549525,0.000000,0.000000,0.250000,0,0);}
.m5_c00321{transform:matrix(0.551545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551545,0.000000,0.000000,0.250000,0,0);}
.m25_c00321{transform:matrix(0.585235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.585235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.585235,0.000000,0.000000,0.250000,0,0);}
.m3d_c00321{transform:matrix(0.588725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.588725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.588725,0.000000,0.000000,0.250000,0,0);}
.m4_c00321{transform:matrix(0.594015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.594015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.594015,0.000000,0.000000,0.250000,0,0);}
.m31_c00321{transform:matrix(0.613085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.613085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.613085,0.000000,0.000000,0.250000,0,0);}
.m3a_c00321{transform:matrix(0.615000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615000,0.000000,0.000000,0.250000,0,0);}
.m15_c00321{transform:matrix(0.619170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.619170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.619170,0.000000,0.000000,0.250000,0,0);}
.m22_c00321{transform:matrix(0.622875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.622875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.622875,0.000000,0.000000,0.250000,0,0);}
.m35_c00321{transform:matrix(0.645175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.645175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.645175,0.000000,0.000000,0.250000,0,0);}
.md_c00321{transform:matrix(0.657440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.657440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.657440,0.000000,0.000000,0.250000,0,0);}
.m45_c00321{transform:matrix(0.685625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.685625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.685625,0.000000,0.000000,0.250000,0,0);}
.m5d_c00321{transform:matrix(0.686605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.686605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.686605,0.000000,0.000000,0.250000,0,0);}
.m2_c00321{transform:matrix(0.710175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.710175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.710175,0.000000,0.000000,0.250000,0,0);}
.m49_c00321{transform:matrix(0.747935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.747935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.747935,0.000000,0.000000,0.250000,0,0);}
.m59_c00321{transform:matrix(0.769675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.769675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.769675,0.000000,0.000000,0.250000,0,0);}
.me_c00321{transform:matrix(0.836215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.836215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.836215,0.000000,0.000000,0.250000,0,0);}
.m52_c00321{transform:matrix(0.905830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.905830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.905830,0.000000,0.000000,0.250000,0,0);}
.m43_c00321{transform:matrix(0.930120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.930120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.930120,0.000000,0.000000,0.250000,0,0);}
.mf_c00321{transform:matrix(0.936185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.936185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.936185,0.000000,0.000000,0.250000,0,0);}
.m32_c00321{transform:matrix(0.941950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.941950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.941950,0.000000,0.000000,0.250000,0,0);}
.m1a_c00321{transform:matrix(0.974360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.974360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.974360,0.000000,0.000000,0.250000,0,0);}
.m4f_c00321{transform:matrix(1.001155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.001155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.001155,0.000000,0.000000,0.250000,0,0);}
.m17_c00321{transform:matrix(1.038175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.038175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.038175,0.000000,0.000000,0.250000,0,0);}
.m60_c00321{transform:matrix(1.056505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.056505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.056505,0.000000,0.000000,0.250000,0,0);}
.m19_c00321{transform:matrix(1.148435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.148435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.148435,0.000000,0.000000,0.250000,0,0);}
.m56_c00321{transform:matrix(1.151345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.151345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.151345,0.000000,0.000000,0.250000,0,0);}
.m40_c00321{transform:matrix(1.224225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.224225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.224225,0.000000,0.000000,0.250000,0,0);}
.m37_c00321{transform:matrix(1.245955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.245955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.245955,0.000000,0.000000,0.250000,0,0);}
.m5e_c00321{transform:matrix(1.277205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.277205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.277205,0.000000,0.000000,0.250000,0,0);}
.m5a_c00321{transform:matrix(1.362425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.362425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.362425,0.000000,0.000000,0.250000,0,0);}
.m57_c00321{transform:matrix(1.381050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.381050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.381050,0.000000,0.000000,0.250000,0,0);}
.m67_c00321{transform:matrix(1.440020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.440020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.440020,0.000000,0.000000,0.250000,0,0);}
.m54_c00321{transform:matrix(1.444700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.444700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.444700,0.000000,0.000000,0.250000,0,0);}
.m2c_c00321{transform:matrix(1.483295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.483295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.483295,0.000000,0.000000,0.250000,0,0);}
.m1b_c00321{transform:matrix(1.487595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.487595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.487595,0.000000,0.000000,0.250000,0,0);}
.m66_c00321{transform:matrix(1.851830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.851830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.851830,0.000000,0.000000,0.250000,0,0);}
.m44_c00321{transform:matrix(2.004445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.004445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.004445,0.000000,0.000000,0.250000,0,0);}
.m51_c00321{transform:matrix(2.305300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.305300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.305300,0.000000,0.000000,0.250000,0,0);}
.m3e_c00321{transform:matrix(2.410145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.410145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.410145,0.000000,0.000000,0.250000,0,0);}
.m42_c00321{transform:matrix(2.431480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.431480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.431480,0.000000,0.000000,0.250000,0,0);}
.v0_c00321{vertical-align:0.000000px;}
.ls0_c00321{letter-spacing:0.000000px;}
.sc__c00321{text-shadow:none;}
.sc0_c00321{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__c00321{-webkit-text-stroke:0px transparent;}
.sc0_c00321{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00321{word-spacing:0.000000px;}
.fc0_c00321{color:transparent;}
.fs6_c00321{font-size:12.000000px;}
.fs2_c00321{font-size:18.000000px;}
.fs1_c00321{font-size:24.000000px;}
.fs5_c00321{font-size:30.000000px;}
.fs3_c00321{font-size:36.000000px;}
.fs0_c00321{font-size:42.000000px;}
.fs7_c00321{font-size:48.000000px;}
.fs4_c00321{font-size:84.000000px;}
.y0_c00321{bottom:0.000000px;}
.y25_c00321{bottom:221.718000px;}
.y24_c00321{bottom:227.040000px;}
.y23_c00321{bottom:235.020000px;}
.y22_c00321{bottom:250.702500px;}
.y20_c00321{bottom:256.740000px;}
.y21_c00321{bottom:260.010000px;}
.y1f_c00321{bottom:262.996500px;}
.y1e_c00321{bottom:267.570000px;}
.y1d_c00321{bottom:287.847000px;}
.y1c_c00321{bottom:302.940000px;}
.y1a_c00321{bottom:313.723500px;}
.y19_c00321{bottom:315.415500px;}
.y18_c00321{bottom:315.469500px;}
.y1b_c00321{bottom:316.017000px;}
.y17_c00321{bottom:316.462500px;}
.y16_c00321{bottom:322.725000px;}
.y15_c00321{bottom:342.546000px;}
.y14_c00321{bottom:349.110000px;}
.y13_c00321{bottom:353.991000px;}
.y12_c00321{bottom:411.586500px;}
.y11_c00321{bottom:421.545000px;}
.y10_c00321{bottom:439.560000px;}
.yf_c00321{bottom:445.516500px;}
.ye_c00321{bottom:456.840000px;}
.yd_c00321{bottom:576.706500px;}
.yc_c00321{bottom:580.224000px;}
.yb_c00321{bottom:583.864500px;}
.ya_c00321{bottom:706.050000px;}
.y9_c00321{bottom:710.265000px;}
.y8_c00321{bottom:763.138500px;}
.y7_c00321{bottom:767.601000px;}
.y6_c00321{bottom:772.072500px;}
.y5_c00321{bottom:885.517500px;}
.y4_c00321{bottom:897.217500px;}
.y3_c00321{bottom:982.257000px;}
.y2_c00321{bottom:990.090000px;}
.y1_c00321{bottom:994.237500px;}
.h8_c00321{height:12.000000px;}
.h4_c00321{height:18.000000px;}
.h3_c00321{height:24.000000px;}
.h7_c00321{height:30.000000px;}
.h5_c00321{height:36.000000px;}
.h2_c00321{height:42.000000px;}
.h9_c00321{height:48.000000px;}
.h6_c00321{height:84.000000px;}
.h1_c00321{height:1165.500000px;}
.h0_c00321{height:1165.800000px;}
.w0_c00321{width:915.000000px;}
.x0_c00321{left:0.000000px;}
.x13_c00321{left:132.570000px;}
.xc_c00321{left:134.190000px;}
.x9_c00321{left:144.450000px;}
.xd_c00321{left:159.570000px;}
.x14_c00321{left:167.940000px;}
.xe_c00321{left:169.290000px;}
.x48_c00321{left:181.710000px;}
.x11_c00321{left:194.130000px;}
.xa_c00321{left:197.640000px;}
.x49_c00321{left:208.980000px;}
.x12_c00321{left:213.570000px;}
.xf_c00321{left:216.540000px;}
.x15_c00321{left:218.970000px;}
.x3b_c00321{left:227.340000px;}
.xb_c00321{left:229.500000px;}
.x10_c00321{left:235.710000px;}
.x3f_c00321{left:237.330000px;}
.x40_c00321{left:256.500000px;}
.x38_c00321{left:277.020000px;}
.x3c_c00321{left:294.300000px;}
.x39_c00321{left:311.850000px;}
.x4f_c00321{left:326.970000px;}
.x52_c00321{left:352.080000px;}
.x3d_c00321{left:363.420000px;}
.x53_c00321{left:371.250000px;}
.x3a_c00321{left:387.720000px;}
.x21_c00321{left:390.690000px;}
.x54_c00321{left:392.580000px;}
.x1a_c00321{left:395.280000px;}
.x50_c00321{left:399.870000px;}
.x22_c00321{left:412.290000px;}
.x3e_c00321{left:418.500000px;}
.x23_c00321{left:436.860000px;}
.x51_c00321{left:439.020000px;}
.x1b_c00321{left:448.200000px;}
.x18_c00321{left:450.360000px;}
.x45_c00321{left:452.986500px;}
.x41_c00321{left:457.110000px;}
.x24_c00321{left:459.270000px;}
.x1c_c00321{left:463.860000px;}
.x1_c00321{left:466.560000px;}
.x3_c00321{left:474.930000px;}
.x1d_c00321{left:480.330000px;}
.x6_c00321{left:482.220000px;}
.x25_c00321{left:484.650000px;}
.x4e_c00321{left:486.810000px;}
.x1e_c00321{left:488.700000px;}
.x4_c00321{left:490.860000px;}
.x46_c00321{left:492.699000px;}
.x7_c00321{left:494.640000px;}
.x26_c00321{left:496.260000px;}
.x5_c00321{left:501.120000px;}
.x42_c00321{left:508.140000px;}
.x16_c00321{left:513.270000px;}
.x1f_c00321{left:514.350000px;}
.x2_c00321{left:515.700000px;}
.x8_c00321{left:520.290000px;}
.x19_c00321{left:521.640000px;}
.x20_c00321{left:526.230000px;}
.x33_c00321{left:528.390000px;}
.x17_c00321{left:534.600000px;}
.x27_c00321{left:536.760000px;}
.x34_c00321{left:542.430000px;}
.x43_c00321{left:549.720000px;}
.x35_c00321{left:552.420000px;}
.x4a_c00321{left:554.040000px;}
.x28_c00321{left:556.200000px;}
.x2b_c00321{left:558.360000px;}
.x4c_c00321{left:560.520000px;}
.x47_c00321{left:562.524000px;}
.x36_c00321{left:569.430000px;}
.x2f_c00321{left:575.370000px;}
.x44_c00321{left:576.450000px;}
.x30_c00321{left:577.530000px;}
.x37_c00321{left:585.900000px;}
.x4b_c00321{left:589.950000px;}
.x29_c00321{left:595.350000px;}
.x2a_c00321{left:598.860000px;}
.x2e_c00321{left:600.750000px;}
.x2c_c00321{left:611.010000px;}
.x4d_c00321{left:613.170000px;}
.x2d_c00321{left:635.310000px;}
.x31_c00321{left:643.410000px;}
.x32_c00321{left:647.730000px;}
@media print{
.v0_c00321{vertical-align:0.000000pt;}
.ls0_c00321{letter-spacing:0.000000pt;}
.ws0_c00321{word-spacing:0.000000pt;}
.fs6_c00321{font-size:10.666667pt;}
.fs2_c00321{font-size:16.000000pt;}
.fs1_c00321{font-size:21.333333pt;}
.fs5_c00321{font-size:26.666667pt;}
.fs3_c00321{font-size:32.000000pt;}
.fs0_c00321{font-size:37.333333pt;}
.fs7_c00321{font-size:42.666667pt;}
.fs4_c00321{font-size:74.666667pt;}
.y0_c00321{bottom:0.000000pt;}
.y25_c00321{bottom:197.082667pt;}
.y24_c00321{bottom:201.813333pt;}
.y23_c00321{bottom:208.906667pt;}
.y22_c00321{bottom:222.846667pt;}
.y20_c00321{bottom:228.213333pt;}
.y21_c00321{bottom:231.120000pt;}
.y1f_c00321{bottom:233.774667pt;}
.y1e_c00321{bottom:237.840000pt;}
.y1d_c00321{bottom:255.864000pt;}
.y1c_c00321{bottom:269.280000pt;}
.y1a_c00321{bottom:278.865333pt;}
.y19_c00321{bottom:280.369333pt;}
.y18_c00321{bottom:280.417333pt;}
.y1b_c00321{bottom:280.904000pt;}
.y17_c00321{bottom:281.300000pt;}
.y16_c00321{bottom:286.866667pt;}
.y15_c00321{bottom:304.485333pt;}
.y14_c00321{bottom:310.320000pt;}
.y13_c00321{bottom:314.658667pt;}
.y12_c00321{bottom:365.854667pt;}
.y11_c00321{bottom:374.706667pt;}
.y10_c00321{bottom:390.720000pt;}
.yf_c00321{bottom:396.014667pt;}
.ye_c00321{bottom:406.080000pt;}
.yd_c00321{bottom:512.628000pt;}
.yc_c00321{bottom:515.754667pt;}
.yb_c00321{bottom:518.990667pt;}
.ya_c00321{bottom:627.600000pt;}
.y9_c00321{bottom:631.346667pt;}
.y8_c00321{bottom:678.345333pt;}
.y7_c00321{bottom:682.312000pt;}
.y6_c00321{bottom:686.286667pt;}
.y5_c00321{bottom:787.126667pt;}
.y4_c00321{bottom:797.526667pt;}
.y3_c00321{bottom:873.117333pt;}
.y2_c00321{bottom:880.080000pt;}
.y1_c00321{bottom:883.766667pt;}
.h8_c00321{height:10.666667pt;}
.h4_c00321{height:16.000000pt;}
.h3_c00321{height:21.333333pt;}
.h7_c00321{height:26.666667pt;}
.h5_c00321{height:32.000000pt;}
.h2_c00321{height:37.333333pt;}
.h9_c00321{height:42.666667pt;}
.h6_c00321{height:74.666667pt;}
.h1_c00321{height:1036.000000pt;}
.h0_c00321{height:1036.266667pt;}
.w0_c00321{width:813.333333pt;}
.x0_c00321{left:0.000000pt;}
.x13_c00321{left:117.840000pt;}
.xc_c00321{left:119.280000pt;}
.x9_c00321{left:128.400000pt;}
.xd_c00321{left:141.840000pt;}
.x14_c00321{left:149.280000pt;}
.xe_c00321{left:150.480000pt;}
.x48_c00321{left:161.520000pt;}
.x11_c00321{left:172.560000pt;}
.xa_c00321{left:175.680000pt;}
.x49_c00321{left:185.760000pt;}
.x12_c00321{left:189.840000pt;}
.xf_c00321{left:192.480000pt;}
.x15_c00321{left:194.640000pt;}
.x3b_c00321{left:202.080000pt;}
.xb_c00321{left:204.000000pt;}
.x10_c00321{left:209.520000pt;}
.x3f_c00321{left:210.960000pt;}
.x40_c00321{left:228.000000pt;}
.x38_c00321{left:246.240000pt;}
.x3c_c00321{left:261.600000pt;}
.x39_c00321{left:277.200000pt;}
.x4f_c00321{left:290.640000pt;}
.x52_c00321{left:312.960000pt;}
.x3d_c00321{left:323.040000pt;}
.x53_c00321{left:330.000000pt;}
.x3a_c00321{left:344.640000pt;}
.x21_c00321{left:347.280000pt;}
.x54_c00321{left:348.960000pt;}
.x1a_c00321{left:351.360000pt;}
.x50_c00321{left:355.440000pt;}
.x22_c00321{left:366.480000pt;}
.x3e_c00321{left:372.000000pt;}
.x23_c00321{left:388.320000pt;}
.x51_c00321{left:390.240000pt;}
.x1b_c00321{left:398.400000pt;}
.x18_c00321{left:400.320000pt;}
.x45_c00321{left:402.654667pt;}
.x41_c00321{left:406.320000pt;}
.x24_c00321{left:408.240000pt;}
.x1c_c00321{left:412.320000pt;}
.x1_c00321{left:414.720000pt;}
.x3_c00321{left:422.160000pt;}
.x1d_c00321{left:426.960000pt;}
.x6_c00321{left:428.640000pt;}
.x25_c00321{left:430.800000pt;}
.x4e_c00321{left:432.720000pt;}
.x1e_c00321{left:434.400000pt;}
.x4_c00321{left:436.320000pt;}
.x46_c00321{left:437.954667pt;}
.x7_c00321{left:439.680000pt;}
.x26_c00321{left:441.120000pt;}
.x5_c00321{left:445.440000pt;}
.x42_c00321{left:451.680000pt;}
.x16_c00321{left:456.240000pt;}
.x1f_c00321{left:457.200000pt;}
.x2_c00321{left:458.400000pt;}
.x8_c00321{left:462.480000pt;}
.x19_c00321{left:463.680000pt;}
.x20_c00321{left:467.760000pt;}
.x33_c00321{left:469.680000pt;}
.x17_c00321{left:475.200000pt;}
.x27_c00321{left:477.120000pt;}
.x34_c00321{left:482.160000pt;}
.x43_c00321{left:488.640000pt;}
.x35_c00321{left:491.040000pt;}
.x4a_c00321{left:492.480000pt;}
.x28_c00321{left:494.400000pt;}
.x2b_c00321{left:496.320000pt;}
.x4c_c00321{left:498.240000pt;}
.x47_c00321{left:500.021333pt;}
.x36_c00321{left:506.160000pt;}
.x2f_c00321{left:511.440000pt;}
.x44_c00321{left:512.400000pt;}
.x30_c00321{left:513.360000pt;}
.x37_c00321{left:520.800000pt;}
.x4b_c00321{left:524.400000pt;}
.x29_c00321{left:529.200000pt;}
.x2a_c00321{left:532.320000pt;}
.x2e_c00321{left:534.000000pt;}
.x2c_c00321{left:543.120000pt;}
.x4d_c00321{left:545.040000pt;}
.x2d_c00321{left:564.720000pt;}
.x31_c00321{left:571.920000pt;}
.x32_c00321{left:575.760000pt;}
}





/* 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_c00322 {
    display:none;
  }
  .loading-indicator_c00322.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00322 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_c00322 { 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_c00322" -> "#page-container .classname_c00322")
 */
.pf_c00322 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00322 { /* 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_c00322.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00322 { /* 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_c00322 { /* 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_c00322 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00322 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00322 {overflow:visible;}
  }
}
.c_c00322 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00322 { /* 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_c00322:after { /* webkit #35443 */
  content: '';
}
.t_c00322:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00322 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 */
}
.__c00322 { /* 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_c00322 { /* info for Javascript */
  display:none;
}
.l_c00322 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00322 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00322 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00322: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_c00322 {
    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_c00322.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00322.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_c00322 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00322{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00322;src:url('chunks/assets/font_c605e72f209fc835e906f064.woff2')format("woff");}.ff1_c00322{font-family:ff1_c00322;line-height:1.000000;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;}
.m1_c00322{transform:matrix(0.045772,0.000549,-0.003000,0.249982,0,0);-ms-transform:matrix(0.045772,0.000549,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.045772,0.000549,-0.003000,0.249982,0,0);}
.m34_c00322{transform:matrix(0.065997,0.000594,-0.002250,0.249990,0,0);-ms-transform:matrix(0.065997,0.000594,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.065997,0.000594,-0.002250,0.249990,0,0);}
.m22_c00322{transform:matrix(0.127272,0.001400,-0.002750,0.249985,0,0);-ms-transform:matrix(0.127272,0.001400,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.127272,0.001400,-0.002750,0.249985,0,0);}
.m7e_c00322{transform:matrix(0.132168,0.001322,-0.002500,0.249988,0,0);-ms-transform:matrix(0.132168,0.001322,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.132168,0.001322,-0.002500,0.249988,0,0);}
.m32_c00322{transform:matrix(0.135253,0.001353,-0.002500,0.249988,0,0);-ms-transform:matrix(0.135253,0.001353,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.135253,0.001353,-0.002500,0.249988,0,0);}
.md3_c00322{transform:matrix(0.137873,0.001792,-0.003250,0.249979,0,0);-ms-transform:matrix(0.137873,0.001792,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.137873,0.001792,-0.003250,0.249979,0,0);}
.m29_c00322{transform:matrix(0.140553,0.001406,-0.002500,0.249988,0,0);-ms-transform:matrix(0.140553,0.001406,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.140553,0.001406,-0.002500,0.249988,0,0);}
.m66_c00322{transform:matrix(0.140753,0.001408,-0.002500,0.249988,0,0);-ms-transform:matrix(0.140753,0.001408,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.140753,0.001408,-0.002500,0.249988,0,0);}
.mcc_c00322{transform:matrix(0.142143,0.001848,-0.003250,0.249979,0,0);-ms-transform:matrix(0.142143,0.001848,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.142143,0.001848,-0.003250,0.249979,0,0);}
.me7_c00322{transform:matrix(0.143176,0.002004,-0.003500,0.249976,0,0);-ms-transform:matrix(0.143176,0.002004,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.143176,0.002004,-0.003500,0.249976,0,0);}
.me1_c00322{transform:matrix(0.143178,0.001861,-0.003250,0.249979,0,0);-ms-transform:matrix(0.143178,0.001861,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.143178,0.001861,-0.003250,0.249979,0,0);}
.m3c_c00322{transform:matrix(0.143184,0.001289,-0.002250,0.249990,0,0);-ms-transform:matrix(0.143184,0.001289,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.143184,0.001289,-0.002250,0.249990,0,0);}
.m64_c00322{transform:matrix(0.144635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144635,0.000000,0.000000,0.250000,0,0);}
.m87_c00322{transform:matrix(0.144740,0.001737,-0.003000,0.249982,0,0);-ms-transform:matrix(0.144740,0.001737,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.144740,0.001737,-0.003000,0.249982,0,0);}
.mc4_c00322{transform:matrix(0.145853,0.001896,-0.003250,0.249979,0,0);-ms-transform:matrix(0.145853,0.001896,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.145853,0.001896,-0.003250,0.249979,0,0);}
.m9c_c00322{transform:matrix(0.145856,0.001604,-0.002750,0.249985,0,0);-ms-transform:matrix(0.145856,0.001604,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.145856,0.001604,-0.002750,0.249985,0,0);}
.m75_c00322{transform:matrix(0.145858,0.001459,-0.002500,0.249988,0,0);-ms-transform:matrix(0.145858,0.001459,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.145858,0.001459,-0.002500,0.249988,0,0);}
.mb6_c00322{transform:matrix(0.151160,0.001209,-0.002000,0.249992,0,0);-ms-transform:matrix(0.151160,0.001209,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.151160,0.001209,-0.002000,0.249992,0,0);}
.m5c_c00322{transform:matrix(0.153332,0.001533,-0.002500,0.249988,0,0);-ms-transform:matrix(0.153332,0.001533,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.153332,0.001533,-0.002500,0.249988,0,0);}
.m55_c00322{transform:matrix(0.153340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153340,0.000000,0.000000,0.250000,0,0);}
.m57_c00322{transform:matrix(0.161982,0.001620,-0.002500,0.249988,0,0);-ms-transform:matrix(0.161982,0.001620,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.161982,0.001620,-0.002500,0.249988,0,0);}
.mbf_c00322{transform:matrix(0.171760,0.001374,-0.002000,0.249992,0,0);-ms-transform:matrix(0.171760,0.001374,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.171760,0.001374,-0.002000,0.249992,0,0);}
.ma5_c00322{transform:matrix(0.177329,0.001951,-0.002750,0.249985,0,0);-ms-transform:matrix(0.177329,0.001951,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.177329,0.001951,-0.002750,0.249985,0,0);}
.m24_c00322{transform:matrix(0.181116,0.001811,-0.002500,0.249988,0,0);-ms-transform:matrix(0.181116,0.001811,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.181116,0.001811,-0.002500,0.249988,0,0);}
.med_c00322{transform:matrix(0.181522,0.002541,-0.003500,0.249976,0,0);-ms-transform:matrix(0.181522,0.002541,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.181522,0.002541,-0.003500,0.249976,0,0);}
.m41_c00322{transform:matrix(0.184239,0.002027,-0.002750,0.249985,0,0);-ms-transform:matrix(0.184239,0.002027,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.184239,0.002027,-0.002750,0.249985,0,0);}
.m11_c00322{transform:matrix(0.188554,0.002074,-0.002750,0.249985,0,0);-ms-transform:matrix(0.188554,0.002074,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.188554,0.002074,-0.002750,0.249985,0,0);}
.mcb_c00322{transform:matrix(0.189384,0.002462,-0.003250,0.249979,0,0);-ms-transform:matrix(0.189384,0.002462,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.189384,0.002462,-0.003250,0.249979,0,0);}
.mbd_c00322{transform:matrix(0.189399,0.001515,-0.002000,0.249992,0,0);-ms-transform:matrix(0.189399,0.001515,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.189399,0.001515,-0.002000,0.249992,0,0);}
.m86_c00322{transform:matrix(0.190601,0.002287,-0.003000,0.249982,0,0);-ms-transform:matrix(0.190601,0.002287,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.190601,0.002287,-0.003000,0.249982,0,0);}
.m44_c00322{transform:matrix(0.200333,0.002204,-0.002750,0.249985,0,0);-ms-transform:matrix(0.200333,0.002204,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.200333,0.002204,-0.002750,0.249985,0,0);}
.m40_c00322{transform:matrix(0.205098,0.002256,-0.002750,0.249985,0,0);-ms-transform:matrix(0.205098,0.002256,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.205098,0.002256,-0.002750,0.249985,0,0);}
.ma4_c00322{transform:matrix(0.205158,0.002257,-0.002750,0.249985,0,0);-ms-transform:matrix(0.205158,0.002257,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.205158,0.002257,-0.002750,0.249985,0,0);}
.m97_c00322{transform:matrix(0.205542,0.001850,-0.002250,0.249990,0,0);-ms-transform:matrix(0.205542,0.001850,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.205542,0.001850,-0.002250,0.249990,0,0);}
.ma8_c00322{transform:matrix(0.207727,0.002285,-0.002750,0.249985,0,0);-ms-transform:matrix(0.207727,0.002285,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.207727,0.002285,-0.002750,0.249985,0,0);}
.m42_c00322{transform:matrix(0.212502,0.002338,-0.002750,0.249985,0,0);-ms-transform:matrix(0.212502,0.002338,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.212502,0.002338,-0.002750,0.249985,0,0);}
.mab_c00322{transform:matrix(0.216897,0.002386,-0.002750,0.249985,0,0);-ms-transform:matrix(0.216897,0.002386,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.216897,0.002386,-0.002750,0.249985,0,0);}
.md2_c00322{transform:matrix(0.218037,0.002834,-0.003250,0.249979,0,0);-ms-transform:matrix(0.218037,0.002834,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.218037,0.002834,-0.003250,0.249979,0,0);}
.m2e_c00322{transform:matrix(0.218409,0.002184,-0.002500,0.249988,0,0);-ms-transform:matrix(0.218409,0.002184,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.218409,0.002184,-0.002500,0.249988,0,0);}
.mdb_c00322{transform:matrix(0.220281,0.002864,-0.003250,0.249979,0,0);-ms-transform:matrix(0.220281,0.002864,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.220281,0.002864,-0.003250,0.249979,0,0);}
.mfa_c00322{transform:matrix(0.221985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221985,0.000000,0.000000,0.250000,0,0);}
.m1d_c00322{transform:matrix(0.222832,0.002451,-0.002750,0.249985,0,0);-ms-transform:matrix(0.222832,0.002451,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.222832,0.002451,-0.002750,0.249985,0,0);}
.mac_c00322{transform:matrix(0.223956,0.002464,-0.002750,0.249985,0,0);-ms-transform:matrix(0.223956,0.002464,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.223956,0.002464,-0.002750,0.249985,0,0);}
.m10_c00322{transform:matrix(0.224006,0.002464,-0.002750,0.249985,0,0);-ms-transform:matrix(0.224006,0.002464,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.224006,0.002464,-0.002750,0.249985,0,0);}
.mcf_c00322{transform:matrix(0.224731,0.002922,-0.003250,0.249979,0,0);-ms-transform:matrix(0.224731,0.002922,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.224731,0.002922,-0.003250,0.249979,0,0);}
.m28_c00322{transform:matrix(0.224739,0.002247,-0.002500,0.249988,0,0);-ms-transform:matrix(0.224739,0.002247,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.224739,0.002247,-0.002500,0.249988,0,0);}
.m26_c00322{transform:matrix(0.225629,0.002256,-0.002500,0.249988,0,0);-ms-transform:matrix(0.225629,0.002256,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.225629,0.002256,-0.002500,0.249988,0,0);}
.m83_c00322{transform:matrix(0.226014,0.002260,-0.002500,0.249988,0,0);-ms-transform:matrix(0.226014,0.002260,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.226014,0.002260,-0.002500,0.249988,0,0);}
.m37_c00322{transform:matrix(0.226056,0.002035,-0.002250,0.249990,0,0);-ms-transform:matrix(0.226056,0.002035,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.226056,0.002035,-0.002250,0.249990,0,0);}
.m3f_c00322{transform:matrix(0.227401,0.002501,-0.002750,0.249985,0,0);-ms-transform:matrix(0.227401,0.002501,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.227401,0.002501,-0.002750,0.249985,0,0);}
.m7b_c00322{transform:matrix(0.227509,0.002275,-0.002500,0.249988,0,0);-ms-transform:matrix(0.227509,0.002275,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.227509,0.002275,-0.002500,0.249988,0,0);}
.m7d_c00322{transform:matrix(0.227589,0.002276,-0.002500,0.249988,0,0);-ms-transform:matrix(0.227589,0.002276,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.227589,0.002276,-0.002500,0.249988,0,0);}
.m4a_c00322{transform:matrix(0.228149,0.002281,-0.002500,0.249988,0,0);-ms-transform:matrix(0.228149,0.002281,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.228149,0.002281,-0.002500,0.249988,0,0);}
.m1b_c00322{transform:matrix(0.228321,0.002512,-0.002750,0.249985,0,0);-ms-transform:matrix(0.228321,0.002512,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.228321,0.002512,-0.002750,0.249985,0,0);}
.md8_c00322{transform:matrix(0.228796,0.002974,-0.003250,0.249979,0,0);-ms-transform:matrix(0.228796,0.002974,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.228796,0.002974,-0.003250,0.249979,0,0);}
.m43_c00322{transform:matrix(0.229071,0.002520,-0.002750,0.249985,0,0);-ms-transform:matrix(0.229071,0.002520,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.229071,0.002520,-0.002750,0.249985,0,0);}
.m74_c00322{transform:matrix(0.230623,0.002306,-0.002500,0.249988,0,0);-ms-transform:matrix(0.230623,0.002306,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.230623,0.002306,-0.002500,0.249988,0,0);}
.mdc_c00322{transform:matrix(0.230875,0.003001,-0.003250,0.249979,0,0);-ms-transform:matrix(0.230875,0.003001,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.230875,0.003001,-0.003250,0.249979,0,0);}
.mc3_c00322{transform:matrix(0.231425,0.003009,-0.003250,0.249979,0,0);-ms-transform:matrix(0.231425,0.003009,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.231425,0.003009,-0.003250,0.249979,0,0);}
.m6b_c00322{transform:matrix(0.231678,0.002317,-0.002500,0.249988,0,0);-ms-transform:matrix(0.231678,0.002317,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.231678,0.002317,-0.002500,0.249988,0,0);}
.m4e_c00322{transform:matrix(0.232273,0.002323,-0.002500,0.249988,0,0);-ms-transform:matrix(0.232273,0.002323,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.232273,0.002323,-0.002500,0.249988,0,0);}
.m20_c00322{transform:matrix(0.234386,0.002578,-0.002750,0.249985,0,0);-ms-transform:matrix(0.234386,0.002578,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.234386,0.002578,-0.002750,0.249985,0,0);}
.mb_c00322{transform:matrix(0.234526,0.002111,-0.002250,0.249990,0,0);-ms-transform:matrix(0.234526,0.002111,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.234526,0.002111,-0.002250,0.249990,0,0);}
.mbe_c00322{transform:matrix(0.235252,0.001882,-0.002000,0.249992,0,0);-ms-transform:matrix(0.235252,0.001882,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.235252,0.001882,-0.002000,0.249992,0,0);}
.m45_c00322{transform:matrix(0.235341,0.002589,-0.002750,0.249985,0,0);-ms-transform:matrix(0.235341,0.002589,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.235341,0.002589,-0.002750,0.249985,0,0);}
.mc8_c00322{transform:matrix(0.235735,0.003065,-0.003250,0.249979,0,0);-ms-transform:matrix(0.235735,0.003065,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.235735,0.003065,-0.003250,0.249979,0,0);}
.me_c00322{transform:matrix(0.235840,0.002123,-0.002250,0.249990,0,0);-ms-transform:matrix(0.235840,0.002123,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.235840,0.002123,-0.002250,0.249990,0,0);}
.m3e_c00322{transform:matrix(0.236106,0.002597,-0.002750,0.249985,0,0);-ms-transform:matrix(0.236106,0.002597,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.236106,0.002597,-0.002750,0.249985,0,0);}
.m23_c00322{transform:matrix(0.236823,0.002368,-0.002500,0.249988,0,0);-ms-transform:matrix(0.236823,0.002368,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.236823,0.002368,-0.002500,0.249988,0,0);}
.md1_c00322{transform:matrix(0.237810,0.003092,-0.003250,0.249979,0,0);-ms-transform:matrix(0.237810,0.003092,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.237810,0.003092,-0.003250,0.249979,0,0);}
.m9f_c00322{transform:matrix(0.237961,0.002618,-0.002750,0.249985,0,0);-ms-transform:matrix(0.237961,0.002618,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.237961,0.002618,-0.002750,0.249985,0,0);}
.m4b_c00322{transform:matrix(0.238373,0.002384,-0.002500,0.249988,0,0);-ms-transform:matrix(0.238373,0.002384,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.238373,0.002384,-0.002500,0.249988,0,0);}
.m3a_c00322{transform:matrix(0.238560,0.002147,-0.002250,0.249990,0,0);-ms-transform:matrix(0.238560,0.002147,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.238560,0.002147,-0.002250,0.249990,0,0);}
.md_c00322{transform:matrix(0.238595,0.002147,-0.002250,0.249990,0,0);-ms-transform:matrix(0.238595,0.002147,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.238595,0.002147,-0.002250,0.249990,0,0);}
.m4d_c00322{transform:matrix(0.239283,0.002393,-0.002500,0.249988,0,0);-ms-transform:matrix(0.239283,0.002393,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.239283,0.002393,-0.002500,0.249988,0,0);}
.m47_c00322{transform:matrix(0.239298,0.002393,-0.002500,0.249988,0,0);-ms-transform:matrix(0.239298,0.002393,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.239298,0.002393,-0.002500,0.249988,0,0);}
.ma3_c00322{transform:matrix(0.239646,0.002636,-0.002750,0.249985,0,0);-ms-transform:matrix(0.239646,0.002636,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.239646,0.002636,-0.002750,0.249985,0,0);}
.m30_c00322{transform:matrix(0.239898,0.002399,-0.002500,0.249988,0,0);-ms-transform:matrix(0.239898,0.002399,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.239898,0.002399,-0.002500,0.249988,0,0);}
.m81_c00322{transform:matrix(0.240008,0.002400,-0.002500,0.249988,0,0);-ms-transform:matrix(0.240008,0.002400,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.240008,0.002400,-0.002500,0.249988,0,0);}
.m7f_c00322{transform:matrix(0.240973,0.002410,-0.002500,0.249988,0,0);-ms-transform:matrix(0.240973,0.002410,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.240973,0.002410,-0.002500,0.249988,0,0);}
.m56_c00322{transform:matrix(0.241288,0.002413,-0.002500,0.249988,0,0);-ms-transform:matrix(0.241288,0.002413,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.241288,0.002413,-0.002500,0.249988,0,0);}
.m6a_c00322{transform:matrix(0.241403,0.002414,-0.002500,0.249988,0,0);-ms-transform:matrix(0.241403,0.002414,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.241403,0.002414,-0.002500,0.249988,0,0);}
.m1a_c00322{transform:matrix(0.241665,0.002658,-0.002750,0.249985,0,0);-ms-transform:matrix(0.241665,0.002658,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.241665,0.002658,-0.002750,0.249985,0,0);}
.m9d_c00322{transform:matrix(0.242530,0.002668,-0.002750,0.249985,0,0);-ms-transform:matrix(0.242530,0.002668,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.242530,0.002668,-0.002750,0.249985,0,0);}
.mc1_c00322{transform:matrix(0.242684,0.003155,-0.003250,0.249979,0,0);-ms-transform:matrix(0.242684,0.003155,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.242684,0.003155,-0.003250,0.249979,0,0);}
.mec_c00322{transform:matrix(0.242701,0.003398,-0.003500,0.249976,0,0);-ms-transform:matrix(0.242701,0.003398,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.242701,0.003398,-0.003500,0.249976,0,0);}
.m9_c00322{transform:matrix(0.243018,0.002916,-0.003000,0.249982,0,0);-ms-transform:matrix(0.243018,0.002916,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.243018,0.002916,-0.003000,0.249982,0,0);}
.m6e_c00322{transform:matrix(0.243303,0.002433,-0.002500,0.249988,0,0);-ms-transform:matrix(0.243303,0.002433,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.243303,0.002433,-0.002500,0.249988,0,0);}
.m8b_c00322{transform:matrix(0.243552,0.002923,-0.003000,0.249982,0,0);-ms-transform:matrix(0.243552,0.002923,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.243552,0.002923,-0.003000,0.249982,0,0);}
.m1f_c00322{transform:matrix(0.243895,0.002683,-0.002750,0.249985,0,0);-ms-transform:matrix(0.243895,0.002683,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.243895,0.002683,-0.002750,0.249985,0,0);}
.m50_c00322{transform:matrix(0.244838,0.002448,-0.002500,0.249988,0,0);-ms-transform:matrix(0.244838,0.002448,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.244838,0.002448,-0.002500,0.249988,0,0);}
.m17_c00322{transform:matrix(0.244885,0.002694,-0.002750,0.249985,0,0);-ms-transform:matrix(0.244885,0.002694,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.244885,0.002694,-0.002750,0.249985,0,0);}
.m2d_c00322{transform:matrix(0.244888,0.002449,-0.002500,0.249988,0,0);-ms-transform:matrix(0.244888,0.002449,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.244888,0.002449,-0.002500,0.249988,0,0);}
.m1e_c00322{transform:matrix(0.245375,0.002699,-0.002750,0.249985,0,0);-ms-transform:matrix(0.245375,0.002699,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.245375,0.002699,-0.002750,0.249985,0,0);}
.mb8_c00322{transform:matrix(0.245797,0.001966,-0.002000,0.249992,0,0);-ms-transform:matrix(0.245797,0.001966,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.245797,0.001966,-0.002000,0.249992,0,0);}
.m25_c00322{transform:matrix(0.245828,0.002458,-0.002500,0.249988,0,0);-ms-transform:matrix(0.245828,0.002458,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.245828,0.002458,-0.002500,0.249988,0,0);}
.m1c_c00322{transform:matrix(0.247360,0.002721,-0.002750,0.249985,0,0);-ms-transform:matrix(0.247360,0.002721,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.247360,0.002721,-0.002750,0.249985,0,0);}
.m5_c00322{transform:matrix(0.247652,0.002972,-0.003000,0.249982,0,0);-ms-transform:matrix(0.247652,0.002972,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.247652,0.002972,-0.003000,0.249982,0,0);}
.m94_c00322{transform:matrix(0.247925,0.002231,-0.002250,0.249990,0,0);-ms-transform:matrix(0.247925,0.002231,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.247925,0.002231,-0.002250,0.249990,0,0);}
.mf_c00322{transform:matrix(0.248195,0.002234,-0.002250,0.249990,0,0);-ms-transform:matrix(0.248195,0.002234,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.248195,0.002234,-0.002250,0.249990,0,0);}
.me3_c00322{transform:matrix(0.248621,0.003481,-0.003500,0.249976,0,0);-ms-transform:matrix(0.248621,0.003481,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.248621,0.003481,-0.003500,0.249976,0,0);}
.m13_c00322{transform:matrix(0.248760,0.002736,-0.002750,0.249985,0,0);-ms-transform:matrix(0.248760,0.002736,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.248760,0.002736,-0.002750,0.249985,0,0);}
.m36_c00322{transform:matrix(0.249085,0.002242,-0.002250,0.249990,0,0);-ms-transform:matrix(0.249085,0.002242,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.249085,0.002242,-0.002250,0.249990,0,0);}
.me6_c00322{transform:matrix(0.249126,0.003488,-0.003500,0.249976,0,0);-ms-transform:matrix(0.249126,0.003488,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.249126,0.003488,-0.003500,0.249976,0,0);}
.m71_c00322{transform:matrix(0.249468,0.002495,-0.002500,0.249988,0,0);-ms-transform:matrix(0.249468,0.002495,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.249468,0.002495,-0.002500,0.249988,0,0);}
.m4c_c00322{transform:matrix(0.249503,0.002495,-0.002500,0.249988,0,0);-ms-transform:matrix(0.249503,0.002495,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.249503,0.002495,-0.002500,0.249988,0,0);}
.m77_c00322{transform:matrix(0.249638,0.002496,-0.002500,0.249988,0,0);-ms-transform:matrix(0.249638,0.002496,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.249638,0.002496,-0.002500,0.249988,0,0);}
.m59_c00322{transform:matrix(0.249743,0.002497,-0.002500,0.249988,0,0);-ms-transform:matrix(0.249743,0.002497,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.249743,0.002497,-0.002500,0.249988,0,0);}
.m7c_c00322{transform:matrix(0.249823,0.002498,-0.002500,0.249988,0,0);-ms-transform:matrix(0.249823,0.002498,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.249823,0.002498,-0.002500,0.249988,0,0);}
.mb3_c00322{transform:matrix(0.249847,0.001999,-0.002000,0.249992,0,0);-ms-transform:matrix(0.249847,0.001999,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.249847,0.001999,-0.002000,0.249992,0,0);}
.m5b_c00322{transform:matrix(0.249853,0.002499,-0.002500,0.249988,0,0);-ms-transform:matrix(0.249853,0.002499,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.249853,0.002499,-0.002500,0.249988,0,0);}
.md6_c00322{transform:matrix(0.249884,0.003248,-0.003250,0.249979,0,0);-ms-transform:matrix(0.249884,0.003248,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.249884,0.003248,-0.003250,0.249979,0,0);}
.me0_c00322{transform:matrix(0.250309,0.003254,-0.003250,0.249979,0,0);-ms-transform:matrix(0.250309,0.003254,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.250309,0.003254,-0.003250,0.249979,0,0);}
.m2b_c00322{transform:matrix(0.250457,0.002505,-0.002500,0.249988,0,0);-ms-transform:matrix(0.250457,0.002505,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.250457,0.002505,-0.002500,0.249988,0,0);}
.m8_c00322{transform:matrix(0.250912,0.003011,-0.003000,0.249982,0,0);-ms-transform:matrix(0.250912,0.003011,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.250912,0.003011,-0.003000,0.249982,0,0);}
.me9_c00322{transform:matrix(0.251100,0.003515,-0.003500,0.249976,0,0);-ms-transform:matrix(0.251100,0.003515,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.251100,0.003515,-0.003500,0.249976,0,0);}
.ma0_c00322{transform:matrix(0.252100,0.002773,-0.002750,0.249985,0,0);-ms-transform:matrix(0.252100,0.002773,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.252100,0.002773,-0.002750,0.249985,0,0);}
.m7_c00322{transform:matrix(0.252347,0.003028,-0.003000,0.249982,0,0);-ms-transform:matrix(0.252347,0.003028,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.252347,0.003028,-0.003000,0.249982,0,0);}
.m6c_c00322{transform:matrix(0.253312,0.002533,-0.002500,0.249988,0,0);-ms-transform:matrix(0.253312,0.002533,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.253312,0.002533,-0.002500,0.249988,0,0);}
.mdf_c00322{transform:matrix(0.253569,0.003296,-0.003250,0.249979,0,0);-ms-transform:matrix(0.253569,0.003296,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.253569,0.003296,-0.003250,0.249979,0,0);}
.mf2_c00322{transform:matrix(0.254600,0.003564,-0.003500,0.249976,0,0);-ms-transform:matrix(0.254600,0.003564,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.254600,0.003564,-0.003500,0.249976,0,0);}
.m21_c00322{transform:matrix(0.254965,0.002805,-0.002750,0.249985,0,0);-ms-transform:matrix(0.254965,0.002805,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.254965,0.002805,-0.002750,0.249985,0,0);}
.m27_c00322{transform:matrix(0.255567,0.002556,-0.002500,0.249988,0,0);-ms-transform:matrix(0.255567,0.002556,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.255567,0.002556,-0.002500,0.249988,0,0);}
.m8e_c00322{transform:matrix(0.255672,0.003068,-0.003000,0.249982,0,0);-ms-transform:matrix(0.255672,0.003068,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.255672,0.003068,-0.003000,0.249982,0,0);}
.m2c_c00322{transform:matrix(0.255872,0.002559,-0.002500,0.249988,0,0);-ms-transform:matrix(0.255872,0.002559,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.255872,0.002559,-0.002500,0.249988,0,0);}
.m82_c00322{transform:matrix(0.255952,0.002560,-0.002500,0.249988,0,0);-ms-transform:matrix(0.255952,0.002560,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.255952,0.002560,-0.002500,0.249988,0,0);}
.m85_c00322{transform:matrix(0.256242,0.003075,-0.003000,0.249982,0,0);-ms-transform:matrix(0.256242,0.003075,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.256242,0.003075,-0.003000,0.249982,0,0);}
.ma7_c00322{transform:matrix(0.256469,0.002821,-0.002750,0.249985,0,0);-ms-transform:matrix(0.256469,0.002821,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.256469,0.002821,-0.002750,0.249985,0,0);}
.mf0_c00322{transform:matrix(0.257065,0.003599,-0.003500,0.249976,0,0);-ms-transform:matrix(0.257065,0.003599,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.257065,0.003599,-0.003500,0.249976,0,0);}
.m9a_c00322{transform:matrix(0.257559,0.002833,-0.002750,0.249985,0,0);-ms-transform:matrix(0.257559,0.002833,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.257559,0.002833,-0.002750,0.249985,0,0);}
.m80_c00322{transform:matrix(0.257847,0.002578,-0.002500,0.249988,0,0);-ms-transform:matrix(0.257847,0.002578,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.257847,0.002578,-0.002500,0.249988,0,0);}
.mf8_c00322{transform:matrix(0.258375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258375,0.000000,0.000000,0.250000,0,0);}
.m65_c00322{transform:matrix(0.258822,0.002588,-0.002500,0.249988,0,0);-ms-transform:matrix(0.258822,0.002588,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.258822,0.002588,-0.002500,0.249988,0,0);}
.meb_c00322{transform:matrix(0.259255,0.003630,-0.003500,0.249976,0,0);-ms-transform:matrix(0.259255,0.003630,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.259255,0.003630,-0.003500,0.249976,0,0);}
.m19_c00322{transform:matrix(0.259264,0.002852,-0.002750,0.249985,0,0);-ms-transform:matrix(0.259264,0.002852,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.259264,0.002852,-0.002750,0.249985,0,0);}
.m72_c00322{transform:matrix(0.259287,0.002593,-0.002500,0.249988,0,0);-ms-transform:matrix(0.259287,0.002593,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.259287,0.002593,-0.002500,0.249988,0,0);}
.m68_c00322{transform:matrix(0.259507,0.002595,-0.002500,0.249988,0,0);-ms-transform:matrix(0.259507,0.002595,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.259507,0.002595,-0.002500,0.249988,0,0);}
.m6f_c00322{transform:matrix(0.259622,0.002596,-0.002500,0.249988,0,0);-ms-transform:matrix(0.259622,0.002596,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.259622,0.002596,-0.002500,0.249988,0,0);}
.m3_c00322{transform:matrix(0.259821,0.003118,-0.003000,0.249982,0,0);-ms-transform:matrix(0.259821,0.003118,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.259821,0.003118,-0.003000,0.249982,0,0);}
.mf1_c00322{transform:matrix(0.260195,0.003643,-0.003500,0.249976,0,0);-ms-transform:matrix(0.260195,0.003643,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.260195,0.003643,-0.003500,0.249976,0,0);}
.m9e_c00322{transform:matrix(0.260874,0.002870,-0.002750,0.249985,0,0);-ms-transform:matrix(0.260874,0.002870,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.260874,0.002870,-0.002750,0.249985,0,0);}
.me2_c00322{transform:matrix(0.260894,0.003653,-0.003500,0.249976,0,0);-ms-transform:matrix(0.260894,0.003653,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.260894,0.003653,-0.003500,0.249976,0,0);}
.mde_c00322{transform:matrix(0.261043,0.003394,-0.003250,0.249979,0,0);-ms-transform:matrix(0.261043,0.003394,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.261043,0.003394,-0.003250,0.249979,0,0);}
.mca_c00322{transform:matrix(0.261093,0.003394,-0.003250,0.249979,0,0);-ms-transform:matrix(0.261093,0.003394,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.261093,0.003394,-0.003250,0.249979,0,0);}
.mce_c00322{transform:matrix(0.261813,0.003404,-0.003250,0.249979,0,0);-ms-transform:matrix(0.261813,0.003404,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.261813,0.003404,-0.003250,0.249979,0,0);}
.mc0_c00322{transform:matrix(0.261943,0.003405,-0.003250,0.249979,0,0);-ms-transform:matrix(0.261943,0.003405,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.261943,0.003405,-0.003250,0.249979,0,0);}
.m5e_c00322{transform:matrix(0.262502,0.002625,-0.002500,0.249988,0,0);-ms-transform:matrix(0.262502,0.002625,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.262502,0.002625,-0.002500,0.249988,0,0);}
.m33_c00322{transform:matrix(0.262754,0.002365,-0.002250,0.249990,0,0);-ms-transform:matrix(0.262754,0.002365,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.262754,0.002365,-0.002250,0.249990,0,0);}
.m2a_c00322{transform:matrix(0.262917,0.002629,-0.002500,0.249988,0,0);-ms-transform:matrix(0.262917,0.002629,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.262917,0.002629,-0.002500,0.249988,0,0);}
.m61_c00322{transform:matrix(0.262940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262940,0.000000,0.000000,0.250000,0,0);}
.me8_c00322{transform:matrix(0.263314,0.003686,-0.003500,0.249976,0,0);-ms-transform:matrix(0.263314,0.003686,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.263314,0.003686,-0.003500,0.249976,0,0);}
.m96_c00322{transform:matrix(0.263559,0.002372,-0.002250,0.249990,0,0);-ms-transform:matrix(0.263559,0.002372,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.263559,0.002372,-0.002250,0.249990,0,0);}
.me4_c00322{transform:matrix(0.263754,0.003693,-0.003500,0.249976,0,0);-ms-transform:matrix(0.263754,0.003693,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.263754,0.003693,-0.003500,0.249976,0,0);}
.m79_c00322{transform:matrix(0.263847,0.002638,-0.002500,0.249988,0,0);-ms-transform:matrix(0.263847,0.002638,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.263847,0.002638,-0.002500,0.249988,0,0);}
.mf4_c00322{transform:matrix(0.263969,0.003696,-0.003500,0.249976,0,0);-ms-transform:matrix(0.263969,0.003696,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.263969,0.003696,-0.003500,0.249976,0,0);}
.m91_c00322{transform:matrix(0.264126,0.003170,-0.003000,0.249982,0,0);-ms-transform:matrix(0.264126,0.003170,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.264126,0.003170,-0.003000,0.249982,0,0);}
.m3d_c00322{transform:matrix(0.264264,0.002907,-0.002750,0.249985,0,0);-ms-transform:matrix(0.264264,0.002907,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.264264,0.002907,-0.002750,0.249985,0,0);}
.m4f_c00322{transform:matrix(0.264282,0.002643,-0.002500,0.249988,0,0);-ms-transform:matrix(0.264282,0.002643,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.264282,0.002643,-0.002500,0.249988,0,0);}
.ma1_c00322{transform:matrix(0.264384,0.002908,-0.002750,0.249985,0,0);-ms-transform:matrix(0.264384,0.002908,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.264384,0.002908,-0.002750,0.249985,0,0);}
.mb9_c00322{transform:matrix(0.264452,0.002116,-0.002000,0.249992,0,0);-ms-transform:matrix(0.264452,0.002116,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.264452,0.002116,-0.002000,0.249992,0,0);}
.mb4_c00322{transform:matrix(0.264587,0.002117,-0.002000,0.249992,0,0);-ms-transform:matrix(0.264587,0.002117,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.264587,0.002117,-0.002000,0.249992,0,0);}
.ma9_c00322{transform:matrix(0.264639,0.002911,-0.002750,0.249985,0,0);-ms-transform:matrix(0.264639,0.002911,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.264639,0.002911,-0.002750,0.249985,0,0);}
.m8d_c00322{transform:matrix(0.264791,0.003177,-0.003000,0.249982,0,0);-ms-transform:matrix(0.264791,0.003177,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.264791,0.003177,-0.003000,0.249982,0,0);}
.mc_c00322{transform:matrix(0.265119,0.002386,-0.002250,0.249990,0,0);-ms-transform:matrix(0.265119,0.002386,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.265119,0.002386,-0.002250,0.249990,0,0);}
.maf_c00322{transform:matrix(0.265130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265130,0.000000,0.000000,0.250000,0,0);}
.m78_c00322{transform:matrix(0.265272,0.002653,-0.002500,0.249988,0,0);-ms-transform:matrix(0.265272,0.002653,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.265272,0.002653,-0.002500,0.249988,0,0);}
.md5_c00322{transform:matrix(0.265383,0.003450,-0.003250,0.249979,0,0);-ms-transform:matrix(0.265383,0.003450,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.265383,0.003450,-0.003250,0.249979,0,0);}
.mef_c00322{transform:matrix(0.265609,0.003719,-0.003500,0.249976,0,0);-ms-transform:matrix(0.265609,0.003719,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.265609,0.003719,-0.003500,0.249976,0,0);}
.m39_c00322{transform:matrix(0.265744,0.002392,-0.002250,0.249990,0,0);-ms-transform:matrix(0.265744,0.002392,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.265744,0.002392,-0.002250,0.249990,0,0);}
.m2f_c00322{transform:matrix(0.267427,0.002674,-0.002500,0.249988,0,0);-ms-transform:matrix(0.267427,0.002674,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.267427,0.002674,-0.002500,0.249988,0,0);}
.mb7_c00322{transform:matrix(0.267846,0.002143,-0.002000,0.249992,0,0);-ms-transform:matrix(0.267846,0.002143,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.267846,0.002143,-0.002000,0.249992,0,0);}
.m4_c00322{transform:matrix(0.267916,0.003215,-0.003000,0.249982,0,0);-ms-transform:matrix(0.267916,0.003215,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.267916,0.003215,-0.003000,0.249982,0,0);}
.mda_c00322{transform:matrix(0.268092,0.003485,-0.003250,0.249979,0,0);-ms-transform:matrix(0.268092,0.003485,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.268092,0.003485,-0.003250,0.249979,0,0);}
.m15_c00322{transform:matrix(0.268524,0.002954,-0.002750,0.249985,0,0);-ms-transform:matrix(0.268524,0.002954,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.268524,0.002954,-0.002750,0.249985,0,0);}
.m70_c00322{transform:matrix(0.268537,0.002685,-0.002500,0.249988,0,0);-ms-transform:matrix(0.268537,0.002685,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.268537,0.002685,-0.002500,0.249988,0,0);}
.m2_c00322{transform:matrix(0.268826,0.003226,-0.003000,0.249982,0,0);-ms-transform:matrix(0.268826,0.003226,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.268826,0.003226,-0.003000,0.249982,0,0);}
.maa_c00322{transform:matrix(0.268919,0.002958,-0.002750,0.249985,0,0);-ms-transform:matrix(0.268919,0.002958,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.268919,0.002958,-0.002750,0.249985,0,0);}
.mdd_c00322{transform:matrix(0.269062,0.003498,-0.003250,0.249979,0,0);-ms-transform:matrix(0.269062,0.003498,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.269062,0.003498,-0.003250,0.249979,0,0);}
.m46_c00322{transform:matrix(0.269112,0.002691,-0.002500,0.249988,0,0);-ms-transform:matrix(0.269112,0.002691,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.269112,0.002691,-0.002500,0.249988,0,0);}
.m90_c00322{transform:matrix(0.269141,0.003230,-0.003000,0.249982,0,0);-ms-transform:matrix(0.269141,0.003230,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.269141,0.003230,-0.003000,0.249982,0,0);}
.m69_c00322{transform:matrix(0.269412,0.002694,-0.002500,0.249988,0,0);-ms-transform:matrix(0.269412,0.002694,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.269412,0.002694,-0.002500,0.249988,0,0);}
.mbc_c00322{transform:matrix(0.269481,0.002156,-0.002000,0.249992,0,0);-ms-transform:matrix(0.269481,0.002156,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.269481,0.002156,-0.002000,0.249992,0,0);}
.mb5_c00322{transform:matrix(0.269701,0.002158,-0.002000,0.249992,0,0);-ms-transform:matrix(0.269701,0.002158,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.269701,0.002158,-0.002000,0.249992,0,0);}
.md0_c00322{transform:matrix(0.269712,0.003506,-0.003250,0.249979,0,0);-ms-transform:matrix(0.269712,0.003506,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.269712,0.003506,-0.003250,0.249979,0,0);}
.m35_c00322{transform:matrix(0.270154,0.002431,-0.002250,0.249990,0,0);-ms-transform:matrix(0.270154,0.002431,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.270154,0.002431,-0.002250,0.249990,0,0);}
.m9b_c00322{transform:matrix(0.270269,0.002973,-0.002750,0.249985,0,0);-ms-transform:matrix(0.270269,0.002973,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.270269,0.002973,-0.002750,0.249985,0,0);}
.m14_c00322{transform:matrix(0.270589,0.002976,-0.002750,0.249985,0,0);-ms-transform:matrix(0.270589,0.002976,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.270589,0.002976,-0.002750,0.249985,0,0);}
.m89_c00322{transform:matrix(0.270761,0.003249,-0.003000,0.249982,0,0);-ms-transform:matrix(0.270761,0.003249,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.270761,0.003249,-0.003000,0.249982,0,0);}
.md9_c00322{transform:matrix(0.270827,0.003521,-0.003250,0.249979,0,0);-ms-transform:matrix(0.270827,0.003521,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.270827,0.003521,-0.003250,0.249979,0,0);}
.mc9_c00322{transform:matrix(0.272337,0.003540,-0.003250,0.249979,0,0);-ms-transform:matrix(0.272337,0.003540,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.272337,0.003540,-0.003250,0.249979,0,0);}
.m52_c00322{transform:matrix(0.272360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272360,0.000000,0.000000,0.250000,0,0);}
.md7_c00322{transform:matrix(0.272667,0.003545,-0.003250,0.249979,0,0);-ms-transform:matrix(0.272667,0.003545,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.272667,0.003545,-0.003250,0.249979,0,0);}
.m5f_c00322{transform:matrix(0.272976,0.002730,-0.002500,0.249988,0,0);-ms-transform:matrix(0.272976,0.002730,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.272976,0.002730,-0.002500,0.249988,0,0);}
.m51_c00322{transform:matrix(0.273345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273345,0.000000,0.000000,0.250000,0,0);}
.m38_c00322{transform:matrix(0.273774,0.002464,-0.002250,0.249990,0,0);-ms-transform:matrix(0.273774,0.002464,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.273774,0.002464,-0.002250,0.249990,0,0);}
.m95_c00322{transform:matrix(0.273854,0.002465,-0.002250,0.249990,0,0);-ms-transform:matrix(0.273854,0.002465,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.273854,0.002465,-0.002250,0.249990,0,0);}
.m48_c00322{transform:matrix(0.274511,0.002745,-0.002500,0.249988,0,0);-ms-transform:matrix(0.274511,0.002745,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.274511,0.002745,-0.002500,0.249988,0,0);}
.ma6_c00322{transform:matrix(0.274668,0.003021,-0.002750,0.249985,0,0);-ms-transform:matrix(0.274668,0.003021,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.274668,0.003021,-0.002750,0.249985,0,0);}
.m12_c00322{transform:matrix(0.274723,0.003022,-0.002750,0.249985,0,0);-ms-transform:matrix(0.274723,0.003022,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.274723,0.003022,-0.002750,0.249985,0,0);}
.mea_c00322{transform:matrix(0.274753,0.003847,-0.003500,0.249976,0,0);-ms-transform:matrix(0.274753,0.003847,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.274753,0.003847,-0.003500,0.249976,0,0);}
.m73_c00322{transform:matrix(0.274886,0.002749,-0.002500,0.249988,0,0);-ms-transform:matrix(0.274886,0.002749,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.274886,0.002749,-0.002500,0.249988,0,0);}
.m31_c00322{transform:matrix(0.275496,0.002755,-0.002500,0.249988,0,0);-ms-transform:matrix(0.275496,0.002755,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.275496,0.002755,-0.002500,0.249988,0,0);}
.m18_c00322{transform:matrix(0.275798,0.003034,-0.002750,0.249985,0,0);-ms-transform:matrix(0.275798,0.003034,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.275798,0.003034,-0.002750,0.249985,0,0);}
.mbb_c00322{transform:matrix(0.275991,0.002208,-0.002000,0.249992,0,0);-ms-transform:matrix(0.275991,0.002208,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.275991,0.002208,-0.002000,0.249992,0,0);}
.m49_c00322{transform:matrix(0.276206,0.002762,-0.002500,0.249988,0,0);-ms-transform:matrix(0.276206,0.002762,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.276206,0.002762,-0.002500,0.249988,0,0);}
.m6d_c00322{transform:matrix(0.276236,0.002762,-0.002500,0.249988,0,0);-ms-transform:matrix(0.276236,0.002762,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.276236,0.002762,-0.002500,0.249988,0,0);}
.ma2_c00322{transform:matrix(0.276248,0.003039,-0.002750,0.249985,0,0);-ms-transform:matrix(0.276248,0.003039,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.276248,0.003039,-0.002750,0.249985,0,0);}
.mba_c00322{transform:matrix(0.276256,0.002210,-0.002000,0.249992,0,0);-ms-transform:matrix(0.276256,0.002210,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.276256,0.002210,-0.002000,0.249992,0,0);}
.me5_c00322{transform:matrix(0.276298,0.003868,-0.003500,0.249976,0,0);-ms-transform:matrix(0.276298,0.003868,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.276298,0.003868,-0.003500,0.249976,0,0);}
.mc2_c00322{transform:matrix(0.276597,0.003596,-0.003250,0.249979,0,0);-ms-transform:matrix(0.276597,0.003596,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.276597,0.003596,-0.003250,0.249979,0,0);}
.m3b_c00322{transform:matrix(0.276609,0.002489,-0.002250,0.249990,0,0);-ms-transform:matrix(0.276609,0.002489,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.276609,0.002489,-0.002250,0.249990,0,0);}
.md4_c00322{transform:matrix(0.277197,0.003604,-0.003250,0.249979,0,0);-ms-transform:matrix(0.277197,0.003604,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.277197,0.003604,-0.003250,0.249979,0,0);}
.m98_c00322{transform:matrix(0.277613,0.003054,-0.002750,0.249985,0,0);-ms-transform:matrix(0.277613,0.003054,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.277613,0.003054,-0.002750,0.249985,0,0);}
.m16_c00322{transform:matrix(0.277773,0.003056,-0.002750,0.249985,0,0);-ms-transform:matrix(0.277773,0.003056,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.277773,0.003056,-0.002750,0.249985,0,0);}
.mc5_c00322{transform:matrix(0.278281,0.003618,-0.003250,0.249979,0,0);-ms-transform:matrix(0.278281,0.003618,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.278281,0.003618,-0.003250,0.249979,0,0);}
.mf9_c00322{transform:matrix(0.278590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278590,0.000000,0.000000,0.250000,0,0);}
.m7a_c00322{transform:matrix(0.278731,0.002787,-0.002500,0.249988,0,0);-ms-transform:matrix(0.278731,0.002787,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.278731,0.002787,-0.002500,0.249988,0,0);}
.m6_c00322{transform:matrix(0.280175,0.003362,-0.003000,0.249982,0,0);-ms-transform:matrix(0.280175,0.003362,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.280175,0.003362,-0.003000,0.249982,0,0);}
.m76_c00322{transform:matrix(0.280216,0.002802,-0.002500,0.249988,0,0);-ms-transform:matrix(0.280216,0.002802,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.280216,0.002802,-0.002500,0.249988,0,0);}
.m8f_c00322{transform:matrix(0.280275,0.003363,-0.003000,0.249982,0,0);-ms-transform:matrix(0.280275,0.003363,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.280275,0.003363,-0.003000,0.249982,0,0);}
.m92_c00322{transform:matrix(0.280410,0.003365,-0.003000,0.249982,0,0);-ms-transform:matrix(0.280410,0.003365,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.280410,0.003365,-0.003000,0.249982,0,0);}
.mb0_c00322{transform:matrix(0.280825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280825,0.000000,0.000000,0.250000,0,0);}
.m67_c00322{transform:matrix(0.281981,0.002820,-0.002500,0.249988,0,0);-ms-transform:matrix(0.281981,0.002820,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.281981,0.002820,-0.002500,0.249988,0,0);}
.m99_c00322{transform:matrix(0.282308,0.003105,-0.002750,0.249985,0,0);-ms-transform:matrix(0.282308,0.003105,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.282308,0.003105,-0.002750,0.249985,0,0);}
.m62_c00322{transform:matrix(0.283115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283115,0.000000,0.000000,0.250000,0,0);}
.mf5_c00322{transform:matrix(0.283622,0.003971,-0.003500,0.249976,0,0);-ms-transform:matrix(0.283622,0.003971,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.283622,0.003971,-0.003500,0.249976,0,0);}
.mc6_c00322{transform:matrix(0.284186,0.003694,-0.003250,0.249979,0,0);-ms-transform:matrix(0.284186,0.003694,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.284186,0.003694,-0.003250,0.249979,0,0);}
.m8c_c00322{transform:matrix(0.284974,0.003420,-0.003000,0.249982,0,0);-ms-transform:matrix(0.284974,0.003420,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.284974,0.003420,-0.003000,0.249982,0,0);}
.m58_c00322{transform:matrix(0.285266,0.002853,-0.002500,0.249988,0,0);-ms-transform:matrix(0.285266,0.002853,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.285266,0.002853,-0.002500,0.249988,0,0);}
.mad_c00322{transform:matrix(0.286168,0.003148,-0.002750,0.249985,0,0);-ms-transform:matrix(0.286168,0.003148,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.286168,0.003148,-0.002750,0.249985,0,0);}
.m63_c00322{transform:matrix(0.286415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286415,0.000000,0.000000,0.250000,0,0);}
.ma_c00322{transform:matrix(0.286598,0.002579,-0.002250,0.249990,0,0);-ms-transform:matrix(0.286598,0.002579,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.286598,0.002579,-0.002250,0.249990,0,0);}
.m88_c00322{transform:matrix(0.288609,0.003463,-0.003000,0.249982,0,0);-ms-transform:matrix(0.288609,0.003463,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.288609,0.003463,-0.003000,0.249982,0,0);}
.mee_c00322{transform:matrix(0.290702,0.004070,-0.003500,0.249976,0,0);-ms-transform:matrix(0.290702,0.004070,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.290702,0.004070,-0.003500,0.249976,0,0);}
.m93_c00322{transform:matrix(0.290808,0.002617,-0.002250,0.249990,0,0);-ms-transform:matrix(0.290808,0.002617,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.290808,0.002617,-0.002250,0.249990,0,0);}
.m5d_c00322{transform:matrix(0.293215,0.002932,-0.002500,0.249988,0,0);-ms-transform:matrix(0.293215,0.002932,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.293215,0.002932,-0.002500,0.249988,0,0);}
.mf7_c00322{transform:matrix(0.293506,0.004109,-0.003500,0.249976,0,0);-ms-transform:matrix(0.293506,0.004109,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.293506,0.004109,-0.003500,0.249976,0,0);}
.mf6_c00322{transform:matrix(0.293961,0.004115,-0.003500,0.249976,0,0);-ms-transform:matrix(0.293961,0.004115,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.293961,0.004115,-0.003500,0.249976,0,0);}
.m8a_c00322{transform:matrix(0.296454,0.003557,-0.003000,0.249982,0,0);-ms-transform:matrix(0.296454,0.003557,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.296454,0.003557,-0.003000,0.249982,0,0);}
.m60_c00322{transform:matrix(0.297950,0.002980,-0.002500,0.249988,0,0);-ms-transform:matrix(0.297950,0.002980,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.297950,0.002980,-0.002500,0.249988,0,0);}
.mb1_c00322{transform:matrix(0.298410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298410,0.000000,0.000000,0.250000,0,0);}
.mae_c00322{transform:matrix(0.298540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298540,0.000000,0.000000,0.250000,0,0);}
.mf3_c00322{transform:matrix(0.298996,0.004186,-0.003500,0.249976,0,0);-ms-transform:matrix(0.298996,0.004186,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.298996,0.004186,-0.003500,0.249976,0,0);}
.m53_c00322{transform:matrix(0.299505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299505,0.000000,0.000000,0.250000,0,0);}
.m54_c00322{transform:matrix(0.300120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300120,0.000000,0.000000,0.250000,0,0);}
.mc7_c00322{transform:matrix(0.301470,0.003919,-0.003250,0.249979,0,0);-ms-transform:matrix(0.301470,0.003919,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.301470,0.003919,-0.003250,0.249979,0,0);}
.m0_c00322{transform:matrix(0.302883,0.003635,-0.003000,0.249982,0,0);-ms-transform:matrix(0.302883,0.003635,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.302883,0.003635,-0.003000,0.249982,0,0);}
.m5a_c00322{transform:matrix(0.304060,0.003041,-0.002500,0.249988,0,0);-ms-transform:matrix(0.304060,0.003041,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.304060,0.003041,-0.002500,0.249988,0,0);}
.mcd_c00322{transform:matrix(0.304674,0.003961,-0.003250,0.249979,0,0);-ms-transform:matrix(0.304674,0.003961,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.304674,0.003961,-0.003250,0.249979,0,0);}
.mb2_c00322{transform:matrix(0.305905,0.002447,-0.002000,0.249992,0,0);-ms-transform:matrix(0.305905,0.002447,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.305905,0.002447,-0.002000,0.249992,0,0);}
.m84_c00322{transform:matrix(0.334850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334850,0.000000,0.000000,0.250000,0,0);}
.v0_c00322{vertical-align:0.000000px;}
.ls0_c00322{letter-spacing:0.000000px;}
.sc__c00322{text-shadow:none;}
.sc0_c00322{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__c00322{-webkit-text-stroke:0px transparent;}
.sc0_c00322{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00322{word-spacing:0.000000px;}
.fc0_c00322{color:transparent;}
.fs9_c00322{font-size:54.000000px;}
.fs6_c00322{font-size:66.000000px;}
.fs7_c00322{font-size:66.003300px;}
.fsa_c00322{font-size:66.004752px;}
.fs10_c00322{font-size:66.006468px;}
.fsb_c00322{font-size:72.002304px;}
.fs1_c00322{font-size:72.002916px;}
.fs4_c00322{font-size:72.003600px;}
.fs2_c00322{font-size:72.004356px;}
.fs0_c00322{font-size:72.005184px;}
.fsd_c00322{font-size:72.006084px;}
.fsf_c00322{font-size:72.007056px;}
.fs8_c00322{font-size:78.003900px;}
.fs3_c00322{font-size:78.004719px;}
.fse_c00322{font-size:78.006591px;}
.fsc_c00322{font-size:84.002688px;}
.fs5_c00322{font-size:84.005082px;}
.y0_c00322{bottom:0.000000px;}
.yef_c00322{bottom:65.449500px;}
.yee_c00322{bottom:88.613340px;}
.yed_c00322{bottom:89.690808px;}
.yec_c00322{bottom:90.132858px;}
.yeb_c00322{bottom:90.613128px;}
.yea_c00322{bottom:92.144238px;}
.ye9_c00322{bottom:92.749038px;}
.ye8_c00322{bottom:93.229266px;}
.ye7_c00322{bottom:94.435128px;}
.ye6_c00322{bottom:95.066493px;}
.ye5_c00322{bottom:96.268617px;}
.ye4_c00322{bottom:96.733242px;}
.ye3_c00322{bottom:97.201500px;}
.ye2_c00322{bottom:122.136597px;}
.ye1_c00322{bottom:123.516528px;}
.ye0_c00322{bottom:124.151715px;}
.ydf_c00322{bottom:125.206398px;}
.yde_c00322{bottom:125.501469px;}
.ydd_c00322{bottom:126.152784px;}
.ydc_c00322{bottom:127.675032px;}
.ydb_c00322{bottom:129.054753px;}
.yda_c00322{bottom:129.957984px;}
.yd9_c00322{bottom:131.493000px;}
.yd8_c00322{bottom:154.036673px;}
.yd7_c00322{bottom:154.903623px;}
.yd6_c00322{bottom:155.497028px;}
.yd5_c00322{bottom:156.630797px;}
.yd4_c00322{bottom:157.894572px;}
.yd3_c00322{bottom:158.340206px;}
.yd2_c00322{bottom:158.761094px;}
.yd1_c00322{bottom:160.042829px;}
.yd0_c00322{bottom:161.190540px;}
.ycf_c00322{bottom:184.192226px;}
.yce_c00322{bottom:185.350740px;}
.ycd_c00322{bottom:185.915538px;}
.ycc_c00322{bottom:187.046168px;}
.ycb_c00322{bottom:188.338277px;}
.yca_c00322{bottom:188.598036px;}
.yc9_c00322{bottom:189.187580px;}
.yc8_c00322{bottom:189.626525px;}
.yc7_c00322{bottom:190.612796px;}
.yc6_c00322{bottom:191.184965px;}
.yc5_c00322{bottom:192.181726px;}
.yc4_c00322{bottom:193.593000px;}
.yc3_c00322{bottom:221.420984px;}
.yc2_c00322{bottom:222.513471px;}
.yc1_c00322{bottom:224.368706px;}
.yc0_c00322{bottom:248.360916px;}
.ybf_c00322{bottom:248.789331px;}
.ybe_c00322{bottom:248.870412px;}
.ybd_c00322{bottom:250.516290px;}
.ybc_c00322{bottom:252.211795px;}
.ybb_c00322{bottom:252.482183px;}
.yba_c00322{bottom:253.089451px;}
.yb9_c00322{bottom:254.500452px;}
.yb8_c00322{bottom:255.342735px;}
.yb7_c00322{bottom:256.771500px;}
.yb4_c00322{bottom:285.418464px;}
.yb5_c00322{bottom:285.418656px;}
.yb6_c00322{bottom:285.419400px;}
.yb3_c00322{bottom:312.991620px;}
.yb2_c00322{bottom:313.179384px;}
.yb1_c00322{bottom:313.788744px;}
.yb0_c00322{bottom:314.309340px;}
.yaf_c00322{bottom:314.672280px;}
.yae_c00322{bottom:315.272772px;}
.yad_c00322{bottom:315.443472px;}
.yac_c00322{bottom:316.419828px;}
.yab_c00322{bottom:317.208216px;}
.yaa_c00322{bottom:317.722284px;}
.ya9_c00322{bottom:318.601500px;}
.ya8_c00322{bottom:348.463500px;}
.ya7_c00322{bottom:376.117676px;}
.ya6_c00322{bottom:376.553423px;}
.ya5_c00322{bottom:376.978446px;}
.ya4_c00322{bottom:378.238787px;}
.ya3_c00322{bottom:379.547696px;}
.ya2_c00322{bottom:379.958037px;}
.ya1_c00322{bottom:380.979774px;}
.ya0_c00322{bottom:382.254516px;}
.y9f_c00322{bottom:383.067033px;}
.y9e_c00322{bottom:383.669256px;}
.y9d_c00322{bottom:413.069438px;}
.y9c_c00322{bottom:440.473961px;}
.y9b_c00322{bottom:441.424493px;}
.y9a_c00322{bottom:441.923420px;}
.y99_c00322{bottom:442.285776px;}
.y98_c00322{bottom:442.992488px;}
.y97_c00322{bottom:443.467853px;}
.y96_c00322{bottom:443.699595px;}
.y95_c00322{bottom:445.051061px;}
.y94_c00322{bottom:445.897461px;}
.y93_c00322{bottom:446.774370px;}
.y92_c00322{bottom:447.933000px;}
.y91_c00322{bottom:474.285539px;}
.y90_c00322{bottom:474.995071px;}
.y8f_c00322{bottom:475.877188px;}
.y8e_c00322{bottom:476.278193px;}
.y8d_c00322{bottom:477.901500px;}
.y8c_c00322{bottom:502.583262px;}
.y8b_c00322{bottom:503.344842px;}
.y8a_c00322{bottom:503.898990px;}
.y89_c00322{bottom:504.673260px;}
.y88_c00322{bottom:505.204656px;}
.y87_c00322{bottom:505.609854px;}
.y86_c00322{bottom:506.523588px;}
.y85_c00322{bottom:506.912316px;}
.y84_c00322{bottom:507.975108px;}
.y83_c00322{bottom:508.496316px;}
.y82_c00322{bottom:509.549820px;}
.y81_c00322{bottom:509.786286px;}
.y80_c00322{bottom:510.562896px;}
.y7f_c00322{bottom:511.111500px;}
.y7e_c00322{bottom:540.546000px;}
.y7d_c00322{bottom:563.535075px;}
.y7c_c00322{bottom:565.212765px;}
.y7b_c00322{bottom:565.517760px;}
.y7a_c00322{bottom:567.086610px;}
.y79_c00322{bottom:568.228320px;}
.y78_c00322{bottom:568.490805px;}
.y77_c00322{bottom:569.368170px;}
.y76_c00322{bottom:570.934320px;}
.y75_c00322{bottom:571.776945px;}
.y74_c00322{bottom:573.205995px;}
.y73_c00322{bottom:596.103180px;}
.y72_c00322{bottom:596.910495px;}
.y71_c00322{bottom:597.312840px;}
.y70_c00322{bottom:598.744680px;}
.y6f_c00322{bottom:598.980900px;}
.y6e_c00322{bottom:599.545170px;}
.y6d_c00322{bottom:600.717600px;}
.y6c_c00322{bottom:601.767870px;}
.y6b_c00322{bottom:602.049000px;}
.y6a_c00322{bottom:603.216510px;}
.y69_c00322{bottom:604.529055px;}
.y68_c00322{bottom:661.093560px;}
.y67_c00322{bottom:662.184300px;}
.y66_c00322{bottom:662.735175px;}
.y65_c00322{bottom:663.159000px;}
.y64_c00322{bottom:663.504690px;}
.y63_c00322{bottom:664.579320px;}
.y62_c00322{bottom:665.257020px;}
.y61_c00322{bottom:666.890655px;}
.y60_c00322{bottom:667.093275px;}
.y5f_c00322{bottom:667.981500px;}
.y5e_c00322{bottom:697.014000px;}
.y5d_c00322{bottom:725.358870px;}
.y5c_c00322{bottom:725.790825px;}
.y5b_c00322{bottom:726.131145px;}
.y5a_c00322{bottom:727.111275px;}
.y59_c00322{bottom:727.305690px;}
.y58_c00322{bottom:727.778115px;}
.y57_c00322{bottom:729.190275px;}
.y56_c00322{bottom:729.633165px;}
.y55_c00322{bottom:730.602555px;}
.y54_c00322{bottom:731.248065px;}
.y53_c00322{bottom:731.701500px;}
.y52_c00322{bottom:760.470000px;}
.y51_c00322{bottom:788.526975px;}
.y50_c00322{bottom:789.299535px;}
.y4f_c00322{bottom:789.626160px;}
.y4e_c00322{bottom:789.961020px;}
.y4d_c00322{bottom:790.600830px;}
.y4c_c00322{bottom:791.056965px;}
.y4b_c00322{bottom:791.375820px;}
.y4a_c00322{bottom:792.698895px;}
.y49_c00322{bottom:793.895100px;}
.y48_c00322{bottom:794.340585px;}
.y47_c00322{bottom:795.421500px;}
.y46_c00322{bottom:821.385522px;}
.y45_c00322{bottom:821.747944px;}
.y44_c00322{bottom:822.576591px;}
.y43_c00322{bottom:823.069644px;}
.y42_c00322{bottom:823.419988px;}
.y41_c00322{bottom:823.797327px;}
.y40_c00322{bottom:824.643496px;}
.y3f_c00322{bottom:826.069493px;}
.y3e_c00322{bottom:827.281500px;}
.y3d_c00322{bottom:852.919471px;}
.y3c_c00322{bottom:853.925491px;}
.y3b_c00322{bottom:854.309418px;}
.y3a_c00322{bottom:854.622942px;}
.y39_c00322{bottom:855.495339px;}
.y38_c00322{bottom:855.799035px;}
.y37_c00322{bottom:856.187659px;}
.y36_c00322{bottom:857.084599px;}
.y35_c00322{bottom:857.251581px;}
.y34_c00322{bottom:858.061500px;}
.y32_c00322{bottom:887.791170px;}
.y33_c00322{bottom:887.791830px;}
.y31_c00322{bottom:913.972905px;}
.y30_c00322{bottom:914.720820px;}
.y2f_c00322{bottom:915.058215px;}
.y2e_c00322{bottom:915.500805px;}
.y2d_c00322{bottom:916.162545px;}
.y2c_c00322{bottom:916.713480px;}
.y2b_c00322{bottom:917.364255px;}
.y2a_c00322{bottom:917.561340px;}
.y29_c00322{bottom:918.025710px;}
.y28_c00322{bottom:918.665625px;}
.y27_c00322{bottom:919.113855px;}
.y26_c00322{bottom:919.864395px;}
.y25_c00322{bottom:920.511735px;}
.y24_c00322{bottom:920.971500px;}
.y23_c00322{bottom:945.434863px;}
.y22_c00322{bottom:946.442239px;}
.y21_c00322{bottom:947.215176px;}
.y20_c00322{bottom:948.093145px;}
.y1f_c00322{bottom:949.176594px;}
.y1e_c00322{bottom:949.519234px;}
.y1d_c00322{bottom:950.286313px;}
.y1c_c00322{bottom:950.714664px;}
.y1b_c00322{bottom:951.478872px;}
.y1a_c00322{bottom:977.239456px;}
.y19_c00322{bottom:978.201802px;}
.y18_c00322{bottom:978.679609px;}
.y17_c00322{bottom:980.256778px;}
.y16_c00322{bottom:980.497365px;}
.y15_c00322{bottom:981.448062px;}
.y14_c00322{bottom:982.047804px;}
.y13_c00322{bottom:983.476720px;}
.y12_c00322{bottom:984.192738px;}
.y11_c00322{bottom:984.691500px;}
.y10_c00322{bottom:1011.127645px;}
.yf_c00322{bottom:1011.434096px;}
.ye_c00322{bottom:1011.728180px;}
.yd_c00322{bottom:1012.712086px;}
.yc_c00322{bottom:1013.011233px;}
.yb_c00322{bottom:1014.391500px;}
.ya_c00322{bottom:1039.606710px;}
.y9_c00322{bottom:1040.264538px;}
.y8_c00322{bottom:1040.922438px;}
.y7_c00322{bottom:1042.607382px;}
.y6_c00322{bottom:1043.540556px;}
.y5_c00322{bottom:1044.875382px;}
.y4_c00322{bottom:1045.669326px;}
.y3_c00322{bottom:1046.826042px;}
.y2_c00322{bottom:1047.093342px;}
.y1_c00322{bottom:1048.141500px;}
.hb_c00322{height:54.000000px;}
.h8_c00322{height:66.000000px;}
.h9_c00322{height:66.003300px;}
.hc_c00322{height:66.004752px;}
.h12_c00322{height:66.006468px;}
.hd_c00322{height:72.002304px;}
.h3_c00322{height:72.002916px;}
.h6_c00322{height:72.003600px;}
.h4_c00322{height:72.004356px;}
.h2_c00322{height:72.005184px;}
.hf_c00322{height:72.006084px;}
.h11_c00322{height:72.007056px;}
.ha_c00322{height:78.003900px;}
.h5_c00322{height:78.004719px;}
.h10_c00322{height:78.006591px;}
.he_c00322{height:84.002688px;}
.h7_c00322{height:84.005082px;}
.h1_c00322{height:1165.500000px;}
.h0_c00322{height:1165.800000px;}
.w0_c00322{width:915.000000px;}
.x0_c00322{left:0.000000px;}
.x8a_c00322{left:106.207500px;}
.x6e_c00322{left:108.039000px;}
.x5e_c00322{left:109.197000px;}
.x48_c00322{left:110.571000px;}
.x2f_c00322{left:111.616500px;}
.x1f_c00322{left:112.731000px;}
.x1_c00322{left:114.324000px;}
.x78_c00322{left:153.828101px;}
.x5f_c00322{left:154.914000px;}
.x40_c00322{left:156.718500px;}
.x11_c00322{left:159.409500px;}
.x49_c00322{left:199.393500px;}
.x2_c00322{left:201.670500px;}
.x6f_c00322{left:213.369000px;}
.x7d_c00322{left:215.460000px;}
.x77_c00322{left:217.356273px;}
.x46_c00322{left:218.700000px;}
.x28_c00322{left:220.593015px;}
.xb_c00322{left:221.818500px;}
.x3_c00322{left:223.945500px;}
.x60_c00322{left:239.337000px;}
.xab_c00322{left:247.413000px;}
.xb1_c00322{left:258.390000px;}
.x35_c00322{left:264.474000px;}
.x88_c00322{left:270.005964px;}
.x3d_c00322{left:274.320000px;}
.xa3_c00322{left:279.816000px;}
.x80_c00322{left:281.503500px;}
.x57_c00322{left:284.386005px;}
.x91_c00322{left:291.427500px;}
.x70_c00322{left:293.088000px;}
.x17_c00322{left:298.792149px;}
.x9b_c00322{left:302.496591px;}
.x79_c00322{left:314.393570px;}
.x50_c00322{left:316.332315px;}
.x3e_c00322{left:318.600000px;}
.x4_c00322{left:320.338500px;}
.xb2_c00322{left:325.350000px;}
.x61_c00322{left:327.129000px;}
.x47_c00322{left:329.130000px;}
.x92_c00322{left:335.440500px;}
.x51_c00322{left:339.794850px;}
.x18_c00322{left:341.688128px;}
.x20_c00322{left:343.318500px;}
.x7e_c00322{left:348.030000px;}
.x30_c00322{left:351.435000px;}
.x12_c00322{left:354.403500px;}
.x89_c00322{left:359.918724px;}
.x29_c00322{left:363.316500px;}
.xac_c00322{left:366.466500px;}
.x62_c00322{left:370.563000px;}
.xc_c00322{left:375.181500px;}
.xa4_c00322{left:378.367500px;}
.x81_c00322{left:380.052000px;}
.x6a_c00322{left:381.121500px;}
.x4a_c00322{left:383.019000px;}
.x36_c00322{left:384.094500px;}
.x5_c00322{left:386.500500px;}
.x8b_c00322{left:389.442000px;}
.x7a_c00322{left:392.958837px;}
.x2a_c00322{left:397.060500px;}
.x9c_c00322{left:401.091591px;}
.x58_c00322{left:404.847390px;}
.x21_c00322{left:407.310000px;}
.xd_c00322{left:408.420000px;}
.x93_c00322{left:411.307500px;}
.x19_c00322{left:418.377969px;}
.x7b_c00322{left:424.534644px;}
.x6b_c00322{left:425.677500px;}
.x52_c00322{left:427.270095px;}
.x31_c00322{left:428.359500px;}
.x9d_c00322{left:433.467591px;}
.x8c_c00322{left:436.155000px;}
.x94_c00322{left:445.072500px;}
.x4b_c00322{left:450.789000px;}
.x1a_c00322{left:452.663849px;}
.x22_c00322{left:453.747000px;}
.x7f_c00322{left:457.110000px;}
.x63_c00322{left:459.129000px;}
.x32_c00322{left:462.663000px;}
.x9e_c00322{left:467.747091px;}
.x59_c00322{left:472.331865px;}
.x23_c00322{left:473.455500px;}
.xa5_c00322{left:487.099500px;}
.x95_c00322{left:490.422000px;}
.x64_c00322{left:491.523000px;}
.x5a_c00322{left:492.579765px;}
.x2b_c00322{left:493.993500px;}
.x13_c00322{left:495.352500px;}
.x6_c00322{left:497.736000px;}
.x82_c00322{left:502.096500px;}
.x41_c00322{left:503.713500px;}
.x96_c00322{left:510.403500px;}
.x71_c00322{left:513.961500px;}
.x37_c00322{left:516.402000px;}
.xe_c00322{left:517.743000px;}
.x6c_c00322{left:523.690500px;}
.x53_c00322{left:525.011145px;}
.x2c_c00322{left:528.829500px;}
.xad_c00322{left:531.999000px;}
.xa6_c00322{left:533.622000px;}
.x24_c00322{left:538.533000px;}
.x3f_c00322{left:540.270000px;}
.x38_c00322{left:548.287500px;}
.xf_c00322{left:550.419000px;}
.xa7_c00322{left:554.698500px;}
.x72_c00322{left:557.176500px;}
.x4c_c00322{left:558.252000px;}
.x1b_c00322{left:560.978537px;}
.x9f_c00322{left:564.960591px;}
.x65_c00322{left:567.667500px;}
.x42_c00322{left:570.397500px;}
.x2d_c00322{left:571.488000px;}
.x7_c00322{left:575.500500px;}
.x5b_c00322{left:580.348125px;}
.x10_c00322{left:584.469000px;}
.x8d_c00322{left:587.377500px;}
.x54_c00322{left:591.708810px;}
.x25_c00322{left:593.626500px;}
.x83_c00322{left:598.495500px;}
.x66_c00322{left:601.434000px;}
.x6d_c00322{left:602.527500px;}
.x97_c00322{left:609.796500px;}
.x33_c00322{left:614.667000px;}
.x73_c00322{left:621.423000px;}
.xa8_c00322{left:630.033000px;}
.x4d_c00322{left:635.203500px;}
.x84_c00322{left:643.863000px;}
.x67_c00322{left:645.717000px;}
.x34_c00322{left:647.614500px;}
.x1c_c00322{left:648.703994px;}
.xa0_c00322{left:652.173591px;}
.x74_c00322{left:654.364500px;}
.x39_c00322{left:657.882000px;}
.x14_c00322{left:660.603000px;}
.x43_c00322{left:668.410500px;}
.xa9_c00322{left:675.403500px;}
.x2e_c00322{left:683.268000px;}
.xae_c00322{left:684.564000px;}
.x7c_c00322{left:688.348836px;}
.x4e_c00322{left:690.291000px;}
.x3a_c00322{left:691.368000px;}
.x98_c00322{left:696.768000px;}
.xa1_c00322{left:697.820091px;}
.x75_c00322{left:699.721500px;}
.x5c_c00322{left:701.079510px;}
.x44_c00322{left:702.442500px;}
.x15_c00322{left:704.040000px;}
.x85_c00322{left:708.937500px;}
.x55_c00322{left:711.040425px;}
.x8e_c00322{left:713.983500px;}
.x8_c00322{left:715.912500px;}
.xaf_c00322{left:718.869000px;}
.x8f_c00322{left:720.220500px;}
.x3b_c00322{left:724.030500px;}
.x1d_c00322{left:725.926335px;}
.x26_c00322{left:737.799000px;}
.x99_c00322{left:740.214000px;}
.x56_c00322{left:744.524250px;}
.x45_c00322{left:745.638000px;}
.xb0_c00322{left:750.444000px;}
.x90_c00322{left:753.175500px;}
.x68_c00322{left:756.418500px;}
.xa2_c00322{left:764.508591px;}
.x9_c00322{left:770.737500px;}
.xaa_c00322{left:773.970000px;}
.x86_c00322{left:785.107500px;}
.x76_c00322{left:786.133500px;}
.x16_c00322{left:791.526000px;}
.x4f_c00322{left:799.365000px;}
.x3c_c00322{left:801.286500px;}
.x87_c00322{left:808.578000px;}
.x27_c00322{left:812.590500px;}
.x69_c00322{left:819.883500px;}
.xa_c00322{left:825.556500px;}
.x1e_c00322{left:826.643441px;}
.x9a_c00322{left:829.330500px;}
.x5d_c00322{left:853.593435px;}
@media print{
.v0_c00322{vertical-align:0.000000pt;}
.ls0_c00322{letter-spacing:0.000000pt;}
.ws0_c00322{word-spacing:0.000000pt;}
.fs9_c00322{font-size:48.000000pt;}
.fs6_c00322{font-size:58.666667pt;}
.fs7_c00322{font-size:58.669600pt;}
.fsa_c00322{font-size:58.670891pt;}
.fs10_c00322{font-size:58.672416pt;}
.fsb_c00322{font-size:64.002048pt;}
.fs1_c00322{font-size:64.002592pt;}
.fs4_c00322{font-size:64.003200pt;}
.fs2_c00322{font-size:64.003872pt;}
.fs0_c00322{font-size:64.004608pt;}
.fsd_c00322{font-size:64.005408pt;}
.fsf_c00322{font-size:64.006272pt;}
.fs8_c00322{font-size:69.336800pt;}
.fs3_c00322{font-size:69.337528pt;}
.fse_c00322{font-size:69.339192pt;}
.fsc_c00322{font-size:74.669056pt;}
.fs5_c00322{font-size:74.671184pt;}
.y0_c00322{bottom:0.000000pt;}
.yef_c00322{bottom:58.177333pt;}
.yee_c00322{bottom:78.767413pt;}
.yed_c00322{bottom:79.725163pt;}
.yec_c00322{bottom:80.118096pt;}
.yeb_c00322{bottom:80.545003pt;}
.yea_c00322{bottom:81.905989pt;}
.ye9_c00322{bottom:82.443589pt;}
.ye8_c00322{bottom:82.870459pt;}
.ye7_c00322{bottom:83.942336pt;}
.ye6_c00322{bottom:84.503549pt;}
.ye5_c00322{bottom:85.572104pt;}
.ye4_c00322{bottom:85.985104pt;}
.ye3_c00322{bottom:86.401333pt;}
.ye2_c00322{bottom:108.565864pt;}
.ye1_c00322{bottom:109.792469pt;}
.ye0_c00322{bottom:110.357080pt;}
.ydf_c00322{bottom:111.294576pt;}
.yde_c00322{bottom:111.556861pt;}
.ydd_c00322{bottom:112.135808pt;}
.ydc_c00322{bottom:113.488917pt;}
.ydb_c00322{bottom:114.715336pt;}
.yda_c00322{bottom:115.518208pt;}
.yd9_c00322{bottom:116.882667pt;}
.yd8_c00322{bottom:136.921487pt;}
.yd7_c00322{bottom:137.692109pt;}
.yd6_c00322{bottom:138.219580pt;}
.yd5_c00322{bottom:139.227375pt;}
.yd4_c00322{bottom:140.350731pt;}
.yd3_c00322{bottom:140.746849pt;}
.yd2_c00322{bottom:141.120972pt;}
.yd1_c00322{bottom:142.260292pt;}
.yd0_c00322{bottom:143.280480pt;}
.ycf_c00322{bottom:163.726423pt;}
.yce_c00322{bottom:164.756213pt;}
.ycd_c00322{bottom:165.258256pt;}
.ycc_c00322{bottom:166.263260pt;}
.ycb_c00322{bottom:167.411801pt;}
.yca_c00322{bottom:167.642699pt;}
.yc9_c00322{bottom:168.166737pt;}
.yc8_c00322{bottom:168.556911pt;}
.yc7_c00322{bottom:169.433596pt;}
.yc6_c00322{bottom:169.942191pt;}
.yc5_c00322{bottom:170.828201pt;}
.yc4_c00322{bottom:172.082667pt;}
.yc3_c00322{bottom:196.818652pt;}
.yc2_c00322{bottom:197.789752pt;}
.yc1_c00322{bottom:199.438849pt;}
.yc0_c00322{bottom:220.765259pt;}
.ybf_c00322{bottom:221.146072pt;}
.ybe_c00322{bottom:221.218144pt;}
.ybd_c00322{bottom:222.681147pt;}
.ybc_c00322{bottom:224.188263pt;}
.ybb_c00322{bottom:224.428607pt;}
.yba_c00322{bottom:224.968401pt;}
.yb9_c00322{bottom:226.222624pt;}
.yb8_c00322{bottom:226.971320pt;}
.yb7_c00322{bottom:228.241333pt;}
.yb4_c00322{bottom:253.705301pt;}
.yb5_c00322{bottom:253.705472pt;}
.yb6_c00322{bottom:253.706133pt;}
.yb3_c00322{bottom:278.214773pt;}
.yb2_c00322{bottom:278.381675pt;}
.yb1_c00322{bottom:278.923328pt;}
.yb0_c00322{bottom:279.386080pt;}
.yaf_c00322{bottom:279.708693pt;}
.yae_c00322{bottom:280.242464pt;}
.yad_c00322{bottom:280.394197pt;}
.yac_c00322{bottom:281.262069pt;}
.yab_c00322{bottom:281.962859pt;}
.yaa_c00322{bottom:282.419808pt;}
.ya9_c00322{bottom:283.201333pt;}
.ya8_c00322{bottom:309.745333pt;}
.ya7_c00322{bottom:334.326823pt;}
.ya6_c00322{bottom:334.714153pt;}
.ya5_c00322{bottom:335.091952pt;}
.ya4_c00322{bottom:336.212255pt;}
.ya3_c00322{bottom:337.375729pt;}
.ya2_c00322{bottom:337.740477pt;}
.ya1_c00322{bottom:338.648688pt;}
.ya0_c00322{bottom:339.781792pt;}
.y9f_c00322{bottom:340.504029pt;}
.y9e_c00322{bottom:341.039339pt;}
.y9d_c00322{bottom:367.172833pt;}
.y9c_c00322{bottom:391.532409pt;}
.y9b_c00322{bottom:392.377327pt;}
.y9a_c00322{bottom:392.820817pt;}
.y99_c00322{bottom:393.142912pt;}
.y98_c00322{bottom:393.771100pt;}
.y97_c00322{bottom:394.193647pt;}
.y96_c00322{bottom:394.399640pt;}
.y95_c00322{bottom:395.600943pt;}
.y94_c00322{bottom:396.353299pt;}
.y93_c00322{bottom:397.132773pt;}
.y92_c00322{bottom:398.162667pt;}
.y91_c00322{bottom:421.587145pt;}
.y90_c00322{bottom:422.217841pt;}
.y8f_c00322{bottom:423.001945pt;}
.y8e_c00322{bottom:423.358393pt;}
.y8d_c00322{bottom:424.801333pt;}
.y8c_c00322{bottom:446.740677pt;}
.y8b_c00322{bottom:447.417637pt;}
.y8a_c00322{bottom:447.910213pt;}
.y89_c00322{bottom:448.598453pt;}
.y88_c00322{bottom:449.070805pt;}
.y87_c00322{bottom:449.430981pt;}
.y86_c00322{bottom:450.243189pt;}
.y85_c00322{bottom:450.588725pt;}
.y84_c00322{bottom:451.533429pt;}
.y83_c00322{bottom:451.996725pt;}
.y82_c00322{bottom:452.933173pt;}
.y81_c00322{bottom:453.143365pt;}
.y80_c00322{bottom:453.833685pt;}
.y7f_c00322{bottom:454.321333pt;}
.y7e_c00322{bottom:480.485333pt;}
.y7d_c00322{bottom:500.920067pt;}
.y7c_c00322{bottom:502.411347pt;}
.y7b_c00322{bottom:502.682453pt;}
.y7a_c00322{bottom:504.076987pt;}
.y79_c00322{bottom:505.091840pt;}
.y78_c00322{bottom:505.325160pt;}
.y77_c00322{bottom:506.105040pt;}
.y76_c00322{bottom:507.497173pt;}
.y75_c00322{bottom:508.246173pt;}
.y74_c00322{bottom:509.516440pt;}
.y73_c00322{bottom:529.869493pt;}
.y72_c00322{bottom:530.587107pt;}
.y71_c00322{bottom:530.944747pt;}
.y70_c00322{bottom:532.217493pt;}
.y6f_c00322{bottom:532.427467pt;}
.y6e_c00322{bottom:532.929040pt;}
.y6d_c00322{bottom:533.971200pt;}
.y6c_c00322{bottom:534.904773pt;}
.y6b_c00322{bottom:535.154667pt;}
.y6a_c00322{bottom:536.192453pt;}
.y69_c00322{bottom:537.359160pt;}
.y68_c00322{bottom:587.638720pt;}
.y67_c00322{bottom:588.608267pt;}
.y66_c00322{bottom:589.097933pt;}
.y65_c00322{bottom:589.474667pt;}
.y64_c00322{bottom:589.781947pt;}
.y63_c00322{bottom:590.737173pt;}
.y62_c00322{bottom:591.339573pt;}
.y61_c00322{bottom:592.791693pt;}
.y60_c00322{bottom:592.971800pt;}
.y5f_c00322{bottom:593.761333pt;}
.y5e_c00322{bottom:619.568000pt;}
.y5d_c00322{bottom:644.763440pt;}
.y5c_c00322{bottom:645.147400pt;}
.y5b_c00322{bottom:645.449907pt;}
.y5a_c00322{bottom:646.321133pt;}
.y59_c00322{bottom:646.493947pt;}
.y58_c00322{bottom:646.913880pt;}
.y57_c00322{bottom:648.169133pt;}
.y56_c00322{bottom:648.562813pt;}
.y55_c00322{bottom:649.424493pt;}
.y54_c00322{bottom:649.998280pt;}
.y53_c00322{bottom:650.401333pt;}
.y52_c00322{bottom:675.973333pt;}
.y51_c00322{bottom:700.912867pt;}
.y50_c00322{bottom:701.599587pt;}
.y4f_c00322{bottom:701.889920pt;}
.y4e_c00322{bottom:702.187573pt;}
.y4d_c00322{bottom:702.756293pt;}
.y4c_c00322{bottom:703.161747pt;}
.y4b_c00322{bottom:703.445173pt;}
.y4a_c00322{bottom:704.621240pt;}
.y49_c00322{bottom:705.684533pt;}
.y48_c00322{bottom:706.080520pt;}
.y47_c00322{bottom:707.041333pt;}
.y46_c00322{bottom:730.120464pt;}
.y45_c00322{bottom:730.442617pt;}
.y44_c00322{bottom:731.179192pt;}
.y43_c00322{bottom:731.617461pt;}
.y42_c00322{bottom:731.928879pt;}
.y41_c00322{bottom:732.264291pt;}
.y40_c00322{bottom:733.016441pt;}
.y3f_c00322{bottom:734.283993pt;}
.y3e_c00322{bottom:735.361333pt;}
.y3d_c00322{bottom:758.150641pt;}
.y3c_c00322{bottom:759.044881pt;}
.y3b_c00322{bottom:759.386149pt;}
.y3a_c00322{bottom:759.664837pt;}
.y39_c00322{bottom:760.440301pt;}
.y38_c00322{bottom:760.710253pt;}
.y37_c00322{bottom:761.055697pt;}
.y36_c00322{bottom:761.852977pt;}
.y35_c00322{bottom:762.001405pt;}
.y34_c00322{bottom:762.721333pt;}
.y32_c00322{bottom:789.147707pt;}
.y33_c00322{bottom:789.148293pt;}
.y31_c00322{bottom:812.420360pt;}
.y30_c00322{bottom:813.085173pt;}
.y2f_c00322{bottom:813.385080pt;}
.y2e_c00322{bottom:813.778493pt;}
.y2d_c00322{bottom:814.366707pt;}
.y2c_c00322{bottom:814.856427pt;}
.y2b_c00322{bottom:815.434893pt;}
.y2a_c00322{bottom:815.610080pt;}
.y29_c00322{bottom:816.022853pt;}
.y28_c00322{bottom:816.591667pt;}
.y27_c00322{bottom:816.990093pt;}
.y26_c00322{bottom:817.657240pt;}
.y25_c00322{bottom:818.232653pt;}
.y24_c00322{bottom:818.641333pt;}
.y23_c00322{bottom:840.386545pt;}
.y22_c00322{bottom:841.281991pt;}
.y21_c00322{bottom:841.969045pt;}
.y20_c00322{bottom:842.749463pt;}
.y1f_c00322{bottom:843.712528pt;}
.y1e_c00322{bottom:844.017097pt;}
.y1d_c00322{bottom:844.698945pt;}
.y1c_c00322{bottom:845.079701pt;}
.y1b_c00322{bottom:845.758997pt;}
.y1a_c00322{bottom:868.657295pt;}
.y19_c00322{bottom:869.512713pt;}
.y18_c00322{bottom:869.937431pt;}
.y17_c00322{bottom:871.339359pt;}
.y16_c00322{bottom:871.553213pt;}
.y15_c00322{bottom:872.398277pt;}
.y14_c00322{bottom:872.931381pt;}
.y13_c00322{bottom:874.201529pt;}
.y12_c00322{bottom:874.837989pt;}
.y11_c00322{bottom:875.281333pt;}
.y10_c00322{bottom:898.780129pt;}
.yf_c00322{bottom:899.052529pt;}
.ye_c00322{bottom:899.313937pt;}
.yd_c00322{bottom:900.188521pt;}
.yc_c00322{bottom:900.454429pt;}
.yb_c00322{bottom:901.681333pt;}
.ya_c00322{bottom:924.094853pt;}
.y9_c00322{bottom:924.679589pt;}
.y8_c00322{bottom:925.264389pt;}
.y7_c00322{bottom:926.762117pt;}
.y6_c00322{bottom:927.591605pt;}
.y5_c00322{bottom:928.778117pt;}
.y4_c00322{bottom:929.483845pt;}
.y3_c00322{bottom:930.512037pt;}
.y2_c00322{bottom:930.749637pt;}
.y1_c00322{bottom:931.681333pt;}
.hb_c00322{height:48.000000pt;}
.h8_c00322{height:58.666667pt;}
.h9_c00322{height:58.669600pt;}
.hc_c00322{height:58.670891pt;}
.h12_c00322{height:58.672416pt;}
.hd_c00322{height:64.002048pt;}
.h3_c00322{height:64.002592pt;}
.h6_c00322{height:64.003200pt;}
.h4_c00322{height:64.003872pt;}
.h2_c00322{height:64.004608pt;}
.hf_c00322{height:64.005408pt;}
.h11_c00322{height:64.006272pt;}
.ha_c00322{height:69.336800pt;}
.h5_c00322{height:69.337528pt;}
.h10_c00322{height:69.339192pt;}
.he_c00322{height:74.669056pt;}
.h7_c00322{height:74.671184pt;}
.h1_c00322{height:1036.000000pt;}
.h0_c00322{height:1036.266667pt;}
.w0_c00322{width:813.333333pt;}
.x0_c00322{left:0.000000pt;}
.x8a_c00322{left:94.406667pt;}
.x6e_c00322{left:96.034667pt;}
.x5e_c00322{left:97.064000pt;}
.x48_c00322{left:98.285333pt;}
.x2f_c00322{left:99.214667pt;}
.x1f_c00322{left:100.205333pt;}
.x1_c00322{left:101.621333pt;}
.x78_c00322{left:136.736089pt;}
.x5f_c00322{left:137.701333pt;}
.x40_c00322{left:139.305333pt;}
.x11_c00322{left:141.697333pt;}
.x49_c00322{left:177.238667pt;}
.x2_c00322{left:179.262667pt;}
.x6f_c00322{left:189.661333pt;}
.x7d_c00322{left:191.520000pt;}
.x77_c00322{left:193.205576pt;}
.x46_c00322{left:194.400000pt;}
.x28_c00322{left:196.082680pt;}
.xb_c00322{left:197.172000pt;}
.x3_c00322{left:199.062667pt;}
.x60_c00322{left:212.744000pt;}
.xab_c00322{left:219.922667pt;}
.xb1_c00322{left:229.680000pt;}
.x35_c00322{left:235.088000pt;}
.x88_c00322{left:240.005301pt;}
.x3d_c00322{left:243.840000pt;}
.xa3_c00322{left:248.725333pt;}
.x80_c00322{left:250.225333pt;}
.x57_c00322{left:252.787560pt;}
.x91_c00322{left:259.046667pt;}
.x70_c00322{left:260.522667pt;}
.x17_c00322{left:265.593021pt;}
.x9b_c00322{left:268.885859pt;}
.x79_c00322{left:279.460951pt;}
.x50_c00322{left:281.184280pt;}
.x3e_c00322{left:283.200000pt;}
.x4_c00322{left:284.745333pt;}
.xb2_c00322{left:289.200000pt;}
.x61_c00322{left:290.781333pt;}
.x47_c00322{left:292.560000pt;}
.x92_c00322{left:298.169333pt;}
.x51_c00322{left:302.039867pt;}
.x18_c00322{left:303.722780pt;}
.x20_c00322{left:305.172000pt;}
.x7e_c00322{left:309.360000pt;}
.x30_c00322{left:312.386667pt;}
.x12_c00322{left:315.025333pt;}
.x89_c00322{left:319.927755pt;}
.x29_c00322{left:322.948000pt;}
.xac_c00322{left:325.748000pt;}
.x62_c00322{left:329.389333pt;}
.xc_c00322{left:333.494667pt;}
.xa4_c00322{left:336.326667pt;}
.x81_c00322{left:337.824000pt;}
.x6a_c00322{left:338.774667pt;}
.x4a_c00322{left:340.461333pt;}
.x36_c00322{left:341.417333pt;}
.x5_c00322{left:343.556000pt;}
.x8b_c00322{left:346.170667pt;}
.x7a_c00322{left:349.296744pt;}
.x2a_c00322{left:352.942667pt;}
.x9c_c00322{left:356.525859pt;}
.x58_c00322{left:359.864347pt;}
.x21_c00322{left:362.053333pt;}
.xd_c00322{left:363.040000pt;}
.x93_c00322{left:365.606667pt;}
.x19_c00322{left:371.891528pt;}
.x7b_c00322{left:377.364128pt;}
.x6b_c00322{left:378.380000pt;}
.x52_c00322{left:379.795640pt;}
.x31_c00322{left:380.764000pt;}
.x9d_c00322{left:385.304525pt;}
.x8c_c00322{left:387.693333pt;}
.x94_c00322{left:395.620000pt;}
.x4b_c00322{left:400.701333pt;}
.x1a_c00322{left:402.367865pt;}
.x22_c00322{left:403.330667pt;}
.x7f_c00322{left:406.320000pt;}
.x63_c00322{left:408.114667pt;}
.x32_c00322{left:411.256000pt;}
.x9e_c00322{left:415.775192pt;}
.x59_c00322{left:419.850547pt;}
.x23_c00322{left:420.849333pt;}
.xa5_c00322{left:432.977333pt;}
.x95_c00322{left:435.930667pt;}
.x64_c00322{left:436.909333pt;}
.x5a_c00322{left:437.848680pt;}
.x2b_c00322{left:439.105333pt;}
.x13_c00322{left:440.313333pt;}
.x6_c00322{left:442.432000pt;}
.x82_c00322{left:446.308000pt;}
.x41_c00322{left:447.745333pt;}
.x96_c00322{left:453.692000pt;}
.x71_c00322{left:456.854667pt;}
.x37_c00322{left:459.024000pt;}
.xe_c00322{left:460.216000pt;}
.x6c_c00322{left:465.502667pt;}
.x53_c00322{left:466.676573pt;}
.x2c_c00322{left:470.070667pt;}
.xad_c00322{left:472.888000pt;}
.xa6_c00322{left:474.330667pt;}
.x24_c00322{left:478.696000pt;}
.x3f_c00322{left:480.240000pt;}
.x38_c00322{left:487.366667pt;}
.xf_c00322{left:489.261333pt;}
.xa7_c00322{left:493.065333pt;}
.x72_c00322{left:495.268000pt;}
.x4c_c00322{left:496.224000pt;}
.x1b_c00322{left:498.647588pt;}
.x9f_c00322{left:502.187192pt;}
.x65_c00322{left:504.593333pt;}
.x42_c00322{left:507.020000pt;}
.x2d_c00322{left:507.989333pt;}
.x7_c00322{left:511.556000pt;}
.x5b_c00322{left:515.865000pt;}
.x10_c00322{left:519.528000pt;}
.x8d_c00322{left:522.113333pt;}
.x54_c00322{left:525.963387pt;}
.x25_c00322{left:527.668000pt;}
.x83_c00322{left:531.996000pt;}
.x66_c00322{left:534.608000pt;}
.x6d_c00322{left:535.580000pt;}
.x97_c00322{left:542.041333pt;}
.x33_c00322{left:546.370667pt;}
.x73_c00322{left:552.376000pt;}
.xa8_c00322{left:560.029333pt;}
.x4d_c00322{left:564.625333pt;}
.x84_c00322{left:572.322667pt;}
.x67_c00322{left:573.970667pt;}
.x34_c00322{left:575.657333pt;}
.x1c_c00322{left:576.625772pt;}
.xa0_c00322{left:579.709859pt;}
.x74_c00322{left:581.657333pt;}
.x39_c00322{left:584.784000pt;}
.x14_c00322{left:587.202667pt;}
.x43_c00322{left:594.142667pt;}
.xa9_c00322{left:600.358667pt;}
.x2e_c00322{left:607.349333pt;}
.xae_c00322{left:608.501333pt;}
.x7c_c00322{left:611.865632pt;}
.x4e_c00322{left:613.592000pt;}
.x3a_c00322{left:614.549333pt;}
.x98_c00322{left:619.349333pt;}
.xa1_c00322{left:620.284525pt;}
.x75_c00322{left:621.974667pt;}
.x5c_c00322{left:623.181787pt;}
.x44_c00322{left:624.393333pt;}
.x15_c00322{left:625.813333pt;}
.x85_c00322{left:630.166667pt;}
.x55_c00322{left:632.035933pt;}
.x8e_c00322{left:634.652000pt;}
.x8_c00322{left:636.366667pt;}
.xaf_c00322{left:638.994667pt;}
.x8f_c00322{left:640.196000pt;}
.x3b_c00322{left:643.582667pt;}
.x1d_c00322{left:645.267853pt;}
.x26_c00322{left:655.821333pt;}
.x99_c00322{left:657.968000pt;}
.x56_c00322{left:661.799333pt;}
.x45_c00322{left:662.789333pt;}
.xb0_c00322{left:667.061333pt;}
.x90_c00322{left:669.489333pt;}
.x68_c00322{left:672.372000pt;}
.xa2_c00322{left:679.563192pt;}
.x9_c00322{left:685.100000pt;}
.xaa_c00322{left:687.973333pt;}
.x86_c00322{left:697.873333pt;}
.x76_c00322{left:698.785333pt;}
.x16_c00322{left:703.578667pt;}
.x4f_c00322{left:710.546667pt;}
.x3c_c00322{left:712.254667pt;}
.x87_c00322{left:718.736000pt;}
.x27_c00322{left:722.302667pt;}
.x69_c00322{left:728.785333pt;}
.xa_c00322{left:733.828000pt;}
.x1e_c00322{left:734.794169pt;}
.x9a_c00322{left:737.182667pt;}
.x5d_c00322{left:758.749720pt;}
}





/* 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_c00323 {
    display:none;
  }
  .loading-indicator_c00323.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00323 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_c00323 { 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_c00323" -> "#page-container .classname_c00323")
 */
.pf_c00323 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00323 { /* 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_c00323.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00323 { /* 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_c00323 { /* 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_c00323 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00323 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00323 {overflow:visible;}
  }
}
.c_c00323 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00323 { /* 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_c00323:after { /* webkit #35443 */
  content: '';
}
.t_c00323:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00323 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 */
}
.__c00323 { /* 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_c00323 { /* info for Javascript */
  display:none;
}
.l_c00323 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00323 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00323 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00323: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_c00323 {
    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_c00323.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00323.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_c00323 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00323{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00323;src:url('chunks/assets/font_dbd529e162d5851c7bfb6d27.woff2')format("woff");}.ff1_c00323{font-family:ff1_c00323;line-height:1.000000;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;}
.m6_c00323{transform:matrix(0.035539,-0.001601,0.011250,0.249747,0,0);-ms-transform:matrix(0.035539,-0.001601,0.011250,0.249747,0,0);-webkit-transform:matrix(0.035539,-0.001601,0.011250,0.249747,0,0);}
.ma_c00323{transform:matrix(0.070219,-0.003163,0.011250,0.249747,0,0);-ms-transform:matrix(0.070219,-0.003163,0.011250,0.249747,0,0);-webkit-transform:matrix(0.070219,-0.003163,0.011250,0.249747,0,0);}
.m0_c00323{transform:matrix(0.095948,-0.004322,0.011250,0.249747,0,0);-ms-transform:matrix(0.095948,-0.004322,0.011250,0.249747,0,0);-webkit-transform:matrix(0.095948,-0.004322,0.011250,0.249747,0,0);}
.m1_c00323{transform:matrix(0.107276,-0.004832,0.011250,0.249747,0,0);-ms-transform:matrix(0.107276,-0.004832,0.011250,0.249747,0,0);-webkit-transform:matrix(0.107276,-0.004832,0.011250,0.249747,0,0);}
.m3_c00323{transform:matrix(0.205736,-0.009267,0.011250,0.249747,0,0);-ms-transform:matrix(0.205736,-0.009267,0.011250,0.249747,0,0);-webkit-transform:matrix(0.205736,-0.009267,0.011250,0.249747,0,0);}
.m2_c00323{transform:matrix(0.231690,-0.010436,0.011250,0.249747,0,0);-ms-transform:matrix(0.231690,-0.010436,0.011250,0.249747,0,0);-webkit-transform:matrix(0.231690,-0.010436,0.011250,0.249747,0,0);}
.m9_c00323{transform:matrix(0.244872,-0.011030,0.011250,0.249747,0,0);-ms-transform:matrix(0.244872,-0.011030,0.011250,0.249747,0,0);-webkit-transform:matrix(0.244872,-0.011030,0.011250,0.249747,0,0);}
.m5_c00323{transform:matrix(0.298672,-0.013454,0.011250,0.249747,0,0);-ms-transform:matrix(0.298672,-0.013454,0.011250,0.249747,0,0);-webkit-transform:matrix(0.298672,-0.013454,0.011250,0.249747,0,0);}
.m11_c00323{transform:matrix(0.345255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345255,0.000000,0.000000,0.250000,0,0);}
.m12_c00323{transform:matrix(0.366740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366740,0.000000,0.000000,0.250000,0,0);}
.m4_c00323{transform:matrix(0.408790,-0.018414,0.011250,0.249747,0,0);-ms-transform:matrix(0.408790,-0.018414,0.011250,0.249747,0,0);-webkit-transform:matrix(0.408790,-0.018414,0.011250,0.249747,0,0);}
.m7_c00323{transform:matrix(0.429769,-0.019359,0.011250,0.249747,0,0);-ms-transform:matrix(0.429769,-0.019359,0.011250,0.249747,0,0);-webkit-transform:matrix(0.429769,-0.019359,0.011250,0.249747,0,0);}
.mf_c00323{transform:matrix(0.438306,-0.019743,0.011250,0.249747,0,0);-ms-transform:matrix(0.438306,-0.019743,0.011250,0.249747,0,0);-webkit-transform:matrix(0.438306,-0.019743,0.011250,0.249747,0,0);}
.mc_c00323{transform:matrix(0.522710,-0.023545,0.011250,0.249747,0,0);-ms-transform:matrix(0.522710,-0.023545,0.011250,0.249747,0,0);-webkit-transform:matrix(0.522710,-0.023545,0.011250,0.249747,0,0);}
.me_c00323{transform:matrix(0.551151,-0.024827,0.011250,0.249747,0,0);-ms-transform:matrix(0.551151,-0.024827,0.011250,0.249747,0,0);-webkit-transform:matrix(0.551151,-0.024827,0.011250,0.249747,0,0);}
.m8_c00323{transform:matrix(0.567724,-0.025573,0.011250,0.249747,0,0);-ms-transform:matrix(0.567724,-0.025573,0.011250,0.249747,0,0);-webkit-transform:matrix(0.567724,-0.025573,0.011250,0.249747,0,0);}
.m10_c00323{transform:matrix(0.749125,-0.033744,0.011250,0.249747,0,0);-ms-transform:matrix(0.749125,-0.033744,0.011250,0.249747,0,0);-webkit-transform:matrix(0.749125,-0.033744,0.011250,0.249747,0,0);}
.mb_c00323{transform:matrix(0.879139,-0.039601,0.011250,0.249747,0,0);-ms-transform:matrix(0.879139,-0.039601,0.011250,0.249747,0,0);-webkit-transform:matrix(0.879139,-0.039601,0.011250,0.249747,0,0);}
.md_c00323{transform:matrix(0.917240,-0.041317,0.011250,0.249747,0,0);-ms-transform:matrix(0.917240,-0.041317,0.011250,0.249747,0,0);-webkit-transform:matrix(0.917240,-0.041317,0.011250,0.249747,0,0);}
.m13_c00323{transform:matrix(1.557957,-0.062381,0.010002,0.249800,0,0);-ms-transform:matrix(1.557957,-0.062381,0.010002,0.249800,0,0);-webkit-transform:matrix(1.557957,-0.062381,0.010002,0.249800,0,0);}
.m14_c00323{transform:matrix(1.583981,-0.063423,0.010002,0.249800,0,0);-ms-transform:matrix(1.583981,-0.063423,0.010002,0.249800,0,0);-webkit-transform:matrix(1.583981,-0.063423,0.010002,0.249800,0,0);}
.v0_c00323{vertical-align:0.000000px;}
.ls0_c00323{letter-spacing:0.000000px;}
.sc__c00323{text-shadow:none;}
.sc0_c00323{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__c00323{-webkit-text-stroke:0px transparent;}
.sc0_c00323{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00323{word-spacing:0.000000px;}
.fc0_c00323{color:transparent;}
.fs3_c00323{font-size:17.996409px;}
.fs2_c00323{font-size:18.000000px;}
.fs0_c00323{font-size:24.000312px;}
.fs1_c00323{font-size:30.000390px;}
.y0_c00323{bottom:0.000000px;}
.y13_c00323{bottom:1040.316000px;}
.y14_c00323{bottom:1043.666520px;}
.y12_c00323{bottom:1046.649000px;}
.y8_c00323{bottom:1047.066901px;}
.ye_c00323{bottom:1047.608508px;}
.yf_c00323{bottom:1049.049552px;}
.y10_c00323{bottom:1049.891236px;}
.y9_c00323{bottom:1050.079683px;}
.y11_c00323{bottom:1050.332835px;}
.ya_c00323{bottom:1052.995210px;}
.y1_c00323{bottom:1054.353000px;}
.yb_c00323{bottom:1055.027406px;}
.yc_c00323{bottom:1056.044050px;}
.y2_c00323{bottom:1056.825728px;}
.y3_c00323{bottom:1057.801102px;}
.y4_c00323{bottom:1059.216847px;}
.y5_c00323{bottom:1060.326817px;}
.y6_c00323{bottom:1061.797102px;}
.yd_c00323{bottom:1061.953081px;}
.y7_c00323{bottom:1063.874280px;}
.h5_c00323{height:17.996409px;}
.h4_c00323{height:18.000000px;}
.h2_c00323{height:24.000312px;}
.h3_c00323{height:30.000390px;}
.h1_c00323{height:1165.500000px;}
.h0_c00323{height:1165.800000px;}
.w0_c00323{width:915.000000px;}
.x0_c00323{left:0.000000px;}
.x8_c00323{left:54.441766px;}
.x10_c00323{left:64.669500px;}
.x1_c00323{left:101.323500px;}
.x9_c00323{left:106.358460px;}
.x11_c00323{left:148.348737px;}
.x2_c00323{left:156.218051px;}
.x3_c00323{left:177.871376px;}
.xa_c00323{left:191.597271px;}
.xf_c00323{left:201.960000px;}
.x4_c00323{left:209.300915px;}
.xc_c00323{left:229.336332px;}
.x5_c00323{left:233.942249px;}
.x6_c00323{left:266.582576px;}
.xd_c00323{left:289.313147px;}
.xe_c00323{left:300.916680px;}
.xb_c00323{left:310.913039px;}
.x7_c00323{left:312.695916px;}
@media print{
.v0_c00323{vertical-align:0.000000pt;}
.ls0_c00323{letter-spacing:0.000000pt;}
.ws0_c00323{word-spacing:0.000000pt;}
.fs3_c00323{font-size:15.996808pt;}
.fs2_c00323{font-size:16.000000pt;}
.fs0_c00323{font-size:21.333611pt;}
.fs1_c00323{font-size:26.667013pt;}
.y0_c00323{bottom:0.000000pt;}
.y13_c00323{bottom:924.725333pt;}
.y14_c00323{bottom:927.703573pt;}
.y12_c00323{bottom:930.354667pt;}
.y8_c00323{bottom:930.726135pt;}
.ye_c00323{bottom:931.207563pt;}
.yf_c00323{bottom:932.488491pt;}
.y10_c00323{bottom:933.236655pt;}
.y9_c00323{bottom:933.404163pt;}
.y11_c00323{bottom:933.629187pt;}
.ya_c00323{bottom:935.995743pt;}
.y1_c00323{bottom:937.202667pt;}
.yb_c00323{bottom:937.802139pt;}
.yc_c00323{bottom:938.705823pt;}
.y2_c00323{bottom:939.400647pt;}
.y3_c00323{bottom:940.267647pt;}
.y4_c00323{bottom:941.526087pt;}
.y5_c00323{bottom:942.512727pt;}
.y6_c00323{bottom:943.819647pt;}
.yd_c00323{bottom:943.958295pt;}
.y7_c00323{bottom:945.666027pt;}
.h5_c00323{height:15.996808pt;}
.h4_c00323{height:16.000000pt;}
.h2_c00323{height:21.333611pt;}
.h3_c00323{height:26.667013pt;}
.h1_c00323{height:1036.000000pt;}
.h0_c00323{height:1036.266667pt;}
.w0_c00323{width:813.333333pt;}
.x0_c00323{left:0.000000pt;}
.x8_c00323{left:48.392681pt;}
.x10_c00323{left:57.484000pt;}
.x1_c00323{left:90.065333pt;}
.x9_c00323{left:94.540853pt;}
.x11_c00323{left:131.865544pt;}
.x2_c00323{left:138.860489pt;}
.x3_c00323{left:158.107889pt;}
.xa_c00323{left:170.308685pt;}
.xf_c00323{left:179.520000pt;}
.x4_c00323{left:186.045257pt;}
.xc_c00323{left:203.854517pt;}
.x5_c00323{left:207.948665pt;}
.x6_c00323{left:236.962289pt;}
.xd_c00323{left:257.167241pt;}
.xe_c00323{left:267.481493pt;}
.xb_c00323{left:276.367145pt;}
.x7_c00323{left:277.951925pt;}
}





/* 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_c00324 {
    display:none;
  }
  .loading-indicator_c00324.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00324 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_c00324 { 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_c00324" -> "#page-container .classname_c00324")
 */
.pf_c00324 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00324 { /* 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_c00324.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00324 { /* 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_c00324 { /* 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_c00324 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00324 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00324 {overflow:visible;}
  }
}
.c_c00324 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00324 { /* 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_c00324:after { /* webkit #35443 */
  content: '';
}
.t_c00324:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00324 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 */
}
.__c00324 { /* 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_c00324 { /* info for Javascript */
  display:none;
}
.l_c00324 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00324 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00324 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00324: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_c00324 {
    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_c00324.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00324.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_c00324 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00324{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00324;src:url('chunks/assets/font_c605e72f209fc835e906f064.woff2')format("woff");}.ff1_c00324{font-family:ff1_c00324;line-height:1.000000;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;}
.m87_c00324{transform:matrix(0.078520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.078520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.078520,0.000000,0.000000,0.250000,0,0);}
.m6e_c00324{transform:matrix(0.124855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124855,0.000000,0.000000,0.250000,0,0);}
.mbe_c00324{transform:matrix(0.129960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129960,0.000000,0.000000,0.250000,0,0);}
.m40_c00324{transform:matrix(0.132690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132690,0.000000,0.000000,0.250000,0,0);}
.mad_c00324{transform:matrix(0.134643,0.000808,-0.001500,0.249996,0,0);-ms-transform:matrix(0.134643,0.000808,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.134643,0.000808,-0.001500,0.249996,0,0);}
.m31_c00324{transform:matrix(0.135260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135260,0.000000,0.000000,0.250000,0,0);}
.m13_c00324{transform:matrix(0.137990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137990,0.000000,0.000000,0.250000,0,0);}
.m95_c00324{transform:matrix(0.140557,0.000843,-0.001500,0.249996,0,0);-ms-transform:matrix(0.140557,0.000843,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.140557,0.000843,-0.001500,0.249996,0,0);}
.mc_c00324{transform:matrix(0.142300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142300,0.000000,0.000000,0.250000,0,0);}
.m3b_c00324{transform:matrix(0.150420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150420,0.000000,0.000000,0.250000,0,0);}
.md2_c00324{transform:matrix(0.150530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150530,0.000000,0.000000,0.250000,0,0);}
.m12_c00324{transform:matrix(0.153200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153200,0.000000,0.000000,0.250000,0,0);}
.m4e_c00324{transform:matrix(0.153340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153340,0.000000,0.000000,0.250000,0,0);}
.m86_c00324{transform:matrix(0.164655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164655,0.000000,0.000000,0.250000,0,0);}
.m4c_c00324{transform:matrix(0.171550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171550,0.000000,0.000000,0.250000,0,0);}
.m79_c00324{transform:matrix(0.177895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177895,0.000000,0.000000,0.250000,0,0);}
.m5a_c00324{transform:matrix(0.186090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186090,0.000000,0.000000,0.250000,0,0);}
.m84_c00324{transform:matrix(0.189745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189745,0.000000,0.000000,0.250000,0,0);}
.m48_c00324{transform:matrix(0.190600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190600,0.000000,0.000000,0.250000,0,0);}
.m22_c00324{transform:matrix(0.193735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193735,0.000000,0.000000,0.250000,0,0);}
.m4a_c00324{transform:matrix(0.193805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193805,0.000000,0.000000,0.250000,0,0);}
.mb7_c00324{transform:matrix(0.194585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194585,0.000000,0.000000,0.250000,0,0);}
.ma2_c00324{transform:matrix(0.196291,0.001178,-0.001500,0.249996,0,0);-ms-transform:matrix(0.196291,0.001178,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.196291,0.001178,-0.001500,0.249996,0,0);}
.m1c_c00324{transform:matrix(0.196610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196610,0.000000,0.000000,0.250000,0,0);}
.m69_c00324{transform:matrix(0.197185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197185,0.000000,0.000000,0.250000,0,0);}
.m2f_c00324{transform:matrix(0.201510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201510,0.000000,0.000000,0.250000,0,0);}
.m7c_c00324{transform:matrix(0.204155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204155,0.000000,0.000000,0.250000,0,0);}
.m5b_c00324{transform:matrix(0.206095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206095,0.000000,0.000000,0.250000,0,0);}
.m7d_c00324{transform:matrix(0.206155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206155,0.000000,0.000000,0.250000,0,0);}
.m7f_c00324{transform:matrix(0.209475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209475,0.000000,0.000000,0.250000,0,0);}
.mac_c00324{transform:matrix(0.210581,0.001263,-0.001500,0.249996,0,0);-ms-transform:matrix(0.210581,0.001263,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.210581,0.001263,-0.001500,0.249996,0,0);}
.m78_c00324{transform:matrix(0.211415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211415,0.000000,0.000000,0.250000,0,0);}
.m7e_c00324{transform:matrix(0.211575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211575,0.000000,0.000000,0.250000,0,0);}
.m80_c00324{transform:matrix(0.212285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212285,0.000000,0.000000,0.250000,0,0);}
.m6b_c00324{transform:matrix(0.213135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213135,0.000000,0.000000,0.250000,0,0);}
.m47_c00324{transform:matrix(0.214875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214875,0.000000,0.000000,0.250000,0,0);}
.m23_c00324{transform:matrix(0.214955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214955,0.000000,0.000000,0.250000,0,0);}
.m98_c00324{transform:matrix(0.215781,0.001295,-0.001500,0.249996,0,0);-ms-transform:matrix(0.215781,0.001295,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.215781,0.001295,-0.001500,0.249996,0,0);}
.m82_c00324{transform:matrix(0.215805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215805,0.000000,0.000000,0.250000,0,0);}
.m7b_c00324{transform:matrix(0.216215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216215,0.000000,0.000000,0.250000,0,0);}
.m85_c00324{transform:matrix(0.216660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216660,0.000000,0.000000,0.250000,0,0);}
.m76_c00324{transform:matrix(0.216910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216910,0.000000,0.000000,0.250000,0,0);}
.m83_c00324{transform:matrix(0.217280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217280,0.000000,0.000000,0.250000,0,0);}
.m58_c00324{transform:matrix(0.217615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217615,0.000000,0.000000,0.250000,0,0);}
.m8e_c00324{transform:matrix(0.218086,0.001309,-0.001500,0.249996,0,0);-ms-transform:matrix(0.218086,0.001309,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.218086,0.001309,-0.001500,0.249996,0,0);}
.m7a_c00324{transform:matrix(0.218350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218350,0.000000,0.000000,0.250000,0,0);}
.m57_c00324{transform:matrix(0.218610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218610,0.000000,0.000000,0.250000,0,0);}
.m71_c00324{transform:matrix(0.220020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220020,0.000000,0.000000,0.250000,0,0);}
.mc0_c00324{transform:matrix(0.220255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220255,0.000000,0.000000,0.250000,0,0);}
.m99_c00324{transform:matrix(0.220506,0.001323,-0.001500,0.249996,0,0);-ms-transform:matrix(0.220506,0.001323,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.220506,0.001323,-0.001500,0.249996,0,0);}
.mb3_c00324{transform:matrix(0.220510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220510,0.000000,0.000000,0.250000,0,0);}
.m5d_c00324{transform:matrix(0.220900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220900,0.000000,0.000000,0.250000,0,0);}
.m1e_c00324{transform:matrix(0.221450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221450,0.000000,0.000000,0.250000,0,0);}
.m11_c00324{transform:matrix(0.221880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221880,0.000000,0.000000,0.250000,0,0);}
.mb5_c00324{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m81_c00324{transform:matrix(0.222650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222650,0.000000,0.000000,0.250000,0,0);}
.m89_c00324{transform:matrix(0.223146,0.001339,-0.001500,0.249996,0,0);-ms-transform:matrix(0.223146,0.001339,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.223146,0.001339,-0.001500,0.249996,0,0);}
.mb0_c00324{transform:matrix(0.223176,0.001339,-0.001500,0.249996,0,0);-ms-transform:matrix(0.223176,0.001339,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.223176,0.001339,-0.001500,0.249996,0,0);}
.mbd_c00324{transform:matrix(0.223945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223945,0.000000,0.000000,0.250000,0,0);}
.m9d_c00324{transform:matrix(0.223966,0.001344,-0.001500,0.249996,0,0);-ms-transform:matrix(0.223966,0.001344,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.223966,0.001344,-0.001500,0.249996,0,0);}
.m2b_c00324{transform:matrix(0.224235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224235,0.000000,0.000000,0.250000,0,0);}
.m17_c00324{transform:matrix(0.224720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224720,0.000000,0.000000,0.250000,0,0);}
.mca_c00324{transform:matrix(0.225322,0.001127,-0.001250,0.249997,0,0);-ms-transform:matrix(0.225322,0.001127,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.225322,0.001127,-0.001250,0.249997,0,0);}
.md_c00324{transform:matrix(0.225525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225525,0.000000,0.000000,0.250000,0,0);}
.m3d_c00324{transform:matrix(0.225570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225570,0.000000,0.000000,0.250000,0,0);}
.m8b_c00324{transform:matrix(0.225636,0.001354,-0.001500,0.249996,0,0);-ms-transform:matrix(0.225636,0.001354,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.225636,0.001354,-0.001500,0.249996,0,0);}
.m3f_c00324{transform:matrix(0.226400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226400,0.000000,0.000000,0.250000,0,0);}
.mb4_c00324{transform:matrix(0.226555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226555,0.000000,0.000000,0.250000,0,0);}
.m49_c00324{transform:matrix(0.228040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228040,0.000000,0.000000,0.250000,0,0);}
.mc1_c00324{transform:matrix(0.228160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228160,0.000000,0.000000,0.250000,0,0);}
.maa_c00324{transform:matrix(0.229146,0.001375,-0.001500,0.249996,0,0);-ms-transform:matrix(0.229146,0.001375,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.229146,0.001375,-0.001500,0.249996,0,0);}
.m9e_c00324{transform:matrix(0.229521,0.001377,-0.001500,0.249996,0,0);-ms-transform:matrix(0.229521,0.001377,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.229521,0.001377,-0.001500,0.249996,0,0);}
.m92_c00324{transform:matrix(0.229971,0.001380,-0.001500,0.249996,0,0);-ms-transform:matrix(0.229971,0.001380,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.229971,0.001380,-0.001500,0.249996,0,0);}
.m43_c00324{transform:matrix(0.230200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230200,0.000000,0.000000,0.250000,0,0);}
.m67_c00324{transform:matrix(0.230285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230285,0.000000,0.000000,0.250000,0,0);}
.m60_c00324{transform:matrix(0.231625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231625,0.000000,0.000000,0.250000,0,0);}
.m16_c00324{transform:matrix(0.233240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233240,0.000000,0.000000,0.250000,0,0);}
.m6a_c00324{transform:matrix(0.233685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233685,0.000000,0.000000,0.250000,0,0);}
.m10_c00324{transform:matrix(0.235080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235080,0.000000,0.000000,0.250000,0,0);}
.m74_c00324{transform:matrix(0.235125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235125,0.000000,0.000000,0.250000,0,0);}
.m94_c00324{transform:matrix(0.235636,0.001414,-0.001500,0.249996,0,0);-ms-transform:matrix(0.235636,0.001414,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.235636,0.001414,-0.001500,0.249996,0,0);}
.m9c_c00324{transform:matrix(0.235846,0.001415,-0.001500,0.249996,0,0);-ms-transform:matrix(0.235846,0.001415,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.235846,0.001415,-0.001500,0.249996,0,0);}
.m50_c00324{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m64_c00324{transform:matrix(0.237595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237595,0.000000,0.000000,0.250000,0,0);}
.ma7_c00324{transform:matrix(0.237826,0.001427,-0.001500,0.249996,0,0);-ms-transform:matrix(0.237826,0.001427,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.237826,0.001427,-0.001500,0.249996,0,0);}
.m2d_c00324{transform:matrix(0.238535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238535,0.000000,0.000000,0.250000,0,0);}
.m26_c00324{transform:matrix(0.238570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238570,0.000000,0.000000,0.250000,0,0);}
.m42_c00324{transform:matrix(0.239325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239325,0.000000,0.000000,0.250000,0,0);}
.m6c_c00324{transform:matrix(0.239735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239735,0.000000,0.000000,0.250000,0,0);}
.m61_c00324{transform:matrix(0.240065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240065,0.000000,0.000000,0.250000,0,0);}
.m73_c00324{transform:matrix(0.240635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240635,0.000000,0.000000,0.250000,0,0);}
.m25_c00324{transform:matrix(0.241520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241520,0.000000,0.000000,0.250000,0,0);}
.m34_c00324{transform:matrix(0.242020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242020,0.000000,0.000000,0.250000,0,0);}
.m21_c00324{transform:matrix(0.242240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242240,0.000000,0.000000,0.250000,0,0);}
.m4_c00324{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m8f_c00324{transform:matrix(0.242846,0.001457,-0.001500,0.249996,0,0);-ms-transform:matrix(0.242846,0.001457,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.242846,0.001457,-0.001500,0.249996,0,0);}
.m97_c00324{transform:matrix(0.243206,0.001459,-0.001500,0.249996,0,0);-ms-transform:matrix(0.243206,0.001459,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.243206,0.001459,-0.001500,0.249996,0,0);}
.m3e_c00324{transform:matrix(0.243395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243395,0.000000,0.000000,0.250000,0,0);}
.m19_c00324{transform:matrix(0.243495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243495,0.000000,0.000000,0.250000,0,0);}
.ma4_c00324{transform:matrix(0.243536,0.001461,-0.001500,0.249996,0,0);-ms-transform:matrix(0.243536,0.001461,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.243536,0.001461,-0.001500,0.249996,0,0);}
.m6f_c00324{transform:matrix(0.243905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243905,0.000000,0.000000,0.250000,0,0);}
.md0_c00324{transform:matrix(0.243935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243935,0.000000,0.000000,0.250000,0,0);}
.m6d_c00324{transform:matrix(0.244385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244385,0.000000,0.000000,0.250000,0,0);}
.m77_c00324{transform:matrix(0.244760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244760,0.000000,0.000000,0.250000,0,0);}
.ma6_c00324{transform:matrix(0.245266,0.001472,-0.001500,0.249996,0,0);-ms-transform:matrix(0.245266,0.001472,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.245266,0.001472,-0.001500,0.249996,0,0);}
.m59_c00324{transform:matrix(0.245840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245840,0.000000,0.000000,0.250000,0,0);}
.mb9_c00324{transform:matrix(0.246960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246960,0.000000,0.000000,0.250000,0,0);}
.maf_c00324{transform:matrix(0.247781,0.001487,-0.001500,0.249996,0,0);-ms-transform:matrix(0.247781,0.001487,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.247781,0.001487,-0.001500,0.249996,0,0);}
.m88_c00324{transform:matrix(0.248456,0.001491,-0.001500,0.249996,0,0);-ms-transform:matrix(0.248456,0.001491,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.248456,0.001491,-0.001500,0.249996,0,0);}
.mb6_c00324{transform:matrix(0.248555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248555,0.000000,0.000000,0.250000,0,0);}
.m1b_c00324{transform:matrix(0.248585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248585,0.000000,0.000000,0.250000,0,0);}
.mae_c00324{transform:matrix(0.250305,0.001502,-0.001500,0.249996,0,0);-ms-transform:matrix(0.250305,0.001502,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.250305,0.001502,-0.001500,0.249996,0,0);}
.m70_c00324{transform:matrix(0.250370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250370,0.000000,0.000000,0.250000,0,0);}
.ma1_c00324{transform:matrix(0.250535,0.001503,-0.001500,0.249996,0,0);-ms-transform:matrix(0.250535,0.001503,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.250535,0.001503,-0.001500,0.249996,0,0);}
.m93_c00324{transform:matrix(0.251050,0.001506,-0.001500,0.249996,0,0);-ms-transform:matrix(0.251050,0.001506,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.251050,0.001506,-0.001500,0.249996,0,0);}
.m38_c00324{transform:matrix(0.251125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251125,0.000000,0.000000,0.250000,0,0);}
.m65_c00324{transform:matrix(0.251335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251335,0.000000,0.000000,0.250000,0,0);}
.m5c_c00324{transform:matrix(0.252160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252160,0.000000,0.000000,0.250000,0,0);}
.mba_c00324{transform:matrix(0.252355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252355,0.000000,0.000000,0.250000,0,0);}
.m15_c00324{transform:matrix(0.252845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252845,0.000000,0.000000,0.250000,0,0);}
.m9b_c00324{transform:matrix(0.252875,0.001517,-0.001500,0.249996,0,0);-ms-transform:matrix(0.252875,0.001517,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.252875,0.001517,-0.001500,0.249996,0,0);}
.mb1_c00324{transform:matrix(0.253975,0.001524,-0.001500,0.249996,0,0);-ms-transform:matrix(0.253975,0.001524,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.253975,0.001524,-0.001500,0.249996,0,0);}
.m4b_c00324{transform:matrix(0.254150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254150,0.000000,0.000000,0.250000,0,0);}
.mab_c00324{transform:matrix(0.254755,0.001529,-0.001500,0.249996,0,0);-ms-transform:matrix(0.254755,0.001529,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.254755,0.001529,-0.001500,0.249996,0,0);}
.m75_c00324{transform:matrix(0.255375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255375,0.000000,0.000000,0.250000,0,0);}
.m5e_c00324{transform:matrix(0.255570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255570,0.000000,0.000000,0.250000,0,0);}
.me_c00324{transform:matrix(0.255640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255640,0.000000,0.000000,0.250000,0,0);}
.m45_c00324{transform:matrix(0.255785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255785,0.000000,0.000000,0.250000,0,0);}
.mb2_c00324{transform:matrix(0.255885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255885,0.000000,0.000000,0.250000,0,0);}
.mce_c00324{transform:matrix(0.256450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256450,0.000000,0.000000,0.250000,0,0);}
.mbb_c00324{transform:matrix(0.256540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256540,0.000000,0.000000,0.250000,0,0);}
.m5f_c00324{transform:matrix(0.256590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256590,0.000000,0.000000,0.250000,0,0);}
.ma0_c00324{transform:matrix(0.257015,0.001542,-0.001500,0.249996,0,0);-ms-transform:matrix(0.257015,0.001542,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.257015,0.001542,-0.001500,0.249996,0,0);}
.m66_c00324{transform:matrix(0.257100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257100,0.000000,0.000000,0.250000,0,0);}
.m4d_c00324{transform:matrix(0.257180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257180,0.000000,0.000000,0.250000,0,0);}
.m52_c00324{transform:matrix(0.257575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257575,0.000000,0.000000,0.250000,0,0);}
.m46_c00324{transform:matrix(0.257695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257695,0.000000,0.000000,0.250000,0,0);}
.m62_c00324{transform:matrix(0.258230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258230,0.000000,0.000000,0.250000,0,0);}
.mc9_c00324{transform:matrix(0.258742,0.001294,-0.001250,0.249997,0,0);-ms-transform:matrix(0.258742,0.001294,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.258742,0.001294,-0.001250,0.249997,0,0);}
.m37_c00324{transform:matrix(0.258745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258745,0.000000,0.000000,0.250000,0,0);}
.mc4_c00324{transform:matrix(0.259187,0.001296,-0.001250,0.249997,0,0);-ms-transform:matrix(0.259187,0.001296,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.259187,0.001296,-0.001250,0.249997,0,0);}
.m41_c00324{transform:matrix(0.260350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260350,0.000000,0.000000,0.250000,0,0);}
.m3c_c00324{transform:matrix(0.260735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260735,0.000000,0.000000,0.250000,0,0);}
.m55_c00324{transform:matrix(0.261065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261065,0.000000,0.000000,0.250000,0,0);}
.m29_c00324{transform:matrix(0.261720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261720,0.000000,0.000000,0.250000,0,0);}
.m1a_c00324{transform:matrix(0.262745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262745,0.000000,0.000000,0.250000,0,0);}
.mbf_c00324{transform:matrix(0.262885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262885,0.000000,0.000000,0.250000,0,0);}
.m1d_c00324{transform:matrix(0.263450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263450,0.000000,0.000000,0.250000,0,0);}
.mc2_c00324{transform:matrix(0.264365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264365,0.000000,0.000000,0.250000,0,0);}
.m24_c00324{transform:matrix(0.265095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265095,0.000000,0.000000,0.250000,0,0);}
.md1_c00324{transform:matrix(0.265420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265420,0.000000,0.000000,0.250000,0,0);}
.ma5_c00324{transform:matrix(0.265505,0.001593,-0.001500,0.249996,0,0);-ms-transform:matrix(0.265505,0.001593,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.265505,0.001593,-0.001500,0.249996,0,0);}
.m20_c00324{transform:matrix(0.265600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265600,0.000000,0.000000,0.250000,0,0);}
.m30_c00324{transform:matrix(0.266390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266390,0.000000,0.000000,0.250000,0,0);}
.m2e_c00324{transform:matrix(0.266570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266570,0.000000,0.000000,0.250000,0,0);}
.m8c_c00324{transform:matrix(0.266760,0.001601,-0.001500,0.249996,0,0);-ms-transform:matrix(0.266760,0.001601,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.266760,0.001601,-0.001500,0.249996,0,0);}
.ma3_c00324{transform:matrix(0.266940,0.001602,-0.001500,0.249996,0,0);-ms-transform:matrix(0.266940,0.001602,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.266940,0.001602,-0.001500,0.249996,0,0);}
.m9a_c00324{transform:matrix(0.267645,0.001606,-0.001500,0.249996,0,0);-ms-transform:matrix(0.267645,0.001606,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.267645,0.001606,-0.001500,0.249996,0,0);}
.m1f_c00324{transform:matrix(0.267680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267680,0.000000,0.000000,0.250000,0,0);}
.m8a_c00324{transform:matrix(0.267695,0.001606,-0.001500,0.249996,0,0);-ms-transform:matrix(0.267695,0.001606,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.267695,0.001606,-0.001500,0.249996,0,0);}
.m63_c00324{transform:matrix(0.267970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267970,0.000000,0.000000,0.250000,0,0);}
.m91_c00324{transform:matrix(0.268060,0.001608,-0.001500,0.249996,0,0);-ms-transform:matrix(0.268060,0.001608,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.268060,0.001608,-0.001500,0.249996,0,0);}
.m44_c00324{transform:matrix(0.268725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268725,0.000000,0.000000,0.250000,0,0);}
.mb8_c00324{transform:matrix(0.269315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269315,0.000000,0.000000,0.250000,0,0);}
.m14_c00324{transform:matrix(0.270675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270675,0.000000,0.000000,0.250000,0,0);}
.mcf_c00324{transform:matrix(0.271610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271610,0.000000,0.000000,0.250000,0,0);}
.m32_c00324{transform:matrix(0.272630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272630,0.000000,0.000000,0.250000,0,0);}
.mbc_c00324{transform:matrix(0.272695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272695,0.000000,0.000000,0.250000,0,0);}
.m90_c00324{transform:matrix(0.272760,0.001637,-0.001500,0.249996,0,0);-ms-transform:matrix(0.272760,0.001637,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.272760,0.001637,-0.001500,0.249996,0,0);}
.m96_c00324{transform:matrix(0.274960,0.001650,-0.001500,0.249996,0,0);-ms-transform:matrix(0.274960,0.001650,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.274960,0.001650,-0.001500,0.249996,0,0);}
.m68_c00324{transform:matrix(0.275230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275230,0.000000,0.000000,0.250000,0,0);}
.mf_c00324{transform:matrix(0.275880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275880,0.000000,0.000000,0.250000,0,0);}
.mcb_c00324{transform:matrix(0.276172,0.001381,-0.001250,0.249997,0,0);-ms-transform:matrix(0.276172,0.001381,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.276172,0.001381,-0.001250,0.249997,0,0);}
.mcc_c00324{transform:matrix(0.276327,0.001382,-0.001250,0.249997,0,0);-ms-transform:matrix(0.276327,0.001382,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.276327,0.001382,-0.001250,0.249997,0,0);}
.m8d_c00324{transform:matrix(0.276525,0.001659,-0.001500,0.249996,0,0);-ms-transform:matrix(0.276525,0.001659,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.276525,0.001659,-0.001500,0.249996,0,0);}
.m9f_c00324{transform:matrix(0.276615,0.001660,-0.001500,0.249996,0,0);-ms-transform:matrix(0.276615,0.001660,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.276615,0.001660,-0.001500,0.249996,0,0);}
.m18_c00324{transform:matrix(0.276755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276755,0.000000,0.000000,0.250000,0,0);}
.m33_c00324{transform:matrix(0.277050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277050,0.000000,0.000000,0.250000,0,0);}
.m8_c00324{transform:matrix(0.279025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279025,0.000000,0.000000,0.250000,0,0);}
.m2a_c00324{transform:matrix(0.281790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281790,0.000000,0.000000,0.250000,0,0);}
.mc6_c00324{transform:matrix(0.283926,0.001420,-0.001250,0.249997,0,0);-ms-transform:matrix(0.283926,0.001420,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.283926,0.001420,-0.001250,0.249997,0,0);}
.m72_c00324{transform:matrix(0.284310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284310,0.000000,0.000000,0.250000,0,0);}
.mc5_c00324{transform:matrix(0.284811,0.001424,-0.001250,0.249997,0,0);-ms-transform:matrix(0.284811,0.001424,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.284811,0.001424,-0.001250,0.249997,0,0);}
.m56_c00324{transform:matrix(0.285420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285420,0.000000,0.000000,0.250000,0,0);}
.m4f_c00324{transform:matrix(0.285640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285640,0.000000,0.000000,0.250000,0,0);}
.m2c_c00324{transform:matrix(0.286645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286645,0.000000,0.000000,0.250000,0,0);}
.m39_c00324{transform:matrix(0.286745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286745,0.000000,0.000000,0.250000,0,0);}
.m28_c00324{transform:matrix(0.287065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287065,0.000000,0.000000,0.250000,0,0);}
.m36_c00324{transform:matrix(0.288675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288675,0.000000,0.000000,0.250000,0,0);}
.m3a_c00324{transform:matrix(0.288825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288825,0.000000,0.000000,0.250000,0,0);}
.m3_c00324{transform:matrix(0.288870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288870,0.000000,0.000000,0.250000,0,0);}
.mc7_c00324{transform:matrix(0.288926,0.001445,-0.001250,0.249997,0,0);-ms-transform:matrix(0.288926,0.001445,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.288926,0.001445,-0.001250,0.249997,0,0);}
.mc8_c00324{transform:matrix(0.290621,0.001453,-0.001250,0.249997,0,0);-ms-transform:matrix(0.290621,0.001453,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.290621,0.001453,-0.001250,0.249997,0,0);}
.mc3_c00324{transform:matrix(0.291466,0.001457,-0.001250,0.249997,0,0);-ms-transform:matrix(0.291466,0.001457,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.291466,0.001457,-0.001250,0.249997,0,0);}
.m27_c00324{transform:matrix(0.296670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296670,0.000000,0.000000,0.250000,0,0);}
.mcd_c00324{transform:matrix(0.298481,0.001492,-0.001250,0.249997,0,0);-ms-transform:matrix(0.298481,0.001492,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.298481,0.001492,-0.001250,0.249997,0,0);}
.m35_c00324{transform:matrix(0.298675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298675,0.000000,0.000000,0.250000,0,0);}
.m51_c00324{transform:matrix(0.299385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299385,0.000000,0.000000,0.250000,0,0);}
.ma9_c00324{transform:matrix(0.299920,0.001800,-0.001500,0.249996,0,0);-ms-transform:matrix(0.299920,0.001800,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.299920,0.001800,-0.001500,0.249996,0,0);}
.m54_c00324{transform:matrix(0.300575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300575,0.000000,0.000000,0.250000,0,0);}
.ma_c00324{transform:matrix(0.317550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317550,0.000000,0.000000,0.250000,0,0);}
.m53_c00324{transform:matrix(0.320745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320745,0.000000,0.000000,0.250000,0,0);}
.ma8_c00324{transform:matrix(0.339639,0.002038,-0.001500,0.249996,0,0);-ms-transform:matrix(0.339639,0.002038,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.339639,0.002038,-0.001500,0.249996,0,0);}
.m9_c00324{transform:matrix(0.425840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425840,0.000000,0.000000,0.250000,0,0);}
.m1_c00324{transform:matrix(0.461285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461285,0.000000,0.000000,0.250000,0,0);}
.m7_c00324{transform:matrix(0.520255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520255,0.000000,0.000000,0.250000,0,0);}
.mb_c00324{transform:matrix(0.526015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526015,0.000000,0.000000,0.250000,0,0);}
.m0_c00324{transform:matrix(0.610585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.610585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.610585,0.000000,0.000000,0.250000,0,0);}
.m2_c00324{transform:matrix(0.620290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620290,0.000000,0.000000,0.250000,0,0);}
.m6_c00324{transform:matrix(0.624915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.624915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.624915,0.000000,0.000000,0.250000,0,0);}
.m5_c00324{transform:matrix(0.629910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.629910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.629910,0.000000,0.000000,0.250000,0,0);}
.v0_c00324{vertical-align:0.000000px;}
.ls0_c00324{letter-spacing:0.000000px;}
.sc__c00324{text-shadow:none;}
.sc0_c00324{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__c00324{-webkit-text-stroke:0px transparent;}
.sc0_c00324{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00324{word-spacing:0.000000px;}
.fc0_c00324{color:transparent;}
.fs3_c00324{font-size:30.000000px;}
.fs0_c00324{font-size:36.000000px;}
.fs4_c00324{font-size:42.000000px;}
.fs1_c00324{font-size:66.000000px;}
.fsa_c00324{font-size:66.000825px;}
.fs5_c00324{font-size:72.000000px;}
.fs8_c00324{font-size:72.001296px;}
.fs2_c00324{font-size:78.000000px;}
.fs9_c00324{font-size:78.001404px;}
.fs6_c00324{font-size:84.000000px;}
.fs7_c00324{font-size:90.000000px;}
.y0_c00324{bottom:0.000000px;}
.y54_c00324{bottom:282.420000px;}
.y53_c00324{bottom:311.269463px;}
.y52_c00324{bottom:311.547593px;}
.y51_c00324{bottom:311.866185px;}
.y50_c00324{bottom:312.032243px;}
.y4f_c00324{bottom:312.205050px;}
.y4e_c00324{bottom:312.583035px;}
.y4d_c00324{bottom:312.970507px;}
.y4c_c00324{bottom:313.081125px;}
.y4b_c00324{bottom:313.410533px;}
.y4a_c00324{bottom:313.627943px;}
.y49_c00324{bottom:314.010000px;}
.y48_c00324{bottom:345.997500px;}
.y47_c00324{bottom:377.179500px;}
.y46_c00324{bottom:407.043897px;}
.y45_c00324{bottom:407.314419px;}
.y44_c00324{bottom:407.959197px;}
.y43_c00324{bottom:408.955524px;}
.y42_c00324{bottom:409.075395px;}
.y41_c00324{bottom:409.354026px;}
.yb_c00324{bottom:409.980000px;}
.y40_c00324{bottom:410.006886px;}
.y3f_c00324{bottom:410.398899px;}
.y32_c00324{bottom:440.116380px;}
.y31_c00324{bottom:440.116500px;}
.y33_c00324{bottom:440.116980px;}
.y34_c00324{bottom:440.117580px;}
.y38_c00324{bottom:440.117847px;}
.y3e_c00324{bottom:440.117994px;}
.y35_c00324{bottom:440.118009px;}
.y39_c00324{bottom:440.118276px;}
.y37_c00324{bottom:440.118447px;}
.y36_c00324{bottom:440.118558px;}
.y3a_c00324{bottom:440.118636px;}
.y3d_c00324{bottom:440.118705px;}
.y3c_c00324{bottom:440.118945px;}
.y3b_c00324{bottom:440.119056px;}
.y30_c00324{bottom:471.543264px;}
.y2f_c00324{bottom:471.972960px;}
.y2e_c00324{bottom:472.142424px;}
.y2d_c00324{bottom:472.303761px;}
.y2c_c00324{bottom:472.524450px;}
.y2b_c00324{bottom:473.023347px;}
.y2a_c00324{bottom:473.120478px;}
.y29_c00324{bottom:473.352618px;}
.ya_c00324{bottom:473.572500px;}
.y28_c00324{bottom:473.620998px;}
.y27_c00324{bottom:473.841660px;}
.y26_c00324{bottom:474.388278px;}
.y25_c00324{bottom:533.744595px;}
.y24_c00324{bottom:534.138246px;}
.y23_c00324{bottom:534.337425px;}
.y22_c00324{bottom:534.993660px;}
.y21_c00324{bottom:535.576896px;}
.y20_c00324{bottom:535.855509px;}
.y1f_c00324{bottom:536.317182px;}
.y1e_c00324{bottom:536.578020px;}
.y1d_c00324{bottom:537.030000px;}
.y9_c00324{bottom:537.559500px;}
.y1c_c00324{bottom:566.143500px;}
.y1b_c00324{bottom:597.906000px;}
.y8_c00324{bottom:599.271000px;}
.y1a_c00324{bottom:629.370000px;}
.y19_c00324{bottom:661.375500px;}
.y7_c00324{bottom:662.706000px;}
.y18_c00324{bottom:693.507000px;}
.y17_c00324{bottom:725.308500px;}
.y6_c00324{bottom:726.043500px;}
.y16_c00324{bottom:758.172000px;}
.y15_c00324{bottom:789.678000px;}
.y5_c00324{bottom:791.634000px;}
.y14_c00324{bottom:821.778000px;}
.y13_c00324{bottom:852.034500px;}
.y4_c00324{bottom:853.210500px;}
.y12_c00324{bottom:884.250000px;}
.y11_c00324{bottom:915.453000px;}
.y3_c00324{bottom:916.096500px;}
.y10_c00324{bottom:947.014500px;}
.yf_c00324{bottom:978.877500px;}
.y2_c00324{bottom:979.968000px;}
.ye_c00324{bottom:1011.064500px;}
.yd_c00324{bottom:1042.015500px;}
.y1_c00324{bottom:1043.275500px;}
.yc_c00324{bottom:1121.320500px;}
.h5_c00324{height:30.000000px;}
.h2_c00324{height:36.000000px;}
.h6_c00324{height:42.000000px;}
.h3_c00324{height:66.000000px;}
.hc_c00324{height:66.000825px;}
.h7_c00324{height:72.000000px;}
.ha_c00324{height:72.001296px;}
.h4_c00324{height:78.000000px;}
.hb_c00324{height:78.001404px;}
.h8_c00324{height:84.000000px;}
.h9_c00324{height:90.000000px;}
.h1_c00324{height:1165.500000px;}
.h0_c00324{height:1165.800000px;}
.w0_c00324{width:915.000000px;}
.x0_c00324{left:0.000000px;}
.x4_c00324{left:115.020000px;}
.x2_c00324{left:116.100000px;}
.x1_c00324{left:117.180000px;}
.x3_c00324{left:160.920000px;}
.x22_c00324{left:219.240000px;}
.x46_c00324{left:223.830000px;}
.x12_c00324{left:224.910000px;}
.x7_c00324{left:226.800000px;}
.x58_c00324{left:257.311689px;}
.x3b_c00324{left:258.390000px;}
.x36_c00324{left:268.380000px;}
.x13_c00324{left:269.730000px;}
.x23_c00324{left:290.250000px;}
.x32_c00324{left:292.410000px;}
.x50_c00324{left:300.702000px;}
.x3c_c00324{left:302.130000px;}
.x4d_c00324{left:312.120000px;}
.x8_c00324{left:313.200000px;}
.x59_c00324{left:322.114029px;}
.x17_c00324{left:323.730000px;}
.x64_c00324{left:332.100000px;}
.x53_c00324{left:333.386772px;}
.x37_c00324{left:336.420000px;}
.x6b_c00324{left:343.381500px;}
.x14_c00324{left:345.060000px;}
.x65_c00324{left:354.240000px;}
.x47_c00324{left:355.590000px;}
.x29_c00324{left:356.670000px;}
.x49_c00324{left:366.660000px;}
.x18_c00324{left:368.010000px;}
.x54_c00324{left:377.664042px;}
.x15_c00324{left:379.080000px;}
.x1f_c00324{left:388.800000px;}
.x5f_c00324{left:398.441202px;}
.x25_c00324{left:399.600000px;}
.x30_c00324{left:400.950000px;}
.x66_c00324{left:409.860000px;}
.x2a_c00324{left:411.210000px;}
.x5_c00324{left:412.290000px;}
.x9_c00324{left:421.740000px;}
.x33_c00324{left:422.820000px;}
.x20_c00324{left:423.900000px;}
.x31_c00324{left:425.520000px;}
.x4e_c00324{left:432.270000px;}
.x6_c00324{left:434.160000px;}
.x16_c00324{left:435.780000px;}
.x38_c00324{left:444.960000px;}
.x3d_c00324{left:454.680000px;}
.xa_c00324{left:455.760000px;}
.x2b_c00324{left:457.110000px;}
.x60_c00324{left:464.858202px;}
.x51_c00324{left:467.556000px;}
.x26_c00324{left:478.170000px;}
.x67_c00324{left:486.810000px;}
.x19_c00324{left:489.780000px;}
.xb_c00324{left:491.130000px;}
.x55_c00324{left:497.273262px;}
.x21_c00324{left:500.310000px;}
.x1a_c00324{left:509.760000px;}
.xc_c00324{left:511.920000px;}
.x42_c00324{left:522.720000px;}
.xd_c00324{left:532.170000px;}
.x43_c00324{left:542.700000px;}
.x2c_c00324{left:553.230000px;}
.x5a_c00324{left:563.228214px;}
.x39_c00324{left:564.300000px;}
.x27_c00324{left:565.650000px;}
.x24_c00324{left:566.730000px;}
.x2d_c00324{left:576.180000px;}
.x5b_c00324{left:584.828988px;}
.x1b_c00324{left:585.900000px;}
.x3e_c00324{left:587.250000px;}
.x68_c00324{left:595.890000px;}
.x56_c00324{left:596.923356px;}
.x34_c00324{left:612.900000px;}
.x3a_c00324{left:619.110000px;}
.xe_c00324{left:620.460000px;}
.x48_c00324{left:621.540000px;}
.x61_c00324{left:630.912702px;}
.x1c_c00324{left:642.060000px;}
.x3f_c00324{left:651.780000px;}
.x5c_c00324{left:661.510251px;}
.x69_c00324{left:663.120000px;}
.x4a_c00324{left:664.470000px;}
.x1d_c00324{left:673.650000px;}
.x28_c00324{left:676.080000px;}
.xf_c00324{left:684.990000px;}
.x40_c00324{left:686.340000px;}
.x5d_c00324{left:694.451439px;}
.x44_c00324{left:707.670000px;}
.x6c_c00324{left:715.969500px;}
.x2e_c00324{left:717.660000px;}
.x10_c00324{left:719.010000px;}
.x35_c00324{left:729.810000px;}
.x62_c00324{left:738.375702px;}
.x4b_c00324{left:740.880000px;}
.x11_c00324{left:751.410000px;}
.x4c_c00324{left:771.390000px;}
.x52_c00324{left:772.939500px;}
.x4f_c00324{left:776.250000px;}
.x63_c00324{left:783.462702px;}
.x57_c00324{left:793.205535px;}
.x2f_c00324{left:795.420000px;}
.x6a_c00324{left:803.790000px;}
.x1e_c00324{left:805.140000px;}
.x45_c00324{left:815.940000px;}
.x41_c00324{left:829.440000px;}
.x5e_c00324{left:868.064685px;}
@media print{
.v0_c00324{vertical-align:0.000000pt;}
.ls0_c00324{letter-spacing:0.000000pt;}
.ws0_c00324{word-spacing:0.000000pt;}
.fs3_c00324{font-size:26.666667pt;}
.fs0_c00324{font-size:32.000000pt;}
.fs4_c00324{font-size:37.333333pt;}
.fs1_c00324{font-size:58.666667pt;}
.fsa_c00324{font-size:58.667400pt;}
.fs5_c00324{font-size:64.000000pt;}
.fs8_c00324{font-size:64.001152pt;}
.fs2_c00324{font-size:69.333333pt;}
.fs9_c00324{font-size:69.334581pt;}
.fs6_c00324{font-size:74.666667pt;}
.fs7_c00324{font-size:80.000000pt;}
.y0_c00324{bottom:0.000000pt;}
.y54_c00324{bottom:251.040000pt;}
.y53_c00324{bottom:276.683967pt;}
.y52_c00324{bottom:276.931193pt;}
.y51_c00324{bottom:277.214387pt;}
.y50_c00324{bottom:277.361993pt;}
.y4f_c00324{bottom:277.515600pt;}
.y4e_c00324{bottom:277.851587pt;}
.y4d_c00324{bottom:278.196007pt;}
.y4c_c00324{bottom:278.294333pt;}
.y4b_c00324{bottom:278.587140pt;}
.y4a_c00324{bottom:278.780393pt;}
.y49_c00324{bottom:279.120000pt;}
.y48_c00324{bottom:307.553333pt;}
.y47_c00324{bottom:335.270667pt;}
.y46_c00324{bottom:361.816797pt;}
.y45_c00324{bottom:362.057261pt;}
.y44_c00324{bottom:362.630397pt;}
.y43_c00324{bottom:363.516021pt;}
.y42_c00324{bottom:363.622573pt;}
.y41_c00324{bottom:363.870245pt;}
.yb_c00324{bottom:364.426667pt;}
.y40_c00324{bottom:364.450565pt;}
.y3f_c00324{bottom:364.799021pt;}
.y32_c00324{bottom:391.214560pt;}
.y31_c00324{bottom:391.214667pt;}
.y33_c00324{bottom:391.215093pt;}
.y34_c00324{bottom:391.215627pt;}
.y38_c00324{bottom:391.215864pt;}
.y3e_c00324{bottom:391.215995pt;}
.y35_c00324{bottom:391.216008pt;}
.y39_c00324{bottom:391.216245pt;}
.y37_c00324{bottom:391.216397pt;}
.y36_c00324{bottom:391.216496pt;}
.y3a_c00324{bottom:391.216565pt;}
.y3d_c00324{bottom:391.216627pt;}
.y3c_c00324{bottom:391.216840pt;}
.y3b_c00324{bottom:391.216939pt;}
.y30_c00324{bottom:419.149568pt;}
.y2f_c00324{bottom:419.531520pt;}
.y2e_c00324{bottom:419.682155pt;}
.y2d_c00324{bottom:419.825565pt;}
.y2c_c00324{bottom:420.021733pt;}
.y2b_c00324{bottom:420.465197pt;}
.y2a_c00324{bottom:420.551536pt;}
.y29_c00324{bottom:420.757883pt;}
.ya_c00324{bottom:420.953333pt;}
.y28_c00324{bottom:420.996443pt;}
.y27_c00324{bottom:421.192587pt;}
.y26_c00324{bottom:421.678469pt;}
.y25_c00324{bottom:474.439640pt;}
.y24_c00324{bottom:474.789552pt;}
.y23_c00324{bottom:474.966600pt;}
.y22_c00324{bottom:475.549920pt;}
.y21_c00324{bottom:476.068352pt;}
.y20_c00324{bottom:476.316008pt;}
.y1f_c00324{bottom:476.726384pt;}
.y1e_c00324{bottom:476.958240pt;}
.y1d_c00324{bottom:477.360000pt;}
.y9_c00324{bottom:477.830667pt;}
.y1c_c00324{bottom:503.238667pt;}
.y1b_c00324{bottom:531.472000pt;}
.y8_c00324{bottom:532.685333pt;}
.y1a_c00324{bottom:559.440000pt;}
.y19_c00324{bottom:587.889333pt;}
.y7_c00324{bottom:589.072000pt;}
.y18_c00324{bottom:616.450667pt;}
.y17_c00324{bottom:644.718667pt;}
.y6_c00324{bottom:645.372000pt;}
.y16_c00324{bottom:673.930667pt;}
.y15_c00324{bottom:701.936000pt;}
.y5_c00324{bottom:703.674667pt;}
.y14_c00324{bottom:730.469333pt;}
.y13_c00324{bottom:757.364000pt;}
.y4_c00324{bottom:758.409333pt;}
.y12_c00324{bottom:786.000000pt;}
.y11_c00324{bottom:813.736000pt;}
.y3_c00324{bottom:814.308000pt;}
.y10_c00324{bottom:841.790667pt;}
.yf_c00324{bottom:870.113333pt;}
.y2_c00324{bottom:871.082667pt;}
.ye_c00324{bottom:898.724000pt;}
.yd_c00324{bottom:926.236000pt;}
.y1_c00324{bottom:927.356000pt;}
.yc_c00324{bottom:996.729333pt;}
.h5_c00324{height:26.666667pt;}
.h2_c00324{height:32.000000pt;}
.h6_c00324{height:37.333333pt;}
.h3_c00324{height:58.666667pt;}
.hc_c00324{height:58.667400pt;}
.h7_c00324{height:64.000000pt;}
.ha_c00324{height:64.001152pt;}
.h4_c00324{height:69.333333pt;}
.hb_c00324{height:69.334581pt;}
.h8_c00324{height:74.666667pt;}
.h9_c00324{height:80.000000pt;}
.h1_c00324{height:1036.000000pt;}
.h0_c00324{height:1036.266667pt;}
.w0_c00324{width:813.333333pt;}
.x0_c00324{left:0.000000pt;}
.x4_c00324{left:102.240000pt;}
.x2_c00324{left:103.200000pt;}
.x1_c00324{left:104.160000pt;}
.x3_c00324{left:143.040000pt;}
.x22_c00324{left:194.880000pt;}
.x46_c00324{left:198.960000pt;}
.x12_c00324{left:199.920000pt;}
.x7_c00324{left:201.600000pt;}
.x58_c00324{left:228.721501pt;}
.x3b_c00324{left:229.680000pt;}
.x36_c00324{left:238.560000pt;}
.x13_c00324{left:239.760000pt;}
.x23_c00324{left:258.000000pt;}
.x32_c00324{left:259.920000pt;}
.x50_c00324{left:267.290667pt;}
.x3c_c00324{left:268.560000pt;}
.x4d_c00324{left:277.440000pt;}
.x8_c00324{left:278.400000pt;}
.x59_c00324{left:286.323581pt;}
.x17_c00324{left:287.760000pt;}
.x64_c00324{left:295.200000pt;}
.x53_c00324{left:296.343797pt;}
.x37_c00324{left:299.040000pt;}
.x6b_c00324{left:305.228000pt;}
.x14_c00324{left:306.720000pt;}
.x65_c00324{left:314.880000pt;}
.x47_c00324{left:316.080000pt;}
.x29_c00324{left:317.040000pt;}
.x49_c00324{left:325.920000pt;}
.x18_c00324{left:327.120000pt;}
.x54_c00324{left:335.701371pt;}
.x15_c00324{left:336.960000pt;}
.x1f_c00324{left:345.600000pt;}
.x5f_c00324{left:354.169957pt;}
.x25_c00324{left:355.200000pt;}
.x30_c00324{left:356.400000pt;}
.x66_c00324{left:364.320000pt;}
.x2a_c00324{left:365.520000pt;}
.x5_c00324{left:366.480000pt;}
.x9_c00324{left:374.880000pt;}
.x33_c00324{left:375.840000pt;}
.x20_c00324{left:376.800000pt;}
.x31_c00324{left:378.240000pt;}
.x4e_c00324{left:384.240000pt;}
.x6_c00324{left:385.920000pt;}
.x16_c00324{left:387.360000pt;}
.x38_c00324{left:395.520000pt;}
.x3d_c00324{left:404.160000pt;}
.xa_c00324{left:405.120000pt;}
.x2b_c00324{left:406.320000pt;}
.x60_c00324{left:413.207291pt;}
.x51_c00324{left:415.605333pt;}
.x26_c00324{left:425.040000pt;}
.x67_c00324{left:432.720000pt;}
.x19_c00324{left:435.360000pt;}
.xb_c00324{left:436.560000pt;}
.x55_c00324{left:442.020677pt;}
.x21_c00324{left:444.720000pt;}
.x1a_c00324{left:453.120000pt;}
.xc_c00324{left:455.040000pt;}
.x42_c00324{left:464.640000pt;}
.xd_c00324{left:473.040000pt;}
.x43_c00324{left:482.400000pt;}
.x2c_c00324{left:491.760000pt;}
.x5a_c00324{left:500.647301pt;}
.x39_c00324{left:501.600000pt;}
.x27_c00324{left:502.800000pt;}
.x24_c00324{left:503.760000pt;}
.x2d_c00324{left:512.160000pt;}
.x5b_c00324{left:519.847989pt;}
.x1b_c00324{left:520.800000pt;}
.x3e_c00324{left:522.000000pt;}
.x68_c00324{left:529.680000pt;}
.x56_c00324{left:530.598539pt;}
.x34_c00324{left:544.800000pt;}
.x3a_c00324{left:550.320000pt;}
.xe_c00324{left:551.520000pt;}
.x48_c00324{left:552.480000pt;}
.x61_c00324{left:560.811291pt;}
.x1c_c00324{left:570.720000pt;}
.x3f_c00324{left:579.360000pt;}
.x5c_c00324{left:588.009112pt;}
.x69_c00324{left:589.440000pt;}
.x4a_c00324{left:590.640000pt;}
.x1d_c00324{left:598.800000pt;}
.x28_c00324{left:600.960000pt;}
.xf_c00324{left:608.880000pt;}
.x40_c00324{left:610.080000pt;}
.x5d_c00324{left:617.290168pt;}
.x44_c00324{left:629.040000pt;}
.x6c_c00324{left:636.417333pt;}
.x2e_c00324{left:637.920000pt;}
.x10_c00324{left:639.120000pt;}
.x35_c00324{left:648.720000pt;}
.x62_c00324{left:656.333957pt;}
.x4b_c00324{left:658.560000pt;}
.x11_c00324{left:667.920000pt;}
.x4c_c00324{left:685.680000pt;}
.x52_c00324{left:687.057333pt;}
.x4f_c00324{left:690.000000pt;}
.x63_c00324{left:696.411291pt;}
.x57_c00324{left:705.071587pt;}
.x2f_c00324{left:707.040000pt;}
.x6a_c00324{left:714.480000pt;}
.x1e_c00324{left:715.680000pt;}
.x45_c00324{left:725.280000pt;}
.x41_c00324{left:737.280000pt;}
.x5e_c00324{left:771.613053pt;}
}





/* 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_c00325 {
    display:none;
  }
  .loading-indicator_c00325.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00325 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_c00325 { 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_c00325" -> "#page-container .classname_c00325")
 */
.pf_c00325 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00325 { /* 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_c00325.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00325 { /* 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_c00325 { /* 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_c00325 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00325 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00325 {overflow:visible;}
  }
}
.c_c00325 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00325 { /* 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_c00325:after { /* webkit #35443 */
  content: '';
}
.t_c00325:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00325 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 */
}
.__c00325 { /* 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_c00325 { /* info for Javascript */
  display:none;
}
.l_c00325 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00325 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00325 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00325: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_c00325 {
    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_c00325.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00325.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_c00325 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00325{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00325;src:url('chunks/assets/font_92d6bb63cbc780ceff7db400.woff2')format("woff");}.ff1_c00325{font-family:ff1_c00325;line-height:1.000000;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;}
.m0_c00325{transform:matrix(0.060330,0.001569,-0.006498,0.249916,0,0);-ms-transform:matrix(0.060330,0.001569,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.060330,0.001569,-0.006498,0.249916,0,0);}
.m5_c00325{transform:matrix(0.148490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148490,0.000000,0.000000,0.250000,0,0);}
.m2_c00325{transform:matrix(0.177395,0.004612,-0.006498,0.249916,0,0);-ms-transform:matrix(0.177395,0.004612,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.177395,0.004612,-0.006498,0.249916,0,0);}
.m1_c00325{transform:matrix(0.205566,0.005345,-0.006498,0.249916,0,0);-ms-transform:matrix(0.205566,0.005345,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.205566,0.005345,-0.006498,0.249916,0,0);}
.m3_c00325{transform:matrix(0.210819,0.005481,-0.006498,0.249916,0,0);-ms-transform:matrix(0.210819,0.005481,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.210819,0.005481,-0.006498,0.249916,0,0);}
.m7_c00325{transform:matrix(0.374435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374435,0.000000,0.000000,0.250000,0,0);}
.m6_c00325{transform:matrix(0.395610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395610,0.000000,0.000000,0.250000,0,0);}
.m4_c00325{transform:matrix(0.577215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577215,0.000000,0.000000,0.250000,0,0);}
.m8_c00325{transform:matrix(0.873740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.873740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.873740,0.000000,0.000000,0.250000,0,0);}
.v0_c00325{vertical-align:0.000000px;}
.ls0_c00325{letter-spacing:0.000000px;}
.sc__c00325{text-shadow:none;}
.sc0_c00325{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__c00325{-webkit-text-stroke:0px transparent;}
.sc0_c00325{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00325{word-spacing:0.000000px;}
.fc0_c00325{color:transparent;}
.fs4_c00325{font-size:12.000000px;}
.fs2_c00325{font-size:18.000000px;}
.fs3_c00325{font-size:42.000000px;}
.fs1_c00325{font-size:48.000000px;}
.fs0_c00325{font-size:132.044608px;}
.y0_c00325{bottom:0.000000px;}
.y8_c00325{bottom:654.210000px;}
.y9_c00325{bottom:659.880000px;}
.y7_c00325{bottom:663.120000px;}
.y4_c00325{bottom:1042.881513px;}
.y3_c00325{bottom:1046.113365px;}
.y2_c00325{bottom:1049.790168px;}
.y1_c00325{bottom:1050.577500px;}
.y6_c00325{bottom:1052.730000px;}
.y5_c00325{bottom:1059.349500px;}
.h6_c00325{height:12.000000px;}
.h4_c00325{height:18.000000px;}
.h5_c00325{height:42.000000px;}
.h3_c00325{height:48.000000px;}
.h2_c00325{height:132.044608px;}
.h1_c00325{height:1165.500000px;}
.h0_c00325{height:1165.800000px;}
.w0_c00325{width:915.000000px;}
.x0_c00325{left:0.000000px;}
.x5_c00325{left:401.490000px;}
.x6_c00325{left:425.520000px;}
.x1_c00325{left:445.185000px;}
.x2_c00325{left:475.467000px;}
.x3_c00325{left:616.882500px;}
.x4_c00325{left:741.184500px;}
.x7_c00325{left:882.090000px;}
.x8_c00325{left:891.000000px;}
@media print{
.v0_c00325{vertical-align:0.000000pt;}
.ls0_c00325{letter-spacing:0.000000pt;}
.ws0_c00325{word-spacing:0.000000pt;}
.fs4_c00325{font-size:10.666667pt;}
.fs2_c00325{font-size:16.000000pt;}
.fs3_c00325{font-size:37.333333pt;}
.fs1_c00325{font-size:42.666667pt;}
.fs0_c00325{font-size:117.372985pt;}
.y0_c00325{bottom:0.000000pt;}
.y8_c00325{bottom:581.520000pt;}
.y9_c00325{bottom:586.560000pt;}
.y7_c00325{bottom:589.440000pt;}
.y4_c00325{bottom:927.005789pt;}
.y3_c00325{bottom:929.878547pt;}
.y2_c00325{bottom:933.146816pt;}
.y1_c00325{bottom:933.846667pt;}
.y6_c00325{bottom:935.760000pt;}
.y5_c00325{bottom:941.644000pt;}
.h6_c00325{height:10.666667pt;}
.h4_c00325{height:16.000000pt;}
.h5_c00325{height:37.333333pt;}
.h3_c00325{height:42.666667pt;}
.h2_c00325{height:117.372985pt;}
.h1_c00325{height:1036.000000pt;}
.h0_c00325{height:1036.266667pt;}
.w0_c00325{width:813.333333pt;}
.x0_c00325{left:0.000000pt;}
.x5_c00325{left:356.880000pt;}
.x6_c00325{left:378.240000pt;}
.x1_c00325{left:395.720000pt;}
.x2_c00325{left:422.637333pt;}
.x3_c00325{left:548.340000pt;}
.x4_c00325{left:658.830667pt;}
.x7_c00325{left:784.080000pt;}
.x8_c00325{left:792.000000pt;}
}





/* 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_c00326 {
    display:none;
  }
  .loading-indicator_c00326.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00326 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_c00326 { 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_c00326" -> "#page-container .classname_c00326")
 */
.pf_c00326 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00326 { /* 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_c00326.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00326 { /* 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_c00326 { /* 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_c00326 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00326 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00326 {overflow:visible;}
  }
}
.c_c00326 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00326 { /* 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_c00326:after { /* webkit #35443 */
  content: '';
}
.t_c00326:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00326 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 */
}
.__c00326 { /* 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_c00326 { /* info for Javascript */
  display:none;
}
.l_c00326 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00326 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00326 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00326: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_c00326 {
    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_c00326.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00326.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_c00326 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00326{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00326;src:url('chunks/assets/font_b11a17f404e7258299fdf971.woff2')format("woff");}.ff1_c00326{font-family:ff1_c00326;line-height:1.000000;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;}
.m69_c00326{transform:matrix(0.174999,0.004025,-0.005748,0.249934,0,0);-ms-transform:matrix(0.174999,0.004025,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.174999,0.004025,-0.005748,0.249934,0,0);}
.m67_c00326{transform:matrix(0.178203,0.004099,-0.005748,0.249934,0,0);-ms-transform:matrix(0.178203,0.004099,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.178203,0.004099,-0.005748,0.249934,0,0);}
.m6b_c00326{transform:matrix(0.178688,0.004110,-0.005748,0.249934,0,0);-ms-transform:matrix(0.178688,0.004110,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.178688,0.004110,-0.005748,0.249934,0,0);}
.m68_c00326{transform:matrix(0.181892,0.004184,-0.005748,0.249934,0,0);-ms-transform:matrix(0.181892,0.004184,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.181892,0.004184,-0.005748,0.249934,0,0);}
.m6d_c00326{transform:matrix(0.185436,0.004265,-0.005748,0.249934,0,0);-ms-transform:matrix(0.185436,0.004265,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.185436,0.004265,-0.005748,0.249934,0,0);}
.m52_c00326{transform:matrix(0.188243,0.003953,-0.005249,0.249945,0,0);-ms-transform:matrix(0.188243,0.003953,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.188243,0.003953,-0.005249,0.249945,0,0);}
.m3c_c00326{transform:matrix(0.188393,0.003956,-0.005249,0.249945,0,0);-ms-transform:matrix(0.188393,0.003956,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.188393,0.003956,-0.005249,0.249945,0,0);}
.m64_c00326{transform:matrix(0.197053,0.004532,-0.005748,0.249934,0,0);-ms-transform:matrix(0.197053,0.004532,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.197053,0.004532,-0.005748,0.249934,0,0);}
.m6c_c00326{transform:matrix(0.199212,0.004582,-0.005748,0.249934,0,0);-ms-transform:matrix(0.199212,0.004582,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.199212,0.004582,-0.005748,0.249934,0,0);}
.m57_c00326{transform:matrix(0.202775,0.004258,-0.005249,0.249945,0,0);-ms-transform:matrix(0.202775,0.004258,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.202775,0.004258,-0.005249,0.249945,0,0);}
.m2b_c00326{transform:matrix(0.205520,0.004316,-0.005249,0.249945,0,0);-ms-transform:matrix(0.205520,0.004316,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.205520,0.004316,-0.005249,0.249945,0,0);}
.m50_c00326{transform:matrix(0.207919,0.004366,-0.005249,0.249945,0,0);-ms-transform:matrix(0.207919,0.004366,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.207919,0.004366,-0.005249,0.249945,0,0);}
.m33_c00326{transform:matrix(0.209029,0.004390,-0.005249,0.249945,0,0);-ms-transform:matrix(0.209029,0.004390,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.209029,0.004390,-0.005249,0.249945,0,0);}
.m4c_c00326{transform:matrix(0.211453,0.004441,-0.005249,0.249945,0,0);-ms-transform:matrix(0.211453,0.004441,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.211453,0.004441,-0.005249,0.249945,0,0);}
.m14_c00326{transform:matrix(0.214908,0.004513,-0.005249,0.249945,0,0);-ms-transform:matrix(0.214908,0.004513,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.214908,0.004513,-0.005249,0.249945,0,0);}
.m21_c00326{transform:matrix(0.217007,0.004557,-0.005249,0.249945,0,0);-ms-transform:matrix(0.217007,0.004557,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.217007,0.004557,-0.005249,0.249945,0,0);}
.m1a_c00326{transform:matrix(0.218042,0.004579,-0.005249,0.249945,0,0);-ms-transform:matrix(0.218042,0.004579,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.218042,0.004579,-0.005249,0.249945,0,0);}
.m1b_c00326{transform:matrix(0.218372,0.004586,-0.005249,0.249945,0,0);-ms-transform:matrix(0.218372,0.004586,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.218372,0.004586,-0.005249,0.249945,0,0);}
.m37_c00326{transform:matrix(0.219097,0.004601,-0.005249,0.249945,0,0);-ms-transform:matrix(0.219097,0.004601,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.219097,0.004601,-0.005249,0.249945,0,0);}
.m65_c00326{transform:matrix(0.220017,0.005060,-0.005748,0.249934,0,0);-ms-transform:matrix(0.220017,0.005060,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.220017,0.005060,-0.005748,0.249934,0,0);}
.m27_c00326{transform:matrix(0.221831,0.004658,-0.005249,0.249945,0,0);-ms-transform:matrix(0.221831,0.004658,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.221831,0.004658,-0.005249,0.249945,0,0);}
.m66_c00326{transform:matrix(0.225270,0.005181,-0.005748,0.249934,0,0);-ms-transform:matrix(0.225270,0.005181,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.225270,0.005181,-0.005748,0.249934,0,0);}
.m10_c00326{transform:matrix(0.225860,0.004743,-0.005249,0.249945,0,0);-ms-transform:matrix(0.225860,0.004743,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.225860,0.004743,-0.005249,0.249945,0,0);}
.md_c00326{transform:matrix(0.226955,0.004766,-0.005249,0.249945,0,0);-ms-transform:matrix(0.226955,0.004766,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.226955,0.004766,-0.005249,0.249945,0,0);}
.m18_c00326{transform:matrix(0.227615,0.004780,-0.005249,0.249945,0,0);-ms-transform:matrix(0.227615,0.004780,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.227615,0.004780,-0.005249,0.249945,0,0);}
.m47_c00326{transform:matrix(0.228120,0.004791,-0.005249,0.249945,0,0);-ms-transform:matrix(0.228120,0.004791,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.228120,0.004791,-0.005249,0.249945,0,0);}
.m15_c00326{transform:matrix(0.228825,0.004805,-0.005249,0.249945,0,0);-ms-transform:matrix(0.228825,0.004805,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.228825,0.004805,-0.005249,0.249945,0,0);}
.m39_c00326{transform:matrix(0.231049,0.004852,-0.005249,0.249945,0,0);-ms-transform:matrix(0.231049,0.004852,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.231049,0.004852,-0.005249,0.249945,0,0);}
.m9_c00326{transform:matrix(0.232354,0.004879,-0.005249,0.249945,0,0);-ms-transform:matrix(0.232354,0.004879,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.232354,0.004879,-0.005249,0.249945,0,0);}
.m1e_c00326{transform:matrix(0.232934,0.004892,-0.005249,0.249945,0,0);-ms-transform:matrix(0.232934,0.004892,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.232934,0.004892,-0.005249,0.249945,0,0);}
.m49_c00326{transform:matrix(0.233683,0.004907,-0.005249,0.249945,0,0);-ms-transform:matrix(0.233683,0.004907,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.233683,0.004907,-0.005249,0.249945,0,0);}
.m6a_c00326{transform:matrix(0.234298,0.005389,-0.005748,0.249934,0,0);-ms-transform:matrix(0.234298,0.005389,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.234298,0.005389,-0.005748,0.249934,0,0);}
.m46_c00326{transform:matrix(0.234483,0.004924,-0.005249,0.249945,0,0);-ms-transform:matrix(0.234483,0.004924,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.234483,0.004924,-0.005249,0.249945,0,0);}
.m41_c00326{transform:matrix(0.235028,0.004936,-0.005249,0.249945,0,0);-ms-transform:matrix(0.235028,0.004936,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.235028,0.004936,-0.005249,0.249945,0,0);}
.m48_c00326{transform:matrix(0.236058,0.004957,-0.005249,0.249945,0,0);-ms-transform:matrix(0.236058,0.004957,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.236058,0.004957,-0.005249,0.249945,0,0);}
.m4a_c00326{transform:matrix(0.237118,0.004979,-0.005249,0.249945,0,0);-ms-transform:matrix(0.237118,0.004979,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.237118,0.004979,-0.005249,0.249945,0,0);}
.mc_c00326{transform:matrix(0.237783,0.004993,-0.005249,0.249945,0,0);-ms-transform:matrix(0.237783,0.004993,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.237783,0.004993,-0.005249,0.249945,0,0);}
.m25_c00326{transform:matrix(0.239537,0.005030,-0.005249,0.249945,0,0);-ms-transform:matrix(0.239537,0.005030,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.239537,0.005030,-0.005249,0.249945,0,0);}
.m17_c00326{transform:matrix(0.241612,0.005074,-0.005249,0.249945,0,0);-ms-transform:matrix(0.241612,0.005074,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.241612,0.005074,-0.005249,0.249945,0,0);}
.m44_c00326{transform:matrix(0.241967,0.005081,-0.005249,0.249945,0,0);-ms-transform:matrix(0.241967,0.005081,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.241967,0.005081,-0.005249,0.249945,0,0);}
.m63_c00326{transform:matrix(0.242225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242225,0.000000,0.000000,0.250000,0,0);}
.m3e_c00326{transform:matrix(0.242701,0.005097,-0.005249,0.249945,0,0);-ms-transform:matrix(0.242701,0.005097,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.242701,0.005097,-0.005249,0.249945,0,0);}
.m1d_c00326{transform:matrix(0.242816,0.005099,-0.005249,0.249945,0,0);-ms-transform:matrix(0.242816,0.005099,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.242816,0.005099,-0.005249,0.249945,0,0);}
.mf_c00326{transform:matrix(0.245216,0.005150,-0.005249,0.249945,0,0);-ms-transform:matrix(0.245216,0.005150,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.245216,0.005150,-0.005249,0.249945,0,0);}
.m20_c00326{transform:matrix(0.245426,0.005154,-0.005249,0.249945,0,0);-ms-transform:matrix(0.245426,0.005154,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.245426,0.005154,-0.005249,0.249945,0,0);}
.m4b_c00326{transform:matrix(0.246786,0.005182,-0.005249,0.249945,0,0);-ms-transform:matrix(0.246786,0.005182,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.246786,0.005182,-0.005249,0.249945,0,0);}
.m23_c00326{transform:matrix(0.248500,0.005219,-0.005249,0.249945,0,0);-ms-transform:matrix(0.248500,0.005219,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.248500,0.005219,-0.005249,0.249945,0,0);}
.m5f_c00326{transform:matrix(0.248905,0.005227,-0.005249,0.249945,0,0);-ms-transform:matrix(0.248905,0.005227,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.248905,0.005227,-0.005249,0.249945,0,0);}
.m5b_c00326{transform:matrix(0.250410,0.005259,-0.005249,0.249945,0,0);-ms-transform:matrix(0.250410,0.005259,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.250410,0.005259,-0.005249,0.249945,0,0);}
.m5c_c00326{transform:matrix(0.252049,0.005293,-0.005249,0.249945,0,0);-ms-transform:matrix(0.252049,0.005293,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.252049,0.005293,-0.005249,0.249945,0,0);}
.m7_c00326{transform:matrix(0.252769,0.005308,-0.005249,0.249945,0,0);-ms-transform:matrix(0.252769,0.005308,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.252769,0.005308,-0.005249,0.249945,0,0);}
.m24_c00326{transform:matrix(0.254949,0.005354,-0.005249,0.249945,0,0);-ms-transform:matrix(0.254949,0.005354,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.254949,0.005354,-0.005249,0.249945,0,0);}
.m34_c00326{transform:matrix(0.255619,0.005368,-0.005249,0.249945,0,0);-ms-transform:matrix(0.255619,0.005368,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.255619,0.005368,-0.005249,0.249945,0,0);}
.m54_c00326{transform:matrix(0.256368,0.005384,-0.005249,0.249945,0,0);-ms-transform:matrix(0.256368,0.005384,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.256368,0.005384,-0.005249,0.249945,0,0);}
.m2c_c00326{transform:matrix(0.257093,0.005399,-0.005249,0.249945,0,0);-ms-transform:matrix(0.257093,0.005399,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.257093,0.005399,-0.005249,0.249945,0,0);}
.m62_c00326{transform:matrix(0.257415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257415,0.000000,0.000000,0.250000,0,0);}
.m5e_c00326{transform:matrix(0.257648,0.005411,-0.005249,0.249945,0,0);-ms-transform:matrix(0.257648,0.005411,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.257648,0.005411,-0.005249,0.249945,0,0);}
.m2e_c00326{transform:matrix(0.258618,0.005431,-0.005249,0.249945,0,0);-ms-transform:matrix(0.258618,0.005431,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.258618,0.005431,-0.005249,0.249945,0,0);}
.m1c_c00326{transform:matrix(0.258863,0.005436,-0.005249,0.249945,0,0);-ms-transform:matrix(0.258863,0.005436,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.258863,0.005436,-0.005249,0.249945,0,0);}
.m3d_c00326{transform:matrix(0.259398,0.005447,-0.005249,0.249945,0,0);-ms-transform:matrix(0.259398,0.005447,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.259398,0.005447,-0.005249,0.249945,0,0);}
.m43_c00326{transform:matrix(0.259668,0.005453,-0.005249,0.249945,0,0);-ms-transform:matrix(0.259668,0.005453,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.259668,0.005453,-0.005249,0.249945,0,0);}
.m53_c00326{transform:matrix(0.259783,0.005455,-0.005249,0.249945,0,0);-ms-transform:matrix(0.259783,0.005455,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.259783,0.005455,-0.005249,0.249945,0,0);}
.m26_c00326{transform:matrix(0.259868,0.005457,-0.005249,0.249945,0,0);-ms-transform:matrix(0.259868,0.005457,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.259868,0.005457,-0.005249,0.249945,0,0);}
.m1f_c00326{transform:matrix(0.259993,0.005460,-0.005249,0.249945,0,0);-ms-transform:matrix(0.259993,0.005460,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.259993,0.005460,-0.005249,0.249945,0,0);}
.m29_c00326{transform:matrix(0.260198,0.005464,-0.005249,0.249945,0,0);-ms-transform:matrix(0.260198,0.005464,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.260198,0.005464,-0.005249,0.249945,0,0);}
.m59_c00326{transform:matrix(0.261007,0.005481,-0.005249,0.249945,0,0);-ms-transform:matrix(0.261007,0.005481,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.261007,0.005481,-0.005249,0.249945,0,0);}
.m13_c00326{transform:matrix(0.261342,0.005488,-0.005249,0.249945,0,0);-ms-transform:matrix(0.261342,0.005488,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.261342,0.005488,-0.005249,0.249945,0,0);}
.mb_c00326{transform:matrix(0.263392,0.005531,-0.005249,0.249945,0,0);-ms-transform:matrix(0.263392,0.005531,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.263392,0.005531,-0.005249,0.249945,0,0);}
.m31_c00326{transform:matrix(0.263417,0.005532,-0.005249,0.249945,0,0);-ms-transform:matrix(0.263417,0.005532,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.263417,0.005532,-0.005249,0.249945,0,0);}
.m6_c00326{transform:matrix(0.263782,0.005539,-0.005249,0.249945,0,0);-ms-transform:matrix(0.263782,0.005539,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.263782,0.005539,-0.005249,0.249945,0,0);}
.m4f_c00326{transform:matrix(0.264047,0.005545,-0.005249,0.249945,0,0);-ms-transform:matrix(0.264047,0.005545,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.264047,0.005545,-0.005249,0.249945,0,0);}
.m3a_c00326{transform:matrix(0.264867,0.005562,-0.005249,0.249945,0,0);-ms-transform:matrix(0.264867,0.005562,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.264867,0.005562,-0.005249,0.249945,0,0);}
.ma_c00326{transform:matrix(0.264882,0.005563,-0.005249,0.249945,0,0);-ms-transform:matrix(0.264882,0.005563,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.264882,0.005563,-0.005249,0.249945,0,0);}
.m2f_c00326{transform:matrix(0.266081,0.005588,-0.005249,0.249945,0,0);-ms-transform:matrix(0.266081,0.005588,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.266081,0.005588,-0.005249,0.249945,0,0);}
.m11_c00326{transform:matrix(0.266341,0.005593,-0.005249,0.249945,0,0);-ms-transform:matrix(0.266341,0.005593,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.266341,0.005593,-0.005249,0.249945,0,0);}
.m51_c00326{transform:matrix(0.266346,0.005593,-0.005249,0.249945,0,0);-ms-transform:matrix(0.266346,0.005593,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.266346,0.005593,-0.005249,0.249945,0,0);}
.me_c00326{transform:matrix(0.266536,0.005597,-0.005249,0.249945,0,0);-ms-transform:matrix(0.266536,0.005597,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.266536,0.005597,-0.005249,0.249945,0,0);}
.m30_c00326{transform:matrix(0.267076,0.005609,-0.005249,0.249945,0,0);-ms-transform:matrix(0.267076,0.005609,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.267076,0.005609,-0.005249,0.249945,0,0);}
.m12_c00326{transform:matrix(0.267661,0.005621,-0.005249,0.249945,0,0);-ms-transform:matrix(0.267661,0.005621,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.267661,0.005621,-0.005249,0.249945,0,0);}
.m8_c00326{transform:matrix(0.267971,0.005627,-0.005249,0.249945,0,0);-ms-transform:matrix(0.267971,0.005627,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.267971,0.005627,-0.005249,0.249945,0,0);}
.m19_c00326{transform:matrix(0.268596,0.005641,-0.005249,0.249945,0,0);-ms-transform:matrix(0.268596,0.005641,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.268596,0.005641,-0.005249,0.249945,0,0);}
.m61_c00326{transform:matrix(0.269071,0.005650,-0.005249,0.249945,0,0);-ms-transform:matrix(0.269071,0.005650,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.269071,0.005650,-0.005249,0.249945,0,0);}
.m38_c00326{transform:matrix(0.269436,0.005658,-0.005249,0.249945,0,0);-ms-transform:matrix(0.269436,0.005658,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.269436,0.005658,-0.005249,0.249945,0,0);}
.m45_c00326{transform:matrix(0.269885,0.005668,-0.005249,0.249945,0,0);-ms-transform:matrix(0.269885,0.005668,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.269885,0.005668,-0.005249,0.249945,0,0);}
.m42_c00326{transform:matrix(0.270650,0.005684,-0.005249,0.249945,0,0);-ms-transform:matrix(0.270650,0.005684,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.270650,0.005684,-0.005249,0.249945,0,0);}
.m22_c00326{transform:matrix(0.270750,0.005686,-0.005249,0.249945,0,0);-ms-transform:matrix(0.270750,0.005686,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.270750,0.005686,-0.005249,0.249945,0,0);}
.m40_c00326{transform:matrix(0.271340,0.005698,-0.005249,0.249945,0,0);-ms-transform:matrix(0.271340,0.005698,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.271340,0.005698,-0.005249,0.249945,0,0);}
.m55_c00326{transform:matrix(0.272645,0.005726,-0.005249,0.249945,0,0);-ms-transform:matrix(0.272645,0.005726,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.272645,0.005726,-0.005249,0.249945,0,0);}
.m3f_c00326{transform:matrix(0.272705,0.005727,-0.005249,0.249945,0,0);-ms-transform:matrix(0.272705,0.005727,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.272705,0.005727,-0.005249,0.249945,0,0);}
.m4e_c00326{transform:matrix(0.274669,0.005768,-0.005249,0.249945,0,0);-ms-transform:matrix(0.274669,0.005768,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.274669,0.005768,-0.005249,0.249945,0,0);}
.m16_c00326{transform:matrix(0.274909,0.005773,-0.005249,0.249945,0,0);-ms-transform:matrix(0.274909,0.005773,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.274909,0.005773,-0.005249,0.249945,0,0);}
.m4d_c00326{transform:matrix(0.275294,0.005781,-0.005249,0.249945,0,0);-ms-transform:matrix(0.275294,0.005781,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.275294,0.005781,-0.005249,0.249945,0,0);}
.m2d_c00326{transform:matrix(0.276749,0.005812,-0.005249,0.249945,0,0);-ms-transform:matrix(0.276749,0.005812,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.276749,0.005812,-0.005249,0.249945,0,0);}
.m5d_c00326{transform:matrix(0.277909,0.005836,-0.005249,0.249945,0,0);-ms-transform:matrix(0.277909,0.005836,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.277909,0.005836,-0.005249,0.249945,0,0);}
.m3b_c00326{transform:matrix(0.282488,0.005932,-0.005249,0.249945,0,0);-ms-transform:matrix(0.282488,0.005932,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.282488,0.005932,-0.005249,0.249945,0,0);}
.m5a_c00326{transform:matrix(0.284192,0.005968,-0.005249,0.249945,0,0);-ms-transform:matrix(0.284192,0.005968,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.284192,0.005968,-0.005249,0.249945,0,0);}
.m36_c00326{transform:matrix(0.284552,0.005976,-0.005249,0.249945,0,0);-ms-transform:matrix(0.284552,0.005976,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.284552,0.005976,-0.005249,0.249945,0,0);}
.m4_c00326{transform:matrix(0.286145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286145,0.000000,0.000000,0.250000,0,0);}
.m58_c00326{transform:matrix(0.288531,0.006059,-0.005249,0.249945,0,0);-ms-transform:matrix(0.288531,0.006059,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.288531,0.006059,-0.005249,0.249945,0,0);}
.m60_c00326{transform:matrix(0.290641,0.006103,-0.005249,0.249945,0,0);-ms-transform:matrix(0.290641,0.006103,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.290641,0.006103,-0.005249,0.249945,0,0);}
.m28_c00326{transform:matrix(0.294020,0.006174,-0.005249,0.249945,0,0);-ms-transform:matrix(0.294020,0.006174,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.294020,0.006174,-0.005249,0.249945,0,0);}
.m32_c00326{transform:matrix(0.298149,0.006261,-0.005249,0.249945,0,0);-ms-transform:matrix(0.298149,0.006261,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.298149,0.006261,-0.005249,0.249945,0,0);}
.m56_c00326{transform:matrix(0.300324,0.006307,-0.005249,0.249945,0,0);-ms-transform:matrix(0.300324,0.006307,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.300324,0.006307,-0.005249,0.249945,0,0);}
.m2a_c00326{transform:matrix(0.306242,0.006431,-0.005249,0.249945,0,0);-ms-transform:matrix(0.306242,0.006431,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.306242,0.006431,-0.005249,0.249945,0,0);}
.m1_c00326{transform:matrix(0.333305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333305,0.000000,0.000000,0.250000,0,0);}
.m0_c00326{transform:matrix(0.359770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359770,0.000000,0.000000,0.250000,0,0);}
.m2_c00326{transform:matrix(0.362745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362745,0.000000,0.000000,0.250000,0,0);}
.m35_c00326{transform:matrix(0.382461,0.008032,-0.005249,0.249945,0,0);-ms-transform:matrix(0.382461,0.008032,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.382461,0.008032,-0.005249,0.249945,0,0);}
.m5_c00326{transform:matrix(0.464190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464190,0.000000,0.000000,0.250000,0,0);}
.m3_c00326{transform:matrix(0.518310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518310,0.000000,0.000000,0.250000,0,0);}
.v0_c00326{vertical-align:0.000000px;}
.ls0_c00326{letter-spacing:0.000000px;}
.sc__c00326{text-shadow:none;}
.sc0_c00326{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__c00326{-webkit-text-stroke:0px transparent;}
.sc0_c00326{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00326{word-spacing:0.000000px;}
.fc0_c00326{color:transparent;}
.fs1_c00326{font-size:54.000000px;}
.fs4_c00326{font-size:66.014551px;}
.fs5_c00326{font-size:72.000000px;}
.fs3_c00326{font-size:72.015874px;}
.fs0_c00326{font-size:78.000000px;}
.fs2_c00326{font-size:84.000000px;}
.fs6_c00326{font-size:84.022215px;}
.y0_c00326{bottom:0.000000px;}
.y6d_c00326{bottom:164.466208px;}
.y6c_c00326{bottom:165.752334px;}
.y6b_c00326{bottom:166.522753px;}
.y6a_c00326{bottom:168.776949px;}
.y69_c00326{bottom:169.522942px;}
.y68_c00326{bottom:170.286703px;}
.y67_c00326{bottom:171.261259px;}
.y66_c00326{bottom:173.056467px;}
.y65_c00326{bottom:174.851812px;}
.y64_c00326{bottom:175.779000px;}
.y63_c00326{bottom:742.932000px;}
.y62_c00326{bottom:762.190957px;}
.y61_c00326{bottom:763.713870px;}
.y60_c00326{bottom:764.377020px;}
.y5f_c00326{bottom:765.468707px;}
.y5e_c00326{bottom:766.775697px;}
.y5d_c00326{bottom:767.435098px;}
.y5c_c00326{bottom:768.088137px;}
.y5b_c00326{bottom:769.600768px;}
.y5a_c00326{bottom:770.503257px;}
.y59_c00326{bottom:772.026044px;}
.y58_c00326{bottom:772.467381px;}
.y57_c00326{bottom:774.661949px;}
.y56_c00326{bottom:775.757679px;}
.y55_c00326{bottom:776.206262px;}
.y54_c00326{bottom:794.305490px;}
.y53_c00326{bottom:794.775753px;}
.y52_c00326{bottom:796.365149px;}
.y51_c00326{bottom:797.061582px;}
.y50_c00326{bottom:799.155135px;}
.y4f_c00326{bottom:801.434916px;}
.y4e_c00326{bottom:803.731833px;}
.y4d_c00326{bottom:804.429338px;}
.y4c_c00326{bottom:805.591562px;}
.y4b_c00326{bottom:806.703700px;}
.y4a_c00326{bottom:807.446786px;}
.y49_c00326{bottom:808.342929px;}
.y48_c00326{bottom:826.041392px;}
.y47_c00326{bottom:826.705896px;}
.y46_c00326{bottom:827.353265px;}
.y45_c00326{bottom:828.033500px;}
.y44_c00326{bottom:830.193846px;}
.y43_c00326{bottom:831.067910px;}
.y42_c00326{bottom:832.392477px;}
.y41_c00326{bottom:834.807597px;}
.y40_c00326{bottom:835.478118px;}
.y3f_c00326{bottom:837.433316px;}
.y3e_c00326{bottom:839.399015px;}
.y3d_c00326{bottom:856.509957px;}
.y3c_c00326{bottom:857.794980px;}
.y3b_c00326{bottom:858.241862px;}
.y3a_c00326{bottom:861.317045px;}
.y39_c00326{bottom:863.299092px;}
.y38_c00326{bottom:863.946460px;}
.y37_c00326{bottom:865.891232px;}
.y36_c00326{bottom:866.555610px;}
.y35_c00326{bottom:867.260321px;}
.y34_c00326{bottom:868.976148px;}
.y33_c00326{bottom:870.083660px;}
.y32_c00326{bottom:870.725409px;}
.y31_c00326{bottom:889.554884px;}
.y30_c00326{bottom:890.650047px;}
.y2f_c00326{bottom:891.114726px;}
.y2e_c00326{bottom:892.195419px;}
.y2d_c00326{bottom:893.049877px;}
.y2c_c00326{bottom:894.815310px;}
.y2b_c00326{bottom:895.679293px;}
.y2a_c00326{bottom:896.137641px;}
.y29_c00326{bottom:898.774554px;}
.y28_c00326{bottom:899.643168px;}
.y27_c00326{bottom:902.053752px;}
.y26_c00326{bottom:919.732837px;}
.y25_c00326{bottom:920.442155px;}
.y24_c00326{bottom:922.046166px;}
.y23_c00326{bottom:922.516303px;}
.y22_c00326{bottom:923.878710px;}
.y21_c00326{bottom:925.035611px;}
.y20_c00326{bottom:927.315297px;}
.y1f_c00326{bottom:928.000863px;}
.y1e_c00326{bottom:928.930302px;}
.y1d_c00326{bottom:930.979094px;}
.y1c_c00326{bottom:931.704917px;}
.y1b_c00326{bottom:932.838790px;}
.y1a_c00326{bottom:934.460883px;}
.y19_c00326{bottom:951.450758px;}
.y18_c00326{bottom:952.081506px;}
.y17_c00326{bottom:953.734412px;}
.y16_c00326{bottom:954.360561px;}
.y15_c00326{bottom:954.806280px;}
.y14_c00326{bottom:956.860138px;}
.y13_c00326{bottom:957.721344px;}
.y12_c00326{bottom:958.312965px;}
.y11_c00326{bottom:959.785787px;}
.y10_c00326{bottom:961.233050px;}
.yf_c00326{bottom:963.095138px;}
.ye_c00326{bottom:963.940738px;}
.yd_c00326{bottom:964.977650px;}
.yc_c00326{bottom:984.772293px;}
.yb_c00326{bottom:985.475342px;}
.ya_c00326{bottom:986.361090px;}
.y9_c00326{bottom:988.453446px;}
.y8_c00326{bottom:990.280100px;}
.y7_c00326{bottom:990.994110px;}
.y6_c00326{bottom:993.036160px;}
.y5_c00326{bottom:994.221285px;}
.y4_c00326{bottom:996.036000px;}
.y3_c00326{bottom:1044.105000px;}
.y2_c00326{bottom:1076.898000px;}
.y1_c00326{bottom:1122.513000px;}
.h3_c00326{height:54.000000px;}
.h6_c00326{height:66.014551px;}
.h7_c00326{height:72.000000px;}
.h5_c00326{height:72.015874px;}
.h2_c00326{height:78.000000px;}
.h4_c00326{height:84.000000px;}
.h8_c00326{height:84.022215px;}
.h1_c00326{height:1165.500000px;}
.h0_c00326{height:1165.800000px;}
.w0_c00326{width:915.000000px;}
.x0_c00326{left:0.000000px;}
.x5c_c00326{left:115.194000px;}
.x51_c00326{left:124.162508px;}
.x46_c00326{left:125.520179px;}
.x3c_c00326{left:126.597044px;}
.x1b_c00326{left:127.694447px;}
.x10_c00326{left:128.799003px;}
.x52_c00326{left:146.595480px;}
.x5d_c00326{left:155.506500px;}
.x31_c00326{left:159.010425px;}
.x47_c00326{left:168.193679px;}
.x11_c00326{left:183.392303px;}
.x53_c00326{left:201.417146px;}
.x48_c00326{left:203.578679px;}
.x1c_c00326{left:204.936947px;}
.x32_c00326{left:214.393091px;}
.x3d_c00326{left:224.918123px;}
.x12_c00326{left:227.875161px;}
.x5e_c00326{left:233.565000px;}
.x7_c00326{left:238.959000px;}
.x27_c00326{left:247.931598px;}
.x49_c00326{left:256.537679px;}
.x1d_c00326{left:258.930947px;}
.x28_c00326{left:291.366512px;}
.x1e_c00326{left:293.493947px;}
.x33_c00326{left:300.172386px;}
.x4a_c00326{left:311.881679px;}
.x3e_c00326{left:322.667670px;}
.x8_c00326{left:325.374000px;}
.x54_c00326{left:333.224918px;}
.x34_c00326{left:335.373611px;}
.x4b_c00326{left:345.096179px;}
.x5f_c00326{left:353.989500px;}
.x3f_c00326{left:356.169363px;}
.x35_c00326{left:368.582804px;}
.x2_c00326{left:372.330000px;}
.x9_c00326{left:381.808500px;}
.x60_c00326{left:387.196500px;}
.x1f_c00326{left:391.055447px;}
.x13_c00326{left:402.113501px;}
.x4_c00326{left:405.810000px;}
.x55_c00326{left:409.383024px;}
.x61_c00326{left:419.631000px;}
.x29_c00326{left:423.222284px;}
.x3_c00326{left:426.870000px;}
.x1_c00326{left:427.950000px;}
.x5_c00326{left:435.510000px;}
.x2a_c00326{left:446.120256px;}
.x6_c00326{left:449.010000px;}
.x4c_c00326{left:454.473179px;}
.x36_c00326{left:465.835851px;}
.x20_c00326{left:467.960447px;}
.x40_c00326{left:476.891883px;}
.xa_c00326{left:479.049000px;}
.x2b_c00326{left:489.334670px;}
.x37_c00326{left:498.235044px;}
.x14_c00326{left:510.710537px;}
.xb_c00326{left:513.049500px;}
.x62_c00326{left:517.639500px;}
.x56_c00326{left:530.105544px;}
.x41_c00326{left:543.110769px;}
.x63_c00326{left:551.136000px;}
.x15_c00326{left:556.007927px;}
.x4d_c00326{left:563.034179px;}
.x21_c00326{left:576.516947px;}
.x2c_c00326{left:577.619028px;}
.x42_c00326{left:586.805183px;}
.x57_c00326{left:595.746930px;}
.x38_c00326{left:597.334623px;}
.xc_c00326{left:600.033000px;}
.x64_c00326{left:607.054500px;}
.x2d_c00326{left:620.308410px;}
.x22_c00326{left:631.607447px;}
.x58_c00326{left:661.128816px;}
.x4e_c00326{left:662.727179px;}
.x16_c00326{left:664.100963px;}
.x2e_c00326{left:674.342544px;}
.x17_c00326{left:687.540939px;}
.x43_c00326{left:694.823951px;}
.x23_c00326{left:696.483947px;}
.x2f_c00326{left:697.542017px;}
.xd_c00326{left:699.669000px;}
.x59_c00326{left:715.686450px;}
.x24_c00326{left:718.871447px;}
.x18_c00326{left:720.501825px;}
.x44_c00326{left:728.859675px;}
.xe_c00326{left:741.847500px;}
.x5a_c00326{left:748.837143px;}
.x39_c00326{left:751.060836px;}
.x30_c00326{left:752.336682px;}
.x45_c00326{left:761.258868px;}
.x4f_c00326{left:771.576179px;}
.x3a_c00326{left:773.412809px;}
.xf_c00326{left:775.326000px;}
.x50_c00326{left:793.969679px;}
.x25_c00326{left:795.252947px;}
.x19_c00326{left:807.500979px;}
.x5b_c00326{left:825.001250px;}
.x26_c00326{left:829.029947px;}
.x3b_c00326{left:837.677163px;}
.x1a_c00326{left:840.680865px;}
@media print{
.v0_c00326{vertical-align:0.000000pt;}
.ls0_c00326{letter-spacing:0.000000pt;}
.ws0_c00326{word-spacing:0.000000pt;}
.fs1_c00326{font-size:48.000000pt;}
.fs4_c00326{font-size:58.679601pt;}
.fs5_c00326{font-size:64.000000pt;}
.fs3_c00326{font-size:64.014110pt;}
.fs0_c00326{font-size:69.333333pt;}
.fs2_c00326{font-size:74.666667pt;}
.fs6_c00326{font-size:74.686413pt;}
.y0_c00326{bottom:0.000000pt;}
.y6d_c00326{bottom:146.192185pt;}
.y6c_c00326{bottom:147.335408pt;}
.y6b_c00326{bottom:148.020225pt;}
.y6a_c00326{bottom:150.023955pt;}
.y69_c00326{bottom:150.687060pt;}
.y68_c00326{bottom:151.365959pt;}
.y67_c00326{bottom:152.232231pt;}
.y66_c00326{bottom:153.827971pt;}
.y65_c00326{bottom:155.423833pt;}
.y64_c00326{bottom:156.248000pt;}
.y63_c00326{bottom:660.384000pt;}
.y62_c00326{bottom:677.503073pt;}
.y61_c00326{bottom:678.856773pt;}
.y60_c00326{bottom:679.446240pt;}
.y5f_c00326{bottom:680.416628pt;}
.y5e_c00326{bottom:681.578397pt;}
.y5d_c00326{bottom:682.164532pt;}
.y5c_c00326{bottom:682.745011pt;}
.y5b_c00326{bottom:684.089572pt;}
.y5a_c00326{bottom:684.891784pt;}
.y59_c00326{bottom:686.245372pt;}
.y58_c00326{bottom:686.637672pt;}
.y57_c00326{bottom:688.588399pt;}
.y56_c00326{bottom:689.562381pt;}
.y55_c00326{bottom:689.961121pt;}
.y54_c00326{bottom:706.049324pt;}
.y53_c00326{bottom:706.467336pt;}
.y52_c00326{bottom:707.880132pt;}
.y51_c00326{bottom:708.499184pt;}
.y50_c00326{bottom:710.360120pt;}
.y4f_c00326{bottom:712.386592pt;}
.y4e_c00326{bottom:714.428296pt;}
.y4d_c00326{bottom:715.048300pt;}
.y4c_c00326{bottom:716.081388pt;}
.y4b_c00326{bottom:717.069956pt;}
.y4a_c00326{bottom:717.730476pt;}
.y49_c00326{bottom:718.527048pt;}
.y48_c00326{bottom:734.259015pt;}
.y47_c00326{bottom:734.849685pt;}
.y46_c00326{bottom:735.425124pt;}
.y45_c00326{bottom:736.029777pt;}
.y44_c00326{bottom:737.950085pt;}
.y43_c00326{bottom:738.727031pt;}
.y42_c00326{bottom:739.904424pt;}
.y41_c00326{bottom:742.051197pt;}
.y40_c00326{bottom:742.647216pt;}
.y3f_c00326{bottom:744.385169pt;}
.y3e_c00326{bottom:746.132457pt;}
.y3d_c00326{bottom:761.342184pt;}
.y3c_c00326{bottom:762.484427pt;}
.y3b_c00326{bottom:762.881655pt;}
.y3a_c00326{bottom:765.615151pt;}
.y39_c00326{bottom:767.376971pt;}
.y38_c00326{bottom:767.952409pt;}
.y37_c00326{bottom:769.681095pt;}
.y36_c00326{bottom:770.271653pt;}
.y35_c00326{bottom:770.898063pt;}
.y34_c00326{bottom:772.423243pt;}
.y33_c00326{bottom:773.407697pt;}
.y32_c00326{bottom:773.978141pt;}
.y31_c00326{bottom:790.715452pt;}
.y30_c00326{bottom:791.688931pt;}
.y2f_c00326{bottom:792.101979pt;}
.y2e_c00326{bottom:793.062595pt;}
.y2d_c00326{bottom:793.822113pt;}
.y2c_c00326{bottom:795.391387pt;}
.y2b_c00326{bottom:796.159372pt;}
.y2a_c00326{bottom:796.566792pt;}
.y29_c00326{bottom:798.910715pt;}
.y28_c00326{bottom:799.682816pt;}
.y27_c00326{bottom:801.825557pt;}
.y26_c00326{bottom:817.540300pt;}
.y25_c00326{bottom:818.170804pt;}
.y24_c00326{bottom:819.596592pt;}
.y23_c00326{bottom:820.014492pt;}
.y22_c00326{bottom:821.225520pt;}
.y21_c00326{bottom:822.253876pt;}
.y20_c00326{bottom:824.280264pt;}
.y1f_c00326{bottom:824.889656pt;}
.y1e_c00326{bottom:825.715824pt;}
.y1d_c00326{bottom:827.536972pt;}
.y1c_c00326{bottom:828.182148pt;}
.y1b_c00326{bottom:829.190036pt;}
.y1a_c00326{bottom:830.631896pt;}
.y19_c00326{bottom:845.734007pt;}
.y18_c00326{bottom:846.294672pt;}
.y17_c00326{bottom:847.763921pt;}
.y16_c00326{bottom:848.320499pt;}
.y15_c00326{bottom:848.716693pt;}
.y14_c00326{bottom:850.542345pt;}
.y13_c00326{bottom:851.307861pt;}
.y12_c00326{bottom:851.833747pt;}
.y11_c00326{bottom:853.142921pt;}
.y10_c00326{bottom:854.429377pt;}
.yf_c00326{bottom:856.084567pt;}
.ye_c00326{bottom:856.836212pt;}
.yd_c00326{bottom:857.757911pt;}
.yc_c00326{bottom:875.353149pt;}
.yb_c00326{bottom:875.978081pt;}
.ya_c00326{bottom:876.765413pt;}
.y9_c00326{bottom:878.625285pt;}
.y8_c00326{bottom:880.248977pt;}
.y7_c00326{bottom:880.883653pt;}
.y6_c00326{bottom:882.698809pt;}
.y5_c00326{bottom:883.752253pt;}
.y4_c00326{bottom:885.365333pt;}
.y3_c00326{bottom:928.093333pt;}
.y2_c00326{bottom:957.242667pt;}
.y1_c00326{bottom:997.789333pt;}
.h3_c00326{height:48.000000pt;}
.h6_c00326{height:58.679601pt;}
.h7_c00326{height:64.000000pt;}
.h5_c00326{height:64.014110pt;}
.h2_c00326{height:69.333333pt;}
.h4_c00326{height:74.666667pt;}
.h8_c00326{height:74.686413pt;}
.h1_c00326{height:1036.000000pt;}
.h0_c00326{height:1036.266667pt;}
.w0_c00326{width:813.333333pt;}
.x0_c00326{left:0.000000pt;}
.x5c_c00326{left:102.394667pt;}
.x51_c00326{left:110.366673pt;}
.x46_c00326{left:111.573492pt;}
.x3c_c00326{left:112.530705pt;}
.x1b_c00326{left:113.506175pt;}
.x10_c00326{left:114.488003pt;}
.x52_c00326{left:130.307093pt;}
.x5d_c00326{left:138.228000pt;}
.x31_c00326{left:141.342600pt;}
.x47_c00326{left:149.505492pt;}
.x11_c00326{left:163.015380pt;}
.x53_c00326{left:179.037463pt;}
.x48_c00326{left:180.958825pt;}
.x1c_c00326{left:182.166175pt;}
.x32_c00326{left:190.571636pt;}
.x3d_c00326{left:199.927220pt;}
.x12_c00326{left:202.555699pt;}
.x5e_c00326{left:207.613333pt;}
.x7_c00326{left:212.408000pt;}
.x27_c00326{left:220.383643pt;}
.x49_c00326{left:228.033492pt;}
.x1d_c00326{left:230.160841pt;}
.x28_c00326{left:258.992455pt;}
.x1e_c00326{left:260.883508pt;}
.x33_c00326{left:266.819899pt;}
.x4a_c00326{left:277.228159pt;}
.x3e_c00326{left:286.815707pt;}
.x8_c00326{left:289.221333pt;}
.x54_c00326{left:296.199927pt;}
.x34_c00326{left:298.109876pt;}
.x4b_c00326{left:306.752159pt;}
.x5f_c00326{left:314.657333pt;}
.x3f_c00326{left:316.594989pt;}
.x35_c00326{left:327.629159pt;}
.x2_c00326{left:330.960000pt;}
.x9_c00326{left:339.385333pt;}
.x60_c00326{left:344.174667pt;}
.x1f_c00326{left:347.604841pt;}
.x13_c00326{left:357.434223pt;}
.x4_c00326{left:360.720000pt;}
.x55_c00326{left:363.896021pt;}
.x61_c00326{left:373.005333pt;}
.x29_c00326{left:376.197585pt;}
.x3_c00326{left:379.440000pt;}
.x1_c00326{left:380.400000pt;}
.x5_c00326{left:387.120000pt;}
.x2a_c00326{left:396.551339pt;}
.x6_c00326{left:399.120000pt;}
.x4c_c00326{left:403.976159pt;}
.x36_c00326{left:414.076312pt;}
.x20_c00326{left:415.964841pt;}
.x40_c00326{left:423.903896pt;}
.xa_c00326{left:425.821333pt;}
.x2b_c00326{left:434.964151pt;}
.x37_c00326{left:442.875595pt;}
.x14_c00326{left:453.964921pt;}
.xb_c00326{left:456.044000pt;}
.x62_c00326{left:460.124000pt;}
.x56_c00326{left:471.204928pt;}
.x41_c00326{left:482.765128pt;}
.x63_c00326{left:489.898667pt;}
.x15_c00326{left:494.229268pt;}
.x4d_c00326{left:500.474825pt;}
.x21_c00326{left:512.459508pt;}
.x2c_c00326{left:513.439136pt;}
.x42_c00326{left:521.604607pt;}
.x57_c00326{left:529.552827pt;}
.x38_c00326{left:530.964109pt;}
.xc_c00326{left:533.362667pt;}
.x64_c00326{left:539.604000pt;}
.x2d_c00326{left:551.385253pt;}
.x22_c00326{left:561.428841pt;}
.x58_c00326{left:587.670059pt;}
.x4e_c00326{left:589.090825pt;}
.x16_c00326{left:590.311967pt;}
.x2e_c00326{left:599.415595pt;}
.x17_c00326{left:611.147501pt;}
.x43_c00326{left:617.621289pt;}
.x23_c00326{left:619.096841pt;}
.x2f_c00326{left:620.037348pt;}
.xd_c00326{left:621.928000pt;}
.x59_c00326{left:636.165733pt;}
.x24_c00326{left:638.996841pt;}
.x18_c00326{left:640.446067pt;}
.x44_c00326{left:647.875267pt;}
.xe_c00326{left:659.420000pt;}
.x5a_c00326{left:665.633016pt;}
.x39_c00326{left:667.609632pt;}
.x30_c00326{left:668.743717pt;}
.x45_c00326{left:676.674549pt;}
.x4f_c00326{left:685.845492pt;}
.x3a_c00326{left:687.478052pt;}
.xf_c00326{left:689.178667pt;}
.x50_c00326{left:705.750825pt;}
.x25_c00326{left:706.891508pt;}
.x19_c00326{left:717.778648pt;}
.x5b_c00326{left:733.334444pt;}
.x26_c00326{left:736.915508pt;}
.x3b_c00326{left:744.601923pt;}
.x1a_c00326{left:747.271880pt;}
}





/* 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_c00327 {
    display:none;
  }
  .loading-indicator_c00327.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00327 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_c00327 { 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_c00327" -> "#page-container .classname_c00327")
 */
.pf_c00327 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00327 { /* 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_c00327.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00327 { /* 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_c00327 { /* 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_c00327 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00327 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00327 {overflow:visible;}
  }
}
.c_c00327 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00327 { /* 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_c00327:after { /* webkit #35443 */
  content: '';
}
.t_c00327:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00327 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 */
}
.__c00327 { /* 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_c00327 { /* info for Javascript */
  display:none;
}
.l_c00327 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00327 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00327 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00327: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_c00327 {
    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_c00327.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00327.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_c00327 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00327{font-family:sans-serif;visibility:hidden;}
.sc__c00327{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00327{-webkit-text-stroke:0px transparent;}
}
.y0_c00327{bottom:0.000000px;}
.h1_c00327{height:1165.500000px;}
.h0_c00327{height:1165.800000px;}
.w0_c00327{width:915.000000px;}
.x0_c00327{left:0.000000px;}
@media print{
.y0_c00327{bottom:0.000000pt;}
.h1_c00327{height:1036.000000pt;}
.h0_c00327{height:1036.266667pt;}
.w0_c00327{width:813.333333pt;}
.x0_c00327{left:0.000000pt;}
}





/* 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_c00328 {
    display:none;
  }
  .loading-indicator_c00328.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00328 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_c00328 { 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_c00328" -> "#page-container .classname_c00328")
 */
.pf_c00328 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00328 { /* 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_c00328.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00328 { /* 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_c00328 { /* 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_c00328 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00328 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00328 {overflow:visible;}
  }
}
.c_c00328 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00328 { /* 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_c00328:after { /* webkit #35443 */
  content: '';
}
.t_c00328:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00328 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 */
}
.__c00328 { /* 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_c00328 { /* info for Javascript */
  display:none;
}
.l_c00328 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00328 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00328 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00328: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_c00328 {
    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_c00328.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00328.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_c00328 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00328{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00328;src:url('chunks/assets/font_dbd529e162d5851c7bfb6d27.woff2')format("woff");}.ff1_c00328{font-family:ff1_c00328;line-height:1.000000;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;}
.m63_c00328{transform:matrix(0.025930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.025930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.025930,0.000000,0.000000,0.250000,0,0);}
.m21_c00328{transform:matrix(0.129610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129610,0.000000,0.000000,0.250000,0,0);}
.m0_c00328{transform:matrix(0.140330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140330,0.000000,0.000000,0.250000,0,0);}
.m1c_c00328{transform:matrix(0.149330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149330,0.000000,0.000000,0.250000,0,0);}
.m66_c00328{transform:matrix(0.175380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175380,0.000000,0.000000,0.250000,0,0);}
.m54_c00328{transform:matrix(0.177180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177180,0.000000,0.000000,0.250000,0,0);}
.m36_c00328{transform:matrix(0.181725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181725,0.000000,0.000000,0.250000,0,0);}
.m5f_c00328{transform:matrix(0.195045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195045,0.000000,0.000000,0.250000,0,0);}
.m14_c00328{transform:matrix(0.196570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196570,0.000000,0.000000,0.250000,0,0);}
.m69_c00328{transform:matrix(0.196920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196920,0.000000,0.000000,0.250000,0,0);}
.m48_c00328{transform:matrix(0.199280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199280,0.000000,0.000000,0.250000,0,0);}
.m67_c00328{transform:matrix(0.200800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200800,0.000000,0.000000,0.250000,0,0);}
.m56_c00328{transform:matrix(0.202665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202665,0.000000,0.000000,0.250000,0,0);}
.m53_c00328{transform:matrix(0.203420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203420,0.000000,0.000000,0.250000,0,0);}
.m68_c00328{transform:matrix(0.204085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204085,0.000000,0.000000,0.250000,0,0);}
.m4f_c00328{transform:matrix(0.204090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204090,0.000000,0.000000,0.250000,0,0);}
.m4d_c00328{transform:matrix(0.204555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204555,0.000000,0.000000,0.250000,0,0);}
.m58_c00328{transform:matrix(0.205760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205760,0.000000,0.000000,0.250000,0,0);}
.m4c_c00328{transform:matrix(0.205935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205935,0.000000,0.000000,0.250000,0,0);}
.m5c_c00328{transform:matrix(0.206280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206280,0.000000,0.000000,0.250000,0,0);}
.m52_c00328{transform:matrix(0.206305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206305,0.000000,0.000000,0.250000,0,0);}
.m3e_c00328{transform:matrix(0.207810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207810,0.000000,0.000000,0.250000,0,0);}
.m5e_c00328{transform:matrix(0.208045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208045,0.000000,0.000000,0.250000,0,0);}
.m73_c00328{transform:matrix(0.209400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209400,0.000000,0.000000,0.250000,0,0);}
.m42_c00328{transform:matrix(0.209595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209595,0.000000,0.000000,0.250000,0,0);}
.m65_c00328{transform:matrix(0.210455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210455,0.000000,0.000000,0.250000,0,0);}
.m55_c00328{transform:matrix(0.211070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211070,0.000000,0.000000,0.250000,0,0);}
.m2f_c00328{transform:matrix(0.211565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211565,0.000000,0.000000,0.250000,0,0);}
.m4a_c00328{transform:matrix(0.211930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211930,0.000000,0.000000,0.250000,0,0);}
.m62_c00328{transform:matrix(0.212230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212230,0.000000,0.000000,0.250000,0,0);}
.m64_c00328{transform:matrix(0.212700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212700,0.000000,0.000000,0.250000,0,0);}
.m39_c00328{transform:matrix(0.213135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213135,0.000000,0.000000,0.250000,0,0);}
.m6d_c00328{transform:matrix(0.213540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213540,0.000000,0.000000,0.250000,0,0);}
.m16_c00328{transform:matrix(0.213830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213830,0.000000,0.000000,0.250000,0,0);}
.m32_c00328{transform:matrix(0.214085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214085,0.000000,0.000000,0.250000,0,0);}
.m70_c00328{transform:matrix(0.214735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214735,0.000000,0.000000,0.250000,0,0);}
.m6b_c00328{transform:matrix(0.214895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214895,0.000000,0.000000,0.250000,0,0);}
.m17_c00328{transform:matrix(0.215715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215715,0.000000,0.000000,0.250000,0,0);}
.m51_c00328{transform:matrix(0.215735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215735,0.000000,0.000000,0.250000,0,0);}
.m6f_c00328{transform:matrix(0.217605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217605,0.000000,0.000000,0.250000,0,0);}
.m44_c00328{transform:matrix(0.217620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217620,0.000000,0.000000,0.250000,0,0);}
.m1a_c00328{transform:matrix(0.217780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217780,0.000000,0.000000,0.250000,0,0);}
.m50_c00328{transform:matrix(0.218165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218165,0.000000,0.000000,0.250000,0,0);}
.m6a_c00328{transform:matrix(0.218740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218740,0.000000,0.000000,0.250000,0,0);}
.m6e_c00328{transform:matrix(0.219890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219890,0.000000,0.000000,0.250000,0,0);}
.m4b_c00328{transform:matrix(0.220210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220210,0.000000,0.000000,0.250000,0,0);}
.m4e_c00328{transform:matrix(0.220480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220480,0.000000,0.000000,0.250000,0,0);}
.m3d_c00328{transform:matrix(0.220865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220865,0.000000,0.000000,0.250000,0,0);}
.m2_c00328{transform:matrix(0.221600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221600,0.000000,0.000000,0.250000,0,0);}
.m71_c00328{transform:matrix(0.222560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222560,0.000000,0.000000,0.250000,0,0);}
.m5_c00328{transform:matrix(0.223895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223895,0.000000,0.000000,0.250000,0,0);}
.m19_c00328{transform:matrix(0.224655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224655,0.000000,0.000000,0.250000,0,0);}
.m5a_c00328{transform:matrix(0.225940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225940,0.000000,0.000000,0.250000,0,0);}
.m3b_c00328{transform:matrix(0.226895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226895,0.000000,0.000000,0.250000,0,0);}
.m31_c00328{transform:matrix(0.228370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228370,0.000000,0.000000,0.250000,0,0);}
.m5d_c00328{transform:matrix(0.228540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228540,0.000000,0.000000,0.250000,0,0);}
.m4_c00328{transform:matrix(0.229635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229635,0.000000,0.000000,0.250000,0,0);}
.m5b_c00328{transform:matrix(0.230355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230355,0.000000,0.000000,0.250000,0,0);}
.m49_c00328{transform:matrix(0.231495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231495,0.000000,0.000000,0.250000,0,0);}
.m27_c00328{transform:matrix(0.232335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232335,0.000000,0.000000,0.250000,0,0);}
.m59_c00328{transform:matrix(0.232945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232945,0.000000,0.000000,0.250000,0,0);}
.m2d_c00328{transform:matrix(0.233800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233800,0.000000,0.000000,0.250000,0,0);}
.m34_c00328{transform:matrix(0.234545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234545,0.000000,0.000000,0.250000,0,0);}
.m57_c00328{transform:matrix(0.234795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234795,0.000000,0.000000,0.250000,0,0);}
.m3_c00328{transform:matrix(0.236110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236110,0.000000,0.000000,0.250000,0,0);}
.m72_c00328{transform:matrix(0.236245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236245,0.000000,0.000000,0.250000,0,0);}
.mf_c00328{transform:matrix(0.237595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237595,0.000000,0.000000,0.250000,0,0);}
.m45_c00328{transform:matrix(0.237670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237670,0.000000,0.000000,0.250000,0,0);}
.m2e_c00328{transform:matrix(0.237755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237755,0.000000,0.000000,0.250000,0,0);}
.mc_c00328{transform:matrix(0.237890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237890,0.000000,0.000000,0.250000,0,0);}
.m1b_c00328{transform:matrix(0.238205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238205,0.000000,0.000000,0.250000,0,0);}
.mb_c00328{transform:matrix(0.238385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238385,0.000000,0.000000,0.250000,0,0);}
.m6c_c00328{transform:matrix(0.238920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238920,0.000000,0.000000,0.250000,0,0);}
.m3c_c00328{transform:matrix(0.241070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241070,0.000000,0.000000,0.250000,0,0);}
.m47_c00328{transform:matrix(0.241560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241560,0.000000,0.000000,0.250000,0,0);}
.m43_c00328{transform:matrix(0.241835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241835,0.000000,0.000000,0.250000,0,0);}
.m40_c00328{transform:matrix(0.242165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242165,0.000000,0.000000,0.250000,0,0);}
.m23_c00328{transform:matrix(0.242550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242550,0.000000,0.000000,0.250000,0,0);}
.m1f_c00328{transform:matrix(0.244270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244270,0.000000,0.000000,0.250000,0,0);}
.m2c_c00328{transform:matrix(0.244430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244430,0.000000,0.000000,0.250000,0,0);}
.m13_c00328{transform:matrix(0.245215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245215,0.000000,0.000000,0.250000,0,0);}
.m20_c00328{transform:matrix(0.245405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245405,0.000000,0.000000,0.250000,0,0);}
.m41_c00328{transform:matrix(0.246830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246830,0.000000,0.000000,0.250000,0,0);}
.m30_c00328{transform:matrix(0.246985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246985,0.000000,0.000000,0.250000,0,0);}
.m3a_c00328{transform:matrix(0.247465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247465,0.000000,0.000000,0.250000,0,0);}
.m11_c00328{transform:matrix(0.247550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247550,0.000000,0.000000,0.250000,0,0);}
.m18_c00328{transform:matrix(0.247875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247875,0.000000,0.000000,0.250000,0,0);}
.m61_c00328{transform:matrix(0.248665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248665,0.000000,0.000000,0.250000,0,0);}
.m3f_c00328{transform:matrix(0.249140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249140,0.000000,0.000000,0.250000,0,0);}
.m38_c00328{transform:matrix(0.249690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249690,0.000000,0.000000,0.250000,0,0);}
.m37_c00328{transform:matrix(0.250705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250705,0.000000,0.000000,0.250000,0,0);}
.m46_c00328{transform:matrix(0.251235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251235,0.000000,0.000000,0.250000,0,0);}
.m26_c00328{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m33_c00328{transform:matrix(0.253265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253265,0.000000,0.000000,0.250000,0,0);}
.m24_c00328{transform:matrix(0.253350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253350,0.000000,0.000000,0.250000,0,0);}
.m12_c00328{transform:matrix(0.254370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254370,0.000000,0.000000,0.250000,0,0);}
.m29_c00328{transform:matrix(0.254470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254470,0.000000,0.000000,0.250000,0,0);}
.m7_c00328{transform:matrix(0.254560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254560,0.000000,0.000000,0.250000,0,0);}
.m35_c00328{transform:matrix(0.256460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256460,0.000000,0.000000,0.250000,0,0);}
.m2b_c00328{transform:matrix(0.258110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258110,0.000000,0.000000,0.250000,0,0);}
.m28_c00328{transform:matrix(0.258300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258300,0.000000,0.000000,0.250000,0,0);}
.m2a_c00328{transform:matrix(0.260720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260720,0.000000,0.000000,0.250000,0,0);}
.m25_c00328{transform:matrix(0.261520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261520,0.000000,0.000000,0.250000,0,0);}
.m1e_c00328{transform:matrix(0.261860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261860,0.000000,0.000000,0.250000,0,0);}
.me_c00328{transform:matrix(0.262115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262115,0.000000,0.000000,0.250000,0,0);}
.m9_c00328{transform:matrix(0.264615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264615,0.000000,0.000000,0.250000,0,0);}
.m8_c00328{transform:matrix(0.268570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268570,0.000000,0.000000,0.250000,0,0);}
.m1d_c00328{transform:matrix(0.269440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269440,0.000000,0.000000,0.250000,0,0);}
.m15_c00328{transform:matrix(0.270040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270040,0.000000,0.000000,0.250000,0,0);}
.m10_c00328{transform:matrix(0.270455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270455,0.000000,0.000000,0.250000,0,0);}
.md_c00328{transform:matrix(0.277720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277720,0.000000,0.000000,0.250000,0,0);}
.m22_c00328{transform:matrix(0.286795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286795,0.000000,0.000000,0.250000,0,0);}
.m6_c00328{transform:matrix(0.317475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317475,0.000000,0.000000,0.250000,0,0);}
.ma_c00328{transform:matrix(0.327845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327845,0.000000,0.000000,0.250000,0,0);}
.m60_c00328{transform:matrix(0.386315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386315,0.000000,0.000000,0.250000,0,0);}
.m1_c00328{transform:matrix(0.559140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559140,0.000000,0.000000,0.250000,0,0);}
.v0_c00328{vertical-align:0.000000px;}
.ls0_c00328{letter-spacing:0.000000px;}
.sc__c00328{text-shadow:none;}
.sc0_c00328{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__c00328{-webkit-text-stroke:0px transparent;}
.sc0_c00328{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00328{word-spacing:0.000000px;}
.fc0_c00328{color:transparent;}
.fs1_c00328{font-size:72.000000px;}
.fs2_c00328{font-size:78.000000px;}
.fs0_c00328{font-size:84.000000px;}
.fs3_c00328{font-size:90.000000px;}
.fs4_c00328{font-size:96.000000px;}
.y0_c00328{bottom:0.000000px;}
.yc_c00328{bottom:722.523000px;}
.yb_c00328{bottom:755.401500px;}
.ya_c00328{bottom:786.987000px;}
.y9_c00328{bottom:818.197500px;}
.y8_c00328{bottom:849.690000px;}
.y7_c00328{bottom:881.010000px;}
.y6_c00328{bottom:912.703500px;}
.y5_c00328{bottom:944.817000px;}
.y4_c00328{bottom:975.780000px;}
.y3_c00328{bottom:1007.514000px;}
.y2_c00328{bottom:1062.252000px;}
.y1_c00328{bottom:1108.081500px;}
.h3_c00328{height:72.000000px;}
.h4_c00328{height:78.000000px;}
.h2_c00328{height:84.000000px;}
.h5_c00328{height:90.000000px;}
.h6_c00328{height:96.000000px;}
.h1_c00328{height:1165.500000px;}
.h0_c00328{height:1165.800000px;}
.w0_c00328{width:915.000000px;}
.x0_c00328{left:0.000000px;}
.x15_c00328{left:116.640000px;}
.x1e_c00328{left:121.770000px;}
.x34_c00328{left:122.850000px;}
.x3f_c00328{left:154.710000px;}
.x49_c00328{left:156.330000px;}
.x25_c00328{left:166.050000px;}
.x47_c00328{left:175.770000px;}
.x35_c00328{left:178.200000px;}
.x2d_c00328{left:188.190000px;}
.x1f_c00328{left:201.150000px;}
.x3_c00328{left:203.310000px;}
.x4a_c00328{left:209.250000px;}
.x20_c00328{left:210.330000px;}
.xa_c00328{left:221.130000px;}
.x40_c00328{left:232.200000px;}
.x16_c00328{left:254.070000px;}
.x21_c00328{left:264.870000px;}
.x26_c00328{left:275.940000px;}
.xb_c00328{left:286.200000px;}
.x4_c00328{left:287.280000px;}
.x36_c00328{left:297.270000px;}
.x2e_c00328{left:308.880000px;}
.xc_c00328{left:329.940000px;}
.x22_c00328{left:343.170000px;}
.x41_c00328{left:352.080000px;}
.x4b_c00328{left:363.150000px;}
.xd_c00328{left:373.950000px;}
.x42_c00328{left:375.030000px;}
.x2f_c00328{left:385.290000px;}
.x48_c00328{left:386.640000px;}
.x1_c00328{left:396.090000px;}
.x4c_c00328{left:397.710000px;}
.x17_c00328{left:406.350000px;}
.x27_c00328{left:407.700000px;}
.x2_c00328{left:418.230000px;}
.x3b_c00328{left:430.110000px;}
.x18_c00328{left:440.910000px;}
.x23_c00328{left:450.630000px;}
.x43_c00328{left:453.330000px;}
.xe_c00328{left:473.850000px;}
.x4d_c00328{left:474.930000px;}
.x5_c00328{left:483.030000px;}
.x28_c00328{left:485.190000px;}
.x30_c00328{left:495.180000px;}
.x6_c00328{left:505.440000px;}
.x19_c00328{left:518.400000px;}
.x31_c00328{left:528.390000px;}
.x1a_c00328{left:540.000000px;}
.xf_c00328{left:549.990000px;}
.x29_c00328{left:561.330000px;}
.x44_c00328{left:572.670000px;}
.x37_c00328{left:583.470000px;}
.x10_c00328{left:593.190000px;}
.x32_c00328{left:615.060000px;}
.x7_c00328{left:616.140000px;}
.x1b_c00328{left:636.120000px;}
.x45_c00328{left:646.110000px;}
.x2a_c00328{left:647.460000px;}
.x8_c00328{left:648.810000px;}
.x33_c00328{left:660.420000px;}
.x3c_c00328{left:669.870000px;}
.x11_c00328{left:680.400000px;}
.x3d_c00328{left:692.280000px;}
.x46_c00328{left:703.890000px;}
.x12_c00328{left:714.690000px;}
.x24_c00328{left:725.490000px;}
.x9_c00328{left:726.570000px;}
.x38_c00328{left:736.560000px;}
.x3e_c00328{left:748.170000px;}
.x1c_c00328{left:758.700000px;}
.x2b_c00328{left:770.040000px;}
.x13_c00328{left:779.760000px;}
.x39_c00328{left:781.380000px;}
.x1d_c00328{left:791.370000px;}
.x3a_c00328{left:812.430000px;}
.x2c_c00328{left:814.050000px;}
.x14_c00328{left:824.850000px;}
@media print{
.v0_c00328{vertical-align:0.000000pt;}
.ls0_c00328{letter-spacing:0.000000pt;}
.ws0_c00328{word-spacing:0.000000pt;}
.fs1_c00328{font-size:64.000000pt;}
.fs2_c00328{font-size:69.333333pt;}
.fs0_c00328{font-size:74.666667pt;}
.fs3_c00328{font-size:80.000000pt;}
.fs4_c00328{font-size:85.333333pt;}
.y0_c00328{bottom:0.000000pt;}
.yc_c00328{bottom:642.242667pt;}
.yb_c00328{bottom:671.468000pt;}
.ya_c00328{bottom:699.544000pt;}
.y9_c00328{bottom:727.286667pt;}
.y8_c00328{bottom:755.280000pt;}
.y7_c00328{bottom:783.120000pt;}
.y6_c00328{bottom:811.292000pt;}
.y5_c00328{bottom:839.837333pt;}
.y4_c00328{bottom:867.360000pt;}
.y3_c00328{bottom:895.568000pt;}
.y2_c00328{bottom:944.224000pt;}
.y1_c00328{bottom:984.961333pt;}
.h3_c00328{height:64.000000pt;}
.h4_c00328{height:69.333333pt;}
.h2_c00328{height:74.666667pt;}
.h5_c00328{height:80.000000pt;}
.h6_c00328{height:85.333333pt;}
.h1_c00328{height:1036.000000pt;}
.h0_c00328{height:1036.266667pt;}
.w0_c00328{width:813.333333pt;}
.x0_c00328{left:0.000000pt;}
.x15_c00328{left:103.680000pt;}
.x1e_c00328{left:108.240000pt;}
.x34_c00328{left:109.200000pt;}
.x3f_c00328{left:137.520000pt;}
.x49_c00328{left:138.960000pt;}
.x25_c00328{left:147.600000pt;}
.x47_c00328{left:156.240000pt;}
.x35_c00328{left:158.400000pt;}
.x2d_c00328{left:167.280000pt;}
.x1f_c00328{left:178.800000pt;}
.x3_c00328{left:180.720000pt;}
.x4a_c00328{left:186.000000pt;}
.x20_c00328{left:186.960000pt;}
.xa_c00328{left:196.560000pt;}
.x40_c00328{left:206.400000pt;}
.x16_c00328{left:225.840000pt;}
.x21_c00328{left:235.440000pt;}
.x26_c00328{left:245.280000pt;}
.xb_c00328{left:254.400000pt;}
.x4_c00328{left:255.360000pt;}
.x36_c00328{left:264.240000pt;}
.x2e_c00328{left:274.560000pt;}
.xc_c00328{left:293.280000pt;}
.x22_c00328{left:305.040000pt;}
.x41_c00328{left:312.960000pt;}
.x4b_c00328{left:322.800000pt;}
.xd_c00328{left:332.400000pt;}
.x42_c00328{left:333.360000pt;}
.x2f_c00328{left:342.480000pt;}
.x48_c00328{left:343.680000pt;}
.x1_c00328{left:352.080000pt;}
.x4c_c00328{left:353.520000pt;}
.x17_c00328{left:361.200000pt;}
.x27_c00328{left:362.400000pt;}
.x2_c00328{left:371.760000pt;}
.x3b_c00328{left:382.320000pt;}
.x18_c00328{left:391.920000pt;}
.x23_c00328{left:400.560000pt;}
.x43_c00328{left:402.960000pt;}
.xe_c00328{left:421.200000pt;}
.x4d_c00328{left:422.160000pt;}
.x5_c00328{left:429.360000pt;}
.x28_c00328{left:431.280000pt;}
.x30_c00328{left:440.160000pt;}
.x6_c00328{left:449.280000pt;}
.x19_c00328{left:460.800000pt;}
.x31_c00328{left:469.680000pt;}
.x1a_c00328{left:480.000000pt;}
.xf_c00328{left:488.880000pt;}
.x29_c00328{left:498.960000pt;}
.x44_c00328{left:509.040000pt;}
.x37_c00328{left:518.640000pt;}
.x10_c00328{left:527.280000pt;}
.x32_c00328{left:546.720000pt;}
.x7_c00328{left:547.680000pt;}
.x1b_c00328{left:565.440000pt;}
.x45_c00328{left:574.320000pt;}
.x2a_c00328{left:575.520000pt;}
.x8_c00328{left:576.720000pt;}
.x33_c00328{left:587.040000pt;}
.x3c_c00328{left:595.440000pt;}
.x11_c00328{left:604.800000pt;}
.x3d_c00328{left:615.360000pt;}
.x46_c00328{left:625.680000pt;}
.x12_c00328{left:635.280000pt;}
.x24_c00328{left:644.880000pt;}
.x9_c00328{left:645.840000pt;}
.x38_c00328{left:654.720000pt;}
.x3e_c00328{left:665.040000pt;}
.x1c_c00328{left:674.400000pt;}
.x2b_c00328{left:684.480000pt;}
.x13_c00328{left:693.120000pt;}
.x39_c00328{left:694.560000pt;}
.x1d_c00328{left:703.440000pt;}
.x3a_c00328{left:722.160000pt;}
.x2c_c00328{left:723.600000pt;}
.x14_c00328{left:733.200000pt;}
}





/* 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_c00329 {
    display:none;
  }
  .loading-indicator_c00329.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00329 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_c00329 { 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_c00329" -> "#page-container .classname_c00329")
 */
.pf_c00329 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00329 { /* 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_c00329.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00329 { /* 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_c00329 { /* 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_c00329 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00329 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00329 {overflow:visible;}
  }
}
.c_c00329 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00329 { /* 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_c00329:after { /* webkit #35443 */
  content: '';
}
.t_c00329:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00329 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 */
}
.__c00329 { /* 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_c00329 { /* info for Javascript */
  display:none;
}
.l_c00329 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00329 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00329 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00329: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_c00329 {
    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_c00329.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00329.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_c00329 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00329{font-family:sans-serif;visibility:hidden;}
.sc__c00329{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00329{-webkit-text-stroke:0px transparent;}
}
.y0_c00329{bottom:0.000000px;}
.h1_c00329{height:1165.500000px;}
.h0_c00329{height:1165.800000px;}
.w0_c00329{width:915.000000px;}
.x0_c00329{left:0.000000px;}
@media print{
.y0_c00329{bottom:0.000000pt;}
.h1_c00329{height:1036.000000pt;}
.h0_c00329{height:1036.266667pt;}
.w0_c00329{width:813.333333pt;}
.x0_c00329{left:0.000000pt;}
}





/* 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_c00330 {
    display:none;
  }
  .loading-indicator_c00330.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00330 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_c00330 { 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_c00330" -> "#page-container .classname_c00330")
 */
.pf_c00330 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00330 { /* 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_c00330.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00330 { /* 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_c00330 { /* 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_c00330 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00330 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00330 {overflow:visible;}
  }
}
.c_c00330 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00330 { /* 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_c00330:after { /* webkit #35443 */
  content: '';
}
.t_c00330:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00330 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 */
}
.__c00330 { /* 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_c00330 { /* info for Javascript */
  display:none;
}
.l_c00330 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00330 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00330 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00330: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_c00330 {
    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_c00330.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00330.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_c00330 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00330{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00330;src:url('chunks/assets/font_dbd529e162d5851c7bfb6d27.woff2')format("woff");}.ff1_c00330{font-family:ff1_c00330;line-height:1.000000;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;}
.m44_c00330{transform:matrix(0.061045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.061045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.061045,0.000000,0.000000,0.250000,0,0);}
.m1_c00330{transform:matrix(0.084770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084770,0.000000,0.000000,0.250000,0,0);}
.m0_c00330{transform:matrix(0.085555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.085555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.085555,0.000000,0.000000,0.250000,0,0);}
.m51_c00330{transform:matrix(0.117650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117650,0.000000,0.000000,0.250000,0,0);}
.m50_c00330{transform:matrix(0.181470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181470,0.000000,0.000000,0.250000,0,0);}
.m57_c00330{transform:matrix(0.183005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183005,0.000000,0.000000,0.250000,0,0);}
.m52_c00330{transform:matrix(0.184010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184010,0.000000,0.000000,0.250000,0,0);}
.m2e_c00330{transform:matrix(0.185295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185295,0.000000,0.000000,0.250000,0,0);}
.m54_c00330{transform:matrix(0.188605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188605,0.000000,0.000000,0.250000,0,0);}
.m4d_c00330{transform:matrix(0.191120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191120,0.000000,0.000000,0.250000,0,0);}
.m56_c00330{transform:matrix(0.192055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192055,0.000000,0.000000,0.250000,0,0);}
.m55_c00330{transform:matrix(0.192780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192780,0.000000,0.000000,0.250000,0,0);}
.m3b_c00330{transform:matrix(0.195610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195610,0.000000,0.000000,0.250000,0,0);}
.m21_c00330{transform:matrix(0.196220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196220,0.000000,0.000000,0.250000,0,0);}
.m43_c00330{transform:matrix(0.198955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198955,0.000000,0.000000,0.250000,0,0);}
.m53_c00330{transform:matrix(0.199200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199200,0.000000,0.000000,0.250000,0,0);}
.m3c_c00330{transform:matrix(0.207990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207990,0.000000,0.000000,0.250000,0,0);}
.m4f_c00330{transform:matrix(0.210670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210670,0.000000,0.000000,0.250000,0,0);}
.m3e_c00330{transform:matrix(0.211220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211220,0.000000,0.000000,0.250000,0,0);}
.m1a_c00330{transform:matrix(0.216925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216925,0.000000,0.000000,0.250000,0,0);}
.m10_c00330{transform:matrix(0.219800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219800,0.000000,0.000000,0.250000,0,0);}
.mf_c00330{transform:matrix(0.221375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221375,0.000000,0.000000,0.250000,0,0);}
.m4e_c00330{transform:matrix(0.221510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221510,0.000000,0.000000,0.250000,0,0);}
.m40_c00330{transform:matrix(0.223910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223910,0.000000,0.000000,0.250000,0,0);}
.m3f_c00330{transform:matrix(0.223925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223925,0.000000,0.000000,0.250000,0,0);}
.m37_c00330{transform:matrix(0.226745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226745,0.000000,0.000000,0.250000,0,0);}
.m3d_c00330{transform:matrix(0.229315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229315,0.000000,0.000000,0.250000,0,0);}
.m42_c00330{transform:matrix(0.231585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231585,0.000000,0.000000,0.250000,0,0);}
.m2b_c00330{transform:matrix(0.231625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231625,0.000000,0.000000,0.250000,0,0);}
.m1f_c00330{transform:matrix(0.232405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232405,0.000000,0.000000,0.250000,0,0);}
.m19_c00330{transform:matrix(0.232985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232985,0.000000,0.000000,0.250000,0,0);}
.m7_c00330{transform:matrix(0.233735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233735,0.000000,0.000000,0.250000,0,0);}
.m33_c00330{transform:matrix(0.234535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234535,0.000000,0.000000,0.250000,0,0);}
.m41_c00330{transform:matrix(0.234655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234655,0.000000,0.000000,0.250000,0,0);}
.m31_c00330{transform:matrix(0.235080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235080,0.000000,0.000000,0.250000,0,0);}
.m12_c00330{transform:matrix(0.235850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235850,0.000000,0.000000,0.250000,0,0);}
.ma_c00330{transform:matrix(0.236445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236445,0.000000,0.000000,0.250000,0,0);}
.m39_c00330{transform:matrix(0.238355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238355,0.000000,0.000000,0.250000,0,0);}
.md_c00330{transform:matrix(0.239295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239295,0.000000,0.000000,0.250000,0,0);}
.m26_c00330{transform:matrix(0.240295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240295,0.000000,0.000000,0.250000,0,0);}
.m46_c00330{transform:matrix(0.241520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241520,0.000000,0.000000,0.250000,0,0);}
.m1c_c00330{transform:matrix(0.241780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241780,0.000000,0.000000,0.250000,0,0);}
.m34_c00330{transform:matrix(0.243110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243110,0.000000,0.000000,0.250000,0,0);}
.m2c_c00330{transform:matrix(0.243960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243960,0.000000,0.000000,0.250000,0,0);}
.m25_c00330{transform:matrix(0.244295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244295,0.000000,0.000000,0.250000,0,0);}
.m23_c00330{transform:matrix(0.245480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245480,0.000000,0.000000,0.250000,0,0);}
.m49_c00330{transform:matrix(0.247265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247265,0.000000,0.000000,0.250000,0,0);}
.m5_c00330{transform:matrix(0.247935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247935,0.000000,0.000000,0.250000,0,0);}
.m4a_c00330{transform:matrix(0.248345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248345,0.000000,0.000000,0.250000,0,0);}
.m13_c00330{transform:matrix(0.251060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251060,0.000000,0.000000,0.250000,0,0);}
.m1b_c00330{transform:matrix(0.251420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251420,0.000000,0.000000,0.250000,0,0);}
.m27_c00330{transform:matrix(0.252595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252595,0.000000,0.000000,0.250000,0,0);}
.m15_c00330{transform:matrix(0.253570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253570,0.000000,0.000000,0.250000,0,0);}
.m20_c00330{transform:matrix(0.253785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253785,0.000000,0.000000,0.250000,0,0);}
.m3_c00330{transform:matrix(0.255405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255405,0.000000,0.000000,0.250000,0,0);}
.m35_c00330{transform:matrix(0.256790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256790,0.000000,0.000000,0.250000,0,0);}
.mb_c00330{transform:matrix(0.258800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258800,0.000000,0.000000,0.250000,0,0);}
.m16_c00330{transform:matrix(0.260110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260110,0.000000,0.000000,0.250000,0,0);}
.m2f_c00330{transform:matrix(0.260425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260425,0.000000,0.000000,0.250000,0,0);}
.me_c00330{transform:matrix(0.260520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260520,0.000000,0.000000,0.250000,0,0);}
.m2d_c00330{transform:matrix(0.261540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261540,0.000000,0.000000,0.250000,0,0);}
.m38_c00330{transform:matrix(0.261685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261685,0.000000,0.000000,0.250000,0,0);}
.m1e_c00330{transform:matrix(0.261965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261965,0.000000,0.000000,0.250000,0,0);}
.m28_c00330{transform:matrix(0.264080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264080,0.000000,0.000000,0.250000,0,0);}
.m6_c00330{transform:matrix(0.264495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264495,0.000000,0.000000,0.250000,0,0);}
.m1d_c00330{transform:matrix(0.265885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265885,0.000000,0.000000,0.250000,0,0);}
.m45_c00330{transform:matrix(0.266530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266530,0.000000,0.000000,0.250000,0,0);}
.m8_c00330{transform:matrix(0.266585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266585,0.000000,0.000000,0.250000,0,0);}
.m14_c00330{transform:matrix(0.266850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266850,0.000000,0.000000,0.250000,0,0);}
.m22_c00330{transform:matrix(0.267990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267990,0.000000,0.000000,0.250000,0,0);}
.m47_c00330{transform:matrix(0.269355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269355,0.000000,0.000000,0.250000,0,0);}
.m30_c00330{transform:matrix(0.269575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269575,0.000000,0.000000,0.250000,0,0);}
.m48_c00330{transform:matrix(0.269680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269680,0.000000,0.000000,0.250000,0,0);}
.mc_c00330{transform:matrix(0.269845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269845,0.000000,0.000000,0.250000,0,0);}
.m2a_c00330{transform:matrix(0.270225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270225,0.000000,0.000000,0.250000,0,0);}
.m3a_c00330{transform:matrix(0.270475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270475,0.000000,0.000000,0.250000,0,0);}
.m24_c00330{transform:matrix(0.271130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271130,0.000000,0.000000,0.250000,0,0);}
.m36_c00330{transform:matrix(0.271425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271425,0.000000,0.000000,0.250000,0,0);}
.m29_c00330{transform:matrix(0.271940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271940,0.000000,0.000000,0.250000,0,0);}
.m9_c00330{transform:matrix(0.273910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273910,0.000000,0.000000,0.250000,0,0);}
.m17_c00330{transform:matrix(0.274895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274895,0.000000,0.000000,0.250000,0,0);}
.m32_c00330{transform:matrix(0.275030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275030,0.000000,0.000000,0.250000,0,0);}
.m11_c00330{transform:matrix(0.278325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278325,0.000000,0.000000,0.250000,0,0);}
.m2_c00330{transform:matrix(0.283445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283445,0.000000,0.000000,0.250000,0,0);}
.m18_c00330{transform:matrix(0.286100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286100,0.000000,0.000000,0.250000,0,0);}
.m4_c00330{transform:matrix(0.302145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302145,0.000000,0.000000,0.250000,0,0);}
.m4c_c00330{transform:matrix(0.509275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509275,0.000000,0.000000,0.250000,0,0);}
.m4b_c00330{transform:matrix(5.479110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.479110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.479110,0.000000,0.000000,0.250000,0,0);}
.v0_c00330{vertical-align:0.000000px;}
.ls0_c00330{letter-spacing:0.000000px;}
.sc__c00330{text-shadow:none;}
.sc0_c00330{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__c00330{-webkit-text-stroke:0px transparent;}
.sc0_c00330{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00330{word-spacing:0.000000px;}
.fc0_c00330{color:transparent;}
.fs3_c00330{font-size:30.000000px;}
.fs1_c00330{font-size:66.000000px;}
.fs2_c00330{font-size:72.000000px;}
.fs0_c00330{font-size:84.000000px;}
.fs4_c00330{font-size:90.000000px;}
.y0_c00330{bottom:0.000000px;}
.yb_c00330{bottom:50.058000px;}
.ya_c00330{bottom:86.119500px;}
.y9_c00330{bottom:790.633500px;}
.y8_c00330{bottom:821.880000px;}
.y7_c00330{bottom:853.302000px;}
.y6_c00330{bottom:884.616000px;}
.y5_c00330{bottom:915.840000px;}
.y4_c00330{bottom:947.700000px;}
.y3_c00330{bottom:979.749000px;}
.y2_c00330{bottom:1044.202500px;}
.y1_c00330{bottom:1100.779500px;}
.h5_c00330{height:30.000000px;}
.h3_c00330{height:66.000000px;}
.h4_c00330{height:72.000000px;}
.h2_c00330{height:84.000000px;}
.h6_c00330{height:90.000000px;}
.h1_c00330{height:1165.500000px;}
.h0_c00330{height:1165.800000px;}
.w0_c00330{width:915.000000px;}
.x0_c00330{left:0.000000px;}
.x32_c00330{left:7.290000px;}
.x2d_c00330{left:122.040000px;}
.x10_c00330{left:123.660000px;}
.x38_c00330{left:126.090000px;}
.x2e_c00330{left:155.520000px;}
.x11_c00330{left:156.870000px;}
.x39_c00330{left:162.540000px;}
.x12_c00330{left:188.460000px;}
.x24_c00330{left:210.600000px;}
.x2f_c00330{left:211.680000px;}
.x7_c00330{left:232.740000px;}
.x25_c00330{left:243.270000px;}
.x3a_c00330{left:244.620000px;}
.x18_c00330{left:254.340000px;}
.x37_c00330{left:256.230000px;}
.x1f_c00330{left:276.210000px;}
.x8_c00330{left:298.080000px;}
.x30_c00330{left:309.420000px;}
.x33_c00330{left:321.300000px;}
.x9_c00330{left:331.560000px;}
.x26_c00330{left:352.890000px;}
.x19_c00330{left:363.960000px;}
.x3_c00330{left:374.760000px;}
.x3b_c00330{left:376.380000px;}
.x27_c00330{left:387.450000px;}
.x13_c00330{left:397.440000px;}
.x3c_c00330{left:408.510000px;}
.x1_c00330{left:430.380000px;}
.x4_c00330{left:440.640000px;}
.xa_c00330{left:441.990000px;}
.x1a_c00330{left:452.790000px;}
.x34_c00330{left:462.780000px;}
.x3d_c00330{left:464.670000px;}
.x5_c00330{left:474.120000px;}
.x2_c00330{left:485.190000px;}
.x14_c00330{left:505.980000px;}
.x20_c00330{left:507.060000px;}
.x28_c00330{left:517.860000px;}
.xb_c00330{left:539.190000px;}
.x35_c00330{left:550.260000px;}
.x15_c00330{left:561.870000px;}
.x3e_c00330{left:562.950000px;}
.xc_c00330{left:572.940000px;}
.x36_c00330{left:583.740000px;}
.x6_c00330{left:595.620000px;}
.x16_c00330{left:627.480000px;}
.x1b_c00330{left:638.280000px;}
.x21_c00330{left:649.080000px;}
.xd_c00330{left:659.070000px;}
.x29_c00330{left:660.420000px;}
.x1c_c00330{left:681.750000px;}
.x22_c00330{left:692.280000px;}
.x31_c00330{left:717.390000px;}
.x17_c00330{left:725.220000px;}
.x2a_c00330{left:726.840000px;}
.xe_c00330{left:736.020000px;}
.xf_c00330{left:770.580000px;}
.x1d_c00330{left:779.760000px;}
.x2b_c00330{left:790.560000px;}
.x23_c00330{left:801.900000px;}
.x1e_c00330{left:824.850000px;}
.x2c_c00330{left:834.570000px;}
@media print{
.v0_c00330{vertical-align:0.000000pt;}
.ls0_c00330{letter-spacing:0.000000pt;}
.ws0_c00330{word-spacing:0.000000pt;}
.fs3_c00330{font-size:26.666667pt;}
.fs1_c00330{font-size:58.666667pt;}
.fs2_c00330{font-size:64.000000pt;}
.fs0_c00330{font-size:74.666667pt;}
.fs4_c00330{font-size:80.000000pt;}
.y0_c00330{bottom:0.000000pt;}
.yb_c00330{bottom:44.496000pt;}
.ya_c00330{bottom:76.550667pt;}
.y9_c00330{bottom:702.785333pt;}
.y8_c00330{bottom:730.560000pt;}
.y7_c00330{bottom:758.490667pt;}
.y6_c00330{bottom:786.325333pt;}
.y5_c00330{bottom:814.080000pt;}
.y4_c00330{bottom:842.400000pt;}
.y3_c00330{bottom:870.888000pt;}
.y2_c00330{bottom:928.180000pt;}
.y1_c00330{bottom:978.470667pt;}
.h5_c00330{height:26.666667pt;}
.h3_c00330{height:58.666667pt;}
.h4_c00330{height:64.000000pt;}
.h2_c00330{height:74.666667pt;}
.h6_c00330{height:80.000000pt;}
.h1_c00330{height:1036.000000pt;}
.h0_c00330{height:1036.266667pt;}
.w0_c00330{width:813.333333pt;}
.x0_c00330{left:0.000000pt;}
.x32_c00330{left:6.480000pt;}
.x2d_c00330{left:108.480000pt;}
.x10_c00330{left:109.920000pt;}
.x38_c00330{left:112.080000pt;}
.x2e_c00330{left:138.240000pt;}
.x11_c00330{left:139.440000pt;}
.x39_c00330{left:144.480000pt;}
.x12_c00330{left:167.520000pt;}
.x24_c00330{left:187.200000pt;}
.x2f_c00330{left:188.160000pt;}
.x7_c00330{left:206.880000pt;}
.x25_c00330{left:216.240000pt;}
.x3a_c00330{left:217.440000pt;}
.x18_c00330{left:226.080000pt;}
.x37_c00330{left:227.760000pt;}
.x1f_c00330{left:245.520000pt;}
.x8_c00330{left:264.960000pt;}
.x30_c00330{left:275.040000pt;}
.x33_c00330{left:285.600000pt;}
.x9_c00330{left:294.720000pt;}
.x26_c00330{left:313.680000pt;}
.x19_c00330{left:323.520000pt;}
.x3_c00330{left:333.120000pt;}
.x3b_c00330{left:334.560000pt;}
.x27_c00330{left:344.400000pt;}
.x13_c00330{left:353.280000pt;}
.x3c_c00330{left:363.120000pt;}
.x1_c00330{left:382.560000pt;}
.x4_c00330{left:391.680000pt;}
.xa_c00330{left:392.880000pt;}
.x1a_c00330{left:402.480000pt;}
.x34_c00330{left:411.360000pt;}
.x3d_c00330{left:413.040000pt;}
.x5_c00330{left:421.440000pt;}
.x2_c00330{left:431.280000pt;}
.x14_c00330{left:449.760000pt;}
.x20_c00330{left:450.720000pt;}
.x28_c00330{left:460.320000pt;}
.xb_c00330{left:479.280000pt;}
.x35_c00330{left:489.120000pt;}
.x15_c00330{left:499.440000pt;}
.x3e_c00330{left:500.400000pt;}
.xc_c00330{left:509.280000pt;}
.x36_c00330{left:518.880000pt;}
.x6_c00330{left:529.440000pt;}
.x16_c00330{left:557.760000pt;}
.x1b_c00330{left:567.360000pt;}
.x21_c00330{left:576.960000pt;}
.xd_c00330{left:585.840000pt;}
.x29_c00330{left:587.040000pt;}
.x1c_c00330{left:606.000000pt;}
.x22_c00330{left:615.360000pt;}
.x31_c00330{left:637.680000pt;}
.x17_c00330{left:644.640000pt;}
.x2a_c00330{left:646.080000pt;}
.xe_c00330{left:654.240000pt;}
.xf_c00330{left:684.960000pt;}
.x1d_c00330{left:693.120000pt;}
.x2b_c00330{left:702.720000pt;}
.x23_c00330{left:712.800000pt;}
.x1e_c00330{left:733.200000pt;}
.x2c_c00330{left:741.840000pt;}
}





/* 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_c00331 {
    display:none;
  }
  .loading-indicator_c00331.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00331 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_c00331 { 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_c00331" -> "#page-container .classname_c00331")
 */
.pf_c00331 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00331 { /* 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_c00331.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00331 { /* 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_c00331 { /* 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_c00331 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00331 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00331 {overflow:visible;}
  }
}
.c_c00331 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00331 { /* 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_c00331:after { /* webkit #35443 */
  content: '';
}
.t_c00331:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00331 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 */
}
.__c00331 { /* 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_c00331 { /* info for Javascript */
  display:none;
}
.l_c00331 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00331 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00331 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00331: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_c00331 {
    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_c00331.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00331.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_c00331 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00331{font-family:sans-serif;visibility:hidden;}
.sc__c00331{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00331{-webkit-text-stroke:0px transparent;}
}
.y0_c00331{bottom:0.000000px;}
.h1_c00331{height:1165.500000px;}
.h0_c00331{height:1165.800000px;}
.w0_c00331{width:915.000000px;}
.x0_c00331{left:0.000000px;}
@media print{
.y0_c00331{bottom:0.000000pt;}
.h1_c00331{height:1036.000000pt;}
.h0_c00331{height:1036.266667pt;}
.w0_c00331{width:813.333333pt;}
.x0_c00331{left:0.000000pt;}
}





/* 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_c00332 {
    display:none;
  }
  .loading-indicator_c00332.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00332 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_c00332 { 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_c00332" -> "#page-container .classname_c00332")
 */
.pf_c00332 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00332 { /* 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_c00332.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00332 { /* 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_c00332 { /* 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_c00332 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00332 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00332 {overflow:visible;}
  }
}
.c_c00332 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00332 { /* 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_c00332:after { /* webkit #35443 */
  content: '';
}
.t_c00332:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00332 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 */
}
.__c00332 { /* 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_c00332 { /* info for Javascript */
  display:none;
}
.l_c00332 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00332 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00332 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00332: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_c00332 {
    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_c00332.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00332.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_c00332 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00332{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00332;src:url('chunks/assets/font_7c6b9abe6ee2a268480c528b.woff2')format("woff");}.ff1_c00332{font-family:ff1_c00332;line-height:1.000000;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;}
.mb1_c00332{transform:matrix(0.054085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054085,0.000000,0.000000,0.250000,0,0);}
.maf_c00332{transform:matrix(0.128160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128160,0.000000,0.000000,0.250000,0,0);}
.ma6_c00332{transform:matrix(0.152224,0.001827,-0.003000,0.249982,0,0);-ms-transform:matrix(0.152224,0.001827,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.152224,0.001827,-0.003000,0.249982,0,0);}
.ma2_c00332{transform:matrix(0.169713,0.002037,-0.003000,0.249982,0,0);-ms-transform:matrix(0.169713,0.002037,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.169713,0.002037,-0.003000,0.249982,0,0);}
.maa_c00332{transform:matrix(0.177132,0.002126,-0.003000,0.249982,0,0);-ms-transform:matrix(0.177132,0.002126,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.177132,0.002126,-0.003000,0.249982,0,0);}
.ma8_c00332{transform:matrix(0.179582,0.002155,-0.003000,0.249982,0,0);-ms-transform:matrix(0.179582,0.002155,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.179582,0.002155,-0.003000,0.249982,0,0);}
.ma3_c00332{transform:matrix(0.181802,0.002182,-0.003000,0.249982,0,0);-ms-transform:matrix(0.181802,0.002182,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.181802,0.002182,-0.003000,0.249982,0,0);}
.m1a_c00332{transform:matrix(0.182389,0.005107,-0.006997,0.249902,0,0);-ms-transform:matrix(0.182389,0.005107,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.182389,0.005107,-0.006997,0.249902,0,0);}
.ma5_c00332{transform:matrix(0.182472,0.002190,-0.003000,0.249982,0,0);-ms-transform:matrix(0.182472,0.002190,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.182472,0.002190,-0.003000,0.249982,0,0);}
.ma4_c00332{transform:matrix(0.183177,0.002198,-0.003000,0.249982,0,0);-ms-transform:matrix(0.183177,0.002198,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.183177,0.002198,-0.003000,0.249982,0,0);}
.m2f_c00332{transform:matrix(0.183578,0.005140,-0.006997,0.249902,0,0);-ms-transform:matrix(0.183578,0.005140,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.183578,0.005140,-0.006997,0.249902,0,0);}
.m1c_c00332{transform:matrix(0.184178,0.005157,-0.006997,0.249902,0,0);-ms-transform:matrix(0.184178,0.005157,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.184178,0.005157,-0.006997,0.249902,0,0);}
.m32_c00332{transform:matrix(0.185357,0.005190,-0.006997,0.249902,0,0);-ms-transform:matrix(0.185357,0.005190,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.185357,0.005190,-0.006997,0.249902,0,0);}
.ma7_c00332{transform:matrix(0.187876,0.002255,-0.003000,0.249982,0,0);-ms-transform:matrix(0.187876,0.002255,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.187876,0.002255,-0.003000,0.249982,0,0);}
.m1f_c00332{transform:matrix(0.189711,0.005312,-0.006997,0.249902,0,0);-ms-transform:matrix(0.189711,0.005312,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.189711,0.005312,-0.006997,0.249902,0,0);}
.m19_c00332{transform:matrix(0.204450,0.005725,-0.006997,0.249902,0,0);-ms-transform:matrix(0.204450,0.005725,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.204450,0.005725,-0.006997,0.249902,0,0);}
.m6e_c00332{transform:matrix(0.204620,0.005729,-0.006997,0.249902,0,0);-ms-transform:matrix(0.204620,0.005729,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.204620,0.005729,-0.006997,0.249902,0,0);}
.m35_c00332{transform:matrix(0.206814,0.005791,-0.006997,0.249902,0,0);-ms-transform:matrix(0.206814,0.005791,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.206814,0.005791,-0.006997,0.249902,0,0);}
.m42_c00332{transform:matrix(0.208003,0.005824,-0.006997,0.249902,0,0);-ms-transform:matrix(0.208003,0.005824,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.208003,0.005824,-0.006997,0.249902,0,0);}
.m23_c00332{transform:matrix(0.208633,0.005842,-0.006997,0.249902,0,0);-ms-transform:matrix(0.208633,0.005842,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.208633,0.005842,-0.006997,0.249902,0,0);}
.m83_c00332{transform:matrix(0.210053,0.005881,-0.006997,0.249902,0,0);-ms-transform:matrix(0.210053,0.005881,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.210053,0.005881,-0.006997,0.249902,0,0);}
.m18_c00332{transform:matrix(0.210158,0.005884,-0.006997,0.249902,0,0);-ms-transform:matrix(0.210158,0.005884,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.210158,0.005884,-0.006997,0.249902,0,0);}
.m5a_c00332{transform:matrix(0.212782,0.005958,-0.006997,0.249902,0,0);-ms-transform:matrix(0.212782,0.005958,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.212782,0.005958,-0.006997,0.249902,0,0);}
.m1d_c00332{transform:matrix(0.214116,0.005995,-0.006997,0.249902,0,0);-ms-transform:matrix(0.214116,0.005995,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.214116,0.005995,-0.006997,0.249902,0,0);}
.m48_c00332{transform:matrix(0.214871,0.006016,-0.006997,0.249902,0,0);-ms-transform:matrix(0.214871,0.006016,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.214871,0.006016,-0.006997,0.249902,0,0);}
.m90_c00332{transform:matrix(0.215441,0.006032,-0.006997,0.249902,0,0);-ms-transform:matrix(0.215441,0.006032,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.215441,0.006032,-0.006997,0.249902,0,0);}
.m9f_c00332{transform:matrix(0.216231,0.006703,-0.007746,0.249880,0,0);-ms-transform:matrix(0.216231,0.006703,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.216231,0.006703,-0.007746,0.249880,0,0);}
.m22_c00332{transform:matrix(0.216670,0.006067,-0.006997,0.249902,0,0);-ms-transform:matrix(0.216670,0.006067,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.216670,0.006067,-0.006997,0.249902,0,0);}
.m5c_c00332{transform:matrix(0.216970,0.006075,-0.006997,0.249902,0,0);-ms-transform:matrix(0.216970,0.006075,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.216970,0.006075,-0.006997,0.249902,0,0);}
.m7f_c00332{transform:matrix(0.217645,0.006094,-0.006997,0.249902,0,0);-ms-transform:matrix(0.217645,0.006094,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.217645,0.006094,-0.006997,0.249902,0,0);}
.m8a_c00332{transform:matrix(0.219059,0.006134,-0.006997,0.249902,0,0);-ms-transform:matrix(0.219059,0.006134,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.219059,0.006134,-0.006997,0.249902,0,0);}
.m85_c00332{transform:matrix(0.219229,0.006138,-0.006997,0.249902,0,0);-ms-transform:matrix(0.219229,0.006138,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.219229,0.006138,-0.006997,0.249902,0,0);}
.m2b_c00332{transform:matrix(0.220424,0.006172,-0.006997,0.249902,0,0);-ms-transform:matrix(0.220424,0.006172,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.220424,0.006172,-0.006997,0.249902,0,0);}
.m75_c00332{transform:matrix(0.220689,0.006179,-0.006997,0.249902,0,0);-ms-transform:matrix(0.220689,0.006179,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.220689,0.006179,-0.006997,0.249902,0,0);}
.m5f_c00332{transform:matrix(0.221118,0.006191,-0.006997,0.249902,0,0);-ms-transform:matrix(0.221118,0.006191,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.221118,0.006191,-0.006997,0.249902,0,0);}
.m95_c00332{transform:matrix(0.221328,0.006197,-0.006997,0.249902,0,0);-ms-transform:matrix(0.221328,0.006197,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.221328,0.006197,-0.006997,0.249902,0,0);}
.m20_c00332{transform:matrix(0.222408,0.006227,-0.006997,0.249902,0,0);-ms-transform:matrix(0.222408,0.006227,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.222408,0.006227,-0.006997,0.249902,0,0);}
.m26_c00332{transform:matrix(0.224632,0.006290,-0.006997,0.249902,0,0);-ms-transform:matrix(0.224632,0.006290,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.224632,0.006290,-0.006997,0.249902,0,0);}
.m34_c00332{transform:matrix(0.224827,0.006295,-0.006997,0.249902,0,0);-ms-transform:matrix(0.224827,0.006295,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.224827,0.006295,-0.006997,0.249902,0,0);}
.m7c_c00332{transform:matrix(0.225976,0.006327,-0.006997,0.249902,0,0);-ms-transform:matrix(0.225976,0.006327,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.225976,0.006327,-0.006997,0.249902,0,0);}
.m6d_c00332{transform:matrix(0.228106,0.006387,-0.006997,0.249902,0,0);-ms-transform:matrix(0.228106,0.006387,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.228106,0.006387,-0.006997,0.249902,0,0);}
.m21_c00332{transform:matrix(0.228745,0.006405,-0.006997,0.249902,0,0);-ms-transform:matrix(0.228745,0.006405,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.228745,0.006405,-0.006997,0.249902,0,0);}
.m37_c00332{transform:matrix(0.229860,0.006436,-0.006997,0.249902,0,0);-ms-transform:matrix(0.229860,0.006436,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.229860,0.006436,-0.006997,0.249902,0,0);}
.m7a_c00332{transform:matrix(0.229885,0.006437,-0.006997,0.249902,0,0);-ms-transform:matrix(0.229885,0.006437,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.229885,0.006437,-0.006997,0.249902,0,0);}
.m4d_c00332{transform:matrix(0.230125,0.006443,-0.006997,0.249902,0,0);-ms-transform:matrix(0.230125,0.006443,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.230125,0.006443,-0.006997,0.249902,0,0);}
.m31_c00332{transform:matrix(0.230485,0.006454,-0.006997,0.249902,0,0);-ms-transform:matrix(0.230485,0.006454,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.230485,0.006454,-0.006997,0.249902,0,0);}
.m49_c00332{transform:matrix(0.231009,0.006468,-0.006997,0.249902,0,0);-ms-transform:matrix(0.231009,0.006468,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.231009,0.006468,-0.006997,0.249902,0,0);}
.m30_c00332{transform:matrix(0.231579,0.006484,-0.006997,0.249902,0,0);-ms-transform:matrix(0.231579,0.006484,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.231579,0.006484,-0.006997,0.249902,0,0);}
.m40_c00332{transform:matrix(0.231649,0.006486,-0.006997,0.249902,0,0);-ms-transform:matrix(0.231649,0.006486,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.231649,0.006486,-0.006997,0.249902,0,0);}
.m92_c00332{transform:matrix(0.232314,0.006505,-0.006997,0.249902,0,0);-ms-transform:matrix(0.232314,0.006505,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.232314,0.006505,-0.006997,0.249902,0,0);}
.m1e_c00332{transform:matrix(0.232424,0.006508,-0.006997,0.249902,0,0);-ms-transform:matrix(0.232424,0.006508,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.232424,0.006508,-0.006997,0.249902,0,0);}
.m73_c00332{transform:matrix(0.232514,0.006510,-0.006997,0.249902,0,0);-ms-transform:matrix(0.232514,0.006510,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.232514,0.006510,-0.006997,0.249902,0,0);}
.m4e_c00332{transform:matrix(0.233643,0.006542,-0.006997,0.249902,0,0);-ms-transform:matrix(0.233643,0.006542,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.233643,0.006542,-0.006997,0.249902,0,0);}
.m51_c00332{transform:matrix(0.234198,0.006558,-0.006997,0.249902,0,0);-ms-transform:matrix(0.234198,0.006558,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.234198,0.006558,-0.006997,0.249902,0,0);}
.m2d_c00332{transform:matrix(0.234203,0.006558,-0.006997,0.249902,0,0);-ms-transform:matrix(0.234203,0.006558,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.234203,0.006558,-0.006997,0.249902,0,0);}
.m44_c00332{transform:matrix(0.234213,0.006558,-0.006997,0.249902,0,0);-ms-transform:matrix(0.234213,0.006558,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.234213,0.006558,-0.006997,0.249902,0,0);}
.m54_c00332{transform:matrix(0.234408,0.006563,-0.006997,0.249902,0,0);-ms-transform:matrix(0.234408,0.006563,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.234408,0.006563,-0.006997,0.249902,0,0);}
.m8b_c00332{transform:matrix(0.234988,0.006580,-0.006997,0.249902,0,0);-ms-transform:matrix(0.234988,0.006580,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.234988,0.006580,-0.006997,0.249902,0,0);}
.m61_c00332{transform:matrix(0.235033,0.006581,-0.006997,0.249902,0,0);-ms-transform:matrix(0.235033,0.006581,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.235033,0.006581,-0.006997,0.249902,0,0);}
.m43_c00332{transform:matrix(0.235293,0.006588,-0.006997,0.249902,0,0);-ms-transform:matrix(0.235293,0.006588,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.235293,0.006588,-0.006997,0.249902,0,0);}
.m33_c00332{transform:matrix(0.236102,0.006611,-0.006997,0.249902,0,0);-ms-transform:matrix(0.236102,0.006611,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.236102,0.006611,-0.006997,0.249902,0,0);}
.m1b_c00332{transform:matrix(0.236202,0.006614,-0.006997,0.249902,0,0);-ms-transform:matrix(0.236202,0.006614,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.236202,0.006614,-0.006997,0.249902,0,0);}
.m39_c00332{transform:matrix(0.236677,0.006627,-0.006997,0.249902,0,0);-ms-transform:matrix(0.236677,0.006627,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.236677,0.006627,-0.006997,0.249902,0,0);}
.m8e_c00332{transform:matrix(0.236752,0.006629,-0.006997,0.249902,0,0);-ms-transform:matrix(0.236752,0.006629,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.236752,0.006629,-0.006997,0.249902,0,0);}
.m96_c00332{transform:matrix(0.238062,0.006666,-0.006997,0.249902,0,0);-ms-transform:matrix(0.238062,0.006666,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.238062,0.006666,-0.006997,0.249902,0,0);}
.m8f_c00332{transform:matrix(0.238297,0.006672,-0.006997,0.249902,0,0);-ms-transform:matrix(0.238297,0.006672,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.238297,0.006672,-0.006997,0.249902,0,0);}
.m3c_c00332{transform:matrix(0.240461,0.006733,-0.006997,0.249902,0,0);-ms-transform:matrix(0.240461,0.006733,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.240461,0.006733,-0.006997,0.249902,0,0);}
.m2e_c00332{transform:matrix(0.240501,0.006734,-0.006997,0.249902,0,0);-ms-transform:matrix(0.240501,0.006734,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.240501,0.006734,-0.006997,0.249902,0,0);}
.ma9_c00332{transform:matrix(0.240598,0.002887,-0.003000,0.249982,0,0);-ms-transform:matrix(0.240598,0.002887,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.240598,0.002887,-0.003000,0.249982,0,0);}
.m46_c00332{transform:matrix(0.243655,0.006822,-0.006997,0.249902,0,0);-ms-transform:matrix(0.243655,0.006822,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.243655,0.006822,-0.006997,0.249902,0,0);}
.m8d_c00332{transform:matrix(0.245294,0.006868,-0.006997,0.249902,0,0);-ms-transform:matrix(0.245294,0.006868,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.245294,0.006868,-0.006997,0.249902,0,0);}
.m25_c00332{transform:matrix(0.246164,0.006893,-0.006997,0.249902,0,0);-ms-transform:matrix(0.246164,0.006893,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.246164,0.006893,-0.006997,0.249902,0,0);}
.m84_c00332{transform:matrix(0.246184,0.006893,-0.006997,0.249902,0,0);-ms-transform:matrix(0.246184,0.006893,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.246184,0.006893,-0.006997,0.249902,0,0);}
.ma0_c00332{transform:matrix(0.246587,0.007644,-0.007746,0.249880,0,0);-ms-transform:matrix(0.246587,0.007644,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.246587,0.007644,-0.007746,0.249880,0,0);}
.m69_c00332{transform:matrix(0.248817,0.006967,-0.006997,0.249902,0,0);-ms-transform:matrix(0.248817,0.006967,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.248817,0.006967,-0.006997,0.249902,0,0);}
.m9c_c00332{transform:matrix(0.250445,0.007764,-0.007746,0.249880,0,0);-ms-transform:matrix(0.250445,0.007764,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.250445,0.007764,-0.007746,0.249880,0,0);}
.m6b_c00332{transform:matrix(0.252581,0.007072,-0.006997,0.249902,0,0);-ms-transform:matrix(0.252581,0.007072,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.252581,0.007072,-0.006997,0.249902,0,0);}
.m5b_c00332{transform:matrix(0.254865,0.007136,-0.006997,0.249902,0,0);-ms-transform:matrix(0.254865,0.007136,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.254865,0.007136,-0.006997,0.249902,0,0);}
.m52_c00332{transform:matrix(0.254880,0.007137,-0.006997,0.249902,0,0);-ms-transform:matrix(0.254880,0.007137,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.254880,0.007137,-0.006997,0.249902,0,0);}
.m36_c00332{transform:matrix(0.255010,0.007140,-0.006997,0.249902,0,0);-ms-transform:matrix(0.255010,0.007140,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.255010,0.007140,-0.006997,0.249902,0,0);}
.m87_c00332{transform:matrix(0.255055,0.007142,-0.006997,0.249902,0,0);-ms-transform:matrix(0.255055,0.007142,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.255055,0.007142,-0.006997,0.249902,0,0);}
.m3a_c00332{transform:matrix(0.257189,0.007201,-0.006997,0.249902,0,0);-ms-transform:matrix(0.257189,0.007201,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.257189,0.007201,-0.006997,0.249902,0,0);}
.m62_c00332{transform:matrix(0.257899,0.007221,-0.006997,0.249902,0,0);-ms-transform:matrix(0.257899,0.007221,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.257899,0.007221,-0.006997,0.249902,0,0);}
.m3f_c00332{transform:matrix(0.258144,0.007228,-0.006997,0.249902,0,0);-ms-transform:matrix(0.258144,0.007228,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.258144,0.007228,-0.006997,0.249902,0,0);}
.m97_c00332{transform:matrix(0.258209,0.007230,-0.006997,0.249902,0,0);-ms-transform:matrix(0.258209,0.007230,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.258209,0.007230,-0.006997,0.249902,0,0);}
.m59_c00332{transform:matrix(0.258459,0.007237,-0.006997,0.249902,0,0);-ms-transform:matrix(0.258459,0.007237,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.258459,0.007237,-0.006997,0.249902,0,0);}
.m7d_c00332{transform:matrix(0.258899,0.007249,-0.006997,0.249902,0,0);-ms-transform:matrix(0.258899,0.007249,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.258899,0.007249,-0.006997,0.249902,0,0);}
.m65_c00332{transform:matrix(0.259958,0.007279,-0.006997,0.249902,0,0);-ms-transform:matrix(0.259958,0.007279,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.259958,0.007279,-0.006997,0.249902,0,0);}
.m63_c00332{transform:matrix(0.260538,0.007295,-0.006997,0.249902,0,0);-ms-transform:matrix(0.260538,0.007295,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.260538,0.007295,-0.006997,0.249902,0,0);}
.m86_c00332{transform:matrix(0.260643,0.007298,-0.006997,0.249902,0,0);-ms-transform:matrix(0.260643,0.007298,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.260643,0.007298,-0.006997,0.249902,0,0);}
.m45_c00332{transform:matrix(0.260938,0.007306,-0.006997,0.249902,0,0);-ms-transform:matrix(0.260938,0.007306,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.260938,0.007306,-0.006997,0.249902,0,0);}
.m55_c00332{transform:matrix(0.261882,0.007333,-0.006997,0.249902,0,0);-ms-transform:matrix(0.261882,0.007333,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.261882,0.007333,-0.006997,0.249902,0,0);}
.m98_c00332{transform:matrix(0.263392,0.007375,-0.006997,0.249902,0,0);-ms-transform:matrix(0.263392,0.007375,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.263392,0.007375,-0.006997,0.249902,0,0);}
.m66_c00332{transform:matrix(0.264416,0.007404,-0.006997,0.249902,0,0);-ms-transform:matrix(0.264416,0.007404,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.264416,0.007404,-0.006997,0.249902,0,0);}
.m29_c00332{transform:matrix(0.264571,0.007408,-0.006997,0.249902,0,0);-ms-transform:matrix(0.264571,0.007408,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.264571,0.007408,-0.006997,0.249902,0,0);}
.m79_c00332{transform:matrix(0.264716,0.007412,-0.006997,0.249902,0,0);-ms-transform:matrix(0.264716,0.007412,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.264716,0.007412,-0.006997,0.249902,0,0);}
.m64_c00332{transform:matrix(0.265556,0.007436,-0.006997,0.249902,0,0);-ms-transform:matrix(0.265556,0.007436,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.265556,0.007436,-0.006997,0.249902,0,0);}
.m47_c00332{transform:matrix(0.265706,0.007440,-0.006997,0.249902,0,0);-ms-transform:matrix(0.265706,0.007440,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.265706,0.007440,-0.006997,0.249902,0,0);}
.m9e_c00332{transform:matrix(0.265742,0.008238,-0.007746,0.249880,0,0);-ms-transform:matrix(0.265742,0.008238,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.265742,0.008238,-0.007746,0.249880,0,0);}
.m89_c00332{transform:matrix(0.266606,0.007465,-0.006997,0.249902,0,0);-ms-transform:matrix(0.266606,0.007465,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.266606,0.007465,-0.006997,0.249902,0,0);}
.m3d_c00332{transform:matrix(0.267405,0.007487,-0.006997,0.249902,0,0);-ms-transform:matrix(0.267405,0.007487,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.267405,0.007487,-0.006997,0.249902,0,0);}
.m4c_c00332{transform:matrix(0.268435,0.007516,-0.006997,0.249902,0,0);-ms-transform:matrix(0.268435,0.007516,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.268435,0.007516,-0.006997,0.249902,0,0);}
.m4a_c00332{transform:matrix(0.268620,0.007521,-0.006997,0.249902,0,0);-ms-transform:matrix(0.268620,0.007521,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.268620,0.007521,-0.006997,0.249902,0,0);}
.m7e_c00332{transform:matrix(0.268695,0.007523,-0.006997,0.249902,0,0);-ms-transform:matrix(0.268695,0.007523,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.268695,0.007523,-0.006997,0.249902,0,0);}
.m4b_c00332{transform:matrix(0.268780,0.007526,-0.006997,0.249902,0,0);-ms-transform:matrix(0.268780,0.007526,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.268780,0.007526,-0.006997,0.249902,0,0);}
.m80_c00332{transform:matrix(0.269249,0.007539,-0.006997,0.249902,0,0);-ms-transform:matrix(0.269249,0.007539,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.269249,0.007539,-0.006997,0.249902,0,0);}
.m24_c00332{transform:matrix(0.269884,0.007557,-0.006997,0.249902,0,0);-ms-transform:matrix(0.269884,0.007557,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.269884,0.007557,-0.006997,0.249902,0,0);}
.m2c_c00332{transform:matrix(0.271419,0.007600,-0.006997,0.249902,0,0);-ms-transform:matrix(0.271419,0.007600,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.271419,0.007600,-0.006997,0.249902,0,0);}
.m57_c00332{transform:matrix(0.271833,0.007611,-0.006997,0.249902,0,0);-ms-transform:matrix(0.271833,0.007611,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.271833,0.007611,-0.006997,0.249902,0,0);}
.m91_c00332{transform:matrix(0.272338,0.007625,-0.006997,0.249902,0,0);-ms-transform:matrix(0.272338,0.007625,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.272338,0.007625,-0.006997,0.249902,0,0);}
.m81_c00332{transform:matrix(0.272753,0.007637,-0.006997,0.249902,0,0);-ms-transform:matrix(0.272753,0.007637,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.272753,0.007637,-0.006997,0.249902,0,0);}
.m9d_c00332{transform:matrix(0.273084,0.008466,-0.007746,0.249880,0,0);-ms-transform:matrix(0.273084,0.008466,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.273084,0.008466,-0.007746,0.249880,0,0);}
.m88_c00332{transform:matrix(0.274153,0.007676,-0.006997,0.249902,0,0);-ms-transform:matrix(0.274153,0.007676,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.274153,0.007676,-0.006997,0.249902,0,0);}
.m50_c00332{transform:matrix(0.274253,0.007679,-0.006997,0.249902,0,0);-ms-transform:matrix(0.274253,0.007679,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.274253,0.007679,-0.006997,0.249902,0,0);}
.m60_c00332{transform:matrix(0.274507,0.007686,-0.006997,0.249902,0,0);-ms-transform:matrix(0.274507,0.007686,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.274507,0.007686,-0.006997,0.249902,0,0);}
.m82_c00332{transform:matrix(0.275247,0.007707,-0.006997,0.249902,0,0);-ms-transform:matrix(0.275247,0.007707,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.275247,0.007707,-0.006997,0.249902,0,0);}
.ma1_c00332{transform:matrix(0.276042,0.008557,-0.007746,0.249880,0,0);-ms-transform:matrix(0.276042,0.008557,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.276042,0.008557,-0.007746,0.249880,0,0);}
.m27_c00332{transform:matrix(0.276197,0.007734,-0.006997,0.249902,0,0);-ms-transform:matrix(0.276197,0.007734,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.276197,0.007734,-0.006997,0.249902,0,0);}
.m8c_c00332{transform:matrix(0.276232,0.007734,-0.006997,0.249902,0,0);-ms-transform:matrix(0.276232,0.007734,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.276232,0.007734,-0.006997,0.249902,0,0);}
.m6f_c00332{transform:matrix(0.277591,0.007773,-0.006997,0.249902,0,0);-ms-transform:matrix(0.277591,0.007773,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.277591,0.007773,-0.006997,0.249902,0,0);}
.m28_c00332{transform:matrix(0.278201,0.007790,-0.006997,0.249902,0,0);-ms-transform:matrix(0.278201,0.007790,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.278201,0.007790,-0.006997,0.249902,0,0);}
.m4f_c00332{transform:matrix(0.278366,0.007794,-0.006997,0.249902,0,0);-ms-transform:matrix(0.278366,0.007794,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.278366,0.007794,-0.006997,0.249902,0,0);}
.m94_c00332{transform:matrix(0.279560,0.007828,-0.006997,0.249902,0,0);-ms-transform:matrix(0.279560,0.007828,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.279560,0.007828,-0.006997,0.249902,0,0);}
.m2a_c00332{transform:matrix(0.280695,0.007859,-0.006997,0.249902,0,0);-ms-transform:matrix(0.280695,0.007859,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.280695,0.007859,-0.006997,0.249902,0,0);}
.m93_c00332{transform:matrix(0.281015,0.007868,-0.006997,0.249902,0,0);-ms-transform:matrix(0.281015,0.007868,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.281015,0.007868,-0.006997,0.249902,0,0);}
.m70_c00332{transform:matrix(0.281110,0.007871,-0.006997,0.249902,0,0);-ms-transform:matrix(0.281110,0.007871,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.281110,0.007871,-0.006997,0.249902,0,0);}
.m38_c00332{transform:matrix(0.284089,0.007954,-0.006997,0.249902,0,0);-ms-transform:matrix(0.284089,0.007954,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.284089,0.007954,-0.006997,0.249902,0,0);}
.m74_c00332{transform:matrix(0.284324,0.007961,-0.006997,0.249902,0,0);-ms-transform:matrix(0.284324,0.007961,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.284324,0.007961,-0.006997,0.249902,0,0);}
.m12_c00332{transform:matrix(0.284554,0.005407,-0.004749,0.249955,0,0);-ms-transform:matrix(0.284554,0.005407,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.284554,0.005407,-0.004749,0.249955,0,0);}
.m9_c00332{transform:matrix(0.289648,0.005503,-0.004749,0.249955,0,0);-ms-transform:matrix(0.289648,0.005503,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.289648,0.005503,-0.004749,0.249955,0,0);}
.m67_c00332{transform:matrix(0.290056,0.008122,-0.006997,0.249902,0,0);-ms-transform:matrix(0.290056,0.008122,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.290056,0.008122,-0.006997,0.249902,0,0);}
.m3e_c00332{transform:matrix(0.293380,0.008215,-0.006997,0.249902,0,0);-ms-transform:matrix(0.293380,0.008215,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.293380,0.008215,-0.006997,0.249902,0,0);}
.m72_c00332{transform:matrix(0.293525,0.008219,-0.006997,0.249902,0,0);-ms-transform:matrix(0.293525,0.008219,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.293525,0.008219,-0.006997,0.249902,0,0);}
.m78_c00332{transform:matrix(0.294330,0.008241,-0.006997,0.249902,0,0);-ms-transform:matrix(0.294330,0.008241,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.294330,0.008241,-0.006997,0.249902,0,0);}
.m14_c00332{transform:matrix(0.295412,0.005613,-0.004749,0.249955,0,0);-ms-transform:matrix(0.295412,0.005613,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.295412,0.005613,-0.004749,0.249955,0,0);}
.m6c_c00332{transform:matrix(0.296624,0.008305,-0.006997,0.249902,0,0);-ms-transform:matrix(0.296624,0.008305,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.296624,0.008305,-0.006997,0.249902,0,0);}
.m71_c00332{transform:matrix(0.296964,0.008315,-0.006997,0.249902,0,0);-ms-transform:matrix(0.296964,0.008315,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.296964,0.008315,-0.006997,0.249902,0,0);}
.m56_c00332{transform:matrix(0.298328,0.008353,-0.006997,0.249902,0,0);-ms-transform:matrix(0.298328,0.008353,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.298328,0.008353,-0.006997,0.249902,0,0);}
.m76_c00332{transform:matrix(0.299363,0.008382,-0.006997,0.249902,0,0);-ms-transform:matrix(0.299363,0.008382,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.299363,0.008382,-0.006997,0.249902,0,0);}
.m68_c00332{transform:matrix(0.300352,0.008410,-0.006997,0.249902,0,0);-ms-transform:matrix(0.300352,0.008410,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.300352,0.008410,-0.006997,0.249902,0,0);}
.m53_c00332{transform:matrix(0.302127,0.008460,-0.006997,0.249902,0,0);-ms-transform:matrix(0.302127,0.008460,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.302127,0.008460,-0.006997,0.249902,0,0);}
.m58_c00332{transform:matrix(0.303506,0.008498,-0.006997,0.249902,0,0);-ms-transform:matrix(0.303506,0.008498,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.303506,0.008498,-0.006997,0.249902,0,0);}
.m3b_c00332{transform:matrix(0.303741,0.008505,-0.006997,0.249902,0,0);-ms-transform:matrix(0.303741,0.008505,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.303741,0.008505,-0.006997,0.249902,0,0);}
.m7b_c00332{transform:matrix(0.307609,0.008613,-0.006997,0.249902,0,0);-ms-transform:matrix(0.307609,0.008613,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.307609,0.008613,-0.006997,0.249902,0,0);}
.m6a_c00332{transform:matrix(0.314922,0.008818,-0.006997,0.249902,0,0);-ms-transform:matrix(0.314922,0.008818,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.314922,0.008818,-0.006997,0.249902,0,0);}
.m41_c00332{transform:matrix(0.318610,0.008921,-0.006997,0.249902,0,0);-ms-transform:matrix(0.318610,0.008921,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.318610,0.008921,-0.006997,0.249902,0,0);}
.m15_c00332{transform:matrix(0.323747,0.006151,-0.004749,0.249955,0,0);-ms-transform:matrix(0.323747,0.006151,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.323747,0.006151,-0.004749,0.249955,0,0);}
.m5_c00332{transform:matrix(0.327546,0.006223,-0.004749,0.249955,0,0);-ms-transform:matrix(0.327546,0.006223,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.327546,0.006223,-0.004749,0.249955,0,0);}
.m13_c00332{transform:matrix(0.331980,0.006308,-0.004749,0.249955,0,0);-ms-transform:matrix(0.331980,0.006308,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.331980,0.006308,-0.004749,0.249955,0,0);}
.mf_c00332{transform:matrix(0.337024,0.006403,-0.004749,0.249955,0,0);-ms-transform:matrix(0.337024,0.006403,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.337024,0.006403,-0.004749,0.249955,0,0);}
.mad_c00332{transform:matrix(0.338415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338415,0.000000,0.000000,0.250000,0,0);}
.m3_c00332{transform:matrix(0.346238,0.006579,-0.004749,0.249955,0,0);-ms-transform:matrix(0.346238,0.006579,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.346238,0.006579,-0.004749,0.249955,0,0);}
.mb3_c00332{transform:matrix(0.357530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357530,0.000000,0.000000,0.250000,0,0);}
.m77_c00332{transform:matrix(0.364337,0.010201,-0.006997,0.249902,0,0);-ms-transform:matrix(0.364337,0.010201,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.364337,0.010201,-0.006997,0.249902,0,0);}
.m11_c00332{transform:matrix(0.366209,0.006958,-0.004749,0.249955,0,0);-ms-transform:matrix(0.366209,0.006958,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.366209,0.006958,-0.004749,0.249955,0,0);}
.m9b_c00332{transform:matrix(0.395455,0.012259,-0.007746,0.249880,0,0);-ms-transform:matrix(0.395455,0.012259,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.395455,0.012259,-0.007746,0.249880,0,0);}
.m6_c00332{transform:matrix(0.408091,0.007754,-0.004749,0.249955,0,0);-ms-transform:matrix(0.408091,0.007754,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.408091,0.007754,-0.004749,0.249955,0,0);}
.m10_c00332{transform:matrix(0.416700,0.007917,-0.004749,0.249955,0,0);-ms-transform:matrix(0.416700,0.007917,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.416700,0.007917,-0.004749,0.249955,0,0);}
.ma_c00332{transform:matrix(0.424303,0.008062,-0.004749,0.249955,0,0);-ms-transform:matrix(0.424303,0.008062,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.424303,0.008062,-0.004749,0.249955,0,0);}
.m99_c00332{transform:matrix(0.456681,0.012787,-0.006997,0.249902,0,0);-ms-transform:matrix(0.456681,0.012787,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.456681,0.012787,-0.006997,0.249902,0,0);}
.m7_c00332{transform:matrix(0.460892,0.008757,-0.004749,0.249955,0,0);-ms-transform:matrix(0.460892,0.008757,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.460892,0.008757,-0.004749,0.249955,0,0);}
.mb_c00332{transform:matrix(0.486532,0.009244,-0.004749,0.249955,0,0);-ms-transform:matrix(0.486532,0.009244,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.486532,0.009244,-0.004749,0.249955,0,0);}
.m5e_c00332{transform:matrix(0.503493,0.014098,-0.006997,0.249902,0,0);-ms-transform:matrix(0.503493,0.014098,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.503493,0.014098,-0.006997,0.249902,0,0);}
.m8_c00332{transform:matrix(0.523930,0.009955,-0.004749,0.249955,0,0);-ms-transform:matrix(0.523930,0.009955,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.523930,0.009955,-0.004749,0.249955,0,0);}
.me_c00332{transform:matrix(0.524595,0.009967,-0.004749,0.249955,0,0);-ms-transform:matrix(0.524595,0.009967,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.524595,0.009967,-0.004749,0.249955,0,0);}
.mb2_c00332{transform:matrix(0.528865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528865,0.000000,0.000000,0.250000,0,0);}
.m4_c00332{transform:matrix(0.594243,0.011291,-0.004749,0.249955,0,0);-ms-transform:matrix(0.594243,0.011291,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.594243,0.011291,-0.004749,0.249955,0,0);}
.m17_c00332{transform:matrix(0.597072,0.011344,-0.004749,0.249955,0,0);-ms-transform:matrix(0.597072,0.011344,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.597072,0.011344,-0.004749,0.249955,0,0);}
.m16_c00332{transform:matrix(0.600267,0.011405,-0.004749,0.249955,0,0);-ms-transform:matrix(0.600267,0.011405,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.600267,0.011405,-0.004749,0.249955,0,0);}
.mc_c00332{transform:matrix(0.716881,0.013621,-0.004749,0.249955,0,0);-ms-transform:matrix(0.716881,0.013621,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.716881,0.013621,-0.004749,0.249955,0,0);}
.mb6_c00332{transform:matrix(0.803095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.803095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.803095,0.000000,0.000000,0.250000,0,0);}
.mab_c00332{transform:matrix(0.856050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.856050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.856050,0.000000,0.000000,0.250000,0,0);}
.md_c00332{transform:matrix(0.872458,0.016577,-0.004749,0.249955,0,0);-ms-transform:matrix(0.872458,0.016577,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.872458,0.016577,-0.004749,0.249955,0,0);}
.m2_c00332{transform:matrix(0.937541,0.017813,-0.004749,0.249955,0,0);-ms-transform:matrix(0.937541,0.017813,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.937541,0.017813,-0.004749,0.249955,0,0);}
.mb4_c00332{transform:matrix(0.965730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.965730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.965730,0.000000,0.000000,0.250000,0,0);}
.m5d_c00332{transform:matrix(1.046195,0.029293,-0.006997,0.249902,0,0);-ms-transform:matrix(1.046195,0.029293,-0.006997,0.249902,0,0);-webkit-transform:matrix(1.046195,0.029293,-0.006997,0.249902,0,0);}
.m0_c00332{transform:matrix(1.159556,0.022032,-0.004749,0.249955,0,0);-ms-transform:matrix(1.159556,0.022032,-0.004749,0.249955,0,0);-webkit-transform:matrix(1.159556,0.022032,-0.004749,0.249955,0,0);}
.m9a_c00332{transform:matrix(1.197456,0.033529,-0.006997,0.249902,0,0);-ms-transform:matrix(1.197456,0.033529,-0.006997,0.249902,0,0);-webkit-transform:matrix(1.197456,0.033529,-0.006997,0.249902,0,0);}
.m1_c00332{transform:matrix(1.242876,0.023615,-0.004749,0.249955,0,0);-ms-transform:matrix(1.242876,0.023615,-0.004749,0.249955,0,0);-webkit-transform:matrix(1.242876,0.023615,-0.004749,0.249955,0,0);}
.mae_c00332{transform:matrix(1.675050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.675050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.675050,0.000000,0.000000,0.250000,0,0);}
.mac_c00332{transform:matrix(1.777675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.777675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.777675,0.000000,0.000000,0.250000,0,0);}
.mb5_c00332{transform:matrix(2.537640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.537640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.537640,0.000000,0.000000,0.250000,0,0);}
.mb0_c00332{transform:matrix(3.244200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.244200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.244200,0.000000,0.000000,0.250000,0,0);}
.v0_c00332{vertical-align:0.000000px;}
.ls0_c00332{letter-spacing:0.000000px;}
.sc__c00332{text-shadow:none;}
.sc0_c00332{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__c00332{-webkit-text-stroke:0px transparent;}
.sc0_c00332{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00332{word-spacing:0.000000px;}
._0_c00332{width:16.150909px;}
.fc0_c00332{color:transparent;}
.fs7_c00332{font-size:18.000000px;}
.fs0_c00332{font-size:18.003249px;}
.fs8_c00332{font-size:24.000000px;}
.fs4_c00332{font-size:54.021164px;}
.fs3_c00332{font-size:66.025867px;}
.fs2_c00332{font-size:72.028218px;}
.fs5_c00332{font-size:72.034588px;}
.fs1_c00332{font-size:84.032922px;}
.fs6_c00332{font-size:102.007344px;}
.y0_c00332{bottom:0.000000px;}
.ybe_c00332{bottom:252.450000px;}
.ybd_c00332{bottom:254.610000px;}
.ybc_c00332{bottom:290.520000px;}
.yba_c00332{bottom:355.050000px;}
.ybb_c00332{bottom:358.290000px;}
.yb8_c00332{bottom:423.758100px;}
.yb7_c00332{bottom:424.441848px;}
.yb6_c00332{bottom:425.239302px;}
.yb5_c00332{bottom:425.894286px;}
.yb4_c00332{bottom:426.296010px;}
.yb3_c00332{bottom:426.827802px;}
.yb2_c00332{bottom:427.747512px;}
.yb1_c00332{bottom:428.683530px;}
.yb9_c00332{bottom:429.030000px;}
.yb0_c00332{bottom:429.033000px;}
.yaf_c00332{bottom:532.737732px;}
.yae_c00332{bottom:534.471624px;}
.yad_c00332{bottom:535.502436px;}
.yac_c00332{bottom:538.255375px;}
.yab_c00332{bottom:541.047189px;}
.yaa_c00332{bottom:542.746531px;}
.ya9_c00332{bottom:544.872000px;}
.ya8_c00332{bottom:579.434076px;}
.ya7_c00332{bottom:579.434568px;}
.ya6_c00332{bottom:600.637440px;}
.ya5_c00332{bottom:602.272488px;}
.ya4_c00332{bottom:603.340128px;}
.ya3_c00332{bottom:604.130700px;}
.ya2_c00332{bottom:607.057212px;}
.ya1_c00332{bottom:607.625430px;}
.ya0_c00332{bottom:610.520310px;}
.y9f_c00332{bottom:611.336286px;}
.y9e_c00332{bottom:613.700178px;}
.y9d_c00332{bottom:614.667852px;}
.y9c_c00332{bottom:615.450936px;}
.y9b_c00332{bottom:638.223834px;}
.y9a_c00332{bottom:638.720850px;}
.y99_c00332{bottom:640.601070px;}
.y98_c00332{bottom:641.288082px;}
.y97_c00332{bottom:641.985546px;}
.y96_c00332{bottom:643.641948px;}
.y95_c00332{bottom:645.514974px;}
.y94_c00332{bottom:647.125602px;}
.y93_c00332{bottom:648.548868px;}
.y92_c00332{bottom:649.217406px;}
.y91_c00332{bottom:649.901562px;}
.y90_c00332{bottom:651.263172px;}
.y8f_c00332{bottom:651.913968px;}
.y8e_c00332{bottom:673.675800px;}
.y8d_c00332{bottom:674.793636px;}
.y8c_c00332{bottom:675.677340px;}
.y8b_c00332{bottom:676.569018px;}
.y8a_c00332{bottom:676.896030px;}
.y89_c00332{bottom:677.681700px;}
.y88_c00332{bottom:678.003714px;}
.y87_c00332{bottom:678.441282px;}
.y86_c00332{bottom:678.774912px;}
.y85_c00332{bottom:679.304298px;}
.y84_c00332{bottom:679.733028px;}
.y83_c00332{bottom:708.664482px;}
.y82_c00332{bottom:710.821962px;}
.y81_c00332{bottom:711.454062px;}
.y80_c00332{bottom:714.263952px;}
.y7f_c00332{bottom:715.073868px;}
.y7e_c00332{bottom:716.702826px;}
.y7d_c00332{bottom:717.200472px;}
.y7c_c00332{bottom:719.074530px;}
.y7b_c00332{bottom:721.208370px;}
.y7a_c00332{bottom:721.983588px;}
.y79_c00332{bottom:723.564804px;}
.y78_c00332{bottom:724.306458px;}
.y77_c00332{bottom:744.497268px;}
.y76_c00332{bottom:745.106760px;}
.y75_c00332{bottom:746.567802px;}
.y74_c00332{bottom:747.296952px;}
.y73_c00332{bottom:751.967208px;}
.y72_c00332{bottom:752.686056px;}
.y71_c00332{bottom:753.420774px;}
.y70_c00332{bottom:754.614204px;}
.y6f_c00332{bottom:755.131806px;}
.y6e_c00332{bottom:757.753236px;}
.y6d_c00332{bottom:758.255346px;}
.y6c_c00332{bottom:759.146052px;}
.y6b_c00332{bottom:780.510498px;}
.y6a_c00332{bottom:781.257354px;}
.y69_c00332{bottom:782.115006px;}
.y68_c00332{bottom:782.690598px;}
.y67_c00332{bottom:783.573426px;}
.y66_c00332{bottom:783.997548px;}
.y65_c00332{bottom:784.541508px;}
.y64_c00332{bottom:786.160428px;}
.y63_c00332{bottom:786.589248px;}
.y62_c00332{bottom:787.455816px;}
.y61_c00332{bottom:787.870224px;}
.y60_c00332{bottom:788.856492px;}
.y5f_c00332{bottom:818.853096px;}
.y5e_c00332{bottom:820.499850px;}
.y5d_c00332{bottom:822.322758px;}
.y5c_c00332{bottom:823.280010px;}
.y5b_c00332{bottom:824.012322px;}
.y5a_c00332{bottom:826.437654px;}
.y59_c00332{bottom:827.185290px;}
.y58_c00332{bottom:827.902656px;}
.y57_c00332{bottom:829.816152px;}
.y56_c00332{bottom:831.262974px;}
.y55_c00332{bottom:850.884378px;}
.y54_c00332{bottom:851.728218px;}
.y53_c00332{bottom:853.711854px;}
.y52_c00332{bottom:856.468770px;}
.y51_c00332{bottom:859.007838px;}
.y50_c00332{bottom:859.817832px;}
.y4f_c00332{bottom:860.635176px;}
.y4e_c00332{bottom:862.606116px;}
.y4d_c00332{bottom:863.231718px;}
.y4c_c00332{bottom:864.811590px;}
.y4b_c00332{bottom:865.350756px;}
.y4a_c00332{bottom:866.397312px;}
.y49_c00332{bottom:867.185736px;}
.y48_c00332{bottom:887.527410px;}
.y47_c00332{bottom:888.448410px;}
.y46_c00332{bottom:889.068468px;}
.y45_c00332{bottom:892.047816px;}
.y44_c00332{bottom:893.258322px;}
.y43_c00332{bottom:894.162426px;}
.y42_c00332{bottom:897.153588px;}
.y41_c00332{bottom:898.070682px;}
.y40_c00332{bottom:898.949880px;}
.y3f_c00332{bottom:901.612128px;}
.y3e_c00332{bottom:902.492124px;}
.y3d_c00332{bottom:903.918822px;}
.y3c_c00332{bottom:923.560206px;}
.y3b_c00332{bottom:925.151304px;}
.y3a_c00332{bottom:926.965734px;}
.y39_c00332{bottom:927.573570px;}
.y38_c00332{bottom:929.168964px;}
.y37_c00332{bottom:931.367634px;}
.y36_c00332{bottom:931.966098px;}
.y35_c00332{bottom:933.975390px;}
.y34_c00332{bottom:935.525232px;}
.y33_c00332{bottom:957.078018px;}
.y32_c00332{bottom:957.765366px;}
.y31_c00332{bottom:959.669052px;}
.y30_c00332{bottom:961.072446px;}
.y2f_c00332{bottom:962.952036px;}
.y2e_c00332{bottom:965.259108px;}
.y2d_c00332{bottom:965.957370px;}
.y2c_c00332{bottom:967.126146px;}
.y2b_c00332{bottom:969.246246px;}
.y2a_c00332{bottom:969.828696px;}
.y29_c00332{bottom:992.596770px;}
.y28_c00332{bottom:994.770522px;}
.y27_c00332{bottom:995.751264px;}
.y26_c00332{bottom:996.678876px;}
.y25_c00332{bottom:999.191820px;}
.y24_c00332{bottom:1001.061156px;}
.y23_c00332{bottom:1001.975790px;}
.y22_c00332{bottom:1005.393456px;}
.y21_c00332{bottom:1006.324050px;}
.y20_c00332{bottom:1006.943718px;}
.y1f_c00332{bottom:1007.919000px;}
.y1e_c00332{bottom:1071.477718px;}
.y1d_c00332{bottom:1071.608899px;}
.y1c_c00332{bottom:1071.827721px;}
.y1b_c00332{bottom:1072.119164px;}
.y1a_c00332{bottom:1072.425882px;}
.y19_c00332{bottom:1072.717410px;}
.y18_c00332{bottom:1073.082517px;}
.y17_c00332{bottom:1073.272144px;}
.y16_c00332{bottom:1073.636037px;}
.y15_c00332{bottom:1073.942755px;}
.y14_c00332{bottom:1074.279951px;}
.y13_c00332{bottom:1074.482271px;}
.y12_c00332{bottom:1074.672924px;}
.y11_c00332{bottom:1074.833185px;}
.yd_c00332{bottom:1074.876279px;}
.y10_c00332{bottom:1075.225303px;}
.yc_c00332{bottom:1075.384263px;}
.yb_c00332{bottom:1075.698903px;}
.yf_c00332{bottom:1075.764819px;}
.ya_c00332{bottom:1075.876857px;}
.y9_c00332{bottom:1076.134867px;}
.y8_c00332{bottom:1076.355429px;}
.ye_c00332{bottom:1076.488831px;}
.y7_c00332{bottom:1076.565730px;}
.y6_c00332{bottom:1076.774664px;}
.y5_c00332{bottom:1077.087736px;}
.y4_c00332{bottom:1077.375159px;}
.y3_c00332{bottom:1078.031884px;}
.y2_c00332{bottom:1078.704171px;}
.y1_c00332{bottom:1079.730000px;}
.ha_c00332{height:18.000000px;}
.h2_c00332{height:18.003249px;}
.h3_c00332{height:18.051257px;}
.hb_c00332{height:24.000000px;}
.h7_c00332{height:54.021164px;}
.h6_c00332{height:66.025867px;}
.h5_c00332{height:72.028218px;}
.h8_c00332{height:72.034588px;}
.h4_c00332{height:84.032922px;}
.h9_c00332{height:102.007344px;}
.h1_c00332{height:1165.500000px;}
.h0_c00332{height:1165.800000px;}
.w0_c00332{width:915.000000px;}
.x0_c00332{left:0.000000px;}
.x86_c00332{left:148.833000px;}
.x6f_c00332{left:152.138886px;}
.x48_c00332{left:153.193050px;}
.x2e_c00332{left:154.387542px;}
.x25_c00332{left:156.636048px;}
.x87_c00332{left:177.955500px;}
.x70_c00332{left:183.101934px;}
.x26_c00332{left:184.353966px;}
.x3c_c00332{left:186.618726px;}
.x56_c00332{left:194.508804px;}
.x67_c00332{left:195.516696px;}
.x7e_c00332{left:203.290110px;}
.x35_c00332{left:208.741920px;}
.x57_c00332{left:217.320126px;}
.x49_c00332{left:218.965596px;}
.x78_c00332{left:225.369606px;}
.x3d_c00332{left:228.499254px;}
.x2f_c00332{left:240.513150px;}
.x68_c00332{left:248.467866px;}
.x3e_c00332{left:250.060560px;}
.x7f_c00332{left:254.208000px;}
.x88_c00332{left:255.957000px;}
.x4f_c00332{left:260.575032px;}
.x1d_c00332{left:262.917000px;}
.x71_c00332{left:280.505502px;}
.x5f_c00332{left:281.557494px;}
.x27_c00332{left:285.323748px;}
.x1e_c00332{left:297.748500px;}
.x4a_c00332{left:305.962212px;}
.x3f_c00332{left:313.239852px;}
.x1_c00332{left:319.918500px;}
.x80_c00332{left:322.771500px;}
.x79_c00332{left:323.894652px;}
.x69_c00332{left:325.710300px;}
.x50_c00332{left:327.284046px;}
.x89_c00332{left:332.599500px;}
.x58_c00332{left:336.462618px;}
.x40_c00332{left:338.263452px;}
.x28_c00332{left:340.951626px;}
.x30_c00332{left:352.108356px;}
.x1f_c00332{left:353.115000px;}
.x6a_c00332{left:357.851970px;}
.xe_c00332{left:360.156710px;}
.x60_c00332{left:370.472448px;}
.x36_c00332{left:372.548040px;}
.x2_c00332{left:373.909500px;}
.x81_c00332{left:377.589000px;}
.x72_c00332{left:380.143032px;}
.x31_c00332{left:385.330638px;}
.xf_c00332{left:390.131779px;}
.x37_c00332{left:406.534506px;}
.x3_c00332{left:409.293000px;}
.x8a_c00332{left:410.392500px;}
.x10_c00332{left:411.954207px;}
.x59_c00332{left:414.244680px;}
.x41_c00332{left:417.125088px;}
.x11_c00332{left:420.862878px;}
.x12_c00332{left:431.450078px;}
.x6b_c00332{left:436.469076px;}
.x13_c00332{left:442.730306px;}
.x4_c00332{left:443.857500px;}
.x5a_c00332{left:447.668808px;}
.x42_c00332{left:449.800818px;}
.x73_c00332{left:456.859068px;}
.x5_c00332{left:458.985000px;}
.x14_c00332{left:461.425148px;}
.x8b_c00332{left:464.974500px;}
.x82_c00332{left:467.647500px;}
.x61_c00332{left:469.276494px;}
.x6_c00332{left:475.462500px;}
.x15_c00332{left:478.436961px;}
.x5b_c00332{left:480.365310px;}
.x43_c00332{left:482.214048px;}
.x29_c00332{left:484.045140px;}
.x7_c00332{left:486.459000px;}
.x8_c00332{left:497.527500px;}
.x16_c00332{left:498.694860px;}
.x7a_c00332{left:502.185102px;}
.x20_c00332{left:507.840000px;}
.x9_c00332{left:509.136000px;}
.x4b_c00332{left:516.091992px;}
.x38_c00332{left:517.329114px;}
.xa_c00332{left:522.715500px;}
.x51_c00332{left:526.642710px;}
.x17_c00332{left:529.470930px;}
.xb_c00332{left:532.081500px;}
.x62_c00332{left:537.157596px;}
.x18_c00332{left:545.683244px;}
.xc_c00332{left:548.641500px;}
.x39_c00332{left:550.798038px;}
.x83_c00332{left:556.452000px;}
.x6c_c00332{left:558.322938px;}
.x4c_c00332{left:559.608300px;}
.x19_c00332{left:562.695057px;}
.x63_c00332{left:570.908376px;}
.x2a_c00332{left:573.530154px;}
.xd_c00332{left:575.377500px;}
.x1a_c00332{left:578.902871px;}
.x44_c00332{left:583.778574px;}
.x8c_c00332{left:588.408000px;}
.x84_c00332{left:589.704000px;}
.x1b_c00332{left:591.051598px;}
.x32_c00332{left:596.052564px;}
.x1c_c00332{left:598.350741px;}
.x74_c00332{left:624.942996px;}
.x52_c00332{left:627.147378px;}
.x33_c00332{left:629.824014px;}
.x2b_c00332{left:640.378758px;}
.x4d_c00332{left:642.458202px;}
.x85_c00332{left:645.636000px;}
.x6d_c00332{left:646.660416px;}
.x7b_c00332{left:657.080448px;}
.x75_c00332{left:658.162506px;}
.x21_c00332{left:664.350000px;}
.x53_c00332{left:671.454984px;}
.x64_c00332{left:687.988980px;}
.x76_c00332{left:690.847890px;}
.x5c_c00332{left:692.677968px;}
.x45_c00332{left:694.034814px;}
.x22_c00332{left:697.479000px;}
.x7c_c00332{left:701.590446px;}
.x3a_c00332{left:705.957864px;}
.x65_c00332{left:714.316920px;}
.x4e_c00332{left:717.301260px;}
.x5d_c00332{left:725.796012px;}
.x3b_c00332{left:728.906994px;}
.x2c_c00332{left:731.046024px;}
.x23_c00332{left:732.505500px;}
.x54_c00332{left:737.416662px;}
.x6e_c00332{left:758.478738px;}
.x2d_c00332{left:763.743408px;}
.x7d_c00332{left:769.689048px;}
.x46_c00332{left:773.403492px;}
.x77_c00332{left:780.355404px;}
.x5e_c00332{left:792.183642px;}
.x55_c00332{left:794.917812px;}
.x66_c00332{left:804.237000px;}
.x47_c00332{left:807.186348px;}
.x24_c00332{left:810.139500px;}
.x34_c00332{left:819.002934px;}
.x91_c00332{left:885.600000px;}
.x8d_c00332{left:900.450000px;}
.x8e_c00332{left:902.070000px;}
.x8f_c00332{left:903.150000px;}
.x90_c00332{left:906.930000px;}
.x92_c00332{left:908.820000px;}
@media print{
.v0_c00332{vertical-align:0.000000pt;}
.ls0_c00332{letter-spacing:0.000000pt;}
.ws0_c00332{word-spacing:0.000000pt;}
._0_c00332{width:14.356363pt;}
.fs7_c00332{font-size:16.000000pt;}
.fs0_c00332{font-size:16.002888pt;}
.fs8_c00332{font-size:21.333333pt;}
.fs4_c00332{font-size:48.018812pt;}
.fs3_c00332{font-size:58.689659pt;}
.fs2_c00332{font-size:64.025083pt;}
.fs5_c00332{font-size:64.030745pt;}
.fs1_c00332{font-size:74.695930pt;}
.fs6_c00332{font-size:90.673194pt;}
.y0_c00332{bottom:0.000000pt;}
.ybe_c00332{bottom:224.400000pt;}
.ybd_c00332{bottom:226.320000pt;}
.ybc_c00332{bottom:258.240000pt;}
.yba_c00332{bottom:315.600000pt;}
.ybb_c00332{bottom:318.480000pt;}
.yb8_c00332{bottom:376.673867pt;}
.yb7_c00332{bottom:377.281643pt;}
.yb6_c00332{bottom:377.990491pt;}
.yb5_c00332{bottom:378.572699pt;}
.yb4_c00332{bottom:378.929787pt;}
.yb3_c00332{bottom:379.402491pt;}
.yb2_c00332{bottom:380.220011pt;}
.yb1_c00332{bottom:381.052027pt;}
.yb9_c00332{bottom:381.360000pt;}
.yb0_c00332{bottom:381.362667pt;}
.yaf_c00332{bottom:473.544651pt;}
.yae_c00332{bottom:475.085888pt;}
.yad_c00332{bottom:476.002165pt;}
.yac_c00332{bottom:478.449223pt;}
.yab_c00332{bottom:480.930835pt;}
.yaa_c00332{bottom:482.441361pt;}
.ya9_c00332{bottom:484.330667pt;}
.ya8_c00332{bottom:515.052512pt;}
.ya7_c00332{bottom:515.052949pt;}
.ya6_c00332{bottom:533.899947pt;}
.ya5_c00332{bottom:535.353323pt;}
.ya4_c00332{bottom:536.302336pt;}
.ya3_c00332{bottom:537.005067pt;}
.ya2_c00332{bottom:539.606411pt;}
.ya1_c00332{bottom:540.111493pt;}
.ya0_c00332{bottom:542.684720pt;}
.y9f_c00332{bottom:543.410032pt;}
.y9e_c00332{bottom:545.511269pt;}
.y9d_c00332{bottom:546.371424pt;}
.y9c_c00332{bottom:547.067499pt;}
.y9b_c00332{bottom:567.310075pt;}
.y9a_c00332{bottom:567.751867pt;}
.y99_c00332{bottom:569.423173pt;}
.y98_c00332{bottom:570.033851pt;}
.y97_c00332{bottom:570.653819pt;}
.y96_c00332{bottom:572.126176pt;}
.y95_c00332{bottom:573.791088pt;}
.y94_c00332{bottom:575.222757pt;}
.y93_c00332{bottom:576.487883pt;}
.y92_c00332{bottom:577.082139pt;}
.y91_c00332{bottom:577.690277pt;}
.y90_c00332{bottom:578.900597pt;}
.y8f_c00332{bottom:579.479083pt;}
.y8e_c00332{bottom:598.822933pt;}
.y8d_c00332{bottom:599.816565pt;}
.y8c_c00332{bottom:600.602080pt;}
.y8b_c00332{bottom:601.394683pt;}
.y8a_c00332{bottom:601.685360pt;}
.y89_c00332{bottom:602.383733pt;}
.y88_c00332{bottom:602.669968pt;}
.y87_c00332{bottom:603.058917pt;}
.y86_c00332{bottom:603.355477pt;}
.y85_c00332{bottom:603.826043pt;}
.y84_c00332{bottom:604.207136pt;}
.y83_c00332{bottom:629.923984pt;}
.y82_c00332{bottom:631.841744pt;}
.y81_c00332{bottom:632.403611pt;}
.y80_c00332{bottom:634.901291pt;}
.y7f_c00332{bottom:635.621216pt;}
.y7e_c00332{bottom:637.069179pt;}
.y7d_c00332{bottom:637.511531pt;}
.y7c_c00332{bottom:639.177360pt;}
.y7b_c00332{bottom:641.074107pt;}
.y7a_c00332{bottom:641.763189pt;}
.y79_c00332{bottom:643.168715pt;}
.y78_c00332{bottom:643.827963pt;}
.y77_c00332{bottom:661.775349pt;}
.y76_c00332{bottom:662.317120pt;}
.y75_c00332{bottom:663.615824pt;}
.y74_c00332{bottom:664.263957pt;}
.y73_c00332{bottom:668.415296pt;}
.y72_c00332{bottom:669.054272pt;}
.y71_c00332{bottom:669.707355pt;}
.y70_c00332{bottom:670.768181pt;}
.y6f_c00332{bottom:671.228272pt;}
.y6e_c00332{bottom:673.558432pt;}
.y6d_c00332{bottom:674.004752pt;}
.y6c_c00332{bottom:674.796491pt;}
.y6b_c00332{bottom:693.787109pt;}
.y6a_c00332{bottom:694.450981pt;}
.y69_c00332{bottom:695.213339pt;}
.y68_c00332{bottom:695.724976pt;}
.y67_c00332{bottom:696.509712pt;}
.y66_c00332{bottom:696.886709pt;}
.y65_c00332{bottom:697.370229pt;}
.y64_c00332{bottom:698.809269pt;}
.y63_c00332{bottom:699.190443pt;}
.y62_c00332{bottom:699.960725pt;}
.y61_c00332{bottom:700.329088pt;}
.y60_c00332{bottom:701.205771pt;}
.y5f_c00332{bottom:727.869419pt;}
.y5e_c00332{bottom:729.333200pt;}
.y5d_c00332{bottom:730.953563pt;}
.y5c_c00332{bottom:731.804453pt;}
.y5b_c00332{bottom:732.455397pt;}
.y5a_c00332{bottom:734.611248pt;}
.y59_c00332{bottom:735.275813pt;}
.y58_c00332{bottom:735.913472pt;}
.y57_c00332{bottom:737.614357pt;}
.y56_c00332{bottom:738.900421pt;}
.y55_c00332{bottom:756.341669pt;}
.y54_c00332{bottom:757.091749pt;}
.y53_c00332{bottom:758.854981pt;}
.y52_c00332{bottom:761.305573pt;}
.y51_c00332{bottom:763.562523pt;}
.y50_c00332{bottom:764.282517pt;}
.y4f_c00332{bottom:765.009045pt;}
.y4e_c00332{bottom:766.760992pt;}
.y4d_c00332{bottom:767.317083pt;}
.y4c_c00332{bottom:768.721413pt;}
.y4b_c00332{bottom:769.200672pt;}
.y4a_c00332{bottom:770.130944pt;}
.y49_c00332{bottom:770.831765pt;}
.y48_c00332{bottom:788.913253pt;}
.y47_c00332{bottom:789.731920pt;}
.y46_c00332{bottom:790.283083pt;}
.y45_c00332{bottom:792.931392pt;}
.y44_c00332{bottom:794.007397pt;}
.y43_c00332{bottom:794.811045pt;}
.y42_c00332{bottom:797.469856pt;}
.y41_c00332{bottom:798.285051pt;}
.y40_c00332{bottom:799.066560pt;}
.y3f_c00332{bottom:801.433003pt;}
.y3e_c00332{bottom:802.215221pt;}
.y3d_c00332{bottom:803.483397pt;}
.y3c_c00332{bottom:820.942405pt;}
.y3b_c00332{bottom:822.356715pt;}
.y3a_c00332{bottom:823.969541pt;}
.y39_c00332{bottom:824.509840pt;}
.y38_c00332{bottom:825.927968pt;}
.y37_c00332{bottom:827.882341pt;}
.y36_c00332{bottom:828.414309pt;}
.y35_c00332{bottom:830.200347pt;}
.y34_c00332{bottom:831.577984pt;}
.y33_c00332{bottom:850.736016pt;}
.y32_c00332{bottom:851.346992pt;}
.y31_c00332{bottom:853.039157pt;}
.y30_c00332{bottom:854.286619pt;}
.y2f_c00332{bottom:855.957365pt;}
.y2e_c00332{bottom:858.008096pt;}
.y2d_c00332{bottom:858.628773pt;}
.y2c_c00332{bottom:859.667685pt;}
.y2b_c00332{bottom:861.552219pt;}
.y2a_c00332{bottom:862.069952pt;}
.y29_c00332{bottom:882.308240pt;}
.y28_c00332{bottom:884.240464pt;}
.y27_c00332{bottom:885.112235pt;}
.y26_c00332{bottom:885.936779pt;}
.y25_c00332{bottom:888.170507pt;}
.y24_c00332{bottom:889.832139pt;}
.y23_c00332{bottom:890.645147pt;}
.y22_c00332{bottom:893.683072pt;}
.y21_c00332{bottom:894.510267pt;}
.y20_c00332{bottom:895.061083pt;}
.y1f_c00332{bottom:895.928000pt;}
.y1e_c00332{bottom:952.424639pt;}
.y1d_c00332{bottom:952.541244pt;}
.y1c_c00332{bottom:952.735752pt;}
.y1b_c00332{bottom:952.994812pt;}
.y1a_c00332{bottom:953.267451pt;}
.y19_c00332{bottom:953.526587pt;}
.y18_c00332{bottom:953.851127pt;}
.y17_c00332{bottom:954.019684pt;}
.y16_c00332{bottom:954.343144pt;}
.y15_c00332{bottom:954.615783pt;}
.y14_c00332{bottom:954.915512pt;}
.y13_c00332{bottom:955.095352pt;}
.y12_c00332{bottom:955.264821pt;}
.y11_c00332{bottom:955.407276pt;}
.yd_c00332{bottom:955.445581pt;}
.y10_c00332{bottom:955.755825pt;}
.yc_c00332{bottom:955.897123pt;}
.yb_c00332{bottom:956.176803pt;}
.yf_c00332{bottom:956.235395pt;}
.ya_c00332{bottom:956.334984pt;}
.y9_c00332{bottom:956.564327pt;}
.y8_c00332{bottom:956.760381pt;}
.ye_c00332{bottom:956.878961pt;}
.y7_c00332{bottom:956.947316pt;}
.y6_c00332{bottom:957.133035pt;}
.y5_c00332{bottom:957.411321pt;}
.y4_c00332{bottom:957.666808pt;}
.y3_c00332{bottom:958.250564pt;}
.y2_c00332{bottom:958.848152pt;}
.y1_c00332{bottom:959.760000pt;}
.ha_c00332{height:16.000000pt;}
.h2_c00332{height:16.002888pt;}
.h3_c00332{height:16.045562pt;}
.hb_c00332{height:21.333333pt;}
.h7_c00332{height:48.018812pt;}
.h6_c00332{height:58.689659pt;}
.h5_c00332{height:64.025083pt;}
.h8_c00332{height:64.030745pt;}
.h4_c00332{height:74.695930pt;}
.h9_c00332{height:90.673194pt;}
.h1_c00332{height:1036.000000pt;}
.h0_c00332{height:1036.266667pt;}
.w0_c00332{width:813.333333pt;}
.x0_c00332{left:0.000000pt;}
.x86_c00332{left:132.296000pt;}
.x6f_c00332{left:135.234565pt;}
.x48_c00332{left:136.171600pt;}
.x2e_c00332{left:137.233371pt;}
.x25_c00332{left:139.232043pt;}
.x87_c00332{left:158.182667pt;}
.x70_c00332{left:162.757275pt;}
.x26_c00332{left:163.870192pt;}
.x3c_c00332{left:165.883312pt;}
.x56_c00332{left:172.896715pt;}
.x67_c00332{left:173.792619pt;}
.x7e_c00332{left:180.702320pt;}
.x35_c00332{left:185.548373pt;}
.x57_c00332{left:193.173445pt;}
.x49_c00332{left:194.636085pt;}
.x78_c00332{left:200.328539pt;}
.x3d_c00332{left:203.110448pt;}
.x2f_c00332{left:213.789467pt;}
.x68_c00332{left:220.860325pt;}
.x3e_c00332{left:222.276053pt;}
.x7f_c00332{left:225.962667pt;}
.x88_c00332{left:227.517333pt;}
.x4f_c00332{left:231.622251pt;}
.x1d_c00332{left:233.704000pt;}
.x71_c00332{left:249.338224pt;}
.x5f_c00332{left:250.273328pt;}
.x27_c00332{left:253.621109pt;}
.x1e_c00332{left:264.665333pt;}
.x4a_c00332{left:271.966411pt;}
.x3f_c00332{left:278.435424pt;}
.x1_c00332{left:284.372000pt;}
.x80_c00332{left:286.908000pt;}
.x79_c00332{left:287.906357pt;}
.x69_c00332{left:289.520267pt;}
.x50_c00332{left:290.919152pt;}
.x89_c00332{left:295.644000pt;}
.x58_c00332{left:299.077883pt;}
.x40_c00332{left:300.678624pt;}
.x28_c00332{left:303.068112pt;}
.x30_c00332{left:312.985205pt;}
.x1f_c00332{left:313.880000pt;}
.x6a_c00332{left:318.090640pt;}
.xe_c00332{left:320.139297pt;}
.x60_c00332{left:329.308843pt;}
.x36_c00332{left:331.153813pt;}
.x2_c00332{left:332.364000pt;}
.x81_c00332{left:335.634667pt;}
.x72_c00332{left:337.904917pt;}
.x31_c00332{left:342.516123pt;}
.xf_c00332{left:346.783804pt;}
.x37_c00332{left:361.364005pt;}
.x3_c00332{left:363.816000pt;}
.x8a_c00332{left:364.793333pt;}
.x10_c00332{left:366.181517pt;}
.x59_c00332{left:368.217493pt;}
.x41_c00332{left:370.777856pt;}
.x11_c00332{left:374.100336pt;}
.x12_c00332{left:383.511180pt;}
.x6b_c00332{left:387.972512pt;}
.x13_c00332{left:393.538049pt;}
.x4_c00332{left:394.540000pt;}
.x5a_c00332{left:397.927829pt;}
.x42_c00332{left:399.822949pt;}
.x73_c00332{left:406.096949pt;}
.x5_c00332{left:407.986667pt;}
.x14_c00332{left:410.155687pt;}
.x8b_c00332{left:413.310667pt;}
.x82_c00332{left:415.686667pt;}
.x61_c00332{left:417.134661pt;}
.x6_c00332{left:422.633333pt;}
.x15_c00332{left:425.277299pt;}
.x5b_c00332{left:426.991387pt;}
.x43_c00332{left:428.634709pt;}
.x29_c00332{left:430.262347pt;}
.x7_c00332{left:432.408000pt;}
.x8_c00332{left:442.246667pt;}
.x16_c00332{left:443.284320pt;}
.x7a_c00332{left:446.386757pt;}
.x20_c00332{left:451.413333pt;}
.x9_c00332{left:452.565333pt;}
.x4b_c00332{left:458.748437pt;}
.x38_c00332{left:459.848101pt;}
.xa_c00332{left:464.636000pt;}
.x51_c00332{left:468.126853pt;}
.x17_c00332{left:470.640827pt;}
.xb_c00332{left:472.961333pt;}
.x62_c00332{left:477.473419pt;}
.x18_c00332{left:485.051772pt;}
.xc_c00332{left:487.681333pt;}
.x39_c00332{left:489.598256pt;}
.x83_c00332{left:494.624000pt;}
.x6c_c00332{left:496.287056pt;}
.x4c_c00332{left:497.429600pt;}
.x19_c00332{left:500.173384pt;}
.x63_c00332{left:507.474112pt;}
.x2a_c00332{left:509.804581pt;}
.xd_c00332{left:511.446667pt;}
.x1a_c00332{left:514.580329pt;}
.x44_c00332{left:518.914288pt;}
.x8c_c00332{left:523.029333pt;}
.x84_c00332{left:524.181333pt;}
.x1b_c00332{left:525.379199pt;}
.x32_c00332{left:529.824501pt;}
.x1c_c00332{left:531.867325pt;}
.x74_c00332{left:555.504885pt;}
.x52_c00332{left:557.464336pt;}
.x33_c00332{left:559.843568pt;}
.x2b_c00332{left:569.225563pt;}
.x4d_c00332{left:571.073957pt;}
.x85_c00332{left:573.898667pt;}
.x6d_c00332{left:574.809259pt;}
.x7b_c00332{left:584.071509pt;}
.x75_c00332{left:585.033339pt;}
.x21_c00332{left:590.533333pt;}
.x53_c00332{left:596.848875pt;}
.x64_c00332{left:611.545760pt;}
.x76_c00332{left:614.087013pt;}
.x5c_c00332{left:615.713749pt;}
.x45_c00332{left:616.919835pt;}
.x22_c00332{left:619.981333pt;}
.x7c_c00332{left:623.635952pt;}
.x3a_c00332{left:627.518101pt;}
.x65_c00332{left:634.948373pt;}
.x4e_c00332{left:637.601120pt;}
.x5d_c00332{left:645.152011pt;}
.x3b_c00332{left:647.917328pt;}
.x2c_c00332{left:649.818688pt;}
.x23_c00332{left:651.116000pt;}
.x54_c00332{left:655.481477pt;}
.x6e_c00332{left:674.203323pt;}
.x2d_c00332{left:678.883029pt;}
.x7d_c00332{left:684.168043pt;}
.x46_c00332{left:687.469771pt;}
.x77_c00332{left:693.649248pt;}
.x5e_c00332{left:704.163237pt;}
.x55_c00332{left:706.593611pt;}
.x66_c00332{left:714.877333pt;}
.x47_c00332{left:717.498976pt;}
.x24_c00332{left:720.124000pt;}
.x34_c00332{left:728.002608pt;}
.x91_c00332{left:787.200000pt;}
.x8d_c00332{left:800.400000pt;}
.x8e_c00332{left:801.840000pt;}
.x8f_c00332{left:802.800000pt;}
.x90_c00332{left:806.160000pt;}
.x92_c00332{left:807.840000pt;}
}





/* 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_c00333 {
    display:none;
  }
  .loading-indicator_c00333.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00333 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_c00333 { 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_c00333" -> "#page-container .classname_c00333")
 */
.pf_c00333 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00333 { /* 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_c00333.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00333 { /* 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_c00333 { /* 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_c00333 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00333 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00333 {overflow:visible;}
  }
}
.c_c00333 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00333 { /* 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_c00333:after { /* webkit #35443 */
  content: '';
}
.t_c00333:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00333 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 */
}
.__c00333 { /* 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_c00333 { /* info for Javascript */
  display:none;
}
.l_c00333 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00333 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00333 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00333: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_c00333 {
    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_c00333.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00333.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_c00333 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00333{font-family:sans-serif;visibility:hidden;}
.sc__c00333{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00333{-webkit-text-stroke:0px transparent;}
}
.y0_c00333{bottom:0.000000px;}
.h1_c00333{height:1247.250000px;}
.h0_c00333{height:1247.400000px;}
.w0_c00333{width:915.000000px;}
.x0_c00333{left:0.000000px;}
@media print{
.y0_c00333{bottom:0.000000pt;}
.h1_c00333{height:1108.666667pt;}
.h0_c00333{height:1108.800000pt;}
.w0_c00333{width:813.333333pt;}
.x0_c00333{left:0.000000pt;}
}





/* 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_c00334 {
    display:none;
  }
  .loading-indicator_c00334.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00334 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_c00334 { 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_c00334" -> "#page-container .classname_c00334")
 */
.pf_c00334 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00334 { /* 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_c00334.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00334 { /* 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_c00334 { /* 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_c00334 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00334 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00334 {overflow:visible;}
  }
}
.c_c00334 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00334 { /* 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_c00334:after { /* webkit #35443 */
  content: '';
}
.t_c00334:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00334 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 */
}
.__c00334 { /* 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_c00334 { /* info for Javascript */
  display:none;
}
.l_c00334 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00334 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00334 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00334: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_c00334 {
    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_c00334.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00334.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_c00334 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00334{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00334;src:url('chunks/assets/font_c605e72f209fc835e906f064.woff2')format("woff");}.ff1_c00334{font-family:ff1_c00334;line-height:1.000000;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;}
.m128_c00334{transform:matrix(0.089182,0.001516,-0.004249,0.249964,0,0);-ms-transform:matrix(0.089182,0.001516,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.089182,0.001516,-0.004249,0.249964,0,0);}
.m129_c00334{transform:matrix(0.095086,0.001616,-0.004249,0.249964,0,0);-ms-transform:matrix(0.095086,0.001616,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.095086,0.001616,-0.004249,0.249964,0,0);}
.mf2_c00334{transform:matrix(0.100734,0.001813,-0.004499,0.249960,0,0);-ms-transform:matrix(0.100734,0.001813,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.100734,0.001813,-0.004499,0.249960,0,0);}
.ma4_c00334{transform:matrix(0.125221,0.004011,-0.008004,0.249872,0,0);-ms-transform:matrix(0.125221,0.004011,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.125221,0.004011,-0.008004,0.249872,0,0);}
.me5_c00334{transform:matrix(0.129087,0.001420,-0.002750,0.249985,0,0);-ms-transform:matrix(0.129087,0.001420,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.129087,0.001420,-0.002750,0.249985,0,0);}
.m5b_c00334{transform:matrix(0.132092,0.003566,-0.006748,0.249909,0,0);-ms-transform:matrix(0.132092,0.003566,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.132092,0.003566,-0.006748,0.249909,0,0);}
.m125_c00334{transform:matrix(0.145969,0.002481,-0.004249,0.249964,0,0);-ms-transform:matrix(0.145969,0.002481,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.145969,0.002481,-0.004249,0.249964,0,0);}
.m12c_c00334{transform:matrix(0.148084,0.002517,-0.004249,0.249964,0,0);-ms-transform:matrix(0.148084,0.002517,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.148084,0.002517,-0.004249,0.249964,0,0);}
.m126_c00334{transform:matrix(0.149693,0.002545,-0.004249,0.249964,0,0);-ms-transform:matrix(0.149693,0.002545,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.149693,0.002545,-0.004249,0.249964,0,0);}
.mcd_c00334{transform:matrix(0.150424,0.001805,-0.003000,0.249982,0,0);-ms-transform:matrix(0.150424,0.001805,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.150424,0.001805,-0.003000,0.249982,0,0);}
.m20_c00334{transform:matrix(0.153156,0.005366,-0.008753,0.249847,0,0);-ms-transform:matrix(0.153156,0.005366,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.153156,0.005366,-0.008753,0.249847,0,0);}
.m12a_c00334{transform:matrix(0.154843,0.002632,-0.004249,0.249964,0,0);-ms-transform:matrix(0.154843,0.002632,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.154843,0.002632,-0.004249,0.249964,0,0);}
.m1c_c00334{transform:matrix(0.157628,0.005523,-0.008753,0.249847,0,0);-ms-transform:matrix(0.157628,0.005523,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.157628,0.005523,-0.008753,0.249847,0,0);}
.m127_c00334{transform:matrix(0.159737,0.002716,-0.004249,0.249964,0,0);-ms-transform:matrix(0.159737,0.002716,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.159737,0.002716,-0.004249,0.249964,0,0);}
.m98_c00334{transform:matrix(0.161472,0.005172,-0.008004,0.249872,0,0);-ms-transform:matrix(0.161472,0.005172,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.161472,0.005172,-0.008004,0.249872,0,0);}
.m12d_c00334{transform:matrix(0.165561,0.002815,-0.004249,0.249964,0,0);-ms-transform:matrix(0.165561,0.002815,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.165561,0.002815,-0.004249,0.249964,0,0);}
.m8_c00334{transform:matrix(0.166308,0.005827,-0.008753,0.249847,0,0);-ms-transform:matrix(0.166308,0.005827,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.166308,0.005827,-0.008753,0.249847,0,0);}
.mb7_c00334{transform:matrix(0.168060,0.006224,-0.009253,0.249829,0,0);-ms-transform:matrix(0.168060,0.006224,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.168060,0.006224,-0.009253,0.249829,0,0);}
.mfe_c00334{transform:matrix(0.168988,0.002704,-0.003999,0.249968,0,0);-ms-transform:matrix(0.168988,0.002704,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.168988,0.002704,-0.003999,0.249968,0,0);}
.m12e_c00334{transform:matrix(0.169985,0.002890,-0.004249,0.249964,0,0);-ms-transform:matrix(0.169985,0.002890,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.169985,0.002890,-0.004249,0.249964,0,0);}
.mf5_c00334{transform:matrix(0.170033,0.002721,-0.003999,0.249968,0,0);-ms-transform:matrix(0.170033,0.002721,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.170033,0.002721,-0.003999,0.249968,0,0);}
.m12b_c00334{transform:matrix(0.170200,0.002893,-0.004249,0.249964,0,0);-ms-transform:matrix(0.170200,0.002893,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.170200,0.002893,-0.004249,0.249964,0,0);}
.m75_c00334{transform:matrix(0.170862,0.005473,-0.008004,0.249872,0,0);-ms-transform:matrix(0.170862,0.005473,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.170862,0.005473,-0.008004,0.249872,0,0);}
.m6_c00334{transform:matrix(0.171505,0.006009,-0.008753,0.249847,0,0);-ms-transform:matrix(0.171505,0.006009,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.171505,0.006009,-0.008753,0.249847,0,0);}
.m4_c00334{transform:matrix(0.171845,0.006021,-0.008753,0.249847,0,0);-ms-transform:matrix(0.171845,0.006021,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.171845,0.006021,-0.008753,0.249847,0,0);}
.m44_c00334{transform:matrix(0.173274,0.006071,-0.008753,0.249847,0,0);-ms-transform:matrix(0.173274,0.006071,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.173274,0.006071,-0.008753,0.249847,0,0);}
.m67_c00334{transform:matrix(0.174871,0.004547,-0.006498,0.249916,0,0);-ms-transform:matrix(0.174871,0.004547,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.174871,0.004547,-0.006498,0.249916,0,0);}
.me_c00334{transform:matrix(0.175208,0.006138,-0.008753,0.249847,0,0);-ms-transform:matrix(0.175208,0.006138,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.175208,0.006138,-0.008753,0.249847,0,0);}
.mf7_c00334{transform:matrix(0.176912,0.002831,-0.003999,0.249968,0,0);-ms-transform:matrix(0.176912,0.002831,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.176912,0.002831,-0.003999,0.249968,0,0);}
.m1b_c00334{transform:matrix(0.176971,0.006200,-0.008753,0.249847,0,0);-ms-transform:matrix(0.176971,0.006200,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.176971,0.006200,-0.008753,0.249847,0,0);}
.m9d_c00334{transform:matrix(0.179653,0.005755,-0.008004,0.249872,0,0);-ms-transform:matrix(0.179653,0.005755,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.179653,0.005755,-0.008004,0.249872,0,0);}
.m3d_c00334{transform:matrix(0.179830,0.006300,-0.008753,0.249847,0,0);-ms-transform:matrix(0.179830,0.006300,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.179830,0.006300,-0.008753,0.249847,0,0);}
.m1e_c00334{transform:matrix(0.180864,0.006337,-0.008753,0.249847,0,0);-ms-transform:matrix(0.180864,0.006337,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.180864,0.006337,-0.008753,0.249847,0,0);}
.m5_c00334{transform:matrix(0.180874,0.006337,-0.008753,0.249847,0,0);-ms-transform:matrix(0.180874,0.006337,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.180874,0.006337,-0.008753,0.249847,0,0);}
.mab_c00334{transform:matrix(0.181154,0.006891,-0.009503,0.249819,0,0);-ms-transform:matrix(0.181154,0.006891,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.181154,0.006891,-0.009503,0.249819,0,0);}
.mb_c00334{transform:matrix(0.181389,0.006355,-0.008753,0.249847,0,0);-ms-transform:matrix(0.181389,0.006355,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.181389,0.006355,-0.008753,0.249847,0,0);}
.m72_c00334{transform:matrix(0.181859,0.004728,-0.006498,0.249916,0,0);-ms-transform:matrix(0.181859,0.004728,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.181859,0.004728,-0.006498,0.249916,0,0);}
.m97_c00334{transform:matrix(0.182037,0.005831,-0.008004,0.249872,0,0);-ms-transform:matrix(0.182037,0.005831,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.182037,0.005831,-0.008004,0.249872,0,0);}
.m43_c00334{transform:matrix(0.182473,0.006393,-0.008753,0.249847,0,0);-ms-transform:matrix(0.182473,0.006393,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.182473,0.006393,-0.008753,0.249847,0,0);}
.m45_c00334{transform:matrix(0.182843,0.006406,-0.008753,0.249847,0,0);-ms-transform:matrix(0.182843,0.006406,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.182843,0.006406,-0.008753,0.249847,0,0);}
.m21_c00334{transform:matrix(0.183078,0.006414,-0.008753,0.249847,0,0);-ms-transform:matrix(0.183078,0.006414,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.183078,0.006414,-0.008753,0.249847,0,0);}
.m3f_c00334{transform:matrix(0.183662,0.006435,-0.008753,0.249847,0,0);-ms-transform:matrix(0.183662,0.006435,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.183662,0.006435,-0.008753,0.249847,0,0);}
.m122_c00334{transform:matrix(0.184566,0.009977,-0.013494,0.249636,0,0);-ms-transform:matrix(0.184566,0.009977,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.184566,0.009977,-0.013494,0.249636,0,0);}
.m16_c00334{transform:matrix(0.184602,0.006468,-0.008753,0.249847,0,0);-ms-transform:matrix(0.184602,0.006468,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.184602,0.006468,-0.008753,0.249847,0,0);}
.mfa_c00334{transform:matrix(0.185026,0.002960,-0.003999,0.249968,0,0);-ms-transform:matrix(0.185026,0.002960,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.185026,0.002960,-0.003999,0.249968,0,0);}
.m7e_c00334{transform:matrix(0.185055,0.005928,-0.008004,0.249872,0,0);-ms-transform:matrix(0.185055,0.005928,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.185055,0.005928,-0.008004,0.249872,0,0);}
.m40_c00334{transform:matrix(0.185916,0.006514,-0.008753,0.249847,0,0);-ms-transform:matrix(0.185916,0.006514,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.185916,0.006514,-0.008753,0.249847,0,0);}
.m19_c00334{transform:matrix(0.186870,0.006547,-0.008753,0.249847,0,0);-ms-transform:matrix(0.186870,0.006547,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.186870,0.006547,-0.008753,0.249847,0,0);}
.m3b_c00334{transform:matrix(0.187170,0.006558,-0.008753,0.249847,0,0);-ms-transform:matrix(0.187170,0.006558,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.187170,0.006558,-0.008753,0.249847,0,0);}
.ma0_c00334{transform:matrix(0.187394,0.006003,-0.008004,0.249872,0,0);-ms-transform:matrix(0.187394,0.006003,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.187394,0.006003,-0.008004,0.249872,0,0);}
.m9_c00334{transform:matrix(0.187730,0.006577,-0.008753,0.249847,0,0);-ms-transform:matrix(0.187730,0.006577,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.187730,0.006577,-0.008753,0.249847,0,0);}
.m11b_c00334{transform:matrix(0.187791,0.010151,-0.013494,0.249636,0,0);-ms-transform:matrix(0.187791,0.010151,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.187791,0.010151,-0.013494,0.249636,0,0);}
.mf8_c00334{transform:matrix(0.188176,0.003011,-0.003999,0.249968,0,0);-ms-transform:matrix(0.188176,0.003011,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.188176,0.003011,-0.003999,0.249968,0,0);}
.mc5_c00334{transform:matrix(0.188516,0.002262,-0.003000,0.249982,0,0);-ms-transform:matrix(0.188516,0.002262,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.188516,0.002262,-0.003000,0.249982,0,0);}
.m4f_c00334{transform:matrix(0.188674,0.006610,-0.008753,0.249847,0,0);-ms-transform:matrix(0.188674,0.006610,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.188674,0.006610,-0.008753,0.249847,0,0);}
.m42_c00334{transform:matrix(0.188869,0.006617,-0.008753,0.249847,0,0);-ms-transform:matrix(0.188869,0.006617,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.188869,0.006617,-0.008753,0.249847,0,0);}
.md0_c00334{transform:matrix(0.189736,0.002277,-0.003000,0.249982,0,0);-ms-transform:matrix(0.189736,0.002277,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.189736,0.002277,-0.003000,0.249982,0,0);}
.mc6_c00334{transform:matrix(0.190676,0.002288,-0.003000,0.249982,0,0);-ms-transform:matrix(0.190676,0.002288,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.190676,0.002288,-0.003000,0.249982,0,0);}
.mf3_c00334{transform:matrix(0.191670,0.003067,-0.003999,0.249968,0,0);-ms-transform:matrix(0.191670,0.003067,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.191670,0.003067,-0.003999,0.249968,0,0);}
.m9b_c00334{transform:matrix(0.191827,0.006145,-0.008004,0.249872,0,0);-ms-transform:matrix(0.191827,0.006145,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.191827,0.006145,-0.008004,0.249872,0,0);}
.m5f_c00334{transform:matrix(0.193062,0.005985,-0.007746,0.249880,0,0);-ms-transform:matrix(0.193062,0.005985,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.193062,0.005985,-0.007746,0.249880,0,0);}
.m77_c00334{transform:matrix(0.193501,0.006198,-0.008004,0.249872,0,0);-ms-transform:matrix(0.193501,0.006198,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.193501,0.006198,-0.008004,0.249872,0,0);}
.mca_c00334{transform:matrix(0.193946,0.002327,-0.003000,0.249982,0,0);-ms-transform:matrix(0.193946,0.002327,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.193946,0.002327,-0.003000,0.249982,0,0);}
.mdc_c00334{transform:matrix(0.194338,0.002138,-0.002750,0.249985,0,0);-ms-transform:matrix(0.194338,0.002138,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.194338,0.002138,-0.002750,0.249985,0,0);}
.m73_c00334{transform:matrix(0.194524,0.005058,-0.006498,0.249916,0,0);-ms-transform:matrix(0.194524,0.005058,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.194524,0.005058,-0.006498,0.249916,0,0);}
.m99_c00334{transform:matrix(0.195175,0.006252,-0.008004,0.249872,0,0);-ms-transform:matrix(0.195175,0.006252,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.195175,0.006252,-0.008004,0.249872,0,0);}
.m41_c00334{transform:matrix(0.195410,0.006846,-0.008753,0.249847,0,0);-ms-transform:matrix(0.195410,0.006846,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.195410,0.006846,-0.008753,0.249847,0,0);}
.m100_c00334{transform:matrix(0.195850,0.003134,-0.003999,0.249968,0,0);-ms-transform:matrix(0.195850,0.003134,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.195850,0.003134,-0.003999,0.249968,0,0);}
.m3c_c00334{transform:matrix(0.195915,0.006864,-0.008753,0.249847,0,0);-ms-transform:matrix(0.195915,0.006864,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.195915,0.006864,-0.008753,0.249847,0,0);}
.m4d_c00334{transform:matrix(0.196005,0.006867,-0.008753,0.249847,0,0);-ms-transform:matrix(0.196005,0.006867,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.196005,0.006867,-0.008753,0.249847,0,0);}
.m74_c00334{transform:matrix(0.196089,0.006281,-0.008004,0.249872,0,0);-ms-transform:matrix(0.196089,0.006281,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.196089,0.006281,-0.008004,0.249872,0,0);}
.m7_c00334{transform:matrix(0.196150,0.006872,-0.008753,0.249847,0,0);-ms-transform:matrix(0.196150,0.006872,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.196150,0.006872,-0.008753,0.249847,0,0);}
.m12_c00334{transform:matrix(0.196245,0.006875,-0.008753,0.249847,0,0);-ms-transform:matrix(0.196245,0.006875,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.196245,0.006875,-0.008753,0.249847,0,0);}
.m3_c00334{transform:matrix(0.196255,0.006876,-0.008753,0.249847,0,0);-ms-transform:matrix(0.196255,0.006876,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.196255,0.006876,-0.008753,0.249847,0,0);}
.m9e_c00334{transform:matrix(0.196544,0.006296,-0.008004,0.249872,0,0);-ms-transform:matrix(0.196544,0.006296,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.196544,0.006296,-0.008004,0.249872,0,0);}
.m1a_c00334{transform:matrix(0.196619,0.006889,-0.008753,0.249847,0,0);-ms-transform:matrix(0.196619,0.006889,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.196619,0.006889,-0.008753,0.249847,0,0);}
.m7b_c00334{transform:matrix(0.196854,0.006306,-0.008004,0.249872,0,0);-ms-transform:matrix(0.196854,0.006306,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.196854,0.006306,-0.008004,0.249872,0,0);}
.m18_c00334{transform:matrix(0.196854,0.006897,-0.008753,0.249847,0,0);-ms-transform:matrix(0.196854,0.006897,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.196854,0.006897,-0.008753,0.249847,0,0);}
.mfb_c00334{transform:matrix(0.197350,0.003158,-0.003999,0.249968,0,0);-ms-transform:matrix(0.197350,0.003158,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.197350,0.003158,-0.003999,0.249968,0,0);}
.ma_c00334{transform:matrix(0.197354,0.006914,-0.008753,0.249847,0,0);-ms-transform:matrix(0.197354,0.006914,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.197354,0.006914,-0.008753,0.249847,0,0);}
.mde_c00334{transform:matrix(0.197408,0.002171,-0.002750,0.249985,0,0);-ms-transform:matrix(0.197408,0.002171,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.197408,0.002171,-0.002750,0.249985,0,0);}
.m3e_c00334{transform:matrix(0.198108,0.006941,-0.008753,0.249847,0,0);-ms-transform:matrix(0.198108,0.006941,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.198108,0.006941,-0.008753,0.249847,0,0);}
.m53_c00334{transform:matrix(0.198383,0.005356,-0.006748,0.249909,0,0);-ms-transform:matrix(0.198383,0.005356,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.198383,0.005356,-0.006748,0.249909,0,0);}
.m14_c00334{transform:matrix(0.198478,0.006954,-0.008753,0.249847,0,0);-ms-transform:matrix(0.198478,0.006954,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.198478,0.006954,-0.008753,0.249847,0,0);}
.md3_c00334{transform:matrix(0.199086,0.002389,-0.003000,0.249982,0,0);-ms-transform:matrix(0.199086,0.002389,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.199086,0.002389,-0.003000,0.249982,0,0);}
.mc7_c00334{transform:matrix(0.199381,0.002393,-0.003000,0.249982,0,0);-ms-transform:matrix(0.199381,0.002393,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.199381,0.002393,-0.003000,0.249982,0,0);}
.mf1_c00334{transform:matrix(0.200677,0.003612,-0.004499,0.249960,0,0);-ms-transform:matrix(0.200677,0.003612,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.200677,0.003612,-0.004499,0.249960,0,0);}
.m1d_c00334{transform:matrix(0.200812,0.007035,-0.008753,0.249847,0,0);-ms-transform:matrix(0.200812,0.007035,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.200812,0.007035,-0.008753,0.249847,0,0);}
.m70_c00334{transform:matrix(0.200812,0.005221,-0.006498,0.249916,0,0);-ms-transform:matrix(0.200812,0.005221,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.200812,0.005221,-0.006498,0.249916,0,0);}
.ma3_c00334{transform:matrix(0.201142,0.006443,-0.008004,0.249872,0,0);-ms-transform:matrix(0.201142,0.006443,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.201142,0.006443,-0.008004,0.249872,0,0);}
.m23_c00334{transform:matrix(0.201596,0.007063,-0.008753,0.249847,0,0);-ms-transform:matrix(0.201596,0.007063,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.201596,0.007063,-0.008753,0.249847,0,0);}
.mc_c00334{transform:matrix(0.202596,0.007098,-0.008753,0.249847,0,0);-ms-transform:matrix(0.202596,0.007098,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.202596,0.007098,-0.008753,0.249847,0,0);}
.mf9_c00334{transform:matrix(0.202759,0.003244,-0.003999,0.249968,0,0);-ms-transform:matrix(0.202759,0.003244,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.202759,0.003244,-0.003999,0.249968,0,0);}
.mf6_c00334{transform:matrix(0.202884,0.003246,-0.003999,0.249968,0,0);-ms-transform:matrix(0.202884,0.003246,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.202884,0.003246,-0.003999,0.249968,0,0);}
.m11_c00334{transform:matrix(0.202975,0.007111,-0.008753,0.249847,0,0);-ms-transform:matrix(0.202975,0.007111,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.202975,0.007111,-0.008753,0.249847,0,0);}
.md5_c00334{transform:matrix(0.203185,0.002438,-0.003000,0.249982,0,0);-ms-transform:matrix(0.203185,0.002438,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.203185,0.002438,-0.003000,0.249982,0,0);}
.m120_c00334{transform:matrix(0.203598,0.011005,-0.013494,0.249636,0,0);-ms-transform:matrix(0.203598,0.011005,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.203598,0.011005,-0.013494,0.249636,0,0);}
.m58_c00334{transform:matrix(0.203831,0.005503,-0.006748,0.249909,0,0);-ms-transform:matrix(0.203831,0.005503,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.203831,0.005503,-0.006748,0.249909,0,0);}
.m11d_c00334{transform:matrix(0.203952,0.011024,-0.013494,0.249636,0,0);-ms-transform:matrix(0.203952,0.011024,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.203952,0.011024,-0.013494,0.249636,0,0);}
.m62_c00334{transform:matrix(0.204027,0.006325,-0.007746,0.249880,0,0);-ms-transform:matrix(0.204027,0.006325,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.204027,0.006325,-0.007746,0.249880,0,0);}
.m7a_c00334{transform:matrix(0.204065,0.006537,-0.008004,0.249872,0,0);-ms-transform:matrix(0.204065,0.006537,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.204065,0.006537,-0.008004,0.249872,0,0);}
.mf4_c00334{transform:matrix(0.204184,0.003267,-0.003999,0.249968,0,0);-ms-transform:matrix(0.204184,0.003267,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.204184,0.003267,-0.003999,0.249968,0,0);}
.ma5_c00334{transform:matrix(0.204337,0.007773,-0.009503,0.249819,0,0);-ms-transform:matrix(0.204337,0.007773,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.204337,0.007773,-0.009503,0.249819,0,0);}
.m9a_c00334{transform:matrix(0.204430,0.006548,-0.008004,0.249872,0,0);-ms-transform:matrix(0.204430,0.006548,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.204430,0.006548,-0.008004,0.249872,0,0);}
.m69_c00334{transform:matrix(0.204746,0.005323,-0.006498,0.249916,0,0);-ms-transform:matrix(0.204746,0.005323,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.204746,0.005323,-0.006498,0.249916,0,0);}
.me6_c00334{transform:matrix(0.204922,0.003689,-0.004499,0.249960,0,0);-ms-transform:matrix(0.204922,0.003689,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.204922,0.003689,-0.004499,0.249960,0,0);}
.m50_c00334{transform:matrix(0.204929,0.007180,-0.008753,0.249847,0,0);-ms-transform:matrix(0.204929,0.007180,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.204929,0.007180,-0.008753,0.249847,0,0);}
.mfc_c00334{transform:matrix(0.205049,0.003281,-0.003999,0.249968,0,0);-ms-transform:matrix(0.205049,0.003281,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.205049,0.003281,-0.003999,0.249968,0,0);}
.m52_c00334{transform:matrix(0.205050,0.005536,-0.006748,0.249909,0,0);-ms-transform:matrix(0.205050,0.005536,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.205050,0.005536,-0.006748,0.249909,0,0);}
.m5d_c00334{transform:matrix(0.205671,0.006376,-0.007746,0.249880,0,0);-ms-transform:matrix(0.205671,0.006376,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.205671,0.006376,-0.007746,0.249880,0,0);}
.m11c_c00334{transform:matrix(0.205780,0.011123,-0.013494,0.249636,0,0);-ms-transform:matrix(0.205780,0.011123,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.205780,0.011123,-0.013494,0.249636,0,0);}
.ma2_c00334{transform:matrix(0.206329,0.006609,-0.008004,0.249872,0,0);-ms-transform:matrix(0.206329,0.006609,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.206329,0.006609,-0.008004,0.249872,0,0);}
.ma9_c00334{transform:matrix(0.206676,0.007862,-0.009503,0.249819,0,0);-ms-transform:matrix(0.206676,0.007862,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.206676,0.007862,-0.009503,0.249819,0,0);}
.md9_c00334{transform:matrix(0.206810,0.002482,-0.003000,0.249982,0,0);-ms-transform:matrix(0.206810,0.002482,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.206810,0.002482,-0.003000,0.249982,0,0);}
.m4a_c00334{transform:matrix(0.207298,0.007263,-0.008753,0.249847,0,0);-ms-transform:matrix(0.207298,0.007263,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.207298,0.007263,-0.008753,0.249847,0,0);}
.m6d_c00334{transform:matrix(0.207355,0.005391,-0.006498,0.249916,0,0);-ms-transform:matrix(0.207355,0.005391,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.207355,0.005391,-0.006498,0.249916,0,0);}
.mc9_c00334{transform:matrix(0.207530,0.002490,-0.003000,0.249982,0,0);-ms-transform:matrix(0.207530,0.002490,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.207530,0.002490,-0.003000,0.249982,0,0);}
.mcb_c00334{transform:matrix(0.207660,0.002492,-0.003000,0.249982,0,0);-ms-transform:matrix(0.207660,0.002492,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.207660,0.002492,-0.003000,0.249982,0,0);}
.mea_c00334{transform:matrix(0.207981,0.003744,-0.004499,0.249960,0,0);-ms-transform:matrix(0.207981,0.003744,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.207981,0.003744,-0.004499,0.249960,0,0);}
.md_c00334{transform:matrix(0.208857,0.007317,-0.008753,0.249847,0,0);-ms-transform:matrix(0.208857,0.007317,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.208857,0.007317,-0.008753,0.249847,0,0);}
.m83_c00334{transform:matrix(0.209193,0.006701,-0.008004,0.249872,0,0);-ms-transform:matrix(0.209193,0.006701,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.209193,0.006701,-0.008004,0.249872,0,0);}
.m36_c00334{transform:matrix(0.209501,0.007340,-0.008753,0.249847,0,0);-ms-transform:matrix(0.209501,0.007340,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.209501,0.007340,-0.008753,0.249847,0,0);}
.mfd_c00334{transform:matrix(0.209903,0.003358,-0.003999,0.249968,0,0);-ms-transform:matrix(0.209903,0.003358,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.209903,0.003358,-0.003999,0.249968,0,0);}
.m76_c00334{transform:matrix(0.210262,0.006735,-0.008004,0.249872,0,0);-ms-transform:matrix(0.210262,0.006735,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.210262,0.006735,-0.008004,0.249872,0,0);}
.m123_c00334{transform:matrix(0.210278,0.011366,-0.013494,0.249636,0,0);-ms-transform:matrix(0.210278,0.011366,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.210278,0.011366,-0.013494,0.249636,0,0);}
.m66_c00334{transform:matrix(0.210809,0.006535,-0.007746,0.249880,0,0);-ms-transform:matrix(0.210809,0.006535,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.210809,0.006535,-0.007746,0.249880,0,0);}
.m138_c00334{transform:matrix(0.210875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210875,0.000000,0.000000,0.250000,0,0);}
.m4c_c00334{transform:matrix(0.210901,0.007389,-0.008753,0.249847,0,0);-ms-transform:matrix(0.210901,0.007389,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.210901,0.007389,-0.008753,0.249847,0,0);}
.m33_c00334{transform:matrix(0.211370,0.007405,-0.008753,0.249847,0,0);-ms-transform:matrix(0.211370,0.007405,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.211370,0.007405,-0.008753,0.249847,0,0);}
.m109_c00334{transform:matrix(0.211473,0.003384,-0.003999,0.249968,0,0);-ms-transform:matrix(0.211473,0.003384,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.211473,0.003384,-0.003999,0.249968,0,0);}
.m6b_c00334{transform:matrix(0.213068,0.005540,-0.006498,0.249916,0,0);-ms-transform:matrix(0.213068,0.005540,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.213068,0.005540,-0.006498,0.249916,0,0);}
.mc8_c00334{transform:matrix(0.213180,0.002558,-0.003000,0.249982,0,0);-ms-transform:matrix(0.213180,0.002558,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.213180,0.002558,-0.003000,0.249982,0,0);}
.mf_c00334{transform:matrix(0.213294,0.007473,-0.008753,0.249847,0,0);-ms-transform:matrix(0.213294,0.007473,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.213294,0.007473,-0.008753,0.249847,0,0);}
.m103_c00334{transform:matrix(0.213643,0.003418,-0.003999,0.249968,0,0);-ms-transform:matrix(0.213643,0.003418,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.213643,0.003418,-0.003999,0.249968,0,0);}
.mcc_c00334{transform:matrix(0.214175,0.002570,-0.003000,0.249982,0,0);-ms-transform:matrix(0.214175,0.002570,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.214175,0.002570,-0.003000,0.249982,0,0);}
.me1_c00334{transform:matrix(0.214607,0.002361,-0.002750,0.249985,0,0);-ms-transform:matrix(0.214607,0.002361,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.214607,0.002361,-0.002750,0.249985,0,0);}
.m1f_c00334{transform:matrix(0.214813,0.007526,-0.008753,0.249847,0,0);-ms-transform:matrix(0.214813,0.007526,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.214813,0.007526,-0.008753,0.249847,0,0);}
.me3_c00334{transform:matrix(0.214922,0.002364,-0.002750,0.249985,0,0);-ms-transform:matrix(0.214922,0.002364,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.214922,0.002364,-0.002750,0.249985,0,0);}
.m7f_c00334{transform:matrix(0.215040,0.006888,-0.008004,0.249872,0,0);-ms-transform:matrix(0.215040,0.006888,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.215040,0.006888,-0.008004,0.249872,0,0);}
.mdf_c00334{transform:matrix(0.215072,0.002366,-0.002750,0.249985,0,0);-ms-transform:matrix(0.215072,0.002366,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.215072,0.002366,-0.002750,0.249985,0,0);}
.m22_c00334{transform:matrix(0.215343,0.007545,-0.008753,0.249847,0,0);-ms-transform:matrix(0.215343,0.007545,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.215343,0.007545,-0.008753,0.249847,0,0);}
.mef_c00334{transform:matrix(0.215680,0.003882,-0.004499,0.249960,0,0);-ms-transform:matrix(0.215680,0.003882,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.215680,0.003882,-0.004499,0.249960,0,0);}
.m124_c00334{transform:matrix(0.215890,0.011670,-0.013494,0.249636,0,0);-ms-transform:matrix(0.215890,0.011670,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.215890,0.011670,-0.013494,0.249636,0,0);}
.mce_c00334{transform:matrix(0.215944,0.002591,-0.003000,0.249982,0,0);-ms-transform:matrix(0.215944,0.002591,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.215944,0.002591,-0.003000,0.249982,0,0);}
.m15_c00334{transform:matrix(0.216547,0.007587,-0.008753,0.249847,0,0);-ms-transform:matrix(0.216547,0.007587,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.216547,0.007587,-0.008753,0.249847,0,0);}
.md1_c00334{transform:matrix(0.216679,0.002600,-0.003000,0.249982,0,0);-ms-transform:matrix(0.216679,0.002600,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.216679,0.002600,-0.003000,0.249982,0,0);}
.m2d_c00334{transform:matrix(0.217636,0.007625,-0.008753,0.249847,0,0);-ms-transform:matrix(0.217636,0.007625,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.217636,0.007625,-0.008753,0.249847,0,0);}
.m17_c00334{transform:matrix(0.218371,0.007651,-0.008753,0.249847,0,0);-ms-transform:matrix(0.218371,0.007651,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.218371,0.007651,-0.008753,0.249847,0,0);}
.m5c_c00334{transform:matrix(0.218590,0.006776,-0.007746,0.249880,0,0);-ms-transform:matrix(0.218590,0.006776,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.218590,0.006776,-0.007746,0.249880,0,0);}
.ma6_c00334{transform:matrix(0.218607,0.008315,-0.009503,0.249819,0,0);-ms-transform:matrix(0.218607,0.008315,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.218607,0.008315,-0.009503,0.249819,0,0);}
.m121_c00334{transform:matrix(0.218641,0.011818,-0.013494,0.249636,0,0);-ms-transform:matrix(0.218641,0.011818,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.218641,0.011818,-0.013494,0.249636,0,0);}
.m13_c00334{transform:matrix(0.218941,0.007671,-0.008753,0.249847,0,0);-ms-transform:matrix(0.218941,0.007671,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.218941,0.007671,-0.008753,0.249847,0,0);}
.ma7_c00334{transform:matrix(0.219216,0.008339,-0.009503,0.249819,0,0);-ms-transform:matrix(0.219216,0.008339,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.219216,0.008339,-0.009503,0.249819,0,0);}
.m26_c00334{transform:matrix(0.219405,0.007687,-0.008753,0.249847,0,0);-ms-transform:matrix(0.219405,0.007687,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.219405,0.007687,-0.008753,0.249847,0,0);}
.m116_c00334{transform:matrix(0.219452,0.003511,-0.003999,0.249968,0,0);-ms-transform:matrix(0.219452,0.003511,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.219452,0.003511,-0.003999,0.249968,0,0);}
.m4b_c00334{transform:matrix(0.220040,0.007709,-0.008753,0.249847,0,0);-ms-transform:matrix(0.220040,0.007709,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.220040,0.007709,-0.008753,0.249847,0,0);}
.m9c_c00334{transform:matrix(0.220077,0.007050,-0.008004,0.249872,0,0);-ms-transform:matrix(0.220077,0.007050,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.220077,0.007050,-0.008004,0.249872,0,0);}
.me8_c00334{transform:matrix(0.220214,0.003964,-0.004499,0.249960,0,0);-ms-transform:matrix(0.220214,0.003964,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.220214,0.003964,-0.004499,0.249960,0,0);}
.m10_c00334{transform:matrix(0.220315,0.007719,-0.008753,0.249847,0,0);-ms-transform:matrix(0.220315,0.007719,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.220315,0.007719,-0.008753,0.249847,0,0);}
.m61_c00334{transform:matrix(0.220334,0.006830,-0.007746,0.249880,0,0);-ms-transform:matrix(0.220334,0.006830,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.220334,0.006830,-0.007746,0.249880,0,0);}
.m4e_c00334{transform:matrix(0.220949,0.007741,-0.008753,0.249847,0,0);-ms-transform:matrix(0.220949,0.007741,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.220949,0.007741,-0.008753,0.249847,0,0);}
.me2_c00334{transform:matrix(0.221497,0.002436,-0.002750,0.249985,0,0);-ms-transform:matrix(0.221497,0.002436,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.221497,0.002436,-0.002750,0.249985,0,0);}
.m28_c00334{transform:matrix(0.222059,0.007780,-0.008753,0.249847,0,0);-ms-transform:matrix(0.222059,0.007780,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.222059,0.007780,-0.008753,0.249847,0,0);}
.md8_c00334{transform:matrix(0.222449,0.002669,-0.003000,0.249982,0,0);-ms-transform:matrix(0.222449,0.002669,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.222449,0.002669,-0.003000,0.249982,0,0);}
.m7c_c00334{transform:matrix(0.222956,0.007142,-0.008004,0.249872,0,0);-ms-transform:matrix(0.222956,0.007142,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.222956,0.007142,-0.008004,0.249872,0,0);}
.m8a_c00334{transform:matrix(0.223770,0.007168,-0.008004,0.249872,0,0);-ms-transform:matrix(0.223770,0.007168,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.223770,0.007168,-0.008004,0.249872,0,0);}
.m49_c00334{transform:matrix(0.224367,0.007861,-0.008753,0.249847,0,0);-ms-transform:matrix(0.224367,0.007861,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.224367,0.007861,-0.008753,0.249847,0,0);}
.m9f_c00334{transform:matrix(0.224590,0.007194,-0.008004,0.249872,0,0);-ms-transform:matrix(0.224590,0.007194,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.224590,0.007194,-0.008004,0.249872,0,0);}
.m11e_c00334{transform:matrix(0.224672,0.012144,-0.013494,0.249636,0,0);-ms-transform:matrix(0.224672,0.012144,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.224672,0.012144,-0.013494,0.249636,0,0);}
.ma1_c00334{transform:matrix(0.224765,0.007200,-0.008004,0.249872,0,0);-ms-transform:matrix(0.224765,0.007200,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.224765,0.007200,-0.008004,0.249872,0,0);}
.m2a_c00334{transform:matrix(0.224842,0.007877,-0.008753,0.249847,0,0);-ms-transform:matrix(0.224842,0.007877,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.224842,0.007877,-0.008753,0.249847,0,0);}
.me7_c00334{transform:matrix(0.224964,0.004049,-0.004499,0.249960,0,0);-ms-transform:matrix(0.224964,0.004049,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.224964,0.004049,-0.004499,0.249960,0,0);}
.m51_c00334{transform:matrix(0.225058,0.006077,-0.006748,0.249909,0,0);-ms-transform:matrix(0.225058,0.006077,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.225058,0.006077,-0.006748,0.249909,0,0);}
.m46_c00334{transform:matrix(0.225222,0.007891,-0.008753,0.249847,0,0);-ms-transform:matrix(0.225222,0.007891,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.225222,0.007891,-0.008753,0.249847,0,0);}
.m86_c00334{transform:matrix(0.225234,0.007215,-0.008004,0.249872,0,0);-ms-transform:matrix(0.225234,0.007215,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.225234,0.007215,-0.008004,0.249872,0,0);}
.m29_c00334{transform:matrix(0.225532,0.007902,-0.008753,0.249847,0,0);-ms-transform:matrix(0.225532,0.007902,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.225532,0.007902,-0.008753,0.249847,0,0);}
.md7_c00334{transform:matrix(0.225559,0.002707,-0.003000,0.249982,0,0);-ms-transform:matrix(0.225559,0.002707,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.225559,0.002707,-0.003000,0.249982,0,0);}
.m7d_c00334{transform:matrix(0.225664,0.007228,-0.008004,0.249872,0,0);-ms-transform:matrix(0.225664,0.007228,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.225664,0.007228,-0.008004,0.249872,0,0);}
.md6_c00334{transform:matrix(0.226084,0.002713,-0.003000,0.249982,0,0);-ms-transform:matrix(0.226084,0.002713,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.226084,0.002713,-0.003000,0.249982,0,0);}
.m5e_c00334{transform:matrix(0.226601,0.007025,-0.007746,0.249880,0,0);-ms-transform:matrix(0.226601,0.007025,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.226601,0.007025,-0.007746,0.249880,0,0);}
.mcf_c00334{transform:matrix(0.226649,0.002720,-0.003000,0.249982,0,0);-ms-transform:matrix(0.226649,0.002720,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.226649,0.002720,-0.003000,0.249982,0,0);}
.m56_c00334{transform:matrix(0.226922,0.006127,-0.006748,0.249909,0,0);-ms-transform:matrix(0.226922,0.006127,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.226922,0.006127,-0.006748,0.249909,0,0);}
.m10b_c00334{transform:matrix(0.227031,0.003632,-0.003999,0.249968,0,0);-ms-transform:matrix(0.227031,0.003632,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.227031,0.003632,-0.003999,0.249968,0,0);}
.m30_c00334{transform:matrix(0.227291,0.007963,-0.008753,0.249847,0,0);-ms-transform:matrix(0.227291,0.007963,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.227291,0.007963,-0.008753,0.249847,0,0);}
.m24_c00334{transform:matrix(0.227670,0.007976,-0.008753,0.249847,0,0);-ms-transform:matrix(0.227670,0.007976,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.227670,0.007976,-0.008753,0.249847,0,0);}
.m101_c00334{transform:matrix(0.227796,0.003645,-0.003999,0.249968,0,0);-ms-transform:matrix(0.227796,0.003645,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.227796,0.003645,-0.003999,0.249968,0,0);}
.m90_c00334{transform:matrix(0.228043,0.007305,-0.008004,0.249872,0,0);-ms-transform:matrix(0.228043,0.007305,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.228043,0.007305,-0.008004,0.249872,0,0);}
.m55_c00334{transform:matrix(0.228182,0.006161,-0.006748,0.249909,0,0);-ms-transform:matrix(0.228182,0.006161,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.228182,0.006161,-0.006748,0.249909,0,0);}
.me4_c00334{transform:matrix(0.228491,0.002513,-0.002750,0.249985,0,0);-ms-transform:matrix(0.228491,0.002513,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.228491,0.002513,-0.002750,0.249985,0,0);}
.m11f_c00334{transform:matrix(0.228526,0.012353,-0.013494,0.249636,0,0);-ms-transform:matrix(0.228526,0.012353,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.228526,0.012353,-0.013494,0.249636,0,0);}
.m13d_c00334{transform:matrix(0.228915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228915,0.000000,0.000000,0.250000,0,0);}
.m6c_c00334{transform:matrix(0.229323,0.005962,-0.006498,0.249916,0,0);-ms-transform:matrix(0.229323,0.005962,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.229323,0.005962,-0.006498,0.249916,0,0);}
.mac_c00334{transform:matrix(0.229934,0.008746,-0.009503,0.249819,0,0);-ms-transform:matrix(0.229934,0.008746,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.229934,0.008746,-0.009503,0.249819,0,0);}
.m91_c00334{transform:matrix(0.230207,0.007374,-0.008004,0.249872,0,0);-ms-transform:matrix(0.230207,0.007374,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.230207,0.007374,-0.008004,0.249872,0,0);}
.meb_c00334{transform:matrix(0.230278,0.004145,-0.004499,0.249960,0,0);-ms-transform:matrix(0.230278,0.004145,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.230278,0.004145,-0.004499,0.249960,0,0);}
.m47_c00334{transform:matrix(0.230279,0.008068,-0.008753,0.249847,0,0);-ms-transform:matrix(0.230279,0.008068,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.230279,0.008068,-0.008753,0.249847,0,0);}
.mdd_c00334{transform:matrix(0.230591,0.002537,-0.002750,0.249985,0,0);-ms-transform:matrix(0.230591,0.002537,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.230591,0.002537,-0.002750,0.249985,0,0);}
.m88_c00334{transform:matrix(0.230797,0.007393,-0.008004,0.249872,0,0);-ms-transform:matrix(0.230797,0.007393,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.230797,0.007393,-0.008004,0.249872,0,0);}
.m68_c00334{transform:matrix(0.230857,0.006002,-0.006498,0.249916,0,0);-ms-transform:matrix(0.230857,0.006002,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.230857,0.006002,-0.006498,0.249916,0,0);}
.maa_c00334{transform:matrix(0.231113,0.008791,-0.009503,0.249819,0,0);-ms-transform:matrix(0.231113,0.008791,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.231113,0.008791,-0.009503,0.249819,0,0);}
.m64_c00334{transform:matrix(0.231319,0.007171,-0.007746,0.249880,0,0);-ms-transform:matrix(0.231319,0.007171,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.231319,0.007171,-0.007746,0.249880,0,0);}
.m48_c00334{transform:matrix(0.231708,0.008118,-0.008753,0.249847,0,0);-ms-transform:matrix(0.231708,0.008118,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.231708,0.008118,-0.008753,0.249847,0,0);}
.m60_c00334{transform:matrix(0.231709,0.007183,-0.007746,0.249880,0,0);-ms-transform:matrix(0.231709,0.007183,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.231709,0.007183,-0.007746,0.249880,0,0);}
.m71_c00334{transform:matrix(0.232027,0.006033,-0.006498,0.249916,0,0);-ms-transform:matrix(0.232027,0.006033,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.232027,0.006033,-0.006498,0.249916,0,0);}
.me0_c00334{transform:matrix(0.232056,0.002553,-0.002750,0.249985,0,0);-ms-transform:matrix(0.232056,0.002553,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.232056,0.002553,-0.002750,0.249985,0,0);}
.mad_c00334{transform:matrix(0.232197,0.008832,-0.009503,0.249819,0,0);-ms-transform:matrix(0.232197,0.008832,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.232197,0.008832,-0.009503,0.249819,0,0);}
.m115_c00334{transform:matrix(0.232200,0.003715,-0.003999,0.249968,0,0);-ms-transform:matrix(0.232200,0.003715,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.232200,0.003715,-0.003999,0.249968,0,0);}
.m6e_c00334{transform:matrix(0.232386,0.006042,-0.006498,0.249916,0,0);-ms-transform:matrix(0.232386,0.006042,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.232386,0.006042,-0.006498,0.249916,0,0);}
.mda_c00334{transform:matrix(0.233016,0.002563,-0.002750,0.249985,0,0);-ms-transform:matrix(0.233016,0.002563,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.233016,0.002563,-0.002750,0.249985,0,0);}
.m6a_c00334{transform:matrix(0.233131,0.006061,-0.006498,0.249916,0,0);-ms-transform:matrix(0.233131,0.006061,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.233131,0.006061,-0.006498,0.249916,0,0);}
.m2f_c00334{transform:matrix(0.233427,0.008178,-0.008753,0.249847,0,0);-ms-transform:matrix(0.233427,0.008178,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.233427,0.008178,-0.008753,0.249847,0,0);}
.m118_c00334{transform:matrix(0.233630,0.003738,-0.003999,0.249968,0,0);-ms-transform:matrix(0.233630,0.003738,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.233630,0.003738,-0.003999,0.249968,0,0);}
.m80_c00334{transform:matrix(0.233660,0.007485,-0.008004,0.249872,0,0);-ms-transform:matrix(0.233660,0.007485,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.233660,0.007485,-0.008004,0.249872,0,0);}
.m63_c00334{transform:matrix(0.234023,0.007255,-0.007746,0.249880,0,0);-ms-transform:matrix(0.234023,0.007255,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.234023,0.007255,-0.007746,0.249880,0,0);}
.m59_c00334{transform:matrix(0.234065,0.006320,-0.006748,0.249909,0,0);-ms-transform:matrix(0.234065,0.006320,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.234065,0.006320,-0.006748,0.249909,0,0);}
.m57_c00334{transform:matrix(0.234165,0.006322,-0.006748,0.249909,0,0);-ms-transform:matrix(0.234165,0.006322,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.234165,0.006322,-0.006748,0.249909,0,0);}
.m5a_c00334{transform:matrix(0.234395,0.006329,-0.006748,0.249909,0,0);-ms-transform:matrix(0.234395,0.006329,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.234395,0.006329,-0.006748,0.249909,0,0);}
.m25_c00334{transform:matrix(0.235031,0.008234,-0.008753,0.249847,0,0);-ms-transform:matrix(0.235031,0.008234,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.235031,0.008234,-0.008753,0.249847,0,0);}
.m54_c00334{transform:matrix(0.235074,0.006347,-0.006748,0.249909,0,0);-ms-transform:matrix(0.235074,0.006347,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.235074,0.006347,-0.006748,0.249909,0,0);}
.m13e_c00334{transform:matrix(0.236025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236025,0.000000,0.000000,0.250000,0,0);}
.mdb_c00334{transform:matrix(0.237261,0.002610,-0.002750,0.249985,0,0);-ms-transform:matrix(0.237261,0.002610,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.237261,0.002610,-0.002750,0.249985,0,0);}
.m6f_c00334{transform:matrix(0.237290,0.006170,-0.006498,0.249916,0,0);-ms-transform:matrix(0.237290,0.006170,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.237290,0.006170,-0.006498,0.249916,0,0);}
.m85_c00334{transform:matrix(0.237683,0.007613,-0.008004,0.249872,0,0);-ms-transform:matrix(0.237683,0.007613,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.237683,0.007613,-0.008004,0.249872,0,0);}
.mff_c00334{transform:matrix(0.238549,0.003817,-0.003999,0.249968,0,0);-ms-transform:matrix(0.238549,0.003817,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.238549,0.003817,-0.003999,0.249968,0,0);}
.m3a_c00334{transform:matrix(0.239148,0.008379,-0.008753,0.249847,0,0);-ms-transform:matrix(0.239148,0.008379,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.239148,0.008379,-0.008753,0.249847,0,0);}
.mf0_c00334{transform:matrix(0.239851,0.004317,-0.004499,0.249960,0,0);-ms-transform:matrix(0.239851,0.004317,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.239851,0.004317,-0.004499,0.249960,0,0);}
.m2c_c00334{transform:matrix(0.239898,0.008405,-0.008753,0.249847,0,0);-ms-transform:matrix(0.239898,0.008405,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.239898,0.008405,-0.008753,0.249847,0,0);}
.m65_c00334{transform:matrix(0.240579,0.007458,-0.007746,0.249880,0,0);-ms-transform:matrix(0.240579,0.007458,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.240579,0.007458,-0.007746,0.249880,0,0);}
.m37_c00334{transform:matrix(0.240882,0.008439,-0.008753,0.249847,0,0);-ms-transform:matrix(0.240882,0.008439,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.240882,0.008439,-0.008753,0.249847,0,0);}
.mb0_c00334{transform:matrix(0.241150,0.008931,-0.009253,0.249829,0,0);-ms-transform:matrix(0.241150,0.008931,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.241150,0.008931,-0.009253,0.249829,0,0);}
.md2_c00334{transform:matrix(0.241193,0.002894,-0.003000,0.249982,0,0);-ms-transform:matrix(0.241193,0.002894,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.241193,0.002894,-0.003000,0.249982,0,0);}
.mee_c00334{transform:matrix(0.241346,0.004344,-0.004499,0.249960,0,0);-ms-transform:matrix(0.241346,0.004344,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.241346,0.004344,-0.004499,0.249960,0,0);}
.ma8_c00334{transform:matrix(0.242295,0.009216,-0.009503,0.249819,0,0);-ms-transform:matrix(0.242295,0.009216,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.242295,0.009216,-0.009503,0.249819,0,0);}
.m31_c00334{transform:matrix(0.243356,0.008526,-0.008753,0.249847,0,0);-ms-transform:matrix(0.243356,0.008526,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.243356,0.008526,-0.008753,0.249847,0,0);}
.me9_c00334{transform:matrix(0.243701,0.004387,-0.004499,0.249960,0,0);-ms-transform:matrix(0.243701,0.004387,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.243701,0.004387,-0.004499,0.249960,0,0);}
.m119_c00334{transform:matrix(0.244284,0.003909,-0.003999,0.249968,0,0);-ms-transform:matrix(0.244284,0.003909,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.244284,0.003909,-0.003999,0.249968,0,0);}
.m106_c00334{transform:matrix(0.244584,0.003913,-0.003999,0.249968,0,0);-ms-transform:matrix(0.244584,0.003913,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.244584,0.003913,-0.003999,0.249968,0,0);}
.md4_c00334{transform:matrix(0.244612,0.002935,-0.003000,0.249982,0,0);-ms-transform:matrix(0.244612,0.002935,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.244612,0.002935,-0.003000,0.249982,0,0);}
.mec_c00334{transform:matrix(0.247240,0.004450,-0.004499,0.249960,0,0);-ms-transform:matrix(0.247240,0.004450,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.247240,0.004450,-0.004499,0.249960,0,0);}
.m87_c00334{transform:matrix(0.248213,0.007951,-0.008004,0.249872,0,0);-ms-transform:matrix(0.248213,0.007951,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.248213,0.007951,-0.008004,0.249872,0,0);}
.m134_c00334{transform:matrix(0.248386,0.009697,-0.009752,0.249810,0,0);-ms-transform:matrix(0.248386,0.009697,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.248386,0.009697,-0.009752,0.249810,0,0);}
.m104_c00334{transform:matrix(0.248878,0.003982,-0.003999,0.249968,0,0);-ms-transform:matrix(0.248878,0.003982,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.248878,0.003982,-0.003999,0.249968,0,0);}
.m81_c00334{transform:matrix(0.249342,0.007987,-0.008004,0.249872,0,0);-ms-transform:matrix(0.249342,0.007987,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.249342,0.007987,-0.008004,0.249872,0,0);}
.m135_c00334{transform:matrix(0.251923,0.009835,-0.009752,0.249810,0,0);-ms-transform:matrix(0.251923,0.009835,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.251923,0.009835,-0.009752,0.249810,0,0);}
.m105_c00334{transform:matrix(0.252323,0.004037,-0.003999,0.249968,0,0);-ms-transform:matrix(0.252323,0.004037,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.252323,0.004037,-0.003999,0.249968,0,0);}
.m10e_c00334{transform:matrix(0.252358,0.004038,-0.003999,0.249968,0,0);-ms-transform:matrix(0.252358,0.004038,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.252358,0.004038,-0.003999,0.249968,0,0);}
.m130_c00334{transform:matrix(0.252787,0.009869,-0.009752,0.249810,0,0);-ms-transform:matrix(0.252787,0.009869,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.252787,0.009869,-0.009752,0.249810,0,0);}
.m117_c00334{transform:matrix(0.253358,0.004054,-0.003999,0.249968,0,0);-ms-transform:matrix(0.253358,0.004054,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.253358,0.004054,-0.003999,0.249968,0,0);}
.m10a_c00334{transform:matrix(0.253448,0.004055,-0.003999,0.249968,0,0);-ms-transform:matrix(0.253448,0.004055,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.253448,0.004055,-0.003999,0.249968,0,0);}
.m84_c00334{transform:matrix(0.253490,0.008120,-0.008004,0.249872,0,0);-ms-transform:matrix(0.253490,0.008120,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.253490,0.008120,-0.008004,0.249872,0,0);}
.m2b_c00334{transform:matrix(0.253794,0.008892,-0.008753,0.249847,0,0);-ms-transform:matrix(0.253794,0.008892,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.253794,0.008892,-0.008753,0.249847,0,0);}
.m102_c00334{transform:matrix(0.254002,0.004064,-0.003999,0.249968,0,0);-ms-transform:matrix(0.254002,0.004064,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.254002,0.004064,-0.003999,0.249968,0,0);}
.m107_c00334{transform:matrix(0.254247,0.004068,-0.003999,0.249968,0,0);-ms-transform:matrix(0.254247,0.004068,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.254247,0.004068,-0.003999,0.249968,0,0);}
.m82_c00334{transform:matrix(0.254524,0.008153,-0.008004,0.249872,0,0);-ms-transform:matrix(0.254524,0.008153,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.254524,0.008153,-0.008004,0.249872,0,0);}
.m8f_c00334{transform:matrix(0.255309,0.008178,-0.008004,0.249872,0,0);-ms-transform:matrix(0.255309,0.008178,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.255309,0.008178,-0.008004,0.249872,0,0);}
.m2e_c00334{transform:matrix(0.255803,0.008962,-0.008753,0.249847,0,0);-ms-transform:matrix(0.255803,0.008962,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.255803,0.008962,-0.008753,0.249847,0,0);}
.m108_c00334{transform:matrix(0.257367,0.004118,-0.003999,0.249968,0,0);-ms-transform:matrix(0.257367,0.004118,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.257367,0.004118,-0.003999,0.249968,0,0);}
.m27_c00334{transform:matrix(0.258811,0.009067,-0.008753,0.249847,0,0);-ms-transform:matrix(0.258811,0.009067,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.258811,0.009067,-0.008753,0.249847,0,0);}
.m34_c00334{transform:matrix(0.260030,0.009110,-0.008753,0.249847,0,0);-ms-transform:matrix(0.260030,0.009110,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.260030,0.009110,-0.008753,0.249847,0,0);}
.m8e_c00334{transform:matrix(0.260062,0.008330,-0.008004,0.249872,0,0);-ms-transform:matrix(0.260062,0.008330,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.260062,0.008330,-0.008004,0.249872,0,0);}
.m136_c00334{transform:matrix(0.260776,0.010180,-0.009752,0.249810,0,0);-ms-transform:matrix(0.260776,0.010180,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.260776,0.010180,-0.009752,0.249810,0,0);}
.m1_c00334{transform:matrix(0.261115,0.009148,-0.008753,0.249847,0,0);-ms-transform:matrix(0.261115,0.009148,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.261115,0.009148,-0.008753,0.249847,0,0);}
.m11a_c00334{transform:matrix(0.261137,0.004178,-0.003999,0.249968,0,0);-ms-transform:matrix(0.261137,0.004178,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.261137,0.004178,-0.003999,0.249968,0,0);}
.m10c_c00334{transform:matrix(0.261182,0.004179,-0.003999,0.249968,0,0);-ms-transform:matrix(0.261182,0.004179,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.261182,0.004179,-0.003999,0.249968,0,0);}
.m131_c00334{transform:matrix(0.262160,0.010234,-0.009752,0.249810,0,0);-ms-transform:matrix(0.262160,0.010234,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.262160,0.010234,-0.009752,0.249810,0,0);}
.med_c00334{transform:matrix(0.262278,0.004721,-0.004499,0.249960,0,0);-ms-transform:matrix(0.262278,0.004721,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.262278,0.004721,-0.004499,0.249960,0,0);}
.m110_c00334{transform:matrix(0.262866,0.004206,-0.003999,0.249968,0,0);-ms-transform:matrix(0.262866,0.004206,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.262866,0.004206,-0.003999,0.249968,0,0);}
.m13c_c00334{transform:matrix(0.262995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262995,0.000000,0.000000,0.250000,0,0);}
.m137_c00334{transform:matrix(0.263260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263260,0.000000,0.000000,0.250000,0,0);}
.m112_c00334{transform:matrix(0.264216,0.004227,-0.003999,0.249968,0,0);-ms-transform:matrix(0.264216,0.004227,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.264216,0.004227,-0.003999,0.249968,0,0);}
.m96_c00334{transform:matrix(0.264264,0.008465,-0.008004,0.249872,0,0);-ms-transform:matrix(0.264264,0.008465,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.264264,0.008465,-0.008004,0.249872,0,0);}
.m10d_c00334{transform:matrix(0.265306,0.004245,-0.003999,0.249968,0,0);-ms-transform:matrix(0.265306,0.004245,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.265306,0.004245,-0.003999,0.249968,0,0);}
.mae_c00334{transform:matrix(0.265318,0.009827,-0.009253,0.249829,0,0);-ms-transform:matrix(0.265318,0.009827,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.265318,0.009827,-0.009253,0.249829,0,0);}
.m133_c00334{transform:matrix(0.267426,0.010440,-0.009752,0.249810,0,0);-ms-transform:matrix(0.267426,0.010440,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.267426,0.010440,-0.009752,0.249810,0,0);}
.m89_c00334{transform:matrix(0.267428,0.008566,-0.008004,0.249872,0,0);-ms-transform:matrix(0.267428,0.008566,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.267428,0.008566,-0.008004,0.249872,0,0);}
.m38_c00334{transform:matrix(0.267851,0.009384,-0.008753,0.249847,0,0);-ms-transform:matrix(0.267851,0.009384,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.267851,0.009384,-0.008753,0.249847,0,0);}
.m95_c00334{transform:matrix(0.269502,0.008633,-0.008004,0.249872,0,0);-ms-transform:matrix(0.269502,0.008633,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.269502,0.008633,-0.008004,0.249872,0,0);}
.m8c_c00334{transform:matrix(0.269712,0.008639,-0.008004,0.249872,0,0);-ms-transform:matrix(0.269712,0.008639,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.269712,0.008639,-0.008004,0.249872,0,0);}
.m79_c00334{transform:matrix(0.269862,0.008644,-0.008004,0.249872,0,0);-ms-transform:matrix(0.269862,0.008644,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.269862,0.008644,-0.008004,0.249872,0,0);}
.m94_c00334{transform:matrix(0.270091,0.008652,-0.008004,0.249872,0,0);-ms-transform:matrix(0.270091,0.008652,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.270091,0.008652,-0.008004,0.249872,0,0);}
.m92_c00334{transform:matrix(0.271526,0.008698,-0.008004,0.249872,0,0);-ms-transform:matrix(0.271526,0.008698,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.271526,0.008698,-0.008004,0.249872,0,0);}
.m10f_c00334{transform:matrix(0.272845,0.004366,-0.003999,0.249968,0,0);-ms-transform:matrix(0.272845,0.004366,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.272845,0.004366,-0.003999,0.249968,0,0);}
.mb5_c00334{transform:matrix(0.273542,0.010131,-0.009253,0.249829,0,0);-ms-transform:matrix(0.273542,0.010131,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.273542,0.010131,-0.009253,0.249829,0,0);}
.m111_c00334{transform:matrix(0.274020,0.004384,-0.003999,0.249968,0,0);-ms-transform:matrix(0.274020,0.004384,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.274020,0.004384,-0.003999,0.249968,0,0);}
.m8d_c00334{transform:matrix(0.274684,0.008799,-0.008004,0.249872,0,0);-ms-transform:matrix(0.274684,0.008799,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.274684,0.008799,-0.008004,0.249872,0,0);}
.m35_c00334{transform:matrix(0.276560,0.009689,-0.008753,0.249847,0,0);-ms-transform:matrix(0.276560,0.009689,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.276560,0.009689,-0.008753,0.249847,0,0);}
.m113_c00334{transform:matrix(0.277959,0.004447,-0.003999,0.249968,0,0);-ms-transform:matrix(0.277959,0.004447,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.277959,0.004447,-0.003999,0.249968,0,0);}
.m114_c00334{transform:matrix(0.278494,0.004456,-0.003999,0.249968,0,0);-ms-transform:matrix(0.278494,0.004456,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.278494,0.004456,-0.003999,0.249968,0,0);}
.mb4_c00334{transform:matrix(0.280288,0.010381,-0.009253,0.249829,0,0);-ms-transform:matrix(0.280288,0.010381,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.280288,0.010381,-0.009253,0.249829,0,0);}
.m39_c00334{transform:matrix(0.281322,0.009856,-0.008753,0.249847,0,0);-ms-transform:matrix(0.281322,0.009856,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.281322,0.009856,-0.008753,0.249847,0,0);}
.m132_c00334{transform:matrix(0.281625,0.010994,-0.009752,0.249810,0,0);-ms-transform:matrix(0.281625,0.010994,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.281625,0.010994,-0.009752,0.249810,0,0);}
.mb1_c00334{transform:matrix(0.282921,0.010479,-0.009253,0.249829,0,0);-ms-transform:matrix(0.282921,0.010479,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.282921,0.010479,-0.009253,0.249829,0,0);}
.m32_c00334{transform:matrix(0.282941,0.009913,-0.008753,0.249847,0,0);-ms-transform:matrix(0.282941,0.009913,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.282941,0.009913,-0.008753,0.249847,0,0);}
.m93_c00334{transform:matrix(0.284214,0.009104,-0.008004,0.249872,0,0);-ms-transform:matrix(0.284214,0.009104,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.284214,0.009104,-0.008004,0.249872,0,0);}
.mb3_c00334{transform:matrix(0.289167,0.010710,-0.009253,0.249829,0,0);-ms-transform:matrix(0.289167,0.010710,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.289167,0.010710,-0.009253,0.249829,0,0);}
.maf_c00334{transform:matrix(0.296087,0.010966,-0.009253,0.249829,0,0);-ms-transform:matrix(0.296087,0.010966,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.296087,0.010966,-0.009253,0.249829,0,0);}
.mb2_c00334{transform:matrix(0.300739,0.011138,-0.009253,0.249829,0,0);-ms-transform:matrix(0.300739,0.011138,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.300739,0.011138,-0.009253,0.249829,0,0);}
.mb6_c00334{transform:matrix(0.306270,0.011343,-0.009253,0.249829,0,0);-ms-transform:matrix(0.306270,0.011343,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.306270,0.011343,-0.009253,0.249829,0,0);}
.m8b_c00334{transform:matrix(0.310896,0.009959,-0.008004,0.249872,0,0);-ms-transform:matrix(0.310896,0.009959,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.310896,0.009959,-0.008004,0.249872,0,0);}
.m78_c00334{transform:matrix(0.319606,0.010238,-0.008004,0.249872,0,0);-ms-transform:matrix(0.319606,0.010238,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.319606,0.010238,-0.008004,0.249872,0,0);}
.mbc_c00334{transform:matrix(0.322372,0.003868,-0.003000,0.249982,0,0);-ms-transform:matrix(0.322372,0.003868,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.322372,0.003868,-0.003000,0.249982,0,0);}
.mba_c00334{transform:matrix(0.328696,0.003944,-0.003000,0.249982,0,0);-ms-transform:matrix(0.328696,0.003944,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.328696,0.003944,-0.003000,0.249982,0,0);}
.mb8_c00334{transform:matrix(0.353735,0.004245,-0.003000,0.249982,0,0);-ms-transform:matrix(0.353735,0.004245,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.353735,0.004245,-0.003000,0.249982,0,0);}
.mc1_c00334{transform:matrix(0.384382,0.004613,-0.003000,0.249982,0,0);-ms-transform:matrix(0.384382,0.004613,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.384382,0.004613,-0.003000,0.249982,0,0);}
.mbe_c00334{transform:matrix(0.386792,0.004642,-0.003000,0.249982,0,0);-ms-transform:matrix(0.386792,0.004642,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.386792,0.004642,-0.003000,0.249982,0,0);}
.mc2_c00334{transform:matrix(0.388552,0.004663,-0.003000,0.249982,0,0);-ms-transform:matrix(0.388552,0.004663,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.388552,0.004663,-0.003000,0.249982,0,0);}
.mc4_c00334{transform:matrix(0.393437,0.004721,-0.003000,0.249982,0,0);-ms-transform:matrix(0.393437,0.004721,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.393437,0.004721,-0.003000,0.249982,0,0);}
.mb9_c00334{transform:matrix(0.395392,0.004745,-0.003000,0.249982,0,0);-ms-transform:matrix(0.395392,0.004745,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.395392,0.004745,-0.003000,0.249982,0,0);}
.mbb_c00334{transform:matrix(0.397731,0.004773,-0.003000,0.249982,0,0);-ms-transform:matrix(0.397731,0.004773,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.397731,0.004773,-0.003000,0.249982,0,0);}
.mbd_c00334{transform:matrix(0.398171,0.004778,-0.003000,0.249982,0,0);-ms-transform:matrix(0.398171,0.004778,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.398171,0.004778,-0.003000,0.249982,0,0);}
.mbf_c00334{transform:matrix(0.409136,0.004910,-0.003000,0.249982,0,0);-ms-transform:matrix(0.409136,0.004910,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.409136,0.004910,-0.003000,0.249982,0,0);}
.mc0_c00334{transform:matrix(0.416210,0.004995,-0.003000,0.249982,0,0);-ms-transform:matrix(0.416210,0.004995,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.416210,0.004995,-0.003000,0.249982,0,0);}
.mc3_c00334{transform:matrix(0.417985,0.005016,-0.003000,0.249982,0,0);-ms-transform:matrix(0.417985,0.005016,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.417985,0.005016,-0.003000,0.249982,0,0);}
.m12f_c00334{transform:matrix(0.445146,0.017378,-0.009752,0.249810,0,0);-ms-transform:matrix(0.445146,0.017378,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.445146,0.017378,-0.009752,0.249810,0,0);}
.m0_c00334{transform:matrix(0.511546,0.017922,-0.008753,0.249847,0,0);-ms-transform:matrix(0.511546,0.017922,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.511546,0.017922,-0.008753,0.249847,0,0);}
.m13b_c00334{transform:matrix(0.537360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537360,0.000000,0.000000,0.250000,0,0);}
.m13a_c00334{transform:matrix(0.581600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.581600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.581600,0.000000,0.000000,0.250000,0,0);}
.m139_c00334{transform:matrix(0.668975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.668975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.668975,0.000000,0.000000,0.250000,0,0);}
.m2_c00334{transform:matrix(1.295705,0.045395,-0.008753,0.249847,0,0);-ms-transform:matrix(1.295705,0.045395,-0.008753,0.249847,0,0);-webkit-transform:matrix(1.295705,0.045395,-0.008753,0.249847,0,0);}
.v0_c00334{vertical-align:0.000000px;}
.ls0_c00334{letter-spacing:0.000000px;}
.sc__c00334{text-shadow:none;}
.sc0_c00334{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__c00334{-webkit-text-stroke:0px transparent;}
.sc0_c00334{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00334{word-spacing:0.000000px;}
.fc0_c00334{color:transparent;}
.fs1b_c00334{font-size:30.000000px;}
.fs1c_c00334{font-size:42.000000px;}
.fsf_c00334{font-size:48.003456px;}
.fse_c00334{font-size:65.979207px;}
.fsc_c00334{font-size:71.964891px;}
.fs0_c00334{font-size:71.972131px;}
.fs19_c00334{font-size:71.982790px;}
.fs1a_c00334{font-size:72.000000px;}
.fs16_c00334{font-size:72.009215px;}
.fsb_c00334{font-size:77.961966px;}
.fs3_c00334{font-size:77.969808px;}
.fs15_c00334{font-size:78.009983px;}
.fs13_c00334{font-size:78.012635px;}
.fs5_c00334{font-size:83.967486px;}
.fsd_c00334{font-size:83.976687px;}
.fs12_c00334{font-size:84.005082px;}
.fs11_c00334{font-size:84.006048px;}
.fs8_c00334{font-size:84.028387px;}
.fs6_c00334{font-size:84.030612px;}
.fs7_c00334{font-size:84.040352px;}
.fsa_c00334{font-size:89.956114px;}
.fs1_c00334{font-size:89.965163px;}
.fs17_c00334{font-size:90.041256px;}
.fs2_c00334{font-size:95.962841px;}
.fs10_c00334{font-size:96.006912px;}
.fs14_c00334{font-size:96.012287px;}
.fs4_c00334{font-size:101.960518px;}
.fs9_c00334{font-size:102.034470px;}
.fs18_c00334{font-size:120.017339px;}
.y0_c00334{bottom:0.000000px;}
.y13b_c00334{bottom:38.190505px;}
.y13a_c00334{bottom:40.384021px;}
.y139_c00334{bottom:42.092280px;}
.y138_c00334{bottom:44.677570px;}
.y137_c00334{bottom:49.833526px;}
.y136_c00334{bottom:52.431219px;}
.y135_c00334{bottom:54.843057px;}
.y134_c00334{bottom:56.970000px;}
.y133_c00334{bottom:61.230387px;}
.y132_c00334{bottom:62.773723px;}
.y131_c00334{bottom:63.334953px;}
.y130_c00334{bottom:65.406853px;}
.y12f_c00334{bottom:66.367285px;}
.y12e_c00334{bottom:66.898935px;}
.y12d_c00334{bottom:67.481942px;}
.y12c_c00334{bottom:68.927817px;}
.y12b_c00334{bottom:69.467499px;}
.y12a_c00334{bottom:70.204500px;}
.y129_c00334{bottom:91.801356px;}
.y128_c00334{bottom:95.376939px;}
.y127_c00334{bottom:97.173924px;}
.y126_c00334{bottom:100.883643px;}
.y125_c00334{bottom:103.298010px;}
.y124_c00334{bottom:109.867110px;}
.y123_c00334{bottom:114.716742px;}
.y122_c00334{bottom:117.084696px;}
.y121_c00334{bottom:120.027912px;}
.y120_c00334{bottom:121.789500px;}
.y11f_c00334{bottom:140.047080px;}
.y11e_c00334{bottom:142.948368px;}
.y11d_c00334{bottom:144.874488px;}
.y11c_c00334{bottom:149.555604px;}
.y11b_c00334{bottom:151.443300px;}
.y11a_c00334{bottom:153.761556px;}
.y119_c00334{bottom:157.398780px;}
.y13c_c00334{bottom:163.890000px;}
.y110_c00334{bottom:175.585296px;}
.y111_c00334{bottom:175.585500px;}
.y10f_c00334{bottom:175.585764px;}
.y112_c00334{bottom:175.585992px;}
.y116_c00334{bottom:175.586160px;}
.y118_c00334{bottom:175.586196px;}
.y115_c00334{bottom:175.586376px;}
.y117_c00334{bottom:175.586484px;}
.y113_c00334{bottom:175.586736px;}
.y114_c00334{bottom:175.587024px;}
.y10e_c00334{bottom:212.739372px;}
.y10d_c00334{bottom:215.518668px;}
.y10c_c00334{bottom:218.672136px;}
.y10b_c00334{bottom:221.181444px;}
.y10a_c00334{bottom:222.732696px;}
.y109_c00334{bottom:223.638516px;}
.y108_c00334{bottom:226.716384px;}
.y107_c00334{bottom:228.522024px;}
.y106_c00334{bottom:229.110912px;}
.y105_c00334{bottom:230.577828px;}
.y104_c00334{bottom:236.662092px;}
.y103_c00334{bottom:238.114260px;}
.y102_c00334{bottom:239.696556px;}
.y101_c00334{bottom:240.093540px;}
.y100_c00334{bottom:240.781644px;}
.yff_c00334{bottom:242.019420px;}
.yfe_c00334{bottom:242.921556px;}
.yfd_c00334{bottom:243.457308px;}
.yfc_c00334{bottom:244.698444px;}
.yfb_c00334{bottom:245.212308px;}
.yfa_c00334{bottom:246.766332px;}
.yf9_c00334{bottom:247.594500px;}
.yf8_c00334{bottom:271.034766px;}
.yf7_c00334{bottom:271.629090px;}
.yf6_c00334{bottom:272.631843px;}
.yf5_c00334{bottom:273.234645px;}
.yf4_c00334{bottom:274.436010px;}
.yf3_c00334{bottom:276.469515px;}
.yf2_c00334{bottom:278.069157px;}
.yf1_c00334{bottom:279.056709px;}
.yf0_c00334{bottom:279.645282px;}
.yef_c00334{bottom:281.210040px;}
.yee_c00334{bottom:281.812221px;}
.yed_c00334{bottom:282.939309px;}
.yec_c00334{bottom:283.504500px;}
.yeb_c00334{bottom:311.504523px;}
.yea_c00334{bottom:312.120319px;}
.ye9_c00334{bottom:312.723097px;}
.ye8_c00334{bottom:313.225919px;}
.ye7_c00334{bottom:313.715803px;}
.ye6_c00334{bottom:314.566312px;}
.ye5_c00334{bottom:315.189749px;}
.ye4_c00334{bottom:315.552072px;}
.ye3_c00334{bottom:316.402317px;}
.ye2_c00334{bottom:316.767775px;}
.ye1_c00334{bottom:317.968200px;}
.ye0_c00334{bottom:319.143000px;}
.ydf_c00334{bottom:344.211066px;}
.yde_c00334{bottom:346.898772px;}
.ydd_c00334{bottom:347.833014px;}
.ydc_c00334{bottom:350.021190px;}
.ydb_c00334{bottom:351.366930px;}
.yda_c00334{bottom:356.289924px;}
.yd9_c00334{bottom:357.607884px;}
.yd8_c00334{bottom:362.082504px;}
.yd7_c00334{bottom:364.684578px;}
.yd6_c00334{bottom:365.970714px;}
.yd5_c00334{bottom:369.423294px;}
.yd4_c00334{bottom:371.510676px;}
.yd3_c00334{bottom:380.244066px;}
.yd2_c00334{bottom:384.244590px;}
.yd1_c00334{bottom:386.967036px;}
.yd0_c00334{bottom:388.644684px;}
.ycf_c00334{bottom:391.275000px;}
.yce_c00334{bottom:395.268486px;}
.ycd_c00334{bottom:397.880994px;}
.ycc_c00334{bottom:398.556138px;}
.ycb_c00334{bottom:400.683660px;}
.yca_c00334{bottom:429.504306px;}
.yc9_c00334{bottom:430.688562px;}
.yc8_c00334{bottom:431.370906px;}
.yc7_c00334{bottom:432.032838px;}
.yc6_c00334{bottom:432.859686px;}
.yc5_c00334{bottom:433.641048px;}
.yc4_c00334{bottom:433.915854px;}
.yc3_c00334{bottom:434.571180px;}
.yc2_c00334{bottom:434.833134px;}
.yc1_c00334{bottom:435.498072px;}
.yc0_c00334{bottom:435.876810px;}
.ybf_c00334{bottom:436.897302px;}
.ybe_c00334{bottom:437.401500px;}
.ybd_c00334{bottom:451.526658px;}
.ybc_c00334{bottom:455.233725px;}
.ybb_c00334{bottom:456.924199px;}
.yba_c00334{bottom:458.974092px;}
.yb9_c00334{bottom:461.437348px;}
.yb8_c00334{bottom:465.208019px;}
.yb7_c00334{bottom:467.624710px;}
.yb6_c00334{bottom:468.825620px;}
.yb5_c00334{bottom:472.131532px;}
.yb4_c00334{bottom:473.329500px;}
.yb3_c00334{bottom:495.742266px;}
.yb2_c00334{bottom:498.332916px;}
.yb1_c00334{bottom:499.559727px;}
.yb0_c00334{bottom:502.167762px;}
.yaf_c00334{bottom:503.386137px;}
.yae_c00334{bottom:508.875579px;}
.yad_c00334{bottom:509.710059px;}
.yac_c00334{bottom:512.479404px;}
.yab_c00334{bottom:514.077000px;}
.yaa_c00334{bottom:528.592061px;}
.ya9_c00334{bottom:530.124755px;}
.ya8_c00334{bottom:532.016492px;}
.ya7_c00334{bottom:535.442843px;}
.ya6_c00334{bottom:536.563433px;}
.ya5_c00334{bottom:540.376677px;}
.ya4_c00334{bottom:541.865382px;}
.ya3_c00334{bottom:542.977044px;}
.ya2_c00334{bottom:545.639976px;}
.ya1_c00334{bottom:546.741788px;}
.ya0_c00334{bottom:548.951709px;}
.y9f_c00334{bottom:550.075947px;}
.y9e_c00334{bottom:551.078933px;}
.y9d_c00334{bottom:552.195395px;}
.y9c_c00334{bottom:561.349743px;}
.y9b_c00334{bottom:562.742288px;}
.y9a_c00334{bottom:566.094563px;}
.y99_c00334{bottom:567.293105px;}
.y98_c00334{bottom:571.452008px;}
.y97_c00334{bottom:573.929325px;}
.y96_c00334{bottom:575.117105px;}
.y95_c00334{bottom:576.361289px;}
.y94_c00334{bottom:577.226780px;}
.y93_c00334{bottom:579.255597px;}
.y92_c00334{bottom:582.903009px;}
.y91_c00334{bottom:585.614499px;}
.y90_c00334{bottom:586.743330px;}
.y8f_c00334{bottom:597.246156px;}
.y8e_c00334{bottom:599.796156px;}
.y8d_c00334{bottom:601.196796px;}
.y8c_c00334{bottom:603.657660px;}
.y8b_c00334{bottom:604.768524px;}
.y8a_c00334{bottom:606.563340px;}
.y89_c00334{bottom:609.386268px;}
.y88_c00334{bottom:610.458444px;}
.y87_c00334{bottom:613.630476px;}
.y86_c00334{bottom:616.107804px;}
.y85_c00334{bottom:618.133020px;}
.y84_c00334{bottom:619.131132px;}
.y83_c00334{bottom:632.838204px;}
.y82_c00334{bottom:636.074268px;}
.y81_c00334{bottom:639.263292px;}
.y80_c00334{bottom:640.327692px;}
.y7f_c00334{bottom:642.082092px;}
.y7e_c00334{bottom:643.210428px;}
.y7d_c00334{bottom:645.672444px;}
.y7c_c00334{bottom:646.727628px;}
.y7b_c00334{bottom:648.468348px;}
.y7a_c00334{bottom:649.524732px;}
.y79_c00334{bottom:651.253500px;}
.y78_c00334{bottom:679.892721px;}
.y77_c00334{bottom:681.202314px;}
.y76_c00334{bottom:706.749306px;}
.y75_c00334{bottom:707.598999px;}
.y74_c00334{bottom:710.450523px;}
.y73_c00334{bottom:712.789587px;}
.y72_c00334{bottom:713.688771px;}
.y71_c00334{bottom:715.411362px;}
.y70_c00334{bottom:716.595870px;}
.y6f_c00334{bottom:719.132157px;}
.y6e_c00334{bottom:720.288234px;}
.y6d_c00334{bottom:722.790708px;}
.y6c_c00334{bottom:723.603000px;}
.y6b_c00334{bottom:741.626959px;}
.y6a_c00334{bottom:745.049685px;}
.y69_c00334{bottom:746.105886px;}
.y68_c00334{bottom:748.551088px;}
.y67_c00334{bottom:750.612480px;}
.y66_c00334{bottom:751.648314px;}
.y65_c00334{bottom:753.389972px;}
.y64_c00334{bottom:756.475154px;}
.y63_c00334{bottom:757.462581px;}
.y62_c00334{bottom:759.528204px;}
.y61_c00334{bottom:760.830948px;}
.y60_c00334{bottom:762.483000px;}
.y5f_c00334{bottom:779.891763px;}
.y5e_c00334{bottom:782.324922px;}
.y5d_c00334{bottom:784.419136px;}
.y5c_c00334{bottom:785.591004px;}
.y5b_c00334{bottom:788.641423px;}
.y5a_c00334{bottom:790.409897px;}
.y59_c00334{bottom:792.231748px;}
.y58_c00334{bottom:794.615700px;}
.y57_c00334{bottom:795.502407px;}
.y56_c00334{bottom:796.675084px;}
.y55_c00334{bottom:798.933000px;}
.y54_c00334{bottom:814.182072px;}
.y53_c00334{bottom:814.909915px;}
.y52_c00334{bottom:816.588043px;}
.y51_c00334{bottom:817.418805px;}
.y50_c00334{bottom:818.539821px;}
.y4f_c00334{bottom:819.385116px;}
.y4e_c00334{bottom:821.040577px;}
.y4d_c00334{bottom:823.243863px;}
.y4c_c00334{bottom:824.115786px;}
.y4b_c00334{bottom:825.512131px;}
.y4a_c00334{bottom:827.688789px;}
.y49_c00334{bottom:829.345930px;}
.y48_c00334{bottom:831.447586px;}
.y47_c00334{bottom:852.641430px;}
.y46_c00334{bottom:853.847811px;}
.y45_c00334{bottom:855.366526px;}
.y44_c00334{bottom:856.830271px;}
.y43_c00334{bottom:859.287198px;}
.y42_c00334{bottom:860.025273px;}
.y41_c00334{bottom:860.768803px;}
.y40_c00334{bottom:861.739981px;}
.y3f_c00334{bottom:862.706229px;}
.y3e_c00334{bottom:864.647563px;}
.y3d_c00334{bottom:866.266020px;}
.y3c_c00334{bottom:886.536694px;}
.y3b_c00334{bottom:888.724575px;}
.y3a_c00334{bottom:889.503693px;}
.y39_c00334{bottom:891.132306px;}
.y38_c00334{bottom:892.182765px;}
.y37_c00334{bottom:892.725504px;}
.y36_c00334{bottom:895.373256px;}
.y35_c00334{bottom:896.710143px;}
.y34_c00334{bottom:897.493929px;}
.y33_c00334{bottom:900.951279px;}
.y32_c00334{bottom:902.193285px;}
.y31_c00334{bottom:902.970408px;}
.y30_c00334{bottom:919.979382px;}
.y2f_c00334{bottom:922.757821px;}
.y2e_c00334{bottom:923.704384px;}
.y2d_c00334{bottom:925.293490px;}
.y2c_c00334{bottom:928.055425px;}
.y2b_c00334{bottom:929.356281px;}
.y2a_c00334{bottom:930.590908px;}
.y29_c00334{bottom:931.781478px;}
.y28_c00334{bottom:934.926886px;}
.y27_c00334{bottom:936.143172px;}
.y26_c00334{bottom:937.661664px;}
.y25_c00334{bottom:939.407004px;}
.y24_c00334{bottom:956.146249px;}
.y23_c00334{bottom:959.101662px;}
.y22_c00334{bottom:960.470854px;}
.y21_c00334{bottom:961.183729px;}
.y20_c00334{bottom:965.829379px;}
.y1f_c00334{bottom:966.877264px;}
.y1e_c00334{bottom:969.685279px;}
.y1d_c00334{bottom:970.764922px;}
.y1c_c00334{bottom:972.110623px;}
.y1b_c00334{bottom:974.919951px;}
.y1a_c00334{bottom:976.653258px;}
.y19_c00334{bottom:992.495287px;}
.y18_c00334{bottom:994.249597px;}
.y17_c00334{bottom:994.962991px;}
.y16_c00334{bottom:996.722914px;}
.y15_c00334{bottom:997.674423px;}
.y14_c00334{bottom:999.615547px;}
.y13_c00334{bottom:1000.364820px;}
.y12_c00334{bottom:1001.576814px;}
.y11_c00334{bottom:1003.755003px;}
.y10_c00334{bottom:1005.668563px;}
.yf_c00334{bottom:1006.344427px;}
.ye_c00334{bottom:1028.779911px;}
.yd_c00334{bottom:1031.463565px;}
.yc_c00334{bottom:1032.517318px;}
.yb_c00334{bottom:1034.497176px;}
.ya_c00334{bottom:1036.182189px;}
.y9_c00334{bottom:1037.161777px;}
.y8_c00334{bottom:1039.180633px;}
.y7_c00334{bottom:1040.177227px;}
.y6_c00334{bottom:1040.818749px;}
.y5_c00334{bottom:1041.836181px;}
.y4_c00334{bottom:1044.130881px;}
.y13d_c00334{bottom:1066.770000px;}
.y3_c00334{bottom:1097.563360px;}
.y2_c00334{bottom:1107.228682px;}
.y1_c00334{bottom:1113.496500px;}
.h1d_c00334{height:30.000000px;}
.h1e_c00334{height:42.000000px;}
.h11_c00334{height:48.003456px;}
.h10_c00334{height:65.979207px;}
.he_c00334{height:71.964891px;}
.h2_c00334{height:71.972131px;}
.h1b_c00334{height:71.982790px;}
.h1c_c00334{height:72.000000px;}
.h18_c00334{height:72.009215px;}
.hd_c00334{height:77.961966px;}
.h5_c00334{height:77.969808px;}
.h17_c00334{height:78.009983px;}
.h15_c00334{height:78.012635px;}
.h7_c00334{height:83.967486px;}
.hf_c00334{height:83.976687px;}
.h14_c00334{height:84.005082px;}
.h13_c00334{height:84.006048px;}
.ha_c00334{height:84.028387px;}
.h8_c00334{height:84.030612px;}
.h9_c00334{height:84.040352px;}
.hc_c00334{height:89.956114px;}
.h3_c00334{height:89.965163px;}
.h19_c00334{height:90.041256px;}
.h4_c00334{height:95.962841px;}
.h12_c00334{height:96.006912px;}
.h16_c00334{height:96.012287px;}
.h6_c00334{height:101.960518px;}
.hb_c00334{height:102.034470px;}
.h1a_c00334{height:120.017339px;}
.h1_c00334{height:1247.250000px;}
.h0_c00334{height:1247.400000px;}
.w0_c00334{width:915.000000px;}
.x0_c00334{left:0.000000px;}
.xd0_c00334{left:127.728000px;}
.xc5_c00334{left:129.571188px;}
.xa6_c00334{left:132.342000px;}
.x9e_c00334{left:133.478598px;}
.x5e_c00334{left:136.075332px;}
.x6a_c00334{left:137.664389px;}
.x36_c00334{left:139.480800px;}
.x3e_c00334{left:140.810011px;}
.x2d_c00334{left:142.219068px;}
.xf_c00334{left:143.785315px;}
.xac_c00334{left:164.257500px;}
.x6b_c00334{left:168.824198px;}
.x57_c00334{left:171.010500px;}
.x10_c00334{left:174.467581px;}
.x86_c00334{left:178.411458px;}
.xd6_c00334{left:182.202963px;}
.xb3_c00334{left:183.480000px;}
.x9f_c00334{left:185.659566px;}
.x5f_c00334{left:190.658679px;}
.x4f_c00334{left:192.267000px;}
.x1a_c00334{left:196.926126px;}
.x7d_c00334{left:198.806496px;}
.xd1_c00334{left:202.827000px;}
.x23_c00334{left:205.544025px;}
.x99_c00334{left:206.775150px;}
.x37_c00334{left:212.912218px;}
.xc6_c00334{left:214.173660px;}
.x3f_c00334{left:224.735878px;}
.x2e_c00334{left:226.230345px;}
.x9a_c00334{left:229.282290px;}
.x6c_c00334{left:232.048910px;}
.x50_c00334{left:234.291000px;}
.xbf_c00334{left:236.531976px;}
.xa7_c00334{left:239.142000px;}
.x8c_c00334{left:240.301500px;}
.x73_c00334{left:242.256575px;}
.xd7_c00334{left:243.983121px;}
.x60_c00334{left:245.260500px;}
.x4_c00334{left:251.304684px;}
.x24_c00334{left:259.720590px;}
.x11_c00334{left:261.289692px;}
.x92_c00334{left:262.800000px;}
.xca_c00334{left:266.316378px;}
.x4a_c00334{left:268.159500px;}
.xba_c00334{left:269.396772px;}
.xa0_c00334{left:271.970568px;}
.x87_c00334{left:273.154121px;}
.xb4_c00334{left:280.606500px;}
.x1b_c00334{left:284.606554px;}
.xd2_c00334{left:287.878500px;}
.x40_c00334{left:290.920803px;}
.x93_c00334{left:294.361500px;}
.x7e_c00334{left:296.760150px;}
.x61_c00334{left:299.230476px;}
.x38_c00334{left:300.998142px;}
.x25_c00334{left:303.087295px;}
.xa1_c00334{left:304.137768px;}
.x6d_c00334{left:309.387993px;}
.xd8_c00334{left:310.524014px;}
.x58_c00334{left:311.724000px;}
.x9b_c00334{left:316.347480px;}
.xcb_c00334{left:320.765874px;}
.xd3_c00334{left:322.173000px;}
.x1c_c00334{left:326.613919px;}
.x5_c00334{left:327.722091px;}
.x7f_c00334{left:329.143668px;}
.x51_c00334{left:332.776500px;}
.xc0_c00334{left:334.823652px;}
.x3_c00334{left:339.453707px;}
.x74_c00334{left:340.764208px;}
.x39_c00334{left:344.850715px;}
.xad_c00334{left:347.259000px;}
.x1_c00334{left:349.188000px;}
.xd4_c00334{left:353.446500px;}
.x12_c00334{left:360.118749px;}
.x6_c00334{left:361.601616px;}
.xcc_c00334{left:364.573023px;}
.x2f_c00334{left:370.092282px;}
.x94_c00334{left:371.602500px;}
.x41_c00334{left:377.886730px;}
.xae_c00334{left:379.957500px;}
.xa8_c00334{left:381.495000px;}
.x7_c00334{left:382.952974px;}
.x62_c00334{left:386.552567px;}
.x3a_c00334{left:388.929667px;}
.xb5_c00334{left:390.294000px;}
.x8d_c00334{left:394.330816px;}
.x75_c00334{left:395.531593px;}
.x30_c00334{left:402.698703px;}
.x80_c00334{left:407.406830px;}
.x59_c00334{left:409.273500px;}
.xbb_c00334{left:411.662460px;}
.x13_c00334{left:415.096731px;}
.x8_c00334{left:416.152075px;}
.x88_c00334{left:417.468662px;}
.x63_c00334{left:419.494092px;}
.xc7_c00334{left:420.869904px;}
.x3b_c00334{left:422.656752px;}
.xb6_c00334{left:423.778500px;}
.x95_c00334{left:426.213000px;}
.x52_c00334{left:432.298500px;}
.x42_c00334{left:433.672938px;}
.xaf_c00334{left:434.821500px;}
.x81_c00334{left:440.051039px;}
.x6e_c00334{left:441.886862px;}
.xc1_c00334{left:444.186636px;}
.x1d_c00334{left:447.942187px;}
.x14_c00334{left:449.116180px;}
.x76_c00334{left:452.495444px;}
.x5a_c00334{left:454.831500px;}
.x3c_c00334{left:456.142473px;}
.x26_c00334{left:457.767404px;}
.x8e_c00334{left:459.581500px;}
.xc8_c00334{left:465.670560px;}
.xbc_c00334{left:467.073828px;}
.x43_c00334{left:468.495273px;}
.x1e_c00334{left:480.635377px;}
.x9_c00334{left:483.368563px;}
.x77_c00334{left:484.565700px;}
.x53_c00334{left:488.481000px;}
.xa9_c00334{left:491.728500px;}
.x64_c00334{left:496.355154px;}
.x27_c00334{left:501.786114px;}
.xd9_c00334{left:508.819020px;}
.xc2_c00334{left:511.154772px;}
.x96_c00334{left:514.227000px;}
.xa_c00334{left:515.996631px;}
.x89_c00334{left:518.062967px;}
.x5b_c00334{left:521.085000px;}
.x4b_c00334{left:522.270000px;}
.xb0_c00334{left:523.690500px;}
.x2_c00334{left:528.089420px;}
.x6f_c00334{left:530.015145px;}
.x65_c00334{left:531.580394px;}
.xc9_c00334{left:533.159424px;}
.x15_c00334{left:537.196110px;}
.x28_c00334{left:548.209048px;}
.x8a_c00334{left:550.315182px;}
.x78_c00334{left:551.461523px;}
.xda_c00334{left:552.576718px;}
.x44_c00334{left:556.521007px;}
.xb7_c00334{left:557.523000px;}
.x8f_c00334{left:561.389590px;}
.xd5_c00334{left:564.832500px;}
.x31_c00334{left:568.505634px;}
.xb_c00334{left:572.099799px;}
.xcd_c00334{left:575.819565px;}
.xc3_c00334{left:578.933124px;}
.x16_c00334{left:580.371046px;}
.x97_c00334{left:583.131000px;}
.x66_c00334{left:586.350569px;}
.x54_c00334{left:588.391500px;}
.x32_c00334{left:591.105735px;}
.x9c_c00334{left:593.075220px;}
.x82_c00334{left:595.877610px;}
.xb8_c00334{left:600.529500px;}
.xdb_c00334{left:608.764475px;}
.xc4_c00334{left:612.147120px;}
.x8b_c00334{left:618.422007px;}
.x67_c00334{left:619.579806px;}
.x70_c00334{left:620.726843px;}
.x45_c00334{left:622.657980px;}
.x1f_c00334{left:625.654453px;}
.x83_c00334{left:628.800540px;}
.x33_c00334{left:634.835331px;}
.xb1_c00334{left:636.663000px;}
.xc_c00334{left:638.031862px;}
.x5c_c00334{left:645.633000px;}
.x29_c00334{left:646.741591px;}
.x20_c00334{left:647.929021px;}
.x46_c00334{left:656.420508px;}
.x17_c00334{left:660.238465px;}
.x79_c00334{left:663.783119px;}
.x55_c00334{left:667.269000px;}
.xbd_c00334{left:669.270996px;}
.xa2_c00334{left:670.713612px;}
.xd_c00334{left:673.119389px;}
.x4c_c00334{left:678.651000px;}
.x90_c00334{left:683.244614px;}
.xce_c00334{left:689.115156px;}
.x21_c00334{left:690.649725px;}
.x18_c00334{left:692.634304px;}
.x7a_c00334{left:696.142538px;}
.x71_c00334{left:697.551941px;}
.x47_c00334{left:701.221875px;}
.x2a_c00334{left:703.404745px;}
.xaa_c00334{left:715.969500px;}
.x68_c00334{left:719.137149px;}
.xcf_c00334{left:722.359378px;}
.xb9_c00334{left:724.234500px;}
.xa3_c00334{left:725.418234px;}
.x84_c00334{left:729.491810px;}
.x34_c00334{left:734.991648px;}
.x2b_c00334{left:737.145722px;}
.x72_c00334{left:741.278171px;}
.xa4_c00334{left:748.763886px;}
.x4d_c00334{left:756.214500px;}
.x3d_c00334{left:757.687893px;}
.xe_c00334{left:762.480099px;}
.xbe_c00334{left:768.520440px;}
.xab_c00334{left:770.767500px;}
.x19_c00334{left:772.255864px;}
.xdc_c00334{left:780.570000px;}
.x22_c00334{left:782.928076px;}
.x85_c00334{left:785.084106px;}
.x7b_c00334{left:786.653925px;}
.x5d_c00334{left:787.987500px;}
.xb2_c00334{left:792.603000px;}
.x98_c00334{left:793.842000px;}
.x48_c00334{left:801.439162px;}
.x56_c00334{left:811.750500px;}
.xa5_c00334{left:815.966814px;}
.x9d_c00334{left:817.149318px;}
.x69_c00334{left:820.163022px;}
.x7c_c00334{left:824.273762px;}
.x35_c00334{left:826.003597px;}
.x91_c00334{left:828.978234px;}
.x49_c00334{left:830.521746px;}
.x2c_c00334{left:836.277822px;}
.x4e_c00334{left:846.331500px;}
.xdd_c00334{left:896.670000px;}
.xdf_c00334{left:898.830000px;}
.xde_c00334{left:900.990000px;}
.xe0_c00334{left:909.900000px;}
@media print{
.v0_c00334{vertical-align:0.000000pt;}
.ls0_c00334{letter-spacing:0.000000pt;}
.ws0_c00334{word-spacing:0.000000pt;}
.fs1b_c00334{font-size:26.666667pt;}
.fs1c_c00334{font-size:37.333333pt;}
.fsf_c00334{font-size:42.669739pt;}
.fse_c00334{font-size:58.648184pt;}
.fsc_c00334{font-size:63.968792pt;}
.fs0_c00334{font-size:63.975227pt;}
.fs19_c00334{font-size:63.984702pt;}
.fs1a_c00334{font-size:64.000000pt;}
.fs16_c00334{font-size:64.008191pt;}
.fsb_c00334{font-size:69.299525pt;}
.fs3_c00334{font-size:69.306496pt;}
.fs15_c00334{font-size:69.342207pt;}
.fs13_c00334{font-size:69.344564pt;}
.fs5_c00334{font-size:74.637765pt;}
.fsd_c00334{font-size:74.645944pt;}
.fs12_c00334{font-size:74.671184pt;}
.fs11_c00334{font-size:74.672042pt;}
.fs8_c00334{font-size:74.691900pt;}
.fs6_c00334{font-size:74.693878pt;}
.fs7_c00334{font-size:74.702535pt;}
.fsa_c00334{font-size:79.960990pt;}
.fs1_c00334{font-size:79.969034pt;}
.fs17_c00334{font-size:80.036672pt;}
.fs2_c00334{font-size:85.300303pt;}
.fs10_c00334{font-size:85.339477pt;}
.fs14_c00334{font-size:85.344255pt;}
.fs4_c00334{font-size:90.631572pt;}
.fs9_c00334{font-size:90.697307pt;}
.fs18_c00334{font-size:106.682079pt;}
.y0_c00334{bottom:0.000000pt;}
.y13b_c00334{bottom:33.947116pt;}
.y13a_c00334{bottom:35.896908pt;}
.y139_c00334{bottom:37.415360pt;}
.y138_c00334{bottom:39.713396pt;}
.y137_c00334{bottom:44.296468pt;}
.y136_c00334{bottom:46.605528pt;}
.y135_c00334{bottom:48.749384pt;}
.y134_c00334{bottom:50.640000pt;}
.y133_c00334{bottom:54.427011pt;}
.y132_c00334{bottom:55.798865pt;}
.y131_c00334{bottom:56.297736pt;}
.y130_c00334{bottom:58.139425pt;}
.y12f_c00334{bottom:58.993143pt;}
.y12e_c00334{bottom:59.465720pt;}
.y12d_c00334{bottom:59.983948pt;}
.y12c_c00334{bottom:61.269171pt;}
.y12b_c00334{bottom:61.748888pt;}
.y12a_c00334{bottom:62.404000pt;}
.y129_c00334{bottom:81.601205pt;}
.y128_c00334{bottom:84.779501pt;}
.y127_c00334{bottom:86.376821pt;}
.y126_c00334{bottom:89.674349pt;}
.y125_c00334{bottom:91.820453pt;}
.y124_c00334{bottom:97.659653pt;}
.y123_c00334{bottom:101.970437pt;}
.y122_c00334{bottom:104.075285pt;}
.y121_c00334{bottom:106.691477pt;}
.y120_c00334{bottom:108.257333pt;}
.y11f_c00334{bottom:124.486293pt;}
.y11e_c00334{bottom:127.065216pt;}
.y11d_c00334{bottom:128.777323pt;}
.y11c_c00334{bottom:132.938315pt;}
.y11b_c00334{bottom:134.616267pt;}
.y11a_c00334{bottom:136.676939pt;}
.y119_c00334{bottom:139.910027pt;}
.y13c_c00334{bottom:145.680000pt;}
.y110_c00334{bottom:156.075819pt;}
.y111_c00334{bottom:156.076000pt;}
.y10f_c00334{bottom:156.076235pt;}
.y112_c00334{bottom:156.076437pt;}
.y116_c00334{bottom:156.076587pt;}
.y118_c00334{bottom:156.076619pt;}
.y115_c00334{bottom:156.076779pt;}
.y117_c00334{bottom:156.076875pt;}
.y113_c00334{bottom:156.077099pt;}
.y114_c00334{bottom:156.077355pt;}
.y10e_c00334{bottom:189.101664pt;}
.y10d_c00334{bottom:191.572149pt;}
.y10c_c00334{bottom:194.375232pt;}
.y10b_c00334{bottom:196.605728pt;}
.y10a_c00334{bottom:197.984619pt;}
.y109_c00334{bottom:198.789792pt;}
.y108_c00334{bottom:201.525675pt;}
.y107_c00334{bottom:203.130688pt;}
.y106_c00334{bottom:203.654144pt;}
.y105_c00334{bottom:204.958069pt;}
.y104_c00334{bottom:210.366304pt;}
.y103_c00334{bottom:211.657120pt;}
.y102_c00334{bottom:213.063605pt;}
.y101_c00334{bottom:213.416480pt;}
.y100_c00334{bottom:214.028128pt;}
.yff_c00334{bottom:215.128373pt;}
.yfe_c00334{bottom:215.930272pt;}
.yfd_c00334{bottom:216.406496pt;}
.yfc_c00334{bottom:217.509728pt;}
.yfb_c00334{bottom:217.966496pt;}
.yfa_c00334{bottom:219.347851pt;}
.yf9_c00334{bottom:220.084000pt;}
.yf8_c00334{bottom:240.919792pt;}
.yf7_c00334{bottom:241.448080pt;}
.yf6_c00334{bottom:242.339416pt;}
.yf5_c00334{bottom:242.875240pt;}
.yf4_c00334{bottom:243.943120pt;}
.yf3_c00334{bottom:245.750680pt;}
.yf2_c00334{bottom:247.172584pt;}
.yf1_c00334{bottom:248.050408pt;}
.yf0_c00334{bottom:248.573584pt;}
.yef_c00334{bottom:249.964480pt;}
.yee_c00334{bottom:250.499752pt;}
.yed_c00334{bottom:251.501608pt;}
.yec_c00334{bottom:252.004000pt;}
.yeb_c00334{bottom:276.892909pt;}
.yea_c00334{bottom:277.440284pt;}
.ye9_c00334{bottom:277.976087pt;}
.ye8_c00334{bottom:278.423039pt;}
.ye7_c00334{bottom:278.858492pt;}
.ye6_c00334{bottom:279.614500pt;}
.ye5_c00334{bottom:280.168665pt;}
.ye4_c00334{bottom:280.490731pt;}
.ye3_c00334{bottom:281.246504pt;}
.ye2_c00334{bottom:281.571356pt;}
.ye1_c00334{bottom:282.638400pt;}
.ye0_c00334{bottom:283.682667pt;}
.ydf_c00334{bottom:305.965392pt;}
.yde_c00334{bottom:308.354464pt;}
.ydd_c00334{bottom:309.184901pt;}
.ydc_c00334{bottom:311.129947pt;}
.ydb_c00334{bottom:312.326160pt;}
.yda_c00334{bottom:316.702155pt;}
.yd9_c00334{bottom:317.873675pt;}
.yd8_c00334{bottom:321.851115pt;}
.yd7_c00334{bottom:324.164069pt;}
.yd6_c00334{bottom:325.307301pt;}
.yd5_c00334{bottom:328.376261pt;}
.yd4_c00334{bottom:330.231712pt;}
.yd3_c00334{bottom:337.994725pt;}
.yd2_c00334{bottom:341.550747pt;}
.yd1_c00334{bottom:343.970699pt;}
.yd0_c00334{bottom:345.461941pt;}
.ycf_c00334{bottom:347.800000pt;}
.yce_c00334{bottom:351.349765pt;}
.ycd_c00334{bottom:353.671995pt;}
.ycc_c00334{bottom:354.272123pt;}
.ycb_c00334{bottom:356.163253pt;}
.yca_c00334{bottom:381.781605pt;}
.yc9_c00334{bottom:382.834277pt;}
.yc8_c00334{bottom:383.440805pt;}
.yc7_c00334{bottom:384.029189pt;}
.yc6_c00334{bottom:384.764165pt;}
.yc5_c00334{bottom:385.458709pt;}
.yc4_c00334{bottom:385.702981pt;}
.yc3_c00334{bottom:386.285493pt;}
.yc2_c00334{bottom:386.518341pt;}
.yc1_c00334{bottom:387.109397pt;}
.yc0_c00334{bottom:387.446053pt;}
.ybf_c00334{bottom:388.353157pt;}
.ybe_c00334{bottom:388.801333pt;}
.ybd_c00334{bottom:401.357029pt;}
.ybc_c00334{bottom:404.652200pt;}
.ybb_c00334{bottom:406.154844pt;}
.yba_c00334{bottom:407.976971pt;}
.yb9_c00334{bottom:410.166532pt;}
.yb8_c00334{bottom:413.518239pt;}
.yb7_c00334{bottom:415.666409pt;}
.yb6_c00334{bottom:416.733884pt;}
.yb5_c00334{bottom:419.672473pt;}
.yb4_c00334{bottom:420.737333pt;}
.yb3_c00334{bottom:440.659792pt;}
.yb2_c00334{bottom:442.962592pt;}
.yb1_c00334{bottom:444.053091pt;}
.yb0_c00334{bottom:446.371344pt;}
.yaf_c00334{bottom:447.454344pt;}
.yae_c00334{bottom:452.333848pt;}
.yad_c00334{bottom:453.075608pt;}
.yac_c00334{bottom:455.537248pt;}
.yab_c00334{bottom:456.957333pt;}
.yaa_c00334{bottom:469.859609pt;}
.ya9_c00334{bottom:471.222004pt;}
.ya8_c00334{bottom:472.903548pt;}
.ya7_c00334{bottom:475.949193pt;}
.ya6_c00334{bottom:476.945273pt;}
.ya5_c00334{bottom:480.334824pt;}
.ya4_c00334{bottom:481.658117pt;}
.ya3_c00334{bottom:482.646261pt;}
.ya2_c00334{bottom:485.013312pt;}
.ya1_c00334{bottom:485.992700pt;}
.ya0_c00334{bottom:487.957075pt;}
.y9f_c00334{bottom:488.956397pt;}
.y9e_c00334{bottom:489.847940pt;}
.y9d_c00334{bottom:490.840351pt;}
.y9c_c00334{bottom:498.977549pt;}
.y9b_c00334{bottom:500.215367pt;}
.y9a_c00334{bottom:503.195167pt;}
.y99_c00334{bottom:504.260537pt;}
.y98_c00334{bottom:507.957340pt;}
.y97_c00334{bottom:510.159400pt;}
.y96_c00334{bottom:511.215204pt;}
.y95_c00334{bottom:512.321145pt;}
.y94_c00334{bottom:513.090471pt;}
.y93_c00334{bottom:514.893864pt;}
.y92_c00334{bottom:518.136008pt;}
.y91_c00334{bottom:520.546221pt;}
.y90_c00334{bottom:521.549627pt;}
.y8f_c00334{bottom:530.885472pt;}
.y8e_c00334{bottom:533.152139pt;}
.y8d_c00334{bottom:534.397152pt;}
.y8c_c00334{bottom:536.584587pt;}
.y8b_c00334{bottom:537.572021pt;}
.y8a_c00334{bottom:539.167413pt;}
.y89_c00334{bottom:541.676683pt;}
.y88_c00334{bottom:542.629728pt;}
.y87_c00334{bottom:545.449312pt;}
.y86_c00334{bottom:547.651381pt;}
.y85_c00334{bottom:549.451573pt;}
.y84_c00334{bottom:550.338784pt;}
.y83_c00334{bottom:562.522848pt;}
.y82_c00334{bottom:565.399349pt;}
.y81_c00334{bottom:568.234037pt;}
.y80_c00334{bottom:569.180171pt;}
.y7f_c00334{bottom:570.739637pt;}
.y7e_c00334{bottom:571.742603pt;}
.y7d_c00334{bottom:573.931061pt;}
.y7c_c00334{bottom:574.869003pt;}
.y7b_c00334{bottom:576.416309pt;}
.y7a_c00334{bottom:577.355317pt;}
.y79_c00334{bottom:578.892000pt;}
.y78_c00334{bottom:604.349085pt;}
.y77_c00334{bottom:605.513168pt;}
.y76_c00334{bottom:628.221605pt;}
.y75_c00334{bottom:628.976888pt;}
.y74_c00334{bottom:631.511576pt;}
.y73_c00334{bottom:633.590744pt;}
.y72_c00334{bottom:634.390019pt;}
.y71_c00334{bottom:635.921211pt;}
.y70_c00334{bottom:636.974107pt;}
.y6f_c00334{bottom:639.228584pt;}
.y6e_c00334{bottom:640.256208pt;}
.y6d_c00334{bottom:642.480629pt;}
.y6c_c00334{bottom:643.202667pt;}
.y6b_c00334{bottom:659.223964pt;}
.y6a_c00334{bottom:662.266387pt;}
.y69_c00334{bottom:663.205232pt;}
.y68_c00334{bottom:665.378745pt;}
.y67_c00334{bottom:667.211093pt;}
.y66_c00334{bottom:668.131835pt;}
.y65_c00334{bottom:669.679975pt;}
.y64_c00334{bottom:672.422359pt;}
.y63_c00334{bottom:673.300072pt;}
.y62_c00334{bottom:675.136181pt;}
.y61_c00334{bottom:676.294176pt;}
.y60_c00334{bottom:677.762667pt;}
.y5f_c00334{bottom:693.237123pt;}
.y5e_c00334{bottom:695.399931pt;}
.y5d_c00334{bottom:697.261455pt;}
.y5c_c00334{bottom:698.303115pt;}
.y5b_c00334{bottom:701.014599pt;}
.y5a_c00334{bottom:702.586575pt;}
.y59_c00334{bottom:704.205999pt;}
.y58_c00334{bottom:706.325067pt;}
.y57_c00334{bottom:707.113251pt;}
.y56_c00334{bottom:708.155631pt;}
.y55_c00334{bottom:710.162667pt;}
.y54_c00334{bottom:723.717397pt;}
.y53_c00334{bottom:724.364369pt;}
.y52_c00334{bottom:725.856039pt;}
.y51_c00334{bottom:726.594493pt;}
.y50_c00334{bottom:727.590952pt;}
.y4f_c00334{bottom:728.342325pt;}
.y4e_c00334{bottom:729.813847pt;}
.y4d_c00334{bottom:731.772323pt;}
.y4c_c00334{bottom:732.547365pt;}
.y4b_c00334{bottom:733.788561pt;}
.y4a_c00334{bottom:735.723368pt;}
.y49_c00334{bottom:737.196383pt;}
.y48_c00334{bottom:739.064521pt;}
.y47_c00334{bottom:757.903493pt;}
.y46_c00334{bottom:758.975832pt;}
.y45_c00334{bottom:760.325801pt;}
.y44_c00334{bottom:761.626908pt;}
.y43_c00334{bottom:763.810843pt;}
.y42_c00334{bottom:764.466909pt;}
.y41_c00334{bottom:765.127825pt;}
.y40_c00334{bottom:765.991095pt;}
.y3f_c00334{bottom:766.849981pt;}
.y3e_c00334{bottom:768.575612pt;}
.y3d_c00334{bottom:770.014240pt;}
.y3c_c00334{bottom:788.032617pt;}
.y3b_c00334{bottom:789.977400pt;}
.y3a_c00334{bottom:790.669949pt;}
.y39_c00334{bottom:792.117605pt;}
.y38_c00334{bottom:793.051347pt;}
.y37_c00334{bottom:793.533781pt;}
.y36_c00334{bottom:795.887339pt;}
.y35_c00334{bottom:797.075683pt;}
.y34_c00334{bottom:797.772381pt;}
.y33_c00334{bottom:800.845581pt;}
.y32_c00334{bottom:801.949587pt;}
.y31_c00334{bottom:802.640363pt;}
.y30_c00334{bottom:817.759451pt;}
.y2f_c00334{bottom:820.229175pt;}
.y2e_c00334{bottom:821.070564pt;}
.y2d_c00334{bottom:822.483103pt;}
.y2c_c00334{bottom:824.938156pt;}
.y2b_c00334{bottom:826.094472pt;}
.y2a_c00334{bottom:827.191919pt;}
.y29_c00334{bottom:828.250203pt;}
.y28_c00334{bottom:831.046121pt;}
.y27_c00334{bottom:832.127264pt;}
.y26_c00334{bottom:833.477035pt;}
.y25_c00334{bottom:835.028448pt;}
.y24_c00334{bottom:849.907777pt;}
.y23_c00334{bottom:852.534811pt;}
.y22_c00334{bottom:853.751871pt;}
.y21_c00334{bottom:854.385537pt;}
.y20_c00334{bottom:858.515004pt;}
.y1f_c00334{bottom:859.446457pt;}
.y1e_c00334{bottom:861.942471pt;}
.y1d_c00334{bottom:862.902153pt;}
.y1c_c00334{bottom:864.098332pt;}
.y1b_c00334{bottom:866.595512pt;}
.y1a_c00334{bottom:868.136229pt;}
.y19_c00334{bottom:882.218033pt;}
.y18_c00334{bottom:883.777420pt;}
.y17_c00334{bottom:884.411548pt;}
.y16_c00334{bottom:885.975924pt;}
.y15_c00334{bottom:886.821709pt;}
.y14_c00334{bottom:888.547153pt;}
.y13_c00334{bottom:889.213173pt;}
.y12_c00334{bottom:890.290501pt;}
.y11_c00334{bottom:892.226669pt;}
.y10_c00334{bottom:893.927612pt;}
.yf_c00334{bottom:894.528380pt;}
.ye_c00334{bottom:914.471032pt;}
.yd_c00334{bottom:916.856503pt;}
.yc_c00334{bottom:917.793172pt;}
.yb_c00334{bottom:919.553045pt;}
.ya_c00334{bottom:921.050835pt;}
.y9_c00334{bottom:921.921580pt;}
.y8_c00334{bottom:923.716119pt;}
.y7_c00334{bottom:924.601980pt;}
.y6_c00334{bottom:925.172221pt;}
.y5_c00334{bottom:926.076605pt;}
.y4_c00334{bottom:928.116339pt;}
.y13d_c00334{bottom:948.240000pt;}
.y3_c00334{bottom:975.611876pt;}
.y2_c00334{bottom:984.203273pt;}
.y1_c00334{bottom:989.774667pt;}
.h1d_c00334{height:26.666667pt;}
.h1e_c00334{height:37.333333pt;}
.h11_c00334{height:42.669739pt;}
.h10_c00334{height:58.648184pt;}
.he_c00334{height:63.968792pt;}
.h2_c00334{height:63.975227pt;}
.h1b_c00334{height:63.984702pt;}
.h1c_c00334{height:64.000000pt;}
.h18_c00334{height:64.008191pt;}
.hd_c00334{height:69.299525pt;}
.h5_c00334{height:69.306496pt;}
.h17_c00334{height:69.342207pt;}
.h15_c00334{height:69.344564pt;}
.h7_c00334{height:74.637765pt;}
.hf_c00334{height:74.645944pt;}
.h14_c00334{height:74.671184pt;}
.h13_c00334{height:74.672042pt;}
.ha_c00334{height:74.691900pt;}
.h8_c00334{height:74.693878pt;}
.h9_c00334{height:74.702535pt;}
.hc_c00334{height:79.960990pt;}
.h3_c00334{height:79.969034pt;}
.h19_c00334{height:80.036672pt;}
.h4_c00334{height:85.300303pt;}
.h12_c00334{height:85.339477pt;}
.h16_c00334{height:85.344255pt;}
.h6_c00334{height:90.631572pt;}
.hb_c00334{height:90.697307pt;}
.h1a_c00334{height:106.682079pt;}
.h1_c00334{height:1108.666667pt;}
.h0_c00334{height:1108.800000pt;}
.w0_c00334{width:813.333333pt;}
.x0_c00334{left:0.000000pt;}
.xd0_c00334{left:113.536000pt;}
.xc5_c00334{left:115.174389pt;}
.xa6_c00334{left:117.637333pt;}
.x9e_c00334{left:118.647643pt;}
.x5e_c00334{left:120.955851pt;}
.x6a_c00334{left:122.368345pt;}
.x36_c00334{left:123.982933pt;}
.x3e_c00334{left:125.164455pt;}
.x2d_c00334{left:126.416949pt;}
.xf_c00334{left:127.809169pt;}
.xac_c00334{left:146.006667pt;}
.x6b_c00334{left:150.065953pt;}
.x57_c00334{left:152.009333pt;}
.x10_c00334{left:155.082295pt;}
.x86_c00334{left:158.587963pt;}
.xd6_c00334{left:161.958189pt;}
.xb3_c00334{left:163.093333pt;}
.x9f_c00334{left:165.030725pt;}
.x5f_c00334{left:169.474381pt;}
.x4f_c00334{left:170.904000pt;}
.x1a_c00334{left:175.045445pt;}
.x7d_c00334{left:176.716885pt;}
.xd1_c00334{left:180.290667pt;}
.x23_c00334{left:182.705800pt;}
.x99_c00334{left:183.800133pt;}
.x37_c00334{left:189.255305pt;}
.xc6_c00334{left:190.376587pt;}
.x3f_c00334{left:199.765225pt;}
.x2e_c00334{left:201.093640pt;}
.x9a_c00334{left:203.806480pt;}
.x6c_c00334{left:206.265697pt;}
.x50_c00334{left:208.258667pt;}
.xbf_c00334{left:210.250645pt;}
.xa7_c00334{left:212.570667pt;}
.x8c_c00334{left:213.601333pt;}
.x73_c00334{left:215.339177pt;}
.xd7_c00334{left:216.873885pt;}
.x60_c00334{left:218.009333pt;}
.x4_c00334{left:223.381941pt;}
.x24_c00334{left:230.862747pt;}
.x11_c00334{left:232.257504pt;}
.x92_c00334{left:233.600000pt;}
.xca_c00334{left:236.725669pt;}
.x4a_c00334{left:238.364000pt;}
.xba_c00334{left:239.463797pt;}
.xa0_c00334{left:241.751616pt;}
.x87_c00334{left:242.803663pt;}
.xb4_c00334{left:249.428000pt;}
.x1b_c00334{left:252.983604pt;}
.xd2_c00334{left:255.892000pt;}
.x40_c00334{left:258.596269pt;}
.x93_c00334{left:261.654667pt;}
.x7e_c00334{left:263.786800pt;}
.x61_c00334{left:265.982645pt;}
.x38_c00334{left:267.553904pt;}
.x25_c00334{left:269.410929pt;}
.xa1_c00334{left:270.344683pt;}
.x6d_c00334{left:275.011549pt;}
.xd8_c00334{left:276.021345pt;}
.x58_c00334{left:277.088000pt;}
.x9b_c00334{left:281.197760pt;}
.xcb_c00334{left:285.125221pt;}
.xd3_c00334{left:286.376000pt;}
.x1c_c00334{left:290.323484pt;}
.x5_c00334{left:291.308525pt;}
.x7f_c00334{left:292.572149pt;}
.x51_c00334{left:295.801333pt;}
.xc0_c00334{left:297.621024pt;}
.x3_c00334{left:301.736628pt;}
.x74_c00334{left:302.901519pt;}
.x39_c00334{left:306.533969pt;}
.xad_c00334{left:308.674667pt;}
.x1_c00334{left:310.389333pt;}
.xd4_c00334{left:314.174667pt;}
.x12_c00334{left:320.105555pt;}
.x6_c00334{left:321.423659pt;}
.xcc_c00334{left:324.064909pt;}
.x2f_c00334{left:328.970917pt;}
.x94_c00334{left:330.313333pt;}
.x41_c00334{left:335.899316pt;}
.xae_c00334{left:337.740000pt;}
.xa8_c00334{left:339.106667pt;}
.x7_c00334{left:340.402644pt;}
.x62_c00334{left:343.602281pt;}
.x3a_c00334{left:345.715260pt;}
.xb5_c00334{left:346.928000pt;}
.x8d_c00334{left:350.516281pt;}
.x75_c00334{left:351.583639pt;}
.x30_c00334{left:357.954403pt;}
.x80_c00334{left:362.139404pt;}
.x59_c00334{left:363.798667pt;}
.xbb_c00334{left:365.922187pt;}
.x13_c00334{left:368.974872pt;}
.x8_c00334{left:369.912956pt;}
.x88_c00334{left:371.083255pt;}
.x63_c00334{left:372.883637pt;}
.xc7_c00334{left:374.106581pt;}
.x3b_c00334{left:375.694891pt;}
.xb6_c00334{left:376.692000pt;}
.x95_c00334{left:378.856000pt;}
.x52_c00334{left:384.265333pt;}
.x42_c00334{left:385.487056pt;}
.xaf_c00334{left:386.508000pt;}
.x81_c00334{left:391.156479pt;}
.x6e_c00334{left:392.788321pt;}
.xc1_c00334{left:394.832565pt;}
.x1d_c00334{left:398.170833pt;}
.x14_c00334{left:399.214383pt;}
.x76_c00334{left:402.218172pt;}
.x5a_c00334{left:404.294667pt;}
.x3c_c00334{left:405.459976pt;}
.x26_c00334{left:406.904359pt;}
.x8e_c00334{left:408.516889pt;}
.xc8_c00334{left:413.929387pt;}
.xbc_c00334{left:415.176736pt;}
.x43_c00334{left:416.440243pt;}
.x1e_c00334{left:427.231447pt;}
.x9_c00334{left:429.660945pt;}
.x77_c00334{left:430.725067pt;}
.x53_c00334{left:434.205333pt;}
.xa9_c00334{left:437.092000pt;}
.x64_c00334{left:441.204581pt;}
.x27_c00334{left:446.032101pt;}
.xd9_c00334{left:452.283573pt;}
.xc2_c00334{left:454.359797pt;}
.x96_c00334{left:457.090667pt;}
.xa_c00334{left:458.663672pt;}
.x89_c00334{left:460.500415pt;}
.x5b_c00334{left:463.186667pt;}
.x4b_c00334{left:464.240000pt;}
.xb0_c00334{left:465.502667pt;}
.x2_c00334{left:469.412817pt;}
.x6f_c00334{left:471.124573pt;}
.x65_c00334{left:472.515905pt;}
.xc9_c00334{left:473.919488pt;}
.x15_c00334{left:477.507653pt;}
.x28_c00334{left:487.296932pt;}
.x8a_c00334{left:489.169051pt;}
.x78_c00334{left:490.188020pt;}
.xda_c00334{left:491.179305pt;}
.x44_c00334{left:494.685340pt;}
.xb7_c00334{left:495.576000pt;}
.x8f_c00334{left:499.012969pt;}
.xd5_c00334{left:502.073333pt;}
.x31_c00334{left:505.338341pt;}
.xb_c00334{left:508.533155pt;}
.xcd_c00334{left:511.839613pt;}
.xc3_c00334{left:514.607221pt;}
.x16_c00334{left:515.885375pt;}
.x97_c00334{left:518.338667pt;}
.x66_c00334{left:521.200505pt;}
.x54_c00334{left:523.014667pt;}
.x32_c00334{left:525.427320pt;}
.x9c_c00334{left:527.177973pt;}
.x82_c00334{left:529.668987pt;}
.xb8_c00334{left:533.804000pt;}
.xdb_c00334{left:541.123977pt;}
.xc4_c00334{left:544.130773pt;}
.x8b_c00334{left:549.708451pt;}
.x67_c00334{left:550.737605pt;}
.x70_c00334{left:551.757193pt;}
.x45_c00334{left:553.473760pt;}
.x1f_c00334{left:556.137292pt;}
.x83_c00334{left:558.933813pt;}
.x33_c00334{left:564.298072pt;}
.xb1_c00334{left:565.922667pt;}
.xc_c00334{left:567.139433pt;}
.x5c_c00334{left:573.896000pt;}
.x29_c00334{left:574.881415pt;}
.x20_c00334{left:575.936908pt;}
.x46_c00334{left:583.484896pt;}
.x17_c00334{left:586.878636pt;}
.x79_c00334{left:590.029439pt;}
.x55_c00334{left:593.128000pt;}
.xbd_c00334{left:594.907552pt;}
.xa2_c00334{left:596.189877pt;}
.xd_c00334{left:598.328345pt;}
.x4c_c00334{left:603.245333pt;}
.x90_c00334{left:607.328545pt;}
.xce_c00334{left:612.546805pt;}
.x21_c00334{left:613.910867pt;}
.x18_c00334{left:615.674937pt;}
.x7a_c00334{left:618.793367pt;}
.x71_c00334{left:620.046169pt;}
.x47_c00334{left:623.308333pt;}
.x2a_c00334{left:625.248663pt;}
.xaa_c00334{left:636.417333pt;}
.x68_c00334{left:639.233021pt;}
.xcf_c00334{left:642.097225pt;}
.xb9_c00334{left:643.764000pt;}
.xa3_c00334{left:644.816208pt;}
.x84_c00334{left:648.437164pt;}
.x34_c00334{left:653.325909pt;}
.x2b_c00334{left:655.240641pt;}
.x72_c00334{left:658.913929pt;}
.xa4_c00334{left:665.567899pt;}
.x4d_c00334{left:672.190667pt;}
.x3d_c00334{left:673.500349pt;}
.xe_c00334{left:677.760088pt;}
.xbe_c00334{left:683.129280pt;}
.xab_c00334{left:685.126667pt;}
.x19_c00334{left:686.449657pt;}
.xdc_c00334{left:693.840000pt;}
.x22_c00334{left:695.936068pt;}
.x85_c00334{left:697.852539pt;}
.x7b_c00334{left:699.247933pt;}
.x5d_c00334{left:700.433333pt;}
.xb2_c00334{left:704.536000pt;}
.x98_c00334{left:705.637333pt;}
.x48_c00334{left:712.390367pt;}
.x56_c00334{left:721.556000pt;}
.xa5_c00334{left:725.303835pt;}
.x9d_c00334{left:726.354949pt;}
.x69_c00334{left:729.033797pt;}
.x7c_c00334{left:732.687788pt;}
.x35_c00334{left:734.225420pt;}
.x91_c00334{left:736.869541pt;}
.x49_c00334{left:738.241552pt;}
.x2c_c00334{left:743.358064pt;}
.x4e_c00334{left:752.294667pt;}
.xdd_c00334{left:797.040000pt;}
.xdf_c00334{left:798.960000pt;}
.xde_c00334{left:800.880000pt;}
.xe0_c00334{left:808.800000pt;}
}





/* 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_c00335 {
    display:none;
  }
  .loading-indicator_c00335.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00335 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_c00335 { 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_c00335" -> "#page-container .classname_c00335")
 */
.pf_c00335 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00335 { /* 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_c00335.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00335 { /* 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_c00335 { /* 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_c00335 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00335 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00335 {overflow:visible;}
  }
}
.c_c00335 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00335 { /* 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_c00335:after { /* webkit #35443 */
  content: '';
}
.t_c00335:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00335 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 */
}
.__c00335 { /* 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_c00335 { /* info for Javascript */
  display:none;
}
.l_c00335 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00335 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00335 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00335: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_c00335 {
    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_c00335.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00335.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_c00335 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00335{font-family:sans-serif;visibility:hidden;}
.sc__c00335{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00335{-webkit-text-stroke:0px transparent;}
}
.y0_c00335{bottom:0.000000px;}
.h1_c00335{height:1247.250000px;}
.h0_c00335{height:1247.400000px;}
.w0_c00335{width:915.000000px;}
.x0_c00335{left:0.000000px;}
@media print{
.y0_c00335{bottom:0.000000pt;}
.h1_c00335{height:1108.666667pt;}
.h0_c00335{height:1108.800000pt;}
.w0_c00335{width:813.333333pt;}
.x0_c00335{left:0.000000pt;}
}





/* 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_c00336 {
    display:none;
  }
  .loading-indicator_c00336.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00336 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_c00336 { 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_c00336" -> "#page-container .classname_c00336")
 */
.pf_c00336 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00336 { /* 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_c00336.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00336 { /* 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_c00336 { /* 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_c00336 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00336 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00336 {overflow:visible;}
  }
}
.c_c00336 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00336 { /* 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_c00336:after { /* webkit #35443 */
  content: '';
}
.t_c00336:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00336 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 */
}
.__c00336 { /* 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_c00336 { /* info for Javascript */
  display:none;
}
.l_c00336 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00336 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00336 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00336: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_c00336 {
    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_c00336.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00336.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_c00336 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00336{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00336;src:url('chunks/assets/font_cfe63ee56e9e10a97d33a3db.woff2')format("woff");}.ff1_c00336{font-family:ff1_c00336;line-height:1.000000;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;}
.m62_c00336{transform:matrix(0.015479,0.000201,-0.003250,0.249979,0,0);-ms-transform:matrix(0.015479,0.000201,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.015479,0.000201,-0.003250,0.249979,0,0);}
.m82_c00336{transform:matrix(0.113064,0.001922,-0.004249,0.249964,0,0);-ms-transform:matrix(0.113064,0.001922,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.113064,0.001922,-0.004249,0.249964,0,0);}
.mae_c00336{transform:matrix(0.127197,0.002162,-0.004249,0.249964,0,0);-ms-transform:matrix(0.127197,0.002162,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.127197,0.002162,-0.004249,0.249964,0,0);}
.m1d_c00336{transform:matrix(0.129964,0.001690,-0.003250,0.249979,0,0);-ms-transform:matrix(0.129964,0.001690,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.129964,0.001690,-0.003250,0.249979,0,0);}
.m6d_c00336{transform:matrix(0.130956,0.002226,-0.004249,0.249964,0,0);-ms-transform:matrix(0.130956,0.002226,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.130956,0.002226,-0.004249,0.249964,0,0);}
.mb8_c00336{transform:matrix(0.131536,0.002236,-0.004249,0.249964,0,0);-ms-transform:matrix(0.131536,0.002236,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.131536,0.002236,-0.004249,0.249964,0,0);}
.mb4_c00336{transform:matrix(0.132006,0.002244,-0.004249,0.249964,0,0);-ms-transform:matrix(0.132006,0.002244,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.132006,0.002244,-0.004249,0.249964,0,0);}
.maf_c00336{transform:matrix(0.134701,0.002290,-0.004249,0.249964,0,0);-ms-transform:matrix(0.134701,0.002290,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.134701,0.002290,-0.004249,0.249964,0,0);}
.mcd_c00336{transform:matrix(0.135645,0.002306,-0.004249,0.249964,0,0);-ms-transform:matrix(0.135645,0.002306,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.135645,0.002306,-0.004249,0.249964,0,0);}
.mb1_c00336{transform:matrix(0.138575,0.002356,-0.004249,0.249964,0,0);-ms-transform:matrix(0.138575,0.002356,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.138575,0.002356,-0.004249,0.249964,0,0);}
.mb5_c00336{transform:matrix(0.140240,0.002384,-0.004249,0.249964,0,0);-ms-transform:matrix(0.140240,0.002384,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.140240,0.002384,-0.004249,0.249964,0,0);}
.mca_c00336{transform:matrix(0.142764,0.002427,-0.004249,0.249964,0,0);-ms-transform:matrix(0.142764,0.002427,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.142764,0.002427,-0.004249,0.249964,0,0);}
.mb3_c00336{transform:matrix(0.144464,0.002456,-0.004249,0.249964,0,0);-ms-transform:matrix(0.144464,0.002456,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.144464,0.002456,-0.004249,0.249964,0,0);}
.mb2_c00336{transform:matrix(0.146894,0.002497,-0.004249,0.249964,0,0);-ms-transform:matrix(0.146894,0.002497,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.146894,0.002497,-0.004249,0.249964,0,0);}
.md8_c00336{transform:matrix(0.147074,0.002500,-0.004249,0.249964,0,0);-ms-transform:matrix(0.147074,0.002500,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.147074,0.002500,-0.004249,0.249964,0,0);}
.mc6_c00336{transform:matrix(0.148903,0.002531,-0.004249,0.249964,0,0);-ms-transform:matrix(0.148903,0.002531,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.148903,0.002531,-0.004249,0.249964,0,0);}
.mfa_c00336{transform:matrix(0.149930,0.003448,-0.005748,0.249934,0,0);-ms-transform:matrix(0.149930,0.003448,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.149930,0.003448,-0.005748,0.249934,0,0);}
.mb0_c00336{transform:matrix(0.150758,0.002563,-0.004249,0.249964,0,0);-ms-transform:matrix(0.150758,0.002563,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.150758,0.002563,-0.004249,0.249964,0,0);}
.mb7_c00336{transform:matrix(0.153893,0.002616,-0.004249,0.249964,0,0);-ms-transform:matrix(0.153893,0.002616,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.153893,0.002616,-0.004249,0.249964,0,0);}
.mcf_c00336{transform:matrix(0.156412,0.002659,-0.004249,0.249964,0,0);-ms-transform:matrix(0.156412,0.002659,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.156412,0.002659,-0.004249,0.249964,0,0);}
.m6e_c00336{transform:matrix(0.157127,0.002671,-0.004249,0.249964,0,0);-ms-transform:matrix(0.157127,0.002671,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.157127,0.002671,-0.004249,0.249964,0,0);}
.md1_c00336{transform:matrix(0.158072,0.002687,-0.004249,0.249964,0,0);-ms-transform:matrix(0.158072,0.002687,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.158072,0.002687,-0.004249,0.249964,0,0);}
.m79_c00336{transform:matrix(0.158142,0.002688,-0.004249,0.249964,0,0);-ms-transform:matrix(0.158142,0.002688,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.158142,0.002688,-0.004249,0.249964,0,0);}
.mb6_c00336{transform:matrix(0.158517,0.002695,-0.004249,0.249964,0,0);-ms-transform:matrix(0.158517,0.002695,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.158517,0.002695,-0.004249,0.249964,0,0);}
.mc8_c00336{transform:matrix(0.158967,0.002702,-0.004249,0.249964,0,0);-ms-transform:matrix(0.158967,0.002702,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.158967,0.002702,-0.004249,0.249964,0,0);}
.m71_c00336{transform:matrix(0.159047,0.002704,-0.004249,0.249964,0,0);-ms-transform:matrix(0.159047,0.002704,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.159047,0.002704,-0.004249,0.249964,0,0);}
.mcc_c00336{transform:matrix(0.159362,0.002709,-0.004249,0.249964,0,0);-ms-transform:matrix(0.159362,0.002709,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.159362,0.002709,-0.004249,0.249964,0,0);}
.m76_c00336{transform:matrix(0.160032,0.002721,-0.004249,0.249964,0,0);-ms-transform:matrix(0.160032,0.002721,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.160032,0.002721,-0.004249,0.249964,0,0);}
.mcb_c00336{transform:matrix(0.161682,0.002749,-0.004249,0.249964,0,0);-ms-transform:matrix(0.161682,0.002749,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.161682,0.002749,-0.004249,0.249964,0,0);}
.m78_c00336{transform:matrix(0.161957,0.002753,-0.004249,0.249964,0,0);-ms-transform:matrix(0.161957,0.002753,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.161957,0.002753,-0.004249,0.249964,0,0);}
.mce_c00336{transform:matrix(0.162457,0.002762,-0.004249,0.249964,0,0);-ms-transform:matrix(0.162457,0.002762,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.162457,0.002762,-0.004249,0.249964,0,0);}
.mb9_c00336{transform:matrix(0.163236,0.002775,-0.004249,0.249964,0,0);-ms-transform:matrix(0.163236,0.002775,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.163236,0.002775,-0.004249,0.249964,0,0);}
.mc9_c00336{transform:matrix(0.163831,0.002785,-0.004249,0.249964,0,0);-ms-transform:matrix(0.163831,0.002785,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.163831,0.002785,-0.004249,0.249964,0,0);}
.m13_c00336{transform:matrix(0.167281,0.002175,-0.003250,0.249979,0,0);-ms-transform:matrix(0.167281,0.002175,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.167281,0.002175,-0.003250,0.249979,0,0);}
.m7a_c00336{transform:matrix(0.169321,0.002878,-0.004249,0.249964,0,0);-ms-transform:matrix(0.169321,0.002878,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.169321,0.002878,-0.004249,0.249964,0,0);}
.mc0_c00336{transform:matrix(0.170115,0.002892,-0.004249,0.249964,0,0);-ms-transform:matrix(0.170115,0.002892,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.170115,0.002892,-0.004249,0.249964,0,0);}
.m6f_c00336{transform:matrix(0.170645,0.002901,-0.004249,0.249964,0,0);-ms-transform:matrix(0.170645,0.002901,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.170645,0.002901,-0.004249,0.249964,0,0);}
.mdc_c00336{transform:matrix(0.170740,0.002903,-0.004249,0.249964,0,0);-ms-transform:matrix(0.170740,0.002903,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.170740,0.002903,-0.004249,0.249964,0,0);}
.m80_c00336{transform:matrix(0.171330,0.002913,-0.004249,0.249964,0,0);-ms-transform:matrix(0.171330,0.002913,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.171330,0.002913,-0.004249,0.249964,0,0);}
.m73_c00336{transform:matrix(0.171770,0.002920,-0.004249,0.249964,0,0);-ms-transform:matrix(0.171770,0.002920,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.171770,0.002920,-0.004249,0.249964,0,0);}
.m7d_c00336{transform:matrix(0.172430,0.002931,-0.004249,0.249964,0,0);-ms-transform:matrix(0.172430,0.002931,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.172430,0.002931,-0.004249,0.249964,0,0);}
.md7_c00336{transform:matrix(0.173765,0.002954,-0.004249,0.249964,0,0);-ms-transform:matrix(0.173765,0.002954,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.173765,0.002954,-0.004249,0.249964,0,0);}
.m59_c00336{transform:matrix(0.178360,0.002319,-0.003250,0.249979,0,0);-ms-transform:matrix(0.178360,0.002319,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.178360,0.002319,-0.003250,0.249979,0,0);}
.mc7_c00336{transform:matrix(0.178909,0.003041,-0.004249,0.249964,0,0);-ms-transform:matrix(0.178909,0.003041,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.178909,0.003041,-0.004249,0.249964,0,0);}
.m11_c00336{transform:matrix(0.179785,0.002337,-0.003250,0.249979,0,0);-ms-transform:matrix(0.179785,0.002337,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.179785,0.002337,-0.003250,0.249979,0,0);}
.md3_c00336{transform:matrix(0.180284,0.003065,-0.004249,0.249964,0,0);-ms-transform:matrix(0.180284,0.003065,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.180284,0.003065,-0.004249,0.249964,0,0);}
.m68_c00336{transform:matrix(0.181369,0.003083,-0.004249,0.249964,0,0);-ms-transform:matrix(0.181369,0.003083,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.181369,0.003083,-0.004249,0.249964,0,0);}
.m16_c00336{transform:matrix(0.181380,0.002358,-0.003250,0.249979,0,0);-ms-transform:matrix(0.181380,0.002358,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.181380,0.002358,-0.003250,0.249979,0,0);}
.md4_c00336{transform:matrix(0.182139,0.003096,-0.004249,0.249964,0,0);-ms-transform:matrix(0.182139,0.003096,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.182139,0.003096,-0.004249,0.249964,0,0);}
.m66_c00336{transform:matrix(0.183024,0.003111,-0.004249,0.249964,0,0);-ms-transform:matrix(0.183024,0.003111,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.183024,0.003111,-0.004249,0.249964,0,0);}
.m7c_c00336{transform:matrix(0.183234,0.003115,-0.004249,0.249964,0,0);-ms-transform:matrix(0.183234,0.003115,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.183234,0.003115,-0.004249,0.249964,0,0);}
.mbf_c00336{transform:matrix(0.184148,0.003131,-0.004249,0.249964,0,0);-ms-transform:matrix(0.184148,0.003131,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.184148,0.003131,-0.004249,0.249964,0,0);}
.m9e_c00336{transform:matrix(0.184198,0.003131,-0.004249,0.249964,0,0);-ms-transform:matrix(0.184198,0.003131,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.184198,0.003131,-0.004249,0.249964,0,0);}
.md6_c00336{transform:matrix(0.184933,0.003144,-0.004249,0.249964,0,0);-ms-transform:matrix(0.184933,0.003144,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.184933,0.003144,-0.004249,0.249964,0,0);}
.me0_c00336{transform:matrix(0.185261,0.004261,-0.005748,0.249934,0,0);-ms-transform:matrix(0.185261,0.004261,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.185261,0.004261,-0.005748,0.249934,0,0);}
.m7b_c00336{transform:matrix(0.187028,0.003179,-0.004249,0.249964,0,0);-ms-transform:matrix(0.187028,0.003179,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.187028,0.003179,-0.004249,0.249964,0,0);}
.m6a_c00336{transform:matrix(0.188833,0.003210,-0.004249,0.249964,0,0);-ms-transform:matrix(0.188833,0.003210,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.188833,0.003210,-0.004249,0.249964,0,0);}
.md2_c00336{transform:matrix(0.189208,0.003217,-0.004249,0.249964,0,0);-ms-transform:matrix(0.189208,0.003217,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.189208,0.003217,-0.004249,0.249964,0,0);}
.m22_c00336{transform:matrix(0.189734,0.002467,-0.003250,0.249979,0,0);-ms-transform:matrix(0.189734,0.002467,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.189734,0.002467,-0.003250,0.249979,0,0);}
.md9_c00336{transform:matrix(0.190892,0.003245,-0.004249,0.249964,0,0);-ms-transform:matrix(0.190892,0.003245,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.190892,0.003245,-0.004249,0.249964,0,0);}
.md5_c00336{transform:matrix(0.191077,0.003248,-0.004249,0.249964,0,0);-ms-transform:matrix(0.191077,0.003248,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.191077,0.003248,-0.004249,0.249964,0,0);}
.m70_c00336{transform:matrix(0.191142,0.003249,-0.004249,0.249964,0,0);-ms-transform:matrix(0.191142,0.003249,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.191142,0.003249,-0.004249,0.249964,0,0);}
.m1a_c00336{transform:matrix(0.191419,0.002488,-0.003250,0.249979,0,0);-ms-transform:matrix(0.191419,0.002488,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.191419,0.002488,-0.003250,0.249979,0,0);}
.mbb_c00336{transform:matrix(0.192492,0.003272,-0.004249,0.249964,0,0);-ms-transform:matrix(0.192492,0.003272,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.192492,0.003272,-0.004249,0.249964,0,0);}
.m117_c00336{transform:matrix(0.192725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192725,0.000000,0.000000,0.250000,0,0);}
.m72_c00336{transform:matrix(0.192832,0.003278,-0.004249,0.249964,0,0);-ms-transform:matrix(0.192832,0.003278,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.192832,0.003278,-0.004249,0.249964,0,0);}
.md0_c00336{transform:matrix(0.192912,0.003280,-0.004249,0.249964,0,0);-ms-transform:matrix(0.192912,0.003280,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.192912,0.003280,-0.004249,0.249964,0,0);}
.ma7_c00336{transform:matrix(0.193127,0.003283,-0.004249,0.249964,0,0);-ms-transform:matrix(0.193127,0.003283,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.193127,0.003283,-0.004249,0.249964,0,0);}
.m97_c00336{transform:matrix(0.193742,0.003294,-0.004249,0.249964,0,0);-ms-transform:matrix(0.193742,0.003294,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.193742,0.003294,-0.004249,0.249964,0,0);}
.m63_c00336{transform:matrix(0.194167,0.003301,-0.004249,0.249964,0,0);-ms-transform:matrix(0.194167,0.003301,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.194167,0.003301,-0.004249,0.249964,0,0);}
.m19_c00336{transform:matrix(0.194184,0.002524,-0.003250,0.249979,0,0);-ms-transform:matrix(0.194184,0.002524,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.194184,0.002524,-0.003250,0.249979,0,0);}
.m40_c00336{transform:matrix(0.194524,0.002529,-0.003250,0.249979,0,0);-ms-transform:matrix(0.194524,0.002529,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.194524,0.002529,-0.003250,0.249979,0,0);}
.mda_c00336{transform:matrix(0.194577,0.003308,-0.004249,0.249964,0,0);-ms-transform:matrix(0.194577,0.003308,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.194577,0.003308,-0.004249,0.249964,0,0);}
.m65_c00336{transform:matrix(0.194672,0.003309,-0.004249,0.249964,0,0);-ms-transform:matrix(0.194672,0.003309,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.194672,0.003309,-0.004249,0.249964,0,0);}
.m77_c00336{transform:matrix(0.195142,0.003317,-0.004249,0.249964,0,0);-ms-transform:matrix(0.195142,0.003317,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.195142,0.003317,-0.004249,0.249964,0,0);}
.m7e_c00336{transform:matrix(0.195172,0.003318,-0.004249,0.249964,0,0);-ms-transform:matrix(0.195172,0.003318,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.195172,0.003318,-0.004249,0.249964,0,0);}
.mde_c00336{transform:matrix(0.195353,0.004493,-0.005748,0.249934,0,0);-ms-transform:matrix(0.195353,0.004493,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.195353,0.004493,-0.005748,0.249934,0,0);}
.ma5_c00336{transform:matrix(0.195537,0.003324,-0.004249,0.249964,0,0);-ms-transform:matrix(0.195537,0.003324,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.195537,0.003324,-0.004249,0.249964,0,0);}
.md_c00336{transform:matrix(0.195548,0.002542,-0.003250,0.249979,0,0);-ms-transform:matrix(0.195548,0.002542,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.195548,0.002542,-0.003250,0.249979,0,0);}
.m7f_c00336{transform:matrix(0.195607,0.003325,-0.004249,0.249964,0,0);-ms-transform:matrix(0.195607,0.003325,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.195607,0.003325,-0.004249,0.249964,0,0);}
.m4d_c00336{transform:matrix(0.195798,0.002545,-0.003250,0.249979,0,0);-ms-transform:matrix(0.195798,0.002545,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.195798,0.002545,-0.003250,0.249979,0,0);}
.mf9_c00336{transform:matrix(0.195823,0.004504,-0.005748,0.249934,0,0);-ms-transform:matrix(0.195823,0.004504,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.195823,0.004504,-0.005748,0.249934,0,0);}
.mb_c00336{transform:matrix(0.196108,0.002549,-0.003250,0.249979,0,0);-ms-transform:matrix(0.196108,0.002549,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.196108,0.002549,-0.003250,0.249979,0,0);}
.m5b_c00336{transform:matrix(0.196438,0.002554,-0.003250,0.249979,0,0);-ms-transform:matrix(0.196438,0.002554,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.196438,0.002554,-0.003250,0.249979,0,0);}
.m36_c00336{transform:matrix(0.196498,0.002554,-0.003250,0.249979,0,0);-ms-transform:matrix(0.196498,0.002554,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.196498,0.002554,-0.003250,0.249979,0,0);}
.ma3_c00336{transform:matrix(0.196662,0.003343,-0.004249,0.249964,0,0);-ms-transform:matrix(0.196662,0.003343,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.196662,0.003343,-0.004249,0.249964,0,0);}
.m3c_c00336{transform:matrix(0.197403,0.002566,-0.003250,0.249979,0,0);-ms-transform:matrix(0.197403,0.002566,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.197403,0.002566,-0.003250,0.249979,0,0);}
.m33_c00336{transform:matrix(0.197508,0.002568,-0.003250,0.249979,0,0);-ms-transform:matrix(0.197508,0.002568,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.197508,0.002568,-0.003250,0.249979,0,0);}
.m6b_c00336{transform:matrix(0.197556,0.003358,-0.004249,0.249964,0,0);-ms-transform:matrix(0.197556,0.003358,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.197556,0.003358,-0.004249,0.249964,0,0);}
.mfe_c00336{transform:matrix(0.197858,0.004551,-0.005748,0.249934,0,0);-ms-transform:matrix(0.197858,0.004551,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.197858,0.004551,-0.005748,0.249934,0,0);}
.m9a_c00336{transform:matrix(0.197881,0.003364,-0.004249,0.249964,0,0);-ms-transform:matrix(0.197881,0.003364,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.197881,0.003364,-0.004249,0.249964,0,0);}
.m75_c00336{transform:matrix(0.198246,0.003370,-0.004249,0.249964,0,0);-ms-transform:matrix(0.198246,0.003370,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.198246,0.003370,-0.004249,0.249964,0,0);}
.m8e_c00336{transform:matrix(0.198376,0.003372,-0.004249,0.249964,0,0);-ms-transform:matrix(0.198376,0.003372,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.198376,0.003372,-0.004249,0.249964,0,0);}
.mab_c00336{transform:matrix(0.198516,0.003375,-0.004249,0.249964,0,0);-ms-transform:matrix(0.198516,0.003375,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.198516,0.003375,-0.004249,0.249964,0,0);}
.me1_c00336{transform:matrix(0.199317,0.004584,-0.005748,0.249934,0,0);-ms-transform:matrix(0.199317,0.004584,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.199317,0.004584,-0.005748,0.249934,0,0);}
.m98_c00336{transform:matrix(0.199671,0.003394,-0.004249,0.249964,0,0);-ms-transform:matrix(0.199671,0.003394,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.199671,0.003394,-0.004249,0.249964,0,0);}
.m81_c00336{transform:matrix(0.199766,0.003396,-0.004249,0.249964,0,0);-ms-transform:matrix(0.199766,0.003396,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.199766,0.003396,-0.004249,0.249964,0,0);}
.m74_c00336{transform:matrix(0.200486,0.003408,-0.004249,0.249964,0,0);-ms-transform:matrix(0.200486,0.003408,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.200486,0.003408,-0.004249,0.249964,0,0);}
.m3e_c00336{transform:matrix(0.201228,0.002616,-0.003250,0.249979,0,0);-ms-transform:matrix(0.201228,0.002616,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.201228,0.002616,-0.003250,0.249979,0,0);}
.mbe_c00336{transform:matrix(0.202041,0.003435,-0.004249,0.249964,0,0);-ms-transform:matrix(0.202041,0.003435,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.202041,0.003435,-0.004249,0.249964,0,0);}
.m18_c00336{transform:matrix(0.202053,0.002627,-0.003250,0.249979,0,0);-ms-transform:matrix(0.202053,0.002627,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.202053,0.002627,-0.003250,0.249979,0,0);}
.me4_c00336{transform:matrix(0.202971,0.004668,-0.005748,0.249934,0,0);-ms-transform:matrix(0.202971,0.004668,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.202971,0.004668,-0.005748,0.249934,0,0);}
.m119_c00336{transform:matrix(0.203725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203725,0.000000,0.000000,0.250000,0,0);}
.m37_c00336{transform:matrix(0.203838,0.002650,-0.003250,0.249979,0,0);-ms-transform:matrix(0.203838,0.002650,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.203838,0.002650,-0.003250,0.249979,0,0);}
.m9_c00336{transform:matrix(0.205618,0.002673,-0.003250,0.249979,0,0);-ms-transform:matrix(0.205618,0.002673,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.205618,0.002673,-0.003250,0.249979,0,0);}
.m17_c00336{transform:matrix(0.205918,0.002677,-0.003250,0.249979,0,0);-ms-transform:matrix(0.205918,0.002677,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.205918,0.002677,-0.003250,0.249979,0,0);}
.mdd_c00336{transform:matrix(0.206345,0.004746,-0.005748,0.249934,0,0);-ms-transform:matrix(0.206345,0.004746,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.206345,0.004746,-0.005748,0.249934,0,0);}
.m21_c00336{transform:matrix(0.206583,0.002686,-0.003250,0.249979,0,0);-ms-transform:matrix(0.206583,0.002686,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.206583,0.002686,-0.003250,0.249979,0,0);}
.m3b_c00336{transform:matrix(0.207222,0.002694,-0.003250,0.249979,0,0);-ms-transform:matrix(0.207222,0.002694,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.207222,0.002694,-0.003250,0.249979,0,0);}
.m113_c00336{transform:matrix(0.207240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207240,0.000000,0.000000,0.250000,0,0);}
.m5c_c00336{transform:matrix(0.207407,0.002696,-0.003250,0.249979,0,0);-ms-transform:matrix(0.207407,0.002696,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.207407,0.002696,-0.003250,0.249979,0,0);}
.m64_c00336{transform:matrix(0.207435,0.003526,-0.004249,0.249964,0,0);-ms-transform:matrix(0.207435,0.003526,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.207435,0.003526,-0.004249,0.249964,0,0);}
.m57_c00336{transform:matrix(0.207487,0.002697,-0.003250,0.249979,0,0);-ms-transform:matrix(0.207487,0.002697,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.207487,0.002697,-0.003250,0.249979,0,0);}
.m112_c00336{transform:matrix(0.207775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207775,0.000000,0.000000,0.250000,0,0);}
.m116_c00336{transform:matrix(0.207925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207925,0.000000,0.000000,0.250000,0,0);}
.mfc_c00336{transform:matrix(0.208230,0.004789,-0.005748,0.249934,0,0);-ms-transform:matrix(0.208230,0.004789,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.208230,0.004789,-0.005748,0.249934,0,0);}
.m3a_c00336{transform:matrix(0.208587,0.002712,-0.003250,0.249979,0,0);-ms-transform:matrix(0.208587,0.002712,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.208587,0.002712,-0.003250,0.249979,0,0);}
.me5_c00336{transform:matrix(0.208660,0.004799,-0.005748,0.249934,0,0);-ms-transform:matrix(0.208660,0.004799,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.208660,0.004799,-0.005748,0.249934,0,0);}
.m93_c00336{transform:matrix(0.208680,0.003548,-0.004249,0.249964,0,0);-ms-transform:matrix(0.208680,0.003548,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.208680,0.003548,-0.004249,0.249964,0,0);}
.m39_c00336{transform:matrix(0.208912,0.002716,-0.003250,0.249979,0,0);-ms-transform:matrix(0.208912,0.002716,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.208912,0.002716,-0.003250,0.249979,0,0);}
.m23_c00336{transform:matrix(0.209202,0.002720,-0.003250,0.249979,0,0);-ms-transform:matrix(0.209202,0.002720,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.209202,0.002720,-0.003250,0.249979,0,0);}
.mc2_c00336{transform:matrix(0.209225,0.003557,-0.004249,0.249964,0,0);-ms-transform:matrix(0.209225,0.003557,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.209225,0.003557,-0.004249,0.249964,0,0);}
.m12_c00336{transform:matrix(0.209752,0.002727,-0.003250,0.249979,0,0);-ms-transform:matrix(0.209752,0.002727,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.209752,0.002727,-0.003250,0.249979,0,0);}
.m90_c00336{transform:matrix(0.210800,0.003584,-0.004249,0.249964,0,0);-ms-transform:matrix(0.210800,0.003584,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.210800,0.003584,-0.004249,0.249964,0,0);}
.me_c00336{transform:matrix(0.211007,0.002743,-0.003250,0.249979,0,0);-ms-transform:matrix(0.211007,0.002743,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.211007,0.002743,-0.003250,0.249979,0,0);}
.m69_c00336{transform:matrix(0.211664,0.003598,-0.004249,0.249964,0,0);-ms-transform:matrix(0.211664,0.003598,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.211664,0.003598,-0.004249,0.249964,0,0);}
.mba_c00336{transform:matrix(0.211669,0.003598,-0.004249,0.249964,0,0);-ms-transform:matrix(0.211669,0.003598,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.211669,0.003598,-0.004249,0.249964,0,0);}
.mef_c00336{transform:matrix(0.211764,0.004871,-0.005748,0.249934,0,0);-ms-transform:matrix(0.211764,0.004871,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.211764,0.004871,-0.005748,0.249934,0,0);}
.m9c_c00336{transform:matrix(0.212269,0.003609,-0.004249,0.249964,0,0);-ms-transform:matrix(0.212269,0.003609,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.212269,0.003609,-0.004249,0.249964,0,0);}
.m52_c00336{transform:matrix(0.212492,0.002762,-0.003250,0.249979,0,0);-ms-transform:matrix(0.212492,0.002762,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.212492,0.002762,-0.003250,0.249979,0,0);}
.m4f_c00336{transform:matrix(0.212602,0.002764,-0.003250,0.249979,0,0);-ms-transform:matrix(0.212602,0.002764,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.212602,0.002764,-0.003250,0.249979,0,0);}
.m35_c00336{transform:matrix(0.212832,0.002767,-0.003250,0.249979,0,0);-ms-transform:matrix(0.212832,0.002767,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.212832,0.002767,-0.003250,0.249979,0,0);}
.m4c_c00336{transform:matrix(0.213117,0.002771,-0.003250,0.249979,0,0);-ms-transform:matrix(0.213117,0.002771,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.213117,0.002771,-0.003250,0.249979,0,0);}
.m1c_c00336{transform:matrix(0.213197,0.002772,-0.003250,0.249979,0,0);-ms-transform:matrix(0.213197,0.002772,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.213197,0.002772,-0.003250,0.249979,0,0);}
.m2b_c00336{transform:matrix(0.213617,0.002777,-0.003250,0.249979,0,0);-ms-transform:matrix(0.213617,0.002777,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.213617,0.002777,-0.003250,0.249979,0,0);}
.mea_c00336{transform:matrix(0.213763,0.004917,-0.005748,0.249934,0,0);-ms-transform:matrix(0.213763,0.004917,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.213763,0.004917,-0.005748,0.249934,0,0);}
.m3d_c00336{transform:matrix(0.213912,0.002781,-0.003250,0.249979,0,0);-ms-transform:matrix(0.213912,0.002781,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.213912,0.002781,-0.003250,0.249979,0,0);}
.mff_c00336{transform:matrix(0.213928,0.004920,-0.005748,0.249934,0,0);-ms-transform:matrix(0.213928,0.004920,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.213928,0.004920,-0.005748,0.249934,0,0);}
.m5e_c00336{transform:matrix(0.214632,0.002790,-0.003250,0.249979,0,0);-ms-transform:matrix(0.214632,0.002790,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.214632,0.002790,-0.003250,0.249979,0,0);}
.m10d_c00336{transform:matrix(0.214800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214800,0.000000,0.000000,0.250000,0,0);}
.mee_c00336{transform:matrix(0.215233,0.004950,-0.005748,0.249934,0,0);-ms-transform:matrix(0.215233,0.004950,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.215233,0.004950,-0.005748,0.249934,0,0);}
.mf6_c00336{transform:matrix(0.215658,0.004960,-0.005748,0.249934,0,0);-ms-transform:matrix(0.215658,0.004960,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.215658,0.004960,-0.005748,0.249934,0,0);}
.mbc_c00336{transform:matrix(0.216049,0.003673,-0.004249,0.249964,0,0);-ms-transform:matrix(0.216049,0.003673,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.216049,0.003673,-0.004249,0.249964,0,0);}
.m1f_c00336{transform:matrix(0.216522,0.002815,-0.003250,0.249979,0,0);-ms-transform:matrix(0.216522,0.002815,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.216522,0.002815,-0.003250,0.249979,0,0);}
.m118_c00336{transform:matrix(0.216795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216795,0.000000,0.000000,0.250000,0,0);}
.m14_c00336{transform:matrix(0.217262,0.002824,-0.003250,0.249979,0,0);-ms-transform:matrix(0.217262,0.002824,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.217262,0.002824,-0.003250,0.249979,0,0);}
.m42_c00336{transform:matrix(0.217602,0.002829,-0.003250,0.249979,0,0);-ms-transform:matrix(0.217602,0.002829,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.217602,0.002829,-0.003250,0.249979,0,0);}
.m34_c00336{transform:matrix(0.217737,0.002831,-0.003250,0.249979,0,0);-ms-transform:matrix(0.217737,0.002831,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.217737,0.002831,-0.003250,0.249979,0,0);}
.mc1_c00336{transform:matrix(0.217889,0.003704,-0.004249,0.249964,0,0);-ms-transform:matrix(0.217889,0.003704,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.217889,0.003704,-0.004249,0.249964,0,0);}
.m15_c00336{transform:matrix(0.217902,0.002833,-0.003250,0.249979,0,0);-ms-transform:matrix(0.217902,0.002833,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.217902,0.002833,-0.003250,0.249979,0,0);}
.m9d_c00336{transform:matrix(0.218133,0.003708,-0.004249,0.249964,0,0);-ms-transform:matrix(0.218133,0.003708,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.218133,0.003708,-0.004249,0.249964,0,0);}
.mbd_c00336{transform:matrix(0.218588,0.003716,-0.004249,0.249964,0,0);-ms-transform:matrix(0.218588,0.003716,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.218588,0.003716,-0.004249,0.249964,0,0);}
.ma4_c00336{transform:matrix(0.219143,0.003725,-0.004249,0.249964,0,0);-ms-transform:matrix(0.219143,0.003725,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.219143,0.003725,-0.004249,0.249964,0,0);}
.m20_c00336{transform:matrix(0.219571,0.002854,-0.003250,0.249979,0,0);-ms-transform:matrix(0.219571,0.002854,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.219571,0.002854,-0.003250,0.249979,0,0);}
.me3_c00336{transform:matrix(0.220067,0.005062,-0.005748,0.249934,0,0);-ms-transform:matrix(0.220067,0.005062,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.220067,0.005062,-0.005748,0.249934,0,0);}
.m50_c00336{transform:matrix(0.220171,0.002862,-0.003250,0.249979,0,0);-ms-transform:matrix(0.220171,0.002862,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.220171,0.002862,-0.003250,0.249979,0,0);}
.m1b_c00336{transform:matrix(0.220351,0.002865,-0.003250,0.249979,0,0);-ms-transform:matrix(0.220351,0.002865,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.220351,0.002865,-0.003250,0.249979,0,0);}
.m67_c00336{transform:matrix(0.220438,0.003747,-0.004249,0.249964,0,0);-ms-transform:matrix(0.220438,0.003747,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.220438,0.003747,-0.004249,0.249964,0,0);}
.m106_c00336{transform:matrix(0.220580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220580,0.000000,0.000000,0.250000,0,0);}
.m9f_c00336{transform:matrix(0.221138,0.003759,-0.004249,0.249964,0,0);-ms-transform:matrix(0.221138,0.003759,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.221138,0.003759,-0.004249,0.249964,0,0);}
.mac_c00336{transform:matrix(0.221148,0.003760,-0.004249,0.249964,0,0);-ms-transform:matrix(0.221148,0.003760,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.221148,0.003760,-0.004249,0.249964,0,0);}
.mdf_c00336{transform:matrix(0.221461,0.005094,-0.005748,0.249934,0,0);-ms-transform:matrix(0.221461,0.005094,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.221461,0.005094,-0.005748,0.249934,0,0);}
.m8_c00336{transform:matrix(0.221661,0.002882,-0.003250,0.249979,0,0);-ms-transform:matrix(0.221661,0.002882,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.221661,0.002882,-0.003250,0.249979,0,0);}
.m94_c00336{transform:matrix(0.222398,0.003781,-0.004249,0.249964,0,0);-ms-transform:matrix(0.222398,0.003781,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.222398,0.003781,-0.004249,0.249964,0,0);}
.m49_c00336{transform:matrix(0.222471,0.002892,-0.003250,0.249979,0,0);-ms-transform:matrix(0.222471,0.002892,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.222471,0.002892,-0.003250,0.249979,0,0);}
.m47_c00336{transform:matrix(0.223161,0.002901,-0.003250,0.249979,0,0);-ms-transform:matrix(0.223161,0.002901,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.223161,0.002901,-0.003250,0.249979,0,0);}
.mf3_c00336{transform:matrix(0.223346,0.005137,-0.005748,0.249934,0,0);-ms-transform:matrix(0.223346,0.005137,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.223346,0.005137,-0.005748,0.249934,0,0);}
.m43_c00336{transform:matrix(0.223386,0.002904,-0.003250,0.249979,0,0);-ms-transform:matrix(0.223386,0.002904,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.223386,0.002904,-0.003250,0.249979,0,0);}
.maa_c00336{transform:matrix(0.223448,0.003799,-0.004249,0.249964,0,0);-ms-transform:matrix(0.223448,0.003799,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.223448,0.003799,-0.004249,0.249964,0,0);}
.m9b_c00336{transform:matrix(0.223588,0.003801,-0.004249,0.249964,0,0);-ms-transform:matrix(0.223588,0.003801,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.223588,0.003801,-0.004249,0.249964,0,0);}
.m2c_c00336{transform:matrix(0.224016,0.002912,-0.003250,0.249979,0,0);-ms-transform:matrix(0.224016,0.002912,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.224016,0.002912,-0.003250,0.249979,0,0);}
.m1e_c00336{transform:matrix(0.225486,0.002931,-0.003250,0.249979,0,0);-ms-transform:matrix(0.225486,0.002931,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.225486,0.002931,-0.003250,0.249979,0,0);}
.m114_c00336{transform:matrix(0.225675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225675,0.000000,0.000000,0.250000,0,0);}
.m7_c00336{transform:matrix(0.225891,0.002937,-0.003250,0.249979,0,0);-ms-transform:matrix(0.225891,0.002937,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.225891,0.002937,-0.003250,0.249979,0,0);}
.m41_c00336{transform:matrix(0.225926,0.002937,-0.003250,0.249979,0,0);-ms-transform:matrix(0.225926,0.002937,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.225926,0.002937,-0.003250,0.249979,0,0);}
.m5d_c00336{transform:matrix(0.226211,0.002941,-0.003250,0.249979,0,0);-ms-transform:matrix(0.226211,0.002941,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.226211,0.002941,-0.003250,0.249979,0,0);}
.m27_c00336{transform:matrix(0.226496,0.002944,-0.003250,0.249979,0,0);-ms-transform:matrix(0.226496,0.002944,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.226496,0.002944,-0.003250,0.249979,0,0);}
.m8b_c00336{transform:matrix(0.226712,0.003854,-0.004249,0.249964,0,0);-ms-transform:matrix(0.226712,0.003854,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.226712,0.003854,-0.004249,0.249964,0,0);}
.m58_c00336{transform:matrix(0.226931,0.002950,-0.003250,0.249979,0,0);-ms-transform:matrix(0.226931,0.002950,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.226931,0.002950,-0.003250,0.249979,0,0);}
.m53_c00336{transform:matrix(0.227031,0.002951,-0.003250,0.249979,0,0);-ms-transform:matrix(0.227031,0.002951,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.227031,0.002951,-0.003250,0.249979,0,0);}
.mfb_c00336{transform:matrix(0.227175,0.005225,-0.005748,0.249934,0,0);-ms-transform:matrix(0.227175,0.005225,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.227175,0.005225,-0.005748,0.249934,0,0);}
.m100_c00336{transform:matrix(0.227770,0.005239,-0.005748,0.249934,0,0);-ms-transform:matrix(0.227770,0.005239,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.227770,0.005239,-0.005748,0.249934,0,0);}
.m10_c00336{transform:matrix(0.227931,0.002963,-0.003250,0.249979,0,0);-ms-transform:matrix(0.227931,0.002963,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.227931,0.002963,-0.003250,0.249979,0,0);}
.m60_c00336{transform:matrix(0.227991,0.002964,-0.003250,0.249979,0,0);-ms-transform:matrix(0.227991,0.002964,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.227991,0.002964,-0.003250,0.249979,0,0);}
.me2_c00336{transform:matrix(0.228135,0.005247,-0.005748,0.249934,0,0);-ms-transform:matrix(0.228135,0.005247,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.228135,0.005247,-0.005748,0.249934,0,0);}
.m8d_c00336{transform:matrix(0.228147,0.003878,-0.004249,0.249964,0,0);-ms-transform:matrix(0.228147,0.003878,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.228147,0.003878,-0.004249,0.249964,0,0);}
.m6c_c00336{transform:matrix(0.228532,0.003885,-0.004249,0.249964,0,0);-ms-transform:matrix(0.228532,0.003885,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.228532,0.003885,-0.004249,0.249964,0,0);}
.ma6_c00336{transform:matrix(0.228692,0.003888,-0.004249,0.249964,0,0);-ms-transform:matrix(0.228692,0.003888,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.228692,0.003888,-0.004249,0.249964,0,0);}
.m28_c00336{transform:matrix(0.229036,0.002977,-0.003250,0.249979,0,0);-ms-transform:matrix(0.229036,0.002977,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.229036,0.002977,-0.003250,0.249979,0,0);}
.mf7_c00336{transform:matrix(0.229714,0.005283,-0.005748,0.249934,0,0);-ms-transform:matrix(0.229714,0.005283,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.229714,0.005283,-0.005748,0.249934,0,0);}
.m5a_c00336{transform:matrix(0.230785,0.003000,-0.003250,0.249979,0,0);-ms-transform:matrix(0.230785,0.003000,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.230785,0.003000,-0.003250,0.249979,0,0);}
.m3f_c00336{transform:matrix(0.231520,0.003010,-0.003250,0.249979,0,0);-ms-transform:matrix(0.231520,0.003010,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.231520,0.003010,-0.003250,0.249979,0,0);}
.mc5_c00336{transform:matrix(0.231677,0.003939,-0.004249,0.249964,0,0);-ms-transform:matrix(0.231677,0.003939,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.231677,0.003939,-0.004249,0.249964,0,0);}
.mfd_c00336{transform:matrix(0.231989,0.005336,-0.005748,0.249934,0,0);-ms-transform:matrix(0.231989,0.005336,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.231989,0.005336,-0.005748,0.249934,0,0);}
.mc_c00336{transform:matrix(0.232175,0.003018,-0.003250,0.249979,0,0);-ms-transform:matrix(0.232175,0.003018,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.232175,0.003018,-0.003250,0.249979,0,0);}
.m8c_c00336{transform:matrix(0.232251,0.003948,-0.004249,0.249964,0,0);-ms-transform:matrix(0.232251,0.003948,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.232251,0.003948,-0.004249,0.249964,0,0);}
.ma_c00336{transform:matrix(0.232880,0.003027,-0.003250,0.249979,0,0);-ms-transform:matrix(0.232880,0.003027,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.232880,0.003027,-0.003250,0.249979,0,0);}
.m101_c00336{transform:matrix(0.232918,0.005357,-0.005748,0.249934,0,0);-ms-transform:matrix(0.232918,0.005357,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.232918,0.005357,-0.005748,0.249934,0,0);}
.ma1_c00336{transform:matrix(0.233626,0.003972,-0.004249,0.249964,0,0);-ms-transform:matrix(0.233626,0.003972,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.233626,0.003972,-0.004249,0.249964,0,0);}
.m10a_c00336{transform:matrix(0.233695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233695,0.000000,0.000000,0.250000,0,0);}
.m38_c00336{transform:matrix(0.233915,0.003041,-0.003250,0.249979,0,0);-ms-transform:matrix(0.233915,0.003041,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.233915,0.003041,-0.003250,0.249979,0,0);}
.m8f_c00336{transform:matrix(0.234041,0.003979,-0.004249,0.249964,0,0);-ms-transform:matrix(0.234041,0.003979,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.234041,0.003979,-0.004249,0.249964,0,0);}
.ma0_c00336{transform:matrix(0.234076,0.003979,-0.004249,0.249964,0,0);-ms-transform:matrix(0.234076,0.003979,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.234076,0.003979,-0.004249,0.249964,0,0);}
.m25_c00336{transform:matrix(0.234445,0.003048,-0.003250,0.249979,0,0);-ms-transform:matrix(0.234445,0.003048,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.234445,0.003048,-0.003250,0.249979,0,0);}
.m1_c00336{transform:matrix(0.234512,0.003283,-0.003500,0.249976,0,0);-ms-transform:matrix(0.234512,0.003283,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.234512,0.003283,-0.003500,0.249976,0,0);}
.m45_c00336{transform:matrix(0.235245,0.003058,-0.003250,0.249979,0,0);-ms-transform:matrix(0.235245,0.003058,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.235245,0.003058,-0.003250,0.249979,0,0);}
.mf0_c00336{transform:matrix(0.235423,0.005415,-0.005748,0.249934,0,0);-ms-transform:matrix(0.235423,0.005415,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.235423,0.005415,-0.005748,0.249934,0,0);}
.m5f_c00336{transform:matrix(0.235875,0.003066,-0.003250,0.249979,0,0);-ms-transform:matrix(0.235875,0.003066,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.235875,0.003066,-0.003250,0.249979,0,0);}
.m24_c00336{transform:matrix(0.235975,0.003068,-0.003250,0.249979,0,0);-ms-transform:matrix(0.235975,0.003068,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.235975,0.003068,-0.003250,0.249979,0,0);}
.m102_c00336{transform:matrix(0.236043,0.005429,-0.005748,0.249934,0,0);-ms-transform:matrix(0.236043,0.005429,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.236043,0.005429,-0.005748,0.249934,0,0);}
.m55_c00336{transform:matrix(0.236050,0.003069,-0.003250,0.249979,0,0);-ms-transform:matrix(0.236050,0.003069,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.236050,0.003069,-0.003250,0.249979,0,0);}
.m91_c00336{transform:matrix(0.236731,0.004024,-0.004249,0.249964,0,0);-ms-transform:matrix(0.236731,0.004024,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.236731,0.004024,-0.004249,0.249964,0,0);}
.m30_c00336{transform:matrix(0.238160,0.003096,-0.003250,0.249979,0,0);-ms-transform:matrix(0.238160,0.003096,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.238160,0.003096,-0.003250,0.249979,0,0);}
.m29_c00336{transform:matrix(0.238360,0.003099,-0.003250,0.249979,0,0);-ms-transform:matrix(0.238360,0.003099,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.238360,0.003099,-0.003250,0.249979,0,0);}
.m103_c00336{transform:matrix(0.239022,0.005498,-0.005748,0.249934,0,0);-ms-transform:matrix(0.239022,0.005498,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.239022,0.005498,-0.005748,0.249934,0,0);}
.m26_c00336{transform:matrix(0.239535,0.003114,-0.003250,0.249979,0,0);-ms-transform:matrix(0.239535,0.003114,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.239535,0.003114,-0.003250,0.249979,0,0);}
.mf_c00336{transform:matrix(0.239540,0.003114,-0.003250,0.249979,0,0);-ms-transform:matrix(0.239540,0.003114,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.239540,0.003114,-0.003250,0.249979,0,0);}
.m99_c00336{transform:matrix(0.239770,0.004076,-0.004249,0.249964,0,0);-ms-transform:matrix(0.239770,0.004076,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.239770,0.004076,-0.004249,0.249964,0,0);}
.m95_c00336{transform:matrix(0.239820,0.004077,-0.004249,0.249964,0,0);-ms-transform:matrix(0.239820,0.004077,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.239820,0.004077,-0.004249,0.249964,0,0);}
.me8_c00336{transform:matrix(0.240047,0.005521,-0.005748,0.249934,0,0);-ms-transform:matrix(0.240047,0.005521,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.240047,0.005521,-0.005748,0.249934,0,0);}
.m3_c00336{transform:matrix(0.240081,0.003361,-0.003500,0.249976,0,0);-ms-transform:matrix(0.240081,0.003361,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.240081,0.003361,-0.003500,0.249976,0,0);}
.m115_c00336{transform:matrix(0.240780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240780,0.000000,0.000000,0.250000,0,0);}
.m48_c00336{transform:matrix(0.241130,0.003135,-0.003250,0.249979,0,0);-ms-transform:matrix(0.241130,0.003135,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.241130,0.003135,-0.003250,0.249979,0,0);}
.me6_c00336{transform:matrix(0.241136,0.005546,-0.005748,0.249934,0,0);-ms-transform:matrix(0.241136,0.005546,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.241136,0.005546,-0.005748,0.249934,0,0);}
.m4_c00336{transform:matrix(0.241391,0.003379,-0.003500,0.249976,0,0);-ms-transform:matrix(0.241391,0.003379,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.241391,0.003379,-0.003500,0.249976,0,0);}
.ma8_c00336{transform:matrix(0.241465,0.004105,-0.004249,0.249964,0,0);-ms-transform:matrix(0.241465,0.004105,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.241465,0.004105,-0.004249,0.249964,0,0);}
.m61_c00336{transform:matrix(0.241860,0.003144,-0.003250,0.249979,0,0);-ms-transform:matrix(0.241860,0.003144,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.241860,0.003144,-0.003250,0.249979,0,0);}
.mf2_c00336{transform:matrix(0.243016,0.005589,-0.005748,0.249934,0,0);-ms-transform:matrix(0.243016,0.005589,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.243016,0.005589,-0.005748,0.249934,0,0);}
.me7_c00336{transform:matrix(0.243406,0.005598,-0.005748,0.249934,0,0);-ms-transform:matrix(0.243406,0.005598,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.243406,0.005598,-0.005748,0.249934,0,0);}
.m2e_c00336{transform:matrix(0.243449,0.003165,-0.003250,0.249979,0,0);-ms-transform:matrix(0.243449,0.003165,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.243449,0.003165,-0.003250,0.249979,0,0);}
.m44_c00336{transform:matrix(0.243609,0.003167,-0.003250,0.249979,0,0);-ms-transform:matrix(0.243609,0.003167,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.243609,0.003167,-0.003250,0.249979,0,0);}
.med_c00336{transform:matrix(0.244025,0.005613,-0.005748,0.249934,0,0);-ms-transform:matrix(0.244025,0.005613,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.244025,0.005613,-0.005748,0.249934,0,0);}
.ma9_c00336{transform:matrix(0.244275,0.004153,-0.004249,0.249964,0,0);-ms-transform:matrix(0.244275,0.004153,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.244275,0.004153,-0.004249,0.249964,0,0);}
.m108_c00336{transform:matrix(0.245620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245620,0.000000,0.000000,0.250000,0,0);}
.mec_c00336{transform:matrix(0.245620,0.005649,-0.005748,0.249934,0,0);-ms-transform:matrix(0.245620,0.005649,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.245620,0.005649,-0.005748,0.249934,0,0);}
.m10e_c00336{transform:matrix(0.246205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246205,0.000000,0.000000,0.250000,0,0);}
.m88_c00336{transform:matrix(0.246694,0.004194,-0.004249,0.249964,0,0);-ms-transform:matrix(0.246694,0.004194,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.246694,0.004194,-0.004249,0.249964,0,0);}
.m92_c00336{transform:matrix(0.246704,0.004194,-0.004249,0.249964,0,0);-ms-transform:matrix(0.246704,0.004194,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.246704,0.004194,-0.004249,0.249964,0,0);}
.m10b_c00336{transform:matrix(0.248925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248925,0.000000,0.000000,0.250000,0,0);}
.mf1_c00336{transform:matrix(0.249549,0.005740,-0.005748,0.249934,0,0);-ms-transform:matrix(0.249549,0.005740,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.249549,0.005740,-0.005748,0.249934,0,0);}
.meb_c00336{transform:matrix(0.250059,0.005751,-0.005748,0.249934,0,0);-ms-transform:matrix(0.250059,0.005751,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.250059,0.005751,-0.005748,0.249934,0,0);}
.m31_c00336{transform:matrix(0.250249,0.003253,-0.003250,0.249979,0,0);-ms-transform:matrix(0.250249,0.003253,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.250249,0.003253,-0.003250,0.249979,0,0);}
.m2f_c00336{transform:matrix(0.250879,0.003261,-0.003250,0.249979,0,0);-ms-transform:matrix(0.250879,0.003261,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.250879,0.003261,-0.003250,0.249979,0,0);}
.ma2_c00336{transform:matrix(0.251049,0.004268,-0.004249,0.249964,0,0);-ms-transform:matrix(0.251049,0.004268,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.251049,0.004268,-0.004249,0.249964,0,0);}
.mf5_c00336{transform:matrix(0.251324,0.005780,-0.005748,0.249934,0,0);-ms-transform:matrix(0.251324,0.005780,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.251324,0.005780,-0.005748,0.249934,0,0);}
.m10c_c00336{transform:matrix(0.252605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252605,0.000000,0.000000,0.250000,0,0);}
.m110_c00336{transform:matrix(0.252825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252825,0.000000,0.000000,0.250000,0,0);}
.m4e_c00336{transform:matrix(0.252869,0.003287,-0.003250,0.249979,0,0);-ms-transform:matrix(0.252869,0.003287,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.252869,0.003287,-0.003250,0.249979,0,0);}
.m85_c00336{transform:matrix(0.252998,0.004301,-0.004249,0.249964,0,0);-ms-transform:matrix(0.252998,0.004301,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.252998,0.004301,-0.004249,0.249964,0,0);}
.m51_c00336{transform:matrix(0.253714,0.003298,-0.003250,0.249979,0,0);-ms-transform:matrix(0.253714,0.003298,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.253714,0.003298,-0.003250,0.249979,0,0);}
.m2d_c00336{transform:matrix(0.253894,0.003301,-0.003250,0.249979,0,0);-ms-transform:matrix(0.253894,0.003301,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.253894,0.003301,-0.003250,0.249979,0,0);}
.m54_c00336{transform:matrix(0.253949,0.003301,-0.003250,0.249979,0,0);-ms-transform:matrix(0.253949,0.003301,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.253949,0.003301,-0.003250,0.249979,0,0);}
.mf4_c00336{transform:matrix(0.255612,0.005879,-0.005748,0.249934,0,0);-ms-transform:matrix(0.255612,0.005879,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.255612,0.005879,-0.005748,0.249934,0,0);}
.m86_c00336{transform:matrix(0.256263,0.004356,-0.004249,0.249964,0,0);-ms-transform:matrix(0.256263,0.004356,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.256263,0.004356,-0.004249,0.249964,0,0);}
.m111_c00336{transform:matrix(0.257100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257100,0.000000,0.000000,0.250000,0,0);}
.m107_c00336{transform:matrix(0.258410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258410,0.000000,0.000000,0.250000,0,0);}
.m8a_c00336{transform:matrix(0.258488,0.004394,-0.004249,0.249964,0,0);-ms-transform:matrix(0.258488,0.004394,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.258488,0.004394,-0.004249,0.249964,0,0);}
.m2a_c00336{transform:matrix(0.259638,0.003375,-0.003250,0.249979,0,0);-ms-transform:matrix(0.259638,0.003375,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.259638,0.003375,-0.003250,0.249979,0,0);}
.me9_c00336{transform:matrix(0.259661,0.005972,-0.005748,0.249934,0,0);-ms-transform:matrix(0.259661,0.005972,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.259661,0.005972,-0.005748,0.249934,0,0);}
.m32_c00336{transform:matrix(0.259663,0.003376,-0.003250,0.249979,0,0);-ms-transform:matrix(0.259663,0.003376,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.259663,0.003376,-0.003250,0.249979,0,0);}
.m4a_c00336{transform:matrix(0.259708,0.003376,-0.003250,0.249979,0,0);-ms-transform:matrix(0.259708,0.003376,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.259708,0.003376,-0.003250,0.249979,0,0);}
.m46_c00336{transform:matrix(0.260168,0.003382,-0.003250,0.249979,0,0);-ms-transform:matrix(0.260168,0.003382,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.260168,0.003382,-0.003250,0.249979,0,0);}
.m56_c00336{transform:matrix(0.260708,0.003389,-0.003250,0.249979,0,0);-ms-transform:matrix(0.260708,0.003389,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.260708,0.003389,-0.003250,0.249979,0,0);}
.m4b_c00336{transform:matrix(0.263333,0.003423,-0.003250,0.249979,0,0);-ms-transform:matrix(0.263333,0.003423,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.263333,0.003423,-0.003250,0.249979,0,0);}
.m0_c00336{transform:matrix(0.266174,0.003726,-0.003500,0.249976,0,0);-ms-transform:matrix(0.266174,0.003726,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.266174,0.003726,-0.003500,0.249976,0,0);}
.mad_c00336{transform:matrix(0.266581,0.004532,-0.004249,0.249964,0,0);-ms-transform:matrix(0.266581,0.004532,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.266581,0.004532,-0.004249,0.249964,0,0);}
.m105_c00336{transform:matrix(0.267635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267635,0.000000,0.000000,0.250000,0,0);}
.m109_c00336{transform:matrix(0.268050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268050,0.000000,0.000000,0.250000,0,0);}
.m104_c00336{transform:matrix(0.269160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269160,0.000000,0.000000,0.250000,0,0);}
.m10f_c00336{transform:matrix(0.269920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269920,0.000000,0.000000,0.250000,0,0);}
.m2_c00336{transform:matrix(0.270638,0.003789,-0.003500,0.249976,0,0);-ms-transform:matrix(0.270638,0.003789,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.270638,0.003789,-0.003500,0.249976,0,0);}
.m5_c00336{transform:matrix(0.271953,0.003807,-0.003500,0.249976,0,0);-ms-transform:matrix(0.271953,0.003807,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.271953,0.003807,-0.003500,0.249976,0,0);}
.m87_c00336{transform:matrix(0.273745,0.004654,-0.004249,0.249964,0,0);-ms-transform:matrix(0.273745,0.004654,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.273745,0.004654,-0.004249,0.249964,0,0);}
.m83_c00336{transform:matrix(0.274425,0.004665,-0.004249,0.249964,0,0);-ms-transform:matrix(0.274425,0.004665,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.274425,0.004665,-0.004249,0.249964,0,0);}
.m89_c00336{transform:matrix(0.277240,0.004713,-0.004249,0.249964,0,0);-ms-transform:matrix(0.277240,0.004713,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.277240,0.004713,-0.004249,0.249964,0,0);}
.m6_c00336{transform:matrix(0.278298,0.003896,-0.003500,0.249976,0,0);-ms-transform:matrix(0.278298,0.003896,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.278298,0.003896,-0.003500,0.249976,0,0);}
.m84_c00336{transform:matrix(0.279980,0.004760,-0.004249,0.249964,0,0);-ms-transform:matrix(0.279980,0.004760,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.279980,0.004760,-0.004249,0.249964,0,0);}
.mc4_c00336{transform:matrix(0.288358,0.004902,-0.004249,0.249964,0,0);-ms-transform:matrix(0.288358,0.004902,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.288358,0.004902,-0.004249,0.249964,0,0);}
.mc3_c00336{transform:matrix(0.325923,0.005541,-0.004249,0.249964,0,0);-ms-transform:matrix(0.325923,0.005541,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.325923,0.005541,-0.004249,0.249964,0,0);}
.mdb_c00336{transform:matrix(0.411676,0.006998,-0.004249,0.249964,0,0);-ms-transform:matrix(0.411676,0.006998,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.411676,0.006998,-0.004249,0.249964,0,0);}
.m96_c00336{transform:matrix(0.541317,0.009202,-0.004249,0.249964,0,0);-ms-transform:matrix(0.541317,0.009202,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.541317,0.009202,-0.004249,0.249964,0,0);}
.mf8_c00336{transform:matrix(1.082394,0.024895,-0.005748,0.249934,0,0);-ms-transform:matrix(1.082394,0.024895,-0.005748,0.249934,0,0);-webkit-transform:matrix(1.082394,0.024895,-0.005748,0.249934,0,0);}
.v0_c00336{vertical-align:0.000000px;}
.ls0_c00336{letter-spacing:0.000000px;}
.sc__c00336{text-shadow:none;}
.sc0_c00336{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__c00336{-webkit-text-stroke:0px transparent;}
.sc0_c00336{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00336{word-spacing:0.000000px;}
.fc0_c00336{color:transparent;}
.fsd_c00336{font-size:66.000000px;}
.fse_c00336{font-size:72.000000px;}
.fs0_c00336{font-size:72.007056px;}
.fs6_c00336{font-size:72.010403px;}
.fs3_c00336{font-size:78.006591px;}
.fsb_c00336{font-size:78.020628px;}
.fsf_c00336{font-size:84.000000px;}
.fs1_c00336{font-size:84.007098px;}
.fs7_c00336{font-size:84.012137px;}
.fsc_c00336{font-size:84.022215px;}
.fs2_c00336{font-size:90.007605px;}
.fs4_c00336{font-size:90.013004px;}
.fsa_c00336{font-size:90.023802px;}
.fs5_c00336{font-size:102.014738px;}
.fs9_c00336{font-size:120.017339px;}
.fs8_c00336{font-size:126.018206px;}
.y0_c00336{bottom:0.000000px;}
.y118_c00336{bottom:80.275500px;}
.y117_c00336{bottom:119.526000px;}
.y116_c00336{bottom:120.147000px;}
.y115_c00336{bottom:120.895500px;}
.y114_c00336{bottom:121.386000px;}
.y113_c00336{bottom:121.629000px;}
.y112_c00336{bottom:122.235000px;}
.y111_c00336{bottom:122.607000px;}
.y110_c00336{bottom:122.967000px;}
.y10f_c00336{bottom:123.715500px;}
.y10e_c00336{bottom:124.303500px;}
.y10d_c00336{bottom:125.031000px;}
.y10c_c00336{bottom:125.380500px;}
.y10b_c00336{bottom:126.093000px;}
.y10a_c00336{bottom:156.336000px;}
.y109_c00336{bottom:165.264975px;}
.y108_c00336{bottom:166.280458px;}
.y107_c00336{bottom:167.418688px;}
.y106_c00336{bottom:168.293668px;}
.y105_c00336{bottom:168.735835px;}
.y104_c00336{bottom:169.160314px;}
.y103_c00336{bottom:170.440602px;}
.y102_c00336{bottom:170.869308px;}
.y101_c00336{bottom:171.693450px;}
.y100_c00336{bottom:192.623690px;}
.yff_c00336{bottom:193.135186px;}
.yfe_c00336{bottom:195.226990px;}
.yfd_c00336{bottom:195.969913px;}
.yfc_c00336{bottom:196.733985px;}
.yfb_c00336{bottom:198.548685px;}
.yfa_c00336{bottom:201.071566px;}
.yf9_c00336{bottom:202.113984px;}
.yf8_c00336{bottom:203.873105px;}
.yf7_c00336{bottom:205.407837px;}
.yf6_c00336{bottom:206.621099px;}
.yf5_c00336{bottom:207.342045px;}
.yf4_c00336{bottom:228.485244px;}
.yf3_c00336{bottom:229.230544px;}
.yf2_c00336{bottom:230.025184px;}
.yf1_c00336{bottom:231.244420px;}
.yf0_c00336{bottom:231.642837px;}
.yef_c00336{bottom:233.111295px;}
.yee_c00336{bottom:233.902000px;}
.yed_c00336{bottom:234.815841px;}
.yec_c00336{bottom:235.605408px;}
.yeb_c00336{bottom:235.970534px;}
.yea_c00336{bottom:266.584155px;}
.ye9_c00336{bottom:268.163496px;}
.ye8_c00336{bottom:271.466768px;}
.ye7_c00336{bottom:272.505838px;}
.ye6_c00336{bottom:273.263700px;}
.ye5_c00336{bottom:275.581134px;}
.ye4_c00336{bottom:276.581255px;}
.ye3_c00336{bottom:278.107500px;}
.ye2_c00336{bottom:302.927371px;}
.ye1_c00336{bottom:302.927946px;}
.ye0_c00336{bottom:336.731980px;}
.ydf_c00336{bottom:337.813740px;}
.yde_c00336{bottom:338.318326px;}
.ydd_c00336{bottom:339.061510px;}
.ydc_c00336{bottom:340.125390px;}
.ydb_c00336{bottom:341.206129px;}
.yda_c00336{bottom:342.079641px;}
.yd9_c00336{bottom:342.446806px;}
.yd8_c00336{bottom:343.829524px;}
.yd7_c00336{bottom:344.365098px;}
.yd6_c00336{bottom:346.082872px;}
.yd5_c00336{bottom:372.799338px;}
.yd4_c00336{bottom:373.774852px;}
.yd3_c00336{bottom:374.136934px;}
.yd2_c00336{bottom:374.889061px;}
.yd1_c00336{bottom:375.744787px;}
.yd0_c00336{bottom:376.109959px;}
.ycf_c00336{bottom:377.191602px;}
.yce_c00336{bottom:378.050265px;}
.ycd_c00336{bottom:379.367119px;}
.ycc_c00336{bottom:379.838058px;}
.ycb_c00336{bottom:410.035432px;}
.yca_c00336{bottom:410.402479px;}
.yc9_c00336{bottom:411.315702px;}
.yc8_c00336{bottom:412.228597px;}
.yc7_c00336{bottom:412.634347px;}
.yc6_c00336{bottom:413.448279px;}
.yc5_c00336{bottom:414.099012px;}
.yc4_c00336{bottom:414.497311px;}
.yc3_c00336{bottom:414.779055px;}
.yc2_c00336{bottom:415.981582px;}
.yc1_c00336{bottom:417.001708px;}
.yc0_c00336{bottom:417.373962px;}
.ybf_c00336{bottom:444.774696px;}
.ybe_c00336{bottom:446.590659px;}
.ybd_c00336{bottom:447.336994px;}
.ybc_c00336{bottom:448.647841px;}
.ybb_c00336{bottom:450.697179px;}
.yba_c00336{bottom:451.449451px;}
.yb9_c00336{bottom:452.201392px;}
.yb8_c00336{bottom:453.244114px;}
.yb7_c00336{bottom:454.504639px;}
.yb6_c00336{bottom:455.503584px;}
.yb5_c00336{bottom:457.793299px;}
.yb4_c00336{bottom:458.512041px;}
.yb3_c00336{bottom:459.230247px;}
.yb2_c00336{bottom:483.659269px;}
.yb1_c00336{bottom:484.493374px;}
.yb0_c00336{bottom:484.962289px;}
.yaf_c00336{bottom:485.298111px;}
.yae_c00336{bottom:487.148049px;}
.yad_c00336{bottom:488.867983px;}
.yac_c00336{bottom:489.321283px;}
.yab_c00336{bottom:490.263193px;}
.yaa_c00336{bottom:490.700496px;}
.ya9_c00336{bottom:491.463436px;}
.ya8_c00336{bottom:491.904105px;}
.ya7_c00336{bottom:519.449383px;}
.ya6_c00336{bottom:520.027953px;}
.ya5_c00336{bottom:521.367111px;}
.ya4_c00336{bottom:522.119998px;}
.ya3_c00336{bottom:522.495613px;}
.ya2_c00336{bottom:523.425012px;}
.ya1_c00336{bottom:524.186136px;}
.ya0_c00336{bottom:525.132007px;}
.y9f_c00336{bottom:525.696424px;}
.y9e_c00336{bottom:527.555017px;}
.y9d_c00336{bottom:528.090186px;}
.y9c_c00336{bottom:528.630174px;}
.y9b_c00336{bottom:554.172210px;}
.y9a_c00336{bottom:554.172756px;}
.y97_c00336{bottom:554.172988px;}
.y98_c00336{bottom:554.173366px;}
.y95_c00336{bottom:554.173372px;}
.y99_c00336{bottom:554.173438px;}
.y96_c00336{bottom:554.173624px;}
.y94_c00336{bottom:554.173738px;}
.y93_c00336{bottom:554.174481px;}
.y92_c00336{bottom:589.526257px;}
.y91_c00336{bottom:589.794208px;}
.y90_c00336{bottom:590.090189px;}
.y8f_c00336{bottom:590.598177px;}
.y8e_c00336{bottom:591.192075px;}
.y8d_c00336{bottom:591.596947px;}
.y8c_c00336{bottom:592.407019px;}
.y8b_c00336{bottom:592.802511px;}
.y8a_c00336{bottom:593.006546px;}
.y89_c00336{bottom:594.095799px;}
.y88_c00336{bottom:595.062405px;}
.y87_c00336{bottom:628.705309px;}
.y85_c00336{bottom:628.705372px;}
.y7f_c00336{bottom:628.705423px;}
.y81_c00336{bottom:628.705524px;}
.y7e_c00336{bottom:628.705557px;}
.y7d_c00336{bottom:628.705600px;}
.y84_c00336{bottom:628.705687px;}
.y86_c00336{bottom:628.705714px;}
.y7c_c00336{bottom:628.705824px;}
.y80_c00336{bottom:628.705847px;}
.y83_c00336{bottom:628.705911px;}
.y82_c00336{bottom:628.706226px;}
.y7b_c00336{bottom:662.028011px;}
.y7a_c00336{bottom:662.575344px;}
.y79_c00336{bottom:664.372615px;}
.y78_c00336{bottom:666.321817px;}
.y77_c00336{bottom:666.862721px;}
.y76_c00336{bottom:668.270816px;}
.y75_c00336{bottom:668.797566px;}
.y74_c00336{bottom:670.034673px;}
.y73_c00336{bottom:670.701548px;}
.y72_c00336{bottom:671.215314px;}
.y71_c00336{bottom:696.980151px;}
.y70_c00336{bottom:699.065821px;}
.y6f_c00336{bottom:699.635517px;}
.y6e_c00336{bottom:700.208400px;}
.y6d_c00336{bottom:701.150625px;}
.y6c_c00336{bottom:701.705939px;}
.y6b_c00336{bottom:703.592785px;}
.y6a_c00336{bottom:704.166765px;}
.y69_c00336{bottom:704.731641px;}
.y68_c00336{bottom:705.471473px;}
.y67_c00336{bottom:706.053000px;}
.y66_c00336{bottom:735.220129px;}
.y65_c00336{bottom:735.220167px;}
.y64_c00336{bottom:770.204772px;}
.y63_c00336{bottom:770.741415px;}
.y62_c00336{bottom:771.011209px;}
.y61_c00336{bottom:771.622391px;}
.y60_c00336{bottom:772.512166px;}
.y5f_c00336{bottom:772.785083px;}
.y5e_c00336{bottom:773.050020px;}
.y5d_c00336{bottom:773.751972px;}
.y5c_c00336{bottom:774.016558px;}
.y5b_c00336{bottom:774.886413px;}
.y5a_c00336{bottom:775.145321px;}
.y59_c00336{bottom:806.911746px;}
.y58_c00336{bottom:807.459335px;}
.y57_c00336{bottom:808.567071px;}
.y56_c00336{bottom:809.018456px;}
.y55_c00336{bottom:809.347695px;}
.y54_c00336{bottom:810.241005px;}
.y53_c00336{bottom:810.570342px;}
.y52_c00336{bottom:810.899114px;}
.y51_c00336{bottom:811.873977px;}
.y50_c00336{bottom:812.094803px;}
.y4f_c00336{bottom:812.407482px;}
.y4e_c00336{bottom:842.885750px;}
.y4d_c00336{bottom:844.001040px;}
.y4c_c00336{bottom:844.397455px;}
.y4b_c00336{bottom:845.083165px;}
.y4a_c00336{bottom:845.493414px;}
.y49_c00336{bottom:845.697183px;}
.y48_c00336{bottom:846.100524px;}
.y47_c00336{bottom:846.780714px;}
.y46_c00336{bottom:847.186416px;}
.y45_c00336{bottom:847.475242px;}
.y44_c00336{bottom:848.050320px;}
.y42_c00336{bottom:877.592835px;}
.y43_c00336{bottom:877.593083px;}
.y41_c00336{bottom:877.593486px;}
.y3f_c00336{bottom:877.593658px;}
.y3c_c00336{bottom:877.593672px;}
.y40_c00336{bottom:877.593687px;}
.y3e_c00336{bottom:877.593889px;}
.y3d_c00336{bottom:877.593981px;}
.y3b_c00336{bottom:877.594274px;}
.y38_c00336{bottom:877.594308px;}
.y36_c00336{bottom:877.594530px;}
.y39_c00336{bottom:877.594617px;}
.y37_c00336{bottom:877.594619px;}
.y3a_c00336{bottom:877.594896px;}
.y35_c00336{bottom:877.595181px;}
.y34_c00336{bottom:913.459702px;}
.y33_c00336{bottom:913.992090px;}
.y32_c00336{bottom:914.263065px;}
.y31_c00336{bottom:914.788558px;}
.y30_c00336{bottom:915.189028px;}
.y2f_c00336{bottom:915.725377px;}
.y2e_c00336{bottom:915.920155px;}
.y2d_c00336{bottom:916.119054px;}
.y2c_c00336{bottom:916.443132px;}
.y2b_c00336{bottom:916.907365px;}
.y1f_c00336{bottom:949.583431px;}
.y20_c00336{bottom:950.006928px;}
.y21_c00336{bottom:950.226661px;}
.y22_c00336{bottom:950.499943px;}
.y23_c00336{bottom:950.720901px;}
.y24_c00336{bottom:950.887573px;}
.y25_c00336{bottom:951.056421px;}
.y26_c00336{bottom:951.547612px;}
.y27_c00336{bottom:951.769657px;}
.y28_c00336{bottom:952.155226px;}
.y29_c00336{bottom:952.389438px;}
.y2a_c00336{bottom:952.611463px;}
.y1e_c00336{bottom:982.258404px;}
.y1d_c00336{bottom:982.799301px;}
.y1c_c00336{bottom:983.427750px;}
.y1b_c00336{bottom:983.691087px;}
.y1a_c00336{bottom:984.052062px;}
.y19_c00336{bottom:984.232824px;}
.y18_c00336{bottom:984.751673px;}
.y17_c00336{bottom:985.022422px;}
.y16_c00336{bottom:985.564822px;}
.y15_c00336{bottom:986.265211px;}
.y14_c00336{bottom:986.524022px;}
.y13_c00336{bottom:987.132666px;}
.y12_c00336{bottom:987.387378px;}
.y11_c00336{bottom:1018.012041px;}
.y10_c00336{bottom:1019.183971px;}
.yf_c00336{bottom:1019.608876px;}
.ye_c00336{bottom:1020.040606px;}
.yd_c00336{bottom:1021.065663px;}
.yc_c00336{bottom:1021.483411px;}
.yb_c00336{bottom:1022.508390px;}
.ya_c00336{bottom:1022.933198px;}
.y9_c00336{bottom:1023.793128px;}
.y8_c00336{bottom:1024.653000px;}
.y7_c00336{bottom:1090.843311px;}
.y6_c00336{bottom:1092.257052px;}
.y5_c00336{bottom:1092.710757px;}
.y4_c00336{bottom:1093.183320px;}
.y3_c00336{bottom:1094.272002px;}
.y2_c00336{bottom:1094.733162px;}
.y1_c00336{bottom:1095.663000px;}
.hf_c00336{height:66.000000px;}
.h10_c00336{height:72.000000px;}
.h2_c00336{height:72.007056px;}
.h8_c00336{height:72.010403px;}
.h5_c00336{height:78.006591px;}
.hd_c00336{height:78.020628px;}
.h11_c00336{height:84.000000px;}
.h3_c00336{height:84.007098px;}
.h9_c00336{height:84.012137px;}
.he_c00336{height:84.022215px;}
.h4_c00336{height:90.007605px;}
.h6_c00336{height:90.013004px;}
.hc_c00336{height:90.023802px;}
.h7_c00336{height:102.014738px;}
.hb_c00336{height:120.017339px;}
.ha_c00336{height:126.018206px;}
.h1_c00336{height:1247.250000px;}
.h0_c00336{height:1247.400000px;}
.w0_c00336{width:915.000000px;}
.x0_c00336{left:0.000000px;}
.x23_c00336{left:162.724446px;}
.x3d_c00336{left:164.147652px;}
.x11_c00336{left:165.178446px;}
.x53_c00336{left:195.610790px;}
.x12_c00336{left:197.004513px;}
.x61_c00336{left:207.110025px;}
.x6b_c00336{left:208.170000px;}
.x4c_c00336{left:217.076759px;}
.x36_c00336{left:218.283131px;}
.x31_c00336{left:228.304062px;}
.x43_c00336{left:238.673565px;}
.x24_c00336{left:240.211005px;}
.x66_c00336{left:249.031659px;}
.x1b_c00336{left:250.356975px;}
.x32_c00336{left:260.446239px;}
.x1_c00336{left:271.689000px;}
.x8_c00336{left:272.787000px;}
.x5b_c00336{left:280.314441px;}
.x54_c00336{left:281.394176px;}
.x1c_c00336{left:294.387771px;}
.x4d_c00336{left:304.299953px;}
.x13_c00336{left:305.508072px;}
.x37_c00336{left:315.776433px;}
.x25_c00336{left:327.409442px;}
.x4f_c00336{left:336.969423px;}
.x2_c00336{left:338.106000px;}
.x29_c00336{left:339.394823px;}
.x1d_c00336{left:349.186583px;}
.x26_c00336{left:359.818386px;}
.x3_c00336{left:371.046000px;}
.x33_c00336{left:381.136518px;}
.x46_c00336{left:382.609758px;}
.x47_c00336{left:391.916240px;}
.x14_c00336{left:392.966747px;}
.x5c_c00336{left:403.987947px;}
.x9_c00336{left:405.079500px;}
.x62_c00336{left:414.446724px;}
.x3f_c00336{left:415.582500px;}
.x57_c00336{left:425.193579px;}
.x1e_c00336{left:426.694718px;}
.xa_c00336{left:437.757000px;}
.x4_c00336{left:448.809000px;}
.x48_c00336{left:458.603318px;}
.x3a_c00336{left:459.692352px;}
.x15_c00336{left:460.771154px;}
.x63_c00336{left:469.007142px;}
.x2a_c00336{left:471.165072px;}
.x69_c00336{left:481.155000px;}
.x5_c00336{left:482.563500px;}
.x5d_c00336{left:491.467893px;}
.x16_c00336{left:494.523338px;}
.x58_c00336{left:503.224623px;}
.x2b_c00336{left:504.377688px;}
.x6_c00336{left:514.971000px;}
.xb_c00336{left:516.601500px;}
.x50_c00336{left:525.252423px;}
.x40_c00336{left:526.573500px;}
.x59_c00336{left:535.913783px;}
.x51_c00336{left:547.347423px;}
.xc_c00336{left:548.736000px;}
.x17_c00336{left:559.362050px;}
.x34_c00336{left:570.420866px;}
.x18_c00336{left:582.037532px;}
.x2c_c00336{left:583.223507px;}
.x44_c00336{left:592.477058px;}
.x49_c00336{left:593.530152px;}
.x1f_c00336{left:603.268019px;}
.x3b_c00336{left:604.985790px;}
.x35_c00336{left:614.416647px;}
.x7_c00336{left:615.952500px;}
.x5a_c00336{left:625.042205px;}
.x67_c00336{left:626.155659px;}
.xd_c00336{left:627.586500px;}
.x55_c00336{left:636.034755px;}
.x2d_c00336{left:638.038269px;}
.x27_c00336{left:648.482133px;}
.x38_c00336{left:659.772849px;}
.xe_c00336{left:660.796500px;}
.x5e_c00336{left:669.163989px;}
.x52_c00336{left:670.408923px;}
.x2e_c00336{left:671.520924px;}
.x20_c00336{left:680.473076px;}
.x41_c00336{left:681.874500px;}
.x68_c00336{left:691.677159px;}
.xf_c00336{left:693.481500px;}
.x2f_c00336{left:703.653345px;}
.x45_c00336{left:704.818470px;}
.x39_c00336{left:714.589494px;}
.x4a_c00336{left:715.981303px;}
.x21_c00336{left:727.198515px;}
.x28_c00336{left:737.327726px;}
.x19_c00336{left:738.644711px;}
.x5f_c00336{left:745.212941px;}
.x4b_c00336{left:748.925792px;}
.x56_c00336{left:753.090222px;}
.x6a_c00336{left:761.245500px;}
.x22_c00336{left:771.745428px;}
.x60_c00336{left:775.806542px;}
.x3e_c00336{left:777.638814px;}
.x3c_c00336{left:782.121795px;}
.x10_c00336{left:783.630000px;}
.x65_c00336{left:788.938618px;}
.x4e_c00336{left:792.803570px;}
.x30_c00336{left:794.111133px;}
.x64_c00336{left:802.526951px;}
.x42_c00336{left:804.561000px;}
.x1a_c00336{left:806.218098px;}
@media print{
.v0_c00336{vertical-align:0.000000pt;}
.ls0_c00336{letter-spacing:0.000000pt;}
.ws0_c00336{word-spacing:0.000000pt;}
.fsd_c00336{font-size:58.666667pt;}
.fse_c00336{font-size:64.000000pt;}
.fs0_c00336{font-size:64.006272pt;}
.fs6_c00336{font-size:64.009247pt;}
.fs3_c00336{font-size:69.339192pt;}
.fsb_c00336{font-size:69.351670pt;}
.fsf_c00336{font-size:74.666667pt;}
.fs1_c00336{font-size:74.672976pt;}
.fs7_c00336{font-size:74.677455pt;}
.fsc_c00336{font-size:74.686413pt;}
.fs2_c00336{font-size:80.006760pt;}
.fs4_c00336{font-size:80.011559pt;}
.fsa_c00336{font-size:80.021157pt;}
.fs5_c00336{font-size:90.679767pt;}
.fs9_c00336{font-size:106.682079pt;}
.fs8_c00336{font-size:112.016183pt;}
.y0_c00336{bottom:0.000000pt;}
.y118_c00336{bottom:71.356000pt;}
.y117_c00336{bottom:106.245333pt;}
.y116_c00336{bottom:106.797333pt;}
.y115_c00336{bottom:107.462667pt;}
.y114_c00336{bottom:107.898667pt;}
.y113_c00336{bottom:108.114667pt;}
.y112_c00336{bottom:108.653333pt;}
.y111_c00336{bottom:108.984000pt;}
.y110_c00336{bottom:109.304000pt;}
.y10f_c00336{bottom:109.969333pt;}
.y10e_c00336{bottom:110.492000pt;}
.y10d_c00336{bottom:111.138667pt;}
.y10c_c00336{bottom:111.449333pt;}
.y10b_c00336{bottom:112.082667pt;}
.y10a_c00336{bottom:138.965333pt;}
.y109_c00336{bottom:146.902200pt;}
.y108_c00336{bottom:147.804852pt;}
.y107_c00336{bottom:148.816612pt;}
.y106_c00336{bottom:149.594372pt;}
.y105_c00336{bottom:149.987409pt;}
.y104_c00336{bottom:150.364724pt;}
.y103_c00336{bottom:151.502757pt;}
.y102_c00336{bottom:151.883829pt;}
.y101_c00336{bottom:152.616400pt;}
.y100_c00336{bottom:171.221057pt;}
.yff_c00336{bottom:171.675721pt;}
.yfe_c00336{bottom:173.535103pt;}
.yfd_c00336{bottom:174.195479pt;}
.yfc_c00336{bottom:174.874653pt;}
.yfb_c00336{bottom:176.487720pt;}
.yfa_c00336{bottom:178.730281pt;}
.yf9_c00336{bottom:179.656875pt;}
.yf8_c00336{bottom:181.220537pt;}
.yf7_c00336{bottom:182.584744pt;}
.yf6_c00336{bottom:183.663199pt;}
.yf5_c00336{bottom:184.304040pt;}
.yf4_c00336{bottom:203.097995pt;}
.yf3_c00336{bottom:203.760484pt;}
.yf2_c00336{bottom:204.466831pt;}
.yf1_c00336{bottom:205.550596pt;}
.yf0_c00336{bottom:205.904744pt;}
.yef_c00336{bottom:207.210040pt;}
.yee_c00336{bottom:207.912889pt;}
.yed_c00336{bottom:208.725192pt;}
.yec_c00336{bottom:209.427029pt;}
.yeb_c00336{bottom:209.751585pt;}
.yea_c00336{bottom:236.963693pt;}
.ye9_c00336{bottom:238.367552pt;}
.ye8_c00336{bottom:241.303793pt;}
.ye7_c00336{bottom:242.227412pt;}
.ye6_c00336{bottom:242.901067pt;}
.ye5_c00336{bottom:244.961008pt;}
.ye4_c00336{bottom:245.850004pt;}
.ye3_c00336{bottom:247.206667pt;}
.ye2_c00336{bottom:269.268775pt;}
.ye1_c00336{bottom:269.269285pt;}
.ye0_c00336{bottom:299.317316pt;}
.ydf_c00336{bottom:300.278880pt;}
.yde_c00336{bottom:300.727401pt;}
.ydd_c00336{bottom:301.388009pt;}
.ydc_c00336{bottom:302.333680pt;}
.ydb_c00336{bottom:303.294337pt;}
.yda_c00336{bottom:304.070792pt;}
.yd9_c00336{bottom:304.397161pt;}
.yd8_c00336{bottom:305.626244pt;}
.yd7_c00336{bottom:306.102309pt;}
.yd6_c00336{bottom:307.629220pt;}
.yd5_c00336{bottom:331.377189pt;}
.yd4_c00336{bottom:332.244313pt;}
.yd3_c00336{bottom:332.566164pt;}
.yd2_c00336{bottom:333.234721pt;}
.yd1_c00336{bottom:333.995367pt;}
.yd0_c00336{bottom:334.319964pt;}
.ycf_c00336{bottom:335.281424pt;}
.yce_c00336{bottom:336.044680pt;}
.ycd_c00336{bottom:337.215217pt;}
.ycc_c00336{bottom:337.633829pt;}
.ycb_c00336{bottom:364.475940pt;}
.yca_c00336{bottom:364.802204pt;}
.yc9_c00336{bottom:365.613957pt;}
.yc8_c00336{bottom:366.425420pt;}
.yc7_c00336{bottom:366.786087pt;}
.yc6_c00336{bottom:367.509581pt;}
.yc5_c00336{bottom:368.088011pt;}
.yc4_c00336{bottom:368.442055pt;}
.yc3_c00336{bottom:368.692493pt;}
.yc2_c00336{bottom:369.761407pt;}
.yc1_c00336{bottom:370.668185pt;}
.yc0_c00336{bottom:370.999077pt;}
.ybf_c00336{bottom:395.355285pt;}
.ybe_c00336{bottom:396.969475pt;}
.ybd_c00336{bottom:397.632884pt;}
.ybc_c00336{bottom:398.798081pt;}
.ybb_c00336{bottom:400.619715pt;}
.yba_c00336{bottom:401.288401pt;}
.yb9_c00336{bottom:401.956793pt;}
.yb8_c00336{bottom:402.883657pt;}
.yb7_c00336{bottom:404.004124pt;}
.yb6_c00336{bottom:404.892075pt;}
.yb5_c00336{bottom:406.927377pt;}
.yb4_c00336{bottom:407.566259pt;}
.yb3_c00336{bottom:408.204664pt;}
.yb2_c00336{bottom:429.919351pt;}
.yb1_c00336{bottom:430.660777pt;}
.yb0_c00336{bottom:431.077591pt;}
.yaf_c00336{bottom:431.376099pt;}
.yae_c00336{bottom:433.020488pt;}
.yad_c00336{bottom:434.549319pt;}
.yac_c00336{bottom:434.952252pt;}
.yab_c00336{bottom:435.789505pt;}
.yaa_c00336{bottom:436.178219pt;}
.ya9_c00336{bottom:436.856388pt;}
.ya8_c00336{bottom:437.248093pt;}
.ya7_c00336{bottom:461.732785pt;}
.ya6_c00336{bottom:462.247069pt;}
.ya5_c00336{bottom:463.437432pt;}
.ya4_c00336{bottom:464.106665pt;}
.ya3_c00336{bottom:464.440545pt;}
.ya2_c00336{bottom:465.266677pt;}
.ya1_c00336{bottom:465.943232pt;}
.ya0_c00336{bottom:466.784007pt;}
.y9f_c00336{bottom:467.285711pt;}
.y9e_c00336{bottom:468.937793pt;}
.y9d_c00336{bottom:469.413499pt;}
.y9c_c00336{bottom:469.893488pt;}
.y9b_c00336{bottom:492.597520pt;}
.y9a_c00336{bottom:492.598005pt;}
.y97_c00336{bottom:492.598212pt;}
.y98_c00336{bottom:492.598548pt;}
.y95_c00336{bottom:492.598553pt;}
.y99_c00336{bottom:492.598612pt;}
.y96_c00336{bottom:492.598777pt;}
.y94_c00336{bottom:492.598879pt;}
.y93_c00336{bottom:492.599539pt;}
.y92_c00336{bottom:524.023340pt;}
.y91_c00336{bottom:524.261519pt;}
.y90_c00336{bottom:524.524612pt;}
.y8f_c00336{bottom:524.976157pt;}
.y8e_c00336{bottom:525.504067pt;}
.y8d_c00336{bottom:525.863953pt;}
.y8c_c00336{bottom:526.584017pt;}
.y8b_c00336{bottom:526.935565pt;}
.y8a_c00336{bottom:527.116929pt;}
.y89_c00336{bottom:528.085155pt;}
.y88_c00336{bottom:528.944360pt;}
.y87_c00336{bottom:558.849164pt;}
.y85_c00336{bottom:558.849220pt;}
.y7f_c00336{bottom:558.849265pt;}
.y81_c00336{bottom:558.849355pt;}
.y7e_c00336{bottom:558.849384pt;}
.y7d_c00336{bottom:558.849423pt;}
.y84_c00336{bottom:558.849500pt;}
.y86_c00336{bottom:558.849524pt;}
.y7c_c00336{bottom:558.849621pt;}
.y80_c00336{bottom:558.849641pt;}
.y83_c00336{bottom:558.849699pt;}
.y82_c00336{bottom:558.849979pt;}
.y7b_c00336{bottom:588.469343pt;}
.y7a_c00336{bottom:588.955861pt;}
.y79_c00336{bottom:590.553436pt;}
.y78_c00336{bottom:592.286060pt;}
.y77_c00336{bottom:592.766863pt;}
.y76_c00336{bottom:594.018503pt;}
.y75_c00336{bottom:594.486725pt;}
.y74_c00336{bottom:595.586376pt;}
.y73_c00336{bottom:596.179153pt;}
.y72_c00336{bottom:596.635835pt;}
.y71_c00336{bottom:619.537912pt;}
.y70_c00336{bottom:621.391841pt;}
.y6f_c00336{bottom:621.898237pt;}
.y6e_c00336{bottom:622.407467pt;}
.y6d_c00336{bottom:623.245000pt;}
.y6c_c00336{bottom:623.738612pt;}
.y6b_c00336{bottom:625.415809pt;}
.y6a_c00336{bottom:625.926013pt;}
.y69_c00336{bottom:626.428125pt;}
.y68_c00336{bottom:627.085753pt;}
.y67_c00336{bottom:627.602667pt;}
.y66_c00336{bottom:653.529004pt;}
.y65_c00336{bottom:653.529037pt;}
.y64_c00336{bottom:684.626464pt;}
.y63_c00336{bottom:685.103480pt;}
.y62_c00336{bottom:685.343297pt;}
.y61_c00336{bottom:685.886569pt;}
.y60_c00336{bottom:686.677481pt;}
.y5f_c00336{bottom:686.920073pt;}
.y5e_c00336{bottom:687.155573pt;}
.y5d_c00336{bottom:687.779531pt;}
.y5c_c00336{bottom:688.014719pt;}
.y5b_c00336{bottom:688.787923pt;}
.y5a_c00336{bottom:689.018063pt;}
.y59_c00336{bottom:717.254885pt;}
.y58_c00336{bottom:717.741631pt;}
.y57_c00336{bottom:718.726285pt;}
.y56_c00336{bottom:719.127516pt;}
.y55_c00336{bottom:719.420173pt;}
.y54_c00336{bottom:720.214227pt;}
.y53_c00336{bottom:720.506971pt;}
.y52_c00336{bottom:720.799212pt;}
.y51_c00336{bottom:721.665757pt;}
.y50_c00336{bottom:721.862047pt;}
.y4f_c00336{bottom:722.139984pt;}
.y4e_c00336{bottom:749.231777pt;}
.y4d_c00336{bottom:750.223147pt;}
.y4c_c00336{bottom:750.575516pt;}
.y4b_c00336{bottom:751.185036pt;}
.y4a_c00336{bottom:751.549701pt;}
.y49_c00336{bottom:751.730829pt;}
.y48_c00336{bottom:752.089355pt;}
.y47_c00336{bottom:752.693968pt;}
.y46_c00336{bottom:753.054592pt;}
.y45_c00336{bottom:753.311327pt;}
.y44_c00336{bottom:753.822507pt;}
.y42_c00336{bottom:780.082520pt;}
.y43_c00336{bottom:780.082740pt;}
.y41_c00336{bottom:780.083099pt;}
.y3f_c00336{bottom:780.083252pt;}
.y3c_c00336{bottom:780.083264pt;}
.y40_c00336{bottom:780.083277pt;}
.y3e_c00336{bottom:780.083457pt;}
.y3d_c00336{bottom:780.083539pt;}
.y3b_c00336{bottom:780.083799pt;}
.y38_c00336{bottom:780.083829pt;}
.y36_c00336{bottom:780.084027pt;}
.y39_c00336{bottom:780.084104pt;}
.y37_c00336{bottom:780.084105pt;}
.y3a_c00336{bottom:780.084352pt;}
.y35_c00336{bottom:780.084605pt;}
.y34_c00336{bottom:811.964180pt;}
.y33_c00336{bottom:812.437413pt;}
.y32_c00336{bottom:812.678280pt;}
.y31_c00336{bottom:813.145385pt;}
.y30_c00336{bottom:813.501359pt;}
.y2f_c00336{bottom:813.978113pt;}
.y2e_c00336{bottom:814.151249pt;}
.y2d_c00336{bottom:814.328048pt;}
.y2c_c00336{bottom:814.616117pt;}
.y2b_c00336{bottom:815.028769pt;}
.y1f_c00336{bottom:844.074161pt;}
.y20_c00336{bottom:844.450603pt;}
.y21_c00336{bottom:844.645921pt;}
.y22_c00336{bottom:844.888839pt;}
.y23_c00336{bottom:845.085245pt;}
.y24_c00336{bottom:845.233399pt;}
.y25_c00336{bottom:845.383485pt;}
.y26_c00336{bottom:845.820100pt;}
.y27_c00336{bottom:846.017473pt;}
.y28_c00336{bottom:846.360201pt;}
.y29_c00336{bottom:846.568389pt;}
.y2a_c00336{bottom:846.765745pt;}
.y1e_c00336{bottom:873.118581pt;}
.y1d_c00336{bottom:873.599379pt;}
.y1c_c00336{bottom:874.158000pt;}
.y1b_c00336{bottom:874.392077pt;}
.y1a_c00336{bottom:874.712944pt;}
.y19_c00336{bottom:874.873621pt;}
.y18_c00336{bottom:875.334820pt;}
.y17_c00336{bottom:875.575487pt;}
.y16_c00336{bottom:876.057620pt;}
.y15_c00336{bottom:876.680188pt;}
.y14_c00336{bottom:876.910241pt;}
.y13_c00336{bottom:877.451259pt;}
.y12_c00336{bottom:877.677669pt;}
.y11_c00336{bottom:904.899592pt;}
.y10_c00336{bottom:905.941308pt;}
.yf_c00336{bottom:906.319001pt;}
.ye_c00336{bottom:906.702761pt;}
.yd_c00336{bottom:907.613923pt;}
.yc_c00336{bottom:907.985255pt;}
.yb_c00336{bottom:908.896347pt;}
.ya_c00336{bottom:909.273953pt;}
.y9_c00336{bottom:910.038336pt;}
.y8_c00336{bottom:910.802667pt;}
.y7_c00336{bottom:969.638499pt;}
.y6_c00336{bottom:970.895157pt;}
.y5_c00336{bottom:971.298451pt;}
.y4_c00336{bottom:971.718507pt;}
.y3_c00336{bottom:972.686224pt;}
.y2_c00336{bottom:973.096144pt;}
.y1_c00336{bottom:973.922667pt;}
.hf_c00336{height:58.666667pt;}
.h10_c00336{height:64.000000pt;}
.h2_c00336{height:64.006272pt;}
.h8_c00336{height:64.009247pt;}
.h5_c00336{height:69.339192pt;}
.hd_c00336{height:69.351670pt;}
.h11_c00336{height:74.666667pt;}
.h3_c00336{height:74.672976pt;}
.h9_c00336{height:74.677455pt;}
.he_c00336{height:74.686413pt;}
.h4_c00336{height:80.006760pt;}
.h6_c00336{height:80.011559pt;}
.hc_c00336{height:80.021157pt;}
.h7_c00336{height:90.679767pt;}
.hb_c00336{height:106.682079pt;}
.ha_c00336{height:112.016183pt;}
.h1_c00336{height:1108.666667pt;}
.h0_c00336{height:1108.800000pt;}
.w0_c00336{width:813.333333pt;}
.x0_c00336{left:0.000000pt;}
.x23_c00336{left:144.643952pt;}
.x3d_c00336{left:145.909024pt;}
.x11_c00336{left:146.825285pt;}
.x53_c00336{left:173.876257pt;}
.x12_c00336{left:175.115123pt;}
.x61_c00336{left:184.097800pt;}
.x6b_c00336{left:185.040000pt;}
.x4c_c00336{left:192.957119pt;}
.x36_c00336{left:194.029449pt;}
.x31_c00336{left:202.936944pt;}
.x43_c00336{left:212.154280pt;}
.x24_c00336{left:213.520893pt;}
.x66_c00336{left:221.361475pt;}
.x1b_c00336{left:222.539533pt;}
.x32_c00336{left:231.507768pt;}
.x1_c00336{left:241.501333pt;}
.x8_c00336{left:242.477333pt;}
.x5b_c00336{left:249.168392pt;}
.x54_c00336{left:250.128156pt;}
.x1c_c00336{left:261.678019pt;}
.x4d_c00336{left:270.488847pt;}
.x13_c00336{left:271.562731pt;}
.x37_c00336{left:280.690163pt;}
.x25_c00336{left:291.030615pt;}
.x4f_c00336{left:299.528376pt;}
.x2_c00336{left:300.538667pt;}
.x29_c00336{left:301.684287pt;}
.x1d_c00336{left:310.388073pt;}
.x26_c00336{left:319.838565pt;}
.x3_c00336{left:329.818667pt;}
.x33_c00336{left:338.788016pt;}
.x46_c00336{left:340.097563pt;}
.x47_c00336{left:348.369991pt;}
.x14_c00336{left:349.303775pt;}
.x5c_c00336{left:359.100397pt;}
.x9_c00336{left:360.070667pt;}
.x62_c00336{left:368.397088pt;}
.x3f_c00336{left:369.406667pt;}
.x57_c00336{left:377.949848pt;}
.x1e_c00336{left:379.284193pt;}
.xa_c00336{left:389.117333pt;}
.x4_c00336{left:398.941333pt;}
.x48_c00336{left:407.647393pt;}
.x3a_c00336{left:408.615424pt;}
.x15_c00336{left:409.574359pt;}
.x63_c00336{left:416.895237pt;}
.x2a_c00336{left:418.813397pt;}
.x69_c00336{left:427.693333pt;}
.x5_c00336{left:428.945333pt;}
.x5d_c00336{left:436.860349pt;}
.x16_c00336{left:439.576300pt;}
.x58_c00336{left:447.310776pt;}
.x2b_c00336{left:448.335723pt;}
.x6_c00336{left:457.752000pt;}
.xb_c00336{left:459.201333pt;}
.x50_c00336{left:466.891043pt;}
.x40_c00336{left:468.065333pt;}
.x59_c00336{left:476.367807pt;}
.x51_c00336{left:486.531043pt;}
.xc_c00336{left:487.765333pt;}
.x17_c00336{left:497.210711pt;}
.x34_c00336{left:507.040769pt;}
.x18_c00336{left:517.366695pt;}
.x2c_c00336{left:518.420895pt;}
.x44_c00336{left:526.646273pt;}
.x49_c00336{left:527.582357pt;}
.x1f_c00336{left:536.238239pt;}
.x3b_c00336{left:537.765147pt;}
.x35_c00336{left:546.148131pt;}
.x7_c00336{left:547.513333pt;}
.x5a_c00336{left:555.593071pt;}
.x67_c00336{left:556.582808pt;}
.xd_c00336{left:557.854667pt;}
.x55_c00336{left:565.364227pt;}
.x2d_c00336{left:567.145128pt;}
.x27_c00336{left:576.428563pt;}
.x38_c00336{left:586.464755pt;}
.xe_c00336{left:587.374667pt;}
.x5e_c00336{left:594.812435pt;}
.x52_c00336{left:595.919043pt;}
.x2e_c00336{left:596.907488pt;}
.x20_c00336{left:604.864956pt;}
.x41_c00336{left:606.110667pt;}
.x68_c00336{left:614.824141pt;}
.xf_c00336{left:616.428000pt;}
.x2f_c00336{left:625.469640pt;}
.x45_c00336{left:626.505307pt;}
.x39_c00336{left:635.190661pt;}
.x4a_c00336{left:636.427825pt;}
.x21_c00336{left:646.398680pt;}
.x28_c00336{left:655.402423pt;}
.x19_c00336{left:656.573076pt;}
.x5f_c00336{left:662.411503pt;}
.x4b_c00336{left:665.711815pt;}
.x56_c00336{left:669.413531pt;}
.x6a_c00336{left:676.662667pt;}
.x22_c00336{left:685.995936pt;}
.x60_c00336{left:689.605815pt;}
.x3e_c00336{left:691.234501pt;}
.x3c_c00336{left:695.219373pt;}
.x10_c00336{left:696.560000pt;}
.x65_c00336{left:701.278772pt;}
.x4e_c00336{left:704.714284pt;}
.x30_c00336{left:705.876563pt;}
.x64_c00336{left:713.357289pt;}
.x42_c00336{left:715.165333pt;}
.x1a_c00336{left:716.638309pt;}
}





/* 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_c00337 {
    display:none;
  }
  .loading-indicator_c00337.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00337 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_c00337 { 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_c00337" -> "#page-container .classname_c00337")
 */
.pf_c00337 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00337 { /* 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_c00337.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00337 { /* 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_c00337 { /* 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_c00337 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00337 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00337 {overflow:visible;}
  }
}
.c_c00337 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00337 { /* 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_c00337:after { /* webkit #35443 */
  content: '';
}
.t_c00337:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00337 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 */
}
.__c00337 { /* 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_c00337 { /* info for Javascript */
  display:none;
}
.l_c00337 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00337 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00337 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00337: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_c00337 {
    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_c00337.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00337.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_c00337 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00337{font-family:sans-serif;visibility:hidden;}
.sc__c00337{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00337{-webkit-text-stroke:0px transparent;}
}
.y0_c00337{bottom:0.000000px;}
.h1_c00337{height:1247.250000px;}
.h0_c00337{height:1247.400000px;}
.w0_c00337{width:915.000000px;}
.x0_c00337{left:0.000000px;}
@media print{
.y0_c00337{bottom:0.000000pt;}
.h1_c00337{height:1108.666667pt;}
.h0_c00337{height:1108.800000pt;}
.w0_c00337{width:813.333333pt;}
.x0_c00337{left:0.000000pt;}
}





/* 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_c00338 {
    display:none;
  }
  .loading-indicator_c00338.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00338 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_c00338 { 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_c00338" -> "#page-container .classname_c00338")
 */
.pf_c00338 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00338 { /* 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_c00338.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00338 { /* 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_c00338 { /* 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_c00338 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00338 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00338 {overflow:visible;}
  }
}
.c_c00338 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00338 { /* 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_c00338:after { /* webkit #35443 */
  content: '';
}
.t_c00338:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00338 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 */
}
.__c00338 { /* 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_c00338 { /* info for Javascript */
  display:none;
}
.l_c00338 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00338 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00338 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00338: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_c00338 {
    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_c00338.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00338.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_c00338 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00338{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00338;src:url('chunks/assets/font_7c6b9abe6ee2a268480c528b.woff2')format("woff");}.ff1_c00338{font-family:ff1_c00338;line-height:1.000000;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;}
.m97_c00338{transform:matrix(0.017309,0.000138,-0.002000,0.249992,0,0);-ms-transform:matrix(0.017309,0.000138,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.017309,0.000138,-0.002000,0.249992,0,0);}
.m15_c00338{transform:matrix(0.105147,-0.000736,0.001750,0.249994,0,0);-ms-transform:matrix(0.105147,-0.000736,0.001750,0.249994,0,0);-webkit-transform:matrix(0.105147,-0.000736,0.001750,0.249994,0,0);}
.m55_c00338{transform:matrix(0.129095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129095,0.000000,0.000000,0.250000,0,0);}
.md9_c00338{transform:matrix(0.129568,0.000777,-0.001500,0.249996,0,0);-ms-transform:matrix(0.129568,0.000777,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.129568,0.000777,-0.001500,0.249996,0,0);}
.mee_c00338{transform:matrix(0.134299,0.001746,-0.003250,0.249979,0,0);-ms-transform:matrix(0.134299,0.001746,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.134299,0.001746,-0.003250,0.249979,0,0);}
.m82_c00338{transform:matrix(0.136216,0.001090,-0.002000,0.249992,0,0);-ms-transform:matrix(0.136216,0.001090,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.136216,0.001090,-0.002000,0.249992,0,0);}
.m6c_c00338{transform:matrix(0.137940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137940,0.000000,0.000000,0.250000,0,0);}
.mac_c00338{transform:matrix(0.153662,0.000922,-0.001500,0.249996,0,0);-ms-transform:matrix(0.153662,0.000922,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.153662,0.000922,-0.001500,0.249996,0,0);}
.mb_c00338{transform:matrix(0.156601,-0.001096,0.001750,0.249994,0,0);-ms-transform:matrix(0.156601,-0.001096,0.001750,0.249994,0,0);-webkit-transform:matrix(0.156601,-0.001096,0.001750,0.249994,0,0);}
.mf5_c00338{transform:matrix(0.160041,0.002081,-0.003250,0.249979,0,0);-ms-transform:matrix(0.160041,0.002081,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.160041,0.002081,-0.003250,0.249979,0,0);}
.m103_c00338{transform:matrix(0.163256,0.002122,-0.003250,0.249979,0,0);-ms-transform:matrix(0.163256,0.002122,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.163256,0.002122,-0.003250,0.249979,0,0);}
.m20_c00338{transform:matrix(0.163375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163375,0.000000,0.000000,0.250000,0,0);}
.mf1_c00338{transform:matrix(0.164171,0.002134,-0.003250,0.249979,0,0);-ms-transform:matrix(0.164171,0.002134,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.164171,0.002134,-0.003250,0.249979,0,0);}
.mf6_c00338{transform:matrix(0.164206,0.002135,-0.003250,0.249979,0,0);-ms-transform:matrix(0.164206,0.002135,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.164206,0.002135,-0.003250,0.249979,0,0);}
.ma2_c00338{transform:matrix(0.164637,0.000988,-0.001500,0.249996,0,0);-ms-transform:matrix(0.164637,0.000988,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.164637,0.000988,-0.001500,0.249996,0,0);}
.ma6_c00338{transform:matrix(0.166527,0.000999,-0.001500,0.249996,0,0);-ms-transform:matrix(0.166527,0.000999,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.166527,0.000999,-0.001500,0.249996,0,0);}
.m21_c00338{transform:matrix(0.167455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167455,0.000000,0.000000,0.250000,0,0);}
.mab_c00338{transform:matrix(0.167462,0.001005,-0.001500,0.249996,0,0);-ms-transform:matrix(0.167462,0.001005,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.167462,0.001005,-0.001500,0.249996,0,0);}
.m3b_c00338{transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168250,0.000000,0.000000,0.250000,0,0);}
.m25_c00338{transform:matrix(0.168540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168540,0.000000,0.000000,0.250000,0,0);}
.m112_c00338{transform:matrix(0.168976,0.003380,-0.004999,0.249950,0,0);-ms-transform:matrix(0.168976,0.003380,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.168976,0.003380,-0.004999,0.249950,0,0);}
.mf9_c00338{transform:matrix(0.169331,0.002201,-0.003250,0.249979,0,0);-ms-transform:matrix(0.169331,0.002201,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.169331,0.002201,-0.003250,0.249979,0,0);}
.mfc_c00338{transform:matrix(0.171710,0.002232,-0.003250,0.249979,0,0);-ms-transform:matrix(0.171710,0.002232,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.171710,0.002232,-0.003250,0.249979,0,0);}
.m123_c00338{transform:matrix(0.172178,0.002410,-0.003500,0.249976,0,0);-ms-transform:matrix(0.172178,0.002410,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.172178,0.002410,-0.003500,0.249976,0,0);}
.mf4_c00338{transform:matrix(0.172555,0.002243,-0.003250,0.249979,0,0);-ms-transform:matrix(0.172555,0.002243,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.172555,0.002243,-0.003250,0.249979,0,0);}
.ma5_c00338{transform:matrix(0.172567,0.001035,-0.001500,0.249996,0,0);-ms-transform:matrix(0.172567,0.001035,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.172567,0.001035,-0.001500,0.249996,0,0);}
.m11d_c00338{transform:matrix(0.172818,0.002419,-0.003500,0.249976,0,0);-ms-transform:matrix(0.172818,0.002419,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.172818,0.002419,-0.003500,0.249976,0,0);}
.m27_c00338{transform:matrix(0.173575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173575,0.000000,0.000000,0.250000,0,0);}
.m40_c00338{transform:matrix(0.173675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173675,0.000000,0.000000,0.250000,0,0);}
.mf8_c00338{transform:matrix(0.173690,0.002258,-0.003250,0.249979,0,0);-ms-transform:matrix(0.173690,0.002258,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.173690,0.002258,-0.003250,0.249979,0,0);}
.ma8_c00338{transform:matrix(0.173782,0.001043,-0.001500,0.249996,0,0);-ms-transform:matrix(0.173782,0.001043,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.173782,0.001043,-0.001500,0.249996,0,0);}
.ma4_c00338{transform:matrix(0.177707,0.001066,-0.001500,0.249996,0,0);-ms-transform:matrix(0.177707,0.001066,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.177707,0.001066,-0.001500,0.249996,0,0);}
.m116_c00338{transform:matrix(0.178334,0.003567,-0.004999,0.249950,0,0);-ms-transform:matrix(0.178334,0.003567,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.178334,0.003567,-0.004999,0.249950,0,0);}
.m11e_c00338{transform:matrix(0.178887,0.002504,-0.003500,0.249976,0,0);-ms-transform:matrix(0.178887,0.002504,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.178887,0.002504,-0.003500,0.249976,0,0);}
.mf3_c00338{transform:matrix(0.181070,0.002354,-0.003250,0.249979,0,0);-ms-transform:matrix(0.181070,0.002354,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.181070,0.002354,-0.003250,0.249979,0,0);}
.m2e_c00338{transform:matrix(0.181142,-0.001087,0.001500,0.249996,0,0);-ms-transform:matrix(0.181142,-0.001087,0.001500,0.249996,0,0);-webkit-transform:matrix(0.181142,-0.001087,0.001500,0.249996,0,0);}
.m52_c00338{transform:matrix(0.181145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181145,0.000000,0.000000,0.250000,0,0);}
.mff_c00338{transform:matrix(0.181870,0.002364,-0.003250,0.249979,0,0);-ms-transform:matrix(0.181870,0.002364,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.181870,0.002364,-0.003250,0.249979,0,0);}
.mfb_c00338{transform:matrix(0.182015,0.002366,-0.003250,0.249979,0,0);-ms-transform:matrix(0.182015,0.002366,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.182015,0.002366,-0.003250,0.249979,0,0);}
.m28_c00338{transform:matrix(0.182060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182060,0.000000,0.000000,0.250000,0,0);}
.mf2_c00338{transform:matrix(0.182475,0.002372,-0.003250,0.249979,0,0);-ms-transform:matrix(0.182475,0.002372,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.182475,0.002372,-0.003250,0.249979,0,0);}
.m127_c00338{transform:matrix(0.183172,0.002564,-0.003500,0.249976,0,0);-ms-transform:matrix(0.183172,0.002564,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.183172,0.002564,-0.003500,0.249976,0,0);}
.m114_c00338{transform:matrix(0.183323,0.003666,-0.004999,0.249950,0,0);-ms-transform:matrix(0.183323,0.003666,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.183323,0.003666,-0.004999,0.249950,0,0);}
.m102_c00338{transform:matrix(0.183345,0.002383,-0.003250,0.249979,0,0);-ms-transform:matrix(0.183345,0.002383,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.183345,0.002383,-0.003250,0.249979,0,0);}
.m9a_c00338{transform:matrix(0.183617,0.001102,-0.001500,0.249996,0,0);-ms-transform:matrix(0.183617,0.001102,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.183617,0.001102,-0.001500,0.249996,0,0);}
.m100_c00338{transform:matrix(0.184459,0.002398,-0.003250,0.249979,0,0);-ms-transform:matrix(0.184459,0.002398,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.184459,0.002398,-0.003250,0.249979,0,0);}
.m11a_c00338{transform:matrix(0.185168,0.003703,-0.004999,0.249950,0,0);-ms-transform:matrix(0.185168,0.003703,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.185168,0.003703,-0.004999,0.249950,0,0);}
.m126_c00338{transform:matrix(0.185932,0.002603,-0.003500,0.249976,0,0);-ms-transform:matrix(0.185932,0.002603,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.185932,0.002603,-0.003500,0.249976,0,0);}
.m115_c00338{transform:matrix(0.186743,0.003735,-0.004999,0.249950,0,0);-ms-transform:matrix(0.186743,0.003735,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.186743,0.003735,-0.004999,0.249950,0,0);}
.maa_c00338{transform:matrix(0.187522,0.001125,-0.001500,0.249996,0,0);-ms-transform:matrix(0.187522,0.001125,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.187522,0.001125,-0.001500,0.249996,0,0);}
.m2a_c00338{transform:matrix(0.187837,-0.001127,0.001500,0.249996,0,0);-ms-transform:matrix(0.187837,-0.001127,0.001500,0.249996,0,0);-webkit-transform:matrix(0.187837,-0.001127,0.001500,0.249996,0,0);}
.m11b_c00338{transform:matrix(0.188512,0.003770,-0.004999,0.249950,0,0);-ms-transform:matrix(0.188512,0.003770,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.188512,0.003770,-0.004999,0.249950,0,0);}
.m135_c00338{transform:matrix(0.188765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188765,0.000000,0.000000,0.250000,0,0);}
.m11f_c00338{transform:matrix(0.189906,0.002659,-0.003500,0.249976,0,0);-ms-transform:matrix(0.189906,0.002659,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.189906,0.002659,-0.003500,0.249976,0,0);}
.mef_c00338{transform:matrix(0.190179,0.002472,-0.003250,0.249979,0,0);-ms-transform:matrix(0.190179,0.002472,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.190179,0.002472,-0.003250,0.249979,0,0);}
.ma7_c00338{transform:matrix(0.190477,0.001143,-0.001500,0.249996,0,0);-ms-transform:matrix(0.190477,0.001143,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.190477,0.001143,-0.001500,0.249996,0,0);}
.m9f_c00338{transform:matrix(0.190512,0.001143,-0.001500,0.249996,0,0);-ms-transform:matrix(0.190512,0.001143,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.190512,0.001143,-0.001500,0.249996,0,0);}
.ma9_c00338{transform:matrix(0.190862,0.001145,-0.001500,0.249996,0,0);-ms-transform:matrix(0.190862,0.001145,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.190862,0.001145,-0.001500,0.249996,0,0);}
.m128_c00338{transform:matrix(0.191090,0.004586,-0.005998,0.249928,0,0);-ms-transform:matrix(0.191090,0.004586,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.191090,0.004586,-0.005998,0.249928,0,0);}
.m9c_c00338{transform:matrix(0.192582,0.001155,-0.001500,0.249996,0,0);-ms-transform:matrix(0.192582,0.001155,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.192582,0.001155,-0.001500,0.249996,0,0);}
.me1_c00338{transform:matrix(0.192807,0.001157,-0.001500,0.249996,0,0);-ms-transform:matrix(0.192807,0.001157,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.192807,0.001157,-0.001500,0.249996,0,0);}
.m121_c00338{transform:matrix(0.193516,0.002709,-0.003500,0.249976,0,0);-ms-transform:matrix(0.193516,0.002709,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.193516,0.002709,-0.003500,0.249976,0,0);}
.m113_c00338{transform:matrix(0.193516,0.003870,-0.004999,0.249950,0,0);-ms-transform:matrix(0.193516,0.003870,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.193516,0.003870,-0.004999,0.249950,0,0);}
.m4b_c00338{transform:matrix(0.193805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193805,0.000000,0.000000,0.250000,0,0);}
.m91_c00338{transform:matrix(0.194114,0.001553,-0.002000,0.249992,0,0);-ms-transform:matrix(0.194114,0.001553,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.194114,0.001553,-0.002000,0.249992,0,0);}
.mf0_c00338{transform:matrix(0.194784,0.002532,-0.003250,0.249979,0,0);-ms-transform:matrix(0.194784,0.002532,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.194784,0.002532,-0.003250,0.249979,0,0);}
.m12a_c00338{transform:matrix(0.194884,0.004677,-0.005998,0.249928,0,0);-ms-transform:matrix(0.194884,0.004677,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.194884,0.004677,-0.005998,0.249928,0,0);}
.m3d_c00338{transform:matrix(0.194940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194940,0.000000,0.000000,0.250000,0,0);}
.m11c_c00338{transform:matrix(0.195106,0.002731,-0.003500,0.249976,0,0);-ms-transform:matrix(0.195106,0.002731,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.195106,0.002731,-0.003500,0.249976,0,0);}
.m9d_c00338{transform:matrix(0.195886,0.001175,-0.001500,0.249996,0,0);-ms-transform:matrix(0.195886,0.001175,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.195886,0.001175,-0.001500,0.249996,0,0);}
.md2_c00338{transform:matrix(0.196121,0.001177,-0.001500,0.249996,0,0);-ms-transform:matrix(0.196121,0.001177,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.196121,0.001177,-0.001500,0.249996,0,0);}
.m111_c00338{transform:matrix(0.196226,0.003925,-0.004999,0.249950,0,0);-ms-transform:matrix(0.196226,0.003925,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.196226,0.003925,-0.004999,0.249950,0,0);}
.med_c00338{transform:matrix(0.198023,0.002574,-0.003250,0.249979,0,0);-ms-transform:matrix(0.198023,0.002574,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.198023,0.002574,-0.003250,0.249979,0,0);}
.m124_c00338{transform:matrix(0.198186,0.002775,-0.003500,0.249976,0,0);-ms-transform:matrix(0.198186,0.002775,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.198186,0.002775,-0.003500,0.249976,0,0);}
.m32_c00338{transform:matrix(0.198451,-0.001191,0.001500,0.249996,0,0);-ms-transform:matrix(0.198451,-0.001191,0.001500,0.249996,0,0);-webkit-transform:matrix(0.198451,-0.001191,0.001500,0.249996,0,0);}
.m12f_c00338{transform:matrix(0.199043,0.004777,-0.005998,0.249928,0,0);-ms-transform:matrix(0.199043,0.004777,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.199043,0.004777,-0.005998,0.249928,0,0);}
.mfd_c00338{transform:matrix(0.199333,0.002591,-0.003250,0.249979,0,0);-ms-transform:matrix(0.199333,0.002591,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.199333,0.002591,-0.003250,0.249979,0,0);}
.m4f_c00338{transform:matrix(0.199365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199365,0.000000,0.000000,0.250000,0,0);}
.mfa_c00338{transform:matrix(0.199823,0.002598,-0.003250,0.249979,0,0);-ms-transform:matrix(0.199823,0.002598,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.199823,0.002598,-0.003250,0.249979,0,0);}
.m29_c00338{transform:matrix(0.200565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200565,0.000000,0.000000,0.250000,0,0);}
.m2b_c00338{transform:matrix(0.200876,-0.001205,0.001500,0.249996,0,0);-ms-transform:matrix(0.200876,-0.001205,0.001500,0.249996,0,0);-webkit-transform:matrix(0.200876,-0.001205,0.001500,0.249996,0,0);}
.m119_c00338{transform:matrix(0.201495,0.004030,-0.004999,0.249950,0,0);-ms-transform:matrix(0.201495,0.004030,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.201495,0.004030,-0.004999,0.249950,0,0);}
.m38_c00338{transform:matrix(0.201495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201495,0.000000,0.000000,0.250000,0,0);}
.m8e_c00338{transform:matrix(0.201834,0.001615,-0.002000,0.249992,0,0);-ms-transform:matrix(0.201834,0.001615,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.201834,0.001615,-0.002000,0.249992,0,0);}
.mf7_c00338{transform:matrix(0.202133,0.002628,-0.003250,0.249979,0,0);-ms-transform:matrix(0.202133,0.002628,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.202133,0.002628,-0.003250,0.249979,0,0);}
.m132_c00338{transform:matrix(0.202157,0.004852,-0.005998,0.249928,0,0);-ms-transform:matrix(0.202157,0.004852,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.202157,0.004852,-0.005998,0.249928,0,0);}
.m101_c00338{transform:matrix(0.202413,0.002631,-0.003250,0.249979,0,0);-ms-transform:matrix(0.202413,0.002631,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.202413,0.002631,-0.003250,0.249979,0,0);}
.m23_c00338{transform:matrix(0.202670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202670,0.000000,0.000000,0.250000,0,0);}
.ma3_c00338{transform:matrix(0.202796,0.001217,-0.001500,0.249996,0,0);-ms-transform:matrix(0.202796,0.001217,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.202796,0.001217,-0.001500,0.249996,0,0);}
.md7_c00338{transform:matrix(0.203196,0.001219,-0.001500,0.249996,0,0);-ms-transform:matrix(0.203196,0.001219,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.203196,0.001219,-0.001500,0.249996,0,0);}
.m24_c00338{transform:matrix(0.203295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203295,0.000000,0.000000,0.250000,0,0);}
.mad_c00338{transform:matrix(0.203836,0.001223,-0.001500,0.249996,0,0);-ms-transform:matrix(0.203836,0.001223,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.203836,0.001223,-0.001500,0.249996,0,0);}
.m26_c00338{transform:matrix(0.204090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204090,0.000000,0.000000,0.250000,0,0);}
.m36_c00338{transform:matrix(0.204485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204485,0.000000,0.000000,0.250000,0,0);}
.mfe_c00338{transform:matrix(0.204768,0.002662,-0.003250,0.249979,0,0);-ms-transform:matrix(0.204768,0.002662,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.204768,0.002662,-0.003250,0.249979,0,0);}
.m122_c00338{transform:matrix(0.204845,0.002868,-0.003500,0.249976,0,0);-ms-transform:matrix(0.204845,0.002868,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.204845,0.002868,-0.003500,0.249976,0,0);}
.m125_c00338{transform:matrix(0.205795,0.002881,-0.003500,0.249976,0,0);-ms-transform:matrix(0.205795,0.002881,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.205795,0.002881,-0.003500,0.249976,0,0);}
.m22_c00338{transform:matrix(0.206470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206470,0.000000,0.000000,0.250000,0,0);}
.m9b_c00338{transform:matrix(0.206901,0.001241,-0.001500,0.249996,0,0);-ms-transform:matrix(0.206901,0.001241,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.206901,0.001241,-0.001500,0.249996,0,0);}
.m106_c00338{transform:matrix(0.207247,0.002694,-0.003250,0.249979,0,0);-ms-transform:matrix(0.207247,0.002694,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.207247,0.002694,-0.003250,0.249979,0,0);}
.m7c_c00338{transform:matrix(0.207368,0.001659,-0.002000,0.249992,0,0);-ms-transform:matrix(0.207368,0.001659,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.207368,0.001659,-0.002000,0.249992,0,0);}
.m8f_c00338{transform:matrix(0.207388,0.001659,-0.002000,0.249992,0,0);-ms-transform:matrix(0.207388,0.001659,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.207388,0.001659,-0.002000,0.249992,0,0);}
.mdf_c00338{transform:matrix(0.207441,0.001245,-0.001500,0.249996,0,0);-ms-transform:matrix(0.207441,0.001245,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.207441,0.001245,-0.001500,0.249996,0,0);}
.m31_c00338{transform:matrix(0.207711,-0.001246,0.001500,0.249996,0,0);-ms-transform:matrix(0.207711,-0.001246,0.001500,0.249996,0,0);-webkit-transform:matrix(0.207711,-0.001246,0.001500,0.249996,0,0);}
.me7_c00338{transform:matrix(0.207937,0.002703,-0.003250,0.249979,0,0);-ms-transform:matrix(0.207937,0.002703,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.207937,0.002703,-0.003250,0.249979,0,0);}
.m60_c00338{transform:matrix(0.208015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208015,0.000000,0.000000,0.250000,0,0);}
.m117_c00338{transform:matrix(0.208313,0.004166,-0.004999,0.249950,0,0);-ms-transform:matrix(0.208313,0.004166,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.208313,0.004166,-0.004999,0.249950,0,0);}
.m50_c00338{transform:matrix(0.208370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208370,0.000000,0.000000,0.250000,0,0);}
.m12b_c00338{transform:matrix(0.209160,0.005020,-0.005998,0.249928,0,0);-ms-transform:matrix(0.209160,0.005020,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.209160,0.005020,-0.005998,0.249928,0,0);}
.m34_c00338{transform:matrix(0.209876,-0.001259,0.001500,0.249996,0,0);-ms-transform:matrix(0.209876,-0.001259,0.001500,0.249996,0,0);-webkit-transform:matrix(0.209876,-0.001259,0.001500,0.249996,0,0);}
.m120_c00338{transform:matrix(0.210504,0.002947,-0.003500,0.249976,0,0);-ms-transform:matrix(0.210504,0.002947,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.210504,0.002947,-0.003500,0.249976,0,0);}
.mea_c00338{transform:matrix(0.210812,0.002741,-0.003250,0.249979,0,0);-ms-transform:matrix(0.210812,0.002741,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.210812,0.002741,-0.003250,0.249979,0,0);}
.m104_c00338{transform:matrix(0.210892,0.002742,-0.003250,0.249979,0,0);-ms-transform:matrix(0.210892,0.002742,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.210892,0.002742,-0.003250,0.249979,0,0);}
.md4_c00338{transform:matrix(0.211056,0.001266,-0.001500,0.249996,0,0);-ms-transform:matrix(0.211056,0.001266,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.211056,0.001266,-0.001500,0.249996,0,0);}
.md5_c00338{transform:matrix(0.211111,0.001267,-0.001500,0.249996,0,0);-ms-transform:matrix(0.211111,0.001267,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.211111,0.001267,-0.001500,0.249996,0,0);}
.m118_c00338{transform:matrix(0.211428,0.004229,-0.004999,0.249950,0,0);-ms-transform:matrix(0.211428,0.004229,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.211428,0.004229,-0.004999,0.249950,0,0);}
.m130_c00338{transform:matrix(0.212124,0.005091,-0.005998,0.249928,0,0);-ms-transform:matrix(0.212124,0.005091,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.212124,0.005091,-0.005998,0.249928,0,0);}
.meb_c00338{transform:matrix(0.212167,0.002758,-0.003250,0.249979,0,0);-ms-transform:matrix(0.212167,0.002758,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.212167,0.002758,-0.003250,0.249979,0,0);}
.m2f_c00338{transform:matrix(0.212411,-0.001274,0.001500,0.249996,0,0);-ms-transform:matrix(0.212411,-0.001274,0.001500,0.249996,0,0);-webkit-transform:matrix(0.212411,-0.001274,0.001500,0.249996,0,0);}
.m69_c00338{transform:matrix(0.212510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212510,0.000000,0.000000,0.250000,0,0);}
.m105_c00338{transform:matrix(0.213312,0.002773,-0.003250,0.249979,0,0);-ms-transform:matrix(0.213312,0.002773,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.213312,0.002773,-0.003250,0.249979,0,0);}
.mc8_c00338{transform:matrix(0.213686,0.001282,-0.001500,0.249996,0,0);-ms-transform:matrix(0.213686,0.001282,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.213686,0.001282,-0.001500,0.249996,0,0);}
.m67_c00338{transform:matrix(0.213805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213805,0.000000,0.000000,0.250000,0,0);}
.m3e_c00338{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m98_c00338{transform:matrix(0.214126,0.001285,-0.001500,0.249996,0,0);-ms-transform:matrix(0.214126,0.001285,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.214126,0.001285,-0.001500,0.249996,0,0);}
.m8b_c00338{transform:matrix(0.214408,0.001715,-0.002000,0.249992,0,0);-ms-transform:matrix(0.214408,0.001715,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.214408,0.001715,-0.002000,0.249992,0,0);}
.m56_c00338{transform:matrix(0.214990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214990,0.000000,0.000000,0.250000,0,0);}
.m65_c00338{transform:matrix(0.215705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215705,0.000000,0.000000,0.250000,0,0);}
.m94_c00338{transform:matrix(0.216328,0.001731,-0.002000,0.249992,0,0);-ms-transform:matrix(0.216328,0.001731,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.216328,0.001731,-0.002000,0.249992,0,0);}
.m7d_c00338{transform:matrix(0.216878,0.001735,-0.002000,0.249992,0,0);-ms-transform:matrix(0.216878,0.001735,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.216878,0.001735,-0.002000,0.249992,0,0);}
.m62_c00338{transform:matrix(0.216995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216995,0.000000,0.000000,0.250000,0,0);}
.m99_c00338{transform:matrix(0.217881,0.001307,-0.001500,0.249996,0,0);-ms-transform:matrix(0.217881,0.001307,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.217881,0.001307,-0.001500,0.249996,0,0);}
.m53_c00338{transform:matrix(0.218300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218300,0.000000,0.000000,0.250000,0,0);}
.m136_c00338{transform:matrix(0.218570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218570,0.000000,0.000000,0.250000,0,0);}
.me6_c00338{transform:matrix(0.218817,0.002845,-0.003250,0.249979,0,0);-ms-transform:matrix(0.218817,0.002845,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.218817,0.002845,-0.003250,0.249979,0,0);}
.m54_c00338{transform:matrix(0.219065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219065,0.000000,0.000000,0.250000,0,0);}
.m7e_c00338{transform:matrix(0.219203,0.001754,-0.002000,0.249992,0,0);-ms-transform:matrix(0.219203,0.001754,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.219203,0.001754,-0.002000,0.249992,0,0);}
.m12e_c00338{transform:matrix(0.219417,0.005266,-0.005998,0.249928,0,0);-ms-transform:matrix(0.219417,0.005266,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.219417,0.005266,-0.005998,0.249928,0,0);}
.m10a_c00338{transform:matrix(0.220281,0.002864,-0.003250,0.249979,0,0);-ms-transform:matrix(0.220281,0.002864,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.220281,0.002864,-0.003250,0.249979,0,0);}
.m33_c00338{transform:matrix(0.220796,-0.001325,0.001500,0.249996,0,0);-ms-transform:matrix(0.220796,-0.001325,0.001500,0.249996,0,0);-webkit-transform:matrix(0.220796,-0.001325,0.001500,0.249996,0,0);}
.m7b_c00338{transform:matrix(0.221138,0.001769,-0.002000,0.249992,0,0);-ms-transform:matrix(0.221138,0.001769,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.221138,0.001769,-0.002000,0.249992,0,0);}
.m30_c00338{transform:matrix(0.221141,-0.001327,0.001500,0.249996,0,0);-ms-transform:matrix(0.221141,-0.001327,0.001500,0.249996,0,0);-webkit-transform:matrix(0.221141,-0.001327,0.001500,0.249996,0,0);}
.m35_c00338{transform:matrix(0.222071,-0.001332,0.001500,0.249996,0,0);-ms-transform:matrix(0.222071,-0.001332,0.001500,0.249996,0,0);-webkit-transform:matrix(0.222071,-0.001332,0.001500,0.249996,0,0);}
.m89_c00338{transform:matrix(0.222118,0.001777,-0.002000,0.249992,0,0);-ms-transform:matrix(0.222118,0.001777,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.222118,0.001777,-0.002000,0.249992,0,0);}
.md1_c00338{transform:matrix(0.222426,0.001335,-0.001500,0.249996,0,0);-ms-transform:matrix(0.222426,0.001335,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.222426,0.001335,-0.001500,0.249996,0,0);}
.m2_c00338{transform:matrix(0.222495,-0.001557,0.001750,0.249994,0,0);-ms-transform:matrix(0.222495,-0.001557,0.001750,0.249994,0,0);-webkit-transform:matrix(0.222495,-0.001557,0.001750,0.249994,0,0);}
.mdd_c00338{transform:matrix(0.222716,0.001336,-0.001500,0.249996,0,0);-ms-transform:matrix(0.222716,0.001336,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.222716,0.001336,-0.001500,0.249996,0,0);}
.m9e_c00338{transform:matrix(0.223191,0.001339,-0.001500,0.249996,0,0);-ms-transform:matrix(0.223191,0.001339,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.223191,0.001339,-0.001500,0.249996,0,0);}
.m12d_c00338{transform:matrix(0.223556,0.005365,-0.005998,0.249928,0,0);-ms-transform:matrix(0.223556,0.005365,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.223556,0.005365,-0.005998,0.249928,0,0);}
.m6e_c00338{transform:matrix(0.223970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223970,0.000000,0.000000,0.250000,0,0);}
.md8_c00338{transform:matrix(0.224521,0.001347,-0.001500,0.249996,0,0);-ms-transform:matrix(0.224521,0.001347,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.224521,0.001347,-0.001500,0.249996,0,0);}
.m42_c00338{transform:matrix(0.224680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224680,0.000000,0.000000,0.250000,0,0);}
.m72_c00338{transform:matrix(0.225345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225345,0.000000,0.000000,0.250000,0,0);}
.m129_c00338{transform:matrix(0.225800,0.005419,-0.005998,0.249928,0,0);-ms-transform:matrix(0.225800,0.005419,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.225800,0.005419,-0.005998,0.249928,0,0);}
.m134_c00338{transform:matrix(0.225875,0.005421,-0.005998,0.249928,0,0);-ms-transform:matrix(0.225875,0.005421,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.225875,0.005421,-0.005998,0.249928,0,0);}
.mb0_c00338{transform:matrix(0.226106,0.001357,-0.001500,0.249996,0,0);-ms-transform:matrix(0.226106,0.001357,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.226106,0.001357,-0.001500,0.249996,0,0);}
.mae_c00338{transform:matrix(0.226131,0.001357,-0.001500,0.249996,0,0);-ms-transform:matrix(0.226131,0.001357,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.226131,0.001357,-0.001500,0.249996,0,0);}
.m7a_c00338{transform:matrix(0.226333,0.001811,-0.002000,0.249992,0,0);-ms-transform:matrix(0.226333,0.001811,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.226333,0.001811,-0.002000,0.249992,0,0);}
.me5_c00338{transform:matrix(0.226596,0.002946,-0.003250,0.249979,0,0);-ms-transform:matrix(0.226596,0.002946,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.226596,0.002946,-0.003250,0.249979,0,0);}
.m5d_c00338{transform:matrix(0.226745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226745,0.000000,0.000000,0.250000,0,0);}
.m66_c00338{transform:matrix(0.227540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227540,0.000000,0.000000,0.250000,0,0);}
.m3f_c00338{transform:matrix(0.227640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227640,0.000000,0.000000,0.250000,0,0);}
.m86_c00338{transform:matrix(0.227698,0.001822,-0.002000,0.249992,0,0);-ms-transform:matrix(0.227698,0.001822,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.227698,0.001822,-0.002000,0.249992,0,0);}
.m6b_c00338{transform:matrix(0.227945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227945,0.000000,0.000000,0.250000,0,0);}
.m110_c00338{transform:matrix(0.228141,0.002966,-0.003250,0.249979,0,0);-ms-transform:matrix(0.228141,0.002966,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.228141,0.002966,-0.003250,0.249979,0,0);}
.m5a_c00338{transform:matrix(0.228170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228170,0.000000,0.000000,0.250000,0,0);}
.m95_c00338{transform:matrix(0.228503,0.001828,-0.002000,0.249992,0,0);-ms-transform:matrix(0.228503,0.001828,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.228503,0.001828,-0.002000,0.249992,0,0);}
.mb3_c00338{transform:matrix(0.228811,0.001373,-0.001500,0.249996,0,0);-ms-transform:matrix(0.228811,0.001373,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.228811,0.001373,-0.001500,0.249996,0,0);}
.ma0_c00338{transform:matrix(0.229166,0.001375,-0.001500,0.249996,0,0);-ms-transform:matrix(0.229166,0.001375,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.229166,0.001375,-0.001500,0.249996,0,0);}
.m1_c00338{transform:matrix(0.229189,-0.001604,0.001750,0.249994,0,0);-ms-transform:matrix(0.229189,-0.001604,0.001750,0.249994,0,0);-webkit-transform:matrix(0.229189,-0.001604,0.001750,0.249994,0,0);}
.ma_c00338{transform:matrix(0.229519,-0.001607,0.001750,0.249994,0,0);-ms-transform:matrix(0.229519,-0.001607,0.001750,0.249994,0,0);-webkit-transform:matrix(0.229519,-0.001607,0.001750,0.249994,0,0);}
.m4e_c00338{transform:matrix(0.229865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229865,0.000000,0.000000,0.250000,0,0);}
.maf_c00338{transform:matrix(0.229971,0.001380,-0.001500,0.249996,0,0);-ms-transform:matrix(0.229971,0.001380,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.229971,0.001380,-0.001500,0.249996,0,0);}
.m3a_c00338{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.mde_c00338{transform:matrix(0.230056,0.001380,-0.001500,0.249996,0,0);-ms-transform:matrix(0.230056,0.001380,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.230056,0.001380,-0.001500,0.249996,0,0);}
.m12c_c00338{transform:matrix(0.230089,0.005522,-0.005998,0.249928,0,0);-ms-transform:matrix(0.230089,0.005522,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.230089,0.005522,-0.005998,0.249928,0,0);}
.mc4_c00338{transform:matrix(0.230211,0.001381,-0.001500,0.249996,0,0);-ms-transform:matrix(0.230211,0.001381,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.230211,0.001381,-0.001500,0.249996,0,0);}
.m1b_c00338{transform:matrix(0.230334,-0.001612,0.001750,0.249994,0,0);-ms-transform:matrix(0.230334,-0.001612,0.001750,0.249994,0,0);-webkit-transform:matrix(0.230334,-0.001612,0.001750,0.249994,0,0);}
.md0_c00338{transform:matrix(0.230761,0.001385,-0.001500,0.249996,0,0);-ms-transform:matrix(0.230761,0.001385,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.230761,0.001385,-0.001500,0.249996,0,0);}
.m70_c00338{transform:matrix(0.230895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230895,0.000000,0.000000,0.250000,0,0);}
.mec_c00338{transform:matrix(0.231055,0.003004,-0.003250,0.249979,0,0);-ms-transform:matrix(0.231055,0.003004,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.231055,0.003004,-0.003250,0.249979,0,0);}
.m37_c00338{transform:matrix(0.231075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231075,0.000000,0.000000,0.250000,0,0);}
.m10e_c00338{transform:matrix(0.231415,0.003008,-0.003250,0.249979,0,0);-ms-transform:matrix(0.231415,0.003008,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.231415,0.003008,-0.003250,0.249979,0,0);}
.me8_c00338{transform:matrix(0.231495,0.003009,-0.003250,0.249979,0,0);-ms-transform:matrix(0.231495,0.003009,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.231495,0.003009,-0.003250,0.249979,0,0);}
.m10_c00338{transform:matrix(0.231524,-0.001621,0.001750,0.249994,0,0);-ms-transform:matrix(0.231524,-0.001621,0.001750,0.249994,0,0);-webkit-transform:matrix(0.231524,-0.001621,0.001750,0.249994,0,0);}
.md3_c00338{transform:matrix(0.231851,0.001391,-0.001500,0.249996,0,0);-ms-transform:matrix(0.231851,0.001391,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.231851,0.001391,-0.001500,0.249996,0,0);}
.mdb_c00338{transform:matrix(0.232941,0.001398,-0.001500,0.249996,0,0);-ms-transform:matrix(0.232941,0.001398,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.232941,0.001398,-0.001500,0.249996,0,0);}
.m133_c00338{transform:matrix(0.234148,0.005620,-0.005998,0.249928,0,0);-ms-transform:matrix(0.234148,0.005620,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.234148,0.005620,-0.005998,0.249928,0,0);}
.mce_c00338{transform:matrix(0.234356,0.001406,-0.001500,0.249996,0,0);-ms-transform:matrix(0.234356,0.001406,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.234356,0.001406,-0.001500,0.249996,0,0);}
.me4_c00338{transform:matrix(0.234411,0.001406,-0.001500,0.249996,0,0);-ms-transform:matrix(0.234411,0.001406,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.234411,0.001406,-0.001500,0.249996,0,0);}
.m8d_c00338{transform:matrix(0.234717,0.001878,-0.002000,0.249992,0,0);-ms-transform:matrix(0.234717,0.001878,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.234717,0.001878,-0.002000,0.249992,0,0);}
.m10b_c00338{transform:matrix(0.234825,0.003053,-0.003250,0.249979,0,0);-ms-transform:matrix(0.234825,0.003053,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.234825,0.003053,-0.003250,0.249979,0,0);}
.mb9_c00338{transform:matrix(0.234851,0.001409,-0.001500,0.249996,0,0);-ms-transform:matrix(0.234851,0.001409,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.234851,0.001409,-0.001500,0.249996,0,0);}
.m85_c00338{transform:matrix(0.235122,0.001881,-0.002000,0.249992,0,0);-ms-transform:matrix(0.235122,0.001881,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.235122,0.001881,-0.002000,0.249992,0,0);}
.m2d_c00338{transform:matrix(0.235676,-0.001414,0.001500,0.249996,0,0);-ms-transform:matrix(0.235676,-0.001414,0.001500,0.249996,0,0);-webkit-transform:matrix(0.235676,-0.001414,0.001500,0.249996,0,0);}
.mbe_c00338{transform:matrix(0.235926,0.001416,-0.001500,0.249996,0,0);-ms-transform:matrix(0.235926,0.001416,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.235926,0.001416,-0.001500,0.249996,0,0);}
.md6_c00338{transform:matrix(0.236111,0.001417,-0.001500,0.249996,0,0);-ms-transform:matrix(0.236111,0.001417,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.236111,0.001417,-0.001500,0.249996,0,0);}
.m2c_c00338{transform:matrix(0.236346,-0.001418,0.001500,0.249996,0,0);-ms-transform:matrix(0.236346,-0.001418,0.001500,0.249996,0,0);-webkit-transform:matrix(0.236346,-0.001418,0.001500,0.249996,0,0);}
.m7f_c00338{transform:matrix(0.237032,0.001896,-0.002000,0.249992,0,0);-ms-transform:matrix(0.237032,0.001896,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.237032,0.001896,-0.002000,0.249992,0,0);}
.m6a_c00338{transform:matrix(0.237095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237095,0.000000,0.000000,0.250000,0,0);}
.mda_c00338{transform:matrix(0.237341,0.001424,-0.001500,0.249996,0,0);-ms-transform:matrix(0.237341,0.001424,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.237341,0.001424,-0.001500,0.249996,0,0);}
.mba_c00338{transform:matrix(0.237421,0.001425,-0.001500,0.249996,0,0);-ms-transform:matrix(0.237421,0.001425,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.237421,0.001425,-0.001500,0.249996,0,0);}
.m80_c00338{transform:matrix(0.237642,0.001901,-0.002000,0.249992,0,0);-ms-transform:matrix(0.237642,0.001901,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.237642,0.001901,-0.002000,0.249992,0,0);}
.m1d_c00338{transform:matrix(0.237969,-0.001666,0.001750,0.249994,0,0);-ms-transform:matrix(0.237969,-0.001666,0.001750,0.249994,0,0);-webkit-transform:matrix(0.237969,-0.001666,0.001750,0.249994,0,0);}
.m74_c00338{transform:matrix(0.238185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238185,0.000000,0.000000,0.250000,0,0);}
.m43_c00338{transform:matrix(0.238535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238535,0.000000,0.000000,0.250000,0,0);}
.m131_c00338{transform:matrix(0.239021,0.005737,-0.005998,0.249928,0,0);-ms-transform:matrix(0.239021,0.005737,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.239021,0.005737,-0.005998,0.249928,0,0);}
.me9_c00338{transform:matrix(0.239040,0.003108,-0.003250,0.249979,0,0);-ms-transform:matrix(0.239040,0.003108,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.239040,0.003108,-0.003250,0.249979,0,0);}
.m88_c00338{transform:matrix(0.239262,0.001914,-0.002000,0.249992,0,0);-ms-transform:matrix(0.239262,0.001914,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.239262,0.001914,-0.002000,0.249992,0,0);}
.m68_c00338{transform:matrix(0.239360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239360,0.000000,0.000000,0.250000,0,0);}
.m51_c00338{transform:matrix(0.239470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239470,0.000000,0.000000,0.250000,0,0);}
.m8c_c00338{transform:matrix(0.239772,0.001918,-0.002000,0.249992,0,0);-ms-transform:matrix(0.239772,0.001918,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.239772,0.001918,-0.002000,0.249992,0,0);}
.m4c_c00338{transform:matrix(0.239860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239860,0.000000,0.000000,0.250000,0,0);}
.m5f_c00338{transform:matrix(0.239890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239890,0.000000,0.000000,0.250000,0,0);}
.mc9_c00338{transform:matrix(0.239906,0.001439,-0.001500,0.249996,0,0);-ms-transform:matrix(0.239906,0.001439,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.239906,0.001439,-0.001500,0.249996,0,0);}
.m78_c00338{transform:matrix(0.240155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240155,0.000000,0.000000,0.250000,0,0);}
.m19_c00338{transform:matrix(0.240589,-0.001684,0.001750,0.249994,0,0);-ms-transform:matrix(0.240589,-0.001684,0.001750,0.249994,0,0);-webkit-transform:matrix(0.240589,-0.001684,0.001750,0.249994,0,0);}
.m81_c00338{transform:matrix(0.240647,0.001925,-0.002000,0.249992,0,0);-ms-transform:matrix(0.240647,0.001925,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.240647,0.001925,-0.002000,0.249992,0,0);}
.me3_c00338{transform:matrix(0.240671,0.001444,-0.001500,0.249996,0,0);-ms-transform:matrix(0.240671,0.001444,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.240671,0.001444,-0.001500,0.249996,0,0);}
.m39_c00338{transform:matrix(0.240805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240805,0.000000,0.000000,0.250000,0,0);}
.m46_c00338{transform:matrix(0.241415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241415,0.000000,0.000000,0.250000,0,0);}
.m8a_c00338{transform:matrix(0.241807,0.001934,-0.002000,0.249992,0,0);-ms-transform:matrix(0.241807,0.001934,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.241807,0.001934,-0.002000,0.249992,0,0);}
.m13_c00338{transform:matrix(0.242014,-0.001694,0.001750,0.249994,0,0);-ms-transform:matrix(0.242014,-0.001694,0.001750,0.249994,0,0);-webkit-transform:matrix(0.242014,-0.001694,0.001750,0.249994,0,0);}
.m3c_c00338{transform:matrix(0.242440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242440,0.000000,0.000000,0.250000,0,0);}
.mc0_c00338{transform:matrix(0.242541,0.001455,-0.001500,0.249996,0,0);-ms-transform:matrix(0.242541,0.001455,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.242541,0.001455,-0.001500,0.249996,0,0);}
.m48_c00338{transform:matrix(0.242745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242745,0.000000,0.000000,0.250000,0,0);}
.m64_c00338{transform:matrix(0.243470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243470,0.000000,0.000000,0.250000,0,0);}
.mb6_c00338{transform:matrix(0.243746,0.001462,-0.001500,0.249996,0,0);-ms-transform:matrix(0.243746,0.001462,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.243746,0.001462,-0.001500,0.249996,0,0);}
.m63_c00338{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.mdc_c00338{transform:matrix(0.243926,0.001464,-0.001500,0.249996,0,0);-ms-transform:matrix(0.243926,0.001464,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.243926,0.001464,-0.001500,0.249996,0,0);}
.m10f_c00338{transform:matrix(0.244074,0.003173,-0.003250,0.249979,0,0);-ms-transform:matrix(0.244074,0.003173,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.244074,0.003173,-0.003250,0.249979,0,0);}
.m5_c00338{transform:matrix(0.245209,-0.001716,0.001750,0.249994,0,0);-ms-transform:matrix(0.245209,-0.001716,0.001750,0.249994,0,0);-webkit-transform:matrix(0.245209,-0.001716,0.001750,0.249994,0,0);}
.mbc_c00338{transform:matrix(0.245211,0.001471,-0.001500,0.249996,0,0);-ms-transform:matrix(0.245211,0.001471,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.245211,0.001471,-0.001500,0.249996,0,0);}
.m11_c00338{transform:matrix(0.245454,-0.001718,0.001750,0.249994,0,0);-ms-transform:matrix(0.245454,-0.001718,0.001750,0.249994,0,0);-webkit-transform:matrix(0.245454,-0.001718,0.001750,0.249994,0,0);}
.m1a_c00338{transform:matrix(0.246199,-0.001723,0.001750,0.249994,0,0);-ms-transform:matrix(0.246199,-0.001723,0.001750,0.249994,0,0);-webkit-transform:matrix(0.246199,-0.001723,0.001750,0.249994,0,0);}
.mb1_c00338{transform:matrix(0.246506,0.001479,-0.001500,0.249996,0,0);-ms-transform:matrix(0.246506,0.001479,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.246506,0.001479,-0.001500,0.249996,0,0);}
.m41_c00338{transform:matrix(0.246705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246705,0.000000,0.000000,0.250000,0,0);}
.m5e_c00338{transform:matrix(0.246940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246940,0.000000,0.000000,0.250000,0,0);}
.mcc_c00338{transform:matrix(0.246976,0.001482,-0.001500,0.249996,0,0);-ms-transform:matrix(0.246976,0.001482,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.246976,0.001482,-0.001500,0.249996,0,0);}
.m8_c00338{transform:matrix(0.247749,-0.001734,0.001750,0.249994,0,0);-ms-transform:matrix(0.247749,-0.001734,0.001750,0.249994,0,0);-webkit-transform:matrix(0.247749,-0.001734,0.001750,0.249994,0,0);}
.mc5_c00338{transform:matrix(0.248646,0.001492,-0.001500,0.249996,0,0);-ms-transform:matrix(0.248646,0.001492,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.248646,0.001492,-0.001500,0.249996,0,0);}
.m4d_c00338{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m87_c00338{transform:matrix(0.249147,0.001993,-0.002000,0.249992,0,0);-ms-transform:matrix(0.249147,0.001993,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.249147,0.001993,-0.002000,0.249992,0,0);}
.mf_c00338{transform:matrix(0.249754,-0.001748,0.001750,0.249994,0,0);-ms-transform:matrix(0.249754,-0.001748,0.001750,0.249994,0,0);-webkit-transform:matrix(0.249754,-0.001748,0.001750,0.249994,0,0);}
.m93_c00338{transform:matrix(0.249992,0.002000,-0.002000,0.249992,0,0);-ms-transform:matrix(0.249992,0.002000,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.249992,0.002000,-0.002000,0.249992,0,0);}
.m96_c00338{transform:matrix(0.250022,0.002000,-0.002000,0.249992,0,0);-ms-transform:matrix(0.250022,0.002000,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.250022,0.002000,-0.002000,0.249992,0,0);}
.m16_c00338{transform:matrix(0.250024,-0.001750,0.001750,0.249994,0,0);-ms-transform:matrix(0.250024,-0.001750,0.001750,0.249994,0,0);-webkit-transform:matrix(0.250024,-0.001750,0.001750,0.249994,0,0);}
.m4_c00338{transform:matrix(0.250149,-0.001751,0.001750,0.249994,0,0);-ms-transform:matrix(0.250149,-0.001751,0.001750,0.249994,0,0);-webkit-transform:matrix(0.250149,-0.001751,0.001750,0.249994,0,0);}
.m92_c00338{transform:matrix(0.251867,0.002015,-0.002000,0.249992,0,0);-ms-transform:matrix(0.251867,0.002015,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.251867,0.002015,-0.002000,0.249992,0,0);}
.m61_c00338{transform:matrix(0.252255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252255,0.000000,0.000000,0.250000,0,0);}
.m83_c00338{transform:matrix(0.252292,0.002018,-0.002000,0.249992,0,0);-ms-transform:matrix(0.252292,0.002018,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.252292,0.002018,-0.002000,0.249992,0,0);}
.m0_c00338{transform:matrix(0.253869,-0.001777,0.001750,0.249994,0,0);-ms-transform:matrix(0.253869,-0.001777,0.001750,0.249994,0,0);-webkit-transform:matrix(0.253869,-0.001777,0.001750,0.249994,0,0);}
.me2_c00338{transform:matrix(0.256480,0.001539,-0.001500,0.249996,0,0);-ms-transform:matrix(0.256480,0.001539,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.256480,0.001539,-0.001500,0.249996,0,0);}
.m58_c00338{transform:matrix(0.256610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256610,0.000000,0.000000,0.250000,0,0);}
.m108_c00338{transform:matrix(0.257078,0.003342,-0.003250,0.249979,0,0);-ms-transform:matrix(0.257078,0.003342,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.257078,0.003342,-0.003250,0.249979,0,0);}
.m84_c00338{transform:matrix(0.257107,0.002057,-0.002000,0.249992,0,0);-ms-transform:matrix(0.257107,0.002057,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.257107,0.002057,-0.002000,0.249992,0,0);}
.m14_c00338{transform:matrix(0.258609,-0.001810,0.001750,0.249994,0,0);-ms-transform:matrix(0.258609,-0.001810,0.001750,0.249994,0,0);-webkit-transform:matrix(0.258609,-0.001810,0.001750,0.249994,0,0);}
.mc_c00338{transform:matrix(0.259499,-0.001816,0.001750,0.249994,0,0);-ms-transform:matrix(0.259499,-0.001816,0.001750,0.249994,0,0);-webkit-transform:matrix(0.259499,-0.001816,0.001750,0.249994,0,0);}
.m90_c00338{transform:matrix(0.259697,0.002078,-0.002000,0.249992,0,0);-ms-transform:matrix(0.259697,0.002078,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.259697,0.002078,-0.002000,0.249992,0,0);}
.mb7_c00338{transform:matrix(0.260480,0.001563,-0.001500,0.249996,0,0);-ms-transform:matrix(0.260480,0.001563,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.260480,0.001563,-0.001500,0.249996,0,0);}
.mbb_c00338{transform:matrix(0.260915,0.001565,-0.001500,0.249996,0,0);-ms-transform:matrix(0.260915,0.001565,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.260915,0.001565,-0.001500,0.249996,0,0);}
.mc6_c00338{transform:matrix(0.260925,0.001566,-0.001500,0.249996,0,0);-ms-transform:matrix(0.260925,0.001566,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.260925,0.001566,-0.001500,0.249996,0,0);}
.m57_c00338{transform:matrix(0.261040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261040,0.000000,0.000000,0.250000,0,0);}
.m6d_c00338{transform:matrix(0.261335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261335,0.000000,0.000000,0.250000,0,0);}
.m77_c00338{transform:matrix(0.261710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261710,0.000000,0.000000,0.250000,0,0);}
.m71_c00338{transform:matrix(0.262365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262365,0.000000,0.000000,0.250000,0,0);}
.m18_c00338{transform:matrix(0.262544,-0.001838,0.001750,0.249994,0,0);-ms-transform:matrix(0.262544,-0.001838,0.001750,0.249994,0,0);-webkit-transform:matrix(0.262544,-0.001838,0.001750,0.249994,0,0);}
.mb2_c00338{transform:matrix(0.264670,0.001588,-0.001500,0.249996,0,0);-ms-transform:matrix(0.264670,0.001588,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.264670,0.001588,-0.001500,0.249996,0,0);}
.mbf_c00338{transform:matrix(0.264750,0.001589,-0.001500,0.249996,0,0);-ms-transform:matrix(0.264750,0.001589,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.264750,0.001589,-0.001500,0.249996,0,0);}
.mca_c00338{transform:matrix(0.264955,0.001590,-0.001500,0.249996,0,0);-ms-transform:matrix(0.264955,0.001590,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.264955,0.001590,-0.001500,0.249996,0,0);}
.m107_c00338{transform:matrix(0.265358,0.003450,-0.003250,0.249979,0,0);-ms-transform:matrix(0.265358,0.003450,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.265358,0.003450,-0.003250,0.249979,0,0);}
.mcd_c00338{transform:matrix(0.266375,0.001598,-0.001500,0.249996,0,0);-ms-transform:matrix(0.266375,0.001598,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.266375,0.001598,-0.001500,0.249996,0,0);}
.m79_c00338{transform:matrix(0.266740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266740,0.000000,0.000000,0.250000,0,0);}
.m47_c00338{transform:matrix(0.266790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266790,0.000000,0.000000,0.250000,0,0);}
.m17_c00338{transform:matrix(0.267658,-0.001874,0.001750,0.249994,0,0);-ms-transform:matrix(0.267658,-0.001874,0.001750,0.249994,0,0);-webkit-transform:matrix(0.267658,-0.001874,0.001750,0.249994,0,0);}
.mc7_c00338{transform:matrix(0.268090,0.001609,-0.001500,0.249996,0,0);-ms-transform:matrix(0.268090,0.001609,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.268090,0.001609,-0.001500,0.249996,0,0);}
.m75_c00338{transform:matrix(0.268125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268125,0.000000,0.000000,0.250000,0,0);}
.mb4_c00338{transform:matrix(0.268255,0.001610,-0.001500,0.249996,0,0);-ms-transform:matrix(0.268255,0.001610,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.268255,0.001610,-0.001500,0.249996,0,0);}
.m76_c00338{transform:matrix(0.268310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268310,0.000000,0.000000,0.250000,0,0);}
.m49_c00338{transform:matrix(0.268335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268335,0.000000,0.000000,0.250000,0,0);}
.mbd_c00338{transform:matrix(0.269390,0.001616,-0.001500,0.249996,0,0);-ms-transform:matrix(0.269390,0.001616,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.269390,0.001616,-0.001500,0.249996,0,0);}
.m59_c00338{transform:matrix(0.269620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269620,0.000000,0.000000,0.250000,0,0);}
.m9_c00338{transform:matrix(0.269748,-0.001888,0.001750,0.249994,0,0);-ms-transform:matrix(0.269748,-0.001888,0.001750,0.249994,0,0);-webkit-transform:matrix(0.269748,-0.001888,0.001750,0.249994,0,0);}
.m5c_c00338{transform:matrix(0.270445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270445,0.000000,0.000000,0.250000,0,0);}
.m6_c00338{transform:matrix(0.271118,-0.001898,0.001750,0.249994,0,0);-ms-transform:matrix(0.271118,-0.001898,0.001750,0.249994,0,0);-webkit-transform:matrix(0.271118,-0.001898,0.001750,0.249994,0,0);}
.me_c00338{transform:matrix(0.271763,-0.001902,0.001750,0.249994,0,0);-ms-transform:matrix(0.271763,-0.001902,0.001750,0.249994,0,0);-webkit-transform:matrix(0.271763,-0.001902,0.001750,0.249994,0,0);}
.mb8_c00338{transform:matrix(0.272350,0.001634,-0.001500,0.249996,0,0);-ms-transform:matrix(0.272350,0.001634,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.272350,0.001634,-0.001500,0.249996,0,0);}
.m1c_c00338{transform:matrix(0.272533,-0.001908,0.001750,0.249994,0,0);-ms-transform:matrix(0.272533,-0.001908,0.001750,0.249994,0,0);-webkit-transform:matrix(0.272533,-0.001908,0.001750,0.249994,0,0);}
.mcf_c00338{transform:matrix(0.272755,0.001637,-0.001500,0.249996,0,0);-ms-transform:matrix(0.272755,0.001637,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.272755,0.001637,-0.001500,0.249996,0,0);}
.m3_c00338{transform:matrix(0.273778,-0.001916,0.001750,0.249994,0,0);-ms-transform:matrix(0.273778,-0.001916,0.001750,0.249994,0,0);-webkit-transform:matrix(0.273778,-0.001916,0.001750,0.249994,0,0);}
.md_c00338{transform:matrix(0.274838,-0.001924,0.001750,0.249994,0,0);-ms-transform:matrix(0.274838,-0.001924,0.001750,0.249994,0,0);-webkit-transform:matrix(0.274838,-0.001924,0.001750,0.249994,0,0);}
.mb5_c00338{transform:matrix(0.275875,0.001655,-0.001500,0.249996,0,0);-ms-transform:matrix(0.275875,0.001655,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.275875,0.001655,-0.001500,0.249996,0,0);}
.m44_c00338{transform:matrix(0.275925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275925,0.000000,0.000000,0.250000,0,0);}
.m109_c00338{transform:matrix(0.276932,0.003600,-0.003250,0.249979,0,0);-ms-transform:matrix(0.276932,0.003600,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.276932,0.003600,-0.003250,0.249979,0,0);}
.m73_c00338{transform:matrix(0.277135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277135,0.000000,0.000000,0.250000,0,0);}
.m45_c00338{transform:matrix(0.277255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277255,0.000000,0.000000,0.250000,0,0);}
.ma1_c00338{transform:matrix(0.277360,0.001664,-0.001500,0.249996,0,0);-ms-transform:matrix(0.277360,0.001664,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.277360,0.001664,-0.001500,0.249996,0,0);}
.mcb_c00338{transform:matrix(0.277830,0.001667,-0.001500,0.249996,0,0);-ms-transform:matrix(0.277830,0.001667,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.277830,0.001667,-0.001500,0.249996,0,0);}
.m7_c00338{transform:matrix(0.278528,-0.001950,0.001750,0.249994,0,0);-ms-transform:matrix(0.278528,-0.001950,0.001750,0.249994,0,0);-webkit-transform:matrix(0.278528,-0.001950,0.001750,0.249994,0,0);}
.m10d_c00338{transform:matrix(0.279606,0.003635,-0.003250,0.249979,0,0);-ms-transform:matrix(0.279606,0.003635,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.279606,0.003635,-0.003250,0.249979,0,0);}
.m1f_c00338{transform:matrix(0.280163,-0.001961,0.001750,0.249994,0,0);-ms-transform:matrix(0.280163,-0.001961,0.001750,0.249994,0,0);-webkit-transform:matrix(0.280163,-0.001961,0.001750,0.249994,0,0);}
.m10c_c00338{transform:matrix(0.281491,0.003659,-0.003250,0.249979,0,0);-ms-transform:matrix(0.281491,0.003659,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.281491,0.003659,-0.003250,0.249979,0,0);}
.m12_c00338{transform:matrix(0.283193,-0.001982,0.001750,0.249994,0,0);-ms-transform:matrix(0.283193,-0.001982,0.001750,0.249994,0,0);-webkit-transform:matrix(0.283193,-0.001982,0.001750,0.249994,0,0);}
.m1e_c00338{transform:matrix(0.283303,-0.001983,0.001750,0.249994,0,0);-ms-transform:matrix(0.283303,-0.001983,0.001750,0.249994,0,0);-webkit-transform:matrix(0.283303,-0.001983,0.001750,0.249994,0,0);}
.m4a_c00338{transform:matrix(0.283625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283625,0.000000,0.000000,0.250000,0,0);}
.m6f_c00338{transform:matrix(0.283830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283830,0.000000,0.000000,0.250000,0,0);}
.m5b_c00338{transform:matrix(0.284785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284785,0.000000,0.000000,0.250000,0,0);}
.mc1_c00338{transform:matrix(0.285715,0.001714,-0.001500,0.249996,0,0);-ms-transform:matrix(0.285715,0.001714,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.285715,0.001714,-0.001500,0.249996,0,0);}
.mc2_c00338{transform:matrix(0.289100,0.001735,-0.001500,0.249996,0,0);-ms-transform:matrix(0.289100,0.001735,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.289100,0.001735,-0.001500,0.249996,0,0);}
.mc3_c00338{transform:matrix(0.315444,0.001893,-0.001500,0.249996,0,0);-ms-transform:matrix(0.315444,0.001893,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.315444,0.001893,-0.001500,0.249996,0,0);}
.me0_c00338{transform:matrix(0.318769,0.001913,-0.001500,0.249996,0,0);-ms-transform:matrix(0.318769,0.001913,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.318769,0.001913,-0.001500,0.249996,0,0);}
.v0_c00338{vertical-align:0.000000px;}
.ls0_c00338{letter-spacing:0.000000px;}
.sc__c00338{text-shadow:none;}
.sc0_c00338{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__c00338{-webkit-text-stroke:0px transparent;}
.sc0_c00338{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00338{word-spacing:0.000000px;}
.fc0_c00338{color:transparent;}
.fs13_c00338{font-size:42.000000px;}
.fs4_c00338{font-size:72.000000px;}
.fsa_c00338{font-size:72.001296px;}
.fs0_c00338{font-size:72.001764px;}
.fsf_c00338{font-size:72.006084px;}
.fs5_c00338{font-size:78.000000px;}
.fsb_c00338{font-size:78.001404px;}
.fs7_c00338{font-size:78.002496px;}
.fs3_c00338{font-size:84.000000px;}
.fs2_c00338{font-size:84.001512px;}
.fs6_c00338{font-size:84.002688px;}
.fsc_c00338{font-size:84.007098px;}
.fs12_c00338{font-size:84.024189px;}
.fs8_c00338{font-size:90.001620px;}
.fs1_c00338{font-size:96.000000px;}
.fse_c00338{font-size:96.008112px;}
.fs11_c00338{font-size:96.009408px;}
.fs10_c00338{font-size:96.019198px;}
.fs9_c00338{font-size:102.001836px;}
.fsd_c00338{font-size:102.008619px;}
.y0_c00338{bottom:0.000000px;}
.y108_c00338{bottom:58.634136px;}
.y107_c00338{bottom:59.971284px;}
.y106_c00338{bottom:60.734628px;}
.y105_c00338{bottom:62.914536px;}
.y104_c00338{bottom:63.712296px;}
.y103_c00338{bottom:64.502928px;}
.y102_c00338{bottom:65.585700px;}
.y101_c00338{bottom:66.914820px;}
.y100_c00338{bottom:69.313608px;}
.yff_c00338{bottom:70.104420px;}
.yfe_c00338{bottom:70.881192px;}
.yfd_c00338{bottom:72.705708px;}
.yfc_c00338{bottom:73.440000px;}
.yfb_c00338{bottom:99.606492px;}
.yfa_c00338{bottom:100.241154px;}
.yf9_c00338{bottom:101.182920px;}
.yf8_c00338{bottom:102.260955px;}
.yf7_c00338{bottom:102.729738px;}
.yf6_c00338{bottom:103.679379px;}
.yf5_c00338{bottom:104.442708px;}
.yf4_c00338{bottom:106.139823px;}
.yf3_c00338{bottom:106.771335px;}
.yf2_c00338{bottom:107.217018px;}
.yf1_c00338{bottom:107.673285px;}
.yf0_c00338{bottom:108.270000px;}
.yef_c00338{bottom:131.455770px;}
.yee_c00338{bottom:132.373920px;}
.yed_c00338{bottom:133.735320px;}
.yec_c00338{bottom:135.524850px;}
.yeb_c00338{bottom:137.726970px;}
.yea_c00338{bottom:138.397530px;}
.ye9_c00338{bottom:139.504410px;}
.ye8_c00338{bottom:140.390370px;}
.ye7_c00338{bottom:141.696900px;}
.ye6_c00338{bottom:142.348770px;}
.ye5_c00338{bottom:143.643000px;}
.ye4_c00338{bottom:178.837545px;}
.ye3_c00338{bottom:178.837667px;}
.ye2_c00338{bottom:178.837867px;}
.ye1_c00338{bottom:178.838470px;}
.ye0_c00338{bottom:178.838983px;}
.ydb_c00338{bottom:178.839202px;}
.ydf_c00338{bottom:178.839544px;}
.ydd_c00338{bottom:178.839749px;}
.yde_c00338{bottom:178.839776px;}
.ydc_c00338{bottom:178.839780px;}
.yda_c00338{bottom:204.972813px;}
.yd9_c00338{bottom:205.359141px;}
.yd8_c00338{bottom:205.525783px;}
.yd7_c00338{bottom:205.640549px;}
.yd6_c00338{bottom:205.864786px;}
.yd5_c00338{bottom:206.142600px;}
.yd4_c00338{bottom:206.359025px;}
.yd3_c00338{bottom:206.585841px;}
.yd2_c00338{bottom:206.809962px;}
.yd1_c00338{bottom:207.246897px;}
.yd0_c00338{bottom:207.576681px;}
.ycf_c00338{bottom:207.735393px;}
.yce_c00338{bottom:207.893907px;}
.ycd_c00338{bottom:244.336979px;}
.ycc_c00338{bottom:244.613856px;}
.ycb_c00338{bottom:244.967282px;}
.yca_c00338{bottom:245.961408px;}
.yc9_c00338{bottom:246.214422px;}
.yc8_c00338{bottom:246.481974px;}
.yc7_c00338{bottom:246.842949px;}
.yc6_c00338{bottom:247.019789px;}
.yc5_c00338{bottom:247.460238px;}
.yc4_c00338{bottom:247.723010px;}
.yc3_c00338{bottom:248.261682px;}
.yc2_c00338{bottom:248.937642px;}
.yc1_c00338{bottom:279.279155px;}
.yc0_c00338{bottom:279.708662px;}
.ybf_c00338{bottom:280.600455px;}
.ybe_c00338{bottom:281.028773px;}
.ybd_c00338{bottom:281.611160px;}
.ybc_c00338{bottom:283.047413px;}
.ybb_c00338{bottom:284.198732px;}
.yba_c00338{bottom:284.651210px;}
.yb9_c00338{bottom:285.216417px;}
.yb8_c00338{bottom:286.203000px;}
.yb6_c00338{bottom:320.438718px;}
.yb7_c00338{bottom:320.438838px;}
.yb5_c00338{bottom:320.439249px;}
.yac_c00338{bottom:352.576521px;}
.yaf_c00338{bottom:352.576728px;}
.yad_c00338{bottom:352.576950px;}
.yae_c00338{bottom:352.576959px;}
.yb0_c00338{bottom:352.577346px;}
.yb1_c00338{bottom:352.577715px;}
.yb2_c00338{bottom:352.578084px;}
.yb3_c00338{bottom:352.578444px;}
.yb4_c00338{bottom:352.578933px;}
.ya1_c00338{bottom:382.590030px;}
.ya2_c00338{bottom:383.455455px;}
.ya3_c00338{bottom:383.714037px;}
.ya4_c00338{bottom:384.157464px;}
.ya5_c00338{bottom:384.424620px;}
.ya6_c00338{bottom:385.303005px;}
.ya7_c00338{bottom:385.753560px;}
.ya8_c00338{bottom:386.194035px;}
.ya9_c00338{bottom:386.904834px;}
.yaa_c00338{bottom:387.174735px;}
.yab_c00338{bottom:387.635604px;}
.y98_c00338{bottom:423.087366px;}
.y97_c00338{bottom:423.087477px;}
.y96_c00338{bottom:423.087648px;}
.y99_c00338{bottom:423.087675px;}
.y95_c00338{bottom:423.087708px;}
.y9a_c00338{bottom:423.088275px;}
.y9b_c00338{bottom:423.088515px;}
.y9c_c00338{bottom:423.088764px;}
.y9e_c00338{bottom:423.088773px;}
.y9f_c00338{bottom:423.089322px;}
.y9d_c00338{bottom:423.089493px;}
.ya0_c00338{bottom:423.089922px;}
.y8e_c00338{bottom:460.284798px;}
.y8f_c00338{bottom:460.284867px;}
.y8d_c00338{bottom:460.285209px;}
.y94_c00338{bottom:460.285212px;}
.y8b_c00338{bottom:460.285251px;}
.y8c_c00338{bottom:460.285560px;}
.y90_c00338{bottom:460.285587px;}
.y93_c00338{bottom:460.285683px;}
.y92_c00338{bottom:460.285725px;}
.y91_c00338{bottom:460.286256px;}
.y81_c00338{bottom:497.286123px;}
.y80_c00338{bottom:497.286714px;}
.y82_c00338{bottom:497.286723px;}
.y83_c00338{bottom:497.287032px;}
.y84_c00338{bottom:497.287401px;}
.y88_c00338{bottom:497.287548px;}
.y89_c00338{bottom:497.287617px;}
.y87_c00338{bottom:497.287839px;}
.y85_c00338{bottom:497.288001px;}
.y8a_c00338{bottom:497.288346px;}
.y86_c00338{bottom:497.288550px;}
.y7f_c00338{bottom:531.687180px;}
.y7e_c00338{bottom:532.006212px;}
.y7d_c00338{bottom:532.162569px;}
.y7c_c00338{bottom:532.699338px;}
.y7b_c00338{bottom:533.247147px;}
.y7a_c00338{bottom:533.719818px;}
.y79_c00338{bottom:533.951952px;}
.y78_c00338{bottom:534.494793px;}
.y77_c00338{bottom:534.722211px;}
.y76_c00338{bottom:535.037724px;}
.y75_c00338{bottom:535.268436px;}
.y74_c00338{bottom:535.717164px;}
.y73_c00338{bottom:535.948704px;}
.y72_c00338{bottom:568.127475px;}
.y71_c00338{bottom:568.349460px;}
.y70_c00338{bottom:568.530702px;}
.y6f_c00338{bottom:569.123748px;}
.y6e_c00338{bottom:569.327913px;}
.y6d_c00338{bottom:569.588643px;}
.y6c_c00338{bottom:569.990520px;}
.y6b_c00338{bottom:570.189771px;}
.y6a_c00338{bottom:570.593331px;}
.y69_c00338{bottom:571.050000px;}
.y65_c00338{bottom:604.688916px;}
.y63_c00338{bottom:604.689060px;}
.y64_c00338{bottom:604.689084px;}
.y5f_c00338{bottom:604.689168px;}
.y60_c00338{bottom:604.689300px;}
.y62_c00338{bottom:604.689408px;}
.y66_c00338{bottom:604.689588px;}
.y61_c00338{bottom:604.689612px;}
.y68_c00338{bottom:604.689636px;}
.y67_c00338{bottom:604.690080px;}
.y5e_c00338{bottom:638.277852px;}
.y5c_c00338{bottom:638.278008px;}
.y5d_c00338{bottom:638.278320px;}
.y5b_c00338{bottom:638.278656px;}
.y5a_c00338{bottom:638.279004px;}
.y58_c00338{bottom:638.279340px;}
.y59_c00338{bottom:638.279352px;}
.y56_c00338{bottom:638.279916px;}
.y57_c00338{bottom:638.279988px;}
.y54_c00338{bottom:638.280108px;}
.y55_c00338{bottom:638.280612px;}
.y53_c00338{bottom:672.713508px;}
.y52_c00338{bottom:673.254204px;}
.y51_c00338{bottom:674.141724px;}
.y50_c00338{bottom:674.856768px;}
.y4f_c00338{bottom:675.295248px;}
.y4e_c00338{bottom:675.478692px;}
.y4d_c00338{bottom:675.830784px;}
.y4c_c00338{bottom:676.362372px;}
.y4b_c00338{bottom:676.891500px;}
.y4a_c00338{bottom:711.276000px;}
.y49_c00338{bottom:746.130000px;}
.y48_c00338{bottom:782.730000px;}
.y47_c00338{bottom:818.923500px;}
.y46_c00338{bottom:849.564000px;}
.y3a_c00338{bottom:886.680000px;}
.y3b_c00338{bottom:886.938000px;}
.y3c_c00338{bottom:887.983500px;}
.y3d_c00338{bottom:888.156000px;}
.y3e_c00338{bottom:888.780000px;}
.y3f_c00338{bottom:889.048500px;}
.y40_c00338{bottom:889.405500px;}
.y41_c00338{bottom:890.298000px;}
.y42_c00338{bottom:890.562000px;}
.y43_c00338{bottom:891.087000px;}
.y44_c00338{bottom:891.357000px;}
.y45_c00338{bottom:891.723000px;}
.y30_c00338{bottom:919.351500px;}
.y31_c00338{bottom:919.837500px;}
.y32_c00338{bottom:920.128500px;}
.y33_c00338{bottom:920.419500px;}
.y34_c00338{bottom:921.324000px;}
.y35_c00338{bottom:922.312500px;}
.y36_c00338{bottom:922.609500px;}
.y37_c00338{bottom:923.212500px;}
.y38_c00338{bottom:923.503500px;}
.y39_c00338{bottom:924.111000px;}
.y2f_c00338{bottom:959.310000px;}
.y23_c00338{bottom:990.630000px;}
.y24_c00338{bottom:990.821250px;}
.y25_c00338{bottom:991.010925px;}
.y26_c00338{bottom:991.744929px;}
.y27_c00338{bottom:992.274417px;}
.y28_c00338{bottom:992.467287px;}
.y29_c00338{bottom:992.673018px;}
.y2a_c00338{bottom:993.068172px;}
.y2b_c00338{bottom:993.338676px;}
.y2c_c00338{bottom:993.539709px;}
.y2d_c00338{bottom:993.871737px;}
.y2e_c00338{bottom:994.075857px;}
.y22_c00338{bottom:1028.319000px;}
.y18_c00338{bottom:1062.718581px;}
.y19_c00338{bottom:1062.988864px;}
.y1a_c00338{bottom:1063.364148px;}
.y1b_c00338{bottom:1063.697394px;}
.y1c_c00338{bottom:1063.918948px;}
.y1d_c00338{bottom:1064.148633px;}
.y1e_c00338{bottom:1064.308747px;}
.y1f_c00338{bottom:1064.698926px;}
.y20_c00338{bottom:1064.867665px;}
.y21_c00338{bottom:1065.481162px;}
.yd_c00338{bottom:1099.169887px;}
.ye_c00338{bottom:1099.771086px;}
.yf_c00338{bottom:1100.540305px;}
.y10_c00338{bottom:1100.848344px;}
.y11_c00338{bottom:1101.464274px;}
.y12_c00338{bottom:1101.624924px;}
.y13_c00338{bottom:1101.857572px;}
.y14_c00338{bottom:1102.088079px;}
.y15_c00338{bottom:1102.872251px;}
.y16_c00338{bottom:1103.187796px;}
.y17_c00338{bottom:1103.580696px;}
.y1_c00338{bottom:1135.350000px;}
.y2_c00338{bottom:1135.731717px;}
.y3_c00338{bottom:1135.962360px;}
.y4_c00338{bottom:1136.187354px;}
.y5_c00338{bottom:1136.799661px;}
.y6_c00338{bottom:1136.966150px;}
.y7_c00338{bottom:1137.272298px;}
.y8_c00338{bottom:1137.816555px;}
.y9_c00338{bottom:1138.606407px;}
.ya_c00338{bottom:1138.990129px;}
.yb_c00338{bottom:1139.541978px;}
.yc_c00338{bottom:1139.774070px;}
.h15_c00338{height:42.000000px;}
.h6_c00338{height:72.000000px;}
.hc_c00338{height:72.001296px;}
.h2_c00338{height:72.001764px;}
.h11_c00338{height:72.006084px;}
.h7_c00338{height:78.000000px;}
.hd_c00338{height:78.001404px;}
.h9_c00338{height:78.002496px;}
.h5_c00338{height:84.000000px;}
.h4_c00338{height:84.001512px;}
.h8_c00338{height:84.002688px;}
.he_c00338{height:84.007098px;}
.h14_c00338{height:84.024189px;}
.ha_c00338{height:90.001620px;}
.h3_c00338{height:96.000000px;}
.h10_c00338{height:96.008112px;}
.h13_c00338{height:96.009408px;}
.h12_c00338{height:96.019198px;}
.hb_c00338{height:102.001836px;}
.hf_c00338{height:102.008619px;}
.h1_c00338{height:1247.250000px;}
.h0_c00338{height:1247.400000px;}
.w0_c00338{width:915.000000px;}
.x0_c00338{left:0.000000px;}
.x1_c00338{left:171.819000px;}
.xd_c00338{left:173.984855px;}
.x3a_c00338{left:175.500000px;}
.x4f_c00338{left:176.850000px;}
.x72_c00338{left:178.470600px;}
.xa1_c00338{left:180.028926px;}
.xbd_c00338{left:182.230500px;}
.x1c_c00338{left:206.010000px;}
.x5b_c00338{left:208.979640px;}
.xa2_c00338{left:211.610202px;}
.xbe_c00338{left:212.826000px;}
.x2a_c00338{left:216.270000px;}
.x73_c00338{left:220.320603px;}
.xb6_c00338{left:223.477500px;}
.x2_c00338{left:226.350000px;}
.x15_c00338{left:227.451729px;}
.x43_c00338{left:228.960000px;}
.x1d_c00338{left:238.410000px;}
.x5c_c00338{left:241.380216px;}
.xa3_c00338{left:243.437517px;}
.xaf_c00338{left:245.217000px;}
.x74_c00338{left:252.721773px;}
.xb7_c00338{left:256.068000px;}
.x3_c00338{left:259.299000px;}
.x30_c00338{left:260.718000px;}
.x4a_c00338{left:261.900000px;}
.x91_c00338{left:264.328641px;}
.x69_c00338{left:273.414900px;}
.x8e_c00338{left:275.399862px;}
.xb0_c00338{left:277.810500px;}
.x3b_c00338{left:282.420000px;}
.x50_c00338{left:283.662000px;}
.x62_c00338{left:285.036000px;}
.x85_c00338{left:286.918041px;}
.xbf_c00338{left:288.847500px;}
.x4_c00338{left:291.441000px;}
.x31_c00338{left:293.127000px;}
.x4b_c00338{left:294.840000px;}
.x75_c00338{left:295.921830px;}
.x92_c00338{left:297.809847px;}
.x16_c00338{left:302.493279px;}
.x2b_c00338{left:304.560000px;}
.x6a_c00338{left:306.366702px;}
.xa4_c00338{left:309.312362px;}
.x3c_c00338{left:315.630000px;}
.x86_c00338{left:319.323759px;}
.xc0_c00338{left:321.213000px;}
.x7f_c00338{left:328.588824px;}
.x99_c00338{left:331.179657px;}
.xa9_c00338{left:332.381529px;}
.x2c_c00338{left:337.770000px;}
.x7b_c00338{left:340.740438px;}
.xb1_c00338{left:343.137000px;}
.x44_c00338{left:349.650000px;}
.x6b_c00338{left:351.451932px;}
.xc1_c00338{left:354.163500px;}
.x23_c00338{left:359.782500px;}
.x55_c00338{left:360.993576px;}
.x76_c00338{left:362.612733px;}
.x93_c00338{left:363.795000px;}
.xe_c00338{left:369.758855px;}
.x5d_c00338{left:373.414164px;}
.x87_c00338{left:374.673912px;}
.x5_c00338{left:378.913500px;}
.x1e_c00338{left:380.160000px;}
.x3d_c00338{left:381.780000px;}
.x6c_c00338{left:383.854734px;}
.x80_c00338{left:385.289367px;}
.xb2_c00338{left:387.435000px;}
.x32_c00338{left:393.561000px;}
.x77_c00338{left:395.013903px;}
.xa5_c00338{left:396.816468px;}
.x6_c00338{left:402.697500px;}
.x5e_c00338{left:406.084752px;}
.x88_c00338{left:408.150720px;}
.xf_c00338{left:413.764355px;}
.x51_c00338{left:416.251500px;}
.x56_c00338{left:417.425688px;}
.x9a_c00338{left:419.202390px;}
.x3e_c00338{left:426.060000px;}
.x63_c00338{left:428.407500px;}
.x35_c00338{left:437.238000px;}
.x94_c00338{left:442.078500px;}
.x7_c00338{left:446.433000px;}
.x24_c00338{left:448.030500px;}
.x7c_c00338{left:450.362889px;}
.x8f_c00338{left:451.443198px;}
.xb8_c00338{left:454.233000px;}
.x1f_c00338{left:457.380000px;}
.x17_c00338{left:459.350474px;}
.x64_c00338{left:461.616000px;}
.x36_c00338{left:470.716500px;}
.xaa_c00338{left:477.113982px;}
.x25_c00338{left:480.175500px;}
.x52_c00338{left:483.193500px;}
.x78_c00338{left:484.925643px;}
.x9b_c00338{left:486.423258px;}
.x18_c00338{left:491.224415px;}
.x5f_c00338{left:493.837368px;}
.x10_c00338{left:501.754355px;}
.x33_c00338{left:503.439000px;}
.xb9_c00338{left:508.756500px;}
.x26_c00338{left:514.464000px;}
.x45_c00338{left:515.970000px;}
.x81_c00338{left:517.862646px;}
.x9c_c00338{left:519.929442px;}
.x8_c00338{left:524.184000px;}
.x4c_c00338{left:527.310000px;}
.x65_c00338{left:528.595500px;}
.x95_c00338{left:530.641500px;}
.x20_c00338{left:536.490000px;}
.x3f_c00338{left:538.110000px;}
.x57_c00338{left:539.200476px;}
.x46_c00338{left:549.180000px;}
.x9d_c00338{left:551.509489px;}
.xc2_c00338{left:554.608500px;}
.x11_c00338{left:557.939855px;}
.x4d_c00338{left:559.440000px;}
.x60_c00338{left:560.800152px;}
.x6d_c00338{left:562.044663px;}
.x19_c00338{left:569.251007px;}
.x21_c00338{left:570.780000px;}
.x66_c00338{left:572.050500px;}
.x89_c00338{left:574.424679px;}
.xba_c00338{left:576.588000px;}
.x27_c00338{left:580.323000px;}
.x7d_c00338{left:585.094740px;}
.xb3_c00338{left:586.413000px;}
.xc3_c00338{left:587.551500px;}
.x12_c00338{left:590.869355px;}
.x61_c00338{left:594.280800px;}
.x1a_c00338{left:602.999979px;}
.x47_c00338{left:606.150000px;}
.xbb_c00338{left:610.072500px;}
.x82_c00338{left:617.494737px;}
.xc4_c00338{left:620.791500px;}
.x28_c00338{left:625.407000px;}
.x37_c00338{left:626.757000px;}
.x8a_c00338{left:629.516805px;}
.xa6_c00338{left:630.680284px;}
.xab_c00338{left:631.838112px;}
.x34_c00338{left:635.715000px;}
.x9_c00338{left:637.020000px;}
.x58_c00338{left:638.293812px;}
.x6e_c00338{left:640.345695px;}
.x2d_c00338{left:648.270000px;}
.x90_c00338{left:651.785916px;}
.x83_c00338{left:652.866006px;}
.x22_c00338{left:659.340000px;}
.x40_c00338{left:670.950000px;}
.x9e_c00338{left:675.758062px;}
.x2e_c00338{left:681.210000px;}
.x4e_c00338{left:682.560000px;}
.x96_c00338{left:685.921500px;}
.xa7_c00338{left:687.063654px;}
.xa_c00338{left:691.837500px;}
.x79_c00338{left:696.338748px;}
.x13_c00338{left:702.893855px;}
.x48_c00338{left:704.970000px;}
.x59_c00338{left:706.066644px;}
.xc5_c00338{left:711.621000px;}
.x29_c00338{left:714.250500px;}
.x6f_c00338{left:717.056736px;}
.x8b_c00338{left:718.307766px;}
.x9f_c00338{left:720.024449px;}
.x1b_c00338{left:725.572691px;}
.x84_c00338{left:729.277260px;}
.xac_c00338{left:732.286077px;}
.x67_c00338{left:735.126000px;}
.x53_c00338{left:738.324000px;}
.x70_c00338{left:739.366101px;}
.xb4_c00338{left:743.959500px;}
.x14_c00338{left:747.971855px;}
.x41_c00338{left:749.520000px;}
.x8c_c00338{left:752.077101px;}
.xa0_c00338{left:754.594191px;}
.x38_c00338{left:759.061500px;}
.x49_c00338{left:761.670000px;}
.xa8_c00338{left:764.327688px;}
.xad_c00338{left:765.768732px;}
.xb_c00338{left:770.673000px;}
.x68_c00338{left:772.123500px;}
.x5a_c00338{left:779.778360px;}
.x42_c00338{left:783.000000px;}
.x71_c00338{left:785.037831px;}
.x97_c00338{left:787.468500px;}
.xb5_c00338{left:789.867000px;}
.x7e_c00338{left:792.187692px;}
.x2f_c00338{left:793.260000px;}
.x7a_c00338{left:795.970839px;}
.xbc_c00338{left:799.677000px;}
.xc_c00338{left:803.829000px;}
.x39_c00338{left:804.898500px;}
.x54_c00338{left:805.911000px;}
.x8d_c00338{left:809.770443px;}
.xae_c00338{left:811.131896px;}
.x98_c00338{left:820.507500px;}
.xc6_c00338{left:896.130000px;}
.xc7_c00338{left:910.710000px;}
@media print{
.v0_c00338{vertical-align:0.000000pt;}
.ls0_c00338{letter-spacing:0.000000pt;}
.ws0_c00338{word-spacing:0.000000pt;}
.fs13_c00338{font-size:37.333333pt;}
.fs4_c00338{font-size:64.000000pt;}
.fsa_c00338{font-size:64.001152pt;}
.fs0_c00338{font-size:64.001568pt;}
.fsf_c00338{font-size:64.005408pt;}
.fs5_c00338{font-size:69.333333pt;}
.fsb_c00338{font-size:69.334581pt;}
.fs7_c00338{font-size:69.335552pt;}
.fs3_c00338{font-size:74.666667pt;}
.fs2_c00338{font-size:74.668011pt;}
.fs6_c00338{font-size:74.669056pt;}
.fsc_c00338{font-size:74.672976pt;}
.fs12_c00338{font-size:74.688168pt;}
.fs8_c00338{font-size:80.001440pt;}
.fs1_c00338{font-size:85.333333pt;}
.fse_c00338{font-size:85.340544pt;}
.fs11_c00338{font-size:85.341696pt;}
.fs10_c00338{font-size:85.350398pt;}
.fs9_c00338{font-size:90.668299pt;}
.fsd_c00338{font-size:90.674328pt;}
.y0_c00338{bottom:0.000000pt;}
.y108_c00338{bottom:52.119232pt;}
.y107_c00338{bottom:53.307808pt;}
.y106_c00338{bottom:53.986336pt;}
.y105_c00338{bottom:55.924032pt;}
.y104_c00338{bottom:56.633152pt;}
.y103_c00338{bottom:57.335936pt;}
.y102_c00338{bottom:58.298400pt;}
.y101_c00338{bottom:59.479840pt;}
.y100_c00338{bottom:61.612096pt;}
.yff_c00338{bottom:62.315040pt;}
.yfe_c00338{bottom:63.005504pt;}
.yfd_c00338{bottom:64.627296pt;}
.yfc_c00338{bottom:65.280000pt;}
.yfb_c00338{bottom:88.539104pt;}
.yfa_c00338{bottom:89.103248pt;}
.yf9_c00338{bottom:89.940373pt;}
.yf8_c00338{bottom:90.898627pt;}
.yf7_c00338{bottom:91.315323pt;}
.yf6_c00338{bottom:92.159448pt;}
.yf5_c00338{bottom:92.837963pt;}
.yf4_c00338{bottom:94.346509pt;}
.yf3_c00338{bottom:94.907853pt;}
.yf2_c00338{bottom:95.304016pt;}
.yf1_c00338{bottom:95.709587pt;}
.yf0_c00338{bottom:96.240000pt;}
.yef_c00338{bottom:116.849573pt;}
.yee_c00338{bottom:117.665707pt;}
.yed_c00338{bottom:118.875840pt;}
.yec_c00338{bottom:120.466533pt;}
.yeb_c00338{bottom:122.423973pt;}
.yea_c00338{bottom:123.020027pt;}
.ye9_c00338{bottom:124.003920pt;}
.ye8_c00338{bottom:124.791440pt;}
.ye7_c00338{bottom:125.952800pt;}
.ye6_c00338{bottom:126.532240pt;}
.ye5_c00338{bottom:127.682667pt;}
.ye4_c00338{bottom:158.966707pt;}
.ye3_c00338{bottom:158.966815pt;}
.ye2_c00338{bottom:158.966993pt;}
.ye1_c00338{bottom:158.967529pt;}
.ye0_c00338{bottom:158.967985pt;}
.ydb_c00338{bottom:158.968180pt;}
.ydf_c00338{bottom:158.968484pt;}
.ydd_c00338{bottom:158.968665pt;}
.yde_c00338{bottom:158.968689pt;}
.ydc_c00338{bottom:158.968693pt;}
.yda_c00338{bottom:182.198056pt;}
.yd9_c00338{bottom:182.541459pt;}
.yd8_c00338{bottom:182.689585pt;}
.yd7_c00338{bottom:182.791599pt;}
.yd6_c00338{bottom:182.990921pt;}
.yd5_c00338{bottom:183.237867pt;}
.yd4_c00338{bottom:183.430244pt;}
.yd3_c00338{bottom:183.631859pt;}
.yd2_c00338{bottom:183.831077pt;}
.yd1_c00338{bottom:184.219464pt;}
.yd0_c00338{bottom:184.512605pt;}
.ycf_c00338{bottom:184.653683pt;}
.yce_c00338{bottom:184.794584pt;}
.ycd_c00338{bottom:217.188425pt;}
.ycc_c00338{bottom:217.434539pt;}
.ycb_c00338{bottom:217.748695pt;}
.yca_c00338{bottom:218.632363pt;}
.yc9_c00338{bottom:218.857264pt;}
.yc8_c00338{bottom:219.095088pt;}
.yc7_c00338{bottom:219.415955pt;}
.yc6_c00338{bottom:219.573145pt;}
.yc5_c00338{bottom:219.964656pt;}
.yc4_c00338{bottom:220.198231pt;}
.yc3_c00338{bottom:220.677051pt;}
.yc2_c00338{bottom:221.277904pt;}
.yc1_c00338{bottom:248.248137pt;}
.yc0_c00338{bottom:248.629921pt;}
.ybf_c00338{bottom:249.422627pt;}
.ybe_c00338{bottom:249.803353pt;}
.ybd_c00338{bottom:250.321031pt;}
.ybc_c00338{bottom:251.597700pt;}
.ybb_c00338{bottom:252.621095pt;}
.yba_c00338{bottom:253.023297pt;}
.yb9_c00338{bottom:253.525704pt;}
.yb8_c00338{bottom:254.402667pt;}
.yb6_c00338{bottom:284.834416pt;}
.yb7_c00338{bottom:284.834523pt;}
.yb5_c00338{bottom:284.834888pt;}
.yac_c00338{bottom:313.401352pt;}
.yaf_c00338{bottom:313.401536pt;}
.yad_c00338{bottom:313.401733pt;}
.yae_c00338{bottom:313.401741pt;}
.yb0_c00338{bottom:313.402085pt;}
.yb1_c00338{bottom:313.402413pt;}
.yb2_c00338{bottom:313.402741pt;}
.yb3_c00338{bottom:313.403061pt;}
.yb4_c00338{bottom:313.403496pt;}
.ya1_c00338{bottom:340.080027pt;}
.ya2_c00338{bottom:340.849293pt;}
.ya3_c00338{bottom:341.079144pt;}
.ya4_c00338{bottom:341.473301pt;}
.ya5_c00338{bottom:341.710773pt;}
.ya6_c00338{bottom:342.491560pt;}
.ya7_c00338{bottom:342.892053pt;}
.ya8_c00338{bottom:343.283587pt;}
.ya9_c00338{bottom:343.915408pt;}
.yaa_c00338{bottom:344.155320pt;}
.yab_c00338{bottom:344.564981pt;}
.y98_c00338{bottom:376.077659pt;}
.y97_c00338{bottom:376.077757pt;}
.y96_c00338{bottom:376.077909pt;}
.y99_c00338{bottom:376.077933pt;}
.y95_c00338{bottom:376.077963pt;}
.y9a_c00338{bottom:376.078467pt;}
.y9b_c00338{bottom:376.078680pt;}
.y9c_c00338{bottom:376.078901pt;}
.y9e_c00338{bottom:376.078909pt;}
.y9f_c00338{bottom:376.079397pt;}
.y9d_c00338{bottom:376.079549pt;}
.ya0_c00338{bottom:376.079931pt;}
.y8e_c00338{bottom:409.142043pt;}
.y8f_c00338{bottom:409.142104pt;}
.y8d_c00338{bottom:409.142408pt;}
.y94_c00338{bottom:409.142411pt;}
.y8b_c00338{bottom:409.142445pt;}
.y8c_c00338{bottom:409.142720pt;}
.y90_c00338{bottom:409.142744pt;}
.y93_c00338{bottom:409.142829pt;}
.y92_c00338{bottom:409.142867pt;}
.y91_c00338{bottom:409.143339pt;}
.y81_c00338{bottom:442.032109pt;}
.y80_c00338{bottom:442.032635pt;}
.y82_c00338{bottom:442.032643pt;}
.y83_c00338{bottom:442.032917pt;}
.y84_c00338{bottom:442.033245pt;}
.y88_c00338{bottom:442.033376pt;}
.y89_c00338{bottom:442.033437pt;}
.y87_c00338{bottom:442.033635pt;}
.y85_c00338{bottom:442.033779pt;}
.y8a_c00338{bottom:442.034085pt;}
.y86_c00338{bottom:442.034267pt;}
.y7f_c00338{bottom:472.610827pt;}
.y7e_c00338{bottom:472.894411pt;}
.y7d_c00338{bottom:473.033395pt;}
.y7c_c00338{bottom:473.510523pt;}
.y7b_c00338{bottom:473.997464pt;}
.y7a_c00338{bottom:474.417616pt;}
.y79_c00338{bottom:474.623957pt;}
.y78_c00338{bottom:475.106483pt;}
.y77_c00338{bottom:475.308632pt;}
.y76_c00338{bottom:475.589088pt;}
.y75_c00338{bottom:475.794165pt;}
.y74_c00338{bottom:476.193035pt;}
.y73_c00338{bottom:476.398848pt;}
.y72_c00338{bottom:505.002200pt;}
.y71_c00338{bottom:505.199520pt;}
.y70_c00338{bottom:505.360624pt;}
.y6f_c00338{bottom:505.887776pt;}
.y6e_c00338{bottom:506.069256pt;}
.y6d_c00338{bottom:506.301016pt;}
.y6c_c00338{bottom:506.658240pt;}
.y6b_c00338{bottom:506.835352pt;}
.y6a_c00338{bottom:507.194072pt;}
.y69_c00338{bottom:507.600000pt;}
.y65_c00338{bottom:537.501259pt;}
.y63_c00338{bottom:537.501387pt;}
.y64_c00338{bottom:537.501408pt;}
.y5f_c00338{bottom:537.501483pt;}
.y60_c00338{bottom:537.501600pt;}
.y62_c00338{bottom:537.501696pt;}
.y66_c00338{bottom:537.501856pt;}
.y61_c00338{bottom:537.501877pt;}
.y68_c00338{bottom:537.501899pt;}
.y67_c00338{bottom:537.502293pt;}
.y5e_c00338{bottom:567.358091pt;}
.y5c_c00338{bottom:567.358229pt;}
.y5d_c00338{bottom:567.358507pt;}
.y5b_c00338{bottom:567.358805pt;}
.y5a_c00338{bottom:567.359115pt;}
.y58_c00338{bottom:567.359413pt;}
.y59_c00338{bottom:567.359424pt;}
.y56_c00338{bottom:567.359925pt;}
.y57_c00338{bottom:567.359989pt;}
.y54_c00338{bottom:567.360096pt;}
.y55_c00338{bottom:567.360544pt;}
.y53_c00338{bottom:597.967563pt;}
.y52_c00338{bottom:598.448181pt;}
.y51_c00338{bottom:599.237088pt;}
.y50_c00338{bottom:599.872683pt;}
.y4f_c00338{bottom:600.262443pt;}
.y4e_c00338{bottom:600.425504pt;}
.y4d_c00338{bottom:600.738475pt;}
.y4c_c00338{bottom:601.210997pt;}
.y4b_c00338{bottom:601.681333pt;}
.y4a_c00338{bottom:632.245333pt;}
.y49_c00338{bottom:663.226667pt;}
.y48_c00338{bottom:695.760000pt;}
.y47_c00338{bottom:727.932000pt;}
.y46_c00338{bottom:755.168000pt;}
.y3a_c00338{bottom:788.160000pt;}
.y3b_c00338{bottom:788.389333pt;}
.y3c_c00338{bottom:789.318667pt;}
.y3d_c00338{bottom:789.472000pt;}
.y3e_c00338{bottom:790.026667pt;}
.y3f_c00338{bottom:790.265333pt;}
.y40_c00338{bottom:790.582667pt;}
.y41_c00338{bottom:791.376000pt;}
.y42_c00338{bottom:791.610667pt;}
.y43_c00338{bottom:792.077333pt;}
.y44_c00338{bottom:792.317333pt;}
.y45_c00338{bottom:792.642667pt;}
.y30_c00338{bottom:817.201333pt;}
.y31_c00338{bottom:817.633333pt;}
.y32_c00338{bottom:817.892000pt;}
.y33_c00338{bottom:818.150667pt;}
.y34_c00338{bottom:818.954667pt;}
.y35_c00338{bottom:819.833333pt;}
.y36_c00338{bottom:820.097333pt;}
.y37_c00338{bottom:820.633333pt;}
.y38_c00338{bottom:820.892000pt;}
.y39_c00338{bottom:821.432000pt;}
.y2f_c00338{bottom:852.720000pt;}
.y23_c00338{bottom:880.560000pt;}
.y24_c00338{bottom:880.730000pt;}
.y25_c00338{bottom:880.898600pt;}
.y26_c00338{bottom:881.551048pt;}
.y27_c00338{bottom:882.021704pt;}
.y28_c00338{bottom:882.193144pt;}
.y29_c00338{bottom:882.376016pt;}
.y2a_c00338{bottom:882.727264pt;}
.y2b_c00338{bottom:882.967712pt;}
.y2c_c00338{bottom:883.146408pt;}
.y2d_c00338{bottom:883.441544pt;}
.y2e_c00338{bottom:883.622984pt;}
.y22_c00338{bottom:914.061333pt;}
.y18_c00338{bottom:944.638739pt;}
.y19_c00338{bottom:944.878991pt;}
.y1a_c00338{bottom:945.212576pt;}
.y1b_c00338{bottom:945.508795pt;}
.y1c_c00338{bottom:945.705732pt;}
.y1d_c00338{bottom:945.909896pt;}
.y1e_c00338{bottom:946.052220pt;}
.y1f_c00338{bottom:946.399045pt;}
.y20_c00338{bottom:946.549036pt;}
.y21_c00338{bottom:947.094367pt;}
.yd_c00338{bottom:977.039900pt;}
.ye_c00338{bottom:977.574299pt;}
.yf_c00338{bottom:978.258049pt;}
.y10_c00338{bottom:978.531861pt;}
.y11_c00338{bottom:979.079355pt;}
.y12_c00338{bottom:979.222155pt;}
.y13_c00338{bottom:979.428953pt;}
.y14_c00338{bottom:979.633848pt;}
.y15_c00338{bottom:980.330889pt;}
.y16_c00338{bottom:980.611375pt;}
.y17_c00338{bottom:980.960619pt;}
.y1_c00338{bottom:1009.200000pt;}
.y2_c00338{bottom:1009.539304pt;}
.y3_c00338{bottom:1009.744320pt;}
.y4_c00338{bottom:1009.944315pt;}
.y5_c00338{bottom:1010.488588pt;}
.y6_c00338{bottom:1010.636577pt;}
.y7_c00338{bottom:1010.908709pt;}
.y8_c00338{bottom:1011.392493pt;}
.y9_c00338{bottom:1012.094584pt;}
.ya_c00338{bottom:1012.435671pt;}
.yb_c00338{bottom:1012.926203pt;}
.yc_c00338{bottom:1013.132507pt;}
.h15_c00338{height:37.333333pt;}
.h6_c00338{height:64.000000pt;}
.hc_c00338{height:64.001152pt;}
.h2_c00338{height:64.001568pt;}
.h11_c00338{height:64.005408pt;}
.h7_c00338{height:69.333333pt;}
.hd_c00338{height:69.334581pt;}
.h9_c00338{height:69.335552pt;}
.h5_c00338{height:74.666667pt;}
.h4_c00338{height:74.668011pt;}
.h8_c00338{height:74.669056pt;}
.he_c00338{height:74.672976pt;}
.h14_c00338{height:74.688168pt;}
.ha_c00338{height:80.001440pt;}
.h3_c00338{height:85.333333pt;}
.h10_c00338{height:85.340544pt;}
.h13_c00338{height:85.341696pt;}
.h12_c00338{height:85.350398pt;}
.hb_c00338{height:90.668299pt;}
.hf_c00338{height:90.674328pt;}
.h1_c00338{height:1108.666667pt;}
.h0_c00338{height:1108.800000pt;}
.w0_c00338{width:813.333333pt;}
.x0_c00338{left:0.000000pt;}
.x1_c00338{left:152.728000pt;}
.xd_c00338{left:154.653204pt;}
.x3a_c00338{left:156.000000pt;}
.x4f_c00338{left:157.200000pt;}
.x72_c00338{left:158.640533pt;}
.xa1_c00338{left:160.025712pt;}
.xbd_c00338{left:161.982667pt;}
.x1c_c00338{left:183.120000pt;}
.x5b_c00338{left:185.759680pt;}
.xa2_c00338{left:188.097957pt;}
.xbe_c00338{left:189.178667pt;}
.x2a_c00338{left:192.240000pt;}
.x73_c00338{left:195.840536pt;}
.xb6_c00338{left:198.646667pt;}
.x2_c00338{left:201.200000pt;}
.x15_c00338{left:202.179315pt;}
.x43_c00338{left:203.520000pt;}
.x1d_c00338{left:211.920000pt;}
.x5c_c00338{left:214.560192pt;}
.xa3_c00338{left:216.388904pt;}
.xaf_c00338{left:217.970667pt;}
.x74_c00338{left:224.641576pt;}
.xb7_c00338{left:227.616000pt;}
.x3_c00338{left:230.488000pt;}
.x30_c00338{left:231.749333pt;}
.x4a_c00338{left:232.800000pt;}
.x91_c00338{left:234.958792pt;}
.x69_c00338{left:243.035467pt;}
.x8e_c00338{left:244.799877pt;}
.xb0_c00338{left:246.942667pt;}
.x3b_c00338{left:251.040000pt;}
.x50_c00338{left:252.144000pt;}
.x62_c00338{left:253.365333pt;}
.x85_c00338{left:255.038259pt;}
.xbf_c00338{left:256.753333pt;}
.x4_c00338{left:259.058667pt;}
.x31_c00338{left:260.557333pt;}
.x4b_c00338{left:262.080000pt;}
.x75_c00338{left:263.041627pt;}
.x92_c00338{left:264.719864pt;}
.x16_c00338{left:268.882915pt;}
.x2b_c00338{left:270.720000pt;}
.x6a_c00338{left:272.325957pt;}
.xa4_c00338{left:274.944321pt;}
.x3c_c00338{left:280.560000pt;}
.x86_c00338{left:283.843341pt;}
.xc0_c00338{left:285.522667pt;}
.x7f_c00338{left:292.078955pt;}
.x99_c00338{left:294.381917pt;}
.xa9_c00338{left:295.450248pt;}
.x2c_c00338{left:300.240000pt;}
.x7b_c00338{left:302.880389pt;}
.xb1_c00338{left:305.010667pt;}
.x44_c00338{left:310.800000pt;}
.x6b_c00338{left:312.401717pt;}
.xc1_c00338{left:314.812000pt;}
.x23_c00338{left:319.806667pt;}
.x55_c00338{left:320.883179pt;}
.x76_c00338{left:322.322429pt;}
.x93_c00338{left:323.373333pt;}
.xe_c00338{left:328.674537pt;}
.x5d_c00338{left:331.923701pt;}
.x87_c00338{left:333.043477pt;}
.x5_c00338{left:336.812000pt;}
.x1e_c00338{left:337.920000pt;}
.x3d_c00338{left:339.360000pt;}
.x6c_c00338{left:341.204208pt;}
.x80_c00338{left:342.479437pt;}
.xb2_c00338{left:344.386667pt;}
.x32_c00338{left:349.832000pt;}
.x77_c00338{left:351.123469pt;}
.xa5_c00338{left:352.725749pt;}
.x6_c00338{left:357.953333pt;}
.x5e_c00338{left:360.964224pt;}
.x88_c00338{left:362.800640pt;}
.xf_c00338{left:367.790537pt;}
.x51_c00338{left:370.001333pt;}
.x56_c00338{left:371.045056pt;}
.x9a_c00338{left:372.624347pt;}
.x3e_c00338{left:378.720000pt;}
.x63_c00338{left:380.806667pt;}
.x35_c00338{left:388.656000pt;}
.x94_c00338{left:392.958667pt;}
.x7_c00338{left:396.829333pt;}
.x24_c00338{left:398.249333pt;}
.x7c_c00338{left:400.322568pt;}
.x8f_c00338{left:401.282843pt;}
.xb8_c00338{left:403.762667pt;}
.x1f_c00338{left:406.560000pt;}
.x17_c00338{left:408.311532pt;}
.x64_c00338{left:410.325333pt;}
.x36_c00338{left:418.414667pt;}
.xaa_c00338{left:424.101317pt;}
.x25_c00338{left:426.822667pt;}
.x52_c00338{left:429.505333pt;}
.x78_c00338{left:431.045016pt;}
.x9b_c00338{left:432.376229pt;}
.x18_c00338{left:436.643924pt;}
.x5f_c00338{left:438.966549pt;}
.x10_c00338{left:446.003871pt;}
.x33_c00338{left:447.501333pt;}
.xb9_c00338{left:452.228000pt;}
.x26_c00338{left:457.301333pt;}
.x45_c00338{left:458.640000pt;}
.x81_c00338{left:460.322352pt;}
.x9c_c00338{left:462.159504pt;}
.x8_c00338{left:465.941333pt;}
.x4c_c00338{left:468.720000pt;}
.x65_c00338{left:469.862667pt;}
.x95_c00338{left:471.681333pt;}
.x20_c00338{left:476.880000pt;}
.x3f_c00338{left:478.320000pt;}
.x57_c00338{left:479.289312pt;}
.x46_c00338{left:488.160000pt;}
.x9d_c00338{left:490.230657pt;}
.xc2_c00338{left:492.985333pt;}
.x11_c00338{left:495.946537pt;}
.x4d_c00338{left:497.280000pt;}
.x60_c00338{left:498.489024pt;}
.x6d_c00338{left:499.595256pt;}
.x19_c00338{left:506.000895pt;}
.x21_c00338{left:507.360000pt;}
.x66_c00338{left:508.489333pt;}
.x89_c00338{left:510.599715pt;}
.xba_c00338{left:512.522667pt;}
.x27_c00338{left:515.842667pt;}
.x7d_c00338{left:520.084213pt;}
.xb3_c00338{left:521.256000pt;}
.xc3_c00338{left:522.268000pt;}
.x12_c00338{left:525.217204pt;}
.x61_c00338{left:528.249600pt;}
.x1a_c00338{left:535.999981pt;}
.x47_c00338{left:538.800000pt;}
.xbb_c00338{left:542.286667pt;}
.x82_c00338{left:548.884211pt;}
.xc4_c00338{left:551.814667pt;}
.x28_c00338{left:555.917333pt;}
.x37_c00338{left:557.117333pt;}
.x8a_c00338{left:559.570493pt;}
.xa6_c00338{left:560.604697pt;}
.xab_c00338{left:561.633877pt;}
.x34_c00338{left:565.080000pt;}
.x9_c00338{left:566.240000pt;}
.x58_c00338{left:567.372277pt;}
.x6e_c00338{left:569.196173pt;}
.x2d_c00338{left:576.240000pt;}
.x90_c00338{left:579.365259pt;}
.x83_c00338{left:580.325339pt;}
.x22_c00338{left:586.080000pt;}
.x40_c00338{left:596.400000pt;}
.x9e_c00338{left:600.673833pt;}
.x2e_c00338{left:605.520000pt;}
.x4e_c00338{left:606.720000pt;}
.x96_c00338{left:609.708000pt;}
.xa7_c00338{left:610.723248pt;}
.xa_c00338{left:614.966667pt;}
.x79_c00338{left:618.967776pt;}
.x13_c00338{left:624.794537pt;}
.x48_c00338{left:626.640000pt;}
.x59_c00338{left:627.614795pt;}
.xc5_c00338{left:632.552000pt;}
.x29_c00338{left:634.889333pt;}
.x6f_c00338{left:637.383765pt;}
.x8b_c00338{left:638.495792pt;}
.x9f_c00338{left:640.021732pt;}
.x1b_c00338{left:644.953503pt;}
.x84_c00338{left:648.246453pt;}
.xac_c00338{left:650.920957pt;}
.x67_c00338{left:653.445333pt;}
.x53_c00338{left:656.288000pt;}
.x70_c00338{left:657.214312pt;}
.xb4_c00338{left:661.297333pt;}
.x14_c00338{left:664.863871pt;}
.x41_c00338{left:666.240000pt;}
.x8c_c00338{left:668.512979pt;}
.xa0_c00338{left:670.750392pt;}
.x38_c00338{left:674.721333pt;}
.x49_c00338{left:677.040000pt;}
.xa8_c00338{left:679.402389pt;}
.xad_c00338{left:680.683317pt;}
.xb_c00338{left:685.042667pt;}
.x68_c00338{left:686.332000pt;}
.x5a_c00338{left:693.136320pt;}
.x42_c00338{left:696.000000pt;}
.x71_c00338{left:697.811405pt;}
.x97_c00338{left:699.972000pt;}
.xb5_c00338{left:702.104000pt;}
.x7e_c00338{left:704.166837pt;}
.x2f_c00338{left:705.120000pt;}
.x7a_c00338{left:707.529635pt;}
.xbc_c00338{left:710.824000pt;}
.xc_c00338{left:714.514667pt;}
.x39_c00338{left:715.465333pt;}
.x54_c00338{left:716.365333pt;}
.x8d_c00338{left:719.795949pt;}
.xae_c00338{left:721.006129pt;}
.x98_c00338{left:729.340000pt;}
.xc6_c00338{left:796.560000pt;}
.xc7_c00338{left:809.520000pt;}
}





/* 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_c00339 {
    display:none;
  }
  .loading-indicator_c00339.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00339 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_c00339 { 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_c00339" -> "#page-container .classname_c00339")
 */
.pf_c00339 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00339 { /* 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_c00339.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00339 { /* 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_c00339 { /* 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_c00339 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00339 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00339 {overflow:visible;}
  }
}
.c_c00339 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00339 { /* 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_c00339:after { /* webkit #35443 */
  content: '';
}
.t_c00339:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00339 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 */
}
.__c00339 { /* 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_c00339 { /* info for Javascript */
  display:none;
}
.l_c00339 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00339 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00339 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00339: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_c00339 {
    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_c00339.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00339.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_c00339 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00339{font-family:sans-serif;visibility:hidden;}
.sc__c00339{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00339{-webkit-text-stroke:0px transparent;}
}
.y0_c00339{bottom:0.000000px;}
.h1_c00339{height:1247.250000px;}
.h0_c00339{height:1247.400000px;}
.w0_c00339{width:915.000000px;}
.x0_c00339{left:0.000000px;}
@media print{
.y0_c00339{bottom:0.000000pt;}
.h1_c00339{height:1108.666667pt;}
.h0_c00339{height:1108.800000pt;}
.w0_c00339{width:813.333333pt;}
.x0_c00339{left:0.000000pt;}
}





/* 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_c00340 {
    display:none;
  }
  .loading-indicator_c00340.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00340 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_c00340 { 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_c00340" -> "#page-container .classname_c00340")
 */
.pf_c00340 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00340 { /* 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_c00340.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00340 { /* 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_c00340 { /* 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_c00340 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00340 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00340 {overflow:visible;}
  }
}
.c_c00340 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00340 { /* 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_c00340:after { /* webkit #35443 */
  content: '';
}
.t_c00340:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00340 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 */
}
.__c00340 { /* 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_c00340 { /* info for Javascript */
  display:none;
}
.l_c00340 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00340 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00340 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00340: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_c00340 {
    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_c00340.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00340.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_c00340 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00340{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00340;src:url('chunks/assets/font_cfe63ee56e9e10a97d33a3db.woff2')format("woff");}.ff1_c00340{font-family:ff1_c00340;line-height:1.000000;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;}
.mb1_c00340{transform:matrix(0.015904,0.000445,-0.006997,0.249902,0,0);-ms-transform:matrix(0.015904,0.000445,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.015904,0.000445,-0.006997,0.249902,0,0);}
.mb0_c00340{transform:matrix(0.109102,0.003055,-0.006997,0.249902,0,0);-ms-transform:matrix(0.109102,0.003055,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.109102,0.003055,-0.006997,0.249902,0,0);}
.m49_c00340{transform:matrix(0.153475,0.004297,-0.006997,0.249902,0,0);-ms-transform:matrix(0.153475,0.004297,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.153475,0.004297,-0.006997,0.249902,0,0);}
.mca_c00340{transform:matrix(0.155644,0.004358,-0.006997,0.249902,0,0);-ms-transform:matrix(0.155644,0.004358,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.155644,0.004358,-0.006997,0.249902,0,0);}
.mcb_c00340{transform:matrix(0.160942,0.004506,-0.006997,0.249902,0,0);-ms-transform:matrix(0.160942,0.004506,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.160942,0.004506,-0.006997,0.249902,0,0);}
.ma6_c00340{transform:matrix(0.164011,0.004592,-0.006997,0.249902,0,0);-ms-transform:matrix(0.164011,0.004592,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.164011,0.004592,-0.006997,0.249902,0,0);}
.mc9_c00340{transform:matrix(0.168039,0.004705,-0.006997,0.249902,0,0);-ms-transform:matrix(0.168039,0.004705,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.168039,0.004705,-0.006997,0.249902,0,0);}
.me2_c00340{transform:matrix(0.172547,0.006391,-0.009253,0.249829,0,0);-ms-transform:matrix(0.172547,0.006391,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.172547,0.006391,-0.009253,0.249829,0,0);}
.m40_c00340{transform:matrix(0.172907,0.004841,-0.006997,0.249902,0,0);-ms-transform:matrix(0.172907,0.004841,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.172907,0.004841,-0.006997,0.249902,0,0);}
.me0_c00340{transform:matrix(0.174096,0.006448,-0.009253,0.249829,0,0);-ms-transform:matrix(0.174096,0.006448,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.174096,0.006448,-0.009253,0.249829,0,0);}
.mde_c00340{transform:matrix(0.174295,0.006455,-0.009253,0.249829,0,0);-ms-transform:matrix(0.174295,0.006455,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.174295,0.006455,-0.009253,0.249829,0,0);}
.md8_c00340{transform:matrix(0.174345,0.006457,-0.009253,0.249829,0,0);-ms-transform:matrix(0.174345,0.006457,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.174345,0.006457,-0.009253,0.249829,0,0);}
.m6e_c00340{transform:matrix(0.174347,0.004882,-0.006997,0.249902,0,0);-ms-transform:matrix(0.174347,0.004882,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.174347,0.004882,-0.006997,0.249902,0,0);}
.mcd_c00340{transform:matrix(0.174597,0.004889,-0.006997,0.249902,0,0);-ms-transform:matrix(0.174597,0.004889,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.174597,0.004889,-0.006997,0.249902,0,0);}
.m4c_c00340{transform:matrix(0.176066,0.004930,-0.006997,0.249902,0,0);-ms-transform:matrix(0.176066,0.004930,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.176066,0.004930,-0.006997,0.249902,0,0);}
.m67_c00340{transform:matrix(0.177435,0.004968,-0.006997,0.249902,0,0);-ms-transform:matrix(0.177435,0.004968,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.177435,0.004968,-0.006997,0.249902,0,0);}
.m110_c00340{transform:matrix(0.177708,0.005870,-0.008254,0.249864,0,0);-ms-transform:matrix(0.177708,0.005870,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.177708,0.005870,-0.008254,0.249864,0,0);}
.mda_c00340{transform:matrix(0.179017,0.006630,-0.009253,0.249829,0,0);-ms-transform:matrix(0.179017,0.006630,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.179017,0.006630,-0.009253,0.249829,0,0);}
.m65_c00340{transform:matrix(0.179185,0.005017,-0.006997,0.249902,0,0);-ms-transform:matrix(0.179185,0.005017,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.179185,0.005017,-0.006997,0.249902,0,0);}
.m85_c00340{transform:matrix(0.179615,0.005029,-0.006997,0.249902,0,0);-ms-transform:matrix(0.179615,0.005029,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.179615,0.005029,-0.006997,0.249902,0,0);}
.m9c_c00340{transform:matrix(0.179675,0.005031,-0.006997,0.249902,0,0);-ms-transform:matrix(0.179675,0.005031,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.179675,0.005031,-0.006997,0.249902,0,0);}
.mf2_c00340{transform:matrix(0.180163,0.006492,-0.009003,0.249838,0,0);-ms-transform:matrix(0.180163,0.006492,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.180163,0.006492,-0.009003,0.249838,0,0);}
.ma0_c00340{transform:matrix(0.181324,0.005077,-0.006997,0.249902,0,0);-ms-transform:matrix(0.181324,0.005077,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.181324,0.005077,-0.006997,0.249902,0,0);}
.m24_c00340{transform:matrix(0.183963,0.005151,-0.006997,0.249902,0,0);-ms-transform:matrix(0.183963,0.005151,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.183963,0.005151,-0.006997,0.249902,0,0);}
.me3_c00340{transform:matrix(0.184518,0.006834,-0.009253,0.249829,0,0);-ms-transform:matrix(0.184518,0.006834,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.184518,0.006834,-0.009253,0.249829,0,0);}
.mc8_c00340{transform:matrix(0.186242,0.005215,-0.006997,0.249902,0,0);-ms-transform:matrix(0.186242,0.005215,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.186242,0.005215,-0.006997,0.249902,0,0);}
.mcc_c00340{transform:matrix(0.186322,0.005217,-0.006997,0.249902,0,0);-ms-transform:matrix(0.186322,0.005217,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.186322,0.005217,-0.006997,0.249902,0,0);}
.m114_c00340{transform:matrix(0.187738,0.006202,-0.008254,0.249864,0,0);-ms-transform:matrix(0.187738,0.006202,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.187738,0.006202,-0.008254,0.249864,0,0);}
.m47_c00340{transform:matrix(0.188476,0.005277,-0.006997,0.249902,0,0);-ms-transform:matrix(0.188476,0.005277,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.188476,0.005277,-0.006997,0.249902,0,0);}
.m17_c00340{transform:matrix(0.188716,0.005284,-0.006997,0.249902,0,0);-ms-transform:matrix(0.188716,0.005284,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.188716,0.005284,-0.006997,0.249902,0,0);}
.m27_c00340{transform:matrix(0.189531,0.005307,-0.006997,0.249902,0,0);-ms-transform:matrix(0.189531,0.005307,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.189531,0.005307,-0.006997,0.249902,0,0);}
.m43_c00340{transform:matrix(0.190315,0.005329,-0.006997,0.249902,0,0);-ms-transform:matrix(0.190315,0.005329,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.190315,0.005329,-0.006997,0.249902,0,0);}
.m48_c00340{transform:matrix(0.190610,0.005337,-0.006997,0.249902,0,0);-ms-transform:matrix(0.190610,0.005337,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.190610,0.005337,-0.006997,0.249902,0,0);}
.m68_c00340{transform:matrix(0.190755,0.005341,-0.006997,0.249902,0,0);-ms-transform:matrix(0.190755,0.005341,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.190755,0.005341,-0.006997,0.249902,0,0);}
.md7_c00340{transform:matrix(0.190864,0.007069,-0.009253,0.249829,0,0);-ms-transform:matrix(0.190864,0.007069,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.190864,0.007069,-0.009253,0.249829,0,0);}
.m8c_c00340{transform:matrix(0.191300,0.005356,-0.006997,0.249902,0,0);-ms-transform:matrix(0.191300,0.005356,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.191300,0.005356,-0.006997,0.249902,0,0);}
.m2a_c00340{transform:matrix(0.191900,0.005373,-0.006997,0.249902,0,0);-ms-transform:matrix(0.191900,0.005373,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.191900,0.005373,-0.006997,0.249902,0,0);}
.mf9_c00340{transform:matrix(0.191935,0.006917,-0.009003,0.249838,0,0);-ms-transform:matrix(0.191935,0.006917,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.191935,0.006917,-0.009003,0.249838,0,0);}
.m9e_c00340{transform:matrix(0.192400,0.005387,-0.006997,0.249902,0,0);-ms-transform:matrix(0.192400,0.005387,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.192400,0.005387,-0.006997,0.249902,0,0);}
.m2d_c00340{transform:matrix(0.192510,0.005390,-0.006997,0.249902,0,0);-ms-transform:matrix(0.192510,0.005390,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.192510,0.005390,-0.006997,0.249902,0,0);}
.md6_c00340{transform:matrix(0.193193,0.007155,-0.009253,0.249829,0,0);-ms-transform:matrix(0.193193,0.007155,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.193193,0.007155,-0.009253,0.249829,0,0);}
.m22_c00340{transform:matrix(0.193544,0.005419,-0.006997,0.249902,0,0);-ms-transform:matrix(0.193544,0.005419,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.193544,0.005419,-0.006997,0.249902,0,0);}
.m1d_c00340{transform:matrix(0.194274,0.005440,-0.006997,0.249902,0,0);-ms-transform:matrix(0.194274,0.005440,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.194274,0.005440,-0.006997,0.249902,0,0);}
.m6d_c00340{transform:matrix(0.194724,0.005452,-0.006997,0.249902,0,0);-ms-transform:matrix(0.194724,0.005452,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.194724,0.005452,-0.006997,0.249902,0,0);}
.mfe_c00340{transform:matrix(0.194918,0.007024,-0.009003,0.249838,0,0);-ms-transform:matrix(0.194918,0.007024,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.194918,0.007024,-0.009003,0.249838,0,0);}
.m9b_c00340{transform:matrix(0.195203,0.005466,-0.006997,0.249902,0,0);-ms-transform:matrix(0.195203,0.005466,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.195203,0.005466,-0.006997,0.249902,0,0);}
.mc_c00340{transform:matrix(0.195428,0.005472,-0.006997,0.249902,0,0);-ms-transform:matrix(0.195428,0.005472,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.195428,0.005472,-0.006997,0.249902,0,0);}
.m106_c00340{transform:matrix(0.195522,0.004106,-0.005249,0.249945,0,0);-ms-transform:matrix(0.195522,0.004106,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.195522,0.004106,-0.005249,0.249945,0,0);}
.mf_c00340{transform:matrix(0.196048,0.005489,-0.006997,0.249902,0,0);-ms-transform:matrix(0.196048,0.005489,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.196048,0.005489,-0.006997,0.249902,0,0);}
.m42_c00340{transform:matrix(0.196378,0.005499,-0.006997,0.249902,0,0);-ms-transform:matrix(0.196378,0.005499,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.196378,0.005499,-0.006997,0.249902,0,0);}
.m46_c00340{transform:matrix(0.196853,0.005512,-0.006997,0.249902,0,0);-ms-transform:matrix(0.196853,0.005512,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.196853,0.005512,-0.006997,0.249902,0,0);}
.me9_c00340{transform:matrix(0.197147,0.008486,-0.010751,0.249769,0,0);-ms-transform:matrix(0.197147,0.008486,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.197147,0.008486,-0.010751,0.249769,0,0);}
.mfb_c00340{transform:matrix(0.197912,0.007132,-0.009003,0.249838,0,0);-ms-transform:matrix(0.197912,0.007132,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.197912,0.007132,-0.009003,0.249838,0,0);}
.ma3_c00340{transform:matrix(0.198072,0.005546,-0.006997,0.249902,0,0);-ms-transform:matrix(0.198072,0.005546,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.198072,0.005546,-0.006997,0.249902,0,0);}
.m44_c00340{transform:matrix(0.198132,0.005548,-0.006997,0.249902,0,0);-ms-transform:matrix(0.198132,0.005548,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.198132,0.005548,-0.006997,0.249902,0,0);}
.meb_c00340{transform:matrix(0.198361,0.008538,-0.010751,0.249769,0,0);-ms-transform:matrix(0.198361,0.008538,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.198361,0.008538,-0.010751,0.249769,0,0);}
.mf6_c00340{transform:matrix(0.198686,0.007160,-0.009003,0.249838,0,0);-ms-transform:matrix(0.198686,0.007160,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.198686,0.007160,-0.009003,0.249838,0,0);}
.m10c_c00340{transform:matrix(0.200201,0.006613,-0.008254,0.249864,0,0);-ms-transform:matrix(0.200201,0.006613,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.200201,0.006613,-0.008254,0.249864,0,0);}
.mf7_c00340{transform:matrix(0.200245,0.007216,-0.009003,0.249838,0,0);-ms-transform:matrix(0.200245,0.007216,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.200245,0.007216,-0.009003,0.249838,0,0);}
.mf0_c00340{transform:matrix(0.200420,0.007222,-0.009003,0.249838,0,0);-ms-transform:matrix(0.200420,0.007222,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.200420,0.007222,-0.009003,0.249838,0,0);}
.m9d_c00340{transform:matrix(0.201041,0.005629,-0.006997,0.249902,0,0);-ms-transform:matrix(0.201041,0.005629,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.201041,0.005629,-0.006997,0.249902,0,0);}
.m1b_c00340{transform:matrix(0.201166,0.005633,-0.006997,0.249902,0,0);-ms-transform:matrix(0.201166,0.005633,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.201166,0.005633,-0.006997,0.249902,0,0);}
.mdf_c00340{transform:matrix(0.201397,0.007459,-0.009253,0.249829,0,0);-ms-transform:matrix(0.201397,0.007459,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.201397,0.007459,-0.009253,0.249829,0,0);}
.md_c00340{transform:matrix(0.201996,0.005656,-0.006997,0.249902,0,0);-ms-transform:matrix(0.201996,0.005656,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.201996,0.005656,-0.006997,0.249902,0,0);}
.m39_c00340{transform:matrix(0.202301,0.005664,-0.006997,0.249902,0,0);-ms-transform:matrix(0.202301,0.005664,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.202301,0.005664,-0.006997,0.249902,0,0);}
.m8a_c00340{transform:matrix(0.203210,0.005690,-0.006997,0.249902,0,0);-ms-transform:matrix(0.203210,0.005690,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.203210,0.005690,-0.006997,0.249902,0,0);}
.me1_c00340{transform:matrix(0.203560,0.007539,-0.009253,0.249829,0,0);-ms-transform:matrix(0.203560,0.007539,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.203560,0.007539,-0.009253,0.249829,0,0);}
.md9_c00340{transform:matrix(0.203955,0.007554,-0.009253,0.249829,0,0);-ms-transform:matrix(0.203955,0.007554,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.203955,0.007554,-0.009253,0.249829,0,0);}
.mdc_c00340{transform:matrix(0.204160,0.007561,-0.009253,0.249829,0,0);-ms-transform:matrix(0.204160,0.007561,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.204160,0.007561,-0.009253,0.249829,0,0);}
.mdd_c00340{transform:matrix(0.204740,0.007583,-0.009253,0.249829,0,0);-ms-transform:matrix(0.204740,0.007583,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.204740,0.007583,-0.009253,0.249829,0,0);}
.m6f_c00340{transform:matrix(0.204870,0.005736,-0.006997,0.249902,0,0);-ms-transform:matrix(0.204870,0.005736,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.204870,0.005736,-0.006997,0.249902,0,0);}
.ma2_c00340{transform:matrix(0.205664,0.005759,-0.006997,0.249902,0,0);-ms-transform:matrix(0.205664,0.005759,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.205664,0.005759,-0.006997,0.249902,0,0);}
.m8d_c00340{transform:matrix(0.206179,0.005773,-0.006997,0.249902,0,0);-ms-transform:matrix(0.206179,0.005773,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.206179,0.005773,-0.006997,0.249902,0,0);}
.m13_c00340{transform:matrix(0.206519,0.005783,-0.006997,0.249902,0,0);-ms-transform:matrix(0.206519,0.005783,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.206519,0.005783,-0.006997,0.249902,0,0);}
.me6_c00340{transform:matrix(0.206654,0.008895,-0.010751,0.249769,0,0);-ms-transform:matrix(0.206654,0.008895,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.206654,0.008895,-0.010751,0.249769,0,0);}
.m1c_c00340{transform:matrix(0.206749,0.005789,-0.006997,0.249902,0,0);-ms-transform:matrix(0.206749,0.005789,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.206749,0.005789,-0.006997,0.249902,0,0);}
.m4d_c00340{transform:matrix(0.206774,0.005790,-0.006997,0.249902,0,0);-ms-transform:matrix(0.206774,0.005790,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.206774,0.005790,-0.006997,0.249902,0,0);}
.m5b_c00340{transform:matrix(0.206829,0.005791,-0.006997,0.249902,0,0);-ms-transform:matrix(0.206829,0.005791,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.206829,0.005791,-0.006997,0.249902,0,0);}
.mdb_c00340{transform:matrix(0.207253,0.007676,-0.009253,0.249829,0,0);-ms-transform:matrix(0.207253,0.007676,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.207253,0.007676,-0.009253,0.249829,0,0);}
.m3c_c00340{transform:matrix(0.207364,0.005806,-0.006997,0.249902,0,0);-ms-transform:matrix(0.207364,0.005806,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.207364,0.005806,-0.006997,0.249902,0,0);}
.m4a_c00340{transform:matrix(0.207779,0.005818,-0.006997,0.249902,0,0);-ms-transform:matrix(0.207779,0.005818,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.207779,0.005818,-0.006997,0.249902,0,0);}
.m41_c00340{transform:matrix(0.207814,0.005819,-0.006997,0.249902,0,0);-ms-transform:matrix(0.207814,0.005819,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.207814,0.005819,-0.006997,0.249902,0,0);}
.m80_c00340{transform:matrix(0.207993,0.005824,-0.006997,0.249902,0,0);-ms-transform:matrix(0.207993,0.005824,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.207993,0.005824,-0.006997,0.249902,0,0);}
.m4b_c00340{transform:matrix(0.208118,0.005827,-0.006997,0.249902,0,0);-ms-transform:matrix(0.208118,0.005827,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.208118,0.005827,-0.006997,0.249902,0,0);}
.m7e_c00340{transform:matrix(0.208523,0.005839,-0.006997,0.249902,0,0);-ms-transform:matrix(0.208523,0.005839,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.208523,0.005839,-0.006997,0.249902,0,0);}
.m101_c00340{transform:matrix(0.209669,0.007556,-0.009003,0.249838,0,0);-ms-transform:matrix(0.209669,0.007556,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.209669,0.007556,-0.009003,0.249838,0,0);}
.m113_c00340{transform:matrix(0.210085,0.006940,-0.008254,0.249864,0,0);-ms-transform:matrix(0.210085,0.006940,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.210085,0.006940,-0.008254,0.249864,0,0);}
.m45_c00340{transform:matrix(0.210123,0.005883,-0.006997,0.249902,0,0);-ms-transform:matrix(0.210123,0.005883,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.210123,0.005883,-0.006997,0.249902,0,0);}
.m104_c00340{transform:matrix(0.210299,0.004416,-0.005249,0.249945,0,0);-ms-transform:matrix(0.210299,0.004416,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.210299,0.004416,-0.005249,0.249945,0,0);}
.m66_c00340{transform:matrix(0.210403,0.005891,-0.006997,0.249902,0,0);-ms-transform:matrix(0.210403,0.005891,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.210403,0.005891,-0.006997,0.249902,0,0);}
.mf8_c00340{transform:matrix(0.210698,0.007593,-0.009003,0.249838,0,0);-ms-transform:matrix(0.210698,0.007593,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.210698,0.007593,-0.009003,0.249838,0,0);}
.m112_c00340{transform:matrix(0.210915,0.006967,-0.008254,0.249864,0,0);-ms-transform:matrix(0.210915,0.006967,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.210915,0.006967,-0.008254,0.249864,0,0);}
.m2b_c00340{transform:matrix(0.210942,0.005906,-0.006997,0.249902,0,0);-ms-transform:matrix(0.210942,0.005906,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.210942,0.005906,-0.006997,0.249902,0,0);}
.m6b_c00340{transform:matrix(0.210962,0.005907,-0.006997,0.249902,0,0);-ms-transform:matrix(0.210962,0.005907,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.210962,0.005907,-0.006997,0.249902,0,0);}
.m86_c00340{transform:matrix(0.211212,0.005914,-0.006997,0.249902,0,0);-ms-transform:matrix(0.211212,0.005914,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.211212,0.005914,-0.006997,0.249902,0,0);}
.me8_c00340{transform:matrix(0.211989,0.009125,-0.010751,0.249769,0,0);-ms-transform:matrix(0.211989,0.009125,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.211989,0.009125,-0.010751,0.249769,0,0);}
.m1f_c00340{transform:matrix(0.212217,0.005942,-0.006997,0.249902,0,0);-ms-transform:matrix(0.212217,0.005942,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.212217,0.005942,-0.006997,0.249902,0,0);}
.m19_c00340{transform:matrix(0.212277,0.005944,-0.006997,0.249902,0,0);-ms-transform:matrix(0.212277,0.005944,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.212277,0.005944,-0.006997,0.249902,0,0);}
.ma4_c00340{transform:matrix(0.212657,0.005954,-0.006997,0.249902,0,0);-ms-transform:matrix(0.212657,0.005954,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.212657,0.005954,-0.006997,0.249902,0,0);}
.m10d_c00340{transform:matrix(0.212664,0.007025,-0.008254,0.249864,0,0);-ms-transform:matrix(0.212664,0.007025,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.212664,0.007025,-0.008254,0.249864,0,0);}
.m12_c00340{transform:matrix(0.212867,0.005960,-0.006997,0.249902,0,0);-ms-transform:matrix(0.212867,0.005960,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.212867,0.005960,-0.006997,0.249902,0,0);}
.mce_c00340{transform:matrix(0.212989,0.007888,-0.009253,0.249829,0,0);-ms-transform:matrix(0.212989,0.007888,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.212989,0.007888,-0.009253,0.249829,0,0);}
.m33_c00340{transform:matrix(0.213052,0.005965,-0.006997,0.249902,0,0);-ms-transform:matrix(0.213052,0.005965,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.213052,0.005965,-0.006997,0.249902,0,0);}
.m23_c00340{transform:matrix(0.213301,0.005972,-0.006997,0.249902,0,0);-ms-transform:matrix(0.213301,0.005972,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.213301,0.005972,-0.006997,0.249902,0,0);}
.mea_c00340{transform:matrix(0.213787,0.009202,-0.010751,0.249769,0,0);-ms-transform:matrix(0.213787,0.009202,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.213787,0.009202,-0.010751,0.249769,0,0);}
.m7a_c00340{transform:matrix(0.213906,0.005989,-0.006997,0.249902,0,0);-ms-transform:matrix(0.213906,0.005989,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.213906,0.005989,-0.006997,0.249902,0,0);}
.m9f_c00340{transform:matrix(0.213936,0.005990,-0.006997,0.249902,0,0);-ms-transform:matrix(0.213936,0.005990,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.213936,0.005990,-0.006997,0.249902,0,0);}
.mbf_c00340{transform:matrix(0.214331,0.006001,-0.006997,0.249902,0,0);-ms-transform:matrix(0.214331,0.006001,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.214331,0.006001,-0.006997,0.249902,0,0);}
.m10_c00340{transform:matrix(0.214336,0.006001,-0.006997,0.249902,0,0);-ms-transform:matrix(0.214336,0.006001,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.214336,0.006001,-0.006997,0.249902,0,0);}
.m69_c00340{transform:matrix(0.214471,0.006005,-0.006997,0.249902,0,0);-ms-transform:matrix(0.214471,0.006005,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.214471,0.006005,-0.006997,0.249902,0,0);}
.mbe_c00340{transform:matrix(0.214581,0.006008,-0.006997,0.249902,0,0);-ms-transform:matrix(0.214581,0.006008,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.214581,0.006008,-0.006997,0.249902,0,0);}
.mf1_c00340{transform:matrix(0.215440,0.007764,-0.009003,0.249838,0,0);-ms-transform:matrix(0.215440,0.007764,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.215440,0.007764,-0.009003,0.249838,0,0);}
.m6c_c00340{transform:matrix(0.215995,0.006048,-0.006997,0.249902,0,0);-ms-transform:matrix(0.215995,0.006048,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.215995,0.006048,-0.006997,0.249902,0,0);}
.m88_c00340{transform:matrix(0.216650,0.006066,-0.006997,0.249902,0,0);-ms-transform:matrix(0.216650,0.006066,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.216650,0.006066,-0.006997,0.249902,0,0);}
.m38_c00340{transform:matrix(0.216800,0.006070,-0.006997,0.249902,0,0);-ms-transform:matrix(0.216800,0.006070,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.216800,0.006070,-0.006997,0.249902,0,0);}
.m7b_c00340{transform:matrix(0.217445,0.006088,-0.006997,0.249902,0,0);-ms-transform:matrix(0.217445,0.006088,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.217445,0.006088,-0.006997,0.249902,0,0);}
.m20_c00340{transform:matrix(0.218534,0.006119,-0.006997,0.249902,0,0);-ms-transform:matrix(0.218534,0.006119,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.218534,0.006119,-0.006997,0.249902,0,0);}
.m2f_c00340{transform:matrix(0.219064,0.006134,-0.006997,0.249902,0,0);-ms-transform:matrix(0.219064,0.006134,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.219064,0.006134,-0.006997,0.249902,0,0);}
.mfd_c00340{transform:matrix(0.219068,0.007894,-0.009003,0.249838,0,0);-ms-transform:matrix(0.219068,0.007894,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.219068,0.007894,-0.009003,0.249838,0,0);}
.mf5_c00340{transform:matrix(0.219168,0.007898,-0.009003,0.249838,0,0);-ms-transform:matrix(0.219168,0.007898,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.219168,0.007898,-0.009003,0.249838,0,0);}
.med_c00340{transform:matrix(0.219502,0.009448,-0.010751,0.249769,0,0);-ms-transform:matrix(0.219502,0.009448,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.219502,0.009448,-0.010751,0.249769,0,0);}
.m16_c00340{transform:matrix(0.220728,0.006180,-0.006997,0.249902,0,0);-ms-transform:matrix(0.220728,0.006180,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.220728,0.006180,-0.006997,0.249902,0,0);}
.m111_c00340{transform:matrix(0.221124,0.007304,-0.008254,0.249864,0,0);-ms-transform:matrix(0.221124,0.007304,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.221124,0.007304,-0.008254,0.249864,0,0);}
.mf4_c00340{transform:matrix(0.221236,0.007972,-0.009003,0.249838,0,0);-ms-transform:matrix(0.221236,0.007972,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.221236,0.007972,-0.009003,0.249838,0,0);}
.m34_c00340{transform:matrix(0.221723,0.006208,-0.006997,0.249902,0,0);-ms-transform:matrix(0.221723,0.006208,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.221723,0.006208,-0.006997,0.249902,0,0);}
.ma5_c00340{transform:matrix(0.222088,0.006218,-0.006997,0.249902,0,0);-ms-transform:matrix(0.222088,0.006218,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.222088,0.006218,-0.006997,0.249902,0,0);}
.ma1_c00340{transform:matrix(0.222168,0.006221,-0.006997,0.249902,0,0);-ms-transform:matrix(0.222168,0.006221,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.222168,0.006221,-0.006997,0.249902,0,0);}
.m7_c00340{transform:matrix(0.222523,0.006231,-0.006997,0.249902,0,0);-ms-transform:matrix(0.222523,0.006231,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.222523,0.006231,-0.006997,0.249902,0,0);}
.m1e_c00340{transform:matrix(0.223862,0.006268,-0.006997,0.249902,0,0);-ms-transform:matrix(0.223862,0.006268,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.223862,0.006268,-0.006997,0.249902,0,0);}
.m8e_c00340{transform:matrix(0.223982,0.006272,-0.006997,0.249902,0,0);-ms-transform:matrix(0.223982,0.006272,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.223982,0.006272,-0.006997,0.249902,0,0);}
.mef_c00340{transform:matrix(0.224259,0.008081,-0.009003,0.249838,0,0);-ms-transform:matrix(0.224259,0.008081,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.224259,0.008081,-0.009003,0.249838,0,0);}
.m74_c00340{transform:matrix(0.224567,0.006288,-0.006997,0.249902,0,0);-ms-transform:matrix(0.224567,0.006288,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.224567,0.006288,-0.006997,0.249902,0,0);}
.m1a_c00340{transform:matrix(0.224582,0.006288,-0.006997,0.249902,0,0);-ms-transform:matrix(0.224582,0.006288,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.224582,0.006288,-0.006997,0.249902,0,0);}
.m98_c00340{transform:matrix(0.224592,0.006289,-0.006997,0.249902,0,0);-ms-transform:matrix(0.224592,0.006289,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.224592,0.006289,-0.006997,0.249902,0,0);}
.m3_c00340{transform:matrix(0.225257,0.006307,-0.006997,0.249902,0,0);-ms-transform:matrix(0.225257,0.006307,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.225257,0.006307,-0.006997,0.249902,0,0);}
.mec_c00340{transform:matrix(0.225481,0.009705,-0.010751,0.249769,0,0);-ms-transform:matrix(0.225481,0.009705,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.225481,0.009705,-0.010751,0.249769,0,0);}
.md4_c00340{transform:matrix(0.225515,0.008352,-0.009253,0.249829,0,0);-ms-transform:matrix(0.225515,0.008352,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.225515,0.008352,-0.009253,0.249829,0,0);}
.mae_c00340{transform:matrix(0.225692,0.006319,-0.006997,0.249902,0,0);-ms-transform:matrix(0.225692,0.006319,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.225692,0.006319,-0.006997,0.249902,0,0);}
.m53_c00340{transform:matrix(0.225976,0.006327,-0.006997,0.249902,0,0);-ms-transform:matrix(0.225976,0.006327,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.225976,0.006327,-0.006997,0.249902,0,0);}
.mc4_c00340{transform:matrix(0.226051,0.006329,-0.006997,0.249902,0,0);-ms-transform:matrix(0.226051,0.006329,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.226051,0.006329,-0.006997,0.249902,0,0);}
.m2c_c00340{transform:matrix(0.226331,0.006337,-0.006997,0.249902,0,0);-ms-transform:matrix(0.226331,0.006337,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.226331,0.006337,-0.006997,0.249902,0,0);}
.m58_c00340{transform:matrix(0.226656,0.006346,-0.006997,0.249902,0,0);-ms-transform:matrix(0.226656,0.006346,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.226656,0.006346,-0.006997,0.249902,0,0);}
.m6a_c00340{transform:matrix(0.227291,0.006364,-0.006997,0.249902,0,0);-ms-transform:matrix(0.227291,0.006364,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.227291,0.006364,-0.006997,0.249902,0,0);}
.m3b_c00340{transform:matrix(0.227331,0.006365,-0.006997,0.249902,0,0);-ms-transform:matrix(0.227331,0.006365,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.227331,0.006365,-0.006997,0.249902,0,0);}
.m7d_c00340{transform:matrix(0.227621,0.006373,-0.006997,0.249902,0,0);-ms-transform:matrix(0.227621,0.006373,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.227621,0.006373,-0.006997,0.249902,0,0);}
.mc2_c00340{transform:matrix(0.227766,0.006377,-0.006997,0.249902,0,0);-ms-transform:matrix(0.227766,0.006377,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.227766,0.006377,-0.006997,0.249902,0,0);}
.m18_c00340{transform:matrix(0.227821,0.006379,-0.006997,0.249902,0,0);-ms-transform:matrix(0.227821,0.006379,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.227821,0.006379,-0.006997,0.249902,0,0);}
.m82_c00340{transform:matrix(0.227886,0.006381,-0.006997,0.249902,0,0);-ms-transform:matrix(0.227886,0.006381,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.227886,0.006381,-0.006997,0.249902,0,0);}
.m7c_c00340{transform:matrix(0.228046,0.006385,-0.006997,0.249902,0,0);-ms-transform:matrix(0.228046,0.006385,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.228046,0.006385,-0.006997,0.249902,0,0);}
.m93_c00340{transform:matrix(0.228071,0.006386,-0.006997,0.249902,0,0);-ms-transform:matrix(0.228071,0.006386,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.228071,0.006386,-0.006997,0.249902,0,0);}
.m10a_c00340{transform:matrix(0.228335,0.007543,-0.008254,0.249864,0,0);-ms-transform:matrix(0.228335,0.007543,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.228335,0.007543,-0.008254,0.249864,0,0);}
.me4_c00340{transform:matrix(0.228943,0.009854,-0.010751,0.249769,0,0);-ms-transform:matrix(0.228943,0.009854,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.228943,0.009854,-0.010751,0.249769,0,0);}
.m26_c00340{transform:matrix(0.229015,0.006412,-0.006997,0.249902,0,0);-ms-transform:matrix(0.229015,0.006412,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.229015,0.006412,-0.006997,0.249902,0,0);}
.m95_c00340{transform:matrix(0.229175,0.006417,-0.006997,0.249902,0,0);-ms-transform:matrix(0.229175,0.006417,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.229175,0.006417,-0.006997,0.249902,0,0);}
.mf3_c00340{transform:matrix(0.229276,0.008262,-0.009003,0.249838,0,0);-ms-transform:matrix(0.229276,0.008262,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.229276,0.008262,-0.009003,0.249838,0,0);}
.m84_c00340{transform:matrix(0.229395,0.006423,-0.006997,0.249902,0,0);-ms-transform:matrix(0.229395,0.006423,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.229395,0.006423,-0.006997,0.249902,0,0);}
.m3a_c00340{transform:matrix(0.229545,0.006427,-0.006997,0.249902,0,0);-ms-transform:matrix(0.229545,0.006427,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.229545,0.006427,-0.006997,0.249902,0,0);}
.m72_c00340{transform:matrix(0.229785,0.006434,-0.006997,0.249902,0,0);-ms-transform:matrix(0.229785,0.006434,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.229785,0.006434,-0.006997,0.249902,0,0);}
.m56_c00340{transform:matrix(0.230250,0.006447,-0.006997,0.249902,0,0);-ms-transform:matrix(0.230250,0.006447,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.230250,0.006447,-0.006997,0.249902,0,0);}
.m14_c00340{transform:matrix(0.230485,0.006454,-0.006997,0.249902,0,0);-ms-transform:matrix(0.230485,0.006454,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.230485,0.006454,-0.006997,0.249902,0,0);}
.m11_c00340{transform:matrix(0.230505,0.006454,-0.006997,0.249902,0,0);-ms-transform:matrix(0.230505,0.006454,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.230505,0.006454,-0.006997,0.249902,0,0);}
.m29_c00340{transform:matrix(0.230630,0.006458,-0.006997,0.249902,0,0);-ms-transform:matrix(0.230630,0.006458,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.230630,0.006458,-0.006997,0.249902,0,0);}
.m115_c00340{transform:matrix(0.230689,0.007620,-0.008254,0.249864,0,0);-ms-transform:matrix(0.230689,0.007620,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.230689,0.007620,-0.008254,0.249864,0,0);}
.m28_c00340{transform:matrix(0.231094,0.006471,-0.006997,0.249902,0,0);-ms-transform:matrix(0.231094,0.006471,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.231094,0.006471,-0.006997,0.249902,0,0);}
.m126_c00340{transform:matrix(0.231331,0.008568,-0.009253,0.249829,0,0);-ms-transform:matrix(0.231331,0.008568,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.231331,0.008568,-0.009253,0.249829,0,0);}
.me5_c00340{transform:matrix(0.231536,0.009966,-0.010751,0.249769,0,0);-ms-transform:matrix(0.231536,0.009966,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.231536,0.009966,-0.010751,0.249769,0,0);}
.m118_c00340{transform:matrix(0.231669,0.007653,-0.008254,0.249864,0,0);-ms-transform:matrix(0.231669,0.007653,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.231669,0.007653,-0.008254,0.249864,0,0);}
.m103_c00340{transform:matrix(0.231959,0.004871,-0.005249,0.249945,0,0);-ms-transform:matrix(0.231959,0.004871,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.231959,0.004871,-0.005249,0.249945,0,0);}
.m5d_c00340{transform:matrix(0.232504,0.006510,-0.006997,0.249902,0,0);-ms-transform:matrix(0.232504,0.006510,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.232504,0.006510,-0.006997,0.249902,0,0);}
.m10f_c00340{transform:matrix(0.232628,0.007684,-0.008254,0.249864,0,0);-ms-transform:matrix(0.232628,0.007684,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.232628,0.007684,-0.008254,0.249864,0,0);}
.m3e_c00340{transform:matrix(0.232694,0.006515,-0.006997,0.249902,0,0);-ms-transform:matrix(0.232694,0.006515,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.232694,0.006515,-0.006997,0.249902,0,0);}
.m83_c00340{transform:matrix(0.232884,0.006521,-0.006997,0.249902,0,0);-ms-transform:matrix(0.232884,0.006521,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.232884,0.006521,-0.006997,0.249902,0,0);}
.mc1_c00340{transform:matrix(0.233478,0.006537,-0.006997,0.249902,0,0);-ms-transform:matrix(0.233478,0.006537,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.233478,0.006537,-0.006997,0.249902,0,0);}
.m79_c00340{transform:matrix(0.233568,0.006540,-0.006997,0.249902,0,0);-ms-transform:matrix(0.233568,0.006540,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.233568,0.006540,-0.006997,0.249902,0,0);}
.m107_c00340{transform:matrix(0.233574,0.004905,-0.005249,0.249945,0,0);-ms-transform:matrix(0.233574,0.004905,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.233574,0.004905,-0.005249,0.249945,0,0);}
.mfc_c00340{transform:matrix(0.233893,0.008429,-0.009003,0.249838,0,0);-ms-transform:matrix(0.233893,0.008429,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.233893,0.008429,-0.009003,0.249838,0,0);}
.m105_c00340{transform:matrix(0.234133,0.004917,-0.005249,0.249945,0,0);-ms-transform:matrix(0.234133,0.004917,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.234133,0.004917,-0.005249,0.249945,0,0);}
.m8b_c00340{transform:matrix(0.234413,0.006564,-0.006997,0.249902,0,0);-ms-transform:matrix(0.234413,0.006564,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.234413,0.006564,-0.006997,0.249902,0,0);}
.mc3_c00340{transform:matrix(0.234598,0.006569,-0.006997,0.249902,0,0);-ms-transform:matrix(0.234598,0.006569,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.234598,0.006569,-0.006997,0.249902,0,0);}
.m10b_c00340{transform:matrix(0.234807,0.007756,-0.008254,0.249864,0,0);-ms-transform:matrix(0.234807,0.007756,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.234807,0.007756,-0.008254,0.249864,0,0);}
.m3d_c00340{transform:matrix(0.235188,0.006585,-0.006997,0.249902,0,0);-ms-transform:matrix(0.235188,0.006585,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.235188,0.006585,-0.006997,0.249902,0,0);}
.me7_c00340{transform:matrix(0.235547,0.010139,-0.010751,0.249769,0,0);-ms-transform:matrix(0.235547,0.010139,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.235547,0.010139,-0.010751,0.249769,0,0);}
.m108_c00340{transform:matrix(0.235628,0.004948,-0.005249,0.249945,0,0);-ms-transform:matrix(0.235628,0.004948,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.235628,0.004948,-0.005249,0.249945,0,0);}
.m78_c00340{transform:matrix(0.235698,0.006600,-0.006997,0.249902,0,0);-ms-transform:matrix(0.235698,0.006600,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.235698,0.006600,-0.006997,0.249902,0,0);}
.m87_c00340{transform:matrix(0.235718,0.006600,-0.006997,0.249902,0,0);-ms-transform:matrix(0.235718,0.006600,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.235718,0.006600,-0.006997,0.249902,0,0);}
.m7f_c00340{transform:matrix(0.236057,0.006610,-0.006997,0.249902,0,0);-ms-transform:matrix(0.236057,0.006610,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.236057,0.006610,-0.006997,0.249902,0,0);}
.mbd_c00340{transform:matrix(0.236252,0.006615,-0.006997,0.249902,0,0);-ms-transform:matrix(0.236252,0.006615,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.236252,0.006615,-0.006997,0.249902,0,0);}
.m89_c00340{transform:matrix(0.236702,0.006628,-0.006997,0.249902,0,0);-ms-transform:matrix(0.236702,0.006628,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.236702,0.006628,-0.006997,0.249902,0,0);}
.mb8_c00340{transform:matrix(0.236972,0.006635,-0.006997,0.249902,0,0);-ms-transform:matrix(0.236972,0.006635,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.236972,0.006635,-0.006997,0.249902,0,0);}
.me_c00340{transform:matrix(0.236977,0.006635,-0.006997,0.249902,0,0);-ms-transform:matrix(0.236977,0.006635,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.236977,0.006635,-0.006997,0.249902,0,0);}
.mff_c00340{transform:matrix(0.237096,0.008544,-0.009003,0.249838,0,0);-ms-transform:matrix(0.237096,0.008544,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.237096,0.008544,-0.009003,0.249838,0,0);}
.m116_c00340{transform:matrix(0.237660,0.007851,-0.008254,0.249864,0,0);-ms-transform:matrix(0.237660,0.007851,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.237660,0.007851,-0.008254,0.249864,0,0);}
.mee_c00340{transform:matrix(0.237815,0.010236,-0.010751,0.249769,0,0);-ms-transform:matrix(0.237815,0.010236,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.237815,0.010236,-0.010751,0.249769,0,0);}
.mc5_c00340{transform:matrix(0.237947,0.006663,-0.006997,0.249902,0,0);-ms-transform:matrix(0.237947,0.006663,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.237947,0.006663,-0.006997,0.249902,0,0);}
.m4f_c00340{transform:matrix(0.238262,0.006671,-0.006997,0.249902,0,0);-ms-transform:matrix(0.238262,0.006671,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.238262,0.006671,-0.006997,0.249902,0,0);}
.mb6_c00340{transform:matrix(0.238292,0.006672,-0.006997,0.249902,0,0);-ms-transform:matrix(0.238292,0.006672,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.238292,0.006672,-0.006997,0.249902,0,0);}
.m11d_c00340{transform:matrix(0.238334,0.009543,-0.010002,0.249800,0,0);-ms-transform:matrix(0.238334,0.009543,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.238334,0.009543,-0.010002,0.249800,0,0);}
.m90_c00340{transform:matrix(0.238407,0.006675,-0.006997,0.249902,0,0);-ms-transform:matrix(0.238407,0.006675,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.238407,0.006675,-0.006997,0.249902,0,0);}
.m63_c00340{transform:matrix(0.238442,0.006676,-0.006997,0.249902,0,0);-ms-transform:matrix(0.238442,0.006676,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.238442,0.006676,-0.006997,0.249902,0,0);}
.m1_c00340{transform:matrix(0.239136,0.006696,-0.006997,0.249902,0,0);-ms-transform:matrix(0.239136,0.006696,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.239136,0.006696,-0.006997,0.249902,0,0);}
.ma8_c00340{transform:matrix(0.239216,0.006698,-0.006997,0.249902,0,0);-ms-transform:matrix(0.239216,0.006698,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.239216,0.006698,-0.006997,0.249902,0,0);}
.m15_c00340{transform:matrix(0.239261,0.006699,-0.006997,0.249902,0,0);-ms-transform:matrix(0.239261,0.006699,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.239261,0.006699,-0.006997,0.249902,0,0);}
.m100_c00340{transform:matrix(0.239584,0.008634,-0.009003,0.249838,0,0);-ms-transform:matrix(0.239584,0.008634,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.239584,0.008634,-0.009003,0.249838,0,0);}
.m50_c00340{transform:matrix(0.239816,0.006715,-0.006997,0.249902,0,0);-ms-transform:matrix(0.239816,0.006715,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.239816,0.006715,-0.006997,0.249902,0,0);}
.m11b_c00340{transform:matrix(0.239823,0.009603,-0.010002,0.249800,0,0);-ms-transform:matrix(0.239823,0.009603,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.239823,0.009603,-0.010002,0.249800,0,0);}
.m21_c00340{transform:matrix(0.239831,0.006715,-0.006997,0.249902,0,0);-ms-transform:matrix(0.239831,0.006715,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.239831,0.006715,-0.006997,0.249902,0,0);}
.m102_c00340{transform:matrix(0.239837,0.005037,-0.005249,0.249945,0,0);-ms-transform:matrix(0.239837,0.005037,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.239837,0.005037,-0.005249,0.249945,0,0);}
.m25_c00340{transform:matrix(0.240806,0.006743,-0.006997,0.249902,0,0);-ms-transform:matrix(0.240806,0.006743,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.240806,0.006743,-0.006997,0.249902,0,0);}
.mfa_c00340{transform:matrix(0.241863,0.008716,-0.009003,0.249838,0,0);-ms-transform:matrix(0.241863,0.008716,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.241863,0.008716,-0.009003,0.249838,0,0);}
.m81_c00340{transform:matrix(0.242995,0.006804,-0.006997,0.249902,0,0);-ms-transform:matrix(0.242995,0.006804,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.242995,0.006804,-0.006997,0.249902,0,0);}
.m5e_c00340{transform:matrix(0.243280,0.006812,-0.006997,0.249902,0,0);-ms-transform:matrix(0.243280,0.006812,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.243280,0.006812,-0.006997,0.249902,0,0);}
.m4e_c00340{transform:matrix(0.243400,0.006815,-0.006997,0.249902,0,0);-ms-transform:matrix(0.243400,0.006815,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.243400,0.006815,-0.006997,0.249902,0,0);}
.md1_c00340{transform:matrix(0.243923,0.009034,-0.009253,0.249829,0,0);-ms-transform:matrix(0.243923,0.009034,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.243923,0.009034,-0.009253,0.249829,0,0);}
.m3f_c00340{transform:matrix(0.244059,0.006834,-0.006997,0.249902,0,0);-ms-transform:matrix(0.244059,0.006834,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.244059,0.006834,-0.006997,0.249902,0,0);}
.m70_c00340{transform:matrix(0.244099,0.006835,-0.006997,0.249902,0,0);-ms-transform:matrix(0.244099,0.006835,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.244099,0.006835,-0.006997,0.249902,0,0);}
.m60_c00340{transform:matrix(0.244674,0.006851,-0.006997,0.249902,0,0);-ms-transform:matrix(0.244674,0.006851,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.244674,0.006851,-0.006997,0.249902,0,0);}
.m31_c00340{transform:matrix(0.244814,0.006855,-0.006997,0.249902,0,0);-ms-transform:matrix(0.244814,0.006855,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.244814,0.006855,-0.006997,0.249902,0,0);}
.m30_c00340{transform:matrix(0.245349,0.006870,-0.006997,0.249902,0,0);-ms-transform:matrix(0.245349,0.006870,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.245349,0.006870,-0.006997,0.249902,0,0);}
.m99_c00340{transform:matrix(0.245364,0.006870,-0.006997,0.249902,0,0);-ms-transform:matrix(0.245364,0.006870,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.245364,0.006870,-0.006997,0.249902,0,0);}
.m76_c00340{transform:matrix(0.246313,0.006897,-0.006997,0.249902,0,0);-ms-transform:matrix(0.246313,0.006897,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.246313,0.006897,-0.006997,0.249902,0,0);}
.mad_c00340{transform:matrix(0.247588,0.006932,-0.006997,0.249902,0,0);-ms-transform:matrix(0.247588,0.006932,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.247588,0.006932,-0.006997,0.249902,0,0);}
.m77_c00340{transform:matrix(0.247948,0.006943,-0.006997,0.249902,0,0);-ms-transform:matrix(0.247948,0.006943,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.247948,0.006943,-0.006997,0.249902,0,0);}
.m120_c00340{transform:matrix(0.248041,0.009932,-0.010002,0.249800,0,0);-ms-transform:matrix(0.248041,0.009932,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.248041,0.009932,-0.010002,0.249800,0,0);}
.m71_c00340{transform:matrix(0.248058,0.006946,-0.006997,0.249902,0,0);-ms-transform:matrix(0.248058,0.006946,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.248058,0.006946,-0.006997,0.249902,0,0);}
.m11c_c00340{transform:matrix(0.248566,0.009953,-0.010002,0.249800,0,0);-ms-transform:matrix(0.248566,0.009953,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.248566,0.009953,-0.010002,0.249800,0,0);}
.mb5_c00340{transform:matrix(0.248827,0.006967,-0.006997,0.249902,0,0);-ms-transform:matrix(0.248827,0.006967,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.248827,0.006967,-0.006997,0.249902,0,0);}
.m2e_c00340{transform:matrix(0.248837,0.006967,-0.006997,0.249902,0,0);-ms-transform:matrix(0.248837,0.006967,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.248837,0.006967,-0.006997,0.249902,0,0);}
.m5_c00340{transform:matrix(0.249307,0.006981,-0.006997,0.249902,0,0);-ms-transform:matrix(0.249307,0.006981,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.249307,0.006981,-0.006997,0.249902,0,0);}
.m36_c00340{transform:matrix(0.250097,0.007003,-0.006997,0.249902,0,0);-ms-transform:matrix(0.250097,0.007003,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.250097,0.007003,-0.006997,0.249902,0,0);}
.mb9_c00340{transform:matrix(0.250852,0.007024,-0.006997,0.249902,0,0);-ms-transform:matrix(0.250852,0.007024,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.250852,0.007024,-0.006997,0.249902,0,0);}
.m127_c00340{transform:matrix(0.250973,0.009295,-0.009253,0.249829,0,0);-ms-transform:matrix(0.250973,0.009295,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.250973,0.009295,-0.009253,0.249829,0,0);}
.md3_c00340{transform:matrix(0.252057,0.009335,-0.009253,0.249829,0,0);-ms-transform:matrix(0.252057,0.009335,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.252057,0.009335,-0.009253,0.249829,0,0);}
.m32_c00340{transform:matrix(0.253851,0.007108,-0.006997,0.249902,0,0);-ms-transform:matrix(0.253851,0.007108,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.253851,0.007108,-0.006997,0.249902,0,0);}
.m122_c00340{transform:matrix(0.254736,0.010200,-0.010002,0.249800,0,0);-ms-transform:matrix(0.254736,0.010200,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.254736,0.010200,-0.010002,0.249800,0,0);}
.mba_c00340{transform:matrix(0.254955,0.007139,-0.006997,0.249902,0,0);-ms-transform:matrix(0.254955,0.007139,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.254955,0.007139,-0.006997,0.249902,0,0);}
.m121_c00340{transform:matrix(0.255176,0.010217,-0.010002,0.249800,0,0);-ms-transform:matrix(0.255176,0.010217,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.255176,0.010217,-0.010002,0.249800,0,0);}
.m73_c00340{transform:matrix(0.255330,0.007149,-0.006997,0.249902,0,0);-ms-transform:matrix(0.255330,0.007149,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.255330,0.007149,-0.006997,0.249902,0,0);}
.m4_c00340{transform:matrix(0.255645,0.007158,-0.006997,0.249902,0,0);-ms-transform:matrix(0.255645,0.007158,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.255645,0.007158,-0.006997,0.249902,0,0);}
.md0_c00340{transform:matrix(0.257039,0.009520,-0.009253,0.249829,0,0);-ms-transform:matrix(0.257039,0.009520,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.257039,0.009520,-0.009253,0.249829,0,0);}
.md2_c00340{transform:matrix(0.257468,0.009536,-0.009253,0.249829,0,0);-ms-transform:matrix(0.257468,0.009536,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.257468,0.009536,-0.009253,0.249829,0,0);}
.mab_c00340{transform:matrix(0.257559,0.007212,-0.006997,0.249902,0,0);-ms-transform:matrix(0.257559,0.007212,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.257559,0.007212,-0.006997,0.249902,0,0);}
.m75_c00340{transform:matrix(0.258869,0.007248,-0.006997,0.249902,0,0);-ms-transform:matrix(0.258869,0.007248,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.258869,0.007248,-0.006997,0.249902,0,0);}
.m35_c00340{transform:matrix(0.259523,0.007267,-0.006997,0.249902,0,0);-ms-transform:matrix(0.259523,0.007267,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.259523,0.007267,-0.006997,0.249902,0,0);}
.m128_c00340{transform:matrix(0.260856,0.009661,-0.009253,0.249829,0,0);-ms-transform:matrix(0.260856,0.009661,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.260856,0.009661,-0.009253,0.249829,0,0);}
.mcf_c00340{transform:matrix(0.261236,0.009675,-0.009253,0.249829,0,0);-ms-transform:matrix(0.261236,0.009675,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.261236,0.009675,-0.009253,0.249829,0,0);}
.mc0_c00340{transform:matrix(0.261667,0.007327,-0.006997,0.249902,0,0);-ms-transform:matrix(0.261667,0.007327,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.261667,0.007327,-0.006997,0.249902,0,0);}
.m52_c00340{transform:matrix(0.261742,0.007329,-0.006997,0.249902,0,0);-ms-transform:matrix(0.261742,0.007329,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.261742,0.007329,-0.006997,0.249902,0,0);}
.m37_c00340{transform:matrix(0.261902,0.007333,-0.006997,0.249902,0,0);-ms-transform:matrix(0.261902,0.007333,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.261902,0.007333,-0.006997,0.249902,0,0);}
.m55_c00340{transform:matrix(0.262292,0.007344,-0.006997,0.249902,0,0);-ms-transform:matrix(0.262292,0.007344,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.262292,0.007344,-0.006997,0.249902,0,0);}
.m11f_c00340{transform:matrix(0.263039,0.010532,-0.010002,0.249800,0,0);-ms-transform:matrix(0.263039,0.010532,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.263039,0.010532,-0.010002,0.249800,0,0);}
.m2_c00340{transform:matrix(0.263467,0.007377,-0.006997,0.249902,0,0);-ms-transform:matrix(0.263467,0.007377,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.263467,0.007377,-0.006997,0.249902,0,0);}
.mb4_c00340{transform:matrix(0.264091,0.007395,-0.006997,0.249902,0,0);-ms-transform:matrix(0.264091,0.007395,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.264091,0.007395,-0.006997,0.249902,0,0);}
.ma7_c00340{transform:matrix(0.265411,0.007432,-0.006997,0.249902,0,0);-ms-transform:matrix(0.265411,0.007432,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.265411,0.007432,-0.006997,0.249902,0,0);}
.m6_c00340{transform:matrix(0.265796,0.007442,-0.006997,0.249902,0,0);-ms-transform:matrix(0.265796,0.007442,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.265796,0.007442,-0.006997,0.249902,0,0);}
.m5a_c00340{transform:matrix(0.266131,0.007452,-0.006997,0.249902,0,0);-ms-transform:matrix(0.266131,0.007452,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.266131,0.007452,-0.006997,0.249902,0,0);}
.m57_c00340{transform:matrix(0.266206,0.007454,-0.006997,0.249902,0,0);-ms-transform:matrix(0.266206,0.007454,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.266206,0.007454,-0.006997,0.249902,0,0);}
.mc7_c00340{transform:matrix(0.267370,0.007486,-0.006997,0.249902,0,0);-ms-transform:matrix(0.267370,0.007486,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.267370,0.007486,-0.006997,0.249902,0,0);}
.m61_c00340{transform:matrix(0.267405,0.007487,-0.006997,0.249902,0,0);-ms-transform:matrix(0.267405,0.007487,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.267405,0.007487,-0.006997,0.249902,0,0);}
.m94_c00340{transform:matrix(0.268525,0.007519,-0.006997,0.249902,0,0);-ms-transform:matrix(0.268525,0.007519,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.268525,0.007519,-0.006997,0.249902,0,0);}
.m51_c00340{transform:matrix(0.269414,0.007544,-0.006997,0.249902,0,0);-ms-transform:matrix(0.269414,0.007544,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.269414,0.007544,-0.006997,0.249902,0,0);}
.m96_c00340{transform:matrix(0.269539,0.007547,-0.006997,0.249902,0,0);-ms-transform:matrix(0.269539,0.007547,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.269539,0.007547,-0.006997,0.249902,0,0);}
.m8f_c00340{transform:matrix(0.269624,0.007549,-0.006997,0.249902,0,0);-ms-transform:matrix(0.269624,0.007549,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.269624,0.007549,-0.006997,0.249902,0,0);}
.maa_c00340{transform:matrix(0.269814,0.007555,-0.006997,0.249902,0,0);-ms-transform:matrix(0.269814,0.007555,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.269814,0.007555,-0.006997,0.249902,0,0);}
.m5c_c00340{transform:matrix(0.270404,0.007571,-0.006997,0.249902,0,0);-ms-transform:matrix(0.270404,0.007571,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.270404,0.007571,-0.006997,0.249902,0,0);}
.mb2_c00340{transform:matrix(0.270474,0.007573,-0.006997,0.249902,0,0);-ms-transform:matrix(0.270474,0.007573,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.270474,0.007573,-0.006997,0.249902,0,0);}
.mac_c00340{transform:matrix(0.271104,0.007591,-0.006997,0.249902,0,0);-ms-transform:matrix(0.271104,0.007591,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.271104,0.007591,-0.006997,0.249902,0,0);}
.m59_c00340{transform:matrix(0.271164,0.007593,-0.006997,0.249902,0,0);-ms-transform:matrix(0.271164,0.007593,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.271164,0.007593,-0.006997,0.249902,0,0);}
.m97_c00340{transform:matrix(0.272433,0.007628,-0.006997,0.249902,0,0);-ms-transform:matrix(0.272433,0.007628,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.272433,0.007628,-0.006997,0.249902,0,0);}
.mb3_c00340{transform:matrix(0.272658,0.007634,-0.006997,0.249902,0,0);-ms-transform:matrix(0.272658,0.007634,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.272658,0.007634,-0.006997,0.249902,0,0);}
.m62_c00340{transform:matrix(0.272938,0.007642,-0.006997,0.249902,0,0);-ms-transform:matrix(0.272938,0.007642,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.272938,0.007642,-0.006997,0.249902,0,0);}
.ma_c00340{transform:matrix(0.273903,0.007669,-0.006997,0.249902,0,0);-ms-transform:matrix(0.273903,0.007669,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.273903,0.007669,-0.006997,0.249902,0,0);}
.m125_c00340{transform:matrix(0.274815,0.011004,-0.010002,0.249800,0,0);-ms-transform:matrix(0.274815,0.011004,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.274815,0.011004,-0.010002,0.249800,0,0);}
.mb_c00340{transform:matrix(0.275497,0.007714,-0.006997,0.249902,0,0);-ms-transform:matrix(0.275497,0.007714,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.275497,0.007714,-0.006997,0.249902,0,0);}
.m11a_c00340{transform:matrix(0.276069,0.011054,-0.010002,0.249800,0,0);-ms-transform:matrix(0.276069,0.011054,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.276069,0.011054,-0.010002,0.249800,0,0);}
.m91_c00340{transform:matrix(0.276732,0.007748,-0.006997,0.249902,0,0);-ms-transform:matrix(0.276732,0.007748,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.276732,0.007748,-0.006997,0.249902,0,0);}
.mc6_c00340{transform:matrix(0.277151,0.007760,-0.006997,0.249902,0,0);-ms-transform:matrix(0.277151,0.007760,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.277151,0.007760,-0.006997,0.249902,0,0);}
.m54_c00340{transform:matrix(0.277336,0.007765,-0.006997,0.249902,0,0);-ms-transform:matrix(0.277336,0.007765,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.277336,0.007765,-0.006997,0.249902,0,0);}
.m64_c00340{transform:matrix(0.277996,0.007784,-0.006997,0.249902,0,0);-ms-transform:matrix(0.277996,0.007784,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.277996,0.007784,-0.006997,0.249902,0,0);}
.mbb_c00340{transform:matrix(0.278071,0.007786,-0.006997,0.249902,0,0);-ms-transform:matrix(0.278071,0.007786,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.278071,0.007786,-0.006997,0.249902,0,0);}
.m117_c00340{transform:matrix(0.278718,0.009207,-0.008254,0.249864,0,0);-ms-transform:matrix(0.278718,0.009207,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.278718,0.009207,-0.008254,0.249864,0,0);}
.ma9_c00340{transform:matrix(0.278816,0.007807,-0.006997,0.249902,0,0);-ms-transform:matrix(0.278816,0.007807,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.278816,0.007807,-0.006997,0.249902,0,0);}
.m8_c00340{transform:matrix(0.279400,0.007823,-0.006997,0.249902,0,0);-ms-transform:matrix(0.279400,0.007823,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.279400,0.007823,-0.006997,0.249902,0,0);}
.m92_c00340{transform:matrix(0.279535,0.007827,-0.006997,0.249902,0,0);-ms-transform:matrix(0.279535,0.007827,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.279535,0.007827,-0.006997,0.249902,0,0);}
.m5f_c00340{transform:matrix(0.279695,0.007831,-0.006997,0.249902,0,0);-ms-transform:matrix(0.279695,0.007831,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.279695,0.007831,-0.006997,0.249902,0,0);}
.m124_c00340{transform:matrix(0.280860,0.011246,-0.010002,0.249800,0,0);-ms-transform:matrix(0.280860,0.011246,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.280860,0.011246,-0.010002,0.249800,0,0);}
.m9a_c00340{transform:matrix(0.281005,0.007868,-0.006997,0.249902,0,0);-ms-transform:matrix(0.281005,0.007868,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.281005,0.007868,-0.006997,0.249902,0,0);}
.maf_c00340{transform:matrix(0.282534,0.007911,-0.006997,0.249902,0,0);-ms-transform:matrix(0.282534,0.007911,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.282534,0.007911,-0.006997,0.249902,0,0);}
.mbc_c00340{transform:matrix(0.283984,0.007952,-0.006997,0.249902,0,0);-ms-transform:matrix(0.283984,0.007952,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.283984,0.007952,-0.006997,0.249902,0,0);}
.m123_c00340{transform:matrix(0.285926,0.011448,-0.010002,0.249800,0,0);-ms-transform:matrix(0.285926,0.011448,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.285926,0.011448,-0.010002,0.249800,0,0);}
.md5_c00340{transform:matrix(0.288247,0.010676,-0.009253,0.249829,0,0);-ms-transform:matrix(0.288247,0.010676,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.288247,0.010676,-0.009253,0.249829,0,0);}
.m11e_c00340{transform:matrix(0.288364,0.011546,-0.010002,0.249800,0,0);-ms-transform:matrix(0.288364,0.011546,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.288364,0.011546,-0.010002,0.249800,0,0);}
.mb7_c00340{transform:matrix(0.289247,0.008099,-0.006997,0.249902,0,0);-ms-transform:matrix(0.289247,0.008099,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.289247,0.008099,-0.006997,0.249902,0,0);}
.m129_c00340{transform:matrix(0.293439,0.010868,-0.009253,0.249829,0,0);-ms-transform:matrix(0.293439,0.010868,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.293439,0.010868,-0.009253,0.249829,0,0);}
.m10e_c00340{transform:matrix(0.312949,0.010338,-0.008254,0.249864,0,0);-ms-transform:matrix(0.312949,0.010338,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.312949,0.010338,-0.008254,0.249864,0,0);}
.m9_c00340{transform:matrix(0.401848,0.011252,-0.006997,0.249902,0,0);-ms-transform:matrix(0.401848,0.011252,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.401848,0.011252,-0.006997,0.249902,0,0);}
.m0_c00340{transform:matrix(0.425555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425555,0.000000,0.000000,0.250000,0,0);}
.m119_c00340{transform:matrix(0.635288,0.020986,-0.008254,0.249864,0,0);-ms-transform:matrix(0.635288,0.020986,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.635288,0.020986,-0.008254,0.249864,0,0);}
.m109_c00340{transform:matrix(1.433880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.433880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.433880,0.000000,0.000000,0.250000,0,0);}
.v0_c00340{vertical-align:0.000000px;}
.ls0_c00340{letter-spacing:0.000000px;}
.sc__c00340{text-shadow:none;}
.sc0_c00340{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__c00340{-webkit-text-stroke:0px transparent;}
.sc0_c00340{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00340{word-spacing:0.000000px;}
.fc0_c00340{color:transparent;}
.fsd_c00340{font-size:24.000000px;}
.fs10_c00340{font-size:65.979207px;}
.fsf_c00340{font-size:65.986832px;}
.fs1_c00340{font-size:72.028218px;}
.fs7_c00340{font-size:77.975426px;}
.fs3_c00340{font-size:78.030570px;}
.fse_c00340{font-size:83.961771px;}
.fsb_c00340{font-size:83.970469px;}
.fs9_c00340{font-size:83.993700px;}
.fsc_c00340{font-size:84.018520px;}
.fs2_c00340{font-size:84.032922px;}
.fsa_c00340{font-size:89.968359px;}
.fs0_c00340{font-size:90.000000px;}
.fs5_c00340{font-size:90.035273px;}
.fs8_c00340{font-size:95.969755px;}
.fs4_c00340{font-size:96.037625px;}
.fs6_c00340{font-size:102.039976px;}
.y0_c00340{bottom:0.000000px;}
.y132_c00340{bottom:159.326040px;}
.y131_c00340{bottom:161.587020px;}
.y130_c00340{bottom:164.249040px;}
.y12f_c00340{bottom:165.567300px;}
.y12e_c00340{bottom:166.466880px;}
.y12d_c00340{bottom:167.775660px;}
.y12c_c00340{bottom:168.641580px;}
.y12b_c00340{bottom:171.731340px;}
.y12a_c00340{bottom:173.058240px;}
.y129_c00340{bottom:174.426180px;}
.y128_c00340{bottom:175.695660px;}
.y127_c00340{bottom:177.402000px;}
.y126_c00340{bottom:201.761578px;}
.y125_c00340{bottom:204.912042px;}
.y124_c00340{bottom:206.375064px;}
.y123_c00340{bottom:210.118088px;}
.y122_c00340{bottom:213.848115px;}
.y121_c00340{bottom:215.185511px;}
.y11d_c00340{bottom:215.316726px;}
.y120_c00340{bottom:217.448407px;}
.y11f_c00340{bottom:219.298668px;}
.y11e_c00340{bottom:220.645927px;}
.y11c_c00340{bottom:225.472245px;}
.y11b_c00340{bottom:226.409923px;}
.y11a_c00340{bottom:226.731376px;}
.y119_c00340{bottom:227.828197px;}
.y118_c00340{bottom:231.147074px;}
.y117_c00340{bottom:236.535000px;}
.y136_c00340{bottom:268.309496px;}
.y135_c00340{bottom:269.545925px;}
.y116_c00340{bottom:269.713500px;}
.y134_c00340{bottom:270.779023px;}
.y133_c00340{bottom:271.635000px;}
.y115_c00340{bottom:275.262095px;}
.y114_c00340{bottom:276.679878px;}
.y113_c00340{bottom:277.351049px;}
.y112_c00340{bottom:279.012831px;}
.y111_c00340{bottom:280.136090px;}
.y110_c00340{bottom:282.002654px;}
.y10f_c00340{bottom:284.050500px;}
.y10e_c00340{bottom:301.269870px;}
.y10d_c00340{bottom:305.680590px;}
.y10c_c00340{bottom:308.914272px;}
.y10b_c00340{bottom:310.092066px;}
.y10a_c00340{bottom:312.122574px;}
.y109_c00340{bottom:315.756288px;}
.y108_c00340{bottom:316.885860px;}
.y107_c00340{bottom:322.027200px;}
.y106_c00340{bottom:323.219520px;}
.y105_c00340{bottom:325.089000px;}
.y104_c00340{bottom:339.208062px;}
.y103_c00340{bottom:341.216700px;}
.y102_c00340{bottom:344.467716px;}
.y101_c00340{bottom:346.924662px;}
.y100_c00340{bottom:351.691728px;}
.yff_c00340{bottom:352.878540px;}
.yfe_c00340{bottom:355.691022px;}
.yfd_c00340{bottom:357.275058px;}
.yfc_c00340{bottom:362.355000px;}
.yfb_c00340{bottom:375.355634px;}
.yfa_c00340{bottom:378.236720px;}
.yf9_c00340{bottom:379.642755px;}
.yf8_c00340{bottom:382.514231px;}
.yf7_c00340{bottom:383.991797px;}
.yf6_c00340{bottom:384.934335px;}
.yf5_c00340{bottom:386.375136px;}
.yf4_c00340{bottom:387.852251px;}
.yf3_c00340{bottom:393.066302px;}
.yf2_c00340{bottom:394.956990px;}
.yf1_c00340{bottom:397.834980px;}
.yf0_c00340{bottom:401.496000px;}
.yef_c00340{bottom:411.636793px;}
.yee_c00340{bottom:413.035837px;}
.yed_c00340{bottom:415.559866px;}
.yec_c00340{bottom:416.606263px;}
.yeb_c00340{bottom:418.777312px;}
.yea_c00340{bottom:419.839416px;}
.ye9_c00340{bottom:422.334918px;}
.ye8_c00340{bottom:424.491870px;}
.ye7_c00340{bottom:427.317597px;}
.ye6_c00340{bottom:428.706484px;}
.ye5_c00340{bottom:431.517171px;}
.ye4_c00340{bottom:432.830578px;}
.ye3_c00340{bottom:449.262963px;}
.ye2_c00340{bottom:450.526753px;}
.ye1_c00340{bottom:453.434454px;}
.ye0_c00340{bottom:455.055054px;}
.ydf_c00340{bottom:457.139301px;}
.yde_c00340{bottom:457.944994px;}
.ydd_c00340{bottom:460.448932px;}
.ydc_c00340{bottom:464.100555px;}
.ydb_c00340{bottom:468.617034px;}
.yda_c00340{bottom:469.816500px;}
.yd9_c00340{bottom:500.648598px;}
.yd8_c00340{bottom:502.435962px;}
.yd7_c00340{bottom:503.254626px;}
.yd6_c00340{bottom:504.084000px;}
.yd5_c00340{bottom:505.191804px;}
.yd4_c00340{bottom:521.859576px;}
.yd3_c00340{bottom:523.935240px;}
.yd2_c00340{bottom:526.707006px;}
.yd1_c00340{bottom:527.296656px;}
.yd0_c00340{bottom:528.809772px;}
.ycf_c00340{bottom:530.252106px;}
.yce_c00340{bottom:531.756864px;}
.ycd_c00340{bottom:532.691724px;}
.ycc_c00340{bottom:533.301996px;}
.ycb_c00340{bottom:536.593290px;}
.yca_c00340{bottom:537.439044px;}
.yc9_c00340{bottom:538.339662px;}
.yc8_c00340{bottom:540.041376px;}
.yc7_c00340{bottom:557.285202px;}
.yc6_c00340{bottom:559.237806px;}
.yc5_c00340{bottom:559.803456px;}
.yc4_c00340{bottom:561.163002px;}
.yc3_c00340{bottom:561.999060px;}
.yc2_c00340{bottom:563.127126px;}
.yc1_c00340{bottom:564.214710px;}
.yc0_c00340{bottom:565.074816px;}
.ybf_c00340{bottom:567.258510px;}
.ybe_c00340{bottom:569.747634px;}
.ybd_c00340{bottom:571.913004px;}
.ybc_c00340{bottom:589.292064px;}
.ybb_c00340{bottom:590.059938px;}
.yba_c00340{bottom:593.280054px;}
.yb9_c00340{bottom:593.971770px;}
.yb8_c00340{bottom:595.423434px;}
.yb7_c00340{bottom:598.244526px;}
.yb6_c00340{bottom:599.334804px;}
.yb5_c00340{bottom:600.792054px;}
.yb4_c00340{bottom:602.913156px;}
.yb3_c00340{bottom:603.960096px;}
.yb2_c00340{bottom:607.462920px;}
.yb1_c00340{bottom:608.890878px;}
.yb0_c00340{bottom:611.619330px;}
.yaf_c00340{bottom:626.239716px;}
.yae_c00340{bottom:628.857546px;}
.yad_c00340{bottom:631.154178px;}
.yac_c00340{bottom:632.327664px;}
.yab_c00340{bottom:633.780450px;}
.yaa_c00340{bottom:636.107208px;}
.ya9_c00340{bottom:636.944028px;}
.ya8_c00340{bottom:638.966148px;}
.ya7_c00340{bottom:640.123830px;}
.ya6_c00340{bottom:641.528712px;}
.ya5_c00340{bottom:642.369942px;}
.ya4_c00340{bottom:643.492446px;}
.ya3_c00340{bottom:662.104464px;}
.ya2_c00340{bottom:663.045798px;}
.ya1_c00340{bottom:663.993180px;}
.ya0_c00340{bottom:666.303048px;}
.y9f_c00340{bottom:669.171570px;}
.y9e_c00340{bottom:670.125840px;}
.y9d_c00340{bottom:672.752850px;}
.y9c_c00340{bottom:673.693764px;}
.y9b_c00340{bottom:676.928598px;}
.y9a_c00340{bottom:677.510604px;}
.y99_c00340{bottom:678.161970px;}
.y98_c00340{bottom:680.405364px;}
.y97_c00340{bottom:681.308406px;}
.y96_c00340{bottom:699.241110px;}
.y95_c00340{bottom:700.132902px;}
.y94_c00340{bottom:700.989306px;}
.y93_c00340{bottom:703.066986px;}
.y92_c00340{bottom:704.123934px;}
.y91_c00340{bottom:706.242966px;}
.y90_c00340{bottom:707.078778px;}
.y8f_c00340{bottom:708.505218px;}
.y8e_c00340{bottom:711.131544px;}
.y8d_c00340{bottom:712.253724px;}
.y8c_c00340{bottom:712.841370px;}
.y8b_c00340{bottom:715.341402px;}
.y8a_c00340{bottom:735.754614px;}
.y89_c00340{bottom:737.864724px;}
.y88_c00340{bottom:741.789312px;}
.y87_c00340{bottom:743.247066px;}
.y86_c00340{bottom:746.420484px;}
.y85_c00340{bottom:747.512190px;}
.y84_c00340{bottom:749.948946px;}
.y83_c00340{bottom:752.090322px;}
.y82_c00340{bottom:753.831246px;}
.y81_c00340{bottom:755.585094px;}
.y80_c00340{bottom:771.272496px;}
.y7f_c00340{bottom:771.703830px;}
.y7e_c00340{bottom:773.168244px;}
.y7d_c00340{bottom:774.647196px;}
.y7c_c00340{bottom:775.283514px;}
.y7b_c00340{bottom:777.417768px;}
.y7a_c00340{bottom:778.040208px;}
.y79_c00340{bottom:779.733684px;}
.y78_c00340{bottom:780.564144px;}
.y77_c00340{bottom:782.222700px;}
.y76_c00340{bottom:783.673710px;}
.y75_c00340{bottom:807.235332px;}
.y74_c00340{bottom:808.152624px;}
.y73_c00340{bottom:809.101278px;}
.y72_c00340{bottom:810.963558px;}
.y71_c00340{bottom:812.591664px;}
.y70_c00340{bottom:814.946034px;}
.y6f_c00340{bottom:817.039392px;}
.y6e_c00340{bottom:817.720344px;}
.y6d_c00340{bottom:818.406558px;}
.y6c_c00340{bottom:820.021482px;}
.y6b_c00340{bottom:820.677972px;}
.y6a_c00340{bottom:844.511982px;}
.y69_c00340{bottom:845.401764px;}
.y68_c00340{bottom:847.777950px;}
.y67_c00340{bottom:849.622974px;}
.y66_c00340{bottom:850.824492px;}
.y65_c00340{bottom:853.808094px;}
.y64_c00340{bottom:854.707074px;}
.y63_c00340{bottom:855.601560px;}
.y62_c00340{bottom:857.972034px;}
.y61_c00340{bottom:858.851610px;}
.y60_c00340{bottom:861.190698px;}
.y5f_c00340{bottom:879.575268px;}
.y5e_c00340{bottom:881.988402px;}
.y5d_c00340{bottom:882.773124px;}
.y5c_c00340{bottom:884.387064px;}
.y5b_c00340{bottom:885.176376px;}
.y5a_c00340{bottom:886.514550px;}
.y59_c00340{bottom:888.667230px;}
.y58_c00340{bottom:889.445514px;}
.y57_c00340{bottom:890.768052px;}
.y56_c00340{bottom:892.353942px;}
.y55_c00340{bottom:893.159898px;}
.y54_c00340{bottom:894.200160px;}
.y53_c00340{bottom:895.223640px;}
.y52_c00340{bottom:914.361468px;}
.y51_c00340{bottom:915.421644px;}
.y50_c00340{bottom:916.299906px;}
.y4f_c00340{bottom:918.786006px;}
.y4e_c00340{bottom:919.608486px;}
.y4d_c00340{bottom:921.015864px;}
.y4c_c00340{bottom:922.399794px;}
.y4b_c00340{bottom:924.066438px;}
.y4a_c00340{bottom:926.872122px;}
.y49_c00340{bottom:928.741146px;}
.y48_c00340{bottom:930.338220px;}
.y47_c00340{bottom:949.344864px;}
.y46_c00340{bottom:950.880570px;}
.y45_c00340{bottom:951.383598px;}
.y44_c00340{bottom:954.256224px;}
.y43_c00340{bottom:956.020398px;}
.y42_c00340{bottom:957.815322px;}
.y41_c00340{bottom:958.833444px;}
.y40_c00340{bottom:960.356076px;}
.y3f_c00340{bottom:961.101528px;}
.y3e_c00340{bottom:963.138372px;}
.y3d_c00340{bottom:964.118130px;}
.y3c_c00340{bottom:964.637898px;}
.y3b_c00340{bottom:987.924912px;}
.y3a_c00340{bottom:989.229792px;}
.y39_c00340{bottom:990.961080px;}
.y38_c00340{bottom:991.703922px;}
.y37_c00340{bottom:993.017598px;}
.y36_c00340{bottom:993.583062px;}
.y35_c00340{bottom:995.287032px;}
.y34_c00340{bottom:996.756732px;}
.y33_c00340{bottom:997.869612px;}
.y32_c00340{bottom:1021.790562px;}
.y31_c00340{bottom:1025.474508px;}
.y30_c00340{bottom:1026.268404px;}
.y2f_c00340{bottom:1028.206254px;}
.y2e_c00340{bottom:1029.071820px;}
.y2d_c00340{bottom:1029.888996px;}
.y2c_c00340{bottom:1031.867328px;}
.y2b_c00340{bottom:1034.345856px;}
.y2a_c00340{bottom:1035.142020px;}
.y29_c00340{bottom:1036.528218px;}
.y28_c00340{bottom:1037.053008px;}
.y27_c00340{bottom:1037.837442px;}
.y26_c00340{bottom:1059.574170px;}
.y25_c00340{bottom:1060.458306px;}
.y24_c00340{bottom:1062.814068px;}
.y23_c00340{bottom:1063.408686px;}
.y22_c00340{bottom:1064.528166px;}
.y21_c00340{bottom:1065.989364px;}
.y20_c00340{bottom:1066.845768px;}
.y1f_c00340{bottom:1067.996898px;}
.y1e_c00340{bottom:1068.861828px;}
.y1d_c00340{bottom:1069.737648px;}
.y1c_c00340{bottom:1071.768672px;}
.y1b_c00340{bottom:1072.342740px;}
.y1a_c00340{bottom:1074.322920px;}
.y19_c00340{bottom:1075.113588px;}
.y18_c00340{bottom:1091.844324px;}
.y17_c00340{bottom:1094.251944px;}
.y16_c00340{bottom:1096.378170px;}
.y15_c00340{bottom:1097.461950px;}
.y14_c00340{bottom:1098.538002px;}
.y13_c00340{bottom:1099.100538px;}
.y12_c00340{bottom:1101.223362px;}
.y11_c00340{bottom:1102.259580px;}
.y10_c00340{bottom:1103.057376px;}
.yf_c00340{bottom:1105.683360px;}
.ye_c00340{bottom:1106.478258px;}
.yd_c00340{bottom:1107.259158px;}
.yc_c00340{bottom:1128.813492px;}
.yb_c00340{bottom:1129.745556px;}
.ya_c00340{bottom:1131.989154px;}
.y9_c00340{bottom:1136.006580px;}
.y8_c00340{bottom:1136.944272px;}
.y7_c00340{bottom:1139.130162px;}
.y6_c00340{bottom:1140.363030px;}
.y5_c00340{bottom:1141.928202px;}
.y4_c00340{bottom:1142.835696px;}
.y3_c00340{bottom:1145.004366px;}
.y2_c00340{bottom:1145.887500px;}
.y1_c00340{bottom:1212.556500px;}
.hf_c00340{height:24.000000px;}
.h12_c00340{height:65.979207px;}
.h11_c00340{height:65.986832px;}
.h3_c00340{height:72.028218px;}
.h9_c00340{height:77.975426px;}
.h5_c00340{height:78.030570px;}
.h10_c00340{height:83.961771px;}
.hd_c00340{height:83.970469px;}
.hb_c00340{height:83.993700px;}
.he_c00340{height:84.018520px;}
.h4_c00340{height:84.032922px;}
.hc_c00340{height:89.968359px;}
.h2_c00340{height:90.000000px;}
.h7_c00340{height:90.035273px;}
.ha_c00340{height:95.969755px;}
.h6_c00340{height:96.037625px;}
.h8_c00340{height:102.039976px;}
.h1_c00340{height:1247.250000px;}
.h0_c00340{height:1247.400000px;}
.w0_c00340{width:915.000000px;}
.x0_c00340{left:0.000000px;}
.xc6_c00340{left:165.510000px;}
.xd2_c00340{left:166.558500px;}
.xc3_c00340{left:168.004500px;}
.xb6_c00340{left:169.162500px;}
.xb1_c00340{left:170.220000px;}
.xaa_c00340{left:171.878290px;}
.x92_c00340{left:172.973904px;}
.x65_c00340{left:175.271994px;}
.x5a_c00340{left:176.286654px;}
.x53_c00340{left:178.206966px;}
.x31_c00340{left:179.381106px;}
.x29_c00340{left:181.036662px;}
.x2_c00340{left:183.058500px;}
.xc7_c00340{left:199.615500px;}
.x32_c00340{left:201.965256px;}
.x74_c00340{left:206.665704px;}
.x54_c00340{left:209.480598px;}
.x17_c00340{left:213.314964px;}
.x3_c00340{left:214.599000px;}
.xa1_c00340{left:215.752692px;}
.x7e_c00340{left:217.821786px;}
.x42_c00340{left:221.451852px;}
.xbc_c00340{left:222.795570px;}
.x66_c00340{left:230.081862px;}
.x23_c00340{left:234.745830px;}
.x9a_c00340{left:236.811096px;}
.xd3_c00340{left:240.879605px;}
.xcc_c00340{left:243.450518px;}
.x33_c00340{left:244.569720px;}
.x2a_c00340{left:246.516822px;}
.xd_c00340{left:248.239728px;}
.x7f_c00340{left:250.171092px;}
.x5b_c00340{left:252.663390px;}
.xb2_c00340{left:255.274860px;}
.x87_c00340{left:259.956114px;}
.x43_c00340{left:264.823224px;}
.x9b_c00340{left:270.155520px;}
.x6c_c00340{left:272.660400px;}
.xd4_c00340{left:275.043906px;}
.xa2_c00340{left:279.114720px;}
.x67_c00340{left:284.483772px;}
.x55_c00340{left:286.403676px;}
.x18_c00340{left:289.504248px;}
.x4_c00340{left:292.051500px;}
.x6d_c00340{left:295.256160px;}
.xcd_c00340{left:297.286124px;}
.x44_c00340{left:298.378962px;}
.x9c_c00340{left:301.486902px;}
.x80_c00340{left:304.205616px;}
.x75_c00340{left:306.457890px;}
.xd5_c00340{left:308.183234px;}
.xb7_c00340{left:310.130890px;}
.x19_c00340{left:311.561466px;}
.x3c_c00340{left:319.551300px;}
.x24_c00340{left:322.069680px;}
.x5_c00340{left:324.462000px;}
.x76_c00340{left:326.546844px;}
.xce_c00340{left:329.098815px;}
.x2b_c00340{left:332.943408px;}
.x6e_c00340{left:338.443596px;}
.x5c_c00340{left:339.937356px;}
.xab_c00340{left:343.943886px;}
.x81_c00340{left:348.714594px;}
.x56_c00340{left:351.475902px;}
.xb8_c00340{left:354.087889px;}
.xe_c00340{left:357.679992px;}
.x93_c00340{left:359.150028px;}
.xc8_c00340{left:362.722730px;}
.x45_c00340{left:364.453854px;}
.x34_c00340{left:365.543646px;}
.x6_c00340{left:380.361000px;}
.x5d_c00340{left:383.643360px;}
.x4d_c00340{left:385.575510px;}
.x1a_c00340{left:389.673834px;}
.xf_c00340{left:390.890688px;}
.xbd_c00340{left:398.554635px;}
.xc4_c00340{left:407.893500px;}
.x88_c00340{left:414.020352px;}
.xcf_c00340{left:417.857108px;}
.x46_c00340{left:419.568528px;}
.x25_c00340{left:421.203996px;}
.x1b_c00340{left:423.365724px;}
.x7_c00340{left:424.392000px;}
.x82_c00340{left:426.508962px;}
.x68_c00340{left:427.561770px;}
.xbe_c00340{left:429.900258px;}
.x35_c00340{left:431.771928px;}
.x10_c00340{left:434.064018px;}
.x1_c00340{left:436.590000px;}
.x77_c00340{left:438.109236px;}
.x6f_c00340{left:439.478766px;}
.x89_c00340{left:446.746698px;}
.x47_c00340{left:451.975140px;}
.x1c_c00340{left:456.615072px;}
.x83_c00340{left:458.700768px;}
.x69_c00340{left:461.672448px;}
.xc9_c00340{left:463.194158px;}
.xb9_c00340{left:465.068298px;}
.x2c_c00340{left:466.374942px;}
.x78_c00340{left:470.533812px;}
.x5e_c00340{left:472.807830px;}
.x36_c00340{left:476.014602px;}
.x94_c00340{left:480.885234px;}
.xb3_c00340{left:487.199203px;}
.x70_c00340{left:494.336832px;}
.xca_c00340{left:496.397921px;}
.x3d_c00340{left:498.417294px;}
.xac_c00340{left:499.462989px;}
.x1d_c00340{left:500.890050px;}
.x8_c00340{left:502.459500px;}
.x5f_c00340{left:505.546062px;}
.xd0_c00340{left:506.917998px;}
.x8a_c00340{left:513.010764px;}
.xc5_c00340{left:518.986500px;}
.xb4_c00340{left:521.516352px;}
.x11_c00340{left:522.531930px;}
.x95_c00340{left:524.391888px;}
.x71_c00340{left:526.492638px;}
.xbf_c00340{left:530.735822px;}
.xa3_c00340{left:532.485322px;}
.x1e_c00340{left:533.834898px;}
.x9_c00340{left:535.948500px;}
.x48_c00340{left:541.670178px;}
.x2d_c00340{left:543.690756px;}
.x12_c00340{left:545.946534px;}
.x84_c00340{left:548.179266px;}
.x37_c00340{left:554.058522px;}
.x8b_c00340{left:558.568182px;}
.x6a_c00340{left:560.854860px;}
.x4e_c00340{left:562.511466px;}
.x26_c00340{left:567.611760px;}
.x96_c00340{left:569.505168px;}
.xad_c00340{left:577.334928px;}
.x2e_c00340{left:587.430738px;}
.x9d_c00340{left:589.763466px;}
.x13_c00340{left:590.810574px;}
.x8c_c00340{left:592.627860px;}
.x79_c00340{left:594.040368px;}
.x49_c00340{left:597.396894px;}
.xa4_c00340{left:600.091648px;}
.x97_c00340{left:602.956482px;}
.x85_c00340{left:604.031874px;}
.x4f_c00340{left:607.031226px;}
.x3e_c00340{left:610.062660px;}
.xb5_c00340{left:611.215064px;}
.xd1_c00340{left:616.653500px;}
.x60_c00340{left:617.904870px;}
.xc0_c00340{left:619.766202px;}
.xa5_c00340{left:621.845373px;}
.x38_c00340{left:630.789774px;}
.x1f_c00340{left:633.078942px;}
.x14_c00340{left:635.950614px;}
.x57_c00340{left:640.848102px;}
.x3f_c00340{left:642.975432px;}
.x27_c00340{left:645.130770px;}
.x72_c00340{left:648.659484px;}
.x61_c00340{left:651.406812px;}
.x20_c00340{left:655.923702px;}
.x98_c00340{left:657.355560px;}
.xba_c00340{left:665.534631px;}
.x9e_c00340{left:667.650150px;}
.x50_c00340{left:675.391158px;}
.x28_c00340{left:676.915458px;}
.xa6_c00340{left:678.120042px;}
.xa_c00340{left:679.428000px;}
.x8d_c00340{left:680.781990px;}
.xd6_c00340{left:687.732865px;}
.x2f_c00340{left:689.258070px;}
.x7a_c00340{left:692.949096px;}
.x4a_c00340{left:697.542108px;}
.xc1_c00340{left:709.500877px;}
.xae_c00340{left:710.952454px;}
.xa7_c00340{left:721.876242px;}
.x15_c00340{left:724.540026px;}
.x8e_c00340{left:726.139908px;}
.x62_c00340{left:729.210384px;}
.x4b_c00340{left:730.232262px;}
.x86_c00340{left:737.507850px;}
.x40_c00340{left:742.433790px;}
.x21_c00340{left:746.545284px;}
.x8f_c00340{left:747.734472px;}
.xd7_c00340{left:754.410121px;}
.x39_c00340{left:755.686746px;}
.x99_c00340{left:758.069502px;}
.xb_c00340{left:759.556500px;}
.x73_c00340{left:761.543826px;}
.x51_c00340{left:763.418136px;}
.x30_c00340{left:765.991674px;}
.x9f_c00340{left:770.287506px;}
.x7b_c00340{left:772.602870px;}
.x58_c00340{left:774.639768px;}
.x3a_c00340{left:777.565812px;}
.x22_c00340{left:780.534174px;}
.xaf_c00340{left:789.756683px;}
.xc_c00340{left:792.844500px;}
.x6b_c00340{left:794.987652px;}
.x52_c00340{left:796.375560px;}
.xa8_c00340{left:800.384155px;}
.x7c_c00340{left:805.258446px;}
.x63_c00340{left:806.280288px;}
.xbb_c00340{left:811.490030px;}
.x59_c00340{left:818.337336px;}
.x41_c00340{left:819.973800px;}
.x16_c00340{left:824.841240px;}
.x64_c00340{left:828.976500px;}
.x4c_c00340{left:830.784018px;}
.xc2_c00340{left:831.898357px;}
.xb0_c00340{left:833.446060px;}
.xa9_c00340{left:834.506499px;}
.x7d_c00340{left:837.698022px;}
.xcb_c00340{left:841.950522px;}
.x3b_c00340{left:844.314636px;}
.xa0_c00340{left:847.152648px;}
.x90_c00340{left:848.370216px;}
.x91_c00340{left:872.363028px;}
@media print{
.v0_c00340{vertical-align:0.000000pt;}
.ls0_c00340{letter-spacing:0.000000pt;}
.ws0_c00340{word-spacing:0.000000pt;}
.fsd_c00340{font-size:21.333333pt;}
.fs10_c00340{font-size:58.648184pt;}
.fsf_c00340{font-size:58.654961pt;}
.fs1_c00340{font-size:64.025083pt;}
.fs7_c00340{font-size:69.311490pt;}
.fs3_c00340{font-size:69.360507pt;}
.fse_c00340{font-size:74.632686pt;}
.fsb_c00340{font-size:74.640417pt;}
.fs9_c00340{font-size:74.661066pt;}
.fsc_c00340{font-size:74.683129pt;}
.fs2_c00340{font-size:74.695930pt;}
.fsa_c00340{font-size:79.971875pt;}
.fs0_c00340{font-size:80.000000pt;}
.fs5_c00340{font-size:80.031354pt;}
.fs8_c00340{font-size:85.306449pt;}
.fs4_c00340{font-size:85.366777pt;}
.fs6_c00340{font-size:90.702201pt;}
.y0_c00340{bottom:0.000000pt;}
.y132_c00340{bottom:141.623147pt;}
.y131_c00340{bottom:143.632907pt;}
.y130_c00340{bottom:145.999147pt;}
.y12f_c00340{bottom:147.170933pt;}
.y12e_c00340{bottom:147.970560pt;}
.y12d_c00340{bottom:149.133920pt;}
.y12c_c00340{bottom:149.903627pt;}
.y12b_c00340{bottom:152.650080pt;}
.y12a_c00340{bottom:153.829547pt;}
.y129_c00340{bottom:155.045493pt;}
.y128_c00340{bottom:156.173920pt;}
.y127_c00340{bottom:157.690667pt;}
.y126_c00340{bottom:179.343625pt;}
.y125_c00340{bottom:182.144037pt;}
.y124_c00340{bottom:183.444501pt;}
.y123_c00340{bottom:186.771633pt;}
.y122_c00340{bottom:190.087213pt;}
.y121_c00340{bottom:191.276009pt;}
.y11d_c00340{bottom:191.392645pt;}
.y120_c00340{bottom:193.287473pt;}
.y11f_c00340{bottom:194.932149pt;}
.y11e_c00340{bottom:196.129713pt;}
.y11c_c00340{bottom:200.419773pt;}
.y11b_c00340{bottom:201.253265pt;}
.y11a_c00340{bottom:201.539001pt;}
.y119_c00340{bottom:202.513953pt;}
.y118_c00340{bottom:205.464065pt;}
.y117_c00340{bottom:210.253333pt;}
.y136_c00340{bottom:238.497329pt;}
.y135_c00340{bottom:239.596377pt;}
.y116_c00340{bottom:239.745333pt;}
.y134_c00340{bottom:240.692465pt;}
.y133_c00340{bottom:241.453333pt;}
.y115_c00340{bottom:244.677417pt;}
.y114_c00340{bottom:245.937669pt;}
.y113_c00340{bottom:246.534265pt;}
.y112_c00340{bottom:248.011405pt;}
.y111_c00340{bottom:249.009857pt;}
.y110_c00340{bottom:250.669025pt;}
.y10f_c00340{bottom:252.489333pt;}
.y10e_c00340{bottom:267.795440pt;}
.y10d_c00340{bottom:271.716080pt;}
.y10c_c00340{bottom:274.590464pt;}
.y10b_c00340{bottom:275.637392pt;}
.y10a_c00340{bottom:277.442288pt;}
.y109_c00340{bottom:280.672256pt;}
.y108_c00340{bottom:281.676320pt;}
.y107_c00340{bottom:286.246400pt;}
.y106_c00340{bottom:287.306240pt;}
.y105_c00340{bottom:288.968000pt;}
.y104_c00340{bottom:301.518277pt;}
.y103_c00340{bottom:303.303733pt;}
.y102_c00340{bottom:306.193525pt;}
.y101_c00340{bottom:308.377477pt;}
.y100_c00340{bottom:312.614869pt;}
.yff_c00340{bottom:313.669813pt;}
.yfe_c00340{bottom:316.169797pt;}
.yfd_c00340{bottom:317.577829pt;}
.yfc_c00340{bottom:322.093333pt;}
.yfb_c00340{bottom:333.649452pt;}
.yfa_c00340{bottom:336.210417pt;}
.yf9_c00340{bottom:337.460227pt;}
.yf8_c00340{bottom:340.012649pt;}
.yf7_c00340{bottom:341.326041pt;}
.yf6_c00340{bottom:342.163853pt;}
.yf5_c00340{bottom:343.444565pt;}
.yf4_c00340{bottom:344.757556pt;}
.yf3_c00340{bottom:349.392268pt;}
.yf2_c00340{bottom:351.072880pt;}
.yf1_c00340{bottom:353.631093pt;}
.yf0_c00340{bottom:356.885333pt;}
.yef_c00340{bottom:365.899372pt;}
.yee_c00340{bottom:367.142967pt;}
.yed_c00340{bottom:369.386548pt;}
.yec_c00340{bottom:370.316679pt;}
.yeb_c00340{bottom:372.246500pt;}
.yea_c00340{bottom:373.190592pt;}
.ye9_c00340{bottom:375.408816pt;}
.ye8_c00340{bottom:377.326107pt;}
.ye7_c00340{bottom:379.837864pt;}
.ye6_c00340{bottom:381.072431pt;}
.ye5_c00340{bottom:383.570819pt;}
.ye4_c00340{bottom:384.738292pt;}
.ye3_c00340{bottom:399.344856pt;}
.ye2_c00340{bottom:400.468225pt;}
.ye1_c00340{bottom:403.052848pt;}
.ye0_c00340{bottom:404.493381pt;}
.ydf_c00340{bottom:406.346045pt;}
.yde_c00340{bottom:407.062217pt;}
.ydd_c00340{bottom:409.287940pt;}
.ydc_c00340{bottom:412.533827pt;}
.ydb_c00340{bottom:416.548475pt;}
.yda_c00340{bottom:417.614667pt;}
.yd9_c00340{bottom:445.020976pt;}
.yd8_c00340{bottom:446.609744pt;}
.yd7_c00340{bottom:447.337445pt;}
.yd6_c00340{bottom:448.074667pt;}
.yd5_c00340{bottom:449.059381pt;}
.yd4_c00340{bottom:463.875179pt;}
.yd3_c00340{bottom:465.720213pt;}
.yd2_c00340{bottom:468.184005pt;}
.yd1_c00340{bottom:468.708139pt;}
.yd0_c00340{bottom:470.053131pt;}
.ycf_c00340{bottom:471.335205pt;}
.yce_c00340{bottom:472.672768pt;}
.ycd_c00340{bottom:473.503755pt;}
.ycc_c00340{bottom:474.046219pt;}
.ycb_c00340{bottom:476.971813pt;}
.yca_c00340{bottom:477.723595pt;}
.yc9_c00340{bottom:478.524144pt;}
.yc8_c00340{bottom:480.036779pt;}
.yc7_c00340{bottom:495.364624pt;}
.yc6_c00340{bottom:497.100272pt;}
.yc5_c00340{bottom:497.603072pt;}
.yc4_c00340{bottom:498.811557pt;}
.yc3_c00340{bottom:499.554720pt;}
.yc2_c00340{bottom:500.557445pt;}
.yc1_c00340{bottom:501.524187pt;}
.yc0_c00340{bottom:502.288725pt;}
.ybf_c00340{bottom:504.229787pt;}
.ybe_c00340{bottom:506.442341pt;}
.ybd_c00340{bottom:508.367115pt;}
.ybc_c00340{bottom:523.815168pt;}
.ybb_c00340{bottom:524.497723pt;}
.yba_c00340{bottom:527.360048pt;}
.yb9_c00340{bottom:527.974907pt;}
.yb8_c00340{bottom:529.265275pt;}
.yb7_c00340{bottom:531.772912pt;}
.yb6_c00340{bottom:532.742048pt;}
.yb5_c00340{bottom:534.037381pt;}
.yb4_c00340{bottom:535.922805pt;}
.yb3_c00340{bottom:536.853419pt;}
.yb2_c00340{bottom:539.967040pt;}
.yb1_c00340{bottom:541.236336pt;}
.yb0_c00340{bottom:543.661627pt;}
.yaf_c00340{bottom:556.657525pt;}
.yae_c00340{bottom:558.984485pt;}
.yad_c00340{bottom:561.025936pt;}
.yac_c00340{bottom:562.069035pt;}
.yab_c00340{bottom:563.360400pt;}
.yaa_c00340{bottom:565.428629pt;}
.ya9_c00340{bottom:566.172469pt;}
.ya8_c00340{bottom:567.969909pt;}
.ya7_c00340{bottom:568.998960pt;}
.ya6_c00340{bottom:570.247744pt;}
.ya5_c00340{bottom:570.995504pt;}
.ya4_c00340{bottom:571.993285pt;}
.ya3_c00340{bottom:588.537301pt;}
.ya2_c00340{bottom:589.374043pt;}
.ya1_c00340{bottom:590.216160pt;}
.ya0_c00340{bottom:592.269376pt;}
.y9f_c00340{bottom:594.819173pt;}
.y9e_c00340{bottom:595.667413pt;}
.y9d_c00340{bottom:598.002533pt;}
.y9c_c00340{bottom:598.838901pt;}
.y9b_c00340{bottom:601.714309pt;}
.y9a_c00340{bottom:602.231648pt;}
.y99_c00340{bottom:602.810640pt;}
.y98_c00340{bottom:604.804768pt;}
.y97_c00340{bottom:605.607472pt;}
.y96_c00340{bottom:621.547653pt;}
.y95_c00340{bottom:622.340357pt;}
.y94_c00340{bottom:623.101605pt;}
.y93_c00340{bottom:624.948432pt;}
.y92_c00340{bottom:625.887941pt;}
.y91_c00340{bottom:627.771525pt;}
.y90_c00340{bottom:628.514469pt;}
.y8f_c00340{bottom:629.782416pt;}
.y8e_c00340{bottom:632.116928pt;}
.y8d_c00340{bottom:633.114421pt;}
.y8c_c00340{bottom:633.636773pt;}
.y8b_c00340{bottom:635.859024pt;}
.y8a_c00340{bottom:654.004101pt;}
.y89_c00340{bottom:655.879755pt;}
.y88_c00340{bottom:659.368277pt;}
.y87_c00340{bottom:660.664059pt;}
.y86_c00340{bottom:663.484875pt;}
.y85_c00340{bottom:664.455280pt;}
.y84_c00340{bottom:666.621285pt;}
.y83_c00340{bottom:668.524731pt;}
.y82_c00340{bottom:670.072219pt;}
.y81_c00340{bottom:671.631195pt;}
.y80_c00340{bottom:685.575552pt;}
.y7f_c00340{bottom:685.958960pt;}
.y7e_c00340{bottom:687.260661pt;}
.y7d_c00340{bottom:688.575285pt;}
.y7c_c00340{bottom:689.140901pt;}
.y7b_c00340{bottom:691.038016pt;}
.y7a_c00340{bottom:691.591296pt;}
.y79_c00340{bottom:693.096608pt;}
.y78_c00340{bottom:693.834795pt;}
.y77_c00340{bottom:695.309067pt;}
.y76_c00340{bottom:696.598853pt;}
.y75_c00340{bottom:717.542517pt;}
.y74_c00340{bottom:718.357888pt;}
.y73_c00340{bottom:719.201136pt;}
.y72_c00340{bottom:720.856496pt;}
.y71_c00340{bottom:722.303701pt;}
.y70_c00340{bottom:724.396475pt;}
.y6f_c00340{bottom:726.257237pt;}
.y6e_c00340{bottom:726.862528pt;}
.y6d_c00340{bottom:727.472496pt;}
.y6c_c00340{bottom:728.907984pt;}
.y6b_c00340{bottom:729.491531pt;}
.y6a_c00340{bottom:750.677317pt;}
.y69_c00340{bottom:751.468235pt;}
.y68_c00340{bottom:753.580400pt;}
.y67_c00340{bottom:755.220421pt;}
.y66_c00340{bottom:756.288437pt;}
.y65_c00340{bottom:758.940528pt;}
.y64_c00340{bottom:759.739621pt;}
.y63_c00340{bottom:760.534720pt;}
.y62_c00340{bottom:762.641808pt;}
.y61_c00340{bottom:763.423653pt;}
.y60_c00340{bottom:765.502843pt;}
.y5f_c00340{bottom:781.844683pt;}
.y5e_c00340{bottom:783.989691pt;}
.y5d_c00340{bottom:784.687221pt;}
.y5c_c00340{bottom:786.121835pt;}
.y5b_c00340{bottom:786.823445pt;}
.y5a_c00340{bottom:788.012933pt;}
.y59_c00340{bottom:789.926427pt;}
.y58_c00340{bottom:790.618235pt;}
.y57_c00340{bottom:791.793824pt;}
.y56_c00340{bottom:793.203504pt;}
.y55_c00340{bottom:793.919909pt;}
.y54_c00340{bottom:794.844587pt;}
.y53_c00340{bottom:795.754347pt;}
.y52_c00340{bottom:812.765749pt;}
.y51_c00340{bottom:813.708128pt;}
.y50_c00340{bottom:814.488805pt;}
.y4f_c00340{bottom:816.698672pt;}
.y4e_c00340{bottom:817.429765pt;}
.y4d_c00340{bottom:818.680768pt;}
.y4c_c00340{bottom:819.910928pt;}
.y4b_c00340{bottom:821.392389pt;}
.y4a_c00340{bottom:823.886331pt;}
.y49_c00340{bottom:825.547685pt;}
.y48_c00340{bottom:826.967307pt;}
.y47_c00340{bottom:843.862101pt;}
.y46_c00340{bottom:845.227173pt;}
.y45_c00340{bottom:845.674309pt;}
.y44_c00340{bottom:848.227755pt;}
.y43_c00340{bottom:849.795909pt;}
.y42_c00340{bottom:851.391397pt;}
.y41_c00340{bottom:852.296395pt;}
.y40_c00340{bottom:853.649845pt;}
.y3f_c00340{bottom:854.312469pt;}
.y3e_c00340{bottom:856.122997pt;}
.y3d_c00340{bottom:856.993893pt;}
.y3c_c00340{bottom:857.455909pt;}
.y3b_c00340{bottom:878.155477pt;}
.y3a_c00340{bottom:879.315371pt;}
.y39_c00340{bottom:880.854293pt;}
.y38_c00340{bottom:881.514597pt;}
.y37_c00340{bottom:882.682309pt;}
.y36_c00340{bottom:883.184944pt;}
.y35_c00340{bottom:884.699584pt;}
.y34_c00340{bottom:886.005984pt;}
.y33_c00340{bottom:886.995211pt;}
.y32_c00340{bottom:908.258277pt;}
.y31_c00340{bottom:911.532896pt;}
.y30_c00340{bottom:912.238581pt;}
.y2f_c00340{bottom:913.961115pt;}
.y2e_c00340{bottom:914.730507pt;}
.y2d_c00340{bottom:915.456885pt;}
.y2c_c00340{bottom:917.215403pt;}
.y2b_c00340{bottom:919.418539pt;}
.y2a_c00340{bottom:920.126240pt;}
.y29_c00340{bottom:921.358416pt;}
.y28_c00340{bottom:921.824896pt;}
.y27_c00340{bottom:922.522171pt;}
.y26_c00340{bottom:941.843707pt;}
.y25_c00340{bottom:942.629605pt;}
.y24_c00340{bottom:944.723616pt;}
.y23_c00340{bottom:945.252165pt;}
.y22_c00340{bottom:946.247259pt;}
.y21_c00340{bottom:947.546101pt;}
.y20_c00340{bottom:948.307349pt;}
.y1f_c00340{bottom:949.330576pt;}
.y1e_c00340{bottom:950.099403pt;}
.y1d_c00340{bottom:950.877909pt;}
.y1c_c00340{bottom:952.683264pt;}
.y1b_c00340{bottom:953.193547pt;}
.y1a_c00340{bottom:954.953707pt;}
.y19_c00340{bottom:955.656523pt;}
.y18_c00340{bottom:970.528288pt;}
.y17_c00340{bottom:972.668395pt;}
.y16_c00340{bottom:974.558373pt;}
.y15_c00340{bottom:975.521733pt;}
.y14_c00340{bottom:976.478224pt;}
.y13_c00340{bottom:976.978256pt;}
.y12_c00340{bottom:978.865211pt;}
.y11_c00340{bottom:979.786293pt;}
.y10_c00340{bottom:980.495445pt;}
.yf_c00340{bottom:982.829653pt;}
.ye_c00340{bottom:983.536229pt;}
.yd_c00340{bottom:984.230363pt;}
.yc_c00340{bottom:1003.389771pt;}
.yb_c00340{bottom:1004.218272pt;}
.ya_c00340{bottom:1006.212581pt;}
.y9_c00340{bottom:1009.783627pt;}
.y8_c00340{bottom:1010.617131pt;}
.y7_c00340{bottom:1012.560144pt;}
.y6_c00340{bottom:1013.656027pt;}
.y5_c00340{bottom:1015.047291pt;}
.y4_c00340{bottom:1015.853952pt;}
.y3_c00340{bottom:1017.781659pt;}
.y2_c00340{bottom:1018.566667pt;}
.y1_c00340{bottom:1077.828000pt;}
.hf_c00340{height:21.333333pt;}
.h12_c00340{height:58.648184pt;}
.h11_c00340{height:58.654961pt;}
.h3_c00340{height:64.025083pt;}
.h9_c00340{height:69.311490pt;}
.h5_c00340{height:69.360507pt;}
.h10_c00340{height:74.632686pt;}
.hd_c00340{height:74.640417pt;}
.hb_c00340{height:74.661066pt;}
.he_c00340{height:74.683129pt;}
.h4_c00340{height:74.695930pt;}
.hc_c00340{height:79.971875pt;}
.h2_c00340{height:80.000000pt;}
.h7_c00340{height:80.031354pt;}
.ha_c00340{height:85.306449pt;}
.h6_c00340{height:85.366777pt;}
.h8_c00340{height:90.702201pt;}
.h1_c00340{height:1108.666667pt;}
.h0_c00340{height:1108.800000pt;}
.w0_c00340{width:813.333333pt;}
.x0_c00340{left:0.000000pt;}
.xc6_c00340{left:147.120000pt;}
.xd2_c00340{left:148.052000pt;}
.xc3_c00340{left:149.337333pt;}
.xb6_c00340{left:150.366667pt;}
.xb1_c00340{left:151.306667pt;}
.xaa_c00340{left:152.780703pt;}
.x92_c00340{left:153.754581pt;}
.x65_c00340{left:155.797328pt;}
.x5a_c00340{left:156.699248pt;}
.x53_c00340{left:158.406192pt;}
.x31_c00340{left:159.449872pt;}
.x29_c00340{left:160.921477pt;}
.x2_c00340{left:162.718667pt;}
.xc7_c00340{left:177.436000pt;}
.x32_c00340{left:179.524672pt;}
.x74_c00340{left:183.702848pt;}
.x54_c00340{left:186.204976pt;}
.x17_c00340{left:189.613301pt;}
.x3_c00340{left:190.754667pt;}
.xa1_c00340{left:191.780171pt;}
.x7e_c00340{left:193.619365pt;}
.x42_c00340{left:196.846091pt;}
.xbc_c00340{left:198.040507pt;}
.x66_c00340{left:204.517211pt;}
.x23_c00340{left:208.662960pt;}
.x9a_c00340{left:210.498752pt;}
.xd3_c00340{left:214.115204pt;}
.xcc_c00340{left:216.400460pt;}
.x33_c00340{left:217.395307pt;}
.x2a_c00340{left:219.126064pt;}
.xd_c00340{left:220.657536pt;}
.x7f_c00340{left:222.374304pt;}
.x5b_c00340{left:224.589680pt;}
.xb2_c00340{left:226.910987pt;}
.x87_c00340{left:231.072101pt;}
.x43_c00340{left:235.398421pt;}
.x9b_c00340{left:240.138240pt;}
.x6c_c00340{left:242.364800pt;}
.xd4_c00340{left:244.483472pt;}
.xa2_c00340{left:248.101973pt;}
.x67_c00340{left:252.874464pt;}
.x55_c00340{left:254.581045pt;}
.x18_c00340{left:257.337109pt;}
.x4_c00340{left:259.601333pt;}
.x6d_c00340{left:262.449920pt;}
.xcd_c00340{left:264.254332pt;}
.x44_c00340{left:265.225744pt;}
.x9c_c00340{left:267.988357pt;}
.x80_c00340{left:270.404992pt;}
.x75_c00340{left:272.407013pt;}
.xd5_c00340{left:273.940652pt;}
.xb7_c00340{left:275.671903pt;}
.x19_c00340{left:276.943525pt;}
.x3c_c00340{left:284.045600pt;}
.x24_c00340{left:286.284160pt;}
.x5_c00340{left:288.410667pt;}
.x76_c00340{left:290.263861pt;}
.xce_c00340{left:292.532280pt;}
.x2b_c00340{left:295.949696pt;}
.x6e_c00340{left:300.838752pt;}
.x5c_c00340{left:302.166539pt;}
.xab_c00340{left:305.727899pt;}
.x81_c00340{left:309.968528pt;}
.x56_c00340{left:312.423024pt;}
.xb8_c00340{left:314.744791pt;}
.xe_c00340{left:317.937771pt;}
.x93_c00340{left:319.244469pt;}
.xc8_c00340{left:322.420204pt;}
.x45_c00340{left:323.958981pt;}
.x34_c00340{left:324.927685pt;}
.x6_c00340{left:338.098667pt;}
.x5d_c00340{left:341.016320pt;}
.x4d_c00340{left:342.733787pt;}
.x1a_c00340{left:346.376741pt;}
.xf_c00340{left:347.458389pt;}
.xbd_c00340{left:354.270787pt;}
.xc4_c00340{left:362.572000pt;}
.x88_c00340{left:368.018091pt;}
.xcf_c00340{left:371.428540pt;}
.x46_c00340{left:372.949803pt;}
.x25_c00340{left:374.403552pt;}
.x1b_c00340{left:376.325088pt;}
.x7_c00340{left:377.237333pt;}
.x82_c00340{left:379.119077pt;}
.x68_c00340{left:380.054907pt;}
.xbe_c00340{left:382.133563pt;}
.x35_c00340{left:383.797269pt;}
.x10_c00340{left:385.834683pt;}
.x1_c00340{left:388.080000pt;}
.x77_c00340{left:389.430432pt;}
.x6f_c00340{left:390.647792pt;}
.x89_c00340{left:397.108176pt;}
.x47_c00340{left:401.755680pt;}
.x1c_c00340{left:405.880064pt;}
.x83_c00340{left:407.734016pt;}
.x69_c00340{left:410.375509pt;}
.xc9_c00340{left:411.728140pt;}
.xb9_c00340{left:413.394043pt;}
.x2c_c00340{left:414.555504pt;}
.x78_c00340{left:418.252277pt;}
.x5e_c00340{left:420.273627pt;}
.x36_c00340{left:423.124091pt;}
.x94_c00340{left:427.453541pt;}
.xb3_c00340{left:433.065959pt;}
.x70_c00340{left:439.410517pt;}
.xca_c00340{left:441.242596pt;}
.x3d_c00340{left:443.037595pt;}
.xac_c00340{left:443.967101pt;}
.x1d_c00340{left:445.235600pt;}
.x8_c00340{left:446.630667pt;}
.x5f_c00340{left:449.374277pt;}
.xd0_c00340{left:450.593776pt;}
.x8a_c00340{left:456.009568pt;}
.xc5_c00340{left:461.321333pt;}
.xb4_c00340{left:463.570091pt;}
.x11_c00340{left:464.472827pt;}
.x95_c00340{left:466.126123pt;}
.x71_c00340{left:467.993456pt;}
.xbf_c00340{left:471.765175pt;}
.xa3_c00340{left:473.320287pt;}
.x1e_c00340{left:474.519909pt;}
.x9_c00340{left:476.398667pt;}
.x48_c00340{left:481.484603pt;}
.x2d_c00340{left:483.280672pt;}
.x12_c00340{left:485.285808pt;}
.x84_c00340{left:487.270459pt;}
.x37_c00340{left:492.496464pt;}
.x8b_c00340{left:496.505051pt;}
.x6a_c00340{left:498.537653pt;}
.x4e_c00340{left:500.010192pt;}
.x26_c00340{left:504.543787pt;}
.x96_c00340{left:506.226816pt;}
.xad_c00340{left:513.186603pt;}
.x2e_c00340{left:522.160656pt;}
.x9d_c00340{left:524.234192pt;}
.x13_c00340{left:525.164955pt;}
.x8c_c00340{left:526.780320pt;}
.x79_c00340{left:528.035883pt;}
.x49_c00340{left:531.019461pt;}
.xa4_c00340{left:533.414799pt;}
.x97_c00340{left:535.961317pt;}
.x85_c00340{left:536.917221pt;}
.x4f_c00340{left:539.583312pt;}
.x3e_c00340{left:542.277920pt;}
.xb5_c00340{left:543.302279pt;}
.xd1_c00340{left:548.136444pt;}
.x60_c00340{left:549.248773pt;}
.xc0_c00340{left:550.903291pt;}
.xa5_c00340{left:552.751443pt;}
.x38_c00340{left:560.702021pt;}
.x1f_c00340{left:562.736837pt;}
.x14_c00340{left:565.289435pt;}
.x57_c00340{left:569.642757pt;}
.x3f_c00340{left:571.533717pt;}
.x27_c00340{left:573.449573pt;}
.x72_c00340{left:576.586208pt;}
.x61_c00340{left:579.028277pt;}
.x20_c00340{left:583.043291pt;}
.x98_c00340{left:584.316053pt;}
.xba_c00340{left:591.586339pt;}
.x9e_c00340{left:593.466800pt;}
.x50_c00340{left:600.347696pt;}
.x28_c00340{left:601.702629pt;}
.xa6_c00340{left:602.773371pt;}
.xa_c00340{left:603.936000pt;}
.x8d_c00340{left:605.139547pt;}
.xd6_c00340{left:611.318103pt;}
.x2f_c00340{left:612.673840pt;}
.x7a_c00340{left:615.954752pt;}
.x4a_c00340{left:620.037429pt;}
.xc1_c00340{left:630.667447pt;}
.xae_c00340{left:631.957737pt;}
.xa7_c00340{left:641.667771pt;}
.x15_c00340{left:644.035579pt;}
.x8e_c00340{left:645.457696pt;}
.x62_c00340{left:648.187008pt;}
.x4b_c00340{left:649.095344pt;}
.x86_c00340{left:655.562533pt;}
.x40_c00340{left:659.941147pt;}
.x21_c00340{left:663.595808pt;}
.x8f_c00340{left:664.652864pt;}
.xd7_c00340{left:670.586775pt;}
.x39_c00340{left:671.721552pt;}
.x99_c00340{left:673.839557pt;}
.xb_c00340{left:675.161333pt;}
.x73_c00340{left:676.927845pt;}
.x51_c00340{left:678.593899pt;}
.x30_c00340{left:680.881488pt;}
.x9f_c00340{left:684.700005pt;}
.x7b_c00340{left:686.758107pt;}
.x58_c00340{left:688.568683pt;}
.x3a_c00340{left:691.169611pt;}
.x22_c00340{left:693.808155pt;}
.xaf_c00340{left:702.005940pt;}
.xc_c00340{left:704.750667pt;}
.x6b_c00340{left:706.655691pt;}
.x52_c00340{left:707.889387pt;}
.xa8_c00340{left:711.452583pt;}
.x7c_c00340{left:715.785285pt;}
.x63_c00340{left:716.693589pt;}
.xbb_c00340{left:721.324471pt;}
.x59_c00340{left:727.410965pt;}
.x41_c00340{left:728.865600pt;}
.x16_c00340{left:733.192213pt;}
.x64_c00340{left:736.868000pt;}
.x4c_c00340{left:738.474683pt;}
.xc2_c00340{left:739.465207pt;}
.xb0_c00340{left:740.840943pt;}
.xa9_c00340{left:741.783555pt;}
.x7d_c00340{left:744.620464pt;}
.xcb_c00340{left:748.400464pt;}
.x3b_c00340{left:750.501899pt;}
.xa0_c00340{left:753.024576pt;}
.x90_c00340{left:754.106859pt;}
.x91_c00340{left:775.433803pt;}
}





/* 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_c00341 {
    display:none;
  }
  .loading-indicator_c00341.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00341 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_c00341 { 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_c00341" -> "#page-container .classname_c00341")
 */
.pf_c00341 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00341 { /* 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_c00341.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00341 { /* 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_c00341 { /* 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_c00341 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00341 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00341 {overflow:visible;}
  }
}
.c_c00341 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00341 { /* 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_c00341:after { /* webkit #35443 */
  content: '';
}
.t_c00341:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00341 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 */
}
.__c00341 { /* 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_c00341 { /* info for Javascript */
  display:none;
}
.l_c00341 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00341 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00341 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00341: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_c00341 {
    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_c00341.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00341.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_c00341 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00341{font-family:sans-serif;visibility:hidden;}
.sc__c00341{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00341{-webkit-text-stroke:0px transparent;}
}
.y0_c00341{bottom:0.000000px;}
.h1_c00341{height:1247.250000px;}
.h0_c00341{height:1247.400000px;}
.w0_c00341{width:915.000000px;}
.x0_c00341{left:0.000000px;}
@media print{
.y0_c00341{bottom:0.000000pt;}
.h1_c00341{height:1108.666667pt;}
.h0_c00341{height:1108.800000pt;}
.w0_c00341{width:813.333333pt;}
.x0_c00341{left:0.000000pt;}
}





/* 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_c00342 {
    display:none;
  }
  .loading-indicator_c00342.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00342 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_c00342 { 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_c00342" -> "#page-container .classname_c00342")
 */
.pf_c00342 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00342 { /* 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_c00342.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00342 { /* 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_c00342 { /* 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_c00342 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00342 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00342 {overflow:visible;}
  }
}
.c_c00342 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00342 { /* 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_c00342:after { /* webkit #35443 */
  content: '';
}
.t_c00342:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00342 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 */
}
.__c00342 { /* 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_c00342 { /* info for Javascript */
  display:none;
}
.l_c00342 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00342 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00342 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00342: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_c00342 {
    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_c00342.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00342.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_c00342 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00342{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00342;src:url('chunks/assets/font_7c6b9abe6ee2a268480c528b.woff2')format("woff");}.ff1_c00342{font-family:ff1_c00342;line-height:1.000000;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;}
.mac_c00342{transform:matrix(0.116532,0.001398,-0.003000,0.249982,0,0);-ms-transform:matrix(0.116532,0.001398,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.116532,0.001398,-0.003000,0.249982,0,0);}
.m11d_c00342{transform:matrix(0.128730,-0.003218,0.006248,0.249922,0,0);-ms-transform:matrix(0.128730,-0.003218,0.006248,0.249922,0,0);-webkit-transform:matrix(0.128730,-0.003218,0.006248,0.249922,0,0);}
.m94_c00342{transform:matrix(0.131138,0.002098,-0.003999,0.249968,0,0);-ms-transform:matrix(0.131138,0.002098,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.131138,0.002098,-0.003999,0.249968,0,0);}
.m11e_c00342{transform:matrix(0.131674,-0.003292,0.006248,0.249922,0,0);-ms-transform:matrix(0.131674,-0.003292,0.006248,0.249922,0,0);-webkit-transform:matrix(0.131674,-0.003292,0.006248,0.249922,0,0);}
.m120_c00342{transform:matrix(0.134678,-0.003367,0.006248,0.249922,0,0);-ms-transform:matrix(0.134678,-0.003367,0.006248,0.249922,0,0);-webkit-transform:matrix(0.134678,-0.003367,0.006248,0.249922,0,0);}
.mfa_c00342{transform:matrix(0.138568,0.000693,-0.001250,0.249997,0,0);-ms-transform:matrix(0.138568,0.000693,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.138568,0.000693,-0.001250,0.249997,0,0);}
.m124_c00342{transform:matrix(0.144220,-0.003605,0.006248,0.249922,0,0);-ms-transform:matrix(0.144220,-0.003605,0.006248,0.249922,0,0);-webkit-transform:matrix(0.144220,-0.003605,0.006248,0.249922,0,0);}
.m70_c00342{transform:matrix(0.144541,0.002313,-0.003999,0.249968,0,0);-ms-transform:matrix(0.144541,0.002313,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.144541,0.002313,-0.003999,0.249968,0,0);}
.m122_c00342{transform:matrix(0.145749,-0.003644,0.006248,0.249922,0,0);-ms-transform:matrix(0.145749,-0.003644,0.006248,0.249922,0,0);-webkit-transform:matrix(0.145749,-0.003644,0.006248,0.249922,0,0);}
.m119_c00342{transform:matrix(0.146429,-0.003661,0.006248,0.249922,0,0);-ms-transform:matrix(0.146429,-0.003661,0.006248,0.249922,0,0);-webkit-transform:matrix(0.146429,-0.003661,0.006248,0.249922,0,0);}
.m11f_c00342{transform:matrix(0.146749,-0.003669,0.006248,0.249922,0,0);-ms-transform:matrix(0.146749,-0.003669,0.006248,0.249922,0,0);-webkit-transform:matrix(0.146749,-0.003669,0.006248,0.249922,0,0);}
.m121_c00342{transform:matrix(0.149573,-0.003739,0.006248,0.249922,0,0);-ms-transform:matrix(0.149573,-0.003739,0.006248,0.249922,0,0);-webkit-transform:matrix(0.149573,-0.003739,0.006248,0.249922,0,0);}
.m123_c00342{transform:matrix(0.150123,-0.003753,0.006248,0.249922,0,0);-ms-transform:matrix(0.150123,-0.003753,0.006248,0.249922,0,0);-webkit-transform:matrix(0.150123,-0.003753,0.006248,0.249922,0,0);}
.m11c_c00342{transform:matrix(0.150838,-0.003771,0.006248,0.249922,0,0);-ms-transform:matrix(0.150838,-0.003771,0.006248,0.249922,0,0);-webkit-transform:matrix(0.150838,-0.003771,0.006248,0.249922,0,0);}
.m4e_c00342{transform:matrix(0.163019,0.002608,-0.003999,0.249968,0,0);-ms-transform:matrix(0.163019,0.002608,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.163019,0.002608,-0.003999,0.249968,0,0);}
.m96_c00342{transform:matrix(0.163104,0.002610,-0.003999,0.249968,0,0);-ms-transform:matrix(0.163104,0.002610,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.163104,0.002610,-0.003999,0.249968,0,0);}
.m50_c00342{transform:matrix(0.163794,0.002621,-0.003999,0.249968,0,0);-ms-transform:matrix(0.163794,0.002621,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.163794,0.002621,-0.003999,0.249968,0,0);}
.mae_c00342{transform:matrix(0.164173,0.001970,-0.003000,0.249982,0,0);-ms-transform:matrix(0.164173,0.001970,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.164173,0.001970,-0.003000,0.249982,0,0);}
.m10c_c00342{transform:matrix(0.168390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168390,0.000000,0.000000,0.250000,0,0);}
.mb2_c00342{transform:matrix(0.170808,0.002050,-0.003000,0.249982,0,0);-ms-transform:matrix(0.170808,0.002050,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.170808,0.002050,-0.003000,0.249982,0,0);}
.mb3_c00342{transform:matrix(0.170828,0.002050,-0.003000,0.249982,0,0);-ms-transform:matrix(0.170828,0.002050,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.170828,0.002050,-0.003000,0.249982,0,0);}
.m55_c00342{transform:matrix(0.171108,0.002738,-0.003999,0.249968,0,0);-ms-transform:matrix(0.171108,0.002738,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.171108,0.002738,-0.003999,0.249968,0,0);}
.m106_c00342{transform:matrix(0.172145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172145,0.000000,0.000000,0.250000,0,0);}
.m10b_c00342{transform:matrix(0.172665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172665,0.000000,0.000000,0.250000,0,0);}
.m9b_c00342{transform:matrix(0.173148,0.002770,-0.003999,0.249968,0,0);-ms-transform:matrix(0.173148,0.002770,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.173148,0.002770,-0.003999,0.249968,0,0);}
.ma9_c00342{transform:matrix(0.173158,0.002078,-0.003000,0.249982,0,0);-ms-transform:matrix(0.173158,0.002078,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.173158,0.002078,-0.003000,0.249982,0,0);}
.ma7_c00342{transform:matrix(0.174202,0.002090,-0.003000,0.249982,0,0);-ms-transform:matrix(0.174202,0.002090,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.174202,0.002090,-0.003000,0.249982,0,0);}
.m97_c00342{transform:matrix(0.175238,0.002804,-0.003999,0.249968,0,0);-ms-transform:matrix(0.175238,0.002804,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.175238,0.002804,-0.003999,0.249968,0,0);}
.m9c_c00342{transform:matrix(0.179907,0.002879,-0.003999,0.249968,0,0);-ms-transform:matrix(0.179907,0.002879,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.179907,0.002879,-0.003999,0.249968,0,0);}
.m54_c00342{transform:matrix(0.180197,0.002883,-0.003999,0.249968,0,0);-ms-transform:matrix(0.180197,0.002883,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.180197,0.002883,-0.003999,0.249968,0,0);}
.m6_c00342{transform:matrix(0.180257,0.002884,-0.003999,0.249968,0,0);-ms-transform:matrix(0.180257,0.002884,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.180257,0.002884,-0.003999,0.249968,0,0);}
.mb1_c00342{transform:matrix(0.180302,0.002164,-0.003000,0.249982,0,0);-ms-transform:matrix(0.180302,0.002164,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.180302,0.002164,-0.003000,0.249982,0,0);}
.maa_c00342{transform:matrix(0.180467,0.002166,-0.003000,0.249982,0,0);-ms-transform:matrix(0.180467,0.002166,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.180467,0.002166,-0.003000,0.249982,0,0);}
.ma4_c00342{transform:matrix(0.181502,0.002178,-0.003000,0.249982,0,0);-ms-transform:matrix(0.181502,0.002178,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.181502,0.002178,-0.003000,0.249982,0,0);}
.m9f_c00342{transform:matrix(0.181882,0.002910,-0.003999,0.249968,0,0);-ms-transform:matrix(0.181882,0.002910,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.181882,0.002910,-0.003999,0.249968,0,0);}
.m17_c00342{transform:matrix(0.183337,0.002933,-0.003999,0.249968,0,0);-ms-transform:matrix(0.183337,0.002933,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.183337,0.002933,-0.003999,0.249968,0,0);}
.m8_c00342{transform:matrix(0.183597,0.002938,-0.003999,0.249968,0,0);-ms-transform:matrix(0.183597,0.002938,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.183597,0.002938,-0.003999,0.249968,0,0);}
.m112_c00342{transform:matrix(0.184115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184115,0.000000,0.000000,0.250000,0,0);}
.m18_c00342{transform:matrix(0.184526,0.002952,-0.003999,0.249968,0,0);-ms-transform:matrix(0.184526,0.002952,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.184526,0.002952,-0.003999,0.249968,0,0);}
.ma3_c00342{transform:matrix(0.185697,0.002228,-0.003000,0.249982,0,0);-ms-transform:matrix(0.185697,0.002228,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.185697,0.002228,-0.003000,0.249982,0,0);}
.m8e_c00342{transform:matrix(0.186911,0.002991,-0.003999,0.249968,0,0);-ms-transform:matrix(0.186911,0.002991,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.186911,0.002991,-0.003999,0.249968,0,0);}
.mb0_c00342{transform:matrix(0.188526,0.002262,-0.003000,0.249982,0,0);-ms-transform:matrix(0.188526,0.002262,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.188526,0.002262,-0.003000,0.249982,0,0);}
.m109_c00342{transform:matrix(0.189275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189275,0.000000,0.000000,0.250000,0,0);}
.m89_c00342{transform:matrix(0.190161,0.003043,-0.003999,0.249968,0,0);-ms-transform:matrix(0.190161,0.003043,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.190161,0.003043,-0.003999,0.249968,0,0);}
.mfb_c00342{transform:matrix(0.190363,0.000952,-0.001250,0.249997,0,0);-ms-transform:matrix(0.190363,0.000952,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.190363,0.000952,-0.001250,0.249997,0,0);}
.m9a_c00342{transform:matrix(0.190906,0.003054,-0.003999,0.249968,0,0);-ms-transform:matrix(0.190906,0.003054,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.190906,0.003054,-0.003999,0.249968,0,0);}
.m84_c00342{transform:matrix(0.191351,0.003062,-0.003999,0.249968,0,0);-ms-transform:matrix(0.191351,0.003062,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.191351,0.003062,-0.003999,0.249968,0,0);}
.maf_c00342{transform:matrix(0.191496,0.002298,-0.003000,0.249982,0,0);-ms-transform:matrix(0.191496,0.002298,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.191496,0.002298,-0.003000,0.249982,0,0);}
.m108_c00342{transform:matrix(0.192165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192165,0.000000,0.000000,0.250000,0,0);}
.mad_c00342{transform:matrix(0.192396,0.002309,-0.003000,0.249982,0,0);-ms-transform:matrix(0.192396,0.002309,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.192396,0.002309,-0.003000,0.249982,0,0);}
.m52_c00342{transform:matrix(0.192860,0.003086,-0.003999,0.249968,0,0);-ms-transform:matrix(0.192860,0.003086,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.192860,0.003086,-0.003999,0.249968,0,0);}
.m8d_c00342{transform:matrix(0.193130,0.003090,-0.003999,0.249968,0,0);-ms-transform:matrix(0.193130,0.003090,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.193130,0.003090,-0.003999,0.249968,0,0);}
.m15_c00342{transform:matrix(0.193850,0.003102,-0.003999,0.249968,0,0);-ms-transform:matrix(0.193850,0.003102,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.193850,0.003102,-0.003999,0.249968,0,0);}
.mf2_c00342{transform:matrix(0.194118,0.000971,-0.001250,0.249997,0,0);-ms-transform:matrix(0.194118,0.000971,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.194118,0.000971,-0.001250,0.249997,0,0);}
.m20_c00342{transform:matrix(0.194810,0.003117,-0.003999,0.249968,0,0);-ms-transform:matrix(0.194810,0.003117,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.194810,0.003117,-0.003999,0.249968,0,0);}
.m98_c00342{transform:matrix(0.195290,0.003125,-0.003999,0.249968,0,0);-ms-transform:matrix(0.195290,0.003125,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.195290,0.003125,-0.003999,0.249968,0,0);}
.me8_c00342{transform:matrix(0.195478,0.002932,-0.003750,0.249972,0,0);-ms-transform:matrix(0.195478,0.002932,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.195478,0.002932,-0.003750,0.249972,0,0);}
.m114_c00342{transform:matrix(0.195565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195565,0.000000,0.000000,0.250000,0,0);}
.m87_c00342{transform:matrix(0.196100,0.003138,-0.003999,0.249968,0,0);-ms-transform:matrix(0.196100,0.003138,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.196100,0.003138,-0.003999,0.249968,0,0);}
.m104_c00342{transform:matrix(0.196810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196810,0.000000,0.000000,0.250000,0,0);}
.m4f_c00342{transform:matrix(0.197195,0.003155,-0.003999,0.249968,0,0);-ms-transform:matrix(0.197195,0.003155,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.197195,0.003155,-0.003999,0.249968,0,0);}
.mbc_c00342{transform:matrix(0.197316,0.002368,-0.003000,0.249982,0,0);-ms-transform:matrix(0.197316,0.002368,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.197316,0.002368,-0.003000,0.249982,0,0);}
.m10a_c00342{transform:matrix(0.197420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197420,0.000000,0.000000,0.250000,0,0);}
.m107_c00342{transform:matrix(0.197525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197525,0.000000,0.000000,0.250000,0,0);}
.m51_c00342{transform:matrix(0.197575,0.003161,-0.003999,0.249968,0,0);-ms-transform:matrix(0.197575,0.003161,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.197575,0.003161,-0.003999,0.249968,0,0);}
.m4_c00342{transform:matrix(0.198015,0.003168,-0.003999,0.249968,0,0);-ms-transform:matrix(0.198015,0.003168,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.198015,0.003168,-0.003999,0.249968,0,0);}
.ma5_c00342{transform:matrix(0.198531,0.002382,-0.003000,0.249982,0,0);-ms-transform:matrix(0.198531,0.002382,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.198531,0.002382,-0.003000,0.249982,0,0);}
.mb6_c00342{transform:matrix(0.198926,0.002387,-0.003000,0.249982,0,0);-ms-transform:matrix(0.198926,0.002387,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.198926,0.002387,-0.003000,0.249982,0,0);}
.m9_c00342{transform:matrix(0.199694,0.003195,-0.003999,0.249968,0,0);-ms-transform:matrix(0.199694,0.003195,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.199694,0.003195,-0.003999,0.249968,0,0);}
.m1a_c00342{transform:matrix(0.200099,0.003202,-0.003999,0.249968,0,0);-ms-transform:matrix(0.200099,0.003202,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.200099,0.003202,-0.003999,0.249968,0,0);}
.m1c_c00342{transform:matrix(0.200719,0.003212,-0.003999,0.249968,0,0);-ms-transform:matrix(0.200719,0.003212,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.200719,0.003212,-0.003999,0.249968,0,0);}
.m105_c00342{transform:matrix(0.200760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200760,0.000000,0.000000,0.250000,0,0);}
.m1e_c00342{transform:matrix(0.200874,0.003214,-0.003999,0.249968,0,0);-ms-transform:matrix(0.200874,0.003214,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.200874,0.003214,-0.003999,0.249968,0,0);}
.mcf_c00342{transform:matrix(0.201075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201075,0.000000,0.000000,0.250000,0,0);}
.m16_c00342{transform:matrix(0.201419,0.003223,-0.003999,0.249968,0,0);-ms-transform:matrix(0.201419,0.003223,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.201419,0.003223,-0.003999,0.249968,0,0);}
.m99_c00342{transform:matrix(0.201989,0.003232,-0.003999,0.249968,0,0);-ms-transform:matrix(0.201989,0.003232,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.201989,0.003232,-0.003999,0.249968,0,0);}
.ma6_c00342{transform:matrix(0.202355,0.002428,-0.003000,0.249982,0,0);-ms-transform:matrix(0.202355,0.002428,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.202355,0.002428,-0.003000,0.249982,0,0);}
.m57_c00342{transform:matrix(0.202739,0.003244,-0.003999,0.249968,0,0);-ms-transform:matrix(0.202739,0.003244,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.202739,0.003244,-0.003999,0.249968,0,0);}
.m8a_c00342{transform:matrix(0.203274,0.003252,-0.003999,0.249968,0,0);-ms-transform:matrix(0.203274,0.003252,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.203274,0.003252,-0.003999,0.249968,0,0);}
.ma8_c00342{transform:matrix(0.203505,0.002442,-0.003000,0.249982,0,0);-ms-transform:matrix(0.203505,0.002442,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.203505,0.002442,-0.003000,0.249982,0,0);}
.m6a_c00342{transform:matrix(0.203524,0.003256,-0.003999,0.249968,0,0);-ms-transform:matrix(0.203524,0.003256,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.203524,0.003256,-0.003999,0.249968,0,0);}
.md0_c00342{transform:matrix(0.203615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203615,0.000000,0.000000,0.250000,0,0);}
.m91_c00342{transform:matrix(0.203834,0.003261,-0.003999,0.249968,0,0);-ms-transform:matrix(0.203834,0.003261,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.203834,0.003261,-0.003999,0.249968,0,0);}
.m11a_c00342{transform:matrix(0.204311,-0.005108,0.006248,0.249922,0,0);-ms-transform:matrix(0.204311,-0.005108,0.006248,0.249922,0,0);-webkit-transform:matrix(0.204311,-0.005108,0.006248,0.249922,0,0);}
.mf6_c00342{transform:matrix(0.204342,0.001022,-0.001250,0.249997,0,0);-ms-transform:matrix(0.204342,0.001022,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.204342,0.001022,-0.001250,0.249997,0,0);}
.m56_c00342{transform:matrix(0.204554,0.003273,-0.003999,0.249968,0,0);-ms-transform:matrix(0.204554,0.003273,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.204554,0.003273,-0.003999,0.249968,0,0);}
.m9d_c00342{transform:matrix(0.204884,0.003278,-0.003999,0.249968,0,0);-ms-transform:matrix(0.204884,0.003278,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.204884,0.003278,-0.003999,0.249968,0,0);}
.ma2_c00342{transform:matrix(0.205175,0.002462,-0.003000,0.249982,0,0);-ms-transform:matrix(0.205175,0.002462,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.205175,0.002462,-0.003000,0.249982,0,0);}
.m19_c00342{transform:matrix(0.205404,0.003286,-0.003999,0.249968,0,0);-ms-transform:matrix(0.205404,0.003286,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.205404,0.003286,-0.003999,0.249968,0,0);}
.m11b_c00342{transform:matrix(0.205496,-0.005137,0.006248,0.249922,0,0);-ms-transform:matrix(0.205496,-0.005137,0.006248,0.249922,0,0);-webkit-transform:matrix(0.205496,-0.005137,0.006248,0.249922,0,0);}
.mc1_c00342{transform:matrix(0.205665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205665,0.000000,0.000000,0.250000,0,0);}
.mab_c00342{transform:matrix(0.206015,0.002472,-0.003000,0.249982,0,0);-ms-transform:matrix(0.206015,0.002472,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.206015,0.002472,-0.003000,0.249982,0,0);}
.m83_c00342{transform:matrix(0.206234,0.003300,-0.003999,0.249968,0,0);-ms-transform:matrix(0.206234,0.003300,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.206234,0.003300,-0.003999,0.249968,0,0);}
.m7d_c00342{transform:matrix(0.206294,0.003301,-0.003999,0.249968,0,0);-ms-transform:matrix(0.206294,0.003301,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.206294,0.003301,-0.003999,0.249968,0,0);}
.mb9_c00342{transform:matrix(0.206830,0.002482,-0.003000,0.249982,0,0);-ms-transform:matrix(0.206830,0.002482,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.206830,0.002482,-0.003000,0.249982,0,0);}
.m2c_c00342{transform:matrix(0.207073,0.003313,-0.003999,0.249968,0,0);-ms-transform:matrix(0.207073,0.003313,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.207073,0.003313,-0.003999,0.249968,0,0);}
.m9e_c00342{transform:matrix(0.207388,0.003318,-0.003999,0.249968,0,0);-ms-transform:matrix(0.207388,0.003318,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.207388,0.003318,-0.003999,0.249968,0,0);}
.m6e_c00342{transform:matrix(0.207988,0.003328,-0.003999,0.249968,0,0);-ms-transform:matrix(0.207988,0.003328,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.207988,0.003328,-0.003999,0.249968,0,0);}
.m53_c00342{transform:matrix(0.208133,0.003330,-0.003999,0.249968,0,0);-ms-transform:matrix(0.208133,0.003330,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.208133,0.003330,-0.003999,0.249968,0,0);}
.m10d_c00342{transform:matrix(0.208375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208375,0.000000,0.000000,0.250000,0,0);}
.mba_c00342{transform:matrix(0.208590,0.002503,-0.003000,0.249982,0,0);-ms-transform:matrix(0.208590,0.002503,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.208590,0.002503,-0.003000,0.249982,0,0);}
.m41_c00342{transform:matrix(0.208648,0.003338,-0.003999,0.249968,0,0);-ms-transform:matrix(0.208648,0.003338,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.208648,0.003338,-0.003999,0.249968,0,0);}
.mf1_c00342{transform:matrix(0.208672,0.001043,-0.001250,0.249997,0,0);-ms-transform:matrix(0.208672,0.001043,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.208672,0.001043,-0.001250,0.249997,0,0);}
.m95_c00342{transform:matrix(0.208808,0.003341,-0.003999,0.249968,0,0);-ms-transform:matrix(0.208808,0.003341,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.208808,0.003341,-0.003999,0.249968,0,0);}
.m3e_c00342{transform:matrix(0.209273,0.003348,-0.003999,0.249968,0,0);-ms-transform:matrix(0.209273,0.003348,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.209273,0.003348,-0.003999,0.249968,0,0);}
.mb7_c00342{transform:matrix(0.209585,0.002515,-0.003000,0.249982,0,0);-ms-transform:matrix(0.209585,0.002515,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.209585,0.002515,-0.003000,0.249982,0,0);}
.me_c00342{transform:matrix(0.209908,0.003359,-0.003999,0.249968,0,0);-ms-transform:matrix(0.209908,0.003359,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.209908,0.003359,-0.003999,0.249968,0,0);}
.m1d_c00342{transform:matrix(0.210498,0.003368,-0.003999,0.249968,0,0);-ms-transform:matrix(0.210498,0.003368,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.210498,0.003368,-0.003999,0.249968,0,0);}
.m1f_c00342{transform:matrix(0.210618,0.003370,-0.003999,0.249968,0,0);-ms-transform:matrix(0.210618,0.003370,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.210618,0.003370,-0.003999,0.249968,0,0);}
.mbf_c00342{transform:matrix(0.211015,0.002532,-0.003000,0.249982,0,0);-ms-transform:matrix(0.211015,0.002532,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.211015,0.002532,-0.003000,0.249982,0,0);}
.mcd_c00342{transform:matrix(0.211215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211215,0.000000,0.000000,0.250000,0,0);}
.m7f_c00342{transform:matrix(0.211393,0.003382,-0.003999,0.249968,0,0);-ms-transform:matrix(0.211393,0.003382,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.211393,0.003382,-0.003999,0.249968,0,0);}
.m85_c00342{transform:matrix(0.211633,0.003386,-0.003999,0.249968,0,0);-ms-transform:matrix(0.211633,0.003386,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.211633,0.003386,-0.003999,0.249968,0,0);}
.m82_c00342{transform:matrix(0.211903,0.003390,-0.003999,0.249968,0,0);-ms-transform:matrix(0.211903,0.003390,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.211903,0.003390,-0.003999,0.249968,0,0);}
.m2_c00342{transform:matrix(0.212138,0.003394,-0.003999,0.249968,0,0);-ms-transform:matrix(0.212138,0.003394,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.212138,0.003394,-0.003999,0.249968,0,0);}
.m8c_c00342{transform:matrix(0.212333,0.003397,-0.003999,0.249968,0,0);-ms-transform:matrix(0.212333,0.003397,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.212333,0.003397,-0.003999,0.249968,0,0);}
.m6f_c00342{transform:matrix(0.212483,0.003400,-0.003999,0.249968,0,0);-ms-transform:matrix(0.212483,0.003400,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.212483,0.003400,-0.003999,0.249968,0,0);}
.m68_c00342{transform:matrix(0.212593,0.003401,-0.003999,0.249968,0,0);-ms-transform:matrix(0.212593,0.003401,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.212593,0.003401,-0.003999,0.249968,0,0);}
.m1_c00342{transform:matrix(0.213058,0.003409,-0.003999,0.249968,0,0);-ms-transform:matrix(0.213058,0.003409,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.213058,0.003409,-0.003999,0.249968,0,0);}
.m11_c00342{transform:matrix(0.213108,0.003410,-0.003999,0.249968,0,0);-ms-transform:matrix(0.213108,0.003410,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.213108,0.003410,-0.003999,0.249968,0,0);}
.md5_c00342{transform:matrix(0.213135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213135,0.000000,0.000000,0.250000,0,0);}
.me7_c00342{transform:matrix(0.213441,0.003202,-0.003750,0.249972,0,0);-ms-transform:matrix(0.213441,0.003202,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.213441,0.003202,-0.003750,0.249972,0,0);}
.m5_c00342{transform:matrix(0.213903,0.003422,-0.003999,0.249968,0,0);-ms-transform:matrix(0.213903,0.003422,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.213903,0.003422,-0.003999,0.249968,0,0);}
.m7e_c00342{transform:matrix(0.214688,0.003435,-0.003999,0.249968,0,0);-ms-transform:matrix(0.214688,0.003435,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.214688,0.003435,-0.003999,0.249968,0,0);}
.m2a_c00342{transform:matrix(0.214902,0.003438,-0.003999,0.249968,0,0);-ms-transform:matrix(0.214902,0.003438,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.214902,0.003438,-0.003999,0.249968,0,0);}
.mdd_c00342{transform:matrix(0.215115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215115,0.000000,0.000000,0.250000,0,0);}
.md4_c00342{transform:matrix(0.215645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215645,0.000000,0.000000,0.250000,0,0);}
.m65_c00342{transform:matrix(0.215787,0.003453,-0.003999,0.249968,0,0);-ms-transform:matrix(0.215787,0.003453,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.215787,0.003453,-0.003999,0.249968,0,0);}
.m115_c00342{transform:matrix(0.215790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215790,0.000000,0.000000,0.250000,0,0);}
.m90_c00342{transform:matrix(0.216857,0.003470,-0.003999,0.249968,0,0);-ms-transform:matrix(0.216857,0.003470,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.216857,0.003470,-0.003999,0.249968,0,0);}
.m3_c00342{transform:matrix(0.216937,0.003471,-0.003999,0.249968,0,0);-ms-transform:matrix(0.216937,0.003471,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.216937,0.003471,-0.003999,0.249968,0,0);}
.m21_c00342{transform:matrix(0.217217,0.003475,-0.003999,0.249968,0,0);-ms-transform:matrix(0.217217,0.003475,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.217217,0.003475,-0.003999,0.249968,0,0);}
.m28_c00342{transform:matrix(0.218062,0.003489,-0.003999,0.249968,0,0);-ms-transform:matrix(0.218062,0.003489,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.218062,0.003489,-0.003999,0.249968,0,0);}
.md1_c00342{transform:matrix(0.218255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218255,0.000000,0.000000,0.250000,0,0);}
.m7_c00342{transform:matrix(0.218362,0.003494,-0.003999,0.249968,0,0);-ms-transform:matrix(0.218362,0.003494,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.218362,0.003494,-0.003999,0.249968,0,0);}
.m72_c00342{transform:matrix(0.219772,0.003516,-0.003999,0.249968,0,0);-ms-transform:matrix(0.219772,0.003516,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.219772,0.003516,-0.003999,0.249968,0,0);}
.mf4_c00342{transform:matrix(0.221677,0.001108,-0.001250,0.249997,0,0);-ms-transform:matrix(0.221677,0.001108,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.221677,0.001108,-0.001250,0.249997,0,0);}
.mc6_c00342{transform:matrix(0.221810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221810,0.000000,0.000000,0.250000,0,0);}
.m101_c00342{transform:matrix(0.221882,0.001109,-0.001250,0.249997,0,0);-ms-transform:matrix(0.221882,0.001109,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.221882,0.001109,-0.001250,0.249997,0,0);}
.m23_c00342{transform:matrix(0.222597,0.003562,-0.003999,0.249968,0,0);-ms-transform:matrix(0.222597,0.003562,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.222597,0.003562,-0.003999,0.249968,0,0);}
.me6_c00342{transform:matrix(0.222765,0.003341,-0.003750,0.249972,0,0);-ms-transform:matrix(0.222765,0.003341,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.222765,0.003341,-0.003750,0.249972,0,0);}
.me9_c00342{transform:matrix(0.222795,0.003342,-0.003750,0.249972,0,0);-ms-transform:matrix(0.222795,0.003342,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.222795,0.003342,-0.003750,0.249972,0,0);}
.ma_c00342{transform:matrix(0.222821,0.003565,-0.003999,0.249968,0,0);-ms-transform:matrix(0.222821,0.003565,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.222821,0.003565,-0.003999,0.249968,0,0);}
.m88_c00342{transform:matrix(0.223156,0.003571,-0.003999,0.249968,0,0);-ms-transform:matrix(0.223156,0.003571,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.223156,0.003571,-0.003999,0.249968,0,0);}
.m1b_c00342{transform:matrix(0.223476,0.003576,-0.003999,0.249968,0,0);-ms-transform:matrix(0.223476,0.003576,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.223476,0.003576,-0.003999,0.249968,0,0);}
.me5_c00342{transform:matrix(0.223765,0.003356,-0.003750,0.249972,0,0);-ms-transform:matrix(0.223765,0.003356,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.223765,0.003356,-0.003750,0.249972,0,0);}
.m31_c00342{transform:matrix(0.223941,0.003583,-0.003999,0.249968,0,0);-ms-transform:matrix(0.223941,0.003583,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.223941,0.003583,-0.003999,0.249968,0,0);}
.mff_c00342{transform:matrix(0.224597,0.001123,-0.001250,0.249997,0,0);-ms-transform:matrix(0.224597,0.001123,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.224597,0.001123,-0.001250,0.249997,0,0);}
.m78_c00342{transform:matrix(0.224651,0.003594,-0.003999,0.249968,0,0);-ms-transform:matrix(0.224651,0.003594,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.224651,0.003594,-0.003999,0.249968,0,0);}
.m93_c00342{transform:matrix(0.224761,0.003596,-0.003999,0.249968,0,0);-ms-transform:matrix(0.224761,0.003596,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.224761,0.003596,-0.003999,0.249968,0,0);}
.mf_c00342{transform:matrix(0.224926,0.003599,-0.003999,0.249968,0,0);-ms-transform:matrix(0.224926,0.003599,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.224926,0.003599,-0.003999,0.249968,0,0);}
.m3f_c00342{transform:matrix(0.224971,0.003600,-0.003999,0.249968,0,0);-ms-transform:matrix(0.224971,0.003600,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.224971,0.003600,-0.003999,0.249968,0,0);}
.md7_c00342{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m26_c00342{transform:matrix(0.225316,0.003605,-0.003999,0.249968,0,0);-ms-transform:matrix(0.225316,0.003605,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.225316,0.003605,-0.003999,0.249968,0,0);}
.m12_c00342{transform:matrix(0.225321,0.003605,-0.003999,0.249968,0,0);-ms-transform:matrix(0.225321,0.003605,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.225321,0.003605,-0.003999,0.249968,0,0);}
.m102_c00342{transform:matrix(0.225937,0.001130,-0.001250,0.249997,0,0);-ms-transform:matrix(0.225937,0.001130,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.225937,0.001130,-0.001250,0.249997,0,0);}
.med_c00342{transform:matrix(0.226075,0.003391,-0.003750,0.249972,0,0);-ms-transform:matrix(0.226075,0.003391,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.226075,0.003391,-0.003750,0.249972,0,0);}
.mfd_c00342{transform:matrix(0.226362,0.001132,-0.001250,0.249997,0,0);-ms-transform:matrix(0.226362,0.001132,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.226362,0.001132,-0.001250,0.249997,0,0);}
.m2e_c00342{transform:matrix(0.227401,0.003638,-0.003999,0.249968,0,0);-ms-transform:matrix(0.227401,0.003638,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.227401,0.003638,-0.003999,0.249968,0,0);}
.m10f_c00342{transform:matrix(0.228575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228575,0.000000,0.000000,0.250000,0,0);}
.m66_c00342{transform:matrix(0.228971,0.003664,-0.003999,0.249968,0,0);-ms-transform:matrix(0.228971,0.003664,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.228971,0.003664,-0.003999,0.249968,0,0);}
.mcb_c00342{transform:matrix(0.229205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229205,0.000000,0.000000,0.250000,0,0);}
.mbb_c00342{transform:matrix(0.230308,0.002764,-0.003000,0.249982,0,0);-ms-transform:matrix(0.230308,0.002764,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.230308,0.002764,-0.003000,0.249982,0,0);}
.m92_c00342{transform:matrix(0.230690,0.003691,-0.003999,0.249968,0,0);-ms-transform:matrix(0.230690,0.003691,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.230690,0.003691,-0.003999,0.249968,0,0);}
.mbd_c00342{transform:matrix(0.230758,0.002769,-0.003000,0.249982,0,0);-ms-transform:matrix(0.230758,0.002769,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.230758,0.002769,-0.003000,0.249982,0,0);}
.m3c_c00342{transform:matrix(0.230885,0.003694,-0.003999,0.249968,0,0);-ms-transform:matrix(0.230885,0.003694,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.230885,0.003694,-0.003999,0.249968,0,0);}
.m10e_c00342{transform:matrix(0.231585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231585,0.000000,0.000000,0.250000,0,0);}
.m46_c00342{transform:matrix(0.231810,0.003709,-0.003999,0.249968,0,0);-ms-transform:matrix(0.231810,0.003709,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.231810,0.003709,-0.003999,0.249968,0,0);}
.md8_c00342{transform:matrix(0.232075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232075,0.000000,0.000000,0.250000,0,0);}
.meb_c00342{transform:matrix(0.232079,0.003481,-0.003750,0.249972,0,0);-ms-transform:matrix(0.232079,0.003481,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.232079,0.003481,-0.003750,0.249972,0,0);}
.m36_c00342{transform:matrix(0.232255,0.003716,-0.003999,0.249968,0,0);-ms-transform:matrix(0.232255,0.003716,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.232255,0.003716,-0.003999,0.249968,0,0);}
.m76_c00342{transform:matrix(0.232565,0.003721,-0.003999,0.249968,0,0);-ms-transform:matrix(0.232565,0.003721,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.232565,0.003721,-0.003999,0.249968,0,0);}
.m113_c00342{transform:matrix(0.232760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232760,0.000000,0.000000,0.250000,0,0);}
.m6d_c00342{transform:matrix(0.233630,0.003738,-0.003999,0.249968,0,0);-ms-transform:matrix(0.233630,0.003738,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.233630,0.003738,-0.003999,0.249968,0,0);}
.m33_c00342{transform:matrix(0.233650,0.003738,-0.003999,0.249968,0,0);-ms-transform:matrix(0.233650,0.003738,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.233650,0.003738,-0.003999,0.249968,0,0);}
.mca_c00342{transform:matrix(0.233660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233660,0.000000,0.000000,0.250000,0,0);}
.m8b_c00342{transform:matrix(0.234070,0.003745,-0.003999,0.249968,0,0);-ms-transform:matrix(0.234070,0.003745,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.234070,0.003745,-0.003999,0.249968,0,0);}
.mb_c00342{transform:matrix(0.234725,0.003756,-0.003999,0.249968,0,0);-ms-transform:matrix(0.234725,0.003756,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.234725,0.003756,-0.003999,0.249968,0,0);}
.mc5_c00342{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.mf5_c00342{transform:matrix(0.235567,0.001178,-0.001250,0.249997,0,0);-ms-transform:matrix(0.235567,0.001178,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.235567,0.001178,-0.001250,0.249997,0,0);}
.m6c_c00342{transform:matrix(0.235760,0.003772,-0.003999,0.249968,0,0);-ms-transform:matrix(0.235760,0.003772,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.235760,0.003772,-0.003999,0.249968,0,0);}
.m22_c00342{transform:matrix(0.236100,0.003778,-0.003999,0.249968,0,0);-ms-transform:matrix(0.236100,0.003778,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.236100,0.003778,-0.003999,0.249968,0,0);}
.m44_c00342{transform:matrix(0.236385,0.003782,-0.003999,0.249968,0,0);-ms-transform:matrix(0.236385,0.003782,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.236385,0.003782,-0.003999,0.249968,0,0);}
.m69_c00342{transform:matrix(0.236555,0.003785,-0.003999,0.249968,0,0);-ms-transform:matrix(0.236555,0.003785,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.236555,0.003785,-0.003999,0.249968,0,0);}
.m39_c00342{transform:matrix(0.236775,0.003788,-0.003999,0.249968,0,0);-ms-transform:matrix(0.236775,0.003788,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.236775,0.003788,-0.003999,0.249968,0,0);}
.m80_c00342{transform:matrix(0.236820,0.003789,-0.003999,0.249968,0,0);-ms-transform:matrix(0.236820,0.003789,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.236820,0.003789,-0.003999,0.249968,0,0);}
.m58_c00342{transform:matrix(0.236995,0.003792,-0.003999,0.249968,0,0);-ms-transform:matrix(0.236995,0.003792,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.236995,0.003792,-0.003999,0.249968,0,0);}
.md_c00342{transform:matrix(0.237775,0.003804,-0.003999,0.249968,0,0);-ms-transform:matrix(0.237775,0.003804,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.237775,0.003804,-0.003999,0.249968,0,0);}
.mbe_c00342{transform:matrix(0.237793,0.002854,-0.003000,0.249982,0,0);-ms-transform:matrix(0.237793,0.002854,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.237793,0.002854,-0.003000,0.249982,0,0);}
.m116_c00342{transform:matrix(0.237905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237905,0.000000,0.000000,0.250000,0,0);}
.m111_c00342{transform:matrix(0.238060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238060,0.000000,0.000000,0.250000,0,0);}
.mc0_c00342{transform:matrix(0.238068,0.002857,-0.003000,0.249982,0,0);-ms-transform:matrix(0.238068,0.002857,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.238068,0.002857,-0.003000,0.249982,0,0);}
.m86_c00342{transform:matrix(0.238609,0.003818,-0.003999,0.249968,0,0);-ms-transform:matrix(0.238609,0.003818,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.238609,0.003818,-0.003999,0.249968,0,0);}
.mfc_c00342{transform:matrix(0.238732,0.001194,-0.001250,0.249997,0,0);-ms-transform:matrix(0.238732,0.001194,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.238732,0.001194,-0.001250,0.249997,0,0);}
.m7b_c00342{transform:matrix(0.238779,0.003820,-0.003999,0.249968,0,0);-ms-transform:matrix(0.238779,0.003820,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.238779,0.003820,-0.003999,0.249968,0,0);}
.m14_c00342{transform:matrix(0.239474,0.003832,-0.003999,0.249968,0,0);-ms-transform:matrix(0.239474,0.003832,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.239474,0.003832,-0.003999,0.249968,0,0);}
.mea_c00342{transform:matrix(0.239763,0.003596,-0.003750,0.249972,0,0);-ms-transform:matrix(0.239763,0.003596,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.239763,0.003596,-0.003750,0.249972,0,0);}
.md6_c00342{transform:matrix(0.240400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240400,0.000000,0.000000,0.250000,0,0);}
.m34_c00342{transform:matrix(0.240604,0.003850,-0.003999,0.249968,0,0);-ms-transform:matrix(0.240604,0.003850,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.240604,0.003850,-0.003999,0.249968,0,0);}
.mdb_c00342{transform:matrix(0.241065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241065,0.000000,0.000000,0.250000,0,0);}
.m81_c00342{transform:matrix(0.241194,0.003859,-0.003999,0.249968,0,0);-ms-transform:matrix(0.241194,0.003859,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.241194,0.003859,-0.003999,0.249968,0,0);}
.m63_c00342{transform:matrix(0.242114,0.003874,-0.003999,0.249968,0,0);-ms-transform:matrix(0.242114,0.003874,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.242114,0.003874,-0.003999,0.249968,0,0);}
.mb8_c00342{transform:matrix(0.242608,0.002911,-0.003000,0.249982,0,0);-ms-transform:matrix(0.242608,0.002911,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.242608,0.002911,-0.003000,0.249982,0,0);}
.mec_c00342{transform:matrix(0.242713,0.003641,-0.003750,0.249972,0,0);-ms-transform:matrix(0.242713,0.003641,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.242713,0.003641,-0.003750,0.249972,0,0);}
.m74_c00342{transform:matrix(0.242724,0.003884,-0.003999,0.249968,0,0);-ms-transform:matrix(0.242724,0.003884,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.242724,0.003884,-0.003999,0.249968,0,0);}
.mc3_c00342{transform:matrix(0.242775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242775,0.000000,0.000000,0.250000,0,0);}
.ma0_c00342{transform:matrix(0.242829,0.003885,-0.003999,0.249968,0,0);-ms-transform:matrix(0.242829,0.003885,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.242829,0.003885,-0.003999,0.249968,0,0);}
.m3a_c00342{transform:matrix(0.243439,0.003895,-0.003999,0.249968,0,0);-ms-transform:matrix(0.243439,0.003895,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.243439,0.003895,-0.003999,0.249968,0,0);}
.m10_c00342{transform:matrix(0.243459,0.003895,-0.003999,0.249968,0,0);-ms-transform:matrix(0.243459,0.003895,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.243459,0.003895,-0.003999,0.249968,0,0);}
.mf0_c00342{transform:matrix(0.244317,0.001222,-0.001250,0.249997,0,0);-ms-transform:matrix(0.244317,0.001222,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.244317,0.001222,-0.001250,0.249997,0,0);}
.m49_c00342{transform:matrix(0.244439,0.003911,-0.003999,0.249968,0,0);-ms-transform:matrix(0.244439,0.003911,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.244439,0.003911,-0.003999,0.249968,0,0);}
.mc7_c00342{transform:matrix(0.244805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244805,0.000000,0.000000,0.250000,0,0);}
.m6b_c00342{transform:matrix(0.245729,0.003932,-0.003999,0.249968,0,0);-ms-transform:matrix(0.245729,0.003932,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.245729,0.003932,-0.003999,0.249968,0,0);}
.md2_c00342{transform:matrix(0.245765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245765,0.000000,0.000000,0.250000,0,0);}
.m67_c00342{transform:matrix(0.245969,0.003935,-0.003999,0.249968,0,0);-ms-transform:matrix(0.245969,0.003935,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.245969,0.003935,-0.003999,0.249968,0,0);}
.mc4_c00342{transform:matrix(0.246265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246265,0.000000,0.000000,0.250000,0,0);}
.mc8_c00342{transform:matrix(0.246270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246270,0.000000,0.000000,0.250000,0,0);}
.m75_c00342{transform:matrix(0.247268,0.003956,-0.003999,0.249968,0,0);-ms-transform:matrix(0.247268,0.003956,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.247268,0.003956,-0.003999,0.249968,0,0);}
.m3d_c00342{transform:matrix(0.247923,0.003967,-0.003999,0.249968,0,0);-ms-transform:matrix(0.247923,0.003967,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.247923,0.003967,-0.003999,0.249968,0,0);}
.m3b_c00342{transform:matrix(0.248073,0.003969,-0.003999,0.249968,0,0);-ms-transform:matrix(0.248073,0.003969,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.248073,0.003969,-0.003999,0.249968,0,0);}
.mf3_c00342{transform:matrix(0.248112,0.001241,-0.001250,0.249997,0,0);-ms-transform:matrix(0.248112,0.001241,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.248112,0.001241,-0.001250,0.249997,0,0);}
.me0_c00342{transform:matrix(0.248445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248445,0.000000,0.000000,0.250000,0,0);}
.mc2_c00342{transform:matrix(0.248735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248735,0.000000,0.000000,0.250000,0,0);}
.mfe_c00342{transform:matrix(0.248832,0.001244,-0.001250,0.249997,0,0);-ms-transform:matrix(0.248832,0.001244,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.248832,0.001244,-0.001250,0.249997,0,0);}
.m100_c00342{transform:matrix(0.249862,0.001249,-0.001250,0.249997,0,0);-ms-transform:matrix(0.249862,0.001249,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.249862,0.001249,-0.001250,0.249997,0,0);}
.mcc_c00342{transform:matrix(0.249960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249960,0.000000,0.000000,0.250000,0,0);}
.m43_c00342{transform:matrix(0.250023,0.004000,-0.003999,0.249968,0,0);-ms-transform:matrix(0.250023,0.004000,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.250023,0.004000,-0.003999,0.249968,0,0);}
.m4b_c00342{transform:matrix(0.250123,0.004002,-0.003999,0.249968,0,0);-ms-transform:matrix(0.250123,0.004002,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.250123,0.004002,-0.003999,0.249968,0,0);}
.m13_c00342{transform:matrix(0.250138,0.004002,-0.003999,0.249968,0,0);-ms-transform:matrix(0.250138,0.004002,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.250138,0.004002,-0.003999,0.249968,0,0);}
.me3_c00342{transform:matrix(0.250155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250155,0.000000,0.000000,0.250000,0,0);}
.m40_c00342{transform:matrix(0.250368,0.004006,-0.003999,0.249968,0,0);-ms-transform:matrix(0.250368,0.004006,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.250368,0.004006,-0.003999,0.249968,0,0);}
.mf7_c00342{transform:matrix(0.251742,0.001259,-0.001250,0.249997,0,0);-ms-transform:matrix(0.251742,0.001259,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.251742,0.001259,-0.001250,0.249997,0,0);}
.mb5_c00342{transform:matrix(0.251982,0.003024,-0.003000,0.249982,0,0);-ms-transform:matrix(0.251982,0.003024,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.251982,0.003024,-0.003000,0.249982,0,0);}
.m64_c00342{transform:matrix(0.252403,0.004038,-0.003999,0.249968,0,0);-ms-transform:matrix(0.252403,0.004038,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.252403,0.004038,-0.003999,0.249968,0,0);}
.m5f_c00342{transform:matrix(0.252443,0.004039,-0.003999,0.249968,0,0);-ms-transform:matrix(0.252443,0.004039,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.252443,0.004039,-0.003999,0.249968,0,0);}
.mb4_c00342{transform:matrix(0.252577,0.003031,-0.003000,0.249982,0,0);-ms-transform:matrix(0.252577,0.003031,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.252577,0.003031,-0.003000,0.249982,0,0);}
.m45_c00342{transform:matrix(0.252718,0.004043,-0.003999,0.249968,0,0);-ms-transform:matrix(0.252718,0.004043,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.252718,0.004043,-0.003999,0.249968,0,0);}
.mc9_c00342{transform:matrix(0.254045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254045,0.000000,0.000000,0.250000,0,0);}
.mc_c00342{transform:matrix(0.254157,0.004067,-0.003999,0.249968,0,0);-ms-transform:matrix(0.254157,0.004067,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.254157,0.004067,-0.003999,0.249968,0,0);}
.m27_c00342{transform:matrix(0.254247,0.004068,-0.003999,0.249968,0,0);-ms-transform:matrix(0.254247,0.004068,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.254247,0.004068,-0.003999,0.249968,0,0);}
.md9_c00342{transform:matrix(0.254415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254415,0.000000,0.000000,0.250000,0,0);}
.me2_c00342{transform:matrix(0.254915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254915,0.000000,0.000000,0.250000,0,0);}
.m37_c00342{transform:matrix(0.256027,0.004096,-0.003999,0.249968,0,0);-ms-transform:matrix(0.256027,0.004096,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.256027,0.004096,-0.003999,0.249968,0,0);}
.m5b_c00342{transform:matrix(0.256417,0.004103,-0.003999,0.249968,0,0);-ms-transform:matrix(0.256417,0.004103,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.256417,0.004103,-0.003999,0.249968,0,0);}
.m77_c00342{transform:matrix(0.256997,0.004112,-0.003999,0.249968,0,0);-ms-transform:matrix(0.256997,0.004112,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.256997,0.004112,-0.003999,0.249968,0,0);}
.m42_c00342{transform:matrix(0.258397,0.004134,-0.003999,0.249968,0,0);-ms-transform:matrix(0.258397,0.004134,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.258397,0.004134,-0.003999,0.249968,0,0);}
.mdc_c00342{transform:matrix(0.258405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258405,0.000000,0.000000,0.250000,0,0);}
.md3_c00342{transform:matrix(0.258880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258880,0.000000,0.000000,0.250000,0,0);}
.m71_c00342{transform:matrix(0.258977,0.004144,-0.003999,0.249968,0,0);-ms-transform:matrix(0.258977,0.004144,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.258977,0.004144,-0.003999,0.249968,0,0);}
.m103_c00342{transform:matrix(0.261187,0.001306,-0.001250,0.249997,0,0);-ms-transform:matrix(0.261187,0.001306,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.261187,0.001306,-0.001250,0.249997,0,0);}
.mde_c00342{transform:matrix(0.261385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261385,0.000000,0.000000,0.250000,0,0);}
.m110_c00342{transform:matrix(0.262580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262580,0.000000,0.000000,0.250000,0,0);}
.mce_c00342{transform:matrix(0.264140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264140,0.000000,0.000000,0.250000,0,0);}
.m24_c00342{transform:matrix(0.264821,0.004237,-0.003999,0.249968,0,0);-ms-transform:matrix(0.264821,0.004237,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.264821,0.004237,-0.003999,0.249968,0,0);}
.mf9_c00342{transform:matrix(0.265122,0.001326,-0.001250,0.249997,0,0);-ms-transform:matrix(0.265122,0.001326,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.265122,0.001326,-0.001250,0.249997,0,0);}
.m73_c00342{transform:matrix(0.266026,0.004256,-0.003999,0.249968,0,0);-ms-transform:matrix(0.266026,0.004256,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.266026,0.004256,-0.003999,0.249968,0,0);}
.m62_c00342{transform:matrix(0.266666,0.004267,-0.003999,0.249968,0,0);-ms-transform:matrix(0.266666,0.004267,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.266666,0.004267,-0.003999,0.249968,0,0);}
.me1_c00342{transform:matrix(0.267080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267080,0.000000,0.000000,0.250000,0,0);}
.m32_c00342{transform:matrix(0.267426,0.004279,-0.003999,0.249968,0,0);-ms-transform:matrix(0.267426,0.004279,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.267426,0.004279,-0.003999,0.249968,0,0);}
.m5a_c00342{transform:matrix(0.267556,0.004281,-0.003999,0.249968,0,0);-ms-transform:matrix(0.267556,0.004281,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.267556,0.004281,-0.003999,0.249968,0,0);}
.m30_c00342{transform:matrix(0.267876,0.004286,-0.003999,0.249968,0,0);-ms-transform:matrix(0.267876,0.004286,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.267876,0.004286,-0.003999,0.249968,0,0);}
.m4d_c00342{transform:matrix(0.268816,0.004301,-0.003999,0.249968,0,0);-ms-transform:matrix(0.268816,0.004301,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.268816,0.004301,-0.003999,0.249968,0,0);}
.m2b_c00342{transform:matrix(0.269181,0.004307,-0.003999,0.249968,0,0);-ms-transform:matrix(0.269181,0.004307,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.269181,0.004307,-0.003999,0.249968,0,0);}
.mdf_c00342{transform:matrix(0.269225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269225,0.000000,0.000000,0.250000,0,0);}
.m29_c00342{transform:matrix(0.269476,0.004312,-0.003999,0.249968,0,0);-ms-transform:matrix(0.269476,0.004312,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.269476,0.004312,-0.003999,0.249968,0,0);}
.m2f_c00342{transform:matrix(0.270460,0.004327,-0.003999,0.249968,0,0);-ms-transform:matrix(0.270460,0.004327,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.270460,0.004327,-0.003999,0.249968,0,0);}
.m2d_c00342{transform:matrix(0.270630,0.004330,-0.003999,0.249968,0,0);-ms-transform:matrix(0.270630,0.004330,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.270630,0.004330,-0.003999,0.249968,0,0);}
.m79_c00342{transform:matrix(0.271340,0.004341,-0.003999,0.249968,0,0);-ms-transform:matrix(0.271340,0.004341,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.271340,0.004341,-0.003999,0.249968,0,0);}
.m4c_c00342{transform:matrix(0.271780,0.004348,-0.003999,0.249968,0,0);-ms-transform:matrix(0.271780,0.004348,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.271780,0.004348,-0.003999,0.249968,0,0);}
.m8f_c00342{transform:matrix(0.272290,0.004357,-0.003999,0.249968,0,0);-ms-transform:matrix(0.272290,0.004357,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.272290,0.004357,-0.003999,0.249968,0,0);}
.ma1_c00342{transform:matrix(0.272395,0.004358,-0.003999,0.249968,0,0);-ms-transform:matrix(0.272395,0.004358,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.272395,0.004358,-0.003999,0.249968,0,0);}
.m38_c00342{transform:matrix(0.272970,0.004368,-0.003999,0.249968,0,0);-ms-transform:matrix(0.272970,0.004368,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.272970,0.004368,-0.003999,0.249968,0,0);}
.m7a_c00342{transform:matrix(0.273930,0.004383,-0.003999,0.249968,0,0);-ms-transform:matrix(0.273930,0.004383,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.273930,0.004383,-0.003999,0.249968,0,0);}
.me4_c00342{transform:matrix(0.277425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277425,0.000000,0.000000,0.250000,0,0);}
.m7c_c00342{transform:matrix(0.277979,0.004448,-0.003999,0.249968,0,0);-ms-transform:matrix(0.277979,0.004448,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.277979,0.004448,-0.003999,0.249968,0,0);}
.m4a_c00342{transform:matrix(0.278369,0.004454,-0.003999,0.249968,0,0);-ms-transform:matrix(0.278369,0.004454,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.278369,0.004454,-0.003999,0.249968,0,0);}
.m59_c00342{transform:matrix(0.278509,0.004456,-0.003999,0.249968,0,0);-ms-transform:matrix(0.278509,0.004456,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.278509,0.004456,-0.003999,0.249968,0,0);}
.m25_c00342{transform:matrix(0.279344,0.004470,-0.003999,0.249968,0,0);-ms-transform:matrix(0.279344,0.004470,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.279344,0.004470,-0.003999,0.249968,0,0);}
.m47_c00342{transform:matrix(0.280094,0.004482,-0.003999,0.249968,0,0);-ms-transform:matrix(0.280094,0.004482,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.280094,0.004482,-0.003999,0.249968,0,0);}
.m48_c00342{transform:matrix(0.280299,0.004485,-0.003999,0.249968,0,0);-ms-transform:matrix(0.280299,0.004485,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.280299,0.004485,-0.003999,0.249968,0,0);}
.m61_c00342{transform:matrix(0.280439,0.004487,-0.003999,0.249968,0,0);-ms-transform:matrix(0.280439,0.004487,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.280439,0.004487,-0.003999,0.249968,0,0);}
.m35_c00342{transform:matrix(0.280974,0.004496,-0.003999,0.249968,0,0);-ms-transform:matrix(0.280974,0.004496,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.280974,0.004496,-0.003999,0.249968,0,0);}
.mda_c00342{transform:matrix(0.291115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291115,0.000000,0.000000,0.250000,0,0);}
.m5e_c00342{transform:matrix(0.291343,0.004661,-0.003999,0.249968,0,0);-ms-transform:matrix(0.291343,0.004661,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.291343,0.004661,-0.003999,0.249968,0,0);}
.m5c_c00342{transform:matrix(0.296107,0.004738,-0.003999,0.249968,0,0);-ms-transform:matrix(0.296107,0.004738,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.296107,0.004738,-0.003999,0.249968,0,0);}
.m60_c00342{transform:matrix(0.300577,0.004809,-0.003999,0.249968,0,0);-ms-transform:matrix(0.300577,0.004809,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.300577,0.004809,-0.003999,0.249968,0,0);}
.m5d_c00342{transform:matrix(0.312415,0.004999,-0.003999,0.249968,0,0);-ms-transform:matrix(0.312415,0.004999,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.312415,0.004999,-0.003999,0.249968,0,0);}
.mf8_c00342{transform:matrix(0.349081,0.001745,-0.001250,0.249997,0,0);-ms-transform:matrix(0.349081,0.001745,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.349081,0.001745,-0.001250,0.249997,0,0);}
.mee_c00342{transform:matrix(0.410334,0.006155,-0.003750,0.249972,0,0);-ms-transform:matrix(0.410334,0.006155,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.410334,0.006155,-0.003750,0.249972,0,0);}
.m0_c00342{transform:matrix(0.456890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456890,0.000000,0.000000,0.250000,0,0);}
.mef_c00342{transform:matrix(0.676634,0.010150,-0.003750,0.249972,0,0);-ms-transform:matrix(0.676634,0.010150,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.676634,0.010150,-0.003750,0.249972,0,0);}
.m117_c00342{transform:matrix(1.224118,-0.030603,0.006248,0.249922,0,0);-ms-transform:matrix(1.224118,-0.030603,0.006248,0.249922,0,0);-webkit-transform:matrix(1.224118,-0.030603,0.006248,0.249922,0,0);}
.m118_c00342{transform:matrix(2.191780,-0.054795,0.006248,0.249922,0,0);-ms-transform:matrix(2.191780,-0.054795,0.006248,0.249922,0,0);-webkit-transform:matrix(2.191780,-0.054795,0.006248,0.249922,0,0);}
.v0_c00342{vertical-align:0.000000px;}
.ls0_c00342{letter-spacing:0.000000px;}
.sc__c00342{text-shadow:none;}
.sc0_c00342{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__c00342{-webkit-text-stroke:0px transparent;}
.sc0_c00342{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00342{word-spacing:0.000000px;}
.fc0_c00342{color:transparent;}
.fs10_c00342{font-size:24.007499px;}
.fsd_c00342{font-size:48.005400px;}
.fs5_c00342{font-size:66.008447px;}
.fsb_c00342{font-size:72.000000px;}
.fs3_c00342{font-size:72.009215px;}
.fsa_c00342{font-size:78.000000px;}
.fse_c00342{font-size:78.000975px;}
.fs2_c00342{font-size:78.009983px;}
.fs0_c00342{font-size:84.000000px;}
.fs9_c00342{font-size:84.006048px;}
.fsc_c00342{font-size:84.009449px;}
.fs6_c00342{font-size:84.010751px;}
.fs1_c00342{font-size:90.011519px;}
.fsf_c00342{font-size:96.000000px;}
.fs7_c00342{font-size:96.006912px;}
.fs4_c00342{font-size:96.012287px;}
.fs8_c00342{font-size:102.007344px;}
.fs11_c00342{font-size:126.039369px;}
.y0_c00342{bottom:0.000000px;}
.y104_c00342{bottom:40.743862px;}
.y101_c00342{bottom:40.743938px;}
.y105_c00342{bottom:40.744013px;}
.y103_c00342{bottom:40.744088px;}
.y102_c00342{bottom:40.744425px;}
.y106_c00342{bottom:40.744500px;}
.y109_c00342{bottom:40.744538px;}
.y10c_c00342{bottom:40.744725px;}
.y10a_c00342{bottom:40.744763px;}
.y108_c00342{bottom:40.744800px;}
.y107_c00342{bottom:40.744988px;}
.y10b_c00342{bottom:40.745063px;}
.yff_c00342{bottom:82.599000px;}
.y100_c00342{bottom:85.149712px;}
.yfe_c00342{bottom:113.574000px;}
.yfd_c00342{bottom:114.142500px;}
.yfc_c00342{bottom:114.693000px;}
.yfb_c00342{bottom:116.034000px;}
.yfa_c00342{bottom:116.404500px;}
.yf9_c00342{bottom:118.444500px;}
.yf8_c00342{bottom:120.753000px;}
.yf7_c00342{bottom:120.894000px;}
.yf6_c00342{bottom:121.504500px;}
.yf5_c00342{bottom:147.997500px;}
.yf4_c00342{bottom:186.445905px;}
.yf3_c00342{bottom:187.440968px;}
.yf2_c00342{bottom:188.425252px;}
.yf1_c00342{bottom:190.966358px;}
.yf0_c00342{bottom:192.282233px;}
.yef_c00342{bottom:194.827178px;}
.yee_c00342{bottom:196.422105px;}
.yed_c00342{bottom:198.332625px;}
.yec_c00342{bottom:199.266225px;}
.yeb_c00342{bottom:219.924098px;}
.yea_c00342{bottom:220.701930px;}
.ye9_c00342{bottom:220.815518px;}
.ye8_c00342{bottom:221.259637px;}
.ye7_c00342{bottom:221.429700px;}
.ye6_c00342{bottom:221.703863px;}
.ye5_c00342{bottom:221.926575px;}
.ye4_c00342{bottom:222.423488px;}
.ye3_c00342{bottom:222.589478px;}
.ye2_c00342{bottom:222.913455px;}
.ye1_c00342{bottom:223.290000px;}
.ydf_c00342{bottom:270.535260px;}
.ye0_c00342{bottom:270.535740px;}
.yde_c00342{bottom:292.258792px;}
.ydd_c00342{bottom:294.101947px;}
.ydc_c00342{bottom:295.131210px;}
.ydb_c00342{bottom:296.957850px;}
.yda_c00342{bottom:297.935070px;}
.yd9_c00342{bottom:298.607483px;}
.yd8_c00342{bottom:299.433660px;}
.yd7_c00342{bottom:300.757560px;}
.yd6_c00342{bottom:301.861500px;}
.yd5_c00342{bottom:340.273500px;}
.yd4_c00342{bottom:375.547500px;}
.yd3_c00342{bottom:404.001000px;}
.yd2_c00342{bottom:404.901000px;}
.yd1_c00342{bottom:405.600000px;}
.yd0_c00342{bottom:406.189500px;}
.ycf_c00342{bottom:406.914000px;}
.yce_c00342{bottom:407.341500px;}
.ycd_c00342{bottom:407.910000px;}
.ycc_c00342{bottom:409.497000px;}
.ycb_c00342{bottom:410.794500px;}
.yca_c00342{bottom:411.201000px;}
.yc9_c00342{bottom:411.610500px;}
.yc8_c00342{bottom:412.020000px;}
.yc7_c00342{bottom:446.272500px;}
.yc6_c00342{bottom:482.424000px;}
.yc5_c00342{bottom:511.089252px;}
.yc4_c00342{bottom:511.780500px;}
.yc3_c00342{bottom:513.117546px;}
.yc2_c00342{bottom:514.285440px;}
.yc1_c00342{bottom:514.774638px;}
.yc0_c00342{bottom:515.787480px;}
.ybf_c00342{bottom:516.277074px;}
.ybe_c00342{bottom:516.928620px;}
.ybd_c00342{bottom:519.379716px;}
.ybc_c00342{bottom:520.018146px;}
.ybb_c00342{bottom:552.226758px;}
.yba_c00342{bottom:552.442794px;}
.yb9_c00342{bottom:553.223430px;}
.yb8_c00342{bottom:553.498338px;}
.yb7_c00342{bottom:553.697628px;}
.yb6_c00342{bottom:553.896432px;}
.yb5_c00342{bottom:554.229456px;}
.yb4_c00342{bottom:554.629254px;}
.yb3_c00342{bottom:555.150786px;}
.yb2_c00342{bottom:555.354396px;}
.yb1_c00342{bottom:555.928716px;}
.yb0_c00342{bottom:580.996740px;}
.yaf_c00342{bottom:582.063798px;}
.yae_c00342{bottom:582.465648px;}
.yad_c00342{bottom:582.864186px;}
.yac_c00342{bottom:583.810554px;}
.yab_c00342{bottom:584.205996px;}
.yaa_c00342{bottom:585.016140px;}
.ya9_c00342{bottom:585.408846px;}
.ya8_c00342{bottom:585.942600px;}
.ya7_c00342{bottom:586.597530px;}
.ya6_c00342{bottom:587.793000px;}
.ya5_c00342{bottom:619.176708px;}
.ya3_c00342{bottom:652.601148px;}
.ya2_c00342{bottom:652.601556px;}
.ya4_c00342{bottom:652.601772px;}
.y9f_c00342{bottom:652.602156px;}
.ya1_c00342{bottom:652.602204px;}
.y9b_c00342{bottom:652.602372px;}
.y9d_c00342{bottom:652.602432px;}
.y9e_c00342{bottom:652.602456px;}
.ya0_c00342{bottom:652.602492px;}
.y9a_c00342{bottom:652.602564px;}
.y9c_c00342{bottom:652.602720px;}
.y8c_c00342{bottom:691.126524px;}
.y8b_c00342{bottom:691.126980px;}
.y8d_c00342{bottom:691.127196px;}
.y99_c00342{bottom:691.127676px;}
.y8e_c00342{bottom:691.127868px;}
.y98_c00342{bottom:691.127892px;}
.y8f_c00342{bottom:691.128036px;}
.y97_c00342{bottom:691.128540px;}
.y93_c00342{bottom:691.128552px;}
.y91_c00342{bottom:691.128636px;}
.y94_c00342{bottom:691.128720px;}
.y90_c00342{bottom:691.128744px;}
.y95_c00342{bottom:691.128876px;}
.y92_c00342{bottom:691.129044px;}
.y96_c00342{bottom:691.129092px;}
.y8a_c00342{bottom:725.093196px;}
.y89_c00342{bottom:725.761548px;}
.y88_c00342{bottom:725.986560px;}
.y87_c00342{bottom:726.149232px;}
.y86_c00342{bottom:726.321396px;}
.y85_c00342{bottom:726.543480px;}
.y84_c00342{bottom:727.201848px;}
.y83_c00342{bottom:727.708560px;}
.y82_c00342{bottom:727.977024px;}
.y81_c00342{bottom:728.193876px;}
.y80_c00342{bottom:728.409168px;}
.y7e_c00342{bottom:763.098108px;}
.y7f_c00342{bottom:763.098720px;}
.y7d_c00342{bottom:763.098792px;}
.y7c_c00342{bottom:763.099080px;}
.y7b_c00342{bottom:763.099488px;}
.y76_c00342{bottom:763.099704px;}
.y73_c00342{bottom:763.099740px;}
.y74_c00342{bottom:763.099788px;}
.y79_c00342{bottom:763.099800px;}
.y77_c00342{bottom:763.099920px;}
.y75_c00342{bottom:763.100100px;}
.y7a_c00342{bottom:763.100136px;}
.y78_c00342{bottom:763.100268px;}
.y65_c00342{bottom:796.461684px;}
.y66_c00342{bottom:796.843452px;}
.y67_c00342{bottom:797.431344px;}
.y68_c00342{bottom:797.635356px;}
.y69_c00342{bottom:797.959596px;}
.y6a_c00342{bottom:798.495516px;}
.y6b_c00342{bottom:798.691200px;}
.y6c_c00342{bottom:798.963252px;}
.y6d_c00342{bottom:799.165944px;}
.y6e_c00342{bottom:799.690032px;}
.y6f_c00342{bottom:799.828164px;}
.y70_c00342{bottom:800.098464px;}
.y71_c00342{bottom:800.301132px;}
.y72_c00342{bottom:800.496276px;}
.y64_c00342{bottom:833.340948px;}
.y63_c00342{bottom:833.808084px;}
.y62_c00342{bottom:834.405036px;}
.y61_c00342{bottom:834.606072px;}
.y60_c00342{bottom:835.014000px;}
.y5f_c00342{bottom:835.745688px;}
.y5e_c00342{bottom:836.330112px;}
.y5d_c00342{bottom:836.533860px;}
.y5c_c00342{bottom:836.855028px;}
.y5b_c00342{bottom:837.235344px;}
.y53_c00342{bottom:871.258320px;}
.y58_c00342{bottom:871.258452px;}
.y54_c00342{bottom:871.258704px;}
.y5a_c00342{bottom:871.258716px;}
.y57_c00342{bottom:871.258740px;}
.y56_c00342{bottom:871.258944px;}
.y59_c00342{bottom:871.258956px;}
.y52_c00342{bottom:871.258968px;}
.y55_c00342{bottom:871.259184px;}
.y51_c00342{bottom:871.259520px;}
.y50_c00342{bottom:871.259568px;}
.y4f_c00342{bottom:905.804724px;}
.y4e_c00342{bottom:905.805336px;}
.y4d_c00342{bottom:905.805468px;}
.y47_c00342{bottom:905.805600px;}
.y4c_c00342{bottom:905.805660px;}
.y45_c00342{bottom:905.805720px;}
.y48_c00342{bottom:905.805816px;}
.y49_c00342{bottom:905.805876px;}
.y46_c00342{bottom:905.805936px;}
.y4b_c00342{bottom:905.805960px;}
.y4a_c00342{bottom:905.806392px;}
.y3e_c00342{bottom:940.928412px;}
.y40_c00342{bottom:940.928448px;}
.y3f_c00342{bottom:940.928736px;}
.y3d_c00342{bottom:940.928784px;}
.y42_c00342{bottom:940.928976px;}
.y43_c00342{bottom:940.929048px;}
.y41_c00342{bottom:940.929204px;}
.y3c_c00342{bottom:940.929516px;}
.y44_c00342{bottom:940.929684px;}
.y3b_c00342{bottom:940.930188px;}
.y3a_c00342{bottom:940.930428px;}
.y34_c00342{bottom:974.485308px;}
.y31_c00342{bottom:974.485560px;}
.y33_c00342{bottom:974.485596px;}
.y36_c00342{bottom:974.485632px;}
.y32_c00342{bottom:974.485728px;}
.y35_c00342{bottom:974.485740px;}
.y37_c00342{bottom:974.485884px;}
.y39_c00342{bottom:974.486292px;}
.y38_c00342{bottom:974.486580px;}
.y24_c00342{bottom:1010.060064px;}
.y25_c00342{bottom:1010.274468px;}
.y26_c00342{bottom:1010.433612px;}
.y27_c00342{bottom:1010.812884px;}
.y28_c00342{bottom:1011.370704px;}
.y29_c00342{bottom:1011.535260px;}
.y2a_c00342{bottom:1011.868248px;}
.y2b_c00342{bottom:1012.037700px;}
.y2c_c00342{bottom:1012.422624px;}
.y2d_c00342{bottom:1012.533480px;}
.y2e_c00342{bottom:1012.869660px;}
.y2f_c00342{bottom:1012.980300px;}
.y30_c00342{bottom:1013.377152px;}
.y19_c00342{bottom:1047.717240px;}
.y1c_c00342{bottom:1047.717468px;}
.y1a_c00342{bottom:1047.717540px;}
.y1e_c00342{bottom:1047.717660px;}
.y20_c00342{bottom:1047.717696px;}
.y1d_c00342{bottom:1047.717864px;}
.y21_c00342{bottom:1047.717996px;}
.y1b_c00342{bottom:1047.718032px;}
.y1f_c00342{bottom:1047.718176px;}
.y22_c00342{bottom:1047.718368px;}
.y23_c00342{bottom:1047.718800px;}
.y18_c00342{bottom:1081.415052px;}
.y17_c00342{bottom:1081.751928px;}
.y16_c00342{bottom:1081.948896px;}
.y15_c00342{bottom:1082.484840px;}
.y14_c00342{bottom:1082.686092px;}
.y13_c00342{bottom:1082.891376px;}
.y12_c00342{bottom:1083.086976px;}
.y11_c00342{bottom:1083.490728px;}
.y10_c00342{bottom:1083.750936px;}
.yf_c00342{bottom:1083.953676px;}
.ye_c00342{bottom:1084.288440px;}
.yd_c00342{bottom:1085.065872px;}
.yc_c00342{bottom:1085.394636px;}
.yb_c00342{bottom:1117.374888px;}
.ya_c00342{bottom:1117.910712px;}
.y9_c00342{bottom:1118.442000px;}
.y8_c00342{bottom:1119.708072px;}
.y7_c00342{bottom:1120.226472px;}
.y6_c00342{bottom:1121.306760px;}
.y5_c00342{bottom:1121.842512px;}
.y4_c00342{bottom:1122.918960px;}
.y3_c00342{bottom:1124.132160px;}
.y2_c00342{bottom:1125.363000px;}
.y1_c00342{bottom:1197.180000px;}
.h12_c00342{height:24.007499px;}
.hf_c00342{height:48.005400px;}
.h7_c00342{height:66.008447px;}
.hd_c00342{height:72.000000px;}
.h5_c00342{height:72.009215px;}
.hc_c00342{height:78.000000px;}
.h10_c00342{height:78.000975px;}
.h4_c00342{height:78.009983px;}
.h2_c00342{height:84.000000px;}
.hb_c00342{height:84.006048px;}
.he_c00342{height:84.009449px;}
.h8_c00342{height:84.010751px;}
.h3_c00342{height:90.011519px;}
.h11_c00342{height:96.000000px;}
.h9_c00342{height:96.006912px;}
.h6_c00342{height:96.012287px;}
.ha_c00342{height:102.007344px;}
.h13_c00342{height:126.039369px;}
.h1_c00342{height:1247.250000px;}
.h0_c00342{height:1247.400000px;}
.w0_c00342{width:915.000000px;}
.x0_c00342{left:0.000000px;}
.x6e_c00342{left:154.677000px;}
.x4b_c00342{left:155.980836px;}
.xc_c00342{left:157.068420px;}
.x3a_c00342{left:158.398728px;}
.x5e_c00342{left:167.130000px;}
.x36_c00342{left:189.252372px;}
.x1d_c00342{left:200.138328px;}
.x2a_c00342{left:210.049140px;}
.xd_c00342{left:211.843680px;}
.x64_c00342{left:220.588500px;}
.x3b_c00342{left:221.834880px;}
.x6c_c00342{left:229.270500px;}
.x66_c00342{left:230.865000px;}
.x1e_c00342{left:232.015032px;}
.x65_c00342{left:233.280000px;}
.x70_c00342{left:234.656175px;}
.x16_c00342{left:242.994240px;}
.x59_c00342{left:252.665220px;}
.x6f_c00342{left:256.705500px;}
.x4d_c00342{left:264.316704px;}
.x2_c00342{left:265.494000px;}
.x6d_c00342{left:273.427500px;}
.x46_c00342{left:274.851672px;}
.x37_c00342{left:275.934048px;}
.x17_c00342{left:287.009496px;}
.x25_c00342{left:296.730576px;}
.x1f_c00342{left:307.898520px;}
.x3c_c00342{left:309.312372px;}
.x42_c00342{left:319.240692px;}
.x18_c00342{left:330.214560px;}
.x69_c00342{left:332.122553px;}
.x6b_c00342{left:341.010000px;}
.x3_c00342{left:342.421500px;}
.x5f_c00342{left:351.270000px;}
.x43_c00342{left:353.283168px;}
.x56_c00342{left:363.211500px;}
.x5a_c00342{left:373.602432px;}
.x19_c00342{left:374.769960px;}
.x47_c00342{left:384.484728px;}
.x2b_c00342{left:395.832660px;}
.xe_c00342{left:397.354368px;}
.x3d_c00342{left:406.791972px;}
.x26_c00342{left:408.254112px;}
.x4_c00342{left:418.246500px;}
.x1_c00342{left:419.310000px;}
.x30_c00342{left:429.312912px;}
.xf_c00342{left:431.124768px;}
.x48_c00342{left:440.381532px;}
.x4e_c00342{left:441.459564px;}
.x20_c00342{left:452.361048px;}
.x4f_c00342{left:462.251892px;}
.x2c_c00342{left:463.611012px;}
.x52_c00342{left:473.318952px;}
.x10_c00342{left:474.582228px;}
.x67_c00342{left:484.179000px;}
.x5_c00342{left:485.524500px;}
.x57_c00342{left:494.994000px;}
.x2d_c00342{left:496.825008px;}
.x27_c00342{left:507.627552px;}
.x61_c00342{left:517.930500px;}
.x6_c00342{left:519.009000px;}
.x3e_c00342{left:528.854508px;}
.x2e_c00342{left:540.570216px;}
.x11_c00342{left:541.827480px;}
.x62_c00342{left:550.869000px;}
.x21_c00342{left:552.804792px;}
.x50_c00342{left:562.704096px;}
.x31_c00342{left:564.060900px;}
.x12_c00342{left:574.495212px;}
.x38_c00342{left:585.121176px;}
.x7_c00342{left:586.527000px;}
.x58_c00342{left:595.459500px;}
.x3f_c00342{left:596.923404px;}
.x68_c00342{left:605.955000px;}
.x49_c00342{left:607.531800px;}
.x13_c00342{left:608.799708px;}
.x5d_c00342{left:617.573490px;}
.x8_c00342{left:618.927000px;}
.x71_c00342{left:628.707787px;}
.x22_c00342{left:629.741640px;}
.x4a_c00342{left:640.745796px;}
.x14_c00342{left:642.289560px;}
.x51_c00342{left:650.734632px;}
.x23_c00342{left:651.883080px;}
.x1a_c00342{left:653.445288px;}
.x60_c00342{left:662.580000px;}
.x2f_c00342{left:663.705228px;}
.x53_c00342{left:673.683216px;}
.x6a_c00342{left:674.931000px;}
.x32_c00342{left:684.766788px;}
.x28_c00342{left:686.120748px;}
.x44_c00342{left:695.892720px;}
.x9_c00342{left:698.056500px;}
.x63_c00342{left:705.640500px;}
.x33_c00342{left:706.909452px;}
.x24_c00342{left:719.113164px;}
.x40_c00342{left:729.787644px;}
.xa_c00342{left:731.262000px;}
.x5b_c00342{left:738.083676px;}
.x1b_c00342{left:741.475824px;}
.x54_c00342{left:752.802972px;}
.x29_c00342{left:763.350000px;}
.xb_c00342{left:764.751000px;}
.x5c_c00342{left:774.089268px;}
.x1c_c00342{left:775.770108px;}
.x34_c00342{left:785.218992px;}
.x55_c00342{left:795.737964px;}
.x39_c00342{left:798.177204px;}
.x41_c00342{left:807.558576px;}
.x35_c00342{left:808.982064px;}
.x4c_c00342{left:819.439596px;}
.x15_c00342{left:820.836144px;}
.x45_c00342{left:830.331024px;}
@media print{
.v0_c00342{vertical-align:0.000000pt;}
.ls0_c00342{letter-spacing:0.000000pt;}
.ws0_c00342{word-spacing:0.000000pt;}
.fs10_c00342{font-size:21.339999pt;}
.fsd_c00342{font-size:42.671466pt;}
.fs5_c00342{font-size:58.674176pt;}
.fsb_c00342{font-size:64.000000pt;}
.fs3_c00342{font-size:64.008191pt;}
.fsa_c00342{font-size:69.333333pt;}
.fse_c00342{font-size:69.334200pt;}
.fs2_c00342{font-size:69.342207pt;}
.fs0_c00342{font-size:74.666667pt;}
.fs9_c00342{font-size:74.672042pt;}
.fsc_c00342{font-size:74.675066pt;}
.fs6_c00342{font-size:74.676223pt;}
.fs1_c00342{font-size:80.010239pt;}
.fsf_c00342{font-size:85.333333pt;}
.fs7_c00342{font-size:85.339477pt;}
.fs4_c00342{font-size:85.344255pt;}
.fs8_c00342{font-size:90.673194pt;}
.fs11_c00342{font-size:112.034995pt;}
.y0_c00342{bottom:0.000000pt;}
.y104_c00342{bottom:36.216767pt;}
.y101_c00342{bottom:36.216833pt;}
.y105_c00342{bottom:36.216900pt;}
.y103_c00342{bottom:36.216967pt;}
.y102_c00342{bottom:36.217267pt;}
.y106_c00342{bottom:36.217333pt;}
.y109_c00342{bottom:36.217367pt;}
.y10c_c00342{bottom:36.217533pt;}
.y10a_c00342{bottom:36.217567pt;}
.y108_c00342{bottom:36.217600pt;}
.y107_c00342{bottom:36.217767pt;}
.y10b_c00342{bottom:36.217833pt;}
.yff_c00342{bottom:73.421333pt;}
.y100_c00342{bottom:75.688633pt;}
.yfe_c00342{bottom:100.954667pt;}
.yfd_c00342{bottom:101.460000pt;}
.yfc_c00342{bottom:101.949333pt;}
.yfb_c00342{bottom:103.141333pt;}
.yfa_c00342{bottom:103.470667pt;}
.yf9_c00342{bottom:105.284000pt;}
.yf8_c00342{bottom:107.336000pt;}
.yf7_c00342{bottom:107.461333pt;}
.yf6_c00342{bottom:108.004000pt;}
.yf5_c00342{bottom:131.553333pt;}
.yf4_c00342{bottom:165.729693pt;}
.yf3_c00342{bottom:166.614193pt;}
.yf2_c00342{bottom:167.489113pt;}
.yf1_c00342{bottom:169.747873pt;}
.yf0_c00342{bottom:170.917540pt;}
.yef_c00342{bottom:173.179713pt;}
.yee_c00342{bottom:174.597427pt;}
.yed_c00342{bottom:176.295667pt;}
.yec_c00342{bottom:177.125533pt;}
.yeb_c00342{bottom:195.488087pt;}
.yea_c00342{bottom:196.179493pt;}
.ye9_c00342{bottom:196.280460pt;}
.ye8_c00342{bottom:196.675233pt;}
.ye7_c00342{bottom:196.826400pt;}
.ye6_c00342{bottom:197.070100pt;}
.ye5_c00342{bottom:197.268067pt;}
.ye4_c00342{bottom:197.709767pt;}
.ye3_c00342{bottom:197.857313pt;}
.ye2_c00342{bottom:198.145293pt;}
.ye1_c00342{bottom:198.480000pt;}
.ydf_c00342{bottom:240.475787pt;}
.ye0_c00342{bottom:240.476213pt;}
.yde_c00342{bottom:259.785593pt;}
.ydd_c00342{bottom:261.423953pt;}
.ydc_c00342{bottom:262.338853pt;}
.ydb_c00342{bottom:263.962533pt;}
.yda_c00342{bottom:264.831173pt;}
.yd9_c00342{bottom:265.428873pt;}
.yd8_c00342{bottom:266.163253pt;}
.yd7_c00342{bottom:267.340053pt;}
.yd6_c00342{bottom:268.321333pt;}
.yd5_c00342{bottom:302.465333pt;}
.yd4_c00342{bottom:333.820000pt;}
.yd3_c00342{bottom:359.112000pt;}
.yd2_c00342{bottom:359.912000pt;}
.yd1_c00342{bottom:360.533333pt;}
.yd0_c00342{bottom:361.057333pt;}
.ycf_c00342{bottom:361.701333pt;}
.yce_c00342{bottom:362.081333pt;}
.ycd_c00342{bottom:362.586667pt;}
.ycc_c00342{bottom:363.997333pt;}
.ycb_c00342{bottom:365.150667pt;}
.yca_c00342{bottom:365.512000pt;}
.yc9_c00342{bottom:365.876000pt;}
.yc8_c00342{bottom:366.240000pt;}
.yc7_c00342{bottom:396.686667pt;}
.yc6_c00342{bottom:428.821333pt;}
.yc5_c00342{bottom:454.301557pt;}
.yc4_c00342{bottom:454.916000pt;}
.yc3_c00342{bottom:456.104485pt;}
.yc2_c00342{bottom:457.142613pt;}
.yc1_c00342{bottom:457.577456pt;}
.yc0_c00342{bottom:458.477760pt;}
.ybf_c00342{bottom:458.912955pt;}
.ybe_c00342{bottom:459.492107pt;}
.ybd_c00342{bottom:461.670859pt;}
.ybc_c00342{bottom:462.238352pt;}
.ybb_c00342{bottom:490.868229pt;}
.yba_c00342{bottom:491.060261pt;}
.yb9_c00342{bottom:491.754160pt;}
.yb8_c00342{bottom:491.998523pt;}
.yb7_c00342{bottom:492.175669pt;}
.yb6_c00342{bottom:492.352384pt;}
.yb5_c00342{bottom:492.648405pt;}
.yb4_c00342{bottom:493.003781pt;}
.yb3_c00342{bottom:493.467365pt;}
.yb2_c00342{bottom:493.648352pt;}
.yb1_c00342{bottom:494.158859pt;}
.yb0_c00342{bottom:516.441547pt;}
.yaf_c00342{bottom:517.390043pt;}
.yae_c00342{bottom:517.747243pt;}
.yad_c00342{bottom:518.101499pt;}
.yac_c00342{bottom:518.942715pt;}
.yab_c00342{bottom:519.294219pt;}
.yaa_c00342{bottom:520.014347pt;}
.ya9_c00342{bottom:520.363419pt;}
.ya8_c00342{bottom:520.837867pt;}
.ya7_c00342{bottom:521.420027pt;}
.ya6_c00342{bottom:522.482667pt;}
.ya5_c00342{bottom:550.379296pt;}
.ya3_c00342{bottom:580.089909pt;}
.ya2_c00342{bottom:580.090272pt;}
.ya4_c00342{bottom:580.090464pt;}
.y9f_c00342{bottom:580.090805pt;}
.ya1_c00342{bottom:580.090848pt;}
.y9b_c00342{bottom:580.090997pt;}
.y9d_c00342{bottom:580.091051pt;}
.y9e_c00342{bottom:580.091072pt;}
.ya0_c00342{bottom:580.091104pt;}
.y9a_c00342{bottom:580.091168pt;}
.y9c_c00342{bottom:580.091307pt;}
.y8c_c00342{bottom:614.334688pt;}
.y8b_c00342{bottom:614.335093pt;}
.y8d_c00342{bottom:614.335285pt;}
.y99_c00342{bottom:614.335712pt;}
.y8e_c00342{bottom:614.335883pt;}
.y98_c00342{bottom:614.335904pt;}
.y8f_c00342{bottom:614.336032pt;}
.y97_c00342{bottom:614.336480pt;}
.y93_c00342{bottom:614.336491pt;}
.y91_c00342{bottom:614.336565pt;}
.y94_c00342{bottom:614.336640pt;}
.y90_c00342{bottom:614.336661pt;}
.y95_c00342{bottom:614.336779pt;}
.y92_c00342{bottom:614.336928pt;}
.y96_c00342{bottom:614.336971pt;}
.y8a_c00342{bottom:644.527285pt;}
.y89_c00342{bottom:645.121376pt;}
.y88_c00342{bottom:645.321387pt;}
.y87_c00342{bottom:645.465984pt;}
.y86_c00342{bottom:645.619019pt;}
.y85_c00342{bottom:645.816427pt;}
.y84_c00342{bottom:646.401643pt;}
.y83_c00342{bottom:646.852053pt;}
.y82_c00342{bottom:647.090688pt;}
.y81_c00342{bottom:647.283445pt;}
.y80_c00342{bottom:647.474816pt;}
.y7e_c00342{bottom:678.309429pt;}
.y7f_c00342{bottom:678.309973pt;}
.y7d_c00342{bottom:678.310037pt;}
.y7c_c00342{bottom:678.310293pt;}
.y7b_c00342{bottom:678.310656pt;}
.y76_c00342{bottom:678.310848pt;}
.y73_c00342{bottom:678.310880pt;}
.y74_c00342{bottom:678.310923pt;}
.y79_c00342{bottom:678.310933pt;}
.y77_c00342{bottom:678.311040pt;}
.y75_c00342{bottom:678.311200pt;}
.y7a_c00342{bottom:678.311232pt;}
.y78_c00342{bottom:678.311349pt;}
.y65_c00342{bottom:707.965941pt;}
.y66_c00342{bottom:708.305291pt;}
.y67_c00342{bottom:708.827861pt;}
.y68_c00342{bottom:709.009205pt;}
.y69_c00342{bottom:709.297419pt;}
.y6a_c00342{bottom:709.773792pt;}
.y6b_c00342{bottom:709.947733pt;}
.y6c_c00342{bottom:710.189557pt;}
.y6d_c00342{bottom:710.369728pt;}
.y6e_c00342{bottom:710.835584pt;}
.y6f_c00342{bottom:710.958368pt;}
.y70_c00342{bottom:711.198635pt;}
.y71_c00342{bottom:711.378784pt;}
.y72_c00342{bottom:711.552245pt;}
.y64_c00342{bottom:740.747509pt;}
.y63_c00342{bottom:741.162741pt;}
.y62_c00342{bottom:741.693365pt;}
.y61_c00342{bottom:741.872064pt;}
.y60_c00342{bottom:742.234667pt;}
.y5f_c00342{bottom:742.885056pt;}
.y5e_c00342{bottom:743.404544pt;}
.y5d_c00342{bottom:743.585653pt;}
.y5c_c00342{bottom:743.871136pt;}
.y5b_c00342{bottom:744.209195pt;}
.y53_c00342{bottom:774.451840pt;}
.y58_c00342{bottom:774.451957pt;}
.y54_c00342{bottom:774.452181pt;}
.y5a_c00342{bottom:774.452192pt;}
.y57_c00342{bottom:774.452213pt;}
.y56_c00342{bottom:774.452395pt;}
.y59_c00342{bottom:774.452405pt;}
.y52_c00342{bottom:774.452416pt;}
.y55_c00342{bottom:774.452608pt;}
.y51_c00342{bottom:774.452907pt;}
.y50_c00342{bottom:774.452949pt;}
.y4f_c00342{bottom:805.159755pt;}
.y4e_c00342{bottom:805.160299pt;}
.y4d_c00342{bottom:805.160416pt;}
.y47_c00342{bottom:805.160533pt;}
.y4c_c00342{bottom:805.160587pt;}
.y45_c00342{bottom:805.160640pt;}
.y48_c00342{bottom:805.160725pt;}
.y49_c00342{bottom:805.160779pt;}
.y46_c00342{bottom:805.160832pt;}
.y4b_c00342{bottom:805.160853pt;}
.y4a_c00342{bottom:805.161237pt;}
.y3e_c00342{bottom:836.380811pt;}
.y40_c00342{bottom:836.380843pt;}
.y3f_c00342{bottom:836.381099pt;}
.y3d_c00342{bottom:836.381141pt;}
.y42_c00342{bottom:836.381312pt;}
.y43_c00342{bottom:836.381376pt;}
.y41_c00342{bottom:836.381515pt;}
.y3c_c00342{bottom:836.381792pt;}
.y44_c00342{bottom:836.381941pt;}
.y3b_c00342{bottom:836.382389pt;}
.y3a_c00342{bottom:836.382603pt;}
.y34_c00342{bottom:866.209163pt;}
.y31_c00342{bottom:866.209387pt;}
.y33_c00342{bottom:866.209419pt;}
.y36_c00342{bottom:866.209451pt;}
.y32_c00342{bottom:866.209536pt;}
.y35_c00342{bottom:866.209547pt;}
.y37_c00342{bottom:866.209675pt;}
.y39_c00342{bottom:866.210037pt;}
.y38_c00342{bottom:866.210293pt;}
.y24_c00342{bottom:897.831168pt;}
.y25_c00342{bottom:898.021749pt;}
.y26_c00342{bottom:898.163211pt;}
.y27_c00342{bottom:898.500341pt;}
.y28_c00342{bottom:898.996181pt;}
.y29_c00342{bottom:899.142453pt;}
.y2a_c00342{bottom:899.438443pt;}
.y2b_c00342{bottom:899.589067pt;}
.y2c_c00342{bottom:899.931221pt;}
.y2d_c00342{bottom:900.029760pt;}
.y2e_c00342{bottom:900.328587pt;}
.y2f_c00342{bottom:900.426933pt;}
.y30_c00342{bottom:900.779691pt;}
.y19_c00342{bottom:931.304213pt;}
.y1c_c00342{bottom:931.304416pt;}
.y1a_c00342{bottom:931.304480pt;}
.y1e_c00342{bottom:931.304587pt;}
.y20_c00342{bottom:931.304619pt;}
.y1d_c00342{bottom:931.304768pt;}
.y21_c00342{bottom:931.304885pt;}
.y1b_c00342{bottom:931.304917pt;}
.y1f_c00342{bottom:931.305045pt;}
.y22_c00342{bottom:931.305216pt;}
.y23_c00342{bottom:931.305600pt;}
.y18_c00342{bottom:961.257824pt;}
.y17_c00342{bottom:961.557269pt;}
.y16_c00342{bottom:961.732352pt;}
.y15_c00342{bottom:962.208747pt;}
.y14_c00342{bottom:962.387637pt;}
.y13_c00342{bottom:962.570112pt;}
.y12_c00342{bottom:962.743979pt;}
.y11_c00342{bottom:963.102869pt;}
.y10_c00342{bottom:963.334165pt;}
.yf_c00342{bottom:963.514379pt;}
.ye_c00342{bottom:963.811947pt;}
.yd_c00342{bottom:964.502997pt;}
.yc_c00342{bottom:964.795232pt;}
.yb_c00342{bottom:993.222123pt;}
.ya_c00342{bottom:993.698411pt;}
.y9_c00342{bottom:994.170667pt;}
.y8_c00342{bottom:995.296064pt;}
.y7_c00342{bottom:995.756864pt;}
.y6_c00342{bottom:996.717120pt;}
.y5_c00342{bottom:997.193344pt;}
.y4_c00342{bottom:998.150187pt;}
.y3_c00342{bottom:999.228587pt;}
.y2_c00342{bottom:1000.322667pt;}
.y1_c00342{bottom:1064.160000pt;}
.h12_c00342{height:21.339999pt;}
.hf_c00342{height:42.671466pt;}
.h7_c00342{height:58.674176pt;}
.hd_c00342{height:64.000000pt;}
.h5_c00342{height:64.008191pt;}
.hc_c00342{height:69.333333pt;}
.h10_c00342{height:69.334200pt;}
.h4_c00342{height:69.342207pt;}
.h2_c00342{height:74.666667pt;}
.hb_c00342{height:74.672042pt;}
.he_c00342{height:74.675066pt;}
.h8_c00342{height:74.676223pt;}
.h3_c00342{height:80.010239pt;}
.h11_c00342{height:85.333333pt;}
.h9_c00342{height:85.339477pt;}
.h6_c00342{height:85.344255pt;}
.ha_c00342{height:90.673194pt;}
.h13_c00342{height:112.034995pt;}
.h1_c00342{height:1108.666667pt;}
.h0_c00342{height:1108.800000pt;}
.w0_c00342{width:813.333333pt;}
.x0_c00342{left:0.000000pt;}
.x6e_c00342{left:137.490667pt;}
.x4b_c00342{left:138.649632pt;}
.xc_c00342{left:139.616373pt;}
.x3a_c00342{left:140.798869pt;}
.x5e_c00342{left:148.560000pt;}
.x36_c00342{left:168.224331pt;}
.x1d_c00342{left:177.900736pt;}
.x2a_c00342{left:186.710347pt;}
.xd_c00342{left:188.305493pt;}
.x64_c00342{left:196.078667pt;}
.x3b_c00342{left:197.186560pt;}
.x6c_c00342{left:203.796000pt;}
.x66_c00342{left:205.213333pt;}
.x1e_c00342{left:206.235584pt;}
.x65_c00342{left:207.360000pt;}
.x70_c00342{left:208.583267pt;}
.x16_c00342{left:215.994880pt;}
.x59_c00342{left:224.591307pt;}
.x6f_c00342{left:228.182667pt;}
.x4d_c00342{left:234.948181pt;}
.x2_c00342{left:235.994667pt;}
.x6d_c00342{left:243.046667pt;}
.x46_c00342{left:244.312597pt;}
.x37_c00342{left:245.274709pt;}
.x17_c00342{left:255.119552pt;}
.x25_c00342{left:263.760512pt;}
.x1f_c00342{left:273.687573pt;}
.x3c_c00342{left:274.944331pt;}
.x42_c00342{left:283.769504pt;}
.x18_c00342{left:293.524053pt;}
.x69_c00342{left:295.220047pt;}
.x6b_c00342{left:303.120000pt;}
.x3_c00342{left:304.374667pt;}
.x5f_c00342{left:312.240000pt;}
.x43_c00342{left:314.029483pt;}
.x56_c00342{left:322.854667pt;}
.x5a_c00342{left:332.091051pt;}
.x19_c00342{left:333.128853pt;}
.x47_c00342{left:341.764203pt;}
.x2b_c00342{left:351.851253pt;}
.xe_c00342{left:353.203883pt;}
.x3d_c00342{left:361.592864pt;}
.x26_c00342{left:362.892544pt;}
.x4_c00342{left:371.774667pt;}
.x1_c00342{left:372.720000pt;}
.x30_c00342{left:381.611477pt;}
.xf_c00342{left:383.222016pt;}
.x48_c00342{left:391.450251pt;}
.x4e_c00342{left:392.408501pt;}
.x20_c00342{left:402.098709pt;}
.x4f_c00342{left:410.890571pt;}
.x2c_c00342{left:412.098677pt;}
.x52_c00342{left:420.727957pt;}
.x10_c00342{left:421.850869pt;}
.x67_c00342{left:430.381333pt;}
.x5_c00342{left:431.577333pt;}
.x57_c00342{left:439.994667pt;}
.x2d_c00342{left:441.622229pt;}
.x27_c00342{left:451.224491pt;}
.x61_c00342{left:460.382667pt;}
.x6_c00342{left:461.341333pt;}
.x3e_c00342{left:470.092896pt;}
.x2e_c00342{left:480.506859pt;}
.x11_c00342{left:481.624427pt;}
.x62_c00342{left:489.661333pt;}
.x21_c00342{left:491.382037pt;}
.x50_c00342{left:500.181419pt;}
.x31_c00342{left:501.387467pt;}
.x12_c00342{left:510.662411pt;}
.x38_c00342{left:520.107712pt;}
.x7_c00342{left:521.357333pt;}
.x58_c00342{left:529.297333pt;}
.x3f_c00342{left:530.598581pt;}
.x68_c00342{left:538.626667pt;}
.x49_c00342{left:540.028267pt;}
.x13_c00342{left:541.155296pt;}
.x5d_c00342{left:548.954213pt;}
.x8_c00342{left:550.157333pt;}
.x71_c00342{left:558.851367pt;}
.x22_c00342{left:559.770347pt;}
.x4a_c00342{left:569.551819pt;}
.x14_c00342{left:570.924053pt;}
.x51_c00342{left:578.430784pt;}
.x23_c00342{left:579.451627pt;}
.x1a_c00342{left:580.840256pt;}
.x60_c00342{left:588.960000pt;}
.x2f_c00342{left:589.960203pt;}
.x53_c00342{left:598.829525pt;}
.x6a_c00342{left:599.938667pt;}
.x32_c00342{left:608.681589pt;}
.x28_c00342{left:609.885109pt;}
.x44_c00342{left:618.571307pt;}
.x9_c00342{left:620.494667pt;}
.x63_c00342{left:627.236000pt;}
.x33_c00342{left:628.363957pt;}
.x24_c00342{left:639.211701pt;}
.x40_c00342{left:648.700128pt;}
.xa_c00342{left:650.010667pt;}
.x5b_c00342{left:656.074379pt;}
.x1b_c00342{left:659.089621pt;}
.x54_c00342{left:669.158197pt;}
.x29_c00342{left:678.533333pt;}
.xb_c00342{left:679.778667pt;}
.x5c_c00342{left:688.079349pt;}
.x1c_c00342{left:689.573429pt;}
.x34_c00342{left:697.972437pt;}
.x55_c00342{left:707.322635pt;}
.x39_c00342{left:709.490848pt;}
.x41_c00342{left:717.829845pt;}
.x35_c00342{left:719.095168pt;}
.x4c_c00342{left:728.390752pt;}
.x15_c00342{left:729.632128pt;}
.x45_c00342{left:738.072021pt;}
}





/* 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_c00343 {
    display:none;
  }
  .loading-indicator_c00343.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00343 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_c00343 { 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_c00343" -> "#page-container .classname_c00343")
 */
.pf_c00343 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00343 { /* 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_c00343.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00343 { /* 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_c00343 { /* 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_c00343 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00343 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00343 {overflow:visible;}
  }
}
.c_c00343 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00343 { /* 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_c00343:after { /* webkit #35443 */
  content: '';
}
.t_c00343:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00343 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 */
}
.__c00343 { /* 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_c00343 { /* info for Javascript */
  display:none;
}
.l_c00343 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00343 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00343 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00343: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_c00343 {
    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_c00343.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00343.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_c00343 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00343{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00343;src:url('chunks/assets/font_7c6b9abe6ee2a268480c528b.woff2')format("woff");}.ff1_c00343{font-family:ff1_c00343;line-height:1.000000;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;}
.m6e_c00343{transform:matrix(0.027660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.027660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.027660,0.000000,0.000000,0.250000,0,0);}
.m35_c00343{transform:matrix(0.139395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139395,0.000000,0.000000,0.250000,0,0);}
.m1c_c00343{transform:matrix(0.140240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140240,0.000000,0.000000,0.250000,0,0);}
.m10_c00343{transform:matrix(0.142320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142320,0.000000,0.000000,0.250000,0,0);}
.mc_c00343{transform:matrix(0.145250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145250,0.000000,0.000000,0.250000,0,0);}
.m55_c00343{transform:matrix(0.145685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145685,0.000000,0.000000,0.250000,0,0);}
.m1e_c00343{transform:matrix(0.146250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146250,0.000000,0.000000,0.250000,0,0);}
.m4b_c00343{transform:matrix(0.153895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153895,0.000000,0.000000,0.250000,0,0);}
.m49_c00343{transform:matrix(0.157140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157140,0.000000,0.000000,0.250000,0,0);}
.m3d_c00343{transform:matrix(0.158645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158645,0.000000,0.000000,0.250000,0,0);}
.m7b_c00343{transform:matrix(0.159450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159450,0.000000,0.000000,0.250000,0,0);}
.mf_c00343{transform:matrix(0.161030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161030,0.000000,0.000000,0.250000,0,0);}
.m1d_c00343{transform:matrix(0.163030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163030,0.000000,0.000000,0.250000,0,0);}
.me_c00343{transform:matrix(0.165170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165170,0.000000,0.000000,0.250000,0,0);}
.m3b_c00343{transform:matrix(0.167810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167810,0.000000,0.000000,0.250000,0,0);}
.md_c00343{transform:matrix(0.168405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168405,0.000000,0.000000,0.250000,0,0);}
.m1b_c00343{transform:matrix(0.168855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168855,0.000000,0.000000,0.250000,0,0);}
.m5a_c00343{transform:matrix(0.171065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171065,0.000000,0.000000,0.250000,0,0);}
.m56_c00343{transform:matrix(0.171610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171610,0.000000,0.000000,0.250000,0,0);}
.m1f_c00343{transform:matrix(0.172505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172505,0.000000,0.000000,0.250000,0,0);}
.m32_c00343{transform:matrix(0.173170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173170,0.000000,0.000000,0.250000,0,0);}
.m45_c00343{transform:matrix(0.174740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174740,0.000000,0.000000,0.250000,0,0);}
.m79_c00343{transform:matrix(0.176390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176390,0.000000,0.000000,0.250000,0,0);}
.m13_c00343{transform:matrix(0.178285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178285,0.000000,0.000000,0.250000,0,0);}
.m46_c00343{transform:matrix(0.179185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179185,0.000000,0.000000,0.250000,0,0);}
.m17_c00343{transform:matrix(0.179535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179535,0.000000,0.000000,0.250000,0,0);}
.m21_c00343{transform:matrix(0.180380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180380,0.000000,0.000000,0.250000,0,0);}
.m53_c00343{transform:matrix(0.180480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180480,0.000000,0.000000,0.250000,0,0);}
.m4a_c00343{transform:matrix(0.182860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182860,0.000000,0.000000,0.250000,0,0);}
.m73_c00343{transform:matrix(0.183620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183620,0.000000,0.000000,0.250000,0,0);}
.m30_c00343{transform:matrix(0.183740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183740,0.000000,0.000000,0.250000,0,0);}
.m15_c00343{transform:matrix(0.184890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184890,0.000000,0.000000,0.250000,0,0);}
.m41_c00343{transform:matrix(0.185100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185100,0.000000,0.000000,0.250000,0,0);}
.m72_c00343{transform:matrix(0.185300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185300,0.000000,0.000000,0.250000,0,0);}
.m47_c00343{transform:matrix(0.186070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186070,0.000000,0.000000,0.250000,0,0);}
.m3e_c00343{transform:matrix(0.186895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186895,0.000000,0.000000,0.250000,0,0);}
.m48_c00343{transform:matrix(0.187160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187160,0.000000,0.000000,0.250000,0,0);}
.m2_c00343{transform:matrix(0.190325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190325,0.000000,0.000000,0.250000,0,0);}
.m3c_c00343{transform:matrix(0.194740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194740,0.000000,0.000000,0.250000,0,0);}
.m4c_c00343{transform:matrix(0.195425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195425,0.000000,0.000000,0.250000,0,0);}
.m40_c00343{transform:matrix(0.198360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198360,0.000000,0.000000,0.250000,0,0);}
.m12_c00343{transform:matrix(0.198460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198460,0.000000,0.000000,0.250000,0,0);}
.m74_c00343{transform:matrix(0.200310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200310,0.000000,0.000000,0.250000,0,0);}
.m50_c00343{transform:matrix(0.201160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201160,0.000000,0.000000,0.250000,0,0);}
.m31_c00343{transform:matrix(0.201300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201300,0.000000,0.000000,0.250000,0,0);}
.m2a_c00343{transform:matrix(0.202180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202180,0.000000,0.000000,0.250000,0,0);}
.m43_c00343{transform:matrix(0.206380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206380,0.000000,0.000000,0.250000,0,0);}
.m14_c00343{transform:matrix(0.209280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209280,0.000000,0.000000,0.250000,0,0);}
.m59_c00343{transform:matrix(0.209455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209455,0.000000,0.000000,0.250000,0,0);}
.m3_c00343{transform:matrix(0.210690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210690,0.000000,0.000000,0.250000,0,0);}
.m65_c00343{transform:matrix(0.211370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211370,0.000000,0.000000,0.250000,0,0);}
.m5b_c00343{transform:matrix(0.212880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212880,0.000000,0.000000,0.250000,0,0);}
.m4_c00343{transform:matrix(0.213155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213155,0.000000,0.000000,0.250000,0,0);}
.m27_c00343{transform:matrix(0.215100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215100,0.000000,0.000000,0.250000,0,0);}
.m75_c00343{transform:matrix(0.217995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217995,0.000000,0.000000,0.250000,0,0);}
.m38_c00343{transform:matrix(0.219430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219430,0.000000,0.000000,0.250000,0,0);}
.m70_c00343{transform:matrix(0.220190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220190,0.000000,0.000000,0.250000,0,0);}
.m78_c00343{transform:matrix(0.220225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220225,0.000000,0.000000,0.250000,0,0);}
.m28_c00343{transform:matrix(0.221030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221030,0.000000,0.000000,0.250000,0,0);}
.m57_c00343{transform:matrix(0.221490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221490,0.000000,0.000000,0.250000,0,0);}
.m4d_c00343{transform:matrix(0.223495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223495,0.000000,0.000000,0.250000,0,0);}
.m77_c00343{transform:matrix(0.223525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223525,0.000000,0.000000,0.250000,0,0);}
.m42_c00343{transform:matrix(0.226050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226050,0.000000,0.000000,0.250000,0,0);}
.m36_c00343{transform:matrix(0.227660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227660,0.000000,0.000000,0.250000,0,0);}
.m54_c00343{transform:matrix(0.228920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228920,0.000000,0.000000,0.250000,0,0);}
.m71_c00343{transform:matrix(0.229840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229840,0.000000,0.000000,0.250000,0,0);}
.m22_c00343{transform:matrix(0.236370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236370,0.000000,0.000000,0.250000,0,0);}
.m39_c00343{transform:matrix(0.237480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237480,0.000000,0.000000,0.250000,0,0);}
.m18_c00343{transform:matrix(0.237685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237685,0.000000,0.000000,0.250000,0,0);}
.m62_c00343{transform:matrix(0.237950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237950,0.000000,0.000000,0.250000,0,0);}
.m61_c00343{transform:matrix(0.240650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240650,0.000000,0.000000,0.250000,0,0);}
.m5_c00343{transform:matrix(0.241975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241975,0.000000,0.000000,0.250000,0,0);}
.m58_c00343{transform:matrix(0.244310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244310,0.000000,0.000000,0.250000,0,0);}
.m51_c00343{transform:matrix(0.245860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245860,0.000000,0.000000,0.250000,0,0);}
.m2d_c00343{transform:matrix(0.248335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248335,0.000000,0.000000,0.250000,0,0);}
.m3f_c00343{transform:matrix(0.249850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249850,0.000000,0.000000,0.250000,0,0);}
.m1_c00343{transform:matrix(0.253180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253180,0.000000,0.000000,0.250000,0,0);}
.m33_c00343{transform:matrix(0.253485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253485,0.000000,0.000000,0.250000,0,0);}
.m0_c00343{transform:matrix(0.254445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254445,0.000000,0.000000,0.250000,0,0);}
.m16_c00343{transform:matrix(0.256435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256435,0.000000,0.000000,0.250000,0,0);}
.m2f_c00343{transform:matrix(0.257110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257110,0.000000,0.000000,0.250000,0,0);}
.m6f_c00343{transform:matrix(0.258290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258290,0.000000,0.000000,0.250000,0,0);}
.m64_c00343{transform:matrix(0.258735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258735,0.000000,0.000000,0.250000,0,0);}
.m4f_c00343{transform:matrix(0.259940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259940,0.000000,0.000000,0.250000,0,0);}
.m6_c00343{transform:matrix(0.268570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268570,0.000000,0.000000,0.250000,0,0);}
.m5c_c00343{transform:matrix(0.268950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268950,0.000000,0.000000,0.250000,0,0);}
.m25_c00343{transform:matrix(0.273725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273725,0.000000,0.000000,0.250000,0,0);}
.m20_c00343{transform:matrix(0.277700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277700,0.000000,0.000000,0.250000,0,0);}
.m66_c00343{transform:matrix(0.277715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277715,0.000000,0.000000,0.250000,0,0);}
.m67_c00343{transform:matrix(0.279305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279305,0.000000,0.000000,0.250000,0,0);}
.m6b_c00343{transform:matrix(0.279665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279665,0.000000,0.000000,0.250000,0,0);}
.m37_c00343{transform:matrix(0.279685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279685,0.000000,0.000000,0.250000,0,0);}
.m2e_c00343{transform:matrix(0.280005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280005,0.000000,0.000000,0.250000,0,0);}
.m2c_c00343{transform:matrix(0.280245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280245,0.000000,0.000000,0.250000,0,0);}
.m7a_c00343{transform:matrix(0.282225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282225,0.000000,0.000000,0.250000,0,0);}
.m34_c00343{transform:matrix(0.300440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300440,0.000000,0.000000,0.250000,0,0);}
.m4e_c00343{transform:matrix(0.301165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301165,0.000000,0.000000,0.250000,0,0);}
.m9_c00343{transform:matrix(0.303465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303465,0.000000,0.000000,0.250000,0,0);}
.m63_c00343{transform:matrix(0.307250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307250,0.000000,0.000000,0.250000,0,0);}
.m76_c00343{transform:matrix(0.307745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307745,0.000000,0.000000,0.250000,0,0);}
.m2b_c00343{transform:matrix(0.309620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309620,0.000000,0.000000,0.250000,0,0);}
.m26_c00343{transform:matrix(0.309675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309675,0.000000,0.000000,0.250000,0,0);}
.m69_c00343{transform:matrix(0.313050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313050,0.000000,0.000000,0.250000,0,0);}
.m23_c00343{transform:matrix(0.314850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314850,0.000000,0.000000,0.250000,0,0);}
.m5e_c00343{transform:matrix(0.319835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319835,0.000000,0.000000,0.250000,0,0);}
.ma_c00343{transform:matrix(0.351285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351285,0.000000,0.000000,0.250000,0,0);}
.m68_c00343{transform:matrix(0.352325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352325,0.000000,0.000000,0.250000,0,0);}
.m52_c00343{transform:matrix(0.370045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370045,0.000000,0.000000,0.250000,0,0);}
.m1a_c00343{transform:matrix(0.372585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372585,0.000000,0.000000,0.250000,0,0);}
.m29_c00343{transform:matrix(0.375720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375720,0.000000,0.000000,0.250000,0,0);}
.m44_c00343{transform:matrix(0.395310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395310,0.000000,0.000000,0.250000,0,0);}
.mb_c00343{transform:matrix(0.412805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412805,0.000000,0.000000,0.250000,0,0);}
.m7_c00343{transform:matrix(0.417170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417170,0.000000,0.000000,0.250000,0,0);}
.m3a_c00343{transform:matrix(0.421420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421420,0.000000,0.000000,0.250000,0,0);}
.m8_c00343{transform:matrix(0.427385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427385,0.000000,0.000000,0.250000,0,0);}
.m5d_c00343{transform:matrix(0.429420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429420,0.000000,0.000000,0.250000,0,0);}
.m11_c00343{transform:matrix(0.457595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457595,0.000000,0.000000,0.250000,0,0);}
.m6d_c00343{transform:matrix(0.462105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462105,0.000000,0.000000,0.250000,0,0);}
.m19_c00343{transform:matrix(0.520800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520800,0.000000,0.000000,0.250000,0,0);}
.m6a_c00343{transform:matrix(0.542755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542755,0.000000,0.000000,0.250000,0,0);}
.m24_c00343{transform:matrix(0.572760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572760,0.000000,0.000000,0.250000,0,0);}
.m6c_c00343{transform:matrix(0.587925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.587925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.587925,0.000000,0.000000,0.250000,0,0);}
.m60_c00343{transform:matrix(0.597985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.597985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.597985,0.000000,0.000000,0.250000,0,0);}
.m5f_c00343{transform:matrix(0.794090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.794090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.794090,0.000000,0.000000,0.250000,0,0);}
.v0_c00343{vertical-align:0.000000px;}
.ls0_c00343{letter-spacing:0.000000px;}
.sc__c00343{text-shadow:none;}
.sc0_c00343{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__c00343{-webkit-text-stroke:0px transparent;}
.sc0_c00343{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00343{word-spacing:0.000000px;}
.fc0_c00343{color:transparent;}
.fs5_c00343{font-size:18.000000px;}
.fs4_c00343{font-size:72.000000px;}
.fs0_c00343{font-size:90.000000px;}
.fs2_c00343{font-size:96.000000px;}
.fs3_c00343{font-size:102.000000px;}
.fs1_c00343{font-size:120.000000px;}
.y0_c00343{bottom:0.000000px;}
.y35_c00343{bottom:632.880000px;}
.y34_c00343{bottom:655.564500px;}
.y33_c00343{bottom:689.413500px;}
.y32_c00343{bottom:762.201000px;}
.y24_c00343{bottom:797.851500px;}
.y25_c00343{bottom:798.358500px;}
.y26_c00343{bottom:798.648000px;}
.y27_c00343{bottom:799.051500px;}
.y28_c00343{bottom:799.263000px;}
.y29_c00343{bottom:800.058000px;}
.y2a_c00343{bottom:800.344500px;}
.y2b_c00343{bottom:800.742000px;}
.y2c_c00343{bottom:801.063000px;}
.y2d_c00343{bottom:801.813000px;}
.y2e_c00343{bottom:802.251000px;}
.y2f_c00343{bottom:802.611000px;}
.y30_c00343{bottom:802.983000px;}
.y31_c00343{bottom:803.473500px;}
.y1a_c00343{bottom:829.441500px;}
.y1b_c00343{bottom:830.056500px;}
.y1c_c00343{bottom:830.565000px;}
.y1d_c00343{bottom:831.451500px;}
.y1e_c00343{bottom:831.757500px;}
.y1f_c00343{bottom:832.344000px;}
.y20_c00343{bottom:833.427000px;}
.y21_c00343{bottom:834.321000px;}
.y22_c00343{bottom:834.630000px;}
.y23_c00343{bottom:835.045500px;}
.y10_c00343{bottom:869.541000px;}
.y11_c00343{bottom:870.538500px;}
.y12_c00343{bottom:871.080000px;}
.y13_c00343{bottom:871.345500px;}
.y14_c00343{bottom:871.698000px;}
.y15_c00343{bottom:872.667000px;}
.y16_c00343{bottom:872.965500px;}
.y17_c00343{bottom:873.538500px;}
.y18_c00343{bottom:873.796500px;}
.y19_c00343{bottom:874.480500px;}
.y4_c00343{bottom:904.677000px;}
.y5_c00343{bottom:905.040000px;}
.y6_c00343{bottom:905.193000px;}
.y7_c00343{bottom:905.653500px;}
.y8_c00343{bottom:905.794500px;}
.y9_c00343{bottom:906.520500px;}
.ya_c00343{bottom:906.648000px;}
.yb_c00343{bottom:907.306500px;}
.yc_c00343{bottom:907.809000px;}
.yd_c00343{bottom:908.028000px;}
.ye_c00343{bottom:908.287500px;}
.yf_c00343{bottom:908.688000px;}
.y3_c00343{bottom:937.963500px;}
.y2_c00343{bottom:1009.455000px;}
.y1_c00343{bottom:1048.485000px;}
.h7_c00343{height:18.000000px;}
.h6_c00343{height:72.000000px;}
.h2_c00343{height:90.000000px;}
.h4_c00343{height:96.000000px;}
.h5_c00343{height:102.000000px;}
.h3_c00343{height:120.000000px;}
.h1_c00343{height:1247.250000px;}
.h0_c00343{height:1247.400000px;}
.w0_c00343{width:915.000000px;}
.x0_c00343{left:0.000000px;}
.x48_c00343{left:48.331500px;}
.x24_c00343{left:52.749000px;}
.x1_c00343{left:68.850000px;}
.xd_c00343{left:69.930000px;}
.x1a_c00343{left:72.900000px;}
.xe_c00343{left:102.600000px;}
.x5d_c00343{left:107.730000px;}
.x25_c00343{left:113.209500px;}
.x5e_c00343{left:121.500000px;}
.x3d_c00343{left:128.935500px;}
.x26_c00343{left:138.594000px;}
.x2_c00343{left:147.150000px;}
.x49_c00343{left:150.931500px;}
.x1b_c00343{left:158.490000px;}
.x3e_c00343{left:161.046000px;}
.x53_c00343{left:163.350000px;}
.x5f_c00343{left:173.880000px;}
.xf_c00343{left:180.360000px;}
.x3_c00343{left:183.330000px;}
.x4a_c00343{left:186.031500px;}
.x37_c00343{left:195.121500px;}
.x54_c00343{left:196.830000px;}
.x10_c00343{left:202.770000px;}
.x3f_c00343{left:205.840500px;}
.x27_c00343{left:215.263500px;}
.x4b_c00343{left:225.991500px;}
.x40_c00343{left:229.357500px;}
.x28_c00343{left:238.768500px;}
.x60_c00343{left:250.290000px;}
.x1c_c00343{left:260.820000px;}
.x4_c00343{left:269.460000px;}
.x55_c00343{left:273.240000px;}
.x11_c00343{left:283.230000px;}
.x4c_c00343{left:284.851500px;}
.x1d_c00343{left:293.490000px;}
.x2f_c00343{left:306.027000px;}
.x5_c00343{left:314.010000px;}
.x56_c00343{left:316.170000px;}
.x41_c00343{left:317.643000px;}
.x38_c00343{left:327.684000px;}
.x30_c00343{left:339.213000px;}
.x42_c00343{left:349.506000px;}
.x29_c00343{left:359.766000px;}
.x57_c00343{left:365.310000px;}
.x12_c00343{left:369.360000px;}
.x61_c00343{left:373.410000px;}
.x6_c00343{left:378.540000px;}
.x1e_c00343{left:380.430000px;}
.x31_c00343{left:383.242500px;}
.x39_c00343{left:392.875500px;}
.x4d_c00343{left:399.871500px;}
.x13_c00343{left:404.460000px;}
.x62_c00343{left:405.540000px;}
.x1f_c00343{left:421.740000px;}
.x43_c00343{left:429.487500px;}
.x7_c00343{left:433.350000px;}
.x4e_c00343{left:436.591500px;}
.x58_c00343{left:447.930000px;}
.x63_c00343{left:449.010000px;}
.x20_c00343{left:455.760000px;}
.x14_c00343{left:464.130000px;}
.x4f_c00343{left:479.791500px;}
.x59_c00343{left:483.030000px;}
.x2a_c00343{left:490.945500px;}
.x15_c00343{left:493.830000px;}
.x32_c00343{left:504.408000px;}
.x50_c00343{left:511.111500px;}
.x3a_c00343{left:513.154500px;}
.x21_c00343{left:518.940000px;}
.x64_c00343{left:530.550000px;}
.x5a_c00343{left:532.170000px;}
.x16_c00343{left:533.790000px;}
.x8_c00343{left:538.380000px;}
.x33_c00343{left:541.737000px;}
.x22_c00343{left:543.780000px;}
.x44_c00343{left:561.463500px;}
.x65_c00343{left:568.890000px;}
.x51_c00343{left:573.481500px;}
.x2b_c00343{left:574.668000px;}
.x9_c00343{left:583.740000px;}
.x45_c00343{left:601.435500px;}
.x66_c00343{left:603.180000px;}
.x17_c00343{left:609.930000px;}
.x2c_c00343{left:611.092500px;}
.x34_c00343{left:613.293000px;}
.x23_c00343{left:620.460000px;}
.x5b_c00343{left:625.590000px;}
.xa_c00343{left:626.940000px;}
.x46_c00343{left:642.771000px;}
.x35_c00343{left:645.490500px;}
.x3b_c00343{left:646.870500px;}
.x52_c00343{left:653.131500px;}
.x2d_c00343{left:654.336000px;}
.x5c_c00343{left:657.180000px;}
.x18_c00343{left:664.740000px;}
.xb_c00343{left:675.000000px;}
.x3c_c00343{left:693.073500px;}
.x47_c00343{left:697.353000px;}
.xc_c00343{left:702.540000px;}
.x19_c00343{left:716.580000px;}
.x2e_c00343{left:721.033500px;}
.x36_c00343{left:731.032500px;}
@media print{
.v0_c00343{vertical-align:0.000000pt;}
.ls0_c00343{letter-spacing:0.000000pt;}
.ws0_c00343{word-spacing:0.000000pt;}
.fs5_c00343{font-size:16.000000pt;}
.fs4_c00343{font-size:64.000000pt;}
.fs0_c00343{font-size:80.000000pt;}
.fs2_c00343{font-size:85.333333pt;}
.fs3_c00343{font-size:90.666667pt;}
.fs1_c00343{font-size:106.666667pt;}
.y0_c00343{bottom:0.000000pt;}
.y35_c00343{bottom:562.560000pt;}
.y34_c00343{bottom:582.724000pt;}
.y33_c00343{bottom:612.812000pt;}
.y32_c00343{bottom:677.512000pt;}
.y24_c00343{bottom:709.201333pt;}
.y25_c00343{bottom:709.652000pt;}
.y26_c00343{bottom:709.909333pt;}
.y27_c00343{bottom:710.268000pt;}
.y28_c00343{bottom:710.456000pt;}
.y29_c00343{bottom:711.162667pt;}
.y2a_c00343{bottom:711.417333pt;}
.y2b_c00343{bottom:711.770667pt;}
.y2c_c00343{bottom:712.056000pt;}
.y2d_c00343{bottom:712.722667pt;}
.y2e_c00343{bottom:713.112000pt;}
.y2f_c00343{bottom:713.432000pt;}
.y30_c00343{bottom:713.762667pt;}
.y31_c00343{bottom:714.198667pt;}
.y1a_c00343{bottom:737.281333pt;}
.y1b_c00343{bottom:737.828000pt;}
.y1c_c00343{bottom:738.280000pt;}
.y1d_c00343{bottom:739.068000pt;}
.y1e_c00343{bottom:739.340000pt;}
.y1f_c00343{bottom:739.861333pt;}
.y20_c00343{bottom:740.824000pt;}
.y21_c00343{bottom:741.618667pt;}
.y22_c00343{bottom:741.893333pt;}
.y23_c00343{bottom:742.262667pt;}
.y10_c00343{bottom:772.925333pt;}
.y11_c00343{bottom:773.812000pt;}
.y12_c00343{bottom:774.293333pt;}
.y13_c00343{bottom:774.529333pt;}
.y14_c00343{bottom:774.842667pt;}
.y15_c00343{bottom:775.704000pt;}
.y16_c00343{bottom:775.969333pt;}
.y17_c00343{bottom:776.478667pt;}
.y18_c00343{bottom:776.708000pt;}
.y19_c00343{bottom:777.316000pt;}
.y4_c00343{bottom:804.157333pt;}
.y5_c00343{bottom:804.480000pt;}
.y6_c00343{bottom:804.616000pt;}
.y7_c00343{bottom:805.025333pt;}
.y8_c00343{bottom:805.150667pt;}
.y9_c00343{bottom:805.796000pt;}
.ya_c00343{bottom:805.909333pt;}
.yb_c00343{bottom:806.494667pt;}
.yc_c00343{bottom:806.941333pt;}
.yd_c00343{bottom:807.136000pt;}
.ye_c00343{bottom:807.366667pt;}
.yf_c00343{bottom:807.722667pt;}
.y3_c00343{bottom:833.745333pt;}
.y2_c00343{bottom:897.293333pt;}
.y1_c00343{bottom:931.986667pt;}
.h7_c00343{height:16.000000pt;}
.h6_c00343{height:64.000000pt;}
.h2_c00343{height:80.000000pt;}
.h4_c00343{height:85.333333pt;}
.h5_c00343{height:90.666667pt;}
.h3_c00343{height:106.666667pt;}
.h1_c00343{height:1108.666667pt;}
.h0_c00343{height:1108.800000pt;}
.w0_c00343{width:813.333333pt;}
.x0_c00343{left:0.000000pt;}
.x48_c00343{left:42.961333pt;}
.x24_c00343{left:46.888000pt;}
.x1_c00343{left:61.200000pt;}
.xd_c00343{left:62.160000pt;}
.x1a_c00343{left:64.800000pt;}
.xe_c00343{left:91.200000pt;}
.x5d_c00343{left:95.760000pt;}
.x25_c00343{left:100.630667pt;}
.x5e_c00343{left:108.000000pt;}
.x3d_c00343{left:114.609333pt;}
.x26_c00343{left:123.194667pt;}
.x2_c00343{left:130.800000pt;}
.x49_c00343{left:134.161333pt;}
.x1b_c00343{left:140.880000pt;}
.x3e_c00343{left:143.152000pt;}
.x53_c00343{left:145.200000pt;}
.x5f_c00343{left:154.560000pt;}
.xf_c00343{left:160.320000pt;}
.x3_c00343{left:162.960000pt;}
.x4a_c00343{left:165.361333pt;}
.x37_c00343{left:173.441333pt;}
.x54_c00343{left:174.960000pt;}
.x10_c00343{left:180.240000pt;}
.x3f_c00343{left:182.969333pt;}
.x27_c00343{left:191.345333pt;}
.x4b_c00343{left:200.881333pt;}
.x40_c00343{left:203.873333pt;}
.x28_c00343{left:212.238667pt;}
.x60_c00343{left:222.480000pt;}
.x1c_c00343{left:231.840000pt;}
.x4_c00343{left:239.520000pt;}
.x55_c00343{left:242.880000pt;}
.x11_c00343{left:251.760000pt;}
.x4c_c00343{left:253.201333pt;}
.x1d_c00343{left:260.880000pt;}
.x2f_c00343{left:272.024000pt;}
.x5_c00343{left:279.120000pt;}
.x56_c00343{left:281.040000pt;}
.x41_c00343{left:282.349333pt;}
.x38_c00343{left:291.274667pt;}
.x30_c00343{left:301.522667pt;}
.x42_c00343{left:310.672000pt;}
.x29_c00343{left:319.792000pt;}
.x57_c00343{left:324.720000pt;}
.x12_c00343{left:328.320000pt;}
.x61_c00343{left:331.920000pt;}
.x6_c00343{left:336.480000pt;}
.x1e_c00343{left:338.160000pt;}
.x31_c00343{left:340.660000pt;}
.x39_c00343{left:349.222667pt;}
.x4d_c00343{left:355.441333pt;}
.x13_c00343{left:359.520000pt;}
.x62_c00343{left:360.480000pt;}
.x1f_c00343{left:374.880000pt;}
.x43_c00343{left:381.766667pt;}
.x7_c00343{left:385.200000pt;}
.x4e_c00343{left:388.081333pt;}
.x58_c00343{left:398.160000pt;}
.x63_c00343{left:399.120000pt;}
.x20_c00343{left:405.120000pt;}
.x14_c00343{left:412.560000pt;}
.x4f_c00343{left:426.481333pt;}
.x59_c00343{left:429.360000pt;}
.x2a_c00343{left:436.396000pt;}
.x15_c00343{left:438.960000pt;}
.x32_c00343{left:448.362667pt;}
.x50_c00343{left:454.321333pt;}
.x3a_c00343{left:456.137333pt;}
.x21_c00343{left:461.280000pt;}
.x64_c00343{left:471.600000pt;}
.x5a_c00343{left:473.040000pt;}
.x16_c00343{left:474.480000pt;}
.x8_c00343{left:478.560000pt;}
.x33_c00343{left:481.544000pt;}
.x22_c00343{left:483.360000pt;}
.x44_c00343{left:499.078667pt;}
.x65_c00343{left:505.680000pt;}
.x51_c00343{left:509.761333pt;}
.x2b_c00343{left:510.816000pt;}
.x9_c00343{left:518.880000pt;}
.x45_c00343{left:534.609333pt;}
.x66_c00343{left:536.160000pt;}
.x17_c00343{left:542.160000pt;}
.x2c_c00343{left:543.193333pt;}
.x34_c00343{left:545.149333pt;}
.x23_c00343{left:551.520000pt;}
.x5b_c00343{left:556.080000pt;}
.xa_c00343{left:557.280000pt;}
.x46_c00343{left:571.352000pt;}
.x35_c00343{left:573.769333pt;}
.x3b_c00343{left:574.996000pt;}
.x52_c00343{left:580.561333pt;}
.x2d_c00343{left:581.632000pt;}
.x5c_c00343{left:584.160000pt;}
.x18_c00343{left:590.880000pt;}
.xb_c00343{left:600.000000pt;}
.x3c_c00343{left:616.065333pt;}
.x47_c00343{left:619.869333pt;}
.xc_c00343{left:624.480000pt;}
.x19_c00343{left:636.960000pt;}
.x2e_c00343{left:640.918667pt;}
.x36_c00343{left:649.806667pt;}
}





/* 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_c00344 {
    display:none;
  }
  .loading-indicator_c00344.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00344 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_c00344 { 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_c00344" -> "#page-container .classname_c00344")
 */
.pf_c00344 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00344 { /* 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_c00344.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00344 { /* 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_c00344 { /* 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_c00344 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00344 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00344 {overflow:visible;}
  }
}
.c_c00344 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00344 { /* 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_c00344:after { /* webkit #35443 */
  content: '';
}
.t_c00344:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00344 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 */
}
.__c00344 { /* 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_c00344 { /* info for Javascript */
  display:none;
}
.l_c00344 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00344 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00344 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00344: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_c00344 {
    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_c00344.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00344.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_c00344 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00344{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00344;src:url('chunks/assets/font_7c6b9abe6ee2a268480c528b.woff2')format("woff");}.ff1_c00344{font-family:ff1_c00344;line-height:1.000000;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;}
.m1a_c00344{transform:matrix(0.167975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167975,0.000000,0.000000,0.250000,0,0);}
.m18_c00344{transform:matrix(0.171780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171780,0.000000,0.000000,0.250000,0,0);}
.m14_c00344{transform:matrix(0.177340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177340,0.000000,0.000000,0.250000,0,0);}
.m5_c00344{transform:matrix(0.180214,-0.001442,0.002000,0.249992,0,0);-ms-transform:matrix(0.180214,-0.001442,0.002000,0.249992,0,0);-webkit-transform:matrix(0.180214,-0.001442,0.002000,0.249992,0,0);}
.m25_c00344{transform:matrix(0.190977,-0.001146,0.001500,0.249996,0,0);-ms-transform:matrix(0.190977,-0.001146,0.001500,0.249996,0,0);-webkit-transform:matrix(0.190977,-0.001146,0.001500,0.249996,0,0);}
.m2d_c00344{transform:matrix(0.195522,-0.004106,0.005249,0.249945,0,0);-ms-transform:matrix(0.195522,-0.004106,0.005249,0.249945,0,0);-webkit-transform:matrix(0.195522,-0.004106,0.005249,0.249945,0,0);}
.m17_c00344{transform:matrix(0.195700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195700,0.000000,0.000000,0.250000,0,0);}
.m10_c00344{transform:matrix(0.195848,-0.000979,0.001250,0.249997,0,0);-ms-transform:matrix(0.195848,-0.000979,0.001250,0.249997,0,0);-webkit-transform:matrix(0.195848,-0.000979,0.001250,0.249997,0,0);}
.m8_c00344{transform:matrix(0.196344,-0.001571,0.002000,0.249992,0,0);-ms-transform:matrix(0.196344,-0.001571,0.002000,0.249992,0,0);-webkit-transform:matrix(0.196344,-0.001571,0.002000,0.249992,0,0);}
.m2_c00344{transform:matrix(0.196489,-0.001572,0.002000,0.249992,0,0);-ms-transform:matrix(0.196489,-0.001572,0.002000,0.249992,0,0);-webkit-transform:matrix(0.196489,-0.001572,0.002000,0.249992,0,0);}
.m15_c00344{transform:matrix(0.198045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198045,0.000000,0.000000,0.250000,0,0);}
.m9_c00344{transform:matrix(0.198879,-0.001591,0.002000,0.249992,0,0);-ms-transform:matrix(0.198879,-0.001591,0.002000,0.249992,0,0);-webkit-transform:matrix(0.198879,-0.001591,0.002000,0.249992,0,0);}
.m19_c00344{transform:matrix(0.199075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199075,0.000000,0.000000,0.250000,0,0);}
.m16_c00344{transform:matrix(0.199585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199585,0.000000,0.000000,0.250000,0,0);}
.m1b_c00344{transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200935,0.000000,0.000000,0.250000,0,0);}
.m2b_c00344{transform:matrix(0.205800,-0.004322,0.005249,0.249945,0,0);-ms-transform:matrix(0.205800,-0.004322,0.005249,0.249945,0,0);-webkit-transform:matrix(0.205800,-0.004322,0.005249,0.249945,0,0);}
.m1d_c00344{transform:matrix(0.206525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206525,0.000000,0.000000,0.250000,0,0);}
.me_c00344{transform:matrix(0.206737,-0.001034,0.001250,0.249997,0,0);-ms-transform:matrix(0.206737,-0.001034,0.001250,0.249997,0,0);-webkit-transform:matrix(0.206737,-0.001034,0.001250,0.249997,0,0);}
.m3_c00344{transform:matrix(0.207073,-0.001657,0.002000,0.249992,0,0);-ms-transform:matrix(0.207073,-0.001657,0.002000,0.249992,0,0);-webkit-transform:matrix(0.207073,-0.001657,0.002000,0.249992,0,0);}
.m1c_c00344{transform:matrix(0.207230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207230,0.000000,0.000000,0.250000,0,0);}
.m22_c00344{transform:matrix(0.207391,-0.001244,0.001500,0.249996,0,0);-ms-transform:matrix(0.207391,-0.001244,0.001500,0.249996,0,0);-webkit-transform:matrix(0.207391,-0.001244,0.001500,0.249996,0,0);}
.m27_c00344{transform:matrix(0.208011,-0.001248,0.001500,0.249996,0,0);-ms-transform:matrix(0.208011,-0.001248,0.001500,0.249996,0,0);-webkit-transform:matrix(0.208011,-0.001248,0.001500,0.249996,0,0);}
.m4_c00344{transform:matrix(0.210643,-0.001685,0.002000,0.249992,0,0);-ms-transform:matrix(0.210643,-0.001685,0.002000,0.249992,0,0);-webkit-transform:matrix(0.210643,-0.001685,0.002000,0.249992,0,0);}
.m1f_c00344{transform:matrix(0.211816,-0.001271,0.001500,0.249996,0,0);-ms-transform:matrix(0.211816,-0.001271,0.001500,0.249996,0,0);-webkit-transform:matrix(0.211816,-0.001271,0.001500,0.249996,0,0);}
.m1e_c00344{transform:matrix(0.213035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213035,0.000000,0.000000,0.250000,0,0);}
.m6_c00344{transform:matrix(0.213203,-0.001706,0.002000,0.249992,0,0);-ms-transform:matrix(0.213203,-0.001706,0.002000,0.249992,0,0);-webkit-transform:matrix(0.213203,-0.001706,0.002000,0.249992,0,0);}
.m7_c00344{transform:matrix(0.217863,-0.001743,0.002000,0.249992,0,0);-ms-transform:matrix(0.217863,-0.001743,0.002000,0.249992,0,0);-webkit-transform:matrix(0.217863,-0.001743,0.002000,0.249992,0,0);}
.m2a_c00344{transform:matrix(0.221096,-0.004643,0.005249,0.249945,0,0);-ms-transform:matrix(0.221096,-0.004643,0.005249,0.249945,0,0);-webkit-transform:matrix(0.221096,-0.004643,0.005249,0.249945,0,0);}
.m28_c00344{transform:matrix(0.224806,-0.001349,0.001500,0.249996,0,0);-ms-transform:matrix(0.224806,-0.001349,0.001500,0.249996,0,0);-webkit-transform:matrix(0.224806,-0.001349,0.001500,0.249996,0,0);}
.m2c_c00344{transform:matrix(0.225250,-0.004730,0.005249,0.249945,0,0);-ms-transform:matrix(0.225250,-0.004730,0.005249,0.249945,0,0);-webkit-transform:matrix(0.225250,-0.004730,0.005249,0.249945,0,0);}
.mf_c00344{transform:matrix(0.225742,-0.001129,0.001250,0.249997,0,0);-ms-transform:matrix(0.225742,-0.001129,0.001250,0.249997,0,0);-webkit-transform:matrix(0.225742,-0.001129,0.001250,0.249997,0,0);}
.m2e_c00344{transform:matrix(0.227160,-0.004770,0.005249,0.249945,0,0);-ms-transform:matrix(0.227160,-0.004770,0.005249,0.249945,0,0);-webkit-transform:matrix(0.227160,-0.004770,0.005249,0.249945,0,0);}
.mc_c00344{transform:matrix(0.229532,-0.001148,0.001250,0.249997,0,0);-ms-transform:matrix(0.229532,-0.001148,0.001250,0.249997,0,0);-webkit-transform:matrix(0.229532,-0.001148,0.001250,0.249997,0,0);}
.m29_c00344{transform:matrix(0.229796,-0.001379,0.001500,0.249996,0,0);-ms-transform:matrix(0.229796,-0.001379,0.001500,0.249996,0,0);-webkit-transform:matrix(0.229796,-0.001379,0.001500,0.249996,0,0);}
.m11_c00344{transform:matrix(0.244942,-0.001225,0.001250,0.249997,0,0);-ms-transform:matrix(0.244942,-0.001225,0.001250,0.249997,0,0);-webkit-transform:matrix(0.244942,-0.001225,0.001250,0.249997,0,0);}
.m20_c00344{transform:matrix(0.246736,-0.001480,0.001500,0.249996,0,0);-ms-transform:matrix(0.246736,-0.001480,0.001500,0.249996,0,0);-webkit-transform:matrix(0.246736,-0.001480,0.001500,0.249996,0,0);}
.m23_c00344{transform:matrix(0.247631,-0.001486,0.001500,0.249996,0,0);-ms-transform:matrix(0.247631,-0.001486,0.001500,0.249996,0,0);-webkit-transform:matrix(0.247631,-0.001486,0.001500,0.249996,0,0);}
.m26_c00344{transform:matrix(0.247911,-0.001487,0.001500,0.249996,0,0);-ms-transform:matrix(0.247911,-0.001487,0.001500,0.249996,0,0);-webkit-transform:matrix(0.247911,-0.001487,0.001500,0.249996,0,0);}
.ma_c00344{transform:matrix(0.249487,-0.001247,0.001250,0.249997,0,0);-ms-transform:matrix(0.249487,-0.001247,0.001250,0.249997,0,0);-webkit-transform:matrix(0.249487,-0.001247,0.001250,0.249997,0,0);}
.md_c00344{transform:matrix(0.252937,-0.001265,0.001250,0.249997,0,0);-ms-transform:matrix(0.252937,-0.001265,0.001250,0.249997,0,0);-webkit-transform:matrix(0.252937,-0.001265,0.001250,0.249997,0,0);}
.m0_c00344{transform:matrix(0.254180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254180,0.000000,0.000000,0.250000,0,0);}
.mb_c00344{transform:matrix(0.254407,-0.001272,0.001250,0.249997,0,0);-ms-transform:matrix(0.254407,-0.001272,0.001250,0.249997,0,0);-webkit-transform:matrix(0.254407,-0.001272,0.001250,0.249997,0,0);}
.m24_c00344{transform:matrix(0.255170,-0.001531,0.001500,0.249996,0,0);-ms-transform:matrix(0.255170,-0.001531,0.001500,0.249996,0,0);-webkit-transform:matrix(0.255170,-0.001531,0.001500,0.249996,0,0);}
.m21_c00344{transform:matrix(0.259745,-0.001558,0.001500,0.249996,0,0);-ms-transform:matrix(0.259745,-0.001558,0.001500,0.249996,0,0);-webkit-transform:matrix(0.259745,-0.001558,0.001500,0.249996,0,0);}
.m1_c00344{transform:matrix(0.347740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347740,0.000000,0.000000,0.250000,0,0);}
.m12_c00344{transform:matrix(0.376800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376800,0.000000,0.000000,0.250000,0,0);}
.m13_c00344{transform:matrix(0.460475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460475,0.000000,0.000000,0.250000,0,0);}
.v0_c00344{vertical-align:0.000000px;}
.ls0_c00344{letter-spacing:0.000000px;}
.sc__c00344{text-shadow:none;}
.sc0_c00344{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__c00344{-webkit-text-stroke:0px transparent;}
.sc0_c00344{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00344{word-spacing:0.000000px;}
.fc0_c00344{color:transparent;}
.fs4_c00344{font-size:42.000000px;}
.fs0_c00344{font-size:78.000000px;}
.fs3_c00344{font-size:78.000975px;}
.fs6_c00344{font-size:78.001404px;}
.fs1_c00344{font-size:84.000000px;}
.fs7_c00344{font-size:84.018520px;}
.fs5_c00344{font-size:96.000000px;}
.fs2_c00344{font-size:96.003072px;}
.y0_c00344{bottom:0.000000px;}
.y29_c00344{bottom:940.416000px;}
.y2a_c00344{bottom:941.805559px;}
.y2b_c00344{bottom:942.714240px;}
.y2c_c00344{bottom:944.109217px;}
.y2d_c00344{bottom:944.802343px;}
.y1e_c00344{bottom:979.290000px;}
.y1f_c00344{bottom:979.542729px;}
.y20_c00344{bottom:979.675803px;}
.y21_c00344{bottom:980.340003px;}
.y22_c00344{bottom:980.540901px;}
.y23_c00344{bottom:981.150165px;}
.y24_c00344{bottom:981.869166px;}
.y25_c00344{bottom:982.000530px;}
.y26_c00344{bottom:982.473525px;}
.y27_c00344{bottom:982.671174px;}
.y28_c00344{bottom:982.872045px;}
.y14_c00344{bottom:1005.214500px;}
.y15_c00344{bottom:1006.576500px;}
.y16_c00344{bottom:1008.529500px;}
.y17_c00344{bottom:1009.530000px;}
.y18_c00344{bottom:1010.341500px;}
.y19_c00344{bottom:1011.726000px;}
.y1a_c00344{bottom:1012.303500px;}
.y1b_c00344{bottom:1013.736000px;}
.y1c_c00344{bottom:1015.734000px;}
.y1d_c00344{bottom:1016.107500px;}
.y13_c00344{bottom:1050.999000px;}
.yb_c00344{bottom:1085.670000px;}
.yc_c00344{bottom:1086.215453px;}
.yd_c00344{bottom:1086.818925px;}
.ye_c00344{bottom:1087.041668px;}
.yf_c00344{bottom:1087.542503px;}
.y10_c00344{bottom:1087.704518px;}
.y11_c00344{bottom:1088.212118px;}
.y12_c00344{bottom:1088.658938px;}
.y3_c00344{bottom:1119.150000px;}
.y4_c00344{bottom:1119.757644px;}
.y5_c00344{bottom:1120.612788px;}
.y6_c00344{bottom:1121.511336px;}
.y7_c00344{bottom:1121.863440px;}
.y8_c00344{bottom:1123.014636px;}
.y9_c00344{bottom:1124.353548px;}
.ya_c00344{bottom:1124.532876px;}
.y2_c00344{bottom:1196.922000px;}
.y1_c00344{bottom:1232.820000px;}
.h6_c00344{height:42.000000px;}
.h2_c00344{height:78.000000px;}
.h5_c00344{height:78.000975px;}
.h8_c00344{height:78.001404px;}
.h3_c00344{height:84.000000px;}
.h9_c00344{height:84.018520px;}
.h7_c00344{height:96.000000px;}
.h4_c00344{height:96.003072px;}
.h1_c00344{height:1247.250000px;}
.h0_c00344{height:1247.400000px;}
.w0_c00344{width:915.000000px;}
.x0_c00344{left:0.000000px;}
.x2_c00344{left:135.087000px;}
.x12_c00344{left:136.120500px;}
.x3_c00344{left:211.042500px;}
.x1a_c00344{left:212.545500px;}
.x10_c00344{left:243.540000px;}
.x1b_c00344{left:254.667000px;}
.x1c_c00344{left:276.846000px;}
.x23_c00344{left:278.673000px;}
.x4_c00344{left:317.935500px;}
.xa_c00344{left:320.301000px;}
.x24_c00344{left:321.943500px;}
.x11_c00344{left:333.450000px;}
.x13_c00344{left:375.958500px;}
.x1d_c00344{left:387.546000px;}
.x1_c00344{left:399.330000px;}
.x14_c00344{left:421.048500px;}
.x5_c00344{left:430.254000px;}
.xb_c00344{left:440.995500px;}
.x6_c00344{left:474.267000px;}
.xc_c00344{left:485.544000px;}
.x15_c00344{left:497.968500px;}
.x1e_c00344{left:522.573000px;}
.x16_c00344{left:530.088000px;}
.xd_c00344{left:585.711000px;}
.x17_c00344{left:609.712500px;}
.x7_c00344{left:618.166500px;}
.x1f_c00344{left:642.406500px;}
.x20_c00344{left:664.300500px;}
.xe_c00344{left:719.634000px;}
.x18_c00344{left:720.720000px;}
.x19_c00344{left:741.435000px;}
.x21_c00344{left:743.133000px;}
.x22_c00344{left:776.074500px;}
.x8_c00344{left:785.530500px;}
.x9_c00344{left:807.946500px;}
.xf_c00344{left:808.998000px;}
@media print{
.v0_c00344{vertical-align:0.000000pt;}
.ls0_c00344{letter-spacing:0.000000pt;}
.ws0_c00344{word-spacing:0.000000pt;}
.fs4_c00344{font-size:37.333333pt;}
.fs0_c00344{font-size:69.333333pt;}
.fs3_c00344{font-size:69.334200pt;}
.fs6_c00344{font-size:69.334581pt;}
.fs1_c00344{font-size:74.666667pt;}
.fs7_c00344{font-size:74.683129pt;}
.fs5_c00344{font-size:85.333333pt;}
.fs2_c00344{font-size:85.336064pt;}
.y0_c00344{bottom:0.000000pt;}
.y29_c00344{bottom:835.925333pt;}
.y2a_c00344{bottom:837.160497pt;}
.y2b_c00344{bottom:837.968213pt;}
.y2c_c00344{bottom:839.208193pt;}
.y2d_c00344{bottom:839.824305pt;}
.y1e_c00344{bottom:870.480000pt;}
.y1f_c00344{bottom:870.704648pt;}
.y20_c00344{bottom:870.822936pt;}
.y21_c00344{bottom:871.413336pt;}
.y22_c00344{bottom:871.591912pt;}
.y23_c00344{bottom:872.133480pt;}
.y24_c00344{bottom:872.772592pt;}
.y25_c00344{bottom:872.889360pt;}
.y26_c00344{bottom:873.309800pt;}
.y27_c00344{bottom:873.485488pt;}
.y28_c00344{bottom:873.664040pt;}
.y14_c00344{bottom:893.524000pt;}
.y15_c00344{bottom:894.734667pt;}
.y16_c00344{bottom:896.470667pt;}
.y17_c00344{bottom:897.360000pt;}
.y18_c00344{bottom:898.081333pt;}
.y19_c00344{bottom:899.312000pt;}
.y1a_c00344{bottom:899.825333pt;}
.y1b_c00344{bottom:901.098667pt;}
.y1c_c00344{bottom:902.874667pt;}
.y1d_c00344{bottom:903.206667pt;}
.y13_c00344{bottom:934.221333pt;}
.yb_c00344{bottom:965.040000pt;}
.yc_c00344{bottom:965.524847pt;}
.yd_c00344{bottom:966.061267pt;}
.ye_c00344{bottom:966.259260pt;}
.yf_c00344{bottom:966.704447pt;}
.y10_c00344{bottom:966.848460pt;}
.y11_c00344{bottom:967.299660pt;}
.y12_c00344{bottom:967.696833pt;}
.y3_c00344{bottom:994.800000pt;}
.y4_c00344{bottom:995.340128pt;}
.y5_c00344{bottom:996.100256pt;}
.y6_c00344{bottom:996.898965pt;}
.y7_c00344{bottom:997.211947pt;}
.y8_c00344{bottom:998.235232pt;}
.y9_c00344{bottom:999.425376pt;}
.ya_c00344{bottom:999.584779pt;}
.y2_c00344{bottom:1063.930667pt;}
.y1_c00344{bottom:1095.840000pt;}
.h6_c00344{height:37.333333pt;}
.h2_c00344{height:69.333333pt;}
.h5_c00344{height:69.334200pt;}
.h8_c00344{height:69.334581pt;}
.h3_c00344{height:74.666667pt;}
.h9_c00344{height:74.683129pt;}
.h7_c00344{height:85.333333pt;}
.h4_c00344{height:85.336064pt;}
.h1_c00344{height:1108.666667pt;}
.h0_c00344{height:1108.800000pt;}
.w0_c00344{width:813.333333pt;}
.x0_c00344{left:0.000000pt;}
.x2_c00344{left:120.077333pt;}
.x12_c00344{left:120.996000pt;}
.x3_c00344{left:187.593333pt;}
.x1a_c00344{left:188.929333pt;}
.x10_c00344{left:216.480000pt;}
.x1b_c00344{left:226.370667pt;}
.x1c_c00344{left:246.085333pt;}
.x23_c00344{left:247.709333pt;}
.x4_c00344{left:282.609333pt;}
.xa_c00344{left:284.712000pt;}
.x24_c00344{left:286.172000pt;}
.x11_c00344{left:296.400000pt;}
.x13_c00344{left:334.185333pt;}
.x1d_c00344{left:344.485333pt;}
.x1_c00344{left:354.960000pt;}
.x14_c00344{left:374.265333pt;}
.x5_c00344{left:382.448000pt;}
.xb_c00344{left:391.996000pt;}
.x6_c00344{left:421.570667pt;}
.xc_c00344{left:431.594667pt;}
.x15_c00344{left:442.638667pt;}
.x1e_c00344{left:464.509333pt;}
.x16_c00344{left:471.189333pt;}
.xd_c00344{left:520.632000pt;}
.x17_c00344{left:541.966667pt;}
.x7_c00344{left:549.481333pt;}
.x1f_c00344{left:571.028000pt;}
.x20_c00344{left:590.489333pt;}
.xe_c00344{left:639.674667pt;}
.x18_c00344{left:640.640000pt;}
.x19_c00344{left:659.053333pt;}
.x21_c00344{left:660.562667pt;}
.x22_c00344{left:689.844000pt;}
.x8_c00344{left:698.249333pt;}
.x9_c00344{left:718.174667pt;}
.xf_c00344{left:719.109333pt;}
}





/* 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_c00345 {
    display:none;
  }
  .loading-indicator_c00345.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00345 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_c00345 { 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_c00345" -> "#page-container .classname_c00345")
 */
.pf_c00345 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00345 { /* 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_c00345.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00345 { /* 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_c00345 { /* 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_c00345 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00345 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00345 {overflow:visible;}
  }
}
.c_c00345 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00345 { /* 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_c00345:after { /* webkit #35443 */
  content: '';
}
.t_c00345:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00345 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 */
}
.__c00345 { /* 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_c00345 { /* info for Javascript */
  display:none;
}
.l_c00345 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00345 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00345 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00345: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_c00345 {
    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_c00345.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00345.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_c00345 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00345{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00345;src:url('chunks/assets/font_bfe6362fd3009c591583128f.woff2')format("woff");}.ff1_c00345{font-family:ff1_c00345;line-height:1.000000;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;}
.m1_c00345{transform:matrix(0.218485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218485,0.000000,0.000000,0.250000,0,0);}
.m3_c00345{transform:matrix(0.224620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224620,0.000000,0.000000,0.250000,0,0);}
.m0_c00345{transform:matrix(0.228965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228965,0.000000,0.000000,0.250000,0,0);}
.m4_c00345{transform:matrix(0.237940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237940,0.000000,0.000000,0.250000,0,0);}
.m2_c00345{transform:matrix(0.238350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238350,0.000000,0.000000,0.250000,0,0);}
.v0_c00345{vertical-align:0.000000px;}
.ls0_c00345{letter-spacing:0.000000px;}
.sc__c00345{text-shadow:none;}
.sc0_c00345{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__c00345{-webkit-text-stroke:0px transparent;}
.sc0_c00345{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00345{word-spacing:0.000000px;}
.fc0_c00345{color:transparent;}
.fs0_c00345{font-size:18.000000px;}
.fs1_c00345{font-size:102.000000px;}
.y0_c00345{bottom:0.000000px;}
.y2_c00345{bottom:944.574000px;}
.y1_c00345{bottom:970.110000px;}
.h2_c00345{height:18.000000px;}
.h3_c00345{height:102.000000px;}
.h1_c00345{height:1247.250000px;}
.h0_c00345{height:1247.400000px;}
.w0_c00345{width:915.000000px;}
.x0_c00345{left:0.000000px;}
.x2_c00345{left:485.730000px;}
.x3_c00345{left:526.230000px;}
.x1_c00345{left:577.530000px;}
.x4_c00345{left:593.460000px;}
.x5_c00345{left:633.420000px;}
@media print{
.v0_c00345{vertical-align:0.000000pt;}
.ls0_c00345{letter-spacing:0.000000pt;}
.ws0_c00345{word-spacing:0.000000pt;}
.fs0_c00345{font-size:16.000000pt;}
.fs1_c00345{font-size:90.666667pt;}
.y0_c00345{bottom:0.000000pt;}
.y2_c00345{bottom:839.621333pt;}
.y1_c00345{bottom:862.320000pt;}
.h2_c00345{height:16.000000pt;}
.h3_c00345{height:90.666667pt;}
.h1_c00345{height:1108.666667pt;}
.h0_c00345{height:1108.800000pt;}
.w0_c00345{width:813.333333pt;}
.x0_c00345{left:0.000000pt;}
.x2_c00345{left:431.760000pt;}
.x3_c00345{left:467.760000pt;}
.x1_c00345{left:513.360000pt;}
.x4_c00345{left:527.520000pt;}
.x5_c00345{left:563.040000pt;}
}





/* 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_c00346 {
    display:none;
  }
  .loading-indicator_c00346.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00346 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_c00346 { 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_c00346" -> "#page-container .classname_c00346")
 */
.pf_c00346 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00346 { /* 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_c00346.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00346 { /* 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_c00346 { /* 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_c00346 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00346 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00346 {overflow:visible;}
  }
}
.c_c00346 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00346 { /* 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_c00346:after { /* webkit #35443 */
  content: '';
}
.t_c00346:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00346 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 */
}
.__c00346 { /* 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_c00346 { /* info for Javascript */
  display:none;
}
.l_c00346 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00346 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00346 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00346: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_c00346 {
    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_c00346.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00346.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_c00346 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00346{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00346;src:url('chunks/assets/font_b11a17f404e7258299fdf971.woff2')format("woff");}.ff1_c00346{font-family:ff1_c00346;line-height:1.000000;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;}
.m112_c00346{transform:matrix(0.025155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.025155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.025155,0.000000,0.000000,0.250000,0,0);}
.m62_c00346{transform:matrix(0.108820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108820,0.000000,0.000000,0.250000,0,0);}
.ma1_c00346{transform:matrix(0.142450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142450,0.000000,0.000000,0.250000,0,0);}
.ma2_c00346{transform:matrix(0.142695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142695,0.000000,0.000000,0.250000,0,0);}
.ma3_c00346{transform:matrix(0.146215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146215,0.000000,0.000000,0.250000,0,0);}
.m137_c00346{transform:matrix(0.149472,-0.001943,0.003250,0.249979,0,0);-ms-transform:matrix(0.149472,-0.001943,0.003250,0.249979,0,0);-webkit-transform:matrix(0.149472,-0.001943,0.003250,0.249979,0,0);}
.m41_c00346{transform:matrix(0.156470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156470,0.000000,0.000000,0.250000,0,0);}
.m141_c00346{transform:matrix(0.157035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157035,0.000000,0.000000,0.250000,0,0);}
.m57_c00346{transform:matrix(0.157150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157150,0.000000,0.000000,0.250000,0,0);}
.m59_c00346{transform:matrix(0.158095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158095,0.000000,0.000000,0.250000,0,0);}
.m51_c00346{transform:matrix(0.158600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158600,0.000000,0.000000,0.250000,0,0);}
.m5c_c00346{transform:matrix(0.159070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159070,0.000000,0.000000,0.250000,0,0);}
.m56_c00346{transform:matrix(0.159800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159800,0.000000,0.000000,0.250000,0,0);}
.ma6_c00346{transform:matrix(0.160540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160540,0.000000,0.000000,0.250000,0,0);}
.m148_c00346{transform:matrix(0.161016,-0.003542,0.005499,0.249940,0,0);-ms-transform:matrix(0.161016,-0.003542,0.005499,0.249940,0,0);-webkit-transform:matrix(0.161016,-0.003542,0.005499,0.249940,0,0);}
.m91_c00346{transform:matrix(0.161030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161030,0.000000,0.000000,0.250000,0,0);}
.m5f_c00346{transform:matrix(0.161785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161785,0.000000,0.000000,0.250000,0,0);}
.m149_c00346{transform:matrix(0.162811,-0.003582,0.005499,0.249940,0,0);-ms-transform:matrix(0.162811,-0.003582,0.005499,0.249940,0,0);-webkit-transform:matrix(0.162811,-0.003582,0.005499,0.249940,0,0);}
.m4c_c00346{transform:matrix(0.164040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164040,0.000000,0.000000,0.250000,0,0);}
.m22_c00346{transform:matrix(0.165905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165905,0.000000,0.000000,0.250000,0,0);}
.m61_c00346{transform:matrix(0.166900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166900,0.000000,0.000000,0.250000,0,0);}
.m1a_c00346{transform:matrix(0.167100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167100,0.000000,0.000000,0.250000,0,0);}
.m14d_c00346{transform:matrix(0.167300,-0.003681,0.005499,0.249940,0,0);-ms-transform:matrix(0.167300,-0.003681,0.005499,0.249940,0,0);-webkit-transform:matrix(0.167300,-0.003681,0.005499,0.249940,0,0);}
.maa_c00346{transform:matrix(0.169520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169520,0.000000,0.000000,0.250000,0,0);}
.m96_c00346{transform:matrix(0.170055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170055,0.000000,0.000000,0.250000,0,0);}
.m135_c00346{transform:matrix(0.170651,-0.002218,0.003250,0.249979,0,0);-ms-transform:matrix(0.170651,-0.002218,0.003250,0.249979,0,0);-webkit-transform:matrix(0.170651,-0.002218,0.003250,0.249979,0,0);}
.m4d_c00346{transform:matrix(0.171440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171440,0.000000,0.000000,0.250000,0,0);}
.m1c_c00346{transform:matrix(0.171610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171610,0.000000,0.000000,0.250000,0,0);}
.m9b_c00346{transform:matrix(0.172165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172165,0.000000,0.000000,0.250000,0,0);}
.mab_c00346{transform:matrix(0.172300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172300,0.000000,0.000000,0.250000,0,0);}
.m139_c00346{transform:matrix(0.172650,-0.002244,0.003250,0.249979,0,0);-ms-transform:matrix(0.172650,-0.002244,0.003250,0.249979,0,0);-webkit-transform:matrix(0.172650,-0.002244,0.003250,0.249979,0,0);}
.m14e_c00346{transform:matrix(0.172738,-0.003800,0.005499,0.249940,0,0);-ms-transform:matrix(0.172738,-0.003800,0.005499,0.249940,0,0);-webkit-transform:matrix(0.172738,-0.003800,0.005499,0.249940,0,0);}
.m4e_c00346{transform:matrix(0.173775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173775,0.000000,0.000000,0.250000,0,0);}
.ma5_c00346{transform:matrix(0.174565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174565,0.000000,0.000000,0.250000,0,0);}
.ma0_c00346{transform:matrix(0.175810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175810,0.000000,0.000000,0.250000,0,0);}
.m5b_c00346{transform:matrix(0.176940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176940,0.000000,0.000000,0.250000,0,0);}
.me6_c00346{transform:matrix(0.177334,-0.001419,0.002000,0.249992,0,0);-ms-transform:matrix(0.177334,-0.001419,0.002000,0.249992,0,0);-webkit-transform:matrix(0.177334,-0.001419,0.002000,0.249992,0,0);}
.m20_c00346{transform:matrix(0.177890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177890,0.000000,0.000000,0.250000,0,0);}
.m26_c00346{transform:matrix(0.179470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179470,0.000000,0.000000,0.250000,0,0);}
.m70_c00346{transform:matrix(0.179780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179780,0.000000,0.000000,0.250000,0,0);}
.m8d_c00346{transform:matrix(0.179930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179930,0.000000,0.000000,0.250000,0,0);}
.m97_c00346{transform:matrix(0.180080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180080,0.000000,0.000000,0.250000,0,0);}
.m14b_c00346{transform:matrix(0.180616,-0.003974,0.005499,0.249940,0,0);-ms-transform:matrix(0.180616,-0.003974,0.005499,0.249940,0,0);-webkit-transform:matrix(0.180616,-0.003974,0.005499,0.249940,0,0);}
.md4_c00346{transform:matrix(0.181395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181395,0.000000,0.000000,0.250000,0,0);}
.m98_c00346{transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);}
.m87_c00346{transform:matrix(0.181575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181575,0.000000,0.000000,0.250000,0,0);}
.m9f_c00346{transform:matrix(0.181885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181885,0.000000,0.000000,0.250000,0,0);}
.m9e_c00346{transform:matrix(0.182060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182060,0.000000,0.000000,0.250000,0,0);}
.m25_c00346{transform:matrix(0.182065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182065,0.000000,0.000000,0.250000,0,0);}
.m9a_c00346{transform:matrix(0.182625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182625,0.000000,0.000000,0.250000,0,0);}
.m8a_c00346{transform:matrix(0.182810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182810,0.000000,0.000000,0.250000,0,0);}
.m60_c00346{transform:matrix(0.183840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183840,0.000000,0.000000,0.250000,0,0);}
.m50_c00346{transform:matrix(0.184045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184045,0.000000,0.000000,0.250000,0,0);}
.me3_c00346{transform:matrix(0.184109,-0.001473,0.002000,0.249992,0,0);-ms-transform:matrix(0.184109,-0.001473,0.002000,0.249992,0,0);-webkit-transform:matrix(0.184109,-0.001473,0.002000,0.249992,0,0);}
.m99_c00346{transform:matrix(0.184215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184215,0.000000,0.000000,0.250000,0,0);}
.m58_c00346{transform:matrix(0.184590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184590,0.000000,0.000000,0.250000,0,0);}
.ma9_c00346{transform:matrix(0.184715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184715,0.000000,0.000000,0.250000,0,0);}
.m54_c00346{transform:matrix(0.185030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185030,0.000000,0.000000,0.250000,0,0);}
.m131_c00346{transform:matrix(0.185749,-0.002415,0.003250,0.249979,0,0);-ms-transform:matrix(0.185749,-0.002415,0.003250,0.249979,0,0);-webkit-transform:matrix(0.185749,-0.002415,0.003250,0.249979,0,0);}
.m13a_c00346{transform:matrix(0.185799,-0.002415,0.003250,0.249979,0,0);-ms-transform:matrix(0.185799,-0.002415,0.003250,0.249979,0,0);-webkit-transform:matrix(0.185799,-0.002415,0.003250,0.249979,0,0);}
.m10f_c00346{transform:matrix(0.186280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186280,0.000000,0.000000,0.250000,0,0);}
.m1d_c00346{transform:matrix(0.186795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186795,0.000000,0.000000,0.250000,0,0);}
.m5d_c00346{transform:matrix(0.187695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187695,0.000000,0.000000,0.250000,0,0);}
.mfb_c00346{transform:matrix(0.187834,0.001503,-0.002000,0.249992,0,0);-ms-transform:matrix(0.187834,0.001503,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.187834,0.001503,-0.002000,0.249992,0,0);}
.m89_c00346{transform:matrix(0.187995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187995,0.000000,0.000000,0.250000,0,0);}
.m14a_c00346{transform:matrix(0.188939,-0.004157,0.005499,0.249940,0,0);-ms-transform:matrix(0.188939,-0.004157,0.005499,0.249940,0,0);-webkit-transform:matrix(0.188939,-0.004157,0.005499,0.249940,0,0);}
.m8b_c00346{transform:matrix(0.189635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189635,0.000000,0.000000,0.250000,0,0);}
.m1e_c00346{transform:matrix(0.189775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189775,0.000000,0.000000,0.250000,0,0);}
.m53_c00346{transform:matrix(0.190135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190135,0.000000,0.000000,0.250000,0,0);}
.m108_c00346{transform:matrix(0.190980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190980,0.000000,0.000000,0.250000,0,0);}
.m34_c00346{transform:matrix(0.191375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191375,0.000000,0.000000,0.250000,0,0);}
.m8f_c00346{transform:matrix(0.191580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191580,0.000000,0.000000,0.250000,0,0);}
.m133_c00346{transform:matrix(0.191934,-0.002495,0.003250,0.249979,0,0);-ms-transform:matrix(0.191934,-0.002495,0.003250,0.249979,0,0);-webkit-transform:matrix(0.191934,-0.002495,0.003250,0.249979,0,0);}
.m69_c00346{transform:matrix(0.191975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191975,0.000000,0.000000,0.250000,0,0);}
.m55_c00346{transform:matrix(0.192610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192610,0.000000,0.000000,0.250000,0,0);}
.m14f_c00346{transform:matrix(0.192773,-0.004241,0.005499,0.249940,0,0);-ms-transform:matrix(0.192773,-0.004241,0.005499,0.249940,0,0);-webkit-transform:matrix(0.192773,-0.004241,0.005499,0.249940,0,0);}
.m134_c00346{transform:matrix(0.192994,-0.002509,0.003250,0.249979,0,0);-ms-transform:matrix(0.192994,-0.002509,0.003250,0.249979,0,0);-webkit-transform:matrix(0.192994,-0.002509,0.003250,0.249979,0,0);}
.m100_c00346{transform:matrix(0.193149,0.001545,-0.002000,0.249992,0,0);-ms-transform:matrix(0.193149,0.001545,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.193149,0.001545,-0.002000,0.249992,0,0);}
.mdf_c00346{transform:matrix(0.193149,-0.001545,0.002000,0.249992,0,0);-ms-transform:matrix(0.193149,-0.001545,0.002000,0.249992,0,0);-webkit-transform:matrix(0.193149,-0.001545,0.002000,0.249992,0,0);}
.m52_c00346{transform:matrix(0.193340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193340,0.000000,0.000000,0.250000,0,0);}
.ma7_c00346{transform:matrix(0.193800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193800,0.000000,0.000000,0.250000,0,0);}
.ma4_c00346{transform:matrix(0.194280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194280,0.000000,0.000000,0.250000,0,0);}
.m6e_c00346{transform:matrix(0.194350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194350,0.000000,0.000000,0.250000,0,0);}
.m93_c00346{transform:matrix(0.194630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194630,0.000000,0.000000,0.250000,0,0);}
.m143_c00346{transform:matrix(0.194700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194700,0.000000,0.000000,0.250000,0,0);}
.mc5_c00346{transform:matrix(0.194825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194825,0.000000,0.000000,0.250000,0,0);}
.mb6_c00346{transform:matrix(0.194940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194940,0.000000,0.000000,0.250000,0,0);}
.m7a_c00346{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00346{transform:matrix(0.195365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195365,0.000000,0.000000,0.250000,0,0);}
.m14c_c00346{transform:matrix(0.195388,-0.004299,0.005499,0.249940,0,0);-ms-transform:matrix(0.195388,-0.004299,0.005499,0.249940,0,0);-webkit-transform:matrix(0.195388,-0.004299,0.005499,0.249940,0,0);}
.m4f_c00346{transform:matrix(0.196100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196100,0.000000,0.000000,0.250000,0,0);}
.m150_c00346{transform:matrix(0.196138,-0.004315,0.005499,0.249940,0,0);-ms-transform:matrix(0.196138,-0.004315,0.005499,0.249940,0,0);-webkit-transform:matrix(0.196138,-0.004315,0.005499,0.249940,0,0);}
.m5a_c00346{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m13b_c00346{transform:matrix(0.196690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196690,0.000000,0.000000,0.250000,0,0);}
.m9c_c00346{transform:matrix(0.196910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196910,0.000000,0.000000,0.250000,0,0);}
.m92_c00346{transform:matrix(0.197155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197155,0.000000,0.000000,0.250000,0,0);}
.m2b_c00346{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m5e_c00346{transform:matrix(0.197510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197510,0.000000,0.000000,0.250000,0,0);}
.m24_c00346{transform:matrix(0.197600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197600,0.000000,0.000000,0.250000,0,0);}
.mcd_c00346{transform:matrix(0.197910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197910,0.000000,0.000000,0.250000,0,0);}
.m144_c00346{transform:matrix(0.198150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198150,0.000000,0.000000,0.250000,0,0);}
.m32_c00346{transform:matrix(0.198375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198375,0.000000,0.000000,0.250000,0,0);}
.m76_c00346{transform:matrix(0.198755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198755,0.000000,0.000000,0.250000,0,0);}
.m145_c00346{transform:matrix(0.199290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199290,0.000000,0.000000,0.250000,0,0);}
.m11c_c00346{transform:matrix(0.199315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199315,0.000000,0.000000,0.250000,0,0);}
.m130_c00346{transform:matrix(0.199723,-0.002596,0.003250,0.249979,0,0);-ms-transform:matrix(0.199723,-0.002596,0.003250,0.249979,0,0);-webkit-transform:matrix(0.199723,-0.002596,0.003250,0.249979,0,0);}
.med_c00346{transform:matrix(0.199724,-0.001598,0.002000,0.249992,0,0);-ms-transform:matrix(0.199724,-0.001598,0.002000,0.249992,0,0);-webkit-transform:matrix(0.199724,-0.001598,0.002000,0.249992,0,0);}
.m88_c00346{transform:matrix(0.200145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200145,0.000000,0.000000,0.250000,0,0);}
.m6b_c00346{transform:matrix(0.200400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200400,0.000000,0.000000,0.250000,0,0);}
.m64_c00346{transform:matrix(0.200535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200535,0.000000,0.000000,0.250000,0,0);}
.m142_c00346{transform:matrix(0.200645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200645,0.000000,0.000000,0.250000,0,0);}
.m12f_c00346{transform:matrix(0.201213,-0.002616,0.003250,0.249979,0,0);-ms-transform:matrix(0.201213,-0.002616,0.003250,0.249979,0,0);-webkit-transform:matrix(0.201213,-0.002616,0.003250,0.249979,0,0);}
.meb_c00346{transform:matrix(0.201299,-0.001610,0.002000,0.249992,0,0);-ms-transform:matrix(0.201299,-0.001610,0.002000,0.249992,0,0);-webkit-transform:matrix(0.201299,-0.001610,0.002000,0.249992,0,0);}
.m38_c00346{transform:matrix(0.201495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201495,0.000000,0.000000,0.250000,0,0);}
.m33_c00346{transform:matrix(0.201530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201530,0.000000,0.000000,0.250000,0,0);}
.m11e_c00346{transform:matrix(0.201595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201595,0.000000,0.000000,0.250000,0,0);}
.m9d_c00346{transform:matrix(0.201680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201680,0.000000,0.000000,0.250000,0,0);}
.m8c_c00346{transform:matrix(0.201950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201950,0.000000,0.000000,0.250000,0,0);}
.m8e_c00346{transform:matrix(0.202135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202135,0.000000,0.000000,0.250000,0,0);}
.m132_c00346{transform:matrix(0.202138,-0.002628,0.003250,0.249979,0,0);-ms-transform:matrix(0.202138,-0.002628,0.003250,0.249979,0,0);-webkit-transform:matrix(0.202138,-0.002628,0.003250,0.249979,0,0);}
.m23_c00346{transform:matrix(0.202190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202190,0.000000,0.000000,0.250000,0,0);}
.mb4_c00346{transform:matrix(0.202225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202225,0.000000,0.000000,0.250000,0,0);}
.mee_c00346{transform:matrix(0.202649,-0.001621,0.002000,0.249992,0,0);-ms-transform:matrix(0.202649,-0.001621,0.002000,0.249992,0,0);-webkit-transform:matrix(0.202649,-0.001621,0.002000,0.249992,0,0);}
.m136_c00346{transform:matrix(0.203108,-0.002640,0.003250,0.249979,0,0);-ms-transform:matrix(0.203108,-0.002640,0.003250,0.249979,0,0);-webkit-transform:matrix(0.203108,-0.002640,0.003250,0.249979,0,0);}
.m71_c00346{transform:matrix(0.203355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203355,0.000000,0.000000,0.250000,0,0);}
.m94_c00346{transform:matrix(0.203480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203480,0.000000,0.000000,0.250000,0,0);}
.me9_c00346{transform:matrix(0.203968,-0.001632,0.002000,0.249992,0,0);-ms-transform:matrix(0.203968,-0.001632,0.002000,0.249992,0,0);-webkit-transform:matrix(0.203968,-0.001632,0.002000,0.249992,0,0);}
.m13c_c00346{transform:matrix(0.204320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204320,0.000000,0.000000,0.250000,0,0);}
.m73_c00346{transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);}
.m140_c00346{transform:matrix(0.204850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204850,0.000000,0.000000,0.250000,0,0);}
.m1f_c00346{transform:matrix(0.204930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204930,0.000000,0.000000,0.250000,0,0);}
.m40_c00346{transform:matrix(0.205330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205330,0.000000,0.000000,0.250000,0,0);}
.m90_c00346{transform:matrix(0.205630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205630,0.000000,0.000000,0.250000,0,0);}
.m138_c00346{transform:matrix(0.205758,-0.002675,0.003250,0.249979,0,0);-ms-transform:matrix(0.205758,-0.002675,0.003250,0.249979,0,0);-webkit-transform:matrix(0.205758,-0.002675,0.003250,0.249979,0,0);}
.me4_c00346{transform:matrix(0.205798,-0.001646,0.002000,0.249992,0,0);-ms-transform:matrix(0.205798,-0.001646,0.002000,0.249992,0,0);-webkit-transform:matrix(0.205798,-0.001646,0.002000,0.249992,0,0);}
.mad_c00346{transform:matrix(0.206430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206430,0.000000,0.000000,0.250000,0,0);}
.mbf_c00346{transform:matrix(0.206470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206470,0.000000,0.000000,0.250000,0,0);}
.m95_c00346{transform:matrix(0.206640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206640,0.000000,0.000000,0.250000,0,0);}
.m10c_c00346{transform:matrix(0.207395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207395,0.000000,0.000000,0.250000,0,0);}
.mc6_c00346{transform:matrix(0.207715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207715,0.000000,0.000000,0.250000,0,0);}
.m13f_c00346{transform:matrix(0.207870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207870,0.000000,0.000000,0.250000,0,0);}
.mae_c00346{transform:matrix(0.208035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208035,0.000000,0.000000,0.250000,0,0);}
.m72_c00346{transform:matrix(0.208540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208540,0.000000,0.000000,0.250000,0,0);}
.m66_c00346{transform:matrix(0.208710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208710,0.000000,0.000000,0.250000,0,0);}
.mdd_c00346{transform:matrix(0.208903,-0.001671,0.002000,0.249992,0,0);-ms-transform:matrix(0.208903,-0.001671,0.002000,0.249992,0,0);-webkit-transform:matrix(0.208903,-0.001671,0.002000,0.249992,0,0);}
.mb7_c00346{transform:matrix(0.209220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209220,0.000000,0.000000,0.250000,0,0);}
.m27_c00346{transform:matrix(0.209300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209300,0.000000,0.000000,0.250000,0,0);}
.md2_c00346{transform:matrix(0.209545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209545,0.000000,0.000000,0.250000,0,0);}
.m3b_c00346{transform:matrix(0.209805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209805,0.000000,0.000000,0.250000,0,0);}
.md6_c00346{transform:matrix(0.209935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209935,0.000000,0.000000,0.250000,0,0);}
.m6c_c00346{transform:matrix(0.211025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211025,0.000000,0.000000,0.250000,0,0);}
.m110_c00346{transform:matrix(0.211215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211215,0.000000,0.000000,0.250000,0,0);}
.me7_c00346{transform:matrix(0.212178,-0.001697,0.002000,0.249992,0,0);-ms-transform:matrix(0.212178,-0.001697,0.002000,0.249992,0,0);-webkit-transform:matrix(0.212178,-0.001697,0.002000,0.249992,0,0);}
.me1_c00346{transform:matrix(0.212353,-0.001699,0.002000,0.249992,0,0);-ms-transform:matrix(0.212353,-0.001699,0.002000,0.249992,0,0);-webkit-transform:matrix(0.212353,-0.001699,0.002000,0.249992,0,0);}
.m6f_c00346{transform:matrix(0.212360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212360,0.000000,0.000000,0.250000,0,0);}
.m21_c00346{transform:matrix(0.213020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213020,0.000000,0.000000,0.250000,0,0);}
.m3f_c00346{transform:matrix(0.213070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213070,0.000000,0.000000,0.250000,0,0);}
.m74_c00346{transform:matrix(0.213835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213835,0.000000,0.000000,0.250000,0,0);}
.m146_c00346{transform:matrix(0.213840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213840,0.000000,0.000000,0.250000,0,0);}
.m37_c00346{transform:matrix(0.214300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214300,0.000000,0.000000,0.250000,0,0);}
.m63_c00346{transform:matrix(0.214335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214335,0.000000,0.000000,0.250000,0,0);}
.mf4_c00346{transform:matrix(0.214408,-0.001715,0.002000,0.249992,0,0);-ms-transform:matrix(0.214408,-0.001715,0.002000,0.249992,0,0);-webkit-transform:matrix(0.214408,-0.001715,0.002000,0.249992,0,0);}
.m3e_c00346{transform:matrix(0.214420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214420,0.000000,0.000000,0.250000,0,0);}
.me5_c00346{transform:matrix(0.214848,-0.001719,0.002000,0.249992,0,0);-ms-transform:matrix(0.214848,-0.001719,0.002000,0.249992,0,0);-webkit-transform:matrix(0.214848,-0.001719,0.002000,0.249992,0,0);}
.mc9_c00346{transform:matrix(0.214855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214855,0.000000,0.000000,0.250000,0,0);}
.mce_c00346{transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);}
.m78_c00346{transform:matrix(0.215380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215380,0.000000,0.000000,0.250000,0,0);}
.m3c_c00346{transform:matrix(0.215920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215920,0.000000,0.000000,0.250000,0,0);}
.mb2_c00346{transform:matrix(0.216505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216505,0.000000,0.000000,0.250000,0,0);}
.me8_c00346{transform:matrix(0.216533,-0.001732,0.002000,0.249992,0,0);-ms-transform:matrix(0.216533,-0.001732,0.002000,0.249992,0,0);-webkit-transform:matrix(0.216533,-0.001732,0.002000,0.249992,0,0);}
.m10a_c00346{transform:matrix(0.216725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216725,0.000000,0.000000,0.250000,0,0);}
.m13_c00346{transform:matrix(0.216790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216790,0.000000,0.000000,0.250000,0,0);}
.m104_c00346{transform:matrix(0.217523,0.001740,-0.002000,0.249992,0,0);-ms-transform:matrix(0.217523,0.001740,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.217523,0.001740,-0.002000,0.249992,0,0);}
.mc7_c00346{transform:matrix(0.217930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217930,0.000000,0.000000,0.250000,0,0);}
.m13d_c00346{transform:matrix(0.218090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218090,0.000000,0.000000,0.250000,0,0);}
.m36_c00346{transform:matrix(0.218335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218335,0.000000,0.000000,0.250000,0,0);}
.m79_c00346{transform:matrix(0.218420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218420,0.000000,0.000000,0.250000,0,0);}
.mcf_c00346{transform:matrix(0.219215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219215,0.000000,0.000000,0.250000,0,0);}
.md9_c00346{transform:matrix(0.219535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219535,0.000000,0.000000,0.250000,0,0);}
.mb5_c00346{transform:matrix(0.219950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219950,0.000000,0.000000,0.250000,0,0);}
.mf2_c00346{transform:matrix(0.220183,-0.001761,0.002000,0.249992,0,0);-ms-transform:matrix(0.220183,-0.001761,0.002000,0.249992,0,0);-webkit-transform:matrix(0.220183,-0.001761,0.002000,0.249992,0,0);}
.mde_c00346{transform:matrix(0.220248,-0.001762,0.002000,0.249992,0,0);-ms-transform:matrix(0.220248,-0.001762,0.002000,0.249992,0,0);-webkit-transform:matrix(0.220248,-0.001762,0.002000,0.249992,0,0);}
.m17_c00346{transform:matrix(0.221120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221120,0.000000,0.000000,0.250000,0,0);}
.m8_c00346{transform:matrix(0.221205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221205,0.000000,0.000000,0.250000,0,0);}
.m111_c00346{transform:matrix(0.221455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221455,0.000000,0.000000,0.250000,0,0);}
.mec_c00346{transform:matrix(0.221593,-0.001773,0.002000,0.249992,0,0);-ms-transform:matrix(0.221593,-0.001773,0.002000,0.249992,0,0);-webkit-transform:matrix(0.221593,-0.001773,0.002000,0.249992,0,0);}
.mfa_c00346{transform:matrix(0.221673,-0.001773,0.002000,0.249992,0,0);-ms-transform:matrix(0.221673,-0.001773,0.002000,0.249992,0,0);-webkit-transform:matrix(0.221673,-0.001773,0.002000,0.249992,0,0);}
.m107_c00346{transform:matrix(0.222430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222430,0.000000,0.000000,0.250000,0,0);}
.m6_c00346{transform:matrix(0.222625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222625,0.000000,0.000000,0.250000,0,0);}
.mb8_c00346{transform:matrix(0.223220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223220,0.000000,0.000000,0.250000,0,0);}
.m13e_c00346{transform:matrix(0.223705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223705,0.000000,0.000000,0.250000,0,0);}
.mb9_c00346{transform:matrix(0.223745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223745,0.000000,0.000000,0.250000,0,0);}
.mef_c00346{transform:matrix(0.223963,-0.001792,0.002000,0.249992,0,0);-ms-transform:matrix(0.223963,-0.001792,0.002000,0.249992,0,0);-webkit-transform:matrix(0.223963,-0.001792,0.002000,0.249992,0,0);}
.m7b_c00346{transform:matrix(0.224070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224070,0.000000,0.000000,0.250000,0,0);}
.md8_c00346{transform:matrix(0.224080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224080,0.000000,0.000000,0.250000,0,0);}
.m67_c00346{transform:matrix(0.224260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224260,0.000000,0.000000,0.250000,0,0);}
.mac_c00346{transform:matrix(0.224265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224265,0.000000,0.000000,0.250000,0,0);}
.m77_c00346{transform:matrix(0.224530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224530,0.000000,0.000000,0.250000,0,0);}
.mb1_c00346{transform:matrix(0.224955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224955,0.000000,0.000000,0.250000,0,0);}
.mca_c00346{transform:matrix(0.225740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225740,0.000000,0.000000,0.250000,0,0);}
.m125_c00346{transform:matrix(0.225930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225930,0.000000,0.000000,0.250000,0,0);}
.m10d_c00346{transform:matrix(0.225940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225940,0.000000,0.000000,0.250000,0,0);}
.mb_c00346{transform:matrix(0.226065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226065,0.000000,0.000000,0.250000,0,0);}
.maf_c00346{transform:matrix(0.226100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226100,0.000000,0.000000,0.250000,0,0);}
.m81_c00346{transform:matrix(0.226110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226110,0.000000,0.000000,0.250000,0,0);}
.me0_c00346{transform:matrix(0.226323,-0.001811,0.002000,0.249992,0,0);-ms-transform:matrix(0.226323,-0.001811,0.002000,0.249992,0,0);-webkit-transform:matrix(0.226323,-0.001811,0.002000,0.249992,0,0);}
.m68_c00346{transform:matrix(0.226420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226420,0.000000,0.000000,0.250000,0,0);}
.mf5_c00346{transform:matrix(0.226568,-0.001813,0.002000,0.249992,0,0);-ms-transform:matrix(0.226568,-0.001813,0.002000,0.249992,0,0);-webkit-transform:matrix(0.226568,-0.001813,0.002000,0.249992,0,0);}
.mdc_c00346{transform:matrix(0.226590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226590,0.000000,0.000000,0.250000,0,0);}
.m29_c00346{transform:matrix(0.226815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226815,0.000000,0.000000,0.250000,0,0);}
.m117_c00346{transform:matrix(0.226965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226965,0.000000,0.000000,0.250000,0,0);}
.m2d_c00346{transform:matrix(0.227945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227945,0.000000,0.000000,0.250000,0,0);}
.mb0_c00346{transform:matrix(0.228055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228055,0.000000,0.000000,0.250000,0,0);}
.m31_c00346{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m102_c00346{transform:matrix(0.229773,0.001838,-0.002000,0.249992,0,0);-ms-transform:matrix(0.229773,0.001838,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.229773,0.001838,-0.002000,0.249992,0,0);}
.m3d_c00346{transform:matrix(0.229915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229915,0.000000,0.000000,0.250000,0,0);}
.m105_c00346{transform:matrix(0.230290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230290,0.000000,0.000000,0.250000,0,0);}
.m7f_c00346{transform:matrix(0.230340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230340,0.000000,0.000000,0.250000,0,0);}
.mf6_c00346{transform:matrix(0.230908,-0.001847,0.002000,0.249992,0,0);-ms-transform:matrix(0.230908,-0.001847,0.002000,0.249992,0,0);-webkit-transform:matrix(0.230908,-0.001847,0.002000,0.249992,0,0);}
.mfc_c00346{transform:matrix(0.231268,0.001850,-0.002000,0.249992,0,0);-ms-transform:matrix(0.231268,0.001850,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.231268,0.001850,-0.002000,0.249992,0,0);}
.m75_c00346{transform:matrix(0.231525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231525,0.000000,0.000000,0.250000,0,0);}
.mcb_c00346{transform:matrix(0.231810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231810,0.000000,0.000000,0.250000,0,0);}
.mc8_c00346{transform:matrix(0.231915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231915,0.000000,0.000000,0.250000,0,0);}
.mbc_c00346{transform:matrix(0.232240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232240,0.000000,0.000000,0.250000,0,0);}
.mcc_c00346{transform:matrix(0.232305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232305,0.000000,0.000000,0.250000,0,0);}
.m14_c00346{transform:matrix(0.232555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232555,0.000000,0.000000,0.250000,0,0);}
.m6a_c00346{transform:matrix(0.232800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232800,0.000000,0.000000,0.250000,0,0);}
.mb3_c00346{transform:matrix(0.232900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232900,0.000000,0.000000,0.250000,0,0);}
.mea_c00346{transform:matrix(0.233083,-0.001865,0.002000,0.249992,0,0);-ms-transform:matrix(0.233083,-0.001865,0.002000,0.249992,0,0);-webkit-transform:matrix(0.233083,-0.001865,0.002000,0.249992,0,0);}
.mdb_c00346{transform:matrix(0.233570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233570,0.000000,0.000000,0.250000,0,0);}
.m103_c00346{transform:matrix(0.233783,0.001870,-0.002000,0.249992,0,0);-ms-transform:matrix(0.233783,0.001870,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.233783,0.001870,-0.002000,0.249992,0,0);}
.mfd_c00346{transform:matrix(0.234173,0.001873,-0.002000,0.249992,0,0);-ms-transform:matrix(0.234173,0.001873,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.234173,0.001873,-0.002000,0.249992,0,0);}
.mbd_c00346{transform:matrix(0.234690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234690,0.000000,0.000000,0.250000,0,0);}
.mf1_c00346{transform:matrix(0.234772,-0.001878,0.002000,0.249992,0,0);-ms-transform:matrix(0.234772,-0.001878,0.002000,0.249992,0,0);-webkit-transform:matrix(0.234772,-0.001878,0.002000,0.249992,0,0);}
.m11_c00346{transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235525,0.000000,0.000000,0.250000,0,0);}
.m2a_c00346{transform:matrix(0.235580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235580,0.000000,0.000000,0.250000,0,0);}
.mc1_c00346{transform:matrix(0.235600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235600,0.000000,0.000000,0.250000,0,0);}
.m101_c00346{transform:matrix(0.235767,0.001886,-0.002000,0.249992,0,0);-ms-transform:matrix(0.235767,0.001886,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.235767,0.001886,-0.002000,0.249992,0,0);}
.me2_c00346{transform:matrix(0.235912,-0.001887,0.002000,0.249992,0,0);-ms-transform:matrix(0.235912,-0.001887,0.002000,0.249992,0,0);-webkit-transform:matrix(0.235912,-0.001887,0.002000,0.249992,0,0);}
.mff_c00346{transform:matrix(0.236107,0.001889,-0.002000,0.249992,0,0);-ms-transform:matrix(0.236107,0.001889,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.236107,0.001889,-0.002000,0.249992,0,0);}
.mbb_c00346{transform:matrix(0.236805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236805,0.000000,0.000000,0.250000,0,0);}
.mc4_c00346{transform:matrix(0.237035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237035,0.000000,0.000000,0.250000,0,0);}
.m44_c00346{transform:matrix(0.237185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237185,0.000000,0.000000,0.250000,0,0);}
.m35_c00346{transform:matrix(0.237805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237805,0.000000,0.000000,0.250000,0,0);}
.m10_c00346{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.mc2_c00346{transform:matrix(0.238445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238445,0.000000,0.000000,0.250000,0,0);}
.m3a_c00346{transform:matrix(0.238645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238645,0.000000,0.000000,0.250000,0,0);}
.m109_c00346{transform:matrix(0.239390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239390,0.000000,0.000000,0.250000,0,0);}
.mf9_c00346{transform:matrix(0.239497,-0.001916,0.002000,0.249992,0,0);-ms-transform:matrix(0.239497,-0.001916,0.002000,0.249992,0,0);-webkit-transform:matrix(0.239497,-0.001916,0.002000,0.249992,0,0);}
.m12_c00346{transform:matrix(0.239670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239670,0.000000,0.000000,0.250000,0,0);}
.m2_c00346{transform:matrix(0.239700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239700,0.000000,0.000000,0.250000,0,0);}
.m6d_c00346{transform:matrix(0.240285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240285,0.000000,0.000000,0.250000,0,0);}
.m2c_c00346{transform:matrix(0.240525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240525,0.000000,0.000000,0.250000,0,0);}
.m106_c00346{transform:matrix(0.240545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240545,0.000000,0.000000,0.250000,0,0);}
.m39_c00346{transform:matrix(0.240745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240745,0.000000,0.000000,0.250000,0,0);}
.m84_c00346{transform:matrix(0.241415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241415,0.000000,0.000000,0.250000,0,0);}
.mc_c00346{transform:matrix(0.241520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241520,0.000000,0.000000,0.250000,0,0);}
.md0_c00346{transform:matrix(0.241820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241820,0.000000,0.000000,0.250000,0,0);}
.m121_c00346{transform:matrix(0.242220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242220,0.000000,0.000000,0.250000,0,0);}
.mfe_c00346{transform:matrix(0.242507,0.001940,-0.002000,0.249992,0,0);-ms-transform:matrix(0.242507,0.001940,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.242507,0.001940,-0.002000,0.249992,0,0);}
.m10e_c00346{transform:matrix(0.242630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242630,0.000000,0.000000,0.250000,0,0);}
.m42_c00346{transform:matrix(0.243055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243055,0.000000,0.000000,0.250000,0,0);}
.mbe_c00346{transform:matrix(0.243265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243265,0.000000,0.000000,0.250000,0,0);}
.md1_c00346{transform:matrix(0.243300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243300,0.000000,0.000000,0.250000,0,0);}
.m7d_c00346{transform:matrix(0.243315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243315,0.000000,0.000000,0.250000,0,0);}
.md3_c00346{transform:matrix(0.243425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243425,0.000000,0.000000,0.250000,0,0);}
.m82_c00346{transform:matrix(0.244310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244310,0.000000,0.000000,0.250000,0,0);}
.ma8_c00346{transform:matrix(0.244480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244480,0.000000,0.000000,0.250000,0,0);}
.m147_c00346{transform:matrix(0.244795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244795,0.000000,0.000000,0.250000,0,0);}
.mf0_c00346{transform:matrix(0.244967,-0.001960,0.002000,0.249992,0,0);-ms-transform:matrix(0.244967,-0.001960,0.002000,0.249992,0,0);-webkit-transform:matrix(0.244967,-0.001960,0.002000,0.249992,0,0);}
.m2f_c00346{transform:matrix(0.245165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245165,0.000000,0.000000,0.250000,0,0);}
.mf8_c00346{transform:matrix(0.245692,-0.001966,0.002000,0.249992,0,0);-ms-transform:matrix(0.245692,-0.001966,0.002000,0.249992,0,0);-webkit-transform:matrix(0.245692,-0.001966,0.002000,0.249992,0,0);}
.m28_c00346{transform:matrix(0.246125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246125,0.000000,0.000000,0.250000,0,0);}
.m80_c00346{transform:matrix(0.246195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246195,0.000000,0.000000,0.250000,0,0);}
.md5_c00346{transform:matrix(0.246535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246535,0.000000,0.000000,0.250000,0,0);}
.ma_c00346{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.mf7_c00346{transform:matrix(0.248157,-0.001985,0.002000,0.249992,0,0);-ms-transform:matrix(0.248157,-0.001985,0.002000,0.249992,0,0);-webkit-transform:matrix(0.248157,-0.001985,0.002000,0.249992,0,0);}
.md7_c00346{transform:matrix(0.248560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248560,0.000000,0.000000,0.250000,0,0);}
.m128_c00346{transform:matrix(0.248900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248900,0.000000,0.000000,0.250000,0,0);}
.m113_c00346{transform:matrix(0.250240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250240,0.000000,0.000000,0.250000,0,0);}
.m12c_c00346{transform:matrix(0.250390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250390,0.000000,0.000000,0.250000,0,0);}
.m119_c00346{transform:matrix(0.250920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250920,0.000000,0.000000,0.250000,0,0);}
.m47_c00346{transform:matrix(0.251385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251385,0.000000,0.000000,0.250000,0,0);}
.m43_c00346{transform:matrix(0.252115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252115,0.000000,0.000000,0.250000,0,0);}
.m18_c00346{transform:matrix(0.252205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252205,0.000000,0.000000,0.250000,0,0);}
.m15_c00346{transform:matrix(0.252825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252825,0.000000,0.000000,0.250000,0,0);}
.mba_c00346{transform:matrix(0.253170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253170,0.000000,0.000000,0.250000,0,0);}
.m7c_c00346{transform:matrix(0.253875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253875,0.000000,0.000000,0.250000,0,0);}
.m2e_c00346{transform:matrix(0.254150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254150,0.000000,0.000000,0.250000,0,0);}
.m46_c00346{transform:matrix(0.254805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254805,0.000000,0.000000,0.250000,0,0);}
.m30_c00346{transform:matrix(0.255835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255835,0.000000,0.000000,0.250000,0,0);}
.m114_c00346{transform:matrix(0.255990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255990,0.000000,0.000000,0.250000,0,0);}
.m7e_c00346{transform:matrix(0.256490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256490,0.000000,0.000000,0.250000,0,0);}
.m4a_c00346{transform:matrix(0.257180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257180,0.000000,0.000000,0.250000,0,0);}
.m1_c00346{transform:matrix(0.257395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257395,0.000000,0.000000,0.250000,0,0);}
.m19_c00346{transform:matrix(0.257660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257660,0.000000,0.000000,0.250000,0,0);}
.m85_c00346{transform:matrix(0.258510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258510,0.000000,0.000000,0.250000,0,0);}
.mf_c00346{transform:matrix(0.258615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258615,0.000000,0.000000,0.250000,0,0);}
.m11a_c00346{transform:matrix(0.258860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258860,0.000000,0.000000,0.250000,0,0);}
.m11d_c00346{transform:matrix(0.259050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259050,0.000000,0.000000,0.250000,0,0);}
.m4b_c00346{transform:matrix(0.259520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259520,0.000000,0.000000,0.250000,0,0);}
.m10b_c00346{transform:matrix(0.260915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260915,0.000000,0.000000,0.250000,0,0);}
.m16_c00346{transform:matrix(0.261130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261130,0.000000,0.000000,0.250000,0,0);}
.mf3_c00346{transform:matrix(0.261242,-0.002090,0.002000,0.249992,0,0);-ms-transform:matrix(0.261242,-0.002090,0.002000,0.249992,0,0);-webkit-transform:matrix(0.261242,-0.002090,0.002000,0.249992,0,0);}
.m5_c00346{transform:matrix(0.261275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261275,0.000000,0.000000,0.250000,0,0);}
.mc3_c00346{transform:matrix(0.262060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262060,0.000000,0.000000,0.250000,0,0);}
.mda_c00346{transform:matrix(0.262300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262300,0.000000,0.000000,0.250000,0,0);}
.mc0_c00346{transform:matrix(0.262335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262335,0.000000,0.000000,0.250000,0,0);}
.m45_c00346{transform:matrix(0.263715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263715,0.000000,0.000000,0.250000,0,0);}
.m86_c00346{transform:matrix(0.264365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264365,0.000000,0.000000,0.250000,0,0);}
.m11f_c00346{transform:matrix(0.264700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264700,0.000000,0.000000,0.250000,0,0);}
.m122_c00346{transform:matrix(0.265130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265130,0.000000,0.000000,0.250000,0,0);}
.m83_c00346{transform:matrix(0.265320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265320,0.000000,0.000000,0.250000,0,0);}
.m7_c00346{transform:matrix(0.266190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266190,0.000000,0.000000,0.250000,0,0);}
.m48_c00346{transform:matrix(0.267630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267630,0.000000,0.000000,0.250000,0,0);}
.me_c00346{transform:matrix(0.268915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268915,0.000000,0.000000,0.250000,0,0);}
.m11b_c00346{transform:matrix(0.268935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268935,0.000000,0.000000,0.250000,0,0);}
.m12d_c00346{transform:matrix(0.269160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269160,0.000000,0.000000,0.250000,0,0);}
.md_c00346{transform:matrix(0.270005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270005,0.000000,0.000000,0.250000,0,0);}
.m118_c00346{transform:matrix(0.274135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274135,0.000000,0.000000,0.250000,0,0);}
.m12e_c00346{transform:matrix(0.274305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274305,0.000000,0.000000,0.250000,0,0);}
.m116_c00346{transform:matrix(0.276035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276035,0.000000,0.000000,0.250000,0,0);}
.m124_c00346{transform:matrix(0.276040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276040,0.000000,0.000000,0.250000,0,0);}
.m49_c00346{transform:matrix(0.276340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276340,0.000000,0.000000,0.250000,0,0);}
.m12a_c00346{transform:matrix(0.276925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276925,0.000000,0.000000,0.250000,0,0);}
.m65_c00346{transform:matrix(0.277190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277190,0.000000,0.000000,0.250000,0,0);}
.m115_c00346{transform:matrix(0.278130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278130,0.000000,0.000000,0.250000,0,0);}
.m9_c00346{transform:matrix(0.278265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278265,0.000000,0.000000,0.250000,0,0);}
.m0_c00346{transform:matrix(0.279175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279175,0.000000,0.000000,0.250000,0,0);}
.m3_c00346{transform:matrix(0.279910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279910,0.000000,0.000000,0.250000,0,0);}
.m4_c00346{transform:matrix(0.281620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281620,0.000000,0.000000,0.250000,0,0);}
.m126_c00346{transform:matrix(0.282600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282600,0.000000,0.000000,0.250000,0,0);}
.m127_c00346{transform:matrix(0.289265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289265,0.000000,0.000000,0.250000,0,0);}
.m12b_c00346{transform:matrix(0.296700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296700,0.000000,0.000000,0.250000,0,0);}
.m123_c00346{transform:matrix(0.297865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297865,0.000000,0.000000,0.250000,0,0);}
.m129_c00346{transform:matrix(0.302805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302805,0.000000,0.000000,0.250000,0,0);}
.m120_c00346{transform:matrix(0.455290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455290,0.000000,0.000000,0.250000,0,0);}
.v0_c00346{vertical-align:0.000000px;}
.v1_c00346{vertical-align:3.084000px;}
.ls0_c00346{letter-spacing:0.000000px;}
.sc__c00346{text-shadow:none;}
.sc0_c00346{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__c00346{-webkit-text-stroke:0px transparent;}
.sc0_c00346{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00346{word-spacing:0.000000px;}
._0_c00346{width:42.196002px;}
.fc0_c00346{color:transparent;}
.fsa_c00346{font-size:42.000000px;}
.fs8_c00346{font-size:66.000000px;}
.fs0_c00346{font-size:72.000000px;}
.fs1_c00346{font-size:78.000000px;}
.fs7_c00346{font-size:78.002496px;}
.fs3_c00346{font-size:84.000000px;}
.fs6_c00346{font-size:84.002688px;}
.fs5_c00346{font-size:90.000000px;}
.fs2_c00346{font-size:96.000000px;}
.fs9_c00346{font-size:96.008112px;}
.fs4_c00346{font-size:102.000000px;}
.fsb_c00346{font-size:102.024681px;}
.y0_c00346{bottom:0.000000px;}
.yd0_c00346{bottom:50.767500px;}
.yd1_c00346{bottom:51.463866px;}
.yd2_c00346{bottom:52.159011px;}
.yd3_c00346{bottom:54.029385px;}
.yd4_c00346{bottom:54.542469px;}
.yd5_c00346{bottom:57.681231px;}
.yd6_c00346{bottom:58.418649px;}
.yd7_c00346{bottom:59.129040px;}
.yd8_c00346{bottom:60.874443px;}
.ycf_c00346{bottom:90.990000px;}
.yce_c00346{bottom:96.558000px;}
.yc2_c00346{bottom:122.854500px;}
.yc3_c00346{bottom:124.228217px;}
.yc4_c00346{bottom:125.351690px;}
.yc5_c00346{bottom:125.934213px;}
.yc6_c00346{bottom:127.066890px;}
.yc7_c00346{bottom:127.386593px;}
.yc8_c00346{bottom:128.239171px;}
.yc9_c00346{bottom:128.666982px;}
.yca_c00346{bottom:129.540114px;}
.ycb_c00346{bottom:129.817248px;}
.ycc_c00346{bottom:130.989725px;}
.ycd_c00346{bottom:131.431439px;}
.yc1_c00346{bottom:174.223500px;}
.yc0_c00346{bottom:213.487500px;}
.ybf_c00346{bottom:245.740500px;}
.ybe_c00346{bottom:276.876036px;}
.ybd_c00346{bottom:277.322940px;}
.ybc_c00346{bottom:277.863144px;}
.ybb_c00346{bottom:278.571828px;}
.yba_c00346{bottom:278.837520px;}
.yb9_c00346{bottom:279.559092px;}
.yb8_c00346{bottom:280.440948px;}
.yb7_c00346{bottom:281.408136px;}
.yb6_c00346{bottom:282.172332px;}
.yb5_c00346{bottom:282.420000px;}
.yb4_c00346{bottom:311.394840px;}
.yb3_c00346{bottom:311.956656px;}
.yb2_c00346{bottom:312.515892px;}
.yb1_c00346{bottom:312.842484px;}
.yb0_c00346{bottom:313.848996px;}
.yaf_c00346{bottom:314.290140px;}
.yae_c00346{bottom:314.625276px;}
.yad_c00346{bottom:314.956632px;}
.yac_c00346{bottom:316.066956px;}
.yab_c00346{bottom:316.395924px;}
.yaa_c00346{bottom:316.843224px;}
.ya9_c00346{bottom:317.599200px;}
.ya8_c00346{bottom:318.111924px;}
.ya7_c00346{bottom:318.433020px;}
.y96_c00346{bottom:349.488000px;}
.y97_c00346{bottom:349.898796px;}
.y98_c00346{bottom:350.417460px;}
.y99_c00346{bottom:350.685516px;}
.y9a_c00346{bottom:351.290112px;}
.y9b_c00346{bottom:351.460992px;}
.y9c_c00346{bottom:352.179924px;}
.y9d_c00346{bottom:352.348536px;}
.y9e_c00346{bottom:352.618308px;}
.y9f_c00346{bottom:352.801848px;}
.ya0_c00346{bottom:352.979184px;}
.ya1_c00346{bottom:353.249112px;}
.ya2_c00346{bottom:353.594544px;}
.ya3_c00346{bottom:353.870820px;}
.ya4_c00346{bottom:354.494916px;}
.ya5_c00346{bottom:354.756540px;}
.ya6_c00346{bottom:355.125624px;}
.y95_c00346{bottom:383.313000px;}
.y94_c00346{bottom:420.547500px;}
.y93_c00346{bottom:420.954000px;}
.y92_c00346{bottom:421.224000px;}
.y91_c00346{bottom:421.485000px;}
.y90_c00346{bottom:421.686000px;}
.y8f_c00346{bottom:421.887000px;}
.y8e_c00346{bottom:422.421000px;}
.y8d_c00346{bottom:422.892000px;}
.y8c_c00346{bottom:423.154500px;}
.y8b_c00346{bottom:423.288000px;}
.y8a_c00346{bottom:424.069500px;}
.y89_c00346{bottom:424.207500px;}
.y88_c00346{bottom:424.515000px;}
.y87_c00346{bottom:424.710000px;}
.y7c_c00346{bottom:449.827500px;}
.y7d_c00346{bottom:451.192500px;}
.y7e_c00346{bottom:451.539000px;}
.y7f_c00346{bottom:452.244000px;}
.y80_c00346{bottom:453.111000px;}
.y81_c00346{bottom:454.164000px;}
.y82_c00346{bottom:454.704000px;}
.y83_c00346{bottom:457.057500px;}
.y84_c00346{bottom:458.247000px;}
.y85_c00346{bottom:458.601000px;}
.y86_c00346{bottom:460.591500px;}
.y7b_c00346{bottom:494.185500px;}
.y7a_c00346{bottom:527.209500px;}
.y6d_c00346{bottom:559.984500px;}
.y6e_c00346{bottom:560.143500px;}
.y6f_c00346{bottom:560.820000px;}
.y70_c00346{bottom:561.661500px;}
.y71_c00346{bottom:561.885000px;}
.y72_c00346{bottom:562.123500px;}
.y73_c00346{bottom:562.362000px;}
.y74_c00346{bottom:562.749000px;}
.y75_c00346{bottom:563.062500px;}
.y76_c00346{bottom:563.352000px;}
.y77_c00346{bottom:563.838000px;}
.y78_c00346{bottom:564.531000px;}
.y79_c00346{bottom:564.765000px;}
.y60_c00346{bottom:595.624500px;}
.y61_c00346{bottom:596.199000px;}
.y62_c00346{bottom:597.381000px;}
.y63_c00346{bottom:597.637500px;}
.y64_c00346{bottom:598.356000px;}
.y65_c00346{bottom:598.843500px;}
.y66_c00346{bottom:599.328000px;}
.y67_c00346{bottom:600.192000px;}
.y68_c00346{bottom:600.556500px;}
.y69_c00346{bottom:601.399500px;}
.y6a_c00346{bottom:601.651500px;}
.y6b_c00346{bottom:602.521500px;}
.y6c_c00346{bottom:602.893500px;}
.y53_c00346{bottom:629.911500px;}
.y54_c00346{bottom:630.165000px;}
.y55_c00346{bottom:630.600000px;}
.y56_c00346{bottom:630.948000px;}
.y57_c00346{bottom:631.644000px;}
.y58_c00346{bottom:631.908000px;}
.y59_c00346{bottom:632.182500px;}
.y5a_c00346{bottom:633.066000px;}
.y5b_c00346{bottom:633.331500px;}
.y5c_c00346{bottom:633.676500px;}
.y5d_c00346{bottom:634.387500px;}
.y5e_c00346{bottom:634.672500px;}
.y5f_c00346{bottom:635.374500px;}
.y52_c00346{bottom:670.671000px;}
.y51_c00346{bottom:707.076000px;}
.y50_c00346{bottom:707.278500px;}
.y4f_c00346{bottom:707.944500px;}
.y4e_c00346{bottom:708.151500px;}
.y4d_c00346{bottom:708.352500px;}
.y4c_c00346{bottom:708.879000px;}
.y4b_c00346{bottom:709.080000px;}
.y4a_c00346{bottom:709.543500px;}
.y49_c00346{bottom:709.944000px;}
.y48_c00346{bottom:710.208000px;}
.y47_c00346{bottom:710.475000px;}
.y46_c00346{bottom:710.737500px;}
.y45_c00346{bottom:711.181500px;}
.y38_c00346{bottom:737.374500px;}
.y39_c00346{bottom:737.770500px;}
.y3a_c00346{bottom:738.153000px;}
.y3b_c00346{bottom:739.722000px;}
.y3c_c00346{bottom:740.113500px;}
.y3d_c00346{bottom:741.301500px;}
.y3e_c00346{bottom:741.577500px;}
.y3f_c00346{bottom:741.966000px;}
.y40_c00346{bottom:742.770000px;}
.y41_c00346{bottom:744.123000px;}
.y42_c00346{bottom:744.498000px;}
.y43_c00346{bottom:745.444500px;}
.y44_c00346{bottom:745.842000px;}
.y2e_c00346{bottom:775.710000px;}
.y2f_c00346{bottom:776.169000px;}
.y30_c00346{bottom:776.484000px;}
.y31_c00346{bottom:776.679000px;}
.y32_c00346{bottom:777.346500px;}
.y33_c00346{bottom:777.748500px;}
.y34_c00346{bottom:777.942000px;}
.y35_c00346{bottom:778.611000px;}
.y36_c00346{bottom:779.212500px;}
.y37_c00346{bottom:779.550000px;}
.y2d_c00346{bottom:815.749500px;}
.y27_c00346{bottom:849.952500px;}
.y28_c00346{bottom:850.524000px;}
.y29_c00346{bottom:851.595000px;}
.y2a_c00346{bottom:851.791500px;}
.y2b_c00346{bottom:852.199500px;}
.y2c_c00346{bottom:852.693000px;}
.y1b_c00346{bottom:876.420000px;}
.y1c_c00346{bottom:877.948500px;}
.y1d_c00346{bottom:878.472000px;}
.y1e_c00346{bottom:878.998500px;}
.y1f_c00346{bottom:879.526500px;}
.y20_c00346{bottom:881.470500px;}
.y21_c00346{bottom:882.001500px;}
.y22_c00346{bottom:882.886500px;}
.y23_c00346{bottom:883.776000px;}
.y24_c00346{bottom:884.298000px;}
.y25_c00346{bottom:886.072500px;}
.y26_c00346{bottom:887.514000px;}
.y11_c00346{bottom:912.870000px;}
.y12_c00346{bottom:913.366500px;}
.y13_c00346{bottom:915.148500px;}
.y14_c00346{bottom:915.954000px;}
.y15_c00346{bottom:916.791000px;}
.y16_c00346{bottom:917.289000px;}
.y17_c00346{bottom:918.442500px;}
.y18_c00346{bottom:919.114500px;}
.y19_c00346{bottom:920.949000px;}
.y1a_c00346{bottom:922.119000px;}
.y4_c00346{bottom:953.910000px;}
.y5_c00346{bottom:954.055500px;}
.y6_c00346{bottom:954.514500px;}
.y7_c00346{bottom:954.741000px;}
.y8_c00346{bottom:955.194000px;}
.y9_c00346{bottom:955.356000px;}
.ya_c00346{bottom:955.975500px;}
.yb_c00346{bottom:956.205000px;}
.yc_c00346{bottom:956.986500px;}
.yd_c00346{bottom:957.217500px;}
.ye_c00346{bottom:957.837000px;}
.yf_c00346{bottom:958.303500px;}
.y10_c00346{bottom:958.617000px;}
.y3_c00346{bottom:991.722000px;}
.y2_c00346{bottom:1028.970000px;}
.y1_c00346{bottom:1117.929000px;}
.hd_c00346{height:42.000000px;}
.hb_c00346{height:66.000000px;}
.h2_c00346{height:72.000000px;}
.h3_c00346{height:78.000000px;}
.ha_c00346{height:78.002496px;}
.h5_c00346{height:84.000000px;}
.h9_c00346{height:84.002688px;}
.h8_c00346{height:90.000000px;}
.h4_c00346{height:96.000000px;}
.hc_c00346{height:96.008112px;}
.h6_c00346{height:102.000000px;}
.he_c00346{height:102.024681px;}
.h7_c00346{height:105.084000px;}
.h1_c00346{height:1247.250000px;}
.h0_c00346{height:1247.400000px;}
.w0_c00346{width:915.000000px;}
.x0_c00346{left:0.000000px;}
.xa3_c00346{left:99.360000px;}
.x11_c00346{left:122.850000px;}
.x24_c00346{left:124.123500px;}
.x51_c00346{left:126.360000px;}
.x7e_c00346{left:127.990500px;}
.x8a_c00346{left:129.367500px;}
.xaa_c00346{left:130.410000px;}
.xb4_c00346{left:131.526000px;}
.x1b_c00346{left:133.684500px;}
.x66_c00346{left:148.650000px;}
.x1c_c00346{left:154.515000px;}
.x25_c00346{left:157.177500px;}
.x7f_c00346{left:160.609500px;}
.xc4_c00346{left:163.722000px;}
.x6c_c00346{left:169.014000px;}
.xa4_c00346{left:171.990000px;}
.xbd_c00346{left:174.150000px;}
.x5f_c00346{left:179.479500px;}
.x73_c00346{left:180.624000px;}
.xab_c00346{left:183.600000px;}
.x33_c00346{left:188.314500px;}
.x3f_c00346{left:189.460500px;}
.x6d_c00346{left:190.884000px;}
.xc5_c00346{left:195.319500px;}
.x45_c00346{left:198.943500px;}
.x3a_c00346{left:200.689500px;}
.x9d_c00346{left:202.770000px;}
.x12_c00346{left:209.250000px;}
.x56_c00346{left:212.091000px;}
.x85_c00346{left:213.561000px;}
.x1d_c00346{left:220.147500px;}
.x74_c00346{left:222.204000px;}
.xa5_c00346{left:224.910000px;}
.x6_c00346{left:229.500000px;}
.x35_c00346{left:232.470000px;}
.x79_c00346{left:233.832000px;}
.xb5_c00346{left:237.196500px;}
.x46_c00346{left:242.680500px;}
.x67_c00346{left:245.311500px;}
.x1e_c00346{left:252.568500px;}
.x57_c00346{left:255.592500px;}
.xac_c00346{left:257.310000px;}
.x1_c00346{left:272.430000px;}
.x13_c00346{left:273.780000px;}
.x26_c00346{left:275.986500px;}
.x7a_c00346{left:277.917000px;}
.x8b_c00346{left:279.057000px;}
.xc6_c00346{left:280.336500px;}
.x7_c00346{left:285.660000px;}
.x47_c00346{left:287.221500px;}
.x93_c00346{left:288.229308px;}
.x6e_c00346{left:299.154000px;}
.x9e_c00346{left:301.050000px;}
.xc7_c00346{left:303.658500px;}
.x34_c00346{left:307.365000px;}
.x52_c00346{left:308.610000px;}
.x60_c00346{left:310.179000px;}
.x8_c00346{left:317.790000px;}
.x2c_c00346{left:319.245000px;}
.x75_c00346{left:321.564000px;}
.xb6_c00346{left:323.617500px;}
.x27_c00346{left:329.721000px;}
.x48_c00346{left:331.206000px;}
.x86_c00346{left:333.171000px;}
.x14_c00346{left:339.660000px;}
.x36_c00346{left:340.740000px;}
.x58_c00346{left:342.507000px;}
.xa6_c00346{left:345.060000px;}
.x40_c00346{left:352.855500px;}
.x8c_c00346{left:354.631500px;}
.x68_c00346{left:365.457000px;}
.xad_c00346{left:367.470000px;}
.x15_c00346{left:373.680000px;}
.x59_c00346{left:375.471000px;}
.x98_c00346{left:377.266500px;}
.x2_c00346{left:383.670000px;}
.x9_c00346{left:384.750000px;}
.x76_c00346{left:387.984000px;}
.x3b_c00346{left:396.726000px;}
.x49_c00346{left:397.894500px;}
.x9f_c00346{left:399.870000px;}
.x5a_c00346{left:409.756500px;}
.x28_c00346{left:418.801500px;}
.x6f_c00346{left:420.924000px;}
.x1f_c00346{left:429.147000px;}
.x69_c00346{left:431.331000px;}
.xae_c00346{left:433.080000px;}
.xa0_c00346{left:434.160000px;}
.x16_c00346{left:440.370000px;}
.xa7_c00346{left:443.610000px;}
.xc8_c00346{left:446.329500px;}
.x3_c00346{left:449.820000px;}
.xa_c00346{left:451.170000px;}
.x70_c00346{left:454.134000px;}
.xb7_c00346{left:455.556000px;}
.x20_c00346{left:461.839500px;}
.x3c_c00346{left:463.695000px;}
.x6a_c00346{left:465.327000px;}
.x2d_c00346{left:473.928000px;}
.x4a_c00346{left:475.120500px;}
.x94_c00346{left:476.932476px;}
.xb8_c00346{left:480.148500px;}
.x4_c00346{left:482.490000px;}
.xb_c00346{left:483.570000px;}
.x53_c00346{left:485.460000px;}
.x8d_c00346{left:486.934500px;}
.xaf_c00346{left:489.240000px;}
.x29_c00346{left:495.738000px;}
.x41_c00346{left:507.250500px;}
.x4b_c00346{left:508.600500px;}
.x87_c00346{left:510.021000px;}
.xc9_c00346{left:512.139000px;}
.x37_c00346{left:518.130000px;}
.x5b_c00346{left:520.164000px;}
.xb0_c00346{left:522.450000px;}
.x2e_c00346{left:529.237500px;}
.x17_c00346{left:538.650000px;}
.x2a_c00346{left:540.540000px;}
.x61_c00346{left:542.335500px;}
.x8e_c00346{left:543.598500px;}
.xb9_c00346{left:545.731500px;}
.x5c_c00346{left:553.350000px;}
.xbe_c00346{left:555.660000px;}
.x6b_c00346{left:565.479000px;}
.xa8_c00346{left:567.000000px;}
.x21_c00346{left:573.585000px;}
.x62_c00346{left:575.535000px;}
.x99_c00346{left:577.695000px;}
.x7b_c00346{left:578.893500px;}
.x5_c00346{left:583.200000px;}
.x2f_c00346{left:584.847000px;}
.x95_c00346{left:587.681424px;}
.xca_c00346{left:591.475500px;}
.x4c_c00346{left:596.368500px;}
.x80_c00346{left:598.495500px;}
.x8f_c00346{left:599.506500px;}
.xc_c00346{left:606.420000px;}
.x88_c00346{left:609.111000px;}
.x9a_c00346{left:610.906500px;}
.xbf_c00346{left:612.360000px;}
.x30_c00346{left:617.500500px;}
.xb1_c00346{left:622.080000px;}
.x4d_c00346{left:629.829000px;}
.x81_c00346{left:631.974000px;}
.xd_c00346{left:639.360000px;}
.x71_c00346{left:640.974000px;}
.x77_c00346{left:643.134000px;}
.xba_c00346{left:645.804000px;}
.x38_c00346{left:650.970000px;}
.x63_c00346{left:652.155000px;}
.x7c_c00346{left:653.281500px;}
.x89_c00346{left:654.471000px;}
.x18_c00346{left:662.310000px;}
.x4e_c00346{left:664.390500px;}
.x82_c00346{left:665.463000px;}
.xb2_c00346{left:667.170000px;}
.xe_c00346{left:675.270000px;}
.x90_c00346{left:677.220000px;}
.xc0_c00346{left:679.050000px;}
.x5d_c00346{left:685.375500px;}
.x42_c00346{left:687.003000px;}
.x96_c00346{left:688.381920px;}
.x22_c00346{left:695.076000px;}
.x54_c00346{left:696.870000px;}
.x9b_c00346{left:699.492000px;}
.xa1_c00346{left:700.650000px;}
.x19_c00346{left:705.510000px;}
.x3d_c00346{left:707.485500px;}
.x83_c00346{left:708.955500px;}
.x78_c00346{left:710.904000px;}
.xc1_c00346{left:712.800000px;}
.x43_c00346{left:718.315500px;}
.x5e_c00346{left:720.991500px;}
.xa2_c00346{left:722.790000px;}
.x31_c00346{left:728.446500px;}
.xf_c00346{left:739.260000px;}
.x2b_c00346{left:740.820000px;}
.xb3_c00346{left:745.470000px;}
.x64_c00346{left:754.197000px;}
.x91_c00346{left:755.232000px;}
.xc2_c00346{left:756.270000px;}
.xbb_c00346{left:757.312500px;}
.x23_c00346{left:761.745000px;}
.x3e_c00346{left:763.647000px;}
.x72_c00346{left:766.254000px;}
.x1a_c00346{left:772.740000px;}
.x4f_c00346{left:775.359000px;}
.x97_c00346{left:776.978676px;}
.xa9_c00346{left:778.680000px;}
.x65_c00346{left:788.014500px;}
.xbc_c00346{left:791.290500px;}
.x39_c00346{left:797.580000px;}
.x7d_c00346{left:799.863000px;}
.x10_c00346{left:806.760000px;}
.x55_c00346{left:807.840000px;}
.x50_c00346{left:809.124000px;}
.x32_c00346{left:818.586000px;}
.x84_c00346{left:821.797500px;}
.x9c_c00346{left:822.880500px;}
.x44_c00346{left:830.298000px;}
.x92_c00346{left:834.070500px;}
.xc3_c00346{left:859.410000px;}
@media print{
.v0_c00346{vertical-align:0.000000pt;}
.v1_c00346{vertical-align:2.741333pt;}
.ls0_c00346{letter-spacing:0.000000pt;}
.ws0_c00346{word-spacing:0.000000pt;}
._0_c00346{width:37.507557pt;}
.fsa_c00346{font-size:37.333333pt;}
.fs8_c00346{font-size:58.666667pt;}
.fs0_c00346{font-size:64.000000pt;}
.fs1_c00346{font-size:69.333333pt;}
.fs7_c00346{font-size:69.335552pt;}
.fs3_c00346{font-size:74.666667pt;}
.fs6_c00346{font-size:74.669056pt;}
.fs5_c00346{font-size:80.000000pt;}
.fs2_c00346{font-size:85.333333pt;}
.fs9_c00346{font-size:85.340544pt;}
.fs4_c00346{font-size:90.666667pt;}
.fsb_c00346{font-size:90.688605pt;}
.y0_c00346{bottom:0.000000pt;}
.yd0_c00346{bottom:45.126667pt;}
.yd1_c00346{bottom:45.745659pt;}
.yd2_c00346{bottom:46.363565pt;}
.yd3_c00346{bottom:48.026120pt;}
.yd4_c00346{bottom:48.482195pt;}
.yd5_c00346{bottom:51.272205pt;}
.yd6_c00346{bottom:51.927688pt;}
.yd7_c00346{bottom:52.559147pt;}
.yd8_c00346{bottom:54.110616pt;}
.ycf_c00346{bottom:80.880000pt;}
.yce_c00346{bottom:85.829333pt;}
.yc2_c00346{bottom:109.204000pt;}
.yc3_c00346{bottom:110.425081pt;}
.yc4_c00346{bottom:111.423724pt;}
.yc5_c00346{bottom:111.941523pt;}
.yc6_c00346{bottom:112.948347pt;}
.yc7_c00346{bottom:113.232527pt;}
.yc8_c00346{bottom:113.990375pt;}
.yc9_c00346{bottom:114.370651pt;}
.yca_c00346{bottom:115.146768pt;}
.ycb_c00346{bottom:115.393109pt;}
.ycc_c00346{bottom:116.435311pt;}
.ycd_c00346{bottom:116.827945pt;}
.yc1_c00346{bottom:154.865333pt;}
.yc0_c00346{bottom:189.766667pt;}
.ybf_c00346{bottom:218.436000pt;}
.ybe_c00346{bottom:246.112032pt;}
.ybd_c00346{bottom:246.509280pt;}
.ybc_c00346{bottom:246.989461pt;}
.ybb_c00346{bottom:247.619403pt;}
.yba_c00346{bottom:247.855573pt;}
.yb9_c00346{bottom:248.496971pt;}
.yb8_c00346{bottom:249.280843pt;}
.yb7_c00346{bottom:250.140565pt;}
.yb6_c00346{bottom:250.819851pt;}
.yb5_c00346{bottom:251.040000pt;}
.yb4_c00346{bottom:276.795413pt;}
.yb3_c00346{bottom:277.294805pt;}
.yb2_c00346{bottom:277.791904pt;}
.yb1_c00346{bottom:278.082208pt;}
.yb0_c00346{bottom:278.976885pt;}
.yaf_c00346{bottom:279.369013pt;}
.yae_c00346{bottom:279.666912pt;}
.yad_c00346{bottom:279.961451pt;}
.yac_c00346{bottom:280.948405pt;}
.yab_c00346{bottom:281.240821pt;}
.yaa_c00346{bottom:281.638421pt;}
.ya9_c00346{bottom:282.310400pt;}
.ya8_c00346{bottom:282.766155pt;}
.ya7_c00346{bottom:283.051573pt;}
.y96_c00346{bottom:310.656000pt;}
.y97_c00346{bottom:311.021152pt;}
.y98_c00346{bottom:311.482187pt;}
.y99_c00346{bottom:311.720459pt;}
.y9a_c00346{bottom:312.257877pt;}
.y9b_c00346{bottom:312.409771pt;}
.y9c_c00346{bottom:313.048821pt;}
.y9d_c00346{bottom:313.198699pt;}
.y9e_c00346{bottom:313.438496pt;}
.y9f_c00346{bottom:313.601643pt;}
.ya0_c00346{bottom:313.759275pt;}
.ya1_c00346{bottom:313.999211pt;}
.ya2_c00346{bottom:314.306261pt;}
.ya3_c00346{bottom:314.551840pt;}
.ya4_c00346{bottom:315.106592pt;}
.ya5_c00346{bottom:315.339147pt;}
.ya6_c00346{bottom:315.667221pt;}
.y95_c00346{bottom:340.722667pt;}
.y94_c00346{bottom:373.820000pt;}
.y93_c00346{bottom:374.181333pt;}
.y92_c00346{bottom:374.421333pt;}
.y91_c00346{bottom:374.653333pt;}
.y90_c00346{bottom:374.832000pt;}
.y8f_c00346{bottom:375.010667pt;}
.y8e_c00346{bottom:375.485333pt;}
.y8d_c00346{bottom:375.904000pt;}
.y8c_c00346{bottom:376.137333pt;}
.y8b_c00346{bottom:376.256000pt;}
.y8a_c00346{bottom:376.950667pt;}
.y89_c00346{bottom:377.073333pt;}
.y88_c00346{bottom:377.346667pt;}
.y87_c00346{bottom:377.520000pt;}
.y7c_c00346{bottom:399.846667pt;}
.y7d_c00346{bottom:401.060000pt;}
.y7e_c00346{bottom:401.368000pt;}
.y7f_c00346{bottom:401.994667pt;}
.y80_c00346{bottom:402.765333pt;}
.y81_c00346{bottom:403.701333pt;}
.y82_c00346{bottom:404.181333pt;}
.y83_c00346{bottom:406.273333pt;}
.y84_c00346{bottom:407.330667pt;}
.y85_c00346{bottom:407.645333pt;}
.y86_c00346{bottom:409.414667pt;}
.y7b_c00346{bottom:439.276000pt;}
.y7a_c00346{bottom:468.630667pt;}
.y6d_c00346{bottom:497.764000pt;}
.y6e_c00346{bottom:497.905333pt;}
.y6f_c00346{bottom:498.506667pt;}
.y70_c00346{bottom:499.254667pt;}
.y71_c00346{bottom:499.453333pt;}
.y72_c00346{bottom:499.665333pt;}
.y73_c00346{bottom:499.877333pt;}
.y74_c00346{bottom:500.221333pt;}
.y75_c00346{bottom:500.500000pt;}
.y76_c00346{bottom:500.757333pt;}
.y77_c00346{bottom:501.189333pt;}
.y78_c00346{bottom:501.805333pt;}
.y79_c00346{bottom:502.013333pt;}
.y60_c00346{bottom:529.444000pt;}
.y61_c00346{bottom:529.954667pt;}
.y62_c00346{bottom:531.005333pt;}
.y63_c00346{bottom:531.233333pt;}
.y64_c00346{bottom:531.872000pt;}
.y65_c00346{bottom:532.305333pt;}
.y66_c00346{bottom:532.736000pt;}
.y67_c00346{bottom:533.504000pt;}
.y68_c00346{bottom:533.828000pt;}
.y69_c00346{bottom:534.577333pt;}
.y6a_c00346{bottom:534.801333pt;}
.y6b_c00346{bottom:535.574667pt;}
.y6c_c00346{bottom:535.905333pt;}
.y53_c00346{bottom:559.921333pt;}
.y54_c00346{bottom:560.146667pt;}
.y55_c00346{bottom:560.533333pt;}
.y56_c00346{bottom:560.842667pt;}
.y57_c00346{bottom:561.461333pt;}
.y58_c00346{bottom:561.696000pt;}
.y59_c00346{bottom:561.940000pt;}
.y5a_c00346{bottom:562.725333pt;}
.y5b_c00346{bottom:562.961333pt;}
.y5c_c00346{bottom:563.268000pt;}
.y5d_c00346{bottom:563.900000pt;}
.y5e_c00346{bottom:564.153333pt;}
.y5f_c00346{bottom:564.777333pt;}
.y52_c00346{bottom:596.152000pt;}
.y51_c00346{bottom:628.512000pt;}
.y50_c00346{bottom:628.692000pt;}
.y4f_c00346{bottom:629.284000pt;}
.y4e_c00346{bottom:629.468000pt;}
.y4d_c00346{bottom:629.646667pt;}
.y4c_c00346{bottom:630.114667pt;}
.y4b_c00346{bottom:630.293333pt;}
.y4a_c00346{bottom:630.705333pt;}
.y49_c00346{bottom:631.061333pt;}
.y48_c00346{bottom:631.296000pt;}
.y47_c00346{bottom:631.533333pt;}
.y46_c00346{bottom:631.766667pt;}
.y45_c00346{bottom:632.161333pt;}
.y38_c00346{bottom:655.444000pt;}
.y39_c00346{bottom:655.796000pt;}
.y3a_c00346{bottom:656.136000pt;}
.y3b_c00346{bottom:657.530667pt;}
.y3c_c00346{bottom:657.878667pt;}
.y3d_c00346{bottom:658.934667pt;}
.y3e_c00346{bottom:659.180000pt;}
.y3f_c00346{bottom:659.525333pt;}
.y40_c00346{bottom:660.240000pt;}
.y41_c00346{bottom:661.442667pt;}
.y42_c00346{bottom:661.776000pt;}
.y43_c00346{bottom:662.617333pt;}
.y44_c00346{bottom:662.970667pt;}
.y2e_c00346{bottom:689.520000pt;}
.y2f_c00346{bottom:689.928000pt;}
.y30_c00346{bottom:690.208000pt;}
.y31_c00346{bottom:690.381333pt;}
.y32_c00346{bottom:690.974667pt;}
.y33_c00346{bottom:691.332000pt;}
.y34_c00346{bottom:691.504000pt;}
.y35_c00346{bottom:692.098667pt;}
.y36_c00346{bottom:692.633333pt;}
.y37_c00346{bottom:692.933333pt;}
.y2d_c00346{bottom:725.110667pt;}
.y27_c00346{bottom:755.513333pt;}
.y28_c00346{bottom:756.021333pt;}
.y29_c00346{bottom:756.973333pt;}
.y2a_c00346{bottom:757.148000pt;}
.y2b_c00346{bottom:757.510667pt;}
.y2c_c00346{bottom:757.949333pt;}
.y1b_c00346{bottom:779.040000pt;}
.y1c_c00346{bottom:780.398667pt;}
.y1d_c00346{bottom:780.864000pt;}
.y1e_c00346{bottom:781.332000pt;}
.y1f_c00346{bottom:781.801333pt;}
.y20_c00346{bottom:783.529333pt;}
.y21_c00346{bottom:784.001333pt;}
.y22_c00346{bottom:784.788000pt;}
.y23_c00346{bottom:785.578667pt;}
.y24_c00346{bottom:786.042667pt;}
.y25_c00346{bottom:787.620000pt;}
.y26_c00346{bottom:788.901333pt;}
.y11_c00346{bottom:811.440000pt;}
.y12_c00346{bottom:811.881333pt;}
.y13_c00346{bottom:813.465333pt;}
.y14_c00346{bottom:814.181333pt;}
.y15_c00346{bottom:814.925333pt;}
.y16_c00346{bottom:815.368000pt;}
.y17_c00346{bottom:816.393333pt;}
.y18_c00346{bottom:816.990667pt;}
.y19_c00346{bottom:818.621333pt;}
.y1a_c00346{bottom:819.661333pt;}
.y4_c00346{bottom:847.920000pt;}
.y5_c00346{bottom:848.049333pt;}
.y6_c00346{bottom:848.457333pt;}
.y7_c00346{bottom:848.658667pt;}
.y8_c00346{bottom:849.061333pt;}
.y9_c00346{bottom:849.205333pt;}
.ya_c00346{bottom:849.756000pt;}
.yb_c00346{bottom:849.960000pt;}
.yc_c00346{bottom:850.654667pt;}
.yd_c00346{bottom:850.860000pt;}
.ye_c00346{bottom:851.410667pt;}
.yf_c00346{bottom:851.825333pt;}
.y10_c00346{bottom:852.104000pt;}
.y3_c00346{bottom:881.530667pt;}
.y2_c00346{bottom:914.640000pt;}
.y1_c00346{bottom:993.714667pt;}
.hd_c00346{height:37.333333pt;}
.hb_c00346{height:58.666667pt;}
.h2_c00346{height:64.000000pt;}
.h3_c00346{height:69.333333pt;}
.ha_c00346{height:69.335552pt;}
.h5_c00346{height:74.666667pt;}
.h9_c00346{height:74.669056pt;}
.h8_c00346{height:80.000000pt;}
.h4_c00346{height:85.333333pt;}
.hc_c00346{height:85.340544pt;}
.h6_c00346{height:90.666667pt;}
.he_c00346{height:90.688605pt;}
.h7_c00346{height:93.408000pt;}
.h1_c00346{height:1108.666667pt;}
.h0_c00346{height:1108.800000pt;}
.w0_c00346{width:813.333333pt;}
.x0_c00346{left:0.000000pt;}
.xa3_c00346{left:88.320000pt;}
.x11_c00346{left:109.200000pt;}
.x24_c00346{left:110.332000pt;}
.x51_c00346{left:112.320000pt;}
.x7e_c00346{left:113.769333pt;}
.x8a_c00346{left:114.993333pt;}
.xaa_c00346{left:115.920000pt;}
.xb4_c00346{left:116.912000pt;}
.x1b_c00346{left:118.830667pt;}
.x66_c00346{left:132.133333pt;}
.x1c_c00346{left:137.346667pt;}
.x25_c00346{left:139.713333pt;}
.x7f_c00346{left:142.764000pt;}
.xc4_c00346{left:145.530667pt;}
.x6c_c00346{left:150.234667pt;}
.xa4_c00346{left:152.880000pt;}
.xbd_c00346{left:154.800000pt;}
.x5f_c00346{left:159.537333pt;}
.x73_c00346{left:160.554667pt;}
.xab_c00346{left:163.200000pt;}
.x33_c00346{left:167.390667pt;}
.x3f_c00346{left:168.409333pt;}
.x6d_c00346{left:169.674667pt;}
.xc5_c00346{left:173.617333pt;}
.x45_c00346{left:176.838667pt;}
.x3a_c00346{left:178.390667pt;}
.x9d_c00346{left:180.240000pt;}
.x12_c00346{left:186.000000pt;}
.x56_c00346{left:188.525333pt;}
.x85_c00346{left:189.832000pt;}
.x1d_c00346{left:195.686667pt;}
.x74_c00346{left:197.514667pt;}
.xa5_c00346{left:199.920000pt;}
.x6_c00346{left:204.000000pt;}
.x35_c00346{left:206.640000pt;}
.x79_c00346{left:207.850667pt;}
.xb5_c00346{left:210.841333pt;}
.x46_c00346{left:215.716000pt;}
.x67_c00346{left:218.054667pt;}
.x1e_c00346{left:224.505333pt;}
.x57_c00346{left:227.193333pt;}
.xac_c00346{left:228.720000pt;}
.x1_c00346{left:242.160000pt;}
.x13_c00346{left:243.360000pt;}
.x26_c00346{left:245.321333pt;}
.x7a_c00346{left:247.037333pt;}
.x8b_c00346{left:248.050667pt;}
.xc6_c00346{left:249.188000pt;}
.x7_c00346{left:253.920000pt;}
.x47_c00346{left:255.308000pt;}
.x93_c00346{left:256.203829pt;}
.x6e_c00346{left:265.914667pt;}
.x9e_c00346{left:267.600000pt;}
.xc7_c00346{left:269.918667pt;}
.x34_c00346{left:273.213333pt;}
.x52_c00346{left:274.320000pt;}
.x60_c00346{left:275.714667pt;}
.x8_c00346{left:282.480000pt;}
.x2c_c00346{left:283.773333pt;}
.x75_c00346{left:285.834667pt;}
.xb6_c00346{left:287.660000pt;}
.x27_c00346{left:293.085333pt;}
.x48_c00346{left:294.405333pt;}
.x86_c00346{left:296.152000pt;}
.x14_c00346{left:301.920000pt;}
.x36_c00346{left:302.880000pt;}
.x58_c00346{left:304.450667pt;}
.xa6_c00346{left:306.720000pt;}
.x40_c00346{left:313.649333pt;}
.x8c_c00346{left:315.228000pt;}
.x68_c00346{left:324.850667pt;}
.xad_c00346{left:326.640000pt;}
.x15_c00346{left:332.160000pt;}
.x59_c00346{left:333.752000pt;}
.x98_c00346{left:335.348000pt;}
.x2_c00346{left:341.040000pt;}
.x9_c00346{left:342.000000pt;}
.x76_c00346{left:344.874667pt;}
.x3b_c00346{left:352.645333pt;}
.x49_c00346{left:353.684000pt;}
.x9f_c00346{left:355.440000pt;}
.x5a_c00346{left:364.228000pt;}
.x28_c00346{left:372.268000pt;}
.x6f_c00346{left:374.154667pt;}
.x1f_c00346{left:381.464000pt;}
.x69_c00346{left:383.405333pt;}
.xae_c00346{left:384.960000pt;}
.xa0_c00346{left:385.920000pt;}
.x16_c00346{left:391.440000pt;}
.xa7_c00346{left:394.320000pt;}
.xc8_c00346{left:396.737333pt;}
.x3_c00346{left:399.840000pt;}
.xa_c00346{left:401.040000pt;}
.x70_c00346{left:403.674667pt;}
.xb7_c00346{left:404.938667pt;}
.x20_c00346{left:410.524000pt;}
.x3c_c00346{left:412.173333pt;}
.x6a_c00346{left:413.624000pt;}
.x2d_c00346{left:421.269333pt;}
.x4a_c00346{left:422.329333pt;}
.x94_c00346{left:423.939979pt;}
.xb8_c00346{left:426.798667pt;}
.x4_c00346{left:428.880000pt;}
.xb_c00346{left:429.840000pt;}
.x53_c00346{left:431.520000pt;}
.x8d_c00346{left:432.830667pt;}
.xaf_c00346{left:434.880000pt;}
.x29_c00346{left:440.656000pt;}
.x41_c00346{left:450.889333pt;}
.x4b_c00346{left:452.089333pt;}
.x87_c00346{left:453.352000pt;}
.xc9_c00346{left:455.234667pt;}
.x37_c00346{left:460.560000pt;}
.x5b_c00346{left:462.368000pt;}
.xb0_c00346{left:464.400000pt;}
.x2e_c00346{left:470.433333pt;}
.x17_c00346{left:478.800000pt;}
.x2a_c00346{left:480.480000pt;}
.x61_c00346{left:482.076000pt;}
.x8e_c00346{left:483.198667pt;}
.xb9_c00346{left:485.094667pt;}
.x5c_c00346{left:491.866667pt;}
.xbe_c00346{left:493.920000pt;}
.x6b_c00346{left:502.648000pt;}
.xa8_c00346{left:504.000000pt;}
.x21_c00346{left:509.853333pt;}
.x62_c00346{left:511.586667pt;}
.x99_c00346{left:513.506667pt;}
.x7b_c00346{left:514.572000pt;}
.x5_c00346{left:518.400000pt;}
.x2f_c00346{left:519.864000pt;}
.x95_c00346{left:522.383488pt;}
.xca_c00346{left:525.756000pt;}
.x4c_c00346{left:530.105333pt;}
.x80_c00346{left:531.996000pt;}
.x8f_c00346{left:532.894667pt;}
.xc_c00346{left:539.040000pt;}
.x88_c00346{left:541.432000pt;}
.x9a_c00346{left:543.028000pt;}
.xbf_c00346{left:544.320000pt;}
.x30_c00346{left:548.889333pt;}
.xb1_c00346{left:552.960000pt;}
.x4d_c00346{left:559.848000pt;}
.x81_c00346{left:561.754667pt;}
.xd_c00346{left:568.320000pt;}
.x71_c00346{left:569.754667pt;}
.x77_c00346{left:571.674667pt;}
.xba_c00346{left:574.048000pt;}
.x38_c00346{left:578.640000pt;}
.x63_c00346{left:579.693333pt;}
.x7c_c00346{left:580.694667pt;}
.x89_c00346{left:581.752000pt;}
.x18_c00346{left:588.720000pt;}
.x4e_c00346{left:590.569333pt;}
.x82_c00346{left:591.522667pt;}
.xb2_c00346{left:593.040000pt;}
.xe_c00346{left:600.240000pt;}
.x90_c00346{left:601.973333pt;}
.xc0_c00346{left:603.600000pt;}
.x5d_c00346{left:609.222667pt;}
.x42_c00346{left:610.669333pt;}
.x96_c00346{left:611.895040pt;}
.x22_c00346{left:617.845333pt;}
.x54_c00346{left:619.440000pt;}
.x9b_c00346{left:621.770667pt;}
.xa1_c00346{left:622.800000pt;}
.x19_c00346{left:627.120000pt;}
.x3d_c00346{left:628.876000pt;}
.x83_c00346{left:630.182667pt;}
.x78_c00346{left:631.914667pt;}
.xc1_c00346{left:633.600000pt;}
.x43_c00346{left:638.502667pt;}
.x5e_c00346{left:640.881333pt;}
.xa2_c00346{left:642.480000pt;}
.x31_c00346{left:647.508000pt;}
.xf_c00346{left:657.120000pt;}
.x2b_c00346{left:658.506667pt;}
.xb3_c00346{left:662.640000pt;}
.x64_c00346{left:670.397333pt;}
.x91_c00346{left:671.317333pt;}
.xc2_c00346{left:672.240000pt;}
.xbb_c00346{left:673.166667pt;}
.x23_c00346{left:677.106667pt;}
.x3e_c00346{left:678.797333pt;}
.x72_c00346{left:681.114667pt;}
.x1a_c00346{left:686.880000pt;}
.x4f_c00346{left:689.208000pt;}
.x97_c00346{left:690.647712pt;}
.xa9_c00346{left:692.160000pt;}
.x65_c00346{left:700.457333pt;}
.xbc_c00346{left:703.369333pt;}
.x39_c00346{left:708.960000pt;}
.x7d_c00346{left:710.989333pt;}
.x10_c00346{left:717.120000pt;}
.x55_c00346{left:718.080000pt;}
.x50_c00346{left:719.221333pt;}
.x32_c00346{left:727.632000pt;}
.x84_c00346{left:730.486667pt;}
.x9c_c00346{left:731.449333pt;}
.x44_c00346{left:738.042667pt;}
.x92_c00346{left:741.396000pt;}
.xc3_c00346{left:763.920000pt;}
}





/* 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_c00347 {
    display:none;
  }
  .loading-indicator_c00347.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00347 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_c00347 { 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_c00347" -> "#page-container .classname_c00347")
 */
.pf_c00347 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00347 { /* 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_c00347.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00347 { /* 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_c00347 { /* 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_c00347 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00347 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00347 {overflow:visible;}
  }
}
.c_c00347 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00347 { /* 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_c00347:after { /* webkit #35443 */
  content: '';
}
.t_c00347:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00347 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 */
}
.__c00347 { /* 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_c00347 { /* info for Javascript */
  display:none;
}
.l_c00347 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00347 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00347 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00347: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_c00347 {
    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_c00347.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00347.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_c00347 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00347{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00347;src:url('chunks/assets/font_cfe63ee56e9e10a97d33a3db.woff2')format("woff");}.ff1_c00347{font-family:ff1_c00347;line-height:1.000000;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;}
.m17_c00347{transform:matrix(0.031820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.031820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.031820,0.000000,0.000000,0.250000,0,0);}
.m1a_c00347{transform:matrix(0.035575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.035575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.035575,0.000000,0.000000,0.250000,0,0);}
.m16_c00347{transform:matrix(0.040560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.040560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.040560,0.000000,0.000000,0.250000,0,0);}
.m28_c00347{transform:matrix(0.042425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.042425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.042425,0.000000,0.000000,0.250000,0,0);}
.m19_c00347{transform:matrix(0.050310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.050310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.050310,0.000000,0.000000,0.250000,0,0);}
.m29_c00347{transform:matrix(0.054085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054085,0.000000,0.000000,0.250000,0,0);}
.m21_c00347{transform:matrix(0.056250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.056250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.056250,0.000000,0.000000,0.250000,0,0);}
.m6_c00347{transform:matrix(0.057365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.057365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.057365,0.000000,0.000000,0.250000,0,0);}
.m15_c00347{transform:matrix(0.060585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060585,0.000000,0.000000,0.250000,0,0);}
.m2a_c00347{transform:matrix(0.061845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.061845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.061845,0.000000,0.000000,0.250000,0,0);}
.ma_c00347{transform:matrix(0.065600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065600,0.000000,0.000000,0.250000,0,0);}
.m3_c00347{transform:matrix(0.070710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.070710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.070710,0.000000,0.000000,0.250000,0,0);}
.m7_c00347{transform:matrix(0.072035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072035,0.000000,0.000000,0.250000,0,0);}
.m0_c00347{transform:matrix(0.081900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.081900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.081900,0.000000,0.000000,0.250000,0,0);}
.m12_c00347{transform:matrix(0.084855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084855,0.000000,0.000000,0.250000,0,0);}
.m1d_c00347{transform:matrix(0.085675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.085675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.085675,0.000000,0.000000,0.250000,0,0);}
.m26_c00347{transform:matrix(0.096045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096045,0.000000,0.000000,0.250000,0,0);}
.m23_c00347{transform:matrix(0.096120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096120,0.000000,0.000000,0.250000,0,0);}
.m1c_c00347{transform:matrix(0.096775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096775,0.000000,0.000000,0.250000,0,0);}
.m4_c00347{transform:matrix(0.103720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103720,0.000000,0.000000,0.250000,0,0);}
.mf_c00347{transform:matrix(0.111370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111370,0.000000,0.000000,0.250000,0,0);}
.m18_c00347{transform:matrix(0.140960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140960,0.000000,0.000000,0.250000,0,0);}
.m4e_c00347{transform:matrix(0.144026,-0.001008,0.001750,0.249994,0,0);-ms-transform:matrix(0.144026,-0.001008,0.001750,0.249994,0,0);-webkit-transform:matrix(0.144026,-0.001008,0.001750,0.249994,0,0);}
.m3a_c00347{transform:matrix(0.144751,-0.001013,0.001750,0.249994,0,0);-ms-transform:matrix(0.144751,-0.001013,0.001750,0.249994,0,0);-webkit-transform:matrix(0.144751,-0.001013,0.001750,0.249994,0,0);}
.m1_c00347{transform:matrix(0.146680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146680,0.000000,0.000000,0.250000,0,0);}
.m27_c00347{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00347{transform:matrix(0.151701,-0.001062,0.001750,0.249994,0,0);-ms-transform:matrix(0.151701,-0.001062,0.001750,0.249994,0,0);-webkit-transform:matrix(0.151701,-0.001062,0.001750,0.249994,0,0);}
.m1f_c00347{transform:matrix(0.154765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154765,0.000000,0.000000,0.250000,0,0);}
.m3b_c00347{transform:matrix(0.157566,-0.001103,0.001750,0.249994,0,0);-ms-transform:matrix(0.157566,-0.001103,0.001750,0.249994,0,0);-webkit-transform:matrix(0.157566,-0.001103,0.001750,0.249994,0,0);}
.m20_c00347{transform:matrix(0.158215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158215,0.000000,0.000000,0.250000,0,0);}
.md_c00347{transform:matrix(0.159895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159895,0.000000,0.000000,0.250000,0,0);}
.m3f_c00347{transform:matrix(0.161061,-0.001127,0.001750,0.249994,0,0);-ms-transform:matrix(0.161061,-0.001127,0.001750,0.249994,0,0);-webkit-transform:matrix(0.161061,-0.001127,0.001750,0.249994,0,0);}
.m9_c00347{transform:matrix(0.171025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171025,0.000000,0.000000,0.250000,0,0);}
.m3e_c00347{transform:matrix(0.174806,-0.001224,0.001750,0.249994,0,0);-ms-transform:matrix(0.174806,-0.001224,0.001750,0.249994,0,0);-webkit-transform:matrix(0.174806,-0.001224,0.001750,0.249994,0,0);}
.m25_c00347{transform:matrix(0.175730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175730,0.000000,0.000000,0.250000,0,0);}
.m3c_c00347{transform:matrix(0.176951,-0.001239,0.001750,0.249994,0,0);-ms-transform:matrix(0.176951,-0.001239,0.001750,0.249994,0,0);-webkit-transform:matrix(0.176951,-0.001239,0.001750,0.249994,0,0);}
.m13_c00347{transform:matrix(0.181175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181175,0.000000,0.000000,0.250000,0,0);}
.m40_c00347{transform:matrix(0.190235,-0.001332,0.001750,0.249994,0,0);-ms-transform:matrix(0.190235,-0.001332,0.001750,0.249994,0,0);-webkit-transform:matrix(0.190235,-0.001332,0.001750,0.249994,0,0);}
.m5_c00347{transform:matrix(0.191655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191655,0.000000,0.000000,0.250000,0,0);}
.m47_c00347{transform:matrix(0.196940,-0.001379,0.001750,0.249994,0,0);-ms-transform:matrix(0.196940,-0.001379,0.001750,0.249994,0,0);-webkit-transform:matrix(0.196940,-0.001379,0.001750,0.249994,0,0);}
.m5f_c00347{transform:matrix(0.199768,-0.002197,0.002750,0.249985,0,0);-ms-transform:matrix(0.199768,-0.002197,0.002750,0.249985,0,0);-webkit-transform:matrix(0.199768,-0.002197,0.002750,0.249985,0,0);}
.m61_c00347{transform:matrix(0.202063,-0.002223,0.002750,0.249985,0,0);-ms-transform:matrix(0.202063,-0.002223,0.002750,0.249985,0,0);-webkit-transform:matrix(0.202063,-0.002223,0.002750,0.249985,0,0);}
.me_c00347{transform:matrix(0.204020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204020,0.000000,0.000000,0.250000,0,0);}
.m41_c00347{transform:matrix(0.207125,-0.001450,0.001750,0.249994,0,0);-ms-transform:matrix(0.207125,-0.001450,0.001750,0.249994,0,0);-webkit-transform:matrix(0.207125,-0.001450,0.001750,0.249994,0,0);}
.m24_c00347{transform:matrix(0.207440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207440,0.000000,0.000000,0.250000,0,0);}
.m49_c00347{transform:matrix(0.209240,-0.001465,0.001750,0.249994,0,0);-ms-transform:matrix(0.209240,-0.001465,0.001750,0.249994,0,0);-webkit-transform:matrix(0.209240,-0.001465,0.001750,0.249994,0,0);}
.m45_c00347{transform:matrix(0.215145,-0.001506,0.001750,0.249994,0,0);-ms-transform:matrix(0.215145,-0.001506,0.001750,0.249994,0,0);-webkit-transform:matrix(0.215145,-0.001506,0.001750,0.249994,0,0);}
.m5a_c00347{transform:matrix(0.216452,-0.002381,0.002750,0.249985,0,0);-ms-transform:matrix(0.216452,-0.002381,0.002750,0.249985,0,0);-webkit-transform:matrix(0.216452,-0.002381,0.002750,0.249985,0,0);}
.m5c_c00347{transform:matrix(0.216937,-0.002386,0.002750,0.249985,0,0);-ms-transform:matrix(0.216937,-0.002386,0.002750,0.249985,0,0);-webkit-transform:matrix(0.216937,-0.002386,0.002750,0.249985,0,0);}
.m5d_c00347{transform:matrix(0.217937,-0.002397,0.002750,0.249985,0,0);-ms-transform:matrix(0.217937,-0.002397,0.002750,0.249985,0,0);-webkit-transform:matrix(0.217937,-0.002397,0.002750,0.249985,0,0);}
.m46_c00347{transform:matrix(0.218840,-0.001532,0.001750,0.249994,0,0);-ms-transform:matrix(0.218840,-0.001532,0.001750,0.249994,0,0);-webkit-transform:matrix(0.218840,-0.001532,0.001750,0.249994,0,0);}
.m5e_c00347{transform:matrix(0.222097,-0.002443,0.002750,0.249985,0,0);-ms-transform:matrix(0.222097,-0.002443,0.002750,0.249985,0,0);-webkit-transform:matrix(0.222097,-0.002443,0.002750,0.249985,0,0);}
.m56_c00347{transform:matrix(0.222845,-0.001560,0.001750,0.249994,0,0);-ms-transform:matrix(0.222845,-0.001560,0.001750,0.249994,0,0);-webkit-transform:matrix(0.222845,-0.001560,0.001750,0.249994,0,0);}
.m1b_c00347{transform:matrix(0.227795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227795,0.000000,0.000000,0.250000,0,0);}
.m4c_c00347{transform:matrix(0.228879,-0.001602,0.001750,0.249994,0,0);-ms-transform:matrix(0.228879,-0.001602,0.001750,0.249994,0,0);-webkit-transform:matrix(0.228879,-0.001602,0.001750,0.249994,0,0);}
.m31_c00347{transform:matrix(0.229459,-0.005507,0.005998,0.249928,0,0);-ms-transform:matrix(0.229459,-0.005507,0.005998,0.249928,0,0);-webkit-transform:matrix(0.229459,-0.005507,0.005998,0.249928,0,0);}
.m53_c00347{transform:matrix(0.232089,-0.001625,0.001750,0.249994,0,0);-ms-transform:matrix(0.232089,-0.001625,0.001750,0.249994,0,0);-webkit-transform:matrix(0.232089,-0.001625,0.001750,0.249994,0,0);}
.m50_c00347{transform:matrix(0.232589,-0.001628,0.001750,0.249994,0,0);-ms-transform:matrix(0.232589,-0.001628,0.001750,0.249994,0,0);-webkit-transform:matrix(0.232589,-0.001628,0.001750,0.249994,0,0);}
.m39_c00347{transform:matrix(0.233173,-0.005596,0.005998,0.249928,0,0);-ms-transform:matrix(0.233173,-0.005596,0.005998,0.249928,0,0);-webkit-transform:matrix(0.233173,-0.005596,0.005998,0.249928,0,0);}
.m8_c00347{transform:matrix(0.234095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234095,0.000000,0.000000,0.250000,0,0);}
.m48_c00347{transform:matrix(0.236064,-0.001652,0.001750,0.249994,0,0);-ms-transform:matrix(0.236064,-0.001652,0.001750,0.249994,0,0);-webkit-transform:matrix(0.236064,-0.001652,0.001750,0.249994,0,0);}
.m55_c00347{transform:matrix(0.237029,-0.001659,0.001750,0.249994,0,0);-ms-transform:matrix(0.237029,-0.001659,0.001750,0.249994,0,0);-webkit-transform:matrix(0.237029,-0.001659,0.001750,0.249994,0,0);}
.m60_c00347{transform:matrix(0.239705,-0.002637,0.002750,0.249985,0,0);-ms-transform:matrix(0.239705,-0.002637,0.002750,0.249985,0,0);-webkit-transform:matrix(0.239705,-0.002637,0.002750,0.249985,0,0);}
.m4a_c00347{transform:matrix(0.240034,-0.001680,0.001750,0.249994,0,0);-ms-transform:matrix(0.240034,-0.001680,0.001750,0.249994,0,0);-webkit-transform:matrix(0.240034,-0.001680,0.001750,0.249994,0,0);}
.m4f_c00347{transform:matrix(0.242189,-0.001695,0.001750,0.249994,0,0);-ms-transform:matrix(0.242189,-0.001695,0.001750,0.249994,0,0);-webkit-transform:matrix(0.242189,-0.001695,0.001750,0.249994,0,0);}
.m5b_c00347{transform:matrix(0.243825,-0.002682,0.002750,0.249985,0,0);-ms-transform:matrix(0.243825,-0.002682,0.002750,0.249985,0,0);-webkit-transform:matrix(0.243825,-0.002682,0.002750,0.249985,0,0);}
.m52_c00347{transform:matrix(0.245969,-0.001722,0.001750,0.249994,0,0);-ms-transform:matrix(0.245969,-0.001722,0.001750,0.249994,0,0);-webkit-transform:matrix(0.245969,-0.001722,0.001750,0.249994,0,0);}
.m59_c00347{transform:matrix(0.247405,-0.002721,0.002750,0.249985,0,0);-ms-transform:matrix(0.247405,-0.002721,0.002750,0.249985,0,0);-webkit-transform:matrix(0.247405,-0.002721,0.002750,0.249985,0,0);}
.m32_c00347{transform:matrix(0.248249,-0.005958,0.005998,0.249928,0,0);-ms-transform:matrix(0.248249,-0.005958,0.005998,0.249928,0,0);-webkit-transform:matrix(0.248249,-0.005958,0.005998,0.249928,0,0);}
.m2_c00347{transform:matrix(0.248295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248295,0.000000,0.000000,0.250000,0,0);}
.mc_c00347{transform:matrix(0.252810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252810,0.000000,0.000000,0.250000,0,0);}
.m62_c00347{transform:matrix(0.253250,-0.002786,0.002750,0.249985,0,0);-ms-transform:matrix(0.253250,-0.002786,0.002750,0.249985,0,0);-webkit-transform:matrix(0.253250,-0.002786,0.002750,0.249985,0,0);}
.m54_c00347{transform:matrix(0.255424,-0.001788,0.001750,0.249994,0,0);-ms-transform:matrix(0.255424,-0.001788,0.001750,0.249994,0,0);-webkit-transform:matrix(0.255424,-0.001788,0.001750,0.249994,0,0);}
.m30_c00347{transform:matrix(0.260035,-0.006241,0.005998,0.249928,0,0);-ms-transform:matrix(0.260035,-0.006241,0.005998,0.249928,0,0);-webkit-transform:matrix(0.260035,-0.006241,0.005998,0.249928,0,0);}
.m35_c00347{transform:matrix(0.260660,-0.006256,0.005998,0.249928,0,0);-ms-transform:matrix(0.260660,-0.006256,0.005998,0.249928,0,0);-webkit-transform:matrix(0.260660,-0.006256,0.005998,0.249928,0,0);}
.m11_c00347{transform:matrix(0.260890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260890,0.000000,0.000000,0.250000,0,0);}
.m43_c00347{transform:matrix(0.260984,-0.001827,0.001750,0.249994,0,0);-ms-transform:matrix(0.260984,-0.001827,0.001750,0.249994,0,0);-webkit-transform:matrix(0.260984,-0.001827,0.001750,0.249994,0,0);}
.m34_c00347{transform:matrix(0.264134,-0.006339,0.005998,0.249928,0,0);-ms-transform:matrix(0.264134,-0.006339,0.005998,0.249928,0,0);-webkit-transform:matrix(0.264134,-0.006339,0.005998,0.249928,0,0);}
.m14_c00347{transform:matrix(0.268355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268355,0.000000,0.000000,0.250000,0,0);}
.m44_c00347{transform:matrix(0.271123,-0.001898,0.001750,0.249994,0,0);-ms-transform:matrix(0.271123,-0.001898,0.001750,0.249994,0,0);-webkit-transform:matrix(0.271123,-0.001898,0.001750,0.249994,0,0);}
.m33_c00347{transform:matrix(0.277070,-0.006650,0.005998,0.249928,0,0);-ms-transform:matrix(0.277070,-0.006650,0.005998,0.249928,0,0);-webkit-transform:matrix(0.277070,-0.006650,0.005998,0.249928,0,0);}
.m2e_c00347{transform:matrix(0.290096,-0.006962,0.005998,0.249928,0,0);-ms-transform:matrix(0.290096,-0.006962,0.005998,0.249928,0,0);-webkit-transform:matrix(0.290096,-0.006962,0.005998,0.249928,0,0);}
.m2f_c00347{transform:matrix(0.295075,-0.007082,0.005998,0.249928,0,0);-ms-transform:matrix(0.295075,-0.007082,0.005998,0.249928,0,0);-webkit-transform:matrix(0.295075,-0.007082,0.005998,0.249928,0,0);}
.m38_c00347{transform:matrix(0.297869,-0.007149,0.005998,0.249928,0,0);-ms-transform:matrix(0.297869,-0.007149,0.005998,0.249928,0,0);-webkit-transform:matrix(0.297869,-0.007149,0.005998,0.249928,0,0);}
.m37_c00347{transform:matrix(0.301988,-0.007248,0.005998,0.249928,0,0);-ms-transform:matrix(0.301988,-0.007248,0.005998,0.249928,0,0);-webkit-transform:matrix(0.301988,-0.007248,0.005998,0.249928,0,0);}
.m57_c00347{transform:matrix(0.306692,-0.002147,0.001750,0.249994,0,0);-ms-transform:matrix(0.306692,-0.002147,0.001750,0.249994,0,0);-webkit-transform:matrix(0.306692,-0.002147,0.001750,0.249994,0,0);}
.m63_c00347{transform:matrix(0.307271,-0.003380,0.002750,0.249985,0,0);-ms-transform:matrix(0.307271,-0.003380,0.002750,0.249985,0,0);-webkit-transform:matrix(0.307271,-0.003380,0.002750,0.249985,0,0);}
.m58_c00347{transform:matrix(0.307766,-0.003385,0.002750,0.249985,0,0);-ms-transform:matrix(0.307766,-0.003385,0.002750,0.249985,0,0);-webkit-transform:matrix(0.307766,-0.003385,0.002750,0.249985,0,0);}
.m1e_c00347{transform:matrix(0.308915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308915,0.000000,0.000000,0.250000,0,0);}
.m36_c00347{transform:matrix(0.336433,-0.008074,0.005998,0.249928,0,0);-ms-transform:matrix(0.336433,-0.008074,0.005998,0.249928,0,0);-webkit-transform:matrix(0.336433,-0.008074,0.005998,0.249928,0,0);}
.m51_c00347{transform:matrix(0.340067,-0.002380,0.001750,0.249994,0,0);-ms-transform:matrix(0.340067,-0.002380,0.001750,0.249994,0,0);-webkit-transform:matrix(0.340067,-0.002380,0.001750,0.249994,0,0);}
.m42_c00347{transform:matrix(0.342952,-0.002401,0.001750,0.249994,0,0);-ms-transform:matrix(0.342952,-0.002401,0.001750,0.249994,0,0);-webkit-transform:matrix(0.342952,-0.002401,0.001750,0.249994,0,0);}
.m4d_c00347{transform:matrix(0.344487,-0.002411,0.001750,0.249994,0,0);-ms-transform:matrix(0.344487,-0.002411,0.001750,0.249994,0,0);-webkit-transform:matrix(0.344487,-0.002411,0.001750,0.249994,0,0);}
.m10_c00347{transform:matrix(0.366275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366275,0.000000,0.000000,0.250000,0,0);}
.m22_c00347{transform:matrix(0.401115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401115,0.000000,0.000000,0.250000,0,0);}
.m4b_c00347{transform:matrix(0.406275,-0.002844,0.001750,0.249994,0,0);-ms-transform:matrix(0.406275,-0.002844,0.001750,0.249994,0,0);-webkit-transform:matrix(0.406275,-0.002844,0.001750,0.249994,0,0);}
.mb_c00347{transform:matrix(0.476705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.476705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.476705,0.000000,0.000000,0.250000,0,0);}
.m2b_c00347{transform:matrix(0.505670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505670,0.000000,0.000000,0.250000,0,0);}
.m2c_c00347{transform:matrix(0.530120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530120,0.000000,0.000000,0.250000,0,0);}
.m2d_c00347{transform:matrix(0.569841,-0.013676,0.005998,0.249928,0,0);-ms-transform:matrix(0.569841,-0.013676,0.005998,0.249928,0,0);-webkit-transform:matrix(0.569841,-0.013676,0.005998,0.249928,0,0);}
.v0_c00347{vertical-align:0.000000px;}
.ls0_c00347{letter-spacing:0.000000px;}
.sc__c00347{text-shadow:none;}
.sc0_c00347{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__c00347{-webkit-text-stroke:0px transparent;}
.sc0_c00347{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00347{word-spacing:0.000000px;}
.fc0_c00347{color:transparent;}
.fs1_c00347{font-size:18.000000px;}
.fs0_c00347{font-size:24.000000px;}
.fs2_c00347{font-size:36.000000px;}
.fs3_c00347{font-size:72.020733px;}
.fs6_c00347{font-size:84.002058px;}
.fs7_c00347{font-size:84.005082px;}
.fs5_c00347{font-size:90.002205px;}
.fs4_c00347{font-size:120.002940px;}
.y0_c00347{bottom:0.000000px;}
.y54_c00347{bottom:902.073000px;}
.y55_c00347{bottom:902.371815px;}
.y56_c00347{bottom:902.867574px;}
.y57_c00347{bottom:903.856716px;}
.y58_c00347{bottom:905.083507px;}
.y59_c00347{bottom:905.448801px;}
.y5a_c00347{bottom:906.042834px;}
.y5b_c00347{bottom:906.654390px;}
.y5c_c00347{bottom:907.013776px;}
.y5d_c00347{bottom:908.352933px;}
.y5e_c00347{bottom:908.706924px;}
.y5f_c00347{bottom:909.060205px;}
.y4b_c00347{bottom:938.791187px;}
.y4c_c00347{bottom:939.680856px;}
.y4d_c00347{bottom:940.402263px;}
.y4e_c00347{bottom:941.293928px;}
.y4f_c00347{bottom:941.608721px;}
.y50_c00347{bottom:942.253056px;}
.y51_c00347{bottom:942.507566px;}
.y52_c00347{bottom:942.941266px;}
.y53_c00347{bottom:943.338632px;}
.y3f_c00347{bottom:974.197422px;}
.y40_c00347{bottom:974.941553px;}
.y41_c00347{bottom:975.558906px;}
.y42_c00347{bottom:976.504137px;}
.y43_c00347{bottom:977.740114px;}
.y44_c00347{bottom:978.192396px;}
.y45_c00347{bottom:979.686744px;}
.y46_c00347{bottom:980.157265px;}
.y47_c00347{bottom:981.416667px;}
.y48_c00347{bottom:981.734753px;}
.y49_c00347{bottom:982.655804px;}
.y4a_c00347{bottom:983.141091px;}
.y36_c00347{bottom:1011.352500px;}
.y37_c00347{bottom:1011.896663px;}
.y38_c00347{bottom:1012.182242px;}
.y39_c00347{bottom:1013.054088px;}
.y3a_c00347{bottom:1013.766040px;}
.y3b_c00347{bottom:1014.198725px;}
.y3c_c00347{bottom:1014.435500px;}
.y3d_c00347{bottom:1014.881739px;}
.y3e_c00347{bottom:1015.397541px;}
.y29_c00347{bottom:1042.885500px;}
.y2a_c00347{bottom:1044.327480px;}
.y2b_c00347{bottom:1045.976208px;}
.y2c_c00347{bottom:1047.562260px;}
.y2d_c00347{bottom:1048.403472px;}
.y2e_c00347{bottom:1049.179128px;}
.y2f_c00347{bottom:1049.699724px;}
.y30_c00347{bottom:1052.024892px;}
.y31_c00347{bottom:1052.785788px;}
.y32_c00347{bottom:1054.245840px;}
.y33_c00347{bottom:1056.028380px;}
.y34_c00347{bottom:1056.813468px;}
.y35_c00347{bottom:1058.630568px;}
.y21_c00347{bottom:1086.480000px;}
.y15_c00347{bottom:1087.831500px;}
.y22_c00347{bottom:1087.927500px;}
.y23_c00347{bottom:1088.167500px;}
.y16_c00347{bottom:1088.986500px;}
.y24_c00347{bottom:1090.462500px;}
.y25_c00347{bottom:1090.632000px;}
.y17_c00347{bottom:1090.779000px;}
.y26_c00347{bottom:1091.149500px;}
.y27_c00347{bottom:1091.283000px;}
.y28_c00347{bottom:1091.745000px;}
.y18_c00347{bottom:1092.733500px;}
.y19_c00347{bottom:1093.225500px;}
.y1a_c00347{bottom:1093.612500px;}
.y1b_c00347{bottom:1094.278500px;}
.y1c_c00347{bottom:1094.766000px;}
.y1d_c00347{bottom:1095.159000px;}
.y1e_c00347{bottom:1095.436500px;}
.y1f_c00347{bottom:1095.727500px;}
.y20_c00347{bottom:1096.240500px;}
.y14_c00347{bottom:1099.390500px;}
.y13_c00347{bottom:1149.120000px;}
.y11_c00347{bottom:1150.741500px;}
.y12_c00347{bottom:1158.705000px;}
.y10_c00347{bottom:1171.792500px;}
.ye_c00347{bottom:1176.930000px;}
.yf_c00347{bottom:1186.290000px;}
.yd_c00347{bottom:1198.246500px;}
.ya_c00347{bottom:1207.170000px;}
.yb_c00347{bottom:1208.616000px;}
.y7_c00347{bottom:1215.270000px;}
.yc_c00347{bottom:1217.214000px;}
.y8_c00347{bottom:1222.306500px;}
.y6_c00347{bottom:1223.688000px;}
.y9_c00347{bottom:1224.051000px;}
.y5_c00347{bottom:1226.697000px;}
.y3_c00347{bottom:1232.010000px;}
.y4_c00347{bottom:1232.482500px;}
.y2_c00347{bottom:1237.815000px;}
.y1_c00347{bottom:1244.317500px;}
.h3_c00347{height:18.000000px;}
.h2_c00347{height:24.000000px;}
.h4_c00347{height:36.000000px;}
.h5_c00347{height:72.020733px;}
.h8_c00347{height:84.002058px;}
.h9_c00347{height:84.005082px;}
.h7_c00347{height:90.002205px;}
.h6_c00347{height:120.002940px;}
.h0_c00347{height:1251.450000px;}
.h1_c00347{height:1251.750000px;}
.w0_c00347{width:915.000000px;}
.x0_c00347{left:0.000000px;}
.xd_c00347{left:3.522000px;}
.x59_c00347{left:26.778000px;}
.x34_c00347{left:45.676500px;}
.x5a_c00347{left:53.943000px;}
.x11_c00347{left:55.917000px;}
.x51_c00347{left:65.477204px;}
.x2d_c00347{left:90.190500px;}
.x23_c00347{left:92.962500px;}
.x5b_c00347{left:99.012000px;}
.x35_c00347{left:105.759000px;}
.x48_c00347{left:110.064348px;}
.xe_c00347{left:114.715500px;}
.x41_c00347{left:130.803000px;}
.x49_c00347{left:154.112685px;}
.x36_c00347{left:174.456000px;}
.x52_c00347{left:176.714927px;}
.xa_c00347{left:179.568000px;}
.x5c_c00347{left:188.934000px;}
.x14_c00347{left:193.200000px;}
.x42_c00347{left:208.540500px;}
.x4a_c00347{left:221.642378px;}
.x24_c00347{left:230.874000px;}
.x2e_c00347{left:234.894000px;}
.x37_c00347{left:240.541500px;}
.x43_c00347{left:249.337500px;}
.x2f_c00347{left:258.954000px;}
.x53_c00347{left:266.915297px;}
.x38_c00347{left:275.592000px;}
.x5d_c00347{left:300.460500px;}
.x39_c00347{left:307.911000px;}
.x4b_c00347{left:309.920552px;}
.x17_c00347{left:315.360000px;}
.x3a_c00347{left:329.602500px;}
.x5e_c00347{left:333.669000px;}
.x4c_c00347{left:342.173466px;}
.x18_c00347{left:363.690000px;}
.x44_c00347{left:373.887000px;}
.x54_c00347{left:378.438020px;}
.x25_c00347{left:381.262500px;}
.x5f_c00347{left:387.672000px;}
.x19_c00347{left:415.800000px;}
.x55_c00347{left:417.836747px;}
.x6_c00347{left:419.040000px;}
.x3b_c00347{left:426.484500px;}
.x1a_c00347{left:430.110000px;}
.x9_c00347{left:443.070000px;}
.x26_c00347{left:448.792500px;}
.x3c_c00347{left:458.188500px;}
.x1b_c00347{left:469.260000px;}
.x45_c00347{left:475.594500px;}
.x4d_c00347{left:482.505089px;}
.x30_c00347{left:488.421000px;}
.x56_c00347{left:498.312680px;}
.x27_c00347{left:500.062500px;}
.x31_c00347{left:505.440000px;}
.x1c_c00347{left:514.620000px;}
.x3d_c00347{left:519.024000px;}
.x57_c00347{left:530.170959px;}
.x28_c00347{left:537.579000px;}
.x1d_c00347{left:542.160000px;}
.x32_c00347{left:557.232000px;}
.x29_c00347{left:567.778500px;}
.x33_c00347{left:570.510000px;}
.x4e_c00347{left:572.415179px;}
.x7_c00347{left:575.910000px;}
.x5_c00347{left:578.083500px;}
.x1e_c00347{left:579.690000px;}
.x58_c00347{left:584.413581px;}
.x2a_c00347{left:589.161000px;}
.x3e_c00347{left:593.296500px;}
.x1f_c00347{left:595.620000px;}
.x60_c00347{left:597.681000px;}
.x2b_c00347{left:611.553000px;}
.x20_c00347{left:616.680000px;}
.x3f_c00347{left:626.008500px;}
.x61_c00347{left:629.862000px;}
.x46_c00347{left:634.980000px;}
.x1_c00347{left:645.570000px;}
.x3_c00347{left:647.460000px;}
.x21_c00347{left:648.540000px;}
.x2c_c00347{left:650.977500px;}
.x8_c00347{left:652.590000px;}
.x4_c00347{left:656.100000px;}
.x16_c00347{left:658.530000px;}
.x4f_c00347{left:660.930342px;}
.x62_c00347{left:661.978500px;}
.x50_c00347{left:695.541141px;}
.x40_c00347{left:701.721000px;}
.x47_c00347{left:708.666000px;}
.xb_c00347{left:720.823500px;}
.x10_c00347{left:722.298000px;}
.x12_c00347{left:734.941500px;}
.x22_c00347{left:754.650000px;}
.x13_c00347{left:770.851500px;}
.xf_c00347{left:776.149500px;}
.x2_c00347{left:792.450000px;}
.xc_c00347{left:854.977500px;}
.x15_c00347{left:856.806000px;}
@media print{
.v0_c00347{vertical-align:0.000000pt;}
.ls0_c00347{letter-spacing:0.000000pt;}
.ws0_c00347{word-spacing:0.000000pt;}
.fs1_c00347{font-size:16.000000pt;}
.fs0_c00347{font-size:21.333333pt;}
.fs2_c00347{font-size:32.000000pt;}
.fs3_c00347{font-size:64.018429pt;}
.fs6_c00347{font-size:74.668496pt;}
.fs7_c00347{font-size:74.671184pt;}
.fs5_c00347{font-size:80.001960pt;}
.fs4_c00347{font-size:106.669280pt;}
.y0_c00347{bottom:0.000000pt;}
.y54_c00347{bottom:801.842667pt;}
.y55_c00347{bottom:802.108280pt;}
.y56_c00347{bottom:802.548955pt;}
.y57_c00347{bottom:803.428192pt;}
.y58_c00347{bottom:804.518673pt;}
.y59_c00347{bottom:804.843379pt;}
.y5a_c00347{bottom:805.371408pt;}
.y5b_c00347{bottom:805.915013pt;}
.y5c_c00347{bottom:806.234468pt;}
.y5d_c00347{bottom:807.424829pt;}
.y5e_c00347{bottom:807.739488pt;}
.y5f_c00347{bottom:808.053516pt;}
.y4b_c00347{bottom:834.481055pt;}
.y4c_c00347{bottom:835.271872pt;}
.y4d_c00347{bottom:835.913123pt;}
.y4e_c00347{bottom:836.705713pt;}
.y4f_c00347{bottom:836.985529pt;}
.y50_c00347{bottom:837.558272pt;}
.y51_c00347{bottom:837.784503pt;}
.y52_c00347{bottom:838.170015pt;}
.y53_c00347{bottom:838.523228pt;}
.y3f_c00347{bottom:865.953264pt;}
.y40_c00347{bottom:866.614713pt;}
.y41_c00347{bottom:867.163472pt;}
.y42_c00347{bottom:868.003677pt;}
.y43_c00347{bottom:869.102324pt;}
.y44_c00347{bottom:869.504352pt;}
.y45_c00347{bottom:870.832661pt;}
.y46_c00347{bottom:871.250903pt;}
.y47_c00347{bottom:872.370371pt;}
.y48_c00347{bottom:872.653113pt;}
.y49_c00347{bottom:873.471825pt;}
.y4a_c00347{bottom:873.903192pt;}
.y36_c00347{bottom:898.980000pt;}
.y37_c00347{bottom:899.463700pt;}
.y38_c00347{bottom:899.717548pt;}
.y39_c00347{bottom:900.492523pt;}
.y3a_c00347{bottom:901.125369pt;}
.y3b_c00347{bottom:901.509977pt;}
.y3c_c00347{bottom:901.720444pt;}
.y3d_c00347{bottom:902.117101pt;}
.y3e_c00347{bottom:902.575592pt;}
.y29_c00347{bottom:927.009333pt;}
.y2a_c00347{bottom:928.291093pt;}
.y2b_c00347{bottom:929.756629pt;}
.y2c_c00347{bottom:931.166453pt;}
.y2d_c00347{bottom:931.914197pt;}
.y2e_c00347{bottom:932.603669pt;}
.y2f_c00347{bottom:933.066421pt;}
.y30_c00347{bottom:935.133237pt;}
.y31_c00347{bottom:935.809589pt;}
.y32_c00347{bottom:937.107413pt;}
.y33_c00347{bottom:938.691893pt;}
.y34_c00347{bottom:939.389749pt;}
.y35_c00347{bottom:941.004949pt;}
.y21_c00347{bottom:965.760000pt;}
.y15_c00347{bottom:966.961333pt;}
.y22_c00347{bottom:967.046667pt;}
.y23_c00347{bottom:967.260000pt;}
.y16_c00347{bottom:967.988000pt;}
.y24_c00347{bottom:969.300000pt;}
.y25_c00347{bottom:969.450667pt;}
.y17_c00347{bottom:969.581333pt;}
.y26_c00347{bottom:969.910667pt;}
.y27_c00347{bottom:970.029333pt;}
.y28_c00347{bottom:970.440000pt;}
.y18_c00347{bottom:971.318667pt;}
.y19_c00347{bottom:971.756000pt;}
.y1a_c00347{bottom:972.100000pt;}
.y1b_c00347{bottom:972.692000pt;}
.y1c_c00347{bottom:973.125333pt;}
.y1d_c00347{bottom:973.474667pt;}
.y1e_c00347{bottom:973.721333pt;}
.y1f_c00347{bottom:973.980000pt;}
.y20_c00347{bottom:974.436000pt;}
.y14_c00347{bottom:977.236000pt;}
.y13_c00347{bottom:1021.440000pt;}
.y11_c00347{bottom:1022.881333pt;}
.y12_c00347{bottom:1029.960000pt;}
.y10_c00347{bottom:1041.593333pt;}
.ye_c00347{bottom:1046.160000pt;}
.yf_c00347{bottom:1054.480000pt;}
.yd_c00347{bottom:1065.108000pt;}
.ya_c00347{bottom:1073.040000pt;}
.yb_c00347{bottom:1074.325333pt;}
.y7_c00347{bottom:1080.240000pt;}
.yc_c00347{bottom:1081.968000pt;}
.y8_c00347{bottom:1086.494667pt;}
.y6_c00347{bottom:1087.722667pt;}
.y9_c00347{bottom:1088.045333pt;}
.y5_c00347{bottom:1090.397333pt;}
.y3_c00347{bottom:1095.120000pt;}
.y4_c00347{bottom:1095.540000pt;}
.y2_c00347{bottom:1100.280000pt;}
.y1_c00347{bottom:1106.060000pt;}
.h3_c00347{height:16.000000pt;}
.h2_c00347{height:21.333333pt;}
.h4_c00347{height:32.000000pt;}
.h5_c00347{height:64.018429pt;}
.h8_c00347{height:74.668496pt;}
.h9_c00347{height:74.671184pt;}
.h7_c00347{height:80.001960pt;}
.h6_c00347{height:106.669280pt;}
.h0_c00347{height:1112.400000pt;}
.h1_c00347{height:1112.666667pt;}
.w0_c00347{width:813.333333pt;}
.x0_c00347{left:0.000000pt;}
.xd_c00347{left:3.130667pt;}
.x59_c00347{left:23.802667pt;}
.x34_c00347{left:40.601333pt;}
.x5a_c00347{left:47.949333pt;}
.x11_c00347{left:49.704000pt;}
.x51_c00347{left:58.201959pt;}
.x2d_c00347{left:80.169333pt;}
.x23_c00347{left:82.633333pt;}
.x5b_c00347{left:88.010667pt;}
.x35_c00347{left:94.008000pt;}
.x48_c00347{left:97.834976pt;}
.xe_c00347{left:101.969333pt;}
.x41_c00347{left:116.269333pt;}
.x49_c00347{left:136.989053pt;}
.x36_c00347{left:155.072000pt;}
.x52_c00347{left:157.079935pt;}
.xa_c00347{left:159.616000pt;}
.x5c_c00347{left:167.941333pt;}
.x14_c00347{left:171.733333pt;}
.x42_c00347{left:185.369333pt;}
.x4a_c00347{left:197.015447pt;}
.x24_c00347{left:205.221333pt;}
.x2e_c00347{left:208.794667pt;}
.x37_c00347{left:213.814667pt;}
.x43_c00347{left:221.633333pt;}
.x2f_c00347{left:230.181333pt;}
.x53_c00347{left:237.258041pt;}
.x38_c00347{left:244.970667pt;}
.x5d_c00347{left:267.076000pt;}
.x39_c00347{left:273.698667pt;}
.x4b_c00347{left:275.484935pt;}
.x17_c00347{left:280.320000pt;}
.x3a_c00347{left:292.980000pt;}
.x5e_c00347{left:296.594667pt;}
.x4c_c00347{left:304.154192pt;}
.x18_c00347{left:323.280000pt;}
.x44_c00347{left:332.344000pt;}
.x54_c00347{left:336.389351pt;}
.x25_c00347{left:338.900000pt;}
.x5f_c00347{left:344.597333pt;}
.x19_c00347{left:369.600000pt;}
.x55_c00347{left:371.410441pt;}
.x6_c00347{left:372.480000pt;}
.x3b_c00347{left:379.097333pt;}
.x1a_c00347{left:382.320000pt;}
.x9_c00347{left:393.840000pt;}
.x26_c00347{left:398.926667pt;}
.x3c_c00347{left:407.278667pt;}
.x1b_c00347{left:417.120000pt;}
.x45_c00347{left:422.750667pt;}
.x4d_c00347{left:428.893412pt;}
.x30_c00347{left:434.152000pt;}
.x56_c00347{left:442.944604pt;}
.x27_c00347{left:444.500000pt;}
.x31_c00347{left:449.280000pt;}
.x1c_c00347{left:457.440000pt;}
.x3d_c00347{left:461.354667pt;}
.x57_c00347{left:471.263075pt;}
.x28_c00347{left:477.848000pt;}
.x1d_c00347{left:481.920000pt;}
.x32_c00347{left:495.317333pt;}
.x29_c00347{left:504.692000pt;}
.x33_c00347{left:507.120000pt;}
.x4e_c00347{left:508.813492pt;}
.x7_c00347{left:511.920000pt;}
.x5_c00347{left:513.852000pt;}
.x1e_c00347{left:515.280000pt;}
.x58_c00347{left:519.478739pt;}
.x2a_c00347{left:523.698667pt;}
.x3e_c00347{left:527.374667pt;}
.x1f_c00347{left:529.440000pt;}
.x60_c00347{left:531.272000pt;}
.x2b_c00347{left:543.602667pt;}
.x20_c00347{left:548.160000pt;}
.x3f_c00347{left:556.452000pt;}
.x61_c00347{left:559.877333pt;}
.x46_c00347{left:564.426667pt;}
.x1_c00347{left:573.840000pt;}
.x3_c00347{left:575.520000pt;}
.x21_c00347{left:576.480000pt;}
.x2c_c00347{left:578.646667pt;}
.x8_c00347{left:580.080000pt;}
.x4_c00347{left:583.200000pt;}
.x16_c00347{left:585.360000pt;}
.x4f_c00347{left:587.493637pt;}
.x62_c00347{left:588.425333pt;}
.x50_c00347{left:618.258792pt;}
.x40_c00347{left:623.752000pt;}
.x47_c00347{left:629.925333pt;}
.xb_c00347{left:640.732000pt;}
.x10_c00347{left:642.042667pt;}
.x12_c00347{left:653.281333pt;}
.x22_c00347{left:670.800000pt;}
.x13_c00347{left:685.201333pt;}
.xf_c00347{left:689.910667pt;}
.x2_c00347{left:704.400000pt;}
.xc_c00347{left:759.980000pt;}
.x15_c00347{left:761.605333pt;}
}





/* 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_c00348 {
    display:none;
  }
  .loading-indicator_c00348.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00348 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_c00348 { 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_c00348" -> "#page-container .classname_c00348")
 */
.pf_c00348 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00348 { /* 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_c00348.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00348 { /* 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_c00348 { /* 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_c00348 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00348 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00348 {overflow:visible;}
  }
}
.c_c00348 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00348 { /* 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_c00348:after { /* webkit #35443 */
  content: '';
}
.t_c00348:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00348 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 */
}
.__c00348 { /* 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_c00348 { /* info for Javascript */
  display:none;
}
.l_c00348 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00348 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00348 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00348: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_c00348 {
    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_c00348.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00348.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_c00348 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00348{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00348;src:url('chunks/assets/font_7c6b9abe6ee2a268480c528b.woff2')format("woff");}.ff1_c00348{font-family:ff1_c00348;line-height:1.000000;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;}
.m104_c00348{transform:matrix(0.017295,0.000727,-0.010501,0.249779,0,0);-ms-transform:matrix(0.017295,0.000727,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.017295,0.000727,-0.010501,0.249779,0,0);}
.m110_c00348{transform:matrix(0.127028,0.005341,-0.010501,0.249779,0,0);-ms-transform:matrix(0.127028,0.005341,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.127028,0.005341,-0.010501,0.249779,0,0);}
.mf1_c00348{transform:matrix(0.136870,0.004384,-0.008004,0.249872,0,0);-ms-transform:matrix(0.136870,0.004384,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.136870,0.004384,-0.008004,0.249872,0,0);}
.m130_c00348{transform:matrix(0.140875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140875,0.000000,0.000000,0.250000,0,0);}
.m31_c00348{transform:matrix(0.151888,-0.002582,0.004249,0.249964,0,0);-ms-transform:matrix(0.151888,-0.002582,0.004249,0.249964,0,0);-webkit-transform:matrix(0.151888,-0.002582,0.004249,0.249964,0,0);}
.m135_c00348{transform:matrix(0.153220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153220,0.000000,0.000000,0.250000,0,0);}
.mfe_c00348{transform:matrix(0.156065,0.004999,-0.008004,0.249872,0,0);-ms-transform:matrix(0.156065,0.004999,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.156065,0.004999,-0.008004,0.249872,0,0);}
.me3_c00348{transform:matrix(0.157414,0.005042,-0.008004,0.249872,0,0);-ms-transform:matrix(0.157414,0.005042,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.157414,0.005042,-0.008004,0.249872,0,0);}
.m12b_c00348{transform:matrix(0.161037,0.004509,-0.006997,0.249902,0,0);-ms-transform:matrix(0.161037,0.004509,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.161037,0.004509,-0.006997,0.249902,0,0);}
.m100_c00348{transform:matrix(0.163281,0.005230,-0.008004,0.249872,0,0);-ms-transform:matrix(0.163281,0.005230,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.163281,0.005230,-0.008004,0.249872,0,0);}
.m131_c00348{transform:matrix(0.165295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165295,0.000000,0.000000,0.250000,0,0);}
.m3e_c00348{transform:matrix(0.166391,-0.002496,0.003750,0.249972,0,0);-ms-transform:matrix(0.166391,-0.002496,0.003750,0.249972,0,0);-webkit-transform:matrix(0.166391,-0.002496,0.003750,0.249972,0,0);}
.m113_c00348{transform:matrix(0.167179,0.004681,-0.006997,0.249902,0,0);-ms-transform:matrix(0.167179,0.004681,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.167179,0.004681,-0.006997,0.249902,0,0);}
.mf4_c00348{transform:matrix(0.168424,0.005395,-0.008004,0.249872,0,0);-ms-transform:matrix(0.168424,0.005395,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.168424,0.005395,-0.008004,0.249872,0,0);}
.ma0_c00348{transform:matrix(0.168498,-0.002022,0.003000,0.249982,0,0);-ms-transform:matrix(0.168498,-0.002022,0.003000,0.249982,0,0);-webkit-transform:matrix(0.168498,-0.002022,0.003000,0.249982,0,0);}
.m3c_c00348{transform:matrix(0.168626,-0.002529,0.003750,0.249972,0,0);-ms-transform:matrix(0.168626,-0.002529,0.003750,0.249972,0,0);-webkit-transform:matrix(0.168626,-0.002529,0.003750,0.249972,0,0);}
.md2_c00348{transform:matrix(0.170043,-0.002041,0.003000,0.249982,0,0);-ms-transform:matrix(0.170043,-0.002041,0.003000,0.249982,0,0);-webkit-transform:matrix(0.170043,-0.002041,0.003000,0.249982,0,0);}
.md0_c00348{transform:matrix(0.171053,-0.002053,0.003000,0.249982,0,0);-ms-transform:matrix(0.171053,-0.002053,0.003000,0.249982,0,0);-webkit-transform:matrix(0.171053,-0.002053,0.003000,0.249982,0,0);}
.m102_c00348{transform:matrix(0.171442,0.005492,-0.008004,0.249872,0,0);-ms-transform:matrix(0.171442,0.005492,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.171442,0.005492,-0.008004,0.249872,0,0);}
.mcd_c00348{transform:matrix(0.172653,-0.002072,0.003000,0.249982,0,0);-ms-transform:matrix(0.172653,-0.002072,0.003000,0.249982,0,0);-webkit-transform:matrix(0.172653,-0.002072,0.003000,0.249982,0,0);}
.m41_c00348{transform:matrix(0.173555,-0.002603,0.003750,0.249972,0,0);-ms-transform:matrix(0.173555,-0.002603,0.003750,0.249972,0,0);-webkit-transform:matrix(0.173555,-0.002603,0.003750,0.249972,0,0);}
.ma4_c00348{transform:matrix(0.175247,-0.002103,0.003000,0.249982,0,0);-ms-transform:matrix(0.175247,-0.002103,0.003000,0.249982,0,0);-webkit-transform:matrix(0.175247,-0.002103,0.003000,0.249982,0,0);}
.md3_c00348{transform:matrix(0.175772,-0.002109,0.003000,0.249982,0,0);-ms-transform:matrix(0.175772,-0.002109,0.003000,0.249982,0,0);-webkit-transform:matrix(0.175772,-0.002109,0.003000,0.249982,0,0);}
.mf6_c00348{transform:matrix(0.176000,0.005638,-0.008004,0.249872,0,0);-ms-transform:matrix(0.176000,0.005638,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.176000,0.005638,-0.008004,0.249872,0,0);}
.mf2_c00348{transform:matrix(0.176115,0.005641,-0.008004,0.249872,0,0);-ms-transform:matrix(0.176115,0.005641,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.176115,0.005641,-0.008004,0.249872,0,0);}
.m49_c00348{transform:matrix(0.176280,-0.002644,0.003750,0.249972,0,0);-ms-transform:matrix(0.176280,-0.002644,0.003750,0.249972,0,0);-webkit-transform:matrix(0.176280,-0.002644,0.003750,0.249972,0,0);}
.m9f_c00348{transform:matrix(0.176377,-0.002117,0.003000,0.249982,0,0);-ms-transform:matrix(0.176377,-0.002117,0.003000,0.249982,0,0);-webkit-transform:matrix(0.176377,-0.002117,0.003000,0.249982,0,0);}
.m2a_c00348{transform:matrix(0.178801,-0.003218,0.004499,0.249960,0,0);-ms-transform:matrix(0.178801,-0.003218,0.004499,0.249960,0,0);-webkit-transform:matrix(0.178801,-0.003218,0.004499,0.249960,0,0);}
.m132_c00348{transform:matrix(0.178950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178950,0.000000,0.000000,0.250000,0,0);}
.m101_c00348{transform:matrix(0.179048,0.005735,-0.008004,0.249872,0,0);-ms-transform:matrix(0.179048,0.005735,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.179048,0.005735,-0.008004,0.249872,0,0);}
.me4_c00348{transform:matrix(0.180188,0.005772,-0.008004,0.249872,0,0);-ms-transform:matrix(0.180188,0.005772,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.180188,0.005772,-0.008004,0.249872,0,0);}
.me6_c00348{transform:matrix(0.182376,0.005842,-0.008004,0.249872,0,0);-ms-transform:matrix(0.182376,0.005842,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.182376,0.005842,-0.008004,0.249872,0,0);}
.mb_c00348{transform:matrix(0.182379,-0.002006,0.002750,0.249985,0,0);-ms-transform:matrix(0.182379,-0.002006,0.002750,0.249985,0,0);-webkit-transform:matrix(0.182379,-0.002006,0.002750,0.249985,0,0);}
.m9d_c00348{transform:matrix(0.183042,-0.002197,0.003000,0.249982,0,0);-ms-transform:matrix(0.183042,-0.002197,0.003000,0.249982,0,0);-webkit-transform:matrix(0.183042,-0.002197,0.003000,0.249982,0,0);}
.m3b_c00348{transform:matrix(0.183289,-0.003116,0.004249,0.249964,0,0);-ms-transform:matrix(0.183289,-0.003116,0.004249,0.249964,0,0);-webkit-transform:matrix(0.183289,-0.003116,0.004249,0.249964,0,0);}
.ma8_c00348{transform:matrix(0.183632,-0.002204,0.003000,0.249982,0,0);-ms-transform:matrix(0.183632,-0.002204,0.003000,0.249982,0,0);-webkit-transform:matrix(0.183632,-0.002204,0.003000,0.249982,0,0);}
.m4e_c00348{transform:matrix(0.183704,-0.002756,0.003750,0.249972,0,0);-ms-transform:matrix(0.183704,-0.002756,0.003750,0.249972,0,0);-webkit-transform:matrix(0.183704,-0.002756,0.003750,0.249972,0,0);}
.m123_c00348{transform:matrix(0.183908,0.005149,-0.006997,0.249902,0,0);-ms-transform:matrix(0.183908,0.005149,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.183908,0.005149,-0.006997,0.249902,0,0);}
.mc8_c00348{transform:matrix(0.184097,-0.002209,0.003000,0.249982,0,0);-ms-transform:matrix(0.184097,-0.002209,0.003000,0.249982,0,0);-webkit-transform:matrix(0.184097,-0.002209,0.003000,0.249982,0,0);}
.m42_c00348{transform:matrix(0.184274,-0.002764,0.003750,0.249972,0,0);-ms-transform:matrix(0.184274,-0.002764,0.003750,0.249972,0,0);-webkit-transform:matrix(0.184274,-0.002764,0.003750,0.249972,0,0);}
.m79_c00348{transform:matrix(0.184853,-0.001664,0.002250,0.249990,0,0);-ms-transform:matrix(0.184853,-0.001664,0.002250,0.249990,0,0);-webkit-transform:matrix(0.184853,-0.001664,0.002250,0.249990,0,0);}
.mff_c00348{transform:matrix(0.185790,0.005951,-0.008004,0.249872,0,0);-ms-transform:matrix(0.185790,0.005951,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.185790,0.005951,-0.008004,0.249872,0,0);}
.m10d_c00348{transform:matrix(0.185881,0.007815,-0.010501,0.249779,0,0);-ms-transform:matrix(0.185881,0.007815,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.185881,0.007815,-0.010501,0.249779,0,0);}
.m111_c00348{transform:matrix(0.186295,0.007832,-0.010501,0.249779,0,0);-ms-transform:matrix(0.186295,0.007832,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.186295,0.007832,-0.010501,0.249779,0,0);}
.mf9_c00348{transform:matrix(0.186344,0.005969,-0.008004,0.249872,0,0);-ms-transform:matrix(0.186344,0.005969,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.186344,0.005969,-0.008004,0.249872,0,0);}
.m0_c00348{transform:matrix(0.186465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186465,0.000000,0.000000,0.250000,0,0);}
.mb8_c00348{transform:matrix(0.186587,-0.002239,0.003000,0.249982,0,0);-ms-transform:matrix(0.186587,-0.002239,0.003000,0.249982,0,0);-webkit-transform:matrix(0.186587,-0.002239,0.003000,0.249982,0,0);}
.m125_c00348{transform:matrix(0.186872,0.005232,-0.006997,0.249902,0,0);-ms-transform:matrix(0.186872,0.005232,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.186872,0.005232,-0.006997,0.249902,0,0);}
.ma2_c00348{transform:matrix(0.187601,-0.002251,0.003000,0.249982,0,0);-ms-transform:matrix(0.187601,-0.002251,0.003000,0.249982,0,0);-webkit-transform:matrix(0.187601,-0.002251,0.003000,0.249982,0,0);}
.mcb_c00348{transform:matrix(0.190176,-0.002282,0.003000,0.249982,0,0);-ms-transform:matrix(0.190176,-0.002282,0.003000,0.249982,0,0);-webkit-transform:matrix(0.190176,-0.002282,0.003000,0.249982,0,0);}
.m10b_c00348{transform:matrix(0.190377,0.008004,-0.010501,0.249779,0,0);-ms-transform:matrix(0.190377,0.008004,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.190377,0.008004,-0.010501,0.249779,0,0);}
.m35_c00348{transform:matrix(0.190797,-0.003244,0.004249,0.249964,0,0);-ms-transform:matrix(0.190797,-0.003244,0.004249,0.249964,0,0);-webkit-transform:matrix(0.190797,-0.003244,0.004249,0.249964,0,0);}
.mf5_c00348{transform:matrix(0.190997,0.006118,-0.008004,0.249872,0,0);-ms-transform:matrix(0.190997,0.006118,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.190997,0.006118,-0.008004,0.249872,0,0);}
.m10a_c00348{transform:matrix(0.191036,0.008032,-0.010501,0.249779,0,0);-ms-transform:matrix(0.191036,0.008032,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.191036,0.008032,-0.010501,0.249779,0,0);}
.mcc_c00348{transform:matrix(0.192096,-0.002305,0.003000,0.249982,0,0);-ms-transform:matrix(0.192096,-0.002305,0.003000,0.249982,0,0);-webkit-transform:matrix(0.192096,-0.002305,0.003000,0.249982,0,0);}
.mf3_c00348{transform:matrix(0.192181,0.006156,-0.008004,0.249872,0,0);-ms-transform:matrix(0.192181,0.006156,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.192181,0.006156,-0.008004,0.249872,0,0);}
.mf8_c00348{transform:matrix(0.192306,0.006160,-0.008004,0.249872,0,0);-ms-transform:matrix(0.192306,0.006160,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.192306,0.006160,-0.008004,0.249872,0,0);}
.mc9_c00348{transform:matrix(0.192511,-0.002310,0.003000,0.249982,0,0);-ms-transform:matrix(0.192511,-0.002310,0.003000,0.249982,0,0);-webkit-transform:matrix(0.192511,-0.002310,0.003000,0.249982,0,0);}
.m90_c00348{transform:matrix(0.192622,-0.001734,0.002250,0.249990,0,0);-ms-transform:matrix(0.192622,-0.001734,0.002250,0.249990,0,0);-webkit-transform:matrix(0.192622,-0.001734,0.002250,0.249990,0,0);}
.ma3_c00348{transform:matrix(0.192871,-0.002314,0.003000,0.249982,0,0);-ms-transform:matrix(0.192871,-0.002314,0.003000,0.249982,0,0);-webkit-transform:matrix(0.192871,-0.002314,0.003000,0.249982,0,0);}
.mcf_c00348{transform:matrix(0.193721,-0.002325,0.003000,0.249982,0,0);-ms-transform:matrix(0.193721,-0.002325,0.003000,0.249982,0,0);-webkit-transform:matrix(0.193721,-0.002325,0.003000,0.249982,0,0);}
.m9e_c00348{transform:matrix(0.194306,-0.002332,0.003000,0.249982,0,0);-ms-transform:matrix(0.194306,-0.002332,0.003000,0.249982,0,0);-webkit-transform:matrix(0.194306,-0.002332,0.003000,0.249982,0,0);}
.m3f_c00348{transform:matrix(0.194888,-0.002923,0.003750,0.249972,0,0);-ms-transform:matrix(0.194888,-0.002923,0.003750,0.249972,0,0);-webkit-transform:matrix(0.194888,-0.002923,0.003750,0.249972,0,0);}
.m7e_c00348{transform:matrix(0.194932,-0.001754,0.002250,0.249990,0,0);-ms-transform:matrix(0.194932,-0.001754,0.002250,0.249990,0,0);-webkit-transform:matrix(0.194932,-0.001754,0.002250,0.249990,0,0);}
.mfc_c00348{transform:matrix(0.196354,0.006290,-0.008004,0.249872,0,0);-ms-transform:matrix(0.196354,0.006290,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.196354,0.006290,-0.008004,0.249872,0,0);}
.m8d_c00348{transform:matrix(0.196787,-0.001771,0.002250,0.249990,0,0);-ms-transform:matrix(0.196787,-0.001771,0.002250,0.249990,0,0);-webkit-transform:matrix(0.196787,-0.001771,0.002250,0.249990,0,0);}
.m80_c00348{transform:matrix(0.197427,-0.001777,0.002250,0.249990,0,0);-ms-transform:matrix(0.197427,-0.001777,0.002250,0.249990,0,0);-webkit-transform:matrix(0.197427,-0.001777,0.002250,0.249990,0,0);}
.md1_c00348{transform:matrix(0.197746,-0.002373,0.003000,0.249982,0,0);-ms-transform:matrix(0.197746,-0.002373,0.003000,0.249982,0,0);-webkit-transform:matrix(0.197746,-0.002373,0.003000,0.249982,0,0);}
.m40_c00348{transform:matrix(0.198513,-0.002978,0.003750,0.249972,0,0);-ms-transform:matrix(0.198513,-0.002978,0.003750,0.249972,0,0);-webkit-transform:matrix(0.198513,-0.002978,0.003750,0.249972,0,0);}
.m1a_c00348{transform:matrix(0.198871,-0.002784,0.003500,0.249976,0,0);-ms-transform:matrix(0.198871,-0.002784,0.003500,0.249976,0,0);-webkit-transform:matrix(0.198871,-0.002784,0.003500,0.249976,0,0);}
.m129_c00348{transform:matrix(0.199292,0.005580,-0.006997,0.249902,0,0);-ms-transform:matrix(0.199292,0.005580,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.199292,0.005580,-0.006997,0.249902,0,0);}
.m38_c00348{transform:matrix(0.200266,-0.003405,0.004249,0.249964,0,0);-ms-transform:matrix(0.200266,-0.003405,0.004249,0.249964,0,0);-webkit-transform:matrix(0.200266,-0.003405,0.004249,0.249964,0,0);}
.me_c00348{transform:matrix(0.200758,-0.002208,0.002750,0.249985,0,0);-ms-transform:matrix(0.200758,-0.002208,0.002750,0.249985,0,0);-webkit-transform:matrix(0.200758,-0.002208,0.002750,0.249985,0,0);}
.ma1_c00348{transform:matrix(0.200991,-0.002412,0.003000,0.249982,0,0);-ms-transform:matrix(0.200991,-0.002412,0.003000,0.249982,0,0);-webkit-transform:matrix(0.200991,-0.002412,0.003000,0.249982,0,0);}
.m8b_c00348{transform:matrix(0.201367,-0.001812,0.002250,0.249990,0,0);-ms-transform:matrix(0.201367,-0.001812,0.002250,0.249990,0,0);-webkit-transform:matrix(0.201367,-0.001812,0.002250,0.249990,0,0);}
.m43_c00348{transform:matrix(0.201477,-0.003022,0.003750,0.249972,0,0);-ms-transform:matrix(0.201477,-0.003022,0.003750,0.249972,0,0);-webkit-transform:matrix(0.201477,-0.003022,0.003750,0.249972,0,0);}
.ma5_c00348{transform:matrix(0.202090,-0.002425,0.003000,0.249982,0,0);-ms-transform:matrix(0.202090,-0.002425,0.003000,0.249982,0,0);-webkit-transform:matrix(0.202090,-0.002425,0.003000,0.249982,0,0);}
.mce_c00348{transform:matrix(0.202215,-0.002427,0.003000,0.249982,0,0);-ms-transform:matrix(0.202215,-0.002427,0.003000,0.249982,0,0);-webkit-transform:matrix(0.202215,-0.002427,0.003000,0.249982,0,0);}
.m3d_c00348{transform:matrix(0.202222,-0.003033,0.003750,0.249972,0,0);-ms-transform:matrix(0.202222,-0.003033,0.003750,0.249972,0,0);-webkit-transform:matrix(0.202222,-0.003033,0.003750,0.249972,0,0);}
.mca_c00348{transform:matrix(0.202690,-0.002432,0.003000,0.249982,0,0);-ms-transform:matrix(0.202690,-0.002432,0.003000,0.249982,0,0);-webkit-transform:matrix(0.202690,-0.002432,0.003000,0.249982,0,0);}
.mf7_c00348{transform:matrix(0.202851,0.006498,-0.008004,0.249872,0,0);-ms-transform:matrix(0.202851,0.006498,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.202851,0.006498,-0.008004,0.249872,0,0);}
.m10e_c00348{transform:matrix(0.203126,0.008540,-0.010501,0.249779,0,0);-ms-transform:matrix(0.203126,0.008540,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.203126,0.008540,-0.010501,0.249779,0,0);}
.m92_c00348{transform:matrix(0.203157,-0.001828,0.002250,0.249990,0,0);-ms-transform:matrix(0.203157,-0.001828,0.002250,0.249990,0,0);-webkit-transform:matrix(0.203157,-0.001828,0.002250,0.249990,0,0);}
.me7_c00348{transform:matrix(0.203201,0.006509,-0.008004,0.249872,0,0);-ms-transform:matrix(0.203201,0.006509,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.203201,0.006509,-0.008004,0.249872,0,0);}
.m45_c00348{transform:matrix(0.203327,-0.003050,0.003750,0.249972,0,0);-ms-transform:matrix(0.203327,-0.003050,0.003750,0.249972,0,0);-webkit-transform:matrix(0.203327,-0.003050,0.003750,0.249972,0,0);}
.mf_c00348{transform:matrix(0.204403,-0.002248,0.002750,0.249985,0,0);-ms-transform:matrix(0.204403,-0.002248,0.002750,0.249985,0,0);-webkit-transform:matrix(0.204403,-0.002248,0.002750,0.249985,0,0);}
.m77_c00348{transform:matrix(0.204532,-0.001841,0.002250,0.249990,0,0);-ms-transform:matrix(0.204532,-0.001841,0.002250,0.249990,0,0);-webkit-transform:matrix(0.204532,-0.001841,0.002250,0.249990,0,0);}
.m126_c00348{transform:matrix(0.205150,0.005744,-0.006997,0.249902,0,0);-ms-transform:matrix(0.205150,0.005744,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.205150,0.005744,-0.006997,0.249902,0,0);}
.m22_c00348{transform:matrix(0.205457,-0.003698,0.004499,0.249960,0,0);-ms-transform:matrix(0.205457,-0.003698,0.004499,0.249960,0,0);-webkit-transform:matrix(0.205457,-0.003698,0.004499,0.249960,0,0);}
.mea_c00348{transform:matrix(0.206714,0.006621,-0.008004,0.249872,0,0);-ms-transform:matrix(0.206714,0.006621,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.206714,0.006621,-0.008004,0.249872,0,0);}
.mac_c00348{transform:matrix(0.207380,-0.002489,0.003000,0.249982,0,0);-ms-transform:matrix(0.207380,-0.002489,0.003000,0.249982,0,0);-webkit-transform:matrix(0.207380,-0.002489,0.003000,0.249982,0,0);}
.mb0_c00348{transform:matrix(0.208000,-0.002496,0.003000,0.249982,0,0);-ms-transform:matrix(0.208000,-0.002496,0.003000,0.249982,0,0);-webkit-transform:matrix(0.208000,-0.002496,0.003000,0.249982,0,0);}
.m121_c00348{transform:matrix(0.208043,0.005825,-0.006997,0.249902,0,0);-ms-transform:matrix(0.208043,0.005825,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.208043,0.005825,-0.006997,0.249902,0,0);}
.m122_c00348{transform:matrix(0.208133,0.005828,-0.006997,0.249902,0,0);-ms-transform:matrix(0.208133,0.005828,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.208133,0.005828,-0.006997,0.249902,0,0);}
.m4c_c00348{transform:matrix(0.208537,-0.003128,0.003750,0.249972,0,0);-ms-transform:matrix(0.208537,-0.003128,0.003750,0.249972,0,0);-webkit-transform:matrix(0.208537,-0.003128,0.003750,0.249972,0,0);}
.m32_c00348{transform:matrix(0.209560,-0.003563,0.004249,0.249964,0,0);-ms-transform:matrix(0.209560,-0.003563,0.004249,0.249964,0,0);-webkit-transform:matrix(0.209560,-0.003563,0.004249,0.249964,0,0);}
.m117_c00348{transform:matrix(0.211547,0.005923,-0.006997,0.249902,0,0);-ms-transform:matrix(0.211547,0.005923,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.211547,0.005923,-0.006997,0.249902,0,0);}
.m7c_c00348{transform:matrix(0.212231,-0.001910,0.002250,0.249990,0,0);-ms-transform:matrix(0.212231,-0.001910,0.002250,0.249990,0,0);-webkit-transform:matrix(0.212231,-0.001910,0.002250,0.249990,0,0);}
.m11c_c00348{transform:matrix(0.212427,0.005948,-0.006997,0.249902,0,0);-ms-transform:matrix(0.212427,0.005948,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.212427,0.005948,-0.006997,0.249902,0,0);}
.m109_c00348{transform:matrix(0.212437,0.008931,-0.010501,0.249779,0,0);-ms-transform:matrix(0.212437,0.008931,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.212437,0.008931,-0.010501,0.249779,0,0);}
.m96_c00348{transform:matrix(0.212451,-0.001912,0.002250,0.249990,0,0);-ms-transform:matrix(0.212451,-0.001912,0.002250,0.249990,0,0);-webkit-transform:matrix(0.212451,-0.001912,0.002250,0.249990,0,0);}
.m2c_c00348{transform:matrix(0.212726,-0.003829,0.004499,0.249960,0,0);-ms-transform:matrix(0.212726,-0.003829,0.004499,0.249960,0,0);-webkit-transform:matrix(0.212726,-0.003829,0.004499,0.249960,0,0);}
.mb3_c00348{transform:matrix(0.213620,-0.002563,0.003000,0.249982,0,0);-ms-transform:matrix(0.213620,-0.002563,0.003000,0.249982,0,0);-webkit-transform:matrix(0.213620,-0.002563,0.003000,0.249982,0,0);}
.m7b_c00348{transform:matrix(0.214411,-0.001930,0.002250,0.249990,0,0);-ms-transform:matrix(0.214411,-0.001930,0.002250,0.249990,0,0);-webkit-transform:matrix(0.214411,-0.001930,0.002250,0.249990,0,0);}
.med_c00348{transform:matrix(0.214555,0.006873,-0.008004,0.249872,0,0);-ms-transform:matrix(0.214555,0.006873,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.214555,0.006873,-0.008004,0.249872,0,0);}
.m68_c00348{transform:matrix(0.214686,-0.003220,0.003750,0.249972,0,0);-ms-transform:matrix(0.214686,-0.003220,0.003750,0.249972,0,0);-webkit-transform:matrix(0.214686,-0.003220,0.003750,0.249972,0,0);}
.mdb_c00348{transform:matrix(0.214785,-0.002577,0.003000,0.249982,0,0);-ms-transform:matrix(0.214785,-0.002577,0.003000,0.249982,0,0);-webkit-transform:matrix(0.214785,-0.002577,0.003000,0.249982,0,0);}
.m28_c00348{transform:matrix(0.215115,-0.003872,0.004499,0.249960,0,0);-ms-transform:matrix(0.215115,-0.003872,0.004499,0.249960,0,0);-webkit-transform:matrix(0.215115,-0.003872,0.004499,0.249960,0,0);}
.m120_c00348{transform:matrix(0.215366,0.006030,-0.006997,0.249902,0,0);-ms-transform:matrix(0.215366,0.006030,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.215366,0.006030,-0.006997,0.249902,0,0);}
.m127_c00348{transform:matrix(0.215401,0.006031,-0.006997,0.249902,0,0);-ms-transform:matrix(0.215401,0.006031,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.215401,0.006031,-0.006997,0.249902,0,0);}
.m64_c00348{transform:matrix(0.215536,-0.003233,0.003750,0.249972,0,0);-ms-transform:matrix(0.215536,-0.003233,0.003750,0.249972,0,0);-webkit-transform:matrix(0.215536,-0.003233,0.003750,0.249972,0,0);}
.m124_c00348{transform:matrix(0.217380,0.006087,-0.006997,0.249902,0,0);-ms-transform:matrix(0.217380,0.006087,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.217380,0.006087,-0.006997,0.249902,0,0);}
.m10f_c00348{transform:matrix(0.217503,0.009144,-0.010501,0.249779,0,0);-ms-transform:matrix(0.217503,0.009144,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.217503,0.009144,-0.010501,0.249779,0,0);}
.m11a_c00348{transform:matrix(0.217760,0.006097,-0.006997,0.249902,0,0);-ms-transform:matrix(0.217760,0.006097,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.217760,0.006097,-0.006997,0.249902,0,0);}
.m12d_c00348{transform:matrix(0.217770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217770,0.000000,0.000000,0.250000,0,0);}
.m81_c00348{transform:matrix(0.217971,-0.001962,0.002250,0.249990,0,0);-ms-transform:matrix(0.217971,-0.001962,0.002250,0.249990,0,0);-webkit-transform:matrix(0.217971,-0.001962,0.002250,0.249990,0,0);}
.m8f_c00348{transform:matrix(0.219366,-0.001974,0.002250,0.249990,0,0);-ms-transform:matrix(0.219366,-0.001974,0.002250,0.249990,0,0);-webkit-transform:matrix(0.219366,-0.001974,0.002250,0.249990,0,0);}
.mdc_c00348{transform:matrix(0.219644,-0.002636,0.003000,0.249982,0,0);-ms-transform:matrix(0.219644,-0.002636,0.003000,0.249982,0,0);-webkit-transform:matrix(0.219644,-0.002636,0.003000,0.249982,0,0);}
.m10c_c00348{transform:matrix(0.219711,0.009237,-0.010501,0.249779,0,0);-ms-transform:matrix(0.219711,0.009237,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.219711,0.009237,-0.010501,0.249779,0,0);}
.m39_c00348{transform:matrix(0.219808,-0.003737,0.004249,0.249964,0,0);-ms-transform:matrix(0.219808,-0.003737,0.004249,0.249964,0,0);-webkit-transform:matrix(0.219808,-0.003737,0.004249,0.249964,0,0);}
.mc_c00348{transform:matrix(0.220902,-0.002430,0.002750,0.249985,0,0);-ms-transform:matrix(0.220902,-0.002430,0.002750,0.249985,0,0);-webkit-transform:matrix(0.220902,-0.002430,0.002750,0.249985,0,0);}
.m136_c00348{transform:matrix(0.220935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220935,0.000000,0.000000,0.250000,0,0);}
.m27_c00348{transform:matrix(0.221084,-0.003980,0.004499,0.249960,0,0);-ms-transform:matrix(0.221084,-0.003980,0.004499,0.249960,0,0);-webkit-transform:matrix(0.221084,-0.003980,0.004499,0.249960,0,0);}
.maf_c00348{transform:matrix(0.221124,-0.002653,0.003000,0.249982,0,0);-ms-transform:matrix(0.221124,-0.002653,0.003000,0.249982,0,0);-webkit-transform:matrix(0.221124,-0.002653,0.003000,0.249982,0,0);}
.m15_c00348{transform:matrix(0.221183,-0.003097,0.003500,0.249976,0,0);-ms-transform:matrix(0.221183,-0.003097,0.003500,0.249976,0,0);-webkit-transform:matrix(0.221183,-0.003097,0.003500,0.249976,0,0);}
.m95_c00348{transform:matrix(0.221406,-0.001993,0.002250,0.249990,0,0);-ms-transform:matrix(0.221406,-0.001993,0.002250,0.249990,0,0);-webkit-transform:matrix(0.221406,-0.001993,0.002250,0.249990,0,0);}
.m78_c00348{transform:matrix(0.221416,-0.001993,0.002250,0.249990,0,0);-ms-transform:matrix(0.221416,-0.001993,0.002250,0.249990,0,0);-webkit-transform:matrix(0.221416,-0.001993,0.002250,0.249990,0,0);}
.mfa_c00348{transform:matrix(0.221491,0.007095,-0.008004,0.249872,0,0);-ms-transform:matrix(0.221491,0.007095,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.221491,0.007095,-0.008004,0.249872,0,0);}
.me5_c00348{transform:matrix(0.221846,0.007106,-0.008004,0.249872,0,0);-ms-transform:matrix(0.221846,0.007106,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.221846,0.007106,-0.008004,0.249872,0,0);}
.m7f_c00348{transform:matrix(0.222031,-0.001998,0.002250,0.249990,0,0);-ms-transform:matrix(0.222031,-0.001998,0.002250,0.249990,0,0);-webkit-transform:matrix(0.222031,-0.001998,0.002250,0.249990,0,0);}
.mef_c00348{transform:matrix(0.222121,0.007115,-0.008004,0.249872,0,0);-ms-transform:matrix(0.222121,0.007115,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.222121,0.007115,-0.008004,0.249872,0,0);}
.m8c_c00348{transform:matrix(0.222626,-0.002004,0.002250,0.249990,0,0);-ms-transform:matrix(0.222626,-0.002004,0.002250,0.249990,0,0);-webkit-transform:matrix(0.222626,-0.002004,0.002250,0.249990,0,0);}
.m37_c00348{transform:matrix(0.222663,-0.003785,0.004249,0.249964,0,0);-ms-transform:matrix(0.222663,-0.003785,0.004249,0.249964,0,0);-webkit-transform:matrix(0.222663,-0.003785,0.004249,0.249964,0,0);}
.m25_c00348{transform:matrix(0.223344,-0.004020,0.004499,0.249960,0,0);-ms-transform:matrix(0.223344,-0.004020,0.004499,0.249960,0,0);-webkit-transform:matrix(0.223344,-0.004020,0.004499,0.249960,0,0);}
.m34_c00348{transform:matrix(0.223403,-0.003798,0.004249,0.249964,0,0);-ms-transform:matrix(0.223403,-0.003798,0.004249,0.249964,0,0);-webkit-transform:matrix(0.223403,-0.003798,0.004249,0.249964,0,0);}
.m93_c00348{transform:matrix(0.223476,-0.002011,0.002250,0.249990,0,0);-ms-transform:matrix(0.223476,-0.002011,0.002250,0.249990,0,0);-webkit-transform:matrix(0.223476,-0.002011,0.002250,0.249990,0,0);}
.m6e_c00348{transform:matrix(0.223945,-0.003359,0.003750,0.249972,0,0);-ms-transform:matrix(0.223945,-0.003359,0.003750,0.249972,0,0);-webkit-transform:matrix(0.223945,-0.003359,0.003750,0.249972,0,0);}
.meb_c00348{transform:matrix(0.224485,0.007191,-0.008004,0.249872,0,0);-ms-transform:matrix(0.224485,0.007191,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.224485,0.007191,-0.008004,0.249872,0,0);}
.m13_c00348{transform:matrix(0.224658,-0.003145,0.003500,0.249976,0,0);-ms-transform:matrix(0.224658,-0.003145,0.003500,0.249976,0,0);-webkit-transform:matrix(0.224658,-0.003145,0.003500,0.249976,0,0);}
.m59_c00348{transform:matrix(0.225320,-0.003380,0.003750,0.249972,0,0);-ms-transform:matrix(0.225320,-0.003380,0.003750,0.249972,0,0);-webkit-transform:matrix(0.225320,-0.003380,0.003750,0.249972,0,0);}
.m9_c00348{transform:matrix(0.225331,-0.002479,0.002750,0.249985,0,0);-ms-transform:matrix(0.225331,-0.002479,0.002750,0.249985,0,0);-webkit-transform:matrix(0.225331,-0.002479,0.002750,0.249985,0,0);}
.m46_c00348{transform:matrix(0.226045,-0.003391,0.003750,0.249972,0,0);-ms-transform:matrix(0.226045,-0.003391,0.003750,0.249972,0,0);-webkit-transform:matrix(0.226045,-0.003391,0.003750,0.249972,0,0);}
.m33_c00348{transform:matrix(0.226462,-0.003850,0.004249,0.249964,0,0);-ms-transform:matrix(0.226462,-0.003850,0.004249,0.249964,0,0);-webkit-transform:matrix(0.226462,-0.003850,0.004249,0.249964,0,0);}
.m11f_c00348{transform:matrix(0.226926,0.006354,-0.006997,0.249902,0,0);-ms-transform:matrix(0.226926,0.006354,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.226926,0.006354,-0.006997,0.249902,0,0);}
.m70_c00348{transform:matrix(0.226979,-0.003405,0.003750,0.249972,0,0);-ms-transform:matrix(0.226979,-0.003405,0.003750,0.249972,0,0);-webkit-transform:matrix(0.226979,-0.003405,0.003750,0.249972,0,0);}
.m7_c00348{transform:matrix(0.227416,-0.002502,0.002750,0.249985,0,0);-ms-transform:matrix(0.227416,-0.002502,0.002750,0.249985,0,0);-webkit-transform:matrix(0.227416,-0.002502,0.002750,0.249985,0,0);}
.mae_c00348{transform:matrix(0.228679,-0.002744,0.003000,0.249982,0,0);-ms-transform:matrix(0.228679,-0.002744,0.003000,0.249982,0,0);-webkit-transform:matrix(0.228679,-0.002744,0.003000,0.249982,0,0);}
.m26_c00348{transform:matrix(0.228763,-0.004118,0.004499,0.249960,0,0);-ms-transform:matrix(0.228763,-0.004118,0.004499,0.249960,0,0);-webkit-transform:matrix(0.228763,-0.004118,0.004499,0.249960,0,0);}
.m12e_c00348{transform:matrix(0.229030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229030,0.000000,0.000000,0.250000,0,0);}
.me1_c00348{transform:matrix(0.229475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229475,0.000000,0.000000,0.250000,0,0);}
.m36_c00348{transform:matrix(0.229617,-0.003903,0.004249,0.249964,0,0);-ms-transform:matrix(0.229617,-0.003903,0.004249,0.249964,0,0);-webkit-transform:matrix(0.229617,-0.003903,0.004249,0.249964,0,0);}
.mba_c00348{transform:matrix(0.230153,-0.002762,0.003000,0.249982,0,0);-ms-transform:matrix(0.230153,-0.002762,0.003000,0.249982,0,0);-webkit-transform:matrix(0.230153,-0.002762,0.003000,0.249982,0,0);}
.mee_c00348{transform:matrix(0.230197,0.007374,-0.008004,0.249872,0,0);-ms-transform:matrix(0.230197,0.007374,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.230197,0.007374,-0.008004,0.249872,0,0);}
.m20_c00348{transform:matrix(0.230598,-0.004151,0.004499,0.249960,0,0);-ms-transform:matrix(0.230598,-0.004151,0.004499,0.249960,0,0);-webkit-transform:matrix(0.230598,-0.004151,0.004499,0.249960,0,0);}
.m44_c00348{transform:matrix(0.230704,-0.003461,0.003750,0.249972,0,0);-ms-transform:matrix(0.230704,-0.003461,0.003750,0.249972,0,0);-webkit-transform:matrix(0.230704,-0.003461,0.003750,0.249972,0,0);}
.m119_c00348{transform:matrix(0.231289,0.006476,-0.006997,0.249902,0,0);-ms-transform:matrix(0.231289,0.006476,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.231289,0.006476,-0.006997,0.249902,0,0);}
.mda_c00348{transform:matrix(0.231418,-0.002777,0.003000,0.249982,0,0);-ms-transform:matrix(0.231418,-0.002777,0.003000,0.249982,0,0);-webkit-transform:matrix(0.231418,-0.002777,0.003000,0.249982,0,0);}
.md8_c00348{transform:matrix(0.231608,-0.002779,0.003000,0.249982,0,0);-ms-transform:matrix(0.231608,-0.002779,0.003000,0.249982,0,0);-webkit-transform:matrix(0.231608,-0.002779,0.003000,0.249982,0,0);}
.m60_c00348{transform:matrix(0.232569,-0.003489,0.003750,0.249972,0,0);-ms-transform:matrix(0.232569,-0.003489,0.003750,0.249972,0,0);-webkit-transform:matrix(0.232569,-0.003489,0.003750,0.249972,0,0);}
.m18_c00348{transform:matrix(0.232572,-0.003256,0.003500,0.249976,0,0);-ms-transform:matrix(0.232572,-0.003256,0.003500,0.249976,0,0);-webkit-transform:matrix(0.232572,-0.003256,0.003500,0.249976,0,0);}
.m8e_c00348{transform:matrix(0.232601,-0.002093,0.002250,0.249990,0,0);-ms-transform:matrix(0.232601,-0.002093,0.002250,0.249990,0,0);-webkit-transform:matrix(0.232601,-0.002093,0.002250,0.249990,0,0);}
.m91_c00348{transform:matrix(0.233086,-0.002098,0.002250,0.249990,0,0);-ms-transform:matrix(0.233086,-0.002098,0.002250,0.249990,0,0);-webkit-transform:matrix(0.233086,-0.002098,0.002250,0.249990,0,0);}
.m11e_c00348{transform:matrix(0.233478,0.006537,-0.006997,0.249902,0,0);-ms-transform:matrix(0.233478,0.006537,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.233478,0.006537,-0.006997,0.249902,0,0);}
.m57_c00348{transform:matrix(0.234649,-0.003520,0.003750,0.249972,0,0);-ms-transform:matrix(0.234649,-0.003520,0.003750,0.249972,0,0);-webkit-transform:matrix(0.234649,-0.003520,0.003750,0.249972,0,0);}
.m5_c00348{transform:matrix(0.234841,-0.002583,0.002750,0.249985,0,0);-ms-transform:matrix(0.234841,-0.002583,0.002750,0.249985,0,0);-webkit-transform:matrix(0.234841,-0.002583,0.002750,0.249985,0,0);}
.m94_c00348{transform:matrix(0.235450,-0.002119,0.002250,0.249990,0,0);-ms-transform:matrix(0.235450,-0.002119,0.002250,0.249990,0,0);-webkit-transform:matrix(0.235450,-0.002119,0.002250,0.249990,0,0);}
.m9b_c00348{transform:matrix(0.235755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235755,0.000000,0.000000,0.250000,0,0);}
.m5d_c00348{transform:matrix(0.236588,-0.003549,0.003750,0.249972,0,0);-ms-transform:matrix(0.236588,-0.003549,0.003750,0.249972,0,0);-webkit-transform:matrix(0.236588,-0.003549,0.003750,0.249972,0,0);}
.m11d_c00348{transform:matrix(0.236712,0.006628,-0.006997,0.249902,0,0);-ms-transform:matrix(0.236712,0.006628,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.236712,0.006628,-0.006997,0.249902,0,0);}
.maa_c00348{transform:matrix(0.237488,-0.002850,0.003000,0.249982,0,0);-ms-transform:matrix(0.237488,-0.002850,0.003000,0.249982,0,0);-webkit-transform:matrix(0.237488,-0.002850,0.003000,0.249982,0,0);}
.m10_c00348{transform:matrix(0.237812,-0.003329,0.003500,0.249976,0,0);-ms-transform:matrix(0.237812,-0.003329,0.003500,0.249976,0,0);-webkit-transform:matrix(0.237812,-0.003329,0.003500,0.249976,0,0);}
.m11b_c00348{transform:matrix(0.238102,0.006667,-0.006997,0.249902,0,0);-ms-transform:matrix(0.238102,0.006667,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.238102,0.006667,-0.006997,0.249902,0,0);}
.m63_c00348{transform:matrix(0.238128,-0.003572,0.003750,0.249972,0,0);-ms-transform:matrix(0.238128,-0.003572,0.003750,0.249972,0,0);-webkit-transform:matrix(0.238128,-0.003572,0.003750,0.249972,0,0);}
.m7a_c00348{transform:matrix(0.238305,-0.002145,0.002250,0.249990,0,0);-ms-transform:matrix(0.238305,-0.002145,0.002250,0.249990,0,0);-webkit-transform:matrix(0.238305,-0.002145,0.002250,0.249990,0,0);}
.m7d_c00348{transform:matrix(0.238995,-0.002151,0.002250,0.249990,0,0);-ms-transform:matrix(0.238995,-0.002151,0.002250,0.249990,0,0);-webkit-transform:matrix(0.238995,-0.002151,0.002250,0.249990,0,0);}
.mb4_c00348{transform:matrix(0.239468,-0.002874,0.003000,0.249982,0,0);-ms-transform:matrix(0.239468,-0.002874,0.003000,0.249982,0,0);-webkit-transform:matrix(0.239468,-0.002874,0.003000,0.249982,0,0);}
.m24_c00348{transform:matrix(0.240281,-0.004325,0.004499,0.249960,0,0);-ms-transform:matrix(0.240281,-0.004325,0.004499,0.249960,0,0);-webkit-transform:matrix(0.240281,-0.004325,0.004499,0.249960,0,0);}
.m116_c00348{transform:matrix(0.241570,0.006764,-0.006997,0.249902,0,0);-ms-transform:matrix(0.241570,0.006764,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.241570,0.006764,-0.006997,0.249902,0,0);}
.m21_c00348{transform:matrix(0.241636,-0.004349,0.004499,0.249960,0,0);-ms-transform:matrix(0.241636,-0.004349,0.004499,0.249960,0,0);-webkit-transform:matrix(0.241636,-0.004349,0.004499,0.249960,0,0);}
.m115_c00348{transform:matrix(0.242340,0.006786,-0.006997,0.249902,0,0);-ms-transform:matrix(0.242340,0.006786,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.242340,0.006786,-0.006997,0.249902,0,0);}
.ma9_c00348{transform:matrix(0.242353,-0.002908,0.003000,0.249982,0,0);-ms-transform:matrix(0.242353,-0.002908,0.003000,0.249982,0,0);-webkit-transform:matrix(0.242353,-0.002908,0.003000,0.249982,0,0);}
.mde_c00348{transform:matrix(0.243717,-0.002925,0.003000,0.249982,0,0);-ms-transform:matrix(0.243717,-0.002925,0.003000,0.249982,0,0);-webkit-transform:matrix(0.243717,-0.002925,0.003000,0.249982,0,0);}
.mab_c00348{transform:matrix(0.244372,-0.002932,0.003000,0.249982,0,0);-ms-transform:matrix(0.244372,-0.002932,0.003000,0.249982,0,0);-webkit-transform:matrix(0.244372,-0.002932,0.003000,0.249982,0,0);}
.mb1_c00348{transform:matrix(0.244602,-0.002935,0.003000,0.249982,0,0);-ms-transform:matrix(0.244602,-0.002935,0.003000,0.249982,0,0);-webkit-transform:matrix(0.244602,-0.002935,0.003000,0.249982,0,0);}
.mec_c00348{transform:matrix(0.245944,0.007878,-0.008004,0.249872,0,0);-ms-transform:matrix(0.245944,0.007878,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.245944,0.007878,-0.008004,0.249872,0,0);}
.mad_c00348{transform:matrix(0.245962,-0.002952,0.003000,0.249982,0,0);-ms-transform:matrix(0.245962,-0.002952,0.003000,0.249982,0,0);-webkit-transform:matrix(0.245962,-0.002952,0.003000,0.249982,0,0);}
.m6d_c00348{transform:matrix(0.246157,-0.003692,0.003750,0.249972,0,0);-ms-transform:matrix(0.246157,-0.003692,0.003750,0.249972,0,0);-webkit-transform:matrix(0.246157,-0.003692,0.003750,0.249972,0,0);}
.m1c_c00348{transform:matrix(0.246181,-0.003447,0.003500,0.249976,0,0);-ms-transform:matrix(0.246181,-0.003447,0.003500,0.249976,0,0);-webkit-transform:matrix(0.246181,-0.003447,0.003500,0.249976,0,0);}
.m4a_c00348{transform:matrix(0.247282,-0.003709,0.003750,0.249972,0,0);-ms-transform:matrix(0.247282,-0.003709,0.003750,0.249972,0,0);-webkit-transform:matrix(0.247282,-0.003709,0.003750,0.249972,0,0);}
.m23_c00348{transform:matrix(0.247530,-0.004456,0.004499,0.249960,0,0);-ms-transform:matrix(0.247530,-0.004456,0.004499,0.249960,0,0);-webkit-transform:matrix(0.247530,-0.004456,0.004499,0.249960,0,0);}
.m108_c00348{transform:matrix(0.247541,0.010407,-0.010501,0.249779,0,0);-ms-transform:matrix(0.247541,0.010407,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.247541,0.010407,-0.010501,0.249779,0,0);}
.m58_c00348{transform:matrix(0.248107,-0.003722,0.003750,0.249972,0,0);-ms-transform:matrix(0.248107,-0.003722,0.003750,0.249972,0,0);-webkit-transform:matrix(0.248107,-0.003722,0.003750,0.249972,0,0);}
.m6a_c00348{transform:matrix(0.248167,-0.003723,0.003750,0.249972,0,0);-ms-transform:matrix(0.248167,-0.003723,0.003750,0.249972,0,0);-webkit-transform:matrix(0.248167,-0.003723,0.003750,0.249972,0,0);}
.m3a_c00348{transform:matrix(0.248909,-0.004231,0.004249,0.249964,0,0);-ms-transform:matrix(0.248909,-0.004231,0.004249,0.249964,0,0);-webkit-transform:matrix(0.248909,-0.004231,0.004249,0.249964,0,0);}
.m29_c00348{transform:matrix(0.249665,-0.004494,0.004499,0.249960,0,0);-ms-transform:matrix(0.249665,-0.004494,0.004499,0.249960,0,0);-webkit-transform:matrix(0.249665,-0.004494,0.004499,0.249960,0,0);}
.md6_c00348{transform:matrix(0.249962,-0.003000,0.003000,0.249982,0,0);-ms-transform:matrix(0.249962,-0.003000,0.003000,0.249982,0,0);-webkit-transform:matrix(0.249962,-0.003000,0.003000,0.249982,0,0);}
.m19_c00348{transform:matrix(0.249991,-0.003500,0.003500,0.249976,0,0);-ms-transform:matrix(0.249991,-0.003500,0.003500,0.249976,0,0);-webkit-transform:matrix(0.249991,-0.003500,0.003500,0.249976,0,0);}
.m12f_c00348{transform:matrix(0.249995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249995,0.000000,0.000000,0.250000,0,0);}
.m1d_c00348{transform:matrix(0.250685,-0.003510,0.003500,0.249976,0,0);-ms-transform:matrix(0.250685,-0.003510,0.003500,0.249976,0,0);-webkit-transform:matrix(0.250685,-0.003510,0.003500,0.249976,0,0);}
.m6c_c00348{transform:matrix(0.250987,-0.003765,0.003750,0.249972,0,0);-ms-transform:matrix(0.250987,-0.003765,0.003750,0.249972,0,0);-webkit-transform:matrix(0.250987,-0.003765,0.003750,0.249972,0,0);}
.m4d_c00348{transform:matrix(0.251122,-0.003767,0.003750,0.249972,0,0);-ms-transform:matrix(0.251122,-0.003767,0.003750,0.249972,0,0);-webkit-transform:matrix(0.251122,-0.003767,0.003750,0.249972,0,0);}
.m88_c00348{transform:matrix(0.251270,-0.002261,0.002250,0.249990,0,0);-ms-transform:matrix(0.251270,-0.002261,0.002250,0.249990,0,0);-webkit-transform:matrix(0.251270,-0.002261,0.002250,0.249990,0,0);}
.m47_c00348{transform:matrix(0.251442,-0.003772,0.003750,0.249972,0,0);-ms-transform:matrix(0.251442,-0.003772,0.003750,0.249972,0,0);-webkit-transform:matrix(0.251442,-0.003772,0.003750,0.249972,0,0);}
.m2b_c00348{transform:matrix(0.251774,-0.004532,0.004499,0.249960,0,0);-ms-transform:matrix(0.251774,-0.004532,0.004499,0.249960,0,0);-webkit-transform:matrix(0.251774,-0.004532,0.004499,0.249960,0,0);}
.m89_c00348{transform:matrix(0.252070,-0.002269,0.002250,0.249990,0,0);-ms-transform:matrix(0.252070,-0.002269,0.002250,0.249990,0,0);-webkit-transform:matrix(0.252070,-0.002269,0.002250,0.249990,0,0);}
.m1f_c00348{transform:matrix(0.252170,-0.003530,0.003500,0.249976,0,0);-ms-transform:matrix(0.252170,-0.003530,0.003500,0.249976,0,0);-webkit-transform:matrix(0.252170,-0.003530,0.003500,0.249976,0,0);}
.m62_c00348{transform:matrix(0.252562,-0.003788,0.003750,0.249972,0,0);-ms-transform:matrix(0.252562,-0.003788,0.003750,0.249972,0,0);-webkit-transform:matrix(0.252562,-0.003788,0.003750,0.249972,0,0);}
.m118_c00348{transform:matrix(0.252896,0.007081,-0.006997,0.249902,0,0);-ms-transform:matrix(0.252896,0.007081,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.252896,0.007081,-0.006997,0.249902,0,0);}
.m5b_c00348{transform:matrix(0.253007,-0.003795,0.003750,0.249972,0,0);-ms-transform:matrix(0.253007,-0.003795,0.003750,0.249972,0,0);-webkit-transform:matrix(0.253007,-0.003795,0.003750,0.249972,0,0);}
.m48_c00348{transform:matrix(0.253656,-0.003805,0.003750,0.249972,0,0);-ms-transform:matrix(0.253656,-0.003805,0.003750,0.249972,0,0);-webkit-transform:matrix(0.253656,-0.003805,0.003750,0.249972,0,0);}
.md5_c00348{transform:matrix(0.254237,-0.003051,0.003000,0.249982,0,0);-ms-transform:matrix(0.254237,-0.003051,0.003000,0.249982,0,0);-webkit-transform:matrix(0.254237,-0.003051,0.003000,0.249982,0,0);}
.m1b_c00348{transform:matrix(0.254695,-0.003566,0.003500,0.249976,0,0);-ms-transform:matrix(0.254695,-0.003566,0.003500,0.249976,0,0);-webkit-transform:matrix(0.254695,-0.003566,0.003500,0.249976,0,0);}
.me0_c00348{transform:matrix(0.255672,-0.003068,0.003000,0.249982,0,0);-ms-transform:matrix(0.255672,-0.003068,0.003000,0.249982,0,0);-webkit-transform:matrix(0.255672,-0.003068,0.003000,0.249982,0,0);}
.m5c_c00348{transform:matrix(0.255716,-0.003836,0.003750,0.249972,0,0);-ms-transform:matrix(0.255716,-0.003836,0.003750,0.249972,0,0);-webkit-transform:matrix(0.255716,-0.003836,0.003750,0.249972,0,0);}
.m14_c00348{transform:matrix(0.256165,-0.003586,0.003500,0.249976,0,0);-ms-transform:matrix(0.256165,-0.003586,0.003500,0.249976,0,0);-webkit-transform:matrix(0.256165,-0.003586,0.003500,0.249976,0,0);}
.mb2_c00348{transform:matrix(0.256202,-0.003074,0.003000,0.249982,0,0);-ms-transform:matrix(0.256202,-0.003074,0.003000,0.249982,0,0);-webkit-transform:matrix(0.256202,-0.003074,0.003000,0.249982,0,0);}
.md_c00348{transform:matrix(0.256219,-0.002818,0.002750,0.249985,0,0);-ms-transform:matrix(0.256219,-0.002818,0.002750,0.249985,0,0);-webkit-transform:matrix(0.256219,-0.002818,0.002750,0.249985,0,0);}
.m4b_c00348{transform:matrix(0.257176,-0.003858,0.003750,0.249972,0,0);-ms-transform:matrix(0.257176,-0.003858,0.003750,0.249972,0,0);-webkit-transform:matrix(0.257176,-0.003858,0.003750,0.249972,0,0);}
.m12c_c00348{transform:matrix(0.257490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257490,0.000000,0.000000,0.250000,0,0);}
.m5e_c00348{transform:matrix(0.257666,-0.003865,0.003750,0.249972,0,0);-ms-transform:matrix(0.257666,-0.003865,0.003750,0.249972,0,0);-webkit-transform:matrix(0.257666,-0.003865,0.003750,0.249972,0,0);}
.md4_c00348{transform:matrix(0.258126,-0.003098,0.003000,0.249982,0,0);-ms-transform:matrix(0.258126,-0.003098,0.003000,0.249982,0,0);-webkit-transform:matrix(0.258126,-0.003098,0.003000,0.249982,0,0);}
.mdd_c00348{transform:matrix(0.261191,-0.003134,0.003000,0.249982,0,0);-ms-transform:matrix(0.261191,-0.003134,0.003000,0.249982,0,0);-webkit-transform:matrix(0.261191,-0.003134,0.003000,0.249982,0,0);}
.m17_c00348{transform:matrix(0.261719,-0.003664,0.003500,0.249976,0,0);-ms-transform:matrix(0.261719,-0.003664,0.003500,0.249976,0,0);-webkit-transform:matrix(0.261719,-0.003664,0.003500,0.249976,0,0);}
.m6b_c00348{transform:matrix(0.261936,-0.003929,0.003750,0.249972,0,0);-ms-transform:matrix(0.261936,-0.003929,0.003750,0.249972,0,0);-webkit-transform:matrix(0.261936,-0.003929,0.003750,0.249972,0,0);}
.m12_c00348{transform:matrix(0.264359,-0.003701,0.003500,0.249976,0,0);-ms-transform:matrix(0.264359,-0.003701,0.003500,0.249976,0,0);-webkit-transform:matrix(0.264359,-0.003701,0.003500,0.249976,0,0);}
.m65_c00348{transform:matrix(0.264370,-0.003966,0.003750,0.249972,0,0);-ms-transform:matrix(0.264370,-0.003966,0.003750,0.249972,0,0);-webkit-transform:matrix(0.264370,-0.003966,0.003750,0.249972,0,0);}
.md7_c00348{transform:matrix(0.264736,-0.003177,0.003000,0.249982,0,0);-ms-transform:matrix(0.264736,-0.003177,0.003000,0.249982,0,0);-webkit-transform:matrix(0.264736,-0.003177,0.003000,0.249982,0,0);}
.m5a_c00348{transform:matrix(0.265290,-0.003979,0.003750,0.249972,0,0);-ms-transform:matrix(0.265290,-0.003979,0.003750,0.249972,0,0);-webkit-transform:matrix(0.265290,-0.003979,0.003750,0.249972,0,0);}
.m5f_c00348{transform:matrix(0.265770,-0.003987,0.003750,0.249972,0,0);-ms-transform:matrix(0.265770,-0.003987,0.003750,0.249972,0,0);-webkit-transform:matrix(0.265770,-0.003987,0.003750,0.249972,0,0);}
.m4_c00348{transform:matrix(0.265879,-0.002925,0.002750,0.249985,0,0);-ms-transform:matrix(0.265879,-0.002925,0.002750,0.249985,0,0);-webkit-transform:matrix(0.265879,-0.002925,0.002750,0.249985,0,0);}
.m8_c00348{transform:matrix(0.266634,-0.002933,0.002750,0.249985,0,0);-ms-transform:matrix(0.266634,-0.002933,0.002750,0.249985,0,0);-webkit-transform:matrix(0.266634,-0.002933,0.002750,0.249985,0,0);}
.mbd_c00348{transform:matrix(0.267906,-0.003215,0.003000,0.249982,0,0);-ms-transform:matrix(0.267906,-0.003215,0.003000,0.249982,0,0);-webkit-transform:matrix(0.267906,-0.003215,0.003000,0.249982,0,0);}
.m11_c00348{transform:matrix(0.268909,-0.003765,0.003500,0.249976,0,0);-ms-transform:matrix(0.268909,-0.003765,0.003500,0.249976,0,0);-webkit-transform:matrix(0.268909,-0.003765,0.003500,0.249976,0,0);}
.m71_c00348{transform:matrix(0.269240,-0.004039,0.003750,0.249972,0,0);-ms-transform:matrix(0.269240,-0.004039,0.003750,0.249972,0,0);-webkit-transform:matrix(0.269240,-0.004039,0.003750,0.249972,0,0);}
.m72_c00348{transform:matrix(0.269555,-0.004043,0.003750,0.249972,0,0);-ms-transform:matrix(0.269555,-0.004043,0.003750,0.249972,0,0);-webkit-transform:matrix(0.269555,-0.004043,0.003750,0.249972,0,0);}
.ma_c00348{transform:matrix(0.270494,-0.002975,0.002750,0.249985,0,0);-ms-transform:matrix(0.270494,-0.002975,0.002750,0.249985,0,0);-webkit-transform:matrix(0.270494,-0.002975,0.002750,0.249985,0,0);}
.m61_c00348{transform:matrix(0.270745,-0.004061,0.003750,0.249972,0,0);-ms-transform:matrix(0.270745,-0.004061,0.003750,0.249972,0,0);-webkit-transform:matrix(0.270745,-0.004061,0.003750,0.249972,0,0);}
.mc5_c00348{transform:matrix(0.270801,-0.003250,0.003000,0.249982,0,0);-ms-transform:matrix(0.270801,-0.003250,0.003000,0.249982,0,0);-webkit-transform:matrix(0.270801,-0.003250,0.003000,0.249982,0,0);}
.m6f_c00348{transform:matrix(0.271244,-0.004069,0.003750,0.249972,0,0);-ms-transform:matrix(0.271244,-0.004069,0.003750,0.249972,0,0);-webkit-transform:matrix(0.271244,-0.004069,0.003750,0.249972,0,0);}
.m6_c00348{transform:matrix(0.271254,-0.002984,0.002750,0.249985,0,0);-ms-transform:matrix(0.271254,-0.002984,0.002750,0.249985,0,0);-webkit-transform:matrix(0.271254,-0.002984,0.002750,0.249985,0,0);}
.mdf_c00348{transform:matrix(0.271540,-0.003258,0.003000,0.249982,0,0);-ms-transform:matrix(0.271540,-0.003258,0.003000,0.249982,0,0);-webkit-transform:matrix(0.271540,-0.003258,0.003000,0.249982,0,0);}
.m3_c00348{transform:matrix(0.271754,-0.002989,0.002750,0.249985,0,0);-ms-transform:matrix(0.271754,-0.002989,0.002750,0.249985,0,0);-webkit-transform:matrix(0.271754,-0.002989,0.002750,0.249985,0,0);}
.m2_c00348{transform:matrix(0.271864,-0.002990,0.002750,0.249985,0,0);-ms-transform:matrix(0.271864,-0.002990,0.002750,0.249985,0,0);-webkit-transform:matrix(0.271864,-0.002990,0.002750,0.249985,0,0);}
.md9_c00348{transform:matrix(0.273020,-0.003276,0.003000,0.249982,0,0);-ms-transform:matrix(0.273020,-0.003276,0.003000,0.249982,0,0);-webkit-transform:matrix(0.273020,-0.003276,0.003000,0.249982,0,0);}
.m16_c00348{transform:matrix(0.274463,-0.003842,0.003500,0.249976,0,0);-ms-transform:matrix(0.274463,-0.003842,0.003500,0.249976,0,0);-webkit-transform:matrix(0.274463,-0.003842,0.003500,0.249976,0,0);}
.m8a_c00348{transform:matrix(0.274509,-0.002471,0.002250,0.249990,0,0);-ms-transform:matrix(0.274509,-0.002471,0.002250,0.249990,0,0);-webkit-transform:matrix(0.274509,-0.002471,0.002250,0.249990,0,0);}
.m1_c00348{transform:matrix(0.274650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274650,0.000000,0.000000,0.250000,0,0);}
.m1e_c00348{transform:matrix(0.275833,-0.003862,0.003500,0.249976,0,0);-ms-transform:matrix(0.275833,-0.003862,0.003500,0.249976,0,0);-webkit-transform:matrix(0.275833,-0.003862,0.003500,0.249976,0,0);}
.ma7_c00348{transform:matrix(0.277315,-0.003328,0.003000,0.249982,0,0);-ms-transform:matrix(0.277315,-0.003328,0.003000,0.249982,0,0);-webkit-transform:matrix(0.277315,-0.003328,0.003000,0.249982,0,0);}
.m87_c00348{transform:matrix(0.278199,-0.002504,0.002250,0.249990,0,0);-ms-transform:matrix(0.278199,-0.002504,0.002250,0.249990,0,0);-webkit-transform:matrix(0.278199,-0.002504,0.002250,0.249990,0,0);}
.mc0_c00348{transform:matrix(0.282560,-0.003391,0.003000,0.249982,0,0);-ms-transform:matrix(0.282560,-0.003391,0.003000,0.249982,0,0);-webkit-transform:matrix(0.282560,-0.003391,0.003000,0.249982,0,0);}
.m54_c00348{transform:matrix(0.283303,-0.004250,0.003750,0.249972,0,0);-ms-transform:matrix(0.283303,-0.004250,0.003750,0.249972,0,0);-webkit-transform:matrix(0.283303,-0.004250,0.003750,0.249972,0,0);}
.mc4_c00348{transform:matrix(0.287104,-0.003445,0.003000,0.249982,0,0);-ms-transform:matrix(0.287104,-0.003445,0.003000,0.249982,0,0);-webkit-transform:matrix(0.287104,-0.003445,0.003000,0.249982,0,0);}
.mbf_c00348{transform:matrix(0.289564,-0.003475,0.003000,0.249982,0,0);-ms-transform:matrix(0.289564,-0.003475,0.003000,0.249982,0,0);-webkit-transform:matrix(0.289564,-0.003475,0.003000,0.249982,0,0);}
.mb9_c00348{transform:matrix(0.301588,-0.003619,0.003000,0.249982,0,0);-ms-transform:matrix(0.301588,-0.003619,0.003000,0.249982,0,0);-webkit-transform:matrix(0.301588,-0.003619,0.003000,0.249982,0,0);}
.m56_c00348{transform:matrix(0.305051,-0.004576,0.003750,0.249972,0,0);-ms-transform:matrix(0.305051,-0.004576,0.003750,0.249972,0,0);-webkit-transform:matrix(0.305051,-0.004576,0.003750,0.249972,0,0);}
.mfb_c00348{transform:matrix(0.308577,0.009884,-0.008004,0.249872,0,0);-ms-transform:matrix(0.308577,0.009884,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.308577,0.009884,-0.008004,0.249872,0,0);}
.mbe_c00348{transform:matrix(0.308593,-0.003703,0.003000,0.249982,0,0);-ms-transform:matrix(0.308593,-0.003703,0.003000,0.249982,0,0);-webkit-transform:matrix(0.308593,-0.003703,0.003000,0.249982,0,0);}
.mc2_c00348{transform:matrix(0.309958,-0.003719,0.003000,0.249982,0,0);-ms-transform:matrix(0.309958,-0.003719,0.003000,0.249982,0,0);-webkit-transform:matrix(0.309958,-0.003719,0.003000,0.249982,0,0);}
.mbb_c00348{transform:matrix(0.317927,-0.003815,0.003000,0.249982,0,0);-ms-transform:matrix(0.317927,-0.003815,0.003000,0.249982,0,0);-webkit-transform:matrix(0.317927,-0.003815,0.003000,0.249982,0,0);}
.mc1_c00348{transform:matrix(0.323037,-0.003876,0.003000,0.249982,0,0);-ms-transform:matrix(0.323037,-0.003876,0.003000,0.249982,0,0);-webkit-transform:matrix(0.323037,-0.003876,0.003000,0.249982,0,0);}
.mc3_c00348{transform:matrix(0.325512,-0.003906,0.003000,0.249982,0,0);-ms-transform:matrix(0.325512,-0.003906,0.003000,0.249982,0,0);-webkit-transform:matrix(0.325512,-0.003906,0.003000,0.249982,0,0);}
.m4f_c00348{transform:matrix(0.326788,-0.004902,0.003750,0.249972,0,0);-ms-transform:matrix(0.326788,-0.004902,0.003750,0.249972,0,0);-webkit-transform:matrix(0.326788,-0.004902,0.003750,0.249972,0,0);}
.mbc_c00348{transform:matrix(0.329356,-0.003952,0.003000,0.249982,0,0);-ms-transform:matrix(0.329356,-0.003952,0.003000,0.249982,0,0);-webkit-transform:matrix(0.329356,-0.003952,0.003000,0.249982,0,0);}
.m69_c00348{transform:matrix(0.339392,-0.005091,0.003750,0.249972,0,0);-ms-transform:matrix(0.339392,-0.005091,0.003750,0.249972,0,0);-webkit-transform:matrix(0.339392,-0.005091,0.003750,0.249972,0,0);}
.me8_c00348{transform:matrix(0.351555,0.011261,-0.008004,0.249872,0,0);-ms-transform:matrix(0.351555,0.011261,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.351555,0.011261,-0.008004,0.249872,0,0);}
.m128_c00348{transform:matrix(0.353237,0.009891,-0.006997,0.249902,0,0);-ms-transform:matrix(0.353237,0.009891,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.353237,0.009891,-0.006997,0.249902,0,0);}
.m50_c00348{transform:matrix(0.355390,-0.005331,0.003750,0.249972,0,0);-ms-transform:matrix(0.355390,-0.005331,0.003750,0.249972,0,0);-webkit-transform:matrix(0.355390,-0.005331,0.003750,0.249972,0,0);}
.m75_c00348{transform:matrix(0.375653,-0.005635,0.003750,0.249972,0,0);-ms-transform:matrix(0.375653,-0.005635,0.003750,0.249972,0,0);-webkit-transform:matrix(0.375653,-0.005635,0.003750,0.249972,0,0);}
.mb5_c00348{transform:matrix(0.391647,-0.004700,0.003000,0.249982,0,0);-ms-transform:matrix(0.391647,-0.004700,0.003000,0.249982,0,0);-webkit-transform:matrix(0.391647,-0.004700,0.003000,0.249982,0,0);}
.m51_c00348{transform:matrix(0.399110,-0.005987,0.003750,0.249972,0,0);-ms-transform:matrix(0.399110,-0.005987,0.003750,0.249972,0,0);-webkit-transform:matrix(0.399110,-0.005987,0.003750,0.249972,0,0);}
.m107_c00348{transform:matrix(0.400286,0.016829,-0.010501,0.249779,0,0);-ms-transform:matrix(0.400286,0.016829,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.400286,0.016829,-0.010501,0.249779,0,0);}
.m97_c00348{transform:matrix(0.405460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405460,0.000000,0.000000,0.250000,0,0);}
.m85_c00348{transform:matrix(0.405499,-0.003649,0.002250,0.249990,0,0);-ms-transform:matrix(0.405499,-0.003649,0.002250,0.249990,0,0);-webkit-transform:matrix(0.405499,-0.003649,0.002250,0.249990,0,0);}
.me2_c00348{transform:matrix(0.410260,0.013141,-0.008004,0.249872,0,0);-ms-transform:matrix(0.410260,0.013141,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.410260,0.013141,-0.008004,0.249872,0,0);}
.m67_c00348{transform:matrix(0.411419,-0.006171,0.003750,0.249972,0,0);-ms-transform:matrix(0.411419,-0.006171,0.003750,0.249972,0,0);-webkit-transform:matrix(0.411419,-0.006171,0.003750,0.249972,0,0);}
.m55_c00348{transform:matrix(0.412979,-0.006195,0.003750,0.249972,0,0);-ms-transform:matrix(0.412979,-0.006195,0.003750,0.249972,0,0);-webkit-transform:matrix(0.412979,-0.006195,0.003750,0.249972,0,0);}
.mfd_c00348{transform:matrix(0.433148,0.013875,-0.008004,0.249872,0,0);-ms-transform:matrix(0.433148,0.013875,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.433148,0.013875,-0.008004,0.249872,0,0);}
.m9c_c00348{transform:matrix(0.434975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434975,0.000000,0.000000,0.250000,0,0);}
.m114_c00348{transform:matrix(0.436709,0.012228,-0.006997,0.249902,0,0);-ms-transform:matrix(0.436709,0.012228,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.436709,0.012228,-0.006997,0.249902,0,0);}
.m74_c00348{transform:matrix(0.456309,-0.006845,0.003750,0.249972,0,0);-ms-transform:matrix(0.456309,-0.006845,0.003750,0.249972,0,0);-webkit-transform:matrix(0.456309,-0.006845,0.003750,0.249972,0,0);}
.mf0_c00348{transform:matrix(0.473512,0.015168,-0.008004,0.249872,0,0);-ms-transform:matrix(0.473512,0.015168,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.473512,0.015168,-0.008004,0.249872,0,0);}
.m105_c00348{transform:matrix(0.492200,0.020693,-0.010501,0.249779,0,0);-ms-transform:matrix(0.492200,0.020693,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.492200,0.020693,-0.010501,0.249779,0,0);}
.m106_c00348{transform:matrix(0.495542,0.020834,-0.010501,0.249779,0,0);-ms-transform:matrix(0.495542,0.020834,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.495542,0.020834,-0.010501,0.249779,0,0);}
.m99_c00348{transform:matrix(0.508020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508020,0.000000,0.000000,0.250000,0,0);}
.m9a_c00348{transform:matrix(0.533760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533760,0.000000,0.000000,0.250000,0,0);}
.m134_c00348{transform:matrix(0.579795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579795,0.000000,0.000000,0.250000,0,0);}
.m83_c00348{transform:matrix(0.581706,-0.005235,0.002250,0.249990,0,0);-ms-transform:matrix(0.581706,-0.005235,0.002250,0.249990,0,0);-webkit-transform:matrix(0.581706,-0.005235,0.002250,0.249990,0,0);}
.m76_c00348{transform:matrix(0.609661,-0.009145,0.003750,0.249972,0,0);-ms-transform:matrix(0.609661,-0.009145,0.003750,0.249972,0,0);-webkit-transform:matrix(0.609661,-0.009145,0.003750,0.249972,0,0);}
.m86_c00348{transform:matrix(0.628550,-0.005657,0.002250,0.249990,0,0);-ms-transform:matrix(0.628550,-0.005657,0.002250,0.249990,0,0);-webkit-transform:matrix(0.628550,-0.005657,0.002250,0.249990,0,0);}
.m30_c00348{transform:matrix(0.646087,-0.010983,0.004249,0.249964,0,0);-ms-transform:matrix(0.646087,-0.010983,0.004249,0.249964,0,0);-webkit-transform:matrix(0.646087,-0.010983,0.004249,0.249964,0,0);}
.m103_c00348{transform:matrix(0.651821,0.020879,-0.008004,0.249872,0,0);-ms-transform:matrix(0.651821,0.020879,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.651821,0.020879,-0.008004,0.249872,0,0);}
.m2f_c00348{transform:matrix(0.816297,-0.013877,0.004249,0.249964,0,0);-ms-transform:matrix(0.816297,-0.013877,0.004249,0.249964,0,0);-webkit-transform:matrix(0.816297,-0.013877,0.004249,0.249964,0,0);}
.m112_c00348{transform:matrix(0.850137,0.023804,-0.006997,0.249902,0,0);-ms-transform:matrix(0.850137,0.023804,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.850137,0.023804,-0.006997,0.249902,0,0);}
.ma6_c00348{transform:matrix(0.856133,-0.010274,0.003000,0.249982,0,0);-ms-transform:matrix(0.856133,-0.010274,0.003000,0.249982,0,0);-webkit-transform:matrix(0.856133,-0.010274,0.003000,0.249982,0,0);}
.me9_c00348{transform:matrix(0.865241,0.027715,-0.008004,0.249872,0,0);-ms-transform:matrix(0.865241,0.027715,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.865241,0.027715,-0.008004,0.249872,0,0);}
.m84_c00348{transform:matrix(0.991565,-0.008924,0.002250,0.249990,0,0);-ms-transform:matrix(0.991565,-0.008924,0.002250,0.249990,0,0);-webkit-transform:matrix(0.991565,-0.008924,0.002250,0.249990,0,0);}
.m12a_c00348{transform:matrix(1.005451,0.028153,-0.006997,0.249902,0,0);-ms-transform:matrix(1.005451,0.028153,-0.006997,0.249902,0,0);-webkit-transform:matrix(1.005451,0.028153,-0.006997,0.249902,0,0);}
.m2e_c00348{transform:matrix(1.034795,-0.017592,0.004249,0.249964,0,0);-ms-transform:matrix(1.034795,-0.017592,0.004249,0.249964,0,0);-webkit-transform:matrix(1.034795,-0.017592,0.004249,0.249964,0,0);}
.m73_c00348{transform:matrix(1.130583,-0.016959,0.003750,0.249972,0,0);-ms-transform:matrix(1.130583,-0.016959,0.003750,0.249972,0,0);-webkit-transform:matrix(1.130583,-0.016959,0.003750,0.249972,0,0);}
.mc6_c00348{transform:matrix(1.153967,-0.013848,0.003000,0.249982,0,0);-ms-transform:matrix(1.153967,-0.013848,0.003000,0.249982,0,0);-webkit-transform:matrix(1.153967,-0.013848,0.003000,0.249982,0,0);}
.m133_c00348{transform:matrix(1.196120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.196120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.196120,0.000000,0.000000,0.250000,0,0);}
.m2d_c00348{transform:matrix(1.434033,-0.024379,0.004249,0.249964,0,0);-ms-transform:matrix(1.434033,-0.024379,0.004249,0.249964,0,0);-webkit-transform:matrix(1.434033,-0.024379,0.004249,0.249964,0,0);}
.mb7_c00348{transform:matrix(1.638127,-0.019658,0.003000,0.249982,0,0);-ms-transform:matrix(1.638127,-0.019658,0.003000,0.249982,0,0);-webkit-transform:matrix(1.638127,-0.019658,0.003000,0.249982,0,0);}
.m52_c00348{transform:matrix(1.836998,-0.027555,0.003750,0.249972,0,0);-ms-transform:matrix(1.836998,-0.027555,0.003750,0.249972,0,0);-webkit-transform:matrix(1.836998,-0.027555,0.003750,0.249972,0,0);}
.m53_c00348{transform:matrix(2.255146,-0.033827,0.003750,0.249972,0,0);-ms-transform:matrix(2.255146,-0.033827,0.003750,0.249972,0,0);-webkit-transform:matrix(2.255146,-0.033827,0.003750,0.249972,0,0);}
.mb6_c00348{transform:matrix(2.257442,-0.027089,0.003000,0.249982,0,0);-ms-transform:matrix(2.257442,-0.027089,0.003000,0.249982,0,0);-webkit-transform:matrix(2.257442,-0.027089,0.003000,0.249982,0,0);}
.m66_c00348{transform:matrix(2.606282,-0.039094,0.003750,0.249972,0,0);-ms-transform:matrix(2.606282,-0.039094,0.003750,0.249972,0,0);-webkit-transform:matrix(2.606282,-0.039094,0.003750,0.249972,0,0);}
.mc7_c00348{transform:matrix(3.116281,-0.037395,0.003000,0.249982,0,0);-ms-transform:matrix(3.116281,-0.037395,0.003000,0.249982,0,0);-webkit-transform:matrix(3.116281,-0.037395,0.003000,0.249982,0,0);}
.m82_c00348{transform:matrix(6.106908,-0.054962,0.002250,0.249990,0,0);-ms-transform:matrix(6.106908,-0.054962,0.002250,0.249990,0,0);-webkit-transform:matrix(6.106908,-0.054962,0.002250,0.249990,0,0);}
.m98_c00348{transform:matrix(6.694310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(6.694310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(6.694310,0.000000,0.000000,0.250000,0,0);}
.v0_c00348{vertical-align:0.000000px;}
.ls0_c00348{letter-spacing:0.000000px;}
.sc__c00348{text-shadow:none;}
.sc0_c00348{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__c00348{-webkit-text-stroke:0px transparent;}
.sc0_c00348{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00348{word-spacing:0.000000px;}
.fc0_c00348{color:transparent;}
.fs9_c00348{font-size:54.006075px;}
.fs0_c00348{font-size:60.000000px;}
.fs10_c00348{font-size:60.004320px;}
.fsc_c00348{font-size:66.002673px;}
.fs1_c00348{font-size:72.004356px;}
.fs12_c00348{font-size:72.005184px;}
.fs3_c00348{font-size:72.007056px;}
.fsa_c00348{font-size:72.008100px;}
.fs14_c00348{font-size:77.961966px;}
.fs17_c00348{font-size:77.990834px;}
.fs1c_c00348{font-size:78.000000px;}
.fs2_c00348{font-size:78.004719px;}
.fsf_c00348{font-size:78.005616px;}
.fs8_c00348{font-size:78.008775px;}
.fs4_c00348{font-size:78.012635px;}
.fs1a_c00348{font-size:78.030570px;}
.fsd_c00348{font-size:84.000000px;}
.fsb_c00348{font-size:84.003402px;}
.fs6_c00348{font-size:84.012137px;}
.fs13_c00348{font-size:89.956114px;}
.fs18_c00348{font-size:89.989424px;}
.fs5_c00348{font-size:90.013004px;}
.fs1b_c00348{font-size:90.035273px;}
.fs15_c00348{font-size:95.953189px;}
.fse_c00348{font-size:96.006912px;}
.fs7_c00348{font-size:96.010799px;}
.fs19_c00348{font-size:96.037625px;}
.fs16_c00348{font-size:101.950263px;}
.fs1d_c00348{font-size:102.000000px;}
.fs11_c00348{font-size:102.007344px;}
.y0_c00348{bottom:0.000000px;}
.y129_c00348{bottom:23.761500px;}
.y12a_c00348{bottom:24.255000px;}
.y12b_c00348{bottom:28.722000px;}
.y12c_c00348{bottom:30.189000px;}
.y12d_c00348{bottom:31.417500px;}
.y12e_c00348{bottom:31.822500px;}
.y128_c00348{bottom:40.500000px;}
.y125_c00348{bottom:64.652082px;}
.y127_c00348{bottom:67.343940px;}
.y124_c00348{bottom:71.918094px;}
.y126_c00348{bottom:73.686246px;}
.y123_c00348{bottom:74.630328px;}
.y122_c00348{bottom:76.690806px;}
.y121_c00348{bottom:77.743518px;}
.y120_c00348{bottom:80.798964px;}
.y11f_c00348{bottom:82.097898px;}
.y11e_c00348{bottom:82.795230px;}
.y11d_c00348{bottom:84.749826px;}
.y11c_c00348{bottom:104.677236px;}
.y11b_c00348{bottom:106.592550px;}
.y11a_c00348{bottom:107.400456px;}
.y119_c00348{bottom:109.626756px;}
.y118_c00348{bottom:110.775222px;}
.y117_c00348{bottom:112.655094px;}
.y116_c00348{bottom:114.151920px;}
.y115_c00348{bottom:114.950766px;}
.y114_c00348{bottom:118.303896px;}
.y113_c00348{bottom:119.400186px;}
.y112_c00348{bottom:120.186162px;}
.y111_c00348{bottom:123.008694px;}
.y110_c00348{bottom:124.445166px;}
.y10d_c00348{bottom:137.399143px;}
.y10f_c00348{bottom:139.872966px;}
.y10c_c00348{bottom:143.123323px;}
.y10e_c00348{bottom:143.914500px;}
.y10b_c00348{bottom:146.153610px;}
.y10a_c00348{bottom:148.396360px;}
.y109_c00348{bottom:149.542857px;}
.y108_c00348{bottom:152.568090px;}
.y107_c00348{bottom:153.693693px;}
.y106_c00348{bottom:155.134265px;}
.y105_c00348{bottom:158.390941px;}
.y104_c00348{bottom:159.843712px;}
.y103_c00348{bottom:177.019821px;}
.yff_c00348{bottom:180.180417px;}
.y102_c00348{bottom:181.201005px;}
.yfe_c00348{bottom:181.435371px;}
.yfd_c00348{bottom:183.525009px;}
.yfc_c00348{bottom:184.791589px;}
.y101_c00348{bottom:184.934259px;}
.y100_c00348{bottom:187.083000px;}
.yfb_c00348{bottom:187.692600px;}
.yfa_c00348{bottom:188.897101px;}
.yf9_c00348{bottom:192.557976px;}
.yf8_c00348{bottom:210.586409px;}
.yf7_c00348{bottom:211.596347px;}
.yf6_c00348{bottom:216.840883px;}
.yf5_c00348{bottom:218.651592px;}
.yf4_c00348{bottom:219.425424px;}
.yf3_c00348{bottom:222.289377px;}
.yf2_c00348{bottom:223.436099px;}
.yf1_c00348{bottom:227.072385px;}
.yf0_c00348{bottom:228.118526px;}
.yef_c00348{bottom:230.552592px;}
.yee_c00348{bottom:231.948390px;}
.ye7_c00348{bottom:240.339266px;}
.ye8_c00348{bottom:241.467481px;}
.ye9_c00348{bottom:243.659257px;}
.yea_c00348{bottom:244.531078px;}
.yeb_c00348{bottom:245.933040px;}
.yec_c00348{bottom:248.223608px;}
.yed_c00348{bottom:252.268833px;}
.ye6_c00348{bottom:280.851960px;}
.ye5_c00348{bottom:287.785224px;}
.ye4_c00348{bottom:289.742040px;}
.ye3_c00348{bottom:291.845256px;}
.ye2_c00348{bottom:292.930872px;}
.ye1_c00348{bottom:296.475048px;}
.ye0_c00348{bottom:297.499656px;}
.ydf_c00348{bottom:298.177704px;}
.yde_c00348{bottom:301.581000px;}
.ydd_c00348{bottom:318.879000px;}
.yd0_c00348{bottom:324.801606px;}
.yd1_c00348{bottom:325.176840px;}
.yd2_c00348{bottom:325.305696px;}
.yd3_c00348{bottom:325.638648px;}
.yd4_c00348{bottom:326.160090px;}
.yd5_c00348{bottom:326.362554px;}
.yd6_c00348{bottom:326.890398px;}
.yd7_c00348{bottom:327.082440px;}
.yd8_c00348{bottom:327.173118px;}
.yd9_c00348{bottom:327.348210px;}
.yda_c00348{bottom:327.483834px;}
.ydb_c00348{bottom:327.693348px;}
.ydc_c00348{bottom:328.224312px;}
.yc3_c00348{bottom:354.503424px;}
.yc4_c00348{bottom:354.846786px;}
.yc5_c00348{bottom:355.363668px;}
.yc6_c00348{bottom:355.627272px;}
.yc7_c00348{bottom:356.318820px;}
.yc8_c00348{bottom:356.504478px;}
.yc9_c00348{bottom:356.943378px;}
.yca_c00348{bottom:357.206478px;}
.ycb_c00348{bottom:357.732642px;}
.ycc_c00348{bottom:357.923190px;}
.ycd_c00348{bottom:358.200126px;}
.yce_c00348{bottom:358.724712px;}
.ycf_c00348{bottom:359.001288px;}
.yc1_c00348{bottom:385.288608px;}
.yc2_c00348{bottom:386.934960px;}
.yb6_c00348{bottom:421.200828px;}
.yb7_c00348{bottom:422.474712px;}
.yb8_c00348{bottom:424.325436px;}
.yb9_c00348{bottom:424.876236px;}
.yba_c00348{bottom:425.834676px;}
.ybb_c00348{bottom:426.583152px;}
.ybc_c00348{bottom:427.322382px;}
.ybd_c00348{bottom:428.624232px;}
.ybe_c00348{bottom:429.022950px;}
.ybf_c00348{bottom:430.532298px;}
.yc0_c00348{bottom:431.098020px;}
.yaf_c00348{bottom:459.271500px;}
.yb0_c00348{bottom:460.286754px;}
.yb1_c00348{bottom:461.316336px;}
.yb2_c00348{bottom:463.574220px;}
.yb3_c00348{bottom:466.933668px;}
.yb4_c00348{bottom:467.180700px;}
.yb5_c00348{bottom:467.462202px;}
.ya4_c00348{bottom:500.963238px;}
.ya8_c00348{bottom:500.963724px;}
.ya5_c00348{bottom:500.963904px;}
.ya9_c00348{bottom:500.964072px;}
.ya7_c00348{bottom:500.964240px;}
.ya6_c00348{bottom:500.964552px;}
.yaa_c00348{bottom:500.964714px;}
.yae_c00348{bottom:500.964918px;}
.yad_c00348{bottom:500.965248px;}
.yab_c00348{bottom:500.965278px;}
.yac_c00348{bottom:500.965782px;}
.y98_c00348{bottom:532.711500px;}
.y99_c00348{bottom:533.237622px;}
.y9a_c00348{bottom:534.165288px;}
.y9b_c00348{bottom:534.663978px;}
.y9c_c00348{bottom:535.062588px;}
.y9d_c00348{bottom:535.975692px;}
.y9e_c00348{bottom:536.244936px;}
.y9f_c00348{bottom:536.908614px;}
.ya0_c00348{bottom:537.300852px;}
.ya1_c00348{bottom:538.245654px;}
.ya2_c00348{bottom:539.308158px;}
.ya3_c00348{bottom:540.517452px;}
.y97_c00348{bottom:572.599500px;}
.y91_c00348{bottom:609.229683px;}
.y96_c00348{bottom:609.229875px;}
.y8e_c00348{bottom:609.229977px;}
.y90_c00348{bottom:609.230027px;}
.y94_c00348{bottom:609.230186px;}
.y92_c00348{bottom:609.230196px;}
.y95_c00348{bottom:609.230339px;}
.y8d_c00348{bottom:609.230680px;}
.y8f_c00348{bottom:609.230700px;}
.y93_c00348{bottom:609.230722px;}
.y8c_c00348{bottom:609.231008px;}
.y8b_c00348{bottom:609.231441px;}
.y82_c00348{bottom:637.742547px;}
.y83_c00348{bottom:642.009882px;}
.y84_c00348{bottom:642.598921px;}
.y85_c00348{bottom:644.337600px;}
.y86_c00348{bottom:645.115626px;}
.y87_c00348{bottom:646.522127px;}
.y88_c00348{bottom:646.831860px;}
.y89_c00348{bottom:647.285460px;}
.y8a_c00348{bottom:647.622081px;}
.y77_c00348{bottom:675.541500px;}
.y78_c00348{bottom:676.015917px;}
.y79_c00348{bottom:676.694062px;}
.y7a_c00348{bottom:676.976172px;}
.y7b_c00348{bottom:677.867658px;}
.y7c_c00348{bottom:678.079297px;}
.y7d_c00348{bottom:678.570023px;}
.y7e_c00348{bottom:679.473861px;}
.y7f_c00348{bottom:679.765164px;}
.y80_c00348{bottom:680.272993px;}
.y81_c00348{bottom:680.581739px;}
.y6d_c00348{bottom:715.321402px;}
.y74_c00348{bottom:715.321433px;}
.y76_c00348{bottom:715.321470px;}
.y75_c00348{bottom:715.321515px;}
.y6e_c00348{bottom:715.321762px;}
.y6c_c00348{bottom:715.321815px;}
.y6b_c00348{bottom:715.321905px;}
.y71_c00348{bottom:715.321987px;}
.y70_c00348{bottom:715.322032px;}
.y73_c00348{bottom:715.322145px;}
.y6f_c00348{bottom:715.322167px;}
.y72_c00348{bottom:715.322453px;}
.y63_c00348{bottom:744.933000px;}
.y64_c00348{bottom:745.468275px;}
.y65_c00348{bottom:746.068935px;}
.y66_c00348{bottom:747.356025px;}
.y67_c00348{bottom:753.182580px;}
.y68_c00348{bottom:754.365968px;}
.y69_c00348{bottom:754.848660px;}
.y6a_c00348{bottom:755.528790px;}
.y57_c00348{bottom:784.077982px;}
.y58_c00348{bottom:784.456867px;}
.y59_c00348{bottom:784.940925px;}
.y5a_c00348{bottom:785.232195px;}
.y5b_c00348{bottom:785.915542px;}
.y5c_c00348{bottom:786.119670px;}
.y5d_c00348{bottom:786.626715px;}
.y5e_c00348{bottom:787.023045px;}
.y5f_c00348{bottom:787.608937px;}
.y60_c00348{bottom:788.213460px;}
.y61_c00348{bottom:788.507235px;}
.y62_c00348{bottom:789.206595px;}
.y4f_c00348{bottom:817.293000px;}
.y50_c00348{bottom:818.092470px;}
.y51_c00348{bottom:819.379245px;}
.y52_c00348{bottom:821.234302px;}
.y53_c00348{bottom:822.857925px;}
.y54_c00348{bottom:826.705650px;}
.y55_c00348{bottom:827.228820px;}
.y56_c00348{bottom:827.876572px;}
.y46_c00348{bottom:850.502137px;}
.y47_c00348{bottom:851.557822px;}
.y48_c00348{bottom:853.718520px;}
.y49_c00348{bottom:855.715147px;}
.y4a_c00348{bottom:856.142497px;}
.y4b_c00348{bottom:857.691442px;}
.y4c_c00348{bottom:859.919175px;}
.y4d_c00348{bottom:860.562322px;}
.y4e_c00348{bottom:862.136707px;}
.y3c_c00348{bottom:891.541500px;}
.y3d_c00348{bottom:892.025340px;}
.y3e_c00348{bottom:893.475622px;}
.y3f_c00348{bottom:893.957932px;}
.y40_c00348{bottom:894.784402px;}
.y41_c00348{bottom:895.617825px;}
.y42_c00348{bottom:896.128620px;}
.y43_c00348{bottom:896.950680px;}
.y44_c00348{bottom:898.771267px;}
.y45_c00348{bottom:900.955297px;}
.y3b_c00348{bottom:931.510636px;}
.y3a_c00348{bottom:931.510692px;}
.y39_c00348{bottom:931.511295px;}
.y35_c00348{bottom:931.511710px;}
.y36_c00348{bottom:931.511844px;}
.y38_c00348{bottom:931.511942px;}
.y37_c00348{bottom:931.512240px;}
.y34_c00348{bottom:931.512279px;}
.y33_c00348{bottom:931.513007px;}
.y2d_c00348{bottom:961.204500px;}
.y2e_c00348{bottom:963.596400px;}
.y2f_c00348{bottom:967.330416px;}
.y30_c00348{bottom:970.281200px;}
.y31_c00348{bottom:971.318157px;}
.y32_c00348{bottom:971.884588px;}
.y20_c00348{bottom:992.254500px;}
.y21_c00348{bottom:993.417606px;}
.y22_c00348{bottom:994.968648px;}
.y23_c00348{bottom:995.557140px;}
.y24_c00348{bottom:996.966216px;}
.y25_c00348{bottom:998.336952px;}
.y26_c00348{bottom:998.918910px;}
.y27_c00348{bottom:999.749835px;}
.y28_c00348{bottom:1000.541880px;}
.y29_c00348{bottom:1001.324826px;}
.y2a_c00348{bottom:1002.737817px;}
.y2b_c00348{bottom:1003.132125px;}
.y2c_c00348{bottom:1004.749290px;}
.y1d_c00348{bottom:1032.752202px;}
.y1e_c00348{bottom:1034.406663px;}
.y1f_c00348{bottom:1035.095349px;}
.y10_c00348{bottom:1065.153000px;}
.y11_c00348{bottom:1065.770400px;}
.y12_c00348{bottom:1067.267868px;}
.y13_c00348{bottom:1068.352770px;}
.y14_c00348{bottom:1068.813930px;}
.y15_c00348{bottom:1069.592484px;}
.y16_c00348{bottom:1070.053644px;}
.y17_c00348{bottom:1071.145224px;}
.y18_c00348{bottom:1072.226136px;}
.y19_c00348{bottom:1072.702899px;}
.y1a_c00348{bottom:1073.465745px;}
.y1b_c00348{bottom:1073.794626px;}
.y1c_c00348{bottom:1074.577443px;}
.yc_c00348{bottom:1105.240285px;}
.ye_c00348{bottom:1105.240432px;}
.yd_c00348{bottom:1105.240899px;}
.yf_c00348{bottom:1105.240956px;}
.y2_c00348{bottom:1136.163000px;}
.y3_c00348{bottom:1137.817554px;}
.y4_c00348{bottom:1138.797621px;}
.y5_c00348{bottom:1139.756452px;}
.y6_c00348{bottom:1140.125029px;}
.y7_c00348{bottom:1141.105030px;}
.y8_c00348{bottom:1141.470225px;}
.y9_c00348{bottom:1142.209705px;}
.ya_c00348{bottom:1142.583876px;}
.yb_c00348{bottom:1143.684706px;}
.y1_c00348{bottom:1202.046000px;}
.hb_c00348{height:54.006075px;}
.h2_c00348{height:60.000000px;}
.h12_c00348{height:60.004320px;}
.he_c00348{height:66.002673px;}
.h3_c00348{height:72.004356px;}
.h14_c00348{height:72.005184px;}
.h5_c00348{height:72.007056px;}
.hc_c00348{height:72.008100px;}
.h16_c00348{height:77.961966px;}
.h19_c00348{height:77.990834px;}
.h1e_c00348{height:78.000000px;}
.h4_c00348{height:78.004719px;}
.h11_c00348{height:78.005616px;}
.ha_c00348{height:78.008775px;}
.h6_c00348{height:78.012635px;}
.h1c_c00348{height:78.030570px;}
.hf_c00348{height:84.000000px;}
.hd_c00348{height:84.003402px;}
.h8_c00348{height:84.012137px;}
.h15_c00348{height:89.956114px;}
.h1a_c00348{height:89.989424px;}
.h7_c00348{height:90.013004px;}
.h1d_c00348{height:90.035273px;}
.h17_c00348{height:95.953189px;}
.h10_c00348{height:96.006912px;}
.h9_c00348{height:96.010799px;}
.h1b_c00348{height:96.037625px;}
.h18_c00348{height:101.950263px;}
.h1f_c00348{height:102.000000px;}
.h13_c00348{height:102.007344px;}
.h0_c00348{height:1251.450000px;}
.h1_c00348{height:1251.750000px;}
.w0_c00348{width:915.000000px;}
.x0_c00348{left:0.000000px;}
.x2c_c00348{left:119.608329px;}
.x3_c00348{left:120.910500px;}
.x1a_c00348{left:121.998747px;}
.x33_c00348{left:123.208500px;}
.x43_c00348{left:124.260150px;}
.x5c_c00348{left:125.635500px;}
.x7d_c00348{left:127.608000px;}
.x9c_c00348{left:128.805000px;}
.xa4_c00348{left:130.330620px;}
.xb8_c00348{left:131.806224px;}
.xc_c00348{left:142.562221px;}
.x34_c00348{left:155.464500px;}
.x4e_c00348{left:159.232500px;}
.xf_c00348{left:164.952000px;}
.x44_c00348{left:166.422953px;}
.x6e_c00348{left:168.681000px;}
.x88_c00348{left:169.932510px;}
.xa1_c00348{left:172.341080px;}
.xd_c00348{left:173.614483px;}
.x2d_c00348{left:176.317226px;}
.x3d_c00348{left:177.394500px;}
.x53_c00348{left:179.825228px;}
.x1d_c00348{left:186.915000px;}
.x93_c00348{left:190.921020px;}
.xbf_c00348{left:193.776486px;}
.xe_c00348{left:195.755656px;}
.x1b_c00348{left:197.201826px;}
.x4f_c00348{left:199.276500px;}
.x82_c00348{left:201.536142px;}
.x7e_c00348{left:212.212500px;}
.xc0_c00348{left:216.268596px;}
.x45_c00348{left:220.198290px;}
.xaa_c00348{left:225.447515px;}
.xc7_c00348{left:226.530000px;}
.x1c_c00348{left:228.497319px;}
.x67_c00348{left:232.205380px;}
.x89_c00348{left:234.509106px;}
.x54_c00348{left:243.011948px;}
.x6f_c00348{left:245.986500px;}
.x2e_c00348{left:251.658503px;}
.x5d_c00348{left:253.698000px;}
.x78_c00348{left:255.158172px;}
.x9d_c00348{left:256.219458px;}
.xc1_c00348{left:258.155568px;}
.x27_c00348{left:263.010000px;}
.x87_c00348{left:265.700796px;}
.x8a_c00348{left:267.477690px;}
.xb1_c00348{left:269.293986px;}
.x4_c00348{left:271.324500px;}
.x1e_c00348{left:273.084000px;}
.xa5_c00348{left:277.964130px;}
.xb9_c00348{left:280.191318px;}
.x2f_c00348{left:283.793285px;}
.x50_c00348{left:285.082500px;}
.x70_c00348{left:287.544000px;}
.xa2_c00348{left:290.334663px;}
.x55_c00348{left:296.748030px;}
.x7f_c00348{left:298.011000px;}
.x1f_c00348{left:305.778000px;}
.x83_c00348{left:310.381608px;}
.xb2_c00348{left:311.592834px;}
.x71_c00348{left:320.761500px;}
.x46_c00348{left:328.482533px;}
.xab_c00348{left:333.386211px;}
.x35_c00348{left:339.402000px;}
.x79_c00348{left:342.644772px;}
.xa3_c00348{left:344.299920px;}
.xc8_c00348{left:346.140000px;}
.x10_c00348{left:349.407000px;}
.x47_c00348{left:351.193080px;}
.x8b_c00348{left:353.860830px;}
.xc2_c00348{left:356.716794px;}
.x5_c00348{left:360.421500px;}
.x30_c00348{left:362.103903px;}
.xac_c00348{left:366.698975px;}
.x68_c00348{left:375.310977px;}
.x8c_c00348{left:377.083446px;}
.xc9_c00348{left:380.430000px;}
.x11_c00348{left:382.347000px;}
.x20_c00348{left:384.060000px;}
.x3e_c00348{left:386.850000px;}
.x94_c00348{left:388.369722px;}
.xc3_c00348{left:390.667938px;}
.x36_c00348{left:394.963500px;}
.x72_c00348{left:396.853500px;}
.x84_c00348{left:399.146280px;}
.x3a_c00348{left:405.969473px;}
.x48_c00348{left:407.601165px;}
.xba_c00348{left:411.059352px;}
.x73_c00348{left:419.290500px;}
.xad_c00348{left:421.632416px;}
.xa6_c00348{left:422.788049px;}
.x1_c00348{left:424.980000px;}
.x37_c00348{left:429.016500px;}
.x62_c00348{left:430.059916px;}
.x8d_c00348{left:431.911074px;}
.xb3_c00348{left:433.532264px;}
.xbb_c00348{left:434.549904px;}
.x12_c00348{left:437.958000px;}
.x56_c00348{left:439.595160px;}
.x85_c00348{left:443.141634px;}
.x2_c00348{left:447.390000px;}
.x49_c00348{left:451.627125px;}
.xae_c00348{left:454.629044px;}
.xc4_c00348{left:457.125852px;}
.x21_c00348{left:460.212000px;}
.x5e_c00348{left:462.138000px;}
.x8e_c00348{left:464.837658px;}
.xb4_c00348{left:467.193857px;}
.x13_c00348{left:470.898000px;}
.x31_c00348{left:472.550829px;}
.x74_c00348{left:474.597000px;}
.x95_c00348{left:476.363058px;}
.xbc_c00348{left:478.572012px;}
.x6_c00348{left:481.095000px;}
.x28_c00348{left:482.658000px;}
.x38_c00348{left:483.820500px;}
.x80_c00348{left:486.168000px;}
.x22_c00348{left:492.543000px;}
.x3f_c00348{left:495.091500px;}
.x9e_c00348{left:498.402533px;}
.x75_c00348{left:507.283500px;}
.x96_c00348{left:508.493880px;}
.x4a_c00348{left:516.692475px;}
.x57_c00348{left:518.443890px;}
.x7a_c00348{left:519.506724px;}
.x97_c00348{left:523.676478px;}
.x69_c00348{left:530.567546px;}
.xa7_c00348{left:532.889781px;}
.xaf_c00348{left:537.664500px;}
.x23_c00348{left:538.705500px;}
.xc5_c00348{left:544.609002px;}
.xca_c00348{left:546.120000px;}
.x14_c00348{left:548.868000px;}
.x7b_c00348{left:552.178422px;}
.x8f_c00348{left:554.442960px;}
.x9f_c00348{left:559.491882px;}
.x5f_c00348{left:562.564500px;}
.xbd_c00348{left:567.640560px;}
.x7_c00348{left:570.186000px;}
.x98_c00348{left:575.448204px;}
.x24_c00348{left:582.708000px;}
.x4b_c00348{left:583.900027px;}
.x76_c00348{left:586.017000px;}
.xa8_c00348{left:587.685153px;}
.x90_c00348{left:589.022616px;}
.x3b_c00348{left:594.833820px;}
.x63_c00348{left:596.354437px;}
.x8_c00348{left:603.385500px;}
.x39_c00348{left:605.193000px;}
.x58_c00348{left:606.743258px;}
.x99_c00348{left:610.285206px;}
.x4c_c00348{left:616.587975px;}
.x7c_c00348{left:619.143570px;}
.xb5_c00348{left:622.109876px;}
.x15_c00348{left:626.076000px;}
.xb7_c00348{left:633.553500px;}
.x60_c00348{left:651.357000px;}
.x91_c00348{left:654.616266px;}
.x29_c00348{left:656.233500px;}
.x16_c00348{left:660.130500px;}
.xcb_c00348{left:668.364000px;}
.x9_c00348{left:670.611000px;}
.x51_c00348{left:673.519500px;}
.x77_c00348{left:674.559000px;}
.x59_c00348{left:676.411440px;}
.xb0_c00348{left:677.571952px;}
.x6a_c00348{left:684.203993px;}
.x61_c00348{left:685.662000px;}
.x92_c00348{left:689.165922px;}
.x4d_c00348{left:694.318972px;}
.x6c_c00348{left:695.520000px;}
.x9a_c00348{left:698.788578px;}
.xa_c00348{left:704.626500px;}
.x3c_c00348{left:705.761018px;}
.x6b_c00348{left:707.154356px;}
.x86_c00348{left:708.739704px;}
.xbe_c00348{left:713.206116px;}
.x17_c00348{left:714.619500px;}
.x2a_c00348{left:717.231000px;}
.x5a_c00348{left:720.426840px;}
.x25_c00348{left:726.610500px;}
.x18_c00348{left:738.111000px;}
.xa9_c00348{left:746.449137px;}
.x2b_c00348{left:750.550500px;}
.x40_c00348{left:751.606500px;}
.x5b_c00348{left:752.831130px;}
.x32_c00348{left:760.683587px;}
.x6d_c00348{left:765.990000px;}
.xcc_c00348{left:770.709000px;}
.x64_c00348{left:774.486419px;}
.xa0_c00348{left:775.939717px;}
.x9b_c00348{left:777.870000px;}
.xc6_c00348{left:779.018346px;}
.x52_c00348{left:784.591500px;}
.x41_c00348{left:786.484500px;}
.xb6_c00348{left:790.256066px;}
.x19_c00348{left:794.026500px;}
.xb_c00348{left:804.702000px;}
.x65_c00348{left:806.884961px;}
.x81_c00348{left:810.166500px;}
.x26_c00348{left:816.453000px;}
.x42_c00348{left:829.668000px;}
.x66_c00348{left:830.952881px;}
@media print{
.v0_c00348{vertical-align:0.000000pt;}
.ls0_c00348{letter-spacing:0.000000pt;}
.ws0_c00348{word-spacing:0.000000pt;}
.fs9_c00348{font-size:48.005400pt;}
.fs0_c00348{font-size:53.333333pt;}
.fs10_c00348{font-size:53.337173pt;}
.fsc_c00348{font-size:58.669043pt;}
.fs1_c00348{font-size:64.003872pt;}
.fs12_c00348{font-size:64.004608pt;}
.fs3_c00348{font-size:64.006272pt;}
.fsa_c00348{font-size:64.007200pt;}
.fs14_c00348{font-size:69.299525pt;}
.fs17_c00348{font-size:69.325186pt;}
.fs1c_c00348{font-size:69.333333pt;}
.fs2_c00348{font-size:69.337528pt;}
.fsf_c00348{font-size:69.338325pt;}
.fs8_c00348{font-size:69.341133pt;}
.fs4_c00348{font-size:69.344564pt;}
.fs1a_c00348{font-size:69.360507pt;}
.fsd_c00348{font-size:74.666667pt;}
.fsb_c00348{font-size:74.669691pt;}
.fs6_c00348{font-size:74.677455pt;}
.fs13_c00348{font-size:79.960990pt;}
.fs18_c00348{font-size:79.990599pt;}
.fs5_c00348{font-size:80.011559pt;}
.fs1b_c00348{font-size:80.031354pt;}
.fs15_c00348{font-size:85.291723pt;}
.fse_c00348{font-size:85.339477pt;}
.fs7_c00348{font-size:85.342933pt;}
.fs19_c00348{font-size:85.366777pt;}
.fs16_c00348{font-size:90.622456pt;}
.fs1d_c00348{font-size:90.666667pt;}
.fs11_c00348{font-size:90.673194pt;}
.y0_c00348{bottom:0.000000pt;}
.y129_c00348{bottom:21.121333pt;}
.y12a_c00348{bottom:21.560000pt;}
.y12b_c00348{bottom:25.530667pt;}
.y12c_c00348{bottom:26.834667pt;}
.y12d_c00348{bottom:27.926667pt;}
.y12e_c00348{bottom:28.286667pt;}
.y128_c00348{bottom:36.000000pt;}
.y125_c00348{bottom:57.468517pt;}
.y127_c00348{bottom:59.861280pt;}
.y124_c00348{bottom:63.927195pt;}
.y126_c00348{bottom:65.498885pt;}
.y123_c00348{bottom:66.338069pt;}
.y122_c00348{bottom:68.169605pt;}
.y121_c00348{bottom:69.105349pt;}
.y120_c00348{bottom:71.821301pt;}
.y11f_c00348{bottom:72.975909pt;}
.y11e_c00348{bottom:73.595760pt;}
.y11d_c00348{bottom:75.333179pt;}
.y11c_c00348{bottom:93.046432pt;}
.y11b_c00348{bottom:94.748933pt;}
.y11a_c00348{bottom:95.467072pt;}
.y119_c00348{bottom:97.446005pt;}
.y118_c00348{bottom:98.466864pt;}
.y117_c00348{bottom:100.137861pt;}
.y116_c00348{bottom:101.468373pt;}
.y115_c00348{bottom:102.178459pt;}
.y114_c00348{bottom:105.159019pt;}
.y113_c00348{bottom:106.133499pt;}
.y112_c00348{bottom:106.832144pt;}
.y111_c00348{bottom:109.341061pt;}
.y110_c00348{bottom:110.617925pt;}
.y10d_c00348{bottom:122.132572pt;}
.y10f_c00348{bottom:124.331525pt;}
.y10c_c00348{bottom:127.220732pt;}
.y10e_c00348{bottom:127.924000pt;}
.y10b_c00348{bottom:129.914320pt;}
.y10a_c00348{bottom:131.907876pt;}
.y109_c00348{bottom:132.926984pt;}
.y108_c00348{bottom:135.616080pt;}
.y107_c00348{bottom:136.616616pt;}
.y106_c00348{bottom:137.897124pt;}
.y105_c00348{bottom:140.791948pt;}
.y104_c00348{bottom:142.083300pt;}
.y103_c00348{bottom:157.350952pt;}
.yff_c00348{bottom:160.160371pt;}
.y102_c00348{bottom:161.067560pt;}
.yfe_c00348{bottom:161.275885pt;}
.yfd_c00348{bottom:163.133341pt;}
.yfc_c00348{bottom:164.259191pt;}
.y101_c00348{bottom:164.386008pt;}
.y100_c00348{bottom:166.296000pt;}
.yfb_c00348{bottom:166.837867pt;}
.yfa_c00348{bottom:167.908535pt;}
.yf9_c00348{bottom:171.162645pt;}
.yf8_c00348{bottom:187.187919pt;}
.yf7_c00348{bottom:188.085641pt;}
.yf6_c00348{bottom:192.747452pt;}
.yf5_c00348{bottom:194.356971pt;}
.yf4_c00348{bottom:195.044821pt;}
.yf3_c00348{bottom:197.590557pt;}
.yf2_c00348{bottom:198.609865pt;}
.yf1_c00348{bottom:201.842120pt;}
.yf0_c00348{bottom:202.772023pt;}
.yef_c00348{bottom:204.935637pt;}
.yee_c00348{bottom:206.176347pt;}
.ye7_c00348{bottom:213.634903pt;}
.ye8_c00348{bottom:214.637761pt;}
.ye9_c00348{bottom:216.586007pt;}
.yea_c00348{bottom:217.360959pt;}
.yeb_c00348{bottom:218.607147pt;}
.yec_c00348{bottom:220.643207pt;}
.yed_c00348{bottom:224.238963pt;}
.ye6_c00348{bottom:249.646187pt;}
.ye5_c00348{bottom:255.809088pt;}
.ye4_c00348{bottom:257.548480pt;}
.ye3_c00348{bottom:259.418005pt;}
.ye2_c00348{bottom:260.382997pt;}
.ye1_c00348{bottom:263.533376pt;}
.ye0_c00348{bottom:264.444139pt;}
.ydf_c00348{bottom:265.046848pt;}
.yde_c00348{bottom:268.072000pt;}
.ydd_c00348{bottom:283.448000pt;}
.yd0_c00348{bottom:288.712539pt;}
.yd1_c00348{bottom:289.046080pt;}
.yd2_c00348{bottom:289.160619pt;}
.yd3_c00348{bottom:289.456576pt;}
.yd4_c00348{bottom:289.920080pt;}
.yd5_c00348{bottom:290.100048pt;}
.yd6_c00348{bottom:290.569243pt;}
.yd7_c00348{bottom:290.739947pt;}
.yd8_c00348{bottom:290.820549pt;}
.yd9_c00348{bottom:290.976187pt;}
.yda_c00348{bottom:291.096741pt;}
.ydb_c00348{bottom:291.282976pt;}
.ydc_c00348{bottom:291.754944pt;}
.yc3_c00348{bottom:315.114155pt;}
.yc4_c00348{bottom:315.419365pt;}
.yc5_c00348{bottom:315.878816pt;}
.yc6_c00348{bottom:316.113131pt;}
.yc7_c00348{bottom:316.727840pt;}
.yc8_c00348{bottom:316.892869pt;}
.yc9_c00348{bottom:317.283003pt;}
.yca_c00348{bottom:317.516869pt;}
.ycb_c00348{bottom:317.984571pt;}
.ycc_c00348{bottom:318.153947pt;}
.ycd_c00348{bottom:318.400112pt;}
.yce_c00348{bottom:318.866411pt;}
.ycf_c00348{bottom:319.112256pt;}
.yc1_c00348{bottom:342.478763pt;}
.yc2_c00348{bottom:343.942187pt;}
.yb6_c00348{bottom:374.400736pt;}
.yb7_c00348{bottom:375.533077pt;}
.yb8_c00348{bottom:377.178165pt;}
.yb9_c00348{bottom:377.667765pt;}
.yba_c00348{bottom:378.519712pt;}
.ybb_c00348{bottom:379.185024pt;}
.ybc_c00348{bottom:379.842117pt;}
.ybd_c00348{bottom:380.999317pt;}
.ybe_c00348{bottom:381.353733pt;}
.ybf_c00348{bottom:382.695376pt;}
.yc0_c00348{bottom:383.198240pt;}
.yaf_c00348{bottom:408.241333pt;}
.yb0_c00348{bottom:409.143781pt;}
.yb1_c00348{bottom:410.058965pt;}
.yb2_c00348{bottom:412.065973pt;}
.yb3_c00348{bottom:415.052149pt;}
.yb4_c00348{bottom:415.271733pt;}
.yb5_c00348{bottom:415.521957pt;}
.ya4_c00348{bottom:445.300656pt;}
.ya8_c00348{bottom:445.301088pt;}
.ya5_c00348{bottom:445.301248pt;}
.ya9_c00348{bottom:445.301397pt;}
.ya7_c00348{bottom:445.301547pt;}
.ya6_c00348{bottom:445.301824pt;}
.yaa_c00348{bottom:445.301968pt;}
.yae_c00348{bottom:445.302149pt;}
.yad_c00348{bottom:445.302443pt;}
.yab_c00348{bottom:445.302469pt;}
.yac_c00348{bottom:445.302917pt;}
.y98_c00348{bottom:473.521333pt;}
.y99_c00348{bottom:473.988997pt;}
.y9a_c00348{bottom:474.813589pt;}
.y9b_c00348{bottom:475.256869pt;}
.y9c_c00348{bottom:475.611189pt;}
.y9d_c00348{bottom:476.422837pt;}
.y9e_c00348{bottom:476.662165pt;}
.y9f_c00348{bottom:477.252101pt;}
.ya0_c00348{bottom:477.600757pt;}
.ya1_c00348{bottom:478.440581pt;}
.ya2_c00348{bottom:479.385029pt;}
.ya3_c00348{bottom:480.459957pt;}
.y97_c00348{bottom:508.977333pt;}
.y91_c00348{bottom:541.537496pt;}
.y96_c00348{bottom:541.537667pt;}
.y8e_c00348{bottom:541.537757pt;}
.y90_c00348{bottom:541.537801pt;}
.y94_c00348{bottom:541.537943pt;}
.y92_c00348{bottom:541.537952pt;}
.y95_c00348{bottom:541.538079pt;}
.y8d_c00348{bottom:541.538383pt;}
.y8f_c00348{bottom:541.538400pt;}
.y93_c00348{bottom:541.538420pt;}
.y8c_c00348{bottom:541.538673pt;}
.y8b_c00348{bottom:541.539059pt;}
.y82_c00348{bottom:566.882264pt;}
.y83_c00348{bottom:570.675451pt;}
.y84_c00348{bottom:571.199041pt;}
.y85_c00348{bottom:572.744533pt;}
.y86_c00348{bottom:573.436112pt;}
.y87_c00348{bottom:574.686335pt;}
.y88_c00348{bottom:574.961653pt;}
.y89_c00348{bottom:575.364853pt;}
.y8a_c00348{bottom:575.664072pt;}
.y77_c00348{bottom:600.481333pt;}
.y78_c00348{bottom:600.903037pt;}
.y79_c00348{bottom:601.505833pt;}
.y7a_c00348{bottom:601.756597pt;}
.y7b_c00348{bottom:602.549029pt;}
.y7c_c00348{bottom:602.737153pt;}
.y7d_c00348{bottom:603.173353pt;}
.y7e_c00348{bottom:603.976765pt;}
.y7f_c00348{bottom:604.235701pt;}
.y80_c00348{bottom:604.687105pt;}
.y81_c00348{bottom:604.961545pt;}
.y6d_c00348{bottom:635.841247pt;}
.y74_c00348{bottom:635.841273pt;}
.y76_c00348{bottom:635.841307pt;}
.y75_c00348{bottom:635.841347pt;}
.y6e_c00348{bottom:635.841567pt;}
.y6c_c00348{bottom:635.841613pt;}
.y6b_c00348{bottom:635.841693pt;}
.y71_c00348{bottom:635.841767pt;}
.y70_c00348{bottom:635.841807pt;}
.y73_c00348{bottom:635.841907pt;}
.y6f_c00348{bottom:635.841927pt;}
.y72_c00348{bottom:635.842180pt;}
.y63_c00348{bottom:662.162667pt;}
.y64_c00348{bottom:662.638467pt;}
.y65_c00348{bottom:663.172387pt;}
.y66_c00348{bottom:664.316467pt;}
.y67_c00348{bottom:669.495627pt;}
.y68_c00348{bottom:670.547527pt;}
.y69_c00348{bottom:670.976587pt;}
.y6a_c00348{bottom:671.581147pt;}
.y57_c00348{bottom:696.958207pt;}
.y58_c00348{bottom:697.294993pt;}
.y59_c00348{bottom:697.725267pt;}
.y5a_c00348{bottom:697.984173pt;}
.y5b_c00348{bottom:698.591593pt;}
.y5c_c00348{bottom:698.773040pt;}
.y5d_c00348{bottom:699.223747pt;}
.y5e_c00348{bottom:699.576040pt;}
.y5f_c00348{bottom:700.096833pt;}
.y60_c00348{bottom:700.634187pt;}
.y61_c00348{bottom:700.895320pt;}
.y62_c00348{bottom:701.516973pt;}
.y4f_c00348{bottom:726.482667pt;}
.y50_c00348{bottom:727.193307pt;}
.y51_c00348{bottom:728.337107pt;}
.y52_c00348{bottom:729.986047pt;}
.y53_c00348{bottom:731.429267pt;}
.y54_c00348{bottom:734.849467pt;}
.y55_c00348{bottom:735.314507pt;}
.y56_c00348{bottom:735.890287pt;}
.y46_c00348{bottom:756.001900pt;}
.y47_c00348{bottom:756.940287pt;}
.y48_c00348{bottom:758.860907pt;}
.y49_c00348{bottom:760.635687pt;}
.y4a_c00348{bottom:761.015553pt;}
.y4b_c00348{bottom:762.392393pt;}
.y4c_c00348{bottom:764.372600pt;}
.y4d_c00348{bottom:764.944287pt;}
.y4e_c00348{bottom:766.343740pt;}
.y3c_c00348{bottom:792.481333pt;}
.y3d_c00348{bottom:792.911413pt;}
.y3e_c00348{bottom:794.200553pt;}
.y3f_c00348{bottom:794.629273pt;}
.y40_c00348{bottom:795.363913pt;}
.y41_c00348{bottom:796.104733pt;}
.y42_c00348{bottom:796.558773pt;}
.y43_c00348{bottom:797.289493pt;}
.y44_c00348{bottom:798.907793pt;}
.y45_c00348{bottom:800.849153pt;}
.y3b_c00348{bottom:828.009455pt;}
.y3a_c00348{bottom:828.009504pt;}
.y39_c00348{bottom:828.010040pt;}
.y35_c00348{bottom:828.010409pt;}
.y36_c00348{bottom:828.010528pt;}
.y38_c00348{bottom:828.010615pt;}
.y37_c00348{bottom:828.010880pt;}
.y34_c00348{bottom:828.010915pt;}
.y33_c00348{bottom:828.011561pt;}
.y2d_c00348{bottom:854.404000pt;}
.y2e_c00348{bottom:856.530133pt;}
.y2f_c00348{bottom:859.849259pt;}
.y30_c00348{bottom:862.472177pt;}
.y31_c00348{bottom:863.393917pt;}
.y32_c00348{bottom:863.897412pt;}
.y20_c00348{bottom:882.004000pt;}
.y21_c00348{bottom:883.037872pt;}
.y22_c00348{bottom:884.416576pt;}
.y23_c00348{bottom:884.939680pt;}
.y24_c00348{bottom:886.192192pt;}
.y25_c00348{bottom:887.410624pt;}
.y26_c00348{bottom:887.927920pt;}
.y27_c00348{bottom:888.666520pt;}
.y28_c00348{bottom:889.370560pt;}
.y29_c00348{bottom:890.066512pt;}
.y2a_c00348{bottom:891.322504pt;}
.y2b_c00348{bottom:891.673000pt;}
.y2c_c00348{bottom:893.110480pt;}
.y1d_c00348{bottom:918.001957pt;}
.y1e_c00348{bottom:919.472589pt;}
.y1f_c00348{bottom:920.084755pt;}
.y10_c00348{bottom:946.802667pt;}
.y11_c00348{bottom:947.351467pt;}
.y12_c00348{bottom:948.682549pt;}
.y13_c00348{bottom:949.646907pt;}
.y14_c00348{bottom:950.056827pt;}
.y15_c00348{bottom:950.748875pt;}
.y16_c00348{bottom:951.158795pt;}
.y17_c00348{bottom:952.129088pt;}
.y18_c00348{bottom:953.089899pt;}
.y19_c00348{bottom:953.513688pt;}
.y1a_c00348{bottom:954.191773pt;}
.y1b_c00348{bottom:954.484112pt;}
.y1c_c00348{bottom:955.179949pt;}
.yc_c00348{bottom:982.435809pt;}
.ye_c00348{bottom:982.435940pt;}
.yd_c00348{bottom:982.436355pt;}
.yf_c00348{bottom:982.436405pt;}
.y2_c00348{bottom:1009.922667pt;}
.y3_c00348{bottom:1011.393381pt;}
.y4_c00348{bottom:1012.264552pt;}
.y5_c00348{bottom:1013.116847pt;}
.y6_c00348{bottom:1013.444471pt;}
.y7_c00348{bottom:1014.315583pt;}
.y8_c00348{bottom:1014.640200pt;}
.y9_c00348{bottom:1015.297516pt;}
.ya_c00348{bottom:1015.630112pt;}
.yb_c00348{bottom:1016.608628pt;}
.y1_c00348{bottom:1068.485333pt;}
.hb_c00348{height:48.005400pt;}
.h2_c00348{height:53.333333pt;}
.h12_c00348{height:53.337173pt;}
.he_c00348{height:58.669043pt;}
.h3_c00348{height:64.003872pt;}
.h14_c00348{height:64.004608pt;}
.h5_c00348{height:64.006272pt;}
.hc_c00348{height:64.007200pt;}
.h16_c00348{height:69.299525pt;}
.h19_c00348{height:69.325186pt;}
.h1e_c00348{height:69.333333pt;}
.h4_c00348{height:69.337528pt;}
.h11_c00348{height:69.338325pt;}
.ha_c00348{height:69.341133pt;}
.h6_c00348{height:69.344564pt;}
.h1c_c00348{height:69.360507pt;}
.hf_c00348{height:74.666667pt;}
.hd_c00348{height:74.669691pt;}
.h8_c00348{height:74.677455pt;}
.h15_c00348{height:79.960990pt;}
.h1a_c00348{height:79.990599pt;}
.h7_c00348{height:80.011559pt;}
.h1d_c00348{height:80.031354pt;}
.h17_c00348{height:85.291723pt;}
.h10_c00348{height:85.339477pt;}
.h9_c00348{height:85.342933pt;}
.h1b_c00348{height:85.366777pt;}
.h18_c00348{height:90.622456pt;}
.h1f_c00348{height:90.666667pt;}
.h13_c00348{height:90.673194pt;}
.h0_c00348{height:1112.400000pt;}
.h1_c00348{height:1112.666667pt;}
.w0_c00348{width:813.333333pt;}
.x0_c00348{left:0.000000pt;}
.x2c_c00348{left:106.318515pt;}
.x3_c00348{left:107.476000pt;}
.x1a_c00348{left:108.443331pt;}
.x33_c00348{left:109.518667pt;}
.x43_c00348{left:110.453467pt;}
.x5c_c00348{left:111.676000pt;}
.x7d_c00348{left:113.429333pt;}
.x9c_c00348{left:114.493333pt;}
.xa4_c00348{left:115.849440pt;}
.xb8_c00348{left:117.161088pt;}
.xc_c00348{left:126.721975pt;}
.x34_c00348{left:138.190667pt;}
.x4e_c00348{left:141.540000pt;}
.xf_c00348{left:146.624000pt;}
.x44_c00348{left:147.931513pt;}
.x6e_c00348{left:149.938667pt;}
.x88_c00348{left:151.051120pt;}
.xa1_c00348{left:153.192071pt;}
.xd_c00348{left:154.323985pt;}
.x2d_c00348{left:156.726423pt;}
.x3d_c00348{left:157.684000pt;}
.x53_c00348{left:159.844647pt;}
.x1d_c00348{left:166.146667pt;}
.x93_c00348{left:169.707573pt;}
.xbf_c00348{left:172.245765pt;}
.xe_c00348{left:174.005028pt;}
.x1b_c00348{left:175.290512pt;}
.x4f_c00348{left:177.134667pt;}
.x82_c00348{left:179.143237pt;}
.x7e_c00348{left:188.633333pt;}
.xc0_c00348{left:192.238752pt;}
.x45_c00348{left:195.731813pt;}
.xaa_c00348{left:200.397791pt;}
.xc7_c00348{left:201.360000pt;}
.x1c_c00348{left:203.108728pt;}
.x67_c00348{left:206.404783pt;}
.x89_c00348{left:208.452539pt;}
.x54_c00348{left:216.010620pt;}
.x6f_c00348{left:218.654667pt;}
.x2e_c00348{left:223.696447pt;}
.x5d_c00348{left:225.509333pt;}
.x78_c00348{left:226.807264pt;}
.x9d_c00348{left:227.750629pt;}
.xc1_c00348{left:229.471616pt;}
.x27_c00348{left:233.786667pt;}
.x87_c00348{left:236.178485pt;}
.x8a_c00348{left:237.757947pt;}
.xb1_c00348{left:239.372432pt;}
.x4_c00348{left:241.177333pt;}
.x1e_c00348{left:242.741333pt;}
.xa5_c00348{left:247.079227pt;}
.xb9_c00348{left:249.058949pt;}
.x2f_c00348{left:252.260697pt;}
.x50_c00348{left:253.406667pt;}
.x70_c00348{left:255.594667pt;}
.xa2_c00348{left:258.075256pt;}
.x55_c00348{left:263.776027pt;}
.x7f_c00348{left:264.898667pt;}
.x1f_c00348{left:271.802667pt;}
.x83_c00348{left:275.894763pt;}
.xb2_c00348{left:276.971408pt;}
.x71_c00348{left:285.121333pt;}
.x46_c00348{left:291.984473pt;}
.xab_c00348{left:296.343299pt;}
.x35_c00348{left:301.690667pt;}
.x79_c00348{left:304.573131pt;}
.xa3_c00348{left:306.044373pt;}
.xc8_c00348{left:307.680000pt;}
.x10_c00348{left:310.584000pt;}
.x47_c00348{left:312.171627pt;}
.x8b_c00348{left:314.542960pt;}
.xc2_c00348{left:317.081595pt;}
.x5_c00348{left:320.374667pt;}
.x30_c00348{left:321.870136pt;}
.xac_c00348{left:325.954644pt;}
.x68_c00348{left:333.609757pt;}
.x8c_c00348{left:335.185285pt;}
.xc9_c00348{left:338.160000pt;}
.x11_c00348{left:339.864000pt;}
.x20_c00348{left:341.386667pt;}
.x3e_c00348{left:343.866667pt;}
.x94_c00348{left:345.217531pt;}
.xc3_c00348{left:347.260389pt;}
.x36_c00348{left:351.078667pt;}
.x72_c00348{left:352.758667pt;}
.x84_c00348{left:354.796693pt;}
.x3a_c00348{left:360.861753pt;}
.x48_c00348{left:362.312147pt;}
.xba_c00348{left:365.386091pt;}
.x73_c00348{left:372.702667pt;}
.xad_c00348{left:374.784369pt;}
.xa6_c00348{left:375.811599pt;}
.x1_c00348{left:377.760000pt;}
.x37_c00348{left:381.348000pt;}
.x62_c00348{left:382.275481pt;}
.x8d_c00348{left:383.920955pt;}
.xb3_c00348{left:385.362012pt;}
.xbb_c00348{left:386.266581pt;}
.x12_c00348{left:389.296000pt;}
.x56_c00348{left:390.751253pt;}
.x85_c00348{left:393.903675pt;}
.x2_c00348{left:397.680000pt;}
.x49_c00348{left:401.446333pt;}
.xae_c00348{left:404.114705pt;}
.xc4_c00348{left:406.334091pt;}
.x21_c00348{left:409.077333pt;}
.x5e_c00348{left:410.789333pt;}
.x8e_c00348{left:413.189029pt;}
.xb4_c00348{left:415.283428pt;}
.x13_c00348{left:418.576000pt;}
.x31_c00348{left:420.045181pt;}
.x74_c00348{left:421.864000pt;}
.x95_c00348{left:423.433829pt;}
.xbc_c00348{left:425.397344pt;}
.x6_c00348{left:427.640000pt;}
.x28_c00348{left:429.029333pt;}
.x38_c00348{left:430.062667pt;}
.x80_c00348{left:432.149333pt;}
.x22_c00348{left:437.816000pt;}
.x3f_c00348{left:440.081333pt;}
.x9e_c00348{left:443.024473pt;}
.x75_c00348{left:450.918667pt;}
.x96_c00348{left:451.994560pt;}
.x4a_c00348{left:459.282200pt;}
.x57_c00348{left:460.839013pt;}
.x7a_c00348{left:461.783755pt;}
.x97_c00348{left:465.490203pt;}
.x69_c00348{left:471.615596pt;}
.xa7_c00348{left:473.679805pt;}
.xaf_c00348{left:477.924000pt;}
.x23_c00348{left:478.849333pt;}
.xc5_c00348{left:484.096891pt;}
.xca_c00348{left:485.440000pt;}
.x14_c00348{left:487.882667pt;}
.x7b_c00348{left:490.825264pt;}
.x8f_c00348{left:492.838187pt;}
.x9f_c00348{left:497.326117pt;}
.x5f_c00348{left:500.057333pt;}
.xbd_c00348{left:504.569387pt;}
.x7_c00348{left:506.832000pt;}
.x98_c00348{left:511.509515pt;}
.x24_c00348{left:517.962667pt;}
.x4b_c00348{left:519.022247pt;}
.x76_c00348{left:520.904000pt;}
.xa8_c00348{left:522.386803pt;}
.x90_c00348{left:523.575659pt;}
.x3b_c00348{left:528.741173pt;}
.x63_c00348{left:530.092833pt;}
.x8_c00348{left:536.342667pt;}
.x39_c00348{left:537.949333pt;}
.x58_c00348{left:539.327340pt;}
.x99_c00348{left:542.475739pt;}
.x4c_c00348{left:548.078200pt;}
.x7c_c00348{left:550.349840pt;}
.xb5_c00348{left:552.986556pt;}
.x15_c00348{left:556.512000pt;}
.xb7_c00348{left:563.158667pt;}
.x60_c00348{left:578.984000pt;}
.x91_c00348{left:581.881125pt;}
.x29_c00348{left:583.318667pt;}
.x16_c00348{left:586.782667pt;}
.xcb_c00348{left:594.101333pt;}
.x9_c00348{left:596.098667pt;}
.x51_c00348{left:598.684000pt;}
.x77_c00348{left:599.608000pt;}
.x59_c00348{left:601.254613pt;}
.xb0_c00348{left:602.286180pt;}
.x6a_c00348{left:608.181327pt;}
.x61_c00348{left:609.477333pt;}
.x92_c00348{left:612.591931pt;}
.x4d_c00348{left:617.172420pt;}
.x6c_c00348{left:618.240000pt;}
.x9a_c00348{left:621.145403pt;}
.xa_c00348{left:626.334667pt;}
.x3c_c00348{left:627.343127pt;}
.x6b_c00348{left:628.581649pt;}
.x86_c00348{left:629.990848pt;}
.xbe_c00348{left:633.960992pt;}
.x17_c00348{left:635.217333pt;}
.x2a_c00348{left:637.538667pt;}
.x5a_c00348{left:640.379413pt;}
.x25_c00348{left:645.876000pt;}
.x18_c00348{left:656.098667pt;}
.xa9_c00348{left:663.510344pt;}
.x2b_c00348{left:667.156000pt;}
.x40_c00348{left:668.094667pt;}
.x5b_c00348{left:669.183227pt;}
.x32_c00348{left:676.163188pt;}
.x6d_c00348{left:680.880000pt;}
.xcc_c00348{left:685.074667pt;}
.x64_c00348{left:688.432372pt;}
.xa0_c00348{left:689.724193pt;}
.x9b_c00348{left:691.440000pt;}
.xc6_c00348{left:692.460752pt;}
.x52_c00348{left:697.414667pt;}
.x41_c00348{left:699.097333pt;}
.xb6_c00348{left:702.449836pt;}
.x19_c00348{left:705.801333pt;}
.xb_c00348{left:715.290667pt;}
.x65_c00348{left:717.231076pt;}
.x81_c00348{left:720.148000pt;}
.x26_c00348{left:725.736000pt;}
.x42_c00348{left:737.482667pt;}
.x66_c00348{left:738.624783pt;}
}





/* 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_c00349 {
    display:none;
  }
  .loading-indicator_c00349.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00349 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_c00349 { 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_c00349" -> "#page-container .classname_c00349")
 */
.pf_c00349 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00349 { /* 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_c00349.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00349 { /* 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_c00349 { /* 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_c00349 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00349 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00349 {overflow:visible;}
  }
}
.c_c00349 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00349 { /* 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_c00349:after { /* webkit #35443 */
  content: '';
}
.t_c00349:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00349 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 */
}
.__c00349 { /* 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_c00349 { /* info for Javascript */
  display:none;
}
.l_c00349 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00349 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00349 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00349: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_c00349 {
    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_c00349.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00349.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_c00349 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00349{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00349;src:url('chunks/assets/font_7c6b9abe6ee2a268480c528b.woff2')format("woff");}.ff1_c00349{font-family:ff1_c00349;line-height:1.000000;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;}
.m19_c00349{transform:matrix(0.013415,0.000107,-0.002000,0.249992,0,0);-ms-transform:matrix(0.013415,0.000107,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.013415,0.000107,-0.002000,0.249992,0,0);}
.m3_c00349{transform:matrix(0.013520,0.000108,-0.002000,0.249992,0,0);-ms-transform:matrix(0.013520,0.000108,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.013520,0.000108,-0.002000,0.249992,0,0);}
.m0_c00349{transform:matrix(0.019090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.019090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.019090,0.000000,0.000000,0.250000,0,0);}
.m26_c00349{transform:matrix(0.092660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092660,0.000000,0.000000,0.250000,0,0);}
.m20_c00349{transform:matrix(0.174179,0.001393,-0.002000,0.249992,0,0);-ms-transform:matrix(0.174179,0.001393,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.174179,0.001393,-0.002000,0.249992,0,0);}
.m1f_c00349{transform:matrix(0.175199,0.001402,-0.002000,0.249992,0,0);-ms-transform:matrix(0.175199,0.001402,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.175199,0.001402,-0.002000,0.249992,0,0);}
.me_c00349{transform:matrix(0.176089,0.001409,-0.002000,0.249992,0,0);-ms-transform:matrix(0.176089,0.001409,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.176089,0.001409,-0.002000,0.249992,0,0);}
.mb_c00349{transform:matrix(0.183219,0.001466,-0.002000,0.249992,0,0);-ms-transform:matrix(0.183219,0.001466,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.183219,0.001466,-0.002000,0.249992,0,0);}
.m15_c00349{transform:matrix(0.185144,0.001481,-0.002000,0.249992,0,0);-ms-transform:matrix(0.185144,0.001481,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.185144,0.001481,-0.002000,0.249992,0,0);}
.m22_c00349{transform:matrix(0.185444,0.001484,-0.002000,0.249992,0,0);-ms-transform:matrix(0.185444,0.001484,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.185444,0.001484,-0.002000,0.249992,0,0);}
.mc_c00349{transform:matrix(0.187014,0.001496,-0.002000,0.249992,0,0);-ms-transform:matrix(0.187014,0.001496,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.187014,0.001496,-0.002000,0.249992,0,0);}
.m2e_c00349{transform:matrix(0.191345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191345,0.000000,0.000000,0.250000,0,0);}
.m10_c00349{transform:matrix(0.193974,0.001552,-0.002000,0.249992,0,0);-ms-transform:matrix(0.193974,0.001552,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.193974,0.001552,-0.002000,0.249992,0,0);}
.m1e_c00349{transform:matrix(0.194434,0.001555,-0.002000,0.249992,0,0);-ms-transform:matrix(0.194434,0.001555,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.194434,0.001555,-0.002000,0.249992,0,0);}
.m5_c00349{transform:matrix(0.200084,0.001601,-0.002000,0.249992,0,0);-ms-transform:matrix(0.200084,0.001601,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.200084,0.001601,-0.002000,0.249992,0,0);}
.m13_c00349{transform:matrix(0.203198,0.001626,-0.002000,0.249992,0,0);-ms-transform:matrix(0.203198,0.001626,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.203198,0.001626,-0.002000,0.249992,0,0);}
.ma_c00349{transform:matrix(0.203258,0.001626,-0.002000,0.249992,0,0);-ms-transform:matrix(0.203258,0.001626,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.203258,0.001626,-0.002000,0.249992,0,0);}
.m21_c00349{transform:matrix(0.209573,0.001677,-0.002000,0.249992,0,0);-ms-transform:matrix(0.209573,0.001677,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.209573,0.001677,-0.002000,0.249992,0,0);}
.md_c00349{transform:matrix(0.211303,0.001690,-0.002000,0.249992,0,0);-ms-transform:matrix(0.211303,0.001690,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.211303,0.001690,-0.002000,0.249992,0,0);}
.mf_c00349{transform:matrix(0.211733,0.001694,-0.002000,0.249992,0,0);-ms-transform:matrix(0.211733,0.001694,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.211733,0.001694,-0.002000,0.249992,0,0);}
.m11_c00349{transform:matrix(0.217703,0.001742,-0.002000,0.249992,0,0);-ms-transform:matrix(0.217703,0.001742,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.217703,0.001742,-0.002000,0.249992,0,0);}
.m14_c00349{transform:matrix(0.217903,0.001743,-0.002000,0.249992,0,0);-ms-transform:matrix(0.217903,0.001743,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.217903,0.001743,-0.002000,0.249992,0,0);}
.m33_c00349{transform:matrix(0.219045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219045,0.000000,0.000000,0.250000,0,0);}
.m4_c00349{transform:matrix(0.223503,0.001788,-0.002000,0.249992,0,0);-ms-transform:matrix(0.223503,0.001788,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.223503,0.001788,-0.002000,0.249992,0,0);}
.m12_c00349{transform:matrix(0.229888,0.001839,-0.002000,0.249992,0,0);-ms-transform:matrix(0.229888,0.001839,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.229888,0.001839,-0.002000,0.249992,0,0);}
.m7_c00349{transform:matrix(0.230928,0.001847,-0.002000,0.249992,0,0);-ms-transform:matrix(0.230928,0.001847,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.230928,0.001847,-0.002000,0.249992,0,0);}
.m2f_c00349{transform:matrix(0.231045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231045,0.000000,0.000000,0.250000,0,0);}
.m6_c00349{transform:matrix(0.238137,0.001905,-0.002000,0.249992,0,0);-ms-transform:matrix(0.238137,0.001905,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.238137,0.001905,-0.002000,0.249992,0,0);}
.m23_c00349{transform:matrix(0.251672,0.002013,-0.002000,0.249992,0,0);-ms-transform:matrix(0.251672,0.002013,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.251672,0.002013,-0.002000,0.249992,0,0);}
.m1b_c00349{transform:matrix(0.253887,0.002031,-0.002000,0.249992,0,0);-ms-transform:matrix(0.253887,0.002031,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.253887,0.002031,-0.002000,0.249992,0,0);}
.m16_c00349{transform:matrix(0.255602,0.002045,-0.002000,0.249992,0,0);-ms-transform:matrix(0.255602,0.002045,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.255602,0.002045,-0.002000,0.249992,0,0);}
.m1a_c00349{transform:matrix(0.268606,0.002149,-0.002000,0.249992,0,0);-ms-transform:matrix(0.268606,0.002149,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.268606,0.002149,-0.002000,0.249992,0,0);}
.m8_c00349{transform:matrix(0.272131,0.002177,-0.002000,0.249992,0,0);-ms-transform:matrix(0.272131,0.002177,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.272131,0.002177,-0.002000,0.249992,0,0);}
.m9_c00349{transform:matrix(0.285581,0.002285,-0.002000,0.249992,0,0);-ms-transform:matrix(0.285581,0.002285,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.285581,0.002285,-0.002000,0.249992,0,0);}
.m29_c00349{transform:matrix(0.293510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293510,0.000000,0.000000,0.250000,0,0);}
.m2d_c00349{transform:matrix(0.294570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294570,0.000000,0.000000,0.250000,0,0);}
.m30_c00349{transform:matrix(0.295675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295675,0.000000,0.000000,0.250000,0,0);}
.m1c_c00349{transform:matrix(0.296995,0.002376,-0.002000,0.249992,0,0);-ms-transform:matrix(0.296995,0.002376,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.296995,0.002376,-0.002000,0.249992,0,0);}
.m31_c00349{transform:matrix(0.299435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299435,0.000000,0.000000,0.250000,0,0);}
.m2_c00349{transform:matrix(0.321465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321465,0.000000,0.000000,0.250000,0,0);}
.m24_c00349{transform:matrix(0.326590,0.002613,-0.002000,0.249992,0,0);-ms-transform:matrix(0.326590,0.002613,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.326590,0.002613,-0.002000,0.249992,0,0);}
.m2a_c00349{transform:matrix(0.378535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378535,0.000000,0.000000,0.250000,0,0);}
.m28_c00349{transform:matrix(0.387420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387420,0.000000,0.000000,0.250000,0,0);}
.m1d_c00349{transform:matrix(0.396447,0.003172,-0.002000,0.249992,0,0);-ms-transform:matrix(0.396447,0.003172,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.396447,0.003172,-0.002000,0.249992,0,0);}
.m27_c00349{transform:matrix(0.434430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434430,0.000000,0.000000,0.250000,0,0);}
.m1_c00349{transform:matrix(0.441010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441010,0.000000,0.000000,0.250000,0,0);}
.m25_c00349{transform:matrix(0.524818,0.004199,-0.002000,0.249992,0,0);-ms-transform:matrix(0.524818,0.004199,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.524818,0.004199,-0.002000,0.249992,0,0);}
.m32_c00349{transform:matrix(0.603795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.603795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.603795,0.000000,0.000000,0.250000,0,0);}
.m18_c00349{transform:matrix(0.607806,0.004862,-0.002000,0.249992,0,0);-ms-transform:matrix(0.607806,0.004862,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.607806,0.004862,-0.002000,0.249992,0,0);}
.m17_c00349{transform:matrix(0.720287,0.005762,-0.002000,0.249992,0,0);-ms-transform:matrix(0.720287,0.005762,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.720287,0.005762,-0.002000,0.249992,0,0);}
.m2c_c00349{transform:matrix(0.987360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.987360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.987360,0.000000,0.000000,0.250000,0,0);}
.m2b_c00349{transform:matrix(1.443195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.443195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.443195,0.000000,0.000000,0.250000,0,0);}
.v0_c00349{vertical-align:0.000000px;}
.ls0_c00349{letter-spacing:0.000000px;}
.sc__c00349{text-shadow:none;}
.sc0_c00349{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__c00349{-webkit-text-stroke:0px transparent;}
.sc0_c00349{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00349{word-spacing:0.000000px;}
.fc0_c00349{color:transparent;}
.fs7_c00349{font-size:18.000000px;}
.fs5_c00349{font-size:30.000000px;}
.fs6_c00349{font-size:36.000000px;}
.fs0_c00349{font-size:60.000000px;}
.fs1_c00349{font-size:72.002304px;}
.fs3_c00349{font-size:90.002880px;}
.fs2_c00349{font-size:96.003072px;}
.fs4_c00349{font-size:102.003264px;}
.y0_c00349{bottom:0.000000px;}
.y27_c00349{bottom:746.280000px;}
.y26_c00349{bottom:761.524500px;}
.y25_c00349{bottom:762.307500px;}
.y24_c00349{bottom:794.874480px;}
.y21_c00349{bottom:794.874720px;}
.y23_c00349{bottom:794.874876px;}
.y22_c00349{bottom:794.875152px;}
.y20_c00349{bottom:794.875428px;}
.y1f_c00349{bottom:794.875596px;}
.y1d_c00349{bottom:794.875860px;}
.y1e_c00349{bottom:794.876244px;}
.y1c_c00349{bottom:794.876388px;}
.y1b_c00349{bottom:830.072772px;}
.y1a_c00349{bottom:830.551500px;}
.y19_c00349{bottom:830.794248px;}
.y18_c00349{bottom:831.049284px;}
.y17_c00349{bottom:832.303080px;}
.y16_c00349{bottom:832.946556px;}
.y15_c00349{bottom:865.053780px;}
.y14_c00349{bottom:865.217712px;}
.y13_c00349{bottom:865.816560px;}
.y12_c00349{bottom:866.693496px;}
.y11_c00349{bottom:866.989152px;}
.y10_c00349{bottom:867.598284px;}
.yf_c00349{bottom:867.777432px;}
.ye_c00349{bottom:899.737476px;}
.yd_c00349{bottom:900.283452px;}
.yc_c00349{bottom:900.823428px;}
.yb_c00349{bottom:901.186296px;}
.ya_c00349{bottom:901.718484px;}
.y9_c00349{bottom:902.609856px;}
.y8_c00349{bottom:935.859876px;}
.y7_c00349{bottom:936.484008px;}
.y6_c00349{bottom:937.103772px;}
.y5_c00349{bottom:937.371636px;}
.y4_c00349{bottom:937.905348px;}
.y3_c00349{bottom:938.145132px;}
.y2_c00349{bottom:938.790000px;}
.y1_c00349{bottom:972.034500px;}
.h9_c00349{height:18.000000px;}
.h7_c00349{height:30.000000px;}
.h8_c00349{height:36.000000px;}
.h2_c00349{height:60.000000px;}
.h3_c00349{height:72.002304px;}
.h5_c00349{height:90.002880px;}
.h4_c00349{height:96.003072px;}
.h6_c00349{height:102.003264px;}
.h0_c00349{height:1251.450000px;}
.h1_c00349{height:1251.750000px;}
.w0_c00349{width:915.000000px;}
.x0_c00349{left:0.000000px;}
.x17_c00349{left:171.653064px;}
.x25_c00349{left:173.880000px;}
.x26_c00349{left:184.410000px;}
.x1d_c00349{left:188.995632px;}
.x10_c00349{left:193.761108px;}
.x27_c00349{left:196.020000px;}
.x28_c00349{left:206.820000px;}
.x11_c00349{left:216.154608px;}
.x29_c00349{left:220.050000px;}
.x1e_c00349{left:227.876616px;}
.x2a_c00349{left:250.290000px;}
.x4_c00349{left:269.200500px;}
.x2d_c00349{left:288.900000px;}
.x12_c00349{left:292.296108px;}
.x18_c00349{left:300.465660px;}
.x1f_c00349{left:303.208440px;}
.x2e_c00349{left:316.170000px;}
.x13_c00349{left:329.253108px;}
.x20_c00349{left:337.229112px;}
.xb_c00349{left:348.434148px;}
.x5_c00349{left:349.809000px;}
.x2f_c00349{left:371.790000px;}
.x6_c00349{left:379.782000px;}
.x2b_c00349{left:384.750000px;}
.x21_c00349{left:404.191896px;}
.x30_c00349{left:427.680000px;}
.xc_c00349{left:437.541720px;}
.x14_c00349{left:438.870108px;}
.x7_c00349{left:446.496000px;}
.x22_c00349{left:469.534572px;}
.x8_c00349{left:479.979000px;}
.xd_c00349{left:490.751868px;}
.x1_c00349{left:492.210000px;}
.x2c_c00349{left:499.230000px;}
.x15_c00349{left:513.726108px;}
.xe_c00349{left:527.109792px;}
.x16_c00349{left:534.217608px;}
.x2_c00349{left:537.570000px;}
.x19_c00349{left:551.321184px;}
.x31_c00349{left:552.420000px;}
.x9_c00349{left:557.449500px;}
.xf_c00349{left:581.105928px;}
.x23_c00349{left:589.147728px;}
.x3_c00349{left:595.350000px;}
.x1a_c00349{left:602.326908px;}
.xa_c00349{left:635.466000px;}
.x1b_c00349{left:650.859072px;}
.x24_c00349{left:673.390116px;}
.x1c_c00349{left:746.702376px;}
@media print{
.v0_c00349{vertical-align:0.000000pt;}
.ls0_c00349{letter-spacing:0.000000pt;}
.ws0_c00349{word-spacing:0.000000pt;}
.fs7_c00349{font-size:16.000000pt;}
.fs5_c00349{font-size:26.666667pt;}
.fs6_c00349{font-size:32.000000pt;}
.fs0_c00349{font-size:53.333333pt;}
.fs1_c00349{font-size:64.002048pt;}
.fs3_c00349{font-size:80.002560pt;}
.fs2_c00349{font-size:85.336064pt;}
.fs4_c00349{font-size:90.669568pt;}
.y0_c00349{bottom:0.000000pt;}
.y27_c00349{bottom:663.360000pt;}
.y26_c00349{bottom:676.910667pt;}
.y25_c00349{bottom:677.606667pt;}
.y24_c00349{bottom:706.555093pt;}
.y21_c00349{bottom:706.555307pt;}
.y23_c00349{bottom:706.555445pt;}
.y22_c00349{bottom:706.555691pt;}
.y20_c00349{bottom:706.555936pt;}
.y1f_c00349{bottom:706.556085pt;}
.y1d_c00349{bottom:706.556320pt;}
.y1e_c00349{bottom:706.556661pt;}
.y1c_c00349{bottom:706.556789pt;}
.y1b_c00349{bottom:737.842464pt;}
.y1a_c00349{bottom:738.268000pt;}
.y19_c00349{bottom:738.483776pt;}
.y18_c00349{bottom:738.710475pt;}
.y17_c00349{bottom:739.824960pt;}
.y16_c00349{bottom:740.396939pt;}
.y15_c00349{bottom:768.936693pt;}
.y14_c00349{bottom:769.082411pt;}
.y13_c00349{bottom:769.614720pt;}
.y12_c00349{bottom:770.394219pt;}
.y11_c00349{bottom:770.657024pt;}
.y10_c00349{bottom:771.198475pt;}
.yf_c00349{bottom:771.357717pt;}
.ye_c00349{bottom:799.766645pt;}
.yd_c00349{bottom:800.251957pt;}
.yc_c00349{bottom:800.731936pt;}
.yb_c00349{bottom:801.054485pt;}
.ya_c00349{bottom:801.527541pt;}
.y9_c00349{bottom:802.319872pt;}
.y8_c00349{bottom:831.875445pt;}
.y7_c00349{bottom:832.430229pt;}
.y6_c00349{bottom:832.981131pt;}
.y5_c00349{bottom:833.219232pt;}
.y4_c00349{bottom:833.693643pt;}
.y3_c00349{bottom:833.906784pt;}
.y2_c00349{bottom:834.480000pt;}
.y1_c00349{bottom:864.030667pt;}
.h9_c00349{height:16.000000pt;}
.h7_c00349{height:26.666667pt;}
.h8_c00349{height:32.000000pt;}
.h2_c00349{height:53.333333pt;}
.h3_c00349{height:64.002048pt;}
.h5_c00349{height:80.002560pt;}
.h4_c00349{height:85.336064pt;}
.h6_c00349{height:90.669568pt;}
.h0_c00349{height:1112.400000pt;}
.h1_c00349{height:1112.666667pt;}
.w0_c00349{width:813.333333pt;}
.x0_c00349{left:0.000000pt;}
.x17_c00349{left:152.580501pt;}
.x25_c00349{left:154.560000pt;}
.x26_c00349{left:163.920000pt;}
.x1d_c00349{left:167.996117pt;}
.x10_c00349{left:172.232096pt;}
.x27_c00349{left:174.240000pt;}
.x28_c00349{left:183.840000pt;}
.x11_c00349{left:192.137429pt;}
.x29_c00349{left:195.600000pt;}
.x1e_c00349{left:202.556992pt;}
.x2a_c00349{left:222.480000pt;}
.x4_c00349{left:239.289333pt;}
.x2d_c00349{left:256.800000pt;}
.x12_c00349{left:259.818763pt;}
.x18_c00349{left:267.080587pt;}
.x1f_c00349{left:269.518613pt;}
.x2e_c00349{left:281.040000pt;}
.x13_c00349{left:292.669429pt;}
.x20_c00349{left:299.759211pt;}
.xb_c00349{left:309.719243pt;}
.x5_c00349{left:310.941333pt;}
.x2f_c00349{left:330.480000pt;}
.x6_c00349{left:337.584000pt;}
.x2b_c00349{left:342.000000pt;}
.x21_c00349{left:359.281685pt;}
.x30_c00349{left:380.160000pt;}
.xc_c00349{left:388.925973pt;}
.x14_c00349{left:390.106763pt;}
.x7_c00349{left:396.885333pt;}
.x22_c00349{left:417.364064pt;}
.x8_c00349{left:426.648000pt;}
.xd_c00349{left:436.223883pt;}
.x1_c00349{left:437.520000pt;}
.x2c_c00349{left:443.760000pt;}
.x15_c00349{left:456.645429pt;}
.xe_c00349{left:468.542037pt;}
.x16_c00349{left:474.860096pt;}
.x2_c00349{left:477.840000pt;}
.x19_c00349{left:490.063275pt;}
.x31_c00349{left:491.040000pt;}
.x9_c00349{left:495.510667pt;}
.xf_c00349{left:516.538603pt;}
.x23_c00349{left:523.686869pt;}
.x3_c00349{left:529.200000pt;}
.x1a_c00349{left:535.401696pt;}
.xa_c00349{left:564.858667pt;}
.x1b_c00349{left:578.541397pt;}
.x24_c00349{left:598.568992pt;}
.x1c_c00349{left:663.735445pt;}
}





/* 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_c00350 {
    display:none;
  }
  .loading-indicator_c00350.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00350 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_c00350 { 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_c00350" -> "#page-container .classname_c00350")
 */
.pf_c00350 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00350 { /* 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_c00350.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00350 { /* 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_c00350 { /* 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_c00350 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00350 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00350 {overflow:visible;}
  }
}
.c_c00350 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00350 { /* 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_c00350:after { /* webkit #35443 */
  content: '';
}
.t_c00350:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00350 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 */
}
.__c00350 { /* 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_c00350 { /* info for Javascript */
  display:none;
}
.l_c00350 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00350 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00350 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00350: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_c00350 {
    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_c00350.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00350.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_c00350 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00350{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00350;src:url('chunks/assets/font_53ec0c54e60da7c2d414b553.woff2')format("woff");}.ff1_c00350{font-family:ff1_c00350;line-height:1.000000;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;}
.mfc_c00350{transform:matrix(0.014749,-0.000133,0.002250,0.249990,0,0);-ms-transform:matrix(0.014749,-0.000133,0.002250,0.249990,0,0);-webkit-transform:matrix(0.014749,-0.000133,0.002250,0.249990,0,0);}
.m137_c00350{transform:matrix(0.017310,-0.000121,0.001750,0.249994,0,0);-ms-transform:matrix(0.017310,-0.000121,0.001750,0.249994,0,0);-webkit-transform:matrix(0.017310,-0.000121,0.001750,0.249994,0,0);}
.m1_c00350{transform:matrix(0.082220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.082220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.082220,0.000000,0.000000,0.250000,0,0);}
.m127_c00350{transform:matrix(0.115617,-0.000809,0.001750,0.249994,0,0);-ms-transform:matrix(0.115617,-0.000809,0.001750,0.249994,0,0);-webkit-transform:matrix(0.115617,-0.000809,0.001750,0.249994,0,0);}
.m14a_c00350{transform:matrix(0.123858,-0.004215,0.008504,0.249855,0,0);-ms-transform:matrix(0.123858,-0.004215,0.008504,0.249855,0,0);-webkit-transform:matrix(0.123858,-0.004215,0.008504,0.249855,0,0);}
.m155_c00350{transform:matrix(0.125357,-0.004266,0.008504,0.249855,0,0);-ms-transform:matrix(0.125357,-0.004266,0.008504,0.249855,0,0);-webkit-transform:matrix(0.125357,-0.004266,0.008504,0.249855,0,0);}
.m95_c00350{transform:matrix(0.140978,-0.003242,0.005748,0.249934,0,0);-ms-transform:matrix(0.140978,-0.003242,0.005748,0.249934,0,0);-webkit-transform:matrix(0.140978,-0.003242,0.005748,0.249934,0,0);}
.m93_c00350{transform:matrix(0.142287,-0.003273,0.005748,0.249934,0,0);-ms-transform:matrix(0.142287,-0.003273,0.005748,0.249934,0,0);-webkit-transform:matrix(0.142287,-0.003273,0.005748,0.249934,0,0);}
.m8f_c00350{transform:matrix(0.144477,-0.003323,0.005748,0.249934,0,0);-ms-transform:matrix(0.144477,-0.003323,0.005748,0.249934,0,0);-webkit-transform:matrix(0.144477,-0.003323,0.005748,0.249934,0,0);}
.m89_c00350{transform:matrix(0.144557,-0.003325,0.005748,0.249934,0,0);-ms-transform:matrix(0.144557,-0.003325,0.005748,0.249934,0,0);-webkit-transform:matrix(0.144557,-0.003325,0.005748,0.249934,0,0);}
.m17_c00350{transform:matrix(0.151355,-0.003481,0.005748,0.249934,0,0);-ms-transform:matrix(0.151355,-0.003481,0.005748,0.249934,0,0);-webkit-transform:matrix(0.151355,-0.003481,0.005748,0.249934,0,0);}
.m2d_c00350{transform:matrix(0.153209,-0.003524,0.005748,0.249934,0,0);-ms-transform:matrix(0.153209,-0.003524,0.005748,0.249934,0,0);-webkit-transform:matrix(0.153209,-0.003524,0.005748,0.249934,0,0);}
.m8e_c00350{transform:matrix(0.154364,-0.003550,0.005748,0.249934,0,0);-ms-transform:matrix(0.154364,-0.003550,0.005748,0.249934,0,0);-webkit-transform:matrix(0.154364,-0.003550,0.005748,0.249934,0,0);}
.m91_c00350{transform:matrix(0.154709,-0.003558,0.005748,0.249934,0,0);-ms-transform:matrix(0.154709,-0.003558,0.005748,0.249934,0,0);-webkit-transform:matrix(0.154709,-0.003558,0.005748,0.249934,0,0);}
.m96_c00350{transform:matrix(0.155379,-0.003574,0.005748,0.249934,0,0);-ms-transform:matrix(0.155379,-0.003574,0.005748,0.249934,0,0);-webkit-transform:matrix(0.155379,-0.003574,0.005748,0.249934,0,0);}
.m30_c00350{transform:matrix(0.157183,-0.003615,0.005748,0.249934,0,0);-ms-transform:matrix(0.157183,-0.003615,0.005748,0.249934,0,0);-webkit-transform:matrix(0.157183,-0.003615,0.005748,0.249934,0,0);}
.m26_c00350{transform:matrix(0.157683,-0.003627,0.005748,0.249934,0,0);-ms-transform:matrix(0.157683,-0.003627,0.005748,0.249934,0,0);-webkit-transform:matrix(0.157683,-0.003627,0.005748,0.249934,0,0);}
.m8a_c00350{transform:matrix(0.158658,-0.003649,0.005748,0.249934,0,0);-ms-transform:matrix(0.158658,-0.003649,0.005748,0.249934,0,0);-webkit-transform:matrix(0.158658,-0.003649,0.005748,0.249934,0,0);}
.m23_c00350{transform:matrix(0.162422,-0.003736,0.005748,0.249934,0,0);-ms-transform:matrix(0.162422,-0.003736,0.005748,0.249934,0,0);-webkit-transform:matrix(0.162422,-0.003736,0.005748,0.249934,0,0);}
.m14d_c00350{transform:matrix(0.164365,-0.005594,0.008504,0.249855,0,0);-ms-transform:matrix(0.164365,-0.005594,0.008504,0.249855,0,0);-webkit-transform:matrix(0.164365,-0.005594,0.008504,0.249855,0,0);}
.m136_c00350{transform:matrix(0.165221,-0.001157,0.001750,0.249994,0,0);-ms-transform:matrix(0.165221,-0.001157,0.001750,0.249994,0,0);-webkit-transform:matrix(0.165221,-0.001157,0.001750,0.249994,0,0);}
.m90_c00350{transform:matrix(0.165721,-0.003812,0.005748,0.249934,0,0);-ms-transform:matrix(0.165721,-0.003812,0.005748,0.249934,0,0);-webkit-transform:matrix(0.165721,-0.003812,0.005748,0.249934,0,0);}
.m29_c00350{transform:matrix(0.165986,-0.003818,0.005748,0.249934,0,0);-ms-transform:matrix(0.165986,-0.003818,0.005748,0.249934,0,0);-webkit-transform:matrix(0.165986,-0.003818,0.005748,0.249934,0,0);}
.m14b_c00350{transform:matrix(0.166279,-0.005659,0.008504,0.249855,0,0);-ms-transform:matrix(0.166279,-0.005659,0.008504,0.249855,0,0);-webkit-transform:matrix(0.166279,-0.005659,0.008504,0.249855,0,0);}
.m2b_c00350{transform:matrix(0.166366,-0.003826,0.005748,0.249934,0,0);-ms-transform:matrix(0.166366,-0.003826,0.005748,0.249934,0,0);-webkit-transform:matrix(0.166366,-0.003826,0.005748,0.249934,0,0);}
.m12c_c00350{transform:matrix(0.166956,-0.001169,0.001750,0.249994,0,0);-ms-transform:matrix(0.166956,-0.001169,0.001750,0.249994,0,0);-webkit-transform:matrix(0.166956,-0.001169,0.001750,0.249994,0,0);}
.m12f_c00350{transform:matrix(0.167476,-0.001172,0.001750,0.249994,0,0);-ms-transform:matrix(0.167476,-0.001172,0.001750,0.249994,0,0);-webkit-transform:matrix(0.167476,-0.001172,0.001750,0.249994,0,0);}
.m98_c00350{transform:matrix(0.168390,-0.003873,0.005748,0.249934,0,0);-ms-transform:matrix(0.168390,-0.003873,0.005748,0.249934,0,0);-webkit-transform:matrix(0.168390,-0.003873,0.005748,0.249934,0,0);}
.m94_c00350{transform:matrix(0.168650,-0.003879,0.005748,0.249934,0,0);-ms-transform:matrix(0.168650,-0.003879,0.005748,0.249934,0,0);-webkit-transform:matrix(0.168650,-0.003879,0.005748,0.249934,0,0);}
.m158_c00350{transform:matrix(0.168912,-0.005749,0.008504,0.249855,0,0);-ms-transform:matrix(0.168912,-0.005749,0.008504,0.249855,0,0);-webkit-transform:matrix(0.168912,-0.005749,0.008504,0.249855,0,0);}
.m28_c00350{transform:matrix(0.169505,-0.003899,0.005748,0.249934,0,0);-ms-transform:matrix(0.169505,-0.003899,0.005748,0.249934,0,0);-webkit-transform:matrix(0.169505,-0.003899,0.005748,0.249934,0,0);}
.m132_c00350{transform:matrix(0.170051,-0.001190,0.001750,0.249994,0,0);-ms-transform:matrix(0.170051,-0.001190,0.001750,0.249994,0,0);-webkit-transform:matrix(0.170051,-0.001190,0.001750,0.249994,0,0);}
.m92_c00350{transform:matrix(0.170180,-0.003914,0.005748,0.249934,0,0);-ms-transform:matrix(0.170180,-0.003914,0.005748,0.249934,0,0);-webkit-transform:matrix(0.170180,-0.003914,0.005748,0.249934,0,0);}
.m88_c00350{transform:matrix(0.171660,-0.003948,0.005748,0.249934,0,0);-ms-transform:matrix(0.171660,-0.003948,0.005748,0.249934,0,0);-webkit-transform:matrix(0.171660,-0.003948,0.005748,0.249934,0,0);}
.m103_c00350{transform:matrix(0.171947,-0.001032,0.001500,0.249996,0,0);-ms-transform:matrix(0.171947,-0.001032,0.001500,0.249996,0,0);-webkit-transform:matrix(0.171947,-0.001032,0.001500,0.249996,0,0);}
.mfd_c00350{transform:matrix(0.173717,-0.001042,0.001500,0.249996,0,0);-ms-transform:matrix(0.173717,-0.001042,0.001500,0.249996,0,0);-webkit-transform:matrix(0.173717,-0.001042,0.001500,0.249996,0,0);}
.m146_c00350{transform:matrix(0.174614,-0.005943,0.008504,0.249855,0,0);-ms-transform:matrix(0.174614,-0.005943,0.008504,0.249855,0,0);-webkit-transform:matrix(0.174614,-0.005943,0.008504,0.249855,0,0);}
.m129_c00350{transform:matrix(0.175376,-0.001228,0.001750,0.249994,0,0);-ms-transform:matrix(0.175376,-0.001228,0.001750,0.249994,0,0);-webkit-transform:matrix(0.175376,-0.001228,0.001750,0.249994,0,0);}
.m154_c00350{transform:matrix(0.177232,-0.006032,0.008504,0.249855,0,0);-ms-transform:matrix(0.177232,-0.006032,0.008504,0.249855,0,0);-webkit-transform:matrix(0.177232,-0.006032,0.008504,0.249855,0,0);}
.mb2_c00350{transform:matrix(0.178093,-0.001603,0.002250,0.249990,0,0);-ms-transform:matrix(0.178093,-0.001603,0.002250,0.249990,0,0);-webkit-transform:matrix(0.178093,-0.001603,0.002250,0.249990,0,0);}
.m104_c00350{transform:matrix(0.178902,-0.001073,0.001500,0.249996,0,0);-ms-transform:matrix(0.178902,-0.001073,0.001500,0.249996,0,0);-webkit-transform:matrix(0.178902,-0.001073,0.001500,0.249996,0,0);}
.m2e_c00350{transform:matrix(0.179063,-0.004118,0.005748,0.249934,0,0);-ms-transform:matrix(0.179063,-0.004118,0.005748,0.249934,0,0);-webkit-transform:matrix(0.179063,-0.004118,0.005748,0.249934,0,0);}
.m105_c00350{transform:matrix(0.179212,-0.001075,0.001500,0.249996,0,0);-ms-transform:matrix(0.179212,-0.001075,0.001500,0.249996,0,0);-webkit-transform:matrix(0.179212,-0.001075,0.001500,0.249996,0,0);}
.m133_c00350{transform:matrix(0.179466,-0.001256,0.001750,0.249994,0,0);-ms-transform:matrix(0.179466,-0.001256,0.001750,0.249994,0,0);-webkit-transform:matrix(0.179466,-0.001256,0.001750,0.249994,0,0);}
.mf2_c00350{transform:matrix(0.180248,-0.001622,0.002250,0.249990,0,0);-ms-transform:matrix(0.180248,-0.001622,0.002250,0.249990,0,0);-webkit-transform:matrix(0.180248,-0.001622,0.002250,0.249990,0,0);}
.m14c_c00350{transform:matrix(0.181155,-0.006165,0.008504,0.249855,0,0);-ms-transform:matrix(0.181155,-0.006165,0.008504,0.249855,0,0);-webkit-transform:matrix(0.181155,-0.006165,0.008504,0.249855,0,0);}
.m147_c00350{transform:matrix(0.181185,-0.006166,0.008504,0.249855,0,0);-ms-transform:matrix(0.181185,-0.006166,0.008504,0.249855,0,0);-webkit-transform:matrix(0.181185,-0.006166,0.008504,0.249855,0,0);}
.m149_c00350{transform:matrix(0.181310,-0.006171,0.008504,0.249855,0,0);-ms-transform:matrix(0.181310,-0.006171,0.008504,0.249855,0,0);-webkit-transform:matrix(0.181310,-0.006171,0.008504,0.249855,0,0);}
.m12a_c00350{transform:matrix(0.181496,-0.001270,0.001750,0.249994,0,0);-ms-transform:matrix(0.181496,-0.001270,0.001750,0.249994,0,0);-webkit-transform:matrix(0.181496,-0.001270,0.001750,0.249994,0,0);}
.m4b_c00350{transform:matrix(0.181822,-0.004182,0.005748,0.249934,0,0);-ms-transform:matrix(0.181822,-0.004182,0.005748,0.249934,0,0);-webkit-transform:matrix(0.181822,-0.004182,0.005748,0.249934,0,0);}
.m31_c00350{transform:matrix(0.182012,-0.004186,0.005748,0.249934,0,0);-ms-transform:matrix(0.182012,-0.004186,0.005748,0.249934,0,0);-webkit-transform:matrix(0.182012,-0.004186,0.005748,0.249934,0,0);}
.m150_c00350{transform:matrix(0.182200,-0.006201,0.008504,0.249855,0,0);-ms-transform:matrix(0.182200,-0.006201,0.008504,0.249855,0,0);-webkit-transform:matrix(0.182200,-0.006201,0.008504,0.249855,0,0);}
.m14e_c00350{transform:matrix(0.182729,-0.006219,0.008504,0.249855,0,0);-ms-transform:matrix(0.182729,-0.006219,0.008504,0.249855,0,0);-webkit-transform:matrix(0.182729,-0.006219,0.008504,0.249855,0,0);}
.m8b_c00350{transform:matrix(0.182797,-0.004204,0.005748,0.249934,0,0);-ms-transform:matrix(0.182797,-0.004204,0.005748,0.249934,0,0);-webkit-transform:matrix(0.182797,-0.004204,0.005748,0.249934,0,0);}
.m2a_c00350{transform:matrix(0.183531,-0.004221,0.005748,0.249934,0,0);-ms-transform:matrix(0.183531,-0.004221,0.005748,0.249934,0,0);-webkit-transform:matrix(0.183531,-0.004221,0.005748,0.249934,0,0);}
.mb4_c00350{transform:matrix(0.183613,-0.001653,0.002250,0.249990,0,0);-ms-transform:matrix(0.183613,-0.001653,0.002250,0.249990,0,0);-webkit-transform:matrix(0.183613,-0.001653,0.002250,0.249990,0,0);}
.m16_c00350{transform:matrix(0.183711,-0.004225,0.005748,0.249934,0,0);-ms-transform:matrix(0.183711,-0.004225,0.005748,0.249934,0,0);-webkit-transform:matrix(0.183711,-0.004225,0.005748,0.249934,0,0);}
.m15a_c00350{transform:matrix(0.184243,-0.006271,0.008504,0.249855,0,0);-ms-transform:matrix(0.184243,-0.006271,0.008504,0.249855,0,0);-webkit-transform:matrix(0.184243,-0.006271,0.008504,0.249855,0,0);}
.m130_c00350{transform:matrix(0.184640,-0.001292,0.001750,0.249994,0,0);-ms-transform:matrix(0.184640,-0.001292,0.001750,0.249994,0,0);-webkit-transform:matrix(0.184640,-0.001292,0.001750,0.249994,0,0);}
.m14f_c00350{transform:matrix(0.185078,-0.006299,0.008504,0.249855,0,0);-ms-transform:matrix(0.185078,-0.006299,0.008504,0.249855,0,0);-webkit-transform:matrix(0.185078,-0.006299,0.008504,0.249855,0,0);}
.me0_c00350{transform:matrix(0.185143,-0.001666,0.002250,0.249990,0,0);-ms-transform:matrix(0.185143,-0.001666,0.002250,0.249990,0,0);-webkit-transform:matrix(0.185143,-0.001666,0.002250,0.249990,0,0);}
.m12d_c00350{transform:matrix(0.186685,-0.001307,0.001750,0.249994,0,0);-ms-transform:matrix(0.186685,-0.001307,0.001750,0.249994,0,0);-webkit-transform:matrix(0.186685,-0.001307,0.001750,0.249994,0,0);}
.m151_c00350{transform:matrix(0.186837,-0.006359,0.008504,0.249855,0,0);-ms-transform:matrix(0.186837,-0.006359,0.008504,0.249855,0,0);-webkit-transform:matrix(0.186837,-0.006359,0.008504,0.249855,0,0);}
.m148_c00350{transform:matrix(0.187367,-0.006377,0.008504,0.249855,0,0);-ms-transform:matrix(0.187367,-0.006377,0.008504,0.249855,0,0);-webkit-transform:matrix(0.187367,-0.006377,0.008504,0.249855,0,0);}
.md1_c00350{transform:matrix(0.188392,-0.001696,0.002250,0.249990,0,0);-ms-transform:matrix(0.188392,-0.001696,0.002250,0.249990,0,0);-webkit-transform:matrix(0.188392,-0.001696,0.002250,0.249990,0,0);}
.m135_c00350{transform:matrix(0.189140,-0.001324,0.001750,0.249994,0,0);-ms-transform:matrix(0.189140,-0.001324,0.001750,0.249994,0,0);-webkit-transform:matrix(0.189140,-0.001324,0.001750,0.249994,0,0);}
.m2f_c00350{transform:matrix(0.189390,-0.004356,0.005748,0.249934,0,0);-ms-transform:matrix(0.189390,-0.004356,0.005748,0.249934,0,0);-webkit-transform:matrix(0.189390,-0.004356,0.005748,0.249934,0,0);}
.m24_c00350{transform:matrix(0.190150,-0.004373,0.005748,0.249934,0,0);-ms-transform:matrix(0.190150,-0.004373,0.005748,0.249934,0,0);-webkit-transform:matrix(0.190150,-0.004373,0.005748,0.249934,0,0);}
.m9d_c00350{transform:matrix(0.190760,-0.004387,0.005748,0.249934,0,0);-ms-transform:matrix(0.190760,-0.004387,0.005748,0.249934,0,0);-webkit-transform:matrix(0.190760,-0.004387,0.005748,0.249934,0,0);}
.me4_c00350{transform:matrix(0.190822,-0.001717,0.002250,0.249990,0,0);-ms-transform:matrix(0.190822,-0.001717,0.002250,0.249990,0,0);-webkit-transform:matrix(0.190822,-0.001717,0.002250,0.249990,0,0);}
.m128_c00350{transform:matrix(0.191180,-0.001338,0.001750,0.249994,0,0);-ms-transform:matrix(0.191180,-0.001338,0.001750,0.249994,0,0);-webkit-transform:matrix(0.191180,-0.001338,0.001750,0.249994,0,0);}
.m10e_c00350{transform:matrix(0.191722,-0.001150,0.001500,0.249996,0,0);-ms-transform:matrix(0.191722,-0.001150,0.001500,0.249996,0,0);-webkit-transform:matrix(0.191722,-0.001150,0.001500,0.249996,0,0);}
.m12b_c00350{transform:matrix(0.192260,-0.001346,0.001750,0.249994,0,0);-ms-transform:matrix(0.192260,-0.001346,0.001750,0.249994,0,0);-webkit-transform:matrix(0.192260,-0.001346,0.001750,0.249994,0,0);}
.m159_c00350{transform:matrix(0.192264,-0.006544,0.008504,0.249855,0,0);-ms-transform:matrix(0.192264,-0.006544,0.008504,0.249855,0,0);-webkit-transform:matrix(0.192264,-0.006544,0.008504,0.249855,0,0);}
.m15b_c00350{transform:matrix(0.192339,-0.006546,0.008504,0.249855,0,0);-ms-transform:matrix(0.192339,-0.006546,0.008504,0.249855,0,0);-webkit-transform:matrix(0.192339,-0.006546,0.008504,0.249855,0,0);}
.m152_c00350{transform:matrix(0.193013,-0.006569,0.008504,0.249855,0,0);-ms-transform:matrix(0.193013,-0.006569,0.008504,0.249855,0,0);-webkit-transform:matrix(0.193013,-0.006569,0.008504,0.249855,0,0);}
.me8_c00350{transform:matrix(0.193147,-0.001738,0.002250,0.249990,0,0);-ms-transform:matrix(0.193147,-0.001738,0.002250,0.249990,0,0);-webkit-transform:matrix(0.193147,-0.001738,0.002250,0.249990,0,0);}
.m144_c00350{transform:matrix(0.193150,-0.001352,0.001750,0.249994,0,0);-ms-transform:matrix(0.193150,-0.001352,0.001750,0.249994,0,0);-webkit-transform:matrix(0.193150,-0.001352,0.001750,0.249994,0,0);}
.m140_c00350{transform:matrix(0.193800,-0.001357,0.001750,0.249994,0,0);-ms-transform:matrix(0.193800,-0.001357,0.001750,0.249994,0,0);-webkit-transform:matrix(0.193800,-0.001357,0.001750,0.249994,0,0);}
.m2c_c00350{transform:matrix(0.194664,-0.004477,0.005748,0.249934,0,0);-ms-transform:matrix(0.194664,-0.004477,0.005748,0.249934,0,0);-webkit-transform:matrix(0.194664,-0.004477,0.005748,0.249934,0,0);}
.m13d_c00350{transform:matrix(0.194935,-0.001365,0.001750,0.249994,0,0);-ms-transform:matrix(0.194935,-0.001365,0.001750,0.249994,0,0);-webkit-transform:matrix(0.194935,-0.001365,0.001750,0.249994,0,0);}
.mb6_c00350{transform:matrix(0.195267,-0.001757,0.002250,0.249990,0,0);-ms-transform:matrix(0.195267,-0.001757,0.002250,0.249990,0,0);-webkit-transform:matrix(0.195267,-0.001757,0.002250,0.249990,0,0);}
.mc9_c00350{transform:matrix(0.195567,-0.001760,0.002250,0.249990,0,0);-ms-transform:matrix(0.195567,-0.001760,0.002250,0.249990,0,0);-webkit-transform:matrix(0.195567,-0.001760,0.002250,0.249990,0,0);}
.mf0_c00350{transform:matrix(0.196117,-0.001765,0.002250,0.249990,0,0);-ms-transform:matrix(0.196117,-0.001765,0.002250,0.249990,0,0);-webkit-transform:matrix(0.196117,-0.001765,0.002250,0.249990,0,0);}
.m117_c00350{transform:matrix(0.196445,-0.001964,0.002500,0.249988,0,0);-ms-transform:matrix(0.196445,-0.001964,0.002500,0.249988,0,0);-webkit-transform:matrix(0.196445,-0.001964,0.002500,0.249988,0,0);}
.mda_c00350{transform:matrix(0.196507,-0.001769,0.002250,0.249990,0,0);-ms-transform:matrix(0.196507,-0.001769,0.002250,0.249990,0,0);-webkit-transform:matrix(0.196507,-0.001769,0.002250,0.249990,0,0);}
.mb1_c00350{transform:matrix(0.197192,-0.001775,0.002250,0.249990,0,0);-ms-transform:matrix(0.197192,-0.001775,0.002250,0.249990,0,0);-webkit-transform:matrix(0.197192,-0.001775,0.002250,0.249990,0,0);}
.m10c_c00350{transform:matrix(0.197326,-0.001184,0.001500,0.249996,0,0);-ms-transform:matrix(0.197326,-0.001184,0.001500,0.249996,0,0);-webkit-transform:matrix(0.197326,-0.001184,0.001500,0.249996,0,0);}
.md8_c00350{transform:matrix(0.197377,-0.001776,0.002250,0.249990,0,0);-ms-transform:matrix(0.197377,-0.001776,0.002250,0.249990,0,0);-webkit-transform:matrix(0.197377,-0.001776,0.002250,0.249990,0,0);}
.m153_c00350{transform:matrix(0.197900,-0.006735,0.008504,0.249855,0,0);-ms-transform:matrix(0.197900,-0.006735,0.008504,0.249855,0,0);-webkit-transform:matrix(0.197900,-0.006735,0.008504,0.249855,0,0);}
.med_c00350{transform:matrix(0.197902,-0.001781,0.002250,0.249990,0,0);-ms-transform:matrix(0.197902,-0.001781,0.002250,0.249990,0,0);-webkit-transform:matrix(0.197902,-0.001781,0.002250,0.249990,0,0);}
.mb9_c00350{transform:matrix(0.198032,-0.001782,0.002250,0.249990,0,0);-ms-transform:matrix(0.198032,-0.001782,0.002250,0.249990,0,0);-webkit-transform:matrix(0.198032,-0.001782,0.002250,0.249990,0,0);}
.m12e_c00350{transform:matrix(0.198250,-0.001388,0.001750,0.249994,0,0);-ms-transform:matrix(0.198250,-0.001388,0.001750,0.249994,0,0);-webkit-transform:matrix(0.198250,-0.001388,0.001750,0.249994,0,0);}
.m119_c00350{transform:matrix(0.198365,-0.001984,0.002500,0.249988,0,0);-ms-transform:matrix(0.198365,-0.001984,0.002500,0.249988,0,0);-webkit-transform:matrix(0.198365,-0.001984,0.002500,0.249988,0,0);}
.mdf_c00350{transform:matrix(0.199227,-0.001793,0.002250,0.249990,0,0);-ms-transform:matrix(0.199227,-0.001793,0.002250,0.249990,0,0);-webkit-transform:matrix(0.199227,-0.001793,0.002250,0.249990,0,0);}
.m139_c00350{transform:matrix(0.199405,-0.001396,0.001750,0.249994,0,0);-ms-transform:matrix(0.199405,-0.001396,0.001750,0.249994,0,0);-webkit-transform:matrix(0.199405,-0.001396,0.001750,0.249994,0,0);}
.me7_c00350{transform:matrix(0.199772,-0.001798,0.002250,0.249990,0,0);-ms-transform:matrix(0.199772,-0.001798,0.002250,0.249990,0,0);-webkit-transform:matrix(0.199772,-0.001798,0.002250,0.249990,0,0);}
.m134_c00350{transform:matrix(0.200025,-0.001400,0.001750,0.249994,0,0);-ms-transform:matrix(0.200025,-0.001400,0.001750,0.249994,0,0);-webkit-transform:matrix(0.200025,-0.001400,0.001750,0.249994,0,0);}
.me2_c00350{transform:matrix(0.200422,-0.001804,0.002250,0.249990,0,0);-ms-transform:matrix(0.200422,-0.001804,0.002250,0.249990,0,0);-webkit-transform:matrix(0.200422,-0.001804,0.002250,0.249990,0,0);}
.mb5_c00350{transform:matrix(0.200752,-0.001807,0.002250,0.249990,0,0);-ms-transform:matrix(0.200752,-0.001807,0.002250,0.249990,0,0);-webkit-transform:matrix(0.200752,-0.001807,0.002250,0.249990,0,0);}
.m125_c00350{transform:matrix(0.201240,-0.001409,0.001750,0.249994,0,0);-ms-transform:matrix(0.201240,-0.001409,0.001750,0.249994,0,0);-webkit-transform:matrix(0.201240,-0.001409,0.001750,0.249994,0,0);}
.me3_c00350{transform:matrix(0.201512,-0.001814,0.002250,0.249990,0,0);-ms-transform:matrix(0.201512,-0.001814,0.002250,0.249990,0,0);-webkit-transform:matrix(0.201512,-0.001814,0.002250,0.249990,0,0);}
.m3e_c00350{transform:matrix(0.201542,-0.004635,0.005748,0.249934,0,0);-ms-transform:matrix(0.201542,-0.004635,0.005748,0.249934,0,0);-webkit-transform:matrix(0.201542,-0.004635,0.005748,0.249934,0,0);}
.mb0_c00350{transform:matrix(0.201687,-0.001815,0.002250,0.249990,0,0);-ms-transform:matrix(0.201687,-0.001815,0.002250,0.249990,0,0);-webkit-transform:matrix(0.201687,-0.001815,0.002250,0.249990,0,0);}
.m99_c00350{transform:matrix(0.202127,-0.004649,0.005748,0.249934,0,0);-ms-transform:matrix(0.202127,-0.004649,0.005748,0.249934,0,0);-webkit-transform:matrix(0.202127,-0.004649,0.005748,0.249934,0,0);}
.m27_c00350{transform:matrix(0.202486,-0.004657,0.005748,0.249934,0,0);-ms-transform:matrix(0.202486,-0.004657,0.005748,0.249934,0,0);-webkit-transform:matrix(0.202486,-0.004657,0.005748,0.249934,0,0);}
.m100_c00350{transform:matrix(0.203131,-0.001219,0.001500,0.249996,0,0);-ms-transform:matrix(0.203131,-0.001219,0.001500,0.249996,0,0);-webkit-transform:matrix(0.203131,-0.001219,0.001500,0.249996,0,0);}
.mff_c00350{transform:matrix(0.203571,-0.001221,0.001500,0.249996,0,0);-ms-transform:matrix(0.203571,-0.001221,0.001500,0.249996,0,0);-webkit-transform:matrix(0.203571,-0.001221,0.001500,0.249996,0,0);}
.mfe_c00350{transform:matrix(0.203651,-0.001222,0.001500,0.249996,0,0);-ms-transform:matrix(0.203651,-0.001222,0.001500,0.249996,0,0);-webkit-transform:matrix(0.203651,-0.001222,0.001500,0.249996,0,0);}
.m25_c00350{transform:matrix(0.204186,-0.004696,0.005748,0.249934,0,0);-ms-transform:matrix(0.204186,-0.004696,0.005748,0.249934,0,0);-webkit-transform:matrix(0.204186,-0.004696,0.005748,0.249934,0,0);}
.mde_c00350{transform:matrix(0.204242,-0.001838,0.002250,0.249990,0,0);-ms-transform:matrix(0.204242,-0.001838,0.002250,0.249990,0,0);-webkit-transform:matrix(0.204242,-0.001838,0.002250,0.249990,0,0);}
.mcf_c00350{transform:matrix(0.205047,-0.001845,0.002250,0.249990,0,0);-ms-transform:matrix(0.205047,-0.001845,0.002250,0.249990,0,0);-webkit-transform:matrix(0.205047,-0.001845,0.002250,0.249990,0,0);}
.m126_c00350{transform:matrix(0.205120,-0.001436,0.001750,0.249994,0,0);-ms-transform:matrix(0.205120,-0.001436,0.001750,0.249994,0,0);-webkit-transform:matrix(0.205120,-0.001436,0.001750,0.249994,0,0);}
.mbd_c00350{transform:matrix(0.205482,-0.001849,0.002250,0.249990,0,0);-ms-transform:matrix(0.205482,-0.001849,0.002250,0.249990,0,0);-webkit-transform:matrix(0.205482,-0.001849,0.002250,0.249990,0,0);}
.mef_c00350{transform:matrix(0.205932,-0.001853,0.002250,0.249990,0,0);-ms-transform:matrix(0.205932,-0.001853,0.002250,0.249990,0,0);-webkit-transform:matrix(0.205932,-0.001853,0.002250,0.249990,0,0);}
.m5_c00350{transform:matrix(0.206041,-0.004739,0.005748,0.249934,0,0);-ms-transform:matrix(0.206041,-0.004739,0.005748,0.249934,0,0);-webkit-transform:matrix(0.206041,-0.004739,0.005748,0.249934,0,0);}
.m13a_c00350{transform:matrix(0.206255,-0.001444,0.001750,0.249994,0,0);-ms-transform:matrix(0.206255,-0.001444,0.001750,0.249994,0,0);-webkit-transform:matrix(0.206255,-0.001444,0.001750,0.249994,0,0);}
.md4_c00350{transform:matrix(0.206592,-0.001859,0.002250,0.249990,0,0);-ms-transform:matrix(0.206592,-0.001859,0.002250,0.249990,0,0);-webkit-transform:matrix(0.206592,-0.001859,0.002250,0.249990,0,0);}
.m131_c00350{transform:matrix(0.207115,-0.001450,0.001750,0.249994,0,0);-ms-transform:matrix(0.207115,-0.001450,0.001750,0.249994,0,0);-webkit-transform:matrix(0.207115,-0.001450,0.001750,0.249994,0,0);}
.m114_c00350{transform:matrix(0.207230,-0.002072,0.002500,0.249988,0,0);-ms-transform:matrix(0.207230,-0.002072,0.002500,0.249988,0,0);-webkit-transform:matrix(0.207230,-0.002072,0.002500,0.249988,0,0);}
.m141_c00350{transform:matrix(0.207235,-0.001451,0.001750,0.249994,0,0);-ms-transform:matrix(0.207235,-0.001451,0.001750,0.249994,0,0);-webkit-transform:matrix(0.207235,-0.001451,0.001750,0.249994,0,0);}
.mdb_c00350{transform:matrix(0.207887,-0.001871,0.002250,0.249990,0,0);-ms-transform:matrix(0.207887,-0.001871,0.002250,0.249990,0,0);-webkit-transform:matrix(0.207887,-0.001871,0.002250,0.249990,0,0);}
.m77_c00350{transform:matrix(0.207960,-0.004783,0.005748,0.249934,0,0);-ms-transform:matrix(0.207960,-0.004783,0.005748,0.249934,0,0);-webkit-transform:matrix(0.207960,-0.004783,0.005748,0.249934,0,0);}
.m109_c00350{transform:matrix(0.208061,-0.001248,0.001500,0.249996,0,0);-ms-transform:matrix(0.208061,-0.001248,0.001500,0.249996,0,0);-webkit-transform:matrix(0.208061,-0.001248,0.001500,0.249996,0,0);}
.md6_c00350{transform:matrix(0.208362,-0.001875,0.002250,0.249990,0,0);-ms-transform:matrix(0.208362,-0.001875,0.002250,0.249990,0,0);-webkit-transform:matrix(0.208362,-0.001875,0.002250,0.249990,0,0);}
.me1_c00350{transform:matrix(0.208577,-0.001877,0.002250,0.249990,0,0);-ms-transform:matrix(0.208577,-0.001877,0.002250,0.249990,0,0);-webkit-transform:matrix(0.208577,-0.001877,0.002250,0.249990,0,0);}
.md5_c00350{transform:matrix(0.209352,-0.001884,0.002250,0.249990,0,0);-ms-transform:matrix(0.209352,-0.001884,0.002250,0.249990,0,0);-webkit-transform:matrix(0.209352,-0.001884,0.002250,0.249990,0,0);}
.m13e_c00350{transform:matrix(0.209355,-0.001465,0.001750,0.249994,0,0);-ms-transform:matrix(0.209355,-0.001465,0.001750,0.249994,0,0);-webkit-transform:matrix(0.209355,-0.001465,0.001750,0.249994,0,0);}
.m102_c00350{transform:matrix(0.210211,-0.001261,0.001500,0.249996,0,0);-ms-transform:matrix(0.210211,-0.001261,0.001500,0.249996,0,0);-webkit-transform:matrix(0.210211,-0.001261,0.001500,0.249996,0,0);}
.ma6_c00350{transform:matrix(0.210564,-0.004843,0.005748,0.249934,0,0);-ms-transform:matrix(0.210564,-0.004843,0.005748,0.249934,0,0);-webkit-transform:matrix(0.210564,-0.004843,0.005748,0.249934,0,0);}
.m101_c00350{transform:matrix(0.210656,-0.001264,0.001500,0.249996,0,0);-ms-transform:matrix(0.210656,-0.001264,0.001500,0.249996,0,0);-webkit-transform:matrix(0.210656,-0.001264,0.001500,0.249996,0,0);}
.mf1_c00350{transform:matrix(0.211021,-0.001899,0.002250,0.249990,0,0);-ms-transform:matrix(0.211021,-0.001899,0.002250,0.249990,0,0);-webkit-transform:matrix(0.211021,-0.001899,0.002250,0.249990,0,0);}
.mf_c00350{transform:matrix(0.211159,-0.004857,0.005748,0.249934,0,0);-ms-transform:matrix(0.211159,-0.004857,0.005748,0.249934,0,0);-webkit-transform:matrix(0.211159,-0.004857,0.005748,0.249934,0,0);}
.mc0_c00350{transform:matrix(0.211206,-0.001901,0.002250,0.249990,0,0);-ms-transform:matrix(0.211206,-0.001901,0.002250,0.249990,0,0);-webkit-transform:matrix(0.211206,-0.001901,0.002250,0.249990,0,0);}
.m10a_c00350{transform:matrix(0.211291,-0.001268,0.001500,0.249996,0,0);-ms-transform:matrix(0.211291,-0.001268,0.001500,0.249996,0,0);-webkit-transform:matrix(0.211291,-0.001268,0.001500,0.249996,0,0);}
.ma5_c00350{transform:matrix(0.212304,-0.004883,0.005748,0.249934,0,0);-ms-transform:matrix(0.212304,-0.004883,0.005748,0.249934,0,0);-webkit-transform:matrix(0.212304,-0.004883,0.005748,0.249934,0,0);}
.m9_c00350{transform:matrix(0.212514,-0.004888,0.005748,0.249934,0,0);-ms-transform:matrix(0.212514,-0.004888,0.005748,0.249934,0,0);-webkit-transform:matrix(0.212514,-0.004888,0.005748,0.249934,0,0);}
.m11b_c00350{transform:matrix(0.213004,-0.002130,0.002500,0.249988,0,0);-ms-transform:matrix(0.213004,-0.002130,0.002500,0.249988,0,0);-webkit-transform:matrix(0.213004,-0.002130,0.002500,0.249988,0,0);}
.m9a_c00350{transform:matrix(0.213409,-0.004908,0.005748,0.249934,0,0);-ms-transform:matrix(0.213409,-0.004908,0.005748,0.249934,0,0);-webkit-transform:matrix(0.213409,-0.004908,0.005748,0.249934,0,0);}
.mab_c00350{transform:matrix(0.213748,-0.004916,0.005748,0.249934,0,0);-ms-transform:matrix(0.213748,-0.004916,0.005748,0.249934,0,0);-webkit-transform:matrix(0.213748,-0.004916,0.005748,0.249934,0,0);}
.m65_c00350{transform:matrix(0.213948,-0.004921,0.005748,0.249934,0,0);-ms-transform:matrix(0.213948,-0.004921,0.005748,0.249934,0,0);-webkit-transform:matrix(0.213948,-0.004921,0.005748,0.249934,0,0);}
.m0_c00350{transform:matrix(0.214185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214185,0.000000,0.000000,0.250000,0,0);}
.m9f_c00350{transform:matrix(0.214363,-0.004930,0.005748,0.249934,0,0);-ms-transform:matrix(0.214363,-0.004930,0.005748,0.249934,0,0);-webkit-transform:matrix(0.214363,-0.004930,0.005748,0.249934,0,0);}
.m145_c00350{transform:matrix(0.214870,-0.001504,0.001750,0.249994,0,0);-ms-transform:matrix(0.214870,-0.001504,0.001750,0.249994,0,0);-webkit-transform:matrix(0.214870,-0.001504,0.001750,0.249994,0,0);}
.ma1_c00350{transform:matrix(0.215193,-0.004949,0.005748,0.249934,0,0);-ms-transform:matrix(0.215193,-0.004949,0.005748,0.249934,0,0);-webkit-transform:matrix(0.215193,-0.004949,0.005748,0.249934,0,0);}
.m9b_c00350{transform:matrix(0.215323,-0.004952,0.005748,0.249934,0,0);-ms-transform:matrix(0.215323,-0.004952,0.005748,0.249934,0,0);-webkit-transform:matrix(0.215323,-0.004952,0.005748,0.249934,0,0);}
.ma2_c00350{transform:matrix(0.215468,-0.004956,0.005748,0.249934,0,0);-ms-transform:matrix(0.215468,-0.004956,0.005748,0.249934,0,0);-webkit-transform:matrix(0.215468,-0.004956,0.005748,0.249934,0,0);}
.m116_c00350{transform:matrix(0.216504,-0.002165,0.002500,0.249988,0,0);-ms-transform:matrix(0.216504,-0.002165,0.002500,0.249988,0,0);-webkit-transform:matrix(0.216504,-0.002165,0.002500,0.249988,0,0);}
.ma3_c00350{transform:matrix(0.216828,-0.004987,0.005748,0.249934,0,0);-ms-transform:matrix(0.216828,-0.004987,0.005748,0.249934,0,0);-webkit-transform:matrix(0.216828,-0.004987,0.005748,0.249934,0,0);}
.m33_c00350{transform:matrix(0.216978,-0.004990,0.005748,0.249934,0,0);-ms-transform:matrix(0.216978,-0.004990,0.005748,0.249934,0,0);-webkit-transform:matrix(0.216978,-0.004990,0.005748,0.249934,0,0);}
.m84_c00350{transform:matrix(0.217068,-0.004993,0.005748,0.249934,0,0);-ms-transform:matrix(0.217068,-0.004993,0.005748,0.249934,0,0);-webkit-transform:matrix(0.217068,-0.004993,0.005748,0.249934,0,0);}
.m43_c00350{transform:matrix(0.217957,-0.005013,0.005748,0.249934,0,0);-ms-transform:matrix(0.217957,-0.005013,0.005748,0.249934,0,0);-webkit-transform:matrix(0.217957,-0.005013,0.005748,0.249934,0,0);}
.m12_c00350{transform:matrix(0.218737,-0.005031,0.005748,0.249934,0,0);-ms-transform:matrix(0.218737,-0.005031,0.005748,0.249934,0,0);-webkit-transform:matrix(0.218737,-0.005031,0.005748,0.249934,0,0);}
.ma4_c00350{transform:matrix(0.218777,-0.005032,0.005748,0.249934,0,0);-ms-transform:matrix(0.218777,-0.005032,0.005748,0.249934,0,0);-webkit-transform:matrix(0.218777,-0.005032,0.005748,0.249934,0,0);}
.mdc_c00350{transform:matrix(0.218866,-0.001970,0.002250,0.249990,0,0);-ms-transform:matrix(0.218866,-0.001970,0.002250,0.249990,0,0);-webkit-transform:matrix(0.218866,-0.001970,0.002250,0.249990,0,0);}
.ma_c00350{transform:matrix(0.218867,-0.005034,0.005748,0.249934,0,0);-ms-transform:matrix(0.218867,-0.005034,0.005748,0.249934,0,0);-webkit-transform:matrix(0.218867,-0.005034,0.005748,0.249934,0,0);}
.m122_c00350{transform:matrix(0.218945,-0.001533,0.001750,0.249994,0,0);-ms-transform:matrix(0.218945,-0.001533,0.001750,0.249994,0,0);-webkit-transform:matrix(0.218945,-0.001533,0.001750,0.249994,0,0);}
.mdd_c00350{transform:matrix(0.219121,-0.001972,0.002250,0.249990,0,0);-ms-transform:matrix(0.219121,-0.001972,0.002250,0.249990,0,0);-webkit-transform:matrix(0.219121,-0.001972,0.002250,0.249990,0,0);}
.m143_c00350{transform:matrix(0.219370,-0.001536,0.001750,0.249994,0,0);-ms-transform:matrix(0.219370,-0.001536,0.001750,0.249994,0,0);-webkit-transform:matrix(0.219370,-0.001536,0.001750,0.249994,0,0);}
.me9_c00350{transform:matrix(0.219581,-0.001976,0.002250,0.249990,0,0);-ms-transform:matrix(0.219581,-0.001976,0.002250,0.249990,0,0);-webkit-transform:matrix(0.219581,-0.001976,0.002250,0.249990,0,0);}
.maf_c00350{transform:matrix(0.219797,-0.005055,0.005748,0.249934,0,0);-ms-transform:matrix(0.219797,-0.005055,0.005748,0.249934,0,0);-webkit-transform:matrix(0.219797,-0.005055,0.005748,0.249934,0,0);}
.mb7_c00350{transform:matrix(0.219871,-0.001979,0.002250,0.249990,0,0);-ms-transform:matrix(0.219871,-0.001979,0.002250,0.249990,0,0);-webkit-transform:matrix(0.219871,-0.001979,0.002250,0.249990,0,0);}
.ma0_c00350{transform:matrix(0.220047,-0.005061,0.005748,0.249934,0,0);-ms-transform:matrix(0.220047,-0.005061,0.005748,0.249934,0,0);-webkit-transform:matrix(0.220047,-0.005061,0.005748,0.249934,0,0);}
.md7_c00350{transform:matrix(0.220096,-0.001981,0.002250,0.249990,0,0);-ms-transform:matrix(0.220096,-0.001981,0.002250,0.249990,0,0);-webkit-transform:matrix(0.220096,-0.001981,0.002250,0.249990,0,0);}
.md0_c00350{transform:matrix(0.220166,-0.001981,0.002250,0.249990,0,0);-ms-transform:matrix(0.220166,-0.001981,0.002250,0.249990,0,0);-webkit-transform:matrix(0.220166,-0.001981,0.002250,0.249990,0,0);}
.m97_c00350{transform:matrix(0.220312,-0.005067,0.005748,0.249934,0,0);-ms-transform:matrix(0.220312,-0.005067,0.005748,0.249934,0,0);-webkit-transform:matrix(0.220312,-0.005067,0.005748,0.249934,0,0);}
.m10_c00350{transform:matrix(0.220572,-0.005073,0.005748,0.249934,0,0);-ms-transform:matrix(0.220572,-0.005073,0.005748,0.249934,0,0);-webkit-transform:matrix(0.220572,-0.005073,0.005748,0.249934,0,0);}
.m55_c00350{transform:matrix(0.220832,-0.005079,0.005748,0.249934,0,0);-ms-transform:matrix(0.220832,-0.005079,0.005748,0.249934,0,0);-webkit-transform:matrix(0.220832,-0.005079,0.005748,0.249934,0,0);}
.m67_c00350{transform:matrix(0.221147,-0.005086,0.005748,0.249934,0,0);-ms-transform:matrix(0.221147,-0.005086,0.005748,0.249934,0,0);-webkit-transform:matrix(0.221147,-0.005086,0.005748,0.249934,0,0);}
.md3_c00350{transform:matrix(0.221406,-0.001993,0.002250,0.249990,0,0);-ms-transform:matrix(0.221406,-0.001993,0.002250,0.249990,0,0);-webkit-transform:matrix(0.221406,-0.001993,0.002250,0.249990,0,0);}
.m64_c00350{transform:matrix(0.221926,-0.005104,0.005748,0.249934,0,0);-ms-transform:matrix(0.221926,-0.005104,0.005748,0.249934,0,0);-webkit-transform:matrix(0.221926,-0.005104,0.005748,0.249934,0,0);}
.m3b_c00350{transform:matrix(0.222026,-0.005107,0.005748,0.249934,0,0);-ms-transform:matrix(0.222026,-0.005107,0.005748,0.249934,0,0);-webkit-transform:matrix(0.222026,-0.005107,0.005748,0.249934,0,0);}
.m38_c00350{transform:matrix(0.222066,-0.005108,0.005748,0.249934,0,0);-ms-transform:matrix(0.222066,-0.005108,0.005748,0.249934,0,0);-webkit-transform:matrix(0.222066,-0.005108,0.005748,0.249934,0,0);}
.m11c_c00350{transform:matrix(0.222100,-0.001555,0.001750,0.249994,0,0);-ms-transform:matrix(0.222100,-0.001555,0.001750,0.249994,0,0);-webkit-transform:matrix(0.222100,-0.001555,0.001750,0.249994,0,0);}
.m51_c00350{transform:matrix(0.222431,-0.005116,0.005748,0.249934,0,0);-ms-transform:matrix(0.222431,-0.005116,0.005748,0.249934,0,0);-webkit-transform:matrix(0.222431,-0.005116,0.005748,0.249934,0,0);}
.m10d_c00350{transform:matrix(0.222461,-0.001335,0.001500,0.249996,0,0);-ms-transform:matrix(0.222461,-0.001335,0.001500,0.249996,0,0);-webkit-transform:matrix(0.222461,-0.001335,0.001500,0.249996,0,0);}
.me6_c00350{transform:matrix(0.222531,-0.002003,0.002250,0.249990,0,0);-ms-transform:matrix(0.222531,-0.002003,0.002250,0.249990,0,0);-webkit-transform:matrix(0.222531,-0.002003,0.002250,0.249990,0,0);}
.mb3_c00350{transform:matrix(0.222566,-0.002003,0.002250,0.249990,0,0);-ms-transform:matrix(0.222566,-0.002003,0.002250,0.249990,0,0);-webkit-transform:matrix(0.222566,-0.002003,0.002250,0.249990,0,0);}
.m138_c00350{transform:matrix(0.222630,-0.001558,0.001750,0.249994,0,0);-ms-transform:matrix(0.222630,-0.001558,0.001750,0.249994,0,0);-webkit-transform:matrix(0.222630,-0.001558,0.001750,0.249994,0,0);}
.mc3_c00350{transform:matrix(0.222836,-0.002006,0.002250,0.249990,0,0);-ms-transform:matrix(0.222836,-0.002006,0.002250,0.249990,0,0);-webkit-transform:matrix(0.222836,-0.002006,0.002250,0.249990,0,0);}
.m58_c00350{transform:matrix(0.223321,-0.005136,0.005748,0.249934,0,0);-ms-transform:matrix(0.223321,-0.005136,0.005748,0.249934,0,0);-webkit-transform:matrix(0.223321,-0.005136,0.005748,0.249934,0,0);}
.mb8_c00350{transform:matrix(0.223326,-0.002010,0.002250,0.249990,0,0);-ms-transform:matrix(0.223326,-0.002010,0.002250,0.249990,0,0);-webkit-transform:matrix(0.223326,-0.002010,0.002250,0.249990,0,0);}
.m3c_c00350{transform:matrix(0.223631,-0.005144,0.005748,0.249934,0,0);-ms-transform:matrix(0.223631,-0.005144,0.005748,0.249934,0,0);-webkit-transform:matrix(0.223631,-0.005144,0.005748,0.249934,0,0);}
.m11f_c00350{transform:matrix(0.223650,-0.001566,0.001750,0.249994,0,0);-ms-transform:matrix(0.223650,-0.001566,0.001750,0.249994,0,0);-webkit-transform:matrix(0.223650,-0.001566,0.001750,0.249994,0,0);}
.m32_c00350{transform:matrix(0.223826,-0.005148,0.005748,0.249934,0,0);-ms-transform:matrix(0.223826,-0.005148,0.005748,0.249934,0,0);-webkit-transform:matrix(0.223826,-0.005148,0.005748,0.249934,0,0);}
.m4f_c00350{transform:matrix(0.224596,-0.005166,0.005748,0.249934,0,0);-ms-transform:matrix(0.224596,-0.005166,0.005748,0.249934,0,0);-webkit-transform:matrix(0.224596,-0.005166,0.005748,0.249934,0,0);}
.m68_c00350{transform:matrix(0.224676,-0.005168,0.005748,0.249934,0,0);-ms-transform:matrix(0.224676,-0.005168,0.005748,0.249934,0,0);-webkit-transform:matrix(0.224676,-0.005168,0.005748,0.249934,0,0);}
.me5_c00350{transform:matrix(0.224686,-0.002022,0.002250,0.249990,0,0);-ms-transform:matrix(0.224686,-0.002022,0.002250,0.249990,0,0);-webkit-transform:matrix(0.224686,-0.002022,0.002250,0.249990,0,0);}
.m3f_c00350{transform:matrix(0.225285,-0.005182,0.005748,0.249934,0,0);-ms-transform:matrix(0.225285,-0.005182,0.005748,0.249934,0,0);-webkit-transform:matrix(0.225285,-0.005182,0.005748,0.249934,0,0);}
.m35_c00350{transform:matrix(0.225700,-0.005191,0.005748,0.249934,0,0);-ms-transform:matrix(0.225700,-0.005191,0.005748,0.249934,0,0);-webkit-transform:matrix(0.225700,-0.005191,0.005748,0.249934,0,0);}
.mc6_c00350{transform:matrix(0.225876,-0.002033,0.002250,0.249990,0,0);-ms-transform:matrix(0.225876,-0.002033,0.002250,0.249990,0,0);-webkit-transform:matrix(0.225876,-0.002033,0.002250,0.249990,0,0);}
.meb_c00350{transform:matrix(0.226101,-0.002035,0.002250,0.249990,0,0);-ms-transform:matrix(0.226101,-0.002035,0.002250,0.249990,0,0);-webkit-transform:matrix(0.226101,-0.002035,0.002250,0.249990,0,0);}
.m9c_c00350{transform:matrix(0.226245,-0.005204,0.005748,0.249934,0,0);-ms-transform:matrix(0.226245,-0.005204,0.005748,0.249934,0,0);-webkit-transform:matrix(0.226245,-0.005204,0.005748,0.249934,0,0);}
.m54_c00350{transform:matrix(0.226455,-0.005208,0.005748,0.249934,0,0);-ms-transform:matrix(0.226455,-0.005208,0.005748,0.249934,0,0);-webkit-transform:matrix(0.226455,-0.005208,0.005748,0.249934,0,0);}
.m53_c00350{transform:matrix(0.226515,-0.005210,0.005748,0.249934,0,0);-ms-transform:matrix(0.226515,-0.005210,0.005748,0.249934,0,0);-webkit-transform:matrix(0.226515,-0.005210,0.005748,0.249934,0,0);}
.m106_c00350{transform:matrix(0.226516,-0.001359,0.001500,0.249996,0,0);-ms-transform:matrix(0.226516,-0.001359,0.001500,0.249996,0,0);-webkit-transform:matrix(0.226516,-0.001359,0.001500,0.249996,0,0);}
.mac_c00350{transform:matrix(0.226715,-0.005214,0.005748,0.249934,0,0);-ms-transform:matrix(0.226715,-0.005214,0.005748,0.249934,0,0);-webkit-transform:matrix(0.226715,-0.005214,0.005748,0.249934,0,0);}
.m10f_c00350{transform:matrix(0.226861,-0.001361,0.001500,0.249996,0,0);-ms-transform:matrix(0.226861,-0.001361,0.001500,0.249996,0,0);-webkit-transform:matrix(0.226861,-0.001361,0.001500,0.249996,0,0);}
.mea_c00350{transform:matrix(0.226961,-0.002043,0.002250,0.249990,0,0);-ms-transform:matrix(0.226961,-0.002043,0.002250,0.249990,0,0);-webkit-transform:matrix(0.226961,-0.002043,0.002250,0.249990,0,0);}
.mad_c00350{transform:matrix(0.227035,-0.005222,0.005748,0.249934,0,0);-ms-transform:matrix(0.227035,-0.005222,0.005748,0.249934,0,0);-webkit-transform:matrix(0.227035,-0.005222,0.005748,0.249934,0,0);}
.m4e_c00350{transform:matrix(0.227095,-0.005223,0.005748,0.249934,0,0);-ms-transform:matrix(0.227095,-0.005223,0.005748,0.249934,0,0);-webkit-transform:matrix(0.227095,-0.005223,0.005748,0.249934,0,0);}
.m13f_c00350{transform:matrix(0.227704,-0.001594,0.001750,0.249994,0,0);-ms-transform:matrix(0.227704,-0.001594,0.001750,0.249994,0,0);-webkit-transform:matrix(0.227704,-0.001594,0.001750,0.249994,0,0);}
.m123_c00350{transform:matrix(0.227904,-0.001595,0.001750,0.249994,0,0);-ms-transform:matrix(0.227904,-0.001595,0.001750,0.249994,0,0);-webkit-transform:matrix(0.227904,-0.001595,0.001750,0.249994,0,0);}
.mbe_c00350{transform:matrix(0.227976,-0.002052,0.002250,0.249990,0,0);-ms-transform:matrix(0.227976,-0.002052,0.002250,0.249990,0,0);-webkit-transform:matrix(0.227976,-0.002052,0.002250,0.249990,0,0);}
.m13_c00350{transform:matrix(0.228065,-0.005245,0.005748,0.249934,0,0);-ms-transform:matrix(0.228065,-0.005245,0.005748,0.249934,0,0);-webkit-transform:matrix(0.228065,-0.005245,0.005748,0.249934,0,0);}
.m110_c00350{transform:matrix(0.228116,-0.001369,0.001500,0.249996,0,0);-ms-transform:matrix(0.228116,-0.001369,0.001500,0.249996,0,0);-webkit-transform:matrix(0.228116,-0.001369,0.001500,0.249996,0,0);}
.m56_c00350{transform:matrix(0.228140,-0.005247,0.005748,0.249934,0,0);-ms-transform:matrix(0.228140,-0.005247,0.005748,0.249934,0,0);-webkit-transform:matrix(0.228140,-0.005247,0.005748,0.249934,0,0);}
.mb_c00350{transform:matrix(0.228220,-0.005249,0.005748,0.249934,0,0);-ms-transform:matrix(0.228220,-0.005249,0.005748,0.249934,0,0);-webkit-transform:matrix(0.228220,-0.005249,0.005748,0.249934,0,0);}
.m112_c00350{transform:matrix(0.228464,-0.002285,0.002500,0.249988,0,0);-ms-transform:matrix(0.228464,-0.002285,0.002500,0.249988,0,0);-webkit-transform:matrix(0.228464,-0.002285,0.002500,0.249988,0,0);}
.m75_c00350{transform:matrix(0.228635,-0.005259,0.005748,0.249934,0,0);-ms-transform:matrix(0.228635,-0.005259,0.005748,0.249934,0,0);-webkit-transform:matrix(0.228635,-0.005259,0.005748,0.249934,0,0);}
.me_c00350{transform:matrix(0.229089,-0.005269,0.005748,0.249934,0,0);-ms-transform:matrix(0.229089,-0.005269,0.005748,0.249934,0,0);-webkit-transform:matrix(0.229089,-0.005269,0.005748,0.249934,0,0);}
.mca_c00350{transform:matrix(0.229106,-0.002062,0.002250,0.249990,0,0);-ms-transform:matrix(0.229106,-0.002062,0.002250,0.249990,0,0);-webkit-transform:matrix(0.229106,-0.002062,0.002250,0.249990,0,0);}
.m11e_c00350{transform:matrix(0.229454,-0.001606,0.001750,0.249994,0,0);-ms-transform:matrix(0.229454,-0.001606,0.001750,0.249994,0,0);-webkit-transform:matrix(0.229454,-0.001606,0.001750,0.249994,0,0);}
.m108_c00350{transform:matrix(0.229456,-0.001377,0.001500,0.249996,0,0);-ms-transform:matrix(0.229456,-0.001377,0.001500,0.249996,0,0);-webkit-transform:matrix(0.229456,-0.001377,0.001500,0.249996,0,0);}
.m11a_c00350{transform:matrix(0.229629,-0.002296,0.002500,0.249988,0,0);-ms-transform:matrix(0.229629,-0.002296,0.002500,0.249988,0,0);-webkit-transform:matrix(0.229629,-0.002296,0.002500,0.249988,0,0);}
.mc5_c00350{transform:matrix(0.229756,-0.002068,0.002250,0.249990,0,0);-ms-transform:matrix(0.229756,-0.002068,0.002250,0.249990,0,0);-webkit-transform:matrix(0.229756,-0.002068,0.002250,0.249990,0,0);}
.m11d_c00350{transform:matrix(0.229784,-0.001608,0.001750,0.249994,0,0);-ms-transform:matrix(0.229784,-0.001608,0.001750,0.249994,0,0);-webkit-transform:matrix(0.229784,-0.001608,0.001750,0.249994,0,0);}
.mae_c00350{transform:matrix(0.229794,-0.005285,0.005748,0.249934,0,0);-ms-transform:matrix(0.229794,-0.005285,0.005748,0.249934,0,0);-webkit-transform:matrix(0.229794,-0.005285,0.005748,0.249934,0,0);}
.m13b_c00350{transform:matrix(0.230109,-0.001611,0.001750,0.249994,0,0);-ms-transform:matrix(0.230109,-0.001611,0.001750,0.249994,0,0);-webkit-transform:matrix(0.230109,-0.001611,0.001750,0.249994,0,0);}
.m113_c00350{transform:matrix(0.230158,-0.002302,0.002500,0.249988,0,0);-ms-transform:matrix(0.230158,-0.002302,0.002500,0.249988,0,0);-webkit-transform:matrix(0.230158,-0.002302,0.002500,0.249988,0,0);}
.m79_c00350{transform:matrix(0.230854,-0.005310,0.005748,0.249934,0,0);-ms-transform:matrix(0.230854,-0.005310,0.005748,0.249934,0,0);-webkit-transform:matrix(0.230854,-0.005310,0.005748,0.249934,0,0);}
.mcc_c00350{transform:matrix(0.231026,-0.002079,0.002250,0.249990,0,0);-ms-transform:matrix(0.231026,-0.002079,0.002250,0.249990,0,0);-webkit-transform:matrix(0.231026,-0.002079,0.002250,0.249990,0,0);}
.m124_c00350{transform:matrix(0.231229,-0.001619,0.001750,0.249994,0,0);-ms-transform:matrix(0.231229,-0.001619,0.001750,0.249994,0,0);-webkit-transform:matrix(0.231229,-0.001619,0.001750,0.249994,0,0);}
.m11_c00350{transform:matrix(0.231684,-0.005329,0.005748,0.249934,0,0);-ms-transform:matrix(0.231684,-0.005329,0.005748,0.249934,0,0);-webkit-transform:matrix(0.231684,-0.005329,0.005748,0.249934,0,0);}
.m37_c00350{transform:matrix(0.231744,-0.005330,0.005748,0.249934,0,0);-ms-transform:matrix(0.231744,-0.005330,0.005748,0.249934,0,0);-webkit-transform:matrix(0.231744,-0.005330,0.005748,0.249934,0,0);}
.ma8_c00350{transform:matrix(0.231889,-0.005333,0.005748,0.249934,0,0);-ms-transform:matrix(0.231889,-0.005333,0.005748,0.249934,0,0);-webkit-transform:matrix(0.231889,-0.005333,0.005748,0.249934,0,0);}
.mbb_c00350{transform:matrix(0.231941,-0.002087,0.002250,0.249990,0,0);-ms-transform:matrix(0.231941,-0.002087,0.002250,0.249990,0,0);-webkit-transform:matrix(0.231941,-0.002087,0.002250,0.249990,0,0);}
.m118_c00350{transform:matrix(0.232143,-0.002321,0.002500,0.249988,0,0);-ms-transform:matrix(0.232143,-0.002321,0.002500,0.249988,0,0);-webkit-transform:matrix(0.232143,-0.002321,0.002500,0.249988,0,0);}
.md9_c00350{transform:matrix(0.232186,-0.002090,0.002250,0.249990,0,0);-ms-transform:matrix(0.232186,-0.002090,0.002250,0.249990,0,0);-webkit-transform:matrix(0.232186,-0.002090,0.002250,0.249990,0,0);}
.m71_c00350{transform:matrix(0.232469,-0.005347,0.005748,0.249934,0,0);-ms-transform:matrix(0.232469,-0.005347,0.005748,0.249934,0,0);-webkit-transform:matrix(0.232469,-0.005347,0.005748,0.249934,0,0);}
.m5a_c00350{transform:matrix(0.232663,-0.005351,0.005748,0.249934,0,0);-ms-transform:matrix(0.232663,-0.005351,0.005748,0.249934,0,0);-webkit-transform:matrix(0.232663,-0.005351,0.005748,0.249934,0,0);}
.m107_c00350{transform:matrix(0.232816,-0.001397,0.001500,0.249996,0,0);-ms-transform:matrix(0.232816,-0.001397,0.001500,0.249996,0,0);-webkit-transform:matrix(0.232816,-0.001397,0.001500,0.249996,0,0);}
.ma9_c00350{transform:matrix(0.233738,-0.005376,0.005748,0.249934,0,0);-ms-transform:matrix(0.233738,-0.005376,0.005748,0.249934,0,0);-webkit-transform:matrix(0.233738,-0.005376,0.005748,0.249934,0,0);}
.m1a_c00350{transform:matrix(0.234318,-0.005389,0.005748,0.249934,0,0);-ms-transform:matrix(0.234318,-0.005389,0.005748,0.249934,0,0);-webkit-transform:matrix(0.234318,-0.005389,0.005748,0.249934,0,0);}
.m121_c00350{transform:matrix(0.234689,-0.001643,0.001750,0.249994,0,0);-ms-transform:matrix(0.234689,-0.001643,0.001750,0.249994,0,0);-webkit-transform:matrix(0.234689,-0.001643,0.001750,0.249994,0,0);}
.md2_c00350{transform:matrix(0.234725,-0.002113,0.002250,0.249990,0,0);-ms-transform:matrix(0.234725,-0.002113,0.002250,0.249990,0,0);-webkit-transform:matrix(0.234725,-0.002113,0.002250,0.249990,0,0);}
.m9e_c00350{transform:matrix(0.235243,-0.005411,0.005748,0.249934,0,0);-ms-transform:matrix(0.235243,-0.005411,0.005748,0.249934,0,0);-webkit-transform:matrix(0.235243,-0.005411,0.005748,0.249934,0,0);}
.m142_c00350{transform:matrix(0.235254,-0.001647,0.001750,0.249994,0,0);-ms-transform:matrix(0.235254,-0.001647,0.001750,0.249994,0,0);-webkit-transform:matrix(0.235254,-0.001647,0.001750,0.249994,0,0);}
.m73_c00350{transform:matrix(0.235518,-0.005417,0.005748,0.249934,0,0);-ms-transform:matrix(0.235518,-0.005417,0.005748,0.249934,0,0);-webkit-transform:matrix(0.235518,-0.005417,0.005748,0.249934,0,0);}
.m10b_c00350{transform:matrix(0.236206,-0.001417,0.001500,0.249996,0,0);-ms-transform:matrix(0.236206,-0.001417,0.001500,0.249996,0,0);-webkit-transform:matrix(0.236206,-0.001417,0.001500,0.249996,0,0);}
.m13c_c00350{transform:matrix(0.236544,-0.001656,0.001750,0.249994,0,0);-ms-transform:matrix(0.236544,-0.001656,0.001750,0.249994,0,0);-webkit-transform:matrix(0.236544,-0.001656,0.001750,0.249994,0,0);}
.m120_c00350{transform:matrix(0.236844,-0.001658,0.001750,0.249994,0,0);-ms-transform:matrix(0.236844,-0.001658,0.001750,0.249994,0,0);-webkit-transform:matrix(0.236844,-0.001658,0.001750,0.249994,0,0);}
.m82_c00350{transform:matrix(0.237772,-0.005469,0.005748,0.249934,0,0);-ms-transform:matrix(0.237772,-0.005469,0.005748,0.249934,0,0);-webkit-transform:matrix(0.237772,-0.005469,0.005748,0.249934,0,0);}
.mcd_c00350{transform:matrix(0.237855,-0.002141,0.002250,0.249990,0,0);-ms-transform:matrix(0.237855,-0.002141,0.002250,0.249990,0,0);-webkit-transform:matrix(0.237855,-0.002141,0.002250,0.249990,0,0);}
.mcb_c00350{transform:matrix(0.238100,-0.002143,0.002250,0.249990,0,0);-ms-transform:matrix(0.238100,-0.002143,0.002250,0.249990,0,0);-webkit-transform:matrix(0.238100,-0.002143,0.002250,0.249990,0,0);}
.mec_c00350{transform:matrix(0.238615,-0.002148,0.002250,0.249990,0,0);-ms-transform:matrix(0.238615,-0.002148,0.002250,0.249990,0,0);-webkit-transform:matrix(0.238615,-0.002148,0.002250,0.249990,0,0);}
.m3a_c00350{transform:matrix(0.239207,-0.005502,0.005748,0.249934,0,0);-ms-transform:matrix(0.239207,-0.005502,0.005748,0.249934,0,0);-webkit-transform:matrix(0.239207,-0.005502,0.005748,0.249934,0,0);}
.mee_c00350{transform:matrix(0.239430,-0.002155,0.002250,0.249990,0,0);-ms-transform:matrix(0.239430,-0.002155,0.002250,0.249990,0,0);-webkit-transform:matrix(0.239430,-0.002155,0.002250,0.249990,0,0);}
.mf3_c00350{transform:matrix(0.239515,-0.002156,0.002250,0.249990,0,0);-ms-transform:matrix(0.239515,-0.002156,0.002250,0.249990,0,0);-webkit-transform:matrix(0.239515,-0.002156,0.002250,0.249990,0,0);}
.mc8_c00350{transform:matrix(0.240370,-0.002163,0.002250,0.249990,0,0);-ms-transform:matrix(0.240370,-0.002163,0.002250,0.249990,0,0);-webkit-transform:matrix(0.240370,-0.002163,0.002250,0.249990,0,0);}
.m42_c00350{transform:matrix(0.242331,-0.005574,0.005748,0.249934,0,0);-ms-transform:matrix(0.242331,-0.005574,0.005748,0.249934,0,0);-webkit-transform:matrix(0.242331,-0.005574,0.005748,0.249934,0,0);}
.mc1_c00350{transform:matrix(0.242340,-0.002181,0.002250,0.249990,0,0);-ms-transform:matrix(0.242340,-0.002181,0.002250,0.249990,0,0);-webkit-transform:matrix(0.242340,-0.002181,0.002250,0.249990,0,0);}
.mc4_c00350{transform:matrix(0.242525,-0.002183,0.002250,0.249990,0,0);-ms-transform:matrix(0.242525,-0.002183,0.002250,0.249990,0,0);-webkit-transform:matrix(0.242525,-0.002183,0.002250,0.249990,0,0);}
.maa_c00350{transform:matrix(0.242566,-0.005579,0.005748,0.249934,0,0);-ms-transform:matrix(0.242566,-0.005579,0.005748,0.249934,0,0);-webkit-transform:matrix(0.242566,-0.005579,0.005748,0.249934,0,0);}
.m46_c00350{transform:matrix(0.242681,-0.005582,0.005748,0.249934,0,0);-ms-transform:matrix(0.242681,-0.005582,0.005748,0.249934,0,0);-webkit-transform:matrix(0.242681,-0.005582,0.005748,0.249934,0,0);}
.m47_c00350{transform:matrix(0.242971,-0.005588,0.005748,0.249934,0,0);-ms-transform:matrix(0.242971,-0.005588,0.005748,0.249934,0,0);-webkit-transform:matrix(0.242971,-0.005588,0.005748,0.249934,0,0);}
.m115_c00350{transform:matrix(0.243258,-0.002433,0.002500,0.249988,0,0);-ms-transform:matrix(0.243258,-0.002433,0.002500,0.249988,0,0);-webkit-transform:matrix(0.243258,-0.002433,0.002500,0.249988,0,0);}
.m59_c00350{transform:matrix(0.243661,-0.005604,0.005748,0.249934,0,0);-ms-transform:matrix(0.243661,-0.005604,0.005748,0.249934,0,0);-webkit-transform:matrix(0.243661,-0.005604,0.005748,0.249934,0,0);}
.m21_c00350{transform:matrix(0.243686,-0.005605,0.005748,0.249934,0,0);-ms-transform:matrix(0.243686,-0.005605,0.005748,0.249934,0,0);-webkit-transform:matrix(0.243686,-0.005605,0.005748,0.249934,0,0);}
.m66_c00350{transform:matrix(0.244020,-0.005612,0.005748,0.249934,0,0);-ms-transform:matrix(0.244020,-0.005612,0.005748,0.249934,0,0);-webkit-transform:matrix(0.244020,-0.005612,0.005748,0.249934,0,0);}
.m34_c00350{transform:matrix(0.244865,-0.005632,0.005748,0.249934,0,0);-ms-transform:matrix(0.244865,-0.005632,0.005748,0.249934,0,0);-webkit-transform:matrix(0.244865,-0.005632,0.005748,0.249934,0,0);}
.m36_c00350{transform:matrix(0.245380,-0.005644,0.005748,0.249934,0,0);-ms-transform:matrix(0.245380,-0.005644,0.005748,0.249934,0,0);-webkit-transform:matrix(0.245380,-0.005644,0.005748,0.249934,0,0);}
.m19_c00350{transform:matrix(0.245410,-0.005644,0.005748,0.249934,0,0);-ms-transform:matrix(0.245410,-0.005644,0.005748,0.249934,0,0);-webkit-transform:matrix(0.245410,-0.005644,0.005748,0.249934,0,0);}
.m52_c00350{transform:matrix(0.245600,-0.005649,0.005748,0.249934,0,0);-ms-transform:matrix(0.245600,-0.005649,0.005748,0.249934,0,0);-webkit-transform:matrix(0.245600,-0.005649,0.005748,0.249934,0,0);}
.m76_c00350{transform:matrix(0.246470,-0.005669,0.005748,0.249934,0,0);-ms-transform:matrix(0.246470,-0.005669,0.005748,0.249934,0,0);-webkit-transform:matrix(0.246470,-0.005669,0.005748,0.249934,0,0);}
.m85_c00350{transform:matrix(0.246555,-0.005671,0.005748,0.249934,0,0);-ms-transform:matrix(0.246555,-0.005671,0.005748,0.249934,0,0);-webkit-transform:matrix(0.246555,-0.005671,0.005748,0.249934,0,0);}
.m78_c00350{transform:matrix(0.246630,-0.005672,0.005748,0.249934,0,0);-ms-transform:matrix(0.246630,-0.005672,0.005748,0.249934,0,0);-webkit-transform:matrix(0.246630,-0.005672,0.005748,0.249934,0,0);}
.m74_c00350{transform:matrix(0.246780,-0.005676,0.005748,0.249934,0,0);-ms-transform:matrix(0.246780,-0.005676,0.005748,0.249934,0,0);-webkit-transform:matrix(0.246780,-0.005676,0.005748,0.249934,0,0);}
.m1e_c00350{transform:matrix(0.246875,-0.005678,0.005748,0.249934,0,0);-ms-transform:matrix(0.246875,-0.005678,0.005748,0.249934,0,0);-webkit-transform:matrix(0.246875,-0.005678,0.005748,0.249934,0,0);}
.m57_c00350{transform:matrix(0.247630,-0.005695,0.005748,0.249934,0,0);-ms-transform:matrix(0.247630,-0.005695,0.005748,0.249934,0,0);-webkit-transform:matrix(0.247630,-0.005695,0.005748,0.249934,0,0);}
.m72_c00350{transform:matrix(0.247864,-0.005701,0.005748,0.249934,0,0);-ms-transform:matrix(0.247864,-0.005701,0.005748,0.249934,0,0);-webkit-transform:matrix(0.247864,-0.005701,0.005748,0.249934,0,0);}
.m3d_c00350{transform:matrix(0.248049,-0.005705,0.005748,0.249934,0,0);-ms-transform:matrix(0.248049,-0.005705,0.005748,0.249934,0,0);-webkit-transform:matrix(0.248049,-0.005705,0.005748,0.249934,0,0);}
.m50_c00350{transform:matrix(0.248489,-0.005715,0.005748,0.249934,0,0);-ms-transform:matrix(0.248489,-0.005715,0.005748,0.249934,0,0);-webkit-transform:matrix(0.248489,-0.005715,0.005748,0.249934,0,0);}
.mc2_c00350{transform:matrix(0.248495,-0.002236,0.002250,0.249990,0,0);-ms-transform:matrix(0.248495,-0.002236,0.002250,0.249990,0,0);-webkit-transform:matrix(0.248495,-0.002236,0.002250,0.249990,0,0);}
.m14_c00350{transform:matrix(0.249094,-0.005729,0.005748,0.249934,0,0);-ms-transform:matrix(0.249094,-0.005729,0.005748,0.249934,0,0);-webkit-transform:matrix(0.249094,-0.005729,0.005748,0.249934,0,0);}
.mce_c00350{transform:matrix(0.249630,-0.002247,0.002250,0.249990,0,0);-ms-transform:matrix(0.249630,-0.002247,0.002250,0.249990,0,0);-webkit-transform:matrix(0.249630,-0.002247,0.002250,0.249990,0,0);}
.md_c00350{transform:matrix(0.249669,-0.005742,0.005748,0.249934,0,0);-ms-transform:matrix(0.249669,-0.005742,0.005748,0.249934,0,0);-webkit-transform:matrix(0.249669,-0.005742,0.005748,0.249934,0,0);}
.mbc_c00350{transform:matrix(0.249730,-0.002248,0.002250,0.249990,0,0);-ms-transform:matrix(0.249730,-0.002248,0.002250,0.249990,0,0);-webkit-transform:matrix(0.249730,-0.002248,0.002250,0.249990,0,0);}
.m6_c00350{transform:matrix(0.250374,-0.005759,0.005748,0.249934,0,0);-ms-transform:matrix(0.250374,-0.005759,0.005748,0.249934,0,0);-webkit-transform:matrix(0.250374,-0.005759,0.005748,0.249934,0,0);}
.m6b_c00350{transform:matrix(0.250594,-0.005764,0.005748,0.249934,0,0);-ms-transform:matrix(0.250594,-0.005764,0.005748,0.249934,0,0);-webkit-transform:matrix(0.250594,-0.005764,0.005748,0.249934,0,0);}
.ma7_c00350{transform:matrix(0.251279,-0.005779,0.005748,0.249934,0,0);-ms-transform:matrix(0.251279,-0.005779,0.005748,0.249934,0,0);-webkit-transform:matrix(0.251279,-0.005779,0.005748,0.249934,0,0);}
.mba_c00350{transform:matrix(0.251315,-0.002262,0.002250,0.249990,0,0);-ms-transform:matrix(0.251315,-0.002262,0.002250,0.249990,0,0);-webkit-transform:matrix(0.251315,-0.002262,0.002250,0.249990,0,0);}
.m8_c00350{transform:matrix(0.251798,-0.005791,0.005748,0.249934,0,0);-ms-transform:matrix(0.251798,-0.005791,0.005748,0.249934,0,0);-webkit-transform:matrix(0.251798,-0.005791,0.005748,0.249934,0,0);}
.m1f_c00350{transform:matrix(0.252288,-0.005803,0.005748,0.249934,0,0);-ms-transform:matrix(0.252288,-0.005803,0.005748,0.249934,0,0);-webkit-transform:matrix(0.252288,-0.005803,0.005748,0.249934,0,0);}
.m45_c00350{transform:matrix(0.252813,-0.005815,0.005748,0.249934,0,0);-ms-transform:matrix(0.252813,-0.005815,0.005748,0.249934,0,0);-webkit-transform:matrix(0.252813,-0.005815,0.005748,0.249934,0,0);}
.m40_c00350{transform:matrix(0.253408,-0.005828,0.005748,0.249934,0,0);-ms-transform:matrix(0.253408,-0.005828,0.005748,0.249934,0,0);-webkit-transform:matrix(0.253408,-0.005828,0.005748,0.249934,0,0);}
.m18_c00350{transform:matrix(0.253743,-0.005836,0.005748,0.249934,0,0);-ms-transform:matrix(0.253743,-0.005836,0.005748,0.249934,0,0);-webkit-transform:matrix(0.253743,-0.005836,0.005748,0.249934,0,0);}
.m7a_c00350{transform:matrix(0.253833,-0.005838,0.005748,0.249934,0,0);-ms-transform:matrix(0.253833,-0.005838,0.005748,0.249934,0,0);-webkit-transform:matrix(0.253833,-0.005838,0.005748,0.249934,0,0);}
.m39_c00350{transform:matrix(0.254518,-0.005854,0.005748,0.249934,0,0);-ms-transform:matrix(0.254518,-0.005854,0.005748,0.249934,0,0);-webkit-transform:matrix(0.254518,-0.005854,0.005748,0.249934,0,0);}
.m7c_c00350{transform:matrix(0.254558,-0.005855,0.005748,0.249934,0,0);-ms-transform:matrix(0.254558,-0.005855,0.005748,0.249934,0,0);-webkit-transform:matrix(0.254558,-0.005855,0.005748,0.249934,0,0);}
.m7b_c00350{transform:matrix(0.254878,-0.005862,0.005748,0.249934,0,0);-ms-transform:matrix(0.254878,-0.005862,0.005748,0.249934,0,0);-webkit-transform:matrix(0.254878,-0.005862,0.005748,0.249934,0,0);}
.m1d_c00350{transform:matrix(0.255242,-0.005871,0.005748,0.249934,0,0);-ms-transform:matrix(0.255242,-0.005871,0.005748,0.249934,0,0);-webkit-transform:matrix(0.255242,-0.005871,0.005748,0.249934,0,0);}
.m44_c00350{transform:matrix(0.255677,-0.005881,0.005748,0.249934,0,0);-ms-transform:matrix(0.255677,-0.005881,0.005748,0.249934,0,0);-webkit-transform:matrix(0.255677,-0.005881,0.005748,0.249934,0,0);}
.mbf_c00350{transform:matrix(0.257490,-0.002317,0.002250,0.249990,0,0);-ms-transform:matrix(0.257490,-0.002317,0.002250,0.249990,0,0);-webkit-transform:matrix(0.257490,-0.002317,0.002250,0.249990,0,0);}
.m6d_c00350{transform:matrix(0.257552,-0.005924,0.005748,0.249934,0,0);-ms-transform:matrix(0.257552,-0.005924,0.005748,0.249934,0,0);-webkit-transform:matrix(0.257552,-0.005924,0.005748,0.249934,0,0);}
.m8d_c00350{transform:matrix(0.258272,-0.005940,0.005748,0.249934,0,0);-ms-transform:matrix(0.258272,-0.005940,0.005748,0.249934,0,0);-webkit-transform:matrix(0.258272,-0.005940,0.005748,0.249934,0,0);}
.m4_c00350{transform:matrix(0.259291,-0.005964,0.005748,0.249934,0,0);-ms-transform:matrix(0.259291,-0.005964,0.005748,0.249934,0,0);-webkit-transform:matrix(0.259291,-0.005964,0.005748,0.249934,0,0);}
.m7e_c00350{transform:matrix(0.259381,-0.005966,0.005748,0.249934,0,0);-ms-transform:matrix(0.259381,-0.005966,0.005748,0.249934,0,0);-webkit-transform:matrix(0.259381,-0.005966,0.005748,0.249934,0,0);}
.m7_c00350{transform:matrix(0.260286,-0.005987,0.005748,0.249934,0,0);-ms-transform:matrix(0.260286,-0.005987,0.005748,0.249934,0,0);-webkit-transform:matrix(0.260286,-0.005987,0.005748,0.249934,0,0);}
.m2_c00350{transform:matrix(0.260290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260290,0.000000,0.000000,0.250000,0,0);}
.m20_c00350{transform:matrix(0.262241,-0.006032,0.005748,0.249934,0,0);-ms-transform:matrix(0.262241,-0.006032,0.005748,0.249934,0,0);-webkit-transform:matrix(0.262241,-0.006032,0.005748,0.249934,0,0);}
.m7f_c00350{transform:matrix(0.262870,-0.006046,0.005748,0.249934,0,0);-ms-transform:matrix(0.262870,-0.006046,0.005748,0.249934,0,0);-webkit-transform:matrix(0.262870,-0.006046,0.005748,0.249934,0,0);}
.mf6_c00350{transform:matrix(0.263224,-0.002369,0.002250,0.249990,0,0);-ms-transform:matrix(0.263224,-0.002369,0.002250,0.249990,0,0);-webkit-transform:matrix(0.263224,-0.002369,0.002250,0.249990,0,0);}
.m7d_c00350{transform:matrix(0.263540,-0.006061,0.005748,0.249934,0,0);-ms-transform:matrix(0.263540,-0.006061,0.005748,0.249934,0,0);-webkit-transform:matrix(0.263540,-0.006061,0.005748,0.249934,0,0);}
.m86_c00350{transform:matrix(0.264490,-0.006083,0.005748,0.249934,0,0);-ms-transform:matrix(0.264490,-0.006083,0.005748,0.249934,0,0);-webkit-transform:matrix(0.264490,-0.006083,0.005748,0.249934,0,0);}
.m22_c00350{transform:matrix(0.265730,-0.006112,0.005748,0.249934,0,0);-ms-transform:matrix(0.265730,-0.006112,0.005748,0.249934,0,0);-webkit-transform:matrix(0.265730,-0.006112,0.005748,0.249934,0,0);}
.m48_c00350{transform:matrix(0.267219,-0.006146,0.005748,0.249934,0,0);-ms-transform:matrix(0.267219,-0.006146,0.005748,0.249934,0,0);-webkit-transform:matrix(0.267219,-0.006146,0.005748,0.249934,0,0);}
.mf4_c00350{transform:matrix(0.267289,-0.002406,0.002250,0.249990,0,0);-ms-transform:matrix(0.267289,-0.002406,0.002250,0.249990,0,0);-webkit-transform:matrix(0.267289,-0.002406,0.002250,0.249990,0,0);}
.m1c_c00350{transform:matrix(0.267444,-0.006151,0.005748,0.249934,0,0);-ms-transform:matrix(0.267444,-0.006151,0.005748,0.249934,0,0);-webkit-transform:matrix(0.267444,-0.006151,0.005748,0.249934,0,0);}
.m6a_c00350{transform:matrix(0.268394,-0.006173,0.005748,0.249934,0,0);-ms-transform:matrix(0.268394,-0.006173,0.005748,0.249934,0,0);-webkit-transform:matrix(0.268394,-0.006173,0.005748,0.249934,0,0);}
.m69_c00350{transform:matrix(0.270059,-0.006211,0.005748,0.249934,0,0);-ms-transform:matrix(0.270059,-0.006211,0.005748,0.249934,0,0);-webkit-transform:matrix(0.270059,-0.006211,0.005748,0.249934,0,0);}
.m6e_c00350{transform:matrix(0.271788,-0.006251,0.005748,0.249934,0,0);-ms-transform:matrix(0.271788,-0.006251,0.005748,0.249934,0,0);-webkit-transform:matrix(0.271788,-0.006251,0.005748,0.249934,0,0);}
.mf8_c00350{transform:matrix(0.272064,-0.002449,0.002250,0.249990,0,0);-ms-transform:matrix(0.272064,-0.002449,0.002250,0.249990,0,0);-webkit-transform:matrix(0.272064,-0.002449,0.002250,0.249990,0,0);}
.m5e_c00350{transform:matrix(0.272118,-0.006259,0.005748,0.249934,0,0);-ms-transform:matrix(0.272118,-0.006259,0.005748,0.249934,0,0);-webkit-transform:matrix(0.272118,-0.006259,0.005748,0.249934,0,0);}
.m1b_c00350{transform:matrix(0.272633,-0.006271,0.005748,0.249934,0,0);-ms-transform:matrix(0.272633,-0.006271,0.005748,0.249934,0,0);-webkit-transform:matrix(0.272633,-0.006271,0.005748,0.249934,0,0);}
.m5d_c00350{transform:matrix(0.273513,-0.006291,0.005748,0.249934,0,0);-ms-transform:matrix(0.273513,-0.006291,0.005748,0.249934,0,0);-webkit-transform:matrix(0.273513,-0.006291,0.005748,0.249934,0,0);}
.m5c_c00350{transform:matrix(0.274048,-0.006303,0.005748,0.249934,0,0);-ms-transform:matrix(0.274048,-0.006303,0.005748,0.249934,0,0);-webkit-transform:matrix(0.274048,-0.006303,0.005748,0.249934,0,0);}
.m6c_c00350{transform:matrix(0.274207,-0.006307,0.005748,0.249934,0,0);-ms-transform:matrix(0.274207,-0.006307,0.005748,0.249934,0,0);-webkit-transform:matrix(0.274207,-0.006307,0.005748,0.249934,0,0);}
.m6f_c00350{transform:matrix(0.274632,-0.006317,0.005748,0.249934,0,0);-ms-transform:matrix(0.274632,-0.006317,0.005748,0.249934,0,0);-webkit-transform:matrix(0.274632,-0.006317,0.005748,0.249934,0,0);}
.m5f_c00350{transform:matrix(0.275757,-0.006342,0.005748,0.249934,0,0);-ms-transform:matrix(0.275757,-0.006342,0.005748,0.249934,0,0);-webkit-transform:matrix(0.275757,-0.006342,0.005748,0.249934,0,0);}
.m41_c00350{transform:matrix(0.281346,-0.006471,0.005748,0.249934,0,0);-ms-transform:matrix(0.281346,-0.006471,0.005748,0.249934,0,0);-webkit-transform:matrix(0.281346,-0.006471,0.005748,0.249934,0,0);}
.m5b_c00350{transform:matrix(0.285544,-0.006568,0.005748,0.249934,0,0);-ms-transform:matrix(0.285544,-0.006568,0.005748,0.249934,0,0);-webkit-transform:matrix(0.285544,-0.006568,0.005748,0.249934,0,0);}
.mc7_c00350{transform:matrix(0.288863,-0.002600,0.002250,0.249990,0,0);-ms-transform:matrix(0.288863,-0.002600,0.002250,0.249990,0,0);-webkit-transform:matrix(0.288863,-0.002600,0.002250,0.249990,0,0);}
.mf7_c00350{transform:matrix(0.289058,-0.002602,0.002250,0.249990,0,0);-ms-transform:matrix(0.289058,-0.002602,0.002250,0.249990,0,0);-webkit-transform:matrix(0.289058,-0.002602,0.002250,0.249990,0,0);}
.m157_c00350{transform:matrix(0.292331,-0.009949,0.008504,0.249855,0,0);-ms-transform:matrix(0.292331,-0.009949,0.008504,0.249855,0,0);-webkit-transform:matrix(0.292331,-0.009949,0.008504,0.249855,0,0);}
.m87_c00350{transform:matrix(0.295022,-0.006786,0.005748,0.249934,0,0);-ms-transform:matrix(0.295022,-0.006786,0.005748,0.249934,0,0);-webkit-transform:matrix(0.295022,-0.006786,0.005748,0.249934,0,0);}
.m61_c00350{transform:matrix(0.296432,-0.006818,0.005748,0.249934,0,0);-ms-transform:matrix(0.296432,-0.006818,0.005748,0.249934,0,0);-webkit-transform:matrix(0.296432,-0.006818,0.005748,0.249934,0,0);}
.m3_c00350{transform:matrix(0.296577,-0.006821,0.005748,0.249934,0,0);-ms-transform:matrix(0.296577,-0.006821,0.005748,0.249934,0,0);-webkit-transform:matrix(0.296577,-0.006821,0.005748,0.249934,0,0);}
.m4d_c00350{transform:matrix(0.296871,-0.006828,0.005748,0.249934,0,0);-ms-transform:matrix(0.296871,-0.006828,0.005748,0.249934,0,0);-webkit-transform:matrix(0.296871,-0.006828,0.005748,0.249934,0,0);}
.mfb_c00350{transform:matrix(0.297428,-0.002677,0.002250,0.249990,0,0);-ms-transform:matrix(0.297428,-0.002677,0.002250,0.249990,0,0);-webkit-transform:matrix(0.297428,-0.002677,0.002250,0.249990,0,0);}
.m81_c00350{transform:matrix(0.299881,-0.006897,0.005748,0.249934,0,0);-ms-transform:matrix(0.299881,-0.006897,0.005748,0.249934,0,0);-webkit-transform:matrix(0.299881,-0.006897,0.005748,0.249934,0,0);}
.mf9_c00350{transform:matrix(0.299948,-0.002700,0.002250,0.249990,0,0);-ms-transform:matrix(0.299948,-0.002700,0.002250,0.249990,0,0);-webkit-transform:matrix(0.299948,-0.002700,0.002250,0.249990,0,0);}
.m60_c00350{transform:matrix(0.300176,-0.006904,0.005748,0.249934,0,0);-ms-transform:matrix(0.300176,-0.006904,0.005748,0.249934,0,0);-webkit-transform:matrix(0.300176,-0.006904,0.005748,0.249934,0,0);}
.m83_c00350{transform:matrix(0.301890,-0.006943,0.005748,0.249934,0,0);-ms-transform:matrix(0.301890,-0.006943,0.005748,0.249934,0,0);-webkit-transform:matrix(0.301890,-0.006943,0.005748,0.249934,0,0);}
.mfa_c00350{transform:matrix(0.303988,-0.002736,0.002250,0.249990,0,0);-ms-transform:matrix(0.303988,-0.002736,0.002250,0.249990,0,0);-webkit-transform:matrix(0.303988,-0.002736,0.002250,0.249990,0,0);}
.m80_c00350{transform:matrix(0.306094,-0.007040,0.005748,0.249934,0,0);-ms-transform:matrix(0.306094,-0.007040,0.005748,0.249934,0,0);-webkit-transform:matrix(0.306094,-0.007040,0.005748,0.249934,0,0);}
.mf5_c00350{transform:matrix(0.306168,-0.002756,0.002250,0.249990,0,0);-ms-transform:matrix(0.306168,-0.002756,0.002250,0.249990,0,0);-webkit-transform:matrix(0.306168,-0.002756,0.002250,0.249990,0,0);}
.m8c_c00350{transform:matrix(0.313287,-0.007206,0.005748,0.249934,0,0);-ms-transform:matrix(0.313287,-0.007206,0.005748,0.249934,0,0);-webkit-transform:matrix(0.313287,-0.007206,0.005748,0.249934,0,0);}
.m111_c00350{transform:matrix(0.322329,-0.003223,0.002500,0.249988,0,0);-ms-transform:matrix(0.322329,-0.003223,0.002500,0.249988,0,0);-webkit-transform:matrix(0.322329,-0.003223,0.002500,0.249988,0,0);}
.m4a_c00350{transform:matrix(0.327903,-0.007542,0.005748,0.249934,0,0);-ms-transform:matrix(0.327903,-0.007542,0.005748,0.249934,0,0);-webkit-transform:matrix(0.327903,-0.007542,0.005748,0.249934,0,0);}
.m156_c00350{transform:matrix(0.328840,-0.011192,0.008504,0.249855,0,0);-ms-transform:matrix(0.328840,-0.011192,0.008504,0.249855,0,0);-webkit-transform:matrix(0.328840,-0.011192,0.008504,0.249855,0,0);}
.mc_c00350{transform:matrix(0.335321,-0.007712,0.005748,0.249934,0,0);-ms-transform:matrix(0.335321,-0.007712,0.005748,0.249934,0,0);-webkit-transform:matrix(0.335321,-0.007712,0.005748,0.249934,0,0);}
.m63_c00350{transform:matrix(0.396065,-0.009110,0.005748,0.249934,0,0);-ms-transform:matrix(0.396065,-0.009110,0.005748,0.249934,0,0);-webkit-transform:matrix(0.396065,-0.009110,0.005748,0.249934,0,0);}
.m70_c00350{transform:matrix(0.540277,-0.012426,0.005748,0.249934,0,0);-ms-transform:matrix(0.540277,-0.012426,0.005748,0.249934,0,0);-webkit-transform:matrix(0.540277,-0.012426,0.005748,0.249934,0,0);}
.m49_c00350{transform:matrix(0.912994,-0.020999,0.005748,0.249934,0,0);-ms-transform:matrix(0.912994,-0.020999,0.005748,0.249934,0,0);-webkit-transform:matrix(0.912994,-0.020999,0.005748,0.249934,0,0);}
.m62_c00350{transform:matrix(1.002540,-0.023058,0.005748,0.249934,0,0);-ms-transform:matrix(1.002540,-0.023058,0.005748,0.249934,0,0);-webkit-transform:matrix(1.002540,-0.023058,0.005748,0.249934,0,0);}
.m15_c00350{transform:matrix(1.495350,-0.034393,0.005748,0.249934,0,0);-ms-transform:matrix(1.495350,-0.034393,0.005748,0.249934,0,0);-webkit-transform:matrix(1.495350,-0.034393,0.005748,0.249934,0,0);}
.m4c_c00350{transform:matrix(2.377856,-0.054691,0.005748,0.249934,0,0);-ms-transform:matrix(2.377856,-0.054691,0.005748,0.249934,0,0);-webkit-transform:matrix(2.377856,-0.054691,0.005748,0.249934,0,0);}
.v0_c00350{vertical-align:0.000000px;}
.ls0_c00350{letter-spacing:0.000000px;}
.sc__c00350{text-shadow:none;}
.sc0_c00350{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__c00350{-webkit-text-stroke:0px transparent;}
.sc0_c00350{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00350{word-spacing:0.000000px;}
._0_c00350{width:42.368125px;}
.fc0_c00350{color:transparent;}
.fsc_c00350{font-size:66.002673px;}
.fs6_c00350{font-size:66.017455px;}
.fs3_c00350{font-size:72.019041px;}
.fsa_c00350{font-size:78.003159px;}
.fs2_c00350{font-size:78.020628px;}
.fse_c00350{font-size:84.001512px;}
.fs10_c00350{font-size:84.002058px;}
.fsb_c00350{font-size:84.003402px;}
.fsf_c00350{font-size:84.004200px;}
.fs8_c00350{font-size:84.022215px;}
.fs1_c00350{font-size:90.000000px;}
.fs9_c00350{font-size:90.003645px;}
.fs5_c00350{font-size:90.023802px;}
.fs13_c00350{font-size:95.959527px;}
.fsd_c00350{font-size:96.001728px;}
.fs11_c00350{font-size:96.002352px;}
.fs4_c00350{font-size:96.025389px;}
.fs12_c00350{font-size:101.956998px;}
.fs7_c00350{font-size:114.030149px;}
.fs0_c00350{font-size:228.000000px;}
.y0_c00350{bottom:0.000000px;}
.y158_c00350{bottom:84.545821px;}
.y159_c00350{bottom:85.572021px;}
.y15a_c00350{bottom:87.979362px;}
.y15b_c00350{bottom:90.433788px;}
.y15c_c00350{bottom:91.461874px;}
.y15d_c00350{bottom:92.194089px;}
.y15e_c00350{bottom:93.337134px;}
.y15f_c00350{bottom:93.971271px;}
.y160_c00350{bottom:95.016423px;}
.y161_c00350{bottom:97.138755px;}
.y162_c00350{bottom:98.900554px;}
.y14d_c00350{bottom:120.712500px;}
.y14e_c00350{bottom:121.812723px;}
.y14f_c00350{bottom:124.369863px;}
.y150_c00350{bottom:126.958980px;}
.y151_c00350{bottom:128.060376px;}
.y152_c00350{bottom:128.839452px;}
.y153_c00350{bottom:130.406478px;}
.y154_c00350{bottom:131.094264px;}
.y155_c00350{bottom:132.223047px;}
.y156_c00350{bottom:134.101683px;}
.y157_c00350{bottom:135.982206px;}
.y13e_c00350{bottom:177.931062px;}
.y13f_c00350{bottom:179.519271px;}
.y140_c00350{bottom:180.215210px;}
.y141_c00350{bottom:180.569561px;}
.y142_c00350{bottom:180.929087px;}
.y143_c00350{bottom:181.775100px;}
.y144_c00350{bottom:182.752410px;}
.y145_c00350{bottom:183.114959px;}
.y146_c00350{bottom:183.610484px;}
.y147_c00350{bottom:184.465167px;}
.y148_c00350{bottom:184.831064px;}
.y149_c00350{bottom:185.323220px;}
.y14a_c00350{bottom:186.293393px;}
.y14b_c00350{bottom:186.552564px;}
.y14c_c00350{bottom:186.903126px;}
.y132_c00350{bottom:225.947364px;}
.y131_c00350{bottom:225.947795px;}
.y135_c00350{bottom:225.947933px;}
.y133_c00350{bottom:225.948014px;}
.y12e_c00350{bottom:225.948107px;}
.y138_c00350{bottom:225.948122px;}
.y130_c00350{bottom:225.948285px;}
.y134_c00350{bottom:225.948303px;}
.y13c_c00350{bottom:225.948380px;}
.y136_c00350{bottom:225.948402px;}
.y13a_c00350{bottom:225.948551px;}
.y137_c00350{bottom:225.948552px;}
.y139_c00350{bottom:225.948591px;}
.y12f_c00350{bottom:225.948686px;}
.y13d_c00350{bottom:225.948699px;}
.y13b_c00350{bottom:225.948960px;}
.y123_c00350{bottom:259.470000px;}
.y124_c00350{bottom:260.073414px;}
.y125_c00350{bottom:260.674476px;}
.y126_c00350{bottom:261.145170px;}
.y127_c00350{bottom:261.526866px;}
.y128_c00350{bottom:262.220391px;}
.y129_c00350{bottom:262.768271px;}
.y12a_c00350{bottom:262.936607px;}
.y12b_c00350{bottom:263.484623px;}
.y12c_c00350{bottom:264.106338px;}
.y12d_c00350{bottom:264.340835px;}
.y117_c00350{bottom:288.361500px;}
.y118_c00350{bottom:289.798290px;}
.y119_c00350{bottom:290.441310px;}
.y11a_c00350{bottom:291.300135px;}
.y11b_c00350{bottom:291.732195px;}
.y11c_c00350{bottom:293.068515px;}
.y11d_c00350{bottom:293.729685px;}
.y11e_c00350{bottom:294.067110px;}
.y11f_c00350{bottom:294.965970px;}
.y120_c00350{bottom:295.290150px;}
.y121_c00350{bottom:296.083695px;}
.y122_c00350{bottom:296.640225px;}
.y10c_c00350{bottom:320.225733px;}
.y10d_c00350{bottom:321.637944px;}
.y10e_c00350{bottom:323.900301px;}
.y10f_c00350{bottom:325.178199px;}
.y110_c00350{bottom:325.798512px;}
.y111_c00350{bottom:326.660100px;}
.y112_c00350{bottom:328.762530px;}
.y113_c00350{bottom:329.387652px;}
.y114_c00350{bottom:330.667896px;}
.y115_c00350{bottom:331.310211px;}
.y116_c00350{bottom:332.588136px;}
.y103_c00350{bottom:368.820000px;}
.y104_c00350{bottom:369.019395px;}
.y105_c00350{bottom:369.607455px;}
.y106_c00350{bottom:370.145277px;}
.y107_c00350{bottom:370.670229px;}
.y108_c00350{bottom:371.347218px;}
.y109_c00350{bottom:371.949696px;}
.y10a_c00350{bottom:372.147480px;}
.y10b_c00350{bottom:372.348270px;}
.yfa_c00350{bottom:396.351578px;}
.yfb_c00350{bottom:396.824811px;}
.yfc_c00350{bottom:398.384169px;}
.yfd_c00350{bottom:398.757835px;}
.yfe_c00350{bottom:399.600969px;}
.yff_c00350{bottom:400.090338px;}
.y100_c00350{bottom:401.066673px;}
.y101_c00350{bottom:402.287227px;}
.y102_c00350{bottom:403.615639px;}
.yed_c00350{bottom:434.153462px;}
.yee_c00350{bottom:434.695931px;}
.yef_c00350{bottom:435.238494px;}
.yf0_c00350{bottom:436.166556px;}
.yf1_c00350{bottom:437.456886px;}
.yf2_c00350{bottom:438.393606px;}
.yf3_c00350{bottom:440.095893px;}
.yf4_c00350{bottom:440.650910px;}
.yf5_c00350{bottom:442.404332px;}
.yf6_c00350{bottom:443.124275px;}
.yf7_c00350{bottom:443.682681px;}
.yf8_c00350{bottom:444.472439px;}
.yf9_c00350{bottom:445.011558px;}
.ye2_c00350{bottom:466.289010px;}
.ye3_c00350{bottom:468.014133px;}
.ye4_c00350{bottom:469.577388px;}
.ye5_c00350{bottom:470.303993px;}
.ye6_c00350{bottom:471.184713px;}
.ye7_c00350{bottom:471.716440px;}
.ye8_c00350{bottom:472.783056px;}
.ye9_c00350{bottom:473.664128px;}
.yea_c00350{bottom:474.553127px;}
.yeb_c00350{bottom:475.088204px;}
.yec_c00350{bottom:476.868417px;}
.yd4_c00350{bottom:504.356950px;}
.yd5_c00350{bottom:504.785977px;}
.yd6_c00350{bottom:505.625260px;}
.yd7_c00350{bottom:506.035989px;}
.yd8_c00350{bottom:507.604942px;}
.yd9_c00350{bottom:507.896713px;}
.yda_c00350{bottom:508.480404px;}
.ydb_c00350{bottom:508.908770px;}
.ydc_c00350{bottom:509.477552px;}
.ydd_c00350{bottom:510.077824px;}
.yde_c00350{bottom:510.937094px;}
.ydf_c00350{bottom:511.371954px;}
.ye0_c00350{bottom:512.679750px;}
.ye1_c00350{bottom:513.112302px;}
.ycb_c00350{bottom:536.766445px;}
.ycc_c00350{bottom:538.735930px;}
.ycd_c00350{bottom:539.509371px;}
.yce_c00350{bottom:542.780076px;}
.ycf_c00350{bottom:543.524622px;}
.yd0_c00350{bottom:545.330941px;}
.yd1_c00350{bottom:547.869393px;}
.yd2_c00350{bottom:550.196143px;}
.yd3_c00350{bottom:552.470712px;}
.ybf_c00350{bottom:579.150262px;}
.yc0_c00350{bottom:580.205020px;}
.yc1_c00350{bottom:580.434711px;}
.yc2_c00350{bottom:581.293075px;}
.yc3_c00350{bottom:581.653173px;}
.yc4_c00350{bottom:582.033254px;}
.yc5_c00350{bottom:583.241115px;}
.yc6_c00350{bottom:583.612324px;}
.yc7_c00350{bottom:584.333274px;}
.yc8_c00350{bottom:585.075733px;}
.yc9_c00350{bottom:585.435696px;}
.yca_c00350{bottom:586.308967px;}
.yb5_c00350{bottom:616.681500px;}
.yb6_c00350{bottom:616.980687px;}
.yb7_c00350{bottom:617.286813px;}
.yb8_c00350{bottom:617.583368px;}
.yb9_c00350{bottom:618.674370px;}
.yba_c00350{bottom:618.975771px;}
.ybb_c00350{bottom:619.473840px;}
.ybc_c00350{bottom:619.775038px;}
.ybd_c00350{bottom:620.880756px;}
.ybe_c00350{bottom:621.974107px;}
.ya9_c00350{bottom:649.483442px;}
.yaa_c00350{bottom:649.850639px;}
.yab_c00350{bottom:650.627090px;}
.yac_c00350{bottom:650.892638px;}
.yad_c00350{bottom:651.424647px;}
.yae_c00350{bottom:651.819474px;}
.yaf_c00350{bottom:652.616496px;}
.yb0_c00350{bottom:653.007872px;}
.yb1_c00350{bottom:653.422493px;}
.yb2_c00350{bottom:654.073979px;}
.yb3_c00350{bottom:654.374490px;}
.yb4_c00350{bottom:655.439544px;}
.y99_c00350{bottom:682.975734px;}
.y9a_c00350{bottom:684.001838px;}
.y9b_c00350{bottom:684.434117px;}
.y9c_c00350{bottom:685.250249px;}
.y9d_c00350{bottom:686.271194px;}
.y9e_c00350{bottom:686.687687px;}
.y9f_c00350{bottom:687.975794px;}
.ya0_c00350{bottom:688.577640px;}
.ya1_c00350{bottom:690.052584px;}
.ya2_c00350{bottom:690.510585px;}
.ya3_c00350{bottom:691.797623px;}
.ya4_c00350{bottom:692.817498px;}
.ya5_c00350{bottom:693.669462px;}
.ya6_c00350{bottom:694.709678px;}
.ya7_c00350{bottom:695.141559px;}
.ya8_c00350{bottom:696.003512px;}
.y8a_c00350{bottom:712.156146px;}
.y8b_c00350{bottom:715.118339px;}
.y8c_c00350{bottom:716.807006px;}
.y8d_c00350{bottom:717.427149px;}
.y8e_c00350{bottom:718.616673px;}
.y8f_c00350{bottom:719.797814px;}
.y90_c00350{bottom:720.730073px;}
.y91_c00350{bottom:721.917596px;}
.y92_c00350{bottom:722.785310px;}
.y93_c00350{bottom:724.029822px;}
.y94_c00350{bottom:725.181623px;}
.y95_c00350{bottom:727.027167px;}
.y96_c00350{bottom:727.901436px;}
.y97_c00350{bottom:729.737442px;}
.y98_c00350{bottom:730.588563px;}
.y7e_c00350{bottom:753.193046px;}
.y7f_c00350{bottom:753.901490px;}
.y80_c00350{bottom:754.646942px;}
.y81_c00350{bottom:755.202473px;}
.y82_c00350{bottom:755.937677px;}
.y83_c00350{bottom:757.805405px;}
.y84_c00350{bottom:759.315753px;}
.y85_c00350{bottom:759.900165px;}
.y86_c00350{bottom:761.786492px;}
.y87_c00350{bottom:762.172701px;}
.y88_c00350{bottom:762.718622px;}
.y89_c00350{bottom:763.494819px;}
.y72_c00350{bottom:790.194791px;}
.y73_c00350{bottom:791.211521px;}
.y74_c00350{bottom:791.903949px;}
.y75_c00350{bottom:793.135610px;}
.y76_c00350{bottom:794.029683px;}
.y77_c00350{bottom:795.423599px;}
.y78_c00350{bottom:795.782840px;}
.y79_c00350{bottom:797.039381px;}
.y7a_c00350{bottom:797.570711px;}
.y7b_c00350{bottom:798.619430px;}
.y7c_c00350{bottom:798.977877px;}
.y7d_c00350{bottom:800.417376px;}
.y68_c00350{bottom:823.959875px;}
.y69_c00350{bottom:824.874992px;}
.y6a_c00350{bottom:825.766358px;}
.y6b_c00350{bottom:828.202254px;}
.y6c_c00350{bottom:830.330525px;}
.y6d_c00350{bottom:830.999558px;}
.y6e_c00350{bottom:833.757449px;}
.y6f_c00350{bottom:835.332078px;}
.y70_c00350{bottom:837.509196px;}
.y71_c00350{bottom:840.107487px;}
.y5c_c00350{bottom:863.926637px;}
.y5d_c00350{bottom:865.258659px;}
.y5e_c00350{bottom:865.662624px;}
.y5f_c00350{bottom:866.451576px;}
.y60_c00350{bottom:867.433445px;}
.y61_c00350{bottom:868.618995px;}
.y62_c00350{bottom:870.402996px;}
.y63_c00350{bottom:871.615374px;}
.y64_c00350{bottom:873.411245px;}
.y65_c00350{bottom:874.011956px;}
.y66_c00350{bottom:874.621811px;}
.y67_c00350{bottom:875.438280px;}
.y4f_c00350{bottom:898.764468px;}
.y50_c00350{bottom:899.270901px;}
.y51_c00350{bottom:900.160575px;}
.y52_c00350{bottom:900.857334px;}
.y53_c00350{bottom:902.065875px;}
.y54_c00350{bottom:902.601708px;}
.y55_c00350{bottom:902.965763px;}
.y56_c00350{bottom:903.497162px;}
.y57_c00350{bottom:904.192403px;}
.y58_c00350{bottom:904.714709px;}
.y59_c00350{bottom:905.800764px;}
.y5a_c00350{bottom:906.335700px;}
.y5b_c00350{bottom:907.576298px;}
.y49_c00350{bottom:931.718238px;}
.y4a_c00350{bottom:935.533563px;}
.y4b_c00350{bottom:936.406298px;}
.y4c_c00350{bottom:936.894300px;}
.y4d_c00350{bottom:941.255697px;}
.y4e_c00350{bottom:943.238034px;}
.y3d_c00350{bottom:966.017406px;}
.y3e_c00350{bottom:967.293380px;}
.y3f_c00350{bottom:967.833690px;}
.y40_c00350{bottom:968.625587px;}
.y41_c00350{bottom:970.194752px;}
.y42_c00350{bottom:972.847229px;}
.y43_c00350{bottom:974.147576px;}
.y44_c00350{bottom:974.946131px;}
.y45_c00350{bottom:976.279476px;}
.y46_c00350{bottom:977.615651px;}
.y47_c00350{bottom:978.404718px;}
.y48_c00350{bottom:979.490204px;}
.y32_c00350{bottom:1003.824360px;}
.y33_c00350{bottom:1004.620497px;}
.y34_c00350{bottom:1005.242097px;}
.y35_c00350{bottom:1006.705413px;}
.y36_c00350{bottom:1007.731758px;}
.y37_c00350{bottom:1009.209738px;}
.y38_c00350{bottom:1010.057337px;}
.y39_c00350{bottom:1010.672468px;}
.y3a_c00350{bottom:1012.381674px;}
.y3b_c00350{bottom:1013.626617px;}
.y3c_c00350{bottom:1014.489501px;}
.y24_c00350{bottom:1040.825277px;}
.y25_c00350{bottom:1041.832967px;}
.y26_c00350{bottom:1043.241306px;}
.y27_c00350{bottom:1043.774207px;}
.y28_c00350{bottom:1045.004004px;}
.y29_c00350{bottom:1045.517097px;}
.y2a_c00350{bottom:1046.066733px;}
.y2b_c00350{bottom:1046.779418px;}
.y2c_c00350{bottom:1047.314561px;}
.y2d_c00350{bottom:1048.369059px;}
.y2e_c00350{bottom:1048.710753px;}
.y2f_c00350{bottom:1049.240979px;}
.y30_c00350{bottom:1049.613074px;}
.y31_c00350{bottom:1049.972315px;}
.y19_c00350{bottom:1068.919124px;}
.y1a_c00350{bottom:1069.299608px;}
.y1b_c00350{bottom:1070.485215px;}
.y1c_c00350{bottom:1073.510112px;}
.y1d_c00350{bottom:1075.949252px;}
.y1e_c00350{bottom:1077.199230px;}
.y1f_c00350{bottom:1078.459127px;}
.y20_c00350{bottom:1079.971161px;}
.y21_c00350{bottom:1081.845293px;}
.y22_c00350{bottom:1084.333970px;}
.y23_c00350{bottom:1085.899613px;}
.ye_c00350{bottom:1111.854347px;}
.yf_c00350{bottom:1112.866028px;}
.y10_c00350{bottom:1113.496806px;}
.y11_c00350{bottom:1114.313766px;}
.y12_c00350{bottom:1115.338697px;}
.y13_c00350{bottom:1115.997198px;}
.y14_c00350{bottom:1117.034222px;}
.y15_c00350{bottom:1118.704956px;}
.y16_c00350{bottom:1123.367673px;}
.y17_c00350{bottom:1124.217273px;}
.y18_c00350{bottom:1124.633180px;}
.y3_c00350{bottom:1144.804500px;}
.y4_c00350{bottom:1146.070512px;}
.y5_c00350{bottom:1149.324690px;}
.y6_c00350{bottom:1150.064060px;}
.y7_c00350{bottom:1151.837946px;}
.y8_c00350{bottom:1152.355101px;}
.y9_c00350{bottom:1154.416545px;}
.ya_c00350{bottom:1155.191450px;}
.yb_c00350{bottom:1156.184498px;}
.yc_c00350{bottom:1156.696374px;}
.yd_c00350{bottom:1158.017966px;}
.y2_c00350{bottom:1208.922000px;}
.y1_c00350{bottom:1220.988000px;}
.hf_c00350{height:66.002673px;}
.h9_c00350{height:66.017455px;}
.h5_c00350{height:72.019041px;}
.h6_c00350{height:72.925281px;}
.hd_c00350{height:78.003159px;}
.h4_c00350{height:78.020628px;}
.h11_c00350{height:84.001512px;}
.h13_c00350{height:84.002058px;}
.he_c00350{height:84.003402px;}
.h12_c00350{height:84.004200px;}
.hb_c00350{height:84.022215px;}
.h3_c00350{height:90.000000px;}
.hc_c00350{height:90.003645px;}
.h8_c00350{height:90.023802px;}
.h16_c00350{height:95.959527px;}
.h10_c00350{height:96.001728px;}
.h14_c00350{height:96.002352px;}
.h7_c00350{height:96.025389px;}
.h15_c00350{height:101.956998px;}
.ha_c00350{height:114.030149px;}
.h2_c00350{height:228.000000px;}
.h0_c00350{height:1251.450000px;}
.h1_c00350{height:1251.750000px;}
.w0_c00350{width:915.000000px;}
.x0_c00350{left:0.000000px;}
.xd5_c00350{left:1.479000px;}
.xe8_c00350{left:3.470808px;}
.x4_c00350{left:114.132000px;}
.xf_c00350{left:127.041779px;}
.x22_c00350{left:128.628923px;}
.x3d_c00350{left:130.745177px;}
.x4e_c00350{left:132.473973px;}
.x62_c00350{left:134.067752px;}
.x77_c00350{left:135.290838px;}
.x8f_c00350{left:136.940921px;}
.x9d_c00350{left:138.348725px;}
.x19_c00350{left:140.233995px;}
.xb9_c00350{left:141.564851px;}
.xce_c00350{left:144.565266px;}
.xdf_c00350{left:145.802175px;}
.xe9_c00350{left:147.853766px;}
.xef_c00350{left:148.881000px;}
.xf4_c00350{left:149.924369px;}
.x42_c00350{left:162.188696px;}
.x59_c00350{left:165.774293px;}
.x90_c00350{left:167.587683px;}
.x5_c00350{left:169.176000px;}
.x2e_c00350{left:171.123660px;}
.xaa_c00350{left:172.155687px;}
.xba_c00350{left:173.503556px;}
.x6c_c00350{left:176.237352px;}
.x10_c00350{left:180.293678px;}
.x1a_c00350{left:182.581631px;}
.xc3_c00350{left:184.109727px;}
.x83_c00350{left:188.626745px;}
.x23_c00350{left:191.625566px;}
.x5a_c00350{left:197.612636px;}
.xe0_c00350{left:199.533311px;}
.x2f_c00350{left:203.826662px;}
.x37_c00350{left:205.278368px;}
.x4f_c00350{left:206.439960px;}
.xd6_c00350{left:209.460000px;}
.x84_c00350{left:211.401849px;}
.x11_c00350{left:213.526248px;}
.x43_c00350{left:217.835666px;}
.xcf_c00350{left:218.927970px;}
.x6d_c00350{left:220.067390px;}
.xa3_c00350{left:225.071448px;}
.x50_c00350{left:228.897548px;}
.xda_c00350{left:231.243000px;}
.x91_c00350{left:232.341071px;}
.x9e_c00350{left:234.208997px;}
.xab_c00350{left:236.740365px;}
.x38_c00350{left:238.273109px;}
.x63_c00350{left:240.874433px;}
.x97_c00350{left:243.657000px;}
.x78_c00350{left:245.028264px;}
.xb1_c00350{left:248.232269px;}
.xc7_c00350{left:249.822000px;}
.x6e_c00350{left:252.768909px;}
.x85_c00350{left:254.389817px;}
.x12_c00350{left:256.550216px;}
.xa4_c00350{left:258.671709px;}
.xbb_c00350{left:260.066832px;}
.x44_c00350{left:261.375669px;}
.xe1_c00350{left:264.333492px;}
.xac_c00350{left:268.375731px;}
.x51_c00350{left:272.726585px;}
.x98_c00350{left:276.900000px;}
.x24_c00350{left:279.676245px;}
.x30_c00350{left:280.825734px;}
.xc8_c00350{left:283.054500px;}
.x5b_c00350{left:284.598131px;}
.x1b_c00350{left:290.608211px;}
.x6f_c00350{left:296.022878px;}
.x92_c00350{left:298.860407px;}
.x39_c00350{left:303.626591px;}
.x79_c00350{left:307.551503px;}
.x6_c00350{left:310.662000px;}
.x25_c00350{left:313.025127px;}
.x64_c00350{left:317.850318px;}
.xc4_c00350{left:325.869176px;}
.x52_c00350{left:327.292364px;}
.x7a_c00350{left:330.533898px;}
.x3e_c00350{left:331.538634px;}
.x9f_c00350{left:333.102215px;}
.x31_c00350{left:334.845702px;}
.xbc_c00350{left:335.931365px;}
.x45_c00350{left:336.954848px;}
.xd0_c00350{left:337.978182px;}
.x7_c00350{left:342.808500px;}
.x99_c00350{left:343.864500px;}
.x13_c00350{left:345.142358px;}
.xea_c00350{left:352.895022px;}
.x5c_c00350{left:360.622902px;}
.xe2_c00350{left:362.615301px;}
.xf0_c00350{left:364.778886px;}
.xa0_c00350{left:365.779121px;}
.x46_c00350{left:370.431230px;}
.x65_c00350{left:373.753823px;}
.x1c_c00350{left:377.734706px;}
.xc9_c00350{left:381.064500px;}
.x5d_c00350{left:384.491142px;}
.x2_c00350{left:386.100000px;}
.xf1_c00350{left:387.669972px;}
.xf5_c00350{left:388.710129px;}
.x26_c00350{left:389.920013px;}
.xb2_c00350{left:391.318751px;}
.x47_c00350{left:393.176387px;}
.xe3_c00350{left:396.635470px;}
.x86_c00350{left:397.817996px;}
.x14_c00350{left:399.691860px;}
.xa5_c00350{left:400.898795px;}
.x3f_c00350{left:403.164224px;}
.x70_c00350{left:405.874023px;}
.x3_c00350{left:409.590000px;}
.xad_c00350{left:411.451074px;}
.x32_c00350{left:412.612844px;}
.x3a_c00350{left:414.123038px;}
.x7b_c00350{left:418.337325px;}
.x8_c00350{left:419.934000px;}
.x1d_c00350{left:422.359065px;}
.xf6_c00350{left:424.411343px;}
.x48_c00350{left:426.394734px;}
.x87_c00350{left:429.466394px;}
.x93_c00350{left:430.925337px;}
.xa6_c00350{left:433.288718px;}
.xc5_c00350{left:436.567191px;}
.xd1_c00350{left:437.838888px;}
.xdb_c00350{left:438.879000px;}
.x9_c00350{left:442.419000px;}
.xf7_c00350{left:444.189872px;}
.xb3_c00350{left:446.339781px;}
.x7c_c00350{left:452.867151px;}
.xf2_c00350{left:453.921654px;}
.x27_c00350{left:456.353708px;}
.x66_c00350{left:460.916364px;}
.x94_c00350{left:465.461066px;}
.x1e_c00350{left:467.349390px;}
.x49_c00350{left:469.868738px;}
.xd7_c00350{left:472.180500px;}
.xeb_c00350{left:474.657110px;}
.xf8_c00350{left:476.838437px;}
.xb4_c00350{left:479.585189px;}
.xc6_c00350{left:481.107395px;}
.x5e_c00350{left:482.996826px;}
.x15_c00350{left:487.601433px;}
.x33_c00350{left:489.586416px;}
.xbd_c00350{left:491.143187px;}
.x53_c00350{left:492.291839px;}
.x71_c00350{left:494.705771px;}
.xe4_c00350{left:495.728821px;}
.x7d_c00350{left:496.864115px;}
.x9a_c00350{left:498.576000px;}
.x28_c00350{left:500.912384px;}
.x4a_c00350{left:502.495982px;}
.x88_c00350{left:507.101535px;}
.xa1_c00350{left:510.214529px;}
.xa7_c00350{left:511.814322px;}
.x95_c00350{left:519.756797px;}
.x1f_c00350{left:521.344680px;}
.xbe_c00350{left:523.809338px;}
.x72_c00350{left:529.054497px;}
.xa_c00350{left:532.047000px;}
.x29_c00350{left:534.358766px;}
.xdc_c00350{left:537.954000px;}
.x5f_c00350{left:539.256875px;}
.xf3_c00350{left:542.286701px;}
.x96_c00350{left:544.763610px;}
.xb5_c00350{left:546.260490px;}
.x9b_c00350{left:553.917000px;}
.x3b_c00350{left:557.152260px;}
.xca_c00350{left:558.193500px;}
.x54_c00350{left:559.685601px;}
.x67_c00350{left:561.966648px;}
.xb_c00350{left:565.738500px;}
.x4b_c00350{left:570.335384px;}
.xd8_c00350{left:572.040000px;}
.x7e_c00350{left:575.062404px;}
.x34_c00350{left:579.560196px;}
.x20_c00350{left:588.277487px;}
.xd2_c00350{left:593.829720px;}
.x68_c00350{left:595.181996px;}
.xec_c00350{left:597.469176px;}
.x89_c00350{left:598.959488px;}
.x2a_c00350{left:600.238857px;}
.xb6_c00350{left:601.320521px;}
.x4c_c00350{left:603.772766px;}
.xc_c00350{left:608.914500px;}
.x3c_c00350{left:612.832484px;}
.x60_c00350{left:617.013939px;}
.xe5_c00350{left:618.311828px;}
.x2b_c00350{left:621.620307px;}
.xbf_c00350{left:626.959913px;}
.xd_c00350{left:631.170000px;}
.x40_c00350{left:632.724338px;}
.x73_c00350{left:639.975281px;}
.x35_c00350{left:645.107234px;}
.xe6_c00350{left:651.521955px;}
.x8a_c00350{left:652.632921px;}
.x2c_c00350{left:654.787655px;}
.xb7_c00350{left:656.928024px;}
.x55_c00350{left:659.430555px;}
.x69_c00350{left:660.745553px;}
.x74_c00350{left:662.704920px;}
.xc0_c00350{left:669.283862px;}
.xcb_c00350{left:671.025000px;}
.xed_c00350{left:675.474492px;}
.x21_c00350{left:677.166275px;}
.xae_c00350{left:678.745949px;}
.x4d_c00350{left:681.267720px;}
.x6a_c00350{left:683.181675px;}
.x7f_c00350{left:686.067192px;}
.xe_c00350{left:688.630500px;}
.x36_c00350{left:690.519408px;}
.x56_c00350{left:692.791385px;}
.x75_c00350{left:694.792836px;}
.x8b_c00350{left:697.505061px;}
.x2d_c00350{left:700.483503px;}
.xc1_c00350{left:702.159999px;}
.x61_c00350{left:709.820279px;}
.x80_c00350{left:718.467225px;}
.xa8_c00350{left:723.365673px;}
.x57_c00350{left:726.680283px;}
.xd3_c00350{left:727.932762px;}
.x16_c00350{left:733.002996px;}
.x41_c00350{left:737.052929px;}
.x76_c00350{left:740.481650px;}
.xc2_c00350{left:748.574151px;}
.x8c_c00350{left:752.258598px;}
.xe7_c00350{left:763.574447px;}
.x58_c00350{left:772.031993px;}
.x6b_c00350{left:773.109131px;}
.x8d_c00350{left:774.951168px;}
.x17_c00350{left:777.707102px;}
.xaf_c00350{left:779.386331px;}
.x81_c00350{left:786.482981px;}
.xa2_c00350{left:789.082007px;}
.xd4_c00350{left:795.165015px;}
.x18_c00350{left:799.574603px;}
.xb8_c00350{left:801.673412px;}
.xcc_c00350{left:804.402000px;}
.xdd_c00350{left:807.375000px;}
.xb0_c00350{left:812.613129px;}
.x82_c00350{left:818.007083px;}
.xee_c00350{left:819.099970px;}
.x8e_c00350{left:820.322843px;}
.xa9_c00350{left:822.249713px;}
.xd9_c00350{left:829.351500px;}
.x9c_c00350{left:831.724500px;}
.xcd_c00350{left:837.867000px;}
.xde_c00350{left:840.874500px;}
.x1_c00350{left:845.640000px;}
@media print{
.v0_c00350{vertical-align:0.000000pt;}
.ls0_c00350{letter-spacing:0.000000pt;}
.ws0_c00350{word-spacing:0.000000pt;}
._0_c00350{width:37.660556pt;}
.fsc_c00350{font-size:58.669043pt;}
.fs6_c00350{font-size:58.682182pt;}
.fs3_c00350{font-size:64.016926pt;}
.fsa_c00350{font-size:69.336141pt;}
.fs2_c00350{font-size:69.351670pt;}
.fse_c00350{font-size:74.668011pt;}
.fs10_c00350{font-size:74.668496pt;}
.fsb_c00350{font-size:74.669691pt;}
.fsf_c00350{font-size:74.670400pt;}
.fs8_c00350{font-size:74.686413pt;}
.fs1_c00350{font-size:80.000000pt;}
.fs9_c00350{font-size:80.003240pt;}
.fs5_c00350{font-size:80.021157pt;}
.fs13_c00350{font-size:85.297358pt;}
.fsd_c00350{font-size:85.334869pt;}
.fs11_c00350{font-size:85.335424pt;}
.fs4_c00350{font-size:85.355901pt;}
.fs12_c00350{font-size:90.628443pt;}
.fs7_c00350{font-size:101.360132pt;}
.fs0_c00350{font-size:202.666667pt;}
.y0_c00350{bottom:0.000000pt;}
.y158_c00350{bottom:75.151841pt;}
.y159_c00350{bottom:76.064019pt;}
.y15a_c00350{bottom:78.203877pt;}
.y15b_c00350{bottom:80.385589pt;}
.y15c_c00350{bottom:81.299444pt;}
.y15d_c00350{bottom:81.950301pt;}
.y15e_c00350{bottom:82.966341pt;}
.y15f_c00350{bottom:83.530019pt;}
.y160_c00350{bottom:84.459043pt;}
.y161_c00350{bottom:86.345560pt;}
.y162_c00350{bottom:87.911604pt;}
.y14d_c00350{bottom:107.300000pt;}
.y14e_c00350{bottom:108.277976pt;}
.y14f_c00350{bottom:110.550989pt;}
.y150_c00350{bottom:112.852427pt;}
.y151_c00350{bottom:113.831445pt;}
.y152_c00350{bottom:114.523957pt;}
.y153_c00350{bottom:115.916869pt;}
.y154_c00350{bottom:116.528235pt;}
.y155_c00350{bottom:117.531597pt;}
.y156_c00350{bottom:119.201496pt;}
.y157_c00350{bottom:120.873072pt;}
.y13e_c00350{bottom:158.160944pt;}
.y13f_c00350{bottom:159.572685pt;}
.y140_c00350{bottom:160.191297pt;}
.y141_c00350{bottom:160.506276pt;}
.y142_c00350{bottom:160.825855pt;}
.y143_c00350{bottom:161.577867pt;}
.y144_c00350{bottom:162.446587pt;}
.y145_c00350{bottom:162.768852pt;}
.y146_c00350{bottom:163.209319pt;}
.y147_c00350{bottom:163.969037pt;}
.y148_c00350{bottom:164.294279pt;}
.y149_c00350{bottom:164.731751pt;}
.y14a_c00350{bottom:165.594127pt;}
.y14b_c00350{bottom:165.824501pt;}
.y14c_c00350{bottom:166.136112pt;}
.y132_c00350{bottom:200.842101pt;}
.y131_c00350{bottom:200.842484pt;}
.y135_c00350{bottom:200.842607pt;}
.y133_c00350{bottom:200.842679pt;}
.y12e_c00350{bottom:200.842761pt;}
.y138_c00350{bottom:200.842775pt;}
.y130_c00350{bottom:200.842920pt;}
.y134_c00350{bottom:200.842936pt;}
.y13c_c00350{bottom:200.843004pt;}
.y136_c00350{bottom:200.843024pt;}
.y13a_c00350{bottom:200.843156pt;}
.y137_c00350{bottom:200.843157pt;}
.y139_c00350{bottom:200.843192pt;}
.y12f_c00350{bottom:200.843276pt;}
.y13d_c00350{bottom:200.843288pt;}
.y13b_c00350{bottom:200.843520pt;}
.y123_c00350{bottom:230.640000pt;}
.y124_c00350{bottom:231.176368pt;}
.y125_c00350{bottom:231.710645pt;}
.y126_c00350{bottom:232.129040pt;}
.y127_c00350{bottom:232.468325pt;}
.y128_c00350{bottom:233.084792pt;}
.y129_c00350{bottom:233.571796pt;}
.y12a_c00350{bottom:233.721428pt;}
.y12b_c00350{bottom:234.208553pt;}
.y12c_c00350{bottom:234.761189pt;}
.y12d_c00350{bottom:234.969631pt;}
.y117_c00350{bottom:256.321333pt;}
.y118_c00350{bottom:257.598480pt;}
.y119_c00350{bottom:258.170053pt;}
.y11a_c00350{bottom:258.933453pt;}
.y11b_c00350{bottom:259.317507pt;}
.y11c_c00350{bottom:260.505347pt;}
.y11d_c00350{bottom:261.093053pt;}
.y11e_c00350{bottom:261.392987pt;}
.y11f_c00350{bottom:262.191973pt;}
.y120_c00350{bottom:262.480133pt;}
.y121_c00350{bottom:263.185507pt;}
.y122_c00350{bottom:263.680200pt;}
.y10c_c00350{bottom:284.645096pt;}
.y10d_c00350{bottom:285.900395pt;}
.y10e_c00350{bottom:287.911379pt;}
.y10f_c00350{bottom:289.047288pt;}
.y110_c00350{bottom:289.598677pt;}
.y111_c00350{bottom:290.364533pt;}
.y112_c00350{bottom:292.233360pt;}
.y113_c00350{bottom:292.789024pt;}
.y114_c00350{bottom:293.927019pt;}
.y115_c00350{bottom:294.497965pt;}
.y116_c00350{bottom:295.633899pt;}
.y103_c00350{bottom:327.840000pt;}
.y104_c00350{bottom:328.017240pt;}
.y105_c00350{bottom:328.539960pt;}
.y106_c00350{bottom:329.018024pt;}
.y107_c00350{bottom:329.484648pt;}
.y108_c00350{bottom:330.086416pt;}
.y109_c00350{bottom:330.621952pt;}
.y10a_c00350{bottom:330.797760pt;}
.y10b_c00350{bottom:330.976240pt;}
.yfa_c00350{bottom:352.312513pt;}
.yfb_c00350{bottom:352.733165pt;}
.yfc_c00350{bottom:354.119261pt;}
.yfd_c00350{bottom:354.451409pt;}
.yfe_c00350{bottom:355.200861pt;}
.yff_c00350{bottom:355.635856pt;}
.y100_c00350{bottom:356.503709pt;}
.y101_c00350{bottom:357.588647pt;}
.y102_c00350{bottom:358.769457pt;}
.yed_c00350{bottom:385.914188pt;}
.yee_c00350{bottom:386.396383pt;}
.yef_c00350{bottom:386.878661pt;}
.yf0_c00350{bottom:387.703605pt;}
.yf1_c00350{bottom:388.850565pt;}
.yf2_c00350{bottom:389.683205pt;}
.yf3_c00350{bottom:391.196349pt;}
.yf4_c00350{bottom:391.689697pt;}
.yf5_c00350{bottom:393.248295pt;}
.yf6_c00350{bottom:393.888244pt;}
.yf7_c00350{bottom:394.384605pt;}
.yf8_c00350{bottom:395.086612pt;}
.yf9_c00350{bottom:395.565829pt;}
.ye2_c00350{bottom:414.479120pt;}
.ye3_c00350{bottom:416.012563pt;}
.ye4_c00350{bottom:417.402123pt;}
.ye5_c00350{bottom:418.047993pt;}
.ye6_c00350{bottom:418.830856pt;}
.ye7_c00350{bottom:419.303503pt;}
.ye8_c00350{bottom:420.251605pt;}
.ye9_c00350{bottom:421.034780pt;}
.yea_c00350{bottom:421.825001pt;}
.yeb_c00350{bottom:422.300625pt;}
.yec_c00350{bottom:423.883037pt;}
.yd4_c00350{bottom:448.317289pt;}
.yd5_c00350{bottom:448.698647pt;}
.yd6_c00350{bottom:449.444676pt;}
.yd7_c00350{bottom:449.809768pt;}
.yd8_c00350{bottom:451.204393pt;}
.yd9_c00350{bottom:451.463745pt;}
.yda_c00350{bottom:451.982581pt;}
.ydb_c00350{bottom:452.363351pt;}
.ydc_c00350{bottom:452.868935pt;}
.ydd_c00350{bottom:453.402511pt;}
.yde_c00350{bottom:454.166305pt;}
.ydf_c00350{bottom:454.552848pt;}
.ye0_c00350{bottom:455.715333pt;}
.ye1_c00350{bottom:456.099824pt;}
.ycb_c00350{bottom:477.125729pt;}
.ycc_c00350{bottom:478.876383pt;}
.ycd_c00350{bottom:479.563885pt;}
.yce_c00350{bottom:482.471179pt;}
.ycf_c00350{bottom:483.132997pt;}
.yd0_c00350{bottom:484.738615pt;}
.yd1_c00350{bottom:486.995016pt;}
.yd2_c00350{bottom:489.063239pt;}
.yd3_c00350{bottom:491.085077pt;}
.ybf_c00350{bottom:514.800233pt;}
.yc0_c00350{bottom:515.737796pt;}
.yc1_c00350{bottom:515.941965pt;}
.yc2_c00350{bottom:516.704956pt;}
.yc3_c00350{bottom:517.025043pt;}
.yc4_c00350{bottom:517.362892pt;}
.yc5_c00350{bottom:518.436547pt;}
.yc6_c00350{bottom:518.766511pt;}
.yc7_c00350{bottom:519.407355pt;}
.yc8_c00350{bottom:520.067319pt;}
.yc9_c00350{bottom:520.387285pt;}
.yca_c00350{bottom:521.163527pt;}
.yb5_c00350{bottom:548.161333pt;}
.yb6_c00350{bottom:548.427277pt;}
.yb7_c00350{bottom:548.699389pt;}
.yb8_c00350{bottom:548.962993pt;}
.yb9_c00350{bottom:549.932773pt;}
.yba_c00350{bottom:550.200685pt;}
.ybb_c00350{bottom:550.643413pt;}
.ybc_c00350{bottom:550.911145pt;}
.ybd_c00350{bottom:551.894005pt;}
.ybe_c00350{bottom:552.865873pt;}
.ya9_c00350{bottom:577.318615pt;}
.yaa_c00350{bottom:577.645012pt;}
.yab_c00350{bottom:578.335191pt;}
.yac_c00350{bottom:578.571233pt;}
.yad_c00350{bottom:579.044131pt;}
.yae_c00350{bottom:579.395088pt;}
.yaf_c00350{bottom:580.103552pt;}
.yb0_c00350{bottom:580.451441pt;}
.yb1_c00350{bottom:580.819993pt;}
.yb2_c00350{bottom:581.399092pt;}
.yb3_c00350{bottom:581.666213pt;}
.yb4_c00350{bottom:582.612928pt;}
.y99_c00350{bottom:607.089541pt;}
.y9a_c00350{bottom:608.001633pt;}
.y9b_c00350{bottom:608.385881pt;}
.y9c_c00350{bottom:609.111332pt;}
.y9d_c00350{bottom:610.018839pt;}
.y9e_c00350{bottom:610.389055pt;}
.y9f_c00350{bottom:611.534039pt;}
.ya0_c00350{bottom:612.069013pt;}
.ya1_c00350{bottom:613.380075pt;}
.ya2_c00350{bottom:613.787187pt;}
.ya3_c00350{bottom:614.931220pt;}
.ya4_c00350{bottom:615.837776pt;}
.ya5_c00350{bottom:616.595077pt;}
.ya6_c00350{bottom:617.519713pt;}
.ya7_c00350{bottom:617.903608pt;}
.ya8_c00350{bottom:618.669788pt;}
.y8a_c00350{bottom:633.027685pt;}
.y8b_c00350{bottom:635.660745pt;}
.y8c_c00350{bottom:637.161783pt;}
.y8d_c00350{bottom:637.713021pt;}
.y8e_c00350{bottom:638.770376pt;}
.y8f_c00350{bottom:639.820279pt;}
.y90_c00350{bottom:640.648953pt;}
.y91_c00350{bottom:641.704529pt;}
.y92_c00350{bottom:642.475831pt;}
.y93_c00350{bottom:643.582064pt;}
.y94_c00350{bottom:644.605887pt;}
.y95_c00350{bottom:646.246371pt;}
.y96_c00350{bottom:647.023499pt;}
.y97_c00350{bottom:648.655504pt;}
.y98_c00350{bottom:649.412056pt;}
.y7e_c00350{bottom:669.504929pt;}
.y7f_c00350{bottom:670.134657pt;}
.y80_c00350{bottom:670.797281pt;}
.y81_c00350{bottom:671.291087pt;}
.y82_c00350{bottom:671.944601pt;}
.y83_c00350{bottom:673.604804pt;}
.y84_c00350{bottom:674.947336pt;}
.y85_c00350{bottom:675.466813pt;}
.y86_c00350{bottom:677.143548pt;}
.y87_c00350{bottom:677.486845pt;}
.y88_c00350{bottom:677.972108pt;}
.y89_c00350{bottom:678.662061pt;}
.y72_c00350{bottom:702.395369pt;}
.y73_c00350{bottom:703.299129pt;}
.y74_c00350{bottom:703.914621pt;}
.y75_c00350{bottom:705.009431pt;}
.y76_c00350{bottom:705.804163pt;}
.y77_c00350{bottom:707.043199pt;}
.y78_c00350{bottom:707.362524pt;}
.y79_c00350{bottom:708.479449pt;}
.y7a_c00350{bottom:708.951743pt;}
.y7b_c00350{bottom:709.883937pt;}
.y7c_c00350{bottom:710.202557pt;}
.y7d_c00350{bottom:711.482112pt;}
.y68_c00350{bottom:732.408777pt;}
.y69_c00350{bottom:733.222215pt;}
.y6a_c00350{bottom:734.014540pt;}
.y6b_c00350{bottom:736.179781pt;}
.y6c_c00350{bottom:738.071577pt;}
.y6d_c00350{bottom:738.666273pt;}
.y6e_c00350{bottom:741.117732pt;}
.y6f_c00350{bottom:742.517403pt;}
.y70_c00350{bottom:744.452619pt;}
.y71_c00350{bottom:746.762211pt;}
.y5c_c00350{bottom:767.934788pt;}
.y5d_c00350{bottom:769.118808pt;}
.y5e_c00350{bottom:769.477888pt;}
.y5f_c00350{bottom:770.179179pt;}
.y60_c00350{bottom:771.051951pt;}
.y61_c00350{bottom:772.105773pt;}
.y62_c00350{bottom:773.691552pt;}
.y63_c00350{bottom:774.769221pt;}
.y64_c00350{bottom:776.365551pt;}
.y65_c00350{bottom:776.899516pt;}
.y66_c00350{bottom:777.441609pt;}
.y67_c00350{bottom:778.167360pt;}
.y4f_c00350{bottom:798.901749pt;}
.y50_c00350{bottom:799.351912pt;}
.y51_c00350{bottom:800.142733pt;}
.y52_c00350{bottom:800.762075pt;}
.y53_c00350{bottom:801.836333pt;}
.y54_c00350{bottom:802.312629pt;}
.y55_c00350{bottom:802.636233pt;}
.y56_c00350{bottom:803.108588pt;}
.y57_c00350{bottom:803.726580pt;}
.y58_c00350{bottom:804.190852pt;}
.y59_c00350{bottom:805.156235pt;}
.y5a_c00350{bottom:805.631733pt;}
.y5b_c00350{bottom:806.734487pt;}
.y49_c00350{bottom:828.193989pt;}
.y4a_c00350{bottom:831.585389pt;}
.y4b_c00350{bottom:832.361153pt;}
.y4c_c00350{bottom:832.794933pt;}
.y4d_c00350{bottom:836.671731pt;}
.y4e_c00350{bottom:838.433808pt;}
.y3d_c00350{bottom:858.682139pt;}
.y3e_c00350{bottom:859.816337pt;}
.y3f_c00350{bottom:860.296613pt;}
.y40_c00350{bottom:861.000521pt;}
.y41_c00350{bottom:862.395335pt;}
.y42_c00350{bottom:864.753092pt;}
.y43_c00350{bottom:865.908956pt;}
.y44_c00350{bottom:866.618783pt;}
.y45_c00350{bottom:867.803979pt;}
.y46_c00350{bottom:868.991689pt;}
.y47_c00350{bottom:869.693083pt;}
.y48_c00350{bottom:870.657959pt;}
.y32_c00350{bottom:892.288320pt;}
.y33_c00350{bottom:892.995997pt;}
.y34_c00350{bottom:893.548531pt;}
.y35_c00350{bottom:894.849256pt;}
.y36_c00350{bottom:895.761563pt;}
.y37_c00350{bottom:897.075323pt;}
.y38_c00350{bottom:897.828744pt;}
.y39_c00350{bottom:898.375527pt;}
.y3a_c00350{bottom:899.894821pt;}
.y3b_c00350{bottom:901.001437pt;}
.y3c_c00350{bottom:901.768445pt;}
.y24_c00350{bottom:925.178024pt;}
.y25_c00350{bottom:926.073748pt;}
.y26_c00350{bottom:927.325605pt;}
.y27_c00350{bottom:927.799295pt;}
.y28_c00350{bottom:928.892448pt;}
.y29_c00350{bottom:929.348531pt;}
.y2a_c00350{bottom:929.837096pt;}
.y2b_c00350{bottom:930.470593pt;}
.y2c_c00350{bottom:930.946276pt;}
.y2d_c00350{bottom:931.883608pt;}
.y2e_c00350{bottom:932.187336pt;}
.y2f_c00350{bottom:932.658648pt;}
.y30_c00350{bottom:932.989399pt;}
.y31_c00350{bottom:933.308724pt;}
.y19_c00350{bottom:950.150332pt;}
.y1a_c00350{bottom:950.488540pt;}
.y1b_c00350{bottom:951.542413pt;}
.y1c_c00350{bottom:954.231211pt;}
.y1d_c00350{bottom:956.399335pt;}
.y1e_c00350{bottom:957.510427pt;}
.y1f_c00350{bottom:958.630335pt;}
.y20_c00350{bottom:959.974365pt;}
.y21_c00350{bottom:961.640260pt;}
.y22_c00350{bottom:963.852417pt;}
.y23_c00350{bottom:965.244100pt;}
.ye_c00350{bottom:988.314975pt;}
.yf_c00350{bottom:989.214247pt;}
.y10_c00350{bottom:989.774939pt;}
.y11_c00350{bottom:990.501125pt;}
.y12_c00350{bottom:991.412175pt;}
.y13_c00350{bottom:991.997509pt;}
.y14_c00350{bottom:992.919308pt;}
.y15_c00350{bottom:994.404405pt;}
.y16_c00350{bottom:998.549043pt;}
.y17_c00350{bottom:999.304243pt;}
.y18_c00350{bottom:999.673937pt;}
.y3_c00350{bottom:1017.604000pt;}
.y4_c00350{bottom:1018.729344pt;}
.y5_c00350{bottom:1021.621947pt;}
.y6_c00350{bottom:1022.279164pt;}
.y7_c00350{bottom:1023.855952pt;}
.y8_c00350{bottom:1024.315645pt;}
.y9_c00350{bottom:1026.148040pt;}
.ya_c00350{bottom:1026.836844pt;}
.yb_c00350{bottom:1027.719553pt;}
.yc_c00350{bottom:1028.174555pt;}
.yd_c00350{bottom:1029.349303pt;}
.y2_c00350{bottom:1074.597333pt;}
.y1_c00350{bottom:1085.322667pt;}
.hf_c00350{height:58.669043pt;}
.h9_c00350{height:58.682182pt;}
.h5_c00350{height:64.016926pt;}
.h6_c00350{height:64.822472pt;}
.hd_c00350{height:69.336141pt;}
.h4_c00350{height:69.351670pt;}
.h11_c00350{height:74.668011pt;}
.h13_c00350{height:74.668496pt;}
.he_c00350{height:74.669691pt;}
.h12_c00350{height:74.670400pt;}
.hb_c00350{height:74.686413pt;}
.h3_c00350{height:80.000000pt;}
.hc_c00350{height:80.003240pt;}
.h8_c00350{height:80.021157pt;}
.h16_c00350{height:85.297358pt;}
.h10_c00350{height:85.334869pt;}
.h14_c00350{height:85.335424pt;}
.h7_c00350{height:85.355901pt;}
.h15_c00350{height:90.628443pt;}
.ha_c00350{height:101.360132pt;}
.h2_c00350{height:202.666667pt;}
.h0_c00350{height:1112.400000pt;}
.h1_c00350{height:1112.666667pt;}
.w0_c00350{width:813.333333pt;}
.x0_c00350{left:0.000000pt;}
.xd5_c00350{left:1.314667pt;}
.xe8_c00350{left:3.085163pt;}
.x4_c00350{left:101.450667pt;}
.xf_c00350{left:112.926025pt;}
.x22_c00350{left:114.336820pt;}
.x3d_c00350{left:116.217935pt;}
.x4e_c00350{left:117.754643pt;}
.x62_c00350{left:119.171335pt;}
.x77_c00350{left:120.258523pt;}
.x8f_c00350{left:121.725263pt;}
.x9d_c00350{left:122.976644pt;}
.x19_c00350{left:124.652440pt;}
.xb9_c00350{left:125.835423pt;}
.xce_c00350{left:128.502459pt;}
.xdf_c00350{left:129.601933pt;}
.xe9_c00350{left:131.425569pt;}
.xef_c00350{left:132.338667pt;}
.xf4_c00350{left:133.266105pt;}
.x42_c00350{left:144.167729pt;}
.x59_c00350{left:147.354927pt;}
.x90_c00350{left:148.966829pt;}
.x5_c00350{left:150.378667pt;}
.x2e_c00350{left:152.109920pt;}
.xaa_c00350{left:153.027277pt;}
.xba_c00350{left:154.225383pt;}
.x6c_c00350{left:156.655424pt;}
.x10_c00350{left:160.261047pt;}
.x1a_c00350{left:162.294783pt;}
.xc3_c00350{left:163.653091pt;}
.x83_c00350{left:167.668217pt;}
.x23_c00350{left:170.333836pt;}
.x5a_c00350{left:175.655676pt;}
.xe0_c00350{left:177.362943pt;}
.x2f_c00350{left:181.179255pt;}
.x37_c00350{left:182.469660pt;}
.x4f_c00350{left:183.502187pt;}
.xd6_c00350{left:186.186667pt;}
.x84_c00350{left:187.912755pt;}
.x11_c00350{left:189.801109pt;}
.x43_c00350{left:193.631703pt;}
.xcf_c00350{left:194.602640pt;}
.x6d_c00350{left:195.615457pt;}
.xa3_c00350{left:200.063509pt;}
.x50_c00350{left:203.464487pt;}
.xda_c00350{left:205.549333pt;}
.x91_c00350{left:206.525396pt;}
.x9e_c00350{left:208.185775pt;}
.xab_c00350{left:210.435880pt;}
.x38_c00350{left:211.798319pt;}
.x63_c00350{left:214.110607pt;}
.x97_c00350{left:216.584000pt;}
.x78_c00350{left:217.802901pt;}
.xb1_c00350{left:220.650905pt;}
.xc7_c00350{left:222.064000pt;}
.x6e_c00350{left:224.683475pt;}
.x85_c00350{left:226.124281pt;}
.x12_c00350{left:228.044636pt;}
.xa4_c00350{left:229.930408pt;}
.xbb_c00350{left:231.170517pt;}
.x44_c00350{left:232.333928pt;}
.xe1_c00350{left:234.963104pt;}
.xac_c00350{left:238.556205pt;}
.x51_c00350{left:242.423631pt;}
.x98_c00350{left:246.133333pt;}
.x24_c00350{left:248.601107pt;}
.x30_c00350{left:249.622875pt;}
.xc8_c00350{left:251.604000pt;}
.x5b_c00350{left:252.976116pt;}
.x1b_c00350{left:258.318409pt;}
.x6f_c00350{left:263.131447pt;}
.x92_c00350{left:265.653695pt;}
.x39_c00350{left:269.890303pt;}
.x79_c00350{left:273.379113pt;}
.x6_c00350{left:276.144000pt;}
.x25_c00350{left:278.244557pt;}
.x64_c00350{left:282.533616pt;}
.xc4_c00350{left:289.661489pt;}
.x52_c00350{left:290.926545pt;}
.x7a_c00350{left:293.807909pt;}
.x3e_c00350{left:294.701008pt;}
.x9f_c00350{left:296.090857pt;}
.x31_c00350{left:297.640624pt;}
.xbc_c00350{left:298.605657pt;}
.x45_c00350{left:299.515420pt;}
.xd0_c00350{left:300.425051pt;}
.x7_c00350{left:304.718667pt;}
.x99_c00350{left:305.657333pt;}
.x13_c00350{left:306.793207pt;}
.xea_c00350{left:313.684464pt;}
.x5c_c00350{left:320.553691pt;}
.xe2_c00350{left:322.324712pt;}
.xf0_c00350{left:324.247899pt;}
.xa0_c00350{left:325.136996pt;}
.x46_c00350{left:329.272204pt;}
.x65_c00350{left:332.225620pt;}
.x1c_c00350{left:335.764183pt;}
.xc9_c00350{left:338.724000pt;}
.x5d_c00350{left:341.769904pt;}
.x2_c00350{left:343.200000pt;}
.xf1_c00350{left:344.595531pt;}
.xf5_c00350{left:345.520115pt;}
.x26_c00350{left:346.595567pt;}
.xb2_c00350{left:347.838889pt;}
.x47_c00350{left:349.490121pt;}
.xe3_c00350{left:352.564863pt;}
.x86_c00350{left:353.615996pt;}
.x14_c00350{left:355.281653pt;}
.xa5_c00350{left:356.354484pt;}
.x3f_c00350{left:358.368199pt;}
.x70_c00350{left:360.776909pt;}
.x3_c00350{left:364.080000pt;}
.xad_c00350{left:365.734288pt;}
.x32_c00350{left:366.766972pt;}
.x3a_c00350{left:368.109367pt;}
.x7b_c00350{left:371.855400pt;}
.x8_c00350{left:373.274667pt;}
.x1d_c00350{left:375.430280pt;}
.xf6_c00350{left:377.254527pt;}
.x48_c00350{left:379.017541pt;}
.x87_c00350{left:381.747905pt;}
.x93_c00350{left:383.044744pt;}
.xa6_c00350{left:385.145527pt;}
.xc5_c00350{left:388.059725pt;}
.xd1_c00350{left:389.190123pt;}
.xdb_c00350{left:390.114667pt;}
.x9_c00350{left:393.261333pt;}
.xf7_c00350{left:394.835441pt;}
.xb3_c00350{left:396.746472pt;}
.x7c_c00350{left:402.548579pt;}
.xf2_c00350{left:403.485915pt;}
.x27_c00350{left:405.647740pt;}
.x66_c00350{left:409.703435pt;}
.x94_c00350{left:413.743169pt;}
.x1e_c00350{left:415.421680pt;}
.x49_c00350{left:417.661100pt;}
.xd7_c00350{left:419.716000pt;}
.xeb_c00350{left:421.917431pt;}
.xf8_c00350{left:423.856388pt;}
.xb4_c00350{left:426.297945pt;}
.xc6_c00350{left:427.651017pt;}
.x5e_c00350{left:429.330512pt;}
.x15_c00350{left:433.423496pt;}
.x33_c00350{left:435.187925pt;}
.xbd_c00350{left:436.571721pt;}
.x53_c00350{left:437.592745pt;}
.x71_c00350{left:439.738463pt;}
.xe4_c00350{left:440.647841pt;}
.x7d_c00350{left:441.656991pt;}
.x9a_c00350{left:443.178667pt;}
.x28_c00350{left:445.255452pt;}
.x4a_c00350{left:446.663095pt;}
.x88_c00350{left:450.756920pt;}
.xa1_c00350{left:453.524025pt;}
.xa7_c00350{left:454.946064pt;}
.x95_c00350{left:462.006041pt;}
.x1f_c00350{left:463.417493pt;}
.xbe_c00350{left:465.608300pt;}
.x72_c00350{left:470.270664pt;}
.xa_c00350{left:472.930667pt;}
.x29_c00350{left:474.985569pt;}
.xdc_c00350{left:478.181333pt;}
.x5f_c00350{left:479.339444pt;}
.xf3_c00350{left:482.032623pt;}
.x96_c00350{left:484.234320pt;}
.xb5_c00350{left:485.564880pt;}
.x9b_c00350{left:492.370667pt;}
.x3b_c00350{left:495.246453pt;}
.xca_c00350{left:496.172000pt;}
.x54_c00350{left:497.498312pt;}
.x67_c00350{left:499.525909pt;}
.xb_c00350{left:502.878667pt;}
.x4b_c00350{left:506.964785pt;}
.xd8_c00350{left:508.480000pt;}
.x7e_c00350{left:511.166581pt;}
.x34_c00350{left:515.164619pt;}
.x20_c00350{left:522.913321pt;}
.xd2_c00350{left:527.848640pt;}
.x68_c00350{left:529.050663pt;}
.xec_c00350{left:531.083712pt;}
.x89_c00350{left:532.408433pt;}
.x2a_c00350{left:533.545651pt;}
.xb6_c00350{left:534.507129pt;}
.x4c_c00350{left:536.686903pt;}
.xc_c00350{left:541.257333pt;}
.x3c_c00350{left:544.739985pt;}
.x60_c00350{left:548.456835pt;}
.xe5_c00350{left:549.610513pt;}
.x2b_c00350{left:552.551384pt;}
.xbf_c00350{left:557.297700pt;}
.xd_c00350{left:561.040000pt;}
.x40_c00350{left:562.421633pt;}
.x73_c00350{left:568.866916pt;}
.x35_c00350{left:573.428652pt;}
.xe6_c00350{left:579.130627pt;}
.x8a_c00350{left:580.118152pt;}
.x2c_c00350{left:582.033471pt;}
.xb7_c00350{left:583.936021pt;}
.x55_c00350{left:586.160493pt;}
.x69_c00350{left:587.329380pt;}
.x74_c00350{left:589.071040pt;}
.xc0_c00350{left:594.918988pt;}
.xcb_c00350{left:596.466667pt;}
.xed_c00350{left:600.421771pt;}
.x21_c00350{left:601.925577pt;}
.xae_c00350{left:603.329732pt;}
.x4d_c00350{left:605.571307pt;}
.x6a_c00350{left:607.272600pt;}
.x7f_c00350{left:609.837504pt;}
.xe_c00350{left:612.116000pt;}
.x36_c00350{left:613.795029pt;}
.x56_c00350{left:615.814564pt;}
.x75_c00350{left:617.593632pt;}
.x8b_c00350{left:620.004499pt;}
.x2d_c00350{left:622.652003pt;}
.xc1_c00350{left:624.142221pt;}
.x61_c00350{left:630.951359pt;}
.x80_c00350{left:638.637533pt;}
.xa8_c00350{left:642.991709pt;}
.x57_c00350{left:645.938029pt;}
.xd3_c00350{left:647.051344pt;}
.x16_c00350{left:651.558219pt;}
.x41_c00350{left:655.158159pt;}
.x76_c00350{left:658.205911pt;}
.xc2_c00350{left:665.399245pt;}
.x8c_c00350{left:668.674309pt;}
.xe7_c00350{left:678.732841pt;}
.x58_c00350{left:686.250660pt;}
.x6b_c00350{left:687.208116pt;}
.x8d_c00350{left:688.845483pt;}
.x17_c00350{left:691.295201pt;}
.xaf_c00350{left:692.787849pt;}
.x81_c00350{left:699.095983pt;}
.xa2_c00350{left:701.406228pt;}
.xd4_c00350{left:706.813347pt;}
.x18_c00350{left:710.732980pt;}
.xb8_c00350{left:712.598588pt;}
.xcc_c00350{left:715.024000pt;}
.xdd_c00350{left:717.666667pt;}
.xb0_c00350{left:722.322781pt;}
.x82_c00350{left:727.117407pt;}
.xee_c00350{left:728.088863pt;}
.x8e_c00350{left:729.175860pt;}
.xa9_c00350{left:730.888633pt;}
.xd9_c00350{left:737.201333pt;}
.x9c_c00350{left:739.310667pt;}
.xcd_c00350{left:744.770667pt;}
.xde_c00350{left:747.444000pt;}
.x1_c00350{left:751.680000pt;}
}





/* 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_c00351 {
    display:none;
  }
  .loading-indicator_c00351.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00351 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_c00351 { 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_c00351" -> "#page-container .classname_c00351")
 */
.pf_c00351 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00351 { /* 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_c00351.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00351 { /* 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_c00351 { /* 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_c00351 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00351 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00351 {overflow:visible;}
  }
}
.c_c00351 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00351 { /* 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_c00351:after { /* webkit #35443 */
  content: '';
}
.t_c00351:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00351 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 */
}
.__c00351 { /* 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_c00351 { /* info for Javascript */
  display:none;
}
.l_c00351 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00351 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00351 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00351: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_c00351 {
    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_c00351.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00351.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_c00351 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00351{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00351;src:url('chunks/assets/font_dbd529e162d5851c7bfb6d27.woff2')format("woff");}.ff1_c00351{font-family:ff1_c00351;line-height:1.000000;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;}
.m5_c00351{transform:matrix(0.014575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.014575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.014575,0.000000,0.000000,0.250000,0,0);}
.m11_c00351{transform:matrix(0.043720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.043720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.043720,0.000000,0.000000,0.250000,0,0);}
.m44_c00351{transform:matrix(0.128860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128860,0.000000,0.000000,0.250000,0,0);}
.m1_c00351{transform:matrix(0.129110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129110,0.000000,0.000000,0.250000,0,0);}
.m0_c00351{transform:matrix(0.159450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159450,0.000000,0.000000,0.250000,0,0);}
.m6_c00351{transform:matrix(0.179840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179840,0.000000,0.000000,0.250000,0,0);}
.m45_c00351{transform:matrix(0.213360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213360,0.000000,0.000000,0.250000,0,0);}
.m4_c00351{transform:matrix(0.222375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222375,0.000000,0.000000,0.250000,0,0);}
.m1a_c00351{transform:matrix(0.223560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223560,0.000000,0.000000,0.250000,0,0);}
.m8_c00351{transform:matrix(0.226280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226280,0.000000,0.000000,0.250000,0,0);}
.m1e_c00351{transform:matrix(0.231850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231850,0.000000,0.000000,0.250000,0,0);}
.m38_c00351{transform:matrix(0.233695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233695,0.000000,0.000000,0.250000,0,0);}
.m3_c00351{transform:matrix(0.243130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243130,0.000000,0.000000,0.250000,0,0);}
.m2c_c00351{transform:matrix(0.244091,0.001465,-0.001500,0.249996,0,0);-ms-transform:matrix(0.244091,0.001465,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.244091,0.001465,-0.001500,0.249996,0,0);}
.m9_c00351{transform:matrix(0.259285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259285,0.000000,0.000000,0.250000,0,0);}
.m1f_c00351{transform:matrix(0.267240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267240,0.000000,0.000000,0.250000,0,0);}
.m3b_c00351{transform:matrix(0.267350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267350,0.000000,0.000000,0.250000,0,0);}
.m1c_c00351{transform:matrix(0.267740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267740,0.000000,0.000000,0.250000,0,0);}
.m13_c00351{transform:matrix(0.268400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268400,0.000000,0.000000,0.250000,0,0);}
.m32_c00351{transform:matrix(0.281340,0.001688,-0.001500,0.249996,0,0);-ms-transform:matrix(0.281340,0.001688,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.281340,0.001688,-0.001500,0.249996,0,0);}
.m3e_c00351{transform:matrix(0.282815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282815,0.000000,0.000000,0.250000,0,0);}
.m1d_c00351{transform:matrix(0.291035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291035,0.000000,0.000000,0.250000,0,0);}
.m24_c00351{transform:matrix(0.291854,0.003502,-0.003000,0.249982,0,0);-ms-transform:matrix(0.291854,0.003502,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.291854,0.003502,-0.003000,0.249982,0,0);}
.m35_c00351{transform:matrix(0.292720,0.001756,-0.001500,0.249996,0,0);-ms-transform:matrix(0.292720,0.001756,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.292720,0.001756,-0.001500,0.249996,0,0);}
.m12_c00351{transform:matrix(0.297840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297840,0.000000,0.000000,0.250000,0,0);}
.m19_c00351{transform:matrix(0.303210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303210,0.000000,0.000000,0.250000,0,0);}
.m22_c00351{transform:matrix(0.306068,0.003673,-0.003000,0.249982,0,0);-ms-transform:matrix(0.306068,0.003673,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.306068,0.003673,-0.003000,0.249982,0,0);}
.m2b_c00351{transform:matrix(0.310239,0.001861,-0.001500,0.249996,0,0);-ms-transform:matrix(0.310239,0.001861,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.310239,0.001861,-0.001500,0.249996,0,0);}
.me_c00351{transform:matrix(0.310590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310590,0.000000,0.000000,0.250000,0,0);}
.m2f_c00351{transform:matrix(0.316889,0.001901,-0.001500,0.249996,0,0);-ms-transform:matrix(0.316889,0.001901,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.316889,0.001901,-0.001500,0.249996,0,0);}
.m18_c00351{transform:matrix(0.317345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317345,0.000000,0.000000,0.250000,0,0);}
.m15_c00351{transform:matrix(0.317375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317375,0.000000,0.000000,0.250000,0,0);}
.m29_c00351{transform:matrix(0.319772,0.003837,-0.003000,0.249982,0,0);-ms-transform:matrix(0.319772,0.003837,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.319772,0.003837,-0.003000,0.249982,0,0);}
.m33_c00351{transform:matrix(0.320484,0.001923,-0.001500,0.249996,0,0);-ms-transform:matrix(0.320484,0.001923,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.320484,0.001923,-0.001500,0.249996,0,0);}
.m37_c00351{transform:matrix(0.324345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324345,0.000000,0.000000,0.250000,0,0);}
.m25_c00351{transform:matrix(0.324507,0.003894,-0.003000,0.249982,0,0);-ms-transform:matrix(0.324507,0.003894,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.324507,0.003894,-0.003000,0.249982,0,0);}
.m10_c00351{transform:matrix(0.329650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329650,0.000000,0.000000,0.250000,0,0);}
.m26_c00351{transform:matrix(0.330121,0.003961,-0.003000,0.249982,0,0);-ms-transform:matrix(0.330121,0.003961,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.330121,0.003961,-0.003000,0.249982,0,0);}
.m2a_c00351{transform:matrix(0.331149,0.001987,-0.001500,0.249996,0,0);-ms-transform:matrix(0.331149,0.001987,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.331149,0.001987,-0.001500,0.249996,0,0);}
.m17_c00351{transform:matrix(0.349955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349955,0.000000,0.000000,0.250000,0,0);}
.m1b_c00351{transform:matrix(0.366655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366655,0.000000,0.000000,0.250000,0,0);}
.m14_c00351{transform:matrix(0.369490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369490,0.000000,0.000000,0.250000,0,0);}
.md_c00351{transform:matrix(0.378820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378820,0.000000,0.000000,0.250000,0,0);}
.ma_c00351{transform:matrix(0.388975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388975,0.000000,0.000000,0.250000,0,0);}
.m2e_c00351{transform:matrix(0.393518,0.002361,-0.001500,0.249996,0,0);-ms-transform:matrix(0.393518,0.002361,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.393518,0.002361,-0.001500,0.249996,0,0);}
.m39_c00351{transform:matrix(0.395460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395460,0.000000,0.000000,0.250000,0,0);}
.mf_c00351{transform:matrix(0.397980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397980,0.000000,0.000000,0.250000,0,0);}
.m36_c00351{transform:matrix(0.403095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403095,0.000000,0.000000,0.250000,0,0);}
.m3d_c00351{transform:matrix(0.404585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404585,0.000000,0.000000,0.250000,0,0);}
.m30_c00351{transform:matrix(0.406518,0.002439,-0.001500,0.249996,0,0);-ms-transform:matrix(0.406518,0.002439,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.406518,0.002439,-0.001500,0.249996,0,0);}
.m7_c00351{transform:matrix(0.424800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424800,0.000000,0.000000,0.250000,0,0);}
.m3c_c00351{transform:matrix(0.449620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449620,0.000000,0.000000,0.250000,0,0);}
.m2d_c00351{transform:matrix(0.471672,0.002830,-0.001500,0.249996,0,0);-ms-transform:matrix(0.471672,0.002830,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.471672,0.002830,-0.001500,0.249996,0,0);}
.m21_c00351{transform:matrix(0.474005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474005,0.000000,0.000000,0.250000,0,0);}
.mb_c00351{transform:matrix(0.490065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490065,0.000000,0.000000,0.250000,0,0);}
.m34_c00351{transform:matrix(0.506556,0.003039,-0.001500,0.249996,0,0);-ms-transform:matrix(0.506556,0.003039,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.506556,0.003039,-0.001500,0.249996,0,0);}
.mc_c00351{transform:matrix(0.547340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547340,0.000000,0.000000,0.250000,0,0);}
.m27_c00351{transform:matrix(0.569884,0.006839,-0.003000,0.249982,0,0);-ms-transform:matrix(0.569884,0.006839,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.569884,0.006839,-0.003000,0.249982,0,0);}
.m20_c00351{transform:matrix(0.580210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.580210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.580210,0.000000,0.000000,0.250000,0,0);}
.m31_c00351{transform:matrix(0.583604,0.003502,-0.001500,0.249996,0,0);-ms-transform:matrix(0.583604,0.003502,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.583604,0.003502,-0.001500,0.249996,0,0);}
.m23_c00351{transform:matrix(0.605546,0.007267,-0.003000,0.249982,0,0);-ms-transform:matrix(0.605546,0.007267,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.605546,0.007267,-0.003000,0.249982,0,0);}
.m41_c00351{transform:matrix(0.614490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.614490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.614490,0.000000,0.000000,0.250000,0,0);}
.m28_c00351{transform:matrix(0.615551,0.007387,-0.003000,0.249982,0,0);-ms-transform:matrix(0.615551,0.007387,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.615551,0.007387,-0.003000,0.249982,0,0);}
.m16_c00351{transform:matrix(0.630075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630075,0.000000,0.000000,0.250000,0,0);}
.m2_c00351{transform:matrix(0.683640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.683640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.683640,0.000000,0.000000,0.250000,0,0);}
.m3f_c00351{transform:matrix(0.712455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.712455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.712455,0.000000,0.000000,0.250000,0,0);}
.m3a_c00351{transform:matrix(0.748595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.748595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.748595,0.000000,0.000000,0.250000,0,0);}
.m40_c00351{transform:matrix(0.766710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.766710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.766710,0.000000,0.000000,0.250000,0,0);}
.m42_c00351{transform:matrix(0.944105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.944105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.944105,0.000000,0.000000,0.250000,0,0);}
.m43_c00351{transform:matrix(1.067220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.067220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.067220,0.000000,0.000000,0.250000,0,0);}
.v0_c00351{vertical-align:0.000000px;}
.ls0_c00351{letter-spacing:0.000000px;}
.sc__c00351{text-shadow:none;}
.sc0_c00351{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__c00351{-webkit-text-stroke:0px transparent;}
.sc0_c00351{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00351{word-spacing:0.000000px;}
.fc0_c00351{color:transparent;}
.fs0_c00351{font-size:18.000000px;}
.fs7_c00351{font-size:30.000000px;}
.fs6_c00351{font-size:42.000000px;}
.fs5_c00351{font-size:72.001296px;}
.fs4_c00351{font-size:72.005184px;}
.fs2_c00351{font-size:84.000000px;}
.fs3_c00351{font-size:90.000000px;}
.fs1_c00351{font-size:108.000000px;}
.y0_c00351{bottom:0.000000px;}
.y1c_c00351{bottom:636.930000px;}
.y1b_c00351{bottom:644.490000px;}
.y1a_c00351{bottom:651.066000px;}
.y19_c00351{bottom:684.304500px;}
.yc_c00351{bottom:861.877158px;}
.yb_c00351{bottom:862.070658px;}
.ya_c00351{bottom:862.695888px;}
.y9_c00351{bottom:863.269602px;}
.y8_c00351{bottom:864.111858px;}
.y7_c00351{bottom:865.297770px;}
.y6_c00351{bottom:866.191794px;}
.y5_c00351{bottom:866.701500px;}
.y18_c00351{bottom:898.955082px;}
.y17_c00351{bottom:899.256555px;}
.y16_c00351{bottom:899.708346px;}
.y15_c00351{bottom:899.884611px;}
.y14_c00351{bottom:900.034065px;}
.y13_c00351{bottom:900.235008px;}
.y12_c00351{bottom:900.484380px;}
.y11_c00351{bottom:900.680553px;}
.y10_c00351{bottom:901.098414px;}
.yf_c00351{bottom:901.276362px;}
.ye_c00351{bottom:901.762416px;}
.yd_c00351{bottom:902.070000px;}
.y4_c00351{bottom:971.184000px;}
.y3_c00351{bottom:1078.380000px;}
.y2_c00351{bottom:1116.225000px;}
.y1_c00351{bottom:1136.700000px;}
.h2_c00351{height:18.000000px;}
.h9_c00351{height:30.000000px;}
.h8_c00351{height:42.000000px;}
.h7_c00351{height:72.001296px;}
.h6_c00351{height:72.005184px;}
.h4_c00351{height:84.000000px;}
.h5_c00351{height:90.000000px;}
.h3_c00351{height:108.000000px;}
.h0_c00351{height:1251.450000px;}
.h1_c00351{height:1251.750000px;}
.w0_c00351{width:915.000000px;}
.x0_c00351{left:0.000000px;}
.x2_c00351{left:148.770000px;}
.xd_c00351{left:152.010000px;}
.x3_c00351{left:160.650000px;}
.x18_c00351{left:180.090000px;}
.x29_c00351{left:183.811500px;}
.x33_c00351{left:226.260000px;}
.x19_c00351{left:227.880000px;}
.x3a_c00351{left:233.010000px;}
.x2a_c00351{left:235.075500px;}
.xe_c00351{left:236.520000px;}
.x1a_c00351{left:268.110000px;}
.x34_c00351{left:273.780000px;}
.xf_c00351{left:282.150000px;}
.x3b_c00351{left:293.760000px;}
.x1b_c00351{left:305.370000px;}
.x2b_c00351{left:316.084500px;}
.x10_c00351{left:328.050000px;}
.x35_c00351{left:329.940000px;}
.x2c_c00351{left:345.742500px;}
.x23_c00351{left:348.583500px;}
.x1c_c00351{left:356.940000px;}
.x3c_c00351{left:362.340000px;}
.x3d_c00351{left:379.350000px;}
.x11_c00351{left:394.470000px;}
.x36_c00351{left:396.090000px;}
.x3e_c00351{left:400.680000px;}
.x3f_c00351{left:406.890000px;}
.x40_c00351{left:407.970000px;}
.x4_c00351{left:411.750000px;}
.x1d_c00351{left:416.070000px;}
.x24_c00351{left:423.085500px;}
.x12_c00351{left:425.790000px;}
.x5_c00351{left:428.760000px;}
.x1e_c00351{left:439.290000px;}
.x13_c00351{left:447.120000px;}
.x1_c00351{left:481.410000px;}
.x2d_c00351{left:489.643500px;}
.x14_c00351{left:491.940000px;}
.x6_c00351{left:496.260000px;}
.x1f_c00351{left:497.880000px;}
.x37_c00351{left:509.490000px;}
.x7_c00351{left:516.240000px;}
.x25_c00351{left:521.911500px;}
.x2e_c00351{left:523.134000px;}
.x15_c00351{left:537.030000px;}
.x2f_c00351{left:548.043000px;}
.x8_c00351{left:571.590000px;}
.x30_c00351{left:577.420500px;}
.x38_c00351{left:589.950000px;}
.x26_c00351{left:592.099500px;}
.x9_c00351{left:601.290000px;}
.x20_c00351{left:611.820000px;}
.x39_c00351{left:612.900000px;}
.x16_c00351{left:627.210000px;}
.x27_c00351{left:639.909000px;}
.x31_c00351{left:652.719000px;}
.xa_c00351{left:660.960000px;}
.x21_c00351{left:676.080000px;}
.x28_c00351{left:692.011500px;}
.x32_c00351{left:702.964500px;}
.x22_c00351{left:706.050000px;}
.xb_c00351{left:707.670000px;}
.x17_c00351{left:739.530000px;}
.xc_c00351{left:746.010000px;}
@media print{
.v0_c00351{vertical-align:0.000000pt;}
.ls0_c00351{letter-spacing:0.000000pt;}
.ws0_c00351{word-spacing:0.000000pt;}
.fs0_c00351{font-size:16.000000pt;}
.fs7_c00351{font-size:26.666667pt;}
.fs6_c00351{font-size:37.333333pt;}
.fs5_c00351{font-size:64.001152pt;}
.fs4_c00351{font-size:64.004608pt;}
.fs2_c00351{font-size:74.666667pt;}
.fs3_c00351{font-size:80.000000pt;}
.fs1_c00351{font-size:96.000000pt;}
.y0_c00351{bottom:0.000000pt;}
.y1c_c00351{bottom:566.160000pt;}
.y1b_c00351{bottom:572.880000pt;}
.y1a_c00351{bottom:578.725333pt;}
.y19_c00351{bottom:608.270667pt;}
.yc_c00351{bottom:766.113029pt;}
.yb_c00351{bottom:766.285029pt;}
.ya_c00351{bottom:766.840789pt;}
.y9_c00351{bottom:767.350757pt;}
.y8_c00351{bottom:768.099429pt;}
.y7_c00351{bottom:769.153573pt;}
.y6_c00351{bottom:769.948261pt;}
.y5_c00351{bottom:770.401333pt;}
.y18_c00351{bottom:799.071184pt;}
.y17_c00351{bottom:799.339160pt;}
.y16_c00351{bottom:799.740752pt;}
.y15_c00351{bottom:799.897432pt;}
.y14_c00351{bottom:800.030280pt;}
.y13_c00351{bottom:800.208896pt;}
.y12_c00351{bottom:800.430560pt;}
.y11_c00351{bottom:800.604936pt;}
.y10_c00351{bottom:800.976368pt;}
.yf_c00351{bottom:801.134544pt;}
.ye_c00351{bottom:801.566592pt;}
.yd_c00351{bottom:801.840000pt;}
.y4_c00351{bottom:863.274667pt;}
.y3_c00351{bottom:958.560000pt;}
.y2_c00351{bottom:992.200000pt;}
.y1_c00351{bottom:1010.400000pt;}
.h2_c00351{height:16.000000pt;}
.h9_c00351{height:26.666667pt;}
.h8_c00351{height:37.333333pt;}
.h7_c00351{height:64.001152pt;}
.h6_c00351{height:64.004608pt;}
.h4_c00351{height:74.666667pt;}
.h5_c00351{height:80.000000pt;}
.h3_c00351{height:96.000000pt;}
.h0_c00351{height:1112.400000pt;}
.h1_c00351{height:1112.666667pt;}
.w0_c00351{width:813.333333pt;}
.x0_c00351{left:0.000000pt;}
.x2_c00351{left:132.240000pt;}
.xd_c00351{left:135.120000pt;}
.x3_c00351{left:142.800000pt;}
.x18_c00351{left:160.080000pt;}
.x29_c00351{left:163.388000pt;}
.x33_c00351{left:201.120000pt;}
.x19_c00351{left:202.560000pt;}
.x3a_c00351{left:207.120000pt;}
.x2a_c00351{left:208.956000pt;}
.xe_c00351{left:210.240000pt;}
.x1a_c00351{left:238.320000pt;}
.x34_c00351{left:243.360000pt;}
.xf_c00351{left:250.800000pt;}
.x3b_c00351{left:261.120000pt;}
.x1b_c00351{left:271.440000pt;}
.x2b_c00351{left:280.964000pt;}
.x10_c00351{left:291.600000pt;}
.x35_c00351{left:293.280000pt;}
.x2c_c00351{left:307.326667pt;}
.x23_c00351{left:309.852000pt;}
.x1c_c00351{left:317.280000pt;}
.x3c_c00351{left:322.080000pt;}
.x3d_c00351{left:337.200000pt;}
.x11_c00351{left:350.640000pt;}
.x36_c00351{left:352.080000pt;}
.x3e_c00351{left:356.160000pt;}
.x3f_c00351{left:361.680000pt;}
.x40_c00351{left:362.640000pt;}
.x4_c00351{left:366.000000pt;}
.x1d_c00351{left:369.840000pt;}
.x24_c00351{left:376.076000pt;}
.x12_c00351{left:378.480000pt;}
.x5_c00351{left:381.120000pt;}
.x1e_c00351{left:390.480000pt;}
.x13_c00351{left:397.440000pt;}
.x1_c00351{left:427.920000pt;}
.x2d_c00351{left:435.238667pt;}
.x14_c00351{left:437.280000pt;}
.x6_c00351{left:441.120000pt;}
.x1f_c00351{left:442.560000pt;}
.x37_c00351{left:452.880000pt;}
.x7_c00351{left:458.880000pt;}
.x25_c00351{left:463.921333pt;}
.x2e_c00351{left:465.008000pt;}
.x15_c00351{left:477.360000pt;}
.x2f_c00351{left:487.149333pt;}
.x8_c00351{left:508.080000pt;}
.x30_c00351{left:513.262667pt;}
.x38_c00351{left:524.400000pt;}
.x26_c00351{left:526.310667pt;}
.x9_c00351{left:534.480000pt;}
.x20_c00351{left:543.840000pt;}
.x39_c00351{left:544.800000pt;}
.x16_c00351{left:557.520000pt;}
.x27_c00351{left:568.808000pt;}
.x31_c00351{left:580.194667pt;}
.xa_c00351{left:587.520000pt;}
.x21_c00351{left:600.960000pt;}
.x28_c00351{left:615.121333pt;}
.x32_c00351{left:624.857333pt;}
.x22_c00351{left:627.600000pt;}
.xb_c00351{left:629.040000pt;}
.x17_c00351{left:657.360000pt;}
.xc_c00351{left:663.120000pt;}
}





/* 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_c00352 {
    display:none;
  }
  .loading-indicator_c00352.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00352 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_c00352 { 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_c00352" -> "#page-container .classname_c00352")
 */
.pf_c00352 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00352 { /* 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_c00352.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00352 { /* 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_c00352 { /* 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_c00352 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00352 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00352 {overflow:visible;}
  }
}
.c_c00352 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00352 { /* 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_c00352:after { /* webkit #35443 */
  content: '';
}
.t_c00352:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00352 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 */
}
.__c00352 { /* 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_c00352 { /* info for Javascript */
  display:none;
}
.l_c00352 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00352 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00352 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00352: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_c00352 {
    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_c00352.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00352.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_c00352 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00352{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00352;src:url('chunks/assets/font_fabf4b590f7fb32aea93ffb2.woff2')format("woff");}.ff1_c00352{font-family:ff1_c00352;line-height:1.000000;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;}
.m6c_c00352{transform:matrix(0.008483,0.000161,-0.004749,0.249955,0,0);-ms-transform:matrix(0.008483,0.000161,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.008483,0.000161,-0.004749,0.249955,0,0);}
.m1_c00352{transform:matrix(0.090815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090815,0.000000,0.000000,0.250000,0,0);}
.m103_c00352{transform:matrix(0.141379,0.003393,-0.005998,0.249928,0,0);-ms-transform:matrix(0.141379,0.003393,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.141379,0.003393,-0.005998,0.249928,0,0);}
.m106_c00352{transform:matrix(0.150187,0.003604,-0.005998,0.249928,0,0);-ms-transform:matrix(0.150187,0.003604,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.150187,0.003604,-0.005998,0.249928,0,0);}
.m100_c00352{transform:matrix(0.151116,0.003627,-0.005998,0.249928,0,0);-ms-transform:matrix(0.151116,0.003627,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.151116,0.003627,-0.005998,0.249928,0,0);}
.m139_c00352{transform:matrix(0.151683,-0.002579,0.004249,0.249964,0,0);-ms-transform:matrix(0.151683,-0.002579,0.004249,0.249964,0,0);-webkit-transform:matrix(0.151683,-0.002579,0.004249,0.249964,0,0);}
.m109_c00352{transform:matrix(0.152016,0.003648,-0.005998,0.249928,0,0);-ms-transform:matrix(0.152016,0.003648,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.152016,0.003648,-0.005998,0.249928,0,0);}
.m13b_c00352{transform:matrix(0.152083,-0.002585,0.004249,0.249964,0,0);-ms-transform:matrix(0.152083,-0.002585,0.004249,0.249964,0,0);-webkit-transform:matrix(0.152083,-0.002585,0.004249,0.249964,0,0);}
.m13a_c00352{transform:matrix(0.156682,-0.002664,0.004249,0.249964,0,0);-ms-transform:matrix(0.156682,-0.002664,0.004249,0.249964,0,0);-webkit-transform:matrix(0.156682,-0.002664,0.004249,0.249964,0,0);}
.mfe_c00352{transform:matrix(0.158764,0.003810,-0.005998,0.249928,0,0);-ms-transform:matrix(0.158764,0.003810,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.158764,0.003810,-0.005998,0.249928,0,0);}
.m138_c00352{transform:matrix(0.159322,-0.002708,0.004249,0.249964,0,0);-ms-transform:matrix(0.159322,-0.002708,0.004249,0.249964,0,0);-webkit-transform:matrix(0.159322,-0.002708,0.004249,0.249964,0,0);}
.m83_c00352{transform:matrix(0.166459,0.002663,-0.003999,0.249968,0,0);-ms-transform:matrix(0.166459,0.002663,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.166459,0.002663,-0.003999,0.249968,0,0);}
.m135_c00352{transform:matrix(0.166731,-0.002834,0.004249,0.249964,0,0);-ms-transform:matrix(0.166731,-0.002834,0.004249,0.249964,0,0);-webkit-transform:matrix(0.166731,-0.002834,0.004249,0.249964,0,0);}
.mff_c00352{transform:matrix(0.168691,0.004049,-0.005998,0.249928,0,0);-ms-transform:matrix(0.168691,0.004049,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.168691,0.004049,-0.005998,0.249928,0,0);}
.m102_c00352{transform:matrix(0.170246,0.004086,-0.005998,0.249928,0,0);-ms-transform:matrix(0.170246,0.004086,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.170246,0.004086,-0.005998,0.249928,0,0);}
.m136_c00352{transform:matrix(0.170760,-0.002903,0.004249,0.249964,0,0);-ms-transform:matrix(0.170760,-0.002903,0.004249,0.249964,0,0);-webkit-transform:matrix(0.170760,-0.002903,0.004249,0.249964,0,0);}
.m104_c00352{transform:matrix(0.172815,0.004148,-0.005998,0.249928,0,0);-ms-transform:matrix(0.172815,0.004148,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.172815,0.004148,-0.005998,0.249928,0,0);}
.m8b_c00352{transform:matrix(0.173658,0.002779,-0.003999,0.249968,0,0);-ms-transform:matrix(0.173658,0.002779,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.173658,0.002779,-0.003999,0.249968,0,0);}
.m130_c00352{transform:matrix(0.173740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173740,0.000000,0.000000,0.250000,0,0);}
.m137_c00352{transform:matrix(0.175845,-0.002989,0.004249,0.249964,0,0);-ms-transform:matrix(0.175845,-0.002989,0.004249,0.249964,0,0);-webkit-transform:matrix(0.175845,-0.002989,0.004249,0.249964,0,0);}
.m17_c00352{transform:matrix(0.177776,0.003200,-0.004499,0.249960,0,0);-ms-transform:matrix(0.177776,0.003200,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.177776,0.003200,-0.004499,0.249960,0,0);}
.m107_c00352{transform:matrix(0.177854,0.004268,-0.005998,0.249928,0,0);-ms-transform:matrix(0.177854,0.004268,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.177854,0.004268,-0.005998,0.249928,0,0);}
.m116_c00352{transform:matrix(0.178860,0.005366,-0.007497,0.249888,0,0);-ms-transform:matrix(0.178860,0.005366,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.178860,0.005366,-0.007497,0.249888,0,0);}
.m101_c00352{transform:matrix(0.179293,0.004303,-0.005998,0.249928,0,0);-ms-transform:matrix(0.179293,0.004303,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.179293,0.004303,-0.005998,0.249928,0,0);}
.m20_c00352{transform:matrix(0.179656,0.003234,-0.004499,0.249960,0,0);-ms-transform:matrix(0.179656,0.003234,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.179656,0.003234,-0.004499,0.249960,0,0);}
.m118_c00352{transform:matrix(0.180199,0.005406,-0.007497,0.249888,0,0);-ms-transform:matrix(0.180199,0.005406,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.180199,0.005406,-0.007497,0.249888,0,0);}
.m123_c00352{transform:matrix(0.180274,0.001442,-0.002000,0.249992,0,0);-ms-transform:matrix(0.180274,0.001442,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.180274,0.001442,-0.002000,0.249992,0,0);}
.m110_c00352{transform:matrix(0.181319,0.005258,-0.007247,0.249895,0,0);-ms-transform:matrix(0.181319,0.005258,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.181319,0.005258,-0.007247,0.249895,0,0);}
.m87_c00352{transform:matrix(0.181372,0.002902,-0.003999,0.249968,0,0);-ms-transform:matrix(0.181372,0.002902,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.181372,0.002902,-0.003999,0.249968,0,0);}
.m13c_c00352{transform:matrix(0.181989,-0.003094,0.004249,0.249964,0,0);-ms-transform:matrix(0.181989,-0.003094,0.004249,0.249964,0,0);-webkit-transform:matrix(0.181989,-0.003094,0.004249,0.249964,0,0);}
.m113_c00352{transform:matrix(0.183283,0.005315,-0.007247,0.249895,0,0);-ms-transform:matrix(0.183283,0.005315,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.183283,0.005315,-0.007247,0.249895,0,0);}
.m131_c00352{transform:matrix(0.184190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184190,0.000000,0.000000,0.250000,0,0);}
.m133_c00352{transform:matrix(0.184875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184875,0.000000,0.000000,0.250000,0,0);}
.m89_c00352{transform:matrix(0.185276,0.002964,-0.003999,0.249968,0,0);-ms-transform:matrix(0.185276,0.002964,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.185276,0.002964,-0.003999,0.249968,0,0);}
.m132_c00352{transform:matrix(0.185720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185720,0.000000,0.000000,0.250000,0,0);}
.m105_c00352{transform:matrix(0.186591,0.004478,-0.005998,0.249928,0,0);-ms-transform:matrix(0.186591,0.004478,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.186591,0.004478,-0.005998,0.249928,0,0);}
.m8d_c00352{transform:matrix(0.187466,0.002999,-0.003999,0.249968,0,0);-ms-transform:matrix(0.187466,0.002999,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.187466,0.002999,-0.003999,0.249968,0,0);}
.m11e_c00352{transform:matrix(0.187801,0.005634,-0.007497,0.249888,0,0);-ms-transform:matrix(0.187801,0.005634,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.187801,0.005634,-0.007497,0.249888,0,0);}
.m4_c00352{transform:matrix(0.188280,0.003389,-0.004499,0.249960,0,0);-ms-transform:matrix(0.188280,0.003389,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.188280,0.003389,-0.004499,0.249960,0,0);}
.m134_c00352{transform:matrix(0.188290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188290,0.000000,0.000000,0.250000,0,0);}
.m6b_c00352{transform:matrix(0.188441,0.003580,-0.004749,0.249955,0,0);-ms-transform:matrix(0.188441,0.003580,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.188441,0.003580,-0.004749,0.249955,0,0);}
.m108_c00352{transform:matrix(0.188941,0.004535,-0.005998,0.249928,0,0);-ms-transform:matrix(0.188941,0.004535,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.188941,0.004535,-0.005998,0.249928,0,0);}
.m85_c00352{transform:matrix(0.189131,0.003026,-0.003999,0.249968,0,0);-ms-transform:matrix(0.189131,0.003026,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.189131,0.003026,-0.003999,0.249968,0,0);}
.m82_c00352{transform:matrix(0.189291,0.003029,-0.003999,0.249968,0,0);-ms-transform:matrix(0.189291,0.003029,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.189291,0.003029,-0.003999,0.249968,0,0);}
.m4f_c00352{transform:matrix(0.190946,0.003628,-0.004749,0.249955,0,0);-ms-transform:matrix(0.190946,0.003628,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.190946,0.003628,-0.004749,0.249955,0,0);}
.m18_c00352{transform:matrix(0.191344,0.003444,-0.004499,0.249960,0,0);-ms-transform:matrix(0.191344,0.003444,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.191344,0.003444,-0.004499,0.249960,0,0);}
.m5f_c00352{transform:matrix(0.192025,0.003648,-0.004749,0.249955,0,0);-ms-transform:matrix(0.192025,0.003648,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.192025,0.003648,-0.004749,0.249955,0,0);}
.m10e_c00352{transform:matrix(0.192429,0.005580,-0.007247,0.249895,0,0);-ms-transform:matrix(0.192429,0.005580,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.192429,0.005580,-0.007247,0.249895,0,0);}
.m12d_c00352{transform:matrix(0.193570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193570,0.000000,0.000000,0.250000,0,0);}
.m88_c00352{transform:matrix(0.193635,0.003098,-0.003999,0.249968,0,0);-ms-transform:matrix(0.193635,0.003098,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.193635,0.003098,-0.003999,0.249968,0,0);}
.mec_c00352{transform:matrix(0.194274,0.005440,-0.006997,0.249902,0,0);-ms-transform:matrix(0.194274,0.005440,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.194274,0.005440,-0.006997,0.249902,0,0);}
.mbf_c00352{transform:matrix(0.194294,0.004663,-0.005998,0.249928,0,0);-ms-transform:matrix(0.194294,0.004663,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.194294,0.004663,-0.005998,0.249928,0,0);}
.m38_c00352{transform:matrix(0.194315,0.003692,-0.004749,0.249955,0,0);-ms-transform:matrix(0.194315,0.003692,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.194315,0.003692,-0.004749,0.249955,0,0);}
.m11a_c00352{transform:matrix(0.194418,0.005833,-0.007497,0.249888,0,0);-ms-transform:matrix(0.194418,0.005833,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.194418,0.005833,-0.007497,0.249888,0,0);}
.m11b_c00352{transform:matrix(0.194612,0.005838,-0.007497,0.249888,0,0);-ms-transform:matrix(0.194612,0.005838,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.194612,0.005838,-0.007497,0.249888,0,0);}
.m69_c00352{transform:matrix(0.194905,0.003703,-0.004749,0.249955,0,0);-ms-transform:matrix(0.194905,0.003703,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.194905,0.003703,-0.004749,0.249955,0,0);}
.m10a_c00352{transform:matrix(0.195153,0.005659,-0.007247,0.249895,0,0);-ms-transform:matrix(0.195153,0.005659,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.195153,0.005659,-0.007247,0.249895,0,0);}
.me9_c00352{transform:matrix(0.195438,0.005472,-0.006997,0.249902,0,0);-ms-transform:matrix(0.195438,0.005472,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.195438,0.005472,-0.006997,0.249902,0,0);}
.m8_c00352{transform:matrix(0.195478,0.003519,-0.004499,0.249960,0,0);-ms-transform:matrix(0.195478,0.003519,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.195478,0.003519,-0.004499,0.249960,0,0);}
.m30_c00352{transform:matrix(0.196480,0.003733,-0.004749,0.249955,0,0);-ms-transform:matrix(0.196480,0.003733,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.196480,0.003733,-0.004749,0.249955,0,0);}
.m12e_c00352{transform:matrix(0.197190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197190,0.000000,0.000000,0.250000,0,0);}
.m36_c00352{transform:matrix(0.197874,0.003760,-0.004749,0.249955,0,0);-ms-transform:matrix(0.197874,0.003760,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.197874,0.003760,-0.004749,0.249955,0,0);}
.mf3_c00352{transform:matrix(0.198467,0.005557,-0.006997,0.249902,0,0);-ms-transform:matrix(0.198467,0.005557,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.198467,0.005557,-0.006997,0.249902,0,0);}
.mf8_c00352{transform:matrix(0.199043,0.004777,-0.005998,0.249928,0,0);-ms-transform:matrix(0.199043,0.004777,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.199043,0.004777,-0.005998,0.249928,0,0);}
.m63_c00352{transform:matrix(0.199169,0.003784,-0.004749,0.249955,0,0);-ms-transform:matrix(0.199169,0.003784,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.199169,0.003784,-0.004749,0.249955,0,0);}
.m10d_c00352{transform:matrix(0.199646,0.005790,-0.007247,0.249895,0,0);-ms-transform:matrix(0.199646,0.005790,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.199646,0.005790,-0.007247,0.249895,0,0);}
.mfd_c00352{transform:matrix(0.200252,0.004806,-0.005998,0.249928,0,0);-ms-transform:matrix(0.200252,0.004806,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.200252,0.004806,-0.005998,0.249928,0,0);}
.mb_c00352{transform:matrix(0.200518,0.003609,-0.004499,0.249960,0,0);-ms-transform:matrix(0.200518,0.003609,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.200518,0.003609,-0.004499,0.249960,0,0);}
.m60_c00352{transform:matrix(0.201224,0.003823,-0.004749,0.249955,0,0);-ms-transform:matrix(0.201224,0.003823,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.201224,0.003823,-0.004749,0.249955,0,0);}
.m13_c00352{transform:matrix(0.201772,0.003632,-0.004499,0.249960,0,0);-ms-transform:matrix(0.201772,0.003632,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.201772,0.003632,-0.004499,0.249960,0,0);}
.m115_c00352{transform:matrix(0.201899,0.006057,-0.007497,0.249888,0,0);-ms-transform:matrix(0.201899,0.006057,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.201899,0.006057,-0.007497,0.249888,0,0);}
.m53_c00352{transform:matrix(0.202253,0.003843,-0.004749,0.249955,0,0);-ms-transform:matrix(0.202253,0.003843,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.202253,0.003843,-0.004749,0.249955,0,0);}
.m12a_c00352{transform:matrix(0.202274,0.001618,-0.002000,0.249992,0,0);-ms-transform:matrix(0.202274,0.001618,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.202274,0.001618,-0.002000,0.249992,0,0);}
.m2_c00352{transform:matrix(0.203207,0.003658,-0.004499,0.249960,0,0);-ms-transform:matrix(0.203207,0.003658,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.203207,0.003658,-0.004499,0.249960,0,0);}
.m19_c00352{transform:matrix(0.203822,0.003669,-0.004499,0.249960,0,0);-ms-transform:matrix(0.203822,0.003669,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.203822,0.003669,-0.004499,0.249960,0,0);}
.m21_c00352{transform:matrix(0.203942,0.003671,-0.004499,0.249960,0,0);-ms-transform:matrix(0.203942,0.003671,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.203942,0.003671,-0.004499,0.249960,0,0);}
.m57_c00352{transform:matrix(0.204153,0.003879,-0.004749,0.249955,0,0);-ms-transform:matrix(0.204153,0.003879,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.204153,0.003879,-0.004749,0.249955,0,0);}
.m121_c00352{transform:matrix(0.204348,0.001635,-0.002000,0.249992,0,0);-ms-transform:matrix(0.204348,0.001635,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.204348,0.001635,-0.002000,0.249992,0,0);}
.m71_c00352{transform:matrix(0.204406,0.004701,-0.005748,0.249934,0,0);-ms-transform:matrix(0.204406,0.004701,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.204406,0.004701,-0.005748,0.249934,0,0);}
.m12f_c00352{transform:matrix(0.205745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205745,0.000000,0.000000,0.250000,0,0);}
.m10b_c00352{transform:matrix(0.206093,0.005977,-0.007247,0.249895,0,0);-ms-transform:matrix(0.206093,0.005977,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.206093,0.005977,-0.007247,0.249895,0,0);}
.ma9_c00352{transform:matrix(0.206685,0.004754,-0.005748,0.249934,0,0);-ms-transform:matrix(0.206685,0.004754,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.206685,0.004754,-0.005748,0.249934,0,0);}
.m128_c00352{transform:matrix(0.207153,0.001657,-0.002000,0.249992,0,0);-ms-transform:matrix(0.207153,0.001657,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.207153,0.001657,-0.002000,0.249992,0,0);}
.m35_c00352{transform:matrix(0.207338,0.003939,-0.004749,0.249955,0,0);-ms-transform:matrix(0.207338,0.003939,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.207338,0.003939,-0.004749,0.249955,0,0);}
.mad_c00352{transform:matrix(0.207340,0.004769,-0.005748,0.249934,0,0);-ms-transform:matrix(0.207340,0.004769,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.207340,0.004769,-0.005748,0.249934,0,0);}
.m1d_c00352{transform:matrix(0.207411,0.003733,-0.004499,0.249960,0,0);-ms-transform:matrix(0.207411,0.003733,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.207411,0.003733,-0.004499,0.249960,0,0);}
.m48_c00352{transform:matrix(0.207413,0.003941,-0.004749,0.249955,0,0);-ms-transform:matrix(0.207413,0.003941,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.207413,0.003941,-0.004749,0.249955,0,0);}
.m62_c00352{transform:matrix(0.208037,0.003953,-0.004749,0.249955,0,0);-ms-transform:matrix(0.208037,0.003953,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.208037,0.003953,-0.004749,0.249955,0,0);}
.m5e_c00352{transform:matrix(0.208397,0.003960,-0.004749,0.249955,0,0);-ms-transform:matrix(0.208397,0.003960,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.208397,0.003960,-0.004749,0.249955,0,0);}
.m65_c00352{transform:matrix(0.208567,0.003963,-0.004749,0.249955,0,0);-ms-transform:matrix(0.208567,0.003963,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.208567,0.003963,-0.004749,0.249955,0,0);}
.ma1_c00352{transform:matrix(0.208637,0.003964,-0.004749,0.249955,0,0);-ms-transform:matrix(0.208637,0.003964,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.208637,0.003964,-0.004749,0.249955,0,0);}
.mc7_c00352{transform:matrix(0.209212,0.006067,-0.007247,0.249895,0,0);-ms-transform:matrix(0.209212,0.006067,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.209212,0.006067,-0.007247,0.249895,0,0);}
.m114_c00352{transform:matrix(0.209802,0.006084,-0.007247,0.249895,0,0);-ms-transform:matrix(0.209802,0.006084,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.209802,0.006084,-0.007247,0.249895,0,0);}
.m34_c00352{transform:matrix(0.210147,0.003993,-0.004749,0.249955,0,0);-ms-transform:matrix(0.210147,0.003993,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.210147,0.003993,-0.004749,0.249955,0,0);}
.m8a_c00352{transform:matrix(0.210618,0.003370,-0.003999,0.249968,0,0);-ms-transform:matrix(0.210618,0.003370,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.210618,0.003370,-0.003999,0.249968,0,0);}
.m3_c00352{transform:matrix(0.210746,0.003793,-0.004499,0.249960,0,0);-ms-transform:matrix(0.210746,0.003793,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.210746,0.003793,-0.004499,0.249960,0,0);}
.m127_c00352{transform:matrix(0.210843,0.001687,-0.002000,0.249992,0,0);-ms-transform:matrix(0.210843,0.001687,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.210843,0.001687,-0.002000,0.249992,0,0);}
.mb6_c00352{transform:matrix(0.211154,0.005068,-0.005998,0.249928,0,0);-ms-transform:matrix(0.211154,0.005068,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.211154,0.005068,-0.005998,0.249928,0,0);}
.ma4_c00352{transform:matrix(0.211177,0.004012,-0.004749,0.249955,0,0);-ms-transform:matrix(0.211177,0.004012,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.211177,0.004012,-0.004749,0.249955,0,0);}
.mfb_c00352{transform:matrix(0.211519,0.005076,-0.005998,0.249928,0,0);-ms-transform:matrix(0.211519,0.005076,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.211519,0.005076,-0.005998,0.249928,0,0);}
.maa_c00352{transform:matrix(0.211574,0.004866,-0.005748,0.249934,0,0);-ms-transform:matrix(0.211574,0.004866,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.211574,0.004866,-0.005748,0.249934,0,0);}
.m126_c00352{transform:matrix(0.211828,0.001695,-0.002000,0.249992,0,0);-ms-transform:matrix(0.211828,0.001695,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.211828,0.001695,-0.002000,0.249992,0,0);}
.mcb_c00352{transform:matrix(0.211841,0.006143,-0.007247,0.249895,0,0);-ms-transform:matrix(0.211841,0.006143,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.211841,0.006143,-0.007247,0.249895,0,0);}
.mde_c00352{transform:matrix(0.212139,0.005091,-0.005998,0.249928,0,0);-ms-transform:matrix(0.212139,0.005091,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.212139,0.005091,-0.005998,0.249928,0,0);}
.mb4_c00352{transform:matrix(0.212449,0.005099,-0.005998,0.249928,0,0);-ms-transform:matrix(0.212449,0.005099,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.212449,0.005099,-0.005998,0.249928,0,0);}
.m5a_c00352{transform:matrix(0.212572,0.004039,-0.004749,0.249955,0,0);-ms-transform:matrix(0.212572,0.004039,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.212572,0.004039,-0.004749,0.249955,0,0);}
.m84_c00352{transform:matrix(0.212663,0.003403,-0.003999,0.249968,0,0);-ms-transform:matrix(0.212663,0.003403,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.212663,0.003403,-0.003999,0.249968,0,0);}
.m119_c00352{transform:matrix(0.212964,0.006389,-0.007497,0.249888,0,0);-ms-transform:matrix(0.212964,0.006389,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.212964,0.006389,-0.007497,0.249888,0,0);}
.m32_c00352{transform:matrix(0.213032,0.004048,-0.004749,0.249955,0,0);-ms-transform:matrix(0.213032,0.004048,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.213032,0.004048,-0.004749,0.249955,0,0);}
.m22_c00352{transform:matrix(0.213105,0.003836,-0.004499,0.249960,0,0);-ms-transform:matrix(0.213105,0.003836,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.213105,0.003836,-0.004499,0.249960,0,0);}
.m5_c00352{transform:matrix(0.213750,0.003848,-0.004499,0.249960,0,0);-ms-transform:matrix(0.213750,0.003848,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.213750,0.003848,-0.004499,0.249960,0,0);}
.m33_c00352{transform:matrix(0.213821,0.004063,-0.004749,0.249955,0,0);-ms-transform:matrix(0.213821,0.004063,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.213821,0.004063,-0.004749,0.249955,0,0);}
.mc9_c00352{transform:matrix(0.214575,0.006223,-0.007247,0.249895,0,0);-ms-transform:matrix(0.214575,0.006223,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.214575,0.006223,-0.007247,0.249895,0,0);}
.m9_c00352{transform:matrix(0.215195,0.003874,-0.004499,0.249960,0,0);-ms-transform:matrix(0.215195,0.003874,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.215195,0.003874,-0.004499,0.249960,0,0);}
.m7_c00352{transform:matrix(0.215580,0.003880,-0.004499,0.249960,0,0);-ms-transform:matrix(0.215580,0.003880,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.215580,0.003880,-0.004499,0.249960,0,0);}
.m8e_c00352{transform:matrix(0.215852,0.003454,-0.003999,0.249968,0,0);-ms-transform:matrix(0.215852,0.003454,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.215852,0.003454,-0.003999,0.249968,0,0);}
.m122_c00352{transform:matrix(0.215873,0.001727,-0.002000,0.249992,0,0);-ms-transform:matrix(0.215873,0.001727,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.215873,0.001727,-0.002000,0.249992,0,0);}
.mf9_c00352{transform:matrix(0.216273,0.005191,-0.005998,0.249928,0,0);-ms-transform:matrix(0.216273,0.005191,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.216273,0.005191,-0.005998,0.249928,0,0);}
.m3a_c00352{transform:matrix(0.216466,0.004113,-0.004749,0.249955,0,0);-ms-transform:matrix(0.216466,0.004113,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.216466,0.004113,-0.004749,0.249955,0,0);}
.mfa_c00352{transform:matrix(0.216673,0.005200,-0.005998,0.249928,0,0);-ms-transform:matrix(0.216673,0.005200,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.216673,0.005200,-0.005998,0.249928,0,0);}
.m1c_c00352{transform:matrix(0.216850,0.003903,-0.004499,0.249960,0,0);-ms-transform:matrix(0.216850,0.003903,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.216850,0.003903,-0.004499,0.249960,0,0);}
.m124_c00352{transform:matrix(0.216983,0.001736,-0.002000,0.249992,0,0);-ms-transform:matrix(0.216983,0.001736,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.216983,0.001736,-0.002000,0.249992,0,0);}
.m7f_c00352{transform:matrix(0.217442,0.005001,-0.005748,0.249934,0,0);-ms-transform:matrix(0.217442,0.005001,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.217442,0.005001,-0.005748,0.249934,0,0);}
.m10f_c00352{transform:matrix(0.217653,0.006312,-0.007247,0.249895,0,0);-ms-transform:matrix(0.217653,0.006312,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.217653,0.006312,-0.007247,0.249895,0,0);}
.m93_c00352{transform:matrix(0.217661,0.004136,-0.004749,0.249955,0,0);-ms-transform:matrix(0.217661,0.004136,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.217661,0.004136,-0.004749,0.249955,0,0);}
.mf6_c00352{transform:matrix(0.217867,0.005229,-0.005998,0.249928,0,0);-ms-transform:matrix(0.217867,0.005229,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.217867,0.005229,-0.005998,0.249928,0,0);}
.m117_c00352{transform:matrix(0.218107,0.006543,-0.007497,0.249888,0,0);-ms-transform:matrix(0.218107,0.006543,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.218107,0.006543,-0.007497,0.249888,0,0);}
.m68_c00352{transform:matrix(0.218910,0.004159,-0.004749,0.249955,0,0);-ms-transform:matrix(0.218910,0.004159,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.218910,0.004159,-0.004749,0.249955,0,0);}
.m11c_c00352{transform:matrix(0.219076,0.006572,-0.007497,0.249888,0,0);-ms-transform:matrix(0.219076,0.006572,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.219076,0.006572,-0.007497,0.249888,0,0);}
.md_c00352{transform:matrix(0.219110,0.003944,-0.004499,0.249960,0,0);-ms-transform:matrix(0.219110,0.003944,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.219110,0.003944,-0.004499,0.249960,0,0);}
.m11f_c00352{transform:matrix(0.219946,0.006598,-0.007497,0.249888,0,0);-ms-transform:matrix(0.219946,0.006598,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.219946,0.006598,-0.007497,0.249888,0,0);}
.m29_c00352{transform:matrix(0.219986,0.004400,-0.004999,0.249950,0,0);-ms-transform:matrix(0.219986,0.004400,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.219986,0.004400,-0.004999,0.249950,0,0);}
.m27_c00352{transform:matrix(0.220146,0.004403,-0.004999,0.249950,0,0);-ms-transform:matrix(0.220146,0.004403,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.220146,0.004403,-0.004999,0.249950,0,0);}
.mc4_c00352{transform:matrix(0.220307,0.005287,-0.005998,0.249928,0,0);-ms-transform:matrix(0.220307,0.005287,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.220307,0.005287,-0.005998,0.249928,0,0);}
.m111_c00352{transform:matrix(0.220752,0.006402,-0.007247,0.249895,0,0);-ms-transform:matrix(0.220752,0.006402,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.220752,0.006402,-0.007247,0.249895,0,0);}
.ma_c00352{transform:matrix(0.220754,0.003974,-0.004499,0.249960,0,0);-ms-transform:matrix(0.220754,0.003974,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.220754,0.003974,-0.004499,0.249960,0,0);}
.m31_c00352{transform:matrix(0.221105,0.004201,-0.004749,0.249955,0,0);-ms-transform:matrix(0.221105,0.004201,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.221105,0.004201,-0.004749,0.249955,0,0);}
.m120_c00352{transform:matrix(0.222033,0.001776,-0.002000,0.249992,0,0);-ms-transform:matrix(0.222033,0.001776,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.222033,0.001776,-0.002000,0.249992,0,0);}
.mbc_c00352{transform:matrix(0.222076,0.005330,-0.005998,0.249928,0,0);-ms-transform:matrix(0.222076,0.005330,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.222076,0.005330,-0.005998,0.249928,0,0);}
.m1e_c00352{transform:matrix(0.222129,0.003998,-0.004499,0.249960,0,0);-ms-transform:matrix(0.222129,0.003998,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.222129,0.003998,-0.004499,0.249960,0,0);}
.m11d_c00352{transform:matrix(0.222195,0.006666,-0.007497,0.249888,0,0);-ms-transform:matrix(0.222195,0.006666,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.222195,0.006666,-0.007497,0.249888,0,0);}
.m112_c00352{transform:matrix(0.222322,0.006447,-0.007247,0.249895,0,0);-ms-transform:matrix(0.222322,0.006447,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.222322,0.006447,-0.007247,0.249895,0,0);}
.m59_c00352{transform:matrix(0.222990,0.004237,-0.004749,0.249955,0,0);-ms-transform:matrix(0.222990,0.004237,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.222990,0.004237,-0.004749,0.249955,0,0);}
.m5c_c00352{transform:matrix(0.223140,0.004240,-0.004749,0.249955,0,0);-ms-transform:matrix(0.223140,0.004240,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.223140,0.004240,-0.004749,0.249955,0,0);}
.ma7_c00352{transform:matrix(0.223321,0.005136,-0.005748,0.249934,0,0);-ms-transform:matrix(0.223321,0.005136,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.223321,0.005136,-0.005748,0.249934,0,0);}
.mb3_c00352{transform:matrix(0.223391,0.005361,-0.005998,0.249928,0,0);-ms-transform:matrix(0.223391,0.005361,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.223391,0.005361,-0.005998,0.249928,0,0);}
.m49_c00352{transform:matrix(0.223660,0.004250,-0.004749,0.249955,0,0);-ms-transform:matrix(0.223660,0.004250,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.223660,0.004250,-0.004749,0.249955,0,0);}
.m8c_c00352{transform:matrix(0.223666,0.003579,-0.003999,0.249968,0,0);-ms-transform:matrix(0.223666,0.003579,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.223666,0.003579,-0.003999,0.249968,0,0);}
.m86_c00352{transform:matrix(0.223731,0.003580,-0.003999,0.249968,0,0);-ms-transform:matrix(0.223731,0.003580,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.223731,0.003580,-0.003999,0.249968,0,0);}
.m10c_c00352{transform:matrix(0.223916,0.006494,-0.007247,0.249895,0,0);-ms-transform:matrix(0.223916,0.006494,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.223916,0.006494,-0.007247,0.249895,0,0);}
.m3b_c00352{transform:matrix(0.223960,0.004255,-0.004749,0.249955,0,0);-ms-transform:matrix(0.223960,0.004255,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.223960,0.004255,-0.004749,0.249955,0,0);}
.mf1_c00352{transform:matrix(0.224297,0.006280,-0.006997,0.249902,0,0);-ms-transform:matrix(0.224297,0.006280,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.224297,0.006280,-0.006997,0.249902,0,0);}
.m37_c00352{transform:matrix(0.224584,0.004267,-0.004749,0.249955,0,0);-ms-transform:matrix(0.224584,0.004267,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.224584,0.004267,-0.004749,0.249955,0,0);}
.m39_c00352{transform:matrix(0.224839,0.004272,-0.004749,0.249955,0,0);-ms-transform:matrix(0.224839,0.004272,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.224839,0.004272,-0.004749,0.249955,0,0);}
.m9e_c00352{transform:matrix(0.225274,0.004280,-0.004749,0.249955,0,0);-ms-transform:matrix(0.225274,0.004280,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.225274,0.004280,-0.004749,0.249955,0,0);}
.m76_c00352{transform:matrix(0.225285,0.005182,-0.005748,0.249934,0,0);-ms-transform:matrix(0.225285,0.005182,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.225285,0.005182,-0.005748,0.249934,0,0);}
.m24_c00352{transform:matrix(0.225545,0.004511,-0.004999,0.249950,0,0);-ms-transform:matrix(0.225545,0.004511,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.225545,0.004511,-0.004999,0.249950,0,0);}
.m73_c00352{transform:matrix(0.225565,0.005188,-0.005748,0.249934,0,0);-ms-transform:matrix(0.225565,0.005188,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.225565,0.005188,-0.005748,0.249934,0,0);}
.mb1_c00352{transform:matrix(0.225975,0.005197,-0.005748,0.249934,0,0);-ms-transform:matrix(0.225975,0.005197,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.225975,0.005197,-0.005748,0.249934,0,0);}
.mf4_c00352{transform:matrix(0.226190,0.005429,-0.005998,0.249928,0,0);-ms-transform:matrix(0.226190,0.005429,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.226190,0.005429,-0.005998,0.249928,0,0);}
.meb_c00352{transform:matrix(0.226381,0.006339,-0.006997,0.249902,0,0);-ms-transform:matrix(0.226381,0.006339,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.226381,0.006339,-0.006997,0.249902,0,0);}
.m6_c00352{transform:matrix(0.226603,0.004079,-0.004499,0.249960,0,0);-ms-transform:matrix(0.226603,0.004079,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.226603,0.004079,-0.004499,0.249960,0,0);}
.m6d_c00352{transform:matrix(0.226805,0.005217,-0.005748,0.249934,0,0);-ms-transform:matrix(0.226805,0.005217,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.226805,0.005217,-0.005748,0.249934,0,0);}
.me8_c00352{transform:matrix(0.226856,0.006352,-0.006997,0.249902,0,0);-ms-transform:matrix(0.226856,0.006352,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.226856,0.006352,-0.006997,0.249902,0,0);}
.m7a_c00352{transform:matrix(0.227370,0.005230,-0.005748,0.249934,0,0);-ms-transform:matrix(0.227370,0.005230,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.227370,0.005230,-0.005748,0.249934,0,0);}
.m92_c00352{transform:matrix(0.227389,0.004320,-0.004749,0.249955,0,0);-ms-transform:matrix(0.227389,0.004320,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.227389,0.004320,-0.004749,0.249955,0,0);}
.m125_c00352{transform:matrix(0.227848,0.001823,-0.002000,0.249992,0,0);-ms-transform:matrix(0.227848,0.001823,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.227848,0.001823,-0.002000,0.249992,0,0);}
.med_c00352{transform:matrix(0.228241,0.006391,-0.006997,0.249902,0,0);-ms-transform:matrix(0.228241,0.006391,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.228241,0.006391,-0.006997,0.249902,0,0);}
.m61_c00352{transform:matrix(0.228399,0.004340,-0.004749,0.249955,0,0);-ms-transform:matrix(0.228399,0.004340,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.228399,0.004340,-0.004749,0.249955,0,0);}
.mb2_c00352{transform:matrix(0.228689,0.005489,-0.005998,0.249928,0,0);-ms-transform:matrix(0.228689,0.005489,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.228689,0.005489,-0.005998,0.249928,0,0);}
.m70_c00352{transform:matrix(0.228914,0.005265,-0.005748,0.249934,0,0);-ms-transform:matrix(0.228914,0.005265,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.228914,0.005265,-0.005748,0.249934,0,0);}
.mf5_c00352{transform:matrix(0.229264,0.005502,-0.005998,0.249928,0,0);-ms-transform:matrix(0.229264,0.005502,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.229264,0.005502,-0.005998,0.249928,0,0);}
.mef_c00352{transform:matrix(0.229950,0.006439,-0.006997,0.249902,0,0);-ms-transform:matrix(0.229950,0.006439,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.229950,0.006439,-0.006997,0.249902,0,0);}
.mdc_c00352{transform:matrix(0.230149,0.005524,-0.005998,0.249928,0,0);-ms-transform:matrix(0.230149,0.005524,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.230149,0.005524,-0.005998,0.249928,0,0);}
.mae_c00352{transform:matrix(0.230159,0.005294,-0.005748,0.249934,0,0);-ms-transform:matrix(0.230159,0.005294,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.230159,0.005294,-0.005748,0.249934,0,0);}
.m9a_c00352{transform:matrix(0.230173,0.004373,-0.004749,0.249955,0,0);-ms-transform:matrix(0.230173,0.004373,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.230173,0.004373,-0.004749,0.249955,0,0);}
.m14_c00352{transform:matrix(0.230248,0.004144,-0.004499,0.249960,0,0);-ms-transform:matrix(0.230248,0.004144,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.230248,0.004144,-0.004499,0.249960,0,0);}
.mea_c00352{transform:matrix(0.230350,0.006450,-0.006997,0.249902,0,0);-ms-transform:matrix(0.230350,0.006450,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.230350,0.006450,-0.006997,0.249902,0,0);}
.m1a_c00352{transform:matrix(0.230768,0.004154,-0.004499,0.249960,0,0);-ms-transform:matrix(0.230768,0.004154,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.230768,0.004154,-0.004499,0.249960,0,0);}
.me0_c00352{transform:matrix(0.230829,0.005540,-0.005998,0.249928,0,0);-ms-transform:matrix(0.230829,0.005540,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.230829,0.005540,-0.005998,0.249928,0,0);}
.md7_c00352{transform:matrix(0.230849,0.004617,-0.004999,0.249950,0,0);-ms-transform:matrix(0.230849,0.004617,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.230849,0.004617,-0.004999,0.249950,0,0);}
.mbb_c00352{transform:matrix(0.231133,0.005547,-0.005998,0.249928,0,0);-ms-transform:matrix(0.231133,0.005547,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.231133,0.005547,-0.005998,0.249928,0,0);}
.mb8_c00352{transform:matrix(0.231338,0.005552,-0.005998,0.249928,0,0);-ms-transform:matrix(0.231338,0.005552,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.231338,0.005552,-0.005998,0.249928,0,0);}
.m64_c00352{transform:matrix(0.231473,0.004398,-0.004749,0.249955,0,0);-ms-transform:matrix(0.231473,0.004398,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.231473,0.004398,-0.004749,0.249955,0,0);}
.me4_c00352{transform:matrix(0.231573,0.005558,-0.005998,0.249928,0,0);-ms-transform:matrix(0.231573,0.005558,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.231573,0.005558,-0.005998,0.249928,0,0);}
.m67_c00352{transform:matrix(0.231863,0.004405,-0.004749,0.249955,0,0);-ms-transform:matrix(0.231863,0.004405,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.231863,0.004405,-0.004749,0.249955,0,0);}
.m7c_c00352{transform:matrix(0.232923,0.005357,-0.005748,0.249934,0,0);-ms-transform:matrix(0.232923,0.005357,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.232923,0.005357,-0.005748,0.249934,0,0);}
.m23_c00352{transform:matrix(0.233077,0.004195,-0.004499,0.249960,0,0);-ms-transform:matrix(0.233077,0.004195,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.233077,0.004195,-0.004499,0.249960,0,0);}
.mbd_c00352{transform:matrix(0.233093,0.005594,-0.005998,0.249928,0,0);-ms-transform:matrix(0.233093,0.005594,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.233093,0.005594,-0.005998,0.249928,0,0);}
.mc0_c00352{transform:matrix(0.233183,0.005596,-0.005998,0.249928,0,0);-ms-transform:matrix(0.233183,0.005596,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.233183,0.005596,-0.005998,0.249928,0,0);}
.m2f_c00352{transform:matrix(0.233363,0.004434,-0.004749,0.249955,0,0);-ms-transform:matrix(0.233363,0.004434,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.233363,0.004434,-0.004749,0.249955,0,0);}
.m6a_c00352{transform:matrix(0.233473,0.004436,-0.004749,0.249955,0,0);-ms-transform:matrix(0.233473,0.004436,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.233473,0.004436,-0.004749,0.249955,0,0);}
.m6e_c00352{transform:matrix(0.233528,0.005371,-0.005748,0.249934,0,0);-ms-transform:matrix(0.233528,0.005371,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.233528,0.005371,-0.005748,0.249934,0,0);}
.mf7_c00352{transform:matrix(0.233693,0.005609,-0.005998,0.249928,0,0);-ms-transform:matrix(0.233693,0.005609,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.233693,0.005609,-0.005998,0.249928,0,0);}
.mbe_c00352{transform:matrix(0.233818,0.005612,-0.005998,0.249928,0,0);-ms-transform:matrix(0.233818,0.005612,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.233818,0.005612,-0.005998,0.249928,0,0);}
.mee_c00352{transform:matrix(0.234018,0.006553,-0.006997,0.249902,0,0);-ms-transform:matrix(0.234018,0.006553,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.234018,0.006553,-0.006997,0.249902,0,0);}
.m1b_c00352{transform:matrix(0.234472,0.004220,-0.004499,0.249960,0,0);-ms-transform:matrix(0.234472,0.004220,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.234472,0.004220,-0.004499,0.249960,0,0);}
.m25_c00352{transform:matrix(0.235473,0.004709,-0.004999,0.249950,0,0);-ms-transform:matrix(0.235473,0.004709,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.235473,0.004709,-0.004999,0.249950,0,0);}
.m129_c00352{transform:matrix(0.235642,0.001885,-0.002000,0.249992,0,0);-ms-transform:matrix(0.235642,0.001885,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.235642,0.001885,-0.002000,0.249992,0,0);}
.m66_c00352{transform:matrix(0.235722,0.004479,-0.004749,0.249955,0,0);-ms-transform:matrix(0.235722,0.004479,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.235722,0.004479,-0.004749,0.249955,0,0);}
.m4b_c00352{transform:matrix(0.236857,0.004500,-0.004749,0.249955,0,0);-ms-transform:matrix(0.236857,0.004500,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.236857,0.004500,-0.004749,0.249955,0,0);}
.mc6_c00352{transform:matrix(0.237225,0.006880,-0.007247,0.249895,0,0);-ms-transform:matrix(0.237225,0.006880,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.237225,0.006880,-0.007247,0.249895,0,0);}
.m72_c00352{transform:matrix(0.237262,0.005457,-0.005748,0.249934,0,0);-ms-transform:matrix(0.237262,0.005457,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.237262,0.005457,-0.005748,0.249934,0,0);}
.ma6_c00352{transform:matrix(0.237477,0.004512,-0.004749,0.249955,0,0);-ms-transform:matrix(0.237477,0.004512,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.237477,0.004512,-0.004749,0.249955,0,0);}
.m2b_c00352{transform:matrix(0.237707,0.004754,-0.004999,0.249950,0,0);-ms-transform:matrix(0.237707,0.004754,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.237707,0.004754,-0.004999,0.249950,0,0);}
.mb7_c00352{transform:matrix(0.237772,0.005707,-0.005998,0.249928,0,0);-ms-transform:matrix(0.237772,0.005707,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.237772,0.005707,-0.005998,0.249928,0,0);}
.m6f_c00352{transform:matrix(0.238162,0.005478,-0.005748,0.249934,0,0);-ms-transform:matrix(0.238162,0.005478,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.238162,0.005478,-0.005748,0.249934,0,0);}
.mb5_c00352{transform:matrix(0.238471,0.005723,-0.005998,0.249928,0,0);-ms-transform:matrix(0.238471,0.005723,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.238471,0.005723,-0.005998,0.249928,0,0);}
.m98_c00352{transform:matrix(0.238492,0.004531,-0.004749,0.249955,0,0);-ms-transform:matrix(0.238492,0.004531,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.238492,0.004531,-0.004749,0.249955,0,0);}
.m77_c00352{transform:matrix(0.238507,0.005486,-0.005748,0.249934,0,0);-ms-transform:matrix(0.238507,0.005486,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.238507,0.005486,-0.005748,0.249934,0,0);}
.m74_c00352{transform:matrix(0.238737,0.005491,-0.005748,0.249934,0,0);-ms-transform:matrix(0.238737,0.005491,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.238737,0.005491,-0.005748,0.249934,0,0);}
.m9c_c00352{transform:matrix(0.238902,0.004539,-0.004749,0.249955,0,0);-ms-transform:matrix(0.238902,0.004539,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.238902,0.004539,-0.004749,0.249955,0,0);}
.mc2_c00352{transform:matrix(0.239311,0.005743,-0.005998,0.249928,0,0);-ms-transform:matrix(0.239311,0.005743,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.239311,0.005743,-0.005998,0.249928,0,0);}
.m1f_c00352{transform:matrix(0.239376,0.004309,-0.004499,0.249960,0,0);-ms-transform:matrix(0.239376,0.004309,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.239376,0.004309,-0.004499,0.249960,0,0);}
.m55_c00352{transform:matrix(0.240102,0.004562,-0.004749,0.249955,0,0);-ms-transform:matrix(0.240102,0.004562,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.240102,0.004562,-0.004749,0.249955,0,0);}
.mf2_c00352{transform:matrix(0.240236,0.006727,-0.006997,0.249902,0,0);-ms-transform:matrix(0.240236,0.006727,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.240236,0.006727,-0.006997,0.249902,0,0);}
.m2d_c00352{transform:matrix(0.240402,0.004808,-0.004999,0.249950,0,0);-ms-transform:matrix(0.240402,0.004808,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.240402,0.004808,-0.004999,0.249950,0,0);}
.mc1_c00352{transform:matrix(0.240686,0.005776,-0.005998,0.249928,0,0);-ms-transform:matrix(0.240686,0.005776,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.240686,0.005776,-0.005998,0.249928,0,0);}
.mc3_c00352{transform:matrix(0.240756,0.005778,-0.005998,0.249928,0,0);-ms-transform:matrix(0.240756,0.005778,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.240756,0.005778,-0.005998,0.249928,0,0);}
.mca_c00352{transform:matrix(0.240864,0.006985,-0.007247,0.249895,0,0);-ms-transform:matrix(0.240864,0.006985,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.240864,0.006985,-0.007247,0.249895,0,0);}
.maf_c00352{transform:matrix(0.241006,0.005543,-0.005748,0.249934,0,0);-ms-transform:matrix(0.241006,0.005543,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.241006,0.005543,-0.005748,0.249934,0,0);}
.m4c_c00352{transform:matrix(0.241186,0.004583,-0.004749,0.249955,0,0);-ms-transform:matrix(0.241186,0.004583,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.241186,0.004583,-0.004749,0.249955,0,0);}
.mab_c00352{transform:matrix(0.241496,0.005554,-0.005748,0.249934,0,0);-ms-transform:matrix(0.241496,0.005554,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.241496,0.005554,-0.005748,0.249934,0,0);}
.ma2_c00352{transform:matrix(0.242386,0.004605,-0.004749,0.249955,0,0);-ms-transform:matrix(0.242386,0.004605,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.242386,0.004605,-0.004749,0.249955,0,0);}
.me6_c00352{transform:matrix(0.242475,0.005819,-0.005998,0.249928,0,0);-ms-transform:matrix(0.242475,0.005819,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.242475,0.005819,-0.005998,0.249928,0,0);}
.mf0_c00352{transform:matrix(0.242495,0.006790,-0.006997,0.249902,0,0);-ms-transform:matrix(0.242495,0.006790,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.242495,0.006790,-0.006997,0.249902,0,0);}
.mc5_c00352{transform:matrix(0.242933,0.007045,-0.007247,0.249895,0,0);-ms-transform:matrix(0.242933,0.007045,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.242933,0.007045,-0.007247,0.249895,0,0);}
.m2e_c00352{transform:matrix(0.243436,0.004869,-0.004999,0.249950,0,0);-ms-transform:matrix(0.243436,0.004869,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.243436,0.004869,-0.004999,0.249950,0,0);}
.mf_c00352{transform:matrix(0.244055,0.004393,-0.004499,0.249960,0,0);-ms-transform:matrix(0.244055,0.004393,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.244055,0.004393,-0.004499,0.249960,0,0);}
.m11_c00352{transform:matrix(0.244215,0.004396,-0.004499,0.249960,0,0);-ms-transform:matrix(0.244215,0.004396,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.244215,0.004396,-0.004499,0.249960,0,0);}
.m80_c00352{transform:matrix(0.244705,0.005628,-0.005748,0.249934,0,0);-ms-transform:matrix(0.244705,0.005628,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.244705,0.005628,-0.005748,0.249934,0,0);}
.mcf_c00352{transform:matrix(0.245122,0.007109,-0.007247,0.249895,0,0);-ms-transform:matrix(0.245122,0.007109,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.245122,0.007109,-0.007247,0.249895,0,0);}
.me7_c00352{transform:matrix(0.245134,0.005883,-0.005998,0.249928,0,0);-ms-transform:matrix(0.245134,0.005883,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.245134,0.005883,-0.005998,0.249928,0,0);}
.m81_c00352{transform:matrix(0.245165,0.005639,-0.005748,0.249934,0,0);-ms-transform:matrix(0.245165,0.005639,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.245165,0.005639,-0.005748,0.249934,0,0);}
.m51_c00352{transform:matrix(0.245946,0.004673,-0.004749,0.249955,0,0);-ms-transform:matrix(0.245946,0.004673,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.245946,0.004673,-0.004749,0.249955,0,0);}
.mfc_c00352{transform:matrix(0.246584,0.005918,-0.005998,0.249928,0,0);-ms-transform:matrix(0.246584,0.005918,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.246584,0.005918,-0.005998,0.249928,0,0);}
.m58_c00352{transform:matrix(0.246585,0.004685,-0.004749,0.249955,0,0);-ms-transform:matrix(0.246585,0.004685,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.246585,0.004685,-0.004749,0.249955,0,0);}
.me1_c00352{transform:matrix(0.246659,0.005920,-0.005998,0.249928,0,0);-ms-transform:matrix(0.246659,0.005920,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.246659,0.005920,-0.005998,0.249928,0,0);}
.mda_c00352{transform:matrix(0.247079,0.005930,-0.005998,0.249928,0,0);-ms-transform:matrix(0.247079,0.005930,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.247079,0.005930,-0.005998,0.249928,0,0);}
.m45_c00352{transform:matrix(0.247310,0.004699,-0.004749,0.249955,0,0);-ms-transform:matrix(0.247310,0.004699,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.247310,0.004699,-0.004749,0.249955,0,0);}
.ma5_c00352{transform:matrix(0.248295,0.004718,-0.004749,0.249955,0,0);-ms-transform:matrix(0.248295,0.004718,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.248295,0.004718,-0.004749,0.249955,0,0);}
.m95_c00352{transform:matrix(0.248880,0.004729,-0.004749,0.249955,0,0);-ms-transform:matrix(0.248880,0.004729,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.248880,0.004729,-0.004749,0.249955,0,0);}
.mcd_c00352{transform:matrix(0.249150,0.007225,-0.007247,0.249895,0,0);-ms-transform:matrix(0.249150,0.007225,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.249150,0.007225,-0.007247,0.249895,0,0);}
.m2c_c00352{transform:matrix(0.249195,0.004984,-0.004999,0.249950,0,0);-ms-transform:matrix(0.249195,0.004984,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.249195,0.004984,-0.004999,0.249950,0,0);}
.mcc_c00352{transform:matrix(0.249415,0.007233,-0.007247,0.249895,0,0);-ms-transform:matrix(0.249415,0.007233,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.249415,0.007233,-0.007247,0.249895,0,0);}
.ma3_c00352{transform:matrix(0.249595,0.004742,-0.004749,0.249955,0,0);-ms-transform:matrix(0.249595,0.004742,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.249595,0.004742,-0.004749,0.249955,0,0);}
.m8f_c00352{transform:matrix(0.249970,0.004749,-0.004749,0.249955,0,0);-ms-transform:matrix(0.249970,0.004749,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.249970,0.004749,-0.004749,0.249955,0,0);}
.m4a_c00352{transform:matrix(0.250380,0.004757,-0.004749,0.249955,0,0);-ms-transform:matrix(0.250380,0.004757,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.250380,0.004757,-0.004749,0.249955,0,0);}
.mce_c00352{transform:matrix(0.250600,0.007267,-0.007247,0.249895,0,0);-ms-transform:matrix(0.250600,0.007267,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.250600,0.007267,-0.007247,0.249895,0,0);}
.m5d_c00352{transform:matrix(0.251235,0.004773,-0.004749,0.249955,0,0);-ms-transform:matrix(0.251235,0.004773,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.251235,0.004773,-0.004749,0.249955,0,0);}
.m54_c00352{transform:matrix(0.251375,0.004776,-0.004749,0.249955,0,0);-ms-transform:matrix(0.251375,0.004776,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.251375,0.004776,-0.004749,0.249955,0,0);}
.m26_c00352{transform:matrix(0.251510,0.005030,-0.004999,0.249950,0,0);-ms-transform:matrix(0.251510,0.005030,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.251510,0.005030,-0.004999,0.249950,0,0);}
.ma0_c00352{transform:matrix(0.251645,0.004781,-0.004749,0.249955,0,0);-ms-transform:matrix(0.251645,0.004781,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.251645,0.004781,-0.004749,0.249955,0,0);}
.m2a_c00352{transform:matrix(0.251825,0.005036,-0.004999,0.249950,0,0);-ms-transform:matrix(0.251825,0.005036,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.251825,0.005036,-0.004999,0.249950,0,0);}
.m75_c00352{transform:matrix(0.252203,0.005801,-0.005748,0.249934,0,0);-ms-transform:matrix(0.252203,0.005801,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.252203,0.005801,-0.005748,0.249934,0,0);}
.m5b_c00352{transform:matrix(0.252324,0.004794,-0.004749,0.249955,0,0);-ms-transform:matrix(0.252324,0.004794,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.252324,0.004794,-0.004749,0.249955,0,0);}
.m7e_c00352{transform:matrix(0.252523,0.005808,-0.005748,0.249934,0,0);-ms-transform:matrix(0.252523,0.005808,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.252523,0.005808,-0.005748,0.249934,0,0);}
.md0_c00352{transform:matrix(0.252874,0.005057,-0.004999,0.249950,0,0);-ms-transform:matrix(0.252874,0.005057,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.252874,0.005057,-0.004999,0.249950,0,0);}
.mb0_c00352{transform:matrix(0.253398,0.005828,-0.005748,0.249934,0,0);-ms-transform:matrix(0.253398,0.005828,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.253398,0.005828,-0.005748,0.249934,0,0);}
.m9d_c00352{transform:matrix(0.253464,0.004816,-0.004749,0.249955,0,0);-ms-transform:matrix(0.253464,0.004816,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.253464,0.004816,-0.004749,0.249955,0,0);}
.mc8_c00352{transform:matrix(0.253658,0.007356,-0.007247,0.249895,0,0);-ms-transform:matrix(0.253658,0.007356,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.253658,0.007356,-0.007247,0.249895,0,0);}
.ma8_c00352{transform:matrix(0.253698,0.005835,-0.005748,0.249934,0,0);-ms-transform:matrix(0.253698,0.005835,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.253698,0.005835,-0.005748,0.249934,0,0);}
.m94_c00352{transform:matrix(0.254124,0.004828,-0.004749,0.249955,0,0);-ms-transform:matrix(0.254124,0.004828,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.254124,0.004828,-0.004749,0.249955,0,0);}
.m50_c00352{transform:matrix(0.254379,0.004833,-0.004749,0.249955,0,0);-ms-transform:matrix(0.254379,0.004833,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.254379,0.004833,-0.004749,0.249955,0,0);}
.m78_c00352{transform:matrix(0.254618,0.005856,-0.005748,0.249934,0,0);-ms-transform:matrix(0.254618,0.005856,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.254618,0.005856,-0.005748,0.249934,0,0);}
.m4e_c00352{transform:matrix(0.254759,0.004840,-0.004749,0.249955,0,0);-ms-transform:matrix(0.254759,0.004840,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.254759,0.004840,-0.004749,0.249955,0,0);}
.md5_c00352{transform:matrix(0.255389,0.005108,-0.004999,0.249950,0,0);-ms-transform:matrix(0.255389,0.005108,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.255389,0.005108,-0.004999,0.249950,0,0);}
.mdd_c00352{transform:matrix(0.255861,0.006141,-0.005998,0.249928,0,0);-ms-transform:matrix(0.255861,0.006141,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.255861,0.006141,-0.005998,0.249928,0,0);}
.m28_c00352{transform:matrix(0.255909,0.005118,-0.004999,0.249950,0,0);-ms-transform:matrix(0.255909,0.005118,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.255909,0.005118,-0.004999,0.249950,0,0);}
.m52_c00352{transform:matrix(0.255924,0.004863,-0.004749,0.249955,0,0);-ms-transform:matrix(0.255924,0.004863,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.255924,0.004863,-0.004749,0.249955,0,0);}
.m4d_c00352{transform:matrix(0.256769,0.004879,-0.004749,0.249955,0,0);-ms-transform:matrix(0.256769,0.004879,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.256769,0.004879,-0.004749,0.249955,0,0);}
.m47_c00352{transform:matrix(0.257404,0.004891,-0.004749,0.249955,0,0);-ms-transform:matrix(0.257404,0.004891,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.257404,0.004891,-0.004749,0.249955,0,0);}
.m56_c00352{transform:matrix(0.257693,0.004896,-0.004749,0.249955,0,0);-ms-transform:matrix(0.257693,0.004896,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.257693,0.004896,-0.004749,0.249955,0,0);}
.m41_c00352{transform:matrix(0.257893,0.004900,-0.004749,0.249955,0,0);-ms-transform:matrix(0.257893,0.004900,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.257893,0.004900,-0.004749,0.249955,0,0);}
.md3_c00352{transform:matrix(0.258578,0.005172,-0.004999,0.249950,0,0);-ms-transform:matrix(0.258578,0.005172,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.258578,0.005172,-0.004999,0.249950,0,0);}
.mba_c00352{transform:matrix(0.258950,0.006215,-0.005998,0.249928,0,0);-ms-transform:matrix(0.258950,0.006215,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.258950,0.006215,-0.005998,0.249928,0,0);}
.mdb_c00352{transform:matrix(0.259095,0.006218,-0.005998,0.249928,0,0);-ms-transform:matrix(0.259095,0.006218,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.259095,0.006218,-0.005998,0.249928,0,0);}
.me2_c00352{transform:matrix(0.259205,0.006221,-0.005998,0.249928,0,0);-ms-transform:matrix(0.259205,0.006221,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.259205,0.006221,-0.005998,0.249928,0,0);}
.mac_c00352{transform:matrix(0.259511,0.005969,-0.005748,0.249934,0,0);-ms-transform:matrix(0.259511,0.005969,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.259511,0.005969,-0.005748,0.249934,0,0);}
.m9b_c00352{transform:matrix(0.259908,0.004938,-0.004749,0.249955,0,0);-ms-transform:matrix(0.259908,0.004938,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.259908,0.004938,-0.004749,0.249955,0,0);}
.m9f_c00352{transform:matrix(0.260393,0.004947,-0.004749,0.249955,0,0);-ms-transform:matrix(0.260393,0.004947,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.260393,0.004947,-0.004749,0.249955,0,0);}
.m97_c00352{transform:matrix(0.260438,0.004948,-0.004749,0.249955,0,0);-ms-transform:matrix(0.260438,0.004948,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.260438,0.004948,-0.004749,0.249955,0,0);}
.md1_c00352{transform:matrix(0.260528,0.005211,-0.004999,0.249950,0,0);-ms-transform:matrix(0.260528,0.005211,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.260528,0.005211,-0.004999,0.249950,0,0);}
.m99_c00352{transform:matrix(0.260993,0.004959,-0.004749,0.249955,0,0);-ms-transform:matrix(0.260993,0.004959,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.260993,0.004959,-0.004749,0.249955,0,0);}
.mb9_c00352{transform:matrix(0.261050,0.006265,-0.005998,0.249928,0,0);-ms-transform:matrix(0.261050,0.006265,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.261050,0.006265,-0.005998,0.249928,0,0);}
.m40_c00352{transform:matrix(0.263312,0.005003,-0.004749,0.249955,0,0);-ms-transform:matrix(0.263312,0.005003,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.263312,0.005003,-0.004749,0.249955,0,0);}
.m15_c00352{transform:matrix(0.265597,0.004781,-0.004499,0.249960,0,0);-ms-transform:matrix(0.265597,0.004781,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.265597,0.004781,-0.004499,0.249960,0,0);}
.md8_c00352{transform:matrix(0.266942,0.005339,-0.004999,0.249950,0,0);-ms-transform:matrix(0.266942,0.005339,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.266942,0.005339,-0.004999,0.249950,0,0);}
.m7d_c00352{transform:matrix(0.267104,0.006143,-0.005748,0.249934,0,0);-ms-transform:matrix(0.267104,0.006143,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.267104,0.006143,-0.005748,0.249934,0,0);}
.mdf_c00352{transform:matrix(0.267448,0.006419,-0.005998,0.249928,0,0);-ms-transform:matrix(0.267448,0.006419,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.267448,0.006419,-0.005998,0.249928,0,0);}
.mc_c00352{transform:matrix(0.267867,0.004822,-0.004499,0.249960,0,0);-ms-transform:matrix(0.267867,0.004822,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.267867,0.004822,-0.004499,0.249960,0,0);}
.md2_c00352{transform:matrix(0.268026,0.005361,-0.004999,0.249950,0,0);-ms-transform:matrix(0.268026,0.005361,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.268026,0.005361,-0.004999,0.249950,0,0);}
.me5_c00352{transform:matrix(0.268358,0.006441,-0.005998,0.249928,0,0);-ms-transform:matrix(0.268358,0.006441,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.268358,0.006441,-0.005998,0.249928,0,0);}
.m96_c00352{transform:matrix(0.269376,0.005118,-0.004749,0.249955,0,0);-ms-transform:matrix(0.269376,0.005118,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.269376,0.005118,-0.004749,0.249955,0,0);}
.m3d_c00352{transform:matrix(0.270231,0.005134,-0.004749,0.249955,0,0);-ms-transform:matrix(0.270231,0.005134,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.270231,0.005134,-0.004749,0.249955,0,0);}
.m3f_c00352{transform:matrix(0.271261,0.005154,-0.004749,0.249955,0,0);-ms-transform:matrix(0.271261,0.005154,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.271261,0.005154,-0.004749,0.249955,0,0);}
.md6_c00352{transform:matrix(0.273580,0.005472,-0.004999,0.249950,0,0);-ms-transform:matrix(0.273580,0.005472,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.273580,0.005472,-0.004999,0.249950,0,0);}
.m90_c00352{transform:matrix(0.273601,0.005198,-0.004749,0.249955,0,0);-ms-transform:matrix(0.273601,0.005198,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.273601,0.005198,-0.004749,0.249955,0,0);}
.m91_c00352{transform:matrix(0.274231,0.005210,-0.004749,0.249955,0,0);-ms-transform:matrix(0.274231,0.005210,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.274231,0.005210,-0.004749,0.249955,0,0);}
.m7b_c00352{transform:matrix(0.274247,0.006308,-0.005748,0.249934,0,0);-ms-transform:matrix(0.274247,0.006308,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.274247,0.006308,-0.005748,0.249934,0,0);}
.m12_c00352{transform:matrix(0.275335,0.004956,-0.004499,0.249960,0,0);-ms-transform:matrix(0.275335,0.004956,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.275335,0.004956,-0.004499,0.249960,0,0);}
.m3e_c00352{transform:matrix(0.276125,0.005246,-0.004749,0.249955,0,0);-ms-transform:matrix(0.276125,0.005246,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.276125,0.005246,-0.004749,0.249955,0,0);}
.md4_c00352{transform:matrix(0.277460,0.005549,-0.004999,0.249950,0,0);-ms-transform:matrix(0.277460,0.005549,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.277460,0.005549,-0.004999,0.249950,0,0);}
.m10_c00352{transform:matrix(0.278620,0.005015,-0.004499,0.249960,0,0);-ms-transform:matrix(0.278620,0.005015,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.278620,0.005015,-0.004499,0.249960,0,0);}
.md9_c00352{transform:matrix(0.278939,0.005579,-0.004999,0.249950,0,0);-ms-transform:matrix(0.278939,0.005579,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.278939,0.005579,-0.004999,0.249950,0,0);}
.me3_c00352{transform:matrix(0.280369,0.006729,-0.005998,0.249928,0,0);-ms-transform:matrix(0.280369,0.006729,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.280369,0.006729,-0.005998,0.249928,0,0);}
.m79_c00352{transform:matrix(0.281296,0.006470,-0.005748,0.249934,0,0);-ms-transform:matrix(0.281296,0.006470,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.281296,0.006470,-0.005748,0.249934,0,0);}
.me_c00352{transform:matrix(0.282974,0.005094,-0.004499,0.249960,0,0);-ms-transform:matrix(0.282974,0.005094,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.282974,0.005094,-0.004499,0.249960,0,0);}
.m3c_c00352{transform:matrix(0.283384,0.005384,-0.004749,0.249955,0,0);-ms-transform:matrix(0.283384,0.005384,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.283384,0.005384,-0.004749,0.249955,0,0);}
.m16_c00352{transform:matrix(0.284769,0.005126,-0.004499,0.249960,0,0);-ms-transform:matrix(0.284769,0.005126,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.284769,0.005126,-0.004499,0.249960,0,0);}
.m43_c00352{transform:matrix(0.295977,0.005624,-0.004749,0.249955,0,0);-ms-transform:matrix(0.295977,0.005624,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.295977,0.005624,-0.004749,0.249955,0,0);}
.m42_c00352{transform:matrix(0.296706,0.005637,-0.004749,0.249955,0,0);-ms-transform:matrix(0.296706,0.005637,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.296706,0.005637,-0.004749,0.249955,0,0);}
.m46_c00352{transform:matrix(0.297646,0.005655,-0.004749,0.249955,0,0);-ms-transform:matrix(0.297646,0.005655,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.297646,0.005655,-0.004749,0.249955,0,0);}
.m44_c00352{transform:matrix(0.304755,0.005790,-0.004749,0.249955,0,0);-ms-transform:matrix(0.304755,0.005790,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.304755,0.005790,-0.004749,0.249955,0,0);}
.m0_c00352{transform:matrix(0.722040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.722040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.722040,0.000000,0.000000,0.250000,0,0);}
.m12c_c00352{transform:matrix(1.291830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.291830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.291830,0.000000,0.000000,0.250000,0,0);}
.m12b_c00352{transform:matrix(2.862330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.862330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.862330,0.000000,0.000000,0.250000,0,0);}
.v0_c00352{vertical-align:0.000000px;}
.ls0_c00352{letter-spacing:0.000000px;}
.sc__c00352{text-shadow:none;}
.sc0_c00352{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__c00352{-webkit-text-stroke:0px transparent;}
.sc0_c00352{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00352{word-spacing:0.000000px;}
.fc0_c00352{color:transparent;}
.fs19_c00352{font-size:36.000000px;}
.fs0_c00352{font-size:42.000000px;}
.fs7_c00352{font-size:66.011912px;}
.fs3_c00352{font-size:72.011663px;}
.fsd_c00352{font-size:72.012995px;}
.fs12_c00352{font-size:72.014399px;}
.fsb_c00352{font-size:72.019041px;}
.fs13_c00352{font-size:72.020733px;}
.fs8_c00352{font-size:78.014078px;}
.fs5_c00352{font-size:78.015598px;}
.fse_c00352{font-size:78.020628px;}
.fsf_c00352{font-size:78.022461px;}
.fs11_c00352{font-size:78.032792px;}
.fs1_c00352{font-size:84.000000px;}
.fs4_c00352{font-size:84.013607px;}
.fs6_c00352{font-size:84.015161px;}
.fsa_c00352{font-size:84.022215px;}
.fs10_c00352{font-size:84.024189px;}
.fs14_c00352{font-size:84.032922px;}
.fs18_c00352{font-size:90.002880px;}
.fsc_c00352{font-size:90.011519px;}
.fs2_c00352{font-size:90.014579px;}
.fs9_c00352{font-size:90.016244px;}
.fs16_c00352{font-size:90.037837px;}
.fs17_c00352{font-size:90.040491px;}
.fs1a_c00352{font-size:96.000000px;}
.fs1b_c00352{font-size:108.015605px;}
.fs15_c00352{font-size:108.031100px;}
.y0_c00352{bottom:0.000000px;}
.y137_c00352{bottom:87.486000px;}
.y138_c00352{bottom:88.203340px;}
.y139_c00352{bottom:89.489280px;}
.y13a_c00352{bottom:90.783405px;}
.y13b_c00352{bottom:91.544835px;}
.y13c_c00352{bottom:92.099766px;}
.y13d_c00352{bottom:92.484637px;}
.y13e_c00352{bottom:93.036126px;}
.y136_c00352{bottom:127.402500px;}
.y135_c00352{bottom:127.945500px;}
.y134_c00352{bottom:128.901000px;}
.y133_c00352{bottom:129.466500px;}
.y132_c00352{bottom:130.210500px;}
.y131_c00352{bottom:132.102000px;}
.y130_c00352{bottom:133.900500px;}
.y12f_c00352{bottom:134.463000px;}
.y12e_c00352{bottom:167.277000px;}
.y12d_c00352{bottom:172.912860px;}
.y12c_c00352{bottom:173.085900px;}
.y12b_c00352{bottom:173.612544px;}
.y12a_c00352{bottom:174.155028px;}
.y129_c00352{bottom:174.612936px;}
.y128_c00352{bottom:175.676040px;}
.y127_c00352{bottom:176.471400px;}
.y126_c00352{bottom:176.730660px;}
.y125_c00352{bottom:177.354972px;}
.y124_c00352{bottom:177.531780px;}
.y123_c00352{bottom:178.471500px;}
.y122_c00352{bottom:210.007245px;}
.y121_c00352{bottom:211.017360px;}
.y120_c00352{bottom:214.051215px;}
.y11f_c00352{bottom:216.082110px;}
.y11e_c00352{bottom:217.053435px;}
.y11d_c00352{bottom:218.671725px;}
.y11c_c00352{bottom:221.365785px;}
.y11b_c00352{bottom:222.345705px;}
.y11a_c00352{bottom:225.592365px;}
.y119_c00352{bottom:226.564005px;}
.y118_c00352{bottom:227.883000px;}
.y117_c00352{bottom:243.226086px;}
.y116_c00352{bottom:244.193874px;}
.y115_c00352{bottom:247.126296px;}
.y114_c00352{bottom:250.003908px;}
.y113_c00352{bottom:250.990749px;}
.y112_c00352{bottom:253.553508px;}
.y111_c00352{bottom:254.548614px;}
.y110_c00352{bottom:255.854745px;}
.y10f_c00352{bottom:259.027722px;}
.y10e_c00352{bottom:260.589415px;}
.y10d_c00352{bottom:262.716000px;}
.y10c_c00352{bottom:280.012056px;}
.y10b_c00352{bottom:281.370708px;}
.y10a_c00352{bottom:282.220932px;}
.y109_c00352{bottom:282.588840px;}
.y108_c00352{bottom:283.700796px;}
.y107_c00352{bottom:284.187948px;}
.y106_c00352{bottom:284.421648px;}
.y105_c00352{bottom:284.677572px;}
.y104_c00352{bottom:285.753840px;}
.y103_c00352{bottom:286.118772px;}
.y102_c00352{bottom:287.065668px;}
.y101_c00352{bottom:287.539596px;}
.y100_c00352{bottom:315.980940px;}
.yff_c00352{bottom:319.442448px;}
.yfe_c00352{bottom:320.272428px;}
.yfd_c00352{bottom:321.063240px;}
.yfc_c00352{bottom:322.386636px;}
.yfb_c00352{bottom:323.223420px;}
.yfa_c00352{bottom:324.014052px;}
.yf9_c00352{bottom:326.134596px;}
.yf8_c00352{bottom:327.470196px;}
.yf7_c00352{bottom:330.087972px;}
.yf6_c00352{bottom:332.917500px;}
.yf5_c00352{bottom:351.208896px;}
.yf4_c00352{bottom:354.324078px;}
.yf3_c00352{bottom:355.595544px;}
.yf2_c00352{bottom:356.211054px;}
.yf1_c00352{bottom:358.083708px;}
.yf0_c00352{bottom:360.256158px;}
.yef_c00352{bottom:363.025218px;}
.yee_c00352{bottom:363.970470px;}
.yed_c00352{bottom:366.465354px;}
.yec_c00352{bottom:369.185022px;}
.yeb_c00352{bottom:370.085082px;}
.yea_c00352{bottom:370.710000px;}
.ye9_c00352{bottom:387.775872px;}
.ye8_c00352{bottom:388.864512px;}
.ye7_c00352{bottom:390.720204px;}
.ye6_c00352{bottom:391.530600px;}
.ye5_c00352{bottom:394.461828px;}
.ye4_c00352{bottom:396.069948px;}
.ye3_c00352{bottom:397.146564px;}
.ye2_c00352{bottom:397.937196px;}
.ye1_c00352{bottom:399.816792px;}
.ye0_c00352{bottom:400.333644px;}
.ydf_c00352{bottom:400.884300px;}
.yde_c00352{bottom:401.630832px;}
.ydd_c00352{bottom:402.703704px;}
.ydc_c00352{bottom:404.464500px;}
.ydb_c00352{bottom:426.100140px;}
.yda_c00352{bottom:427.699740px;}
.yd9_c00352{bottom:428.358960px;}
.yd8_c00352{bottom:429.931440px;}
.yd7_c00352{bottom:430.378590px;}
.yd6_c00352{bottom:432.362700px;}
.yd5_c00352{bottom:433.680780px;}
.yd4_c00352{bottom:435.446760px;}
.yd3_c00352{bottom:437.405160px;}
.yd2_c00352{bottom:438.483000px;}
.yd1_c00352{bottom:459.201203px;}
.yd0_c00352{bottom:461.479907px;}
.ycf_c00352{bottom:464.364000px;}
.yce_c00352{bottom:466.667107px;}
.ycd_c00352{bottom:467.607665px;}
.ycc_c00352{bottom:469.502872px;}
.ycb_c00352{bottom:470.504025px;}
.yca_c00352{bottom:473.741208px;}
.yc9_c00352{bottom:474.664539px;}
.yc8_c00352{bottom:476.564402px;}
.yc7_c00352{bottom:478.719000px;}
.yc6_c00352{bottom:495.334308px;}
.yc5_c00352{bottom:497.072700px;}
.yc4_c00352{bottom:498.512364px;}
.yc3_c00352{bottom:499.965948px;}
.yc2_c00352{bottom:501.099600px;}
.yc1_c00352{bottom:501.539064px;}
.yc0_c00352{bottom:502.683900px;}
.ybf_c00352{bottom:504.080640px;}
.ybe_c00352{bottom:533.169264px;}
.ybd_c00352{bottom:534.497124px;}
.ybc_c00352{bottom:536.908872px;}
.ybb_c00352{bottom:539.605344px;}
.yba_c00352{bottom:540.661440px;}
.yb9_c00352{bottom:542.252172px;}
.yb8_c00352{bottom:543.036180px;}
.yb7_c00352{bottom:544.648620px;}
.yb6_c00352{bottom:545.428020px;}
.yb5_c00352{bottom:546.224844px;}
.yb4_c00352{bottom:547.027500px;}
.yb3_c00352{bottom:567.887895px;}
.yb2_c00352{bottom:570.476913px;}
.yb1_c00352{bottom:572.030138px;}
.yb0_c00352{bottom:573.067794px;}
.yaf_c00352{bottom:573.819307px;}
.yae_c00352{bottom:576.603354px;}
.yad_c00352{bottom:578.162375px;}
.yac_c00352{bottom:578.918511px;}
.yab_c00352{bottom:579.677063px;}
.yaa_c00352{bottom:582.159683px;}
.ya9_c00352{bottom:582.933000px;}
.ya8_c00352{bottom:603.247953px;}
.ya7_c00352{bottom:605.660743px;}
.ya6_c00352{bottom:606.409181px;}
.ya5_c00352{bottom:608.155986px;}
.ya4_c00352{bottom:609.857119px;}
.ya3_c00352{bottom:610.582065px;}
.ya2_c00352{bottom:612.542905px;}
.ya1_c00352{bottom:614.989950px;}
.ya0_c00352{bottom:615.703021px;}
.y9f_c00352{bottom:618.089585px;}
.y9e_c00352{bottom:618.565796px;}
.y9d_c00352{bottom:639.468170px;}
.y9c_c00352{bottom:640.079808px;}
.y9b_c00352{bottom:641.341646px;}
.y9a_c00352{bottom:641.983465px;}
.y99_c00352{bottom:643.261377px;}
.y98_c00352{bottom:644.115436px;}
.y97_c00352{bottom:644.749875px;}
.y96_c00352{bottom:645.600515px;}
.y95_c00352{bottom:646.843799px;}
.y94_c00352{bottom:647.480004px;}
.y93_c00352{bottom:649.373031px;}
.y92_c00352{bottom:651.029822px;}
.y91_c00352{bottom:652.053000px;}
.y90_c00352{bottom:675.377580px;}
.y8f_c00352{bottom:675.900444px;}
.y8e_c00352{bottom:677.689740px;}
.y8d_c00352{bottom:678.212196px;}
.y8c_c00352{bottom:679.304748px;}
.y8b_c00352{bottom:679.828500px;}
.y8a_c00352{bottom:680.342868px;}
.y89_c00352{bottom:680.887332px;}
.y88_c00352{bottom:682.667508px;}
.y87_c00352{bottom:683.186196px;}
.y86_c00352{bottom:684.589668px;}
.y85_c00352{bottom:685.093668px;}
.y84_c00352{bottom:685.801500px;}
.y83_c00352{bottom:711.420021px;}
.y82_c00352{bottom:712.004640px;}
.y81_c00352{bottom:712.385535px;}
.y80_c00352{bottom:712.784598px;}
.y7f_c00352{bottom:713.910618px;}
.y7e_c00352{bottom:714.470204px;}
.y7d_c00352{bottom:715.990731px;}
.y7c_c00352{bottom:716.545848px;}
.y7b_c00352{bottom:719.002440px;}
.y7a_c00352{bottom:720.104306px;}
.y79_c00352{bottom:720.861162px;}
.y78_c00352{bottom:721.416813px;}
.y77_c00352{bottom:722.512485px;}
.y76_c00352{bottom:748.325733px;}
.y75_c00352{bottom:749.884616px;}
.y74_c00352{bottom:752.207121px;}
.y73_c00352{bottom:752.965535px;}
.y72_c00352{bottom:754.748633px;}
.y71_c00352{bottom:757.314674px;}
.y70_c00352{bottom:759.332544px;}
.y6f_c00352{bottom:760.866000px;}
.y6e_c00352{bottom:772.347543px;}
.y6d_c00352{bottom:790.537287px;}
.y6c_c00352{bottom:821.767311px;}
.y6b_c00352{bottom:822.248781px;}
.y6a_c00352{bottom:822.597217px;}
.y69_c00352{bottom:823.768158px;}
.y68_c00352{bottom:825.104314px;}
.y67_c00352{bottom:825.598402px;}
.y66_c00352{bottom:826.910595px;}
.y65_c00352{bottom:827.405225px;}
.y64_c00352{bottom:828.094695px;}
.y63_c00352{bottom:829.248304px;}
.y62_c00352{bottom:829.876327px;}
.y61_c00352{bottom:830.366871px;}
.y60_c00352{bottom:831.034336px;}
.y5f_c00352{bottom:856.800909px;}
.y5e_c00352{bottom:857.576607px;}
.y5d_c00352{bottom:859.091121px;}
.y5c_c00352{bottom:859.636663px;}
.y5b_c00352{bottom:860.408286px;}
.y5a_c00352{bottom:861.726495px;}
.y59_c00352{bottom:862.281139px;}
.y58_c00352{bottom:863.996633px;}
.y57_c00352{bottom:865.112808px;}
.y56_c00352{bottom:866.962926px;}
.y55_c00352{bottom:867.489723px;}
.y54_c00352{bottom:891.661855px;}
.y53_c00352{bottom:892.396066px;}
.y52_c00352{bottom:893.373691px;}
.y51_c00352{bottom:893.614737px;}
.y50_c00352{bottom:894.601809px;}
.y4f_c00352{bottom:895.578807px;}
.y4e_c00352{bottom:896.291007px;}
.y4d_c00352{bottom:896.902515px;}
.y4c_c00352{bottom:897.977790px;}
.y4b_c00352{bottom:898.455235px;}
.y4a_c00352{bottom:898.813598px;}
.y49_c00352{bottom:926.718677px;}
.y48_c00352{bottom:928.302919px;}
.y47_c00352{bottom:928.951491px;}
.y46_c00352{bottom:931.203913px;}
.y45_c00352{bottom:932.764797px;}
.y44_c00352{bottom:934.530579px;}
.y43_c00352{bottom:935.179863px;}
.y42_c00352{bottom:935.864705px;}
.y41_c00352{bottom:936.945531px;}
.y40_c00352{bottom:938.258064px;}
.y3f_c00352{bottom:938.709745px;}
.y3e_c00352{bottom:940.406265px;}
.y3d_c00352{bottom:962.268658px;}
.y3c_c00352{bottom:962.724459px;}
.y3b_c00352{bottom:963.777477px;}
.y3a_c00352{bottom:964.393362px;}
.y39_c00352{bottom:965.871030px;}
.y38_c00352{bottom:966.512651px;}
.y37_c00352{bottom:967.378594px;}
.y36_c00352{bottom:968.195490px;}
.y35_c00352{bottom:969.242209px;}
.y34_c00352{bottom:970.288730px;}
.y33_c00352{bottom:971.561226px;}
.y32_c00352{bottom:972.191019px;}
.y31_c00352{bottom:974.433000px;}
.y30_c00352{bottom:1005.991170px;}
.y2f_c00352{bottom:1033.308660px;}
.y2e_c00352{bottom:1034.632380px;}
.y2d_c00352{bottom:1035.754830px;}
.y2c_c00352{bottom:1037.543610px;}
.y2b_c00352{bottom:1038.428160px;}
.y2a_c00352{bottom:1040.444340px;}
.y29_c00352{bottom:1041.097920px;}
.y28_c00352{bottom:1042.874370px;}
.y27_c00352{bottom:1043.971200px;}
.y26_c00352{bottom:1044.634500px;}
.y25_c00352{bottom:1070.284194px;}
.y24_c00352{bottom:1071.100107px;}
.y23_c00352{bottom:1071.698049px;}
.y22_c00352{bottom:1072.100484px;}
.y21_c00352{bottom:1074.477942px;}
.y20_c00352{bottom:1075.305141px;}
.y1f_c00352{bottom:1076.101263px;}
.y1e_c00352{bottom:1076.504670px;}
.y1d_c00352{bottom:1077.711246px;}
.y1c_c00352{bottom:1079.251434px;}
.y1b_c00352{bottom:1079.848593px;}
.y1a_c00352{bottom:1080.416430px;}
.y19_c00352{bottom:1080.799182px;}
.y18_c00352{bottom:1104.101940px;}
.y17_c00352{bottom:1105.346571px;}
.y16_c00352{bottom:1105.986963px;}
.y15_c00352{bottom:1106.402394px;}
.y14_c00352{bottom:1108.307574px;}
.y13_c00352{bottom:1109.159361px;}
.y12_c00352{bottom:1111.252308px;}
.y11_c00352{bottom:1111.904298px;}
.y10_c00352{bottom:1112.321673px;}
.yf_c00352{bottom:1113.977157px;}
.ye_c00352{bottom:1114.612419px;}
.yd_c00352{bottom:1116.447894px;}
.yc_c00352{bottom:1138.140966px;}
.yb_c00352{bottom:1139.745819px;}
.ya_c00352{bottom:1141.142610px;}
.y9_c00352{bottom:1141.773519px;}
.y8_c00352{bottom:1142.974263px;}
.y7_c00352{bottom:1145.540721px;}
.y6_c00352{bottom:1147.135422px;}
.y5_c00352{bottom:1147.946124px;}
.y4_c00352{bottom:1149.487284px;}
.y3_c00352{bottom:1150.473000px;}
.y1_c00352{bottom:1183.410000px;}
.y2_c00352{bottom:1203.525000px;}
.h1b_c00352{height:36.000000px;}
.h2_c00352{height:42.000000px;}
.h9_c00352{height:66.011912px;}
.h5_c00352{height:72.011663px;}
.hf_c00352{height:72.012995px;}
.h14_c00352{height:72.014399px;}
.hd_c00352{height:72.019041px;}
.h15_c00352{height:72.020733px;}
.ha_c00352{height:78.014078px;}
.h7_c00352{height:78.015598px;}
.h10_c00352{height:78.020628px;}
.h11_c00352{height:78.022461px;}
.h13_c00352{height:78.032792px;}
.h3_c00352{height:84.000000px;}
.h6_c00352{height:84.013607px;}
.h8_c00352{height:84.015161px;}
.hc_c00352{height:84.022215px;}
.h12_c00352{height:84.024189px;}
.h16_c00352{height:84.032922px;}
.h1a_c00352{height:90.002880px;}
.he_c00352{height:90.011519px;}
.h4_c00352{height:90.014579px;}
.hb_c00352{height:90.016244px;}
.h18_c00352{height:90.037837px;}
.h19_c00352{height:90.040491px;}
.h1c_c00352{height:96.000000px;}
.h1d_c00352{height:108.015605px;}
.h17_c00352{height:108.031100px;}
.h0_c00352{height:1251.450000px;}
.h1_c00352{height:1251.750000px;}
.w0_c00352{width:915.000000px;}
.x0_c00352{left:0.000000px;}
.x1_c00352{left:14.310000px;}
.xcd_c00352{left:137.160000px;}
.xa8_c00352{left:140.962500px;}
.x74_c00352{left:143.041209px;}
.x61_c00352{left:144.328500px;}
.x47_c00352{left:145.384863px;}
.x28_c00352{left:147.667740px;}
.x3_c00352{left:149.650500px;}
.xa9_c00352{left:163.281000px;}
.x75_c00352{left:164.708984px;}
.x17_c00352{left:170.761728px;}
.xcf_c00352{left:173.635500px;}
.x7e_c00352{left:176.568000px;}
.x40_c00352{left:178.258623px;}
.x3a_c00352{left:179.656766px;}
.xd3_c00352{left:183.205500px;}
.xb6_c00352{left:184.726320px;}
.x62_c00352{left:188.568000px;}
.x48_c00352{left:189.912754px;}
.x97_c00352{left:196.041000px;}
.x6a_c00352{left:197.623500px;}
.x18_c00352{left:202.308228px;}
.x4_c00352{left:204.412500px;}
.x58_c00352{left:209.550329px;}
.x9f_c00352{left:216.304500px;}
.x8f_c00352{left:217.615500px;}
.x63_c00352{left:220.068000px;}
.x3b_c00352{left:223.107878px;}
.x32_c00352{left:233.150629px;}
.x19_c00352{left:235.483728px;}
.x59_c00352{left:242.191813px;}
.xd_c00352{left:246.541101px;}
.x83_c00352{left:250.506000px;}
.x52_c00352{left:252.711000px;}
.x20_c00352{left:255.717000px;}
.xce_c00352{left:256.770000px;}
.xc8_c00352{left:257.943000px;}
.xa0_c00352{left:261.007500px;}
.x49_c00352{left:264.421898px;}
.xbf_c00352{left:269.808000px;}
.xb7_c00352{left:270.832176px;}
.x76_c00352{left:273.179799px;}
.xe_c00352{left:279.999507px;}
.x90_c00352{left:283.128000px;}
.x6b_c00352{left:284.823000px;}
.x41_c00352{left:287.084756px;}
.x21_c00352{left:288.882000px;}
.x5_c00352{left:290.032500px;}
.xa1_c00352{left:292.113000px;}
.x98_c00352{left:293.961000px;}
.xb8_c00352{left:304.048044px;}
.x77_c00352{left:305.576447px;}
.x64_c00352{left:307.785000px;}
.x91_c00352{left:314.967000px;}
.x7f_c00352{left:317.488500px;}
.x53_c00352{left:319.383000px;}
.x1a_c00352{left:321.049728px;}
.xc4_c00352{left:325.141500px;}
.x6_c00352{left:335.071500px;}
.xa2_c00352{left:336.592500px;}
.x8a_c00352{left:338.567100px;}
.x65_c00352{left:340.203000px;}
.x4a_c00352{left:341.328240px;}
.x22_c00352{left:343.723500px;}
.x80_c00352{left:350.364000px;}
.x5a_c00352{left:351.520890px;}
.x42_c00352{left:352.701735px;}
.xc5_c00352{left:357.805500px;}
.xf_c00352{left:367.135941px;}
.xaf_c00352{left:369.780000px;}
.x8b_c00352{left:372.324492px;}
.x33_c00352{left:375.386922px;}
.x3c_c00352{left:376.488190px;}
.xc0_c00352{left:379.221000px;}
.x99_c00352{left:382.260000px;}
.x6c_c00352{left:384.456000px;}
.x4b_c00352{left:387.251217px;}
.x10_c00352{left:389.073036px;}
.xc9_c00352{left:390.490500px;}
.xb9_c00352{left:401.860536px;}
.x54_c00352{left:407.116500px;}
.x1b_c00352{left:410.493228px;}
.xd4_c00352{left:412.407000px;}
.xa3_c00352{left:414.909000px;}
.x78_c00352{left:416.835620px;}
.x6d_c00352{left:417.940500px;}
.x4c_c00352{left:420.234225px;}
.x7_c00352{left:423.666000px;}
.xb0_c00352{left:425.430000px;}
.x92_c00352{left:426.594000px;}
.x23_c00352{left:432.546000px;}
.x2_c00352{left:434.430000px;}
.x34_c00352{left:442.050140px;}
.x29_c00352{left:443.650500px;}
.xba_c00352{left:446.400432px;}
.x9a_c00352{left:448.164000px;}
.x84_c00352{left:449.478000px;}
.x66_c00352{left:451.464000px;}
.x43_c00352{left:453.652583px;}
.x1c_c00352{left:454.722228px;}
.xc1_c00352{left:458.574000px;}
.x8c_c00352{left:459.583032px;}
.x93_c00352{left:461.116500px;}
.x24_c00352{left:465.225000px;}
.xd0_c00352{left:467.631000px;}
.x6e_c00352{left:483.376500px;}
.x44_c00352{left:486.319337px;}
.xbb_c00352{left:490.712256px;}
.xa4_c00352{left:492.711000px;}
.x5b_c00352{left:496.044831px;}
.x2a_c00352{left:498.741000px;}
.x1d_c00352{left:500.677728px;}
.x79_c00352{left:505.980046px;}
.x4d_c00352{left:507.698366px;}
.xaa_c00352{left:514.314000px;}
.x85_c00352{left:515.758500px;}
.x67_c00352{left:517.641000px;}
.x55_c00352{left:518.683500px;}
.xd1_c00352{left:523.803000px;}
.x94_c00352{left:526.468500px;}
.x5c_c00352{left:528.728351px;}
.x35_c00352{left:530.326458px;}
.x11_c00352{left:533.566944px;}
.x7a_c00352{left:538.922665px;}
.x4e_c00352{left:540.652873px;}
.x2b_c00352{left:541.735500px;}
.x9b_c00352{left:547.369500px;}
.x68_c00352{left:550.375500px;}
.xd2_c00352{left:555.718500px;}
.x86_c00352{left:559.762500px;}
.x6f_c00352{left:561.538500px;}
.x45_c00352{left:563.833272px;}
.x8_c00352{left:566.247000px;}
.x9c_c00352{left:569.727000px;}
.x81_c00352{left:571.867500px;}
.x12_c00352{left:578.387634px;}
.xb1_c00352{left:581.595000px;}
.x2c_c00352{left:587.311500px;}
.xab_c00352{left:591.901500px;}
.x56_c00352{left:596.209500px;}
.xc6_c00352{left:601.624500px;}
.x70_c00352{left:606.489000px;}
.x36_c00352{left:608.371476px;}
.x25_c00352{left:610.261500px;}
.x7b_c00352{left:616.214748px;}
.x5d_c00352{left:618.133167px;}
.x3d_c00352{left:619.855184px;}
.x2d_c00352{left:621.081000px;}
.xca_c00352{left:622.798500px;}
.xbc_c00352{left:625.227696px;}
.x4f_c00352{left:629.773157px;}
.x9_c00352{left:632.955000px;}
.xb2_c00352{left:636.736500px;}
.x95_c00352{left:638.319000px;}
.x3e_c00352{left:641.702990px;}
.x9d_c00352{left:648.351000px;}
.x5e_c00352{left:651.076221px;}
.x1e_c00352{left:655.116228px;}
.xac_c00352{left:658.782000px;}
.xa_c00352{left:668.005500px;}
.xb3_c00352{left:669.687000px;}
.x87_c00352{left:672.115500px;}
.x71_c00352{left:673.747500px;}
.x13_c00352{left:678.645825px;}
.xad_c00352{left:680.764500px;}
.x8d_c00352{left:682.193784px;}
.x82_c00352{left:684.514500px;}
.x1f_c00352{left:688.335228px;}
.x7c_c00352{left:695.594717px;}
.x2e_c00352{left:698.853000px;}
.x14_c00352{left:700.474920px;}
.xbd_c00352{left:702.552816px;}
.xb4_c00352{left:704.269500px;}
.x50_c00352{left:707.828585px;}
.xa5_c00352{left:715.617000px;}
.x5f_c00352{left:717.325364px;}
.x37_c00352{left:720.996838px;}
.xae_c00352{left:726.174000px;}
.x57_c00352{left:730.162500px;}
.x2f_c00352{left:731.268000px;}
.x15_c00352{left:734.218326px;}
.xc7_c00352{left:736.423500px;}
.x96_c00352{left:737.770500px;}
.x60_c00352{left:740.809607px;}
.xb_c00352{left:745.605000px;}
.xcb_c00352{left:747.847500px;}
.x38_c00352{left:753.394712px;}
.x26_c00352{left:755.823000px;}
.x9e_c00352{left:761.292000px;}
.x51_c00352{left:763.196303px;}
.x88_c00352{left:772.605000px;}
.x72_c00352{left:773.940000px;}
.x46_c00352{left:776.124366px;}
.xc2_c00352{left:781.320000px;}
.x30_c00352{left:786.690000px;}
.xa6_c00352{left:792.937500px;}
.x69_c00352{left:795.823500px;}
.x3f_c00352{left:797.270616px;}
.x16_c00352{left:799.696638px;}
.x73_c00352{left:806.131500px;}
.x31_c00352{left:810.679500px;}
.xcc_c00352{left:813.678000px;}
.xc3_c00352{left:814.692000px;}
.x8e_c00352{left:815.912064px;}
.x27_c00352{left:822.009000px;}
.xbe_c00352{left:826.014300px;}
.x89_c00352{left:827.932500px;}
.x39_c00352{left:832.590201px;}
.xc_c00352{left:834.763500px;}
.xa7_c00352{left:838.297500px;}
.x7d_c00352{left:839.309037px;}
.xb5_c00352{left:848.499000px;}
@media print{
.v0_c00352{vertical-align:0.000000pt;}
.ls0_c00352{letter-spacing:0.000000pt;}
.ws0_c00352{word-spacing:0.000000pt;}
.fs19_c00352{font-size:32.000000pt;}
.fs0_c00352{font-size:37.333333pt;}
.fs7_c00352{font-size:58.677255pt;}
.fs3_c00352{font-size:64.010367pt;}
.fsd_c00352{font-size:64.011551pt;}
.fs12_c00352{font-size:64.012799pt;}
.fsb_c00352{font-size:64.016926pt;}
.fs13_c00352{font-size:64.018429pt;}
.fs8_c00352{font-size:69.345847pt;}
.fs5_c00352{font-size:69.347199pt;}
.fse_c00352{font-size:69.351670pt;}
.fsf_c00352{font-size:69.353298pt;}
.fs11_c00352{font-size:69.362482pt;}
.fs1_c00352{font-size:74.666667pt;}
.fs4_c00352{font-size:74.678762pt;}
.fs6_c00352{font-size:74.680143pt;}
.fsa_c00352{font-size:74.686413pt;}
.fs10_c00352{font-size:74.688168pt;}
.fs14_c00352{font-size:74.695930pt;}
.fs18_c00352{font-size:80.002560pt;}
.fsc_c00352{font-size:80.010239pt;}
.fs2_c00352{font-size:80.012959pt;}
.fs9_c00352{font-size:80.014439pt;}
.fs16_c00352{font-size:80.033633pt;}
.fs17_c00352{font-size:80.035992pt;}
.fs1a_c00352{font-size:85.333333pt;}
.fs1b_c00352{font-size:96.013871pt;}
.fs15_c00352{font-size:96.027644pt;}
.y0_c00352{bottom:0.000000pt;}
.y137_c00352{bottom:77.765333pt;}
.y138_c00352{bottom:78.402969pt;}
.y139_c00352{bottom:79.546027pt;}
.y13a_c00352{bottom:80.696360pt;}
.y13b_c00352{bottom:81.373187pt;}
.y13c_c00352{bottom:81.866459pt;}
.y13d_c00352{bottom:82.208567pt;}
.y13e_c00352{bottom:82.698779pt;}
.y136_c00352{bottom:113.246667pt;}
.y135_c00352{bottom:113.729333pt;}
.y134_c00352{bottom:114.578667pt;}
.y133_c00352{bottom:115.081333pt;}
.y132_c00352{bottom:115.742667pt;}
.y131_c00352{bottom:117.424000pt;}
.y130_c00352{bottom:119.022667pt;}
.y12f_c00352{bottom:119.522667pt;}
.y12e_c00352{bottom:148.690667pt;}
.y12d_c00352{bottom:153.700320pt;}
.y12c_c00352{bottom:153.854133pt;}
.y12b_c00352{bottom:154.322261pt;}
.y12a_c00352{bottom:154.804469pt;}
.y129_c00352{bottom:155.211499pt;}
.y128_c00352{bottom:156.156480pt;}
.y127_c00352{bottom:156.863467pt;}
.y126_c00352{bottom:157.093920pt;}
.y125_c00352{bottom:157.648864pt;}
.y124_c00352{bottom:157.806027pt;}
.y123_c00352{bottom:158.641333pt;}
.y122_c00352{bottom:186.673107pt;}
.y121_c00352{bottom:187.570987pt;}
.y120_c00352{bottom:190.267747pt;}
.y11f_c00352{bottom:192.072987pt;}
.y11e_c00352{bottom:192.936387pt;}
.y11d_c00352{bottom:194.374867pt;}
.y11c_c00352{bottom:196.769587pt;}
.y11b_c00352{bottom:197.640627pt;}
.y11a_c00352{bottom:200.526547pt;}
.y119_c00352{bottom:201.390227pt;}
.y118_c00352{bottom:202.562667pt;}
.y117_c00352{bottom:216.200965pt;}
.y116_c00352{bottom:217.061221pt;}
.y115_c00352{bottom:219.667819pt;}
.y114_c00352{bottom:222.225696pt;}
.y113_c00352{bottom:223.102888pt;}
.y112_c00352{bottom:225.380896pt;}
.y111_c00352{bottom:226.265435pt;}
.y110_c00352{bottom:227.426440pt;}
.y10f_c00352{bottom:230.246864pt;}
.y10e_c00352{bottom:231.635036pt;}
.y10d_c00352{bottom:233.525333pt;}
.y10c_c00352{bottom:248.899605pt;}
.y10b_c00352{bottom:250.107296pt;}
.y10a_c00352{bottom:250.863051pt;}
.y109_c00352{bottom:251.190080pt;}
.y108_c00352{bottom:252.178485pt;}
.y107_c00352{bottom:252.611509pt;}
.y106_c00352{bottom:252.819243pt;}
.y105_c00352{bottom:253.046731pt;}
.y104_c00352{bottom:254.003413pt;}
.y103_c00352{bottom:254.327797pt;}
.y102_c00352{bottom:255.169483pt;}
.y101_c00352{bottom:255.590752pt;}
.y100_c00352{bottom:280.871947pt;}
.yff_c00352{bottom:283.948843pt;}
.yfe_c00352{bottom:284.686603pt;}
.yfd_c00352{bottom:285.389547pt;}
.yfc_c00352{bottom:286.565899pt;}
.yfb_c00352{bottom:287.309707pt;}
.yfa_c00352{bottom:288.012491pt;}
.yf9_c00352{bottom:289.897419pt;}
.yf8_c00352{bottom:291.084619pt;}
.yf7_c00352{bottom:293.411531pt;}
.yf6_c00352{bottom:295.926667pt;}
.yf5_c00352{bottom:312.185685pt;}
.yf4_c00352{bottom:314.954736pt;}
.yf3_c00352{bottom:316.084928pt;}
.yf2_c00352{bottom:316.632048pt;}
.yf1_c00352{bottom:318.296629pt;}
.yf0_c00352{bottom:320.227696pt;}
.yef_c00352{bottom:322.689083pt;}
.yee_c00352{bottom:323.529307pt;}
.yed_c00352{bottom:325.746981pt;}
.yec_c00352{bottom:328.164464pt;}
.yeb_c00352{bottom:328.964517pt;}
.yea_c00352{bottom:329.520000pt;}
.ye9_c00352{bottom:344.689664pt;}
.ye8_c00352{bottom:345.657344pt;}
.ye7_c00352{bottom:347.306848pt;}
.ye6_c00352{bottom:348.027200pt;}
.ye5_c00352{bottom:350.632736pt;}
.ye4_c00352{bottom:352.062176pt;}
.ye3_c00352{bottom:353.019168pt;}
.ye2_c00352{bottom:353.721952pt;}
.ye1_c00352{bottom:355.392704pt;}
.ye0_c00352{bottom:355.852128pt;}
.ydf_c00352{bottom:356.341600pt;}
.yde_c00352{bottom:357.005184pt;}
.ydd_c00352{bottom:357.958848pt;}
.ydc_c00352{bottom:359.524000pt;}
.ydb_c00352{bottom:378.755680pt;}
.yda_c00352{bottom:380.177547pt;}
.yd9_c00352{bottom:380.763520pt;}
.yd8_c00352{bottom:382.161280pt;}
.yd7_c00352{bottom:382.558747pt;}
.yd6_c00352{bottom:384.322400pt;}
.yd5_c00352{bottom:385.494027pt;}
.yd4_c00352{bottom:387.063787pt;}
.yd3_c00352{bottom:388.804587pt;}
.yd2_c00352{bottom:389.762667pt;}
.yd1_c00352{bottom:408.178847pt;}
.yd0_c00352{bottom:410.204361pt;}
.ycf_c00352{bottom:412.768000pt;}
.yce_c00352{bottom:414.815207pt;}
.ycd_c00352{bottom:415.651257pt;}
.ycc_c00352{bottom:417.335887pt;}
.ycb_c00352{bottom:418.225800pt;}
.yca_c00352{bottom:421.103296pt;}
.yc9_c00352{bottom:421.924035pt;}
.yc8_c00352{bottom:423.612801pt;}
.yc7_c00352{bottom:425.528000pt;}
.yc6_c00352{bottom:440.297163pt;}
.yc5_c00352{bottom:441.842400pt;}
.yc4_c00352{bottom:443.122101pt;}
.yc3_c00352{bottom:444.414176pt;}
.yc2_c00352{bottom:445.421867pt;}
.yc1_c00352{bottom:445.812501pt;}
.yc0_c00352{bottom:446.830133pt;}
.ybf_c00352{bottom:448.071680pt;}
.ybe_c00352{bottom:473.928235pt;}
.ybd_c00352{bottom:475.108555pt;}
.ybc_c00352{bottom:477.252331pt;}
.ybb_c00352{bottom:479.649195pt;}
.yba_c00352{bottom:480.587947pt;}
.yb9_c00352{bottom:482.001931pt;}
.yb8_c00352{bottom:482.698827pt;}
.yb7_c00352{bottom:484.132107pt;}
.yb6_c00352{bottom:484.824907pt;}
.yb5_c00352{bottom:485.533195pt;}
.yb4_c00352{bottom:486.246667pt;}
.yb3_c00352{bottom:504.789240pt;}
.yb2_c00352{bottom:507.090589pt;}
.yb1_c00352{bottom:508.471233pt;}
.yb0_c00352{bottom:509.393595pt;}
.yaf_c00352{bottom:510.061607pt;}
.yae_c00352{bottom:512.536315pt;}
.yad_c00352{bottom:513.922111pt;}
.yac_c00352{bottom:514.594232pt;}
.yab_c00352{bottom:515.268500pt;}
.yaa_c00352{bottom:517.475273pt;}
.ya9_c00352{bottom:518.162667pt;}
.ya8_c00352{bottom:536.220403pt;}
.ya7_c00352{bottom:538.365105pt;}
.ya6_c00352{bottom:539.030383pt;}
.ya5_c00352{bottom:540.583099pt;}
.ya4_c00352{bottom:542.095217pt;}
.ya3_c00352{bottom:542.739613pt;}
.ya2_c00352{bottom:544.482583pt;}
.ya1_c00352{bottom:546.657733pt;}
.ya0_c00352{bottom:547.291575pt;}
.y9f_c00352{bottom:549.412964pt;}
.y9e_c00352{bottom:549.836263pt;}
.y9d_c00352{bottom:568.416151pt;}
.y9c_c00352{bottom:568.959829pt;}
.y9b_c00352{bottom:570.081463pt;}
.y9a_c00352{bottom:570.651969pt;}
.y99_c00352{bottom:571.787891pt;}
.y98_c00352{bottom:572.547055pt;}
.y97_c00352{bottom:573.111000pt;}
.y96_c00352{bottom:573.867124pt;}
.y95_c00352{bottom:574.972265pt;}
.y94_c00352{bottom:575.537781pt;}
.y93_c00352{bottom:577.220472pt;}
.y92_c00352{bottom:578.693175pt;}
.y91_c00352{bottom:579.602667pt;}
.y90_c00352{bottom:600.335627pt;}
.y8f_c00352{bottom:600.800395pt;}
.y8e_c00352{bottom:602.390880pt;}
.y8d_c00352{bottom:602.855285pt;}
.y8c_c00352{bottom:603.826443pt;}
.y8b_c00352{bottom:604.292000pt;}
.y8a_c00352{bottom:604.749216pt;}
.y89_c00352{bottom:605.233184pt;}
.y88_c00352{bottom:606.815563pt;}
.y87_c00352{bottom:607.276619pt;}
.y86_c00352{bottom:608.524149pt;}
.y85_c00352{bottom:608.972149pt;}
.y84_c00352{bottom:609.601333pt;}
.y83_c00352{bottom:632.373352pt;}
.y82_c00352{bottom:632.893013pt;}
.y81_c00352{bottom:633.231587pt;}
.y80_c00352{bottom:633.586309pt;}
.y7f_c00352{bottom:634.587216pt;}
.y7e_c00352{bottom:635.084625pt;}
.y7d_c00352{bottom:636.436205pt;}
.y7c_c00352{bottom:636.929643pt;}
.y7b_c00352{bottom:639.113280pt;}
.y7a_c00352{bottom:640.092716pt;}
.y79_c00352{bottom:640.765477pt;}
.y78_c00352{bottom:641.259389pt;}
.y77_c00352{bottom:642.233320pt;}
.y76_c00352{bottom:665.178429pt;}
.y75_c00352{bottom:666.564103pt;}
.y74_c00352{bottom:668.628552pt;}
.y73_c00352{bottom:669.302697pt;}
.y72_c00352{bottom:670.887673pt;}
.y71_c00352{bottom:673.168599pt;}
.y70_c00352{bottom:674.962261pt;}
.y6f_c00352{bottom:676.325333pt;}
.y6e_c00352{bottom:686.531149pt;}
.y6d_c00352{bottom:702.699811pt;}
.y6c_c00352{bottom:730.459832pt;}
.y6b_c00352{bottom:730.887805pt;}
.y6a_c00352{bottom:731.197527pt;}
.y69_c00352{bottom:732.238363pt;}
.y68_c00352{bottom:733.426057pt;}
.y67_c00352{bottom:733.865247pt;}
.y66_c00352{bottom:735.031640pt;}
.y65_c00352{bottom:735.471311pt;}
.y64_c00352{bottom:736.084173pt;}
.y63_c00352{bottom:737.109604pt;}
.y62_c00352{bottom:737.667847pt;}
.y61_c00352{bottom:738.103885pt;}
.y60_c00352{bottom:738.697188pt;}
.y5f_c00352{bottom:761.600808pt;}
.y5e_c00352{bottom:762.290317pt;}
.y5d_c00352{bottom:763.636552pt;}
.y5c_c00352{bottom:764.121479pt;}
.y5b_c00352{bottom:764.807365pt;}
.y5a_c00352{bottom:765.979107pt;}
.y59_c00352{bottom:766.472124pt;}
.y58_c00352{bottom:767.997007pt;}
.y57_c00352{bottom:768.989163pt;}
.y56_c00352{bottom:770.633712pt;}
.y55_c00352{bottom:771.101976pt;}
.y54_c00352{bottom:792.588316pt;}
.y53_c00352{bottom:793.240948pt;}
.y52_c00352{bottom:794.109948pt;}
.y51_c00352{bottom:794.324211pt;}
.y50_c00352{bottom:795.201608pt;}
.y4f_c00352{bottom:796.070051pt;}
.y4e_c00352{bottom:796.703117pt;}
.y4d_c00352{bottom:797.246680pt;}
.y4c_c00352{bottom:798.202480pt;}
.y4b_c00352{bottom:798.626876pt;}
.y4a_c00352{bottom:798.945420pt;}
.y49_c00352{bottom:823.749935pt;}
.y48_c00352{bottom:825.158151pt;}
.y47_c00352{bottom:825.734659pt;}
.y46_c00352{bottom:827.736812pt;}
.y45_c00352{bottom:829.124264pt;}
.y44_c00352{bottom:830.693848pt;}
.y43_c00352{bottom:831.270989pt;}
.y42_c00352{bottom:831.879737pt;}
.y41_c00352{bottom:832.840472pt;}
.y40_c00352{bottom:834.007168pt;}
.y3f_c00352{bottom:834.408663pt;}
.y3e_c00352{bottom:835.916680pt;}
.y3d_c00352{bottom:855.349919pt;}
.y3c_c00352{bottom:855.755075pt;}
.y3b_c00352{bottom:856.691091pt;}
.y3a_c00352{bottom:857.238544pt;}
.y39_c00352{bottom:858.552027pt;}
.y38_c00352{bottom:859.122356pt;}
.y37_c00352{bottom:859.892084pt;}
.y36_c00352{bottom:860.618213pt;}
.y35_c00352{bottom:861.548631pt;}
.y34_c00352{bottom:862.478871pt;}
.y33_c00352{bottom:863.609979pt;}
.y32_c00352{bottom:864.169795pt;}
.y31_c00352{bottom:866.162667pt;}
.y30_c00352{bottom:894.214373pt;}
.y2f_c00352{bottom:918.496587pt;}
.y2e_c00352{bottom:919.673227pt;}
.y2d_c00352{bottom:920.670960pt;}
.y2c_c00352{bottom:922.260987pt;}
.y2b_c00352{bottom:923.047253pt;}
.y2a_c00352{bottom:924.839413pt;}
.y29_c00352{bottom:925.420373pt;}
.y28_c00352{bottom:926.999440pt;}
.y27_c00352{bottom:927.974400pt;}
.y26_c00352{bottom:928.564000pt;}
.y25_c00352{bottom:951.363728pt;}
.y24_c00352{bottom:952.088984pt;}
.y23_c00352{bottom:952.620488pt;}
.y22_c00352{bottom:952.978208pt;}
.y21_c00352{bottom:955.091504pt;}
.y20_c00352{bottom:955.826792pt;}
.y1f_c00352{bottom:956.534456pt;}
.y1e_c00352{bottom:956.893040pt;}
.y1d_c00352{bottom:957.965552pt;}
.y1c_c00352{bottom:959.334608pt;}
.y1b_c00352{bottom:959.865416pt;}
.y1a_c00352{bottom:960.370160pt;}
.y19_c00352{bottom:960.710384pt;}
.y18_c00352{bottom:981.423947pt;}
.y17_c00352{bottom:982.530285pt;}
.y16_c00352{bottom:983.099523pt;}
.y15_c00352{bottom:983.468795pt;}
.y14_c00352{bottom:985.162288pt;}
.y13_c00352{bottom:985.919432pt;}
.y12_c00352{bottom:987.779829pt;}
.y11_c00352{bottom:988.359376pt;}
.y10_c00352{bottom:988.730376pt;}
.yf_c00352{bottom:990.201917pt;}
.ye_c00352{bottom:990.766595pt;}
.yd_c00352{bottom:992.398128pt;}
.yc_c00352{bottom:1011.680859pt;}
.yb_c00352{bottom:1013.107395pt;}
.ya_c00352{bottom:1014.348987pt;}
.y9_c00352{bottom:1014.909795pt;}
.y8_c00352{bottom:1015.977123pt;}
.y7_c00352{bottom:1018.258419pt;}
.y6_c00352{bottom:1019.675931pt;}
.y5_c00352{bottom:1020.396555pt;}
.y4_c00352{bottom:1021.766475pt;}
.y3_c00352{bottom:1022.642667pt;}
.y1_c00352{bottom:1051.920000pt;}
.y2_c00352{bottom:1069.800000pt;}
.h1b_c00352{height:32.000000pt;}
.h2_c00352{height:37.333333pt;}
.h9_c00352{height:58.677255pt;}
.h5_c00352{height:64.010367pt;}
.hf_c00352{height:64.011551pt;}
.h14_c00352{height:64.012799pt;}
.hd_c00352{height:64.016926pt;}
.h15_c00352{height:64.018429pt;}
.ha_c00352{height:69.345847pt;}
.h7_c00352{height:69.347199pt;}
.h10_c00352{height:69.351670pt;}
.h11_c00352{height:69.353298pt;}
.h13_c00352{height:69.362482pt;}
.h3_c00352{height:74.666667pt;}
.h6_c00352{height:74.678762pt;}
.h8_c00352{height:74.680143pt;}
.hc_c00352{height:74.686413pt;}
.h12_c00352{height:74.688168pt;}
.h16_c00352{height:74.695930pt;}
.h1a_c00352{height:80.002560pt;}
.he_c00352{height:80.010239pt;}
.h4_c00352{height:80.012959pt;}
.hb_c00352{height:80.014439pt;}
.h18_c00352{height:80.033633pt;}
.h19_c00352{height:80.035992pt;}
.h1c_c00352{height:85.333333pt;}
.h1d_c00352{height:96.013871pt;}
.h17_c00352{height:96.027644pt;}
.h0_c00352{height:1112.400000pt;}
.h1_c00352{height:1112.666667pt;}
.w0_c00352{width:813.333333pt;}
.x0_c00352{left:0.000000pt;}
.x1_c00352{left:12.720000pt;}
.xcd_c00352{left:121.920000pt;}
.xa8_c00352{left:125.300000pt;}
.x74_c00352{left:127.147741pt;}
.x61_c00352{left:128.292000pt;}
.x47_c00352{left:129.230989pt;}
.x28_c00352{left:131.260213pt;}
.x3_c00352{left:133.022667pt;}
.xa9_c00352{left:145.138667pt;}
.x75_c00352{left:146.407985pt;}
.x17_c00352{left:151.788203pt;}
.xcf_c00352{left:154.342667pt;}
.x7e_c00352{left:156.949333pt;}
.x40_c00352{left:158.452109pt;}
.x3a_c00352{left:159.694903pt;}
.xd3_c00352{left:162.849333pt;}
.xb6_c00352{left:164.201173pt;}
.x62_c00352{left:167.616000pt;}
.x48_c00352{left:168.811337pt;}
.x97_c00352{left:174.258667pt;}
.x6a_c00352{left:175.665333pt;}
.x18_c00352{left:179.829536pt;}
.x4_c00352{left:181.700000pt;}
.x58_c00352{left:186.266959pt;}
.x9f_c00352{left:192.270667pt;}
.x8f_c00352{left:193.436000pt;}
.x63_c00352{left:195.616000pt;}
.x3b_c00352{left:198.318113pt;}
.x32_c00352{left:207.245004pt;}
.x19_c00352{left:209.318869pt;}
.x59_c00352{left:215.281612pt;}
.xd_c00352{left:219.147645pt;}
.x83_c00352{left:222.672000pt;}
.x52_c00352{left:224.632000pt;}
.x20_c00352{left:227.304000pt;}
.xce_c00352{left:228.240000pt;}
.xc8_c00352{left:229.282667pt;}
.xa0_c00352{left:232.006667pt;}
.x49_c00352{left:235.041687pt;}
.xbf_c00352{left:239.829333pt;}
.xb7_c00352{left:240.739712pt;}
.x76_c00352{left:242.826488pt;}
.xe_c00352{left:248.888451pt;}
.x90_c00352{left:251.669333pt;}
.x6b_c00352{left:253.176000pt;}
.x41_c00352{left:255.186449pt;}
.x21_c00352{left:256.784000pt;}
.x5_c00352{left:257.806667pt;}
.xa1_c00352{left:259.656000pt;}
.x98_c00352{left:261.298667pt;}
.xb8_c00352{left:270.264928pt;}
.x77_c00352{left:271.623508pt;}
.x64_c00352{left:273.586667pt;}
.x91_c00352{left:279.970667pt;}
.x7f_c00352{left:282.212000pt;}
.x53_c00352{left:283.896000pt;}
.x1a_c00352{left:285.377536pt;}
.xc4_c00352{left:289.014667pt;}
.x6_c00352{left:297.841333pt;}
.xa2_c00352{left:299.193333pt;}
.x8a_c00352{left:300.948533pt;}
.x65_c00352{left:302.402667pt;}
.x4a_c00352{left:303.402880pt;}
.x22_c00352{left:305.532000pt;}
.x80_c00352{left:311.434667pt;}
.x5a_c00352{left:312.463013pt;}
.x42_c00352{left:313.512653pt;}
.xc5_c00352{left:318.049333pt;}
.xf_c00352{left:326.343059pt;}
.xaf_c00352{left:328.693333pt;}
.x8b_c00352{left:330.955104pt;}
.x33_c00352{left:333.677264pt;}
.x3c_c00352{left:334.656169pt;}
.xc0_c00352{left:337.085333pt;}
.x99_c00352{left:339.786667pt;}
.x6c_c00352{left:341.738667pt;}
.x4b_c00352{left:344.223304pt;}
.x10_c00352{left:345.842699pt;}
.xc9_c00352{left:347.102667pt;}
.xb9_c00352{left:357.209365pt;}
.x54_c00352{left:361.881333pt;}
.x1b_c00352{left:364.882869pt;}
.xd4_c00352{left:366.584000pt;}
.xa3_c00352{left:368.808000pt;}
.x78_c00352{left:370.520551pt;}
.x6d_c00352{left:371.502667pt;}
.x4c_c00352{left:373.541533pt;}
.x7_c00352{left:376.592000pt;}
.xb0_c00352{left:378.160000pt;}
.x92_c00352{left:379.194667pt;}
.x23_c00352{left:384.485333pt;}
.x2_c00352{left:386.160000pt;}
.x34_c00352{left:392.933457pt;}
.x29_c00352{left:394.356000pt;}
.xba_c00352{left:396.800384pt;}
.x9a_c00352{left:398.368000pt;}
.x84_c00352{left:399.536000pt;}
.x66_c00352{left:401.301333pt;}
.x43_c00352{left:403.246740pt;}
.x1c_c00352{left:404.197536pt;}
.xc1_c00352{left:407.621333pt;}
.x8c_c00352{left:408.518251pt;}
.x93_c00352{left:409.881333pt;}
.x24_c00352{left:413.533333pt;}
.xd0_c00352{left:415.672000pt;}
.x6e_c00352{left:429.668000pt;}
.x44_c00352{left:432.283855pt;}
.xbb_c00352{left:436.188672pt;}
.xa4_c00352{left:437.965333pt;}
.x5b_c00352{left:440.928739pt;}
.x2a_c00352{left:443.325333pt;}
.x1d_c00352{left:445.046869pt;}
.x79_c00352{left:449.760041pt;}
.x4d_c00352{left:451.287436pt;}
.xaa_c00352{left:457.168000pt;}
.x85_c00352{left:458.452000pt;}
.x67_c00352{left:460.125333pt;}
.x55_c00352{left:461.052000pt;}
.xd1_c00352{left:465.602667pt;}
.x94_c00352{left:467.972000pt;}
.x5c_c00352{left:469.980756pt;}
.x35_c00352{left:471.401296pt;}
.x11_c00352{left:474.281728pt;}
.x7a_c00352{left:479.042369pt;}
.x4e_c00352{left:480.580332pt;}
.x2b_c00352{left:481.542667pt;}
.x9b_c00352{left:486.550667pt;}
.x68_c00352{left:489.222667pt;}
.xd2_c00352{left:493.972000pt;}
.x86_c00352{left:497.566667pt;}
.x6f_c00352{left:499.145333pt;}
.x45_c00352{left:501.185131pt;}
.x8_c00352{left:503.330667pt;}
.x9c_c00352{left:506.424000pt;}
.x81_c00352{left:508.326667pt;}
.x12_c00352{left:514.122341pt;}
.xb1_c00352{left:516.973333pt;}
.x2c_c00352{left:522.054667pt;}
.xab_c00352{left:526.134667pt;}
.x56_c00352{left:529.964000pt;}
.xc6_c00352{left:534.777333pt;}
.x70_c00352{left:539.101333pt;}
.x36_c00352{left:540.774645pt;}
.x25_c00352{left:542.454667pt;}
.x7b_c00352{left:547.746443pt;}
.x5d_c00352{left:549.451704pt;}
.x3d_c00352{left:550.982385pt;}
.x2d_c00352{left:552.072000pt;}
.xca_c00352{left:553.598667pt;}
.xbc_c00352{left:555.757952pt;}
.x4f_c00352{left:559.798361pt;}
.x9_c00352{left:562.626667pt;}
.xb2_c00352{left:565.988000pt;}
.x95_c00352{left:567.394667pt;}
.x3e_c00352{left:570.402657pt;}
.x9d_c00352{left:576.312000pt;}
.x5e_c00352{left:578.734419pt;}
.x1e_c00352{left:582.325536pt;}
.xac_c00352{left:585.584000pt;}
.xa_c00352{left:593.782667pt;}
.xb3_c00352{left:595.277333pt;}
.x87_c00352{left:597.436000pt;}
.x71_c00352{left:598.886667pt;}
.x13_c00352{left:603.240733pt;}
.xad_c00352{left:605.124000pt;}
.x8d_c00352{left:606.394475pt;}
.x82_c00352{left:608.457333pt;}
.x1f_c00352{left:611.853536pt;}
.x7c_c00352{left:618.306415pt;}
.x2e_c00352{left:621.202667pt;}
.x14_c00352{left:622.644373pt;}
.xbd_c00352{left:624.491392pt;}
.xb4_c00352{left:626.017333pt;}
.x50_c00352{left:629.180964pt;}
.xa5_c00352{left:636.104000pt;}
.x5f_c00352{left:637.622545pt;}
.x37_c00352{left:640.886079pt;}
.xae_c00352{left:645.488000pt;}
.x57_c00352{left:649.033333pt;}
.x2f_c00352{left:650.016000pt;}
.x15_c00352{left:652.638512pt;}
.xc7_c00352{left:654.598667pt;}
.x96_c00352{left:655.796000pt;}
.x60_c00352{left:658.497428pt;}
.xb_c00352{left:662.760000pt;}
.xcb_c00352{left:664.753333pt;}
.x38_c00352{left:669.684188pt;}
.x26_c00352{left:671.842667pt;}
.x9e_c00352{left:676.704000pt;}
.x51_c00352{left:678.396713pt;}
.x88_c00352{left:686.760000pt;}
.x72_c00352{left:687.946667pt;}
.x46_c00352{left:689.888325pt;}
.xc2_c00352{left:694.506667pt;}
.x30_c00352{left:699.280000pt;}
.xa6_c00352{left:704.833333pt;}
.x69_c00352{left:707.398667pt;}
.x3f_c00352{left:708.684992pt;}
.x16_c00352{left:710.841456pt;}
.x73_c00352{left:716.561333pt;}
.x31_c00352{left:720.604000pt;}
.xcc_c00352{left:723.269333pt;}
.xc3_c00352{left:724.170667pt;}
.x8e_c00352{left:725.255168pt;}
.x27_c00352{left:730.674667pt;}
.xbe_c00352{left:734.234933pt;}
.x89_c00352{left:735.940000pt;}
.x39_c00352{left:740.080179pt;}
.xc_c00352{left:742.012000pt;}
.xa7_c00352{left:745.153333pt;}
.x7d_c00352{left:746.052477pt;}
.xb5_c00352{left:754.221333pt;}
}





/* 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_c00353 {
    display:none;
  }
  .loading-indicator_c00353.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00353 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_c00353 { 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_c00353" -> "#page-container .classname_c00353")
 */
.pf_c00353 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00353 { /* 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_c00353.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00353 { /* 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_c00353 { /* 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_c00353 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00353 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00353 {overflow:visible;}
  }
}
.c_c00353 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00353 { /* 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_c00353:after { /* webkit #35443 */
  content: '';
}
.t_c00353:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00353 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 */
}
.__c00353 { /* 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_c00353 { /* info for Javascript */
  display:none;
}
.l_c00353 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00353 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00353 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00353: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_c00353 {
    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_c00353.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00353.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_c00353 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00353{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00353;src:url('chunks/assets/font_53ec0c54e60da7c2d414b553.woff2')format("woff");}.ff1_c00353{font-family:ff1_c00353;line-height:1.000000;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;}
.m47_c00353{transform:matrix(0.015909,-0.000207,0.003250,0.249979,0,0);-ms-transform:matrix(0.015909,-0.000207,0.003250,0.249979,0,0);-webkit-transform:matrix(0.015909,-0.000207,0.003250,0.249979,0,0);}
.m5e_c00353{transform:matrix(0.020615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.020615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.020615,0.000000,0.000000,0.250000,0,0);}
.m37_c00353{transform:matrix(0.031817,-0.000414,0.003250,0.249979,0,0);-ms-transform:matrix(0.031817,-0.000414,0.003250,0.249979,0,0);-webkit-transform:matrix(0.031817,-0.000414,0.003250,0.249979,0,0);}
.m25_c00353{transform:matrix(0.032450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032450,0.000000,0.000000,0.250000,0,0);}
.m36_c00353{transform:matrix(0.035572,-0.000462,0.003250,0.249979,0,0);-ms-transform:matrix(0.035572,-0.000462,0.003250,0.249979,0,0);-webkit-transform:matrix(0.035572,-0.000462,0.003250,0.249979,0,0);}
.m1d_c00353{transform:matrix(0.040560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.040560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.040560,0.000000,0.000000,0.250000,0,0);}
.m23_c00353{transform:matrix(0.045890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.045890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.045890,0.000000,0.000000,0.250000,0,0);}
.m18_c00353{transform:matrix(0.063640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.063640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.063640,0.000000,0.000000,0.250000,0,0);}
.m17_c00353{transform:matrix(0.084855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084855,0.000000,0.000000,0.250000,0,0);}
.m5a_c00353{transform:matrix(0.122415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122415,0.000000,0.000000,0.250000,0,0);}
.m66_c00353{transform:matrix(0.127720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127720,0.000000,0.000000,0.250000,0,0);}
.m1c_c00353{transform:matrix(0.138295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138295,0.000000,0.000000,0.250000,0,0);}
.m53_c00353{transform:matrix(0.165950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165950,0.000000,0.000000,0.250000,0,0);}
.m1f_c00353{transform:matrix(0.167140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167140,0.000000,0.000000,0.250000,0,0);}
.m34_c00353{transform:matrix(0.171710,-0.002232,0.003250,0.249979,0,0);-ms-transform:matrix(0.171710,-0.002232,0.003250,0.249979,0,0);-webkit-transform:matrix(0.171710,-0.002232,0.003250,0.249979,0,0);}
.m35_c00353{transform:matrix(0.176075,-0.002289,0.003250,0.249979,0,0);-ms-transform:matrix(0.176075,-0.002289,0.003250,0.249979,0,0);-webkit-transform:matrix(0.176075,-0.002289,0.003250,0.249979,0,0);}
.m39_c00353{transform:matrix(0.181385,-0.002358,0.003250,0.249979,0,0);-ms-transform:matrix(0.181385,-0.002358,0.003250,0.249979,0,0);-webkit-transform:matrix(0.181385,-0.002358,0.003250,0.249979,0,0);}
.m42_c00353{transform:matrix(0.187304,-0.002435,0.003250,0.249979,0,0);-ms-transform:matrix(0.187304,-0.002435,0.003250,0.249979,0,0);-webkit-transform:matrix(0.187304,-0.002435,0.003250,0.249979,0,0);}
.m33_c00353{transform:matrix(0.201228,-0.002616,0.003250,0.249979,0,0);-ms-transform:matrix(0.201228,-0.002616,0.003250,0.249979,0,0);-webkit-transform:matrix(0.201228,-0.002616,0.003250,0.249979,0,0);}
.m5c_c00353{transform:matrix(0.215110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215110,0.000000,0.000000,0.250000,0,0);}
.m3f_c00353{transform:matrix(0.223131,-0.002901,0.003250,0.249979,0,0);-ms-transform:matrix(0.223131,-0.002901,0.003250,0.249979,0,0);-webkit-transform:matrix(0.223131,-0.002901,0.003250,0.249979,0,0);}
.m6_c00353{transform:matrix(0.225125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225125,0.000000,0.000000,0.250000,0,0);}
.m48_c00353{transform:matrix(0.226731,-0.002948,0.003250,0.249979,0,0);-ms-transform:matrix(0.226731,-0.002948,0.003250,0.249979,0,0);-webkit-transform:matrix(0.226731,-0.002948,0.003250,0.249979,0,0);}
.m60_c00353{transform:matrix(0.232865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232865,0.000000,0.000000,0.250000,0,0);}
.m26_c00353{transform:matrix(0.233385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233385,0.000000,0.000000,0.250000,0,0);}
.m24_c00353{transform:matrix(0.244825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244825,0.000000,0.000000,0.250000,0,0);}
.m4e_c00353{transform:matrix(0.250564,-0.003257,0.003250,0.249979,0,0);-ms-transform:matrix(0.250564,-0.003257,0.003250,0.249979,0,0);-webkit-transform:matrix(0.250564,-0.003257,0.003250,0.249979,0,0);}
.m16_c00353{transform:matrix(0.256540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256540,0.000000,0.000000,0.250000,0,0);}
.m54_c00353{transform:matrix(0.258070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258070,0.000000,0.000000,0.250000,0,0);}
.m5f_c00353{transform:matrix(0.261965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261965,0.000000,0.000000,0.250000,0,0);}
.m28_c00353{transform:matrix(0.263700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263700,0.000000,0.000000,0.250000,0,0);}
.m3d_c00353{transform:matrix(0.272077,-0.003537,0.003250,0.249979,0,0);-ms-transform:matrix(0.272077,-0.003537,0.003250,0.249979,0,0);-webkit-transform:matrix(0.272077,-0.003537,0.003250,0.249979,0,0);}
.m2c_c00353{transform:matrix(0.275032,-0.003575,0.003250,0.249979,0,0);-ms-transform:matrix(0.275032,-0.003575,0.003250,0.249979,0,0);-webkit-transform:matrix(0.275032,-0.003575,0.003250,0.249979,0,0);}
.m49_c00353{transform:matrix(0.282631,-0.003674,0.003250,0.249979,0,0);-ms-transform:matrix(0.282631,-0.003674,0.003250,0.249979,0,0);-webkit-transform:matrix(0.282631,-0.003674,0.003250,0.249979,0,0);}
.m4d_c00353{transform:matrix(0.282781,-0.003676,0.003250,0.249979,0,0);-ms-transform:matrix(0.282781,-0.003676,0.003250,0.249979,0,0);-webkit-transform:matrix(0.282781,-0.003676,0.003250,0.249979,0,0);}
.m50_c00353{transform:matrix(0.291220,-0.003786,0.003250,0.249979,0,0);-ms-transform:matrix(0.291220,-0.003786,0.003250,0.249979,0,0);-webkit-transform:matrix(0.291220,-0.003786,0.003250,0.249979,0,0);}
.m2_c00353{transform:matrix(0.291825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291825,0.000000,0.000000,0.250000,0,0);}
.m2e_c00353{transform:matrix(0.293340,-0.003813,0.003250,0.249979,0,0);-ms-transform:matrix(0.293340,-0.003813,0.003250,0.249979,0,0);-webkit-transform:matrix(0.293340,-0.003813,0.003250,0.249979,0,0);}
.m5b_c00353{transform:matrix(0.302405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302405,0.000000,0.000000,0.250000,0,0);}
.m55_c00353{transform:matrix(0.311900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311900,0.000000,0.000000,0.250000,0,0);}
.m4b_c00353{transform:matrix(0.313429,-0.004075,0.003250,0.249979,0,0);-ms-transform:matrix(0.313429,-0.004075,0.003250,0.249979,0,0);-webkit-transform:matrix(0.313429,-0.004075,0.003250,0.249979,0,0);}
.m58_c00353{transform:matrix(0.316737,-0.010463,0.008254,0.249864,0,0);-ms-transform:matrix(0.316737,-0.010463,0.008254,0.249864,0,0);-webkit-transform:matrix(0.316737,-0.010463,0.008254,0.249864,0,0);}
.m27_c00353{transform:matrix(0.318905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318905,0.000000,0.000000,0.250000,0,0);}
.m11_c00353{transform:matrix(0.321060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321060,0.000000,0.000000,0.250000,0,0);}
.m3c_c00353{transform:matrix(0.322123,-0.004188,0.003250,0.249979,0,0);-ms-transform:matrix(0.322123,-0.004188,0.003250,0.249979,0,0);-webkit-transform:matrix(0.322123,-0.004188,0.003250,0.249979,0,0);}
.m4a_c00353{transform:matrix(0.332422,-0.004321,0.003250,0.249979,0,0);-ms-transform:matrix(0.332422,-0.004321,0.003250,0.249979,0,0);-webkit-transform:matrix(0.332422,-0.004321,0.003250,0.249979,0,0);}
.m0_c00353{transform:matrix(0.336520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336520,0.000000,0.000000,0.250000,0,0);}
.m61_c00353{transform:matrix(0.344185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344185,0.000000,0.000000,0.250000,0,0);}
.m3e_c00353{transform:matrix(0.347216,-0.004514,0.003250,0.249979,0,0);-ms-transform:matrix(0.347216,-0.004514,0.003250,0.249979,0,0);-webkit-transform:matrix(0.347216,-0.004514,0.003250,0.249979,0,0);}
.m32_c00353{transform:matrix(0.350350,-0.004555,0.003250,0.249979,0,0);-ms-transform:matrix(0.350350,-0.004555,0.003250,0.249979,0,0);-webkit-transform:matrix(0.350350,-0.004555,0.003250,0.249979,0,0);}
.m21_c00353{transform:matrix(0.350540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350540,0.000000,0.000000,0.250000,0,0);}
.m30_c00353{transform:matrix(0.352330,-0.004580,0.003250,0.249979,0,0);-ms-transform:matrix(0.352330,-0.004580,0.003250,0.249979,0,0);-webkit-transform:matrix(0.352330,-0.004580,0.003250,0.249979,0,0);}
.mc_c00353{transform:matrix(0.357255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357255,0.000000,0.000000,0.250000,0,0);}
.m3_c00353{transform:matrix(0.371385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371385,0.000000,0.000000,0.250000,0,0);}
.m12_c00353{transform:matrix(0.380085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380085,0.000000,0.000000,0.250000,0,0);}
.m56_c00353{transform:matrix(0.384380,-0.012697,0.008254,0.249864,0,0);-ms-transform:matrix(0.384380,-0.012697,0.008254,0.249864,0,0);-webkit-transform:matrix(0.384380,-0.012697,0.008254,0.249864,0,0);}
.m19_c00353{transform:matrix(0.386215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386215,0.000000,0.000000,0.250000,0,0);}
.m1e_c00353{transform:matrix(0.393025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393025,0.000000,0.000000,0.250000,0,0);}
.m52_c00353{transform:matrix(0.395600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395600,0.000000,0.000000,0.250000,0,0);}
.ma_c00353{transform:matrix(0.396315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396315,0.000000,0.000000,0.250000,0,0);}
.m57_c00353{transform:matrix(0.406748,-0.013436,0.008254,0.249864,0,0);-ms-transform:matrix(0.406748,-0.013436,0.008254,0.249864,0,0);-webkit-transform:matrix(0.406748,-0.013436,0.008254,0.249864,0,0);}
.m41_c00353{transform:matrix(0.411205,-0.005346,0.003250,0.249979,0,0);-ms-transform:matrix(0.411205,-0.005346,0.003250,0.249979,0,0);-webkit-transform:matrix(0.411205,-0.005346,0.003250,0.249979,0,0);}
.m3b_c00353{transform:matrix(0.415530,-0.005402,0.003250,0.249979,0,0);-ms-transform:matrix(0.415530,-0.005402,0.003250,0.249979,0,0);-webkit-transform:matrix(0.415530,-0.005402,0.003250,0.249979,0,0);}
.m13_c00353{transform:matrix(0.416520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416520,0.000000,0.000000,0.250000,0,0);}
.m2b_c00353{transform:matrix(0.420215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420215,0.000000,0.000000,0.250000,0,0);}
.m4_c00353{transform:matrix(0.422905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422905,0.000000,0.000000,0.250000,0,0);}
.m9_c00353{transform:matrix(0.431755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431755,0.000000,0.000000,0.250000,0,0);}
.m15_c00353{transform:matrix(0.432795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432795,0.000000,0.000000,0.250000,0,0);}
.m40_c00353{transform:matrix(0.435268,-0.005658,0.003250,0.249979,0,0);-ms-transform:matrix(0.435268,-0.005658,0.003250,0.249979,0,0);-webkit-transform:matrix(0.435268,-0.005658,0.003250,0.249979,0,0);}
.m7_c00353{transform:matrix(0.438750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.438750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.438750,0.000000,0.000000,0.250000,0,0);}
.m2d_c00353{transform:matrix(0.441383,-0.005738,0.003250,0.249979,0,0);-ms-transform:matrix(0.441383,-0.005738,0.003250,0.249979,0,0);-webkit-transform:matrix(0.441383,-0.005738,0.003250,0.249979,0,0);}
.m31_c00353{transform:matrix(0.446147,-0.005800,0.003250,0.249979,0,0);-ms-transform:matrix(0.446147,-0.005800,0.003250,0.249979,0,0);-webkit-transform:matrix(0.446147,-0.005800,0.003250,0.249979,0,0);}
.m1a_c00353{transform:matrix(0.453300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453300,0.000000,0.000000,0.250000,0,0);}
.m59_c00353{transform:matrix(0.454237,-0.015005,0.008254,0.249864,0,0);-ms-transform:matrix(0.454237,-0.015005,0.008254,0.249864,0,0);-webkit-transform:matrix(0.454237,-0.015005,0.008254,0.249864,0,0);}
.m5d_c00353{transform:matrix(0.458700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458700,0.000000,0.000000,0.250000,0,0);}
.m8_c00353{transform:matrix(0.469640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469640,0.000000,0.000000,0.250000,0,0);}
.m1_c00353{transform:matrix(0.476705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.476705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.476705,0.000000,0.000000,0.250000,0,0);}
.m43_c00353{transform:matrix(0.498448,-0.006480,0.003250,0.249979,0,0);-ms-transform:matrix(0.498448,-0.006480,0.003250,0.249979,0,0);-webkit-transform:matrix(0.498448,-0.006480,0.003250,0.249979,0,0);}
.mf_c00353{transform:matrix(0.525270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525270,0.000000,0.000000,0.250000,0,0);}
.m14_c00353{transform:matrix(0.531230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531230,0.000000,0.000000,0.250000,0,0);}
.m29_c00353{transform:matrix(0.557855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557855,0.000000,0.000000,0.250000,0,0);}
.m44_c00353{transform:matrix(0.558898,-0.007266,0.003250,0.249979,0,0);-ms-transform:matrix(0.558898,-0.007266,0.003250,0.249979,0,0);-webkit-transform:matrix(0.558898,-0.007266,0.003250,0.249979,0,0);}
.me_c00353{transform:matrix(0.567875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567875,0.000000,0.000000,0.250000,0,0);}
.md_c00353{transform:matrix(0.572865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572865,0.000000,0.000000,0.250000,0,0);}
.m22_c00353{transform:matrix(0.586040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.586040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.586040,0.000000,0.000000,0.250000,0,0);}
.m45_c00353{transform:matrix(0.591500,-0.007690,0.003250,0.249979,0,0);-ms-transform:matrix(0.591500,-0.007690,0.003250,0.249979,0,0);-webkit-transform:matrix(0.591500,-0.007690,0.003250,0.249979,0,0);}
.m4f_c00353{transform:matrix(0.599954,-0.007799,0.003250,0.249979,0,0);-ms-transform:matrix(0.599954,-0.007799,0.003250,0.249979,0,0);-webkit-transform:matrix(0.599954,-0.007799,0.003250,0.249979,0,0);}
.m46_c00353{transform:matrix(0.610518,-0.007937,0.003250,0.249979,0,0);-ms-transform:matrix(0.610518,-0.007937,0.003250,0.249979,0,0);-webkit-transform:matrix(0.610518,-0.007937,0.003250,0.249979,0,0);}
.m65_c00353{transform:matrix(0.642030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.642030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.642030,0.000000,0.000000,0.250000,0,0);}
.m5_c00353{transform:matrix(0.646470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.646470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.646470,0.000000,0.000000,0.250000,0,0);}
.m38_c00353{transform:matrix(0.660634,-0.008588,0.003250,0.249979,0,0);-ms-transform:matrix(0.660634,-0.008588,0.003250,0.249979,0,0);-webkit-transform:matrix(0.660634,-0.008588,0.003250,0.249979,0,0);}
.m1b_c00353{transform:matrix(0.665910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665910,0.000000,0.000000,0.250000,0,0);}
.m3a_c00353{transform:matrix(0.666074,-0.008659,0.003250,0.249979,0,0);-ms-transform:matrix(0.666074,-0.008659,0.003250,0.249979,0,0);-webkit-transform:matrix(0.666074,-0.008659,0.003250,0.249979,0,0);}
.m2a_c00353{transform:matrix(0.726890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.726890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.726890,0.000000,0.000000,0.250000,0,0);}
.m20_c00353{transform:matrix(0.734615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.734615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.734615,0.000000,0.000000,0.250000,0,0);}
.m4c_c00353{transform:matrix(0.781329,-0.010157,0.003250,0.249979,0,0);-ms-transform:matrix(0.781329,-0.010157,0.003250,0.249979,0,0);-webkit-transform:matrix(0.781329,-0.010157,0.003250,0.249979,0,0);}
.m62_c00353{transform:matrix(0.852085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.852085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.852085,0.000000,0.000000,0.250000,0,0);}
.m63_c00353{transform:matrix(0.905095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.905095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.905095,0.000000,0.000000,0.250000,0,0);}
.mb_c00353{transform:matrix(1.061680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.061680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.061680,0.000000,0.000000,0.250000,0,0);}
.m51_c00353{transform:matrix(1.067530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.067530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.067530,0.000000,0.000000,0.250000,0,0);}
.m2f_c00353{transform:matrix(1.070790,-0.013920,0.003250,0.249979,0,0);-ms-transform:matrix(1.070790,-0.013920,0.003250,0.249979,0,0);-webkit-transform:matrix(1.070790,-0.013920,0.003250,0.249979,0,0);}
.m10_c00353{transform:matrix(2.036485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.036485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.036485,0.000000,0.000000,0.250000,0,0);}
.m64_c00353{transform:matrix(2.184035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.184035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.184035,0.000000,0.000000,0.250000,0,0);}
.v0_c00353{vertical-align:0.000000px;}
.ls0_c00353{letter-spacing:0.000000px;}
.sc__c00353{text-shadow:none;}
.sc0_c00353{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__c00353{-webkit-text-stroke:0px transparent;}
.sc0_c00353{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00353{word-spacing:0.000000px;}
.fc0_c00353{color:transparent;}
.fs4_c00353{font-size:12.000000px;}
.fs8_c00353{font-size:18.000000px;}
.fs1_c00353{font-size:24.000000px;}
.fs5_c00353{font-size:24.002028px;}
.fs2_c00353{font-size:30.000000px;}
.fs0_c00353{font-size:36.000000px;}
.fs3_c00353{font-size:48.000000px;}
.fs6_c00353{font-size:48.004056px;}
.fsa_c00353{font-size:54.000000px;}
.fs7_c00353{font-size:60.005070px;}
.fs9_c00353{font-size:71.967233px;}
.y0_c00353{bottom:0.000000px;}
.y3e_c00353{bottom:539.460000px;}
.y3d_c00353{bottom:541.078500px;}
.y3f_c00353{bottom:546.451500px;}
.y3c_c00353{bottom:580.501500px;}
.y3b_c00353{bottom:630.720000px;}
.y37_c00353{bottom:643.231500px;}
.y38_c00353{bottom:645.555723px;}
.y39_c00353{bottom:646.638238px;}
.y3a_c00353{bottom:648.905833px;}
.y36_c00353{bottom:679.590000px;}
.y35_c00353{bottom:686.610000px;}
.y34_c00353{bottom:690.930000px;}
.y33_c00353{bottom:694.159500px;}
.y32_c00353{bottom:700.896864px;}
.y31_c00353{bottom:704.577082px;}
.y30_c00353{bottom:705.675501px;}
.y2f_c00353{bottom:708.648321px;}
.y2e_c00353{bottom:712.857954px;}
.y2d_c00353{bottom:713.625310px;}
.y2c_c00353{bottom:714.432703px;}
.y29_c00353{bottom:753.277516px;}
.y28_c00353{bottom:753.277725px;}
.y27_c00353{bottom:753.277774px;}
.y2a_c00353{bottom:753.277941px;}
.y1f_c00353{bottom:753.277957px;}
.y2b_c00353{bottom:753.277972px;}
.y22_c00353{bottom:753.278160px;}
.y1e_c00353{bottom:753.278176px;}
.y21_c00353{bottom:753.278179px;}
.y25_c00353{bottom:753.278193px;}
.y26_c00353{bottom:753.278284px;}
.y24_c00353{bottom:753.278433px;}
.y23_c00353{bottom:753.278512px;}
.y1d_c00353{bottom:753.278593px;}
.y20_c00353{bottom:753.278688px;}
.ye_c00353{bottom:762.196500px;}
.yf_c00353{bottom:762.774968px;}
.y10_c00353{bottom:763.221517px;}
.y11_c00353{bottom:763.632148px;}
.y12_c00353{bottom:764.318958px;}
.y13_c00353{bottom:764.604613px;}
.y14_c00353{bottom:764.870125px;}
.y15_c00353{bottom:765.001126px;}
.y16_c00353{bottom:765.185811px;}
.y17_c00353{bottom:765.522693px;}
.y18_c00353{bottom:766.349123px;}
.y19_c00353{bottom:767.685633px;}
.y1a_c00353{bottom:768.020331px;}
.y1b_c00353{bottom:770.276110px;}
.y1c_c00353{bottom:771.038950px;}
.ya_c00353{bottom:781.921500px;}
.yb_c00353{bottom:783.675000px;}
.yc_c00353{bottom:784.107000px;}
.yd_c00353{bottom:784.789500px;}
.y9_c00353{bottom:789.651000px;}
.y8_c00353{bottom:826.321500px;}
.y7_c00353{bottom:831.714000px;}
.y6_c00353{bottom:836.434500px;}
.y5_c00353{bottom:931.486500px;}
.y4_c00353{bottom:1110.792000px;}
.y3_c00353{bottom:1120.891500px;}
.y2_c00353{bottom:1140.789000px;}
.y1_c00353{bottom:1146.808500px;}
.h6_c00353{height:12.000000px;}
.ha_c00353{height:18.000000px;}
.h3_c00353{height:24.000000px;}
.h7_c00353{height:24.002028px;}
.h4_c00353{height:30.000000px;}
.h2_c00353{height:36.000000px;}
.h5_c00353{height:48.000000px;}
.h8_c00353{height:48.004056px;}
.hc_c00353{height:54.000000px;}
.h9_c00353{height:60.005070px;}
.hb_c00353{height:71.967233px;}
.h0_c00353{height:1251.450000px;}
.h1_c00353{height:1251.750000px;}
.w0_c00353{width:915.000000px;}
.x0_c00353{left:0.000000px;}
.xb_c00353{left:110.430000px;}
.x1_c00353{left:112.050000px;}
.xc_c00353{left:120.960000px;}
.x2_c00353{left:143.100000px;}
.xd_c00353{left:146.610000px;}
.x3f_c00353{left:149.864262px;}
.x49_c00353{left:157.822500px;}
.xe_c00353{left:163.620000px;}
.x40_c00353{left:173.617770px;}
.x3_c00353{left:189.540000px;}
.xf_c00353{left:193.320000px;}
.x41_c00353{left:196.181056px;}
.x37_c00353{left:207.899157px;}
.x10_c00353{left:210.600000px;}
.x4_c00353{left:217.620000px;}
.x4a_c00353{left:228.183069px;}
.x28_c00353{left:233.088000px;}
.x45_c00353{left:243.270000px;}
.x48_c00353{left:244.890000px;}
.x46_c00353{left:247.590000px;}
.x47_c00353{left:250.020000px;}
.x1d_c00353{left:252.180000px;}
.x51_c00353{left:253.530000px;}
.x19_c00353{left:255.150000px;}
.x4b_c00353{left:260.953766px;}
.x5_c00353{left:266.220000px;}
.x29_c00353{left:277.585500px;}
.x52_c00353{left:283.770000px;}
.x16_c00353{left:289.980000px;}
.x6_c00353{left:299.970000px;}
.x1e_c00353{left:306.720000px;}
.x1a_c00353{left:308.070000px;}
.x2a_c00353{left:311.935500px;}
.x42_c00353{left:320.015697px;}
.x4c_c00353{left:329.600050px;}
.x17_c00353{left:331.560000px;}
.x4f_c00353{left:333.720000px;}
.x2b_c00353{left:343.522500px;}
.x53_c00353{left:349.110000px;}
.x1f_c00353{left:355.320000px;}
.x38_c00353{left:363.701982px;}
.x7_c00353{left:365.850000px;}
.x50_c00353{left:375.840000px;}
.x8_c00353{left:389.610000px;}
.x2c_c00353{left:396.354000px;}
.x12_c00353{left:397.710000px;}
.x18_c00353{left:405.270000px;}
.x43_c00353{left:407.429107px;}
.x11_c00353{left:412.020000px;}
.x9_c00353{left:414.450000px;}
.x2d_c00353{left:418.327500px;}
.x13_c00353{left:422.280000px;}
.x39_c00353{left:432.557624px;}
.x2e_c00353{left:438.751500px;}
.x2f_c00353{left:448.828500px;}
.x1b_c00353{left:453.600000px;}
.x30_c00353{left:463.035000px;}
.xa_c00353{left:464.670000px;}
.x1c_c00353{left:481.680000px;}
.x20_c00353{left:487.080000px;}
.x31_c00353{left:488.949000px;}
.x24_c00353{left:513.648000px;}
.x3a_c00353{left:525.715860px;}
.x21_c00353{left:538.920000px;}
.x44_c00353{left:547.965966px;}
.x3b_c00353{left:551.098650px;}
.x32_c00353{left:552.520500px;}
.x3c_c00353{left:558.119839px;}
.x14_c00353{left:612.090000px;}
.x22_c00353{left:615.870000px;}
.x25_c00353{left:623.205000px;}
.x15_c00353{left:634.500000px;}
.x3d_c00353{left:642.098035px;}
.x26_c00353{left:650.220000px;}
.x33_c00353{left:655.329000px;}
.x34_c00353{left:681.075000px;}
.x23_c00353{left:691.740000px;}
.x27_c00353{left:692.913000px;}
.x35_c00353{left:854.596500px;}
.x3e_c00353{left:856.766306px;}
.x4d_c00353{left:881.010000px;}
.x4e_c00353{left:902.610000px;}
.x36_c00353{left:913.276500px;}
@media print{
.v0_c00353{vertical-align:0.000000pt;}
.ls0_c00353{letter-spacing:0.000000pt;}
.ws0_c00353{word-spacing:0.000000pt;}
.fs4_c00353{font-size:10.666667pt;}
.fs8_c00353{font-size:16.000000pt;}
.fs1_c00353{font-size:21.333333pt;}
.fs5_c00353{font-size:21.335136pt;}
.fs2_c00353{font-size:26.666667pt;}
.fs0_c00353{font-size:32.000000pt;}
.fs3_c00353{font-size:42.666667pt;}
.fs6_c00353{font-size:42.670272pt;}
.fsa_c00353{font-size:48.000000pt;}
.fs7_c00353{font-size:53.337840pt;}
.fs9_c00353{font-size:63.970873pt;}
.y0_c00353{bottom:0.000000pt;}
.y3e_c00353{bottom:479.520000pt;}
.y3d_c00353{bottom:480.958667pt;}
.y3f_c00353{bottom:485.734667pt;}
.y3c_c00353{bottom:516.001333pt;}
.y3b_c00353{bottom:560.640000pt;}
.y37_c00353{bottom:571.761333pt;}
.y38_c00353{bottom:573.827309pt;}
.y39_c00353{bottom:574.789545pt;}
.y3a_c00353{bottom:576.805185pt;}
.y36_c00353{bottom:604.080000pt;}
.y35_c00353{bottom:610.320000pt;}
.y34_c00353{bottom:614.160000pt;}
.y33_c00353{bottom:617.030667pt;}
.y32_c00353{bottom:623.019435pt;}
.y31_c00353{bottom:626.290740pt;}
.y30_c00353{bottom:627.267112pt;}
.y2f_c00353{bottom:629.909619pt;}
.y2e_c00353{bottom:633.651515pt;}
.y2d_c00353{bottom:634.333609pt;}
.y2c_c00353{bottom:635.051292pt;}
.y29_c00353{bottom:669.580015pt;}
.y28_c00353{bottom:669.580200pt;}
.y27_c00353{bottom:669.580244pt;}
.y2a_c00353{bottom:669.580392pt;}
.y1f_c00353{bottom:669.580407pt;}
.y2b_c00353{bottom:669.580420pt;}
.y22_c00353{bottom:669.580587pt;}
.y1e_c00353{bottom:669.580601pt;}
.y21_c00353{bottom:669.580604pt;}
.y25_c00353{bottom:669.580616pt;}
.y26_c00353{bottom:669.580697pt;}
.y24_c00353{bottom:669.580829pt;}
.y23_c00353{bottom:669.580900pt;}
.y1d_c00353{bottom:669.580972pt;}
.y20_c00353{bottom:669.581056pt;}
.ye_c00353{bottom:677.508000pt;}
.yf_c00353{bottom:678.022193pt;}
.y10_c00353{bottom:678.419127pt;}
.y11_c00353{bottom:678.784132pt;}
.y12_c00353{bottom:679.394629pt;}
.y13_c00353{bottom:679.648545pt;}
.y14_c00353{bottom:679.884556pt;}
.y15_c00353{bottom:680.001001pt;}
.y16_c00353{bottom:680.165165pt;}
.y17_c00353{bottom:680.464616pt;}
.y18_c00353{bottom:681.199220pt;}
.y19_c00353{bottom:682.387229pt;}
.y1a_c00353{bottom:682.684739pt;}
.y1b_c00353{bottom:684.689876pt;}
.y1c_c00353{bottom:685.367956pt;}
.ya_c00353{bottom:695.041333pt;}
.yb_c00353{bottom:696.600000pt;}
.yc_c00353{bottom:696.984000pt;}
.yd_c00353{bottom:697.590667pt;}
.y9_c00353{bottom:701.912000pt;}
.y8_c00353{bottom:734.508000pt;}
.y7_c00353{bottom:739.301333pt;}
.y6_c00353{bottom:743.497333pt;}
.y5_c00353{bottom:827.988000pt;}
.y4_c00353{bottom:987.370667pt;}
.y3_c00353{bottom:996.348000pt;}
.y2_c00353{bottom:1014.034667pt;}
.y1_c00353{bottom:1019.385333pt;}
.h6_c00353{height:10.666667pt;}
.ha_c00353{height:16.000000pt;}
.h3_c00353{height:21.333333pt;}
.h7_c00353{height:21.335136pt;}
.h4_c00353{height:26.666667pt;}
.h2_c00353{height:32.000000pt;}
.h5_c00353{height:42.666667pt;}
.h8_c00353{height:42.670272pt;}
.hc_c00353{height:48.000000pt;}
.h9_c00353{height:53.337840pt;}
.hb_c00353{height:63.970873pt;}
.h0_c00353{height:1112.400000pt;}
.h1_c00353{height:1112.666667pt;}
.w0_c00353{width:813.333333pt;}
.x0_c00353{left:0.000000pt;}
.xb_c00353{left:98.160000pt;}
.x1_c00353{left:99.600000pt;}
.xc_c00353{left:107.520000pt;}
.x2_c00353{left:127.200000pt;}
.xd_c00353{left:130.320000pt;}
.x3f_c00353{left:133.212677pt;}
.x49_c00353{left:140.286667pt;}
.xe_c00353{left:145.440000pt;}
.x40_c00353{left:154.326907pt;}
.x3_c00353{left:168.480000pt;}
.xf_c00353{left:171.840000pt;}
.x41_c00353{left:174.383161pt;}
.x37_c00353{left:184.799251pt;}
.x10_c00353{left:187.200000pt;}
.x4_c00353{left:193.440000pt;}
.x4a_c00353{left:202.829395pt;}
.x28_c00353{left:207.189333pt;}
.x45_c00353{left:216.240000pt;}
.x48_c00353{left:217.680000pt;}
.x46_c00353{left:220.080000pt;}
.x47_c00353{left:222.240000pt;}
.x1d_c00353{left:224.160000pt;}
.x51_c00353{left:225.360000pt;}
.x19_c00353{left:226.800000pt;}
.x4b_c00353{left:231.958903pt;}
.x5_c00353{left:236.640000pt;}
.x29_c00353{left:246.742667pt;}
.x52_c00353{left:252.240000pt;}
.x16_c00353{left:257.760000pt;}
.x6_c00353{left:266.640000pt;}
.x1e_c00353{left:272.640000pt;}
.x1a_c00353{left:273.840000pt;}
.x2a_c00353{left:277.276000pt;}
.x42_c00353{left:284.458397pt;}
.x4c_c00353{left:292.977823pt;}
.x17_c00353{left:294.720000pt;}
.x4f_c00353{left:296.640000pt;}
.x2b_c00353{left:305.353333pt;}
.x53_c00353{left:310.320000pt;}
.x1f_c00353{left:315.840000pt;}
.x38_c00353{left:323.290651pt;}
.x7_c00353{left:325.200000pt;}
.x50_c00353{left:334.080000pt;}
.x8_c00353{left:346.320000pt;}
.x2c_c00353{left:352.314667pt;}
.x12_c00353{left:353.520000pt;}
.x18_c00353{left:360.240000pt;}
.x43_c00353{left:362.159207pt;}
.x11_c00353{left:366.240000pt;}
.x9_c00353{left:368.400000pt;}
.x2d_c00353{left:371.846667pt;}
.x13_c00353{left:375.360000pt;}
.x39_c00353{left:384.495665pt;}
.x2e_c00353{left:390.001333pt;}
.x2f_c00353{left:398.958667pt;}
.x1b_c00353{left:403.200000pt;}
.x30_c00353{left:411.586667pt;}
.xa_c00353{left:413.040000pt;}
.x1c_c00353{left:428.160000pt;}
.x20_c00353{left:432.960000pt;}
.x31_c00353{left:434.621333pt;}
.x24_c00353{left:456.576000pt;}
.x3a_c00353{left:467.302987pt;}
.x21_c00353{left:479.040000pt;}
.x44_c00353{left:487.080859pt;}
.x3b_c00353{left:489.865467pt;}
.x32_c00353{left:491.129333pt;}
.x3c_c00353{left:496.106524pt;}
.x14_c00353{left:544.080000pt;}
.x22_c00353{left:547.440000pt;}
.x25_c00353{left:553.960000pt;}
.x15_c00353{left:564.000000pt;}
.x3d_c00353{left:570.753809pt;}
.x26_c00353{left:577.973333pt;}
.x33_c00353{left:582.514667pt;}
.x34_c00353{left:605.400000pt;}
.x23_c00353{left:614.880000pt;}
.x27_c00353{left:615.922667pt;}
.x35_c00353{left:759.641333pt;}
.x3e_c00353{left:761.570049pt;}
.x4d_c00353{left:783.120000pt;}
.x4e_c00353{left:802.320000pt;}
.x36_c00353{left:811.801333pt;}
}





/* 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_c00354 {
    display:none;
  }
  .loading-indicator_c00354.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00354 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_c00354 { 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_c00354" -> "#page-container .classname_c00354")
 */
.pf_c00354 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00354 { /* 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_c00354.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00354 { /* 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_c00354 { /* 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_c00354 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00354 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00354 {overflow:visible;}
  }
}
.c_c00354 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00354 { /* 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_c00354:after { /* webkit #35443 */
  content: '';
}
.t_c00354:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00354 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 */
}
.__c00354 { /* 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_c00354 { /* info for Javascript */
  display:none;
}
.l_c00354 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00354 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00354 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00354: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_c00354 {
    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_c00354.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00354.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_c00354 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00354{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00354;src:url('chunks/assets/font_53ec0c54e60da7c2d414b553.woff2')format("woff");}.ff1_c00354{font-family:ff1_c00354;line-height:1.000000;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;}
.m7f_c00354{transform:matrix(0.108347,0.006297,-0.014505,0.249579,0,0);-ms-transform:matrix(0.108347,0.006297,-0.014505,0.249579,0,0);-webkit-transform:matrix(0.108347,0.006297,-0.014505,0.249579,0,0);}
.m1_c00354{transform:matrix(0.125725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125725,0.000000,0.000000,0.250000,0,0);}
.m7_c00354{transform:matrix(0.127539,0.006000,-0.011749,0.249724,0,0);-ms-transform:matrix(0.127539,0.006000,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.127539,0.006000,-0.011749,0.249724,0,0);}
.m6_c00354{transform:matrix(0.130885,0.006158,-0.011749,0.249724,0,0);-ms-transform:matrix(0.130885,0.006158,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.130885,0.006158,-0.011749,0.249724,0,0);}
.ma_c00354{transform:matrix(0.133038,0.006259,-0.011749,0.249724,0,0);-ms-transform:matrix(0.133038,0.006259,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.133038,0.006259,-0.011749,0.249724,0,0);}
.mc_c00354{transform:matrix(0.135190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135190,0.000000,0.000000,0.250000,0,0);}
.m23_c00354{transform:matrix(0.138135,0.007613,-0.013757,0.249621,0,0);-ms-transform:matrix(0.138135,0.007613,-0.013757,0.249621,0,0);-webkit-transform:matrix(0.138135,0.007613,-0.013757,0.249621,0,0);}
.mbd_c00354{transform:matrix(0.139300,0.008514,-0.015252,0.249534,0,0);-ms-transform:matrix(0.139300,0.008514,-0.015252,0.249534,0,0);-webkit-transform:matrix(0.139300,0.008514,-0.015252,0.249534,0,0);}
.mf8_c00354{transform:matrix(0.149701,0.009300,-0.015501,0.249519,0,0);-ms-transform:matrix(0.149701,0.009300,-0.015501,0.249519,0,0);-webkit-transform:matrix(0.149701,0.009300,-0.015501,0.249519,0,0);}
.mf7_c00354{transform:matrix(0.152341,0.009464,-0.015501,0.249519,0,0);-ms-transform:matrix(0.152341,0.009464,-0.015501,0.249519,0,0);-webkit-transform:matrix(0.152341,0.009464,-0.015501,0.249519,0,0);}
.mf5_c00354{transform:matrix(0.157426,0.007722,-0.012248,0.249700,0,0);-ms-transform:matrix(0.157426,0.007722,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.157426,0.007722,-0.012248,0.249700,0,0);}
.mf6_c00354{transform:matrix(0.157576,0.009789,-0.015501,0.249519,0,0);-ms-transform:matrix(0.157576,0.009789,-0.015501,0.249519,0,0);-webkit-transform:matrix(0.157576,0.009789,-0.015501,0.249519,0,0);}
.m5c_c00354{transform:matrix(0.159939,0.009135,-0.014255,0.249593,0,0);-ms-transform:matrix(0.159939,0.009135,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.159939,0.009135,-0.014255,0.249593,0,0);}
.mfe_c00354{transform:matrix(0.164752,0.010235,-0.015501,0.249519,0,0);-ms-transform:matrix(0.164752,0.010235,-0.015501,0.249519,0,0);-webkit-transform:matrix(0.164752,0.010235,-0.015501,0.249519,0,0);}
.me0_c00354{transform:matrix(0.165883,0.008967,-0.013494,0.249636,0,0);-ms-transform:matrix(0.165883,0.008967,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.165883,0.008967,-0.013494,0.249636,0,0);}
.mf9_c00354{transform:matrix(0.170142,0.010570,-0.015501,0.249519,0,0);-ms-transform:matrix(0.170142,0.010570,-0.015501,0.249519,0,0);-webkit-transform:matrix(0.170142,0.010570,-0.015501,0.249519,0,0);}
.mf4_c00354{transform:matrix(0.172288,0.008451,-0.012248,0.249700,0,0);-ms-transform:matrix(0.172288,0.008451,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.172288,0.008451,-0.012248,0.249700,0,0);}
.me7_c00354{transform:matrix(0.173032,0.009353,-0.013494,0.249636,0,0);-ms-transform:matrix(0.173032,0.009353,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.173032,0.009353,-0.013494,0.249636,0,0);}
.m72_c00354{transform:matrix(0.174715,0.005771,-0.008254,0.249864,0,0);-ms-transform:matrix(0.174715,0.005771,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.174715,0.005771,-0.008254,0.249864,0,0);}
.me3_c00354{transform:matrix(0.176083,0.009518,-0.013494,0.249636,0,0);-ms-transform:matrix(0.176083,0.009518,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.176083,0.009518,-0.013494,0.249636,0,0);}
.m8_c00354{transform:matrix(0.177703,0.008360,-0.011749,0.249724,0,0);-ms-transform:matrix(0.177703,0.008360,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.177703,0.008360,-0.011749,0.249724,0,0);}
.m87_c00354{transform:matrix(0.179447,0.006646,-0.009253,0.249829,0,0);-ms-transform:matrix(0.179447,0.006646,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.179447,0.006646,-0.009253,0.249829,0,0);}
.m83_c00354{transform:matrix(0.180670,0.010500,-0.014505,0.249579,0,0);-ms-transform:matrix(0.180670,0.010500,-0.014505,0.249579,0,0);-webkit-transform:matrix(0.180670,0.010500,-0.014505,0.249579,0,0);}
.m6f_c00354{transform:matrix(0.182056,0.006014,-0.008254,0.249864,0,0);-ms-transform:matrix(0.182056,0.006014,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.182056,0.006014,-0.008254,0.249864,0,0);}
.m102_c00354{transform:matrix(0.184479,0.011461,-0.015501,0.249519,0,0);-ms-transform:matrix(0.184479,0.011461,-0.015501,0.249519,0,0);-webkit-transform:matrix(0.184479,0.011461,-0.015501,0.249519,0,0);}
.m80_c00354{transform:matrix(0.185637,0.010789,-0.014505,0.249579,0,0);-ms-transform:matrix(0.185637,0.010789,-0.014505,0.249579,0,0);-webkit-transform:matrix(0.185637,0.010789,-0.014505,0.249579,0,0);}
.m4d_c00354{transform:matrix(0.185696,0.007064,-0.009503,0.249819,0,0);-ms-transform:matrix(0.185696,0.007064,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.185696,0.007064,-0.009503,0.249819,0,0);}
.mdf_c00354{transform:matrix(0.185809,0.010044,-0.013494,0.249636,0,0);-ms-transform:matrix(0.185809,0.010044,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.185809,0.010044,-0.013494,0.249636,0,0);}
.m93_c00354{transform:matrix(0.186302,0.006900,-0.009253,0.249829,0,0);-ms-transform:matrix(0.186302,0.006900,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.186302,0.006900,-0.009253,0.249829,0,0);}
.m49_c00354{transform:matrix(0.186330,0.007088,-0.009503,0.249819,0,0);-ms-transform:matrix(0.186330,0.007088,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.186330,0.007088,-0.009503,0.249819,0,0);}
.m3f_c00354{transform:matrix(0.187185,0.010691,-0.014255,0.249593,0,0);-ms-transform:matrix(0.187185,0.010691,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.187185,0.010691,-0.014255,0.249593,0,0);}
.m37_c00354{transform:matrix(0.187694,0.010720,-0.014255,0.249593,0,0);-ms-transform:matrix(0.187694,0.010720,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.187694,0.010720,-0.014255,0.249593,0,0);}
.m5_c00354{transform:matrix(0.188636,0.008875,-0.011749,0.249724,0,0);-ms-transform:matrix(0.188636,0.008875,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.188636,0.008875,-0.011749,0.249724,0,0);}
.m39_c00354{transform:matrix(0.188962,0.010792,-0.014255,0.249593,0,0);-ms-transform:matrix(0.188962,0.010792,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.188962,0.010792,-0.014255,0.249593,0,0);}
.m2_c00354{transform:matrix(0.189855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189855,0.000000,0.000000,0.250000,0,0);}
.m3c_c00354{transform:matrix(0.190520,0.010881,-0.014255,0.249593,0,0);-ms-transform:matrix(0.190520,0.010881,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.190520,0.010881,-0.014255,0.249593,0,0);}
.me6_c00354{transform:matrix(0.193128,0.010439,-0.013494,0.249636,0,0);-ms-transform:matrix(0.193128,0.010439,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.193128,0.010439,-0.013494,0.249636,0,0);}
.me1_c00354{transform:matrix(0.193662,0.010468,-0.013494,0.249636,0,0);-ms-transform:matrix(0.193662,0.010468,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.193662,0.010468,-0.013494,0.249636,0,0);}
.mfa_c00354{transform:matrix(0.193722,0.012035,-0.015501,0.249519,0,0);-ms-transform:matrix(0.193722,0.012035,-0.015501,0.249519,0,0);-webkit-transform:matrix(0.193722,0.012035,-0.015501,0.249519,0,0);}
.mc3_c00354{transform:matrix(0.194178,0.011869,-0.015252,0.249534,0,0);-ms-transform:matrix(0.194178,0.011869,-0.015252,0.249534,0,0);-webkit-transform:matrix(0.194178,0.011869,-0.015252,0.249534,0,0);}
.m9_c00354{transform:matrix(0.195958,0.009219,-0.011749,0.249724,0,0);-ms-transform:matrix(0.195958,0.009219,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.195958,0.009219,-0.011749,0.249724,0,0);}
.m4a_c00354{transform:matrix(0.196033,0.007457,-0.009503,0.249819,0,0);-ms-transform:matrix(0.196033,0.007457,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.196033,0.007457,-0.009503,0.249819,0,0);}
.md3_c00354{transform:matrix(0.196578,0.010626,-0.013494,0.249636,0,0);-ms-transform:matrix(0.196578,0.010626,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.196578,0.010626,-0.013494,0.249636,0,0);}
.m8e_c00354{transform:matrix(0.197185,0.007303,-0.009253,0.249829,0,0);-ms-transform:matrix(0.197185,0.007303,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.197185,0.007303,-0.009253,0.249829,0,0);}
.m6a_c00354{transform:matrix(0.197802,0.006534,-0.008254,0.249864,0,0);-ms-transform:matrix(0.197802,0.006534,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.197802,0.006534,-0.008254,0.249864,0,0);}
.m34_c00354{transform:matrix(0.198222,0.011321,-0.014255,0.249593,0,0);-ms-transform:matrix(0.198222,0.011321,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.198222,0.011321,-0.014255,0.249593,0,0);}
.m71_c00354{transform:matrix(0.198612,0.006561,-0.008254,0.249864,0,0);-ms-transform:matrix(0.198612,0.006561,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.198612,0.006561,-0.008254,0.249864,0,0);}
.me5_c00354{transform:matrix(0.198640,0.010737,-0.013494,0.249636,0,0);-ms-transform:matrix(0.198640,0.010737,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.198640,0.010737,-0.013494,0.249636,0,0);}
.me2_c00354{transform:matrix(0.199014,0.010758,-0.013494,0.249636,0,0);-ms-transform:matrix(0.199014,0.010758,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.199014,0.010758,-0.013494,0.249636,0,0);}
.m90_c00354{transform:matrix(0.199193,0.007378,-0.009253,0.249829,0,0);-ms-transform:matrix(0.199193,0.007378,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.199193,0.007378,-0.009253,0.249829,0,0);}
.mc8_c00354{transform:matrix(0.199261,0.014390,-0.018007,0.249351,0,0);-ms-transform:matrix(0.199261,0.014390,-0.018007,0.249351,0,0);-webkit-transform:matrix(0.199261,0.014390,-0.018007,0.249351,0,0);}
.m3b_c00354{transform:matrix(0.200049,0.011426,-0.014255,0.249593,0,0);-ms-transform:matrix(0.200049,0.011426,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.200049,0.011426,-0.014255,0.249593,0,0);}
.m82_c00354{transform:matrix(0.200177,0.011634,-0.014505,0.249579,0,0);-ms-transform:matrix(0.200177,0.011634,-0.014505,0.249579,0,0);-webkit-transform:matrix(0.200177,0.011634,-0.014505,0.249579,0,0);}
.m35_c00354{transform:matrix(0.200977,0.011479,-0.014255,0.249593,0,0);-ms-transform:matrix(0.200977,0.011479,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.200977,0.011479,-0.014255,0.249593,0,0);}
.m95_c00354{transform:matrix(0.202401,0.010333,-0.012746,0.249675,0,0);-ms-transform:matrix(0.202401,0.010333,-0.012746,0.249675,0,0);-webkit-transform:matrix(0.202401,0.010333,-0.012746,0.249675,0,0);}
.mfc_c00354{transform:matrix(0.202659,0.012590,-0.015501,0.249519,0,0);-ms-transform:matrix(0.202659,0.012590,-0.015501,0.249519,0,0);-webkit-transform:matrix(0.202659,0.012590,-0.015501,0.249519,0,0);}
.m81_c00354{transform:matrix(0.202873,0.011790,-0.014505,0.249579,0,0);-ms-transform:matrix(0.202873,0.011790,-0.014505,0.249579,0,0);-webkit-transform:matrix(0.202873,0.011790,-0.014505,0.249579,0,0);}
.mc2_c00354{transform:matrix(0.202976,0.012406,-0.015252,0.249534,0,0);-ms-transform:matrix(0.202976,0.012406,-0.015252,0.249534,0,0);-webkit-transform:matrix(0.202976,0.012406,-0.015252,0.249534,0,0);}
.m48_c00354{transform:matrix(0.203248,0.007731,-0.009503,0.249819,0,0);-ms-transform:matrix(0.203248,0.007731,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.203248,0.007731,-0.009503,0.249819,0,0);}
.m6e_c00354{transform:matrix(0.204039,0.006740,-0.008254,0.249864,0,0);-ms-transform:matrix(0.204039,0.006740,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.204039,0.006740,-0.008254,0.249864,0,0);}
.me4_c00354{transform:matrix(0.204791,0.011070,-0.013494,0.249636,0,0);-ms-transform:matrix(0.204791,0.011070,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.204791,0.011070,-0.013494,0.249636,0,0);}
.m68_c00354{transform:matrix(0.205658,0.006794,-0.008254,0.249864,0,0);-ms-transform:matrix(0.205658,0.006794,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.205658,0.006794,-0.008254,0.249864,0,0);}
.m10_c00354{transform:matrix(0.206095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206095,0.000000,0.000000,0.250000,0,0);}
.mfb_c00354{transform:matrix(0.206098,0.012804,-0.015501,0.249519,0,0);-ms-transform:matrix(0.206098,0.012804,-0.015501,0.249519,0,0);-webkit-transform:matrix(0.206098,0.012804,-0.015501,0.249519,0,0);}
.m4b_c00354{transform:matrix(0.206311,0.007848,-0.009503,0.249819,0,0);-ms-transform:matrix(0.206311,0.007848,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.206311,0.007848,-0.009503,0.249819,0,0);}
.m84_c00354{transform:matrix(0.207270,0.012046,-0.014505,0.249579,0,0);-ms-transform:matrix(0.207270,0.012046,-0.014505,0.249579,0,0);-webkit-transform:matrix(0.207270,0.012046,-0.014505,0.249579,0,0);}
.mb7_c00354{transform:matrix(0.208494,0.009600,-0.011499,0.249735,0,0);-ms-transform:matrix(0.208494,0.009600,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.208494,0.009600,-0.011499,0.249735,0,0);}
.m66_c00354{transform:matrix(0.209106,0.006907,-0.008254,0.249864,0,0);-ms-transform:matrix(0.209106,0.006907,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.209106,0.006907,-0.008254,0.249864,0,0);}
.m30_c00354{transform:matrix(0.209204,0.011949,-0.014255,0.249593,0,0);-ms-transform:matrix(0.209204,0.011949,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.209204,0.011949,-0.014255,0.249593,0,0);}
.m73_c00354{transform:matrix(0.209606,0.006924,-0.008254,0.249864,0,0);-ms-transform:matrix(0.209606,0.006924,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.209606,0.006924,-0.008254,0.249864,0,0);}
.m70_c00354{transform:matrix(0.209736,0.006928,-0.008254,0.249864,0,0);-ms-transform:matrix(0.209736,0.006928,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.209736,0.006928,-0.008254,0.249864,0,0);}
.mb4_c00354{transform:matrix(0.209828,0.009662,-0.011499,0.249735,0,0);-ms-transform:matrix(0.209828,0.009662,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.209828,0.009662,-0.011499,0.249735,0,0);}
.m6b_c00354{transform:matrix(0.210495,0.006953,-0.008254,0.249864,0,0);-ms-transform:matrix(0.210495,0.006953,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.210495,0.006953,-0.008254,0.249864,0,0);}
.mc5_c00354{transform:matrix(0.210637,0.012875,-0.015252,0.249534,0,0);-ms-transform:matrix(0.210637,0.012875,-0.015252,0.249534,0,0);-webkit-transform:matrix(0.210637,0.012875,-0.015252,0.249534,0,0);}
.m3a_c00354{transform:matrix(0.211470,0.012078,-0.014255,0.249593,0,0);-ms-transform:matrix(0.211470,0.012078,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.211470,0.012078,-0.014255,0.249593,0,0);}
.mbb_c00354{transform:matrix(0.211706,0.009748,-0.011499,0.249735,0,0);-ms-transform:matrix(0.211706,0.009748,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.211706,0.009748,-0.011499,0.249735,0,0);}
.m1e_c00354{transform:matrix(0.211994,0.009337,-0.011000,0.249758,0,0);-ms-transform:matrix(0.211994,0.009337,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.211994,0.009337,-0.011000,0.249758,0,0);}
.m101_c00354{transform:matrix(0.212695,0.013214,-0.015501,0.249519,0,0);-ms-transform:matrix(0.212695,0.013214,-0.015501,0.249519,0,0);-webkit-transform:matrix(0.212695,0.013214,-0.015501,0.249519,0,0);}
.mbe_c00354{transform:matrix(0.213092,0.013025,-0.015252,0.249534,0,0);-ms-transform:matrix(0.213092,0.013025,-0.015252,0.249534,0,0);-webkit-transform:matrix(0.213092,0.013025,-0.015252,0.249534,0,0);}
.mc6_c00354{transform:matrix(0.213112,0.013026,-0.015252,0.249534,0,0);-ms-transform:matrix(0.213112,0.013026,-0.015252,0.249534,0,0);-webkit-transform:matrix(0.213112,0.013026,-0.015252,0.249534,0,0);}
.mff_c00354{transform:matrix(0.213149,0.013242,-0.015501,0.249519,0,0);-ms-transform:matrix(0.213149,0.013242,-0.015501,0.249519,0,0);-webkit-transform:matrix(0.213149,0.013242,-0.015501,0.249519,0,0);}
.mde_c00354{transform:matrix(0.214487,0.011594,-0.013494,0.249636,0,0);-ms-transform:matrix(0.214487,0.011594,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.214487,0.011594,-0.013494,0.249636,0,0);}
.m6c_c00354{transform:matrix(0.215073,0.007105,-0.008254,0.249864,0,0);-ms-transform:matrix(0.215073,0.007105,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.215073,0.007105,-0.008254,0.249864,0,0);}
.m36_c00354{transform:matrix(0.215134,0.012287,-0.014255,0.249593,0,0);-ms-transform:matrix(0.215134,0.012287,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.215134,0.012287,-0.014255,0.249593,0,0);}
.m94_c00354{transform:matrix(0.215502,0.007982,-0.009253,0.249829,0,0);-ms-transform:matrix(0.215502,0.007982,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.215502,0.007982,-0.009253,0.249829,0,0);}
.m40_c00354{transform:matrix(0.215853,0.012328,-0.014255,0.249593,0,0);-ms-transform:matrix(0.215853,0.012328,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.215853,0.012328,-0.014255,0.249593,0,0);}
.m4e_c00354{transform:matrix(0.216713,0.008243,-0.009503,0.249819,0,0);-ms-transform:matrix(0.216713,0.008243,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.216713,0.008243,-0.009503,0.249819,0,0);}
.m18_c00354{transform:matrix(0.216725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216725,0.000000,0.000000,0.250000,0,0);}
.me_c00354{transform:matrix(0.217035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217035,0.000000,0.000000,0.250000,0,0);}
.m38_c00354{transform:matrix(0.217111,0.012400,-0.014255,0.249593,0,0);-ms-transform:matrix(0.217111,0.012400,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.217111,0.012400,-0.014255,0.249593,0,0);}
.m8d_c00354{transform:matrix(0.217471,0.008054,-0.009253,0.249829,0,0);-ms-transform:matrix(0.217471,0.008054,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.217471,0.008054,-0.009253,0.249829,0,0);}
.m64_c00354{transform:matrix(0.217950,0.012448,-0.014255,0.249593,0,0);-ms-transform:matrix(0.217950,0.012448,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.217950,0.012448,-0.014255,0.249593,0,0);}
.m2f_c00354{transform:matrix(0.218264,0.012466,-0.014255,0.249593,0,0);-ms-transform:matrix(0.218264,0.012466,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.218264,0.012466,-0.014255,0.249593,0,0);}
.m89_c00354{transform:matrix(0.218600,0.008096,-0.009253,0.249829,0,0);-ms-transform:matrix(0.218600,0.008096,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.218600,0.008096,-0.009253,0.249829,0,0);}
.m67_c00354{transform:matrix(0.218636,0.007222,-0.008254,0.249864,0,0);-ms-transform:matrix(0.218636,0.007222,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.218636,0.007222,-0.008254,0.249864,0,0);}
.m91_c00354{transform:matrix(0.218665,0.008099,-0.009253,0.249829,0,0);-ms-transform:matrix(0.218665,0.008099,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.218665,0.008099,-0.009253,0.249829,0,0);}
.m4c_c00354{transform:matrix(0.218837,0.008324,-0.009503,0.249819,0,0);-ms-transform:matrix(0.218837,0.008324,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.218837,0.008324,-0.009503,0.249819,0,0);}
.m88_c00354{transform:matrix(0.218850,0.008106,-0.009253,0.249829,0,0);-ms-transform:matrix(0.218850,0.008106,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.218850,0.008106,-0.009253,0.249829,0,0);}
.mc9_c00354{transform:matrix(0.218980,0.015814,-0.018007,0.249351,0,0);-ms-transform:matrix(0.218980,0.015814,-0.018007,0.249351,0,0);-webkit-transform:matrix(0.218980,0.015814,-0.018007,0.249351,0,0);}
.m32_c00354{transform:matrix(0.219233,0.012521,-0.014255,0.249593,0,0);-ms-transform:matrix(0.219233,0.012521,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.219233,0.012521,-0.014255,0.249593,0,0);}
.ma9_c00354{transform:matrix(0.220000,0.014990,-0.016995,0.249422,0,0);-ms-transform:matrix(0.220000,0.014990,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.220000,0.014990,-0.016995,0.249422,0,0);}
.m13_c00354{transform:matrix(0.220045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220045,0.000000,0.000000,0.250000,0,0);}
.md4_c00354{transform:matrix(0.220258,0.011906,-0.013494,0.249636,0,0);-ms-transform:matrix(0.220258,0.011906,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.220258,0.011906,-0.013494,0.249636,0,0);}
.m97_c00354{transform:matrix(0.220663,0.011265,-0.012746,0.249675,0,0);-ms-transform:matrix(0.220663,0.011265,-0.012746,0.249675,0,0);-webkit-transform:matrix(0.220663,0.011265,-0.012746,0.249675,0,0);}
.maa_c00354{transform:matrix(0.220863,0.015049,-0.016995,0.249422,0,0);-ms-transform:matrix(0.220863,0.015049,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.220863,0.015049,-0.016995,0.249422,0,0);}
.m3e_c00354{transform:matrix(0.221804,0.012668,-0.014255,0.249593,0,0);-ms-transform:matrix(0.221804,0.012668,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.221804,0.012668,-0.014255,0.249593,0,0);}
.m12_c00354{transform:matrix(0.223405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223405,0.000000,0.000000,0.250000,0,0);}
.m3d_c00354{transform:matrix(0.223546,0.012768,-0.014255,0.249593,0,0);-ms-transform:matrix(0.223546,0.012768,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.223546,0.012768,-0.014255,0.249593,0,0);}
.m8f_c00354{transform:matrix(0.223877,0.008292,-0.009253,0.249829,0,0);-ms-transform:matrix(0.223877,0.008292,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.223877,0.008292,-0.009253,0.249829,0,0);}
.m50_c00354{transform:matrix(0.224041,0.003585,-0.003999,0.249968,0,0);-ms-transform:matrix(0.224041,0.003585,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.224041,0.003585,-0.003999,0.249968,0,0);}
.mb0_c00354{transform:matrix(0.224160,0.015273,-0.016995,0.249422,0,0);-ms-transform:matrix(0.224160,0.015273,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.224160,0.015273,-0.016995,0.249422,0,0);}
.m98_c00354{transform:matrix(0.224617,0.011467,-0.012746,0.249675,0,0);-ms-transform:matrix(0.224617,0.011467,-0.012746,0.249675,0,0);-webkit-transform:matrix(0.224617,0.011467,-0.012746,0.249675,0,0);}
.m100_c00354{transform:matrix(0.224842,0.013968,-0.015501,0.249519,0,0);-ms-transform:matrix(0.224842,0.013968,-0.015501,0.249519,0,0);-webkit-transform:matrix(0.224842,0.013968,-0.015501,0.249519,0,0);}
.m96_c00354{transform:matrix(0.225007,0.011487,-0.012746,0.249675,0,0);-ms-transform:matrix(0.225007,0.011487,-0.012746,0.249675,0,0);-webkit-transform:matrix(0.225007,0.011487,-0.012746,0.249675,0,0);}
.ma5_c00354{transform:matrix(0.225542,0.015368,-0.016995,0.249422,0,0);-ms-transform:matrix(0.225542,0.015368,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.225542,0.015368,-0.016995,0.249422,0,0);}
.m85_c00354{transform:matrix(0.225690,0.008359,-0.009253,0.249829,0,0);-ms-transform:matrix(0.225690,0.008359,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.225690,0.008359,-0.009253,0.249829,0,0);}
.m21_c00354{transform:matrix(0.226525,0.009977,-0.011000,0.249758,0,0);-ms-transform:matrix(0.226525,0.009977,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.226525,0.009977,-0.011000,0.249758,0,0);}
.m8b_c00354{transform:matrix(0.227079,0.008410,-0.009253,0.249829,0,0);-ms-transform:matrix(0.227079,0.008410,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.227079,0.008410,-0.009253,0.249829,0,0);}
.m61_c00354{transform:matrix(0.227789,0.013010,-0.014255,0.249593,0,0);-ms-transform:matrix(0.227789,0.013010,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.227789,0.013010,-0.014255,0.249593,0,0);}
.m2b_c00354{transform:matrix(0.228443,0.013047,-0.014255,0.249593,0,0);-ms-transform:matrix(0.228443,0.013047,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.228443,0.013047,-0.014255,0.249593,0,0);}
.m1c_c00354{transform:matrix(0.228593,0.010068,-0.011000,0.249758,0,0);-ms-transform:matrix(0.228593,0.010068,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.228593,0.010068,-0.011000,0.249758,0,0);}
.m26_c00354{transform:matrix(0.229177,0.012630,-0.013757,0.249621,0,0);-ms-transform:matrix(0.229177,0.012630,-0.013757,0.249621,0,0);-webkit-transform:matrix(0.229177,0.012630,-0.013757,0.249621,0,0);}
.mdc_c00354{transform:matrix(0.229255,0.012392,-0.013494,0.249636,0,0);-ms-transform:matrix(0.229255,0.012392,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.229255,0.012392,-0.013494,0.249636,0,0);}
.mca_c00354{transform:matrix(0.229891,0.016602,-0.018007,0.249351,0,0);-ms-transform:matrix(0.229891,0.016602,-0.018007,0.249351,0,0);-webkit-transform:matrix(0.229891,0.016602,-0.018007,0.249351,0,0);}
.m47_c00354{transform:matrix(0.229916,0.011737,-0.012746,0.249675,0,0);-ms-transform:matrix(0.229916,0.011737,-0.012746,0.249675,0,0);-webkit-transform:matrix(0.229916,0.011737,-0.012746,0.249675,0,0);}
.m8c_c00354{transform:matrix(0.230242,0.008527,-0.009253,0.249829,0,0);-ms-transform:matrix(0.230242,0.008527,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.230242,0.008527,-0.009253,0.249829,0,0);}
.mc7_c00354{transform:matrix(0.230530,0.016648,-0.018007,0.249351,0,0);-ms-transform:matrix(0.230530,0.016648,-0.018007,0.249351,0,0);-webkit-transform:matrix(0.230530,0.016648,-0.018007,0.249351,0,0);}
.m8a_c00354{transform:matrix(0.230757,0.008547,-0.009253,0.249829,0,0);-ms-transform:matrix(0.230757,0.008547,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.230757,0.008547,-0.009253,0.249829,0,0);}
.m16_c00354{transform:matrix(0.230915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230915,0.000000,0.000000,0.250000,0,0);}
.m92_c00354{transform:matrix(0.231471,0.008573,-0.009253,0.249829,0,0);-ms-transform:matrix(0.231471,0.008573,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.231471,0.008573,-0.009253,0.249829,0,0);}
.m33_c00354{transform:matrix(0.231757,0.013237,-0.014255,0.249593,0,0);-ms-transform:matrix(0.231757,0.013237,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.231757,0.013237,-0.014255,0.249593,0,0);}
.mda_c00354{transform:matrix(0.231946,0.012538,-0.013494,0.249636,0,0);-ms-transform:matrix(0.231946,0.012538,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.231946,0.012538,-0.013494,0.249636,0,0);}
.m9a_c00354{transform:matrix(0.232177,0.015820,-0.016995,0.249422,0,0);-ms-transform:matrix(0.232177,0.015820,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.232177,0.015820,-0.016995,0.249422,0,0);}
.mc1_c00354{transform:matrix(0.232182,0.014191,-0.015252,0.249534,0,0);-ms-transform:matrix(0.232182,0.014191,-0.015252,0.249534,0,0);-webkit-transform:matrix(0.232182,0.014191,-0.015252,0.249534,0,0);}
.m99_c00354{transform:matrix(0.232402,0.011864,-0.012746,0.249675,0,0);-ms-transform:matrix(0.232402,0.011864,-0.012746,0.249675,0,0);-webkit-transform:matrix(0.232402,0.011864,-0.012746,0.249675,0,0);}
.m69_c00354{transform:matrix(0.232968,0.007696,-0.008254,0.249864,0,0);-ms-transform:matrix(0.232968,0.007696,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.232968,0.007696,-0.008254,0.249864,0,0);}
.mf0_c00354{transform:matrix(0.233391,0.011915,-0.012746,0.249675,0,0);-ms-transform:matrix(0.233391,0.011915,-0.012746,0.249675,0,0);-webkit-transform:matrix(0.233391,0.011915,-0.012746,0.249675,0,0);}
.m24_c00354{transform:matrix(0.234429,0.012919,-0.013757,0.249621,0,0);-ms-transform:matrix(0.234429,0.012919,-0.013757,0.249621,0,0);-webkit-transform:matrix(0.234429,0.012919,-0.013757,0.249621,0,0);}
.m86_c00354{transform:matrix(0.234489,0.008685,-0.009253,0.249829,0,0);-ms-transform:matrix(0.234489,0.008685,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.234489,0.008685,-0.009253,0.249829,0,0);}
.md8_c00354{transform:matrix(0.234513,0.012676,-0.013494,0.249636,0,0);-ms-transform:matrix(0.234513,0.012676,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.234513,0.012676,-0.013494,0.249636,0,0);}
.m28_c00354{transform:matrix(0.235558,0.012982,-0.013757,0.249621,0,0);-ms-transform:matrix(0.235558,0.012982,-0.013757,0.249621,0,0);-webkit-transform:matrix(0.235558,0.012982,-0.013757,0.249621,0,0);}
.m45_c00354{transform:matrix(0.235608,0.012028,-0.012746,0.249675,0,0);-ms-transform:matrix(0.235608,0.012028,-0.012746,0.249675,0,0);-webkit-transform:matrix(0.235608,0.012028,-0.012746,0.249675,0,0);}
.md9_c00354{transform:matrix(0.236260,0.012771,-0.013494,0.249636,0,0);-ms-transform:matrix(0.236260,0.012771,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.236260,0.012771,-0.013494,0.249636,0,0);}
.ma1_c00354{transform:matrix(0.236517,0.016115,-0.016995,0.249422,0,0);-ms-transform:matrix(0.236517,0.016115,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.236517,0.016115,-0.016995,0.249422,0,0);}
.mf3_c00354{transform:matrix(0.236556,0.011603,-0.012248,0.249700,0,0);-ms-transform:matrix(0.236556,0.011603,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.236556,0.011603,-0.012248,0.249700,0,0);}
.mb6_c00354{transform:matrix(0.236784,0.010903,-0.011499,0.249735,0,0);-ms-transform:matrix(0.236784,0.010903,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.236784,0.010903,-0.011499,0.249735,0,0);}
.mc4_c00354{transform:matrix(0.236858,0.014477,-0.015252,0.249534,0,0);-ms-transform:matrix(0.236858,0.014477,-0.015252,0.249534,0,0);-webkit-transform:matrix(0.236858,0.014477,-0.015252,0.249534,0,0);}
.m2c_c00354{transform:matrix(0.237758,0.013579,-0.014255,0.249593,0,0);-ms-transform:matrix(0.237758,0.013579,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.237758,0.013579,-0.014255,0.249593,0,0);}
.m41_c00354{transform:matrix(0.238426,0.013618,-0.014255,0.249593,0,0);-ms-transform:matrix(0.238426,0.013618,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.238426,0.013618,-0.014255,0.249593,0,0);}
.m19_c00354{transform:matrix(0.239063,0.010529,-0.011000,0.249758,0,0);-ms-transform:matrix(0.239063,0.010529,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.239063,0.010529,-0.011000,0.249758,0,0);}
.mb5_c00354{transform:matrix(0.239082,0.011009,-0.011499,0.249735,0,0);-ms-transform:matrix(0.239082,0.011009,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.239082,0.011009,-0.011499,0.249735,0,0);}
.m7e_c00354{transform:matrix(0.239241,0.013904,-0.014505,0.249579,0,0);-ms-transform:matrix(0.239241,0.013904,-0.014505,0.249579,0,0);-webkit-transform:matrix(0.239241,0.013904,-0.014505,0.249579,0,0);}
.mae_c00354{transform:matrix(0.239355,0.016309,-0.016995,0.249422,0,0);-ms-transform:matrix(0.239355,0.016309,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.239355,0.016309,-0.016995,0.249422,0,0);}
.md5_c00354{transform:matrix(0.239560,0.012949,-0.013494,0.249636,0,0);-ms-transform:matrix(0.239560,0.012949,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.239560,0.012949,-0.013494,0.249636,0,0);}
.md0_c00354{transform:matrix(0.239815,0.017319,-0.018007,0.249351,0,0);-ms-transform:matrix(0.239815,0.017319,-0.018007,0.249351,0,0);-webkit-transform:matrix(0.239815,0.017319,-0.018007,0.249351,0,0);}
.ma4_c00354{transform:matrix(0.239884,0.016345,-0.016995,0.249422,0,0);-ms-transform:matrix(0.239884,0.016345,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.239884,0.016345,-0.016995,0.249422,0,0);}
.mcb_c00354{transform:matrix(0.240035,0.017335,-0.018007,0.249351,0,0);-ms-transform:matrix(0.240035,0.017335,-0.018007,0.249351,0,0);-webkit-transform:matrix(0.240035,0.017335,-0.018007,0.249351,0,0);}
.mb9_c00354{transform:matrix(0.240415,0.011070,-0.011499,0.249735,0,0);-ms-transform:matrix(0.240415,0.011070,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.240415,0.011070,-0.011499,0.249735,0,0);}
.m31_c00354{transform:matrix(0.240418,0.013731,-0.014255,0.249593,0,0);-ms-transform:matrix(0.240418,0.013731,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.240418,0.013731,-0.014255,0.249593,0,0);}
.m52_c00354{transform:matrix(0.240999,0.003856,-0.003999,0.249968,0,0);-ms-transform:matrix(0.240999,0.003856,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.240999,0.003856,-0.003999,0.249968,0,0);}
.m6d_c00354{transform:matrix(0.241113,0.007965,-0.008254,0.249864,0,0);-ms-transform:matrix(0.241113,0.007965,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.241113,0.007965,-0.008254,0.249864,0,0);}
.m5d_c00354{transform:matrix(0.241521,0.013794,-0.014255,0.249593,0,0);-ms-transform:matrix(0.241521,0.013794,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.241521,0.013794,-0.014255,0.249593,0,0);}
.md1_c00354{transform:matrix(0.242863,0.017539,-0.018007,0.249351,0,0);-ms-transform:matrix(0.242863,0.017539,-0.018007,0.249351,0,0);-webkit-transform:matrix(0.242863,0.017539,-0.018007,0.249351,0,0);}
.m1b_c00354{transform:matrix(0.243514,0.010725,-0.011000,0.249758,0,0);-ms-transform:matrix(0.243514,0.010725,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.243514,0.010725,-0.011000,0.249758,0,0);}
.mac_c00354{transform:matrix(0.243730,0.016607,-0.016995,0.249422,0,0);-ms-transform:matrix(0.243730,0.016607,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.243730,0.016607,-0.016995,0.249422,0,0);}
.m7d_c00354{transform:matrix(0.243859,0.014172,-0.014505,0.249579,0,0);-ms-transform:matrix(0.243859,0.014172,-0.014505,0.249579,0,0);-webkit-transform:matrix(0.243859,0.014172,-0.014505,0.249579,0,0);}
.mba_c00354{transform:matrix(0.245250,0.011293,-0.011499,0.249735,0,0);-ms-transform:matrix(0.245250,0.011293,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.245250,0.011293,-0.011499,0.249735,0,0);}
.m55_c00354{transform:matrix(0.245477,0.013269,-0.013494,0.249636,0,0);-ms-transform:matrix(0.245477,0.013269,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.245477,0.013269,-0.013494,0.249636,0,0);}
.m25_c00354{transform:matrix(0.245647,0.013538,-0.013757,0.249621,0,0);-ms-transform:matrix(0.245647,0.013538,-0.013757,0.249621,0,0);-webkit-transform:matrix(0.245647,0.013538,-0.013757,0.249621,0,0);}
.mf_c00354{transform:matrix(0.245770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245770,0.000000,0.000000,0.250000,0,0);}
.m7c_c00354{transform:matrix(0.246654,0.014335,-0.014505,0.249579,0,0);-ms-transform:matrix(0.246654,0.014335,-0.014505,0.249579,0,0);-webkit-transform:matrix(0.246654,0.014335,-0.014505,0.249579,0,0);}
.ma8_c00354{transform:matrix(0.246688,0.016808,-0.016995,0.249422,0,0);-ms-transform:matrix(0.246688,0.016808,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.246688,0.016808,-0.016995,0.249422,0,0);}
.m9f_c00354{transform:matrix(0.246828,0.016818,-0.016995,0.249422,0,0);-ms-transform:matrix(0.246828,0.016818,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.246828,0.016818,-0.016995,0.249422,0,0);}
.mdd_c00354{transform:matrix(0.247039,0.013353,-0.013494,0.249636,0,0);-ms-transform:matrix(0.247039,0.013353,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.247039,0.013353,-0.013494,0.249636,0,0);}
.ma7_c00354{transform:matrix(0.247636,0.016873,-0.016995,0.249422,0,0);-ms-transform:matrix(0.247636,0.016873,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.247636,0.016873,-0.016995,0.249422,0,0);}
.mb1_c00354{transform:matrix(0.247980,0.016896,-0.016995,0.249422,0,0);-ms-transform:matrix(0.247980,0.016896,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.247980,0.016896,-0.016995,0.249422,0,0);}
.m11_c00354{transform:matrix(0.249255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249255,0.000000,0.000000,0.250000,0,0);}
.mee_c00354{transform:matrix(0.249670,0.012746,-0.012746,0.249675,0,0);-ms-transform:matrix(0.249670,0.012746,-0.012746,0.249675,0,0);-webkit-transform:matrix(0.249670,0.012746,-0.012746,0.249675,0,0);}
.m15_c00354{transform:matrix(0.250110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250110,0.000000,0.000000,0.250000,0,0);}
.mb3_c00354{transform:matrix(0.251138,0.017112,-0.016995,0.249422,0,0);-ms-transform:matrix(0.251138,0.017112,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.251138,0.017112,-0.016995,0.249422,0,0);}
.m5b_c00354{transform:matrix(0.251285,0.014352,-0.014255,0.249593,0,0);-ms-transform:matrix(0.251285,0.014352,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.251285,0.014352,-0.014255,0.249593,0,0);}
.mab_c00354{transform:matrix(0.251327,0.017125,-0.016995,0.249422,0,0);-ms-transform:matrix(0.251327,0.017125,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.251327,0.017125,-0.016995,0.249422,0,0);}
.med_c00354{transform:matrix(0.251368,0.012833,-0.012746,0.249675,0,0);-ms-transform:matrix(0.251368,0.012833,-0.012746,0.249675,0,0);-webkit-transform:matrix(0.251368,0.012833,-0.012746,0.249675,0,0);}
.mbf_c00354{transform:matrix(0.251645,0.015381,-0.015252,0.249534,0,0);-ms-transform:matrix(0.251645,0.015381,-0.015252,0.249534,0,0);-webkit-transform:matrix(0.251645,0.015381,-0.015252,0.249534,0,0);}
.m5f_c00354{transform:matrix(0.251705,0.014376,-0.014255,0.249593,0,0);-ms-transform:matrix(0.251705,0.014376,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.251705,0.014376,-0.014255,0.249593,0,0);}
.m1d_c00354{transform:matrix(0.252615,0.011126,-0.011000,0.249758,0,0);-ms-transform:matrix(0.252615,0.011126,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.252615,0.011126,-0.011000,0.249758,0,0);}
.m46_c00354{transform:matrix(0.252701,0.012901,-0.012746,0.249675,0,0);-ms-transform:matrix(0.252701,0.012901,-0.012746,0.249675,0,0);-webkit-transform:matrix(0.252701,0.012901,-0.012746,0.249675,0,0);}
.m51_c00354{transform:matrix(0.253818,0.004061,-0.003999,0.249968,0,0);-ms-transform:matrix(0.253818,0.004061,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.253818,0.004061,-0.003999,0.249968,0,0);}
.m0_c00354{transform:matrix(0.254315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254315,0.000000,0.000000,0.250000,0,0);}
.m43_c00354{transform:matrix(0.254389,0.012987,-0.012746,0.249675,0,0);-ms-transform:matrix(0.254389,0.012987,-0.012746,0.249675,0,0);-webkit-transform:matrix(0.254389,0.012987,-0.012746,0.249675,0,0);}
.m14_c00354{transform:matrix(0.254965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254965,0.000000,0.000000,0.250000,0,0);}
.md2_c00354{transform:matrix(0.255086,0.018421,-0.018007,0.249351,0,0);-ms-transform:matrix(0.255086,0.018421,-0.018007,0.249351,0,0);-webkit-transform:matrix(0.255086,0.018421,-0.018007,0.249351,0,0);}
.m75_c00354{transform:matrix(0.256235,0.008464,-0.008254,0.249864,0,0);-ms-transform:matrix(0.256235,0.008464,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.256235,0.008464,-0.008254,0.249864,0,0);}
.mcc_c00354{transform:matrix(0.256317,0.018510,-0.018007,0.249351,0,0);-ms-transform:matrix(0.256317,0.018510,-0.018007,0.249351,0,0);-webkit-transform:matrix(0.256317,0.018510,-0.018007,0.249351,0,0);}
.m5a_c00354{transform:matrix(0.257131,0.014686,-0.014255,0.249593,0,0);-ms-transform:matrix(0.257131,0.014686,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.257131,0.014686,-0.014255,0.249593,0,0);}
.m77_c00354{transform:matrix(0.257410,0.008503,-0.008254,0.249864,0,0);-ms-transform:matrix(0.257410,0.008503,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.257410,0.008503,-0.008254,0.249864,0,0);}
.mf2_c00354{transform:matrix(0.257855,0.012648,-0.012248,0.249700,0,0);-ms-transform:matrix(0.257855,0.012648,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.257855,0.012648,-0.012248,0.249700,0,0);}
.m17_c00354{transform:matrix(0.257865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257865,0.000000,0.000000,0.250000,0,0);}
.m20_c00354{transform:matrix(0.258699,0.011394,-0.011000,0.249758,0,0);-ms-transform:matrix(0.258699,0.011394,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.258699,0.011394,-0.011000,0.249758,0,0);}
.mb8_c00354{transform:matrix(0.259205,0.011935,-0.011499,0.249735,0,0);-ms-transform:matrix(0.259205,0.011935,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.259205,0.011935,-0.011499,0.249735,0,0);}
.m9e_c00354{transform:matrix(0.260122,0.017724,-0.016995,0.249422,0,0);-ms-transform:matrix(0.260122,0.017724,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.260122,0.017724,-0.016995,0.249422,0,0);}
.m5e_c00354{transform:matrix(0.260251,0.014864,-0.014255,0.249593,0,0);-ms-transform:matrix(0.260251,0.014864,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.260251,0.014864,-0.014255,0.249593,0,0);}
.mbc_c00354{transform:matrix(0.260549,0.011997,-0.011499,0.249735,0,0);-ms-transform:matrix(0.260549,0.011997,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.260549,0.011997,-0.011499,0.249735,0,0);}
.m4f_c00354{transform:matrix(0.260572,0.004169,-0.003999,0.249968,0,0);-ms-transform:matrix(0.260572,0.004169,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.260572,0.004169,-0.003999,0.249968,0,0);}
.m42_c00354{transform:matrix(0.261140,0.013331,-0.012746,0.249675,0,0);-ms-transform:matrix(0.261140,0.013331,-0.012746,0.249675,0,0);-webkit-transform:matrix(0.261140,0.013331,-0.012746,0.249675,0,0);}
.mdb_c00354{transform:matrix(0.261254,0.014122,-0.013494,0.249636,0,0);-ms-transform:matrix(0.261254,0.014122,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.261254,0.014122,-0.013494,0.249636,0,0);}
.mea_c00354{transform:matrix(0.261934,0.013372,-0.012746,0.249675,0,0);-ms-transform:matrix(0.261934,0.013372,-0.012746,0.249675,0,0);-webkit-transform:matrix(0.261934,0.013372,-0.012746,0.249675,0,0);}
.m7b_c00354{transform:matrix(0.262131,0.013907,-0.013245,0.249649,0,0);-ms-transform:matrix(0.262131,0.013907,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.262131,0.013907,-0.013245,0.249649,0,0);}
.m53_c00354{transform:matrix(0.262281,0.004197,-0.003999,0.249968,0,0);-ms-transform:matrix(0.262281,0.004197,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.262281,0.004197,-0.003999,0.249968,0,0);}
.mf1_c00354{transform:matrix(0.262928,0.013423,-0.012746,0.249675,0,0);-ms-transform:matrix(0.262928,0.013423,-0.012746,0.249675,0,0);-webkit-transform:matrix(0.262928,0.013423,-0.012746,0.249675,0,0);}
.m78_c00354{transform:matrix(0.263116,0.008692,-0.008254,0.249864,0,0);-ms-transform:matrix(0.263116,0.008692,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.263116,0.008692,-0.008254,0.249864,0,0);}
.m9b_c00354{transform:matrix(0.263449,0.017950,-0.016995,0.249422,0,0);-ms-transform:matrix(0.263449,0.017950,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.263449,0.017950,-0.016995,0.249422,0,0);}
.mc0_c00354{transform:matrix(0.264611,0.016174,-0.015252,0.249534,0,0);-ms-transform:matrix(0.264611,0.016174,-0.015252,0.249534,0,0);-webkit-transform:matrix(0.264611,0.016174,-0.015252,0.249534,0,0);}
.mce_c00354{transform:matrix(0.264651,0.019112,-0.018007,0.249351,0,0);-ms-transform:matrix(0.264651,0.019112,-0.018007,0.249351,0,0);-webkit-transform:matrix(0.264651,0.019112,-0.018007,0.249351,0,0);}
.m9c_c00354{transform:matrix(0.265285,0.018076,-0.016995,0.249422,0,0);-ms-transform:matrix(0.265285,0.018076,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.265285,0.018076,-0.016995,0.249422,0,0);}
.m62_c00354{transform:matrix(0.266216,0.015205,-0.014255,0.249593,0,0);-ms-transform:matrix(0.266216,0.015205,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.266216,0.015205,-0.014255,0.249593,0,0);}
.mec_c00354{transform:matrix(0.267062,0.013634,-0.012746,0.249675,0,0);-ms-transform:matrix(0.267062,0.013634,-0.012746,0.249675,0,0);-webkit-transform:matrix(0.267062,0.013634,-0.012746,0.249675,0,0);}
.m60_c00354{transform:matrix(0.267689,0.015289,-0.014255,0.249593,0,0);-ms-transform:matrix(0.267689,0.015289,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.267689,0.015289,-0.014255,0.249593,0,0);}
.m79_c00354{transform:matrix(0.268763,0.008878,-0.008254,0.249864,0,0);-ms-transform:matrix(0.268763,0.008878,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.268763,0.008878,-0.008254,0.249864,0,0);}
.mcf_c00354{transform:matrix(0.268810,0.019413,-0.018007,0.249351,0,0);-ms-transform:matrix(0.268810,0.019413,-0.018007,0.249351,0,0);-webkit-transform:matrix(0.268810,0.019413,-0.018007,0.249351,0,0);}
.mad_c00354{transform:matrix(0.268852,0.018319,-0.016995,0.249422,0,0);-ms-transform:matrix(0.268852,0.018319,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.268852,0.018319,-0.016995,0.249422,0,0);}
.m9d_c00354{transform:matrix(0.269111,0.018336,-0.016995,0.249422,0,0);-ms-transform:matrix(0.269111,0.018336,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.269111,0.018336,-0.016995,0.249422,0,0);}
.meb_c00354{transform:matrix(0.269384,0.013752,-0.012746,0.249675,0,0);-ms-transform:matrix(0.269384,0.013752,-0.012746,0.249675,0,0);-webkit-transform:matrix(0.269384,0.013752,-0.012746,0.249675,0,0);}
.m29_c00354{transform:matrix(0.269691,0.014863,-0.013757,0.249621,0,0);-ms-transform:matrix(0.269691,0.014863,-0.013757,0.249621,0,0);-webkit-transform:matrix(0.269691,0.014863,-0.013757,0.249621,0,0);}
.md6_c00354{transform:matrix(0.269791,0.014583,-0.013494,0.249636,0,0);-ms-transform:matrix(0.269791,0.014583,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.269791,0.014583,-0.013494,0.249636,0,0);}
.m2d_c00354{transform:matrix(0.270030,0.015423,-0.014255,0.249593,0,0);-ms-transform:matrix(0.270030,0.015423,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.270030,0.015423,-0.014255,0.249593,0,0);}
.m44_c00354{transform:matrix(0.270088,0.013788,-0.012746,0.249675,0,0);-ms-transform:matrix(0.270088,0.013788,-0.012746,0.249675,0,0);-webkit-transform:matrix(0.270088,0.013788,-0.012746,0.249675,0,0);}
.m57_c00354{transform:matrix(0.270635,0.014629,-0.013494,0.249636,0,0);-ms-transform:matrix(0.270635,0.014629,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.270635,0.014629,-0.013494,0.249636,0,0);}
.m74_c00354{transform:matrix(0.272491,0.009001,-0.008254,0.249864,0,0);-ms-transform:matrix(0.272491,0.009001,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.272491,0.009001,-0.008254,0.249864,0,0);}
.ma6_c00354{transform:matrix(0.272523,0.018569,-0.016995,0.249422,0,0);-ms-transform:matrix(0.272523,0.018569,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.272523,0.018569,-0.016995,0.249422,0,0);}
.m1f_c00354{transform:matrix(0.272870,0.012018,-0.011000,0.249758,0,0);-ms-transform:matrix(0.272870,0.012018,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.272870,0.012018,-0.011000,0.249758,0,0);}
.m59_c00354{transform:matrix(0.272935,0.015588,-0.014255,0.249593,0,0);-ms-transform:matrix(0.272935,0.015588,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.272935,0.015588,-0.014255,0.249593,0,0);}
.mcd_c00354{transform:matrix(0.273014,0.019716,-0.018007,0.249351,0,0);-ms-transform:matrix(0.273014,0.019716,-0.018007,0.249351,0,0);-webkit-transform:matrix(0.273014,0.019716,-0.018007,0.249351,0,0);}
.m63_c00354{transform:matrix(0.273115,0.015599,-0.014255,0.249593,0,0);-ms-transform:matrix(0.273115,0.015599,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.273115,0.015599,-0.014255,0.249593,0,0);}
.m1a_c00354{transform:matrix(0.273585,0.012050,-0.011000,0.249758,0,0);-ms-transform:matrix(0.273585,0.012050,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.273585,0.012050,-0.011000,0.249758,0,0);}
.md7_c00354{transform:matrix(0.274330,0.014829,-0.013494,0.249636,0,0);-ms-transform:matrix(0.274330,0.014829,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.274330,0.014829,-0.013494,0.249636,0,0);}
.maf_c00354{transform:matrix(0.274818,0.018725,-0.016995,0.249422,0,0);-ms-transform:matrix(0.274818,0.018725,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.274818,0.018725,-0.016995,0.249422,0,0);}
.m22_c00354{transform:matrix(0.275698,0.012143,-0.011000,0.249758,0,0);-ms-transform:matrix(0.275698,0.012143,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.275698,0.012143,-0.011000,0.249758,0,0);}
.m65_c00354{transform:matrix(0.275781,0.015751,-0.014255,0.249593,0,0);-ms-transform:matrix(0.275781,0.015751,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.275781,0.015751,-0.014255,0.249593,0,0);}
.mef_c00354{transform:matrix(0.275826,0.014081,-0.012746,0.249675,0,0);-ms-transform:matrix(0.275826,0.014081,-0.012746,0.249675,0,0);-webkit-transform:matrix(0.275826,0.014081,-0.012746,0.249675,0,0);}
.m2e_c00354{transform:matrix(0.276085,0.015768,-0.014255,0.249593,0,0);-ms-transform:matrix(0.276085,0.015768,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.276085,0.015768,-0.014255,0.249593,0,0);}
.m27_c00354{transform:matrix(0.276166,0.015220,-0.013757,0.249621,0,0);-ms-transform:matrix(0.276166,0.015220,-0.013757,0.249621,0,0);-webkit-transform:matrix(0.276166,0.015220,-0.013757,0.249621,0,0);}
.ma3_c00354{transform:matrix(0.276893,0.018866,-0.016995,0.249422,0,0);-ms-transform:matrix(0.276893,0.018866,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.276893,0.018866,-0.016995,0.249422,0,0);}
.m76_c00354{transform:matrix(0.279992,0.009249,-0.008254,0.249864,0,0);-ms-transform:matrix(0.279992,0.009249,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.279992,0.009249,-0.008254,0.249864,0,0);}
.ma0_c00354{transform:matrix(0.280185,0.019091,-0.016995,0.249422,0,0);-ms-transform:matrix(0.280185,0.019091,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.280185,0.019091,-0.016995,0.249422,0,0);}
.mb2_c00354{transform:matrix(0.281757,0.019198,-0.016995,0.249422,0,0);-ms-transform:matrix(0.281757,0.019198,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.281757,0.019198,-0.016995,0.249422,0,0);}
.m7a_c00354{transform:matrix(0.281973,0.014960,-0.013245,0.249649,0,0);-ms-transform:matrix(0.281973,0.014960,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.281973,0.014960,-0.013245,0.249649,0,0);}
.m2a_c00354{transform:matrix(0.282739,0.016148,-0.014255,0.249593,0,0);-ms-transform:matrix(0.282739,0.016148,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.282739,0.016148,-0.014255,0.249593,0,0);}
.m56_c00354{transform:matrix(0.284784,0.015394,-0.013494,0.249636,0,0);-ms-transform:matrix(0.284784,0.015394,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.284784,0.015394,-0.013494,0.249636,0,0);}
.m54_c00354{transform:matrix(0.285229,0.015418,-0.013494,0.249636,0,0);-ms-transform:matrix(0.285229,0.015418,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.285229,0.015418,-0.013494,0.249636,0,0);}
.m58_c00354{transform:matrix(0.297526,0.016082,-0.013494,0.249636,0,0);-ms-transform:matrix(0.297526,0.016082,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.297526,0.016082,-0.013494,0.249636,0,0);}
.me8_c00354{transform:matrix(0.304928,0.015567,-0.012746,0.249675,0,0);-ms-transform:matrix(0.304928,0.015567,-0.012746,0.249675,0,0);-webkit-transform:matrix(0.304928,0.015567,-0.012746,0.249675,0,0);}
.ma2_c00354{transform:matrix(0.333611,0.022731,-0.016995,0.249422,0,0);-ms-transform:matrix(0.333611,0.022731,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.333611,0.022731,-0.016995,0.249422,0,0);}
.me9_c00354{transform:matrix(0.334499,0.017077,-0.012746,0.249675,0,0);-ms-transform:matrix(0.334499,0.017077,-0.012746,0.249675,0,0);-webkit-transform:matrix(0.334499,0.017077,-0.012746,0.249675,0,0);}
.m105_c00354{transform:matrix(0.352312,0.016223,-0.011499,0.249735,0,0);-ms-transform:matrix(0.352312,0.016223,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.352312,0.016223,-0.011499,0.249735,0,0);}
.m106_c00354{transform:matrix(0.366252,0.016864,-0.011499,0.249735,0,0);-ms-transform:matrix(0.366252,0.016864,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.366252,0.016864,-0.011499,0.249735,0,0);}
.m103_c00354{transform:matrix(0.367835,0.016937,-0.011499,0.249735,0,0);-ms-transform:matrix(0.367835,0.016937,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.367835,0.016937,-0.011499,0.249735,0,0);}
.m107_c00354{transform:matrix(0.380717,0.017530,-0.011499,0.249735,0,0);-ms-transform:matrix(0.380717,0.017530,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.380717,0.017530,-0.011499,0.249735,0,0);}
.m108_c00354{transform:matrix(0.387999,0.017866,-0.011499,0.249735,0,0);-ms-transform:matrix(0.387999,0.017866,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.387999,0.017866,-0.011499,0.249735,0,0);}
.m3_c00354{transform:matrix(0.402005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402005,0.000000,0.000000,0.250000,0,0);}
.m104_c00354{transform:matrix(0.403872,0.018597,-0.011499,0.249735,0,0);-ms-transform:matrix(0.403872,0.018597,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.403872,0.018597,-0.011499,0.249735,0,0);}
.md_c00354{transform:matrix(0.418460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418460,0.000000,0.000000,0.250000,0,0);}
.mb_c00354{transform:matrix(0.448024,0.021078,-0.011749,0.249724,0,0);-ms-transform:matrix(0.448024,0.021078,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.448024,0.021078,-0.011749,0.249724,0,0);}
.mfd_c00354{transform:matrix(0.794937,0.049385,-0.015501,0.249519,0,0);-ms-transform:matrix(0.794937,0.049385,-0.015501,0.249519,0,0);-webkit-transform:matrix(0.794937,0.049385,-0.015501,0.249519,0,0);}
.m4_c00354{transform:matrix(2.448517,0.115195,-0.011749,0.249724,0,0);-ms-transform:matrix(2.448517,0.115195,-0.011749,0.249724,0,0);-webkit-transform:matrix(2.448517,0.115195,-0.011749,0.249724,0,0);}
.v0_c00354{vertical-align:0.000000px;}
.ls0_c00354{letter-spacing:0.000000px;}
.sc__c00354{text-shadow:none;}
.sc0_c00354{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__c00354{-webkit-text-stroke:0px transparent;}
.sc0_c00354{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00354{word-spacing:0.000000px;}
.fc0_c00354{color:transparent;}
.fs1_c00354{font-size:36.000000px;}
.fs3_c00354{font-size:36.003780px;}
.fs0_c00354{font-size:42.000000px;}
.fs23_c00354{font-size:48.002808px;}
.fsf_c00354{font-size:66.030254px;}
.fs8_c00354{font-size:71.965036px;}
.fs12_c00354{font-size:71.967233px;}
.fs1d_c00354{font-size:71.970942px;}
.fs9_c00354{font-size:71.973103px;}
.fs1a_c00354{font-size:71.990099px;}
.fs7_c00354{font-size:71.997732px;}
.fse_c00354{font-size:72.009215px;}
.fsc_c00354{font-size:72.021669px;}
.fs18_c00354{font-size:72.022604px;}
.fs13_c00354{font-size:72.029154px;}
.fs1e_c00354{font-size:72.033004px;}
.fs14_c00354{font-size:77.975348px;}
.fs6_c00354{font-size:78.000000px;}
.fs19_c00354{font-size:78.004563px;}
.fs10_c00354{font-size:83.961771px;}
.fs1c_c00354{font-size:83.966099px;}
.fsa_c00354{font-size:83.968620px;}
.fs16_c00354{font-size:83.973536px;}
.fs1b_c00354{font-size:83.988449px;}
.fs5_c00354{font-size:84.000000px;}
.fs17_c00354{font-size:84.025280px;}
.fsb_c00354{font-size:89.966379px;}
.fsd_c00354{font-size:89.975022px;}
.fs22_c00354{font-size:89.993160px;}
.fs2_c00354{font-size:90.000000px;}
.fs11_c00354{font-size:95.956310px;}
.fs15_c00354{font-size:95.969659px;}
.fs1f_c00354{font-size:96.044006px;}
.fs21_c00354{font-size:113.991336px;}
.fs20_c00354{font-size:114.022912px;}
.fs4_c00354{font-size:126.013229px;}
.y0_c00354{bottom:0.000000px;}
.y108_c00354{bottom:56.789727px;}
.y107_c00354{bottom:59.388474px;}
.y106_c00354{bottom:61.406931px;}
.y105_c00354{bottom:63.422559px;}
.y104_c00354{bottom:73.375326px;}
.y103_c00354{bottom:75.345000px;}
.y102_c00354{bottom:90.941448px;}
.y101_c00354{bottom:95.237664px;}
.y100_c00354{bottom:100.853658px;}
.yff_c00354{bottom:102.722094px;}
.yfe_c00354{bottom:105.707916px;}
.yfa_c00354{bottom:114.250743px;}
.yf9_c00354{bottom:119.671248px;}
.yf8_c00354{bottom:122.459295px;}
.yfd_c00354{bottom:122.712681px;}
.yf7_c00354{bottom:125.242134px;}
.yfc_c00354{bottom:126.831867px;}
.yfb_c00354{bottom:128.556912px;}
.yf6_c00354{bottom:128.568000px;}
.yc_c00354{bottom:150.173240px;}
.yb_c00354{bottom:151.841003px;}
.ya_c00354{bottom:153.552371px;}
.y9_c00354{bottom:155.773728px;}
.y8_c00354{bottom:157.455609px;}
.y7_c00354{bottom:161.360540px;}
.y6_c00354{bottom:167.419146px;}
.yf5_c00354{bottom:177.705432px;}
.y5_c00354{bottom:179.311500px;}
.yf4_c00354{bottom:181.661643px;}
.yf3_c00354{bottom:183.387349px;}
.yf2_c00354{bottom:187.164000px;}
.ye7_c00354{bottom:196.117075px;}
.ye6_c00354{bottom:197.371279px;}
.ye5_c00354{bottom:200.911709px;}
.ye4_c00354{bottom:205.012455px;}
.ye3_c00354{bottom:206.719003px;}
.ye2_c00354{bottom:209.699682px;}
.yf1_c00354{bottom:213.669592px;}
.ye1_c00354{bottom:213.684639px;}
.ye0_c00354{bottom:215.337323px;}
.yf0_c00354{bottom:215.824152px;}
.ydf_c00354{bottom:218.683514px;}
.yef_c00354{bottom:221.861541px;}
.yee_c00354{bottom:224.897331px;}
.yed_c00354{bottom:226.316127px;}
.ydd_c00354{bottom:229.107444px;}
.ydc_c00354{bottom:230.874540px;}
.ydb_c00354{bottom:234.490623px;}
.yda_c00354{bottom:236.280966px;}
.yd9_c00354{bottom:238.005942px;}
.yd8_c00354{bottom:239.867889px;}
.yde_c00354{bottom:240.023976px;}
.yd7_c00354{bottom:243.497337px;}
.yd6_c00354{bottom:248.142363px;}
.yd5_c00354{bottom:249.912213px;}
.yec_c00354{bottom:250.151439px;}
.yd4_c00354{bottom:251.565666px;}
.yd3_c00354{bottom:252.717000px;}
.yeb_c00354{bottom:255.274207px;}
.yea_c00354{bottom:261.149358px;}
.yd2_c00354{bottom:264.528830px;}
.yd1_c00354{bottom:266.834163px;}
.yd0_c00354{bottom:268.568700px;}
.ycf_c00354{bottom:272.595453px;}
.yce_c00354{bottom:276.647702px;}
.ycd_c00354{bottom:283.462542px;}
.ye9_c00354{bottom:283.916325px;}
.ycc_c00354{bottom:285.731223px;}
.ye8_c00354{bottom:287.049000px;}
.ycb_c00354{bottom:287.910765px;}
.yca_c00354{bottom:293.257008px;}
.yc9_c00354{bottom:297.341244px;}
.yc8_c00354{bottom:299.709792px;}
.yc7_c00354{bottom:303.822000px;}
.yc6_c00354{bottom:306.605565px;}
.yc5_c00354{bottom:308.389236px;}
.yc4_c00354{bottom:312.782809px;}
.yc3_c00354{bottom:314.098347px;}
.yc2_c00354{bottom:315.841246px;}
.yc1_c00354{bottom:320.569052px;}
.yc0_c00354{bottom:323.304522px;}
.ybf_c00354{bottom:325.372879px;}
.ybe_c00354{bottom:328.758013px;}
.ybd_c00354{bottom:329.959500px;}
.ybc_c00354{bottom:338.130444px;}
.ybb_c00354{bottom:339.610287px;}
.yba_c00354{bottom:342.730674px;}
.yb9_c00354{bottom:343.746906px;}
.yb8_c00354{bottom:348.342720px;}
.yb7_c00354{bottom:349.783647px;}
.yb6_c00354{bottom:352.810953px;}
.yb5_c00354{bottom:355.809417px;}
.yb4_c00354{bottom:357.217500px;}
.yb3_c00354{bottom:362.777586px;}
.yb2_c00354{bottom:370.120656px;}
.yb1_c00354{bottom:373.758345px;}
.yb0_c00354{bottom:375.975984px;}
.yaf_c00354{bottom:381.174105px;}
.yae_c00354{bottom:383.315382px;}
.yad_c00354{bottom:388.456725px;}
.yac_c00354{bottom:392.111754px;}
.ya8_c00354{bottom:393.681294px;}
.yab_c00354{bottom:396.323793px;}
.ya7_c00354{bottom:396.642864px;}
.yaa_c00354{bottom:398.430357px;}
.ya9_c00354{bottom:400.441893px;}
.ya6_c00354{bottom:401.375460px;}
.ya5_c00354{bottom:403.569888px;}
.ya4_c00354{bottom:405.923232px;}
.ya3_c00354{bottom:411.271500px;}
.y99_c00354{bottom:415.922003px;}
.y98_c00354{bottom:418.823953px;}
.y97_c00354{bottom:421.078638px;}
.y96_c00354{bottom:424.409448px;}
.y95_c00354{bottom:426.090000px;}
.ya2_c00354{bottom:463.835175px;}
.ya1_c00354{bottom:466.103055px;}
.ya0_c00354{bottom:472.827372px;}
.y9f_c00354{bottom:475.874796px;}
.y9e_c00354{bottom:477.419163px;}
.y9d_c00354{bottom:482.562666px;}
.y94_c00354{bottom:485.663917px;}
.y93_c00354{bottom:486.577114px;}
.y92_c00354{bottom:488.902231px;}
.y91_c00354{bottom:491.138660px;}
.y90_c00354{bottom:492.462057px;}
.y8f_c00354{bottom:495.155527px;}
.y8e_c00354{bottom:496.897450px;}
.y8d_c00354{bottom:500.059785px;}
.y9c_c00354{bottom:502.290414px;}
.y9b_c00354{bottom:506.886432px;}
.y9a_c00354{bottom:509.266500px;}
.y8c_c00354{bottom:512.233488px;}
.y8b_c00354{bottom:514.746306px;}
.y8a_c00354{bottom:517.229542px;}
.y89_c00354{bottom:518.505543px;}
.y88_c00354{bottom:520.888935px;}
.y87_c00354{bottom:521.696460px;}
.y86_c00354{bottom:526.197011px;}
.y85_c00354{bottom:529.759500px;}
.y3_c00354{bottom:535.680000px;}
.y4_c00354{bottom:536.220000px;}
.y2_c00354{bottom:553.500000px;}
.y1_c00354{bottom:559.710000px;}
.y84_c00354{bottom:574.329798px;}
.y83_c00354{bottom:576.306216px;}
.y82_c00354{bottom:580.431315px;}
.y81_c00354{bottom:584.503221px;}
.y80_c00354{bottom:587.214003px;}
.y7f_c00354{bottom:588.365436px;}
.y79_c00354{bottom:593.354818px;}
.y78_c00354{bottom:595.482625px;}
.y77_c00354{bottom:596.153409px;}
.y76_c00354{bottom:599.228209px;}
.y75_c00354{bottom:601.375492px;}
.y74_c00354{bottom:603.500379px;}
.y7e_c00354{bottom:610.056348px;}
.y7d_c00354{bottom:614.735382px;}
.y7c_c00354{bottom:619.147500px;}
.y73_c00354{bottom:625.432006px;}
.y72_c00354{bottom:626.862867px;}
.y71_c00354{bottom:629.878960px;}
.y70_c00354{bottom:634.887604px;}
.y6f_c00354{bottom:637.240636px;}
.y6e_c00354{bottom:658.870350px;}
.y6d_c00354{bottom:662.283672px;}
.y6c_c00354{bottom:664.051614px;}
.y6b_c00354{bottom:665.533694px;}
.y6a_c00354{bottom:666.620417px;}
.y69_c00354{bottom:669.873457px;}
.y68_c00354{bottom:671.326777px;}
.y67_c00354{bottom:673.138428px;}
.y66_c00354{bottom:674.200500px;}
.y7b_c00354{bottom:679.369317px;}
.y7a_c00354{bottom:685.290000px;}
.y65_c00354{bottom:689.521178px;}
.y64_c00354{bottom:691.009683px;}
.y63_c00354{bottom:695.111826px;}
.y62_c00354{bottom:698.220492px;}
.y61_c00354{bottom:699.705792px;}
.y60_c00354{bottom:703.286319px;}
.y5f_c00354{bottom:705.336323px;}
.y5e_c00354{bottom:708.808278px;}
.y5d_c00354{bottom:711.261921px;}
.y5c_c00354{bottom:713.691572px;}
.y5b_c00354{bottom:716.274612px;}
.y5a_c00354{bottom:717.602598px;}
.y59_c00354{bottom:722.025000px;}
.y4e_c00354{bottom:839.312961px;}
.y4d_c00354{bottom:840.586626px;}
.y4c_c00354{bottom:844.367778px;}
.y4b_c00354{bottom:846.872529px;}
.y4a_c00354{bottom:848.576031px;}
.y49_c00354{bottom:850.171176px;}
.y48_c00354{bottom:852.681000px;}
.y58_c00354{bottom:859.685673px;}
.y57_c00354{bottom:862.094127px;}
.y56_c00354{bottom:865.103439px;}
.y55_c00354{bottom:866.883576px;}
.y54_c00354{bottom:869.970000px;}
.y47_c00354{bottom:872.019708px;}
.y46_c00354{bottom:873.787011px;}
.y45_c00354{bottom:875.461290px;}
.y44_c00354{bottom:880.543797px;}
.y43_c00354{bottom:883.382329px;}
.y42_c00354{bottom:887.253000px;}
.y41_c00354{bottom:893.593854px;}
.y40_c00354{bottom:897.507325px;}
.y3f_c00354{bottom:899.338805px;}
.y3e_c00354{bottom:904.414638px;}
.y3d_c00354{bottom:910.602945px;}
.y3c_c00354{bottom:912.472899px;}
.y3b_c00354{bottom:915.588876px;}
.y3a_c00354{bottom:919.286034px;}
.y39_c00354{bottom:921.726738px;}
.y38_c00354{bottom:927.204802px;}
.y36_c00354{bottom:928.697365px;}
.y37_c00354{bottom:930.219762px;}
.y35_c00354{bottom:930.530554px;}
.y34_c00354{bottom:932.400508px;}
.y33_c00354{bottom:936.787475px;}
.y32_c00354{bottom:939.967619px;}
.y31_c00354{bottom:945.579403px;}
.y30_c00354{bottom:948.023528px;}
.y2f_c00354{bottom:949.370568px;}
.y53_c00354{bottom:951.915432px;}
.y52_c00354{bottom:952.649592px;}
.y51_c00354{bottom:953.704584px;}
.y50_c00354{bottom:954.205704px;}
.y4f_c00354{bottom:955.263000px;}
.y2e_c00354{bottom:967.989543px;}
.y2d_c00354{bottom:971.241194px;}
.y2c_c00354{bottom:973.097741px;}
.y2b_c00354{bottom:975.017899px;}
.y2a_c00354{bottom:982.023000px;}
.y22_c00354{bottom:985.939759px;}
.y21_c00354{bottom:986.897205px;}
.y20_c00354{bottom:988.884814px;}
.y1f_c00354{bottom:992.175439px;}
.y1e_c00354{bottom:992.802612px;}
.y29_c00354{bottom:1002.283725px;}
.y28_c00354{bottom:1004.184112px;}
.y27_c00354{bottom:1009.131307px;}
.y26_c00354{bottom:1010.945152px;}
.y25_c00354{bottom:1012.807590px;}
.y24_c00354{bottom:1014.641318px;}
.y23_c00354{bottom:1015.753500px;}
.y1d_c00354{bottom:1018.974612px;}
.y1c_c00354{bottom:1020.425160px;}
.y1b_c00354{bottom:1022.386086px;}
.y1a_c00354{bottom:1027.214118px;}
.y19_c00354{bottom:1028.724000px;}
.y18_c00354{bottom:1107.391500px;}
.y17_c00354{bottom:1114.080000px;}
.y16_c00354{bottom:1115.277000px;}
.y15_c00354{bottom:1118.608500px;}
.y14_c00354{bottom:1123.042500px;}
.y13_c00354{bottom:1125.202500px;}
.y12_c00354{bottom:1127.485500px;}
.y11_c00354{bottom:1132.446000px;}
.y10_c00354{bottom:1134.063000px;}
.yf_c00354{bottom:1137.889500px;}
.ye_c00354{bottom:1139.959500px;}
.yd_c00354{bottom:1183.680000px;}
.h3_c00354{height:36.000000px;}
.h5_c00354{height:36.003780px;}
.h2_c00354{height:42.000000px;}
.h25_c00354{height:48.002808px;}
.h11_c00354{height:66.030254px;}
.ha_c00354{height:71.965036px;}
.h14_c00354{height:71.967233px;}
.h1f_c00354{height:71.970942px;}
.hb_c00354{height:71.973103px;}
.h1c_c00354{height:71.990099px;}
.h9_c00354{height:71.997732px;}
.h10_c00354{height:72.009215px;}
.he_c00354{height:72.021669px;}
.h1a_c00354{height:72.022604px;}
.h15_c00354{height:72.029154px;}
.h20_c00354{height:72.033004px;}
.h16_c00354{height:77.975348px;}
.h8_c00354{height:78.000000px;}
.h1b_c00354{height:78.004563px;}
.h12_c00354{height:83.961771px;}
.h1e_c00354{height:83.966099px;}
.hc_c00354{height:83.968620px;}
.h18_c00354{height:83.973536px;}
.h1d_c00354{height:83.988449px;}
.h7_c00354{height:84.000000px;}
.h19_c00354{height:84.025280px;}
.hd_c00354{height:89.966379px;}
.hf_c00354{height:89.975022px;}
.h24_c00354{height:89.993160px;}
.h4_c00354{height:90.000000px;}
.h13_c00354{height:95.956310px;}
.h17_c00354{height:95.969659px;}
.h21_c00354{height:96.044006px;}
.h23_c00354{height:113.991336px;}
.h22_c00354{height:114.022912px;}
.h6_c00354{height:126.013229px;}
.h0_c00354{height:1251.450000px;}
.h1_c00354{height:1251.750000px;}
.w0_c00354{width:915.000000px;}
.x0_c00354{left:0.000000px;}
.x1_c00354{left:6.480000px;}
.x3_c00354{left:118.697958px;}
.xc0_c00354{left:127.939500px;}
.x2_c00354{left:129.211500px;}
.xac_c00354{left:133.643862px;}
.xa0_c00354{left:134.871804px;}
.x91_c00354{left:137.539500px;}
.x79_c00354{left:140.966220px;}
.x71_c00354{left:142.851000px;}
.x65_c00354{left:144.340473px;}
.x5c_c00354{left:147.648000px;}
.x56_c00354{left:150.230043px;}
.x43_c00354{left:154.686000px;}
.x32_c00354{left:158.696878px;}
.x1b_c00354{left:160.129933px;}
.xc_c00354{left:166.470000px;}
.x92_c00354{left:168.119390px;}
.x8b_c00354{left:170.424714px;}
.xa1_c00354{left:176.626392px;}
.x5d_c00354{left:179.799816px;}
.x1c_c00354{left:181.016908px;}
.xa6_c00354{left:196.937059px;}
.x8c_c00354{left:202.268691px;}
.x57_c00354{left:203.445810px;}
.xd_c00354{left:207.879000px;}
.x33_c00354{left:212.431777px;}
.x7a_c00354{left:218.043676px;}
.x44_c00354{left:220.667952px;}
.x4a_c00354{left:224.389500px;}
.xad_c00354{left:228.172887px;}
.xa7_c00354{left:229.679284px;}
.x93_c00354{left:233.238206px;}
.x5e_c00354{left:234.643417px;}
.x4_c00354{left:237.388349px;}
.x72_c00354{left:239.038217px;}
.x80_c00354{left:246.459000px;}
.x9c_c00354{left:254.421963px;}
.x4b_c00354{left:255.709500px;}
.xbc_c00354{left:257.353500px;}
.x7b_c00354{left:260.497402px;}
.x45_c00354{left:262.603475px;}
.x3d_c00354{left:265.035000px;}
.x17_c00354{left:268.902000px;}
.x58_c00354{left:278.724655px;}
.xe_c00354{left:284.394000px;}
.x1d_c00354{left:290.567767px;}
.x66_c00354{left:296.740592px;}
.x9d_c00354{left:297.859066px;}
.x94_c00354{left:298.983394px;}
.x18_c00354{left:303.183184px;}
.x46_c00354{left:307.387645px;}
.x34_c00354{left:310.055208px;}
.x5_c00354{left:313.876887px;}
.xa8_c00354{left:315.612265px;}
.xf_c00354{left:316.740000px;}
.x4c_c00354{left:321.646500px;}
.x59_c00354{left:323.163942px;}
.x7c_c00354{left:326.130981px;}
.x95_c00354{left:330.276570px;}
.x3e_c00354{left:340.854604px;}
.x81_c00354{left:344.622738px;}
.x6_c00354{left:346.816704px;}
.xa2_c00354{left:350.598179px;}
.x35_c00354{left:353.551525px;}
.xbd_c00354{left:355.683945px;}
.x1e_c00354{left:356.728304px;}
.x7d_c00354{left:358.378423px;}
.xae_c00354{left:359.456027px;}
.x73_c00354{left:360.553080px;}
.x4d_c00354{left:367.531500px;}
.x47_c00354{left:373.236231px;}
.x5f_c00354{left:377.117801px;}
.x74_c00354{left:382.356255px;}
.xc1_c00354{left:386.863816px;}
.x1f_c00354{left:388.591031px;}
.x7_c00354{left:390.329462px;}
.xaf_c00354{left:391.611042px;}
.x3f_c00354{left:396.456447px;}
.x8d_c00354{left:398.947221px;}
.x5a_c00354{left:400.817071px;}
.x67_c00354{left:406.444413px;}
.x60_c00354{left:410.015870px;}
.x19_c00354{left:412.801456px;}
.x10_c00354{left:415.960500px;}
.xa9_c00354{left:417.203073px;}
.x36_c00354{left:419.441252px;}
.x8_c00354{left:423.864113px;}
.xa3_c00354{left:428.214030px;}
.xa_c00354{left:430.380000px;}
.x5b_c00354{left:433.028737px;}
.x9e_c00354{left:440.160252px;}
.x82_c00354{left:445.632127px;}
.x75_c00354{left:446.707839px;}
.xaa_c00354{left:449.115129px;}
.x96_c00354{left:452.155569px;}
.xb_c00354{left:453.600000px;}
.x61_c00354{left:454.882458px;}
.x9_c00354{left:456.535769px;}
.x11_c00354{left:461.625000px;}
.x7e_c00354{left:469.547698px;}
.x48_c00354{left:472.640727px;}
.x37_c00354{left:474.971139px;}
.x2b_c00354{left:477.030122px;}
.x76_c00354{left:481.159852px;}
.xab_c00354{left:482.236474px;}
.x9f_c00354{left:484.633155px;}
.x63_c00354{left:486.547464px;}
.xbe_c00354{left:487.815153px;}
.x1a_c00354{left:490.257423px;}
.x7f_c00354{left:491.813632px;}
.x40_c00354{left:496.013790px;}
.x27_c00354{left:499.726500px;}
.x12_c00354{left:504.838500px;}
.x49_c00354{left:506.124709px;}
.x38_c00354{left:508.290252px;}
.x8e_c00354{left:509.930436px;}
.x64_c00354{left:518.328566px;}
.x2c_c00354{left:520.586319px;}
.x41_c00354{left:528.809961px;}
.x88_c00354{left:531.814500px;}
.xb0_c00354{left:535.614098px;}
.x20_c00354{left:536.793000px;}
.xa4_c00354{left:538.550545px;}
.x8f_c00354{left:543.470820px;}
.x77_c00354{left:548.207238px;}
.x97_c00354{left:552.060564px;}
.x21_c00354{left:556.974057px;}
.xb1_c00354{left:559.261724px;}
.x42_c00354{left:563.428308px;}
.x6b_c00354{left:565.101738px;}
.xa5_c00354{left:582.692309px;}
.x6c_c00354{left:583.932189px;}
.x22_c00354{left:590.247876px;}
.x13_c00354{left:593.514000px;}
.x4e_c00354{left:595.068000px;}
.x90_c00354{left:598.470561px;}
.x89_c00354{left:610.308198px;}
.x62_c00354{left:611.733450px;}
.x78_c00354{left:616.053324px;}
.xb3_c00354{left:617.348304px;}
.x39_c00354{left:618.559525px;}
.x2d_c00354{left:620.603624px;}
.x28_c00354{left:622.377207px;}
.x23_c00354{left:624.042651px;}
.x6d_c00354{left:628.276065px;}
.x69_c00354{left:631.414500px;}
.x85_c00354{left:635.418648px;}
.xb6_c00354{left:636.810723px;}
.x8a_c00354{left:644.846982px;}
.x4f_c00354{left:652.166844px;}
.x98_c00354{left:655.231500px;}
.x24_c00354{left:656.955693px;}
.x14_c00354{left:660.132000px;}
.xba_c00354{left:668.012425px;}
.x99_c00354{left:674.888607px;}
.x2e_c00354{left:677.283293px;}
.x86_c00354{left:680.806257px;}
.xb7_c00354{left:682.091487px;}
.x15_c00354{left:684.061500px;}
.x50_c00354{left:685.099378px;}
.x29_c00354{left:688.502691px;}
.x52_c00354{left:690.132000px;}
.x83_c00354{left:692.395500px;}
.x6e_c00354{left:694.903449px;}
.x68_c00354{left:699.823500px;}
.xbb_c00354{left:703.195707px;}
.xb4_c00354{left:706.298764px;}
.x6a_c00354{left:707.333358px;}
.x3a_c00354{left:709.008904px;}
.x84_c00354{left:727.326498px;}
.x9a_c00354{left:730.271619px;}
.xbf_c00354{left:733.946082px;}
.x3b_c00354{left:741.654368px;}
.x2a_c00354{left:745.435098px;}
.x25_c00354{left:746.724795px;}
.x2f_c00354{left:755.461078px;}
.x6f_c00354{left:762.394428px;}
.x9b_c00354{left:764.111304px;}
.x53_c00354{left:767.562828px;}
.xb8_c00354{left:772.130421px;}
.x26_c00354{left:781.208190px;}
.xb5_c00354{left:783.866349px;}
.x51_c00354{left:785.328050px;}
.x30_c00354{left:788.780192px;}
.x54_c00354{left:790.814232px;}
.x70_c00354{left:794.722476px;}
.xb9_c00354{left:804.269561px;}
.x3c_c00354{left:811.384069px;}
.x87_c00354{left:814.744440px;}
.x16_c00354{left:817.822500px;}
.x31_c00354{left:821.455594px;}
.xb2_c00354{left:825.247575px;}
.x55_c00354{left:836.040099px;}
@media print{
.v0_c00354{vertical-align:0.000000pt;}
.ls0_c00354{letter-spacing:0.000000pt;}
.ws0_c00354{word-spacing:0.000000pt;}
.fs1_c00354{font-size:32.000000pt;}
.fs3_c00354{font-size:32.003360pt;}
.fs0_c00354{font-size:37.333333pt;}
.fs23_c00354{font-size:42.669163pt;}
.fsf_c00354{font-size:58.693559pt;}
.fs8_c00354{font-size:63.968920pt;}
.fs12_c00354{font-size:63.970873pt;}
.fs1d_c00354{font-size:63.974171pt;}
.fs9_c00354{font-size:63.976092pt;}
.fs1a_c00354{font-size:63.991199pt;}
.fs7_c00354{font-size:63.997984pt;}
.fse_c00354{font-size:64.008191pt;}
.fsc_c00354{font-size:64.019261pt;}
.fs18_c00354{font-size:64.020093pt;}
.fs13_c00354{font-size:64.025915pt;}
.fs1e_c00354{font-size:64.029337pt;}
.fs14_c00354{font-size:69.311421pt;}
.fs6_c00354{font-size:69.333333pt;}
.fs19_c00354{font-size:69.337389pt;}
.fs10_c00354{font-size:74.632686pt;}
.fs1c_c00354{font-size:74.636533pt;}
.fsa_c00354{font-size:74.638773pt;}
.fs16_c00354{font-size:74.643143pt;}
.fs1b_c00354{font-size:74.656399pt;}
.fs5_c00354{font-size:74.666667pt;}
.fs17_c00354{font-size:74.689138pt;}
.fsb_c00354{font-size:79.970114pt;}
.fsd_c00354{font-size:79.977797pt;}
.fs22_c00354{font-size:79.993920pt;}
.fs2_c00354{font-size:80.000000pt;}
.fs11_c00354{font-size:85.294498pt;}
.fs15_c00354{font-size:85.306364pt;}
.fs1f_c00354{font-size:85.372450pt;}
.fs21_c00354{font-size:101.325632pt;}
.fs20_c00354{font-size:101.353699pt;}
.fs4_c00354{font-size:112.011759pt;}
.y0_c00354{bottom:0.000000pt;}
.y108_c00354{bottom:50.479757pt;}
.y107_c00354{bottom:52.789755pt;}
.y106_c00354{bottom:54.583939pt;}
.y105_c00354{bottom:56.375608pt;}
.y104_c00354{bottom:65.222512pt;}
.y103_c00354{bottom:66.973333pt;}
.y102_c00354{bottom:80.836843pt;}
.y101_c00354{bottom:84.655701pt;}
.y100_c00354{bottom:89.647696pt;}
.yff_c00354{bottom:91.308528pt;}
.yfe_c00354{bottom:93.962592pt;}
.yfa_c00354{bottom:101.556216pt;}
.yf9_c00354{bottom:106.374443pt;}
.yf8_c00354{bottom:108.852707pt;}
.yfd_c00354{bottom:109.077939pt;}
.yf7_c00354{bottom:111.326341pt;}
.yfc_c00354{bottom:112.739437pt;}
.yfb_c00354{bottom:114.272811pt;}
.yf6_c00354{bottom:114.282667pt;}
.yc_c00354{bottom:133.487324pt;}
.yb_c00354{bottom:134.969780pt;}
.ya_c00354{bottom:136.490996pt;}
.y9_c00354{bottom:138.465536pt;}
.y8_c00354{bottom:139.960541pt;}
.y7_c00354{bottom:143.431591pt;}
.y6_c00354{bottom:148.817019pt;}
.yf5_c00354{bottom:157.960384pt;}
.y5_c00354{bottom:159.388000pt;}
.yf4_c00354{bottom:161.477016pt;}
.yf3_c00354{bottom:163.010977pt;}
.yf2_c00354{bottom:166.368000pt;}
.ye7_c00354{bottom:174.326289pt;}
.ye6_c00354{bottom:175.441137pt;}
.ye5_c00354{bottom:178.588185pt;}
.ye4_c00354{bottom:182.233293pt;}
.ye3_c00354{bottom:183.750225pt;}
.ye2_c00354{bottom:186.399717pt;}
.yf1_c00354{bottom:189.928527pt;}
.ye1_c00354{bottom:189.941901pt;}
.ye0_c00354{bottom:191.410953pt;}
.yf0_c00354{bottom:191.843691pt;}
.ydf_c00354{bottom:194.385345pt;}
.yef_c00354{bottom:197.210259pt;}
.yee_c00354{bottom:199.908739pt;}
.yed_c00354{bottom:201.169891pt;}
.ydd_c00354{bottom:203.651061pt;}
.ydc_c00354{bottom:205.221813pt;}
.ydb_c00354{bottom:208.436109pt;}
.yda_c00354{bottom:210.027525pt;}
.yd9_c00354{bottom:211.560837pt;}
.yd8_c00354{bottom:213.215901pt;}
.yde_c00354{bottom:213.354645pt;}
.yd7_c00354{bottom:216.442077pt;}
.yd6_c00354{bottom:220.570989pt;}
.yd5_c00354{bottom:222.144189pt;}
.yec_c00354{bottom:222.356835pt;}
.yd4_c00354{bottom:223.613925pt;}
.yd3_c00354{bottom:224.637333pt;}
.yeb_c00354{bottom:226.910407pt;}
.yea_c00354{bottom:232.132763pt;}
.yd2_c00354{bottom:235.136737pt;}
.yd1_c00354{bottom:237.185923pt;}
.yd0_c00354{bottom:238.727733pt;}
.ycf_c00354{bottom:242.307069pt;}
.yce_c00354{bottom:245.909068pt;}
.ycd_c00354{bottom:251.966704pt;}
.ye9_c00354{bottom:252.370067pt;}
.ycc_c00354{bottom:253.983309pt;}
.ye8_c00354{bottom:255.154667pt;}
.ycb_c00354{bottom:255.920680pt;}
.yca_c00354{bottom:260.672896pt;}
.yc9_c00354{bottom:264.303328pt;}
.yc8_c00354{bottom:266.408704pt;}
.yc7_c00354{bottom:270.064000pt;}
.yc6_c00354{bottom:272.538280pt;}
.yc5_c00354{bottom:274.123765pt;}
.yc4_c00354{bottom:278.029164pt;}
.yc3_c00354{bottom:279.198531pt;}
.yc2_c00354{bottom:280.747775pt;}
.yc1_c00354{bottom:284.950268pt;}
.yc0_c00354{bottom:287.381797pt;}
.ybf_c00354{bottom:289.220337pt;}
.ybe_c00354{bottom:292.229345pt;}
.ybd_c00354{bottom:293.297333pt;}
.ybc_c00354{bottom:300.560395pt;}
.ybb_c00354{bottom:301.875811pt;}
.yba_c00354{bottom:304.649488pt;}
.yb9_c00354{bottom:305.552805pt;}
.yb8_c00354{bottom:309.637973pt;}
.yb7_c00354{bottom:310.918797pt;}
.yb6_c00354{bottom:313.609736pt;}
.yb5_c00354{bottom:316.275037pt;}
.yb4_c00354{bottom:317.526667pt;}
.yb3_c00354{bottom:322.468965pt;}
.yb2_c00354{bottom:328.996139pt;}
.yb1_c00354{bottom:332.229640pt;}
.yb0_c00354{bottom:334.200875pt;}
.yaf_c00354{bottom:338.821427pt;}
.yae_c00354{bottom:340.724784pt;}
.yad_c00354{bottom:345.294867pt;}
.yac_c00354{bottom:348.543781pt;}
.ya8_c00354{bottom:349.938928pt;}
.yab_c00354{bottom:352.287816pt;}
.ya7_c00354{bottom:352.571435pt;}
.yaa_c00354{bottom:354.160317pt;}
.ya9_c00354{bottom:355.948349pt;}
.ya6_c00354{bottom:356.778187pt;}
.ya5_c00354{bottom:358.728789pt;}
.ya4_c00354{bottom:360.820651pt;}
.ya3_c00354{bottom:365.574667pt;}
.y99_c00354{bottom:369.708447pt;}
.y98_c00354{bottom:372.287959pt;}
.y97_c00354{bottom:374.292123pt;}
.y96_c00354{bottom:377.252843pt;}
.y95_c00354{bottom:378.746667pt;}
.ya2_c00354{bottom:412.297933pt;}
.ya1_c00354{bottom:414.313827pt;}
.ya0_c00354{bottom:420.290997pt;}
.y9f_c00354{bottom:422.999819pt;}
.y9e_c00354{bottom:424.372589pt;}
.y9d_c00354{bottom:428.944592pt;}
.y94_c00354{bottom:431.701260pt;}
.y93_c00354{bottom:432.512991pt;}
.y92_c00354{bottom:434.579761pt;}
.y91_c00354{bottom:436.567697pt;}
.y90_c00354{bottom:437.744051pt;}
.y8f_c00354{bottom:440.138247pt;}
.y8e_c00354{bottom:441.686623pt;}
.y8d_c00354{bottom:444.497587pt;}
.y9c_c00354{bottom:446.480368pt;}
.y9b_c00354{bottom:450.565717pt;}
.y9a_c00354{bottom:452.681333pt;}
.y8c_c00354{bottom:455.318656pt;}
.y8b_c00354{bottom:457.552272pt;}
.y8a_c00354{bottom:459.759593pt;}
.y89_c00354{bottom:460.893816pt;}
.y88_c00354{bottom:463.012387pt;}
.y87_c00354{bottom:463.730187pt;}
.y86_c00354{bottom:467.730676pt;}
.y85_c00354{bottom:470.897333pt;}
.y3_c00354{bottom:476.160000pt;}
.y4_c00354{bottom:476.640000pt;}
.y2_c00354{bottom:492.000000pt;}
.y1_c00354{bottom:497.520000pt;}
.y84_c00354{bottom:510.515376pt;}
.y83_c00354{bottom:512.272192pt;}
.y82_c00354{bottom:515.938947pt;}
.y81_c00354{bottom:519.558419pt;}
.y80_c00354{bottom:521.968003pt;}
.y7f_c00354{bottom:522.991499pt;}
.y79_c00354{bottom:527.426505pt;}
.y78_c00354{bottom:529.317889pt;}
.y77_c00354{bottom:529.914141pt;}
.y76_c00354{bottom:532.647297pt;}
.y75_c00354{bottom:534.555993pt;}
.y74_c00354{bottom:536.444781pt;}
.y7e_c00354{bottom:542.272309pt;}
.y7d_c00354{bottom:546.431451pt;}
.y7c_c00354{bottom:550.353333pt;}
.y73_c00354{bottom:555.939561pt;}
.y72_c00354{bottom:557.211437pt;}
.y71_c00354{bottom:559.892409pt;}
.y70_c00354{bottom:564.344537pt;}
.y6f_c00354{bottom:566.436121pt;}
.y6e_c00354{bottom:585.662533pt;}
.y6d_c00354{bottom:588.696597pt;}
.y6c_c00354{bottom:590.268101pt;}
.y6b_c00354{bottom:591.585505pt;}
.y6a_c00354{bottom:592.551481pt;}
.y69_c00354{bottom:595.443073pt;}
.y68_c00354{bottom:596.734913pt;}
.y67_c00354{bottom:598.345269pt;}
.y66_c00354{bottom:599.289333pt;}
.y7b_c00354{bottom:603.883837pt;}
.y7a_c00354{bottom:609.146667pt;}
.y65_c00354{bottom:612.907713pt;}
.y64_c00354{bottom:614.230829pt;}
.y63_c00354{bottom:617.877179pt;}
.y62_c00354{bottom:620.640437pt;}
.y61_c00354{bottom:621.960704pt;}
.y60_c00354{bottom:625.143395pt;}
.y5f_c00354{bottom:626.965620pt;}
.y5e_c00354{bottom:630.051803pt;}
.y5d_c00354{bottom:632.232819pt;}
.y5c_c00354{bottom:634.392508pt;}
.y5b_c00354{bottom:636.688544pt;}
.y5a_c00354{bottom:637.868976pt;}
.y59_c00354{bottom:641.800000pt;}
.y4e_c00354{bottom:746.055965pt;}
.y4d_c00354{bottom:747.188112pt;}
.y4c_c00354{bottom:750.549136pt;}
.y4b_c00354{bottom:752.775581pt;}
.y4a_c00354{bottom:754.289805pt;}
.y49_c00354{bottom:755.707712pt;}
.y48_c00354{bottom:757.938667pt;}
.y58_c00354{bottom:764.165043pt;}
.y57_c00354{bottom:766.305891pt;}
.y56_c00354{bottom:768.980835pt;}
.y55_c00354{bottom:770.563179pt;}
.y54_c00354{bottom:773.306667pt;}
.y47_c00354{bottom:775.128629pt;}
.y46_c00354{bottom:776.699565pt;}
.y45_c00354{bottom:778.187813pt;}
.y44_c00354{bottom:782.705597pt;}
.y43_c00354{bottom:785.228737pt;}
.y42_c00354{bottom:788.669333pt;}
.y41_c00354{bottom:794.305648pt;}
.y40_c00354{bottom:797.784289pt;}
.y3f_c00354{bottom:799.412271pt;}
.y3e_c00354{bottom:803.924123pt;}
.y3d_c00354{bottom:809.424840pt;}
.y3c_c00354{bottom:811.087021pt;}
.y3b_c00354{bottom:813.856779pt;}
.y3a_c00354{bottom:817.143141pt;}
.y39_c00354{bottom:819.312656pt;}
.y38_c00354{bottom:824.182047pt;}
.y36_c00354{bottom:825.508769pt;}
.y37_c00354{bottom:826.862011pt;}
.y35_c00354{bottom:827.138271pt;}
.y34_c00354{bottom:828.800452pt;}
.y33_c00354{bottom:832.699977pt;}
.y32_c00354{bottom:835.526772pt;}
.y31_c00354{bottom:840.515025pt;}
.y30_c00354{bottom:842.687580pt;}
.y2f_c00354{bottom:843.884949pt;}
.y53_c00354{bottom:846.147051pt;}
.y52_c00354{bottom:846.799637pt;}
.y51_c00354{bottom:847.737408pt;}
.y50_c00354{bottom:848.182848pt;}
.y4f_c00354{bottom:849.122667pt;}
.y2e_c00354{bottom:860.435149pt;}
.y2d_c00354{bottom:863.325505pt;}
.y2c_c00354{bottom:864.975769pt;}
.y2b_c00354{bottom:866.682577pt;}
.y2a_c00354{bottom:872.909333pt;}
.y22_c00354{bottom:876.390897pt;}
.y21_c00354{bottom:877.241960pt;}
.y20_c00354{bottom:879.008724pt;}
.y1f_c00354{bottom:881.933724pt;}
.y1e_c00354{bottom:882.491211pt;}
.y29_c00354{bottom:890.918867pt;}
.y28_c00354{bottom:892.608100pt;}
.y27_c00354{bottom:897.005607pt;}
.y26_c00354{bottom:898.617913pt;}
.y25_c00354{bottom:900.273413pt;}
.y24_c00354{bottom:901.903393pt;}
.y23_c00354{bottom:902.892000pt;}
.y1d_c00354{bottom:905.755211pt;}
.y1c_c00354{bottom:907.044587pt;}
.y1b_c00354{bottom:908.787632pt;}
.y1a_c00354{bottom:913.079216pt;}
.y19_c00354{bottom:914.421333pt;}
.y18_c00354{bottom:984.348000pt;}
.y17_c00354{bottom:990.293333pt;}
.y16_c00354{bottom:991.357333pt;}
.y15_c00354{bottom:994.318667pt;}
.y14_c00354{bottom:998.260000pt;}
.y13_c00354{bottom:1000.180000pt;}
.y12_c00354{bottom:1002.209333pt;}
.y11_c00354{bottom:1006.618667pt;}
.y10_c00354{bottom:1008.056000pt;}
.yf_c00354{bottom:1011.457333pt;}
.ye_c00354{bottom:1013.297333pt;}
.yd_c00354{bottom:1052.160000pt;}
.h3_c00354{height:32.000000pt;}
.h5_c00354{height:32.003360pt;}
.h2_c00354{height:37.333333pt;}
.h25_c00354{height:42.669163pt;}
.h11_c00354{height:58.693559pt;}
.ha_c00354{height:63.968920pt;}
.h14_c00354{height:63.970873pt;}
.h1f_c00354{height:63.974171pt;}
.hb_c00354{height:63.976092pt;}
.h1c_c00354{height:63.991199pt;}
.h9_c00354{height:63.997984pt;}
.h10_c00354{height:64.008191pt;}
.he_c00354{height:64.019261pt;}
.h1a_c00354{height:64.020093pt;}
.h15_c00354{height:64.025915pt;}
.h20_c00354{height:64.029337pt;}
.h16_c00354{height:69.311421pt;}
.h8_c00354{height:69.333333pt;}
.h1b_c00354{height:69.337389pt;}
.h12_c00354{height:74.632686pt;}
.h1e_c00354{height:74.636533pt;}
.hc_c00354{height:74.638773pt;}
.h18_c00354{height:74.643143pt;}
.h1d_c00354{height:74.656399pt;}
.h7_c00354{height:74.666667pt;}
.h19_c00354{height:74.689138pt;}
.hd_c00354{height:79.970114pt;}
.hf_c00354{height:79.977797pt;}
.h24_c00354{height:79.993920pt;}
.h4_c00354{height:80.000000pt;}
.h13_c00354{height:85.294498pt;}
.h17_c00354{height:85.306364pt;}
.h21_c00354{height:85.372450pt;}
.h23_c00354{height:101.325632pt;}
.h22_c00354{height:101.353699pt;}
.h6_c00354{height:112.011759pt;}
.h0_c00354{height:1112.400000pt;}
.h1_c00354{height:1112.666667pt;}
.w0_c00354{width:813.333333pt;}
.x0_c00354{left:0.000000pt;}
.x1_c00354{left:5.760000pt;}
.x3_c00354{left:105.509296pt;}
.xc0_c00354{left:113.724000pt;}
.x2_c00354{left:114.854667pt;}
.xac_c00354{left:118.794544pt;}
.xa0_c00354{left:119.886048pt;}
.x91_c00354{left:122.257333pt;}
.x79_c00354{left:125.303307pt;}
.x71_c00354{left:126.978667pt;}
.x65_c00354{left:128.302643pt;}
.x5c_c00354{left:131.242667pt;}
.x56_c00354{left:133.537816pt;}
.x43_c00354{left:137.498667pt;}
.x32_c00354{left:141.063892pt;}
.x1b_c00354{left:142.337719pt;}
.xc_c00354{left:147.973333pt;}
.x92_c00354{left:149.439457pt;}
.x8b_c00354{left:151.488635pt;}
.xa1_c00354{left:157.001237pt;}
.x5d_c00354{left:159.822059pt;}
.x1c_c00354{left:160.903919pt;}
.xa6_c00354{left:175.055164pt;}
.x8c_c00354{left:179.794392pt;}
.x57_c00354{left:180.840720pt;}
.xd_c00354{left:184.781333pt;}
.x33_c00354{left:188.828247pt;}
.x7a_c00354{left:193.816601pt;}
.x44_c00354{left:196.149291pt;}
.x4a_c00354{left:199.457333pt;}
.xad_c00354{left:202.820344pt;}
.xa7_c00354{left:204.159364pt;}
.x93_c00354{left:207.322849pt;}
.x5e_c00354{left:208.571927pt;}
.x4_c00354{left:211.011865pt;}
.x72_c00354{left:212.478415pt;}
.x80_c00354{left:219.074667pt;}
.x9c_c00354{left:226.152856pt;}
.x4b_c00354{left:227.297333pt;}
.xbc_c00354{left:228.758667pt;}
.x7b_c00354{left:231.553247pt;}
.x45_c00354{left:233.425311pt;}
.x3d_c00354{left:235.586667pt;}
.x17_c00354{left:239.024000pt;}
.x58_c00354{left:247.755249pt;}
.xe_c00354{left:252.794667pt;}
.x1d_c00354{left:258.282460pt;}
.x66_c00354{left:263.769415pt;}
.x9d_c00354{left:264.763615pt;}
.x94_c00354{left:265.763017pt;}
.x18_c00354{left:269.496164pt;}
.x46_c00354{left:273.233463pt;}
.x34_c00354{left:275.604629pt;}
.x5_c00354{left:279.001677pt;}
.xa8_c00354{left:280.544236pt;}
.xf_c00354{left:281.546667pt;}
.x4c_c00354{left:285.908000pt;}
.x59_c00354{left:287.256837pt;}
.x7c_c00354{left:289.894205pt;}
.x95_c00354{left:293.579173pt;}
.x3e_c00354{left:302.981871pt;}
.x81_c00354{left:306.331323pt;}
.x6_c00354{left:308.281515pt;}
.xa2_c00354{left:311.642825pt;}
.x35_c00354{left:314.268023pt;}
.xbd_c00354{left:316.163507pt;}
.x1e_c00354{left:317.091825pt;}
.x7d_c00354{left:318.558599pt;}
.xae_c00354{left:319.516468pt;}
.x73_c00354{left:320.491627pt;}
.x4d_c00354{left:326.694667pt;}
.x47_c00354{left:331.765539pt;}
.x5f_c00354{left:335.215823pt;}
.x74_c00354{left:339.872227pt;}
.xc1_c00354{left:343.878948pt;}
.x1f_c00354{left:345.414249pt;}
.x7_c00354{left:346.959521pt;}
.xaf_c00354{left:348.098704pt;}
.x3f_c00354{left:352.405731pt;}
.x8d_c00354{left:354.619752pt;}
.x5a_c00354{left:356.281841pt;}
.x67_c00354{left:361.283923pt;}
.x60_c00354{left:364.458551pt;}
.x19_c00354{left:366.934628pt;}
.x10_c00354{left:369.742667pt;}
.xa9_c00354{left:370.847176pt;}
.x36_c00354{left:372.836668pt;}
.x8_c00354{left:376.768100pt;}
.xa3_c00354{left:380.634693pt;}
.xa_c00354{left:382.560000pt;}
.x5b_c00354{left:384.914433pt;}
.x9e_c00354{left:391.253557pt;}
.x82_c00354{left:396.117447pt;}
.x75_c00354{left:397.073635pt;}
.xaa_c00354{left:399.213448pt;}
.x96_c00354{left:401.916061pt;}
.xb_c00354{left:403.200000pt;}
.x61_c00354{left:404.339963pt;}
.x9_c00354{left:405.809572pt;}
.x11_c00354{left:410.333333pt;}
.x7e_c00354{left:417.375732pt;}
.x48_c00354{left:420.125091pt;}
.x37_c00354{left:422.196568pt;}
.x2b_c00354{left:424.026775pt;}
.x76_c00354{left:427.697647pt;}
.xab_c00354{left:428.654644pt;}
.x9f_c00354{left:430.785027pt;}
.x63_c00354{left:432.486635pt;}
.xbe_c00354{left:433.613469pt;}
.x1a_c00354{left:435.784376pt;}
.x7f_c00354{left:437.167673pt;}
.x40_c00354{left:440.901147pt;}
.x27_c00354{left:444.201333pt;}
.x12_c00354{left:448.745333pt;}
.x49_c00354{left:449.888631pt;}
.x38_c00354{left:451.813557pt;}
.x8e_c00354{left:453.271499pt;}
.x64_c00354{left:460.736503pt;}
.x2c_c00354{left:462.743395pt;}
.x41_c00354{left:470.053299pt;}
.x88_c00354{left:472.724000pt;}
.xb0_c00354{left:476.101420pt;}
.x20_c00354{left:477.149333pt;}
.xa4_c00354{left:478.711596pt;}
.x8f_c00354{left:483.085173pt;}
.x77_c00354{left:487.295323pt;}
.x97_c00354{left:490.720501pt;}
.x21_c00354{left:495.088051pt;}
.xb1_c00354{left:497.121532pt;}
.x42_c00354{left:500.825163pt;}
.x6b_c00354{left:502.312656pt;}
.xa5_c00354{left:517.948719pt;}
.x6c_c00354{left:519.050835pt;}
.x22_c00354{left:524.664779pt;}
.x13_c00354{left:527.568000pt;}
.x4e_c00354{left:528.949333pt;}
.x90_c00354{left:531.973832pt;}
.x89_c00354{left:542.496176pt;}
.x62_c00354{left:543.763067pt;}
.x78_c00354{left:547.602955pt;}
.xb3_c00354{left:548.754048pt;}
.x39_c00354{left:549.830689pt;}
.x2d_c00354{left:551.647665pt;}
.x28_c00354{left:553.224184pt;}
.x23_c00354{left:554.704579pt;}
.x6d_c00354{left:558.467613pt;}
.x69_c00354{left:561.257333pt;}
.x85_c00354{left:564.816576pt;}
.xb6_c00354{left:566.053976pt;}
.x8a_c00354{left:573.197317pt;}
.x4f_c00354{left:579.703861pt;}
.x98_c00354{left:582.428000pt;}
.x24_c00354{left:583.960616pt;}
.x14_c00354{left:586.784000pt;}
.xba_c00354{left:593.788823pt;}
.x99_c00354{left:599.900984pt;}
.x2e_c00354{left:602.029593pt;}
.x86_c00354{left:605.161117pt;}
.xb7_c00354{left:606.303544pt;}
.x15_c00354{left:608.054667pt;}
.x50_c00354{left:608.977225pt;}
.x29_c00354{left:612.002392pt;}
.x52_c00354{left:613.450667pt;}
.x83_c00354{left:615.462667pt;}
.x6e_c00354{left:617.691955pt;}
.x68_c00354{left:622.065333pt;}
.xbb_c00354{left:625.062851pt;}
.xb4_c00354{left:627.821124pt;}
.x6a_c00354{left:628.740763pt;}
.x3a_c00354{left:630.230137pt;}
.x84_c00354{left:646.512443pt;}
.x9a_c00354{left:649.130328pt;}
.xbf_c00354{left:652.396517pt;}
.x3b_c00354{left:659.248327pt;}
.x2a_c00354{left:662.608976pt;}
.x25_c00354{left:663.755373pt;}
.x2f_c00354{left:671.520959pt;}
.x6f_c00354{left:677.683936pt;}
.x9b_c00354{left:679.210048pt;}
.x53_c00354{left:682.278069pt;}
.xb8_c00354{left:686.338152pt;}
.x26_c00354{left:694.407280pt;}
.xb5_c00354{left:696.770088pt;}
.x51_c00354{left:698.069377pt;}
.x30_c00354{left:701.137948pt;}
.x54_c00354{left:702.945984pt;}
.x70_c00354{left:706.419979pt;}
.xb9_c00354{left:714.906276pt;}
.x3c_c00354{left:721.230284pt;}
.x87_c00354{left:724.217280pt;}
.x16_c00354{left:726.953333pt;}
.x31_c00354{left:730.182751pt;}
.xb2_c00354{left:733.553400pt;}
.x55_c00354{left:743.146755pt;}
}





/* 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_c00355 {
    display:none;
  }
  .loading-indicator_c00355.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00355 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_c00355 { 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_c00355" -> "#page-container .classname_c00355")
 */
.pf_c00355 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00355 { /* 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_c00355.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00355 { /* 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_c00355 { /* 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_c00355 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00355 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00355 {overflow:visible;}
  }
}
.c_c00355 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00355 { /* 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_c00355:after { /* webkit #35443 */
  content: '';
}
.t_c00355:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00355 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 */
}
.__c00355 { /* 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_c00355 { /* info for Javascript */
  display:none;
}
.l_c00355 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00355 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00355 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00355: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_c00355 {
    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_c00355.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00355.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_c00355 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00355{font-family:sans-serif;visibility:hidden;}
.sc__c00355{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00355{-webkit-text-stroke:0px transparent;}
}
.y0_c00355{bottom:0.000000px;}
.h0_c00355{height:1251.450000px;}
.h1_c00355{height:1251.750000px;}
.w0_c00355{width:915.000000px;}
.x0_c00355{left:0.000000px;}
@media print{
.y0_c00355{bottom:0.000000pt;}
.h0_c00355{height:1112.400000pt;}
.h1_c00355{height:1112.666667pt;}
.w0_c00355{width:813.333333pt;}
.x0_c00355{left:0.000000pt;}
}





/* 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_c00356 {
    display:none;
  }
  .loading-indicator_c00356.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00356 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_c00356 { 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_c00356" -> "#page-container .classname_c00356")
 */
.pf_c00356 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00356 { /* 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_c00356.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00356 { /* 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_c00356 { /* 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_c00356 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00356 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00356 {overflow:visible;}
  }
}
.c_c00356 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00356 { /* 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_c00356:after { /* webkit #35443 */
  content: '';
}
.t_c00356:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00356 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 */
}
.__c00356 { /* 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_c00356 { /* info for Javascript */
  display:none;
}
.l_c00356 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00356 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00356 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00356: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_c00356 {
    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_c00356.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00356.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_c00356 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00356{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00356;src:url('chunks/assets/font_c605e72f209fc835e906f064.woff2')format("woff");}.ff1_c00356{font-family:ff1_c00356;line-height:1.000000;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;}
.mf9_c00356{transform:matrix(0.115412,0.006939,-0.015003,0.249549,0,0);-ms-transform:matrix(0.115412,0.006939,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.115412,0.006939,-0.015003,0.249549,0,0);}
.me2_c00356{transform:matrix(0.117300,0.006582,-0.014006,0.249607,0,0);-ms-transform:matrix(0.117300,0.006582,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.117300,0.006582,-0.014006,0.249607,0,0);}
.mfa_c00356{transform:matrix(0.119439,0.007181,-0.015003,0.249549,0,0);-ms-transform:matrix(0.119439,0.007181,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.119439,0.007181,-0.015003,0.249549,0,0);}
.mb2_c00356{transform:matrix(0.122514,0.007366,-0.015003,0.249549,0,0);-ms-transform:matrix(0.122514,0.007366,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.122514,0.007366,-0.015003,0.249549,0,0);}
.m93_c00356{transform:matrix(0.130007,0.005986,-0.011499,0.249735,0,0);-ms-transform:matrix(0.130007,0.005986,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.130007,0.005986,-0.011499,0.249735,0,0);}
.m8e_c00356{transform:matrix(0.131895,0.006073,-0.011499,0.249735,0,0);-ms-transform:matrix(0.131895,0.006073,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.131895,0.006073,-0.011499,0.249735,0,0);}
.ma3_c00356{transform:matrix(0.139372,0.006836,-0.012248,0.249700,0,0);-ms-transform:matrix(0.139372,0.006836,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.139372,0.006836,-0.012248,0.249700,0,0);}
.m96_c00356{transform:matrix(0.144262,0.007076,-0.012248,0.249700,0,0);-ms-transform:matrix(0.144262,0.007076,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.144262,0.007076,-0.012248,0.249700,0,0);}
.mad_c00356{transform:matrix(0.146441,0.008804,-0.015003,0.249549,0,0);-ms-transform:matrix(0.146441,0.008804,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.146441,0.008804,-0.015003,0.249549,0,0);}
.mbb_c00356{transform:matrix(0.153643,0.008621,-0.014006,0.249607,0,0);-ms-transform:matrix(0.153643,0.008621,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.153643,0.008621,-0.014006,0.249607,0,0);}
.m97_c00356{transform:matrix(0.154814,0.007593,-0.012248,0.249700,0,0);-ms-transform:matrix(0.154814,0.007593,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.154814,0.007593,-0.012248,0.249700,0,0);}
.ma4_c00356{transform:matrix(0.156338,0.006416,-0.010252,0.249790,0,0);-ms-transform:matrix(0.156338,0.006416,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.156338,0.006416,-0.010252,0.249790,0,0);}
.mac_c00356{transform:matrix(0.159412,0.009584,-0.015003,0.249549,0,0);-ms-transform:matrix(0.159412,0.009584,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.159412,0.009584,-0.015003,0.249549,0,0);}
.ma5_c00356{transform:matrix(0.161419,0.006625,-0.010252,0.249790,0,0);-ms-transform:matrix(0.161419,0.006625,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.161419,0.006625,-0.010252,0.249790,0,0);}
.m82_c00356{transform:matrix(0.162055,0.001783,-0.002750,0.249985,0,0);-ms-transform:matrix(0.162055,0.001783,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.162055,0.001783,-0.002750,0.249985,0,0);}
.mcf_c00356{transform:matrix(0.162330,0.009109,-0.014006,0.249607,0,0);-ms-transform:matrix(0.162330,0.009109,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.162330,0.009109,-0.014006,0.249607,0,0);}
.md7_c00356{transform:matrix(0.164232,0.009215,-0.014006,0.249607,0,0);-ms-transform:matrix(0.164232,0.009215,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.164232,0.009215,-0.014006,0.249607,0,0);}
.ma2_c00356{transform:matrix(0.164622,0.008075,-0.012248,0.249700,0,0);-ms-transform:matrix(0.164622,0.008075,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.164622,0.008075,-0.012248,0.249700,0,0);}
.me4_c00356{transform:matrix(0.165644,0.009295,-0.014006,0.249607,0,0);-ms-transform:matrix(0.165644,0.009295,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.165644,0.009295,-0.014006,0.249607,0,0);}
.m40_c00356{transform:matrix(0.166062,0.005984,-0.009003,0.249838,0,0);-ms-transform:matrix(0.166062,0.005984,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.166062,0.005984,-0.009003,0.249838,0,0);}
.mbc_c00356{transform:matrix(0.166184,0.009325,-0.014006,0.249607,0,0);-ms-transform:matrix(0.166184,0.009325,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.166184,0.009325,-0.014006,0.249607,0,0);}
.m9b_c00356{transform:matrix(0.170081,0.008342,-0.012248,0.249700,0,0);-ms-transform:matrix(0.170081,0.008342,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.170081,0.008342,-0.012248,0.249700,0,0);}
.m7f_c00356{transform:matrix(0.170660,0.001877,-0.002750,0.249985,0,0);-ms-transform:matrix(0.170660,0.001877,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.170660,0.001877,-0.002750,0.249985,0,0);}
.mfd_c00356{transform:matrix(0.171301,0.010299,-0.015003,0.249549,0,0);-ms-transform:matrix(0.171301,0.010299,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.171301,0.010299,-0.015003,0.249549,0,0);}
.m81_c00356{transform:matrix(0.171870,0.001891,-0.002750,0.249985,0,0);-ms-transform:matrix(0.171870,0.001891,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.171870,0.001891,-0.002750,0.249985,0,0);}
.md0_c00356{transform:matrix(0.172509,0.009680,-0.014006,0.249607,0,0);-ms-transform:matrix(0.172509,0.009680,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.172509,0.009680,-0.014006,0.249607,0,0);}
.m14_c00356{transform:matrix(0.173529,0.007122,-0.010252,0.249790,0,0);-ms-transform:matrix(0.173529,0.007122,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.173529,0.007122,-0.010252,0.249790,0,0);}
.m10a_c00356{transform:matrix(0.173601,0.006951,-0.010002,0.249800,0,0);-ms-transform:matrix(0.173601,0.006951,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.173601,0.006951,-0.010002,0.249800,0,0);}
.md4_c00356{transform:matrix(0.174056,0.009767,-0.014006,0.249607,0,0);-ms-transform:matrix(0.174056,0.009767,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.174056,0.009767,-0.014006,0.249607,0,0);}
.m103_c00356{transform:matrix(0.175823,0.010570,-0.015003,0.249549,0,0);-ms-transform:matrix(0.175823,0.010570,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.175823,0.010570,-0.015003,0.249549,0,0);}
.m83_c00356{transform:matrix(0.176469,0.001941,-0.002750,0.249985,0,0);-ms-transform:matrix(0.176469,0.001941,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.176469,0.001941,-0.002750,0.249985,0,0);}
.md5_c00356{transform:matrix(0.177316,0.009950,-0.014006,0.249607,0,0);-ms-transform:matrix(0.177316,0.009950,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.177316,0.009950,-0.014006,0.249607,0,0);}
.mcd_c00356{transform:matrix(0.179433,0.010068,-0.014006,0.249607,0,0);-ms-transform:matrix(0.179433,0.010068,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.179433,0.010068,-0.014006,0.249607,0,0);}
.mab_c00356{transform:matrix(0.181412,0.007445,-0.010252,0.249790,0,0);-ms-transform:matrix(0.181412,0.007445,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.181412,0.007445,-0.010252,0.249790,0,0);}
.mae_c00356{transform:matrix(0.182081,0.010947,-0.015003,0.249549,0,0);-ms-transform:matrix(0.182081,0.010947,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.182081,0.010947,-0.015003,0.249549,0,0);}
.me9_c00356{transform:matrix(0.182243,0.010226,-0.014006,0.249607,0,0);-ms-transform:matrix(0.182243,0.010226,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.182243,0.010226,-0.014006,0.249607,0,0);}
.m90_c00356{transform:matrix(0.183166,0.008434,-0.011499,0.249735,0,0);-ms-transform:matrix(0.183166,0.008434,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.183166,0.008434,-0.011499,0.249735,0,0);}
.m57_c00356{transform:matrix(0.183920,0.008469,-0.011499,0.249735,0,0);-ms-transform:matrix(0.183920,0.008469,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.183920,0.008469,-0.011499,0.249735,0,0);}
.m26_c00356{transform:matrix(0.183960,0.007550,-0.010252,0.249790,0,0);-ms-transform:matrix(0.183960,0.007550,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.183960,0.007550,-0.010252,0.249790,0,0);}
.mff_c00356{transform:matrix(0.184612,0.011099,-0.015003,0.249549,0,0);-ms-transform:matrix(0.184612,0.011099,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.184612,0.011099,-0.015003,0.249549,0,0);}
.me5_c00356{transform:matrix(0.184759,0.010367,-0.014006,0.249607,0,0);-ms-transform:matrix(0.184759,0.010367,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.184759,0.010367,-0.014006,0.249607,0,0);}
.m101_c00356{transform:matrix(0.185884,0.011175,-0.015003,0.249549,0,0);-ms-transform:matrix(0.185884,0.011175,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.185884,0.011175,-0.015003,0.249549,0,0);}
.m10d_c00356{transform:matrix(0.186156,0.007454,-0.010002,0.249800,0,0);-ms-transform:matrix(0.186156,0.007454,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.186156,0.007454,-0.010002,0.249800,0,0);}
.meb_c00356{transform:matrix(0.186616,0.010471,-0.014006,0.249607,0,0);-ms-transform:matrix(0.186616,0.010471,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.186616,0.010471,-0.014006,0.249607,0,0);}
.md6_c00356{transform:matrix(0.187116,0.010499,-0.014006,0.249607,0,0);-ms-transform:matrix(0.187116,0.010499,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.187116,0.010499,-0.014006,0.249607,0,0);}
.m88_c00356{transform:matrix(0.188638,0.003961,-0.005249,0.249945,0,0);-ms-transform:matrix(0.188638,0.003961,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.188638,0.003961,-0.005249,0.249945,0,0);}
.md3_c00356{transform:matrix(0.189257,0.010620,-0.014006,0.249607,0,0);-ms-transform:matrix(0.189257,0.010620,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.189257,0.010620,-0.014006,0.249607,0,0);}
.m4f_c00356{transform:matrix(0.190601,0.006869,-0.009003,0.249838,0,0);-ms-transform:matrix(0.190601,0.006869,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.190601,0.006869,-0.009003,0.249838,0,0);}
.m10b_c00356{transform:matrix(0.190777,0.007639,-0.010002,0.249800,0,0);-ms-transform:matrix(0.190777,0.007639,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.190777,0.007639,-0.010002,0.249800,0,0);}
.m46_c00356{transform:matrix(0.191251,0.006892,-0.009003,0.249838,0,0);-ms-transform:matrix(0.191251,0.006892,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.191251,0.006892,-0.009003,0.249838,0,0);}
.mb4_c00356{transform:matrix(0.191629,0.011521,-0.015003,0.249549,0,0);-ms-transform:matrix(0.191629,0.011521,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.191629,0.011521,-0.015003,0.249549,0,0);}
.mfb_c00356{transform:matrix(0.192033,0.011545,-0.015003,0.249549,0,0);-ms-transform:matrix(0.192033,0.011545,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.192033,0.011545,-0.015003,0.249549,0,0);}
.m5d_c00356{transform:matrix(0.192951,0.008885,-0.011499,0.249735,0,0);-ms-transform:matrix(0.192951,0.008885,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.192951,0.008885,-0.011499,0.249735,0,0);}
.md1_c00356{transform:matrix(0.193186,0.010840,-0.014006,0.249607,0,0);-ms-transform:matrix(0.193186,0.010840,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.193186,0.010840,-0.014006,0.249607,0,0);}
.m58_c00356{transform:matrix(0.193375,0.008904,-0.011499,0.249735,0,0);-ms-transform:matrix(0.193375,0.008904,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.193375,0.008904,-0.011499,0.249735,0,0);}
.m107_c00356{transform:matrix(0.193435,0.007745,-0.010002,0.249800,0,0);-ms-transform:matrix(0.193435,0.007745,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.193435,0.007745,-0.010002,0.249800,0,0);}
.m1c_c00356{transform:matrix(0.194376,0.007977,-0.010252,0.249790,0,0);-ms-transform:matrix(0.194376,0.007977,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.194376,0.007977,-0.010252,0.249790,0,0);}
.m3b_c00356{transform:matrix(0.194840,0.006241,-0.008004,0.249872,0,0);-ms-transform:matrix(0.194840,0.006241,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.194840,0.006241,-0.008004,0.249872,0,0);}
.m34_c00356{transform:matrix(0.195405,0.006259,-0.008004,0.249872,0,0);-ms-transform:matrix(0.195405,0.006259,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.195405,0.006259,-0.008004,0.249872,0,0);}
.m2a_c00356{transform:matrix(0.196018,0.006475,-0.008254,0.249864,0,0);-ms-transform:matrix(0.196018,0.006475,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.196018,0.006475,-0.008254,0.249864,0,0);}
.m38_c00356{transform:matrix(0.196024,0.006279,-0.008004,0.249872,0,0);-ms-transform:matrix(0.196024,0.006279,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.196024,0.006279,-0.008004,0.249872,0,0);}
.m108_c00356{transform:matrix(0.196213,0.007856,-0.010002,0.249800,0,0);-ms-transform:matrix(0.196213,0.007856,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.196213,0.007856,-0.010002,0.249800,0,0);}
.m1f_c00356{transform:matrix(0.196629,0.008070,-0.010252,0.249790,0,0);-ms-transform:matrix(0.196629,0.008070,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.196629,0.008070,-0.010252,0.249790,0,0);}
.mfe_c00356{transform:matrix(0.196670,0.011824,-0.015003,0.249549,0,0);-ms-transform:matrix(0.196670,0.011824,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.196670,0.011824,-0.015003,0.249549,0,0);}
.m7d_c00356{transform:matrix(0.196783,0.002165,-0.002750,0.249985,0,0);-ms-transform:matrix(0.196783,0.002165,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.196783,0.002165,-0.002750,0.249985,0,0);}
.mb8_c00356{transform:matrix(0.196974,0.011842,-0.015003,0.249549,0,0);-ms-transform:matrix(0.196974,0.011842,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.196974,0.011842,-0.015003,0.249549,0,0);}
.mce_c00356{transform:matrix(0.197559,0.011085,-0.014006,0.249607,0,0);-ms-transform:matrix(0.197559,0.011085,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.197559,0.011085,-0.014006,0.249607,0,0);}
.m43_c00356{transform:matrix(0.197782,0.007127,-0.009003,0.249838,0,0);-ms-transform:matrix(0.197782,0.007127,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.197782,0.007127,-0.009003,0.249838,0,0);}
.m80_c00356{transform:matrix(0.198208,0.002180,-0.002750,0.249985,0,0);-ms-transform:matrix(0.198208,0.002180,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.198208,0.002180,-0.002750,0.249985,0,0);}
.m22_c00356{transform:matrix(0.198208,0.008135,-0.010252,0.249790,0,0);-ms-transform:matrix(0.198208,0.008135,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.198208,0.008135,-0.010252,0.249790,0,0);}
.m4e_c00356{transform:matrix(0.198971,0.007170,-0.009003,0.249838,0,0);-ms-transform:matrix(0.198971,0.007170,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.198971,0.007170,-0.009003,0.249838,0,0);}
.m92_c00356{transform:matrix(0.199064,0.009166,-0.011499,0.249735,0,0);-ms-transform:matrix(0.199064,0.009166,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.199064,0.009166,-0.011499,0.249735,0,0);}
.md2_c00356{transform:matrix(0.200030,0.011224,-0.014006,0.249607,0,0);-ms-transform:matrix(0.200030,0.011224,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.200030,0.011224,-0.014006,0.249607,0,0);}
.m2f_c00356{transform:matrix(0.200441,0.006621,-0.008254,0.249864,0,0);-ms-transform:matrix(0.200441,0.006621,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.200441,0.006621,-0.008254,0.249864,0,0);}
.m5a_c00356{transform:matrix(0.201282,0.009268,-0.011499,0.249735,0,0);-ms-transform:matrix(0.201282,0.009268,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.201282,0.009268,-0.011499,0.249735,0,0);}
.m102_c00356{transform:matrix(0.202420,0.012170,-0.015003,0.249549,0,0);-ms-transform:matrix(0.202420,0.012170,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.202420,0.012170,-0.015003,0.249549,0,0);}
.m3c_c00356{transform:matrix(0.202561,0.006488,-0.008004,0.249872,0,0);-ms-transform:matrix(0.202561,0.006488,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.202561,0.006488,-0.008004,0.249872,0,0);}
.m3f_c00356{transform:matrix(0.202706,0.006493,-0.008004,0.249872,0,0);-ms-transform:matrix(0.202706,0.006493,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.202706,0.006493,-0.008004,0.249872,0,0);}
.m91_c00356{transform:matrix(0.202810,0.009339,-0.011499,0.249735,0,0);-ms-transform:matrix(0.202810,0.009339,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.202810,0.009339,-0.011499,0.249735,0,0);}
.m23_c00356{transform:matrix(0.203119,0.008336,-0.010252,0.249790,0,0);-ms-transform:matrix(0.203119,0.008336,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.203119,0.008336,-0.010252,0.249790,0,0);}
.m2d_c00356{transform:matrix(0.203444,0.006720,-0.008254,0.249864,0,0);-ms-transform:matrix(0.203444,0.006720,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.203444,0.006720,-0.008254,0.249864,0,0);}
.m41_c00356{transform:matrix(0.203673,0.007340,-0.009003,0.249838,0,0);-ms-transform:matrix(0.203673,0.007340,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.203673,0.007340,-0.009003,0.249838,0,0);}
.m104_c00356{transform:matrix(0.203827,0.012254,-0.015003,0.249549,0,0);-ms-transform:matrix(0.203827,0.012254,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.203827,0.012254,-0.015003,0.249549,0,0);}
.m66_c00356{transform:matrix(0.203979,0.009392,-0.011499,0.249735,0,0);-ms-transform:matrix(0.203979,0.009392,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.203979,0.009392,-0.011499,0.249735,0,0);}
.me8_c00356{transform:matrix(0.205277,0.011519,-0.014006,0.249607,0,0);-ms-transform:matrix(0.205277,0.011519,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.205277,0.011519,-0.014006,0.249607,0,0);}
.mf_c00356{transform:matrix(0.205327,0.008427,-0.010252,0.249790,0,0);-ms-transform:matrix(0.205327,0.008427,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.205327,0.008427,-0.010252,0.249790,0,0);}
.m7b_c00356{transform:matrix(0.205623,0.002262,-0.002750,0.249985,0,0);-ms-transform:matrix(0.205623,0.002262,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.205623,0.002262,-0.002750,0.249985,0,0);}
.m54_c00356{transform:matrix(0.205711,0.007413,-0.009003,0.249838,0,0);-ms-transform:matrix(0.205711,0.007413,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.205711,0.007413,-0.009003,0.249838,0,0);}
.me6_c00356{transform:matrix(0.205741,0.011545,-0.014006,0.249607,0,0);-ms-transform:matrix(0.205741,0.011545,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.205741,0.011545,-0.014006,0.249607,0,0);}
.m8d_c00356{transform:matrix(0.206132,0.009492,-0.011499,0.249735,0,0);-ms-transform:matrix(0.206132,0.009492,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.206132,0.009492,-0.011499,0.249735,0,0);}
.m109_c00356{transform:matrix(0.207004,0.008288,-0.010002,0.249800,0,0);-ms-transform:matrix(0.207004,0.008288,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.207004,0.008288,-0.010002,0.249800,0,0);}
.m13_c00356{transform:matrix(0.207221,0.008505,-0.010252,0.249790,0,0);-ms-transform:matrix(0.207221,0.008505,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.207221,0.008505,-0.010252,0.249790,0,0);}
.m39_c00356{transform:matrix(0.207319,0.006641,-0.008004,0.249872,0,0);-ms-transform:matrix(0.207319,0.006641,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.207319,0.006641,-0.008004,0.249872,0,0);}
.m85_c00356{transform:matrix(0.207549,0.004359,-0.005249,0.249945,0,0);-ms-transform:matrix(0.207549,0.004359,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.207549,0.004359,-0.005249,0.249945,0,0);}
.mfc_c00356{transform:matrix(0.208069,0.012509,-0.015003,0.249549,0,0);-ms-transform:matrix(0.208069,0.012509,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.208069,0.012509,-0.015003,0.249549,0,0);}
.m55_c00356{transform:matrix(0.208489,0.009600,-0.011499,0.249735,0,0);-ms-transform:matrix(0.208489,0.009600,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.208489,0.009600,-0.011499,0.249735,0,0);}
.m36_c00356{transform:matrix(0.208778,0.006688,-0.008004,0.249872,0,0);-ms-transform:matrix(0.208778,0.006688,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.208778,0.006688,-0.008004,0.249872,0,0);}
.m3e_c00356{transform:matrix(0.209253,0.006703,-0.008004,0.249872,0,0);-ms-transform:matrix(0.209253,0.006703,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.209253,0.006703,-0.008004,0.249872,0,0);}
.mf3_c00356{transform:matrix(0.209605,0.011120,-0.013245,0.249649,0,0);-ms-transform:matrix(0.209605,0.011120,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.209605,0.011120,-0.013245,0.249649,0,0);}
.m17_c00356{transform:matrix(0.209758,0.008609,-0.010252,0.249790,0,0);-ms-transform:matrix(0.209758,0.008609,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.209758,0.008609,-0.010252,0.249790,0,0);}
.m51_c00356{transform:matrix(0.209884,0.007563,-0.009003,0.249838,0,0);-ms-transform:matrix(0.209884,0.007563,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.209884,0.007563,-0.009003,0.249838,0,0);}
.m11e_c00356{transform:matrix(0.210123,0.014317,-0.016995,0.249422,0,0);-ms-transform:matrix(0.210123,0.014317,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.210123,0.014317,-0.016995,0.249422,0,0);}
.m59_c00356{transform:matrix(0.210467,0.009691,-0.011499,0.249735,0,0);-ms-transform:matrix(0.210467,0.009691,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.210467,0.009691,-0.011499,0.249735,0,0);}
.m100_c00356{transform:matrix(0.210954,0.012683,-0.015003,0.249549,0,0);-ms-transform:matrix(0.210954,0.012683,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.210954,0.012683,-0.015003,0.249549,0,0);}
.mb5_c00356{transform:matrix(0.211199,0.012697,-0.015003,0.249549,0,0);-ms-transform:matrix(0.211199,0.012697,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.211199,0.012697,-0.015003,0.249549,0,0);}
.m122_c00356{transform:matrix(0.211440,0.014407,-0.016995,0.249422,0,0);-ms-transform:matrix(0.211440,0.014407,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.211440,0.014407,-0.016995,0.249422,0,0);}
.mea_c00356{transform:matrix(0.211757,0.011882,-0.014006,0.249607,0,0);-ms-transform:matrix(0.211757,0.011882,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.211757,0.011882,-0.014006,0.249607,0,0);}
.mc7_c00356{transform:matrix(0.211867,0.011888,-0.014006,0.249607,0,0);-ms-transform:matrix(0.211867,0.011888,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.211867,0.011888,-0.014006,0.249607,0,0);}
.m33_c00356{transform:matrix(0.212561,0.006809,-0.008004,0.249872,0,0);-ms-transform:matrix(0.212561,0.006809,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.212561,0.006809,-0.008004,0.249872,0,0);}
.m52_c00356{transform:matrix(0.212647,0.007663,-0.009003,0.249838,0,0);-ms-transform:matrix(0.212647,0.007663,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.212647,0.007663,-0.009003,0.249838,0,0);}
.m8f_c00356{transform:matrix(0.212944,0.009805,-0.011499,0.249735,0,0);-ms-transform:matrix(0.212944,0.009805,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.212944,0.009805,-0.011499,0.249735,0,0);}
.m9e_c00356{transform:matrix(0.213563,0.010475,-0.012248,0.249700,0,0);-ms-transform:matrix(0.213563,0.010475,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.213563,0.010475,-0.012248,0.249700,0,0);}
.m11d_c00356{transform:matrix(0.213615,0.014555,-0.016995,0.249422,0,0);-ms-transform:matrix(0.213615,0.014555,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.213615,0.014555,-0.016995,0.249422,0,0);}
.m47_c00356{transform:matrix(0.214141,0.007717,-0.009003,0.249838,0,0);-ms-transform:matrix(0.214141,0.007717,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.214141,0.007717,-0.009003,0.249838,0,0);}
.m9a_c00356{transform:matrix(0.214158,0.010504,-0.012248,0.249700,0,0);-ms-transform:matrix(0.214158,0.010504,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.214158,0.010504,-0.012248,0.249700,0,0);}
.med_c00356{transform:matrix(0.214328,0.012026,-0.014006,0.249607,0,0);-ms-transform:matrix(0.214328,0.012026,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.214328,0.012026,-0.014006,0.249607,0,0);}
.m28_c00356{transform:matrix(0.215078,0.007105,-0.008254,0.249864,0,0);-ms-transform:matrix(0.215078,0.007105,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.215078,0.007105,-0.008254,0.249864,0,0);}
.m50_c00356{transform:matrix(0.216170,0.007790,-0.009003,0.249838,0,0);-ms-transform:matrix(0.216170,0.007790,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.216170,0.007790,-0.009003,0.249838,0,0);}
.m4c_c00356{transform:matrix(0.216584,0.007805,-0.009003,0.249838,0,0);-ms-transform:matrix(0.216584,0.007805,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.216584,0.007805,-0.009003,0.249838,0,0);}
.m1b_c00356{transform:matrix(0.216703,0.008894,-0.010252,0.249790,0,0);-ms-transform:matrix(0.216703,0.008894,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.216703,0.008894,-0.010252,0.249790,0,0);}
.m20_c00356{transform:matrix(0.217677,0.008934,-0.010252,0.249790,0,0);-ms-transform:matrix(0.217677,0.008934,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.217677,0.008934,-0.010252,0.249790,0,0);}
.m73_c00356{transform:matrix(0.218645,0.008098,-0.009253,0.249829,0,0);-ms-transform:matrix(0.218645,0.008098,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.218645,0.008098,-0.009253,0.249829,0,0);}
.m35_c00356{transform:matrix(0.219592,0.007034,-0.008004,0.249872,0,0);-ms-transform:matrix(0.219592,0.007034,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.219592,0.007034,-0.008004,0.249872,0,0);}
.m64_c00356{transform:matrix(0.220022,0.010131,-0.011499,0.249735,0,0);-ms-transform:matrix(0.220022,0.010131,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.220022,0.010131,-0.011499,0.249735,0,0);}
.m2b_c00356{transform:matrix(0.220165,0.007273,-0.008254,0.249864,0,0);-ms-transform:matrix(0.220165,0.007273,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.220165,0.007273,-0.008254,0.249864,0,0);}
.m45_c00356{transform:matrix(0.220782,0.007956,-0.009003,0.249838,0,0);-ms-transform:matrix(0.220782,0.007956,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.220782,0.007956,-0.009003,0.249838,0,0);}
.m86_c00356{transform:matrix(0.220961,0.004640,-0.005249,0.249945,0,0);-ms-transform:matrix(0.220961,0.004640,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.220961,0.004640,-0.005249,0.249945,0,0);}
.m84_c00356{transform:matrix(0.221176,0.004645,-0.005249,0.249945,0,0);-ms-transform:matrix(0.221176,0.004645,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.221176,0.004645,-0.005249,0.249945,0,0);}
.m1d_c00356{transform:matrix(0.221414,0.009087,-0.010252,0.249790,0,0);-ms-transform:matrix(0.221414,0.009087,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.221414,0.009087,-0.010252,0.249790,0,0);}
.mb6_c00356{transform:matrix(0.221615,0.013324,-0.015003,0.249549,0,0);-ms-transform:matrix(0.221615,0.013324,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.221615,0.013324,-0.015003,0.249549,0,0);}
.m3_c00356{transform:matrix(0.222438,0.009129,-0.010252,0.249790,0,0);-ms-transform:matrix(0.222438,0.009129,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.222438,0.009129,-0.010252,0.249790,0,0);}
.m79_c00356{transform:matrix(0.222692,0.002450,-0.002750,0.249985,0,0);-ms-transform:matrix(0.222692,0.002450,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.222692,0.002450,-0.002750,0.249985,0,0);}
.m78_c00356{transform:matrix(0.223926,0.008294,-0.009253,0.249829,0,0);-ms-transform:matrix(0.223926,0.008294,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.223926,0.008294,-0.009253,0.249829,0,0);}
.m9f_c00356{transform:matrix(0.224330,0.011003,-0.012248,0.249700,0,0);-ms-transform:matrix(0.224330,0.011003,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.224330,0.011003,-0.012248,0.249700,0,0);}
.m18_c00356{transform:matrix(0.224466,0.009212,-0.010252,0.249790,0,0);-ms-transform:matrix(0.224466,0.009212,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.224466,0.009212,-0.010252,0.249790,0,0);}
.m29_c00356{transform:matrix(0.224558,0.007418,-0.008254,0.249864,0,0);-ms-transform:matrix(0.224558,0.007418,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.224558,0.007418,-0.008254,0.249864,0,0);}
.m31_c00356{transform:matrix(0.224757,0.007424,-0.008254,0.249864,0,0);-ms-transform:matrix(0.224757,0.007424,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.224757,0.007424,-0.008254,0.249864,0,0);}
.m30_c00356{transform:matrix(0.224852,0.007428,-0.008254,0.249864,0,0);-ms-transform:matrix(0.224852,0.007428,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.224852,0.007428,-0.008254,0.249864,0,0);}
.m1a_c00356{transform:matrix(0.225480,0.009254,-0.010252,0.249790,0,0);-ms-transform:matrix(0.225480,0.009254,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.225480,0.009254,-0.010252,0.249790,0,0);}
.m5c_c00356{transform:matrix(0.225671,0.010391,-0.011499,0.249735,0,0);-ms-transform:matrix(0.225671,0.010391,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.225671,0.010391,-0.011499,0.249735,0,0);}
.mde_c00356{transform:matrix(0.225755,0.012668,-0.014006,0.249607,0,0);-ms-transform:matrix(0.225755,0.012668,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.225755,0.012668,-0.014006,0.249607,0,0);}
.m1e_c00356{transform:matrix(0.225910,0.009272,-0.010252,0.249790,0,0);-ms-transform:matrix(0.225910,0.009272,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.225910,0.009272,-0.010252,0.249790,0,0);}
.m4d_c00356{transform:matrix(0.226193,0.008151,-0.009003,0.249838,0,0);-ms-transform:matrix(0.226193,0.008151,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.226193,0.008151,-0.009003,0.249838,0,0);}
.m70_c00356{transform:matrix(0.226250,0.008380,-0.009253,0.249829,0,0);-ms-transform:matrix(0.226250,0.008380,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.226250,0.008380,-0.009253,0.249829,0,0);}
.m5f_c00356{transform:matrix(0.226725,0.010440,-0.011499,0.249735,0,0);-ms-transform:matrix(0.226725,0.010440,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.226725,0.010440,-0.011499,0.249735,0,0);}
.m6d_c00356{transform:matrix(0.226949,0.008406,-0.009253,0.249829,0,0);-ms-transform:matrix(0.226949,0.008406,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.226949,0.008406,-0.009253,0.249829,0,0);}
.me0_c00356{transform:matrix(0.227198,0.012749,-0.014006,0.249607,0,0);-ms-transform:matrix(0.227198,0.012749,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.227198,0.012749,-0.014006,0.249607,0,0);}
.m9d_c00356{transform:matrix(0.227412,0.011154,-0.012248,0.249700,0,0);-ms-transform:matrix(0.227412,0.011154,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.227412,0.011154,-0.012248,0.249700,0,0);}
.m7a_c00356{transform:matrix(0.227896,0.002507,-0.002750,0.249985,0,0);-ms-transform:matrix(0.227896,0.002507,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.227896,0.002507,-0.002750,0.249985,0,0);}
.m1_c00356{transform:matrix(0.227913,0.009354,-0.010252,0.249790,0,0);-ms-transform:matrix(0.227913,0.009354,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.227913,0.009354,-0.010252,0.249790,0,0);}
.m7c_c00356{transform:matrix(0.228201,0.002510,-0.002750,0.249985,0,0);-ms-transform:matrix(0.228201,0.002510,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.228201,0.002510,-0.002750,0.249985,0,0);}
.m27_c00356{transform:matrix(0.228817,0.009391,-0.010252,0.249790,0,0);-ms-transform:matrix(0.228817,0.009391,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.228817,0.009391,-0.010252,0.249790,0,0);}
.m94_c00356{transform:matrix(0.228828,0.010537,-0.011499,0.249735,0,0);-ms-transform:matrix(0.228828,0.010537,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.228828,0.010537,-0.011499,0.249735,0,0);}
.m6f_c00356{transform:matrix(0.228893,0.008478,-0.009253,0.249829,0,0);-ms-transform:matrix(0.228893,0.008478,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.228893,0.008478,-0.009253,0.249829,0,0);}
.m42_c00356{transform:matrix(0.228996,0.008252,-0.009003,0.249838,0,0);-ms-transform:matrix(0.228996,0.008252,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.228996,0.008252,-0.009003,0.249838,0,0);}
.me7_c00356{transform:matrix(0.229469,0.012876,-0.014006,0.249607,0,0);-ms-transform:matrix(0.229469,0.012876,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.229469,0.012876,-0.014006,0.249607,0,0);}
.m11c_c00356{transform:matrix(0.229760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229760,0.000000,0.000000,0.250000,0,0);}
.mc_c00356{transform:matrix(0.230021,0.009440,-0.010252,0.249790,0,0);-ms-transform:matrix(0.230021,0.009440,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.230021,0.009440,-0.010252,0.249790,0,0);}
.m6b_c00356{transform:matrix(0.230081,0.010594,-0.011499,0.249735,0,0);-ms-transform:matrix(0.230081,0.010594,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.230081,0.010594,-0.011499,0.249735,0,0);}
.m87_c00356{transform:matrix(0.230499,0.004840,-0.005249,0.249945,0,0);-ms-transform:matrix(0.230499,0.004840,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.230499,0.004840,-0.005249,0.249945,0,0);}
.m48_c00356{transform:matrix(0.230655,0.008312,-0.009003,0.249838,0,0);-ms-transform:matrix(0.230655,0.008312,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.230655,0.008312,-0.009003,0.249838,0,0);}
.me3_c00356{transform:matrix(0.230827,0.012952,-0.014006,0.249607,0,0);-ms-transform:matrix(0.230827,0.012952,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.230827,0.012952,-0.014006,0.249607,0,0);}
.mca_c00356{transform:matrix(0.231276,0.012977,-0.014006,0.249607,0,0);-ms-transform:matrix(0.231276,0.012977,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.231276,0.012977,-0.014006,0.249607,0,0);}
.m6a_c00356{transform:matrix(0.231395,0.010655,-0.011499,0.249735,0,0);-ms-transform:matrix(0.231395,0.010655,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.231395,0.010655,-0.011499,0.249735,0,0);}
.m5_c00356{transform:matrix(0.231445,0.009499,-0.010252,0.249790,0,0);-ms-transform:matrix(0.231445,0.009499,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.231445,0.009499,-0.010252,0.249790,0,0);}
.m95_c00356{transform:matrix(0.232049,0.010685,-0.011499,0.249735,0,0);-ms-transform:matrix(0.232049,0.010685,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.232049,0.010685,-0.011499,0.249735,0,0);}
.mdb_c00356{transform:matrix(0.232709,0.013058,-0.014006,0.249607,0,0);-ms-transform:matrix(0.232709,0.013058,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.232709,0.013058,-0.014006,0.249607,0,0);}
.mf5_c00356{transform:matrix(0.232748,0.012348,-0.013245,0.249649,0,0);-ms-transform:matrix(0.232748,0.012348,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.232748,0.012348,-0.013245,0.249649,0,0);}
.m12_c00356{transform:matrix(0.232964,0.009561,-0.010252,0.249790,0,0);-ms-transform:matrix(0.232964,0.009561,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.232964,0.009561,-0.010252,0.249790,0,0);}
.maa_c00356{transform:matrix(0.232969,0.009561,-0.010252,0.249790,0,0);-ms-transform:matrix(0.232969,0.009561,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.232969,0.009561,-0.010252,0.249790,0,0);}
.m2c_c00356{transform:matrix(0.233293,0.007706,-0.008254,0.249864,0,0);-ms-transform:matrix(0.233293,0.007706,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.233293,0.007706,-0.008254,0.249864,0,0);}
.m8_c00356{transform:matrix(0.233483,0.009582,-0.010252,0.249790,0,0);-ms-transform:matrix(0.233483,0.009582,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.233483,0.009582,-0.010252,0.249790,0,0);}
.m10c_c00356{transform:matrix(0.233798,0.009361,-0.010002,0.249800,0,0);-ms-transform:matrix(0.233798,0.009361,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.233798,0.009361,-0.010002,0.249800,0,0);}
.m44_c00356{transform:matrix(0.234053,0.008434,-0.009003,0.249838,0,0);-ms-transform:matrix(0.234053,0.008434,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.234053,0.008434,-0.009003,0.249838,0,0);}
.m71_c00356{transform:matrix(0.234099,0.008670,-0.009253,0.249829,0,0);-ms-transform:matrix(0.234099,0.008670,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.234099,0.008670,-0.009253,0.249829,0,0);}
.mb9_c00356{transform:matrix(0.234222,0.014081,-0.015003,0.249549,0,0);-ms-transform:matrix(0.234222,0.014081,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.234222,0.014081,-0.015003,0.249549,0,0);}
.m4a_c00356{transform:matrix(0.234238,0.008441,-0.009003,0.249838,0,0);-ms-transform:matrix(0.234238,0.008441,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.234238,0.008441,-0.009003,0.249838,0,0);}
.ma1_c00356{transform:matrix(0.234353,0.011495,-0.012248,0.249700,0,0);-ms-transform:matrix(0.234353,0.011495,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.234353,0.011495,-0.012248,0.249700,0,0);}
.m74_c00356{transform:matrix(0.234479,0.008684,-0.009253,0.249829,0,0);-ms-transform:matrix(0.234479,0.008684,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.234479,0.008684,-0.009253,0.249829,0,0);}
.m2e_c00356{transform:matrix(0.234797,0.007756,-0.008254,0.249864,0,0);-ms-transform:matrix(0.234797,0.007756,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.234797,0.007756,-0.008254,0.249864,0,0);}
.m21_c00356{transform:matrix(0.235062,0.009647,-0.010252,0.249790,0,0);-ms-transform:matrix(0.235062,0.009647,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.235062,0.009647,-0.010252,0.249790,0,0);}
.m3d_c00356{transform:matrix(0.235209,0.007534,-0.008004,0.249872,0,0);-ms-transform:matrix(0.235209,0.007534,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.235209,0.007534,-0.008004,0.249872,0,0);}
.m4b_c00356{transform:matrix(0.235527,0.008487,-0.009003,0.249838,0,0);-ms-transform:matrix(0.235527,0.008487,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.235527,0.008487,-0.009003,0.249838,0,0);}
.m5e_c00356{transform:matrix(0.235670,0.010852,-0.011499,0.249735,0,0);-ms-transform:matrix(0.235670,0.010852,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.235670,0.010852,-0.011499,0.249735,0,0);}
.m98_c00356{transform:matrix(0.235976,0.011574,-0.012248,0.249700,0,0);-ms-transform:matrix(0.235976,0.011574,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.235976,0.011574,-0.012248,0.249700,0,0);}
.m2_c00356{transform:matrix(0.236036,0.009687,-0.010252,0.249790,0,0);-ms-transform:matrix(0.236036,0.009687,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.236036,0.009687,-0.010252,0.249790,0,0);}
.m32_c00356{transform:matrix(0.236091,0.007799,-0.008254,0.249864,0,0);-ms-transform:matrix(0.236091,0.007799,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.236091,0.007799,-0.008254,0.249864,0,0);}
.m11f_c00356{transform:matrix(0.236651,0.016125,-0.016995,0.249422,0,0);-ms-transform:matrix(0.236651,0.016125,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.236651,0.016125,-0.016995,0.249422,0,0);}
.m6e_c00356{transform:matrix(0.236873,0.008773,-0.009253,0.249829,0,0);-ms-transform:matrix(0.236873,0.008773,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.236873,0.008773,-0.009253,0.249829,0,0);}
.m25_c00356{transform:matrix(0.237805,0.009760,-0.010252,0.249790,0,0);-ms-transform:matrix(0.237805,0.009760,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.237805,0.009760,-0.010252,0.249790,0,0);}
.m10_c00356{transform:matrix(0.238020,0.009769,-0.010252,0.249790,0,0);-ms-transform:matrix(0.238020,0.009769,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.238020,0.009769,-0.010252,0.249790,0,0);}
.m24_c00356{transform:matrix(0.238504,0.009788,-0.010252,0.249790,0,0);-ms-transform:matrix(0.238504,0.009788,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.238504,0.009788,-0.010252,0.249790,0,0);}
.m7e_c00356{transform:matrix(0.238616,0.002625,-0.002750,0.249985,0,0);-ms-transform:matrix(0.238616,0.002625,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.238616,0.002625,-0.002750,0.249985,0,0);}
.m37_c00356{transform:matrix(0.238633,0.007644,-0.008004,0.249872,0,0);-ms-transform:matrix(0.238633,0.007644,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.238633,0.007644,-0.008004,0.249872,0,0);}
.m68_c00356{transform:matrix(0.239042,0.011007,-0.011499,0.249735,0,0);-ms-transform:matrix(0.239042,0.011007,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.239042,0.011007,-0.011499,0.249735,0,0);}
.m53_c00356{transform:matrix(0.239170,0.008619,-0.009003,0.249838,0,0);-ms-transform:matrix(0.239170,0.008619,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.239170,0.008619,-0.009003,0.249838,0,0);}
.m3a_c00356{transform:matrix(0.239402,0.007669,-0.008004,0.249872,0,0);-ms-transform:matrix(0.239402,0.007669,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.239402,0.007669,-0.008004,0.249872,0,0);}
.mb3_c00356{transform:matrix(0.239792,0.014416,-0.015003,0.249549,0,0);-ms-transform:matrix(0.239792,0.014416,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.239792,0.014416,-0.015003,0.249549,0,0);}
.mc4_c00356{transform:matrix(0.239997,0.013467,-0.014006,0.249607,0,0);-ms-transform:matrix(0.239997,0.013467,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.239997,0.013467,-0.014006,0.249607,0,0);}
.me_c00356{transform:matrix(0.240203,0.009858,-0.010252,0.249790,0,0);-ms-transform:matrix(0.240203,0.009858,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.240203,0.009858,-0.010252,0.249790,0,0);}
.m5b_c00356{transform:matrix(0.240725,0.011084,-0.011499,0.249735,0,0);-ms-transform:matrix(0.240725,0.011084,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.240725,0.011084,-0.011499,0.249735,0,0);}
.m76_c00356{transform:matrix(0.241394,0.008941,-0.009253,0.249829,0,0);-ms-transform:matrix(0.241394,0.008941,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.241394,0.008941,-0.009253,0.249829,0,0);}
.m49_c00356{transform:matrix(0.241453,0.008701,-0.009003,0.249838,0,0);-ms-transform:matrix(0.241453,0.008701,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.241453,0.008701,-0.009003,0.249838,0,0);}
.m56_c00356{transform:matrix(0.241649,0.011127,-0.011499,0.249735,0,0);-ms-transform:matrix(0.241649,0.011127,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.241649,0.011127,-0.011499,0.249735,0,0);}
.m61_c00356{transform:matrix(0.241739,0.011131,-0.011499,0.249735,0,0);-ms-transform:matrix(0.241739,0.011131,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.241739,0.011131,-0.011499,0.249735,0,0);}
.mb7_c00356{transform:matrix(0.242552,0.014582,-0.015003,0.249549,0,0);-ms-transform:matrix(0.242552,0.014582,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.242552,0.014582,-0.015003,0.249549,0,0);}
.mdc_c00356{transform:matrix(0.244386,0.013713,-0.014006,0.249607,0,0);-ms-transform:matrix(0.244386,0.013713,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.244386,0.013713,-0.014006,0.249607,0,0);}
.m75_c00356{transform:matrix(0.244547,0.009057,-0.009253,0.249829,0,0);-ms-transform:matrix(0.244547,0.009057,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.244547,0.009057,-0.009253,0.249829,0,0);}
.ma0_c00356{transform:matrix(0.244736,0.012004,-0.012248,0.249700,0,0);-ms-transform:matrix(0.244736,0.012004,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.244736,0.012004,-0.012248,0.249700,0,0);}
.m99_c00356{transform:matrix(0.244906,0.012012,-0.012248,0.249700,0,0);-ms-transform:matrix(0.244906,0.012012,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.244906,0.012012,-0.012248,0.249700,0,0);}
.m62_c00356{transform:matrix(0.245560,0.011307,-0.011499,0.249735,0,0);-ms-transform:matrix(0.245560,0.011307,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.245560,0.011307,-0.011499,0.249735,0,0);}
.m77_c00356{transform:matrix(0.246686,0.009137,-0.009253,0.249829,0,0);-ms-transform:matrix(0.246686,0.009137,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.246686,0.009137,-0.009253,0.249829,0,0);}
.m9_c00356{transform:matrix(0.247342,0.010151,-0.010252,0.249790,0,0);-ms-transform:matrix(0.247342,0.010151,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.247342,0.010151,-0.010252,0.249790,0,0);}
.m72_c00356{transform:matrix(0.248530,0.009205,-0.009253,0.249829,0,0);-ms-transform:matrix(0.248530,0.009205,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.248530,0.009205,-0.009253,0.249829,0,0);}
.ma7_c00356{transform:matrix(0.248656,0.010205,-0.010252,0.249790,0,0);-ms-transform:matrix(0.248656,0.010205,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.248656,0.010205,-0.010252,0.249790,0,0);}
.mf2_c00356{transform:matrix(0.248710,0.013195,-0.013245,0.249649,0,0);-ms-transform:matrix(0.248710,0.013195,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.248710,0.013195,-0.013245,0.249649,0,0);}
.m123_c00356{transform:matrix(0.248753,0.016949,-0.016995,0.249422,0,0);-ms-transform:matrix(0.248753,0.016949,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.248753,0.016949,-0.016995,0.249422,0,0);}
.m11_c00356{transform:matrix(0.249110,0.010224,-0.010252,0.249790,0,0);-ms-transform:matrix(0.249110,0.010224,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.249110,0.010224,-0.010252,0.249790,0,0);}
.mec_c00356{transform:matrix(0.249772,0.014015,-0.014006,0.249607,0,0);-ms-transform:matrix(0.249772,0.014015,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.249772,0.014015,-0.014006,0.249607,0,0);}
.mc0_c00356{transform:matrix(0.251300,0.014101,-0.014006,0.249607,0,0);-ms-transform:matrix(0.251300,0.014101,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.251300,0.014101,-0.014006,0.249607,0,0);}
.m16_c00356{transform:matrix(0.251993,0.010342,-0.010252,0.249790,0,0);-ms-transform:matrix(0.251993,0.010342,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.251993,0.010342,-0.010252,0.249790,0,0);}
.mc8_c00356{transform:matrix(0.252088,0.014145,-0.014006,0.249607,0,0);-ms-transform:matrix(0.252088,0.014145,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.252088,0.014145,-0.014006,0.249607,0,0);}
.m8a_c00356{transform:matrix(0.252864,0.005310,-0.005249,0.249945,0,0);-ms-transform:matrix(0.252864,0.005310,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.252864,0.005310,-0.005249,0.249945,0,0);}
.mf6_c00356{transform:matrix(0.252929,0.013419,-0.013245,0.249649,0,0);-ms-transform:matrix(0.252929,0.013419,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.252929,0.013419,-0.013245,0.249649,0,0);}
.m15_c00356{transform:matrix(0.253542,0.010406,-0.010252,0.249790,0,0);-ms-transform:matrix(0.253542,0.010406,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.253542,0.010406,-0.010252,0.249790,0,0);}
.m9c_c00356{transform:matrix(0.254514,0.012484,-0.012248,0.249700,0,0);-ms-transform:matrix(0.254514,0.012484,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.254514,0.012484,-0.012248,0.249700,0,0);}
.mbf_c00356{transform:matrix(0.254604,0.014286,-0.014006,0.249607,0,0);-ms-transform:matrix(0.254604,0.014286,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.254604,0.014286,-0.014006,0.249607,0,0);}
.m63_c00356{transform:matrix(0.255010,0.011742,-0.011499,0.249735,0,0);-ms-transform:matrix(0.255010,0.011742,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.255010,0.011742,-0.011499,0.249735,0,0);}
.mf1_c00356{transform:matrix(0.256849,0.013627,-0.013245,0.249649,0,0);-ms-transform:matrix(0.256849,0.013627,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.256849,0.013627,-0.013245,0.249649,0,0);}
.m6_c00356{transform:matrix(0.257443,0.010566,-0.010252,0.249790,0,0);-ms-transform:matrix(0.257443,0.010566,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.257443,0.010566,-0.010252,0.249790,0,0);}
.ma6_c00356{transform:matrix(0.257528,0.010569,-0.010252,0.249790,0,0);-ms-transform:matrix(0.257528,0.010569,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.257528,0.010569,-0.010252,0.249790,0,0);}
.mee_c00356{transform:matrix(0.259352,0.014553,-0.014006,0.249607,0,0);-ms-transform:matrix(0.259352,0.014553,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.259352,0.014553,-0.014006,0.249607,0,0);}
.m120_c00356{transform:matrix(0.260222,0.017731,-0.016995,0.249422,0,0);-ms-transform:matrix(0.260222,0.017731,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.260222,0.017731,-0.016995,0.249422,0,0);}
.mda_c00356{transform:matrix(0.262457,0.014727,-0.014006,0.249607,0,0);-ms-transform:matrix(0.262457,0.014727,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.262457,0.014727,-0.014006,0.249607,0,0);}
.m8b_c00356{transform:matrix(0.263702,0.005538,-0.005249,0.249945,0,0);-ms-transform:matrix(0.263702,0.005538,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.263702,0.005538,-0.005249,0.249945,0,0);}
.mef_c00356{transform:matrix(0.264538,0.014035,-0.013245,0.249649,0,0);-ms-transform:matrix(0.264538,0.014035,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.264538,0.014035,-0.013245,0.249649,0,0);}
.m60_c00356{transform:matrix(0.264774,0.012192,-0.011499,0.249735,0,0);-ms-transform:matrix(0.264774,0.012192,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.264774,0.012192,-0.011499,0.249735,0,0);}
.mdf_c00356{transform:matrix(0.264863,0.014862,-0.014006,0.249607,0,0);-ms-transform:matrix(0.264863,0.014862,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.264863,0.014862,-0.014006,0.249607,0,0);}
.mc9_c00356{transform:matrix(0.265757,0.014912,-0.014006,0.249607,0,0);-ms-transform:matrix(0.265757,0.014912,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.265757,0.014912,-0.014006,0.249607,0,0);}
.m121_c00356{transform:matrix(0.265973,0.018122,-0.016995,0.249422,0,0);-ms-transform:matrix(0.265973,0.018122,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.265973,0.018122,-0.016995,0.249422,0,0);}
.me1_c00356{transform:matrix(0.266406,0.014949,-0.014006,0.249607,0,0);-ms-transform:matrix(0.266406,0.014949,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.266406,0.014949,-0.014006,0.249607,0,0);}
.m19_c00356{transform:matrix(0.266591,0.010941,-0.010252,0.249790,0,0);-ms-transform:matrix(0.266591,0.010941,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.266591,0.010941,-0.010252,0.249790,0,0);}
.m69_c00356{transform:matrix(0.266662,0.012279,-0.011499,0.249735,0,0);-ms-transform:matrix(0.266662,0.012279,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.266662,0.012279,-0.011499,0.249735,0,0);}
.md_c00356{transform:matrix(0.269138,0.011046,-0.010252,0.249790,0,0);-ms-transform:matrix(0.269138,0.011046,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.269138,0.011046,-0.010252,0.249790,0,0);}
.mcb_c00356{transform:matrix(0.270519,0.015179,-0.014006,0.249607,0,0);-ms-transform:matrix(0.270519,0.015179,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.270519,0.015179,-0.014006,0.249607,0,0);}
.mf4_c00356{transform:matrix(0.270929,0.014374,-0.013245,0.249649,0,0);-ms-transform:matrix(0.270929,0.014374,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.270929,0.014374,-0.013245,0.249649,0,0);}
.md9_c00356{transform:matrix(0.271528,0.015236,-0.014006,0.249607,0,0);-ms-transform:matrix(0.271528,0.015236,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.271528,0.015236,-0.014006,0.249607,0,0);}
.ma_c00356{transform:matrix(0.272021,0.011164,-0.010252,0.249790,0,0);-ms-transform:matrix(0.272021,0.011164,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.272021,0.011164,-0.010252,0.249790,0,0);}
.m4_c00356{transform:matrix(0.272251,0.011173,-0.010252,0.249790,0,0);-ms-transform:matrix(0.272251,0.011173,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.272251,0.011173,-0.010252,0.249790,0,0);}
.mc2_c00356{transform:matrix(0.273345,0.015338,-0.014006,0.249607,0,0);-ms-transform:matrix(0.273345,0.015338,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.273345,0.015338,-0.014006,0.249607,0,0);}
.ma8_c00356{transform:matrix(0.273700,0.011233,-0.010252,0.249790,0,0);-ms-transform:matrix(0.273700,0.011233,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.273700,0.011233,-0.010252,0.249790,0,0);}
.m6c_c00356{transform:matrix(0.274174,0.012625,-0.011499,0.249735,0,0);-ms-transform:matrix(0.274174,0.012625,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.274174,0.012625,-0.011499,0.249735,0,0);}
.mb_c00356{transform:matrix(0.276153,0.011334,-0.010252,0.249790,0,0);-ms-transform:matrix(0.276153,0.011334,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.276153,0.011334,-0.010252,0.249790,0,0);}
.mc6_c00356{transform:matrix(0.276325,0.015505,-0.014006,0.249607,0,0);-ms-transform:matrix(0.276325,0.015505,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.276325,0.015505,-0.014006,0.249607,0,0);}
.mf0_c00356{transform:matrix(0.276911,0.014691,-0.013245,0.249649,0,0);-ms-transform:matrix(0.276911,0.014691,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.276911,0.014691,-0.013245,0.249649,0,0);}
.m67_c00356{transform:matrix(0.277621,0.012783,-0.011499,0.249735,0,0);-ms-transform:matrix(0.277621,0.012783,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.277621,0.012783,-0.011499,0.249735,0,0);}
.m7_c00356{transform:matrix(0.277926,0.011406,-0.010252,0.249790,0,0);-ms-transform:matrix(0.277926,0.011406,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.277926,0.011406,-0.010252,0.249790,0,0);}
.m65_c00356{transform:matrix(0.277985,0.012800,-0.011499,0.249735,0,0);-ms-transform:matrix(0.277985,0.012800,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.277985,0.012800,-0.011499,0.249735,0,0);}
.mdd_c00356{transform:matrix(0.278212,0.015611,-0.014006,0.249607,0,0);-ms-transform:matrix(0.278212,0.015611,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.278212,0.015611,-0.014006,0.249607,0,0);}
.mf7_c00356{transform:matrix(0.278264,0.014763,-0.013245,0.249649,0,0);-ms-transform:matrix(0.278264,0.014763,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.278264,0.014763,-0.013245,0.249649,0,0);}
.ma9_c00356{transform:matrix(0.278266,0.011420,-0.010252,0.249790,0,0);-ms-transform:matrix(0.278266,0.011420,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.278266,0.011420,-0.010252,0.249790,0,0);}
.mc3_c00356{transform:matrix(0.278382,0.015621,-0.014006,0.249607,0,0);-ms-transform:matrix(0.278382,0.015621,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.278382,0.015621,-0.014006,0.249607,0,0);}
.mc1_c00356{transform:matrix(0.285112,0.015998,-0.014006,0.249607,0,0);-ms-transform:matrix(0.285112,0.015998,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.285112,0.015998,-0.014006,0.249607,0,0);}
.mbe_c00356{transform:matrix(0.286180,0.016058,-0.014006,0.249607,0,0);-ms-transform:matrix(0.286180,0.016058,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.286180,0.016058,-0.014006,0.249607,0,0);}
.m89_c00356{transform:matrix(0.295180,0.006199,-0.005249,0.249945,0,0);-ms-transform:matrix(0.295180,0.006199,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.295180,0.006199,-0.005249,0.249945,0,0);}
.m8c_c00356{transform:matrix(0.299819,0.006296,-0.005249,0.249945,0,0);-ms-transform:matrix(0.299819,0.006296,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.299819,0.006296,-0.005249,0.249945,0,0);}
.m111_c00356{transform:matrix(0.311105,0.011834,-0.009503,0.249819,0,0);-ms-transform:matrix(0.311105,0.011834,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.311105,0.011834,-0.009503,0.249819,0,0);}
.md8_c00356{transform:matrix(0.314950,0.017673,-0.014006,0.249607,0,0);-ms-transform:matrix(0.314950,0.017673,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.314950,0.017673,-0.014006,0.249607,0,0);}
.m115_c00356{transform:matrix(0.323436,0.012303,-0.009503,0.249819,0,0);-ms-transform:matrix(0.323436,0.012303,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.323436,0.012303,-0.009503,0.249819,0,0);}
.m112_c00356{transform:matrix(0.326449,0.012417,-0.009503,0.249819,0,0);-ms-transform:matrix(0.326449,0.012417,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.326449,0.012417,-0.009503,0.249819,0,0);}
.m114_c00356{transform:matrix(0.327788,0.012468,-0.009503,0.249819,0,0);-ms-transform:matrix(0.327788,0.012468,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.327788,0.012468,-0.009503,0.249819,0,0);}
.m113_c00356{transform:matrix(0.332535,0.012649,-0.009503,0.249819,0,0);-ms-transform:matrix(0.332535,0.012649,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.332535,0.012649,-0.009503,0.249819,0,0);}
.mcc_c00356{transform:matrix(0.333171,0.018695,-0.014006,0.249607,0,0);-ms-transform:matrix(0.333171,0.018695,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.333171,0.018695,-0.014006,0.249607,0,0);}
.m0_c00356{transform:matrix(0.335660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335660,0.000000,0.000000,0.250000,0,0);}
.m10f_c00356{transform:matrix(0.338090,0.012860,-0.009503,0.249819,0,0);-ms-transform:matrix(0.338090,0.012860,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.338090,0.012860,-0.009503,0.249819,0,0);}
.m110_c00356{transform:matrix(0.342397,0.013024,-0.009503,0.249819,0,0);-ms-transform:matrix(0.342397,0.013024,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.342397,0.013024,-0.009503,0.249819,0,0);}
.m11b_c00356{transform:matrix(0.355968,0.013540,-0.009503,0.249819,0,0);-ms-transform:matrix(0.355968,0.013540,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.355968,0.013540,-0.009503,0.249819,0,0);}
.m10e_c00356{transform:matrix(0.356102,0.013545,-0.009503,0.249819,0,0);-ms-transform:matrix(0.356102,0.013545,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.356102,0.013545,-0.009503,0.249819,0,0);}
.m118_c00356{transform:matrix(0.357836,0.013611,-0.009503,0.249819,0,0);-ms-transform:matrix(0.357836,0.013611,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.357836,0.013611,-0.009503,0.249819,0,0);}
.m11a_c00356{transform:matrix(0.367254,0.013970,-0.009503,0.249819,0,0);-ms-transform:matrix(0.367254,0.013970,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.367254,0.013970,-0.009503,0.249819,0,0);}
.m116_c00356{transform:matrix(0.381564,0.014514,-0.009503,0.249819,0,0);-ms-transform:matrix(0.381564,0.014514,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.381564,0.014514,-0.009503,0.249819,0,0);}
.mf8_c00356{transform:matrix(0.382844,0.023017,-0.015003,0.249549,0,0);-ms-transform:matrix(0.382844,0.023017,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.382844,0.023017,-0.015003,0.249549,0,0);}
.m117_c00356{transform:matrix(0.385596,0.014667,-0.009503,0.249819,0,0);-ms-transform:matrix(0.385596,0.014667,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.385596,0.014667,-0.009503,0.249819,0,0);}
.m119_c00356{transform:matrix(0.392886,0.014945,-0.009503,0.249819,0,0);-ms-transform:matrix(0.392886,0.014945,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.392886,0.014945,-0.009503,0.249819,0,0);}
.mbd_c00356{transform:matrix(0.393636,0.022088,-0.014006,0.249607,0,0);-ms-transform:matrix(0.393636,0.022088,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.393636,0.022088,-0.014006,0.249607,0,0);}
.mba_c00356{transform:matrix(0.438845,0.024625,-0.014006,0.249607,0,0);-ms-transform:matrix(0.438845,0.024625,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.438845,0.024625,-0.014006,0.249607,0,0);}
.mc5_c00356{transform:matrix(0.494732,0.027760,-0.014006,0.249607,0,0);-ms-transform:matrix(0.494732,0.027760,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.494732,0.027760,-0.014006,0.249607,0,0);}
.m106_c00356{transform:matrix(0.787254,0.031522,-0.010002,0.249800,0,0);-ms-transform:matrix(0.787254,0.031522,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.787254,0.031522,-0.010002,0.249800,0,0);}
.mb1_c00356{transform:matrix(0.924186,0.055562,-0.015003,0.249549,0,0);-ms-transform:matrix(0.924186,0.055562,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.924186,0.055562,-0.015003,0.249549,0,0);}
.mb0_c00356{transform:matrix(2.191408,0.131748,-0.015003,0.249549,0,0);-ms-transform:matrix(2.191408,0.131748,-0.015003,0.249549,0,0);-webkit-transform:matrix(2.191408,0.131748,-0.015003,0.249549,0,0);}
.m105_c00356{transform:matrix(2.200172,0.088095,-0.010002,0.249800,0,0);-ms-transform:matrix(2.200172,0.088095,-0.010002,0.249800,0,0);-webkit-transform:matrix(2.200172,0.088095,-0.010002,0.249800,0,0);}
.maf_c00356{transform:matrix(2.989407,0.179724,-0.015003,0.249549,0,0);-ms-transform:matrix(2.989407,0.179724,-0.015003,0.249549,0,0);-webkit-transform:matrix(2.989407,0.179724,-0.015003,0.249549,0,0);}
.v0_c00356{vertical-align:0.000000px;}
.ls0_c00356{letter-spacing:0.000000px;}
.sc__c00356{text-shadow:none;}
.sc0_c00356{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__c00356{-webkit-text-stroke:0px transparent;}
.sc0_c00356{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00356{word-spacing:0.000000px;}
.fc0_c00356{color:transparent;}
.fs11_c00356{font-size:23.995248px;}
.fs19_c00356{font-size:41.991620px;}
.fs1c_c00356{font-size:47.986678px;}
.fs1b_c00356{font-size:53.985013px;}
.fsd_c00356{font-size:66.014551px;}
.fs13_c00356{font-size:71.969033px;}
.fs1_c00356{font-size:71.988551px;}
.fs1d_c00356{font-size:72.000000px;}
.fs8_c00356{font-size:72.004212px;}
.fs17_c00356{font-size:72.029154px;}
.fs16_c00356{font-size:77.966453px;}
.fs9_c00356{font-size:77.975426px;}
.fs2_c00356{font-size:77.987597px;}
.fsf_c00356{font-size:78.015676px;}
.fs1e_c00356{font-size:78.024488px;}
.fs5_c00356{font-size:83.959040px;}
.fs4_c00356{font-size:83.961771px;}
.fs6_c00356{font-size:83.970469px;}
.fs12_c00356{font-size:83.983366px;}
.fs3_c00356{font-size:83.986643px;}
.fs7_c00356{font-size:84.004914px;}
.fsa_c00356{font-size:84.005082px;}
.fs0_c00356{font-size:90.000000px;}
.fse_c00356{font-size:90.005265px;}
.fsc_c00356{font-size:90.019843px;}
.fs15_c00356{font-size:95.958711px;}
.fs1a_c00356{font-size:95.980846px;}
.fs18_c00356{font-size:95.980990px;}
.fs14_c00356{font-size:101.956131px;}
.fsb_c00356{font-size:102.006171px;}
.fs10_c00356{font-size:113.977426px;}
.y0_c00356{bottom:0.000000px;}
.y11e_c00356{bottom:96.114000px;}
.y125_c00356{bottom:101.926248px;}
.y124_c00356{bottom:104.168514px;}
.y123_c00356{bottom:114.098724px;}
.y122_c00356{bottom:121.685484px;}
.y121_c00356{bottom:126.177462px;}
.y120_c00356{bottom:128.400144px;}
.y11f_c00356{bottom:129.933000px;}
.y11d_c00356{bottom:130.877233px;}
.y11c_c00356{bottom:132.150898px;}
.y11b_c00356{bottom:135.001925px;}
.y11a_c00356{bottom:137.068288px;}
.y119_c00356{bottom:137.861785px;}
.y118_c00356{bottom:139.061749px;}
.y117_c00356{bottom:157.287108px;}
.y116_c00356{bottom:158.513007px;}
.y115_c00356{bottom:160.671141px;}
.y114_c00356{bottom:161.915964px;}
.y113_c00356{bottom:163.569762px;}
.y112_c00356{bottom:165.184857px;}
.y111_c00356{bottom:167.368641px;}
.y110_c00356{bottom:172.543500px;}
.y10f_c00356{bottom:193.201822px;}
.y10e_c00356{bottom:193.718757px;}
.y10d_c00356{bottom:194.014429px;}
.y10c_c00356{bottom:194.409265px;}
.y10b_c00356{bottom:195.314769px;}
.y10a_c00356{bottom:196.271086px;}
.y109_c00356{bottom:196.568026px;}
.y108_c00356{bottom:222.042120px;}
.y107_c00356{bottom:226.821000px;}
.y106_c00356{bottom:247.742790px;}
.y105_c00356{bottom:249.774540px;}
.y104_c00356{bottom:254.392350px;}
.y103_c00356{bottom:257.151120px;}
.y102_c00356{bottom:262.576500px;}
.y101_c00356{bottom:265.124040px;}
.y100_c00356{bottom:269.098530px;}
.yff_c00356{bottom:271.147740px;}
.yfe_c00356{bottom:277.769400px;}
.yfd_c00356{bottom:282.239340px;}
.yfc_c00356{bottom:283.578900px;}
.yfb_c00356{bottom:285.408510px;}
.yf9_c00356{bottom:291.385563px;}
.yf8_c00356{bottom:293.704419px;}
.yfa_c00356{bottom:294.864000px;}
.yf7_c00356{bottom:295.422971px;}
.yf6_c00356{bottom:299.537811px;}
.yf5_c00356{bottom:301.381178px;}
.yf4_c00356{bottom:303.126202px;}
.yf3_c00356{bottom:306.618240px;}
.yf2_c00356{bottom:313.484258px;}
.yf1_c00356{bottom:317.532000px;}
.yf0_c00356{bottom:344.249229px;}
.yef_c00356{bottom:345.940431px;}
.yee_c00356{bottom:351.081732px;}
.yed_c00356{bottom:353.935794px;}
.yec_c00356{bottom:359.630658px;}
.yeb_c00356{bottom:361.493442px;}
.yea_c00356{bottom:366.500514px;}
.ye9_c00356{bottom:371.469870px;}
.ye8_c00356{bottom:376.446870px;}
.ye7_c00356{bottom:378.900090px;}
.ye6_c00356{bottom:380.713314px;}
.ye5_c00356{bottom:387.459774px;}
.ye4_c00356{bottom:389.125242px;}
.ye3_c00356{bottom:394.265007px;}
.ye2_c00356{bottom:396.157947px;}
.ye1_c00356{bottom:399.324915px;}
.ye0_c00356{bottom:401.810055px;}
.ydf_c00356{bottom:403.642599px;}
.yde_c00356{bottom:409.292103px;}
.ydd_c00356{bottom:411.159087px;}
.ydc_c00356{bottom:412.989951px;}
.ydb_c00356{bottom:416.722155px;}
.yda_c00356{bottom:421.620111px;}
.yd9_c00356{bottom:424.653603px;}
.yd8_c00356{bottom:426.365271px;}
.yd7_c00356{bottom:429.736029px;}
.yd6_c00356{bottom:432.174969px;}
.yd5_c00356{bottom:436.600005px;}
.yd4_c00356{bottom:437.799273px;}
.yd3_c00356{bottom:443.460621px;}
.yd2_c00356{bottom:447.716229px;}
.yd1_c00356{bottom:449.608329px;}
.yd0_c00356{bottom:451.443309px;}
.ycf_c00356{bottom:458.806245px;}
.yce_c00356{bottom:461.787741px;}
.ycd_c00356{bottom:469.352445px;}
.ycc_c00356{bottom:478.099443px;}
.ycb_c00356{bottom:479.837502px;}
.yca_c00356{bottom:482.707647px;}
.yc9_c00356{bottom:484.928682px;}
.yc8_c00356{bottom:486.079431px;}
.yc7_c00356{bottom:493.854585px;}
.yc5_c00356{bottom:496.526172px;}
.yc4_c00356{bottom:503.409468px;}
.yc3_c00356{bottom:504.657372px;}
.yc6_c00356{bottom:504.698655px;}
.yc2_c00356{bottom:512.749260px;}
.yc1_c00356{bottom:515.238600px;}
.yc0_c00356{bottom:521.456700px;}
.ybf_c00356{bottom:523.951920px;}
.ybe_c00356{bottom:529.924992px;}
.ybd_c00356{bottom:531.225564px;}
.ybc_c00356{bottom:532.950084px;}
.ybb_c00356{bottom:541.938000px;}
.yba_c00356{bottom:545.372907px;}
.yb9_c00356{bottom:547.049316px;}
.yb8_c00356{bottom:552.637422px;}
.yb7_c00356{bottom:555.398223px;}
.yb6_c00356{bottom:557.051460px;}
.yb5_c00356{bottom:558.672705px;}
.yb2_c00356{bottom:565.335444px;}
.yb4_c00356{bottom:565.814619px;}
.yb3_c00356{bottom:567.334005px;}
.yb1_c00356{bottom:571.137099px;}
.yaf_c00356{bottom:577.216230px;}
.yb0_c00356{bottom:577.613568px;}
.yae_c00356{bottom:579.110820px;}
.yad_c00356{bottom:582.436500px;}
.yac_c00356{bottom:582.728673px;}
.yab_c00356{bottom:584.589110px;}
.yaa_c00356{bottom:588.713669px;}
.ya9_c00356{bottom:591.915666px;}
.ya8_c00356{bottom:594.540240px;}
.ya7_c00356{bottom:597.238614px;}
.ya6_c00356{bottom:598.131102px;}
.ya5_c00356{bottom:599.413500px;}
.ya4_c00356{bottom:604.173162px;}
.ya3_c00356{bottom:608.090344px;}
.ya2_c00356{bottom:610.250068px;}
.ya1_c00356{bottom:613.536915px;}
.ya0_c00356{bottom:615.710531px;}
.y9f_c00356{bottom:617.339731px;}
.y9e_c00356{bottom:620.065700px;}
.y9d_c00356{bottom:625.461996px;}
.y9c_c00356{bottom:626.488791px;}
.y9b_c00356{bottom:628.201855px;}
.y9a_c00356{bottom:630.968175px;}
.y99_c00356{bottom:634.681321px;}
.y98_c00356{bottom:635.718407px;}
.y97_c00356{bottom:637.212000px;}
.y96_c00356{bottom:649.977756px;}
.y95_c00356{bottom:656.061831px;}
.y94_c00356{bottom:656.999610px;}
.y93_c00356{bottom:659.170971px;}
.y92_c00356{bottom:661.707135px;}
.y91_c00356{bottom:663.247284px;}
.y90_c00356{bottom:667.776927px;}
.y8f_c00356{bottom:668.751759px;}
.y8e_c00356{bottom:671.235000px;}
.y8c_c00356{bottom:697.877613px;}
.y8b_c00356{bottom:697.877784px;}
.y8a_c00356{bottom:697.877794px;}
.y8d_c00356{bottom:697.877953px;}
.y89_c00356{bottom:712.630539px;}
.y88_c00356{bottom:713.086312px;}
.y87_c00356{bottom:714.957349px;}
.y86_c00356{bottom:715.916084px;}
.y85_c00356{bottom:718.209000px;}
.y84_c00356{bottom:727.988638px;}
.y83_c00356{bottom:728.648606px;}
.y82_c00356{bottom:729.545059px;}
.y81_c00356{bottom:732.182058px;}
.y80_c00356{bottom:733.056264px;}
.y7f_c00356{bottom:767.579637px;}
.y7e_c00356{bottom:767.933248px;}
.y7d_c00356{bottom:768.794664px;}
.y7c_c00356{bottom:769.148375px;}
.y7b_c00356{bottom:770.095557px;}
.y7a_c00356{bottom:770.583000px;}
.y79_c00356{bottom:784.845534px;}
.y78_c00356{bottom:787.745076px;}
.y77_c00356{bottom:790.224982px;}
.y76_c00356{bottom:792.726312px;}
.y75_c00356{bottom:795.178469px;}
.y74_c00356{bottom:796.413399px;}
.y73_c00356{bottom:800.077953px;}
.y72_c00356{bottom:802.146660px;}
.y71_c00356{bottom:804.155149px;}
.y70_c00356{bottom:806.182454px;}
.y6f_c00356{bottom:808.617960px;}
.y6e_c00356{bottom:809.743500px;}
.y6d_c00356{bottom:820.030266px;}
.y6c_c00356{bottom:821.540469px;}
.y6b_c00356{bottom:823.125261px;}
.y6a_c00356{bottom:826.740792px;}
.y69_c00356{bottom:828.284943px;}
.y68_c00356{bottom:832.390029px;}
.y67_c00356{bottom:833.390391px;}
.y66_c00356{bottom:838.961796px;}
.y65_c00356{bottom:840.527337px;}
.y64_c00356{bottom:843.070884px;}
.y63_c00356{bottom:845.116872px;}
.y62_c00356{bottom:846.633906px;}
.y61_c00356{bottom:850.067208px;}
.y60_c00356{bottom:851.583000px;}
.y5f_c00356{bottom:858.968511px;}
.y5e_c00356{bottom:860.460222px;}
.y5d_c00356{bottom:863.569914px;}
.y5c_c00356{bottom:868.717797px;}
.y5b_c00356{bottom:870.222480px;}
.y5a_c00356{bottom:872.287167px;}
.y59_c00356{bottom:873.821658px;}
.y58_c00356{bottom:874.830024px;}
.y57_c00356{bottom:880.899402px;}
.y56_c00356{bottom:882.924000px;}
.y55_c00356{bottom:900.171615px;}
.y54_c00356{bottom:903.139631px;}
.y53_c00356{bottom:904.433849px;}
.y52_c00356{bottom:905.704901px;}
.y51_c00356{bottom:907.281174px;}
.y50_c00356{bottom:908.258696px;}
.y4f_c00356{bottom:909.249096px;}
.y4e_c00356{bottom:911.183957px;}
.y4d_c00356{bottom:912.459288px;}
.y4c_c00356{bottom:915.592584px;}
.y4b_c00356{bottom:929.107056px;}
.y4a_c00356{bottom:933.143826px;}
.y49_c00356{bottom:935.944536px;}
.y48_c00356{bottom:937.533108px;}
.y47_c00356{bottom:938.718894px;}
.y46_c00356{bottom:941.101536px;}
.y45_c00356{bottom:944.303304px;}
.y44_c00356{bottom:945.499134px;}
.y43_c00356{bottom:948.667530px;}
.y42_c00356{bottom:950.207124px;}
.y41_c00356{bottom:951.762000px;}
.y40_c00356{bottom:964.931028px;}
.y3f_c00356{bottom:966.351684px;}
.y3e_c00356{bottom:969.214500px;}
.y3d_c00356{bottom:970.296420px;}
.y3c_c00356{bottom:971.367780px;}
.y3b_c00356{bottom:974.242548px;}
.y3a_c00356{bottom:975.268500px;}
.y39_c00356{bottom:976.331508px;}
.y38_c00356{bottom:979.891860px;}
.y37_c00356{bottom:981.291108px;}
.y36_c00356{bottom:983.049108px;}
.y35_c00356{bottom:984.071508px;}
.y34_c00356{bottom:985.780500px;}
.y33_c00356{bottom:1001.685551px;}
.y32_c00356{bottom:1003.929633px;}
.y31_c00356{bottom:1006.108970px;}
.y30_c00356{bottom:1007.591742px;}
.y2f_c00356{bottom:1010.858940px;}
.y2e_c00356{bottom:1012.636930px;}
.y2d_c00356{bottom:1015.611237px;}
.y2c_c00356{bottom:1016.746619px;}
.y2b_c00356{bottom:1017.812898px;}
.y2a_c00356{bottom:1019.629548px;}
.y29_c00356{bottom:1021.693500px;}
.y28_c00356{bottom:1034.957883px;}
.y27_c00356{bottom:1035.540129px;}
.y26_c00356{bottom:1038.151814px;}
.y25_c00356{bottom:1040.746905px;}
.y24_c00356{bottom:1041.611567px;}
.y23_c00356{bottom:1042.496058px;}
.y22_c00356{bottom:1044.777371px;}
.y21_c00356{bottom:1046.514459px;}
.y20_c00356{bottom:1047.385387px;}
.y1f_c00356{bottom:1049.115041px;}
.y1e_c00356{bottom:1050.786741px;}
.y1d_c00356{bottom:1051.640853px;}
.y1c_c00356{bottom:1052.209005px;}
.y1b_c00356{bottom:1072.039838px;}
.y1a_c00356{bottom:1077.380954px;}
.y19_c00356{bottom:1078.667097px;}
.y18_c00356{bottom:1079.963019px;}
.y17_c00356{bottom:1082.609799px;}
.y16_c00356{bottom:1085.211215px;}
.y15_c00356{bottom:1086.486780px;}
.y14_c00356{bottom:1087.732563px;}
.y13_c00356{bottom:1088.644587px;}
.y12_c00356{bottom:1092.064429px;}
.y11_c00356{bottom:1094.211597px;}
.y10_c00356{bottom:1095.453506px;}
.yf_c00356{bottom:1097.567670px;}
.ye_c00356{bottom:1108.513367px;}
.yd_c00356{bottom:1109.829159px;}
.yc_c00356{bottom:1113.485519px;}
.yb_c00356{bottom:1116.298590px;}
.ya_c00356{bottom:1117.620287px;}
.y9_c00356{bottom:1118.977099px;}
.y8_c00356{bottom:1123.082717px;}
.y7_c00356{bottom:1125.343211px;}
.y6_c00356{bottom:1126.682927px;}
.y5_c00356{bottom:1130.348081px;}
.y4_c00356{bottom:1131.619593px;}
.y3_c00356{bottom:1132.946886px;}
.y2_c00356{bottom:1134.277500px;}
.y1_c00356{bottom:1190.848500px;}
.h13_c00356{height:23.995248px;}
.h1b_c00356{height:41.991620px;}
.h1e_c00356{height:47.986678px;}
.h1d_c00356{height:53.985013px;}
.hf_c00356{height:66.014551px;}
.h15_c00356{height:71.969033px;}
.h3_c00356{height:71.988551px;}
.h1f_c00356{height:72.000000px;}
.ha_c00356{height:72.004212px;}
.h19_c00356{height:72.029154px;}
.h18_c00356{height:77.966453px;}
.hb_c00356{height:77.975426px;}
.h4_c00356{height:77.987597px;}
.h11_c00356{height:78.015676px;}
.h20_c00356{height:78.024488px;}
.h7_c00356{height:83.959040px;}
.h6_c00356{height:83.961771px;}
.h8_c00356{height:83.970469px;}
.h14_c00356{height:83.983366px;}
.h5_c00356{height:83.986643px;}
.h9_c00356{height:84.004914px;}
.hc_c00356{height:84.005082px;}
.h2_c00356{height:90.000000px;}
.h10_c00356{height:90.005265px;}
.he_c00356{height:90.019843px;}
.h17_c00356{height:95.958711px;}
.h1c_c00356{height:95.980846px;}
.h1a_c00356{height:95.980990px;}
.h16_c00356{height:101.956131px;}
.hd_c00356{height:102.006171px;}
.h12_c00356{height:113.977426px;}
.h0_c00356{height:1251.450000px;}
.h1_c00356{height:1251.750000px;}
.w0_c00356{width:915.000000px;}
.x0_c00356{left:0.000000px;}
.xb3_c00356{left:2.026500px;}
.x96_c00356{left:5.620500px;}
.xba_c00356{left:132.322500px;}
.xbc_c00356{left:134.028924px;}
.xc1_c00356{left:135.171000px;}
.xaf_c00356{left:136.945500px;}
.x9f_c00356{left:140.438547px;}
.x76_c00356{left:147.596955px;}
.x6c_c00356{left:150.184500px;}
.x55_c00356{left:152.500500px;}
.x44_c00356{left:154.325913px;}
.x3c_c00356{left:156.250500px;}
.x2f_c00356{left:157.639500px;}
.x1c_c00356{left:159.209301px;}
.xf_c00356{left:160.581534px;}
.x2_c00356{left:162.610500px;}
.xc6_c00356{left:164.043719px;}
.x97_c00356{left:165.798003px;}
.x88_c00356{left:167.608500px;}
.x7e_c00356{left:169.309500px;}
.x1d_c00356{left:181.025883px;}
.x62_c00356{left:183.370080px;}
.x56_c00356{left:185.419548px;}
.xb4_c00356{left:189.735330px;}
.xaa_c00356{left:191.727618px;}
.xa0_c00356{left:193.573065px;}
.x3_c00356{left:195.032046px;}
.x91_c00356{left:197.304018px;}
.x3d_c00356{left:199.398309px;}
.x79_c00356{left:200.745016px;}
.x30_c00356{left:210.992094px;}
.xb5_c00356{left:212.016678px;}
.xb0_c00356{left:213.241628px;}
.x10_c00356{left:214.728265px;}
.x9d_c00356{left:217.581855px;}
.x98_c00356{left:219.709464px;}
.x7f_c00356{left:220.904353px;}
.x27_c00356{left:222.199956px;}
.x4_c00356{left:227.372673px;}
.x77_c00356{left:235.636263px;}
.xc7_c00356{left:239.227959px;}
.x31_c00356{left:242.910144px;}
.x11_c00356{left:246.524523px;}
.x63_c00356{left:249.128756px;}
.xbb_c00356{left:251.675028px;}
.x5_c00356{left:258.354161px;}
.x57_c00356{left:259.981911px;}
.x45_c00356{left:262.260114px;}
.xc2_c00356{left:271.215320px;}
.xbd_c00356{left:272.723662px;}
.x1e_c00356{left:278.045980px;}
.x6d_c00356{left:280.605000px;}
.x89_c00356{left:286.349640px;}
.x58_c00356{left:292.927932px;}
.x80_c00356{left:296.607075px;}
.x32_c00356{left:297.792707px;}
.x12_c00356{left:301.511974px;}
.x64_c00356{left:303.865964px;}
.x46_c00356{left:306.186225px;}
.x28_c00356{left:309.474095px;}
.xad_c00356{left:310.580142px;}
.x6e_c00356{left:312.760500px;}
.xc8_c00356{left:314.179932px;}
.x7a_c00356{left:320.287854px;}
.x78_c00356{left:322.595099px;}
.xa1_c00356{left:324.791103px;}
.x99_c00356{left:326.158140px;}
.xc3_c00356{left:328.625852px;}
.x3e_c00356{left:330.045032px;}
.xa6_c00356{left:334.506630px;}
.x59_c00356{left:337.361454px;}
.x92_c00356{left:339.788469px;}
.x33_c00356{left:341.475480px;}
.xae_c00356{left:343.021368px;}
.x1f_c00356{left:344.438836px;}
.x6_c00356{left:347.658767px;}
.x8a_c00356{left:350.299626px;}
.x7b_c00356{left:353.735873px;}
.x65_c00356{left:358.095180px;}
.x3f_c00356{left:363.229314px;}
.x9a_c00356{left:370.626525px;}
.x47_c00356{left:372.827828px;}
.x20_c00356{left:377.911953px;}
.x7_c00356{left:380.302091px;}
.x81_c00356{left:387.931659px;}
.x13_c00356{left:389.118483px;}
.x6f_c00356{left:391.071000px;}
.x5a_c00356{left:392.600660px;}
.xb6_c00356{left:396.506958px;}
.xa7_c00356{left:401.019837px;}
.x93_c00356{left:405.099723px;}
.x48_c00356{left:406.931784px;}
.x7c_c00356{left:408.814738px;}
.x14_c00356{left:412.474512px;}
.x66_c00356{left:413.950269px;}
.xbe_c00356{left:416.642658px;}
.x70_c00356{left:423.217500px;}
.x5b_c00356{left:426.600126px;}
.x8b_c00356{left:428.319029px;}
.xb7_c00356{left:430.592151px;}
.x29_c00356{left:433.885559px;}
.x8_c00356{left:435.380956px;}
.x4e_c00356{left:437.687544px;}
.x49_c00356{left:440.595074px;}
.x15_c00356{left:444.365175px;}
.xc4_c00356{left:447.289070px;}
.xbf_c00356{left:449.329479px;}
.x34_c00356{left:452.625219px;}
.x7d_c00356{left:455.971035px;}
.x4f_c00356{left:459.586623px;}
.x1_c00356{left:461.700000px;}
.xa2_c00356{left:467.054007px;}
.x16_c00356{left:477.054661px;}
.x71_c00356{left:478.162458px;}
.x9b_c00356{left:481.441950px;}
.x35_c00356{left:485.811000px;}
.x2a_c00356{left:487.710180px;}
.x9e_c00356{left:491.820624px;}
.x50_c00356{left:492.911765px;}
.x4a_c00356{left:494.870919px;}
.xb8_c00356{left:496.701168px;}
.xc5_c00356{left:504.025276px;}
.xc0_c00356{left:506.584718px;}
.x72_c00356{left:511.156191px;}
.x67_c00356{left:512.893227px;}
.x36_c00356{left:517.839939px;}
.x82_c00356{left:518.884076px;}
.x9c_c00356{left:525.805545px;}
.x8c_c00356{left:528.817430px;}
.x21_c00356{left:532.220418px;}
.x9_c00356{left:535.417819px;}
.x4b_c00356{left:538.636637px;}
.x17_c00356{left:543.695433px;}
.x68_c00356{left:546.236351px;}
.x5c_c00356{left:547.596508px;}
.x40_c00356{left:551.102253px;}
.xb1_c00356{left:553.679849px;}
.x22_c00356{left:566.170304px;}
.xa_c00356{left:568.477727px;}
.x51_c00356{left:570.429169px;}
.x94_c00356{left:571.683897px;}
.x83_c00356{left:574.460443px;}
.x8e_c00356{left:580.743516px;}
.x4c_c00356{left:583.211760px;}
.x2b_c00356{left:586.617174px;}
.xa3_c00356{left:589.319985px;}
.x41_c00356{left:595.185126px;}
.x23_c00356{left:599.380998px;}
.xb_c00356{left:600.681990px;}
.x95_c00356{left:605.140959px;}
.x37_c00356{left:607.586603px;}
.x18_c00356{left:611.478123px;}
.xc9_c00356{left:623.769786px;}
.xb2_c00356{left:629.781171px;}
.x2c_c00356{left:631.504741px;}
.x38_c00356{left:641.033122px;}
.x19_c00356{left:644.663613px;}
.x8d_c00356{left:650.701644px;}
.x84_c00356{left:651.991335px;}
.xab_c00356{left:654.484749px;}
.x5d_c00356{left:658.473520px;}
.xa4_c00356{left:668.180448px;}
.xc_c00356{left:669.224878px;}
.x42_c00356{left:672.904829px;}
.x39_c00356{left:674.809313px;}
.x1a_c00356{left:677.610841px;}
.x69_c00356{left:679.980473px;}
.x52_c00356{left:682.227759px;}
.x4d_c00356{left:685.435218px;}
.xac_c00356{left:687.682221px;}
.x8f_c00356{left:690.293061px;}
.x5e_c00356{left:692.008452px;}
.x2d_c00356{left:697.479201px;}
.x24_c00356{left:699.040054px;}
.xa8_c00356{left:700.990194px;}
.xa5_c00356{left:711.645843px;}
.x85_c00356{left:719.002757px;}
.x73_c00356{left:722.754000px;}
.xa9_c00356{left:734.725089px;}
.x6a_c00356{left:746.937948px;}
.x53_c00356{left:749.762157px;}
.xb9_c00356{left:752.014518px;}
.xd_c00356{left:758.315199px;}
.x86_c00356{left:763.034681px;}
.x3a_c00356{left:764.182849px;}
.x2e_c00356{left:765.413698px;}
.xca_c00356{left:769.510221px;}
.x5f_c00356{left:770.528353px;}
.x54_c00356{left:782.158229px;}
.x43_c00356{left:784.925196px;}
.x90_c00356{left:788.418279px;}
.xe_c00356{left:790.375607px;}
.x25_c00356{left:799.322856px;}
.xcb_c00356{left:802.418772px;}
.x60_c00356{left:804.945901px;}
.x3b_c00356{left:808.533954px;}
.x74_c00356{left:811.851000px;}
.x1b_c00356{left:814.408111px;}
.x26_c00356{left:821.665719px;}
.x6b_c00356{left:825.225582px;}
.x75_c00356{left:833.554500px;}
.x61_c00356{left:837.743571px;}
.x87_c00356{left:842.897238px;}
@media print{
.v0_c00356{vertical-align:0.000000pt;}
.ls0_c00356{letter-spacing:0.000000pt;}
.ws0_c00356{word-spacing:0.000000pt;}
.fs11_c00356{font-size:21.329109pt;}
.fs19_c00356{font-size:37.325885pt;}
.fs1c_c00356{font-size:42.654825pt;}
.fs1b_c00356{font-size:47.986678pt;}
.fsd_c00356{font-size:58.679601pt;}
.fs13_c00356{font-size:63.972474pt;}
.fs1_c00356{font-size:63.989823pt;}
.fs1d_c00356{font-size:64.000000pt;}
.fs8_c00356{font-size:64.003744pt;}
.fs17_c00356{font-size:64.025915pt;}
.fs16_c00356{font-size:69.303514pt;}
.fs9_c00356{font-size:69.311490pt;}
.fs2_c00356{font-size:69.322308pt;}
.fsf_c00356{font-size:69.347268pt;}
.fs1e_c00356{font-size:69.355101pt;}
.fs5_c00356{font-size:74.630258pt;}
.fs4_c00356{font-size:74.632686pt;}
.fs6_c00356{font-size:74.640417pt;}
.fs12_c00356{font-size:74.651881pt;}
.fs3_c00356{font-size:74.654794pt;}
.fs7_c00356{font-size:74.671035pt;}
.fsa_c00356{font-size:74.671184pt;}
.fs0_c00356{font-size:80.000000pt;}
.fse_c00356{font-size:80.004680pt;}
.fsc_c00356{font-size:80.017638pt;}
.fs15_c00356{font-size:85.296632pt;}
.fs1a_c00356{font-size:85.316308pt;}
.fs18_c00356{font-size:85.316436pt;}
.fs14_c00356{font-size:90.627672pt;}
.fsb_c00356{font-size:90.672152pt;}
.fs10_c00356{font-size:101.313267pt;}
.y0_c00356{bottom:0.000000pt;}
.y11e_c00356{bottom:85.434667pt;}
.y125_c00356{bottom:90.601109pt;}
.y124_c00356{bottom:92.594235pt;}
.y123_c00356{bottom:101.421088pt;}
.y122_c00356{bottom:108.164875pt;}
.y121_c00356{bottom:112.157744pt;}
.y120_c00356{bottom:114.133461pt;}
.y11f_c00356{bottom:115.496000pt;}
.y11d_c00356{bottom:116.335319pt;}
.y11c_c00356{bottom:117.467465pt;}
.y11b_c00356{bottom:120.001711pt;}
.y11a_c00356{bottom:121.838479pt;}
.y119_c00356{bottom:122.543809pt;}
.y118_c00356{bottom:123.610444pt;}
.y117_c00356{bottom:139.810763pt;}
.y116_c00356{bottom:140.900451pt;}
.y115_c00356{bottom:142.818792pt;}
.y114_c00356{bottom:143.925301pt;}
.y113_c00356{bottom:145.395344pt;}
.y112_c00356{bottom:146.830984pt;}
.y111_c00356{bottom:148.772125pt;}
.y110_c00356{bottom:153.372000pt;}
.y10f_c00356{bottom:171.734953pt;}
.y10e_c00356{bottom:172.194451pt;}
.y10d_c00356{bottom:172.457271pt;}
.y10c_c00356{bottom:172.808236pt;}
.y10b_c00356{bottom:173.613128pt;}
.y10a_c00356{bottom:174.463188pt;}
.y109_c00356{bottom:174.727135pt;}
.y108_c00356{bottom:197.370773pt;}
.y107_c00356{bottom:201.618667pt;}
.y106_c00356{bottom:220.215813pt;}
.y105_c00356{bottom:222.021813pt;}
.y104_c00356{bottom:226.126533pt;}
.y103_c00356{bottom:228.578773pt;}
.y102_c00356{bottom:233.401333pt;}
.y101_c00356{bottom:235.665813pt;}
.y100_c00356{bottom:239.198693pt;}
.yff_c00356{bottom:241.020213pt;}
.yfe_c00356{bottom:246.906133pt;}
.yfd_c00356{bottom:250.879413pt;}
.yfc_c00356{bottom:252.070133pt;}
.yfb_c00356{bottom:253.696453pt;}
.yf9_c00356{bottom:259.009389pt;}
.yf8_c00356{bottom:261.070595pt;}
.yfa_c00356{bottom:262.101333pt;}
.yf7_c00356{bottom:262.598196pt;}
.yf6_c00356{bottom:266.255832pt;}
.yf5_c00356{bottom:267.894380pt;}
.yf4_c00356{bottom:269.445513pt;}
.yf3_c00356{bottom:272.549547pt;}
.yf2_c00356{bottom:278.652673pt;}
.yf1_c00356{bottom:282.250667pt;}
.yf0_c00356{bottom:305.999315pt;}
.yef_c00356{bottom:307.502605pt;}
.yee_c00356{bottom:312.072651pt;}
.yed_c00356{bottom:314.609595pt;}
.yec_c00356{bottom:319.671696pt;}
.yeb_c00356{bottom:321.327504pt;}
.yea_c00356{bottom:325.778235pt;}
.ye9_c00356{bottom:330.195440pt;}
.ye8_c00356{bottom:334.619440pt;}
.ye7_c00356{bottom:336.800080pt;}
.ye6_c00356{bottom:338.411835pt;}
.ye5_c00356{bottom:344.408688pt;}
.ye4_c00356{bottom:345.889104pt;}
.ye3_c00356{bottom:350.457784pt;}
.ye2_c00356{bottom:352.140397pt;}
.ye1_c00356{bottom:354.955480pt;}
.ye0_c00356{bottom:357.164493pt;}
.ydf_c00356{bottom:358.793421pt;}
.yde_c00356{bottom:363.815203pt;}
.ydd_c00356{bottom:365.474744pt;}
.ydc_c00356{bottom:367.102179pt;}
.ydb_c00356{bottom:370.419693pt;}
.yda_c00356{bottom:374.773432pt;}
.yd9_c00356{bottom:377.469869pt;}
.yd8_c00356{bottom:378.991352pt;}
.yd7_c00356{bottom:381.987581pt;}
.yd6_c00356{bottom:384.155528pt;}
.yd5_c00356{bottom:388.088893pt;}
.yd4_c00356{bottom:389.154909pt;}
.yd3_c00356{bottom:394.187219pt;}
.yd2_c00356{bottom:397.969981pt;}
.yd1_c00356{bottom:399.651848pt;}
.yd0_c00356{bottom:401.282941pt;}
.ycf_c00356{bottom:407.827773pt;}
.yce_c00356{bottom:410.477992pt;}
.ycd_c00356{bottom:417.202173pt;}
.ycc_c00356{bottom:424.977283pt;}
.ycb_c00356{bottom:426.522224pt;}
.yca_c00356{bottom:429.073464pt;}
.yc9_c00356{bottom:431.047717pt;}
.yc8_c00356{bottom:432.070605pt;}
.yc7_c00356{bottom:438.981853pt;}
.yc5_c00356{bottom:441.356597pt;}
.yc4_c00356{bottom:447.475083pt;}
.yc3_c00356{bottom:448.584331pt;}
.yc6_c00356{bottom:448.621027pt;}
.yc2_c00356{bottom:455.777120pt;}
.yc1_c00356{bottom:457.989867pt;}
.yc0_c00356{bottom:463.517067pt;}
.ybf_c00356{bottom:465.735040pt;}
.ybe_c00356{bottom:471.044437pt;}
.ybd_c00356{bottom:472.200501pt;}
.ybc_c00356{bottom:473.733408pt;}
.ybb_c00356{bottom:481.722667pt;}
.yba_c00356{bottom:484.775917pt;}
.yb9_c00356{bottom:486.266059pt;}
.yb8_c00356{bottom:491.233264pt;}
.yb7_c00356{bottom:493.687309pt;}
.yb6_c00356{bottom:495.156853pt;}
.yb5_c00356{bottom:496.597960pt;}
.yb2_c00356{bottom:502.520395pt;}
.yb4_c00356{bottom:502.946328pt;}
.yb3_c00356{bottom:504.296893pt;}
.yb1_c00356{bottom:507.677421pt;}
.yaf_c00356{bottom:513.081093pt;}
.yb0_c00356{bottom:513.434283pt;}
.yae_c00356{bottom:514.765173pt;}
.yad_c00356{bottom:517.721333pt;}
.yac_c00356{bottom:517.981043pt;}
.yab_c00356{bottom:519.634764pt;}
.yaa_c00356{bottom:523.301039pt;}
.ya9_c00356{bottom:526.147259pt;}
.ya8_c00356{bottom:528.480213pt;}
.ya7_c00356{bottom:530.878768pt;}
.ya6_c00356{bottom:531.672091pt;}
.ya5_c00356{bottom:532.812000pt;}
.ya4_c00356{bottom:537.042811pt;}
.ya3_c00356{bottom:540.524751pt;}
.ya2_c00356{bottom:542.444505pt;}
.ya1_c00356{bottom:545.366147pt;}
.ya0_c00356{bottom:547.298249pt;}
.y9f_c00356{bottom:548.746428pt;}
.y9e_c00356{bottom:551.169511pt;}
.y9d_c00356{bottom:555.966219pt;}
.y9c_c00356{bottom:556.878925pt;}
.y9b_c00356{bottom:558.401649pt;}
.y9a_c00356{bottom:560.860600pt;}
.y99_c00356{bottom:564.161175pt;}
.y98_c00356{bottom:565.083028pt;}
.y97_c00356{bottom:566.410667pt;}
.y96_c00356{bottom:577.758005pt;}
.y95_c00356{bottom:583.166072pt;}
.y94_c00356{bottom:583.999653pt;}
.y93_c00356{bottom:585.929752pt;}
.y92_c00356{bottom:588.184120pt;}
.y91_c00356{bottom:589.553141pt;}
.y90_c00356{bottom:593.579491pt;}
.y8f_c00356{bottom:594.446008pt;}
.y8e_c00356{bottom:596.653333pt;}
.y8c_c00356{bottom:620.335656pt;}
.y8b_c00356{bottom:620.335808pt;}
.y8a_c00356{bottom:620.335817pt;}
.y8d_c00356{bottom:620.335959pt;}
.y89_c00356{bottom:633.449368pt;}
.y88_c00356{bottom:633.854500pt;}
.y87_c00356{bottom:635.517644pt;}
.y86_c00356{bottom:636.369852pt;}
.y85_c00356{bottom:638.408000pt;}
.y84_c00356{bottom:647.101012pt;}
.y83_c00356{bottom:647.687649pt;}
.y82_c00356{bottom:648.484497pt;}
.y81_c00356{bottom:650.828496pt;}
.y80_c00356{bottom:651.605568pt;}
.y7f_c00356{bottom:682.293011pt;}
.y7e_c00356{bottom:682.607332pt;}
.y7d_c00356{bottom:683.373035pt;}
.y7c_c00356{bottom:683.687444pt;}
.y7b_c00356{bottom:684.529384pt;}
.y7a_c00356{bottom:684.962667pt;}
.y79_c00356{bottom:697.640475pt;}
.y78_c00356{bottom:700.217845pt;}
.y77_c00356{bottom:702.422207pt;}
.y76_c00356{bottom:704.645611pt;}
.y75_c00356{bottom:706.825305pt;}
.y74_c00356{bottom:707.923021pt;}
.y73_c00356{bottom:711.180403pt;}
.y72_c00356{bottom:713.019253pt;}
.y71_c00356{bottom:714.804577pt;}
.y70_c00356{bottom:716.606625pt;}
.y6f_c00356{bottom:718.771520pt;}
.y6e_c00356{bottom:719.772000pt;}
.y6d_c00356{bottom:728.915792pt;}
.y6c_c00356{bottom:730.258195pt;}
.y6b_c00356{bottom:731.666899pt;}
.y6a_c00356{bottom:734.880704pt;}
.y69_c00356{bottom:736.253283pt;}
.y68_c00356{bottom:739.902248pt;}
.y67_c00356{bottom:740.791459pt;}
.y66_c00356{bottom:745.743819pt;}
.y65_c00356{bottom:747.135411pt;}
.y64_c00356{bottom:749.396341pt;}
.y63_c00356{bottom:751.214997pt;}
.y62_c00356{bottom:752.563472pt;}
.y61_c00356{bottom:755.615296pt;}
.y60_c00356{bottom:756.962667pt;}
.y5f_c00356{bottom:763.527565pt;}
.y5e_c00356{bottom:764.853531pt;}
.y5d_c00356{bottom:767.617701pt;}
.y5c_c00356{bottom:772.193597pt;}
.y5b_c00356{bottom:773.531093pt;}
.y5a_c00356{bottom:775.366371pt;}
.y59_c00356{bottom:776.730363pt;}
.y58_c00356{bottom:777.626688pt;}
.y57_c00356{bottom:783.021691pt;}
.y56_c00356{bottom:784.821333pt;}
.y55_c00356{bottom:800.152547pt;}
.y54_c00356{bottom:802.790783pt;}
.y53_c00356{bottom:803.941199pt;}
.y52_c00356{bottom:805.071023pt;}
.y51_c00356{bottom:806.472155pt;}
.y50_c00356{bottom:807.341063pt;}
.y4f_c00356{bottom:808.221419pt;}
.y4e_c00356{bottom:809.941295pt;}
.y4d_c00356{bottom:811.074923pt;}
.y4c_c00356{bottom:813.860075pt;}
.y4b_c00356{bottom:825.872939pt;}
.y4a_c00356{bottom:829.461179pt;}
.y49_c00356{bottom:831.950699pt;}
.y48_c00356{bottom:833.362763pt;}
.y47_c00356{bottom:834.416795pt;}
.y46_c00356{bottom:836.534699pt;}
.y45_c00356{bottom:839.380715pt;}
.y44_c00356{bottom:840.443675pt;}
.y43_c00356{bottom:843.260027pt;}
.y42_c00356{bottom:844.628555pt;}
.y41_c00356{bottom:846.010667pt;}
.y40_c00356{bottom:857.716469pt;}
.y3f_c00356{bottom:858.979275pt;}
.y3e_c00356{bottom:861.524000pt;}
.y3d_c00356{bottom:862.485707pt;}
.y3c_c00356{bottom:863.438027pt;}
.y3b_c00356{bottom:865.993376pt;}
.y3a_c00356{bottom:866.905333pt;}
.y39_c00356{bottom:867.850229pt;}
.y38_c00356{bottom:871.014987pt;}
.y37_c00356{bottom:872.258763pt;}
.y36_c00356{bottom:873.821429pt;}
.y35_c00356{bottom:874.730229pt;}
.y34_c00356{bottom:876.249333pt;}
.y33_c00356{bottom:890.387156pt;}
.y32_c00356{bottom:892.381896pt;}
.y31_c00356{bottom:894.319084pt;}
.y30_c00356{bottom:895.637104pt;}
.y2f_c00356{bottom:898.541280pt;}
.y2e_c00356{bottom:900.121716pt;}
.y2d_c00356{bottom:902.765544pt;}
.y2c_c00356{bottom:903.774772pt;}
.y2b_c00356{bottom:904.722576pt;}
.y2a_c00356{bottom:906.337376pt;}
.y29_c00356{bottom:908.172000pt;}
.y28_c00356{bottom:919.962563pt;}
.y27_c00356{bottom:920.480115pt;}
.y26_c00356{bottom:922.801612pt;}
.y25_c00356{bottom:925.108360pt;}
.y24_c00356{bottom:925.876948pt;}
.y23_c00356{bottom:926.663163pt;}
.y22_c00356{bottom:928.690996pt;}
.y21_c00356{bottom:930.235075pt;}
.y20_c00356{bottom:931.009233pt;}
.y1f_c00356{bottom:932.546703pt;}
.y1e_c00356{bottom:934.032659pt;}
.y1d_c00356{bottom:934.791869pt;}
.y1c_c00356{bottom:935.296893pt;}
.y1b_c00356{bottom:952.924300pt;}
.y1a_c00356{bottom:957.671959pt;}
.y19_c00356{bottom:958.815197pt;}
.y18_c00356{bottom:959.967128pt;}
.y17_c00356{bottom:962.319821pt;}
.y16_c00356{bottom:964.632191pt;}
.y15_c00356{bottom:965.766027pt;}
.y14_c00356{bottom:966.873389pt;}
.y13_c00356{bottom:967.684077pt;}
.y12_c00356{bottom:970.723937pt;}
.y11_c00356{bottom:972.632531pt;}
.y10_c00356{bottom:973.736449pt;}
.yf_c00356{bottom:975.615707pt;}
.ye_c00356{bottom:985.345215pt;}
.yd_c00356{bottom:986.514808pt;}
.yc_c00356{bottom:989.764905pt;}
.yb_c00356{bottom:992.265413pt;}
.ya_c00356{bottom:993.440255pt;}
.y9_c00356{bottom:994.646311pt;}
.y8_c00356{bottom:998.295748pt;}
.y7_c00356{bottom:1000.305076pt;}
.y6_c00356{bottom:1001.495935pt;}
.y5_c00356{bottom:1004.753849pt;}
.y4_c00356{bottom:1005.884083pt;}
.y3_c00356{bottom:1007.063899pt;}
.y2_c00356{bottom:1008.246667pt;}
.y1_c00356{bottom:1058.532000pt;}
.h13_c00356{height:21.329109pt;}
.h1b_c00356{height:37.325885pt;}
.h1e_c00356{height:42.654825pt;}
.h1d_c00356{height:47.986678pt;}
.hf_c00356{height:58.679601pt;}
.h15_c00356{height:63.972474pt;}
.h3_c00356{height:63.989823pt;}
.h1f_c00356{height:64.000000pt;}
.ha_c00356{height:64.003744pt;}
.h19_c00356{height:64.025915pt;}
.h18_c00356{height:69.303514pt;}
.hb_c00356{height:69.311490pt;}
.h4_c00356{height:69.322308pt;}
.h11_c00356{height:69.347268pt;}
.h20_c00356{height:69.355101pt;}
.h7_c00356{height:74.630258pt;}
.h6_c00356{height:74.632686pt;}
.h8_c00356{height:74.640417pt;}
.h14_c00356{height:74.651881pt;}
.h5_c00356{height:74.654794pt;}
.h9_c00356{height:74.671035pt;}
.hc_c00356{height:74.671184pt;}
.h2_c00356{height:80.000000pt;}
.h10_c00356{height:80.004680pt;}
.he_c00356{height:80.017638pt;}
.h17_c00356{height:85.296632pt;}
.h1c_c00356{height:85.316308pt;}
.h1a_c00356{height:85.316436pt;}
.h16_c00356{height:90.627672pt;}
.hd_c00356{height:90.672152pt;}
.h12_c00356{height:101.313267pt;}
.h0_c00356{height:1112.400000pt;}
.h1_c00356{height:1112.666667pt;}
.w0_c00356{width:813.333333pt;}
.x0_c00356{left:0.000000pt;}
.xb3_c00356{left:1.801333pt;}
.x96_c00356{left:4.996000pt;}
.xba_c00356{left:117.620000pt;}
.xbc_c00356{left:119.136821pt;}
.xc1_c00356{left:120.152000pt;}
.xaf_c00356{left:121.729333pt;}
.x9f_c00356{left:124.834264pt;}
.x76_c00356{left:131.197293pt;}
.x6c_c00356{left:133.497333pt;}
.x55_c00356{left:135.556000pt;}
.x44_c00356{left:137.178589pt;}
.x3c_c00356{left:138.889333pt;}
.x2f_c00356{left:140.124000pt;}
.x1c_c00356{left:141.519379pt;}
.xf_c00356{left:142.739141pt;}
.x2_c00356{left:144.542667pt;}
.xc6_c00356{left:145.816639pt;}
.x97_c00356{left:147.376003pt;}
.x88_c00356{left:148.985333pt;}
.x7e_c00356{left:150.497333pt;}
.x1d_c00356{left:160.911896pt;}
.x62_c00356{left:162.995627pt;}
.x56_c00356{left:164.817376pt;}
.xb4_c00356{left:168.653627pt;}
.xaa_c00356{left:170.424549pt;}
.xa0_c00356{left:172.064947pt;}
.x3_c00356{left:173.361819pt;}
.x91_c00356{left:175.381349pt;}
.x3d_c00356{left:177.242941pt;}
.x79_c00356{left:178.440015pt;}
.x30_c00356{left:187.548528pt;}
.xb5_c00356{left:188.459269pt;}
.xb0_c00356{left:189.548113pt;}
.x10_c00356{left:190.869569pt;}
.x9d_c00356{left:193.406093pt;}
.x98_c00356{left:195.297301pt;}
.x7f_c00356{left:196.359425pt;}
.x27_c00356{left:197.511072pt;}
.x4_c00356{left:202.109043pt;}
.x77_c00356{left:209.454456pt;}
.xc7_c00356{left:212.647075pt;}
.x31_c00356{left:215.920128pt;}
.x11_c00356{left:219.132909pt;}
.x63_c00356{left:221.447783pt;}
.xbb_c00356{left:223.711136pt;}
.x5_c00356{left:229.648143pt;}
.x57_c00356{left:231.095032pt;}
.x45_c00356{left:233.120101pt;}
.xc2_c00356{left:241.080284pt;}
.xbd_c00356{left:242.421033pt;}
.x1e_c00356{left:247.151983pt;}
.x6d_c00356{left:249.426667pt;}
.x89_c00356{left:254.533013pt;}
.x58_c00356{left:260.380384pt;}
.x80_c00356{left:263.650733pt;}
.x32_c00356{left:264.704628pt;}
.x12_c00356{left:268.010644pt;}
.x64_c00356{left:270.103079pt;}
.x46_c00356{left:272.165533pt;}
.x28_c00356{left:275.088084pt;}
.xad_c00356{left:276.071237pt;}
.x6e_c00356{left:278.009333pt;}
.xc8_c00356{left:279.271051pt;}
.x7a_c00356{left:284.700315pt;}
.x78_c00356{left:286.751199pt;}
.xa1_c00356{left:288.703203pt;}
.x99_c00356{left:289.918347pt;}
.xc3_c00356{left:292.111868pt;}
.x3e_c00356{left:293.373361pt;}
.xa6_c00356{left:297.339227pt;}
.x59_c00356{left:299.876848pt;}
.x92_c00356{left:302.034195pt;}
.x33_c00356{left:303.533760pt;}
.xae_c00356{left:304.907883pt;}
.x1f_c00356{left:306.167855pt;}
.x6_c00356{left:309.030015pt;}
.x8a_c00356{left:311.377445pt;}
.x7b_c00356{left:314.431887pt;}
.x65_c00356{left:318.306827pt;}
.x3f_c00356{left:322.870501pt;}
.x9a_c00356{left:329.445800pt;}
.x47_c00356{left:331.402513pt;}
.x20_c00356{left:335.921736pt;}
.x7_c00356{left:338.046303pt;}
.x81_c00356{left:344.828141pt;}
.x13_c00356{left:345.883096pt;}
.x6f_c00356{left:347.618667pt;}
.x5a_c00356{left:348.978364pt;}
.xb6_c00356{left:352.450629pt;}
.xa7_c00356{left:356.462077pt;}
.x93_c00356{left:360.088643pt;}
.x48_c00356{left:361.717141pt;}
.x7c_c00356{left:363.390879pt;}
.x14_c00356{left:366.644011pt;}
.x66_c00356{left:367.955795pt;}
.xbe_c00356{left:370.349029pt;}
.x70_c00356{left:376.193333pt;}
.x5b_c00356{left:379.200112pt;}
.x8b_c00356{left:380.728025pt;}
.xb7_c00356{left:382.748579pt;}
.x29_c00356{left:385.676052pt;}
.x8_c00356{left:387.005295pt;}
.x4e_c00356{left:389.055595pt;}
.x49_c00356{left:391.640065pt;}
.x15_c00356{left:394.991267pt;}
.xc4_c00356{left:397.590284pt;}
.xbf_c00356{left:399.403981pt;}
.x34_c00356{left:402.333528pt;}
.x7d_c00356{left:405.307587pt;}
.x4f_c00356{left:408.521443pt;}
.x1_c00356{left:410.400000pt;}
.xa2_c00356{left:415.159117pt;}
.x16_c00356{left:424.048588pt;}
.x71_c00356{left:425.033296pt;}
.x9b_c00356{left:427.948400pt;}
.x35_c00356{left:431.832000pt;}
.x2a_c00356{left:433.520160pt;}
.x9e_c00356{left:437.173888pt;}
.x50_c00356{left:438.143791pt;}
.x4a_c00356{left:439.885261pt;}
.xb8_c00356{left:441.512149pt;}
.xc5_c00356{left:448.022468pt;}
.xc0_c00356{left:450.297527pt;}
.x72_c00356{left:454.361059pt;}
.x67_c00356{left:455.905091pt;}
.x36_c00356{left:460.302168pt;}
.x82_c00356{left:461.230289pt;}
.x9c_c00356{left:467.382707pt;}
.x8c_c00356{left:470.059937pt;}
.x21_c00356{left:473.084816pt;}
.x9_c00356{left:475.926951pt;}
.x4b_c00356{left:478.788121pt;}
.x17_c00356{left:483.284829pt;}
.x68_c00356{left:485.543423pt;}
.x5c_c00356{left:486.752452pt;}
.x40_c00356{left:489.868669pt;}
.xb1_c00356{left:492.159865pt;}
.x22_c00356{left:503.262492pt;}
.xa_c00356{left:505.313535pt;}
.x51_c00356{left:507.048151pt;}
.x94_c00356{left:508.163464pt;}
.x83_c00356{left:510.631505pt;}
.x8e_c00356{left:516.216459pt;}
.x4c_c00356{left:518.410453pt;}
.x2b_c00356{left:521.437488pt;}
.xa3_c00356{left:523.839987pt;}
.x41_c00356{left:529.053445pt;}
.x23_c00356{left:532.783109pt;}
.xb_c00356{left:533.939547pt;}
.x95_c00356{left:537.903075pt;}
.x37_c00356{left:540.076980pt;}
.x18_c00356{left:543.536109pt;}
.xc9_c00356{left:554.462032pt;}
.xb2_c00356{left:559.805485pt;}
.x2c_c00356{left:561.337548pt;}
.x38_c00356{left:569.807220pt;}
.x19_c00356{left:573.034323pt;}
.x8d_c00356{left:578.401461pt;}
.x84_c00356{left:579.547853pt;}
.xab_c00356{left:581.764221pt;}
.x5d_c00356{left:585.309796pt;}
.xa4_c00356{left:593.938176pt;}
.xc_c00356{left:594.866559pt;}
.x42_c00356{left:598.137625pt;}
.x39_c00356{left:599.830500pt;}
.x1a_c00356{left:602.320748pt;}
.x69_c00356{left:604.427087pt;}
.x52_c00356{left:606.424675pt;}
.x4d_c00356{left:609.275749pt;}
.xac_c00356{left:611.273085pt;}
.x8f_c00356{left:613.593832pt;}
.x5e_c00356{left:615.118624pt;}
.x2d_c00356{left:619.981512pt;}
.x24_c00356{left:621.368937pt;}
.xa8_c00356{left:623.102395pt;}
.xa5_c00356{left:632.574083pt;}
.x85_c00356{left:639.113561pt;}
.x73_c00356{left:642.448000pt;}
.xa9_c00356{left:653.088968pt;}
.x6a_c00356{left:663.944843pt;}
.x53_c00356{left:666.455251pt;}
.xb9_c00356{left:668.457349pt;}
.xd_c00356{left:674.057955pt;}
.x86_c00356{left:678.253049pt;}
.x3a_c00356{left:679.273644pt;}
.x2e_c00356{left:680.367732pt;}
.xca_c00356{left:684.009085pt;}
.x5f_c00356{left:684.914092pt;}
.x54_c00356{left:695.251759pt;}
.x43_c00356{left:697.711285pt;}
.x90_c00356{left:700.816248pt;}
.xe_c00356{left:702.556095pt;}
.x25_c00356{left:710.509205pt;}
.xcb_c00356{left:713.261131pt;}
.x60_c00356{left:715.507468pt;}
.x3b_c00356{left:718.696848pt;}
.x74_c00356{left:721.645333pt;}
.x1b_c00356{left:723.918321pt;}
.x26_c00356{left:730.369528pt;}
.x6b_c00356{left:733.533851pt;}
.x75_c00356{left:740.937333pt;}
.x61_c00356{left:744.660952pt;}
.x87_c00356{left:749.241989pt;}
}





/* 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_c00357 {
    display:none;
  }
  .loading-indicator_c00357.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00357 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_c00357 { 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_c00357" -> "#page-container .classname_c00357")
 */
.pf_c00357 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00357 { /* 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_c00357.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00357 { /* 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_c00357 { /* 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_c00357 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00357 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00357 {overflow:visible;}
  }
}
.c_c00357 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00357 { /* 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_c00357:after { /* webkit #35443 */
  content: '';
}
.t_c00357:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00357 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 */
}
.__c00357 { /* 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_c00357 { /* info for Javascript */
  display:none;
}
.l_c00357 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00357 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00357 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00357: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_c00357 {
    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_c00357.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00357.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_c00357 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00357{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00357;src:url('chunks/assets/font_6b78c10203a447bee2208e8d.woff2')format("woff");}.ff1_c00357{font-family:ff1_c00357;line-height:1.000000;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;}
.m2_c00357{transform:matrix(0.162560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162560,0.000000,0.000000,0.250000,0,0);}
.m5_c00357{transform:matrix(0.214930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214930,0.000000,0.000000,0.250000,0,0);}
.mb_c00357{transform:matrix(0.274365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274365,0.000000,0.000000,0.250000,0,0);}
.m3_c00357{transform:matrix(0.277910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277910,0.000000,0.000000,0.250000,0,0);}
.m0_c00357{transform:matrix(0.314380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314380,0.000000,0.000000,0.250000,0,0);}
.mf_c00357{transform:matrix(0.332700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332700,0.000000,0.000000,0.250000,0,0);}
.m9_c00357{transform:matrix(0.399060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399060,0.000000,0.000000,0.250000,0,0);}
.md_c00357{transform:matrix(0.423615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423615,0.000000,0.000000,0.250000,0,0);}
.m6_c00357{transform:matrix(0.445830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445830,0.000000,0.000000,0.250000,0,0);}
.m4_c00357{transform:matrix(0.458235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458235,0.000000,0.000000,0.250000,0,0);}
.ma_c00357{transform:matrix(0.494965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494965,0.000000,0.000000,0.250000,0,0);}
.m1_c00357{transform:matrix(0.529090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.529090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.529090,0.000000,0.000000,0.250000,0,0);}
.m7_c00357{transform:matrix(0.634495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634495,0.000000,0.000000,0.250000,0,0);}
.mc_c00357{transform:matrix(0.695435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.695435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.695435,0.000000,0.000000,0.250000,0,0);}
.me_c00357{transform:matrix(0.943465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.943465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.943465,0.000000,0.000000,0.250000,0,0);}
.m8_c00357{transform:matrix(0.996370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.996370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.996370,0.000000,0.000000,0.250000,0,0);}
.v0_c00357{vertical-align:0.000000px;}
.ls0_c00357{letter-spacing:0.000000px;}
.sc__c00357{text-shadow:none;}
.sc0_c00357{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__c00357{-webkit-text-stroke:0px transparent;}
.sc0_c00357{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00357{word-spacing:0.000000px;}
.fc0_c00357{color:transparent;}
.fs2_c00357{font-size:24.000000px;}
.fs4_c00357{font-size:36.000000px;}
.fs0_c00357{font-size:42.000000px;}
.fs3_c00357{font-size:54.000000px;}
.fs1_c00357{font-size:126.000000px;}
.y0_c00357{bottom:0.000000px;}
.y8_c00357{bottom:455.245500px;}
.y7_c00357{bottom:459.664500px;}
.y6_c00357{bottom:465.480000px;}
.y5_c00357{bottom:562.647000px;}
.y4_c00357{bottom:571.717500px;}
.y3_c00357{bottom:625.065000px;}
.y2_c00357{bottom:1137.099000px;}
.y1_c00357{bottom:1140.484500px;}
.h4_c00357{height:24.000000px;}
.h6_c00357{height:36.000000px;}
.h2_c00357{height:42.000000px;}
.h5_c00357{height:54.000000px;}
.h3_c00357{height:126.000000px;}
.h0_c00357{height:1251.450000px;}
.h1_c00357{height:1251.750000px;}
.w0_c00357{width:915.000000px;}
.x0_c00357{left:0.000000px;}
.x3_c00357{left:169.290000px;}
.xa_c00357{left:233.010000px;}
.xc_c00357{left:235.170000px;}
.xe_c00357{left:264.600000px;}
.xd_c00357{left:271.890000px;}
.x2_c00357{left:288.090000px;}
.xb_c00357{left:293.490000px;}
.x1_c00357{left:302.670000px;}
.xf_c00357{left:312.930000px;}
.x6_c00357{left:518.130000px;}
.x4_c00357{left:527.310000px;}
.x7_c00357{left:530.820000px;}
.x8_c00357{left:551.340000px;}
.x5_c00357{left:560.790000px;}
.x9_c00357{left:591.030000px;}
@media print{
.v0_c00357{vertical-align:0.000000pt;}
.ls0_c00357{letter-spacing:0.000000pt;}
.ws0_c00357{word-spacing:0.000000pt;}
.fs2_c00357{font-size:21.333333pt;}
.fs4_c00357{font-size:32.000000pt;}
.fs0_c00357{font-size:37.333333pt;}
.fs3_c00357{font-size:48.000000pt;}
.fs1_c00357{font-size:112.000000pt;}
.y0_c00357{bottom:0.000000pt;}
.y8_c00357{bottom:404.662667pt;}
.y7_c00357{bottom:408.590667pt;}
.y6_c00357{bottom:413.760000pt;}
.y5_c00357{bottom:500.130667pt;}
.y4_c00357{bottom:508.193333pt;}
.y3_c00357{bottom:555.613333pt;}
.y2_c00357{bottom:1010.754667pt;}
.y1_c00357{bottom:1013.764000pt;}
.h4_c00357{height:21.333333pt;}
.h6_c00357{height:32.000000pt;}
.h2_c00357{height:37.333333pt;}
.h5_c00357{height:48.000000pt;}
.h3_c00357{height:112.000000pt;}
.h0_c00357{height:1112.400000pt;}
.h1_c00357{height:1112.666667pt;}
.w0_c00357{width:813.333333pt;}
.x0_c00357{left:0.000000pt;}
.x3_c00357{left:150.480000pt;}
.xa_c00357{left:207.120000pt;}
.xc_c00357{left:209.040000pt;}
.xe_c00357{left:235.200000pt;}
.xd_c00357{left:241.680000pt;}
.x2_c00357{left:256.080000pt;}
.xb_c00357{left:260.880000pt;}
.x1_c00357{left:269.040000pt;}
.xf_c00357{left:278.160000pt;}
.x6_c00357{left:460.560000pt;}
.x4_c00357{left:468.720000pt;}
.x7_c00357{left:471.840000pt;}
.x8_c00357{left:490.080000pt;}
.x5_c00357{left:498.480000pt;}
.x9_c00357{left:525.360000pt;}
}





/* 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_c00358 {
    display:none;
  }
  .loading-indicator_c00358.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00358 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_c00358 { 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_c00358" -> "#page-container .classname_c00358")
 */
.pf_c00358 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00358 { /* 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_c00358.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00358 { /* 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_c00358 { /* 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_c00358 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00358 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00358 {overflow:visible;}
  }
}
.c_c00358 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00358 { /* 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_c00358:after { /* webkit #35443 */
  content: '';
}
.t_c00358:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00358 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 */
}
.__c00358 { /* 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_c00358 { /* info for Javascript */
  display:none;
}
.l_c00358 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00358 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00358 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00358: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_c00358 {
    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_c00358.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00358.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_c00358 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00358{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00358;src:url('chunks/assets/font_c605e72f209fc835e906f064.woff2')format("woff");}.ff1_c00358{font-family:ff1_c00358;line-height:1.000000;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;}
.m52_c00358{transform:matrix(0.009090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.009090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.009090,0.000000,0.000000,0.250000,0,0);}
.m44_c00358{transform:matrix(0.009790,-0.000039,0.001000,0.249998,0,0);-ms-transform:matrix(0.009790,-0.000039,0.001000,0.249998,0,0);-webkit-transform:matrix(0.009790,-0.000039,0.001000,0.249998,0,0);}
.m3_c00358{transform:matrix(0.070080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.070080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.070080,0.000000,0.000000,0.250000,0,0);}
.mb0_c00358{transform:matrix(0.075858,0.000531,-0.001750,0.249994,0,0);-ms-transform:matrix(0.075858,0.000531,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.075858,0.000531,-0.001750,0.249994,0,0);}
.m12_c00358{transform:matrix(0.077521,-0.000775,0.002500,0.249988,0,0);-ms-transform:matrix(0.077521,-0.000775,0.002500,0.249988,0,0);-webkit-transform:matrix(0.077521,-0.000775,0.002500,0.249988,0,0);}
.mbb_c00358{transform:matrix(0.092320,0.001385,-0.003750,0.249972,0,0);-ms-transform:matrix(0.092320,0.001385,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.092320,0.001385,-0.003750,0.249972,0,0);}
.m75_c00358{transform:matrix(0.095553,-0.002675,0.006997,0.249902,0,0);-ms-transform:matrix(0.095553,-0.002675,0.006997,0.249902,0,0);-webkit-transform:matrix(0.095553,-0.002675,0.006997,0.249902,0,0);}
.m94_c00358{transform:matrix(0.096935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096935,0.000000,0.000000,0.250000,0,0);}
.m27_c00358{transform:matrix(0.101565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.101565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.101565,0.000000,0.000000,0.250000,0,0);}
.m8b_c00358{transform:matrix(0.102035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102035,0.000000,0.000000,0.250000,0,0);}
.mb2_c00358{transform:matrix(0.104087,0.000729,-0.001750,0.249994,0,0);-ms-transform:matrix(0.104087,0.000729,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.104087,0.000729,-0.001750,0.249994,0,0);}
.mb4_c00358{transform:matrix(0.105292,0.000737,-0.001750,0.249994,0,0);-ms-transform:matrix(0.105292,0.000737,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.105292,0.000737,-0.001750,0.249994,0,0);}
.mcd_c00358{transform:matrix(0.108812,0.001306,-0.003000,0.249982,0,0);-ms-transform:matrix(0.108812,0.001306,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.108812,0.001306,-0.003000,0.249982,0,0);}
.mba_c00358{transform:matrix(0.110808,0.001662,-0.003750,0.249972,0,0);-ms-transform:matrix(0.110808,0.001662,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.110808,0.001662,-0.003750,0.249972,0,0);}
.mb1_c00358{transform:matrix(0.113477,0.000794,-0.001750,0.249994,0,0);-ms-transform:matrix(0.113477,0.000794,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.113477,0.000794,-0.001750,0.249994,0,0);}
.m2_c00358{transform:matrix(0.113645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113645,0.000000,0.000000,0.250000,0,0);}
.m6d_c00358{transform:matrix(0.115005,-0.003220,0.006997,0.249902,0,0);-ms-transform:matrix(0.115005,-0.003220,0.006997,0.249902,0,0);-webkit-transform:matrix(0.115005,-0.003220,0.006997,0.249902,0,0);}
.maf_c00358{transform:matrix(0.118812,0.000832,-0.001750,0.249994,0,0);-ms-transform:matrix(0.118812,0.000832,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.118812,0.000832,-0.001750,0.249994,0,0);}
.mb9_c00358{transform:matrix(0.127237,0.000891,-0.001750,0.249994,0,0);-ms-transform:matrix(0.127237,0.000891,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.127237,0.000891,-0.001750,0.249994,0,0);}
.mb3_c00358{transform:matrix(0.127572,0.000893,-0.001750,0.249994,0,0);-ms-transform:matrix(0.127572,0.000893,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.127572,0.000893,-0.001750,0.249994,0,0);}
.m7_c00358{transform:matrix(0.131035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131035,0.000000,0.000000,0.250000,0,0);}
.mb_c00358{transform:matrix(0.131240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131240,0.000000,0.000000,0.250000,0,0);}
.m26_c00358{transform:matrix(0.134645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134645,0.000000,0.000000,0.250000,0,0);}
.m97_c00358{transform:matrix(0.134850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134850,0.000000,0.000000,0.250000,0,0);}
.ma_c00358{transform:matrix(0.136740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136740,0.000000,0.000000,0.250000,0,0);}
.m8_c00358{transform:matrix(0.138095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138095,0.000000,0.000000,0.250000,0,0);}
.m9e_c00358{transform:matrix(0.138475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138475,0.000000,0.000000,0.250000,0,0);}
.m8e_c00358{transform:matrix(0.141440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141440,0.000000,0.000000,0.250000,0,0);}
.m5_c00358{transform:matrix(0.144720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144720,0.000000,0.000000,0.250000,0,0);}
.mb8_c00358{transform:matrix(0.146606,0.001026,-0.001750,0.249994,0,0);-ms-transform:matrix(0.146606,0.001026,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.146606,0.001026,-0.001750,0.249994,0,0);}
.ma6_c00358{transform:matrix(0.146871,0.001028,-0.001750,0.249994,0,0);-ms-transform:matrix(0.146871,0.001028,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.146871,0.001028,-0.001750,0.249994,0,0);}
.m3a_c00358{transform:matrix(0.146875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146875,0.000000,0.000000,0.250000,0,0);}
.m7e_c00358{transform:matrix(0.149130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149130,0.000000,0.000000,0.250000,0,0);}
.m18_c00358{transform:matrix(0.154062,-0.001541,0.002500,0.249988,0,0);-ms-transform:matrix(0.154062,-0.001541,0.002500,0.249988,0,0);-webkit-transform:matrix(0.154062,-0.001541,0.002500,0.249988,0,0);}
.m93_c00358{transform:matrix(0.155170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155170,0.000000,0.000000,0.250000,0,0);}
.m17_c00358{transform:matrix(0.155187,-0.001552,0.002500,0.249988,0,0);-ms-transform:matrix(0.155187,-0.001552,0.002500,0.249988,0,0);-webkit-transform:matrix(0.155187,-0.001552,0.002500,0.249988,0,0);}
.m96_c00358{transform:matrix(0.156290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156290,0.000000,0.000000,0.250000,0,0);}
.m1a_c00358{transform:matrix(0.158967,-0.001590,0.002500,0.249988,0,0);-ms-transform:matrix(0.158967,-0.001590,0.002500,0.249988,0,0);-webkit-transform:matrix(0.158967,-0.001590,0.002500,0.249988,0,0);}
.m95_c00358{transform:matrix(0.159150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159150,0.000000,0.000000,0.250000,0,0);}
.m5f_c00358{transform:matrix(0.159570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159570,0.000000,0.000000,0.250000,0,0);}
.m8c_c00358{transform:matrix(0.159710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159710,0.000000,0.000000,0.250000,0,0);}
.m9_c00358{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.md4_c00358{transform:matrix(0.160043,0.001921,-0.003000,0.249982,0,0);-ms-transform:matrix(0.160043,0.001921,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.160043,0.001921,-0.003000,0.249982,0,0);}
.m8a_c00358{transform:matrix(0.160350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160350,0.000000,0.000000,0.250000,0,0);}
.m8d_c00358{transform:matrix(0.160450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160450,0.000000,0.000000,0.250000,0,0);}
.m16_c00358{transform:matrix(0.161207,-0.001612,0.002500,0.249988,0,0);-ms-transform:matrix(0.161207,-0.001612,0.002500,0.249988,0,0);-webkit-transform:matrix(0.161207,-0.001612,0.002500,0.249988,0,0);}
.m1c_c00358{transform:matrix(0.161990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161990,0.000000,0.000000,0.250000,0,0);}
.m76_c00358{transform:matrix(0.164780,-0.004614,0.006997,0.249902,0,0);-ms-transform:matrix(0.164780,-0.004614,0.006997,0.249902,0,0);-webkit-transform:matrix(0.164780,-0.004614,0.006997,0.249902,0,0);}
.m15_c00358{transform:matrix(0.165362,-0.001654,0.002500,0.249988,0,0);-ms-transform:matrix(0.165362,-0.001654,0.002500,0.249988,0,0);-webkit-transform:matrix(0.165362,-0.001654,0.002500,0.249988,0,0);}
.m4_c00358{transform:matrix(0.166235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166235,0.000000,0.000000,0.250000,0,0);}
.mb7_c00358{transform:matrix(0.172076,0.001205,-0.001750,0.249994,0,0);-ms-transform:matrix(0.172076,0.001205,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.172076,0.001205,-0.001750,0.249994,0,0);}
.mbc_c00358{transform:matrix(0.172601,0.002589,-0.003750,0.249972,0,0);-ms-transform:matrix(0.172601,0.002589,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.172601,0.002589,-0.003750,0.249972,0,0);}
.md0_c00358{transform:matrix(0.173613,0.002083,-0.003000,0.249982,0,0);-ms-transform:matrix(0.173613,0.002083,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.173613,0.002083,-0.003000,0.249982,0,0);}
.m72_c00358{transform:matrix(0.173717,-0.004864,0.006997,0.249902,0,0);-ms-transform:matrix(0.173717,-0.004864,0.006997,0.249902,0,0);-webkit-transform:matrix(0.173717,-0.004864,0.006997,0.249902,0,0);}
.mc3_c00358{transform:matrix(0.174010,0.002610,-0.003750,0.249972,0,0);-ms-transform:matrix(0.174010,0.002610,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.174010,0.002610,-0.003750,0.249972,0,0);}
.m9c_c00358{transform:matrix(0.174425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174425,0.000000,0.000000,0.250000,0,0);}
.m77_c00358{transform:matrix(0.174722,-0.004892,0.006997,0.249902,0,0);-ms-transform:matrix(0.174722,-0.004892,0.006997,0.249902,0,0);-webkit-transform:matrix(0.174722,-0.004892,0.006997,0.249902,0,0);}
.m14_c00358{transform:matrix(0.175166,-0.001752,0.002500,0.249988,0,0);-ms-transform:matrix(0.175166,-0.001752,0.002500,0.249988,0,0);-webkit-transform:matrix(0.175166,-0.001752,0.002500,0.249988,0,0);}
.m2d_c00358{transform:matrix(0.176175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176175,0.000000,0.000000,0.250000,0,0);}
.m98_c00358{transform:matrix(0.177030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177030,0.000000,0.000000,0.250000,0,0);}
.md5_c00358{transform:matrix(0.177107,0.002125,-0.003000,0.249982,0,0);-ms-transform:matrix(0.177107,0.002125,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.177107,0.002125,-0.003000,0.249982,0,0);}
.m1d_c00358{transform:matrix(0.177235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177235,0.000000,0.000000,0.250000,0,0);}
.mbe_c00358{transform:matrix(0.177460,0.002662,-0.003750,0.249972,0,0);-ms-transform:matrix(0.177460,0.002662,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.177460,0.002662,-0.003750,0.249972,0,0);}
.mbd_c00358{transform:matrix(0.177565,0.002663,-0.003750,0.249972,0,0);-ms-transform:matrix(0.177565,0.002663,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.177565,0.002663,-0.003750,0.249972,0,0);}
.mc0_c00358{transform:matrix(0.178180,0.002673,-0.003750,0.249972,0,0);-ms-transform:matrix(0.178180,0.002673,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.178180,0.002673,-0.003750,0.249972,0,0);}
.m9b_c00358{transform:matrix(0.178360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178360,0.000000,0.000000,0.250000,0,0);}
.mc7_c00358{transform:matrix(0.178539,0.001428,-0.002000,0.249992,0,0);-ms-transform:matrix(0.178539,0.001428,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.178539,0.001428,-0.002000,0.249992,0,0);}
.m8f_c00358{transform:matrix(0.178575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178575,0.000000,0.000000,0.250000,0,0);}
.mc2_c00358{transform:matrix(0.178685,0.002680,-0.003750,0.249972,0,0);-ms-transform:matrix(0.178685,0.002680,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.178685,0.002680,-0.003750,0.249972,0,0);}
.m47_c00358{transform:matrix(0.179284,-0.000717,0.001000,0.249998,0,0);-ms-transform:matrix(0.179284,-0.000717,0.001000,0.249998,0,0);-webkit-transform:matrix(0.179284,-0.000717,0.001000,0.249998,0,0);}
.mda_c00358{transform:matrix(0.180265,0.002343,-0.003250,0.249979,0,0);-ms-transform:matrix(0.180265,0.002343,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.180265,0.002343,-0.003250,0.249979,0,0);}
.m7a_c00358{transform:matrix(0.180684,-0.005059,0.006997,0.249902,0,0);-ms-transform:matrix(0.180684,-0.005059,0.006997,0.249902,0,0);-webkit-transform:matrix(0.180684,-0.005059,0.006997,0.249902,0,0);}
.m6c_c00358{transform:matrix(0.181014,-0.005068,0.006997,0.249902,0,0);-ms-transform:matrix(0.181014,-0.005068,0.006997,0.249902,0,0);-webkit-transform:matrix(0.181014,-0.005068,0.006997,0.249902,0,0);}
.mdb_c00358{transform:matrix(0.181580,0.002361,-0.003250,0.249979,0,0);-ms-transform:matrix(0.181580,0.002361,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.181580,0.002361,-0.003250,0.249979,0,0);}
.m92_c00358{transform:matrix(0.182110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182110,0.000000,0.000000,0.250000,0,0);}
.me3_c00358{transform:matrix(0.183029,0.002745,-0.003750,0.249972,0,0);-ms-transform:matrix(0.183029,0.002745,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.183029,0.002745,-0.003750,0.249972,0,0);}
.m7b_c00358{transform:matrix(0.185642,-0.005198,0.006997,0.249902,0,0);-ms-transform:matrix(0.185642,-0.005198,0.006997,0.249902,0,0);-webkit-transform:matrix(0.185642,-0.005198,0.006997,0.249902,0,0);}
.mdd_c00358{transform:matrix(0.186939,0.002430,-0.003250,0.249979,0,0);-ms-transform:matrix(0.186939,0.002430,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.186939,0.002430,-0.003250,0.249979,0,0);}
.me9_c00358{transform:matrix(0.187199,0.002808,-0.003750,0.249972,0,0);-ms-transform:matrix(0.187199,0.002808,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.187199,0.002808,-0.003750,0.249972,0,0);}
.m0_c00358{transform:matrix(0.187210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187210,0.000000,0.000000,0.250000,0,0);}
.m70_c00358{transform:matrix(0.187796,-0.005258,0.006997,0.249902,0,0);-ms-transform:matrix(0.187796,-0.005258,0.006997,0.249902,0,0);-webkit-transform:matrix(0.187796,-0.005258,0.006997,0.249902,0,0);}
.md3_c00358{transform:matrix(0.188061,0.002257,-0.003000,0.249982,0,0);-ms-transform:matrix(0.188061,0.002257,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.188061,0.002257,-0.003000,0.249982,0,0);}
.m7c_c00358{transform:matrix(0.188251,-0.005271,0.006997,0.249902,0,0);-ms-transform:matrix(0.188251,-0.005271,0.006997,0.249902,0,0);-webkit-transform:matrix(0.188251,-0.005271,0.006997,0.249902,0,0);}
.m40_c00358{transform:matrix(0.188560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188560,0.000000,0.000000,0.250000,0,0);}
.md2_c00358{transform:matrix(0.189541,0.002274,-0.003000,0.249982,0,0);-ms-transform:matrix(0.189541,0.002274,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.189541,0.002274,-0.003000,0.249982,0,0);}
.m31_c00358{transform:matrix(0.189594,-0.002086,0.002750,0.249985,0,0);-ms-transform:matrix(0.189594,-0.002086,0.002750,0.249985,0,0);-webkit-transform:matrix(0.189594,-0.002086,0.002750,0.249985,0,0);}
.md1_c00358{transform:matrix(0.189741,0.002277,-0.003000,0.249982,0,0);-ms-transform:matrix(0.189741,0.002277,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.189741,0.002277,-0.003000,0.249982,0,0);}
.m62_c00358{transform:matrix(0.190015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190015,0.000000,0.000000,0.250000,0,0);}
.me1_c00358{transform:matrix(0.190729,0.002861,-0.003750,0.249972,0,0);-ms-transform:matrix(0.190729,0.002861,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.190729,0.002861,-0.003750,0.249972,0,0);}
.m42_c00358{transform:matrix(0.191975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191975,0.000000,0.000000,0.250000,0,0);}
.mce_c00358{transform:matrix(0.193446,0.002321,-0.003000,0.249982,0,0);-ms-transform:matrix(0.193446,0.002321,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.193446,0.002321,-0.003000,0.249982,0,0);}
.me4_c00358{transform:matrix(0.193578,0.002904,-0.003750,0.249972,0,0);-ms-transform:matrix(0.193578,0.002904,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.193578,0.002904,-0.003750,0.249972,0,0);}
.m34_c00358{transform:matrix(0.194928,-0.002144,0.002750,0.249985,0,0);-ms-transform:matrix(0.194928,-0.002144,0.002750,0.249985,0,0);-webkit-transform:matrix(0.194928,-0.002144,0.002750,0.249985,0,0);}
.mac_c00358{transform:matrix(0.194935,0.001365,-0.001750,0.249994,0,0);-ms-transform:matrix(0.194935,0.001365,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.194935,0.001365,-0.001750,0.249994,0,0);}
.ma3_c00358{transform:matrix(0.194940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194940,0.000000,0.000000,0.250000,0,0);}
.mde_c00358{transform:matrix(0.195388,0.002540,-0.003250,0.249979,0,0);-ms-transform:matrix(0.195388,0.002540,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.195388,0.002540,-0.003250,0.249979,0,0);}
.m5b_c00358{transform:matrix(0.195505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195505,0.000000,0.000000,0.250000,0,0);}
.mb6_c00358{transform:matrix(0.195510,0.001369,-0.001750,0.249994,0,0);-ms-transform:matrix(0.195510,0.001369,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.195510,0.001369,-0.001750,0.249994,0,0);}
.m6e_c00358{transform:matrix(0.195653,-0.005478,0.006997,0.249902,0,0);-ms-transform:matrix(0.195653,-0.005478,0.006997,0.249902,0,0);-webkit-transform:matrix(0.195653,-0.005478,0.006997,0.249902,0,0);}
.m50_c00358{transform:matrix(0.196125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196125,0.000000,0.000000,0.250000,0,0);}
.me0_c00358{transform:matrix(0.196623,0.002949,-0.003750,0.249972,0,0);-ms-transform:matrix(0.196623,0.002949,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.196623,0.002949,-0.003750,0.249972,0,0);}
.m6f_c00358{transform:matrix(0.196738,-0.005509,0.006997,0.249902,0,0);-ms-transform:matrix(0.196738,-0.005509,0.006997,0.249902,0,0);-webkit-transform:matrix(0.196738,-0.005509,0.006997,0.249902,0,0);}
.mcf_c00358{transform:matrix(0.196781,0.002361,-0.003000,0.249982,0,0);-ms-transform:matrix(0.196781,0.002361,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.196781,0.002361,-0.003000,0.249982,0,0);}
.m6_c00358{transform:matrix(0.197230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197230,0.000000,0.000000,0.250000,0,0);}
.m56_c00358{transform:matrix(0.197910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197910,0.000000,0.000000,0.250000,0,0);}
.m74_c00358{transform:matrix(0.198037,-0.005545,0.006997,0.249902,0,0);-ms-transform:matrix(0.198037,-0.005545,0.006997,0.249902,0,0);-webkit-transform:matrix(0.198037,-0.005545,0.006997,0.249902,0,0);}
.md6_c00358{transform:matrix(0.198626,0.002384,-0.003000,0.249982,0,0);-ms-transform:matrix(0.198626,0.002384,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.198626,0.002384,-0.003000,0.249982,0,0);}
.m73_c00358{transform:matrix(0.199557,-0.005588,0.006997,0.249902,0,0);-ms-transform:matrix(0.199557,-0.005588,0.006997,0.249902,0,0);-webkit-transform:matrix(0.199557,-0.005588,0.006997,0.249902,0,0);}
.m36_c00358{transform:matrix(0.201293,-0.002214,0.002750,0.249985,0,0);-ms-transform:matrix(0.201293,-0.002214,0.002750,0.249985,0,0);-webkit-transform:matrix(0.201293,-0.002214,0.002750,0.249985,0,0);}
.m71_c00358{transform:matrix(0.202556,-0.005672,0.006997,0.249902,0,0);-ms-transform:matrix(0.202556,-0.005672,0.006997,0.249902,0,0);-webkit-transform:matrix(0.202556,-0.005672,0.006997,0.249902,0,0);}
.m2a_c00358{transform:matrix(0.203550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203550,0.000000,0.000000,0.250000,0,0);}
.m32_c00358{transform:matrix(0.205098,-0.002256,0.002750,0.249985,0,0);-ms-transform:matrix(0.205098,-0.002256,0.002750,0.249985,0,0);-webkit-transform:matrix(0.205098,-0.002256,0.002750,0.249985,0,0);}
.m19_c00358{transform:matrix(0.206915,-0.002069,0.002500,0.249988,0,0);-ms-transform:matrix(0.206915,-0.002069,0.002500,0.249988,0,0);-webkit-transform:matrix(0.206915,-0.002069,0.002500,0.249988,0,0);}
.ma0_c00358{transform:matrix(0.206925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206925,0.000000,0.000000,0.250000,0,0);}
.m4a_c00358{transform:matrix(0.207393,-0.000830,0.001000,0.249998,0,0);-ms-transform:matrix(0.207393,-0.000830,0.001000,0.249998,0,0);-webkit-transform:matrix(0.207393,-0.000830,0.001000,0.249998,0,0);}
.m91_c00358{transform:matrix(0.207440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207440,0.000000,0.000000,0.250000,0,0);}
.m5c_c00358{transform:matrix(0.208065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208065,0.000000,0.000000,0.250000,0,0);}
.m43_c00358{transform:matrix(0.209220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209220,0.000000,0.000000,0.250000,0,0);}
.m4d_c00358{transform:matrix(0.209933,-0.000840,0.001000,0.249998,0,0);-ms-transform:matrix(0.209933,-0.000840,0.001000,0.249998,0,0);-webkit-transform:matrix(0.209933,-0.000840,0.001000,0.249998,0,0);}
.m9a_c00358{transform:matrix(0.210925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210925,0.000000,0.000000,0.250000,0,0);}
.m57_c00358{transform:matrix(0.211025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211025,0.000000,0.000000,0.250000,0,0);}
.m78_c00358{transform:matrix(0.211437,-0.005920,0.006997,0.249902,0,0);-ms-transform:matrix(0.211437,-0.005920,0.006997,0.249902,0,0);-webkit-transform:matrix(0.211437,-0.005920,0.006997,0.249902,0,0);}
.m82_c00358{transform:matrix(0.212890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212890,0.000000,0.000000,0.250000,0,0);}
.mc1_c00358{transform:matrix(0.212981,0.003195,-0.003750,0.249972,0,0);-ms-transform:matrix(0.212981,0.003195,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.212981,0.003195,-0.003750,0.249972,0,0);}
.m3d_c00358{transform:matrix(0.213140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213140,0.000000,0.000000,0.250000,0,0);}
.m2e_c00358{transform:matrix(0.213720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213720,0.000000,0.000000,0.250000,0,0);}
.m80_c00358{transform:matrix(0.214455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214455,0.000000,0.000000,0.250000,0,0);}
.mdf_c00358{transform:matrix(0.214667,0.002791,-0.003250,0.249979,0,0);-ms-transform:matrix(0.214667,0.002791,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.214667,0.002791,-0.003250,0.249979,0,0);}
.m5a_c00358{transform:matrix(0.214905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214905,0.000000,0.000000,0.250000,0,0);}
.m9d_c00358{transform:matrix(0.215120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215120,0.000000,0.000000,0.250000,0,0);}
.md8_c00358{transform:matrix(0.216317,0.002812,-0.003250,0.249979,0,0);-ms-transform:matrix(0.216317,0.002812,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.216317,0.002812,-0.003250,0.249979,0,0);}
.m88_c00358{transform:matrix(0.216780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216780,0.000000,0.000000,0.250000,0,0);}
.m5d_c00358{transform:matrix(0.218755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218755,0.000000,0.000000,0.250000,0,0);}
.ma5_c00358{transform:matrix(0.218965,0.001533,-0.001750,0.249994,0,0);-ms-transform:matrix(0.218965,0.001533,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.218965,0.001533,-0.001750,0.249994,0,0);}
.me8_c00358{transform:matrix(0.218990,0.003285,-0.003750,0.249972,0,0);-ms-transform:matrix(0.218990,0.003285,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.218990,0.003285,-0.003750,0.249972,0,0);}
.m79_c00358{transform:matrix(0.219704,-0.006152,0.006997,0.249902,0,0);-ms-transform:matrix(0.219704,-0.006152,0.006997,0.249902,0,0);-webkit-transform:matrix(0.219704,-0.006152,0.006997,0.249902,0,0);}
.m53_c00358{transform:matrix(0.220370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220370,0.000000,0.000000,0.250000,0,0);}
.ma9_c00358{transform:matrix(0.221490,0.001550,-0.001750,0.249994,0,0);-ms-transform:matrix(0.221490,0.001550,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.221490,0.001550,-0.001750,0.249994,0,0);}
.me7_c00358{transform:matrix(0.221520,0.003323,-0.003750,0.249972,0,0);-ms-transform:matrix(0.221520,0.003323,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.221520,0.003323,-0.003750,0.249972,0,0);}
.m89_c00358{transform:matrix(0.221645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221645,0.000000,0.000000,0.250000,0,0);}
.mc4_c00358{transform:matrix(0.221675,0.003325,-0.003750,0.249972,0,0);-ms-transform:matrix(0.221675,0.003325,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.221675,0.003325,-0.003750,0.249972,0,0);}
.m39_c00358{transform:matrix(0.222285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222285,0.000000,0.000000,0.250000,0,0);}
.m13_c00358{transform:matrix(0.222449,-0.002224,0.002500,0.249988,0,0);-ms-transform:matrix(0.222449,-0.002224,0.002500,0.249988,0,0);-webkit-transform:matrix(0.222449,-0.002224,0.002500,0.249988,0,0);}
.me2_c00358{transform:matrix(0.222485,0.003337,-0.003750,0.249972,0,0);-ms-transform:matrix(0.222485,0.003337,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.222485,0.003337,-0.003750,0.249972,0,0);}
.mbf_c00358{transform:matrix(0.222580,0.003339,-0.003750,0.249972,0,0);-ms-transform:matrix(0.222580,0.003339,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.222580,0.003339,-0.003750,0.249972,0,0);}
.mc_c00358{transform:matrix(0.222625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222625,0.000000,0.000000,0.250000,0,0);}
.m2f_c00358{transform:matrix(0.222845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222845,0.000000,0.000000,0.250000,0,0);}
.m2b_c00358{transform:matrix(0.223405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223405,0.000000,0.000000,0.250000,0,0);}
.mdc_c00358{transform:matrix(0.224851,0.002923,-0.003250,0.249979,0,0);-ms-transform:matrix(0.224851,0.002923,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.224851,0.002923,-0.003250,0.249979,0,0);}
.mf_c00358{transform:matrix(0.225345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225345,0.000000,0.000000,0.250000,0,0);}
.ma8_c00358{transform:matrix(0.225534,0.001579,-0.001750,0.249994,0,0);-ms-transform:matrix(0.225534,0.001579,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.225534,0.001579,-0.001750,0.249994,0,0);}
.me5_c00358{transform:matrix(0.225590,0.003384,-0.003750,0.249972,0,0);-ms-transform:matrix(0.225590,0.003384,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.225590,0.003384,-0.003750,0.249972,0,0);}
.md9_c00358{transform:matrix(0.226226,0.002941,-0.003250,0.249979,0,0);-ms-transform:matrix(0.226226,0.002941,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.226226,0.002941,-0.003250,0.249979,0,0);}
.m84_c00358{transform:matrix(0.226600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226600,0.000000,0.000000,0.250000,0,0);}
.m63_c00358{transform:matrix(0.227050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227050,0.000000,0.000000,0.250000,0,0);}
.m3f_c00358{transform:matrix(0.227320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227320,0.000000,0.000000,0.250000,0,0);}
.m46_c00358{transform:matrix(0.227943,-0.000912,0.001000,0.249998,0,0);-ms-transform:matrix(0.227943,-0.000912,0.001000,0.249998,0,0);-webkit-transform:matrix(0.227943,-0.000912,0.001000,0.249998,0,0);}
.m86_c00358{transform:matrix(0.227945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227945,0.000000,0.000000,0.250000,0,0);}
.m83_c00358{transform:matrix(0.228565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228565,0.000000,0.000000,0.250000,0,0);}
.mab_c00358{transform:matrix(0.229904,0.001609,-0.001750,0.249994,0,0);-ms-transform:matrix(0.229904,0.001609,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.229904,0.001609,-0.001750,0.249994,0,0);}
.mae_c00358{transform:matrix(0.230004,0.001610,-0.001750,0.249994,0,0);-ms-transform:matrix(0.230004,0.001610,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.230004,0.001610,-0.001750,0.249994,0,0);}
.m37_c00358{transform:matrix(0.230041,-0.002530,0.002750,0.249985,0,0);-ms-transform:matrix(0.230041,-0.002530,0.002750,0.249985,0,0);-webkit-transform:matrix(0.230041,-0.002530,0.002750,0.249985,0,0);}
.m33_c00358{transform:matrix(0.230381,-0.002534,0.002750,0.249985,0,0);-ms-transform:matrix(0.230381,-0.002534,0.002750,0.249985,0,0);-webkit-transform:matrix(0.230381,-0.002534,0.002750,0.249985,0,0);}
.m68_c00358{transform:matrix(0.230785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230785,0.000000,0.000000,0.250000,0,0);}
.m67_c00358{transform:matrix(0.230915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230915,0.000000,0.000000,0.250000,0,0);}
.m51_c00358{transform:matrix(0.230935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230935,0.000000,0.000000,0.250000,0,0);}
.m4c_c00358{transform:matrix(0.231378,-0.000926,0.001000,0.249998,0,0);-ms-transform:matrix(0.231378,-0.000926,0.001000,0.249998,0,0);-webkit-transform:matrix(0.231378,-0.000926,0.001000,0.249998,0,0);}
.ma7_c00358{transform:matrix(0.232029,0.001624,-0.001750,0.249994,0,0);-ms-transform:matrix(0.232029,0.001624,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.232029,0.001624,-0.001750,0.249994,0,0);}
.m9f_c00358{transform:matrix(0.232555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232555,0.000000,0.000000,0.250000,0,0);}
.m35_c00358{transform:matrix(0.233291,-0.002566,0.002750,0.249985,0,0);-ms-transform:matrix(0.233291,-0.002566,0.002750,0.249985,0,0);-webkit-transform:matrix(0.233291,-0.002566,0.002750,0.249985,0,0);}
.m3c_c00358{transform:matrix(0.233445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233445,0.000000,0.000000,0.250000,0,0);}
.m5e_c00358{transform:matrix(0.233720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233720,0.000000,0.000000,0.250000,0,0);}
.mc6_c00358{transform:matrix(0.233833,0.001871,-0.002000,0.249992,0,0);-ms-transform:matrix(0.233833,0.001871,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.233833,0.001871,-0.002000,0.249992,0,0);}
.m41_c00358{transform:matrix(0.234695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234695,0.000000,0.000000,0.250000,0,0);}
.ma1_c00358{transform:matrix(0.234740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234740,0.000000,0.000000,0.250000,0,0);}
.maa_c00358{transform:matrix(0.235454,0.001648,-0.001750,0.249994,0,0);-ms-transform:matrix(0.235454,0.001648,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.235454,0.001648,-0.001750,0.249994,0,0);}
.mc9_c00358{transform:matrix(0.235912,0.001887,-0.002000,0.249992,0,0);-ms-transform:matrix(0.235912,0.001887,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.235912,0.001887,-0.002000,0.249992,0,0);}
.mad_c00358{transform:matrix(0.236334,0.001654,-0.001750,0.249994,0,0);-ms-transform:matrix(0.236334,0.001654,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.236334,0.001654,-0.001750,0.249994,0,0);}
.m3e_c00358{transform:matrix(0.236375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236375,0.000000,0.000000,0.250000,0,0);}
.m7d_c00358{transform:matrix(0.236560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236560,0.000000,0.000000,0.250000,0,0);}
.m59_c00358{transform:matrix(0.236610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236610,0.000000,0.000000,0.250000,0,0);}
.m3b_c00358{transform:matrix(0.236770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236770,0.000000,0.000000,0.250000,0,0);}
.mc8_c00358{transform:matrix(0.237662,0.001901,-0.002000,0.249992,0,0);-ms-transform:matrix(0.237662,0.001901,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.237662,0.001901,-0.002000,0.249992,0,0);}
.m48_c00358{transform:matrix(0.238153,-0.000953,0.001000,0.249998,0,0);-ms-transform:matrix(0.238153,-0.000953,0.001000,0.249998,0,0);-webkit-transform:matrix(0.238153,-0.000953,0.001000,0.249998,0,0);}
.md_c00358{transform:matrix(0.238535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238535,0.000000,0.000000,0.250000,0,0);}
.ma2_c00358{transform:matrix(0.238560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238560,0.000000,0.000000,0.250000,0,0);}
.m4f_c00358{transform:matrix(0.238685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238685,0.000000,0.000000,0.250000,0,0);}
.m55_c00358{transform:matrix(0.238735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238735,0.000000,0.000000,0.250000,0,0);}
.m87_c00358{transform:matrix(0.239540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239540,0.000000,0.000000,0.250000,0,0);}
.m54_c00358{transform:matrix(0.241010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241010,0.000000,0.000000,0.250000,0,0);}
.ma4_c00358{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m10_c00358{transform:matrix(0.242755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242755,0.000000,0.000000,0.250000,0,0);}
.m65_c00358{transform:matrix(0.243050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243050,0.000000,0.000000,0.250000,0,0);}
.m7f_c00358{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m58_c00358{transform:matrix(0.246400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246400,0.000000,0.000000,0.250000,0,0);}
.mcb_c00358{transform:matrix(0.247452,0.001980,-0.002000,0.249992,0,0);-ms-transform:matrix(0.247452,0.001980,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.247452,0.001980,-0.002000,0.249992,0,0);}
.m69_c00358{transform:matrix(0.248802,-0.006966,0.006997,0.249902,0,0);-ms-transform:matrix(0.248802,-0.006966,0.006997,0.249902,0,0);-webkit-transform:matrix(0.248802,-0.006966,0.006997,0.249902,0,0);}
.m22_c00358{transform:matrix(0.250390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250390,0.000000,0.000000,0.250000,0,0);}
.m49_c00358{transform:matrix(0.250393,-0.001002,0.001000,0.249998,0,0);-ms-transform:matrix(0.250393,-0.001002,0.001000,0.249998,0,0);-webkit-transform:matrix(0.250393,-0.001002,0.001000,0.249998,0,0);}
.m2c_c00358{transform:matrix(0.250550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250550,0.000000,0.000000,0.250000,0,0);}
.m85_c00358{transform:matrix(0.250610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250610,0.000000,0.000000,0.250000,0,0);}
.m81_c00358{transform:matrix(0.251875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251875,0.000000,0.000000,0.250000,0,0);}
.m4b_c00358{transform:matrix(0.252673,-0.001011,0.001000,0.249998,0,0);-ms-transform:matrix(0.252673,-0.001011,0.001000,0.249998,0,0);-webkit-transform:matrix(0.252673,-0.001011,0.001000,0.249998,0,0);}
.mca_c00358{transform:matrix(0.253112,0.002025,-0.002000,0.249992,0,0);-ms-transform:matrix(0.253112,0.002025,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.253112,0.002025,-0.002000,0.249992,0,0);}
.m28_c00358{transform:matrix(0.254290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254290,0.000000,0.000000,0.250000,0,0);}
.m60_c00358{transform:matrix(0.254470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254470,0.000000,0.000000,0.250000,0,0);}
.m38_c00358{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.mc5_c00358{transform:matrix(0.255972,0.002048,-0.002000,0.249992,0,0);-ms-transform:matrix(0.255972,0.002048,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.255972,0.002048,-0.002000,0.249992,0,0);}
.m66_c00358{transform:matrix(0.257220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257220,0.000000,0.000000,0.250000,0,0);}
.m61_c00358{transform:matrix(0.257860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257860,0.000000,0.000000,0.250000,0,0);}
.m64_c00358{transform:matrix(0.259405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259405,0.000000,0.000000,0.250000,0,0);}
.m29_c00358{transform:matrix(0.259655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259655,0.000000,0.000000,0.250000,0,0);}
.m6b_c00358{transform:matrix(0.260773,-0.007302,0.006997,0.249902,0,0);-ms-transform:matrix(0.260773,-0.007302,0.006997,0.249902,0,0);-webkit-transform:matrix(0.260773,-0.007302,0.006997,0.249902,0,0);}
.m20_c00358{transform:matrix(0.262515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262515,0.000000,0.000000,0.250000,0,0);}
.m30_c00358{transform:matrix(0.262935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262935,0.000000,0.000000,0.250000,0,0);}
.m23_c00358{transform:matrix(0.263760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263760,0.000000,0.000000,0.250000,0,0);}
.m45_c00358{transform:matrix(0.264798,-0.001059,0.001000,0.249998,0,0);-ms-transform:matrix(0.264798,-0.001059,0.001000,0.249998,0,0);-webkit-transform:matrix(0.264798,-0.001059,0.001000,0.249998,0,0);}
.m6a_c00358{transform:matrix(0.268045,-0.007505,0.006997,0.249902,0,0);-ms-transform:matrix(0.268045,-0.007505,0.006997,0.249902,0,0);-webkit-transform:matrix(0.268045,-0.007505,0.006997,0.249902,0,0);}
.m1f_c00358{transform:matrix(0.278145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278145,0.000000,0.000000,0.250000,0,0);}
.m11_c00358{transform:matrix(0.279535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279535,0.000000,0.000000,0.250000,0,0);}
.me_c00358{transform:matrix(0.286930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286930,0.000000,0.000000,0.250000,0,0);}
.m4e_c00358{transform:matrix(0.302295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302295,0.000000,0.000000,0.250000,0,0);}
.m24_c00358{transform:matrix(0.302530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302530,0.000000,0.000000,0.250000,0,0);}
.m1e_c00358{transform:matrix(0.304625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304625,0.000000,0.000000,0.250000,0,0);}
.m21_c00358{transform:matrix(0.309555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309555,0.000000,0.000000,0.250000,0,0);}
.md7_c00358{transform:matrix(0.321478,0.004179,-0.003250,0.249979,0,0);-ms-transform:matrix(0.321478,0.004179,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.321478,0.004179,-0.003250,0.249979,0,0);}
.m25_c00358{transform:matrix(0.347965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347965,0.000000,0.000000,0.250000,0,0);}
.me6_c00358{transform:matrix(0.351935,0.005279,-0.003750,0.249972,0,0);-ms-transform:matrix(0.351935,0.005279,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.351935,0.005279,-0.003750,0.249972,0,0);}
.mcc_c00358{transform:matrix(0.368683,0.004424,-0.003000,0.249982,0,0);-ms-transform:matrix(0.368683,0.004424,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.368683,0.004424,-0.003000,0.249982,0,0);}
.m1b_c00358{transform:matrix(0.402620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402620,0.000000,0.000000,0.250000,0,0);}
.mb5_c00358{transform:matrix(0.425330,0.002977,-0.001750,0.249994,0,0);-ms-transform:matrix(0.425330,0.002977,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.425330,0.002977,-0.001750,0.249994,0,0);}
.m1_c00358{transform:matrix(0.484355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484355,0.000000,0.000000,0.250000,0,0);}
.m90_c00358{transform:matrix(0.641545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.641545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.641545,0.000000,0.000000,0.250000,0,0);}
.m99_c00358{transform:matrix(0.649000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.649000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.649000,0.000000,0.000000,0.250000,0,0);}
.v0_c00358{vertical-align:0.000000px;}
.ls0_c00358{letter-spacing:0.000000px;}
.sc__c00358{text-shadow:none;}
.sc0_c00358{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__c00358{-webkit-text-stroke:0px transparent;}
.sc0_c00358{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00358{word-spacing:0.000000px;}
._0_c00358{margin-left:-30.443555px;}
.fc0_c00358{color:transparent;}
.fs4_c00358{font-size:66.000000px;}
.fs8_c00358{font-size:66.025867px;}
.fs2_c00358{font-size:72.000000px;}
.fs0_c00358{font-size:78.000000px;}
.fs7_c00358{font-size:78.000624px;}
.fs10_c00358{font-size:78.002496px;}
.fs6_c00358{font-size:84.000000px;}
.fsd_c00358{font-size:84.002058px;}
.fs5_c00358{font-size:84.005082px;}
.fs12_c00358{font-size:90.007605px;}
.fs13_c00358{font-size:90.010124px;}
.fs11_c00358{font-size:102.007344px;}
.fs9_c00358{font-size:102.039976px;}
.fsb_c00358{font-size:114.000000px;}
.fsa_c00358{font-size:114.044679px;}
.fsc_c00358{font-size:120.000000px;}
.fsf_c00358{font-size:120.013499px;}
.fs3_c00358{font-size:138.006900px;}
.fse_c00358{font-size:156.003822px;}
.fs1_c00358{font-size:162.000000px;}
.y0_c00358{bottom:0.000000px;}
.y93_c00358{bottom:173.803500px;}
.y92_c00358{bottom:175.164502px;}
.y91_c00358{bottom:177.007522px;}
.y90_c00358{bottom:177.333908px;}
.y8f_c00358{bottom:179.143133px;}
.y8e_c00358{bottom:179.649135px;}
.y8d_c00358{bottom:180.147240px;}
.y8c_c00358{bottom:181.622115px;}
.y8b_c00358{bottom:182.433713px;}
.y8a_c00358{bottom:183.060000px;}
.y89_c00358{bottom:212.423364px;}
.y88_c00358{bottom:213.013317px;}
.y87_c00358{bottom:213.448655px;}
.y86_c00358{bottom:214.877556px;}
.y85_c00358{bottom:215.715101px;}
.y84_c00358{bottom:216.176432px;}
.y83_c00358{bottom:217.899744px;}
.y82_c00358{bottom:218.179199px;}
.y81_c00358{bottom:221.133000px;}
.y80_c00358{bottom:249.145392px;}
.y7f_c00358{bottom:249.693258px;}
.y7e_c00358{bottom:250.091742px;}
.y7d_c00358{bottom:251.021550px;}
.y7c_c00358{bottom:251.300172px;}
.y7b_c00358{bottom:252.104214px;}
.y7a_c00358{bottom:252.622740px;}
.y79_c00358{bottom:253.821684px;}
.y78_c00358{bottom:255.240462px;}
.y77_c00358{bottom:255.754380px;}
.y76_c00358{bottom:257.853000px;}
.y75_c00358{bottom:286.979292px;}
.y74_c00358{bottom:287.607948px;}
.y73_c00358{bottom:287.964348px;}
.y72_c00358{bottom:288.316296px;}
.y71_c00358{bottom:288.646440px;}
.y70_c00358{bottom:289.107096px;}
.y6f_c00358{bottom:290.079000px;}
.y6e_c00358{bottom:310.875143px;}
.y6d_c00358{bottom:312.191235px;}
.y6c_c00358{bottom:312.709568px;}
.y6b_c00358{bottom:313.701705px;}
.y6a_c00358{bottom:314.697893px;}
.y69_c00358{bottom:315.536153px;}
.y68_c00358{bottom:316.054485px;}
.y67_c00358{bottom:316.848195px;}
.y66_c00358{bottom:318.362715px;}
.y65_c00358{bottom:320.035185px;}
.y64_c00358{bottom:320.611477px;}
.y63_c00358{bottom:323.190000px;}
.y62_c00358{bottom:348.104356px;}
.y61_c00358{bottom:349.004652px;}
.y60_c00358{bottom:349.601920px;}
.y5f_c00358{bottom:350.030479px;}
.y5e_c00358{bottom:351.580267px;}
.y5d_c00358{bottom:352.169235px;}
.y5c_c00358{bottom:353.601823px;}
.y5b_c00358{bottom:354.047301px;}
.y5a_c00358{bottom:354.878968px;}
.y59_c00358{bottom:355.165024px;}
.y58_c00358{bottom:355.860622px;}
.y57_c00358{bottom:426.720967px;}
.y56_c00358{bottom:427.350306px;}
.y55_c00358{bottom:427.580991px;}
.y54_c00358{bottom:428.127295px;}
.y53_c00358{bottom:428.752927px;}
.y52_c00358{bottom:429.208480px;}
.y51_c00358{bottom:429.835929px;}
.y50_c00358{bottom:430.675057px;}
.y4f_c00358{bottom:430.831318px;}
.y4e_c00358{bottom:431.202000px;}
.y4d_c00358{bottom:464.341500px;}
.y4c_c00358{bottom:492.210000px;}
.y4b_c00358{bottom:530.010000px;}
.y4a_c00358{bottom:570.894000px;}
.y49_c00358{bottom:606.325500px;}
.y48_c00358{bottom:636.622518px;}
.y47_c00358{bottom:636.623154px;}
.y45_c00358{bottom:636.623166px;}
.y46_c00358{bottom:636.623274px;}
.y44_c00358{bottom:636.623802px;}
.y43_c00358{bottom:636.624438px;}
.y42_c00358{bottom:636.624948px;}
.y41_c00358{bottom:636.624966px;}
.y40_c00358{bottom:636.625476px;}
.y3f_c00358{bottom:677.273142px;}
.y3e_c00358{bottom:678.501660px;}
.y3d_c00358{bottom:678.844128px;}
.y3c_c00358{bottom:679.068060px;}
.y3b_c00358{bottom:679.844682px;}
.y3a_c00358{bottom:681.047700px;}
.y39_c00358{bottom:682.587486px;}
.y38_c00358{bottom:682.812894px;}
.y37_c00358{bottom:683.358438px;}
.y34_c00358{bottom:712.810500px;}
.y35_c00358{bottom:713.727234px;}
.y36_c00358{bottom:714.975012px;}
.y29_c00358{bottom:742.231500px;}
.y2a_c00358{bottom:742.710000px;}
.y2b_c00358{bottom:742.924500px;}
.y2c_c00358{bottom:743.991000px;}
.y2d_c00358{bottom:744.913500px;}
.y2e_c00358{bottom:745.293000px;}
.y2f_c00358{bottom:745.684500px;}
.y30_c00358{bottom:746.785500px;}
.y31_c00358{bottom:746.985000px;}
.y32_c00358{bottom:747.895500px;}
.y33_c00358{bottom:748.306500px;}
.y28_c00358{bottom:820.596000px;}
.y27_c00358{bottom:857.013000px;}
.y1d_c00358{bottom:889.650000px;}
.y1e_c00358{bottom:890.510682px;}
.y1f_c00358{bottom:891.127380px;}
.y20_c00358{bottom:891.314082px;}
.y21_c00358{bottom:891.478374px;}
.y22_c00358{bottom:891.750516px;}
.y23_c00358{bottom:892.103670px;}
.y24_c00358{bottom:892.236516px;}
.y25_c00358{bottom:892.683576px;}
.y26_c00358{bottom:892.907172px;}
.y1c_c00358{bottom:928.228500px;}
.y15_c00358{bottom:960.661500px;}
.y16_c00358{bottom:961.012141px;}
.y17_c00358{bottom:961.377567px;}
.y18_c00358{bottom:962.108269px;}
.y19_c00358{bottom:962.467623px;}
.y1a_c00358{bottom:963.438433px;}
.y1b_c00358{bottom:963.798595px;}
.y14_c00358{bottom:998.355000px;}
.y13_c00358{bottom:1034.308500px;}
.y9_c00358{bottom:1059.916500px;}
.ya_c00358{bottom:1060.144905px;}
.yb_c00358{bottom:1060.560690px;}
.yc_c00358{bottom:1060.976475px;}
.yd_c00358{bottom:1061.511045px;}
.ye_c00358{bottom:1061.956530px;}
.yf_c00358{bottom:1062.639600px;}
.y10_c00358{bottom:1063.292970px;}
.y11_c00358{bottom:1064.183925px;}
.y12_c00358{bottom:1064.510610px;}
.y3_c00358{bottom:1103.491500px;}
.y4_c00358{bottom:1103.815500px;}
.y5_c00358{bottom:1104.142500px;}
.y6_c00358{bottom:1105.248000px;}
.y7_c00358{bottom:1105.579500px;}
.y8_c00358{bottom:1106.011500px;}
.y2_c00358{bottom:1133.556000px;}
.y1_c00358{bottom:1169.337000px;}
.h6_c00358{height:66.000000px;}
.ha_c00358{height:66.025867px;}
.h4_c00358{height:72.000000px;}
.h2_c00358{height:78.000000px;}
.h9_c00358{height:78.000624px;}
.h12_c00358{height:78.002496px;}
.h8_c00358{height:84.000000px;}
.hf_c00358{height:84.002058px;}
.h7_c00358{height:84.005082px;}
.h14_c00358{height:90.007605px;}
.h15_c00358{height:90.010124px;}
.h13_c00358{height:102.007344px;}
.hb_c00358{height:102.039976px;}
.hd_c00358{height:114.000000px;}
.hc_c00358{height:114.044679px;}
.he_c00358{height:120.000000px;}
.h11_c00358{height:120.013499px;}
.h5_c00358{height:138.006900px;}
.h10_c00358{height:156.003822px;}
.h3_c00358{height:162.000000px;}
.h0_c00358{height:1251.450000px;}
.h1_c00358{height:1251.750000px;}
.w0_c00358{width:915.000000px;}
.x0_c00358{left:0.000000px;}
.x1c_c00358{left:1.890000px;}
.x67_c00358{left:4.050000px;}
.x39_c00358{left:7.917000px;}
.x2_c00358{left:146.070000px;}
.x2f_c00358{left:147.690000px;}
.x48_c00358{left:149.458500px;}
.x69_c00358{left:151.470000px;}
.x75_c00358{left:152.773500px;}
.x9c_c00358{left:156.571500px;}
.x14_c00358{left:158.661000px;}
.x59_c00358{left:173.052672px;}
.x82_c00358{left:176.188500px;}
.x8e_c00358{left:177.628500px;}
.x15_c00358{left:181.501500px;}
.x5a_c00358{left:191.959998px;}
.x9d_c00358{left:198.324000px;}
.x3_c00358{left:200.070000px;}
.x42_c00358{left:201.960000px;}
.x52_c00358{left:203.853066px;}
.x6a_c00358{left:205.200000px;}
.x7c_c00358{left:206.740411px;}
.x83_c00358{left:214.608000px;}
.x89_c00358{left:217.245000px;}
.x4_c00358{left:220.590000px;}
.xe_c00358{left:221.808000px;}
.x16_c00358{left:223.080000px;}
.x30_c00358{left:224.370000px;}
.x49_c00358{left:226.455000px;}
.x68_c00358{left:227.880000px;}
.x95_c00358{left:229.960500px;}
.x96_c00358{left:251.457000px;}
.xf_c00358{left:254.223000px;}
.x2b_c00358{left:255.315000px;}
.x50_c00358{left:258.561000px;}
.x5_c00358{left:265.410000px;}
.x10_c00358{left:286.978500px;}
.x2c_c00358{left:288.535500px;}
.x7d_c00358{left:292.697299px;}
.x51_c00358{left:303.124500px;}
.x6_c00358{left:316.980000px;}
.x17_c00358{left:318.115500px;}
.x5b_c00358{left:324.312696px;}
.x6e_c00358{left:325.350000px;}
.x7e_c00358{left:326.978361px;}
.x31_c00358{left:332.640000px;}
.x8a_c00358{left:338.733000px;}
.x23_c00358{left:342.630000px;}
.x4a_c00358{left:344.985000px;}
.x76_c00358{left:347.926500px;}
.x7_c00358{left:351.540000px;}
.x1d_c00358{left:353.970000px;}
.x5c_c00358{left:356.726106px;}
.x6b_c00358{left:358.830000px;}
.x18_c00358{left:362.664000px;}
.x41_c00358{left:366.660000px;}
.x60_c00358{left:368.280000px;}
.x3a_c00358{left:377.262000px;}
.x53_c00358{left:380.355222px;}
.x6f_c00358{left:381.510000px;}
.x97_c00358{left:384.019500px;}
.x2d_c00358{left:387.631500px;}
.x5d_c00358{left:389.139516px;}
.x72_c00358{left:393.120000px;}
.x8b_c00358{left:396.315000px;}
.x11_c00358{left:397.594500px;}
.x6d_c00358{left:400.410000px;}
.x6c_c00358{left:404.190000px;}
.x9e_c00358{left:417.696000px;}
.x1_c00358{left:418.770000px;}
.x1e_c00358{left:419.850000px;}
.x32_c00358{left:420.930000px;}
.x70_c00358{left:422.820000px;}
.x3b_c00358{left:423.937500px;}
.x84_c00358{left:427.074000px;}
.x12_c00358{left:430.801500px;}
.x43_c00358{left:433.080000px;}
.x77_c00358{left:437.562000px;}
.x8f_c00358{left:438.598500px;}
.x24_c00358{left:442.800000px;}
.x4b_c00358{left:447.493500px;}
.x8_c00358{left:451.170000px;}
.x1f_c00358{left:452.790000px;}
.x61_c00358{left:457.650000px;}
.x33_c00358{left:465.210000px;}
.x13_c00358{left:473.997000px;}
.x25_c00358{left:475.470000px;}
.x85_c00358{left:479.988000px;}
.x7f_c00358{left:482.479830px;}
.x98_c00358{left:483.933000px;}
.x4c_c00358{left:489.682500px;}
.x73_c00358{left:491.670000px;}
.x19_c00358{left:496.308000px;}
.x44_c00358{left:498.420000px;}
.x54_c00358{left:500.589570px;}
.x62_c00358{left:502.740000px;}
.x2e_c00358{left:508.629000px;}
.x86_c00358{left:514.543500px;}
.x26_c00358{left:519.750000px;}
.x8c_c00358{left:526.126500px;}
.x3c_c00358{left:533.046000px;}
.x9f_c00358{left:538.311000px;}
.x9_c00358{left:540.810000px;}
.x90_c00358{left:548.812500px;}
.xa0_c00358{left:560.070000px;}
.x20_c00358{left:564.030000px;}
.x5e_c00358{left:566.599536px;}
.x74_c00358{left:569.700000px;}
.x91_c00358{left:572.031000px;}
.xa_c00358{left:575.100000px;}
.x34_c00358{left:576.180000px;}
.x55_c00358{left:578.310684px;}
.x1a_c00358{left:585.403500px;}
.x78_c00358{left:592.017000px;}
.x99_c00358{left:593.848500px;}
.x21_c00358{left:597.240000px;}
.x5f_c00358{left:599.012946px;}
.x56_c00358{left:600.765540px;}
.x63_c00358{left:601.830000px;}
.x8d_c00358{left:604.708500px;}
.x27_c00358{left:611.280000px;}
.x1b_c00358{left:618.072000px;}
.xb_c00358{left:619.920000px;}
.x3d_c00358{left:621.334500px;}
.x71_c00358{left:624.240000px;}
.x9a_c00358{left:627.336000px;}
.x45_c00358{left:632.340000px;}
.x57_c00358{left:635.070996px;}
.x87_c00358{left:636.840000px;}
.x22_c00358{left:640.980000px;}
.x64_c00358{left:645.300000px;}
.x92_c00358{left:649.515000px;}
.x28_c00358{left:653.130000px;}
.x3e_c00358{left:654.546000px;}
.x35_c00358{left:655.830000px;}
.x79_c00358{left:670.060500px;}
.x9b_c00358{left:672.717000px;}
.x4d_c00358{left:677.572500px;}
.x80_c00358{left:680.488004px;}
.x93_c00358{left:682.722000px;}
.x29_c00358{left:686.610000px;}
.xc_c00358{left:695.790000px;}
.x7a_c00358{left:703.015500px;}
.x36_c00358{left:708.750000px;}
.x2a_c00358{left:720.630000px;}
.x65_c00358{left:724.410000px;}
.x94_c00358{left:728.377500px;}
.x88_c00358{left:737.538000px;}
.xd_c00358{left:743.850000px;}
.x81_c00358{left:749.741595px;}
.x58_c00358{left:757.933116px;}
.x3f_c00358{left:766.311000px;}
.x66_c00358{left:769.230000px;}
.xa1_c00358{left:773.671500px;}
.x4e_c00358{left:778.812000px;}
.x37_c00358{left:788.130000px;}
.x7b_c00358{left:792.921000px;}
.x46_c00358{left:799.740000px;}
.x38_c00358{left:821.070000px;}
.x40_c00358{left:822.210000px;}
.x4f_c00358{left:824.431500px;}
.x47_c00358{left:833.760000px;}
@media print{
.v0_c00358{vertical-align:0.000000pt;}
.ls0_c00358{letter-spacing:0.000000pt;}
.ws0_c00358{word-spacing:0.000000pt;}
._0_c00358{margin-left:-27.060938pt;}
.fs4_c00358{font-size:58.666667pt;}
.fs8_c00358{font-size:58.689659pt;}
.fs2_c00358{font-size:64.000000pt;}
.fs0_c00358{font-size:69.333333pt;}
.fs7_c00358{font-size:69.333888pt;}
.fs10_c00358{font-size:69.335552pt;}
.fs6_c00358{font-size:74.666667pt;}
.fsd_c00358{font-size:74.668496pt;}
.fs5_c00358{font-size:74.671184pt;}
.fs12_c00358{font-size:80.006760pt;}
.fs13_c00358{font-size:80.008999pt;}
.fs11_c00358{font-size:90.673194pt;}
.fs9_c00358{font-size:90.702201pt;}
.fsb_c00358{font-size:101.333333pt;}
.fsa_c00358{font-size:101.373048pt;}
.fsc_c00358{font-size:106.666667pt;}
.fsf_c00358{font-size:106.678666pt;}
.fs3_c00358{font-size:122.672800pt;}
.fse_c00358{font-size:138.670064pt;}
.fs1_c00358{font-size:144.000000pt;}
.y0_c00358{bottom:0.000000pt;}
.y93_c00358{bottom:154.492000pt;}
.y92_c00358{bottom:155.701780pt;}
.y91_c00358{bottom:157.340020pt;}
.y90_c00358{bottom:157.630140pt;}
.y8f_c00358{bottom:159.238340pt;}
.y8e_c00358{bottom:159.688120pt;}
.y8d_c00358{bottom:160.130880pt;}
.y8c_c00358{bottom:161.441880pt;}
.y8b_c00358{bottom:162.163300pt;}
.y8a_c00358{bottom:162.720000pt;}
.y89_c00358{bottom:188.820768pt;}
.y88_c00358{bottom:189.345171pt;}
.y87_c00358{bottom:189.732137pt;}
.y86_c00358{bottom:191.002272pt;}
.y85_c00358{bottom:191.746756pt;}
.y84_c00358{bottom:192.156828pt;}
.y83_c00358{bottom:193.688661pt;}
.y82_c00358{bottom:193.937065pt;}
.y81_c00358{bottom:196.562667pt;}
.y80_c00358{bottom:221.462571pt;}
.y7f_c00358{bottom:221.949563pt;}
.y7e_c00358{bottom:222.303771pt;}
.y7d_c00358{bottom:223.130267pt;}
.y7c_c00358{bottom:223.377931pt;}
.y7b_c00358{bottom:224.092635pt;}
.y7a_c00358{bottom:224.553547pt;}
.y79_c00358{bottom:225.619275pt;}
.y78_c00358{bottom:226.880411pt;}
.y77_c00358{bottom:227.337227pt;}
.y76_c00358{bottom:229.202667pt;}
.y75_c00358{bottom:255.092704pt;}
.y74_c00358{bottom:255.651509pt;}
.y73_c00358{bottom:255.968309pt;}
.y72_c00358{bottom:256.281152pt;}
.y71_c00358{bottom:256.574613pt;}
.y70_c00358{bottom:256.984085pt;}
.y6f_c00358{bottom:257.848000pt;}
.y6e_c00358{bottom:276.333460pt;}
.y6d_c00358{bottom:277.503320pt;}
.y6c_c00358{bottom:277.964060pt;}
.y6b_c00358{bottom:278.845960pt;}
.y6a_c00358{bottom:279.731460pt;}
.y69_c00358{bottom:280.476580pt;}
.y68_c00358{bottom:280.937320pt;}
.y67_c00358{bottom:281.642840pt;}
.y66_c00358{bottom:282.989080pt;}
.y65_c00358{bottom:284.475720pt;}
.y64_c00358{bottom:284.987980pt;}
.y63_c00358{bottom:287.280000pt;}
.y62_c00358{bottom:309.426095pt;}
.y61_c00358{bottom:310.226357pt;}
.y60_c00358{bottom:310.757263pt;}
.y5f_c00358{bottom:311.138204pt;}
.y5e_c00358{bottom:312.515793pt;}
.y5d_c00358{bottom:313.039320pt;}
.y5c_c00358{bottom:314.312732pt;}
.y5b_c00358{bottom:314.708712pt;}
.y5a_c00358{bottom:315.447972pt;}
.y59_c00358{bottom:315.702244pt;}
.y58_c00358{bottom:316.320553pt;}
.y57_c00358{bottom:379.307527pt;}
.y56_c00358{bottom:379.866939pt;}
.y55_c00358{bottom:380.071992pt;}
.y54_c00358{bottom:380.557596pt;}
.y53_c00358{bottom:381.113713pt;}
.y52_c00358{bottom:381.518649pt;}
.y51_c00358{bottom:382.076381pt;}
.y50_c00358{bottom:382.822273pt;}
.y4f_c00358{bottom:382.961172pt;}
.y4e_c00358{bottom:383.290667pt;}
.y4d_c00358{bottom:412.748000pt;}
.y4c_c00358{bottom:437.520000pt;}
.y4b_c00358{bottom:471.120000pt;}
.y4a_c00358{bottom:507.461333pt;}
.y49_c00358{bottom:538.956000pt;}
.y48_c00358{bottom:565.886683pt;}
.y47_c00358{bottom:565.887248pt;}
.y45_c00358{bottom:565.887259pt;}
.y46_c00358{bottom:565.887355pt;}
.y44_c00358{bottom:565.887824pt;}
.y43_c00358{bottom:565.888389pt;}
.y42_c00358{bottom:565.888843pt;}
.y41_c00358{bottom:565.888859pt;}
.y40_c00358{bottom:565.889312pt;}
.y3f_c00358{bottom:602.020571pt;}
.y3e_c00358{bottom:603.112587pt;}
.y3d_c00358{bottom:603.417003pt;}
.y3c_c00358{bottom:603.616053pt;}
.y3b_c00358{bottom:604.306384pt;}
.y3a_c00358{bottom:605.375733pt;}
.y39_c00358{bottom:606.744432pt;}
.y38_c00358{bottom:606.944795pt;}
.y37_c00358{bottom:607.429723pt;}
.y34_c00358{bottom:633.609333pt;}
.y35_c00358{bottom:634.424208pt;}
.y36_c00358{bottom:635.533344pt;}
.y29_c00358{bottom:659.761333pt;}
.y2a_c00358{bottom:660.186667pt;}
.y2b_c00358{bottom:660.377333pt;}
.y2c_c00358{bottom:661.325333pt;}
.y2d_c00358{bottom:662.145333pt;}
.y2e_c00358{bottom:662.482667pt;}
.y2f_c00358{bottom:662.830667pt;}
.y30_c00358{bottom:663.809333pt;}
.y31_c00358{bottom:663.986667pt;}
.y32_c00358{bottom:664.796000pt;}
.y33_c00358{bottom:665.161333pt;}
.y28_c00358{bottom:729.418667pt;}
.y27_c00358{bottom:761.789333pt;}
.y1d_c00358{bottom:790.800000pt;}
.y1e_c00358{bottom:791.565051pt;}
.y1f_c00358{bottom:792.113227pt;}
.y20_c00358{bottom:792.279184pt;}
.y21_c00358{bottom:792.425221pt;}
.y22_c00358{bottom:792.667125pt;}
.y23_c00358{bottom:792.981040pt;}
.y24_c00358{bottom:793.099125pt;}
.y25_c00358{bottom:793.496512pt;}
.y26_c00358{bottom:793.695264pt;}
.y1c_c00358{bottom:825.092000pt;}
.y15_c00358{bottom:853.921333pt;}
.y16_c00358{bottom:854.233015pt;}
.y17_c00358{bottom:854.557837pt;}
.y18_c00358{bottom:855.207351pt;}
.y19_c00358{bottom:855.526776pt;}
.y1a_c00358{bottom:856.389719pt;}
.y1b_c00358{bottom:856.709863pt;}
.y14_c00358{bottom:887.426667pt;}
.y13_c00358{bottom:919.385333pt;}
.y9_c00358{bottom:942.148000pt;}
.ya_c00358{bottom:942.351027pt;}
.yb_c00358{bottom:942.720613pt;}
.yc_c00358{bottom:943.090200pt;}
.yd_c00358{bottom:943.565373pt;}
.ye_c00358{bottom:943.961360pt;}
.yf_c00358{bottom:944.568533pt;}
.y10_c00358{bottom:945.149307pt;}
.y11_c00358{bottom:945.941267pt;}
.y12_c00358{bottom:946.231653pt;}
.y3_c00358{bottom:980.881333pt;}
.y4_c00358{bottom:981.169333pt;}
.y5_c00358{bottom:981.460000pt;}
.y6_c00358{bottom:982.442667pt;}
.y7_c00358{bottom:982.737333pt;}
.y8_c00358{bottom:983.121333pt;}
.y2_c00358{bottom:1007.605333pt;}
.y1_c00358{bottom:1039.410667pt;}
.h6_c00358{height:58.666667pt;}
.ha_c00358{height:58.689659pt;}
.h4_c00358{height:64.000000pt;}
.h2_c00358{height:69.333333pt;}
.h9_c00358{height:69.333888pt;}
.h12_c00358{height:69.335552pt;}
.h8_c00358{height:74.666667pt;}
.hf_c00358{height:74.668496pt;}
.h7_c00358{height:74.671184pt;}
.h14_c00358{height:80.006760pt;}
.h15_c00358{height:80.008999pt;}
.h13_c00358{height:90.673194pt;}
.hb_c00358{height:90.702201pt;}
.hd_c00358{height:101.333333pt;}
.hc_c00358{height:101.373048pt;}
.he_c00358{height:106.666667pt;}
.h11_c00358{height:106.678666pt;}
.h5_c00358{height:122.672800pt;}
.h10_c00358{height:138.670064pt;}
.h3_c00358{height:144.000000pt;}
.h0_c00358{height:1112.400000pt;}
.h1_c00358{height:1112.666667pt;}
.w0_c00358{width:813.333333pt;}
.x0_c00358{left:0.000000pt;}
.x1c_c00358{left:1.680000pt;}
.x67_c00358{left:3.600000pt;}
.x39_c00358{left:7.037333pt;}
.x2_c00358{left:129.840000pt;}
.x2f_c00358{left:131.280000pt;}
.x48_c00358{left:132.852000pt;}
.x69_c00358{left:134.640000pt;}
.x75_c00358{left:135.798667pt;}
.x9c_c00358{left:139.174667pt;}
.x14_c00358{left:141.032000pt;}
.x59_c00358{left:153.824597pt;}
.x82_c00358{left:156.612000pt;}
.x8e_c00358{left:157.892000pt;}
.x15_c00358{left:161.334667pt;}
.x5a_c00358{left:170.631109pt;}
.x9d_c00358{left:176.288000pt;}
.x3_c00358{left:177.840000pt;}
.x42_c00358{left:179.520000pt;}
.x52_c00358{left:181.202725pt;}
.x6a_c00358{left:182.400000pt;}
.x7c_c00358{left:183.769255pt;}
.x83_c00358{left:190.762667pt;}
.x89_c00358{left:193.106667pt;}
.x4_c00358{left:196.080000pt;}
.xe_c00358{left:197.162667pt;}
.x16_c00358{left:198.293333pt;}
.x30_c00358{left:199.440000pt;}
.x49_c00358{left:201.293333pt;}
.x68_c00358{left:202.560000pt;}
.x95_c00358{left:204.409333pt;}
.x96_c00358{left:223.517333pt;}
.xf_c00358{left:225.976000pt;}
.x2b_c00358{left:226.946667pt;}
.x50_c00358{left:229.832000pt;}
.x5_c00358{left:235.920000pt;}
.x10_c00358{left:255.092000pt;}
.x2c_c00358{left:256.476000pt;}
.x7d_c00358{left:260.175377pt;}
.x51_c00358{left:269.444000pt;}
.x6_c00358{left:281.760000pt;}
.x17_c00358{left:282.769333pt;}
.x5b_c00358{left:288.277952pt;}
.x6e_c00358{left:289.200000pt;}
.x7e_c00358{left:290.647432pt;}
.x31_c00358{left:295.680000pt;}
.x8a_c00358{left:301.096000pt;}
.x23_c00358{left:304.560000pt;}
.x4a_c00358{left:306.653333pt;}
.x76_c00358{left:309.268000pt;}
.x7_c00358{left:312.480000pt;}
.x1d_c00358{left:314.640000pt;}
.x5c_c00358{left:317.089872pt;}
.x6b_c00358{left:318.960000pt;}
.x18_c00358{left:322.368000pt;}
.x41_c00358{left:325.920000pt;}
.x60_c00358{left:327.360000pt;}
.x3a_c00358{left:335.344000pt;}
.x53_c00358{left:338.093531pt;}
.x6f_c00358{left:339.120000pt;}
.x97_c00358{left:341.350667pt;}
.x2d_c00358{left:344.561333pt;}
.x5d_c00358{left:345.901792pt;}
.x72_c00358{left:349.440000pt;}
.x8b_c00358{left:352.280000pt;}
.x11_c00358{left:353.417333pt;}
.x6d_c00358{left:355.920000pt;}
.x6c_c00358{left:359.280000pt;}
.x9e_c00358{left:371.285333pt;}
.x1_c00358{left:372.240000pt;}
.x1e_c00358{left:373.200000pt;}
.x32_c00358{left:374.160000pt;}
.x70_c00358{left:375.840000pt;}
.x3b_c00358{left:376.833333pt;}
.x84_c00358{left:379.621333pt;}
.x12_c00358{left:382.934667pt;}
.x43_c00358{left:384.960000pt;}
.x77_c00358{left:388.944000pt;}
.x8f_c00358{left:389.865333pt;}
.x24_c00358{left:393.600000pt;}
.x4b_c00358{left:397.772000pt;}
.x8_c00358{left:401.040000pt;}
.x1f_c00358{left:402.480000pt;}
.x61_c00358{left:406.800000pt;}
.x33_c00358{left:413.520000pt;}
.x13_c00358{left:421.330667pt;}
.x25_c00358{left:422.640000pt;}
.x85_c00358{left:426.656000pt;}
.x7f_c00358{left:428.870960pt;}
.x98_c00358{left:430.162667pt;}
.x4c_c00358{left:435.273333pt;}
.x73_c00358{left:437.040000pt;}
.x19_c00358{left:441.162667pt;}
.x44_c00358{left:443.040000pt;}
.x54_c00358{left:444.968507pt;}
.x62_c00358{left:446.880000pt;}
.x2e_c00358{left:452.114667pt;}
.x86_c00358{left:457.372000pt;}
.x26_c00358{left:462.000000pt;}
.x8c_c00358{left:467.668000pt;}
.x3c_c00358{left:473.818667pt;}
.x9f_c00358{left:478.498667pt;}
.x9_c00358{left:480.720000pt;}
.x90_c00358{left:487.833333pt;}
.xa0_c00358{left:497.840000pt;}
.x20_c00358{left:501.360000pt;}
.x5e_c00358{left:503.644032pt;}
.x74_c00358{left:506.400000pt;}
.x91_c00358{left:508.472000pt;}
.xa_c00358{left:511.200000pt;}
.x34_c00358{left:512.160000pt;}
.x55_c00358{left:514.053941pt;}
.x1a_c00358{left:520.358667pt;}
.x78_c00358{left:526.237333pt;}
.x99_c00358{left:527.865333pt;}
.x21_c00358{left:530.880000pt;}
.x5f_c00358{left:532.455952pt;}
.x56_c00358{left:534.013813pt;}
.x63_c00358{left:534.960000pt;}
.x8d_c00358{left:537.518667pt;}
.x27_c00358{left:543.360000pt;}
.x1b_c00358{left:549.397333pt;}
.xb_c00358{left:551.040000pt;}
.x3d_c00358{left:552.297333pt;}
.x71_c00358{left:554.880000pt;}
.x9a_c00358{left:557.632000pt;}
.x45_c00358{left:562.080000pt;}
.x57_c00358{left:564.507552pt;}
.x87_c00358{left:566.080000pt;}
.x22_c00358{left:569.760000pt;}
.x64_c00358{left:573.600000pt;}
.x92_c00358{left:577.346667pt;}
.x28_c00358{left:580.560000pt;}
.x3e_c00358{left:581.818667pt;}
.x35_c00358{left:582.960000pt;}
.x79_c00358{left:595.609333pt;}
.x9b_c00358{left:597.970667pt;}
.x4d_c00358{left:602.286667pt;}
.x80_c00358{left:604.878225pt;}
.x93_c00358{left:606.864000pt;}
.x29_c00358{left:610.320000pt;}
.xc_c00358{left:618.480000pt;}
.x7a_c00358{left:624.902667pt;}
.x36_c00358{left:630.000000pt;}
.x2a_c00358{left:640.560000pt;}
.x65_c00358{left:643.920000pt;}
.x94_c00358{left:647.446667pt;}
.x88_c00358{left:655.589333pt;}
.xd_c00358{left:661.200000pt;}
.x81_c00358{left:666.436973pt;}
.x58_c00358{left:673.718325pt;}
.x3f_c00358{left:681.165333pt;}
.x66_c00358{left:683.760000pt;}
.xa1_c00358{left:687.708000pt;}
.x4e_c00358{left:692.277333pt;}
.x37_c00358{left:700.560000pt;}
.x7b_c00358{left:704.818667pt;}
.x46_c00358{left:710.880000pt;}
.x38_c00358{left:729.840000pt;}
.x40_c00358{left:730.853333pt;}
.x4f_c00358{left:732.828000pt;}
.x47_c00358{left:741.120000pt;}
}





/* 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_c00359 {
    display:none;
  }
  .loading-indicator_c00359.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00359 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_c00359 { 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_c00359" -> "#page-container .classname_c00359")
 */
.pf_c00359 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00359 { /* 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_c00359.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00359 { /* 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_c00359 { /* 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_c00359 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00359 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00359 {overflow:visible;}
  }
}
.c_c00359 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00359 { /* 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_c00359:after { /* webkit #35443 */
  content: '';
}
.t_c00359:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00359 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 */
}
.__c00359 { /* 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_c00359 { /* info for Javascript */
  display:none;
}
.l_c00359 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00359 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00359 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00359: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_c00359 {
    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_c00359.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00359.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_c00359 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00359{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00359;src:url('chunks/assets/font_53ec0c54e60da7c2d414b553.woff2')format("woff");}.ff1_c00359{font-family:ff1_c00359;line-height:1.000000;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;}
.m6d_c00359{transform:matrix(0.015910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.015910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.015910,0.000000,0.000000,0.250000,0,0);}
.m2a_c00359{transform:matrix(0.020615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.020615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.020615,0.000000,0.000000,0.250000,0,0);}
.md7_c00359{transform:matrix(0.028460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.028460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.028460,0.000000,0.000000,0.250000,0,0);}
.m66_c00359{transform:matrix(0.031816,0.000477,-0.003750,0.249972,0,0);-ms-transform:matrix(0.031816,0.000477,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.031816,0.000477,-0.003750,0.249972,0,0);}
.m103_c00359{transform:matrix(0.031820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.031820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.031820,0.000000,0.000000,0.250000,0,0);}
.mf9_c00359{transform:matrix(0.032450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032450,0.000000,0.000000,0.250000,0,0);}
.m0_c00359{transform:matrix(0.035575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.035575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.035575,0.000000,0.000000,0.250000,0,0);}
.m2_c00359{transform:matrix(0.040560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.040560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.040560,0.000000,0.000000,0.250000,0,0);}
.mb8_c00359{transform:matrix(0.047430,0.000711,-0.003750,0.249972,0,0);-ms-transform:matrix(0.047430,0.000711,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.047430,0.000711,-0.003750,0.249972,0,0);}
.m9a_c00359{transform:matrix(0.053035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.053035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.053035,0.000000,0.000000,0.250000,0,0);}
.mb9_c00359{transform:matrix(0.054079,0.000811,-0.003750,0.249972,0,0);-ms-transform:matrix(0.054079,0.000811,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.054079,0.000811,-0.003750,0.249972,0,0);}
.m26_c00359{transform:matrix(0.054085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054085,0.000000,0.000000,0.250000,0,0);}
.m6c_c00359{transform:matrix(0.057365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.057365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.057365,0.000000,0.000000,0.250000,0,0);}
.m108_c00359{transform:matrix(0.060815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060815,0.000000,0.000000,0.250000,0,0);}
.m74_c00359{transform:matrix(0.063640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.063640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.063640,0.000000,0.000000,0.250000,0,0);}
.mb3_c00359{transform:matrix(0.064285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.064285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.064285,0.000000,0.000000,0.250000,0,0);}
.mf1_c00359{transform:matrix(0.077420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.077420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.077420,0.000000,0.000000,0.250000,0,0);}
.m29_c00359{transform:matrix(0.078100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.078100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.078100,0.000000,0.000000,0.250000,0,0);}
.m43_c00359{transform:matrix(0.081119,0.000973,-0.003000,0.249982,0,0);-ms-transform:matrix(0.081119,0.000973,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.081119,0.000973,-0.003000,0.249982,0,0);}
.m23_c00359{transform:matrix(0.087465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087465,0.000000,0.000000,0.250000,0,0);}
.m121_c00359{transform:matrix(0.095435,0.002195,-0.005748,0.249934,0,0);-ms-transform:matrix(0.095435,0.002195,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.095435,0.002195,-0.005748,0.249934,0,0);}
.m77_c00359{transform:matrix(0.102615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102615,0.000000,0.000000,0.250000,0,0);}
.md3_c00359{transform:matrix(0.114550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114550,0.000000,0.000000,0.250000,0,0);}
.m54_c00359{transform:matrix(0.115242,0.001729,-0.003750,0.249972,0,0);-ms-transform:matrix(0.115242,0.001729,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.115242,0.001729,-0.003750,0.249972,0,0);}
.mc8_c00359{transform:matrix(0.120935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120935,0.000000,0.000000,0.250000,0,0);}
.m21_c00359{transform:matrix(0.134165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134165,0.000000,0.000000,0.250000,0,0);}
.m69_c00359{transform:matrix(0.138295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138295,0.000000,0.000000,0.250000,0,0);}
.m106_c00359{transform:matrix(0.145625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145625,0.000000,0.000000,0.250000,0,0);}
.m15_c00359{transform:matrix(0.150935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150935,0.000000,0.000000,0.250000,0,0);}
.m115_c00359{transform:matrix(0.151248,0.002571,-0.004249,0.249964,0,0);-ms-transform:matrix(0.151248,0.002571,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.151248,0.002571,-0.004249,0.249964,0,0);}
.m6_c00359{transform:matrix(0.153015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153015,0.000000,0.000000,0.250000,0,0);}
.m61_c00359{transform:matrix(0.159082,0.002386,-0.003750,0.249972,0,0);-ms-transform:matrix(0.159082,0.002386,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.159082,0.002386,-0.003750,0.249972,0,0);}
.m24_c00359{transform:matrix(0.159450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159450,0.000000,0.000000,0.250000,0,0);}
.m33_c00359{transform:matrix(0.161245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161245,0.000000,0.000000,0.250000,0,0);}
.m9b_c00359{transform:matrix(0.163785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163785,0.000000,0.000000,0.250000,0,0);}
.mf5_c00359{transform:matrix(0.165220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165220,0.000000,0.000000,0.250000,0,0);}
.m79_c00359{transform:matrix(0.165950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165950,0.000000,0.000000,0.250000,0,0);}
.mbf_c00359{transform:matrix(0.171706,0.002576,-0.003750,0.249972,0,0);-ms-transform:matrix(0.171706,0.002576,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.171706,0.002576,-0.003750,0.249972,0,0);}
.mfc_c00359{transform:matrix(0.181400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181400,0.000000,0.000000,0.250000,0,0);}
.m5a_c00359{transform:matrix(0.182434,0.002737,-0.003750,0.249972,0,0);-ms-transform:matrix(0.182434,0.002737,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.182434,0.002737,-0.003750,0.249972,0,0);}
.m1_c00359{transform:matrix(0.186220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186220,0.000000,0.000000,0.250000,0,0);}
.mcc_c00359{transform:matrix(0.190920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190920,0.000000,0.000000,0.250000,0,0);}
.m112_c00359{transform:matrix(0.192210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192210,0.000000,0.000000,0.250000,0,0);}
.m85_c00359{transform:matrix(0.194978,0.002925,-0.003750,0.249972,0,0);-ms-transform:matrix(0.194978,0.002925,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.194978,0.002925,-0.003750,0.249972,0,0);}
.m67_c00359{transform:matrix(0.200125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200125,0.000000,0.000000,0.250000,0,0);}
.m7d_c00359{transform:matrix(0.204020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204020,0.000000,0.000000,0.250000,0,0);}
.m86_c00359{transform:matrix(0.214741,0.003221,-0.003750,0.249972,0,0);-ms-transform:matrix(0.214741,0.003221,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.214741,0.003221,-0.003750,0.249972,0,0);}
.mf4_c00359{transform:matrix(0.221370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221370,0.000000,0.000000,0.250000,0,0);}
.m7a_c00359{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00359{transform:matrix(0.228475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228475,0.000000,0.000000,0.250000,0,0);}
.m89_c00359{transform:matrix(0.237143,0.003557,-0.003750,0.249972,0,0);-ms-transform:matrix(0.237143,0.003557,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.237143,0.003557,-0.003750,0.249972,0,0);}
.m1f_c00359{transform:matrix(0.237170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237170,0.000000,0.000000,0.250000,0,0);}
.m2f_c00359{transform:matrix(0.238025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238025,0.000000,0.000000,0.250000,0,0);}
.md8_c00359{transform:matrix(0.242980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242980,0.000000,0.000000,0.250000,0,0);}
.m9f_c00359{transform:matrix(0.243645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243645,0.000000,0.000000,0.250000,0,0);}
.m111_c00359{transform:matrix(0.245910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245910,0.000000,0.000000,0.250000,0,0);}
.md2_c00359{transform:matrix(0.246660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246660,0.000000,0.000000,0.250000,0,0);}
.m73_c00359{transform:matrix(0.250105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250105,0.000000,0.000000,0.250000,0,0);}
.m113_c00359{transform:matrix(0.257605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257605,0.000000,0.000000,0.250000,0,0);}
.m94_c00359{transform:matrix(0.259696,0.003895,-0.003750,0.249972,0,0);-ms-transform:matrix(0.259696,0.003895,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.259696,0.003895,-0.003750,0.249972,0,0);}
.m1e_c00359{transform:matrix(0.265705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265705,0.000000,0.000000,0.250000,0,0);}
.m5b_c00359{transform:matrix(0.271489,0.004072,-0.003750,0.249972,0,0);-ms-transform:matrix(0.271489,0.004072,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.271489,0.004072,-0.003750,0.249972,0,0);}
.m72_c00359{transform:matrix(0.274650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274650,0.000000,0.000000,0.250000,0,0);}
.mb5_c00359{transform:matrix(0.276595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276595,0.000000,0.000000,0.250000,0,0);}
.m5c_c00359{transform:matrix(0.276964,0.004154,-0.003750,0.249972,0,0);-ms-transform:matrix(0.276964,0.004154,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.276964,0.004154,-0.003750,0.249972,0,0);}
.m10d_c00359{transform:matrix(0.280665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280665,0.000000,0.000000,0.250000,0,0);}
.m4f_c00359{transform:matrix(0.284573,0.004269,-0.003750,0.249972,0,0);-ms-transform:matrix(0.284573,0.004269,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.284573,0.004269,-0.003750,0.249972,0,0);}
.m10e_c00359{transform:matrix(0.285765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285765,0.000000,0.000000,0.250000,0,0);}
.ma9_c00359{transform:matrix(0.285785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285785,0.000000,0.000000,0.250000,0,0);}
.m2e_c00359{transform:matrix(0.288630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288630,0.000000,0.000000,0.250000,0,0);}
.m3d_c00359{transform:matrix(0.291700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291700,0.000000,0.000000,0.250000,0,0);}
.m46_c00359{transform:matrix(0.291879,0.003503,-0.003000,0.249982,0,0);-ms-transform:matrix(0.291879,0.003503,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.291879,0.003503,-0.003000,0.249982,0,0);}
.m10f_c00359{transform:matrix(0.293545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293545,0.000000,0.000000,0.250000,0,0);}
.mc_c00359{transform:matrix(0.294440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294440,0.000000,0.000000,0.250000,0,0);}
.m8_c00359{transform:matrix(0.295845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295845,0.000000,0.000000,0.250000,0,0);}
.m110_c00359{transform:matrix(0.296210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296210,0.000000,0.000000,0.250000,0,0);}
.ma1_c00359{transform:matrix(0.299580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299580,0.000000,0.000000,0.250000,0,0);}
.m3c_c00359{transform:matrix(0.301675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301675,0.000000,0.000000,0.250000,0,0);}
.m95_c00359{transform:matrix(0.306001,0.004590,-0.003750,0.249972,0,0);-ms-transform:matrix(0.306001,0.004590,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.306001,0.004590,-0.003750,0.249972,0,0);}
.ma3_c00359{transform:matrix(0.308915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308915,0.000000,0.000000,0.250000,0,0);}
.me5_c00359{transform:matrix(0.313731,0.008471,-0.006748,0.249909,0,0);-ms-transform:matrix(0.313731,0.008471,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.313731,0.008471,-0.006748,0.249909,0,0);}
.m60_c00359{transform:matrix(0.314965,0.004724,-0.003750,0.249972,0,0);-ms-transform:matrix(0.314965,0.004724,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.314965,0.004724,-0.003750,0.249972,0,0);}
.mf0_c00359{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.mcd_c00359{transform:matrix(0.318200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318200,0.000000,0.000000,0.250000,0,0);}
.m10a_c00359{transform:matrix(0.323760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323760,0.000000,0.000000,0.250000,0,0);}
.m55_c00359{transform:matrix(0.325088,0.004876,-0.003750,0.249972,0,0);-ms-transform:matrix(0.325088,0.004876,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.325088,0.004876,-0.003750,0.249972,0,0);}
.m119_c00359{transform:matrix(0.329442,0.005601,-0.004249,0.249964,0,0);-ms-transform:matrix(0.329442,0.005601,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.329442,0.005601,-0.004249,0.249964,0,0);}
.mad_c00359{transform:matrix(0.329850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329850,0.000000,0.000000,0.250000,0,0);}
.m3_c00359{transform:matrix(0.330870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330870,0.000000,0.000000,0.250000,0,0);}
.m8c_c00359{transform:matrix(0.332828,0.004992,-0.003750,0.249972,0,0);-ms-transform:matrix(0.332828,0.004992,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.332828,0.004992,-0.003750,0.249972,0,0);}
.m42_c00359{transform:matrix(0.333865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333865,0.000000,0.000000,0.250000,0,0);}
.m5d_c00359{transform:matrix(0.336127,0.005042,-0.003750,0.249972,0,0);-ms-transform:matrix(0.336127,0.005042,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.336127,0.005042,-0.003750,0.249972,0,0);}
.mfe_c00359{transform:matrix(0.336915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336915,0.000000,0.000000,0.250000,0,0);}
.me7_c00359{transform:matrix(0.336962,0.009098,-0.006748,0.249909,0,0);-ms-transform:matrix(0.336962,0.009098,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.336962,0.009098,-0.006748,0.249909,0,0);}
.m2b_c00359{transform:matrix(0.340260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340260,0.000000,0.000000,0.250000,0,0);}
.mff_c00359{transform:matrix(0.342155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342155,0.000000,0.000000,0.250000,0,0);}
.m93_c00359{transform:matrix(0.343491,0.005152,-0.003750,0.249972,0,0);-ms-transform:matrix(0.343491,0.005152,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.343491,0.005152,-0.003750,0.249972,0,0);}
.meb_c00359{transform:matrix(0.344260,0.009295,-0.006748,0.249909,0,0);-ms-transform:matrix(0.344260,0.009295,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.344260,0.009295,-0.006748,0.249909,0,0);}
.m48_c00359{transform:matrix(0.344360,0.004132,-0.003000,0.249982,0,0);-ms-transform:matrix(0.344360,0.004132,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.344360,0.004132,-0.003000,0.249982,0,0);}
.mef_c00359{transform:matrix(0.345770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345770,0.000000,0.000000,0.250000,0,0);}
.md1_c00359{transform:matrix(0.346965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346965,0.000000,0.000000,0.250000,0,0);}
.m11a_c00359{transform:matrix(0.347110,0.005901,-0.004249,0.249964,0,0);-ms-transform:matrix(0.347110,0.005901,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.347110,0.005901,-0.004249,0.249964,0,0);}
.m31_c00359{transform:matrix(0.350035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350035,0.000000,0.000000,0.250000,0,0);}
.mae_c00359{transform:matrix(0.351460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351460,0.000000,0.000000,0.250000,0,0);}
.md9_c00359{transform:matrix(0.355370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355370,0.000000,0.000000,0.250000,0,0);}
.m35_c00359{transform:matrix(0.359470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359470,0.000000,0.000000,0.250000,0,0);}
.m6b_c00359{transform:matrix(0.360625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360625,0.000000,0.000000,0.250000,0,0);}
.m4b_c00359{transform:matrix(0.364089,0.004369,-0.003000,0.249982,0,0);-ms-transform:matrix(0.364089,0.004369,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.364089,0.004369,-0.003000,0.249982,0,0);}
.mcb_c00359{transform:matrix(0.365275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365275,0.000000,0.000000,0.250000,0,0);}
.m7e_c00359{transform:matrix(0.370475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370475,0.000000,0.000000,0.250000,0,0);}
.me6_c00359{transform:matrix(0.379337,0.010242,-0.006748,0.249909,0,0);-ms-transform:matrix(0.379337,0.010242,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.379337,0.010242,-0.006748,0.249909,0,0);}
.m76_c00359{transform:matrix(0.385215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385215,0.000000,0.000000,0.250000,0,0);}
.m10b_c00359{transform:matrix(0.387420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387420,0.000000,0.000000,0.250000,0,0);}
.m3e_c00359{transform:matrix(0.387730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387730,0.000000,0.000000,0.250000,0,0);}
.m8b_c00359{transform:matrix(0.389956,0.005849,-0.003750,0.249972,0,0);-ms-transform:matrix(0.389956,0.005849,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.389956,0.005849,-0.003750,0.249972,0,0);}
.m109_c00359{transform:matrix(0.390785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390785,0.000000,0.000000,0.250000,0,0);}
.m11f_c00359{transform:matrix(0.392217,-0.005491,0.003500,0.249976,0,0);-ms-transform:matrix(0.392217,-0.005491,0.003500,0.249976,0,0);-webkit-transform:matrix(0.392217,-0.005491,0.003500,0.249976,0,0);}
.m51_c00359{transform:matrix(0.393081,0.005896,-0.003750,0.249972,0,0);-ms-transform:matrix(0.393081,0.005896,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.393081,0.005896,-0.003750,0.249972,0,0);}
.mf8_c00359{transform:matrix(0.393900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393900,0.000000,0.000000,0.250000,0,0);}
.m128_c00359{transform:matrix(0.397645,0.009146,-0.005748,0.249934,0,0);-ms-transform:matrix(0.397645,0.009146,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.397645,0.009146,-0.005748,0.249934,0,0);}
.m27_c00359{transform:matrix(0.398245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398245,0.000000,0.000000,0.250000,0,0);}
.ma4_c00359{transform:matrix(0.398880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398880,0.000000,0.000000,0.250000,0,0);}
.m25_c00359{transform:matrix(0.403885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403885,0.000000,0.000000,0.250000,0,0);}
.m63_c00359{transform:matrix(0.411924,0.006179,-0.003750,0.249972,0,0);-ms-transform:matrix(0.411924,0.006179,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.411924,0.006179,-0.003750,0.249972,0,0);}
.mfa_c00359{transform:matrix(0.412085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412085,0.000000,0.000000,0.250000,0,0);}
.maf_c00359{transform:matrix(0.414005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414005,0.000000,0.000000,0.250000,0,0);}
.m50_c00359{transform:matrix(0.416098,0.006241,-0.003750,0.249972,0,0);-ms-transform:matrix(0.416098,0.006241,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.416098,0.006241,-0.003750,0.249972,0,0);}
.m2c_c00359{transform:matrix(0.420905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420905,0.000000,0.000000,0.250000,0,0);}
.mec_c00359{transform:matrix(0.424855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424855,0.000000,0.000000,0.250000,0,0);}
.m71_c00359{transform:matrix(0.425870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425870,0.000000,0.000000,0.250000,0,0);}
.m52_c00359{transform:matrix(0.426967,0.006405,-0.003750,0.249972,0,0);-ms-transform:matrix(0.426967,0.006405,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.426967,0.006405,-0.003750,0.249972,0,0);}
.m104_c00359{transform:matrix(0.431170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431170,0.000000,0.000000,0.250000,0,0);}
.m32_c00359{transform:matrix(0.431340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431340,0.000000,0.000000,0.250000,0,0);}
.mb2_c00359{transform:matrix(0.432795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432795,0.000000,0.000000,0.250000,0,0);}
.m11e_c00359{transform:matrix(0.435857,-0.006102,0.003500,0.249976,0,0);-ms-transform:matrix(0.435857,-0.006102,0.003500,0.249976,0,0);-webkit-transform:matrix(0.435857,-0.006102,0.003500,0.249976,0,0);}
.me9_c00359{transform:matrix(0.436646,0.011789,-0.006748,0.249909,0,0);-ms-transform:matrix(0.436646,0.011789,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.436646,0.011789,-0.006748,0.249909,0,0);}
.m122_c00359{transform:matrix(0.436754,0.010045,-0.005748,0.249934,0,0);-ms-transform:matrix(0.436754,0.010045,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.436754,0.010045,-0.005748,0.249934,0,0);}
.m9c_c00359{transform:matrix(0.445535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445535,0.000000,0.000000,0.250000,0,0);}
.mb4_c00359{transform:matrix(0.445950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445950,0.000000,0.000000,0.250000,0,0);}
.m28_c00359{transform:matrix(0.449220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449220,0.000000,0.000000,0.250000,0,0);}
.m11b_c00359{transform:matrix(0.451185,0.007670,-0.004249,0.249964,0,0);-ms-transform:matrix(0.451185,0.007670,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.451185,0.007670,-0.004249,0.249964,0,0);}
.mdc_c00359{transform:matrix(0.452245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452245,0.000000,0.000000,0.250000,0,0);}
.m75_c00359{transform:matrix(0.456040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456040,0.000000,0.000000,0.250000,0,0);}
.m4e_c00359{transform:matrix(0.458858,0.006883,-0.003750,0.249972,0,0);-ms-transform:matrix(0.458858,0.006883,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.458858,0.006883,-0.003750,0.249972,0,0);}
.m127_c00359{transform:matrix(0.458929,0.010555,-0.005748,0.249934,0,0);-ms-transform:matrix(0.458929,0.010555,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.458929,0.010555,-0.005748,0.249934,0,0);}
.m11c_c00359{transform:matrix(0.460923,0.007836,-0.004249,0.249964,0,0);-ms-transform:matrix(0.460923,0.007836,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.460923,0.007836,-0.004249,0.249964,0,0);}
.mcf_c00359{transform:matrix(0.461025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461025,0.000000,0.000000,0.250000,0,0);}
.m78_c00359{transform:matrix(0.461065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461065,0.000000,0.000000,0.250000,0,0);}
.mab_c00359{transform:matrix(0.465725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465725,0.000000,0.000000,0.250000,0,0);}
.m2d_c00359{transform:matrix(0.465965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465965,0.000000,0.000000,0.250000,0,0);}
.mf3_c00359{transform:matrix(0.467270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467270,0.000000,0.000000,0.250000,0,0);}
.m8a_c00359{transform:matrix(0.470052,0.007051,-0.003750,0.249972,0,0);-ms-transform:matrix(0.470052,0.007051,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.470052,0.007051,-0.003750,0.249972,0,0);}
.m10_c00359{transform:matrix(0.474770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474770,0.000000,0.000000,0.250000,0,0);}
.m126_c00359{transform:matrix(0.477169,0.010975,-0.005748,0.249934,0,0);-ms-transform:matrix(0.477169,0.010975,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.477169,0.010975,-0.005748,0.249934,0,0);}
.m11d_c00359{transform:matrix(0.479273,-0.006710,0.003500,0.249976,0,0);-ms-transform:matrix(0.479273,-0.006710,0.003500,0.249976,0,0);-webkit-transform:matrix(0.479273,-0.006710,0.003500,0.249976,0,0);}
.me1_c00359{transform:matrix(0.480060,0.012962,-0.006748,0.249909,0,0);-ms-transform:matrix(0.480060,0.012962,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.480060,0.012962,-0.006748,0.249909,0,0);}
.m64_c00359{transform:matrix(0.480546,0.007208,-0.003750,0.249972,0,0);-ms-transform:matrix(0.480546,0.007208,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.480546,0.007208,-0.003750,0.249972,0,0);}
.m6e_c00359{transform:matrix(0.481520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.481520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.481520,0.000000,0.000000,0.250000,0,0);}
.m65_c00359{transform:matrix(0.483506,0.007253,-0.003750,0.249972,0,0);-ms-transform:matrix(0.483506,0.007253,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.483506,0.007253,-0.003750,0.249972,0,0);}
.mc5_c00359{transform:matrix(0.483840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483840,0.000000,0.000000,0.250000,0,0);}
.m83_c00359{transform:matrix(0.484665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484665,0.000000,0.000000,0.250000,0,0);}
.m114_c00359{transform:matrix(0.488255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488255,0.000000,0.000000,0.250000,0,0);}
.ma_c00359{transform:matrix(0.488435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488435,0.000000,0.000000,0.250000,0,0);}
.m120_c00359{transform:matrix(0.495261,-0.006934,0.003500,0.249976,0,0);-ms-transform:matrix(0.495261,-0.006934,0.003500,0.249976,0,0);-webkit-transform:matrix(0.495261,-0.006934,0.003500,0.249976,0,0);}
.m9_c00359{transform:matrix(0.496645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.496645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.496645,0.000000,0.000000,0.250000,0,0);}
.m4_c00359{transform:matrix(0.497775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497775,0.000000,0.000000,0.250000,0,0);}
.mf2_c00359{transform:matrix(0.497855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497855,0.000000,0.000000,0.250000,0,0);}
.mc9_c00359{transform:matrix(0.501325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.501325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.501325,0.000000,0.000000,0.250000,0,0);}
.maa_c00359{transform:matrix(0.506545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506545,0.000000,0.000000,0.250000,0,0);}
.m53_c00359{transform:matrix(0.506828,0.007602,-0.003750,0.249972,0,0);-ms-transform:matrix(0.506828,0.007602,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.506828,0.007602,-0.003750,0.249972,0,0);}
.m100_c00359{transform:matrix(0.508510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508510,0.000000,0.000000,0.250000,0,0);}
.m19_c00359{transform:matrix(0.509115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509115,0.000000,0.000000,0.250000,0,0);}
.m10c_c00359{transform:matrix(0.511350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511350,0.000000,0.000000,0.250000,0,0);}
.m7_c00359{transform:matrix(0.514940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514940,0.000000,0.000000,0.250000,0,0);}
.m16_c00359{transform:matrix(0.519425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519425,0.000000,0.000000,0.250000,0,0);}
.m4d_c00359{transform:matrix(0.522222,0.006267,-0.003000,0.249982,0,0);-ms-transform:matrix(0.522222,0.006267,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.522222,0.006267,-0.003000,0.249982,0,0);}
.m88_c00359{transform:matrix(0.523866,0.007858,-0.003750,0.249972,0,0);-ms-transform:matrix(0.523866,0.007858,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.523866,0.007858,-0.003750,0.249972,0,0);}
.m30_c00359{transform:matrix(0.523915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523915,0.000000,0.000000,0.250000,0,0);}
.m87_c00359{transform:matrix(0.531445,0.007972,-0.003750,0.249972,0,0);-ms-transform:matrix(0.531445,0.007972,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.531445,0.007972,-0.003750,0.249972,0,0);}
.md6_c00359{transform:matrix(0.531600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531600,0.000000,0.000000,0.250000,0,0);}
.mea_c00359{transform:matrix(0.537509,0.014513,-0.006748,0.249909,0,0);-ms-transform:matrix(0.537509,0.014513,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.537509,0.014513,-0.006748,0.249909,0,0);}
.med_c00359{transform:matrix(0.543040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543040,0.000000,0.000000,0.250000,0,0);}
.mc6_c00359{transform:matrix(0.546010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.546010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.546010,0.000000,0.000000,0.250000,0,0);}
.mc0_c00359{transform:matrix(0.550618,0.008259,-0.003750,0.249972,0,0);-ms-transform:matrix(0.550618,0.008259,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.550618,0.008259,-0.003750,0.249972,0,0);}
.m9d_c00359{transform:matrix(0.552530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552530,0.000000,0.000000,0.250000,0,0);}
.m34_c00359{transform:matrix(0.556620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556620,0.000000,0.000000,0.250000,0,0);}
.m5_c00359{transform:matrix(0.559895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559895,0.000000,0.000000,0.250000,0,0);}
.m49_c00359{transform:matrix(0.564254,0.006771,-0.003000,0.249982,0,0);-ms-transform:matrix(0.564254,0.006771,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.564254,0.006771,-0.003000,0.249982,0,0);}
.mb6_c00359{transform:matrix(0.566040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566040,0.000000,0.000000,0.250000,0,0);}
.m70_c00359{transform:matrix(0.568070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568070,0.000000,0.000000,0.250000,0,0);}
.m107_c00359{transform:matrix(0.577270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577270,0.000000,0.000000,0.250000,0,0);}
.m36_c00359{transform:matrix(0.578255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578255,0.000000,0.000000,0.250000,0,0);}
.m40_c00359{transform:matrix(0.578815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578815,0.000000,0.000000,0.250000,0,0);}
.m47_c00359{transform:matrix(0.583608,0.007003,-0.003000,0.249982,0,0);-ms-transform:matrix(0.583608,0.007003,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.583608,0.007003,-0.003000,0.249982,0,0);}
.m13_c00359{transform:matrix(0.587265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.587265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.587265,0.000000,0.000000,0.250000,0,0);}
.m124_c00359{transform:matrix(0.587280,0.013507,-0.005748,0.249934,0,0);-ms-transform:matrix(0.587280,0.013507,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.587280,0.013507,-0.005748,0.249934,0,0);}
.mf6_c00359{transform:matrix(0.590400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590400,0.000000,0.000000,0.250000,0,0);}
.mdf_c00359{transform:matrix(0.590600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590600,0.000000,0.000000,0.250000,0,0);}
.m22_c00359{transform:matrix(0.592095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592095,0.000000,0.000000,0.250000,0,0);}
.m8e_c00359{transform:matrix(0.593948,0.008909,-0.003750,0.249972,0,0);-ms-transform:matrix(0.593948,0.008909,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.593948,0.008909,-0.003750,0.249972,0,0);}
.md4_c00359{transform:matrix(0.594030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.594030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.594030,0.000000,0.000000,0.250000,0,0);}
.m37_c00359{transform:matrix(0.597085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.597085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.597085,0.000000,0.000000,0.250000,0,0);}
.m68_c00359{transform:matrix(0.597180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.597180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.597180,0.000000,0.000000,0.250000,0,0);}
.m57_c00359{transform:matrix(0.597678,0.008965,-0.003750,0.249972,0,0);-ms-transform:matrix(0.597678,0.008965,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.597678,0.008965,-0.003750,0.249972,0,0);}
.m45_c00359{transform:matrix(0.599312,0.007192,-0.003000,0.249982,0,0);-ms-transform:matrix(0.599312,0.007192,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.599312,0.007192,-0.003000,0.249982,0,0);}
.mc2_c00359{transform:matrix(0.604670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.604670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.604670,0.000000,0.000000,0.250000,0,0);}
.mb7_c00359{transform:matrix(0.610050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.610050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.610050,0.000000,0.000000,0.250000,0,0);}
.m7b_c00359{transform:matrix(0.612065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612065,0.000000,0.000000,0.250000,0,0);}
.md5_c00359{transform:matrix(0.618310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.618310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.618310,0.000000,0.000000,0.250000,0,0);}
.m6f_c00359{transform:matrix(0.620690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620690,0.000000,0.000000,0.250000,0,0);}
.m8d_c00359{transform:matrix(0.632384,0.009486,-0.003750,0.249972,0,0);-ms-transform:matrix(0.632384,0.009486,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.632384,0.009486,-0.003750,0.249972,0,0);}
.m12_c00359{transform:matrix(0.634495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634495,0.000000,0.000000,0.250000,0,0);}
.m80_c00359{transform:matrix(0.637190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.637190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.637190,0.000000,0.000000,0.250000,0,0);}
.m44_c00359{transform:matrix(0.638114,0.007657,-0.003000,0.249982,0,0);-ms-transform:matrix(0.638114,0.007657,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.638114,0.007657,-0.003000,0.249982,0,0);}
.mda_c00359{transform:matrix(0.640655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.640655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.640655,0.000000,0.000000,0.250000,0,0);}
.mca_c00359{transform:matrix(0.644300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644300,0.000000,0.000000,0.250000,0,0);}
.m58_c00359{transform:matrix(0.652632,0.009789,-0.003750,0.249972,0,0);-ms-transform:matrix(0.652632,0.009789,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.652632,0.009789,-0.003750,0.249972,0,0);}
.m105_c00359{transform:matrix(0.657950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.657950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.657950,0.000000,0.000000,0.250000,0,0);}
.m12b_c00359{transform:matrix(0.660305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.660305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.660305,0.000000,0.000000,0.250000,0,0);}
.m7c_c00359{transform:matrix(0.664415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.664415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.664415,0.000000,0.000000,0.250000,0,0);}
.mf7_c00359{transform:matrix(0.666865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.666865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.666865,0.000000,0.000000,0.250000,0,0);}
.m38_c00359{transform:matrix(0.674535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.674535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.674535,0.000000,0.000000,0.250000,0,0);}
.m3f_c00359{transform:matrix(0.674700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.674700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.674700,0.000000,0.000000,0.250000,0,0);}
.ma0_c00359{transform:matrix(0.677455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.677455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.677455,0.000000,0.000000,0.250000,0,0);}
.ma5_c00359{transform:matrix(0.677735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.677735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.677735,0.000000,0.000000,0.250000,0,0);}
.mc1_c00359{transform:matrix(0.678399,0.010176,-0.003750,0.249972,0,0);-ms-transform:matrix(0.678399,0.010176,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.678399,0.010176,-0.003750,0.249972,0,0);}
.m9e_c00359{transform:matrix(0.679845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.679845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.679845,0.000000,0.000000,0.250000,0,0);}
.m102_c00359{transform:matrix(0.680890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.680890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.680890,0.000000,0.000000,0.250000,0,0);}
.m4a_c00359{transform:matrix(0.682246,0.008187,-0.003000,0.249982,0,0);-ms-transform:matrix(0.682246,0.008187,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.682246,0.008187,-0.003000,0.249982,0,0);}
.m6a_c00359{transform:matrix(0.683080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.683080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.683080,0.000000,0.000000,0.250000,0,0);}
.mc7_c00359{transform:matrix(0.685420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.685420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.685420,0.000000,0.000000,0.250000,0,0);}
.m90_c00359{transform:matrix(0.690902,0.010364,-0.003750,0.249972,0,0);-ms-transform:matrix(0.690902,0.010364,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.690902,0.010364,-0.003750,0.249972,0,0);}
.m4c_c00359{transform:matrix(0.694570,0.008335,-0.003000,0.249982,0,0);-ms-transform:matrix(0.694570,0.008335,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.694570,0.008335,-0.003000,0.249982,0,0);}
.mce_c00359{transform:matrix(0.703110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.703110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.703110,0.000000,0.000000,0.250000,0,0);}
.m5f_c00359{transform:matrix(0.711830,0.010677,-0.003750,0.249972,0,0);-ms-transform:matrix(0.711830,0.010677,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.711830,0.010677,-0.003750,0.249972,0,0);}
.m123_c00359{transform:matrix(0.714871,0.016442,-0.005748,0.249934,0,0);-ms-transform:matrix(0.714871,0.016442,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.714871,0.016442,-0.005748,0.249934,0,0);}
.mb0_c00359{transform:matrix(0.716940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.716940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.716940,0.000000,0.000000,0.250000,0,0);}
.m3a_c00359{transform:matrix(0.722195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.722195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.722195,0.000000,0.000000,0.250000,0,0);}
.m1a_c00359{transform:matrix(0.723000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.723000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.723000,0.000000,0.000000,0.250000,0,0);}
.m129_c00359{transform:matrix(0.726225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.726225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.726225,0.000000,0.000000,0.250000,0,0);}
.m91_c00359{transform:matrix(0.737247,0.011059,-0.003750,0.249972,0,0);-ms-transform:matrix(0.737247,0.011059,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.737247,0.011059,-0.003750,0.249972,0,0);}
.me8_c00359{transform:matrix(0.741215,0.020013,-0.006748,0.249909,0,0);-ms-transform:matrix(0.741215,0.020013,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.741215,0.020013,-0.006748,0.249909,0,0);}
.m97_c00359{transform:matrix(0.749150,0.014234,-0.004749,0.249955,0,0);-ms-transform:matrix(0.749150,0.014234,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.749150,0.014234,-0.004749,0.249955,0,0);}
.me3_c00359{transform:matrix(0.751056,0.020279,-0.006748,0.249909,0,0);-ms-transform:matrix(0.751056,0.020279,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.751056,0.020279,-0.006748,0.249909,0,0);}
.mc3_c00359{transform:matrix(0.768505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.768505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.768505,0.000000,0.000000,0.250000,0,0);}
.m1b_c00359{transform:matrix(0.770685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770685,0.000000,0.000000,0.250000,0,0);}
.mfb_c00359{transform:matrix(0.772795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.772795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.772795,0.000000,0.000000,0.250000,0,0);}
.m1d_c00359{transform:matrix(0.774210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.774210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.774210,0.000000,0.000000,0.250000,0,0);}
.m14_c00359{transform:matrix(0.775985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.775985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.775985,0.000000,0.000000,0.250000,0,0);}
.m56_c00359{transform:matrix(0.780842,0.011713,-0.003750,0.249972,0,0);-ms-transform:matrix(0.780842,0.011713,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.780842,0.011713,-0.003750,0.249972,0,0);}
.m116_c00359{transform:matrix(0.785776,0.013358,-0.004249,0.249964,0,0);-ms-transform:matrix(0.785776,0.013358,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.785776,0.013358,-0.004249,0.249964,0,0);}
.m1c_c00359{transform:matrix(0.804865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.804865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.804865,0.000000,0.000000,0.250000,0,0);}
.mee_c00359{transform:matrix(0.805140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.805140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.805140,0.000000,0.000000,0.250000,0,0);}
.mc4_c00359{transform:matrix(0.806380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.806380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.806380,0.000000,0.000000,0.250000,0,0);}
.me_c00359{transform:matrix(0.819010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.819010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.819010,0.000000,0.000000,0.250000,0,0);}
.m92_c00359{transform:matrix(0.822892,0.012343,-0.003750,0.249972,0,0);-ms-transform:matrix(0.822892,0.012343,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.822892,0.012343,-0.003750,0.249972,0,0);}
.ma7_c00359{transform:matrix(0.835500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.835500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.835500,0.000000,0.000000,0.250000,0,0);}
.mac_c00359{transform:matrix(0.836000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.836000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.836000,0.000000,0.000000,0.250000,0,0);}
.m59_c00359{transform:matrix(0.840290,0.012604,-0.003750,0.249972,0,0);-ms-transform:matrix(0.840290,0.012604,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.840290,0.012604,-0.003750,0.249972,0,0);}
.m41_c00359{transform:matrix(0.842020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.842020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.842020,0.000000,0.000000,0.250000,0,0);}
.m12a_c00359{transform:matrix(0.857030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.857030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.857030,0.000000,0.000000,0.250000,0,0);}
.m11_c00359{transform:matrix(0.862900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.862900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.862900,0.000000,0.000000,0.250000,0,0);}
.m17_c00359{transform:matrix(0.864495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.864495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.864495,0.000000,0.000000,0.250000,0,0);}
.m101_c00359{transform:matrix(0.869385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.869385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.869385,0.000000,0.000000,0.250000,0,0);}
.mf_c00359{transform:matrix(0.898155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.898155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.898155,0.000000,0.000000,0.250000,0,0);}
.mb_c00359{transform:matrix(0.909025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.909025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.909025,0.000000,0.000000,0.250000,0,0);}
.m81_c00359{transform:matrix(0.925755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.925755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.925755,0.000000,0.000000,0.250000,0,0);}
.me4_c00359{transform:matrix(0.948369,0.025606,-0.006748,0.249909,0,0);-ms-transform:matrix(0.948369,0.025606,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.948369,0.025606,-0.006748,0.249909,0,0);}
.mdb_c00359{transform:matrix(0.952705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.952705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.952705,0.000000,0.000000,0.250000,0,0);}
.mba_c00359{transform:matrix(0.959187,0.014388,-0.003750,0.249972,0,0);-ms-transform:matrix(0.959187,0.014388,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.959187,0.014388,-0.003750,0.249972,0,0);}
.mbc_c00359{transform:matrix(0.962982,0.014445,-0.003750,0.249972,0,0);-ms-transform:matrix(0.962982,0.014445,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.962982,0.014445,-0.003750,0.249972,0,0);}
.m3b_c00359{transform:matrix(0.982365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.982365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.982365,0.000000,0.000000,0.250000,0,0);}
.m82_c00359{transform:matrix(1.006005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.006005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.006005,0.000000,0.000000,0.250000,0,0);}
.m84_c00359{transform:matrix(1.035760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.035760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.035760,0.000000,0.000000,0.250000,0,0);}
.m125_c00359{transform:matrix(1.055666,0.024280,-0.005748,0.249934,0,0);-ms-transform:matrix(1.055666,0.024280,-0.005748,0.249934,0,0);-webkit-transform:matrix(1.055666,0.024280,-0.005748,0.249934,0,0);}
.m8f_c00359{transform:matrix(1.066675,0.016000,-0.003750,0.249972,0,0);-ms-transform:matrix(1.066675,0.016000,-0.003750,0.249972,0,0);-webkit-transform:matrix(1.066675,0.016000,-0.003750,0.249972,0,0);}
.mdd_c00359{transform:matrix(1.080105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.080105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.080105,0.000000,0.000000,0.250000,0,0);}
.m99_c00359{transform:matrix(1.110610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.110610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.110610,0.000000,0.000000,0.250000,0,0);}
.m5e_c00359{transform:matrix(1.129813,0.016947,-0.003750,0.249972,0,0);-ms-transform:matrix(1.129813,0.016947,-0.003750,0.249972,0,0);-webkit-transform:matrix(1.129813,0.016947,-0.003750,0.249972,0,0);}
.me2_c00359{transform:matrix(1.137041,0.030700,-0.006748,0.249909,0,0);-ms-transform:matrix(1.137041,0.030700,-0.006748,0.249909,0,0);-webkit-transform:matrix(1.137041,0.030700,-0.006748,0.249909,0,0);}
.me0_c00359{transform:matrix(1.167744,0.031529,-0.006748,0.249909,0,0);-ms-transform:matrix(1.167744,0.031529,-0.006748,0.249909,0,0);-webkit-transform:matrix(1.167744,0.031529,-0.006748,0.249909,0,0);}
.ma6_c00359{transform:matrix(1.174150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.174150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.174150,0.000000,0.000000,0.250000,0,0);}
.mbd_c00359{transform:matrix(1.176578,0.017649,-0.003750,0.249972,0,0);-ms-transform:matrix(1.176578,0.017649,-0.003750,0.249972,0,0);-webkit-transform:matrix(1.176578,0.017649,-0.003750,0.249972,0,0);}
.mbe_c00359{transform:matrix(1.192386,0.017886,-0.003750,0.249972,0,0);-ms-transform:matrix(1.192386,0.017886,-0.003750,0.249972,0,0);-webkit-transform:matrix(1.192386,0.017886,-0.003750,0.249972,0,0);}
.m117_c00359{transform:matrix(1.255704,0.021347,-0.004249,0.249964,0,0);-ms-transform:matrix(1.255704,0.021347,-0.004249,0.249964,0,0);-webkit-transform:matrix(1.255704,0.021347,-0.004249,0.249964,0,0);}
.ma2_c00359{transform:matrix(1.414865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.414865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.414865,0.000000,0.000000,0.250000,0,0);}
.mbb_c00359{transform:matrix(1.445472,0.021682,-0.003750,0.249972,0,0);-ms-transform:matrix(1.445472,0.021682,-0.003750,0.249972,0,0);-webkit-transform:matrix(1.445472,0.021682,-0.003750,0.249972,0,0);}
.mfd_c00359{transform:matrix(1.535155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.535155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.535155,0.000000,0.000000,0.250000,0,0);}
.mde_c00359{transform:matrix(1.613265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.613265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.613265,0.000000,0.000000,0.250000,0,0);}
.m12c_c00359{transform:matrix(1.747515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.747515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.747515,0.000000,0.000000,0.250000,0,0);}
.m18_c00359{transform:matrix(1.837135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.837135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.837135,0.000000,0.000000,0.250000,0,0);}
.md0_c00359{transform:matrix(1.915645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.915645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.915645,0.000000,0.000000,0.250000,0,0);}
.mb1_c00359{transform:matrix(2.034755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.034755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.034755,0.000000,0.000000,0.250000,0,0);}
.m20_c00359{transform:matrix(2.196205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.196205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.196205,0.000000,0.000000,0.250000,0,0);}
.md_c00359{transform:matrix(2.328070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.328070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.328070,0.000000,0.000000,0.250000,0,0);}
.m62_c00359{transform:matrix(2.343896,0.035158,-0.003750,0.249972,0,0);-ms-transform:matrix(2.343896,0.035158,-0.003750,0.249972,0,0);-webkit-transform:matrix(2.343896,0.035158,-0.003750,0.249972,0,0);}
.m7f_c00359{transform:matrix(2.800235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.800235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.800235,0.000000,0.000000,0.250000,0,0);}
.m118_c00359{transform:matrix(3.430309,0.058315,-0.004249,0.249964,0,0);-ms-transform:matrix(3.430309,0.058315,-0.004249,0.249964,0,0);-webkit-transform:matrix(3.430309,0.058315,-0.004249,0.249964,0,0);}
.m98_c00359{transform:matrix(3.512971,0.066746,-0.004749,0.249955,0,0);-ms-transform:matrix(3.512971,0.066746,-0.004749,0.249955,0,0);-webkit-transform:matrix(3.512971,0.066746,-0.004749,0.249955,0,0);}
.m39_c00359{transform:matrix(6.002325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(6.002325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(6.002325,0.000000,0.000000,0.250000,0,0);}
.m96_c00359{transform:matrix(9.860640,0.187352,-0.004749,0.249955,0,0);-ms-transform:matrix(9.860640,0.187352,-0.004749,0.249955,0,0);-webkit-transform:matrix(9.860640,0.187352,-0.004749,0.249955,0,0);}
.v0_c00359{vertical-align:0.000000px;}
.ls0_c00359{letter-spacing:0.000000px;}
.sc__c00359{text-shadow:none;}
.sc0_c00359{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__c00359{-webkit-text-stroke:0px transparent;}
.sc0_c00359{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00359{word-spacing:0.000000px;}
._0_c00359{width:328.810651px;}
._2_c00359{width:825.963465px;}
._1_c00359{width:1047.189442px;}
.fc0_c00359{color:transparent;}
.fs9_c00359{font-size:12.000000px;}
.fs4_c00359{font-size:12.000864px;}
.fsb_c00359{font-size:12.002166px;}
.fs1_c00359{font-size:18.000000px;}
.fsa_c00359{font-size:18.002025px;}
.fs10_c00359{font-size:18.006560px;}
.fs0_c00359{font-size:24.000000px;}
.fs7_c00359{font-size:24.002700px;}
.fs11_c00359{font-size:24.003468px;}
.fs13_c00359{font-size:24.006347px;}
.fs8_c00359{font-size:30.000000px;}
.fs6_c00359{font-size:30.003375px;}
.fsc_c00359{font-size:36.000000px;}
.fs5_c00359{font-size:36.002592px;}
.fsf_c00359{font-size:36.004050px;}
.fse_c00359{font-size:42.000000px;}
.fs12_c00359{font-size:42.004116px;}
.fs2_c00359{font-size:54.000000px;}
.fs3_c00359{font-size:60.000000px;}
.fsd_c00359{font-size:66.000000px;}
.y0_c00359{bottom:0.000000px;}
.yab_c00359{bottom:608.811000px;}
.yaa_c00359{bottom:636.812156px;}
.ya9_c00359{bottom:637.127348px;}
.ya8_c00359{bottom:637.773015px;}
.ya7_c00359{bottom:638.369865px;}
.ya6_c00359{bottom:639.127865px;}
.ya5_c00359{bottom:639.518991px;}
.ya4_c00359{bottom:640.351338px;}
.ya3_c00359{bottom:640.710000px;}
.y9f_c00359{bottom:644.224500px;}
.ya0_c00359{bottom:645.564741px;}
.ya1_c00359{bottom:646.090014px;}
.ya2_c00359{bottom:646.549368px;}
.y9e_c00359{bottom:674.578772px;}
.y9d_c00359{bottom:675.388983px;}
.y9c_c00359{bottom:675.634395px;}
.y9b_c00359{bottom:675.789180px;}
.y9a_c00359{bottom:677.846851px;}
.y99_c00359{bottom:678.653876px;}
.y98_c00359{bottom:679.475205px;}
.y97_c00359{bottom:679.860000px;}
.y96_c00359{bottom:684.225000px;}
.y95_c00359{bottom:691.516500px;}
.y94_c00359{bottom:743.686500px;}
.y93_c00359{bottom:743.871000px;}
.y92_c00359{bottom:744.157500px;}
.y91_c00359{bottom:744.591000px;}
.y90_c00359{bottom:745.255500px;}
.y8f_c00359{bottom:746.656500px;}
.y8e_c00359{bottom:747.603000px;}
.y8d_c00359{bottom:747.810000px;}
.y8c_c00359{bottom:748.041000px;}
.y8b_c00359{bottom:748.284000px;}
.y8a_c00359{bottom:749.200500px;}
.y89_c00359{bottom:749.253000px;}
.y88_c00359{bottom:755.445000px;}
.y87_c00359{bottom:755.862000px;}
.y86_c00359{bottom:756.268500px;}
.y85_c00359{bottom:757.378500px;}
.y84_c00359{bottom:758.086500px;}
.y83_c00359{bottom:758.725500px;}
.y82_c00359{bottom:765.441000px;}
.y81_c00359{bottom:781.096500px;}
.y7f_c00359{bottom:817.562457px;}
.y80_c00359{bottom:817.645500px;}
.y7e_c00359{bottom:817.934490px;}
.y7d_c00359{bottom:818.190936px;}
.y7c_c00359{bottom:818.699859px;}
.y7b_c00359{bottom:818.867448px;}
.y7a_c00359{bottom:819.275161px;}
.y79_c00359{bottom:819.654484px;}
.y78_c00359{bottom:820.597324px;}
.y77_c00359{bottom:821.113335px;}
.y76_c00359{bottom:822.017376px;}
.y75_c00359{bottom:822.150702px;}
.y74_c00359{bottom:822.609000px;}
.y73_c00359{bottom:823.659000px;}
.y72_c00359{bottom:824.947500px;}
.y71_c00359{bottom:825.303000px;}
.y70_c00359{bottom:825.490500px;}
.y6f_c00359{bottom:825.904500px;}
.y6e_c00359{bottom:826.288500px;}
.y6d_c00359{bottom:827.284500px;}
.y6c_c00359{bottom:827.728500px;}
.y62_c00359{bottom:827.806762px;}
.y63_c00359{bottom:827.807302px;}
.y6b_c00359{bottom:828.078000px;}
.y6a_c00359{bottom:828.256500px;}
.y69_c00359{bottom:828.622500px;}
.y68_c00359{bottom:829.119000px;}
.y67_c00359{bottom:829.170000px;}
.y66_c00359{bottom:829.468500px;}
.y65_c00359{bottom:831.916500px;}
.y61_c00359{bottom:832.676055px;}
.y64_c00359{bottom:835.545000px;}
.y60_c00359{bottom:852.336225px;}
.y5f_c00359{bottom:852.991582px;}
.y5e_c00359{bottom:853.640122px;}
.y5d_c00359{bottom:854.640180px;}
.y5c_c00359{bottom:854.923657px;}
.y5b_c00359{bottom:858.636855px;}
.y5a_c00359{bottom:859.950000px;}
.y59_c00359{bottom:859.966500px;}
.y58_c00359{bottom:877.230000px;}
.y57_c00359{bottom:890.077500px;}
.y56_c00359{bottom:894.753000px;}
.y55_c00359{bottom:929.298000px;}
.y54_c00359{bottom:934.654500px;}
.y53_c00359{bottom:940.261500px;}
.y52_c00359{bottom:942.286500px;}
.y3d_c00359{bottom:996.544500px;}
.y51_c00359{bottom:1000.207959px;}
.y50_c00359{bottom:1000.624401px;}
.y3c_c00359{bottom:1001.530500px;}
.y4f_c00359{bottom:1002.511500px;}
.y4e_c00359{bottom:1004.925405px;}
.y4d_c00359{bottom:1005.054082px;}
.y4c_c00359{bottom:1005.353167px;}
.y4b_c00359{bottom:1005.822705px;}
.y4a_c00359{bottom:1006.392855px;}
.y49_c00359{bottom:1006.919542px;}
.y48_c00359{bottom:1007.513618px;}
.y47_c00359{bottom:1007.910210px;}
.y3b_c00359{bottom:1008.420000px;}
.y3a_c00359{bottom:1010.038500px;}
.y46_c00359{bottom:1012.106317px;}
.y45_c00359{bottom:1012.312417px;}
.y44_c00359{bottom:1012.482382px;}
.y43_c00359{bottom:1012.758300px;}
.y42_c00359{bottom:1012.972387px;}
.y41_c00359{bottom:1014.122588px;}
.y40_c00359{bottom:1014.476175px;}
.y3f_c00359{bottom:1014.907950px;}
.y3e_c00359{bottom:1015.200000px;}
.y39_c00359{bottom:1032.821318px;}
.y38_c00359{bottom:1033.454017px;}
.y37_c00359{bottom:1033.695547px;}
.y36_c00359{bottom:1033.898933px;}
.y35_c00359{bottom:1034.830335px;}
.y34_c00359{bottom:1035.165728px;}
.y33_c00359{bottom:1035.419955px;}
.y32_c00359{bottom:1035.786652px;}
.y31_c00359{bottom:1036.395765px;}
.y2c_c00359{bottom:1036.835587px;}
.y30_c00359{bottom:1037.079990px;}
.y2f_c00359{bottom:1037.329493px;}
.y2b_c00359{bottom:1037.478503px;}
.y2e_c00359{bottom:1037.503725px;}
.y2a_c00359{bottom:1037.751337px;}
.y2d_c00359{bottom:1037.896380px;}
.y29_c00359{bottom:1038.203722px;}
.y28_c00359{bottom:1038.749865px;}
.y27_c00359{bottom:1039.024208px;}
.y26_c00359{bottom:1039.701570px;}
.y25_c00359{bottom:1040.106458px;}
.y24_c00359{bottom:1040.507362px;}
.y23_c00359{bottom:1040.770455px;}
.y20_c00359{bottom:1041.322026px;}
.y22_c00359{bottom:1042.002127px;}
.y21_c00359{bottom:1042.471500px;}
.y1f_c00359{bottom:1043.182080px;}
.y1e_c00359{bottom:1043.396172px;}
.y1d_c00359{bottom:1043.996568px;}
.y15_c00359{bottom:1044.550500px;}
.y1c_c00359{bottom:1045.260318px;}
.y1b_c00359{bottom:1045.687224px;}
.y1a_c00359{bottom:1046.177970px;}
.y19_c00359{bottom:1047.712386px;}
.y18_c00359{bottom:1048.576056px;}
.y17_c00359{bottom:1054.610892px;}
.y16_c00359{bottom:1058.670000px;}
.y14_c00359{bottom:1067.979000px;}
.y13_c00359{bottom:1073.808000px;}
.y12_c00359{bottom:1104.442500px;}
.y11_c00359{bottom:1104.880500px;}
.y10_c00359{bottom:1106.614500px;}
.yf_c00359{bottom:1106.995500px;}
.ye_c00359{bottom:1107.190500px;}
.yd_c00359{bottom:1107.289500px;}
.yc_c00359{bottom:1107.388500px;}
.yb_c00359{bottom:1109.127000px;}
.ya_c00359{bottom:1109.700000px;}
.y9_c00359{bottom:1110.426000px;}
.y8_c00359{bottom:1117.435500px;}
.y7_c00359{bottom:1121.436000px;}
.y6_c00359{bottom:1131.168000px;}
.y5_c00359{bottom:1135.483500px;}
.y3_c00359{bottom:1137.889500px;}
.y4_c00359{bottom:1140.750000px;}
.y2_c00359{bottom:1142.559000px;}
.y1_c00359{bottom:1154.883000px;}
.hc_c00359{height:12.000000px;}
.h6_c00359{height:12.000864px;}
.he_c00359{height:12.002166px;}
.h3_c00359{height:18.000000px;}
.hd_c00359{height:18.002025px;}
.h13_c00359{height:18.006560px;}
.h2_c00359{height:24.000000px;}
.h9_c00359{height:24.002700px;}
.h14_c00359{height:24.003468px;}
.h16_c00359{height:24.006347px;}
.ha_c00359{height:24.140715px;}
.hb_c00359{height:30.000000px;}
.h8_c00359{height:30.003375px;}
.hf_c00359{height:36.000000px;}
.h7_c00359{height:36.002592px;}
.h12_c00359{height:36.004050px;}
.h11_c00359{height:42.000000px;}
.h15_c00359{height:42.004116px;}
.h4_c00359{height:54.000000px;}
.h5_c00359{height:60.000000px;}
.h10_c00359{height:66.000000px;}
.h0_c00359{height:1251.450000px;}
.h1_c00359{height:1251.750000px;}
.w0_c00359{width:915.000000px;}
.x0_c00359{left:0.000000px;}
.x32_c00359{left:103.402500px;}
.x89_c00359{left:118.497000px;}
.x1_c00359{left:157.680000px;}
.x33_c00359{left:160.647000px;}
.x96_c00359{left:167.811000px;}
.x2_c00359{left:175.230000px;}
.x6c_c00359{left:176.826000px;}
.xa_c00359{left:183.600000px;}
.x94_c00359{left:185.220000px;}
.x97_c00359{left:192.651000px;}
.x6d_c00359{left:196.296000px;}
.x3_c00359{left:197.910000px;}
.x72_c00359{left:203.442218px;}
.x7d_c00359{left:204.930000px;}
.x8a_c00359{left:206.040000px;}
.xb_c00359{left:210.060000px;}
.xab_c00359{left:211.410000px;}
.xc_c00359{left:216.810000px;}
.xa9_c00359{left:219.240000px;}
.x6e_c00359{left:225.081000px;}
.xd_c00359{left:227.340000px;}
.x1d_c00359{left:237.330000px;}
.x73_c00359{left:245.847848px;}
.x41_c00359{left:249.052500px;}
.x50_c00359{left:253.695480px;}
.x8f_c00359{left:256.500000px;}
.x99_c00359{left:257.851500px;}
.x4_c00359{left:259.200000px;}
.xaa_c00359{left:261.090000px;}
.x7e_c00359{left:262.440000px;}
.x21_c00359{left:268.920000px;}
.x7f_c00359{left:272.700000px;}
.x5_c00359{left:275.130000px;}
.xae_c00359{left:276.961500px;}
.xa7_c00359{left:278.326500px;}
.x51_c00359{left:281.772908px;}
.x74_c00359{left:283.460910px;}
.x9a_c00359{left:286.741500px;}
.x48_c00359{left:291.249000px;}
.x42_c00359{left:292.270860px;}
.x52_c00359{left:294.188588px;}
.x80_c00359{left:296.460000px;}
.xa5_c00359{left:300.145500px;}
.x90_c00359{left:301.860000px;}
.x9b_c00359{left:304.291500px;}
.xe_c00359{left:306.990000px;}
.x53_c00359{left:312.022358px;}
.x3f_c00359{left:314.271000px;}
.x91_c00359{left:319.950000px;}
.x75_c00359{left:324.171518px;}
.x6f_c00359{left:325.333500px;}
.x77_c00359{left:327.160500px;}
.x6_c00359{left:328.590000px;}
.x29_c00359{left:329.670000px;}
.xf_c00359{left:333.450000px;}
.x34_c00359{left:334.491000px;}
.x7b_c00359{left:335.880000px;}
.x9c_c00359{left:337.771500px;}
.x70_c00359{left:339.606000px;}
.x79_c00359{left:342.090000px;}
.x7a_c00359{left:343.170000px;}
.x35_c00359{left:344.434500px;}
.x10_c00359{left:348.030000px;}
.x78_c00359{left:349.078500px;}
.xa8_c00359{left:351.556500px;}
.x36_c00359{left:354.402000px;}
.x2a_c00359{left:356.940000px;}
.x7_c00359{left:358.560000px;}
.x20_c00359{left:361.800000px;}
.x43_c00359{left:369.006498px;}
.x9d_c00359{left:371.692500px;}
.xaf_c00359{left:372.747000px;}
.x37_c00359{left:373.888500px;}
.x1e_c00359{left:379.890000px;}
.x11_c00359{left:381.240000px;}
.x71_c00359{left:383.071500px;}
.x2b_c00359{left:384.750000px;}
.x76_c00359{left:388.192463px;}
.x8_c00359{left:390.690000px;}
.x44_c00359{left:393.524640px;}
.x7c_c00359{left:397.710000px;}
.x92_c00359{left:402.570000px;}
.x54_c00359{left:404.446253px;}
.x81_c00359{left:405.540000px;}
.x12_c00359{left:406.620000px;}
.x13_c00359{left:412.290000px;}
.x45_c00359{left:414.848088px;}
.x49_c00359{left:417.627000px;}
.x2c_c00359{left:423.360000px;}
.x9e_c00359{left:427.087500px;}
.x14_c00359{left:431.190000px;}
.x85_c00359{left:432.810000px;}
.xb6_c00359{left:434.700000px;}
.x15_c00359{left:436.320000px;}
.x95_c00359{left:440.910000px;}
.x24_c00359{left:442.260000px;}
.x4a_c00359{left:444.619500px;}
.x9f_c00359{left:446.199000px;}
.x93_c00359{left:447.660000px;}
.x55_c00359{left:448.741905px;}
.x8b_c00359{left:453.586500px;}
.x25_c00359{left:456.570000px;}
.x2d_c00359{left:459.270000px;}
.x16_c00359{left:463.590000px;}
.x98_c00359{left:464.668500px;}
.x58_c00359{left:469.260000px;}
.x56_c00359{left:472.701765px;}
.x64_c00359{left:476.280000px;}
.x46_c00359{left:478.029522px;}
.x65_c00359{left:481.140000px;}
.xb3_c00359{left:484.329000px;}
.x22_c00359{left:485.460000px;}
.x4b_c00359{left:489.777000px;}
.x5e_c00359{left:491.670000px;}
.xb7_c00359{left:492.750000px;}
.xb0_c00359{left:493.786500px;}
.x66_c00359{left:495.720000px;}
.x17_c00359{left:498.150000px;}
.x8e_c00359{left:500.083297px;}
.x9_c00359{left:501.120000px;}
.x5f_c00359{left:502.470000px;}
.x59_c00359{left:504.090000px;}
.x26_c00359{left:507.060000px;}
.x4c_c00359{left:508.066500px;}
.x23_c00359{left:510.840000px;}
.x18_c00359{left:512.190000px;}
.x67_c00359{left:514.890000px;}
.xa0_c00359{left:516.475500px;}
.x47_c00359{left:518.774616px;}
.xa2_c00359{left:520.290000px;}
.x19_c00359{left:522.720000px;}
.x68_c00359{left:526.770000px;}
.x1a_c00359{left:528.390000px;}
.xb4_c00359{left:534.291000px;}
.x83_c00359{left:535.680000px;}
.x1b_c00359{left:538.650000px;}
.x86_c00359{left:540.000000px;}
.xb8_c00359{left:542.970000px;}
.x4d_c00359{left:544.476000px;}
.xac_c00359{left:546.210000px;}
.x5a_c00359{left:547.560000px;}
.xa4_c00359{left:549.990000px;}
.xa3_c00359{left:551.070000px;}
.xa6_c00359{left:552.616500px;}
.x57_c00359{left:553.755480px;}
.x60_c00359{left:556.200000px;}
.x87_c00359{left:558.900000px;}
.xb5_c00359{left:560.241000px;}
.x69_c00359{left:561.330000px;}
.xb1_c00359{left:564.987000px;}
.x39_c00359{left:566.190000px;}
.x6a_c00359{left:569.160000px;}
.x3c_c00359{left:570.240000px;}
.xa1_c00359{left:571.320000px;}
.x1c_c00359{left:572.940000px;}
.x2e_c00359{left:575.370000px;}
.xb2_c00359{left:577.402500px;}
.x8c_c00359{left:582.391500px;}
.x38_c00359{left:585.316500px;}
.x61_c00359{left:588.600000px;}
.x4e_c00359{left:592.824000px;}
.x88_c00359{left:598.860000px;}
.x84_c00359{left:600.750000px;}
.x1f_c00359{left:602.370000px;}
.x6b_c00359{left:603.450000px;}
.x82_c00359{left:604.530000px;}
.x62_c00359{left:607.230000px;}
.x3a_c00359{left:611.010000px;}
.x27_c00359{left:612.900000px;}
.x2f_c00359{left:615.330000px;}
.x5b_c00359{left:618.570000px;}
.x8d_c00359{left:626.082000px;}
.x28_c00359{left:629.910000px;}
.x63_c00359{left:631.260000px;}
.x3d_c00359{left:634.500000px;}
.x4f_c00359{left:635.685000px;}
.x30_c00359{left:643.410000px;}
.x5c_c00359{left:648.540000px;}
.x40_c00359{left:652.530000px;}
.xad_c00359{left:655.560000px;}
.x3e_c00359{left:662.310000px;}
.x3b_c00359{left:666.630000px;}
.x5d_c00359{left:677.160000px;}
.x31_c00359{left:679.860000px;}
@media print{
.v0_c00359{vertical-align:0.000000pt;}
.ls0_c00359{letter-spacing:0.000000pt;}
.ws0_c00359{word-spacing:0.000000pt;}
._0_c00359{width:292.276134pt;}
._2_c00359{width:734.189747pt;}
._1_c00359{width:930.835060pt;}
.fs9_c00359{font-size:10.666667pt;}
.fs4_c00359{font-size:10.667435pt;}
.fsb_c00359{font-size:10.668592pt;}
.fs1_c00359{font-size:16.000000pt;}
.fsa_c00359{font-size:16.001800pt;}
.fs10_c00359{font-size:16.005831pt;}
.fs0_c00359{font-size:21.333333pt;}
.fs7_c00359{font-size:21.335733pt;}
.fs11_c00359{font-size:21.336416pt;}
.fs13_c00359{font-size:21.338975pt;}
.fs8_c00359{font-size:26.666667pt;}
.fs6_c00359{font-size:26.669666pt;}
.fsc_c00359{font-size:32.000000pt;}
.fs5_c00359{font-size:32.002304pt;}
.fsf_c00359{font-size:32.003600pt;}
.fse_c00359{font-size:37.333333pt;}
.fs12_c00359{font-size:37.336992pt;}
.fs2_c00359{font-size:48.000000pt;}
.fs3_c00359{font-size:53.333333pt;}
.fsd_c00359{font-size:58.666667pt;}
.y0_c00359{bottom:0.000000pt;}
.yab_c00359{bottom:541.165333pt;}
.yaa_c00359{bottom:566.055249pt;}
.ya9_c00359{bottom:566.335420pt;}
.ya8_c00359{bottom:566.909347pt;}
.ya7_c00359{bottom:567.439880pt;}
.ya6_c00359{bottom:568.113657pt;}
.ya5_c00359{bottom:568.461325pt;}
.ya4_c00359{bottom:569.201189pt;}
.ya3_c00359{bottom:569.520000pt;}
.y9f_c00359{bottom:572.644000pt;}
.ya0_c00359{bottom:573.835325pt;}
.ya1_c00359{bottom:574.302235pt;}
.ya2_c00359{bottom:574.710549pt;}
.y9e_c00359{bottom:599.625575pt;}
.y9d_c00359{bottom:600.345763pt;}
.y9c_c00359{bottom:600.563907pt;}
.y9b_c00359{bottom:600.701493pt;}
.y9a_c00359{bottom:602.530535pt;}
.y99_c00359{bottom:603.247889pt;}
.y98_c00359{bottom:603.977960pt;}
.y97_c00359{bottom:604.320000pt;}
.y96_c00359{bottom:608.200000pt;}
.y95_c00359{bottom:614.681333pt;}
.y94_c00359{bottom:661.054667pt;}
.y93_c00359{bottom:661.218667pt;}
.y92_c00359{bottom:661.473333pt;}
.y91_c00359{bottom:661.858667pt;}
.y90_c00359{bottom:662.449333pt;}
.y8f_c00359{bottom:663.694667pt;}
.y8e_c00359{bottom:664.536000pt;}
.y8d_c00359{bottom:664.720000pt;}
.y8c_c00359{bottom:664.925333pt;}
.y8b_c00359{bottom:665.141333pt;}
.y8a_c00359{bottom:665.956000pt;}
.y89_c00359{bottom:666.002667pt;}
.y88_c00359{bottom:671.506667pt;}
.y87_c00359{bottom:671.877333pt;}
.y86_c00359{bottom:672.238667pt;}
.y85_c00359{bottom:673.225333pt;}
.y84_c00359{bottom:673.854667pt;}
.y83_c00359{bottom:674.422667pt;}
.y82_c00359{bottom:680.392000pt;}
.y81_c00359{bottom:694.308000pt;}
.y7f_c00359{bottom:726.722184pt;}
.y80_c00359{bottom:726.796000pt;}
.y7e_c00359{bottom:727.052880pt;}
.y7d_c00359{bottom:727.280832pt;}
.y7c_c00359{bottom:727.733208pt;}
.y7b_c00359{bottom:727.882176pt;}
.y7a_c00359{bottom:728.244588pt;}
.y79_c00359{bottom:728.581764pt;}
.y78_c00359{bottom:729.419844pt;}
.y77_c00359{bottom:729.878520pt;}
.y76_c00359{bottom:730.682112pt;}
.y75_c00359{bottom:730.800624pt;}
.y74_c00359{bottom:731.208000pt;}
.y73_c00359{bottom:732.141333pt;}
.y72_c00359{bottom:733.286667pt;}
.y71_c00359{bottom:733.602667pt;}
.y70_c00359{bottom:733.769333pt;}
.y6f_c00359{bottom:734.137333pt;}
.y6e_c00359{bottom:734.478667pt;}
.y6d_c00359{bottom:735.364000pt;}
.y6c_c00359{bottom:735.758667pt;}
.y62_c00359{bottom:735.828233pt;}
.y63_c00359{bottom:735.828713pt;}
.y6b_c00359{bottom:736.069333pt;}
.y6a_c00359{bottom:736.228000pt;}
.y69_c00359{bottom:736.553333pt;}
.y68_c00359{bottom:736.994667pt;}
.y67_c00359{bottom:737.040000pt;}
.y66_c00359{bottom:737.305333pt;}
.y65_c00359{bottom:739.481333pt;}
.y61_c00359{bottom:740.156493pt;}
.y64_c00359{bottom:742.706667pt;}
.y60_c00359{bottom:757.632200pt;}
.y5f_c00359{bottom:758.214740pt;}
.y5e_c00359{bottom:758.791220pt;}
.y5d_c00359{bottom:759.680160pt;}
.y5c_c00359{bottom:759.932140pt;}
.y5b_c00359{bottom:763.232760pt;}
.y5a_c00359{bottom:764.400000pt;}
.y59_c00359{bottom:764.414667pt;}
.y58_c00359{bottom:779.760000pt;}
.y57_c00359{bottom:791.180000pt;}
.y56_c00359{bottom:795.336000pt;}
.y55_c00359{bottom:826.042667pt;}
.y54_c00359{bottom:830.804000pt;}
.y53_c00359{bottom:835.788000pt;}
.y52_c00359{bottom:837.588000pt;}
.y3d_c00359{bottom:885.817333pt;}
.y51_c00359{bottom:889.073741pt;}
.y50_c00359{bottom:889.443912pt;}
.y3c_c00359{bottom:890.249333pt;}
.y4f_c00359{bottom:891.121333pt;}
.y4e_c00359{bottom:893.267027pt;}
.y4d_c00359{bottom:893.381407pt;}
.y4c_c00359{bottom:893.647260pt;}
.y4b_c00359{bottom:894.064627pt;}
.y4a_c00359{bottom:894.571427pt;}
.y49_c00359{bottom:895.039593pt;}
.y48_c00359{bottom:895.567660pt;}
.y47_c00359{bottom:895.920187pt;}
.y3b_c00359{bottom:896.373333pt;}
.y3a_c00359{bottom:897.812000pt;}
.y46_c00359{bottom:899.650060pt;}
.y45_c00359{bottom:899.833260pt;}
.y44_c00359{bottom:899.984340pt;}
.y43_c00359{bottom:900.229600pt;}
.y42_c00359{bottom:900.419900pt;}
.y41_c00359{bottom:901.442300pt;}
.y40_c00359{bottom:901.756600pt;}
.y3f_c00359{bottom:902.140400pt;}
.y3e_c00359{bottom:902.400000pt;}
.y39_c00359{bottom:918.063393pt;}
.y38_c00359{bottom:918.625793pt;}
.y37_c00359{bottom:918.840487pt;}
.y36_c00359{bottom:919.021273pt;}
.y35_c00359{bottom:919.849187pt;}
.y34_c00359{bottom:920.147313pt;}
.y33_c00359{bottom:920.373293pt;}
.y32_c00359{bottom:920.699247pt;}
.y31_c00359{bottom:921.240680pt;}
.y2c_c00359{bottom:921.631633pt;}
.y30_c00359{bottom:921.848880pt;}
.y2f_c00359{bottom:922.070660pt;}
.y2b_c00359{bottom:922.203113pt;}
.y2e_c00359{bottom:922.225533pt;}
.y2a_c00359{bottom:922.445633pt;}
.y2d_c00359{bottom:922.574560pt;}
.y29_c00359{bottom:922.847753pt;}
.y28_c00359{bottom:923.333213pt;}
.y27_c00359{bottom:923.577073pt;}
.y26_c00359{bottom:924.179173pt;}
.y25_c00359{bottom:924.539073pt;}
.y24_c00359{bottom:924.895433pt;}
.y23_c00359{bottom:925.129293pt;}
.y20_c00359{bottom:925.619579pt;}
.y22_c00359{bottom:926.224113pt;}
.y21_c00359{bottom:926.641333pt;}
.y1f_c00359{bottom:927.272960pt;}
.y1e_c00359{bottom:927.463264pt;}
.y1d_c00359{bottom:927.996949pt;}
.y15_c00359{bottom:928.489333pt;}
.y1c_c00359{bottom:929.120283pt;}
.y1b_c00359{bottom:929.499755pt;}
.y1a_c00359{bottom:929.935973pt;}
.y19_c00359{bottom:931.299899pt;}
.y18_c00359{bottom:932.067605pt;}
.y17_c00359{bottom:937.431904pt;}
.y16_c00359{bottom:941.040000pt;}
.y14_c00359{bottom:949.314667pt;}
.y13_c00359{bottom:954.496000pt;}
.y12_c00359{bottom:981.726667pt;}
.y11_c00359{bottom:982.116000pt;}
.y10_c00359{bottom:983.657333pt;}
.yf_c00359{bottom:983.996000pt;}
.ye_c00359{bottom:984.169333pt;}
.yd_c00359{bottom:984.257333pt;}
.yc_c00359{bottom:984.345333pt;}
.yb_c00359{bottom:985.890667pt;}
.ya_c00359{bottom:986.400000pt;}
.y9_c00359{bottom:987.045333pt;}
.y8_c00359{bottom:993.276000pt;}
.y7_c00359{bottom:996.832000pt;}
.y6_c00359{bottom:1005.482667pt;}
.y5_c00359{bottom:1009.318667pt;}
.y3_c00359{bottom:1011.457333pt;}
.y4_c00359{bottom:1014.000000pt;}
.y2_c00359{bottom:1015.608000pt;}
.y1_c00359{bottom:1026.562667pt;}
.hc_c00359{height:10.666667pt;}
.h6_c00359{height:10.667435pt;}
.he_c00359{height:10.668592pt;}
.h3_c00359{height:16.000000pt;}
.hd_c00359{height:16.001800pt;}
.h13_c00359{height:16.005831pt;}
.h2_c00359{height:21.333333pt;}
.h9_c00359{height:21.335733pt;}
.h14_c00359{height:21.336416pt;}
.h16_c00359{height:21.338975pt;}
.ha_c00359{height:21.458414pt;}
.hb_c00359{height:26.666667pt;}
.h8_c00359{height:26.669666pt;}
.hf_c00359{height:32.000000pt;}
.h7_c00359{height:32.002304pt;}
.h12_c00359{height:32.003600pt;}
.h11_c00359{height:37.333333pt;}
.h15_c00359{height:37.336992pt;}
.h4_c00359{height:48.000000pt;}
.h5_c00359{height:53.333333pt;}
.h10_c00359{height:58.666667pt;}
.h0_c00359{height:1112.400000pt;}
.h1_c00359{height:1112.666667pt;}
.w0_c00359{width:813.333333pt;}
.x0_c00359{left:0.000000pt;}
.x32_c00359{left:91.913333pt;}
.x89_c00359{left:105.330667pt;}
.x1_c00359{left:140.160000pt;}
.x33_c00359{left:142.797333pt;}
.x96_c00359{left:149.165333pt;}
.x2_c00359{left:155.760000pt;}
.x6c_c00359{left:157.178667pt;}
.xa_c00359{left:163.200000pt;}
.x94_c00359{left:164.640000pt;}
.x97_c00359{left:171.245333pt;}
.x6d_c00359{left:174.485333pt;}
.x3_c00359{left:175.920000pt;}
.x72_c00359{left:180.837527pt;}
.x7d_c00359{left:182.160000pt;}
.x8a_c00359{left:183.146667pt;}
.xb_c00359{left:186.720000pt;}
.xab_c00359{left:187.920000pt;}
.xc_c00359{left:192.720000pt;}
.xa9_c00359{left:194.880000pt;}
.x6e_c00359{left:200.072000pt;}
.xd_c00359{left:202.080000pt;}
.x1d_c00359{left:210.960000pt;}
.x73_c00359{left:218.531420pt;}
.x41_c00359{left:221.380000pt;}
.x50_c00359{left:225.507093pt;}
.x8f_c00359{left:228.000000pt;}
.x99_c00359{left:229.201333pt;}
.x4_c00359{left:230.400000pt;}
.xaa_c00359{left:232.080000pt;}
.x7e_c00359{left:233.280000pt;}
.x21_c00359{left:239.040000pt;}
.x7f_c00359{left:242.400000pt;}
.x5_c00359{left:244.560000pt;}
.xae_c00359{left:246.188000pt;}
.xa7_c00359{left:247.401333pt;}
.x51_c00359{left:250.464807pt;}
.x74_c00359{left:251.965253pt;}
.x9a_c00359{left:254.881333pt;}
.x48_c00359{left:258.888000pt;}
.x42_c00359{left:259.796320pt;}
.x52_c00359{left:261.500967pt;}
.x80_c00359{left:263.520000pt;}
.xa5_c00359{left:266.796000pt;}
.x90_c00359{left:268.320000pt;}
.x9b_c00359{left:270.481333pt;}
.xe_c00359{left:272.880000pt;}
.x53_c00359{left:277.353207pt;}
.x3f_c00359{left:279.352000pt;}
.x91_c00359{left:284.400000pt;}
.x75_c00359{left:288.152460pt;}
.x6f_c00359{left:289.185333pt;}
.x77_c00359{left:290.809333pt;}
.x6_c00359{left:292.080000pt;}
.x29_c00359{left:293.040000pt;}
.xf_c00359{left:296.400000pt;}
.x34_c00359{left:297.325333pt;}
.x7b_c00359{left:298.560000pt;}
.x9c_c00359{left:300.241333pt;}
.x70_c00359{left:301.872000pt;}
.x79_c00359{left:304.080000pt;}
.x7a_c00359{left:305.040000pt;}
.x35_c00359{left:306.164000pt;}
.x10_c00359{left:309.360000pt;}
.x78_c00359{left:310.292000pt;}
.xa8_c00359{left:312.494667pt;}
.x36_c00359{left:315.024000pt;}
.x2a_c00359{left:317.280000pt;}
.x7_c00359{left:318.720000pt;}
.x20_c00359{left:321.600000pt;}
.x43_c00359{left:328.005776pt;}
.x9d_c00359{left:330.393333pt;}
.xaf_c00359{left:331.330667pt;}
.x37_c00359{left:332.345333pt;}
.x1e_c00359{left:337.680000pt;}
.x11_c00359{left:338.880000pt;}
.x71_c00359{left:340.508000pt;}
.x2b_c00359{left:342.000000pt;}
.x76_c00359{left:345.059967pt;}
.x8_c00359{left:347.280000pt;}
.x44_c00359{left:349.799680pt;}
.x7c_c00359{left:353.520000pt;}
.x92_c00359{left:357.840000pt;}
.x54_c00359{left:359.507780pt;}
.x81_c00359{left:360.480000pt;}
.x12_c00359{left:361.440000pt;}
.x13_c00359{left:366.480000pt;}
.x45_c00359{left:368.753856pt;}
.x49_c00359{left:371.224000pt;}
.x2c_c00359{left:376.320000pt;}
.x9e_c00359{left:379.633333pt;}
.x14_c00359{left:383.280000pt;}
.x85_c00359{left:384.720000pt;}
.xb6_c00359{left:386.400000pt;}
.x15_c00359{left:387.840000pt;}
.x95_c00359{left:391.920000pt;}
.x24_c00359{left:393.120000pt;}
.x4a_c00359{left:395.217333pt;}
.x9f_c00359{left:396.621333pt;}
.x93_c00359{left:397.920000pt;}
.x55_c00359{left:398.881693pt;}
.x8b_c00359{left:403.188000pt;}
.x25_c00359{left:405.840000pt;}
.x2d_c00359{left:408.240000pt;}
.x16_c00359{left:412.080000pt;}
.x98_c00359{left:413.038667pt;}
.x58_c00359{left:417.120000pt;}
.x56_c00359{left:420.179347pt;}
.x64_c00359{left:423.360000pt;}
.x46_c00359{left:424.915131pt;}
.x65_c00359{left:427.680000pt;}
.xb3_c00359{left:430.514667pt;}
.x22_c00359{left:431.520000pt;}
.x4b_c00359{left:435.357333pt;}
.x5e_c00359{left:437.040000pt;}
.xb7_c00359{left:438.000000pt;}
.xb0_c00359{left:438.921333pt;}
.x66_c00359{left:440.640000pt;}
.x17_c00359{left:442.800000pt;}
.x8e_c00359{left:444.518487pt;}
.x9_c00359{left:445.440000pt;}
.x5f_c00359{left:446.640000pt;}
.x59_c00359{left:448.080000pt;}
.x26_c00359{left:450.720000pt;}
.x4c_c00359{left:451.614667pt;}
.x23_c00359{left:454.080000pt;}
.x18_c00359{left:455.280000pt;}
.x67_c00359{left:457.680000pt;}
.xa0_c00359{left:459.089333pt;}
.x47_c00359{left:461.132992pt;}
.xa2_c00359{left:462.480000pt;}
.x19_c00359{left:464.640000pt;}
.x68_c00359{left:468.240000pt;}
.x1a_c00359{left:469.680000pt;}
.xb4_c00359{left:474.925333pt;}
.x83_c00359{left:476.160000pt;}
.x1b_c00359{left:478.800000pt;}
.x86_c00359{left:480.000000pt;}
.xb8_c00359{left:482.640000pt;}
.x4d_c00359{left:483.978667pt;}
.xac_c00359{left:485.520000pt;}
.x5a_c00359{left:486.720000pt;}
.xa4_c00359{left:488.880000pt;}
.xa3_c00359{left:489.840000pt;}
.xa6_c00359{left:491.214667pt;}
.x57_c00359{left:492.227093pt;}
.x60_c00359{left:494.400000pt;}
.x87_c00359{left:496.800000pt;}
.xb5_c00359{left:497.992000pt;}
.x69_c00359{left:498.960000pt;}
.xb1_c00359{left:502.210667pt;}
.x39_c00359{left:503.280000pt;}
.x6a_c00359{left:505.920000pt;}
.x3c_c00359{left:506.880000pt;}
.xa1_c00359{left:507.840000pt;}
.x1c_c00359{left:509.280000pt;}
.x2e_c00359{left:511.440000pt;}
.xb2_c00359{left:513.246667pt;}
.x8c_c00359{left:517.681333pt;}
.x38_c00359{left:520.281333pt;}
.x61_c00359{left:523.200000pt;}
.x4e_c00359{left:526.954667pt;}
.x88_c00359{left:532.320000pt;}
.x84_c00359{left:534.000000pt;}
.x1f_c00359{left:535.440000pt;}
.x6b_c00359{left:536.400000pt;}
.x82_c00359{left:537.360000pt;}
.x62_c00359{left:539.760000pt;}
.x3a_c00359{left:543.120000pt;}
.x27_c00359{left:544.800000pt;}
.x2f_c00359{left:546.960000pt;}
.x5b_c00359{left:549.840000pt;}
.x8d_c00359{left:556.517333pt;}
.x28_c00359{left:559.920000pt;}
.x63_c00359{left:561.120000pt;}
.x3d_c00359{left:564.000000pt;}
.x4f_c00359{left:565.053333pt;}
.x30_c00359{left:571.920000pt;}
.x5c_c00359{left:576.480000pt;}
.x40_c00359{left:580.026667pt;}
.xad_c00359{left:582.720000pt;}
.x3e_c00359{left:588.720000pt;}
.x3b_c00359{left:592.560000pt;}
.x5d_c00359{left:601.920000pt;}
.x31_c00359{left:604.320000pt;}
}





/* 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_c00360 {
    display:none;
  }
  .loading-indicator_c00360.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00360 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_c00360 { 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_c00360" -> "#page-container .classname_c00360")
 */
.pf_c00360 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00360 { /* 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_c00360.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00360 { /* 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_c00360 { /* 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_c00360 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00360 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00360 {overflow:visible;}
  }
}
.c_c00360 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00360 { /* 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_c00360:after { /* webkit #35443 */
  content: '';
}
.t_c00360:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00360 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 */
}
.__c00360 { /* 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_c00360 { /* info for Javascript */
  display:none;
}
.l_c00360 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00360 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00360 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00360: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_c00360 {
    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_c00360.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00360.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_c00360 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00360{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00360;src:url('chunks/assets/font_dbd529e162d5851c7bfb6d27.woff2')format("woff");}.ff1_c00360{font-family:ff1_c00360;line-height:1.000000;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;}
.m24_c00360{transform:matrix(0.127344,0.002037,-0.003999,0.249968,0,0);-ms-transform:matrix(0.127344,0.002037,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.127344,0.002037,-0.003999,0.249968,0,0);}
.m27_c00360{transform:matrix(0.154030,0.002464,-0.003999,0.249968,0,0);-ms-transform:matrix(0.154030,0.002464,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.154030,0.002464,-0.003999,0.249968,0,0);}
.m74_c00360{transform:matrix(0.180257,0.002884,-0.003999,0.249968,0,0);-ms-transform:matrix(0.180257,0.002884,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.180257,0.002884,-0.003999,0.249968,0,0);}
.m70_c00360{transform:matrix(0.182607,0.002922,-0.003999,0.249968,0,0);-ms-transform:matrix(0.182607,0.002922,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.182607,0.002922,-0.003999,0.249968,0,0);}
.m72_c00360{transform:matrix(0.189131,0.003026,-0.003999,0.249968,0,0);-ms-transform:matrix(0.189131,0.003026,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.189131,0.003026,-0.003999,0.249968,0,0);}
.m2d_c00360{transform:matrix(0.193130,0.003090,-0.003999,0.249968,0,0);-ms-transform:matrix(0.193130,0.003090,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.193130,0.003090,-0.003999,0.249968,0,0);}
.m6f_c00360{transform:matrix(0.195190,0.003123,-0.003999,0.249968,0,0);-ms-transform:matrix(0.195190,0.003123,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.195190,0.003123,-0.003999,0.249968,0,0);}
.m2f_c00360{transform:matrix(0.196100,0.003138,-0.003999,0.249968,0,0);-ms-transform:matrix(0.196100,0.003138,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.196100,0.003138,-0.003999,0.249968,0,0);}
.m47_c00360{transform:matrix(0.198375,0.003174,-0.003999,0.249968,0,0);-ms-transform:matrix(0.198375,0.003174,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.198375,0.003174,-0.003999,0.249968,0,0);}
.m28_c00360{transform:matrix(0.199339,0.003189,-0.003999,0.249968,0,0);-ms-transform:matrix(0.199339,0.003189,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.199339,0.003189,-0.003999,0.249968,0,0);}
.m77_c00360{transform:matrix(0.199479,0.003192,-0.003999,0.249968,0,0);-ms-transform:matrix(0.199479,0.003192,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.199479,0.003192,-0.003999,0.249968,0,0);}
.m5e_c00360{transform:matrix(0.201284,0.003221,-0.003999,0.249968,0,0);-ms-transform:matrix(0.201284,0.003221,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.201284,0.003221,-0.003999,0.249968,0,0);}
.m76_c00360{transform:matrix(0.207298,0.003317,-0.003999,0.249968,0,0);-ms-transform:matrix(0.207298,0.003317,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.207298,0.003317,-0.003999,0.249968,0,0);}
.m2c_c00360{transform:matrix(0.209943,0.003359,-0.003999,0.249968,0,0);-ms-transform:matrix(0.209943,0.003359,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.209943,0.003359,-0.003999,0.249968,0,0);}
.m45_c00360{transform:matrix(0.211188,0.003379,-0.003999,0.249968,0,0);-ms-transform:matrix(0.211188,0.003379,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.211188,0.003379,-0.003999,0.249968,0,0);}
.m2b_c00360{transform:matrix(0.212273,0.003396,-0.003999,0.249968,0,0);-ms-transform:matrix(0.212273,0.003396,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.212273,0.003396,-0.003999,0.249968,0,0);}
.m25_c00360{transform:matrix(0.212823,0.003405,-0.003999,0.249968,0,0);-ms-transform:matrix(0.212823,0.003405,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.212823,0.003405,-0.003999,0.249968,0,0);}
.m71_c00360{transform:matrix(0.213843,0.003421,-0.003999,0.249968,0,0);-ms-transform:matrix(0.213843,0.003421,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.213843,0.003421,-0.003999,0.249968,0,0);}
.m2a_c00360{transform:matrix(0.214658,0.003435,-0.003999,0.249968,0,0);-ms-transform:matrix(0.214658,0.003435,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.214658,0.003435,-0.003999,0.249968,0,0);}
.m59_c00360{transform:matrix(0.215122,0.003442,-0.003999,0.249968,0,0);-ms-transform:matrix(0.215122,0.003442,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.215122,0.003442,-0.003999,0.249968,0,0);}
.m73_c00360{transform:matrix(0.216407,0.003463,-0.003999,0.249968,0,0);-ms-transform:matrix(0.216407,0.003463,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.216407,0.003463,-0.003999,0.249968,0,0);}
.m3e_c00360{transform:matrix(0.216837,0.003469,-0.003999,0.249968,0,0);-ms-transform:matrix(0.216837,0.003469,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.216837,0.003469,-0.003999,0.249968,0,0);}
.m30_c00360{transform:matrix(0.216942,0.003471,-0.003999,0.249968,0,0);-ms-transform:matrix(0.216942,0.003471,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.216942,0.003471,-0.003999,0.249968,0,0);}
.m75_c00360{transform:matrix(0.217422,0.003479,-0.003999,0.249968,0,0);-ms-transform:matrix(0.217422,0.003479,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.217422,0.003479,-0.003999,0.249968,0,0);}
.m56_c00360{transform:matrix(0.218962,0.003503,-0.003999,0.249968,0,0);-ms-transform:matrix(0.218962,0.003503,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.218962,0.003503,-0.003999,0.249968,0,0);}
.m1e_c00360{transform:matrix(0.219800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219800,0.000000,0.000000,0.250000,0,0);}
.m19_c00360{transform:matrix(0.220219,0.003964,-0.004499,0.249960,0,0);-ms-transform:matrix(0.220219,0.003964,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.220219,0.003964,-0.004499,0.249960,0,0);}
.m20_c00360{transform:matrix(0.221205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221205,0.000000,0.000000,0.250000,0,0);}
.m43_c00360{transform:matrix(0.222731,0.003564,-0.003999,0.249968,0,0);-ms-transform:matrix(0.222731,0.003564,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.222731,0.003564,-0.003999,0.249968,0,0);}
.m29_c00360{transform:matrix(0.222966,0.003567,-0.003999,0.249968,0,0);-ms-transform:matrix(0.222966,0.003567,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.222966,0.003567,-0.003999,0.249968,0,0);}
.m31_c00360{transform:matrix(0.223126,0.003570,-0.003999,0.249968,0,0);-ms-transform:matrix(0.223126,0.003570,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.223126,0.003570,-0.003999,0.249968,0,0);}
.m64_c00360{transform:matrix(0.223241,0.003572,-0.003999,0.249968,0,0);-ms-transform:matrix(0.223241,0.003572,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.223241,0.003572,-0.003999,0.249968,0,0);}
.m48_c00360{transform:matrix(0.225436,0.003607,-0.003999,0.249968,0,0);-ms-transform:matrix(0.225436,0.003607,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.225436,0.003607,-0.003999,0.249968,0,0);}
.m6c_c00360{transform:matrix(0.226716,0.003627,-0.003999,0.249968,0,0);-ms-transform:matrix(0.226716,0.003627,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.226716,0.003627,-0.003999,0.249968,0,0);}
.m41_c00360{transform:matrix(0.227236,0.003636,-0.003999,0.249968,0,0);-ms-transform:matrix(0.227236,0.003636,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.227236,0.003636,-0.003999,0.249968,0,0);}
.m3a_c00360{transform:matrix(0.228786,0.003661,-0.003999,0.249968,0,0);-ms-transform:matrix(0.228786,0.003661,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.228786,0.003661,-0.003999,0.249968,0,0);}
.m61_c00360{transform:matrix(0.230191,0.003683,-0.003999,0.249968,0,0);-ms-transform:matrix(0.230191,0.003683,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.230191,0.003683,-0.003999,0.249968,0,0);}
.m6a_c00360{transform:matrix(0.230296,0.003685,-0.003999,0.249968,0,0);-ms-transform:matrix(0.230296,0.003685,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.230296,0.003685,-0.003999,0.249968,0,0);}
.m6b_c00360{transform:matrix(0.230865,0.003694,-0.003999,0.249968,0,0);-ms-transform:matrix(0.230865,0.003694,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.230865,0.003694,-0.003999,0.249968,0,0);}
.m15_c00360{transform:matrix(0.231587,0.004169,-0.004499,0.249960,0,0);-ms-transform:matrix(0.231587,0.004169,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.231587,0.004169,-0.004499,0.249960,0,0);}
.m21_c00360{transform:matrix(0.232555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232555,0.000000,0.000000,0.250000,0,0);}
.m2e_c00360{transform:matrix(0.234435,0.003751,-0.003999,0.249968,0,0);-ms-transform:matrix(0.234435,0.003751,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.234435,0.003751,-0.003999,0.249968,0,0);}
.m1_c00360{transform:matrix(0.236590,0.006151,-0.006498,0.249916,0,0);-ms-transform:matrix(0.236590,0.006151,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.236590,0.006151,-0.006498,0.249916,0,0);}
.m5d_c00360{transform:matrix(0.238414,0.003815,-0.003999,0.249968,0,0);-ms-transform:matrix(0.238414,0.003815,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.238414,0.003815,-0.003999,0.249968,0,0);}
.m3f_c00360{transform:matrix(0.238504,0.003816,-0.003999,0.249968,0,0);-ms-transform:matrix(0.238504,0.003816,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.238504,0.003816,-0.003999,0.249968,0,0);}
.m57_c00360{transform:matrix(0.239369,0.003830,-0.003999,0.249968,0,0);-ms-transform:matrix(0.239369,0.003830,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.239369,0.003830,-0.003999,0.249968,0,0);}
.m4a_c00360{transform:matrix(0.240604,0.003850,-0.003999,0.249968,0,0);-ms-transform:matrix(0.240604,0.003850,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.240604,0.003850,-0.003999,0.249968,0,0);}
.m42_c00360{transform:matrix(0.240929,0.003855,-0.003999,0.249968,0,0);-ms-transform:matrix(0.240929,0.003855,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.240929,0.003855,-0.003999,0.249968,0,0);}
.m1b_c00360{transform:matrix(0.241981,0.004356,-0.004499,0.249960,0,0);-ms-transform:matrix(0.241981,0.004356,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.241981,0.004356,-0.004499,0.249960,0,0);}
.m1a_c00360{transform:matrix(0.243501,0.004383,-0.004499,0.249960,0,0);-ms-transform:matrix(0.243501,0.004383,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.243501,0.004383,-0.004499,0.249960,0,0);}
.m67_c00360{transform:matrix(0.244064,0.003905,-0.003999,0.249968,0,0);-ms-transform:matrix(0.244064,0.003905,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.244064,0.003905,-0.003999,0.249968,0,0);}
.m7d_c00360{transform:matrix(0.244080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244080,0.000000,0.000000,0.250000,0,0);}
.m4c_c00360{transform:matrix(0.244404,0.003910,-0.003999,0.249968,0,0);-ms-transform:matrix(0.244404,0.003910,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.244404,0.003910,-0.003999,0.249968,0,0);}
.m37_c00360{transform:matrix(0.246163,0.003939,-0.003999,0.249968,0,0);-ms-transform:matrix(0.246163,0.003939,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.246163,0.003939,-0.003999,0.249968,0,0);}
.m81_c00360{transform:matrix(0.246205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246205,0.000000,0.000000,0.250000,0,0);}
.m7a_c00360{transform:matrix(0.246940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246940,0.000000,0.000000,0.250000,0,0);}
.m4f_c00360{transform:matrix(0.247323,0.003957,-0.003999,0.249968,0,0);-ms-transform:matrix(0.247323,0.003957,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.247323,0.003957,-0.003999,0.249968,0,0);}
.m5c_c00360{transform:matrix(0.247358,0.003958,-0.003999,0.249968,0,0);-ms-transform:matrix(0.247358,0.003958,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.247358,0.003958,-0.003999,0.249968,0,0);}
.m49_c00360{transform:matrix(0.248098,0.003970,-0.003999,0.249968,0,0);-ms-transform:matrix(0.248098,0.003970,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.248098,0.003970,-0.003999,0.249968,0,0);}
.m5f_c00360{transform:matrix(0.248198,0.003971,-0.003999,0.249968,0,0);-ms-transform:matrix(0.248198,0.003971,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.248198,0.003971,-0.003999,0.249968,0,0);}
.m7f_c00360{transform:matrix(0.248775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248775,0.000000,0.000000,0.250000,0,0);}
.m58_c00360{transform:matrix(0.248848,0.003982,-0.003999,0.249968,0,0);-ms-transform:matrix(0.248848,0.003982,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.248848,0.003982,-0.003999,0.249968,0,0);}
.m3d_c00360{transform:matrix(0.249373,0.003990,-0.003999,0.249968,0,0);-ms-transform:matrix(0.249373,0.003990,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.249373,0.003990,-0.003999,0.249968,0,0);}
.m60_c00360{transform:matrix(0.249593,0.003993,-0.003999,0.249968,0,0);-ms-transform:matrix(0.249593,0.003993,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.249593,0.003993,-0.003999,0.249968,0,0);}
.m32_c00360{transform:matrix(0.250883,0.004014,-0.003999,0.249968,0,0);-ms-transform:matrix(0.250883,0.004014,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.250883,0.004014,-0.003999,0.249968,0,0);}
.m3c_c00360{transform:matrix(0.251003,0.004016,-0.003999,0.249968,0,0);-ms-transform:matrix(0.251003,0.004016,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.251003,0.004016,-0.003999,0.249968,0,0);}
.m16_c00360{transform:matrix(0.251404,0.004525,-0.004499,0.249960,0,0);-ms-transform:matrix(0.251404,0.004525,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.251404,0.004525,-0.004499,0.249960,0,0);}
.m35_c00360{transform:matrix(0.251413,0.004023,-0.003999,0.249968,0,0);-ms-transform:matrix(0.251413,0.004023,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.251413,0.004023,-0.003999,0.249968,0,0);}
.m46_c00360{transform:matrix(0.251488,0.004024,-0.003999,0.249968,0,0);-ms-transform:matrix(0.251488,0.004024,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.251488,0.004024,-0.003999,0.249968,0,0);}
.m23_c00360{transform:matrix(0.251720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251720,0.000000,0.000000,0.250000,0,0);}
.m44_c00360{transform:matrix(0.252378,0.004038,-0.003999,0.249968,0,0);-ms-transform:matrix(0.252378,0.004038,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.252378,0.004038,-0.003999,0.249968,0,0);}
.m69_c00360{transform:matrix(0.252558,0.004041,-0.003999,0.249968,0,0);-ms-transform:matrix(0.252558,0.004041,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.252558,0.004041,-0.003999,0.249968,0,0);}
.m80_c00360{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m40_c00360{transform:matrix(0.253972,0.004064,-0.003999,0.249968,0,0);-ms-transform:matrix(0.253972,0.004064,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.253972,0.004064,-0.003999,0.249968,0,0);}
.m38_c00360{transform:matrix(0.254147,0.004066,-0.003999,0.249968,0,0);-ms-transform:matrix(0.254147,0.004066,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.254147,0.004066,-0.003999,0.249968,0,0);}
.m12_c00360{transform:matrix(0.255169,0.004593,-0.004499,0.249960,0,0);-ms-transform:matrix(0.255169,0.004593,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.255169,0.004593,-0.004499,0.249960,0,0);}
.m5a_c00360{transform:matrix(0.255232,0.004084,-0.003999,0.249968,0,0);-ms-transform:matrix(0.255232,0.004084,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.255232,0.004084,-0.003999,0.249968,0,0);}
.m33_c00360{transform:matrix(0.255407,0.004087,-0.003999,0.249968,0,0);-ms-transform:matrix(0.255407,0.004087,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.255407,0.004087,-0.003999,0.249968,0,0);}
.m5b_c00360{transform:matrix(0.255672,0.004091,-0.003999,0.249968,0,0);-ms-transform:matrix(0.255672,0.004091,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.255672,0.004091,-0.003999,0.249968,0,0);}
.m7e_c00360{transform:matrix(0.255990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255990,0.000000,0.000000,0.250000,0,0);}
.m11_c00360{transform:matrix(0.256258,0.004613,-0.004499,0.249960,0,0);-ms-transform:matrix(0.256258,0.004613,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.256258,0.004613,-0.004499,0.249960,0,0);}
.m79_c00360{transform:matrix(0.256330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256330,0.000000,0.000000,0.250000,0,0);}
.m52_c00360{transform:matrix(0.257332,0.004117,-0.003999,0.249968,0,0);-ms-transform:matrix(0.257332,0.004117,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.257332,0.004117,-0.003999,0.249968,0,0);}
.m6e_c00360{transform:matrix(0.257387,0.004118,-0.003999,0.249968,0,0);-ms-transform:matrix(0.257387,0.004118,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.257387,0.004118,-0.003999,0.249968,0,0);}
.m18_c00360{transform:matrix(0.257508,0.004635,-0.004499,0.249960,0,0);-ms-transform:matrix(0.257508,0.004635,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.257508,0.004635,-0.004499,0.249960,0,0);}
.m55_c00360{transform:matrix(0.257547,0.004121,-0.003999,0.249968,0,0);-ms-transform:matrix(0.257547,0.004121,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.257547,0.004121,-0.003999,0.249968,0,0);}
.m39_c00360{transform:matrix(0.259177,0.004147,-0.003999,0.249968,0,0);-ms-transform:matrix(0.259177,0.004147,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.259177,0.004147,-0.003999,0.249968,0,0);}
.m3_c00360{transform:matrix(0.259567,0.006749,-0.006498,0.249916,0,0);-ms-transform:matrix(0.259567,0.006749,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.259567,0.006749,-0.006498,0.249916,0,0);}
.m65_c00360{transform:matrix(0.260392,0.004166,-0.003999,0.249968,0,0);-ms-transform:matrix(0.260392,0.004166,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.260392,0.004166,-0.003999,0.249968,0,0);}
.m26_c00360{transform:matrix(0.261811,0.004189,-0.003999,0.249968,0,0);-ms-transform:matrix(0.261811,0.004189,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.261811,0.004189,-0.003999,0.249968,0,0);}
.m7b_c00360{transform:matrix(0.263790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263790,0.000000,0.000000,0.250000,0,0);}
.m34_c00360{transform:matrix(0.263901,0.004222,-0.003999,0.249968,0,0);-ms-transform:matrix(0.263901,0.004222,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.263901,0.004222,-0.003999,0.249968,0,0);}
.m22_c00360{transform:matrix(0.264070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264070,0.000000,0.000000,0.250000,0,0);}
.m62_c00360{transform:matrix(0.264581,0.004233,-0.003999,0.249968,0,0);-ms-transform:matrix(0.264581,0.004233,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.264581,0.004233,-0.003999,0.249968,0,0);}
.m4b_c00360{transform:matrix(0.265246,0.004244,-0.003999,0.249968,0,0);-ms-transform:matrix(0.265246,0.004244,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.265246,0.004244,-0.003999,0.249968,0,0);}
.m0_c00360{transform:matrix(0.265585,0.006905,-0.006498,0.249916,0,0);-ms-transform:matrix(0.265585,0.006905,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.265585,0.006905,-0.006498,0.249916,0,0);}
.m14_c00360{transform:matrix(0.266602,0.004799,-0.004499,0.249960,0,0);-ms-transform:matrix(0.266602,0.004799,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.266602,0.004799,-0.004499,0.249960,0,0);}
.m1c_c00360{transform:matrix(0.268795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268795,0.000000,0.000000,0.250000,0,0);}
.m63_c00360{transform:matrix(0.269321,0.004309,-0.003999,0.249968,0,0);-ms-transform:matrix(0.269321,0.004309,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.269321,0.004309,-0.003999,0.249968,0,0);}
.m2_c00360{transform:matrix(0.270404,0.007030,-0.006498,0.249916,0,0);-ms-transform:matrix(0.270404,0.007030,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.270404,0.007030,-0.006498,0.249916,0,0);}
.m66_c00360{transform:matrix(0.271605,0.004346,-0.003999,0.249968,0,0);-ms-transform:matrix(0.271605,0.004346,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.271605,0.004346,-0.003999,0.249968,0,0);}
.m36_c00360{transform:matrix(0.271770,0.004348,-0.003999,0.249968,0,0);-ms-transform:matrix(0.271770,0.004348,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.271770,0.004348,-0.003999,0.249968,0,0);}
.m68_c00360{transform:matrix(0.272215,0.004355,-0.003999,0.249968,0,0);-ms-transform:matrix(0.272215,0.004355,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.272215,0.004355,-0.003999,0.249968,0,0);}
.m3b_c00360{transform:matrix(0.272560,0.004361,-0.003999,0.249968,0,0);-ms-transform:matrix(0.272560,0.004361,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.272560,0.004361,-0.003999,0.249968,0,0);}
.m1d_c00360{transform:matrix(0.273560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273560,0.000000,0.000000,0.250000,0,0);}
.m6d_c00360{transform:matrix(0.274390,0.004390,-0.003999,0.249968,0,0);-ms-transform:matrix(0.274390,0.004390,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.274390,0.004390,-0.003999,0.249968,0,0);}
.m13_c00360{transform:matrix(0.274920,0.004949,-0.004499,0.249960,0,0);-ms-transform:matrix(0.274920,0.004949,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.274920,0.004949,-0.004499,0.249960,0,0);}
.m51_c00360{transform:matrix(0.275515,0.004408,-0.003999,0.249968,0,0);-ms-transform:matrix(0.275515,0.004408,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.275515,0.004408,-0.003999,0.249968,0,0);}
.m1f_c00360{transform:matrix(0.276745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276745,0.000000,0.000000,0.250000,0,0);}
.m17_c00360{transform:matrix(0.278620,0.005015,-0.004499,0.249960,0,0);-ms-transform:matrix(0.278620,0.005015,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.278620,0.005015,-0.004499,0.249960,0,0);}
.m7c_c00360{transform:matrix(0.281400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281400,0.000000,0.000000,0.250000,0,0);}
.mf_c00360{transform:matrix(0.282969,0.005376,-0.004749,0.249955,0,0);-ms-transform:matrix(0.282969,0.005376,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.282969,0.005376,-0.004749,0.249955,0,0);}
.m4d_c00360{transform:matrix(0.289693,0.004635,-0.003999,0.249968,0,0);-ms-transform:matrix(0.289693,0.004635,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.289693,0.004635,-0.003999,0.249968,0,0);}
.m50_c00360{transform:matrix(0.290033,0.004641,-0.003999,0.249968,0,0);-ms-transform:matrix(0.290033,0.004641,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.290033,0.004641,-0.003999,0.249968,0,0);}
.m54_c00360{transform:matrix(0.298627,0.004778,-0.003999,0.249968,0,0);-ms-transform:matrix(0.298627,0.004778,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.298627,0.004778,-0.003999,0.249968,0,0);}
.m4e_c00360{transform:matrix(0.301301,0.004821,-0.003999,0.249968,0,0);-ms-transform:matrix(0.301301,0.004821,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.301301,0.004821,-0.003999,0.249968,0,0);}
.m53_c00360{transform:matrix(0.303666,0.004859,-0.003999,0.249968,0,0);-ms-transform:matrix(0.303666,0.004859,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.303666,0.004859,-0.003999,0.249968,0,0);}
.m7_c00360{transform:matrix(0.322007,0.006118,-0.004749,0.249955,0,0);-ms-transform:matrix(0.322007,0.006118,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.322007,0.006118,-0.004749,0.249955,0,0);}
.ma_c00360{transform:matrix(0.323052,0.006138,-0.004749,0.249955,0,0);-ms-transform:matrix(0.323052,0.006138,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.323052,0.006138,-0.004749,0.249955,0,0);}
.mc_c00360{transform:matrix(0.356481,0.006773,-0.004749,0.249955,0,0);-ms-transform:matrix(0.356481,0.006773,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.356481,0.006773,-0.004749,0.249955,0,0);}
.mb_c00360{transform:matrix(0.361185,0.006863,-0.004749,0.249955,0,0);-ms-transform:matrix(0.361185,0.006863,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.361185,0.006863,-0.004749,0.249955,0,0);}
.m6_c00360{transform:matrix(0.362425,0.006886,-0.004749,0.249955,0,0);-ms-transform:matrix(0.362425,0.006886,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.362425,0.006886,-0.004749,0.249955,0,0);}
.m5_c00360{transform:matrix(0.368883,0.007009,-0.004749,0.249955,0,0);-ms-transform:matrix(0.368883,0.007009,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.368883,0.007009,-0.004749,0.249955,0,0);}
.m8_c00360{transform:matrix(0.388260,0.007377,-0.004749,0.249955,0,0);-ms-transform:matrix(0.388260,0.007377,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.388260,0.007377,-0.004749,0.249955,0,0);}
.md_c00360{transform:matrix(0.399928,0.007599,-0.004749,0.249955,0,0);-ms-transform:matrix(0.399928,0.007599,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.399928,0.007599,-0.004749,0.249955,0,0);}
.m10_c00360{transform:matrix(0.438556,0.008333,-0.004749,0.249955,0,0);-ms-transform:matrix(0.438556,0.008333,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.438556,0.008333,-0.004749,0.249955,0,0);}
.m4_c00360{transform:matrix(0.496700,0.009437,-0.004749,0.249955,0,0);-ms-transform:matrix(0.496700,0.009437,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.496700,0.009437,-0.004749,0.249955,0,0);}
.me_c00360{transform:matrix(0.582390,0.011065,-0.004749,0.249955,0,0);-ms-transform:matrix(0.582390,0.011065,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.582390,0.011065,-0.004749,0.249955,0,0);}
.m9_c00360{transform:matrix(0.610465,0.011599,-0.004749,0.249955,0,0);-ms-transform:matrix(0.610465,0.011599,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.610465,0.011599,-0.004749,0.249955,0,0);}
.m78_c00360{transform:matrix(1.350480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.350480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.350480,0.000000,0.000000,0.250000,0,0);}
.v0_c00360{vertical-align:0.000000px;}
.ls0_c00360{letter-spacing:0.000000px;}
.sc__c00360{text-shadow:none;}
.sc0_c00360{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__c00360{-webkit-text-stroke:0px transparent;}
.sc0_c00360{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00360{word-spacing:0.000000px;}
._0_c00360{width:46.595851px;}
.fc0_c00360{color:transparent;}
.fs1_c00360{font-size:18.003249px;}
.fs9_c00360{font-size:30.000000px;}
.fs7_c00360{font-size:66.008447px;}
.fs3_c00360{font-size:72.000000px;}
.fs5_c00360{font-size:72.009215px;}
.fs2_c00360{font-size:72.011663px;}
.fs0_c00360{font-size:72.024332px;}
.fs6_c00360{font-size:78.009983px;}
.fs4_c00360{font-size:84.010751px;}
.fs8_c00360{font-size:90.011519px;}
.y0_c00360{bottom:0.000000px;}
.y78_c00360{bottom:640.237500px;}
.y77_c00360{bottom:673.074000px;}
.y76_c00360{bottom:743.877720px;}
.y75_c00360{bottom:744.671964px;}
.y74_c00360{bottom:745.458396px;}
.y73_c00360{bottom:745.779120px;}
.y72_c00360{bottom:746.551260px;}
.y71_c00360{bottom:746.900040px;}
.y70_c00360{bottom:747.755688px;}
.y6f_c00360{bottom:747.984480px;}
.y6e_c00360{bottom:748.413576px;}
.y6d_c00360{bottom:776.093592px;}
.y6c_c00360{bottom:776.505900px;}
.y6b_c00360{bottom:777.452340px;}
.y6a_c00360{bottom:777.834816px;}
.y69_c00360{bottom:778.239984px;}
.y68_c00360{bottom:778.638840px;}
.y67_c00360{bottom:778.920204px;}
.y66_c00360{bottom:779.717640px;}
.y65_c00360{bottom:780.103560px;}
.y64_c00360{bottom:780.920604px;}
.y63_c00360{bottom:781.688112px;}
.y62_c00360{bottom:782.080332px;}
.y61_c00360{bottom:783.145680px;}
.y60_c00360{bottom:783.791148px;}
.y5f_c00360{bottom:814.711932px;}
.y5e_c00360{bottom:815.184360px;}
.y5d_c00360{bottom:815.655372px;}
.y5c_c00360{bottom:815.864988px;}
.y5b_c00360{bottom:816.044364px;}
.y5a_c00360{bottom:816.503652px;}
.y59_c00360{bottom:817.204848px;}
.y58_c00360{bottom:817.902096px;}
.y57_c00360{bottom:818.204580px;}
.y56_c00360{bottom:818.748312px;}
.y55_c00360{bottom:819.201156px;}
.y54_c00360{bottom:819.432264px;}
.y53_c00360{bottom:849.098616px;}
.y52_c00360{bottom:850.126200px;}
.y51_c00360{bottom:851.609688px;}
.y50_c00360{bottom:852.098760px;}
.y4f_c00360{bottom:852.597840px;}
.y4e_c00360{bottom:852.957624px;}
.y4d_c00360{bottom:854.100468px;}
.y4c_c00360{bottom:854.603220px;}
.y4b_c00360{bottom:856.094004px;}
.y4a_c00360{bottom:857.252880px;}
.y49_c00360{bottom:857.730756px;}
.y48_c00360{bottom:858.395400px;}
.y47_c00360{bottom:858.859812px;}
.y46_c00360{bottom:887.858448px;}
.y45_c00360{bottom:888.079500px;}
.y44_c00360{bottom:888.191796px;}
.y43_c00360{bottom:888.631452px;}
.y42_c00360{bottom:888.799584px;}
.y41_c00360{bottom:889.250964px;}
.y40_c00360{bottom:889.463856px;}
.y3f_c00360{bottom:889.796244px;}
.y3e_c00360{bottom:890.017272px;}
.y3d_c00360{bottom:890.463276px;}
.y3c_c00360{bottom:890.783400px;}
.y3b_c00360{bottom:890.993292px;}
.y3a_c00360{bottom:918.947520px;}
.y39_c00360{bottom:919.490412px;}
.y38_c00360{bottom:920.281224px;}
.y37_c00360{bottom:920.610456px;}
.y36_c00360{bottom:921.264420px;}
.y35_c00360{bottom:921.620256px;}
.y34_c00360{bottom:921.951732px;}
.y33_c00360{bottom:922.835520px;}
.y32_c00360{bottom:923.381112px;}
.y31_c00360{bottom:924.144672px;}
.y30_c00360{bottom:924.378960px;}
.y2f_c00360{bottom:925.556196px;}
.y2e_c00360{bottom:955.025196px;}
.y2d_c00360{bottom:955.739004px;}
.y2c_c00360{bottom:956.257548px;}
.y2b_c00360{bottom:958.028796px;}
.y2a_c00360{bottom:958.573380px;}
.y29_c00360{bottom:959.307132px;}
.y28_c00360{bottom:959.994972px;}
.y27_c00360{bottom:961.753332px;}
.y26_c00360{bottom:962.833620px;}
.y25_c00360{bottom:963.364020px;}
.y24_c00360{bottom:963.717252px;}
.y23_c00360{bottom:964.591236px;}
.y22_c00360{bottom:964.936308px;}
.y21_c00360{bottom:965.251500px;}
.y20_c00360{bottom:1012.588500px;}
.y1f_c00360{bottom:1043.047872px;}
.y1e_c00360{bottom:1043.670276px;}
.y1d_c00360{bottom:1044.271944px;}
.y1c_c00360{bottom:1044.694872px;}
.y1b_c00360{bottom:1046.664603px;}
.y1a_c00360{bottom:1047.680343px;}
.y19_c00360{bottom:1048.278366px;}
.y18_c00360{bottom:1049.857164px;}
.y17_c00360{bottom:1051.481268px;}
.y16_c00360{bottom:1052.458317px;}
.y15_c00360{bottom:1053.274500px;}
.y14_c00360{bottom:1121.426547px;}
.y13_c00360{bottom:1121.640326px;}
.y12_c00360{bottom:1121.861058px;}
.y11_c00360{bottom:1122.011253px;}
.y10_c00360{bottom:1122.257436px;}
.yf_c00360{bottom:1122.461239px;}
.ye_c00360{bottom:1122.698531px;}
.yd_c00360{bottom:1122.861579px;}
.yc_c00360{bottom:1123.107676px;}
.yb_c00360{bottom:1123.297743px;}
.ya_c00360{bottom:1123.642279px;}
.y9_c00360{bottom:1123.955153px;}
.y8_c00360{bottom:1124.118600px;}
.y7_c00360{bottom:1124.364897px;}
.y6_c00360{bottom:1124.570268px;}
.y5_c00360{bottom:1124.842500px;}
.y4_c00360{bottom:1136.114649px;}
.y3_c00360{bottom:1138.711542px;}
.y2_c00360{bottom:1139.582451px;}
.y1_c00360{bottom:1141.029000px;}
.h3_c00360{height:18.003249px;}
.hb_c00360{height:30.000000px;}
.h9_c00360{height:66.008447px;}
.h5_c00360{height:72.000000px;}
.h7_c00360{height:72.009215px;}
.h4_c00360{height:72.011663px;}
.h2_c00360{height:72.024332px;}
.h8_c00360{height:78.009983px;}
.h6_c00360{height:84.010751px;}
.ha_c00360{height:90.011519px;}
.h0_c00360{height:1251.450000px;}
.h1_c00360{height:1251.750000px;}
.w0_c00360{width:915.000000px;}
.x0_c00360{left:0.000000px;}
.x63_c00360{left:147.960000px;}
.x64_c00360{left:151.200000px;}
.x49_c00360{left:152.497248px;}
.x20_c00360{left:155.250000px;}
.x42_c00360{left:185.620476px;}
.x26_c00360{left:188.605500px;}
.x5c_c00360{left:194.851716px;}
.x3a_c00360{left:197.579112px;}
.x51_c00360{left:205.841964px;}
.x27_c00360{left:208.305000px;}
.x5d_c00360{left:217.778424px;}
.x65_c00360{left:227.340000px;}
.x28_c00360{left:229.872000px;}
.x21_c00360{left:241.650000px;}
.x4a_c00360{left:250.195812px;}
.x15_c00360{left:262.225500px;}
.x32_c00360{left:272.850768px;}
.x29_c00360{left:284.496000px;}
.x52_c00360{left:294.650652px;}
.x33_c00360{left:296.308524px;}
.x5e_c00360{left:303.327132px;}
.x16_c00360{left:307.569000px;}
.x66_c00360{left:324.540000px;}
.x4b_c00360{left:327.971520px;}
.x22_c00360{left:329.940000px;}
.x5f_c00360{left:338.160468px;}
.x2a_c00360{left:339.723000px;}
.x3b_c00360{left:350.676540px;}
.x17_c00360{left:361.849500px;}
.x4c_c00360{left:371.164236px;}
.x1_c00360{left:373.321500px;}
.x53_c00360{left:391.327344px;}
.x3c_c00360{left:394.967340px;}
.x5_c00360{left:406.548000px;}
.x60_c00360{left:415.395384px;}
.x6_c00360{left:420.876000px;}
.x34_c00360{left:427.268100px;}
.x2_c00360{left:428.958000px;}
.x7_c00360{left:431.685000px;}
.x67_c00360{left:436.050000px;}
.x43_c00360{left:438.291984px;}
.x8_c00360{left:444.648000px;}
.x61_c00360{left:447.537480px;}
.x18_c00360{left:452.077500px;}
.x9_c00360{left:453.250500px;}
.x54_c00360{left:459.365688px;}
.x3d_c00360{left:461.409528px;}
.x3_c00360{left:462.454500px;}
.xa_c00360{left:469.717500px;}
.x44_c00360{left:471.777012px;}
.x68_c00360{left:481.410000px;}
.xb_c00360{left:487.851000px;}
.x55_c00360{left:491.550252px;}
.x23_c00360{left:495.990000px;}
.xc_c00360{left:497.854500px;}
.x69_c00360{left:501.930000px;}
.x3e_c00360{left:504.066540px;}
.xd_c00360{left:510.807000px;}
.x35_c00360{left:515.607072px;}
.x2b_c00360{left:517.138500px;}
.xe_c00360{left:519.388500px;}
.x62_c00360{left:526.134516px;}
.x24_c00360{left:527.850000px;}
.xf_c00360{left:531.877500px;}
.x19_c00360{left:539.788500px;}
.x10_c00360{left:542.604000px;}
.x36_c00360{left:548.796264px;}
.x11_c00360{left:555.561000px;}
.x56_c00360{left:557.988000px;}
.x2c_c00360{left:560.128500px;}
.x4_c00360{left:562.335000px;}
.x12_c00360{left:563.466000px;}
.x45_c00360{left:571.974120px;}
.x1a_c00360{left:573.012000px;}
.x13_c00360{left:575.083500px;}
.x57_c00360{left:581.481012px;}
.x25_c00360{left:583.470000px;}
.x14_c00360{left:586.335000px;}
.x6a_c00360{left:590.490000px;}
.x3f_c00360{left:594.262404px;}
.x2d_c00360{left:605.988000px;}
.x58_c00360{left:614.661624px;}
.x40_c00360{left:627.745284px;}
.x1b_c00360{left:629.442000px;}
.x4d_c00360{left:636.654468px;}
.x46_c00360{left:637.859676px;}
.x2e_c00360{left:640.024500px;}
.x59_c00360{left:648.424284px;}
.x37_c00360{left:649.793460px;}
.x4e_c00360{left:662.306664px;}
.x5a_c00360{left:680.299824px;}
.x38_c00360{left:682.748628px;}
.x4f_c00360{left:692.286984px;}
.x41_c00360{left:715.801788px;}
.x47_c00360{left:736.766760px;}
.x1c_c00360{left:738.871500px;}
.x2f_c00360{left:750.727500px;}
.x50_c00360{left:759.516156px;}
.x1d_c00360{left:762.367500px;}
.x30_c00360{left:783.136500px;}
.x5b_c00360{left:793.447548px;}
.x1e_c00360{left:795.793500px;}
.x48_c00360{left:805.304364px;}
.x39_c00360{left:816.180444px;}
.x31_c00360{left:827.749500px;}
.x1f_c00360{left:830.371500px;}
@media print{
.v0_c00360{vertical-align:0.000000pt;}
.ls0_c00360{letter-spacing:0.000000pt;}
.ws0_c00360{word-spacing:0.000000pt;}
._0_c00360{width:41.418534pt;}
.fs1_c00360{font-size:16.002888pt;}
.fs9_c00360{font-size:26.666667pt;}
.fs7_c00360{font-size:58.674176pt;}
.fs3_c00360{font-size:64.000000pt;}
.fs5_c00360{font-size:64.008191pt;}
.fs2_c00360{font-size:64.010367pt;}
.fs0_c00360{font-size:64.021628pt;}
.fs6_c00360{font-size:69.342207pt;}
.fs4_c00360{font-size:74.676223pt;}
.fs8_c00360{font-size:80.010239pt;}
.y0_c00360{bottom:0.000000pt;}
.y78_c00360{bottom:569.100000pt;}
.y77_c00360{bottom:598.288000pt;}
.y76_c00360{bottom:661.224640pt;}
.y75_c00360{bottom:661.930635pt;}
.y74_c00360{bottom:662.629685pt;}
.y73_c00360{bottom:662.914773pt;}
.y72_c00360{bottom:663.601120pt;}
.y71_c00360{bottom:663.911147pt;}
.y70_c00360{bottom:664.671723pt;}
.y6f_c00360{bottom:664.875093pt;}
.y6e_c00360{bottom:665.256512pt;}
.y6d_c00360{bottom:689.860971pt;}
.y6c_c00360{bottom:690.227467pt;}
.y6b_c00360{bottom:691.068747pt;}
.y6a_c00360{bottom:691.408725pt;}
.y69_c00360{bottom:691.768875pt;}
.y68_c00360{bottom:692.123413pt;}
.y67_c00360{bottom:692.373515pt;}
.y66_c00360{bottom:693.082347pt;}
.y65_c00360{bottom:693.425387pt;}
.y64_c00360{bottom:694.151648pt;}
.y63_c00360{bottom:694.833877pt;}
.y62_c00360{bottom:695.182517pt;}
.y61_c00360{bottom:696.129493pt;}
.y60_c00360{bottom:696.703243pt;}
.y5f_c00360{bottom:724.188384pt;}
.y5e_c00360{bottom:724.608320pt;}
.y5d_c00360{bottom:725.026997pt;}
.y5c_c00360{bottom:725.213323pt;}
.y5b_c00360{bottom:725.372768pt;}
.y5a_c00360{bottom:725.781024pt;}
.y59_c00360{bottom:726.404309pt;}
.y58_c00360{bottom:727.024085pt;}
.y57_c00360{bottom:727.292960pt;}
.y56_c00360{bottom:727.776277pt;}
.y55_c00360{bottom:728.178805pt;}
.y54_c00360{bottom:728.384235pt;}
.y53_c00360{bottom:754.754325pt;}
.y52_c00360{bottom:755.667733pt;}
.y51_c00360{bottom:756.986389pt;}
.y50_c00360{bottom:757.421120pt;}
.y4f_c00360{bottom:757.864747pt;}
.y4e_c00360{bottom:758.184555pt;}
.y4d_c00360{bottom:759.200416pt;}
.y4c_c00360{bottom:759.647307pt;}
.y4b_c00360{bottom:760.972448pt;}
.y4a_c00360{bottom:762.002560pt;}
.y49_c00360{bottom:762.427339pt;}
.y48_c00360{bottom:763.018133pt;}
.y47_c00360{bottom:763.430944pt;}
.y46_c00360{bottom:789.207509pt;}
.y45_c00360{bottom:789.404000pt;}
.y44_c00360{bottom:789.503819pt;}
.y43_c00360{bottom:789.894624pt;}
.y42_c00360{bottom:790.044075pt;}
.y41_c00360{bottom:790.445301pt;}
.y40_c00360{bottom:790.634539pt;}
.y3f_c00360{bottom:790.929995pt;}
.y3e_c00360{bottom:791.126464pt;}
.y3d_c00360{bottom:791.522912pt;}
.y3c_c00360{bottom:791.807467pt;}
.y3b_c00360{bottom:791.994037pt;}
.y3a_c00360{bottom:816.842240pt;}
.y39_c00360{bottom:817.324811pt;}
.y38_c00360{bottom:818.027755pt;}
.y37_c00360{bottom:818.320405pt;}
.y36_c00360{bottom:818.901707pt;}
.y35_c00360{bottom:819.218005pt;}
.y34_c00360{bottom:819.512651pt;}
.y33_c00360{bottom:820.298240pt;}
.y32_c00360{bottom:820.783211pt;}
.y31_c00360{bottom:821.461931pt;}
.y30_c00360{bottom:821.670187pt;}
.y2f_c00360{bottom:822.716619pt;}
.y2e_c00360{bottom:848.911285pt;}
.y2d_c00360{bottom:849.545781pt;}
.y2c_c00360{bottom:850.006709pt;}
.y2b_c00360{bottom:851.581152pt;}
.y2a_c00360{bottom:852.065227pt;}
.y29_c00360{bottom:852.717451pt;}
.y28_c00360{bottom:853.328864pt;}
.y27_c00360{bottom:854.891851pt;}
.y26_c00360{bottom:855.852107pt;}
.y25_c00360{bottom:856.323573pt;}
.y24_c00360{bottom:856.637557pt;}
.y23_c00360{bottom:857.414432pt;}
.y22_c00360{bottom:857.721163pt;}
.y21_c00360{bottom:858.001333pt;}
.y20_c00360{bottom:900.078667pt;}
.y1f_c00360{bottom:927.153664pt;}
.y1e_c00360{bottom:927.706912pt;}
.y1d_c00360{bottom:928.241728pt;}
.y1c_c00360{bottom:928.617664pt;}
.y1b_c00360{bottom:930.368536pt;}
.y1a_c00360{bottom:931.271416pt;}
.y19_c00360{bottom:931.802992pt;}
.y18_c00360{bottom:933.206368pt;}
.y17_c00360{bottom:934.650016pt;}
.y16_c00360{bottom:935.518504pt;}
.y15_c00360{bottom:936.244000pt;}
.y14_c00360{bottom:996.823597pt;}
.y13_c00360{bottom:997.013623pt;}
.y12_c00360{bottom:997.209829pt;}
.y11_c00360{bottom:997.343336pt;}
.y10_c00360{bottom:997.562165pt;}
.yf_c00360{bottom:997.743324pt;}
.ye_c00360{bottom:997.954249pt;}
.yd_c00360{bottom:998.099181pt;}
.yc_c00360{bottom:998.317935pt;}
.yb_c00360{bottom:998.486883pt;}
.ya_c00360{bottom:998.793137pt;}
.y9_c00360{bottom:999.071247pt;}
.y8_c00360{bottom:999.216533pt;}
.y7_c00360{bottom:999.435464pt;}
.y6_c00360{bottom:999.618016pt;}
.y5_c00360{bottom:999.860000pt;}
.y4_c00360{bottom:1009.879688pt;}
.y3_c00360{bottom:1012.188037pt;}
.y2_c00360{bottom:1012.962179pt;}
.y1_c00360{bottom:1014.248000pt;}
.h3_c00360{height:16.002888pt;}
.hb_c00360{height:26.666667pt;}
.h9_c00360{height:58.674176pt;}
.h5_c00360{height:64.000000pt;}
.h7_c00360{height:64.008191pt;}
.h4_c00360{height:64.010367pt;}
.h2_c00360{height:64.021628pt;}
.h8_c00360{height:69.342207pt;}
.h6_c00360{height:74.676223pt;}
.ha_c00360{height:80.010239pt;}
.h0_c00360{height:1112.400000pt;}
.h1_c00360{height:1112.666667pt;}
.w0_c00360{width:813.333333pt;}
.x0_c00360{left:0.000000pt;}
.x63_c00360{left:131.520000pt;}
.x64_c00360{left:134.400000pt;}
.x49_c00360{left:135.553109pt;}
.x20_c00360{left:138.000000pt;}
.x42_c00360{left:164.995979pt;}
.x26_c00360{left:167.649333pt;}
.x5c_c00360{left:173.201525pt;}
.x3a_c00360{left:175.625877pt;}
.x51_c00360{left:182.970635pt;}
.x27_c00360{left:185.160000pt;}
.x5d_c00360{left:193.580821pt;}
.x65_c00360{left:202.080000pt;}
.x28_c00360{left:204.330667pt;}
.x21_c00360{left:214.800000pt;}
.x4a_c00360{left:222.396277pt;}
.x15_c00360{left:233.089333pt;}
.x32_c00360{left:242.534016pt;}
.x29_c00360{left:252.885333pt;}
.x52_c00360{left:261.911691pt;}
.x33_c00360{left:263.385355pt;}
.x5e_c00360{left:269.624117pt;}
.x16_c00360{left:273.394667pt;}
.x66_c00360{left:288.480000pt;}
.x4b_c00360{left:291.530240pt;}
.x22_c00360{left:293.280000pt;}
.x5f_c00360{left:300.587083pt;}
.x2a_c00360{left:301.976000pt;}
.x3b_c00360{left:311.712480pt;}
.x17_c00360{left:321.644000pt;}
.x4c_c00360{left:329.923765pt;}
.x1_c00360{left:331.841333pt;}
.x53_c00360{left:347.846528pt;}
.x3c_c00360{left:351.082080pt;}
.x5_c00360{left:361.376000pt;}
.x60_c00360{left:369.240341pt;}
.x6_c00360{left:374.112000pt;}
.x34_c00360{left:379.793867pt;}
.x2_c00360{left:381.296000pt;}
.x7_c00360{left:383.720000pt;}
.x67_c00360{left:387.600000pt;}
.x43_c00360{left:389.592875pt;}
.x8_c00360{left:395.242667pt;}
.x61_c00360{left:397.811093pt;}
.x18_c00360{left:401.846667pt;}
.x9_c00360{left:402.889333pt;}
.x54_c00360{left:408.325056pt;}
.x3d_c00360{left:410.141803pt;}
.x3_c00360{left:411.070667pt;}
.xa_c00360{left:417.526667pt;}
.x44_c00360{left:419.357344pt;}
.x68_c00360{left:427.920000pt;}
.xb_c00360{left:433.645333pt;}
.x55_c00360{left:436.933557pt;}
.x23_c00360{left:440.880000pt;}
.xc_c00360{left:442.537333pt;}
.x69_c00360{left:446.160000pt;}
.x3e_c00360{left:448.059147pt;}
.xd_c00360{left:454.050667pt;}
.x35_c00360{left:458.317397pt;}
.x2b_c00360{left:459.678667pt;}
.xe_c00360{left:461.678667pt;}
.x62_c00360{left:467.675125pt;}
.x24_c00360{left:469.200000pt;}
.xf_c00360{left:472.780000pt;}
.x19_c00360{left:479.812000pt;}
.x10_c00360{left:482.314667pt;}
.x36_c00360{left:487.818901pt;}
.x11_c00360{left:493.832000pt;}
.x56_c00360{left:495.989333pt;}
.x2c_c00360{left:497.892000pt;}
.x4_c00360{left:499.853333pt;}
.x12_c00360{left:500.858667pt;}
.x45_c00360{left:508.421440pt;}
.x1a_c00360{left:509.344000pt;}
.x13_c00360{left:511.185333pt;}
.x57_c00360{left:516.872011pt;}
.x25_c00360{left:518.640000pt;}
.x14_c00360{left:521.186667pt;}
.x6a_c00360{left:524.880000pt;}
.x3f_c00360{left:528.233248pt;}
.x2d_c00360{left:538.656000pt;}
.x58_c00360{left:546.365888pt;}
.x40_c00360{left:557.995808pt;}
.x1b_c00360{left:559.504000pt;}
.x4d_c00360{left:565.915083pt;}
.x46_c00360{left:566.986379pt;}
.x2e_c00360{left:568.910667pt;}
.x59_c00360{left:576.377141pt;}
.x37_c00360{left:577.594187pt;}
.x4e_c00360{left:588.717035pt;}
.x5a_c00360{left:604.710955pt;}
.x38_c00360{left:606.887669pt;}
.x4f_c00360{left:615.366208pt;}
.x41_c00360{left:636.268256pt;}
.x47_c00360{left:654.903787pt;}
.x1c_c00360{left:656.774667pt;}
.x2f_c00360{left:667.313333pt;}
.x50_c00360{left:675.125472pt;}
.x1d_c00360{left:677.660000pt;}
.x30_c00360{left:696.121333pt;}
.x5b_c00360{left:705.286709pt;}
.x1e_c00360{left:707.372000pt;}
.x48_c00360{left:715.826101pt;}
.x39_c00360{left:725.493728pt;}
.x31_c00360{left:735.777333pt;}
.x1f_c00360{left:738.108000pt;}
}





/* 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_c00361 {
    display:none;
  }
  .loading-indicator_c00361.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00361 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_c00361 { 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_c00361" -> "#page-container .classname_c00361")
 */
.pf_c00361 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00361 { /* 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_c00361.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00361 { /* 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_c00361 { /* 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_c00361 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00361 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00361 {overflow:visible;}
  }
}
.c_c00361 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00361 { /* 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_c00361:after { /* webkit #35443 */
  content: '';
}
.t_c00361:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00361 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 */
}
.__c00361 { /* 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_c00361 { /* info for Javascript */
  display:none;
}
.l_c00361 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00361 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00361 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00361: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_c00361 {
    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_c00361.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00361.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_c00361 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00361{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00361;src:url('chunks/assets/font_b11a17f404e7258299fdf971.woff2')format("woff");}.ff1_c00361{font-family:ff1_c00361;line-height:1.000000;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;}
.mf_c00361{transform:matrix(0.110290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110290,0.000000,0.000000,0.250000,0,0);}
.m36_c00361{transform:matrix(0.111835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111835,0.000000,0.000000,0.250000,0,0);}
.mc_c00361{transform:matrix(0.131555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131555,0.000000,0.000000,0.250000,0,0);}
.m3_c00361{transform:matrix(0.138295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138295,0.000000,0.000000,0.250000,0,0);}
.m1c_c00361{transform:matrix(0.143655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143655,0.000000,0.000000,0.250000,0,0);}
.md_c00361{transform:matrix(0.151315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151315,0.000000,0.000000,0.250000,0,0);}
.mb_c00361{transform:matrix(0.155415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155415,0.000000,0.000000,0.250000,0,0);}
.m0_c00361{transform:matrix(0.159450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159450,0.000000,0.000000,0.250000,0,0);}
.m7_c00361{transform:matrix(0.163915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163915,0.000000,0.000000,0.250000,0,0);}
.m14_c00361{transform:matrix(0.163965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163965,0.000000,0.000000,0.250000,0,0);}
.m1d_c00361{transform:matrix(0.164250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164250,0.000000,0.000000,0.250000,0,0);}
.m2e_c00361{transform:matrix(0.167100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167100,0.000000,0.000000,0.250000,0,0);}
.m12_c00361{transform:matrix(0.168200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168200,0.000000,0.000000,0.250000,0,0);}
.m19_c00361{transform:matrix(0.168795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168795,0.000000,0.000000,0.250000,0,0);}
.m1e_c00361{transform:matrix(0.172915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172915,0.000000,0.000000,0.250000,0,0);}
.m1f_c00361{transform:matrix(0.175150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175150,0.000000,0.000000,0.250000,0,0);}
.m2b_c00361{transform:matrix(0.182530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182530,0.000000,0.000000,0.250000,0,0);}
.m18_c00361{transform:matrix(0.183620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183620,0.000000,0.000000,0.250000,0,0);}
.m17_c00361{transform:matrix(0.187775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187775,0.000000,0.000000,0.250000,0,0);}
.m13_c00361{transform:matrix(0.195090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195090,0.000000,0.000000,0.250000,0,0);}
.m2c_c00361{transform:matrix(0.204910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204910,0.000000,0.000000,0.250000,0,0);}
.m11_c00361{transform:matrix(0.205610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205610,0.000000,0.000000,0.250000,0,0);}
.m5_c00361{transform:matrix(0.207080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207080,0.000000,0.000000,0.250000,0,0);}
.m2d_c00361{transform:matrix(0.208700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208700,0.000000,0.000000,0.250000,0,0);}
.m1b_c00361{transform:matrix(0.212215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212215,0.000000,0.000000,0.250000,0,0);}
.m1_c00361{transform:matrix(0.216720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216720,0.000000,0.000000,0.250000,0,0);}
.m37_c00361{transform:matrix(0.218575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218575,0.000000,0.000000,0.250000,0,0);}
.m21_c00361{transform:matrix(0.218925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218925,0.000000,0.000000,0.250000,0,0);}
.m8_c00361{transform:matrix(0.223270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223270,0.000000,0.000000,0.250000,0,0);}
.m26_c00361{transform:matrix(0.223380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223380,0.000000,0.000000,0.250000,0,0);}
.m22_c00361{transform:matrix(0.224035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224035,0.000000,0.000000,0.250000,0,0);}
.m2a_c00361{transform:matrix(0.226145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226145,0.000000,0.000000,0.250000,0,0);}
.m16_c00361{transform:matrix(0.227130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227130,0.000000,0.000000,0.250000,0,0);}
.m2f_c00361{transform:matrix(0.227530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227530,0.000000,0.000000,0.250000,0,0);}
.m20_c00361{transform:matrix(0.229565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229565,0.000000,0.000000,0.250000,0,0);}
.m10_c00361{transform:matrix(0.234305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234305,0.000000,0.000000,0.250000,0,0);}
.m6_c00361{transform:matrix(0.235515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235515,0.000000,0.000000,0.250000,0,0);}
.m24_c00361{transform:matrix(0.241665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241665,0.000000,0.000000,0.250000,0,0);}
.m35_c00361{transform:matrix(0.243110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243110,0.000000,0.000000,0.250000,0,0);}
.m32_c00361{transform:matrix(0.243365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243365,0.000000,0.000000,0.250000,0,0);}
.m25_c00361{transform:matrix(0.250110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250110,0.000000,0.000000,0.250000,0,0);}
.m31_c00361{transform:matrix(0.253265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253265,0.000000,0.000000,0.250000,0,0);}
.m34_c00361{transform:matrix(0.266710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266710,0.000000,0.000000,0.250000,0,0);}
.m28_c00361{transform:matrix(0.268565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268565,0.000000,0.000000,0.250000,0,0);}
.m2_c00361{transform:matrix(0.289625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289625,0.000000,0.000000,0.250000,0,0);}
.m1a_c00361{transform:matrix(0.295315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295315,0.000000,0.000000,0.250000,0,0);}
.ma_c00361{transform:matrix(0.295700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295700,0.000000,0.000000,0.250000,0,0);}
.m29_c00361{transform:matrix(0.307400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307400,0.000000,0.000000,0.250000,0,0);}
.me_c00361{transform:matrix(0.307635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307635,0.000000,0.000000,0.250000,0,0);}
.m33_c00361{transform:matrix(0.313370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313370,0.000000,0.000000,0.250000,0,0);}
.m23_c00361{transform:matrix(0.329740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329740,0.000000,0.000000,0.250000,0,0);}
.m27_c00361{transform:matrix(0.343140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343140,0.000000,0.000000,0.250000,0,0);}
.m9_c00361{transform:matrix(0.415675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415675,0.000000,0.000000,0.250000,0,0);}
.m15_c00361{transform:matrix(0.435840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435840,0.000000,0.000000,0.250000,0,0);}
.m30_c00361{transform:matrix(0.748445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.748445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.748445,0.000000,0.000000,0.250000,0,0);}
.m4_c00361{transform:matrix(1.315030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.315030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.315030,0.000000,0.000000,0.250000,0,0);}
.v0_c00361{vertical-align:0.000000px;}
.ls0_c00361{letter-spacing:0.000000px;}
.sc__c00361{text-shadow:none;}
.sc0_c00361{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__c00361{-webkit-text-stroke:0px transparent;}
.sc0_c00361{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00361{word-spacing:0.000000px;}
.fc0_c00361{color:transparent;}
.fs0_c00361{font-size:18.000000px;}
.fs2_c00361{font-size:72.000000px;}
.fs9_c00361{font-size:78.000000px;}
.fs1_c00361{font-size:84.000000px;}
.fs7_c00361{font-size:90.000000px;}
.fs6_c00361{font-size:96.000000px;}
.fs8_c00361{font-size:102.000000px;}
.fs3_c00361{font-size:114.000000px;}
.fs4_c00361{font-size:120.000000px;}
.fs5_c00361{font-size:126.000000px;}
.y0_c00361{bottom:0.000000px;}
.y8_c00361{bottom:732.780000px;}
.yc_c00361{bottom:732.886500px;}
.y14_c00361{bottom:767.782500px;}
.yf_c00361{bottom:770.797500px;}
.ye_c00361{bottom:803.643000px;}
.y11_c00361{bottom:804.748500px;}
.y7_c00361{bottom:805.542000px;}
.y3_c00361{bottom:872.640000px;}
.y10_c00361{bottom:877.230000px;}
.ya_c00361{bottom:909.792000px;}
.y13_c00361{bottom:943.911000px;}
.y1_c00361{bottom:946.080000px;}
.y2_c00361{bottom:946.216500px;}
.y5_c00361{bottom:947.725500px;}
.yd_c00361{bottom:951.049500px;}
.y4_c00361{bottom:993.870000px;}
.y9_c00361{bottom:1001.184000px;}
.yb_c00361{bottom:1001.268000px;}
.y12_c00361{bottom:1032.769500px;}
.y6_c00361{bottom:1036.167000px;}
.h2_c00361{height:18.000000px;}
.h4_c00361{height:72.000000px;}
.hb_c00361{height:78.000000px;}
.h3_c00361{height:84.000000px;}
.h9_c00361{height:90.000000px;}
.h8_c00361{height:96.000000px;}
.ha_c00361{height:102.000000px;}
.h5_c00361{height:114.000000px;}
.h6_c00361{height:120.000000px;}
.h7_c00361{height:126.000000px;}
.h0_c00361{height:1251.450000px;}
.h1_c00361{height:1251.750000px;}
.w0_c00361{width:915.000000px;}
.x0_c00361{left:0.000000px;}
.x2d_c00361{left:59.130000px;}
.x33_c00361{left:73.980000px;}
.x31_c00361{left:80.730000px;}
.x32_c00361{left:105.030000px;}
.x2e_c00361{left:106.920000px;}
.x34_c00361{left:132.570000px;}
.x2f_c00361{left:140.130000px;}
.x30_c00361{left:171.450000px;}
.x2c_c00361{left:174.150000px;}
.x28_c00361{left:212.490000px;}
.x21_c00361{left:220.320000px;}
.x1d_c00361{left:240.570000px;}
.x22_c00361{left:254.610000px;}
.x1e_c00361{left:274.860000px;}
.x15_c00361{left:285.120000px;}
.x23_c00361{left:287.280000px;}
.x17_c00361{left:288.900000px;}
.x1a_c00361{left:294.030000px;}
.x1f_c00361{left:297.540000px;}
.x29_c00361{left:306.990000px;}
.x24_c00361{left:318.600000px;}
.x1b_c00361{left:320.760000px;}
.x18_c00361{left:332.640000px;}
.x2a_c00361{left:340.200000px;}
.x16_c00361{left:346.680000px;}
.x12_c00361{left:351.000000px;}
.xf_c00361{left:353.700000px;}
.x20_c00361{left:361.260000px;}
.x1c_c00361{left:370.440000px;}
.x25_c00361{left:373.950000px;}
.x13_c00361{left:383.130000px;}
.x10_c00361{left:404.460000px;}
.x19_c00361{left:407.970000px;}
.x14_c00361{left:417.150000px;}
.x2b_c00361{left:426.060000px;}
.x11_c00361{left:436.860000px;}
.xc_c00361{left:440.370000px;}
.x9_c00361{left:461.700000px;}
.x6_c00361{left:470.340000px;}
.x8_c00361{left:479.520000px;}
.xd_c00361{left:485.730000px;}
.xa_c00361{left:494.100000px;}
.xb_c00361{left:510.840000px;}
.x7_c00361{left:525.960000px;}
.x5_c00361{left:535.140000px;}
.x26_c00361{left:538.380000px;}
.x4_c00361{left:564.300000px;}
.xe_c00361{left:596.430000px;}
.x27_c00361{left:604.260000px;}
.x3_c00361{left:623.970000px;}
.x2_c00361{left:646.920000px;}
.x1_c00361{left:661.770000px;}
@media print{
.v0_c00361{vertical-align:0.000000pt;}
.ls0_c00361{letter-spacing:0.000000pt;}
.ws0_c00361{word-spacing:0.000000pt;}
.fs0_c00361{font-size:16.000000pt;}
.fs2_c00361{font-size:64.000000pt;}
.fs9_c00361{font-size:69.333333pt;}
.fs1_c00361{font-size:74.666667pt;}
.fs7_c00361{font-size:80.000000pt;}
.fs6_c00361{font-size:85.333333pt;}
.fs8_c00361{font-size:90.666667pt;}
.fs3_c00361{font-size:101.333333pt;}
.fs4_c00361{font-size:106.666667pt;}
.fs5_c00361{font-size:112.000000pt;}
.y0_c00361{bottom:0.000000pt;}
.y8_c00361{bottom:651.360000pt;}
.yc_c00361{bottom:651.454667pt;}
.y14_c00361{bottom:682.473333pt;}
.yf_c00361{bottom:685.153333pt;}
.ye_c00361{bottom:714.349333pt;}
.y11_c00361{bottom:715.332000pt;}
.y7_c00361{bottom:716.037333pt;}
.y3_c00361{bottom:775.680000pt;}
.y10_c00361{bottom:779.760000pt;}
.ya_c00361{bottom:808.704000pt;}
.y13_c00361{bottom:839.032000pt;}
.y1_c00361{bottom:840.960000pt;}
.y2_c00361{bottom:841.081333pt;}
.y5_c00361{bottom:842.422667pt;}
.yd_c00361{bottom:845.377333pt;}
.y4_c00361{bottom:883.440000pt;}
.y9_c00361{bottom:889.941333pt;}
.yb_c00361{bottom:890.016000pt;}
.y12_c00361{bottom:918.017333pt;}
.y6_c00361{bottom:921.037333pt;}
.h2_c00361{height:16.000000pt;}
.h4_c00361{height:64.000000pt;}
.hb_c00361{height:69.333333pt;}
.h3_c00361{height:74.666667pt;}
.h9_c00361{height:80.000000pt;}
.h8_c00361{height:85.333333pt;}
.ha_c00361{height:90.666667pt;}
.h5_c00361{height:101.333333pt;}
.h6_c00361{height:106.666667pt;}
.h7_c00361{height:112.000000pt;}
.h0_c00361{height:1112.400000pt;}
.h1_c00361{height:1112.666667pt;}
.w0_c00361{width:813.333333pt;}
.x0_c00361{left:0.000000pt;}
.x2d_c00361{left:52.560000pt;}
.x33_c00361{left:65.760000pt;}
.x31_c00361{left:71.760000pt;}
.x32_c00361{left:93.360000pt;}
.x2e_c00361{left:95.040000pt;}
.x34_c00361{left:117.840000pt;}
.x2f_c00361{left:124.560000pt;}
.x30_c00361{left:152.400000pt;}
.x2c_c00361{left:154.800000pt;}
.x28_c00361{left:188.880000pt;}
.x21_c00361{left:195.840000pt;}
.x1d_c00361{left:213.840000pt;}
.x22_c00361{left:226.320000pt;}
.x1e_c00361{left:244.320000pt;}
.x15_c00361{left:253.440000pt;}
.x23_c00361{left:255.360000pt;}
.x17_c00361{left:256.800000pt;}
.x1a_c00361{left:261.360000pt;}
.x1f_c00361{left:264.480000pt;}
.x29_c00361{left:272.880000pt;}
.x24_c00361{left:283.200000pt;}
.x1b_c00361{left:285.120000pt;}
.x18_c00361{left:295.680000pt;}
.x2a_c00361{left:302.400000pt;}
.x16_c00361{left:308.160000pt;}
.x12_c00361{left:312.000000pt;}
.xf_c00361{left:314.400000pt;}
.x20_c00361{left:321.120000pt;}
.x1c_c00361{left:329.280000pt;}
.x25_c00361{left:332.400000pt;}
.x13_c00361{left:340.560000pt;}
.x10_c00361{left:359.520000pt;}
.x19_c00361{left:362.640000pt;}
.x14_c00361{left:370.800000pt;}
.x2b_c00361{left:378.720000pt;}
.x11_c00361{left:388.320000pt;}
.xc_c00361{left:391.440000pt;}
.x9_c00361{left:410.400000pt;}
.x6_c00361{left:418.080000pt;}
.x8_c00361{left:426.240000pt;}
.xd_c00361{left:431.760000pt;}
.xa_c00361{left:439.200000pt;}
.xb_c00361{left:454.080000pt;}
.x7_c00361{left:467.520000pt;}
.x5_c00361{left:475.680000pt;}
.x26_c00361{left:478.560000pt;}
.x4_c00361{left:501.600000pt;}
.xe_c00361{left:530.160000pt;}
.x27_c00361{left:537.120000pt;}
.x3_c00361{left:554.640000pt;}
.x2_c00361{left:575.040000pt;}
.x1_c00361{left:588.240000pt;}
}





/* 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_c00362 {
    display:none;
  }
  .loading-indicator_c00362.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00362 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_c00362 { 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_c00362" -> "#page-container .classname_c00362")
 */
.pf_c00362 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00362 { /* 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_c00362.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00362 { /* 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_c00362 { /* 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_c00362 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00362 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00362 {overflow:visible;}
  }
}
.c_c00362 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00362 { /* 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_c00362:after { /* webkit #35443 */
  content: '';
}
.t_c00362:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00362 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 */
}
.__c00362 { /* 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_c00362 { /* info for Javascript */
  display:none;
}
.l_c00362 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00362 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00362 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00362: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_c00362 {
    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_c00362.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00362.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_c00362 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00362{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00362;src:url('chunks/assets/font_c605e72f209fc835e906f064.woff2')format("woff");}.ff1_c00362{font-family:ff1_c00362;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mdc_c00362{transform:matrix(0.005535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.005535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.005535,0.000000,0.000000,0.250000,0,0);}
.m77_c00362{transform:matrix(0.010158,0.000366,-0.009003,0.249838,0,0);-ms-transform:matrix(0.010158,0.000366,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.010158,0.000366,-0.009003,0.249838,0,0);}
.m74_c00362{transform:matrix(0.011567,0.000254,-0.005499,0.249940,0,0);-ms-transform:matrix(0.011567,0.000254,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.011567,0.000254,-0.005499,0.249940,0,0);}
.mf7_c00362{transform:matrix(0.015910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.015910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.015910,0.000000,0.000000,0.250000,0,0);}
.m85_c00362{transform:matrix(0.029756,0.001072,-0.009003,0.249838,0,0);-ms-transform:matrix(0.029756,0.001072,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.029756,0.001072,-0.009003,0.249838,0,0);}
.m12c_c00362{transform:matrix(0.060528,0.001211,-0.004999,0.249950,0,0);-ms-transform:matrix(0.060528,0.001211,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.060528,0.001211,-0.004999,0.249950,0,0);}
.ma_c00362{transform:matrix(0.067050,0.002011,-0.007497,0.249888,0,0);-ms-transform:matrix(0.067050,0.002011,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.067050,0.002011,-0.007497,0.249888,0,0);}
.m8f_c00362{transform:matrix(0.069482,0.002713,-0.009752,0.249810,0,0);-ms-transform:matrix(0.069482,0.002713,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.069482,0.002713,-0.009752,0.249810,0,0);}
.mf6_c00362{transform:matrix(0.077310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.077310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.077310,0.000000,0.000000,0.250000,0,0);}
.mf3_c00362{transform:matrix(0.095460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.095460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.095460,0.000000,0.000000,0.250000,0,0);}
.m12e_c00362{transform:matrix(0.095491,0.001910,-0.004999,0.249950,0,0);-ms-transform:matrix(0.095491,0.001910,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.095491,0.001910,-0.004999,0.249950,0,0);}
.md9_c00362{transform:matrix(0.132585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132585,0.000000,0.000000,0.250000,0,0);}
.mdf_c00362{transform:matrix(0.145875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145875,0.000000,0.000000,0.250000,0,0);}
.md4_c00362{transform:matrix(0.169906,0.003398,-0.004999,0.249950,0,0);-ms-transform:matrix(0.169906,0.003398,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.169906,0.003398,-0.004999,0.249950,0,0);}
.m5c_c00362{transform:matrix(0.169972,0.003060,-0.004499,0.249960,0,0);-ms-transform:matrix(0.169972,0.003060,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.169972,0.003060,-0.004499,0.249960,0,0);}
.mcf_c00362{transform:matrix(0.170261,0.003405,-0.004999,0.249950,0,0);-ms-transform:matrix(0.170261,0.003405,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.170261,0.003405,-0.004999,0.249950,0,0);}
.mc_c00362{transform:matrix(0.170668,0.006321,-0.009253,0.249829,0,0);-ms-transform:matrix(0.170668,0.006321,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.170668,0.006321,-0.009253,0.249829,0,0);}
.md3_c00362{transform:matrix(0.171781,0.003436,-0.004999,0.249950,0,0);-ms-transform:matrix(0.171781,0.003436,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.171781,0.003436,-0.004999,0.249950,0,0);}
.mde_c00362{transform:matrix(0.174485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174485,0.000000,0.000000,0.250000,0,0);}
.m123_c00362{transform:matrix(0.175005,0.003500,-0.004999,0.249950,0,0);-ms-transform:matrix(0.175005,0.003500,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.175005,0.003500,-0.004999,0.249950,0,0);}
.mef_c00362{transform:matrix(0.175730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175730,0.000000,0.000000,0.250000,0,0);}
.m12a_c00362{transform:matrix(0.178069,0.003561,-0.004999,0.249950,0,0);-ms-transform:matrix(0.178069,0.003561,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.178069,0.003561,-0.004999,0.249950,0,0);}
.m111_c00362{transform:matrix(0.178804,0.003040,-0.004249,0.249964,0,0);-ms-transform:matrix(0.178804,0.003040,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.178804,0.003040,-0.004249,0.249964,0,0);}
.m61_c00362{transform:matrix(0.181166,0.003261,-0.004499,0.249960,0,0);-ms-transform:matrix(0.181166,0.003261,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.181166,0.003261,-0.004499,0.249960,0,0);}
.md_c00362{transform:matrix(0.182065,0.006743,-0.009253,0.249829,0,0);-ms-transform:matrix(0.182065,0.006743,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.182065,0.006743,-0.009253,0.249829,0,0);}
.m8a_c00362{transform:matrix(0.182596,0.006580,-0.009003,0.249838,0,0);-ms-transform:matrix(0.182596,0.006580,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.182596,0.006580,-0.009003,0.249838,0,0);}
.mb6_c00362{transform:matrix(0.183599,0.006249,-0.008504,0.249855,0,0);-ms-transform:matrix(0.183599,0.006249,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.183599,0.006249,-0.008504,0.249855,0,0);}
.m39_c00362{transform:matrix(0.183611,0.005881,-0.008004,0.249872,0,0);-ms-transform:matrix(0.183611,0.005881,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.183611,0.005881,-0.008004,0.249872,0,0);}
.m75_c00362{transform:matrix(0.183881,0.006626,-0.009003,0.249838,0,0);-ms-transform:matrix(0.183881,0.006626,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.183881,0.006626,-0.009003,0.249838,0,0);}
.mf9_c00362{transform:matrix(0.185362,0.005005,-0.006748,0.249909,0,0);-ms-transform:matrix(0.185362,0.005005,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.185362,0.005005,-0.006748,0.249909,0,0);}
.m120_c00362{transform:matrix(0.185400,0.003337,-0.004499,0.249960,0,0);-ms-transform:matrix(0.185400,0.003337,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.185400,0.003337,-0.004499,0.249960,0,0);}
.m4d_c00362{transform:matrix(0.185772,0.004830,-0.006498,0.249916,0,0);-ms-transform:matrix(0.185772,0.004830,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.185772,0.004830,-0.006498,0.249916,0,0);}
.m98_c00362{transform:matrix(0.186793,0.007292,-0.009752,0.249810,0,0);-ms-transform:matrix(0.186793,0.007292,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.186793,0.007292,-0.009752,0.249810,0,0);}
.m83_c00362{transform:matrix(0.187094,0.006742,-0.009003,0.249838,0,0);-ms-transform:matrix(0.187094,0.006742,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.187094,0.006742,-0.009003,0.249838,0,0);}
.m5d_c00362{transform:matrix(0.188934,0.003401,-0.004499,0.249960,0,0);-ms-transform:matrix(0.188934,0.003401,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.188934,0.003401,-0.004499,0.249960,0,0);}
.m80_c00362{transform:matrix(0.190147,0.006852,-0.009003,0.249838,0,0);-ms-transform:matrix(0.190147,0.006852,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.190147,0.006852,-0.009003,0.249838,0,0);}
.ma9_c00362{transform:matrix(0.190860,0.007451,-0.009752,0.249810,0,0);-ms-transform:matrix(0.190860,0.007451,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.190860,0.007451,-0.009752,0.249810,0,0);}
.mdb_c00362{transform:matrix(0.192230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192230,0.000000,0.000000,0.250000,0,0);}
.m117_c00362{transform:matrix(0.192967,0.003280,-0.004249,0.249964,0,0);-ms-transform:matrix(0.192967,0.003280,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.192967,0.003280,-0.004249,0.249964,0,0);}
.mf_c00362{transform:matrix(0.193436,0.006196,-0.008004,0.249872,0,0);-ms-transform:matrix(0.193436,0.006196,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.193436,0.006196,-0.008004,0.249872,0,0);}
.m57_c00362{transform:matrix(0.195198,0.003514,-0.004499,0.249960,0,0);-ms-transform:matrix(0.195198,0.003514,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.195198,0.003514,-0.004499,0.249960,0,0);}
.m11e_c00362{transform:matrix(0.195543,0.003520,-0.004499,0.249960,0,0);-ms-transform:matrix(0.195543,0.003520,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.195543,0.003520,-0.004499,0.249960,0,0);}
.m55_c00362{transform:matrix(0.195838,0.003525,-0.004499,0.249960,0,0);-ms-transform:matrix(0.195838,0.003525,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.195838,0.003525,-0.004499,0.249960,0,0);}
.m4b_c00362{transform:matrix(0.196429,0.005107,-0.006498,0.249916,0,0);-ms-transform:matrix(0.196429,0.005107,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.196429,0.005107,-0.006498,0.249916,0,0);}
.mfb_c00362{transform:matrix(0.197238,0.005325,-0.006748,0.249909,0,0);-ms-transform:matrix(0.197238,0.005325,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.197238,0.005325,-0.006748,0.249909,0,0);}
.m122_c00362{transform:matrix(0.198143,0.003567,-0.004499,0.249960,0,0);-ms-transform:matrix(0.198143,0.003567,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.198143,0.003567,-0.004499,0.249960,0,0);}
.mc2_c00362{transform:matrix(0.198965,0.006772,-0.008504,0.249855,0,0);-ms-transform:matrix(0.198965,0.006772,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.198965,0.006772,-0.008504,0.249855,0,0);}
.m114_c00362{transform:matrix(0.199661,0.003394,-0.004249,0.249964,0,0);-ms-transform:matrix(0.199661,0.003394,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.199661,0.003394,-0.004249,0.249964,0,0);}
.m47_c00362{transform:matrix(0.200157,0.005204,-0.006498,0.249916,0,0);-ms-transform:matrix(0.200157,0.005204,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.200157,0.005204,-0.006498,0.249916,0,0);}
.m116_c00362{transform:matrix(0.200316,0.003405,-0.004249,0.249964,0,0);-ms-transform:matrix(0.200316,0.003405,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.200316,0.003405,-0.004249,0.249964,0,0);}
.mea_c00362{transform:matrix(0.200330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200330,0.000000,0.000000,0.250000,0,0);}
.mbb_c00362{transform:matrix(0.201498,0.006858,-0.008504,0.249855,0,0);-ms-transform:matrix(0.201498,0.006858,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.201498,0.006858,-0.008504,0.249855,0,0);}
.md0_c00362{transform:matrix(0.201910,0.004038,-0.004999,0.249950,0,0);-ms-transform:matrix(0.201910,0.004038,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.201910,0.004038,-0.004999,0.249950,0,0);}
.m94_c00362{transform:matrix(0.202226,0.007895,-0.009752,0.249810,0,0);-ms-transform:matrix(0.202226,0.007895,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.202226,0.007895,-0.009752,0.249810,0,0);}
.md2_c00362{transform:matrix(0.202375,0.004047,-0.004999,0.249950,0,0);-ms-transform:matrix(0.202375,0.004047,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.202375,0.004047,-0.004999,0.249950,0,0);}
.m10e_c00362{transform:matrix(0.203596,0.003461,-0.004249,0.249964,0,0);-ms-transform:matrix(0.203596,0.003461,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.203596,0.003461,-0.004249,0.249964,0,0);}
.ma3_c00362{transform:matrix(0.204100,0.007968,-0.009752,0.249810,0,0);-ms-transform:matrix(0.204100,0.007968,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.204100,0.007968,-0.009752,0.249810,0,0);}
.m81_c00362{transform:matrix(0.204172,0.007358,-0.009003,0.249838,0,0);-ms-transform:matrix(0.204172,0.007358,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.204172,0.007358,-0.009003,0.249838,0,0);}
.m136_c00362{transform:matrix(0.204214,0.004084,-0.004999,0.249950,0,0);-ms-transform:matrix(0.204214,0.004084,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.204214,0.004084,-0.004999,0.249950,0,0);}
.m48_c00362{transform:matrix(0.204486,0.005317,-0.006498,0.249916,0,0);-ms-transform:matrix(0.204486,0.005317,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.204486,0.005317,-0.006498,0.249916,0,0);}
.md8_c00362{transform:matrix(0.207274,0.004145,-0.004999,0.249950,0,0);-ms-transform:matrix(0.207274,0.004145,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.207274,0.004145,-0.004999,0.249950,0,0);}
.m8b_c00362{transform:matrix(0.207880,0.007491,-0.009003,0.249838,0,0);-ms-transform:matrix(0.207880,0.007491,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.207880,0.007491,-0.009003,0.249838,0,0);}
.m6c_c00362{transform:matrix(0.207915,0.004574,-0.005499,0.249940,0,0);-ms-transform:matrix(0.207915,0.004574,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.207915,0.004574,-0.005499,0.249940,0,0);}
.m5e_c00362{transform:matrix(0.209266,0.003767,-0.004499,0.249960,0,0);-ms-transform:matrix(0.209266,0.003767,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.209266,0.003767,-0.004499,0.249960,0,0);}
.m4e_c00362{transform:matrix(0.209864,0.005456,-0.006498,0.249916,0,0);-ms-transform:matrix(0.209864,0.005456,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.209864,0.005456,-0.006498,0.249916,0,0);}
.mb9_c00362{transform:matrix(0.210498,0.007164,-0.008504,0.249855,0,0);-ms-transform:matrix(0.210498,0.007164,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.210498,0.007164,-0.008504,0.249855,0,0);}
.m10f_c00362{transform:matrix(0.211119,0.003589,-0.004249,0.249964,0,0);-ms-transform:matrix(0.211119,0.003589,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.211119,0.003589,-0.004249,0.249964,0,0);}
.m45_c00362{transform:matrix(0.211231,0.006126,-0.007247,0.249895,0,0);-ms-transform:matrix(0.211231,0.006126,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.211231,0.006126,-0.007247,0.249895,0,0);}
.m59_c00362{transform:matrix(0.211316,0.003804,-0.004499,0.249960,0,0);-ms-transform:matrix(0.211316,0.003804,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.211316,0.003804,-0.004499,0.249960,0,0);}
.m54_c00362{transform:matrix(0.211651,0.003810,-0.004499,0.249960,0,0);-ms-transform:matrix(0.211651,0.003810,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.211651,0.003810,-0.004499,0.249960,0,0);}
.md5_c00362{transform:matrix(0.212033,0.004241,-0.004999,0.249950,0,0);-ms-transform:matrix(0.212033,0.004241,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.212033,0.004241,-0.004999,0.249950,0,0);}
.m9f_c00362{transform:matrix(0.212408,0.008292,-0.009752,0.249810,0,0);-ms-transform:matrix(0.212408,0.008292,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.212408,0.008292,-0.009752,0.249810,0,0);}
.mfc_c00362{transform:matrix(0.212608,0.005740,-0.006748,0.249909,0,0);-ms-transform:matrix(0.212608,0.005740,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.212608,0.005740,-0.006748,0.249909,0,0);}
.m79_c00362{transform:matrix(0.212927,0.007673,-0.009003,0.249838,0,0);-ms-transform:matrix(0.212927,0.007673,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.212927,0.007673,-0.009003,0.249838,0,0);}
.mb7_c00362{transform:matrix(0.213197,0.007256,-0.008504,0.249855,0,0);-ms-transform:matrix(0.213197,0.007256,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.213197,0.007256,-0.008504,0.249855,0,0);}
.m9d_c00362{transform:matrix(0.213258,0.008325,-0.009752,0.249810,0,0);-ms-transform:matrix(0.213258,0.008325,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.213258,0.008325,-0.009752,0.249810,0,0);}
.mc0_c00362{transform:matrix(0.213681,0.007272,-0.008504,0.249855,0,0);-ms-transform:matrix(0.213681,0.007272,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.213681,0.007272,-0.008504,0.249855,0,0);}
.m137_c00362{transform:matrix(0.213762,0.004275,-0.004999,0.249950,0,0);-ms-transform:matrix(0.213762,0.004275,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.213762,0.004275,-0.004999,0.249950,0,0);}
.mfa_c00362{transform:matrix(0.213807,0.005773,-0.006748,0.249909,0,0);-ms-transform:matrix(0.213807,0.005773,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.213807,0.005773,-0.006748,0.249909,0,0);}
.m6a_c00362{transform:matrix(0.214203,0.004712,-0.005499,0.249940,0,0);-ms-transform:matrix(0.214203,0.004712,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.214203,0.004712,-0.005499,0.249940,0,0);}
.m29_c00362{transform:matrix(0.214280,0.006864,-0.008004,0.249872,0,0);-ms-transform:matrix(0.214280,0.006864,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.214280,0.006864,-0.008004,0.249872,0,0);}
.md1_c00362{transform:matrix(0.215012,0.004300,-0.004999,0.249950,0,0);-ms-transform:matrix(0.215012,0.004300,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.215012,0.004300,-0.004999,0.249950,0,0);}
.m11a_c00362{transform:matrix(0.215065,0.003871,-0.004499,0.249960,0,0);-ms-transform:matrix(0.215065,0.003871,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.215065,0.003871,-0.004499,0.249960,0,0);}
.m11b_c00362{transform:matrix(0.215390,0.003877,-0.004499,0.249960,0,0);-ms-transform:matrix(0.215390,0.003877,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.215390,0.003877,-0.004499,0.249960,0,0);}
.m112_c00362{transform:matrix(0.215419,0.003662,-0.004249,0.249964,0,0);-ms-transform:matrix(0.215419,0.003662,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.215419,0.003662,-0.004249,0.249964,0,0);}
.m87_c00362{transform:matrix(0.215980,0.007783,-0.009003,0.249838,0,0);-ms-transform:matrix(0.215980,0.007783,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.215980,0.007783,-0.009003,0.249838,0,0);}
.m86_c00362{transform:matrix(0.216215,0.007792,-0.009003,0.249838,0,0);-ms-transform:matrix(0.216215,0.007792,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.216215,0.007792,-0.009003,0.249838,0,0);}
.mfd_c00362{transform:matrix(0.216271,0.005839,-0.006748,0.249909,0,0);-ms-transform:matrix(0.216271,0.005839,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.216271,0.005839,-0.006748,0.249909,0,0);}
.ma4_c00362{transform:matrix(0.216830,0.008465,-0.009752,0.249810,0,0);-ms-transform:matrix(0.216830,0.008465,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.216830,0.008465,-0.009752,0.249810,0,0);}
.me3_c00362{transform:matrix(0.217830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217830,0.000000,0.000000,0.250000,0,0);}
.mb5_c00362{transform:matrix(0.218039,0.007421,-0.008504,0.249855,0,0);-ms-transform:matrix(0.218039,0.007421,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.218039,0.007421,-0.008504,0.249855,0,0);}
.mc3_c00362{transform:matrix(0.219102,0.005039,-0.005748,0.249934,0,0);-ms-transform:matrix(0.219102,0.005039,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.219102,0.005039,-0.005748,0.249934,0,0);}
.mbc_c00362{transform:matrix(0.219188,0.007460,-0.008504,0.249855,0,0);-ms-transform:matrix(0.219188,0.007460,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.219188,0.007460,-0.008504,0.249855,0,0);}
.m93_c00362{transform:matrix(0.219418,0.008566,-0.009752,0.249810,0,0);-ms-transform:matrix(0.219418,0.008566,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.219418,0.008566,-0.009752,0.249810,0,0);}
.mf8_c00362{transform:matrix(0.219650,0.005931,-0.006748,0.249909,0,0);-ms-transform:matrix(0.219650,0.005931,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.219650,0.005931,-0.006748,0.249909,0,0);}
.m68_c00362{transform:matrix(0.219747,0.004834,-0.005499,0.249940,0,0);-ms-transform:matrix(0.219747,0.004834,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.219747,0.004834,-0.005499,0.249940,0,0);}
.ma6_c00362{transform:matrix(0.219853,0.008583,-0.009752,0.249810,0,0);-ms-transform:matrix(0.219853,0.008583,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.219853,0.008583,-0.009752,0.249810,0,0);}
.m58_c00362{transform:matrix(0.220179,0.003963,-0.004499,0.249960,0,0);-ms-transform:matrix(0.220179,0.003963,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.220179,0.003963,-0.004499,0.249960,0,0);}
.md6_c00362{transform:matrix(0.220676,0.004414,-0.004999,0.249950,0,0);-ms-transform:matrix(0.220676,0.004414,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.220676,0.004414,-0.004999,0.249950,0,0);}
.m7c_c00362{transform:matrix(0.221126,0.007969,-0.009003,0.249838,0,0);-ms-transform:matrix(0.221126,0.007969,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.221126,0.007969,-0.009003,0.249838,0,0);}
.md7_c00362{transform:matrix(0.221326,0.004427,-0.004999,0.249950,0,0);-ms-transform:matrix(0.221326,0.004427,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.221326,0.004427,-0.004999,0.249950,0,0);}
.m7b_c00362{transform:matrix(0.221736,0.007990,-0.009003,0.249838,0,0);-ms-transform:matrix(0.221736,0.007990,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.221736,0.007990,-0.009003,0.249838,0,0);}
.mce_c00362{transform:matrix(0.221976,0.004440,-0.004999,0.249950,0,0);-ms-transform:matrix(0.221976,0.004440,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.221976,0.004440,-0.004999,0.249950,0,0);}
.m17_c00362{transform:matrix(0.222496,0.007127,-0.008004,0.249872,0,0);-ms-transform:matrix(0.222496,0.007127,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.222496,0.007127,-0.008004,0.249872,0,0);}
.m91_c00362{transform:matrix(0.222535,0.008688,-0.009752,0.249810,0,0);-ms-transform:matrix(0.222535,0.008688,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.222535,0.008688,-0.009752,0.249810,0,0);}
.m92_c00362{transform:matrix(0.222730,0.008695,-0.009752,0.249810,0,0);-ms-transform:matrix(0.222730,0.008695,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.222730,0.008695,-0.009752,0.249810,0,0);}
.m119_c00362{transform:matrix(0.224404,0.004039,-0.004499,0.249960,0,0);-ms-transform:matrix(0.224404,0.004039,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.224404,0.004039,-0.004499,0.249960,0,0);}
.mec_c00362{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m6d_c00362{transform:matrix(0.225290,0.004956,-0.005499,0.249940,0,0);-ms-transform:matrix(0.225290,0.004956,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.225290,0.004956,-0.005499,0.249940,0,0);}
.mbf_c00362{transform:matrix(0.225534,0.007676,-0.008504,0.249855,0,0);-ms-transform:matrix(0.225534,0.007676,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.225534,0.007676,-0.008504,0.249855,0,0);}
.m36_c00362{transform:matrix(0.225899,0.007236,-0.008004,0.249872,0,0);-ms-transform:matrix(0.225899,0.007236,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.225899,0.007236,-0.008004,0.249872,0,0);}
.m133_c00362{transform:matrix(0.226640,0.004533,-0.004999,0.249950,0,0);-ms-transform:matrix(0.226640,0.004533,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.226640,0.004533,-0.004999,0.249950,0,0);}
.m7d_c00362{transform:matrix(0.226738,0.008171,-0.009003,0.249838,0,0);-ms-transform:matrix(0.226738,0.008171,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.226738,0.008171,-0.009003,0.249838,0,0);}
.m5b_c00362{transform:matrix(0.226858,0.004083,-0.004499,0.249960,0,0);-ms-transform:matrix(0.226858,0.004083,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.226858,0.004083,-0.004499,0.249960,0,0);}
.ma7_c00362{transform:matrix(0.227092,0.008865,-0.009752,0.249810,0,0);-ms-transform:matrix(0.227092,0.008865,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.227092,0.008865,-0.009752,0.249810,0,0);}
.mfe_c00362{transform:matrix(0.227557,0.006144,-0.006748,0.249909,0,0);-ms-transform:matrix(0.227557,0.006144,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.227557,0.006144,-0.006748,0.249909,0,0);}
.mff_c00362{transform:matrix(0.227962,0.006155,-0.006748,0.249909,0,0);-ms-transform:matrix(0.227962,0.006155,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.227962,0.006155,-0.006748,0.249909,0,0);}
.m12_c00362{transform:matrix(0.228053,0.007305,-0.008004,0.249872,0,0);-ms-transform:matrix(0.228053,0.007305,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.228053,0.007305,-0.008004,0.249872,0,0);}
.m66_c00362{transform:matrix(0.228160,0.005020,-0.005499,0.249940,0,0);-ms-transform:matrix(0.228160,0.005020,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.228160,0.005020,-0.005499,0.249940,0,0);}
.m51_c00362{transform:matrix(0.229078,0.005956,-0.006498,0.249916,0,0);-ms-transform:matrix(0.229078,0.005956,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.229078,0.005956,-0.006498,0.249916,0,0);}
.m99_c00362{transform:matrix(0.229175,0.008947,-0.009752,0.249810,0,0);-ms-transform:matrix(0.229175,0.008947,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.229175,0.008947,-0.009752,0.249810,0,0);}
.m104_c00362{transform:matrix(0.229492,0.003901,-0.004249,0.249964,0,0);-ms-transform:matrix(0.229492,0.003901,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.229492,0.003901,-0.004249,0.249964,0,0);}
.m7f_c00362{transform:matrix(0.229861,0.008283,-0.009003,0.249838,0,0);-ms-transform:matrix(0.229861,0.008283,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.229861,0.008283,-0.009003,0.249838,0,0);}
.m11d_c00362{transform:matrix(0.230148,0.004143,-0.004499,0.249960,0,0);-ms-transform:matrix(0.230148,0.004143,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.230148,0.004143,-0.004499,0.249960,0,0);}
.m52_c00362{transform:matrix(0.230497,0.005993,-0.006498,0.249916,0,0);-ms-transform:matrix(0.230497,0.005993,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.230497,0.005993,-0.006498,0.249916,0,0);}
.ma2_c00362{transform:matrix(0.231119,0.009023,-0.009752,0.249810,0,0);-ms-transform:matrix(0.231119,0.009023,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.231119,0.009023,-0.009752,0.249810,0,0);}
.m4c_c00362{transform:matrix(0.231192,0.006011,-0.006498,0.249916,0,0);-ms-transform:matrix(0.231192,0.006011,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.231192,0.006011,-0.006498,0.249916,0,0);}
.m131_c00362{transform:matrix(0.231804,0.004636,-0.004999,0.249950,0,0);-ms-transform:matrix(0.231804,0.004636,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.231804,0.004636,-0.004999,0.249950,0,0);}
.m50_c00362{transform:matrix(0.232277,0.006039,-0.006498,0.249916,0,0);-ms-transform:matrix(0.232277,0.006039,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.232277,0.006039,-0.006498,0.249916,0,0);}
.m10b_c00362{transform:matrix(0.232521,0.003953,-0.004249,0.249964,0,0);-ms-transform:matrix(0.232521,0.003953,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.232521,0.003953,-0.004249,0.249964,0,0);}
.m11f_c00362{transform:matrix(0.232557,0.004186,-0.004499,0.249960,0,0);-ms-transform:matrix(0.232557,0.004186,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.232557,0.004186,-0.004499,0.249960,0,0);}
.m10_c00362{transform:matrix(0.232756,0.007456,-0.008004,0.249872,0,0);-ms-transform:matrix(0.232756,0.007456,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.232756,0.007456,-0.008004,0.249872,0,0);}
.m2a_c00362{transform:matrix(0.232866,0.007459,-0.008004,0.249872,0,0);-ms-transform:matrix(0.232866,0.007459,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.232866,0.007459,-0.008004,0.249872,0,0);}
.m103_c00362{transform:matrix(0.232906,0.003959,-0.004249,0.249964,0,0);-ms-transform:matrix(0.232906,0.003959,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.232906,0.003959,-0.004249,0.249964,0,0);}
.m67_c00362{transform:matrix(0.233199,0.005130,-0.005499,0.249940,0,0);-ms-transform:matrix(0.233199,0.005130,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.233199,0.005130,-0.005499,0.249940,0,0);}
.med_c00362{transform:matrix(0.233735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233735,0.000000,0.000000,0.250000,0,0);}
.m16_c00362{transform:matrix(0.233765,0.007488,-0.008004,0.249872,0,0);-ms-transform:matrix(0.233765,0.007488,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.233765,0.007488,-0.008004,0.249872,0,0);}
.m121_c00362{transform:matrix(0.234202,0.004216,-0.004499,0.249960,0,0);-ms-transform:matrix(0.234202,0.004216,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.234202,0.004216,-0.004499,0.249960,0,0);}
.mca_c00362{transform:matrix(0.234613,0.005396,-0.005748,0.249934,0,0);-ms-transform:matrix(0.234613,0.005396,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.234613,0.005396,-0.005748,0.249934,0,0);}
.mdd_c00362{transform:matrix(0.234645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234645,0.000000,0.000000,0.250000,0,0);}
.m56_c00362{transform:matrix(0.234762,0.004226,-0.004499,0.249960,0,0);-ms-transform:matrix(0.234762,0.004226,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.234762,0.004226,-0.004499,0.249960,0,0);}
.m41_c00362{transform:matrix(0.234981,0.006814,-0.007247,0.249895,0,0);-ms-transform:matrix(0.234981,0.006814,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.234981,0.006814,-0.007247,0.249895,0,0);}
.m101_c00362{transform:matrix(0.235351,0.004001,-0.004249,0.249964,0,0);-ms-transform:matrix(0.235351,0.004001,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.235351,0.004001,-0.004249,0.249964,0,0);}
.m10a_c00362{transform:matrix(0.235686,0.004007,-0.004249,0.249964,0,0);-ms-transform:matrix(0.235686,0.004007,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.235686,0.004007,-0.004249,0.249964,0,0);}
.mab_c00362{transform:matrix(0.235820,0.009206,-0.009752,0.249810,0,0);-ms-transform:matrix(0.235820,0.009206,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.235820,0.009206,-0.009752,0.249810,0,0);}
.me9_c00362{transform:matrix(0.236110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236110,0.000000,0.000000,0.250000,0,0);}
.m46_c00362{transform:matrix(0.236316,0.006853,-0.007247,0.249895,0,0);-ms-transform:matrix(0.236316,0.006853,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.236316,0.006853,-0.007247,0.249895,0,0);}
.mc9_c00362{transform:matrix(0.236382,0.005437,-0.005748,0.249934,0,0);-ms-transform:matrix(0.236382,0.005437,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.236382,0.005437,-0.005748,0.249934,0,0);}
.m4a_c00362{transform:matrix(0.236620,0.006152,-0.006498,0.249916,0,0);-ms-transform:matrix(0.236620,0.006152,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.236620,0.006152,-0.006498,0.249916,0,0);}
.mc7_c00362{transform:matrix(0.236662,0.005443,-0.005748,0.249934,0,0);-ms-transform:matrix(0.236662,0.005443,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.236662,0.005443,-0.005748,0.249934,0,0);}
.m65_c00362{transform:matrix(0.236668,0.005207,-0.005499,0.249940,0,0);-ms-transform:matrix(0.236668,0.005207,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.236668,0.005207,-0.005499,0.249940,0,0);}
.m1a_c00362{transform:matrix(0.236998,0.007592,-0.008004,0.249872,0,0);-ms-transform:matrix(0.236998,0.007592,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.236998,0.007592,-0.008004,0.249872,0,0);}
.mb8_c00362{transform:matrix(0.237183,0.008072,-0.008504,0.249855,0,0);-ms-transform:matrix(0.237183,0.008072,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.237183,0.008072,-0.008504,0.249855,0,0);}
.m11c_c00362{transform:matrix(0.237382,0.004273,-0.004499,0.249960,0,0);-ms-transform:matrix(0.237382,0.004273,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.237382,0.004273,-0.004499,0.249960,0,0);}
.m97_c00362{transform:matrix(0.237444,0.009270,-0.009752,0.249810,0,0);-ms-transform:matrix(0.237444,0.009270,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.237444,0.009270,-0.009752,0.249810,0,0);}
.m82_c00362{transform:matrix(0.237571,0.008561,-0.009003,0.249838,0,0);-ms-transform:matrix(0.237571,0.008561,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.237571,0.008561,-0.009003,0.249838,0,0);}
.m130_c00362{transform:matrix(0.237722,0.004754,-0.004999,0.249950,0,0);-ms-transform:matrix(0.237722,0.004754,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.237722,0.004754,-0.004999,0.249950,0,0);}
.m106_c00362{transform:matrix(0.237991,0.004046,-0.004249,0.249964,0,0);-ms-transform:matrix(0.237991,0.004046,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.237991,0.004046,-0.004249,0.249964,0,0);}
.me7_c00362{transform:matrix(0.238535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238535,0.000000,0.000000,0.250000,0,0);}
.me6_c00362{transform:matrix(0.238665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238665,0.000000,0.000000,0.250000,0,0);}
.me5_c00362{transform:matrix(0.239240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239240,0.000000,0.000000,0.250000,0,0);}
.m109_c00362{transform:matrix(0.239555,0.004072,-0.004249,0.249964,0,0);-ms-transform:matrix(0.239555,0.004072,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.239555,0.004072,-0.004249,0.249964,0,0);}
.m33_c00362{transform:matrix(0.239567,0.007674,-0.008004,0.249872,0,0);-ms-transform:matrix(0.239567,0.007674,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.239567,0.007674,-0.008004,0.249872,0,0);}
.me_c00362{transform:matrix(0.239982,0.007687,-0.008004,0.249872,0,0);-ms-transform:matrix(0.239982,0.007687,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.239982,0.007687,-0.008004,0.249872,0,0);}
.mcd_c00362{transform:matrix(0.240042,0.005521,-0.005748,0.249934,0,0);-ms-transform:matrix(0.240042,0.005521,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.240042,0.005521,-0.005748,0.249934,0,0);}
.mb3_c00362{transform:matrix(0.240452,0.009387,-0.009752,0.249810,0,0);-ms-transform:matrix(0.240452,0.009387,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.240452,0.009387,-0.009752,0.249810,0,0);}
.mda_c00362{transform:matrix(0.240500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240500,0.000000,0.000000,0.250000,0,0);}
.mbe_c00362{transform:matrix(0.240841,0.008197,-0.008504,0.249855,0,0);-ms-transform:matrix(0.240841,0.008197,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.240841,0.008197,-0.008504,0.249855,0,0);}
.m89_c00362{transform:matrix(0.240914,0.008682,-0.009003,0.249838,0,0);-ms-transform:matrix(0.240914,0.008682,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.240914,0.008682,-0.009003,0.249838,0,0);}
.m9e_c00362{transform:matrix(0.242395,0.009463,-0.009752,0.249810,0,0);-ms-transform:matrix(0.242395,0.009463,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.242395,0.009463,-0.009752,0.249810,0,0);}
.m37_c00362{transform:matrix(0.242780,0.007777,-0.008004,0.249872,0,0);-ms-transform:matrix(0.242780,0.007777,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.242780,0.007777,-0.008004,0.249872,0,0);}
.m73_c00362{transform:matrix(0.242791,0.005341,-0.005499,0.249940,0,0);-ms-transform:matrix(0.242791,0.005341,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.242791,0.005341,-0.005499,0.249940,0,0);}
.m113_c00362{transform:matrix(0.243015,0.004131,-0.004249,0.249964,0,0);-ms-transform:matrix(0.243015,0.004131,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.243015,0.004131,-0.004249,0.249964,0,0);}
.m5f_c00362{transform:matrix(0.243431,0.004382,-0.004499,0.249960,0,0);-ms-transform:matrix(0.243431,0.004382,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.243431,0.004382,-0.004499,0.249960,0,0);}
.mc1_c00362{transform:matrix(0.244339,0.008316,-0.008504,0.249855,0,0);-ms-transform:matrix(0.244339,0.008316,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.244339,0.008316,-0.008504,0.249855,0,0);}
.m34_c00362{transform:matrix(0.245194,0.007854,-0.008004,0.249872,0,0);-ms-transform:matrix(0.245194,0.007854,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.245194,0.007854,-0.008004,0.249872,0,0);}
.m12f_c00362{transform:matrix(0.245816,0.004916,-0.004999,0.249950,0,0);-ms-transform:matrix(0.245816,0.004916,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.245816,0.004916,-0.004999,0.249950,0,0);}
.ma5_c00362{transform:matrix(0.246172,0.009610,-0.009752,0.249810,0,0);-ms-transform:matrix(0.246172,0.009610,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.246172,0.009610,-0.009752,0.249810,0,0);}
.m72_c00362{transform:matrix(0.246500,0.005423,-0.005499,0.249940,0,0);-ms-transform:matrix(0.246500,0.005423,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.246500,0.005423,-0.005499,0.249940,0,0);}
.m134_c00362{transform:matrix(0.246726,0.004935,-0.004999,0.249950,0,0);-ms-transform:matrix(0.246726,0.004935,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.246726,0.004935,-0.004999,0.249950,0,0);}
.m10d_c00362{transform:matrix(0.246829,0.004196,-0.004249,0.249964,0,0);-ms-transform:matrix(0.246829,0.004196,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.246829,0.004196,-0.004249,0.249964,0,0);}
.mc6_c00362{transform:matrix(0.247090,0.005683,-0.005748,0.249934,0,0);-ms-transform:matrix(0.247090,0.005683,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.247090,0.005683,-0.005748,0.249934,0,0);}
.m9c_c00362{transform:matrix(0.247596,0.009666,-0.009752,0.249810,0,0);-ms-transform:matrix(0.247596,0.009666,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.247596,0.009666,-0.009752,0.249810,0,0);}
.m135_c00362{transform:matrix(0.247760,0.004955,-0.004999,0.249950,0,0);-ms-transform:matrix(0.247760,0.004955,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.247760,0.004955,-0.004999,0.249950,0,0);}
.m31_c00362{transform:matrix(0.248103,0.007947,-0.008004,0.249872,0,0);-ms-transform:matrix(0.248103,0.007947,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.248103,0.007947,-0.008004,0.249872,0,0);}
.m60_c00362{transform:matrix(0.248655,0.004476,-0.004499,0.249960,0,0);-ms-transform:matrix(0.248655,0.004476,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.248655,0.004476,-0.004499,0.249960,0,0);}
.ma1_c00362{transform:matrix(0.248716,0.009710,-0.009752,0.249810,0,0);-ms-transform:matrix(0.248716,0.009710,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.248716,0.009710,-0.009752,0.249810,0,0);}
.m3a_c00362{transform:matrix(0.249417,0.007989,-0.008004,0.249872,0,0);-ms-transform:matrix(0.249417,0.007989,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.249417,0.007989,-0.008004,0.249872,0,0);}
.mf5_c00362{transform:matrix(0.250690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250690,0.000000,0.000000,0.250000,0,0);}
.m11_c00362{transform:matrix(0.251201,0.008046,-0.008004,0.249872,0,0);-ms-transform:matrix(0.251201,0.008046,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.251201,0.008046,-0.008004,0.249872,0,0);}
.m8c_c00362{transform:matrix(0.251287,0.009055,-0.009003,0.249838,0,0);-ms-transform:matrix(0.251287,0.009055,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.251287,0.009055,-0.009003,0.249838,0,0);}
.m10c_c00362{transform:matrix(0.251364,0.004273,-0.004249,0.249964,0,0);-ms-transform:matrix(0.251364,0.004273,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.251364,0.004273,-0.004249,0.249964,0,0);}
.m110_c00362{transform:matrix(0.251779,0.004280,-0.004249,0.249964,0,0);-ms-transform:matrix(0.251779,0.004280,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.251779,0.004280,-0.004249,0.249964,0,0);}
.m8d_c00362{transform:matrix(0.251817,0.009074,-0.009003,0.249838,0,0);-ms-transform:matrix(0.251817,0.009074,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.251817,0.009074,-0.009003,0.249838,0,0);}
.m43_c00362{transform:matrix(0.251844,0.007303,-0.007247,0.249895,0,0);-ms-transform:matrix(0.251844,0.007303,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.251844,0.007303,-0.007247,0.249895,0,0);}
.m6b_c00362{transform:matrix(0.252749,0.005560,-0.005499,0.249940,0,0);-ms-transform:matrix(0.252749,0.005560,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.252749,0.005560,-0.005499,0.249940,0,0);}
.m78_c00362{transform:matrix(0.252926,0.009114,-0.009003,0.249838,0,0);-ms-transform:matrix(0.252926,0.009114,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.252926,0.009114,-0.009003,0.249838,0,0);}
.ma0_c00362{transform:matrix(0.253002,0.009877,-0.009752,0.249810,0,0);-ms-transform:matrix(0.253002,0.009877,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.253002,0.009877,-0.009752,0.249810,0,0);}
.m102_c00362{transform:matrix(0.253123,0.004303,-0.004249,0.249964,0,0);-ms-transform:matrix(0.253123,0.004303,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.253123,0.004303,-0.004249,0.249964,0,0);}
.mc5_c00362{transform:matrix(0.253388,0.005828,-0.005748,0.249934,0,0);-ms-transform:matrix(0.253388,0.005828,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.253388,0.005828,-0.005748,0.249934,0,0);}
.m35_c00362{transform:matrix(0.253840,0.008131,-0.008004,0.249872,0,0);-ms-transform:matrix(0.253840,0.008131,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.253840,0.008131,-0.008004,0.249872,0,0);}
.m115_c00362{transform:matrix(0.254548,0.004327,-0.004249,0.249964,0,0);-ms-transform:matrix(0.254548,0.004327,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.254548,0.004327,-0.004249,0.249964,0,0);}
.m40_c00362{transform:matrix(0.254773,0.007388,-0.007247,0.249895,0,0);-ms-transform:matrix(0.254773,0.007388,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.254773,0.007388,-0.007247,0.249895,0,0);}
.m3b_c00362{transform:matrix(0.255209,0.008175,-0.008004,0.249872,0,0);-ms-transform:matrix(0.255209,0.008175,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.255209,0.008175,-0.008004,0.249872,0,0);}
.m125_c00362{transform:matrix(0.255389,0.005108,-0.004999,0.249950,0,0);-ms-transform:matrix(0.255389,0.005108,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.255389,0.005108,-0.004999,0.249950,0,0);}
.mbd_c00362{transform:matrix(0.255822,0.008707,-0.008504,0.249855,0,0);-ms-transform:matrix(0.255822,0.008707,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.255822,0.008707,-0.008504,0.249855,0,0);}
.m69_c00362{transform:matrix(0.256128,0.005635,-0.005499,0.249940,0,0);-ms-transform:matrix(0.256128,0.005635,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.256128,0.005635,-0.005499,0.249940,0,0);}
.m100_c00362{transform:matrix(0.257948,0.004385,-0.004249,0.249964,0,0);-ms-transform:matrix(0.257948,0.004385,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.257948,0.004385,-0.004249,0.249964,0,0);}
.m62_c00362{transform:matrix(0.259838,0.004677,-0.004499,0.249960,0,0);-ms-transform:matrix(0.259838,0.004677,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.259838,0.004677,-0.004499,0.249960,0,0);}
.maa_c00362{transform:matrix(0.259862,0.010145,-0.009752,0.249810,0,0);-ms-transform:matrix(0.259862,0.010145,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.259862,0.010145,-0.009752,0.249810,0,0);}
.m138_c00362{transform:matrix(0.260068,0.005201,-0.004999,0.249950,0,0);-ms-transform:matrix(0.260068,0.005201,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.260068,0.005201,-0.004999,0.249950,0,0);}
.m44_c00362{transform:matrix(0.260620,0.007558,-0.007247,0.249895,0,0);-ms-transform:matrix(0.260620,0.007558,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.260620,0.007558,-0.007247,0.249895,0,0);}
.m49_c00362{transform:matrix(0.261047,0.006787,-0.006498,0.249916,0,0);-ms-transform:matrix(0.261047,0.006787,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.261047,0.006787,-0.006498,0.249916,0,0);}
.m4f_c00362{transform:matrix(0.261567,0.006801,-0.006498,0.249916,0,0);-ms-transform:matrix(0.261567,0.006801,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.261567,0.006801,-0.006498,0.249916,0,0);}
.mb1_c00362{transform:matrix(0.263814,0.010299,-0.009752,0.249810,0,0);-ms-transform:matrix(0.263814,0.010299,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.263814,0.010299,-0.009752,0.249810,0,0);}
.m53_c00362{transform:matrix(0.263846,0.006860,-0.006498,0.249916,0,0);-ms-transform:matrix(0.263846,0.006860,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.263846,0.006860,-0.006498,0.249916,0,0);}
.m3c_c00362{transform:matrix(0.264889,0.007682,-0.007247,0.249895,0,0);-ms-transform:matrix(0.264889,0.007682,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.264889,0.007682,-0.007247,0.249895,0,0);}
.mc4_c00362{transform:matrix(0.265075,0.006097,-0.005748,0.249934,0,0);-ms-transform:matrix(0.265075,0.006097,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.265075,0.006097,-0.005748,0.249934,0,0);}
.m38_c00362{transform:matrix(0.265079,0.008491,-0.008004,0.249872,0,0);-ms-transform:matrix(0.265079,0.008491,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.265079,0.008491,-0.008004,0.249872,0,0);}
.mcb_c00362{transform:matrix(0.265320,0.006102,-0.005748,0.249934,0,0);-ms-transform:matrix(0.265320,0.006102,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.265320,0.006102,-0.005748,0.249934,0,0);}
.m28_c00362{transform:matrix(0.266183,0.008526,-0.008004,0.249872,0,0);-ms-transform:matrix(0.266183,0.008526,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.266183,0.008526,-0.008004,0.249872,0,0);}
.m18_c00362{transform:matrix(0.266343,0.008532,-0.008004,0.249872,0,0);-ms-transform:matrix(0.266343,0.008532,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.266343,0.008532,-0.008004,0.249872,0,0);}
.m3e_c00362{transform:matrix(0.266708,0.007735,-0.007247,0.249895,0,0);-ms-transform:matrix(0.266708,0.007735,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.266708,0.007735,-0.007247,0.249895,0,0);}
.mcc_c00362{transform:matrix(0.267104,0.006143,-0.005748,0.249934,0,0);-ms-transform:matrix(0.267104,0.006143,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.267104,0.006143,-0.005748,0.249934,0,0);}
.maf_c00362{transform:matrix(0.268620,0.010487,-0.009752,0.249810,0,0);-ms-transform:matrix(0.268620,0.010487,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.268620,0.010487,-0.009752,0.249810,0,0);}
.m118_c00362{transform:matrix(0.268861,0.004571,-0.004249,0.249964,0,0);-ms-transform:matrix(0.268861,0.004571,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.268861,0.004571,-0.004249,0.249964,0,0);}
.m6f_c00362{transform:matrix(0.268925,0.005916,-0.005499,0.249940,0,0);-ms-transform:matrix(0.268925,0.005916,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.268925,0.005916,-0.005499,0.249940,0,0);}
.m42_c00362{transform:matrix(0.269112,0.007804,-0.007247,0.249895,0,0);-ms-transform:matrix(0.269112,0.007804,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.269112,0.007804,-0.007247,0.249895,0,0);}
.m63_c00362{transform:matrix(0.269305,0.005925,-0.005499,0.249940,0,0);-ms-transform:matrix(0.269305,0.005925,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.269305,0.005925,-0.005499,0.249940,0,0);}
.m30_c00362{transform:matrix(0.269367,0.008628,-0.008004,0.249872,0,0);-ms-transform:matrix(0.269367,0.008628,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.269367,0.008628,-0.008004,0.249872,0,0);}
.meb_c00362{transform:matrix(0.269620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269620,0.000000,0.000000,0.250000,0,0);}
.m64_c00362{transform:matrix(0.270814,0.005958,-0.005499,0.249940,0,0);-ms-transform:matrix(0.270814,0.005958,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.270814,0.005958,-0.005499,0.249940,0,0);}
.m105_c00362{transform:matrix(0.270971,0.004607,-0.004249,0.249964,0,0);-ms-transform:matrix(0.270971,0.004607,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.270971,0.004607,-0.004249,0.249964,0,0);}
.m3d_c00362{transform:matrix(0.271166,0.007864,-0.007247,0.249895,0,0);-ms-transform:matrix(0.271166,0.007864,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.271166,0.007864,-0.007247,0.249895,0,0);}
.m2f_c00362{transform:matrix(0.271421,0.008694,-0.008004,0.249872,0,0);-ms-transform:matrix(0.271421,0.008694,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.271421,0.008694,-0.008004,0.249872,0,0);}
.mad_c00362{transform:matrix(0.271498,0.010599,-0.009752,0.249810,0,0);-ms-transform:matrix(0.271498,0.010599,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.271498,0.010599,-0.009752,0.249810,0,0);}
.m1b_c00362{transform:matrix(0.271801,0.008706,-0.008004,0.249872,0,0);-ms-transform:matrix(0.271801,0.008706,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.271801,0.008706,-0.008004,0.249872,0,0);}
.m2d_c00362{transform:matrix(0.272905,0.008742,-0.008004,0.249872,0,0);-ms-transform:matrix(0.272905,0.008742,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.272905,0.008742,-0.008004,0.249872,0,0);}
.m3f_c00362{transform:matrix(0.273320,0.007926,-0.007247,0.249895,0,0);-ms-transform:matrix(0.273320,0.007926,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.273320,0.007926,-0.007247,0.249895,0,0);}
.mba_c00362{transform:matrix(0.276075,0.009396,-0.008504,0.249855,0,0);-ms-transform:matrix(0.276075,0.009396,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.276075,0.009396,-0.008504,0.249855,0,0);}
.m88_c00362{transform:matrix(0.276536,0.009965,-0.009003,0.249838,0,0);-ms-transform:matrix(0.276536,0.009965,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.276536,0.009965,-0.009003,0.249838,0,0);}
.m127_c00362{transform:matrix(0.277265,0.005545,-0.004999,0.249950,0,0);-ms-transform:matrix(0.277265,0.005545,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.277265,0.005545,-0.004999,0.249950,0,0);}
.m2c_c00362{transform:matrix(0.277403,0.008886,-0.008004,0.249872,0,0);-ms-transform:matrix(0.277403,0.008886,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.277403,0.008886,-0.008004,0.249872,0,0);}
.m108_c00362{transform:matrix(0.277980,0.004726,-0.004249,0.249964,0,0);-ms-transform:matrix(0.277980,0.004726,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.277980,0.004726,-0.004249,0.249964,0,0);}
.m6e_c00362{transform:matrix(0.279467,0.006148,-0.005499,0.249940,0,0);-ms-transform:matrix(0.279467,0.006148,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.279467,0.006148,-0.005499,0.249940,0,0);}
.m15_c00362{transform:matrix(0.279517,0.008953,-0.008004,0.249872,0,0);-ms-transform:matrix(0.279517,0.008953,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.279517,0.008953,-0.008004,0.249872,0,0);}
.m19_c00362{transform:matrix(0.280126,0.008973,-0.008004,0.249872,0,0);-ms-transform:matrix(0.280126,0.008973,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.280126,0.008973,-0.008004,0.249872,0,0);}
.mc8_c00362{transform:matrix(0.282730,0.006503,-0.005748,0.249934,0,0);-ms-transform:matrix(0.282730,0.006503,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.282730,0.006503,-0.005748,0.249934,0,0);}
.m14_c00362{transform:matrix(0.284734,0.009121,-0.008004,0.249872,0,0);-ms-transform:matrix(0.284734,0.009121,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.284734,0.009121,-0.008004,0.249872,0,0);}
.m1e_c00362{transform:matrix(0.285324,0.009139,-0.008004,0.249872,0,0);-ms-transform:matrix(0.285324,0.009139,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.285324,0.009139,-0.008004,0.249872,0,0);}
.m2e_c00362{transform:matrix(0.286428,0.009175,-0.008004,0.249872,0,0);-ms-transform:matrix(0.286428,0.009175,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.286428,0.009175,-0.008004,0.249872,0,0);}
.me8_c00362{transform:matrix(0.286985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286985,0.000000,0.000000,0.250000,0,0);}
.mb0_c00362{transform:matrix(0.289240,0.011292,-0.009752,0.249810,0,0);-ms-transform:matrix(0.289240,0.011292,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.289240,0.011292,-0.009752,0.249810,0,0);}
.m1_c00362{transform:matrix(0.289570,0.008687,-0.007497,0.249888,0,0);-ms-transform:matrix(0.289570,0.008687,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.289570,0.008687,-0.007497,0.249888,0,0);}
.m5a_c00362{transform:matrix(0.291133,0.005240,-0.004499,0.249960,0,0);-ms-transform:matrix(0.291133,0.005240,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.291133,0.005240,-0.004499,0.249960,0,0);}
.mae_c00362{transform:matrix(0.292083,0.011403,-0.009752,0.249810,0,0);-ms-transform:matrix(0.292083,0.011403,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.292083,0.011403,-0.009752,0.249810,0,0);}
.m2b_c00362{transform:matrix(0.292580,0.009372,-0.008004,0.249872,0,0);-ms-transform:matrix(0.292580,0.009372,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.292580,0.009372,-0.008004,0.249872,0,0);}
.m1f_c00362{transform:matrix(0.293564,0.009403,-0.008004,0.249872,0,0);-ms-transform:matrix(0.293564,0.009403,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.293564,0.009403,-0.008004,0.249872,0,0);}
.m1d_c00362{transform:matrix(0.293609,0.009405,-0.008004,0.249872,0,0);-ms-transform:matrix(0.293609,0.009405,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.293609,0.009405,-0.008004,0.249872,0,0);}
.m95_c00362{transform:matrix(0.293951,0.011476,-0.009752,0.249810,0,0);-ms-transform:matrix(0.293951,0.011476,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.293951,0.011476,-0.009752,0.249810,0,0);}
.mb4_c00362{transform:matrix(0.294411,0.011494,-0.009752,0.249810,0,0);-ms-transform:matrix(0.294411,0.011494,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.294411,0.011494,-0.009752,0.249810,0,0);}
.mac_c00362{transform:matrix(0.294950,0.011515,-0.009752,0.249810,0,0);-ms-transform:matrix(0.294950,0.011515,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.294950,0.011515,-0.009752,0.249810,0,0);}
.me0_c00362{transform:matrix(0.297175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297175,0.000000,0.000000,0.250000,0,0);}
.m24_c00362{transform:matrix(0.298157,0.009551,-0.008004,0.249872,0,0);-ms-transform:matrix(0.298157,0.009551,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.298157,0.009551,-0.008004,0.249872,0,0);}
.m22_c00362{transform:matrix(0.298727,0.009569,-0.008004,0.249872,0,0);-ms-transform:matrix(0.298727,0.009569,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.298727,0.009569,-0.008004,0.249872,0,0);}
.m1c_c00362{transform:matrix(0.300501,0.009626,-0.008004,0.249872,0,0);-ms-transform:matrix(0.300501,0.009626,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.300501,0.009626,-0.008004,0.249872,0,0);}
.mb2_c00362{transform:matrix(0.300726,0.011740,-0.009752,0.249810,0,0);-ms-transform:matrix(0.300726,0.011740,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.300726,0.011740,-0.009752,0.249810,0,0);}
.m107_c00362{transform:matrix(0.301556,0.005126,-0.004249,0.249964,0,0);-ms-transform:matrix(0.301556,0.005126,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.301556,0.005126,-0.004249,0.249964,0,0);}
.me4_c00362{transform:matrix(0.303010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303010,0.000000,0.000000,0.250000,0,0);}
.m124_c00362{transform:matrix(0.303449,0.006069,-0.004999,0.249950,0,0);-ms-transform:matrix(0.303449,0.006069,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.303449,0.006069,-0.004999,0.249950,0,0);}
.m12b_c00362{transform:matrix(0.304149,0.006083,-0.004999,0.249950,0,0);-ms-transform:matrix(0.304149,0.006083,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.304149,0.006083,-0.004999,0.249950,0,0);}
.m7e_c00362{transform:matrix(0.304462,0.010972,-0.009003,0.249838,0,0);-ms-transform:matrix(0.304462,0.010972,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.304462,0.010972,-0.009003,0.249838,0,0);}
.m128_c00362{transform:matrix(0.310293,0.006206,-0.004999,0.249950,0,0);-ms-transform:matrix(0.310293,0.006206,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.310293,0.006206,-0.004999,0.249950,0,0);}
.m20_c00362{transform:matrix(0.311410,0.009975,-0.008004,0.249872,0,0);-ms-transform:matrix(0.311410,0.009975,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.311410,0.009975,-0.008004,0.249872,0,0);}
.m21_c00362{transform:matrix(0.312350,0.010005,-0.008004,0.249872,0,0);-ms-transform:matrix(0.312350,0.010005,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.312350,0.010005,-0.008004,0.249872,0,0);}
.me2_c00362{transform:matrix(0.312985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312985,0.000000,0.000000,0.250000,0,0);}
.m129_c00362{transform:matrix(0.321226,0.006425,-0.004999,0.249950,0,0);-ms-transform:matrix(0.321226,0.006425,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.321226,0.006425,-0.004999,0.249950,0,0);}
.m9b_c00362{transform:matrix(0.322979,0.012609,-0.009752,0.249810,0,0);-ms-transform:matrix(0.322979,0.012609,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.322979,0.012609,-0.009752,0.249810,0,0);}
.m126_c00362{transform:matrix(0.327165,0.006543,-0.004999,0.249950,0,0);-ms-transform:matrix(0.327165,0.006543,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.327165,0.006543,-0.004999,0.249950,0,0);}
.m12d_c00362{transform:matrix(0.327539,0.006551,-0.004999,0.249950,0,0);-ms-transform:matrix(0.327539,0.006551,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.327539,0.006551,-0.004999,0.249950,0,0);}
.m25_c00362{transform:matrix(0.329606,0.010558,-0.008004,0.249872,0,0);-ms-transform:matrix(0.329606,0.010558,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.329606,0.010558,-0.008004,0.249872,0,0);}
.mf0_c00362{transform:matrix(0.334485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334485,0.000000,0.000000,0.250000,0,0);}
.m96_c00362{transform:matrix(0.341860,0.013346,-0.009752,0.249810,0,0);-ms-transform:matrix(0.341860,0.013346,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.341860,0.013346,-0.009752,0.249810,0,0);}
.m90_c00362{transform:matrix(0.358302,0.013988,-0.009752,0.249810,0,0);-ms-transform:matrix(0.358302,0.013988,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.358302,0.013988,-0.009752,0.249810,0,0);}
.m7a_c00362{transform:matrix(0.370315,0.013345,-0.009003,0.249838,0,0);-ms-transform:matrix(0.370315,0.013345,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.370315,0.013345,-0.009003,0.249838,0,0);}
.m27_c00362{transform:matrix(0.387421,0.012410,-0.008004,0.249872,0,0);-ms-transform:matrix(0.387421,0.012410,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.387421,0.012410,-0.008004,0.249872,0,0);}
.m13_c00362{transform:matrix(0.393658,0.012610,-0.008004,0.249872,0,0);-ms-transform:matrix(0.393658,0.012610,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.393658,0.012610,-0.008004,0.249872,0,0);}
.m5_c00362{transform:matrix(0.407981,0.012239,-0.007497,0.249888,0,0);-ms-transform:matrix(0.407981,0.012239,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.407981,0.012239,-0.007497,0.249888,0,0);}
.m32_c00362{transform:matrix(0.414073,0.013264,-0.008004,0.249872,0,0);-ms-transform:matrix(0.414073,0.013264,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.414073,0.013264,-0.008004,0.249872,0,0);}
.m23_c00362{transform:matrix(0.418940,0.013420,-0.008004,0.249872,0,0);-ms-transform:matrix(0.418940,0.013420,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.418940,0.013420,-0.008004,0.249872,0,0);}
.mf4_c00362{transform:matrix(0.424165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424165,0.000000,0.000000,0.250000,0,0);}
.m4_c00362{transform:matrix(0.424189,0.012726,-0.007497,0.249888,0,0);-ms-transform:matrix(0.424189,0.012726,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.424189,0.012726,-0.007497,0.249888,0,0);}
.m8e_c00362{transform:matrix(0.428778,0.016739,-0.009752,0.249810,0,0);-ms-transform:matrix(0.428778,0.016739,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.428778,0.016739,-0.009752,0.249810,0,0);}
.m6_c00362{transform:matrix(0.460768,0.013823,-0.007497,0.249888,0,0);-ms-transform:matrix(0.460768,0.013823,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.460768,0.013823,-0.007497,0.249888,0,0);}
.m84_c00362{transform:matrix(0.474252,0.017090,-0.009003,0.249838,0,0);-ms-transform:matrix(0.474252,0.017090,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.474252,0.017090,-0.009003,0.249838,0,0);}
.me1_c00362{transform:matrix(0.480585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480585,0.000000,0.000000,0.250000,0,0);}
.m3_c00362{transform:matrix(0.480824,0.014425,-0.007497,0.249888,0,0);-ms-transform:matrix(0.480824,0.014425,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.480824,0.014425,-0.007497,0.249888,0,0);}
.ma8_c00362{transform:matrix(0.493554,0.019268,-0.009752,0.249810,0,0);-ms-transform:matrix(0.493554,0.019268,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.493554,0.019268,-0.009752,0.249810,0,0);}
.m9_c00362{transform:matrix(0.496267,0.014888,-0.007497,0.249888,0,0);-ms-transform:matrix(0.496267,0.014888,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.496267,0.014888,-0.007497,0.249888,0,0);}
.mb_c00362{transform:matrix(0.535154,0.016055,-0.007497,0.249888,0,0);-ms-transform:matrix(0.535154,0.016055,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.535154,0.016055,-0.007497,0.249888,0,0);}
.mf1_c00362{transform:matrix(0.567875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567875,0.000000,0.000000,0.250000,0,0);}
.m2_c00362{transform:matrix(0.594083,0.017822,-0.007497,0.249888,0,0);-ms-transform:matrix(0.594083,0.017822,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.594083,0.017822,-0.007497,0.249888,0,0);}
.mf2_c00362{transform:matrix(0.623945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.623945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.623945,0.000000,0.000000,0.250000,0,0);}
.m7_c00362{transform:matrix(0.665810,0.019974,-0.007497,0.249888,0,0);-ms-transform:matrix(0.665810,0.019974,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.665810,0.019974,-0.007497,0.249888,0,0);}
.m26_c00362{transform:matrix(0.704194,0.022557,-0.008004,0.249872,0,0);-ms-transform:matrix(0.704194,0.022557,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.704194,0.022557,-0.008004,0.249872,0,0);}
.m9a_c00362{transform:matrix(0.709285,0.027690,-0.009752,0.249810,0,0);-ms-transform:matrix(0.709285,0.027690,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.709285,0.027690,-0.009752,0.249810,0,0);}
.m76_c00362{transform:matrix(0.738835,0.026625,-0.009003,0.249838,0,0);-ms-transform:matrix(0.738835,0.026625,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.738835,0.026625,-0.009003,0.249838,0,0);}
.m8_c00362{transform:matrix(0.872817,0.026185,-0.007497,0.249888,0,0);-ms-transform:matrix(0.872817,0.026185,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.872817,0.026185,-0.007497,0.249888,0,0);}
.m0_c00362{transform:matrix(1.087916,0.032637,-0.007497,0.249888,0,0);-ms-transform:matrix(1.087916,0.032637,-0.007497,0.249888,0,0);-webkit-transform:matrix(1.087916,0.032637,-0.007497,0.249888,0,0);}
.m132_c00362{transform:matrix(1.093951,0.021879,-0.004999,0.249950,0,0);-ms-transform:matrix(1.093951,0.021879,-0.004999,0.249950,0,0);-webkit-transform:matrix(1.093951,0.021879,-0.004999,0.249950,0,0);}
.mee_c00362{transform:matrix(1.474910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.474910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.474910,0.000000,0.000000,0.250000,0,0);}
.m70_c00362{transform:matrix(4.642437,0.102134,-0.005499,0.249940,0,0);-ms-transform:matrix(4.642437,0.102134,-0.005499,0.249940,0,0);-webkit-transform:matrix(4.642437,0.102134,-0.005499,0.249940,0,0);}
.m71_c00362{transform:matrix(4.655289,0.102416,-0.005499,0.249940,0,0);-ms-transform:matrix(4.655289,0.102416,-0.005499,0.249940,0,0);-webkit-transform:matrix(4.655289,0.102416,-0.005499,0.249940,0,0);}
.v0_c00362{vertical-align:0.000000px;}
.ls0_c00362{letter-spacing:0.000000px;}
.sc__c00362{text-shadow:none;}
.sc0_c00362{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__c00362{-webkit-text-stroke:0px transparent;}
.sc0_c00362{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00362{word-spacing:0.000000px;}
._0_c00362{width:20.231397px;}
.fc0_c00362{color:transparent;}
.fs18_c00362{font-size:12.000000px;}
.fs9_c00362{font-size:12.002904px;}
.fs0_c00362{font-size:18.008098px;}
.fs15_c00362{font-size:24.000000px;}
.fs13_c00362{font-size:42.008399px;}
.fs1d_c00362{font-size:60.011999px;}
.fs3_c00362{font-size:65.967817px;}
.fsf_c00362{font-size:65.984224px;}
.fsa_c00362{font-size:66.015970px;}
.fs2_c00362{font-size:71.964891px;}
.fs14_c00362{font-size:72.000000px;}
.fs1a_c00362{font-size:72.010403px;}
.fs8_c00362{font-size:72.017422px;}
.fs11_c00362{font-size:72.019041px;}
.fs5_c00362{font-size:72.030270px;}
.fs4_c00362{font-size:77.961966px;}
.fs10_c00362{font-size:77.967116px;}
.fsc_c00362{font-size:77.972578px;}
.fse_c00362{font-size:77.981356px;}
.fs1b_c00362{font-size:78.011270px;}
.fs7_c00362{font-size:78.012635px;}
.fs1e_c00362{font-size:78.015598px;}
.fs6_c00362{font-size:78.026360px;}
.fsb_c00362{font-size:83.970469px;}
.fsd_c00362{font-size:83.979922px;}
.fs1c_c00362{font-size:84.013607px;}
.fs19_c00362{font-size:84.030612px;}
.fs12_c00362{font-size:90.017998px;}
.fs1_c00362{font-size:101.967865px;}
.fs17_c00362{font-size:102.000000px;}
.fs16_c00362{font-size:138.000000px;}
.y0_c00362{bottom:0.000000px;}
.yfc_c00362{bottom:346.373622px;}
.yfb_c00362{bottom:348.177532px;}
.yfa_c00362{bottom:349.354138px;}
.yf9_c00362{bottom:350.809425px;}
.yf8_c00362{bottom:352.027017px;}
.yf7_c00362{bottom:353.777346px;}
.yf6_c00362{bottom:354.657127px;}
.yf5_c00362{bottom:356.404500px;}
.yf4_c00362{bottom:357.895500px;}
.ydb_c00362{bottom:366.115950px;}
.yf2_c00362{bottom:369.078000px;}
.yda_c00362{bottom:371.885040px;}
.yd9_c00362{bottom:372.330030px;}
.yd8_c00362{bottom:373.895610px;}
.yd7_c00362{bottom:374.570040px;}
.yd6_c00362{bottom:375.234660px;}
.yd5_c00362{bottom:376.353420px;}
.yd4_c00362{bottom:378.747630px;}
.yd3_c00362{bottom:379.886490px;}
.yd2_c00362{bottom:380.514060px;}
.yf3_c00362{bottom:382.305000px;}
.yd1_c00362{bottom:383.137500px;}
.yf1_c00362{bottom:394.473000px;}
.yef_c00362{bottom:404.808000px;}
.yee_c00362{bottom:406.023000px;}
.yed_c00362{bottom:408.954000px;}
.yec_c00362{bottom:410.131500px;}
.yeb_c00362{bottom:411.841500px;}
.yf0_c00362{bottom:415.396500px;}
.yea_c00362{bottom:415.996500px;}
.ye9_c00362{bottom:417.181500px;}
.ye8_c00362{bottom:419.166000px;}
.ye7_c00362{bottom:422.481000px;}
.ye1_c00362{bottom:423.367500px;}
.ye6_c00362{bottom:426.496500px;}
.ye0_c00362{bottom:426.775500px;}
.ye5_c00362{bottom:427.309500px;}
.ye4_c00362{bottom:429.748500px;}
.ye3_c00362{bottom:432.087000px;}
.ydf_c00362{bottom:432.816000px;}
.ye2_c00362{bottom:434.704500px;}
.yd0_c00362{bottom:440.046351px;}
.ycf_c00362{bottom:441.301013px;}
.yce_c00362{bottom:442.873868px;}
.ycd_c00362{bottom:444.674561px;}
.ycc_c00362{bottom:445.675406px;}
.ycb_c00362{bottom:446.441616px;}
.yca_c00362{bottom:449.765070px;}
.yde_c00362{bottom:450.097500px;}
.yc9_c00362{bottom:450.286296px;}
.yc8_c00362{bottom:451.536749px;}
.yc7_c00362{bottom:453.051437px;}
.yc6_c00362{bottom:455.054748px;}
.yc5_c00362{bottom:455.766000px;}
.ydd_c00362{bottom:478.440000px;}
.yc4_c00362{bottom:479.532774px;}
.yc3_c00362{bottom:482.168403px;}
.yc2_c00362{bottom:483.344616px;}
.yc1_c00362{bottom:484.140318px;}
.yc0_c00362{bottom:486.028593px;}
.ybf_c00362{bottom:487.130805px;}
.ydc_c00362{bottom:490.050000px;}
.ybe_c00362{bottom:490.934742px;}
.ybd_c00362{bottom:492.424146px;}
.ybc_c00362{bottom:493.553592px;}
.ybb_c00362{bottom:496.456206px;}
.yba_c00362{bottom:497.319585px;}
.yb9_c00362{bottom:499.567410px;}
.yb8_c00362{bottom:500.666511px;}
.yb7_c00362{bottom:501.734961px;}
.yb6_c00362{bottom:503.550000px;}
.yb5_c00362{bottom:514.937359px;}
.yb4_c00362{bottom:516.170481px;}
.yb3_c00362{bottom:520.155618px;}
.yb2_c00362{bottom:521.014339px;}
.yb1_c00362{bottom:524.012464px;}
.yb0_c00362{bottom:526.225344px;}
.yaf_c00362{bottom:530.474725px;}
.yae_c00362{bottom:533.116176px;}
.yad_c00362{bottom:536.946580px;}
.yac_c00362{bottom:538.161391px;}
.yab_c00362{bottom:539.820159px;}
.yaa_c00362{bottom:542.239953px;}
.ya9_c00362{bottom:545.140500px;}
.ya8_c00362{bottom:549.222915px;}
.ya7_c00362{bottom:550.919006px;}
.ya6_c00362{bottom:553.959426px;}
.ya5_c00362{bottom:555.303932px;}
.ya4_c00362{bottom:556.577067px;}
.ya3_c00362{bottom:558.765259px;}
.ya2_c00362{bottom:562.701022px;}
.ya1_c00362{bottom:566.546461px;}
.ya0_c00362{bottom:567.854463px;}
.y9f_c00362{bottom:571.275777px;}
.y9e_c00362{bottom:572.973798px;}
.y9d_c00362{bottom:576.391836px;}
.y9c_c00362{bottom:579.108868px;}
.y9b_c00362{bottom:581.869308px;}
.y9a_c00362{bottom:587.416854px;}
.y99_c00362{bottom:588.787158px;}
.y98_c00362{bottom:593.521387px;}
.y97_c00362{bottom:594.509921px;}
.y96_c00362{bottom:598.317920px;}
.y95_c00362{bottom:600.046829px;}
.y94_c00362{bottom:602.648207px;}
.y93_c00362{bottom:604.819434px;}
.y92_c00362{bottom:607.375474px;}
.y91_c00362{bottom:611.493406px;}
.y90_c00362{bottom:614.112159px;}
.y8f_c00362{bottom:616.975500px;}
.y8e_c00362{bottom:634.183542px;}
.y8d_c00362{bottom:637.376575px;}
.y8c_c00362{bottom:638.717004px;}
.y8b_c00362{bottom:640.018269px;}
.y8a_c00362{bottom:641.887317px;}
.y89_c00362{bottom:644.475348px;}
.y88_c00362{bottom:645.383007px;}
.y87_c00362{bottom:647.179614px;}
.y86_c00362{bottom:650.353653px;}
.y85_c00362{bottom:652.895028px;}
.y84_c00362{bottom:656.896104px;}
.y83_c00362{bottom:660.484296px;}
.y82_c00362{bottom:662.080158px;}
.y81_c00362{bottom:664.502004px;}
.y80_c00362{bottom:667.321776px;}
.y7f_c00362{bottom:670.121406px;}
.y7e_c00362{bottom:672.308406px;}
.y75_c00362{bottom:672.964584px;}
.y7d_c00362{bottom:674.850348px;}
.y7c_c00362{bottom:675.740538px;}
.y7b_c00362{bottom:678.365694px;}
.y7a_c00362{bottom:679.253400px;}
.y79_c00362{bottom:681.257556px;}
.y74_c00362{bottom:681.382485px;}
.y78_c00362{bottom:682.852608px;}
.y73_c00362{bottom:683.909598px;}
.y77_c00362{bottom:685.698624px;}
.y76_c00362{bottom:686.349000px;}
.y70_c00362{bottom:693.829326px;}
.y6f_c00362{bottom:695.843547px;}
.y6e_c00362{bottom:696.569085px;}
.y6d_c00362{bottom:697.292676px;}
.y6c_c00362{bottom:698.768436px;}
.y6b_c00362{bottom:699.493083px;}
.y6a_c00362{bottom:700.745730px;}
.y69_c00362{bottom:701.442888px;}
.y68_c00362{bottom:701.942376px;}
.y67_c00362{bottom:702.677583px;}
.y66_c00362{bottom:703.176543px;}
.y72_c00362{bottom:705.196527px;}
.y71_c00362{bottom:705.197262px;}
.y65_c00362{bottom:705.803343px;}
.y64_c00362{bottom:707.946000px;}
.y63_c00362{bottom:730.263360px;}
.y62_c00362{bottom:730.690176px;}
.y61_c00362{bottom:732.290439px;}
.y60_c00362{bottom:733.690848px;}
.y5f_c00362{bottom:734.294271px;}
.y5e_c00362{bottom:734.876850px;}
.y5d_c00362{bottom:735.698919px;}
.y5c_c00362{bottom:736.482837px;}
.y5b_c00362{bottom:736.895694px;}
.y5a_c00362{bottom:737.270373px;}
.y59_c00362{bottom:738.086907px;}
.y58_c00362{bottom:738.669837px;}
.y57_c00362{bottom:739.855488px;}
.y56_c00362{bottom:740.428266px;}
.y55_c00362{bottom:741.423000px;}
.y54_c00362{bottom:768.099618px;}
.y53_c00362{bottom:768.702051px;}
.y52_c00362{bottom:769.870062px;}
.y51_c00362{bottom:771.535440px;}
.y50_c00362{bottom:775.033311px;}
.y4f_c00362{bottom:775.904610px;}
.y4e_c00362{bottom:776.745255px;}
.y4d_c00362{bottom:778.201203px;}
.y4c_c00362{bottom:779.042940px;}
.y4b_c00362{bottom:780.788502px;}
.y4a_c00362{bottom:781.813617px;}
.y49_c00362{bottom:782.093793px;}
.y48_c00362{bottom:783.003000px;}
.y120_c00362{bottom:800.726004px;}
.y11f_c00362{bottom:802.335987px;}
.y11e_c00362{bottom:802.939329px;}
.y11d_c00362{bottom:803.537271px;}
.y11c_c00362{bottom:804.952179px;}
.y11b_c00362{bottom:805.535622px;}
.y11a_c00362{bottom:807.319647px;}
.y119_c00362{bottom:809.518986px;}
.y118_c00362{bottom:810.708606px;}
.y117_c00362{bottom:811.713492px;}
.y116_c00362{bottom:813.244500px;}
.y115_c00362{bottom:839.137304px;}
.y114_c00362{bottom:840.429956px;}
.y113_c00362{bottom:841.767335px;}
.y112_c00362{bottom:845.257047px;}
.y111_c00362{bottom:846.499346px;}
.y110_c00362{bottom:849.132126px;}
.y10f_c00362{bottom:850.828626px;}
.y10e_c00362{bottom:851.706840px;}
.y10d_c00362{bottom:855.973677px;}
.y10c_c00362{bottom:858.984366px;}
.y10b_c00362{bottom:860.260980px;}
.y10a_c00362{bottom:864.814818px;}
.y109_c00362{bottom:873.448536px;}
.y108_c00362{bottom:873.999948px;}
.y107_c00362{bottom:874.771119px;}
.y106_c00362{bottom:875.161218px;}
.y105_c00362{bottom:876.677576px;}
.y104_c00362{bottom:878.312151px;}
.y103_c00362{bottom:878.739812px;}
.y102_c00362{bottom:880.419496px;}
.y101_c00362{bottom:880.993858px;}
.y100_c00362{bottom:881.745879px;}
.yff_c00362{bottom:882.866604px;}
.yfe_c00362{bottom:883.618318px;}
.yfd_c00362{bottom:885.064500px;}
.y47_c00362{bottom:909.402669px;}
.y46_c00362{bottom:910.379635px;}
.y45_c00362{bottom:912.012147px;}
.y44_c00362{bottom:913.930584px;}
.y43_c00362{bottom:916.798104px;}
.y42_c00362{bottom:917.808870px;}
.y41_c00362{bottom:919.427201px;}
.y40_c00362{bottom:922.290545px;}
.y3f_c00362{bottom:924.849650px;}
.y3e_c00362{bottom:928.012100px;}
.y3d_c00362{bottom:929.074500px;}
.y136_c00362{bottom:946.057890px;}
.y12c_c00362{bottom:946.661220px;}
.y135_c00362{bottom:946.698780px;}
.y134_c00362{bottom:947.340870px;}
.y12b_c00362{bottom:947.917320px;}
.y12a_c00362{bottom:948.704700px;}
.y133_c00362{bottom:949.090530px;}
.y132_c00362{bottom:950.731530px;}
.y131_c00362{bottom:951.189570px;}
.y129_c00362{bottom:951.344220px;}
.y128_c00362{bottom:951.973080px;}
.y127_c00362{bottom:953.994450px;}
.y130_c00362{bottom:955.145430px;}
.y126_c00362{bottom:955.322370px;}
.y125_c00362{bottom:955.971960px;}
.y12f_c00362{bottom:956.181870px;}
.y12e_c00362{bottom:956.961600px;}
.y12d_c00362{bottom:957.421770px;}
.y124_c00362{bottom:957.759870px;}
.y123_c00362{bottom:958.402350px;}
.y122_c00362{bottom:959.494350px;}
.y121_c00362{bottom:961.203000px;}
.y3c_c00362{bottom:980.815014px;}
.y3b_c00362{bottom:983.235343px;}
.y3a_c00362{bottom:984.025602px;}
.y39_c00362{bottom:987.547167px;}
.y38_c00362{bottom:988.572943px;}
.y37_c00362{bottom:989.651826px;}
.y36_c00362{bottom:992.272093px;}
.y35_c00362{bottom:993.356907px;}
.y34_c00362{bottom:995.824699px;}
.y33_c00362{bottom:1017.453067px;}
.y32_c00362{bottom:1018.665375px;}
.y31_c00362{bottom:1019.277441px;}
.y30_c00362{bottom:1021.624678px;}
.y2f_c00362{bottom:1022.587317px;}
.y2e_c00362{bottom:1024.950603px;}
.y2d_c00362{bottom:1028.240868px;}
.y2c_c00362{bottom:1030.252728px;}
.y2b_c00362{bottom:1030.923616px;}
.y2a_c00362{bottom:1031.803704px;}
.y29_c00362{bottom:1034.142888px;}
.y28_c00362{bottom:1052.810311px;}
.y27_c00362{bottom:1055.689761px;}
.y26_c00362{bottom:1056.593026px;}
.y25_c00362{bottom:1058.435878px;}
.y24_c00362{bottom:1059.044964px;}
.y23_c00362{bottom:1060.398846px;}
.y22_c00362{bottom:1061.221591px;}
.y21_c00362{bottom:1063.166868px;}
.y20_c00362{bottom:1064.558442px;}
.y1f_c00362{bottom:1066.226872px;}
.y1e_c00362{bottom:1067.068200px;}
.y1d_c00362{bottom:1068.129225px;}
.y1c_c00362{bottom:1070.030953px;}
.y1b_c00362{bottom:1085.568300px;}
.y1a_c00362{bottom:1089.173484px;}
.y19_c00362{bottom:1091.689212px;}
.y18_c00362{bottom:1092.735516px;}
.y17_c00362{bottom:1093.466508px;}
.y16_c00362{bottom:1096.357404px;}
.y15_c00362{bottom:1097.348508px;}
.y14_c00362{bottom:1099.866780px;}
.y13_c00362{bottom:1100.904444px;}
.y12_c00362{bottom:1103.003724px;}
.y11_c00362{bottom:1104.099900px;}
.y10_c00362{bottom:1105.081596px;}
.yf_c00362{bottom:1106.197500px;}
.ya_c00362{bottom:1152.161430px;}
.yc_c00362{bottom:1152.425010px;}
.y9_c00362{bottom:1153.160925px;}
.y8_c00362{bottom:1154.103810px;}
.y7_c00362{bottom:1154.480595px;}
.y6_c00362{bottom:1154.788260px;}
.y5_c00362{bottom:1155.095925px;}
.y4_c00362{bottom:1155.476445px;}
.y3_c00362{bottom:1155.967665px;}
.y2_c00362{bottom:1156.721595px;}
.y1_c00362{bottom:1157.491500px;}
.yb_c00362{bottom:1158.022515px;}
.ye_c00362{bottom:1164.249164px;}
.yd_c00362{bottom:1166.688000px;}
.h1a_c00362{height:12.000000px;}
.hb_c00362{height:12.002904px;}
.h2_c00362{height:18.008098px;}
.h17_c00362{height:24.000000px;}
.h15_c00362{height:42.008399px;}
.h1f_c00362{height:60.011999px;}
.h5_c00362{height:65.967817px;}
.h11_c00362{height:65.984224px;}
.hc_c00362{height:66.015970px;}
.h4_c00362{height:71.964891px;}
.h16_c00362{height:72.000000px;}
.h1c_c00362{height:72.010403px;}
.ha_c00362{height:72.017422px;}
.h13_c00362{height:72.019041px;}
.h7_c00362{height:72.030270px;}
.h6_c00362{height:77.961966px;}
.h12_c00362{height:77.967116px;}
.he_c00362{height:77.972578px;}
.h10_c00362{height:77.981356px;}
.h1d_c00362{height:78.011270px;}
.h9_c00362{height:78.012635px;}
.h20_c00362{height:78.015598px;}
.h8_c00362{height:78.026360px;}
.hd_c00362{height:83.970469px;}
.hf_c00362{height:83.979922px;}
.h1e_c00362{height:84.013607px;}
.h1b_c00362{height:84.030612px;}
.h14_c00362{height:90.017998px;}
.h3_c00362{height:101.967865px;}
.h19_c00362{height:102.000000px;}
.h18_c00362{height:138.000000px;}
.h0_c00362{height:1251.450000px;}
.h1_c00362{height:1251.750000px;}
.w0_c00362{width:915.000000px;}
.x0_c00362{left:0.000000px;}
.x65_c00362{left:3.007500px;}
.xaf_c00362{left:4.047000px;}
.x71_c00362{left:7.005498px;}
.x87_c00362{left:8.637000px;}
.xa8_c00362{left:9.990000px;}
.xb0_c00362{left:19.167000px;}
.x66_c00362{left:21.055434px;}
.xb1_c00362{left:41.847000px;}
.xb2_c00362{left:51.837000px;}
.x72_c00362{left:68.951355px;}
.x81_c00362{left:73.702874px;}
.xa9_c00362{left:77.490000px;}
.x7b_c00362{left:80.263581px;}
.x88_c00362{left:82.935627px;}
.xb3_c00362{left:90.447000px;}
.x67_c00362{left:100.032378px;}
.x9f_c00362{left:140.275500px;}
.x26_c00362{left:143.766646px;}
.x61_c00362{left:144.987993px;}
.x73_c00362{left:146.288495px;}
.x2f_c00362{left:147.691866px;}
.x41_c00362{left:149.467500px;}
.xc9_c00362{left:150.643500px;}
.xba_c00362{left:152.289000px;}
.x1b_c00362{left:154.360451px;}
.x9b_c00362{left:174.058500px;}
.xd7_c00362{left:175.267410px;}
.x38_c00362{left:184.692000px;}
.x89_c00362{left:187.409548px;}
.x74_c00362{left:190.065282px;}
.x42_c00362{left:195.213000px;}
.xe_c00362{left:197.938500px;}
.x68_c00362{left:199.910400px;}
.x4d_c00362{left:203.023500px;}
.xb5_c00362{left:205.482000px;}
.xaa_c00362{left:206.746500px;}
.x75_c00362{left:212.171654px;}
.xd8_c00362{left:216.279720px;}
.x8a_c00362{left:218.527400px;}
.x69_c00362{left:224.544241px;}
.x91_c00362{left:229.164692px;}
.x1c_c00362{left:230.354438px;}
.xf_c00362{left:232.775628px;}
.x43_c00362{left:234.640500px;}
.xca_c00362{left:235.699500px;}
.xb6_c00362{left:238.066500px;}
.x57_c00362{left:245.614500px;}
.x30_c00362{left:250.348888px;}
.x7c_c00362{left:252.826346px;}
.x62_c00362{left:256.785975px;}
.xc2_c00362{left:259.958570px;}
.x92_c00362{left:261.458865px;}
.x10_c00362{left:263.422950px;}
.xa0_c00362{left:271.447500px;}
.x1d_c00362{left:272.750513px;}
.x76_c00362{left:275.245665px;}
.xbb_c00362{left:281.577000px;}
.xd2_c00362{left:283.527000px;}
.x27_c00362{left:287.690641px;}
.xcb_c00362{left:291.526500px;}
.xc3_c00362{left:292.688330px;}
.x39_c00362{left:293.742000px;}
.x31_c00362{left:295.501270px;}
.x11_c00362{left:297.644195px;}
.x4e_c00362{left:300.714000px;}
.x44_c00362{left:301.777500px;}
.xa1_c00362{left:302.826000px;}
.x1e_c00362{left:306.367905px;}
.x8b_c00362{left:316.644684px;}
.x7d_c00362{left:318.300306px;}
.x77_c00362{left:320.782866px;}
.x6a_c00362{left:322.095093px;}
.x93_c00362{left:327.505252px;}
.x4f_c00362{left:333.099000px;}
.x45_c00362{left:334.152000px;}
.xab_c00362{left:337.278000px;}
.xb7_c00362{left:347.989500px;}
.x78_c00362{left:352.479408px;}
.xcc_c00362{left:357.616500px;}
.xa2_c00362{left:359.769000px;}
.x28_c00362{left:362.112061px;}
.x12_c00362{left:363.181092px;}
.x58_c00362{left:365.014500px;}
.x63_c00362{left:366.675066px;}
.xc4_c00362{left:369.876463px;}
.x1f_c00362{left:373.018131px;}
.x50_c00362{left:378.462000px;}
.x3a_c00362{left:381.987000px;}
.x79_c00362{left:385.137825px;}
.x59_c00362{left:387.694500px;}
.x46_c00362{left:390.150000px;}
.x6b_c00362{left:392.633983px;}
.x13_c00362{left:395.575665px;}
.x51_c00362{left:399.277500px;}
.xb8_c00362{left:401.889000px;}
.x32_c00362{left:404.510568px;}
.x5a_c00362{left:421.113000px;}
.x47_c00362{left:422.482500px;}
.xbc_c00362{left:425.524500px;}
.xac_c00362{left:426.885000px;}
.x20_c00362{left:428.636949px;}
.x94_c00362{left:438.158988px;}
.x7e_c00362{left:440.552432px;}
.x5b_c00362{left:443.817000px;}
.xb9_c00362{left:445.467000px;}
.x33_c00362{left:449.384133px;}
.x1_c00362{left:453.256500px;}
.x48_c00362{left:455.994000px;}
.x7a_c00362{left:462.960425px;}
.x52_c00362{left:465.765000px;}
.xb_c00362{left:468.635745px;}
.x95_c00362{left:471.344769px;}
.x14_c00362{left:474.192969px;}
.x5c_c00362{left:475.506000px;}
.x2_c00362{left:478.920000px;}
.x3b_c00362{left:480.723000px;}
.x29_c00362{left:483.842716px;}
.x34_c00362{left:492.037843px;}
.x82_c00362{left:493.996160px;}
.xc5_c00362{left:501.830147px;}
.x3_c00362{left:504.051000px;}
.x15_c00362{left:505.133997px;}
.x21_c00362{left:506.365085px;}
.x53_c00362{left:511.435500px;}
.xad_c00362{left:512.517000px;}
.x96_c00362{left:515.106963px;}
.x4_c00362{left:520.425000px;}
.xbd_c00362{left:524.329500px;}
.x6c_c00362{left:531.012966px;}
.x5_c00362{left:533.109000px;}
.xa3_c00362{left:535.417500px;}
.x3c_c00362{left:536.527500px;}
.x22_c00362{left:539.215053px;}
.x6_c00362{left:543.364500px;}
.xc6_c00362{left:545.313878px;}
.x9c_c00362{left:548.542500px;}
.x8c_c00362{left:549.839756px;}
.x7_c00362{left:553.620000px;}
.x8_c00362{left:566.179500px;}
.xa4_c00362{left:568.648500px;}
.x2a_c00362{left:571.295706px;}
.x54_c00362{left:577.324500px;}
.xcd_c00362{left:578.914500px;}
.x7f_c00362{left:582.382459px;}
.xd_c00362{left:585.909085px;}
.x49_c00362{left:590.527500px;}
.x23_c00362{left:593.282539px;}
.x16_c00362{left:595.384157px;}
.x9_c00362{left:597.609000px;}
.xa5_c00362{left:602.370000px;}
.xd3_c00362{left:604.990500px;}
.x2b_c00362{left:606.920763px;}
.x6d_c00362{left:609.261639px;}
.xce_c00362{left:611.328000px;}
.xc7_c00362{left:612.805133px;}
.x17_c00362{left:618.204813px;}
.xc_c00362{left:619.937520px;}
.x9d_c00362{left:625.371000px;}
.x8d_c00362{left:626.637880px;}
.xa_c00362{left:630.925500px;}
.x5d_c00362{left:632.463000px;}
.xd4_c00362{left:636.433500px;}
.x35_c00362{left:638.597211px;}
.xbe_c00362{left:645.637500px;}
.x8e_c00362{left:648.634362px;}
.x18_c00362{left:650.869116px;}
.x4a_c00362{left:654.580500px;}
.x97_c00362{left:659.261165px;}
.x5e_c00362{left:665.353500px;}
.x3d_c00362{left:670.261500px;}
.x36_c00362{left:671.463220px;}
.x6e_c00362{left:676.467866px;}
.xa6_c00362{left:680.649000px;}
.x83_c00362{left:683.475490px;}
.xcf_c00362{left:689.934000px;}
.x24_c00362{left:691.229952px;}
.x2c_c00362{left:693.732250px;}
.x5f_c00362{left:698.332500px;}
.x4b_c00362{left:699.504000px;}
.x9e_c00362{left:703.662000px;}
.x98_c00362{left:714.743127px;}
.x2d_c00362{left:716.399212px;}
.x84_c00362{left:717.915516px;}
.x6f_c00362{left:720.753036px;}
.x4c_c00362{left:722.674500px;}
.x25_c00362{left:727.342923px;}
.x19_c00362{left:729.406999px;}
.x64_c00362{left:732.662514px;}
.xbf_c00362{left:734.835000px;}
.x3e_c00362{left:736.414500px;}
.x99_c00362{left:738.122724px;}
.x55_c00362{left:744.028500px;}
.xd9_c00362{left:749.114370px;}
.x8f_c00362{left:750.715179px;}
.xd0_c00362{left:756.672000px;}
.xc0_c00362{left:757.782000px;}
.x2e_c00362{left:761.223502px;}
.x80_c00362{left:764.074086px;}
.x56_c00362{left:767.740500px;}
.x37_c00362{left:772.170214px;}
.x90_c00362{left:782.302060px;}
.xa7_c00362{left:783.669960px;}
.x60_c00362{left:789.888000px;}
.x3f_c00362{left:792.708000px;}
.x85_c00362{left:795.797056px;}
.xc8_c00362{left:801.560548px;}
.xb4_c00362{left:802.648500px;}
.xd5_c00362{left:807.778500px;}
.xae_c00362{left:814.900500px;}
.x70_c00362{left:820.325364px;}
.x40_c00362{left:826.396500px;}
.xc1_c00362{left:835.581000px;}
.x86_c00362{left:839.243067px;}
.x1a_c00362{left:841.956338px;}
.xd1_c00362{left:846.115500px;}
.x9a_c00362{left:850.123611px;}
.xd6_c00362{left:870.583500px;}
@media print{
.v0_c00362{vertical-align:0.000000pt;}
.ls0_c00362{letter-spacing:0.000000pt;}
.ws0_c00362{word-spacing:0.000000pt;}
._0_c00362{width:17.983464pt;}
.fs18_c00362{font-size:10.666667pt;}
.fs9_c00362{font-size:10.669248pt;}
.fs0_c00362{font-size:16.007198pt;}
.fs15_c00362{font-size:21.333333pt;}
.fs13_c00362{font-size:37.340799pt;}
.fs1d_c00362{font-size:53.343999pt;}
.fs3_c00362{font-size:58.638060pt;}
.fsf_c00362{font-size:58.652644pt;}
.fsa_c00362{font-size:58.680862pt;}
.fs2_c00362{font-size:63.968792pt;}
.fs14_c00362{font-size:64.000000pt;}
.fs1a_c00362{font-size:64.009247pt;}
.fs8_c00362{font-size:64.015486pt;}
.fs11_c00362{font-size:64.016926pt;}
.fs5_c00362{font-size:64.026906pt;}
.fs4_c00362{font-size:69.299525pt;}
.fs10_c00362{font-size:69.304103pt;}
.fsc_c00362{font-size:69.308958pt;}
.fse_c00362{font-size:69.316761pt;}
.fs1b_c00362{font-size:69.343351pt;}
.fs7_c00362{font-size:69.344564pt;}
.fs1e_c00362{font-size:69.347199pt;}
.fs6_c00362{font-size:69.356764pt;}
.fsb_c00362{font-size:74.640417pt;}
.fsd_c00362{font-size:74.648819pt;}
.fs1c_c00362{font-size:74.678762pt;}
.fs19_c00362{font-size:74.693878pt;}
.fs12_c00362{font-size:80.015998pt;}
.fs1_c00362{font-size:90.638102pt;}
.fs17_c00362{font-size:90.666667pt;}
.fs16_c00362{font-size:122.666667pt;}
.y0_c00362{bottom:0.000000pt;}
.yfc_c00362{bottom:307.887664pt;}
.yfb_c00362{bottom:309.491140pt;}
.yfa_c00362{bottom:310.537012pt;}
.yf9_c00362{bottom:311.830600pt;}
.yf8_c00362{bottom:312.912904pt;}
.yf7_c00362{bottom:314.468752pt;}
.yf6_c00362{bottom:315.250780pt;}
.yf5_c00362{bottom:316.804000pt;}
.yf4_c00362{bottom:318.129333pt;}
.ydb_c00362{bottom:325.436400pt;}
.yf2_c00362{bottom:328.069333pt;}
.yda_c00362{bottom:330.564480pt;}
.yd9_c00362{bottom:330.960027pt;}
.yd8_c00362{bottom:332.351653pt;}
.yd7_c00362{bottom:332.951147pt;}
.yd6_c00362{bottom:333.541920pt;}
.yd5_c00362{bottom:334.536373pt;}
.yd4_c00362{bottom:336.664560pt;}
.yd3_c00362{bottom:337.676880pt;}
.yd2_c00362{bottom:338.234720pt;}
.yf3_c00362{bottom:339.826667pt;}
.yd1_c00362{bottom:340.566667pt;}
.yf1_c00362{bottom:350.642667pt;}
.yef_c00362{bottom:359.829333pt;}
.yee_c00362{bottom:360.909333pt;}
.yed_c00362{bottom:363.514667pt;}
.yec_c00362{bottom:364.561333pt;}
.yeb_c00362{bottom:366.081333pt;}
.yf0_c00362{bottom:369.241333pt;}
.yea_c00362{bottom:369.774667pt;}
.ye9_c00362{bottom:370.828000pt;}
.ye8_c00362{bottom:372.592000pt;}
.ye7_c00362{bottom:375.538667pt;}
.ye1_c00362{bottom:376.326667pt;}
.ye6_c00362{bottom:379.108000pt;}
.ye0_c00362{bottom:379.356000pt;}
.ye5_c00362{bottom:379.830667pt;}
.ye4_c00362{bottom:381.998667pt;}
.ye3_c00362{bottom:384.077333pt;}
.ydf_c00362{bottom:384.725333pt;}
.ye2_c00362{bottom:386.404000pt;}
.yd0_c00362{bottom:391.152312pt;}
.ycf_c00362{bottom:392.267567pt;}
.yce_c00362{bottom:393.665660pt;}
.ycd_c00362{bottom:395.266276pt;}
.ycc_c00362{bottom:396.155916pt;}
.ycb_c00362{bottom:396.836992pt;}
.yca_c00362{bottom:399.791173pt;}
.yde_c00362{bottom:400.086667pt;}
.yc9_c00362{bottom:400.254485pt;}
.yc8_c00362{bottom:401.365999pt;}
.yc7_c00362{bottom:402.712388pt;}
.yc6_c00362{bottom:404.493109pt;}
.yc5_c00362{bottom:405.125333pt;}
.ydd_c00362{bottom:425.280000pt;}
.yc4_c00362{bottom:426.251355pt;}
.yc3_c00362{bottom:428.594136pt;}
.yc2_c00362{bottom:429.639659pt;}
.yc1_c00362{bottom:430.346949pt;}
.yc0_c00362{bottom:432.025416pt;}
.ybf_c00362{bottom:433.005160pt;}
.ydc_c00362{bottom:435.600000pt;}
.ybe_c00362{bottom:436.386437pt;}
.ybd_c00362{bottom:437.710352pt;}
.ybc_c00362{bottom:438.714304pt;}
.ybb_c00362{bottom:441.294405pt;}
.yba_c00362{bottom:442.061853pt;}
.yb9_c00362{bottom:444.059920pt;}
.yb8_c00362{bottom:445.036899pt;}
.yb7_c00362{bottom:445.986632pt;}
.yb6_c00362{bottom:447.600000pt;}
.yb5_c00362{bottom:457.722097pt;}
.yb4_c00362{bottom:458.818205pt;}
.yb3_c00362{bottom:462.360549pt;}
.yb2_c00362{bottom:463.123857pt;}
.yb1_c00362{bottom:465.788857pt;}
.yb0_c00362{bottom:467.755861pt;}
.yaf_c00362{bottom:471.533089pt;}
.yae_c00362{bottom:473.881045pt;}
.yad_c00362{bottom:477.285849pt;}
.yac_c00362{bottom:478.365681pt;}
.yab_c00362{bottom:479.840141pt;}
.yaa_c00362{bottom:481.991069pt;}
.ya9_c00362{bottom:484.569333pt;}
.ya8_c00362{bottom:488.198147pt;}
.ya7_c00362{bottom:489.705783pt;}
.ya6_c00362{bottom:492.408379pt;}
.ya5_c00362{bottom:493.603495pt;}
.ya4_c00362{bottom:494.735171pt;}
.ya3_c00362{bottom:496.680231pt;}
.ya2_c00362{bottom:500.178687pt;}
.ya1_c00362{bottom:503.596855pt;}
.ya0_c00362{bottom:504.759523pt;}
.y9f_c00362{bottom:507.800691pt;}
.y9e_c00362{bottom:509.310043pt;}
.y9d_c00362{bottom:512.348299pt;}
.y9c_c00362{bottom:514.763439pt;}
.y9b_c00362{bottom:517.217163pt;}
.y9a_c00362{bottom:522.148315pt;}
.y99_c00362{bottom:523.366363pt;}
.y98_c00362{bottom:527.574567pt;}
.y97_c00362{bottom:528.453263pt;}
.y96_c00362{bottom:531.838151pt;}
.y95_c00362{bottom:533.374959pt;}
.y94_c00362{bottom:535.687295pt;}
.y93_c00362{bottom:537.617275pt;}
.y92_c00362{bottom:539.889311pt;}
.y91_c00362{bottom:543.549695pt;}
.y90_c00362{bottom:545.877475pt;}
.y8f_c00362{bottom:548.422667pt;}
.y8e_c00362{bottom:563.718704pt;}
.y8d_c00362{bottom:566.556956pt;}
.y8c_c00362{bottom:567.748448pt;}
.y8b_c00362{bottom:568.905128pt;}
.y8a_c00362{bottom:570.566504pt;}
.y89_c00362{bottom:572.866976pt;}
.y88_c00362{bottom:573.673784pt;}
.y87_c00362{bottom:575.270768pt;}
.y86_c00362{bottom:578.092136pt;}
.y85_c00362{bottom:580.351136pt;}
.y84_c00362{bottom:583.907648pt;}
.y83_c00362{bottom:587.097152pt;}
.y82_c00362{bottom:588.515696pt;}
.y81_c00362{bottom:590.668448pt;}
.y80_c00362{bottom:593.174912pt;}
.y7f_c00362{bottom:595.663472pt;}
.y7e_c00362{bottom:597.607472pt;}
.y75_c00362{bottom:598.190741pt;}
.y7d_c00362{bottom:599.866976pt;}
.y7c_c00362{bottom:600.658256pt;}
.y7b_c00362{bottom:602.991728pt;}
.y7a_c00362{bottom:603.780800pt;}
.y79_c00362{bottom:605.562272pt;}
.y74_c00362{bottom:605.673320pt;}
.y78_c00362{bottom:606.980096pt;}
.y73_c00362{bottom:607.919643pt;}
.y77_c00362{bottom:609.509888pt;}
.y76_c00362{bottom:610.088000pt;}
.y70_c00362{bottom:616.737179pt;}
.y6f_c00362{bottom:618.527597pt;}
.y6e_c00362{bottom:619.172520pt;}
.y6d_c00362{bottom:619.815712pt;}
.y6c_c00362{bottom:621.127499pt;}
.y6b_c00362{bottom:621.771629pt;}
.y6a_c00362{bottom:622.885093pt;}
.y69_c00362{bottom:623.504789pt;}
.y68_c00362{bottom:623.948779pt;}
.y67_c00362{bottom:624.602296pt;}
.y66_c00362{bottom:625.045816pt;}
.y72_c00362{bottom:626.841357pt;}
.y71_c00362{bottom:626.842011pt;}
.y65_c00362{bottom:627.380749pt;}
.y64_c00362{bottom:629.285333pt;}
.y63_c00362{bottom:649.122987pt;}
.y62_c00362{bottom:649.502379pt;}
.y61_c00362{bottom:650.924835pt;}
.y60_c00362{bottom:652.169643pt;}
.y5f_c00362{bottom:652.706019pt;}
.y5e_c00362{bottom:653.223867pt;}
.y5d_c00362{bottom:653.954595pt;}
.y5c_c00362{bottom:654.651411pt;}
.y5b_c00362{bottom:655.018395pt;}
.y5a_c00362{bottom:655.351443pt;}
.y59_c00362{bottom:656.077251pt;}
.y58_c00362{bottom:656.595411pt;}
.y57_c00362{bottom:657.649323pt;}
.y56_c00362{bottom:658.158459pt;}
.y55_c00362{bottom:659.042667pt;}
.y54_c00362{bottom:682.755216pt;}
.y53_c00362{bottom:683.290712pt;}
.y52_c00362{bottom:684.328944pt;}
.y51_c00362{bottom:685.809280pt;}
.y50_c00362{bottom:688.918499pt;}
.y4f_c00362{bottom:689.692987pt;}
.y4e_c00362{bottom:690.440227pt;}
.y4d_c00362{bottom:691.734403pt;}
.y4c_c00362{bottom:692.482613pt;}
.y4b_c00362{bottom:694.034224pt;}
.y4a_c00362{bottom:694.945437pt;}
.y49_c00362{bottom:695.194483pt;}
.y48_c00362{bottom:696.002667pt;}
.y120_c00362{bottom:711.756448pt;}
.y11f_c00362{bottom:713.187544pt;}
.y11e_c00362{bottom:713.723848pt;}
.y11d_c00362{bottom:714.255352pt;}
.y11c_c00362{bottom:715.513048pt;}
.y11b_c00362{bottom:716.031664pt;}
.y11a_c00362{bottom:717.617464pt;}
.y119_c00362{bottom:719.572432pt;}
.y118_c00362{bottom:720.629872pt;}
.y117_c00362{bottom:721.523104pt;}
.y116_c00362{bottom:722.884000pt;}
.y115_c00362{bottom:745.899825pt;}
.y114_c00362{bottom:747.048849pt;}
.y113_c00362{bottom:748.237631pt;}
.y112_c00362{bottom:751.339597pt;}
.y111_c00362{bottom:752.443863pt;}
.y110_c00362{bottom:754.784112pt;}
.y10f_c00362{bottom:756.292112pt;}
.y10e_c00362{bottom:757.072747pt;}
.y10d_c00362{bottom:760.865491pt;}
.y10c_c00362{bottom:763.541659pt;}
.y10b_c00362{bottom:764.676427pt;}
.y10a_c00362{bottom:768.724283pt;}
.y109_c00362{bottom:776.398699pt;}
.y108_c00362{bottom:776.888843pt;}
.y107_c00362{bottom:777.574328pt;}
.y106_c00362{bottom:777.921083pt;}
.y105_c00362{bottom:779.268956pt;}
.y104_c00362{bottom:780.721912pt;}
.y103_c00362{bottom:781.102055pt;}
.y102_c00362{bottom:782.595108pt;}
.y101_c00362{bottom:783.105652pt;}
.y100_c00362{bottom:783.774115pt;}
.yff_c00362{bottom:784.770315pt;}
.yfe_c00362{bottom:785.438505pt;}
.yfd_c00362{bottom:786.724000pt;}
.y47_c00362{bottom:808.357928pt;}
.y46_c00362{bottom:809.226343pt;}
.y45_c00362{bottom:810.677464pt;}
.y44_c00362{bottom:812.382741pt;}
.y43_c00362{bottom:814.931648pt;}
.y42_c00362{bottom:815.830107pt;}
.y41_c00362{bottom:817.268623pt;}
.y40_c00362{bottom:819.813817pt;}
.y3f_c00362{bottom:822.088577pt;}
.y3e_c00362{bottom:824.899644pt;}
.y3d_c00362{bottom:825.844000pt;}
.y136_c00362{bottom:840.940347pt;}
.y12c_c00362{bottom:841.476640pt;}
.y135_c00362{bottom:841.510027pt;}
.y134_c00362{bottom:842.080773pt;}
.y12b_c00362{bottom:842.593173pt;}
.y12a_c00362{bottom:843.293067pt;}
.y133_c00362{bottom:843.636027pt;}
.y132_c00362{bottom:845.094693pt;}
.y131_c00362{bottom:845.501840pt;}
.y129_c00362{bottom:845.639307pt;}
.y128_c00362{bottom:846.198293pt;}
.y127_c00362{bottom:847.995067pt;}
.y130_c00362{bottom:849.018160pt;}
.y126_c00362{bottom:849.175440pt;}
.y125_c00362{bottom:849.752853pt;}
.y12f_c00362{bottom:849.939440pt;}
.y12e_c00362{bottom:850.632533pt;}
.y12d_c00362{bottom:851.041573pt;}
.y124_c00362{bottom:851.342107pt;}
.y123_c00362{bottom:851.913200pt;}
.y122_c00362{bottom:852.883867pt;}
.y121_c00362{bottom:854.402667pt;}
.y3c_c00362{bottom:871.835568pt;}
.y3b_c00362{bottom:873.986972pt;}
.y3a_c00362{bottom:874.689424pt;}
.y39_c00362{bottom:877.819704pt;}
.y38_c00362{bottom:878.731505pt;}
.y37_c00362{bottom:879.690512pt;}
.y36_c00362{bottom:882.019639pt;}
.y35_c00362{bottom:882.983917pt;}
.y34_c00362{bottom:885.177511pt;}
.y33_c00362{bottom:904.402727pt;}
.y32_c00362{bottom:905.480333pt;}
.y31_c00362{bottom:906.024392pt;}
.y30_c00362{bottom:908.110825pt;}
.y2f_c00362{bottom:908.966504pt;}
.y2e_c00362{bottom:911.067203pt;}
.y2d_c00362{bottom:913.991883pt;}
.y2c_c00362{bottom:915.780203pt;}
.y2b_c00362{bottom:916.376548pt;}
.y2a_c00362{bottom:917.158848pt;}
.y29_c00362{bottom:919.238123pt;}
.y28_c00362{bottom:935.831388pt;}
.y27_c00362{bottom:938.390899pt;}
.y26_c00362{bottom:939.193801pt;}
.y25_c00362{bottom:940.831892pt;}
.y24_c00362{bottom:941.373301pt;}
.y23_c00362{bottom:942.576752pt;}
.y22_c00362{bottom:943.308081pt;}
.y21_c00362{bottom:945.037216pt;}
.y20_c00362{bottom:946.274171pt;}
.y1f_c00362{bottom:947.757220pt;}
.y1e_c00362{bottom:948.505067pt;}
.y1d_c00362{bottom:949.448200pt;}
.y1c_c00362{bottom:951.138625pt;}
.y1b_c00362{bottom:964.949600pt;}
.y1a_c00362{bottom:968.154208pt;}
.y19_c00362{bottom:970.390411pt;}
.y18_c00362{bottom:971.320459pt;}
.y17_c00362{bottom:971.970229pt;}
.y16_c00362{bottom:974.539915pt;}
.y15_c00362{bottom:975.420896pt;}
.y14_c00362{bottom:977.659360pt;}
.y13_c00362{bottom:978.581728pt;}
.y12_c00362{bottom:980.447755pt;}
.y11_c00362{bottom:981.422133pt;}
.y10_c00362{bottom:982.294752pt;}
.yf_c00362{bottom:983.286667pt;}
.ya_c00362{bottom:1024.143493pt;}
.yc_c00362{bottom:1024.377787pt;}
.y9_c00362{bottom:1025.031933pt;}
.y8_c00362{bottom:1025.870053pt;}
.y7_c00362{bottom:1026.204973pt;}
.y6_c00362{bottom:1026.478453pt;}
.y5_c00362{bottom:1026.751933pt;}
.y4_c00362{bottom:1027.090173pt;}
.y3_c00362{bottom:1027.526813pt;}
.y2_c00362{bottom:1028.196973pt;}
.y1_c00362{bottom:1028.881333pt;}
.yb_c00362{bottom:1029.353347pt;}
.ye_c00362{bottom:1034.888145pt;}
.yd_c00362{bottom:1037.056000pt;}
.h1a_c00362{height:10.666667pt;}
.hb_c00362{height:10.669248pt;}
.h2_c00362{height:16.007198pt;}
.h17_c00362{height:21.333333pt;}
.h15_c00362{height:37.340799pt;}
.h1f_c00362{height:53.343999pt;}
.h5_c00362{height:58.638060pt;}
.h11_c00362{height:58.652644pt;}
.hc_c00362{height:58.680862pt;}
.h4_c00362{height:63.968792pt;}
.h16_c00362{height:64.000000pt;}
.h1c_c00362{height:64.009247pt;}
.ha_c00362{height:64.015486pt;}
.h13_c00362{height:64.016926pt;}
.h7_c00362{height:64.026906pt;}
.h6_c00362{height:69.299525pt;}
.h12_c00362{height:69.304103pt;}
.he_c00362{height:69.308958pt;}
.h10_c00362{height:69.316761pt;}
.h1d_c00362{height:69.343351pt;}
.h9_c00362{height:69.344564pt;}
.h20_c00362{height:69.347199pt;}
.h8_c00362{height:69.356764pt;}
.hd_c00362{height:74.640417pt;}
.hf_c00362{height:74.648819pt;}
.h1e_c00362{height:74.678762pt;}
.h1b_c00362{height:74.693878pt;}
.h14_c00362{height:80.015998pt;}
.h3_c00362{height:90.638102pt;}
.h19_c00362{height:90.666667pt;}
.h18_c00362{height:122.666667pt;}
.h0_c00362{height:1112.400000pt;}
.h1_c00362{height:1112.666667pt;}
.w0_c00362{width:813.333333pt;}
.x0_c00362{left:0.000000pt;}
.x65_c00362{left:2.673333pt;}
.xaf_c00362{left:3.597333pt;}
.x71_c00362{left:6.227109pt;}
.x87_c00362{left:7.677333pt;}
.xa8_c00362{left:8.880000pt;}
.xb0_c00362{left:17.037333pt;}
.x66_c00362{left:18.715941pt;}
.xb1_c00362{left:37.197333pt;}
.xb2_c00362{left:46.077333pt;}
.x72_c00362{left:61.290093pt;}
.x81_c00362{left:65.513665pt;}
.xa9_c00362{left:68.880000pt;}
.x7b_c00362{left:71.345405pt;}
.x88_c00362{left:73.720557pt;}
.xb3_c00362{left:80.397333pt;}
.x67_c00362{left:88.917669pt;}
.x9f_c00362{left:124.689333pt;}
.x26_c00362{left:127.792575pt;}
.x61_c00362{left:128.878216pt;}
.x73_c00362{left:130.034217pt;}
.x2f_c00362{left:131.281659pt;}
.x41_c00362{left:132.860000pt;}
.xc9_c00362{left:133.905333pt;}
.xba_c00362{left:135.368000pt;}
.x1b_c00362{left:137.209289pt;}
.x9b_c00362{left:154.718667pt;}
.xd7_c00362{left:155.793253pt;}
.x38_c00362{left:164.170667pt;}
.x89_c00362{left:166.586265pt;}
.x74_c00362{left:168.946917pt;}
.x42_c00362{left:173.522667pt;}
.xe_c00362{left:175.945333pt;}
.x68_c00362{left:177.698133pt;}
.x4d_c00362{left:180.465333pt;}
.xb5_c00362{left:182.650667pt;}
.xaa_c00362{left:183.774667pt;}
.x75_c00362{left:188.597025pt;}
.xd8_c00362{left:192.248640pt;}
.x8a_c00362{left:194.246577pt;}
.x69_c00362{left:199.594881pt;}
.x91_c00362{left:203.701948pt;}
.x1c_c00362{left:204.759500pt;}
.xf_c00362{left:206.911669pt;}
.x43_c00362{left:208.569333pt;}
.xca_c00362{left:209.510667pt;}
.xb6_c00362{left:211.614667pt;}
.x57_c00362{left:218.324000pt;}
.x30_c00362{left:222.532345pt;}
.x7c_c00362{left:224.734529pt;}
.x62_c00362{left:228.254200pt;}
.xc2_c00362{left:231.074284pt;}
.x92_c00362{left:232.407880pt;}
.x10_c00362{left:234.153733pt;}
.xa0_c00362{left:241.286667pt;}
.x1d_c00362{left:242.444900pt;}
.x76_c00362{left:244.662813pt;}
.xbb_c00362{left:250.290667pt;}
.xd2_c00362{left:252.024000pt;}
.x27_c00362{left:255.725015pt;}
.xcb_c00362{left:259.134667pt;}
.xc3_c00362{left:260.167404pt;}
.x39_c00362{left:261.104000pt;}
.x31_c00362{left:262.667796pt;}
.x11_c00362{left:264.572617pt;}
.x4e_c00362{left:267.301333pt;}
.x44_c00362{left:268.246667pt;}
.xa1_c00362{left:269.178667pt;}
.x1e_c00362{left:272.327027pt;}
.x8b_c00362{left:281.461941pt;}
.x7d_c00362{left:282.933605pt;}
.x77_c00362{left:285.140325pt;}
.x6a_c00362{left:286.306749pt;}
.x93_c00362{left:291.115780pt;}
.x4f_c00362{left:296.088000pt;}
.x45_c00362{left:297.024000pt;}
.xab_c00362{left:299.802667pt;}
.xb7_c00362{left:309.324000pt;}
.x78_c00362{left:313.315029pt;}
.xcc_c00362{left:317.881333pt;}
.xa2_c00362{left:319.794667pt;}
.x28_c00362{left:321.877388pt;}
.x12_c00362{left:322.827637pt;}
.x58_c00362{left:324.457333pt;}
.x63_c00362{left:325.933392pt;}
.xc4_c00362{left:328.779079pt;}
.x1f_c00362{left:331.571672pt;}
.x50_c00362{left:336.410667pt;}
.x3a_c00362{left:339.544000pt;}
.x79_c00362{left:342.344733pt;}
.x59_c00362{left:344.617333pt;}
.x46_c00362{left:346.800000pt;}
.x6b_c00362{left:349.007985pt;}
.x13_c00362{left:351.622813pt;}
.x51_c00362{left:354.913333pt;}
.xb8_c00362{left:357.234667pt;}
.x32_c00362{left:359.564949pt;}
.x5a_c00362{left:374.322667pt;}
.x47_c00362{left:375.540000pt;}
.xbc_c00362{left:378.244000pt;}
.xac_c00362{left:379.453333pt;}
.x20_c00362{left:381.010621pt;}
.x94_c00362{left:389.474656pt;}
.x7e_c00362{left:391.602161pt;}
.x5b_c00362{left:394.504000pt;}
.xb9_c00362{left:395.970667pt;}
.x33_c00362{left:399.452563pt;}
.x1_c00362{left:402.894667pt;}
.x48_c00362{left:405.328000pt;}
.x7a_c00362{left:411.520377pt;}
.x52_c00362{left:414.013333pt;}
.xb_c00362{left:416.565107pt;}
.x95_c00362{left:418.973128pt;}
.x14_c00362{left:421.504861pt;}
.x5c_c00362{left:422.672000pt;}
.x2_c00362{left:425.706667pt;}
.x3b_c00362{left:427.309333pt;}
.x29_c00362{left:430.082415pt;}
.x34_c00362{left:437.366972pt;}
.x82_c00362{left:439.107697pt;}
.xc5_c00362{left:446.071241pt;}
.x3_c00362{left:448.045333pt;}
.x15_c00362{left:449.007997pt;}
.x21_c00362{left:450.102297pt;}
.x53_c00362{left:454.609333pt;}
.xad_c00362{left:455.570667pt;}
.x96_c00362{left:457.872856pt;}
.x4_c00362{left:462.600000pt;}
.xbd_c00362{left:466.070667pt;}
.x6c_c00362{left:472.011525pt;}
.x5_c00362{left:473.874667pt;}
.xa3_c00362{left:475.926667pt;}
.x3c_c00362{left:476.913333pt;}
.x22_c00362{left:479.302269pt;}
.x6_c00362{left:482.990667pt;}
.xc6_c00362{left:484.723447pt;}
.x9c_c00362{left:487.593333pt;}
.x8c_c00362{left:488.746449pt;}
.x7_c00362{left:492.106667pt;}
.x8_c00362{left:503.270667pt;}
.xa4_c00362{left:505.465333pt;}
.x2a_c00362{left:507.818405pt;}
.x54_c00362{left:513.177333pt;}
.xcd_c00362{left:514.590667pt;}
.x7f_c00362{left:517.673297pt;}
.xd_c00362{left:520.808076pt;}
.x49_c00362{left:524.913333pt;}
.x23_c00362{left:527.362257pt;}
.x16_c00362{left:529.230361pt;}
.x9_c00362{left:531.208000pt;}
.xa5_c00362{left:535.440000pt;}
.xd3_c00362{left:537.769333pt;}
.x2b_c00362{left:539.485123pt;}
.x6d_c00362{left:541.565901pt;}
.xce_c00362{left:543.402667pt;}
.xc7_c00362{left:544.715673pt;}
.x17_c00362{left:549.515389pt;}
.xc_c00362{left:551.055573pt;}
.x9d_c00362{left:555.885333pt;}
.x8d_c00362{left:557.011449pt;}
.xa_c00362{left:560.822667pt;}
.x5d_c00362{left:562.189333pt;}
.xd4_c00362{left:565.718667pt;}
.x35_c00362{left:567.641965pt;}
.xbe_c00362{left:573.900000pt;}
.x8e_c00362{left:576.563877pt;}
.x18_c00362{left:578.550325pt;}
.x4a_c00362{left:581.849333pt;}
.x97_c00362{left:586.009924pt;}
.x5e_c00362{left:591.425333pt;}
.x3d_c00362{left:595.788000pt;}
.x36_c00362{left:596.856196pt;}
.x6e_c00362{left:601.304769pt;}
.xa6_c00362{left:605.021333pt;}
.x83_c00362{left:607.533769pt;}
.xcf_c00362{left:613.274667pt;}
.x24_c00362{left:614.426624pt;}
.x2c_c00362{left:616.650889pt;}
.x5f_c00362{left:620.740000pt;}
.x4b_c00362{left:621.781333pt;}
.x9e_c00362{left:625.477333pt;}
.x98_c00362{left:635.327224pt;}
.x2d_c00362{left:636.799300pt;}
.x84_c00362{left:638.147125pt;}
.x6f_c00362{left:640.669365pt;}
.x4c_c00362{left:642.377333pt;}
.x25_c00362{left:646.527043pt;}
.x19_c00362{left:648.361777pt;}
.x64_c00362{left:651.255568pt;}
.xbf_c00362{left:653.186667pt;}
.x3e_c00362{left:654.590667pt;}
.x99_c00362{left:656.109088pt;}
.x55_c00362{left:661.358667pt;}
.xd9_c00362{left:665.879440pt;}
.x8f_c00362{left:667.302381pt;}
.xd0_c00362{left:672.597333pt;}
.xc0_c00362{left:673.584000pt;}
.x2e_c00362{left:676.643113pt;}
.x80_c00362{left:679.176965pt;}
.x56_c00362{left:682.436000pt;}
.x37_c00362{left:686.373524pt;}
.x90_c00362{left:695.379609pt;}
.xa7_c00362{left:696.595520pt;}
.x60_c00362{left:702.122667pt;}
.x3f_c00362{left:704.629333pt;}
.x85_c00362{left:707.375161pt;}
.xc8_c00362{left:712.498265pt;}
.xb4_c00362{left:713.465333pt;}
.xd5_c00362{left:718.025333pt;}
.xae_c00362{left:724.356000pt;}
.x70_c00362{left:729.178101pt;}
.x40_c00362{left:734.574667pt;}
.xc1_c00362{left:742.738667pt;}
.x86_c00362{left:745.993837pt;}
.x1a_c00362{left:748.405633pt;}
.xd1_c00362{left:752.102667pt;}
.x9a_c00362{left:755.665432pt;}
.xd6_c00362{left:773.852000pt;}
}





/* 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_c00363 {
    display:none;
  }
  .loading-indicator_c00363.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00363 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_c00363 { 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_c00363" -> "#page-container .classname_c00363")
 */
.pf_c00363 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00363 { /* 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_c00363.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00363 { /* 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_c00363 { /* 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_c00363 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00363 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00363 {overflow:visible;}
  }
}
.c_c00363 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00363 { /* 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_c00363:after { /* webkit #35443 */
  content: '';
}
.t_c00363:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00363 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 */
}
.__c00363 { /* 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_c00363 { /* info for Javascript */
  display:none;
}
.l_c00363 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00363 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00363 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00363: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_c00363 {
    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_c00363.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00363.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_c00363 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00363{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00363;src:url('chunks/assets/font_132af6d682320e9b248f68cf.woff2')format("woff");}.ff1_c00363{font-family:ff1_c00363;line-height:1.000000;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;}
.m9_c00363{transform:matrix(0.172592,-0.001036,0.001500,0.249996,0,0);-ms-transform:matrix(0.172592,-0.001036,0.001500,0.249996,0,0);-webkit-transform:matrix(0.172592,-0.001036,0.001500,0.249996,0,0);}
.m7_c00363{transform:matrix(0.177837,-0.001067,0.001500,0.249996,0,0);-ms-transform:matrix(0.177837,-0.001067,0.001500,0.249996,0,0);-webkit-transform:matrix(0.177837,-0.001067,0.001500,0.249996,0,0);}
.me_c00363{transform:matrix(0.183097,-0.001099,0.001500,0.249996,0,0);-ms-transform:matrix(0.183097,-0.001099,0.001500,0.249996,0,0);-webkit-transform:matrix(0.183097,-0.001099,0.001500,0.249996,0,0);}
.m10_c00363{transform:matrix(0.184252,-0.001106,0.001500,0.249996,0,0);-ms-transform:matrix(0.184252,-0.001106,0.001500,0.249996,0,0);-webkit-transform:matrix(0.184252,-0.001106,0.001500,0.249996,0,0);}
.m43_c00363{transform:matrix(0.188596,-0.001886,0.002500,0.249988,0,0);-ms-transform:matrix(0.188596,-0.001886,0.002500,0.249988,0,0);-webkit-transform:matrix(0.188596,-0.001886,0.002500,0.249988,0,0);}
.mf_c00363{transform:matrix(0.190312,-0.001142,0.001500,0.249996,0,0);-ms-transform:matrix(0.190312,-0.001142,0.001500,0.249996,0,0);-webkit-transform:matrix(0.190312,-0.001142,0.001500,0.249996,0,0);}
.m3f_c00363{transform:matrix(0.191335,-0.001913,0.002500,0.249988,0,0);-ms-transform:matrix(0.191335,-0.001913,0.002500,0.249988,0,0);-webkit-transform:matrix(0.191335,-0.001913,0.002500,0.249988,0,0);}
.m16_c00363{transform:matrix(0.196495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196495,0.000000,0.000000,0.250000,0,0);}
.m27_c00363{transform:matrix(0.196735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196735,0.000000,0.000000,0.250000,0,0);}
.m30_c00363{transform:matrix(0.197420,-0.001382,0.001750,0.249994,0,0);-ms-transform:matrix(0.197420,-0.001382,0.001750,0.249994,0,0);-webkit-transform:matrix(0.197420,-0.001382,0.001750,0.249994,0,0);}
.m1a_c00363{transform:matrix(0.198320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198320,0.000000,0.000000,0.250000,0,0);}
.m25_c00363{transform:matrix(0.201495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201495,0.000000,0.000000,0.250000,0,0);}
.m22_c00363{transform:matrix(0.202285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202285,0.000000,0.000000,0.250000,0,0);}
.m1e_c00363{transform:matrix(0.215060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215060,0.000000,0.000000,0.250000,0,0);}
.m2f_c00363{transform:matrix(0.218095,-0.001527,0.001750,0.249994,0,0);-ms-transform:matrix(0.218095,-0.001527,0.001750,0.249994,0,0);-webkit-transform:matrix(0.218095,-0.001527,0.001750,0.249994,0,0);}
.m21_c00363{transform:matrix(0.223200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223200,0.000000,0.000000,0.250000,0,0);}
.m26_c00363{transform:matrix(0.226975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226975,0.000000,0.000000,0.250000,0,0);}
.m19_c00363{transform:matrix(0.227265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227265,0.000000,0.000000,0.250000,0,0);}
.m8_c00363{transform:matrix(0.230081,-0.001380,0.001500,0.249996,0,0);-ms-transform:matrix(0.230081,-0.001380,0.001500,0.249996,0,0);-webkit-transform:matrix(0.230081,-0.001380,0.001500,0.249996,0,0);}
.m28_c00363{transform:matrix(0.231585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231585,0.000000,0.000000,0.250000,0,0);}
.m42_c00363{transform:matrix(0.234638,-0.002346,0.002500,0.249988,0,0);-ms-transform:matrix(0.234638,-0.002346,0.002500,0.249988,0,0);-webkit-transform:matrix(0.234638,-0.002346,0.002500,0.249988,0,0);}
.m24_c00363{transform:matrix(0.236330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236330,0.000000,0.000000,0.250000,0,0);}
.m23_c00363{transform:matrix(0.240900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240900,0.000000,0.000000,0.250000,0,0);}
.m31_c00363{transform:matrix(0.241309,-0.001689,0.001750,0.249994,0,0);-ms-transform:matrix(0.241309,-0.001689,0.001750,0.249994,0,0);-webkit-transform:matrix(0.241309,-0.001689,0.001750,0.249994,0,0);}
.m41_c00363{transform:matrix(0.250622,-0.002506,0.002500,0.249988,0,0);-ms-transform:matrix(0.250622,-0.002506,0.002500,0.249988,0,0);-webkit-transform:matrix(0.250622,-0.002506,0.002500,0.249988,0,0);}
.m12_c00363{transform:matrix(0.251625,-0.001510,0.001500,0.249996,0,0);-ms-transform:matrix(0.251625,-0.001510,0.001500,0.249996,0,0);-webkit-transform:matrix(0.251625,-0.001510,0.001500,0.249996,0,0);}
.m34_c00363{transform:matrix(0.251654,-0.001762,0.001750,0.249994,0,0);-ms-transform:matrix(0.251654,-0.001762,0.001750,0.249994,0,0);-webkit-transform:matrix(0.251654,-0.001762,0.001750,0.249994,0,0);}
.m32_c00363{transform:matrix(0.254824,-0.001784,0.001750,0.249994,0,0);-ms-transform:matrix(0.254824,-0.001784,0.001750,0.249994,0,0);-webkit-transform:matrix(0.254824,-0.001784,0.001750,0.249994,0,0);}
.m33_c00363{transform:matrix(0.256154,-0.001793,0.001750,0.249994,0,0);-ms-transform:matrix(0.256154,-0.001793,0.001750,0.249994,0,0);-webkit-transform:matrix(0.256154,-0.001793,0.001750,0.249994,0,0);}
.m15_c00363{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00363{transform:matrix(0.257502,-0.002575,0.002500,0.249988,0,0);-ms-transform:matrix(0.257502,-0.002575,0.002500,0.249988,0,0);-webkit-transform:matrix(0.257502,-0.002575,0.002500,0.249988,0,0);}
.m29_c00363{transform:matrix(0.272575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272575,0.000000,0.000000,0.250000,0,0);}
.m11_c00363{transform:matrix(0.273495,-0.001641,0.001500,0.249996,0,0);-ms-transform:matrix(0.273495,-0.001641,0.001500,0.249996,0,0);-webkit-transform:matrix(0.273495,-0.001641,0.001500,0.249996,0,0);}
.m1c_c00363{transform:matrix(0.275135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275135,0.000000,0.000000,0.250000,0,0);}
.m40_c00363{transform:matrix(0.276381,-0.002764,0.002500,0.249988,0,0);-ms-transform:matrix(0.276381,-0.002764,0.002500,0.249988,0,0);-webkit-transform:matrix(0.276381,-0.002764,0.002500,0.249988,0,0);}
.m2a_c00363{transform:matrix(0.277705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277705,0.000000,0.000000,0.250000,0,0);}
.m1b_c00363{transform:matrix(0.278065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278065,0.000000,0.000000,0.250000,0,0);}
.m36_c00363{transform:matrix(0.281753,-0.001972,0.001750,0.249994,0,0);-ms-transform:matrix(0.281753,-0.001972,0.001750,0.249994,0,0);-webkit-transform:matrix(0.281753,-0.001972,0.001750,0.249994,0,0);}
.md_c00363{transform:matrix(0.290160,-0.001741,0.001500,0.249996,0,0);-ms-transform:matrix(0.290160,-0.001741,0.001500,0.249996,0,0);-webkit-transform:matrix(0.290160,-0.001741,0.001500,0.249996,0,0);}
.m14_c00363{transform:matrix(0.293115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293115,0.000000,0.000000,0.250000,0,0);}
.m2e_c00363{transform:matrix(0.295973,-0.002072,0.001750,0.249994,0,0);-ms-transform:matrix(0.295973,-0.002072,0.001750,0.249994,0,0);-webkit-transform:matrix(0.295973,-0.002072,0.001750,0.249994,0,0);}
.m46_c00363{transform:matrix(0.296975,-0.002970,0.002500,0.249988,0,0);-ms-transform:matrix(0.296975,-0.002970,0.002500,0.249988,0,0);-webkit-transform:matrix(0.296975,-0.002970,0.002500,0.249988,0,0);}
.mc_c00363{transform:matrix(0.298095,-0.001789,0.001500,0.249996,0,0);-ms-transform:matrix(0.298095,-0.001789,0.001500,0.249996,0,0);-webkit-transform:matrix(0.298095,-0.001789,0.001500,0.249996,0,0);}
.m47_c00363{transform:matrix(0.299180,-0.002992,0.002500,0.249988,0,0);-ms-transform:matrix(0.299180,-0.002992,0.002500,0.249988,0,0);-webkit-transform:matrix(0.299180,-0.002992,0.002500,0.249988,0,0);}
.m3e_c00363{transform:matrix(0.299460,-0.002995,0.002500,0.249988,0,0);-ms-transform:matrix(0.299460,-0.002995,0.002500,0.249988,0,0);-webkit-transform:matrix(0.299460,-0.002995,0.002500,0.249988,0,0);}
.m3a_c00363{transform:matrix(0.306080,-0.003061,0.002500,0.249988,0,0);-ms-transform:matrix(0.306080,-0.003061,0.002500,0.249988,0,0);-webkit-transform:matrix(0.306080,-0.003061,0.002500,0.249988,0,0);}
.m1d_c00363{transform:matrix(0.310430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310430,0.000000,0.000000,0.250000,0,0);}
.m37_c00363{transform:matrix(0.316292,-0.002214,0.001750,0.249994,0,0);-ms-transform:matrix(0.316292,-0.002214,0.001750,0.249994,0,0);-webkit-transform:matrix(0.316292,-0.002214,0.001750,0.249994,0,0);}
.m2b_c00363{transform:matrix(0.324485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324485,0.000000,0.000000,0.250000,0,0);}
.m17_c00363{transform:matrix(0.332710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332710,0.000000,0.000000,0.250000,0,0);}
.m35_c00363{transform:matrix(0.335177,-0.002346,0.001750,0.249994,0,0);-ms-transform:matrix(0.335177,-0.002346,0.001750,0.249994,0,0);-webkit-transform:matrix(0.335177,-0.002346,0.001750,0.249994,0,0);}
.m3d_c00363{transform:matrix(0.335298,-0.003353,0.002500,0.249988,0,0);-ms-transform:matrix(0.335298,-0.003353,0.002500,0.249988,0,0);-webkit-transform:matrix(0.335298,-0.003353,0.002500,0.249988,0,0);}
.m20_c00363{transform:matrix(0.354185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354185,0.000000,0.000000,0.250000,0,0);}
.ma_c00363{transform:matrix(0.357214,-0.002143,0.001500,0.249996,0,0);-ms-transform:matrix(0.357214,-0.002143,0.001500,0.249996,0,0);-webkit-transform:matrix(0.357214,-0.002143,0.001500,0.249996,0,0);}
.m18_c00363{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m6_c00363{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.m13_c00363{transform:matrix(0.375705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375705,0.000000,0.000000,0.250000,0,0);}
.m48_c00363{transform:matrix(0.377186,-0.003772,0.002500,0.249988,0,0);-ms-transform:matrix(0.377186,-0.003772,0.002500,0.249988,0,0);-webkit-transform:matrix(0.377186,-0.003772,0.002500,0.249988,0,0);}
.m44_c00363{transform:matrix(0.381121,-0.003811,0.002500,0.249988,0,0);-ms-transform:matrix(0.381121,-0.003811,0.002500,0.249988,0,0);-webkit-transform:matrix(0.381121,-0.003811,0.002500,0.249988,0,0);}
.m2d_c00363{transform:matrix(0.387271,-0.002711,0.001750,0.249994,0,0);-ms-transform:matrix(0.387271,-0.002711,0.001750,0.249994,0,0);-webkit-transform:matrix(0.387271,-0.002711,0.001750,0.249994,0,0);}
.m1f_c00363{transform:matrix(0.395315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395315,0.000000,0.000000,0.250000,0,0);}
.m45_c00363{transform:matrix(0.401595,-0.004016,0.002500,0.249988,0,0);-ms-transform:matrix(0.401595,-0.004016,0.002500,0.249988,0,0);-webkit-transform:matrix(0.401595,-0.004016,0.002500,0.249988,0,0);}
.m38_c00363{transform:matrix(0.414880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414880,0.000000,0.000000,0.250000,0,0);}
.m0_c00363{transform:matrix(0.450510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450510,0.000000,0.000000,0.250000,0,0);}
.m1_c00363{transform:matrix(0.451145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451145,0.000000,0.000000,0.250000,0,0);}
.m49_c00363{transform:matrix(0.521834,-0.005218,0.002500,0.249988,0,0);-ms-transform:matrix(0.521834,-0.005218,0.002500,0.249988,0,0);-webkit-transform:matrix(0.521834,-0.005218,0.002500,0.249988,0,0);}
.m39_c00363{transform:matrix(0.562447,-0.005624,0.002500,0.249988,0,0);-ms-transform:matrix(0.562447,-0.005624,0.002500,0.249988,0,0);-webkit-transform:matrix(0.562447,-0.005624,0.002500,0.249988,0,0);}
.m5_c00363{transform:matrix(0.586730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.586730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.586730,0.000000,0.000000,0.250000,0,0);}
.m3c_c00363{transform:matrix(0.742218,-0.007422,0.002500,0.249988,0,0);-ms-transform:matrix(0.742218,-0.007422,0.002500,0.249988,0,0);-webkit-transform:matrix(0.742218,-0.007422,0.002500,0.249988,0,0);}
.m2c_c00363{transform:matrix(0.832050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.832050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.832050,0.000000,0.000000,0.250000,0,0);}
.m3b_c00363{transform:matrix(0.935288,-0.009353,0.002500,0.249988,0,0);-ms-transform:matrix(0.935288,-0.009353,0.002500,0.249988,0,0);-webkit-transform:matrix(0.935288,-0.009353,0.002500,0.249988,0,0);}
.mb_c00363{transform:matrix(0.954483,-0.005727,0.001500,0.249996,0,0);-ms-transform:matrix(0.954483,-0.005727,0.001500,0.249996,0,0);-webkit-transform:matrix(0.954483,-0.005727,0.001500,0.249996,0,0);}
.m2_c00363{transform:matrix(0.975580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.975580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.975580,0.000000,0.000000,0.250000,0,0);}
.m4_c00363{transform:matrix(1.050220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.050220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.050220,0.000000,0.000000,0.250000,0,0);}
.m3_c00363{transform:matrix(1.626155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.626155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.626155,0.000000,0.000000,0.250000,0,0);}
.v0_c00363{vertical-align:0.000000px;}
.ls0_c00363{letter-spacing:0.000000px;}
.sc__c00363{text-shadow:none;}
.sc0_c00363{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__c00363{-webkit-text-stroke:0px transparent;}
.sc0_c00363{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00363{word-spacing:0.000000px;}
.fc0_c00363{color:transparent;}
.fs6_c00363{font-size:18.000000px;}
.fs1_c00363{font-size:24.000000px;}
.fs0_c00363{font-size:42.000000px;}
.fs7_c00363{font-size:42.002100px;}
.fs5_c00363{font-size:66.001617px;}
.fs3_c00363{font-size:78.000000px;}
.fs4_c00363{font-size:84.000000px;}
.fs8_c00363{font-size:90.004500px;}
.fs2_c00363{font-size:96.001728px;}
.y0_c00363{bottom:0.000000px;}
.y2d_c00363{bottom:891.812010px;}
.y2e_c00363{bottom:892.514775px;}
.y2f_c00363{bottom:892.939170px;}
.y30_c00363{bottom:893.500665px;}
.y31_c00363{bottom:893.768565px;}
.y32_c00363{bottom:894.824595px;}
.y33_c00363{bottom:895.519155px;}
.y34_c00363{bottom:895.891125px;}
.y35_c00363{bottom:896.287860px;}
.y36_c00363{bottom:897.374340px;}
.y37_c00363{bottom:897.887655px;}
.y38_c00363{bottom:898.409325px;}
.y39_c00363{bottom:898.983240px;}
.y3a_c00363{bottom:899.703000px;}
.y3b_c00363{bottom:899.756070px;}
.y29_c00363{bottom:921.510000px;}
.y2a_c00363{bottom:923.400000px;}
.y2b_c00363{bottom:929.782920px;}
.y2c_c00363{bottom:929.793780px;}
.y1e_c00363{bottom:1000.620000px;}
.y1f_c00363{bottom:1001.415921px;}
.y20_c00363{bottom:1002.109414px;}
.y21_c00363{bottom:1002.357036px;}
.y22_c00363{bottom:1002.502682px;}
.y23_c00363{bottom:1002.650102px;}
.y24_c00363{bottom:1003.341821px;}
.y25_c00363{bottom:1003.644095px;}
.y26_c00363{bottom:1003.937685px;}
.y27_c00363{bottom:1004.725238px;}
.y28_c00363{bottom:1005.045235px;}
.y12_c00363{bottom:1034.641500px;}
.y13_c00363{bottom:1035.513000px;}
.y14_c00363{bottom:1035.819000px;}
.y15_c00363{bottom:1035.978000px;}
.y16_c00363{bottom:1036.591500px;}
.y17_c00363{bottom:1036.827000px;}
.y18_c00363{bottom:1037.443500px;}
.y19_c00363{bottom:1037.670000px;}
.y1a_c00363{bottom:1038.267000px;}
.y1b_c00363{bottom:1038.724500px;}
.y1c_c00363{bottom:1038.994500px;}
.y1d_c00363{bottom:1039.224000px;}
.y11_c00363{bottom:1073.907000px;}
.y10_c00363{bottom:1108.620000px;}
.y4_c00363{bottom:1109.430000px;}
.y5_c00363{bottom:1109.775204px;}
.y6_c00363{bottom:1110.439647px;}
.y7_c00363{bottom:1110.839796px;}
.y8_c00363{bottom:1111.136526px;}
.y9_c00363{bottom:1111.701402px;}
.ya_c00363{bottom:1111.862313px;}
.yb_c00363{bottom:1112.354307px;}
.yc_c00363{bottom:1112.558346px;}
.yd_c00363{bottom:1112.950395px;}
.ye_c00363{bottom:1113.136839px;}
.yf_c00363{bottom:1113.355728px;}
.y3_c00363{bottom:1139.511000px;}
.y2_c00363{bottom:1169.602500px;}
.y1_c00363{bottom:1173.150000px;}
.h8_c00363{height:18.000000px;}
.h3_c00363{height:24.000000px;}
.h2_c00363{height:42.000000px;}
.h9_c00363{height:42.002100px;}
.h7_c00363{height:66.001617px;}
.h5_c00363{height:78.000000px;}
.h6_c00363{height:84.000000px;}
.ha_c00363{height:90.004500px;}
.h4_c00363{height:96.001728px;}
.h0_c00363{height:1251.450000px;}
.h1_c00363{height:1251.750000px;}
.w0_c00363{width:915.000000px;}
.x0_c00363{left:0.000000px;}
.x31_c00363{left:44.053500px;}
.x34_c00363{left:47.270670px;}
.x8_c00363{left:61.894500px;}
.x28_c00363{left:63.258000px;}
.x35_c00363{left:105.846000px;}
.x13_c00363{left:106.920000px;}
.x14_c00363{left:108.270000px;}
.x9_c00363{left:119.428500px;}
.x36_c00363{left:141.234795px;}
.x29_c00363{left:176.961000px;}
.x1f_c00363{left:186.943500px;}
.x37_c00363{left:188.083365px;}
.x38_c00363{left:210.372915px;}
.x15_c00363{left:220.860000px;}
.xa_c00363{left:230.169000px;}
.x16_c00363{left:252.450000px;}
.x2a_c00363{left:276.031500px;}
.xb_c00363{left:296.860500px;}
.x39_c00363{left:298.424160px;}
.x2b_c00363{left:311.406000px;}
.x17_c00363{left:331.290000px;}
.x20_c00363{left:341.133000px;}
.xc_c00363{left:346.315500px;}
.x1_c00363{left:353.700000px;}
.x3a_c00363{left:356.329005px;}
.x3_c00363{left:364.770000px;}
.x21_c00363{left:374.880000px;}
.x3b_c00363{left:387.375390px;}
.x18_c00363{left:406.080000px;}
.x3c_c00363{left:420.448230px;}
.x4_c00363{left:424.980000px;}
.x19_c00363{left:439.290000px;}
.xd_c00363{left:440.461500px;}
.x2c_c00363{left:452.089500px;}
.x22_c00363{left:462.894000px;}
.x2_c00363{left:466.290000px;}
.x23_c00363{left:495.295500px;}
.x1a_c00363{left:511.380000px;}
.x6_c00363{left:518.940000px;}
.x5_c00363{left:527.040000px;}
.x2d_c00363{left:537.213000px;}
.x7_c00363{left:539.460000px;}
.xe_c00363{left:549.279000px;}
.x3d_c00363{left:553.725060px;}
.x1b_c00363{left:571.860000px;}
.x24_c00363{left:580.680000px;}
.xf_c00363{left:583.285500px;}
.x3e_c00363{left:597.191190px;}
.x1c_c00363{left:639.090000px;}
.x3f_c00363{left:644.981730px;}
.x25_c00363{left:646.039500px;}
.x10_c00363{left:648.627000px;}
.x2e_c00363{left:649.720500px;}
.x1d_c00363{left:666.900000px;}
.x11_c00363{left:679.701000px;}
.x32_c00363{left:682.345500px;}
.x33_c00363{left:683.431500px;}
.x26_c00363{left:684.610500px;}
.x2f_c00363{left:695.434500px;}
.x40_c00363{left:704.956530px;}
.x41_c00363{left:709.363440px;}
.x12_c00363{left:716.182500px;}
.x27_c00363{left:717.468000px;}
.x1e_c00363{left:720.360000px;}
.x30_c00363{left:742.230000px;}
@media print{
.v0_c00363{vertical-align:0.000000pt;}
.ls0_c00363{letter-spacing:0.000000pt;}
.ws0_c00363{word-spacing:0.000000pt;}
.fs6_c00363{font-size:16.000000pt;}
.fs1_c00363{font-size:21.333333pt;}
.fs0_c00363{font-size:37.333333pt;}
.fs7_c00363{font-size:37.335200pt;}
.fs5_c00363{font-size:58.668104pt;}
.fs3_c00363{font-size:69.333333pt;}
.fs4_c00363{font-size:74.666667pt;}
.fs8_c00363{font-size:80.004000pt;}
.fs2_c00363{font-size:85.334869pt;}
.y0_c00363{bottom:0.000000pt;}
.y2d_c00363{bottom:792.721787pt;}
.y2e_c00363{bottom:793.346467pt;}
.y2f_c00363{bottom:793.723707pt;}
.y30_c00363{bottom:794.222813pt;}
.y31_c00363{bottom:794.460947pt;}
.y32_c00363{bottom:795.399640pt;}
.y33_c00363{bottom:796.017027pt;}
.y34_c00363{bottom:796.347667pt;}
.y35_c00363{bottom:796.700320pt;}
.y36_c00363{bottom:797.666080pt;}
.y37_c00363{bottom:798.122360pt;}
.y38_c00363{bottom:798.586067pt;}
.y39_c00363{bottom:799.096213pt;}
.y3a_c00363{bottom:799.736000pt;}
.y3b_c00363{bottom:799.783173pt;}
.y29_c00363{bottom:819.120000pt;}
.y2a_c00363{bottom:820.800000pt;}
.y2b_c00363{bottom:826.473707pt;}
.y2c_c00363{bottom:826.483360pt;}
.y1e_c00363{bottom:889.440000pt;}
.y1f_c00363{bottom:890.147485pt;}
.y20_c00363{bottom:890.763924pt;}
.y21_c00363{bottom:890.984032pt;}
.y22_c00363{bottom:891.113495pt;}
.y23_c00363{bottom:891.244535pt;}
.y24_c00363{bottom:891.859396pt;}
.y25_c00363{bottom:892.128084pt;}
.y26_c00363{bottom:892.389053pt;}
.y27_c00363{bottom:893.089100pt;}
.y28_c00363{bottom:893.373543pt;}
.y12_c00363{bottom:919.681333pt;}
.y13_c00363{bottom:920.456000pt;}
.y14_c00363{bottom:920.728000pt;}
.y15_c00363{bottom:920.869333pt;}
.y16_c00363{bottom:921.414667pt;}
.y17_c00363{bottom:921.624000pt;}
.y18_c00363{bottom:922.172000pt;}
.y19_c00363{bottom:922.373333pt;}
.y1a_c00363{bottom:922.904000pt;}
.y1b_c00363{bottom:923.310667pt;}
.y1c_c00363{bottom:923.550667pt;}
.y1d_c00363{bottom:923.754667pt;}
.y11_c00363{bottom:954.584000pt;}
.y10_c00363{bottom:985.440000pt;}
.y4_c00363{bottom:986.160000pt;}
.y5_c00363{bottom:986.466848pt;}
.y6_c00363{bottom:987.057464pt;}
.y7_c00363{bottom:987.413152pt;}
.y8_c00363{bottom:987.676912pt;}
.y9_c00363{bottom:988.179024pt;}
.ya_c00363{bottom:988.322056pt;}
.yb_c00363{bottom:988.759384pt;}
.yc_c00363{bottom:988.940752pt;}
.yd_c00363{bottom:989.289240pt;}
.ye_c00363{bottom:989.454968pt;}
.yf_c00363{bottom:989.649536pt;}
.y3_c00363{bottom:1012.898667pt;}
.y2_c00363{bottom:1039.646667pt;}
.y1_c00363{bottom:1042.800000pt;}
.h8_c00363{height:16.000000pt;}
.h3_c00363{height:21.333333pt;}
.h2_c00363{height:37.333333pt;}
.h9_c00363{height:37.335200pt;}
.h7_c00363{height:58.668104pt;}
.h5_c00363{height:69.333333pt;}
.h6_c00363{height:74.666667pt;}
.ha_c00363{height:80.004000pt;}
.h4_c00363{height:85.334869pt;}
.h0_c00363{height:1112.400000pt;}
.h1_c00363{height:1112.666667pt;}
.w0_c00363{width:813.333333pt;}
.x0_c00363{left:0.000000pt;}
.x31_c00363{left:39.158667pt;}
.x34_c00363{left:42.018373pt;}
.x8_c00363{left:55.017333pt;}
.x28_c00363{left:56.229333pt;}
.x35_c00363{left:94.085333pt;}
.x13_c00363{left:95.040000pt;}
.x14_c00363{left:96.240000pt;}
.x9_c00363{left:106.158667pt;}
.x36_c00363{left:125.542040pt;}
.x29_c00363{left:157.298667pt;}
.x1f_c00363{left:166.172000pt;}
.x37_c00363{left:167.185213pt;}
.x38_c00363{left:186.998147pt;}
.x15_c00363{left:196.320000pt;}
.xa_c00363{left:204.594667pt;}
.x16_c00363{left:224.400000pt;}
.x2a_c00363{left:245.361333pt;}
.xb_c00363{left:263.876000pt;}
.x39_c00363{left:265.265920pt;}
.x2b_c00363{left:276.805333pt;}
.x17_c00363{left:294.480000pt;}
.x20_c00363{left:303.229333pt;}
.xc_c00363{left:307.836000pt;}
.x1_c00363{left:314.400000pt;}
.x3a_c00363{left:316.736893pt;}
.x3_c00363{left:324.240000pt;}
.x21_c00363{left:333.226667pt;}
.x3b_c00363{left:344.333680pt;}
.x18_c00363{left:360.960000pt;}
.x3c_c00363{left:373.731760pt;}
.x4_c00363{left:377.760000pt;}
.x19_c00363{left:390.480000pt;}
.xd_c00363{left:391.521333pt;}
.x2c_c00363{left:401.857333pt;}
.x22_c00363{left:411.461333pt;}
.x2_c00363{left:414.480000pt;}
.x23_c00363{left:440.262667pt;}
.x1a_c00363{left:454.560000pt;}
.x6_c00363{left:461.280000pt;}
.x5_c00363{left:468.480000pt;}
.x2d_c00363{left:477.522667pt;}
.x7_c00363{left:479.520000pt;}
.xe_c00363{left:488.248000pt;}
.x3d_c00363{left:492.200053pt;}
.x1b_c00363{left:508.320000pt;}
.x24_c00363{left:516.160000pt;}
.xf_c00363{left:518.476000pt;}
.x3e_c00363{left:530.836613pt;}
.x1c_c00363{left:568.080000pt;}
.x3f_c00363{left:573.317093pt;}
.x25_c00363{left:574.257333pt;}
.x10_c00363{left:576.557333pt;}
.x2e_c00363{left:577.529333pt;}
.x1d_c00363{left:592.800000pt;}
.x11_c00363{left:604.178667pt;}
.x32_c00363{left:606.529333pt;}
.x33_c00363{left:607.494667pt;}
.x26_c00363{left:608.542667pt;}
.x2f_c00363{left:618.164000pt;}
.x40_c00363{left:626.628027pt;}
.x41_c00363{left:630.545280pt;}
.x12_c00363{left:636.606667pt;}
.x27_c00363{left:637.749333pt;}
.x1e_c00363{left:640.320000pt;}
.x30_c00363{left:659.760000pt;}
}





/* 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_c00364 {
    display:none;
  }
  .loading-indicator_c00364.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00364 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_c00364 { 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_c00364" -> "#page-container .classname_c00364")
 */
.pf_c00364 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00364 { /* 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_c00364.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00364 { /* 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_c00364 { /* 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_c00364 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00364 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00364 {overflow:visible;}
  }
}
.c_c00364 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00364 { /* 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_c00364:after { /* webkit #35443 */
  content: '';
}
.t_c00364:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00364 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 */
}
.__c00364 { /* 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_c00364 { /* info for Javascript */
  display:none;
}
.l_c00364 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00364 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00364 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00364: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_c00364 {
    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_c00364.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00364.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_c00364 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00364{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00364;src:url('chunks/assets/font_fabf4b590f7fb32aea93ffb2.woff2')format("woff");}.ff1_c00364{font-family:ff1_c00364;line-height:1.000000;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;}
.m1c_c00364{transform:matrix(0.158714,0.001905,-0.003000,0.249982,0,0);-ms-transform:matrix(0.158714,0.001905,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.158714,0.001905,-0.003000,0.249982,0,0);}
.m1b_c00364{transform:matrix(0.164173,0.001970,-0.003000,0.249982,0,0);-ms-transform:matrix(0.164173,0.001970,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.164173,0.001970,-0.003000,0.249982,0,0);}
.m41_c00364{transform:matrix(0.165411,0.002812,-0.004249,0.249964,0,0);-ms-transform:matrix(0.165411,0.002812,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.165411,0.002812,-0.004249,0.249964,0,0);}
.m1f_c00364{transform:matrix(0.167498,0.002010,-0.003000,0.249982,0,0);-ms-transform:matrix(0.167498,0.002010,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.167498,0.002010,-0.003000,0.249982,0,0);}
.m23_c00364{transform:matrix(0.169078,0.002029,-0.003000,0.249982,0,0);-ms-transform:matrix(0.169078,0.002029,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.169078,0.002029,-0.003000,0.249982,0,0);}
.m21_c00364{transform:matrix(0.171888,0.002063,-0.003000,0.249982,0,0);-ms-transform:matrix(0.171888,0.002063,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.171888,0.002063,-0.003000,0.249982,0,0);}
.m1e_c00364{transform:matrix(0.176107,0.002113,-0.003000,0.249982,0,0);-ms-transform:matrix(0.176107,0.002113,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.176107,0.002113,-0.003000,0.249982,0,0);}
.m22_c00364{transform:matrix(0.178047,0.002137,-0.003000,0.249982,0,0);-ms-transform:matrix(0.178047,0.002137,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.178047,0.002137,-0.003000,0.249982,0,0);}
.m20_c00364{transform:matrix(0.182307,0.002188,-0.003000,0.249982,0,0);-ms-transform:matrix(0.182307,0.002188,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.182307,0.002188,-0.003000,0.249982,0,0);}
.m1a_c00364{transform:matrix(0.184802,0.002218,-0.003000,0.249982,0,0);-ms-transform:matrix(0.184802,0.002218,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.184802,0.002218,-0.003000,0.249982,0,0);}
.m24_c00364{transform:matrix(0.185962,0.002232,-0.003000,0.249982,0,0);-ms-transform:matrix(0.185962,0.002232,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.185962,0.002232,-0.003000,0.249982,0,0);}
.m5d_c00364{transform:matrix(0.191139,0.003441,-0.004499,0.249960,0,0);-ms-transform:matrix(0.191139,0.003441,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.191139,0.003441,-0.004499,0.249960,0,0);}
.m39_c00364{transform:matrix(0.194547,0.003307,-0.004249,0.249964,0,0);-ms-transform:matrix(0.194547,0.003307,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.194547,0.003307,-0.004249,0.249964,0,0);}
.m3f_c00364{transform:matrix(0.197881,0.003364,-0.004249,0.249964,0,0);-ms-transform:matrix(0.197881,0.003364,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.197881,0.003364,-0.004249,0.249964,0,0);}
.m42_c00364{transform:matrix(0.200921,0.003416,-0.004249,0.249964,0,0);-ms-transform:matrix(0.200921,0.003416,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.200921,0.003416,-0.004249,0.249964,0,0);}
.m37_c00364{transform:matrix(0.202636,0.003445,-0.004249,0.249964,0,0);-ms-transform:matrix(0.202636,0.003445,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.202636,0.003445,-0.004249,0.249964,0,0);}
.m26_c00364{transform:matrix(0.203155,0.002438,-0.003000,0.249982,0,0);-ms-transform:matrix(0.203155,0.002438,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.203155,0.002438,-0.003000,0.249982,0,0);}
.m5a_c00364{transform:matrix(0.203517,0.003663,-0.004499,0.249960,0,0);-ms-transform:matrix(0.203517,0.003663,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.203517,0.003663,-0.004499,0.249960,0,0);}
.m3d_c00364{transform:matrix(0.204430,0.003475,-0.004249,0.249964,0,0);-ms-transform:matrix(0.204430,0.003475,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.204430,0.003475,-0.004249,0.249964,0,0);}
.m64_c00364{transform:matrix(0.206372,0.003715,-0.004499,0.249960,0,0);-ms-transform:matrix(0.206372,0.003715,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.206372,0.003715,-0.004499,0.249960,0,0);}
.m33_c00364{transform:matrix(0.206725,0.002481,-0.003000,0.249982,0,0);-ms-transform:matrix(0.206725,0.002481,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.206725,0.002481,-0.003000,0.249982,0,0);}
.m4_c00364{transform:matrix(0.206790,0.004549,-0.005499,0.249940,0,0);-ms-transform:matrix(0.206790,0.004549,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.206790,0.004549,-0.005499,0.249940,0,0);}
.m4f_c00364{transform:matrix(0.206797,0.003722,-0.004499,0.249960,0,0);-ms-transform:matrix(0.206797,0.003722,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.206797,0.003722,-0.004499,0.249960,0,0);}
.m28_c00364{transform:matrix(0.207445,0.002489,-0.003000,0.249982,0,0);-ms-transform:matrix(0.207445,0.002489,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.207445,0.002489,-0.003000,0.249982,0,0);}
.m45_c00364{transform:matrix(0.207981,0.003744,-0.004499,0.249960,0,0);-ms-transform:matrix(0.207981,0.003744,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.207981,0.003744,-0.004499,0.249960,0,0);}
.m31_c00364{transform:matrix(0.208000,0.002496,-0.003000,0.249982,0,0);-ms-transform:matrix(0.208000,0.002496,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.208000,0.002496,-0.003000,0.249982,0,0);}
.m1_c00364{transform:matrix(0.208700,0.004591,-0.005499,0.249940,0,0);-ms-transform:matrix(0.208700,0.004591,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.208700,0.004591,-0.005499,0.249940,0,0);}
.m4a_c00364{transform:matrix(0.209901,0.003778,-0.004499,0.249960,0,0);-ms-transform:matrix(0.209901,0.003778,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.209901,0.003778,-0.004499,0.249960,0,0);}
.m48_c00364{transform:matrix(0.210586,0.003791,-0.004499,0.249960,0,0);-ms-transform:matrix(0.210586,0.003791,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.210586,0.003791,-0.004499,0.249960,0,0);}
.m5b_c00364{transform:matrix(0.211531,0.003808,-0.004499,0.249960,0,0);-ms-transform:matrix(0.211531,0.003808,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.211531,0.003808,-0.004499,0.249960,0,0);}
.m58_c00364{transform:matrix(0.211896,0.003814,-0.004499,0.249960,0,0);-ms-transform:matrix(0.211896,0.003814,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.211896,0.003814,-0.004499,0.249960,0,0);}
.m4d_c00364{transform:matrix(0.213100,0.003836,-0.004499,0.249960,0,0);-ms-transform:matrix(0.213100,0.003836,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.213100,0.003836,-0.004499,0.249960,0,0);}
.m61_c00364{transform:matrix(0.214665,0.003864,-0.004499,0.249960,0,0);-ms-transform:matrix(0.214665,0.003864,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.214665,0.003864,-0.004499,0.249960,0,0);}
.m63_c00364{transform:matrix(0.215025,0.003870,-0.004499,0.249960,0,0);-ms-transform:matrix(0.215025,0.003870,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.215025,0.003870,-0.004499,0.249960,0,0);}
.m55_c00364{transform:matrix(0.215670,0.003882,-0.004499,0.249960,0,0);-ms-transform:matrix(0.215670,0.003882,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.215670,0.003882,-0.004499,0.249960,0,0);}
.m2e_c00364{transform:matrix(0.215689,0.002588,-0.003000,0.249982,0,0);-ms-transform:matrix(0.215689,0.002588,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.215689,0.002588,-0.003000,0.249982,0,0);}
.m3b_c00364{transform:matrix(0.215879,0.003670,-0.004249,0.249964,0,0);-ms-transform:matrix(0.215879,0.003670,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.215879,0.003670,-0.004249,0.249964,0,0);}
.m3_c00364{transform:matrix(0.221306,0.004869,-0.005499,0.249940,0,0);-ms-transform:matrix(0.221306,0.004869,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.221306,0.004869,-0.005499,0.249940,0,0);}
.m53_c00364{transform:matrix(0.221909,0.003994,-0.004499,0.249960,0,0);-ms-transform:matrix(0.221909,0.003994,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.221909,0.003994,-0.004499,0.249960,0,0);}
.m40_c00364{transform:matrix(0.222133,0.003776,-0.004249,0.249964,0,0);-ms-transform:matrix(0.222133,0.003776,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.222133,0.003776,-0.004249,0.249964,0,0);}
.m62_c00364{transform:matrix(0.225468,0.004058,-0.004499,0.249960,0,0);-ms-transform:matrix(0.225468,0.004058,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.225468,0.004058,-0.004499,0.249960,0,0);}
.m51_c00364{transform:matrix(0.226008,0.004068,-0.004499,0.249960,0,0);-ms-transform:matrix(0.226008,0.004068,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.226008,0.004068,-0.004499,0.249960,0,0);}
.m5f_c00364{transform:matrix(0.226318,0.004074,-0.004499,0.249960,0,0);-ms-transform:matrix(0.226318,0.004074,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.226318,0.004074,-0.004499,0.249960,0,0);}
.m0_c00364{transform:matrix(0.226830,0.004990,-0.005499,0.249940,0,0);-ms-transform:matrix(0.226830,0.004990,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.226830,0.004990,-0.005499,0.249940,0,0);}
.m1d_c00364{transform:matrix(0.227804,0.002734,-0.003000,0.249982,0,0);-ms-transform:matrix(0.227804,0.002734,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.227804,0.002734,-0.003000,0.249982,0,0);}
.m30_c00364{transform:matrix(0.228624,0.002743,-0.003000,0.249982,0,0);-ms-transform:matrix(0.228624,0.002743,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.228624,0.002743,-0.003000,0.249982,0,0);}
.m3c_c00364{transform:matrix(0.229747,0.003906,-0.004249,0.249964,0,0);-ms-transform:matrix(0.229747,0.003906,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.229747,0.003906,-0.004249,0.249964,0,0);}
.m3e_c00364{transform:matrix(0.229792,0.003906,-0.004249,0.249964,0,0);-ms-transform:matrix(0.229792,0.003906,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.229792,0.003906,-0.004249,0.249964,0,0);}
.m2b_c00364{transform:matrix(0.232708,0.002792,-0.003000,0.249982,0,0);-ms-transform:matrix(0.232708,0.002792,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.232708,0.002792,-0.003000,0.249982,0,0);}
.m2_c00364{transform:matrix(0.232944,0.005125,-0.005499,0.249940,0,0);-ms-transform:matrix(0.232944,0.005125,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.232944,0.005125,-0.005499,0.249940,0,0);}
.m43_c00364{transform:matrix(0.233087,0.004196,-0.004499,0.249960,0,0);-ms-transform:matrix(0.233087,0.004196,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.233087,0.004196,-0.004499,0.249960,0,0);}
.m27_c00364{transform:matrix(0.235003,0.002820,-0.003000,0.249982,0,0);-ms-transform:matrix(0.235003,0.002820,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.235003,0.002820,-0.003000,0.249982,0,0);}
.m4c_c00364{transform:matrix(0.235752,0.004244,-0.004499,0.249960,0,0);-ms-transform:matrix(0.235752,0.004244,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.235752,0.004244,-0.004499,0.249960,0,0);}
.m36_c00364{transform:matrix(0.237888,0.002855,-0.003000,0.249982,0,0);-ms-transform:matrix(0.237888,0.002855,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.237888,0.002855,-0.003000,0.249982,0,0);}
.m3a_c00364{transform:matrix(0.239405,0.004070,-0.004249,0.249964,0,0);-ms-transform:matrix(0.239405,0.004070,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.239405,0.004070,-0.004249,0.249964,0,0);}
.m38_c00364{transform:matrix(0.239610,0.004073,-0.004249,0.249964,0,0);-ms-transform:matrix(0.239610,0.004073,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.239610,0.004073,-0.004249,0.249964,0,0);}
.m32_c00364{transform:matrix(0.239943,0.002879,-0.003000,0.249982,0,0);-ms-transform:matrix(0.239943,0.002879,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.239943,0.002879,-0.003000,0.249982,0,0);}
.m44_c00364{transform:matrix(0.241736,0.004351,-0.004499,0.249960,0,0);-ms-transform:matrix(0.241736,0.004351,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.241736,0.004351,-0.004499,0.249960,0,0);}
.m4e_c00364{transform:matrix(0.243101,0.004376,-0.004499,0.249960,0,0);-ms-transform:matrix(0.243101,0.004376,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.243101,0.004376,-0.004499,0.249960,0,0);}
.m56_c00364{transform:matrix(0.244565,0.004402,-0.004499,0.249960,0,0);-ms-transform:matrix(0.244565,0.004402,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.244565,0.004402,-0.004499,0.249960,0,0);}
.m50_c00364{transform:matrix(0.245115,0.004412,-0.004499,0.249960,0,0);-ms-transform:matrix(0.245115,0.004412,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.245115,0.004412,-0.004499,0.249960,0,0);}
.m47_c00364{transform:matrix(0.245800,0.004424,-0.004499,0.249960,0,0);-ms-transform:matrix(0.245800,0.004424,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.245800,0.004424,-0.004499,0.249960,0,0);}
.m25_c00364{transform:matrix(0.245852,0.002950,-0.003000,0.249982,0,0);-ms-transform:matrix(0.245852,0.002950,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.245852,0.002950,-0.003000,0.249982,0,0);}
.m57_c00364{transform:matrix(0.245890,0.004426,-0.004499,0.249960,0,0);-ms-transform:matrix(0.245890,0.004426,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.245890,0.004426,-0.004499,0.249960,0,0);}
.m35_c00364{transform:matrix(0.247117,0.002965,-0.003000,0.249982,0,0);-ms-transform:matrix(0.247117,0.002965,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.247117,0.002965,-0.003000,0.249982,0,0);}
.m54_c00364{transform:matrix(0.247190,0.004449,-0.004499,0.249960,0,0);-ms-transform:matrix(0.247190,0.004449,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.247190,0.004449,-0.004499,0.249960,0,0);}
.m60_c00364{transform:matrix(0.247940,0.004463,-0.004499,0.249960,0,0);-ms-transform:matrix(0.247940,0.004463,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.247940,0.004463,-0.004499,0.249960,0,0);}
.m65_c00364{transform:matrix(0.247990,0.004464,-0.004499,0.249960,0,0);-ms-transform:matrix(0.247990,0.004464,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.247990,0.004464,-0.004499,0.249960,0,0);}
.m52_c00364{transform:matrix(0.248690,0.004476,-0.004499,0.249960,0,0);-ms-transform:matrix(0.248690,0.004476,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.248690,0.004476,-0.004499,0.249960,0,0);}
.m46_c00364{transform:matrix(0.249850,0.004497,-0.004499,0.249960,0,0);-ms-transform:matrix(0.249850,0.004497,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.249850,0.004497,-0.004499,0.249960,0,0);}
.m59_c00364{transform:matrix(0.249955,0.004499,-0.004499,0.249960,0,0);-ms-transform:matrix(0.249955,0.004499,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.249955,0.004499,-0.004499,0.249960,0,0);}
.m5c_c00364{transform:matrix(0.250364,0.004507,-0.004499,0.249960,0,0);-ms-transform:matrix(0.250364,0.004507,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.250364,0.004507,-0.004499,0.249960,0,0);}
.m34_c00364{transform:matrix(0.250452,0.003005,-0.003000,0.249982,0,0);-ms-transform:matrix(0.250452,0.003005,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.250452,0.003005,-0.003000,0.249982,0,0);}
.m29_c00364{transform:matrix(0.250502,0.003006,-0.003000,0.249982,0,0);-ms-transform:matrix(0.250502,0.003006,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.250502,0.003006,-0.003000,0.249982,0,0);}
.m2f_c00364{transform:matrix(0.251007,0.003012,-0.003000,0.249982,0,0);-ms-transform:matrix(0.251007,0.003012,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.251007,0.003012,-0.003000,0.249982,0,0);}
.m2d_c00364{transform:matrix(0.252757,0.003033,-0.003000,0.249982,0,0);-ms-transform:matrix(0.252757,0.003033,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.252757,0.003033,-0.003000,0.249982,0,0);}
.m4b_c00364{transform:matrix(0.255929,0.004607,-0.004499,0.249960,0,0);-ms-transform:matrix(0.255929,0.004607,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.255929,0.004607,-0.004499,0.249960,0,0);}
.m49_c00364{transform:matrix(0.258773,0.004658,-0.004499,0.249960,0,0);-ms-transform:matrix(0.258773,0.004658,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.258773,0.004658,-0.004499,0.249960,0,0);}
.m5e_c00364{transform:matrix(0.259458,0.004670,-0.004499,0.249960,0,0);-ms-transform:matrix(0.259458,0.004670,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.259458,0.004670,-0.004499,0.249960,0,0);}
.m2c_c00364{transform:matrix(0.259506,0.003114,-0.003000,0.249982,0,0);-ms-transform:matrix(0.259506,0.003114,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.259506,0.003114,-0.003000,0.249982,0,0);}
.m66_c00364{transform:matrix(0.265285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265285,0.000000,0.000000,0.250000,0,0);}
.m2a_c00364{transform:matrix(0.269351,0.003232,-0.003000,0.249982,0,0);-ms-transform:matrix(0.269351,0.003232,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.269351,0.003232,-0.003000,0.249982,0,0);}
.me_c00364{transform:matrix(0.315304,0.005675,-0.004499,0.249960,0,0);-ms-transform:matrix(0.315304,0.005675,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.315304,0.005675,-0.004499,0.249960,0,0);}
.mb_c00364{transform:matrix(0.322013,0.005796,-0.004499,0.249960,0,0);-ms-transform:matrix(0.322013,0.005796,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.322013,0.005796,-0.004499,0.249960,0,0);}
.mc_c00364{transform:matrix(0.328922,0.005921,-0.004499,0.249960,0,0);-ms-transform:matrix(0.328922,0.005921,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.328922,0.005921,-0.004499,0.249960,0,0);}
.md_c00364{transform:matrix(0.351083,0.006319,-0.004499,0.249960,0,0);-ms-transform:matrix(0.351083,0.006319,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.351083,0.006319,-0.004499,0.249960,0,0);}
.m12_c00364{transform:matrix(0.353958,0.006371,-0.004499,0.249960,0,0);-ms-transform:matrix(0.353958,0.006371,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.353958,0.006371,-0.004499,0.249960,0,0);}
.m11_c00364{transform:matrix(0.368720,0.006637,-0.004499,0.249960,0,0);-ms-transform:matrix(0.368720,0.006637,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.368720,0.006637,-0.004499,0.249960,0,0);}
.m19_c00364{transform:matrix(0.384480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384480,0.000000,0.000000,0.250000,0,0);}
.m10_c00364{transform:matrix(0.403050,0.007255,-0.004499,0.249960,0,0);-ms-transform:matrix(0.403050,0.007255,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.403050,0.007255,-0.004499,0.249960,0,0);}
.m7_c00364{transform:matrix(0.457121,0.008228,-0.004499,0.249960,0,0);-ms-transform:matrix(0.457121,0.008228,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.457121,0.008228,-0.004499,0.249960,0,0);}
.m17_c00364{transform:matrix(0.472015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472015,0.000000,0.000000,0.250000,0,0);}
.m14_c00364{transform:matrix(0.507570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507570,0.000000,0.000000,0.250000,0,0);}
.m6_c00364{transform:matrix(0.509033,0.009163,-0.004499,0.249960,0,0);-ms-transform:matrix(0.509033,0.009163,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.509033,0.009163,-0.004499,0.249960,0,0);}
.m16_c00364{transform:matrix(0.525000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525000,0.000000,0.000000,0.250000,0,0);}
.ma_c00364{transform:matrix(0.531514,0.009567,-0.004499,0.249960,0,0);-ms-transform:matrix(0.531514,0.009567,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.531514,0.009567,-0.004499,0.249960,0,0);}
.m5_c00364{transform:matrix(0.580421,0.010448,-0.004499,0.249960,0,0);-ms-transform:matrix(0.580421,0.010448,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.580421,0.010448,-0.004499,0.249960,0,0);}
.m8_c00364{transform:matrix(0.684654,0.012324,-0.004499,0.249960,0,0);-ms-transform:matrix(0.684654,0.012324,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.684654,0.012324,-0.004499,0.249960,0,0);}
.m18_c00364{transform:matrix(0.767935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.767935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.767935,0.000000,0.000000,0.250000,0,0);}
.mf_c00364{transform:matrix(0.809809,0.014577,-0.004499,0.249960,0,0);-ms-transform:matrix(0.809809,0.014577,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.809809,0.014577,-0.004499,0.249960,0,0);}
.m9_c00364{transform:matrix(1.444291,0.025997,-0.004499,0.249960,0,0);-ms-transform:matrix(1.444291,0.025997,-0.004499,0.249960,0,0);-webkit-transform:matrix(1.444291,0.025997,-0.004499,0.249960,0,0);}
.m13_c00364{transform:matrix(1.779130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.779130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.779130,0.000000,0.000000,0.250000,0,0);}
.m15_c00364{transform:matrix(3.035340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.035340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.035340,0.000000,0.000000,0.250000,0,0);}
.v0_c00364{vertical-align:0.000000px;}
.ls0_c00364{letter-spacing:0.000000px;}
.sc__c00364{text-shadow:none;}
.sc0_c00364{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__c00364{-webkit-text-stroke:0px transparent;}
.sc0_c00364{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00364{word-spacing:0.000000px;}
._0_c00364{width:22.228541px;}
._1_c00364{width:32.475567px;}
.fc0_c00364{color:transparent;}
.fs2_c00364{font-size:18.000000px;}
.fs1_c00364{font-size:18.002916px;}
.fs8_c00364{font-size:66.000000px;}
.fs4_c00364{font-size:78.005616px;}
.fs7_c00364{font-size:78.012635px;}
.fs5_c00364{font-size:84.012137px;}
.fs0_c00364{font-size:84.020326px;}
.fs6_c00364{font-size:96.013871px;}
.fs3_c00364{font-size:102.007344px;}
.y0_c00364{bottom:0.000000px;}
.y64_c00364{bottom:785.022000px;}
.y63_c00364{bottom:817.561197px;}
.y62_c00364{bottom:818.083893px;}
.y61_c00364{bottom:818.638053px;}
.y60_c00364{bottom:819.376965px;}
.y5f_c00364{bottom:819.895746px;}
.y5e_c00364{bottom:821.491152px;}
.y5d_c00364{bottom:822.208209px;}
.y5c_c00364{bottom:823.823646px;}
.y5b_c00364{bottom:824.151912px;}
.y5a_c00364{bottom:825.405987px;}
.y59_c00364{bottom:825.918666px;}
.y58_c00364{bottom:826.437744px;}
.y57_c00364{bottom:827.811453px;}
.y56_c00364{bottom:853.992672px;}
.y55_c00364{bottom:854.926092px;}
.y54_c00364{bottom:855.401817px;}
.y53_c00364{bottom:856.347168px;}
.y52_c00364{bottom:856.812408px;}
.y51_c00364{bottom:858.208125px;}
.y50_c00364{bottom:858.691530px;}
.y4f_c00364{bottom:860.080311px;}
.y4e_c00364{bottom:860.702955px;}
.y4d_c00364{bottom:862.090737px;}
.y4c_c00364{bottom:862.529538px;}
.y4b_c00364{bottom:863.455563px;}
.y4a_c00364{bottom:888.897339px;}
.y49_c00364{bottom:889.309332px;}
.y48_c00364{bottom:890.914185px;}
.y47_c00364{bottom:891.502326px;}
.y46_c00364{bottom:893.520117px;}
.y45_c00364{bottom:894.108258px;}
.y44_c00364{bottom:895.134069px;}
.y43_c00364{bottom:896.922954px;}
.y42_c00364{bottom:897.501213px;}
.y41_c00364{bottom:898.511850px;}
.y40_c00364{bottom:899.104500px;}
.y3e_c00364{bottom:926.524345px;}
.y3f_c00364{bottom:926.524482px;}
.y3d_c00364{bottom:960.757897px;}
.y3c_c00364{bottom:961.312038px;}
.y3b_c00364{bottom:962.652292px;}
.y3a_c00364{bottom:963.226348px;}
.y39_c00364{bottom:964.351434px;}
.y38_c00364{bottom:965.292409px;}
.y37_c00364{bottom:966.638478px;}
.y36_c00364{bottom:967.187799px;}
.y35_c00364{bottom:969.263269px;}
.y34_c00364{bottom:970.383000px;}
.y2c_c00364{bottom:1001.650758px;}
.y2d_c00364{bottom:1001.651034px;}
.y2e_c00364{bottom:1001.651088px;}
.y2f_c00364{bottom:1001.651304px;}
.y30_c00364{bottom:1001.651418px;}
.y32_c00364{bottom:1001.651424px;}
.y31_c00364{bottom:1001.651634px;}
.y33_c00364{bottom:1001.651958px;}
.y2b_c00364{bottom:1033.030860px;}
.y2a_c00364{bottom:1033.371222px;}
.y29_c00364{bottom:1034.257464px;}
.y28_c00364{bottom:1035.490056px;}
.y27_c00364{bottom:1035.937086px;}
.y26_c00364{bottom:1036.279602px;}
.y25_c00364{bottom:1037.257644px;}
.y24_c00364{bottom:1037.594694px;}
.y23_c00364{bottom:1038.258522px;}
.y22_c00364{bottom:1038.471942px;}
.y21_c00364{bottom:1039.227732px;}
.y20_c00364{bottom:1068.056034px;}
.y1f_c00364{bottom:1068.577206px;}
.y1e_c00364{bottom:1069.384416px;}
.y1d_c00364{bottom:1070.052072px;}
.y1c_c00364{bottom:1070.736486px;}
.y1b_c00364{bottom:1071.273858px;}
.y1a_c00364{bottom:1071.925134px;}
.y19_c00364{bottom:1073.010696px;}
.y18_c00364{bottom:1073.266368px;}
.y17_c00364{bottom:1073.671260px;}
.y16_c00364{bottom:1074.601500px;}
.y15_c00364{bottom:1147.524000px;}
.y14_c00364{bottom:1149.515409px;}
.y13_c00364{bottom:1149.660318px;}
.y12_c00364{bottom:1149.879855px;}
.y11_c00364{bottom:1150.117968px;}
.y10_c00364{bottom:1150.526154px;}
.yf_c00364{bottom:1151.322627px;}
.ye_c00364{bottom:1151.482980px;}
.yd_c00364{bottom:1151.925429px;}
.yc_c00364{bottom:1152.115023px;}
.yb_c00364{bottom:1152.333777px;}
.ya_c00364{bottom:1152.790806px;}
.y9_c00364{bottom:1153.359426px;}
.y8_c00364{bottom:1153.656021px;}
.y7_c00364{bottom:1153.879635px;}
.y6_c00364{bottom:1154.541000px;}
.y5_c00364{bottom:1159.655394px;}
.y4_c00364{bottom:1160.925861px;}
.y3_c00364{bottom:1163.378883px;}
.y2_c00364{bottom:1164.115773px;}
.y1_c00364{bottom:1165.327500px;}
.h4_c00364{height:18.000000px;}
.h3_c00364{height:18.002916px;}
.ha_c00364{height:66.000000px;}
.h6_c00364{height:78.005616px;}
.h9_c00364{height:78.012635px;}
.h7_c00364{height:84.012137px;}
.h2_c00364{height:84.020326px;}
.h8_c00364{height:96.013871px;}
.h5_c00364{height:102.007344px;}
.h0_c00364{height:1251.450000px;}
.h1_c00364{height:1251.750000px;}
.w0_c00364{width:915.000000px;}
.x0_c00364{left:0.000000px;}
.x23_c00364{left:141.902652px;}
.x38_c00364{left:143.354280px;}
.x2b_c00364{left:175.223094px;}
.x3d_c00364{left:207.189240px;}
.x24_c00364{left:217.511970px;}
.x2c_c00364{left:229.226370px;}
.x25_c00364{left:238.797474px;}
.x1a_c00364{left:249.028500px;}
.x31_c00364{left:250.092000px;}
.x2d_c00364{left:261.087960px;}
.x39_c00364{left:282.177000px;}
.x44_c00364{left:292.968516px;}
.x26_c00364{left:305.243076px;}
.x1_c00364{left:315.045000px;}
.x2e_c00364{left:316.711470px;}
.x1b_c00364{left:326.548500px;}
.x3e_c00364{left:337.592109px;}
.x27_c00364{left:338.956386px;}
.x2f_c00364{left:348.573060px;}
.x6_c00364{left:351.765000px;}
.x1c_c00364{left:360.289500px;}
.x7_c00364{left:364.188000px;}
.x2_c00364{left:370.123500px;}
.x45_c00364{left:371.308824px;}
.x8_c00364{left:380.665500px;}
.x3f_c00364{left:382.103322px;}
.x46_c00364{left:391.796553px;}
.x3_c00364{left:403.618500px;}
.x9_c00364{left:412.255500px;}
.xa_c00364{left:437.646000px;}
.x30_c00364{left:448.479942px;}
.xb_c00364{left:449.799000px;}
.x14_c00364{left:452.250000px;}
.xc_c00364{left:460.332000px;}
.x3a_c00364{left:469.831500px;}
.x15_c00364{left:471.150000px;}
.x40_c00364{left:481.264950px;}
.xd_c00364{left:484.912500px;}
.x47_c00364{left:492.796698px;}
.xe_c00364{left:493.821000px;}
.x16_c00364{left:508.410000px;}
.x4_c00364{left:515.119500px;}
.x17_c00364{left:516.510000px;}
.x1d_c00364{left:526.332000px;}
.xf_c00364{left:538.069500px;}
.x32_c00364{left:549.538500px;}
.x3b_c00364{left:559.495500px;}
.x10_c00364{left:560.746500px;}
.x18_c00364{left:562.680000px;}
.x1e_c00364{left:571.113000px;}
.x5_c00364{left:572.868000px;}
.x11_c00364{left:573.975000px;}
.x19_c00364{left:575.370000px;}
.x12_c00364{left:586.171500px;}
.x13_c00364{left:594.222000px;}
.x33_c00364{left:604.890000px;}
.x41_c00364{left:615.503616px;}
.x1f_c00364{left:628.147500px;}
.x48_c00364{left:637.355409px;}
.x28_c00364{left:638.978586px;}
.x42_c00364{left:648.685992px;}
.x49_c00364{left:669.761070px;}
.x34_c00364{left:671.071500px;}
.x20_c00364{left:683.785500px;}
.x35_c00364{left:704.839500px;}
.x43_c00364{left:716.210352px;}
.x29_c00364{left:727.584210px;}
.x21_c00364{left:751.053000px;}
.x2a_c00364{left:761.573520px;}
.x36_c00364{left:783.678000px;}
.x3c_c00364{left:793.428000px;}
.x22_c00364{left:794.484000px;}
.x37_c00364{left:816.274500px;}
@media print{
.v0_c00364{vertical-align:0.000000pt;}
.ls0_c00364{letter-spacing:0.000000pt;}
.ws0_c00364{word-spacing:0.000000pt;}
._0_c00364{width:19.758703pt;}
._1_c00364{width:28.867171pt;}
.fs2_c00364{font-size:16.000000pt;}
.fs1_c00364{font-size:16.002592pt;}
.fs8_c00364{font-size:58.666667pt;}
.fs4_c00364{font-size:69.338325pt;}
.fs7_c00364{font-size:69.344564pt;}
.fs5_c00364{font-size:74.677455pt;}
.fs0_c00364{font-size:74.684734pt;}
.fs6_c00364{font-size:85.345663pt;}
.fs3_c00364{font-size:90.673194pt;}
.y0_c00364{bottom:0.000000pt;}
.y64_c00364{bottom:697.797333pt;}
.y63_c00364{bottom:726.721064pt;}
.y62_c00364{bottom:727.185683pt;}
.y61_c00364{bottom:727.678269pt;}
.y60_c00364{bottom:728.335080pt;}
.y5f_c00364{bottom:728.796219pt;}
.y5e_c00364{bottom:730.214357pt;}
.y5d_c00364{bottom:730.851741pt;}
.y5c_c00364{bottom:732.287685pt;}
.y5b_c00364{bottom:732.579477pt;}
.y5a_c00364{bottom:733.694211pt;}
.y59_c00364{bottom:734.149925pt;}
.y58_c00364{bottom:734.611328pt;}
.y57_c00364{bottom:735.832403pt;}
.y56_c00364{bottom:759.104597pt;}
.y55_c00364{bottom:759.934304pt;}
.y54_c00364{bottom:760.357171pt;}
.y53_c00364{bottom:761.197483pt;}
.y52_c00364{bottom:761.611029pt;}
.y51_c00364{bottom:762.851667pt;}
.y50_c00364{bottom:763.281360pt;}
.y4f_c00364{bottom:764.515832pt;}
.y4e_c00364{bottom:765.069293pt;}
.y4d_c00364{bottom:766.302877pt;}
.y4c_c00364{bottom:766.692923pt;}
.y4b_c00364{bottom:767.516056pt;}
.y4a_c00364{bottom:790.130968pt;}
.y49_c00364{bottom:790.497184pt;}
.y48_c00364{bottom:791.923720pt;}
.y47_c00364{bottom:792.446512pt;}
.y46_c00364{bottom:794.240104pt;}
.y45_c00364{bottom:794.762896pt;}
.y44_c00364{bottom:795.674728pt;}
.y43_c00364{bottom:797.264848pt;}
.y42_c00364{bottom:797.778856pt;}
.y41_c00364{bottom:798.677200pt;}
.y40_c00364{bottom:799.204000pt;}
.y3e_c00364{bottom:823.577196pt;}
.y3f_c00364{bottom:823.577317pt;}
.y3d_c00364{bottom:854.007020pt;}
.y3c_c00364{bottom:854.499589pt;}
.y3b_c00364{bottom:855.690927pt;}
.y3a_c00364{bottom:856.201199pt;}
.y39_c00364{bottom:857.201275pt;}
.y38_c00364{bottom:858.037697pt;}
.y37_c00364{bottom:859.234203pt;}
.y36_c00364{bottom:859.722488pt;}
.y35_c00364{bottom:861.567351pt;}
.y34_c00364{bottom:862.562667pt;}
.y2c_c00364{bottom:890.356229pt;}
.y2d_c00364{bottom:890.356475pt;}
.y2e_c00364{bottom:890.356523pt;}
.y2f_c00364{bottom:890.356715pt;}
.y30_c00364{bottom:890.356816pt;}
.y32_c00364{bottom:890.356821pt;}
.y31_c00364{bottom:890.357008pt;}
.y33_c00364{bottom:890.357296pt;}
.y2b_c00364{bottom:918.249653pt;}
.y2a_c00364{bottom:918.552197pt;}
.y29_c00364{bottom:919.339968pt;}
.y28_c00364{bottom:920.435605pt;}
.y27_c00364{bottom:920.832965pt;}
.y26_c00364{bottom:921.137424pt;}
.y25_c00364{bottom:922.006795pt;}
.y24_c00364{bottom:922.306395pt;}
.y23_c00364{bottom:922.896464pt;}
.y22_c00364{bottom:923.086171pt;}
.y21_c00364{bottom:923.757984pt;}
.y20_c00364{bottom:949.383141pt;}
.y1f_c00364{bottom:949.846405pt;}
.y1e_c00364{bottom:950.563925pt;}
.y1d_c00364{bottom:951.157397pt;}
.y1c_c00364{bottom:951.765765pt;}
.y1b_c00364{bottom:952.243429pt;}
.y1a_c00364{bottom:952.822341pt;}
.y19_c00364{bottom:953.787285pt;}
.y18_c00364{bottom:954.014549pt;}
.y17_c00364{bottom:954.374453pt;}
.y16_c00364{bottom:955.201333pt;}
.y15_c00364{bottom:1020.021333pt;}
.y14_c00364{bottom:1021.791475pt;}
.y13_c00364{bottom:1021.920283pt;}
.y12_c00364{bottom:1022.115427pt;}
.y11_c00364{bottom:1022.327083pt;}
.y10_c00364{bottom:1022.689915pt;}
.yf_c00364{bottom:1023.397891pt;}
.ye_c00364{bottom:1023.540427pt;}
.yd_c00364{bottom:1023.933715pt;}
.yc_c00364{bottom:1024.102243pt;}
.yb_c00364{bottom:1024.296691pt;}
.ya_c00364{bottom:1024.702939pt;}
.y9_c00364{bottom:1025.208379pt;}
.y8_c00364{bottom:1025.472019pt;}
.y7_c00364{bottom:1025.670787pt;}
.y6_c00364{bottom:1026.258667pt;}
.y5_c00364{bottom:1030.804795pt;}
.y4_c00364{bottom:1031.934099pt;}
.y3_c00364{bottom:1034.114563pt;}
.y2_c00364{bottom:1034.769576pt;}
.y1_c00364{bottom:1035.846667pt;}
.h4_c00364{height:16.000000pt;}
.h3_c00364{height:16.002592pt;}
.ha_c00364{height:58.666667pt;}
.h6_c00364{height:69.338325pt;}
.h9_c00364{height:69.344564pt;}
.h7_c00364{height:74.677455pt;}
.h2_c00364{height:74.684734pt;}
.h8_c00364{height:85.345663pt;}
.h5_c00364{height:90.673194pt;}
.h0_c00364{height:1112.400000pt;}
.h1_c00364{height:1112.666667pt;}
.w0_c00364{width:813.333333pt;}
.x0_c00364{left:0.000000pt;}
.x23_c00364{left:126.135691pt;}
.x38_c00364{left:127.426027pt;}
.x2b_c00364{left:155.753861pt;}
.x3d_c00364{left:184.168213pt;}
.x24_c00364{left:193.343973pt;}
.x2c_c00364{left:203.756773pt;}
.x25_c00364{left:212.264421pt;}
.x1a_c00364{left:221.358667pt;}
.x31_c00364{left:222.304000pt;}
.x2d_c00364{left:232.078187pt;}
.x39_c00364{left:250.824000pt;}
.x44_c00364{left:260.416459pt;}
.x26_c00364{left:271.327179pt;}
.x1_c00364{left:280.040000pt;}
.x2e_c00364{left:281.521307pt;}
.x1b_c00364{left:290.265333pt;}
.x3e_c00364{left:300.081875pt;}
.x27_c00364{left:301.294565pt;}
.x2f_c00364{left:309.842720pt;}
.x6_c00364{left:312.680000pt;}
.x1c_c00364{left:320.257333pt;}
.x7_c00364{left:323.722667pt;}
.x2_c00364{left:328.998667pt;}
.x45_c00364{left:330.052288pt;}
.x8_c00364{left:338.369333pt;}
.x3f_c00364{left:339.647397pt;}
.x46_c00364{left:348.263603pt;}
.x3_c00364{left:358.772000pt;}
.x9_c00364{left:366.449333pt;}
.xa_c00364{left:389.018667pt;}
.x30_c00364{left:398.648837pt;}
.xb_c00364{left:399.821333pt;}
.x14_c00364{left:402.000000pt;}
.xc_c00364{left:409.184000pt;}
.x3a_c00364{left:417.628000pt;}
.x15_c00364{left:418.800000pt;}
.x40_c00364{left:427.791067pt;}
.xd_c00364{left:431.033333pt;}
.x47_c00364{left:438.041509pt;}
.xe_c00364{left:438.952000pt;}
.x16_c00364{left:451.920000pt;}
.x4_c00364{left:457.884000pt;}
.x17_c00364{left:459.120000pt;}
.x1d_c00364{left:467.850667pt;}
.xf_c00364{left:478.284000pt;}
.x32_c00364{left:488.478667pt;}
.x3b_c00364{left:497.329333pt;}
.x10_c00364{left:498.441333pt;}
.x18_c00364{left:500.160000pt;}
.x1e_c00364{left:507.656000pt;}
.x5_c00364{left:509.216000pt;}
.x11_c00364{left:510.200000pt;}
.x19_c00364{left:511.440000pt;}
.x12_c00364{left:521.041333pt;}
.x13_c00364{left:528.197333pt;}
.x33_c00364{left:537.680000pt;}
.x41_c00364{left:547.114325pt;}
.x1f_c00364{left:558.353333pt;}
.x48_c00364{left:566.538141pt;}
.x28_c00364{left:567.980965pt;}
.x42_c00364{left:576.609771pt;}
.x49_c00364{left:595.343173pt;}
.x34_c00364{left:596.508000pt;}
.x20_c00364{left:607.809333pt;}
.x35_c00364{left:626.524000pt;}
.x43_c00364{left:636.631424pt;}
.x29_c00364{left:646.741520pt;}
.x21_c00364{left:667.602667pt;}
.x2a_c00364{left:676.954240pt;}
.x36_c00364{left:696.602667pt;}
.x3c_c00364{left:705.269333pt;}
.x22_c00364{left:706.208000pt;}
.x37_c00364{left:725.577333pt;}
}





/* 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_c00365 {
    display:none;
  }
  .loading-indicator_c00365.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00365 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_c00365 { 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_c00365" -> "#page-container .classname_c00365")
 */
.pf_c00365 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00365 { /* 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_c00365.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00365 { /* 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_c00365 { /* 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_c00365 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00365 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00365 {overflow:visible;}
  }
}
.c_c00365 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00365 { /* 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_c00365:after { /* webkit #35443 */
  content: '';
}
.t_c00365:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00365 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 */
}
.__c00365 { /* 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_c00365 { /* info for Javascript */
  display:none;
}
.l_c00365 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00365 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00365 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00365: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_c00365 {
    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_c00365.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00365.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_c00365 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00365{font-family:sans-serif;visibility:hidden;}
.sc__c00365{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00365{-webkit-text-stroke:0px transparent;}
}
.y0_c00365{bottom:0.000000px;}
.h0_c00365{height:1251.450000px;}
.h1_c00365{height:1251.750000px;}
.w0_c00365{width:915.000000px;}
.x0_c00365{left:0.000000px;}
@media print{
.y0_c00365{bottom:0.000000pt;}
.h0_c00365{height:1112.400000pt;}
.h1_c00365{height:1112.666667pt;}
.w0_c00365{width:813.333333pt;}
.x0_c00365{left:0.000000pt;}
}





/* 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_c00366 {
    display:none;
  }
  .loading-indicator_c00366.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00366 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_c00366 { 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_c00366" -> "#page-container .classname_c00366")
 */
.pf_c00366 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00366 { /* 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_c00366.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00366 { /* 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_c00366 { /* 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_c00366 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00366 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00366 {overflow:visible;}
  }
}
.c_c00366 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00366 { /* 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_c00366:after { /* webkit #35443 */
  content: '';
}
.t_c00366:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00366 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 */
}
.__c00366 { /* 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_c00366 { /* info for Javascript */
  display:none;
}
.l_c00366 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00366 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00366 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00366: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_c00366 {
    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_c00366.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00366.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_c00366 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00366{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00366;src:url('chunks/assets/font_7c6b9abe6ee2a268480c528b.woff2')format("woff");}.ff1_c00366{font-family:ff1_c00366;line-height:1.000000;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;}
.m1d_c00366{transform:matrix(0.085423,0.001708,-0.004999,0.249950,0,0);-ms-transform:matrix(0.085423,0.001708,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.085423,0.001708,-0.004999,0.249950,0,0);}
.m3_c00366{transform:matrix(0.114667,0.002752,-0.005998,0.249928,0,0);-ms-transform:matrix(0.114667,0.002752,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.114667,0.002752,-0.005998,0.249928,0,0);}
.m42_c00366{transform:matrix(0.115597,0.002312,-0.004999,0.249950,0,0);-ms-transform:matrix(0.115597,0.002312,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.115597,0.002312,-0.004999,0.249950,0,0);}
.mbb_c00366{transform:matrix(0.129069,0.002581,-0.004999,0.249950,0,0);-ms-transform:matrix(0.129069,0.002581,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.129069,0.002581,-0.004999,0.249950,0,0);}
.m13f_c00366{transform:matrix(0.138312,0.002213,-0.003999,0.249968,0,0);-ms-transform:matrix(0.138312,0.002213,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.138312,0.002213,-0.003999,0.249968,0,0);}
.m143_c00366{transform:matrix(0.142260,0.001707,-0.003000,0.249982,0,0);-ms-transform:matrix(0.142260,0.001707,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.142260,0.001707,-0.003000,0.249982,0,0);}
.m13a_c00366{transform:matrix(0.165879,0.002654,-0.003999,0.249968,0,0);-ms-transform:matrix(0.165879,0.002654,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.165879,0.002654,-0.003999,0.249968,0,0);}
.mbf_c00366{transform:matrix(0.167422,0.003348,-0.004999,0.249950,0,0);-ms-transform:matrix(0.167422,0.003348,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.167422,0.003348,-0.004999,0.249950,0,0);}
.mec_c00366{transform:matrix(0.169134,0.004736,-0.006997,0.249902,0,0);-ms-transform:matrix(0.169134,0.004736,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.169134,0.004736,-0.006997,0.249902,0,0);}
.m3b_c00366{transform:matrix(0.169546,0.003391,-0.004999,0.249950,0,0);-ms-transform:matrix(0.169546,0.003391,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.169546,0.003391,-0.004999,0.249950,0,0);}
.m67_c00366{transform:matrix(0.170541,0.003411,-0.004999,0.249950,0,0);-ms-transform:matrix(0.170541,0.003411,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.170541,0.003411,-0.004999,0.249950,0,0);}
.mc9_c00366{transform:matrix(0.171086,0.003422,-0.004999,0.249950,0,0);-ms-transform:matrix(0.171086,0.003422,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.171086,0.003422,-0.004999,0.249950,0,0);}
.m11e_c00366{transform:matrix(0.171543,0.004803,-0.006997,0.249902,0,0);-ms-transform:matrix(0.171543,0.004803,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.171543,0.004803,-0.006997,0.249902,0,0);}
.m38_c00366{transform:matrix(0.171866,0.003437,-0.004999,0.249950,0,0);-ms-transform:matrix(0.171866,0.003437,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.171866,0.003437,-0.004999,0.249950,0,0);}
.m65_c00366{transform:matrix(0.172516,0.003450,-0.004999,0.249950,0,0);-ms-transform:matrix(0.172516,0.003450,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.172516,0.003450,-0.004999,0.249950,0,0);}
.m114_c00366{transform:matrix(0.172687,0.004835,-0.006997,0.249902,0,0);-ms-transform:matrix(0.172687,0.004835,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.172687,0.004835,-0.006997,0.249902,0,0);}
.mc4_c00366{transform:matrix(0.173695,0.003474,-0.004999,0.249950,0,0);-ms-transform:matrix(0.173695,0.003474,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.173695,0.003474,-0.004999,0.249950,0,0);}
.m62_c00366{transform:matrix(0.174180,0.003484,-0.004999,0.249950,0,0);-ms-transform:matrix(0.174180,0.003484,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.174180,0.003484,-0.004999,0.249950,0,0);}
.mc7_c00366{transform:matrix(0.176055,0.003521,-0.004999,0.249950,0,0);-ms-transform:matrix(0.176055,0.003521,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.176055,0.003521,-0.004999,0.249950,0,0);}
.m5f_c00366{transform:matrix(0.176305,0.003526,-0.004999,0.249950,0,0);-ms-transform:matrix(0.176305,0.003526,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.176305,0.003526,-0.004999,0.249950,0,0);}
.m40_c00366{transform:matrix(0.176785,0.003536,-0.004999,0.249950,0,0);-ms-transform:matrix(0.176785,0.003536,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.176785,0.003536,-0.004999,0.249950,0,0);}
.mc1_c00366{transform:matrix(0.177045,0.003541,-0.004999,0.249950,0,0);-ms-transform:matrix(0.177045,0.003541,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.177045,0.003541,-0.004999,0.249950,0,0);}
.mc8_c00366{transform:matrix(0.177390,0.003548,-0.004999,0.249950,0,0);-ms-transform:matrix(0.177390,0.003548,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.177390,0.003548,-0.004999,0.249950,0,0);}
.m108_c00366{transform:matrix(0.177940,0.004982,-0.006997,0.249902,0,0);-ms-transform:matrix(0.177940,0.004982,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.177940,0.004982,-0.006997,0.249902,0,0);}
.mbe_c00366{transform:matrix(0.178889,0.003578,-0.004999,0.249950,0,0);-ms-transform:matrix(0.178889,0.003578,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.178889,0.003578,-0.004999,0.249950,0,0);}
.m115_c00366{transform:matrix(0.179400,0.005023,-0.006997,0.249902,0,0);-ms-transform:matrix(0.179400,0.005023,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.179400,0.005023,-0.006997,0.249902,0,0);}
.m3c_c00366{transform:matrix(0.179699,0.003594,-0.004999,0.249950,0,0);-ms-transform:matrix(0.179699,0.003594,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.179699,0.003594,-0.004999,0.249950,0,0);}
.me8_c00366{transform:matrix(0.180209,0.005046,-0.006997,0.249902,0,0);-ms-transform:matrix(0.180209,0.005046,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.180209,0.005046,-0.006997,0.249902,0,0);}
.m7c_c00366{transform:matrix(0.180244,0.003605,-0.004999,0.249950,0,0);-ms-transform:matrix(0.180244,0.003605,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.180244,0.003605,-0.004999,0.249950,0,0);}
.m5e_c00366{transform:matrix(0.180374,0.003607,-0.004999,0.249950,0,0);-ms-transform:matrix(0.180374,0.003607,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.180374,0.003607,-0.004999,0.249950,0,0);}
.m11a_c00366{transform:matrix(0.180704,0.005060,-0.006997,0.249902,0,0);-ms-transform:matrix(0.180704,0.005060,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.180704,0.005060,-0.006997,0.249902,0,0);}
.me1_c00366{transform:matrix(0.180829,0.003617,-0.004999,0.249950,0,0);-ms-transform:matrix(0.180829,0.003617,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.180829,0.003617,-0.004999,0.249950,0,0);}
.m11c_c00366{transform:matrix(0.180904,0.005065,-0.006997,0.249902,0,0);-ms-transform:matrix(0.180904,0.005065,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.180904,0.005065,-0.006997,0.249902,0,0);}
.m39_c00366{transform:matrix(0.180939,0.003619,-0.004999,0.249950,0,0);-ms-transform:matrix(0.180939,0.003619,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.180939,0.003619,-0.004999,0.249950,0,0);}
.m77_c00366{transform:matrix(0.181359,0.003627,-0.004999,0.249950,0,0);-ms-transform:matrix(0.181359,0.003627,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.181359,0.003627,-0.004999,0.249950,0,0);}
.m3e_c00366{transform:matrix(0.181464,0.003629,-0.004999,0.249950,0,0);-ms-transform:matrix(0.181464,0.003629,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.181464,0.003629,-0.004999,0.249950,0,0);}
.m41_c00366{transform:matrix(0.183033,0.003661,-0.004999,0.249950,0,0);-ms-transform:matrix(0.183033,0.003661,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.183033,0.003661,-0.004999,0.249950,0,0);}
.m10f_c00366{transform:matrix(0.184103,0.005155,-0.006997,0.249902,0,0);-ms-transform:matrix(0.184103,0.005155,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.184103,0.005155,-0.006997,0.249902,0,0);}
.m7e_c00366{transform:matrix(0.184138,0.003683,-0.004999,0.249950,0,0);-ms-transform:matrix(0.184138,0.003683,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.184138,0.003683,-0.004999,0.249950,0,0);}
.mbd_c00366{transform:matrix(0.184248,0.003685,-0.004999,0.249950,0,0);-ms-transform:matrix(0.184248,0.003685,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.184248,0.003685,-0.004999,0.249950,0,0);}
.m68_c00366{transform:matrix(0.185728,0.003715,-0.004999,0.249950,0,0);-ms-transform:matrix(0.185728,0.003715,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.185728,0.003715,-0.004999,0.249950,0,0);}
.mcb_c00366{transform:matrix(0.186048,0.003721,-0.004999,0.249950,0,0);-ms-transform:matrix(0.186048,0.003721,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.186048,0.003721,-0.004999,0.249950,0,0);}
.me2_c00366{transform:matrix(0.186813,0.003736,-0.004999,0.249950,0,0);-ms-transform:matrix(0.186813,0.003736,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.186813,0.003736,-0.004999,0.249950,0,0);}
.m146_c00366{transform:matrix(0.187846,0.002254,-0.003000,0.249982,0,0);-ms-transform:matrix(0.187846,0.002254,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.187846,0.002254,-0.003000,0.249982,0,0);}
.me3_c00366{transform:matrix(0.190190,0.005325,-0.006997,0.249902,0,0);-ms-transform:matrix(0.190190,0.005325,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.190190,0.005325,-0.006997,0.249902,0,0);}
.m10c_c00366{transform:matrix(0.190515,0.005334,-0.006997,0.249902,0,0);-ms-transform:matrix(0.190515,0.005334,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.190515,0.005334,-0.006997,0.249902,0,0);}
.mc5_c00366{transform:matrix(0.191032,0.003821,-0.004999,0.249950,0,0);-ms-transform:matrix(0.191032,0.003821,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.191032,0.003821,-0.004999,0.249950,0,0);}
.m3f_c00366{transform:matrix(0.191217,0.003824,-0.004999,0.249950,0,0);-ms-transform:matrix(0.191217,0.003824,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.191217,0.003824,-0.004999,0.249950,0,0);}
.m98_c00366{transform:matrix(0.191937,0.003839,-0.004999,0.249950,0,0);-ms-transform:matrix(0.191937,0.003839,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.191937,0.003839,-0.004999,0.249950,0,0);}
.m10a_c00366{transform:matrix(0.192135,0.005380,-0.006997,0.249902,0,0);-ms-transform:matrix(0.192135,0.005380,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.192135,0.005380,-0.006997,0.249902,0,0);}
.me6_c00366{transform:matrix(0.192225,0.005382,-0.006997,0.249902,0,0);-ms-transform:matrix(0.192225,0.005382,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.192225,0.005382,-0.006997,0.249902,0,0);}
.m118_c00366{transform:matrix(0.192405,0.005387,-0.006997,0.249902,0,0);-ms-transform:matrix(0.192405,0.005387,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.192405,0.005387,-0.006997,0.249902,0,0);}
.m8c_c00366{transform:matrix(0.192546,0.003851,-0.004999,0.249950,0,0);-ms-transform:matrix(0.192546,0.003851,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.192546,0.003851,-0.004999,0.249950,0,0);}
.mea_c00366{transform:matrix(0.193004,0.005404,-0.006997,0.249902,0,0);-ms-transform:matrix(0.193004,0.005404,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.193004,0.005404,-0.006997,0.249902,0,0);}
.m147_c00366{transform:matrix(0.193491,0.002322,-0.003000,0.249982,0,0);-ms-transform:matrix(0.193491,0.002322,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.193491,0.002322,-0.003000,0.249982,0,0);}
.m36_c00366{transform:matrix(0.193636,0.003873,-0.004999,0.249950,0,0);-ms-transform:matrix(0.193636,0.003873,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.193636,0.003873,-0.004999,0.249950,0,0);}
.m63_c00366{transform:matrix(0.193966,0.003879,-0.004999,0.249950,0,0);-ms-transform:matrix(0.193966,0.003879,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.193966,0.003879,-0.004999,0.249950,0,0);}
.m86_c00366{transform:matrix(0.194311,0.003886,-0.004999,0.249950,0,0);-ms-transform:matrix(0.194311,0.003886,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.194311,0.003886,-0.004999,0.249950,0,0);}
.m10d_c00366{transform:matrix(0.194324,0.005441,-0.006997,0.249902,0,0);-ms-transform:matrix(0.194324,0.005441,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.194324,0.005441,-0.006997,0.249902,0,0);}
.mc3_c00366{transform:matrix(0.194826,0.003897,-0.004999,0.249950,0,0);-ms-transform:matrix(0.194826,0.003897,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.194826,0.003897,-0.004999,0.249950,0,0);}
.m83_c00366{transform:matrix(0.195006,0.003900,-0.004999,0.249950,0,0);-ms-transform:matrix(0.195006,0.003900,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.195006,0.003900,-0.004999,0.249950,0,0);}
.mca_c00366{transform:matrix(0.195276,0.003906,-0.004999,0.249950,0,0);-ms-transform:matrix(0.195276,0.003906,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.195276,0.003906,-0.004999,0.249950,0,0);}
.mc2_c00366{transform:matrix(0.195506,0.003910,-0.004999,0.249950,0,0);-ms-transform:matrix(0.195506,0.003910,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.195506,0.003910,-0.004999,0.249950,0,0);}
.m9a_c00366{transform:matrix(0.195536,0.003911,-0.004999,0.249950,0,0);-ms-transform:matrix(0.195536,0.003911,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.195536,0.003911,-0.004999,0.249950,0,0);}
.m116_c00366{transform:matrix(0.195708,0.005480,-0.006997,0.249902,0,0);-ms-transform:matrix(0.195708,0.005480,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.195708,0.005480,-0.006997,0.249902,0,0);}
.ma2_c00366{transform:matrix(0.196086,0.003922,-0.004999,0.249950,0,0);-ms-transform:matrix(0.196086,0.003922,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.196086,0.003922,-0.004999,0.249950,0,0);}
.m89_c00366{transform:matrix(0.197291,0.003946,-0.004999,0.249950,0,0);-ms-transform:matrix(0.197291,0.003946,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.197291,0.003946,-0.004999,0.249950,0,0);}
.mcd_c00366{transform:matrix(0.198335,0.003967,-0.004999,0.249950,0,0);-ms-transform:matrix(0.198335,0.003967,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.198335,0.003967,-0.004999,0.249950,0,0);}
.mbc_c00366{transform:matrix(0.198360,0.003967,-0.004999,0.249950,0,0);-ms-transform:matrix(0.198360,0.003967,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.198360,0.003967,-0.004999,0.249950,0,0);}
.m148_c00366{transform:matrix(0.198756,0.002385,-0.003000,0.249982,0,0);-ms-transform:matrix(0.198756,0.002385,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.198756,0.002385,-0.003000,0.249982,0,0);}
.maf_c00366{transform:matrix(0.198785,0.003976,-0.004999,0.249950,0,0);-ms-transform:matrix(0.198785,0.003976,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.198785,0.003976,-0.004999,0.249950,0,0);}
.m119_c00366{transform:matrix(0.198802,0.005566,-0.006997,0.249902,0,0);-ms-transform:matrix(0.198802,0.005566,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.198802,0.005566,-0.006997,0.249902,0,0);}
.m145_c00366{transform:matrix(0.199026,0.002388,-0.003000,0.249982,0,0);-ms-transform:matrix(0.199026,0.002388,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.199026,0.002388,-0.003000,0.249982,0,0);}
.me5_c00366{transform:matrix(0.199257,0.005579,-0.006997,0.249902,0,0);-ms-transform:matrix(0.199257,0.005579,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.199257,0.005579,-0.006997,0.249902,0,0);}
.m75_c00366{transform:matrix(0.199330,0.003987,-0.004999,0.249950,0,0);-ms-transform:matrix(0.199330,0.003987,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.199330,0.003987,-0.004999,0.249950,0,0);}
.m7d_c00366{transform:matrix(0.199565,0.003991,-0.004999,0.249950,0,0);-ms-transform:matrix(0.199565,0.003991,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.199565,0.003991,-0.004999,0.249950,0,0);}
.me7_c00366{transform:matrix(0.199642,0.005590,-0.006997,0.249902,0,0);-ms-transform:matrix(0.199642,0.005590,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.199642,0.005590,-0.006997,0.249902,0,0);}
.m144_c00366{transform:matrix(0.200011,0.002400,-0.003000,0.249982,0,0);-ms-transform:matrix(0.200011,0.002400,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.200011,0.002400,-0.003000,0.249982,0,0);}
.m37_c00366{transform:matrix(0.200120,0.004002,-0.004999,0.249950,0,0);-ms-transform:matrix(0.200120,0.004002,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.200120,0.004002,-0.004999,0.249950,0,0);}
.m10b_c00366{transform:matrix(0.200451,0.005613,-0.006997,0.249902,0,0);-ms-transform:matrix(0.200451,0.005613,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.200451,0.005613,-0.006997,0.249902,0,0);}
.m11d_c00366{transform:matrix(0.200736,0.005621,-0.006997,0.249902,0,0);-ms-transform:matrix(0.200736,0.005621,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.200736,0.005621,-0.006997,0.249902,0,0);}
.m142_c00366{transform:matrix(0.201121,0.002413,-0.003000,0.249982,0,0);-ms-transform:matrix(0.201121,0.002413,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.201121,0.002413,-0.003000,0.249982,0,0);}
.m149_c00366{transform:matrix(0.201231,0.002415,-0.003000,0.249982,0,0);-ms-transform:matrix(0.201231,0.002415,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.201231,0.002415,-0.003000,0.249982,0,0);}
.m14a_c00366{transform:matrix(0.201251,0.002415,-0.003000,0.249982,0,0);-ms-transform:matrix(0.201251,0.002415,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.201251,0.002415,-0.003000,0.249982,0,0);}
.mb0_c00366{transform:matrix(0.201455,0.004029,-0.004999,0.249950,0,0);-ms-transform:matrix(0.201455,0.004029,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.201455,0.004029,-0.004999,0.249950,0,0);}
.mc0_c00366{transform:matrix(0.201625,0.004032,-0.004999,0.249950,0,0);-ms-transform:matrix(0.201625,0.004032,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.201625,0.004032,-0.004999,0.249950,0,0);}
.m3d_c00366{transform:matrix(0.202290,0.004046,-0.004999,0.249950,0,0);-ms-transform:matrix(0.202290,0.004046,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.202290,0.004046,-0.004999,0.249950,0,0);}
.m61_c00366{transform:matrix(0.202460,0.004049,-0.004999,0.249950,0,0);-ms-transform:matrix(0.202460,0.004049,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.202460,0.004049,-0.004999,0.249950,0,0);}
.m66_c00366{transform:matrix(0.202500,0.004050,-0.004999,0.249950,0,0);-ms-transform:matrix(0.202500,0.004050,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.202500,0.004050,-0.004999,0.249950,0,0);}
.mb8_c00366{transform:matrix(0.203159,0.004063,-0.004999,0.249950,0,0);-ms-transform:matrix(0.203159,0.004063,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.203159,0.004063,-0.004999,0.249950,0,0);}
.mc6_c00366{transform:matrix(0.204224,0.004084,-0.004999,0.249950,0,0);-ms-transform:matrix(0.204224,0.004084,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.204224,0.004084,-0.004999,0.249950,0,0);}
.m117_c00366{transform:matrix(0.204460,0.005725,-0.006997,0.249902,0,0);-ms-transform:matrix(0.204460,0.005725,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.204460,0.005725,-0.006997,0.249902,0,0);}
.m113_c00366{transform:matrix(0.204515,0.005726,-0.006997,0.249902,0,0);-ms-transform:matrix(0.204515,0.005726,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.204515,0.005726,-0.006997,0.249902,0,0);}
.m106_c00366{transform:matrix(0.205150,0.005744,-0.006997,0.249902,0,0);-ms-transform:matrix(0.205150,0.005744,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.205150,0.005744,-0.006997,0.249902,0,0);}
.m59_c00366{transform:matrix(0.205449,0.004109,-0.004999,0.249950,0,0);-ms-transform:matrix(0.205449,0.004109,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.205449,0.004109,-0.004999,0.249950,0,0);}
.m7f_c00366{transform:matrix(0.205529,0.004111,-0.004999,0.249950,0,0);-ms-transform:matrix(0.205529,0.004111,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.205529,0.004111,-0.004999,0.249950,0,0);}
.m60_c00366{transform:matrix(0.205754,0.004115,-0.004999,0.249950,0,0);-ms-transform:matrix(0.205754,0.004115,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.205754,0.004115,-0.004999,0.249950,0,0);}
.mfc_c00366{transform:matrix(0.206014,0.005768,-0.006997,0.249902,0,0);-ms-transform:matrix(0.206014,0.005768,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.206014,0.005768,-0.006997,0.249902,0,0);}
.m109_c00366{transform:matrix(0.206149,0.005772,-0.006997,0.249902,0,0);-ms-transform:matrix(0.206149,0.005772,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.206149,0.005772,-0.006997,0.249902,0,0);}
.m7b_c00366{transform:matrix(0.206609,0.004132,-0.004999,0.249950,0,0);-ms-transform:matrix(0.206609,0.004132,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.206609,0.004132,-0.004999,0.249950,0,0);}
.m78_c00366{transform:matrix(0.206849,0.004137,-0.004999,0.249950,0,0);-ms-transform:matrix(0.206849,0.004137,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.206849,0.004137,-0.004999,0.249950,0,0);}
.m10e_c00366{transform:matrix(0.207054,0.005798,-0.006997,0.249902,0,0);-ms-transform:matrix(0.207054,0.005798,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.207054,0.005798,-0.006997,0.249902,0,0);}
.meb_c00366{transform:matrix(0.207159,0.005800,-0.006997,0.249902,0,0);-ms-transform:matrix(0.207159,0.005800,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.207159,0.005800,-0.006997,0.249902,0,0);}
.m11b_c00366{transform:matrix(0.207359,0.005806,-0.006997,0.249902,0,0);-ms-transform:matrix(0.207359,0.005806,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.207359,0.005806,-0.006997,0.249902,0,0);}
.m8a_c00366{transform:matrix(0.207384,0.004148,-0.004999,0.249950,0,0);-ms-transform:matrix(0.207384,0.004148,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.207384,0.004148,-0.004999,0.249950,0,0);}
.m84_c00366{transform:matrix(0.207404,0.004148,-0.004999,0.249950,0,0);-ms-transform:matrix(0.207404,0.004148,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.207404,0.004148,-0.004999,0.249950,0,0);}
.m104_c00366{transform:matrix(0.207934,0.005822,-0.006997,0.249902,0,0);-ms-transform:matrix(0.207934,0.005822,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.207934,0.005822,-0.006997,0.249902,0,0);}
.m46_c00366{transform:matrix(0.208058,0.004161,-0.004999,0.249950,0,0);-ms-transform:matrix(0.208058,0.004161,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.208058,0.004161,-0.004999,0.249950,0,0);}
.m76_c00366{transform:matrix(0.208308,0.004166,-0.004999,0.249950,0,0);-ms-transform:matrix(0.208308,0.004166,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.208308,0.004166,-0.004999,0.249950,0,0);}
.m3a_c00366{transform:matrix(0.208313,0.004166,-0.004999,0.249950,0,0);-ms-transform:matrix(0.208313,0.004166,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.208313,0.004166,-0.004999,0.249950,0,0);}
.m110_c00366{transform:matrix(0.208348,0.005834,-0.006997,0.249902,0,0);-ms-transform:matrix(0.208348,0.005834,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.208348,0.005834,-0.006997,0.249902,0,0);}
.m54_c00366{transform:matrix(0.208433,0.004169,-0.004999,0.249950,0,0);-ms-transform:matrix(0.208433,0.004169,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.208433,0.004169,-0.004999,0.249950,0,0);}
.mb4_c00366{transform:matrix(0.208563,0.004171,-0.004999,0.249950,0,0);-ms-transform:matrix(0.208563,0.004171,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.208563,0.004171,-0.004999,0.249950,0,0);}
.m4f_c00366{transform:matrix(0.209463,0.004189,-0.004999,0.249950,0,0);-ms-transform:matrix(0.209463,0.004189,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.209463,0.004189,-0.004999,0.249950,0,0);}
.m64_c00366{transform:matrix(0.209538,0.004191,-0.004999,0.249950,0,0);-ms-transform:matrix(0.209538,0.004191,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.209538,0.004191,-0.004999,0.249950,0,0);}
.mfe_c00366{transform:matrix(0.209853,0.005876,-0.006997,0.249902,0,0);-ms-transform:matrix(0.209853,0.005876,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.209853,0.005876,-0.006997,0.249902,0,0);}
.m112_c00366{transform:matrix(0.209968,0.005879,-0.006997,0.249902,0,0);-ms-transform:matrix(0.209968,0.005879,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.209968,0.005879,-0.006997,0.249902,0,0);}
.m81_c00366{transform:matrix(0.210238,0.004205,-0.004999,0.249950,0,0);-ms-transform:matrix(0.210238,0.004205,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.210238,0.004205,-0.004999,0.249950,0,0);}
.m5b_c00366{transform:matrix(0.211828,0.004237,-0.004999,0.249950,0,0);-ms-transform:matrix(0.211828,0.004237,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.211828,0.004237,-0.004999,0.249950,0,0);}
.m9f_c00366{transform:matrix(0.212143,0.004243,-0.004999,0.249950,0,0);-ms-transform:matrix(0.212143,0.004243,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.212143,0.004243,-0.004999,0.249950,0,0);}
.m7a_c00366{transform:matrix(0.212208,0.004244,-0.004999,0.249950,0,0);-ms-transform:matrix(0.212208,0.004244,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.212208,0.004244,-0.004999,0.249950,0,0);}
.md3_c00366{transform:matrix(0.212597,0.004252,-0.004999,0.249950,0,0);-ms-transform:matrix(0.212597,0.004252,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.212597,0.004252,-0.004999,0.249950,0,0);}
.m107_c00366{transform:matrix(0.212757,0.005957,-0.006997,0.249902,0,0);-ms-transform:matrix(0.212757,0.005957,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.212757,0.005957,-0.006997,0.249902,0,0);}
.mcc_c00366{transform:matrix(0.213267,0.004265,-0.004999,0.249950,0,0);-ms-transform:matrix(0.213267,0.004265,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.213267,0.004265,-0.004999,0.249950,0,0);}
.mac_c00366{transform:matrix(0.213342,0.004267,-0.004999,0.249950,0,0);-ms-transform:matrix(0.213342,0.004267,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.213342,0.004267,-0.004999,0.249950,0,0);}
.m80_c00366{transform:matrix(0.213422,0.004268,-0.004999,0.249950,0,0);-ms-transform:matrix(0.213422,0.004268,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.213422,0.004268,-0.004999,0.249950,0,0);}
.m57_c00366{transform:matrix(0.213592,0.004272,-0.004999,0.249950,0,0);-ms-transform:matrix(0.213592,0.004272,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.213592,0.004272,-0.004999,0.249950,0,0);}
.m95_c00366{transform:matrix(0.213677,0.004274,-0.004999,0.249950,0,0);-ms-transform:matrix(0.213677,0.004274,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.213677,0.004274,-0.004999,0.249950,0,0);}
.m4e_c00366{transform:matrix(0.215107,0.004302,-0.004999,0.249950,0,0);-ms-transform:matrix(0.215107,0.004302,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.215107,0.004302,-0.004999,0.249950,0,0);}
.ma7_c00366{transform:matrix(0.215642,0.004313,-0.004999,0.249950,0,0);-ms-transform:matrix(0.215642,0.004313,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.215642,0.004313,-0.004999,0.249950,0,0);}
.m79_c00366{transform:matrix(0.216617,0.004332,-0.004999,0.249950,0,0);-ms-transform:matrix(0.216617,0.004332,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.216617,0.004332,-0.004999,0.249950,0,0);}
.ma9_c00366{transform:matrix(0.216842,0.004337,-0.004999,0.249950,0,0);-ms-transform:matrix(0.216842,0.004337,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.216842,0.004337,-0.004999,0.249950,0,0);}
.mb5_c00366{transform:matrix(0.217072,0.004341,-0.004999,0.249950,0,0);-ms-transform:matrix(0.217072,0.004341,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.217072,0.004341,-0.004999,0.249950,0,0);}
.m13d_c00366{transform:matrix(0.217542,0.003481,-0.003999,0.249968,0,0);-ms-transform:matrix(0.217542,0.003481,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.217542,0.003481,-0.003999,0.249968,0,0);}
.mfa_c00366{transform:matrix(0.217770,0.006098,-0.006997,0.249902,0,0);-ms-transform:matrix(0.217770,0.006098,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.217770,0.006098,-0.006997,0.249902,0,0);}
.m9e_c00366{transform:matrix(0.217906,0.004358,-0.004999,0.249950,0,0);-ms-transform:matrix(0.217906,0.004358,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.217906,0.004358,-0.004999,0.249950,0,0);}
.md8_c00366{transform:matrix(0.219101,0.004382,-0.004999,0.249950,0,0);-ms-transform:matrix(0.219101,0.004382,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.219101,0.004382,-0.004999,0.249950,0,0);}
.me4_c00366{transform:matrix(0.219199,0.006138,-0.006997,0.249902,0,0);-ms-transform:matrix(0.219199,0.006138,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.219199,0.006138,-0.006997,0.249902,0,0);}
.ma8_c00366{transform:matrix(0.219641,0.004393,-0.004999,0.249950,0,0);-ms-transform:matrix(0.219641,0.004393,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.219641,0.004393,-0.004999,0.249950,0,0);}
.m128_c00366{transform:matrix(0.219824,0.006155,-0.006997,0.249902,0,0);-ms-transform:matrix(0.219824,0.006155,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.219824,0.006155,-0.006997,0.249902,0,0);}
.m8f_c00366{transform:matrix(0.221096,0.004422,-0.004999,0.249950,0,0);-ms-transform:matrix(0.221096,0.004422,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.221096,0.004422,-0.004999,0.249950,0,0);}
.md5_c00366{transform:matrix(0.221136,0.004423,-0.004999,0.249950,0,0);-ms-transform:matrix(0.221136,0.004423,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.221136,0.004423,-0.004999,0.249950,0,0);}
.m4a_c00366{transform:matrix(0.221161,0.004423,-0.004999,0.249950,0,0);-ms-transform:matrix(0.221161,0.004423,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.221161,0.004423,-0.004999,0.249950,0,0);}
.m9d_c00366{transform:matrix(0.221371,0.004427,-0.004999,0.249950,0,0);-ms-transform:matrix(0.221371,0.004427,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.221371,0.004427,-0.004999,0.249950,0,0);}
.me9_c00366{transform:matrix(0.221458,0.006201,-0.006997,0.249902,0,0);-ms-transform:matrix(0.221458,0.006201,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.221458,0.006201,-0.006997,0.249902,0,0);}
.m32_c00366{transform:matrix(0.221836,0.004437,-0.004999,0.249950,0,0);-ms-transform:matrix(0.221836,0.004437,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.221836,0.004437,-0.004999,0.249950,0,0);}
.mb1_c00366{transform:matrix(0.221916,0.004438,-0.004999,0.249950,0,0);-ms-transform:matrix(0.221916,0.004438,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.221916,0.004438,-0.004999,0.249950,0,0);}
.m111_c00366{transform:matrix(0.222028,0.006217,-0.006997,0.249902,0,0);-ms-transform:matrix(0.222028,0.006217,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.222028,0.006217,-0.006997,0.249902,0,0);}
.m94_c00366{transform:matrix(0.222446,0.004449,-0.004999,0.249950,0,0);-ms-transform:matrix(0.222446,0.004449,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.222446,0.004449,-0.004999,0.249950,0,0);}
.m21_c00366{transform:matrix(0.222456,0.004449,-0.004999,0.249950,0,0);-ms-transform:matrix(0.222456,0.004449,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.222456,0.004449,-0.004999,0.249950,0,0);}
.m82_c00366{transform:matrix(0.222660,0.004453,-0.004999,0.249950,0,0);-ms-transform:matrix(0.222660,0.004453,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.222660,0.004453,-0.004999,0.249950,0,0);}
.m58_c00366{transform:matrix(0.223220,0.004464,-0.004999,0.249950,0,0);-ms-transform:matrix(0.223220,0.004464,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.223220,0.004464,-0.004999,0.249950,0,0);}
.m6b_c00366{transform:matrix(0.223225,0.004465,-0.004999,0.249950,0,0);-ms-transform:matrix(0.223225,0.004465,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.223225,0.004465,-0.004999,0.249950,0,0);}
.m96_c00366{transform:matrix(0.223335,0.004467,-0.004999,0.249950,0,0);-ms-transform:matrix(0.223335,0.004467,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.223335,0.004467,-0.004999,0.249950,0,0);}
.m13e_c00366{transform:matrix(0.223351,0.003574,-0.003999,0.249968,0,0);-ms-transform:matrix(0.223351,0.003574,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.223351,0.003574,-0.003999,0.249968,0,0);}
.m121_c00366{transform:matrix(0.223797,0.006266,-0.006997,0.249902,0,0);-ms-transform:matrix(0.223797,0.006266,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.223797,0.006266,-0.006997,0.249902,0,0);}
.m92_c00366{transform:matrix(0.224035,0.004481,-0.004999,0.249950,0,0);-ms-transform:matrix(0.224035,0.004481,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.224035,0.004481,-0.004999,0.249950,0,0);}
.mae_c00366{transform:matrix(0.224175,0.004484,-0.004999,0.249950,0,0);-ms-transform:matrix(0.224175,0.004484,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.224175,0.004484,-0.004999,0.249950,0,0);}
.m100_c00366{transform:matrix(0.224252,0.006279,-0.006997,0.249902,0,0);-ms-transform:matrix(0.224252,0.006279,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.224252,0.006279,-0.006997,0.249902,0,0);}
.mb3_c00366{transform:matrix(0.224260,0.004485,-0.004999,0.249950,0,0);-ms-transform:matrix(0.224260,0.004485,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.224260,0.004485,-0.004999,0.249950,0,0);}
.m25_c00366{transform:matrix(0.224635,0.004493,-0.004999,0.249950,0,0);-ms-transform:matrix(0.224635,0.004493,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.224635,0.004493,-0.004999,0.249950,0,0);}
.m72_c00366{transform:matrix(0.224675,0.004494,-0.004999,0.249950,0,0);-ms-transform:matrix(0.224675,0.004494,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.224675,0.004494,-0.004999,0.249950,0,0);}
.mff_c00366{transform:matrix(0.225227,0.006306,-0.006997,0.249902,0,0);-ms-transform:matrix(0.225227,0.006306,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.225227,0.006306,-0.006997,0.249902,0,0);}
.m122_c00366{transform:matrix(0.225377,0.006311,-0.006997,0.249902,0,0);-ms-transform:matrix(0.225377,0.006311,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.225377,0.006311,-0.006997,0.249902,0,0);}
.m55_c00366{transform:matrix(0.225900,0.004518,-0.004999,0.249950,0,0);-ms-transform:matrix(0.225900,0.004518,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.225900,0.004518,-0.004999,0.249950,0,0);}
.m48_c00366{transform:matrix(0.226700,0.004534,-0.004999,0.249950,0,0);-ms-transform:matrix(0.226700,0.004534,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.226700,0.004534,-0.004999,0.249950,0,0);}
.m14b_c00366{transform:matrix(0.227204,0.002726,-0.003000,0.249982,0,0);-ms-transform:matrix(0.227204,0.002726,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.227204,0.002726,-0.003000,0.249982,0,0);}
.mb6_c00366{transform:matrix(0.227315,0.004546,-0.004999,0.249950,0,0);-ms-transform:matrix(0.227315,0.004546,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.227315,0.004546,-0.004999,0.249950,0,0);}
.mf5_c00366{transform:matrix(0.227341,0.006366,-0.006997,0.249902,0,0);-ms-transform:matrix(0.227341,0.006366,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.227341,0.006366,-0.006997,0.249902,0,0);}
.m141_c00366{transform:matrix(0.227511,0.003640,-0.003999,0.249968,0,0);-ms-transform:matrix(0.227511,0.003640,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.227511,0.003640,-0.003999,0.249968,0,0);}
.med_c00366{transform:matrix(0.227661,0.006375,-0.006997,0.249902,0,0);-ms-transform:matrix(0.227661,0.006375,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.227661,0.006375,-0.006997,0.249902,0,0);}
.mef_c00366{transform:matrix(0.228016,0.006384,-0.006997,0.249902,0,0);-ms-transform:matrix(0.228016,0.006384,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.228016,0.006384,-0.006997,0.249902,0,0);}
.ma0_c00366{transform:matrix(0.228124,0.004562,-0.004999,0.249950,0,0);-ms-transform:matrix(0.228124,0.004562,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.228124,0.004562,-0.004999,0.249950,0,0);}
.m9c_c00366{transform:matrix(0.229029,0.004581,-0.004999,0.249950,0,0);-ms-transform:matrix(0.229029,0.004581,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.229029,0.004581,-0.004999,0.249950,0,0);}
.m87_c00366{transform:matrix(0.229164,0.004583,-0.004999,0.249950,0,0);-ms-transform:matrix(0.229164,0.004583,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.229164,0.004583,-0.004999,0.249950,0,0);}
.m139_c00366{transform:matrix(0.230056,0.003681,-0.003999,0.249968,0,0);-ms-transform:matrix(0.230056,0.003681,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.230056,0.003681,-0.003999,0.249968,0,0);}
.m8_c00366{transform:matrix(0.230444,0.004609,-0.004999,0.249950,0,0);-ms-transform:matrix(0.230444,0.004609,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.230444,0.004609,-0.004999,0.249950,0,0);}
.mb7_c00366{transform:matrix(0.230554,0.004611,-0.004999,0.249950,0,0);-ms-transform:matrix(0.230554,0.004611,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.230554,0.004611,-0.004999,0.249950,0,0);}
.m140_c00366{transform:matrix(0.230605,0.003690,-0.003999,0.249968,0,0);-ms-transform:matrix(0.230605,0.003690,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.230605,0.003690,-0.003999,0.249968,0,0);}
.m99_c00366{transform:matrix(0.230919,0.004618,-0.004999,0.249950,0,0);-ms-transform:matrix(0.230919,0.004618,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.230919,0.004618,-0.004999,0.249950,0,0);}
.ma4_c00366{transform:matrix(0.230994,0.004620,-0.004999,0.249950,0,0);-ms-transform:matrix(0.230994,0.004620,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.230994,0.004620,-0.004999,0.249950,0,0);}
.m9b_c00366{transform:matrix(0.231319,0.004626,-0.004999,0.249950,0,0);-ms-transform:matrix(0.231319,0.004626,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.231319,0.004626,-0.004999,0.249950,0,0);}
.m2d_c00366{transform:matrix(0.231484,0.004630,-0.004999,0.249950,0,0);-ms-transform:matrix(0.231484,0.004630,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.231484,0.004630,-0.004999,0.249950,0,0);}
.md2_c00366{transform:matrix(0.231719,0.004634,-0.004999,0.249950,0,0);-ms-transform:matrix(0.231719,0.004634,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.231719,0.004634,-0.004999,0.249950,0,0);}
.m12b_c00366{transform:matrix(0.231969,0.006495,-0.006997,0.249902,0,0);-ms-transform:matrix(0.231969,0.006495,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.231969,0.006495,-0.006997,0.249902,0,0);}
.m85_c00366{transform:matrix(0.232459,0.004649,-0.004999,0.249950,0,0);-ms-transform:matrix(0.232459,0.004649,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.232459,0.004649,-0.004999,0.249950,0,0);}
.m2f_c00366{transform:matrix(0.232548,0.004651,-0.004999,0.249950,0,0);-ms-transform:matrix(0.232548,0.004651,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.232548,0.004651,-0.004999,0.249950,0,0);}
.m88_c00366{transform:matrix(0.233078,0.004662,-0.004999,0.249950,0,0);-ms-transform:matrix(0.233078,0.004662,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.233078,0.004662,-0.004999,0.249950,0,0);}
.ma3_c00366{transform:matrix(0.233313,0.004666,-0.004999,0.249950,0,0);-ms-transform:matrix(0.233313,0.004666,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.233313,0.004666,-0.004999,0.249950,0,0);}
.m97_c00366{transform:matrix(0.233328,0.004667,-0.004999,0.249950,0,0);-ms-transform:matrix(0.233328,0.004667,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.233328,0.004667,-0.004999,0.249950,0,0);}
.m8b_c00366{transform:matrix(0.233468,0.004669,-0.004999,0.249950,0,0);-ms-transform:matrix(0.233468,0.004669,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.233468,0.004669,-0.004999,0.249950,0,0);}
.m4d_c00366{transform:matrix(0.234178,0.004684,-0.004999,0.249950,0,0);-ms-transform:matrix(0.234178,0.004684,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.234178,0.004684,-0.004999,0.249950,0,0);}
.m124_c00366{transform:matrix(0.234228,0.006558,-0.006997,0.249902,0,0);-ms-transform:matrix(0.234228,0.006558,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.234228,0.006558,-0.006997,0.249902,0,0);}
.m5d_c00366{transform:matrix(0.234573,0.004691,-0.004999,0.249950,0,0);-ms-transform:matrix(0.234573,0.004691,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.234573,0.004691,-0.004999,0.249950,0,0);}
.m8d_c00366{transform:matrix(0.234803,0.004696,-0.004999,0.249950,0,0);-ms-transform:matrix(0.234803,0.004696,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.234803,0.004696,-0.004999,0.249950,0,0);}
.md0_c00366{transform:matrix(0.235773,0.004715,-0.004999,0.249950,0,0);-ms-transform:matrix(0.235773,0.004715,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.235773,0.004715,-0.004999,0.249950,0,0);}
.m52_c00366{transform:matrix(0.236073,0.004721,-0.004999,0.249950,0,0);-ms-transform:matrix(0.236073,0.004721,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.236073,0.004721,-0.004999,0.249950,0,0);}
.mdd_c00366{transform:matrix(0.236398,0.004728,-0.004999,0.249950,0,0);-ms-transform:matrix(0.236398,0.004728,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.236398,0.004728,-0.004999,0.249950,0,0);}
.ma1_c00366{transform:matrix(0.236563,0.004731,-0.004999,0.249950,0,0);-ms-transform:matrix(0.236563,0.004731,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.236563,0.004731,-0.004999,0.249950,0,0);}
.mad_c00366{transform:matrix(0.236788,0.004736,-0.004999,0.249950,0,0);-ms-transform:matrix(0.236788,0.004736,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.236788,0.004736,-0.004999,0.249950,0,0);}
.m13_c00366{transform:matrix(0.236858,0.004737,-0.004999,0.249950,0,0);-ms-transform:matrix(0.236858,0.004737,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.236858,0.004737,-0.004999,0.249950,0,0);}
.m125_c00366{transform:matrix(0.237237,0.006643,-0.006997,0.249902,0,0);-ms-transform:matrix(0.237237,0.006643,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.237237,0.006643,-0.006997,0.249902,0,0);}
.mb2_c00366{transform:matrix(0.237438,0.004749,-0.004999,0.249950,0,0);-ms-transform:matrix(0.237438,0.004749,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.237438,0.004749,-0.004999,0.249950,0,0);}
.mee_c00366{transform:matrix(0.237447,0.006649,-0.006997,0.249902,0,0);-ms-transform:matrix(0.237447,0.006649,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.237447,0.006649,-0.006997,0.249902,0,0);}
.m5c_c00366{transform:matrix(0.237542,0.004751,-0.004999,0.249950,0,0);-ms-transform:matrix(0.237542,0.004751,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.237542,0.004751,-0.004999,0.249950,0,0);}
.m30_c00366{transform:matrix(0.237927,0.004759,-0.004999,0.249950,0,0);-ms-transform:matrix(0.237927,0.004759,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.237927,0.004759,-0.004999,0.249950,0,0);}
.mfb_c00366{transform:matrix(0.239296,0.006700,-0.006997,0.249902,0,0);-ms-transform:matrix(0.239296,0.006700,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.239296,0.006700,-0.006997,0.249902,0,0);}
.m44_c00366{transform:matrix(0.239517,0.004790,-0.004999,0.249950,0,0);-ms-transform:matrix(0.239517,0.004790,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.239517,0.004790,-0.004999,0.249950,0,0);}
.m5a_c00366{transform:matrix(0.239697,0.004794,-0.004999,0.249950,0,0);-ms-transform:matrix(0.239697,0.004794,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.239697,0.004794,-0.004999,0.249950,0,0);}
.m127_c00366{transform:matrix(0.240576,0.006736,-0.006997,0.249902,0,0);-ms-transform:matrix(0.240576,0.006736,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.240576,0.006736,-0.006997,0.249902,0,0);}
.maa_c00366{transform:matrix(0.240627,0.004813,-0.004999,0.249950,0,0);-ms-transform:matrix(0.240627,0.004813,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.240627,0.004813,-0.004999,0.249950,0,0);}
.mab_c00366{transform:matrix(0.240782,0.004816,-0.004999,0.249950,0,0);-ms-transform:matrix(0.240782,0.004816,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.240782,0.004816,-0.004999,0.249950,0,0);}
.m120_c00366{transform:matrix(0.241026,0.006749,-0.006997,0.249902,0,0);-ms-transform:matrix(0.241026,0.006749,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.241026,0.006749,-0.006997,0.249902,0,0);}
.m53_c00366{transform:matrix(0.241072,0.004821,-0.004999,0.249950,0,0);-ms-transform:matrix(0.241072,0.004821,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.241072,0.004821,-0.004999,0.249950,0,0);}
.md1_c00366{transform:matrix(0.241142,0.004823,-0.004999,0.249950,0,0);-ms-transform:matrix(0.241142,0.004823,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.241142,0.004823,-0.004999,0.249950,0,0);}
.ma6_c00366{transform:matrix(0.241212,0.004824,-0.004999,0.249950,0,0);-ms-transform:matrix(0.241212,0.004824,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.241212,0.004824,-0.004999,0.249950,0,0);}
.mf0_c00366{transform:matrix(0.241425,0.006760,-0.006997,0.249902,0,0);-ms-transform:matrix(0.241425,0.006760,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.241425,0.006760,-0.006997,0.249902,0,0);}
.m31_c00366{transform:matrix(0.241592,0.004832,-0.004999,0.249950,0,0);-ms-transform:matrix(0.241592,0.004832,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.241592,0.004832,-0.004999,0.249950,0,0);}
.md4_c00366{transform:matrix(0.241982,0.004840,-0.004999,0.249950,0,0);-ms-transform:matrix(0.241982,0.004840,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.241982,0.004840,-0.004999,0.249950,0,0);}
.m8e_c00366{transform:matrix(0.242157,0.004843,-0.004999,0.249950,0,0);-ms-transform:matrix(0.242157,0.004843,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.242157,0.004843,-0.004999,0.249950,0,0);}
.m27_c00366{transform:matrix(0.242467,0.004849,-0.004999,0.249950,0,0);-ms-transform:matrix(0.242467,0.004849,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.242467,0.004849,-0.004999,0.249950,0,0);}
.m103_c00366{transform:matrix(0.242925,0.006802,-0.006997,0.249902,0,0);-ms-transform:matrix(0.242925,0.006802,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.242925,0.006802,-0.006997,0.249902,0,0);}
.m23_c00366{transform:matrix(0.244426,0.004889,-0.004999,0.249950,0,0);-ms-transform:matrix(0.244426,0.004889,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.244426,0.004889,-0.004999,0.249950,0,0);}
.md7_c00366{transform:matrix(0.244821,0.004896,-0.004999,0.249950,0,0);-ms-transform:matrix(0.244821,0.004896,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.244821,0.004896,-0.004999,0.249950,0,0);}
.mf8_c00366{transform:matrix(0.245119,0.006863,-0.006997,0.249902,0,0);-ms-transform:matrix(0.245119,0.006863,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.245119,0.006863,-0.006997,0.249902,0,0);}
.m13b_c00366{transform:matrix(0.245319,0.003925,-0.003999,0.249968,0,0);-ms-transform:matrix(0.245319,0.003925,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.245319,0.003925,-0.003999,0.249968,0,0);}
.m2b_c00366{transform:matrix(0.246211,0.004924,-0.004999,0.249950,0,0);-ms-transform:matrix(0.246211,0.004924,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.246211,0.004924,-0.004999,0.249950,0,0);}
.md9_c00366{transform:matrix(0.247575,0.004952,-0.004999,0.249950,0,0);-ms-transform:matrix(0.247575,0.004952,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.247575,0.004952,-0.004999,0.249950,0,0);}
.m18_c00366{transform:matrix(0.247840,0.004957,-0.004999,0.249950,0,0);-ms-transform:matrix(0.247840,0.004957,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.247840,0.004957,-0.004999,0.249950,0,0);}
.m6c_c00366{transform:matrix(0.247885,0.004958,-0.004999,0.249950,0,0);-ms-transform:matrix(0.247885,0.004958,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.247885,0.004958,-0.004999,0.249950,0,0);}
.m12a_c00366{transform:matrix(0.248448,0.006957,-0.006997,0.249902,0,0);-ms-transform:matrix(0.248448,0.006957,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.248448,0.006957,-0.006997,0.249902,0,0);}
.m126_c00366{transform:matrix(0.248648,0.006962,-0.006997,0.249902,0,0);-ms-transform:matrix(0.248648,0.006962,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.248648,0.006962,-0.006997,0.249902,0,0);}
.mfd_c00366{transform:matrix(0.248653,0.006962,-0.006997,0.249902,0,0);-ms-transform:matrix(0.248653,0.006962,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.248653,0.006962,-0.006997,0.249902,0,0);}
.m74_c00366{transform:matrix(0.248900,0.004978,-0.004999,0.249950,0,0);-ms-transform:matrix(0.248900,0.004978,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.248900,0.004978,-0.004999,0.249950,0,0);}
.m105_c00366{transform:matrix(0.249897,0.006997,-0.006997,0.249902,0,0);-ms-transform:matrix(0.249897,0.006997,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.249897,0.006997,-0.006997,0.249902,0,0);}
.m6e_c00366{transform:matrix(0.250105,0.005002,-0.004999,0.249950,0,0);-ms-transform:matrix(0.250105,0.005002,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.250105,0.005002,-0.004999,0.249950,0,0);}
.m56_c00366{transform:matrix(0.250195,0.005004,-0.004999,0.249950,0,0);-ms-transform:matrix(0.250195,0.005004,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.250195,0.005004,-0.004999,0.249950,0,0);}
.mdc_c00366{transform:matrix(0.250640,0.005013,-0.004999,0.249950,0,0);-ms-transform:matrix(0.250640,0.005013,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.250640,0.005013,-0.004999,0.249950,0,0);}
.m13c_c00366{transform:matrix(0.250703,0.004011,-0.003999,0.249968,0,0);-ms-transform:matrix(0.250703,0.004011,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.250703,0.004011,-0.003999,0.249968,0,0);}
.mb9_c00366{transform:matrix(0.251285,0.005026,-0.004999,0.249950,0,0);-ms-transform:matrix(0.251285,0.005026,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.251285,0.005026,-0.004999,0.249950,0,0);}
.m129_c00366{transform:matrix(0.251441,0.007040,-0.006997,0.249902,0,0);-ms-transform:matrix(0.251441,0.007040,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.251441,0.007040,-0.006997,0.249902,0,0);}
.m91_c00366{transform:matrix(0.251620,0.005032,-0.004999,0.249950,0,0);-ms-transform:matrix(0.251620,0.005032,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.251620,0.005032,-0.004999,0.249950,0,0);}
.mba_c00366{transform:matrix(0.251770,0.005035,-0.004999,0.249950,0,0);-ms-transform:matrix(0.251770,0.005035,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.251770,0.005035,-0.004999,0.249950,0,0);}
.m101_c00366{transform:matrix(0.252021,0.007057,-0.006997,0.249902,0,0);-ms-transform:matrix(0.252021,0.007057,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.252021,0.007057,-0.006997,0.249902,0,0);}
.m34_c00366{transform:matrix(0.252205,0.005044,-0.004999,0.249950,0,0);-ms-transform:matrix(0.252205,0.005044,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.252205,0.005044,-0.004999,0.249950,0,0);}
.mf3_c00366{transform:matrix(0.252256,0.007063,-0.006997,0.249902,0,0);-ms-transform:matrix(0.252256,0.007063,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.252256,0.007063,-0.006997,0.249902,0,0);}
.m70_c00366{transform:matrix(0.252539,0.005051,-0.004999,0.249950,0,0);-ms-transform:matrix(0.252539,0.005051,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.252539,0.005051,-0.004999,0.249950,0,0);}
.mce_c00366{transform:matrix(0.253104,0.005062,-0.004999,0.249950,0,0);-ms-transform:matrix(0.253104,0.005062,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.253104,0.005062,-0.004999,0.249950,0,0);}
.m29_c00366{transform:matrix(0.253549,0.005071,-0.004999,0.249950,0,0);-ms-transform:matrix(0.253549,0.005071,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.253549,0.005071,-0.004999,0.249950,0,0);}
.m93_c00366{transform:matrix(0.253729,0.005075,-0.004999,0.249950,0,0);-ms-transform:matrix(0.253729,0.005075,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.253729,0.005075,-0.004999,0.249950,0,0);}
.m11f_c00366{transform:matrix(0.254220,0.007118,-0.006997,0.249902,0,0);-ms-transform:matrix(0.254220,0.007118,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.254220,0.007118,-0.006997,0.249902,0,0);}
.m35_c00366{transform:matrix(0.254954,0.005099,-0.004999,0.249950,0,0);-ms-transform:matrix(0.254954,0.005099,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.254954,0.005099,-0.004999,0.249950,0,0);}
.m69_c00366{transform:matrix(0.254979,0.005100,-0.004999,0.249950,0,0);-ms-transform:matrix(0.254979,0.005100,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.254979,0.005100,-0.004999,0.249950,0,0);}
.mcf_c00366{transform:matrix(0.255334,0.005107,-0.004999,0.249950,0,0);-ms-transform:matrix(0.255334,0.005107,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.255334,0.005107,-0.004999,0.249950,0,0);}
.m4_c00366{transform:matrix(0.255676,0.006136,-0.005998,0.249928,0,0);-ms-transform:matrix(0.255676,0.006136,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.255676,0.006136,-0.005998,0.249928,0,0);}
.m2_c00366{transform:matrix(0.256551,0.006157,-0.005998,0.249928,0,0);-ms-transform:matrix(0.256551,0.006157,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.256551,0.006157,-0.005998,0.249928,0,0);}
.m102_c00366{transform:matrix(0.256614,0.007185,-0.006997,0.249902,0,0);-ms-transform:matrix(0.256614,0.007185,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.256614,0.007185,-0.006997,0.249902,0,0);}
.m2a_c00366{transform:matrix(0.257149,0.005143,-0.004999,0.249950,0,0);-ms-transform:matrix(0.257149,0.005143,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.257149,0.005143,-0.004999,0.249950,0,0);}
.mf6_c00366{transform:matrix(0.257969,0.007223,-0.006997,0.249902,0,0);-ms-transform:matrix(0.257969,0.007223,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.257969,0.007223,-0.006997,0.249902,0,0);}
.m4b_c00366{transform:matrix(0.258128,0.005163,-0.004999,0.249950,0,0);-ms-transform:matrix(0.258128,0.005163,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.258128,0.005163,-0.004999,0.249950,0,0);}
.m45_c00366{transform:matrix(0.259063,0.005181,-0.004999,0.249950,0,0);-ms-transform:matrix(0.259063,0.005181,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.259063,0.005181,-0.004999,0.249950,0,0);}
.m90_c00366{transform:matrix(0.259318,0.005186,-0.004999,0.249950,0,0);-ms-transform:matrix(0.259318,0.005186,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.259318,0.005186,-0.004999,0.249950,0,0);}
.m33_c00366{transform:matrix(0.259973,0.005199,-0.004999,0.249950,0,0);-ms-transform:matrix(0.259973,0.005199,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.259973,0.005199,-0.004999,0.249950,0,0);}
.m123_c00366{transform:matrix(0.260068,0.007282,-0.006997,0.249902,0,0);-ms-transform:matrix(0.260068,0.007282,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.260068,0.007282,-0.006997,0.249902,0,0);}
.mf1_c00366{transform:matrix(0.261842,0.007332,-0.006997,0.249902,0,0);-ms-transform:matrix(0.261842,0.007332,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.261842,0.007332,-0.006997,0.249902,0,0);}
.mf4_c00366{transform:matrix(0.264511,0.007406,-0.006997,0.249902,0,0);-ms-transform:matrix(0.264511,0.007406,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.264511,0.007406,-0.006997,0.249902,0,0);}
.m6a_c00366{transform:matrix(0.264562,0.005291,-0.004999,0.249950,0,0);-ms-transform:matrix(0.264562,0.005291,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.264562,0.005291,-0.004999,0.249950,0,0);}
.m1_c00366{transform:matrix(0.264849,0.006356,-0.005998,0.249928,0,0);-ms-transform:matrix(0.264849,0.006356,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.264849,0.006356,-0.005998,0.249928,0,0);}
.me0_c00366{transform:matrix(0.265377,0.005308,-0.004999,0.249950,0,0);-ms-transform:matrix(0.265377,0.005308,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.265377,0.005308,-0.004999,0.249950,0,0);}
.mf2_c00366{transform:matrix(0.265481,0.007433,-0.006997,0.249902,0,0);-ms-transform:matrix(0.265481,0.007433,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.265481,0.007433,-0.006997,0.249902,0,0);}
.m24_c00366{transform:matrix(0.265522,0.005310,-0.004999,0.249950,0,0);-ms-transform:matrix(0.265522,0.005310,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.265522,0.005310,-0.004999,0.249950,0,0);}
.m6f_c00366{transform:matrix(0.266197,0.005324,-0.004999,0.249950,0,0);-ms-transform:matrix(0.266197,0.005324,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.266197,0.005324,-0.004999,0.249950,0,0);}
.m4c_c00366{transform:matrix(0.266467,0.005329,-0.004999,0.249950,0,0);-ms-transform:matrix(0.266467,0.005329,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.266467,0.005329,-0.004999,0.249950,0,0);}
.m20_c00366{transform:matrix(0.267202,0.005344,-0.004999,0.249950,0,0);-ms-transform:matrix(0.267202,0.005344,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.267202,0.005344,-0.004999,0.249950,0,0);}
.ma_c00366{transform:matrix(0.267536,0.005351,-0.004999,0.249950,0,0);-ms-transform:matrix(0.267536,0.005351,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.267536,0.005351,-0.004999,0.249950,0,0);}
.m71_c00366{transform:matrix(0.267856,0.005357,-0.004999,0.249950,0,0);-ms-transform:matrix(0.267856,0.005357,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.267856,0.005357,-0.004999,0.249950,0,0);}
.m0_c00366{transform:matrix(0.268048,0.006433,-0.005998,0.249928,0,0);-ms-transform:matrix(0.268048,0.006433,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.268048,0.006433,-0.005998,0.249928,0,0);}
.md6_c00366{transform:matrix(0.269216,0.005384,-0.004999,0.249950,0,0);-ms-transform:matrix(0.269216,0.005384,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.269216,0.005384,-0.004999,0.249950,0,0);}
.m47_c00366{transform:matrix(0.270171,0.005403,-0.004999,0.249950,0,0);-ms-transform:matrix(0.270171,0.005403,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.270171,0.005403,-0.004999,0.249950,0,0);}
.m43_c00366{transform:matrix(0.271841,0.005437,-0.004999,0.249950,0,0);-ms-transform:matrix(0.271841,0.005437,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.271841,0.005437,-0.004999,0.249950,0,0);}
.m2e_c00366{transform:matrix(0.272061,0.005441,-0.004999,0.249950,0,0);-ms-transform:matrix(0.272061,0.005441,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.272061,0.005441,-0.004999,0.249950,0,0);}
.mde_c00366{transform:matrix(0.272610,0.005452,-0.004999,0.249950,0,0);-ms-transform:matrix(0.272610,0.005452,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.272610,0.005452,-0.004999,0.249950,0,0);}
.m49_c00366{transform:matrix(0.272985,0.005460,-0.004999,0.249950,0,0);-ms-transform:matrix(0.272985,0.005460,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.272985,0.005460,-0.004999,0.249950,0,0);}
.m130_c00366{transform:matrix(0.273321,-0.004646,0.004249,0.249964,0,0);-ms-transform:matrix(0.273321,-0.004646,0.004249,0.249964,0,0);-webkit-transform:matrix(0.273321,-0.004646,0.004249,0.249964,0,0);}
.m6d_c00366{transform:matrix(0.274630,0.005493,-0.004999,0.249950,0,0);-ms-transform:matrix(0.274630,0.005493,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.274630,0.005493,-0.004999,0.249950,0,0);}
.m28_c00366{transform:matrix(0.275315,0.005506,-0.004999,0.249950,0,0);-ms-transform:matrix(0.275315,0.005506,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.275315,0.005506,-0.004999,0.249950,0,0);}
.m22_c00366{transform:matrix(0.276155,0.005523,-0.004999,0.249950,0,0);-ms-transform:matrix(0.276155,0.005523,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.276155,0.005523,-0.004999,0.249950,0,0);}
.mf9_c00366{transform:matrix(0.277596,0.007773,-0.006997,0.249902,0,0);-ms-transform:matrix(0.277596,0.007773,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.277596,0.007773,-0.006997,0.249902,0,0);}
.m2c_c00366{transform:matrix(0.277744,0.005555,-0.004999,0.249950,0,0);-ms-transform:matrix(0.277744,0.005555,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.277744,0.005555,-0.004999,0.249950,0,0);}
.mda_c00366{transform:matrix(0.280554,0.005611,-0.004999,0.249950,0,0);-ms-transform:matrix(0.280554,0.005611,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.280554,0.005611,-0.004999,0.249950,0,0);}
.mdf_c00366{transform:matrix(0.280699,0.005614,-0.004999,0.249950,0,0);-ms-transform:matrix(0.280699,0.005614,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.280699,0.005614,-0.004999,0.249950,0,0);}
.mdb_c00366{transform:matrix(0.281119,0.005622,-0.004999,0.249950,0,0);-ms-transform:matrix(0.281119,0.005622,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.281119,0.005622,-0.004999,0.249950,0,0);}
.m73_c00366{transform:matrix(0.281689,0.005634,-0.004999,0.249950,0,0);-ms-transform:matrix(0.281689,0.005634,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.281689,0.005634,-0.004999,0.249950,0,0);}
.mf7_c00366{transform:matrix(0.281860,0.007892,-0.006997,0.249902,0,0);-ms-transform:matrix(0.281860,0.007892,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.281860,0.007892,-0.006997,0.249902,0,0);}
.m26_c00366{transform:matrix(0.282099,0.005642,-0.004999,0.249950,0,0);-ms-transform:matrix(0.282099,0.005642,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.282099,0.005642,-0.004999,0.249950,0,0);}
.m51_c00366{transform:matrix(0.283303,0.005666,-0.004999,0.249950,0,0);-ms-transform:matrix(0.283303,0.005666,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.283303,0.005666,-0.004999,0.249950,0,0);}
.md_c00366{transform:matrix(0.292826,0.005857,-0.004999,0.249950,0,0);-ms-transform:matrix(0.292826,0.005857,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.292826,0.005857,-0.004999,0.249950,0,0);}
.m15_c00366{transform:matrix(0.301625,0.006032,-0.004999,0.249950,0,0);-ms-transform:matrix(0.301625,0.006032,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.301625,0.006032,-0.004999,0.249950,0,0);}
.mf_c00366{transform:matrix(0.301810,0.006036,-0.004999,0.249950,0,0);-ms-transform:matrix(0.301810,0.006036,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.301810,0.006036,-0.004999,0.249950,0,0);}
.m136_c00366{transform:matrix(0.309670,-0.005264,0.004249,0.249964,0,0);-ms-transform:matrix(0.309670,-0.005264,0.004249,0.249964,0,0);-webkit-transform:matrix(0.309670,-0.005264,0.004249,0.249964,0,0);}
.m1c_c00366{transform:matrix(0.313942,0.006279,-0.004999,0.249950,0,0);-ms-transform:matrix(0.313942,0.006279,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.313942,0.006279,-0.004999,0.249950,0,0);}
.m134_c00366{transform:matrix(0.318929,-0.005422,0.004249,0.249964,0,0);-ms-transform:matrix(0.318929,-0.005422,0.004249,0.249964,0,0);-webkit-transform:matrix(0.318929,-0.005422,0.004249,0.249964,0,0);}
.me_c00366{transform:matrix(0.323045,0.006461,-0.004999,0.249950,0,0);-ms-transform:matrix(0.323045,0.006461,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.323045,0.006461,-0.004999,0.249950,0,0);}
.m1a_c00366{transform:matrix(0.324520,0.006490,-0.004999,0.249950,0,0);-ms-transform:matrix(0.324520,0.006490,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.324520,0.006490,-0.004999,0.249950,0,0);}
.m133_c00366{transform:matrix(0.325393,-0.005532,0.004249,0.249964,0,0);-ms-transform:matrix(0.325393,-0.005532,0.004249,0.249964,0,0);-webkit-transform:matrix(0.325393,-0.005532,0.004249,0.249964,0,0);}
.m9_c00366{transform:matrix(0.326325,0.006526,-0.004999,0.249950,0,0);-ms-transform:matrix(0.326325,0.006526,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.326325,0.006526,-0.004999,0.249950,0,0);}
.m135_c00366{transform:matrix(0.331047,-0.005628,0.004249,0.249964,0,0);-ms-transform:matrix(0.331047,-0.005628,0.004249,0.249964,0,0);-webkit-transform:matrix(0.331047,-0.005628,0.004249,0.249964,0,0);}
.ma5_c00366{transform:matrix(0.342072,0.006841,-0.004999,0.249950,0,0);-ms-transform:matrix(0.342072,0.006841,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.342072,0.006841,-0.004999,0.249950,0,0);}
.m131_c00366{transform:matrix(0.342181,-0.005817,0.004249,0.249964,0,0);-ms-transform:matrix(0.342181,-0.005817,0.004249,0.249964,0,0);-webkit-transform:matrix(0.342181,-0.005817,0.004249,0.249964,0,0);}
.m137_c00366{transform:matrix(0.345050,-0.005866,0.004249,0.249964,0,0);-ms-transform:matrix(0.345050,-0.005866,0.004249,0.249964,0,0);-webkit-transform:matrix(0.345050,-0.005866,0.004249,0.249964,0,0);}
.m12f_c00366{transform:matrix(0.346505,-0.005891,0.004249,0.249964,0,0);-ms-transform:matrix(0.346505,-0.005891,0.004249,0.249964,0,0);-webkit-transform:matrix(0.346505,-0.005891,0.004249,0.249964,0,0);}
.m132_c00366{transform:matrix(0.351069,-0.005968,0.004249,0.249964,0,0);-ms-transform:matrix(0.351069,-0.005968,0.004249,0.249964,0,0);-webkit-transform:matrix(0.351069,-0.005968,0.004249,0.249964,0,0);}
.m138_c00366{transform:matrix(0.367412,-0.006246,0.004249,0.249964,0,0);-ms-transform:matrix(0.367412,-0.006246,0.004249,0.249964,0,0);-webkit-transform:matrix(0.367412,-0.006246,0.004249,0.249964,0,0);}
.m50_c00366{transform:matrix(0.371381,0.007428,-0.004999,0.249950,0,0);-ms-transform:matrix(0.371381,0.007428,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.371381,0.007428,-0.004999,0.249950,0,0);}
.mc_c00366{transform:matrix(0.377944,0.007559,-0.004999,0.249950,0,0);-ms-transform:matrix(0.377944,0.007559,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.377944,0.007559,-0.004999,0.249950,0,0);}
.mb_c00366{transform:matrix(0.396911,0.007938,-0.004999,0.249950,0,0);-ms-transform:matrix(0.396911,0.007938,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.396911,0.007938,-0.004999,0.249950,0,0);}
.m1b_c00366{transform:matrix(0.402165,0.008043,-0.004999,0.249950,0,0);-ms-transform:matrix(0.402165,0.008043,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.402165,0.008043,-0.004999,0.249950,0,0);}
.m6_c00366{transform:matrix(0.410283,0.008206,-0.004999,0.249950,0,0);-ms-transform:matrix(0.410283,0.008206,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.410283,0.008206,-0.004999,0.249950,0,0);}
.m17_c00366{transform:matrix(0.413922,0.008278,-0.004999,0.249950,0,0);-ms-transform:matrix(0.413922,0.008278,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.413922,0.008278,-0.004999,0.249950,0,0);}
.m14_c00366{transform:matrix(0.418786,0.008376,-0.004999,0.249950,0,0);-ms-transform:matrix(0.418786,0.008376,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.418786,0.008376,-0.004999,0.249950,0,0);}
.m10_c00366{transform:matrix(0.431309,0.008626,-0.004999,0.249950,0,0);-ms-transform:matrix(0.431309,0.008626,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.431309,0.008626,-0.004999,0.249950,0,0);}
.m16_c00366{transform:matrix(0.439232,0.008785,-0.004999,0.249950,0,0);-ms-transform:matrix(0.439232,0.008785,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.439232,0.008785,-0.004999,0.249950,0,0);}
.m19_c00366{transform:matrix(0.452679,0.009054,-0.004999,0.249950,0,0);-ms-transform:matrix(0.452679,0.009054,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.452679,0.009054,-0.004999,0.249950,0,0);}
.m5_c00366{transform:matrix(0.484053,0.009681,-0.004999,0.249950,0,0);-ms-transform:matrix(0.484053,0.009681,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.484053,0.009681,-0.004999,0.249950,0,0);}
.m12_c00366{transform:matrix(0.488267,0.009765,-0.004999,0.249950,0,0);-ms-transform:matrix(0.488267,0.009765,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.488267,0.009765,-0.004999,0.249950,0,0);}
.m7_c00366{transform:matrix(0.509733,0.010195,-0.004999,0.249950,0,0);-ms-transform:matrix(0.509733,0.010195,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.509733,0.010195,-0.004999,0.249950,0,0);}
.m1e_c00366{transform:matrix(0.578699,0.011574,-0.004999,0.249950,0,0);-ms-transform:matrix(0.578699,0.011574,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.578699,0.011574,-0.004999,0.249950,0,0);}
.m1f_c00366{transform:matrix(0.603244,0.012065,-0.004999,0.249950,0,0);-ms-transform:matrix(0.603244,0.012065,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.603244,0.012065,-0.004999,0.249950,0,0);}
.m12e_c00366{transform:matrix(0.792366,-0.013470,0.004249,0.249964,0,0);-ms-transform:matrix(0.792366,-0.013470,0.004249,0.249964,0,0);-webkit-transform:matrix(0.792366,-0.013470,0.004249,0.249964,0,0);}
.m12d_c00366{transform:matrix(0.942419,-0.016021,0.004249,0.249964,0,0);-ms-transform:matrix(0.942419,-0.016021,0.004249,0.249964,0,0);-webkit-transform:matrix(0.942419,-0.016021,0.004249,0.249964,0,0);}
.m12c_c00366{transform:matrix(1.257518,-0.021378,0.004249,0.249964,0,0);-ms-transform:matrix(1.257518,-0.021378,0.004249,0.249964,0,0);-webkit-transform:matrix(1.257518,-0.021378,0.004249,0.249964,0,0);}
.m11_c00366{transform:matrix(2.959883,0.059198,-0.004999,0.249950,0,0);-ms-transform:matrix(2.959883,0.059198,-0.004999,0.249950,0,0);-webkit-transform:matrix(2.959883,0.059198,-0.004999,0.249950,0,0);}
.v0_c00366{vertical-align:0.000000px;}
.ls0_c00366{letter-spacing:0.000000px;}
.sc__c00366{text-shadow:none;}
.sc0_c00366{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__c00366{-webkit-text-stroke:0px transparent;}
.sc0_c00366{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00366{word-spacing:0.000000px;}
._0_c00366{width:1.566262px;}
._1_c00366{width:15.911803px;}
.fc0_c00366{color:transparent;}
.fs1_c00366{font-size:18.003600px;}
.fsb_c00366{font-size:36.005202px;}
.fsc_c00366{font-size:54.007802px;}
.fsf_c00366{font-size:66.004752px;}
.fs2_c00366{font-size:72.014399px;}
.fs0_c00366{font-size:72.020733px;}
.fs8_c00366{font-size:72.028218px;}
.fsd_c00366{font-size:78.009983px;}
.fs4_c00366{font-size:78.015598px;}
.fs9_c00366{font-size:78.030570px;}
.fs6_c00366{font-size:84.016798px;}
.fse_c00366{font-size:90.006480px;}
.fs5_c00366{font-size:90.017998px;}
.fs7_c00366{font-size:90.035273px;}
.fs3_c00366{font-size:96.019198px;}
.fsa_c00366{font-size:96.037625px;}
.y0_c00366{bottom:0.000000px;}
.y156_c00366{bottom:125.278080px;}
.y155_c00366{bottom:145.166298px;}
.y154_c00366{bottom:145.685094px;}
.y153_c00366{bottom:146.356044px;}
.y152_c00366{bottom:146.884434px;}
.y151_c00366{bottom:147.415956px;}
.y150_c00366{bottom:148.595550px;}
.y14f_c00366{bottom:150.020304px;}
.y14e_c00366{bottom:150.294318px;}
.y14d_c00366{bottom:150.661500px;}
.y14c_c00366{bottom:183.256476px;}
.y14b_c00366{bottom:184.138188px;}
.y14a_c00366{bottom:184.455756px;}
.y149_c00366{bottom:185.024292px;}
.y148_c00366{bottom:185.733036px;}
.y147_c00366{bottom:187.495932px;}
.y146_c00366{bottom:189.214668px;}
.y145_c00366{bottom:189.578580px;}
.y144_c00366{bottom:190.081500px;}
.y143_c00366{bottom:215.990938px;}
.y142_c00366{bottom:216.525183px;}
.y141_c00366{bottom:216.788831px;}
.y140_c00366{bottom:216.968835px;}
.y13f_c00366{bottom:217.232355px;}
.y13e_c00366{bottom:217.586672px;}
.y13d_c00366{bottom:218.196276px;}
.y13c_c00366{bottom:218.804635px;}
.y13b_c00366{bottom:218.974300px;}
.y13a_c00366{bottom:219.237463px;}
.y137_c00366{bottom:252.705000px;}
.y138_c00366{bottom:254.122723px;}
.y139_c00366{bottom:255.077698px;}
.y136_c00366{bottom:269.605332px;}
.y135_c00366{bottom:270.601512px;}
.y134_c00366{bottom:271.606686px;}
.y133_c00366{bottom:272.092554px;}
.y132_c00366{bottom:272.448918px;}
.y131_c00366{bottom:273.596208px;}
.y130_c00366{bottom:274.414332px;}
.y12f_c00366{bottom:275.106252px;}
.y12e_c00366{bottom:276.922602px;}
.y12d_c00366{bottom:277.586988px;}
.y12c_c00366{bottom:278.245920px;}
.y12b_c00366{bottom:278.581602px;}
.y12a_c00366{bottom:280.190208px;}
.y129_c00366{bottom:308.813784px;}
.y128_c00366{bottom:310.482138px;}
.y127_c00366{bottom:311.168616px;}
.y126_c00366{bottom:313.053636px;}
.y125_c00366{bottom:313.983048px;}
.y124_c00366{bottom:315.152718px;}
.y123_c00366{bottom:316.303818px;}
.y122_c00366{bottom:318.159240px;}
.y121_c00366{bottom:319.548276px;}
.y120_c00366{bottom:320.245446px;}
.y11f_c00366{bottom:320.935662px;}
.y11e_c00366{bottom:323.408154px;}
.y11d_c00366{bottom:342.743562px;}
.y11c_c00366{bottom:344.994024px;}
.y11b_c00366{bottom:346.391406px;}
.y11a_c00366{bottom:347.222538px;}
.y119_c00366{bottom:348.864252px;}
.y118_c00366{bottom:349.709214px;}
.y117_c00366{bottom:350.560992px;}
.y116_c00366{bottom:351.396504px;}
.y115_c00366{bottom:351.963666px;}
.y114_c00366{bottom:353.000382px;}
.y113_c00366{bottom:354.679722px;}
.y112_c00366{bottom:355.495764px;}
.y111_c00366{bottom:357.704220px;}
.y110_c00366{bottom:359.870136px;}
.y10f_c00366{bottom:379.347762px;}
.y10e_c00366{bottom:379.960032px;}
.y10d_c00366{bottom:380.972520px;}
.y10c_c00366{bottom:382.790964px;}
.y10b_c00366{bottom:384.182598px;}
.y10a_c00366{bottom:384.974286px;}
.y109_c00366{bottom:385.568328px;}
.y108_c00366{bottom:386.156172px;}
.y107_c00366{bottom:388.143960px;}
.y106_c00366{bottom:388.726278px;}
.y105_c00366{bottom:390.091332px;}
.y104_c00366{bottom:390.663606px;}
.y103_c00366{bottom:419.065032px;}
.y102_c00366{bottom:420.139686px;}
.y101_c00366{bottom:423.363450px;}
.y100_c00366{bottom:424.699986px;}
.yff_c00366{bottom:425.465196px;}
.yfe_c00366{bottom:426.807246px;}
.yfd_c00366{bottom:428.103540px;}
.yfc_c00366{bottom:429.956952px;}
.yfb_c00366{bottom:431.568876px;}
.yfa_c00366{bottom:432.320916px;}
.yf9_c00366{bottom:433.094664px;}
.yf8_c00366{bottom:433.878294px;}
.yf7_c00366{bottom:453.353526px;}
.yf6_c00366{bottom:454.251948px;}
.yf5_c00366{bottom:455.835390px;}
.yf4_c00366{bottom:456.757752px;}
.yf3_c00366{bottom:459.874656px;}
.yf2_c00366{bottom:460.797270px;}
.yf1_c00366{bottom:461.418870px;}
.yf0_c00366{bottom:462.376302px;}
.yef_c00366{bottom:463.920474px;}
.yee_c00366{bottom:466.990128px;}
.yed_c00366{bottom:467.919000px;}
.yec_c00366{bottom:494.098560px;}
.yeb_c00366{bottom:494.099250px;}
.yea_c00366{bottom:524.069220px;}
.ye9_c00366{bottom:526.097220px;}
.ye8_c00366{bottom:527.671410px;}
.ye7_c00366{bottom:528.285180px;}
.ye6_c00366{bottom:529.086840px;}
.ye5_c00366{bottom:531.284670px;}
.ye4_c00366{bottom:533.471850px;}
.ye3_c00366{bottom:534.437400px;}
.ye2_c00366{bottom:534.999720px;}
.ye1_c00366{bottom:535.572930px;}
.ye0_c00366{bottom:562.725900px;}
.ydf_c00366{bottom:563.426550px;}
.yde_c00366{bottom:565.107240px;}
.ydd_c00366{bottom:565.913520px;}
.ydc_c00366{bottom:566.935260px;}
.ydb_c00366{bottom:568.414860px;}
.yda_c00366{bottom:569.088060px;}
.yd9_c00366{bottom:570.477510px;}
.yd8_c00366{bottom:570.903120px;}
.yd7_c00366{bottom:571.394370px;}
.yd6_c00366{bottom:572.370840px;}
.yd5_c00366{bottom:572.839470px;}
.yd4_c00366{bottom:596.108040px;}
.yd3_c00366{bottom:596.618940px;}
.yd2_c00366{bottom:597.163350px;}
.yd1_c00366{bottom:597.694590px;}
.yd0_c00366{bottom:598.772160px;}
.ycf_c00366{bottom:599.649390px;}
.yce_c00366{bottom:600.180690px;}
.ycd_c00366{bottom:601.256700px;}
.ycc_c00366{bottom:601.623870px;}
.ycb_c00366{bottom:602.277720px;}
.yca_c00366{bottom:603.374370px;}
.yc9_c00366{bottom:603.896910px;}
.yc8_c00366{bottom:604.595670px;}
.yc7_c00366{bottom:605.291040px;}
.yc6_c00366{bottom:606.326160px;}
.yc5_c00366{bottom:630.075600px;}
.yc4_c00366{bottom:630.560550px;}
.yc3_c00366{bottom:631.052700px;}
.yc2_c00366{bottom:631.487010px;}
.yc1_c00366{bottom:632.565120px;}
.yc0_c00366{bottom:633.503520px;}
.ybf_c00366{bottom:634.278600px;}
.ybe_c00366{bottom:634.747590px;}
.ybd_c00366{bottom:635.844300px;}
.ybc_c00366{bottom:637.376220px;}
.ybb_c00366{bottom:638.299080px;}
.yba_c00366{bottom:638.759130px;}
.yb9_c00366{bottom:639.352110px;}
.yb8_c00366{bottom:639.812760px;}
.yb7_c00366{bottom:666.990780px;}
.yb6_c00366{bottom:668.571120px;}
.yb5_c00366{bottom:669.573570px;}
.yb4_c00366{bottom:672.152070px;}
.yb3_c00366{bottom:674.948160px;}
.yb2_c00366{bottom:675.468510px;}
.yb1_c00366{bottom:676.494630px;}
.yb0_c00366{bottom:677.966340px;}
.yaf_c00366{bottom:680.508960px;}
.yae_c00366{bottom:681.235650px;}
.yad_c00366{bottom:682.259730px;}
.yac_c00366{bottom:702.777210px;}
.yab_c00366{bottom:703.866840px;}
.yaa_c00366{bottom:704.380710px;}
.ya9_c00366{bottom:705.824250px;}
.ya8_c00366{bottom:706.892070px;}
.ya7_c00366{bottom:707.419200px;}
.ya6_c00366{bottom:708.292860px;}
.ya5_c00366{bottom:708.663240px;}
.ya4_c00366{bottom:709.728390px;}
.ya3_c00366{bottom:711.114450px;}
.ya2_c00366{bottom:711.653940px;}
.ya1_c00366{bottom:713.027070px;}
.ya0_c00366{bottom:713.535120px;}
.y9f_c00366{bottom:742.368990px;}
.y9e_c00366{bottom:742.369140px;}
.y9d_c00366{bottom:742.369620px;}
.y9c_c00366{bottom:742.370340px;}
.y9a_c00366{bottom:742.370760px;}
.y99_c00366{bottom:742.371060px;}
.y9b_c00366{bottom:742.371180px;}
.y98_c00366{bottom:742.371420px;}
.y97_c00366{bottom:742.372140px;}
.y96_c00366{bottom:742.372650px;}
.y95_c00366{bottom:774.760530px;}
.y94_c00366{bottom:775.584660px;}
.y93_c00366{bottom:776.415270px;}
.y92_c00366{bottom:778.622850px;}
.y91_c00366{bottom:779.486730px;}
.y90_c00366{bottom:780.310590px;}
.y8f_c00366{bottom:782.794980px;}
.y8e_c00366{bottom:785.056110px;}
.y8d_c00366{bottom:785.852250px;}
.y8c_c00366{bottom:788.321790px;}
.y8b_c00366{bottom:789.400290px;}
.y8a_c00366{bottom:790.223190px;}
.y89_c00366{bottom:791.318070px;}
.y88_c00366{bottom:810.907170px;}
.y87_c00366{bottom:811.501590px;}
.y86_c00366{bottom:811.909890px;}
.y85_c00366{bottom:812.104980px;}
.y84_c00366{bottom:812.435580px;}
.y83_c00366{bottom:812.638020px;}
.y82_c00366{bottom:812.779050px;}
.y81_c00366{bottom:813.175440px;}
.y80_c00366{bottom:813.695700px;}
.y7f_c00366{bottom:814.032330px;}
.y7e_c00366{bottom:814.224750px;}
.y7d_c00366{bottom:814.554150px;}
.y7c_c00366{bottom:814.809000px;}
.y7b_c00366{bottom:847.687800px;}
.y7a_c00366{bottom:848.242230px;}
.y79_c00366{bottom:848.408340px;}
.y78_c00366{bottom:848.800650px;}
.y77_c00366{bottom:848.912640px;}
.y76_c00366{bottom:849.293940px;}
.y75_c00366{bottom:849.410280px;}
.y74_c00366{bottom:849.900780px;}
.y73_c00366{bottom:850.120890px;}
.y72_c00366{bottom:850.287900px;}
.y71_c00366{bottom:850.673940px;}
.y70_c00366{bottom:850.995870px;}
.y6f_c00366{bottom:882.330360px;}
.y6e_c00366{bottom:882.832050px;}
.y6d_c00366{bottom:884.496900px;}
.y6c_c00366{bottom:885.155910px;}
.y6b_c00366{bottom:887.000070px;}
.y6a_c00366{bottom:887.997420px;}
.y69_c00366{bottom:888.499560px;}
.y68_c00366{bottom:889.649130px;}
.y67_c00366{bottom:891.301560px;}
.y66_c00366{bottom:891.783180px;}
.y65_c00366{bottom:892.584270px;}
.y64_c00366{bottom:919.490310px;}
.y63_c00366{bottom:920.152080px;}
.y62_c00366{bottom:920.554560px;}
.y61_c00366{bottom:921.341940px;}
.y60_c00366{bottom:921.757140px;}
.y5f_c00366{bottom:922.016910px;}
.y5e_c00366{bottom:922.427490px;}
.y5d_c00366{bottom:923.483880px;}
.y5c_c00366{bottom:924.021690px;}
.y5b_c00366{bottom:924.407280px;}
.y5a_c00366{bottom:924.695970px;}
.y59_c00366{bottom:925.344690px;}
.y58_c00366{bottom:925.710660px;}
.y57_c00366{bottom:926.511570px;}
.y56_c00366{bottom:926.912670px;}
.y55_c00366{bottom:927.420990px;}
.y54_c00366{bottom:952.547640px;}
.y53_c00366{bottom:953.302110px;}
.y52_c00366{bottom:954.262110px;}
.y51_c00366{bottom:954.636510px;}
.y50_c00366{bottom:955.736280px;}
.y4f_c00366{bottom:956.102100px;}
.y4e_c00366{bottom:956.966970px;}
.y4d_c00366{bottom:957.317310px;}
.y4c_c00366{bottom:957.817020px;}
.y4b_c00366{bottom:958.298130px;}
.y4a_c00366{bottom:959.831550px;}
.y49_c00366{bottom:987.801870px;}
.y48_c00366{bottom:988.204980px;}
.y47_c00366{bottom:988.603800px;}
.y46_c00366{bottom:989.397420px;}
.y45_c00366{bottom:989.806560px;}
.y44_c00366{bottom:990.204540px;}
.y43_c00366{bottom:991.533240px;}
.y42_c00366{bottom:992.060340px;}
.y41_c00366{bottom:992.462160px;}
.y40_c00366{bottom:993.785070px;}
.y3f_c00366{bottom:994.190010px;}
.y3e_c00366{bottom:994.585320px;}
.y3d_c00366{bottom:995.380170px;}
.y3c_c00366{bottom:996.018120px;}
.y3b_c00366{bottom:1024.011240px;}
.y3a_c00366{bottom:1024.229700px;}
.y39_c00366{bottom:1024.721250px;}
.y38_c00366{bottom:1025.017020px;}
.y37_c00366{bottom:1025.422290px;}
.y36_c00366{bottom:1025.725560px;}
.y35_c00366{bottom:1026.022410px;}
.y34_c00366{bottom:1026.814500px;}
.y33_c00366{bottom:1027.120860px;}
.y32_c00366{bottom:1028.115060px;}
.y31_c00366{bottom:1028.608140px;}
.y30_c00366{bottom:1029.198120px;}
.y2f_c00366{bottom:1029.771930px;}
.y2e_c00366{bottom:1060.854330px;}
.y2d_c00366{bottom:1061.760600px;}
.y2c_c00366{bottom:1063.743840px;}
.y2b_c00366{bottom:1064.397870px;}
.y2a_c00366{bottom:1065.769830px;}
.y29_c00366{bottom:1066.643580px;}
.y28_c00366{bottom:1068.832200px;}
.y27_c00366{bottom:1069.484160px;}
.y26_c00366{bottom:1070.824500px;}
.y25_c00366{bottom:1127.844720px;}
.y24_c00366{bottom:1127.999190px;}
.y23_c00366{bottom:1128.210060px;}
.y22_c00366{bottom:1128.458970px;}
.y21_c00366{bottom:1128.673920px;}
.y20_c00366{bottom:1128.901440px;}
.y1f_c00366{bottom:1129.312380px;}
.y1e_c00366{bottom:1129.507050px;}
.y1d_c00366{bottom:1129.732620px;}
.y1c_c00366{bottom:1129.932690px;}
.y1b_c00366{bottom:1130.112660px;}
.y1a_c00366{bottom:1130.369100px;}
.y19_c00366{bottom:1130.563770px;}
.y18_c00366{bottom:1130.778540px;}
.y17_c00366{bottom:1130.989410px;}
.y13_c00366{bottom:1131.034920px;}
.y16_c00366{bottom:1131.409620px;}
.y12_c00366{bottom:1131.474390px;}
.y15_c00366{bottom:1131.624390px;}
.y11_c00366{bottom:1131.688500px;}
.y14_c00366{bottom:1131.860760px;}
.y10_c00366{bottom:1131.915360px;}
.yf_c00366{bottom:1132.133040px;}
.ye_c00366{bottom:1132.564980px;}
.yd_c00366{bottom:1132.797120px;}
.yc_c00366{bottom:1133.023860px;}
.yb_c00366{bottom:1133.239830px;}
.ya_c00366{bottom:1133.671740px;}
.y9_c00366{bottom:1133.914680px;}
.y8_c00366{bottom:1134.281820px;}
.y7_c00366{bottom:1134.562560px;}
.y6_c00366{bottom:1134.832500px;}
.y5_c00366{bottom:1141.110912px;}
.y4_c00366{bottom:1141.650876px;}
.y3_c00366{bottom:1142.977548px;}
.y2_c00366{bottom:1145.608932px;}
.y1_c00366{bottom:1147.507500px;}
.h3_c00366{height:18.003600px;}
.h4_c00366{height:18.051609px;}
.hf_c00366{height:36.005202px;}
.h10_c00366{height:54.007802px;}
.h13_c00366{height:66.004752px;}
.h5_c00366{height:72.014399px;}
.h2_c00366{height:72.020733px;}
.hb_c00366{height:72.028218px;}
.h11_c00366{height:78.009983px;}
.h7_c00366{height:78.015598px;}
.hc_c00366{height:78.030570px;}
.h9_c00366{height:84.016798px;}
.h12_c00366{height:90.006480px;}
.h8_c00366{height:90.017998px;}
.ha_c00366{height:90.035273px;}
.hd_c00366{height:90.293374px;}
.h6_c00366{height:96.019198px;}
.he_c00366{height:96.037625px;}
.h0_c00366{height:1251.450000px;}
.h1_c00366{height:1251.750000px;}
.w0_c00366{width:915.000000px;}
.x0_c00366{left:0.000000px;}
.xca_c00366{left:132.168000px;}
.x9b_c00366{left:134.707410px;}
.xa3_c00366{left:136.823268px;}
.x77_c00366{left:138.896790px;}
.x62_c00366{left:140.735820px;}
.x51_c00366{left:141.914370px;}
.x2d_c00366{left:143.726880px;}
.x21_c00366{left:145.111740px;}
.xcb_c00366{left:167.327914px;}
.xa4_c00366{left:169.474422px;}
.x8e_c00366{left:170.707110px;}
.x6e_c00366{left:173.383680px;}
.x5a_c00366{left:184.288770px;}
.x3e_c00366{left:186.184800px;}
.xcc_c00366{left:188.591941px;}
.x2e_c00366{left:196.857870px;}
.x95_c00366{left:202.508460px;}
.x86_c00366{left:203.868510px;}
.x52_c00366{left:206.180130px;}
.x22_c00366{left:208.841250px;}
.x78_c00366{left:215.030730px;}
.x63_c00366{left:217.417140px;}
.x3f_c00366{left:219.595140px;}
.xb1_c00366{left:222.654804px;}
.x4a_c00366{left:228.745380px;}
.xa5_c00366{left:233.027520px;}
.x8f_c00366{left:235.812120px;}
.x6a_c00366{left:237.867630px;}
.x5b_c00366{left:239.099100px;}
.xc4_c00366{left:242.174898px;}
.x9c_c00366{left:245.121000px;}
.x7e_c00366{left:247.869000px;}
.x19_c00366{left:252.747000px;}
.xbd_c00366{left:254.349420px;}
.x96_c00366{left:256.188120px;}
.x6f_c00366{left:259.222050px;}
.x64_c00366{left:260.537820px;}
.x2f_c00366{left:263.085960px;}
.xc5_c00366{left:264.564546px;}
.x90_c00366{left:268.552890px;}
.x5c_c00366{left:271.229100px;}
.x23_c00366{left:274.429680px;}
.xac_c00366{left:277.219194px;}
.x9d_c00366{left:278.295000px;}
.x6b_c00366{left:281.346000px;}
.x36_c00366{left:284.153430px;}
.x40_c00366{left:286.276290px;}
.x87_c00366{left:291.057000px;}
.x70_c00366{left:292.949250px;}
.x30_c00366{left:295.981710px;}
.xa6_c00366{left:300.193038px;}
.xc6_c00366{left:308.524548px;}
.xb2_c00366{left:310.964196px;}
.x1_c00366{left:312.889500px;}
.x41_c00366{left:316.804680px;}
.x1a_c00366{left:319.764000px;}
.x88_c00366{left:323.711610px;}
.x6_c00366{left:325.806000px;}
.x37_c00366{left:327.866790px;}
.x24_c00366{left:329.245740px;}
.x11_c00366{left:336.619290px;}
.x7_c00366{left:339.843000px;}
.xcd_c00366{left:340.864635px;}
.xb3_c00366{left:343.593426px;}
.x1b_c00366{left:352.362000px;}
.x8_c00366{left:358.200000px;}
.x65_c00366{left:359.329950px;}
.x53_c00366{left:360.909540px;}
.x9_c00366{left:370.347000px;}
.x38_c00366{left:373.260450px;}
.x97_c00366{left:377.701980px;}
.x71_c00366{left:379.584180px;}
.x12_c00366{left:381.162690px;}
.xce_c00366{left:385.158954px;}
.xbe_c00366{left:386.586834px;}
.x9e_c00366{left:387.925500px;}
.x79_c00366{left:389.561760px;}
.x2_c00366{left:391.996500px;}
.x42_c00366{left:394.887660px;}
.xa_c00366{left:402.741000px;}
.x13_c00366{left:404.918670px;}
.xd1_c00366{left:406.680000px;}
.xb4_c00366{left:410.754054px;}
.xb_c00366{left:414.078000px;}
.x4b_c00366{left:415.589070px;}
.xcf_c00366{left:418.112954px;}
.xad_c00366{left:420.353262px;}
.x7f_c00366{left:423.129000px;}
.xc_c00366{left:425.685000px;}
.x43_c00366{left:426.997290px;}
.xa7_c00366{left:431.447238px;}
.x89_c00366{left:433.145370px;}
.x7a_c00366{left:434.190090px;}
.x14_c00366{left:436.774800px;}
.x25_c00366{left:439.730040px;}
.x9f_c00366{left:443.074500px;}
.x72_c00366{left:446.121990px;}
.xd_c00366{left:447.282000px;}
.x4c_c00366{left:449.024400px;}
.xd2_c00366{left:450.976500px;}
.xb5_c00366{left:452.229540px;}
.xae_c00366{left:453.364002px;}
.x7b_c00366{left:456.831240px;}
.xe_c00366{left:458.166000px;}
.x1c_c00366{left:461.793000px;}
.xf_c00366{left:469.509000px;}
.x44_c00366{left:471.819960px;}
.x26_c00366{left:473.730510px;}
.xb6_c00366{left:474.897930px;}
.xa0_c00366{left:477.268500px;}
.x10_c00366{left:480.214500px;}
.x54_c00366{left:482.187900px;}
.x39_c00366{left:483.690810px;}
.xa8_c00366{left:487.365996px;}
.x15_c00366{left:491.954910px;}
.xd4_c00366{left:494.751000px;}
.xaf_c00366{left:497.347308px;}
.x98_c00366{left:499.823370px;}
.x3_c00366{left:501.637500px;}
.x5d_c00366{left:503.759700px;}
.x16_c00366{left:505.075680px;}
.xd3_c00366{left:506.358000px;}
.xb7_c00366{left:508.329744px;}
.x17_c00366{left:516.144390px;}
.x31_c00366{left:517.430640px;}
.xa9_c00366{left:519.252066px;}
.x18_c00366{left:524.243040px;}
.xbf_c00366{left:529.776390px;}
.x91_c00366{left:533.047320px;}
.x80_c00366{left:534.952410px;}
.x5e_c00366{left:537.516150px;}
.xd0_c00366{left:540.200346px;}
.xb8_c00366{left:542.396100px;}
.x99_c00366{left:544.333140px;}
.xd5_c00366{left:550.663500px;}
.x4_c00366{left:556.915500px;}
.x55_c00366{left:558.350730px;}
.x45_c00366{left:559.903560px;}
.x27_c00366{left:561.804390px;}
.x6c_c00366{left:569.494200px;}
.x1d_c00366{left:574.078500px;}
.xb9_c00366{left:576.165414px;}
.x7c_c00366{left:578.403450px;}
.x5_c00366{left:579.414000px;}
.x56_c00366{left:580.756950px;}
.xc0_c00366{left:585.489810px;}
.x81_c00366{left:590.288040px;}
.x5f_c00366{left:592.611570px;}
.x28_c00366{left:594.729120px;}
.x92_c00366{left:601.166130px;}
.x1e_c00366{left:606.780000px;}
.x8a_c00366{left:611.370120px;}
.x66_c00366{left:613.980510px;}
.x46_c00366{left:615.780000px;}
.x3a_c00366{left:616.844250px;}
.x73_c00366{left:623.560680px;}
.x60_c00366{left:625.025130px;}
.x29_c00366{left:628.500060px;}
.xc1_c00366{left:629.727462px;}
.x4d_c00366{left:638.443830px;}
.xba_c00366{left:641.821416px;}
.xa1_c00366{left:643.737000px;}
.x67_c00366{left:648.546060px;}
.x3b_c00366{left:650.870370px;}
.x93_c00366{left:654.910500px;}
.x82_c00366{left:657.316080px;}
.x57_c00366{left:659.346030px;}
.x32_c00366{left:661.387680px;}
.x9a_c00366{left:665.886000px;}
.x2a_c00366{left:673.598490px;}
.xbb_c00366{left:675.043188px;}
.xa2_c00366{left:676.678500px;}
.x8b_c00366{left:678.678990px;}
.x4e_c00366{left:682.423740px;}
.x6d_c00366{left:691.288890px;}
.x58_c00366{left:692.561490px;}
.x33_c00366{left:695.425110px;}
.x1f_c00366{left:705.942000px;}
.xc7_c00366{left:707.341158px;}
.xaa_c00366{left:709.248318px;}
.x8c_c00366{left:711.843630px;}
.x74_c00366{left:713.744880px;}
.x47_c00366{left:715.975020px;}
.xc2_c00366{left:719.460018px;}
.xb0_c00366{left:731.897412px;}
.x7d_c00366{left:734.116620px;}
.x68_c00366{left:736.866240px;}
.x3c_c00366{left:738.111060px;}
.x75_c00366{left:745.890960px;}
.x48_c00366{left:749.454360px;}
.x20_c00366{left:751.255500px;}
.xab_c00366{left:754.008816px;}
.x2b_c00366{left:761.133750px;}
.x83_c00366{left:765.350040px;}
.x94_c00366{left:767.006220px;}
.x69_c00366{left:770.068410px;}
.xc8_c00366{left:774.336018px;}
.x8d_c00366{left:777.814410px;}
.x2c_c00366{left:785.412090px;}
.x61_c00366{left:792.207930px;}
.x4f_c00366{left:793.427340px;}
.x34_c00366{left:794.813010px;}
.x84_c00366{left:800.461740px;}
.x59_c00366{left:803.566290px;}
.x49_c00366{left:804.601680px;}
.x3d_c00366{left:806.746920px;}
.x76_c00366{left:813.952890px;}
.xbc_c00366{left:820.978452px;}
.x50_c00366{left:826.915200px;}
.x35_c00366{left:828.398880px;}
.xc3_c00366{left:831.600984px;}
.x85_c00366{left:835.138410px;}
.xc9_c00366{left:840.795210px;}
@media print{
.v0_c00366{vertical-align:0.000000pt;}
.ls0_c00366{letter-spacing:0.000000pt;}
.ws0_c00366{word-spacing:0.000000pt;}
._0_c00366{width:1.392233pt;}
._1_c00366{width:14.143825pt;}
.fs1_c00366{font-size:16.003200pt;}
.fsb_c00366{font-size:32.004624pt;}
.fsc_c00366{font-size:48.006935pt;}
.fsf_c00366{font-size:58.670891pt;}
.fs2_c00366{font-size:64.012799pt;}
.fs0_c00366{font-size:64.018429pt;}
.fs8_c00366{font-size:64.025083pt;}
.fsd_c00366{font-size:69.342207pt;}
.fs4_c00366{font-size:69.347199pt;}
.fs9_c00366{font-size:69.360507pt;}
.fs6_c00366{font-size:74.681599pt;}
.fse_c00366{font-size:80.005760pt;}
.fs5_c00366{font-size:80.015998pt;}
.fs7_c00366{font-size:80.031354pt;}
.fs3_c00366{font-size:85.350398pt;}
.fsa_c00366{font-size:85.366777pt;}
.y0_c00366{bottom:0.000000pt;}
.y156_c00366{bottom:111.358293pt;}
.y155_c00366{bottom:129.036709pt;}
.y154_c00366{bottom:129.497861pt;}
.y153_c00366{bottom:130.094261pt;}
.y152_c00366{bottom:130.563941pt;}
.y151_c00366{bottom:131.036405pt;}
.y150_c00366{bottom:132.084933pt;}
.y14f_c00366{bottom:133.351381pt;}
.y14e_c00366{bottom:133.594949pt;}
.y14d_c00366{bottom:133.921333pt;}
.y14c_c00366{bottom:162.894645pt;}
.y14b_c00366{bottom:163.678389pt;}
.y14a_c00366{bottom:163.960672pt;}
.y149_c00366{bottom:164.466037pt;}
.y148_c00366{bottom:165.096032pt;}
.y147_c00366{bottom:166.663051pt;}
.y146_c00366{bottom:168.190816pt;}
.y145_c00366{bottom:168.514293pt;}
.y144_c00366{bottom:168.961333pt;}
.y143_c00366{bottom:191.991945pt;}
.y142_c00366{bottom:192.466829pt;}
.y141_c00366{bottom:192.701183pt;}
.y140_c00366{bottom:192.861187pt;}
.y13f_c00366{bottom:193.095427pt;}
.y13e_c00366{bottom:193.410375pt;}
.y13d_c00366{bottom:193.952245pt;}
.y13c_c00366{bottom:194.493009pt;}
.y13b_c00366{bottom:194.643823pt;}
.y13a_c00366{bottom:194.877745pt;}
.y137_c00366{bottom:224.626667pt;}
.y138_c00366{bottom:225.886865pt;}
.y139_c00366{bottom:226.735732pt;}
.y136_c00366{bottom:239.649184pt;}
.y135_c00366{bottom:240.534677pt;}
.y134_c00366{bottom:241.428165pt;}
.y133_c00366{bottom:241.860048pt;}
.y132_c00366{bottom:242.176816pt;}
.y131_c00366{bottom:243.196629pt;}
.y130_c00366{bottom:243.923851pt;}
.y12f_c00366{bottom:244.538891pt;}
.y12e_c00366{bottom:246.153424pt;}
.y12d_c00366{bottom:246.743989pt;}
.y12c_c00366{bottom:247.329707pt;}
.y12b_c00366{bottom:247.628091pt;}
.y12a_c00366{bottom:249.057963pt;}
.y129_c00366{bottom:274.501141pt;}
.y128_c00366{bottom:275.984123pt;}
.y127_c00366{bottom:276.594325pt;}
.y126_c00366{bottom:278.269899pt;}
.y125_c00366{bottom:279.096043pt;}
.y124_c00366{bottom:280.135749pt;}
.y123_c00366{bottom:281.158949pt;}
.y122_c00366{bottom:282.808213pt;}
.y121_c00366{bottom:284.042912pt;}
.y120_c00366{bottom:284.662619pt;}
.y11f_c00366{bottom:285.276144pt;}
.y11e_c00366{bottom:287.473915pt;}
.y11d_c00366{bottom:304.660944pt;}
.y11c_c00366{bottom:306.661355pt;}
.y11b_c00366{bottom:307.903472pt;}
.y11a_c00366{bottom:308.642256pt;}
.y119_c00366{bottom:310.101557pt;}
.y118_c00366{bottom:310.852635pt;}
.y117_c00366{bottom:311.609771pt;}
.y116_c00366{bottom:312.352448pt;}
.y115_c00366{bottom:312.856592pt;}
.y114_c00366{bottom:313.778117pt;}
.y113_c00366{bottom:315.270864pt;}
.y112_c00366{bottom:315.996235pt;}
.y111_c00366{bottom:317.959307pt;}
.y110_c00366{bottom:319.884565pt;}
.y10f_c00366{bottom:337.198011pt;}
.y10e_c00366{bottom:337.742251pt;}
.y10d_c00366{bottom:338.642240pt;}
.y10c_c00366{bottom:340.258635pt;}
.y10b_c00366{bottom:341.495643pt;}
.y10a_c00366{bottom:342.199365pt;}
.y109_c00366{bottom:342.727403pt;}
.y108_c00366{bottom:343.249931pt;}
.y107_c00366{bottom:345.016853pt;}
.y106_c00366{bottom:345.534469pt;}
.y105_c00366{bottom:346.747851pt;}
.y104_c00366{bottom:347.256539pt;}
.y103_c00366{bottom:372.502251pt;}
.y102_c00366{bottom:373.457499pt;}
.y101_c00366{bottom:376.323067pt;}
.y100_c00366{bottom:377.511099pt;}
.yff_c00366{bottom:378.191285pt;}
.yfe_c00366{bottom:379.384219pt;}
.yfd_c00366{bottom:380.536480pt;}
.yfc_c00366{bottom:382.183957pt;}
.yfb_c00366{bottom:383.616779pt;}
.yfa_c00366{bottom:384.285259pt;}
.yf9_c00366{bottom:384.973035pt;}
.yf8_c00366{bottom:385.669595pt;}
.yf7_c00366{bottom:402.980912pt;}
.yf6_c00366{bottom:403.779509pt;}
.yf5_c00366{bottom:405.187013pt;}
.yf4_c00366{bottom:406.006891pt;}
.yf3_c00366{bottom:408.777472pt;}
.yf2_c00366{bottom:409.597573pt;}
.yf1_c00366{bottom:410.150107pt;}
.yf0_c00366{bottom:411.001157pt;}
.yef_c00366{bottom:412.373755pt;}
.yee_c00366{bottom:415.102336pt;}
.yed_c00366{bottom:415.928000pt;}
.yec_c00366{bottom:439.198720pt;}
.yeb_c00366{bottom:439.199333pt;}
.yea_c00366{bottom:465.839307pt;}
.ye9_c00366{bottom:467.641973pt;}
.ye8_c00366{bottom:469.041253pt;}
.ye7_c00366{bottom:469.586827pt;}
.ye6_c00366{bottom:470.299413pt;}
.ye5_c00366{bottom:472.253040pt;}
.ye4_c00366{bottom:474.197200pt;}
.ye3_c00366{bottom:475.055467pt;}
.ye2_c00366{bottom:475.555307pt;}
.ye1_c00366{bottom:476.064827pt;}
.ye0_c00366{bottom:500.200800pt;}
.ydf_c00366{bottom:500.823600pt;}
.yde_c00366{bottom:502.317547pt;}
.ydd_c00366{bottom:503.034240pt;}
.ydc_c00366{bottom:503.942453pt;}
.ydb_c00366{bottom:505.257653pt;}
.yda_c00366{bottom:505.856053pt;}
.yd9_c00366{bottom:507.091120pt;}
.yd8_c00366{bottom:507.469440pt;}
.yd7_c00366{bottom:507.906107pt;}
.yd6_c00366{bottom:508.774080pt;}
.yd5_c00366{bottom:509.190640pt;}
.yd4_c00366{bottom:529.873813pt;}
.yd3_c00366{bottom:530.327947pt;}
.yd2_c00366{bottom:530.811867pt;}
.yd1_c00366{bottom:531.284080pt;}
.yd0_c00366{bottom:532.241920pt;}
.ycf_c00366{bottom:533.021680pt;}
.yce_c00366{bottom:533.493947pt;}
.ycd_c00366{bottom:534.450400pt;}
.ycc_c00366{bottom:534.776773pt;}
.ycb_c00366{bottom:535.357973pt;}
.yca_c00366{bottom:536.332773pt;}
.yc9_c00366{bottom:536.797253pt;}
.yc8_c00366{bottom:537.418373pt;}
.yc7_c00366{bottom:538.036480pt;}
.yc6_c00366{bottom:538.956587pt;}
.yc5_c00366{bottom:560.067200pt;}
.yc4_c00366{bottom:560.498267pt;}
.yc3_c00366{bottom:560.935733pt;}
.yc2_c00366{bottom:561.321787pt;}
.yc1_c00366{bottom:562.280107pt;}
.yc0_c00366{bottom:563.114240pt;}
.ybf_c00366{bottom:563.803200pt;}
.ybe_c00366{bottom:564.220080pt;}
.ybd_c00366{bottom:565.194933pt;}
.ybc_c00366{bottom:566.556640pt;}
.ybb_c00366{bottom:567.376960pt;}
.yba_c00366{bottom:567.785893pt;}
.yb9_c00366{bottom:568.312987pt;}
.yb8_c00366{bottom:568.722453pt;}
.yb7_c00366{bottom:592.880693pt;}
.yb6_c00366{bottom:594.285440pt;}
.yb5_c00366{bottom:595.176507pt;}
.yb4_c00366{bottom:597.468507pt;}
.yb3_c00366{bottom:599.953920pt;}
.yb2_c00366{bottom:600.416453pt;}
.yb1_c00366{bottom:601.328560pt;}
.yb0_c00366{bottom:602.636747pt;}
.yaf_c00366{bottom:604.896853pt;}
.yae_c00366{bottom:605.542800pt;}
.yad_c00366{bottom:606.453093pt;}
.yac_c00366{bottom:624.690853pt;}
.yab_c00366{bottom:625.659413pt;}
.yaa_c00366{bottom:626.116187pt;}
.ya9_c00366{bottom:627.399333pt;}
.ya8_c00366{bottom:628.348507pt;}
.ya7_c00366{bottom:628.817067pt;}
.ya6_c00366{bottom:629.593653pt;}
.ya5_c00366{bottom:629.922880pt;}
.ya4_c00366{bottom:630.869680pt;}
.ya3_c00366{bottom:632.101733pt;}
.ya2_c00366{bottom:632.581280pt;}
.ya1_c00366{bottom:633.801840pt;}
.ya0_c00366{bottom:634.253440pt;}
.y9f_c00366{bottom:659.883547pt;}
.y9e_c00366{bottom:659.883680pt;}
.y9d_c00366{bottom:659.884107pt;}
.y9c_c00366{bottom:659.884747pt;}
.y9a_c00366{bottom:659.885120pt;}
.y99_c00366{bottom:659.885387pt;}
.y9b_c00366{bottom:659.885493pt;}
.y98_c00366{bottom:659.885707pt;}
.y97_c00366{bottom:659.886347pt;}
.y96_c00366{bottom:659.886800pt;}
.y95_c00366{bottom:688.676027pt;}
.y94_c00366{bottom:689.408587pt;}
.y93_c00366{bottom:690.146907pt;}
.y92_c00366{bottom:692.109200pt;}
.y91_c00366{bottom:692.877093pt;}
.y90_c00366{bottom:693.609413pt;}
.y8f_c00366{bottom:695.817760pt;}
.y8e_c00366{bottom:697.827653pt;}
.y8d_c00366{bottom:698.535333pt;}
.y8c_c00366{bottom:700.730480pt;}
.y8b_c00366{bottom:701.689147pt;}
.y8a_c00366{bottom:702.420613pt;}
.y89_c00366{bottom:703.393840pt;}
.y88_c00366{bottom:720.806373pt;}
.y87_c00366{bottom:721.334747pt;}
.y86_c00366{bottom:721.697680pt;}
.y85_c00366{bottom:721.871093pt;}
.y84_c00366{bottom:722.164960pt;}
.y83_c00366{bottom:722.344907pt;}
.y82_c00366{bottom:722.470267pt;}
.y81_c00366{bottom:722.822613pt;}
.y80_c00366{bottom:723.285067pt;}
.y7f_c00366{bottom:723.584293pt;}
.y7e_c00366{bottom:723.755333pt;}
.y7d_c00366{bottom:724.048133pt;}
.y7c_c00366{bottom:724.274667pt;}
.y7b_c00366{bottom:753.500267pt;}
.y7a_c00366{bottom:753.993093pt;}
.y79_c00366{bottom:754.140747pt;}
.y78_c00366{bottom:754.489467pt;}
.y77_c00366{bottom:754.589013pt;}
.y76_c00366{bottom:754.927947pt;}
.y75_c00366{bottom:755.031360pt;}
.y74_c00366{bottom:755.467360pt;}
.y73_c00366{bottom:755.663013pt;}
.y72_c00366{bottom:755.811467pt;}
.y71_c00366{bottom:756.154613pt;}
.y70_c00366{bottom:756.440773pt;}
.y6f_c00366{bottom:784.293653pt;}
.y6e_c00366{bottom:784.739600pt;}
.y6d_c00366{bottom:786.219467pt;}
.y6c_c00366{bottom:786.805253pt;}
.y6b_c00366{bottom:788.444507pt;}
.y6a_c00366{bottom:789.331040pt;}
.y69_c00366{bottom:789.777387pt;}
.y68_c00366{bottom:790.799227pt;}
.y67_c00366{bottom:792.268053pt;}
.y66_c00366{bottom:792.696160pt;}
.y65_c00366{bottom:793.408240pt;}
.y64_c00366{bottom:817.324720pt;}
.y63_c00366{bottom:817.912960pt;}
.y62_c00366{bottom:818.270720pt;}
.y61_c00366{bottom:818.970613pt;}
.y60_c00366{bottom:819.339680pt;}
.y5f_c00366{bottom:819.570587pt;}
.y5e_c00366{bottom:819.935547pt;}
.y5d_c00366{bottom:820.874560pt;}
.y5c_c00366{bottom:821.352613pt;}
.y5b_c00366{bottom:821.695360pt;}
.y5a_c00366{bottom:821.951973pt;}
.y59_c00366{bottom:822.528613pt;}
.y58_c00366{bottom:822.853920pt;}
.y57_c00366{bottom:823.565840pt;}
.y56_c00366{bottom:823.922373pt;}
.y55_c00366{bottom:824.374213pt;}
.y54_c00366{bottom:846.709013pt;}
.y53_c00366{bottom:847.379653pt;}
.y52_c00366{bottom:848.232987pt;}
.y51_c00366{bottom:848.565787pt;}
.y50_c00366{bottom:849.543360pt;}
.y4f_c00366{bottom:849.868533pt;}
.y4e_c00366{bottom:850.637307pt;}
.y4d_c00366{bottom:850.948720pt;}
.y4c_c00366{bottom:851.392907pt;}
.y4b_c00366{bottom:851.820560pt;}
.y4a_c00366{bottom:853.183600pt;}
.y49_c00366{bottom:878.046107pt;}
.y48_c00366{bottom:878.404427pt;}
.y47_c00366{bottom:878.758933pt;}
.y46_c00366{bottom:879.464373pt;}
.y45_c00366{bottom:879.828053pt;}
.y44_c00366{bottom:880.181813pt;}
.y43_c00366{bottom:881.362880pt;}
.y42_c00366{bottom:881.831413pt;}
.y41_c00366{bottom:882.188587pt;}
.y40_c00366{bottom:883.364507pt;}
.y3f_c00366{bottom:883.724453pt;}
.y3e_c00366{bottom:884.075840pt;}
.y3d_c00366{bottom:884.782373pt;}
.y3c_c00366{bottom:885.349440pt;}
.y3b_c00366{bottom:910.232213pt;}
.y3a_c00366{bottom:910.426400pt;}
.y39_c00366{bottom:910.863333pt;}
.y38_c00366{bottom:911.126240pt;}
.y37_c00366{bottom:911.486480pt;}
.y36_c00366{bottom:911.756053pt;}
.y35_c00366{bottom:912.019920pt;}
.y34_c00366{bottom:912.724000pt;}
.y33_c00366{bottom:912.996320pt;}
.y32_c00366{bottom:913.880053pt;}
.y31_c00366{bottom:914.318347pt;}
.y30_c00366{bottom:914.842773pt;}
.y2f_c00366{bottom:915.352827pt;}
.y2e_c00366{bottom:942.981627pt;}
.y2d_c00366{bottom:943.787200pt;}
.y2c_c00366{bottom:945.550080pt;}
.y2b_c00366{bottom:946.131440pt;}
.y2a_c00366{bottom:947.350960pt;}
.y29_c00366{bottom:948.127627pt;}
.y28_c00366{bottom:950.073067pt;}
.y27_c00366{bottom:950.652587pt;}
.y26_c00366{bottom:951.844000pt;}
.y25_c00366{bottom:1002.528640pt;}
.y24_c00366{bottom:1002.665947pt;}
.y23_c00366{bottom:1002.853387pt;}
.y22_c00366{bottom:1003.074640pt;}
.y21_c00366{bottom:1003.265707pt;}
.y20_c00366{bottom:1003.467947pt;}
.y1f_c00366{bottom:1003.833227pt;}
.y1e_c00366{bottom:1004.006267pt;}
.y1d_c00366{bottom:1004.206773pt;}
.y1c_c00366{bottom:1004.384613pt;}
.y1b_c00366{bottom:1004.544587pt;}
.y1a_c00366{bottom:1004.772533pt;}
.y19_c00366{bottom:1004.945573pt;}
.y18_c00366{bottom:1005.136480pt;}
.y17_c00366{bottom:1005.323920pt;}
.y13_c00366{bottom:1005.364373pt;}
.y16_c00366{bottom:1005.697440pt;}
.y12_c00366{bottom:1005.755013pt;}
.y15_c00366{bottom:1005.888347pt;}
.y11_c00366{bottom:1005.945333pt;}
.y14_c00366{bottom:1006.098453pt;}
.y10_c00366{bottom:1006.146987pt;}
.yf_c00366{bottom:1006.340480pt;}
.ye_c00366{bottom:1006.724427pt;}
.yd_c00366{bottom:1006.930773pt;}
.yc_c00366{bottom:1007.132320pt;}
.yb_c00366{bottom:1007.324293pt;}
.ya_c00366{bottom:1007.708213pt;}
.y9_c00366{bottom:1007.924160pt;}
.y8_c00366{bottom:1008.250507pt;}
.y7_c00366{bottom:1008.500053pt;}
.y6_c00366{bottom:1008.740000pt;}
.y5_c00366{bottom:1014.320811pt;}
.y4_c00366{bottom:1014.800779pt;}
.y3_c00366{bottom:1015.980043pt;}
.y2_c00366{bottom:1018.319051pt;}
.y1_c00366{bottom:1020.006667pt;}
.h3_c00366{height:16.003200pt;}
.h4_c00366{height:16.045875pt;}
.hf_c00366{height:32.004624pt;}
.h10_c00366{height:48.006935pt;}
.h13_c00366{height:58.670891pt;}
.h5_c00366{height:64.012799pt;}
.h2_c00366{height:64.018429pt;}
.hb_c00366{height:64.025083pt;}
.h11_c00366{height:69.342207pt;}
.h7_c00366{height:69.347199pt;}
.hc_c00366{height:69.360507pt;}
.h9_c00366{height:74.681599pt;}
.h12_c00366{height:80.005760pt;}
.h8_c00366{height:80.015998pt;}
.ha_c00366{height:80.031354pt;}
.hd_c00366{height:80.260777pt;}
.h6_c00366{height:85.350398pt;}
.he_c00366{height:85.366777pt;}
.h0_c00366{height:1112.400000pt;}
.h1_c00366{height:1112.666667pt;}
.w0_c00366{width:813.333333pt;}
.x0_c00366{left:0.000000pt;}
.xca_c00366{left:117.482667pt;}
.x9b_c00366{left:119.739920pt;}
.xa3_c00366{left:121.620683pt;}
.x77_c00366{left:123.463813pt;}
.x62_c00366{left:125.098507pt;}
.x51_c00366{left:126.146107pt;}
.x2d_c00366{left:127.757227pt;}
.x21_c00366{left:128.988213pt;}
.xcb_c00366{left:148.735924pt;}
.xa4_c00366{left:150.643931pt;}
.x8e_c00366{left:151.739653pt;}
.x6e_c00366{left:154.118827pt;}
.x5a_c00366{left:163.812240pt;}
.x3e_c00366{left:165.497600pt;}
.xcc_c00366{left:167.637281pt;}
.x2e_c00366{left:174.984773pt;}
.x95_c00366{left:180.007520pt;}
.x86_c00366{left:181.216453pt;}
.x52_c00366{left:183.271227pt;}
.x22_c00366{left:185.636667pt;}
.x78_c00366{left:191.138427pt;}
.x63_c00366{left:193.259680pt;}
.x3f_c00366{left:195.195680pt;}
.xb1_c00366{left:197.915381pt;}
.x4a_c00366{left:203.329227pt;}
.xa5_c00366{left:207.135573pt;}
.x8f_c00366{left:209.610773pt;}
.x6a_c00366{left:211.437893pt;}
.x5b_c00366{left:212.532533pt;}
.xc4_c00366{left:215.266576pt;}
.x9c_c00366{left:217.885333pt;}
.x7e_c00366{left:220.328000pt;}
.x19_c00366{left:224.664000pt;}
.xbd_c00366{left:226.088373pt;}
.x96_c00366{left:227.722773pt;}
.x6f_c00366{left:230.419600pt;}
.x64_c00366{left:231.589173pt;}
.x2f_c00366{left:233.854187pt;}
.xc5_c00366{left:235.168485pt;}
.x90_c00366{left:238.713680pt;}
.x5c_c00366{left:241.092533pt;}
.x23_c00366{left:243.937493pt;}
.xac_c00366{left:246.417061pt;}
.x9d_c00366{left:247.373333pt;}
.x6b_c00366{left:250.085333pt;}
.x36_c00366{left:252.580827pt;}
.x40_c00366{left:254.467813pt;}
.x87_c00366{left:258.717333pt;}
.x70_c00366{left:260.399333pt;}
.x30_c00366{left:263.094853pt;}
.xa6_c00366{left:266.838256pt;}
.xc6_c00366{left:274.244043pt;}
.xb2_c00366{left:276.412619pt;}
.x1_c00366{left:278.124000pt;}
.x41_c00366{left:281.604160pt;}
.x1a_c00366{left:284.234667pt;}
.x88_c00366{left:287.743653pt;}
.x6_c00366{left:289.605333pt;}
.x37_c00366{left:291.437147pt;}
.x24_c00366{left:292.662880pt;}
.x11_c00366{left:299.217147pt;}
.x7_c00366{left:302.082667pt;}
.xcd_c00366{left:302.990787pt;}
.xb3_c00366{left:305.416379pt;}
.x1b_c00366{left:313.210667pt;}
.x8_c00366{left:318.400000pt;}
.x65_c00366{left:319.404400pt;}
.x53_c00366{left:320.808480pt;}
.x9_c00366{left:329.197333pt;}
.x38_c00366{left:331.787067pt;}
.x97_c00366{left:335.735093pt;}
.x71_c00366{left:337.408160pt;}
.x12_c00366{left:338.811280pt;}
.xce_c00366{left:342.363515pt;}
.xbe_c00366{left:343.632741pt;}
.x9e_c00366{left:344.822667pt;}
.x79_c00366{left:346.277120pt;}
.x2_c00366{left:348.441333pt;}
.x42_c00366{left:351.011253pt;}
.xa_c00366{left:357.992000pt;}
.x13_c00366{left:359.927707pt;}
.xd1_c00366{left:361.493333pt;}
.xb4_c00366{left:365.114715pt;}
.xb_c00366{left:368.069333pt;}
.x4b_c00366{left:369.412507pt;}
.xcf_c00366{left:371.655959pt;}
.xad_c00366{left:373.647344pt;}
.x7f_c00366{left:376.114667pt;}
.xc_c00366{left:378.386667pt;}
.x43_c00366{left:379.553147pt;}
.xa7_c00366{left:383.508656pt;}
.x89_c00366{left:385.018107pt;}
.x7a_c00366{left:385.946747pt;}
.x14_c00366{left:388.244267pt;}
.x25_c00366{left:390.871147pt;}
.x9f_c00366{left:393.844000pt;}
.x72_c00366{left:396.552880pt;}
.xd_c00366{left:397.584000pt;}
.x4c_c00366{left:399.132800pt;}
.xd2_c00366{left:400.868000pt;}
.xb5_c00366{left:401.981813pt;}
.xae_c00366{left:402.990224pt;}
.x7b_c00366{left:406.072213pt;}
.xe_c00366{left:407.258667pt;}
.x1c_c00366{left:410.482667pt;}
.xf_c00366{left:417.341333pt;}
.x44_c00366{left:419.395520pt;}
.x26_c00366{left:421.093787pt;}
.xb6_c00366{left:422.131493pt;}
.xa0_c00366{left:424.238667pt;}
.x10_c00366{left:426.857333pt;}
.x54_c00366{left:428.611467pt;}
.x39_c00366{left:429.947387pt;}
.xa8_c00366{left:433.214219pt;}
.x15_c00366{left:437.293253pt;}
.xd4_c00366{left:439.778667pt;}
.xaf_c00366{left:442.086496pt;}
.x98_c00366{left:444.287440pt;}
.x3_c00366{left:445.900000pt;}
.x5d_c00366{left:447.786400pt;}
.x16_c00366{left:448.956160pt;}
.xd3_c00366{left:450.096000pt;}
.xb7_c00366{left:451.848661pt;}
.x17_c00366{left:458.795013pt;}
.x31_c00366{left:459.938347pt;}
.xa9_c00366{left:461.557392pt;}
.x18_c00366{left:465.993813pt;}
.xbf_c00366{left:470.912347pt;}
.x91_c00366{left:473.819840pt;}
.x80_c00366{left:475.513253pt;}
.x5e_c00366{left:477.792133pt;}
.xd0_c00366{left:480.178085pt;}
.xb8_c00366{left:482.129867pt;}
.x99_c00366{left:483.851680pt;}
.xd5_c00366{left:489.478667pt;}
.x4_c00366{left:495.036000pt;}
.x55_c00366{left:496.311760pt;}
.x45_c00366{left:497.692053pt;}
.x27_c00366{left:499.381680pt;}
.x6c_c00366{left:506.217067pt;}
.x1d_c00366{left:510.292000pt;}
.xb9_c00366{left:512.147035pt;}
.x7c_c00366{left:514.136400pt;}
.x5_c00366{left:515.034667pt;}
.x56_c00366{left:516.228400pt;}
.xc0_c00366{left:520.435387pt;}
.x81_c00366{left:524.700480pt;}
.x5f_c00366{left:526.765840pt;}
.x28_c00366{left:528.648107pt;}
.x92_c00366{left:534.369893pt;}
.x1e_c00366{left:539.360000pt;}
.x8a_c00366{left:543.440107pt;}
.x66_c00366{left:545.760453pt;}
.x46_c00366{left:547.360000pt;}
.x3a_c00366{left:548.306000pt;}
.x73_c00366{left:554.276160pt;}
.x60_c00366{left:555.577893pt;}
.x29_c00366{left:558.666720pt;}
.xc1_c00366{left:559.757744pt;}
.x4d_c00366{left:567.505627pt;}
.xba_c00366{left:570.507925pt;}
.xa1_c00366{left:572.210667pt;}
.x67_c00366{left:576.485387pt;}
.x3b_c00366{left:578.551440pt;}
.x93_c00366{left:582.142667pt;}
.x82_c00366{left:584.280960pt;}
.x57_c00366{left:586.085360pt;}
.x32_c00366{left:587.900160pt;}
.x9a_c00366{left:591.898667pt;}
.x2a_c00366{left:598.754213pt;}
.xbb_c00366{left:600.038389pt;}
.xa2_c00366{left:601.492000pt;}
.x8b_c00366{left:603.270213pt;}
.x4e_c00366{left:606.598880pt;}
.x6d_c00366{left:614.479013pt;}
.x58_c00366{left:615.610213pt;}
.x33_c00366{left:618.155653pt;}
.x1f_c00366{left:627.504000pt;}
.xc7_c00366{left:628.747696pt;}
.xaa_c00366{left:630.442949pt;}
.x8c_c00366{left:632.749893pt;}
.x74_c00366{left:634.439893pt;}
.x47_c00366{left:636.422240pt;}
.xc2_c00366{left:639.520016pt;}
.xb0_c00366{left:650.575477pt;}
.x7d_c00366{left:652.548107pt;}
.x68_c00366{left:654.992213pt;}
.x3c_c00366{left:656.098720pt;}
.x75_c00366{left:663.014187pt;}
.x48_c00366{left:666.181653pt;}
.x20_c00366{left:667.782667pt;}
.xab_c00366{left:670.230059pt;}
.x2b_c00366{left:676.563333pt;}
.x83_c00366{left:680.311147pt;}
.x94_c00366{left:681.783307pt;}
.x69_c00366{left:684.505253pt;}
.xc8_c00366{left:688.298683pt;}
.x8d_c00366{left:691.390587pt;}
.x2c_c00366{left:698.144080pt;}
.x61_c00366{left:704.184827pt;}
.x4f_c00366{left:705.268747pt;}
.x34_c00366{left:706.500453pt;}
.x84_c00366{left:711.521547pt;}
.x59_c00366{left:714.281147pt;}
.x49_c00366{left:715.201493pt;}
.x3d_c00366{left:717.108373pt;}
.x76_c00366{left:723.513680pt;}
.xbc_c00366{left:729.758624pt;}
.x50_c00366{left:735.035733pt;}
.x35_c00366{left:736.354560pt;}
.xc3_c00366{left:739.200875pt;}
.x85_c00366{left:742.345253pt;}
.xc9_c00366{left:747.373520pt;}
}





/* 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_c00367 {
    display:none;
  }
  .loading-indicator_c00367.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00367 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_c00367 { 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_c00367" -> "#page-container .classname_c00367")
 */
.pf_c00367 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00367 { /* 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_c00367.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00367 { /* 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_c00367 { /* 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_c00367 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00367 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00367 {overflow:visible;}
  }
}
.c_c00367 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00367 { /* 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_c00367:after { /* webkit #35443 */
  content: '';
}
.t_c00367:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00367 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 */
}
.__c00367 { /* 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_c00367 { /* info for Javascript */
  display:none;
}
.l_c00367 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00367 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00367 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00367: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_c00367 {
    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_c00367.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00367.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_c00367 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00367{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00367;src:url('chunks/assets/font_92d6bb63cbc780ceff7db400.woff2')format("woff");}.ff1_c00367{font-family:ff1_c00367;line-height:1.000000;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;}
.m1_c00367{transform:matrix(0.133705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133705,0.000000,0.000000,0.250000,0,0);}
.m0_c00367{transform:matrix(0.164665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164665,0.000000,0.000000,0.250000,0,0);}
.m2_c00367{transform:matrix(0.197005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197005,0.000000,0.000000,0.250000,0,0);}
.m3_c00367{transform:matrix(0.201990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201990,0.000000,0.000000,0.250000,0,0);}
.m8_c00367{transform:matrix(0.202485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202485,0.000000,0.000000,0.250000,0,0);}
.m4_c00367{transform:matrix(0.247325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247325,0.000000,0.000000,0.250000,0,0);}
.m7_c00367{transform:matrix(0.383503,0.006903,-0.004499,0.249960,0,0);-ms-transform:matrix(0.383503,0.006903,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.383503,0.006903,-0.004499,0.249960,0,0);}
.m5_c00367{transform:matrix(1.017225,0.018310,-0.004499,0.249960,0,0);-ms-transform:matrix(1.017225,0.018310,-0.004499,0.249960,0,0);-webkit-transform:matrix(1.017225,0.018310,-0.004499,0.249960,0,0);}
.m6_c00367{transform:matrix(1.359080,0.024463,-0.004499,0.249960,0,0);-ms-transform:matrix(1.359080,0.024463,-0.004499,0.249960,0,0);-webkit-transform:matrix(1.359080,0.024463,-0.004499,0.249960,0,0);}
.v0_c00367{vertical-align:0.000000px;}
.ls0_c00367{letter-spacing:0.000000px;}
.sc__c00367{text-shadow:none;}
.sc0_c00367{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__c00367{-webkit-text-stroke:0px transparent;}
.sc0_c00367{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00367{word-spacing:0.000000px;}
.fc0_c00367{color:transparent;}
.fs2_c00367{font-size:18.000000px;}
.fs1_c00367{font-size:42.006803px;}
.fs0_c00367{font-size:96.000000px;}
.y0_c00367{bottom:0.000000px;}
.y5_c00367{bottom:1042.470000px;}
.y4_c00367{bottom:1120.971435px;}
.y3_c00367{bottom:1126.683096px;}
.y2_c00367{bottom:1129.141500px;}
.y1_c00367{bottom:1141.078500px;}
.h4_c00367{height:18.000000px;}
.h3_c00367{height:42.006803px;}
.h2_c00367{height:96.000000px;}
.h0_c00367{height:1251.450000px;}
.h1_c00367{height:1251.750000px;}
.w0_c00367{width:915.000000px;}
.x0_c00367{left:0.000000px;}
.x9_c00367{left:85.050000px;}
.x1_c00367{left:299.970000px;}
.x6_c00367{left:309.313500px;}
.x2_c00367{left:362.610000px;}
.x3_c00367{left:385.020000px;}
.x7_c00367{left:445.891500px;}
.x4_c00367{left:451.170000px;}
.x5_c00367{left:544.860000px;}
.x8_c00367{left:763.206000px;}
@media print{
.v0_c00367{vertical-align:0.000000pt;}
.ls0_c00367{letter-spacing:0.000000pt;}
.ws0_c00367{word-spacing:0.000000pt;}
.fs2_c00367{font-size:16.000000pt;}
.fs1_c00367{font-size:37.339381pt;}
.fs0_c00367{font-size:85.333333pt;}
.y0_c00367{bottom:0.000000pt;}
.y5_c00367{bottom:926.640000pt;}
.y4_c00367{bottom:996.419053pt;}
.y3_c00367{bottom:1001.496085pt;}
.y2_c00367{bottom:1003.681333pt;}
.y1_c00367{bottom:1014.292000pt;}
.h4_c00367{height:16.000000pt;}
.h3_c00367{height:37.339381pt;}
.h2_c00367{height:85.333333pt;}
.h0_c00367{height:1112.400000pt;}
.h1_c00367{height:1112.666667pt;}
.w0_c00367{width:813.333333pt;}
.x0_c00367{left:0.000000pt;}
.x9_c00367{left:75.600000pt;}
.x1_c00367{left:266.640000pt;}
.x6_c00367{left:274.945333pt;}
.x2_c00367{left:322.320000pt;}
.x3_c00367{left:342.240000pt;}
.x7_c00367{left:396.348000pt;}
.x4_c00367{left:401.040000pt;}
.x5_c00367{left:484.320000pt;}
.x8_c00367{left:678.405333pt;}
}





/* 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_c00368 {
    display:none;
  }
  .loading-indicator_c00368.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00368 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_c00368 { 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_c00368" -> "#page-container .classname_c00368")
 */
.pf_c00368 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00368 { /* 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_c00368.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00368 { /* 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_c00368 { /* 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_c00368 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00368 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00368 {overflow:visible;}
  }
}
.c_c00368 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00368 { /* 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_c00368:after { /* webkit #35443 */
  content: '';
}
.t_c00368:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00368 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 */
}
.__c00368 { /* 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_c00368 { /* info for Javascript */
  display:none;
}
.l_c00368 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00368 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00368 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00368: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_c00368 {
    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_c00368.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00368.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_c00368 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00368{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00368;src:url('chunks/assets/font_c605e72f209fc835e906f064.woff2')format("woff");}.ff1_c00368{font-family:ff1_c00368;line-height:1.000000;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;}
.mf4_c00368{transform:matrix(0.013633,-0.000205,0.003750,0.249972,0,0);-ms-transform:matrix(0.013633,-0.000205,0.003750,0.249972,0,0);-webkit-transform:matrix(0.013633,-0.000205,0.003750,0.249972,0,0);}
.ma9_c00368{transform:matrix(0.099515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.099515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.099515,0.000000,0.000000,0.250000,0,0);}
.mf6_c00368{transform:matrix(0.110683,-0.001660,0.003750,0.249972,0,0);-ms-transform:matrix(0.110683,-0.001660,0.003750,0.249972,0,0);-webkit-transform:matrix(0.110683,-0.001660,0.003750,0.249972,0,0);}
.m115_c00368{transform:matrix(0.140483,0.001826,-0.003250,0.249979,0,0);-ms-transform:matrix(0.140483,0.001826,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.140483,0.001826,-0.003250,0.249979,0,0);}
.m137_c00368{transform:matrix(0.143389,0.002438,-0.004249,0.249964,0,0);-ms-transform:matrix(0.143389,0.002438,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.143389,0.002438,-0.004249,0.249964,0,0);}
.m113_c00368{transform:matrix(0.149277,0.001941,-0.003250,0.249979,0,0);-ms-transform:matrix(0.149277,0.001941,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.149277,0.001941,-0.003250,0.249979,0,0);}
.m73_c00368{transform:matrix(0.155469,0.001399,-0.002250,0.249990,0,0);-ms-transform:matrix(0.155469,0.001399,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.155469,0.001399,-0.002250,0.249990,0,0);}
.m10c_c00368{transform:matrix(0.157827,0.002052,-0.003250,0.249979,0,0);-ms-transform:matrix(0.157827,0.002052,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.157827,0.002052,-0.003250,0.249979,0,0);}
.m134_c00368{transform:matrix(0.159127,0.002705,-0.004249,0.249964,0,0);-ms-transform:matrix(0.159127,0.002705,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.159127,0.002705,-0.004249,0.249964,0,0);}
.mea_c00368{transform:matrix(0.161712,0.001617,-0.002500,0.249988,0,0);-ms-transform:matrix(0.161712,0.001617,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.161712,0.001617,-0.002500,0.249988,0,0);}
.m187_c00368{transform:matrix(0.163711,0.001146,-0.001750,0.249994,0,0);-ms-transform:matrix(0.163711,0.001146,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.163711,0.001146,-0.001750,0.249994,0,0);}
.m138_c00368{transform:matrix(0.164336,0.002794,-0.004249,0.249964,0,0);-ms-transform:matrix(0.164336,0.002794,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.164336,0.002794,-0.004249,0.249964,0,0);}
.m5a_c00368{transform:matrix(0.165663,0.001491,-0.002250,0.249990,0,0);-ms-transform:matrix(0.165663,0.001491,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.165663,0.001491,-0.002250,0.249990,0,0);}
.m110_c00368{transform:matrix(0.168501,0.002191,-0.003250,0.249979,0,0);-ms-transform:matrix(0.168501,0.002191,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.168501,0.002191,-0.003250,0.249979,0,0);}
.m75_c00368{transform:matrix(0.171593,0.001544,-0.002250,0.249990,0,0);-ms-transform:matrix(0.171593,0.001544,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.171593,0.001544,-0.002250,0.249990,0,0);}
.m10f_c00368{transform:matrix(0.171895,0.002235,-0.003250,0.249979,0,0);-ms-transform:matrix(0.171895,0.002235,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.171895,0.002235,-0.003250,0.249979,0,0);}
.m71_c00368{transform:matrix(0.172828,0.001555,-0.002250,0.249990,0,0);-ms-transform:matrix(0.172828,0.001555,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.172828,0.001555,-0.002250,0.249990,0,0);}
.m6e_c00368{transform:matrix(0.173258,0.001559,-0.002250,0.249990,0,0);-ms-transform:matrix(0.173258,0.001559,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.173258,0.001559,-0.002250,0.249990,0,0);}
.m72_c00368{transform:matrix(0.173778,0.001564,-0.002250,0.249990,0,0);-ms-transform:matrix(0.173778,0.001564,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.173778,0.001564,-0.002250,0.249990,0,0);}
.m6d_c00368{transform:matrix(0.174018,0.001566,-0.002250,0.249990,0,0);-ms-transform:matrix(0.174018,0.001566,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.174018,0.001566,-0.002250,0.249990,0,0);}
.m136_c00368{transform:matrix(0.174290,0.002963,-0.004249,0.249964,0,0);-ms-transform:matrix(0.174290,0.002963,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.174290,0.002963,-0.004249,0.249964,0,0);}
.m76_c00368{transform:matrix(0.174333,0.001569,-0.002250,0.249990,0,0);-ms-transform:matrix(0.174333,0.001569,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.174333,0.001569,-0.002250,0.249990,0,0);}
.m105_c00368{transform:matrix(0.175005,-0.002625,0.003750,0.249972,0,0);-ms-transform:matrix(0.175005,-0.002625,0.003750,0.249972,0,0);-webkit-transform:matrix(0.175005,-0.002625,0.003750,0.249972,0,0);}
.m6f_c00368{transform:matrix(0.175868,0.001583,-0.002250,0.249990,0,0);-ms-transform:matrix(0.175868,0.001583,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.175868,0.001583,-0.002250,0.249990,0,0);}
.m77_c00368{transform:matrix(0.176228,0.001586,-0.002250,0.249990,0,0);-ms-transform:matrix(0.176228,0.001586,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.176228,0.001586,-0.002250,0.249990,0,0);}
.m111_c00368{transform:matrix(0.176565,0.002295,-0.003250,0.249979,0,0);-ms-transform:matrix(0.176565,0.002295,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.176565,0.002295,-0.003250,0.249979,0,0);}
.m109_c00368{transform:matrix(0.177830,0.002312,-0.003250,0.249979,0,0);-ms-transform:matrix(0.177830,0.002312,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.177830,0.002312,-0.003250,0.249979,0,0);}
.m6c_c00368{transform:matrix(0.177958,0.001602,-0.002250,0.249990,0,0);-ms-transform:matrix(0.177958,0.001602,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.177958,0.001602,-0.002250,0.249990,0,0);}
.m10b_c00368{transform:matrix(0.178600,0.002322,-0.003250,0.249979,0,0);-ms-transform:matrix(0.178600,0.002322,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.178600,0.002322,-0.003250,0.249979,0,0);}
.m10d_c00368{transform:matrix(0.178990,0.002327,-0.003250,0.249979,0,0);-ms-transform:matrix(0.178990,0.002327,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.178990,0.002327,-0.003250,0.249979,0,0);}
.m74_c00368{transform:matrix(0.179113,0.001612,-0.002250,0.249990,0,0);-ms-transform:matrix(0.179113,0.001612,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.179113,0.001612,-0.002250,0.249990,0,0);}
.m42_c00368{transform:matrix(0.179168,0.001613,-0.002250,0.249990,0,0);-ms-transform:matrix(0.179168,0.001613,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.179168,0.001613,-0.002250,0.249990,0,0);}
.mf2_c00368{transform:matrix(0.180271,0.001803,-0.002500,0.249988,0,0);-ms-transform:matrix(0.180271,0.001803,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.180271,0.001803,-0.002500,0.249988,0,0);}
.m70_c00368{transform:matrix(0.180303,0.001623,-0.002250,0.249990,0,0);-ms-transform:matrix(0.180303,0.001623,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.180303,0.001623,-0.002250,0.249990,0,0);}
.m107_c00368{transform:matrix(0.180645,0.002348,-0.003250,0.249979,0,0);-ms-transform:matrix(0.180645,0.002348,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.180645,0.002348,-0.003250,0.249979,0,0);}
.m8e_c00368{transform:matrix(0.181188,0.001631,-0.002250,0.249990,0,0);-ms-transform:matrix(0.181188,0.001631,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.181188,0.001631,-0.002250,0.249990,0,0);}
.m15a_c00368{transform:matrix(0.181369,0.003083,-0.004249,0.249964,0,0);-ms-transform:matrix(0.181369,0.003083,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.181369,0.003083,-0.004249,0.249964,0,0);}
.m8c_c00368{transform:matrix(0.181388,0.001632,-0.002250,0.249990,0,0);-ms-transform:matrix(0.181388,0.001632,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.181388,0.001632,-0.002250,0.249990,0,0);}
.m6a_c00368{transform:matrix(0.181678,0.001635,-0.002250,0.249990,0,0);-ms-transform:matrix(0.181678,0.001635,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.181678,0.001635,-0.002250,0.249990,0,0);}
.m16_c00368{transform:matrix(0.182055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182055,0.000000,0.000000,0.250000,0,0);}
.m16e_c00368{transform:matrix(0.182304,0.003099,-0.004249,0.249964,0,0);-ms-transform:matrix(0.182304,0.003099,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.182304,0.003099,-0.004249,0.249964,0,0);}
.m69_c00368{transform:matrix(0.182718,0.001644,-0.002250,0.249990,0,0);-ms-transform:matrix(0.182718,0.001644,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.182718,0.001644,-0.002250,0.249990,0,0);}
.m130_c00368{transform:matrix(0.184328,0.003134,-0.004249,0.249964,0,0);-ms-transform:matrix(0.184328,0.003134,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.184328,0.003134,-0.004249,0.249964,0,0);}
.m114_c00368{transform:matrix(0.184489,0.002398,-0.003250,0.249979,0,0);-ms-transform:matrix(0.184489,0.002398,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.184489,0.002398,-0.003250,0.249979,0,0);}
.me6_c00368{transform:matrix(0.185591,0.001856,-0.002500,0.249988,0,0);-ms-transform:matrix(0.185591,0.001856,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.185591,0.001856,-0.002500,0.249988,0,0);}
.m13c_c00368{transform:matrix(0.185738,0.003158,-0.004249,0.249964,0,0);-ms-transform:matrix(0.185738,0.003158,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.185738,0.003158,-0.004249,0.249964,0,0);}
.m17_c00368{transform:matrix(0.185935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185935,0.000000,0.000000,0.250000,0,0);}
.m15c_c00368{transform:matrix(0.186063,0.003163,-0.004249,0.249964,0,0);-ms-transform:matrix(0.186063,0.003163,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.186063,0.003163,-0.004249,0.249964,0,0);}
.m116_c00368{transform:matrix(0.187264,0.002434,-0.003250,0.249979,0,0);-ms-transform:matrix(0.187264,0.002434,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.187264,0.002434,-0.003250,0.249979,0,0);}
.m68_c00368{transform:matrix(0.187802,0.001690,-0.002250,0.249990,0,0);-ms-transform:matrix(0.187802,0.001690,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.187802,0.001690,-0.002250,0.249990,0,0);}
.mca_c00368{transform:matrix(0.189306,0.001893,-0.002500,0.249988,0,0);-ms-transform:matrix(0.189306,0.001893,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.189306,0.001893,-0.002500,0.249988,0,0);}
.m0_c00368{transform:matrix(0.189695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189695,0.000000,0.000000,0.250000,0,0);}
.m127_c00368{transform:matrix(0.189723,0.003225,-0.004249,0.249964,0,0);-ms-transform:matrix(0.189723,0.003225,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.189723,0.003225,-0.004249,0.249964,0,0);}
.m169_c00368{transform:matrix(0.190158,0.003233,-0.004249,0.249964,0,0);-ms-transform:matrix(0.190158,0.003233,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.190158,0.003233,-0.004249,0.249964,0,0);}
.mfa_c00368{transform:matrix(0.191353,-0.002870,0.003750,0.249972,0,0);-ms-transform:matrix(0.191353,-0.002870,0.003750,0.249972,0,0);-webkit-transform:matrix(0.191353,-0.002870,0.003750,0.249972,0,0);}
.mb8_c00368{transform:matrix(0.191367,0.001722,-0.002250,0.249990,0,0);-ms-transform:matrix(0.191367,0.001722,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.191367,0.001722,-0.002250,0.249990,0,0);}
.mfb_c00368{transform:matrix(0.191953,-0.002879,0.003750,0.249972,0,0);-ms-transform:matrix(0.191953,-0.002879,0.003750,0.249972,0,0);-webkit-transform:matrix(0.191953,-0.002879,0.003750,0.249972,0,0);}
.m112_c00368{transform:matrix(0.192044,0.002497,-0.003250,0.249979,0,0);-ms-transform:matrix(0.192044,0.002497,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.192044,0.002497,-0.003250,0.249979,0,0);}
.m108_c00368{transform:matrix(0.192584,0.002504,-0.003250,0.249979,0,0);-ms-transform:matrix(0.192584,0.002504,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.192584,0.002504,-0.003250,0.249979,0,0);}
.m67_c00368{transform:matrix(0.193067,0.001738,-0.002250,0.249990,0,0);-ms-transform:matrix(0.193067,0.001738,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.193067,0.001738,-0.002250,0.249990,0,0);}
.m45_c00368{transform:matrix(0.193122,0.001738,-0.002250,0.249990,0,0);-ms-transform:matrix(0.193122,0.001738,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.193122,0.001738,-0.002250,0.249990,0,0);}
.m11b_c00368{transform:matrix(0.193127,0.003283,-0.004249,0.249964,0,0);-ms-transform:matrix(0.193127,0.003283,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.193127,0.003283,-0.004249,0.249964,0,0);}
.m10_c00368{transform:matrix(0.193155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193155,0.000000,0.000000,0.250000,0,0);}
.m103_c00368{transform:matrix(0.193783,-0.002907,0.003750,0.249972,0,0);-ms-transform:matrix(0.193783,-0.002907,0.003750,0.249972,0,0);-webkit-transform:matrix(0.193783,-0.002907,0.003750,0.249972,0,0);}
.m135_c00368{transform:matrix(0.193932,0.003297,-0.004249,0.249964,0,0);-ms-transform:matrix(0.193932,0.003297,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.193932,0.003297,-0.004249,0.249964,0,0);}
.mef_c00368{transform:matrix(0.193990,0.001940,-0.002500,0.249988,0,0);-ms-transform:matrix(0.193990,0.001940,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.193990,0.001940,-0.002500,0.249988,0,0);}
.m131_c00368{transform:matrix(0.194117,0.003300,-0.004249,0.249964,0,0);-ms-transform:matrix(0.194117,0.003300,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.194117,0.003300,-0.004249,0.249964,0,0);}
.me7_c00368{transform:matrix(0.194185,0.001942,-0.002500,0.249988,0,0);-ms-transform:matrix(0.194185,0.001942,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.194185,0.001942,-0.002500,0.249988,0,0);}
.ma_c00368{transform:matrix(0.194435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194435,0.000000,0.000000,0.250000,0,0);}
.mbb_c00368{transform:matrix(0.194932,0.001754,-0.002250,0.249990,0,0);-ms-transform:matrix(0.194932,0.001754,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.194932,0.001754,-0.002250,0.249990,0,0);}
.m132_c00368{transform:matrix(0.194937,0.003314,-0.004249,0.249964,0,0);-ms-transform:matrix(0.194937,0.003314,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.194937,0.003314,-0.004249,0.249964,0,0);}
.md1_c00368{transform:matrix(0.195076,0.001170,-0.001500,0.249996,0,0);-ms-transform:matrix(0.195076,0.001170,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.195076,0.001170,-0.001500,0.249996,0,0);}
.me9_c00368{transform:matrix(0.195430,0.001954,-0.002500,0.249988,0,0);-ms-transform:matrix(0.195430,0.001954,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.195430,0.001954,-0.002500,0.249988,0,0);}
.mfe_c00368{transform:matrix(0.195543,-0.002933,0.003750,0.249972,0,0);-ms-transform:matrix(0.195543,-0.002933,0.003750,0.249972,0,0);-webkit-transform:matrix(0.195543,-0.002933,0.003750,0.249972,0,0);}
.med_c00368{transform:matrix(0.195880,0.001959,-0.002500,0.249988,0,0);-ms-transform:matrix(0.195880,0.001959,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.195880,0.001959,-0.002500,0.249988,0,0);}
.mb_c00368{transform:matrix(0.197435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197435,0.000000,0.000000,0.250000,0,0);}
.me8_c00368{transform:matrix(0.197540,0.001975,-0.002500,0.249988,0,0);-ms-transform:matrix(0.197540,0.001975,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.197540,0.001975,-0.002500,0.249988,0,0);}
.m13a_c00368{transform:matrix(0.198701,0.003378,-0.004249,0.249964,0,0);-ms-transform:matrix(0.198701,0.003378,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.198701,0.003378,-0.004249,0.249964,0,0);}
.m49_c00368{transform:matrix(0.198857,0.001790,-0.002250,0.249990,0,0);-ms-transform:matrix(0.198857,0.001790,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.198857,0.001790,-0.002250,0.249990,0,0);}
.m106_c00368{transform:matrix(0.198918,0.002586,-0.003250,0.249979,0,0);-ms-transform:matrix(0.198918,0.002586,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.198918,0.002586,-0.003250,0.249979,0,0);}
.m167_c00368{transform:matrix(0.199301,0.003388,-0.004249,0.249964,0,0);-ms-transform:matrix(0.199301,0.003388,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.199301,0.003388,-0.004249,0.249964,0,0);}
.m164_c00368{transform:matrix(0.200356,0.003406,-0.004249,0.249964,0,0);-ms-transform:matrix(0.200356,0.003406,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.200356,0.003406,-0.004249,0.249964,0,0);}
.me5_c00368{transform:matrix(0.200735,0.002007,-0.002500,0.249988,0,0);-ms-transform:matrix(0.200735,0.002007,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.200735,0.002007,-0.002500,0.249988,0,0);}
.md3_c00368{transform:matrix(0.200946,0.001206,-0.001500,0.249996,0,0);-ms-transform:matrix(0.200946,0.001206,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.200946,0.001206,-0.001500,0.249996,0,0);}
.m3_c00368{transform:matrix(0.201265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201265,0.000000,0.000000,0.250000,0,0);}
.mf7_c00368{transform:matrix(0.201512,-0.003023,0.003750,0.249972,0,0);-ms-transform:matrix(0.201512,-0.003023,0.003750,0.249972,0,0);-webkit-transform:matrix(0.201512,-0.003023,0.003750,0.249972,0,0);}
.m8_c00368{transform:matrix(0.202155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202155,0.000000,0.000000,0.250000,0,0);}
.m41_c00368{transform:matrix(0.202422,0.001822,-0.002250,0.249990,0,0);-ms-transform:matrix(0.202422,0.001822,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.202422,0.001822,-0.002250,0.249990,0,0);}
.m4a_c00368{transform:matrix(0.202862,0.001826,-0.002250,0.249990,0,0);-ms-transform:matrix(0.202862,0.001826,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.202862,0.001826,-0.002250,0.249990,0,0);}
.mfc_c00368{transform:matrix(0.203142,-0.003047,0.003750,0.249972,0,0);-ms-transform:matrix(0.203142,-0.003047,0.003750,0.249972,0,0);-webkit-transform:matrix(0.203142,-0.003047,0.003750,0.249972,0,0);}
.mcb_c00368{transform:matrix(0.204186,0.001225,-0.001500,0.249996,0,0);-ms-transform:matrix(0.204186,0.001225,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.204186,0.001225,-0.001500,0.249996,0,0);}
.mf1_c00368{transform:matrix(0.204235,0.002042,-0.002500,0.249988,0,0);-ms-transform:matrix(0.204235,0.002042,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.204235,0.002042,-0.002500,0.249988,0,0);}
.m11f_c00368{transform:matrix(0.205815,0.003499,-0.004249,0.249964,0,0);-ms-transform:matrix(0.205815,0.003499,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.205815,0.003499,-0.004249,0.249964,0,0);}
.mf0_c00368{transform:matrix(0.206085,0.002061,-0.002500,0.249988,0,0);-ms-transform:matrix(0.206085,0.002061,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.206085,0.002061,-0.002500,0.249988,0,0);}
.m118_c00368{transform:matrix(0.206230,0.003506,-0.004249,0.249964,0,0);-ms-transform:matrix(0.206230,0.003506,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.206230,0.003506,-0.004249,0.249964,0,0);}
.mfd_c00368{transform:matrix(0.206447,-0.003097,0.003750,0.249972,0,0);-ms-transform:matrix(0.206447,-0.003097,0.003750,0.249972,0,0);-webkit-transform:matrix(0.206447,-0.003097,0.003750,0.249972,0,0);}
.m100_c00368{transform:matrix(0.206577,-0.003099,0.003750,0.249972,0,0);-ms-transform:matrix(0.206577,-0.003099,0.003750,0.249972,0,0);-webkit-transform:matrix(0.206577,-0.003099,0.003750,0.249972,0,0);}
.m11_c00368{transform:matrix(0.206600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206600,0.000000,0.000000,0.250000,0,0);}
.m120_c00368{transform:matrix(0.207395,0.003526,-0.004249,0.249964,0,0);-ms-transform:matrix(0.207395,0.003526,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.207395,0.003526,-0.004249,0.249964,0,0);}
.m133_c00368{transform:matrix(0.207435,0.003526,-0.004249,0.249964,0,0);-ms-transform:matrix(0.207435,0.003526,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.207435,0.003526,-0.004249,0.249964,0,0);}
.m13b_c00368{transform:matrix(0.207915,0.003535,-0.004249,0.249964,0,0);-ms-transform:matrix(0.207915,0.003535,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.207915,0.003535,-0.004249,0.249964,0,0);}
.m121_c00368{transform:matrix(0.208045,0.003537,-0.004249,0.249964,0,0);-ms-transform:matrix(0.208045,0.003537,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.208045,0.003537,-0.004249,0.249964,0,0);}
.mde_c00368{transform:matrix(0.208100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208100,0.000000,0.000000,0.250000,0,0);}
.m19_c00368{transform:matrix(0.208420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208420,0.000000,0.000000,0.250000,0,0);}
.m4c_c00368{transform:matrix(0.208587,0.001877,-0.002250,0.249990,0,0);-ms-transform:matrix(0.208587,0.001877,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.208587,0.001877,-0.002250,0.249990,0,0);}
.md_c00368{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.mb9_c00368{transform:matrix(0.209212,0.001883,-0.002250,0.249990,0,0);-ms-transform:matrix(0.209212,0.001883,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.209212,0.001883,-0.002250,0.249990,0,0);}
.m3f_c00368{transform:matrix(0.209692,0.001887,-0.002250,0.249990,0,0);-ms-transform:matrix(0.209692,0.001887,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.209692,0.001887,-0.002250,0.249990,0,0);}
.m139_c00368{transform:matrix(0.209745,0.003566,-0.004249,0.249964,0,0);-ms-transform:matrix(0.209745,0.003566,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.209745,0.003566,-0.004249,0.249964,0,0);}
.m14_c00368{transform:matrix(0.209805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209805,0.000000,0.000000,0.250000,0,0);}
.m119_c00368{transform:matrix(0.210155,0.003573,-0.004249,0.249964,0,0);-ms-transform:matrix(0.210155,0.003573,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.210155,0.003573,-0.004249,0.249964,0,0);}
.m101_c00368{transform:matrix(0.210391,-0.003156,0.003750,0.249972,0,0);-ms-transform:matrix(0.210391,-0.003156,0.003750,0.249972,0,0);-webkit-transform:matrix(0.210391,-0.003156,0.003750,0.249972,0,0);}
.m47_c00368{transform:matrix(0.210516,0.001895,-0.002250,0.249990,0,0);-ms-transform:matrix(0.210516,0.001895,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.210516,0.001895,-0.002250,0.249990,0,0);}
.m10a_c00368{transform:matrix(0.210542,0.002737,-0.003250,0.249979,0,0);-ms-transform:matrix(0.210542,0.002737,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.210542,0.002737,-0.003250,0.249979,0,0);}
.m87_c00368{transform:matrix(0.211621,0.001905,-0.002250,0.249990,0,0);-ms-transform:matrix(0.211621,0.001905,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.211621,0.001905,-0.002250,0.249990,0,0);}
.m12_c00368{transform:matrix(0.211845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211845,0.000000,0.000000,0.250000,0,0);}
.md5_c00368{transform:matrix(0.211866,0.001271,-0.001500,0.249996,0,0);-ms-transform:matrix(0.211866,0.001271,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.211866,0.001271,-0.001500,0.249996,0,0);}
.m46_c00368{transform:matrix(0.211871,0.001907,-0.002250,0.249990,0,0);-ms-transform:matrix(0.211871,0.001907,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.211871,0.001907,-0.002250,0.249990,0,0);}
.m123_c00368{transform:matrix(0.212119,0.003606,-0.004249,0.249964,0,0);-ms-transform:matrix(0.212119,0.003606,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.212119,0.003606,-0.004249,0.249964,0,0);}
.m14e_c00368{transform:matrix(0.212169,0.003607,-0.004249,0.249964,0,0);-ms-transform:matrix(0.212169,0.003607,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.212169,0.003607,-0.004249,0.249964,0,0);}
.mb3_c00368{transform:matrix(0.212176,0.001910,-0.002250,0.249990,0,0);-ms-transform:matrix(0.212176,0.001910,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.212176,0.001910,-0.002250,0.249990,0,0);}
.m16b_c00368{transform:matrix(0.212329,0.003610,-0.004249,0.249964,0,0);-ms-transform:matrix(0.212329,0.003610,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.212329,0.003610,-0.004249,0.249964,0,0);}
.m12f_c00368{transform:matrix(0.212484,0.003612,-0.004249,0.249964,0,0);-ms-transform:matrix(0.212484,0.003612,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.212484,0.003612,-0.004249,0.249964,0,0);}
.meb_c00368{transform:matrix(0.212519,0.002125,-0.002500,0.249988,0,0);-ms-transform:matrix(0.212519,0.002125,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.212519,0.002125,-0.002500,0.249988,0,0);}
.m173_c00368{transform:matrix(0.213144,0.003623,-0.004249,0.249964,0,0);-ms-transform:matrix(0.213144,0.003623,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.213144,0.003623,-0.004249,0.249964,0,0);}
.m6b_c00368{transform:matrix(0.213406,0.001921,-0.002250,0.249990,0,0);-ms-transform:matrix(0.213406,0.001921,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.213406,0.001921,-0.002250,0.249990,0,0);}
.me_c00368{transform:matrix(0.213485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213485,0.000000,0.000000,0.250000,0,0);}
.m18_c00368{transform:matrix(0.213515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213515,0.000000,0.000000,0.250000,0,0);}
.m2_c00368{transform:matrix(0.213775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213775,0.000000,0.000000,0.250000,0,0);}
.m11e_c00368{transform:matrix(0.213829,0.003635,-0.004249,0.249964,0,0);-ms-transform:matrix(0.213829,0.003635,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.213829,0.003635,-0.004249,0.249964,0,0);}
.mb5_c00368{transform:matrix(0.214846,0.001934,-0.002250,0.249990,0,0);-ms-transform:matrix(0.214846,0.001934,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.214846,0.001934,-0.002250,0.249990,0,0);}
.m44_c00368{transform:matrix(0.215406,0.001939,-0.002250,0.249990,0,0);-ms-transform:matrix(0.215406,0.001939,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.215406,0.001939,-0.002250,0.249990,0,0);}
.mc_c00368{transform:matrix(0.215525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215525,0.000000,0.000000,0.250000,0,0);}
.m4b_c00368{transform:matrix(0.215781,0.001942,-0.002250,0.249990,0,0);-ms-transform:matrix(0.215781,0.001942,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.215781,0.001942,-0.002250,0.249990,0,0);}
.mb6_c00368{transform:matrix(0.215806,0.001942,-0.002250,0.249990,0,0);-ms-transform:matrix(0.215806,0.001942,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.215806,0.001942,-0.002250,0.249990,0,0);}
.m12d_c00368{transform:matrix(0.216274,0.003677,-0.004249,0.249964,0,0);-ms-transform:matrix(0.216274,0.003677,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.216274,0.003677,-0.004249,0.249964,0,0);}
.mb1_c00368{transform:matrix(0.216296,0.001947,-0.002250,0.249990,0,0);-ms-transform:matrix(0.216296,0.001947,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.216296,0.001947,-0.002250,0.249990,0,0);}
.m157_c00368{transform:matrix(0.216314,0.003677,-0.004249,0.249964,0,0);-ms-transform:matrix(0.216314,0.003677,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.216314,0.003677,-0.004249,0.249964,0,0);}
.mee_c00368{transform:matrix(0.217199,0.002172,-0.002500,0.249988,0,0);-ms-transform:matrix(0.217199,0.002172,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.217199,0.002172,-0.002500,0.249988,0,0);}
.m180_c00368{transform:matrix(0.217510,0.001523,-0.001750,0.249994,0,0);-ms-transform:matrix(0.217510,0.001523,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.217510,0.001523,-0.001750,0.249994,0,0);}
.mbc_c00368{transform:matrix(0.217976,0.001962,-0.002250,0.249990,0,0);-ms-transform:matrix(0.217976,0.001962,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.217976,0.001962,-0.002250,0.249990,0,0);}
.m4_c00368{transform:matrix(0.217980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217980,0.000000,0.000000,0.250000,0,0);}
.m158_c00368{transform:matrix(0.218198,0.003709,-0.004249,0.249964,0,0);-ms-transform:matrix(0.218198,0.003709,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.218198,0.003709,-0.004249,0.249964,0,0);}
.m16c_c00368{transform:matrix(0.218543,0.003715,-0.004249,0.249964,0,0);-ms-transform:matrix(0.218543,0.003715,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.218543,0.003715,-0.004249,0.249964,0,0);}
.md9_c00368{transform:matrix(0.218855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218855,0.000000,0.000000,0.250000,0,0);}
.m129_c00368{transform:matrix(0.219173,0.003726,-0.004249,0.249964,0,0);-ms-transform:matrix(0.219173,0.003726,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.219173,0.003726,-0.004249,0.249964,0,0);}
.m12b_c00368{transform:matrix(0.219178,0.003726,-0.004249,0.249964,0,0);-ms-transform:matrix(0.219178,0.003726,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.219178,0.003726,-0.004249,0.249964,0,0);}
.m170_c00368{transform:matrix(0.219198,0.003726,-0.004249,0.249964,0,0);-ms-transform:matrix(0.219198,0.003726,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.219198,0.003726,-0.004249,0.249964,0,0);}
.m166_c00368{transform:matrix(0.219403,0.003730,-0.004249,0.249964,0,0);-ms-transform:matrix(0.219403,0.003730,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.219403,0.003730,-0.004249,0.249964,0,0);}
.m10e_c00368{transform:matrix(0.219701,0.002856,-0.003250,0.249979,0,0);-ms-transform:matrix(0.219701,0.002856,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.219701,0.002856,-0.003250,0.249979,0,0);}
.mf3_c00368{transform:matrix(0.220034,0.002200,-0.002500,0.249988,0,0);-ms-transform:matrix(0.220034,0.002200,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.220034,0.002200,-0.002500,0.249988,0,0);}
.m12a_c00368{transform:matrix(0.220163,0.003743,-0.004249,0.249964,0,0);-ms-transform:matrix(0.220163,0.003743,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.220163,0.003743,-0.004249,0.249964,0,0);}
.m85_c00368{transform:matrix(0.220241,0.001982,-0.002250,0.249990,0,0);-ms-transform:matrix(0.220241,0.001982,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.220241,0.001982,-0.002250,0.249990,0,0);}
.mb2_c00368{transform:matrix(0.220361,0.001983,-0.002250,0.249990,0,0);-ms-transform:matrix(0.220361,0.001983,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.220361,0.001983,-0.002250,0.249990,0,0);}
.m40_c00368{transform:matrix(0.220426,0.001984,-0.002250,0.249990,0,0);-ms-transform:matrix(0.220426,0.001984,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.220426,0.001984,-0.002250,0.249990,0,0);}
.mff_c00368{transform:matrix(0.220885,-0.003313,0.003750,0.249972,0,0);-ms-transform:matrix(0.220885,-0.003313,0.003750,0.249972,0,0);-webkit-transform:matrix(0.220885,-0.003313,0.003750,0.249972,0,0);}
.m16d_c00368{transform:matrix(0.221148,0.003760,-0.004249,0.249964,0,0);-ms-transform:matrix(0.221148,0.003760,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.221148,0.003760,-0.004249,0.249964,0,0);}
.mf5_c00368{transform:matrix(0.221220,-0.003318,0.003750,0.249972,0,0);-ms-transform:matrix(0.221220,-0.003318,0.003750,0.249972,0,0);-webkit-transform:matrix(0.221220,-0.003318,0.003750,0.249972,0,0);}
.m16a_c00368{transform:matrix(0.222208,0.003778,-0.004249,0.249964,0,0);-ms-transform:matrix(0.222208,0.003778,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.222208,0.003778,-0.004249,0.249964,0,0);}
.m11a_c00368{transform:matrix(0.223268,0.003796,-0.004249,0.249964,0,0);-ms-transform:matrix(0.223268,0.003796,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.223268,0.003796,-0.004249,0.249964,0,0);}
.m88_c00368{transform:matrix(0.223756,0.002014,-0.002250,0.249990,0,0);-ms-transform:matrix(0.223756,0.002014,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.223756,0.002014,-0.002250,0.249990,0,0);}
.mf_c00368{transform:matrix(0.223970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223970,0.000000,0.000000,0.250000,0,0);}
.m63_c00368{transform:matrix(0.224741,0.002023,-0.002250,0.249990,0,0);-ms-transform:matrix(0.224741,0.002023,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.224741,0.002023,-0.002250,0.249990,0,0);}
.m176_c00368{transform:matrix(0.225027,0.003825,-0.004249,0.249964,0,0);-ms-transform:matrix(0.225027,0.003825,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.225027,0.003825,-0.004249,0.249964,0,0);}
.mc8_c00368{transform:matrix(0.225334,0.002253,-0.002500,0.249988,0,0);-ms-transform:matrix(0.225334,0.002253,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.225334,0.002253,-0.002500,0.249988,0,0);}
.maf_c00368{transform:matrix(0.225345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225345,0.000000,0.000000,0.250000,0,0);}
.m179_c00368{transform:matrix(0.225432,0.003832,-0.004249,0.249964,0,0);-ms-transform:matrix(0.225432,0.003832,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.225432,0.003832,-0.004249,0.249964,0,0);}
.m4e_c00368{transform:matrix(0.225696,0.002031,-0.002250,0.249990,0,0);-ms-transform:matrix(0.225696,0.002031,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.225696,0.002031,-0.002250,0.249990,0,0);}
.m126_c00368{transform:matrix(0.225902,0.003840,-0.004249,0.249964,0,0);-ms-transform:matrix(0.225902,0.003840,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.225902,0.003840,-0.004249,0.249964,0,0);}
.m174_c00368{transform:matrix(0.226652,0.003853,-0.004249,0.249964,0,0);-ms-transform:matrix(0.226652,0.003853,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.226652,0.003853,-0.004249,0.249964,0,0);}
.mc1_c00368{transform:matrix(0.226734,0.002267,-0.002500,0.249988,0,0);-ms-transform:matrix(0.226734,0.002267,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.226734,0.002267,-0.002500,0.249988,0,0);}
.ma8_c00368{transform:matrix(0.226745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226745,0.000000,0.000000,0.250000,0,0);}
.m104_c00368{transform:matrix(0.226859,-0.003403,0.003750,0.249972,0,0);-ms-transform:matrix(0.226859,-0.003403,0.003750,0.249972,0,0);-webkit-transform:matrix(0.226859,-0.003403,0.003750,0.249972,0,0);}
.m98_c00368{transform:matrix(0.226996,0.002043,-0.002250,0.249990,0,0);-ms-transform:matrix(0.226996,0.002043,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.226996,0.002043,-0.002250,0.249990,0,0);}
.mf8_c00368{transform:matrix(0.227044,-0.003406,0.003750,0.249972,0,0);-ms-transform:matrix(0.227044,-0.003406,0.003750,0.249972,0,0);-webkit-transform:matrix(0.227044,-0.003406,0.003750,0.249972,0,0);}
.m1c_c00368{transform:matrix(0.227945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227945,0.000000,0.000000,0.250000,0,0);}
.me0_c00368{transform:matrix(0.228090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228090,0.000000,0.000000,0.250000,0,0);}
.m188_c00368{transform:matrix(0.228154,0.001597,-0.001750,0.249994,0,0);-ms-transform:matrix(0.228154,0.001597,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.228154,0.001597,-0.001750,0.249994,0,0);}
.m17b_c00368{transform:matrix(0.228597,0.003886,-0.004249,0.249964,0,0);-ms-transform:matrix(0.228597,0.003886,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.228597,0.003886,-0.004249,0.249964,0,0);}
.m168_c00368{transform:matrix(0.229177,0.003896,-0.004249,0.249964,0,0);-ms-transform:matrix(0.229177,0.003896,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.229177,0.003896,-0.004249,0.249964,0,0);}
.m43_c00368{transform:matrix(0.229221,0.002063,-0.002250,0.249990,0,0);-ms-transform:matrix(0.229221,0.002063,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.229221,0.002063,-0.002250,0.249990,0,0);}
.mbf_c00368{transform:matrix(0.229254,0.002293,-0.002500,0.249988,0,0);-ms-transform:matrix(0.229254,0.002293,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.229254,0.002293,-0.002500,0.249988,0,0);}
.mbd_c00368{transform:matrix(0.229514,0.002295,-0.002500,0.249988,0,0);-ms-transform:matrix(0.229514,0.002295,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.229514,0.002295,-0.002500,0.249988,0,0);}
.m162_c00368{transform:matrix(0.229742,0.003906,-0.004249,0.249964,0,0);-ms-transform:matrix(0.229742,0.003906,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.229742,0.003906,-0.004249,0.249964,0,0);}
.md4_c00368{transform:matrix(0.230216,0.001381,-0.001500,0.249996,0,0);-ms-transform:matrix(0.230216,0.001381,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.230216,0.001381,-0.001500,0.249996,0,0);}
.m163_c00368{transform:matrix(0.230882,0.003925,-0.004249,0.249964,0,0);-ms-transform:matrix(0.230882,0.003925,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.230882,0.003925,-0.004249,0.249964,0,0);}
.m9f_c00368{transform:matrix(0.230886,0.002078,-0.002250,0.249990,0,0);-ms-transform:matrix(0.230886,0.002078,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.230886,0.002078,-0.002250,0.249990,0,0);}
.m8a_c00368{transform:matrix(0.230906,0.002078,-0.002250,0.249990,0,0);-ms-transform:matrix(0.230906,0.002078,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.230906,0.002078,-0.002250,0.249990,0,0);}
.md8_c00368{transform:matrix(0.231801,0.001391,-0.001500,0.249996,0,0);-ms-transform:matrix(0.231801,0.001391,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.231801,0.001391,-0.001500,0.249996,0,0);}
.m8f_c00368{transform:matrix(0.232096,0.002089,-0.002250,0.249990,0,0);-ms-transform:matrix(0.232096,0.002089,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.232096,0.002089,-0.002250,0.249990,0,0);}
.m27_c00368{transform:matrix(0.232241,0.002090,-0.002250,0.249990,0,0);-ms-transform:matrix(0.232241,0.002090,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.232241,0.002090,-0.002250,0.249990,0,0);}
.m7_c00368{transform:matrix(0.232580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232580,0.000000,0.000000,0.250000,0,0);}
.me3_c00368{transform:matrix(0.232985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232985,0.000000,0.000000,0.250000,0,0);}
.m12e_c00368{transform:matrix(0.233061,0.003962,-0.004249,0.249964,0,0);-ms-transform:matrix(0.233061,0.003962,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.233061,0.003962,-0.004249,0.249964,0,0);}
.mc3_c00368{transform:matrix(0.233393,0.002334,-0.002500,0.249988,0,0);-ms-transform:matrix(0.233393,0.002334,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.233393,0.002334,-0.002500,0.249988,0,0);}
.m14a_c00368{transform:matrix(0.233661,0.003972,-0.004249,0.249964,0,0);-ms-transform:matrix(0.233661,0.003972,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.233661,0.003972,-0.004249,0.249964,0,0);}
.mb7_c00368{transform:matrix(0.234660,0.002112,-0.002250,0.249990,0,0);-ms-transform:matrix(0.234660,0.002112,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.234660,0.002112,-0.002250,0.249990,0,0);}
.m178_c00368{transform:matrix(0.234956,0.003994,-0.004249,0.249964,0,0);-ms-transform:matrix(0.234956,0.003994,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.234956,0.003994,-0.004249,0.249964,0,0);}
.m1a_c00368{transform:matrix(0.235095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235095,0.000000,0.000000,0.250000,0,0);}
.m86_c00368{transform:matrix(0.235300,0.002118,-0.002250,0.249990,0,0);-ms-transform:matrix(0.235300,0.002118,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.235300,0.002118,-0.002250,0.249990,0,0);}
.m183_c00368{transform:matrix(0.235834,0.001651,-0.001750,0.249994,0,0);-ms-transform:matrix(0.235834,0.001651,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.235834,0.001651,-0.001750,0.249994,0,0);}
.m122_c00368{transform:matrix(0.235911,0.004010,-0.004249,0.249964,0,0);-ms-transform:matrix(0.235911,0.004010,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.235911,0.004010,-0.004249,0.249964,0,0);}
.ma1_c00368{transform:matrix(0.235920,0.002123,-0.002250,0.249990,0,0);-ms-transform:matrix(0.235920,0.002123,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.235920,0.002123,-0.002250,0.249990,0,0);}
.mc5_c00368{transform:matrix(0.235983,0.002360,-0.002500,0.249988,0,0);-ms-transform:matrix(0.235983,0.002360,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.235983,0.002360,-0.002500,0.249988,0,0);}
.m99_c00368{transform:matrix(0.235985,0.002124,-0.002250,0.249990,0,0);-ms-transform:matrix(0.235985,0.002124,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.235985,0.002124,-0.002250,0.249990,0,0);}
.m177_c00368{transform:matrix(0.236216,0.004016,-0.004249,0.249964,0,0);-ms-transform:matrix(0.236216,0.004016,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.236216,0.004016,-0.004249,0.249964,0,0);}
.m175_c00368{transform:matrix(0.236771,0.004025,-0.004249,0.249964,0,0);-ms-transform:matrix(0.236771,0.004025,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.236771,0.004025,-0.004249,0.249964,0,0);}
.mab_c00368{transform:matrix(0.237120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237120,0.000000,0.000000,0.250000,0,0);}
.mc6_c00368{transform:matrix(0.237173,0.002372,-0.002500,0.249988,0,0);-ms-transform:matrix(0.237173,0.002372,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.237173,0.002372,-0.002500,0.249988,0,0);}
.m5d_c00368{transform:matrix(0.237175,0.002135,-0.002250,0.249990,0,0);-ms-transform:matrix(0.237175,0.002135,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.237175,0.002135,-0.002250,0.249990,0,0);}
.m128_c00368{transform:matrix(0.237256,0.004033,-0.004249,0.249964,0,0);-ms-transform:matrix(0.237256,0.004033,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.237256,0.004033,-0.004249,0.249964,0,0);}
.m14c_c00368{transform:matrix(0.237466,0.004037,-0.004249,0.249964,0,0);-ms-transform:matrix(0.237466,0.004037,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.237466,0.004037,-0.004249,0.249964,0,0);}
.md0_c00368{transform:matrix(0.237801,0.001427,-0.001500,0.249996,0,0);-ms-transform:matrix(0.237801,0.001427,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.237801,0.001427,-0.001500,0.249996,0,0);}
.m17d_c00368{transform:matrix(0.238006,0.004046,-0.004249,0.249964,0,0);-ms-transform:matrix(0.238006,0.004046,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.238006,0.004046,-0.004249,0.249964,0,0);}
.m16f_c00368{transform:matrix(0.238346,0.004052,-0.004249,0.249964,0,0);-ms-transform:matrix(0.238346,0.004052,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.238346,0.004052,-0.004249,0.249964,0,0);}
.m92_c00368{transform:matrix(0.238430,0.002146,-0.002250,0.249990,0,0);-ms-transform:matrix(0.238430,0.002146,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.238430,0.002146,-0.002250,0.249990,0,0);}
.m9d_c00368{transform:matrix(0.238525,0.002147,-0.002250,0.249990,0,0);-ms-transform:matrix(0.238525,0.002147,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.238525,0.002147,-0.002250,0.249990,0,0);}
.m5_c00368{transform:matrix(0.238780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238780,0.000000,0.000000,0.250000,0,0);}
.m160_c00368{transform:matrix(0.238815,0.004060,-0.004249,0.249964,0,0);-ms-transform:matrix(0.238815,0.004060,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.238815,0.004060,-0.004249,0.249964,0,0);}
.m89_c00368{transform:matrix(0.239115,0.002152,-0.002250,0.249990,0,0);-ms-transform:matrix(0.239115,0.002152,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.239115,0.002152,-0.002250,0.249990,0,0);}
.m9b_c00368{transform:matrix(0.239535,0.002156,-0.002250,0.249990,0,0);-ms-transform:matrix(0.239535,0.002156,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.239535,0.002156,-0.002250,0.249990,0,0);}
.mec_c00368{transform:matrix(0.239763,0.002398,-0.002500,0.249988,0,0);-ms-transform:matrix(0.239763,0.002398,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.239763,0.002398,-0.002500,0.249988,0,0);}
.ma6_c00368{transform:matrix(0.239910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239910,0.000000,0.000000,0.250000,0,0);}
.m15_c00368{transform:matrix(0.240025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240025,0.000000,0.000000,0.250000,0,0);}
.mb4_c00368{transform:matrix(0.240485,0.002164,-0.002250,0.249990,0,0);-ms-transform:matrix(0.240485,0.002164,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.240485,0.002164,-0.002250,0.249990,0,0);}
.mdc_c00368{transform:matrix(0.240730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240730,0.000000,0.000000,0.250000,0,0);}
.m48_c00368{transform:matrix(0.240775,0.002167,-0.002250,0.249990,0,0);-ms-transform:matrix(0.240775,0.002167,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.240775,0.002167,-0.002250,0.249990,0,0);}
.m24_c00368{transform:matrix(0.240830,0.002167,-0.002250,0.249990,0,0);-ms-transform:matrix(0.240830,0.002167,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.240830,0.002167,-0.002250,0.249990,0,0);}
.mba_c00368{transform:matrix(0.240990,0.002169,-0.002250,0.249990,0,0);-ms-transform:matrix(0.240990,0.002169,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.240990,0.002169,-0.002250,0.249990,0,0);}
.m64_c00368{transform:matrix(0.241405,0.002173,-0.002250,0.249990,0,0);-ms-transform:matrix(0.241405,0.002173,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.241405,0.002173,-0.002250,0.249990,0,0);}
.m17c_c00368{transform:matrix(0.241455,0.004105,-0.004249,0.249964,0,0);-ms-transform:matrix(0.241455,0.004105,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.241455,0.004105,-0.004249,0.249964,0,0);}
.mcc_c00368{transform:matrix(0.241701,0.001450,-0.001500,0.249996,0,0);-ms-transform:matrix(0.241701,0.001450,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.241701,0.001450,-0.001500,0.249996,0,0);}
.m20_c00368{transform:matrix(0.242360,0.002181,-0.002250,0.249990,0,0);-ms-transform:matrix(0.242360,0.002181,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.242360,0.002181,-0.002250,0.249990,0,0);}
.m25_c00368{transform:matrix(0.242735,0.002185,-0.002250,0.249990,0,0);-ms-transform:matrix(0.242735,0.002185,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.242735,0.002185,-0.002250,0.249990,0,0);}
.mda_c00368{transform:matrix(0.242955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242955,0.000000,0.000000,0.250000,0,0);}
.m9e_c00368{transform:matrix(0.243025,0.002187,-0.002250,0.249990,0,0);-ms-transform:matrix(0.243025,0.002187,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.243025,0.002187,-0.002250,0.249990,0,0);}
.m9_c00368{transform:matrix(0.243270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243270,0.000000,0.000000,0.250000,0,0);}
.m2a_c00368{transform:matrix(0.243560,0.002192,-0.002250,0.249990,0,0);-ms-transform:matrix(0.243560,0.002192,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.243560,0.002192,-0.002250,0.249990,0,0);}
.m13_c00368{transform:matrix(0.243680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243680,0.000000,0.000000,0.250000,0,0);}
.m141_c00368{transform:matrix(0.243805,0.004145,-0.004249,0.249964,0,0);-ms-transform:matrix(0.243805,0.004145,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.243805,0.004145,-0.004249,0.249964,0,0);}
.m117_c00368{transform:matrix(0.243960,0.004147,-0.004249,0.249964,0,0);-ms-transform:matrix(0.243960,0.004147,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.243960,0.004147,-0.004249,0.249964,0,0);}
.m14f_c00368{transform:matrix(0.244060,0.004149,-0.004249,0.249964,0,0);-ms-transform:matrix(0.244060,0.004149,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.244060,0.004149,-0.004249,0.249964,0,0);}
.m161_c00368{transform:matrix(0.244365,0.004154,-0.004249,0.249964,0,0);-ms-transform:matrix(0.244365,0.004154,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.244365,0.004154,-0.004249,0.249964,0,0);}
.m6_c00368{transform:matrix(0.244395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244395,0.000000,0.000000,0.250000,0,0);}
.mf9_c00368{transform:matrix(0.244582,-0.003669,0.003750,0.249972,0,0);-ms-transform:matrix(0.244582,-0.003669,0.003750,0.249972,0,0);-webkit-transform:matrix(0.244582,-0.003669,0.003750,0.249972,0,0);}
.m140_c00368{transform:matrix(0.244725,0.004160,-0.004249,0.249964,0,0);-ms-transform:matrix(0.244725,0.004160,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.244725,0.004160,-0.004249,0.249964,0,0);}
.mad_c00368{transform:matrix(0.244880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244880,0.000000,0.000000,0.250000,0,0);}
.m153_c00368{transform:matrix(0.245245,0.004169,-0.004249,0.249964,0,0);-ms-transform:matrix(0.245245,0.004169,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.245245,0.004169,-0.004249,0.249964,0,0);}
.md2_c00368{transform:matrix(0.245441,0.001473,-0.001500,0.249996,0,0);-ms-transform:matrix(0.245441,0.001473,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.245441,0.001473,-0.001500,0.249996,0,0);}
.m150_c00368{transform:matrix(0.245445,0.004173,-0.004249,0.249964,0,0);-ms-transform:matrix(0.245445,0.004173,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.245445,0.004173,-0.004249,0.249964,0,0);}
.m165_c00368{transform:matrix(0.245804,0.004179,-0.004249,0.249964,0,0);-ms-transform:matrix(0.245804,0.004179,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.245804,0.004179,-0.004249,0.249964,0,0);}
.m30_c00368{transform:matrix(0.245825,0.002212,-0.002250,0.249990,0,0);-ms-transform:matrix(0.245825,0.002212,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.245825,0.002212,-0.002250,0.249990,0,0);}
.m90_c00368{transform:matrix(0.246525,0.002219,-0.002250,0.249990,0,0);-ms-transform:matrix(0.246525,0.002219,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.246525,0.002219,-0.002250,0.249990,0,0);}
.m61_c00368{transform:matrix(0.247205,0.002225,-0.002250,0.249990,0,0);-ms-transform:matrix(0.247205,0.002225,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.247205,0.002225,-0.002250,0.249990,0,0);}
.m82_c00368{transform:matrix(0.247345,0.002226,-0.002250,0.249990,0,0);-ms-transform:matrix(0.247345,0.002226,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.247345,0.002226,-0.002250,0.249990,0,0);}
.mdb_c00368{transform:matrix(0.247615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247615,0.000000,0.000000,0.250000,0,0);}
.m2f_c00368{transform:matrix(0.248095,0.002233,-0.002250,0.249990,0,0);-ms-transform:matrix(0.248095,0.002233,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.248095,0.002233,-0.002250,0.249990,0,0);}
.mae_c00368{transform:matrix(0.248130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248130,0.000000,0.000000,0.250000,0,0);}
.me1_c00368{transform:matrix(0.248305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248305,0.000000,0.000000,0.250000,0,0);}
.m184_c00368{transform:matrix(0.248634,0.001740,-0.001750,0.249994,0,0);-ms-transform:matrix(0.248634,0.001740,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.248634,0.001740,-0.001750,0.249994,0,0);}
.m17e_c00368{transform:matrix(0.248744,0.004229,-0.004249,0.249964,0,0);-ms-transform:matrix(0.248744,0.004229,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.248744,0.004229,-0.004249,0.249964,0,0);}
.m57_c00368{transform:matrix(0.248905,0.002240,-0.002250,0.249990,0,0);-ms-transform:matrix(0.248905,0.002240,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.248905,0.002240,-0.002250,0.249990,0,0);}
.m17f_c00368{transform:matrix(0.248969,0.004232,-0.004249,0.249964,0,0);-ms-transform:matrix(0.248969,0.004232,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.248969,0.004232,-0.004249,0.249964,0,0);}
.m2c_c00368{transform:matrix(0.249605,0.002246,-0.002250,0.249990,0,0);-ms-transform:matrix(0.249605,0.002246,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.249605,0.002246,-0.002250,0.249990,0,0);}
.ma3_c00368{transform:matrix(0.249980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249980,0.000000,0.000000,0.250000,0,0);}
.m186_c00368{transform:matrix(0.250044,0.001750,-0.001750,0.249994,0,0);-ms-transform:matrix(0.250044,0.001750,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.250044,0.001750,-0.001750,0.249994,0,0);}
.m9a_c00368{transform:matrix(0.250290,0.002253,-0.002250,0.249990,0,0);-ms-transform:matrix(0.250290,0.002253,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.250290,0.002253,-0.002250,0.249990,0,0);}
.m14b_c00368{transform:matrix(0.250434,0.004257,-0.004249,0.249964,0,0);-ms-transform:matrix(0.250434,0.004257,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.250434,0.004257,-0.004249,0.249964,0,0);}
.m21_c00368{transform:matrix(0.250555,0.002255,-0.002250,0.249990,0,0);-ms-transform:matrix(0.250555,0.002255,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.250555,0.002255,-0.002250,0.249990,0,0);}
.m143_c00368{transform:matrix(0.250624,0.004261,-0.004249,0.249964,0,0);-ms-transform:matrix(0.250624,0.004261,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.250624,0.004261,-0.004249,0.249964,0,0);}
.m148_c00368{transform:matrix(0.250894,0.004265,-0.004249,0.249964,0,0);-ms-transform:matrix(0.250894,0.004265,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.250894,0.004265,-0.004249,0.249964,0,0);}
.m185_c00368{transform:matrix(0.250964,0.001757,-0.001750,0.249994,0,0);-ms-transform:matrix(0.250964,0.001757,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.250964,0.001757,-0.001750,0.249994,0,0);}
.m1b_c00368{transform:matrix(0.251025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251025,0.000000,0.000000,0.250000,0,0);}
.m31_c00368{transform:matrix(0.251270,0.002261,-0.002250,0.249990,0,0);-ms-transform:matrix(0.251270,0.002261,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.251270,0.002261,-0.002250,0.249990,0,0);}
.m1e_c00368{transform:matrix(0.252160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252160,0.000000,0.000000,0.250000,0,0);}
.mc4_c00368{transform:matrix(0.252577,0.002526,-0.002500,0.249988,0,0);-ms-transform:matrix(0.252577,0.002526,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.252577,0.002526,-0.002500,0.249988,0,0);}
.m17a_c00368{transform:matrix(0.252633,0.004295,-0.004249,0.249964,0,0);-ms-transform:matrix(0.252633,0.004295,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.252633,0.004295,-0.004249,0.249964,0,0);}
.m9c_c00368{transform:matrix(0.252870,0.002276,-0.002250,0.249990,0,0);-ms-transform:matrix(0.252870,0.002276,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.252870,0.002276,-0.002250,0.249990,0,0);}
.m147_c00368{transform:matrix(0.252998,0.004301,-0.004249,0.249964,0,0);-ms-transform:matrix(0.252998,0.004301,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.252998,0.004301,-0.004249,0.249964,0,0);}
.m97_c00368{transform:matrix(0.253025,0.002277,-0.002250,0.249990,0,0);-ms-transform:matrix(0.253025,0.002277,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.253025,0.002277,-0.002250,0.249990,0,0);}
.m156_c00368{transform:matrix(0.253808,0.004315,-0.004249,0.249964,0,0);-ms-transform:matrix(0.253808,0.004315,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.253808,0.004315,-0.004249,0.249964,0,0);}
.m8d_c00368{transform:matrix(0.254655,0.002292,-0.002250,0.249990,0,0);-ms-transform:matrix(0.254655,0.002292,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.254655,0.002292,-0.002250,0.249990,0,0);}
.m15b_c00368{transform:matrix(0.254663,0.004329,-0.004249,0.249964,0,0);-ms-transform:matrix(0.254663,0.004329,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.254663,0.004329,-0.004249,0.249964,0,0);}
.m159_c00368{transform:matrix(0.255223,0.004339,-0.004249,0.249964,0,0);-ms-transform:matrix(0.255223,0.004339,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.255223,0.004339,-0.004249,0.249964,0,0);}
.m91_c00368{transform:matrix(0.256310,0.002307,-0.002250,0.249990,0,0);-ms-transform:matrix(0.256310,0.002307,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.256310,0.002307,-0.002250,0.249990,0,0);}
.m50_c00368{transform:matrix(0.256440,0.002308,-0.002250,0.249990,0,0);-ms-transform:matrix(0.256440,0.002308,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.256440,0.002308,-0.002250,0.249990,0,0);}
.m5b_c00368{transform:matrix(0.257775,0.002320,-0.002250,0.249990,0,0);-ms-transform:matrix(0.257775,0.002320,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.257775,0.002320,-0.002250,0.249990,0,0);}
.mc2_c00368{transform:matrix(0.258057,0.002581,-0.002500,0.249988,0,0);-ms-transform:matrix(0.258057,0.002581,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.258057,0.002581,-0.002500,0.249988,0,0);}
.m95_c00368{transform:matrix(0.258305,0.002325,-0.002250,0.249990,0,0);-ms-transform:matrix(0.258305,0.002325,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.258305,0.002325,-0.002250,0.249990,0,0);}
.m28_c00368{transform:matrix(0.258865,0.002330,-0.002250,0.249990,0,0);-ms-transform:matrix(0.258865,0.002330,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.258865,0.002330,-0.002250,0.249990,0,0);}
.mcd_c00368{transform:matrix(0.259155,0.001555,-0.001500,0.249996,0,0);-ms-transform:matrix(0.259155,0.001555,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.259155,0.001555,-0.001500,0.249996,0,0);}
.m8b_c00368{transform:matrix(0.259394,0.002335,-0.002250,0.249990,0,0);-ms-transform:matrix(0.259394,0.002335,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.259394,0.002335,-0.002250,0.249990,0,0);}
.m142_c00368{transform:matrix(0.259917,0.004419,-0.004249,0.249964,0,0);-ms-transform:matrix(0.259917,0.004419,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.259917,0.004419,-0.004249,0.249964,0,0);}
.m65_c00368{transform:matrix(0.260719,0.002346,-0.002250,0.249990,0,0);-ms-transform:matrix(0.260719,0.002346,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.260719,0.002346,-0.002250,0.249990,0,0);}
.m60_c00368{transform:matrix(0.261029,0.002349,-0.002250,0.249990,0,0);-ms-transform:matrix(0.261029,0.002349,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.261029,0.002349,-0.002250,0.249990,0,0);}
.m145_c00368{transform:matrix(0.261172,0.004440,-0.004249,0.249964,0,0);-ms-transform:matrix(0.261172,0.004440,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.261172,0.004440,-0.004249,0.249964,0,0);}
.m13d_c00368{transform:matrix(0.261202,0.004440,-0.004249,0.249964,0,0);-ms-transform:matrix(0.261202,0.004440,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.261202,0.004440,-0.004249,0.249964,0,0);}
.mc7_c00368{transform:matrix(0.261352,0.002614,-0.002500,0.249988,0,0);-ms-transform:matrix(0.261352,0.002614,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.261352,0.002614,-0.002500,0.249988,0,0);}
.m52_c00368{transform:matrix(0.261879,0.002357,-0.002250,0.249990,0,0);-ms-transform:matrix(0.261879,0.002357,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.261879,0.002357,-0.002250,0.249990,0,0);}
.m1_c00368{transform:matrix(0.262125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262125,0.000000,0.000000,0.250000,0,0);}
.m22_c00368{transform:matrix(0.262244,0.002360,-0.002250,0.249990,0,0);-ms-transform:matrix(0.262244,0.002360,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.262244,0.002360,-0.002250,0.249990,0,0);}
.m125_c00368{transform:matrix(0.263107,0.004473,-0.004249,0.249964,0,0);-ms-transform:matrix(0.263107,0.004473,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.263107,0.004473,-0.004249,0.249964,0,0);}
.m4d_c00368{transform:matrix(0.263749,0.002374,-0.002250,0.249990,0,0);-ms-transform:matrix(0.263749,0.002374,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.263749,0.002374,-0.002250,0.249990,0,0);}
.m5e_c00368{transform:matrix(0.263929,0.002375,-0.002250,0.249990,0,0);-ms-transform:matrix(0.263929,0.002375,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.263929,0.002375,-0.002250,0.249990,0,0);}
.m181_c00368{transform:matrix(0.264014,0.001848,-0.001750,0.249994,0,0);-ms-transform:matrix(0.264014,0.001848,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.264014,0.001848,-0.001750,0.249994,0,0);}
.m155_c00368{transform:matrix(0.264207,0.004492,-0.004249,0.249964,0,0);-ms-transform:matrix(0.264207,0.004492,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.264207,0.004492,-0.004249,0.249964,0,0);}
.m3e_c00368{transform:matrix(0.264254,0.002378,-0.002250,0.249990,0,0);-ms-transform:matrix(0.264254,0.002378,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.264254,0.002378,-0.002250,0.249990,0,0);}
.m58_c00368{transform:matrix(0.264799,0.002383,-0.002250,0.249990,0,0);-ms-transform:matrix(0.264799,0.002383,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.264799,0.002383,-0.002250,0.249990,0,0);}
.mac_c00368{transform:matrix(0.264990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264990,0.000000,0.000000,0.250000,0,0);}
.m4f_c00368{transform:matrix(0.265189,0.002387,-0.002250,0.249990,0,0);-ms-transform:matrix(0.265189,0.002387,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.265189,0.002387,-0.002250,0.249990,0,0);}
.m54_c00368{transform:matrix(0.265209,0.002387,-0.002250,0.249990,0,0);-ms-transform:matrix(0.265209,0.002387,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.265209,0.002387,-0.002250,0.249990,0,0);}
.m1f_c00368{transform:matrix(0.266609,0.002399,-0.002250,0.249990,0,0);-ms-transform:matrix(0.266609,0.002399,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.266609,0.002399,-0.002250,0.249990,0,0);}
.m5c_c00368{transform:matrix(0.267084,0.002404,-0.002250,0.249990,0,0);-ms-transform:matrix(0.267084,0.002404,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.267084,0.002404,-0.002250,0.249990,0,0);}
.m34_c00368{transform:matrix(0.267129,0.002404,-0.002250,0.249990,0,0);-ms-transform:matrix(0.267129,0.002404,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.267129,0.002404,-0.002250,0.249990,0,0);}
.m96_c00368{transform:matrix(0.267404,0.002407,-0.002250,0.249990,0,0);-ms-transform:matrix(0.267404,0.002407,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.267404,0.002407,-0.002250,0.249990,0,0);}
.m7f_c00368{transform:matrix(0.267499,0.002407,-0.002250,0.249990,0,0);-ms-transform:matrix(0.267499,0.002407,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.267499,0.002407,-0.002250,0.249990,0,0);}
.m38_c00368{transform:matrix(0.267684,0.002409,-0.002250,0.249990,0,0);-ms-transform:matrix(0.267684,0.002409,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.267684,0.002409,-0.002250,0.249990,0,0);}
.mdf_c00368{transform:matrix(0.267730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267730,0.000000,0.000000,0.250000,0,0);}
.m15f_c00368{transform:matrix(0.267846,0.004553,-0.004249,0.249964,0,0);-ms-transform:matrix(0.267846,0.004553,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.267846,0.004553,-0.004249,0.249964,0,0);}
.m3c_c00368{transform:matrix(0.268319,0.002415,-0.002250,0.249990,0,0);-ms-transform:matrix(0.268319,0.002415,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.268319,0.002415,-0.002250,0.249990,0,0);}
.m32_c00368{transform:matrix(0.268569,0.002417,-0.002250,0.249990,0,0);-ms-transform:matrix(0.268569,0.002417,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.268569,0.002417,-0.002250,0.249990,0,0);}
.m26_c00368{transform:matrix(0.268739,0.002419,-0.002250,0.249990,0,0);-ms-transform:matrix(0.268739,0.002419,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.268739,0.002419,-0.002250,0.249990,0,0);}
.mc0_c00368{transform:matrix(0.268952,0.002690,-0.002500,0.249988,0,0);-ms-transform:matrix(0.268952,0.002690,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.268952,0.002690,-0.002500,0.249988,0,0);}
.mbe_c00368{transform:matrix(0.269022,0.002690,-0.002500,0.249988,0,0);-ms-transform:matrix(0.269022,0.002690,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.269022,0.002690,-0.002500,0.249988,0,0);}
.m154_c00368{transform:matrix(0.269481,0.004581,-0.004249,0.249964,0,0);-ms-transform:matrix(0.269481,0.004581,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.269481,0.004581,-0.004249,0.249964,0,0);}
.m7e_c00368{transform:matrix(0.270044,0.002430,-0.002250,0.249990,0,0);-ms-transform:matrix(0.270044,0.002430,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.270044,0.002430,-0.002250,0.249990,0,0);}
.m59_c00368{transform:matrix(0.270459,0.002434,-0.002250,0.249990,0,0);-ms-transform:matrix(0.270459,0.002434,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.270459,0.002434,-0.002250,0.249990,0,0);}
.m36_c00368{transform:matrix(0.270679,0.002436,-0.002250,0.249990,0,0);-ms-transform:matrix(0.270679,0.002436,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.270679,0.002436,-0.002250,0.249990,0,0);}
.me2_c00368{transform:matrix(0.270690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270690,0.000000,0.000000,0.250000,0,0);}
.m182_c00368{transform:matrix(0.271253,0.001899,-0.001750,0.249994,0,0);-ms-transform:matrix(0.271253,0.001899,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.271253,0.001899,-0.001750,0.249994,0,0);}
.m23_c00368{transform:matrix(0.271889,0.002447,-0.002250,0.249990,0,0);-ms-transform:matrix(0.271889,0.002447,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.271889,0.002447,-0.002250,0.249990,0,0);}
.m62_c00368{transform:matrix(0.271974,0.002448,-0.002250,0.249990,0,0);-ms-transform:matrix(0.271974,0.002448,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.271974,0.002448,-0.002250,0.249990,0,0);}
.mdd_c00368{transform:matrix(0.272220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272220,0.000000,0.000000,0.250000,0,0);}
.m149_c00368{transform:matrix(0.273970,0.004657,-0.004249,0.249964,0,0);-ms-transform:matrix(0.273970,0.004657,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.273970,0.004657,-0.004249,0.249964,0,0);}
.maa_c00368{transform:matrix(0.274860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274860,0.000000,0.000000,0.250000,0,0);}
.m172_c00368{transform:matrix(0.275130,0.004677,-0.004249,0.249964,0,0);-ms-transform:matrix(0.275130,0.004677,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.275130,0.004677,-0.004249,0.249964,0,0);}
.ma4_c00368{transform:matrix(0.275640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275640,0.000000,0.000000,0.250000,0,0);}
.ma5_c00368{transform:matrix(0.275900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275900,0.000000,0.000000,0.250000,0,0);}
.m1d_c00368{transform:matrix(0.276440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276440,0.000000,0.000000,0.250000,0,0);}
.m13f_c00368{transform:matrix(0.276800,0.004706,-0.004249,0.249964,0,0);-ms-transform:matrix(0.276800,0.004706,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.276800,0.004706,-0.004249,0.249964,0,0);}
.m146_c00368{transform:matrix(0.277855,0.004724,-0.004249,0.249964,0,0);-ms-transform:matrix(0.277855,0.004724,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.277855,0.004724,-0.004249,0.249964,0,0);}
.m152_c00368{transform:matrix(0.278360,0.004732,-0.004249,0.249964,0,0);-ms-transform:matrix(0.278360,0.004732,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.278360,0.004732,-0.004249,0.249964,0,0);}
.m144_c00368{transform:matrix(0.279735,0.004755,-0.004249,0.249964,0,0);-ms-transform:matrix(0.279735,0.004755,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.279735,0.004755,-0.004249,0.249964,0,0);}
.m66_c00368{transform:matrix(0.280429,0.002524,-0.002250,0.249990,0,0);-ms-transform:matrix(0.280429,0.002524,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.280429,0.002524,-0.002250,0.249990,0,0);}
.m83_c00368{transform:matrix(0.280459,0.002524,-0.002250,0.249990,0,0);-ms-transform:matrix(0.280459,0.002524,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.280459,0.002524,-0.002250,0.249990,0,0);}
.ma0_c00368{transform:matrix(0.280619,0.002526,-0.002250,0.249990,0,0);-ms-transform:matrix(0.280619,0.002526,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.280619,0.002526,-0.002250,0.249990,0,0);}
.m14d_c00368{transform:matrix(0.282004,0.004794,-0.004249,0.249964,0,0);-ms-transform:matrix(0.282004,0.004794,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.282004,0.004794,-0.004249,0.249964,0,0);}
.md7_c00368{transform:matrix(0.283355,0.001700,-0.001500,0.249996,0,0);-ms-transform:matrix(0.283355,0.001700,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.283355,0.001700,-0.001500,0.249996,0,0);}
.m84_c00368{transform:matrix(0.284088,0.002557,-0.002250,0.249990,0,0);-ms-transform:matrix(0.284088,0.002557,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.284088,0.002557,-0.002250,0.249990,0,0);}
.m11c_c00368{transform:matrix(0.284924,0.004844,-0.004249,0.249964,0,0);-ms-transform:matrix(0.284924,0.004844,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.284924,0.004844,-0.004249,0.249964,0,0);}
.m2d_c00368{transform:matrix(0.285078,0.002566,-0.002250,0.249990,0,0);-ms-transform:matrix(0.285078,0.002566,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.285078,0.002566,-0.002250,0.249990,0,0);}
.ma2_c00368{transform:matrix(0.285395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285395,0.000000,0.000000,0.250000,0,0);}
.m55_c00368{transform:matrix(0.286528,0.002579,-0.002250,0.249990,0,0);-ms-transform:matrix(0.286528,0.002579,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.286528,0.002579,-0.002250,0.249990,0,0);}
.ma7_c00368{transform:matrix(0.287280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287280,0.000000,0.000000,0.250000,0,0);}
.m102_c00368{transform:matrix(0.287478,-0.004312,0.003750,0.249972,0,0);-ms-transform:matrix(0.287478,-0.004312,0.003750,0.249972,0,0);-webkit-transform:matrix(0.287478,-0.004312,0.003750,0.249972,0,0);}
.me4_c00368{transform:matrix(0.288255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288255,0.000000,0.000000,0.250000,0,0);}
.m2b_c00368{transform:matrix(0.288818,0.002599,-0.002250,0.249990,0,0);-ms-transform:matrix(0.288818,0.002599,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.288818,0.002599,-0.002250,0.249990,0,0);}
.m12c_c00368{transform:matrix(0.289178,0.004916,-0.004249,0.249964,0,0);-ms-transform:matrix(0.289178,0.004916,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.289178,0.004916,-0.004249,0.249964,0,0);}
.mc9_c00368{transform:matrix(0.290855,0.002909,-0.002500,0.249988,0,0);-ms-transform:matrix(0.290855,0.002909,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.290855,0.002909,-0.002500,0.249988,0,0);}
.m80_c00368{transform:matrix(0.290943,0.002618,-0.002250,0.249990,0,0);-ms-transform:matrix(0.290943,0.002618,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.290943,0.002618,-0.002250,0.249990,0,0);}
.m7b_c00368{transform:matrix(0.292028,0.002628,-0.002250,0.249990,0,0);-ms-transform:matrix(0.292028,0.002628,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.292028,0.002628,-0.002250,0.249990,0,0);}
.m35_c00368{transform:matrix(0.292223,0.002630,-0.002250,0.249990,0,0);-ms-transform:matrix(0.292223,0.002630,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.292223,0.002630,-0.002250,0.249990,0,0);}
.m7c_c00368{transform:matrix(0.292853,0.002636,-0.002250,0.249990,0,0);-ms-transform:matrix(0.292853,0.002636,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.292853,0.002636,-0.002250,0.249990,0,0);}
.m81_c00368{transform:matrix(0.293353,0.002640,-0.002250,0.249990,0,0);-ms-transform:matrix(0.293353,0.002640,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.293353,0.002640,-0.002250,0.249990,0,0);}
.m53_c00368{transform:matrix(0.294043,0.002646,-0.002250,0.249990,0,0);-ms-transform:matrix(0.294043,0.002646,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.294043,0.002646,-0.002250,0.249990,0,0);}
.m2e_c00368{transform:matrix(0.294443,0.002650,-0.002250,0.249990,0,0);-ms-transform:matrix(0.294443,0.002650,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.294443,0.002650,-0.002250,0.249990,0,0);}
.m93_c00368{transform:matrix(0.294618,0.002652,-0.002250,0.249990,0,0);-ms-transform:matrix(0.294618,0.002652,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.294618,0.002652,-0.002250,0.249990,0,0);}
.m51_c00368{transform:matrix(0.297068,0.002674,-0.002250,0.249990,0,0);-ms-transform:matrix(0.297068,0.002674,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.297068,0.002674,-0.002250,0.249990,0,0);}
.m94_c00368{transform:matrix(0.297728,0.002680,-0.002250,0.249990,0,0);-ms-transform:matrix(0.297728,0.002680,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.297728,0.002680,-0.002250,0.249990,0,0);}
.m39_c00368{transform:matrix(0.298803,0.002689,-0.002250,0.249990,0,0);-ms-transform:matrix(0.298803,0.002689,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.298803,0.002689,-0.002250,0.249990,0,0);}
.mce_c00368{transform:matrix(0.298910,0.001793,-0.001500,0.249996,0,0);-ms-transform:matrix(0.298910,0.001793,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.298910,0.001793,-0.001500,0.249996,0,0);}
.m56_c00368{transform:matrix(0.299298,0.002694,-0.002250,0.249990,0,0);-ms-transform:matrix(0.299298,0.002694,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.299298,0.002694,-0.002250,0.249990,0,0);}
.m171_c00368{transform:matrix(0.299687,0.005095,-0.004249,0.249964,0,0);-ms-transform:matrix(0.299687,0.005095,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.299687,0.005095,-0.004249,0.249964,0,0);}
.m29_c00368{transform:matrix(0.300223,0.002702,-0.002250,0.249990,0,0);-ms-transform:matrix(0.300223,0.002702,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.300223,0.002702,-0.002250,0.249990,0,0);}
.m13e_c00368{transform:matrix(0.307021,0.005219,-0.004249,0.249964,0,0);-ms-transform:matrix(0.307021,0.005219,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.307021,0.005219,-0.004249,0.249964,0,0);}
.m3d_c00368{transform:matrix(0.308588,0.002777,-0.002250,0.249990,0,0);-ms-transform:matrix(0.308588,0.002777,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.308588,0.002777,-0.002250,0.249990,0,0);}
.mb0_c00368{transform:matrix(0.310690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310690,0.000000,0.000000,0.250000,0,0);}
.m3a_c00368{transform:matrix(0.312492,0.002812,-0.002250,0.249990,0,0);-ms-transform:matrix(0.312492,0.002812,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.312492,0.002812,-0.002250,0.249990,0,0);}
.m37_c00368{transform:matrix(0.315042,0.002835,-0.002250,0.249990,0,0);-ms-transform:matrix(0.315042,0.002835,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.315042,0.002835,-0.002250,0.249990,0,0);}
.m151_c00368{transform:matrix(0.319354,0.005429,-0.004249,0.249964,0,0);-ms-transform:matrix(0.319354,0.005429,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.319354,0.005429,-0.004249,0.249964,0,0);}
.mcf_c00368{transform:matrix(0.319539,0.001917,-0.001500,0.249996,0,0);-ms-transform:matrix(0.319539,0.001917,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.319539,0.001917,-0.001500,0.249996,0,0);}
.m3b_c00368{transform:matrix(0.328332,0.002955,-0.002250,0.249990,0,0);-ms-transform:matrix(0.328332,0.002955,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.328332,0.002955,-0.002250,0.249990,0,0);}
.m7a_c00368{transform:matrix(0.332782,0.002995,-0.002250,0.249990,0,0);-ms-transform:matrix(0.332782,0.002995,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.332782,0.002995,-0.002250,0.249990,0,0);}
.m15d_c00368{transform:matrix(0.336006,0.005712,-0.004249,0.249964,0,0);-ms-transform:matrix(0.336006,0.005712,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.336006,0.005712,-0.004249,0.249964,0,0);}
.m15e_c00368{transform:matrix(0.345845,0.005879,-0.004249,0.249964,0,0);-ms-transform:matrix(0.345845,0.005879,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.345845,0.005879,-0.004249,0.249964,0,0);}
.m78_c00368{transform:matrix(0.347176,0.003125,-0.002250,0.249990,0,0);-ms-transform:matrix(0.347176,0.003125,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.347176,0.003125,-0.002250,0.249990,0,0);}
.m124_c00368{transform:matrix(0.353469,0.006009,-0.004249,0.249964,0,0);-ms-transform:matrix(0.353469,0.006009,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.353469,0.006009,-0.004249,0.249964,0,0);}
.m11d_c00368{transform:matrix(0.354059,0.006019,-0.004249,0.249964,0,0);-ms-transform:matrix(0.354059,0.006019,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.354059,0.006019,-0.004249,0.249964,0,0);}
.m33_c00368{transform:matrix(0.357186,0.003215,-0.002250,0.249990,0,0);-ms-transform:matrix(0.357186,0.003215,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.357186,0.003215,-0.002250,0.249990,0,0);}
.m7d_c00368{transform:matrix(0.364645,0.003282,-0.002250,0.249990,0,0);-ms-transform:matrix(0.364645,0.003282,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.364645,0.003282,-0.002250,0.249990,0,0);}
.md6_c00368{transform:matrix(0.370643,0.002224,-0.001500,0.249996,0,0);-ms-transform:matrix(0.370643,0.002224,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.370643,0.002224,-0.001500,0.249996,0,0);}
.m5f_c00368{transform:matrix(0.434987,0.003915,-0.002250,0.249990,0,0);-ms-transform:matrix(0.434987,0.003915,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.434987,0.003915,-0.002250,0.249990,0,0);}
.m79_c00368{transform:matrix(0.446137,0.004015,-0.002250,0.249990,0,0);-ms-transform:matrix(0.446137,0.004015,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.446137,0.004015,-0.002250,0.249990,0,0);}
.v0_c00368{vertical-align:0.000000px;}
.ls0_c00368{letter-spacing:0.000000px;}
.sc__c00368{text-shadow:none;}
.sc0_c00368{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__c00368{-webkit-text-stroke:0px transparent;}
.sc0_c00368{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00368{word-spacing:0.000000px;}
.fc0_c00368{color:transparent;}
.fs0_c00368{font-size:60.000000px;}
.fs4_c00368{font-size:66.002673px;}
.fs8_c00368{font-size:72.000000px;}
.fs13_c00368{font-size:72.001764px;}
.fs3_c00368{font-size:72.002916px;}
.fsa_c00368{font-size:72.003600px;}
.fs11_c00368{font-size:72.010403px;}
.fs2_c00368{font-size:78.000000px;}
.fsb_c00368{font-size:78.001404px;}
.fs7_c00368{font-size:78.003159px;}
.fs12_c00368{font-size:78.011270px;}
.fs1_c00368{font-size:84.000000px;}
.fs9_c00368{font-size:84.003402px;}
.fsd_c00368{font-size:84.009449px;}
.fsf_c00368{font-size:84.012137px;}
.fs5_c00368{font-size:90.003645px;}
.fsc_c00368{font-size:90.004500px;}
.fs10_c00368{font-size:96.013871px;}
.fs6_c00368{font-size:102.004131px;}
.fse_c00368{font-size:102.008619px;}
.y0_c00368{bottom:0.000000px;}
.y15e_c00368{bottom:99.912111px;}
.y15d_c00368{bottom:100.070525px;}
.y15c_c00368{bottom:100.377177px;}
.y15b_c00368{bottom:100.766591px;}
.y15a_c00368{bottom:101.078525px;}
.y159_c00368{bottom:101.384768px;}
.y158_c00368{bottom:102.161589px;}
.y157_c00368{bottom:102.911741px;}
.y156_c00368{bottom:103.140000px;}
.y155_c00368{bottom:140.581963px;}
.y154_c00368{bottom:140.718447px;}
.y153_c00368{bottom:141.181107px;}
.y152_c00368{bottom:141.654438px;}
.y151_c00368{bottom:141.792486px;}
.y150_c00368{bottom:142.248607px;}
.y14f_c00368{bottom:142.520533px;}
.y14e_c00368{bottom:142.656787px;}
.y14d_c00368{bottom:143.185780px;}
.y14c_c00368{bottom:143.448243px;}
.y14b_c00368{bottom:143.717826px;}
.y14a_c00368{bottom:143.849514px;}
.y149_c00368{bottom:144.111492px;}
.y148_c00368{bottom:144.239745px;}
.y147_c00368{bottom:144.433647px;}
.y146_c00368{bottom:144.680779px;}
.y144_c00368{bottom:189.693547px;}
.y145_c00368{bottom:189.693726px;}
.y143_c00368{bottom:189.693870px;}
.y142_c00368{bottom:189.694005px;}
.y141_c00368{bottom:189.694318px;}
.y140_c00368{bottom:189.695001px;}
.y13f_c00368{bottom:189.695718px;}
.y13e_c00368{bottom:189.695997px;}
.y13d_c00368{bottom:189.696714px;}
.y13a_c00368{bottom:189.696802px;}
.y13b_c00368{bottom:189.696849px;}
.y13c_c00368{bottom:189.696937px;}
.y138_c00368{bottom:189.697023px;}
.y139_c00368{bottom:189.697026px;}
.y137_c00368{bottom:214.564813px;}
.y136_c00368{bottom:215.174911px;}
.y135_c00368{bottom:216.027922px;}
.y134_c00368{bottom:216.674272px;}
.y133_c00368{bottom:217.931230px;}
.y132_c00368{bottom:218.802444px;}
.y131_c00368{bottom:219.229918px;}
.y130_c00368{bottom:219.673096px;}
.y12f_c00368{bottom:220.885774px;}
.y12e_c00368{bottom:221.311770px;}
.y12d_c00368{bottom:223.216654px;}
.y12c_c00368{bottom:223.611498px;}
.y12b_c00368{bottom:225.705253px;}
.y12a_c00368{bottom:226.522756px;}
.y129_c00368{bottom:227.316600px;}
.y128_c00368{bottom:251.253467px;}
.y127_c00368{bottom:252.218387px;}
.y126_c00368{bottom:253.164181px;}
.y125_c00368{bottom:254.302246px;}
.y124_c00368{bottom:254.881504px;}
.y123_c00368{bottom:255.976500px;}
.y122_c00368{bottom:257.308033px;}
.y121_c00368{bottom:258.045034px;}
.y120_c00368{bottom:258.628270px;}
.y11f_c00368{bottom:258.994476px;}
.y11e_c00368{bottom:261.216648px;}
.y11d_c00368{bottom:261.775072px;}
.y11c_c00368{bottom:262.691390px;}
.y11b_c00368{bottom:285.933696px;}
.y11a_c00368{bottom:286.430430px;}
.y119_c00368{bottom:287.258544px;}
.y118_c00368{bottom:287.614081px;}
.y117_c00368{bottom:288.950996px;}
.y116_c00368{bottom:289.291377px;}
.y115_c00368{bottom:291.260816px;}
.y114_c00368{bottom:291.613110px;}
.y113_c00368{bottom:292.443978px;}
.y112_c00368{bottom:293.241606px;}
.y111_c00368{bottom:294.068415px;}
.y110_c00368{bottom:294.785585px;}
.y10f_c00368{bottom:295.063851px;}
.y10e_c00368{bottom:296.176020px;}
.y107_c00368{bottom:322.084017px;}
.y105_c00368{bottom:322.084439px;}
.y104_c00368{bottom:322.084484px;}
.y102_c00368{bottom:322.084580px;}
.y108_c00368{bottom:322.084620px;}
.y106_c00368{bottom:322.084700px;}
.y10a_c00368{bottom:322.084747px;}
.y103_c00368{bottom:322.084750px;}
.y101_c00368{bottom:322.085017px;}
.y109_c00368{bottom:322.085241px;}
.y10b_c00368{bottom:322.085268px;}
.y10c_c00368{bottom:322.085601px;}
.y10d_c00368{bottom:322.085860px;}
.y100_c00368{bottom:360.053885px;}
.yff_c00368{bottom:361.219367px;}
.yfe_c00368{bottom:361.932595px;}
.yfd_c00368{bottom:362.802513px;}
.yfc_c00368{bottom:363.526364px;}
.yfb_c00368{bottom:363.818022px;}
.yfa_c00368{bottom:364.654248px;}
.yf9_c00368{bottom:366.114653px;}
.yf8_c00368{bottom:366.546687px;}
.yf7_c00368{bottom:367.529193px;}
.yf6_c00368{bottom:367.943925px;}
.yf5_c00368{bottom:368.816907px;}
.yf4_c00368{bottom:393.839387px;}
.yf3_c00368{bottom:395.331239px;}
.yf2_c00368{bottom:396.098202px;}
.yf1_c00368{bottom:396.672258px;}
.yf0_c00368{bottom:397.437972px;}
.yef_c00368{bottom:398.366274px;}
.yee_c00368{bottom:398.753033px;}
.yed_c00368{bottom:401.198610px;}
.yec_c00368{bottom:401.744896px;}
.yeb_c00368{bottom:403.365014px;}
.yea_c00368{bottom:404.171579px;}
.ye9_c00368{bottom:404.721512px;}
.ye8_c00368{bottom:405.273000px;}
.ye7_c00368{bottom:429.829525px;}
.ye6_c00368{bottom:430.120465px;}
.ye5_c00368{bottom:430.854679px;}
.ye4_c00368{bottom:431.272018px;}
.ye3_c00368{bottom:431.866534px;}
.ye2_c00368{bottom:432.163636px;}
.ye1_c00368{bottom:432.852259px;}
.ye0_c00368{bottom:433.308696px;}
.ydf_c00368{bottom:433.600494px;}
.yde_c00368{bottom:434.164687px;}
.ydd_c00368{bottom:434.596476px;}
.ydc_c00368{bottom:434.894806px;}
.ydb_c00368{bottom:435.604450px;}
.yda_c00368{bottom:436.446831px;}
.yd9_c00368{bottom:437.317155px;}
.yd8_c00368{bottom:437.603805px;}
.yd7_c00368{bottom:438.481500px;}
.yc8_c00368{bottom:466.827818px;}
.yc9_c00368{bottom:467.125365px;}
.yca_c00368{bottom:467.733157px;}
.ycb_c00368{bottom:468.126337px;}
.ycc_c00368{bottom:468.356370px;}
.ycd_c00368{bottom:468.582510px;}
.yce_c00368{bottom:468.822248px;}
.ycf_c00368{bottom:469.206577px;}
.yd0_c00368{bottom:469.445265px;}
.yd1_c00368{bottom:469.904235px;}
.yd2_c00368{bottom:470.211727px;}
.yd3_c00368{bottom:470.517727px;}
.yd4_c00368{bottom:470.994112px;}
.yd5_c00368{bottom:471.215850px;}
.yd6_c00368{bottom:471.612877px;}
.yc5_c00368{bottom:491.940000px;}
.yc6_c00368{bottom:494.559832px;}
.yc7_c00368{bottom:495.405495px;}
.yc4_c00368{bottom:504.724800px;}
.yc3_c00368{bottom:505.054260px;}
.yc2_c00368{bottom:505.621260px;}
.yc1_c00368{bottom:506.177325px;}
.yc0_c00368{bottom:506.509920px;}
.ybf_c00368{bottom:507.382245px;}
.ybe_c00368{bottom:507.729990px;}
.ybd_c00368{bottom:507.949245px;}
.ybc_c00368{bottom:508.713195px;}
.ybb_c00368{bottom:508.934400px;}
.yba_c00368{bottom:509.482740px;}
.yb9_c00368{bottom:509.922735px;}
.yb8_c00368{bottom:510.257355px;}
.yb7_c00368{bottom:510.573030px;}
.yb6_c00368{bottom:511.110000px;}
.yb5_c00368{bottom:543.051000px;}
.yb4_c00368{bottom:574.776594px;}
.yb3_c00368{bottom:574.977834px;}
.yb2_c00368{bottom:575.441109px;}
.yb1_c00368{bottom:575.646624px;}
.yb0_c00368{bottom:575.907462px;}
.yaf_c00368{bottom:576.048312px;}
.yae_c00368{bottom:576.443583px;}
.yad_c00368{bottom:576.639648px;}
.yac_c00368{bottom:576.975114px;}
.yab_c00368{bottom:577.368837px;}
.yaa_c00368{bottom:577.508301px;}
.ya9_c00368{bottom:578.170746px;}
.ya8_c00368{bottom:578.680920px;}
.ya7_c00368{bottom:578.880000px;}
.ya6_c00368{bottom:610.329915px;}
.ya5_c00368{bottom:611.485620px;}
.ya4_c00368{bottom:611.779980px;}
.ya3_c00368{bottom:612.446685px;}
.ya2_c00368{bottom:612.787215px;}
.ya1_c00368{bottom:613.216245px;}
.ya0_c00368{bottom:613.459230px;}
.y9f_c00368{bottom:613.886220px;}
.y9e_c00368{bottom:614.439750px;}
.y9d_c00368{bottom:614.771940px;}
.y9c_c00368{bottom:615.552180px;}
.y9b_c00368{bottom:615.875790px;}
.y9a_c00368{bottom:616.645245px;}
.y99_c00368{bottom:616.950000px;}
.y98_c00368{bottom:645.179580px;}
.y97_c00368{bottom:645.478659px;}
.y96_c00368{bottom:646.292831px;}
.y95_c00368{bottom:646.584485px;}
.y94_c00368{bottom:646.878501px;}
.y93_c00368{bottom:647.682926px;}
.y92_c00368{bottom:648.176283px;}
.y91_c00368{bottom:648.771471px;}
.y90_c00368{bottom:648.985298px;}
.y8f_c00368{bottom:649.877418px;}
.y8e_c00368{bottom:650.171367px;}
.y8d_c00368{bottom:650.659581px;}
.y8c_c00368{bottom:651.240000px;}
.y8b_c00368{bottom:681.853500px;}
.y8a_c00368{bottom:696.195000px;}
.y89_c00368{bottom:716.985195px;}
.y88_c00368{bottom:717.993915px;}
.y87_c00368{bottom:718.285596px;}
.y86_c00368{bottom:718.691190px;}
.y85_c00368{bottom:718.990377px;}
.y84_c00368{bottom:719.483667px;}
.y83_c00368{bottom:719.877151px;}
.y82_c00368{bottom:720.380202px;}
.y81_c00368{bottom:720.776319px;}
.y80_c00368{bottom:721.077666px;}
.y7f_c00368{bottom:721.286619px;}
.y7e_c00368{bottom:722.071630px;}
.y7d_c00368{bottom:722.280313px;}
.y7c_c00368{bottom:722.669748px;}
.y7b_c00368{bottom:723.054066px;}
.y7a_c00368{bottom:753.064393px;}
.y79_c00368{bottom:753.371127px;}
.y78_c00368{bottom:754.077744px;}
.y77_c00368{bottom:754.568604px;}
.y76_c00368{bottom:754.777395px;}
.y75_c00368{bottom:755.579524px;}
.y74_c00368{bottom:755.768943px;}
.y73_c00368{bottom:756.865129px;}
.y72_c00368{bottom:757.081210px;}
.y71_c00368{bottom:757.569924px;}
.y70_c00368{bottom:758.048526px;}
.y6f_c00368{bottom:758.359269px;}
.y6e_c00368{bottom:758.920990px;}
.y6d_c00368{bottom:759.233677px;}
.y6c_c00368{bottom:788.841838px;}
.y6b_c00368{bottom:788.842321px;}
.y61_c00368{bottom:788.842719px;}
.y65_c00368{bottom:788.842980px;}
.y69_c00368{bottom:788.843031px;}
.y6a_c00368{bottom:788.843058px;}
.y67_c00368{bottom:788.843200px;}
.y60_c00368{bottom:788.843232px;}
.y63_c00368{bottom:788.843239px;}
.y62_c00368{bottom:788.843316px;}
.y66_c00368{bottom:788.843367px;}
.y64_c00368{bottom:788.843416px;}
.y68_c00368{bottom:788.843484px;}
.y5e_c00368{bottom:824.847591px;}
.y5f_c00368{bottom:824.847994px;}
.y5d_c00368{bottom:824.848237px;}
.y5b_c00368{bottom:824.848330px;}
.y5c_c00368{bottom:824.848374px;}
.y5a_c00368{bottom:824.849067px;}
.y58_c00368{bottom:824.849250px;}
.y56_c00368{bottom:824.849343px;}
.y59_c00368{bottom:824.849353px;}
.y57_c00368{bottom:824.849386px;}
.y52_c00368{bottom:824.849589px;}
.y55_c00368{bottom:824.849779px;}
.y51_c00368{bottom:824.850055px;}
.y50_c00368{bottom:824.850088px;}
.y53_c00368{bottom:824.850172px;}
.y54_c00368{bottom:824.850426px;}
.y4f_c00368{bottom:824.850451px;}
.y4e_c00368{bottom:861.982047px;}
.y4d_c00368{bottom:862.382784px;}
.y4c_c00368{bottom:862.587921px;}
.y4b_c00368{bottom:862.785219px;}
.y4a_c00368{bottom:863.179938px;}
.y49_c00368{bottom:863.451165px;}
.y48_c00368{bottom:863.848528px;}
.y47_c00368{bottom:864.187290px;}
.y46_c00368{bottom:864.585516px;}
.y45_c00368{bottom:864.781722px;}
.y44_c00368{bottom:865.175644px;}
.y43_c00368{bottom:865.622689px;}
.y34_c00368{bottom:899.486446px;}
.y35_c00368{bottom:899.486700px;}
.y36_c00368{bottom:899.487433px;}
.y3b_c00368{bottom:899.487724px;}
.y39_c00368{bottom:899.487804px;}
.y37_c00368{bottom:899.487837px;}
.y3c_c00368{bottom:899.487901px;}
.y3a_c00368{bottom:899.488371px;}
.y3d_c00368{bottom:899.488515px;}
.y38_c00368{bottom:899.488540px;}
.y40_c00368{bottom:899.488672px;}
.y3f_c00368{bottom:899.488689px;}
.y3e_c00368{bottom:899.488782px;}
.y42_c00368{bottom:899.488999px;}
.y41_c00368{bottom:899.489076px;}
.y33_c00368{bottom:931.097985px;}
.y32_c00368{bottom:931.325574px;}
.y31_c00368{bottom:931.599999px;}
.y30_c00368{bottom:931.717044px;}
.y2f_c00368{bottom:932.045883px;}
.y2e_c00368{bottom:932.386959px;}
.y2d_c00368{bottom:932.551216px;}
.y2c_c00368{bottom:932.883483px;}
.y2b_c00368{bottom:933.434382px;}
.y2a_c00368{bottom:933.594147px;}
.y29_c00368{bottom:933.709978px;}
.y28_c00368{bottom:934.198219px;}
.y27_c00368{bottom:934.468974px;}
.y1d_c00368{bottom:968.449776px;}
.y1c_c00368{bottom:968.450245px;}
.y1e_c00368{bottom:968.450359px;}
.y1f_c00368{bottom:968.450913px;}
.y26_c00368{bottom:968.451162px;}
.y22_c00368{bottom:968.451201px;}
.y25_c00368{bottom:968.451211px;}
.y20_c00368{bottom:968.451376px;}
.y21_c00368{bottom:968.451537px;}
.y24_c00368{bottom:968.451798px;}
.y23_c00368{bottom:968.451874px;}
.ye_c00368{bottom:1005.981409px;}
.y15_c00368{bottom:1005.981511px;}
.y14_c00368{bottom:1005.981604px;}
.yf_c00368{bottom:1005.981693px;}
.y16_c00368{bottom:1005.981705px;}
.y19_c00368{bottom:1005.981715px;}
.y12_c00368{bottom:1005.981744px;}
.y18_c00368{bottom:1005.981882px;}
.y13_c00368{bottom:1005.982147px;}
.y17_c00368{bottom:1005.982258px;}
.y1a_c00368{bottom:1005.982402px;}
.y11_c00368{bottom:1005.982407px;}
.y10_c00368{bottom:1005.982423px;}
.y1b_c00368{bottom:1005.982596px;}
.yd_c00368{bottom:1037.956695px;}
.yc_c00368{bottom:1038.675961px;}
.yb_c00368{bottom:1038.974689px;}
.ya_c00368{bottom:1039.460716px;}
.y9_c00368{bottom:1040.175366px;}
.y8_c00368{bottom:1040.765897px;}
.y7_c00368{bottom:1041.261643px;}
.y6_c00368{bottom:1042.063557px;}
.y5_c00368{bottom:1042.741500px;}
.y4_c00368{bottom:1076.655000px;}
.y3_c00368{bottom:1111.507500px;}
.y2_c00368{bottom:1144.350000px;}
.y1_c00368{bottom:1205.010000px;}
.h2_c00368{height:60.000000px;}
.h6_c00368{height:66.002673px;}
.ha_c00368{height:72.000000px;}
.h15_c00368{height:72.001764px;}
.h5_c00368{height:72.002916px;}
.hc_c00368{height:72.003600px;}
.h13_c00368{height:72.010403px;}
.h4_c00368{height:78.000000px;}
.hd_c00368{height:78.001404px;}
.h9_c00368{height:78.003159px;}
.h14_c00368{height:78.011270px;}
.h3_c00368{height:84.000000px;}
.hb_c00368{height:84.003402px;}
.hf_c00368{height:84.009449px;}
.h11_c00368{height:84.012137px;}
.h7_c00368{height:90.003645px;}
.he_c00368{height:90.004500px;}
.h12_c00368{height:96.013871px;}
.h8_c00368{height:102.004131px;}
.h10_c00368{height:102.008619px;}
.h0_c00368{height:1251.450000px;}
.h1_c00368{height:1251.750000px;}
.w0_c00368{width:915.000000px;}
.x0_c00368{left:0.000000px;}
.x80_c00368{left:137.172000px;}
.x84_c00368{left:144.874500px;}
.x92_c00368{left:147.571197px;}
.x33_c00368{left:149.252187px;}
.x3_c00368{left:150.930000px;}
.x3d_c00368{left:172.525257px;}
.x6a_c00368{left:180.258000px;}
.x24_c00368{left:181.707378px;}
.x59_c00368{left:184.006698px;}
.x5e_c00368{left:191.263551px;}
.x19_c00368{left:194.130000px;}
.x4_c00368{left:196.290000px;}
.xa0_c00368{left:202.346337px;}
.x34_c00368{left:203.504645px;}
.xe_c00368{left:204.660000px;}
.x85_c00368{left:212.389500px;}
.x65_c00368{left:213.456000px;}
.x75_c00368{left:214.650000px;}
.x99_c00368{left:223.607726px;}
.x3e_c00368{left:225.448050px;}
.x5f_c00368{left:234.534051px;}
.x4e_c00368{left:235.982222px;}
.x9a_c00368{left:242.182863px;}
.xa5_c00368{left:244.775393px;}
.x3f_c00368{left:246.238238px;}
.x5_c00368{left:247.320000px;}
.x6b_c00368{left:257.203500px;}
.x1a_c00368{left:258.390000px;}
.x1e_c00368{left:259.621500px;}
.x70_c00368{left:267.192000px;}
.x61_c00368{left:268.380000px;}
.xf_c00368{left:270.270000px;}
.x94_c00368{left:277.309959px;}
.x81_c00368{left:278.577330px;}
.x25_c00368{left:280.800911px;}
.xa6_c00368{left:288.517578px;}
.x47_c00368{left:290.164466px;}
.x40_c00368{left:291.330396px;}
.x56_c00368{left:292.415258px;}
.x66_c00368{left:300.363000px;}
.x2e_c00368{left:301.860855px;}
.x6_c00368{left:303.210000px;}
.xa7_c00368{left:310.385658px;}
.x7a_c00368{left:312.246000px;}
.x26_c00368{left:313.472057px;}
.x62_c00368{left:320.220000px;}
.x48_c00368{left:322.799343px;}
.x35_c00368{left:324.461505px;}
.x2f_c00368{left:334.802028px;}
.x10_c00368{left:335.880000px;}
.x60_c00368{left:344.944551px;}
.x1b_c00368{left:346.680000px;}
.x93_c00368{left:355.423824px;}
.x36_c00368{left:356.547666px;}
.x30_c00368{left:357.752391px;}
.x86_c00368{left:366.186000px;}
.x6c_c00368{left:367.588500px;}
.x11_c00368{left:368.820000px;}
.x71_c00368{left:377.599500px;}
.x4f_c00368{left:378.817791px;}
.x1c_c00368{left:383.130000px;}
.x5a_c00368{left:388.426698px;}
.x27_c00368{left:389.885240px;}
.x9b_c00368{left:398.282667px;}
.x67_c00368{left:399.487500px;}
.x50_c00368{left:400.958087px;}
.x41_c00368{left:412.025670px;}
.x12_c00368{left:413.640000px;}
.x87_c00368{left:420.774000px;}
.x7_c00368{left:423.900000px;}
.x57_c00368{left:433.630692px;}
.x1_c00368{left:435.510000px;}
.x88_c00368{left:443.722500px;}
.x49_c00368{left:445.690164px;}
.x9c_c00368{left:453.688554px;}
.x95_c00368{left:455.535944px;}
.x31_c00368{left:456.575897px;}
.x2_c00368{left:458.460000px;}
.x7b_c00368{left:465.595500px;}
.x13_c00368{left:466.830000px;}
.x63_c00368{left:477.090000px;}
.x1f_c00368{left:479.133000px;}
.x7c_c00368{left:487.521000px;}
.x51_c00368{left:489.252228px;}
.x28_c00368{left:491.408961px;}
.x6d_c00368{left:498.859500px;}
.x76_c00368{left:500.310000px;}
.x1d_c00368{left:501.390000px;}
.xa8_c00368{left:509.675388px;}
.x4a_c00368{left:511.843446px;}
.x89_c00368{left:520.336500px;}
.x42_c00368{left:521.920067px;}
.x52_c00368{left:524.083550px;}
.x8f_c00368{left:531.889500px;}
.x37_c00368{left:533.183525px;}
.x8_c00368{left:534.330000px;}
.x8a_c00368{left:542.782500px;}
.x20_c00368{left:544.747500px;}
.xa3_c00368{left:551.759762px;}
.x5b_c00368{left:555.280698px;}
.x43_c00368{left:557.021415px;}
.x38_c00368{left:566.102213px;}
.x29_c00368{left:568.092171px;}
.x96_c00368{left:575.704175px;}
.x58_c00368{left:578.086397px;}
.xa9_c00368{left:587.257500px;}
.x77_c00368{left:588.330000px;}
.x53_c00368{left:589.425842px;}
.xa4_c00368{left:597.590706px;}
.x14_c00368{left:600.750000px;}
.x9_c00368{left:601.830000px;}
.x9d_c00368{left:608.442807px;}
.x7d_c00368{left:609.528000px;}
.x32_c00368{left:611.292425px;}
.x72_c00368{left:620.931000px;}
.x4b_c00368{left:622.840443px;}
.x21_c00368{left:624.153000px;}
.x8b_c00368{left:630.864000px;}
.x44_c00368{left:633.164585px;}
.xa_c00368{left:634.230000px;}
.x7e_c00368{left:642.787500px;}
.x5c_c00368{left:644.406198px;}
.x15_c00368{left:646.920000px;}
.x8c_c00368{left:653.718000px;}
.x4c_c00368{left:655.763334px;}
.x54_c00368{left:666.379065px;}
.x2a_c00368{left:667.725744px;}
.x82_c00368{left:676.563098px;}
.x22_c00368{left:678.156000px;}
.x73_c00368{left:687.879000px;}
.x4d_c00368{left:690.057266px;}
.x6e_c00368{left:696.220500px;}
.x68_c00368{left:698.650500px;}
.x39_c00368{left:700.042032px;}
.x2b_c00368{left:701.746998px;}
.xa1_c00368{left:708.869337px;}
.x23_c00368{left:711.348000px;}
.x9e_c00368{left:720.258107px;}
.x5d_c00368{left:722.145198px;}
.x3a_c00368{left:723.547883px;}
.x8d_c00368{left:731.553000px;}
.x90_c00368{left:733.171500px;}
.x78_c00368{left:743.850000px;}
.x97_c00368{left:754.470338px;}
.x45_c00368{left:756.020034px;}
.xb_c00368{left:758.160000px;}
.xa2_c00368{left:764.504337px;}
.x64_c00368{left:767.070000px;}
.x16_c00368{left:768.150000px;}
.x83_c00368{left:776.116522px;}
.x79_c00368{left:777.330000px;}
.x3b_c00368{left:778.374854px;}
.x2c_c00368{left:779.510303px;}
.x7f_c00368{left:788.040000px;}
.x69_c00368{left:789.114000px;}
.x17_c00368{left:791.100000px;}
.xc_c00368{left:792.180000px;}
.x9f_c00368{left:799.240310px;}
.x55_c00368{left:800.305406px;}
.x8e_c00368{left:810.411000px;}
.x6f_c00368{left:811.791000px;}
.x2d_c00368{left:812.991516px;}
.x91_c00368{left:820.927500px;}
.x18_c00368{left:822.960000px;}
.x3c_c00368{left:823.997501px;}
.xd_c00368{left:826.470000px;}
.x74_c00368{left:832.884000px;}
.x46_c00368{left:834.323379px;}
.x98_c00368{left:844.392822px;}
@media print{
.v0_c00368{vertical-align:0.000000pt;}
.ls0_c00368{letter-spacing:0.000000pt;}
.ws0_c00368{word-spacing:0.000000pt;}
.fs0_c00368{font-size:53.333333pt;}
.fs4_c00368{font-size:58.669043pt;}
.fs8_c00368{font-size:64.000000pt;}
.fs13_c00368{font-size:64.001568pt;}
.fs3_c00368{font-size:64.002592pt;}
.fsa_c00368{font-size:64.003200pt;}
.fs11_c00368{font-size:64.009247pt;}
.fs2_c00368{font-size:69.333333pt;}
.fsb_c00368{font-size:69.334581pt;}
.fs7_c00368{font-size:69.336141pt;}
.fs12_c00368{font-size:69.343351pt;}
.fs1_c00368{font-size:74.666667pt;}
.fs9_c00368{font-size:74.669691pt;}
.fsd_c00368{font-size:74.675066pt;}
.fsf_c00368{font-size:74.677455pt;}
.fs5_c00368{font-size:80.003240pt;}
.fsc_c00368{font-size:80.004000pt;}
.fs10_c00368{font-size:85.345663pt;}
.fs6_c00368{font-size:90.670339pt;}
.fse_c00368{font-size:90.674328pt;}
.y0_c00368{bottom:0.000000pt;}
.y15e_c00368{bottom:88.810765pt;}
.y15d_c00368{bottom:88.951577pt;}
.y15c_c00368{bottom:89.224157pt;}
.y15b_c00368{bottom:89.570303pt;}
.y15a_c00368{bottom:89.847577pt;}
.y159_c00368{bottom:90.119793pt;}
.y158_c00368{bottom:90.810301pt;}
.y157_c00368{bottom:91.477103pt;}
.y156_c00368{bottom:91.680000pt;}
.y155_c00368{bottom:124.961745pt;}
.y154_c00368{bottom:125.083064pt;}
.y153_c00368{bottom:125.494317pt;}
.y152_c00368{bottom:125.915056pt;}
.y151_c00368{bottom:126.037765pt;}
.y150_c00368{bottom:126.443207pt;}
.y14f_c00368{bottom:126.684919pt;}
.y14e_c00368{bottom:126.806033pt;}
.y14d_c00368{bottom:127.276249pt;}
.y14c_c00368{bottom:127.509549pt;}
.y14b_c00368{bottom:127.749179pt;}
.y14a_c00368{bottom:127.866235pt;}
.y149_c00368{bottom:128.099104pt;}
.y148_c00368{bottom:128.213107pt;}
.y147_c00368{bottom:128.385464pt;}
.y146_c00368{bottom:128.605137pt;}
.y144_c00368{bottom:168.616487pt;}
.y145_c00368{bottom:168.616645pt;}
.y143_c00368{bottom:168.616773pt;}
.y142_c00368{bottom:168.616893pt;}
.y141_c00368{bottom:168.617172pt;}
.y140_c00368{bottom:168.617779pt;}
.y13f_c00368{bottom:168.618416pt;}
.y13e_c00368{bottom:168.618664pt;}
.y13d_c00368{bottom:168.619301pt;}
.y13a_c00368{bottom:168.619380pt;}
.y13b_c00368{bottom:168.619421pt;}
.y13c_c00368{bottom:168.619500pt;}
.y138_c00368{bottom:168.619576pt;}
.y139_c00368{bottom:168.619579pt;}
.y137_c00368{bottom:190.724279pt;}
.y136_c00368{bottom:191.266588pt;}
.y135_c00368{bottom:192.024820pt;}
.y134_c00368{bottom:192.599353pt;}
.y133_c00368{bottom:193.716649pt;}
.y132_c00368{bottom:194.491061pt;}
.y131_c00368{bottom:194.871039pt;}
.y130_c00368{bottom:195.264975pt;}
.y12f_c00368{bottom:196.342911pt;}
.y12e_c00368{bottom:196.721573pt;}
.y12d_c00368{bottom:198.414804pt;}
.y12c_c00368{bottom:198.765776pt;}
.y12b_c00368{bottom:200.626892pt;}
.y12a_c00368{bottom:201.353561pt;}
.y129_c00368{bottom:202.059200pt;}
.y128_c00368{bottom:223.336415pt;}
.y127_c00368{bottom:224.194121pt;}
.y126_c00368{bottom:225.034828pt;}
.y125_c00368{bottom:226.046441pt;}
.y124_c00368{bottom:226.561337pt;}
.y123_c00368{bottom:227.534667pt;}
.y122_c00368{bottom:228.718252pt;}
.y121_c00368{bottom:229.373364pt;}
.y120_c00368{bottom:229.891796pt;}
.y11f_c00368{bottom:230.217312pt;}
.y11e_c00368{bottom:232.192576pt;}
.y11d_c00368{bottom:232.688953pt;}
.y11c_c00368{bottom:233.503457pt;}
.y11b_c00368{bottom:254.163285pt;}
.y11a_c00368{bottom:254.604827pt;}
.y119_c00368{bottom:255.340928pt;}
.y118_c00368{bottom:255.656961pt;}
.y117_c00368{bottom:256.845329pt;}
.y116_c00368{bottom:257.147891pt;}
.y115_c00368{bottom:258.898503pt;}
.y114_c00368{bottom:259.211653pt;}
.y113_c00368{bottom:259.950203pt;}
.y112_c00368{bottom:260.659205pt;}
.y111_c00368{bottom:261.394147pt;}
.y110_c00368{bottom:262.031631pt;}
.y10f_c00368{bottom:262.278979pt;}
.y10e_c00368{bottom:263.267573pt;}
.y107_c00368{bottom:286.296904pt;}
.y105_c00368{bottom:286.297279pt;}
.y104_c00368{bottom:286.297319pt;}
.y102_c00368{bottom:286.297404pt;}
.y108_c00368{bottom:286.297440pt;}
.y106_c00368{bottom:286.297511pt;}
.y10a_c00368{bottom:286.297553pt;}
.y103_c00368{bottom:286.297556pt;}
.y101_c00368{bottom:286.297793pt;}
.y109_c00368{bottom:286.297992pt;}
.y10b_c00368{bottom:286.298016pt;}
.y10c_c00368{bottom:286.298312pt;}
.y10d_c00368{bottom:286.298543pt;}
.y100_c00368{bottom:320.047897pt;}
.yff_c00368{bottom:321.083881pt;}
.yfe_c00368{bottom:321.717863pt;}
.yfd_c00368{bottom:322.491123pt;}
.yfc_c00368{bottom:323.134545pt;}
.yfb_c00368{bottom:323.393797pt;}
.yfa_c00368{bottom:324.137109pt;}
.yf9_c00368{bottom:325.435247pt;}
.yf8_c00368{bottom:325.819277pt;}
.yf7_c00368{bottom:326.692616pt;}
.yf6_c00368{bottom:327.061267pt;}
.yf5_c00368{bottom:327.837251pt;}
.yf4_c00368{bottom:350.079455pt;}
.yf3_c00368{bottom:351.405545pt;}
.yf2_c00368{bottom:352.087291pt;}
.yf1_c00368{bottom:352.597563pt;}
.yf0_c00368{bottom:353.278197pt;}
.yef_c00368{bottom:354.103355pt;}
.yee_c00368{bottom:354.447140pt;}
.yed_c00368{bottom:356.620987pt;}
.yec_c00368{bottom:357.106575pt;}
.yeb_c00368{bottom:358.546679pt;}
.yea_c00368{bottom:359.263625pt;}
.ye9_c00368{bottom:359.752455pt;}
.ye8_c00368{bottom:360.242667pt;}
.ye7_c00368{bottom:382.070689pt;}
.ye6_c00368{bottom:382.329303pt;}
.ye5_c00368{bottom:382.981937pt;}
.ye4_c00368{bottom:383.352905pt;}
.ye3_c00368{bottom:383.881364pt;}
.ye2_c00368{bottom:384.145455pt;}
.ye1_c00368{bottom:384.757564pt;}
.ye0_c00368{bottom:385.163285pt;}
.ydf_c00368{bottom:385.422661pt;}
.yde_c00368{bottom:385.924167pt;}
.ydd_c00368{bottom:386.307979pt;}
.ydc_c00368{bottom:386.573161pt;}
.ydb_c00368{bottom:387.203956pt;}
.yda_c00368{bottom:387.952739pt;}
.yd9_c00368{bottom:388.726360pt;}
.yd8_c00368{bottom:388.981160pt;}
.yd7_c00368{bottom:389.761333pt;}
.yc8_c00368{bottom:414.958060pt;}
.yc9_c00368{bottom:415.222547pt;}
.yca_c00368{bottom:415.762807pt;}
.ycb_c00368{bottom:416.112300pt;}
.ycc_c00368{bottom:416.316773pt;}
.ycd_c00368{bottom:416.517787pt;}
.yce_c00368{bottom:416.730887pt;}
.ycf_c00368{bottom:417.072513pt;}
.yd0_c00368{bottom:417.284680pt;}
.yd1_c00368{bottom:417.692653pt;}
.yd2_c00368{bottom:417.965980pt;}
.yd3_c00368{bottom:418.237980pt;}
.yd4_c00368{bottom:418.661433pt;}
.yd5_c00368{bottom:418.858533pt;}
.yd6_c00368{bottom:419.211447pt;}
.yc5_c00368{bottom:437.280000pt;}
.yc6_c00368{bottom:439.608740pt;}
.yc7_c00368{bottom:440.360440pt;}
.yc4_c00368{bottom:448.644267pt;}
.yc3_c00368{bottom:448.937120pt;}
.yc2_c00368{bottom:449.441120pt;}
.yc1_c00368{bottom:449.935400pt;}
.yc0_c00368{bottom:450.231040pt;}
.ybf_c00368{bottom:451.006440pt;}
.ybe_c00368{bottom:451.315547pt;}
.ybd_c00368{bottom:451.510440pt;}
.ybc_c00368{bottom:452.189507pt;}
.ybb_c00368{bottom:452.386133pt;}
.yba_c00368{bottom:452.873547pt;}
.yb9_c00368{bottom:453.264653pt;}
.yb8_c00368{bottom:453.562093pt;}
.yb7_c00368{bottom:453.842693pt;}
.yb6_c00368{bottom:454.320000pt;}
.yb5_c00368{bottom:482.712000pt;}
.yb4_c00368{bottom:510.912528pt;}
.yb3_c00368{bottom:511.091408pt;}
.yb2_c00368{bottom:511.503208pt;}
.yb1_c00368{bottom:511.685888pt;}
.yb0_c00368{bottom:511.917744pt;}
.yaf_c00368{bottom:512.042944pt;}
.yae_c00368{bottom:512.394296pt;}
.yad_c00368{bottom:512.568576pt;}
.yac_c00368{bottom:512.866768pt;}
.yab_c00368{bottom:513.216744pt;}
.yaa_c00368{bottom:513.340712pt;}
.ya9_c00368{bottom:513.929552pt;}
.ya8_c00368{bottom:514.383040pt;}
.ya7_c00368{bottom:514.560000pt;}
.ya6_c00368{bottom:542.515480pt;}
.ya5_c00368{bottom:543.542773pt;}
.ya4_c00368{bottom:543.804427pt;}
.ya3_c00368{bottom:544.397053pt;}
.ya2_c00368{bottom:544.699747pt;}
.ya1_c00368{bottom:545.081107pt;}
.ya0_c00368{bottom:545.297093pt;}
.y9f_c00368{bottom:545.676640pt;}
.y9e_c00368{bottom:546.168667pt;}
.y9d_c00368{bottom:546.463947pt;}
.y9c_c00368{bottom:547.157493pt;}
.y9b_c00368{bottom:547.445147pt;}
.y9a_c00368{bottom:548.129107pt;}
.y99_c00368{bottom:548.400000pt;}
.y98_c00368{bottom:573.492960pt;}
.y97_c00368{bottom:573.758808pt;}
.y96_c00368{bottom:574.482516pt;}
.y95_c00368{bottom:574.741764pt;}
.y94_c00368{bottom:575.003112pt;}
.y93_c00368{bottom:575.718156pt;}
.y92_c00368{bottom:576.156696pt;}
.y91_c00368{bottom:576.685752pt;}
.y90_c00368{bottom:576.875820pt;}
.y8f_c00368{bottom:577.668816pt;}
.y8e_c00368{bottom:577.930104pt;}
.y8d_c00368{bottom:578.364072pt;}
.y8c_c00368{bottom:578.880000pt;}
.y8b_c00368{bottom:606.092000pt;}
.y8a_c00368{bottom:618.840000pt;}
.y89_c00368{bottom:637.320173pt;}
.y88_c00368{bottom:638.216813pt;}
.y87_c00368{bottom:638.476085pt;}
.y86_c00368{bottom:638.836613pt;}
.y85_c00368{bottom:639.102557pt;}
.y84_c00368{bottom:639.541037pt;}
.y83_c00368{bottom:639.890801pt;}
.y82_c00368{bottom:640.337957pt;}
.y81_c00368{bottom:640.690061pt;}
.y80_c00368{bottom:640.957925pt;}
.y7f_c00368{bottom:641.143661pt;}
.y7e_c00368{bottom:641.841449pt;}
.y7d_c00368{bottom:642.026945pt;}
.y7c_c00368{bottom:642.373109pt;}
.y7b_c00368{bottom:642.714725pt;}
.y7a_c00368{bottom:669.390572pt;}
.y79_c00368{bottom:669.663224pt;}
.y78_c00368{bottom:670.291328pt;}
.y77_c00368{bottom:670.727648pt;}
.y76_c00368{bottom:670.913240pt;}
.y75_c00368{bottom:671.626244pt;}
.y74_c00368{bottom:671.794616pt;}
.y73_c00368{bottom:672.769004pt;}
.y72_c00368{bottom:672.961076pt;}
.y71_c00368{bottom:673.395488pt;}
.y70_c00368{bottom:673.820912pt;}
.y6f_c00368{bottom:674.097128pt;}
.y6e_c00368{bottom:674.596436pt;}
.y6d_c00368{bottom:674.874380pt;}
.y6c_c00368{bottom:701.192745pt;}
.y6b_c00368{bottom:701.193175pt;}
.y61_c00368{bottom:701.193528pt;}
.y65_c00368{bottom:701.193760pt;}
.y69_c00368{bottom:701.193805pt;}
.y6a_c00368{bottom:701.193829pt;}
.y67_c00368{bottom:701.193956pt;}
.y60_c00368{bottom:701.193984pt;}
.y63_c00368{bottom:701.193991pt;}
.y62_c00368{bottom:701.194059pt;}
.y66_c00368{bottom:701.194104pt;}
.y64_c00368{bottom:701.194148pt;}
.y68_c00368{bottom:701.194208pt;}
.y5e_c00368{bottom:733.197859pt;}
.y5f_c00368{bottom:733.198217pt;}
.y5d_c00368{bottom:733.198433pt;}
.y5b_c00368{bottom:733.198516pt;}
.y5c_c00368{bottom:733.198555pt;}
.y5a_c00368{bottom:733.199171pt;}
.y58_c00368{bottom:733.199333pt;}
.y56_c00368{bottom:733.199416pt;}
.y59_c00368{bottom:733.199425pt;}
.y57_c00368{bottom:733.199455pt;}
.y52_c00368{bottom:733.199635pt;}
.y55_c00368{bottom:733.199804pt;}
.y51_c00368{bottom:733.200049pt;}
.y50_c00368{bottom:733.200079pt;}
.y53_c00368{bottom:733.200153pt;}
.y54_c00368{bottom:733.200379pt;}
.y4f_c00368{bottom:733.200401pt;}
.y4e_c00368{bottom:766.206264pt;}
.y4d_c00368{bottom:766.562475pt;}
.y4c_c00368{bottom:766.744819pt;}
.y4b_c00368{bottom:766.920195pt;}
.y4a_c00368{bottom:767.271056pt;}
.y49_c00368{bottom:767.512147pt;}
.y48_c00368{bottom:767.865359pt;}
.y47_c00368{bottom:768.166480pt;}
.y46_c00368{bottom:768.520459pt;}
.y45_c00368{bottom:768.694864pt;}
.y44_c00368{bottom:769.045017pt;}
.y43_c00368{bottom:769.442391pt;}
.y34_c00368{bottom:799.543508pt;}
.y35_c00368{bottom:799.543733pt;}
.y36_c00368{bottom:799.544385pt;}
.y3b_c00368{bottom:799.544644pt;}
.y39_c00368{bottom:799.544715pt;}
.y37_c00368{bottom:799.544744pt;}
.y3c_c00368{bottom:799.544801pt;}
.y3a_c00368{bottom:799.545219pt;}
.y3d_c00368{bottom:799.545347pt;}
.y38_c00368{bottom:799.545369pt;}
.y40_c00368{bottom:799.545487pt;}
.y3f_c00368{bottom:799.545501pt;}
.y3e_c00368{bottom:799.545584pt;}
.y42_c00368{bottom:799.545777pt;}
.y41_c00368{bottom:799.545845pt;}
.y33_c00368{bottom:827.642653pt;}
.y32_c00368{bottom:827.844955pt;}
.y31_c00368{bottom:828.088888pt;}
.y30_c00368{bottom:828.192928pt;}
.y2f_c00368{bottom:828.485229pt;}
.y2e_c00368{bottom:828.788408pt;}
.y2d_c00368{bottom:828.934415pt;}
.y2c_c00368{bottom:829.229763pt;}
.y2b_c00368{bottom:829.719451pt;}
.y2a_c00368{bottom:829.861464pt;}
.y29_c00368{bottom:829.964425pt;}
.y28_c00368{bottom:830.398417pt;}
.y27_c00368{bottom:830.639088pt;}
.y1d_c00368{bottom:860.844245pt;}
.y1c_c00368{bottom:860.844663pt;}
.y1e_c00368{bottom:860.844764pt;}
.y1f_c00368{bottom:860.845256pt;}
.y26_c00368{bottom:860.845477pt;}
.y22_c00368{bottom:860.845512pt;}
.y25_c00368{bottom:860.845521pt;}
.y20_c00368{bottom:860.845668pt;}
.y21_c00368{bottom:860.845811pt;}
.y24_c00368{bottom:860.846043pt;}
.y23_c00368{bottom:860.846111pt;}
.ye_c00368{bottom:894.205697pt;}
.y15_c00368{bottom:894.205788pt;}
.y14_c00368{bottom:894.205871pt;}
.yf_c00368{bottom:894.205949pt;}
.y16_c00368{bottom:894.205960pt;}
.y19_c00368{bottom:894.205969pt;}
.y12_c00368{bottom:894.205995pt;}
.y18_c00368{bottom:894.206117pt;}
.y13_c00368{bottom:894.206353pt;}
.y17_c00368{bottom:894.206452pt;}
.y1a_c00368{bottom:894.206580pt;}
.y11_c00368{bottom:894.206584pt;}
.y10_c00368{bottom:894.206599pt;}
.y1b_c00368{bottom:894.206752pt;}
.yd_c00368{bottom:922.628173pt;}
.yc_c00368{bottom:923.267521pt;}
.yb_c00368{bottom:923.533057pt;}
.ya_c00368{bottom:923.965081pt;}
.y9_c00368{bottom:924.600325pt;}
.y8_c00368{bottom:925.125241pt;}
.y7_c00368{bottom:925.565905pt;}
.y6_c00368{bottom:926.278717pt;}
.y5_c00368{bottom:926.881333pt;}
.y4_c00368{bottom:957.026667pt;}
.y3_c00368{bottom:988.006667pt;}
.y2_c00368{bottom:1017.200000pt;}
.y1_c00368{bottom:1071.120000pt;}
.h2_c00368{height:53.333333pt;}
.h6_c00368{height:58.669043pt;}
.ha_c00368{height:64.000000pt;}
.h15_c00368{height:64.001568pt;}
.h5_c00368{height:64.002592pt;}
.hc_c00368{height:64.003200pt;}
.h13_c00368{height:64.009247pt;}
.h4_c00368{height:69.333333pt;}
.hd_c00368{height:69.334581pt;}
.h9_c00368{height:69.336141pt;}
.h14_c00368{height:69.343351pt;}
.h3_c00368{height:74.666667pt;}
.hb_c00368{height:74.669691pt;}
.hf_c00368{height:74.675066pt;}
.h11_c00368{height:74.677455pt;}
.h7_c00368{height:80.003240pt;}
.he_c00368{height:80.004000pt;}
.h12_c00368{height:85.345663pt;}
.h8_c00368{height:90.670339pt;}
.h10_c00368{height:90.674328pt;}
.h0_c00368{height:1112.400000pt;}
.h1_c00368{height:1112.666667pt;}
.w0_c00368{width:813.333333pt;}
.x0_c00368{left:0.000000pt;}
.x80_c00368{left:121.930667pt;}
.x84_c00368{left:128.777333pt;}
.x92_c00368{left:131.174397pt;}
.x33_c00368{left:132.668611pt;}
.x3_c00368{left:134.160000pt;}
.x3d_c00368{left:153.355784pt;}
.x6a_c00368{left:160.229333pt;}
.x24_c00368{left:161.517669pt;}
.x59_c00368{left:163.561509pt;}
.x5e_c00368{left:170.012045pt;}
.x19_c00368{left:172.560000pt;}
.x4_c00368{left:174.480000pt;}
.xa0_c00368{left:179.863411pt;}
.x34_c00368{left:180.893017pt;}
.xe_c00368{left:181.920000pt;}
.x85_c00368{left:188.790667pt;}
.x65_c00368{left:189.738667pt;}
.x75_c00368{left:190.800000pt;}
.x99_c00368{left:198.762423pt;}
.x3e_c00368{left:200.398267pt;}
.x5f_c00368{left:208.474712pt;}
.x4e_c00368{left:209.761975pt;}
.x9a_c00368{left:215.273656pt;}
.xa5_c00368{left:217.578127pt;}
.x3f_c00368{left:218.878433pt;}
.x5_c00368{left:219.840000pt;}
.x6b_c00368{left:228.625333pt;}
.x1a_c00368{left:229.680000pt;}
.x1e_c00368{left:230.774667pt;}
.x70_c00368{left:237.504000pt;}
.x61_c00368{left:238.560000pt;}
.xf_c00368{left:240.240000pt;}
.x94_c00368{left:246.497741pt;}
.x81_c00368{left:247.624293pt;}
.x25_c00368{left:249.600809pt;}
.xa6_c00368{left:256.460069pt;}
.x47_c00368{left:257.923969pt;}
.x40_c00368{left:258.960352pt;}
.x56_c00368{left:259.924673pt;}
.x66_c00368{left:266.989333pt;}
.x2e_c00368{left:268.320760pt;}
.x6_c00368{left:269.520000pt;}
.xa7_c00368{left:275.898363pt;}
.x7a_c00368{left:277.552000pt;}
.x26_c00368{left:278.641828pt;}
.x62_c00368{left:284.640000pt;}
.x48_c00368{left:286.932749pt;}
.x35_c00368{left:288.410227pt;}
.x2f_c00368{left:297.601803pt;}
.x10_c00368{left:298.560000pt;}
.x60_c00368{left:306.617379pt;}
.x1b_c00368{left:308.160000pt;}
.x93_c00368{left:315.932288pt;}
.x36_c00368{left:316.931259pt;}
.x30_c00368{left:318.002125pt;}
.x86_c00368{left:325.498667pt;}
.x6c_c00368{left:326.745333pt;}
.x11_c00368{left:327.840000pt;}
.x71_c00368{left:335.644000pt;}
.x4f_c00368{left:336.726925pt;}
.x1c_c00368{left:340.560000pt;}
.x5a_c00368{left:345.268176pt;}
.x27_c00368{left:346.564657pt;}
.x9b_c00368{left:354.029037pt;}
.x67_c00368{left:355.100000pt;}
.x50_c00368{left:356.407188pt;}
.x41_c00368{left:366.245040pt;}
.x12_c00368{left:367.680000pt;}
.x87_c00368{left:374.021333pt;}
.x7_c00368{left:376.800000pt;}
.x57_c00368{left:385.449504pt;}
.x1_c00368{left:387.120000pt;}
.x88_c00368{left:394.420000pt;}
.x49_c00368{left:396.169035pt;}
.x9c_c00368{left:403.278715pt;}
.x95_c00368{left:404.920839pt;}
.x31_c00368{left:405.845241pt;}
.x2_c00368{left:407.520000pt;}
.x7b_c00368{left:413.862667pt;}
.x13_c00368{left:414.960000pt;}
.x63_c00368{left:424.080000pt;}
.x1f_c00368{left:425.896000pt;}
.x7c_c00368{left:433.352000pt;}
.x51_c00368{left:434.890869pt;}
.x28_c00368{left:436.807965pt;}
.x6d_c00368{left:443.430667pt;}
.x76_c00368{left:444.720000pt;}
.x1d_c00368{left:445.680000pt;}
.xa8_c00368{left:453.044789pt;}
.x4a_c00368{left:454.971952pt;}
.x89_c00368{left:462.521333pt;}
.x42_c00368{left:463.928948pt;}
.x52_c00368{left:465.852044pt;}
.x8f_c00368{left:472.790667pt;}
.x37_c00368{left:473.940911pt;}
.x8_c00368{left:474.960000pt;}
.x8a_c00368{left:482.473333pt;}
.x20_c00368{left:484.220000pt;}
.xa3_c00368{left:490.453121pt;}
.x5b_c00368{left:493.582843pt;}
.x43_c00368{left:495.130147pt;}
.x38_c00368{left:503.201967pt;}
.x29_c00368{left:504.970819pt;}
.x96_c00368{left:511.737044pt;}
.x58_c00368{left:513.854575pt;}
.xa9_c00368{left:522.006667pt;}
.x77_c00368{left:522.960000pt;}
.x53_c00368{left:523.934081pt;}
.xa4_c00368{left:531.191739pt;}
.x14_c00368{left:534.000000pt;}
.x9_c00368{left:534.960000pt;}
.x9d_c00368{left:540.838051pt;}
.x7d_c00368{left:541.802667pt;}
.x32_c00368{left:543.371044pt;}
.x72_c00368{left:551.938667pt;}
.x4b_c00368{left:553.635949pt;}
.x21_c00368{left:554.802667pt;}
.x8b_c00368{left:560.768000pt;}
.x44_c00368{left:562.812964pt;}
.xa_c00368{left:563.760000pt;}
.x7e_c00368{left:571.366667pt;}
.x5c_c00368{left:572.805509pt;}
.x15_c00368{left:575.040000pt;}
.x8c_c00368{left:581.082667pt;}
.x4c_c00368{left:582.900741pt;}
.x54_c00368{left:592.336947pt;}
.x2a_c00368{left:593.533995pt;}
.x82_c00368{left:601.389420pt;}
.x22_c00368{left:602.805333pt;}
.x73_c00368{left:611.448000pt;}
.x4d_c00368{left:613.384236pt;}
.x6e_c00368{left:618.862667pt;}
.x68_c00368{left:621.022667pt;}
.x39_c00368{left:622.259584pt;}
.x2b_c00368{left:623.775109pt;}
.xa1_c00368{left:630.106077pt;}
.x23_c00368{left:632.309333pt;}
.x9e_c00368{left:640.229428pt;}
.x5d_c00368{left:641.906843pt;}
.x3a_c00368{left:643.153673pt;}
.x8d_c00368{left:650.269333pt;}
.x90_c00368{left:651.708000pt;}
.x78_c00368{left:661.200000pt;}
.x97_c00368{left:670.640300pt;}
.x45_c00368{left:672.017808pt;}
.xb_c00368{left:673.920000pt;}
.xa2_c00368{left:679.559411pt;}
.x64_c00368{left:681.840000pt;}
.x16_c00368{left:682.800000pt;}
.x83_c00368{left:689.881353pt;}
.x79_c00368{left:690.960000pt;}
.x3b_c00368{left:691.888759pt;}
.x2c_c00368{left:692.898047pt;}
.x7f_c00368{left:700.480000pt;}
.x69_c00368{left:701.434667pt;}
.x17_c00368{left:703.200000pt;}
.xc_c00368{left:704.160000pt;}
.x9f_c00368{left:710.435831pt;}
.x55_c00368{left:711.382583pt;}
.x8e_c00368{left:720.365333pt;}
.x6f_c00368{left:721.592000pt;}
.x2d_c00368{left:722.659125pt;}
.x91_c00368{left:729.713333pt;}
.x18_c00368{left:731.520000pt;}
.x3c_c00368{left:732.442223pt;}
.xd_c00368{left:734.640000pt;}
.x74_c00368{left:740.341333pt;}
.x46_c00368{left:741.620781pt;}
.x98_c00368{left:750.571397pt;}
}





/* 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_c00369 {
    display:none;
  }
  .loading-indicator_c00369.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00369 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_c00369 { 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_c00369" -> "#page-container .classname_c00369")
 */
.pf_c00369 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00369 { /* 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_c00369.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00369 { /* 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_c00369 { /* 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_c00369 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00369 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00369 {overflow:visible;}
  }
}
.c_c00369 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00369 { /* 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_c00369:after { /* webkit #35443 */
  content: '';
}
.t_c00369:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00369 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 */
}
.__c00369 { /* 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_c00369 { /* info for Javascript */
  display:none;
}
.l_c00369 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00369 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00369 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00369: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_c00369 {
    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_c00369.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00369.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_c00369 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00369{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00369;src:url('chunks/assets/font_c605e72f209fc835e906f064.woff2')format("woff");}.ff1_c00369{font-family:ff1_c00369;line-height:1.000000;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;}
.m41_c00369{transform:matrix(0.007490,-0.000060,0.002000,0.249992,0,0);-ms-transform:matrix(0.007490,-0.000060,0.002000,0.249992,0,0);-webkit-transform:matrix(0.007490,-0.000060,0.002000,0.249992,0,0);}
.m1e_c00369{transform:matrix(0.013635,-0.000109,0.002000,0.249992,0,0);-ms-transform:matrix(0.013635,-0.000109,0.002000,0.249992,0,0);-webkit-transform:matrix(0.013635,-0.000109,0.002000,0.249992,0,0);}
.m27_c00369{transform:matrix(0.028749,-0.000230,0.002000,0.249992,0,0);-ms-transform:matrix(0.028749,-0.000230,0.002000,0.249992,0,0);-webkit-transform:matrix(0.028749,-0.000230,0.002000,0.249992,0,0);}
.mb_c00369{transform:matrix(0.117391,-0.000939,0.002000,0.249992,0,0);-ms-transform:matrix(0.117391,-0.000939,0.002000,0.249992,0,0);-webkit-transform:matrix(0.117391,-0.000939,0.002000,0.249992,0,0);}
.m5a_c00369{transform:matrix(0.134541,-0.001076,0.002000,0.249992,0,0);-ms-transform:matrix(0.134541,-0.001076,0.002000,0.249992,0,0);-webkit-transform:matrix(0.134541,-0.001076,0.002000,0.249992,0,0);}
.m86_c00369{transform:matrix(0.135274,0.003517,-0.006498,0.249916,0,0);-ms-transform:matrix(0.135274,0.003517,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.135274,0.003517,-0.006498,0.249916,0,0);}
.m90_c00369{transform:matrix(0.145775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145775,0.000000,0.000000,0.250000,0,0);}
.m43_c00369{transform:matrix(0.147590,-0.001181,0.002000,0.249992,0,0);-ms-transform:matrix(0.147590,-0.001181,0.002000,0.249992,0,0);-webkit-transform:matrix(0.147590,-0.001181,0.002000,0.249992,0,0);}
.mc_c00369{transform:matrix(0.149295,-0.001194,0.002000,0.249992,0,0);-ms-transform:matrix(0.149295,-0.001194,0.002000,0.249992,0,0);-webkit-transform:matrix(0.149295,-0.001194,0.002000,0.249992,0,0);}
.m77_c00369{transform:matrix(0.154135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154135,0.000000,0.000000,0.250000,0,0);}
.m75_c00369{transform:matrix(0.154505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154505,0.000000,0.000000,0.250000,0,0);}
.m44_c00369{transform:matrix(0.157830,-0.001263,0.002000,0.249992,0,0);-ms-transform:matrix(0.157830,-0.001263,0.002000,0.249992,0,0);-webkit-transform:matrix(0.157830,-0.001263,0.002000,0.249992,0,0);}
.m7a_c00369{transform:matrix(0.157980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157980,0.000000,0.000000,0.250000,0,0);}
.m55_c00369{transform:matrix(0.160945,-0.001288,0.002000,0.249992,0,0);-ms-transform:matrix(0.160945,-0.001288,0.002000,0.249992,0,0);-webkit-transform:matrix(0.160945,-0.001288,0.002000,0.249992,0,0);}
.m7e_c00369{transform:matrix(0.161705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161705,0.000000,0.000000,0.250000,0,0);}
.m7f_c00369{transform:matrix(0.163155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163155,0.000000,0.000000,0.250000,0,0);}
.m8b_c00369{transform:matrix(0.164714,0.004283,-0.006498,0.249916,0,0);-ms-transform:matrix(0.164714,0.004283,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.164714,0.004283,-0.006498,0.249916,0,0);}
.m54_c00369{transform:matrix(0.171475,-0.001372,0.002000,0.249992,0,0);-ms-transform:matrix(0.171475,-0.001372,0.002000,0.249992,0,0);-webkit-transform:matrix(0.171475,-0.001372,0.002000,0.249992,0,0);}
.m61_c00369{transform:matrix(0.173859,-0.001391,0.002000,0.249992,0,0);-ms-transform:matrix(0.173859,-0.001391,0.002000,0.249992,0,0);-webkit-transform:matrix(0.173859,-0.001391,0.002000,0.249992,0,0);}
.m79_c00369{transform:matrix(0.174155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174155,0.000000,0.000000,0.250000,0,0);}
.m47_c00369{transform:matrix(0.178274,-0.001426,0.002000,0.249992,0,0);-ms-transform:matrix(0.178274,-0.001426,0.002000,0.249992,0,0);-webkit-transform:matrix(0.178274,-0.001426,0.002000,0.249992,0,0);}
.m19_c00369{transform:matrix(0.178639,-0.001429,0.002000,0.249992,0,0);-ms-transform:matrix(0.178639,-0.001429,0.002000,0.249992,0,0);-webkit-transform:matrix(0.178639,-0.001429,0.002000,0.249992,0,0);}
.m46_c00369{transform:matrix(0.181039,-0.001448,0.002000,0.249992,0,0);-ms-transform:matrix(0.181039,-0.001448,0.002000,0.249992,0,0);-webkit-transform:matrix(0.181039,-0.001448,0.002000,0.249992,0,0);}
.m73_c00369{transform:matrix(0.181635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181635,0.000000,0.000000,0.250000,0,0);}
.m85_c00369{transform:matrix(0.181849,0.004728,-0.006498,0.249916,0,0);-ms-transform:matrix(0.181849,0.004728,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.181849,0.004728,-0.006498,0.249916,0,0);}
.m1_c00369{transform:matrix(0.181954,-0.001456,0.002000,0.249992,0,0);-ms-transform:matrix(0.181954,-0.001456,0.002000,0.249992,0,0);-webkit-transform:matrix(0.181954,-0.001456,0.002000,0.249992,0,0);}
.m48_c00369{transform:matrix(0.182379,-0.001459,0.002000,0.249992,0,0);-ms-transform:matrix(0.182379,-0.001459,0.002000,0.249992,0,0);-webkit-transform:matrix(0.182379,-0.001459,0.002000,0.249992,0,0);}
.m4a_c00369{transform:matrix(0.182859,-0.001463,0.002000,0.249992,0,0);-ms-transform:matrix(0.182859,-0.001463,0.002000,0.249992,0,0);-webkit-transform:matrix(0.182859,-0.001463,0.002000,0.249992,0,0);}
.m60_c00369{transform:matrix(0.183464,-0.001468,0.002000,0.249992,0,0);-ms-transform:matrix(0.183464,-0.001468,0.002000,0.249992,0,0);-webkit-transform:matrix(0.183464,-0.001468,0.002000,0.249992,0,0);}
.m42_c00369{transform:matrix(0.183609,-0.001469,0.002000,0.249992,0,0);-ms-transform:matrix(0.183609,-0.001469,0.002000,0.249992,0,0);-webkit-transform:matrix(0.183609,-0.001469,0.002000,0.249992,0,0);}
.m62_c00369{transform:matrix(0.184419,-0.001475,0.002000,0.249992,0,0);-ms-transform:matrix(0.184419,-0.001475,0.002000,0.249992,0,0);-webkit-transform:matrix(0.184419,-0.001475,0.002000,0.249992,0,0);}
.m7d_c00369{transform:matrix(0.185220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185220,0.000000,0.000000,0.250000,0,0);}
.m20_c00369{transform:matrix(0.185604,-0.001485,0.002000,0.249992,0,0);-ms-transform:matrix(0.185604,-0.001485,0.002000,0.249992,0,0);-webkit-transform:matrix(0.185604,-0.001485,0.002000,0.249992,0,0);}
.m89_c00369{transform:matrix(0.187217,0.004868,-0.006498,0.249916,0,0);-ms-transform:matrix(0.187217,0.004868,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.187217,0.004868,-0.006498,0.249916,0,0);}
.m2d_c00369{transform:matrix(0.187819,-0.001503,0.002000,0.249992,0,0);-ms-transform:matrix(0.187819,-0.001503,0.002000,0.249992,0,0);-webkit-transform:matrix(0.187819,-0.001503,0.002000,0.249992,0,0);}
.m72_c00369{transform:matrix(0.188670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188670,0.000000,0.000000,0.250000,0,0);}
.m1f_c00369{transform:matrix(0.190459,-0.001524,0.002000,0.249992,0,0);-ms-transform:matrix(0.190459,-0.001524,0.002000,0.249992,0,0);-webkit-transform:matrix(0.190459,-0.001524,0.002000,0.249992,0,0);}
.m59_c00369{transform:matrix(0.191069,-0.001529,0.002000,0.249992,0,0);-ms-transform:matrix(0.191069,-0.001529,0.002000,0.249992,0,0);-webkit-transform:matrix(0.191069,-0.001529,0.002000,0.249992,0,0);}
.m8e_c00369{transform:matrix(0.192520,0.005006,-0.006498,0.249916,0,0);-ms-transform:matrix(0.192520,0.005006,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.192520,0.005006,-0.006498,0.249916,0,0);}
.m78_c00369{transform:matrix(0.193320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193320,0.000000,0.000000,0.250000,0,0);}
.m67_c00369{transform:matrix(0.194254,-0.001554,0.002000,0.249992,0,0);-ms-transform:matrix(0.194254,-0.001554,0.002000,0.249992,0,0);-webkit-transform:matrix(0.194254,-0.001554,0.002000,0.249992,0,0);}
.m3_c00369{transform:matrix(0.195024,-0.001560,0.002000,0.249992,0,0);-ms-transform:matrix(0.195024,-0.001560,0.002000,0.249992,0,0);-webkit-transform:matrix(0.195024,-0.001560,0.002000,0.249992,0,0);}
.m2_c00369{transform:matrix(0.195254,-0.001562,0.002000,0.249992,0,0);-ms-transform:matrix(0.195254,-0.001562,0.002000,0.249992,0,0);-webkit-transform:matrix(0.195254,-0.001562,0.002000,0.249992,0,0);}
.m76_c00369{transform:matrix(0.196490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196490,0.000000,0.000000,0.250000,0,0);}
.m38_c00369{transform:matrix(0.196689,-0.001574,0.002000,0.249992,0,0);-ms-transform:matrix(0.196689,-0.001574,0.002000,0.249992,0,0);-webkit-transform:matrix(0.196689,-0.001574,0.002000,0.249992,0,0);}
.md_c00369{transform:matrix(0.196859,-0.001575,0.002000,0.249992,0,0);-ms-transform:matrix(0.196859,-0.001575,0.002000,0.249992,0,0);-webkit-transform:matrix(0.196859,-0.001575,0.002000,0.249992,0,0);}
.m40_c00369{transform:matrix(0.198504,-0.001588,0.002000,0.249992,0,0);-ms-transform:matrix(0.198504,-0.001588,0.002000,0.249992,0,0);-webkit-transform:matrix(0.198504,-0.001588,0.002000,0.249992,0,0);}
.m4b_c00369{transform:matrix(0.199124,-0.001593,0.002000,0.249992,0,0);-ms-transform:matrix(0.199124,-0.001593,0.002000,0.249992,0,0);-webkit-transform:matrix(0.199124,-0.001593,0.002000,0.249992,0,0);}
.m8c_c00369{transform:matrix(0.200397,0.005210,-0.006498,0.249916,0,0);-ms-transform:matrix(0.200397,0.005210,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.200397,0.005210,-0.006498,0.249916,0,0);}
.m69_c00369{transform:matrix(0.201904,-0.001615,0.002000,0.249992,0,0);-ms-transform:matrix(0.201904,-0.001615,0.002000,0.249992,0,0);-webkit-transform:matrix(0.201904,-0.001615,0.002000,0.249992,0,0);}
.m66_c00369{transform:matrix(0.205593,-0.001645,0.002000,0.249992,0,0);-ms-transform:matrix(0.205593,-0.001645,0.002000,0.249992,0,0);-webkit-transform:matrix(0.205593,-0.001645,0.002000,0.249992,0,0);}
.m71_c00369{transform:matrix(0.207900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207900,0.000000,0.000000,0.250000,0,0);}
.m5d_c00369{transform:matrix(0.208473,-0.001668,0.002000,0.249992,0,0);-ms-transform:matrix(0.208473,-0.001668,0.002000,0.249992,0,0);-webkit-transform:matrix(0.208473,-0.001668,0.002000,0.249992,0,0);}
.m45_c00369{transform:matrix(0.210798,-0.001686,0.002000,0.249992,0,0);-ms-transform:matrix(0.210798,-0.001686,0.002000,0.249992,0,0);-webkit-transform:matrix(0.210798,-0.001686,0.002000,0.249992,0,0);}
.m64_c00369{transform:matrix(0.211263,-0.001690,0.002000,0.249992,0,0);-ms-transform:matrix(0.211263,-0.001690,0.002000,0.249992,0,0);-webkit-transform:matrix(0.211263,-0.001690,0.002000,0.249992,0,0);}
.m6e_c00369{transform:matrix(0.212170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212170,0.000000,0.000000,0.250000,0,0);}
.m65_c00369{transform:matrix(0.213733,-0.001710,0.002000,0.249992,0,0);-ms-transform:matrix(0.213733,-0.001710,0.002000,0.249992,0,0);-webkit-transform:matrix(0.213733,-0.001710,0.002000,0.249992,0,0);}
.m68_c00369{transform:matrix(0.214823,-0.001719,0.002000,0.249992,0,0);-ms-transform:matrix(0.214823,-0.001719,0.002000,0.249992,0,0);-webkit-transform:matrix(0.214823,-0.001719,0.002000,0.249992,0,0);}
.m5e_c00369{transform:matrix(0.217868,-0.001743,0.002000,0.249992,0,0);-ms-transform:matrix(0.217868,-0.001743,0.002000,0.249992,0,0);-webkit-transform:matrix(0.217868,-0.001743,0.002000,0.249992,0,0);}
.m84_c00369{transform:matrix(0.217941,0.005666,-0.006498,0.249916,0,0);-ms-transform:matrix(0.217941,0.005666,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.217941,0.005666,-0.006498,0.249916,0,0);}
.m1d_c00369{transform:matrix(0.218588,-0.001749,0.002000,0.249992,0,0);-ms-transform:matrix(0.218588,-0.001749,0.002000,0.249992,0,0);-webkit-transform:matrix(0.218588,-0.001749,0.002000,0.249992,0,0);}
.m53_c00369{transform:matrix(0.219323,-0.001755,0.002000,0.249992,0,0);-ms-transform:matrix(0.219323,-0.001755,0.002000,0.249992,0,0);-webkit-transform:matrix(0.219323,-0.001755,0.002000,0.249992,0,0);}
.m63_c00369{transform:matrix(0.220953,-0.001768,0.002000,0.249992,0,0);-ms-transform:matrix(0.220953,-0.001768,0.002000,0.249992,0,0);-webkit-transform:matrix(0.220953,-0.001768,0.002000,0.249992,0,0);}
.m4f_c00369{transform:matrix(0.222028,-0.001776,0.002000,0.249992,0,0);-ms-transform:matrix(0.222028,-0.001776,0.002000,0.249992,0,0);-webkit-transform:matrix(0.222028,-0.001776,0.002000,0.249992,0,0);}
.m82_c00369{transform:matrix(0.222210,0.005777,-0.006498,0.249916,0,0);-ms-transform:matrix(0.222210,0.005777,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.222210,0.005777,-0.006498,0.249916,0,0);}
.m74_c00369{transform:matrix(0.222575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222575,0.000000,0.000000,0.250000,0,0);}
.m8a_c00369{transform:matrix(0.223390,0.005808,-0.006498,0.249916,0,0);-ms-transform:matrix(0.223390,0.005808,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.223390,0.005808,-0.006498,0.249916,0,0);}
.m13_c00369{transform:matrix(0.224083,-0.001793,0.002000,0.249992,0,0);-ms-transform:matrix(0.224083,-0.001793,0.002000,0.249992,0,0);-webkit-transform:matrix(0.224083,-0.001793,0.002000,0.249992,0,0);}
.m83_c00369{transform:matrix(0.224494,0.005837,-0.006498,0.249916,0,0);-ms-transform:matrix(0.224494,0.005837,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.224494,0.005837,-0.006498,0.249916,0,0);}
.m2e_c00369{transform:matrix(0.225798,-0.001806,0.002000,0.249992,0,0);-ms-transform:matrix(0.225798,-0.001806,0.002000,0.249992,0,0);-webkit-transform:matrix(0.225798,-0.001806,0.002000,0.249992,0,0);}
.m30_c00369{transform:matrix(0.227008,-0.001816,0.002000,0.249992,0,0);-ms-transform:matrix(0.227008,-0.001816,0.002000,0.249992,0,0);-webkit-transform:matrix(0.227008,-0.001816,0.002000,0.249992,0,0);}
.m14_c00369{transform:matrix(0.227218,-0.001818,0.002000,0.249992,0,0);-ms-transform:matrix(0.227218,-0.001818,0.002000,0.249992,0,0);-webkit-transform:matrix(0.227218,-0.001818,0.002000,0.249992,0,0);}
.m21_c00369{transform:matrix(0.227428,-0.001819,0.002000,0.249992,0,0);-ms-transform:matrix(0.227428,-0.001819,0.002000,0.249992,0,0);-webkit-transform:matrix(0.227428,-0.001819,0.002000,0.249992,0,0);}
.m7c_c00369{transform:matrix(0.227550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227550,0.000000,0.000000,0.250000,0,0);}
.m6_c00369{transform:matrix(0.227683,-0.001821,0.002000,0.249992,0,0);-ms-transform:matrix(0.227683,-0.001821,0.002000,0.249992,0,0);-webkit-transform:matrix(0.227683,-0.001821,0.002000,0.249992,0,0);}
.m50_c00369{transform:matrix(0.227968,-0.001824,0.002000,0.249992,0,0);-ms-transform:matrix(0.227968,-0.001824,0.002000,0.249992,0,0);-webkit-transform:matrix(0.227968,-0.001824,0.002000,0.249992,0,0);}
.m3f_c00369{transform:matrix(0.228558,-0.001828,0.002000,0.249992,0,0);-ms-transform:matrix(0.228558,-0.001828,0.002000,0.249992,0,0);-webkit-transform:matrix(0.228558,-0.001828,0.002000,0.249992,0,0);}
.m51_c00369{transform:matrix(0.229248,-0.001834,0.002000,0.249992,0,0);-ms-transform:matrix(0.229248,-0.001834,0.002000,0.249992,0,0);-webkit-transform:matrix(0.229248,-0.001834,0.002000,0.249992,0,0);}
.m7_c00369{transform:matrix(0.231798,-0.001854,0.002000,0.249992,0,0);-ms-transform:matrix(0.231798,-0.001854,0.002000,0.249992,0,0);-webkit-transform:matrix(0.231798,-0.001854,0.002000,0.249992,0,0);}
.m8_c00369{transform:matrix(0.231958,-0.001856,0.002000,0.249992,0,0);-ms-transform:matrix(0.231958,-0.001856,0.002000,0.249992,0,0);-webkit-transform:matrix(0.231958,-0.001856,0.002000,0.249992,0,0);}
.m22_c00369{transform:matrix(0.232163,-0.001857,0.002000,0.249992,0,0);-ms-transform:matrix(0.232163,-0.001857,0.002000,0.249992,0,0);-webkit-transform:matrix(0.232163,-0.001857,0.002000,0.249992,0,0);}
.m35_c00369{transform:matrix(0.233173,-0.001865,0.002000,0.249992,0,0);-ms-transform:matrix(0.233173,-0.001865,0.002000,0.249992,0,0);-webkit-transform:matrix(0.233173,-0.001865,0.002000,0.249992,0,0);}
.m8d_c00369{transform:matrix(0.233366,0.006068,-0.006498,0.249916,0,0);-ms-transform:matrix(0.233366,0.006068,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.233366,0.006068,-0.006498,0.249916,0,0);}
.m16_c00369{transform:matrix(0.233608,-0.001869,0.002000,0.249992,0,0);-ms-transform:matrix(0.233608,-0.001869,0.002000,0.249992,0,0);-webkit-transform:matrix(0.233608,-0.001869,0.002000,0.249992,0,0);}
.m2c_c00369{transform:matrix(0.233628,-0.001869,0.002000,0.249992,0,0);-ms-transform:matrix(0.233628,-0.001869,0.002000,0.249992,0,0);-webkit-transform:matrix(0.233628,-0.001869,0.002000,0.249992,0,0);}
.m3d_c00369{transform:matrix(0.236077,-0.001889,0.002000,0.249992,0,0);-ms-transform:matrix(0.236077,-0.001889,0.002000,0.249992,0,0);-webkit-transform:matrix(0.236077,-0.001889,0.002000,0.249992,0,0);}
.m4_c00369{transform:matrix(0.237472,-0.001900,0.002000,0.249992,0,0);-ms-transform:matrix(0.237472,-0.001900,0.002000,0.249992,0,0);-webkit-transform:matrix(0.237472,-0.001900,0.002000,0.249992,0,0);}
.m11_c00369{transform:matrix(0.239802,-0.001918,0.002000,0.249992,0,0);-ms-transform:matrix(0.239802,-0.001918,0.002000,0.249992,0,0);-webkit-transform:matrix(0.239802,-0.001918,0.002000,0.249992,0,0);}
.m12_c00369{transform:matrix(0.240237,-0.001922,0.002000,0.249992,0,0);-ms-transform:matrix(0.240237,-0.001922,0.002000,0.249992,0,0);-webkit-transform:matrix(0.240237,-0.001922,0.002000,0.249992,0,0);}
.m0_c00369{transform:matrix(0.241022,-0.001928,0.002000,0.249992,0,0);-ms-transform:matrix(0.241022,-0.001928,0.002000,0.249992,0,0);-webkit-transform:matrix(0.241022,-0.001928,0.002000,0.249992,0,0);}
.m70_c00369{transform:matrix(0.241520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241520,0.000000,0.000000,0.250000,0,0);}
.m7b_c00369{transform:matrix(0.241610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241610,0.000000,0.000000,0.250000,0,0);}
.m17_c00369{transform:matrix(0.244062,-0.001952,0.002000,0.249992,0,0);-ms-transform:matrix(0.244062,-0.001952,0.002000,0.249992,0,0);-webkit-transform:matrix(0.244062,-0.001952,0.002000,0.249992,0,0);}
.m25_c00369{transform:matrix(0.247972,-0.001984,0.002000,0.249992,0,0);-ms-transform:matrix(0.247972,-0.001984,0.002000,0.249992,0,0);-webkit-transform:matrix(0.247972,-0.001984,0.002000,0.249992,0,0);}
.m1b_c00369{transform:matrix(0.248137,-0.001985,0.002000,0.249992,0,0);-ms-transform:matrix(0.248137,-0.001985,0.002000,0.249992,0,0);-webkit-transform:matrix(0.248137,-0.001985,0.002000,0.249992,0,0);}
.m29_c00369{transform:matrix(0.249847,-0.001999,0.002000,0.249992,0,0);-ms-transform:matrix(0.249847,-0.001999,0.002000,0.249992,0,0);-webkit-transform:matrix(0.249847,-0.001999,0.002000,0.249992,0,0);}
.m57_c00369{transform:matrix(0.251047,-0.002008,0.002000,0.249992,0,0);-ms-transform:matrix(0.251047,-0.002008,0.002000,0.249992,0,0);-webkit-transform:matrix(0.251047,-0.002008,0.002000,0.249992,0,0);}
.m56_c00369{transform:matrix(0.252727,-0.002022,0.002000,0.249992,0,0);-ms-transform:matrix(0.252727,-0.002022,0.002000,0.249992,0,0);-webkit-transform:matrix(0.252727,-0.002022,0.002000,0.249992,0,0);}
.m81_c00369{transform:matrix(0.254164,0.006608,-0.006498,0.249916,0,0);-ms-transform:matrix(0.254164,0.006608,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.254164,0.006608,-0.006498,0.249916,0,0);}
.m2b_c00369{transform:matrix(0.255697,-0.002046,0.002000,0.249992,0,0);-ms-transform:matrix(0.255697,-0.002046,0.002000,0.249992,0,0);-webkit-transform:matrix(0.255697,-0.002046,0.002000,0.249992,0,0);}
.ma_c00369{transform:matrix(0.256397,-0.002051,0.002000,0.249992,0,0);-ms-transform:matrix(0.256397,-0.002051,0.002000,0.249992,0,0);-webkit-transform:matrix(0.256397,-0.002051,0.002000,0.249992,0,0);}
.m28_c00369{transform:matrix(0.256892,-0.002055,0.002000,0.249992,0,0);-ms-transform:matrix(0.256892,-0.002055,0.002000,0.249992,0,0);-webkit-transform:matrix(0.256892,-0.002055,0.002000,0.249992,0,0);}
.m5c_c00369{transform:matrix(0.257057,-0.002056,0.002000,0.249992,0,0);-ms-transform:matrix(0.257057,-0.002056,0.002000,0.249992,0,0);-webkit-transform:matrix(0.257057,-0.002056,0.002000,0.249992,0,0);}
.m18_c00369{transform:matrix(0.259632,-0.002077,0.002000,0.249992,0,0);-ms-transform:matrix(0.259632,-0.002077,0.002000,0.249992,0,0);-webkit-transform:matrix(0.259632,-0.002077,0.002000,0.249992,0,0);}
.m6a_c00369{transform:matrix(0.259937,-0.002079,0.002000,0.249992,0,0);-ms-transform:matrix(0.259937,-0.002079,0.002000,0.249992,0,0);-webkit-transform:matrix(0.259937,-0.002079,0.002000,0.249992,0,0);}
.m88_c00369{transform:matrix(0.260642,0.006777,-0.006498,0.249916,0,0);-ms-transform:matrix(0.260642,0.006777,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.260642,0.006777,-0.006498,0.249916,0,0);}
.m24_c00369{transform:matrix(0.262087,-0.002097,0.002000,0.249992,0,0);-ms-transform:matrix(0.262087,-0.002097,0.002000,0.249992,0,0);-webkit-transform:matrix(0.262087,-0.002097,0.002000,0.249992,0,0);}
.m5f_c00369{transform:matrix(0.263217,-0.002106,0.002000,0.249992,0,0);-ms-transform:matrix(0.263217,-0.002106,0.002000,0.249992,0,0);-webkit-transform:matrix(0.263217,-0.002106,0.002000,0.249992,0,0);}
.m36_c00369{transform:matrix(0.264077,-0.002113,0.002000,0.249992,0,0);-ms-transform:matrix(0.264077,-0.002113,0.002000,0.249992,0,0);-webkit-transform:matrix(0.264077,-0.002113,0.002000,0.249992,0,0);}
.m3e_c00369{transform:matrix(0.265407,-0.002123,0.002000,0.249992,0,0);-ms-transform:matrix(0.265407,-0.002123,0.002000,0.249992,0,0);-webkit-transform:matrix(0.265407,-0.002123,0.002000,0.249992,0,0);}
.m1c_c00369{transform:matrix(0.267926,-0.002143,0.002000,0.249992,0,0);-ms-transform:matrix(0.267926,-0.002143,0.002000,0.249992,0,0);-webkit-transform:matrix(0.267926,-0.002143,0.002000,0.249992,0,0);}
.m4e_c00369{transform:matrix(0.269406,-0.002155,0.002000,0.249992,0,0);-ms-transform:matrix(0.269406,-0.002155,0.002000,0.249992,0,0);-webkit-transform:matrix(0.269406,-0.002155,0.002000,0.249992,0,0);}
.m5_c00369{transform:matrix(0.270106,-0.002161,0.002000,0.249992,0,0);-ms-transform:matrix(0.270106,-0.002161,0.002000,0.249992,0,0);-webkit-transform:matrix(0.270106,-0.002161,0.002000,0.249992,0,0);}
.m3c_c00369{transform:matrix(0.270536,-0.002164,0.002000,0.249992,0,0);-ms-transform:matrix(0.270536,-0.002164,0.002000,0.249992,0,0);-webkit-transform:matrix(0.270536,-0.002164,0.002000,0.249992,0,0);}
.m87_c00369{transform:matrix(0.272908,0.007096,-0.006498,0.249916,0,0);-ms-transform:matrix(0.272908,0.007096,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.272908,0.007096,-0.006498,0.249916,0,0);}
.m52_c00369{transform:matrix(0.273471,-0.002188,0.002000,0.249992,0,0);-ms-transform:matrix(0.273471,-0.002188,0.002000,0.249992,0,0);-webkit-transform:matrix(0.273471,-0.002188,0.002000,0.249992,0,0);}
.m9_c00369{transform:matrix(0.274926,-0.002199,0.002000,0.249992,0,0);-ms-transform:matrix(0.274926,-0.002199,0.002000,0.249992,0,0);-webkit-transform:matrix(0.274926,-0.002199,0.002000,0.249992,0,0);}
.m31_c00369{transform:matrix(0.277711,-0.002222,0.002000,0.249992,0,0);-ms-transform:matrix(0.277711,-0.002222,0.002000,0.249992,0,0);-webkit-transform:matrix(0.277711,-0.002222,0.002000,0.249992,0,0);}
.m32_c00369{transform:matrix(0.285321,-0.002283,0.002000,0.249992,0,0);-ms-transform:matrix(0.285321,-0.002283,0.002000,0.249992,0,0);-webkit-transform:matrix(0.285321,-0.002283,0.002000,0.249992,0,0);}
.m6d_c00369{transform:matrix(0.287275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287275,0.000000,0.000000,0.250000,0,0);}
.m8f_c00369{transform:matrix(0.296310,0.007704,-0.006498,0.249916,0,0);-ms-transform:matrix(0.296310,0.007704,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.296310,0.007704,-0.006498,0.249916,0,0);}
.m34_c00369{transform:matrix(0.311000,-0.002488,0.002000,0.249992,0,0);-ms-transform:matrix(0.311000,-0.002488,0.002000,0.249992,0,0);-webkit-transform:matrix(0.311000,-0.002488,0.002000,0.249992,0,0);}
.m10_c00369{transform:matrix(0.327735,-0.002622,0.002000,0.249992,0,0);-ms-transform:matrix(0.327735,-0.002622,0.002000,0.249992,0,0);-webkit-transform:matrix(0.327735,-0.002622,0.002000,0.249992,0,0);}
.m6b_c00369{transform:matrix(0.329119,-0.002633,0.002000,0.249992,0,0);-ms-transform:matrix(0.329119,-0.002633,0.002000,0.249992,0,0);-webkit-transform:matrix(0.329119,-0.002633,0.002000,0.249992,0,0);}
.m49_c00369{transform:matrix(0.332414,-0.002659,0.002000,0.249992,0,0);-ms-transform:matrix(0.332414,-0.002659,0.002000,0.249992,0,0);-webkit-transform:matrix(0.332414,-0.002659,0.002000,0.249992,0,0);}
.m23_c00369{transform:matrix(0.336254,-0.002690,0.002000,0.249992,0,0);-ms-transform:matrix(0.336254,-0.002690,0.002000,0.249992,0,0);-webkit-transform:matrix(0.336254,-0.002690,0.002000,0.249992,0,0);}
.m37_c00369{transform:matrix(0.342414,-0.002739,0.002000,0.249992,0,0);-ms-transform:matrix(0.342414,-0.002739,0.002000,0.249992,0,0);-webkit-transform:matrix(0.342414,-0.002739,0.002000,0.249992,0,0);}
.m58_c00369{transform:matrix(0.344769,-0.002758,0.002000,0.249992,0,0);-ms-transform:matrix(0.344769,-0.002758,0.002000,0.249992,0,0);-webkit-transform:matrix(0.344769,-0.002758,0.002000,0.249992,0,0);}
.m3a_c00369{transform:matrix(0.349284,-0.002794,0.002000,0.249992,0,0);-ms-transform:matrix(0.349284,-0.002794,0.002000,0.249992,0,0);-webkit-transform:matrix(0.349284,-0.002794,0.002000,0.249992,0,0);}
.m39_c00369{transform:matrix(0.350339,-0.002803,0.002000,0.249992,0,0);-ms-transform:matrix(0.350339,-0.002803,0.002000,0.249992,0,0);-webkit-transform:matrix(0.350339,-0.002803,0.002000,0.249992,0,0);}
.m26_c00369{transform:matrix(0.354669,-0.002837,0.002000,0.249992,0,0);-ms-transform:matrix(0.354669,-0.002837,0.002000,0.249992,0,0);-webkit-transform:matrix(0.354669,-0.002837,0.002000,0.249992,0,0);}
.m1a_c00369{transform:matrix(0.379728,-0.003038,0.002000,0.249992,0,0);-ms-transform:matrix(0.379728,-0.003038,0.002000,0.249992,0,0);-webkit-transform:matrix(0.379728,-0.003038,0.002000,0.249992,0,0);}
.mf_c00369{transform:matrix(0.381758,-0.003054,0.002000,0.249992,0,0);-ms-transform:matrix(0.381758,-0.003054,0.002000,0.249992,0,0);-webkit-transform:matrix(0.381758,-0.003054,0.002000,0.249992,0,0);}
.m15_c00369{transform:matrix(0.384348,-0.003075,0.002000,0.249992,0,0);-ms-transform:matrix(0.384348,-0.003075,0.002000,0.249992,0,0);-webkit-transform:matrix(0.384348,-0.003075,0.002000,0.249992,0,0);}
.m2a_c00369{transform:matrix(0.387048,-0.003096,0.002000,0.249992,0,0);-ms-transform:matrix(0.387048,-0.003096,0.002000,0.249992,0,0);-webkit-transform:matrix(0.387048,-0.003096,0.002000,0.249992,0,0);}
.m3b_c00369{transform:matrix(0.390697,-0.003126,0.002000,0.249992,0,0);-ms-transform:matrix(0.390697,-0.003126,0.002000,0.249992,0,0);-webkit-transform:matrix(0.390697,-0.003126,0.002000,0.249992,0,0);}
.m4d_c00369{transform:matrix(0.410847,-0.003287,0.002000,0.249992,0,0);-ms-transform:matrix(0.410847,-0.003287,0.002000,0.249992,0,0);-webkit-transform:matrix(0.410847,-0.003287,0.002000,0.249992,0,0);}
.m2f_c00369{transform:matrix(0.420312,-0.003362,0.002000,0.249992,0,0);-ms-transform:matrix(0.420312,-0.003362,0.002000,0.249992,0,0);-webkit-transform:matrix(0.420312,-0.003362,0.002000,0.249992,0,0);}
.m6f_c00369{transform:matrix(0.427990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427990,0.000000,0.000000,0.250000,0,0);}
.me_c00369{transform:matrix(0.441691,-0.003534,0.002000,0.249992,0,0);-ms-transform:matrix(0.441691,-0.003534,0.002000,0.249992,0,0);-webkit-transform:matrix(0.441691,-0.003534,0.002000,0.249992,0,0);}
.m91_c00369{transform:matrix(0.518030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518030,0.000000,0.000000,0.250000,0,0);}
.m5b_c00369{transform:matrix(0.553762,-0.004430,0.002000,0.249992,0,0);-ms-transform:matrix(0.553762,-0.004430,0.002000,0.249992,0,0);-webkit-transform:matrix(0.553762,-0.004430,0.002000,0.249992,0,0);}
.m6c_c00369{transform:matrix(0.610060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.610060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.610060,0.000000,0.000000,0.250000,0,0);}
.m33_c00369{transform:matrix(0.699493,-0.005596,0.002000,0.249992,0,0);-ms-transform:matrix(0.699493,-0.005596,0.002000,0.249992,0,0);-webkit-transform:matrix(0.699493,-0.005596,0.002000,0.249992,0,0);}
.m92_c00369{transform:matrix(0.884590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.884590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.884590,0.000000,0.000000,0.250000,0,0);}
.m4c_c00369{transform:matrix(1.532036,-0.012256,0.002000,0.249992,0,0);-ms-transform:matrix(1.532036,-0.012256,0.002000,0.249992,0,0);-webkit-transform:matrix(1.532036,-0.012256,0.002000,0.249992,0,0);}
.m80_c00369{transform:matrix(2.348450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.348450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.348450,0.000000,0.000000,0.250000,0,0);}
.v0_c00369{vertical-align:0.000000px;}
.ls0_c00369{letter-spacing:0.000000px;}
.sc__c00369{text-shadow:none;}
.sc0_c00369{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__c00369{-webkit-text-stroke:0px transparent;}
.sc0_c00369{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00369{word-spacing:0.000000px;}
.fc0_c00369{color:transparent;}
.fsb_c00369{font-size:18.000000px;}
.fsa_c00369{font-size:24.000000px;}
.fs9_c00369{font-size:36.000000px;}
.fs2_c00369{font-size:78.002496px;}
.fs1_c00369{font-size:84.002688px;}
.fs4_c00369{font-size:90.002880px;}
.fs0_c00369{font-size:96.003072px;}
.fs5_c00369{font-size:102.000000px;}
.fs3_c00369{font-size:114.003648px;}
.fs6_c00369{font-size:120.000000px;}
.fs8_c00369{font-size:120.040553px;}
.fs7_c00369{font-size:138.000000px;}
.y0_c00369{bottom:0.000000px;}
.y81_c00369{bottom:107.730000px;}
.y80_c00369{bottom:148.770000px;}
.y7f_c00369{bottom:180.630000px;}
.y7e_c00369{bottom:485.292519px;}
.y7d_c00369{bottom:488.297274px;}
.y7c_c00369{bottom:489.182223px;}
.y7b_c00369{bottom:490.358073px;}
.y7a_c00369{bottom:491.829387px;}
.y79_c00369{bottom:492.414855px;}
.y78_c00369{bottom:494.488251px;}
.y77_c00369{bottom:494.975478px;}
.y76_c00369{bottom:495.765462px;}
.y75_c00369{bottom:496.411419px;}
.y74_c00369{bottom:498.054645px;}
.y73_c00369{bottom:498.936318px;}
.y72_c00369{bottom:500.372922px;}
.y71_c00369{bottom:501.816819px;}
.y70_c00369{bottom:502.771500px;}
.y6f_c00369{bottom:790.185000px;}
.y6e_c00369{bottom:822.085500px;}
.y65_c00369{bottom:861.009540px;}
.y66_c00369{bottom:861.799968px;}
.y67_c00369{bottom:862.268244px;}
.y68_c00369{bottom:862.498572px;}
.y6d_c00369{bottom:862.545000px;}
.y69_c00369{bottom:862.734840px;}
.y6a_c00369{bottom:864.822360px;}
.y6b_c00369{bottom:865.036572px;}
.y6c_c00369{bottom:865.525188px;}
.y55_c00369{bottom:896.653044px;}
.y56_c00369{bottom:896.790564px;}
.y57_c00369{bottom:897.046812px;}
.y58_c00369{bottom:897.247152px;}
.y59_c00369{bottom:897.454344px;}
.y5a_c00369{bottom:897.976140px;}
.y5b_c00369{bottom:898.466736px;}
.y5c_c00369{bottom:898.641612px;}
.y5d_c00369{bottom:899.087376px;}
.y5e_c00369{bottom:899.305476px;}
.y5f_c00369{bottom:899.559084px;}
.y60_c00369{bottom:899.835204px;}
.y61_c00369{bottom:900.049368px;}
.y62_c00369{bottom:900.304776px;}
.y63_c00369{bottom:900.457572px;}
.y64_c00369{bottom:900.768228px;}
.y4d_c00369{bottom:931.377708px;}
.y4e_c00369{bottom:932.441904px;}
.y4f_c00369{bottom:932.875992px;}
.y50_c00369{bottom:933.199044px;}
.y51_c00369{bottom:933.366060px;}
.y52_c00369{bottom:933.697248px;}
.y53_c00369{bottom:934.242876px;}
.y54_c00369{bottom:934.406904px;}
.y4c_c00369{bottom:968.028504px;}
.y4a_c00369{bottom:968.028588px;}
.y4b_c00369{bottom:968.028996px;}
.y49_c00369{bottom:968.029020px;}
.y48_c00369{bottom:968.029644px;}
.y47_c00369{bottom:968.030340px;}
.y46_c00369{bottom:968.030700px;}
.y42_c00369{bottom:968.030892px;}
.y43_c00369{bottom:968.030940px;}
.y41_c00369{bottom:968.031204px;}
.y45_c00369{bottom:968.031312px;}
.y44_c00369{bottom:968.031624px;}
.y40_c00369{bottom:1003.701048px;}
.y3e_c00369{bottom:1003.701264px;}
.y3a_c00369{bottom:1003.701372px;}
.y3c_c00369{bottom:1003.701408px;}
.y3f_c00369{bottom:1003.701432px;}
.y3b_c00369{bottom:1003.701540px;}
.y39_c00369{bottom:1003.701804px;}
.y3d_c00369{bottom:1003.701936px;}
.y38_c00369{bottom:1003.702536px;}
.y35_c00369{bottom:1003.702644px;}
.y37_c00369{bottom:1003.702740px;}
.y36_c00369{bottom:1003.703112px;}
.y34_c00369{bottom:1041.713772px;}
.y33_c00369{bottom:1041.714096px;}
.y2f_c00369{bottom:1041.714528px;}
.y2e_c00369{bottom:1041.714540px;}
.y31_c00369{bottom:1041.714612px;}
.y30_c00369{bottom:1041.714624px;}
.y2d_c00369{bottom:1041.714732px;}
.y32_c00369{bottom:1041.714780px;}
.y29_c00369{bottom:1041.715032px;}
.y2c_c00369{bottom:1041.715356px;}
.y2b_c00369{bottom:1041.715500px;}
.y2a_c00369{bottom:1041.715752px;}
.y1e_c00369{bottom:1074.792756px;}
.y1f_c00369{bottom:1076.412492px;}
.y20_c00369{bottom:1077.094560px;}
.y21_c00369{bottom:1077.421992px;}
.y22_c00369{bottom:1078.286460px;}
.y23_c00369{bottom:1079.397444px;}
.y24_c00369{bottom:1079.822928px;}
.y25_c00369{bottom:1080.065316px;}
.y26_c00369{bottom:1080.764232px;}
.y27_c00369{bottom:1081.401384px;}
.y28_c00369{bottom:1082.610684px;}
.ye_c00369{bottom:1111.859304px;}
.yf_c00369{bottom:1112.204868px;}
.y10_c00369{bottom:1112.425044px;}
.y11_c00369{bottom:1112.608104px;}
.y12_c00369{bottom:1112.714172px;}
.y13_c00369{bottom:1113.325008px;}
.y14_c00369{bottom:1113.546072px;}
.y15_c00369{bottom:1113.891948px;}
.y16_c00369{bottom:1114.197588px;}
.y17_c00369{bottom:1114.464096px;}
.y18_c00369{bottom:1114.702512px;}
.y19_c00369{bottom:1114.861536px;}
.y1a_c00369{bottom:1114.999356px;}
.y1b_c00369{bottom:1115.213640px;}
.y1c_c00369{bottom:1115.525364px;}
.y1d_c00369{bottom:1115.816184px;}
.y1_c00369{bottom:1146.960000px;}
.y2_c00369{bottom:1147.407048px;}
.y3_c00369{bottom:1147.694544px;}
.y4_c00369{bottom:1147.958196px;}
.y5_c00369{bottom:1148.897820px;}
.y6_c00369{bottom:1149.190236px;}
.y7_c00369{bottom:1149.712764px;}
.y8_c00369{bottom:1150.552632px;}
.y9_c00369{bottom:1151.583036px;}
.ya_c00369{bottom:1152.043032px;}
.yb_c00369{bottom:1152.434028px;}
.yc_c00369{bottom:1153.286832px;}
.yd_c00369{bottom:1153.822668px;}
.hd_c00369{height:18.000000px;}
.hc_c00369{height:24.000000px;}
.hb_c00369{height:36.000000px;}
.h4_c00369{height:78.002496px;}
.h3_c00369{height:84.002688px;}
.h6_c00369{height:90.002880px;}
.h2_c00369{height:96.003072px;}
.h7_c00369{height:102.000000px;}
.h5_c00369{height:114.003648px;}
.h8_c00369{height:120.000000px;}
.ha_c00369{height:120.040553px;}
.h9_c00369{height:138.000000px;}
.h0_c00369{height:1251.450000px;}
.h1_c00369{height:1251.750000px;}
.w0_c00369{width:915.000000px;}
.x0_c00369{left:0.000000px;}
.x27_c00369{left:1.615392px;}
.x7c_c00369{left:5.940000px;}
.x7b_c00369{left:7.290000px;}
.x44_c00369{left:9.583044px;}
.x28_c00369{left:12.956112px;}
.x3a_c00369{left:25.915380px;}
.x3b_c00369{left:51.565524px;}
.x1_c00369{left:56.523000px;}
.x61_c00369{left:61.020000px;}
.x6d_c00369{left:62.370000px;}
.xe_c00369{left:69.160332px;}
.x56_c00369{left:72.191460px;}
.x30_c00369{left:80.188500px;}
.x3c_c00369{left:82.886028px;}
.x4a_c00369{left:84.532620px;}
.x1c_c00369{left:88.321836px;}
.x4b_c00369{left:107.535492px;}
.x2_c00369{left:112.404000px;}
.x31_c00369{left:128.250072px;}
.x62_c00369{left:142.830000px;}
.x3_c00369{left:148.341000px;}
.xf_c00369{left:149.941776px;}
.x6e_c00369{left:155.103000px;}
.x32_c00369{left:163.080804px;}
.x10_c00369{left:171.263292px;}
.x4_c00369{left:181.297500px;}
.x4c_c00369{left:183.735216px;}
.x57_c00369{left:185.058360px;}
.x63_c00369{left:187.110000px;}
.x6f_c00369{left:191.821500px;}
.x4d_c00369{left:218.259768px;}
.x45_c00369{left:222.300144px;}
.x29_c00369{left:227.342340px;}
.x3d_c00369{left:229.230888px;}
.x33_c00369{left:237.872592px;}
.x64_c00369{left:242.460000px;}
.x70_c00369{left:247.356000px;}
.x1d_c00369{left:250.286244px;}
.x58_c00369{left:252.030900px;}
.x2a_c00369{left:261.633036px;}
.x34_c00369{left:273.783396px;}
.x65_c00369{left:275.670000px;}
.x59_c00369{left:284.947164px;}
.x11_c00369{left:293.558232px;}
.x5_c00369{left:298.750500px;}
.x71_c00369{left:302.610000px;}
.x35_c00369{left:304.293852px;}
.x3e_c00369{left:306.182820px;}
.x46_c00369{left:309.000720px;}
.x2b_c00369{left:315.634992px;}
.x1e_c00369{left:318.481152px;}
.x3f_c00369{left:327.514188px;}
.x5d_c00369{left:329.130000px;}
.x6_c00369{left:335.302500px;}
.x72_c00369{left:336.520500px;}
.x12_c00369{left:337.879800px;}
.x1f_c00369{left:351.159624px;}
.x47_c00369{left:373.758780px;}
.x36_c00369{left:382.865880px;}
.x5e_c00369{left:384.750000px;}
.x4e_c00369{left:386.998968px;}
.x2c_c00369{left:391.776864px;}
.x7_c00369{left:400.618500px;}
.x13_c00369{left:406.990956px;}
.x4f_c00369{left:416.171436px;}
.x66_c00369{left:417.690000px;}
.x73_c00369{left:424.566000px;}
.x5f_c00369{left:429.300000px;}
.x20_c00369{left:437.654244px;}
.x37_c00369{left:448.748592px;}
.x67_c00369{left:452.790000px;}
.x74_c00369{left:454.950000px;}
.x2d_c00369{left:459.279684px;}
.x14_c00369{left:468.259932px;}
.x48_c00369{left:473.161656px;}
.x40_c00369{left:482.499612px;}
.x50_c00369{left:490.455624px;}
.x60_c00369{left:497.340000px;}
.x68_c00369{left:499.770000px;}
.x8_c00369{left:505.602000px;}
.x2e_c00369{left:512.741604px;}
.x38_c00369{left:515.981400px;}
.x15_c00369{left:521.449704px;}
.x51_c00369{left:526.906212px;}
.x69_c00369{left:538.650000px;}
.x21_c00369{left:548.775468px;}
.x75_c00369{left:553.435500px;}
.x6a_c00369{left:560.790000px;}
.x16_c00369{left:569.252856px;}
.x76_c00369{left:575.953500px;}
.x41_c00369{left:581.052924px;}
.x49_c00369{left:582.242772px;}
.x22_c00369{left:591.272784px;}
.x17_c00369{left:601.131624px;}
.x42_c00369{left:604.812948px;}
.x23_c00369{left:615.570900px;}
.x5a_c00369{left:617.048328px;}
.x6b_c00369{left:618.840000px;}
.x39_c00369{left:624.523848px;}
.x18_c00369{left:628.672284px;}
.x77_c00369{left:632.542500px;}
.x9_c00369{left:634.402500px;}
.x6c_c00369{left:643.680000px;}
.x5b_c00369{left:647.575068px;}
.x52_c00369{left:650.832192px;}
.x19_c00369{left:671.583816px;}
.x78_c00369{left:677.767500px;}
.x24_c00369{left:685.496784px;}
.x43_c00369{left:688.245288px;}
.xa_c00369{left:691.902000px;}
.x53_c00369{left:693.446376px;}
.x79_c00369{left:711.804000px;}
.x2f_c00369{left:713.628468px;}
.x5c_c00369{left:717.277620px;}
.x54_c00369{left:718.921284px;}
.x1a_c00369{left:733.988316px;}
.xb_c00369{left:740.776500px;}
.x25_c00369{left:749.202264px;}
.x55_c00369{left:770.691612px;}
.x1b_c00369{left:792.279720px;}
.x7a_c00369{left:827.371500px;}
.xc_c00369{left:847.377000px;}
.x26_c00369{left:870.175332px;}
.xd_c00369{left:914.356500px;}
@media print{
.v0_c00369{vertical-align:0.000000pt;}
.ls0_c00369{letter-spacing:0.000000pt;}
.ws0_c00369{word-spacing:0.000000pt;}
.fsb_c00369{font-size:16.000000pt;}
.fsa_c00369{font-size:21.333333pt;}
.fs9_c00369{font-size:32.000000pt;}
.fs2_c00369{font-size:69.335552pt;}
.fs1_c00369{font-size:74.669056pt;}
.fs4_c00369{font-size:80.002560pt;}
.fs0_c00369{font-size:85.336064pt;}
.fs5_c00369{font-size:90.666667pt;}
.fs3_c00369{font-size:101.336576pt;}
.fs6_c00369{font-size:106.666667pt;}
.fs8_c00369{font-size:106.702714pt;}
.fs7_c00369{font-size:122.666667pt;}
.y0_c00369{bottom:0.000000pt;}
.y81_c00369{bottom:95.760000pt;}
.y80_c00369{bottom:132.240000pt;}
.y7f_c00369{bottom:160.560000pt;}
.y7e_c00369{bottom:431.371128pt;}
.y7d_c00369{bottom:434.042021pt;}
.y7c_c00369{bottom:434.828643pt;}
.y7b_c00369{bottom:435.873843pt;}
.y7a_c00369{bottom:437.181677pt;}
.y79_c00369{bottom:437.702093pt;}
.y78_c00369{bottom:439.545112pt;}
.y77_c00369{bottom:439.978203pt;}
.y76_c00369{bottom:440.680411pt;}
.y75_c00369{bottom:441.254595pt;}
.y74_c00369{bottom:442.715240pt;}
.y73_c00369{bottom:443.498949pt;}
.y72_c00369{bottom:444.775931pt;}
.y71_c00369{bottom:446.059395pt;}
.y70_c00369{bottom:446.908000pt;}
.y6f_c00369{bottom:702.386667pt;}
.y6e_c00369{bottom:730.742667pt;}
.y65_c00369{bottom:765.341813pt;}
.y66_c00369{bottom:766.044416pt;}
.y67_c00369{bottom:766.460661pt;}
.y68_c00369{bottom:766.665397pt;}
.y6d_c00369{bottom:766.706667pt;}
.y69_c00369{bottom:766.875413pt;}
.y6a_c00369{bottom:768.730987pt;}
.y6b_c00369{bottom:768.921397pt;}
.y6c_c00369{bottom:769.355723pt;}
.y55_c00369{bottom:797.024928pt;}
.y56_c00369{bottom:797.147168pt;}
.y57_c00369{bottom:797.374944pt;}
.y58_c00369{bottom:797.553024pt;}
.y59_c00369{bottom:797.737195pt;}
.y5a_c00369{bottom:798.201013pt;}
.y5b_c00369{bottom:798.637099pt;}
.y5c_c00369{bottom:798.792544pt;}
.y5d_c00369{bottom:799.188779pt;}
.y5e_c00369{bottom:799.382645pt;}
.y5f_c00369{bottom:799.608075pt;}
.y60_c00369{bottom:799.853515pt;}
.y61_c00369{bottom:800.043883pt;}
.y62_c00369{bottom:800.270912pt;}
.y63_c00369{bottom:800.406731pt;}
.y64_c00369{bottom:800.682869pt;}
.y4d_c00369{bottom:827.891296pt;}
.y4e_c00369{bottom:828.837248pt;}
.y4f_c00369{bottom:829.223104pt;}
.y50_c00369{bottom:829.510261pt;}
.y51_c00369{bottom:829.658720pt;}
.y52_c00369{bottom:829.953109pt;}
.y53_c00369{bottom:830.438112pt;}
.y54_c00369{bottom:830.583915pt;}
.y4c_c00369{bottom:860.469781pt;}
.y4a_c00369{bottom:860.469856pt;}
.y4b_c00369{bottom:860.470219pt;}
.y49_c00369{bottom:860.470240pt;}
.y48_c00369{bottom:860.470795pt;}
.y47_c00369{bottom:860.471413pt;}
.y46_c00369{bottom:860.471733pt;}
.y42_c00369{bottom:860.471904pt;}
.y43_c00369{bottom:860.471947pt;}
.y41_c00369{bottom:860.472181pt;}
.y45_c00369{bottom:860.472277pt;}
.y44_c00369{bottom:860.472555pt;}
.y40_c00369{bottom:892.178709pt;}
.y3e_c00369{bottom:892.178901pt;}
.y3a_c00369{bottom:892.178997pt;}
.y3c_c00369{bottom:892.179029pt;}
.y3f_c00369{bottom:892.179051pt;}
.y3b_c00369{bottom:892.179147pt;}
.y39_c00369{bottom:892.179381pt;}
.y3d_c00369{bottom:892.179499pt;}
.y38_c00369{bottom:892.180032pt;}
.y35_c00369{bottom:892.180128pt;}
.y37_c00369{bottom:892.180213pt;}
.y36_c00369{bottom:892.180544pt;}
.y34_c00369{bottom:925.967797pt;}
.y33_c00369{bottom:925.968085pt;}
.y2f_c00369{bottom:925.968469pt;}
.y2e_c00369{bottom:925.968480pt;}
.y31_c00369{bottom:925.968544pt;}
.y30_c00369{bottom:925.968555pt;}
.y2d_c00369{bottom:925.968651pt;}
.y32_c00369{bottom:925.968693pt;}
.y29_c00369{bottom:925.968917pt;}
.y2c_c00369{bottom:925.969205pt;}
.y2b_c00369{bottom:925.969333pt;}
.y2a_c00369{bottom:925.969557pt;}
.y1e_c00369{bottom:955.371339pt;}
.y1f_c00369{bottom:956.811104pt;}
.y20_c00369{bottom:957.417387pt;}
.y21_c00369{bottom:957.708437pt;}
.y22_c00369{bottom:958.476853pt;}
.y23_c00369{bottom:959.464395pt;}
.y24_c00369{bottom:959.842603pt;}
.y25_c00369{bottom:960.058059pt;}
.y26_c00369{bottom:960.679317pt;}
.y27_c00369{bottom:961.245675pt;}
.y28_c00369{bottom:962.320608pt;}
.ye_c00369{bottom:988.319381pt;}
.yf_c00369{bottom:988.626549pt;}
.y10_c00369{bottom:988.822261pt;}
.y11_c00369{bottom:988.984981pt;}
.y12_c00369{bottom:989.079264pt;}
.y13_c00369{bottom:989.622229pt;}
.y14_c00369{bottom:989.818731pt;}
.y15_c00369{bottom:990.126176pt;}
.y16_c00369{bottom:990.397856pt;}
.y17_c00369{bottom:990.634752pt;}
.y18_c00369{bottom:990.846677pt;}
.y19_c00369{bottom:990.988032pt;}
.y1a_c00369{bottom:991.110539pt;}
.y1b_c00369{bottom:991.301013pt;}
.y1c_c00369{bottom:991.578101pt;}
.y1d_c00369{bottom:991.836608pt;}
.y1_c00369{bottom:1019.520000pt;}
.y2_c00369{bottom:1019.917376pt;}
.y3_c00369{bottom:1020.172928pt;}
.y4_c00369{bottom:1020.407285pt;}
.y5_c00369{bottom:1021.242507pt;}
.y6_c00369{bottom:1021.502432pt;}
.y7_c00369{bottom:1021.966901pt;}
.y8_c00369{bottom:1022.713451pt;}
.y9_c00369{bottom:1023.629365pt;}
.ya_c00369{bottom:1024.038251pt;}
.yb_c00369{bottom:1024.385803pt;}
.yc_c00369{bottom:1025.143851pt;}
.yd_c00369{bottom:1025.620149pt;}
.hd_c00369{height:16.000000pt;}
.hc_c00369{height:21.333333pt;}
.hb_c00369{height:32.000000pt;}
.h4_c00369{height:69.335552pt;}
.h3_c00369{height:74.669056pt;}
.h6_c00369{height:80.002560pt;}
.h2_c00369{height:85.336064pt;}
.h7_c00369{height:90.666667pt;}
.h5_c00369{height:101.336576pt;}
.h8_c00369{height:106.666667pt;}
.ha_c00369{height:106.702714pt;}
.h9_c00369{height:122.666667pt;}
.h0_c00369{height:1112.400000pt;}
.h1_c00369{height:1112.666667pt;}
.w0_c00369{width:813.333333pt;}
.x0_c00369{left:0.000000pt;}
.x27_c00369{left:1.435904pt;}
.x7c_c00369{left:5.280000pt;}
.x7b_c00369{left:6.480000pt;}
.x44_c00369{left:8.518261pt;}
.x28_c00369{left:11.516544pt;}
.x3a_c00369{left:23.035893pt;}
.x3b_c00369{left:45.836021pt;}
.x1_c00369{left:50.242667pt;}
.x61_c00369{left:54.240000pt;}
.x6d_c00369{left:55.440000pt;}
.xe_c00369{left:61.475851pt;}
.x56_c00369{left:64.170187pt;}
.x30_c00369{left:71.278667pt;}
.x3c_c00369{left:73.676469pt;}
.x4a_c00369{left:75.140107pt;}
.x1c_c00369{left:78.508299pt;}
.x4b_c00369{left:95.587104pt;}
.x2_c00369{left:99.914667pt;}
.x31_c00369{left:114.000064pt;}
.x62_c00369{left:126.960000pt;}
.x3_c00369{left:131.858667pt;}
.xf_c00369{left:133.281579pt;}
.x6e_c00369{left:137.869333pt;}
.x32_c00369{left:144.960715pt;}
.x10_c00369{left:152.234037pt;}
.x4_c00369{left:161.153333pt;}
.x4c_c00369{left:163.320192pt;}
.x57_c00369{left:164.496320pt;}
.x63_c00369{left:166.320000pt;}
.x6f_c00369{left:170.508000pt;}
.x4d_c00369{left:194.008683pt;}
.x45_c00369{left:197.600128pt;}
.x29_c00369{left:202.082080pt;}
.x3d_c00369{left:203.760789pt;}
.x33_c00369{left:211.442304pt;}
.x64_c00369{left:215.520000pt;}
.x70_c00369{left:219.872000pt;}
.x1d_c00369{left:222.476661pt;}
.x58_c00369{left:224.027467pt;}
.x2a_c00369{left:232.562699pt;}
.x34_c00369{left:243.363019pt;}
.x65_c00369{left:245.040000pt;}
.x59_c00369{left:253.286368pt;}
.x11_c00369{left:260.940651pt;}
.x5_c00369{left:265.556000pt;}
.x71_c00369{left:268.986667pt;}
.x35_c00369{left:270.483424pt;}
.x3e_c00369{left:272.162507pt;}
.x46_c00369{left:274.667307pt;}
.x2b_c00369{left:280.564437pt;}
.x1e_c00369{left:283.094357pt;}
.x3f_c00369{left:291.123723pt;}
.x5d_c00369{left:292.560000pt;}
.x6_c00369{left:298.046667pt;}
.x72_c00369{left:299.129333pt;}
.x12_c00369{left:300.337600pt;}
.x1f_c00369{left:312.141888pt;}
.x47_c00369{left:332.230027pt;}
.x36_c00369{left:340.325227pt;}
.x5e_c00369{left:342.000000pt;}
.x4e_c00369{left:343.999083pt;}
.x2c_c00369{left:348.246101pt;}
.x7_c00369{left:356.105333pt;}
.x13_c00369{left:361.769739pt;}
.x4f_c00369{left:369.930165pt;}
.x66_c00369{left:371.280000pt;}
.x73_c00369{left:377.392000pt;}
.x5f_c00369{left:381.600000pt;}
.x20_c00369{left:389.025995pt;}
.x37_c00369{left:398.887637pt;}
.x67_c00369{left:402.480000pt;}
.x74_c00369{left:404.400000pt;}
.x2d_c00369{left:408.248608pt;}
.x14_c00369{left:416.231051pt;}
.x48_c00369{left:420.588139pt;}
.x40_c00369{left:428.888544pt;}
.x50_c00369{left:435.960555pt;}
.x60_c00369{left:442.080000pt;}
.x68_c00369{left:444.240000pt;}
.x8_c00369{left:449.424000pt;}
.x2e_c00369{left:455.770315pt;}
.x38_c00369{left:458.650133pt;}
.x15_c00369{left:463.510848pt;}
.x51_c00369{left:468.361077pt;}
.x69_c00369{left:478.800000pt;}
.x21_c00369{left:487.800416pt;}
.x75_c00369{left:491.942667pt;}
.x6a_c00369{left:498.480000pt;}
.x16_c00369{left:506.002539pt;}
.x76_c00369{left:511.958667pt;}
.x41_c00369{left:516.491488pt;}
.x49_c00369{left:517.549131pt;}
.x22_c00369{left:525.575808pt;}
.x17_c00369{left:534.339221pt;}
.x42_c00369{left:537.611509pt;}
.x23_c00369{left:547.174133pt;}
.x5a_c00369{left:548.487403pt;}
.x6b_c00369{left:550.080000pt;}
.x39_c00369{left:555.132309pt;}
.x18_c00369{left:558.819808pt;}
.x77_c00369{left:562.260000pt;}
.x9_c00369{left:563.913333pt;}
.x6c_c00369{left:572.160000pt;}
.x5b_c00369{left:575.622283pt;}
.x52_c00369{left:578.517504pt;}
.x19_c00369{left:596.963392pt;}
.x78_c00369{left:602.460000pt;}
.x24_c00369{left:609.330475pt;}
.x43_c00369{left:611.773589pt;}
.xa_c00369{left:615.024000pt;}
.x53_c00369{left:616.396779pt;}
.x79_c00369{left:632.714667pt;}
.x2f_c00369{left:634.336416pt;}
.x5c_c00369{left:637.580107pt;}
.x54_c00369{left:639.041141pt;}
.x1a_c00369{left:652.434059pt;}
.xb_c00369{left:658.468000pt;}
.x25_c00369{left:665.957568pt;}
.x55_c00369{left:685.059211pt;}
.x1b_c00369{left:704.248640pt;}
.x7a_c00369{left:735.441333pt;}
.xc_c00369{left:753.224000pt;}
.x26_c00369{left:773.489184pt;}
.xd_c00369{left:812.761333pt;}
}





/* 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_c00370 {
    display:none;
  }
  .loading-indicator_c00370.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00370 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_c00370 { 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_c00370" -> "#page-container .classname_c00370")
 */
.pf_c00370 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00370 { /* 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_c00370.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00370 { /* 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_c00370 { /* 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_c00370 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00370 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00370 {overflow:visible;}
  }
}
.c_c00370 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00370 { /* 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_c00370:after { /* webkit #35443 */
  content: '';
}
.t_c00370:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00370 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 */
}
.__c00370 { /* 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_c00370 { /* info for Javascript */
  display:none;
}
.l_c00370 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00370 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00370 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00370: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_c00370 {
    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_c00370.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00370.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_c00370 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00370{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00370;src:url('chunks/assets/font_53ec0c54e60da7c2d414b553.woff2')format("woff");}.ff1_c00370{font-family:ff1_c00370;line-height:1.000000;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;}
.m138_c00370{transform:matrix(0.040557,0.000527,-0.003250,0.249979,0,0);-ms-transform:matrix(0.040557,0.000527,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.040557,0.000527,-0.003250,0.249979,0,0);}
.m0_c00370{transform:matrix(0.096310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096310,0.000000,0.000000,0.250000,0,0);}
.m4c_c00370{transform:matrix(0.146045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146045,0.000000,0.000000,0.250000,0,0);}
.mc1_c00370{transform:matrix(0.154861,0.001703,-0.002750,0.249985,0,0);-ms-transform:matrix(0.154861,0.001703,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.154861,0.001703,-0.002750,0.249985,0,0);}
.m53_c00370{transform:matrix(0.166900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166900,0.000000,0.000000,0.250000,0,0);}
.m52_c00370{transform:matrix(0.169930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169930,0.000000,0.000000,0.250000,0,0);}
.m50_c00370{transform:matrix(0.170345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170345,0.000000,0.000000,0.250000,0,0);}
.m56_c00370{transform:matrix(0.170670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170670,0.000000,0.000000,0.250000,0,0);}
.m54_c00370{transform:matrix(0.172780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172780,0.000000,0.000000,0.250000,0,0);}
.m57_c00370{transform:matrix(0.173305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173305,0.000000,0.000000,0.250000,0,0);}
.m70_c00370{transform:matrix(0.173940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173940,0.000000,0.000000,0.250000,0,0);}
.m1d_c00370{transform:matrix(0.176505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176505,0.000000,0.000000,0.250000,0,0);}
.md2_c00370{transform:matrix(0.178089,0.001959,-0.002750,0.249985,0,0);-ms-transform:matrix(0.178089,0.001959,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.178089,0.001959,-0.002750,0.249985,0,0);}
.m16_c00370{transform:matrix(0.178100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178100,0.000000,0.000000,0.250000,0,0);}
.mf0_c00370{transform:matrix(0.178364,0.001962,-0.002750,0.249985,0,0);-ms-transform:matrix(0.178364,0.001962,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.178364,0.001962,-0.002750,0.249985,0,0);}
.m51_c00370{transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00370{transform:matrix(0.178615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178615,0.000000,0.000000,0.250000,0,0);}
.m79_c00370{transform:matrix(0.178830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178830,0.000000,0.000000,0.250000,0,0);}
.m18_c00370{transform:matrix(0.178940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178940,0.000000,0.000000,0.250000,0,0);}
.md8_c00370{transform:matrix(0.179164,0.001971,-0.002750,0.249985,0,0);-ms-transform:matrix(0.179164,0.001971,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.179164,0.001971,-0.002750,0.249985,0,0);}
.m14c_c00370{transform:matrix(0.179705,0.002696,-0.003750,0.249972,0,0);-ms-transform:matrix(0.179705,0.002696,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.179705,0.002696,-0.003750,0.249972,0,0);}
.m4e_c00370{transform:matrix(0.180235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180235,0.000000,0.000000,0.250000,0,0);}
.m85_c00370{transform:matrix(0.182141,0.001275,-0.001750,0.249994,0,0);-ms-transform:matrix(0.182141,0.001275,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.182141,0.001275,-0.001750,0.249994,0,0);}
.mdf_c00370{transform:matrix(0.182559,0.002008,-0.002750,0.249985,0,0);-ms-transform:matrix(0.182559,0.002008,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.182559,0.002008,-0.002750,0.249985,0,0);}
.m69_c00370{transform:matrix(0.182660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182660,0.000000,0.000000,0.250000,0,0);}
.m86_c00370{transform:matrix(0.184030,0.001288,-0.001750,0.249994,0,0);-ms-transform:matrix(0.184030,0.001288,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.184030,0.001288,-0.001750,0.249994,0,0);}
.me_c00370{transform:matrix(0.184715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184715,0.000000,0.000000,0.250000,0,0);}
.ma7_c00370{transform:matrix(0.185930,0.001302,-0.001750,0.249994,0,0);-ms-transform:matrix(0.185930,0.001302,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.185930,0.001302,-0.001750,0.249994,0,0);}
.m59_c00370{transform:matrix(0.185935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185935,0.000000,0.000000,0.250000,0,0);}
.me5_c00370{transform:matrix(0.186064,0.002047,-0.002750,0.249985,0,0);-ms-transform:matrix(0.186064,0.002047,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.186064,0.002047,-0.002750,0.249985,0,0);}
.m146_c00370{transform:matrix(0.187339,0.002810,-0.003750,0.249972,0,0);-ms-transform:matrix(0.187339,0.002810,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.187339,0.002810,-0.003750,0.249972,0,0);}
.m4d_c00370{transform:matrix(0.187645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187645,0.000000,0.000000,0.250000,0,0);}
.m4b_c00370{transform:matrix(0.188680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188680,0.000000,0.000000,0.250000,0,0);}
.mc8_c00370{transform:matrix(0.189254,0.002082,-0.002750,0.249985,0,0);-ms-transform:matrix(0.189254,0.002082,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.189254,0.002082,-0.002750,0.249985,0,0);}
.m82_c00370{transform:matrix(0.189735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189735,0.000000,0.000000,0.250000,0,0);}
.mc_c00370{transform:matrix(0.191170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191170,0.000000,0.000000,0.250000,0,0);}
.mae_c00370{transform:matrix(0.191370,0.001340,-0.001750,0.249994,0,0);-ms-transform:matrix(0.191370,0.001340,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.191370,0.001340,-0.001750,0.249994,0,0);}
.m10_c00370{transform:matrix(0.191925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191925,0.000000,0.000000,0.250000,0,0);}
.mfa_c00370{transform:matrix(0.191963,0.002112,-0.002750,0.249985,0,0);-ms-transform:matrix(0.191963,0.002112,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.191963,0.002112,-0.002750,0.249985,0,0);}
.m8b_c00370{transform:matrix(0.192580,0.001348,-0.001750,0.249994,0,0);-ms-transform:matrix(0.192580,0.001348,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.192580,0.001348,-0.001750,0.249994,0,0);}
.mbf_c00370{transform:matrix(0.192813,0.002121,-0.002750,0.249985,0,0);-ms-transform:matrix(0.192813,0.002121,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.192813,0.002121,-0.002750,0.249985,0,0);}
.m4a_c00370{transform:matrix(0.193145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193145,0.000000,0.000000,0.250000,0,0);}
.m2b_c00370{transform:matrix(0.193755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193755,0.000000,0.000000,0.250000,0,0);}
.m14_c00370{transform:matrix(0.194195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194195,0.000000,0.000000,0.250000,0,0);}
.mbe_c00370{transform:matrix(0.194303,0.002137,-0.002750,0.249985,0,0);-ms-transform:matrix(0.194303,0.002137,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.194303,0.002137,-0.002750,0.249985,0,0);}
.m55_c00370{transform:matrix(0.194330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194330,0.000000,0.000000,0.250000,0,0);}
.mfd_c00370{transform:matrix(0.194338,0.002138,-0.002750,0.249985,0,0);-ms-transform:matrix(0.194338,0.002138,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.194338,0.002138,-0.002750,0.249985,0,0);}
.mab_c00370{transform:matrix(0.194345,0.001360,-0.001750,0.249994,0,0);-ms-transform:matrix(0.194345,0.001360,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.194345,0.001360,-0.001750,0.249994,0,0);}
.mc5_c00370{transform:matrix(0.194688,0.002142,-0.002750,0.249985,0,0);-ms-transform:matrix(0.194688,0.002142,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.194688,0.002142,-0.002750,0.249985,0,0);}
.m80_c00370{transform:matrix(0.195100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195100,0.000000,0.000000,0.250000,0,0);}
.md9_c00370{transform:matrix(0.195263,0.002148,-0.002750,0.249985,0,0);-ms-transform:matrix(0.195263,0.002148,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.195263,0.002148,-0.002750,0.249985,0,0);}
.md6_c00370{transform:matrix(0.195328,0.002149,-0.002750,0.249985,0,0);-ms-transform:matrix(0.195328,0.002149,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.195328,0.002149,-0.002750,0.249985,0,0);}
.mcd_c00370{transform:matrix(0.195553,0.002151,-0.002750,0.249985,0,0);-ms-transform:matrix(0.195553,0.002151,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.195553,0.002151,-0.002750,0.249985,0,0);}
.mea_c00370{transform:matrix(0.196293,0.002159,-0.002750,0.249985,0,0);-ms-transform:matrix(0.196293,0.002159,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.196293,0.002159,-0.002750,0.249985,0,0);}
.m15_c00370{transform:matrix(0.196385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196385,0.000000,0.000000,0.250000,0,0);}
.mb3_c00370{transform:matrix(0.196650,0.001377,-0.001750,0.249994,0,0);-ms-transform:matrix(0.196650,0.001377,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.196650,0.001377,-0.001750,0.249994,0,0);}
.mff_c00370{transform:matrix(0.196783,0.002165,-0.002750,0.249985,0,0);-ms-transform:matrix(0.196783,0.002165,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.196783,0.002165,-0.002750,0.249985,0,0);}
.m107_c00370{transform:matrix(0.197318,0.002170,-0.002750,0.249985,0,0);-ms-transform:matrix(0.197318,0.002170,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.197318,0.002170,-0.002750,0.249985,0,0);}
.m147_c00370{transform:matrix(0.198148,0.002972,-0.003750,0.249972,0,0);-ms-transform:matrix(0.198148,0.002972,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.198148,0.002972,-0.003750,0.249972,0,0);}
.m49_c00370{transform:matrix(0.199035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199035,0.000000,0.000000,0.250000,0,0);}
.mdb_c00370{transform:matrix(0.199513,0.002195,-0.002750,0.249985,0,0);-ms-transform:matrix(0.199513,0.002195,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.199513,0.002195,-0.002750,0.249985,0,0);}
.m7c_c00370{transform:matrix(0.199740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199740,0.000000,0.000000,0.250000,0,0);}
.m1b_c00370{transform:matrix(0.199970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199970,0.000000,0.000000,0.250000,0,0);}
.m148_c00370{transform:matrix(0.200307,0.003005,-0.003750,0.249972,0,0);-ms-transform:matrix(0.200307,0.003005,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.200307,0.003005,-0.003750,0.249972,0,0);}
.mf_c00370{transform:matrix(0.200530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200530,0.000000,0.000000,0.250000,0,0);}
.mcf_c00370{transform:matrix(0.200868,0.002210,-0.002750,0.249985,0,0);-ms-transform:matrix(0.200868,0.002210,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.200868,0.002210,-0.002750,0.249985,0,0);}
.mc4_c00370{transform:matrix(0.201143,0.002213,-0.002750,0.249985,0,0);-ms-transform:matrix(0.201143,0.002213,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.201143,0.002213,-0.002750,0.249985,0,0);}
.m105_c00370{transform:matrix(0.201233,0.002214,-0.002750,0.249985,0,0);-ms-transform:matrix(0.201233,0.002214,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.201233,0.002214,-0.002750,0.249985,0,0);}
.m2d_c00370{transform:matrix(0.201615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201615,0.000000,0.000000,0.250000,0,0);}
.me6_c00370{transform:matrix(0.201873,0.002221,-0.002750,0.249985,0,0);-ms-transform:matrix(0.201873,0.002221,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.201873,0.002221,-0.002750,0.249985,0,0);}
.m89_c00370{transform:matrix(0.202220,0.001416,-0.001750,0.249994,0,0);-ms-transform:matrix(0.202220,0.001416,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.202220,0.001416,-0.001750,0.249994,0,0);}
.m149_c00370{transform:matrix(0.202492,0.003037,-0.003750,0.249972,0,0);-ms-transform:matrix(0.202492,0.003037,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.202492,0.003037,-0.003750,0.249972,0,0);}
.md4_c00370{transform:matrix(0.202858,0.002231,-0.002750,0.249985,0,0);-ms-transform:matrix(0.202858,0.002231,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.202858,0.002231,-0.002750,0.249985,0,0);}
.mdd_c00370{transform:matrix(0.203388,0.002237,-0.002750,0.249985,0,0);-ms-transform:matrix(0.203388,0.002237,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.203388,0.002237,-0.002750,0.249985,0,0);}
.m11a_c00370{transform:matrix(0.203603,0.002240,-0.002750,0.249985,0,0);-ms-transform:matrix(0.203603,0.002240,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.203603,0.002240,-0.002750,0.249985,0,0);}
.m11_c00370{transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);}
.m144_c00370{transform:matrix(0.205572,0.003084,-0.003750,0.249972,0,0);-ms-transform:matrix(0.205572,0.003084,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.205572,0.003084,-0.003750,0.249972,0,0);}
.md3_c00370{transform:matrix(0.206218,0.002268,-0.002750,0.249985,0,0);-ms-transform:matrix(0.206218,0.002268,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.206218,0.002268,-0.002750,0.249985,0,0);}
.m5e_c00370{transform:matrix(0.206260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206260,0.000000,0.000000,0.250000,0,0);}
.m125_c00370{transform:matrix(0.206379,0.003302,-0.003999,0.249968,0,0);-ms-transform:matrix(0.206379,0.003302,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.206379,0.003302,-0.003999,0.249968,0,0);}
.mbd_c00370{transform:matrix(0.206388,0.002270,-0.002750,0.249985,0,0);-ms-transform:matrix(0.206388,0.002270,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.206388,0.002270,-0.002750,0.249985,0,0);}
.m19_c00370{transform:matrix(0.206525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206525,0.000000,0.000000,0.250000,0,0);}
.m2f_c00370{transform:matrix(0.206740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206740,0.000000,0.000000,0.250000,0,0);}
.me9_c00370{transform:matrix(0.207707,0.002285,-0.002750,0.249985,0,0);-ms-transform:matrix(0.207707,0.002285,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.207707,0.002285,-0.002750,0.249985,0,0);}
.md7_c00370{transform:matrix(0.208032,0.002288,-0.002750,0.249985,0,0);-ms-transform:matrix(0.208032,0.002288,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.208032,0.002288,-0.002750,0.249985,0,0);}
.mee_c00370{transform:matrix(0.208062,0.002289,-0.002750,0.249985,0,0);-ms-transform:matrix(0.208062,0.002289,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.208062,0.002289,-0.002750,0.249985,0,0);}
.me1_c00370{transform:matrix(0.208327,0.002292,-0.002750,0.249985,0,0);-ms-transform:matrix(0.208327,0.002292,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.208327,0.002292,-0.002750,0.249985,0,0);}
.m7f_c00370{transform:matrix(0.208670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208670,0.000000,0.000000,0.250000,0,0);}
.m21_c00370{transform:matrix(0.208675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208675,0.000000,0.000000,0.250000,0,0);}
.m65_c00370{transform:matrix(0.208715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208715,0.000000,0.000000,0.250000,0,0);}
.m6e_c00370{transform:matrix(0.209300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209300,0.000000,0.000000,0.250000,0,0);}
.mb2_c00370{transform:matrix(0.209740,0.001468,-0.001750,0.249994,0,0);-ms-transform:matrix(0.209740,0.001468,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.209740,0.001468,-0.001750,0.249994,0,0);}
.mc2_c00370{transform:matrix(0.209792,0.002308,-0.002750,0.249985,0,0);-ms-transform:matrix(0.209792,0.002308,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.209792,0.002308,-0.002750,0.249985,0,0);}
.mfb_c00370{transform:matrix(0.209867,0.002309,-0.002750,0.249985,0,0);-ms-transform:matrix(0.209867,0.002309,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.209867,0.002309,-0.002750,0.249985,0,0);}
.m63_c00370{transform:matrix(0.209880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209880,0.000000,0.000000,0.250000,0,0);}
.m94_c00370{transform:matrix(0.210190,0.001471,-0.001750,0.249994,0,0);-ms-transform:matrix(0.210190,0.001471,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.210190,0.001471,-0.001750,0.249994,0,0);}
.mc0_c00370{transform:matrix(0.210232,0.002313,-0.002750,0.249985,0,0);-ms-transform:matrix(0.210232,0.002313,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.210232,0.002313,-0.002750,0.249985,0,0);}
.me0_c00370{transform:matrix(0.210447,0.002315,-0.002750,0.249985,0,0);-ms-transform:matrix(0.210447,0.002315,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.210447,0.002315,-0.002750,0.249985,0,0);}
.m5f_c00370{transform:matrix(0.211660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211660,0.000000,0.000000,0.250000,0,0);}
.m5b_c00370{transform:matrix(0.211970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211970,0.000000,0.000000,0.250000,0,0);}
.m14b_c00370{transform:matrix(0.212151,0.003182,-0.003750,0.249972,0,0);-ms-transform:matrix(0.212151,0.003182,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.212151,0.003182,-0.003750,0.249972,0,0);}
.m11f_c00370{transform:matrix(0.212497,0.002337,-0.002750,0.249985,0,0);-ms-transform:matrix(0.212497,0.002337,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.212497,0.002337,-0.002750,0.249985,0,0);}
.m38_c00370{transform:matrix(0.212760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212760,0.000000,0.000000,0.250000,0,0);}
.m156_c00370{transform:matrix(0.213041,0.003196,-0.003750,0.249972,0,0);-ms-transform:matrix(0.213041,0.003196,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.213041,0.003196,-0.003750,0.249972,0,0);}
.md5_c00370{transform:matrix(0.213177,0.002345,-0.002750,0.249985,0,0);-ms-transform:matrix(0.213177,0.002345,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.213177,0.002345,-0.002750,0.249985,0,0);}
.mf7_c00370{transform:matrix(0.213452,0.002348,-0.002750,0.249985,0,0);-ms-transform:matrix(0.213452,0.002348,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.213452,0.002348,-0.002750,0.249985,0,0);}
.m6d_c00370{transform:matrix(0.213720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213720,0.000000,0.000000,0.250000,0,0);}
.mde_c00370{transform:matrix(0.214022,0.002354,-0.002750,0.249985,0,0);-ms-transform:matrix(0.214022,0.002354,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.214022,0.002354,-0.002750,0.249985,0,0);}
.m81_c00370{transform:matrix(0.214160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214160,0.000000,0.000000,0.250000,0,0);}
.m17_c00370{transform:matrix(0.214170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214170,0.000000,0.000000,0.250000,0,0);}
.m141_c00370{transform:matrix(0.214397,0.002787,-0.003250,0.249979,0,0);-ms-transform:matrix(0.214397,0.002787,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.214397,0.002787,-0.003250,0.249979,0,0);}
.m9f_c00370{transform:matrix(0.214410,0.001501,-0.001750,0.249994,0,0);-ms-transform:matrix(0.214410,0.001501,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.214410,0.001501,-0.001750,0.249994,0,0);}
.m157_c00370{transform:matrix(0.214611,0.003219,-0.003750,0.249972,0,0);-ms-transform:matrix(0.214611,0.003219,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.214611,0.003219,-0.003750,0.249972,0,0);}
.m104_c00370{transform:matrix(0.214842,0.002363,-0.002750,0.249985,0,0);-ms-transform:matrix(0.214842,0.002363,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.214842,0.002363,-0.002750,0.249985,0,0);}
.me4_c00370{transform:matrix(0.215027,0.002365,-0.002750,0.249985,0,0);-ms-transform:matrix(0.215027,0.002365,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.215027,0.002365,-0.002750,0.249985,0,0);}
.m11b_c00370{transform:matrix(0.215702,0.002373,-0.002750,0.249985,0,0);-ms-transform:matrix(0.215702,0.002373,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.215702,0.002373,-0.002750,0.249985,0,0);}
.m26_c00370{transform:matrix(0.215705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215705,0.000000,0.000000,0.250000,0,0);}
.m106_c00370{transform:matrix(0.215992,0.002376,-0.002750,0.249985,0,0);-ms-transform:matrix(0.215992,0.002376,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.215992,0.002376,-0.002750,0.249985,0,0);}
.m159_c00370{transform:matrix(0.216376,0.003246,-0.003750,0.249972,0,0);-ms-transform:matrix(0.216376,0.003246,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.216376,0.003246,-0.003750,0.249972,0,0);}
.mf5_c00370{transform:matrix(0.216492,0.002381,-0.002750,0.249985,0,0);-ms-transform:matrix(0.216492,0.002381,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.216492,0.002381,-0.002750,0.249985,0,0);}
.ma9_c00370{transform:matrix(0.216500,0.001515,-0.001750,0.249994,0,0);-ms-transform:matrix(0.216500,0.001515,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.216500,0.001515,-0.001750,0.249994,0,0);}
.m58_c00370{transform:matrix(0.216725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216725,0.000000,0.000000,0.250000,0,0);}
.mf6_c00370{transform:matrix(0.217087,0.002388,-0.002750,0.249985,0,0);-ms-transform:matrix(0.217087,0.002388,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.217087,0.002388,-0.002750,0.249985,0,0);}
.mf4_c00370{transform:matrix(0.217102,0.002388,-0.002750,0.249985,0,0);-ms-transform:matrix(0.217102,0.002388,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.217102,0.002388,-0.002750,0.249985,0,0);}
.m7a_c00370{transform:matrix(0.217780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217780,0.000000,0.000000,0.250000,0,0);}
.m1a_c00370{transform:matrix(0.218365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218365,0.000000,0.000000,0.250000,0,0);}
.me2_c00370{transform:matrix(0.218677,0.002405,-0.002750,0.249985,0,0);-ms-transform:matrix(0.218677,0.002405,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.218677,0.002405,-0.002750,0.249985,0,0);}
.m71_c00370{transform:matrix(0.218880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218880,0.000000,0.000000,0.250000,0,0);}
.m6b_c00370{transform:matrix(0.218940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218940,0.000000,0.000000,0.250000,0,0);}
.mdc_c00370{transform:matrix(0.219112,0.002410,-0.002750,0.249985,0,0);-ms-transform:matrix(0.219112,0.002410,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.219112,0.002410,-0.002750,0.249985,0,0);}
.m13c_c00370{transform:matrix(0.219381,0.002852,-0.003250,0.249979,0,0);-ms-transform:matrix(0.219381,0.002852,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.219381,0.002852,-0.003250,0.249979,0,0);}
.m2e_c00370{transform:matrix(0.219440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219440,0.000000,0.000000,0.250000,0,0);}
.m5d_c00370{transform:matrix(0.220315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220315,0.000000,0.000000,0.250000,0,0);}
.m83_c00370{transform:matrix(0.220810,0.001546,-0.001750,0.249994,0,0);-ms-transform:matrix(0.220810,0.001546,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.220810,0.001546,-0.001750,0.249994,0,0);}
.mc7_c00370{transform:matrix(0.221247,0.002434,-0.002750,0.249985,0,0);-ms-transform:matrix(0.221247,0.002434,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.221247,0.002434,-0.002750,0.249985,0,0);}
.mb1_c00370{transform:matrix(0.221410,0.001550,-0.001750,0.249994,0,0);-ms-transform:matrix(0.221410,0.001550,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.221410,0.001550,-0.001750,0.249994,0,0);}
.maf_c00370{transform:matrix(0.221665,0.001552,-0.001750,0.249994,0,0);-ms-transform:matrix(0.221665,0.001552,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.221665,0.001552,-0.001750,0.249994,0,0);}
.m9d_c00370{transform:matrix(0.221675,0.001552,-0.001750,0.249994,0,0);-ms-transform:matrix(0.221675,0.001552,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.221675,0.001552,-0.001750,0.249994,0,0);}
.m7b_c00370{transform:matrix(0.221810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221810,0.000000,0.000000,0.250000,0,0);}
.me7_c00370{transform:matrix(0.222412,0.002447,-0.002750,0.249985,0,0);-ms-transform:matrix(0.222412,0.002447,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.222412,0.002447,-0.002750,0.249985,0,0);}
.mef_c00370{transform:matrix(0.222417,0.002447,-0.002750,0.249985,0,0);-ms-transform:matrix(0.222417,0.002447,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.222417,0.002447,-0.002750,0.249985,0,0);}
.m3a_c00370{transform:matrix(0.222760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222760,0.000000,0.000000,0.250000,0,0);}
.m74_c00370{transform:matrix(0.222840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222840,0.000000,0.000000,0.250000,0,0);}
.mc6_c00370{transform:matrix(0.223151,0.002455,-0.002750,0.249985,0,0);-ms-transform:matrix(0.223151,0.002455,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.223151,0.002455,-0.002750,0.249985,0,0);}
.m32_c00370{transform:matrix(0.223180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223180,0.000000,0.000000,0.250000,0,0);}
.m99_c00370{transform:matrix(0.223265,0.001563,-0.001750,0.249994,0,0);-ms-transform:matrix(0.223265,0.001563,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.223265,0.001563,-0.001750,0.249994,0,0);}
.m2_c00370{transform:matrix(0.223380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223380,0.000000,0.000000,0.250000,0,0);}
.m101_c00370{transform:matrix(0.223946,0.002463,-0.002750,0.249985,0,0);-ms-transform:matrix(0.223946,0.002463,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.223946,0.002463,-0.002750,0.249985,0,0);}
.m109_c00370{transform:matrix(0.224016,0.002464,-0.002750,0.249985,0,0);-ms-transform:matrix(0.224016,0.002464,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.224016,0.002464,-0.002750,0.249985,0,0);}
.m145_c00370{transform:matrix(0.224180,0.003363,-0.003750,0.249972,0,0);-ms-transform:matrix(0.224180,0.003363,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.224180,0.003363,-0.003750,0.249972,0,0);}
.m87_c00370{transform:matrix(0.224340,0.001570,-0.001750,0.249994,0,0);-ms-transform:matrix(0.224340,0.001570,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.224340,0.001570,-0.001750,0.249994,0,0);}
.me3_c00370{transform:matrix(0.224576,0.002470,-0.002750,0.249985,0,0);-ms-transform:matrix(0.224576,0.002470,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.224576,0.002470,-0.002750,0.249985,0,0);}
.mda_c00370{transform:matrix(0.224796,0.002473,-0.002750,0.249985,0,0);-ms-transform:matrix(0.224796,0.002473,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.224796,0.002473,-0.002750,0.249985,0,0);}
.mce_c00370{transform:matrix(0.224866,0.002474,-0.002750,0.249985,0,0);-ms-transform:matrix(0.224866,0.002474,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.224866,0.002474,-0.002750,0.249985,0,0);}
.m158_c00370{transform:matrix(0.225230,0.003378,-0.003750,0.249972,0,0);-ms-transform:matrix(0.225230,0.003378,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.225230,0.003378,-0.003750,0.249972,0,0);}
.mb_c00370{transform:matrix(0.225505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225505,0.000000,0.000000,0.250000,0,0);}
.m12_c00370{transform:matrix(0.225590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225590,0.000000,0.000000,0.250000,0,0);}
.mf2_c00370{transform:matrix(0.225816,0.002484,-0.002750,0.249985,0,0);-ms-transform:matrix(0.225816,0.002484,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.225816,0.002484,-0.002750,0.249985,0,0);}
.m84_c00370{transform:matrix(0.225859,0.001581,-0.001750,0.249994,0,0);-ms-transform:matrix(0.225859,0.001581,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.225859,0.001581,-0.001750,0.249994,0,0);}
.m92_c00370{transform:matrix(0.226059,0.001582,-0.001750,0.249994,0,0);-ms-transform:matrix(0.226059,0.001582,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.226059,0.001582,-0.001750,0.249994,0,0);}
.md0_c00370{transform:matrix(0.226066,0.002487,-0.002750,0.249985,0,0);-ms-transform:matrix(0.226066,0.002487,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.226066,0.002487,-0.002750,0.249985,0,0);}
.mec_c00370{transform:matrix(0.226086,0.002487,-0.002750,0.249985,0,0);-ms-transform:matrix(0.226086,0.002487,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.226086,0.002487,-0.002750,0.249985,0,0);}
.m112_c00370{transform:matrix(0.226096,0.002487,-0.002750,0.249985,0,0);-ms-transform:matrix(0.226096,0.002487,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.226096,0.002487,-0.002750,0.249985,0,0);}
.m66_c00370{transform:matrix(0.226355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226355,0.000000,0.000000,0.250000,0,0);}
.mf8_c00370{transform:matrix(0.226561,0.002492,-0.002750,0.249985,0,0);-ms-transform:matrix(0.226561,0.002492,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.226561,0.002492,-0.002750,0.249985,0,0);}
.med_c00370{transform:matrix(0.226586,0.002492,-0.002750,0.249985,0,0);-ms-transform:matrix(0.226586,0.002492,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.226586,0.002492,-0.002750,0.249985,0,0);}
.ma8_c00370{transform:matrix(0.226594,0.001586,-0.001750,0.249994,0,0);-ms-transform:matrix(0.226594,0.001586,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.226594,0.001586,-0.001750,0.249994,0,0);}
.m155_c00370{transform:matrix(0.226774,0.003402,-0.003750,0.249972,0,0);-ms-transform:matrix(0.226774,0.003402,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.226774,0.003402,-0.003750,0.249972,0,0);}
.m35_c00370{transform:matrix(0.227015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227015,0.000000,0.000000,0.250000,0,0);}
.m100_c00370{transform:matrix(0.227051,0.002498,-0.002750,0.249985,0,0);-ms-transform:matrix(0.227051,0.002498,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.227051,0.002498,-0.002750,0.249985,0,0);}
.m117_c00370{transform:matrix(0.227111,0.002498,-0.002750,0.249985,0,0);-ms-transform:matrix(0.227111,0.002498,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.227111,0.002498,-0.002750,0.249985,0,0);}
.mc3_c00370{transform:matrix(0.227236,0.002500,-0.002750,0.249985,0,0);-ms-transform:matrix(0.227236,0.002500,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.227236,0.002500,-0.002750,0.249985,0,0);}
.m73_c00370{transform:matrix(0.227265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227265,0.000000,0.000000,0.250000,0,0);}
.mcb_c00370{transform:matrix(0.227626,0.002504,-0.002750,0.249985,0,0);-ms-transform:matrix(0.227626,0.002504,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.227626,0.002504,-0.002750,0.249985,0,0);}
.m3b_c00370{transform:matrix(0.227705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227705,0.000000,0.000000,0.250000,0,0);}
.m120_c00370{transform:matrix(0.227736,0.002505,-0.002750,0.249985,0,0);-ms-transform:matrix(0.227736,0.002505,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.227736,0.002505,-0.002750,0.249985,0,0);}
.m10d_c00370{transform:matrix(0.228076,0.002509,-0.002750,0.249985,0,0);-ms-transform:matrix(0.228076,0.002509,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.228076,0.002509,-0.002750,0.249985,0,0);}
.m8e_c00370{transform:matrix(0.228084,0.001597,-0.001750,0.249994,0,0);-ms-transform:matrix(0.228084,0.001597,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.228084,0.001597,-0.001750,0.249994,0,0);}
.m61_c00370{transform:matrix(0.228110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228110,0.000000,0.000000,0.250000,0,0);}
.m67_c00370{transform:matrix(0.228140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228140,0.000000,0.000000,0.250000,0,0);}
.m90_c00370{transform:matrix(0.228164,0.001597,-0.001750,0.249994,0,0);-ms-transform:matrix(0.228164,0.001597,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.228164,0.001597,-0.001750,0.249994,0,0);}
.m123_c00370{transform:matrix(0.228536,0.003657,-0.003999,0.249968,0,0);-ms-transform:matrix(0.228536,0.003657,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.228536,0.003657,-0.003999,0.249968,0,0);}
.m33_c00370{transform:matrix(0.228565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228565,0.000000,0.000000,0.250000,0,0);}
.meb_c00370{transform:matrix(0.228711,0.002516,-0.002750,0.249985,0,0);-ms-transform:matrix(0.228711,0.002516,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.228711,0.002516,-0.002750,0.249985,0,0);}
.mac_c00370{transform:matrix(0.228749,0.001601,-0.001750,0.249994,0,0);-ms-transform:matrix(0.228749,0.001601,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.228749,0.001601,-0.001750,0.249994,0,0);}
.mb6_c00370{transform:matrix(0.228801,0.002517,-0.002750,0.249985,0,0);-ms-transform:matrix(0.228801,0.002517,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.228801,0.002517,-0.002750,0.249985,0,0);}
.mc9_c00370{transform:matrix(0.229141,0.002521,-0.002750,0.249985,0,0);-ms-transform:matrix(0.229141,0.002521,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.229141,0.002521,-0.002750,0.249985,0,0);}
.mf3_c00370{transform:matrix(0.229466,0.002524,-0.002750,0.249985,0,0);-ms-transform:matrix(0.229466,0.002524,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.229466,0.002524,-0.002750,0.249985,0,0);}
.m43_c00370{transform:matrix(0.229525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229525,0.000000,0.000000,0.250000,0,0);}
.m8a_c00370{transform:matrix(0.229634,0.001607,-0.001750,0.249994,0,0);-ms-transform:matrix(0.229634,0.001607,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.229634,0.001607,-0.001750,0.249994,0,0);}
.mf9_c00370{transform:matrix(0.229921,0.002529,-0.002750,0.249985,0,0);-ms-transform:matrix(0.229921,0.002529,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.229921,0.002529,-0.002750,0.249985,0,0);}
.mfe_c00370{transform:matrix(0.230111,0.002531,-0.002750,0.249985,0,0);-ms-transform:matrix(0.230111,0.002531,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.230111,0.002531,-0.002750,0.249985,0,0);}
.m115_c00370{transform:matrix(0.230201,0.002532,-0.002750,0.249985,0,0);-ms-transform:matrix(0.230201,0.002532,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.230201,0.002532,-0.002750,0.249985,0,0);}
.m12d_c00370{transform:matrix(0.230321,0.002994,-0.003250,0.249979,0,0);-ms-transform:matrix(0.230321,0.002994,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.230321,0.002994,-0.003250,0.249979,0,0);}
.m143_c00370{transform:matrix(0.230426,0.002996,-0.003250,0.249979,0,0);-ms-transform:matrix(0.230426,0.002996,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.230426,0.002996,-0.003250,0.249979,0,0);}
.m30_c00370{transform:matrix(0.230460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230460,0.000000,0.000000,0.250000,0,0);}
.ma_c00370{transform:matrix(0.230550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230550,0.000000,0.000000,0.250000,0,0);}
.m9_c00370{transform:matrix(0.230735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230735,0.000000,0.000000,0.250000,0,0);}
.m88_c00370{transform:matrix(0.230754,0.001615,-0.001750,0.249994,0,0);-ms-transform:matrix(0.230754,0.001615,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.230754,0.001615,-0.001750,0.249994,0,0);}
.mba_c00370{transform:matrix(0.230881,0.002540,-0.002750,0.249985,0,0);-ms-transform:matrix(0.230881,0.002540,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.230881,0.002540,-0.002750,0.249985,0,0);}
.mf1_c00370{transform:matrix(0.231486,0.002546,-0.002750,0.249985,0,0);-ms-transform:matrix(0.231486,0.002546,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.231486,0.002546,-0.002750,0.249985,0,0);}
.m153_c00370{transform:matrix(0.231959,0.003479,-0.003750,0.249972,0,0);-ms-transform:matrix(0.231959,0.003479,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.231959,0.003479,-0.003750,0.249972,0,0);}
.m7e_c00370{transform:matrix(0.232065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232065,0.000000,0.000000,0.250000,0,0);}
.m108_c00370{transform:matrix(0.232101,0.002553,-0.002750,0.249985,0,0);-ms-transform:matrix(0.232101,0.002553,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.232101,0.002553,-0.002750,0.249985,0,0);}
.m102_c00370{transform:matrix(0.232221,0.002554,-0.002750,0.249985,0,0);-ms-transform:matrix(0.232221,0.002554,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.232221,0.002554,-0.002750,0.249985,0,0);}
.m72_c00370{transform:matrix(0.232520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232520,0.000000,0.000000,0.250000,0,0);}
.mb9_c00370{transform:matrix(0.232581,0.002558,-0.002750,0.249985,0,0);-ms-transform:matrix(0.232581,0.002558,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.232581,0.002558,-0.002750,0.249985,0,0);}
.mb0_c00370{transform:matrix(0.232974,0.001631,-0.001750,0.249994,0,0);-ms-transform:matrix(0.232974,0.001631,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.232974,0.001631,-0.001750,0.249994,0,0);}
.m151_c00370{transform:matrix(0.233049,0.003496,-0.003750,0.249972,0,0);-ms-transform:matrix(0.233049,0.003496,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.233049,0.003496,-0.003750,0.249972,0,0);}
.m23_c00370{transform:matrix(0.233160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233160,0.000000,0.000000,0.250000,0,0);}
.m8c_c00370{transform:matrix(0.233234,0.001633,-0.001750,0.249994,0,0);-ms-transform:matrix(0.233234,0.001633,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.233234,0.001633,-0.001750,0.249994,0,0);}
.m34_c00370{transform:matrix(0.233545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233545,0.000000,0.000000,0.250000,0,0);}
.m77_c00370{transform:matrix(0.233570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233570,0.000000,0.000000,0.250000,0,0);}
.m96_c00370{transform:matrix(0.233674,0.001636,-0.001750,0.249994,0,0);-ms-transform:matrix(0.233674,0.001636,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.233674,0.001636,-0.001750,0.249994,0,0);}
.m1f_c00370{transform:matrix(0.234085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234085,0.000000,0.000000,0.250000,0,0);}
.me8_c00370{transform:matrix(0.234181,0.002576,-0.002750,0.249985,0,0);-ms-transform:matrix(0.234181,0.002576,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.234181,0.002576,-0.002750,0.249985,0,0);}
.m103_c00370{transform:matrix(0.234366,0.002578,-0.002750,0.249985,0,0);-ms-transform:matrix(0.234366,0.002578,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.234366,0.002578,-0.002750,0.249985,0,0);}
.m37_c00370{transform:matrix(0.234515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234515,0.000000,0.000000,0.250000,0,0);}
.m20_c00370{transform:matrix(0.234990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234990,0.000000,0.000000,0.250000,0,0);}
.m25_c00370{transform:matrix(0.235435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235435,0.000000,0.000000,0.250000,0,0);}
.m9c_c00370{transform:matrix(0.235549,0.001649,-0.001750,0.249994,0,0);-ms-transform:matrix(0.235549,0.001649,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.235549,0.001649,-0.001750,0.249994,0,0);}
.m154_c00370{transform:matrix(0.235554,0.003533,-0.003750,0.249972,0,0);-ms-transform:matrix(0.235554,0.003533,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.235554,0.003533,-0.003750,0.249972,0,0);}
.m119_c00370{transform:matrix(0.235776,0.002594,-0.002750,0.249985,0,0);-ms-transform:matrix(0.235776,0.002594,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.235776,0.002594,-0.002750,0.249985,0,0);}
.mca_c00370{transform:matrix(0.235856,0.002594,-0.002750,0.249985,0,0);-ms-transform:matrix(0.235856,0.002594,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.235856,0.002594,-0.002750,0.249985,0,0);}
.m6a_c00370{transform:matrix(0.235920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235920,0.000000,0.000000,0.250000,0,0);}
.maa_c00370{transform:matrix(0.236024,0.001652,-0.001750,0.249994,0,0);-ms-transform:matrix(0.236024,0.001652,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.236024,0.001652,-0.001750,0.249994,0,0);}
.m134_c00370{transform:matrix(0.236110,0.003069,-0.003250,0.249979,0,0);-ms-transform:matrix(0.236110,0.003069,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.236110,0.003069,-0.003250,0.249979,0,0);}
.m10a_c00370{transform:matrix(0.236571,0.002602,-0.002750,0.249985,0,0);-ms-transform:matrix(0.236571,0.002602,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.236571,0.002602,-0.002750,0.249985,0,0);}
.mcc_c00370{transform:matrix(0.236606,0.002603,-0.002750,0.249985,0,0);-ms-transform:matrix(0.236606,0.002603,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.236606,0.002603,-0.002750,0.249985,0,0);}
.m3e_c00370{transform:matrix(0.236845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236845,0.000000,0.000000,0.250000,0,0);}
.m76_c00370{transform:matrix(0.236900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236900,0.000000,0.000000,0.250000,0,0);}
.m129_c00370{transform:matrix(0.237065,0.003793,-0.003999,0.249968,0,0);-ms-transform:matrix(0.237065,0.003793,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.237065,0.003793,-0.003999,0.249968,0,0);}
.m68_c00370{transform:matrix(0.237215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237215,0.000000,0.000000,0.250000,0,0);}
.m5a_c00370{transform:matrix(0.237625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237625,0.000000,0.000000,0.250000,0,0);}
.mfc_c00370{transform:matrix(0.238126,0.002619,-0.002750,0.249985,0,0);-ms-transform:matrix(0.238126,0.002619,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.238126,0.002619,-0.002750,0.249985,0,0);}
.mad_c00370{transform:matrix(0.238189,0.001667,-0.001750,0.249994,0,0);-ms-transform:matrix(0.238189,0.001667,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.238189,0.001667,-0.001750,0.249994,0,0);}
.m139_c00370{transform:matrix(0.238245,0.003097,-0.003250,0.249979,0,0);-ms-transform:matrix(0.238245,0.003097,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.238245,0.003097,-0.003250,0.249979,0,0);}
.m5_c00370{transform:matrix(0.238445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238445,0.000000,0.000000,0.250000,0,0);}
.m12a_c00370{transform:matrix(0.238659,0.003819,-0.003999,0.249968,0,0);-ms-transform:matrix(0.238659,0.003819,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.238659,0.003819,-0.003999,0.249968,0,0);}
.m8_c00370{transform:matrix(0.238715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238715,0.000000,0.000000,0.250000,0,0);}
.md_c00370{transform:matrix(0.238720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238720,0.000000,0.000000,0.250000,0,0);}
.m3_c00370{transform:matrix(0.238990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238990,0.000000,0.000000,0.250000,0,0);}
.md1_c00370{transform:matrix(0.239256,0.002632,-0.002750,0.249985,0,0);-ms-transform:matrix(0.239256,0.002632,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.239256,0.002632,-0.002750,0.249985,0,0);}
.m3f_c00370{transform:matrix(0.239555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239555,0.000000,0.000000,0.250000,0,0);}
.m142_c00370{transform:matrix(0.240380,0.003125,-0.003250,0.249979,0,0);-ms-transform:matrix(0.240380,0.003125,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.240380,0.003125,-0.003250,0.249979,0,0);}
.m75_c00370{transform:matrix(0.240405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240405,0.000000,0.000000,0.250000,0,0);}
.m10b_c00370{transform:matrix(0.240635,0.002647,-0.002750,0.249985,0,0);-ms-transform:matrix(0.240635,0.002647,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.240635,0.002647,-0.002750,0.249985,0,0);}
.m3c_c00370{transform:matrix(0.240650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240650,0.000000,0.000000,0.250000,0,0);}
.m6c_c00370{transform:matrix(0.240690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240690,0.000000,0.000000,0.250000,0,0);}
.m45_c00370{transform:matrix(0.240730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240730,0.000000,0.000000,0.250000,0,0);}
.m5c_c00370{transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);}
.m133_c00370{transform:matrix(0.241485,0.003139,-0.003250,0.249979,0,0);-ms-transform:matrix(0.241485,0.003139,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.241485,0.003139,-0.003250,0.249979,0,0);}
.ma0_c00370{transform:matrix(0.241784,0.001692,-0.001750,0.249994,0,0);-ms-transform:matrix(0.241784,0.001692,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.241784,0.001692,-0.001750,0.249994,0,0);}
.m3d_c00370{transform:matrix(0.242405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242405,0.000000,0.000000,0.250000,0,0);}
.m60_c00370{transform:matrix(0.242590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242590,0.000000,0.000000,0.250000,0,0);}
.m28_c00370{transform:matrix(0.242630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242630,0.000000,0.000000,0.250000,0,0);}
.m8f_c00370{transform:matrix(0.242994,0.001701,-0.001750,0.249994,0,0);-ms-transform:matrix(0.242994,0.001701,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.242994,0.001701,-0.001750,0.249994,0,0);}
.m12b_c00370{transform:matrix(0.243169,0.003891,-0.003999,0.249968,0,0);-ms-transform:matrix(0.243169,0.003891,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.243169,0.003891,-0.003999,0.249968,0,0);}
.ma3_c00370{transform:matrix(0.243909,0.001707,-0.001750,0.249994,0,0);-ms-transform:matrix(0.243909,0.001707,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.243909,0.001707,-0.001750,0.249994,0,0);}
.m13b_c00370{transform:matrix(0.244024,0.003172,-0.003250,0.249979,0,0);-ms-transform:matrix(0.244024,0.003172,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.244024,0.003172,-0.003250,0.249979,0,0);}
.m110_c00370{transform:matrix(0.244240,0.002687,-0.002750,0.249985,0,0);-ms-transform:matrix(0.244240,0.002687,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.244240,0.002687,-0.002750,0.249985,0,0);}
.m128_c00370{transform:matrix(0.245174,0.003923,-0.003999,0.249968,0,0);-ms-transform:matrix(0.245174,0.003923,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.245174,0.003923,-0.003999,0.249968,0,0);}
.m6f_c00370{transform:matrix(0.245365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245365,0.000000,0.000000,0.250000,0,0);}
.m97_c00370{transform:matrix(0.245454,0.001718,-0.001750,0.249994,0,0);-ms-transform:matrix(0.245454,0.001718,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.245454,0.001718,-0.001750,0.249994,0,0);}
.ma1_c00370{transform:matrix(0.245764,0.001720,-0.001750,0.249994,0,0);-ms-transform:matrix(0.245764,0.001720,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.245764,0.001720,-0.001750,0.249994,0,0);}
.m62_c00370{transform:matrix(0.246055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246055,0.000000,0.000000,0.250000,0,0);}
.m131_c00370{transform:matrix(0.246164,0.003200,-0.003250,0.249979,0,0);-ms-transform:matrix(0.246164,0.003200,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.246164,0.003200,-0.003250,0.249979,0,0);}
.m9e_c00370{transform:matrix(0.246529,0.001726,-0.001750,0.249994,0,0);-ms-transform:matrix(0.246529,0.001726,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.246529,0.001726,-0.001750,0.249994,0,0);}
.m126_c00370{transform:matrix(0.246963,0.003951,-0.003999,0.249968,0,0);-ms-transform:matrix(0.246963,0.003951,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.246963,0.003951,-0.003999,0.249968,0,0);}
.m11e_c00370{transform:matrix(0.247120,0.002718,-0.002750,0.249985,0,0);-ms-transform:matrix(0.247120,0.002718,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.247120,0.002718,-0.002750,0.249985,0,0);}
.m1c_c00370{transform:matrix(0.247450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247450,0.000000,0.000000,0.250000,0,0);}
.m2c_c00370{transform:matrix(0.247455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247455,0.000000,0.000000,0.250000,0,0);}
.m7d_c00370{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m121_c00370{transform:matrix(0.247530,0.002723,-0.002750,0.249985,0,0);-ms-transform:matrix(0.247530,0.002723,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.247530,0.002723,-0.002750,0.249985,0,0);}
.ma2_c00370{transform:matrix(0.247644,0.001734,-0.001750,0.249994,0,0);-ms-transform:matrix(0.247644,0.001734,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.247644,0.001734,-0.001750,0.249994,0,0);}
.mb7_c00370{transform:matrix(0.249025,0.002739,-0.002750,0.249985,0,0);-ms-transform:matrix(0.249025,0.002739,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.249025,0.002739,-0.002750,0.249985,0,0);}
.mbc_c00370{transform:matrix(0.249390,0.002743,-0.002750,0.249985,0,0);-ms-transform:matrix(0.249390,0.002743,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.249390,0.002743,-0.002750,0.249985,0,0);}
.m12e_c00370{transform:matrix(0.249629,0.003245,-0.003250,0.249979,0,0);-ms-transform:matrix(0.249629,0.003245,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.249629,0.003245,-0.003250,0.249979,0,0);}
.m2a_c00370{transform:matrix(0.250110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250110,0.000000,0.000000,0.250000,0,0);}
.m42_c00370{transform:matrix(0.250155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250155,0.000000,0.000000,0.250000,0,0);}
.m40_c00370{transform:matrix(0.250300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250300,0.000000,0.000000,0.250000,0,0);}
.m127_c00370{transform:matrix(0.250573,0.004009,-0.003999,0.249968,0,0);-ms-transform:matrix(0.250573,0.004009,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.250573,0.004009,-0.003999,0.249968,0,0);}
.m93_c00370{transform:matrix(0.250944,0.001757,-0.001750,0.249994,0,0);-ms-transform:matrix(0.250944,0.001757,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.250944,0.001757,-0.001750,0.249994,0,0);}
.m27_c00370{transform:matrix(0.251445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251445,0.000000,0.000000,0.250000,0,0);}
.m47_c00370{transform:matrix(0.251510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251510,0.000000,0.000000,0.250000,0,0);}
.m11c_c00370{transform:matrix(0.251675,0.002768,-0.002750,0.249985,0,0);-ms-transform:matrix(0.251675,0.002768,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.251675,0.002768,-0.002750,0.249985,0,0);}
.ma4_c00370{transform:matrix(0.251739,0.001762,-0.001750,0.249994,0,0);-ms-transform:matrix(0.251739,0.001762,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.251739,0.001762,-0.001750,0.249994,0,0);}
.m11d_c00370{transform:matrix(0.251855,0.002770,-0.002750,0.249985,0,0);-ms-transform:matrix(0.251855,0.002770,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.251855,0.002770,-0.002750,0.249985,0,0);}
.m9a_c00370{transform:matrix(0.251864,0.001763,-0.001750,0.249994,0,0);-ms-transform:matrix(0.251864,0.001763,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.251864,0.001763,-0.001750,0.249994,0,0);}
.m118_c00370{transform:matrix(0.252420,0.002777,-0.002750,0.249985,0,0);-ms-transform:matrix(0.252420,0.002777,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.252420,0.002777,-0.002750,0.249985,0,0);}
.m14e_c00370{transform:matrix(0.252602,0.003789,-0.003750,0.249972,0,0);-ms-transform:matrix(0.252602,0.003789,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.252602,0.003789,-0.003750,0.249972,0,0);}
.m1_c00370{transform:matrix(0.252705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252705,0.000000,0.000000,0.250000,0,0);}
.m6_c00370{transform:matrix(0.252960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252960,0.000000,0.000000,0.250000,0,0);}
.m39_c00370{transform:matrix(0.253300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253300,0.000000,0.000000,0.250000,0,0);}
.m13e_c00370{transform:matrix(0.254154,0.003304,-0.003250,0.249979,0,0);-ms-transform:matrix(0.254154,0.003304,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.254154,0.003304,-0.003250,0.249979,0,0);}
.m124_c00370{transform:matrix(0.254477,0.004072,-0.003999,0.249968,0,0);-ms-transform:matrix(0.254477,0.004072,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.254477,0.004072,-0.003999,0.249968,0,0);}
.m8d_c00370{transform:matrix(0.255444,0.001788,-0.001750,0.249994,0,0);-ms-transform:matrix(0.255444,0.001788,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.255444,0.001788,-0.001750,0.249994,0,0);}
.m9b_c00370{transform:matrix(0.255669,0.001790,-0.001750,0.249994,0,0);-ms-transform:matrix(0.255669,0.001790,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.255669,0.001790,-0.001750,0.249994,0,0);}
.m140_c00370{transform:matrix(0.256343,0.003332,-0.003250,0.249979,0,0);-ms-transform:matrix(0.256343,0.003332,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.256343,0.003332,-0.003250,0.249979,0,0);}
.m10c_c00370{transform:matrix(0.256524,0.002822,-0.002750,0.249985,0,0);-ms-transform:matrix(0.256524,0.002822,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.256524,0.002822,-0.002750,0.249985,0,0);}
.m152_c00370{transform:matrix(0.256526,0.003848,-0.003750,0.249972,0,0);-ms-transform:matrix(0.256526,0.003848,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.256526,0.003848,-0.003750,0.249972,0,0);}
.m24_c00370{transform:matrix(0.257455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257455,0.000000,0.000000,0.250000,0,0);}
.m64_c00370{transform:matrix(0.257520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257520,0.000000,0.000000,0.250000,0,0);}
.m41_c00370{transform:matrix(0.257605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257605,0.000000,0.000000,0.250000,0,0);}
.m36_c00370{transform:matrix(0.257610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257610,0.000000,0.000000,0.250000,0,0);}
.m31_c00370{transform:matrix(0.257910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257910,0.000000,0.000000,0.250000,0,0);}
.m1e_c00370{transform:matrix(0.258040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258040,0.000000,0.000000,0.250000,0,0);}
.m91_c00370{transform:matrix(0.258529,0.001810,-0.001750,0.249994,0,0);-ms-transform:matrix(0.258529,0.001810,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.258529,0.001810,-0.001750,0.249994,0,0);}
.m13f_c00370{transform:matrix(0.258908,0.003366,-0.003250,0.249979,0,0);-ms-transform:matrix(0.258908,0.003366,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.258908,0.003366,-0.003250,0.249979,0,0);}
.m22_c00370{transform:matrix(0.259405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259405,0.000000,0.000000,0.250000,0,0);}
.m78_c00370{transform:matrix(0.260265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260265,0.000000,0.000000,0.250000,0,0);}
.m13d_c00370{transform:matrix(0.260503,0.003387,-0.003250,0.249979,0,0);-ms-transform:matrix(0.260503,0.003387,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.260503,0.003387,-0.003250,0.249979,0,0);}
.m4_c00370{transform:matrix(0.260790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260790,0.000000,0.000000,0.250000,0,0);}
.m135_c00370{transform:matrix(0.261023,0.003393,-0.003250,0.249979,0,0);-ms-transform:matrix(0.261023,0.003393,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.261023,0.003393,-0.003250,0.249979,0,0);}
.mb4_c00370{transform:matrix(0.262534,0.002888,-0.002750,0.249985,0,0);-ms-transform:matrix(0.262534,0.002888,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.262534,0.002888,-0.002750,0.249985,0,0);}
.m13_c00370{transform:matrix(0.262975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262975,0.000000,0.000000,0.250000,0,0);}
.m14f_c00370{transform:matrix(0.263020,0.003945,-0.003750,0.249972,0,0);-ms-transform:matrix(0.263020,0.003945,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.263020,0.003945,-0.003750,0.249972,0,0);}
.m29_c00370{transform:matrix(0.263100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263100,0.000000,0.000000,0.250000,0,0);}
.m48_c00370{transform:matrix(0.264365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264365,0.000000,0.000000,0.250000,0,0);}
.m113_c00370{transform:matrix(0.264499,0.002909,-0.002750,0.249985,0,0);-ms-transform:matrix(0.264499,0.002909,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.264499,0.002909,-0.002750,0.249985,0,0);}
.m132_c00370{transform:matrix(0.265668,0.003454,-0.003250,0.249979,0,0);-ms-transform:matrix(0.265668,0.003454,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.265668,0.003454,-0.003250,0.249979,0,0);}
.m14d_c00370{transform:matrix(0.266680,0.004000,-0.003750,0.249972,0,0);-ms-transform:matrix(0.266680,0.004000,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.266680,0.004000,-0.003750,0.249972,0,0);}
.m150_c00370{transform:matrix(0.266960,0.004004,-0.003750,0.249972,0,0);-ms-transform:matrix(0.266960,0.004004,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.266960,0.004004,-0.003750,0.249972,0,0);}
.m116_c00370{transform:matrix(0.267039,0.002937,-0.002750,0.249985,0,0);-ms-transform:matrix(0.267039,0.002937,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.267039,0.002937,-0.002750,0.249985,0,0);}
.m10e_c00370{transform:matrix(0.267164,0.002939,-0.002750,0.249985,0,0);-ms-transform:matrix(0.267164,0.002939,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.267164,0.002939,-0.002750,0.249985,0,0);}
.m14a_c00370{transform:matrix(0.268450,0.004027,-0.003750,0.249972,0,0);-ms-transform:matrix(0.268450,0.004027,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.268450,0.004027,-0.003750,0.249972,0,0);}
.m114_c00370{transform:matrix(0.268499,0.002953,-0.002750,0.249985,0,0);-ms-transform:matrix(0.268499,0.002953,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.268499,0.002953,-0.002750,0.249985,0,0);}
.m7_c00370{transform:matrix(0.268955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268955,0.000000,0.000000,0.250000,0,0);}
.m44_c00370{transform:matrix(0.269585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269585,0.000000,0.000000,0.250000,0,0);}
.mb5_c00370{transform:matrix(0.270874,0.002980,-0.002750,0.249985,0,0);-ms-transform:matrix(0.270874,0.002980,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.270874,0.002980,-0.002750,0.249985,0,0);}
.mbb_c00370{transform:matrix(0.272074,0.002993,-0.002750,0.249985,0,0);-ms-transform:matrix(0.272074,0.002993,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.272074,0.002993,-0.002750,0.249985,0,0);}
.m12c_c00370{transform:matrix(0.272152,0.003538,-0.003250,0.249979,0,0);-ms-transform:matrix(0.272152,0.003538,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.272152,0.003538,-0.003250,0.249979,0,0);}
.m95_c00370{transform:matrix(0.272753,0.001909,-0.001750,0.249994,0,0);-ms-transform:matrix(0.272753,0.001909,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.272753,0.001909,-0.001750,0.249994,0,0);}
.m10f_c00370{transform:matrix(0.276018,0.003036,-0.002750,0.249985,0,0);-ms-transform:matrix(0.276018,0.003036,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.276018,0.003036,-0.002750,0.249985,0,0);}
.m111_c00370{transform:matrix(0.277413,0.003052,-0.002750,0.249985,0,0);-ms-transform:matrix(0.277413,0.003052,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.277413,0.003052,-0.002750,0.249985,0,0);}
.mb8_c00370{transform:matrix(0.277533,0.003053,-0.002750,0.249985,0,0);-ms-transform:matrix(0.277533,0.003053,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.277533,0.003053,-0.002750,0.249985,0,0);}
.m12f_c00370{transform:matrix(0.277592,0.003609,-0.003250,0.249979,0,0);-ms-transform:matrix(0.277592,0.003609,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.277592,0.003609,-0.003250,0.249979,0,0);}
.m46_c00370{transform:matrix(0.281465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281465,0.000000,0.000000,0.250000,0,0);}
.m98_c00370{transform:matrix(0.281738,0.001972,-0.001750,0.249994,0,0);-ms-transform:matrix(0.281738,0.001972,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.281738,0.001972,-0.001750,0.249994,0,0);}
.m122_c00370{transform:matrix(0.284068,0.003125,-0.002750,0.249985,0,0);-ms-transform:matrix(0.284068,0.003125,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.284068,0.003125,-0.002750,0.249985,0,0);}
.m130_c00370{transform:matrix(0.289031,0.003757,-0.003250,0.249979,0,0);-ms-transform:matrix(0.289031,0.003757,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.289031,0.003757,-0.003250,0.249979,0,0);}
.m13a_c00370{transform:matrix(0.309864,0.004028,-0.003250,0.249979,0,0);-ms-transform:matrix(0.309864,0.004028,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.309864,0.004028,-0.003250,0.249979,0,0);}
.ma5_c00370{transform:matrix(0.328997,0.002303,-0.001750,0.249994,0,0);-ms-transform:matrix(0.328997,0.002303,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.328997,0.002303,-0.001750,0.249994,0,0);}
.ma6_c00370{transform:matrix(0.330377,0.002313,-0.001750,0.249994,0,0);-ms-transform:matrix(0.330377,0.002313,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.330377,0.002313,-0.001750,0.249994,0,0);}
.m136_c00370{transform:matrix(0.844469,0.010978,-0.003250,0.249979,0,0);-ms-transform:matrix(0.844469,0.010978,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.844469,0.010978,-0.003250,0.249979,0,0);}
.m137_c00370{transform:matrix(6.033265,0.078432,-0.003250,0.249979,0,0);-ms-transform:matrix(6.033265,0.078432,-0.003250,0.249979,0,0);-webkit-transform:matrix(6.033265,0.078432,-0.003250,0.249979,0,0);}
.v0_c00370{vertical-align:0.000000px;}
.ls0_c00370{letter-spacing:0.000000px;}
.sc__c00370{text-shadow:none;}
.sc0_c00370{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__c00370{-webkit-text-stroke:0px transparent;}
.sc0_c00370{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00370{word-spacing:0.000000px;}
.fc0_c00370{color:transparent;}
.fsf_c00370{font-size:24.002028px;}
.fs3_c00370{font-size:72.000000px;}
.fs6_c00370{font-size:72.001764px;}
.fs9_c00370{font-size:72.004356px;}
.fse_c00370{font-size:72.006084px;}
.fs12_c00370{font-size:72.008100px;}
.fs1_c00370{font-size:78.000000px;}
.fs7_c00370{font-size:78.001911px;}
.fsc_c00370{font-size:78.004719px;}
.fs10_c00370{font-size:78.006591px;}
.fsd_c00370{font-size:78.009983px;}
.fs0_c00370{font-size:84.000000px;}
.fs5_c00370{font-size:84.002058px;}
.fsb_c00370{font-size:84.005082px;}
.fs13_c00370{font-size:84.009449px;}
.fs2_c00370{font-size:90.000000px;}
.fs8_c00370{font-size:90.002205px;}
.fsa_c00370{font-size:90.005445px;}
.fs11_c00370{font-size:90.010124px;}
.fs4_c00370{font-size:102.000000px;}
.y0_c00370{bottom:0.000000px;}
.yf5_c00370{bottom:23.171175px;}
.yf4_c00370{bottom:23.749778px;}
.yf3_c00370{bottom:24.760403px;}
.yf2_c00370{bottom:25.558508px;}
.yf1_c00370{bottom:26.739585px;}
.yf0_c00370{bottom:28.747118px;}
.yef_c00370{bottom:31.049693px;}
.yee_c00370{bottom:48.892845px;}
.yed_c00370{bottom:49.656540px;}
.yec_c00370{bottom:50.140530px;}
.yeb_c00370{bottom:51.693660px;}
.yea_c00370{bottom:52.719360px;}
.ye9_c00370{bottom:54.482903px;}
.ye8_c00370{bottom:55.005750px;}
.ye7_c00370{bottom:55.889948px;}
.ye6_c00370{bottom:57.241425px;}
.ye5_c00370{bottom:76.618853px;}
.ye4_c00370{bottom:77.453535px;}
.ye3_c00370{bottom:77.939963px;}
.ye2_c00370{bottom:78.608325px;}
.ye1_c00370{bottom:80.771520px;}
.ye0_c00370{bottom:82.893000px;}
.ydf_c00370{bottom:121.062968px;}
.yde_c00370{bottom:121.949154px;}
.ydd_c00370{bottom:122.476316px;}
.ydc_c00370{bottom:123.372192px;}
.ydb_c00370{bottom:125.164374px;}
.yda_c00370{bottom:126.573102px;}
.yd9_c00370{bottom:128.371347px;}
.yd8_c00370{bottom:129.058652px;}
.yd7_c00370{bottom:130.281228px;}
.yd6_c00370{bottom:131.507159px;}
.yd5_c00370{bottom:132.025137px;}
.yd4_c00370{bottom:147.547571px;}
.yd3_c00370{bottom:152.164641px;}
.yd2_c00370{bottom:152.554760px;}
.yd1_c00370{bottom:175.257372px;}
.yd0_c00370{bottom:175.839701px;}
.ycf_c00370{bottom:176.285607px;}
.yce_c00370{bottom:177.153240px;}
.ycd_c00370{bottom:177.588851px;}
.ycc_c00370{bottom:179.617962px;}
.ycb_c00370{bottom:181.608639px;}
.yca_c00370{bottom:182.050860px;}
.yc9_c00370{bottom:182.474712px;}
.yc8_c00370{bottom:183.601500px;}
.yc7_c00370{bottom:210.473808px;}
.yc6_c00370{bottom:211.515960px;}
.yc5_c00370{bottom:212.436000px;}
.yc4_c00370{bottom:213.520464px;}
.yc3_c00370{bottom:214.916400px;}
.yc2_c00370{bottom:216.527280px;}
.yc1_c00370{bottom:217.067496px;}
.yc0_c00370{bottom:218.640816px;}
.ybf_c00370{bottom:219.513000px;}
.ybe_c00370{bottom:248.284306px;}
.ybd_c00370{bottom:249.319341px;}
.ybc_c00370{bottom:249.905479px;}
.ybb_c00370{bottom:250.336839px;}
.yba_c00370{bottom:251.211583px;}
.yb9_c00370{bottom:252.081693px;}
.yb8_c00370{bottom:253.212066px;}
.yb7_c00370{bottom:253.643310px;}
.yb6_c00370{bottom:254.069043px;}
.yb5_c00370{bottom:254.377958px;}
.yb4_c00370{bottom:255.642058px;}
.yb3_c00370{bottom:256.490572px;}
.yb2_c00370{bottom:281.337525px;}
.yb1_c00370{bottom:281.904340px;}
.yb0_c00370{bottom:282.230760px;}
.yaf_c00370{bottom:282.794671px;}
.yae_c00370{bottom:283.674672px;}
.yad_c00370{bottom:284.009968px;}
.yac_c00370{bottom:285.017460px;}
.yab_c00370{bottom:285.449226px;}
.yaa_c00370{bottom:286.450662px;}
.ya9_c00370{bottom:287.214309px;}
.ya8_c00370{bottom:287.535860px;}
.ya7_c00370{bottom:287.762592px;}
.ya6_c00370{bottom:288.081717px;}
.ya5_c00370{bottom:318.856308px;}
.ya4_c00370{bottom:319.459383px;}
.ya3_c00370{bottom:319.827647px;}
.ya2_c00370{bottom:320.691966px;}
.ya1_c00370{bottom:321.054554px;}
.ya0_c00370{bottom:321.301212px;}
.y9f_c00370{bottom:321.666176px;}
.y9e_c00370{bottom:321.915639px;}
.y9d_c00370{bottom:322.884288px;}
.y9c_c00370{bottom:323.618027px;}
.y9b_c00370{bottom:324.689834px;}
.y9a_c00370{bottom:325.405488px;}
.y99_c00370{bottom:325.882883px;}
.y98_c00370{bottom:353.096144px;}
.y97_c00370{bottom:353.461173px;}
.y96_c00370{bottom:354.085005px;}
.y95_c00370{bottom:354.438485px;}
.y94_c00370{bottom:355.540552px;}
.y93_c00370{bottom:355.911885px;}
.y92_c00370{bottom:356.271238px;}
.y91_c00370{bottom:357.236621px;}
.y90_c00370{bottom:358.089060px;}
.y8f_c00370{bottom:358.706721px;}
.y8e_c00370{bottom:359.187317px;}
.y8d_c00370{bottom:359.905842px;}
.y8c_c00370{bottom:390.975452px;}
.y8b_c00370{bottom:391.453895px;}
.y8a_c00370{bottom:391.922021px;}
.y89_c00370{bottom:392.693144px;}
.y88_c00370{bottom:392.921650px;}
.y87_c00370{bottom:393.316128px;}
.y86_c00370{bottom:393.627513px;}
.y85_c00370{bottom:394.092864px;}
.y84_c00370{bottom:394.553561px;}
.y83_c00370{bottom:395.014141px;}
.y82_c00370{bottom:395.236854px;}
.y81_c00370{bottom:395.545068px;}
.y75_c00370{bottom:425.171787px;}
.y76_c00370{bottom:425.171790px;}
.y7d_c00370{bottom:425.172371px;}
.y77_c00370{bottom:425.172470px;}
.y80_c00370{bottom:425.172587px;}
.y79_c00370{bottom:425.172612px;}
.y7a_c00370{bottom:425.172692px;}
.y7c_c00370{bottom:425.172711px;}
.y7f_c00370{bottom:425.172960px;}
.y7b_c00370{bottom:425.172978px;}
.y7e_c00370{bottom:425.173107px;}
.y78_c00370{bottom:425.173206px;}
.y72_c00370{bottom:461.485113px;}
.y6a_c00370{bottom:461.485119px;}
.y70_c00370{bottom:461.485140px;}
.y6e_c00370{bottom:461.485357px;}
.y73_c00370{bottom:461.485449px;}
.y6f_c00370{bottom:461.485480px;}
.y6b_c00370{bottom:461.485735px;}
.y71_c00370{bottom:461.485787px;}
.y6d_c00370{bottom:461.485832px;}
.y74_c00370{bottom:461.485962px;}
.y6c_c00370{bottom:461.486355px;}
.y60_c00370{bottom:499.081220px;}
.y61_c00370{bottom:499.081806px;}
.y64_c00370{bottom:499.082438px;}
.y62_c00370{bottom:499.082485px;}
.y63_c00370{bottom:499.082538px;}
.y65_c00370{bottom:499.083163px;}
.y66_c00370{bottom:499.083810px;}
.y67_c00370{bottom:499.084053px;}
.y68_c00370{bottom:499.084759px;}
.y69_c00370{bottom:499.084779px;}
.y5f_c00370{bottom:532.190857px;}
.y5e_c00370{bottom:532.967296px;}
.y5d_c00370{bottom:533.203695px;}
.y5c_c00370{bottom:533.594969px;}
.y5b_c00370{bottom:534.444097px;}
.y5a_c00370{bottom:534.914929px;}
.y59_c00370{bottom:535.065546px;}
.y58_c00370{bottom:535.607486px;}
.y57_c00370{bottom:535.911854px;}
.y56_c00370{bottom:536.297002px;}
.y55_c00370{bottom:536.757435px;}
.y54_c00370{bottom:568.457820px;}
.y53_c00370{bottom:569.322007px;}
.y52_c00370{bottom:569.681592px;}
.y51_c00370{bottom:570.052958px;}
.y50_c00370{bottom:570.414918px;}
.y4f_c00370{bottom:571.888401px;}
.y4e_c00370{bottom:572.488440px;}
.y4d_c00370{bottom:572.853832px;}
.y4c_c00370{bottom:573.825122px;}
.y4b_c00370{bottom:574.561500px;}
.y4a_c00370{bottom:606.303009px;}
.y49_c00370{bottom:606.303418px;}
.y48_c00370{bottom:639.014958px;}
.y47_c00370{bottom:639.802118px;}
.y46_c00370{bottom:640.256017px;}
.y45_c00370{bottom:640.519639px;}
.y44_c00370{bottom:641.405560px;}
.y43_c00370{bottom:641.941980px;}
.y42_c00370{bottom:642.209256px;}
.y41_c00370{bottom:643.010998px;}
.y40_c00370{bottom:643.190169px;}
.y3f_c00370{bottom:643.715429px;}
.y3e_c00370{bottom:643.958883px;}
.y3d_c00370{bottom:644.134830px;}
.y3c_c00370{bottom:644.491228px;}
.y31_c00370{bottom:676.269901px;}
.y36_c00370{bottom:676.270194px;}
.y32_c00370{bottom:676.270482px;}
.y34_c00370{bottom:676.270563px;}
.y35_c00370{bottom:676.270603px;}
.y37_c00370{bottom:676.270714px;}
.y33_c00370{bottom:676.271093px;}
.y39_c00370{bottom:676.271286px;}
.y38_c00370{bottom:676.271395px;}
.y3b_c00370{bottom:676.271607px;}
.y3a_c00370{bottom:676.271716px;}
.y30_c00370{bottom:711.046710px;}
.y2f_c00370{bottom:711.445170px;}
.y2e_c00370{bottom:711.743608px;}
.y2d_c00370{bottom:712.754827px;}
.y2c_c00370{bottom:713.053424px;}
.y2b_c00370{bottom:713.349794px;}
.y2a_c00370{bottom:714.057515px;}
.y29_c00370{bottom:714.343377px;}
.y28_c00370{bottom:714.844011px;}
.y27_c00370{bottom:715.142407px;}
.y26_c00370{bottom:715.730288px;}
.y25_c00370{bottom:716.035885px;}
.y24_c00370{bottom:716.334314px;}
.y23_c00370{bottom:716.625319px;}
.y22_c00370{bottom:717.118427px;}
.y21_c00370{bottom:747.652845px;}
.y20_c00370{bottom:747.873996px;}
.y1f_c00370{bottom:748.422096px;}
.y1e_c00370{bottom:748.658230px;}
.y1d_c00370{bottom:749.270800px;}
.y1c_c00370{bottom:749.737767px;}
.y1b_c00370{bottom:749.969985px;}
.y1a_c00370{bottom:750.206256px;}
.y19_c00370{bottom:750.739372px;}
.y18_c00370{bottom:751.140000px;}
.y17_c00370{bottom:787.986000px;}
.y16_c00370{bottom:821.544000px;}
.y15_c00370{bottom:856.297500px;}
.y14_c00370{bottom:891.391500px;}
.y13_c00370{bottom:926.137500px;}
.y12_c00370{bottom:961.129500px;}
.y11_c00370{bottom:996.163500px;}
.y10_c00370{bottom:996.433500px;}
.yf_c00370{bottom:997.041000px;}
.ye_c00370{bottom:997.240500px;}
.yd_c00370{bottom:997.438500px;}
.yc_c00370{bottom:997.836000px;}
.yb_c00370{bottom:998.568000px;}
.ya_c00370{bottom:998.895000px;}
.y9_c00370{bottom:999.097500px;}
.y8_c00370{bottom:999.489000px;}
.y7_c00370{bottom:999.820500px;}
.y6_c00370{bottom:1000.081500px;}
.y5_c00370{bottom:1033.072500px;}
.y4_c00370{bottom:1066.917000px;}
.y3_c00370{bottom:1105.578000px;}
.y2_c00370{bottom:1139.173500px;}
.y1_c00370{bottom:1197.580500px;}
.h11_c00370{height:24.002028px;}
.h5_c00370{height:72.000000px;}
.h8_c00370{height:72.001764px;}
.hb_c00370{height:72.004356px;}
.h10_c00370{height:72.006084px;}
.h14_c00370{height:72.008100px;}
.h3_c00370{height:78.000000px;}
.h9_c00370{height:78.001911px;}
.he_c00370{height:78.004719px;}
.h12_c00370{height:78.006591px;}
.hf_c00370{height:78.009983px;}
.h2_c00370{height:84.000000px;}
.h7_c00370{height:84.002058px;}
.hd_c00370{height:84.005082px;}
.h15_c00370{height:84.009449px;}
.h4_c00370{height:90.000000px;}
.ha_c00370{height:90.002205px;}
.hc_c00370{height:90.005445px;}
.h13_c00370{height:90.010124px;}
.h6_c00370{height:102.000000px;}
.h0_c00370{height:1251.450000px;}
.h1_c00370{height:1251.750000px;}
.w0_c00370{width:915.000000px;}
.x0_c00370{left:0.000000px;}
.x1b_c00370{left:163.350000px;}
.x2_c00370{left:164.970000px;}
.x66_c00370{left:166.048494px;}
.x84_c00370{left:167.728508px;}
.xf_c00370{left:196.290000px;}
.x32_c00370{left:197.367000px;}
.x2a_c00370{left:207.561000px;}
.x5b_c00370{left:209.393417px;}
.x10_c00370{left:218.430000px;}
.x67_c00370{left:219.781995px;}
.x81_c00370{left:224.396775px;}
.x62_c00370{left:229.667921px;}
.x5c_c00370{left:231.314259px;}
.x33_c00370{left:240.567000px;}
.x11_c00370{left:250.560000px;}
.x6e_c00370{left:252.039549px;}
.x60_c00370{left:253.533770px;}
.x3b_c00370{left:261.357000px;}
.x2b_c00370{left:262.914000px;}
.x3_c00370{left:272.970000px;}
.x12_c00370{left:274.050000px;}
.x55_c00370{left:284.463878px;}
.x34_c00370{left:285.657000px;}
.x45_c00370{left:294.567000px;}
.x85_c00370{left:295.627748px;}
.x4d_c00370{left:305.367000px;}
.x4_c00370{left:306.720000px;}
.x23_c00370{left:315.900000px;}
.x4a_c00370{left:317.787000px;}
.x77_c00370{left:318.933000px;}
.x2c_c00370{left:328.231500px;}
.x4f_c00370{left:329.568000px;}
.x24_c00370{left:338.040000px;}
.x35_c00370{left:339.927000px;}
.x46_c00370{left:341.277000px;}
.x4b_c00370{left:349.647000px;}
.x71_c00370{left:351.893076px;}
.x3c_c00370{left:360.447000px;}
.x2d_c00370{left:361.995000px;}
.x5_c00370{left:372.330000px;}
.x47_c00370{left:382.857000px;}
.x40_c00370{left:383.937000px;}
.x36_c00370{left:393.657000px;}
.x58_c00370{left:395.016951px;}
.x1c_c00370{left:404.460000px;}
.x50_c00370{left:405.727500px;}
.x82_c00370{left:406.827383px;}
.x4e_c00370{left:407.967000px;}
.x13_c00370{left:416.070000px;}
.x72_c00370{left:417.798624px;}
.x1_c00370{left:427.140000px;}
.x68_c00370{left:428.505257px;}
.x14_c00370{left:438.210000px;}
.x51_c00370{left:439.480500px;}
.x1d_c00370{left:448.470000px;}
.x5d_c00370{left:449.973726px;}
.x7f_c00370{left:451.230000px;}
.x48_c00370{left:461.157000px;}
.x15_c00370{left:471.150000px;}
.x52_c00370{left:472.654500px;}
.x83_c00370{left:474.361283px;}
.x59_c00370{left:483.579788px;}
.x6_c00370{left:493.290000px;}
.x25_c00370{left:494.370000px;}
.x69_c00370{left:496.278957px;}
.x37_c00370{left:504.627000px;}
.x7c_c00370{left:506.598369px;}
.x6a_c00370{left:512.209388px;}
.x41_c00370{left:515.157000px;}
.x7_c00370{left:516.240000px;}
.x1e_c00370{left:527.850000px;}
.x2e_c00370{left:538.558500px;}
.x6c_c00370{left:539.660487px;}
.x16_c00370{left:549.180000px;}
.x5e_c00370{left:550.429523px;}
.x42_c00370{left:559.977000px;}
.x49_c00370{left:561.057000px;}
.x5a_c00370{left:562.152141px;}
.x38_c00370{left:570.777000px;}
.x64_c00370{left:572.149053px;}
.x86_c00370{left:573.271260px;}
.x26_c00370{left:582.660000px;}
.x80_c00370{left:583.861500px;}
.x3d_c00370{left:592.647000px;}
.x43_c00370{left:593.727000px;}
.x65_c00370{left:594.833769px;}
.x8_c00370{left:604.800000px;}
.x6f_c00370{left:606.010443px;}
.x27_c00370{left:614.790000px;}
.x17_c00370{left:615.870000px;}
.x9_c00370{left:627.750000px;}
.x2f_c00370{left:637.668000px;}
.x73_c00370{left:638.950757px;}
.x1f_c00370{left:648.000000px;}
.x56_c00370{left:649.252785px;}
.x18_c00370{left:650.970000px;}
.x28_c00370{left:660.960000px;}
.x4c_c00370{left:663.117000px;}
.x30_c00370{left:670.858500px;}
.x20_c00370{left:672.030000px;}
.x61_c00370{left:682.689000px;}
.xa_c00370{left:693.630000px;}
.x75_c00370{left:695.356500px;}
.x63_c00370{left:705.434859px;}
.x7d_c00370{left:706.660569px;}
.x6b_c00370{left:713.371725px;}
.x19_c00370{left:715.770000px;}
.x3e_c00370{left:716.847000px;}
.xb_c00370{left:727.380000px;}
.x78_c00370{left:728.397000px;}
.x39_c00370{left:737.367000px;}
.x53_c00370{left:738.907500px;}
.xc_c00370{left:749.520000px;}
.x29_c00370{left:750.600000px;}
.x76_c00370{left:752.859000px;}
.x44_c00370{left:760.047000px;}
.x57_c00370{left:761.568210px;}
.x79_c00370{left:762.697500px;}
.x54_c00370{left:770.500500px;}
.x31_c00370{left:772.129500px;}
.x3f_c00370{left:782.457000px;}
.x21_c00370{left:792.720000px;}
.xd_c00370{left:794.880000px;}
.x74_c00370{left:796.904792px;}
.x6d_c00370{left:805.045475px;}
.x1a_c00370{left:806.490000px;}
.x7a_c00370{left:807.492000px;}
.xe_c00370{left:817.290000px;}
.x22_c00370{left:826.740000px;}
.x3a_c00370{left:838.347000px;}
.x70_c00370{left:839.890034px;}
.x5f_c00370{left:849.084923px;}
.x7e_c00370{left:850.941434px;}
.x7b_c00370{left:878.359308px;}
@media print{
.v0_c00370{vertical-align:0.000000pt;}
.ls0_c00370{letter-spacing:0.000000pt;}
.ws0_c00370{word-spacing:0.000000pt;}
.fsf_c00370{font-size:21.335136pt;}
.fs3_c00370{font-size:64.000000pt;}
.fs6_c00370{font-size:64.001568pt;}
.fs9_c00370{font-size:64.003872pt;}
.fse_c00370{font-size:64.005408pt;}
.fs12_c00370{font-size:64.007200pt;}
.fs1_c00370{font-size:69.333333pt;}
.fs7_c00370{font-size:69.335032pt;}
.fsc_c00370{font-size:69.337528pt;}
.fs10_c00370{font-size:69.339192pt;}
.fsd_c00370{font-size:69.342207pt;}
.fs0_c00370{font-size:74.666667pt;}
.fs5_c00370{font-size:74.668496pt;}
.fsb_c00370{font-size:74.671184pt;}
.fs13_c00370{font-size:74.675066pt;}
.fs2_c00370{font-size:80.000000pt;}
.fs8_c00370{font-size:80.001960pt;}
.fsa_c00370{font-size:80.004840pt;}
.fs11_c00370{font-size:80.008999pt;}
.fs4_c00370{font-size:90.666667pt;}
.y0_c00370{bottom:0.000000pt;}
.yf5_c00370{bottom:20.596600pt;}
.yf4_c00370{bottom:21.110913pt;}
.yf3_c00370{bottom:22.009247pt;}
.yf2_c00370{bottom:22.718673pt;}
.yf1_c00370{bottom:23.768520pt;}
.yf0_c00370{bottom:25.552993pt;}
.yef_c00370{bottom:27.599727pt;}
.yee_c00370{bottom:43.460307pt;}
.yed_c00370{bottom:44.139147pt;}
.yec_c00370{bottom:44.569360pt;}
.yeb_c00370{bottom:45.949920pt;}
.yea_c00370{bottom:46.861653pt;}
.ye9_c00370{bottom:48.429247pt;}
.ye8_c00370{bottom:48.894000pt;}
.ye7_c00370{bottom:49.679953pt;}
.ye6_c00370{bottom:50.881267pt;}
.ye5_c00370{bottom:68.105647pt;}
.ye4_c00370{bottom:68.847587pt;}
.ye3_c00370{bottom:69.279967pt;}
.ye2_c00370{bottom:69.874067pt;}
.ye1_c00370{bottom:71.796907pt;}
.ye0_c00370{bottom:73.682667pt;}
.ydf_c00370{bottom:107.611527pt;}
.yde_c00370{bottom:108.399248pt;}
.ydd_c00370{bottom:108.867836pt;}
.ydc_c00370{bottom:109.664171pt;}
.ydb_c00370{bottom:111.257221pt;}
.yda_c00370{bottom:112.509424pt;}
.yd9_c00370{bottom:114.107864pt;}
.yd8_c00370{bottom:114.718801pt;}
.yd7_c00370{bottom:115.805536pt;}
.yd6_c00370{bottom:116.895252pt;}
.yd5_c00370{bottom:117.355677pt;}
.yd4_c00370{bottom:131.153396pt;}
.yd3_c00370{bottom:135.257459pt;}
.yd2_c00370{bottom:135.604231pt;}
.yd1_c00370{bottom:155.784331pt;}
.yd0_c00370{bottom:156.301956pt;}
.ycf_c00370{bottom:156.698317pt;}
.yce_c00370{bottom:157.469547pt;}
.ycd_c00370{bottom:157.856756pt;}
.ycc_c00370{bottom:159.660411pt;}
.ycb_c00370{bottom:161.429901pt;}
.yca_c00370{bottom:161.822987pt;}
.yc9_c00370{bottom:162.199744pt;}
.yc8_c00370{bottom:163.201333pt;}
.yc7_c00370{bottom:187.087829pt;}
.yc6_c00370{bottom:188.014187pt;}
.yc5_c00370{bottom:188.832000pt;}
.yc4_c00370{bottom:189.795968pt;}
.yc3_c00370{bottom:191.036800pt;}
.yc2_c00370{bottom:192.468693pt;}
.yc1_c00370{bottom:192.948885pt;}
.yc0_c00370{bottom:194.347392pt;}
.ybf_c00370{bottom:195.122667pt;}
.ybe_c00370{bottom:220.697161pt;}
.ybd_c00370{bottom:221.617192pt;}
.ybc_c00370{bottom:222.138204pt;}
.ybb_c00370{bottom:222.521635pt;}
.yba_c00370{bottom:223.299185pt;}
.yb9_c00370{bottom:224.072616pt;}
.yb8_c00370{bottom:225.077392pt;}
.yb7_c00370{bottom:225.460720pt;}
.yb6_c00370{bottom:225.839149pt;}
.yb5_c00370{bottom:226.113740pt;}
.yb4_c00370{bottom:227.237385pt;}
.yb3_c00370{bottom:227.991620pt;}
.yb2_c00370{bottom:250.077800pt;}
.yb1_c00370{bottom:250.581636pt;}
.yb0_c00370{bottom:250.871787pt;}
.yaf_c00370{bottom:251.373041pt;}
.yae_c00370{bottom:252.155264pt;}
.yad_c00370{bottom:252.453305pt;}
.yac_c00370{bottom:253.348853pt;}
.yab_c00370{bottom:253.732645pt;}
.yaa_c00370{bottom:254.622811pt;}
.ya9_c00370{bottom:255.301608pt;}
.ya8_c00370{bottom:255.587431pt;}
.ya7_c00370{bottom:255.788971pt;}
.ya6_c00370{bottom:256.072637pt;}
.ya5_c00370{bottom:283.427829pt;}
.ya4_c00370{bottom:283.963896pt;}
.ya3_c00370{bottom:284.291241pt;}
.ya2_c00370{bottom:285.059525pt;}
.ya1_c00370{bottom:285.381825pt;}
.ya0_c00370{bottom:285.601077pt;}
.y9f_c00370{bottom:285.925489pt;}
.y9e_c00370{bottom:286.147235pt;}
.y9d_c00370{bottom:287.008256pt;}
.y9c_c00370{bottom:287.660468pt;}
.y9b_c00370{bottom:288.613185pt;}
.y9a_c00370{bottom:289.249323pt;}
.y99_c00370{bottom:289.673673pt;}
.y98_c00370{bottom:313.863239pt;}
.y97_c00370{bottom:314.187709pt;}
.y96_c00370{bottom:314.742227pt;}
.y95_c00370{bottom:315.056431pt;}
.y94_c00370{bottom:316.036047pt;}
.y93_c00370{bottom:316.366120pt;}
.y92_c00370{bottom:316.685545pt;}
.y91_c00370{bottom:317.543663pt;}
.y90_c00370{bottom:318.301387pt;}
.y8f_c00370{bottom:318.850419pt;}
.y8e_c00370{bottom:319.277615pt;}
.y8d_c00370{bottom:319.916304pt;}
.y8c_c00370{bottom:347.533735pt;}
.y8b_c00370{bottom:347.959017pt;}
.y8a_c00370{bottom:348.375129pt;}
.y89_c00370{bottom:349.060572pt;}
.y88_c00370{bottom:349.263689pt;}
.y87_c00370{bottom:349.614336pt;}
.y86_c00370{bottom:349.891123pt;}
.y85_c00370{bottom:350.304768pt;}
.y84_c00370{bottom:350.714276pt;}
.y83_c00370{bottom:351.123681pt;}
.y82_c00370{bottom:351.321648pt;}
.y81_c00370{bottom:351.595616pt;}
.y75_c00370{bottom:377.930477pt;}
.y76_c00370{bottom:377.930480pt;}
.y7d_c00370{bottom:377.930996pt;}
.y77_c00370{bottom:377.931084pt;}
.y80_c00370{bottom:377.931188pt;}
.y79_c00370{bottom:377.931211pt;}
.y7a_c00370{bottom:377.931281pt;}
.y7c_c00370{bottom:377.931299pt;}
.y7f_c00370{bottom:377.931520pt;}
.y7b_c00370{bottom:377.931536pt;}
.y7e_c00370{bottom:377.931651pt;}
.y78_c00370{bottom:377.931739pt;}
.y72_c00370{bottom:410.208989pt;}
.y6a_c00370{bottom:410.208995pt;}
.y70_c00370{bottom:410.209013pt;}
.y6e_c00370{bottom:410.209207pt;}
.y73_c00370{bottom:410.209288pt;}
.y6f_c00370{bottom:410.209316pt;}
.y6b_c00370{bottom:410.209543pt;}
.y71_c00370{bottom:410.209588pt;}
.y6d_c00370{bottom:410.209628pt;}
.y74_c00370{bottom:410.209744pt;}
.y6c_c00370{bottom:410.210093pt;}
.y60_c00370{bottom:443.627751pt;}
.y61_c00370{bottom:443.628272pt;}
.y64_c00370{bottom:443.628833pt;}
.y62_c00370{bottom:443.628876pt;}
.y63_c00370{bottom:443.628923pt;}
.y65_c00370{bottom:443.629479pt;}
.y66_c00370{bottom:443.630053pt;}
.y67_c00370{bottom:443.630269pt;}
.y68_c00370{bottom:443.630897pt;}
.y69_c00370{bottom:443.630915pt;}
.y5f_c00370{bottom:473.058540pt;}
.y5e_c00370{bottom:473.748708pt;}
.y5d_c00370{bottom:473.958840pt;}
.y5c_c00370{bottom:474.306639pt;}
.y5b_c00370{bottom:475.061420pt;}
.y5a_c00370{bottom:475.479937pt;}
.y59_c00370{bottom:475.613819pt;}
.y58_c00370{bottom:476.095543pt;}
.y57_c00370{bottom:476.366092pt;}
.y56_c00370{bottom:476.708447pt;}
.y55_c00370{bottom:477.117720pt;}
.y54_c00370{bottom:505.295840pt;}
.y53_c00370{bottom:506.064007pt;}
.y52_c00370{bottom:506.383637pt;}
.y51_c00370{bottom:506.713740pt;}
.y50_c00370{bottom:507.035483pt;}
.y4f_c00370{bottom:508.345245pt;}
.y4e_c00370{bottom:508.878613pt;}
.y4d_c00370{bottom:509.203407pt;}
.y4c_c00370{bottom:510.066775pt;}
.y4b_c00370{bottom:510.721333pt;}
.y4a_c00370{bottom:538.936008pt;}
.y49_c00370{bottom:538.936372pt;}
.y48_c00370{bottom:568.013296pt;}
.y47_c00370{bottom:568.712993pt;}
.y46_c00370{bottom:569.116460pt;}
.y45_c00370{bottom:569.350791pt;}
.y44_c00370{bottom:570.138276pt;}
.y43_c00370{bottom:570.615093pt;}
.y42_c00370{bottom:570.852672pt;}
.y41_c00370{bottom:571.565332pt;}
.y40_c00370{bottom:571.724595pt;}
.y3f_c00370{bottom:572.191492pt;}
.y3e_c00370{bottom:572.407896pt;}
.y3d_c00370{bottom:572.564293pt;}
.y3c_c00370{bottom:572.881092pt;}
.y31_c00370{bottom:601.128801pt;}
.y36_c00370{bottom:601.129061pt;}
.y32_c00370{bottom:601.129317pt;}
.y34_c00370{bottom:601.129389pt;}
.y35_c00370{bottom:601.129425pt;}
.y37_c00370{bottom:601.129524pt;}
.y33_c00370{bottom:601.129860pt;}
.y39_c00370{bottom:601.130032pt;}
.y38_c00370{bottom:601.130129pt;}
.y3b_c00370{bottom:601.130317pt;}
.y3a_c00370{bottom:601.130415pt;}
.y30_c00370{bottom:632.041520pt;}
.y2f_c00370{bottom:632.395707pt;}
.y2e_c00370{bottom:632.660985pt;}
.y2d_c00370{bottom:633.559847pt;}
.y2c_c00370{bottom:633.825265pt;}
.y2b_c00370{bottom:634.088705pt;}
.y2a_c00370{bottom:634.717791pt;}
.y29_c00370{bottom:634.971891pt;}
.y28_c00370{bottom:635.416899pt;}
.y27_c00370{bottom:635.682140pt;}
.y26_c00370{bottom:636.204700pt;}
.y25_c00370{bottom:636.476343pt;}
.y24_c00370{bottom:636.741612pt;}
.y23_c00370{bottom:637.000284pt;}
.y22_c00370{bottom:637.438601pt;}
.y21_c00370{bottom:664.580307pt;}
.y20_c00370{bottom:664.776885pt;}
.y1f_c00370{bottom:665.264085pt;}
.y1e_c00370{bottom:665.473983pt;}
.y1d_c00370{bottom:666.018489pt;}
.y1c_c00370{bottom:666.433571pt;}
.y1b_c00370{bottom:666.639987pt;}
.y1a_c00370{bottom:666.850005pt;}
.y19_c00370{bottom:667.323887pt;}
.y18_c00370{bottom:667.680000pt;}
.y17_c00370{bottom:700.432000pt;}
.y16_c00370{bottom:730.261333pt;}
.y15_c00370{bottom:761.153333pt;}
.y14_c00370{bottom:792.348000pt;}
.y13_c00370{bottom:823.233333pt;}
.y12_c00370{bottom:854.337333pt;}
.y11_c00370{bottom:885.478667pt;}
.y10_c00370{bottom:885.718667pt;}
.yf_c00370{bottom:886.258667pt;}
.ye_c00370{bottom:886.436000pt;}
.yd_c00370{bottom:886.612000pt;}
.yc_c00370{bottom:886.965333pt;}
.yb_c00370{bottom:887.616000pt;}
.ya_c00370{bottom:887.906667pt;}
.y9_c00370{bottom:888.086667pt;}
.y8_c00370{bottom:888.434667pt;}
.y7_c00370{bottom:888.729333pt;}
.y6_c00370{bottom:888.961333pt;}
.y5_c00370{bottom:918.286667pt;}
.y4_c00370{bottom:948.370667pt;}
.y3_c00370{bottom:982.736000pt;}
.y2_c00370{bottom:1012.598667pt;}
.y1_c00370{bottom:1064.516000pt;}
.h11_c00370{height:21.335136pt;}
.h5_c00370{height:64.000000pt;}
.h8_c00370{height:64.001568pt;}
.hb_c00370{height:64.003872pt;}
.h10_c00370{height:64.005408pt;}
.h14_c00370{height:64.007200pt;}
.h3_c00370{height:69.333333pt;}
.h9_c00370{height:69.335032pt;}
.he_c00370{height:69.337528pt;}
.h12_c00370{height:69.339192pt;}
.hf_c00370{height:69.342207pt;}
.h2_c00370{height:74.666667pt;}
.h7_c00370{height:74.668496pt;}
.hd_c00370{height:74.671184pt;}
.h15_c00370{height:74.675066pt;}
.h4_c00370{height:80.000000pt;}
.ha_c00370{height:80.001960pt;}
.hc_c00370{height:80.004840pt;}
.h13_c00370{height:80.008999pt;}
.h6_c00370{height:90.666667pt;}
.h0_c00370{height:1112.400000pt;}
.h1_c00370{height:1112.666667pt;}
.w0_c00370{width:813.333333pt;}
.x0_c00370{left:0.000000pt;}
.x1b_c00370{left:145.200000pt;}
.x2_c00370{left:146.640000pt;}
.x66_c00370{left:147.598661pt;}
.x84_c00370{left:149.092007pt;}
.xf_c00370{left:174.480000pt;}
.x32_c00370{left:175.437333pt;}
.x2a_c00370{left:184.498667pt;}
.x5b_c00370{left:186.127481pt;}
.x10_c00370{left:194.160000pt;}
.x67_c00370{left:195.361773pt;}
.x81_c00370{left:199.463800pt;}
.x62_c00370{left:204.149263pt;}
.x5c_c00370{left:205.612675pt;}
.x33_c00370{left:213.837333pt;}
.x11_c00370{left:222.720000pt;}
.x6e_c00370{left:224.035155pt;}
.x60_c00370{left:225.363351pt;}
.x3b_c00370{left:232.317333pt;}
.x2b_c00370{left:233.701333pt;}
.x3_c00370{left:242.640000pt;}
.x12_c00370{left:243.600000pt;}
.x55_c00370{left:252.856780pt;}
.x34_c00370{left:253.917333pt;}
.x45_c00370{left:261.837333pt;}
.x85_c00370{left:262.780220pt;}
.x4d_c00370{left:271.437333pt;}
.x4_c00370{left:272.640000pt;}
.x23_c00370{left:280.800000pt;}
.x4a_c00370{left:282.477333pt;}
.x77_c00370{left:283.496000pt;}
.x2c_c00370{left:291.761333pt;}
.x4f_c00370{left:292.949333pt;}
.x24_c00370{left:300.480000pt;}
.x35_c00370{left:302.157333pt;}
.x46_c00370{left:303.357333pt;}
.x4b_c00370{left:310.797333pt;}
.x71_c00370{left:312.793845pt;}
.x3c_c00370{left:320.397333pt;}
.x2d_c00370{left:321.773333pt;}
.x5_c00370{left:330.960000pt;}
.x47_c00370{left:340.317333pt;}
.x40_c00370{left:341.277333pt;}
.x36_c00370{left:349.917333pt;}
.x58_c00370{left:351.126179pt;}
.x1c_c00370{left:359.520000pt;}
.x50_c00370{left:360.646667pt;}
.x82_c00370{left:361.624340pt;}
.x4e_c00370{left:362.637333pt;}
.x13_c00370{left:369.840000pt;}
.x72_c00370{left:371.376555pt;}
.x1_c00370{left:379.680000pt;}
.x68_c00370{left:380.893561pt;}
.x14_c00370{left:389.520000pt;}
.x51_c00370{left:390.649333pt;}
.x1d_c00370{left:398.640000pt;}
.x5d_c00370{left:399.976645pt;}
.x7f_c00370{left:401.093333pt;}
.x48_c00370{left:409.917333pt;}
.x15_c00370{left:418.800000pt;}
.x52_c00370{left:420.137333pt;}
.x83_c00370{left:421.654473pt;}
.x59_c00370{left:429.848700pt;}
.x6_c00370{left:438.480000pt;}
.x25_c00370{left:439.440000pt;}
.x69_c00370{left:441.136851pt;}
.x37_c00370{left:448.557333pt;}
.x7c_c00370{left:450.309661pt;}
.x6a_c00370{left:455.297233pt;}
.x41_c00370{left:457.917333pt;}
.x7_c00370{left:458.880000pt;}
.x1e_c00370{left:469.200000pt;}
.x2e_c00370{left:478.718667pt;}
.x6c_c00370{left:479.698211pt;}
.x16_c00370{left:488.160000pt;}
.x5e_c00370{left:489.270687pt;}
.x42_c00370{left:497.757333pt;}
.x49_c00370{left:498.717333pt;}
.x5a_c00370{left:499.690792pt;}
.x38_c00370{left:507.357333pt;}
.x64_c00370{left:508.576936pt;}
.x86_c00370{left:509.574453pt;}
.x26_c00370{left:517.920000pt;}
.x80_c00370{left:518.988000pt;}
.x3d_c00370{left:526.797333pt;}
.x43_c00370{left:527.757333pt;}
.x65_c00370{left:528.741128pt;}
.x8_c00370{left:537.600000pt;}
.x6f_c00370{left:538.675949pt;}
.x27_c00370{left:546.480000pt;}
.x17_c00370{left:547.440000pt;}
.x9_c00370{left:558.000000pt;}
.x2f_c00370{left:566.816000pt;}
.x73_c00370{left:567.956228pt;}
.x1f_c00370{left:576.000000pt;}
.x56_c00370{left:577.113587pt;}
.x18_c00370{left:578.640000pt;}
.x28_c00370{left:587.520000pt;}
.x4c_c00370{left:589.437333pt;}
.x30_c00370{left:596.318667pt;}
.x20_c00370{left:597.360000pt;}
.x61_c00370{left:606.834667pt;}
.xa_c00370{left:616.560000pt;}
.x75_c00370{left:618.094667pt;}
.x63_c00370{left:627.053208pt;}
.x7d_c00370{left:628.142728pt;}
.x6b_c00370{left:634.108200pt;}
.x19_c00370{left:636.240000pt;}
.x3e_c00370{left:637.197333pt;}
.xb_c00370{left:646.560000pt;}
.x78_c00370{left:647.464000pt;}
.x39_c00370{left:655.437333pt;}
.x53_c00370{left:656.806667pt;}
.xc_c00370{left:666.240000pt;}
.x29_c00370{left:667.200000pt;}
.x76_c00370{left:669.208000pt;}
.x44_c00370{left:675.597333pt;}
.x57_c00370{left:676.949520pt;}
.x79_c00370{left:677.953333pt;}
.x54_c00370{left:684.889333pt;}
.x31_c00370{left:686.337333pt;}
.x3f_c00370{left:695.517333pt;}
.x21_c00370{left:704.640000pt;}
.xd_c00370{left:706.560000pt;}
.x74_c00370{left:708.359815pt;}
.x6d_c00370{left:715.595977pt;}
.x1a_c00370{left:716.880000pt;}
.x7a_c00370{left:717.770667pt;}
.xe_c00370{left:726.480000pt;}
.x22_c00370{left:734.880000pt;}
.x3a_c00370{left:745.197333pt;}
.x70_c00370{left:746.568919pt;}
.x5f_c00370{left:754.742153pt;}
.x7e_c00370{left:756.392385pt;}
.x7b_c00370{left:780.763829pt;}
}





/* 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_c00371 {
    display:none;
  }
  .loading-indicator_c00371.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00371 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_c00371 { 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_c00371" -> "#page-container .classname_c00371")
 */
.pf_c00371 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00371 { /* 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_c00371.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00371 { /* 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_c00371 { /* 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_c00371 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00371 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00371 {overflow:visible;}
  }
}
.c_c00371 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00371 { /* 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_c00371:after { /* webkit #35443 */
  content: '';
}
.t_c00371:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00371 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 */
}
.__c00371 { /* 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_c00371 { /* info for Javascript */
  display:none;
}
.l_c00371 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00371 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00371 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00371: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_c00371 {
    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_c00371.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00371.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_c00371 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00371{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00371;src:url('chunks/assets/font_c605e72f209fc835e906f064.woff2')format("woff");}.ff1_c00371{font-family:ff1_c00371;line-height:1.000000;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;}
.mc8_c00371{transform:matrix(0.011584,0.000359,-0.007746,0.249880,0,0);-ms-transform:matrix(0.011584,0.000359,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.011584,0.000359,-0.007746,0.249880,0,0);}
.m4f_c00371{transform:matrix(0.016224,0.000162,-0.002500,0.249988,0,0);-ms-transform:matrix(0.016224,0.000162,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.016224,0.000162,-0.002500,0.249988,0,0);}
.md7_c00371{transform:matrix(0.021735,0.000674,-0.007746,0.249880,0,0);-ms-transform:matrix(0.021735,0.000674,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.021735,0.000674,-0.007746,0.249880,0,0);}
.m6c_c00371{transform:matrix(0.060046,0.001861,-0.007746,0.249880,0,0);-ms-transform:matrix(0.060046,0.001861,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.060046,0.001861,-0.007746,0.249880,0,0);}
.mc2_c00371{transform:matrix(0.071880,0.002228,-0.007746,0.249880,0,0);-ms-transform:matrix(0.071880,0.002228,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.071880,0.002228,-0.007746,0.249880,0,0);}
.m3_c00371{transform:matrix(0.106463,0.001597,-0.003750,0.249972,0,0);-ms-transform:matrix(0.106463,0.001597,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.106463,0.001597,-0.003750,0.249972,0,0);}
.m2_c00371{transform:matrix(0.113067,0.001696,-0.003750,0.249972,0,0);-ms-transform:matrix(0.113067,0.001696,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.113067,0.001696,-0.003750,0.249972,0,0);}
.mc3_c00371{transform:matrix(0.116094,0.003599,-0.007746,0.249880,0,0);-ms-transform:matrix(0.116094,0.003599,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.116094,0.003599,-0.007746,0.249880,0,0);}
.mcf_c00371{transform:matrix(0.118813,0.003683,-0.007746,0.249880,0,0);-ms-transform:matrix(0.118813,0.003683,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.118813,0.003683,-0.007746,0.249880,0,0);}
.m0_c00371{transform:matrix(0.120156,0.001802,-0.003750,0.249972,0,0);-ms-transform:matrix(0.120156,0.001802,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.120156,0.001802,-0.003750,0.249972,0,0);}
.m5_c00371{transform:matrix(0.120401,0.001806,-0.003750,0.249972,0,0);-ms-transform:matrix(0.120401,0.001806,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.120401,0.001806,-0.003750,0.249972,0,0);}
.md3_c00371{transform:matrix(0.133096,0.004126,-0.007746,0.249880,0,0);-ms-transform:matrix(0.133096,0.004126,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.133096,0.004126,-0.007746,0.249880,0,0);}
.md1_c00371{transform:matrix(0.143691,0.004454,-0.007746,0.249880,0,0);-ms-transform:matrix(0.143691,0.004454,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.143691,0.004454,-0.007746,0.249880,0,0);}
.m65_c00371{transform:matrix(0.145835,0.004521,-0.007746,0.249880,0,0);-ms-transform:matrix(0.145835,0.004521,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.145835,0.004521,-0.007746,0.249880,0,0);}
.m63_c00371{transform:matrix(0.146220,0.004533,-0.007746,0.249880,0,0);-ms-transform:matrix(0.146220,0.004533,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.146220,0.004533,-0.007746,0.249880,0,0);}
.m62_c00371{transform:matrix(0.148499,0.004603,-0.007746,0.249880,0,0);-ms-transform:matrix(0.148499,0.004603,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.148499,0.004603,-0.007746,0.249880,0,0);}
.m59_c00371{transform:matrix(0.151547,0.004698,-0.007746,0.249880,0,0);-ms-transform:matrix(0.151547,0.004698,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.151547,0.004698,-0.007746,0.249880,0,0);}
.m61_c00371{transform:matrix(0.152992,0.004743,-0.007746,0.249880,0,0);-ms-transform:matrix(0.152992,0.004743,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.152992,0.004743,-0.007746,0.249880,0,0);}
.m67_c00371{transform:matrix(0.153016,0.004744,-0.007746,0.249880,0,0);-ms-transform:matrix(0.153016,0.004744,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.153016,0.004744,-0.007746,0.249880,0,0);}
.m64_c00371{transform:matrix(0.155200,0.004811,-0.007746,0.249880,0,0);-ms-transform:matrix(0.155200,0.004811,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.155200,0.004811,-0.007746,0.249880,0,0);}
.m33_c00371{transform:matrix(0.155447,0.001554,-0.002500,0.249988,0,0);-ms-transform:matrix(0.155447,0.001554,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.155447,0.001554,-0.002500,0.249988,0,0);}
.m66_c00371{transform:matrix(0.157424,0.004880,-0.007746,0.249880,0,0);-ms-transform:matrix(0.157424,0.004880,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.157424,0.004880,-0.007746,0.249880,0,0);}
.mc9_c00371{transform:matrix(0.157524,0.004883,-0.007746,0.249880,0,0);-ms-transform:matrix(0.157524,0.004883,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.157524,0.004883,-0.007746,0.249880,0,0);}
.m31_c00371{transform:matrix(0.157712,0.001577,-0.002500,0.249988,0,0);-ms-transform:matrix(0.157712,0.001577,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.157712,0.001577,-0.002500,0.249988,0,0);}
.m4_c00371{transform:matrix(0.160992,0.002415,-0.003750,0.249972,0,0);-ms-transform:matrix(0.160992,0.002415,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.160992,0.002415,-0.003750,0.249972,0,0);}
.m38_c00371{transform:matrix(0.163082,0.001631,-0.002500,0.249988,0,0);-ms-transform:matrix(0.163082,0.001631,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.163082,0.001631,-0.002500,0.249988,0,0);}
.m9d_c00371{transform:matrix(0.164490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164490,0.000000,0.000000,0.250000,0,0);}
.m60_c00371{transform:matrix(0.167924,0.005206,-0.007746,0.249880,0,0);-ms-transform:matrix(0.167924,0.005206,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.167924,0.005206,-0.007746,0.249880,0,0);}
.m7f_c00371{transform:matrix(0.170303,0.005279,-0.007746,0.249880,0,0);-ms-transform:matrix(0.170303,0.005279,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.170303,0.005279,-0.007746,0.249880,0,0);}
.m69_c00371{transform:matrix(0.170518,0.005286,-0.007746,0.249880,0,0);-ms-transform:matrix(0.170518,0.005286,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.170518,0.005286,-0.007746,0.249880,0,0);}
.m68_c00371{transform:matrix(0.172157,0.005337,-0.007746,0.249880,0,0);-ms-transform:matrix(0.172157,0.005337,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.172157,0.005337,-0.007746,0.249880,0,0);}
.mdf_c00371{transform:matrix(0.174581,0.004539,-0.006498,0.249916,0,0);-ms-transform:matrix(0.174581,0.004539,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.174581,0.004539,-0.006498,0.249916,0,0);}
.m6a_c00371{transform:matrix(0.175965,0.005455,-0.007746,0.249880,0,0);-ms-transform:matrix(0.175965,0.005455,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.175965,0.005455,-0.007746,0.249880,0,0);}
.m6b_c00371{transform:matrix(0.176455,0.005470,-0.007746,0.249880,0,0);-ms-transform:matrix(0.176455,0.005470,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.176455,0.005470,-0.007746,0.249880,0,0);}
.m44_c00371{transform:matrix(0.178626,0.001786,-0.002500,0.249988,0,0);-ms-transform:matrix(0.178626,0.001786,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.178626,0.001786,-0.002500,0.249988,0,0);}
.md4_c00371{transform:matrix(0.181093,0.005614,-0.007746,0.249880,0,0);-ms-transform:matrix(0.181093,0.005614,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.181093,0.005614,-0.007746,0.249880,0,0);}
.m9_c00371{transform:matrix(0.181743,0.005452,-0.007497,0.249888,0,0);-ms-transform:matrix(0.181743,0.005452,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.181743,0.005452,-0.007497,0.249888,0,0);}
.md2_c00371{transform:matrix(0.183287,0.005682,-0.007746,0.249880,0,0);-ms-transform:matrix(0.183287,0.005682,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.183287,0.005682,-0.007746,0.249880,0,0);}
.m3e_c00371{transform:matrix(0.184826,0.001848,-0.002500,0.249988,0,0);-ms-transform:matrix(0.184826,0.001848,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.184826,0.001848,-0.002500,0.249988,0,0);}
.m3f_c00371{transform:matrix(0.185211,0.001852,-0.002500,0.249988,0,0);-ms-transform:matrix(0.185211,0.001852,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.185211,0.001852,-0.002500,0.249988,0,0);}
.m82_c00371{transform:matrix(0.185951,0.003533,-0.004749,0.249955,0,0);-ms-transform:matrix(0.185951,0.003533,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.185951,0.003533,-0.004749,0.249955,0,0);}
.m1a_c00371{transform:matrix(0.186118,0.000931,-0.001250,0.249997,0,0);-ms-transform:matrix(0.186118,0.000931,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.186118,0.000931,-0.001250,0.249997,0,0);}
.mda_c00371{transform:matrix(0.186282,0.005402,-0.007247,0.249895,0,0);-ms-transform:matrix(0.186282,0.005402,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.186282,0.005402,-0.007247,0.249895,0,0);}
.md5_c00371{transform:matrix(0.186760,0.005790,-0.007746,0.249880,0,0);-ms-transform:matrix(0.186760,0.005790,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.186760,0.005790,-0.007746,0.249880,0,0);}
.m86_c00371{transform:matrix(0.188426,0.003580,-0.004749,0.249955,0,0);-ms-transform:matrix(0.188426,0.003580,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.188426,0.003580,-0.004749,0.249955,0,0);}
.m35_c00371{transform:matrix(0.188751,0.001888,-0.002500,0.249988,0,0);-ms-transform:matrix(0.188751,0.001888,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.188751,0.001888,-0.002500,0.249988,0,0);}
.m7a_c00371{transform:matrix(0.190009,0.005890,-0.007746,0.249880,0,0);-ms-transform:matrix(0.190009,0.005890,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.190009,0.005890,-0.007746,0.249880,0,0);}
.m34_c00371{transform:matrix(0.191415,0.001914,-0.002500,0.249988,0,0);-ms-transform:matrix(0.191415,0.001914,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.191415,0.001914,-0.002500,0.249988,0,0);}
.m47_c00371{transform:matrix(0.192510,0.001925,-0.002500,0.249988,0,0);-ms-transform:matrix(0.192510,0.001925,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.192510,0.001925,-0.002500,0.249988,0,0);}
.m49_c00371{transform:matrix(0.193035,0.001930,-0.002500,0.249988,0,0);-ms-transform:matrix(0.193035,0.001930,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.193035,0.001930,-0.002500,0.249988,0,0);}
.m8c_c00371{transform:matrix(0.193470,0.003676,-0.004749,0.249955,0,0);-ms-transform:matrix(0.193470,0.003676,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.193470,0.003676,-0.004749,0.249955,0,0);}
.md_c00371{transform:matrix(0.196147,0.005884,-0.007497,0.249888,0,0);-ms-transform:matrix(0.196147,0.005884,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.196147,0.005884,-0.007497,0.249888,0,0);}
.m1_c00371{transform:matrix(0.197588,0.002964,-0.003750,0.249972,0,0);-ms-transform:matrix(0.197588,0.002964,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.197588,0.002964,-0.003750,0.249972,0,0);}
.m46_c00371{transform:matrix(0.197810,0.001978,-0.002500,0.249988,0,0);-ms-transform:matrix(0.197810,0.001978,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.197810,0.001978,-0.002500,0.249988,0,0);}
.m77_c00371{transform:matrix(0.198170,0.006143,-0.007746,0.249880,0,0);-ms-transform:matrix(0.198170,0.006143,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.198170,0.006143,-0.007746,0.249880,0,0);}
.ma2_c00371{transform:matrix(0.199313,0.002591,-0.003250,0.249979,0,0);-ms-transform:matrix(0.199313,0.002591,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.199313,0.002591,-0.003250,0.249979,0,0);}
.m20_c00371{transform:matrix(0.199758,0.000999,-0.001250,0.249997,0,0);-ms-transform:matrix(0.199758,0.000999,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.199758,0.000999,-0.001250,0.249997,0,0);}
.m4a_c00371{transform:matrix(0.200245,0.002002,-0.002500,0.249988,0,0);-ms-transform:matrix(0.200245,0.002002,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.200245,0.002002,-0.002500,0.249988,0,0);}
.mbf_c00371{transform:matrix(0.200365,0.002805,-0.003500,0.249976,0,0);-ms-transform:matrix(0.200365,0.002805,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.200365,0.002805,-0.003500,0.249976,0,0);}
.m17_c00371{transform:matrix(0.201127,0.001006,-0.001250,0.249997,0,0);-ms-transform:matrix(0.201127,0.001006,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.201127,0.001006,-0.001250,0.249997,0,0);}
.m39_c00371{transform:matrix(0.201525,0.002015,-0.002500,0.249988,0,0);-ms-transform:matrix(0.201525,0.002015,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.201525,0.002015,-0.002500,0.249988,0,0);}
.m89_c00371{transform:matrix(0.201664,0.003832,-0.004749,0.249955,0,0);-ms-transform:matrix(0.201664,0.003832,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.201664,0.003832,-0.004749,0.249955,0,0);}
.m6f_c00371{transform:matrix(0.203482,0.006308,-0.007746,0.249880,0,0);-ms-transform:matrix(0.203482,0.006308,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.203482,0.006308,-0.007746,0.249880,0,0);}
.mbc_c00371{transform:matrix(0.203960,0.002855,-0.003500,0.249976,0,0);-ms-transform:matrix(0.203960,0.002855,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.203960,0.002855,-0.003500,0.249976,0,0);}
.m75_c00371{transform:matrix(0.204532,0.006340,-0.007746,0.249880,0,0);-ms-transform:matrix(0.204532,0.006340,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.204532,0.006340,-0.007746,0.249880,0,0);}
.md9_c00371{transform:matrix(0.205144,0.005949,-0.007247,0.249895,0,0);-ms-transform:matrix(0.205144,0.005949,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.205144,0.005949,-0.007247,0.249895,0,0);}
.m5b_c00371{transform:matrix(0.205761,0.006379,-0.007746,0.249880,0,0);-ms-transform:matrix(0.205761,0.006379,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.205761,0.006379,-0.007746,0.249880,0,0);}
.m40_c00371{transform:matrix(0.206815,0.002068,-0.002500,0.249988,0,0);-ms-transform:matrix(0.206815,0.002068,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.206815,0.002068,-0.002500,0.249988,0,0);}
.m45_c00371{transform:matrix(0.206970,0.002070,-0.002500,0.249988,0,0);-ms-transform:matrix(0.206970,0.002070,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.206970,0.002070,-0.002500,0.249988,0,0);}
.mdc_c00371{transform:matrix(0.207673,0.006023,-0.007247,0.249895,0,0);-ms-transform:matrix(0.207673,0.006023,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.207673,0.006023,-0.007247,0.249895,0,0);}
.m43_c00371{transform:matrix(0.208855,0.002089,-0.002500,0.249988,0,0);-ms-transform:matrix(0.208855,0.002089,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.208855,0.002089,-0.002500,0.249988,0,0);}
.m19_c00371{transform:matrix(0.209972,0.001050,-0.001250,0.249997,0,0);-ms-transform:matrix(0.209972,0.001050,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.209972,0.001050,-0.001250,0.249997,0,0);}
.ma_c00371{transform:matrix(0.210310,0.006309,-0.007497,0.249888,0,0);-ms-transform:matrix(0.210310,0.006309,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.210310,0.006309,-0.007497,0.249888,0,0);}
.m78_c00371{transform:matrix(0.210434,0.006523,-0.007746,0.249880,0,0);-ms-transform:matrix(0.210434,0.006523,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.210434,0.006523,-0.007746,0.249880,0,0);}
.mca_c00371{transform:matrix(0.212098,0.006575,-0.007746,0.249880,0,0);-ms-transform:matrix(0.212098,0.006575,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.212098,0.006575,-0.007746,0.249880,0,0);}
.ma1_c00371{transform:matrix(0.212762,0.002766,-0.003250,0.249979,0,0);-ms-transform:matrix(0.212762,0.002766,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.212762,0.002766,-0.003250,0.249979,0,0);}
.m7_c00371{transform:matrix(0.213264,0.006398,-0.007497,0.249888,0,0);-ms-transform:matrix(0.213264,0.006398,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.213264,0.006398,-0.007497,0.249888,0,0);}
.m71_c00371{transform:matrix(0.213627,0.006622,-0.007746,0.249880,0,0);-ms-transform:matrix(0.213627,0.006622,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.213627,0.006622,-0.007746,0.249880,0,0);}
.ma4_c00371{transform:matrix(0.213677,0.002778,-0.003250,0.249979,0,0);-ms-transform:matrix(0.213677,0.002778,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.213677,0.002778,-0.003250,0.249979,0,0);}
.m1b_c00371{transform:matrix(0.214717,0.001074,-0.001250,0.249997,0,0);-ms-transform:matrix(0.214717,0.001074,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.214717,0.001074,-0.001250,0.249997,0,0);}
.m3a_c00371{transform:matrix(0.215639,0.002156,-0.002500,0.249988,0,0);-ms-transform:matrix(0.215639,0.002156,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.215639,0.002156,-0.002500,0.249988,0,0);}
.mbe_c00371{transform:matrix(0.217349,0.003043,-0.003500,0.249976,0,0);-ms-transform:matrix(0.217349,0.003043,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.217349,0.003043,-0.003500,0.249976,0,0);}
.m36_c00371{transform:matrix(0.218449,0.002184,-0.002500,0.249988,0,0);-ms-transform:matrix(0.218449,0.002184,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.218449,0.002184,-0.002500,0.249988,0,0);}
.m18_c00371{transform:matrix(0.220097,0.001100,-0.001250,0.249997,0,0);-ms-transform:matrix(0.220097,0.001100,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.220097,0.001100,-0.001250,0.249997,0,0);}
.mbb_c00371{transform:matrix(0.220843,0.003092,-0.003500,0.249976,0,0);-ms-transform:matrix(0.220843,0.003092,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.220843,0.003092,-0.003500,0.249976,0,0);}
.me3_c00371{transform:matrix(0.221925,0.005770,-0.006498,0.249916,0,0);-ms-transform:matrix(0.221925,0.005770,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.221925,0.005770,-0.006498,0.249916,0,0);}
.m88_c00371{transform:matrix(0.222045,0.004219,-0.004749,0.249955,0,0);-ms-transform:matrix(0.222045,0.004219,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.222045,0.004219,-0.004749,0.249955,0,0);}
.m74_c00371{transform:matrix(0.222143,0.006886,-0.007746,0.249880,0,0);-ms-transform:matrix(0.222143,0.006886,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.222143,0.006886,-0.007746,0.249880,0,0);}
.m79_c00371{transform:matrix(0.222678,0.006903,-0.007746,0.249880,0,0);-ms-transform:matrix(0.222678,0.006903,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.222678,0.006903,-0.007746,0.249880,0,0);}
.m16_c00371{transform:matrix(0.223212,0.001116,-0.001250,0.249997,0,0);-ms-transform:matrix(0.223212,0.001116,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.223212,0.001116,-0.001250,0.249997,0,0);}
.m9f_c00371{transform:matrix(0.223271,0.002903,-0.003250,0.249979,0,0);-ms-transform:matrix(0.223271,0.002903,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.223271,0.002903,-0.003250,0.249979,0,0);}
.m37_c00371{transform:matrix(0.223754,0.002238,-0.002500,0.249988,0,0);-ms-transform:matrix(0.223754,0.002238,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.223754,0.002238,-0.002500,0.249988,0,0);}
.m95_c00371{transform:matrix(0.224155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224155,0.000000,0.000000,0.250000,0,0);}
.mad_c00371{transform:matrix(0.224971,0.002925,-0.003250,0.249979,0,0);-ms-transform:matrix(0.224971,0.002925,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.224971,0.002925,-0.003250,0.249979,0,0);}
.mb_c00371{transform:matrix(0.225838,0.006775,-0.007497,0.249888,0,0);-ms-transform:matrix(0.225838,0.006775,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.225838,0.006775,-0.007497,0.249888,0,0);}
.mcb_c00371{transform:matrix(0.228680,0.007089,-0.007746,0.249880,0,0);-ms-transform:matrix(0.228680,0.007089,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.228680,0.007089,-0.007746,0.249880,0,0);}
.m8a_c00371{transform:matrix(0.229084,0.004353,-0.004749,0.249955,0,0);-ms-transform:matrix(0.229084,0.004353,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.229084,0.004353,-0.004749,0.249955,0,0);}
.m9a_c00371{transform:matrix(0.229645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229645,0.000000,0.000000,0.250000,0,0);}
.me1_c00371{transform:matrix(0.229832,0.005976,-0.006498,0.249916,0,0);-ms-transform:matrix(0.229832,0.005976,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.229832,0.005976,-0.006498,0.249916,0,0);}
.maf_c00371{transform:matrix(0.230716,0.002999,-0.003250,0.249979,0,0);-ms-transform:matrix(0.230716,0.002999,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.230716,0.002999,-0.003250,0.249979,0,0);}
.m32_c00371{transform:matrix(0.232023,0.002320,-0.002500,0.249988,0,0);-ms-transform:matrix(0.232023,0.002320,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.232023,0.002320,-0.002500,0.249988,0,0);}
.m3d_c00371{transform:matrix(0.232208,0.002322,-0.002500,0.249988,0,0);-ms-transform:matrix(0.232208,0.002322,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.232208,0.002322,-0.002500,0.249988,0,0);}
.m21_c00371{transform:matrix(0.232342,0.001162,-0.001250,0.249997,0,0);-ms-transform:matrix(0.232342,0.001162,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.232342,0.001162,-0.001250,0.249997,0,0);}
.m5f_c00371{transform:matrix(0.233028,0.007224,-0.007746,0.249880,0,0);-ms-transform:matrix(0.233028,0.007224,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.233028,0.007224,-0.007746,0.249880,0,0);}
.m7b_c00371{transform:matrix(0.233578,0.007241,-0.007746,0.249880,0,0);-ms-transform:matrix(0.233578,0.007241,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.233578,0.007241,-0.007746,0.249880,0,0);}
.m84_c00371{transform:matrix(0.234413,0.004454,-0.004749,0.249955,0,0);-ms-transform:matrix(0.234413,0.004454,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.234413,0.004454,-0.004749,0.249955,0,0);}
.m4b_c00371{transform:matrix(0.236958,0.002370,-0.002500,0.249988,0,0);-ms-transform:matrix(0.236958,0.002370,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.236958,0.002370,-0.002500,0.249988,0,0);}
.m9b_c00371{transform:matrix(0.238105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238105,0.000000,0.000000,0.250000,0,0);}
.mde_c00371{transform:matrix(0.238209,0.006193,-0.006498,0.249916,0,0);-ms-transform:matrix(0.238209,0.006193,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.238209,0.006193,-0.006498,0.249916,0,0);}
.mb4_c00371{transform:matrix(0.238350,0.003099,-0.003250,0.249979,0,0);-ms-transform:matrix(0.238350,0.003099,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.238350,0.003099,-0.003250,0.249979,0,0);}
.m72_c00371{transform:matrix(0.238720,0.007400,-0.007746,0.249880,0,0);-ms-transform:matrix(0.238720,0.007400,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.238720,0.007400,-0.007746,0.249880,0,0);}
.mbd_c00371{transform:matrix(0.239722,0.003356,-0.003500,0.249976,0,0);-ms-transform:matrix(0.239722,0.003356,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.239722,0.003356,-0.003500,0.249976,0,0);}
.mcd_c00371{transform:matrix(0.240005,0.007440,-0.007746,0.249880,0,0);-ms-transform:matrix(0.240005,0.007440,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.240005,0.007440,-0.007746,0.249880,0,0);}
.m2b_c00371{transform:matrix(0.240632,0.001203,-0.001250,0.249997,0,0);-ms-transform:matrix(0.240632,0.001203,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.240632,0.001203,-0.001250,0.249997,0,0);}
.m90_c00371{transform:matrix(0.241481,0.004588,-0.004749,0.249955,0,0);-ms-transform:matrix(0.241481,0.004588,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.241481,0.004588,-0.004749,0.249955,0,0);}
.m2f_c00371{transform:matrix(0.242237,0.001211,-0.001250,0.249997,0,0);-ms-transform:matrix(0.242237,0.001211,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.242237,0.001211,-0.001250,0.249997,0,0);}
.me2_c00371{transform:matrix(0.242393,0.006302,-0.006498,0.249916,0,0);-ms-transform:matrix(0.242393,0.006302,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.242393,0.006302,-0.006498,0.249916,0,0);}
.ma0_c00371{transform:matrix(0.242969,0.003159,-0.003250,0.249979,0,0);-ms-transform:matrix(0.242969,0.003159,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.242969,0.003159,-0.003250,0.249979,0,0);}
.m85_c00371{transform:matrix(0.243566,0.004628,-0.004749,0.249955,0,0);-ms-transform:matrix(0.243566,0.004628,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.243566,0.004628,-0.004749,0.249955,0,0);}
.mae_c00371{transform:matrix(0.244419,0.003177,-0.003250,0.249979,0,0);-ms-transform:matrix(0.244419,0.003177,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.244419,0.003177,-0.003250,0.249979,0,0);}
.ma6_c00371{transform:matrix(0.245129,0.003187,-0.003250,0.249979,0,0);-ms-transform:matrix(0.245129,0.003187,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.245129,0.003187,-0.003250,0.249979,0,0);}
.m6_c00371{transform:matrix(0.245177,0.003678,-0.003750,0.249972,0,0);-ms-transform:matrix(0.245177,0.003678,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.245177,0.003678,-0.003750,0.249972,0,0);}
.m70_c00371{transform:matrix(0.245407,0.007608,-0.007746,0.249880,0,0);-ms-transform:matrix(0.245407,0.007608,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.245407,0.007608,-0.007746,0.249880,0,0);}
.m76_c00371{transform:matrix(0.247361,0.007668,-0.007746,0.249880,0,0);-ms-transform:matrix(0.247361,0.007668,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.247361,0.007668,-0.007746,0.249880,0,0);}
.m24_c00371{transform:matrix(0.247522,0.001238,-0.001250,0.249997,0,0);-ms-transform:matrix(0.247522,0.001238,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.247522,0.001238,-0.001250,0.249997,0,0);}
.me0_c00371{transform:matrix(0.247791,0.006443,-0.006498,0.249916,0,0);-ms-transform:matrix(0.247791,0.006443,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.247791,0.006443,-0.006498,0.249916,0,0);}
.m8b_c00371{transform:matrix(0.248295,0.004718,-0.004749,0.249955,0,0);-ms-transform:matrix(0.248295,0.004718,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.248295,0.004718,-0.004749,0.249955,0,0);}
.md8_c00371{transform:matrix(0.250025,0.007251,-0.007247,0.249895,0,0);-ms-transform:matrix(0.250025,0.007251,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.250025,0.007251,-0.007247,0.249895,0,0);}
.mba_c00371{transform:matrix(0.250170,0.003502,-0.003500,0.249976,0,0);-ms-transform:matrix(0.250170,0.003502,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.250170,0.003502,-0.003500,0.249976,0,0);}
.m8f_c00371{transform:matrix(0.252159,0.004791,-0.004749,0.249955,0,0);-ms-transform:matrix(0.252159,0.004791,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.252159,0.004791,-0.004749,0.249955,0,0);}
.mdb_c00371{transform:matrix(0.252634,0.007326,-0.007247,0.249895,0,0);-ms-transform:matrix(0.252634,0.007326,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.252634,0.007326,-0.007247,0.249895,0,0);}
.mb3_c00371{transform:matrix(0.254089,0.003303,-0.003250,0.249979,0,0);-ms-transform:matrix(0.254089,0.003303,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.254089,0.003303,-0.003250,0.249979,0,0);}
.m3c_c00371{transform:matrix(0.254497,0.002545,-0.002500,0.249988,0,0);-ms-transform:matrix(0.254497,0.002545,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.254497,0.002545,-0.002500,0.249988,0,0);}
.m23_c00371{transform:matrix(0.255122,0.001276,-0.001250,0.249997,0,0);-ms-transform:matrix(0.255122,0.001276,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.255122,0.001276,-0.001250,0.249997,0,0);}
.m1c_c00371{transform:matrix(0.256007,0.001280,-0.001250,0.249997,0,0);-ms-transform:matrix(0.256007,0.001280,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.256007,0.001280,-0.001250,0.249997,0,0);}
.ma3_c00371{transform:matrix(0.256483,0.003334,-0.003250,0.249979,0,0);-ms-transform:matrix(0.256483,0.003334,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.256483,0.003334,-0.003250,0.249979,0,0);}
.m91_c00371{transform:matrix(0.257324,0.004889,-0.004749,0.249955,0,0);-ms-transform:matrix(0.257324,0.004889,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.257324,0.004889,-0.004749,0.249955,0,0);}
.m2a_c00371{transform:matrix(0.257562,0.001288,-0.001250,0.249997,0,0);-ms-transform:matrix(0.257562,0.001288,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.257562,0.001288,-0.001250,0.249997,0,0);}
.mc6_c00371{transform:matrix(0.258296,0.008007,-0.007746,0.249880,0,0);-ms-transform:matrix(0.258296,0.008007,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.258296,0.008007,-0.007746,0.249880,0,0);}
.m8d_c00371{transform:matrix(0.258753,0.004916,-0.004749,0.249955,0,0);-ms-transform:matrix(0.258753,0.004916,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.258753,0.004916,-0.004749,0.249955,0,0);}
.m42_c00371{transform:matrix(0.259287,0.002593,-0.002500,0.249988,0,0);-ms-transform:matrix(0.259287,0.002593,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.259287,0.002593,-0.002500,0.249988,0,0);}
.m29_c00371{transform:matrix(0.261802,0.001309,-0.001250,0.249997,0,0);-ms-transform:matrix(0.261802,0.001309,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.261802,0.001309,-0.001250,0.249997,0,0);}
.m8e_c00371{transform:matrix(0.262413,0.004986,-0.004749,0.249955,0,0);-ms-transform:matrix(0.262413,0.004986,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.262413,0.004986,-0.004749,0.249955,0,0);}
.m27_c00371{transform:matrix(0.262847,0.001314,-0.001250,0.249997,0,0);-ms-transform:matrix(0.262847,0.001314,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.262847,0.001314,-0.001250,0.249997,0,0);}
.me_c00371{transform:matrix(0.263941,0.007918,-0.007497,0.249888,0,0);-ms-transform:matrix(0.263941,0.007918,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.263941,0.007918,-0.007497,0.249888,0,0);}
.mab_c00371{transform:matrix(0.264063,0.003433,-0.003250,0.249979,0,0);-ms-transform:matrix(0.264063,0.003433,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.264063,0.003433,-0.003250,0.249979,0,0);}
.ma8_c00371{transform:matrix(0.264253,0.003435,-0.003250,0.249979,0,0);-ms-transform:matrix(0.264253,0.003435,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.264253,0.003435,-0.003250,0.249979,0,0);}
.mb0_c00371{transform:matrix(0.272617,0.003544,-0.003250,0.249979,0,0);-ms-transform:matrix(0.272617,0.003544,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.272617,0.003544,-0.003250,0.249979,0,0);}
.m5a_c00371{transform:matrix(0.272764,0.008456,-0.007746,0.249880,0,0);-ms-transform:matrix(0.272764,0.008456,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.272764,0.008456,-0.007746,0.249880,0,0);}
.m73_c00371{transform:matrix(0.273659,0.008483,-0.007746,0.249880,0,0);-ms-transform:matrix(0.273659,0.008483,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.273659,0.008483,-0.007746,0.249880,0,0);}
.m6e_c00371{transform:matrix(0.275003,0.008525,-0.007746,0.249880,0,0);-ms-transform:matrix(0.275003,0.008525,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.275003,0.008525,-0.007746,0.249880,0,0);}
.mc1_c00371{transform:matrix(0.275882,0.008552,-0.007746,0.249880,0,0);-ms-transform:matrix(0.275882,0.008552,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.275882,0.008552,-0.007746,0.249880,0,0);}
.m92_c00371{transform:matrix(0.276200,0.005248,-0.004749,0.249955,0,0);-ms-transform:matrix(0.276200,0.005248,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.276200,0.005248,-0.004749,0.249955,0,0);}
.m99_c00371{transform:matrix(0.276300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276300,0.000000,0.000000,0.250000,0,0);}
.m1e_c00371{transform:matrix(0.276382,0.001382,-0.001250,0.249997,0,0);-ms-transform:matrix(0.276382,0.001382,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.276382,0.001382,-0.001250,0.249997,0,0);}
.m57_c00371{transform:matrix(0.278311,0.008628,-0.007746,0.249880,0,0);-ms-transform:matrix(0.278311,0.008628,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.278311,0.008628,-0.007746,0.249880,0,0);}
.m58_c00371{transform:matrix(0.278886,0.008645,-0.007746,0.249880,0,0);-ms-transform:matrix(0.278886,0.008645,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.278886,0.008645,-0.007746,0.249880,0,0);}
.m14_c00371{transform:matrix(0.280099,0.008403,-0.007497,0.249888,0,0);-ms-transform:matrix(0.280099,0.008403,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.280099,0.008403,-0.007497,0.249888,0,0);}
.m1d_c00371{transform:matrix(0.281086,0.001405,-0.001250,0.249997,0,0);-ms-transform:matrix(0.281086,0.001405,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.281086,0.001405,-0.001250,0.249997,0,0);}
.m8_c00371{transform:matrix(0.282473,0.008474,-0.007497,0.249888,0,0);-ms-transform:matrix(0.282473,0.008474,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.282473,0.008474,-0.007497,0.249888,0,0);}
.mc7_c00371{transform:matrix(0.282659,0.008762,-0.007746,0.249880,0,0);-ms-transform:matrix(0.282659,0.008762,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.282659,0.008762,-0.007746,0.249880,0,0);}
.mf_c00371{transform:matrix(0.283522,0.008506,-0.007497,0.249888,0,0);-ms-transform:matrix(0.283522,0.008506,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.283522,0.008506,-0.007497,0.249888,0,0);}
.mce_c00371{transform:matrix(0.283719,0.008795,-0.007746,0.249880,0,0);-ms-transform:matrix(0.283719,0.008795,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.283719,0.008795,-0.007746,0.249880,0,0);}
.m80_c00371{transform:matrix(0.284089,0.008807,-0.007746,0.249880,0,0);-ms-transform:matrix(0.284089,0.008807,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.284089,0.008807,-0.007746,0.249880,0,0);}
.m12_c00371{transform:matrix(0.284827,0.008545,-0.007497,0.249888,0,0);-ms-transform:matrix(0.284827,0.008545,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.284827,0.008545,-0.007497,0.249888,0,0);}
.ma5_c00371{transform:matrix(0.290245,0.003773,-0.003250,0.249979,0,0);-ms-transform:matrix(0.290245,0.003773,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.290245,0.003773,-0.003250,0.249979,0,0);}
.m2e_c00371{transform:matrix(0.291941,0.001460,-0.001250,0.249997,0,0);-ms-transform:matrix(0.291941,0.001460,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.291941,0.001460,-0.001250,0.249997,0,0);}
.m53_c00371{transform:matrix(0.293350,0.002934,-0.002500,0.249988,0,0);-ms-transform:matrix(0.293350,0.002934,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.293350,0.002934,-0.002500,0.249988,0,0);}
.m83_c00371{transform:matrix(0.293552,0.005577,-0.004749,0.249955,0,0);-ms-transform:matrix(0.293552,0.005577,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.293552,0.005577,-0.004749,0.249955,0,0);}
.m30_c00371{transform:matrix(0.294181,0.001471,-0.001250,0.249997,0,0);-ms-transform:matrix(0.294181,0.001471,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.294181,0.001471,-0.001250,0.249997,0,0);}
.mb2_c00371{transform:matrix(0.294490,0.003828,-0.003250,0.249979,0,0);-ms-transform:matrix(0.294490,0.003828,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.294490,0.003828,-0.003250,0.249979,0,0);}
.m7c_c00371{transform:matrix(0.295278,0.009154,-0.007746,0.249880,0,0);-ms-transform:matrix(0.295278,0.009154,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.295278,0.009154,-0.007746,0.249880,0,0);}
.m11_c00371{transform:matrix(0.296157,0.008885,-0.007497,0.249888,0,0);-ms-transform:matrix(0.296157,0.008885,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.296157,0.008885,-0.007497,0.249888,0,0);}
.m56_c00371{transform:matrix(0.297290,0.002973,-0.002500,0.249988,0,0);-ms-transform:matrix(0.297290,0.002973,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.297290,0.002973,-0.002500,0.249988,0,0);}
.m55_c00371{transform:matrix(0.298420,0.002984,-0.002500,0.249988,0,0);-ms-transform:matrix(0.298420,0.002984,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.298420,0.002984,-0.002500,0.249988,0,0);}
.mac_c00371{transform:matrix(0.300165,0.003902,-0.003250,0.249979,0,0);-ms-transform:matrix(0.300165,0.003902,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.300165,0.003902,-0.003250,0.249979,0,0);}
.m48_c00371{transform:matrix(0.300290,0.003003,-0.002500,0.249988,0,0);-ms-transform:matrix(0.300290,0.003003,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.300290,0.003003,-0.002500,0.249988,0,0);}
.m15_c00371{transform:matrix(0.305448,0.009163,-0.007497,0.249888,0,0);-ms-transform:matrix(0.305448,0.009163,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.305448,0.009163,-0.007497,0.249888,0,0);}
.mcc_c00371{transform:matrix(0.309391,0.009591,-0.007746,0.249880,0,0);-ms-transform:matrix(0.309391,0.009591,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.309391,0.009591,-0.007746,0.249880,0,0);}
.m2c_c00371{transform:matrix(0.310976,0.001555,-0.001250,0.249997,0,0);-ms-transform:matrix(0.310976,0.001555,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.310976,0.001555,-0.001250,0.249997,0,0);}
.m28_c00371{transform:matrix(0.314181,0.001571,-0.001250,0.249997,0,0);-ms-transform:matrix(0.314181,0.001571,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.314181,0.001571,-0.001250,0.249997,0,0);}
.m10_c00371{transform:matrix(0.317477,0.009524,-0.007497,0.249888,0,0);-ms-transform:matrix(0.317477,0.009524,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.317477,0.009524,-0.007497,0.249888,0,0);}
.m9e_c00371{transform:matrix(0.318108,0.004135,-0.003250,0.249979,0,0);-ms-transform:matrix(0.318108,0.004135,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.318108,0.004135,-0.003250,0.249979,0,0);}
.ma9_c00371{transform:matrix(0.319093,0.004148,-0.003250,0.249979,0,0);-ms-transform:matrix(0.319093,0.004148,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.319093,0.004148,-0.003250,0.249979,0,0);}
.mc_c00371{transform:matrix(0.323539,0.009706,-0.007497,0.249888,0,0);-ms-transform:matrix(0.323539,0.009706,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.323539,0.009706,-0.007497,0.249888,0,0);}
.m54_c00371{transform:matrix(0.326419,0.003264,-0.002500,0.249988,0,0);-ms-transform:matrix(0.326419,0.003264,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.326419,0.003264,-0.002500,0.249988,0,0);}
.mb5_c00371{transform:matrix(0.327017,0.004251,-0.003250,0.249979,0,0);-ms-transform:matrix(0.327017,0.004251,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.327017,0.004251,-0.003250,0.249979,0,0);}
.m81_c00371{transform:matrix(0.328202,0.010174,-0.007746,0.249880,0,0);-ms-transform:matrix(0.328202,0.010174,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.328202,0.010174,-0.007746,0.249880,0,0);}
.m3b_c00371{transform:matrix(0.333818,0.003338,-0.002500,0.249988,0,0);-ms-transform:matrix(0.333818,0.003338,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.333818,0.003338,-0.002500,0.249988,0,0);}
.m13_c00371{transform:matrix(0.333885,0.010017,-0.007497,0.249888,0,0);-ms-transform:matrix(0.333885,0.010017,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.333885,0.010017,-0.007497,0.249888,0,0);}
.m51_c00371{transform:matrix(0.337333,0.003373,-0.002500,0.249988,0,0);-ms-transform:matrix(0.337333,0.003373,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.337333,0.003373,-0.002500,0.249988,0,0);}
.mdd_c00371{transform:matrix(0.339797,0.009854,-0.007247,0.249895,0,0);-ms-transform:matrix(0.339797,0.009854,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.339797,0.009854,-0.007247,0.249895,0,0);}
.m5c_c00371{transform:matrix(0.340252,0.010548,-0.007746,0.249880,0,0);-ms-transform:matrix(0.340252,0.010548,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.340252,0.010548,-0.007746,0.249880,0,0);}
.m52_c00371{transform:matrix(0.344093,0.003441,-0.002500,0.249988,0,0);-ms-transform:matrix(0.344093,0.003441,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.344093,0.003441,-0.002500,0.249988,0,0);}
.m2d_c00371{transform:matrix(0.347361,0.001737,-0.001250,0.249997,0,0);-ms-transform:matrix(0.347361,0.001737,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.347361,0.001737,-0.001250,0.249997,0,0);}
.m6d_c00371{transform:matrix(0.347863,0.010784,-0.007746,0.249880,0,0);-ms-transform:matrix(0.347863,0.010784,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.347863,0.010784,-0.007746,0.249880,0,0);}
.m26_c00371{transform:matrix(0.347936,0.001740,-0.001250,0.249997,0,0);-ms-transform:matrix(0.347936,0.001740,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.347936,0.001740,-0.001250,0.249997,0,0);}
.m4e_c00371{transform:matrix(0.354342,0.003543,-0.002500,0.249988,0,0);-ms-transform:matrix(0.354342,0.003543,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.354342,0.003543,-0.002500,0.249988,0,0);}
.mb9_c00371{transform:matrix(0.361030,0.005054,-0.003500,0.249976,0,0);-ms-transform:matrix(0.361030,0.005054,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.361030,0.005054,-0.003500,0.249976,0,0);}
.ma7_c00371{transform:matrix(0.361419,0.004698,-0.003250,0.249979,0,0);-ms-transform:matrix(0.361419,0.004698,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.361419,0.004698,-0.003250,0.249979,0,0);}
.md0_c00371{transform:matrix(0.364050,0.011286,-0.007746,0.249880,0,0);-ms-transform:matrix(0.364050,0.011286,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.364050,0.011286,-0.007746,0.249880,0,0);}
.m4c_c00371{transform:matrix(0.364927,0.003649,-0.002500,0.249988,0,0);-ms-transform:matrix(0.364927,0.003649,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.364927,0.003649,-0.002500,0.249988,0,0);}
.mc5_c00371{transform:matrix(0.365904,0.011343,-0.007746,0.249880,0,0);-ms-transform:matrix(0.365904,0.011343,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.365904,0.011343,-0.007746,0.249880,0,0);}
.m93_c00371{transform:matrix(0.375832,0.007141,-0.004749,0.249955,0,0);-ms-transform:matrix(0.375832,0.007141,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.375832,0.007141,-0.004749,0.249955,0,0);}
.m96_c00371{transform:matrix(0.381030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381030,0.000000,0.000000,0.250000,0,0);}
.m94_c00371{transform:matrix(0.387125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387125,0.000000,0.000000,0.250000,0,0);}
.mb1_c00371{transform:matrix(0.393222,0.005112,-0.003250,0.249979,0,0);-ms-transform:matrix(0.393222,0.005112,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.393222,0.005112,-0.003250,0.249979,0,0);}
.m1f_c00371{transform:matrix(0.402040,0.002010,-0.001250,0.249997,0,0);-ms-transform:matrix(0.402040,0.002010,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.402040,0.002010,-0.001250,0.249997,0,0);}
.m7e_c00371{transform:matrix(0.402362,0.012473,-0.007746,0.249880,0,0);-ms-transform:matrix(0.402362,0.012473,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.402362,0.012473,-0.007746,0.249880,0,0);}
.mb8_c00371{transform:matrix(0.415959,0.005823,-0.003500,0.249976,0,0);-ms-transform:matrix(0.415959,0.005823,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.415959,0.005823,-0.003500,0.249976,0,0);}
.m4d_c00371{transform:matrix(0.421829,0.004218,-0.002500,0.249988,0,0);-ms-transform:matrix(0.421829,0.004218,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.421829,0.004218,-0.002500,0.249988,0,0);}
.m25_c00371{transform:matrix(0.434815,0.002174,-0.001250,0.249997,0,0);-ms-transform:matrix(0.434815,0.002174,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.434815,0.002174,-0.001250,0.249997,0,0);}
.m87_c00371{transform:matrix(0.435721,0.008279,-0.004749,0.249955,0,0);-ms-transform:matrix(0.435721,0.008279,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.435721,0.008279,-0.004749,0.249955,0,0);}
.mc0_c00371{transform:matrix(0.440948,0.013669,-0.007746,0.249880,0,0);-ms-transform:matrix(0.440948,0.013669,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.440948,0.013669,-0.007746,0.249880,0,0);}
.m50_c00371{transform:matrix(0.448238,0.004482,-0.002500,0.249988,0,0);-ms-transform:matrix(0.448238,0.004482,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.448238,0.004482,-0.002500,0.249988,0,0);}
.mb7_c00371{transform:matrix(0.480694,0.006249,-0.003250,0.249979,0,0);-ms-transform:matrix(0.480694,0.006249,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.480694,0.006249,-0.003250,0.249979,0,0);}
.m9c_c00371{transform:matrix(0.505515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505515,0.000000,0.000000,0.250000,0,0);}
.md6_c00371{transform:matrix(0.505677,0.015676,-0.007746,0.249880,0,0);-ms-transform:matrix(0.505677,0.015676,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.505677,0.015676,-0.007746,0.249880,0,0);}
.m22_c00371{transform:matrix(0.559413,0.002797,-0.001250,0.249997,0,0);-ms-transform:matrix(0.559413,0.002797,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.559413,0.002797,-0.001250,0.249997,0,0);}
.mc4_c00371{transform:matrix(0.560201,0.017366,-0.007746,0.249880,0,0);-ms-transform:matrix(0.560201,0.017366,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.560201,0.017366,-0.007746,0.249880,0,0);}
.m98_c00371{transform:matrix(0.601525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.601525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.601525,0.000000,0.000000,0.250000,0,0);}
.m5d_c00371{transform:matrix(0.617149,0.019132,-0.007746,0.249880,0,0);-ms-transform:matrix(0.617149,0.019132,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.617149,0.019132,-0.007746,0.249880,0,0);}
.mb6_c00371{transform:matrix(0.652305,0.008480,-0.003250,0.249979,0,0);-ms-transform:matrix(0.652305,0.008480,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.652305,0.008480,-0.003250,0.249979,0,0);}
.m5e_c00371{transform:matrix(0.904620,0.028043,-0.007746,0.249880,0,0);-ms-transform:matrix(0.904620,0.028043,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.904620,0.028043,-0.007746,0.249880,0,0);}
.maa_c00371{transform:matrix(0.905943,0.011777,-0.003250,0.249979,0,0);-ms-transform:matrix(0.905943,0.011777,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.905943,0.011777,-0.003250,0.249979,0,0);}
.m97_c00371{transform:matrix(1.049240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.049240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.049240,0.000000,0.000000,0.250000,0,0);}
.m41_c00371{transform:matrix(1.201865,0.012019,-0.002500,0.249988,0,0);-ms-transform:matrix(1.201865,0.012019,-0.002500,0.249988,0,0);-webkit-transform:matrix(1.201865,0.012019,-0.002500,0.249988,0,0);}
.m7d_c00371{transform:matrix(1.789935,0.055488,-0.007746,0.249880,0,0);-ms-transform:matrix(1.789935,0.055488,-0.007746,0.249880,0,0);-webkit-transform:matrix(1.789935,0.055488,-0.007746,0.249880,0,0);}
.v0_c00371{vertical-align:0.000000px;}
.ls0_c00371{letter-spacing:0.000000px;}
.sc__c00371{text-shadow:none;}
.sc0_c00371{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__c00371{-webkit-text-stroke:0px transparent;}
.sc0_c00371{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00371{word-spacing:0.000000px;}
._0_c00371{width:1134.139908px;}
.fc0_c00371{color:transparent;}
.fsf_c00371{font-size:24.000000px;}
.fsd_c00371{font-size:48.000000px;}
.fs1_c00371{font-size:54.006075px;}
.fs7_c00371{font-size:60.003000px;}
.fs4_c00371{font-size:72.000900px;}
.fs11_c00371{font-size:78.007644px;}
.fsc_c00371{font-size:78.014078px;}
.fse_c00371{font-size:84.000000px;}
.fs10_c00371{font-size:84.007098px;}
.fs2_c00371{font-size:84.037791px;}
.fs8_c00371{font-size:84.040352px;}
.fs3_c00371{font-size:90.001125px;}
.fsa_c00371{font-size:90.043235px;}
.fs6_c00371{font-size:96.004800px;}
.fsb_c00371{font-size:96.017326px;}
.fs16_c00371{font-size:96.032443px;}
.fs13_c00371{font-size:96.046117px;}
.fs5_c00371{font-size:102.005100px;}
.fs0_c00371{font-size:102.011474px;}
.fs15_c00371{font-size:102.042882px;}
.fs12_c00371{font-size:114.054764px;}
.fs9_c00371{font-size:120.057646px;}
.fs14_c00371{font-size:132.063411px;}
.y0_c00371{bottom:0.000000px;}
.ydd_c00371{bottom:423.575778px;}
.ydc_c00371{bottom:424.439511px;}
.ydb_c00371{bottom:426.359598px;}
.yda_c00371{bottom:427.220211px;}
.yd9_c00371{bottom:428.563488px;}
.yd8_c00371{bottom:429.882000px;}
.yd7_c00371{bottom:456.103324px;}
.yd6_c00371{bottom:458.314777px;}
.yd5_c00371{bottom:459.199437px;}
.yd4_c00371{bottom:460.158960px;}
.yd3_c00371{bottom:463.396404px;}
.yd2_c00371{bottom:464.850000px;}
.yd1_c00371{bottom:485.906839px;}
.yd0_c00371{bottom:490.861889px;}
.ycf_c00371{bottom:493.437496px;}
.yce_c00371{bottom:496.935441px;}
.ycd_c00371{bottom:498.002688px;}
.ycc_c00371{bottom:500.082472px;}
.ycb_c00371{bottom:501.209950px;}
.yca_c00371{bottom:504.013893px;}
.yc9_c00371{bottom:520.725312px;}
.yc8_c00371{bottom:522.905507px;}
.yc7_c00371{bottom:526.073353px;}
.yc6_c00371{bottom:526.812799px;}
.yc5_c00371{bottom:529.516134px;}
.yc4_c00371{bottom:530.738112px;}
.yc3_c00371{bottom:533.763429px;}
.yc2_c00371{bottom:555.460912px;}
.yc1_c00371{bottom:560.315452px;}
.yc0_c00371{bottom:562.871094px;}
.ybf_c00371{bottom:563.836955px;}
.ybe_c00371{bottom:565.464318px;}
.ybd_c00371{bottom:565.920273px;}
.ybc_c00371{bottom:587.137539px;}
.ybb_c00371{bottom:590.388540px;}
.yba_c00371{bottom:592.176000px;}
.yb1_c00371{bottom:668.086253px;}
.yaa_c00371{bottom:668.086674px;}
.yb0_c00371{bottom:668.086815px;}
.yac_c00371{bottom:668.086849px;}
.yab_c00371{bottom:668.086962px;}
.ya9_c00371{bottom:668.087037px;}
.yae_c00371{bottom:668.087077px;}
.ya7_c00371{bottom:668.087330px;}
.yaf_c00371{bottom:668.087406px;}
.yad_c00371{bottom:668.087578px;}
.ya8_c00371{bottom:668.087698px;}
.ya6_c00371{bottom:668.087991px;}
.ya5_c00371{bottom:668.088272px;}
.ya4_c00371{bottom:707.901938px;}
.ya3_c00371{bottom:708.227373px;}
.ya2_c00371{bottom:708.661658px;}
.ya1_c00371{bottom:709.530558px;}
.ya0_c00371{bottom:709.955560px;}
.y9f_c00371{bottom:710.672224px;}
.y9e_c00371{bottom:711.097773px;}
.y9d_c00371{bottom:712.111851px;}
.y9c_c00371{bottom:712.546779px;}
.y9b_c00371{bottom:712.972191px;}
.y9a_c00371{bottom:714.425292px;}
.y99_c00371{bottom:714.843216px;}
.y98_c00371{bottom:715.504500px;}
.y97_c00371{bottom:736.020000px;}
.y96_c00371{bottom:739.797000px;}
.yb9_c00371{bottom:744.483966px;}
.yb8_c00371{bottom:745.404312px;}
.yb7_c00371{bottom:746.326443px;}
.yb6_c00371{bottom:746.602362px;}
.yb5_c00371{bottom:747.116022px;}
.yb4_c00371{bottom:748.190172px;}
.yb3_c00371{bottom:748.658514px;}
.yb2_c00371{bottom:750.027000px;}
.y95_c00371{bottom:775.672500px;}
.y94_c00371{bottom:811.636142px;}
.y93_c00371{bottom:812.242907px;}
.y92_c00371{bottom:813.650521px;}
.y91_c00371{bottom:814.288437px;}
.y90_c00371{bottom:815.351031px;}
.y8f_c00371{bottom:815.822136px;}
.y8e_c00371{bottom:818.271426px;}
.y8d_c00371{bottom:818.686586px;}
.y8c_c00371{bottom:819.333251px;}
.y8b_c00371{bottom:820.140371px;}
.y8a_c00371{bottom:821.162666px;}
.y89_c00371{bottom:822.694940px;}
.y88_c00371{bottom:824.080182px;}
.y87_c00371{bottom:846.320825px;}
.y86_c00371{bottom:847.144702px;}
.y85_c00371{bottom:848.221033px;}
.y84_c00371{bottom:849.029094px;}
.y83_c00371{bottom:849.619500px;}
.y82_c00371{bottom:855.018861px;}
.y81_c00371{bottom:855.514791px;}
.y80_c00371{bottom:857.795613px;}
.y7f_c00371{bottom:858.805266px;}
.y7e_c00371{bottom:861.814932px;}
.y7d_c00371{bottom:886.267407px;}
.y7c_c00371{bottom:886.569171px;}
.y7b_c00371{bottom:887.008024px;}
.y7a_c00371{bottom:887.900931px;}
.y79_c00371{bottom:888.158424px;}
.y78_c00371{bottom:888.955259px;}
.y77_c00371{bottom:889.592868px;}
.y76_c00371{bottom:890.083023px;}
.y75_c00371{bottom:890.440539px;}
.y74_c00371{bottom:890.930775px;}
.y73_c00371{bottom:891.168561px;}
.y72_c00371{bottom:892.021681px;}
.y71_c00371{bottom:892.280173px;}
.y70_c00371{bottom:892.641558px;}
.y6f_c00371{bottom:892.977891px;}
.y6e_c00371{bottom:893.386998px;}
.y6d_c00371{bottom:894.210220px;}
.y6c_c00371{bottom:919.565934px;}
.y6b_c00371{bottom:920.956406px;}
.y6a_c00371{bottom:921.419207px;}
.y69_c00371{bottom:922.186539px;}
.y68_c00371{bottom:923.302512px;}
.y67_c00371{bottom:923.749262px;}
.y66_c00371{bottom:924.551730px;}
.y65_c00371{bottom:925.520220px;}
.y64_c00371{bottom:926.306869px;}
.y63_c00371{bottom:926.910388px;}
.y62_c00371{bottom:927.717157px;}
.y61_c00371{bottom:928.924533px;}
.y60_c00371{bottom:929.710729px;}
.y5f_c00371{bottom:931.762834px;}
.y5e_c00371{bottom:951.308054px;}
.y5d_c00371{bottom:952.717515px;}
.y5c_c00371{bottom:953.920145px;}
.y5b_c00371{bottom:955.083342px;}
.y5a_c00371{bottom:955.611163px;}
.y59_c00371{bottom:957.407505px;}
.y58_c00371{bottom:959.055000px;}
.y57_c00371{bottom:963.361335px;}
.y56_c00371{bottom:963.744585px;}
.y55_c00371{bottom:964.460010px;}
.y54_c00371{bottom:964.932840px;}
.y53_c00371{bottom:966.262080px;}
.y52_c00371{bottom:966.636645px;}
.y51_c00371{bottom:967.630680px;}
.y50_c00371{bottom:967.988430px;}
.y4f_c00371{bottom:968.153760px;}
.y4e_c00371{bottom:968.486850px;}
.y4d_c00371{bottom:992.161980px;}
.y4c_c00371{bottom:993.065925px;}
.y4b_c00371{bottom:994.089300px;}
.y4a_c00371{bottom:994.678530px;}
.y49_c00371{bottom:995.626275px;}
.y48_c00371{bottom:997.453620px;}
.y47_c00371{bottom:998.498895px;}
.y46_c00371{bottom:999.030540px;}
.y45_c00371{bottom:999.565995px;}
.y44_c00371{bottom:1001.152935px;}
.y43_c00371{bottom:1001.895885px;}
.y42_c00371{bottom:1003.863630px;}
.y41_c00371{bottom:1024.254750px;}
.y40_c00371{bottom:1024.432620px;}
.y3f_c00371{bottom:1024.922235px;}
.y3e_c00371{bottom:1025.126475px;}
.y3d_c00371{bottom:1025.437710px;}
.y3c_c00371{bottom:1025.804790px;}
.y3b_c00371{bottom:1026.020400px;}
.y3a_c00371{bottom:1026.696045px;}
.y39_c00371{bottom:1026.992685px;}
.y38_c00371{bottom:1027.524795px;}
.y37_c00371{bottom:1027.886685px;}
.y36_c00371{bottom:1028.342955px;}
.y35_c00371{bottom:1028.988675px;}
.y34_c00371{bottom:1029.209490px;}
.y33_c00371{bottom:1030.473465px;}
.y32_c00371{bottom:1031.134500px;}
.y31_c00371{bottom:1064.213940px;}
.y30_c00371{bottom:1064.518050px;}
.y2f_c00371{bottom:1066.477852px;}
.y2e_c00371{bottom:1067.125957px;}
.y2d_c00371{bottom:1067.785110px;}
.y2c_c00371{bottom:1068.277860px;}
.y2b_c00371{bottom:1070.096153px;}
.y2a_c00371{bottom:1070.406945px;}
.y29_c00371{bottom:1072.242757px;}
.y28_c00371{bottom:1072.593802px;}
.y27_c00371{bottom:1073.262037px;}
.y26_c00371{bottom:1074.333232px;}
.y25_c00371{bottom:1105.429868px;}
.y24_c00371{bottom:1105.548345px;}
.y23_c00371{bottom:1105.836368px;}
.y22_c00371{bottom:1106.262862px;}
.y21_c00371{bottom:1106.532682px;}
.y20_c00371{bottom:1106.650207px;}
.y1f_c00371{bottom:1106.819062px;}
.y1e_c00371{bottom:1107.028155px;}
.y1d_c00371{bottom:1107.191745px;}
.y1c_c00371{bottom:1107.522307px;}
.y1b_c00371{bottom:1107.686962px;}
.y1a_c00371{bottom:1108.020495px;}
.y19_c00371{bottom:1108.465987px;}
.y18_c00371{bottom:1108.746712px;}
.y17_c00371{bottom:1109.160000px;}
.y16_c00371{bottom:1134.104820px;}
.y15_c00371{bottom:1136.223645px;}
.y14_c00371{bottom:1138.114725px;}
.y13_c00371{bottom:1139.746785px;}
.y12_c00371{bottom:1140.400635px;}
.y11_c00371{bottom:1141.469340px;}
.y7_c00371{bottom:1142.499622px;}
.y10_c00371{bottom:1143.056625px;}
.yf_c00371{bottom:1143.681090px;}
.y6_c00371{bottom:1144.404458px;}
.ye_c00371{bottom:1145.647275px;}
.yd_c00371{bottom:1146.673320px;}
.yc_c00371{bottom:1147.361505px;}
.yb_c00371{bottom:1148.665245px;}
.ya_c00371{bottom:1149.361035px;}
.y9_c00371{bottom:1151.038680px;}
.y8_c00371{bottom:1153.086000px;}
.y5_c00371{bottom:1154.516213px;}
.y4_c00371{bottom:1190.270310px;}
.y3_c00371{bottom:1195.748250px;}
.y2_c00371{bottom:1196.406533px;}
.y1_c00371{bottom:1203.126000px;}
.h11_c00371{height:24.000000px;}
.hf_c00371{height:48.000000px;}
.h3_c00371{height:54.006075px;}
.h9_c00371{height:60.003000px;}
.h6_c00371{height:72.000900px;}
.h13_c00371{height:78.007644px;}
.he_c00371{height:78.014078px;}
.h10_c00371{height:84.000000px;}
.h12_c00371{height:84.007098px;}
.h4_c00371{height:84.037791px;}
.ha_c00371{height:84.040352px;}
.h5_c00371{height:90.001125px;}
.hc_c00371{height:90.043235px;}
.h8_c00371{height:96.004800px;}
.hd_c00371{height:96.017326px;}
.h18_c00371{height:96.032443px;}
.h15_c00371{height:96.046117px;}
.h7_c00371{height:102.005100px;}
.h2_c00371{height:102.011474px;}
.h17_c00371{height:102.042882px;}
.h14_c00371{height:114.054764px;}
.hb_c00371{height:120.057646px;}
.h16_c00371{height:132.063411px;}
.h0_c00371{height:1251.450000px;}
.h1_c00371{height:1251.750000px;}
.w0_c00371{width:915.000000px;}
.x0_c00371{left:0.000000px;}
.x1_c00371{left:1.168500px;}
.x6_c00371{left:2.841000px;}
.x51_c00371{left:3.891654px;}
.x20_c00371{left:10.485135px;}
.x3d_c00371{left:33.084420px;}
.x3e_c00371{left:48.117270px;}
.x60_c00371{left:58.724508px;}
.x27_c00371{left:67.540500px;}
.x8c_c00371{left:69.450000px;}
.x7_c00371{left:71.085000px;}
.x67_c00371{left:73.044421px;}
.x52_c00371{left:78.735515px;}
.x3f_c00371{left:80.591940px;}
.x15_c00371{left:82.563000px;}
.x76_c00371{left:93.640500px;}
.x80_c00371{left:96.119112px;}
.x48_c00371{left:114.258074px;}
.x53_c00371{left:115.955579px;}
.x81_c00371{left:117.721258px;}
.x33_c00371{left:124.818480px;}
.x8_c00371{left:127.006500px;}
.x16_c00371{left:138.708000px;}
.x77_c00371{left:144.508500px;}
.x54_c00371{left:146.517504px;}
.x9_c00371{left:150.199500px;}
.x49_c00371{left:157.927151px;}
.x9e_c00371{left:163.298351px;}
.x8d_c00371{left:167.199000px;}
.x34_c00371{left:171.210690px;}
.xa8_c00371{left:172.716000px;}
.x78_c00371{left:176.656500px;}
.x82_c00371{left:177.666879px;}
.x55_c00371{left:179.437418px;}
.xa_c00371{left:193.657500px;}
.x8e_c00371{left:200.652000px;}
.x56_c00371{left:202.984019px;}
.x40_c00371{left:205.000695px;}
.x83_c00371{left:209.259222px;}
.xb_c00371{left:216.597000px;}
.xa9_c00371{left:223.428000px;}
.x4a_c00371{left:225.014667px;}
.x68_c00371{left:226.597922px;}
.x17_c00371{left:227.806500px;}
.x9f_c00371{left:241.203807px;}
.xc_c00371{left:250.798500px;}
.x61_c00371{left:259.409972px;}
.x84_c00371{left:269.204842px;}
.x35_c00371{left:270.348735px;}
.x21_c00371{left:272.229548px;}
.xaa_c00371{left:275.092500px;}
.x8f_c00371{left:277.377000px;}
.x28_c00371{left:280.591500px;}
.x79_c00371{left:288.433500px;}
.x22_c00371{left:292.987013px;}
.x18_c00371{left:294.513000px;}
.x57_c00371{left:302.106899px;}
.x36_c00371{left:303.792225px;}
.xab_c00371{left:308.193000px;}
.x90_c00371{left:314.067000px;}
.xd_c00371{left:316.338000px;}
.x7a_c00371{left:321.157500px;}
.x69_c00371{left:322.882922px;}
.x29_c00371{left:326.218500px;}
.x19_c00371{left:327.444000px;}
.xa0_c00371{left:330.327543px;}
.x91_c00371{left:333.775500px;}
.xe_c00371{left:337.153500px;}
.xa5_c00371{left:340.023000px;}
.x4b_c00371{left:347.126364px;}
.x7b_c00371{left:354.613500px;}
.x6a_c00371{left:356.917922px;}
.xa1_c00371{left:359.959940px;}
.x2a_c00371{left:362.407500px;}
.x41_c00371{left:368.706045px;}
.xa6_c00371{left:373.110000px;}
.x85_c00371{left:376.673997px;}
.x58_c00371{left:379.146608px;}
.xac_c00371{left:382.042500px;}
.xf_c00371{left:390.063000px;}
.x1a_c00371{left:393.556500px;}
.x92_c00371{left:399.642000px;}
.x4c_c00371{left:400.938033px;}
.x37_c00371{left:402.378315px;}
.x98_c00371{left:404.108202px;}
.x94_c00371{left:410.764071px;}
.x23_c00371{left:414.239453px;}
.x2b_c00371{left:415.618500px;}
.x59_c00371{left:423.679182px;}
.x10_c00371{left:425.686500px;}
.x7c_c00371{left:432.619500px;}
.x42_c00371{left:433.797900px;}
.x99_c00371{left:435.438437px;}
.x2c_c00371{left:445.282500px;}
.x11_c00371{left:447.481500px;}
.x2_c00371{left:449.133000px;}
.x86_c00371{left:452.010731px;}
.xa2_c00371{left:457.104374px;}
.x7d_c00371{left:465.354000px;}
.x1b_c00371{left:468.093000px;}
.x4d_c00371{left:470.343980px;}
.x62_c00371{left:478.743642px;}
.xa7_c00371{left:479.872500px;}
.x5a_c00371{left:481.589534px;}
.x24_c00371{left:491.016113px;}
.x3_c00371{left:493.018500px;}
.x71_c00371{left:499.500000px;}
.x12_c00371{left:501.883500px;}
.x95_c00371{left:503.376674px;}
.x9a_c00371{left:504.770778px;}
.x6b_c00371{left:507.678422px;}
.x63_c00371{left:511.790010px;}
.x2d_c00371{left:512.847000px;}
.x38_c00371{left:516.555960px;}
.x7e_c00371{left:520.482000px;}
.x9b_c00371{left:523.732082px;}
.x1c_c00371{left:525.369000px;}
.xa3_c00371{left:528.661307px;}
.x72_c00371{left:530.820000px;}
.x4e_c00371{left:532.351950px;}
.x25_c00371{left:534.234953px;}
.x87_c00371{left:538.687875px;}
.x43_c00371{left:544.068000px;}
.x5b_c00371{left:553.983860px;}
.x6e_c00371{left:560.250000px;}
.x13_c00371{left:564.919500px;}
.x64_c00371{left:569.086500px;}
.x2e_c00371{left:571.116000px;}
.x88_c00371{left:574.060861px;}
.x39_c00371{left:575.776905px;}
.x5c_c00371{left:577.401368px;}
.x1d_c00371{left:579.333000px;}
.x6c_c00371{left:588.399422px;}
.x96_c00371{left:594.631637px;}
.x4f_c00371{left:600.657932px;}
.x2f_c00371{left:602.239500px;}
.x9c_c00371{left:604.948947px;}
.x73_c00371{left:608.850000px;}
.x3a_c00371{left:612.647700px;}
.x44_c00371{left:619.041000px;}
.x30_c00371{left:622.663500px;}
.x6f_c00371{left:634.500000px;}
.x14_c00371{left:635.547000px;}
.x65_c00371{left:642.690000px;}
.x89_c00371{left:648.855997px;}
.x7f_c00371{left:653.419500px;}
.x45_c00371{left:656.563500px;}
.x5d_c00371{left:658.513087px;}
.x9d_c00371{left:660.844590px;}
.x1e_c00371{left:664.632000px;}
.xa4_c00371{left:666.319010px;}
.x31_c00371{left:671.625000px;}
.x3b_c00371{left:676.581360px;}
.x50_c00371{left:677.865494px;}
.x26_c00371{left:685.209908px;}
.x32_c00371{left:689.412000px;}
.x70_c00371{left:691.470000px;}
.x8a_c00371{left:692.870427px;}
.x46_c00371{left:695.358000px;}
.x5e_c00371{left:698.436326px;}
.x74_c00371{left:709.020000px;}
.x5_c00371{left:722.119552px;}
.x75_c00371{left:724.410000px;}
.x5f_c00371{left:725.897345px;}
.x6d_c00371{left:727.993922px;}
.x3c_c00371{left:733.072470px;}
.x47_c00371{left:740.824500px;}
.x66_c00371{left:742.701000px;}
.x1f_c00371{left:745.932000px;}
.x97_c00371{left:767.987726px;}
.x8b_c00371{left:778.197338px;}
.x93_c00371{left:782.301000px;}
.x4_c00371{left:858.214500px;}
@media print{
.v0_c00371{vertical-align:0.000000pt;}
.ls0_c00371{letter-spacing:0.000000pt;}
.ws0_c00371{word-spacing:0.000000pt;}
._0_c00371{width:1008.124362pt;}
.fsf_c00371{font-size:21.333333pt;}
.fsd_c00371{font-size:42.666667pt;}
.fs1_c00371{font-size:48.005400pt;}
.fs7_c00371{font-size:53.336000pt;}
.fs4_c00371{font-size:64.000800pt;}
.fs11_c00371{font-size:69.340128pt;}
.fsc_c00371{font-size:69.345847pt;}
.fse_c00371{font-size:74.666667pt;}
.fs10_c00371{font-size:74.672976pt;}
.fs2_c00371{font-size:74.700259pt;}
.fs8_c00371{font-size:74.702535pt;}
.fs3_c00371{font-size:80.001000pt;}
.fsa_c00371{font-size:80.038431pt;}
.fs6_c00371{font-size:85.337600pt;}
.fsb_c00371{font-size:85.348735pt;}
.fs16_c00371{font-size:85.362171pt;}
.fs13_c00371{font-size:85.374326pt;}
.fs5_c00371{font-size:90.671200pt;}
.fs0_c00371{font-size:90.676866pt;}
.fs15_c00371{font-size:90.704784pt;}
.fs12_c00371{font-size:101.382012pt;}
.fs9_c00371{font-size:106.717908pt;}
.fs14_c00371{font-size:117.389698pt;}
.y0_c00371{bottom:0.000000pt;}
.ydd_c00371{bottom:376.511803pt;}
.ydc_c00371{bottom:377.279565pt;}
.ydb_c00371{bottom:378.986309pt;}
.yda_c00371{bottom:379.751299pt;}
.yd9_c00371{bottom:380.945323pt;}
.yd8_c00371{bottom:382.117333pt;}
.yd7_c00371{bottom:405.425177pt;}
.yd6_c00371{bottom:407.390913pt;}
.yd5_c00371{bottom:408.177277pt;}
.yd4_c00371{bottom:409.030187pt;}
.yd3_c00371{bottom:411.907915pt;}
.yd2_c00371{bottom:413.200000pt;}
.yd1_c00371{bottom:431.917191pt;}
.yd0_c00371{bottom:436.321679pt;}
.ycf_c00371{bottom:438.611108pt;}
.yce_c00371{bottom:441.720392pt;}
.ycd_c00371{bottom:442.669056pt;}
.ycc_c00371{bottom:444.517753pt;}
.ycb_c00371{bottom:445.519956pt;}
.yca_c00371{bottom:448.012349pt;}
.yc9_c00371{bottom:462.866944pt;}
.yc8_c00371{bottom:464.804895pt;}
.yc7_c00371{bottom:467.620759pt;}
.yc6_c00371{bottom:468.278044pt;}
.yc5_c00371{bottom:470.681008pt;}
.yc4_c00371{bottom:471.767211pt;}
.yc3_c00371{bottom:474.456381pt;}
.yc2_c00371{bottom:493.743033pt;}
.yc1_c00371{bottom:498.058180pt;}
.yc0_c00371{bottom:500.329861pt;}
.ybf_c00371{bottom:501.188404pt;}
.ybe_c00371{bottom:502.634949pt;}
.ybd_c00371{bottom:503.040243pt;}
.ybc_c00371{bottom:521.900035pt;}
.ybb_c00371{bottom:524.789813pt;}
.yba_c00371{bottom:526.378667pt;}
.yb1_c00371{bottom:593.854447pt;}
.yaa_c00371{bottom:593.854821pt;}
.yb0_c00371{bottom:593.854947pt;}
.yac_c00371{bottom:593.854977pt;}
.yab_c00371{bottom:593.855077pt;}
.ya9_c00371{bottom:593.855144pt;}
.yae_c00371{bottom:593.855180pt;}
.ya7_c00371{bottom:593.855404pt;}
.yaf_c00371{bottom:593.855472pt;}
.yad_c00371{bottom:593.855625pt;}
.ya8_c00371{bottom:593.855732pt;}
.ya6_c00371{bottom:593.855992pt;}
.ya5_c00371{bottom:593.856241pt;}
.ya4_c00371{bottom:629.246167pt;}
.ya3_c00371{bottom:629.535443pt;}
.ya2_c00371{bottom:629.921473pt;}
.ya1_c00371{bottom:630.693829pt;}
.ya0_c00371{bottom:631.071609pt;}
.y9f_c00371{bottom:631.708644pt;}
.y9e_c00371{bottom:632.086909pt;}
.y9d_c00371{bottom:632.988312pt;}
.y9c_c00371{bottom:633.374915pt;}
.y9b_c00371{bottom:633.753059pt;}
.y9a_c00371{bottom:635.044704pt;}
.y99_c00371{bottom:635.416192pt;}
.y98_c00371{bottom:636.004000pt;}
.y97_c00371{bottom:654.240000pt;}
.y96_c00371{bottom:657.597333pt;}
.yb9_c00371{bottom:661.763525pt;}
.yb8_c00371{bottom:662.581611pt;}
.yb7_c00371{bottom:663.401283pt;}
.yb6_c00371{bottom:663.646544pt;}
.yb5_c00371{bottom:664.103131pt;}
.yb4_c00371{bottom:665.057931pt;}
.yb3_c00371{bottom:665.474235pt;}
.yb2_c00371{bottom:666.690667pt;}
.y95_c00371{bottom:689.486667pt;}
.y94_c00371{bottom:721.454348pt;}
.y93_c00371{bottom:721.993695pt;}
.y92_c00371{bottom:723.244908pt;}
.y91_c00371{bottom:723.811944pt;}
.y90_c00371{bottom:724.756472pt;}
.y8f_c00371{bottom:725.175232pt;}
.y8e_c00371{bottom:727.352379pt;}
.y8d_c00371{bottom:727.721409pt;}
.y8c_c00371{bottom:728.296223pt;}
.y8b_c00371{bottom:729.013663pt;}
.y8a_c00371{bottom:729.922369pt;}
.y89_c00371{bottom:731.284391pt;}
.y88_c00371{bottom:732.515717pt;}
.y87_c00371{bottom:752.285177pt;}
.y86_c00371{bottom:753.017513pt;}
.y85_c00371{bottom:753.974252pt;}
.y84_c00371{bottom:754.692528pt;}
.y83_c00371{bottom:755.217333pt;}
.y82_c00371{bottom:760.016765pt;}
.y81_c00371{bottom:760.457592pt;}
.y80_c00371{bottom:762.484989pt;}
.y7f_c00371{bottom:763.382459pt;}
.y7e_c00371{bottom:766.057717pt;}
.y7d_c00371{bottom:787.793251pt;}
.y7c_c00371{bottom:788.061485pt;}
.y7b_c00371{bottom:788.451577pt;}
.y7a_c00371{bottom:789.245272pt;}
.y79_c00371{bottom:789.474155pt;}
.y78_c00371{bottom:790.182452pt;}
.y77_c00371{bottom:790.749216pt;}
.y76_c00371{bottom:791.184909pt;}
.y75_c00371{bottom:791.502701pt;}
.y74_c00371{bottom:791.938467pt;}
.y73_c00371{bottom:792.149832pt;}
.y72_c00371{bottom:792.908161pt;}
.y71_c00371{bottom:793.137932pt;}
.y70_c00371{bottom:793.459163pt;}
.y6f_c00371{bottom:793.758125pt;}
.y6e_c00371{bottom:794.121776pt;}
.y6d_c00371{bottom:794.853529pt;}
.y6c_c00371{bottom:817.391941pt;}
.y6b_c00371{bottom:818.627916pt;}
.y6a_c00371{bottom:819.039295pt;}
.y69_c00371{bottom:819.721368pt;}
.y68_c00371{bottom:820.713344pt;}
.y67_c00371{bottom:821.110455pt;}
.y66_c00371{bottom:821.823760pt;}
.y65_c00371{bottom:822.684640pt;}
.y64_c00371{bottom:823.383884pt;}
.y63_c00371{bottom:823.920345pt;}
.y62_c00371{bottom:824.637473pt;}
.y61_c00371{bottom:825.710696pt;}
.y60_c00371{bottom:826.409537pt;}
.y5f_c00371{bottom:828.233631pt;}
.y5e_c00371{bottom:845.607159pt;}
.y5d_c00371{bottom:846.860013pt;}
.y5c_c00371{bottom:847.929017pt;}
.y5b_c00371{bottom:848.962971pt;}
.y5a_c00371{bottom:849.432145pt;}
.y59_c00371{bottom:851.028893pt;}
.y58_c00371{bottom:852.493333pt;}
.y57_c00371{bottom:856.321187pt;}
.y56_c00371{bottom:856.661853pt;}
.y55_c00371{bottom:857.297787pt;}
.y54_c00371{bottom:857.718080pt;}
.y53_c00371{bottom:858.899627pt;}
.y52_c00371{bottom:859.232573pt;}
.y51_c00371{bottom:860.116160pt;}
.y50_c00371{bottom:860.434160pt;}
.y4f_c00371{bottom:860.581120pt;}
.y4e_c00371{bottom:860.877200pt;}
.y4d_c00371{bottom:881.921760pt;}
.y4c_c00371{bottom:882.725267pt;}
.y4b_c00371{bottom:883.634933pt;}
.y4a_c00371{bottom:884.158693pt;}
.y49_c00371{bottom:885.001133pt;}
.y48_c00371{bottom:886.625440pt;}
.y47_c00371{bottom:887.554573pt;}
.y46_c00371{bottom:888.027147pt;}
.y45_c00371{bottom:888.503107pt;}
.y44_c00371{bottom:889.913720pt;}
.y43_c00371{bottom:890.574120pt;}
.y42_c00371{bottom:892.323227pt;}
.y41_c00371{bottom:910.448667pt;}
.y40_c00371{bottom:910.606773pt;}
.y3f_c00371{bottom:911.041987pt;}
.y3e_c00371{bottom:911.223533pt;}
.y3d_c00371{bottom:911.500187pt;}
.y3c_c00371{bottom:911.826480pt;}
.y3b_c00371{bottom:912.018133pt;}
.y3a_c00371{bottom:912.618707pt;}
.y39_c00371{bottom:912.882387pt;}
.y38_c00371{bottom:913.355373pt;}
.y37_c00371{bottom:913.677053pt;}
.y36_c00371{bottom:914.082627pt;}
.y35_c00371{bottom:914.656600pt;}
.y34_c00371{bottom:914.852880pt;}
.y33_c00371{bottom:915.976413pt;}
.y32_c00371{bottom:916.564000pt;}
.y31_c00371{bottom:945.967947pt;}
.y30_c00371{bottom:946.238267pt;}
.y2f_c00371{bottom:947.980313pt;}
.y2e_c00371{bottom:948.556407pt;}
.y2d_c00371{bottom:949.142320pt;}
.y2c_c00371{bottom:949.580320pt;}
.y2b_c00371{bottom:951.196580pt;}
.y2a_c00371{bottom:951.472840pt;}
.y29_c00371{bottom:953.104673pt;}
.y28_c00371{bottom:953.416713pt;}
.y27_c00371{bottom:954.010700pt;}
.y26_c00371{bottom:954.962873pt;}
.y25_c00371{bottom:982.604327pt;}
.y24_c00371{bottom:982.709640pt;}
.y23_c00371{bottom:982.965660pt;}
.y22_c00371{bottom:983.344767pt;}
.y21_c00371{bottom:983.584607pt;}
.y20_c00371{bottom:983.689073pt;}
.y1f_c00371{bottom:983.839167pt;}
.y1e_c00371{bottom:984.025027pt;}
.y1d_c00371{bottom:984.170440pt;}
.y1c_c00371{bottom:984.464273pt;}
.y1b_c00371{bottom:984.610633pt;}
.y1a_c00371{bottom:984.907107pt;}
.y19_c00371{bottom:985.303100pt;}
.y18_c00371{bottom:985.552633pt;}
.y17_c00371{bottom:985.920000pt;}
.y16_c00371{bottom:1008.093173pt;}
.y15_c00371{bottom:1009.976573pt;}
.y14_c00371{bottom:1011.657533pt;}
.y13_c00371{bottom:1013.108253pt;}
.y12_c00371{bottom:1013.689453pt;}
.y11_c00371{bottom:1014.639413pt;}
.y7_c00371{bottom:1015.555220pt;}
.y10_c00371{bottom:1016.050333pt;}
.yf_c00371{bottom:1016.605413pt;}
.y6_c00371{bottom:1017.248407pt;}
.ye_c00371{bottom:1018.353133pt;}
.yd_c00371{bottom:1019.265173pt;}
.yc_c00371{bottom:1019.876893pt;}
.yb_c00371{bottom:1021.035773pt;}
.ya_c00371{bottom:1021.654253pt;}
.y9_c00371{bottom:1023.145493pt;}
.y8_c00371{bottom:1024.965333pt;}
.y5_c00371{bottom:1026.236633pt;}
.y4_c00371{bottom:1058.018053pt;}
.y3_c00371{bottom:1062.887333pt;}
.y2_c00371{bottom:1063.472473pt;}
.y1_c00371{bottom:1069.445333pt;}
.h11_c00371{height:21.333333pt;}
.hf_c00371{height:42.666667pt;}
.h3_c00371{height:48.005400pt;}
.h9_c00371{height:53.336000pt;}
.h6_c00371{height:64.000800pt;}
.h13_c00371{height:69.340128pt;}
.he_c00371{height:69.345847pt;}
.h10_c00371{height:74.666667pt;}
.h12_c00371{height:74.672976pt;}
.h4_c00371{height:74.700259pt;}
.ha_c00371{height:74.702535pt;}
.h5_c00371{height:80.001000pt;}
.hc_c00371{height:80.038431pt;}
.h8_c00371{height:85.337600pt;}
.hd_c00371{height:85.348735pt;}
.h18_c00371{height:85.362171pt;}
.h15_c00371{height:85.374326pt;}
.h7_c00371{height:90.671200pt;}
.h2_c00371{height:90.676866pt;}
.h17_c00371{height:90.704784pt;}
.h14_c00371{height:101.382012pt;}
.hb_c00371{height:106.717908pt;}
.h16_c00371{height:117.389698pt;}
.h0_c00371{height:1112.400000pt;}
.h1_c00371{height:1112.666667pt;}
.w0_c00371{width:813.333333pt;}
.x0_c00371{left:0.000000pt;}
.x1_c00371{left:1.038667pt;}
.x6_c00371{left:2.525333pt;}
.x51_c00371{left:3.459248pt;}
.x20_c00371{left:9.320120pt;}
.x3d_c00371{left:29.408373pt;}
.x3e_c00371{left:42.770907pt;}
.x60_c00371{left:52.199563pt;}
.x27_c00371{left:60.036000pt;}
.x8c_c00371{left:61.733333pt;}
.x7_c00371{left:63.186667pt;}
.x67_c00371{left:64.928375pt;}
.x52_c00371{left:69.987124pt;}
.x3f_c00371{left:71.637280pt;}
.x15_c00371{left:73.389333pt;}
.x76_c00371{left:83.236000pt;}
.x80_c00371{left:85.439211pt;}
.x48_c00371{left:101.562732pt;}
.x53_c00371{left:103.071625pt;}
.x81_c00371{left:104.641119pt;}
.x33_c00371{left:110.949760pt;}
.x8_c00371{left:112.894667pt;}
.x16_c00371{left:123.296000pt;}
.x77_c00371{left:128.452000pt;}
.x54_c00371{left:130.237781pt;}
.x9_c00371{left:133.510667pt;}
.x49_c00371{left:140.379689pt;}
.x9e_c00371{left:145.154089pt;}
.x8d_c00371{left:148.621333pt;}
.x34_c00371{left:152.187280pt;}
.xa8_c00371{left:153.525333pt;}
.x78_c00371{left:157.028000pt;}
.x82_c00371{left:157.926115pt;}
.x55_c00371{left:159.499927pt;}
.xa_c00371{left:172.140000pt;}
.x8e_c00371{left:178.357333pt;}
.x56_c00371{left:180.430239pt;}
.x40_c00371{left:182.222840pt;}
.x83_c00371{left:186.008197pt;}
.xb_c00371{left:192.530667pt;}
.xa9_c00371{left:198.602667pt;}
.x4a_c00371{left:200.013037pt;}
.x68_c00371{left:201.420375pt;}
.x17_c00371{left:202.494667pt;}
.x9f_c00371{left:214.403384pt;}
.xc_c00371{left:222.932000pt;}
.x61_c00371{left:230.586641pt;}
.x84_c00371{left:239.293193pt;}
.x35_c00371{left:240.309987pt;}
.x21_c00371{left:241.981820pt;}
.xaa_c00371{left:244.526667pt;}
.x8f_c00371{left:246.557333pt;}
.x28_c00371{left:249.414667pt;}
.x79_c00371{left:256.385333pt;}
.x22_c00371{left:260.432900pt;}
.x18_c00371{left:261.789333pt;}
.x57_c00371{left:268.539465pt;}
.x36_c00371{left:270.037533pt;}
.xab_c00371{left:273.949333pt;}
.x90_c00371{left:279.170667pt;}
.xd_c00371{left:281.189333pt;}
.x7a_c00371{left:285.473333pt;}
.x69_c00371{left:287.007041pt;}
.x29_c00371{left:289.972000pt;}
.x19_c00371{left:291.061333pt;}
.xa0_c00371{left:293.624483pt;}
.x91_c00371{left:296.689333pt;}
.xe_c00371{left:299.692000pt;}
.xa5_c00371{left:302.242667pt;}
.x4b_c00371{left:308.556768pt;}
.x7b_c00371{left:315.212000pt;}
.x6a_c00371{left:317.260375pt;}
.xa1_c00371{left:319.964391pt;}
.x2a_c00371{left:322.140000pt;}
.x41_c00371{left:327.738707pt;}
.xa6_c00371{left:331.653333pt;}
.x85_c00371{left:334.821331pt;}
.x58_c00371{left:337.019207pt;}
.xac_c00371{left:339.593333pt;}
.xf_c00371{left:346.722667pt;}
.x1a_c00371{left:349.828000pt;}
.x92_c00371{left:355.237333pt;}
.x4c_c00371{left:356.389363pt;}
.x37_c00371{left:357.669613pt;}
.x98_c00371{left:359.207291pt;}
.x94_c00371{left:365.123619pt;}
.x23_c00371{left:368.212847pt;}
.x2b_c00371{left:369.438667pt;}
.x59_c00371{left:376.603717pt;}
.x10_c00371{left:378.388000pt;}
.x7c_c00371{left:384.550667pt;}
.x42_c00371{left:385.598133pt;}
.x99_c00371{left:387.056388pt;}
.x2c_c00371{left:395.806667pt;}
.x11_c00371{left:397.761333pt;}
.x2_c00371{left:399.229333pt;}
.x86_c00371{left:401.787316pt;}
.xa2_c00371{left:406.314999pt;}
.x7d_c00371{left:413.648000pt;}
.x1b_c00371{left:416.082667pt;}
.x4d_c00371{left:418.083537pt;}
.x62_c00371{left:425.549904pt;}
.xa7_c00371{left:426.553333pt;}
.x5a_c00371{left:428.079585pt;}
.x24_c00371{left:436.458767pt;}
.x3_c00371{left:438.238667pt;}
.x71_c00371{left:444.000000pt;}
.x12_c00371{left:446.118667pt;}
.x95_c00371{left:447.445932pt;}
.x9a_c00371{left:448.685136pt;}
.x6b_c00371{left:451.269708pt;}
.x63_c00371{left:454.924453pt;}
.x2d_c00371{left:455.864000pt;}
.x38_c00371{left:459.160853pt;}
.x7e_c00371{left:462.650667pt;}
.x9b_c00371{left:465.539628pt;}
.x1c_c00371{left:466.994667pt;}
.xa3_c00371{left:469.921161pt;}
.x72_c00371{left:471.840000pt;}
.x4e_c00371{left:473.201733pt;}
.x25_c00371{left:474.875513pt;}
.x87_c00371{left:478.833667pt;}
.x43_c00371{left:483.616000pt;}
.x5b_c00371{left:492.430097pt;}
.x6e_c00371{left:498.000000pt;}
.x13_c00371{left:502.150667pt;}
.x64_c00371{left:505.854667pt;}
.x2e_c00371{left:507.658667pt;}
.x88_c00371{left:510.276321pt;}
.x39_c00371{left:511.801693pt;}
.x5c_c00371{left:513.245660pt;}
.x1d_c00371{left:514.962667pt;}
.x6c_c00371{left:523.021708pt;}
.x96_c00371{left:528.561455pt;}
.x4f_c00371{left:533.918161pt;}
.x2f_c00371{left:535.324000pt;}
.x9c_c00371{left:537.732397pt;}
.x73_c00371{left:541.200000pt;}
.x3a_c00371{left:544.575733pt;}
.x44_c00371{left:550.258667pt;}
.x30_c00371{left:553.478667pt;}
.x6f_c00371{left:564.000000pt;}
.x14_c00371{left:564.930667pt;}
.x65_c00371{left:571.280000pt;}
.x89_c00371{left:576.760887pt;}
.x7f_c00371{left:580.817333pt;}
.x45_c00371{left:583.612000pt;}
.x5d_c00371{left:585.344967pt;}
.x9d_c00371{left:587.417413pt;}
.x1e_c00371{left:590.784000pt;}
.xa4_c00371{left:592.283564pt;}
.x31_c00371{left:597.000000pt;}
.x3b_c00371{left:601.405653pt;}
.x50_c00371{left:602.547105pt;}
.x26_c00371{left:609.075473pt;}
.x32_c00371{left:612.810667pt;}
.x70_c00371{left:614.640000pt;}
.x8a_c00371{left:615.884824pt;}
.x46_c00371{left:618.096000pt;}
.x5e_c00371{left:620.832289pt;}
.x74_c00371{left:630.240000pt;}
.x5_c00371{left:641.884047pt;}
.x75_c00371{left:643.920000pt;}
.x5f_c00371{left:645.242084pt;}
.x6d_c00371{left:647.105708pt;}
.x3c_c00371{left:651.619973pt;}
.x47_c00371{left:658.510667pt;}
.x66_c00371{left:660.178667pt;}
.x1f_c00371{left:663.050667pt;}
.x97_c00371{left:682.655756pt;}
.x8b_c00371{left:691.730967pt;}
.x93_c00371{left:695.378667pt;}
.x4_c00371{left:762.857333pt;}
}





/* 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_c00372 {
    display:none;
  }
  .loading-indicator_c00372.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00372 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_c00372 { 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_c00372" -> "#page-container .classname_c00372")
 */
.pf_c00372 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00372 { /* 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_c00372.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00372 { /* 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_c00372 { /* 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_c00372 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00372 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00372 {overflow:visible;}
  }
}
.c_c00372 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00372 { /* 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_c00372:after { /* webkit #35443 */
  content: '';
}
.t_c00372:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00372 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 */
}
.__c00372 { /* 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_c00372 { /* info for Javascript */
  display:none;
}
.l_c00372 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00372 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00372 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00372: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_c00372 {
    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_c00372.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00372.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_c00372 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00372{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00372;src:url('chunks/assets/font_53ec0c54e60da7c2d414b553.woff2')format("woff");}.ff1_c00372{font-family:ff1_c00372;line-height:1.000000;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;}
.m11b_c00372{transform:matrix(0.114965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114965,0.000000,0.000000,0.250000,0,0);}
.m131_c00372{transform:matrix(0.121612,0.002067,-0.004249,0.249964,0,0);-ms-transform:matrix(0.121612,0.002067,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.121612,0.002067,-0.004249,0.249964,0,0);}
.m0_c00372{transform:matrix(0.138475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138475,0.000000,0.000000,0.250000,0,0);}
.m15d_c00372{transform:matrix(0.141427,0.002829,-0.004999,0.249950,0,0);-ms-transform:matrix(0.141427,0.002829,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.141427,0.002829,-0.004999,0.249950,0,0);}
.m15c_c00372{transform:matrix(0.144131,0.002883,-0.004999,0.249950,0,0);-ms-transform:matrix(0.144131,0.002883,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.144131,0.002883,-0.004999,0.249950,0,0);}
.m14b_c00372{transform:matrix(0.144590,0.006803,-0.011749,0.249724,0,0);-ms-transform:matrix(0.144590,0.006803,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.144590,0.006803,-0.011749,0.249724,0,0);}
.m158_c00372{transform:matrix(0.149760,0.002995,-0.004999,0.249950,0,0);-ms-transform:matrix(0.149760,0.002995,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.149760,0.002995,-0.004999,0.249950,0,0);}
.m15b_c00372{transform:matrix(0.150245,0.003005,-0.004999,0.249950,0,0);-ms-transform:matrix(0.150245,0.003005,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.150245,0.003005,-0.004999,0.249950,0,0);}
.m159_c00372{transform:matrix(0.154954,0.003099,-0.004999,0.249950,0,0);-ms-transform:matrix(0.154954,0.003099,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.154954,0.003099,-0.004999,0.249950,0,0);}
.m3c_c00372{transform:matrix(0.156585,0.003288,-0.005249,0.249945,0,0);-ms-transform:matrix(0.156585,0.003288,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.156585,0.003288,-0.005249,0.249945,0,0);}
.m15e_c00372{transform:matrix(0.157024,0.003140,-0.004999,0.249950,0,0);-ms-transform:matrix(0.157024,0.003140,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.157024,0.003140,-0.004999,0.249950,0,0);}
.m15a_c00372{transform:matrix(0.159508,0.003190,-0.004999,0.249950,0,0);-ms-transform:matrix(0.159508,0.003190,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.159508,0.003190,-0.004999,0.249950,0,0);}
.m3a_c00372{transform:matrix(0.159540,0.003350,-0.005249,0.249945,0,0);-ms-transform:matrix(0.159540,0.003350,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.159540,0.003350,-0.005249,0.249945,0,0);}
.m83_c00372{transform:matrix(0.162649,0.003416,-0.005249,0.249945,0,0);-ms-transform:matrix(0.162649,0.003416,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.162649,0.003416,-0.005249,0.249945,0,0);}
.m126_c00372{transform:matrix(0.163125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163125,0.000000,0.000000,0.250000,0,0);}
.m51_c00372{transform:matrix(0.165903,0.003484,-0.005249,0.249945,0,0);-ms-transform:matrix(0.165903,0.003484,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.165903,0.003484,-0.005249,0.249945,0,0);}
.m57_c00372{transform:matrix(0.166863,0.003504,-0.005249,0.249945,0,0);-ms-transform:matrix(0.166863,0.003504,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.166863,0.003504,-0.005249,0.249945,0,0);}
.m13_c00372{transform:matrix(0.167890,0.003190,-0.004749,0.249955,0,0);-ms-transform:matrix(0.167890,0.003190,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.167890,0.003190,-0.004749,0.249955,0,0);}
.m9f_c00372{transform:matrix(0.169033,0.003550,-0.005249,0.249945,0,0);-ms-transform:matrix(0.169033,0.003550,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.169033,0.003550,-0.005249,0.249945,0,0);}
.m55_c00372{transform:matrix(0.169068,0.003550,-0.005249,0.249945,0,0);-ms-transform:matrix(0.169068,0.003550,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.169068,0.003550,-0.005249,0.249945,0,0);}
.m3f_c00372{transform:matrix(0.169483,0.003559,-0.005249,0.249945,0,0);-ms-transform:matrix(0.169483,0.003559,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.169483,0.003559,-0.005249,0.249945,0,0);}
.m52_c00372{transform:matrix(0.170782,0.003586,-0.005249,0.249945,0,0);-ms-transform:matrix(0.170782,0.003586,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.170782,0.003586,-0.005249,0.249945,0,0);}
.m102_c00372{transform:matrix(0.171565,0.003946,-0.005748,0.249934,0,0);-ms-transform:matrix(0.171565,0.003946,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.171565,0.003946,-0.005748,0.249934,0,0);}
.m84_c00372{transform:matrix(0.171572,0.003603,-0.005249,0.249945,0,0);-ms-transform:matrix(0.171572,0.003603,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.171572,0.003603,-0.005249,0.249945,0,0);}
.mc6_c00372{transform:matrix(0.171802,0.003608,-0.005249,0.249945,0,0);-ms-transform:matrix(0.171802,0.003608,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.171802,0.003608,-0.005249,0.249945,0,0);}
.m25_c00372{transform:matrix(0.172672,0.003626,-0.005249,0.249945,0,0);-ms-transform:matrix(0.172672,0.003626,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.172672,0.003626,-0.005249,0.249945,0,0);}
.m67_c00372{transform:matrix(0.173327,0.003640,-0.005249,0.249945,0,0);-ms-transform:matrix(0.173327,0.003640,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.173327,0.003640,-0.005249,0.249945,0,0);}
.mfe_c00372{transform:matrix(0.173559,0.003992,-0.005748,0.249934,0,0);-ms-transform:matrix(0.173559,0.003992,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.173559,0.003992,-0.005748,0.249934,0,0);}
.m38_c00372{transform:matrix(0.174467,0.003664,-0.005249,0.249945,0,0);-ms-transform:matrix(0.174467,0.003664,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.174467,0.003664,-0.005249,0.249945,0,0);}
.m3e_c00372{transform:matrix(0.174527,0.003665,-0.005249,0.249945,0,0);-ms-transform:matrix(0.174527,0.003665,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.174527,0.003665,-0.005249,0.249945,0,0);}
.md2_c00372{transform:matrix(0.175196,0.003679,-0.005249,0.249945,0,0);-ms-transform:matrix(0.175196,0.003679,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.175196,0.003679,-0.005249,0.249945,0,0);}
.m22_c00372{transform:matrix(0.177466,0.003727,-0.005249,0.249945,0,0);-ms-transform:matrix(0.177466,0.003727,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.177466,0.003727,-0.005249,0.249945,0,0);}
.m129_c00372{transform:matrix(0.177800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177800,0.000000,0.000000,0.250000,0,0);}
.m12_c00372{transform:matrix(0.179413,0.003409,-0.004749,0.249955,0,0);-ms-transform:matrix(0.179413,0.003409,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.179413,0.003409,-0.004749,0.249955,0,0);}
.m37_c00372{transform:matrix(0.179705,0.003774,-0.005249,0.249945,0,0);-ms-transform:matrix(0.179705,0.003774,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.179705,0.003774,-0.005249,0.249945,0,0);}
.m2a_c00372{transform:matrix(0.179960,0.003779,-0.005249,0.249945,0,0);-ms-transform:matrix(0.179960,0.003779,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.179960,0.003779,-0.005249,0.249945,0,0);}
.m12f_c00372{transform:matrix(0.180115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180115,0.000000,0.000000,0.250000,0,0);}
.m69_c00372{transform:matrix(0.180240,0.003785,-0.005249,0.249945,0,0);-ms-transform:matrix(0.180240,0.003785,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.180240,0.003785,-0.005249,0.249945,0,0);}
.m4e_c00372{transform:matrix(0.180450,0.003789,-0.005249,0.249945,0,0);-ms-transform:matrix(0.180450,0.003789,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.180450,0.003789,-0.005249,0.249945,0,0);}
.mb9_c00372{transform:matrix(0.180635,0.003793,-0.005249,0.249945,0,0);-ms-transform:matrix(0.180635,0.003793,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.180635,0.003793,-0.005249,0.249945,0,0);}
.m72_c00372{transform:matrix(0.180815,0.003797,-0.005249,0.249945,0,0);-ms-transform:matrix(0.180815,0.003797,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.180815,0.003797,-0.005249,0.249945,0,0);}
.m98_c00372{transform:matrix(0.181355,0.003808,-0.005249,0.249945,0,0);-ms-transform:matrix(0.181355,0.003808,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.181355,0.003808,-0.005249,0.249945,0,0);}
.m7c_c00372{transform:matrix(0.182020,0.003822,-0.005249,0.249945,0,0);-ms-transform:matrix(0.182020,0.003822,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.182020,0.003822,-0.005249,0.249945,0,0);}
.m3b_c00372{transform:matrix(0.182595,0.003834,-0.005249,0.249945,0,0);-ms-transform:matrix(0.182595,0.003834,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.182595,0.003834,-0.005249,0.249945,0,0);}
.m66_c00372{transform:matrix(0.183010,0.003843,-0.005249,0.249945,0,0);-ms-transform:matrix(0.183010,0.003843,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.183010,0.003843,-0.005249,0.249945,0,0);}
.m80_c00372{transform:matrix(0.183030,0.003844,-0.005249,0.249945,0,0);-ms-transform:matrix(0.183030,0.003844,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.183030,0.003844,-0.005249,0.249945,0,0);}
.m12a_c00372{transform:matrix(0.184110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184110,0.000000,0.000000,0.250000,0,0);}
.m6c_c00372{transform:matrix(0.184674,0.003878,-0.005249,0.249945,0,0);-ms-transform:matrix(0.184674,0.003878,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.184674,0.003878,-0.005249,0.249945,0,0);}
.m127_c00372{transform:matrix(0.185050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185050,0.000000,0.000000,0.250000,0,0);}
.m14c_c00372{transform:matrix(0.185570,0.008731,-0.011749,0.249724,0,0);-ms-transform:matrix(0.185570,0.008731,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.185570,0.008731,-0.011749,0.249724,0,0);}
.mcd_c00372{transform:matrix(0.185789,0.003902,-0.005249,0.249945,0,0);-ms-transform:matrix(0.185789,0.003902,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.185789,0.003902,-0.005249,0.249945,0,0);}
.m85_c00372{transform:matrix(0.186019,0.003906,-0.005249,0.249945,0,0);-ms-transform:matrix(0.186019,0.003906,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.186019,0.003906,-0.005249,0.249945,0,0);}
.m105_c00372{transform:matrix(0.186106,0.004280,-0.005748,0.249934,0,0);-ms-transform:matrix(0.186106,0.004280,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.186106,0.004280,-0.005748,0.249934,0,0);}
.m7e_c00372{transform:matrix(0.186289,0.003912,-0.005249,0.249945,0,0);-ms-transform:matrix(0.186289,0.003912,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.186289,0.003912,-0.005249,0.249945,0,0);}
.m3d_c00372{transform:matrix(0.186594,0.003918,-0.005249,0.249945,0,0);-ms-transform:matrix(0.186594,0.003918,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.186594,0.003918,-0.005249,0.249945,0,0);}
.ma1_c00372{transform:matrix(0.186904,0.003925,-0.005249,0.249945,0,0);-ms-transform:matrix(0.186904,0.003925,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.186904,0.003925,-0.005249,0.249945,0,0);}
.m94_c00372{transform:matrix(0.186914,0.003925,-0.005249,0.249945,0,0);-ms-transform:matrix(0.186914,0.003925,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.186914,0.003925,-0.005249,0.249945,0,0);}
.m2d_c00372{transform:matrix(0.187464,0.003937,-0.005249,0.249945,0,0);-ms-transform:matrix(0.187464,0.003937,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.187464,0.003937,-0.005249,0.249945,0,0);}
.m7d_c00372{transform:matrix(0.187809,0.003944,-0.005249,0.249945,0,0);-ms-transform:matrix(0.187809,0.003944,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.187809,0.003944,-0.005249,0.249945,0,0);}
.m50_c00372{transform:matrix(0.188388,0.003956,-0.005249,0.249945,0,0);-ms-transform:matrix(0.188388,0.003956,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.188388,0.003956,-0.005249,0.249945,0,0);}
.me_c00372{transform:matrix(0.188541,0.003582,-0.004749,0.249955,0,0);-ms-transform:matrix(0.188541,0.003582,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.188541,0.003582,-0.004749,0.249955,0,0);}
.m96_c00372{transform:matrix(0.188563,0.003960,-0.005249,0.249945,0,0);-ms-transform:matrix(0.188563,0.003960,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.188563,0.003960,-0.005249,0.249945,0,0);}
.m39_c00372{transform:matrix(0.188923,0.003967,-0.005249,0.249945,0,0);-ms-transform:matrix(0.188923,0.003967,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.188923,0.003967,-0.005249,0.249945,0,0);}
.m77_c00372{transform:matrix(0.189703,0.003984,-0.005249,0.249945,0,0);-ms-transform:matrix(0.189703,0.003984,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.189703,0.003984,-0.005249,0.249945,0,0);}
.m14_c00372{transform:matrix(0.189711,0.003605,-0.004749,0.249955,0,0);-ms-transform:matrix(0.189711,0.003605,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.189711,0.003605,-0.004749,0.249955,0,0);}
.m41_c00372{transform:matrix(0.189798,0.003986,-0.005249,0.249945,0,0);-ms-transform:matrix(0.189798,0.003986,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.189798,0.003986,-0.005249,0.249945,0,0);}
.m56_c00372{transform:matrix(0.189843,0.003987,-0.005249,0.249945,0,0);-ms-transform:matrix(0.189843,0.003987,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.189843,0.003987,-0.005249,0.249945,0,0);}
.m81_c00372{transform:matrix(0.189903,0.003988,-0.005249,0.249945,0,0);-ms-transform:matrix(0.189903,0.003988,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.189903,0.003988,-0.005249,0.249945,0,0);}
.md5_c00372{transform:matrix(0.190473,0.004000,-0.005249,0.249945,0,0);-ms-transform:matrix(0.190473,0.004000,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.190473,0.004000,-0.005249,0.249945,0,0);}
.m99_c00372{transform:matrix(0.190788,0.004007,-0.005249,0.249945,0,0);-ms-transform:matrix(0.190788,0.004007,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.190788,0.004007,-0.005249,0.249945,0,0);}
.m79_c00372{transform:matrix(0.191593,0.004023,-0.005249,0.249945,0,0);-ms-transform:matrix(0.191593,0.004023,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.191593,0.004023,-0.005249,0.249945,0,0);}
.mff_c00372{transform:matrix(0.191759,0.004410,-0.005748,0.249934,0,0);-ms-transform:matrix(0.191759,0.004410,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.191759,0.004410,-0.005748,0.249934,0,0);}
.m101_c00372{transform:matrix(0.191899,0.004414,-0.005748,0.249934,0,0);-ms-transform:matrix(0.191899,0.004414,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.191899,0.004414,-0.005748,0.249934,0,0);}
.mc7_c00372{transform:matrix(0.192468,0.004042,-0.005249,0.249945,0,0);-ms-transform:matrix(0.192468,0.004042,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.192468,0.004042,-0.005249,0.249945,0,0);}
.m16_c00372{transform:matrix(0.192585,0.003659,-0.004749,0.249955,0,0);-ms-transform:matrix(0.192585,0.003659,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.192585,0.003659,-0.004749,0.249955,0,0);}
.mda_c00372{transform:matrix(0.193147,0.001738,-0.002250,0.249990,0,0);-ms-transform:matrix(0.193147,0.001738,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.193147,0.001738,-0.002250,0.249990,0,0);}
.m29_c00372{transform:matrix(0.193557,0.004065,-0.005249,0.249945,0,0);-ms-transform:matrix(0.193557,0.004065,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.193557,0.004065,-0.005249,0.249945,0,0);}
.m23_c00372{transform:matrix(0.193572,0.004065,-0.005249,0.249945,0,0);-ms-transform:matrix(0.193572,0.004065,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.193572,0.004065,-0.005249,0.249945,0,0);}
.md_c00372{transform:matrix(0.193610,0.003679,-0.004749,0.249955,0,0);-ms-transform:matrix(0.193610,0.003679,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.193610,0.003679,-0.004749,0.249955,0,0);}
.m73_c00372{transform:matrix(0.193822,0.004070,-0.005249,0.249945,0,0);-ms-transform:matrix(0.193822,0.004070,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.193822,0.004070,-0.005249,0.249945,0,0);}
.m54_c00372{transform:matrix(0.193992,0.004074,-0.005249,0.249945,0,0);-ms-transform:matrix(0.193992,0.004074,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.193992,0.004074,-0.005249,0.249945,0,0);}
.m1b_c00372{transform:matrix(0.194307,0.004080,-0.005249,0.249945,0,0);-ms-transform:matrix(0.194307,0.004080,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.194307,0.004080,-0.005249,0.249945,0,0);}
.m28_c00372{transform:matrix(0.194437,0.004083,-0.005249,0.249945,0,0);-ms-transform:matrix(0.194437,0.004083,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.194437,0.004083,-0.005249,0.249945,0,0);}
.m7b_c00372{transform:matrix(0.194917,0.004093,-0.005249,0.249945,0,0);-ms-transform:matrix(0.194917,0.004093,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.194917,0.004093,-0.005249,0.249945,0,0);}
.m6a_c00372{transform:matrix(0.195232,0.004100,-0.005249,0.249945,0,0);-ms-transform:matrix(0.195232,0.004100,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.195232,0.004100,-0.005249,0.249945,0,0);}
.m104_c00372{transform:matrix(0.195273,0.004491,-0.005748,0.249934,0,0);-ms-transform:matrix(0.195273,0.004491,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.195273,0.004491,-0.005748,0.249934,0,0);}
.mb2_c00372{transform:matrix(0.195777,0.004111,-0.005249,0.249945,0,0);-ms-transform:matrix(0.195777,0.004111,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.195777,0.004111,-0.005249,0.249945,0,0);}
.m13c_c00372{transform:matrix(0.195973,0.004311,-0.005499,0.249940,0,0);-ms-transform:matrix(0.195973,0.004311,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.195973,0.004311,-0.005499,0.249940,0,0);}
.md1_c00372{transform:matrix(0.195977,0.004116,-0.005249,0.249945,0,0);-ms-transform:matrix(0.195977,0.004116,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.195977,0.004116,-0.005249,0.249945,0,0);}
.mbe_c00372{transform:matrix(0.196082,0.004118,-0.005249,0.249945,0,0);-ms-transform:matrix(0.196082,0.004118,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.196082,0.004118,-0.005249,0.249945,0,0);}
.m64_c00372{transform:matrix(0.196602,0.004129,-0.005249,0.249945,0,0);-ms-transform:matrix(0.196602,0.004129,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.196602,0.004129,-0.005249,0.249945,0,0);}
.mc8_c00372{transform:matrix(0.197007,0.004137,-0.005249,0.249945,0,0);-ms-transform:matrix(0.197007,0.004137,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.197007,0.004137,-0.005249,0.249945,0,0);}
.m4f_c00372{transform:matrix(0.197187,0.004141,-0.005249,0.249945,0,0);-ms-transform:matrix(0.197187,0.004141,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.197187,0.004141,-0.005249,0.249945,0,0);}
.m5f_c00372{transform:matrix(0.197287,0.004143,-0.005249,0.249945,0,0);-ms-transform:matrix(0.197287,0.004143,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.197287,0.004143,-0.005249,0.249945,0,0);}
.m10_c00372{transform:matrix(0.197514,0.003753,-0.004749,0.249955,0,0);-ms-transform:matrix(0.197514,0.003753,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.197514,0.003753,-0.004749,0.249955,0,0);}
.m40_c00372{transform:matrix(0.197616,0.004150,-0.005249,0.249945,0,0);-ms-transform:matrix(0.197616,0.004150,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.197616,0.004150,-0.005249,0.249945,0,0);}
.m124_c00372{transform:matrix(0.197680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197680,0.000000,0.000000,0.250000,0,0);}
.m128_c00372{transform:matrix(0.197835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197835,0.000000,0.000000,0.250000,0,0);}
.m19_c00372{transform:matrix(0.197866,0.004155,-0.005249,0.249945,0,0);-ms-transform:matrix(0.197866,0.004155,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.197866,0.004155,-0.005249,0.249945,0,0);}
.m2c_c00372{transform:matrix(0.197996,0.004158,-0.005249,0.249945,0,0);-ms-transform:matrix(0.197996,0.004158,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.197996,0.004158,-0.005249,0.249945,0,0);}
.m7f_c00372{transform:matrix(0.198366,0.004166,-0.005249,0.249945,0,0);-ms-transform:matrix(0.198366,0.004166,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.198366,0.004166,-0.005249,0.249945,0,0);}
.m1e_c00372{transform:matrix(0.198491,0.004168,-0.005249,0.249945,0,0);-ms-transform:matrix(0.198491,0.004168,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.198491,0.004168,-0.005249,0.249945,0,0);}
.m5c_c00372{transform:matrix(0.198501,0.004169,-0.005249,0.249945,0,0);-ms-transform:matrix(0.198501,0.004169,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.198501,0.004169,-0.005249,0.249945,0,0);}
.m125_c00372{transform:matrix(0.199075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199075,0.000000,0.000000,0.250000,0,0);}
.mdf_c00372{transform:matrix(0.199092,0.001792,-0.002250,0.249990,0,0);-ms-transform:matrix(0.199092,0.001792,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.199092,0.001792,-0.002250,0.249990,0,0);}
.mcb_c00372{transform:matrix(0.199116,0.004181,-0.005249,0.249945,0,0);-ms-transform:matrix(0.199116,0.004181,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.199116,0.004181,-0.005249,0.249945,0,0);}
.m32_c00372{transform:matrix(0.199326,0.004186,-0.005249,0.249945,0,0);-ms-transform:matrix(0.199326,0.004186,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.199326,0.004186,-0.005249,0.249945,0,0);}
.m9_c00372{transform:matrix(0.199355,0.001994,-0.002500,0.249988,0,0);-ms-transform:matrix(0.199355,0.001994,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.199355,0.001994,-0.002500,0.249988,0,0);}
.mcf_c00372{transform:matrix(0.199481,0.004189,-0.005249,0.249945,0,0);-ms-transform:matrix(0.199481,0.004189,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.199481,0.004189,-0.005249,0.249945,0,0);}
.mb0_c00372{transform:matrix(0.200066,0.004201,-0.005249,0.249945,0,0);-ms-transform:matrix(0.200066,0.004201,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.200066,0.004201,-0.005249,0.249945,0,0);}
.m35_c00372{transform:matrix(0.200081,0.004202,-0.005249,0.249945,0,0);-ms-transform:matrix(0.200081,0.004202,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.200081,0.004202,-0.005249,0.249945,0,0);}
.m21_c00372{transform:matrix(0.200546,0.004211,-0.005249,0.249945,0,0);-ms-transform:matrix(0.200546,0.004211,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.200546,0.004211,-0.005249,0.249945,0,0);}
.m3_c00372{transform:matrix(0.200570,0.002006,-0.002500,0.249988,0,0);-ms-transform:matrix(0.200570,0.002006,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.200570,0.002006,-0.002500,0.249988,0,0);}
.m9c_c00372{transform:matrix(0.201111,0.004223,-0.005249,0.249945,0,0);-ms-transform:matrix(0.201111,0.004223,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.201111,0.004223,-0.005249,0.249945,0,0);}
.m53_c00372{transform:matrix(0.201171,0.004225,-0.005249,0.249945,0,0);-ms-transform:matrix(0.201171,0.004225,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.201171,0.004225,-0.005249,0.249945,0,0);}
.m42_c00372{transform:matrix(0.201536,0.004232,-0.005249,0.249945,0,0);-ms-transform:matrix(0.201536,0.004232,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.201536,0.004232,-0.005249,0.249945,0,0);}
.m7a_c00372{transform:matrix(0.201701,0.004236,-0.005249,0.249945,0,0);-ms-transform:matrix(0.201701,0.004236,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.201701,0.004236,-0.005249,0.249945,0,0);}
.mb6_c00372{transform:matrix(0.201716,0.004236,-0.005249,0.249945,0,0);-ms-transform:matrix(0.201716,0.004236,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.201716,0.004236,-0.005249,0.249945,0,0);}
.m2f_c00372{transform:matrix(0.201840,0.004239,-0.005249,0.249945,0,0);-ms-transform:matrix(0.201840,0.004239,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.201840,0.004239,-0.005249,0.249945,0,0);}
.md7_c00372{transform:matrix(0.201850,0.004239,-0.005249,0.249945,0,0);-ms-transform:matrix(0.201850,0.004239,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.201850,0.004239,-0.005249,0.249945,0,0);}
.m100_c00372{transform:matrix(0.202192,0.004650,-0.005748,0.249934,0,0);-ms-transform:matrix(0.202192,0.004650,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.202192,0.004650,-0.005748,0.249934,0,0);}
.m18_c00372{transform:matrix(0.202250,0.004247,-0.005249,0.249945,0,0);-ms-transform:matrix(0.202250,0.004247,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.202250,0.004247,-0.005249,0.249945,0,0);}
.m24_c00372{transform:matrix(0.202340,0.004249,-0.005249,0.249945,0,0);-ms-transform:matrix(0.202340,0.004249,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.202340,0.004249,-0.005249,0.249945,0,0);}
.m9d_c00372{transform:matrix(0.202460,0.004252,-0.005249,0.249945,0,0);-ms-transform:matrix(0.202460,0.004252,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.202460,0.004252,-0.005249,0.249945,0,0);}
.mdb_c00372{transform:matrix(0.202802,0.001825,-0.002250,0.249990,0,0);-ms-transform:matrix(0.202802,0.001825,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.202802,0.001825,-0.002250,0.249990,0,0);}
.m9a_c00372{transform:matrix(0.203315,0.004270,-0.005249,0.249945,0,0);-ms-transform:matrix(0.203315,0.004270,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.203315,0.004270,-0.005249,0.249945,0,0);}
.m130_c00372{transform:matrix(0.203575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203575,0.000000,0.000000,0.250000,0,0);}
.mb5_c00372{transform:matrix(0.203760,0.004279,-0.005249,0.249945,0,0);-ms-transform:matrix(0.203760,0.004279,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.203760,0.004279,-0.005249,0.249945,0,0);}
.m82_c00372{transform:matrix(0.203940,0.004283,-0.005249,0.249945,0,0);-ms-transform:matrix(0.203940,0.004283,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.203940,0.004283,-0.005249,0.249945,0,0);}
.mc0_c00372{transform:matrix(0.204080,0.004286,-0.005249,0.249945,0,0);-ms-transform:matrix(0.204080,0.004286,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.204080,0.004286,-0.005249,0.249945,0,0);}
.m63_c00372{transform:matrix(0.204125,0.004287,-0.005249,0.249945,0,0);-ms-transform:matrix(0.204125,0.004287,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.204125,0.004287,-0.005249,0.249945,0,0);}
.m11_c00372{transform:matrix(0.204283,0.003881,-0.004749,0.249955,0,0);-ms-transform:matrix(0.204283,0.003881,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.204283,0.003881,-0.004749,0.249955,0,0);}
.mc1_c00372{transform:matrix(0.204440,0.004293,-0.005249,0.249945,0,0);-ms-transform:matrix(0.204440,0.004293,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.204440,0.004293,-0.005249,0.249945,0,0);}
.m95_c00372{transform:matrix(0.204705,0.004299,-0.005249,0.249945,0,0);-ms-transform:matrix(0.204705,0.004299,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.204705,0.004299,-0.005249,0.249945,0,0);}
.mb1_c00372{transform:matrix(0.204870,0.004302,-0.005249,0.249945,0,0);-ms-transform:matrix(0.204870,0.004302,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.204870,0.004302,-0.005249,0.249945,0,0);}
.mb8_c00372{transform:matrix(0.205700,0.004320,-0.005249,0.249945,0,0);-ms-transform:matrix(0.205700,0.004320,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.205700,0.004320,-0.005249,0.249945,0,0);}
.mb_c00372{transform:matrix(0.206250,0.002062,-0.002500,0.249988,0,0);-ms-transform:matrix(0.206250,0.002062,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.206250,0.002062,-0.002500,0.249988,0,0);}
.m103_c00372{transform:matrix(0.206785,0.004756,-0.005748,0.249934,0,0);-ms-transform:matrix(0.206785,0.004756,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.206785,0.004756,-0.005748,0.249934,0,0);}
.m86_c00372{transform:matrix(0.206989,0.004347,-0.005249,0.249945,0,0);-ms-transform:matrix(0.206989,0.004347,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.206989,0.004347,-0.005249,0.249945,0,0);}
.m70_c00372{transform:matrix(0.207079,0.004349,-0.005249,0.249945,0,0);-ms-transform:matrix(0.207079,0.004349,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.207079,0.004349,-0.005249,0.249945,0,0);}
.ma5_c00372{transform:matrix(0.208019,0.004368,-0.005249,0.249945,0,0);-ms-transform:matrix(0.208019,0.004368,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.208019,0.004368,-0.005249,0.249945,0,0);}
.m122_c00372{transform:matrix(0.208590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208590,0.000000,0.000000,0.250000,0,0);}
.m14f_c00372{transform:matrix(0.209069,0.009836,-0.011749,0.249724,0,0);-ms-transform:matrix(0.209069,0.009836,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.209069,0.009836,-0.011749,0.249724,0,0);}
.mac_c00372{transform:matrix(0.209174,0.004393,-0.005249,0.249945,0,0);-ms-transform:matrix(0.209174,0.004393,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.209174,0.004393,-0.005249,0.249945,0,0);}
.mdc_c00372{transform:matrix(0.209881,0.001889,-0.002250,0.249990,0,0);-ms-transform:matrix(0.209881,0.001889,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.209881,0.001889,-0.002250,0.249990,0,0);}
.med_c00372{transform:matrix(0.209922,0.002309,-0.002750,0.249985,0,0);-ms-transform:matrix(0.209922,0.002309,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.209922,0.002309,-0.002750,0.249985,0,0);}
.md0_c00372{transform:matrix(0.210339,0.004417,-0.005249,0.249945,0,0);-ms-transform:matrix(0.210339,0.004417,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.210339,0.004417,-0.005249,0.249945,0,0);}
.m6_c00372{transform:matrix(0.210404,0.002104,-0.002500,0.249988,0,0);-ms-transform:matrix(0.210404,0.002104,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.210404,0.002104,-0.002500,0.249988,0,0);}
.mba_c00372{transform:matrix(0.210479,0.004420,-0.005249,0.249945,0,0);-ms-transform:matrix(0.210479,0.004420,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.210479,0.004420,-0.005249,0.249945,0,0);}
.md4_c00372{transform:matrix(0.210594,0.004422,-0.005249,0.249945,0,0);-ms-transform:matrix(0.210594,0.004422,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.210594,0.004422,-0.005249,0.249945,0,0);}
.m71_c00372{transform:matrix(0.210983,0.004431,-0.005249,0.249945,0,0);-ms-transform:matrix(0.210983,0.004431,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.210983,0.004431,-0.005249,0.249945,0,0);}
.m118_c00372{transform:matrix(0.212414,0.006372,-0.007497,0.249888,0,0);-ms-transform:matrix(0.212414,0.006372,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.212414,0.006372,-0.007497,0.249888,0,0);}
.mc3_c00372{transform:matrix(0.212468,0.004462,-0.005249,0.249945,0,0);-ms-transform:matrix(0.212468,0.004462,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.212468,0.004462,-0.005249,0.249945,0,0);}
.ma0_c00372{transform:matrix(0.212543,0.004463,-0.005249,0.249945,0,0);-ms-transform:matrix(0.212543,0.004463,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.212543,0.004463,-0.005249,0.249945,0,0);}
.m5d_c00372{transform:matrix(0.213313,0.004480,-0.005249,0.249945,0,0);-ms-transform:matrix(0.213313,0.004480,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.213313,0.004480,-0.005249,0.249945,0,0);}
.mae_c00372{transform:matrix(0.213338,0.004480,-0.005249,0.249945,0,0);-ms-transform:matrix(0.213338,0.004480,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.213338,0.004480,-0.005249,0.249945,0,0);}
.m116_c00372{transform:matrix(0.213574,0.006407,-0.007497,0.249888,0,0);-ms-transform:matrix(0.213574,0.006407,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.213574,0.006407,-0.007497,0.249888,0,0);}
.m75_c00372{transform:matrix(0.213693,0.004488,-0.005249,0.249945,0,0);-ms-transform:matrix(0.213693,0.004488,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.213693,0.004488,-0.005249,0.249945,0,0);}
.m97_c00372{transform:matrix(0.213908,0.004492,-0.005249,0.249945,0,0);-ms-transform:matrix(0.213908,0.004492,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.213908,0.004492,-0.005249,0.249945,0,0);}
.m8_c00372{transform:matrix(0.214069,0.002141,-0.002500,0.249988,0,0);-ms-transform:matrix(0.214069,0.002141,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.214069,0.002141,-0.002500,0.249988,0,0);}
.mcc_c00372{transform:matrix(0.214453,0.004504,-0.005249,0.249945,0,0);-ms-transform:matrix(0.214453,0.004504,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.214453,0.004504,-0.005249,0.249945,0,0);}
.m113_c00372{transform:matrix(0.214533,0.006436,-0.007497,0.249888,0,0);-ms-transform:matrix(0.214533,0.006436,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.214533,0.006436,-0.007497,0.249888,0,0);}
.ma8_c00372{transform:matrix(0.215038,0.004516,-0.005249,0.249945,0,0);-ms-transform:matrix(0.215038,0.004516,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.215038,0.004516,-0.005249,0.249945,0,0);}
.m65_c00372{transform:matrix(0.215428,0.004524,-0.005249,0.249945,0,0);-ms-transform:matrix(0.215428,0.004524,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.215428,0.004524,-0.005249,0.249945,0,0);}
.m74_c00372{transform:matrix(0.215667,0.004529,-0.005249,0.249945,0,0);-ms-transform:matrix(0.215667,0.004529,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.215667,0.004529,-0.005249,0.249945,0,0);}
.mc9_c00372{transform:matrix(0.215727,0.004530,-0.005249,0.249945,0,0);-ms-transform:matrix(0.215727,0.004530,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.215727,0.004530,-0.005249,0.249945,0,0);}
.mf_c00372{transform:matrix(0.215841,0.004101,-0.004749,0.249955,0,0);-ms-transform:matrix(0.215841,0.004101,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.215841,0.004101,-0.004749,0.249955,0,0);}
.m153_c00372{transform:matrix(0.215851,0.010155,-0.011749,0.249724,0,0);-ms-transform:matrix(0.215851,0.010155,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.215851,0.010155,-0.011749,0.249724,0,0);}
.m156_c00372{transform:matrix(0.215971,0.010161,-0.011749,0.249724,0,0);-ms-transform:matrix(0.215971,0.010161,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.215971,0.010161,-0.011749,0.249724,0,0);}
.m17_c00372{transform:matrix(0.216052,0.004537,-0.005249,0.249945,0,0);-ms-transform:matrix(0.216052,0.004537,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.216052,0.004537,-0.005249,0.249945,0,0);}
.mc5_c00372{transform:matrix(0.216202,0.004540,-0.005249,0.249945,0,0);-ms-transform:matrix(0.216202,0.004540,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.216202,0.004540,-0.005249,0.249945,0,0);}
.m27_c00372{transform:matrix(0.216232,0.004541,-0.005249,0.249945,0,0);-ms-transform:matrix(0.216232,0.004541,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.216232,0.004541,-0.005249,0.249945,0,0);}
.meb_c00372{transform:matrix(0.216322,0.002380,-0.002750,0.249985,0,0);-ms-transform:matrix(0.216322,0.002380,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.216322,0.002380,-0.002750,0.249985,0,0);}
.m2b_c00372{transform:matrix(0.216327,0.004543,-0.005249,0.249945,0,0);-ms-transform:matrix(0.216327,0.004543,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.216327,0.004543,-0.005249,0.249945,0,0);}
.m62_c00372{transform:matrix(0.216417,0.004545,-0.005249,0.249945,0,0);-ms-transform:matrix(0.216417,0.004545,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.216417,0.004545,-0.005249,0.249945,0,0);}
.mb3_c00372{transform:matrix(0.216432,0.004545,-0.005249,0.249945,0,0);-ms-transform:matrix(0.216432,0.004545,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.216432,0.004545,-0.005249,0.249945,0,0);}
.mbd_c00372{transform:matrix(0.216457,0.004546,-0.005249,0.249945,0,0);-ms-transform:matrix(0.216457,0.004546,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.216457,0.004546,-0.005249,0.249945,0,0);}
.m60_c00372{transform:matrix(0.216677,0.004550,-0.005249,0.249945,0,0);-ms-transform:matrix(0.216677,0.004550,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.216677,0.004550,-0.005249,0.249945,0,0);}
.m1d_c00372{transform:matrix(0.217087,0.004559,-0.005249,0.249945,0,0);-ms-transform:matrix(0.217087,0.004559,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.217087,0.004559,-0.005249,0.249945,0,0);}
.m2e_c00372{transform:matrix(0.217692,0.004572,-0.005249,0.249945,0,0);-ms-transform:matrix(0.217692,0.004572,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.217692,0.004572,-0.005249,0.249945,0,0);}
.ma4_c00372{transform:matrix(0.217932,0.004577,-0.005249,0.249945,0,0);-ms-transform:matrix(0.217932,0.004577,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.217932,0.004577,-0.005249,0.249945,0,0);}
.m108_c00372{transform:matrix(0.218207,0.006546,-0.007497,0.249888,0,0);-ms-transform:matrix(0.218207,0.006546,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.218207,0.006546,-0.007497,0.249888,0,0);}
.mca_c00372{transform:matrix(0.218237,0.004583,-0.005249,0.249945,0,0);-ms-transform:matrix(0.218237,0.004583,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.218237,0.004583,-0.005249,0.249945,0,0);}
.me1_c00372{transform:matrix(0.218611,0.001968,-0.002250,0.249990,0,0);-ms-transform:matrix(0.218611,0.001968,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.218611,0.001968,-0.002250,0.249990,0,0);}
.mbb_c00372{transform:matrix(0.219287,0.004605,-0.005249,0.249945,0,0);-ms-transform:matrix(0.219287,0.004605,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.219287,0.004605,-0.005249,0.249945,0,0);}
.m26_c00372{transform:matrix(0.219996,0.004620,-0.005249,0.249945,0,0);-ms-transform:matrix(0.219996,0.004620,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.219996,0.004620,-0.005249,0.249945,0,0);}
.m1_c00372{transform:matrix(0.220364,0.002204,-0.002500,0.249988,0,0);-ms-transform:matrix(0.220364,0.002204,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.220364,0.002204,-0.002500,0.249988,0,0);}
.mb4_c00372{transform:matrix(0.220526,0.004631,-0.005249,0.249945,0,0);-ms-transform:matrix(0.220526,0.004631,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.220526,0.004631,-0.005249,0.249945,0,0);}
.m1a_c00372{transform:matrix(0.220596,0.004633,-0.005249,0.249945,0,0);-ms-transform:matrix(0.220596,0.004633,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.220596,0.004633,-0.005249,0.249945,0,0);}
.md8_c00372{transform:matrix(0.221171,0.004645,-0.005249,0.249945,0,0);-ms-transform:matrix(0.221171,0.004645,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.221171,0.004645,-0.005249,0.249945,0,0);}
.m33_c00372{transform:matrix(0.221301,0.004647,-0.005249,0.249945,0,0);-ms-transform:matrix(0.221301,0.004647,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.221301,0.004647,-0.005249,0.249945,0,0);}
.m9e_c00372{transform:matrix(0.222281,0.004668,-0.005249,0.249945,0,0);-ms-transform:matrix(0.222281,0.004668,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.222281,0.004668,-0.005249,0.249945,0,0);}
.m59_c00372{transform:matrix(0.222971,0.004682,-0.005249,0.249945,0,0);-ms-transform:matrix(0.222971,0.004682,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.222971,0.004682,-0.005249,0.249945,0,0);}
.md6_c00372{transform:matrix(0.223021,0.004683,-0.005249,0.249945,0,0);-ms-transform:matrix(0.223021,0.004683,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.223021,0.004683,-0.005249,0.249945,0,0);}
.maa_c00372{transform:matrix(0.223066,0.004684,-0.005249,0.249945,0,0);-ms-transform:matrix(0.223066,0.004684,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.223066,0.004684,-0.005249,0.249945,0,0);}
.m20_c00372{transform:matrix(0.223171,0.004687,-0.005249,0.249945,0,0);-ms-transform:matrix(0.223171,0.004687,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.223171,0.004687,-0.005249,0.249945,0,0);}
.m44_c00372{transform:matrix(0.223221,0.004688,-0.005249,0.249945,0,0);-ms-transform:matrix(0.223221,0.004688,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.223221,0.004688,-0.005249,0.249945,0,0);}
.m9b_c00372{transform:matrix(0.223246,0.004688,-0.005249,0.249945,0,0);-ms-transform:matrix(0.223246,0.004688,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.223246,0.004688,-0.005249,0.249945,0,0);}
.m150_c00372{transform:matrix(0.223832,0.010531,-0.011749,0.249724,0,0);-ms-transform:matrix(0.223832,0.010531,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.223832,0.010531,-0.011749,0.249724,0,0);}
.m58_c00372{transform:matrix(0.223911,0.004702,-0.005249,0.249945,0,0);-ms-transform:matrix(0.223911,0.004702,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.223911,0.004702,-0.005249,0.249945,0,0);}
.md3_c00372{transform:matrix(0.223971,0.004703,-0.005249,0.249945,0,0);-ms-transform:matrix(0.223971,0.004703,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.223971,0.004703,-0.005249,0.249945,0,0);}
.m76_c00372{transform:matrix(0.224336,0.004711,-0.005249,0.249945,0,0);-ms-transform:matrix(0.224336,0.004711,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.224336,0.004711,-0.005249,0.249945,0,0);}
.m5a_c00372{transform:matrix(0.224456,0.004714,-0.005249,0.249945,0,0);-ms-transform:matrix(0.224456,0.004714,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.224456,0.004714,-0.005249,0.249945,0,0);}
.mb7_c00372{transform:matrix(0.224750,0.004720,-0.005249,0.249945,0,0);-ms-transform:matrix(0.224750,0.004720,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.224750,0.004720,-0.005249,0.249945,0,0);}
.m34_c00372{transform:matrix(0.225180,0.004729,-0.005249,0.249945,0,0);-ms-transform:matrix(0.225180,0.004729,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.225180,0.004729,-0.005249,0.249945,0,0);}
.m68_c00372{transform:matrix(0.225440,0.004734,-0.005249,0.249945,0,0);-ms-transform:matrix(0.225440,0.004734,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.225440,0.004734,-0.005249,0.249945,0,0);}
.mdd_c00372{transform:matrix(0.225441,0.002029,-0.002250,0.249990,0,0);-ms-transform:matrix(0.225441,0.002029,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.225441,0.002029,-0.002250,0.249990,0,0);}
.m15_c00372{transform:matrix(0.225474,0.004284,-0.004749,0.249955,0,0);-ms-transform:matrix(0.225474,0.004284,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.225474,0.004284,-0.004749,0.249955,0,0);}
.m6b_c00372{transform:matrix(0.225575,0.004737,-0.005249,0.249945,0,0);-ms-transform:matrix(0.225575,0.004737,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.225575,0.004737,-0.005249,0.249945,0,0);}
.ma3_c00372{transform:matrix(0.225870,0.004743,-0.005249,0.249945,0,0);-ms-transform:matrix(0.225870,0.004743,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.225870,0.004743,-0.005249,0.249945,0,0);}
.mce_c00372{transform:matrix(0.225940,0.004745,-0.005249,0.249945,0,0);-ms-transform:matrix(0.225940,0.004745,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.225940,0.004745,-0.005249,0.249945,0,0);}
.m7_c00372{transform:matrix(0.225979,0.002260,-0.002500,0.249988,0,0);-ms-transform:matrix(0.225979,0.002260,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.225979,0.002260,-0.002500,0.249988,0,0);}
.m1c_c00372{transform:matrix(0.226765,0.004762,-0.005249,0.249945,0,0);-ms-transform:matrix(0.226765,0.004762,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.226765,0.004762,-0.005249,0.249945,0,0);}
.m78_c00372{transform:matrix(0.227000,0.004767,-0.005249,0.249945,0,0);-ms-transform:matrix(0.227000,0.004767,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.227000,0.004767,-0.005249,0.249945,0,0);}
.me2_c00372{transform:matrix(0.227311,0.002046,-0.002250,0.249990,0,0);-ms-transform:matrix(0.227311,0.002046,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.227311,0.002046,-0.002250,0.249990,0,0);}
.m89_c00372{transform:matrix(0.227380,0.004775,-0.005249,0.249945,0,0);-ms-transform:matrix(0.227380,0.004775,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.227380,0.004775,-0.005249,0.249945,0,0);}
.m36_c00372{transform:matrix(0.227545,0.004778,-0.005249,0.249945,0,0);-ms-transform:matrix(0.227545,0.004778,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.227545,0.004778,-0.005249,0.249945,0,0);}
.me4_c00372{transform:matrix(0.227631,0.002049,-0.002250,0.249990,0,0);-ms-transform:matrix(0.227631,0.002049,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.227631,0.002049,-0.002250,0.249990,0,0);}
.maf_c00372{transform:matrix(0.228120,0.004791,-0.005249,0.249945,0,0);-ms-transform:matrix(0.228120,0.004791,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.228120,0.004791,-0.005249,0.249945,0,0);}
.me3_c00372{transform:matrix(0.228981,0.002061,-0.002250,0.249990,0,0);-ms-transform:matrix(0.228981,0.002061,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.228981,0.002061,-0.002250,0.249990,0,0);}
.m12c_c00372{transform:matrix(0.229195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229195,0.000000,0.000000,0.250000,0,0);}
.mab_c00372{transform:matrix(0.229329,0.004816,-0.005249,0.249945,0,0);-ms-transform:matrix(0.229329,0.004816,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.229329,0.004816,-0.005249,0.249945,0,0);}
.ma7_c00372{transform:matrix(0.229959,0.004829,-0.005249,0.249945,0,0);-ms-transform:matrix(0.229959,0.004829,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.229959,0.004829,-0.005249,0.249945,0,0);}
.m110_c00372{transform:matrix(0.230111,0.006903,-0.007497,0.249888,0,0);-ms-transform:matrix(0.230111,0.006903,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.230111,0.006903,-0.007497,0.249888,0,0);}
.m13e_c00372{transform:matrix(0.230159,0.005064,-0.005499,0.249940,0,0);-ms-transform:matrix(0.230159,0.005064,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.230159,0.005064,-0.005499,0.249940,0,0);}
.m5e_c00372{transform:matrix(0.230274,0.004836,-0.005249,0.249945,0,0);-ms-transform:matrix(0.230274,0.004836,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.230274,0.004836,-0.005249,0.249945,0,0);}
.me6_c00372{transform:matrix(0.230436,0.002535,-0.002750,0.249985,0,0);-ms-transform:matrix(0.230436,0.002535,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.230436,0.002535,-0.002750,0.249985,0,0);}
.m91_c00372{transform:matrix(0.230844,0.004848,-0.005249,0.249945,0,0);-ms-transform:matrix(0.230844,0.004848,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.230844,0.004848,-0.005249,0.249945,0,0);}
.m4c_c00372{transform:matrix(0.231384,0.004859,-0.005249,0.249945,0,0);-ms-transform:matrix(0.231384,0.004859,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.231384,0.004859,-0.005249,0.249945,0,0);}
.mde_c00372{transform:matrix(0.231611,0.002084,-0.002250,0.249990,0,0);-ms-transform:matrix(0.231611,0.002084,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.231611,0.002084,-0.002250,0.249990,0,0);}
.m5_c00372{transform:matrix(0.231988,0.002320,-0.002500,0.249988,0,0);-ms-transform:matrix(0.231988,0.002320,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.231988,0.002320,-0.002500,0.249988,0,0);}
.mf1_c00372{transform:matrix(0.232061,0.002553,-0.002750,0.249985,0,0);-ms-transform:matrix(0.232061,0.002553,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.232061,0.002553,-0.002750,0.249985,0,0);}
.m8e_c00372{transform:matrix(0.232234,0.004877,-0.005249,0.249945,0,0);-ms-transform:matrix(0.232234,0.004877,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.232234,0.004877,-0.005249,0.249945,0,0);}
.me5_c00372{transform:matrix(0.232491,0.002557,-0.002750,0.249985,0,0);-ms-transform:matrix(0.232491,0.002557,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.232491,0.002557,-0.002750,0.249985,0,0);}
.mc_c00372{transform:matrix(0.232708,0.002327,-0.002500,0.249988,0,0);-ms-transform:matrix(0.232708,0.002327,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.232708,0.002327,-0.002500,0.249988,0,0);}
.m2_c00372{transform:matrix(0.233083,0.002331,-0.002500,0.249988,0,0);-ms-transform:matrix(0.233083,0.002331,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.233083,0.002331,-0.002500,0.249988,0,0);}
.m6f_c00372{transform:matrix(0.233334,0.004900,-0.005249,0.249945,0,0);-ms-transform:matrix(0.233334,0.004900,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.233334,0.004900,-0.005249,0.249945,0,0);}
.mf0_c00372{transform:matrix(0.233381,0.002567,-0.002750,0.249985,0,0);-ms-transform:matrix(0.233381,0.002567,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.233381,0.002567,-0.002750,0.249985,0,0);}
.ma6_c00372{transform:matrix(0.233454,0.004903,-0.005249,0.249945,0,0);-ms-transform:matrix(0.233454,0.004903,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.233454,0.004903,-0.005249,0.249945,0,0);}
.m10a_c00372{transform:matrix(0.233590,0.007008,-0.007497,0.249888,0,0);-ms-transform:matrix(0.233590,0.007008,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.233590,0.007008,-0.007497,0.249888,0,0);}
.m13b_c00372{transform:matrix(0.233623,0.005140,-0.005499,0.249940,0,0);-ms-transform:matrix(0.233623,0.005140,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.233623,0.005140,-0.005499,0.249940,0,0);}
.mfa_c00372{transform:matrix(0.234263,0.005388,-0.005748,0.249934,0,0);-ms-transform:matrix(0.234263,0.005388,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.234263,0.005388,-0.005748,0.249934,0,0);}
.mc2_c00372{transform:matrix(0.234568,0.004926,-0.005249,0.249945,0,0);-ms-transform:matrix(0.234568,0.004926,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.234568,0.004926,-0.005249,0.249945,0,0);}
.m48_c00372{transform:matrix(0.235028,0.004936,-0.005249,0.249945,0,0);-ms-transform:matrix(0.235028,0.004936,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.235028,0.004936,-0.005249,0.249945,0,0);}
.m8a_c00372{transform:matrix(0.235343,0.004942,-0.005249,0.249945,0,0);-ms-transform:matrix(0.235343,0.004942,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.235343,0.004942,-0.005249,0.249945,0,0);}
.m151_c00372{transform:matrix(0.235385,0.011074,-0.011749,0.249724,0,0);-ms-transform:matrix(0.235385,0.011074,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.235385,0.011074,-0.011749,0.249724,0,0);}
.m119_c00372{transform:matrix(0.235414,0.007062,-0.007497,0.249888,0,0);-ms-transform:matrix(0.235414,0.007062,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.235414,0.007062,-0.007497,0.249888,0,0);}
.me0_c00372{transform:matrix(0.235495,0.002119,-0.002250,0.249990,0,0);-ms-transform:matrix(0.235495,0.002119,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.235495,0.002119,-0.002250,0.249990,0,0);}
.mf8_c00372{transform:matrix(0.235718,0.005422,-0.005748,0.249934,0,0);-ms-transform:matrix(0.235718,0.005422,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.235718,0.005422,-0.005748,0.249934,0,0);}
.mbc_c00372{transform:matrix(0.235733,0.004950,-0.005249,0.249945,0,0);-ms-transform:matrix(0.235733,0.004950,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.235733,0.004950,-0.005249,0.249945,0,0);}
.m4b_c00372{transform:matrix(0.235878,0.004953,-0.005249,0.249945,0,0);-ms-transform:matrix(0.235878,0.004953,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.235878,0.004953,-0.005249,0.249945,0,0);}
.mc4_c00372{transform:matrix(0.235928,0.004954,-0.005249,0.249945,0,0);-ms-transform:matrix(0.235928,0.004954,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.235928,0.004954,-0.005249,0.249945,0,0);}
.ma9_c00372{transform:matrix(0.236128,0.004959,-0.005249,0.249945,0,0);-ms-transform:matrix(0.236128,0.004959,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.236128,0.004959,-0.005249,0.249945,0,0);}
.me7_c00372{transform:matrix(0.236351,0.002600,-0.002750,0.249985,0,0);-ms-transform:matrix(0.236351,0.002600,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.236351,0.002600,-0.002750,0.249985,0,0);}
.md9_c00372{transform:matrix(0.236730,0.002131,-0.002250,0.249990,0,0);-ms-transform:matrix(0.236730,0.002131,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.236730,0.002131,-0.002250,0.249990,0,0);}
.m5b_c00372{transform:matrix(0.236928,0.004975,-0.005249,0.249945,0,0);-ms-transform:matrix(0.236928,0.004975,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.236928,0.004975,-0.005249,0.249945,0,0);}
.m61_c00372{transform:matrix(0.236998,0.004977,-0.005249,0.249945,0,0);-ms-transform:matrix(0.236998,0.004977,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.236998,0.004977,-0.005249,0.249945,0,0);}
.mee_c00372{transform:matrix(0.237051,0.002608,-0.002750,0.249985,0,0);-ms-transform:matrix(0.237051,0.002608,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.237051,0.002608,-0.002750,0.249985,0,0);}
.m6e_c00372{transform:matrix(0.237073,0.004979,-0.005249,0.249945,0,0);-ms-transform:matrix(0.237073,0.004979,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.237073,0.004979,-0.005249,0.249945,0,0);}
.m154_c00372{transform:matrix(0.237073,0.011154,-0.011749,0.249724,0,0);-ms-transform:matrix(0.237073,0.011154,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.237073,0.011154,-0.011749,0.249724,0,0);}
.ma_c00372{transform:matrix(0.237093,0.002371,-0.002500,0.249988,0,0);-ms-transform:matrix(0.237093,0.002371,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.237093,0.002371,-0.002500,0.249988,0,0);}
.m93_c00372{transform:matrix(0.237543,0.004988,-0.005249,0.249945,0,0);-ms-transform:matrix(0.237543,0.004988,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.237543,0.004988,-0.005249,0.249945,0,0);}
.mef_c00372{transform:matrix(0.237606,0.002614,-0.002750,0.249985,0,0);-ms-transform:matrix(0.237606,0.002614,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.237606,0.002614,-0.002750,0.249985,0,0);}
.ma2_c00372{transform:matrix(0.237753,0.004993,-0.005249,0.249945,0,0);-ms-transform:matrix(0.237753,0.004993,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.237753,0.004993,-0.005249,0.249945,0,0);}
.mbf_c00372{transform:matrix(0.238387,0.005006,-0.005249,0.249945,0,0);-ms-transform:matrix(0.238387,0.005006,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.238387,0.005006,-0.005249,0.249945,0,0);}
.m1f_c00372{transform:matrix(0.238867,0.005016,-0.005249,0.249945,0,0);-ms-transform:matrix(0.238867,0.005016,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.238867,0.005016,-0.005249,0.249945,0,0);}
.m8c_c00372{transform:matrix(0.239232,0.005024,-0.005249,0.249945,0,0);-ms-transform:matrix(0.239232,0.005024,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.239232,0.005024,-0.005249,0.249945,0,0);}
.m87_c00372{transform:matrix(0.239597,0.005032,-0.005249,0.249945,0,0);-ms-transform:matrix(0.239597,0.005032,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.239597,0.005032,-0.005249,0.249945,0,0);}
.m112_c00372{transform:matrix(0.241556,0.007247,-0.007497,0.249888,0,0);-ms-transform:matrix(0.241556,0.007247,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.241556,0.007247,-0.007497,0.249888,0,0);}
.mad_c00372{transform:matrix(0.242082,0.005084,-0.005249,0.249945,0,0);-ms-transform:matrix(0.242082,0.005084,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.242082,0.005084,-0.005249,0.249945,0,0);}
.m123_c00372{transform:matrix(0.242870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242870,0.000000,0.000000,0.250000,0,0);}
.m10e_c00372{transform:matrix(0.243266,0.007298,-0.007497,0.249888,0,0);-ms-transform:matrix(0.243266,0.007298,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.243266,0.007298,-0.007497,0.249888,0,0);}
.me8_c00372{transform:matrix(0.243475,0.002678,-0.002750,0.249985,0,0);-ms-transform:matrix(0.243475,0.002678,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.243475,0.002678,-0.002750,0.249985,0,0);}
.m43_c00372{transform:matrix(0.244706,0.005139,-0.005249,0.249945,0,0);-ms-transform:matrix(0.244706,0.005139,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.244706,0.005139,-0.005249,0.249945,0,0);}
.m14e_c00372{transform:matrix(0.244774,0.011516,-0.011749,0.249724,0,0);-ms-transform:matrix(0.244774,0.011516,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.244774,0.011516,-0.011749,0.249724,0,0);}
.m12e_c00372{transform:matrix(0.244815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244815,0.000000,0.000000,0.250000,0,0);}
.m114_c00372{transform:matrix(0.245270,0.007358,-0.007497,0.249888,0,0);-ms-transform:matrix(0.245270,0.007358,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.245270,0.007358,-0.007497,0.249888,0,0);}
.m115_c00372{transform:matrix(0.249098,0.007473,-0.007497,0.249888,0,0);-ms-transform:matrix(0.249098,0.007473,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.249098,0.007473,-0.007497,0.249888,0,0);}
.m135_c00372{transform:matrix(0.250069,0.004251,-0.004249,0.249964,0,0);-ms-transform:matrix(0.250069,0.004251,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.250069,0.004251,-0.004249,0.249964,0,0);}
.m121_c00372{transform:matrix(0.250465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250465,0.000000,0.000000,0.250000,0,0);}
.m12b_c00372{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m157_c00372{transform:matrix(0.250538,0.011787,-0.011749,0.249724,0,0);-ms-transform:matrix(0.250538,0.011787,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.250538,0.011787,-0.011749,0.249724,0,0);}
.m147_c00372{transform:matrix(0.250868,0.011803,-0.011749,0.249724,0,0);-ms-transform:matrix(0.250868,0.011803,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.250868,0.011803,-0.011749,0.249724,0,0);}
.m31_c00372{transform:matrix(0.251150,0.005274,-0.005249,0.249945,0,0);-ms-transform:matrix(0.251150,0.005274,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.251150,0.005274,-0.005249,0.249945,0,0);}
.m107_c00372{transform:matrix(0.253211,0.007596,-0.007497,0.249888,0,0);-ms-transform:matrix(0.253211,0.007596,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.253211,0.007596,-0.007497,0.249888,0,0);}
.m144_c00372{transform:matrix(0.253460,0.011925,-0.011749,0.249724,0,0);-ms-transform:matrix(0.253460,0.011925,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.253460,0.011925,-0.011749,0.249724,0,0);}
.m8f_c00372{transform:matrix(0.253789,0.005330,-0.005249,0.249945,0,0);-ms-transform:matrix(0.253789,0.005330,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.253789,0.005330,-0.005249,0.249945,0,0);}
.m13a_c00372{transform:matrix(0.254328,0.005595,-0.005499,0.249940,0,0);-ms-transform:matrix(0.254328,0.005595,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.254328,0.005595,-0.005499,0.249940,0,0);}
.m13f_c00372{transform:matrix(0.254713,0.005604,-0.005499,0.249940,0,0);-ms-transform:matrix(0.254713,0.005604,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.254713,0.005604,-0.005499,0.249940,0,0);}
.mec_c00372{transform:matrix(0.254730,0.002802,-0.002750,0.249985,0,0);-ms-transform:matrix(0.254730,0.002802,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.254730,0.002802,-0.002750,0.249985,0,0);}
.m111_c00372{transform:matrix(0.254800,0.007644,-0.007497,0.249888,0,0);-ms-transform:matrix(0.254800,0.007644,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.254800,0.007644,-0.007497,0.249888,0,0);}
.m11d_c00372{transform:matrix(0.254925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254925,0.000000,0.000000,0.250000,0,0);}
.m106_c00372{transform:matrix(0.255095,0.007653,-0.007497,0.249888,0,0);-ms-transform:matrix(0.255095,0.007653,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.255095,0.007653,-0.007497,0.249888,0,0);}
.m149_c00372{transform:matrix(0.255098,0.012002,-0.011749,0.249724,0,0);-ms-transform:matrix(0.255098,0.012002,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.255098,0.012002,-0.011749,0.249724,0,0);}
.m10c_c00372{transform:matrix(0.255325,0.007660,-0.007497,0.249888,0,0);-ms-transform:matrix(0.255325,0.007660,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.255325,0.007660,-0.007497,0.249888,0,0);}
.m155_c00372{transform:matrix(0.255822,0.012036,-0.011749,0.249724,0,0);-ms-transform:matrix(0.255822,0.012036,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.255822,0.012036,-0.011749,0.249724,0,0);}
.m140_c00372{transform:matrix(0.256391,0.012062,-0.011749,0.249724,0,0);-ms-transform:matrix(0.256391,0.012062,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.256391,0.012062,-0.011749,0.249724,0,0);}
.m45_c00372{transform:matrix(0.256583,0.005388,-0.005249,0.249945,0,0);-ms-transform:matrix(0.256583,0.005388,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.256583,0.005388,-0.005249,0.249945,0,0);}
.m152_c00372{transform:matrix(0.257011,0.012092,-0.011749,0.249724,0,0);-ms-transform:matrix(0.257011,0.012092,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.257011,0.012092,-0.011749,0.249724,0,0);}
.m92_c00372{transform:matrix(0.257123,0.005400,-0.005249,0.249945,0,0);-ms-transform:matrix(0.257123,0.005400,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.257123,0.005400,-0.005249,0.249945,0,0);}
.m4_c00372{transform:matrix(0.259452,0.002595,-0.002500,0.249988,0,0);-ms-transform:matrix(0.259452,0.002595,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.259452,0.002595,-0.002500,0.249988,0,0);}
.m117_c00372{transform:matrix(0.261028,0.007831,-0.007497,0.249888,0,0);-ms-transform:matrix(0.261028,0.007831,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.261028,0.007831,-0.007497,0.249888,0,0);}
.m49_c00372{transform:matrix(0.261307,0.005487,-0.005249,0.249945,0,0);-ms-transform:matrix(0.261307,0.005487,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.261307,0.005487,-0.005249,0.249945,0,0);}
.m145_c00372{transform:matrix(0.261850,0.012319,-0.011749,0.249724,0,0);-ms-transform:matrix(0.261850,0.012319,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.261850,0.012319,-0.011749,0.249724,0,0);}
.mfc_c00372{transform:matrix(0.262446,0.006036,-0.005748,0.249934,0,0);-ms-transform:matrix(0.262446,0.006036,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.262446,0.006036,-0.005748,0.249934,0,0);}
.m46_c00372{transform:matrix(0.262562,0.005514,-0.005249,0.249945,0,0);-ms-transform:matrix(0.262562,0.005514,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.262562,0.005514,-0.005249,0.249945,0,0);}
.m109_c00372{transform:matrix(0.263347,0.007900,-0.007497,0.249888,0,0);-ms-transform:matrix(0.263347,0.007900,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.263347,0.007900,-0.007497,0.249888,0,0);}
.m88_c00372{transform:matrix(0.264047,0.005545,-0.005249,0.249945,0,0);-ms-transform:matrix(0.264047,0.005545,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.264047,0.005545,-0.005249,0.249945,0,0);}
.m4d_c00372{transform:matrix(0.265751,0.005581,-0.005249,0.249945,0,0);-ms-transform:matrix(0.265751,0.005581,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.265751,0.005581,-0.005249,0.249945,0,0);}
.mf4_c00372{transform:matrix(0.266140,0.006121,-0.005748,0.249934,0,0);-ms-transform:matrix(0.266140,0.006121,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.266140,0.006121,-0.005748,0.249934,0,0);}
.mf2_c00372{transform:matrix(0.267094,0.006143,-0.005748,0.249934,0,0);-ms-transform:matrix(0.267094,0.006143,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.267094,0.006143,-0.005748,0.249934,0,0);}
.m142_c00372{transform:matrix(0.267594,0.012590,-0.011749,0.249724,0,0);-ms-transform:matrix(0.267594,0.012590,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.267594,0.012590,-0.011749,0.249724,0,0);}
.m10d_c00372{transform:matrix(0.268329,0.008050,-0.007497,0.249888,0,0);-ms-transform:matrix(0.268329,0.008050,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.268329,0.008050,-0.007497,0.249888,0,0);}
.m134_c00372{transform:matrix(0.268656,0.004567,-0.004249,0.249964,0,0);-ms-transform:matrix(0.268656,0.004567,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.268656,0.004567,-0.004249,0.249964,0,0);}
.m47_c00372{transform:matrix(0.269121,0.005652,-0.005249,0.249945,0,0);-ms-transform:matrix(0.269121,0.005652,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.269121,0.005652,-0.005249,0.249945,0,0);}
.m8d_c00372{transform:matrix(0.269331,0.005656,-0.005249,0.249945,0,0);-ms-transform:matrix(0.269331,0.005656,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.269331,0.005656,-0.005249,0.249945,0,0);}
.m10f_c00372{transform:matrix(0.269464,0.008084,-0.007497,0.249888,0,0);-ms-transform:matrix(0.269464,0.008084,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.269464,0.008084,-0.007497,0.249888,0,0);}
.m138_c00372{transform:matrix(0.270094,0.007563,-0.006997,0.249902,0,0);-ms-transform:matrix(0.270094,0.007563,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.270094,0.007563,-0.006997,0.249902,0,0);}
.m133_c00372{transform:matrix(0.271071,0.004608,-0.004249,0.249964,0,0);-ms-transform:matrix(0.271071,0.004608,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.271071,0.004608,-0.004249,0.249964,0,0);}
.m6d_c00372{transform:matrix(0.271100,0.005693,-0.005249,0.249945,0,0);-ms-transform:matrix(0.271100,0.005693,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.271100,0.005693,-0.005249,0.249945,0,0);}
.m148_c00372{transform:matrix(0.271250,0.012762,-0.011749,0.249724,0,0);-ms-transform:matrix(0.271250,0.012762,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.271250,0.012762,-0.011749,0.249724,0,0);}
.mf6_c00372{transform:matrix(0.272273,0.006262,-0.005748,0.249934,0,0);-ms-transform:matrix(0.272273,0.006262,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.272273,0.006262,-0.005748,0.249934,0,0);}
.m8b_c00372{transform:matrix(0.273580,0.005745,-0.005249,0.249945,0,0);-ms-transform:matrix(0.273580,0.005745,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.273580,0.005745,-0.005249,0.249945,0,0);}
.mfd_c00372{transform:matrix(0.275227,0.006330,-0.005748,0.249934,0,0);-ms-transform:matrix(0.275227,0.006330,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.275227,0.006330,-0.005748,0.249934,0,0);}
.m11c_c00372{transform:matrix(0.278490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278490,0.000000,0.000000,0.250000,0,0);}
.m10b_c00372{transform:matrix(0.278855,0.008366,-0.007497,0.249888,0,0);-ms-transform:matrix(0.278855,0.008366,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.278855,0.008366,-0.007497,0.249888,0,0);}
.m13d_c00372{transform:matrix(0.279062,0.006139,-0.005499,0.249940,0,0);-ms-transform:matrix(0.279062,0.006139,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.279062,0.006139,-0.005499,0.249940,0,0);}
.m4a_c00372{transform:matrix(0.280963,0.005900,-0.005249,0.249945,0,0);-ms-transform:matrix(0.280963,0.005900,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.280963,0.005900,-0.005249,0.249945,0,0);}
.m143_c00372{transform:matrix(0.281524,0.013245,-0.011749,0.249724,0,0);-ms-transform:matrix(0.281524,0.013245,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.281524,0.013245,-0.011749,0.249724,0,0);}
.m90_c00372{transform:matrix(0.283083,0.005945,-0.005249,0.249945,0,0);-ms-transform:matrix(0.283083,0.005945,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.283083,0.005945,-0.005249,0.249945,0,0);}
.m132_c00372{transform:matrix(0.285614,0.004855,-0.004249,0.249964,0,0);-ms-transform:matrix(0.285614,0.004855,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.285614,0.004855,-0.004249,0.249964,0,0);}
.mf3_c00372{transform:matrix(0.288759,0.006641,-0.005748,0.249934,0,0);-ms-transform:matrix(0.288759,0.006641,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.288759,0.006641,-0.005748,0.249934,0,0);}
.m11e_c00372{transform:matrix(0.291450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291450,0.000000,0.000000,0.250000,0,0);}
.m146_c00372{transform:matrix(0.292057,0.013740,-0.011749,0.249724,0,0);-ms-transform:matrix(0.292057,0.013740,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.292057,0.013740,-0.011749,0.249724,0,0);}
.m11f_c00372{transform:matrix(0.293885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293885,0.000000,0.000000,0.250000,0,0);}
.mfb_c00372{transform:matrix(0.297611,0.006845,-0.005748,0.249934,0,0);-ms-transform:matrix(0.297611,0.006845,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.297611,0.006845,-0.005748,0.249934,0,0);}
.m14a_c00372{transform:matrix(0.298535,0.014045,-0.011749,0.249724,0,0);-ms-transform:matrix(0.298535,0.014045,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.298535,0.014045,-0.011749,0.249724,0,0);}
.m120_c00372{transform:matrix(0.301260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301260,0.000000,0.000000,0.250000,0,0);}
.m137_c00372{transform:matrix(0.301962,0.008455,-0.006997,0.249902,0,0);-ms-transform:matrix(0.301962,0.008455,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.301962,0.008455,-0.006997,0.249902,0,0);}
.mf7_c00372{transform:matrix(0.303185,0.006973,-0.005748,0.249934,0,0);-ms-transform:matrix(0.303185,0.006973,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.303185,0.006973,-0.005748,0.249934,0,0);}
.mf9_c00372{transform:matrix(0.304130,0.006995,-0.005748,0.249934,0,0);-ms-transform:matrix(0.304130,0.006995,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.304130,0.006995,-0.005748,0.249934,0,0);}
.mea_c00372{transform:matrix(0.305337,0.003359,-0.002750,0.249985,0,0);-ms-transform:matrix(0.305337,0.003359,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.305337,0.003359,-0.002750,0.249985,0,0);}
.mf5_c00372{transform:matrix(0.306734,0.007055,-0.005748,0.249934,0,0);-ms-transform:matrix(0.306734,0.007055,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.306734,0.007055,-0.005748,0.249934,0,0);}
.m139_c00372{transform:matrix(0.307779,0.008618,-0.006997,0.249902,0,0);-ms-transform:matrix(0.307779,0.008618,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.307779,0.008618,-0.006997,0.249902,0,0);}
.m136_c00372{transform:matrix(0.308705,0.005248,-0.004249,0.249964,0,0);-ms-transform:matrix(0.308705,0.005248,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.308705,0.005248,-0.004249,0.249964,0,0);}
.m30_c00372{transform:matrix(0.326673,0.006860,-0.005249,0.249945,0,0);-ms-transform:matrix(0.326673,0.006860,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.326673,0.006860,-0.005249,0.249945,0,0);}
.me9_c00372{transform:matrix(0.348309,0.003831,-0.002750,0.249985,0,0);-ms-transform:matrix(0.348309,0.003831,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.348309,0.003831,-0.002750,0.249985,0,0);}
.m14d_c00372{transform:matrix(0.360671,0.016969,-0.011749,0.249724,0,0);-ms-transform:matrix(0.360671,0.016969,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.360671,0.016969,-0.011749,0.249724,0,0);}
.m12d_c00372{transform:matrix(0.395615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395615,0.000000,0.000000,0.250000,0,0);}
.m141_c00372{transform:matrix(0.402240,0.018924,-0.011749,0.249724,0,0);-ms-transform:matrix(0.402240,0.018924,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.402240,0.018924,-0.011749,0.249724,0,0);}
.m11a_c00372{transform:matrix(1.205470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.205470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.205470,0.000000,0.000000,0.250000,0,0);}
.v0_c00372{vertical-align:0.000000px;}
.ls0_c00372{letter-spacing:0.000000px;}
.sc__c00372{text-shadow:none;}
.sc0_c00372{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__c00372{-webkit-text-stroke:0px transparent;}
.sc0_c00372{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00372{word-spacing:0.000000px;}
._0_c00372{width:44.562811px;}
.fc0_c00372{color:transparent;}
.fse_c00372{font-size:36.000000px;}
.fsf_c00372{font-size:66.000000px;}
.fs15_c00372{font-size:66.006930px;}
.fs11_c00372{font-size:66.009536px;}
.fsa_c00372{font-size:66.017455px;}
.fs12_c00372{font-size:66.025867px;}
.fs14_c00372{font-size:72.007560px;}
.fs6_c00372{font-size:72.015874px;}
.fs13_c00372{font-size:72.017422px;}
.fsc_c00372{font-size:72.032393px;}
.fs9_c00372{font-size:78.004719px;}
.fs16_c00372{font-size:78.008190px;}
.fsd_c00372{font-size:78.035092px;}
.fs0_c00372{font-size:84.000000px;}
.fs8_c00372{font-size:84.003402px;}
.fs1_c00372{font-size:84.004200px;}
.fs3_c00372{font-size:84.018520px;}
.fs2_c00372{font-size:90.016244px;}
.fs4_c00372{font-size:90.019843px;}
.fs10_c00372{font-size:96.000000px;}
.fs7_c00372{font-size:96.021166px;}
.fsb_c00372{font-size:96.025389px;}
.fs5_c00372{font-size:102.022489px;}
.fs17_c00372{font-size:120.023998px;}
.y0_c00372{bottom:0.000000px;}
.y163_c00372{bottom:83.813160px;}
.y162_c00372{bottom:84.461250px;}
.y161_c00372{bottom:84.915630px;}
.y160_c00372{bottom:86.017560px;}
.y15f_c00372{bottom:87.545460px;}
.y15e_c00372{bottom:89.056080px;}
.y15d_c00372{bottom:89.913000px;}
.y15c_c00372{bottom:124.607493px;}
.y15b_c00372{bottom:125.391015px;}
.y15a_c00372{bottom:127.004817px;}
.y159_c00372{bottom:128.603292px;}
.y158_c00372{bottom:128.988402px;}
.y151_c00372{bottom:129.599698px;}
.y150_c00372{bottom:130.465077px;}
.y157_c00372{bottom:130.620827px;}
.y156_c00372{bottom:131.610883px;}
.y155_c00372{bottom:132.404307px;}
.y14f_c00372{bottom:132.469528px;}
.y154_c00372{bottom:132.990456px;}
.y14e_c00372{bottom:133.347611px;}
.y153_c00372{bottom:133.998308px;}
.y14d_c00372{bottom:134.040216px;}
.y14c_c00372{bottom:134.696016px;}
.y152_c00372{bottom:134.756724px;}
.y14b_c00372{bottom:136.028106px;}
.y14a_c00372{bottom:136.919913px;}
.y149_c00372{bottom:137.574656px;}
.y148_c00372{bottom:139.078531px;}
.y147_c00372{bottom:139.529828px;}
.y146_c00372{bottom:142.717062px;}
.y145_c00372{bottom:144.750000px;}
.y13b_c00372{bottom:150.640310px;}
.y13a_c00372{bottom:152.027544px;}
.y144_c00372{bottom:153.857232px;}
.y143_c00372{bottom:154.588083px;}
.y142_c00372{bottom:157.488453px;}
.y141_c00372{bottom:158.480466px;}
.y140_c00372{bottom:159.202737px;}
.y139_c00372{bottom:160.018788px;}
.y13f_c00372{bottom:160.384500px;}
.y138_c00372{bottom:160.969097px;}
.y137_c00372{bottom:161.925245px;}
.y136_c00372{bottom:169.561500px;}
.y128_c00372{bottom:172.531500px;}
.y129_c00372{bottom:173.023500px;}
.y12a_c00372{bottom:173.694000px;}
.y12b_c00372{bottom:174.391500px;}
.y12c_c00372{bottom:174.591000px;}
.y12d_c00372{bottom:174.996000px;}
.y12e_c00372{bottom:175.683000px;}
.y12f_c00372{bottom:175.980000px;}
.y130_c00372{bottom:176.377500px;}
.y131_c00372{bottom:176.686500px;}
.y132_c00372{bottom:177.067500px;}
.y133_c00372{bottom:177.480000px;}
.y134_c00372{bottom:177.885000px;}
.y135_c00372{bottom:178.288500px;}
.y127_c00372{bottom:193.927500px;}
.y126_c00372{bottom:225.078000px;}
.y13e_c00372{bottom:236.002218px;}
.y13d_c00372{bottom:237.243066px;}
.y13c_c00372{bottom:239.770500px;}
.y125_c00372{bottom:241.378665px;}
.y124_c00372{bottom:242.044185px;}
.y123_c00372{bottom:244.508010px;}
.y122_c00372{bottom:245.129415px;}
.y121_c00372{bottom:246.908250px;}
.y120_c00372{bottom:248.631030px;}
.y11f_c00372{bottom:249.277380px;}
.y11e_c00372{bottom:249.733965px;}
.y11d_c00372{bottom:267.624120px;}
.y11c_c00372{bottom:268.618755px;}
.y11b_c00372{bottom:270.644565px;}
.y11a_c00372{bottom:271.634025px;}
.y119_c00372{bottom:273.645075px;}
.y118_c00372{bottom:274.338930px;}
.y117_c00372{bottom:277.309020px;}
.y116_c00372{bottom:278.305860px;}
.y115_c00372{bottom:280.307100px;}
.y114_c00372{bottom:281.278155px;}
.y113_c00372{bottom:282.932490px;}
.y112_c00372{bottom:284.592000px;}
.y111_c00372{bottom:315.143046px;}
.y110_c00372{bottom:316.378852px;}
.y10f_c00372{bottom:317.577790px;}
.y10e_c00372{bottom:318.156384px;}
.y10d_c00372{bottom:318.568785px;}
.y10c_c00372{bottom:319.750488px;}
.y10b_c00372{bottom:320.714984px;}
.y10a_c00372{bottom:321.291438px;}
.y109_c00372{bottom:340.889626px;}
.y108_c00372{bottom:341.665670px;}
.y107_c00372{bottom:343.224690px;}
.y106_c00372{bottom:343.720213px;}
.y105_c00372{bottom:346.529549px;}
.y104_c00372{bottom:347.300520px;}
.y103_c00372{bottom:349.600911px;}
.y102_c00372{bottom:350.396447px;}
.y101_c00372{bottom:353.904890px;}
.y100_c00372{bottom:354.915843px;}
.yff_c00372{bottom:355.427996px;}
.yfe_c00372{bottom:356.403000px;}
.yfd_c00372{bottom:375.845117px;}
.yfc_c00372{bottom:376.344406px;}
.yfb_c00372{bottom:377.060292px;}
.yfa_c00372{bottom:377.562552px;}
.yf9_c00372{bottom:377.924975px;}
.yf8_c00372{bottom:378.792677px;}
.yf7_c00372{bottom:379.155198px;}
.yf6_c00372{bottom:379.520970px;}
.yf5_c00372{bottom:380.610762px;}
.yf4_c00372{bottom:381.341630px;}
.yf3_c00372{bottom:381.837191px;}
.yf2_c00372{bottom:382.514895px;}
.yf1_c00372{bottom:383.131500px;}
.yf0_c00372{bottom:415.500193px;}
.yef_c00372{bottom:416.287594px;}
.yee_c00372{bottom:416.994805px;}
.yed_c00372{bottom:417.208659px;}
.yec_c00372{bottom:417.999016px;}
.yeb_c00372{bottom:418.302793px;}
.yea_c00372{bottom:419.010004px;}
.ye9_c00372{bottom:419.700354px;}
.ye8_c00372{bottom:419.899371px;}
.ye7_c00372{bottom:420.288225px;}
.ye6_c00372{bottom:420.584779px;}
.ye5_c00372{bottom:421.471500px;}
.ye4_c00372{bottom:448.047624px;}
.ye3_c00372{bottom:448.895335px;}
.ye2_c00372{bottom:450.348939px;}
.ye1_c00372{bottom:452.414900px;}
.ye0_c00372{bottom:453.263651px;}
.ydf_c00372{bottom:454.980627px;}
.yde_c00372{bottom:455.856967px;}
.ydd_c00372{bottom:459.002226px;}
.ydc_c00372{bottom:459.878882px;}
.ydb_c00372{bottom:460.728200px;}
.yda_c00372{bottom:461.883072px;}
.yd9_c00372{bottom:463.833765px;}
.yd8_c00372{bottom:483.390962px;}
.yd7_c00372{bottom:485.368683px;}
.yd6_c00372{bottom:485.981607px;}
.yd5_c00372{bottom:486.584471px;}
.yd4_c00372{bottom:487.985057px;}
.yd3_c00372{bottom:488.791623px;}
.yd2_c00372{bottom:490.372610px;}
.yd1_c00372{bottom:491.971544px;}
.yd0_c00372{bottom:492.972056px;}
.ycf_c00372{bottom:493.561539px;}
.yce_c00372{bottom:493.958873px;}
.ycd_c00372{bottom:495.699107px;}
.ycc_c00372{bottom:519.594147px;}
.ycb_c00372{bottom:520.615649px;}
.yca_c00372{bottom:521.195289px;}
.yc9_c00372{bottom:522.354393px;}
.yc8_c00372{bottom:522.923225px;}
.yc7_c00372{bottom:523.365924px;}
.yc6_c00372{bottom:524.528612px;}
.yc5_c00372{bottom:524.946999px;}
.yc4_c00372{bottom:525.813773px;}
.yc3_c00372{bottom:526.105032px;}
.yc2_c00372{bottom:527.513738px;}
.yc1_c00372{bottom:528.375983px;}
.yc0_c00372{bottom:554.641118px;}
.ybf_c00372{bottom:555.337173px;}
.ybe_c00372{bottom:556.506485px;}
.ybd_c00372{bottom:558.639854px;}
.ybc_c00372{bottom:559.773602px;}
.ybb_c00372{bottom:560.943512px;}
.yba_c00372{bottom:563.036718px;}
.yb9_c00372{bottom:564.443162px;}
.yb8_c00372{bottom:565.344503px;}
.yb7_c00372{bottom:566.512271px;}
.yb6_c00372{bottom:567.197112px;}
.yb5_c00372{bottom:568.346327px;}
.yb4_c00372{bottom:592.334858px;}
.yb3_c00372{bottom:593.258626px;}
.yb2_c00372{bottom:595.607267px;}
.yb1_c00372{bottom:596.328144px;}
.yb0_c00372{bottom:597.723846px;}
.yaf_c00372{bottom:599.113878px;}
.yae_c00372{bottom:601.205541px;}
.yad_c00372{bottom:602.374727px;}
.yac_c00372{bottom:603.996000px;}
.ya7_c00372{bottom:635.767119px;}
.yaa_c00372{bottom:635.767505px;}
.yab_c00372{bottom:635.767572px;}
.ya8_c00372{bottom:635.767866px;}
.ya9_c00372{bottom:635.768093px;}
.ya6_c00372{bottom:659.975346px;}
.ya5_c00372{bottom:661.033563px;}
.ya4_c00372{bottom:661.654030px;}
.ya3_c00372{bottom:663.379446px;}
.ya2_c00372{bottom:664.236714px;}
.ya1_c00372{bottom:665.257485px;}
.ya0_c00372{bottom:665.894010px;}
.y9f_c00372{bottom:666.744726px;}
.y9e_c00372{bottom:667.167375px;}
.y9d_c00372{bottom:668.623490px;}
.y9c_c00372{bottom:669.270914px;}
.y9b_c00372{bottom:669.902198px;}
.y9a_c00372{bottom:671.362923px;}
.y99_c00372{bottom:671.978256px;}
.y98_c00372{bottom:672.407520px;}
.y97_c00372{bottom:673.027244px;}
.y96_c00372{bottom:695.342723px;}
.y95_c00372{bottom:696.415032px;}
.y94_c00372{bottom:697.051022px;}
.y93_c00372{bottom:699.391455px;}
.y92_c00372{bottom:700.258658px;}
.y91_c00372{bottom:700.869518px;}
.y90_c00372{bottom:702.361799px;}
.y8f_c00372{bottom:702.987854px;}
.y8e_c00372{bottom:704.656490px;}
.y8d_c00372{bottom:705.481320px;}
.y8c_c00372{bottom:706.123295px;}
.y8b_c00372{bottom:707.379752px;}
.y8a_c00372{bottom:708.403610px;}
.y89_c00372{bottom:735.429357px;}
.y88_c00372{bottom:735.966908px;}
.y87_c00372{bottom:736.310655px;}
.y86_c00372{bottom:736.651103px;}
.y85_c00372{bottom:737.100744px;}
.y84_c00372{bottom:737.759000px;}
.y83_c00372{bottom:738.096128px;}
.y82_c00372{bottom:738.884862px;}
.y81_c00372{bottom:739.316814px;}
.y80_c00372{bottom:739.856814px;}
.y7f_c00372{bottom:740.200373px;}
.y7e_c00372{bottom:740.752872px;}
.y7d_c00372{bottom:741.620285px;}
.y7c_c00372{bottom:768.082569px;}
.y7b_c00372{bottom:771.057824px;}
.y7a_c00372{bottom:771.855399px;}
.y79_c00372{bottom:774.254465px;}
.y78_c00372{bottom:775.875410px;}
.y77_c00372{bottom:777.464324px;}
.y76_c00372{bottom:778.523747px;}
.y75_c00372{bottom:779.309144px;}
.y74_c00372{bottom:780.099695px;}
.y73_c00372{bottom:782.237102px;}
.y72_c00372{bottom:783.783968px;}
.y71_c00372{bottom:784.565333px;}
.y70_c00372{bottom:804.122075px;}
.y6f_c00372{bottom:805.336848px;}
.y6e_c00372{bottom:805.752234px;}
.y6d_c00372{bottom:807.093335px;}
.y6c_c00372{bottom:807.493064px;}
.y6b_c00372{bottom:807.885197px;}
.y6a_c00372{bottom:809.230877px;}
.y69_c00372{bottom:809.616233px;}
.y68_c00372{bottom:810.015206px;}
.y67_c00372{bottom:811.198035px;}
.y66_c00372{bottom:811.732833px;}
.y65_c00372{bottom:812.377155px;}
.y64_c00372{bottom:839.341058px;}
.y63_c00372{bottom:841.389266px;}
.y62_c00372{bottom:842.185898px;}
.y61_c00372{bottom:842.788856px;}
.y60_c00372{bottom:844.004643px;}
.y5f_c00372{bottom:844.603463px;}
.y5e_c00372{bottom:845.196392px;}
.y5d_c00372{bottom:847.773122px;}
.y5c_c00372{bottom:848.381466px;}
.y5b_c00372{bottom:849.392543px;}
.y5a_c00372{bottom:850.363944px;}
.y59_c00372{bottom:851.538545px;}
.y58_c00372{bottom:875.429697px;}
.y57_c00372{bottom:877.123545px;}
.y56_c00372{bottom:877.904886px;}
.y55_c00372{bottom:879.416643px;}
.y54_c00372{bottom:881.332419px;}
.y53_c00372{bottom:881.878055px;}
.y52_c00372{bottom:882.447635px;}
.y51_c00372{bottom:883.760601px;}
.y50_c00372{bottom:885.990812px;}
.y4f_c00372{bottom:886.916163px;}
.y4e_c00372{bottom:913.401587px;}
.y4d_c00372{bottom:913.960728px;}
.y4c_c00372{bottom:914.538837px;}
.y4b_c00372{bottom:916.835223px;}
.y4a_c00372{bottom:917.947592px;}
.y49_c00372{bottom:918.517361px;}
.y48_c00372{bottom:920.013564px;}
.y47_c00372{bottom:921.519419px;}
.y46_c00372{bottom:922.459485px;}
.y45_c00372{bottom:923.000447px;}
.y44_c00372{bottom:923.913237px;}
.y43_c00372{bottom:948.599399px;}
.y42_c00372{bottom:949.955073px;}
.y41_c00372{bottom:951.306345px;}
.y40_c00372{bottom:951.824384px;}
.y3f_c00372{bottom:952.113014px;}
.y3e_c00372{bottom:953.290484px;}
.y3d_c00372{bottom:953.696234px;}
.y3c_c00372{bottom:954.632958px;}
.y3b_c00372{bottom:955.024871px;}
.y3a_c00372{bottom:956.074104px;}
.y39_c00372{bottom:956.589284px;}
.y38_c00372{bottom:981.680181px;}
.y37_c00372{bottom:983.667287px;}
.y36_c00372{bottom:984.367866px;}
.y35_c00372{bottom:985.988774px;}
.y34_c00372{bottom:987.942311px;}
.y33_c00372{bottom:988.633920px;}
.y32_c00372{bottom:989.145146px;}
.y31_c00372{bottom:990.224579px;}
.y30_c00372{bottom:991.101612px;}
.y2f_c00372{bottom:992.509367px;}
.y2e_c00372{bottom:1020.550398px;}
.y2d_c00372{bottom:1021.073574px;}
.y2c_c00372{bottom:1021.577048px;}
.y2b_c00372{bottom:1021.880829px;}
.y2a_c00372{bottom:1022.176758px;}
.y29_c00372{bottom:1022.569826px;}
.y28_c00372{bottom:1023.366905px;}
.y27_c00372{bottom:1024.269447px;}
.y26_c00372{bottom:1024.572410px;}
.y25_c00372{bottom:1025.172309px;}
.y24_c00372{bottom:1025.666193px;}
.y23_c00372{bottom:1025.955140px;}
.y22_c00372{bottom:1026.533033px;}
.y21_c00372{bottom:1053.953259px;}
.y20_c00372{bottom:1058.183804px;}
.y1f_c00372{bottom:1058.882001px;}
.y1e_c00372{bottom:1060.061582px;}
.y1d_c00372{bottom:1061.230421px;}
.y1c_c00372{bottom:1061.916333px;}
.y1b_c00372{bottom:1063.282740px;}
.y1a_c00372{bottom:1064.003145px;}
.y19_c00372{bottom:1064.712210px;}
.y18_c00372{bottom:1065.426000px;}
.y17_c00372{bottom:1093.156488px;}
.y16_c00372{bottom:1095.941280px;}
.y15_c00372{bottom:1096.578255px;}
.y14_c00372{bottom:1097.007835px;}
.y13_c00372{bottom:1098.245590px;}
.y12_c00372{bottom:1099.553028px;}
.y11_c00372{bottom:1100.375053px;}
.y10_c00372{bottom:1101.857367px;}
.yf_c00372{bottom:1102.636699px;}
.ye_c00372{bottom:1103.491500px;}
.yd_c00372{bottom:1125.737175px;}
.yc_c00372{bottom:1126.071285px;}
.yb_c00372{bottom:1127.183820px;}
.ya_c00372{bottom:1127.526570px;}
.y9_c00372{bottom:1127.758785px;}
.y8_c00372{bottom:1128.420660px;}
.y7_c00372{bottom:1128.858180px;}
.y6_c00372{bottom:1129.646700px;}
.y5_c00372{bottom:1129.970820px;}
.y4_c00372{bottom:1130.729610px;}
.y3_c00372{bottom:1131.731205px;}
.y2_c00372{bottom:1132.381500px;}
.y1_c00372{bottom:1207.849500px;}
.h10_c00372{height:36.000000px;}
.h11_c00372{height:66.000000px;}
.h17_c00372{height:66.006930px;}
.h13_c00372{height:66.009536px;}
.hc_c00372{height:66.017455px;}
.h14_c00372{height:66.025867px;}
.h16_c00372{height:72.007560px;}
.h8_c00372{height:72.015874px;}
.h15_c00372{height:72.017422px;}
.he_c00372{height:72.032393px;}
.hb_c00372{height:78.004719px;}
.h18_c00372{height:78.008190px;}
.hf_c00372{height:78.035092px;}
.h2_c00372{height:84.000000px;}
.ha_c00372{height:84.003402px;}
.h3_c00372{height:84.004200px;}
.h5_c00372{height:84.018520px;}
.h4_c00372{height:90.016244px;}
.h6_c00372{height:90.019843px;}
.h12_c00372{height:96.000000px;}
.h9_c00372{height:96.021166px;}
.hd_c00372{height:96.025389px;}
.h7_c00372{height:102.022489px;}
.h19_c00372{height:120.023998px;}
.h0_c00372{height:1251.450000px;}
.h1_c00372{height:1251.750000px;}
.w0_c00372{width:915.000000px;}
.x0_c00372{left:0.000000px;}
.xa7_c00372{left:149.850000px;}
.x6a_c00372{left:153.162405px;}
.x50_c00372{left:154.272924px;}
.x27_c00372{left:155.297724px;}
.x2_c00372{left:156.462000px;}
.xa3_c00372{left:175.566240px;}
.x60_c00372{left:186.108630px;}
.x46_c00372{left:187.449596px;}
.x93_c00372{left:195.627000px;}
.x2d_c00372{left:199.064714px;}
.xe_c00372{left:200.947500px;}
.xa8_c00372{left:206.280000px;}
.x58_c00372{left:208.150940px;}
.x43_c00372{left:209.290391px;}
.x32_c00372{left:210.382962px;}
.x94_c00372{left:217.894500px;}
.x6e_c00372{left:219.243428px;}
.x3f_c00372{left:220.315146px;}
.x3_c00372{left:221.491500px;}
.x7c_c00372{left:228.425339px;}
.x99_c00372{left:238.982274px;}
.x51_c00372{left:240.955427px;}
.xf_c00372{left:241.965000px;}
.x28_c00372{left:243.271454px;}
.xc3_c00372{left:248.308702px;}
.x47_c00372{left:251.891532px;}
.x1e_c00372{left:253.640561px;}
.xa9_c00372{left:260.280000px;}
.x95_c00372{left:261.849000px;}
.x16_c00372{left:263.512500px;}
.x8a_c00372{left:271.407000px;}
.x76_c00372{left:273.183023px;}
.x40_c00372{left:274.290048px;}
.xad_c00372{left:282.045000px;}
.x83_c00372{left:283.887000px;}
.x2e_c00372{left:286.544751px;}
.xb8_c00372{left:292.884000px;}
.xa4_c00372{left:293.972700px;}
.xaa_c00372{left:295.110000px;}
.x52_c00372{left:296.277716px;}
.x17_c00372{left:297.502500px;}
.x9a_c00372{left:304.650829px;}
.x77_c00372{left:305.898570px;}
.x1f_c00372{left:308.458358px;}
.x8b_c00372{left:316.458000px;}
.x61_c00372{left:317.986674px;}
.x10_c00372{left:319.981500px;}
.x4_c00372{left:321.651000px;}
.xbd_c00372{left:325.514889px;}
.x84_c00372{left:327.093000px;}
.x67_c00372{left:328.554000px;}
.x18_c00372{left:331.267500px;}
.xc4_c00372{left:336.584091px;}
.xb9_c00372{left:337.975500px;}
.x6b_c00372{left:339.027405px;}
.x39_c00372{left:341.252477px;}
.xc9_c00372{left:347.187000px;}
.x6f_c00372{left:349.930352px;}
.x62_c00372{left:351.192060px;}
.x44_c00372{left:352.394918px;}
.x9b_c00372{left:359.678643px;}
.x78_c00372{left:361.474067px;}
.x11_c00372{left:363.246000px;}
.x19_c00372{left:365.572500px;}
.xbe_c00372{left:370.007808px;}
.x9d_c00372{left:371.409000px;}
.x48_c00372{left:373.881846px;}
.x20_c00372{left:375.184679px;}
.xab_c00372{left:380.700000px;}
.x8c_c00372{left:382.900500px;}
.x53_c00372{left:384.586596px;}
.x33_c00372{left:386.130236px;}
.x5_c00372{left:397.530000px;}
.xca_c00372{left:402.283500px;}
.x9e_c00372{left:403.777500px;}
.x49_c00372{left:406.636799px;}
.x21_c00372{left:408.905684px;}
.x96_c00372{left:414.390000px;}
.x70_c00372{left:416.645066px;}
.x3a_c00372{left:418.495466px;}
.x1_c00372{left:419.580000px;}
.x85_c00372{left:425.911500px;}
.x54_c00372{left:427.808582px;}
.x6_c00372{left:429.942000px;}
.x2f_c00372{left:431.019030px;}
.x12_c00372{left:432.058500px;}
.xc5_c00372{left:435.430864px;}
.xbf_c00372{left:436.468113px;}
.x59_c00372{left:439.298642px;}
.x29_c00372{left:440.663649px;}
.x71_c00372{left:448.787952px;}
.x4a_c00372{left:450.797027px;}
.x3b_c00372{left:451.978269px;}
.xac_c00372{left:457.920000px;}
.x7d_c00372{left:460.215521px;}
.x63_c00372{left:461.865191px;}
.x1a_c00372{left:463.302000px;}
.xc0_c00372{left:469.145328px;}
.x9f_c00372{left:470.485500px;}
.x5a_c00372{left:472.255028px;}
.x34_c00372{left:474.171138px;}
.x8d_c00372{left:481.972500px;}
.x3c_c00372{left:484.106478px;}
.x7e_c00372{left:493.942493px;}
.x9c_c00372{left:494.965702px;}
.x13_c00372{left:497.203500px;}
.xae_c00372{left:503.080500px;}
.x86_c00372{left:504.490500px;}
.x6c_c00372{left:505.677405px;}
.x35_c00372{left:507.662942px;}
.x7_c00372{left:508.794000px;}
.x8e_c00372{left:515.224500px;}
.x4b_c00372{left:517.026869px;}
.x14_c00372{left:519.813000px;}
.xc6_c00372{left:525.895596px;}
.x30_c00372{left:529.107552px;}
.xaf_c00372{left:536.005500px;}
.xa5_c00372{left:537.131055px;}
.x72_c00372{left:538.240477px;}
.x41_c00372{left:540.286775px;}
.x8f_c00372{left:548.181000px;}
.x5b_c00372{left:550.819335px;}
.x8_c00372{left:552.546000px;}
.x7f_c00372{left:559.982063px;}
.x6d_c00372{left:561.387405px;}
.x2a_c00372{left:562.773470px;}
.xa6_c00372{left:570.375000px;}
.x36_c00372{left:573.066923px;}
.x1b_c00372{left:575.131500px;}
.xb0_c00372{left:580.150500px;}
.x5c_c00372{left:582.980690px;}
.x4c_c00372{left:584.567616px;}
.x80_c00372{left:592.609629px;}
.x31_c00372{left:596.318747px;}
.x22_c00372{left:597.744749px;}
.xa0_c00372{left:602.716500px;}
.x55_c00372{left:606.307815px;}
.x1c_c00372{left:608.379000px;}
.xb1_c00372{left:614.530500px;}
.x64_c00372{left:616.212711px;}
.x9_c00372{left:618.733500px;}
.x87_c00372{left:626.061000px;}
.x90_c00372{left:627.063000px;}
.x5d_c00372{left:628.635111px;}
.xc7_c00372{left:635.826876px;}
.xa_c00372{left:641.955000px;}
.xc1_c00372{left:647.508606px;}
.x88_c00372{left:649.822500px;}
.x56_c00372{left:651.229679px;}
.xb2_c00372{left:656.814000px;}
.x91_c00372{left:660.010500px;}
.x65_c00372{left:661.322601px;}
.x2b_c00372{left:664.041585px;}
.x81_c00372{left:672.051782px;}
.x23_c00372{left:674.430589px;}
.xb_c00372{left:676.230000px;}
.x4d_c00372{left:684.516816px;}
.x3d_c00372{left:685.696394px;}
.xc2_c00372{left:690.673661px;}
.xa1_c00372{left:692.880000px;}
.x79_c00372{left:694.301546px;}
.x15_c00372{left:699.906000px;}
.xb3_c00372{left:702.720000px;}
.x73_c00372{left:705.203513px;}
.x24_c00372{left:708.190595px;}
.xba_c00372{left:714.583500px;}
.x4e_c00372{left:717.780237px;}
.x42_c00372{left:718.855020px;}
.x97_c00372{left:726.205500px;}
.x7a_c00372{left:728.347688px;}
.x3e_c00372{left:731.621237px;}
.xb7_c00372{left:737.661000px;}
.x37_c00372{left:742.176129px;}
.xb4_c00372{left:747.729000px;}
.x74_c00372{left:749.741478px;}
.x5e_c00372{left:751.803777px;}
.xbb_c00372{left:757.794246px;}
.x82_c00372{left:760.557489px;}
.x68_c00372{left:762.654000px;}
.x25_c00372{left:764.108175px;}
.xc8_c00372{left:768.725499px;}
.x92_c00372{left:770.751000px;}
.x57_c00372{left:773.293340px;}
.x38_c00372{left:775.090401px;}
.x5f_c00372{left:785.304695px;}
.xc_c00372{left:787.483500px;}
.xb5_c00372{left:792.567000px;}
.x98_c00372{left:793.989000px;}
.xb6_c00372{left:804.505500px;}
.x69_c00372{left:806.643000px;}
.x1d_c00372{left:809.833500px;}
.x89_c00372{left:815.890500px;}
.xd_c00372{left:820.894500px;}
.x26_c00372{left:822.178791px;}
.xbc_c00372{left:825.539933px;}
.xa2_c00372{left:826.543500px;}
.x75_c00372{left:828.326176px;}
.x2c_c00372{left:832.044225px;}
.x7b_c00372{left:838.246118px;}
.x66_c00372{left:840.430098px;}
.x4f_c00372{left:841.736925px;}
.x45_c00372{left:843.398654px;}
@media print{
.v0_c00372{vertical-align:0.000000pt;}
.ls0_c00372{letter-spacing:0.000000pt;}
.ws0_c00372{word-spacing:0.000000pt;}
._0_c00372{width:39.611388pt;}
.fse_c00372{font-size:32.000000pt;}
.fsf_c00372{font-size:58.666667pt;}
.fs15_c00372{font-size:58.672826pt;}
.fs11_c00372{font-size:58.675143pt;}
.fsa_c00372{font-size:58.682182pt;}
.fs12_c00372{font-size:58.689659pt;}
.fs14_c00372{font-size:64.006720pt;}
.fs6_c00372{font-size:64.014110pt;}
.fs13_c00372{font-size:64.015486pt;}
.fsc_c00372{font-size:64.028794pt;}
.fs9_c00372{font-size:69.337528pt;}
.fs16_c00372{font-size:69.340613pt;}
.fsd_c00372{font-size:69.364526pt;}
.fs0_c00372{font-size:74.666667pt;}
.fs8_c00372{font-size:74.669691pt;}
.fs1_c00372{font-size:74.670400pt;}
.fs3_c00372{font-size:74.683129pt;}
.fs2_c00372{font-size:80.014439pt;}
.fs4_c00372{font-size:80.017638pt;}
.fs10_c00372{font-size:85.333333pt;}
.fs7_c00372{font-size:85.352147pt;}
.fsb_c00372{font-size:85.355901pt;}
.fs5_c00372{font-size:90.686656pt;}
.fs17_c00372{font-size:106.687998pt;}
.y0_c00372{bottom:0.000000pt;}
.y163_c00372{bottom:74.500587pt;}
.y162_c00372{bottom:75.076667pt;}
.y161_c00372{bottom:75.480560pt;}
.y160_c00372{bottom:76.460053pt;}
.y15f_c00372{bottom:77.818187pt;}
.y15e_c00372{bottom:79.160960pt;}
.y15d_c00372{bottom:79.922667pt;}
.y15c_c00372{bottom:110.762216pt;}
.y15b_c00372{bottom:111.458680pt;}
.y15a_c00372{bottom:112.893171pt;}
.y159_c00372{bottom:114.314037pt;}
.y158_c00372{bottom:114.656357pt;}
.y151_c00372{bottom:115.199732pt;}
.y150_c00372{bottom:115.968957pt;}
.y157_c00372{bottom:116.107401pt;}
.y156_c00372{bottom:116.987452pt;}
.y155_c00372{bottom:117.692717pt;}
.y14f_c00372{bottom:117.750692pt;}
.y154_c00372{bottom:118.213739pt;}
.y14e_c00372{bottom:118.531209pt;}
.y153_c00372{bottom:119.109607pt;}
.y14d_c00372{bottom:119.146859pt;}
.y14c_c00372{bottom:119.729792pt;}
.y152_c00372{bottom:119.783755pt;}
.y14b_c00372{bottom:120.913872pt;}
.y14a_c00372{bottom:121.706589pt;}
.y149_c00372{bottom:122.288583pt;}
.y148_c00372{bottom:123.625361pt;}
.y147_c00372{bottom:124.026513pt;}
.y146_c00372{bottom:126.859611pt;}
.y145_c00372{bottom:128.666667pt;}
.y13b_c00372{bottom:133.902497pt;}
.y13a_c00372{bottom:135.135595pt;}
.y144_c00372{bottom:136.761984pt;}
.y143_c00372{bottom:137.411629pt;}
.y142_c00372{bottom:139.989736pt;}
.y141_c00372{bottom:140.871525pt;}
.y140_c00372{bottom:141.513544pt;}
.y139_c00372{bottom:142.238923pt;}
.y13f_c00372{bottom:142.564000pt;}
.y138_c00372{bottom:143.083641pt;}
.y137_c00372{bottom:143.933551pt;}
.y136_c00372{bottom:150.721333pt;}
.y128_c00372{bottom:153.361333pt;}
.y129_c00372{bottom:153.798667pt;}
.y12a_c00372{bottom:154.394667pt;}
.y12b_c00372{bottom:155.014667pt;}
.y12c_c00372{bottom:155.192000pt;}
.y12d_c00372{bottom:155.552000pt;}
.y12e_c00372{bottom:156.162667pt;}
.y12f_c00372{bottom:156.426667pt;}
.y130_c00372{bottom:156.780000pt;}
.y131_c00372{bottom:157.054667pt;}
.y132_c00372{bottom:157.393333pt;}
.y133_c00372{bottom:157.760000pt;}
.y134_c00372{bottom:158.120000pt;}
.y135_c00372{bottom:158.478667pt;}
.y127_c00372{bottom:172.380000pt;}
.y126_c00372{bottom:200.069333pt;}
.y13e_c00372{bottom:209.779749pt;}
.y13d_c00372{bottom:210.882725pt;}
.y13c_c00372{bottom:213.129333pt;}
.y125_c00372{bottom:214.558813pt;}
.y124_c00372{bottom:215.150387pt;}
.y123_c00372{bottom:217.340453pt;}
.y122_c00372{bottom:217.892813pt;}
.y121_c00372{bottom:219.474000pt;}
.y120_c00372{bottom:221.005360pt;}
.y11f_c00372{bottom:221.579893pt;}
.y11e_c00372{bottom:221.985747pt;}
.y11d_c00372{bottom:237.888107pt;}
.y11c_c00372{bottom:238.772227pt;}
.y11b_c00372{bottom:240.572947pt;}
.y11a_c00372{bottom:241.452467pt;}
.y119_c00372{bottom:243.240067pt;}
.y118_c00372{bottom:243.856827pt;}
.y117_c00372{bottom:246.496907pt;}
.y116_c00372{bottom:247.382987pt;}
.y115_c00372{bottom:249.161867pt;}
.y114_c00372{bottom:250.025027pt;}
.y113_c00372{bottom:251.495547pt;}
.y112_c00372{bottom:252.970667pt;}
.y111_c00372{bottom:280.127152pt;}
.y110_c00372{bottom:281.225647pt;}
.y10f_c00372{bottom:282.291369pt;}
.y10e_c00372{bottom:282.805675pt;}
.y10d_c00372{bottom:283.172253pt;}
.y10c_c00372{bottom:284.222656pt;}
.y10b_c00372{bottom:285.079985pt;}
.y10a_c00372{bottom:285.592389pt;}
.y109_c00372{bottom:303.013001pt;}
.y108_c00372{bottom:303.702817pt;}
.y107_c00372{bottom:305.088613pt;}
.y106_c00372{bottom:305.529079pt;}
.y105_c00372{bottom:308.026265pt;}
.y104_c00372{bottom:308.711573pt;}
.y103_c00372{bottom:310.756365pt;}
.y102_c00372{bottom:311.463508pt;}
.y101_c00372{bottom:314.582124pt;}
.y100_c00372{bottom:315.480749pt;}
.yff_c00372{bottom:315.935996pt;}
.yfe_c00372{bottom:316.802667pt;}
.yfd_c00372{bottom:334.084548pt;}
.yfc_c00372{bottom:334.528361pt;}
.yfb_c00372{bottom:335.164704pt;}
.yfa_c00372{bottom:335.611157pt;}
.yf9_c00372{bottom:335.933311pt;}
.yf8_c00372{bottom:336.704601pt;}
.yf7_c00372{bottom:337.026843pt;}
.yf6_c00372{bottom:337.351973pt;}
.yf5_c00372{bottom:338.320677pt;}
.yf4_c00372{bottom:338.970337pt;}
.yf3_c00372{bottom:339.410836pt;}
.yf2_c00372{bottom:340.013240pt;}
.yf1_c00372{bottom:340.561333pt;}
.yf0_c00372{bottom:369.333505pt;}
.yef_c00372{bottom:370.033417pt;}
.yee_c00372{bottom:370.662049pt;}
.yed_c00372{bottom:370.852141pt;}
.yec_c00372{bottom:371.554681pt;}
.yeb_c00372{bottom:371.824705pt;}
.yea_c00372{bottom:372.453337pt;}
.ye9_c00372{bottom:373.066981pt;}
.ye8_c00372{bottom:373.243885pt;}
.ye7_c00372{bottom:373.589533pt;}
.ye6_c00372{bottom:373.853137pt;}
.ye5_c00372{bottom:374.641333pt;}
.ye4_c00372{bottom:398.264555pt;}
.ye3_c00372{bottom:399.018076pt;}
.ye2_c00372{bottom:400.310168pt;}
.ye1_c00372{bottom:402.146577pt;}
.ye0_c00372{bottom:402.901023pt;}
.ydf_c00372{bottom:404.427224pt;}
.yde_c00372{bottom:405.206193pt;}
.ydd_c00372{bottom:408.001979pt;}
.ydc_c00372{bottom:408.781228pt;}
.ydb_c00372{bottom:409.536177pt;}
.yda_c00372{bottom:410.562731pt;}
.yd9_c00372{bottom:412.296680pt;}
.yd8_c00372{bottom:429.680855pt;}
.yd7_c00372{bottom:431.438829pt;}
.yd6_c00372{bottom:431.983651pt;}
.yd5_c00372{bottom:432.519529pt;}
.yd4_c00372{bottom:433.764495pt;}
.yd3_c00372{bottom:434.481443pt;}
.yd2_c00372{bottom:435.886764pt;}
.yd1_c00372{bottom:437.308039pt;}
.yd0_c00372{bottom:438.197383pt;}
.ycf_c00372{bottom:438.721368pt;}
.yce_c00372{bottom:439.074553pt;}
.ycd_c00372{bottom:440.621428pt;}
.ycc_c00372{bottom:461.861464pt;}
.ycb_c00372{bottom:462.769465pt;}
.yca_c00372{bottom:463.284701pt;}
.yc9_c00372{bottom:464.315016pt;}
.yc8_c00372{bottom:464.820644pt;}
.yc7_c00372{bottom:465.214155pt;}
.yc6_c00372{bottom:466.247655pt;}
.yc5_c00372{bottom:466.619555pt;}
.yc4_c00372{bottom:467.390020pt;}
.yc3_c00372{bottom:467.648917pt;}
.yc2_c00372{bottom:468.901100pt;}
.yc1_c00372{bottom:469.667540pt;}
.yc0_c00372{bottom:493.014327pt;}
.ybf_c00372{bottom:493.633043pt;}
.ybe_c00372{bottom:494.672431pt;}
.ybd_c00372{bottom:496.568759pt;}
.ybc_c00372{bottom:497.576535pt;}
.ybb_c00372{bottom:498.616455pt;}
.yba_c00372{bottom:500.477083pt;}
.yb9_c00372{bottom:501.727255pt;}
.yb8_c00372{bottom:502.528447pt;}
.yb7_c00372{bottom:503.566463pt;}
.yb6_c00372{bottom:504.175211pt;}
.yb5_c00372{bottom:505.196735pt;}
.yb4_c00372{bottom:526.519873pt;}
.yb3_c00372{bottom:527.341001pt;}
.yb2_c00372{bottom:529.428681pt;}
.yb1_c00372{bottom:530.069461pt;}
.yb0_c00372{bottom:531.310085pt;}
.yaf_c00372{bottom:532.545669pt;}
.yae_c00372{bottom:534.404925pt;}
.yad_c00372{bottom:535.444201pt;}
.yac_c00372{bottom:536.885333pt;}
.ya7_c00372{bottom:565.126328pt;}
.yaa_c00372{bottom:565.126671pt;}
.yab_c00372{bottom:565.126731pt;}
.ya8_c00372{bottom:565.126992pt;}
.ya9_c00372{bottom:565.127193pt;}
.ya6_c00372{bottom:586.644752pt;}
.ya5_c00372{bottom:587.585389pt;}
.ya4_c00372{bottom:588.136916pt;}
.ya3_c00372{bottom:589.670619pt;}
.ya2_c00372{bottom:590.432635pt;}
.ya1_c00372{bottom:591.339987pt;}
.ya0_c00372{bottom:591.905787pt;}
.y9f_c00372{bottom:592.661979pt;}
.y9e_c00372{bottom:593.037667pt;}
.y9d_c00372{bottom:594.331991pt;}
.y9c_c00372{bottom:594.907479pt;}
.y9b_c00372{bottom:595.468620pt;}
.y9a_c00372{bottom:596.767043pt;}
.y99_c00372{bottom:597.314005pt;}
.y98_c00372{bottom:597.695573pt;}
.y97_c00372{bottom:598.246439pt;}
.y96_c00372{bottom:618.082420pt;}
.y95_c00372{bottom:619.035584pt;}
.y94_c00372{bottom:619.600908pt;}
.y93_c00372{bottom:621.681293pt;}
.y92_c00372{bottom:622.452140pt;}
.y91_c00372{bottom:622.995127pt;}
.y90_c00372{bottom:624.321599pt;}
.y8f_c00372{bottom:624.878092pt;}
.y8e_c00372{bottom:626.361324pt;}
.y8d_c00372{bottom:627.094507pt;}
.y8c_c00372{bottom:627.665151pt;}
.y8b_c00372{bottom:628.782001pt;}
.y8a_c00372{bottom:629.692097pt;}
.y89_c00372{bottom:653.714984pt;}
.y88_c00372{bottom:654.192807pt;}
.y87_c00372{bottom:654.498360pt;}
.y86_c00372{bottom:654.800980pt;}
.y85_c00372{bottom:655.200661pt;}
.y84_c00372{bottom:655.785777pt;}
.y83_c00372{bottom:656.085447pt;}
.y82_c00372{bottom:656.786544pt;}
.y81_c00372{bottom:657.170501pt;}
.y80_c00372{bottom:657.650501pt;}
.y7f_c00372{bottom:657.955887pt;}
.y7e_c00372{bottom:658.446997pt;}
.y7d_c00372{bottom:659.218031pt;}
.y7c_c00372{bottom:682.740061pt;}
.y7b_c00372{bottom:685.384732pt;}
.y7a_c00372{bottom:686.093688pt;}
.y79_c00372{bottom:688.226191pt;}
.y78_c00372{bottom:689.667031pt;}
.y77_c00372{bottom:691.079399pt;}
.y76_c00372{bottom:692.021108pt;}
.y75_c00372{bottom:692.719239pt;}
.y74_c00372{bottom:693.421951pt;}
.y73_c00372{bottom:695.321868pt;}
.y72_c00372{bottom:696.696860pt;}
.y71_c00372{bottom:697.391407pt;}
.y70_c00372{bottom:714.775177pt;}
.y6f_c00372{bottom:715.854976pt;}
.y6e_c00372{bottom:716.224208pt;}
.y6d_c00372{bottom:717.416297pt;}
.y6c_c00372{bottom:717.771612pt;}
.y6b_c00372{bottom:718.120175pt;}
.y6a_c00372{bottom:719.316335pt;}
.y69_c00372{bottom:719.658873pt;}
.y68_c00372{bottom:720.013516pt;}
.y67_c00372{bottom:721.064920pt;}
.y66_c00372{bottom:721.540296pt;}
.y65_c00372{bottom:722.113027pt;}
.y64_c00372{bottom:746.080940pt;}
.y63_c00372{bottom:747.901569pt;}
.y62_c00372{bottom:748.609687pt;}
.y61_c00372{bottom:749.145649pt;}
.y60_c00372{bottom:750.226349pt;}
.y5f_c00372{bottom:750.758633pt;}
.y5e_c00372{bottom:751.285681pt;}
.y5d_c00372{bottom:753.576108pt;}
.y5c_c00372{bottom:754.116859pt;}
.y5b_c00372{bottom:755.015593pt;}
.y5a_c00372{bottom:755.879061pt;}
.y59_c00372{bottom:756.923151pt;}
.y58_c00372{bottom:778.159731pt;}
.y57_c00372{bottom:779.665373pt;}
.y56_c00372{bottom:780.359899pt;}
.y55_c00372{bottom:781.703683pt;}
.y54_c00372{bottom:783.406595pt;}
.y53_c00372{bottom:783.891604pt;}
.y52_c00372{bottom:784.397897pt;}
.y51_c00372{bottom:785.564979pt;}
.y50_c00372{bottom:787.547388pt;}
.y4f_c00372{bottom:788.369923pt;}
.y4e_c00372{bottom:811.912521pt;}
.y4d_c00372{bottom:812.409536pt;}
.y4c_c00372{bottom:812.923411pt;}
.y4b_c00372{bottom:814.964643pt;}
.y4a_c00372{bottom:815.953415pt;}
.y49_c00372{bottom:816.459876pt;}
.y48_c00372{bottom:817.789835pt;}
.y47_c00372{bottom:819.128372pt;}
.y46_c00372{bottom:819.963987pt;}
.y45_c00372{bottom:820.444841pt;}
.y44_c00372{bottom:821.256211pt;}
.y43_c00372{bottom:843.199465pt;}
.y42_c00372{bottom:844.404509pt;}
.y41_c00372{bottom:845.605640pt;}
.y40_c00372{bottom:846.066119pt;}
.y3f_c00372{bottom:846.322679pt;}
.y3e_c00372{bottom:847.369319pt;}
.y3d_c00372{bottom:847.729985pt;}
.y3c_c00372{bottom:848.562629pt;}
.y3b_c00372{bottom:848.910996pt;}
.y3a_c00372{bottom:849.843648pt;}
.y39_c00372{bottom:850.301585pt;}
.y38_c00372{bottom:872.604605pt;}
.y37_c00372{bottom:874.370921pt;}
.y36_c00372{bottom:874.993659pt;}
.y35_c00372{bottom:876.434465pt;}
.y34_c00372{bottom:878.170943pt;}
.y33_c00372{bottom:878.785707pt;}
.y32_c00372{bottom:879.240129pt;}
.y31_c00372{bottom:880.199625pt;}
.y30_c00372{bottom:880.979211pt;}
.y2f_c00372{bottom:882.230548pt;}
.y2e_c00372{bottom:907.155909pt;}
.y2d_c00372{bottom:907.620955pt;}
.y2c_c00372{bottom:908.068487pt;}
.y2b_c00372{bottom:908.338515pt;}
.y2a_c00372{bottom:908.601563pt;}
.y29_c00372{bottom:908.950956pt;}
.y28_c00372{bottom:909.659471pt;}
.y27_c00372{bottom:910.461731pt;}
.y26_c00372{bottom:910.731031pt;}
.y25_c00372{bottom:911.264275pt;}
.y24_c00372{bottom:911.703283pt;}
.y23_c00372{bottom:911.960124pt;}
.y22_c00372{bottom:912.473807pt;}
.y21_c00372{bottom:936.847341pt;}
.y20_c00372{bottom:940.607825pt;}
.y1f_c00372{bottom:941.228445pt;}
.y1e_c00372{bottom:942.276961pt;}
.y1d_c00372{bottom:943.315929pt;}
.y1c_c00372{bottom:943.925629pt;}
.y1b_c00372{bottom:945.140213pt;}
.y1a_c00372{bottom:945.780573pt;}
.y19_c00372{bottom:946.410853pt;}
.y18_c00372{bottom:947.045333pt;}
.y17_c00372{bottom:971.694656pt;}
.y16_c00372{bottom:974.170027pt;}
.y15_c00372{bottom:974.736227pt;}
.y14_c00372{bottom:975.118076pt;}
.y13_c00372{bottom:976.218303pt;}
.y12_c00372{bottom:977.380469pt;}
.y11_c00372{bottom:978.111159pt;}
.y10_c00372{bottom:979.428771pt;}
.yf_c00372{bottom:980.121511pt;}
.ye_c00372{bottom:980.881333pt;}
.yd_c00372{bottom:1000.655267pt;}
.yc_c00372{bottom:1000.952253pt;}
.yb_c00372{bottom:1001.941173pt;}
.ya_c00372{bottom:1002.245840pt;}
.y9_c00372{bottom:1002.452253pt;}
.y8_c00372{bottom:1003.040587pt;}
.y7_c00372{bottom:1003.429493pt;}
.y6_c00372{bottom:1004.130400pt;}
.y5_c00372{bottom:1004.418507pt;}
.y4_c00372{bottom:1005.092987pt;}
.y3_c00372{bottom:1005.983293pt;}
.y2_c00372{bottom:1006.561333pt;}
.y1_c00372{bottom:1073.644000pt;}
.h10_c00372{height:32.000000pt;}
.h11_c00372{height:58.666667pt;}
.h17_c00372{height:58.672826pt;}
.h13_c00372{height:58.675143pt;}
.hc_c00372{height:58.682182pt;}
.h14_c00372{height:58.689659pt;}
.h16_c00372{height:64.006720pt;}
.h8_c00372{height:64.014110pt;}
.h15_c00372{height:64.015486pt;}
.he_c00372{height:64.028794pt;}
.hb_c00372{height:69.337528pt;}
.h18_c00372{height:69.340613pt;}
.hf_c00372{height:69.364526pt;}
.h2_c00372{height:74.666667pt;}
.ha_c00372{height:74.669691pt;}
.h3_c00372{height:74.670400pt;}
.h5_c00372{height:74.683129pt;}
.h4_c00372{height:80.014439pt;}
.h6_c00372{height:80.017638pt;}
.h12_c00372{height:85.333333pt;}
.h9_c00372{height:85.352147pt;}
.hd_c00372{height:85.355901pt;}
.h7_c00372{height:90.686656pt;}
.h19_c00372{height:106.687998pt;}
.h0_c00372{height:1112.400000pt;}
.h1_c00372{height:1112.666667pt;}
.w0_c00372{width:813.333333pt;}
.x0_c00372{left:0.000000pt;}
.xa7_c00372{left:133.200000pt;}
.x6a_c00372{left:136.144360pt;}
.x50_c00372{left:137.131488pt;}
.x27_c00372{left:138.042421pt;}
.x2_c00372{left:139.077333pt;}
.xa3_c00372{left:156.058880pt;}
.x60_c00372{left:165.429893pt;}
.x46_c00372{left:166.621863pt;}
.x93_c00372{left:173.890667pt;}
.x2d_c00372{left:176.946412pt;}
.xe_c00372{left:178.620000pt;}
.xa8_c00372{left:183.360000pt;}
.x58_c00372{left:185.023057pt;}
.x43_c00372{left:186.035903pt;}
.x32_c00372{left:187.007077pt;}
.x94_c00372{left:193.684000pt;}
.x6e_c00372{left:194.883047pt;}
.x3f_c00372{left:195.835685pt;}
.x3_c00372{left:196.881333pt;}
.x7c_c00372{left:203.044745pt;}
.x99_c00372{left:212.428688pt;}
.x51_c00372{left:214.182601pt;}
.xf_c00372{left:215.080000pt;}
.x28_c00372{left:216.241292pt;}
.xc3_c00372{left:220.718847pt;}
.x47_c00372{left:223.903584pt;}
.x1e_c00372{left:225.458276pt;}
.xa9_c00372{left:231.360000pt;}
.x95_c00372{left:232.754667pt;}
.x16_c00372{left:234.233333pt;}
.x8a_c00372{left:241.250667pt;}
.x76_c00372{left:242.829353pt;}
.x40_c00372{left:243.813376pt;}
.xad_c00372{left:250.706667pt;}
.x83_c00372{left:252.344000pt;}
.x2e_c00372{left:254.706445pt;}
.xb8_c00372{left:260.341333pt;}
.xa4_c00372{left:261.309067pt;}
.xaa_c00372{left:262.320000pt;}
.x52_c00372{left:263.357969pt;}
.x17_c00372{left:264.446667pt;}
.x9a_c00372{left:270.800737pt;}
.x77_c00372{left:271.909840pt;}
.x1f_c00372{left:274.185207pt;}
.x8b_c00372{left:281.296000pt;}
.x61_c00372{left:282.654821pt;}
.x10_c00372{left:284.428000pt;}
.x4_c00372{left:285.912000pt;}
.xbd_c00372{left:289.346568pt;}
.x84_c00372{left:290.749333pt;}
.x67_c00372{left:292.048000pt;}
.x18_c00372{left:294.460000pt;}
.xc4_c00372{left:299.185859pt;}
.xb9_c00372{left:300.422667pt;}
.x6b_c00372{left:301.357693pt;}
.x39_c00372{left:303.335535pt;}
.xc9_c00372{left:308.610667pt;}
.x6f_c00372{left:311.049201pt;}
.x62_c00372{left:312.170720pt;}
.x44_c00372{left:313.239927pt;}
.x9b_c00372{left:319.714349pt;}
.x78_c00372{left:321.310281pt;}
.x11_c00372{left:322.885333pt;}
.x19_c00372{left:324.953333pt;}
.xbe_c00372{left:328.895829pt;}
.x9d_c00372{left:330.141333pt;}
.x48_c00372{left:332.339419pt;}
.x20_c00372{left:333.497492pt;}
.xab_c00372{left:338.400000pt;}
.x8c_c00372{left:340.356000pt;}
.x53_c00372{left:341.854752pt;}
.x33_c00372{left:343.226876pt;}
.x5_c00372{left:353.360000pt;}
.xca_c00372{left:357.585333pt;}
.x9e_c00372{left:358.913333pt;}
.x49_c00372{left:361.454932pt;}
.x21_c00372{left:363.471719pt;}
.x96_c00372{left:368.346667pt;}
.x70_c00372{left:370.351169pt;}
.x3a_c00372{left:371.995969pt;}
.x1_c00372{left:372.960000pt;}
.x85_c00372{left:378.588000pt;}
.x54_c00372{left:380.274295pt;}
.x6_c00372{left:382.170667pt;}
.x2f_c00372{left:383.128027pt;}
.x12_c00372{left:384.052000pt;}
.xc5_c00372{left:387.049657pt;}
.xbf_c00372{left:387.971656pt;}
.x59_c00372{left:390.487681pt;}
.x29_c00372{left:391.701021pt;}
.x71_c00372{left:398.922624pt;}
.x4a_c00372{left:400.708468pt;}
.x3b_c00372{left:401.758461pt;}
.xac_c00372{left:407.040000pt;}
.x7d_c00372{left:409.080463pt;}
.x63_c00372{left:410.546836pt;}
.x1a_c00372{left:411.824000pt;}
.xc0_c00372{left:417.018069pt;}
.x9f_c00372{left:418.209333pt;}
.x5a_c00372{left:419.782247pt;}
.x34_c00372{left:421.485456pt;}
.x8d_c00372{left:428.420000pt;}
.x3c_c00372{left:430.316869pt;}
.x7e_c00372{left:439.059993pt;}
.x9c_c00372{left:439.969513pt;}
.x13_c00372{left:441.958667pt;}
.xae_c00372{left:447.182667pt;}
.x86_c00372{left:448.436000pt;}
.x6c_c00372{left:449.491027pt;}
.x35_c00372{left:451.255948pt;}
.x7_c00372{left:452.261333pt;}
.x8e_c00372{left:457.977333pt;}
.x4b_c00372{left:459.579439pt;}
.x14_c00372{left:462.056000pt;}
.xc6_c00372{left:467.462752pt;}
.x30_c00372{left:470.317824pt;}
.xaf_c00372{left:476.449333pt;}
.xa5_c00372{left:477.449827pt;}
.x72_c00372{left:478.435980pt;}
.x41_c00372{left:480.254911pt;}
.x8f_c00372{left:487.272000pt;}
.x5b_c00372{left:489.617187pt;}
.x8_c00372{left:491.152000pt;}
.x7f_c00372{left:497.761833pt;}
.x6d_c00372{left:499.011027pt;}
.x2a_c00372{left:500.243084pt;}
.xa6_c00372{left:507.000000pt;}
.x36_c00372{left:509.392820pt;}
.x1b_c00372{left:511.228000pt;}
.xb0_c00372{left:515.689333pt;}
.x5c_c00372{left:518.205057pt;}
.x4c_c00372{left:519.615659pt;}
.x80_c00372{left:526.764115pt;}
.x31_c00372{left:530.061108pt;}
.x22_c00372{left:531.328665pt;}
.xa0_c00372{left:535.748000pt;}
.x55_c00372{left:538.940280pt;}
.x1c_c00372{left:540.781333pt;}
.xb1_c00372{left:546.249333pt;}
.x64_c00372{left:547.744632pt;}
.x9_c00372{left:549.985333pt;}
.x87_c00372{left:556.498667pt;}
.x90_c00372{left:557.389333pt;}
.x5d_c00372{left:558.786765pt;}
.xc7_c00372{left:565.179445pt;}
.xa_c00372{left:570.626667pt;}
.xc1_c00372{left:575.563205pt;}
.x88_c00372{left:577.620000pt;}
.x56_c00372{left:578.870825pt;}
.xb2_c00372{left:583.834667pt;}
.x91_c00372{left:586.676000pt;}
.x65_c00372{left:587.842312pt;}
.x2b_c00372{left:590.259187pt;}
.x81_c00372{left:597.379361pt;}
.x23_c00372{left:599.493857pt;}
.xb_c00372{left:601.093333pt;}
.x4d_c00372{left:608.459392pt;}
.x3d_c00372{left:609.507905pt;}
.xc2_c00372{left:613.932143pt;}
.xa1_c00372{left:615.893333pt;}
.x79_c00372{left:617.156929pt;}
.x15_c00372{left:622.138667pt;}
.xb3_c00372{left:624.640000pt;}
.x73_c00372{left:626.847567pt;}
.x24_c00372{left:629.502751pt;}
.xba_c00372{left:635.185333pt;}
.x4e_c00372{left:638.026877pt;}
.x42_c00372{left:638.982240pt;}
.x97_c00372{left:645.516000pt;}
.x7a_c00372{left:647.420167pt;}
.x3e_c00372{left:650.329988pt;}
.xb7_c00372{left:655.698667pt;}
.x37_c00372{left:659.712115pt;}
.xb4_c00372{left:664.648000pt;}
.x74_c00372{left:666.436869pt;}
.x5e_c00372{left:668.270024pt;}
.xbb_c00372{left:673.594885pt;}
.x82_c00372{left:676.051101pt;}
.x68_c00372{left:677.914667pt;}
.x25_c00372{left:679.207267pt;}
.xc8_c00372{left:683.311555pt;}
.x92_c00372{left:685.112000pt;}
.x57_c00372{left:687.371857pt;}
.x38_c00372{left:688.969245pt;}
.x5f_c00372{left:698.048617pt;}
.xc_c00372{left:699.985333pt;}
.xb5_c00372{left:704.504000pt;}
.x98_c00372{left:705.768000pt;}
.xb6_c00372{left:715.116000pt;}
.x69_c00372{left:717.016000pt;}
.x1d_c00372{left:719.852000pt;}
.x89_c00372{left:725.236000pt;}
.xd_c00372{left:729.684000pt;}
.x26_c00372{left:730.825592pt;}
.xbc_c00372{left:733.813273pt;}
.xa2_c00372{left:734.705333pt;}
.x75_c00372{left:736.289935pt;}
.x2c_c00372{left:739.594867pt;}
.x7b_c00372{left:745.107660pt;}
.x66_c00372{left:747.048976pt;}
.x4f_c00372{left:748.210600pt;}
.x45_c00372{left:749.687692pt;}
}





/* 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_c00373 {
    display:none;
  }
  .loading-indicator_c00373.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00373 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_c00373 { 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_c00373" -> "#page-container .classname_c00373")
 */
.pf_c00373 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00373 { /* 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_c00373.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00373 { /* 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_c00373 { /* 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_c00373 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00373 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00373 {overflow:visible;}
  }
}
.c_c00373 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00373 { /* 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_c00373:after { /* webkit #35443 */
  content: '';
}
.t_c00373:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00373 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 */
}
.__c00373 { /* 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_c00373 { /* info for Javascript */
  display:none;
}
.l_c00373 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00373 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00373 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00373: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_c00373 {
    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_c00373.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00373.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_c00373 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00373{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00373;src:url('chunks/assets/font_b11a17f404e7258299fdf971.woff2')format("woff");}.ff1_c00373{font-family:ff1_c00373;line-height:1.000000;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;}
.m99_c00373{transform:matrix(0.007484,0.000105,-0.003500,0.249976,0,0);-ms-transform:matrix(0.007484,0.000105,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.007484,0.000105,-0.003500,0.249976,0,0);}
.m62_c00373{transform:matrix(0.013414,-0.000121,0.002250,0.249990,0,0);-ms-transform:matrix(0.013414,-0.000121,0.002250,0.249990,0,0);-webkit-transform:matrix(0.013414,-0.000121,0.002250,0.249990,0,0);}
.mb2_c00373{transform:matrix(0.015433,-0.000247,0.003999,0.249968,0,0);-ms-transform:matrix(0.015433,-0.000247,0.003999,0.249968,0,0);-webkit-transform:matrix(0.015433,-0.000247,0.003999,0.249968,0,0);}
.m98_c00373{transform:matrix(0.096346,0.001349,-0.003500,0.249976,0,0);-ms-transform:matrix(0.096346,0.001349,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.096346,0.001349,-0.003500,0.249976,0,0);}
.mbe_c00373{transform:matrix(0.103720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103720,0.000000,0.000000,0.250000,0,0);}
.m71_c00373{transform:matrix(0.143339,-0.001290,0.002250,0.249990,0,0);-ms-transform:matrix(0.143339,-0.001290,0.002250,0.249990,0,0);-webkit-transform:matrix(0.143339,-0.001290,0.002250,0.249990,0,0);}
.m74_c00373{transform:matrix(0.146294,-0.001317,0.002250,0.249990,0,0);-ms-transform:matrix(0.146294,-0.001317,0.002250,0.249990,0,0);-webkit-transform:matrix(0.146294,-0.001317,0.002250,0.249990,0,0);}
.mbd_c00373{transform:matrix(0.146680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146680,0.000000,0.000000,0.250000,0,0);}
.m70_c00373{transform:matrix(0.150204,-0.001352,0.002250,0.249990,0,0);-ms-transform:matrix(0.150204,-0.001352,0.002250,0.249990,0,0);-webkit-transform:matrix(0.150204,-0.001352,0.002250,0.249990,0,0);}
.m7a_c00373{transform:matrix(0.154044,-0.001386,0.002250,0.249990,0,0);-ms-transform:matrix(0.154044,-0.001386,0.002250,0.249990,0,0);-webkit-transform:matrix(0.154044,-0.001386,0.002250,0.249990,0,0);}
.m6f_c00373{transform:matrix(0.159379,-0.001434,0.002250,0.249990,0,0);-ms-transform:matrix(0.159379,-0.001434,0.002250,0.249990,0,0);-webkit-transform:matrix(0.159379,-0.001434,0.002250,0.249990,0,0);}
.ma7_c00373{transform:matrix(0.159635,-0.002554,0.003999,0.249968,0,0);-ms-transform:matrix(0.159635,-0.002554,0.003999,0.249968,0,0);-webkit-transform:matrix(0.159635,-0.002554,0.003999,0.249968,0,0);}
.m73_c00373{transform:matrix(0.159664,-0.001437,0.002250,0.249990,0,0);-ms-transform:matrix(0.159664,-0.001437,0.002250,0.249990,0,0);-webkit-transform:matrix(0.159664,-0.001437,0.002250,0.249990,0,0);}
.m5c_c00373{transform:matrix(0.160868,-0.000804,0.001250,0.249997,0,0);-ms-transform:matrix(0.160868,-0.000804,0.001250,0.249997,0,0);-webkit-transform:matrix(0.160868,-0.000804,0.001250,0.249997,0,0);}
.m76_c00373{transform:matrix(0.163328,-0.001470,0.002250,0.249990,0,0);-ms-transform:matrix(0.163328,-0.001470,0.002250,0.249990,0,0);-webkit-transform:matrix(0.163328,-0.001470,0.002250,0.249990,0,0);}
.ma1_c00373{transform:matrix(0.163624,0.002291,-0.003500,0.249976,0,0);-ms-transform:matrix(0.163624,0.002291,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.163624,0.002291,-0.003500,0.249976,0,0);}
.m1f_c00373{transform:matrix(0.166203,-0.000831,0.001250,0.249997,0,0);-ms-transform:matrix(0.166203,-0.000831,0.001250,0.249997,0,0);-webkit-transform:matrix(0.166203,-0.000831,0.001250,0.249997,0,0);}
.m24_c00373{transform:matrix(0.166453,-0.000832,0.001250,0.249997,0,0);-ms-transform:matrix(0.166453,-0.000832,0.001250,0.249997,0,0);-webkit-transform:matrix(0.166453,-0.000832,0.001250,0.249997,0,0);}
.m2b_c00373{transform:matrix(0.169008,-0.000845,0.001250,0.249997,0,0);-ms-transform:matrix(0.169008,-0.000845,0.001250,0.249997,0,0);-webkit-transform:matrix(0.169008,-0.000845,0.001250,0.249997,0,0);}
.m6_c00373{transform:matrix(0.171188,-0.000856,0.001250,0.249997,0,0);-ms-transform:matrix(0.171188,-0.000856,0.001250,0.249997,0,0);-webkit-transform:matrix(0.171188,-0.000856,0.001250,0.249997,0,0);}
.m77_c00373{transform:matrix(0.171583,-0.001544,0.002250,0.249990,0,0);-ms-transform:matrix(0.171583,-0.001544,0.002250,0.249990,0,0);-webkit-transform:matrix(0.171583,-0.001544,0.002250,0.249990,0,0);}
.ma3_c00373{transform:matrix(0.172483,0.002415,-0.003500,0.249976,0,0);-ms-transform:matrix(0.172483,0.002415,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.172483,0.002415,-0.003500,0.249976,0,0);}
.m5d_c00373{transform:matrix(0.172663,-0.000863,0.001250,0.249997,0,0);-ms-transform:matrix(0.172663,-0.000863,0.001250,0.249997,0,0);-webkit-transform:matrix(0.172663,-0.000863,0.001250,0.249997,0,0);}
.m86_c00373{transform:matrix(0.174733,-0.001573,0.002250,0.249990,0,0);-ms-transform:matrix(0.174733,-0.001573,0.002250,0.249990,0,0);-webkit-transform:matrix(0.174733,-0.001573,0.002250,0.249990,0,0);}
.m72_c00373{transform:matrix(0.176038,-0.001584,0.002250,0.249990,0,0);-ms-transform:matrix(0.176038,-0.001584,0.002250,0.249990,0,0);-webkit-transform:matrix(0.176038,-0.001584,0.002250,0.249990,0,0);}
.m83_c00373{transform:matrix(0.177703,-0.001599,0.002250,0.249990,0,0);-ms-transform:matrix(0.177703,-0.001599,0.002250,0.249990,0,0);-webkit-transform:matrix(0.177703,-0.001599,0.002250,0.249990,0,0);}
.m81_c00373{transform:matrix(0.178603,-0.001607,0.002250,0.249990,0,0);-ms-transform:matrix(0.178603,-0.001607,0.002250,0.249990,0,0);-webkit-transform:matrix(0.178603,-0.001607,0.002250,0.249990,0,0);}
.m28_c00373{transform:matrix(0.179408,-0.000897,0.001250,0.249997,0,0);-ms-transform:matrix(0.179408,-0.000897,0.001250,0.249997,0,0);-webkit-transform:matrix(0.179408,-0.000897,0.001250,0.249997,0,0);}
.m80_c00373{transform:matrix(0.179693,-0.001617,0.002250,0.249990,0,0);-ms-transform:matrix(0.179693,-0.001617,0.002250,0.249990,0,0);-webkit-transform:matrix(0.179693,-0.001617,0.002250,0.249990,0,0);}
.m59_c00373{transform:matrix(0.180973,-0.000905,0.001250,0.249997,0,0);-ms-transform:matrix(0.180973,-0.000905,0.001250,0.249997,0,0);-webkit-transform:matrix(0.180973,-0.000905,0.001250,0.249997,0,0);}
.m6a_c00373{transform:matrix(0.181938,-0.001637,0.002250,0.249990,0,0);-ms-transform:matrix(0.181938,-0.001637,0.002250,0.249990,0,0);-webkit-transform:matrix(0.181938,-0.001637,0.002250,0.249990,0,0);}
.m19_c00373{transform:matrix(0.183028,-0.000915,0.001250,0.249997,0,0);-ms-transform:matrix(0.183028,-0.000915,0.001250,0.249997,0,0);-webkit-transform:matrix(0.183028,-0.000915,0.001250,0.249997,0,0);}
.m8f_c00373{transform:matrix(0.184168,-0.001658,0.002250,0.249990,0,0);-ms-transform:matrix(0.184168,-0.001658,0.002250,0.249990,0,0);-webkit-transform:matrix(0.184168,-0.001658,0.002250,0.249990,0,0);}
.m5f_c00373{transform:matrix(0.184678,-0.000923,0.001250,0.249997,0,0);-ms-transform:matrix(0.184678,-0.000923,0.001250,0.249997,0,0);-webkit-transform:matrix(0.184678,-0.000923,0.001250,0.249997,0,0);}
.m7b_c00373{transform:matrix(0.186472,-0.001678,0.002250,0.249990,0,0);-ms-transform:matrix(0.186472,-0.001678,0.002250,0.249990,0,0);-webkit-transform:matrix(0.186472,-0.001678,0.002250,0.249990,0,0);}
.m9c_c00373{transform:matrix(0.187962,0.002631,-0.003500,0.249976,0,0);-ms-transform:matrix(0.187962,0.002631,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.187962,0.002631,-0.003500,0.249976,0,0);}
.m1e_c00373{transform:matrix(0.188188,-0.000941,0.001250,0.249997,0,0);-ms-transform:matrix(0.188188,-0.000941,0.001250,0.249997,0,0);-webkit-transform:matrix(0.188188,-0.000941,0.001250,0.249997,0,0);}
.mb3_c00373{transform:matrix(0.189926,-0.003039,0.003999,0.249968,0,0);-ms-transform:matrix(0.189926,-0.003039,0.003999,0.249968,0,0);-webkit-transform:matrix(0.189926,-0.003039,0.003999,0.249968,0,0);}
.m7e_c00373{transform:matrix(0.190057,-0.001711,0.002250,0.249990,0,0);-ms-transform:matrix(0.190057,-0.001711,0.002250,0.249990,0,0);-webkit-transform:matrix(0.190057,-0.001711,0.002250,0.249990,0,0);}
.m49_c00373{transform:matrix(0.190098,-0.000950,0.001250,0.249997,0,0);-ms-transform:matrix(0.190098,-0.000950,0.001250,0.249997,0,0);-webkit-transform:matrix(0.190098,-0.000950,0.001250,0.249997,0,0);}
.mf_c00373{transform:matrix(0.190848,-0.000954,0.001250,0.249997,0,0);-ms-transform:matrix(0.190848,-0.000954,0.001250,0.249997,0,0);-webkit-transform:matrix(0.190848,-0.000954,0.001250,0.249997,0,0);}
.m69_c00373{transform:matrix(0.191917,-0.001727,0.002250,0.249990,0,0);-ms-transform:matrix(0.191917,-0.001727,0.002250,0.249990,0,0);-webkit-transform:matrix(0.191917,-0.001727,0.002250,0.249990,0,0);}
.ma8_c00373{transform:matrix(0.192545,-0.003081,0.003999,0.249968,0,0);-ms-transform:matrix(0.192545,-0.003081,0.003999,0.249968,0,0);-webkit-transform:matrix(0.192545,-0.003081,0.003999,0.249968,0,0);}
.m11_c00373{transform:matrix(0.192618,-0.000963,0.001250,0.249997,0,0);-ms-transform:matrix(0.192618,-0.000963,0.001250,0.249997,0,0);-webkit-transform:matrix(0.192618,-0.000963,0.001250,0.249997,0,0);}
.m9_c00373{transform:matrix(0.193213,-0.000966,0.001250,0.249997,0,0);-ms-transform:matrix(0.193213,-0.000966,0.001250,0.249997,0,0);-webkit-transform:matrix(0.193213,-0.000966,0.001250,0.249997,0,0);}
.m20_c00373{transform:matrix(0.193683,-0.000968,0.001250,0.249997,0,0);-ms-transform:matrix(0.193683,-0.000968,0.001250,0.249997,0,0);-webkit-transform:matrix(0.193683,-0.000968,0.001250,0.249997,0,0);}
.m8b_c00373{transform:matrix(0.194087,-0.001747,0.002250,0.249990,0,0);-ms-transform:matrix(0.194087,-0.001747,0.002250,0.249990,0,0);-webkit-transform:matrix(0.194087,-0.001747,0.002250,0.249990,0,0);}
.m68_c00373{transform:matrix(0.194792,-0.001753,0.002250,0.249990,0,0);-ms-transform:matrix(0.194792,-0.001753,0.002250,0.249990,0,0);-webkit-transform:matrix(0.194792,-0.001753,0.002250,0.249990,0,0);}
.m10_c00373{transform:matrix(0.195273,-0.000976,0.001250,0.249997,0,0);-ms-transform:matrix(0.195273,-0.000976,0.001250,0.249997,0,0);-webkit-transform:matrix(0.195273,-0.000976,0.001250,0.249997,0,0);}
.m2c_c00373{transform:matrix(0.195588,-0.000978,0.001250,0.249997,0,0);-ms-transform:matrix(0.195588,-0.000978,0.001250,0.249997,0,0);-webkit-transform:matrix(0.195588,-0.000978,0.001250,0.249997,0,0);}
.m3_c00373{transform:matrix(0.195813,-0.000979,0.001250,0.249997,0,0);-ms-transform:matrix(0.195813,-0.000979,0.001250,0.249997,0,0);-webkit-transform:matrix(0.195813,-0.000979,0.001250,0.249997,0,0);}
.mb8_c00373{transform:matrix(0.196720,-0.003148,0.003999,0.249968,0,0);-ms-transform:matrix(0.196720,-0.003148,0.003999,0.249968,0,0);-webkit-transform:matrix(0.196720,-0.003148,0.003999,0.249968,0,0);}
.m21_c00373{transform:matrix(0.196758,-0.000984,0.001250,0.249997,0,0);-ms-transform:matrix(0.196758,-0.000984,0.001250,0.249997,0,0);-webkit-transform:matrix(0.196758,-0.000984,0.001250,0.249997,0,0);}
.m22_c00373{transform:matrix(0.196798,-0.000984,0.001250,0.249997,0,0);-ms-transform:matrix(0.196798,-0.000984,0.001250,0.249997,0,0);-webkit-transform:matrix(0.196798,-0.000984,0.001250,0.249997,0,0);}
.m64_c00373{transform:matrix(0.197467,-0.001777,0.002250,0.249990,0,0);-ms-transform:matrix(0.197467,-0.001777,0.002250,0.249990,0,0);-webkit-transform:matrix(0.197467,-0.001777,0.002250,0.249990,0,0);}
.maf_c00373{transform:matrix(0.197675,-0.003163,0.003999,0.249968,0,0);-ms-transform:matrix(0.197675,-0.003163,0.003999,0.249968,0,0);-webkit-transform:matrix(0.197675,-0.003163,0.003999,0.249968,0,0);}
.m75_c00373{transform:matrix(0.197737,-0.001780,0.002250,0.249990,0,0);-ms-transform:matrix(0.197737,-0.001780,0.002250,0.249990,0,0);-webkit-transform:matrix(0.197737,-0.001780,0.002250,0.249990,0,0);}
.m84_c00373{transform:matrix(0.197812,-0.001780,0.002250,0.249990,0,0);-ms-transform:matrix(0.197812,-0.001780,0.002250,0.249990,0,0);-webkit-transform:matrix(0.197812,-0.001780,0.002250,0.249990,0,0);}
.mb9_c00373{transform:matrix(0.199799,-0.003197,0.003999,0.249968,0,0);-ms-transform:matrix(0.199799,-0.003197,0.003999,0.249968,0,0);-webkit-transform:matrix(0.199799,-0.003197,0.003999,0.249968,0,0);}
.m2e_c00373{transform:matrix(0.200117,-0.001001,0.001250,0.249997,0,0);-ms-transform:matrix(0.200117,-0.001001,0.001250,0.249997,0,0);-webkit-transform:matrix(0.200117,-0.001001,0.001250,0.249997,0,0);}
.m31_c00373{transform:matrix(0.200307,-0.001002,0.001250,0.249997,0,0);-ms-transform:matrix(0.200307,-0.001002,0.001250,0.249997,0,0);-webkit-transform:matrix(0.200307,-0.001002,0.001250,0.249997,0,0);}
.m7f_c00373{transform:matrix(0.200487,-0.001804,0.002250,0.249990,0,0);-ms-transform:matrix(0.200487,-0.001804,0.002250,0.249990,0,0);-webkit-transform:matrix(0.200487,-0.001804,0.002250,0.249990,0,0);}
.m85_c00373{transform:matrix(0.201282,-0.001812,0.002250,0.249990,0,0);-ms-transform:matrix(0.201282,-0.001812,0.002250,0.249990,0,0);-webkit-transform:matrix(0.201282,-0.001812,0.002250,0.249990,0,0);}
.m2a_c00373{transform:matrix(0.201632,-0.001008,0.001250,0.249997,0,0);-ms-transform:matrix(0.201632,-0.001008,0.001250,0.249997,0,0);-webkit-transform:matrix(0.201632,-0.001008,0.001250,0.249997,0,0);}
.m4_c00373{transform:matrix(0.202297,-0.001011,0.001250,0.249997,0,0);-ms-transform:matrix(0.202297,-0.001011,0.001250,0.249997,0,0);-webkit-transform:matrix(0.202297,-0.001011,0.001250,0.249997,0,0);}
.m8c_c00373{transform:matrix(0.202667,-0.001824,0.002250,0.249990,0,0);-ms-transform:matrix(0.202667,-0.001824,0.002250,0.249990,0,0);-webkit-transform:matrix(0.202667,-0.001824,0.002250,0.249990,0,0);}
.m2_c00373{transform:matrix(0.203037,-0.001015,0.001250,0.249997,0,0);-ms-transform:matrix(0.203037,-0.001015,0.001250,0.249997,0,0);-webkit-transform:matrix(0.203037,-0.001015,0.001250,0.249997,0,0);}
.m5a_c00373{transform:matrix(0.207097,-0.001035,0.001250,0.249997,0,0);-ms-transform:matrix(0.207097,-0.001035,0.001250,0.249997,0,0);-webkit-transform:matrix(0.207097,-0.001035,0.001250,0.249997,0,0);}
.m51_c00373{transform:matrix(0.207392,-0.001037,0.001250,0.249997,0,0);-ms-transform:matrix(0.207392,-0.001037,0.001250,0.249997,0,0);-webkit-transform:matrix(0.207392,-0.001037,0.001250,0.249997,0,0);}
.m15_c00373{transform:matrix(0.208402,-0.001042,0.001250,0.249997,0,0);-ms-transform:matrix(0.208402,-0.001042,0.001250,0.249997,0,0);-webkit-transform:matrix(0.208402,-0.001042,0.001250,0.249997,0,0);}
.m54_c00373{transform:matrix(0.208672,-0.001043,0.001250,0.249997,0,0);-ms-transform:matrix(0.208672,-0.001043,0.001250,0.249997,0,0);-webkit-transform:matrix(0.208672,-0.001043,0.001250,0.249997,0,0);}
.m1d_c00373{transform:matrix(0.208997,-0.001045,0.001250,0.249997,0,0);-ms-transform:matrix(0.208997,-0.001045,0.001250,0.249997,0,0);-webkit-transform:matrix(0.208997,-0.001045,0.001250,0.249997,0,0);}
.mad_c00373{transform:matrix(0.209023,-0.003344,0.003999,0.249968,0,0);-ms-transform:matrix(0.209023,-0.003344,0.003999,0.249968,0,0);-webkit-transform:matrix(0.209023,-0.003344,0.003999,0.249968,0,0);}
.m26_c00373{transform:matrix(0.209547,-0.001048,0.001250,0.249997,0,0);-ms-transform:matrix(0.209547,-0.001048,0.001250,0.249997,0,0);-webkit-transform:matrix(0.209547,-0.001048,0.001250,0.249997,0,0);}
.m1b_c00373{transform:matrix(0.209837,-0.001049,0.001250,0.249997,0,0);-ms-transform:matrix(0.209837,-0.001049,0.001250,0.249997,0,0);-webkit-transform:matrix(0.209837,-0.001049,0.001250,0.249997,0,0);}
.m58_c00373{transform:matrix(0.210007,-0.001050,0.001250,0.249997,0,0);-ms-transform:matrix(0.210007,-0.001050,0.001250,0.249997,0,0);-webkit-transform:matrix(0.210007,-0.001050,0.001250,0.249997,0,0);}
.m92_c00373{transform:matrix(0.211141,-0.001900,0.002250,0.249990,0,0);-ms-transform:matrix(0.211141,-0.001900,0.002250,0.249990,0,0);-webkit-transform:matrix(0.211141,-0.001900,0.002250,0.249990,0,0);}
.m9d_c00373{transform:matrix(0.211194,0.002957,-0.003500,0.249976,0,0);-ms-transform:matrix(0.211194,0.002957,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.211194,0.002957,-0.003500,0.249976,0,0);}
.m57_c00373{transform:matrix(0.211332,-0.001057,0.001250,0.249997,0,0);-ms-transform:matrix(0.211332,-0.001057,0.001250,0.249997,0,0);-webkit-transform:matrix(0.211332,-0.001057,0.001250,0.249997,0,0);}
.m2d_c00373{transform:matrix(0.211497,-0.001057,0.001250,0.249997,0,0);-ms-transform:matrix(0.211497,-0.001057,0.001250,0.249997,0,0);-webkit-transform:matrix(0.211497,-0.001057,0.001250,0.249997,0,0);}
.m90_c00373{transform:matrix(0.211966,-0.001908,0.002250,0.249990,0,0);-ms-transform:matrix(0.211966,-0.001908,0.002250,0.249990,0,0);-webkit-transform:matrix(0.211966,-0.001908,0.002250,0.249990,0,0);}
.m56_c00373{transform:matrix(0.212407,-0.001062,0.001250,0.249997,0,0);-ms-transform:matrix(0.212407,-0.001062,0.001250,0.249997,0,0);-webkit-transform:matrix(0.212407,-0.001062,0.001250,0.249997,0,0);}
.m88_c00373{transform:matrix(0.212431,-0.001912,0.002250,0.249990,0,0);-ms-transform:matrix(0.212431,-0.001912,0.002250,0.249990,0,0);-webkit-transform:matrix(0.212431,-0.001912,0.002250,0.249990,0,0);}
.ma4_c00373{transform:matrix(0.213744,0.002992,-0.003500,0.249976,0,0);-ms-transform:matrix(0.213744,0.002992,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.213744,0.002992,-0.003500,0.249976,0,0);}
.m7d_c00373{transform:matrix(0.214496,-0.001930,0.002250,0.249990,0,0);-ms-transform:matrix(0.214496,-0.001930,0.002250,0.249990,0,0);-webkit-transform:matrix(0.214496,-0.001930,0.002250,0.249990,0,0);}
.m1c_c00373{transform:matrix(0.214882,-0.001074,0.001250,0.249997,0,0);-ms-transform:matrix(0.214882,-0.001074,0.001250,0.249997,0,0);-webkit-transform:matrix(0.214882,-0.001074,0.001250,0.249997,0,0);}
.m32_c00373{transform:matrix(0.215022,-0.001075,0.001250,0.249997,0,0);-ms-transform:matrix(0.215022,-0.001075,0.001250,0.249997,0,0);-webkit-transform:matrix(0.215022,-0.001075,0.001250,0.249997,0,0);}
.ma5_c00373{transform:matrix(0.215724,0.003020,-0.003500,0.249976,0,0);-ms-transform:matrix(0.215724,0.003020,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.215724,0.003020,-0.003500,0.249976,0,0);}
.m4f_c00373{transform:matrix(0.216072,-0.001080,0.001250,0.249997,0,0);-ms-transform:matrix(0.216072,-0.001080,0.001250,0.249997,0,0);-webkit-transform:matrix(0.216072,-0.001080,0.001250,0.249997,0,0);}
.me_c00373{transform:matrix(0.216372,-0.001082,0.001250,0.249997,0,0);-ms-transform:matrix(0.216372,-0.001082,0.001250,0.249997,0,0);-webkit-transform:matrix(0.216372,-0.001082,0.001250,0.249997,0,0);}
.m87_c00373{transform:matrix(0.216886,-0.001952,0.002250,0.249990,0,0);-ms-transform:matrix(0.216886,-0.001952,0.002250,0.249990,0,0);-webkit-transform:matrix(0.216886,-0.001952,0.002250,0.249990,0,0);}
.m67_c00373{transform:matrix(0.217241,-0.001955,0.002250,0.249990,0,0);-ms-transform:matrix(0.217241,-0.001955,0.002250,0.249990,0,0);-webkit-transform:matrix(0.217241,-0.001955,0.002250,0.249990,0,0);}
.m78_c00373{transform:matrix(0.217326,-0.001956,0.002250,0.249990,0,0);-ms-transform:matrix(0.217326,-0.001956,0.002250,0.249990,0,0);-webkit-transform:matrix(0.217326,-0.001956,0.002250,0.249990,0,0);}
.m41_c00373{transform:matrix(0.218252,-0.001091,0.001250,0.249997,0,0);-ms-transform:matrix(0.218252,-0.001091,0.001250,0.249997,0,0);-webkit-transform:matrix(0.218252,-0.001091,0.001250,0.249997,0,0);}
.m3a_c00373{transform:matrix(0.218287,-0.001091,0.001250,0.249997,0,0);-ms-transform:matrix(0.218287,-0.001091,0.001250,0.249997,0,0);-webkit-transform:matrix(0.218287,-0.001091,0.001250,0.249997,0,0);}
.m1a_c00373{transform:matrix(0.218397,-0.001092,0.001250,0.249997,0,0);-ms-transform:matrix(0.218397,-0.001092,0.001250,0.249997,0,0);-webkit-transform:matrix(0.218397,-0.001092,0.001250,0.249997,0,0);}
.m13_c00373{transform:matrix(0.218887,-0.001094,0.001250,0.249997,0,0);-ms-transform:matrix(0.218887,-0.001094,0.001250,0.249997,0,0);-webkit-transform:matrix(0.218887,-0.001094,0.001250,0.249997,0,0);}
.m14_c00373{transform:matrix(0.219542,-0.001098,0.001250,0.249997,0,0);-ms-transform:matrix(0.219542,-0.001098,0.001250,0.249997,0,0);-webkit-transform:matrix(0.219542,-0.001098,0.001250,0.249997,0,0);}
.m17_c00373{transform:matrix(0.219617,-0.001098,0.001250,0.249997,0,0);-ms-transform:matrix(0.219617,-0.001098,0.001250,0.249997,0,0);-webkit-transform:matrix(0.219617,-0.001098,0.001250,0.249997,0,0);}
.ma9_c00373{transform:matrix(0.220737,-0.003532,0.003999,0.249968,0,0);-ms-transform:matrix(0.220737,-0.003532,0.003999,0.249968,0,0);-webkit-transform:matrix(0.220737,-0.003532,0.003999,0.249968,0,0);}
.m4c_c00373{transform:matrix(0.220827,-0.001104,0.001250,0.249997,0,0);-ms-transform:matrix(0.220827,-0.001104,0.001250,0.249997,0,0);-webkit-transform:matrix(0.220827,-0.001104,0.001250,0.249997,0,0);}
.m4a_c00373{transform:matrix(0.222137,-0.001111,0.001250,0.249997,0,0);-ms-transform:matrix(0.222137,-0.001111,0.001250,0.249997,0,0);-webkit-transform:matrix(0.222137,-0.001111,0.001250,0.249997,0,0);}
.m65_c00373{transform:matrix(0.222261,-0.002000,0.002250,0.249990,0,0);-ms-transform:matrix(0.222261,-0.002000,0.002250,0.249990,0,0);-webkit-transform:matrix(0.222261,-0.002000,0.002250,0.249990,0,0);}
.m6e_c00373{transform:matrix(0.222756,-0.002005,0.002250,0.249990,0,0);-ms-transform:matrix(0.222756,-0.002005,0.002250,0.249990,0,0);-webkit-transform:matrix(0.222756,-0.002005,0.002250,0.249990,0,0);}
.m94_c00373{transform:matrix(0.223456,-0.002011,0.002250,0.249990,0,0);-ms-transform:matrix(0.223456,-0.002011,0.002250,0.249990,0,0);-webkit-transform:matrix(0.223456,-0.002011,0.002250,0.249990,0,0);}
.m18_c00373{transform:matrix(0.224497,-0.001122,0.001250,0.249997,0,0);-ms-transform:matrix(0.224497,-0.001122,0.001250,0.249997,0,0);-webkit-transform:matrix(0.224497,-0.001122,0.001250,0.249997,0,0);}
.m25_c00373{transform:matrix(0.224577,-0.001123,0.001250,0.249997,0,0);-ms-transform:matrix(0.224577,-0.001123,0.001250,0.249997,0,0);-webkit-transform:matrix(0.224577,-0.001123,0.001250,0.249997,0,0);}
.m8e_c00373{transform:matrix(0.224726,-0.002023,0.002250,0.249990,0,0);-ms-transform:matrix(0.224726,-0.002023,0.002250,0.249990,0,0);-webkit-transform:matrix(0.224726,-0.002023,0.002250,0.249990,0,0);}
.m37_c00373{transform:matrix(0.224912,-0.001125,0.001250,0.249997,0,0);-ms-transform:matrix(0.224912,-0.001125,0.001250,0.249997,0,0);-webkit-transform:matrix(0.224912,-0.001125,0.001250,0.249997,0,0);}
.m29_c00373{transform:matrix(0.225437,-0.001127,0.001250,0.249997,0,0);-ms-transform:matrix(0.225437,-0.001127,0.001250,0.249997,0,0);-webkit-transform:matrix(0.225437,-0.001127,0.001250,0.249997,0,0);}
.m42_c00373{transform:matrix(0.226022,-0.001130,0.001250,0.249997,0,0);-ms-transform:matrix(0.226022,-0.001130,0.001250,0.249997,0,0);-webkit-transform:matrix(0.226022,-0.001130,0.001250,0.249997,0,0);}
.m1_c00373{transform:matrix(0.227207,-0.001136,0.001250,0.249997,0,0);-ms-transform:matrix(0.227207,-0.001136,0.001250,0.249997,0,0);-webkit-transform:matrix(0.227207,-0.001136,0.001250,0.249997,0,0);}
.m4d_c00373{transform:matrix(0.227242,-0.001136,0.001250,0.249997,0,0);-ms-transform:matrix(0.227242,-0.001136,0.001250,0.249997,0,0);-webkit-transform:matrix(0.227242,-0.001136,0.001250,0.249997,0,0);}
.m3e_c00373{transform:matrix(0.227547,-0.001138,0.001250,0.249997,0,0);-ms-transform:matrix(0.227547,-0.001138,0.001250,0.249997,0,0);-webkit-transform:matrix(0.227547,-0.001138,0.001250,0.249997,0,0);}
.mb5_c00373{transform:matrix(0.227956,-0.003647,0.003999,0.249968,0,0);-ms-transform:matrix(0.227956,-0.003647,0.003999,0.249968,0,0);-webkit-transform:matrix(0.227956,-0.003647,0.003999,0.249968,0,0);}
.m9e_c00373{transform:matrix(0.230337,0.003225,-0.003500,0.249976,0,0);-ms-transform:matrix(0.230337,0.003225,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.230337,0.003225,-0.003500,0.249976,0,0);}
.m5e_c00373{transform:matrix(0.230412,-0.001152,0.001250,0.249997,0,0);-ms-transform:matrix(0.230412,-0.001152,0.001250,0.249997,0,0);-webkit-transform:matrix(0.230412,-0.001152,0.001250,0.249997,0,0);}
.m30_c00373{transform:matrix(0.230802,-0.001154,0.001250,0.249997,0,0);-ms-transform:matrix(0.230802,-0.001154,0.001250,0.249997,0,0);-webkit-transform:matrix(0.230802,-0.001154,0.001250,0.249997,0,0);}
.m35_c00373{transform:matrix(0.230812,-0.001154,0.001250,0.249997,0,0);-ms-transform:matrix(0.230812,-0.001154,0.001250,0.249997,0,0);-webkit-transform:matrix(0.230812,-0.001154,0.001250,0.249997,0,0);}
.m12_c00373{transform:matrix(0.231027,-0.001155,0.001250,0.249997,0,0);-ms-transform:matrix(0.231027,-0.001155,0.001250,0.249997,0,0);-webkit-transform:matrix(0.231027,-0.001155,0.001250,0.249997,0,0);}
.m6b_c00373{transform:matrix(0.231951,-0.002088,0.002250,0.249990,0,0);-ms-transform:matrix(0.231951,-0.002088,0.002250,0.249990,0,0);-webkit-transform:matrix(0.231951,-0.002088,0.002250,0.249990,0,0);}
.m36_c00373{transform:matrix(0.231977,-0.001160,0.001250,0.249997,0,0);-ms-transform:matrix(0.231977,-0.001160,0.001250,0.249997,0,0);-webkit-transform:matrix(0.231977,-0.001160,0.001250,0.249997,0,0);}
.m91_c00373{transform:matrix(0.233471,-0.002101,0.002250,0.249990,0,0);-ms-transform:matrix(0.233471,-0.002101,0.002250,0.249990,0,0);-webkit-transform:matrix(0.233471,-0.002101,0.002250,0.249990,0,0);}
.m27_c00373{transform:matrix(0.234157,-0.001171,0.001250,0.249997,0,0);-ms-transform:matrix(0.234157,-0.001171,0.001250,0.249997,0,0);-webkit-transform:matrix(0.234157,-0.001171,0.001250,0.249997,0,0);}
.mac_c00373{transform:matrix(0.236245,-0.003780,0.003999,0.249968,0,0);-ms-transform:matrix(0.236245,-0.003780,0.003999,0.249968,0,0);-webkit-transform:matrix(0.236245,-0.003780,0.003999,0.249968,0,0);}
.m40_c00373{transform:matrix(0.239702,-0.001199,0.001250,0.249997,0,0);-ms-transform:matrix(0.239702,-0.001199,0.001250,0.249997,0,0);-webkit-transform:matrix(0.239702,-0.001199,0.001250,0.249997,0,0);}
.m9b_c00373{transform:matrix(0.240351,0.003365,-0.003500,0.249976,0,0);-ms-transform:matrix(0.240351,0.003365,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.240351,0.003365,-0.003500,0.249976,0,0);}
.m6c_c00373{transform:matrix(0.242035,-0.002178,0.002250,0.249990,0,0);-ms-transform:matrix(0.242035,-0.002178,0.002250,0.249990,0,0);-webkit-transform:matrix(0.242035,-0.002178,0.002250,0.249990,0,0);}
.m33_c00373{transform:matrix(0.242217,-0.001211,0.001250,0.249997,0,0);-ms-transform:matrix(0.242217,-0.001211,0.001250,0.249997,0,0);-webkit-transform:matrix(0.242217,-0.001211,0.001250,0.249997,0,0);}
.m93_c00373{transform:matrix(0.242320,-0.002181,0.002250,0.249990,0,0);-ms-transform:matrix(0.242320,-0.002181,0.002250,0.249990,0,0);-webkit-transform:matrix(0.242320,-0.002181,0.002250,0.249990,0,0);}
.m6d_c00373{transform:matrix(0.242855,-0.002186,0.002250,0.249990,0,0);-ms-transform:matrix(0.242855,-0.002186,0.002250,0.249990,0,0);-webkit-transform:matrix(0.242855,-0.002186,0.002250,0.249990,0,0);}
.m8d_c00373{transform:matrix(0.244615,-0.002202,0.002250,0.249990,0,0);-ms-transform:matrix(0.244615,-0.002202,0.002250,0.249990,0,0);-webkit-transform:matrix(0.244615,-0.002202,0.002250,0.249990,0,0);}
.m5b_c00373{transform:matrix(0.246127,-0.001231,0.001250,0.249997,0,0);-ms-transform:matrix(0.246127,-0.001231,0.001250,0.249997,0,0);-webkit-transform:matrix(0.246127,-0.001231,0.001250,0.249997,0,0);}
.m34_c00373{transform:matrix(0.246312,-0.001232,0.001250,0.249997,0,0);-ms-transform:matrix(0.246312,-0.001232,0.001250,0.249997,0,0);-webkit-transform:matrix(0.246312,-0.001232,0.001250,0.249997,0,0);}
.m43_c00373{transform:matrix(0.247592,-0.001238,0.001250,0.249997,0,0);-ms-transform:matrix(0.247592,-0.001238,0.001250,0.249997,0,0);-webkit-transform:matrix(0.247592,-0.001238,0.001250,0.249997,0,0);}
.m38_c00373{transform:matrix(0.247967,-0.001240,0.001250,0.249997,0,0);-ms-transform:matrix(0.247967,-0.001240,0.001250,0.249997,0,0);-webkit-transform:matrix(0.247967,-0.001240,0.001250,0.249997,0,0);}
.m3f_c00373{transform:matrix(0.251182,-0.001256,0.001250,0.249997,0,0);-ms-transform:matrix(0.251182,-0.001256,0.001250,0.249997,0,0);-webkit-transform:matrix(0.251182,-0.001256,0.001250,0.249997,0,0);}
.mb4_c00373{transform:matrix(0.252293,-0.004037,0.003999,0.249968,0,0);-ms-transform:matrix(0.252293,-0.004037,0.003999,0.249968,0,0);-webkit-transform:matrix(0.252293,-0.004037,0.003999,0.249968,0,0);}
.m95_c00373{transform:matrix(0.252465,-0.002272,0.002250,0.249990,0,0);-ms-transform:matrix(0.252465,-0.002272,0.002250,0.249990,0,0);-webkit-transform:matrix(0.252465,-0.002272,0.002250,0.249990,0,0);}
.m79_c00373{transform:matrix(0.252750,-0.002275,0.002250,0.249990,0,0);-ms-transform:matrix(0.252750,-0.002275,0.002250,0.249990,0,0);-webkit-transform:matrix(0.252750,-0.002275,0.002250,0.249990,0,0);}
.m4b_c00373{transform:matrix(0.254732,-0.001274,0.001250,0.249997,0,0);-ms-transform:matrix(0.254732,-0.001274,0.001250,0.249997,0,0);-webkit-transform:matrix(0.254732,-0.001274,0.001250,0.249997,0,0);}
.m5_c00373{transform:matrix(0.255672,-0.001278,0.001250,0.249997,0,0);-ms-transform:matrix(0.255672,-0.001278,0.001250,0.249997,0,0);-webkit-transform:matrix(0.255672,-0.001278,0.001250,0.249997,0,0);}
.m52_c00373{transform:matrix(0.256462,-0.001282,0.001250,0.249997,0,0);-ms-transform:matrix(0.256462,-0.001282,0.001250,0.249997,0,0);-webkit-transform:matrix(0.256462,-0.001282,0.001250,0.249997,0,0);}
.m47_c00373{transform:matrix(0.257107,-0.001286,0.001250,0.249997,0,0);-ms-transform:matrix(0.257107,-0.001286,0.001250,0.249997,0,0);-webkit-transform:matrix(0.257107,-0.001286,0.001250,0.249997,0,0);}
.md_c00373{transform:matrix(0.261012,-0.001305,0.001250,0.249997,0,0);-ms-transform:matrix(0.261012,-0.001305,0.001250,0.249997,0,0);-webkit-transform:matrix(0.261012,-0.001305,0.001250,0.249997,0,0);}
.m63_c00373{transform:matrix(0.261264,-0.002351,0.002250,0.249990,0,0);-ms-transform:matrix(0.261264,-0.002351,0.002250,0.249990,0,0);-webkit-transform:matrix(0.261264,-0.002351,0.002250,0.249990,0,0);}
.mae_c00373{transform:matrix(0.261771,-0.004188,0.003999,0.249968,0,0);-ms-transform:matrix(0.261771,-0.004188,0.003999,0.249968,0,0);-webkit-transform:matrix(0.261771,-0.004188,0.003999,0.249968,0,0);}
.m82_c00373{transform:matrix(0.261854,-0.002357,0.002250,0.249990,0,0);-ms-transform:matrix(0.261854,-0.002357,0.002250,0.249990,0,0);-webkit-transform:matrix(0.261854,-0.002357,0.002250,0.249990,0,0);}
.m3d_c00373{transform:matrix(0.265972,-0.001330,0.001250,0.249997,0,0);-ms-transform:matrix(0.265972,-0.001330,0.001250,0.249997,0,0);-webkit-transform:matrix(0.265972,-0.001330,0.001250,0.249997,0,0);}
.m44_c00373{transform:matrix(0.266797,-0.001334,0.001250,0.249997,0,0);-ms-transform:matrix(0.266797,-0.001334,0.001250,0.249997,0,0);-webkit-transform:matrix(0.266797,-0.001334,0.001250,0.249997,0,0);}
.m8_c00373{transform:matrix(0.266807,-0.001334,0.001250,0.249997,0,0);-ms-transform:matrix(0.266807,-0.001334,0.001250,0.249997,0,0);-webkit-transform:matrix(0.266807,-0.001334,0.001250,0.249997,0,0);}
.mbb_c00373{transform:matrix(0.267481,-0.004280,0.003999,0.249968,0,0);-ms-transform:matrix(0.267481,-0.004280,0.003999,0.249968,0,0);-webkit-transform:matrix(0.267481,-0.004280,0.003999,0.249968,0,0);}
.m0_c00373{transform:matrix(0.269462,-0.001347,0.001250,0.249997,0,0);-ms-transform:matrix(0.269462,-0.001347,0.001250,0.249997,0,0);-webkit-transform:matrix(0.269462,-0.001347,0.001250,0.249997,0,0);}
.mb1_c00373{transform:matrix(0.270430,-0.004327,0.003999,0.249968,0,0);-ms-transform:matrix(0.270430,-0.004327,0.003999,0.249968,0,0);-webkit-transform:matrix(0.270430,-0.004327,0.003999,0.249968,0,0);}
.m39_c00373{transform:matrix(0.273387,-0.001367,0.001250,0.249997,0,0);-ms-transform:matrix(0.273387,-0.001367,0.001250,0.249997,0,0);-webkit-transform:matrix(0.273387,-0.001367,0.001250,0.249997,0,0);}
.m3b_c00373{transform:matrix(0.274312,-0.001372,0.001250,0.249997,0,0);-ms-transform:matrix(0.274312,-0.001372,0.001250,0.249997,0,0);-webkit-transform:matrix(0.274312,-0.001372,0.001250,0.249997,0,0);}
.m16_c00373{transform:matrix(0.274417,-0.001372,0.001250,0.249997,0,0);-ms-transform:matrix(0.274417,-0.001372,0.001250,0.249997,0,0);-webkit-transform:matrix(0.274417,-0.001372,0.001250,0.249997,0,0);}
.m53_c00373{transform:matrix(0.276852,-0.001384,0.001250,0.249997,0,0);-ms-transform:matrix(0.276852,-0.001384,0.001250,0.249997,0,0);-webkit-transform:matrix(0.276852,-0.001384,0.001250,0.249997,0,0);}
.m60_c00373{transform:matrix(0.279542,-0.001398,0.001250,0.249997,0,0);-ms-transform:matrix(0.279542,-0.001398,0.001250,0.249997,0,0);-webkit-transform:matrix(0.279542,-0.001398,0.001250,0.249997,0,0);}
.m55_c00373{transform:matrix(0.289481,-0.001447,0.001250,0.249997,0,0);-ms-transform:matrix(0.289481,-0.001447,0.001250,0.249997,0,0);-webkit-transform:matrix(0.289481,-0.001447,0.001250,0.249997,0,0);}
.m2f_c00373{transform:matrix(0.294331,-0.001472,0.001250,0.249997,0,0);-ms-transform:matrix(0.294331,-0.001472,0.001250,0.249997,0,0);-webkit-transform:matrix(0.294331,-0.001472,0.001250,0.249997,0,0);}
.ma2_c00373{transform:matrix(0.294781,0.004127,-0.003500,0.249976,0,0);-ms-transform:matrix(0.294781,0.004127,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.294781,0.004127,-0.003500,0.249976,0,0);}
.maa_c00373{transform:matrix(0.296507,-0.004744,0.003999,0.249968,0,0);-ms-transform:matrix(0.296507,-0.004744,0.003999,0.249968,0,0);-webkit-transform:matrix(0.296507,-0.004744,0.003999,0.249968,0,0);}
.m50_c00373{transform:matrix(0.296661,-0.001483,0.001250,0.249997,0,0);-ms-transform:matrix(0.296661,-0.001483,0.001250,0.249997,0,0);-webkit-transform:matrix(0.296661,-0.001483,0.001250,0.249997,0,0);}
.m4e_c00373{transform:matrix(0.299326,-0.001497,0.001250,0.249997,0,0);-ms-transform:matrix(0.299326,-0.001497,0.001250,0.249997,0,0);-webkit-transform:matrix(0.299326,-0.001497,0.001250,0.249997,0,0);}
.mb0_c00373{transform:matrix(0.305581,-0.004889,0.003999,0.249968,0,0);-ms-transform:matrix(0.305581,-0.004889,0.003999,0.249968,0,0);-webkit-transform:matrix(0.305581,-0.004889,0.003999,0.249968,0,0);}
.ma_c00373{transform:matrix(0.308306,-0.001542,0.001250,0.249997,0,0);-ms-transform:matrix(0.308306,-0.001542,0.001250,0.249997,0,0);-webkit-transform:matrix(0.308306,-0.001542,0.001250,0.249997,0,0);}
.m23_c00373{transform:matrix(0.313816,-0.001569,0.001250,0.249997,0,0);-ms-transform:matrix(0.313816,-0.001569,0.001250,0.249997,0,0);-webkit-transform:matrix(0.313816,-0.001569,0.001250,0.249997,0,0);}
.m48_c00373{transform:matrix(0.317876,-0.001589,0.001250,0.249997,0,0);-ms-transform:matrix(0.317876,-0.001589,0.001250,0.249997,0,0);-webkit-transform:matrix(0.317876,-0.001589,0.001250,0.249997,0,0);}
.m97_c00373{transform:matrix(0.323777,-0.002914,0.002250,0.249990,0,0);-ms-transform:matrix(0.323777,-0.002914,0.002250,0.249990,0,0);-webkit-transform:matrix(0.323777,-0.002914,0.002250,0.249990,0,0);}
.mb6_c00373{transform:matrix(0.324598,-0.005194,0.003999,0.249968,0,0);-ms-transform:matrix(0.324598,-0.005194,0.003999,0.249968,0,0);-webkit-transform:matrix(0.324598,-0.005194,0.003999,0.249968,0,0);}
.m46_c00373{transform:matrix(0.325721,-0.001629,0.001250,0.249997,0,0);-ms-transform:matrix(0.325721,-0.001629,0.001250,0.249997,0,0);-webkit-transform:matrix(0.325721,-0.001629,0.001250,0.249997,0,0);}
.m45_c00373{transform:matrix(0.331226,-0.001656,0.001250,0.249997,0,0);-ms-transform:matrix(0.331226,-0.001656,0.001250,0.249997,0,0);-webkit-transform:matrix(0.331226,-0.001656,0.001250,0.249997,0,0);}
.m96_c00373{transform:matrix(0.342711,-0.003084,0.002250,0.249990,0,0);-ms-transform:matrix(0.342711,-0.003084,0.002250,0.249990,0,0);-webkit-transform:matrix(0.342711,-0.003084,0.002250,0.249990,0,0);}
.m7_c00373{transform:matrix(0.346296,-0.001731,0.001250,0.249997,0,0);-ms-transform:matrix(0.346296,-0.001731,0.001250,0.249997,0,0);-webkit-transform:matrix(0.346296,-0.001731,0.001250,0.249997,0,0);}
.m61_c00373{transform:matrix(0.348891,-0.003140,0.002250,0.249990,0,0);-ms-transform:matrix(0.348891,-0.003140,0.002250,0.249990,0,0);-webkit-transform:matrix(0.348891,-0.003140,0.002250,0.249990,0,0);}
.m3c_c00373{transform:matrix(0.360470,-0.001802,0.001250,0.249997,0,0);-ms-transform:matrix(0.360470,-0.001802,0.001250,0.249997,0,0);-webkit-transform:matrix(0.360470,-0.001802,0.001250,0.249997,0,0);}
.mc_c00373{transform:matrix(0.380820,-0.001904,0.001250,0.249997,0,0);-ms-transform:matrix(0.380820,-0.001904,0.001250,0.249997,0,0);-webkit-transform:matrix(0.380820,-0.001904,0.001250,0.249997,0,0);}
.mab_c00373{transform:matrix(0.381956,-0.006111,0.003999,0.249968,0,0);-ms-transform:matrix(0.381956,-0.006111,0.003999,0.249968,0,0);-webkit-transform:matrix(0.381956,-0.006111,0.003999,0.249968,0,0);}
.mba_c00373{transform:matrix(0.399359,-0.006390,0.003999,0.249968,0,0);-ms-transform:matrix(0.399359,-0.006390,0.003999,0.249968,0,0);-webkit-transform:matrix(0.399359,-0.006390,0.003999,0.249968,0,0);}
.m9a_c00373{transform:matrix(0.420849,0.005892,-0.003500,0.249976,0,0);-ms-transform:matrix(0.420849,0.005892,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.420849,0.005892,-0.003500,0.249976,0,0);}
.m89_c00373{transform:matrix(0.424838,-0.003824,0.002250,0.249990,0,0);-ms-transform:matrix(0.424838,-0.003824,0.002250,0.249990,0,0);-webkit-transform:matrix(0.424838,-0.003824,0.002250,0.249990,0,0);}
.ma6_c00373{transform:matrix(0.433063,0.006063,-0.003500,0.249976,0,0);-ms-transform:matrix(0.433063,0.006063,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.433063,0.006063,-0.003500,0.249976,0,0);}
.mb7_c00373{transform:matrix(0.450097,-0.007202,0.003999,0.249968,0,0);-ms-transform:matrix(0.450097,-0.007202,0.003999,0.249968,0,0);-webkit-transform:matrix(0.450097,-0.007202,0.003999,0.249968,0,0);}
.m7c_c00373{transform:matrix(0.451072,-0.004060,0.002250,0.249990,0,0);-ms-transform:matrix(0.451072,-0.004060,0.002250,0.249990,0,0);-webkit-transform:matrix(0.451072,-0.004060,0.002250,0.249990,0,0);}
.m66_c00373{transform:matrix(0.458926,-0.004130,0.002250,0.249990,0,0);-ms-transform:matrix(0.458926,-0.004130,0.002250,0.249990,0,0);-webkit-transform:matrix(0.458926,-0.004130,0.002250,0.249990,0,0);}
.m8a_c00373{transform:matrix(0.464136,-0.004177,0.002250,0.249990,0,0);-ms-transform:matrix(0.464136,-0.004177,0.002250,0.249990,0,0);-webkit-transform:matrix(0.464136,-0.004177,0.002250,0.249990,0,0);}
.m9f_c00373{transform:matrix(0.496441,0.006950,-0.003500,0.249976,0,0);-ms-transform:matrix(0.496441,0.006950,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.496441,0.006950,-0.003500,0.249976,0,0);}
.ma0_c00373{transform:matrix(0.724659,0.010145,-0.003500,0.249976,0,0);-ms-transform:matrix(0.724659,0.010145,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.724659,0.010145,-0.003500,0.249976,0,0);}
.mbc_c00373{transform:matrix(0.837443,-0.013399,0.003999,0.249968,0,0);-ms-transform:matrix(0.837443,-0.013399,0.003999,0.249968,0,0);-webkit-transform:matrix(0.837443,-0.013399,0.003999,0.249968,0,0);}
.mb_c00373{transform:matrix(0.848284,-0.004241,0.001250,0.249997,0,0);-ms-transform:matrix(0.848284,-0.004241,0.001250,0.249997,0,0);-webkit-transform:matrix(0.848284,-0.004241,0.001250,0.249997,0,0);}
.v0_c00373{vertical-align:0.000000px;}
.ls0_c00373{letter-spacing:0.000000px;}
.sc__c00373{text-shadow:none;}
.sc0_c00373{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__c00373{-webkit-text-stroke:0px transparent;}
.sc0_c00373{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00373{word-spacing:0.000000px;}
.fc0_c00373{color:transparent;}
.fsb_c00373{font-size:48.000000px;}
.fs3_c00373{font-size:78.000975px;}
.fs2_c00373{font-size:84.001050px;}
.fs0_c00373{font-size:90.001125px;}
.fs4_c00373{font-size:90.003645px;}
.fs1_c00373{font-size:96.001200px;}
.fs6_c00373{font-size:102.004131px;}
.fs7_c00373{font-size:102.009996px;}
.fs9_c00373{font-size:102.013055px;}
.fs8_c00373{font-size:108.010583px;}
.fs5_c00373{font-size:114.004617px;}
.fsa_c00373{font-size:114.014591px;}
.y0_c00373{bottom:0.000000px;}
.yb4_c00373{bottom:478.981548px;}
.yb5_c00373{bottom:480.344148px;}
.yb6_c00373{bottom:480.862008px;}
.yb7_c00373{bottom:481.316460px;}
.yb8_c00373{bottom:482.385108px;}
.yb9_c00373{bottom:482.965440px;}
.yba_c00373{bottom:484.230324px;}
.ybb_c00373{bottom:485.390532px;}
.ybc_c00373{bottom:486.176496px;}
.ybd_c00373{bottom:486.590928px;}
.ya8_c00373{bottom:517.590000px;}
.ya9_c00373{bottom:518.661672px;}
.yaa_c00373{bottom:519.440448px;}
.yab_c00373{bottom:520.805400px;}
.yac_c00373{bottom:521.599896px;}
.yad_c00373{bottom:522.031416px;}
.yae_c00373{bottom:523.466832px;}
.yaf_c00373{bottom:523.973592px;}
.yb0_c00373{bottom:525.048744px;}
.yb1_c00373{bottom:525.413208px;}
.yb2_c00373{bottom:525.946056px;}
.yb3_c00373{bottom:527.543448px;}
.ya7_c00373{bottom:586.861851px;}
.ya6_c00373{bottom:587.191401px;}
.ya5_c00373{bottom:587.811393px;}
.ya4_c00373{bottom:588.175263px;}
.ya3_c00373{bottom:588.571125px;}
.ya2_c00373{bottom:588.773604px;}
.ya1_c00373{bottom:589.445199px;}
.ya0_c00373{bottom:589.945908px;}
.y9f_c00373{bottom:623.736045px;}
.y9e_c00373{bottom:624.800955px;}
.y9d_c00373{bottom:625.587111px;}
.y9c_c00373{bottom:626.087079px;}
.y9b_c00373{bottom:627.550002px;}
.y9a_c00373{bottom:630.555144px;}
.y99_c00373{bottom:631.797000px;}
.y8a_c00373{bottom:656.443896px;}
.y8b_c00373{bottom:656.700268px;}
.y8c_c00373{bottom:657.001641px;}
.y8d_c00373{bottom:657.200625px;}
.y8e_c00373{bottom:657.715081px;}
.y8f_c00373{bottom:658.000450px;}
.y90_c00373{bottom:658.328457px;}
.y91_c00373{bottom:658.519332px;}
.y92_c00373{bottom:658.786782px;}
.y93_c00373{bottom:658.935221px;}
.y94_c00373{bottom:659.362402px;}
.y95_c00373{bottom:659.583369px;}
.y96_c00373{bottom:659.781166px;}
.y97_c00373{bottom:660.241719px;}
.y98_c00373{bottom:660.597751px;}
.y85_c00373{bottom:696.407002px;}
.y88_c00373{bottom:696.407338px;}
.y89_c00373{bottom:696.407521px;}
.y87_c00373{bottom:696.407682px;}
.y84_c00373{bottom:696.407706px;}
.y86_c00373{bottom:696.407725px;}
.y83_c00373{bottom:696.408333px;}
.y80_c00373{bottom:696.408490px;}
.y81_c00373{bottom:696.408810px;}
.y82_c00373{bottom:696.408886px;}
.y7f_c00373{bottom:696.409044px;}
.y7d_c00373{bottom:696.409114px;}
.y7e_c00373{bottom:696.409461px;}
.y70_c00373{bottom:731.728746px;}
.y6f_c00373{bottom:731.728863px;}
.y71_c00373{bottom:731.729229px;}
.y72_c00373{bottom:731.729605px;}
.y73_c00373{bottom:731.729982px;}
.y78_c00373{bottom:731.730277px;}
.y74_c00373{bottom:731.730358px;}
.y76_c00373{bottom:731.730408px;}
.y79_c00373{bottom:731.730414px;}
.y77_c00373{bottom:731.730561px;}
.y7b_c00373{bottom:731.730583px;}
.y75_c00373{bottom:731.730811px;}
.y7a_c00373{bottom:731.730850px;}
.y7c_c00373{bottom:731.731200px;}
.y62_c00373{bottom:767.341500px;}
.y63_c00373{bottom:767.599458px;}
.y64_c00373{bottom:767.760229px;}
.y65_c00373{bottom:768.867108px;}
.y66_c00373{bottom:769.158735px;}
.y67_c00373{bottom:770.058942px;}
.y68_c00373{bottom:770.641197px;}
.y69_c00373{bottom:771.245632px;}
.y6a_c00373{bottom:771.634594px;}
.y6b_c00373{bottom:771.940693px;}
.y6c_c00373{bottom:772.266894px;}
.y6d_c00373{bottom:773.037352px;}
.y6e_c00373{bottom:773.627883px;}
.y57_c00373{bottom:803.246648px;}
.y58_c00373{bottom:803.639970px;}
.y59_c00373{bottom:803.866493px;}
.y5a_c00373{bottom:804.639165px;}
.y5b_c00373{bottom:804.879570px;}
.y5c_c00373{bottom:805.063028px;}
.y5d_c00373{bottom:805.892588px;}
.y5e_c00373{bottom:806.103758px;}
.y5f_c00373{bottom:806.334502px;}
.y60_c00373{bottom:807.036480px;}
.y61_c00373{bottom:807.308985px;}
.y47_c00373{bottom:837.541560px;}
.y48_c00373{bottom:838.398255px;}
.y49_c00373{bottom:838.797307px;}
.y4a_c00373{bottom:839.690033px;}
.y4b_c00373{bottom:840.237615px;}
.y4c_c00373{bottom:840.620738px;}
.y4d_c00373{bottom:841.417447px;}
.y4e_c00373{bottom:841.821698px;}
.y4f_c00373{bottom:842.245898px;}
.y50_c00373{bottom:843.325583px;}
.y51_c00373{bottom:843.675367px;}
.y52_c00373{bottom:843.934613px;}
.y53_c00373{bottom:844.317847px;}
.y54_c00373{bottom:845.024685px;}
.y55_c00373{bottom:845.366933px;}
.y56_c00373{bottom:845.662935px;}
.y3c_c00373{bottom:871.820700px;}
.y3d_c00373{bottom:872.181585px;}
.y3e_c00373{bottom:872.484578px;}
.y3f_c00373{bottom:872.907735px;}
.y40_c00373{bottom:873.258600px;}
.y41_c00373{bottom:873.962835px;}
.y42_c00373{bottom:874.842053px;}
.y43_c00373{bottom:875.107072px;}
.y44_c00373{bottom:875.370758px;}
.y45_c00373{bottom:875.990955px;}
.y46_c00373{bottom:877.044233px;}
.y31_c00373{bottom:908.201948px;}
.y32_c00373{bottom:909.127995px;}
.y33_c00373{bottom:909.529560px;}
.y34_c00373{bottom:909.979793px;}
.y35_c00373{bottom:911.517067px;}
.y36_c00373{bottom:912.316852px;}
.y37_c00373{bottom:912.715065px;}
.y38_c00373{bottom:913.805888px;}
.y39_c00373{bottom:914.775060px;}
.y3a_c00373{bottom:915.553995px;}
.y3b_c00373{bottom:915.923813px;}
.y24_c00373{bottom:944.730023px;}
.y25_c00373{bottom:945.245858px;}
.y26_c00373{bottom:945.858533px;}
.y27_c00373{bottom:946.380608px;}
.y28_c00373{bottom:946.752638px;}
.y29_c00373{bottom:947.478443px;}
.y2a_c00373{bottom:947.897708px;}
.y2b_c00373{bottom:948.176708px;}
.y2c_c00373{bottom:949.139625px;}
.y2d_c00373{bottom:949.493468px;}
.y2e_c00373{bottom:950.243768px;}
.y2f_c00373{bottom:950.595082px;}
.y30_c00373{bottom:951.459113px;}
.y1a_c00373{bottom:980.370405px;}
.y1b_c00373{bottom:980.653118px;}
.y1c_c00373{bottom:981.753990px;}
.y1d_c00373{bottom:982.166272px;}
.y1e_c00373{bottom:983.067757px;}
.y1f_c00373{bottom:984.144075px;}
.y20_c00373{bottom:984.542565px;}
.y21_c00373{bottom:984.832207px;}
.y22_c00373{bottom:985.439655px;}
.y23_c00373{bottom:985.939957px;}
.yd_c00373{bottom:1019.250435px;}
.ye_c00373{bottom:1019.540078px;}
.yf_c00373{bottom:1019.900865px;}
.y10_c00373{bottom:1020.250972px;}
.y11_c00373{bottom:1020.432180px;}
.y12_c00373{bottom:1020.628455px;}
.y13_c00373{bottom:1020.897720px;}
.y14_c00373{bottom:1021.422113px;}
.y15_c00373{bottom:1022.017680px;}
.y16_c00373{bottom:1022.230635px;}
.y17_c00373{bottom:1022.624820px;}
.y18_c00373{bottom:1022.954348px;}
.y19_c00373{bottom:1023.161730px;}
.y1_c00373{bottom:1054.080000px;}
.y2_c00373{bottom:1054.413510px;}
.y3_c00373{bottom:1054.863112px;}
.y4_c00373{bottom:1055.415278px;}
.y5_c00373{bottom:1055.579940px;}
.y6_c00373{bottom:1055.851643px;}
.y7_c00373{bottom:1056.117233px;}
.y8_c00373{bottom:1056.291735px;}
.y9_c00373{bottom:1056.623805px;}
.ya_c00373{bottom:1056.793582px;}
.yb_c00373{bottom:1056.943800px;}
.yc_c00373{bottom:1057.188067px;}
.ybf_c00373{bottom:1149.930000px;}
.ybe_c00373{bottom:1156.140000px;}
.hd_c00373{height:48.000000px;}
.h5_c00373{height:78.000975px;}
.h4_c00373{height:84.001050px;}
.h2_c00373{height:90.001125px;}
.h6_c00373{height:90.003645px;}
.h3_c00373{height:96.001200px;}
.h8_c00373{height:102.004131px;}
.h9_c00373{height:102.009996px;}
.hb_c00373{height:102.013055px;}
.ha_c00373{height:108.010583px;}
.h7_c00373{height:114.004617px;}
.hc_c00373{height:114.014591px;}
.h0_c00373{height:1251.450000px;}
.h1_c00373{height:1251.750000px;}
.w0_c00373{width:915.000000px;}
.x0_c00373{left:0.000000px;}
.x40_c00373{left:44.328645px;}
.x57_c00373{left:55.542000px;}
.x1_c00373{left:65.134500px;}
.x71_c00373{left:66.584892px;}
.xd_c00373{left:68.995740px;}
.x19_c00373{left:77.884357px;}
.x58_c00373{left:84.204000px;}
.x2d_c00373{left:89.553982px;}
.x68_c00373{left:98.012777px;}
.x59_c00373{left:102.067500px;}
.x1a_c00373{left:109.226227px;}
.x41_c00373{left:115.765148px;}
.xe_c00373{left:117.324000px;}
.x22_c00373{left:120.551542px;}
.x36_c00373{left:122.262397px;}
.x82_c00373{left:127.971000px;}
.x2_c00373{left:131.836500px;}
.x4e_c00373{left:146.720175px;}
.x42_c00373{left:149.074485px;}
.x37_c00373{left:160.060327px;}
.x2e_c00373{left:166.760782px;}
.x61_c00373{left:169.565724px;}
.xf_c00373{left:177.481200px;}
.x7b_c00373{left:179.065500px;}
.x7e_c00373{left:180.807915px;}
.x23_c00373{left:181.885012px;}
.x69_c00373{left:192.245918px;}
.x83_c00373{left:194.950500px;}
.x2f_c00373{left:200.272612px;}
.x4f_c00373{left:202.884113px;}
.x38_c00373{left:212.891032px;}
.x8b_c00373{left:214.129332px;}
.x3_c00373{left:221.757000px;}
.x43_c00373{left:223.516883px;}
.x5a_c00373{left:225.054000px;}
.x1b_c00373{left:231.598282px;}
.x24_c00373{left:234.098707px;}
.x10_c00373{left:235.802408px;}
.x30_c00373{left:237.817800px;}
.x84_c00373{left:243.624000px;}
.x8c_c00373{left:251.090508px;}
.x39_c00373{left:256.663372px;}
.x62_c00373{left:258.668433px;}
.x11_c00373{left:266.043758px;}
.x44_c00373{left:269.131785px;}
.x25_c00373{left:271.303777px;}
.x1c_c00373{left:277.453867px;}
.x72_c00373{left:278.500116px;}
.x8d_c00373{left:283.526040px;}
.x63_c00373{left:291.879619px;}
.x12_c00373{left:298.698593px;}
.x45_c00373{left:301.055168px;}
.x6a_c00373{left:314.291300px;}
.x73_c00373{left:326.042398px;}
.x85_c00373{left:328.933500px;}
.x4_c00373{left:332.190000px;}
.x64_c00373{left:338.591900px;}
.x13_c00373{left:343.551368px;}
.x3a_c00373{left:344.709052px;}
.x50_c00373{left:345.721687px;}
.x5b_c00373{left:357.480000px;}
.x8e_c00373{left:359.881488px;}
.x5_c00373{left:365.122500px;}
.x46_c00373{left:367.394843px;}
.x1d_c00373{left:377.648865px;}
.x51_c00373{left:380.002342px;}
.x26_c00373{left:385.714912px;}
.x6b_c00373{left:391.244537px;}
.x7f_c00373{left:392.505624px;}
.x7c_c00373{left:393.718500px;}
.x47_c00373{left:401.143665px;}
.x65_c00373{left:402.314057px;}
.x52_c00373{left:406.193580px;}
.x27_c00373{left:413.614215px;}
.x6_c00373{left:419.463000px;}
.x5c_c00373{left:422.175000px;}
.x14_c00373{left:431.029433px;}
.x31_c00373{left:432.522982px;}
.x48_c00373{left:436.482428px;}
.x80_c00373{left:453.217428px;}
.x3b_c00373{left:454.550902px;}
.x74_c00373{left:457.249449px;}
.x32_c00373{left:465.664320px;}
.x6c_c00373{left:466.847666px;}
.x7_c00373{left:472.581000px;}
.x75_c00373{left:482.076624px;}
.x3c_c00373{left:487.754407px;}
.x5d_c00373{left:489.334500px;}
.x8f_c00373{left:491.711712px;}
.x86_c00373{left:495.273000px;}
.x1e_c00373{left:497.209972px;}
.x6d_c00373{left:498.438731px;}
.x8_c00373{left:507.481500px;}
.x28_c00373{left:509.895307px;}
.x66_c00373{left:511.128372px;}
.x3d_c00373{left:520.690912px;}
.x53_c00373{left:524.704395px;}
.x49_c00373{left:526.416278px;}
.x15_c00373{left:530.342437px;}
.x5e_c00373{left:532.552500px;}
.x7d_c00373{left:533.925000px;}
.x1f_c00373{left:541.507087px;}
.x29_c00373{left:545.262922px;}
.x76_c00373{left:553.376554px;}
.x4a_c00373{left:555.572257px;}
.x33_c00373{left:556.625640px;}
.x16_c00373{left:565.733258px;}
.x9_c00373{left:573.895500px;}
.x4b_c00373{left:577.120500px;}
.x6e_c00373{left:586.192832px;}
.x54_c00373{left:587.886765px;}
.x77_c00373{left:590.096040px;}
.x87_c00373{left:594.142500px;}
.x3e_c00373{left:598.229250px;}
.x5f_c00373{left:602.808000px;}
.xa_c00373{left:607.851000px;}
.x4c_c00373{left:609.066383px;}
.x81_c00373{left:611.488152px;}
.x88_c00373{left:616.921500px;}
.x2a_c00373{left:620.321047px;}
.x78_c00373{left:623.074431px;}
.x17_c00373{left:631.369927px;}
.x6f_c00373{left:634.525247px;}
.xb_c00373{left:637.894500px;}
.x20_c00373{left:641.123092px;}
.x89_c00373{left:650.224500px;}
.x2b_c00373{left:655.483170px;}
.x90_c00373{left:660.348612px;}
.x70_c00373{left:666.656352px;}
.x4d_c00373{left:667.931820px;}
.xc_c00373{left:686.748000px;}
.x55_c00373{left:688.081260px;}
.x21_c00373{left:696.782482px;}
.x79_c00373{left:699.748996px;}
.x34_c00373{left:702.242040px;}
.x67_c00373{left:703.646465px;}
.x18_c00373{left:720.751477px;}
.x56_c00373{left:726.981870px;}
.x3f_c00373{left:729.982777px;}
.x35_c00373{left:733.004460px;}
.x2c_c00373{left:741.887010px;}
.x8a_c00373{left:750.061500px;}
.x60_c00373{left:754.029000px;}
.x7a_c00373{left:759.143103px;}
.x91_c00373{left:857.520000px;}
@media print{
.v0_c00373{vertical-align:0.000000pt;}
.ls0_c00373{letter-spacing:0.000000pt;}
.ws0_c00373{word-spacing:0.000000pt;}
.fsb_c00373{font-size:42.666667pt;}
.fs3_c00373{font-size:69.334200pt;}
.fs2_c00373{font-size:74.667600pt;}
.fs0_c00373{font-size:80.001000pt;}
.fs4_c00373{font-size:80.003240pt;}
.fs1_c00373{font-size:85.334400pt;}
.fs6_c00373{font-size:90.670339pt;}
.fs7_c00373{font-size:90.675552pt;}
.fs9_c00373{font-size:90.678271pt;}
.fs8_c00373{font-size:96.009408pt;}
.fs5_c00373{font-size:101.337437pt;}
.fsa_c00373{font-size:101.346303pt;}
.y0_c00373{bottom:0.000000pt;}
.yb4_c00373{bottom:425.761376pt;}
.yb5_c00373{bottom:426.972576pt;}
.yb6_c00373{bottom:427.432896pt;}
.yb7_c00373{bottom:427.836853pt;}
.yb8_c00373{bottom:428.786763pt;}
.yb9_c00373{bottom:429.302613pt;}
.yba_c00373{bottom:430.426955pt;}
.ybb_c00373{bottom:431.458251pt;}
.ybc_c00373{bottom:432.156885pt;}
.ybd_c00373{bottom:432.525269pt;}
.ya8_c00373{bottom:460.080000pt;}
.ya9_c00373{bottom:461.032597pt;}
.yaa_c00373{bottom:461.724843pt;}
.yab_c00373{bottom:462.938133pt;}
.yac_c00373{bottom:463.644352pt;}
.yad_c00373{bottom:464.027925pt;}
.yae_c00373{bottom:465.303851pt;}
.yaf_c00373{bottom:465.754304pt;}
.yb0_c00373{bottom:466.709995pt;}
.yb1_c00373{bottom:467.033963pt;}
.yb2_c00373{bottom:467.507605pt;}
.yb3_c00373{bottom:468.927509pt;}
.ya7_c00373{bottom:521.654979pt;}
.ya6_c00373{bottom:521.947912pt;}
.ya5_c00373{bottom:522.499016pt;}
.ya4_c00373{bottom:522.822456pt;}
.ya3_c00373{bottom:523.174333pt;}
.ya2_c00373{bottom:523.354315pt;}
.ya1_c00373{bottom:523.951288pt;}
.ya0_c00373{bottom:524.396363pt;}
.y9f_c00373{bottom:554.432040pt;}
.y9e_c00373{bottom:555.378627pt;}
.y9d_c00373{bottom:556.077432pt;}
.y9c_c00373{bottom:556.521848pt;}
.y9b_c00373{bottom:557.822224pt;}
.y9a_c00373{bottom:560.493461pt;}
.y99_c00373{bottom:561.597333pt;}
.y8a_c00373{bottom:583.505685pt;}
.y8b_c00373{bottom:583.733572pt;}
.y8c_c00373{bottom:584.001459pt;}
.y8d_c00373{bottom:584.178333pt;}
.y8e_c00373{bottom:584.635628pt;}
.y8f_c00373{bottom:584.889289pt;}
.y90_c00373{bottom:585.180851pt;}
.y91_c00373{bottom:585.350517pt;}
.y92_c00373{bottom:585.588251pt;}
.y93_c00373{bottom:585.720196pt;}
.y94_c00373{bottom:586.099913pt;}
.y95_c00373{bottom:586.296328pt;}
.y96_c00373{bottom:586.472148pt;}
.y97_c00373{bottom:586.881528pt;}
.y98_c00373{bottom:587.198001pt;}
.y85_c00373{bottom:619.028447pt;}
.y88_c00373{bottom:619.028745pt;}
.y89_c00373{bottom:619.028908pt;}
.y87_c00373{bottom:619.029051pt;}
.y84_c00373{bottom:619.029072pt;}
.y86_c00373{bottom:619.029089pt;}
.y83_c00373{bottom:619.029629pt;}
.y80_c00373{bottom:619.029769pt;}
.y81_c00373{bottom:619.030053pt;}
.y82_c00373{bottom:619.030121pt;}
.y7f_c00373{bottom:619.030261pt;}
.y7d_c00373{bottom:619.030324pt;}
.y7e_c00373{bottom:619.030632pt;}
.y70_c00373{bottom:650.425552pt;}
.y6f_c00373{bottom:650.425656pt;}
.y71_c00373{bottom:650.425981pt;}
.y72_c00373{bottom:650.426316pt;}
.y73_c00373{bottom:650.426651pt;}
.y78_c00373{bottom:650.426913pt;}
.y74_c00373{bottom:650.426985pt;}
.y76_c00373{bottom:650.427029pt;}
.y79_c00373{bottom:650.427035pt;}
.y77_c00373{bottom:650.427165pt;}
.y7b_c00373{bottom:650.427185pt;}
.y75_c00373{bottom:650.427388pt;}
.y7a_c00373{bottom:650.427423pt;}
.y7c_c00373{bottom:650.427733pt;}
.y62_c00373{bottom:682.081333pt;}
.y63_c00373{bottom:682.310629pt;}
.y64_c00373{bottom:682.453537pt;}
.y65_c00373{bottom:683.437429pt;}
.y66_c00373{bottom:683.696653pt;}
.y67_c00373{bottom:684.496837pt;}
.y68_c00373{bottom:685.014397pt;}
.y69_c00373{bottom:685.551673pt;}
.y6a_c00373{bottom:685.897417pt;}
.y6b_c00373{bottom:686.169505pt;}
.y6c_c00373{bottom:686.459461pt;}
.y6d_c00373{bottom:687.144313pt;}
.y6e_c00373{bottom:687.669229pt;}
.y57_c00373{bottom:713.997020pt;}
.y58_c00373{bottom:714.346640pt;}
.y59_c00373{bottom:714.547993pt;}
.y5a_c00373{bottom:715.234813pt;}
.y5b_c00373{bottom:715.448507pt;}
.y5c_c00373{bottom:715.611580pt;}
.y5d_c00373{bottom:716.348967pt;}
.y5e_c00373{bottom:716.536673pt;}
.y5f_c00373{bottom:716.741780pt;}
.y60_c00373{bottom:717.365760pt;}
.y61_c00373{bottom:717.607987pt;}
.y47_c00373{bottom:744.481387pt;}
.y48_c00373{bottom:745.242893pt;}
.y49_c00373{bottom:745.597607pt;}
.y4a_c00373{bottom:746.391140pt;}
.y4b_c00373{bottom:746.877880pt;}
.y4c_c00373{bottom:747.218433pt;}
.y4d_c00373{bottom:747.926620pt;}
.y4e_c00373{bottom:748.285953pt;}
.y4f_c00373{bottom:748.663020pt;}
.y50_c00373{bottom:749.622740pt;}
.y51_c00373{bottom:749.933660pt;}
.y52_c00373{bottom:750.164100pt;}
.y53_c00373{bottom:750.504753pt;}
.y54_c00373{bottom:751.133053pt;}
.y55_c00373{bottom:751.437273pt;}
.y56_c00373{bottom:751.700387pt;}
.y3c_c00373{bottom:774.951733pt;}
.y3d_c00373{bottom:775.272520pt;}
.y3e_c00373{bottom:775.541847pt;}
.y3f_c00373{bottom:775.917987pt;}
.y40_c00373{bottom:776.229867pt;}
.y41_c00373{bottom:776.855853pt;}
.y42_c00373{bottom:777.637380pt;}
.y43_c00373{bottom:777.872953pt;}
.y44_c00373{bottom:778.107340pt;}
.y45_c00373{bottom:778.658627pt;}
.y46_c00373{bottom:779.594873pt;}
.y31_c00373{bottom:807.290620pt;}
.y32_c00373{bottom:808.113773pt;}
.y33_c00373{bottom:808.470720pt;}
.y34_c00373{bottom:808.870927pt;}
.y35_c00373{bottom:810.237393pt;}
.y36_c00373{bottom:810.948313pt;}
.y37_c00373{bottom:811.302280pt;}
.y38_c00373{bottom:812.271900pt;}
.y39_c00373{bottom:813.133387pt;}
.y3a_c00373{bottom:813.825773pt;}
.y3b_c00373{bottom:814.154500pt;}
.y24_c00373{bottom:839.760020pt;}
.y25_c00373{bottom:840.218540pt;}
.y26_c00373{bottom:840.763140pt;}
.y27_c00373{bottom:841.227207pt;}
.y28_c00373{bottom:841.557900pt;}
.y29_c00373{bottom:842.203060pt;}
.y2a_c00373{bottom:842.575740pt;}
.y2b_c00373{bottom:842.823740pt;}
.y2c_c00373{bottom:843.679667pt;}
.y2d_c00373{bottom:843.994193pt;}
.y2e_c00373{bottom:844.661127pt;}
.y2f_c00373{bottom:844.973407pt;}
.y30_c00373{bottom:845.741433pt;}
.y1a_c00373{bottom:871.440360pt;}
.y1b_c00373{bottom:871.691660pt;}
.y1c_c00373{bottom:872.670213pt;}
.y1d_c00373{bottom:873.036687pt;}
.y1e_c00373{bottom:873.838007pt;}
.y1f_c00373{bottom:874.794733pt;}
.y20_c00373{bottom:875.148947pt;}
.y21_c00373{bottom:875.406407pt;}
.y22_c00373{bottom:875.946360pt;}
.y23_c00373{bottom:876.391073pt;}
.yd_c00373{bottom:906.000387pt;}
.ye_c00373{bottom:906.257847pt;}
.yf_c00373{bottom:906.578547pt;}
.y10_c00373{bottom:906.889753pt;}
.y11_c00373{bottom:907.050827pt;}
.y12_c00373{bottom:907.225293pt;}
.y13_c00373{bottom:907.464640pt;}
.y14_c00373{bottom:907.930767pt;}
.y15_c00373{bottom:908.460160pt;}
.y16_c00373{bottom:908.649453pt;}
.y17_c00373{bottom:908.999840pt;}
.y18_c00373{bottom:909.292753pt;}
.y19_c00373{bottom:909.477093pt;}
.y1_c00373{bottom:936.960000pt;}
.y2_c00373{bottom:937.256453pt;}
.y3_c00373{bottom:937.656100pt;}
.y4_c00373{bottom:938.146913pt;}
.y5_c00373{bottom:938.293280pt;}
.y6_c00373{bottom:938.534793pt;}
.y7_c00373{bottom:938.770873pt;}
.y8_c00373{bottom:938.925987pt;}
.y9_c00373{bottom:939.221160pt;}
.ya_c00373{bottom:939.372073pt;}
.yb_c00373{bottom:939.505600pt;}
.yc_c00373{bottom:939.722727pt;}
.ybf_c00373{bottom:1022.160000pt;}
.ybe_c00373{bottom:1027.680000pt;}
.hd_c00373{height:42.666667pt;}
.h5_c00373{height:69.334200pt;}
.h4_c00373{height:74.667600pt;}
.h2_c00373{height:80.001000pt;}
.h6_c00373{height:80.003240pt;}
.h3_c00373{height:85.334400pt;}
.h8_c00373{height:90.670339pt;}
.h9_c00373{height:90.675552pt;}
.hb_c00373{height:90.678271pt;}
.ha_c00373{height:96.009408pt;}
.h7_c00373{height:101.337437pt;}
.hc_c00373{height:101.346303pt;}
.h0_c00373{height:1112.400000pt;}
.h1_c00373{height:1112.666667pt;}
.w0_c00373{width:813.333333pt;}
.x0_c00373{left:0.000000pt;}
.x40_c00373{left:39.403240pt;}
.x57_c00373{left:49.370667pt;}
.x1_c00373{left:57.897333pt;}
.x71_c00373{left:59.186571pt;}
.xd_c00373{left:61.329547pt;}
.x19_c00373{left:69.230540pt;}
.x58_c00373{left:74.848000pt;}
.x2d_c00373{left:79.603540pt;}
.x68_c00373{left:87.122468pt;}
.x59_c00373{left:90.726667pt;}
.x1a_c00373{left:97.089980pt;}
.x41_c00373{left:102.902353pt;}
.xe_c00373{left:104.288000pt;}
.x22_c00373{left:107.156927pt;}
.x36_c00373{left:108.677687pt;}
.x82_c00373{left:113.752000pt;}
.x2_c00373{left:117.188000pt;}
.x4e_c00373{left:130.417933pt;}
.x42_c00373{left:132.510653pt;}
.x37_c00373{left:142.275847pt;}
.x2e_c00373{left:148.231807pt;}
.x61_c00373{left:150.725088pt;}
.xf_c00373{left:157.761067pt;}
.x7b_c00373{left:159.169333pt;}
.x7e_c00373{left:160.718147pt;}
.x23_c00373{left:161.675567pt;}
.x69_c00373{left:170.885260pt;}
.x83_c00373{left:173.289333pt;}
.x2f_c00373{left:178.020100pt;}
.x4f_c00373{left:180.341433pt;}
.x38_c00373{left:189.236473pt;}
.x8b_c00373{left:190.337184pt;}
.x3_c00373{left:197.117333pt;}
.x43_c00373{left:198.681673pt;}
.x5a_c00373{left:200.048000pt;}
.x1b_c00373{left:205.865140pt;}
.x24_c00373{left:208.087740pt;}
.x10_c00373{left:209.602140pt;}
.x30_c00373{left:211.393600pt;}
.x84_c00373{left:216.554667pt;}
.x8c_c00373{left:223.191563pt;}
.x39_c00373{left:228.145220pt;}
.x62_c00373{left:229.927496pt;}
.x11_c00373{left:236.483340pt;}
.x44_c00373{left:239.228253pt;}
.x25_c00373{left:241.158913pt;}
.x1c_c00373{left:246.625660pt;}
.x72_c00373{left:247.555659pt;}
.x8d_c00373{left:252.023147pt;}
.x63_c00373{left:259.448551pt;}
.x12_c00373{left:265.509860pt;}
.x45_c00373{left:267.604593pt;}
.x6a_c00373{left:279.370044pt;}
.x73_c00373{left:289.815465pt;}
.x85_c00373{left:292.385333pt;}
.x4_c00373{left:295.280000pt;}
.x64_c00373{left:300.970577pt;}
.x13_c00373{left:305.378993pt;}
.x3a_c00373{left:306.408047pt;}
.x50_c00373{left:307.308167pt;}
.x5b_c00373{left:317.760000pt;}
.x8e_c00373{left:319.894656pt;}
.x5_c00373{left:324.553333pt;}
.x46_c00373{left:326.573193pt;}
.x1d_c00373{left:335.687880pt;}
.x51_c00373{left:337.779860pt;}
.x26_c00373{left:342.857700pt;}
.x6b_c00373{left:347.772921pt;}
.x7f_c00373{left:348.893888pt;}
.x7c_c00373{left:349.972000pt;}
.x47_c00373{left:356.572147pt;}
.x65_c00373{left:357.612495pt;}
.x52_c00373{left:361.060960pt;}
.x27_c00373{left:367.657080pt;}
.x6_c00373{left:372.856000pt;}
.x5c_c00373{left:375.266667pt;}
.x14_c00373{left:383.137273pt;}
.x31_c00373{left:384.464873pt;}
.x48_c00373{left:387.984380pt;}
.x80_c00373{left:402.859936pt;}
.x3b_c00373{left:404.045247pt;}
.x74_c00373{left:406.443955pt;}
.x32_c00373{left:413.923840pt;}
.x6c_c00373{left:414.975703pt;}
.x7_c00373{left:420.072000pt;}
.x75_c00373{left:428.512555pt;}
.x3c_c00373{left:433.559473pt;}
.x5d_c00373{left:434.964000pt;}
.x8f_c00373{left:437.077077pt;}
.x86_c00373{left:440.242667pt;}
.x1e_c00373{left:441.964420pt;}
.x6d_c00373{left:443.056649pt;}
.x8_c00373{left:451.094667pt;}
.x28_c00373{left:453.240273pt;}
.x66_c00373{left:454.336331pt;}
.x3d_c00373{left:462.836367pt;}
.x53_c00373{left:466.403907pt;}
.x49_c00373{left:467.925580pt;}
.x15_c00373{left:471.415500pt;}
.x5e_c00373{left:473.380000pt;}
.x7d_c00373{left:474.600000pt;}
.x1f_c00373{left:481.339633pt;}
.x29_c00373{left:484.678153pt;}
.x76_c00373{left:491.890271pt;}
.x4a_c00373{left:493.842007pt;}
.x33_c00373{left:494.778347pt;}
.x16_c00373{left:502.874007pt;}
.x9_c00373{left:510.129333pt;}
.x4b_c00373{left:512.996000pt;}
.x6e_c00373{left:521.060295pt;}
.x54_c00373{left:522.566013pt;}
.x77_c00373{left:524.529813pt;}
.x87_c00373{left:528.126667pt;}
.x3e_c00373{left:531.759333pt;}
.x5f_c00373{left:535.829333pt;}
.xa_c00373{left:540.312000pt;}
.x4c_c00373{left:541.392340pt;}
.x81_c00373{left:543.545024pt;}
.x88_c00373{left:548.374667pt;}
.x2a_c00373{left:551.396487pt;}
.x78_c00373{left:553.843939pt;}
.x17_c00373{left:561.217713pt;}
.x6f_c00373{left:564.022441pt;}
.xb_c00373{left:567.017333pt;}
.x20_c00373{left:569.887193pt;}
.x89_c00373{left:577.977333pt;}
.x2b_c00373{left:582.651707pt;}
.x90_c00373{left:586.976544pt;}
.x70_c00373{left:592.583424pt;}
.x4d_c00373{left:593.717173pt;}
.xc_c00373{left:610.442667pt;}
.x55_c00373{left:611.627787pt;}
.x21_c00373{left:619.362207pt;}
.x79_c00373{left:621.999108pt;}
.x34_c00373{left:624.215147pt;}
.x67_c00373{left:625.463524pt;}
.x18_c00373{left:640.667980pt;}
.x56_c00373{left:646.206107pt;}
.x3f_c00373{left:648.873580pt;}
.x35_c00373{left:651.559520pt;}
.x2c_c00373{left:659.455120pt;}
.x8a_c00373{left:666.721333pt;}
.x60_c00373{left:670.248000pt;}
.x7a_c00373{left:674.793869pt;}
.x91_c00373{left:762.240000pt;}
}





/* 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_c00374 {
    display:none;
  }
  .loading-indicator_c00374.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00374 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_c00374 { 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_c00374" -> "#page-container .classname_c00374")
 */
.pf_c00374 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00374 { /* 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_c00374.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00374 { /* 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_c00374 { /* 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_c00374 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00374 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00374 {overflow:visible;}
  }
}
.c_c00374 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00374 { /* 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_c00374:after { /* webkit #35443 */
  content: '';
}
.t_c00374:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00374 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 */
}
.__c00374 { /* 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_c00374 { /* info for Javascript */
  display:none;
}
.l_c00374 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00374 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00374 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00374: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_c00374 {
    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_c00374.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00374.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_c00374 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00374{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00374;src:url('chunks/assets/font_fabf4b590f7fb32aea93ffb2.woff2')format("woff");}.ff1_c00374{font-family:ff1_c00374;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m21_c00374{transform:matrix(0.012729,0.000165,-0.003250,0.249979,0,0);-ms-transform:matrix(0.012729,0.000165,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.012729,0.000165,-0.003250,0.249979,0,0);}
.m14b_c00374{transform:matrix(0.138535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138535,0.000000,0.000000,0.250000,0,0);}
.m148_c00374{transform:matrix(0.140585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140585,0.000000,0.000000,0.250000,0,0);}
.m149_c00374{transform:matrix(0.142490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142490,0.000000,0.000000,0.250000,0,0);}
.m145_c00374{transform:matrix(0.145120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145120,0.000000,0.000000,0.250000,0,0);}
.m14e_c00374{transform:matrix(0.147605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147605,0.000000,0.000000,0.250000,0,0);}
.m14d_c00374{transform:matrix(0.148915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148915,0.000000,0.000000,0.250000,0,0);}
.m14a_c00374{transform:matrix(0.151205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151205,0.000000,0.000000,0.250000,0,0);}
.m14c_c00374{transform:matrix(0.155845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155845,0.000000,0.000000,0.250000,0,0);}
.m13c_c00374{transform:matrix(0.156355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156355,0.000000,0.000000,0.250000,0,0);}
.m13d_c00374{transform:matrix(0.156715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156715,0.000000,0.000000,0.250000,0,0);}
.m147_c00374{transform:matrix(0.157805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157805,0.000000,0.000000,0.250000,0,0);}
.m146_c00374{transform:matrix(0.161325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161325,0.000000,0.000000,0.250000,0,0);}
.m142_c00374{transform:matrix(0.162505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162505,0.000000,0.000000,0.250000,0,0);}
.md5_c00374{transform:matrix(0.164644,0.002305,-0.003500,0.249976,0,0);-ms-transform:matrix(0.164644,0.002305,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.164644,0.002305,-0.003500,0.249976,0,0);}
.m140_c00374{transform:matrix(0.167635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167635,0.000000,0.000000,0.250000,0,0);}
.md6_c00374{transform:matrix(0.168993,0.002366,-0.003500,0.249976,0,0);-ms-transform:matrix(0.168993,0.002366,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.168993,0.002366,-0.003500,0.249976,0,0);}
.m13f_c00374{transform:matrix(0.169335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169335,0.000000,0.000000,0.250000,0,0);}
.mdd_c00374{transform:matrix(0.170558,0.002388,-0.003500,0.249976,0,0);-ms-transform:matrix(0.170558,0.002388,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.170558,0.002388,-0.003500,0.249976,0,0);}
.m10e_c00374{transform:matrix(0.172303,0.002412,-0.003500,0.249976,0,0);-ms-transform:matrix(0.172303,0.002412,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.172303,0.002412,-0.003500,0.249976,0,0);}
.me1_c00374{transform:matrix(0.173863,0.002434,-0.003500,0.249976,0,0);-ms-transform:matrix(0.173863,0.002434,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.173863,0.002434,-0.003500,0.249976,0,0);}
.m144_c00374{transform:matrix(0.177555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177555,0.000000,0.000000,0.250000,0,0);}
.ma3_c00374{transform:matrix(0.179442,0.002512,-0.003500,0.249976,0,0);-ms-transform:matrix(0.179442,0.002512,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.179442,0.002512,-0.003500,0.249976,0,0);}
.me3_c00374{transform:matrix(0.179552,0.002514,-0.003500,0.249976,0,0);-ms-transform:matrix(0.179552,0.002514,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.179552,0.002514,-0.003500,0.249976,0,0);}
.m4e_c00374{transform:matrix(0.181807,0.002545,-0.003500,0.249976,0,0);-ms-transform:matrix(0.181807,0.002545,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.181807,0.002545,-0.003500,0.249976,0,0);}
.m19_c00374{transform:matrix(0.182220,0.002369,-0.003250,0.249979,0,0);-ms-transform:matrix(0.182220,0.002369,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.182220,0.002369,-0.003250,0.249979,0,0);}
.m9b_c00374{transform:matrix(0.182512,0.002555,-0.003500,0.249976,0,0);-ms-transform:matrix(0.182512,0.002555,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.182512,0.002555,-0.003500,0.249976,0,0);}
.m143_c00374{transform:matrix(0.183345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183345,0.000000,0.000000,0.250000,0,0);}
.m13b_c00374{transform:matrix(0.183435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183435,0.000000,0.000000,0.250000,0,0);}
.m141_c00374{transform:matrix(0.183720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183720,0.000000,0.000000,0.250000,0,0);}
.md7_c00374{transform:matrix(0.183747,0.002572,-0.003500,0.249976,0,0);-ms-transform:matrix(0.183747,0.002572,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.183747,0.002572,-0.003500,0.249976,0,0);}
.ma4_c00374{transform:matrix(0.184077,0.002577,-0.003500,0.249976,0,0);-ms-transform:matrix(0.184077,0.002577,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.184077,0.002577,-0.003500,0.249976,0,0);}
.m58_c00374{transform:matrix(0.184097,0.002577,-0.003500,0.249976,0,0);-ms-transform:matrix(0.184097,0.002577,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.184097,0.002577,-0.003500,0.249976,0,0);}
.m137_c00374{transform:matrix(0.184218,0.001658,-0.002250,0.249990,0,0);-ms-transform:matrix(0.184218,0.001658,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.184218,0.001658,-0.002250,0.249990,0,0);}
.m1f_c00374{transform:matrix(0.184699,0.002401,-0.003250,0.249979,0,0);-ms-transform:matrix(0.184699,0.002401,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.184699,0.002401,-0.003250,0.249979,0,0);}
.m13e_c00374{transform:matrix(0.185270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185270,0.000000,0.000000,0.250000,0,0);}
.mdb_c00374{transform:matrix(0.187232,0.002621,-0.003500,0.249976,0,0);-ms-transform:matrix(0.187232,0.002621,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.187232,0.002621,-0.003500,0.249976,0,0);}
.m105_c00374{transform:matrix(0.190296,0.002664,-0.003500,0.249976,0,0);-ms-transform:matrix(0.190296,0.002664,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.190296,0.002664,-0.003500,0.249976,0,0);}
.m53_c00374{transform:matrix(0.191356,0.002679,-0.003500,0.249976,0,0);-ms-transform:matrix(0.191356,0.002679,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.191356,0.002679,-0.003500,0.249976,0,0);}
.m1b_c00374{transform:matrix(0.191639,0.002491,-0.003250,0.249979,0,0);-ms-transform:matrix(0.191639,0.002491,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.191639,0.002491,-0.003250,0.249979,0,0);}
.m9d_c00374{transform:matrix(0.191931,0.002687,-0.003500,0.249976,0,0);-ms-transform:matrix(0.191931,0.002687,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.191931,0.002687,-0.003500,0.249976,0,0);}
.mb0_c00374{transform:matrix(0.192076,0.002689,-0.003500,0.249976,0,0);-ms-transform:matrix(0.192076,0.002689,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.192076,0.002689,-0.003500,0.249976,0,0);}
.mfc_c00374{transform:matrix(0.192626,0.002697,-0.003500,0.249976,0,0);-ms-transform:matrix(0.192626,0.002697,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.192626,0.002697,-0.003500,0.249976,0,0);}
.m50_c00374{transform:matrix(0.192656,0.002697,-0.003500,0.249976,0,0);-ms-transform:matrix(0.192656,0.002697,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.192656,0.002697,-0.003500,0.249976,0,0);}
.m109_c00374{transform:matrix(0.193021,0.002702,-0.003500,0.249976,0,0);-ms-transform:matrix(0.193021,0.002702,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.193021,0.002702,-0.003500,0.249976,0,0);}
.m1d_c00374{transform:matrix(0.193114,0.002510,-0.003250,0.249979,0,0);-ms-transform:matrix(0.193114,0.002510,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.193114,0.002510,-0.003250,0.249979,0,0);}
.m9e_c00374{transform:matrix(0.193431,0.002708,-0.003500,0.249976,0,0);-ms-transform:matrix(0.193431,0.002708,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.193431,0.002708,-0.003500,0.249976,0,0);}
.mde_c00374{transform:matrix(0.193531,0.002709,-0.003500,0.249976,0,0);-ms-transform:matrix(0.193531,0.002709,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.193531,0.002709,-0.003500,0.249976,0,0);}
.m47_c00374{transform:matrix(0.193751,0.002713,-0.003500,0.249976,0,0);-ms-transform:matrix(0.193751,0.002713,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.193751,0.002713,-0.003500,0.249976,0,0);}
.m4a_c00374{transform:matrix(0.194331,0.002721,-0.003500,0.249976,0,0);-ms-transform:matrix(0.194331,0.002721,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.194331,0.002721,-0.003500,0.249976,0,0);}
.m12f_c00374{transform:matrix(0.194532,0.001751,-0.002250,0.249990,0,0);-ms-transform:matrix(0.194532,0.001751,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.194532,0.001751,-0.002250,0.249990,0,0);}
.mf1_c00374{transform:matrix(0.194806,0.002727,-0.003500,0.249976,0,0);-ms-transform:matrix(0.194806,0.002727,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.194806,0.002727,-0.003500,0.249976,0,0);}
.m11b_c00374{transform:matrix(0.194921,0.002729,-0.003500,0.249976,0,0);-ms-transform:matrix(0.194921,0.002729,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.194921,0.002729,-0.003500,0.249976,0,0);}
.m7e_c00374{transform:matrix(0.195496,0.002737,-0.003500,0.249976,0,0);-ms-transform:matrix(0.195496,0.002737,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.195496,0.002737,-0.003500,0.249976,0,0);}
.me6_c00374{transform:matrix(0.196106,0.002745,-0.003500,0.249976,0,0);-ms-transform:matrix(0.196106,0.002745,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.196106,0.002745,-0.003500,0.249976,0,0);}
.md9_c00374{transform:matrix(0.196251,0.002748,-0.003500,0.249976,0,0);-ms-transform:matrix(0.196251,0.002748,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.196251,0.002748,-0.003500,0.249976,0,0);}
.m51_c00374{transform:matrix(0.196436,0.002750,-0.003500,0.249976,0,0);-ms-transform:matrix(0.196436,0.002750,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.196436,0.002750,-0.003500,0.249976,0,0);}
.mdf_c00374{transform:matrix(0.197561,0.002766,-0.003500,0.249976,0,0);-ms-transform:matrix(0.197561,0.002766,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.197561,0.002766,-0.003500,0.249976,0,0);}
.m57_c00374{transform:matrix(0.197891,0.002770,-0.003500,0.249976,0,0);-ms-transform:matrix(0.197891,0.002770,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.197891,0.002770,-0.003500,0.249976,0,0);}
.m133_c00374{transform:matrix(0.198032,0.001782,-0.002250,0.249990,0,0);-ms-transform:matrix(0.198032,0.001782,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.198032,0.001782,-0.002250,0.249990,0,0);}
.m80_c00374{transform:matrix(0.198356,0.002777,-0.003500,0.249976,0,0);-ms-transform:matrix(0.198356,0.002777,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.198356,0.002777,-0.003500,0.249976,0,0);}
.mee_c00374{transform:matrix(0.198526,0.002779,-0.003500,0.249976,0,0);-ms-transform:matrix(0.198526,0.002779,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.198526,0.002779,-0.003500,0.249976,0,0);}
.m108_c00374{transform:matrix(0.198846,0.002784,-0.003500,0.249976,0,0);-ms-transform:matrix(0.198846,0.002784,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.198846,0.002784,-0.003500,0.249976,0,0);}
.m55_c00374{transform:matrix(0.199080,0.002787,-0.003500,0.249976,0,0);-ms-transform:matrix(0.199080,0.002787,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.199080,0.002787,-0.003500,0.249976,0,0);}
.mdc_c00374{transform:matrix(0.199490,0.002793,-0.003500,0.249976,0,0);-ms-transform:matrix(0.199490,0.002793,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.199490,0.002793,-0.003500,0.249976,0,0);}
.md8_c00374{transform:matrix(0.200720,0.002810,-0.003500,0.249976,0,0);-ms-transform:matrix(0.200720,0.002810,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.200720,0.002810,-0.003500,0.249976,0,0);}
.mf4_c00374{transform:matrix(0.201475,0.002821,-0.003500,0.249976,0,0);-ms-transform:matrix(0.201475,0.002821,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.201475,0.002821,-0.003500,0.249976,0,0);}
.ma1_c00374{transform:matrix(0.201680,0.002824,-0.003500,0.249976,0,0);-ms-transform:matrix(0.201680,0.002824,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.201680,0.002824,-0.003500,0.249976,0,0);}
.mcf_c00374{transform:matrix(0.202385,0.002833,-0.003500,0.249976,0,0);-ms-transform:matrix(0.202385,0.002833,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.202385,0.002833,-0.003500,0.249976,0,0);}
.m20_c00374{transform:matrix(0.203048,0.002640,-0.003250,0.249979,0,0);-ms-transform:matrix(0.203048,0.002640,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.203048,0.002640,-0.003250,0.249979,0,0);}
.m106_c00374{transform:matrix(0.203255,0.002846,-0.003500,0.249976,0,0);-ms-transform:matrix(0.203255,0.002846,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.203255,0.002846,-0.003500,0.249976,0,0);}
.m73_c00374{transform:matrix(0.203800,0.002853,-0.003500,0.249976,0,0);-ms-transform:matrix(0.203800,0.002853,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.203800,0.002853,-0.003500,0.249976,0,0);}
.m9f_c00374{transform:matrix(0.203935,0.002855,-0.003500,0.249976,0,0);-ms-transform:matrix(0.203935,0.002855,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.203935,0.002855,-0.003500,0.249976,0,0);}
.m7d_c00374{transform:matrix(0.204285,0.002860,-0.003500,0.249976,0,0);-ms-transform:matrix(0.204285,0.002860,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.204285,0.002860,-0.003500,0.249976,0,0);}
.ma0_c00374{transform:matrix(0.204305,0.002860,-0.003500,0.249976,0,0);-ms-transform:matrix(0.204305,0.002860,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.204305,0.002860,-0.003500,0.249976,0,0);}
.m1a_c00374{transform:matrix(0.204788,0.002662,-0.003250,0.249979,0,0);-ms-transform:matrix(0.204788,0.002662,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.204788,0.002662,-0.003250,0.249979,0,0);}
.m9c_c00374{transform:matrix(0.204850,0.002868,-0.003500,0.249976,0,0);-ms-transform:matrix(0.204850,0.002868,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.204850,0.002868,-0.003500,0.249976,0,0);}
.ma2_c00374{transform:matrix(0.205070,0.002871,-0.003500,0.249976,0,0);-ms-transform:matrix(0.205070,0.002871,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.205070,0.002871,-0.003500,0.249976,0,0);}
.m85_c00374{transform:matrix(0.205615,0.002879,-0.003500,0.249976,0,0);-ms-transform:matrix(0.205615,0.002879,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.205615,0.002879,-0.003500,0.249976,0,0);}
.m119_c00374{transform:matrix(0.205620,0.002879,-0.003500,0.249976,0,0);-ms-transform:matrix(0.205620,0.002879,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.205620,0.002879,-0.003500,0.249976,0,0);}
.m79_c00374{transform:matrix(0.206240,0.002887,-0.003500,0.249976,0,0);-ms-transform:matrix(0.206240,0.002887,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.206240,0.002887,-0.003500,0.249976,0,0);}
.m11e_c00374{transform:matrix(0.206580,0.002892,-0.003500,0.249976,0,0);-ms-transform:matrix(0.206580,0.002892,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.206580,0.002892,-0.003500,0.249976,0,0);}
.mf3_c00374{transform:matrix(0.207220,0.002901,-0.003500,0.249976,0,0);-ms-transform:matrix(0.207220,0.002901,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.207220,0.002901,-0.003500,0.249976,0,0);}
.mf9_c00374{transform:matrix(0.207425,0.002904,-0.003500,0.249976,0,0);-ms-transform:matrix(0.207425,0.002904,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.207425,0.002904,-0.003500,0.249976,0,0);}
.m71_c00374{transform:matrix(0.207760,0.002909,-0.003500,0.249976,0,0);-ms-transform:matrix(0.207760,0.002909,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.207760,0.002909,-0.003500,0.249976,0,0);}
.ma5_c00374{transform:matrix(0.207880,0.002910,-0.003500,0.249976,0,0);-ms-transform:matrix(0.207880,0.002910,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.207880,0.002910,-0.003500,0.249976,0,0);}
.mec_c00374{transform:matrix(0.208055,0.002913,-0.003500,0.249976,0,0);-ms-transform:matrix(0.208055,0.002913,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.208055,0.002913,-0.003500,0.249976,0,0);}
.m3c_c00374{transform:matrix(0.208455,0.002918,-0.003500,0.249976,0,0);-ms-transform:matrix(0.208455,0.002918,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.208455,0.002918,-0.003500,0.249976,0,0);}
.m7b_c00374{transform:matrix(0.208535,0.002919,-0.003500,0.249976,0,0);-ms-transform:matrix(0.208535,0.002919,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.208535,0.002919,-0.003500,0.249976,0,0);}
.m64_c00374{transform:matrix(0.209484,0.002933,-0.003500,0.249976,0,0);-ms-transform:matrix(0.209484,0.002933,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.209484,0.002933,-0.003500,0.249976,0,0);}
.mda_c00374{transform:matrix(0.209494,0.002933,-0.003500,0.249976,0,0);-ms-transform:matrix(0.209494,0.002933,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.209494,0.002933,-0.003500,0.249976,0,0);}
.m48_c00374{transform:matrix(0.209859,0.002938,-0.003500,0.249976,0,0);-ms-transform:matrix(0.209859,0.002938,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.209859,0.002938,-0.003500,0.249976,0,0);}
.m134_c00374{transform:matrix(0.210011,0.001890,-0.002250,0.249990,0,0);-ms-transform:matrix(0.210011,0.001890,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.210011,0.001890,-0.002250,0.249990,0,0);}
.mcb_c00374{transform:matrix(0.210589,0.002948,-0.003500,0.249976,0,0);-ms-transform:matrix(0.210589,0.002948,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.210589,0.002948,-0.003500,0.249976,0,0);}
.me0_c00374{transform:matrix(0.210764,0.002951,-0.003500,0.249976,0,0);-ms-transform:matrix(0.210764,0.002951,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.210764,0.002951,-0.003500,0.249976,0,0);}
.mba_c00374{transform:matrix(0.211194,0.002957,-0.003500,0.249976,0,0);-ms-transform:matrix(0.211194,0.002957,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.211194,0.002957,-0.003500,0.249976,0,0);}
.mea_c00374{transform:matrix(0.211464,0.002960,-0.003500,0.249976,0,0);-ms-transform:matrix(0.211464,0.002960,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.211464,0.002960,-0.003500,0.249976,0,0);}
.m11f_c00374{transform:matrix(0.211559,0.002962,-0.003500,0.249976,0,0);-ms-transform:matrix(0.211559,0.002962,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.211559,0.002962,-0.003500,0.249976,0,0);}
.m81_c00374{transform:matrix(0.212219,0.002971,-0.003500,0.249976,0,0);-ms-transform:matrix(0.212219,0.002971,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.212219,0.002971,-0.003500,0.249976,0,0);}
.m5b_c00374{transform:matrix(0.212339,0.002973,-0.003500,0.249976,0,0);-ms-transform:matrix(0.212339,0.002973,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.212339,0.002973,-0.003500,0.249976,0,0);}
.m1e_c00374{transform:matrix(0.212442,0.002762,-0.003250,0.249979,0,0);-ms-transform:matrix(0.212442,0.002762,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.212442,0.002762,-0.003250,0.249979,0,0);}
.m44_c00374{transform:matrix(0.212489,0.002975,-0.003500,0.249976,0,0);-ms-transform:matrix(0.212489,0.002975,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.212489,0.002975,-0.003500,0.249976,0,0);}
.m83_c00374{transform:matrix(0.212664,0.002977,-0.003500,0.249976,0,0);-ms-transform:matrix(0.212664,0.002977,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.212664,0.002977,-0.003500,0.249976,0,0);}
.m117_c00374{transform:matrix(0.212929,0.002981,-0.003500,0.249976,0,0);-ms-transform:matrix(0.212929,0.002981,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.212929,0.002981,-0.003500,0.249976,0,0);}
.m115_c00374{transform:matrix(0.213339,0.002987,-0.003500,0.249976,0,0);-ms-transform:matrix(0.213339,0.002987,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.213339,0.002987,-0.003500,0.249976,0,0);}
.m11d_c00374{transform:matrix(0.213589,0.002990,-0.003500,0.249976,0,0);-ms-transform:matrix(0.213589,0.002990,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.213589,0.002990,-0.003500,0.249976,0,0);}
.m10b_c00374{transform:matrix(0.213624,0.002991,-0.003500,0.249976,0,0);-ms-transform:matrix(0.213624,0.002991,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.213624,0.002991,-0.003500,0.249976,0,0);}
.me2_c00374{transform:matrix(0.213754,0.002993,-0.003500,0.249976,0,0);-ms-transform:matrix(0.213754,0.002993,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.213754,0.002993,-0.003500,0.249976,0,0);}
.me4_c00374{transform:matrix(0.213864,0.002994,-0.003500,0.249976,0,0);-ms-transform:matrix(0.213864,0.002994,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.213864,0.002994,-0.003500,0.249976,0,0);}
.mfd_c00374{transform:matrix(0.213964,0.002995,-0.003500,0.249976,0,0);-ms-transform:matrix(0.213964,0.002995,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.213964,0.002995,-0.003500,0.249976,0,0);}
.m11c_c00374{transform:matrix(0.214204,0.002999,-0.003500,0.249976,0,0);-ms-transform:matrix(0.214204,0.002999,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.214204,0.002999,-0.003500,0.249976,0,0);}
.me8_c00374{transform:matrix(0.214279,0.003000,-0.003500,0.249976,0,0);-ms-transform:matrix(0.214279,0.003000,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.214279,0.003000,-0.003500,0.249976,0,0);}
.me7_c00374{transform:matrix(0.214399,0.003002,-0.003500,0.249976,0,0);-ms-transform:matrix(0.214399,0.003002,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.214399,0.003002,-0.003500,0.249976,0,0);}
.mfb_c00374{transform:matrix(0.214919,0.003009,-0.003500,0.249976,0,0);-ms-transform:matrix(0.214919,0.003009,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.214919,0.003009,-0.003500,0.249976,0,0);}
.m1c_c00374{transform:matrix(0.215497,0.002801,-0.003250,0.249979,0,0);-ms-transform:matrix(0.215497,0.002801,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.215497,0.002801,-0.003250,0.249979,0,0);}
.m2b_c00374{transform:matrix(0.215924,0.003023,-0.003500,0.249976,0,0);-ms-transform:matrix(0.215924,0.003023,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.215924,0.003023,-0.003500,0.249976,0,0);}
.m11a_c00374{transform:matrix(0.216284,0.003028,-0.003500,0.249976,0,0);-ms-transform:matrix(0.216284,0.003028,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.216284,0.003028,-0.003500,0.249976,0,0);}
.m122_c00374{transform:matrix(0.216684,0.003034,-0.003500,0.249976,0,0);-ms-transform:matrix(0.216684,0.003034,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.216684,0.003034,-0.003500,0.249976,0,0);}
.md2_c00374{transform:matrix(0.216769,0.003035,-0.003500,0.249976,0,0);-ms-transform:matrix(0.216769,0.003035,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.216769,0.003035,-0.003500,0.249976,0,0);}
.me9_c00374{transform:matrix(0.217094,0.003039,-0.003500,0.249976,0,0);-ms-transform:matrix(0.217094,0.003039,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.217094,0.003039,-0.003500,0.249976,0,0);}
.m12d_c00374{transform:matrix(0.217414,0.003044,-0.003500,0.249976,0,0);-ms-transform:matrix(0.217414,0.003044,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.217414,0.003044,-0.003500,0.249976,0,0);}
.m136_c00374{transform:matrix(0.217596,0.001958,-0.002250,0.249990,0,0);-ms-transform:matrix(0.217596,0.001958,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.217596,0.001958,-0.002250,0.249990,0,0);}
.mfa_c00374{transform:matrix(0.217959,0.003051,-0.003500,0.249976,0,0);-ms-transform:matrix(0.217959,0.003051,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.217959,0.003051,-0.003500,0.249976,0,0);}
.m135_c00374{transform:matrix(0.218746,0.001969,-0.002250,0.249990,0,0);-ms-transform:matrix(0.218746,0.001969,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.218746,0.001969,-0.002250,0.249990,0,0);}
.m138_c00374{transform:matrix(0.219226,0.001973,-0.002250,0.249990,0,0);-ms-transform:matrix(0.219226,0.001973,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.219226,0.001973,-0.002250,0.249990,0,0);}
.m5c_c00374{transform:matrix(0.219294,0.003070,-0.003500,0.249976,0,0);-ms-transform:matrix(0.219294,0.003070,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.219294,0.003070,-0.003500,0.249976,0,0);}
.m74_c00374{transform:matrix(0.219563,0.003074,-0.003500,0.249976,0,0);-ms-transform:matrix(0.219563,0.003074,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.219563,0.003074,-0.003500,0.249976,0,0);}
.m5f_c00374{transform:matrix(0.219573,0.003074,-0.003500,0.249976,0,0);-ms-transform:matrix(0.219573,0.003074,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.219573,0.003074,-0.003500,0.249976,0,0);}
.m2a_c00374{transform:matrix(0.219778,0.003077,-0.003500,0.249976,0,0);-ms-transform:matrix(0.219778,0.003077,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.219778,0.003077,-0.003500,0.249976,0,0);}
.mff_c00374{transform:matrix(0.220058,0.003081,-0.003500,0.249976,0,0);-ms-transform:matrix(0.220058,0.003081,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.220058,0.003081,-0.003500,0.249976,0,0);}
.mef_c00374{transform:matrix(0.220268,0.003084,-0.003500,0.249976,0,0);-ms-transform:matrix(0.220268,0.003084,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.220268,0.003084,-0.003500,0.249976,0,0);}
.ma7_c00374{transform:matrix(0.220488,0.003087,-0.003500,0.249976,0,0);-ms-transform:matrix(0.220488,0.003087,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.220488,0.003087,-0.003500,0.249976,0,0);}
.m130_c00374{transform:matrix(0.221226,0.001991,-0.002250,0.249990,0,0);-ms-transform:matrix(0.221226,0.001991,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.221226,0.001991,-0.002250,0.249990,0,0);}
.m127_c00374{transform:matrix(0.221353,0.003099,-0.003500,0.249976,0,0);-ms-transform:matrix(0.221353,0.003099,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.221353,0.003099,-0.003500,0.249976,0,0);}
.m5a_c00374{transform:matrix(0.221393,0.003100,-0.003500,0.249976,0,0);-ms-transform:matrix(0.221393,0.003100,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.221393,0.003100,-0.003500,0.249976,0,0);}
.mb5_c00374{transform:matrix(0.221433,0.003100,-0.003500,0.249976,0,0);-ms-transform:matrix(0.221433,0.003100,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.221433,0.003100,-0.003500,0.249976,0,0);}
.mc8_c00374{transform:matrix(0.221563,0.003102,-0.003500,0.249976,0,0);-ms-transform:matrix(0.221563,0.003102,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.221563,0.003102,-0.003500,0.249976,0,0);}
.md4_c00374{transform:matrix(0.221788,0.003105,-0.003500,0.249976,0,0);-ms-transform:matrix(0.221788,0.003105,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.221788,0.003105,-0.003500,0.249976,0,0);}
.m104_c00374{transform:matrix(0.222078,0.003109,-0.003500,0.249976,0,0);-ms-transform:matrix(0.222078,0.003109,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.222078,0.003109,-0.003500,0.249976,0,0);}
.m41_c00374{transform:matrix(0.222103,0.003109,-0.003500,0.249976,0,0);-ms-transform:matrix(0.222103,0.003109,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.222103,0.003109,-0.003500,0.249976,0,0);}
.m114_c00374{transform:matrix(0.222408,0.003114,-0.003500,0.249976,0,0);-ms-transform:matrix(0.222408,0.003114,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.222408,0.003114,-0.003500,0.249976,0,0);}
.m107_c00374{transform:matrix(0.222413,0.003114,-0.003500,0.249976,0,0);-ms-transform:matrix(0.222413,0.003114,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.222413,0.003114,-0.003500,0.249976,0,0);}
.m28_c00374{transform:matrix(0.222588,0.003116,-0.003500,0.249976,0,0);-ms-transform:matrix(0.222588,0.003116,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.222588,0.003116,-0.003500,0.249976,0,0);}
.m10a_c00374{transform:matrix(0.222728,0.003118,-0.003500,0.249976,0,0);-ms-transform:matrix(0.222728,0.003118,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.222728,0.003118,-0.003500,0.249976,0,0);}
.m112_c00374{transform:matrix(0.222798,0.003119,-0.003500,0.249976,0,0);-ms-transform:matrix(0.222798,0.003119,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.222798,0.003119,-0.003500,0.249976,0,0);}
.mc9_c00374{transform:matrix(0.223443,0.003128,-0.003500,0.249976,0,0);-ms-transform:matrix(0.223443,0.003128,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.223443,0.003128,-0.003500,0.249976,0,0);}
.mf_c00374{transform:matrix(0.223866,0.002910,-0.003250,0.249979,0,0);-ms-transform:matrix(0.223866,0.002910,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.223866,0.002910,-0.003250,0.249979,0,0);}
.m101_c00374{transform:matrix(0.223873,0.003134,-0.003500,0.249976,0,0);-ms-transform:matrix(0.223873,0.003134,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.223873,0.003134,-0.003500,0.249976,0,0);}
.md3_c00374{transform:matrix(0.224013,0.003136,-0.003500,0.249976,0,0);-ms-transform:matrix(0.224013,0.003136,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.224013,0.003136,-0.003500,0.249976,0,0);}
.meb_c00374{transform:matrix(0.224238,0.003139,-0.003500,0.249976,0,0);-ms-transform:matrix(0.224238,0.003139,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.224238,0.003139,-0.003500,0.249976,0,0);}
.m10f_c00374{transform:matrix(0.224423,0.003142,-0.003500,0.249976,0,0);-ms-transform:matrix(0.224423,0.003142,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.224423,0.003142,-0.003500,0.249976,0,0);}
.m60_c00374{transform:matrix(0.224978,0.003150,-0.003500,0.249976,0,0);-ms-transform:matrix(0.224978,0.003150,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.224978,0.003150,-0.003500,0.249976,0,0);}
.m10d_c00374{transform:matrix(0.225388,0.003155,-0.003500,0.249976,0,0);-ms-transform:matrix(0.225388,0.003155,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.225388,0.003155,-0.003500,0.249976,0,0);}
.m15_c00374{transform:matrix(0.225501,0.002932,-0.003250,0.249979,0,0);-ms-transform:matrix(0.225501,0.002932,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.225501,0.002932,-0.003250,0.249979,0,0);}
.m4d_c00374{transform:matrix(0.225538,0.003158,-0.003500,0.249976,0,0);-ms-transform:matrix(0.225538,0.003158,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.225538,0.003158,-0.003500,0.249976,0,0);}
.me5_c00374{transform:matrix(0.225698,0.003160,-0.003500,0.249976,0,0);-ms-transform:matrix(0.225698,0.003160,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.225698,0.003160,-0.003500,0.249976,0,0);}
.m4b_c00374{transform:matrix(0.225888,0.003162,-0.003500,0.249976,0,0);-ms-transform:matrix(0.225888,0.003162,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.225888,0.003162,-0.003500,0.249976,0,0);}
.m10c_c00374{transform:matrix(0.226043,0.003165,-0.003500,0.249976,0,0);-ms-transform:matrix(0.226043,0.003165,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.226043,0.003165,-0.003500,0.249976,0,0);}
.m13_c00374{transform:matrix(0.226051,0.002939,-0.003250,0.249979,0,0);-ms-transform:matrix(0.226051,0.002939,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.226051,0.002939,-0.003250,0.249979,0,0);}
.m17_c00374{transform:matrix(0.226336,0.002942,-0.003250,0.249979,0,0);-ms-transform:matrix(0.226336,0.002942,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.226336,0.002942,-0.003250,0.249979,0,0);}
.m4c_c00374{transform:matrix(0.226413,0.003170,-0.003500,0.249976,0,0);-ms-transform:matrix(0.226413,0.003170,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.226413,0.003170,-0.003500,0.249976,0,0);}
.mf0_c00374{transform:matrix(0.227053,0.003179,-0.003500,0.249976,0,0);-ms-transform:matrix(0.227053,0.003179,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.227053,0.003179,-0.003500,0.249976,0,0);}
.m4f_c00374{transform:matrix(0.227203,0.003181,-0.003500,0.249976,0,0);-ms-transform:matrix(0.227203,0.003181,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.227203,0.003181,-0.003500,0.249976,0,0);}
.med_c00374{transform:matrix(0.227213,0.003181,-0.003500,0.249976,0,0);-ms-transform:matrix(0.227213,0.003181,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.227213,0.003181,-0.003500,0.249976,0,0);}
.m7a_c00374{transform:matrix(0.227388,0.003183,-0.003500,0.249976,0,0);-ms-transform:matrix(0.227388,0.003183,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.227388,0.003183,-0.003500,0.249976,0,0);}
.mb8_c00374{transform:matrix(0.227833,0.003190,-0.003500,0.249976,0,0);-ms-transform:matrix(0.227833,0.003190,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.227833,0.003190,-0.003500,0.249976,0,0);}
.mb2_c00374{transform:matrix(0.228043,0.003193,-0.003500,0.249976,0,0);-ms-transform:matrix(0.228043,0.003193,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.228043,0.003193,-0.003500,0.249976,0,0);}
.mf8_c00374{transform:matrix(0.228243,0.003195,-0.003500,0.249976,0,0);-ms-transform:matrix(0.228243,0.003195,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.228243,0.003195,-0.003500,0.249976,0,0);}
.m111_c00374{transform:matrix(0.228583,0.003200,-0.003500,0.249976,0,0);-ms-transform:matrix(0.228583,0.003200,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.228583,0.003200,-0.003500,0.249976,0,0);}
.m110_c00374{transform:matrix(0.228648,0.003201,-0.003500,0.249976,0,0);-ms-transform:matrix(0.228648,0.003201,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.228648,0.003201,-0.003500,0.249976,0,0);}
.m26_c00374{transform:matrix(0.228793,0.003203,-0.003500,0.249976,0,0);-ms-transform:matrix(0.228793,0.003203,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.228793,0.003203,-0.003500,0.249976,0,0);}
.m46_c00374{transform:matrix(0.229093,0.003207,-0.003500,0.249976,0,0);-ms-transform:matrix(0.229093,0.003207,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.229093,0.003207,-0.003500,0.249976,0,0);}
.m45_c00374{transform:matrix(0.229458,0.003212,-0.003500,0.249976,0,0);-ms-transform:matrix(0.229458,0.003212,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.229458,0.003212,-0.003500,0.249976,0,0);}
.m12a_c00374{transform:matrix(0.229568,0.003214,-0.003500,0.249976,0,0);-ms-transform:matrix(0.229568,0.003214,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.229568,0.003214,-0.003500,0.249976,0,0);}
.m52_c00374{transform:matrix(0.229697,0.003216,-0.003500,0.249976,0,0);-ms-transform:matrix(0.229697,0.003216,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.229697,0.003216,-0.003500,0.249976,0,0);}
.m75_c00374{transform:matrix(0.230067,0.003221,-0.003500,0.249976,0,0);-ms-transform:matrix(0.230067,0.003221,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.230067,0.003221,-0.003500,0.249976,0,0);}
.m6a_c00374{transform:matrix(0.230192,0.003223,-0.003500,0.249976,0,0);-ms-transform:matrix(0.230192,0.003223,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.230192,0.003223,-0.003500,0.249976,0,0);}
.m103_c00374{transform:matrix(0.230397,0.003226,-0.003500,0.249976,0,0);-ms-transform:matrix(0.230397,0.003226,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.230397,0.003226,-0.003500,0.249976,0,0);}
.m66_c00374{transform:matrix(0.230872,0.003232,-0.003500,0.249976,0,0);-ms-transform:matrix(0.230872,0.003232,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.230872,0.003232,-0.003500,0.249976,0,0);}
.mf7_c00374{transform:matrix(0.231052,0.003235,-0.003500,0.249976,0,0);-ms-transform:matrix(0.231052,0.003235,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.231052,0.003235,-0.003500,0.249976,0,0);}
.m56_c00374{transform:matrix(0.231097,0.003235,-0.003500,0.249976,0,0);-ms-transform:matrix(0.231097,0.003235,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.231097,0.003235,-0.003500,0.249976,0,0);}
.md1_c00374{transform:matrix(0.231177,0.003236,-0.003500,0.249976,0,0);-ms-transform:matrix(0.231177,0.003236,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.231177,0.003236,-0.003500,0.249976,0,0);}
.mfe_c00374{transform:matrix(0.231492,0.003241,-0.003500,0.249976,0,0);-ms-transform:matrix(0.231492,0.003241,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.231492,0.003241,-0.003500,0.249976,0,0);}
.m8a_c00374{transform:matrix(0.231617,0.003243,-0.003500,0.249976,0,0);-ms-transform:matrix(0.231617,0.003243,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.231617,0.003243,-0.003500,0.249976,0,0);}
.m59_c00374{transform:matrix(0.231987,0.003248,-0.003500,0.249976,0,0);-ms-transform:matrix(0.231987,0.003248,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.231987,0.003248,-0.003500,0.249976,0,0);}
.m3a_c00374{transform:matrix(0.232042,0.003249,-0.003500,0.249976,0,0);-ms-transform:matrix(0.232042,0.003249,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.232042,0.003249,-0.003500,0.249976,0,0);}
.m128_c00374{transform:matrix(0.232262,0.003252,-0.003500,0.249976,0,0);-ms-transform:matrix(0.232262,0.003252,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.232262,0.003252,-0.003500,0.249976,0,0);}
.mf2_c00374{transform:matrix(0.232432,0.003254,-0.003500,0.249976,0,0);-ms-transform:matrix(0.232432,0.003254,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.232432,0.003254,-0.003500,0.249976,0,0);}
.m120_c00374{transform:matrix(0.232517,0.003255,-0.003500,0.249976,0,0);-ms-transform:matrix(0.232517,0.003255,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.232517,0.003255,-0.003500,0.249976,0,0);}
.m24_c00374{transform:matrix(0.232572,0.003256,-0.003500,0.249976,0,0);-ms-transform:matrix(0.232572,0.003256,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.232572,0.003256,-0.003500,0.249976,0,0);}
.m7c_c00374{transform:matrix(0.232732,0.003258,-0.003500,0.249976,0,0);-ms-transform:matrix(0.232732,0.003258,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.232732,0.003258,-0.003500,0.249976,0,0);}
.m5e_c00374{transform:matrix(0.232922,0.003261,-0.003500,0.249976,0,0);-ms-transform:matrix(0.232922,0.003261,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.232922,0.003261,-0.003500,0.249976,0,0);}
.mb4_c00374{transform:matrix(0.232932,0.003261,-0.003500,0.249976,0,0);-ms-transform:matrix(0.232932,0.003261,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.232932,0.003261,-0.003500,0.249976,0,0);}
.m14_c00374{transform:matrix(0.233000,0.003029,-0.003250,0.249979,0,0);-ms-transform:matrix(0.233000,0.003029,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.233000,0.003029,-0.003250,0.249979,0,0);}
.m2f_c00374{transform:matrix(0.233057,0.003263,-0.003500,0.249976,0,0);-ms-transform:matrix(0.233057,0.003263,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.233057,0.003263,-0.003500,0.249976,0,0);}
.m118_c00374{transform:matrix(0.233157,0.003264,-0.003500,0.249976,0,0);-ms-transform:matrix(0.233157,0.003264,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.233157,0.003264,-0.003500,0.249976,0,0);}
.m77_c00374{transform:matrix(0.233187,0.003265,-0.003500,0.249976,0,0);-ms-transform:matrix(0.233187,0.003265,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.233187,0.003265,-0.003500,0.249976,0,0);}
.m84_c00374{transform:matrix(0.233257,0.003266,-0.003500,0.249976,0,0);-ms-transform:matrix(0.233257,0.003266,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.233257,0.003266,-0.003500,0.249976,0,0);}
.m39_c00374{transform:matrix(0.233662,0.003271,-0.003500,0.249976,0,0);-ms-transform:matrix(0.233662,0.003271,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.233662,0.003271,-0.003500,0.249976,0,0);}
.mc4_c00374{transform:matrix(0.233672,0.003271,-0.003500,0.249976,0,0);-ms-transform:matrix(0.233672,0.003271,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.233672,0.003271,-0.003500,0.249976,0,0);}
.m131_c00374{transform:matrix(0.233686,0.002103,-0.002250,0.249990,0,0);-ms-transform:matrix(0.233686,0.002103,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.233686,0.002103,-0.002250,0.249990,0,0);}
.mf5_c00374{transform:matrix(0.233687,0.003272,-0.003500,0.249976,0,0);-ms-transform:matrix(0.233687,0.003272,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.233687,0.003272,-0.003500,0.249976,0,0);}
.m116_c00374{transform:matrix(0.233712,0.003272,-0.003500,0.249976,0,0);-ms-transform:matrix(0.233712,0.003272,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.233712,0.003272,-0.003500,0.249976,0,0);}
.m124_c00374{transform:matrix(0.234762,0.003287,-0.003500,0.249976,0,0);-ms-transform:matrix(0.234762,0.003287,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.234762,0.003287,-0.003500,0.249976,0,0);}
.m121_c00374{transform:matrix(0.234802,0.003287,-0.003500,0.249976,0,0);-ms-transform:matrix(0.234802,0.003287,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.234802,0.003287,-0.003500,0.249976,0,0);}
.m72_c00374{transform:matrix(0.235052,0.003291,-0.003500,0.249976,0,0);-ms-transform:matrix(0.235052,0.003291,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.235052,0.003291,-0.003500,0.249976,0,0);}
.m3f_c00374{transform:matrix(0.235067,0.003291,-0.003500,0.249976,0,0);-ms-transform:matrix(0.235067,0.003291,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.235067,0.003291,-0.003500,0.249976,0,0);}
.m113_c00374{transform:matrix(0.235507,0.003297,-0.003500,0.249976,0,0);-ms-transform:matrix(0.235507,0.003297,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.235507,0.003297,-0.003500,0.249976,0,0);}
.m12e_c00374{transform:matrix(0.235780,0.002122,-0.002250,0.249990,0,0);-ms-transform:matrix(0.235780,0.002122,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.235780,0.002122,-0.002250,0.249990,0,0);}
.m3d_c00374{transform:matrix(0.235897,0.003303,-0.003500,0.249976,0,0);-ms-transform:matrix(0.235897,0.003303,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.235897,0.003303,-0.003500,0.249976,0,0);}
.m76_c00374{transform:matrix(0.236442,0.003310,-0.003500,0.249976,0,0);-ms-transform:matrix(0.236442,0.003310,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.236442,0.003310,-0.003500,0.249976,0,0);}
.m25_c00374{transform:matrix(0.237147,0.003320,-0.003500,0.249976,0,0);-ms-transform:matrix(0.237147,0.003320,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.237147,0.003320,-0.003500,0.249976,0,0);}
.m100_c00374{transform:matrix(0.237192,0.003321,-0.003500,0.249976,0,0);-ms-transform:matrix(0.237192,0.003321,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.237192,0.003321,-0.003500,0.249976,0,0);}
.mb7_c00374{transform:matrix(0.237732,0.003328,-0.003500,0.249976,0,0);-ms-transform:matrix(0.237732,0.003328,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.237732,0.003328,-0.003500,0.249976,0,0);}
.m11_c00374{transform:matrix(0.238135,0.003096,-0.003250,0.249979,0,0);-ms-transform:matrix(0.238135,0.003096,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.238135,0.003096,-0.003250,0.249979,0,0);}
.m82_c00374{transform:matrix(0.238197,0.003335,-0.003500,0.249976,0,0);-ms-transform:matrix(0.238197,0.003335,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.238197,0.003335,-0.003500,0.249976,0,0);}
.m33_c00374{transform:matrix(0.238512,0.003339,-0.003500,0.249976,0,0);-ms-transform:matrix(0.238512,0.003339,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.238512,0.003339,-0.003500,0.249976,0,0);}
.m49_c00374{transform:matrix(0.238637,0.003341,-0.003500,0.249976,0,0);-ms-transform:matrix(0.238637,0.003341,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.238637,0.003341,-0.003500,0.249976,0,0);}
.m6d_c00374{transform:matrix(0.238927,0.003345,-0.003500,0.249976,0,0);-ms-transform:matrix(0.238927,0.003345,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.238927,0.003345,-0.003500,0.249976,0,0);}
.m102_c00374{transform:matrix(0.238957,0.003345,-0.003500,0.249976,0,0);-ms-transform:matrix(0.238957,0.003345,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.238957,0.003345,-0.003500,0.249976,0,0);}
.m88_c00374{transform:matrix(0.239287,0.003350,-0.003500,0.249976,0,0);-ms-transform:matrix(0.239287,0.003350,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.239287,0.003350,-0.003500,0.249976,0,0);}
.mbd_c00374{transform:matrix(0.239886,0.003358,-0.003500,0.249976,0,0);-ms-transform:matrix(0.239886,0.003358,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.239886,0.003358,-0.003500,0.249976,0,0);}
.m40_c00374{transform:matrix(0.239936,0.003359,-0.003500,0.249976,0,0);-ms-transform:matrix(0.239936,0.003359,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.239936,0.003359,-0.003500,0.249976,0,0);}
.m54_c00374{transform:matrix(0.240116,0.003362,-0.003500,0.249976,0,0);-ms-transform:matrix(0.240116,0.003362,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.240116,0.003362,-0.003500,0.249976,0,0);}
.mf6_c00374{transform:matrix(0.240256,0.003364,-0.003500,0.249976,0,0);-ms-transform:matrix(0.240256,0.003364,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.240256,0.003364,-0.003500,0.249976,0,0);}
.mce_c00374{transform:matrix(0.241096,0.003375,-0.003500,0.249976,0,0);-ms-transform:matrix(0.241096,0.003375,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.241096,0.003375,-0.003500,0.249976,0,0);}
.m87_c00374{transform:matrix(0.241276,0.003378,-0.003500,0.249976,0,0);-ms-transform:matrix(0.241276,0.003378,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.241276,0.003378,-0.003500,0.249976,0,0);}
.m132_c00374{transform:matrix(0.241895,0.002177,-0.002250,0.249990,0,0);-ms-transform:matrix(0.241895,0.002177,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.241895,0.002177,-0.002250,0.249990,0,0);}
.mc0_c00374{transform:matrix(0.241901,0.003387,-0.003500,0.249976,0,0);-ms-transform:matrix(0.241901,0.003387,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.241901,0.003387,-0.003500,0.249976,0,0);}
.m98_c00374{transform:matrix(0.241971,0.003388,-0.003500,0.249976,0,0);-ms-transform:matrix(0.241971,0.003388,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.241971,0.003388,-0.003500,0.249976,0,0);}
.m62_c00374{transform:matrix(0.242351,0.003393,-0.003500,0.249976,0,0);-ms-transform:matrix(0.242351,0.003393,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.242351,0.003393,-0.003500,0.249976,0,0);}
.mb6_c00374{transform:matrix(0.242486,0.003395,-0.003500,0.249976,0,0);-ms-transform:matrix(0.242486,0.003395,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.242486,0.003395,-0.003500,0.249976,0,0);}
.mbb_c00374{transform:matrix(0.242521,0.003395,-0.003500,0.249976,0,0);-ms-transform:matrix(0.242521,0.003395,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.242521,0.003395,-0.003500,0.249976,0,0);}
.mb1_c00374{transform:matrix(0.242871,0.003400,-0.003500,0.249976,0,0);-ms-transform:matrix(0.242871,0.003400,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.242871,0.003400,-0.003500,0.249976,0,0);}
.m6e_c00374{transform:matrix(0.243471,0.003409,-0.003500,0.249976,0,0);-ms-transform:matrix(0.243471,0.003409,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.243471,0.003409,-0.003500,0.249976,0,0);}
.m78_c00374{transform:matrix(0.243626,0.003411,-0.003500,0.249976,0,0);-ms-transform:matrix(0.243626,0.003411,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.243626,0.003411,-0.003500,0.249976,0,0);}
.m7f_c00374{transform:matrix(0.243971,0.003416,-0.003500,0.249976,0,0);-ms-transform:matrix(0.243971,0.003416,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.243971,0.003416,-0.003500,0.249976,0,0);}
.md0_c00374{transform:matrix(0.244376,0.003421,-0.003500,0.249976,0,0);-ms-transform:matrix(0.244376,0.003421,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.244376,0.003421,-0.003500,0.249976,0,0);}
.mbc_c00374{transform:matrix(0.244766,0.003427,-0.003500,0.249976,0,0);-ms-transform:matrix(0.244766,0.003427,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.244766,0.003427,-0.003500,0.249976,0,0);}
.me_c00374{transform:matrix(0.245434,0.003191,-0.003250,0.249979,0,0);-ms-transform:matrix(0.245434,0.003191,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.245434,0.003191,-0.003250,0.249979,0,0);}
.m3e_c00374{transform:matrix(0.245601,0.003438,-0.003500,0.249976,0,0);-ms-transform:matrix(0.245601,0.003438,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.245601,0.003438,-0.003500,0.249976,0,0);}
.m90_c00374{transform:matrix(0.245946,0.003443,-0.003500,0.249976,0,0);-ms-transform:matrix(0.245946,0.003443,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.245946,0.003443,-0.003500,0.249976,0,0);}
.m43_c00374{transform:matrix(0.246526,0.003451,-0.003500,0.249976,0,0);-ms-transform:matrix(0.246526,0.003451,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.246526,0.003451,-0.003500,0.249976,0,0);}
.mc6_c00374{transform:matrix(0.246916,0.003457,-0.003500,0.249976,0,0);-ms-transform:matrix(0.246916,0.003457,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.246916,0.003457,-0.003500,0.249976,0,0);}
.mb3_c00374{transform:matrix(0.248781,0.003483,-0.003500,0.249976,0,0);-ms-transform:matrix(0.248781,0.003483,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.248781,0.003483,-0.003500,0.249976,0,0);}
.m10_c00374{transform:matrix(0.249379,0.003242,-0.003250,0.249979,0,0);-ms-transform:matrix(0.249379,0.003242,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.249379,0.003242,-0.003250,0.249979,0,0);}
.m92_c00374{transform:matrix(0.249481,0.003493,-0.003500,0.249976,0,0);-ms-transform:matrix(0.249481,0.003493,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.249481,0.003493,-0.003500,0.249976,0,0);}
.m96_c00374{transform:matrix(0.249956,0.003499,-0.003500,0.249976,0,0);-ms-transform:matrix(0.249956,0.003499,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.249956,0.003499,-0.003500,0.249976,0,0);}
.m32_c00374{transform:matrix(0.249991,0.003500,-0.003500,0.249976,0,0);-ms-transform:matrix(0.249991,0.003500,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.249991,0.003500,-0.003500,0.249976,0,0);}
.m7_c00374{transform:matrix(0.250084,0.003251,-0.003250,0.249979,0,0);-ms-transform:matrix(0.250084,0.003251,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.250084,0.003251,-0.003250,0.249979,0,0);}
.mc3_c00374{transform:matrix(0.250130,0.003502,-0.003500,0.249976,0,0);-ms-transform:matrix(0.250130,0.003502,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.250130,0.003502,-0.003500,0.249976,0,0);}
.m16_c00374{transform:matrix(0.250189,0.003252,-0.003250,0.249979,0,0);-ms-transform:matrix(0.250189,0.003252,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.250189,0.003252,-0.003250,0.249979,0,0);}
.m29_c00374{transform:matrix(0.250445,0.003506,-0.003500,0.249976,0,0);-ms-transform:matrix(0.250445,0.003506,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.250445,0.003506,-0.003500,0.249976,0,0);}
.m2e_c00374{transform:matrix(0.250515,0.003507,-0.003500,0.249976,0,0);-ms-transform:matrix(0.250515,0.003507,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.250515,0.003507,-0.003500,0.249976,0,0);}
.m70_c00374{transform:matrix(0.250895,0.003513,-0.003500,0.249976,0,0);-ms-transform:matrix(0.250895,0.003513,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.250895,0.003513,-0.003500,0.249976,0,0);}
.m42_c00374{transform:matrix(0.251160,0.003516,-0.003500,0.249976,0,0);-ms-transform:matrix(0.251160,0.003516,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.251160,0.003516,-0.003500,0.249976,0,0);}
.m12_c00374{transform:matrix(0.251234,0.003266,-0.003250,0.249979,0,0);-ms-transform:matrix(0.251234,0.003266,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.251234,0.003266,-0.003250,0.249979,0,0);}
.m18_c00374{transform:matrix(0.251374,0.003268,-0.003250,0.249979,0,0);-ms-transform:matrix(0.251374,0.003268,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.251374,0.003268,-0.003250,0.249979,0,0);}
.mcd_c00374{transform:matrix(0.251620,0.003523,-0.003500,0.249976,0,0);-ms-transform:matrix(0.251620,0.003523,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.251620,0.003523,-0.003500,0.249976,0,0);}
.m2_c00374{transform:matrix(0.252454,0.003282,-0.003250,0.249979,0,0);-ms-transform:matrix(0.252454,0.003282,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.252454,0.003282,-0.003250,0.249979,0,0);}
.m126_c00374{transform:matrix(0.253300,0.003546,-0.003500,0.249976,0,0);-ms-transform:matrix(0.253300,0.003546,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.253300,0.003546,-0.003500,0.249976,0,0);}
.m31_c00374{transform:matrix(0.253820,0.003553,-0.003500,0.249976,0,0);-ms-transform:matrix(0.253820,0.003553,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.253820,0.003553,-0.003500,0.249976,0,0);}
.m61_c00374{transform:matrix(0.254550,0.003564,-0.003500,0.249976,0,0);-ms-transform:matrix(0.254550,0.003564,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.254550,0.003564,-0.003500,0.249976,0,0);}
.m3_c00374{transform:matrix(0.254603,0.003310,-0.003250,0.249979,0,0);-ms-transform:matrix(0.254603,0.003310,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.254603,0.003310,-0.003250,0.249979,0,0);}
.m37_c00374{transform:matrix(0.255185,0.003573,-0.003500,0.249976,0,0);-ms-transform:matrix(0.255185,0.003573,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.255185,0.003573,-0.003500,0.249976,0,0);}
.mc1_c00374{transform:matrix(0.255255,0.003574,-0.003500,0.249976,0,0);-ms-transform:matrix(0.255255,0.003574,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.255255,0.003574,-0.003500,0.249976,0,0);}
.m5d_c00374{transform:matrix(0.256060,0.003585,-0.003500,0.249976,0,0);-ms-transform:matrix(0.256060,0.003585,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.256060,0.003585,-0.003500,0.249976,0,0);}
.m3b_c00374{transform:matrix(0.256495,0.003591,-0.003500,0.249976,0,0);-ms-transform:matrix(0.256495,0.003591,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.256495,0.003591,-0.003500,0.249976,0,0);}
.m63_c00374{transform:matrix(0.256565,0.003592,-0.003500,0.249976,0,0);-ms-transform:matrix(0.256565,0.003592,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.256565,0.003592,-0.003500,0.249976,0,0);}
.mcc_c00374{transform:matrix(0.256645,0.003593,-0.003500,0.249976,0,0);-ms-transform:matrix(0.256645,0.003593,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.256645,0.003593,-0.003500,0.249976,0,0);}
.maa_c00374{transform:matrix(0.258290,0.003616,-0.003500,0.249976,0,0);-ms-transform:matrix(0.258290,0.003616,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.258290,0.003616,-0.003500,0.249976,0,0);}
.m99_c00374{transform:matrix(0.258500,0.003619,-0.003500,0.249976,0,0);-ms-transform:matrix(0.258500,0.003619,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.258500,0.003619,-0.003500,0.249976,0,0);}
.mab_c00374{transform:matrix(0.258925,0.003625,-0.003500,0.249976,0,0);-ms-transform:matrix(0.258925,0.003625,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.258925,0.003625,-0.003500,0.249976,0,0);}
.m30_c00374{transform:matrix(0.259215,0.003629,-0.003500,0.249976,0,0);-ms-transform:matrix(0.259215,0.003629,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.259215,0.003629,-0.003500,0.249976,0,0);}
.m27_c00374{transform:matrix(0.259815,0.003637,-0.003500,0.249976,0,0);-ms-transform:matrix(0.259815,0.003637,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.259815,0.003637,-0.003500,0.249976,0,0);}
.ma6_c00374{transform:matrix(0.261174,0.003656,-0.003500,0.249976,0,0);-ms-transform:matrix(0.261174,0.003656,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.261174,0.003656,-0.003500,0.249976,0,0);}
.m8c_c00374{transform:matrix(0.261184,0.003657,-0.003500,0.249976,0,0);-ms-transform:matrix(0.261184,0.003657,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.261184,0.003657,-0.003500,0.249976,0,0);}
.m67_c00374{transform:matrix(0.261309,0.003658,-0.003500,0.249976,0,0);-ms-transform:matrix(0.261309,0.003658,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.261309,0.003658,-0.003500,0.249976,0,0);}
.m12b_c00374{transform:matrix(0.262229,0.003671,-0.003500,0.249976,0,0);-ms-transform:matrix(0.262229,0.003671,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.262229,0.003671,-0.003500,0.249976,0,0);}
.mca_c00374{transform:matrix(0.262494,0.003675,-0.003500,0.249976,0,0);-ms-transform:matrix(0.262494,0.003675,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.262494,0.003675,-0.003500,0.249976,0,0);}
.m95_c00374{transform:matrix(0.262844,0.003680,-0.003500,0.249976,0,0);-ms-transform:matrix(0.262844,0.003680,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.262844,0.003680,-0.003500,0.249976,0,0);}
.m8f_c00374{transform:matrix(0.263129,0.003684,-0.003500,0.249976,0,0);-ms-transform:matrix(0.263129,0.003684,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.263129,0.003684,-0.003500,0.249976,0,0);}
.m125_c00374{transform:matrix(0.264419,0.003702,-0.003500,0.249976,0,0);-ms-transform:matrix(0.264419,0.003702,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.264419,0.003702,-0.003500,0.249976,0,0);}
.m9a_c00374{transform:matrix(0.264954,0.003709,-0.003500,0.249976,0,0);-ms-transform:matrix(0.264954,0.003709,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.264954,0.003709,-0.003500,0.249976,0,0);}
.mc2_c00374{transform:matrix(0.265549,0.003718,-0.003500,0.249976,0,0);-ms-transform:matrix(0.265549,0.003718,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.265549,0.003718,-0.003500,0.249976,0,0);}
.m6c_c00374{transform:matrix(0.266354,0.003729,-0.003500,0.249976,0,0);-ms-transform:matrix(0.266354,0.003729,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.266354,0.003729,-0.003500,0.249976,0,0);}
.m97_c00374{transform:matrix(0.266494,0.003731,-0.003500,0.249976,0,0);-ms-transform:matrix(0.266494,0.003731,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.266494,0.003731,-0.003500,0.249976,0,0);}
.m129_c00374{transform:matrix(0.267384,0.003743,-0.003500,0.249976,0,0);-ms-transform:matrix(0.267384,0.003743,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.267384,0.003743,-0.003500,0.249976,0,0);}
.mad_c00374{transform:matrix(0.267979,0.003752,-0.003500,0.249976,0,0);-ms-transform:matrix(0.267979,0.003752,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.267979,0.003752,-0.003500,0.249976,0,0);}
.mc7_c00374{transform:matrix(0.268099,0.003753,-0.003500,0.249976,0,0);-ms-transform:matrix(0.268099,0.003753,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.268099,0.003753,-0.003500,0.249976,0,0);}
.m86_c00374{transform:matrix(0.268169,0.003754,-0.003500,0.249976,0,0);-ms-transform:matrix(0.268169,0.003754,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.268169,0.003754,-0.003500,0.249976,0,0);}
.ma9_c00374{transform:matrix(0.268319,0.003756,-0.003500,0.249976,0,0);-ms-transform:matrix(0.268319,0.003756,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.268319,0.003756,-0.003500,0.249976,0,0);}
.mac_c00374{transform:matrix(0.268434,0.003758,-0.003500,0.249976,0,0);-ms-transform:matrix(0.268434,0.003758,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.268434,0.003758,-0.003500,0.249976,0,0);}
.m23_c00374{transform:matrix(0.268539,0.003760,-0.003500,0.249976,0,0);-ms-transform:matrix(0.268539,0.003760,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.268539,0.003760,-0.003500,0.249976,0,0);}
.md_c00374{transform:matrix(0.268562,0.003491,-0.003250,0.249979,0,0);-ms-transform:matrix(0.268562,0.003491,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.268562,0.003491,-0.003250,0.249979,0,0);}
.m6f_c00374{transform:matrix(0.268639,0.003761,-0.003500,0.249976,0,0);-ms-transform:matrix(0.268639,0.003761,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.268639,0.003761,-0.003500,0.249976,0,0);}
.m65_c00374{transform:matrix(0.268714,0.003762,-0.003500,0.249976,0,0);-ms-transform:matrix(0.268714,0.003762,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.268714,0.003762,-0.003500,0.249976,0,0);}
.m91_c00374{transform:matrix(0.268999,0.003766,-0.003500,0.249976,0,0);-ms-transform:matrix(0.268999,0.003766,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.268999,0.003766,-0.003500,0.249976,0,0);}
.m69_c00374{transform:matrix(0.269149,0.003768,-0.003500,0.249976,0,0);-ms-transform:matrix(0.269149,0.003768,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.269149,0.003768,-0.003500,0.249976,0,0);}
.mb9_c00374{transform:matrix(0.269199,0.003769,-0.003500,0.249976,0,0);-ms-transform:matrix(0.269199,0.003769,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.269199,0.003769,-0.003500,0.249976,0,0);}
.m5_c00374{transform:matrix(0.270447,0.003516,-0.003250,0.249979,0,0);-ms-transform:matrix(0.270447,0.003516,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.270447,0.003516,-0.003250,0.249979,0,0);}
.mbf_c00374{transform:matrix(0.270638,0.003789,-0.003500,0.249976,0,0);-ms-transform:matrix(0.270638,0.003789,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.270638,0.003789,-0.003500,0.249976,0,0);}
.m8b_c00374{transform:matrix(0.270773,0.003791,-0.003500,0.249976,0,0);-ms-transform:matrix(0.270773,0.003791,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.270773,0.003791,-0.003500,0.249976,0,0);}
.m8e_c00374{transform:matrix(0.270908,0.003793,-0.003500,0.249976,0,0);-ms-transform:matrix(0.270908,0.003793,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.270908,0.003793,-0.003500,0.249976,0,0);}
.m12c_c00374{transform:matrix(0.271183,0.003797,-0.003500,0.249976,0,0);-ms-transform:matrix(0.271183,0.003797,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.271183,0.003797,-0.003500,0.249976,0,0);}
.m123_c00374{transform:matrix(0.271413,0.003800,-0.003500,0.249976,0,0);-ms-transform:matrix(0.271413,0.003800,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.271413,0.003800,-0.003500,0.249976,0,0);}
.m22_c00374{transform:matrix(0.272403,0.003814,-0.003500,0.249976,0,0);-ms-transform:matrix(0.272403,0.003814,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.272403,0.003814,-0.003500,0.249976,0,0);}
.m94_c00374{transform:matrix(0.272568,0.003816,-0.003500,0.249976,0,0);-ms-transform:matrix(0.272568,0.003816,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.272568,0.003816,-0.003500,0.249976,0,0);}
.ma8_c00374{transform:matrix(0.273108,0.003824,-0.003500,0.249976,0,0);-ms-transform:matrix(0.273108,0.003824,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.273108,0.003824,-0.003500,0.249976,0,0);}
.m93_c00374{transform:matrix(0.273418,0.003828,-0.003500,0.249976,0,0);-ms-transform:matrix(0.273418,0.003828,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.273418,0.003828,-0.003500,0.249976,0,0);}
.mbe_c00374{transform:matrix(0.273748,0.003832,-0.003500,0.249976,0,0);-ms-transform:matrix(0.273748,0.003832,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.273748,0.003832,-0.003500,0.249976,0,0);}
.m36_c00374{transform:matrix(0.273903,0.003835,-0.003500,0.249976,0,0);-ms-transform:matrix(0.273903,0.003835,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.273903,0.003835,-0.003500,0.249976,0,0);}
.mae_c00374{transform:matrix(0.275923,0.003863,-0.003500,0.249976,0,0);-ms-transform:matrix(0.275923,0.003863,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.275923,0.003863,-0.003500,0.249976,0,0);}
.maf_c00374{transform:matrix(0.276203,0.003867,-0.003500,0.249976,0,0);-ms-transform:matrix(0.276203,0.003867,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.276203,0.003867,-0.003500,0.249976,0,0);}
.m2c_c00374{transform:matrix(0.277233,0.003881,-0.003500,0.249976,0,0);-ms-transform:matrix(0.277233,0.003881,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.277233,0.003881,-0.003500,0.249976,0,0);}
.m34_c00374{transform:matrix(0.278078,0.003893,-0.003500,0.249976,0,0);-ms-transform:matrix(0.278078,0.003893,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.278078,0.003893,-0.003500,0.249976,0,0);}
.m6b_c00374{transform:matrix(0.278463,0.003898,-0.003500,0.249976,0,0);-ms-transform:matrix(0.278463,0.003898,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.278463,0.003898,-0.003500,0.249976,0,0);}
.m35_c00374{transform:matrix(0.278793,0.003903,-0.003500,0.249976,0,0);-ms-transform:matrix(0.278793,0.003903,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.278793,0.003903,-0.003500,0.249976,0,0);}
.ma_c00374{transform:matrix(0.279946,0.003639,-0.003250,0.249979,0,0);-ms-transform:matrix(0.279946,0.003639,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.279946,0.003639,-0.003250,0.249979,0,0);}
.m89_c00374{transform:matrix(0.280408,0.003926,-0.003500,0.249976,0,0);-ms-transform:matrix(0.280408,0.003926,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.280408,0.003926,-0.003500,0.249976,0,0);}
.m8_c00374{transform:matrix(0.280801,0.003650,-0.003250,0.249979,0,0);-ms-transform:matrix(0.280801,0.003650,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.280801,0.003650,-0.003250,0.249979,0,0);}
.m9_c00374{transform:matrix(0.282101,0.003667,-0.003250,0.249979,0,0);-ms-transform:matrix(0.282101,0.003667,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.282101,0.003667,-0.003250,0.249979,0,0);}
.mc5_c00374{transform:matrix(0.285192,0.003993,-0.003500,0.249976,0,0);-ms-transform:matrix(0.285192,0.003993,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.285192,0.003993,-0.003500,0.249976,0,0);}
.mc_c00374{transform:matrix(0.287301,0.003735,-0.003250,0.249979,0,0);-ms-transform:matrix(0.287301,0.003735,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.287301,0.003735,-0.003250,0.249979,0,0);}
.mb_c00374{transform:matrix(0.290195,0.003773,-0.003250,0.249979,0,0);-ms-transform:matrix(0.290195,0.003773,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.290195,0.003773,-0.003250,0.249979,0,0);}
.m4_c00374{transform:matrix(0.292010,0.003796,-0.003250,0.249979,0,0);-ms-transform:matrix(0.292010,0.003796,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.292010,0.003796,-0.003250,0.249979,0,0);}
.m6_c00374{transform:matrix(0.307564,0.003998,-0.003250,0.249979,0,0);-ms-transform:matrix(0.307564,0.003998,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.307564,0.003998,-0.003250,0.249979,0,0);}
.m8d_c00374{transform:matrix(0.317099,0.004439,-0.003500,0.249976,0,0);-ms-transform:matrix(0.317099,0.004439,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.317099,0.004439,-0.003500,0.249976,0,0);}
.m38_c00374{transform:matrix(0.320524,0.004487,-0.003500,0.249976,0,0);-ms-transform:matrix(0.320524,0.004487,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.320524,0.004487,-0.003500,0.249976,0,0);}
.m68_c00374{transform:matrix(0.336502,0.004711,-0.003500,0.249976,0,0);-ms-transform:matrix(0.336502,0.004711,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.336502,0.004711,-0.003500,0.249976,0,0);}
.m2d_c00374{transform:matrix(0.343161,0.004804,-0.003500,0.249976,0,0);-ms-transform:matrix(0.343161,0.004804,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.343161,0.004804,-0.003500,0.249976,0,0);}
.m0_c00374{transform:matrix(0.499330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.499330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.499330,0.000000,0.000000,0.250000,0,0);}
.m1_c00374{transform:matrix(0.709465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.709465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.709465,0.000000,0.000000,0.250000,0,0);}
.m139_c00374{transform:matrix(0.941515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.941515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.941515,0.000000,0.000000,0.250000,0,0);}
.m13a_c00374{transform:matrix(0.977165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.977165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.977165,0.000000,0.000000,0.250000,0,0);}
.v0_c00374{vertical-align:0.000000px;}
.ls0_c00374{letter-spacing:0.000000px;}
.sc__c00374{text-shadow:none;}
.sc0_c00374{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__c00374{-webkit-text-stroke:0px transparent;}
.sc0_c00374{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00374{word-spacing:0.000000px;}
.fc0_c00374{color:transparent;}
.fs0_c00374{font-size:24.000000px;}
.fsa_c00374{font-size:54.000000px;}
.fs1_c00374{font-size:66.005577px;}
.fs4_c00374{font-size:72.007056px;}
.fs2_c00374{font-size:78.006591px;}
.fs5_c00374{font-size:78.007644px;}
.fs9_c00374{font-size:84.003402px;}
.fs6_c00374{font-size:84.008232px;}
.fs3_c00374{font-size:90.007605px;}
.fs8_c00374{font-size:90.008820px;}
.fs7_c00374{font-size:96.009408px;}
.fsb_c00374{font-size:102.000000px;}
.fsc_c00374{font-size:120.000000px;}
.y0_c00374{bottom:0.000000px;}
.y149_c00374{bottom:75.630000px;}
.y148_c00374{bottom:113.526000px;}
.y147_c00374{bottom:141.079500px;}
.y146_c00374{bottom:160.870416px;}
.y145_c00374{bottom:161.071877px;}
.y144_c00374{bottom:161.572943px;}
.y143_c00374{bottom:162.073590px;}
.y142_c00374{bottom:162.472340px;}
.y141_c00374{bottom:162.768894px;}
.y140_c00374{bottom:163.969638px;}
.y13f_c00374{bottom:164.669640px;}
.y13e_c00374{bottom:165.158097px;}
.y13d_c00374{bottom:165.449184px;}
.y13c_c00374{bottom:166.321500px;}
.y13b_c00374{bottom:200.274882px;}
.y13a_c00374{bottom:202.130223px;}
.y139_c00374{bottom:203.087913px;}
.y138_c00374{bottom:204.722523px;}
.y137_c00374{bottom:205.415040px;}
.y136_c00374{bottom:206.372961px;}
.y135_c00374{bottom:207.758331px;}
.y134_c00374{bottom:208.450932px;}
.y133_c00374{bottom:209.140920px;}
.y132_c00374{bottom:210.315090px;}
.y131_c00374{bottom:212.164689px;}
.y130_c00374{bottom:212.843172px;}
.y12f_c00374{bottom:214.850124px;}
.y12e_c00374{bottom:236.008638px;}
.y12d_c00374{bottom:237.225828px;}
.y12c_c00374{bottom:239.210415px;}
.y12b_c00374{bottom:240.910356px;}
.y12a_c00374{bottom:241.660098px;}
.y129_c00374{bottom:242.633430px;}
.y128_c00374{bottom:243.579126px;}
.y127_c00374{bottom:245.313159px;}
.y126_c00374{bottom:246.252819px;}
.y125_c00374{bottom:247.000473px;}
.y124_c00374{bottom:248.200575px;}
.y123_c00374{bottom:249.178935px;}
.y122_c00374{bottom:251.302890px;}
.y121_c00374{bottom:270.376677px;}
.y120_c00374{bottom:271.870392px;}
.y11f_c00374{bottom:272.389530px;}
.y11e_c00374{bottom:273.230892px;}
.y11d_c00374{bottom:275.038179px;}
.y11c_c00374{bottom:276.043581px;}
.y11b_c00374{bottom:276.545364px;}
.y11a_c00374{bottom:277.691772px;}
.y119_c00374{bottom:278.199066px;}
.y118_c00374{bottom:279.509694px;}
.y117_c00374{bottom:280.463493px;}
.y116_c00374{bottom:304.346430px;}
.y115_c00374{bottom:306.717033px;}
.y114_c00374{bottom:309.028575px;}
.y113_c00374{bottom:310.301853px;}
.y112_c00374{bottom:312.841104px;}
.y111_c00374{bottom:313.605174px;}
.y110_c00374{bottom:314.865783px;}
.y10f_c00374{bottom:317.385837px;}
.y10e_c00374{bottom:318.382065px;}
.y10d_c00374{bottom:319.616109px;}
.y10c_c00374{bottom:340.493367px;}
.y10b_c00374{bottom:341.958603px;}
.y10a_c00374{bottom:344.152284px;}
.y109_c00374{bottom:344.903013px;}
.y108_c00374{bottom:347.105511px;}
.y107_c00374{bottom:347.818401px;}
.y106_c00374{bottom:349.294332px;}
.y105_c00374{bottom:350.019198px;}
.y104_c00374{bottom:351.962010px;}
.y103_c00374{bottom:352.674732px;}
.y102_c00374{bottom:353.154576px;}
.y101_c00374{bottom:353.876535px;}
.y100_c00374{bottom:355.531857px;}
.yff_c00374{bottom:376.853463px;}
.yfe_c00374{bottom:377.249208px;}
.yfd_c00374{bottom:377.861667px;}
.yfc_c00374{bottom:378.462579px;}
.yfb_c00374{bottom:379.366575px;}
.yfa_c00374{bottom:380.155890px;}
.yf9_c00374{bottom:380.449770px;}
.yf8_c00374{bottom:380.853540px;}
.yf7_c00374{bottom:381.638358px;}
.yf6_c00374{bottom:381.942249px;}
.yf5_c00374{bottom:382.803096px;}
.yf4_c00374{bottom:414.071469px;}
.yf3_c00374{bottom:414.544179px;}
.yf2_c00374{bottom:415.485525px;}
.yf1_c00374{bottom:416.113047px;}
.yf0_c00374{bottom:417.039735px;}
.yef_c00374{bottom:417.656337px;}
.yee_c00374{bottom:418.431426px;}
.yed_c00374{bottom:419.198850px;}
.yec_c00374{bottom:419.834310px;}
.yeb_c00374{bottom:420.287805px;}
.yea_c00374{bottom:421.365000px;}
.ye9_c00374{bottom:422.124234px;}
.ye8_c00374{bottom:422.429217px;}
.ye7_c00374{bottom:423.037902px;}
.ye6_c00374{bottom:451.505649px;}
.ye5_c00374{bottom:451.869576px;}
.ye4_c00374{bottom:453.130017px;}
.ye3_c00374{bottom:454.011141px;}
.ye2_c00374{bottom:454.547781px;}
.ye1_c00374{bottom:455.627424px;}
.ye0_c00374{bottom:456.332295px;}
.ydf_c00374{bottom:458.268411px;}
.yde_c00374{bottom:459.348768px;}
.ydd_c00374{bottom:460.726878px;}
.ydc_c00374{bottom:461.446857px;}
.ydb_c00374{bottom:461.948169px;}
.yda_c00374{bottom:462.461712px;}
.yd9_c00374{bottom:487.984551px;}
.yd8_c00374{bottom:488.393478px;}
.yd7_c00374{bottom:488.794215px;}
.yd6_c00374{bottom:489.452307px;}
.yd5_c00374{bottom:490.528254px;}
.yd4_c00374{bottom:490.936719px;}
.yd3_c00374{bottom:491.211540px;}
.yd2_c00374{bottom:492.132837px;}
.yd1_c00374{bottom:493.211304px;}
.yd0_c00374{bottom:493.591215px;}
.ycf_c00374{bottom:495.428370px;}
.yce_c00374{bottom:495.828834px;}
.ycd_c00374{bottom:496.213356px;}
.ycc_c00374{bottom:521.497785px;}
.ycb_c00374{bottom:522.110187px;}
.yca_c00374{bottom:523.845774px;}
.yc9_c00374{bottom:524.307375px;}
.yc8_c00374{bottom:524.628003px;}
.yc7_c00374{bottom:525.864735px;}
.yc6_c00374{bottom:526.624536px;}
.yc5_c00374{bottom:527.252121px;}
.yc4_c00374{bottom:528.345234px;}
.yc3_c00374{bottom:528.955074px;}
.yc2_c00374{bottom:529.410879px;}
.yc1_c00374{bottom:530.151318px;}
.yc0_c00374{bottom:530.777580px;}
.ybf_c00374{bottom:557.835273px;}
.ybe_c00374{bottom:561.297744px;}
.ybd_c00374{bottom:562.016922px;}
.ybc_c00374{bottom:563.251620px;}
.ybb_c00374{bottom:564.956106px;}
.yba_c00374{bottom:565.674864px;}
.yb9_c00374{bottom:566.892642px;}
.yb8_c00374{bottom:568.811166px;}
.yb7_c00374{bottom:570.032796px;}
.yb6_c00374{bottom:572.199954px;}
.yb5_c00374{bottom:572.897205px;}
.yb4_c00374{bottom:593.254095px;}
.yb3_c00374{bottom:594.834303px;}
.yb2_c00374{bottom:595.900368px;}
.yb1_c00374{bottom:597.310812px;}
.yb0_c00374{bottom:598.233405px;}
.yaf_c00374{bottom:598.561803px;}
.yae_c00374{bottom:599.631711px;}
.yad_c00374{bottom:600.860610px;}
.yac_c00374{bottom:601.305873px;}
.yab_c00374{bottom:602.062377px;}
.yaa_c00374{bottom:628.527114px;}
.ya9_c00374{bottom:628.928523px;}
.ya8_c00374{bottom:629.327022px;}
.ya7_c00374{bottom:630.526605px;}
.ya6_c00374{bottom:631.340910px;}
.ya5_c00374{bottom:632.132070px;}
.ya4_c00374{bottom:633.190668px;}
.ya3_c00374{bottom:633.852456px;}
.ya2_c00374{bottom:634.126647px;}
.ya1_c00374{bottom:635.429190px;}
.ya0_c00374{bottom:635.813523px;}
.y9f_c00374{bottom:663.793410px;}
.y9e_c00374{bottom:664.523793px;}
.y9d_c00374{bottom:664.956426px;}
.y9c_c00374{bottom:665.820369px;}
.y9b_c00374{bottom:666.543780px;}
.y9a_c00374{bottom:667.400457px;}
.y99_c00374{bottom:668.428602px;}
.y98_c00374{bottom:669.580131px;}
.y97_c00374{bottom:670.289880px;}
.y96_c00374{bottom:671.701020px;}
.y95_c00374{bottom:672.269145px;}
.y94_c00374{bottom:699.726630px;}
.y93_c00374{bottom:700.351302px;}
.y92_c00374{bottom:701.232336px;}
.y91_c00374{bottom:701.774385px;}
.y90_c00374{bottom:701.957790px;}
.y8f_c00374{bottom:702.571356px;}
.y8e_c00374{bottom:702.834558px;}
.y8d_c00374{bottom:703.640040px;}
.y8c_c00374{bottom:703.983123px;}
.y8b_c00374{bottom:704.337081px;}
.y8a_c00374{bottom:705.210180px;}
.y89_c00374{bottom:735.561579px;}
.y88_c00374{bottom:736.814493px;}
.y87_c00374{bottom:737.353884px;}
.y86_c00374{bottom:738.217359px;}
.y85_c00374{bottom:740.006787px;}
.y84_c00374{bottom:740.896551px;}
.y83_c00374{bottom:741.423291px;}
.y82_c00374{bottom:743.908950px;}
.y81_c00374{bottom:744.438441px;}
.y80_c00374{bottom:745.268688px;}
.y7f_c00374{bottom:746.524866px;}
.y7e_c00374{bottom:772.199760px;}
.y7d_c00374{bottom:773.013603px;}
.y7c_c00374{bottom:773.412648px;}
.y7b_c00374{bottom:773.678217px;}
.y7a_c00374{bottom:774.867015px;}
.y79_c00374{bottom:776.078256px;}
.y78_c00374{bottom:776.350524px;}
.y77_c00374{bottom:777.398283px;}
.y76_c00374{bottom:778.194642px;}
.y75_c00374{bottom:778.472655px;}
.y74_c00374{bottom:779.646330px;}
.y73_c00374{bottom:780.277611px;}
.y72_c00374{bottom:808.933101px;}
.y71_c00374{bottom:809.463915px;}
.y70_c00374{bottom:810.880713px;}
.y6f_c00374{bottom:811.593249px;}
.y6e_c00374{bottom:812.301039px;}
.y6d_c00374{bottom:813.550530px;}
.y6c_c00374{bottom:815.139633px;}
.y6b_c00374{bottom:815.675979px;}
.y6a_c00374{bottom:816.914709px;}
.y69_c00374{bottom:817.601628px;}
.y68_c00374{bottom:819.173691px;}
.y67_c00374{bottom:819.700011px;}
.y66_c00374{bottom:846.190941px;}
.y65_c00374{bottom:846.581238px;}
.y64_c00374{bottom:847.790808px;}
.y63_c00374{bottom:848.575278px;}
.y62_c00374{bottom:849.770808px;}
.y61_c00374{bottom:850.317771px;}
.y60_c00374{bottom:850.962075px;}
.y5f_c00374{bottom:851.620314px;}
.y5e_c00374{bottom:852.957702px;}
.y5d_c00374{bottom:853.452828px;}
.y5c_c00374{bottom:880.957410px;}
.y5b_c00374{bottom:881.123550px;}
.y5a_c00374{bottom:881.734326px;}
.y59_c00374{bottom:881.897175px;}
.y58_c00374{bottom:882.132210px;}
.y57_c00374{bottom:882.601734px;}
.y56_c00374{bottom:882.831177px;}
.y55_c00374{bottom:883.375338px;}
.y54_c00374{bottom:884.297541px;}
.y53_c00374{bottom:884.527680px;}
.y52_c00374{bottom:885.068697px;}
.y51_c00374{bottom:885.295251px;}
.y50_c00374{bottom:885.586371px;}
.y4e_c00374{bottom:917.138313px;}
.y4c_c00374{bottom:917.138544px;}
.y4f_c00374{bottom:917.138775px;}
.y4a_c00374{bottom:917.138838px;}
.y49_c00374{bottom:917.138931px;}
.y4b_c00374{bottom:917.138940px;}
.y48_c00374{bottom:917.138949px;}
.y4d_c00374{bottom:917.139009px;}
.y47_c00374{bottom:917.139507px;}
.y46_c00374{bottom:917.139822px;}
.y45_c00374{bottom:917.140455px;}
.y44_c00374{bottom:950.268885px;}
.y43_c00374{bottom:950.677029px;}
.y42_c00374{bottom:951.206673px;}
.y41_c00374{bottom:951.409194px;}
.y40_c00374{bottom:951.742395px;}
.y3f_c00374{bottom:951.947217px;}
.y3e_c00374{bottom:952.531776px;}
.y3d_c00374{bottom:952.809747px;}
.y3c_c00374{bottom:953.003910px;}
.y3b_c00374{bottom:953.661258px;}
.y3a_c00374{bottom:953.984121px;}
.y39_c00374{bottom:954.444120px;}
.y38_c00374{bottom:986.829921px;}
.y37_c00374{bottom:987.112755px;}
.y36_c00374{bottom:987.500178px;}
.y35_c00374{bottom:987.948474px;}
.y34_c00374{bottom:988.498920px;}
.y33_c00374{bottom:988.665423px;}
.y32_c00374{bottom:988.943082px;}
.y31_c00374{bottom:989.163792px;}
.y30_c00374{bottom:989.597868px;}
.y2f_c00374{bottom:989.813241px;}
.y2e_c00374{bottom:990.086406px;}
.y2d_c00374{bottom:1022.756847px;}
.y2c_c00374{bottom:1023.345519px;}
.y2b_c00374{bottom:1023.921633px;}
.y2a_c00374{bottom:1024.292556px;}
.y29_c00374{bottom:1025.056305px;}
.y28_c00374{bottom:1025.521308px;}
.y27_c00374{bottom:1026.451356px;}
.y26_c00374{bottom:1026.920181px;}
.y25_c00374{bottom:1027.389111px;}
.y24_c00374{bottom:1027.853316px;}
.y23_c00374{bottom:1029.071211px;}
.y22_c00374{bottom:1030.323000px;}
.y21_c00374{bottom:1060.222059px;}
.y20_c00374{bottom:1062.793485px;}
.y1f_c00374{bottom:1063.159157px;}
.y1e_c00374{bottom:1063.892685px;}
.y1d_c00374{bottom:1064.255003px;}
.y1c_c00374{bottom:1065.098862px;}
.y1b_c00374{bottom:1065.590937px;}
.y1a_c00374{bottom:1066.295210px;}
.y19_c00374{bottom:1066.767409px;}
.y18_c00374{bottom:1095.801308px;}
.y17_c00374{bottom:1096.075075px;}
.y16_c00374{bottom:1096.545985px;}
.y15_c00374{bottom:1096.804507px;}
.y14_c00374{bottom:1097.143558px;}
.y13_c00374{bottom:1097.478707px;}
.y12_c00374{bottom:1098.010545px;}
.y11_c00374{bottom:1098.400747px;}
.y10_c00374{bottom:1098.926770px;}
.yf_c00374{bottom:1099.199405px;}
.ye_c00374{bottom:1099.707427px;}
.yd_c00374{bottom:1129.287108px;}
.yc_c00374{bottom:1129.870314px;}
.yb_c00374{bottom:1131.028751px;}
.ya_c00374{bottom:1131.741397px;}
.y9_c00374{bottom:1132.460987px;}
.y8_c00374{bottom:1133.331759px;}
.y7_c00374{bottom:1133.770021px;}
.y6_c00374{bottom:1135.353714px;}
.y5_c00374{bottom:1135.918921px;}
.y4_c00374{bottom:1137.069694px;}
.y3_c00374{bottom:1137.620628px;}
.y2_c00374{bottom:1138.051500px;}
.y1_c00374{bottom:1192.549500px;}
.h2_c00374{height:24.000000px;}
.hc_c00374{height:54.000000px;}
.h3_c00374{height:66.005577px;}
.h6_c00374{height:72.007056px;}
.h4_c00374{height:78.006591px;}
.h7_c00374{height:78.007644px;}
.hb_c00374{height:84.003402px;}
.h8_c00374{height:84.008232px;}
.h5_c00374{height:90.007605px;}
.ha_c00374{height:90.008820px;}
.h9_c00374{height:96.009408px;}
.hd_c00374{height:102.000000px;}
.he_c00374{height:120.000000px;}
.h0_c00374{height:1251.450000px;}
.h1_c00374{height:1251.750000px;}
.w0_c00374{width:915.000000px;}
.x0_c00374{left:0.000000px;}
.xcc_c00374{left:138.240000px;}
.xb7_c00374{left:141.902553px;}
.x7e_c00374{left:142.979643px;}
.x5a_c00374{left:144.550821px;}
.x4e_c00374{left:145.957848px;}
.x2f_c00374{left:147.050610px;}
.x3_c00374{left:148.156500px;}
.xf_c00374{left:149.240794px;}
.xcd_c00374{left:173.880000px;}
.x87_c00374{left:175.085748px;}
.x6b_c00374{left:176.085966px;}
.x4f_c00374{left:178.836924px;}
.x4_c00374{left:181.300500px;}
.x95_c00374{left:186.176028px;}
.x46_c00374{left:188.025108px;}
.x3d_c00374{left:189.724578px;}
.x19_c00374{left:191.599667px;}
.xab_c00374{left:195.839547px;}
.x55_c00374{left:199.349169px;}
.x28_c00374{left:202.154979px;}
.x8e_c00374{left:207.216291px;}
.x88_c00374{left:208.512693px;}
.xce_c00374{left:210.330000px;}
.xa5_c00374{left:217.985712px;}
.x3e_c00374{left:222.088749px;}
.x5_c00374{left:223.680000px;}
.x71_c00374{left:230.332731px;}
.x10_c00374{left:234.019517px;}
.xc0_c00374{left:238.220097px;}
.x9d_c00374{left:239.331738px;}
.x7f_c00374{left:240.601143px;}
.x29_c00374{left:245.079876px;}
.xcf_c00374{left:249.750000px;}
.xa6_c00374{left:250.800537px;}
.x61_c00374{left:252.859032px;}
.x1a_c00374{left:255.583824px;}
.x96_c00374{left:262.191528px;}
.xc1_c00374{left:270.501426px;}
.x80_c00374{left:273.158643px;}
.x5b_c00374{left:274.934667px;}
.x30_c00374{left:277.448205px;}
.x11_c00374{left:279.341631px;}
.xb8_c00374{left:282.909261px;}
.x6c_c00374{left:284.663511px;}
.xb1_c00374{left:293.724777px;}
.x56_c00374{left:297.114399px;}
.x3f_c00374{left:299.311809px;}
.x1b_c00374{left:300.359994px;}
.xa7_c00374{left:305.013468px;}
.x5c_c00374{left:308.040243px;}
.x6_c00374{left:312.201000px;}
.x81_c00374{left:316.718643px;}
.x72_c00374{left:318.111231px;}
.x50_c00374{left:320.045976px;}
.xc7_c00374{left:325.114500px;}
.xb2_c00374{left:327.495294px;}
.x78_c00374{left:329.899638px;}
.x2a_c00374{left:332.024838px;}
.x8f_c00374{left:338.326116px;}
.x62_c00374{left:340.047861px;}
.x1f_c00374{left:345.127500px;}
.xac_c00374{left:348.733290px;}
.x66_c00374{left:351.316824px;}
.x47_c00374{left:354.360270px;}
.x7_c00374{left:355.678500px;}
.xc2_c00374{left:358.571295px;}
.x9e_c00374{left:360.283701px;}
.x89_c00374{left:361.599477px;}
.x6d_c00374{left:362.664195px;}
.x38_c00374{left:365.047659px;}
.x12_c00374{left:367.120626px;}
.xd0_c00374{left:369.900000px;}
.x97_c00374{left:371.526528px;}
.x1c_c00374{left:377.043483px;}
.x31_c00374{left:387.092490px;}
.x8a_c00374{left:393.236859px;}
.x73_c00374{left:394.533231px;}
.x51_c00374{left:397.488813px;}
.x39_c00374{left:399.341379px;}
.xd3_c00374{left:402.300000px;}
.xad_c00374{left:403.519881px;}
.x90_c00374{left:405.849726px;}
.x48_c00374{left:408.097782px;}
.x1_c00374{left:410.940000px;}
.xb9_c00374{left:414.138561px;}
.x98_c00374{left:416.916528px;}
.x74_c00374{left:417.990231px;}
.x32_c00374{left:419.500623px;}
.xd4_c00374{left:424.710000px;}
.xa8_c00374{left:426.226881px;}
.x52_c00374{left:430.976868px;}
.x13_c00374{left:432.219054px;}
.x2_c00374{left:435.780000px;}
.x9f_c00374{left:437.764119px;}
.x82_c00374{left:439.625643px;}
.x63_c00374{left:440.769324px;}
.xc3_c00374{left:447.359601px;}
.x6e_c00374{left:450.923673px;}
.x49_c00374{left:453.703563px;}
.xd5_c00374{left:457.380000px;}
.x40_c00374{left:464.030958px;}
.x20_c00374{left:465.277500px;}
.xd1_c00374{left:468.720000px;}
.x79_c00374{left:472.476678px;}
.x57_c00374{left:473.985855px;}
.x8_c00374{left:477.501000px;}
.xc4_c00374{left:480.327867px;}
.x75_c00374{left:483.889731px;}
.x83_c00374{left:493.897143px;}
.x58_c00374{left:496.648485px;}
.x21_c00374{left:498.772500px;}
.x7a_c00374{left:505.170024px;}
.x1d_c00374{left:509.894435px;}
.x9_c00374{left:511.213500px;}
.x6f_c00374{left:516.865521px;}
.x67_c00374{left:519.010176px;}
.x14_c00374{left:520.791608px;}
.xd6_c00374{left:524.070000px;}
.xa0_c00374{left:525.542772px;}
.x91_c00374{left:526.890345px;}
.x53_c00374{left:530.338596px;}
.x22_c00374{left:532.260000px;}
.xd2_c00374{left:534.870000px;}
.xba_c00374{left:535.998432px;}
.x3a_c00374{left:542.725977px;}
.xae_c00374{left:547.203300px;}
.x64_c00374{left:550.440543px;}
.x5d_c00374{left:551.937918px;}
.x4a_c00374{left:553.351356px;}
.x8b_c00374{left:559.867521px;}
.x33_c00374{left:563.411751px;}
.xc8_c00374{left:569.259000px;}
.x92_c00374{left:570.915606px;}
.x65_c00374{left:573.399975px;}
.x2b_c00374{left:575.292498px;}
.x15_c00374{left:576.692697px;}
.xa_c00374{left:578.196000px;}
.xbb_c00374{left:580.231476px;}
.x7b_c00374{left:582.660351px;}
.x68_c00374{left:584.916600px;}
.xc5_c00374{left:591.873426px;}
.x34_c00374{left:597.438552px;}
.x23_c00374{left:598.692000px;}
.xaf_c00374{left:602.573328px;}
.x84_c00374{left:605.137143px;}
.x3b_c00374{left:607.802724px;}
.xbc_c00374{left:614.280654px;}
.x8c_c00374{left:616.818117px;}
.x4b_c00374{left:618.708183px;}
.xb3_c00374{left:624.911136px;}
.xa1_c00374{left:626.013807px;}
.x24_c00374{left:631.906500px;}
.xb_c00374{left:633.549000px;}
.x99_c00374{left:637.331028px;}
.x7c_c00374{left:638.811072px;}
.x41_c00374{left:641.450325px;}
.x35_c00374{left:653.066289px;}
.x76_c00374{left:660.783231px;}
.x5e_c00374{left:663.786789px;}
.x2c_c00374{left:664.967796px;}
.xc9_c00374{left:669.192000px;}
.x7d_c00374{left:671.534418px;}
.x42_c00374{left:674.956101px;}
.x16_c00374{left:676.322764px;}
.xb4_c00374{left:681.043359px;}
.x9a_c00374{left:682.154028px;}
.x70_c00374{left:684.612204px;}
.x25_c00374{left:686.460000px;}
.xc_c00374{left:688.368000px;}
.xbd_c00374{left:691.553502px;}
.xa2_c00374{left:692.726469px;}
.x59_c00374{left:696.692592px;}
.x43_c00374{left:698.161869px;}
.xb0_c00374{left:703.063665px;}
.x69_c00374{left:706.979301px;}
.x26_c00374{left:712.954500px;}
.xb5_c00374{left:715.659876px;}
.x5f_c00374{left:717.747777px;}
.x4c_c00374{left:719.465997px;}
.xca_c00374{left:724.866000px;}
.x93_c00374{left:727.011738px;}
.x6a_c00374{left:740.239263px;}
.x2d_c00374{left:742.472061px;}
.x1e_c00374{left:743.702518px;}
.xcb_c00374{left:747.250500px;}
.xc6_c00374{left:748.273596px;}
.x9b_c00374{left:749.393028px;}
.x4d_c00374{left:751.952400px;}
.x3c_c00374{left:753.347742px;}
.x17_c00374{left:754.899921px;}
.xa9_c00374{left:759.563022px;}
.xa3_c00374{left:760.799736px;}
.x85_c00374{left:762.079143px;}
.x77_c00374{left:773.655231px;}
.x36_c00374{left:775.127460px;}
.xd_c00374{left:777.478500px;}
.xbe_c00374{left:781.763901px;}
.x9c_c00374{left:783.158028px;}
.x44_c00374{left:785.404416px;}
.x8d_c00374{left:794.807115px;}
.x27_c00374{left:796.153500px;}
.x2e_c00374{left:799.110201px;}
.x18_c00374{left:800.540074px;}
.xa4_c00374{left:804.820323px;}
.x86_c00374{left:805.822143px;}
.x45_c00374{left:809.166747px;}
.xb6_c00374{left:815.280990px;}
.x54_c00374{left:819.004032px;}
.xe_c00374{left:822.340500px;}
.xaa_c00374{left:826.179567px;}
.x94_c00374{left:828.570903px;}
.x60_c00374{left:829.802148px;}
.xbf_c00374{left:837.092706px;}
.x37_c00374{left:843.181083px;}
@media print{
.v0_c00374{vertical-align:0.000000pt;}
.ls0_c00374{letter-spacing:0.000000pt;}
.ws0_c00374{word-spacing:0.000000pt;}
.fs0_c00374{font-size:21.333333pt;}
.fsa_c00374{font-size:48.000000pt;}
.fs1_c00374{font-size:58.671624pt;}
.fs4_c00374{font-size:64.006272pt;}
.fs2_c00374{font-size:69.339192pt;}
.fs5_c00374{font-size:69.340128pt;}
.fs9_c00374{font-size:74.669691pt;}
.fs6_c00374{font-size:74.673984pt;}
.fs3_c00374{font-size:80.006760pt;}
.fs8_c00374{font-size:80.007840pt;}
.fs7_c00374{font-size:85.341696pt;}
.fsb_c00374{font-size:90.666667pt;}
.fsc_c00374{font-size:106.666667pt;}
.y0_c00374{bottom:0.000000pt;}
.y149_c00374{bottom:67.226667pt;}
.y148_c00374{bottom:100.912000pt;}
.y147_c00374{bottom:125.404000pt;}
.y146_c00374{bottom:142.995925pt;}
.y145_c00374{bottom:143.175001pt;}
.y144_c00374{bottom:143.620393pt;}
.y143_c00374{bottom:144.065413pt;}
.y142_c00374{bottom:144.419857pt;}
.y141_c00374{bottom:144.683461pt;}
.y140_c00374{bottom:145.750789pt;}
.y13f_c00374{bottom:146.373013pt;}
.y13e_c00374{bottom:146.807197pt;}
.y13d_c00374{bottom:147.065941pt;}
.y13c_c00374{bottom:147.841333pt;}
.y13b_c00374{bottom:178.022117pt;}
.y13a_c00374{bottom:179.671309pt;}
.y139_c00374{bottom:180.522589pt;}
.y138_c00374{bottom:181.975576pt;}
.y137_c00374{bottom:182.591147pt;}
.y136_c00374{bottom:183.442632pt;}
.y135_c00374{bottom:184.674072pt;}
.y134_c00374{bottom:185.289717pt;}
.y133_c00374{bottom:185.903040pt;}
.y132_c00374{bottom:186.946747pt;}
.y131_c00374{bottom:188.590835pt;}
.y130_c00374{bottom:189.193931pt;}
.y12f_c00374{bottom:190.977888pt;}
.y12e_c00374{bottom:209.785456pt;}
.y12d_c00374{bottom:210.867403pt;}
.y12c_c00374{bottom:212.631480pt;}
.y12b_c00374{bottom:214.142539pt;}
.y12a_c00374{bottom:214.808976pt;}
.y129_c00374{bottom:215.674160pt;}
.y128_c00374{bottom:216.514779pt;}
.y127_c00374{bottom:218.056141pt;}
.y126_c00374{bottom:218.891395pt;}
.y125_c00374{bottom:219.555976pt;}
.y124_c00374{bottom:220.622733pt;}
.y123_c00374{bottom:221.492387pt;}
.y122_c00374{bottom:223.380347pt;}
.y121_c00374{bottom:240.334824pt;}
.y120_c00374{bottom:241.662571pt;}
.y11f_c00374{bottom:242.124027pt;}
.y11e_c00374{bottom:242.871904pt;}
.y11d_c00374{bottom:244.478381pt;}
.y11c_c00374{bottom:245.372072pt;}
.y11b_c00374{bottom:245.818101pt;}
.y11a_c00374{bottom:246.837131pt;}
.y119_c00374{bottom:247.288059pt;}
.y118_c00374{bottom:248.453061pt;}
.y117_c00374{bottom:249.300883pt;}
.y116_c00374{bottom:270.530160pt;}
.y115_c00374{bottom:272.637363pt;}
.y114_c00374{bottom:274.692067pt;}
.y113_c00374{bottom:275.823869pt;}
.y112_c00374{bottom:278.080981pt;}
.y111_c00374{bottom:278.760155pt;}
.y110_c00374{bottom:279.880696pt;}
.y10f_c00374{bottom:282.120744pt;}
.y10e_c00374{bottom:283.006280pt;}
.y10d_c00374{bottom:284.103208pt;}
.y10c_c00374{bottom:302.660771pt;}
.y10b_c00374{bottom:303.963203pt;}
.y10a_c00374{bottom:305.913141pt;}
.y109_c00374{bottom:306.580456pt;}
.y108_c00374{bottom:308.538232pt;}
.y107_c00374{bottom:309.171912pt;}
.y106_c00374{bottom:310.483851pt;}
.y105_c00374{bottom:311.128176pt;}
.y104_c00374{bottom:312.855120pt;}
.y103_c00374{bottom:313.488651pt;}
.y102_c00374{bottom:313.915179pt;}
.y101_c00374{bottom:314.556920pt;}
.y100_c00374{bottom:316.028317pt;}
.yff_c00374{bottom:334.980856pt;}
.yfe_c00374{bottom:335.332629pt;}
.yfd_c00374{bottom:335.877037pt;}
.yfc_c00374{bottom:336.411181pt;}
.yfb_c00374{bottom:337.214733pt;}
.yfa_c00374{bottom:337.916347pt;}
.yf9_c00374{bottom:338.177573pt;}
.yf8_c00374{bottom:338.536480pt;}
.yf7_c00374{bottom:339.234096pt;}
.yf6_c00374{bottom:339.504221pt;}
.yf5_c00374{bottom:340.269419pt;}
.yf4_c00374{bottom:368.063528pt;}
.yf3_c00374{bottom:368.483715pt;}
.yf2_c00374{bottom:369.320467pt;}
.yf1_c00374{bottom:369.878264pt;}
.yf0_c00374{bottom:370.701987pt;}
.yef_c00374{bottom:371.250077pt;}
.yee_c00374{bottom:371.939045pt;}
.yed_c00374{bottom:372.621200pt;}
.yec_c00374{bottom:373.186053pt;}
.yeb_c00374{bottom:373.589160pt;}
.yea_c00374{bottom:374.546667pt;}
.ye9_c00374{bottom:375.221541pt;}
.ye8_c00374{bottom:375.492637pt;}
.ye7_c00374{bottom:376.033691pt;}
.ye6_c00374{bottom:401.338355pt;}
.ye5_c00374{bottom:401.661845pt;}
.ye4_c00374{bottom:402.782237pt;}
.ye3_c00374{bottom:403.565459pt;}
.ye2_c00374{bottom:404.042472pt;}
.ye1_c00374{bottom:405.002155pt;}
.ye0_c00374{bottom:405.628707pt;}
.ydf_c00374{bottom:407.349699pt;}
.yde_c00374{bottom:408.310016pt;}
.ydd_c00374{bottom:409.535003pt;}
.ydc_c00374{bottom:410.174984pt;}
.ydb_c00374{bottom:410.620595pt;}
.yda_c00374{bottom:411.077077pt;}
.yd9_c00374{bottom:433.764045pt;}
.yd8_c00374{bottom:434.127536pt;}
.yd7_c00374{bottom:434.483747pt;}
.yd6_c00374{bottom:435.068717pt;}
.yd5_c00374{bottom:436.025115pt;}
.yd4_c00374{bottom:436.388195pt;}
.yd3_c00374{bottom:436.632480pt;}
.yd2_c00374{bottom:437.451411pt;}
.yd1_c00374{bottom:438.410048pt;}
.yd0_c00374{bottom:438.747747pt;}
.ycf_c00374{bottom:440.380773pt;}
.yce_c00374{bottom:440.736741pt;}
.ycd_c00374{bottom:441.078539pt;}
.ycc_c00374{bottom:463.553587pt;}
.ycb_c00374{bottom:464.097944pt;}
.yca_c00374{bottom:465.640688pt;}
.yc9_c00374{bottom:466.051000pt;}
.yc8_c00374{bottom:466.336003pt;}
.yc7_c00374{bottom:467.435320pt;}
.yc6_c00374{bottom:468.110699pt;}
.yc5_c00374{bottom:468.668552pt;}
.yc4_c00374{bottom:469.640208pt;}
.yc3_c00374{bottom:470.182288pt;}
.yc2_c00374{bottom:470.587448pt;}
.yc1_c00374{bottom:471.245616pt;}
.yc0_c00374{bottom:471.802293pt;}
.ybf_c00374{bottom:495.853576pt;}
.ybe_c00374{bottom:498.931328pt;}
.ybd_c00374{bottom:499.570597pt;}
.ybc_c00374{bottom:500.668107pt;}
.ybb_c00374{bottom:502.183205pt;}
.yba_c00374{bottom:502.822101pt;}
.yb9_c00374{bottom:503.904571pt;}
.yb8_c00374{bottom:505.609925pt;}
.yb7_c00374{bottom:506.695819pt;}
.yb6_c00374{bottom:508.622181pt;}
.yb5_c00374{bottom:509.241960pt;}
.yb4_c00374{bottom:527.336973pt;}
.yb3_c00374{bottom:528.741603pt;}
.yb2_c00374{bottom:529.689216pt;}
.yb1_c00374{bottom:530.942944pt;}
.yb0_c00374{bottom:531.763027pt;}
.yaf_c00374{bottom:532.054936pt;}
.yae_c00374{bottom:533.005965pt;}
.yad_c00374{bottom:534.098320pt;}
.yac_c00374{bottom:534.494109pt;}
.yab_c00374{bottom:535.166557pt;}
.yaa_c00374{bottom:558.690768pt;}
.ya9_c00374{bottom:559.047576pt;}
.ya8_c00374{bottom:559.401797pt;}
.ya7_c00374{bottom:560.468093pt;}
.ya6_c00374{bottom:561.191920pt;}
.ya5_c00374{bottom:561.895173pt;}
.ya4_c00374{bottom:562.836149pt;}
.ya3_c00374{bottom:563.424405pt;}
.ya2_c00374{bottom:563.668131pt;}
.ya1_c00374{bottom:564.825947pt;}
.ya0_c00374{bottom:565.167576pt;}
.y9f_c00374{bottom:590.038587pt;}
.y9e_c00374{bottom:590.687816pt;}
.y9d_c00374{bottom:591.072379pt;}
.y9c_c00374{bottom:591.840328pt;}
.y9b_c00374{bottom:592.483360pt;}
.y9a_c00374{bottom:593.244851pt;}
.y99_c00374{bottom:594.158757pt;}
.y98_c00374{bottom:595.182339pt;}
.y97_c00374{bottom:595.813227pt;}
.y96_c00374{bottom:597.067573pt;}
.y95_c00374{bottom:597.572573pt;}
.y94_c00374{bottom:621.979227pt;}
.y93_c00374{bottom:622.534491pt;}
.y92_c00374{bottom:623.317632pt;}
.y91_c00374{bottom:623.799453pt;}
.y90_c00374{bottom:623.962480pt;}
.y8f_c00374{bottom:624.507872pt;}
.y8e_c00374{bottom:624.741829pt;}
.y8d_c00374{bottom:625.457813pt;}
.y8c_c00374{bottom:625.762776pt;}
.y8b_c00374{bottom:626.077405pt;}
.y8a_c00374{bottom:626.853493pt;}
.y89_c00374{bottom:653.832515pt;}
.y88_c00374{bottom:654.946216pt;}
.y87_c00374{bottom:655.425675pt;}
.y86_c00374{bottom:656.193208pt;}
.y85_c00374{bottom:657.783811pt;}
.y84_c00374{bottom:658.574712pt;}
.y83_c00374{bottom:659.042925pt;}
.y82_c00374{bottom:661.252400pt;}
.y81_c00374{bottom:661.723059pt;}
.y80_c00374{bottom:662.461056pt;}
.y7f_c00374{bottom:663.577659pt;}
.y7e_c00374{bottom:686.399787pt;}
.y7d_c00374{bottom:687.123203pt;}
.y7c_c00374{bottom:687.477909pt;}
.y7b_c00374{bottom:687.713971pt;}
.y7a_c00374{bottom:688.770680pt;}
.y79_c00374{bottom:689.847339pt;}
.y78_c00374{bottom:690.089355pt;}
.y77_c00374{bottom:691.020696pt;}
.y76_c00374{bottom:691.728571pt;}
.y75_c00374{bottom:691.975693pt;}
.y74_c00374{bottom:693.018960pt;}
.y73_c00374{bottom:693.580099pt;}
.y72_c00374{bottom:719.051645pt;}
.y71_c00374{bottom:719.523480pt;}
.y70_c00374{bottom:720.782856pt;}
.y6f_c00374{bottom:721.416221pt;}
.y6e_c00374{bottom:722.045368pt;}
.y6d_c00374{bottom:723.156027pt;}
.y6c_c00374{bottom:724.568563pt;}
.y6b_c00374{bottom:725.045315pt;}
.y6a_c00374{bottom:726.146408pt;}
.y69_c00374{bottom:726.757003pt;}
.y68_c00374{bottom:728.154392pt;}
.y67_c00374{bottom:728.622232pt;}
.y66_c00374{bottom:752.169725pt;}
.y65_c00374{bottom:752.516656pt;}
.y64_c00374{bottom:753.591829pt;}
.y63_c00374{bottom:754.289136pt;}
.y62_c00374{bottom:755.351829pt;}
.y61_c00374{bottom:755.838019pt;}
.y60_c00374{bottom:756.410733pt;}
.y5f_c00374{bottom:756.995835pt;}
.y5e_c00374{bottom:758.184624pt;}
.y5d_c00374{bottom:758.624736pt;}
.y5c_c00374{bottom:783.073253pt;}
.y5b_c00374{bottom:783.220933pt;}
.y5a_c00374{bottom:783.763845pt;}
.y59_c00374{bottom:783.908600pt;}
.y58_c00374{bottom:784.117520pt;}
.y57_c00374{bottom:784.534875pt;}
.y56_c00374{bottom:784.738824pt;}
.y55_c00374{bottom:785.222523pt;}
.y54_c00374{bottom:786.042259pt;}
.y53_c00374{bottom:786.246827pt;}
.y52_c00374{bottom:786.727731pt;}
.y51_c00374{bottom:786.929112pt;}
.y50_c00374{bottom:787.187885pt;}
.y4e_c00374{bottom:815.234056pt;}
.y4c_c00374{bottom:815.234261pt;}
.y4f_c00374{bottom:815.234467pt;}
.y4a_c00374{bottom:815.234523pt;}
.y49_c00374{bottom:815.234605pt;}
.y4b_c00374{bottom:815.234613pt;}
.y48_c00374{bottom:815.234621pt;}
.y4d_c00374{bottom:815.234675pt;}
.y47_c00374{bottom:815.235117pt;}
.y46_c00374{bottom:815.235397pt;}
.y45_c00374{bottom:815.235960pt;}
.y44_c00374{bottom:844.683453pt;}
.y43_c00374{bottom:845.046248pt;}
.y42_c00374{bottom:845.517043pt;}
.y41_c00374{bottom:845.697061pt;}
.y40_c00374{bottom:845.993240pt;}
.y3f_c00374{bottom:846.175304pt;}
.y3e_c00374{bottom:846.694912pt;}
.y3d_c00374{bottom:846.941997pt;}
.y3c_c00374{bottom:847.114587pt;}
.y3b_c00374{bottom:847.698896pt;}
.y3a_c00374{bottom:847.985885pt;}
.y39_c00374{bottom:848.394773pt;}
.y38_c00374{bottom:877.182152pt;}
.y37_c00374{bottom:877.433560pt;}
.y36_c00374{bottom:877.777936pt;}
.y35_c00374{bottom:878.176421pt;}
.y34_c00374{bottom:878.665707pt;}
.y33_c00374{bottom:878.813709pt;}
.y32_c00374{bottom:879.060517pt;}
.y31_c00374{bottom:879.256704pt;}
.y30_c00374{bottom:879.642549pt;}
.y2f_c00374{bottom:879.833992pt;}
.y2e_c00374{bottom:880.076805pt;}
.y2d_c00374{bottom:909.117197pt;}
.y2c_c00374{bottom:909.640461pt;}
.y2b_c00374{bottom:910.152563pt;}
.y2a_c00374{bottom:910.482272pt;}
.y29_c00374{bottom:911.161160pt;}
.y28_c00374{bottom:911.574496pt;}
.y27_c00374{bottom:912.401205pt;}
.y26_c00374{bottom:912.817939pt;}
.y25_c00374{bottom:913.234765pt;}
.y24_c00374{bottom:913.647392pt;}
.y23_c00374{bottom:914.729965pt;}
.y22_c00374{bottom:915.842667pt;}
.y21_c00374{bottom:942.419608pt;}
.y20_c00374{bottom:944.705320pt;}
.y1f_c00374{bottom:945.030361pt;}
.y1e_c00374{bottom:945.682387pt;}
.y1d_c00374{bottom:946.004447pt;}
.y1c_c00374{bottom:946.754544pt;}
.y1b_c00374{bottom:947.191944pt;}
.y1a_c00374{bottom:947.817964pt;}
.y19_c00374{bottom:948.237697pt;}
.y18_c00374{bottom:974.045607pt;}
.y17_c00374{bottom:974.288956pt;}
.y16_c00374{bottom:974.707543pt;}
.y15_c00374{bottom:974.937340pt;}
.y14_c00374{bottom:975.238719pt;}
.y13_c00374{bottom:975.536628pt;}
.y12_c00374{bottom:976.009373pt;}
.y11_c00374{bottom:976.356220pt;}
.y10_c00374{bottom:976.823796pt;}
.yf_c00374{bottom:977.066137pt;}
.ye_c00374{bottom:977.517713pt;}
.yd_c00374{bottom:1003.810763pt;}
.yc_c00374{bottom:1004.329168pt;}
.yb_c00374{bottom:1005.358889pt;}
.ya_c00374{bottom:1005.992353pt;}
.y9_c00374{bottom:1006.631988pt;}
.y8_c00374{bottom:1007.406008pt;}
.y7_c00374{bottom:1007.795575pt;}
.y6_c00374{bottom:1009.203301pt;}
.y5_c00374{bottom:1009.705708pt;}
.y4_c00374{bottom:1010.728617pt;}
.y3_c00374{bottom:1011.218336pt;}
.y2_c00374{bottom:1011.601333pt;}
.y1_c00374{bottom:1060.044000pt;}
.h2_c00374{height:21.333333pt;}
.hc_c00374{height:48.000000pt;}
.h3_c00374{height:58.671624pt;}
.h6_c00374{height:64.006272pt;}
.h4_c00374{height:69.339192pt;}
.h7_c00374{height:69.340128pt;}
.hb_c00374{height:74.669691pt;}
.h8_c00374{height:74.673984pt;}
.h5_c00374{height:80.006760pt;}
.ha_c00374{height:80.007840pt;}
.h9_c00374{height:85.341696pt;}
.hd_c00374{height:90.666667pt;}
.he_c00374{height:106.666667pt;}
.h0_c00374{height:1112.400000pt;}
.h1_c00374{height:1112.666667pt;}
.w0_c00374{width:813.333333pt;}
.x0_c00374{left:0.000000pt;}
.xcc_c00374{left:122.880000pt;}
.xb7_c00374{left:126.135603pt;}
.x7e_c00374{left:127.093016pt;}
.x5a_c00374{left:128.489619pt;}
.x4e_c00374{left:129.740309pt;}
.x2f_c00374{left:130.711653pt;}
.x3_c00374{left:131.694667pt;}
.xf_c00374{left:132.658484pt;}
.xcd_c00374{left:154.560000pt;}
.x87_c00374{left:155.631776pt;}
.x6b_c00374{left:156.520859pt;}
.x4f_c00374{left:158.966155pt;}
.x4_c00374{left:161.156000pt;}
.x95_c00374{left:165.489803pt;}
.x46_c00374{left:167.133429pt;}
.x3d_c00374{left:168.644069pt;}
.x19_c00374{left:170.310815pt;}
.xab_c00374{left:174.079597pt;}
.x55_c00374{left:177.199261pt;}
.x28_c00374{left:179.693315pt;}
.x8e_c00374{left:184.192259pt;}
.x88_c00374{left:185.344616pt;}
.xce_c00374{left:186.960000pt;}
.xa5_c00374{left:193.765077pt;}
.x3e_c00374{left:197.412221pt;}
.x5_c00374{left:198.826667pt;}
.x71_c00374{left:204.740205pt;}
.x10_c00374{left:208.017348pt;}
.xc0_c00374{left:211.751197pt;}
.x9d_c00374{left:212.739323pt;}
.x7f_c00374{left:213.867683pt;}
.x29_c00374{left:217.848779pt;}
.xcf_c00374{left:222.000000pt;}
.xa6_c00374{left:222.933811pt;}
.x61_c00374{left:224.763584pt;}
.x1a_c00374{left:227.185621pt;}
.x96_c00374{left:233.059136pt;}
.xc1_c00374{left:240.445712pt;}
.x80_c00374{left:242.807683pt;}
.x5b_c00374{left:244.386371pt;}
.x30_c00374{left:246.620627pt;}
.x11_c00374{left:248.303672pt;}
.xb8_c00374{left:251.474899pt;}
.x6c_c00374{left:253.034232pt;}
.xb1_c00374{left:261.088691pt;}
.x56_c00374{left:264.101688pt;}
.x3f_c00374{left:266.054941pt;}
.x1b_c00374{left:266.986661pt;}
.xa7_c00374{left:271.123083pt;}
.x5c_c00374{left:273.813549pt;}
.x6_c00374{left:277.512000pt;}
.x81_c00374{left:281.527683pt;}
.x72_c00374{left:282.765539pt;}
.x50_c00374{left:284.485312pt;}
.xc7_c00374{left:288.990667pt;}
.xb2_c00374{left:291.106928pt;}
.x78_c00374{left:293.244123pt;}
.x2a_c00374{left:295.133189pt;}
.x8f_c00374{left:300.734325pt;}
.x62_c00374{left:302.264765pt;}
.x1f_c00374{left:306.780000pt;}
.xac_c00374{left:309.985147pt;}
.x66_c00374{left:312.281621pt;}
.x47_c00374{left:314.986907pt;}
.x7_c00374{left:316.158667pt;}
.xc2_c00374{left:318.730040pt;}
.x9e_c00374{left:320.252179pt;}
.x89_c00374{left:321.421757pt;}
.x6d_c00374{left:322.368173pt;}
.x38_c00374{left:324.486808pt;}
.x12_c00374{left:326.329445pt;}
.xd0_c00374{left:328.800000pt;}
.x97_c00374{left:330.245803pt;}
.x1c_c00374{left:335.149763pt;}
.x31_c00374{left:344.082213pt;}
.x8a_c00374{left:349.543875pt;}
.x73_c00374{left:350.696205pt;}
.x51_c00374{left:353.323389pt;}
.x39_c00374{left:354.970115pt;}
.xd3_c00374{left:357.600000pt;}
.xad_c00374{left:358.684339pt;}
.x90_c00374{left:360.755312pt;}
.x48_c00374{left:362.753584pt;}
.x1_c00374{left:365.280000pt;}
.xb9_c00374{left:368.123165pt;}
.x98_c00374{left:370.592469pt;}
.x74_c00374{left:371.546872pt;}
.x32_c00374{left:372.889443pt;}
.xd4_c00374{left:377.520000pt;}
.xa8_c00374{left:378.868339pt;}
.x52_c00374{left:383.090549pt;}
.x13_c00374{left:384.194715pt;}
.x2_c00374{left:387.360000pt;}
.x9f_c00374{left:389.123661pt;}
.x82_c00374{left:390.778349pt;}
.x63_c00374{left:391.794955pt;}
.xc3_c00374{left:397.652979pt;}
.x6e_c00374{left:400.821043pt;}
.x49_c00374{left:403.292056pt;}
.xd5_c00374{left:406.560000pt;}
.x40_c00374{left:412.471963pt;}
.x20_c00374{left:413.580000pt;}
.xd1_c00374{left:416.640000pt;}
.x79_c00374{left:419.979269pt;}
.x57_c00374{left:421.320760pt;}
.x8_c00374{left:424.445333pt;}
.xc4_c00374{left:426.958104pt;}
.x75_c00374{left:430.124205pt;}
.x83_c00374{left:439.019683pt;}
.x58_c00374{left:441.465320pt;}
.x21_c00374{left:443.353333pt;}
.x7a_c00374{left:449.040021pt;}
.x1d_c00374{left:453.239497pt;}
.x9_c00374{left:454.412000pt;}
.x6f_c00374{left:459.436019pt;}
.x67_c00374{left:461.342379pt;}
.x14_c00374{left:462.925873pt;}
.xd6_c00374{left:465.840000pt;}
.xa0_c00374{left:467.149131pt;}
.x91_c00374{left:468.346973pt;}
.x53_c00374{left:471.412085pt;}
.x22_c00374{left:473.120000pt;}
.xd2_c00374{left:475.440000pt;}
.xba_c00374{left:476.443051pt;}
.x3a_c00374{left:482.423091pt;}
.xae_c00374{left:486.402933pt;}
.x64_c00374{left:489.280483pt;}
.x5d_c00374{left:490.611483pt;}
.x4a_c00374{left:491.867872pt;}
.x8b_c00374{left:497.660019pt;}
.x33_c00374{left:500.810445pt;}
.xc8_c00374{left:506.008000pt;}
.x92_c00374{left:507.480539pt;}
.x65_c00374{left:509.688867pt;}
.x2b_c00374{left:511.371109pt;}
.x15_c00374{left:512.615731pt;}
.xa_c00374{left:513.952000pt;}
.xbb_c00374{left:515.761312pt;}
.x7b_c00374{left:517.920312pt;}
.x68_c00374{left:519.925867pt;}
.xc5_c00374{left:526.109712pt;}
.x34_c00374{left:531.056491pt;}
.x23_c00374{left:532.170667pt;}
.xaf_c00374{left:535.620736pt;}
.x84_c00374{left:537.899683pt;}
.x3b_c00374{left:540.269088pt;}
.xbc_c00374{left:546.027248pt;}
.x8c_c00374{left:548.282771pt;}
.x4b_c00374{left:549.962829pt;}
.xb3_c00374{left:555.476565pt;}
.xa1_c00374{left:556.456717pt;}
.x24_c00374{left:561.694667pt;}
.xb_c00374{left:563.154667pt;}
.x99_c00374{left:566.516469pt;}
.x7c_c00374{left:567.832064pt;}
.x41_c00374{left:570.178067pt;}
.x35_c00374{left:580.503368pt;}
.x76_c00374{left:587.362872pt;}
.x5e_c00374{left:590.032701pt;}
.x2c_c00374{left:591.082485pt;}
.xc9_c00374{left:594.837333pt;}
.x7d_c00374{left:596.919483pt;}
.x42_c00374{left:599.960979pt;}
.x16_c00374{left:601.175791pt;}
.xb4_c00374{left:605.371875pt;}
.x9a_c00374{left:606.359136pt;}
.x70_c00374{left:608.544181pt;}
.x25_c00374{left:610.186667pt;}
.xc_c00374{left:611.882667pt;}
.xbd_c00374{left:614.714224pt;}
.xa2_c00374{left:615.756861pt;}
.x59_c00374{left:619.282304pt;}
.x43_c00374{left:620.588328pt;}
.xb0_c00374{left:624.945480pt;}
.x69_c00374{left:628.426045pt;}
.x26_c00374{left:633.737333pt;}
.xb5_c00374{left:636.142112pt;}
.x5f_c00374{left:637.998024pt;}
.x4c_c00374{left:639.525331pt;}
.xca_c00374{left:644.325333pt;}
.x93_c00374{left:646.232656pt;}
.x6a_c00374{left:657.990456pt;}
.x2d_c00374{left:659.975165pt;}
.x1e_c00374{left:661.068905pt;}
.xcb_c00374{left:664.222667pt;}
.xc6_c00374{left:665.132085pt;}
.x9b_c00374{left:666.127136pt;}
.x4d_c00374{left:668.402133pt;}
.x3c_c00374{left:669.642437pt;}
.x17_c00374{left:671.022152pt;}
.xa9_c00374{left:675.167131pt;}
.xa3_c00374{left:676.266432pt;}
.x85_c00374{left:677.403683pt;}
.x77_c00374{left:687.693539pt;}
.x36_c00374{left:689.002187pt;}
.xd_c00374{left:691.092000pt;}
.xbe_c00374{left:694.901245pt;}
.x9c_c00374{left:696.140469pt;}
.x44_c00374{left:698.137259pt;}
.x8d_c00374{left:706.495213pt;}
.x27_c00374{left:707.692000pt;}
.x2e_c00374{left:710.320179pt;}
.x18_c00374{left:711.591177pt;}
.xa4_c00374{left:715.395843pt;}
.x86_c00374{left:716.286349pt;}
.x45_c00374{left:719.259331pt;}
.xb6_c00374{left:724.694213pt;}
.x54_c00374{left:728.003584pt;}
.xe_c00374{left:730.969333pt;}
.xaa_c00374{left:734.381837pt;}
.x94_c00374{left:736.507469pt;}
.x60_c00374{left:737.601909pt;}
.xbf_c00374{left:744.082405pt;}
.x37_c00374{left:749.494296pt;}
}





/* 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_c00375 {
    display:none;
  }
  .loading-indicator_c00375.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00375 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_c00375 { 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_c00375" -> "#page-container .classname_c00375")
 */
.pf_c00375 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00375 { /* 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_c00375.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00375 { /* 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_c00375 { /* 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_c00375 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00375 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00375 {overflow:visible;}
  }
}
.c_c00375 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00375 { /* 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_c00375:after { /* webkit #35443 */
  content: '';
}
.t_c00375:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00375 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 */
}
.__c00375 { /* 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_c00375 { /* info for Javascript */
  display:none;
}
.l_c00375 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00375 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00375 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00375: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_c00375 {
    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_c00375.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00375.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_c00375 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00375{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00375;src:url('chunks/assets/font_cfe63ee56e9e10a97d33a3db.woff2')format("woff");}.ff1_c00375{font-family:ff1_c00375;line-height:1.000000;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;}
.m87_c00375{transform:matrix(0.008485,0.000068,-0.002000,0.249992,0,0);-ms-transform:matrix(0.008485,0.000068,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.008485,0.000068,-0.002000,0.249992,0,0);}
.m47_c00375{transform:matrix(0.010605,0.000085,-0.002000,0.249992,0,0);-ms-transform:matrix(0.010605,0.000085,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.010605,0.000085,-0.002000,0.249992,0,0);}
.m9c_c00375{transform:matrix(0.014058,-0.000225,0.003999,0.249968,0,0);-ms-transform:matrix(0.014058,-0.000225,0.003999,0.249968,0,0);-webkit-transform:matrix(0.014058,-0.000225,0.003999,0.249968,0,0);}
.m17_c00375{transform:matrix(0.015000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.015000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.015000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00375{transform:matrix(0.020279,0.000162,-0.002000,0.249992,0,0);-ms-transform:matrix(0.020279,0.000162,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.020279,0.000162,-0.002000,0.249992,0,0);}
.mc_c00375{transform:matrix(0.024475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.024475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.024475,0.000000,0.000000,0.250000,0,0);}
.m38_c00375{transform:matrix(0.056878,0.000455,-0.002000,0.249992,0,0);-ms-transform:matrix(0.056878,0.000455,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.056878,0.000455,-0.002000,0.249992,0,0);}
.m5d_c00375{transform:matrix(0.158380,0.001267,-0.002000,0.249992,0,0);-ms-transform:matrix(0.158380,0.001267,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.158380,0.001267,-0.002000,0.249992,0,0);}
.m75_c00375{transform:matrix(0.170050,0.001360,-0.002000,0.249992,0,0);-ms-transform:matrix(0.170050,0.001360,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.170050,0.001360,-0.002000,0.249992,0,0);}
.m41_c00375{transform:matrix(0.171944,0.001376,-0.002000,0.249992,0,0);-ms-transform:matrix(0.171944,0.001376,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.171944,0.001376,-0.002000,0.249992,0,0);}
.m72_c00375{transform:matrix(0.182854,0.001463,-0.002000,0.249992,0,0);-ms-transform:matrix(0.182854,0.001463,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.182854,0.001463,-0.002000,0.249992,0,0);}
.m3c_c00375{transform:matrix(0.185124,0.001481,-0.002000,0.249992,0,0);-ms-transform:matrix(0.185124,0.001481,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.185124,0.001481,-0.002000,0.249992,0,0);}
.m71_c00375{transform:matrix(0.185624,0.001485,-0.002000,0.249992,0,0);-ms-transform:matrix(0.185624,0.001485,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.185624,0.001485,-0.002000,0.249992,0,0);}
.m94_c00375{transform:matrix(0.185981,-0.002976,0.003999,0.249968,0,0);-ms-transform:matrix(0.185981,-0.002976,0.003999,0.249968,0,0);-webkit-transform:matrix(0.185981,-0.002976,0.003999,0.249968,0,0);}
.m5a_c00375{transform:matrix(0.187484,0.001500,-0.002000,0.249992,0,0);-ms-transform:matrix(0.187484,0.001500,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.187484,0.001500,-0.002000,0.249992,0,0);}
.m43_c00375{transform:matrix(0.193029,0.001544,-0.002000,0.249992,0,0);-ms-transform:matrix(0.193029,0.001544,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.193029,0.001544,-0.002000,0.249992,0,0);}
.m57_c00375{transform:matrix(0.193044,0.001544,-0.002000,0.249992,0,0);-ms-transform:matrix(0.193044,0.001544,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.193044,0.001544,-0.002000,0.249992,0,0);}
.ma_c00375{transform:matrix(0.194635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194635,0.000000,0.000000,0.250000,0,0);}
.m58_c00375{transform:matrix(0.194829,0.001559,-0.002000,0.249992,0,0);-ms-transform:matrix(0.194829,0.001559,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.194829,0.001559,-0.002000,0.249992,0,0);}
.m8b_c00375{transform:matrix(0.195069,0.001561,-0.002000,0.249992,0,0);-ms-transform:matrix(0.195069,0.001561,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.195069,0.001561,-0.002000,0.249992,0,0);}
.m25_c00375{transform:matrix(0.196735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196735,0.000000,0.000000,0.250000,0,0);}
.m3d_c00375{transform:matrix(0.196754,0.001574,-0.002000,0.249992,0,0);-ms-transform:matrix(0.196754,0.001574,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.196754,0.001574,-0.002000,0.249992,0,0);}
.m32_c00375{transform:matrix(0.197469,0.001580,-0.002000,0.249992,0,0);-ms-transform:matrix(0.197469,0.001580,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.197469,0.001580,-0.002000,0.249992,0,0);}
.m3e_c00375{transform:matrix(0.198824,0.001591,-0.002000,0.249992,0,0);-ms-transform:matrix(0.198824,0.001591,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.198824,0.001591,-0.002000,0.249992,0,0);}
.m3f_c00375{transform:matrix(0.200464,0.001604,-0.002000,0.249992,0,0);-ms-transform:matrix(0.200464,0.001604,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.200464,0.001604,-0.002000,0.249992,0,0);}
.m18_c00375{transform:matrix(0.201200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201200,0.000000,0.000000,0.250000,0,0);}
.m45_c00375{transform:matrix(0.201919,0.001615,-0.002000,0.249992,0,0);-ms-transform:matrix(0.201919,0.001615,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.201919,0.001615,-0.002000,0.249992,0,0);}
.m20_c00375{transform:matrix(0.201925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201925,0.000000,0.000000,0.250000,0,0);}
.m78_c00375{transform:matrix(0.202694,0.001622,-0.002000,0.249992,0,0);-ms-transform:matrix(0.202694,0.001622,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.202694,0.001622,-0.002000,0.249992,0,0);}
.m3b_c00375{transform:matrix(0.204493,0.001636,-0.002000,0.249992,0,0);-ms-transform:matrix(0.204493,0.001636,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.204493,0.001636,-0.002000,0.249992,0,0);}
.m2d_c00375{transform:matrix(0.204893,0.001639,-0.002000,0.249992,0,0);-ms-transform:matrix(0.204893,0.001639,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.204893,0.001639,-0.002000,0.249992,0,0);}
.m70_c00375{transform:matrix(0.204953,0.001640,-0.002000,0.249992,0,0);-ms-transform:matrix(0.204953,0.001640,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.204953,0.001640,-0.002000,0.249992,0,0);}
.m73_c00375{transform:matrix(0.207573,0.001661,-0.002000,0.249992,0,0);-ms-transform:matrix(0.207573,0.001661,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.207573,0.001661,-0.002000,0.249992,0,0);}
.m40_c00375{transform:matrix(0.207878,0.001663,-0.002000,0.249992,0,0);-ms-transform:matrix(0.207878,0.001663,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.207878,0.001663,-0.002000,0.249992,0,0);}
.m2e_c00375{transform:matrix(0.208343,0.001667,-0.002000,0.249992,0,0);-ms-transform:matrix(0.208343,0.001667,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.208343,0.001667,-0.002000,0.249992,0,0);}
.m34_c00375{transform:matrix(0.214758,0.001718,-0.002000,0.249992,0,0);-ms-transform:matrix(0.214758,0.001718,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.214758,0.001718,-0.002000,0.249992,0,0);}
.m59_c00375{transform:matrix(0.215353,0.001723,-0.002000,0.249992,0,0);-ms-transform:matrix(0.215353,0.001723,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.215353,0.001723,-0.002000,0.249992,0,0);}
.m24_c00375{transform:matrix(0.216305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216305,0.000000,0.000000,0.250000,0,0);}
.m22_c00375{transform:matrix(0.216725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216725,0.000000,0.000000,0.250000,0,0);}
.m42_c00375{transform:matrix(0.218413,0.001747,-0.002000,0.249992,0,0);-ms-transform:matrix(0.218413,0.001747,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.218413,0.001747,-0.002000,0.249992,0,0);}
.m2f_c00375{transform:matrix(0.220573,0.001765,-0.002000,0.249992,0,0);-ms-transform:matrix(0.220573,0.001765,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.220573,0.001765,-0.002000,0.249992,0,0);}
.m5b_c00375{transform:matrix(0.223123,0.001785,-0.002000,0.249992,0,0);-ms-transform:matrix(0.223123,0.001785,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.223123,0.001785,-0.002000,0.249992,0,0);}
.m3a_c00375{transform:matrix(0.223828,0.001791,-0.002000,0.249992,0,0);-ms-transform:matrix(0.223828,0.001791,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.223828,0.001791,-0.002000,0.249992,0,0);}
.m31_c00375{transform:matrix(0.224213,0.001794,-0.002000,0.249992,0,0);-ms-transform:matrix(0.224213,0.001794,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.224213,0.001794,-0.002000,0.249992,0,0);}
.me_c00375{transform:matrix(0.225435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225435,0.000000,0.000000,0.250000,0,0);}
.m5f_c00375{transform:matrix(0.225843,0.001807,-0.002000,0.249992,0,0);-ms-transform:matrix(0.225843,0.001807,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.225843,0.001807,-0.002000,0.249992,0,0);}
.m3_c00375{transform:matrix(0.226080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226080,0.000000,0.000000,0.250000,0,0);}
.m76_c00375{transform:matrix(0.226468,0.001812,-0.002000,0.249992,0,0);-ms-transform:matrix(0.226468,0.001812,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.226468,0.001812,-0.002000,0.249992,0,0);}
.m8a_c00375{transform:matrix(0.226808,0.001814,-0.002000,0.249992,0,0);-ms-transform:matrix(0.226808,0.001814,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.226808,0.001814,-0.002000,0.249992,0,0);}
.m92_c00375{transform:matrix(0.227298,0.001818,-0.002000,0.249992,0,0);-ms-transform:matrix(0.227298,0.001818,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.227298,0.001818,-0.002000,0.249992,0,0);}
.m2a_c00375{transform:matrix(0.227330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227330,0.000000,0.000000,0.250000,0,0);}
.m89_c00375{transform:matrix(0.227428,0.001819,-0.002000,0.249992,0,0);-ms-transform:matrix(0.227428,0.001819,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.227428,0.001819,-0.002000,0.249992,0,0);}
.m30_c00375{transform:matrix(0.227678,0.001821,-0.002000,0.249992,0,0);-ms-transform:matrix(0.227678,0.001821,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.227678,0.001821,-0.002000,0.249992,0,0);}
.m10_c00375{transform:matrix(0.227895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227895,0.000000,0.000000,0.250000,0,0);}
.m23_c00375{transform:matrix(0.227900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227900,0.000000,0.000000,0.250000,0,0);}
.m5c_c00375{transform:matrix(0.228348,0.001827,-0.002000,0.249992,0,0);-ms-transform:matrix(0.228348,0.001827,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.228348,0.001827,-0.002000,0.249992,0,0);}
.m6_c00375{transform:matrix(0.228895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228895,0.000000,0.000000,0.250000,0,0);}
.m6f_c00375{transform:matrix(0.229393,0.001835,-0.002000,0.249992,0,0);-ms-transform:matrix(0.229393,0.001835,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.229393,0.001835,-0.002000,0.249992,0,0);}
.m4d_c00375{transform:matrix(0.229518,0.001836,-0.002000,0.249992,0,0);-ms-transform:matrix(0.229518,0.001836,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.229518,0.001836,-0.002000,0.249992,0,0);}
.m50_c00375{transform:matrix(0.229583,0.001837,-0.002000,0.249992,0,0);-ms-transform:matrix(0.229583,0.001837,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.229583,0.001837,-0.002000,0.249992,0,0);}
.m7b_c00375{transform:matrix(0.231128,0.001849,-0.002000,0.249992,0,0);-ms-transform:matrix(0.231128,0.001849,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.231128,0.001849,-0.002000,0.249992,0,0);}
.m65_c00375{transform:matrix(0.231863,0.001855,-0.002000,0.249992,0,0);-ms-transform:matrix(0.231863,0.001855,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.231863,0.001855,-0.002000,0.249992,0,0);}
.m7f_c00375{transform:matrix(0.231943,0.001856,-0.002000,0.249992,0,0);-ms-transform:matrix(0.231943,0.001856,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.231943,0.001856,-0.002000,0.249992,0,0);}
.m1c_c00375{transform:matrix(0.231950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231950,0.000000,0.000000,0.250000,0,0);}
.m5e_c00375{transform:matrix(0.233113,0.001865,-0.002000,0.249992,0,0);-ms-transform:matrix(0.233113,0.001865,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.233113,0.001865,-0.002000,0.249992,0,0);}
.m1d_c00375{transform:matrix(0.233525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233525,0.000000,0.000000,0.250000,0,0);}
.m6a_c00375{transform:matrix(0.234812,0.001878,-0.002000,0.249992,0,0);-ms-transform:matrix(0.234812,0.001878,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.234812,0.001878,-0.002000,0.249992,0,0);}
.m11_c00375{transform:matrix(0.235305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235305,0.000000,0.000000,0.250000,0,0);}
.m39_c00375{transform:matrix(0.236227,0.001890,-0.002000,0.249992,0,0);-ms-transform:matrix(0.236227,0.001890,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.236227,0.001890,-0.002000,0.249992,0,0);}
.m88_c00375{transform:matrix(0.236272,0.001890,-0.002000,0.249992,0,0);-ms-transform:matrix(0.236272,0.001890,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.236272,0.001890,-0.002000,0.249992,0,0);}
.m1a_c00375{transform:matrix(0.236280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236280,0.000000,0.000000,0.250000,0,0);}
.m74_c00375{transform:matrix(0.238162,0.001905,-0.002000,0.249992,0,0);-ms-transform:matrix(0.238162,0.001905,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.238162,0.001905,-0.002000,0.249992,0,0);}
.m69_c00375{transform:matrix(0.239287,0.001914,-0.002000,0.249992,0,0);-ms-transform:matrix(0.239287,0.001914,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.239287,0.001914,-0.002000,0.249992,0,0);}
.m51_c00375{transform:matrix(0.240332,0.001923,-0.002000,0.249992,0,0);-ms-transform:matrix(0.240332,0.001923,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.240332,0.001923,-0.002000,0.249992,0,0);}
.m8c_c00375{transform:matrix(0.240697,0.001926,-0.002000,0.249992,0,0);-ms-transform:matrix(0.240697,0.001926,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.240697,0.001926,-0.002000,0.249992,0,0);}
.m29_c00375{transform:matrix(0.241980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241980,0.000000,0.000000,0.250000,0,0);}
.m1f_c00375{transform:matrix(0.243740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243740,0.000000,0.000000,0.250000,0,0);}
.m7e_c00375{transform:matrix(0.245742,0.001966,-0.002000,0.249992,0,0);-ms-transform:matrix(0.245742,0.001966,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.245742,0.001966,-0.002000,0.249992,0,0);}
.m2c_c00375{transform:matrix(0.245785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245785,0.000000,0.000000,0.250000,0,0);}
.m49_c00375{transform:matrix(0.246012,0.001968,-0.002000,0.249992,0,0);-ms-transform:matrix(0.246012,0.001968,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.246012,0.001968,-0.002000,0.249992,0,0);}
.m54_c00375{transform:matrix(0.246237,0.001970,-0.002000,0.249992,0,0);-ms-transform:matrix(0.246237,0.001970,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.246237,0.001970,-0.002000,0.249992,0,0);}
.m79_c00375{transform:matrix(0.247157,0.001977,-0.002000,0.249992,0,0);-ms-transform:matrix(0.247157,0.001977,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.247157,0.001977,-0.002000,0.249992,0,0);}
.m19_c00375{transform:matrix(0.247535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247535,0.000000,0.000000,0.250000,0,0);}
.m81_c00375{transform:matrix(0.247942,0.001984,-0.002000,0.249992,0,0);-ms-transform:matrix(0.247942,0.001984,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.247942,0.001984,-0.002000,0.249992,0,0);}
.m4f_c00375{transform:matrix(0.249517,0.001996,-0.002000,0.249992,0,0);-ms-transform:matrix(0.249517,0.001996,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.249517,0.001996,-0.002000,0.249992,0,0);}
.mf_c00375{transform:matrix(0.251020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251020,0.000000,0.000000,0.250000,0,0);}
.m4_c00375{transform:matrix(0.251695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251695,0.000000,0.000000,0.250000,0,0);}
.m26_c00375{transform:matrix(0.252480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252480,0.000000,0.000000,0.250000,0,0);}
.m12_c00375{transform:matrix(0.253005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253005,0.000000,0.000000,0.250000,0,0);}
.m5_c00375{transform:matrix(0.253565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253565,0.000000,0.000000,0.250000,0,0);}
.m1b_c00375{transform:matrix(0.253665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253665,0.000000,0.000000,0.250000,0,0);}
.m82_c00375{transform:matrix(0.257637,0.002061,-0.002000,0.249992,0,0);-ms-transform:matrix(0.257637,0.002061,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.257637,0.002061,-0.002000,0.249992,0,0);}
.m56_c00375{transform:matrix(0.259402,0.002075,-0.002000,0.249992,0,0);-ms-transform:matrix(0.259402,0.002075,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.259402,0.002075,-0.002000,0.249992,0,0);}
.m2b_c00375{transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00375{transform:matrix(0.262552,0.002100,-0.002000,0.249992,0,0);-ms-transform:matrix(0.262552,0.002100,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.262552,0.002100,-0.002000,0.249992,0,0);}
.m77_c00375{transform:matrix(0.262647,0.002101,-0.002000,0.249992,0,0);-ms-transform:matrix(0.262647,0.002101,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.262647,0.002101,-0.002000,0.249992,0,0);}
.m80_c00375{transform:matrix(0.262982,0.002104,-0.002000,0.249992,0,0);-ms-transform:matrix(0.262982,0.002104,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.262982,0.002104,-0.002000,0.249992,0,0);}
.m90_c00375{transform:matrix(0.263522,0.002108,-0.002000,0.249992,0,0);-ms-transform:matrix(0.263522,0.002108,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.263522,0.002108,-0.002000,0.249992,0,0);}
.m63_c00375{transform:matrix(0.263857,0.002111,-0.002000,0.249992,0,0);-ms-transform:matrix(0.263857,0.002111,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.263857,0.002111,-0.002000,0.249992,0,0);}
.m67_c00375{transform:matrix(0.267461,0.002140,-0.002000,0.249992,0,0);-ms-transform:matrix(0.267461,0.002140,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.267461,0.002140,-0.002000,0.249992,0,0);}
.m33_c00375{transform:matrix(0.267656,0.002141,-0.002000,0.249992,0,0);-ms-transform:matrix(0.267656,0.002141,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.267656,0.002141,-0.002000,0.249992,0,0);}
.m4c_c00375{transform:matrix(0.267721,0.002142,-0.002000,0.249992,0,0);-ms-transform:matrix(0.267721,0.002142,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.267721,0.002142,-0.002000,0.249992,0,0);}
.m7d_c00375{transform:matrix(0.268201,0.002146,-0.002000,0.249992,0,0);-ms-transform:matrix(0.268201,0.002146,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.268201,0.002146,-0.002000,0.249992,0,0);}
.m2_c00375{transform:matrix(0.268600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268600,0.000000,0.000000,0.250000,0,0);}
.m4a_c00375{transform:matrix(0.268816,0.002151,-0.002000,0.249992,0,0);-ms-transform:matrix(0.268816,0.002151,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.268816,0.002151,-0.002000,0.249992,0,0);}
.m8f_c00375{transform:matrix(0.275171,0.002201,-0.002000,0.249992,0,0);-ms-transform:matrix(0.275171,0.002201,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.275171,0.002201,-0.002000,0.249992,0,0);}
.m28_c00375{transform:matrix(0.276190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276190,0.000000,0.000000,0.250000,0,0);}
.m66_c00375{transform:matrix(0.277116,0.002217,-0.002000,0.249992,0,0);-ms-transform:matrix(0.277116,0.002217,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.277116,0.002217,-0.002000,0.249992,0,0);}
.m4e_c00375{transform:matrix(0.277546,0.002220,-0.002000,0.249992,0,0);-ms-transform:matrix(0.277546,0.002220,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.277546,0.002220,-0.002000,0.249992,0,0);}
.m9_c00375{transform:matrix(0.283020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283020,0.000000,0.000000,0.250000,0,0);}
.m83_c00375{transform:matrix(0.284606,0.002277,-0.002000,0.249992,0,0);-ms-transform:matrix(0.284606,0.002277,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.284606,0.002277,-0.002000,0.249992,0,0);}
.m86_c00375{transform:matrix(0.287331,0.002299,-0.002000,0.249992,0,0);-ms-transform:matrix(0.287331,0.002299,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.287331,0.002299,-0.002000,0.249992,0,0);}
.m55_c00375{transform:matrix(0.288051,0.002304,-0.002000,0.249992,0,0);-ms-transform:matrix(0.288051,0.002304,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.288051,0.002304,-0.002000,0.249992,0,0);}
.m27_c00375{transform:matrix(0.288290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288290,0.000000,0.000000,0.250000,0,0);}
.m0_c00375{transform:matrix(0.289690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289690,0.000000,0.000000,0.250000,0,0);}
.m21_c00375{transform:matrix(0.290925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290925,0.000000,0.000000,0.250000,0,0);}
.m64_c00375{transform:matrix(0.290961,0.002328,-0.002000,0.249992,0,0);-ms-transform:matrix(0.290961,0.002328,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.290961,0.002328,-0.002000,0.249992,0,0);}
.m14_c00375{transform:matrix(0.291595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291595,0.000000,0.000000,0.250000,0,0);}
.m52_c00375{transform:matrix(0.298675,0.002389,-0.002000,0.249992,0,0);-ms-transform:matrix(0.298675,0.002389,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.298675,0.002389,-0.002000,0.249992,0,0);}
.m6e_c00375{transform:matrix(0.301890,0.002415,-0.002000,0.249992,0,0);-ms-transform:matrix(0.301890,0.002415,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.301890,0.002415,-0.002000,0.249992,0,0);}
.m95_c00375{transform:matrix(0.301961,-0.004831,0.003999,0.249968,0,0);-ms-transform:matrix(0.301961,-0.004831,0.003999,0.249968,0,0);-webkit-transform:matrix(0.301961,-0.004831,0.003999,0.249968,0,0);}
.m7_c00375{transform:matrix(0.305635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305635,0.000000,0.000000,0.250000,0,0);}
.m62_c00375{transform:matrix(0.309480,0.002476,-0.002000,0.249992,0,0);-ms-transform:matrix(0.309480,0.002476,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.309480,0.002476,-0.002000,0.249992,0,0);}
.m84_c00375{transform:matrix(0.311000,0.002488,-0.002000,0.249992,0,0);-ms-transform:matrix(0.311000,0.002488,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.311000,0.002488,-0.002000,0.249992,0,0);}
.m68_c00375{transform:matrix(0.318080,0.002545,-0.002000,0.249992,0,0);-ms-transform:matrix(0.318080,0.002545,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.318080,0.002545,-0.002000,0.249992,0,0);}
.m7a_c00375{transform:matrix(0.323720,0.002590,-0.002000,0.249992,0,0);-ms-transform:matrix(0.323720,0.002590,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.323720,0.002590,-0.002000,0.249992,0,0);}
.m53_c00375{transform:matrix(0.324820,0.002599,-0.002000,0.249992,0,0);-ms-transform:matrix(0.324820,0.002599,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.324820,0.002599,-0.002000,0.249992,0,0);}
.m60_c00375{transform:matrix(0.340134,0.002721,-0.002000,0.249992,0,0);-ms-transform:matrix(0.340134,0.002721,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.340134,0.002721,-0.002000,0.249992,0,0);}
.m97_c00375{transform:matrix(0.342041,-0.005473,0.003999,0.249968,0,0);-ms-transform:matrix(0.342041,-0.005473,0.003999,0.249968,0,0);-webkit-transform:matrix(0.342041,-0.005473,0.003999,0.249968,0,0);}
.m8d_c00375{transform:matrix(0.343004,0.002744,-0.002000,0.249992,0,0);-ms-transform:matrix(0.343004,0.002744,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.343004,0.002744,-0.002000,0.249992,0,0);}
.m1e_c00375{transform:matrix(0.362415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362415,0.000000,0.000000,0.250000,0,0);}
.mb_c00375{transform:matrix(0.366890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366890,0.000000,0.000000,0.250000,0,0);}
.m36_c00375{transform:matrix(0.369808,0.002958,-0.002000,0.249992,0,0);-ms-transform:matrix(0.369808,0.002958,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.369808,0.002958,-0.002000,0.249992,0,0);}
.m35_c00375{transform:matrix(0.372463,0.002980,-0.002000,0.249992,0,0);-ms-transform:matrix(0.372463,0.002980,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.372463,0.002980,-0.002000,0.249992,0,0);}
.m37_c00375{transform:matrix(0.375943,0.003008,-0.002000,0.249992,0,0);-ms-transform:matrix(0.375943,0.003008,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.375943,0.003008,-0.002000,0.249992,0,0);}
.m8e_c00375{transform:matrix(0.389503,0.003116,-0.002000,0.249992,0,0);-ms-transform:matrix(0.389503,0.003116,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.389503,0.003116,-0.002000,0.249992,0,0);}
.m6c_c00375{transform:matrix(0.399692,0.003198,-0.002000,0.249992,0,0);-ms-transform:matrix(0.399692,0.003198,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.399692,0.003198,-0.002000,0.249992,0,0);}
.m7c_c00375{transform:matrix(0.416097,0.003329,-0.002000,0.249992,0,0);-ms-transform:matrix(0.416097,0.003329,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.416097,0.003329,-0.002000,0.249992,0,0);}
.m61_c00375{transform:matrix(0.424581,0.003397,-0.002000,0.249992,0,0);-ms-transform:matrix(0.424581,0.003397,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.424581,0.003397,-0.002000,0.249992,0,0);}
.m44_c00375{transform:matrix(0.427961,0.003424,-0.002000,0.249992,0,0);-ms-transform:matrix(0.427961,0.003424,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.427961,0.003424,-0.002000,0.249992,0,0);}
.m9a_c00375{transform:matrix(0.430415,-0.006887,0.003999,0.249968,0,0);-ms-transform:matrix(0.430415,-0.006887,0.003999,0.249968,0,0);-webkit-transform:matrix(0.430415,-0.006887,0.003999,0.249968,0,0);}
.m96_c00375{transform:matrix(0.432720,-0.006924,0.003999,0.249968,0,0);-ms-transform:matrix(0.432720,-0.006924,0.003999,0.249968,0,0);-webkit-transform:matrix(0.432720,-0.006924,0.003999,0.249968,0,0);}
.m15_c00375{transform:matrix(0.432990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432990,0.000000,0.000000,0.250000,0,0);}
.m1_c00375{transform:matrix(0.442110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442110,0.000000,0.000000,0.250000,0,0);}
.m13_c00375{transform:matrix(0.442740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442740,0.000000,0.000000,0.250000,0,0);}
.m8_c00375{transform:matrix(0.454640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.454640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.454640,0.000000,0.000000,0.250000,0,0);}
.m99_c00375{transform:matrix(0.467975,-0.007488,0.003999,0.249968,0,0);-ms-transform:matrix(0.467975,-0.007488,0.003999,0.249968,0,0);-webkit-transform:matrix(0.467975,-0.007488,0.003999,0.249968,0,0);}
.m6b_c00375{transform:matrix(0.498789,0.003990,-0.002000,0.249992,0,0);-ms-transform:matrix(0.498789,0.003990,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.498789,0.003990,-0.002000,0.249992,0,0);}
.m98_c00375{transform:matrix(0.504990,-0.008080,0.003999,0.249968,0,0);-ms-transform:matrix(0.504990,-0.008080,0.003999,0.249968,0,0);-webkit-transform:matrix(0.504990,-0.008080,0.003999,0.249968,0,0);}
.m91_c00375{transform:matrix(0.537748,0.004302,-0.002000,0.249992,0,0);-ms-transform:matrix(0.537748,0.004302,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.537748,0.004302,-0.002000,0.249992,0,0);}
.m16_c00375{transform:matrix(0.603365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.603365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.603365,0.000000,0.000000,0.250000,0,0);}
.m85_c00375{transform:matrix(0.732867,0.005863,-0.002000,0.249992,0,0);-ms-transform:matrix(0.732867,0.005863,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.732867,0.005863,-0.002000,0.249992,0,0);}
.m9d_c00375{transform:matrix(0.738160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.738160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.738160,0.000000,0.000000,0.250000,0,0);}
.m48_c00375{transform:matrix(0.742861,0.005943,-0.002000,0.249992,0,0);-ms-transform:matrix(0.742861,0.005943,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.742861,0.005943,-0.002000,0.249992,0,0);}
.md_c00375{transform:matrix(0.746510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.746510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.746510,0.000000,0.000000,0.250000,0,0);}
.m46_c00375{transform:matrix(0.797234,0.006378,-0.002000,0.249992,0,0);-ms-transform:matrix(0.797234,0.006378,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.797234,0.006378,-0.002000,0.249992,0,0);}
.m9b_c00375{transform:matrix(1.099649,-0.017594,0.003999,0.249968,0,0);-ms-transform:matrix(1.099649,-0.017594,0.003999,0.249968,0,0);-webkit-transform:matrix(1.099649,-0.017594,0.003999,0.249968,0,0);}
.m93_c00375{transform:matrix(2.300381,-0.036806,0.003999,0.249968,0,0);-ms-transform:matrix(2.300381,-0.036806,0.003999,0.249968,0,0);-webkit-transform:matrix(2.300381,-0.036806,0.003999,0.249968,0,0);}
.v0_c00375{vertical-align:0.000000px;}
.ls0_c00375{letter-spacing:0.000000px;}
.sc__c00375{text-shadow:none;}
.sc0_c00375{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__c00375{-webkit-text-stroke:0px transparent;}
.sc0_c00375{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00375{word-spacing:0.000000px;}
.fc0_c00375{color:transparent;}
.fs8_c00375{font-size:48.000000px;}
.fs5_c00375{font-size:72.002304px;}
.fs1_c00375{font-size:78.000000px;}
.fs6_c00375{font-size:78.002496px;}
.fs2_c00375{font-size:84.000000px;}
.fs0_c00375{font-size:90.000000px;}
.fs3_c00375{font-size:90.002880px;}
.fs4_c00375{font-size:96.003072px;}
.fs7_c00375{font-size:96.012287px;}
.y0_c00375{bottom:0.000000px;}
.y93_c00375{bottom:513.177000px;}
.y89_c00375{bottom:547.030500px;}
.y8a_c00375{bottom:549.810900px;}
.y8b_c00375{bottom:550.263540px;}
.y8c_c00375{bottom:550.661580px;}
.y8d_c00375{bottom:552.085764px;}
.y8e_c00375{bottom:552.933228px;}
.y8f_c00375{bottom:554.810628px;}
.y90_c00375{bottom:555.093372px;}
.y91_c00375{bottom:556.199076px;}
.y92_c00375{bottom:557.547924px;}
.y82_c00375{bottom:743.542776px;}
.y83_c00375{bottom:743.542788px;}
.y80_c00375{bottom:743.542860px;}
.y81_c00375{bottom:743.543124px;}
.y7d_c00375{bottom:743.543196px;}
.y7c_c00375{bottom:743.543232px;}
.y7e_c00375{bottom:743.543316px;}
.y84_c00375{bottom:743.543352px;}
.y7f_c00375{bottom:743.543448px;}
.y88_c00375{bottom:743.543508px;}
.y85_c00375{bottom:743.543532px;}
.y7b_c00375{bottom:743.543940px;}
.y87_c00375{bottom:743.543976px;}
.y86_c00375{bottom:743.544144px;}
.y7a_c00375{bottom:780.307152px;}
.y78_c00375{bottom:780.307428px;}
.y79_c00375{bottom:780.307728px;}
.y71_c00375{bottom:780.307740px;}
.y6f_c00375{bottom:780.307956px;}
.y70_c00375{bottom:780.307968px;}
.y72_c00375{bottom:780.307992px;}
.y77_c00375{bottom:780.308076px;}
.y76_c00375{bottom:780.308712px;}
.y73_c00375{bottom:780.308724px;}
.y75_c00375{bottom:780.308832px;}
.y74_c00375{bottom:780.308868px;}
.y6e_c00375{bottom:820.416252px;}
.y6d_c00375{bottom:820.416648px;}
.y6c_c00375{bottom:820.416756px;}
.y6b_c00375{bottom:820.417332px;}
.y63_c00375{bottom:820.417560px;}
.y68_c00375{bottom:820.417812px;}
.y69_c00375{bottom:820.417836px;}
.y62_c00375{bottom:820.417848px;}
.y64_c00375{bottom:820.417992px;}
.y6a_c00375{bottom:820.418040px;}
.y67_c00375{bottom:820.418520px;}
.y65_c00375{bottom:820.418544px;}
.y66_c00375{bottom:820.418928px;}
.y61_c00375{bottom:852.844860px;}
.y60_c00375{bottom:853.575360px;}
.y5f_c00375{bottom:853.971876px;}
.y5e_c00375{bottom:854.334012px;}
.y5d_c00375{bottom:854.654052px;}
.y5c_c00375{bottom:855.103992px;}
.y5b_c00375{bottom:855.357264px;}
.y5a_c00375{bottom:855.820692px;}
.y59_c00375{bottom:856.523736px;}
.y58_c00375{bottom:856.749720px;}
.y57_c00375{bottom:857.377620px;}
.y56_c00375{bottom:858.057024px;}
.y50_c00375{bottom:889.831716px;}
.y4f_c00375{bottom:889.832244px;}
.y51_c00375{bottom:889.832388px;}
.y4e_c00375{bottom:889.832472px;}
.y4d_c00375{bottom:889.832748px;}
.y52_c00375{bottom:889.832940px;}
.y4b_c00375{bottom:889.832964px;}
.y55_c00375{bottom:889.833216px;}
.y54_c00375{bottom:889.833252px;}
.y4c_c00375{bottom:889.833456px;}
.y53_c00375{bottom:889.833564px;}
.y4a_c00375{bottom:924.605892px;}
.y49_c00375{bottom:925.057560px;}
.y48_c00375{bottom:925.618908px;}
.y47_c00375{bottom:925.849344px;}
.y46_c00375{bottom:926.087040px;}
.y45_c00375{bottom:926.859120px;}
.y44_c00375{bottom:927.078036px;}
.y43_c00375{bottom:927.559932px;}
.y42_c00375{bottom:928.068924px;}
.y41_c00375{bottom:928.550916px;}
.y40_c00375{bottom:928.714980px;}
.y3f_c00375{bottom:929.314500px;}
.y3e_c00375{bottom:929.362476px;}
.y3d_c00375{bottom:929.873400px;}
.y3c_c00375{bottom:959.567364px;}
.y3b_c00375{bottom:960.005748px;}
.y3a_c00375{bottom:960.508620px;}
.y39_c00375{bottom:960.860376px;}
.y38_c00375{bottom:961.149768px;}
.y37_c00375{bottom:961.502340px;}
.y36_c00375{bottom:962.279712px;}
.y35_c00375{bottom:962.556288px;}
.y34_c00375{bottom:962.999172px;}
.y33_c00375{bottom:963.260484px;}
.y32_c00375{bottom:963.973248px;}
.y31_c00375{bottom:964.554480px;}
.y30_c00375{bottom:964.781340px;}
.y2f_c00375{bottom:965.249232px;}
.y2e_c00375{bottom:994.533444px;}
.y2d_c00375{bottom:994.858692px;}
.y2c_c00375{bottom:995.543748px;}
.y2b_c00375{bottom:995.927400px;}
.y2a_c00375{bottom:996.355428px;}
.y29_c00375{bottom:996.629688px;}
.y28_c00375{bottom:997.500276px;}
.y27_c00375{bottom:998.209032px;}
.y26_c00375{bottom:998.839488px;}
.y25_c00375{bottom:999.273636px;}
.y24_c00375{bottom:999.541500px;}
.y23_c00375{bottom:1032.328500px;}
.y22_c00375{bottom:1033.239000px;}
.y21_c00375{bottom:1033.387500px;}
.y20_c00375{bottom:1033.792500px;}
.y1f_c00375{bottom:1034.196000px;}
.y1e_c00375{bottom:1034.610000px;}
.y1d_c00375{bottom:1035.361500px;}
.y1c_c00375{bottom:1035.748500px;}
.y1b_c00375{bottom:1036.410000px;}
.y1a_c00375{bottom:1037.217000px;}
.y19_c00375{bottom:1037.764500px;}
.y18_c00375{bottom:1038.214500px;}
.y17_c00375{bottom:1067.167500px;}
.y16_c00375{bottom:1067.659500px;}
.y15_c00375{bottom:1067.979000px;}
.y14_c00375{bottom:1068.502500px;}
.y13_c00375{bottom:1068.724500px;}
.y12_c00375{bottom:1069.204500px;}
.y11_c00375{bottom:1069.410000px;}
.y10_c00375{bottom:1069.773000px;}
.yf_c00375{bottom:1069.857000px;}
.ye_c00375{bottom:1072.171500px;}
.yd_c00375{bottom:1105.621500px;}
.yc_c00375{bottom:1106.274000px;}
.yb_c00375{bottom:1106.713500px;}
.ya_c00375{bottom:1107.304500px;}
.y9_c00375{bottom:1107.660000px;}
.y8_c00375{bottom:1108.060500px;}
.y7_c00375{bottom:1108.378500px;}
.y6_c00375{bottom:1108.917000px;}
.y5_c00375{bottom:1109.280000px;}
.y4_c00375{bottom:1109.787000px;}
.y3_c00375{bottom:1110.115500px;}
.y2_c00375{bottom:1110.240000px;}
.y1_c00375{bottom:1140.787500px;}
.ha_c00375{height:48.000000px;}
.h7_c00375{height:72.002304px;}
.h3_c00375{height:78.000000px;}
.h8_c00375{height:78.002496px;}
.h4_c00375{height:84.000000px;}
.h2_c00375{height:90.000000px;}
.h5_c00375{height:90.002880px;}
.h6_c00375{height:96.003072px;}
.h9_c00375{height:96.012287px;}
.h0_c00375{height:1251.450000px;}
.h1_c00375{height:1251.750000px;}
.w0_c00375{width:915.000000px;}
.x0_c00375{left:0.000000px;}
.x4f_c00375{left:1.784700px;}
.x30_c00375{left:7.241532px;}
.xb_c00375{left:17.667000px;}
.x59_c00375{left:28.069788px;}
.x14_c00375{left:37.396500px;}
.x68_c00375{left:41.569200px;}
.x1_c00375{left:58.860000px;}
.xc_c00375{left:64.677000px;}
.x31_c00375{left:65.728032px;}
.x3b_c00375{left:73.615704px;}
.x45_c00375{left:76.676184px;}
.x3c_c00375{left:80.550264px;}
.x32_c00375{left:94.085532px;}
.x50_c00375{left:98.898480px;}
.x1c_c00375{left:105.939000px;}
.x26_c00375{left:111.114000px;}
.x7b_c00375{left:116.910000px;}
.x5a_c00375{left:120.682716px;}
.x2_c00375{left:123.120000px;}
.x72_c00375{left:128.397000px;}
.x46_c00375{left:129.868092px;}
.xd_c00375{left:137.037000px;}
.x1d_c00375{left:143.496000px;}
.x27_c00375{left:144.597000px;}
.x47_c00375{left:154.708176px;}
.x5b_c00375{left:156.053484px;}
.x62_c00375{left:159.020808px;}
.x33_c00375{left:166.739532px;}
.x3_c00375{left:169.560000px;}
.xe_c00375{left:188.901000px;}
.x6a_c00375{left:190.344216px;}
.x69_c00375{left:192.234336px;}
.x28_c00375{left:198.865500px;}
.x51_c00375{left:221.009964px;}
.x6b_c00375{left:222.204756px;}
.x48_c00375{left:243.810876px;}
.x5c_c00375{left:244.886172px;}
.x4_c00375{left:254.880000px;}
.x1e_c00375{left:256.323000px;}
.x3d_c00375{left:258.561192px;}
.xf_c00375{left:265.860000px;}
.x49_c00375{left:267.840912px;}
.x29_c00375{left:277.672500px;}
.x6c_c00375{left:278.906880px;}
.x34_c00375{left:288.499032px;}
.x4a_c00375{left:299.971464px;}
.x73_c00375{left:302.172000px;}
.x5_c00375{left:311.040000px;}
.x52_c00375{left:321.453768px;}
.x3e_c00375{left:331.185768px;}
.x5d_c00375{left:333.718848px;}
.x1f_c00375{left:343.638000px;}
.x74_c00375{left:355.339500px;}
.x2a_c00375{left:366.267000px;}
.x6_c00375{left:367.470000px;}
.x35_c00375{left:378.431532px;}
.x15_c00375{left:380.016000px;}
.x53_c00375{left:387.632796px;}
.x6d_c00375{left:389.880984px;}
.x4b_c00375{left:395.824608px;}
.x3f_c00375{left:400.048320px;}
.x20_c00375{left:406.324500px;}
.x5e_c00375{left:407.970600px;}
.x10_c00375{left:419.148000px;}
.x54_c00375{left:423.792084px;}
.x40_c00375{left:431.350572px;}
.x7_c00375{left:432.810000px;}
.x21_c00375{left:440.860500px;}
.x63_c00375{left:443.340012px;}
.x75_c00375{left:444.351000px;}
.x16_c00375{left:461.254500px;}
.x64_c00375{left:465.481428px;}
.x8_c00375{left:468.450000px;}
.x22_c00375{left:474.517500px;}
.x36_c00375{left:475.603032px;}
.x55_c00375{left:488.097600px;}
.x76_c00375{left:497.317500px;}
.x11_c00375{left:503.671500px;}
.x23_c00375{left:508.236000px;}
.x2b_c00375{left:509.373000px;}
.x24_c00375{left:520.647000px;}
.x17_c00375{left:529.899000px;}
.x56_c00375{left:533.727960px;}
.x41_c00375{left:541.548948px;}
.x65_c00375{left:553.504056px;}
.x37_c00375{left:555.848532px;}
.x18_c00375{left:561.694500px;}
.x2c_c00375{left:562.876500px;}
.x12_c00375{left:566.529000px;}
.x42_c00375{left:575.573724px;}
.x6e_c00375{left:579.967152px;}
.x9_c00375{left:584.280000px;}
.x57_c00375{left:585.557880px;}
.x25_c00375{left:596.487000px;}
.x38_c00375{left:599.818032px;}
.x43_c00375{left:608.503488px;}
.x2d_c00375{left:610.833000px;}
.x77_c00375{left:614.655000px;}
.x5f_c00375{left:618.306552px;}
.x66_c00375{left:621.276888px;}
.x6f_c00375{left:631.268940px;}
.x78_c00375{left:632.326500px;}
.xa_c00375{left:635.040000px;}
.x19_c00375{left:636.507000px;}
.x67_c00375{left:640.178100px;}
.x4c_c00375{left:641.801352px;}
.x13_c00375{left:659.782500px;}
.x39_c00375{left:662.677032px;}
.x70_c00375{left:664.479564px;}
.x60_c00375{left:667.448196px;}
.x1a_c00375{left:682.102500px;}
.x44_c00375{left:688.610124px;}
.x2e_c00375{left:696.465000px;}
.x79_c00375{left:701.433000px;}
.x4d_c00375{left:713.622948px;}
.x3a_c00375{left:717.475032px;}
.x71_c00375{left:719.291568px;}
.x2f_c00375{left:737.121000px;}
.x58_c00375{left:746.686176px;}
.x4e_c00375{left:748.183656px;}
.x1b_c00375{left:752.352000px;}
.x61_c00375{left:758.441016px;}
.x7a_c00375{left:785.736000px;}
@media print{
.v0_c00375{vertical-align:0.000000pt;}
.ls0_c00375{letter-spacing:0.000000pt;}
.ws0_c00375{word-spacing:0.000000pt;}
.fs8_c00375{font-size:42.666667pt;}
.fs5_c00375{font-size:64.002048pt;}
.fs1_c00375{font-size:69.333333pt;}
.fs6_c00375{font-size:69.335552pt;}
.fs2_c00375{font-size:74.666667pt;}
.fs0_c00375{font-size:80.000000pt;}
.fs3_c00375{font-size:80.002560pt;}
.fs4_c00375{font-size:85.336064pt;}
.fs7_c00375{font-size:85.344255pt;}
.y0_c00375{bottom:0.000000pt;}
.y93_c00375{bottom:456.157333pt;}
.y89_c00375{bottom:486.249333pt;}
.y8a_c00375{bottom:488.720800pt;}
.y8b_c00375{bottom:489.123147pt;}
.y8c_c00375{bottom:489.476960pt;}
.y8d_c00375{bottom:490.742901pt;}
.y8e_c00375{bottom:491.496203pt;}
.y8f_c00375{bottom:493.165003pt;}
.y90_c00375{bottom:493.416331pt;}
.y91_c00375{bottom:494.399179pt;}
.y92_c00375{bottom:495.598155pt;}
.y82_c00375{bottom:660.926912pt;}
.y83_c00375{bottom:660.926923pt;}
.y80_c00375{bottom:660.926987pt;}
.y81_c00375{bottom:660.927221pt;}
.y7d_c00375{bottom:660.927285pt;}
.y7c_c00375{bottom:660.927317pt;}
.y7e_c00375{bottom:660.927392pt;}
.y84_c00375{bottom:660.927424pt;}
.y7f_c00375{bottom:660.927509pt;}
.y88_c00375{bottom:660.927563pt;}
.y85_c00375{bottom:660.927584pt;}
.y7b_c00375{bottom:660.927947pt;}
.y87_c00375{bottom:660.927979pt;}
.y86_c00375{bottom:660.928128pt;}
.y7a_c00375{bottom:693.606357pt;}
.y78_c00375{bottom:693.606603pt;}
.y79_c00375{bottom:693.606869pt;}
.y71_c00375{bottom:693.606880pt;}
.y6f_c00375{bottom:693.607072pt;}
.y70_c00375{bottom:693.607083pt;}
.y72_c00375{bottom:693.607104pt;}
.y77_c00375{bottom:693.607179pt;}
.y76_c00375{bottom:693.607744pt;}
.y73_c00375{bottom:693.607755pt;}
.y75_c00375{bottom:693.607851pt;}
.y74_c00375{bottom:693.607883pt;}
.y6e_c00375{bottom:729.258891pt;}
.y6d_c00375{bottom:729.259243pt;}
.y6c_c00375{bottom:729.259339pt;}
.y6b_c00375{bottom:729.259851pt;}
.y63_c00375{bottom:729.260053pt;}
.y68_c00375{bottom:729.260277pt;}
.y69_c00375{bottom:729.260299pt;}
.y62_c00375{bottom:729.260309pt;}
.y64_c00375{bottom:729.260437pt;}
.y6a_c00375{bottom:729.260480pt;}
.y67_c00375{bottom:729.260907pt;}
.y65_c00375{bottom:729.260928pt;}
.y66_c00375{bottom:729.261269pt;}
.y61_c00375{bottom:758.084320pt;}
.y60_c00375{bottom:758.733653pt;}
.y5f_c00375{bottom:759.086112pt;}
.y5e_c00375{bottom:759.408011pt;}
.y5d_c00375{bottom:759.692491pt;}
.y5c_c00375{bottom:760.092437pt;}
.y5b_c00375{bottom:760.317568pt;}
.y5a_c00375{bottom:760.729504pt;}
.y59_c00375{bottom:761.354432pt;}
.y58_c00375{bottom:761.555307pt;}
.y57_c00375{bottom:762.113440pt;}
.y56_c00375{bottom:762.717355pt;}
.y50_c00375{bottom:790.961525pt;}
.y4f_c00375{bottom:790.961995pt;}
.y51_c00375{bottom:790.962123pt;}
.y4e_c00375{bottom:790.962197pt;}
.y4d_c00375{bottom:790.962443pt;}
.y52_c00375{bottom:790.962613pt;}
.y4b_c00375{bottom:790.962635pt;}
.y55_c00375{bottom:790.962859pt;}
.y54_c00375{bottom:790.962891pt;}
.y4c_c00375{bottom:790.963072pt;}
.y53_c00375{bottom:790.963168pt;}
.y4a_c00375{bottom:821.871904pt;}
.y49_c00375{bottom:822.273387pt;}
.y48_c00375{bottom:822.772363pt;}
.y47_c00375{bottom:822.977195pt;}
.y46_c00375{bottom:823.188480pt;}
.y45_c00375{bottom:823.874773pt;}
.y44_c00375{bottom:824.069365pt;}
.y43_c00375{bottom:824.497717pt;}
.y42_c00375{bottom:824.950155pt;}
.y41_c00375{bottom:825.378592pt;}
.y40_c00375{bottom:825.524427pt;}
.y3f_c00375{bottom:826.057333pt;}
.y3e_c00375{bottom:826.099979pt;}
.y3d_c00375{bottom:826.554133pt;}
.y3c_c00375{bottom:852.948768pt;}
.y3b_c00375{bottom:853.338443pt;}
.y3a_c00375{bottom:853.785440pt;}
.y39_c00375{bottom:854.098112pt;}
.y38_c00375{bottom:854.355349pt;}
.y37_c00375{bottom:854.668747pt;}
.y36_c00375{bottom:855.359744pt;}
.y35_c00375{bottom:855.605589pt;}
.y34_c00375{bottom:855.999264pt;}
.y33_c00375{bottom:856.231541pt;}
.y32_c00375{bottom:856.865109pt;}
.y31_c00375{bottom:857.381760pt;}
.y30_c00375{bottom:857.583413pt;}
.y2f_c00375{bottom:857.999317pt;}
.y2e_c00375{bottom:884.029728pt;}
.y2d_c00375{bottom:884.318837pt;}
.y2c_c00375{bottom:884.927776pt;}
.y2b_c00375{bottom:885.268800pt;}
.y2a_c00375{bottom:885.649269pt;}
.y29_c00375{bottom:885.893056pt;}
.y28_c00375{bottom:886.666912pt;}
.y27_c00375{bottom:887.296917pt;}
.y26_c00375{bottom:887.857323pt;}
.y25_c00375{bottom:888.243232pt;}
.y24_c00375{bottom:888.481333pt;}
.y23_c00375{bottom:917.625333pt;}
.y22_c00375{bottom:918.434667pt;}
.y21_c00375{bottom:918.566667pt;}
.y20_c00375{bottom:918.926667pt;}
.y1f_c00375{bottom:919.285333pt;}
.y1e_c00375{bottom:919.653333pt;}
.y1d_c00375{bottom:920.321333pt;}
.y1c_c00375{bottom:920.665333pt;}
.y1b_c00375{bottom:921.253333pt;}
.y1a_c00375{bottom:921.970667pt;}
.y19_c00375{bottom:922.457333pt;}
.y18_c00375{bottom:922.857333pt;}
.y17_c00375{bottom:948.593333pt;}
.y16_c00375{bottom:949.030667pt;}
.y15_c00375{bottom:949.314667pt;}
.y14_c00375{bottom:949.780000pt;}
.y13_c00375{bottom:949.977333pt;}
.y12_c00375{bottom:950.404000pt;}
.y11_c00375{bottom:950.586667pt;}
.y10_c00375{bottom:950.909333pt;}
.yf_c00375{bottom:950.984000pt;}
.ye_c00375{bottom:953.041333pt;}
.yd_c00375{bottom:982.774667pt;}
.yc_c00375{bottom:983.354667pt;}
.yb_c00375{bottom:983.745333pt;}
.ya_c00375{bottom:984.270667pt;}
.y9_c00375{bottom:984.586667pt;}
.y8_c00375{bottom:984.942667pt;}
.y7_c00375{bottom:985.225333pt;}
.y6_c00375{bottom:985.704000pt;}
.y5_c00375{bottom:986.026667pt;}
.y4_c00375{bottom:986.477333pt;}
.y3_c00375{bottom:986.769333pt;}
.y2_c00375{bottom:986.880000pt;}
.y1_c00375{bottom:1014.033333pt;}
.ha_c00375{height:42.666667pt;}
.h7_c00375{height:64.002048pt;}
.h3_c00375{height:69.333333pt;}
.h8_c00375{height:69.335552pt;}
.h4_c00375{height:74.666667pt;}
.h2_c00375{height:80.000000pt;}
.h5_c00375{height:80.002560pt;}
.h6_c00375{height:85.336064pt;}
.h9_c00375{height:85.344255pt;}
.h0_c00375{height:1112.400000pt;}
.h1_c00375{height:1112.666667pt;}
.w0_c00375{width:813.333333pt;}
.x0_c00375{left:0.000000pt;}
.x4f_c00375{left:1.586400pt;}
.x30_c00375{left:6.436917pt;}
.xb_c00375{left:15.704000pt;}
.x59_c00375{left:24.950923pt;}
.x14_c00375{left:33.241333pt;}
.x68_c00375{left:36.950400pt;}
.x1_c00375{left:52.320000pt;}
.xc_c00375{left:57.490667pt;}
.x31_c00375{left:58.424917pt;}
.x3b_c00375{left:65.436181pt;}
.x45_c00375{left:68.156608pt;}
.x3c_c00375{left:71.600235pt;}
.x32_c00375{left:83.631584pt;}
.x50_c00375{left:87.909760pt;}
.x1c_c00375{left:94.168000pt;}
.x26_c00375{left:98.768000pt;}
.x7b_c00375{left:103.920000pt;}
.x5a_c00375{left:107.273525pt;}
.x2_c00375{left:109.440000pt;}
.x72_c00375{left:114.130667pt;}
.x46_c00375{left:115.438304pt;}
.xd_c00375{left:121.810667pt;}
.x1d_c00375{left:127.552000pt;}
.x27_c00375{left:128.530667pt;}
.x47_c00375{left:137.518379pt;}
.x5b_c00375{left:138.714208pt;}
.x62_c00375{left:141.351829pt;}
.x33_c00375{left:148.212917pt;}
.x3_c00375{left:150.720000pt;}
.xe_c00375{left:167.912000pt;}
.x6a_c00375{left:169.194859pt;}
.x69_c00375{left:170.874965pt;}
.x28_c00375{left:176.769333pt;}
.x51_c00375{left:196.453301pt;}
.x6b_c00375{left:197.515339pt;}
.x48_c00375{left:216.720779pt;}
.x5c_c00375{left:217.676597pt;}
.x4_c00375{left:226.560000pt;}
.x1e_c00375{left:227.842667pt;}
.x3d_c00375{left:229.832171pt;}
.xf_c00375{left:236.320000pt;}
.x49_c00375{left:238.080811pt;}
.x29_c00375{left:246.820000pt;}
.x6c_c00375{left:247.917227pt;}
.x34_c00375{left:256.443584pt;}
.x4a_c00375{left:266.641301pt;}
.x73_c00375{left:268.597333pt;}
.x5_c00375{left:276.480000pt;}
.x52_c00375{left:285.736683pt;}
.x3e_c00375{left:294.387349pt;}
.x5d_c00375{left:296.638976pt;}
.x1f_c00375{left:305.456000pt;}
.x74_c00375{left:315.857333pt;}
.x2a_c00375{left:325.570667pt;}
.x6_c00375{left:326.640000pt;}
.x35_c00375{left:336.383584pt;}
.x15_c00375{left:337.792000pt;}
.x53_c00375{left:344.562485pt;}
.x6d_c00375{left:346.560875pt;}
.x4b_c00375{left:351.844096pt;}
.x3f_c00375{left:355.598507pt;}
.x20_c00375{left:361.177333pt;}
.x5e_c00375{left:362.640533pt;}
.x10_c00375{left:372.576000pt;}
.x54_c00375{left:376.704075pt;}
.x40_c00375{left:383.422731pt;}
.x7_c00375{left:384.720000pt;}
.x21_c00375{left:391.876000pt;}
.x63_c00375{left:394.080011pt;}
.x75_c00375{left:394.978667pt;}
.x16_c00375{left:410.004000pt;}
.x64_c00375{left:413.761269pt;}
.x8_c00375{left:416.400000pt;}
.x22_c00375{left:421.793333pt;}
.x36_c00375{left:422.758251pt;}
.x55_c00375{left:433.864533pt;}
.x76_c00375{left:442.060000pt;}
.x11_c00375{left:447.708000pt;}
.x23_c00375{left:451.765333pt;}
.x2b_c00375{left:452.776000pt;}
.x24_c00375{left:462.797333pt;}
.x17_c00375{left:471.021333pt;}
.x56_c00375{left:474.424853pt;}
.x41_c00375{left:481.376843pt;}
.x65_c00375{left:492.003605pt;}
.x37_c00375{left:494.087584pt;}
.x18_c00375{left:499.284000pt;}
.x2c_c00375{left:500.334667pt;}
.x12_c00375{left:503.581333pt;}
.x42_c00375{left:511.621088pt;}
.x6e_c00375{left:515.526357pt;}
.x9_c00375{left:519.360000pt;}
.x57_c00375{left:520.495893pt;}
.x25_c00375{left:530.210667pt;}
.x38_c00375{left:533.171584pt;}
.x43_c00375{left:540.891989pt;}
.x2d_c00375{left:542.962667pt;}
.x77_c00375{left:546.360000pt;}
.x5f_c00375{left:549.605824pt;}
.x66_c00375{left:552.246123pt;}
.x6f_c00375{left:561.127947pt;}
.x78_c00375{left:562.068000pt;}
.xa_c00375{left:564.480000pt;}
.x19_c00375{left:565.784000pt;}
.x67_c00375{left:569.047200pt;}
.x4c_c00375{left:570.490091pt;}
.x13_c00375{left:586.473333pt;}
.x39_c00375{left:589.046251pt;}
.x70_c00375{left:590.648501pt;}
.x60_c00375{left:593.287285pt;}
.x1a_c00375{left:606.313333pt;}
.x44_c00375{left:612.097888pt;}
.x2e_c00375{left:619.080000pt;}
.x79_c00375{left:623.496000pt;}
.x4d_c00375{left:634.331509pt;}
.x3a_c00375{left:637.755584pt;}
.x71_c00375{left:639.370283pt;}
.x2f_c00375{left:655.218667pt;}
.x58_c00375{left:663.721045pt;}
.x4e_c00375{left:665.052139pt;}
.x1b_c00375{left:668.757333pt;}
.x61_c00375{left:674.169792pt;}
.x7a_c00375{left:698.432000pt;}
}





/* 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_c00376 {
    display:none;
  }
  .loading-indicator_c00376.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00376 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_c00376 { 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_c00376" -> "#page-container .classname_c00376")
 */
.pf_c00376 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00376 { /* 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_c00376.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00376 { /* 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_c00376 { /* 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_c00376 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00376 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00376 {overflow:visible;}
  }
}
.c_c00376 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00376 { /* 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_c00376:after { /* webkit #35443 */
  content: '';
}
.t_c00376:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00376 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 */
}
.__c00376 { /* 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_c00376 { /* info for Javascript */
  display:none;
}
.l_c00376 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00376 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00376 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00376: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_c00376 {
    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_c00376.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00376.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_c00376 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00376{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00376;src:url('chunks/assets/font_7c6b9abe6ee2a268480c528b.woff2')format("woff");}.ff1_c00376{font-family:ff1_c00376;line-height:1.000000;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;}
.m1d_c00376{transform:matrix(0.024474,0.000220,-0.002250,0.249990,0,0);-ms-transform:matrix(0.024474,0.000220,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.024474,0.000220,-0.002250,0.249990,0,0);}
.m151_c00376{transform:matrix(0.077388,-0.001625,0.005249,0.249945,0,0);-ms-transform:matrix(0.077388,-0.001625,0.005249,0.249945,0,0);-webkit-transform:matrix(0.077388,-0.001625,0.005249,0.249945,0,0);}
.m14f_c00376{transform:matrix(0.125987,-0.002646,0.005249,0.249945,0,0);-ms-transform:matrix(0.125987,-0.002646,0.005249,0.249945,0,0);-webkit-transform:matrix(0.125987,-0.002646,0.005249,0.249945,0,0);}
.m0_c00376{transform:matrix(0.128270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128270,0.000000,0.000000,0.250000,0,0);}
.mbd_c00376{transform:matrix(0.144949,0.001305,-0.002250,0.249990,0,0);-ms-transform:matrix(0.144949,0.001305,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.144949,0.001305,-0.002250,0.249990,0,0);}
.m12e_c00376{transform:matrix(0.144995,0.001160,-0.002000,0.249992,0,0);-ms-transform:matrix(0.144995,0.001160,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.144995,0.001160,-0.002000,0.249992,0,0);}
.mfe_c00376{transform:matrix(0.146844,0.002496,-0.004249,0.249964,0,0);-ms-transform:matrix(0.146844,0.002496,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.146844,0.002496,-0.004249,0.249964,0,0);}
.mbf_c00376{transform:matrix(0.147914,0.001331,-0.002250,0.249990,0,0);-ms-transform:matrix(0.147914,0.001331,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.147914,0.001331,-0.002250,0.249990,0,0);}
.m133_c00376{transform:matrix(0.148415,0.001187,-0.002000,0.249992,0,0);-ms-transform:matrix(0.148415,0.001187,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.148415,0.001187,-0.002000,0.249992,0,0);}
.m136_c00376{transform:matrix(0.148840,0.001191,-0.002000,0.249992,0,0);-ms-transform:matrix(0.148840,0.001191,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.148840,0.001191,-0.002000,0.249992,0,0);}
.mb8_c00376{transform:matrix(0.149829,0.001348,-0.002250,0.249990,0,0);-ms-transform:matrix(0.149829,0.001348,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.149829,0.001348,-0.002250,0.249990,0,0);}
.m12d_c00376{transform:matrix(0.154420,0.001235,-0.002000,0.249992,0,0);-ms-transform:matrix(0.154420,0.001235,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.154420,0.001235,-0.002000,0.249992,0,0);}
.mc1_c00376{transform:matrix(0.157889,0.001421,-0.002250,0.249990,0,0);-ms-transform:matrix(0.157889,0.001421,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.157889,0.001421,-0.002250,0.249990,0,0);}
.m12c_c00376{transform:matrix(0.158075,0.001265,-0.002000,0.249992,0,0);-ms-transform:matrix(0.158075,0.001265,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.158075,0.001265,-0.002000,0.249992,0,0);}
.m3_c00376{transform:matrix(0.158920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158920,0.000000,0.000000,0.250000,0,0);}
.m131_c00376{transform:matrix(0.159535,0.001276,-0.002000,0.249992,0,0);-ms-transform:matrix(0.159535,0.001276,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.159535,0.001276,-0.002000,0.249992,0,0);}
.m137_c00376{transform:matrix(0.159935,0.001279,-0.002000,0.249992,0,0);-ms-transform:matrix(0.159935,0.001279,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.159935,0.001279,-0.002000,0.249992,0,0);}
.m6_c00376{transform:matrix(0.160200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160200,0.000000,0.000000,0.250000,0,0);}
.mbe_c00376{transform:matrix(0.160658,0.001446,-0.002250,0.249990,0,0);-ms-transform:matrix(0.160658,0.001446,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.160658,0.001446,-0.002250,0.249990,0,0);}
.m12f_c00376{transform:matrix(0.161300,0.001290,-0.002000,0.249992,0,0);-ms-transform:matrix(0.161300,0.001290,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.161300,0.001290,-0.002000,0.249992,0,0);}
.mba_c00376{transform:matrix(0.161548,0.001454,-0.002250,0.249990,0,0);-ms-transform:matrix(0.161548,0.001454,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.161548,0.001454,-0.002250,0.249990,0,0);}
.mb9_c00376{transform:matrix(0.164168,0.001478,-0.002250,0.249990,0,0);-ms-transform:matrix(0.164168,0.001478,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.164168,0.001478,-0.002250,0.249990,0,0);}
.m11d_c00376{transform:matrix(0.164936,0.002804,-0.004249,0.249964,0,0);-ms-transform:matrix(0.164936,0.002804,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.164936,0.002804,-0.004249,0.249964,0,0);}
.m118_c00376{transform:matrix(0.165406,0.002812,-0.004249,0.249964,0,0);-ms-transform:matrix(0.165406,0.002812,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.165406,0.002812,-0.004249,0.249964,0,0);}
.mb7_c00376{transform:matrix(0.166068,0.001495,-0.002250,0.249990,0,0);-ms-transform:matrix(0.166068,0.001495,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.166068,0.001495,-0.002250,0.249990,0,0);}
.mfa_c00376{transform:matrix(0.166946,0.002838,-0.004249,0.249964,0,0);-ms-transform:matrix(0.166946,0.002838,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.166946,0.002838,-0.004249,0.249964,0,0);}
.m4_c00376{transform:matrix(0.167245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167245,0.000000,0.000000,0.250000,0,0);}
.m9_c00376{transform:matrix(0.167448,0.001507,-0.002250,0.249990,0,0);-ms-transform:matrix(0.167448,0.001507,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.167448,0.001507,-0.002250,0.249990,0,0);}
.mbc_c00376{transform:matrix(0.170388,0.001533,-0.002250,0.249990,0,0);-ms-transform:matrix(0.170388,0.001533,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.170388,0.001533,-0.002250,0.249990,0,0);}
.maa_c00376{transform:matrix(0.170943,0.001538,-0.002250,0.249990,0,0);-ms-transform:matrix(0.170943,0.001538,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.170943,0.001538,-0.002250,0.249990,0,0);}
.mf4_c00376{transform:matrix(0.172020,0.002924,-0.004249,0.249964,0,0);-ms-transform:matrix(0.172020,0.002924,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.172020,0.002924,-0.004249,0.249964,0,0);}
.mb_c00376{transform:matrix(0.172138,0.001549,-0.002250,0.249990,0,0);-ms-transform:matrix(0.172138,0.001549,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.172138,0.001549,-0.002250,0.249990,0,0);}
.m152_c00376{transform:matrix(0.172602,-0.003625,0.005249,0.249945,0,0);-ms-transform:matrix(0.172602,-0.003625,0.005249,0.249945,0,0);-webkit-transform:matrix(0.172602,-0.003625,0.005249,0.249945,0,0);}
.mf8_c00376{transform:matrix(0.172720,0.002936,-0.004249,0.249964,0,0);-ms-transform:matrix(0.172720,0.002936,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.172720,0.002936,-0.004249,0.249964,0,0);}
.m94_c00376{transform:matrix(0.173268,0.001559,-0.002250,0.249990,0,0);-ms-transform:matrix(0.173268,0.001559,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.173268,0.001559,-0.002250,0.249990,0,0);}
.m148_c00376{transform:matrix(0.174771,-0.003670,0.005249,0.249945,0,0);-ms-transform:matrix(0.174771,-0.003670,0.005249,0.249945,0,0);-webkit-transform:matrix(0.174771,-0.003670,0.005249,0.249945,0,0);}
.mc3_c00376{transform:matrix(0.174828,0.001573,-0.002250,0.249990,0,0);-ms-transform:matrix(0.174828,0.001573,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.174828,0.001573,-0.002250,0.249990,0,0);}
.m150_c00376{transform:matrix(0.175021,-0.003675,0.005249,0.249945,0,0);-ms-transform:matrix(0.175021,-0.003675,0.005249,0.249945,0,0);-webkit-transform:matrix(0.175021,-0.003675,0.005249,0.249945,0,0);}
.mc0_c00376{transform:matrix(0.175193,0.001577,-0.002250,0.249990,0,0);-ms-transform:matrix(0.175193,0.001577,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.175193,0.001577,-0.002250,0.249990,0,0);}
.m117_c00376{transform:matrix(0.177464,0.003017,-0.004249,0.249964,0,0);-ms-transform:matrix(0.177464,0.003017,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.177464,0.003017,-0.004249,0.249964,0,0);}
.m130_c00376{transform:matrix(0.177494,0.001420,-0.002000,0.249992,0,0);-ms-transform:matrix(0.177494,0.001420,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.177494,0.001420,-0.002000,0.249992,0,0);}
.meb_c00376{transform:matrix(0.178074,0.003027,-0.004249,0.249964,0,0);-ms-transform:matrix(0.178074,0.003027,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.178074,0.003027,-0.004249,0.249964,0,0);}
.mf0_c00376{transform:matrix(0.178589,0.003036,-0.004249,0.249964,0,0);-ms-transform:matrix(0.178589,0.003036,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.178589,0.003036,-0.004249,0.249964,0,0);}
.m154_c00376{transform:matrix(0.178911,-0.003757,0.005249,0.249945,0,0);-ms-transform:matrix(0.178911,-0.003757,0.005249,0.249945,0,0);-webkit-transform:matrix(0.178911,-0.003757,0.005249,0.249945,0,0);}
.ma3_c00376{transform:matrix(0.178933,0.001610,-0.002250,0.249990,0,0);-ms-transform:matrix(0.178933,0.001610,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.178933,0.001610,-0.002250,0.249990,0,0);}
.mf3_c00376{transform:matrix(0.179149,0.003046,-0.004249,0.249964,0,0);-ms-transform:matrix(0.179149,0.003046,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.179149,0.003046,-0.004249,0.249964,0,0);}
.mf_c00376{transform:matrix(0.179463,0.001615,-0.002250,0.249990,0,0);-ms-transform:matrix(0.179463,0.001615,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.179463,0.001615,-0.002250,0.249990,0,0);}
.m138_c00376{transform:matrix(0.179739,0.001438,-0.002000,0.249992,0,0);-ms-transform:matrix(0.179739,0.001438,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.179739,0.001438,-0.002000,0.249992,0,0);}
.m116_c00376{transform:matrix(0.180464,0.003068,-0.004249,0.249964,0,0);-ms-transform:matrix(0.180464,0.003068,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.180464,0.003068,-0.004249,0.249964,0,0);}
.m153_c00376{transform:matrix(0.180515,-0.003791,0.005249,0.249945,0,0);-ms-transform:matrix(0.180515,-0.003791,0.005249,0.249945,0,0);-webkit-transform:matrix(0.180515,-0.003791,0.005249,0.249945,0,0);}
.mee_c00376{transform:matrix(0.180829,0.003074,-0.004249,0.249964,0,0);-ms-transform:matrix(0.180829,0.003074,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.180829,0.003074,-0.004249,0.249964,0,0);}
.mc2_c00376{transform:matrix(0.180833,0.001627,-0.002250,0.249990,0,0);-ms-transform:matrix(0.180833,0.001627,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.180833,0.001627,-0.002250,0.249990,0,0);}
.m11c_c00376{transform:matrix(0.181119,0.003079,-0.004249,0.249964,0,0);-ms-transform:matrix(0.181119,0.003079,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.181119,0.003079,-0.004249,0.249964,0,0);}
.m14d_c00376{transform:matrix(0.181265,-0.003807,0.005249,0.249945,0,0);-ms-transform:matrix(0.181265,-0.003807,0.005249,0.249945,0,0);-webkit-transform:matrix(0.181265,-0.003807,0.005249,0.249945,0,0);}
.m135_c00376{transform:matrix(0.181689,0.001454,-0.002000,0.249992,0,0);-ms-transform:matrix(0.181689,0.001454,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.181689,0.001454,-0.002000,0.249992,0,0);}
.m103_c00376{transform:matrix(0.181879,0.003092,-0.004249,0.249964,0,0);-ms-transform:matrix(0.181879,0.003092,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.181879,0.003092,-0.004249,0.249964,0,0);}
.mf9_c00376{transform:matrix(0.182224,0.003098,-0.004249,0.249964,0,0);-ms-transform:matrix(0.182224,0.003098,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.182224,0.003098,-0.004249,0.249964,0,0);}
.mfc_c00376{transform:matrix(0.182599,0.003104,-0.004249,0.249964,0,0);-ms-transform:matrix(0.182599,0.003104,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.182599,0.003104,-0.004249,0.249964,0,0);}
.m14e_c00376{transform:matrix(0.182780,-0.003838,0.005249,0.249945,0,0);-ms-transform:matrix(0.182780,-0.003838,0.005249,0.249945,0,0);-webkit-transform:matrix(0.182780,-0.003838,0.005249,0.249945,0,0);}
.mbb_c00376{transform:matrix(0.182848,0.001646,-0.002250,0.249990,0,0);-ms-transform:matrix(0.182848,0.001646,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.182848,0.001646,-0.002250,0.249990,0,0);}
.m7_c00376{transform:matrix(0.183953,0.001656,-0.002250,0.249990,0,0);-ms-transform:matrix(0.183953,0.001656,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.183953,0.001656,-0.002250,0.249990,0,0);}
.m11f_c00376{transform:matrix(0.184018,0.003128,-0.004249,0.249964,0,0);-ms-transform:matrix(0.184018,0.003128,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.184018,0.003128,-0.004249,0.249964,0,0);}
.m104_c00376{transform:matrix(0.184448,0.003136,-0.004249,0.249964,0,0);-ms-transform:matrix(0.184448,0.003136,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.184448,0.003136,-0.004249,0.249964,0,0);}
.m115_c00376{transform:matrix(0.184738,0.003141,-0.004249,0.249964,0,0);-ms-transform:matrix(0.184738,0.003141,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.184738,0.003141,-0.004249,0.249964,0,0);}
.m59_c00376{transform:matrix(0.184758,0.001663,-0.002250,0.249990,0,0);-ms-transform:matrix(0.184758,0.001663,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.184758,0.001663,-0.002250,0.249990,0,0);}
.m134_c00376{transform:matrix(0.184994,0.001480,-0.002000,0.249992,0,0);-ms-transform:matrix(0.184994,0.001480,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.184994,0.001480,-0.002000,0.249992,0,0);}
.m14c_c00376{transform:matrix(0.185059,-0.003886,0.005249,0.249945,0,0);-ms-transform:matrix(0.185059,-0.003886,0.005249,0.249945,0,0);-webkit-transform:matrix(0.185059,-0.003886,0.005249,0.249945,0,0);}
.m11e_c00376{transform:matrix(0.185358,0.003151,-0.004249,0.249964,0,0);-ms-transform:matrix(0.185358,0.003151,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.185358,0.003151,-0.004249,0.249964,0,0);}
.m43_c00376{transform:matrix(0.185422,0.001669,-0.002250,0.249990,0,0);-ms-transform:matrix(0.185422,0.001669,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.185422,0.001669,-0.002250,0.249990,0,0);}
.me_c00376{transform:matrix(0.187167,0.001685,-0.002250,0.249990,0,0);-ms-transform:matrix(0.187167,0.001685,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.187167,0.001685,-0.002250,0.249990,0,0);}
.m8_c00376{transform:matrix(0.187672,0.001689,-0.002250,0.249990,0,0);-ms-transform:matrix(0.187672,0.001689,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.187672,0.001689,-0.002250,0.249990,0,0);}
.m74_c00376{transform:matrix(0.187832,0.001690,-0.002250,0.249990,0,0);-ms-transform:matrix(0.187832,0.001690,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.187832,0.001690,-0.002250,0.249990,0,0);}
.m101_c00376{transform:matrix(0.187833,0.003193,-0.004249,0.249964,0,0);-ms-transform:matrix(0.187833,0.003193,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.187833,0.003193,-0.004249,0.249964,0,0);}
.md4_c00376{transform:matrix(0.188392,0.001696,-0.002250,0.249990,0,0);-ms-transform:matrix(0.188392,0.001696,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.188392,0.001696,-0.002250,0.249990,0,0);}
.m132_c00376{transform:matrix(0.188834,0.001511,-0.002000,0.249992,0,0);-ms-transform:matrix(0.188834,0.001511,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.188834,0.001511,-0.002000,0.249992,0,0);}
.mc_c00376{transform:matrix(0.188942,0.001700,-0.002250,0.249990,0,0);-ms-transform:matrix(0.188942,0.001700,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.188942,0.001700,-0.002250,0.249990,0,0);}
.m3a_c00376{transform:matrix(0.189002,0.001701,-0.002250,0.249990,0,0);-ms-transform:matrix(0.189002,0.001701,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.189002,0.001701,-0.002250,0.249990,0,0);}
.ma7_c00376{transform:matrix(0.191092,0.001720,-0.002250,0.249990,0,0);-ms-transform:matrix(0.191092,0.001720,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.191092,0.001720,-0.002250,0.249990,0,0);}
.m107_c00376{transform:matrix(0.191347,0.003253,-0.004249,0.249964,0,0);-ms-transform:matrix(0.191347,0.003253,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.191347,0.003253,-0.004249,0.249964,0,0);}
.m5d_c00376{transform:matrix(0.191492,0.001723,-0.002250,0.249990,0,0);-ms-transform:matrix(0.191492,0.001723,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.191492,0.001723,-0.002250,0.249990,0,0);}
.m57_c00376{transform:matrix(0.191572,0.001724,-0.002250,0.249990,0,0);-ms-transform:matrix(0.191572,0.001724,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.191572,0.001724,-0.002250,0.249990,0,0);}
.ma8_c00376{transform:matrix(0.192077,0.001729,-0.002250,0.249990,0,0);-ms-transform:matrix(0.192077,0.001729,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.192077,0.001729,-0.002250,0.249990,0,0);}
.m11b_c00376{transform:matrix(0.192602,0.003274,-0.004249,0.249964,0,0);-ms-transform:matrix(0.192602,0.003274,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.192602,0.003274,-0.004249,0.249964,0,0);}
.m40_c00376{transform:matrix(0.192732,0.001735,-0.002250,0.249990,0,0);-ms-transform:matrix(0.192732,0.001735,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.192732,0.001735,-0.002250,0.249990,0,0);}
.m10b_c00376{transform:matrix(0.193127,0.003283,-0.004249,0.249964,0,0);-ms-transform:matrix(0.193127,0.003283,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.193127,0.003283,-0.004249,0.249964,0,0);}
.m7e_c00376{transform:matrix(0.193147,0.001738,-0.002250,0.249990,0,0);-ms-transform:matrix(0.193147,0.001738,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.193147,0.001738,-0.002250,0.249990,0,0);}
.mf7_c00376{transform:matrix(0.194062,0.003299,-0.004249,0.249964,0,0);-ms-transform:matrix(0.194062,0.003299,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.194062,0.003299,-0.004249,0.249964,0,0);}
.m37_c00376{transform:matrix(0.194932,0.001754,-0.002250,0.249990,0,0);-ms-transform:matrix(0.194932,0.001754,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.194932,0.001754,-0.002250,0.249990,0,0);}
.m119_c00376{transform:matrix(0.195757,0.003328,-0.004249,0.249964,0,0);-ms-transform:matrix(0.195757,0.003328,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.195757,0.003328,-0.004249,0.249964,0,0);}
.m11a_c00376{transform:matrix(0.195862,0.003330,-0.004249,0.249964,0,0);-ms-transform:matrix(0.195862,0.003330,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.195862,0.003330,-0.004249,0.249964,0,0);}
.md_c00376{transform:matrix(0.196207,0.001766,-0.002250,0.249990,0,0);-ms-transform:matrix(0.196207,0.001766,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.196207,0.001766,-0.002250,0.249990,0,0);}
.mfd_c00376{transform:matrix(0.197791,0.003362,-0.004249,0.249964,0,0);-ms-transform:matrix(0.197791,0.003362,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.197791,0.003362,-0.004249,0.249964,0,0);}
.md6_c00376{transform:matrix(0.197902,0.001781,-0.002250,0.249990,0,0);-ms-transform:matrix(0.197902,0.001781,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.197902,0.001781,-0.002250,0.249990,0,0);}
.m5c_c00376{transform:matrix(0.198257,0.001784,-0.002250,0.249990,0,0);-ms-transform:matrix(0.198257,0.001784,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.198257,0.001784,-0.002250,0.249990,0,0);}
.m34_c00376{transform:matrix(0.198447,0.001786,-0.002250,0.249990,0,0);-ms-transform:matrix(0.198447,0.001786,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.198447,0.001786,-0.002250,0.249990,0,0);}
.m10d_c00376{transform:matrix(0.198506,0.003375,-0.004249,0.249964,0,0);-ms-transform:matrix(0.198506,0.003375,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.198506,0.003375,-0.004249,0.249964,0,0);}
.m113_c00376{transform:matrix(0.198516,0.003375,-0.004249,0.249964,0,0);-ms-transform:matrix(0.198516,0.003375,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.198516,0.003375,-0.004249,0.249964,0,0);}
.m55_c00376{transform:matrix(0.198567,0.001787,-0.002250,0.249990,0,0);-ms-transform:matrix(0.198567,0.001787,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.198567,0.001787,-0.002250,0.249990,0,0);}
.m2_c00376{transform:matrix(0.199060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199060,0.000000,0.000000,0.250000,0,0);}
.md1_c00376{transform:matrix(0.199092,0.001792,-0.002250,0.249990,0,0);-ms-transform:matrix(0.199092,0.001792,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.199092,0.001792,-0.002250,0.249990,0,0);}
.m12_c00376{transform:matrix(0.199112,0.001792,-0.002250,0.249990,0,0);-ms-transform:matrix(0.199112,0.001792,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.199112,0.001792,-0.002250,0.249990,0,0);}
.mfb_c00376{transform:matrix(0.199426,0.003390,-0.004249,0.249964,0,0);-ms-transform:matrix(0.199426,0.003390,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.199426,0.003390,-0.004249,0.249964,0,0);}
.mc8_c00376{transform:matrix(0.199682,0.001797,-0.002250,0.249990,0,0);-ms-transform:matrix(0.199682,0.001797,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.199682,0.001797,-0.002250,0.249990,0,0);}
.mf2_c00376{transform:matrix(0.200096,0.003402,-0.004249,0.249964,0,0);-ms-transform:matrix(0.200096,0.003402,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.200096,0.003402,-0.004249,0.249964,0,0);}
.m100_c00376{transform:matrix(0.200131,0.003402,-0.004249,0.249964,0,0);-ms-transform:matrix(0.200131,0.003402,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.200131,0.003402,-0.004249,0.249964,0,0);}
.m111_c00376{transform:matrix(0.200281,0.003405,-0.004249,0.249964,0,0);-ms-transform:matrix(0.200281,0.003405,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.200281,0.003405,-0.004249,0.249964,0,0);}
.m102_c00376{transform:matrix(0.200356,0.003406,-0.004249,0.249964,0,0);-ms-transform:matrix(0.200356,0.003406,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.200356,0.003406,-0.004249,0.249964,0,0);}
.ma9_c00376{transform:matrix(0.201147,0.001810,-0.002250,0.249990,0,0);-ms-transform:matrix(0.201147,0.001810,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.201147,0.001810,-0.002250,0.249990,0,0);}
.m3d_c00376{transform:matrix(0.202217,0.001820,-0.002250,0.249990,0,0);-ms-transform:matrix(0.202217,0.001820,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.202217,0.001820,-0.002250,0.249990,0,0);}
.mf1_c00376{transform:matrix(0.202231,0.003438,-0.004249,0.249964,0,0);-ms-transform:matrix(0.202231,0.003438,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.202231,0.003438,-0.004249,0.249964,0,0);}
.mff_c00376{transform:matrix(0.202456,0.003442,-0.004249,0.249964,0,0);-ms-transform:matrix(0.202456,0.003442,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.202456,0.003442,-0.004249,0.249964,0,0);}
.m6b_c00376{transform:matrix(0.203082,0.001828,-0.002250,0.249990,0,0);-ms-transform:matrix(0.203082,0.001828,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.203082,0.001828,-0.002250,0.249990,0,0);}
.m90_c00376{transform:matrix(0.203852,0.001835,-0.002250,0.249990,0,0);-ms-transform:matrix(0.203852,0.001835,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.203852,0.001835,-0.002250,0.249990,0,0);}
.m58_c00376{transform:matrix(0.203907,0.001835,-0.002250,0.249990,0,0);-ms-transform:matrix(0.203907,0.001835,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.203907,0.001835,-0.002250,0.249990,0,0);}
.ma4_c00376{transform:matrix(0.203967,0.001836,-0.002250,0.249990,0,0);-ms-transform:matrix(0.203967,0.001836,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.203967,0.001836,-0.002250,0.249990,0,0);}
.mc4_c00376{transform:matrix(0.204182,0.001838,-0.002250,0.249990,0,0);-ms-transform:matrix(0.204182,0.001838,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.204182,0.001838,-0.002250,0.249990,0,0);}
.mac_c00376{transform:matrix(0.204347,0.001839,-0.002250,0.249990,0,0);-ms-transform:matrix(0.204347,0.001839,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.204347,0.001839,-0.002250,0.249990,0,0);}
.m3e_c00376{transform:matrix(0.204452,0.001840,-0.002250,0.249990,0,0);-ms-transform:matrix(0.204452,0.001840,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.204452,0.001840,-0.002250,0.249990,0,0);}
.m105_c00376{transform:matrix(0.204625,0.003479,-0.004249,0.249964,0,0);-ms-transform:matrix(0.204625,0.003479,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.204625,0.003479,-0.004249,0.249964,0,0);}
.m35_c00376{transform:matrix(0.205102,0.001846,-0.002250,0.249990,0,0);-ms-transform:matrix(0.205102,0.001846,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.205102,0.001846,-0.002250,0.249990,0,0);}
.m4d_c00376{transform:matrix(0.205377,0.001848,-0.002250,0.249990,0,0);-ms-transform:matrix(0.205377,0.001848,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.205377,0.001848,-0.002250,0.249990,0,0);}
.m46_c00376{transform:matrix(0.205762,0.001852,-0.002250,0.249990,0,0);-ms-transform:matrix(0.205762,0.001852,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.205762,0.001852,-0.002250,0.249990,0,0);}
.m44_c00376{transform:matrix(0.205797,0.001852,-0.002250,0.249990,0,0);-ms-transform:matrix(0.205797,0.001852,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.205797,0.001852,-0.002250,0.249990,0,0);}
.md9_c00376{transform:matrix(0.206252,0.001856,-0.002250,0.249990,0,0);-ms-transform:matrix(0.206252,0.001856,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.206252,0.001856,-0.002250,0.249990,0,0);}
.m112_c00376{transform:matrix(0.206810,0.003516,-0.004249,0.249964,0,0);-ms-transform:matrix(0.206810,0.003516,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.206810,0.003516,-0.004249,0.249964,0,0);}
.m77_c00376{transform:matrix(0.206817,0.001861,-0.002250,0.249990,0,0);-ms-transform:matrix(0.206817,0.001861,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.206817,0.001861,-0.002250,0.249990,0,0);}
.m3b_c00376{transform:matrix(0.206822,0.001861,-0.002250,0.249990,0,0);-ms-transform:matrix(0.206822,0.001861,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.206822,0.001861,-0.002250,0.249990,0,0);}
.m41_c00376{transform:matrix(0.207007,0.001863,-0.002250,0.249990,0,0);-ms-transform:matrix(0.207007,0.001863,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.207007,0.001863,-0.002250,0.249990,0,0);}
.m14_c00376{transform:matrix(0.207387,0.001866,-0.002250,0.249990,0,0);-ms-transform:matrix(0.207387,0.001866,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.207387,0.001866,-0.002250,0.249990,0,0);}
.m7b_c00376{transform:matrix(0.207417,0.001867,-0.002250,0.249990,0,0);-ms-transform:matrix(0.207417,0.001867,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.207417,0.001867,-0.002250,0.249990,0,0);}
.m11_c00376{transform:matrix(0.207732,0.001870,-0.002250,0.249990,0,0);-ms-transform:matrix(0.207732,0.001870,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.207732,0.001870,-0.002250,0.249990,0,0);}
.md2_c00376{transform:matrix(0.208027,0.001872,-0.002250,0.249990,0,0);-ms-transform:matrix(0.208027,0.001872,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.208027,0.001872,-0.002250,0.249990,0,0);}
.mcb_c00376{transform:matrix(0.208667,0.001878,-0.002250,0.249990,0,0);-ms-transform:matrix(0.208667,0.001878,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.208667,0.001878,-0.002250,0.249990,0,0);}
.ma_c00376{transform:matrix(0.208927,0.001880,-0.002250,0.249990,0,0);-ms-transform:matrix(0.208927,0.001880,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.208927,0.001880,-0.002250,0.249990,0,0);}
.m70_c00376{transform:matrix(0.209292,0.001884,-0.002250,0.249990,0,0);-ms-transform:matrix(0.209292,0.001884,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.209292,0.001884,-0.002250,0.249990,0,0);}
.m13a_c00376{transform:matrix(0.209328,0.001675,-0.002000,0.249992,0,0);-ms-transform:matrix(0.209328,0.001675,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.209328,0.001675,-0.002000,0.249992,0,0);}
.m51_c00376{transform:matrix(0.209926,0.001889,-0.002250,0.249990,0,0);-ms-transform:matrix(0.209926,0.001889,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.209926,0.001889,-0.002250,0.249990,0,0);}
.m7c_c00376{transform:matrix(0.210176,0.001892,-0.002250,0.249990,0,0);-ms-transform:matrix(0.210176,0.001892,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.210176,0.001892,-0.002250,0.249990,0,0);}
.mda_c00376{transform:matrix(0.210406,0.001894,-0.002250,0.249990,0,0);-ms-transform:matrix(0.210406,0.001894,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.210406,0.001894,-0.002250,0.249990,0,0);}
.ma2_c00376{transform:matrix(0.211276,0.001901,-0.002250,0.249990,0,0);-ms-transform:matrix(0.211276,0.001901,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.211276,0.001901,-0.002250,0.249990,0,0);}
.m8c_c00376{transform:matrix(0.211476,0.001903,-0.002250,0.249990,0,0);-ms-transform:matrix(0.211476,0.001903,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.211476,0.001903,-0.002250,0.249990,0,0);}
.md8_c00376{transform:matrix(0.211586,0.001904,-0.002250,0.249990,0,0);-ms-transform:matrix(0.211586,0.001904,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.211586,0.001904,-0.002250,0.249990,0,0);}
.m75_c00376{transform:matrix(0.211651,0.001905,-0.002250,0.249990,0,0);-ms-transform:matrix(0.211651,0.001905,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.211651,0.001905,-0.002250,0.249990,0,0);}
.m10_c00376{transform:matrix(0.211806,0.001906,-0.002250,0.249990,0,0);-ms-transform:matrix(0.211806,0.001906,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.211806,0.001906,-0.002250,0.249990,0,0);}
.m10c_c00376{transform:matrix(0.211869,0.003602,-0.004249,0.249964,0,0);-ms-transform:matrix(0.211869,0.003602,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.211869,0.003602,-0.004249,0.249964,0,0);}
.m10a_c00376{transform:matrix(0.211939,0.003603,-0.004249,0.249964,0,0);-ms-transform:matrix(0.211939,0.003603,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.211939,0.003603,-0.004249,0.249964,0,0);}
.mf5_c00376{transform:matrix(0.211964,0.003603,-0.004249,0.249964,0,0);-ms-transform:matrix(0.211964,0.003603,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.211964,0.003603,-0.004249,0.249964,0,0);}
.mcc_c00376{transform:matrix(0.212611,0.001914,-0.002250,0.249990,0,0);-ms-transform:matrix(0.212611,0.001914,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.212611,0.001914,-0.002250,0.249990,0,0);}
.mad_c00376{transform:matrix(0.212701,0.001914,-0.002250,0.249990,0,0);-ms-transform:matrix(0.212701,0.001914,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.212701,0.001914,-0.002250,0.249990,0,0);}
.m114_c00376{transform:matrix(0.212919,0.003620,-0.004249,0.249964,0,0);-ms-transform:matrix(0.212919,0.003620,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.212919,0.003620,-0.004249,0.249964,0,0);}
.med_c00376{transform:matrix(0.213034,0.003622,-0.004249,0.249964,0,0);-ms-transform:matrix(0.213034,0.003622,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.213034,0.003622,-0.004249,0.249964,0,0);}
.md5_c00376{transform:matrix(0.213131,0.001918,-0.002250,0.249990,0,0);-ms-transform:matrix(0.213131,0.001918,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.213131,0.001918,-0.002250,0.249990,0,0);}
.mec_c00376{transform:matrix(0.213674,0.003632,-0.004249,0.249964,0,0);-ms-transform:matrix(0.213674,0.003632,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.213674,0.003632,-0.004249,0.249964,0,0);}
.m38_c00376{transform:matrix(0.213766,0.001924,-0.002250,0.249990,0,0);-ms-transform:matrix(0.213766,0.001924,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.213766,0.001924,-0.002250,0.249990,0,0);}
.m92_c00376{transform:matrix(0.213851,0.001925,-0.002250,0.249990,0,0);-ms-transform:matrix(0.213851,0.001925,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.213851,0.001925,-0.002250,0.249990,0,0);}
.mef_c00376{transform:matrix(0.215774,0.003668,-0.004249,0.249964,0,0);-ms-transform:matrix(0.215774,0.003668,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.215774,0.003668,-0.004249,0.249964,0,0);}
.m8d_c00376{transform:matrix(0.216876,0.001952,-0.002250,0.249990,0,0);-ms-transform:matrix(0.216876,0.001952,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.216876,0.001952,-0.002250,0.249990,0,0);}
.m49_c00376{transform:matrix(0.217356,0.001956,-0.002250,0.249990,0,0);-ms-transform:matrix(0.217356,0.001956,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.217356,0.001956,-0.002250,0.249990,0,0);}
.m106_c00376{transform:matrix(0.219388,0.003730,-0.004249,0.249964,0,0);-ms-transform:matrix(0.219388,0.003730,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.219388,0.003730,-0.004249,0.249964,0,0);}
.ma5_c00376{transform:matrix(0.219471,0.001975,-0.002250,0.249990,0,0);-ms-transform:matrix(0.219471,0.001975,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.219471,0.001975,-0.002250,0.249990,0,0);}
.m20_c00376{transform:matrix(0.219791,0.001978,-0.002250,0.249990,0,0);-ms-transform:matrix(0.219791,0.001978,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.219791,0.001978,-0.002250,0.249990,0,0);}
.m91_c00376{transform:matrix(0.219831,0.001978,-0.002250,0.249990,0,0);-ms-transform:matrix(0.219831,0.001978,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.219831,0.001978,-0.002250,0.249990,0,0);}
.mc6_c00376{transform:matrix(0.220621,0.001986,-0.002250,0.249990,0,0);-ms-transform:matrix(0.220621,0.001986,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.220621,0.001986,-0.002250,0.249990,0,0);}
.ma6_c00376{transform:matrix(0.220871,0.001988,-0.002250,0.249990,0,0);-ms-transform:matrix(0.220871,0.001988,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.220871,0.001988,-0.002250,0.249990,0,0);}
.m5a_c00376{transform:matrix(0.221326,0.001992,-0.002250,0.249990,0,0);-ms-transform:matrix(0.221326,0.001992,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.221326,0.001992,-0.002250,0.249990,0,0);}
.m48_c00376{transform:matrix(0.221401,0.001993,-0.002250,0.249990,0,0);-ms-transform:matrix(0.221401,0.001993,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.221401,0.001993,-0.002250,0.249990,0,0);}
.mf6_c00376{transform:matrix(0.221798,0.003771,-0.004249,0.249964,0,0);-ms-transform:matrix(0.221798,0.003771,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.221798,0.003771,-0.004249,0.249964,0,0);}
.m98_c00376{transform:matrix(0.221871,0.001997,-0.002250,0.249990,0,0);-ms-transform:matrix(0.221871,0.001997,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.221871,0.001997,-0.002250,0.249990,0,0);}
.mab_c00376{transform:matrix(0.222056,0.001999,-0.002250,0.249990,0,0);-ms-transform:matrix(0.222056,0.001999,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.222056,0.001999,-0.002250,0.249990,0,0);}
.m72_c00376{transform:matrix(0.222116,0.001999,-0.002250,0.249990,0,0);-ms-transform:matrix(0.222116,0.001999,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.222116,0.001999,-0.002250,0.249990,0,0);}
.m7d_c00376{transform:matrix(0.222151,0.001999,-0.002250,0.249990,0,0);-ms-transform:matrix(0.222151,0.001999,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.222151,0.001999,-0.002250,0.249990,0,0);}
.m2c_c00376{transform:matrix(0.222616,0.002004,-0.002250,0.249990,0,0);-ms-transform:matrix(0.222616,0.002004,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.222616,0.002004,-0.002250,0.249990,0,0);}
.m42_c00376{transform:matrix(0.222661,0.002004,-0.002250,0.249990,0,0);-ms-transform:matrix(0.222661,0.002004,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.222661,0.002004,-0.002250,0.249990,0,0);}
.m45_c00376{transform:matrix(0.222951,0.002007,-0.002250,0.249990,0,0);-ms-transform:matrix(0.222951,0.002007,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.222951,0.002007,-0.002250,0.249990,0,0);}
.me4_c00376{transform:matrix(0.223938,0.003807,-0.004249,0.249964,0,0);-ms-transform:matrix(0.223938,0.003807,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.223938,0.003807,-0.004249,0.249964,0,0);}
.m2a_c00376{transform:matrix(0.223961,0.002016,-0.002250,0.249990,0,0);-ms-transform:matrix(0.223961,0.002016,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.223961,0.002016,-0.002250,0.249990,0,0);}
.m62_c00376{transform:matrix(0.224061,0.002017,-0.002250,0.249990,0,0);-ms-transform:matrix(0.224061,0.002017,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.224061,0.002017,-0.002250,0.249990,0,0);}
.mce_c00376{transform:matrix(0.224071,0.002017,-0.002250,0.249990,0,0);-ms-transform:matrix(0.224071,0.002017,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.224071,0.002017,-0.002250,0.249990,0,0);}
.m6a_c00376{transform:matrix(0.224491,0.002020,-0.002250,0.249990,0,0);-ms-transform:matrix(0.224491,0.002020,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.224491,0.002020,-0.002250,0.249990,0,0);}
.m93_c00376{transform:matrix(0.224601,0.002021,-0.002250,0.249990,0,0);-ms-transform:matrix(0.224601,0.002021,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.224601,0.002021,-0.002250,0.249990,0,0);}
.me2_c00376{transform:matrix(0.224648,0.003819,-0.004249,0.249964,0,0);-ms-transform:matrix(0.224648,0.003819,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.224648,0.003819,-0.004249,0.249964,0,0);}
.m10e_c00376{transform:matrix(0.225032,0.003826,-0.004249,0.249964,0,0);-ms-transform:matrix(0.225032,0.003826,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.225032,0.003826,-0.004249,0.249964,0,0);}
.m52_c00376{transform:matrix(0.225456,0.002029,-0.002250,0.249990,0,0);-ms-transform:matrix(0.225456,0.002029,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.225456,0.002029,-0.002250,0.249990,0,0);}
.m4b_c00376{transform:matrix(0.225726,0.002032,-0.002250,0.249990,0,0);-ms-transform:matrix(0.225726,0.002032,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.225726,0.002032,-0.002250,0.249990,0,0);}
.m19_c00376{transform:matrix(0.226036,0.002034,-0.002250,0.249990,0,0);-ms-transform:matrix(0.226036,0.002034,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.226036,0.002034,-0.002250,0.249990,0,0);}
.mb5_c00376{transform:matrix(0.226056,0.002035,-0.002250,0.249990,0,0);-ms-transform:matrix(0.226056,0.002035,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.226056,0.002035,-0.002250,0.249990,0,0);}
.m120_c00376{transform:matrix(0.226077,0.003843,-0.004249,0.249964,0,0);-ms-transform:matrix(0.226077,0.003843,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.226077,0.003843,-0.004249,0.249964,0,0);}
.m68_c00376{transform:matrix(0.226591,0.002039,-0.002250,0.249990,0,0);-ms-transform:matrix(0.226591,0.002039,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.226591,0.002039,-0.002250,0.249990,0,0);}
.m109_c00376{transform:matrix(0.226747,0.003855,-0.004249,0.249964,0,0);-ms-transform:matrix(0.226747,0.003855,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.226747,0.003855,-0.004249,0.249964,0,0);}
.m1a_c00376{transform:matrix(0.226766,0.002041,-0.002250,0.249990,0,0);-ms-transform:matrix(0.226766,0.002041,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.226766,0.002041,-0.002250,0.249990,0,0);}
.m9d_c00376{transform:matrix(0.226956,0.002043,-0.002250,0.249990,0,0);-ms-transform:matrix(0.226956,0.002043,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.226956,0.002043,-0.002250,0.249990,0,0);}
.m54_c00376{transform:matrix(0.227256,0.002045,-0.002250,0.249990,0,0);-ms-transform:matrix(0.227256,0.002045,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.227256,0.002045,-0.002250,0.249990,0,0);}
.m3c_c00376{transform:matrix(0.227851,0.002051,-0.002250,0.249990,0,0);-ms-transform:matrix(0.227851,0.002051,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.227851,0.002051,-0.002250,0.249990,0,0);}
.m8a_c00376{transform:matrix(0.228336,0.002055,-0.002250,0.249990,0,0);-ms-transform:matrix(0.228336,0.002055,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.228336,0.002055,-0.002250,0.249990,0,0);}
.m79_c00376{transform:matrix(0.228371,0.002055,-0.002250,0.249990,0,0);-ms-transform:matrix(0.228371,0.002055,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.228371,0.002055,-0.002250,0.249990,0,0);}
.m7f_c00376{transform:matrix(0.228436,0.002056,-0.002250,0.249990,0,0);-ms-transform:matrix(0.228436,0.002056,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.228436,0.002056,-0.002250,0.249990,0,0);}
.m3f_c00376{transform:matrix(0.228476,0.002056,-0.002250,0.249990,0,0);-ms-transform:matrix(0.228476,0.002056,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.228476,0.002056,-0.002250,0.249990,0,0);}
.m129_c00376{transform:matrix(0.228782,0.003889,-0.004249,0.249964,0,0);-ms-transform:matrix(0.228782,0.003889,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.228782,0.003889,-0.004249,0.249964,0,0);}
.m31_c00376{transform:matrix(0.230276,0.002072,-0.002250,0.249990,0,0);-ms-transform:matrix(0.230276,0.002072,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.230276,0.002072,-0.002250,0.249990,0,0);}
.m5b_c00376{transform:matrix(0.230671,0.002076,-0.002250,0.249990,0,0);-ms-transform:matrix(0.230671,0.002076,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.230671,0.002076,-0.002250,0.249990,0,0);}
.m39_c00376{transform:matrix(0.231066,0.002080,-0.002250,0.249990,0,0);-ms-transform:matrix(0.231066,0.002080,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.231066,0.002080,-0.002250,0.249990,0,0);}
.m47_c00376{transform:matrix(0.231561,0.002084,-0.002250,0.249990,0,0);-ms-transform:matrix(0.231561,0.002084,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.231561,0.002084,-0.002250,0.249990,0,0);}
.m63_c00376{transform:matrix(0.231621,0.002085,-0.002250,0.249990,0,0);-ms-transform:matrix(0.231621,0.002085,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.231621,0.002085,-0.002250,0.249990,0,0);}
.m146_c00376{transform:matrix(0.232344,-0.004879,0.005249,0.249945,0,0);-ms-transform:matrix(0.232344,-0.004879,0.005249,0.249945,0,0);-webkit-transform:matrix(0.232344,-0.004879,0.005249,0.249945,0,0);}
.m95_c00376{transform:matrix(0.232361,0.002091,-0.002250,0.249990,0,0);-ms-transform:matrix(0.232361,0.002091,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.232361,0.002091,-0.002250,0.249990,0,0);}
.m1b_c00376{transform:matrix(0.232661,0.002094,-0.002250,0.249990,0,0);-ms-transform:matrix(0.232661,0.002094,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.232661,0.002094,-0.002250,0.249990,0,0);}
.m71_c00376{transform:matrix(0.232936,0.002096,-0.002250,0.249990,0,0);-ms-transform:matrix(0.232936,0.002096,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.232936,0.002096,-0.002250,0.249990,0,0);}
.md7_c00376{transform:matrix(0.233431,0.002101,-0.002250,0.249990,0,0);-ms-transform:matrix(0.233431,0.002101,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.233431,0.002101,-0.002250,0.249990,0,0);}
.mc5_c00376{transform:matrix(0.234001,0.002106,-0.002250,0.249990,0,0);-ms-transform:matrix(0.234001,0.002106,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.234001,0.002106,-0.002250,0.249990,0,0);}
.m7a_c00376{transform:matrix(0.234156,0.002107,-0.002250,0.249990,0,0);-ms-transform:matrix(0.234156,0.002107,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.234156,0.002107,-0.002250,0.249990,0,0);}
.m8f_c00376{transform:matrix(0.234980,0.002115,-0.002250,0.249990,0,0);-ms-transform:matrix(0.234980,0.002115,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.234980,0.002115,-0.002250,0.249990,0,0);}
.mb0_c00376{transform:matrix(0.235070,0.002116,-0.002250,0.249990,0,0);-ms-transform:matrix(0.235070,0.002116,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.235070,0.002116,-0.002250,0.249990,0,0);}
.m15_c00376{transform:matrix(0.235285,0.002118,-0.002250,0.249990,0,0);-ms-transform:matrix(0.235285,0.002118,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.235285,0.002118,-0.002250,0.249990,0,0);}
.m108_c00376{transform:matrix(0.235986,0.004012,-0.004249,0.249964,0,0);-ms-transform:matrix(0.235986,0.004012,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.235986,0.004012,-0.004249,0.249964,0,0);}
.m76_c00376{transform:matrix(0.235990,0.002124,-0.002250,0.249990,0,0);-ms-transform:matrix(0.235990,0.002124,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.235990,0.002124,-0.002250,0.249990,0,0);}
.m33_c00376{transform:matrix(0.236365,0.002127,-0.002250,0.249990,0,0);-ms-transform:matrix(0.236365,0.002127,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.236365,0.002127,-0.002250,0.249990,0,0);}
.m4a_c00376{transform:matrix(0.236940,0.002132,-0.002250,0.249990,0,0);-ms-transform:matrix(0.236940,0.002132,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.236940,0.002132,-0.002250,0.249990,0,0);}
.m4e_c00376{transform:matrix(0.237025,0.002133,-0.002250,0.249990,0,0);-ms-transform:matrix(0.237025,0.002133,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.237025,0.002133,-0.002250,0.249990,0,0);}
.mae_c00376{transform:matrix(0.237175,0.002135,-0.002250,0.249990,0,0);-ms-transform:matrix(0.237175,0.002135,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.237175,0.002135,-0.002250,0.249990,0,0);}
.m64_c00376{transform:matrix(0.238145,0.002143,-0.002250,0.249990,0,0);-ms-transform:matrix(0.238145,0.002143,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.238145,0.002143,-0.002250,0.249990,0,0);}
.md3_c00376{transform:matrix(0.238555,0.002147,-0.002250,0.249990,0,0);-ms-transform:matrix(0.238555,0.002147,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.238555,0.002147,-0.002250,0.249990,0,0);}
.m66_c00376{transform:matrix(0.238710,0.002148,-0.002250,0.249990,0,0);-ms-transform:matrix(0.238710,0.002148,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.238710,0.002148,-0.002250,0.249990,0,0);}
.m87_c00376{transform:matrix(0.239075,0.002152,-0.002250,0.249990,0,0);-ms-transform:matrix(0.239075,0.002152,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.239075,0.002152,-0.002250,0.249990,0,0);}
.m122_c00376{transform:matrix(0.239195,0.004066,-0.004249,0.249964,0,0);-ms-transform:matrix(0.239195,0.004066,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.239195,0.004066,-0.004249,0.249964,0,0);}
.m9b_c00376{transform:matrix(0.239285,0.002154,-0.002250,0.249990,0,0);-ms-transform:matrix(0.239285,0.002154,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.239285,0.002154,-0.002250,0.249990,0,0);}
.m2e_c00376{transform:matrix(0.239300,0.002154,-0.002250,0.249990,0,0);-ms-transform:matrix(0.239300,0.002154,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.239300,0.002154,-0.002250,0.249990,0,0);}
.m36_c00376{transform:matrix(0.239370,0.002154,-0.002250,0.249990,0,0);-ms-transform:matrix(0.239370,0.002154,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.239370,0.002154,-0.002250,0.249990,0,0);}
.me1_c00376{transform:matrix(0.239470,0.004071,-0.004249,0.249964,0,0);-ms-transform:matrix(0.239470,0.004071,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.239470,0.004071,-0.004249,0.249964,0,0);}
.m8e_c00376{transform:matrix(0.239670,0.002157,-0.002250,0.249990,0,0);-ms-transform:matrix(0.239670,0.002157,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.239670,0.002157,-0.002250,0.249990,0,0);}
.m96_c00376{transform:matrix(0.239900,0.002159,-0.002250,0.249990,0,0);-ms-transform:matrix(0.239900,0.002159,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.239900,0.002159,-0.002250,0.249990,0,0);}
.m61_c00376{transform:matrix(0.240320,0.002163,-0.002250,0.249990,0,0);-ms-transform:matrix(0.240320,0.002163,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.240320,0.002163,-0.002250,0.249990,0,0);}
.m6d_c00376{transform:matrix(0.240445,0.002164,-0.002250,0.249990,0,0);-ms-transform:matrix(0.240445,0.002164,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.240445,0.002164,-0.002250,0.249990,0,0);}
.m23_c00376{transform:matrix(0.240720,0.002166,-0.002250,0.249990,0,0);-ms-transform:matrix(0.240720,0.002166,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.240720,0.002166,-0.002250,0.249990,0,0);}
.m99_c00376{transform:matrix(0.241405,0.002173,-0.002250,0.249990,0,0);-ms-transform:matrix(0.241405,0.002173,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.241405,0.002173,-0.002250,0.249990,0,0);}
.m8b_c00376{transform:matrix(0.242475,0.002182,-0.002250,0.249990,0,0);-ms-transform:matrix(0.242475,0.002182,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.242475,0.002182,-0.002250,0.249990,0,0);}
.m13_c00376{transform:matrix(0.242500,0.002183,-0.002250,0.249990,0,0);-ms-transform:matrix(0.242500,0.002183,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.242500,0.002183,-0.002250,0.249990,0,0);}
.mca_c00376{transform:matrix(0.243285,0.002190,-0.002250,0.249990,0,0);-ms-transform:matrix(0.243285,0.002190,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.243285,0.002190,-0.002250,0.249990,0,0);}
.me6_c00376{transform:matrix(0.243460,0.004139,-0.004249,0.249964,0,0);-ms-transform:matrix(0.243460,0.004139,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.243460,0.004139,-0.004249,0.249964,0,0);}
.m73_c00376{transform:matrix(0.243480,0.002191,-0.002250,0.249990,0,0);-ms-transform:matrix(0.243480,0.002191,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.243480,0.002191,-0.002250,0.249990,0,0);}
.me9_c00376{transform:matrix(0.244220,0.004152,-0.004249,0.249964,0,0);-ms-transform:matrix(0.244220,0.004152,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.244220,0.004152,-0.004249,0.249964,0,0);}
.mb3_c00376{transform:matrix(0.244760,0.002203,-0.002250,0.249990,0,0);-ms-transform:matrix(0.244760,0.002203,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.244760,0.002203,-0.002250,0.249990,0,0);}
.mc7_c00376{transform:matrix(0.244860,0.002204,-0.002250,0.249990,0,0);-ms-transform:matrix(0.244860,0.002204,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.244860,0.002204,-0.002250,0.249990,0,0);}
.mb2_c00376{transform:matrix(0.245205,0.002207,-0.002250,0.249990,0,0);-ms-transform:matrix(0.245205,0.002207,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.245205,0.002207,-0.002250,0.249990,0,0);}
.m78_c00376{transform:matrix(0.245670,0.002211,-0.002250,0.249990,0,0);-ms-transform:matrix(0.245670,0.002211,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.245670,0.002211,-0.002250,0.249990,0,0);}
.m1c_c00376{transform:matrix(0.246535,0.002219,-0.002250,0.249990,0,0);-ms-transform:matrix(0.246535,0.002219,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.246535,0.002219,-0.002250,0.249990,0,0);}
.m147_c00376{transform:matrix(0.246976,-0.005186,0.005249,0.249945,0,0);-ms-transform:matrix(0.246976,-0.005186,0.005249,0.249945,0,0);-webkit-transform:matrix(0.246976,-0.005186,0.005249,0.249945,0,0);}
.mdb_c00376{transform:matrix(0.247415,0.002227,-0.002250,0.249990,0,0);-ms-transform:matrix(0.247415,0.002227,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.247415,0.002227,-0.002250,0.249990,0,0);}
.m25_c00376{transform:matrix(0.247430,0.002227,-0.002250,0.249990,0,0);-ms-transform:matrix(0.247430,0.002227,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.247430,0.002227,-0.002250,0.249990,0,0);}
.m13f_c00376{transform:matrix(0.248197,0.001986,-0.002000,0.249992,0,0);-ms-transform:matrix(0.248197,0.001986,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.248197,0.001986,-0.002000,0.249992,0,0);}
.mcf_c00376{transform:matrix(0.248240,0.002234,-0.002250,0.249990,0,0);-ms-transform:matrix(0.248240,0.002234,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.248240,0.002234,-0.002250,0.249990,0,0);}
.m17_c00376{transform:matrix(0.248665,0.002238,-0.002250,0.249990,0,0);-ms-transform:matrix(0.248665,0.002238,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.248665,0.002238,-0.002250,0.249990,0,0);}
.m6c_c00376{transform:matrix(0.248840,0.002240,-0.002250,0.249990,0,0);-ms-transform:matrix(0.248840,0.002240,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.248840,0.002240,-0.002250,0.249990,0,0);}
.mc9_c00376{transform:matrix(0.248845,0.002240,-0.002250,0.249990,0,0);-ms-transform:matrix(0.248845,0.002240,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.248845,0.002240,-0.002250,0.249990,0,0);}
.m4f_c00376{transform:matrix(0.249250,0.002243,-0.002250,0.249990,0,0);-ms-transform:matrix(0.249250,0.002243,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.249250,0.002243,-0.002250,0.249990,0,0);}
.m18_c00376{transform:matrix(0.249780,0.002248,-0.002250,0.249990,0,0);-ms-transform:matrix(0.249780,0.002248,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.249780,0.002248,-0.002250,0.249990,0,0);}
.me0_c00376{transform:matrix(0.249924,0.004249,-0.004249,0.249964,0,0);-ms-transform:matrix(0.249924,0.004249,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.249924,0.004249,-0.004249,0.249964,0,0);}
.m22_c00376{transform:matrix(0.250145,0.002251,-0.002250,0.249990,0,0);-ms-transform:matrix(0.250145,0.002251,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.250145,0.002251,-0.002250,0.249990,0,0);}
.m16_c00376{transform:matrix(0.250415,0.002254,-0.002250,0.249990,0,0);-ms-transform:matrix(0.250415,0.002254,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.250415,0.002254,-0.002250,0.249990,0,0);}
.m4c_c00376{transform:matrix(0.250460,0.002254,-0.002250,0.249990,0,0);-ms-transform:matrix(0.250460,0.002254,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.250460,0.002254,-0.002250,0.249990,0,0);}
.m6e_c00376{transform:matrix(0.251175,0.002261,-0.002250,0.249990,0,0);-ms-transform:matrix(0.251175,0.002261,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.251175,0.002261,-0.002250,0.249990,0,0);}
.m60_c00376{transform:matrix(0.251800,0.002266,-0.002250,0.249990,0,0);-ms-transform:matrix(0.251800,0.002266,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.251800,0.002266,-0.002250,0.249990,0,0);}
.m12b_c00376{transform:matrix(0.252808,0.004298,-0.004249,0.249964,0,0);-ms-transform:matrix(0.252808,0.004298,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.252808,0.004298,-0.004249,0.249964,0,0);}
.m53_c00376{transform:matrix(0.252830,0.002275,-0.002250,0.249990,0,0);-ms-transform:matrix(0.252830,0.002275,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.252830,0.002275,-0.002250,0.249990,0,0);}
.m149_c00376{transform:matrix(0.253144,-0.005316,0.005249,0.249945,0,0);-ms-transform:matrix(0.253144,-0.005316,0.005249,0.249945,0,0);-webkit-transform:matrix(0.253144,-0.005316,0.005249,0.249945,0,0);}
.m28_c00376{transform:matrix(0.253310,0.002280,-0.002250,0.249990,0,0);-ms-transform:matrix(0.253310,0.002280,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.253310,0.002280,-0.002250,0.249990,0,0);}
.m6f_c00376{transform:matrix(0.253425,0.002281,-0.002250,0.249990,0,0);-ms-transform:matrix(0.253425,0.002281,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.253425,0.002281,-0.002250,0.249990,0,0);}
.me5_c00376{transform:matrix(0.253748,0.004314,-0.004249,0.249964,0,0);-ms-transform:matrix(0.253748,0.004314,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.253748,0.004314,-0.004249,0.249964,0,0);}
.m14b_c00376{transform:matrix(0.253819,-0.005330,0.005249,0.249945,0,0);-ms-transform:matrix(0.253819,-0.005330,0.005249,0.249945,0,0);-webkit-transform:matrix(0.253819,-0.005330,0.005249,0.249945,0,0);}
.md0_c00376{transform:matrix(0.253910,0.002285,-0.002250,0.249990,0,0);-ms-transform:matrix(0.253910,0.002285,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.253910,0.002285,-0.002250,0.249990,0,0);}
.m14a_c00376{transform:matrix(0.254069,-0.005335,0.005249,0.249945,0,0);-ms-transform:matrix(0.254069,-0.005335,0.005249,0.249945,0,0);-webkit-transform:matrix(0.254069,-0.005335,0.005249,0.249945,0,0);}
.m67_c00376{transform:matrix(0.254415,0.002290,-0.002250,0.249990,0,0);-ms-transform:matrix(0.254415,0.002290,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.254415,0.002290,-0.002250,0.249990,0,0);}
.mb6_c00376{transform:matrix(0.254575,0.002291,-0.002250,0.249990,0,0);-ms-transform:matrix(0.254575,0.002291,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.254575,0.002291,-0.002250,0.249990,0,0);}
.ma0_c00376{transform:matrix(0.254745,0.002293,-0.002250,0.249990,0,0);-ms-transform:matrix(0.254745,0.002293,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.254745,0.002293,-0.002250,0.249990,0,0);}
.m5_c00376{transform:matrix(0.254835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254835,0.000000,0.000000,0.250000,0,0);}
.m65_c00376{transform:matrix(0.255060,0.002296,-0.002250,0.249990,0,0);-ms-transform:matrix(0.255060,0.002296,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.255060,0.002296,-0.002250,0.249990,0,0);}
.mcd_c00376{transform:matrix(0.255400,0.002299,-0.002250,0.249990,0,0);-ms-transform:matrix(0.255400,0.002299,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.255400,0.002299,-0.002250,0.249990,0,0);}
.m143_c00376{transform:matrix(0.256273,-0.005382,0.005249,0.249945,0,0);-ms-transform:matrix(0.256273,-0.005382,0.005249,0.249945,0,0);-webkit-transform:matrix(0.256273,-0.005382,0.005249,0.249945,0,0);}
.m97_c00376{transform:matrix(0.256470,0.002308,-0.002250,0.249990,0,0);-ms-transform:matrix(0.256470,0.002308,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.256470,0.002308,-0.002250,0.249990,0,0);}
.m2f_c00376{transform:matrix(0.257990,0.002322,-0.002250,0.249990,0,0);-ms-transform:matrix(0.257990,0.002322,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.257990,0.002322,-0.002250,0.249990,0,0);}
.m81_c00376{transform:matrix(0.258115,0.002323,-0.002250,0.249990,0,0);-ms-transform:matrix(0.258115,0.002323,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.258115,0.002323,-0.002250,0.249990,0,0);}
.m121_c00376{transform:matrix(0.259577,0.004413,-0.004249,0.249964,0,0);-ms-transform:matrix(0.259577,0.004413,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.259577,0.004413,-0.004249,0.249964,0,0);}
.m1_c00376{transform:matrix(0.260940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260940,0.000000,0.000000,0.250000,0,0);}
.me3_c00376{transform:matrix(0.261042,0.004438,-0.004249,0.249964,0,0);-ms-transform:matrix(0.261042,0.004438,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.261042,0.004438,-0.004249,0.249964,0,0);}
.m5f_c00376{transform:matrix(0.261099,0.002350,-0.002250,0.249990,0,0);-ms-transform:matrix(0.261099,0.002350,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.261099,0.002350,-0.002250,0.249990,0,0);}
.m21_c00376{transform:matrix(0.261929,0.002357,-0.002250,0.249990,0,0);-ms-transform:matrix(0.261929,0.002357,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.261929,0.002357,-0.002250,0.249990,0,0);}
.m9e_c00376{transform:matrix(0.261934,0.002357,-0.002250,0.249990,0,0);-ms-transform:matrix(0.261934,0.002357,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.261934,0.002357,-0.002250,0.249990,0,0);}
.m2d_c00376{transform:matrix(0.262439,0.002362,-0.002250,0.249990,0,0);-ms-transform:matrix(0.262439,0.002362,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.262439,0.002362,-0.002250,0.249990,0,0);}
.mdc_c00376{transform:matrix(0.262579,0.002363,-0.002250,0.249990,0,0);-ms-transform:matrix(0.262579,0.002363,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.262579,0.002363,-0.002250,0.249990,0,0);}
.mdd_c00376{transform:matrix(0.263569,0.002372,-0.002250,0.249990,0,0);-ms-transform:matrix(0.263569,0.002372,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.263569,0.002372,-0.002250,0.249990,0,0);}
.m2b_c00376{transform:matrix(0.263649,0.002373,-0.002250,0.249990,0,0);-ms-transform:matrix(0.263649,0.002373,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.263649,0.002373,-0.002250,0.249990,0,0);}
.m50_c00376{transform:matrix(0.264689,0.002382,-0.002250,0.249990,0,0);-ms-transform:matrix(0.264689,0.002382,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.264689,0.002382,-0.002250,0.249990,0,0);}
.m89_c00376{transform:matrix(0.265119,0.002386,-0.002250,0.249990,0,0);-ms-transform:matrix(0.265119,0.002386,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.265119,0.002386,-0.002250,0.249990,0,0);}
.mb1_c00376{transform:matrix(0.265264,0.002387,-0.002250,0.249990,0,0);-ms-transform:matrix(0.265264,0.002387,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.265264,0.002387,-0.002250,0.249990,0,0);}
.m144_c00376{transform:matrix(0.265436,-0.005574,0.005249,0.249945,0,0);-ms-transform:matrix(0.265436,-0.005574,0.005249,0.249945,0,0);-webkit-transform:matrix(0.265436,-0.005574,0.005249,0.249945,0,0);}
.m69_c00376{transform:matrix(0.265814,0.002392,-0.002250,0.249990,0,0);-ms-transform:matrix(0.265814,0.002392,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.265814,0.002392,-0.002250,0.249990,0,0);}
.m29_c00376{transform:matrix(0.266239,0.002396,-0.002250,0.249990,0,0);-ms-transform:matrix(0.266239,0.002396,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.266239,0.002396,-0.002250,0.249990,0,0);}
.m86_c00376{transform:matrix(0.267499,0.002407,-0.002250,0.249990,0,0);-ms-transform:matrix(0.267499,0.002407,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.267499,0.002407,-0.002250,0.249990,0,0);}
.m30_c00376{transform:matrix(0.268559,0.002417,-0.002250,0.249990,0,0);-ms-transform:matrix(0.268559,0.002417,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.268559,0.002417,-0.002250,0.249990,0,0);}
.m9a_c00376{transform:matrix(0.268664,0.002418,-0.002250,0.249990,0,0);-ms-transform:matrix(0.268664,0.002418,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.268664,0.002418,-0.002250,0.249990,0,0);}
.m126_c00376{transform:matrix(0.271336,0.004613,-0.004249,0.249964,0,0);-ms-transform:matrix(0.271336,0.004613,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.271336,0.004613,-0.004249,0.249964,0,0);}
.me8_c00376{transform:matrix(0.272136,0.004626,-0.004249,0.249964,0,0);-ms-transform:matrix(0.272136,0.004626,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.272136,0.004626,-0.004249,0.249964,0,0);}
.m12a_c00376{transform:matrix(0.272316,0.004629,-0.004249,0.249964,0,0);-ms-transform:matrix(0.272316,0.004629,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.272316,0.004629,-0.004249,0.249964,0,0);}
.ma1_c00376{transform:matrix(0.272884,0.002456,-0.002250,0.249990,0,0);-ms-transform:matrix(0.272884,0.002456,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.272884,0.002456,-0.002250,0.249990,0,0);}
.maf_c00376{transform:matrix(0.273754,0.002464,-0.002250,0.249990,0,0);-ms-transform:matrix(0.273754,0.002464,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.273754,0.002464,-0.002250,0.249990,0,0);}
.mb4_c00376{transform:matrix(0.273964,0.002466,-0.002250,0.249990,0,0);-ms-transform:matrix(0.273964,0.002466,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.273964,0.002466,-0.002250,0.249990,0,0);}
.m9f_c00376{transform:matrix(0.274524,0.002471,-0.002250,0.249990,0,0);-ms-transform:matrix(0.274524,0.002471,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.274524,0.002471,-0.002250,0.249990,0,0);}
.m128_c00376{transform:matrix(0.275765,0.004688,-0.004249,0.249964,0,0);-ms-transform:matrix(0.275765,0.004688,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.275765,0.004688,-0.004249,0.249964,0,0);}
.m85_c00376{transform:matrix(0.275854,0.002483,-0.002250,0.249990,0,0);-ms-transform:matrix(0.275854,0.002483,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.275854,0.002483,-0.002250,0.249990,0,0);}
.m1e_c00376{transform:matrix(0.276699,0.002490,-0.002250,0.249990,0,0);-ms-transform:matrix(0.276699,0.002490,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.276699,0.002490,-0.002250,0.249990,0,0);}
.m24_c00376{transform:matrix(0.277459,0.002497,-0.002250,0.249990,0,0);-ms-transform:matrix(0.277459,0.002497,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.277459,0.002497,-0.002250,0.249990,0,0);}
.m9c_c00376{transform:matrix(0.277499,0.002497,-0.002250,0.249990,0,0);-ms-transform:matrix(0.277499,0.002497,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.277499,0.002497,-0.002250,0.249990,0,0);}
.m145_c00376{transform:matrix(0.278044,-0.005839,0.005249,0.249945,0,0);-ms-transform:matrix(0.278044,-0.005839,0.005249,0.249945,0,0);-webkit-transform:matrix(0.278044,-0.005839,0.005249,0.249945,0,0);}
.m125_c00376{transform:matrix(0.278700,0.004738,-0.004249,0.249964,0,0);-ms-transform:matrix(0.278700,0.004738,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.278700,0.004738,-0.004249,0.249964,0,0);}
.mea_c00376{transform:matrix(0.280959,0.004776,-0.004249,0.249964,0,0);-ms-transform:matrix(0.280959,0.004776,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.280959,0.004776,-0.004249,0.249964,0,0);}
.m80_c00376{transform:matrix(0.282434,0.002542,-0.002250,0.249990,0,0);-ms-transform:matrix(0.282434,0.002542,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.282434,0.002542,-0.002250,0.249990,0,0);}
.me7_c00376{transform:matrix(0.282489,0.004802,-0.004249,0.249964,0,0);-ms-transform:matrix(0.282489,0.004802,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.282489,0.004802,-0.004249,0.249964,0,0);}
.m123_c00376{transform:matrix(0.282644,0.004805,-0.004249,0.249964,0,0);-ms-transform:matrix(0.282644,0.004805,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.282644,0.004805,-0.004249,0.249964,0,0);}
.m32_c00376{transform:matrix(0.284303,0.002559,-0.002250,0.249990,0,0);-ms-transform:matrix(0.284303,0.002559,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.284303,0.002559,-0.002250,0.249990,0,0);}
.m1f_c00376{transform:matrix(0.287363,0.002586,-0.002250,0.249990,0,0);-ms-transform:matrix(0.287363,0.002586,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.287363,0.002586,-0.002250,0.249990,0,0);}
.m56_c00376{transform:matrix(0.287878,0.002591,-0.002250,0.249990,0,0);-ms-transform:matrix(0.287878,0.002591,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.287878,0.002591,-0.002250,0.249990,0,0);}
.mdf_c00376{transform:matrix(0.290108,0.002611,-0.002250,0.249990,0,0);-ms-transform:matrix(0.290108,0.002611,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.290108,0.002611,-0.002250,0.249990,0,0);}
.m88_c00376{transform:matrix(0.291198,0.002621,-0.002250,0.249990,0,0);-ms-transform:matrix(0.291198,0.002621,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.291198,0.002621,-0.002250,0.249990,0,0);}
.m127_c00376{transform:matrix(0.291248,0.004951,-0.004249,0.249964,0,0);-ms-transform:matrix(0.291248,0.004951,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.291248,0.004951,-0.004249,0.249964,0,0);}
.m13d_c00376{transform:matrix(0.293951,0.002352,-0.002000,0.249992,0,0);-ms-transform:matrix(0.293951,0.002352,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.293951,0.002352,-0.002000,0.249992,0,0);}
.mde_c00376{transform:matrix(0.296183,0.002666,-0.002250,0.249990,0,0);-ms-transform:matrix(0.296183,0.002666,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.296183,0.002666,-0.002250,0.249990,0,0);}
.m139_c00376{transform:matrix(0.297035,0.002376,-0.002000,0.249992,0,0);-ms-transform:matrix(0.297035,0.002376,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.297035,0.002376,-0.002000,0.249992,0,0);}
.m124_c00376{transform:matrix(0.297467,0.005057,-0.004249,0.249964,0,0);-ms-transform:matrix(0.297467,0.005057,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.297467,0.005057,-0.004249,0.249964,0,0);}
.m142_c00376{transform:matrix(0.300175,0.002401,-0.002000,0.249992,0,0);-ms-transform:matrix(0.300175,0.002401,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.300175,0.002401,-0.002000,0.249992,0,0);}
.m83_c00376{transform:matrix(0.301813,0.002716,-0.002250,0.249990,0,0);-ms-transform:matrix(0.301813,0.002716,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.301813,0.002716,-0.002250,0.249990,0,0);}
.m141_c00376{transform:matrix(0.303830,0.002431,-0.002000,0.249992,0,0);-ms-transform:matrix(0.303830,0.002431,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.303830,0.002431,-0.002000,0.249992,0,0);}
.m13b_c00376{transform:matrix(0.310825,0.002487,-0.002000,0.249992,0,0);-ms-transform:matrix(0.310825,0.002487,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.310825,0.002487,-0.002000,0.249992,0,0);}
.m82_c00376{transform:matrix(0.311447,0.002803,-0.002250,0.249990,0,0);-ms-transform:matrix(0.311447,0.002803,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.311447,0.002803,-0.002250,0.249990,0,0);}
.m84_c00376{transform:matrix(0.311787,0.002806,-0.002250,0.249990,0,0);-ms-transform:matrix(0.311787,0.002806,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.311787,0.002806,-0.002250,0.249990,0,0);}
.m13c_c00376{transform:matrix(0.315020,0.002520,-0.002000,0.249992,0,0);-ms-transform:matrix(0.315020,0.002520,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.315020,0.002520,-0.002000,0.249992,0,0);}
.m110_c00376{transform:matrix(0.321139,0.005459,-0.004249,0.249964,0,0);-ms-transform:matrix(0.321139,0.005459,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.321139,0.005459,-0.004249,0.249964,0,0);}
.m26_c00376{transform:matrix(0.327602,0.002948,-0.002250,0.249990,0,0);-ms-transform:matrix(0.327602,0.002948,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.327602,0.002948,-0.002250,0.249990,0,0);}
.m10f_c00376{transform:matrix(0.342276,0.005819,-0.004249,0.249964,0,0);-ms-transform:matrix(0.342276,0.005819,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.342276,0.005819,-0.004249,0.249964,0,0);}
.m140_c00376{transform:matrix(0.379128,0.003033,-0.002000,0.249992,0,0);-ms-transform:matrix(0.379128,0.003033,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.379128,0.003033,-0.002000,0.249992,0,0);}
.m27_c00376{transform:matrix(0.414488,0.003730,-0.002250,0.249990,0,0);-ms-transform:matrix(0.414488,0.003730,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.414488,0.003730,-0.002250,0.249990,0,0);}
.m13e_c00376{transform:matrix(0.498859,0.003991,-0.002000,0.249992,0,0);-ms-transform:matrix(0.498859,0.003991,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.498859,0.003991,-0.002000,0.249992,0,0);}
.m5e_c00376{transform:matrix(0.530099,0.004771,-0.002250,0.249990,0,0);-ms-transform:matrix(0.530099,0.004771,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.530099,0.004771,-0.002250,0.249990,0,0);}
.v0_c00376{vertical-align:0.000000px;}
.ls0_c00376{letter-spacing:0.000000px;}
.sc__c00376{text-shadow:none;}
.sc0_c00376{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__c00376{-webkit-text-stroke:0px transparent;}
.sc0_c00376{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00376{word-spacing:0.000000px;}
.fc0_c00376{color:transparent;}
.fs0_c00376{font-size:24.000000px;}
.fs1_c00376{font-size:54.000000px;}
.fs10_c00376{font-size:60.001920px;}
.fs8_c00376{font-size:66.002673px;}
.fs2_c00376{font-size:72.000000px;}
.fs5_c00376{font-size:72.002916px;}
.fsa_c00376{font-size:72.010403px;}
.fs11_c00376{font-size:72.015874px;}
.fs4_c00376{font-size:78.003159px;}
.fs6_c00376{font-size:84.003402px;}
.fsd_c00376{font-size:84.012137px;}
.fs9_c00376{font-size:90.003645px;}
.fsb_c00376{font-size:90.013004px;}
.fs3_c00376{font-size:96.003888px;}
.fsc_c00376{font-size:96.013871px;}
.fse_c00376{font-size:102.014738px;}
.fs12_c00376{font-size:102.022489px;}
.fsf_c00376{font-size:108.003456px;}
.fs7_c00376{font-size:108.004374px;}
.y0_c00376{bottom:0.000000px;}
.y15b_c00376{bottom:87.495618px;}
.y15c_c00376{bottom:87.496299px;}
.y15a_c00376{bottom:87.496350px;}
.y158_c00376{bottom:87.496484px;}
.y154_c00376{bottom:87.496487px;}
.y155_c00376{bottom:87.496719px;}
.y156_c00376{bottom:87.496721px;}
.y159_c00376{bottom:87.496835px;}
.y157_c00376{bottom:87.497061px;}
.y14b_c00376{bottom:123.126000px;}
.y14c_c00376{bottom:123.842152px;}
.y14d_c00376{bottom:126.071628px;}
.y14e_c00376{bottom:128.406565px;}
.y14f_c00376{bottom:129.318869px;}
.y150_c00376{bottom:130.006891px;}
.y151_c00376{bottom:130.480242px;}
.y152_c00376{bottom:131.652829px;}
.y153_c00376{bottom:132.570110px;}
.y14a_c00376{bottom:185.390340px;}
.y149_c00376{bottom:185.893056px;}
.y148_c00376{bottom:186.687984px;}
.y147_c00376{bottom:186.892056px;}
.y146_c00376{bottom:187.285476px;}
.y145_c00376{bottom:187.684764px;}
.y144_c00376{bottom:188.368176px;}
.y143_c00376{bottom:189.057852px;}
.y142_c00376{bottom:189.250812px;}
.y141_c00376{bottom:189.539904px;}
.y140_c00376{bottom:205.670904px;}
.y13f_c00376{bottom:206.297340px;}
.y13e_c00376{bottom:206.565312px;}
.y13d_c00376{bottom:206.828844px;}
.y13c_c00376{bottom:207.470460px;}
.y13b_c00376{bottom:208.341900px;}
.y13a_c00376{bottom:208.606932px;}
.y139_c00376{bottom:209.240448px;}
.y138_c00376{bottom:209.587572px;}
.y137_c00376{bottom:210.205500px;}
.y136_c00376{bottom:210.632928px;}
.y135_c00376{bottom:210.811956px;}
.y134_c00376{bottom:211.069044px;}
.y133_c00376{bottom:211.410000px;}
.y132_c00376{bottom:244.120780px;}
.y131_c00376{bottom:245.524719px;}
.y130_c00376{bottom:246.069222px;}
.y12f_c00376{bottom:247.339820px;}
.y12e_c00376{bottom:247.850093px;}
.y12d_c00376{bottom:249.279765px;}
.y12c_c00376{bottom:250.683550px;}
.y12b_c00376{bottom:251.219634px;}
.y12a_c00376{bottom:253.512822px;}
.y129_c00376{bottom:254.034472px;}
.y128_c00376{bottom:254.901634px;}
.y127_c00376{bottom:255.397117px;}
.y11c_c00376{bottom:281.589153px;}
.y11d_c00376{bottom:282.018046px;}
.y4_c00376{bottom:282.150000px;}
.y11e_c00376{bottom:282.286764px;}
.y11f_c00376{bottom:282.566787px;}
.y120_c00376{bottom:282.728742px;}
.y121_c00376{bottom:283.280251px;}
.y122_c00376{bottom:283.725495px;}
.y123_c00376{bottom:284.112649px;}
.y124_c00376{bottom:284.392837px;}
.y125_c00376{bottom:284.557612px;}
.y126_c00376{bottom:284.956149px;}
.y3_c00376{bottom:290.844000px;}
.y2_c00376{bottom:313.740000px;}
.y11b_c00376{bottom:314.937367px;}
.y11a_c00376{bottom:315.376296px;}
.y119_c00376{bottom:315.661290px;}
.y118_c00376{bottom:316.107057px;}
.y117_c00376{bottom:316.396926px;}
.y116_c00376{bottom:316.947750px;}
.y115_c00376{bottom:317.846331px;}
.y114_c00376{bottom:318.277529px;}
.y113_c00376{bottom:318.853340px;}
.y112_c00376{bottom:319.278357px;}
.y111_c00376{bottom:319.587139px;}
.y110_c00376{bottom:320.707344px;}
.y10f_c00376{bottom:322.157463px;}
.y10e_c00376{bottom:322.574087px;}
.y10d_c00376{bottom:323.286244px;}
.y10c_c00376{bottom:323.986536px;}
.y1_c00376{bottom:326.430000px;}
.y10b_c00376{bottom:355.731063px;}
.y10a_c00376{bottom:356.132479px;}
.y109_c00376{bottom:356.835627px;}
.y108_c00376{bottom:357.421903px;}
.y107_c00376{bottom:358.036893px;}
.y106_c00376{bottom:358.829835px;}
.y105_c00376{bottom:359.237980px;}
.y104_c00376{bottom:359.842442px;}
.y103_c00376{bottom:360.224174px;}
.y102_c00376{bottom:360.917094px;}
.y101_c00376{bottom:361.203026px;}
.y100_c00376{bottom:361.498878px;}
.yff_c00376{bottom:361.792121px;}
.yfe_c00376{bottom:388.519281px;}
.yfd_c00376{bottom:389.862792px;}
.yfc_c00376{bottom:390.287861px;}
.yfb_c00376{bottom:391.157885px;}
.yfa_c00376{bottom:391.881526px;}
.yf9_c00376{bottom:392.306493px;}
.yf8_c00376{bottom:392.607596px;}
.yf7_c00376{bottom:393.313552px;}
.yf6_c00376{bottom:393.744572px;}
.yf5_c00376{bottom:394.899284px;}
.yf4_c00376{bottom:395.327212px;}
.yf3_c00376{bottom:396.050498px;}
.yf2_c00376{bottom:397.022943px;}
.yf1_c00376{bottom:397.435533px;}
.yf0_c00376{bottom:425.057021px;}
.yef_c00376{bottom:425.791471px;}
.yee_c00376{bottom:427.297399px;}
.yed_c00376{bottom:428.833137px;}
.yec_c00376{bottom:429.578859px;}
.yeb_c00376{bottom:430.515550px;}
.yea_c00376{bottom:431.070634px;}
.ye9_c00376{bottom:432.212830px;}
.ye8_c00376{bottom:432.759984px;}
.ye7_c00376{bottom:433.328991px;}
.ye6_c00376{bottom:433.893000px;}
.ye3_c00376{bottom:467.342455px;}
.ye2_c00376{bottom:467.342742px;}
.ye4_c00376{bottom:467.343159px;}
.ye5_c00376{bottom:467.343516px;}
.ye0_c00376{bottom:500.397531px;}
.ydf_c00376{bottom:500.397547px;}
.yde_c00376{bottom:500.397744px;}
.ye1_c00376{bottom:500.397874px;}
.ydd_c00376{bottom:500.398287px;}
.ydc_c00376{bottom:500.398873px;}
.yd6_c00376{bottom:500.399068px;}
.ydb_c00376{bottom:500.399133px;}
.yd9_c00376{bottom:500.399226px;}
.yd8_c00376{bottom:500.399395px;}
.yd7_c00376{bottom:500.399412px;}
.yda_c00376{bottom:500.399419px;}
.yd5_c00376{bottom:531.625246px;}
.yd4_c00376{bottom:532.223161px;}
.yd3_c00376{bottom:532.621533px;}
.yd2_c00376{bottom:533.511210px;}
.yd1_c00376{bottom:533.812327px;}
.yd0_c00376{bottom:534.113877px;}
.ycf_c00376{bottom:534.806535px;}
.yce_c00376{bottom:535.520928px;}
.ycd_c00376{bottom:535.800472px;}
.ycc_c00376{bottom:536.405515px;}
.ycb_c00376{bottom:536.786904px;}
.yca_c00376{bottom:537.282192px;}
.yc9_c00376{bottom:537.568810px;}
.yc8_c00376{bottom:568.477792px;}
.yc7_c00376{bottom:569.279841px;}
.yc6_c00376{bottom:569.685651px;}
.yc5_c00376{bottom:570.300306px;}
.yc4_c00376{bottom:570.584845px;}
.yc3_c00376{bottom:570.886246px;}
.yc2_c00376{bottom:571.090124px;}
.yc1_c00376{bottom:571.685865px;}
.yc0_c00376{bottom:571.980489px;}
.ybf_c00376{bottom:572.383194px;}
.ybe_c00376{bottom:572.876511px;}
.ybd_c00376{bottom:573.172701px;}
.ybc_c00376{bottom:573.481500px;}
.yb3_c00376{bottom:606.671376px;}
.yb2_c00376{bottom:606.671392px;}
.yb5_c00376{bottom:606.671566px;}
.yb4_c00376{bottom:606.671719px;}
.yb7_c00376{bottom:606.671727px;}
.yb6_c00376{bottom:606.671910px;}
.yb8_c00376{bottom:606.672220px;}
.ybb_c00376{bottom:606.672648px;}
.yb9_c00376{bottom:606.672924px;}
.yba_c00376{bottom:606.673024px;}
.yb1_c00376{bottom:638.621506px;}
.yb0_c00376{bottom:638.807743px;}
.yaf_c00376{bottom:639.596166px;}
.yae_c00376{bottom:639.866592px;}
.yad_c00376{bottom:640.307015px;}
.yac_c00376{bottom:640.578749px;}
.yab_c00376{bottom:641.006132px;}
.yaa_c00376{bottom:641.899584px;}
.ya9_c00376{bottom:642.613968px;}
.ya8_c00376{bottom:643.127579px;}
.ya7_c00376{bottom:643.403835px;}
.ya6_c00376{bottom:643.924965px;}
.ya5_c00376{bottom:674.625079px;}
.ya4_c00376{bottom:675.065299px;}
.ya3_c00376{bottom:675.779656px;}
.ya2_c00376{bottom:676.313920px;}
.ya1_c00376{bottom:676.584482px;}
.ya0_c00376{bottom:677.375159px;}
.y9f_c00376{bottom:677.646893px;}
.y9e_c00376{bottom:678.521556px;}
.y9d_c00376{bottom:678.793182px;}
.y9c_c00376{bottom:679.048300px;}
.y9b_c00376{bottom:679.569174px;}
.y9a_c00376{bottom:679.837386px;}
.y99_c00376{bottom:711.273103px;}
.y97_c00376{bottom:711.273513px;}
.y93_c00376{bottom:711.273628px;}
.y94_c00376{bottom:711.273639px;}
.y98_c00376{bottom:711.273780px;}
.y96_c00376{bottom:711.273859px;}
.y95_c00376{bottom:711.274132px;}
.y92_c00376{bottom:711.274158px;}
.y91_c00376{bottom:711.274264px;}
.y8f_c00376{bottom:711.274510px;}
.y90_c00376{bottom:711.274551px;}
.y84_c00376{bottom:747.344160px;}
.y8a_c00376{bottom:747.344335px;}
.y87_c00376{bottom:747.344454px;}
.y8b_c00376{bottom:747.344469px;}
.y89_c00376{bottom:747.344472px;}
.y85_c00376{bottom:747.344487px;}
.y88_c00376{bottom:747.345168px;}
.y8c_c00376{bottom:747.345172px;}
.y86_c00376{bottom:747.345190px;}
.y8e_c00376{bottom:747.345783px;}
.y8d_c00376{bottom:747.345799px;}
.y7b_c00376{bottom:783.712480px;}
.y7a_c00376{bottom:783.712650px;}
.y7c_c00376{bottom:783.712674px;}
.y79_c00376{bottom:783.712936px;}
.y7f_c00376{bottom:783.713322px;}
.y7d_c00376{bottom:783.713344px;}
.y78_c00376{bottom:783.713523px;}
.y80_c00376{bottom:783.713726px;}
.y7e_c00376{bottom:783.713731px;}
.y82_c00376{bottom:783.713902px;}
.y81_c00376{bottom:783.714219px;}
.y83_c00376{bottom:783.714456px;}
.y76_c00376{bottom:818.854807px;}
.y77_c00376{bottom:818.855001px;}
.y74_c00376{bottom:818.855321px;}
.y75_c00376{bottom:818.855514px;}
.y72_c00376{bottom:818.855566px;}
.y73_c00376{bottom:818.855623px;}
.y71_c00376{bottom:818.856170px;}
.y70_c00376{bottom:818.856906px;}
.y6e_c00376{bottom:818.857225px;}
.y6c_c00376{bottom:818.857245px;}
.y6f_c00376{bottom:818.857419px;}
.y6d_c00376{bottom:818.857722px;}
.y67_c00376{bottom:856.413531px;}
.y66_c00376{bottom:856.413667px;}
.y6a_c00376{bottom:856.413732px;}
.y69_c00376{bottom:856.413869px;}
.y68_c00376{bottom:856.414068px;}
.y65_c00376{bottom:856.414194px;}
.y6b_c00376{bottom:856.414209px;}
.y64_c00376{bottom:856.414647px;}
.y63_c00376{bottom:856.415040px;}
.y61_c00376{bottom:856.415286px;}
.y62_c00376{bottom:856.415537px;}
.y60_c00376{bottom:884.555427px;}
.y5f_c00376{bottom:884.555683px;}
.y56_c00376{bottom:884.556247px;}
.y5a_c00376{bottom:884.556282px;}
.y5c_c00376{bottom:884.556293px;}
.y5e_c00376{bottom:884.556303px;}
.y59_c00376{bottom:884.556451px;}
.y5d_c00376{bottom:884.556486px;}
.y5b_c00376{bottom:884.556669px;}
.y58_c00376{bottom:884.556678px;}
.y55_c00376{bottom:884.556850px;}
.y57_c00376{bottom:884.556861px;}
.y4c_c00376{bottom:927.671954px;}
.y4d_c00376{bottom:927.672624px;}
.y4f_c00376{bottom:927.672994px;}
.y53_c00376{bottom:927.673129px;}
.y4e_c00376{bottom:927.673178px;}
.y50_c00376{bottom:927.673365px;}
.y52_c00376{bottom:927.673566px;}
.y54_c00376{bottom:927.673710px;}
.y51_c00376{bottom:927.673943px;}
.y4b_c00376{bottom:961.076193px;}
.y4a_c00376{bottom:962.419445px;}
.y49_c00376{bottom:962.904115px;}
.y48_c00376{bottom:963.646629px;}
.y47_c00376{bottom:964.727676px;}
.y46_c00376{bottom:965.217153px;}
.y45_c00376{bottom:965.944462px;}
.y44_c00376{bottom:966.315699px;}
.y43_c00376{bottom:966.675688px;}
.y42_c00376{bottom:967.630016px;}
.y41_c00376{bottom:968.116428px;}
.y40_c00376{bottom:968.484667px;}
.y3f_c00376{bottom:997.739773px;}
.y39_c00376{bottom:997.740492px;}
.y3e_c00376{bottom:997.740510px;}
.y3a_c00376{bottom:997.740759px;}
.y38_c00376{bottom:997.740779px;}
.y3c_c00376{bottom:997.741086px;}
.y3d_c00376{bottom:997.741246px;}
.y3b_c00376{bottom:997.741312px;}
.y37_c00376{bottom:997.741515px;}
.y36_c00376{bottom:997.741774px;}
.y35_c00376{bottom:997.741791px;}
.y34_c00376{bottom:997.742167px;}
.y33_c00376{bottom:997.742427px;}
.y32_c00376{bottom:1032.311196px;}
.y31_c00376{bottom:1032.475076px;}
.y30_c00376{bottom:1032.866316px;}
.y2f_c00376{bottom:1033.199553px;}
.y2e_c00376{bottom:1033.416796px;}
.y2d_c00376{bottom:1033.807996px;}
.y2c_c00376{bottom:1033.972335px;}
.y2b_c00376{bottom:1034.465890px;}
.y2a_c00376{bottom:1034.633670px;}
.y29_c00376{bottom:1035.024816px;}
.y28_c00376{bottom:1035.447771px;}
.y27_c00376{bottom:1067.690007px;}
.y26_c00376{bottom:1067.966533px;}
.y25_c00376{bottom:1068.481912px;}
.y24_c00376{bottom:1069.372140px;}
.y23_c00376{bottom:1069.724528px;}
.y22_c00376{bottom:1069.916784px;}
.y21_c00376{bottom:1070.612514px;}
.y20_c00376{bottom:1070.878431px;}
.y1f_c00376{bottom:1072.121195px;}
.y1e_c00376{bottom:1073.251165px;}
.y1d_c00376{bottom:1102.838025px;}
.y1c_c00376{bottom:1103.097636px;}
.y1b_c00376{bottom:1103.496420px;}
.y1a_c00376{bottom:1103.966504px;}
.y19_c00376{bottom:1104.200351px;}
.y18_c00376{bottom:1104.501988px;}
.y17_c00376{bottom:1105.122258px;}
.y16_c00376{bottom:1105.677678px;}
.y15_c00376{bottom:1106.363349px;}
.y14_c00376{bottom:1106.826888px;}
.y13_c00376{bottom:1107.059481px;}
.y12_c00376{bottom:1107.588178px;}
.y11_c00376{bottom:1107.809205px;}
.y10_c00376{bottom:1138.723098px;}
.yf_c00376{bottom:1139.729280px;}
.ye_c00376{bottom:1140.030276px;}
.yd_c00376{bottom:1140.530829px;}
.yc_c00376{bottom:1140.936464px;}
.yb_c00376{bottom:1141.524874px;}
.ya_c00376{bottom:1141.826114px;}
.y9_c00376{bottom:1142.919654px;}
.y8_c00376{bottom:1143.218571px;}
.y7_c00376{bottom:1143.412984px;}
.y6_c00376{bottom:1143.721500px;}
.y5_c00376{bottom:1198.792500px;}
.h2_c00376{height:24.000000px;}
.h3_c00376{height:54.000000px;}
.h12_c00376{height:60.001920px;}
.ha_c00376{height:66.002673px;}
.h4_c00376{height:72.000000px;}
.h7_c00376{height:72.002916px;}
.hc_c00376{height:72.010403px;}
.h13_c00376{height:72.015874px;}
.h6_c00376{height:78.003159px;}
.h8_c00376{height:84.003402px;}
.hf_c00376{height:84.012137px;}
.hb_c00376{height:90.003645px;}
.hd_c00376{height:90.013004px;}
.h5_c00376{height:96.003888px;}
.he_c00376{height:96.013871px;}
.h10_c00376{height:102.014738px;}
.h14_c00376{height:102.022489px;}
.h11_c00376{height:108.003456px;}
.h9_c00376{height:108.004374px;}
.h0_c00376{height:1251.450000px;}
.h1_c00376{height:1251.750000px;}
.w0_c00376{width:915.000000px;}
.x0_c00376{left:0.000000px;}
.x2_c00376{left:4.212000px;}
.x1_c00376{left:9.180000px;}
.x3b_c00376{left:141.205641px;}
.x52_c00376{left:142.825458px;}
.x6d_c00376{left:143.837656px;}
.x1c_c00376{left:144.869049px;}
.x11_c00376{left:146.564683px;}
.x6e_c00376{left:175.684156px;}
.x4e_c00376{left:176.847006px;}
.x12_c00376{left:178.123750px;}
.x76_c00376{left:186.304110px;}
.x85_c00376{left:197.213213px;}
.x53_c00376{left:207.627710px;}
.x82_c00376{left:209.168066px;}
.x3c_c00376{left:219.779000px;}
.x32_c00376{left:221.774764px;}
.x26_c00376{left:230.237454px;}
.x77_c00376{left:231.396268px;}
.x2a_c00376{left:241.919383px;}
.x66_c00376{left:250.704000px;}
.x57_c00376{left:251.910693px;}
.x6_c00376{left:253.141500px;}
.x43_c00376{left:254.607575px;}
.x8a_c00376{left:262.188680px;}
.x49_c00376{left:263.249277px;}
.x5d_c00376{left:273.661146px;}
.x2b_c00376{left:275.130570px;}
.x67_c00376{left:285.015000px;}
.x1d_c00376{left:286.089318px;}
.x7_c00376{left:287.421000px;}
.x58_c00376{left:295.112690px;}
.x44_c00376{left:296.999504px;}
.x61_c00376{left:306.584226px;}
.x2c_c00376{left:307.801716px;}
.x8_c00376{left:309.022500px;}
.x59_c00376{left:317.793026px;}
.x64_c00376{left:328.324535px;}
.x7f_c00376{left:339.204306px;}
.x33_c00376{left:341.141104px;}
.x9_c00376{left:342.235500px;}
.x78_c00376{left:349.750500px;}
.x13_c00376{left:353.052396px;}
.x83_c00376{left:360.340619px;}
.x45_c00376{left:362.881836px;}
.x6f_c00376{left:371.380156px;}
.x68_c00376{left:372.738000px;}
.x34_c00376{left:374.888997px;}
.x4a_c00376{left:385.294659px;}
.x8f_c00376{left:394.314012px;}
.x62_c00376{left:395.961036px;}
.x72_c00376{left:405.821875px;}
.x3_c00376{left:414.990000px;}
.x5e_c00376{left:417.027942px;}
.x2d_c00376{left:418.506180px;}
.x80_c00376{left:428.046350px;}
.x4_c00376{left:437.670000px;}
.x5a_c00376{left:439.028340px;}
.x46_c00376{left:440.105087px;}
.x1e_c00376{left:441.342208px;}
.x79_c00376{left:449.590500px;}
.x14_c00376{left:451.073164px;}
.x2e_c00376{left:452.257407px;}
.x5_c00376{left:459.540000px;}
.x3d_c00376{left:460.628007px;}
.xa_c00376{left:463.740000px;}
.x90_c00376{left:471.585000px;}
.x84_c00376{left:472.950444px;}
.x1f_c00376{left:474.555505px;}
.x86_c00376{left:481.797567px;}
.x4b_c00376{left:484.118151px;}
.x35_c00376{left:485.585512px;}
.x91_c00376{left:494.125500px;}
.x2f_c00376{left:495.459404px;}
.xb_c00376{left:497.211000px;}
.x7a_c00376{left:504.690000px;}
.x63_c00376{left:507.734549px;}
.x69_c00376{left:516.412500px;}
.x3e_c00376{left:527.590434px;}
.x15_c00376{left:530.454595px;}
.x87_c00376{left:538.201392px;}
.x5b_c00376{left:539.201954px;}
.x7b_c00376{left:548.556000px;}
.x5f_c00376{left:549.908144px;}
.x27_c00376{left:552.084550px;}
.x20_c00376{left:561.526288px;}
.xc_c00376{left:562.590000px;}
.x81_c00376{left:571.441116px;}
.x4c_c00376{left:572.952347px;}
.x88_c00376{left:582.487401px;}
.x36_c00376{left:583.866744px;}
.x21_c00376{left:585.555004px;}
.x3f_c00376{left:594.282834px;}
.x28_c00376{left:595.557616px;}
.x6a_c00376{left:604.170000px;}
.xd_c00376{left:607.660500px;}
.x89_c00376{left:615.707171px;}
.x16_c00376{left:619.041688px;}
.x65_c00376{left:627.766794px;}
.x22_c00376{left:629.542896px;}
.x8d_c00376{left:636.805500px;}
.x7c_c00376{left:638.893500px;}
.x5c_c00376{left:640.185635px;}
.x8b_c00376{left:648.077759px;}
.x4f_c00376{left:650.175846px;}
.x37_c00376{left:651.367029px;}
.x40_c00376{left:660.975234px;}
.x17_c00376{left:662.224471px;}
.xe_c00376{left:663.277500px;}
.x6b_c00376{left:672.465000px;}
.x54_c00376{left:673.667456px;}
.x73_c00376{left:682.853799px;}
.x50_c00376{left:684.467127px;}
.x70_c00376{left:693.535156px;}
.x18_c00376{left:695.708079px;}
.xf_c00376{left:696.721500px;}
.x55_c00376{left:705.258521px;}
.x39_c00376{left:706.608450px;}
.x74_c00376{left:715.524945px;}
.x6c_c00376{left:717.555000px;}
.x7d_c00376{left:727.477500px;}
.x51_c00376{left:728.749218px;}
.x71_c00376{left:737.798656px;}
.x60_c00376{left:739.707845px;}
.x23_c00376{left:740.791395px;}
.x47_c00376{left:750.348210px;}
.x41_c00376{left:758.718645px;}
.x75_c00376{left:761.157144px;}
.x19_c00376{left:762.940794px;}
.x7e_c00376{left:770.680500px;}
.x29_c00376{left:773.437029px;}
.x42_c00376{left:782.749089px;}
.x4d_c00376{left:784.371965px;}
.x56_c00376{left:794.362743px;}
.x30_c00376{left:795.981744px;}
.x24_c00376{left:805.222975px;}
.x3a_c00376{left:807.052091px;}
.x10_c00376{left:808.519500px;}
.x38_c00376{left:817.466532px;}
.x1a_c00376{left:819.917820px;}
.x31_c00376{left:829.732971px;}
.x25_c00376{left:839.781786px;}
.x48_c00376{left:840.802541px;}
.x8c_c00376{left:849.348201px;}
.x1b_c00376{left:857.097495px;}
.x8e_c00376{left:861.750000px;}
@media print{
.v0_c00376{vertical-align:0.000000pt;}
.ls0_c00376{letter-spacing:0.000000pt;}
.ws0_c00376{word-spacing:0.000000pt;}
.fs0_c00376{font-size:21.333333pt;}
.fs1_c00376{font-size:48.000000pt;}
.fs10_c00376{font-size:53.335040pt;}
.fs8_c00376{font-size:58.669043pt;}
.fs2_c00376{font-size:64.000000pt;}
.fs5_c00376{font-size:64.002592pt;}
.fsa_c00376{font-size:64.009247pt;}
.fs11_c00376{font-size:64.014110pt;}
.fs4_c00376{font-size:69.336141pt;}
.fs6_c00376{font-size:74.669691pt;}
.fsd_c00376{font-size:74.677455pt;}
.fs9_c00376{font-size:80.003240pt;}
.fsb_c00376{font-size:80.011559pt;}
.fs3_c00376{font-size:85.336789pt;}
.fsc_c00376{font-size:85.345663pt;}
.fse_c00376{font-size:90.679767pt;}
.fs12_c00376{font-size:90.686656pt;}
.fsf_c00376{font-size:96.003072pt;}
.fs7_c00376{font-size:96.003888pt;}
.y0_c00376{bottom:0.000000pt;}
.y15b_c00376{bottom:77.773883pt;}
.y15c_c00376{bottom:77.774488pt;}
.y15a_c00376{bottom:77.774533pt;}
.y158_c00376{bottom:77.774652pt;}
.y154_c00376{bottom:77.774655pt;}
.y155_c00376{bottom:77.774861pt;}
.y156_c00376{bottom:77.774863pt;}
.y159_c00376{bottom:77.774964pt;}
.y157_c00376{bottom:77.775165pt;}
.y14b_c00376{bottom:109.445333pt;}
.y14c_c00376{bottom:110.081913pt;}
.y14d_c00376{bottom:112.063669pt;}
.y14e_c00376{bottom:114.139169pt;}
.y14f_c00376{bottom:114.950105pt;}
.y150_c00376{bottom:115.561681pt;}
.y151_c00376{bottom:115.982437pt;}
.y152_c00376{bottom:117.024737pt;}
.y153_c00376{bottom:117.840097pt;}
.y14a_c00376{bottom:164.791413pt;}
.y149_c00376{bottom:165.238272pt;}
.y148_c00376{bottom:165.944875pt;}
.y147_c00376{bottom:166.126272pt;}
.y146_c00376{bottom:166.475979pt;}
.y145_c00376{bottom:166.830901pt;}
.y144_c00376{bottom:167.438379pt;}
.y143_c00376{bottom:168.051424pt;}
.y142_c00376{bottom:168.222944pt;}
.y141_c00376{bottom:168.479915pt;}
.y140_c00376{bottom:182.818581pt;}
.y13f_c00376{bottom:183.375413pt;}
.y13e_c00376{bottom:183.613611pt;}
.y13d_c00376{bottom:183.847861pt;}
.y13c_c00376{bottom:184.418187pt;}
.y13b_c00376{bottom:185.192800pt;}
.y13a_c00376{bottom:185.428384pt;}
.y139_c00376{bottom:185.991509pt;}
.y138_c00376{bottom:186.300064pt;}
.y137_c00376{bottom:186.849333pt;}
.y136_c00376{bottom:187.229269pt;}
.y135_c00376{bottom:187.388405pt;}
.y134_c00376{bottom:187.616928pt;}
.y133_c00376{bottom:187.920000pt;}
.y132_c00376{bottom:216.996249pt;}
.y131_c00376{bottom:218.244195pt;}
.y130_c00376{bottom:218.728197pt;}
.y12f_c00376{bottom:219.857617pt;}
.y12e_c00376{bottom:220.311193pt;}
.y12d_c00376{bottom:221.582013pt;}
.y12c_c00376{bottom:222.829823pt;}
.y12b_c00376{bottom:223.306341pt;}
.y12a_c00376{bottom:225.344731pt;}
.y129_c00376{bottom:225.808420pt;}
.y128_c00376{bottom:226.579231pt;}
.y127_c00376{bottom:227.019660pt;}
.y11c_c00376{bottom:250.301469pt;}
.y11d_c00376{bottom:250.682708pt;}
.y4_c00376{bottom:250.800000pt;}
.y11e_c00376{bottom:250.921568pt;}
.y11f_c00376{bottom:251.170477pt;}
.y120_c00376{bottom:251.314437pt;}
.y121_c00376{bottom:251.804668pt;}
.y122_c00376{bottom:252.200440pt;}
.y123_c00376{bottom:252.544577pt;}
.y124_c00376{bottom:252.793633pt;}
.y125_c00376{bottom:252.940100pt;}
.y126_c00376{bottom:253.294355pt;}
.y3_c00376{bottom:258.528000pt;}
.y2_c00376{bottom:278.880000pt;}
.y11b_c00376{bottom:279.944327pt;}
.y11a_c00376{bottom:280.334485pt;}
.y119_c00376{bottom:280.587813pt;}
.y118_c00376{bottom:280.984051pt;}
.y117_c00376{bottom:281.241712pt;}
.y116_c00376{bottom:281.731333pt;}
.y115_c00376{bottom:282.530072pt;}
.y114_c00376{bottom:282.913359pt;}
.y113_c00376{bottom:283.425191pt;}
.y112_c00376{bottom:283.802984pt;}
.y111_c00376{bottom:284.077457pt;}
.y110_c00376{bottom:285.073195pt;}
.y10f_c00376{bottom:286.362189pt;}
.y10e_c00376{bottom:286.732521pt;}
.y10d_c00376{bottom:287.365551pt;}
.y10c_c00376{bottom:287.988032pt;}
.y1_c00376{bottom:290.160000pt;}
.y10b_c00376{bottom:316.205389pt;}
.y10a_c00376{bottom:316.562204pt;}
.y109_c00376{bottom:317.187224pt;}
.y108_c00376{bottom:317.708359pt;}
.y107_c00376{bottom:318.255016pt;}
.y106_c00376{bottom:318.959853pt;}
.y105_c00376{bottom:319.322649pt;}
.y104_c00376{bottom:319.859948pt;}
.y103_c00376{bottom:320.199265pt;}
.y102_c00376{bottom:320.815195pt;}
.y101_c00376{bottom:321.069356pt;}
.y100_c00376{bottom:321.332336pt;}
.yff_c00376{bottom:321.592996pt;}
.yfe_c00376{bottom:345.350472pt;}
.yfd_c00376{bottom:346.544704pt;}
.yfc_c00376{bottom:346.922543pt;}
.yfb_c00376{bottom:347.695897pt;}
.yfa_c00376{bottom:348.339135pt;}
.yf9_c00376{bottom:348.716883pt;}
.yf8_c00376{bottom:348.984529pt;}
.yf7_c00376{bottom:349.612047pt;}
.yf6_c00376{bottom:349.995175pt;}
.yf5_c00376{bottom:351.021585pt;}
.yf4_c00376{bottom:351.401967pt;}
.yf3_c00376{bottom:352.044887pt;}
.yf2_c00376{bottom:352.909283pt;}
.yf1_c00376{bottom:353.276029pt;}
.yf0_c00376{bottom:377.828463pt;}
.yef_c00376{bottom:378.481308pt;}
.yee_c00376{bottom:379.819911pt;}
.yed_c00376{bottom:381.185011pt;}
.yec_c00376{bottom:381.847875pt;}
.yeb_c00376{bottom:382.680489pt;}
.yea_c00376{bottom:383.173897pt;}
.ye9_c00376{bottom:384.189183pt;}
.ye8_c00376{bottom:384.675541pt;}
.ye7_c00376{bottom:385.181325pt;}
.ye6_c00376{bottom:385.682667pt;}
.ye3_c00376{bottom:415.415516pt;}
.ye2_c00376{bottom:415.415771pt;}
.ye4_c00376{bottom:415.416141pt;}
.ye5_c00376{bottom:415.416459pt;}
.ye0_c00376{bottom:444.797805pt;}
.ydf_c00376{bottom:444.797820pt;}
.yde_c00376{bottom:444.797995pt;}
.ye1_c00376{bottom:444.798111pt;}
.ydd_c00376{bottom:444.798477pt;}
.ydc_c00376{bottom:444.798999pt;}
.yd6_c00376{bottom:444.799172pt;}
.ydb_c00376{bottom:444.799229pt;}
.yd9_c00376{bottom:444.799312pt;}
.yd8_c00376{bottom:444.799463pt;}
.yd7_c00376{bottom:444.799477pt;}
.yda_c00376{bottom:444.799484pt;}
.yd5_c00376{bottom:472.555775pt;}
.yd4_c00376{bottom:473.087255pt;}
.yd3_c00376{bottom:473.441363pt;}
.yd2_c00376{bottom:474.232187pt;}
.yd1_c00376{bottom:474.499847pt;}
.yd0_c00376{bottom:474.767891pt;}
.ycf_c00376{bottom:475.383587pt;}
.yce_c00376{bottom:476.018603pt;}
.ycd_c00376{bottom:476.267087pt;}
.ycc_c00376{bottom:476.804903pt;}
.ycb_c00376{bottom:477.143915pt;}
.yca_c00376{bottom:477.584171pt;}
.yc9_c00376{bottom:477.838943pt;}
.yc8_c00376{bottom:505.313593pt;}
.yc7_c00376{bottom:506.026525pt;}
.yc6_c00376{bottom:506.387245pt;}
.yc5_c00376{bottom:506.933605pt;}
.yc4_c00376{bottom:507.186529pt;}
.yc3_c00376{bottom:507.454441pt;}
.yc2_c00376{bottom:507.635665pt;}
.yc1_c00376{bottom:508.165213pt;}
.yc0_c00376{bottom:508.427101pt;}
.ybf_c00376{bottom:508.785061pt;}
.ybe_c00376{bottom:509.223565pt;}
.ybd_c00376{bottom:509.486845pt;}
.ybc_c00376{bottom:509.761333pt;}
.yb3_c00376{bottom:539.263445pt;}
.yb2_c00376{bottom:539.263460pt;}
.yb5_c00376{bottom:539.263615pt;}
.yb4_c00376{bottom:539.263751pt;}
.yb7_c00376{bottom:539.263757pt;}
.yb6_c00376{bottom:539.263920pt;}
.yb8_c00376{bottom:539.264196pt;}
.ybb_c00376{bottom:539.264576pt;}
.yb9_c00376{bottom:539.264821pt;}
.yba_c00376{bottom:539.264911pt;}
.yb1_c00376{bottom:567.663561pt;}
.yb0_c00376{bottom:567.829105pt;}
.yaf_c00376{bottom:568.529925pt;}
.yae_c00376{bottom:568.770304pt;}
.yad_c00376{bottom:569.161791pt;}
.yac_c00376{bottom:569.403332pt;}
.yab_c00376{bottom:569.783228pt;}
.yaa_c00376{bottom:570.577408pt;}
.ya9_c00376{bottom:571.212416pt;}
.ya8_c00376{bottom:571.668959pt;}
.ya7_c00376{bottom:571.914520pt;}
.ya6_c00376{bottom:572.377747pt;}
.ya5_c00376{bottom:599.666737pt;}
.ya4_c00376{bottom:600.058044pt;}
.ya3_c00376{bottom:600.693028pt;}
.ya2_c00376{bottom:601.167929pt;}
.ya1_c00376{bottom:601.408428pt;}
.ya0_c00376{bottom:602.111252pt;}
.y9f_c00376{bottom:602.352793pt;}
.y9e_c00376{bottom:603.130272pt;}
.y9d_c00376{bottom:603.371717pt;}
.y9c_c00376{bottom:603.598489pt;}
.y9b_c00376{bottom:604.061488pt;}
.y9a_c00376{bottom:604.299899pt;}
.y99_c00376{bottom:632.242759pt;}
.y97_c00376{bottom:632.243123pt;}
.y93_c00376{bottom:632.243225pt;}
.y94_c00376{bottom:632.243235pt;}
.y98_c00376{bottom:632.243360pt;}
.y96_c00376{bottom:632.243431pt;}
.y95_c00376{bottom:632.243673pt;}
.y92_c00376{bottom:632.243696pt;}
.y91_c00376{bottom:632.243791pt;}
.y8f_c00376{bottom:632.244009pt;}
.y90_c00376{bottom:632.244045pt;}
.y84_c00376{bottom:664.305920pt;}
.y8a_c00376{bottom:664.306076pt;}
.y87_c00376{bottom:664.306181pt;}
.y8b_c00376{bottom:664.306195pt;}
.y89_c00376{bottom:664.306197pt;}
.y85_c00376{bottom:664.306211pt;}
.y88_c00376{bottom:664.306816pt;}
.y8c_c00376{bottom:664.306820pt;}
.y86_c00376{bottom:664.306836pt;}
.y8e_c00376{bottom:664.307363pt;}
.y8d_c00376{bottom:664.307377pt;}
.y7b_c00376{bottom:696.633316pt;}
.y7a_c00376{bottom:696.633467pt;}
.y7c_c00376{bottom:696.633488pt;}
.y79_c00376{bottom:696.633721pt;}
.y7f_c00376{bottom:696.634064pt;}
.y7d_c00376{bottom:696.634084pt;}
.y78_c00376{bottom:696.634243pt;}
.y80_c00376{bottom:696.634423pt;}
.y7e_c00376{bottom:696.634428pt;}
.y82_c00376{bottom:696.634580pt;}
.y81_c00376{bottom:696.634861pt;}
.y83_c00376{bottom:696.635072pt;}
.y76_c00376{bottom:727.870940pt;}
.y77_c00376{bottom:727.871112pt;}
.y74_c00376{bottom:727.871396pt;}
.y75_c00376{bottom:727.871568pt;}
.y72_c00376{bottom:727.871615pt;}
.y73_c00376{bottom:727.871665pt;}
.y71_c00376{bottom:727.872151pt;}
.y70_c00376{bottom:727.872805pt;}
.y6e_c00376{bottom:727.873089pt;}
.y6c_c00376{bottom:727.873107pt;}
.y6f_c00376{bottom:727.873261pt;}
.y6d_c00376{bottom:727.873531pt;}
.y67_c00376{bottom:761.256472pt;}
.y66_c00376{bottom:761.256593pt;}
.y6a_c00376{bottom:761.256651pt;}
.y69_c00376{bottom:761.256772pt;}
.y68_c00376{bottom:761.256949pt;}
.y65_c00376{bottom:761.257061pt;}
.y6b_c00376{bottom:761.257075pt;}
.y64_c00376{bottom:761.257464pt;}
.y63_c00376{bottom:761.257813pt;}
.y61_c00376{bottom:761.258032pt;}
.y62_c00376{bottom:761.258255pt;}
.y60_c00376{bottom:786.271491pt;}
.y5f_c00376{bottom:786.271719pt;}
.y56_c00376{bottom:786.272220pt;}
.y5a_c00376{bottom:786.272251pt;}
.y5c_c00376{bottom:786.272260pt;}
.y5e_c00376{bottom:786.272269pt;}
.y59_c00376{bottom:786.272401pt;}
.y5d_c00376{bottom:786.272432pt;}
.y5b_c00376{bottom:786.272595pt;}
.y58_c00376{bottom:786.272603pt;}
.y55_c00376{bottom:786.272756pt;}
.y57_c00376{bottom:786.272765pt;}
.y4c_c00376{bottom:824.597292pt;}
.y4d_c00376{bottom:824.597888pt;}
.y4f_c00376{bottom:824.598217pt;}
.y53_c00376{bottom:824.598337pt;}
.y4e_c00376{bottom:824.598380pt;}
.y50_c00376{bottom:824.598547pt;}
.y52_c00376{bottom:824.598725pt;}
.y54_c00376{bottom:824.598853pt;}
.y51_c00376{bottom:824.599060pt;}
.y4b_c00376{bottom:854.289949pt;}
.y4a_c00376{bottom:855.483951pt;}
.y49_c00376{bottom:855.914769pt;}
.y48_c00376{bottom:856.574781pt;}
.y47_c00376{bottom:857.535712pt;}
.y46_c00376{bottom:857.970803pt;}
.y45_c00376{bottom:858.617300pt;}
.y44_c00376{bottom:858.947288pt;}
.y43_c00376{bottom:859.267279pt;}
.y42_c00376{bottom:860.115569pt;}
.y41_c00376{bottom:860.547936pt;}
.y40_c00376{bottom:860.875260pt;}
.y3f_c00376{bottom:886.879799pt;}
.y39_c00376{bottom:886.880437pt;}
.y3e_c00376{bottom:886.880453pt;}
.y3a_c00376{bottom:886.880675pt;}
.y38_c00376{bottom:886.880692pt;}
.y3c_c00376{bottom:886.880965pt;}
.y3d_c00376{bottom:886.881108pt;}
.y3b_c00376{bottom:886.881167pt;}
.y37_c00376{bottom:886.881347pt;}
.y36_c00376{bottom:886.881577pt;}
.y35_c00376{bottom:886.881592pt;}
.y34_c00376{bottom:886.881927pt;}
.y33_c00376{bottom:886.882157pt;}
.y32_c00376{bottom:917.609952pt;}
.y31_c00376{bottom:917.755623pt;}
.y30_c00376{bottom:918.103392pt;}
.y2f_c00376{bottom:918.399603pt;}
.y2e_c00376{bottom:918.592708pt;}
.y2d_c00376{bottom:918.940441pt;}
.y2c_c00376{bottom:919.086520pt;}
.y2b_c00376{bottom:919.525236pt;}
.y2a_c00376{bottom:919.674373pt;}
.y29_c00376{bottom:920.022059pt;}
.y28_c00376{bottom:920.398019pt;}
.y27_c00376{bottom:949.057784pt;}
.y26_c00376{bottom:949.303585pt;}
.y25_c00376{bottom:949.761700pt;}
.y24_c00376{bottom:950.553013pt;}
.y23_c00376{bottom:950.866247pt;}
.y22_c00376{bottom:951.037141pt;}
.y21_c00376{bottom:951.655568pt;}
.y20_c00376{bottom:951.891939pt;}
.y1f_c00376{bottom:952.996617pt;}
.y1e_c00376{bottom:954.001036pt;}
.y1d_c00376{bottom:980.300467pt;}
.y1c_c00376{bottom:980.531232pt;}
.y1b_c00376{bottom:980.885707pt;}
.y1a_c00376{bottom:981.303559pt;}
.y19_c00376{bottom:981.511423pt;}
.y18_c00376{bottom:981.779545pt;}
.y17_c00376{bottom:982.330896pt;}
.y16_c00376{bottom:982.824603pt;}
.y15_c00376{bottom:983.434088pt;}
.y14_c00376{bottom:983.846123pt;}
.y13_c00376{bottom:984.052872pt;}
.y12_c00376{bottom:984.522825pt;}
.y11_c00376{bottom:984.719293pt;}
.y10_c00376{bottom:1012.198309pt;}
.yf_c00376{bottom:1013.092693pt;}
.ye_c00376{bottom:1013.360245pt;}
.yd_c00376{bottom:1013.805181pt;}
.yc_c00376{bottom:1014.165745pt;}
.yb_c00376{bottom:1014.688777pt;}
.ya_c00376{bottom:1014.956545pt;}
.y9_c00376{bottom:1015.928581pt;}
.y8_c00376{bottom:1016.194285pt;}
.y7_c00376{bottom:1016.367097pt;}
.y6_c00376{bottom:1016.641333pt;}
.y5_c00376{bottom:1065.593333pt;}
.h2_c00376{height:21.333333pt;}
.h3_c00376{height:48.000000pt;}
.h12_c00376{height:53.335040pt;}
.ha_c00376{height:58.669043pt;}
.h4_c00376{height:64.000000pt;}
.h7_c00376{height:64.002592pt;}
.hc_c00376{height:64.009247pt;}
.h13_c00376{height:64.014110pt;}
.h6_c00376{height:69.336141pt;}
.h8_c00376{height:74.669691pt;}
.hf_c00376{height:74.677455pt;}
.hb_c00376{height:80.003240pt;}
.hd_c00376{height:80.011559pt;}
.h5_c00376{height:85.336789pt;}
.he_c00376{height:85.345663pt;}
.h10_c00376{height:90.679767pt;}
.h14_c00376{height:90.686656pt;}
.h11_c00376{height:96.003072pt;}
.h9_c00376{height:96.003888pt;}
.h0_c00376{height:1112.400000pt;}
.h1_c00376{height:1112.666667pt;}
.w0_c00376{width:813.333333pt;}
.x0_c00376{left:0.000000pt;}
.x2_c00376{left:3.744000pt;}
.x1_c00376{left:8.160000pt;}
.x3b_c00376{left:125.516125pt;}
.x52_c00376{left:126.955963pt;}
.x6d_c00376{left:127.855695pt;}
.x1c_c00376{left:128.772488pt;}
.x11_c00376{left:130.279719pt;}
.x6e_c00376{left:156.163695pt;}
.x4e_c00376{left:157.197339pt;}
.x12_c00376{left:158.332223pt;}
.x76_c00376{left:165.603653pt;}
.x85_c00376{left:175.300633pt;}
.x53_c00376{left:184.557964pt;}
.x82_c00376{left:185.927169pt;}
.x3c_c00376{left:195.359111pt;}
.x32_c00376{left:197.133124pt;}
.x26_c00376{left:204.655515pt;}
.x77_c00376{left:205.685572pt;}
.x2a_c00376{left:215.039452pt;}
.x66_c00376{left:222.848000pt;}
.x57_c00376{left:223.920616pt;}
.x6_c00376{left:225.014667pt;}
.x43_c00376{left:226.317844pt;}
.x8a_c00376{left:233.056604pt;}
.x49_c00376{left:233.999357pt;}
.x5d_c00376{left:243.254352pt;}
.x2b_c00376{left:244.560507pt;}
.x67_c00376{left:253.346667pt;}
.x1d_c00376{left:254.301616pt;}
.x7_c00376{left:255.485333pt;}
.x58_c00376{left:262.322391pt;}
.x44_c00376{left:263.999559pt;}
.x61_c00376{left:272.519312pt;}
.x2c_c00376{left:273.601525pt;}
.x8_c00376{left:274.686667pt;}
.x59_c00376{left:282.482689pt;}
.x64_c00376{left:291.844031pt;}
.x7f_c00376{left:301.514939pt;}
.x33_c00376{left:303.236537pt;}
.x9_c00376{left:304.209333pt;}
.x78_c00376{left:310.889333pt;}
.x13_c00376{left:313.824352pt;}
.x83_c00376{left:320.302772pt;}
.x45_c00376{left:322.561632pt;}
.x6f_c00376{left:330.115695pt;}
.x68_c00376{left:331.322667pt;}
.x34_c00376{left:333.234664pt;}
.x4a_c00376{left:342.484141pt;}
.x8f_c00376{left:350.501344pt;}
.x62_c00376{left:351.965365pt;}
.x72_c00376{left:360.730556pt;}
.x3_c00376{left:368.880000pt;}
.x5e_c00376{left:370.691504pt;}
.x2d_c00376{left:372.005493pt;}
.x80_c00376{left:380.485644pt;}
.x4_c00376{left:389.040000pt;}
.x5a_c00376{left:390.247413pt;}
.x46_c00376{left:391.204521pt;}
.x1e_c00376{left:392.304185pt;}
.x79_c00376{left:399.636000pt;}
.x14_c00376{left:400.953924pt;}
.x2e_c00376{left:402.006584pt;}
.x5_c00376{left:408.480000pt;}
.x3d_c00376{left:409.447117pt;}
.xa_c00376{left:412.213333pt;}
.x90_c00376{left:419.186667pt;}
.x84_c00376{left:420.400395pt;}
.x1f_c00376{left:421.827116pt;}
.x86_c00376{left:428.264504pt;}
.x4b_c00376{left:430.327245pt;}
.x35_c00376{left:431.631567pt;}
.x91_c00376{left:439.222667pt;}
.x2f_c00376{left:440.408359pt;}
.xb_c00376{left:441.965333pt;}
.x7a_c00376{left:448.613333pt;}
.x63_c00376{left:451.319599pt;}
.x69_c00376{left:459.033333pt;}
.x3e_c00376{left:468.969275pt;}
.x15_c00376{left:471.515196pt;}
.x87_c00376{left:478.401237pt;}
.x5b_c00376{left:479.290625pt;}
.x7b_c00376{left:487.605333pt;}
.x5f_c00376{left:488.807239pt;}
.x27_c00376{left:490.741823pt;}
.x20_c00376{left:499.134479pt;}
.xc_c00376{left:500.080000pt;}
.x81_c00376{left:507.947659pt;}
.x4c_c00376{left:509.290975pt;}
.x88_c00376{left:517.766579pt;}
.x36_c00376{left:518.992661pt;}
.x21_c00376{left:520.493337pt;}
.x3f_c00376{left:528.251408pt;}
.x28_c00376{left:529.384548pt;}
.x6a_c00376{left:537.040000pt;}
.xd_c00376{left:540.142667pt;}
.x89_c00376{left:547.295263pt;}
.x16_c00376{left:550.259279pt;}
.x65_c00376{left:558.014928pt;}
.x22_c00376{left:559.593685pt;}
.x8d_c00376{left:566.049333pt;}
.x7c_c00376{left:567.905333pt;}
.x5c_c00376{left:569.053897pt;}
.x8b_c00376{left:576.069119pt;}
.x4f_c00376{left:577.934085pt;}
.x37_c00376{left:578.992915pt;}
.x40_c00376{left:587.533541pt;}
.x17_c00376{left:588.643975pt;}
.xe_c00376{left:589.580000pt;}
.x6b_c00376{left:597.746667pt;}
.x54_c00376{left:598.815516pt;}
.x73_c00376{left:606.981155pt;}
.x50_c00376{left:608.415224pt;}
.x70_c00376{left:616.475695pt;}
.x18_c00376{left:618.407181pt;}
.xf_c00376{left:619.308000pt;}
.x55_c00376{left:626.896463pt;}
.x39_c00376{left:628.096400pt;}
.x74_c00376{left:636.022173pt;}
.x6c_c00376{left:637.826667pt;}
.x7d_c00376{left:646.646667pt;}
.x51_c00376{left:647.777083pt;}
.x71_c00376{left:655.821028pt;}
.x60_c00376{left:657.518084pt;}
.x23_c00376{left:658.481240pt;}
.x47_c00376{left:666.976187pt;}
.x41_c00376{left:674.416573pt;}
.x75_c00376{left:676.584128pt;}
.x19_c00376{left:678.169595pt;}
.x7e_c00376{left:685.049333pt;}
.x29_c00376{left:687.499581pt;}
.x42_c00376{left:695.776968pt;}
.x4d_c00376{left:697.219524pt;}
.x56_c00376{left:706.100216pt;}
.x30_c00376{left:707.539328pt;}
.x24_c00376{left:715.753756pt;}
.x3a_c00376{left:717.379636pt;}
.x10_c00376{left:718.684000pt;}
.x38_c00376{left:726.636917pt;}
.x1a_c00376{left:728.815840pt;}
.x31_c00376{left:737.540419pt;}
.x25_c00376{left:746.472699pt;}
.x48_c00376{left:747.380036pt;}
.x8c_c00376{left:754.976179pt;}
.x1b_c00376{left:761.864440pt;}
.x8e_c00376{left:766.000000pt;}
}





/* 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_c00377 {
    display:none;
  }
  .loading-indicator_c00377.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00377 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_c00377 { 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_c00377" -> "#page-container .classname_c00377")
 */
.pf_c00377 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00377 { /* 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_c00377.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00377 { /* 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_c00377 { /* 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_c00377 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00377 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00377 {overflow:visible;}
  }
}
.c_c00377 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00377 { /* 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_c00377:after { /* webkit #35443 */
  content: '';
}
.t_c00377:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00377 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 */
}
.__c00377 { /* 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_c00377 { /* info for Javascript */
  display:none;
}
.l_c00377 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00377 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00377 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00377: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_c00377 {
    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_c00377.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00377.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_c00377 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00377{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00377;src:url('chunks/assets/font_cfe63ee56e9e10a97d33a3db.woff2')format("woff");}.ff1_c00377{font-family:ff1_c00377;line-height:1.000000;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;}
.m6_c00377{transform:matrix(0.015901,-0.000541,0.008504,0.249855,0,0);-ms-transform:matrix(0.015901,-0.000541,0.008504,0.249855,0,0);-webkit-transform:matrix(0.015901,-0.000541,0.008504,0.249855,0,0);}
.m0_c00377{transform:matrix(0.107705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107705,0.000000,0.000000,0.250000,0,0);}
.m36_c00377{transform:matrix(0.125160,-0.002754,0.005499,0.249940,0,0);-ms-transform:matrix(0.125160,-0.002754,0.005499,0.249940,0,0);-webkit-transform:matrix(0.125160,-0.002754,0.005499,0.249940,0,0);}
.m22_c00377{transform:matrix(0.163468,-0.001962,0.003000,0.249982,0,0);-ms-transform:matrix(0.163468,-0.001962,0.003000,0.249982,0,0);-webkit-transform:matrix(0.163468,-0.001962,0.003000,0.249982,0,0);}
.m23_c00377{transform:matrix(0.176762,-0.002121,0.003000,0.249982,0,0);-ms-transform:matrix(0.176762,-0.002121,0.003000,0.249982,0,0);-webkit-transform:matrix(0.176762,-0.002121,0.003000,0.249982,0,0);}
.m25_c00377{transform:matrix(0.186587,-0.002239,0.003000,0.249982,0,0);-ms-transform:matrix(0.186587,-0.002239,0.003000,0.249982,0,0);-webkit-transform:matrix(0.186587,-0.002239,0.003000,0.249982,0,0);}
.m18_c00377{transform:matrix(0.187411,-0.006378,0.008504,0.249855,0,0);-ms-transform:matrix(0.187411,-0.006378,0.008504,0.249855,0,0);-webkit-transform:matrix(0.187411,-0.006378,0.008504,0.249855,0,0);}
.m3_c00377{transform:matrix(0.189115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189115,0.000000,0.000000,0.250000,0,0);}
.m26_c00377{transform:matrix(0.192501,-0.002310,0.003000,0.249982,0,0);-ms-transform:matrix(0.192501,-0.002310,0.003000,0.249982,0,0);-webkit-transform:matrix(0.192501,-0.002310,0.003000,0.249982,0,0);}
.m20_c00377{transform:matrix(0.193781,-0.002325,0.003000,0.249982,0,0);-ms-transform:matrix(0.193781,-0.002325,0.003000,0.249982,0,0);-webkit-transform:matrix(0.193781,-0.002325,0.003000,0.249982,0,0);}
.m19_c00377{transform:matrix(0.195402,-0.006650,0.008504,0.249855,0,0);-ms-transform:matrix(0.195402,-0.006650,0.008504,0.249855,0,0);-webkit-transform:matrix(0.195402,-0.006650,0.008504,0.249855,0,0);}
.m27_c00377{transform:matrix(0.199186,-0.002390,0.003000,0.249982,0,0);-ms-transform:matrix(0.199186,-0.002390,0.003000,0.249982,0,0);-webkit-transform:matrix(0.199186,-0.002390,0.003000,0.249982,0,0);}
.m14_c00377{transform:matrix(0.202548,-0.006894,0.008504,0.249855,0,0);-ms-transform:matrix(0.202548,-0.006894,0.008504,0.249855,0,0);-webkit-transform:matrix(0.202548,-0.006894,0.008504,0.249855,0,0);}
.m33_c00377{transform:matrix(0.206210,-0.004537,0.005499,0.249940,0,0);-ms-transform:matrix(0.206210,-0.004537,0.005499,0.249940,0,0);-webkit-transform:matrix(0.206210,-0.004537,0.005499,0.249940,0,0);}
.m28_c00377{transform:matrix(0.207630,-0.002492,0.003000,0.249982,0,0);-ms-transform:matrix(0.207630,-0.002492,0.003000,0.249982,0,0);-webkit-transform:matrix(0.207630,-0.002492,0.003000,0.249982,0,0);}
.m2e_c00377{transform:matrix(0.218522,-0.004807,0.005499,0.249940,0,0);-ms-transform:matrix(0.218522,-0.004807,0.005499,0.249940,0,0);-webkit-transform:matrix(0.218522,-0.004807,0.005499,0.249940,0,0);}
.m21_c00377{transform:matrix(0.221434,-0.002657,0.003000,0.249982,0,0);-ms-transform:matrix(0.221434,-0.002657,0.003000,0.249982,0,0);-webkit-transform:matrix(0.221434,-0.002657,0.003000,0.249982,0,0);}
.m2d_c00377{transform:matrix(0.223016,-0.004906,0.005499,0.249940,0,0);-ms-transform:matrix(0.223016,-0.004906,0.005499,0.249940,0,0);-webkit-transform:matrix(0.223016,-0.004906,0.005499,0.249940,0,0);}
.m1d_c00377{transform:matrix(0.223591,-0.007610,0.008504,0.249855,0,0);-ms-transform:matrix(0.223591,-0.007610,0.008504,0.249855,0,0);-webkit-transform:matrix(0.223591,-0.007610,0.008504,0.249855,0,0);}
.m37_c00377{transform:matrix(0.227140,-0.004997,0.005499,0.249940,0,0);-ms-transform:matrix(0.227140,-0.004997,0.005499,0.249940,0,0);-webkit-transform:matrix(0.227140,-0.004997,0.005499,0.249940,0,0);}
.m34_c00377{transform:matrix(0.227410,-0.005003,0.005499,0.249940,0,0);-ms-transform:matrix(0.227410,-0.005003,0.005499,0.249940,0,0);-webkit-transform:matrix(0.227410,-0.005003,0.005499,0.249940,0,0);}
.m17_c00377{transform:matrix(0.231791,-0.007889,0.008504,0.249855,0,0);-ms-transform:matrix(0.231791,-0.007889,0.008504,0.249855,0,0);-webkit-transform:matrix(0.231791,-0.007889,0.008504,0.249855,0,0);}
.m24_c00377{transform:matrix(0.232828,-0.002794,0.003000,0.249982,0,0);-ms-transform:matrix(0.232828,-0.002794,0.003000,0.249982,0,0);-webkit-transform:matrix(0.232828,-0.002794,0.003000,0.249982,0,0);}
.m31_c00377{transform:matrix(0.233948,-0.005147,0.005499,0.249940,0,0);-ms-transform:matrix(0.233948,-0.005147,0.005499,0.249940,0,0);-webkit-transform:matrix(0.233948,-0.005147,0.005499,0.249940,0,0);}
.m1f_c00377{transform:matrix(0.237378,-0.002849,0.003000,0.249982,0,0);-ms-transform:matrix(0.237378,-0.002849,0.003000,0.249982,0,0);-webkit-transform:matrix(0.237378,-0.002849,0.003000,0.249982,0,0);}
.m30_c00377{transform:matrix(0.246000,-0.005412,0.005499,0.249940,0,0);-ms-transform:matrix(0.246000,-0.005412,0.005499,0.249940,0,0);-webkit-transform:matrix(0.246000,-0.005412,0.005499,0.249940,0,0);}
.m13_c00377{transform:matrix(0.246767,-0.008398,0.008504,0.249855,0,0);-ms-transform:matrix(0.246767,-0.008398,0.008504,0.249855,0,0);-webkit-transform:matrix(0.246767,-0.008398,0.008504,0.249855,0,0);}
.m15_c00377{transform:matrix(0.260409,-0.008863,0.008504,0.249855,0,0);-ms-transform:matrix(0.260409,-0.008863,0.008504,0.249855,0,0);-webkit-transform:matrix(0.260409,-0.008863,0.008504,0.249855,0,0);}
.m1_c00377{transform:matrix(0.262030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262030,0.000000,0.000000,0.250000,0,0);}
.m1c_c00377{transform:matrix(0.264882,-0.009015,0.008504,0.249855,0,0);-ms-transform:matrix(0.264882,-0.009015,0.008504,0.249855,0,0);-webkit-transform:matrix(0.264882,-0.009015,0.008504,0.249855,0,0);}
.m12_c00377{transform:matrix(0.265901,-0.009050,0.008504,0.249855,0,0);-ms-transform:matrix(0.265901,-0.009050,0.008504,0.249855,0,0);-webkit-transform:matrix(0.265901,-0.009050,0.008504,0.249855,0,0);}
.m1e_c00377{transform:matrix(0.272540,-0.003270,0.003000,0.249982,0,0);-ms-transform:matrix(0.272540,-0.003270,0.003000,0.249982,0,0);-webkit-transform:matrix(0.272540,-0.003270,0.003000,0.249982,0,0);}
.m29_c00377{transform:matrix(0.274575,-0.003295,0.003000,0.249982,0,0);-ms-transform:matrix(0.274575,-0.003295,0.003000,0.249982,0,0);-webkit-transform:matrix(0.274575,-0.003295,0.003000,0.249982,0,0);}
.m32_c00377{transform:matrix(0.277813,-0.006112,0.005499,0.249940,0,0);-ms-transform:matrix(0.277813,-0.006112,0.005499,0.249940,0,0);-webkit-transform:matrix(0.277813,-0.006112,0.005499,0.249940,0,0);}
.m2f_c00377{transform:matrix(0.281992,-0.006204,0.005499,0.249940,0,0);-ms-transform:matrix(0.281992,-0.006204,0.005499,0.249940,0,0);-webkit-transform:matrix(0.281992,-0.006204,0.005499,0.249940,0,0);}
.m8_c00377{transform:matrix(0.292306,-0.009948,0.008504,0.249855,0,0);-ms-transform:matrix(0.292306,-0.009948,0.008504,0.249855,0,0);-webkit-transform:matrix(0.292306,-0.009948,0.008504,0.249855,0,0);}
.m1a_c00377{transform:matrix(0.295914,-0.010071,0.008504,0.249855,0,0);-ms-transform:matrix(0.295914,-0.010071,0.008504,0.249855,0,0);-webkit-transform:matrix(0.295914,-0.010071,0.008504,0.249855,0,0);}
.md_c00377{transform:matrix(0.301450,-0.010260,0.008504,0.249855,0,0);-ms-transform:matrix(0.301450,-0.010260,0.008504,0.249855,0,0);-webkit-transform:matrix(0.301450,-0.010260,0.008504,0.249855,0,0);}
.m16_c00377{transform:matrix(0.309526,-0.010534,0.008504,0.249855,0,0);-ms-transform:matrix(0.309526,-0.010534,0.008504,0.249855,0,0);-webkit-transform:matrix(0.309526,-0.010534,0.008504,0.249855,0,0);}
.mf_c00377{transform:matrix(0.310595,-0.010571,0.008504,0.249855,0,0);-ms-transform:matrix(0.310595,-0.010571,0.008504,0.249855,0,0);-webkit-transform:matrix(0.310595,-0.010571,0.008504,0.249855,0,0);}
.m2c_c00377{transform:matrix(0.324227,-0.007133,0.005499,0.249940,0,0);-ms-transform:matrix(0.324227,-0.007133,0.005499,0.249940,0,0);-webkit-transform:matrix(0.324227,-0.007133,0.005499,0.249940,0,0);}
.m9_c00377{transform:matrix(0.327121,-0.011133,0.008504,0.249855,0,0);-ms-transform:matrix(0.327121,-0.011133,0.008504,0.249855,0,0);-webkit-transform:matrix(0.327121,-0.011133,0.008504,0.249855,0,0);}
.me_c00377{transform:matrix(0.328825,-0.011191,0.008504,0.249855,0,0);-ms-transform:matrix(0.328825,-0.011191,0.008504,0.249855,0,0);-webkit-transform:matrix(0.328825,-0.011191,0.008504,0.249855,0,0);}
.m1b_c00377{transform:matrix(0.329874,-0.011227,0.008504,0.249855,0,0);-ms-transform:matrix(0.329874,-0.011227,0.008504,0.249855,0,0);-webkit-transform:matrix(0.329874,-0.011227,0.008504,0.249855,0,0);}
.m2a_c00377{transform:matrix(0.349520,-0.004194,0.003000,0.249982,0,0);-ms-transform:matrix(0.349520,-0.004194,0.003000,0.249982,0,0);-webkit-transform:matrix(0.349520,-0.004194,0.003000,0.249982,0,0);}
.m2b_c00377{transform:matrix(0.358223,-0.007881,0.005499,0.249940,0,0);-ms-transform:matrix(0.358223,-0.007881,0.005499,0.249940,0,0);-webkit-transform:matrix(0.358223,-0.007881,0.005499,0.249940,0,0);}
.m7_c00377{transform:matrix(0.374488,-0.012745,0.008504,0.249855,0,0);-ms-transform:matrix(0.374488,-0.012745,0.008504,0.249855,0,0);-webkit-transform:matrix(0.374488,-0.012745,0.008504,0.249855,0,0);}
.m2_c00377{transform:matrix(0.388975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388975,0.000000,0.000000,0.250000,0,0);}
.ma_c00377{transform:matrix(0.389649,-0.013261,0.008504,0.249855,0,0);-ms-transform:matrix(0.389649,-0.013261,0.008504,0.249855,0,0);-webkit-transform:matrix(0.389649,-0.013261,0.008504,0.249855,0,0);}
.m4_c00377{transform:matrix(0.410267,-0.013963,0.008504,0.249855,0,0);-ms-transform:matrix(0.410267,-0.013963,0.008504,0.249855,0,0);-webkit-transform:matrix(0.410267,-0.013963,0.008504,0.249855,0,0);}
.mc_c00377{transform:matrix(0.419257,-0.014269,0.008504,0.249855,0,0);-ms-transform:matrix(0.419257,-0.014269,0.008504,0.249855,0,0);-webkit-transform:matrix(0.419257,-0.014269,0.008504,0.249855,0,0);}
.m5_c00377{transform:matrix(0.427772,-0.014559,0.008504,0.249855,0,0);-ms-transform:matrix(0.427772,-0.014559,0.008504,0.249855,0,0);-webkit-transform:matrix(0.427772,-0.014559,0.008504,0.249855,0,0);}
.mb_c00377{transform:matrix(0.448205,-0.015254,0.008504,0.249855,0,0);-ms-transform:matrix(0.448205,-0.015254,0.008504,0.249855,0,0);-webkit-transform:matrix(0.448205,-0.015254,0.008504,0.249855,0,0);}
.m35_c00377{transform:matrix(0.556360,-0.012240,0.005499,0.249940,0,0);-ms-transform:matrix(0.556360,-0.012240,0.005499,0.249940,0,0);-webkit-transform:matrix(0.556360,-0.012240,0.005499,0.249940,0,0);}
.m38_c00377{transform:matrix(0.859070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.859070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.859070,0.000000,0.000000,0.250000,0,0);}
.m11_c00377{transform:matrix(0.872120,-0.029682,0.008504,0.249855,0,0);-ms-transform:matrix(0.872120,-0.029682,0.008504,0.249855,0,0);-webkit-transform:matrix(0.872120,-0.029682,0.008504,0.249855,0,0);}
.m10_c00377{transform:matrix(1.121001,-0.038152,0.008504,0.249855,0,0);-ms-transform:matrix(1.121001,-0.038152,0.008504,0.249855,0,0);-webkit-transform:matrix(1.121001,-0.038152,0.008504,0.249855,0,0);}
.v0_c00377{vertical-align:0.000000px;}
.ls0_c00377{letter-spacing:0.000000px;}
.sc__c00377{text-shadow:none;}
.sc0_c00377{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__c00377{-webkit-text-stroke:0px transparent;}
.sc0_c00377{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00377{word-spacing:0.000000px;}
.fc0_c00377{color:transparent;}
.fs0_c00377{font-size:18.000000px;}
.fs2_c00377{font-size:54.000000px;}
.fs3_c00377{font-size:71.969646px;}
.fs1_c00377{font-size:78.000000px;}
.fs4_c00377{font-size:83.964587px;}
.fs6_c00377{font-size:84.020326px;}
.fs5_c00377{font-size:108.007776px;}
.y0_c00377{bottom:0.000000px;}
.y3_c00377{bottom:786.510000px;}
.y2_c00377{bottom:813.510000px;}
.y1_c00377{bottom:839.430000px;}
.y2b_c00377{bottom:937.182000px;}
.y2c_c00377{bottom:938.367822px;}
.y2d_c00377{bottom:941.124411px;}
.y2e_c00377{bottom:942.163647px;}
.y2f_c00377{bottom:943.566972px;}
.y30_c00377{bottom:944.392434px;}
.y31_c00377{bottom:945.755697px;}
.y32_c00377{bottom:946.561326px;}
.y33_c00377{bottom:948.166248px;}
.y34_c00377{bottom:948.943926px;}
.y35_c00377{bottom:949.706622px;}
.y36_c00377{bottom:951.491823px;}
.y37_c00377{bottom:951.607785px;}
.y1e_c00377{bottom:972.544500px;}
.y1f_c00377{bottom:973.224504px;}
.y20_c00377{bottom:973.625112px;}
.y21_c00377{bottom:974.035656px;}
.y22_c00377{bottom:975.245814px;}
.y23_c00377{bottom:975.786822px;}
.y24_c00377{bottom:976.161114px;}
.y25_c00377{bottom:976.844556px;}
.y26_c00377{bottom:977.212800px;}
.y27_c00377{bottom:977.756346px;}
.y28_c00377{bottom:978.042528px;}
.y29_c00377{bottom:979.420248px;}
.y2a_c00377{bottom:979.857270px;}
.y38_c00377{bottom:1007.910000px;}
.y12_c00377{bottom:1009.180068px;}
.y13_c00377{bottom:1010.653759px;}
.y14_c00377{bottom:1012.272598px;}
.y15_c00377{bottom:1013.241043px;}
.y16_c00377{bottom:1015.646538px;}
.y17_c00377{bottom:1017.612746px;}
.y18_c00377{bottom:1018.936107px;}
.y19_c00377{bottom:1021.163394px;}
.y1a_c00377{bottom:1022.042643px;}
.y1b_c00377{bottom:1025.181761px;}
.y1c_c00377{bottom:1026.195518px;}
.y1d_c00377{bottom:1028.681946px;}
.y4_c00377{bottom:1045.471500px;}
.y5_c00377{bottom:1046.988138px;}
.y6_c00377{bottom:1047.643896px;}
.y7_c00377{bottom:1048.215555px;}
.y8_c00377{bottom:1050.430026px;}
.y9_c00377{bottom:1054.205301px;}
.ya_c00377{bottom:1055.562207px;}
.yb_c00377{bottom:1056.209499px;}
.yc_c00377{bottom:1059.434943px;}
.yd_c00377{bottom:1060.458972px;}
.ye_c00377{bottom:1063.941099px;}
.yf_c00377{bottom:1064.334258px;}
.y10_c00377{bottom:1065.067689px;}
.y11_c00377{bottom:1066.513743px;}
.h2_c00377{height:18.000000px;}
.h4_c00377{height:54.000000px;}
.h5_c00377{height:71.969646px;}
.h3_c00377{height:78.000000px;}
.h6_c00377{height:83.964587px;}
.h8_c00377{height:84.020326px;}
.h7_c00377{height:108.007776px;}
.h0_c00377{height:1251.450000px;}
.h1_c00377{height:1251.750000px;}
.w0_c00377{width:915.000000px;}
.x0_c00377{left:0.000000px;}
.x2_c00377{left:10.800000px;}
.x3_c00377{left:13.500000px;}
.x1_c00377{left:19.980000px;}
.x4_c00377{left:43.576500px;}
.x12_c00377{left:54.575178px;}
.x27_c00377{left:55.602000px;}
.x5_c00377{left:88.138893px;}
.x1c_c00377{left:100.458000px;}
.x13_c00377{left:103.650242px;}
.x6_c00377{left:107.406606px;}
.x28_c00377{left:109.503000px;}
.x7_c00377{left:124.203293px;}
.x1d_c00377{left:133.842000px;}
.x14_c00377{left:157.563126px;}
.x1e_c00377{left:168.054000px;}
.x8_c00377{left:189.269661px;}
.x29_c00377{left:234.802500px;}
.x15_c00377{left:269.877464px;}
.x2a_c00377{left:282.040500px;}
.x9_c00377{left:300.196123px;}
.x1f_c00377{left:313.984500px;}
.x16_c00377{left:335.363346px;}
.xa_c00377{left:340.065214px;}
.x20_c00377{left:345.175500px;}
.xb_c00377{left:359.084177px;}
.x17_c00377{left:379.404234px;}
.x2b_c00377{left:383.349000px;}
.x21_c00377{left:402.129000px;}
.x22_c00377{left:432.816000px;}
.x2c_c00377{left:445.315500px;}
.xc_c00377{left:453.855310px;}
.x23_c00377{left:478.111500px;}
.x18_c00377{left:482.847777px;}
.xd_c00377{left:483.943692px;}
.x24_c00377{left:501.960000px;}
.x2d_c00377{left:554.886000px;}
.xe_c00377{left:586.256777px;}
.x19_c00377{left:587.380883px;}
.x2e_c00377{left:590.235000px;}
.xf_c00377{left:597.808713px;}
.x25_c00377{left:616.770000px;}
.x10_c00377{left:619.358642px;}
.x1a_c00377{left:621.134690px;}
.x2f_c00377{left:624.903000px;}
.x26_c00377{left:653.188500px;}
.x11_c00377{left:661.847110px;}
.x1b_c00377{left:703.933590px;}
.x30_c00377{left:706.048500px;}
.x31_c00377{left:711.319500px;}
.x32_c00377{left:904.500000px;}
@media print{
.v0_c00377{vertical-align:0.000000pt;}
.ls0_c00377{letter-spacing:0.000000pt;}
.ws0_c00377{word-spacing:0.000000pt;}
.fs0_c00377{font-size:16.000000pt;}
.fs2_c00377{font-size:48.000000pt;}
.fs3_c00377{font-size:63.973018pt;}
.fs1_c00377{font-size:69.333333pt;}
.fs4_c00377{font-size:74.635188pt;}
.fs6_c00377{font-size:74.684734pt;}
.fs5_c00377{font-size:96.006912pt;}
.y0_c00377{bottom:0.000000pt;}
.y3_c00377{bottom:699.120000pt;}
.y2_c00377{bottom:723.120000pt;}
.y1_c00377{bottom:746.160000pt;}
.y2b_c00377{bottom:833.050667pt;}
.y2c_c00377{bottom:834.104731pt;}
.y2d_c00377{bottom:836.555032pt;}
.y2e_c00377{bottom:837.478797pt;}
.y2f_c00377{bottom:838.726197pt;}
.y30_c00377{bottom:839.459941pt;}
.y31_c00377{bottom:840.671731pt;}
.y32_c00377{bottom:841.387845pt;}
.y33_c00377{bottom:842.814443pt;}
.y34_c00377{bottom:843.505712pt;}
.y35_c00377{bottom:844.183664pt;}
.y36_c00377{bottom:845.770509pt;}
.y37_c00377{bottom:845.873587pt;}
.y1e_c00377{bottom:864.484000pt;}
.y1f_c00377{bottom:865.088448pt;}
.y20_c00377{bottom:865.444544pt;}
.y21_c00377{bottom:865.809472pt;}
.y22_c00377{bottom:866.885168pt;}
.y23_c00377{bottom:867.366064pt;}
.y24_c00377{bottom:867.698768pt;}
.y25_c00377{bottom:868.306272pt;}
.y26_c00377{bottom:868.633600pt;}
.y27_c00377{bottom:869.116752pt;}
.y28_c00377{bottom:869.371136pt;}
.y29_c00377{bottom:870.595776pt;}
.y2a_c00377{bottom:870.984240pt;}
.y38_c00377{bottom:895.920000pt;}
.y12_c00377{bottom:897.048949pt;}
.y13_c00377{bottom:898.358897pt;}
.y14_c00377{bottom:899.797865pt;}
.y15_c00377{bottom:900.658705pt;}
.y16_c00377{bottom:902.796923pt;}
.y17_c00377{bottom:904.544663pt;}
.y18_c00377{bottom:905.720984pt;}
.y19_c00377{bottom:907.700795pt;}
.y1a_c00377{bottom:908.482349pt;}
.y1b_c00377{bottom:911.272676pt;}
.y1c_c00377{bottom:912.173793pt;}
.y1d_c00377{bottom:914.383952pt;}
.y4_c00377{bottom:929.308000pt;}
.y5_c00377{bottom:930.656123pt;}
.y6_c00377{bottom:931.239019pt;}
.y7_c00377{bottom:931.747160pt;}
.y8_c00377{bottom:933.715579pt;}
.y9_c00377{bottom:937.071379pt;}
.ya_c00377{bottom:938.277517pt;}
.yb_c00377{bottom:938.852888pt;}
.yc_c00377{bottom:941.719949pt;}
.yd_c00377{bottom:942.630197pt;}
.ye_c00377{bottom:945.725421pt;}
.yf_c00377{bottom:946.074896pt;}
.y10_c00377{bottom:946.726835pt;}
.y11_c00377{bottom:948.012216pt;}
.h2_c00377{height:16.000000pt;}
.h4_c00377{height:48.000000pt;}
.h5_c00377{height:63.973018pt;}
.h3_c00377{height:69.333333pt;}
.h6_c00377{height:74.635188pt;}
.h8_c00377{height:74.684734pt;}
.h7_c00377{height:96.006912pt;}
.h0_c00377{height:1112.400000pt;}
.h1_c00377{height:1112.666667pt;}
.w0_c00377{width:813.333333pt;}
.x0_c00377{left:0.000000pt;}
.x2_c00377{left:9.600000pt;}
.x3_c00377{left:12.000000pt;}
.x1_c00377{left:17.760000pt;}
.x4_c00377{left:38.734667pt;}
.x12_c00377{left:48.511269pt;}
.x27_c00377{left:49.424000pt;}
.x5_c00377{left:78.345683pt;}
.x1c_c00377{left:89.296000pt;}
.x13_c00377{left:92.133548pt;}
.x6_c00377{left:95.472539pt;}
.x28_c00377{left:97.336000pt;}
.x7_c00377{left:110.402927pt;}
.x1d_c00377{left:118.970667pt;}
.x14_c00377{left:140.056112pt;}
.x1e_c00377{left:149.381333pt;}
.x8_c00377{left:168.239699pt;}
.x29_c00377{left:208.713333pt;}
.x15_c00377{left:239.891079pt;}
.x2a_c00377{left:250.702667pt;}
.x9_c00377{left:266.840999pt;}
.x1f_c00377{left:279.097333pt;}
.x16_c00377{left:298.100752pt;}
.xa_c00377{left:302.280191pt;}
.x20_c00377{left:306.822667pt;}
.xb_c00377{left:319.185935pt;}
.x17_c00377{left:337.248208pt;}
.x2b_c00377{left:340.754667pt;}
.x21_c00377{left:357.448000pt;}
.x22_c00377{left:384.725333pt;}
.x2c_c00377{left:395.836000pt;}
.xc_c00377{left:403.426943pt;}
.x23_c00377{left:424.988000pt;}
.x18_c00377{left:429.198024pt;}
.xd_c00377{left:430.172171pt;}
.x24_c00377{left:446.186667pt;}
.x2d_c00377{left:493.232000pt;}
.xe_c00377{left:521.117135pt;}
.x19_c00377{left:522.116340pt;}
.x2e_c00377{left:524.653333pt;}
.xf_c00377{left:531.385523pt;}
.x25_c00377{left:548.240000pt;}
.x10_c00377{left:550.541015pt;}
.x1a_c00377{left:552.119724pt;}
.x2f_c00377{left:555.469333pt;}
.x26_c00377{left:580.612000pt;}
.x11_c00377{left:588.308543pt;}
.x1b_c00377{left:625.718747pt;}
.x30_c00377{left:627.598667pt;}
.x31_c00377{left:632.284000pt;}
.x32_c00377{left:804.000000pt;}
}





/* 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_c00378 {
    display:none;
  }
  .loading-indicator_c00378.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00378 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_c00378 { 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_c00378" -> "#page-container .classname_c00378")
 */
.pf_c00378 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00378 { /* 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_c00378.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00378 { /* 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_c00378 { /* 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_c00378 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00378 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00378 {overflow:visible;}
  }
}
.c_c00378 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00378 { /* 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_c00378:after { /* webkit #35443 */
  content: '';
}
.t_c00378:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00378 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 */
}
.__c00378 { /* 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_c00378 { /* info for Javascript */
  display:none;
}
.l_c00378 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00378 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00378 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00378: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_c00378 {
    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_c00378.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00378.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_c00378 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00378{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00378;src:url('chunks/assets/font_7c6b9abe6ee2a268480c528b.woff2')format("woff");}.ff1_c00378{font-family:ff1_c00378;line-height:1.000000;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;}
.m12a_c00378{transform:matrix(0.091729,0.002385,-0.006498,0.249916,0,0);-ms-transform:matrix(0.091729,0.002385,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.091729,0.002385,-0.006498,0.249916,0,0);}
.m109_c00378{transform:matrix(0.123060,0.003692,-0.007497,0.249888,0,0);-ms-transform:matrix(0.123060,0.003692,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.123060,0.003692,-0.007497,0.249888,0,0);}
.mad_c00378{transform:matrix(0.150197,0.003154,-0.005249,0.249945,0,0);-ms-transform:matrix(0.150197,0.003154,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.150197,0.003154,-0.005249,0.249945,0,0);}
.m11f_c00378{transform:matrix(0.152805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152805,0.000000,0.000000,0.250000,0,0);}
.m141_c00378{transform:matrix(0.158162,0.004112,-0.006498,0.249916,0,0);-ms-transform:matrix(0.158162,0.004112,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.158162,0.004112,-0.006498,0.249916,0,0);}
.m104_c00378{transform:matrix(0.158998,0.004770,-0.007497,0.249888,0,0);-ms-transform:matrix(0.158998,0.004770,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.158998,0.004770,-0.007497,0.249888,0,0);}
.m101_c00378{transform:matrix(0.159378,0.004781,-0.007497,0.249888,0,0);-ms-transform:matrix(0.159378,0.004781,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.159378,0.004781,-0.007497,0.249888,0,0);}
.md2_c00378{transform:matrix(0.159983,0.004799,-0.007497,0.249888,0,0);-ms-transform:matrix(0.159983,0.004799,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.159983,0.004799,-0.007497,0.249888,0,0);}
.md5_c00378{transform:matrix(0.161442,0.004843,-0.007497,0.249888,0,0);-ms-transform:matrix(0.161442,0.004843,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.161442,0.004843,-0.007497,0.249888,0,0);}
.md8_c00378{transform:matrix(0.163292,0.004899,-0.007497,0.249888,0,0);-ms-transform:matrix(0.163292,0.004899,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.163292,0.004899,-0.007497,0.249888,0,0);}
.mdc_c00378{transform:matrix(0.165356,0.004961,-0.007497,0.249888,0,0);-ms-transform:matrix(0.165356,0.004961,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.165356,0.004961,-0.007497,0.249888,0,0);}
.mae_c00378{transform:matrix(0.165863,0.003483,-0.005249,0.249945,0,0);-ms-transform:matrix(0.165863,0.003483,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.165863,0.003483,-0.005249,0.249945,0,0);}
.m8a_c00378{transform:matrix(0.168965,0.003886,-0.005748,0.249934,0,0);-ms-transform:matrix(0.168965,0.003886,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.168965,0.003886,-0.005748,0.249934,0,0);}
.mda_c00378{transform:matrix(0.169604,0.005088,-0.007497,0.249888,0,0);-ms-transform:matrix(0.169604,0.005088,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.169604,0.005088,-0.007497,0.249888,0,0);}
.m66_c00378{transform:matrix(0.170010,0.003910,-0.005748,0.249934,0,0);-ms-transform:matrix(0.170010,0.003910,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.170010,0.003910,-0.005748,0.249934,0,0);}
.m5c_c00378{transform:matrix(0.172149,0.003959,-0.005748,0.249934,0,0);-ms-transform:matrix(0.172149,0.003959,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.172149,0.003959,-0.005748,0.249934,0,0);}
.m108_c00378{transform:matrix(0.174087,0.005223,-0.007497,0.249888,0,0);-ms-transform:matrix(0.174087,0.005223,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.174087,0.005223,-0.007497,0.249888,0,0);}
.mb8_c00378{transform:matrix(0.175141,0.005254,-0.007497,0.249888,0,0);-ms-transform:matrix(0.175141,0.005254,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.175141,0.005254,-0.007497,0.249888,0,0);}
.m10a_c00378{transform:matrix(0.177505,0.005325,-0.007497,0.249888,0,0);-ms-transform:matrix(0.177505,0.005325,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.177505,0.005325,-0.007497,0.249888,0,0);}
.m60_c00378{transform:matrix(0.177833,0.004090,-0.005748,0.249934,0,0);-ms-transform:matrix(0.177833,0.004090,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.177833,0.004090,-0.005748,0.249934,0,0);}
.m5b_c00378{transform:matrix(0.178148,0.004097,-0.005748,0.249934,0,0);-ms-transform:matrix(0.178148,0.004097,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.178148,0.004097,-0.005748,0.249934,0,0);}
.m10b_c00378{transform:matrix(0.178250,0.005347,-0.007497,0.249888,0,0);-ms-transform:matrix(0.178250,0.005347,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.178250,0.005347,-0.007497,0.249888,0,0);}
.md3_c00378{transform:matrix(0.178495,0.005355,-0.007497,0.249888,0,0);-ms-transform:matrix(0.178495,0.005355,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.178495,0.005355,-0.007497,0.249888,0,0);}
.m1c_c00378{transform:matrix(0.179155,0.002687,-0.003750,0.249972,0,0);-ms-transform:matrix(0.179155,0.002687,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.179155,0.002687,-0.003750,0.249972,0,0);}
.m65_c00378{transform:matrix(0.179168,0.004121,-0.005748,0.249934,0,0);-ms-transform:matrix(0.179168,0.004121,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.179168,0.004121,-0.005748,0.249934,0,0);}
.mdb_c00378{transform:matrix(0.181004,0.005430,-0.007497,0.249888,0,0);-ms-transform:matrix(0.181004,0.005430,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.181004,0.005430,-0.007497,0.249888,0,0);}
.m63_c00378{transform:matrix(0.181287,0.004170,-0.005748,0.249934,0,0);-ms-transform:matrix(0.181287,0.004170,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.181287,0.004170,-0.005748,0.249934,0,0);}
.m100_c00378{transform:matrix(0.181398,0.005442,-0.007497,0.249888,0,0);-ms-transform:matrix(0.181398,0.005442,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.181398,0.005442,-0.007497,0.249888,0,0);}
.mc6_c00378{transform:matrix(0.181488,0.005445,-0.007497,0.249888,0,0);-ms-transform:matrix(0.181488,0.005445,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.181488,0.005445,-0.007497,0.249888,0,0);}
.mec_c00378{transform:matrix(0.181863,0.005456,-0.007497,0.249888,0,0);-ms-transform:matrix(0.181863,0.005456,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.181863,0.005456,-0.007497,0.249888,0,0);}
.m21_c00378{transform:matrix(0.181865,0.002728,-0.003750,0.249972,0,0);-ms-transform:matrix(0.181865,0.002728,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.181865,0.002728,-0.003750,0.249972,0,0);}
.m15_c00378{transform:matrix(0.182519,0.002738,-0.003750,0.249972,0,0);-ms-transform:matrix(0.182519,0.002738,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.182519,0.002738,-0.003750,0.249972,0,0);}
.m12d_c00378{transform:matrix(0.183153,0.004762,-0.006498,0.249916,0,0);-ms-transform:matrix(0.183153,0.004762,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.183153,0.004762,-0.006498,0.249916,0,0);}
.mc8_c00378{transform:matrix(0.183537,0.005506,-0.007497,0.249888,0,0);-ms-transform:matrix(0.183537,0.005506,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.183537,0.005506,-0.007497,0.249888,0,0);}
.m19_c00378{transform:matrix(0.183599,0.002754,-0.003750,0.249972,0,0);-ms-transform:matrix(0.183599,0.002754,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.183599,0.002754,-0.003750,0.249972,0,0);}
.m102_c00378{transform:matrix(0.184027,0.005521,-0.007497,0.249888,0,0);-ms-transform:matrix(0.184027,0.005521,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.184027,0.005521,-0.007497,0.249888,0,0);}
.m93_c00378{transform:matrix(0.184126,0.004235,-0.005748,0.249934,0,0);-ms-transform:matrix(0.184126,0.004235,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.184126,0.004235,-0.005748,0.249934,0,0);}
.m5e_c00378{transform:matrix(0.184236,0.004237,-0.005748,0.249934,0,0);-ms-transform:matrix(0.184236,0.004237,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.184236,0.004237,-0.005748,0.249934,0,0);}
.mdf_c00378{transform:matrix(0.184262,0.005528,-0.007497,0.249888,0,0);-ms-transform:matrix(0.184262,0.005528,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.184262,0.005528,-0.007497,0.249888,0,0);}
.m98_c00378{transform:matrix(0.184674,0.003878,-0.005249,0.249945,0,0);-ms-transform:matrix(0.184674,0.003878,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.184674,0.003878,-0.005249,0.249945,0,0);}
.m90_c00378{transform:matrix(0.185001,0.004255,-0.005748,0.249934,0,0);-ms-transform:matrix(0.185001,0.004255,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.185001,0.004255,-0.005748,0.249934,0,0);}
.m106_c00378{transform:matrix(0.185032,0.005551,-0.007497,0.249888,0,0);-ms-transform:matrix(0.185032,0.005551,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.185032,0.005551,-0.007497,0.249888,0,0);}
.mcc_c00378{transform:matrix(0.186301,0.005589,-0.007497,0.249888,0,0);-ms-transform:matrix(0.186301,0.005589,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.186301,0.005589,-0.007497,0.249888,0,0);}
.mdd_c00378{transform:matrix(0.186351,0.005591,-0.007497,0.249888,0,0);-ms-transform:matrix(0.186351,0.005591,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.186351,0.005591,-0.007497,0.249888,0,0);}
.m92_c00378{transform:matrix(0.186446,0.004288,-0.005748,0.249934,0,0);-ms-transform:matrix(0.186446,0.004288,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.186446,0.004288,-0.005748,0.249934,0,0);}
.m9d_c00378{transform:matrix(0.186904,0.003925,-0.005249,0.249945,0,0);-ms-transform:matrix(0.186904,0.003925,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.186904,0.003925,-0.005249,0.249945,0,0);}
.m12b_c00378{transform:matrix(0.187887,0.004885,-0.006498,0.249916,0,0);-ms-transform:matrix(0.187887,0.004885,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.187887,0.004885,-0.006498,0.249916,0,0);}
.mef_c00378{transform:matrix(0.188650,0.005660,-0.007497,0.249888,0,0);-ms-transform:matrix(0.188650,0.005660,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.188650,0.005660,-0.007497,0.249888,0,0);}
.me7_c00378{transform:matrix(0.190179,0.005705,-0.007497,0.249888,0,0);-ms-transform:matrix(0.190179,0.005705,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.190179,0.005705,-0.007497,0.249888,0,0);}
.m8b_c00378{transform:matrix(0.190435,0.004380,-0.005748,0.249934,0,0);-ms-transform:matrix(0.190435,0.004380,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.190435,0.004380,-0.005748,0.249934,0,0);}
.md6_c00378{transform:matrix(0.190439,0.005713,-0.007497,0.249888,0,0);-ms-transform:matrix(0.190439,0.005713,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.190439,0.005713,-0.007497,0.249888,0,0);}
.md4_c00378{transform:matrix(0.190534,0.005716,-0.007497,0.249888,0,0);-ms-transform:matrix(0.190534,0.005716,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.190534,0.005716,-0.007497,0.249888,0,0);}
.m103_c00378{transform:matrix(0.190659,0.005720,-0.007497,0.249888,0,0);-ms-transform:matrix(0.190659,0.005720,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.190659,0.005720,-0.007497,0.249888,0,0);}
.md9_c00378{transform:matrix(0.190929,0.005728,-0.007497,0.249888,0,0);-ms-transform:matrix(0.190929,0.005728,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.190929,0.005728,-0.007497,0.249888,0,0);}
.m9c_c00378{transform:matrix(0.191373,0.004019,-0.005249,0.249945,0,0);-ms-transform:matrix(0.191373,0.004019,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.191373,0.004019,-0.005249,0.249945,0,0);}
.mde_c00378{transform:matrix(0.191519,0.005746,-0.007497,0.249888,0,0);-ms-transform:matrix(0.191519,0.005746,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.191519,0.005746,-0.007497,0.249888,0,0);}
.mb4_c00378{transform:matrix(0.192338,0.005770,-0.007497,0.249888,0,0);-ms-transform:matrix(0.192338,0.005770,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.192338,0.005770,-0.007497,0.249888,0,0);}
.md7_c00378{transform:matrix(0.192538,0.005776,-0.007497,0.249888,0,0);-ms-transform:matrix(0.192538,0.005776,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.192538,0.005776,-0.007497,0.249888,0,0);}
.m12_c00378{transform:matrix(0.192803,0.002892,-0.003750,0.249972,0,0);-ms-transform:matrix(0.192803,0.002892,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.192803,0.002892,-0.003750,0.249972,0,0);}
.m1a_c00378{transform:matrix(0.193018,0.002895,-0.003750,0.249972,0,0);-ms-transform:matrix(0.193018,0.002895,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.193018,0.002895,-0.003750,0.249972,0,0);}
.m105_c00378{transform:matrix(0.193298,0.005799,-0.007497,0.249888,0,0);-ms-transform:matrix(0.193298,0.005799,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.193298,0.005799,-0.007497,0.249888,0,0);}
.m62_c00378{transform:matrix(0.193359,0.004447,-0.005748,0.249934,0,0);-ms-transform:matrix(0.193359,0.004447,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.193359,0.004447,-0.005748,0.249934,0,0);}
.mf3_c00378{transform:matrix(0.194108,0.005823,-0.007497,0.249888,0,0);-ms-transform:matrix(0.194108,0.005823,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.194108,0.005823,-0.007497,0.249888,0,0);}
.m8e_c00378{transform:matrix(0.194194,0.004466,-0.005748,0.249934,0,0);-ms-transform:matrix(0.194194,0.004466,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.194194,0.004466,-0.005748,0.249934,0,0);}
.m5f_c00378{transform:matrix(0.194294,0.004469,-0.005748,0.249934,0,0);-ms-transform:matrix(0.194294,0.004469,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.194294,0.004469,-0.005748,0.249934,0,0);}
.ma_c00378{transform:matrix(0.194328,0.002915,-0.003750,0.249972,0,0);-ms-transform:matrix(0.194328,0.002915,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.194328,0.002915,-0.003750,0.249972,0,0);}
.mc9_c00378{transform:matrix(0.194712,0.005841,-0.007497,0.249888,0,0);-ms-transform:matrix(0.194712,0.005841,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.194712,0.005841,-0.007497,0.249888,0,0);}
.m122_c00378{transform:matrix(0.196305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196305,0.000000,0.000000,0.250000,0,0);}
.m10_c00378{transform:matrix(0.196623,0.002949,-0.003750,0.249972,0,0);-ms-transform:matrix(0.196623,0.002949,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.196623,0.002949,-0.003750,0.249972,0,0);}
.m6_c00378{transform:matrix(0.197413,0.002961,-0.003750,0.249972,0,0);-ms-transform:matrix(0.197413,0.002961,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.197413,0.002961,-0.003750,0.249972,0,0);}
.mce_c00378{transform:matrix(0.198256,0.005948,-0.007497,0.249888,0,0);-ms-transform:matrix(0.198256,0.005948,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.198256,0.005948,-0.007497,0.249888,0,0);}
.mb2_c00378{transform:matrix(0.198556,0.005957,-0.007497,0.249888,0,0);-ms-transform:matrix(0.198556,0.005957,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.198556,0.005957,-0.007497,0.249888,0,0);}
.me0_c00378{transform:matrix(0.198931,0.005968,-0.007497,0.249888,0,0);-ms-transform:matrix(0.198931,0.005968,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.198931,0.005968,-0.007497,0.249888,0,0);}
.m4_c00378{transform:matrix(0.199078,0.002986,-0.003750,0.249972,0,0);-ms-transform:matrix(0.199078,0.002986,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.199078,0.002986,-0.003750,0.249972,0,0);}
.m97_c00378{transform:matrix(0.199206,0.004183,-0.005249,0.249945,0,0);-ms-transform:matrix(0.199206,0.004183,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.199206,0.004183,-0.005249,0.249945,0,0);}
.m12f_c00378{transform:matrix(0.199413,0.005185,-0.006498,0.249916,0,0);-ms-transform:matrix(0.199413,0.005185,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.199413,0.005185,-0.006498,0.249916,0,0);}
.mea_c00378{transform:matrix(0.199640,0.005989,-0.007497,0.249888,0,0);-ms-transform:matrix(0.199640,0.005989,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.199640,0.005989,-0.007497,0.249888,0,0);}
.m12c_c00378{transform:matrix(0.199653,0.005191,-0.006498,0.249916,0,0);-ms-transform:matrix(0.199653,0.005191,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.199653,0.005191,-0.006498,0.249916,0,0);}
.m94_c00378{transform:matrix(0.199926,0.004198,-0.005249,0.249945,0,0);-ms-transform:matrix(0.199926,0.004198,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.199926,0.004198,-0.005249,0.249945,0,0);}
.m88_c00378{transform:matrix(0.200107,0.004602,-0.005748,0.249934,0,0);-ms-transform:matrix(0.200107,0.004602,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.200107,0.004602,-0.005748,0.249934,0,0);}
.ma0_c00378{transform:matrix(0.200726,0.004215,-0.005249,0.249945,0,0);-ms-transform:matrix(0.200726,0.004215,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.200726,0.004215,-0.005249,0.249945,0,0);}
.m23_c00378{transform:matrix(0.201282,0.003019,-0.003750,0.249972,0,0);-ms-transform:matrix(0.201282,0.003019,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.201282,0.003019,-0.003750,0.249972,0,0);}
.m91_c00378{transform:matrix(0.201512,0.004635,-0.005748,0.249934,0,0);-ms-transform:matrix(0.201512,0.004635,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.201512,0.004635,-0.005748,0.249934,0,0);}
.mf6_c00378{transform:matrix(0.202199,0.006066,-0.007497,0.249888,0,0);-ms-transform:matrix(0.202199,0.006066,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.202199,0.006066,-0.007497,0.249888,0,0);}
.mf0_c00378{transform:matrix(0.202789,0.006084,-0.007497,0.249888,0,0);-ms-transform:matrix(0.202789,0.006084,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.202789,0.006084,-0.007497,0.249888,0,0);}
.m107_c00378{transform:matrix(0.202884,0.006087,-0.007497,0.249888,0,0);-ms-transform:matrix(0.202884,0.006087,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.202884,0.006087,-0.007497,0.249888,0,0);}
.m8c_c00378{transform:matrix(0.202946,0.004668,-0.005748,0.249934,0,0);-ms-transform:matrix(0.202946,0.004668,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.202946,0.004668,-0.005748,0.249934,0,0);}
.m3b_c00378{transform:matrix(0.203111,0.004672,-0.005748,0.249934,0,0);-ms-transform:matrix(0.203111,0.004672,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.203111,0.004672,-0.005748,0.249934,0,0);}
.md_c00378{transform:matrix(0.203222,0.003048,-0.003750,0.249972,0,0);-ms-transform:matrix(0.203222,0.003048,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.203222,0.003048,-0.003750,0.249972,0,0);}
.m95_c00378{transform:matrix(0.203640,0.004276,-0.005249,0.249945,0,0);-ms-transform:matrix(0.203640,0.004276,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.203640,0.004276,-0.005249,0.249945,0,0);}
.maf_c00378{transform:matrix(0.203653,0.006110,-0.007497,0.249888,0,0);-ms-transform:matrix(0.203653,0.006110,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.203653,0.006110,-0.007497,0.249888,0,0);}
.me9_c00378{transform:matrix(0.205138,0.006154,-0.007497,0.249888,0,0);-ms-transform:matrix(0.205138,0.006154,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.205138,0.006154,-0.007497,0.249888,0,0);}
.mf7_c00378{transform:matrix(0.205308,0.006159,-0.007497,0.249888,0,0);-ms-transform:matrix(0.205308,0.006159,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.205308,0.006159,-0.007497,0.249888,0,0);}
.me5_c00378{transform:matrix(0.205363,0.006161,-0.007497,0.249888,0,0);-ms-transform:matrix(0.205363,0.006161,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.205363,0.006161,-0.007497,0.249888,0,0);}
.m89_c00378{transform:matrix(0.205906,0.004736,-0.005748,0.249934,0,0);-ms-transform:matrix(0.205906,0.004736,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.205906,0.004736,-0.005748,0.249934,0,0);}
.m41_c00378{transform:matrix(0.206205,0.004743,-0.005748,0.249934,0,0);-ms-transform:matrix(0.206205,0.004743,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.206205,0.004743,-0.005748,0.249934,0,0);}
.m126_c00378{transform:matrix(0.206280,0.005363,-0.006498,0.249916,0,0);-ms-transform:matrix(0.206280,0.005363,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.206280,0.005363,-0.006498,0.249916,0,0);}
.m11_c00378{transform:matrix(0.206282,0.003094,-0.003750,0.249972,0,0);-ms-transform:matrix(0.206282,0.003094,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.206282,0.003094,-0.003750,0.249972,0,0);}
.m129_c00378{transform:matrix(0.206320,0.005364,-0.006498,0.249916,0,0);-ms-transform:matrix(0.206320,0.005364,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.206320,0.005364,-0.006498,0.249916,0,0);}
.m120_c00378{transform:matrix(0.206525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206525,0.000000,0.000000,0.250000,0,0);}
.m3a_c00378{transform:matrix(0.206570,0.004751,-0.005748,0.249934,0,0);-ms-transform:matrix(0.206570,0.004751,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.206570,0.004751,-0.005748,0.249934,0,0);}
.m7_c00378{transform:matrix(0.206802,0.003102,-0.003750,0.249972,0,0);-ms-transform:matrix(0.206802,0.003102,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.206802,0.003102,-0.003750,0.249972,0,0);}
.mb_c00378{transform:matrix(0.207402,0.003111,-0.003750,0.249972,0,0);-ms-transform:matrix(0.207402,0.003111,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.207402,0.003111,-0.003750,0.249972,0,0);}
.mc7_c00378{transform:matrix(0.207587,0.006228,-0.007497,0.249888,0,0);-ms-transform:matrix(0.207587,0.006228,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.207587,0.006228,-0.007497,0.249888,0,0);}
.m6a_c00378{transform:matrix(0.207960,0.004783,-0.005748,0.249934,0,0);-ms-transform:matrix(0.207960,0.004783,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.207960,0.004783,-0.005748,0.249934,0,0);}
.maa_c00378{transform:matrix(0.208134,0.004371,-0.005249,0.249945,0,0);-ms-transform:matrix(0.208134,0.004371,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.208134,0.004371,-0.005249,0.249945,0,0);}
.mb1_c00378{transform:matrix(0.208296,0.006249,-0.007497,0.249888,0,0);-ms-transform:matrix(0.208296,0.006249,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.208296,0.006249,-0.007497,0.249888,0,0);}
.m12e_c00378{transform:matrix(0.208475,0.005420,-0.006498,0.249916,0,0);-ms-transform:matrix(0.208475,0.005420,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.208475,0.005420,-0.006498,0.249916,0,0);}
.m130_c00378{transform:matrix(0.208709,0.005426,-0.006498,0.249916,0,0);-ms-transform:matrix(0.208709,0.005426,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.208709,0.005426,-0.006498,0.249916,0,0);}
.m8d_c00378{transform:matrix(0.208860,0.004804,-0.005748,0.249934,0,0);-ms-transform:matrix(0.208860,0.004804,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.208860,0.004804,-0.005748,0.249934,0,0);}
.mc5_c00378{transform:matrix(0.208876,0.006266,-0.007497,0.249888,0,0);-ms-transform:matrix(0.208876,0.006266,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.208876,0.006266,-0.007497,0.249888,0,0);}
.mf9_c00378{transform:matrix(0.209206,0.006276,-0.007497,0.249888,0,0);-ms-transform:matrix(0.209206,0.006276,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.209206,0.006276,-0.007497,0.249888,0,0);}
.ma4_c00378{transform:matrix(0.209254,0.004394,-0.005249,0.249945,0,0);-ms-transform:matrix(0.209254,0.004394,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.209254,0.004394,-0.005249,0.249945,0,0);}
.mf1_c00378{transform:matrix(0.209796,0.006294,-0.007497,0.249888,0,0);-ms-transform:matrix(0.209796,0.006294,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.209796,0.006294,-0.007497,0.249888,0,0);}
.m40_c00378{transform:matrix(0.209815,0.004826,-0.005748,0.249934,0,0);-ms-transform:matrix(0.209815,0.004826,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.209815,0.004826,-0.005748,0.249934,0,0);}
.m3d_c00378{transform:matrix(0.209825,0.004826,-0.005748,0.249934,0,0);-ms-transform:matrix(0.209825,0.004826,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.209825,0.004826,-0.005748,0.249934,0,0);}
.m72_c00378{transform:matrix(0.209994,0.004830,-0.005748,0.249934,0,0);-ms-transform:matrix(0.209994,0.004830,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.209994,0.004830,-0.005748,0.249934,0,0);}
.m64_c00378{transform:matrix(0.210019,0.004830,-0.005748,0.249934,0,0);-ms-transform:matrix(0.210019,0.004830,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.210019,0.004830,-0.005748,0.249934,0,0);}
.m127_c00378{transform:matrix(0.210104,0.005463,-0.006498,0.249916,0,0);-ms-transform:matrix(0.210104,0.005463,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.210104,0.005463,-0.006498,0.249916,0,0);}
.m128_c00378{transform:matrix(0.210974,0.005485,-0.006498,0.249916,0,0);-ms-transform:matrix(0.210974,0.005485,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.210974,0.005485,-0.006498,0.249916,0,0);}
.m1d_c00378{transform:matrix(0.211006,0.003165,-0.003750,0.249972,0,0);-ms-transform:matrix(0.211006,0.003165,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.211006,0.003165,-0.003750,0.249972,0,0);}
.m9e_c00378{transform:matrix(0.211713,0.004446,-0.005249,0.249945,0,0);-ms-transform:matrix(0.211713,0.004446,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.211713,0.004446,-0.005249,0.249945,0,0);}
.mf4_c00378{transform:matrix(0.211720,0.006352,-0.007497,0.249888,0,0);-ms-transform:matrix(0.211720,0.006352,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.211720,0.006352,-0.007497,0.249888,0,0);}
.m8f_c00378{transform:matrix(0.211809,0.004872,-0.005748,0.249934,0,0);-ms-transform:matrix(0.211809,0.004872,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.211809,0.004872,-0.005748,0.249934,0,0);}
.m61_c00378{transform:matrix(0.211909,0.004874,-0.005748,0.249934,0,0);-ms-transform:matrix(0.211909,0.004874,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.211909,0.004874,-0.005748,0.249934,0,0);}
.mca_c00378{transform:matrix(0.212105,0.006363,-0.007497,0.249888,0,0);-ms-transform:matrix(0.212105,0.006363,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.212105,0.006363,-0.007497,0.249888,0,0);}
.m121_c00378{transform:matrix(0.212265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212265,0.000000,0.000000,0.250000,0,0);}
.med_c00378{transform:matrix(0.212719,0.006382,-0.007497,0.249888,0,0);-ms-transform:matrix(0.212719,0.006382,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.212719,0.006382,-0.007497,0.249888,0,0);}
.m11e_c00378{transform:matrix(0.212780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212780,0.000000,0.000000,0.250000,0,0);}
.m5d_c00378{transform:matrix(0.213054,0.004900,-0.005748,0.249934,0,0);-ms-transform:matrix(0.213054,0.004900,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.213054,0.004900,-0.005748,0.249934,0,0);}
.m70_c00378{transform:matrix(0.213079,0.004901,-0.005748,0.249934,0,0);-ms-transform:matrix(0.213079,0.004901,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.213079,0.004901,-0.005748,0.249934,0,0);}
.mcd_c00378{transform:matrix(0.213649,0.006409,-0.007497,0.249888,0,0);-ms-transform:matrix(0.213649,0.006409,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.213649,0.006409,-0.007497,0.249888,0,0);}
.m1b_c00378{transform:matrix(0.213716,0.003206,-0.003750,0.249972,0,0);-ms-transform:matrix(0.213716,0.003206,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.213716,0.003206,-0.003750,0.249972,0,0);}
.m8_c00378{transform:matrix(0.213941,0.003209,-0.003750,0.249972,0,0);-ms-transform:matrix(0.213941,0.003209,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.213941,0.003209,-0.003750,0.249972,0,0);}
.m116_c00378{transform:matrix(0.214727,0.005583,-0.006498,0.249916,0,0);-ms-transform:matrix(0.214727,0.005583,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.214727,0.005583,-0.006498,0.249916,0,0);}
.m124_c00378{transform:matrix(0.215120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215120,0.000000,0.000000,0.250000,0,0);}
.mf_c00378{transform:matrix(0.215121,0.003227,-0.003750,0.249972,0,0);-ms-transform:matrix(0.215121,0.003227,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.215121,0.003227,-0.003750,0.249972,0,0);}
.mb0_c00378{transform:matrix(0.215148,0.006454,-0.007497,0.249888,0,0);-ms-transform:matrix(0.215148,0.006454,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.215148,0.006454,-0.007497,0.249888,0,0);}
.m16_c00378{transform:matrix(0.215461,0.003232,-0.003750,0.249972,0,0);-ms-transform:matrix(0.215461,0.003232,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.215461,0.003232,-0.003750,0.249972,0,0);}
.mb5_c00378{transform:matrix(0.215968,0.006479,-0.007497,0.249888,0,0);-ms-transform:matrix(0.215968,0.006479,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.215968,0.006479,-0.007497,0.249888,0,0);}
.m13_c00378{transform:matrix(0.215986,0.003240,-0.003750,0.249972,0,0);-ms-transform:matrix(0.215986,0.003240,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.215986,0.003240,-0.003750,0.249972,0,0);}
.m18_c00378{transform:matrix(0.216191,0.003243,-0.003750,0.249972,0,0);-ms-transform:matrix(0.216191,0.003243,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.216191,0.003243,-0.003750,0.249972,0,0);}
.meb_c00378{transform:matrix(0.217332,0.006520,-0.007497,0.249888,0,0);-ms-transform:matrix(0.217332,0.006520,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.217332,0.006520,-0.007497,0.249888,0,0);}
.mb7_c00378{transform:matrix(0.217537,0.006526,-0.007497,0.249888,0,0);-ms-transform:matrix(0.217537,0.006526,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.217537,0.006526,-0.007497,0.249888,0,0);}
.m51_c00378{transform:matrix(0.217672,0.005006,-0.005748,0.249934,0,0);-ms-transform:matrix(0.217672,0.005006,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.217672,0.005006,-0.005748,0.249934,0,0);}
.m17_c00378{transform:matrix(0.217850,0.003268,-0.003750,0.249972,0,0);-ms-transform:matrix(0.217850,0.003268,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.217850,0.003268,-0.003750,0.249972,0,0);}
.m125_c00378{transform:matrix(0.217920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217920,0.000000,0.000000,0.250000,0,0);}
.mab_c00378{transform:matrix(0.218782,0.004594,-0.005249,0.249945,0,0);-ms-transform:matrix(0.218782,0.004594,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.218782,0.004594,-0.005249,0.249945,0,0);}
.m114_c00378{transform:matrix(0.219201,0.005699,-0.006498,0.249916,0,0);-ms-transform:matrix(0.219201,0.005699,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.219201,0.005699,-0.006498,0.249916,0,0);}
.m6e_c00378{transform:matrix(0.219422,0.005047,-0.005748,0.249934,0,0);-ms-transform:matrix(0.219422,0.005047,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.219422,0.005047,-0.005748,0.249934,0,0);}
.m9b_c00378{transform:matrix(0.220236,0.004625,-0.005249,0.249945,0,0);-ms-transform:matrix(0.220236,0.004625,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.220236,0.004625,-0.005249,0.249945,0,0);}
.m42_c00378{transform:matrix(0.220312,0.005067,-0.005748,0.249934,0,0);-ms-transform:matrix(0.220312,0.005067,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.220312,0.005067,-0.005748,0.249934,0,0);}
.m1f_c00378{transform:matrix(0.220415,0.003306,-0.003750,0.249972,0,0);-ms-transform:matrix(0.220415,0.003306,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.220415,0.003306,-0.003750,0.249972,0,0);}
.mb3_c00378{transform:matrix(0.220521,0.006616,-0.007497,0.249888,0,0);-ms-transform:matrix(0.220521,0.006616,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.220521,0.006616,-0.007497,0.249888,0,0);}
.m99_c00378{transform:matrix(0.220531,0.004631,-0.005249,0.249945,0,0);-ms-transform:matrix(0.220531,0.004631,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.220531,0.004631,-0.005249,0.249945,0,0);}
.me1_c00378{transform:matrix(0.220756,0.006623,-0.007497,0.249888,0,0);-ms-transform:matrix(0.220756,0.006623,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.220756,0.006623,-0.007497,0.249888,0,0);}
.m14_c00378{transform:matrix(0.220820,0.003312,-0.003750,0.249972,0,0);-ms-transform:matrix(0.220820,0.003312,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.220820,0.003312,-0.003750,0.249972,0,0);}
.m123_c00378{transform:matrix(0.221640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221640,0.000000,0.000000,0.250000,0,0);}
.m3_c00378{transform:matrix(0.221985,0.003330,-0.003750,0.249972,0,0);-ms-transform:matrix(0.221985,0.003330,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.221985,0.003330,-0.003750,0.249972,0,0);}
.m81_c00378{transform:matrix(0.221986,0.005106,-0.005748,0.249934,0,0);-ms-transform:matrix(0.221986,0.005106,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.221986,0.005106,-0.005748,0.249934,0,0);}
.me2_c00378{transform:matrix(0.222335,0.006670,-0.007497,0.249888,0,0);-ms-transform:matrix(0.222335,0.006670,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.222335,0.006670,-0.007497,0.249888,0,0);}
.m11c_c00378{transform:matrix(0.222550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222550,0.000000,0.000000,0.250000,0,0);}
.mee_c00378{transform:matrix(0.222560,0.006677,-0.007497,0.249888,0,0);-ms-transform:matrix(0.222560,0.006677,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.222560,0.006677,-0.007497,0.249888,0,0);}
.m2f_c00378{transform:matrix(0.222566,0.005119,-0.005748,0.249934,0,0);-ms-transform:matrix(0.222566,0.005119,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.222566,0.005119,-0.005748,0.249934,0,0);}
.m11b_c00378{transform:matrix(0.222745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222745,0.000000,0.000000,0.250000,0,0);}
.me_c00378{transform:matrix(0.222875,0.003343,-0.003750,0.249972,0,0);-ms-transform:matrix(0.222875,0.003343,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.222875,0.003343,-0.003750,0.249972,0,0);}
.m73_c00378{transform:matrix(0.223121,0.005132,-0.005748,0.249934,0,0);-ms-transform:matrix(0.223121,0.005132,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.223121,0.005132,-0.005748,0.249934,0,0);}
.m6d_c00378{transform:matrix(0.223256,0.005135,-0.005748,0.249934,0,0);-ms-transform:matrix(0.223256,0.005135,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.223256,0.005135,-0.005748,0.249934,0,0);}
.mcb_c00378{transform:matrix(0.223634,0.006709,-0.007497,0.249888,0,0);-ms-transform:matrix(0.223634,0.006709,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.223634,0.006709,-0.007497,0.249888,0,0);}
.m9a_c00378{transform:matrix(0.224056,0.004705,-0.005249,0.249945,0,0);-ms-transform:matrix(0.224056,0.004705,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.224056,0.004705,-0.005249,0.249945,0,0);}
.md1_c00378{transform:matrix(0.224119,0.006724,-0.007497,0.249888,0,0);-ms-transform:matrix(0.224119,0.006724,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.224119,0.006724,-0.007497,0.249888,0,0);}
.m11d_c00378{transform:matrix(0.224540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224540,0.000000,0.000000,0.250000,0,0);}
.mf2_c00378{transform:matrix(0.224604,0.006738,-0.007497,0.249888,0,0);-ms-transform:matrix(0.224604,0.006738,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.224604,0.006738,-0.007497,0.249888,0,0);}
.me3_c00378{transform:matrix(0.224919,0.006748,-0.007497,0.249888,0,0);-ms-transform:matrix(0.224919,0.006748,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.224919,0.006748,-0.007497,0.249888,0,0);}
.m4f_c00378{transform:matrix(0.225285,0.005182,-0.005748,0.249934,0,0);-ms-transform:matrix(0.225285,0.005182,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.225285,0.005182,-0.005748,0.249934,0,0);}
.me6_c00378{transform:matrix(0.225404,0.006762,-0.007497,0.249888,0,0);-ms-transform:matrix(0.225404,0.006762,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.225404,0.006762,-0.007497,0.249888,0,0);}
.me8_c00378{transform:matrix(0.225823,0.006775,-0.007497,0.249888,0,0);-ms-transform:matrix(0.225823,0.006775,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.225823,0.006775,-0.007497,0.249888,0,0);}
.m47_c00378{transform:matrix(0.226005,0.005198,-0.005748,0.249934,0,0);-ms-transform:matrix(0.226005,0.005198,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.226005,0.005198,-0.005748,0.249934,0,0);}
.m2b_c00378{transform:matrix(0.226050,0.005199,-0.005748,0.249934,0,0);-ms-transform:matrix(0.226050,0.005199,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.226050,0.005199,-0.005748,0.249934,0,0);}
.mfe_c00378{transform:matrix(0.226253,0.006788,-0.007497,0.249888,0,0);-ms-transform:matrix(0.226253,0.006788,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.226253,0.006788,-0.007497,0.249888,0,0);}
.m5_c00378{transform:matrix(0.226315,0.003395,-0.003750,0.249972,0,0);-ms-transform:matrix(0.226315,0.003395,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.226315,0.003395,-0.003750,0.249972,0,0);}
.ma5_c00378{transform:matrix(0.226525,0.004757,-0.005249,0.249945,0,0);-ms-transform:matrix(0.226525,0.004757,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.226525,0.004757,-0.005249,0.249945,0,0);}
.mb6_c00378{transform:matrix(0.226568,0.006797,-0.007497,0.249888,0,0);-ms-transform:matrix(0.226568,0.006797,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.226568,0.006797,-0.007497,0.249888,0,0);}
.m13d_c00378{transform:matrix(0.226668,0.005893,-0.006498,0.249916,0,0);-ms-transform:matrix(0.226668,0.005893,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.226668,0.005893,-0.006498,0.249916,0,0);}
.m83_c00378{transform:matrix(0.227295,0.005228,-0.005748,0.249934,0,0);-ms-transform:matrix(0.227295,0.005228,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.227295,0.005228,-0.005748,0.249934,0,0);}
.m2d_c00378{transform:matrix(0.227370,0.005230,-0.005748,0.249934,0,0);-ms-transform:matrix(0.227370,0.005230,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.227370,0.005230,-0.005748,0.249934,0,0);}
.m2c_c00378{transform:matrix(0.227950,0.005243,-0.005748,0.249934,0,0);-ms-transform:matrix(0.227950,0.005243,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.227950,0.005243,-0.005748,0.249934,0,0);}
.mc_c00378{transform:matrix(0.228699,0.003430,-0.003750,0.249972,0,0);-ms-transform:matrix(0.228699,0.003430,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.228699,0.003430,-0.003750,0.249972,0,0);}
.m56_c00378{transform:matrix(0.228755,0.005261,-0.005748,0.249934,0,0);-ms-transform:matrix(0.228755,0.005261,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.228755,0.005261,-0.005748,0.249934,0,0);}
.m3f_c00378{transform:matrix(0.229394,0.005276,-0.005748,0.249934,0,0);-ms-transform:matrix(0.229394,0.005276,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.229394,0.005276,-0.005748,0.249934,0,0);}
.me4_c00378{transform:matrix(0.229547,0.006886,-0.007497,0.249888,0,0);-ms-transform:matrix(0.229547,0.006886,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.229547,0.006886,-0.007497,0.249888,0,0);}
.m80_c00378{transform:matrix(0.229824,0.005286,-0.005748,0.249934,0,0);-ms-transform:matrix(0.229824,0.005286,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.229824,0.005286,-0.005748,0.249934,0,0);}
.m13c_c00378{transform:matrix(0.229977,0.005979,-0.006498,0.249916,0,0);-ms-transform:matrix(0.229977,0.005979,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.229977,0.005979,-0.006498,0.249916,0,0);}
.ma8_c00378{transform:matrix(0.230714,0.004845,-0.005249,0.249945,0,0);-ms-transform:matrix(0.230714,0.004845,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.230714,0.004845,-0.005249,0.249945,0,0);}
.m69_c00378{transform:matrix(0.230724,0.005307,-0.005748,0.249934,0,0);-ms-transform:matrix(0.230724,0.005307,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.230724,0.005307,-0.005748,0.249934,0,0);}
.m68_c00378{transform:matrix(0.231319,0.005320,-0.005748,0.249934,0,0);-ms-transform:matrix(0.231319,0.005320,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.231319,0.005320,-0.005748,0.249934,0,0);}
.m10e_c00378{transform:matrix(0.231397,0.006016,-0.006498,0.249916,0,0);-ms-transform:matrix(0.231397,0.006016,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.231397,0.006016,-0.006498,0.249916,0,0);}
.m3e_c00378{transform:matrix(0.231414,0.005323,-0.005748,0.249934,0,0);-ms-transform:matrix(0.231414,0.005323,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.231414,0.005323,-0.005748,0.249934,0,0);}
.ma7_c00378{transform:matrix(0.231874,0.004869,-0.005249,0.249945,0,0);-ms-transform:matrix(0.231874,0.004869,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.231874,0.004869,-0.005249,0.249945,0,0);}
.m1e_c00378{transform:matrix(0.232289,0.003484,-0.003750,0.249972,0,0);-ms-transform:matrix(0.232289,0.003484,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.232289,0.003484,-0.003750,0.249972,0,0);}
.m22_c00378{transform:matrix(0.232294,0.003484,-0.003750,0.249972,0,0);-ms-transform:matrix(0.232294,0.003484,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.232294,0.003484,-0.003750,0.249972,0,0);}
.mb9_c00378{transform:matrix(0.232545,0.006976,-0.007497,0.249888,0,0);-ms-transform:matrix(0.232545,0.006976,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.232545,0.006976,-0.007497,0.249888,0,0);}
.m9f_c00378{transform:matrix(0.232814,0.004889,-0.005249,0.249945,0,0);-ms-transform:matrix(0.232814,0.004889,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.232814,0.004889,-0.005249,0.249945,0,0);}
.mbc_c00378{transform:matrix(0.233590,0.007008,-0.007497,0.249888,0,0);-ms-transform:matrix(0.233590,0.007008,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.233590,0.007008,-0.007497,0.249888,0,0);}
.m7d_c00378{transform:matrix(0.234298,0.005389,-0.005748,0.249934,0,0);-ms-transform:matrix(0.234298,0.005389,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.234298,0.005389,-0.005748,0.249934,0,0);}
.mfd_c00378{transform:matrix(0.235684,0.007071,-0.007497,0.249888,0,0);-ms-transform:matrix(0.235684,0.007071,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.235684,0.007071,-0.007497,0.249888,0,0);}
.m96_c00378{transform:matrix(0.236263,0.004962,-0.005249,0.249945,0,0);-ms-transform:matrix(0.236263,0.004962,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.236263,0.004962,-0.005249,0.249945,0,0);}
.m79_c00378{transform:matrix(0.236382,0.005437,-0.005748,0.249934,0,0);-ms-transform:matrix(0.236382,0.005437,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.236382,0.005437,-0.005748,0.249934,0,0);}
.m13f_c00378{transform:matrix(0.236485,0.006149,-0.006498,0.249916,0,0);-ms-transform:matrix(0.236485,0.006149,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.236485,0.006149,-0.006498,0.249916,0,0);}
.m54_c00378{transform:matrix(0.236522,0.005440,-0.005748,0.249934,0,0);-ms-transform:matrix(0.236522,0.005440,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.236522,0.005440,-0.005748,0.249934,0,0);}
.m9_c00378{transform:matrix(0.236613,0.003549,-0.003750,0.249972,0,0);-ms-transform:matrix(0.236613,0.003549,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.236613,0.003549,-0.003750,0.249972,0,0);}
.m134_c00378{transform:matrix(0.236675,0.006154,-0.006498,0.249916,0,0);-ms-transform:matrix(0.236675,0.006154,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.236675,0.006154,-0.006498,0.249916,0,0);}
.mfb_c00378{transform:matrix(0.236793,0.007104,-0.007497,0.249888,0,0);-ms-transform:matrix(0.236793,0.007104,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.236793,0.007104,-0.007497,0.249888,0,0);}
.mac_c00378{transform:matrix(0.236983,0.004977,-0.005249,0.249945,0,0);-ms-transform:matrix(0.236983,0.004977,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.236983,0.004977,-0.005249,0.249945,0,0);}
.m44_c00378{transform:matrix(0.237362,0.005459,-0.005748,0.249934,0,0);-ms-transform:matrix(0.237362,0.005459,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.237362,0.005459,-0.005748,0.249934,0,0);}
.m6c_c00378{transform:matrix(0.238382,0.005483,-0.005748,0.249934,0,0);-ms-transform:matrix(0.238382,0.005483,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.238382,0.005483,-0.005748,0.249934,0,0);}
.m10f_c00378{transform:matrix(0.238454,0.006200,-0.006498,0.249916,0,0);-ms-transform:matrix(0.238454,0.006200,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.238454,0.006200,-0.006498,0.249916,0,0);}
.m5a_c00378{transform:matrix(0.238472,0.005485,-0.005748,0.249934,0,0);-ms-transform:matrix(0.238472,0.005485,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.238472,0.005485,-0.005748,0.249934,0,0);}
.m6b_c00378{transform:matrix(0.239272,0.005503,-0.005748,0.249934,0,0);-ms-transform:matrix(0.239272,0.005503,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.239272,0.005503,-0.005748,0.249934,0,0);}
.m4d_c00378{transform:matrix(0.239482,0.005508,-0.005748,0.249934,0,0);-ms-transform:matrix(0.239482,0.005508,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.239482,0.005508,-0.005748,0.249934,0,0);}
.m6f_c00378{transform:matrix(0.239492,0.005508,-0.005748,0.249934,0,0);-ms-transform:matrix(0.239492,0.005508,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.239492,0.005508,-0.005748,0.249934,0,0);}
.m24_c00378{transform:matrix(0.239793,0.003597,-0.003750,0.249972,0,0);-ms-transform:matrix(0.239793,0.003597,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.239793,0.003597,-0.003750,0.249972,0,0);}
.m20_c00378{transform:matrix(0.240083,0.003601,-0.003750,0.249972,0,0);-ms-transform:matrix(0.240083,0.003601,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.240083,0.003601,-0.003750,0.249972,0,0);}
.mc4_c00378{transform:matrix(0.240542,0.007216,-0.007497,0.249888,0,0);-ms-transform:matrix(0.240542,0.007216,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.240542,0.007216,-0.007497,0.249888,0,0);}
.m137_c00378{transform:matrix(0.240579,0.006255,-0.006498,0.249916,0,0);-ms-transform:matrix(0.240579,0.006255,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.240579,0.006255,-0.006498,0.249916,0,0);}
.mba_c00378{transform:matrix(0.240727,0.007222,-0.007497,0.249888,0,0);-ms-transform:matrix(0.240727,0.007222,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.240727,0.007222,-0.007497,0.249888,0,0);}
.m43_c00378{transform:matrix(0.240801,0.005538,-0.005748,0.249934,0,0);-ms-transform:matrix(0.240801,0.005538,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.240801,0.005538,-0.005748,0.249934,0,0);}
.m87_c00378{transform:matrix(0.241196,0.005548,-0.005748,0.249934,0,0);-ms-transform:matrix(0.241196,0.005548,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.241196,0.005548,-0.005748,0.249934,0,0);}
.ma1_c00378{transform:matrix(0.241207,0.005065,-0.005249,0.249945,0,0);-ms-transform:matrix(0.241207,0.005065,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.241207,0.005065,-0.005249,0.249945,0,0);}
.m112_c00378{transform:matrix(0.241423,0.006277,-0.006498,0.249916,0,0);-ms-transform:matrix(0.241423,0.006277,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.241423,0.006277,-0.006498,0.249916,0,0);}
.m29_c00378{transform:matrix(0.241876,0.005563,-0.005748,0.249934,0,0);-ms-transform:matrix(0.241876,0.005563,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.241876,0.005563,-0.005748,0.249934,0,0);}
.m25_c00378{transform:matrix(0.242176,0.005570,-0.005748,0.249934,0,0);-ms-transform:matrix(0.242176,0.005570,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.242176,0.005570,-0.005748,0.249934,0,0);}
.m26_c00378{transform:matrix(0.242651,0.005581,-0.005748,0.249934,0,0);-ms-transform:matrix(0.242651,0.005581,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.242651,0.005581,-0.005748,0.249934,0,0);}
.m59_c00378{transform:matrix(0.243106,0.005591,-0.005748,0.249934,0,0);-ms-transform:matrix(0.243106,0.005591,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.243106,0.005591,-0.005748,0.249934,0,0);}
.m32_c00378{transform:matrix(0.243311,0.005596,-0.005748,0.249934,0,0);-ms-transform:matrix(0.243311,0.005596,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.243311,0.005596,-0.005748,0.249934,0,0);}
.m3c_c00378{transform:matrix(0.243746,0.005606,-0.005748,0.249934,0,0);-ms-transform:matrix(0.243746,0.005606,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.243746,0.005606,-0.005748,0.249934,0,0);}
.m135_c00378{transform:matrix(0.243998,0.006344,-0.006498,0.249916,0,0);-ms-transform:matrix(0.243998,0.006344,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.243998,0.006344,-0.006498,0.249916,0,0);}
.ma2_c00378{transform:matrix(0.244751,0.005140,-0.005249,0.249945,0,0);-ms-transform:matrix(0.244751,0.005140,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.244751,0.005140,-0.005249,0.249945,0,0);}
.mff_c00378{transform:matrix(0.245834,0.007375,-0.007497,0.249888,0,0);-ms-transform:matrix(0.245834,0.007375,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.245834,0.007375,-0.007497,0.249888,0,0);}
.m36_c00378{transform:matrix(0.245905,0.005656,-0.005748,0.249934,0,0);-ms-transform:matrix(0.245905,0.005656,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.245905,0.005656,-0.005748,0.249934,0,0);}
.m53_c00378{transform:matrix(0.246445,0.005668,-0.005748,0.249934,0,0);-ms-transform:matrix(0.246445,0.005668,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.246445,0.005668,-0.005748,0.249934,0,0);}
.m7e_c00378{transform:matrix(0.247090,0.005683,-0.005748,0.249934,0,0);-ms-transform:matrix(0.247090,0.005683,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.247090,0.005683,-0.005748,0.249934,0,0);}
.m113_c00378{transform:matrix(0.247131,0.006425,-0.006498,0.249916,0,0);-ms-transform:matrix(0.247131,0.006425,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.247131,0.006425,-0.006498,0.249916,0,0);}
.m74_c00378{transform:matrix(0.247530,0.005693,-0.005748,0.249934,0,0);-ms-transform:matrix(0.247530,0.005693,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.247530,0.005693,-0.005748,0.249934,0,0);}
.mfa_c00378{transform:matrix(0.247704,0.007431,-0.007497,0.249888,0,0);-ms-transform:matrix(0.247704,0.007431,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.247704,0.007431,-0.007497,0.249888,0,0);}
.m71_c00378{transform:matrix(0.247749,0.005698,-0.005748,0.249934,0,0);-ms-transform:matrix(0.247749,0.005698,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.247749,0.005698,-0.005748,0.249934,0,0);}
.m50_c00378{transform:matrix(0.248884,0.005724,-0.005748,0.249934,0,0);-ms-transform:matrix(0.248884,0.005724,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.248884,0.005724,-0.005748,0.249934,0,0);}
.m117_c00378{transform:matrix(0.249011,0.006474,-0.006498,0.249916,0,0);-ms-transform:matrix(0.249011,0.006474,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.249011,0.006474,-0.006498,0.249916,0,0);}
.ma9_c00378{transform:matrix(0.249035,0.005230,-0.005249,0.249945,0,0);-ms-transform:matrix(0.249035,0.005230,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.249035,0.005230,-0.005249,0.249945,0,0);}
.m142_c00378{transform:matrix(0.249266,0.006481,-0.006498,0.249916,0,0);-ms-transform:matrix(0.249266,0.006481,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.249266,0.006481,-0.006498,0.249916,0,0);}
.ma3_c00378{transform:matrix(0.250375,0.005258,-0.005249,0.249945,0,0);-ms-transform:matrix(0.250375,0.005258,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.250375,0.005258,-0.005249,0.249945,0,0);}
.m67_c00378{transform:matrix(0.251134,0.005776,-0.005748,0.249934,0,0);-ms-transform:matrix(0.251134,0.005776,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.251134,0.005776,-0.005748,0.249934,0,0);}
.ma6_c00378{transform:matrix(0.251690,0.005285,-0.005249,0.249945,0,0);-ms-transform:matrix(0.251690,0.005285,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.251690,0.005285,-0.005249,0.249945,0,0);}
.m31_c00378{transform:matrix(0.251828,0.005792,-0.005748,0.249934,0,0);-ms-transform:matrix(0.251828,0.005792,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.251828,0.005792,-0.005748,0.249934,0,0);}
.m136_c00378{transform:matrix(0.252840,0.006574,-0.006498,0.249916,0,0);-ms-transform:matrix(0.252840,0.006574,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.252840,0.006574,-0.006498,0.249916,0,0);}
.mf5_c00378{transform:matrix(0.253236,0.007597,-0.007497,0.249888,0,0);-ms-transform:matrix(0.253236,0.007597,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.253236,0.007597,-0.007497,0.249888,0,0);}
.m84_c00378{transform:matrix(0.254278,0.005848,-0.005748,0.249934,0,0);-ms-transform:matrix(0.254278,0.005848,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.254278,0.005848,-0.005748,0.249934,0,0);}
.mf8_c00378{transform:matrix(0.254446,0.007633,-0.007497,0.249888,0,0);-ms-transform:matrix(0.254446,0.007633,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.254446,0.007633,-0.007497,0.249888,0,0);}
.m138_c00378{transform:matrix(0.254509,0.006617,-0.006498,0.249916,0,0);-ms-transform:matrix(0.254509,0.006617,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.254509,0.006617,-0.006498,0.249916,0,0);}
.m49_c00378{transform:matrix(0.254803,0.005860,-0.005748,0.249934,0,0);-ms-transform:matrix(0.254803,0.005860,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.254803,0.005860,-0.005748,0.249934,0,0);}
.mfc_c00378{transform:matrix(0.254825,0.007645,-0.007497,0.249888,0,0);-ms-transform:matrix(0.254825,0.007645,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.254825,0.007645,-0.007497,0.249888,0,0);}
.m13e_c00378{transform:matrix(0.254944,0.006629,-0.006498,0.249916,0,0);-ms-transform:matrix(0.254944,0.006629,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.254944,0.006629,-0.006498,0.249916,0,0);}
.m13a_c00378{transform:matrix(0.255259,0.006637,-0.006498,0.249916,0,0);-ms-transform:matrix(0.255259,0.006637,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.255259,0.006637,-0.006498,0.249916,0,0);}
.m1_c00378{transform:matrix(0.255990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255990,0.000000,0.000000,0.250000,0,0);}
.m131_c00378{transform:matrix(0.256168,0.006660,-0.006498,0.249916,0,0);-ms-transform:matrix(0.256168,0.006660,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.256168,0.006660,-0.006498,0.249916,0,0);}
.m28_c00378{transform:matrix(0.256232,0.005893,-0.005748,0.249934,0,0);-ms-transform:matrix(0.256232,0.005893,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.256232,0.005893,-0.005748,0.249934,0,0);}
.m38_c00378{transform:matrix(0.256572,0.005901,-0.005748,0.249934,0,0);-ms-transform:matrix(0.256572,0.005901,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.256572,0.005901,-0.005748,0.249934,0,0);}
.m86_c00378{transform:matrix(0.256852,0.005908,-0.005748,0.249934,0,0);-ms-transform:matrix(0.256852,0.005908,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.256852,0.005908,-0.005748,0.249934,0,0);}
.mc3_c00378{transform:matrix(0.257199,0.007716,-0.007497,0.249888,0,0);-ms-transform:matrix(0.257199,0.007716,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.257199,0.007716,-0.007497,0.249888,0,0);}
.m10d_c00378{transform:matrix(0.257638,0.006699,-0.006498,0.249916,0,0);-ms-transform:matrix(0.257638,0.006699,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.257638,0.006699,-0.006498,0.249916,0,0);}
.m82_c00378{transform:matrix(0.257727,0.005928,-0.005748,0.249934,0,0);-ms-transform:matrix(0.257727,0.005928,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.257727,0.005928,-0.005748,0.249934,0,0);}
.mbf_c00378{transform:matrix(0.257884,0.007737,-0.007497,0.249888,0,0);-ms-transform:matrix(0.257884,0.007737,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.257884,0.007737,-0.007497,0.249888,0,0);}
.m4e_c00378{transform:matrix(0.258002,0.005934,-0.005748,0.249934,0,0);-ms-transform:matrix(0.258002,0.005934,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.258002,0.005934,-0.005748,0.249934,0,0);}
.m140_c00378{transform:matrix(0.259567,0.006749,-0.006498,0.249916,0,0);-ms-transform:matrix(0.259567,0.006749,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.259567,0.006749,-0.006498,0.249916,0,0);}
.mc0_c00378{transform:matrix(0.260368,0.007811,-0.007497,0.249888,0,0);-ms-transform:matrix(0.260368,0.007811,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.260368,0.007811,-0.007497,0.249888,0,0);}
.m85_c00378{transform:matrix(0.260466,0.005991,-0.005748,0.249934,0,0);-ms-transform:matrix(0.260466,0.005991,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.260466,0.005991,-0.005748,0.249934,0,0);}
.m10c_c00378{transform:matrix(0.260492,0.006773,-0.006498,0.249916,0,0);-ms-transform:matrix(0.260492,0.006773,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.260492,0.006773,-0.006498,0.249916,0,0);}
.mbe_c00378{transform:matrix(0.260608,0.007818,-0.007497,0.249888,0,0);-ms-transform:matrix(0.260608,0.007818,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.260608,0.007818,-0.007497,0.249888,0,0);}
.m75_c00378{transform:matrix(0.260656,0.005995,-0.005748,0.249934,0,0);-ms-transform:matrix(0.260656,0.005995,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.260656,0.005995,-0.005748,0.249934,0,0);}
.m139_c00378{transform:matrix(0.261067,0.006788,-0.006498,0.249916,0,0);-ms-transform:matrix(0.261067,0.006788,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.261067,0.006788,-0.006498,0.249916,0,0);}
.m4b_c00378{transform:matrix(0.261256,0.006009,-0.005748,0.249934,0,0);-ms-transform:matrix(0.261256,0.006009,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.261256,0.006009,-0.005748,0.249934,0,0);}
.m4a_c00378{transform:matrix(0.262596,0.006040,-0.005748,0.249934,0,0);-ms-transform:matrix(0.262596,0.006040,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.262596,0.006040,-0.005748,0.249934,0,0);}
.m37_c00378{transform:matrix(0.263715,0.006065,-0.005748,0.249934,0,0);-ms-transform:matrix(0.263715,0.006065,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.263715,0.006065,-0.005748,0.249934,0,0);}
.m77_c00378{transform:matrix(0.264315,0.006079,-0.005748,0.249934,0,0);-ms-transform:matrix(0.264315,0.006079,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.264315,0.006079,-0.005748,0.249934,0,0);}
.m52_c00378{transform:matrix(0.264890,0.006092,-0.005748,0.249934,0,0);-ms-transform:matrix(0.264890,0.006092,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.264890,0.006092,-0.005748,0.249934,0,0);}
.m111_c00378{transform:matrix(0.265360,0.006899,-0.006498,0.249916,0,0);-ms-transform:matrix(0.265360,0.006899,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.265360,0.006899,-0.006498,0.249916,0,0);}
.m143_c00378{transform:matrix(0.265415,0.006901,-0.006498,0.249916,0,0);-ms-transform:matrix(0.265415,0.006901,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.265415,0.006901,-0.006498,0.249916,0,0);}
.m13b_c00378{transform:matrix(0.265810,0.006911,-0.006498,0.249916,0,0);-ms-transform:matrix(0.265810,0.006911,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.265810,0.006911,-0.006498,0.249916,0,0);}
.m132_c00378{transform:matrix(0.266440,0.006927,-0.006498,0.249916,0,0);-ms-transform:matrix(0.266440,0.006927,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.266440,0.006927,-0.006498,0.249916,0,0);}
.m35_c00378{transform:matrix(0.266450,0.006128,-0.005748,0.249934,0,0);-ms-transform:matrix(0.266450,0.006128,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.266450,0.006128,-0.005748,0.249934,0,0);}
.m76_c00378{transform:matrix(0.267164,0.006145,-0.005748,0.249934,0,0);-ms-transform:matrix(0.267164,0.006145,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.267164,0.006145,-0.005748,0.249934,0,0);}
.m115_c00378{transform:matrix(0.267899,0.006965,-0.006498,0.249916,0,0);-ms-transform:matrix(0.267899,0.006965,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.267899,0.006965,-0.006498,0.249916,0,0);}
.m58_c00378{transform:matrix(0.267919,0.006162,-0.005748,0.249934,0,0);-ms-transform:matrix(0.267919,0.006162,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.267919,0.006162,-0.005748,0.249934,0,0);}
.m39_c00378{transform:matrix(0.268154,0.006168,-0.005748,0.249934,0,0);-ms-transform:matrix(0.268154,0.006168,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.268154,0.006168,-0.005748,0.249934,0,0);}
.m7f_c00378{transform:matrix(0.269839,0.006206,-0.005748,0.249934,0,0);-ms-transform:matrix(0.269839,0.006206,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.269839,0.006206,-0.005748,0.249934,0,0);}
.m7c_c00378{transform:matrix(0.269934,0.006208,-0.005748,0.249934,0,0);-ms-transform:matrix(0.269934,0.006208,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.269934,0.006208,-0.005748,0.249934,0,0);}
.m55_c00378{transform:matrix(0.270154,0.006214,-0.005748,0.249934,0,0);-ms-transform:matrix(0.270154,0.006214,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.270154,0.006214,-0.005748,0.249934,0,0);}
.mc1_c00378{transform:matrix(0.271238,0.008137,-0.007497,0.249888,0,0);-ms-transform:matrix(0.271238,0.008137,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.271238,0.008137,-0.007497,0.249888,0,0);}
.m118_c00378{transform:matrix(0.271628,0.007062,-0.006498,0.249916,0,0);-ms-transform:matrix(0.271628,0.007062,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.271628,0.007062,-0.006498,0.249916,0,0);}
.m46_c00378{transform:matrix(0.272693,0.006272,-0.005748,0.249934,0,0);-ms-transform:matrix(0.272693,0.006272,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.272693,0.006272,-0.005748,0.249934,0,0);}
.m27_c00378{transform:matrix(0.273163,0.006283,-0.005748,0.249934,0,0);-ms-transform:matrix(0.273163,0.006283,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.273163,0.006283,-0.005748,0.249934,0,0);}
.mc2_c00378{transform:matrix(0.273642,0.008209,-0.007497,0.249888,0,0);-ms-transform:matrix(0.273642,0.008209,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.273642,0.008209,-0.007497,0.249888,0,0);}
.mbd_c00378{transform:matrix(0.274951,0.008249,-0.007497,0.249888,0,0);-ms-transform:matrix(0.274951,0.008249,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.274951,0.008249,-0.007497,0.249888,0,0);}
.m57_c00378{transform:matrix(0.275642,0.006340,-0.005748,0.249934,0,0);-ms-transform:matrix(0.275642,0.006340,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.275642,0.006340,-0.005748,0.249934,0,0);}
.m45_c00378{transform:matrix(0.275802,0.006343,-0.005748,0.249934,0,0);-ms-transform:matrix(0.275802,0.006343,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.275802,0.006343,-0.005748,0.249934,0,0);}
.mbb_c00378{transform:matrix(0.275966,0.008279,-0.007497,0.249888,0,0);-ms-transform:matrix(0.275966,0.008279,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.275966,0.008279,-0.007497,0.249888,0,0);}
.m33_c00378{transform:matrix(0.276657,0.006363,-0.005748,0.249934,0,0);-ms-transform:matrix(0.276657,0.006363,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.276657,0.006363,-0.005748,0.249934,0,0);}
.m4c_c00378{transform:matrix(0.276767,0.006366,-0.005748,0.249934,0,0);-ms-transform:matrix(0.276767,0.006366,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.276767,0.006366,-0.005748,0.249934,0,0);}
.m48_c00378{transform:matrix(0.277742,0.006388,-0.005748,0.249934,0,0);-ms-transform:matrix(0.277742,0.006388,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.277742,0.006388,-0.005748,0.249934,0,0);}
.m2e_c00378{transform:matrix(0.278361,0.006402,-0.005748,0.249934,0,0);-ms-transform:matrix(0.278361,0.006402,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.278361,0.006402,-0.005748,0.249934,0,0);}
.m30_c00378{transform:matrix(0.279391,0.006426,-0.005748,0.249934,0,0);-ms-transform:matrix(0.279391,0.006426,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.279391,0.006426,-0.005748,0.249934,0,0);}
.m78_c00378{transform:matrix(0.279451,0.006427,-0.005748,0.249934,0,0);-ms-transform:matrix(0.279451,0.006427,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.279451,0.006427,-0.005748,0.249934,0,0);}
.m133_c00378{transform:matrix(0.279551,0.007268,-0.006498,0.249916,0,0);-ms-transform:matrix(0.279551,0.007268,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.279551,0.007268,-0.006498,0.249916,0,0);}
.m110_c00378{transform:matrix(0.279576,0.007269,-0.006498,0.249916,0,0);-ms-transform:matrix(0.279576,0.007269,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.279576,0.007269,-0.006498,0.249916,0,0);}
.m34_c00378{transform:matrix(0.281705,0.006479,-0.005748,0.249934,0,0);-ms-transform:matrix(0.281705,0.006479,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.281705,0.006479,-0.005748,0.249934,0,0);}
.m2a_c00378{transform:matrix(0.283680,0.006525,-0.005748,0.249934,0,0);-ms-transform:matrix(0.283680,0.006525,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.283680,0.006525,-0.005748,0.249934,0,0);}
.md0_c00378{transform:matrix(0.290189,0.008706,-0.007497,0.249888,0,0);-ms-transform:matrix(0.290189,0.008706,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.290189,0.008706,-0.007497,0.249888,0,0);}
.m7b_c00378{transform:matrix(0.291608,0.006707,-0.005748,0.249934,0,0);-ms-transform:matrix(0.291608,0.006707,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.291608,0.006707,-0.005748,0.249934,0,0);}
.mcf_c00378{transform:matrix(0.302554,0.009077,-0.007497,0.249888,0,0);-ms-transform:matrix(0.302554,0.009077,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.302554,0.009077,-0.007497,0.249888,0,0);}
.m7a_c00378{transform:matrix(0.394611,0.009076,-0.005748,0.249934,0,0);-ms-transform:matrix(0.394611,0.009076,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.394611,0.009076,-0.005748,0.249934,0,0);}
.m2_c00378{transform:matrix(0.458960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458960,0.000000,0.000000,0.250000,0,0);}
.m119_c00378{transform:matrix(0.562530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562530,0.000000,0.000000,0.250000,0,0);}
.m0_c00378{transform:matrix(0.623900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.623900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.623900,0.000000,0.000000,0.250000,0,0);}
.m11a_c00378{transform:matrix(1.439615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.439615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.439615,0.000000,0.000000,0.250000,0,0);}
.v0_c00378{vertical-align:0.000000px;}
.ls0_c00378{letter-spacing:0.000000px;}
.sc__c00378{text-shadow:none;}
.sc0_c00378{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__c00378{-webkit-text-stroke:0px transparent;}
.sc0_c00378{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00378{word-spacing:0.000000px;}
.fc0_c00378{color:transparent;}
.fs0_c00378{font-size:18.000000px;}
.fs10_c00378{font-size:48.000000px;}
.fs4_c00378{font-size:72.019041px;}
.fsf_c00378{font-size:72.024332px;}
.fsc_c00378{font-size:72.032393px;}
.fs9_c00378{font-size:78.017197px;}
.fs7_c00378{font-size:78.020628px;}
.fse_c00378{font-size:78.035092px;}
.fs1_c00378{font-size:84.000000px;}
.fs2_c00378{font-size:84.009449px;}
.fs5_c00378{font-size:84.022215px;}
.fs3_c00378{font-size:90.010124px;}
.fs8_c00378{font-size:90.019843px;}
.fs11_c00378{font-size:90.030415px;}
.fsb_c00378{font-size:90.040491px;}
.fs6_c00378{font-size:96.025389px;}
.fsd_c00378{font-size:102.045890px;}
.fsa_c00378{font-size:108.023811px;}
.y0_c00378{bottom:0.000000px;}
.y146_c00378{bottom:67.231440px;}
.y145_c00378{bottom:68.789379px;}
.y144_c00378{bottom:69.357276px;}
.y143_c00378{bottom:70.960959px;}
.y142_c00378{bottom:71.883867px;}
.y141_c00378{bottom:72.512463px;}
.y140_c00378{bottom:73.428156px;}
.y13f_c00378{bottom:74.344629px;}
.y13e_c00378{bottom:76.513869px;}
.y13d_c00378{bottom:78.643059px;}
.y13c_c00378{bottom:80.447616px;}
.y135_c00378{bottom:114.160317px;}
.y134_c00378{bottom:114.160389px;}
.y136_c00378{bottom:114.160833px;}
.y137_c00378{bottom:114.161028px;}
.y138_c00378{bottom:114.161718px;}
.y13b_c00378{bottom:114.162345px;}
.y139_c00378{bottom:114.162348px;}
.y13a_c00378{bottom:114.162675px;}
.y133_c00378{bottom:142.995450px;}
.y132_c00378{bottom:144.435330px;}
.y131_c00378{bottom:146.171064px;}
.y130_c00378{bottom:147.020757px;}
.y12f_c00378{bottom:147.589728px;}
.y12e_c00378{bottom:148.748925px;}
.y12d_c00378{bottom:149.334042px;}
.y12c_c00378{bottom:149.893926px;}
.y12b_c00378{bottom:151.893963px;}
.y12a_c00378{bottom:153.871653px;}
.y129_c00378{bottom:154.986000px;}
.y128_c00378{bottom:177.162000px;}
.y127_c00378{bottom:178.728000px;}
.y126_c00378{bottom:180.589500px;}
.y125_c00378{bottom:181.504500px;}
.y124_c00378{bottom:182.124000px;}
.y123_c00378{bottom:183.364500px;}
.y122_c00378{bottom:184.002000px;}
.y121_c00378{bottom:184.923000px;}
.y120_c00378{bottom:187.038000px;}
.y11f_c00378{bottom:189.181500px;}
.y11e_c00378{bottom:190.086000px;}
.y11d_c00378{bottom:210.339000px;}
.y11c_c00378{bottom:227.950230px;}
.y11b_c00378{bottom:229.111416px;}
.y11a_c00378{bottom:229.706439px;}
.y119_c00378{bottom:231.752223px;}
.y118_c00378{bottom:232.594506px;}
.y117_c00378{bottom:233.781744px;}
.y116_c00378{bottom:234.638808px;}
.y115_c00378{bottom:236.361945px;}
.y114_c00378{bottom:239.520243px;}
.y113_c00378{bottom:240.392790px;}
.y112_c00378{bottom:241.254144px;}
.y111_c00378{bottom:242.664150px;}
.y110_c00378{bottom:244.893000px;}
.y10f_c00378{bottom:260.423295px;}
.y10e_c00378{bottom:261.253305px;}
.y10d_c00378{bottom:261.780075px;}
.y10c_c00378{bottom:262.441410px;}
.y10b_c00378{bottom:264.277920px;}
.y10a_c00378{bottom:265.409340px;}
.y109_c00378{bottom:266.766480px;}
.y108_c00378{bottom:267.252390px;}
.y107_c00378{bottom:268.419510px;}
.y106_c00378{bottom:269.403135px;}
.y105_c00378{bottom:269.875590px;}
.y104_c00378{bottom:270.698175px;}
.y103_c00378{bottom:301.237695px;}
.y102_c00378{bottom:302.481300px;}
.y101_c00378{bottom:303.455340px;}
.y100_c00378{bottom:303.954600px;}
.yff_c00378{bottom:305.894115px;}
.yfe_c00378{bottom:307.110585px;}
.yfd_c00378{bottom:308.830770px;}
.yfc_c00378{bottom:309.543360px;}
.yfb_c00378{bottom:311.960880px;}
.yfa_c00378{bottom:312.673710px;}
.yf9_c00378{bottom:313.405500px;}
.yf8_c00378{bottom:315.811020px;}
.yf7_c00378{bottom:331.259940px;}
.yf6_c00378{bottom:332.065770px;}
.yf5_c00378{bottom:334.711185px;}
.yf4_c00378{bottom:336.083985px;}
.yf3_c00378{bottom:337.647870px;}
.yf2_c00378{bottom:338.456205px;}
.yf1_c00378{bottom:341.134800px;}
.yf0_c00378{bottom:342.971880px;}
.yef_c00378{bottom:343.761150px;}
.yee_c00378{bottom:346.119330px;}
.yed_c00378{bottom:347.152650px;}
.yec_c00378{bottom:347.681340px;}
.yeb_c00378{bottom:369.911760px;}
.yea_c00378{bottom:370.569420px;}
.ye9_c00378{bottom:372.689205px;}
.ye8_c00378{bottom:373.530690px;}
.ye7_c00378{bottom:373.947270px;}
.ye6_c00378{bottom:376.261650px;}
.ye5_c00378{bottom:378.356400px;}
.ye4_c00378{bottom:380.429040px;}
.ye3_c00378{bottom:381.448425px;}
.ye2_c00378{bottom:404.024010px;}
.ye1_c00378{bottom:404.505870px;}
.ye0_c00378{bottom:405.422835px;}
.ydf_c00378{bottom:405.888120px;}
.yde_c00378{bottom:406.364895px;}
.ydd_c00378{bottom:406.833945px;}
.ydc_c00378{bottom:407.764305px;}
.ydb_c00378{bottom:408.218130px;}
.yda_c00378{bottom:409.303950px;}
.yd9_c00378{bottom:410.525700px;}
.yd8_c00378{bottom:411.001665px;}
.yd7_c00378{bottom:412.389825px;}
.yd6_c00378{bottom:413.142330px;}
.yd5_c00378{bottom:413.591430px;}
.yd4_c00378{bottom:443.781120px;}
.yd3_c00378{bottom:444.192885px;}
.yd2_c00378{bottom:445.241655px;}
.yd1_c00378{bottom:446.108640px;}
.yd0_c00378{bottom:447.572160px;}
.ycf_c00378{bottom:448.204050px;}
.yce_c00378{bottom:450.503340px;}
.ycd_c00378{bottom:451.777935px;}
.ycc_c00378{bottom:452.613975px;}
.ycb_c00378{bottom:453.239955px;}
.yca_c00378{bottom:454.690950px;}
.yc9_c00378{bottom:455.293785px;}
.yc8_c00378{bottom:455.729025px;}
.yc7_c00378{bottom:478.865715px;}
.yc6_c00378{bottom:479.829000px;}
.yc5_c00378{bottom:481.657620px;}
.yc4_c00378{bottom:483.337305px;}
.yc3_c00378{bottom:484.710360px;}
.yc2_c00378{bottom:486.117480px;}
.yc1_c00378{bottom:486.592845px;}
.yc0_c00378{bottom:488.432985px;}
.ybf_c00378{bottom:489.124455px;}
.ybe_c00378{bottom:491.647155px;}
.ybd_c00378{bottom:492.569925px;}
.ybc_c00378{bottom:493.276455px;}
.ybb_c00378{bottom:511.447245px;}
.yba_c00378{bottom:514.237965px;}
.yb9_c00378{bottom:517.587585px;}
.yb8_c00378{bottom:519.918135px;}
.yb7_c00378{bottom:520.890180px;}
.yb6_c00378{bottom:523.248405px;}
.yb5_c00378{bottom:524.236875px;}
.yb4_c00378{bottom:526.206480px;}
.yb3_c00378{bottom:528.206775px;}
.yb2_c00378{bottom:529.210500px;}
.yb0_c00378{bottom:557.532332px;}
.yb1_c00378{bottom:557.532909px;}
.yaf_c00378{bottom:583.893600px;}
.yae_c00378{bottom:584.841330px;}
.yad_c00378{bottom:585.454078px;}
.yac_c00378{bottom:587.548353px;}
.yab_c00378{bottom:588.766251px;}
.yaa_c00378{bottom:590.209942px;}
.ya9_c00378{bottom:592.615704px;}
.ya8_c00378{bottom:593.527458px;}
.ya7_c00378{bottom:594.424242px;}
.ya6_c00378{bottom:595.948902px;}
.ya5_c00378{bottom:598.026852px;}
.ya4_c00378{bottom:599.782503px;}
.ya3_c00378{bottom:600.369659px;}
.ya2_c00378{bottom:602.097543px;}
.ya1_c00378{bottom:621.021147px;}
.ya0_c00378{bottom:621.683434px;}
.y9f_c00378{bottom:622.403713px;}
.y9e_c00378{bottom:624.254212px;}
.y9d_c00378{bottom:626.381785px;}
.y9c_c00378{bottom:628.922229px;}
.y9b_c00378{bottom:629.625624px;}
.y9a_c00378{bottom:630.335161px;}
.y99_c00378{bottom:630.790210px;}
.y98_c00378{bottom:632.177754px;}
.y97_c00378{bottom:632.886000px;}
.y96_c00378{bottom:663.831670px;}
.y95_c00378{bottom:663.832174px;}
.y94_c00378{bottom:691.001340px;}
.y93_c00378{bottom:691.583734px;}
.y92_c00378{bottom:693.034896px;}
.y91_c00378{bottom:693.757414px;}
.y90_c00378{bottom:694.905861px;}
.y8f_c00378{bottom:695.931025px;}
.y8e_c00378{bottom:696.774184px;}
.y8d_c00378{bottom:697.201701px;}
.y8c_c00378{bottom:698.627547px;}
.y8b_c00378{bottom:699.484632px;}
.y8a_c00378{bottom:729.394492px;}
.y89_c00378{bottom:731.001664px;}
.y88_c00378{bottom:732.955843px;}
.y87_c00378{bottom:733.846707px;}
.y86_c00378{bottom:734.383126px;}
.y85_c00378{bottom:735.640357px;}
.y84_c00378{bottom:736.495644px;}
.y83_c00378{bottom:738.281374px;}
.y82_c00378{bottom:739.157814px;}
.y81_c00378{bottom:739.996761px;}
.y80_c00378{bottom:764.682580px;}
.y7f_c00378{bottom:765.728920px;}
.y7e_c00378{bottom:766.381539px;}
.y7d_c00378{bottom:767.868835px;}
.y7c_c00378{bottom:768.501270px;}
.y7b_c00378{bottom:770.194207px;}
.y7a_c00378{bottom:770.815669px;}
.y79_c00378{bottom:772.924669px;}
.y78_c00378{bottom:774.370941px;}
.y77_c00378{bottom:776.027460px;}
.y76_c00378{bottom:776.456892px;}
.y75_c00378{bottom:800.171701px;}
.y74_c00378{bottom:800.839386px;}
.y73_c00378{bottom:801.337888px;}
.y72_c00378{bottom:802.521795px;}
.y71_c00378{bottom:803.015311px;}
.y70_c00378{bottom:804.165486px;}
.y6f_c00378{bottom:804.829408px;}
.y6e_c00378{bottom:805.497472px;}
.y6d_c00378{bottom:805.858266px;}
.y6c_c00378{bottom:806.823022px;}
.y6b_c00378{bottom:807.324631px;}
.y6a_c00378{bottom:808.139065px;}
.y69_c00378{bottom:808.498548px;}
.y68_c00378{bottom:809.944863px;}
.y67_c00378{bottom:835.884885px;}
.y66_c00378{bottom:836.416531px;}
.y65_c00378{bottom:837.754278px;}
.y64_c00378{bottom:838.289791px;}
.y63_c00378{bottom:838.571302px;}
.y62_c00378{bottom:839.897503px;}
.y61_c00378{bottom:840.413031px;}
.y60_c00378{bottom:841.223341px;}
.y5f_c00378{bottom:841.866025px;}
.y5e_c00378{bottom:843.337521px;}
.y5d_c00378{bottom:843.725565px;}
.y5c_c00378{bottom:844.243854px;}
.y5b_c00378{bottom:872.677494px;}
.y5a_c00378{bottom:873.728544px;}
.y59_c00378{bottom:874.564480px;}
.y58_c00378{bottom:876.058246px;}
.y57_c00378{bottom:877.941592px;}
.y56_c00378{bottom:878.578443px;}
.y55_c00378{bottom:880.064808px;}
.y54_c00378{bottom:880.881371px;}
.y53_c00378{bottom:881.739786px;}
.y52_c00378{bottom:882.986488px;}
.y51_c00378{bottom:883.595754px;}
.y50_c00378{bottom:884.441248px;}
.y4f_c00378{bottom:885.025360px;}
.y4e_c00378{bottom:909.711940px;}
.y4d_c00378{bottom:910.060267px;}
.y4c_c00378{bottom:910.239474px;}
.y4b_c00378{bottom:910.786327px;}
.y4a_c00378{bottom:911.393286px;}
.y49_c00378{bottom:911.760141px;}
.y48_c00378{bottom:912.723317px;}
.y47_c00378{bottom:912.995172px;}
.y46_c00378{bottom:913.787707px;}
.y45_c00378{bottom:914.663620px;}
.y44_c00378{bottom:915.001330px;}
.y43_c00378{bottom:943.642549px;}
.y42_c00378{bottom:944.316436px;}
.y41_c00378{bottom:944.725500px;}
.y40_c00378{bottom:945.376020px;}
.y3f_c00378{bottom:946.326274px;}
.y3e_c00378{bottom:947.642087px;}
.y3d_c00378{bottom:948.054463px;}
.y3c_c00378{bottom:949.892223px;}
.y3b_c00378{bottom:950.286894px;}
.y3a_c00378{bottom:950.652900px;}
.y39_c00378{bottom:977.805224px;}
.y38_c00378{bottom:978.482251px;}
.y37_c00378{bottom:979.542835px;}
.y36_c00378{bottom:980.083474px;}
.y35_c00378{bottom:980.890506px;}
.y34_c00378{bottom:981.954421px;}
.y33_c00378{bottom:983.269353px;}
.y32_c00378{bottom:983.670669px;}
.y31_c00378{bottom:984.331198px;}
.y30_c00378{bottom:985.114259px;}
.y2f_c00378{bottom:985.491274px;}
.y2e_c00378{bottom:1014.735399px;}
.y2d_c00378{bottom:1015.524862px;}
.y2c_c00378{bottom:1016.047089px;}
.y2b_c00378{bottom:1016.798430px;}
.y2a_c00378{bottom:1019.373131px;}
.y29_c00378{bottom:1020.380668px;}
.y28_c00378{bottom:1021.418325px;}
.y27_c00378{bottom:1023.922714px;}
.y26_c00378{bottom:1024.959370px;}
.y25_c00378{bottom:1025.736000px;}
.y24_c00378{bottom:1051.720298px;}
.y23_c00378{bottom:1052.195377px;}
.y22_c00378{bottom:1053.417472px;}
.y21_c00378{bottom:1053.749220px;}
.y20_c00378{bottom:1055.606715px;}
.y1f_c00378{bottom:1056.380992px;}
.y1e_c00378{bottom:1058.063692px;}
.y1d_c00378{bottom:1058.663625px;}
.y1c_c00378{bottom:1083.238792px;}
.y1b_c00378{bottom:1084.454355px;}
.y1a_c00378{bottom:1085.051708px;}
.y19_c00378{bottom:1085.658435px;}
.y18_c00378{bottom:1087.466940px;}
.y17_c00378{bottom:1088.877255px;}
.y16_c00378{bottom:1089.874230px;}
.y15_c00378{bottom:1090.461780px;}
.y14_c00378{bottom:1092.260460px;}
.y13_c00378{bottom:1093.457408px;}
.y12_c00378{bottom:1094.237887px;}
.y11_c00378{bottom:1094.635493px;}
.y10_c00378{bottom:1095.389715px;}
.yf_c00378{bottom:1119.518917px;}
.ye_c00378{bottom:1120.539832px;}
.yd_c00378{bottom:1121.195617px;}
.yc_c00378{bottom:1122.201052px;}
.yb_c00378{bottom:1122.695287px;}
.ya_c00378{bottom:1123.193505px;}
.y9_c00378{bottom:1124.688022px;}
.y8_c00378{bottom:1125.376252px;}
.y7_c00378{bottom:1125.855142px;}
.y6_c00378{bottom:1126.352572px;}
.y5_c00378{bottom:1127.342235px;}
.y4_c00378{bottom:1127.847630px;}
.y3_c00378{bottom:1129.143000px;}
.y2_c00378{bottom:1204.609500px;}
.y1_c00378{bottom:1218.967500px;}
.h2_c00378{height:18.000000px;}
.h12_c00378{height:48.000000px;}
.h6_c00378{height:72.019041px;}
.h11_c00378{height:72.024332px;}
.he_c00378{height:72.032393px;}
.hb_c00378{height:78.017197px;}
.h9_c00378{height:78.020628px;}
.h10_c00378{height:78.035092px;}
.h3_c00378{height:84.000000px;}
.h4_c00378{height:84.009449px;}
.h7_c00378{height:84.022215px;}
.h5_c00378{height:90.010124px;}
.ha_c00378{height:90.019843px;}
.h13_c00378{height:90.030415px;}
.hd_c00378{height:90.040491px;}
.h8_c00378{height:96.025389px;}
.hf_c00378{height:102.045890px;}
.hc_c00378{height:108.023811px;}
.h0_c00378{height:1251.450000px;}
.h1_c00378{height:1251.750000px;}
.w0_c00378{width:915.000000px;}
.x0_c00378{left:0.000000px;}
.xc6_c00378{left:145.260000px;}
.xd0_c00378{left:146.556870px;}
.xbd_c00378{left:147.999405px;}
.x92_c00378{left:149.446050px;}
.x5a_c00378{left:153.231452px;}
.x46_c00378{left:155.096714px;}
.x34_c00378{left:157.268924px;}
.x4_c00378{left:158.557500px;}
.xb5_c00378{left:170.929095px;}
.x9e_c00378{left:172.367205px;}
.x5b_c00378{left:175.817522px;}
.xc7_c00378{left:179.770500px;}
.x93_c00378{left:183.106140px;}
.x88_c00378{left:186.553408px;}
.x3c_c00378{left:187.716511px;}
.x29_c00378{left:189.161530px;}
.x47_c00378{left:198.250616px;}
.x11_c00378{left:200.449928px;}
.xbe_c00378{left:202.793520px;}
.x9f_c00378{left:204.122190px;}
.x64_c00378{left:207.188555px;}
.xd1_c00378{left:210.998016px;}
.xb6_c00378{left:213.980835px;}
.x7d_c00378{left:216.906463px;}
.x6c_c00378{left:218.992092px;}
.x30_c00378{left:221.457428px;}
.x12_c00378{left:222.555938px;}
.x94_c00378{left:227.077020px;}
.x48_c00378{left:230.586792px;}
.x3d_c00378{left:232.242117px;}
.xbf_c00378{left:234.306195px;}
.xa8_c00378{left:236.220660px;}
.x7e_c00378{left:238.649223px;}
.x5_c00378{left:244.915500px;}
.x50_c00378{left:251.447949px;}
.x2a_c00378{left:254.398021px;}
.xc8_c00378{left:256.323000px;}
.x89_c00378{left:258.319500px;}
.x72_c00378{left:259.996500px;}
.x65_c00378{left:261.933852px;}
.x5c_c00378{left:262.978526px;}
.x3e_c00378{left:264.343584px;}
.x13_c00378{left:265.885980px;}
.x51_c00378{left:275.429865px;}
.x6_c00378{left:278.608500px;}
.xa0_c00378{left:280.513890px;}
.xd2_c00378{left:287.059077px;}
.xc3_c00378{left:288.066000px;}
.x8a_c00378{left:291.777000px;}
.x73_c00378{left:293.722500px;}
.x22_c00378{left:298.891500px;}
.xc0_c00378{left:299.923215px;}
.x7f_c00378{left:303.672033px;}
.x2b_c00378{left:309.478459px;}
.xb0_c00378{left:312.316500px;}
.xa1_c00378{left:313.440735px;}
.x1c_c00378{left:321.403448px;}
.xb8_c00378{left:323.470455px;}
.x6d_c00378{left:328.619277px;}
.x3f_c00378{left:329.967122px;}
.x14_c00378{left:332.379487px;}
.xa9_c00378{left:335.340180px;}
.x5d_c00378{left:339.106029px;}
.x2c_c00378{left:342.978947px;}
.x7_c00378{left:344.586000px;}
.x95_c00378{left:347.199420px;}
.x49_c00378{left:353.226308px;}
.xc4_c00378{left:354.754500px;}
.xa2_c00378{left:357.423225px;}
.x8b_c00378{left:358.453500px;}
.x74_c00378{left:359.796000px;}
.x6e_c00378{left:361.562367px;}
.x52_c00378{left:363.187011px;}
.xc9_c00378{left:364.734000px;}
.xaa_c00378{left:369.372015px;}
.x66_c00378{left:373.505292px;}
.x31_c00378{left:374.572637px;}
.x1d_c00378{left:376.722780px;}
.x8_c00378{left:377.748000px;}
.x96_c00378{left:380.157330px;}
.x75_c00378{left:381.465000px;}
.xca_c00378{left:387.477000px;}
.xd3_c00378{left:397.253844px;}
.x4a_c00378{left:406.747832px;}
.x35_c00378{left:408.144950px;}
.x9_c00378{left:409.674000px;}
.x76_c00378{left:415.252500px;}
.x40_c00378{left:418.061195px;}
.xcd_c00378{left:420.756060px;}
.xb1_c00378{left:422.527815px;}
.x8c_c00378{left:424.107000px;}
.x1_c00378{left:425.790000px;}
.x53_c00378{left:427.514345px;}
.xd4_c00378{left:429.932628px;}
.x15_c00378{left:432.286988px;}
.xb9_c00378{left:433.380825px;}
.x80_c00378{left:437.065212px;}
.x36_c00378{left:442.085145px;}
.x3_c00378{left:445.230000px;}
.x77_c00378{left:448.747500px;}
.x5e_c00378{left:450.116241px;}
.x54_c00378{left:451.553261px;}
.x23_c00378{left:452.850000px;}
.x2_c00378{left:454.140000px;}
.xa_c00378{left:455.556000px;}
.x8d_c00378{left:457.056000px;}
.x16_c00378{left:464.955525px;}
.x97_c00378{left:467.768955px;}
.x81_c00378{left:470.265022px;}
.x4b_c00378{left:474.278409px;}
.xc5_c00378{left:476.227500px;}
.x5f_c00378{left:482.813243px;}
.xd5_c00378{left:485.333742px;}
.xcb_c00378{left:486.580500px;}
.x98_c00378{left:490.420575px;}
.x41_c00378{left:496.323405px;}
.x24_c00378{left:497.965500px;}
.xc1_c00378{left:500.602440px;}
.x82_c00378{left:504.034770px;}
.x67_c00378{left:505.549044px;}
.xce_c00378{left:507.995028px;}
.x1e_c00378{left:509.357760px;}
.x4c_c00378{left:517.181742px;}
.x32_c00378{left:518.552034px;}
.x17_c00378{left:520.318027px;}
.x42_c00378{left:529.819976px;}
.x1f_c00378{left:533.074620px;}
.xab_c00378{left:534.220080px;}
.x8e_c00378{left:535.663500px;}
.x68_c00378{left:539.050926px;}
.x55_c00378{left:540.395113px;}
.x25_c00378{left:541.771500px;}
.xb2_c00378{left:544.313955px;}
.xa3_c00378{left:545.514735px;}
.xcc_c00378{left:553.047000px;}
.xb_c00378{left:555.190500px;}
.x99_c00378{left:557.392620px;}
.x37_c00378{left:562.395114px;}
.xcf_c00378{left:564.443670px;}
.xac_c00378{left:566.613105px;}
.x8f_c00378{left:568.065000px;}
.x78_c00378{left:569.721000px;}
.x60_c00378{left:571.883919px;}
.xc2_c00378{left:576.050370px;}
.xa4_c00378{left:578.738670px;}
.xc_c00378{left:588.405000px;}
.x6f_c00378{left:593.605704px;}
.x69_c00378{left:594.684362px;}
.x18_c00378{left:598.635495px;}
.x61_c00378{left:605.188490px;}
.x2d_c00378{left:608.475584px;}
.xb3_c00378{left:610.571325px;}
.x56_c00378{left:617.090724px;}
.xd6_c00378{left:618.558339px;}
.x20_c00378{left:620.348925px;}
.xd_c00378{left:621.354000px;}
.x9a_c00378{left:622.778760px;}
.x4d_c00378{left:627.696687px;}
.x43_c00378{left:628.931083px;}
.xad_c00378{left:633.107010px;}
.x83_c00378{left:646.609815px;}
.x57_c00378{left:650.032296px;}
.x33_c00378{left:651.967275px;}
.x21_c00378{left:654.321443px;}
.xa5_c00378{left:655.798095px;}
.xae_c00378{left:666.558030px;}
.x79_c00378{left:671.034000px;}
.x38_c00378{left:684.211635px;}
.x26_c00378{left:686.382000px;}
.xe_c00378{left:688.383000px;}
.xb7_c00378{left:689.387880px;}
.x84_c00378{left:691.742145px;}
.x4e_c00378{left:695.845437px;}
.x19_c00378{left:699.097972px;}
.xa6_c00378{left:701.462670px;}
.x9b_c00378{left:702.739815px;}
.x44_c00378{left:707.580329px;}
.x27_c00378{left:709.087500px;}
.xba_c00378{left:710.131200px;}
.x6a_c00378{left:716.776992px;}
.x62_c00378{left:717.803840px;}
.xb4_c00378{left:722.167635px;}
.x58_c00378{left:728.912286px;}
.xf_c00378{left:732.102000px;}
.xaf_c00378{left:733.892340px;}
.x2e_c00378{left:741.910325px;}
.x28_c00378{left:743.412000px;}
.x39_c00378{left:752.489664px;}
.xbb_c00378{left:754.409820px;}
.x90_c00378{left:757.404000px;}
.x7a_c00378{left:759.153000px;}
.x70_c00378{left:760.804137px;}
.x59_c00378{left:762.135893px;}
.x1a_c00378{left:766.066980px;}
.x85_c00378{left:769.316880px;}
.x63_c00378{left:772.888911px;}
.x3a_c00378{left:774.962927px;}
.xa7_c00378{left:778.322505px;}
.x9c_c00378{left:789.817305px;}
.x86_c00378{left:791.992513px;}
.x7b_c00378{left:793.452000px;}
.x2f_c00378{left:798.360608px;}
.x10_c00378{left:800.163000px;}
.x71_c00378{left:805.635953px;}
.x45_c00378{left:806.914971px;}
.xbc_c00378{left:810.926865px;}
.x6b_c00378{left:817.257173px;}
.x3b_c00378{left:818.426899px;}
.x7c_c00378{left:824.989500px;}
.x87_c00378{left:827.118103px;}
.x1b_c00378{left:833.601443px;}
.x9d_c00378{left:835.689180px;}
.x91_c00378{left:850.428000px;}
.x4f_c00378{left:851.575802px;}
@media print{
.v0_c00378{vertical-align:0.000000pt;}
.ls0_c00378{letter-spacing:0.000000pt;}
.ws0_c00378{word-spacing:0.000000pt;}
.fs0_c00378{font-size:16.000000pt;}
.fs10_c00378{font-size:42.666667pt;}
.fs4_c00378{font-size:64.016926pt;}
.fsf_c00378{font-size:64.021628pt;}
.fsc_c00378{font-size:64.028794pt;}
.fs9_c00378{font-size:69.348620pt;}
.fs7_c00378{font-size:69.351670pt;}
.fse_c00378{font-size:69.364526pt;}
.fs1_c00378{font-size:74.666667pt;}
.fs2_c00378{font-size:74.675066pt;}
.fs5_c00378{font-size:74.686413pt;}
.fs3_c00378{font-size:80.008999pt;}
.fs8_c00378{font-size:80.017638pt;}
.fs11_c00378{font-size:80.027035pt;}
.fsb_c00378{font-size:80.035992pt;}
.fs6_c00378{font-size:85.355901pt;}
.fsd_c00378{font-size:90.707457pt;}
.fsa_c00378{font-size:96.021166pt;}
.y0_c00378{bottom:0.000000pt;}
.y146_c00378{bottom:59.761280pt;}
.y145_c00378{bottom:61.146115pt;}
.y144_c00378{bottom:61.650912pt;}
.y143_c00378{bottom:63.076408pt;}
.y142_c00378{bottom:63.896771pt;}
.y141_c00378{bottom:64.455523pt;}
.y140_c00378{bottom:65.269472pt;}
.y13f_c00378{bottom:66.084115pt;}
.y13e_c00378{bottom:68.012328pt;}
.y13d_c00378{bottom:69.904941pt;}
.y13c_c00378{bottom:71.508992pt;}
.y135_c00378{bottom:101.475837pt;}
.y134_c00378{bottom:101.475901pt;}
.y136_c00378{bottom:101.476296pt;}
.y137_c00378{bottom:101.476469pt;}
.y138_c00378{bottom:101.477083pt;}
.y13b_c00378{bottom:101.477640pt;}
.y139_c00378{bottom:101.477643pt;}
.y13a_c00378{bottom:101.477933pt;}
.y133_c00378{bottom:127.107067pt;}
.y132_c00378{bottom:128.386960pt;}
.y131_c00378{bottom:129.929835pt;}
.y130_c00378{bottom:130.685117pt;}
.y12f_c00378{bottom:131.190869pt;}
.y12e_c00378{bottom:132.221267pt;}
.y12d_c00378{bottom:132.741371pt;}
.y12c_c00378{bottom:133.239045pt;}
.y12b_c00378{bottom:135.016856pt;}
.y12a_c00378{bottom:136.774803pt;}
.y129_c00378{bottom:137.765333pt;}
.y128_c00378{bottom:157.477333pt;}
.y127_c00378{bottom:158.869333pt;}
.y126_c00378{bottom:160.524000pt;}
.y125_c00378{bottom:161.337333pt;}
.y124_c00378{bottom:161.888000pt;}
.y123_c00378{bottom:162.990667pt;}
.y122_c00378{bottom:163.557333pt;}
.y121_c00378{bottom:164.376000pt;}
.y120_c00378{bottom:166.256000pt;}
.y11f_c00378{bottom:168.161333pt;}
.y11e_c00378{bottom:168.965333pt;}
.y11d_c00378{bottom:186.968000pt;}
.y11c_c00378{bottom:202.622427pt;}
.y11b_c00378{bottom:203.654592pt;}
.y11a_c00378{bottom:204.183501pt;}
.y119_c00378{bottom:206.001976pt;}
.y118_c00378{bottom:206.750672pt;}
.y117_c00378{bottom:207.805995pt;}
.y116_c00378{bottom:208.567829pt;}
.y115_c00378{bottom:210.099507pt;}
.y114_c00378{bottom:212.906883pt;}
.y113_c00378{bottom:213.682480pt;}
.y112_c00378{bottom:214.448128pt;}
.y111_c00378{bottom:215.701467pt;}
.y110_c00378{bottom:217.682667pt;}
.y10f_c00378{bottom:231.487373pt;}
.y10e_c00378{bottom:232.225160pt;}
.y10d_c00378{bottom:232.693400pt;}
.y10c_c00378{bottom:233.281253pt;}
.y10b_c00378{bottom:234.913707pt;}
.y10a_c00378{bottom:235.919413pt;}
.y109_c00378{bottom:237.125760pt;}
.y108_c00378{bottom:237.557680pt;}
.y107_c00378{bottom:238.595120pt;}
.y106_c00378{bottom:239.469453pt;}
.y105_c00378{bottom:239.889413pt;}
.y104_c00378{bottom:240.620600pt;}
.y103_c00378{bottom:267.766840pt;}
.y102_c00378{bottom:268.872267pt;}
.y101_c00378{bottom:269.738080pt;}
.y100_c00378{bottom:270.181867pt;}
.yff_c00378{bottom:271.905880pt;}
.yfe_c00378{bottom:272.987187pt;}
.yfd_c00378{bottom:274.516240pt;}
.yfc_c00378{bottom:275.149653pt;}
.yfb_c00378{bottom:277.298560pt;}
.yfa_c00378{bottom:277.932187pt;}
.yf9_c00378{bottom:278.582667pt;}
.yf8_c00378{bottom:280.720907pt;}
.yf7_c00378{bottom:294.453280pt;}
.yf6_c00378{bottom:295.169573pt;}
.yf5_c00378{bottom:297.521053pt;}
.yf4_c00378{bottom:298.741320pt;}
.yf3_c00378{bottom:300.131440pt;}
.yf2_c00378{bottom:300.849960pt;}
.yf1_c00378{bottom:303.230933pt;}
.yf0_c00378{bottom:304.863893pt;}
.yef_c00378{bottom:305.565467pt;}
.yee_c00378{bottom:307.661627pt;}
.yed_c00378{bottom:308.580133pt;}
.yec_c00378{bottom:309.050080pt;}
.yeb_c00378{bottom:328.810453pt;}
.yea_c00378{bottom:329.395040pt;}
.ye9_c00378{bottom:331.279293pt;}
.ye8_c00378{bottom:332.027280pt;}
.ye7_c00378{bottom:332.397573pt;}
.ye6_c00378{bottom:334.454800pt;}
.ye5_c00378{bottom:336.316800pt;}
.ye4_c00378{bottom:338.159147pt;}
.ye3_c00378{bottom:339.065267pt;}
.ye2_c00378{bottom:359.132453pt;}
.ye1_c00378{bottom:359.560773pt;}
.ye0_c00378{bottom:360.375853pt;}
.ydf_c00378{bottom:360.789440pt;}
.yde_c00378{bottom:361.213240pt;}
.ydd_c00378{bottom:361.630173pt;}
.ydc_c00378{bottom:362.457160pt;}
.ydb_c00378{bottom:362.860560pt;}
.yda_c00378{bottom:363.825733pt;}
.yd9_c00378{bottom:364.911733pt;}
.yd8_c00378{bottom:365.334813pt;}
.yd7_c00378{bottom:366.568733pt;}
.yd6_c00378{bottom:367.237627pt;}
.yd5_c00378{bottom:367.636827pt;}
.yd4_c00378{bottom:394.472107pt;}
.yd3_c00378{bottom:394.838120pt;}
.yd2_c00378{bottom:395.770360pt;}
.yd1_c00378{bottom:396.541013pt;}
.yd0_c00378{bottom:397.841920pt;}
.ycf_c00378{bottom:398.403600pt;}
.yce_c00378{bottom:400.447413pt;}
.ycd_c00378{bottom:401.580387pt;}
.ycc_c00378{bottom:402.323533pt;}
.ycb_c00378{bottom:402.879960pt;}
.yca_c00378{bottom:404.169733pt;}
.yc9_c00378{bottom:404.705587pt;}
.yc8_c00378{bottom:405.092467pt;}
.yc7_c00378{bottom:425.658413pt;}
.yc6_c00378{bottom:426.514667pt;}
.yc5_c00378{bottom:428.140107pt;}
.yc4_c00378{bottom:429.633160pt;}
.yc3_c00378{bottom:430.853653pt;}
.yc2_c00378{bottom:432.104427pt;}
.yc1_c00378{bottom:432.526973pt;}
.yc0_c00378{bottom:434.162653pt;}
.ybf_c00378{bottom:434.777293pt;}
.ybe_c00378{bottom:437.019693pt;}
.ybd_c00378{bottom:437.839933pt;}
.ybc_c00378{bottom:438.467960pt;}
.ybb_c00378{bottom:454.619773pt;}
.yba_c00378{bottom:457.100413pt;}
.yb9_c00378{bottom:460.077853pt;}
.yb8_c00378{bottom:462.149453pt;}
.yb7_c00378{bottom:463.013493pt;}
.yb6_c00378{bottom:465.109693pt;}
.yb5_c00378{bottom:465.988333pt;}
.yb4_c00378{bottom:467.739093pt;}
.yb3_c00378{bottom:469.517133pt;}
.yb2_c00378{bottom:470.409333pt;}
.yb0_c00378{bottom:495.584295pt;}
.yb1_c00378{bottom:495.584808pt;}
.yaf_c00378{bottom:519.016533pt;}
.yae_c00378{bottom:519.858960pt;}
.yad_c00378{bottom:520.403625pt;}
.yac_c00378{bottom:522.265203pt;}
.yab_c00378{bottom:523.347779pt;}
.yaa_c00378{bottom:524.631060pt;}
.ya9_c00378{bottom:526.769515pt;}
.ya8_c00378{bottom:527.579963pt;}
.ya7_c00378{bottom:528.377104pt;}
.ya6_c00378{bottom:529.732357pt;}
.ya5_c00378{bottom:531.579424pt;}
.ya4_c00378{bottom:533.140003pt;}
.ya3_c00378{bottom:533.661919pt;}
.ya2_c00378{bottom:535.197816pt;}
.ya1_c00378{bottom:552.018797pt;}
.ya0_c00378{bottom:552.607497pt;}
.y9f_c00378{bottom:553.247745pt;}
.y9e_c00378{bottom:554.892633pt;}
.y9d_c00378{bottom:556.783809pt;}
.y9c_c00378{bottom:559.041981pt;}
.y9b_c00378{bottom:559.667221pt;}
.y9a_c00378{bottom:560.297921pt;}
.y99_c00378{bottom:560.702409pt;}
.y98_c00378{bottom:561.935781pt;}
.y97_c00378{bottom:562.565333pt;}
.y96_c00378{bottom:590.072596pt;}
.y95_c00378{bottom:590.073044pt;}
.y94_c00378{bottom:614.223413pt;}
.y93_c00378{bottom:614.741097pt;}
.y92_c00378{bottom:616.031019pt;}
.y91_c00378{bottom:616.673257pt;}
.y90_c00378{bottom:617.694099pt;}
.y8f_c00378{bottom:618.605356pt;}
.y8e_c00378{bottom:619.354831pt;}
.y8d_c00378{bottom:619.734845pt;}
.y8c_c00378{bottom:621.002264pt;}
.y8b_c00378{bottom:621.764117pt;}
.y8a_c00378{bottom:648.350660pt;}
.y89_c00378{bottom:649.779257pt;}
.y88_c00378{bottom:651.516305pt;}
.y87_c00378{bottom:652.308184pt;}
.y86_c00378{bottom:652.785001pt;}
.y85_c00378{bottom:653.902540pt;}
.y84_c00378{bottom:654.662795pt;}
.y83_c00378{bottom:656.250111pt;}
.y82_c00378{bottom:657.029168pt;}
.y81_c00378{bottom:657.774899pt;}
.y80_c00378{bottom:679.717849pt;}
.y7f_c00378{bottom:680.647929pt;}
.y7e_c00378{bottom:681.228035pt;}
.y7d_c00378{bottom:682.550076pt;}
.y7c_c00378{bottom:683.112240pt;}
.y7b_c00378{bottom:684.617073pt;}
.y7a_c00378{bottom:685.169484pt;}
.y79_c00378{bottom:687.044151pt;}
.y78_c00378{bottom:688.329725pt;}
.y77_c00378{bottom:689.802187pt;}
.y76_c00378{bottom:690.183904pt;}
.y75_c00378{bottom:711.263735pt;}
.y74_c00378{bottom:711.857232pt;}
.y73_c00378{bottom:712.300345pt;}
.y72_c00378{bottom:713.352707pt;}
.y71_c00378{bottom:713.791388pt;}
.y70_c00378{bottom:714.813765pt;}
.y6f_c00378{bottom:715.403919pt;}
.y6e_c00378{bottom:715.997753pt;}
.y6d_c00378{bottom:716.318459pt;}
.y6c_c00378{bottom:717.176020pt;}
.y6b_c00378{bottom:717.621895pt;}
.y6a_c00378{bottom:718.345836pt;}
.y69_c00378{bottom:718.665376pt;}
.y68_c00378{bottom:719.950989pt;}
.y67_c00378{bottom:743.008787pt;}
.y66_c00378{bottom:743.481361pt;}
.y65_c00378{bottom:744.670469pt;}
.y64_c00378{bottom:745.146481pt;}
.y63_c00378{bottom:745.396713pt;}
.y62_c00378{bottom:746.575559pt;}
.y61_c00378{bottom:747.033805pt;}
.y60_c00378{bottom:747.754081pt;}
.y5f_c00378{bottom:748.325356pt;}
.y5e_c00378{bottom:749.633352pt;}
.y5d_c00378{bottom:749.978280pt;}
.y5c_c00378{bottom:750.438981pt;}
.y5b_c00378{bottom:775.713328pt;}
.y5a_c00378{bottom:776.647595pt;}
.y59_c00378{bottom:777.390649pt;}
.y58_c00378{bottom:778.718441pt;}
.y57_c00378{bottom:780.392527pt;}
.y56_c00378{bottom:780.958616pt;}
.y55_c00378{bottom:782.279829pt;}
.y54_c00378{bottom:783.005663pt;}
.y53_c00378{bottom:783.768699pt;}
.y52_c00378{bottom:784.876879pt;}
.y51_c00378{bottom:785.418448pt;}
.y50_c00378{bottom:786.169999pt;}
.y4f_c00378{bottom:786.689209pt;}
.y4e_c00378{bottom:808.632836pt;}
.y4d_c00378{bottom:808.942460pt;}
.y4c_c00378{bottom:809.101755pt;}
.y4b_c00378{bottom:809.587847pt;}
.y4a_c00378{bottom:810.127365pt;}
.y49_c00378{bottom:810.453459pt;}
.y48_c00378{bottom:811.309615pt;}
.y47_c00378{bottom:811.551264pt;}
.y46_c00378{bottom:812.255740pt;}
.y45_c00378{bottom:813.034329pt;}
.y44_c00378{bottom:813.334516pt;}
.y43_c00378{bottom:838.793377pt;}
.y42_c00378{bottom:839.392388pt;}
.y41_c00378{bottom:839.756000pt;}
.y40_c00378{bottom:840.334240pt;}
.y3f_c00378{bottom:841.178911pt;}
.y3e_c00378{bottom:842.348521pt;}
.y3d_c00378{bottom:842.715079pt;}
.y3c_c00378{bottom:844.348643pt;}
.y3b_c00378{bottom:844.699461pt;}
.y3a_c00378{bottom:845.024800pt;}
.y39_c00378{bottom:869.160199pt;}
.y38_c00378{bottom:869.762001pt;}
.y37_c00378{bottom:870.704743pt;}
.y36_c00378{bottom:871.185311pt;}
.y35_c00378{bottom:871.902672pt;}
.y34_c00378{bottom:872.848375pt;}
.y33_c00378{bottom:874.017203pt;}
.y32_c00378{bottom:874.373928pt;}
.y31_c00378{bottom:874.961065pt;}
.y30_c00378{bottom:875.657119pt;}
.y2f_c00378{bottom:875.992244pt;}
.y2e_c00378{bottom:901.987021pt;}
.y2d_c00378{bottom:902.688767pt;}
.y2c_c00378{bottom:903.152968pt;}
.y2b_c00378{bottom:903.820827pt;}
.y2a_c00378{bottom:906.109449pt;}
.y29_c00378{bottom:907.005039pt;}
.y28_c00378{bottom:907.927400pt;}
.y27_c00378{bottom:910.153524pt;}
.y26_c00378{bottom:911.074996pt;}
.y25_c00378{bottom:911.765333pt;}
.y24_c00378{bottom:934.862487pt;}
.y23_c00378{bottom:935.284780pt;}
.y22_c00378{bottom:936.371087pt;}
.y21_c00378{bottom:936.665973pt;}
.y20_c00378{bottom:938.317080pt;}
.y1f_c00378{bottom:939.005327pt;}
.y1e_c00378{bottom:940.501060pt;}
.y1d_c00378{bottom:941.034333pt;}
.y1c_c00378{bottom:962.878927pt;}
.y1b_c00378{bottom:963.959427pt;}
.y1a_c00378{bottom:964.490407pt;}
.y19_c00378{bottom:965.029720pt;}
.y18_c00378{bottom:966.637280pt;}
.y17_c00378{bottom:967.890893pt;}
.y16_c00378{bottom:968.777093pt;}
.y15_c00378{bottom:969.299360pt;}
.y14_c00378{bottom:970.898187pt;}
.y13_c00378{bottom:971.962140pt;}
.y12_c00378{bottom:972.655900pt;}
.y11_c00378{bottom:973.009327pt;}
.y10_c00378{bottom:973.679747pt;}
.yf_c00378{bottom:995.127927pt;}
.ye_c00378{bottom:996.035407pt;}
.yd_c00378{bottom:996.618327pt;}
.yc_c00378{bottom:997.512047pt;}
.yb_c00378{bottom:997.951367pt;}
.ya_c00378{bottom:998.394227pt;}
.y9_c00378{bottom:999.722687pt;}
.y8_c00378{bottom:1000.334447pt;}
.y7_c00378{bottom:1000.760127pt;}
.y6_c00378{bottom:1001.202287pt;}
.y5_c00378{bottom:1002.081987pt;}
.y4_c00378{bottom:1002.531227pt;}
.y3_c00378{bottom:1003.682667pt;}
.y2_c00378{bottom:1070.764000pt;}
.y1_c00378{bottom:1083.526667pt;}
.h2_c00378{height:16.000000pt;}
.h12_c00378{height:42.666667pt;}
.h6_c00378{height:64.016926pt;}
.h11_c00378{height:64.021628pt;}
.he_c00378{height:64.028794pt;}
.hb_c00378{height:69.348620pt;}
.h9_c00378{height:69.351670pt;}
.h10_c00378{height:69.364526pt;}
.h3_c00378{height:74.666667pt;}
.h4_c00378{height:74.675066pt;}
.h7_c00378{height:74.686413pt;}
.h5_c00378{height:80.008999pt;}
.ha_c00378{height:80.017638pt;}
.h13_c00378{height:80.027035pt;}
.hd_c00378{height:80.035992pt;}
.h8_c00378{height:85.355901pt;}
.hf_c00378{height:90.707457pt;}
.hc_c00378{height:96.021166pt;}
.h0_c00378{height:1112.400000pt;}
.h1_c00378{height:1112.666667pt;}
.w0_c00378{width:813.333333pt;}
.x0_c00378{left:0.000000pt;}
.xc6_c00378{left:129.120000pt;}
.xd0_c00378{left:130.272773pt;}
.xbd_c00378{left:131.555027pt;}
.x92_c00378{left:132.840933pt;}
.x5a_c00378{left:136.205735pt;}
.x46_c00378{left:137.863745pt;}
.x34_c00378{left:139.794599pt;}
.x4_c00378{left:140.940000pt;}
.xb5_c00378{left:151.936973pt;}
.x9e_c00378{left:153.215293pt;}
.x5b_c00378{left:156.282241pt;}
.xc7_c00378{left:159.796000pt;}
.x93_c00378{left:162.761013pt;}
.x88_c00378{left:165.825252pt;}
.x3c_c00378{left:166.859121pt;}
.x29_c00378{left:168.143583pt;}
.x47_c00378{left:176.222769pt;}
.x11_c00378{left:178.177713pt;}
.xbe_c00378{left:180.260907pt;}
.x9f_c00378{left:181.441947pt;}
.x64_c00378{left:184.167604pt;}
.xd1_c00378{left:187.553792pt;}
.xb6_c00378{left:190.205187pt;}
.x7d_c00378{left:192.805745pt;}
.x6c_c00378{left:194.659637pt;}
.x30_c00378{left:196.851047pt;}
.x12_c00378{left:197.827500pt;}
.x94_c00378{left:201.846240pt;}
.x48_c00378{left:204.966037pt;}
.x3d_c00378{left:206.437437pt;}
.xbf_c00378{left:208.272173pt;}
.xa8_c00378{left:209.973920pt;}
.x7e_c00378{left:212.132643pt;}
.x5_c00378{left:217.702667pt;}
.x50_c00378{left:223.509288pt;}
.x2a_c00378{left:226.131575pt;}
.xc8_c00378{left:227.842667pt;}
.x89_c00378{left:229.617333pt;}
.x72_c00378{left:231.108000pt;}
.x65_c00378{left:232.830091pt;}
.x5c_c00378{left:233.758689pt;}
.x3e_c00378{left:234.972075pt;}
.x13_c00378{left:236.343093pt;}
.x51_c00378{left:244.826547pt;}
.x6_c00378{left:247.652000pt;}
.xa0_c00378{left:249.345680pt;}
.xd2_c00378{left:255.163624pt;}
.xc3_c00378{left:256.058667pt;}
.x8a_c00378{left:259.357333pt;}
.x73_c00378{left:261.086667pt;}
.x22_c00378{left:265.681333pt;}
.xc0_c00378{left:266.598413pt;}
.x7f_c00378{left:269.930696pt;}
.x2b_c00378{left:275.091964pt;}
.xb0_c00378{left:277.614667pt;}
.xa1_c00378{left:278.613987pt;}
.x1c_c00378{left:285.691953pt;}
.xb8_c00378{left:287.529293pt;}
.x6d_c00378{left:292.106024pt;}
.x3f_c00378{left:293.304108pt;}
.x14_c00378{left:295.448433pt;}
.xa9_c00378{left:298.080160pt;}
.x5d_c00378{left:301.427581pt;}
.x2c_c00378{left:304.870175pt;}
.x7_c00378{left:306.298667pt;}
.x95_c00378{left:308.621707pt;}
.x49_c00378{left:313.978940pt;}
.xc4_c00378{left:315.337333pt;}
.xa2_c00378{left:317.709533pt;}
.x8b_c00378{left:318.625333pt;}
.x74_c00378{left:319.818667pt;}
.x6e_c00378{left:321.388771pt;}
.x52_c00378{left:322.832899pt;}
.xc9_c00378{left:324.208000pt;}
.xaa_c00378{left:328.330680pt;}
.x66_c00378{left:332.004704pt;}
.x31_c00378{left:332.953455pt;}
.x1d_c00378{left:334.864693pt;}
.x8_c00378{left:335.776000pt;}
.x96_c00378{left:337.917627pt;}
.x75_c00378{left:339.080000pt;}
.xca_c00378{left:344.424000pt;}
.xd3_c00378{left:353.114528pt;}
.x4a_c00378{left:361.553628pt;}
.x35_c00378{left:362.795511pt;}
.x9_c00378{left:364.154667pt;}
.x76_c00378{left:369.113333pt;}
.x40_c00378{left:371.609951pt;}
.xcd_c00378{left:374.005387pt;}
.xb1_c00378{left:375.580280pt;}
.x8c_c00378{left:376.984000pt;}
.x1_c00378{left:378.480000pt;}
.x53_c00378{left:380.012751pt;}
.xd4_c00378{left:382.162336pt;}
.x15_c00378{left:384.255100pt;}
.xb9_c00378{left:385.227400pt;}
.x80_c00378{left:388.502411pt;}
.x36_c00378{left:392.964573pt;}
.x3_c00378{left:395.760000pt;}
.x77_c00378{left:398.886667pt;}
.x5e_c00378{left:400.103325pt;}
.x54_c00378{left:401.380676pt;}
.x23_c00378{left:402.533333pt;}
.x2_c00378{left:403.680000pt;}
.xa_c00378{left:404.938667pt;}
.x8d_c00378{left:406.272000pt;}
.x16_c00378{left:413.293800pt;}
.x97_c00378{left:415.794627pt;}
.x81_c00378{left:418.013353pt;}
.x4b_c00378{left:421.580808pt;}
.xc5_c00378{left:423.313333pt;}
.x5f_c00378{left:429.167327pt;}
.xd5_c00378{left:431.407771pt;}
.xcb_c00378{left:432.516000pt;}
.x98_c00378{left:435.929400pt;}
.x41_c00378{left:441.176360pt;}
.x24_c00378{left:442.636000pt;}
.xc1_c00378{left:444.979947pt;}
.x82_c00378{left:448.030907pt;}
.x67_c00378{left:449.376928pt;}
.xce_c00378{left:451.551136pt;}
.x1e_c00378{left:452.762453pt;}
.x4c_c00378{left:459.717104pt;}
.x32_c00378{left:460.935141pt;}
.x17_c00378{left:462.504913pt;}
.x42_c00378{left:470.951089pt;}
.x1f_c00378{left:473.844107pt;}
.xab_c00378{left:474.862293pt;}
.x8e_c00378{left:476.145333pt;}
.x68_c00378{left:479.156379pt;}
.x55_c00378{left:480.351212pt;}
.x25_c00378{left:481.574667pt;}
.xb2_c00378{left:483.834627pt;}
.xa3_c00378{left:484.901987pt;}
.xcc_c00378{left:491.597333pt;}
.xb_c00378{left:493.502667pt;}
.x99_c00378{left:495.460107pt;}
.x37_c00378{left:499.906768pt;}
.xcf_c00378{left:501.727707pt;}
.xac_c00378{left:503.656093pt;}
.x8f_c00378{left:504.946667pt;}
.x78_c00378{left:506.418667pt;}
.x60_c00378{left:508.341261pt;}
.xc2_c00378{left:512.044773pt;}
.xa4_c00378{left:514.434373pt;}
.xc_c00378{left:523.026667pt;}
.x6f_c00378{left:527.649515pt;}
.x69_c00378{left:528.608321pt;}
.x18_c00378{left:532.120440pt;}
.x61_c00378{left:537.945324pt;}
.x2d_c00378{left:540.867185pt;}
.xb3_c00378{left:542.730067pt;}
.x56_c00378{left:548.525088pt;}
.xd6_c00378{left:549.829635pt;}
.x20_c00378{left:551.421267pt;}
.xd_c00378{left:552.314667pt;}
.x9a_c00378{left:553.581120pt;}
.x4d_c00378{left:557.952611pt;}
.x43_c00378{left:559.049852pt;}
.xad_c00378{left:562.761787pt;}
.x83_c00378{left:574.764280pt;}
.x57_c00378{left:577.806485pt;}
.x33_c00378{left:579.526467pt;}
.x21_c00378{left:581.619060pt;}
.xa5_c00378{left:582.931640pt;}
.xae_c00378{left:592.496027pt;}
.x79_c00378{left:596.474667pt;}
.x38_c00378{left:608.188120pt;}
.x26_c00378{left:610.117333pt;}
.xe_c00378{left:611.896000pt;}
.xb7_c00378{left:612.789227pt;}
.x84_c00378{left:614.881907pt;}
.x4e_c00378{left:618.529277pt;}
.x19_c00378{left:621.420420pt;}
.xa6_c00378{left:623.522373pt;}
.x9b_c00378{left:624.657613pt;}
.x44_c00378{left:628.960292pt;}
.x27_c00378{left:630.300000pt;}
.xba_c00378{left:631.227733pt;}
.x6a_c00378{left:637.135104pt;}
.x62_c00378{left:638.047857pt;}
.xb4_c00378{left:641.926787pt;}
.x58_c00378{left:647.922032pt;}
.xf_c00378{left:650.757333pt;}
.xaf_c00378{left:652.348747pt;}
.x2e_c00378{left:659.475844pt;}
.x28_c00378{left:660.810667pt;}
.x39_c00378{left:668.879701pt;}
.xbb_c00378{left:670.586507pt;}
.x90_c00378{left:673.248000pt;}
.x7a_c00378{left:674.802667pt;}
.x70_c00378{left:676.270344pt;}
.x59_c00378{left:677.454127pt;}
.x1a_c00378{left:680.948427pt;}
.x85_c00378{left:683.837227pt;}
.x63_c00378{left:687.012365pt;}
.x3a_c00378{left:688.855935pt;}
.xa7_c00378{left:691.842227pt;}
.x9c_c00378{left:702.059827pt;}
.x86_c00378{left:703.993345pt;}
.x7b_c00378{left:705.290667pt;}
.x2f_c00378{left:709.653873pt;}
.x10_c00378{left:711.256000pt;}
.x71_c00378{left:716.120847pt;}
.x45_c00378{left:717.257752pt;}
.xbc_c00378{left:720.823880pt;}
.x6b_c00378{left:726.450820pt;}
.x3b_c00378{left:727.490577pt;}
.x7c_c00378{left:733.324000pt;}
.x87_c00378{left:735.216092pt;}
.x1b_c00378{left:740.979060pt;}
.x9d_c00378{left:742.834827pt;}
.x91_c00378{left:755.936000pt;}
.x4f_c00378{left:756.956268pt;}
}





/* 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_c00379 {
    display:none;
  }
  .loading-indicator_c00379.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00379 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_c00379 { 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_c00379" -> "#page-container .classname_c00379")
 */
.pf_c00379 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00379 { /* 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_c00379.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00379 { /* 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_c00379 { /* 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_c00379 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00379 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00379 {overflow:visible;}
  }
}
.c_c00379 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00379 { /* 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_c00379:after { /* webkit #35443 */
  content: '';
}
.t_c00379:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00379 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 */
}
.__c00379 { /* 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_c00379 { /* info for Javascript */
  display:none;
}
.l_c00379 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00379 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00379 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00379: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_c00379 {
    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_c00379.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00379.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_c00379 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00379{font-family:sans-serif;visibility:hidden;}
.sc__c00379{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00379{-webkit-text-stroke:0px transparent;}
}
.y0_c00379{bottom:0.000000px;}
.h0_c00379{height:1251.450000px;}
.h1_c00379{height:1251.750000px;}
.w0_c00379{width:915.000000px;}
.x0_c00379{left:0.000000px;}
@media print{
.y0_c00379{bottom:0.000000pt;}
.h0_c00379{height:1112.400000pt;}
.h1_c00379{height:1112.666667pt;}
.w0_c00379{width:813.333333pt;}
.x0_c00379{left:0.000000pt;}
}





/* 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_c00380 {
    display:none;
  }
  .loading-indicator_c00380.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00380 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_c00380 { 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_c00380" -> "#page-container .classname_c00380")
 */
.pf_c00380 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00380 { /* 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_c00380.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00380 { /* 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_c00380 { /* 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_c00380 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00380 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00380 {overflow:visible;}
  }
}
.c_c00380 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00380 { /* 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_c00380:after { /* webkit #35443 */
  content: '';
}
.t_c00380:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00380 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 */
}
.__c00380 { /* 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_c00380 { /* info for Javascript */
  display:none;
}
.l_c00380 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00380 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00380 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00380: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_c00380 {
    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_c00380.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00380.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_c00380 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00380{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00380;src:url('chunks/assets/font_c605e72f209fc835e906f064.woff2')format("woff");}.ff1_c00380{font-family:ff1_c00380;line-height:1.000000;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;}
.m23_c00380{transform:matrix(0.012479,0.000125,-0.002500,0.249988,0,0);-ms-transform:matrix(0.012479,0.000125,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.012479,0.000125,-0.002500,0.249988,0,0);}
.mbf_c00380{transform:matrix(0.019038,0.000286,-0.003750,0.249972,0,0);-ms-transform:matrix(0.019038,0.000286,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.019038,0.000286,-0.003750,0.249972,0,0);}
.m24_c00380{transform:matrix(0.023219,0.000232,-0.002500,0.249988,0,0);-ms-transform:matrix(0.023219,0.000232,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.023219,0.000232,-0.002500,0.249988,0,0);}
.mae_c00380{transform:matrix(0.058243,0.000874,-0.003750,0.249972,0,0);-ms-transform:matrix(0.058243,0.000874,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.058243,0.000874,-0.003750,0.249972,0,0);}
.m13e_c00380{transform:matrix(0.109095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109095,0.000000,0.000000,0.250000,0,0);}
.m141_c00380{transform:matrix(0.138380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138380,0.000000,0.000000,0.250000,0,0);}
.mbb_c00380{transform:matrix(0.143909,0.002159,-0.003750,0.249972,0,0);-ms-transform:matrix(0.143909,0.002159,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.143909,0.002159,-0.003750,0.249972,0,0);}
.mb9_c00380{transform:matrix(0.151143,0.002267,-0.003750,0.249972,0,0);-ms-transform:matrix(0.151143,0.002267,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.151143,0.002267,-0.003750,0.249972,0,0);}
.mb8_c00380{transform:matrix(0.155513,0.002333,-0.003750,0.249972,0,0);-ms-transform:matrix(0.155513,0.002333,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.155513,0.002333,-0.003750,0.249972,0,0);}
.m116_c00380{transform:matrix(0.162462,0.003737,-0.005748,0.249934,0,0);-ms-transform:matrix(0.162462,0.003737,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.162462,0.003737,-0.005748,0.249934,0,0);}
.m110_c00380{transform:matrix(0.163922,0.003770,-0.005748,0.249934,0,0);-ms-transform:matrix(0.163922,0.003770,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.163922,0.003770,-0.005748,0.249934,0,0);}
.mbe_c00380{transform:matrix(0.165466,0.002482,-0.003750,0.249972,0,0);-ms-transform:matrix(0.165466,0.002482,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.165466,0.002482,-0.003750,0.249972,0,0);}
.m3d_c00380{transform:matrix(0.165506,0.002814,-0.004249,0.249964,0,0);-ms-transform:matrix(0.165506,0.002814,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.165506,0.002814,-0.004249,0.249964,0,0);}
.m14_c00380{transform:matrix(0.167592,0.001676,-0.002500,0.249988,0,0);-ms-transform:matrix(0.167592,0.001676,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.167592,0.001676,-0.002500,0.249988,0,0);}
.m112_c00380{transform:matrix(0.169815,0.003906,-0.005748,0.249934,0,0);-ms-transform:matrix(0.169815,0.003906,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.169815,0.003906,-0.005748,0.249934,0,0);}
.ma4_c00380{transform:matrix(0.173930,0.002609,-0.003750,0.249972,0,0);-ms-transform:matrix(0.173930,0.002609,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.173930,0.002609,-0.003750,0.249972,0,0);}
.ma3_c00380{transform:matrix(0.178080,0.002671,-0.003750,0.249972,0,0);-ms-transform:matrix(0.178080,0.002671,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.178080,0.002671,-0.003750,0.249972,0,0);}
.m21_c00380{transform:matrix(0.178606,0.001786,-0.002500,0.249988,0,0);-ms-transform:matrix(0.178606,0.001786,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.178606,0.001786,-0.002500,0.249988,0,0);}
.mba_c00380{transform:matrix(0.178710,0.002681,-0.003750,0.249972,0,0);-ms-transform:matrix(0.178710,0.002681,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.178710,0.002681,-0.003750,0.249972,0,0);}
.mbc_c00380{transform:matrix(0.179180,0.002688,-0.003750,0.249972,0,0);-ms-transform:matrix(0.179180,0.002688,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.179180,0.002688,-0.003750,0.249972,0,0);}
.m42_c00380{transform:matrix(0.179719,0.003055,-0.004249,0.249964,0,0);-ms-transform:matrix(0.179719,0.003055,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.179719,0.003055,-0.004249,0.249964,0,0);}
.mc1_c00380{transform:matrix(0.179889,0.003598,-0.004999,0.249950,0,0);-ms-transform:matrix(0.179889,0.003598,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.179889,0.003598,-0.004999,0.249950,0,0);}
.m142_c00380{transform:matrix(0.180040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180040,0.000000,0.000000,0.250000,0,0);}
.mbd_c00380{transform:matrix(0.180820,0.002712,-0.003750,0.249972,0,0);-ms-transform:matrix(0.180820,0.002712,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.180820,0.002712,-0.003750,0.249972,0,0);}
.m143_c00380{transform:matrix(0.180975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180975,0.000000,0.000000,0.250000,0,0);}
.m10e_c00380{transform:matrix(0.181037,0.004164,-0.005748,0.249934,0,0);-ms-transform:matrix(0.181037,0.004164,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.181037,0.004164,-0.005748,0.249934,0,0);}
.m119_c00380{transform:matrix(0.181502,0.004175,-0.005748,0.249934,0,0);-ms-transform:matrix(0.181502,0.004175,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.181502,0.004175,-0.005748,0.249934,0,0);}
.m4f_c00380{transform:matrix(0.181805,0.002727,-0.003750,0.249972,0,0);-ms-transform:matrix(0.181805,0.002727,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.181805,0.002727,-0.003750,0.249972,0,0);}
.m147_c00380{transform:matrix(0.181885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181885,0.000000,0.000000,0.250000,0,0);}
.m114_c00380{transform:matrix(0.182092,0.004188,-0.005748,0.249934,0,0);-ms-transform:matrix(0.182092,0.004188,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.182092,0.004188,-0.005748,0.249934,0,0);}
.ma5_c00380{transform:matrix(0.182449,0.002737,-0.003750,0.249972,0,0);-ms-transform:matrix(0.182449,0.002737,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.182449,0.002737,-0.003750,0.249972,0,0);}
.m3f_c00380{transform:matrix(0.183334,0.003117,-0.004249,0.249964,0,0);-ms-transform:matrix(0.183334,0.003117,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.183334,0.003117,-0.004249,0.249964,0,0);}
.m16_c00380{transform:matrix(0.183401,0.001834,-0.002500,0.249988,0,0);-ms-transform:matrix(0.183401,0.001834,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.183401,0.001834,-0.002500,0.249988,0,0);}
.m120_c00380{transform:matrix(0.184066,0.004234,-0.005748,0.249934,0,0);-ms-transform:matrix(0.184066,0.004234,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.184066,0.004234,-0.005748,0.249934,0,0);}
.m10d_c00380{transform:matrix(0.185176,0.004259,-0.005748,0.249934,0,0);-ms-transform:matrix(0.185176,0.004259,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.185176,0.004259,-0.005748,0.249934,0,0);}
.m40_c00380{transform:matrix(0.185803,0.003159,-0.004249,0.249964,0,0);-ms-transform:matrix(0.185803,0.003159,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.185803,0.003159,-0.004249,0.249964,0,0);}
.m117_c00380{transform:matrix(0.187136,0.004304,-0.005748,0.249934,0,0);-ms-transform:matrix(0.187136,0.004304,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.187136,0.004304,-0.005748,0.249934,0,0);}
.m18_c00380{transform:matrix(0.187481,0.001875,-0.002500,0.249988,0,0);-ms-transform:matrix(0.187481,0.001875,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.187481,0.001875,-0.002500,0.249988,0,0);}
.mca_c00380{transform:matrix(0.188622,0.003772,-0.004999,0.249950,0,0);-ms-transform:matrix(0.188622,0.003772,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.188622,0.003772,-0.004999,0.249950,0,0);}
.m45_c00380{transform:matrix(0.188878,0.003211,-0.004249,0.249964,0,0);-ms-transform:matrix(0.188878,0.003211,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.188878,0.003211,-0.004249,0.249964,0,0);}
.m115_c00380{transform:matrix(0.189395,0.004356,-0.005748,0.249934,0,0);-ms-transform:matrix(0.189395,0.004356,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.189395,0.004356,-0.005748,0.249934,0,0);}
.m2e_c00380{transform:matrix(0.189578,0.003223,-0.004249,0.249964,0,0);-ms-transform:matrix(0.189578,0.003223,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.189578,0.003223,-0.004249,0.249964,0,0);}
.m111_c00380{transform:matrix(0.192549,0.004429,-0.005748,0.249934,0,0);-ms-transform:matrix(0.192549,0.004429,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.192549,0.004429,-0.005748,0.249934,0,0);}
.m53_c00380{transform:matrix(0.193558,0.002903,-0.003750,0.249972,0,0);-ms-transform:matrix(0.193558,0.002903,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.193558,0.002903,-0.003750,0.249972,0,0);}
.m19_c00380{transform:matrix(0.194190,0.001942,-0.002500,0.249988,0,0);-ms-transform:matrix(0.194190,0.001942,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.194190,0.001942,-0.002500,0.249988,0,0);}
.mfb_c00380{transform:matrix(0.194319,0.003498,-0.004499,0.249960,0,0);-ms-transform:matrix(0.194319,0.003498,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.194319,0.003498,-0.004499,0.249960,0,0);}
.m2a_c00380{transform:matrix(0.194322,0.003303,-0.004249,0.249964,0,0);-ms-transform:matrix(0.194322,0.003303,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.194322,0.003303,-0.004249,0.249964,0,0);}
.m1a_c00380{transform:matrix(0.194990,0.001950,-0.002500,0.249988,0,0);-ms-transform:matrix(0.194990,0.001950,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.194990,0.001950,-0.002500,0.249988,0,0);}
.m107_c00380{transform:matrix(0.194993,0.004485,-0.005748,0.249934,0,0);-ms-transform:matrix(0.194993,0.004485,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.194993,0.004485,-0.005748,0.249934,0,0);}
.mab_c00380{transform:matrix(0.195383,0.002931,-0.003750,0.249972,0,0);-ms-transform:matrix(0.195383,0.002931,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.195383,0.002931,-0.003750,0.249972,0,0);}
.m3_c00380{transform:matrix(0.195495,0.001955,-0.002500,0.249988,0,0);-ms-transform:matrix(0.195495,0.001955,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.195495,0.001955,-0.002500,0.249988,0,0);}
.m1f_c00380{transform:matrix(0.195570,0.001956,-0.002500,0.249988,0,0);-ms-transform:matrix(0.195570,0.001956,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.195570,0.001956,-0.002500,0.249988,0,0);}
.m55_c00380{transform:matrix(0.196103,0.002942,-0.003750,0.249972,0,0);-ms-transform:matrix(0.196103,0.002942,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.196103,0.002942,-0.003750,0.249972,0,0);}
.m43_c00380{transform:matrix(0.196927,0.003348,-0.004249,0.249964,0,0);-ms-transform:matrix(0.196927,0.003348,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.196927,0.003348,-0.004249,0.249964,0,0);}
.mc7_c00380{transform:matrix(0.197291,0.003946,-0.004999,0.249950,0,0);-ms-transform:matrix(0.197291,0.003946,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.197291,0.003946,-0.004999,0.249950,0,0);}
.m13_c00380{transform:matrix(0.197320,0.001973,-0.002500,0.249988,0,0);-ms-transform:matrix(0.197320,0.001973,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.197320,0.001973,-0.002500,0.249988,0,0);}
.m0_c00380{transform:matrix(0.197615,0.001976,-0.002500,0.249988,0,0);-ms-transform:matrix(0.197615,0.001976,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.197615,0.001976,-0.002500,0.249988,0,0);}
.m109_c00380{transform:matrix(0.198493,0.004565,-0.005748,0.249934,0,0);-ms-transform:matrix(0.198493,0.004565,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.198493,0.004565,-0.005748,0.249934,0,0);}
.mc5_c00380{transform:matrix(0.198505,0.003970,-0.004999,0.249950,0,0);-ms-transform:matrix(0.198505,0.003970,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.198505,0.003970,-0.004999,0.249950,0,0);}
.m139_c00380{transform:matrix(0.198980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198980,0.000000,0.000000,0.250000,0,0);}
.md2_c00380{transform:matrix(0.199060,0.003981,-0.004999,0.249950,0,0);-ms-transform:matrix(0.199060,0.003981,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.199060,0.003981,-0.004999,0.249950,0,0);}
.m77_c00380{transform:matrix(0.199258,0.002989,-0.003750,0.249972,0,0);-ms-transform:matrix(0.199258,0.002989,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.199258,0.002989,-0.003750,0.249972,0,0);}
.m1c_c00380{transform:matrix(0.199800,0.001998,-0.002500,0.249988,0,0);-ms-transform:matrix(0.199800,0.001998,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.199800,0.001998,-0.002500,0.249988,0,0);}
.m13c_c00380{transform:matrix(0.199855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199855,0.000000,0.000000,0.250000,0,0);}
.m10f_c00380{transform:matrix(0.200157,0.004604,-0.005748,0.249934,0,0);-ms-transform:matrix(0.200157,0.004604,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.200157,0.004604,-0.005748,0.249934,0,0);}
.m122_c00380{transform:matrix(0.200257,0.004606,-0.005748,0.249934,0,0);-ms-transform:matrix(0.200257,0.004606,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.200257,0.004606,-0.005748,0.249934,0,0);}
.m144_c00380{transform:matrix(0.200760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200760,0.000000,0.000000,0.250000,0,0);}
.m1d_c00380{transform:matrix(0.200990,0.002010,-0.002500,0.249988,0,0);-ms-transform:matrix(0.200990,0.002010,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.200990,0.002010,-0.002500,0.249988,0,0);}
.m105_c00380{transform:matrix(0.201192,0.004627,-0.005748,0.249934,0,0);-ms-transform:matrix(0.201192,0.004627,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.201192,0.004627,-0.005748,0.249934,0,0);}
.m28_c00380{transform:matrix(0.201276,0.003422,-0.004249,0.249964,0,0);-ms-transform:matrix(0.201276,0.003422,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.201276,0.003422,-0.004249,0.249964,0,0);}
.m51_c00380{transform:matrix(0.201282,0.003019,-0.003750,0.249972,0,0);-ms-transform:matrix(0.201282,0.003019,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.201282,0.003019,-0.003750,0.249972,0,0);}
.m102_c00380{transform:matrix(0.202022,0.004646,-0.005748,0.249934,0,0);-ms-transform:matrix(0.202022,0.004646,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.202022,0.004646,-0.005748,0.249934,0,0);}
.m11b_c00380{transform:matrix(0.203236,0.004674,-0.005748,0.249934,0,0);-ms-transform:matrix(0.203236,0.004674,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.203236,0.004674,-0.005748,0.249934,0,0);}
.ma7_c00380{transform:matrix(0.204332,0.003065,-0.003750,0.249972,0,0);-ms-transform:matrix(0.204332,0.003065,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.204332,0.003065,-0.003750,0.249972,0,0);}
.m1b_c00380{transform:matrix(0.204605,0.002046,-0.002500,0.249988,0,0);-ms-transform:matrix(0.204605,0.002046,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.204605,0.002046,-0.002500,0.249988,0,0);}
.m5e_c00380{transform:matrix(0.204687,0.003070,-0.003750,0.249972,0,0);-ms-transform:matrix(0.204687,0.003070,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.204687,0.003070,-0.003750,0.249972,0,0);}
.maa_c00380{transform:matrix(0.205912,0.003089,-0.003750,0.249972,0,0);-ms-transform:matrix(0.205912,0.003089,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.205912,0.003089,-0.003750,0.249972,0,0);}
.m75_c00380{transform:matrix(0.206072,0.003091,-0.003750,0.249972,0,0);-ms-transform:matrix(0.206072,0.003091,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.206072,0.003091,-0.003750,0.249972,0,0);}
.m106_c00380{transform:matrix(0.206215,0.004743,-0.005748,0.249934,0,0);-ms-transform:matrix(0.206215,0.004743,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.206215,0.004743,-0.005748,0.249934,0,0);}
.m25_c00380{transform:matrix(0.206570,0.003512,-0.004249,0.249964,0,0);-ms-transform:matrix(0.206570,0.003512,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.206570,0.003512,-0.004249,0.249964,0,0);}
.m129_c00380{transform:matrix(0.207100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207100,0.000000,0.000000,0.250000,0,0);}
.m1_c00380{transform:matrix(0.207415,0.002074,-0.002500,0.249988,0,0);-ms-transform:matrix(0.207415,0.002074,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.207415,0.002074,-0.002500,0.249988,0,0);}
.m10c_c00380{transform:matrix(0.207980,0.004784,-0.005748,0.249934,0,0);-ms-transform:matrix(0.207980,0.004784,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.207980,0.004784,-0.005748,0.249934,0,0);}
.m7c_c00380{transform:matrix(0.208652,0.003130,-0.003750,0.249972,0,0);-ms-transform:matrix(0.208652,0.003130,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.208652,0.003130,-0.003750,0.249972,0,0);}
.m22_c00380{transform:matrix(0.209010,0.002090,-0.002500,0.249988,0,0);-ms-transform:matrix(0.209010,0.002090,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.209010,0.002090,-0.002500,0.249988,0,0);}
.m11_c00380{transform:matrix(0.209110,0.002091,-0.002500,0.249988,0,0);-ms-transform:matrix(0.209110,0.002091,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.209110,0.002091,-0.002500,0.249988,0,0);}
.m13f_c00380{transform:matrix(0.209255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209255,0.000000,0.000000,0.250000,0,0);}
.mef_c00380{transform:matrix(0.209266,0.003767,-0.004499,0.249960,0,0);-ms-transform:matrix(0.209266,0.003767,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.209266,0.003767,-0.004499,0.249960,0,0);}
.m67_c00380{transform:matrix(0.209471,0.003142,-0.003750,0.249972,0,0);-ms-transform:matrix(0.209471,0.003142,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.209471,0.003142,-0.003750,0.249972,0,0);}
.m145_c00380{transform:matrix(0.209870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209870,0.000000,0.000000,0.250000,0,0);}
.md9_c00380{transform:matrix(0.209893,0.004198,-0.004999,0.249950,0,0);-ms-transform:matrix(0.209893,0.004198,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.209893,0.004198,-0.004999,0.249950,0,0);}
.mcc_c00380{transform:matrix(0.209943,0.004199,-0.004999,0.249950,0,0);-ms-transform:matrix(0.209943,0.004199,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.209943,0.004199,-0.004999,0.249950,0,0);}
.mc3_c00380{transform:matrix(0.210983,0.004220,-0.004999,0.249950,0,0);-ms-transform:matrix(0.210983,0.004220,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.210983,0.004220,-0.004999,0.249950,0,0);}
.mdb_c00380{transform:matrix(0.211173,0.004223,-0.004999,0.249950,0,0);-ms-transform:matrix(0.211173,0.004223,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.211173,0.004223,-0.004999,0.249950,0,0);}
.m7e_c00380{transform:matrix(0.211191,0.003168,-0.003750,0.249972,0,0);-ms-transform:matrix(0.211191,0.003168,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.211191,0.003168,-0.003750,0.249972,0,0);}
.m104_c00380{transform:matrix(0.211604,0.004867,-0.005748,0.249934,0,0);-ms-transform:matrix(0.211604,0.004867,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.211604,0.004867,-0.005748,0.249934,0,0);}
.mf8_c00380{transform:matrix(0.211896,0.003814,-0.004499,0.249960,0,0);-ms-transform:matrix(0.211896,0.003814,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.211896,0.003814,-0.004499,0.249960,0,0);}
.mce_c00380{transform:matrix(0.212108,0.004242,-0.004999,0.249950,0,0);-ms-transform:matrix(0.212108,0.004242,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.212108,0.004242,-0.004999,0.249950,0,0);}
.m135_c00380{transform:matrix(0.212510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212510,0.000000,0.000000,0.250000,0,0);}
.m2d_c00380{transform:matrix(0.212639,0.003615,-0.004249,0.249964,0,0);-ms-transform:matrix(0.212639,0.003615,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.212639,0.003615,-0.004249,0.249964,0,0);}
.md3_c00380{transform:matrix(0.213317,0.004266,-0.004999,0.249950,0,0);-ms-transform:matrix(0.213317,0.004266,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.213317,0.004266,-0.004999,0.249950,0,0);}
.mc0_c00380{transform:matrix(0.213342,0.004267,-0.004999,0.249950,0,0);-ms-transform:matrix(0.213342,0.004267,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.213342,0.004267,-0.004999,0.249950,0,0);}
.m10b_c00380{transform:matrix(0.213554,0.004912,-0.005748,0.249934,0,0);-ms-transform:matrix(0.213554,0.004912,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.213554,0.004912,-0.005748,0.249934,0,0);}
.m13d_c00380{transform:matrix(0.213555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213555,0.000000,0.000000,0.250000,0,0);}
.md8_c00380{transform:matrix(0.214067,0.004281,-0.004999,0.249950,0,0);-ms-transform:matrix(0.214067,0.004281,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.214067,0.004281,-0.004999,0.249950,0,0);}
.m9e_c00380{transform:matrix(0.214086,0.003211,-0.003750,0.249972,0,0);-ms-transform:matrix(0.214086,0.003211,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.214086,0.003211,-0.003750,0.249972,0,0);}
.m7b_c00380{transform:matrix(0.214391,0.003216,-0.003750,0.249972,0,0);-ms-transform:matrix(0.214391,0.003216,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.214391,0.003216,-0.003750,0.249972,0,0);}
.ma6_c00380{transform:matrix(0.214726,0.003221,-0.003750,0.249972,0,0);-ms-transform:matrix(0.214726,0.003221,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.214726,0.003221,-0.003750,0.249972,0,0);}
.m6d_c00380{transform:matrix(0.214906,0.003224,-0.003750,0.249972,0,0);-ms-transform:matrix(0.214906,0.003224,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.214906,0.003224,-0.003750,0.249972,0,0);}
.m14b_c00380{transform:matrix(0.215150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215150,0.000000,0.000000,0.250000,0,0);}
.m82_c00380{transform:matrix(0.215646,0.003235,-0.003750,0.249972,0,0);-ms-transform:matrix(0.215646,0.003235,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.215646,0.003235,-0.003750,0.249972,0,0);}
.m9a_c00380{transform:matrix(0.215691,0.003235,-0.003750,0.249972,0,0);-ms-transform:matrix(0.215691,0.003235,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.215691,0.003235,-0.003750,0.249972,0,0);}
.m9b_c00380{transform:matrix(0.215721,0.003236,-0.003750,0.249972,0,0);-ms-transform:matrix(0.215721,0.003236,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.215721,0.003236,-0.003750,0.249972,0,0);}
.mad_c00380{transform:matrix(0.215856,0.003238,-0.003750,0.249972,0,0);-ms-transform:matrix(0.215856,0.003238,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.215856,0.003238,-0.003750,0.249972,0,0);}
.m56_c00380{transform:matrix(0.216281,0.003244,-0.003750,0.249972,0,0);-ms-transform:matrix(0.216281,0.003244,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.216281,0.003244,-0.003750,0.249972,0,0);}
.m15_c00380{transform:matrix(0.216434,0.002164,-0.002500,0.249988,0,0);-ms-transform:matrix(0.216434,0.002164,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.216434,0.002164,-0.002500,0.249988,0,0);}
.m100_c00380{transform:matrix(0.216483,0.004979,-0.005748,0.249934,0,0);-ms-transform:matrix(0.216483,0.004979,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.216483,0.004979,-0.005748,0.249934,0,0);}
.m7a_c00380{transform:matrix(0.216766,0.003251,-0.003750,0.249972,0,0);-ms-transform:matrix(0.216766,0.003251,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.216766,0.003251,-0.003750,0.249972,0,0);}
.m20_c00380{transform:matrix(0.216819,0.002168,-0.002500,0.249988,0,0);-ms-transform:matrix(0.216819,0.002168,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.216819,0.002168,-0.002500,0.249988,0,0);}
.m7_c00380{transform:matrix(0.216959,0.002170,-0.002500,0.249988,0,0);-ms-transform:matrix(0.216959,0.002170,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.216959,0.002170,-0.002500,0.249988,0,0);}
.m44_c00380{transform:matrix(0.217199,0.003692,-0.004249,0.249964,0,0);-ms-transform:matrix(0.217199,0.003692,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.217199,0.003692,-0.004249,0.249964,0,0);}
.m140_c00380{transform:matrix(0.217295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217295,0.000000,0.000000,0.250000,0,0);}
.m11e_c00380{transform:matrix(0.217522,0.005003,-0.005748,0.249934,0,0);-ms-transform:matrix(0.217522,0.005003,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.217522,0.005003,-0.005748,0.249934,0,0);}
.m123_c00380{transform:matrix(0.217737,0.005008,-0.005748,0.249934,0,0);-ms-transform:matrix(0.217737,0.005008,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.217737,0.005008,-0.005748,0.249934,0,0);}
.mf9_c00380{transform:matrix(0.217895,0.003922,-0.004499,0.249960,0,0);-ms-transform:matrix(0.217895,0.003922,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.217895,0.003922,-0.004499,0.249960,0,0);}
.m3e_c00380{transform:matrix(0.218253,0.003710,-0.004249,0.249964,0,0);-ms-transform:matrix(0.218253,0.003710,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.218253,0.003710,-0.004249,0.249964,0,0);}
.m103_c00380{transform:matrix(0.218277,0.005020,-0.005748,0.249934,0,0);-ms-transform:matrix(0.218277,0.005020,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.218277,0.005020,-0.005748,0.249934,0,0);}
.m52_c00380{transform:matrix(0.218720,0.003281,-0.003750,0.249972,0,0);-ms-transform:matrix(0.218720,0.003281,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.218720,0.003281,-0.003750,0.249972,0,0);}
.m5_c00380{transform:matrix(0.218844,0.002188,-0.002500,0.249988,0,0);-ms-transform:matrix(0.218844,0.002188,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.218844,0.002188,-0.002500,0.249988,0,0);}
.m41_c00380{transform:matrix(0.218963,0.003722,-0.004249,0.249964,0,0);-ms-transform:matrix(0.218963,0.003722,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.218963,0.003722,-0.004249,0.249964,0,0);}
.ma8_c00380{transform:matrix(0.218970,0.003285,-0.003750,0.249972,0,0);-ms-transform:matrix(0.218970,0.003285,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.218970,0.003285,-0.003750,0.249972,0,0);}
.m29_c00380{transform:matrix(0.219318,0.003728,-0.004249,0.249964,0,0);-ms-transform:matrix(0.219318,0.003728,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.219318,0.003728,-0.004249,0.249964,0,0);}
.m2b_c00380{transform:matrix(0.219343,0.003729,-0.004249,0.249964,0,0);-ms-transform:matrix(0.219343,0.003729,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.219343,0.003729,-0.004249,0.249964,0,0);}
.mc6_c00380{transform:matrix(0.219851,0.004397,-0.004999,0.249950,0,0);-ms-transform:matrix(0.219851,0.004397,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.219851,0.004397,-0.004999,0.249950,0,0);}
.m59_c00380{transform:matrix(0.220345,0.003305,-0.003750,0.249972,0,0);-ms-transform:matrix(0.220345,0.003305,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.220345,0.003305,-0.003750,0.249972,0,0);}
.ma9_c00380{transform:matrix(0.220390,0.003306,-0.003750,0.249972,0,0);-ms-transform:matrix(0.220390,0.003306,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.220390,0.003306,-0.003750,0.249972,0,0);}
.m81_c00380{transform:matrix(0.220545,0.003308,-0.003750,0.249972,0,0);-ms-transform:matrix(0.220545,0.003308,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.220545,0.003308,-0.003750,0.249972,0,0);}
.m96_c00380{transform:matrix(0.220805,0.003312,-0.003750,0.249972,0,0);-ms-transform:matrix(0.220805,0.003312,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.220805,0.003312,-0.003750,0.249972,0,0);}
.m101_c00380{transform:matrix(0.220822,0.005079,-0.005748,0.249934,0,0);-ms-transform:matrix(0.220822,0.005079,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.220822,0.005079,-0.005748,0.249934,0,0);}
.m14a_c00380{transform:matrix(0.220830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220830,0.000000,0.000000,0.250000,0,0);}
.m58_c00380{transform:matrix(0.221015,0.003315,-0.003750,0.249972,0,0);-ms-transform:matrix(0.221015,0.003315,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.221015,0.003315,-0.003750,0.249972,0,0);}
.m8e_c00380{transform:matrix(0.221180,0.003318,-0.003750,0.249972,0,0);-ms-transform:matrix(0.221180,0.003318,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.221180,0.003318,-0.003750,0.249972,0,0);}
.md7_c00380{transform:matrix(0.221411,0.004428,-0.004999,0.249950,0,0);-ms-transform:matrix(0.221411,0.004428,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.221411,0.004428,-0.004999,0.249950,0,0);}
.m10a_c00380{transform:matrix(0.222281,0.005112,-0.005748,0.249934,0,0);-ms-transform:matrix(0.222281,0.005112,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.222281,0.005112,-0.005748,0.249934,0,0);}
.md0_c00380{transform:matrix(0.222770,0.004455,-0.004999,0.249950,0,0);-ms-transform:matrix(0.222770,0.004455,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.222770,0.004455,-0.004999,0.249950,0,0);}
.mc8_c00380{transform:matrix(0.223275,0.004466,-0.004999,0.249950,0,0);-ms-transform:matrix(0.223275,0.004466,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.223275,0.004466,-0.004999,0.249950,0,0);}
.mf4_c00380{transform:matrix(0.223279,0.004019,-0.004499,0.249960,0,0);-ms-transform:matrix(0.223279,0.004019,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.223279,0.004019,-0.004499,0.249960,0,0);}
.m2c_c00380{transform:matrix(0.223783,0.003804,-0.004249,0.249964,0,0);-ms-transform:matrix(0.223783,0.003804,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.223783,0.003804,-0.004249,0.249964,0,0);}
.m66_c00380{transform:matrix(0.224045,0.003361,-0.003750,0.249972,0,0);-ms-transform:matrix(0.224045,0.003361,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.224045,0.003361,-0.003750,0.249972,0,0);}
.m108_c00380{transform:matrix(0.224236,0.005157,-0.005748,0.249934,0,0);-ms-transform:matrix(0.224236,0.005157,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.224236,0.005157,-0.005748,0.249934,0,0);}
.m149_c00380{transform:matrix(0.224310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224310,0.000000,0.000000,0.250000,0,0);}
.me0_c00380{transform:matrix(0.224355,0.004487,-0.004999,0.249950,0,0);-ms-transform:matrix(0.224355,0.004487,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.224355,0.004487,-0.004999,0.249950,0,0);}
.mfa_c00380{transform:matrix(0.224364,0.004039,-0.004499,0.249960,0,0);-ms-transform:matrix(0.224364,0.004039,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.224364,0.004039,-0.004499,0.249960,0,0);}
.me3_c00380{transform:matrix(0.224635,0.004493,-0.004999,0.249950,0,0);-ms-transform:matrix(0.224635,0.004493,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.224635,0.004493,-0.004999,0.249950,0,0);}
.m146_c00380{transform:matrix(0.225010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225010,0.000000,0.000000,0.250000,0,0);}
.mac_c00380{transform:matrix(0.225915,0.003389,-0.003750,0.249972,0,0);-ms-transform:matrix(0.225915,0.003389,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.225915,0.003389,-0.003750,0.249972,0,0);}
.m14c_c00380{transform:matrix(0.225940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225940,0.000000,0.000000,0.250000,0,0);}
.m4e_c00380{transform:matrix(0.226180,0.003393,-0.003750,0.249972,0,0);-ms-transform:matrix(0.226180,0.003393,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.226180,0.003393,-0.003750,0.249972,0,0);}
.m118_c00380{transform:matrix(0.226275,0.005204,-0.005748,0.249934,0,0);-ms-transform:matrix(0.226275,0.005204,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.226275,0.005204,-0.005748,0.249934,0,0);}
.m34_c00380{transform:matrix(0.226712,0.003854,-0.004249,0.249964,0,0);-ms-transform:matrix(0.226712,0.003854,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.226712,0.003854,-0.004249,0.249964,0,0);}
.m80_c00380{transform:matrix(0.227239,0.003409,-0.003750,0.249972,0,0);-ms-transform:matrix(0.227239,0.003409,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.227239,0.003409,-0.003750,0.249972,0,0);}
.m13a_c00380{transform:matrix(0.227465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227465,0.000000,0.000000,0.250000,0,0);}
.m138_c00380{transform:matrix(0.227470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227470,0.000000,0.000000,0.250000,0,0);}
.mc4_c00380{transform:matrix(0.227624,0.004552,-0.004999,0.249950,0,0);-ms-transform:matrix(0.227624,0.004552,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.227624,0.004552,-0.004999,0.249950,0,0);}
.m62_c00380{transform:matrix(0.228064,0.003421,-0.003750,0.249972,0,0);-ms-transform:matrix(0.228064,0.003421,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.228064,0.003421,-0.003750,0.249972,0,0);}
.m38_c00380{transform:matrix(0.228072,0.003877,-0.004249,0.249964,0,0);-ms-transform:matrix(0.228072,0.003877,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.228072,0.003877,-0.004249,0.249964,0,0);}
.m11f_c00380{transform:matrix(0.228705,0.005260,-0.005748,0.249934,0,0);-ms-transform:matrix(0.228705,0.005260,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.228705,0.005260,-0.005748,0.249934,0,0);}
.m11a_c00380{transform:matrix(0.228760,0.005261,-0.005748,0.249934,0,0);-ms-transform:matrix(0.228760,0.005261,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.228760,0.005261,-0.005748,0.249934,0,0);}
.m37_c00380{transform:matrix(0.228782,0.003889,-0.004249,0.249964,0,0);-ms-transform:matrix(0.228782,0.003889,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.228782,0.003889,-0.004249,0.249964,0,0);}
.m70_c00380{transform:matrix(0.228789,0.003432,-0.003750,0.249972,0,0);-ms-transform:matrix(0.228789,0.003432,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.228789,0.003432,-0.003750,0.249972,0,0);}
.m93_c00380{transform:matrix(0.229499,0.003442,-0.003750,0.249972,0,0);-ms-transform:matrix(0.229499,0.003442,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.229499,0.003442,-0.003750,0.249972,0,0);}
.m121_c00380{transform:matrix(0.229829,0.005286,-0.005748,0.249934,0,0);-ms-transform:matrix(0.229829,0.005286,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.229829,0.005286,-0.005748,0.249934,0,0);}
.med_c00380{transform:matrix(0.230169,0.004603,-0.004999,0.249950,0,0);-ms-transform:matrix(0.230169,0.004603,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.230169,0.004603,-0.004999,0.249950,0,0);}
.mc2_c00380{transform:matrix(0.230189,0.004604,-0.004999,0.249950,0,0);-ms-transform:matrix(0.230189,0.004604,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.230189,0.004604,-0.004999,0.249950,0,0);}
.mfd_c00380{transform:matrix(0.230288,0.004145,-0.004499,0.249960,0,0);-ms-transform:matrix(0.230288,0.004145,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.230288,0.004145,-0.004499,0.249960,0,0);}
.m132_c00380{transform:matrix(0.230330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230330,0.000000,0.000000,0.250000,0,0);}
.m137_c00380{transform:matrix(0.230385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230385,0.000000,0.000000,0.250000,0,0);}
.m9_c00380{transform:matrix(0.230528,0.002305,-0.002500,0.249988,0,0);-ms-transform:matrix(0.230528,0.002305,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.230528,0.002305,-0.002500,0.249988,0,0);}
.m6_c00380{transform:matrix(0.230793,0.002308,-0.002500,0.249988,0,0);-ms-transform:matrix(0.230793,0.002308,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.230793,0.002308,-0.002500,0.249988,0,0);}
.m49_c00380{transform:matrix(0.230869,0.003463,-0.003750,0.249972,0,0);-ms-transform:matrix(0.230869,0.003463,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.230869,0.003463,-0.003750,0.249972,0,0);}
.m79_c00380{transform:matrix(0.230889,0.003463,-0.003750,0.249972,0,0);-ms-transform:matrix(0.230889,0.003463,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.230889,0.003463,-0.003750,0.249972,0,0);}
.m27_c00380{transform:matrix(0.231317,0.003932,-0.004249,0.249964,0,0);-ms-transform:matrix(0.231317,0.003932,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.231317,0.003932,-0.004249,0.249964,0,0);}
.m113_c00380{transform:matrix(0.231414,0.005323,-0.005748,0.249934,0,0);-ms-transform:matrix(0.231414,0.005323,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.231414,0.005323,-0.005748,0.249934,0,0);}
.m12b_c00380{transform:matrix(0.231505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231505,0.000000,0.000000,0.250000,0,0);}
.mfe_c00380{transform:matrix(0.231792,0.004172,-0.004499,0.249960,0,0);-ms-transform:matrix(0.231792,0.004172,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.231792,0.004172,-0.004499,0.249960,0,0);}
.ma0_c00380{transform:matrix(0.231819,0.003477,-0.003750,0.249972,0,0);-ms-transform:matrix(0.231819,0.003477,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.231819,0.003477,-0.003750,0.249972,0,0);}
.m60_c00380{transform:matrix(0.232529,0.003488,-0.003750,0.249972,0,0);-ms-transform:matrix(0.232529,0.003488,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.232529,0.003488,-0.003750,0.249972,0,0);}
.md1_c00380{transform:matrix(0.232758,0.004655,-0.004999,0.249950,0,0);-ms-transform:matrix(0.232758,0.004655,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.232758,0.004655,-0.004999,0.249950,0,0);}
.m4_c00380{transform:matrix(0.233083,0.002331,-0.002500,0.249988,0,0);-ms-transform:matrix(0.233083,0.002331,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.233083,0.002331,-0.002500,0.249988,0,0);}
.m63_c00380{transform:matrix(0.233589,0.003504,-0.003750,0.249972,0,0);-ms-transform:matrix(0.233589,0.003504,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.233589,0.003504,-0.003750,0.249972,0,0);}
.m97_c00380{transform:matrix(0.233749,0.003506,-0.003750,0.249972,0,0);-ms-transform:matrix(0.233749,0.003506,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.233749,0.003506,-0.003750,0.249972,0,0);}
.m11d_c00380{transform:matrix(0.234048,0.005383,-0.005748,0.249934,0,0);-ms-transform:matrix(0.234048,0.005383,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.234048,0.005383,-0.005748,0.249934,0,0);}
.m87_c00380{transform:matrix(0.234334,0.003515,-0.003750,0.249972,0,0);-ms-transform:matrix(0.234334,0.003515,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.234334,0.003515,-0.003750,0.249972,0,0);}
.m26_c00380{transform:matrix(0.234341,0.003984,-0.004249,0.249964,0,0);-ms-transform:matrix(0.234341,0.003984,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.234341,0.003984,-0.004249,0.249964,0,0);}
.m8d_c00380{transform:matrix(0.234349,0.003515,-0.003750,0.249972,0,0);-ms-transform:matrix(0.234349,0.003515,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.234349,0.003515,-0.003750,0.249972,0,0);}
.m54_c00380{transform:matrix(0.234364,0.003515,-0.003750,0.249972,0,0);-ms-transform:matrix(0.234364,0.003515,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.234364,0.003515,-0.003750,0.249972,0,0);}
.mcd_c00380{transform:matrix(0.234498,0.004690,-0.004999,0.249950,0,0);-ms-transform:matrix(0.234498,0.004690,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.234498,0.004690,-0.004999,0.249950,0,0);}
.m8_c00380{transform:matrix(0.234513,0.002345,-0.002500,0.249988,0,0);-ms-transform:matrix(0.234513,0.002345,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.234513,0.002345,-0.002500,0.249988,0,0);}
.mfc_c00380{transform:matrix(0.235187,0.004233,-0.004499,0.249960,0,0);-ms-transform:matrix(0.235187,0.004233,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.235187,0.004233,-0.004499,0.249960,0,0);}
.md5_c00380{transform:matrix(0.235258,0.004705,-0.004999,0.249950,0,0);-ms-transform:matrix(0.235258,0.004705,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.235258,0.004705,-0.004999,0.249950,0,0);}
.maf_c00380{transform:matrix(0.236103,0.003542,-0.003750,0.249972,0,0);-ms-transform:matrix(0.236103,0.003542,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.236103,0.003542,-0.003750,0.249972,0,0);}
.m17_c00380{transform:matrix(0.236578,0.002366,-0.002500,0.249988,0,0);-ms-transform:matrix(0.236578,0.002366,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.236578,0.002366,-0.002500,0.249988,0,0);}
.m150_c00380{transform:matrix(0.236585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236585,0.000000,0.000000,0.250000,0,0);}
.m11c_c00380{transform:matrix(0.236837,0.005447,-0.005748,0.249934,0,0);-ms-transform:matrix(0.236837,0.005447,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.236837,0.005447,-0.005748,0.249934,0,0);}
.ma2_c00380{transform:matrix(0.237143,0.003557,-0.003750,0.249972,0,0);-ms-transform:matrix(0.237143,0.003557,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.237143,0.003557,-0.003750,0.249972,0,0);}
.m57_c00380{transform:matrix(0.237298,0.003559,-0.003750,0.249972,0,0);-ms-transform:matrix(0.237298,0.003559,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.237298,0.003559,-0.003750,0.249972,0,0);}
.m2f_c00380{transform:matrix(0.237451,0.004037,-0.004249,0.249964,0,0);-ms-transform:matrix(0.237451,0.004037,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.237451,0.004037,-0.004249,0.249964,0,0);}
.m7d_c00380{transform:matrix(0.238193,0.003573,-0.003750,0.249972,0,0);-ms-transform:matrix(0.238193,0.003573,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.238193,0.003573,-0.003750,0.249972,0,0);}
.mcf_c00380{transform:matrix(0.238332,0.004767,-0.004999,0.249950,0,0);-ms-transform:matrix(0.238332,0.004767,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.238332,0.004767,-0.004999,0.249950,0,0);}
.mee_c00380{transform:matrix(0.238851,0.004299,-0.004499,0.249960,0,0);-ms-transform:matrix(0.238851,0.004299,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.238851,0.004299,-0.004499,0.249960,0,0);}
.m2_c00380{transform:matrix(0.238908,0.002389,-0.002500,0.249988,0,0);-ms-transform:matrix(0.238908,0.002389,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.238908,0.002389,-0.002500,0.249988,0,0);}
.m98_c00380{transform:matrix(0.238918,0.003584,-0.003750,0.249972,0,0);-ms-transform:matrix(0.238918,0.003584,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.238918,0.003584,-0.003750,0.249972,0,0);}
.m83_c00380{transform:matrix(0.239203,0.003588,-0.003750,0.249972,0,0);-ms-transform:matrix(0.239203,0.003588,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.239203,0.003588,-0.003750,0.249972,0,0);}
.m14f_c00380{transform:matrix(0.239255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239255,0.000000,0.000000,0.250000,0,0);}
.m91_c00380{transform:matrix(0.239538,0.003593,-0.003750,0.249972,0,0);-ms-transform:matrix(0.239538,0.003593,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.239538,0.003593,-0.003750,0.249972,0,0);}
.mf0_c00380{transform:matrix(0.239851,0.004317,-0.004499,0.249960,0,0);-ms-transform:matrix(0.239851,0.004317,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.239851,0.004317,-0.004499,0.249960,0,0);}
.m31_c00380{transform:matrix(0.239875,0.004078,-0.004249,0.249964,0,0);-ms-transform:matrix(0.239875,0.004078,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.239875,0.004078,-0.004249,0.249964,0,0);}
.m13b_c00380{transform:matrix(0.240125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240125,0.000000,0.000000,0.250000,0,0);}
.m7f_c00380{transform:matrix(0.240648,0.003610,-0.003750,0.249972,0,0);-ms-transform:matrix(0.240648,0.003610,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.240648,0.003610,-0.003750,0.249972,0,0);}
.m50_c00380{transform:matrix(0.240998,0.003615,-0.003750,0.249972,0,0);-ms-transform:matrix(0.240998,0.003615,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.240998,0.003615,-0.003750,0.249972,0,0);}
.mcb_c00380{transform:matrix(0.241472,0.004829,-0.004999,0.249950,0,0);-ms-transform:matrix(0.241472,0.004829,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.241472,0.004829,-0.004999,0.249950,0,0);}
.mb0_c00380{transform:matrix(0.241753,0.003626,-0.003750,0.249972,0,0);-ms-transform:matrix(0.241753,0.003626,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.241753,0.003626,-0.003750,0.249972,0,0);}
.md4_c00380{transform:matrix(0.242422,0.004848,-0.004999,0.249950,0,0);-ms-transform:matrix(0.242422,0.004848,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.242422,0.004848,-0.004999,0.249950,0,0);}
.meb_c00380{transform:matrix(0.242606,0.004852,-0.004999,0.249950,0,0);-ms-transform:matrix(0.242606,0.004852,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.242606,0.004852,-0.004999,0.249950,0,0);}
.me9_c00380{transform:matrix(0.242791,0.004856,-0.004999,0.249950,0,0);-ms-transform:matrix(0.242791,0.004856,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.242791,0.004856,-0.004999,0.249950,0,0);}
.mc9_c00380{transform:matrix(0.242816,0.004856,-0.004999,0.249950,0,0);-ms-transform:matrix(0.242816,0.004856,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.242816,0.004856,-0.004999,0.249950,0,0);}
.mf2_c00380{transform:matrix(0.243011,0.004374,-0.004499,0.249960,0,0);-ms-transform:matrix(0.243011,0.004374,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.243011,0.004374,-0.004499,0.249960,0,0);}
.m12c_c00380{transform:matrix(0.243630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243630,0.000000,0.000000,0.250000,0,0);}
.mf7_c00380{transform:matrix(0.243846,0.004389,-0.004499,0.249960,0,0);-ms-transform:matrix(0.243846,0.004389,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.243846,0.004389,-0.004499,0.249960,0,0);}
.md6_c00380{transform:matrix(0.244016,0.004880,-0.004999,0.249950,0,0);-ms-transform:matrix(0.244016,0.004880,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.244016,0.004880,-0.004999,0.249950,0,0);}
.m3c_c00380{transform:matrix(0.244040,0.004149,-0.004249,0.249964,0,0);-ms-transform:matrix(0.244040,0.004149,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.244040,0.004149,-0.004249,0.249964,0,0);}
.ma1_c00380{transform:matrix(0.244063,0.003661,-0.003750,0.249972,0,0);-ms-transform:matrix(0.244063,0.003661,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.244063,0.003661,-0.003750,0.249972,0,0);}
.m4a_c00380{transform:matrix(0.244068,0.003661,-0.003750,0.249972,0,0);-ms-transform:matrix(0.244068,0.003661,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.244068,0.003661,-0.003750,0.249972,0,0);}
.m46_c00380{transform:matrix(0.244448,0.003667,-0.003750,0.249972,0,0);-ms-transform:matrix(0.244448,0.003667,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.244448,0.003667,-0.003750,0.249972,0,0);}
.m73_c00380{transform:matrix(0.244997,0.003675,-0.003750,0.249972,0,0);-ms-transform:matrix(0.244997,0.003675,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.244997,0.003675,-0.003750,0.249972,0,0);}
.m134_c00380{transform:matrix(0.245185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245185,0.000000,0.000000,0.250000,0,0);}
.mb4_c00380{transform:matrix(0.245452,0.003682,-0.003750,0.249972,0,0);-ms-transform:matrix(0.245452,0.003682,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.245452,0.003682,-0.003750,0.249972,0,0);}
.m68_c00380{transform:matrix(0.245942,0.003689,-0.003750,0.249972,0,0);-ms-transform:matrix(0.245942,0.003689,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.245942,0.003689,-0.003750,0.249972,0,0);}
.m12d_c00380{transform:matrix(0.245975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245975,0.000000,0.000000,0.250000,0,0);}
.mde_c00380{transform:matrix(0.246251,0.004925,-0.004999,0.249950,0,0);-ms-transform:matrix(0.246251,0.004925,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.246251,0.004925,-0.004999,0.249950,0,0);}
.mdf_c00380{transform:matrix(0.246581,0.004932,-0.004999,0.249950,0,0);-ms-transform:matrix(0.246581,0.004932,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.246581,0.004932,-0.004999,0.249950,0,0);}
.m99_c00380{transform:matrix(0.246667,0.003700,-0.003750,0.249972,0,0);-ms-transform:matrix(0.246667,0.003700,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.246667,0.003700,-0.003750,0.249972,0,0);}
.m6b_c00380{transform:matrix(0.247127,0.003707,-0.003750,0.249972,0,0);-ms-transform:matrix(0.247127,0.003707,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.247127,0.003707,-0.003750,0.249972,0,0);}
.m36_c00380{transform:matrix(0.247264,0.004203,-0.004249,0.249964,0,0);-ms-transform:matrix(0.247264,0.004203,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.247264,0.004203,-0.004249,0.249964,0,0);}
.mf3_c00380{transform:matrix(0.247760,0.004460,-0.004499,0.249960,0,0);-ms-transform:matrix(0.247760,0.004460,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.247760,0.004460,-0.004499,0.249960,0,0);}
.m14e_c00380{transform:matrix(0.248170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248170,0.000000,0.000000,0.250000,0,0);}
.mc_c00380{transform:matrix(0.248433,0.002484,-0.002500,0.249988,0,0);-ms-transform:matrix(0.248433,0.002484,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.248433,0.002484,-0.002500,0.249988,0,0);}
.m9c_c00380{transform:matrix(0.248527,0.003728,-0.003750,0.249972,0,0);-ms-transform:matrix(0.248527,0.003728,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.248527,0.003728,-0.003750,0.249972,0,0);}
.m74_c00380{transform:matrix(0.248977,0.003735,-0.003750,0.249972,0,0);-ms-transform:matrix(0.248977,0.003735,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.248977,0.003735,-0.003750,0.249972,0,0);}
.mf5_c00380{transform:matrix(0.249910,0.004498,-0.004499,0.249960,0,0);-ms-transform:matrix(0.249910,0.004498,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.249910,0.004498,-0.004499,0.249960,0,0);}
.mf6_c00380{transform:matrix(0.250519,0.004509,-0.004499,0.249960,0,0);-ms-transform:matrix(0.250519,0.004509,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.250519,0.004509,-0.004499,0.249960,0,0);}
.m76_c00380{transform:matrix(0.250677,0.003760,-0.003750,0.249972,0,0);-ms-transform:matrix(0.250677,0.003760,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.250677,0.003760,-0.003750,0.249972,0,0);}
.m95_c00380{transform:matrix(0.250902,0.003764,-0.003750,0.249972,0,0);-ms-transform:matrix(0.250902,0.003764,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.250902,0.003764,-0.003750,0.249972,0,0);}
.mda_c00380{transform:matrix(0.251470,0.005029,-0.004999,0.249950,0,0);-ms-transform:matrix(0.251470,0.005029,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.251470,0.005029,-0.004999,0.249950,0,0);}
.m5a_c00380{transform:matrix(0.251607,0.003774,-0.003750,0.249972,0,0);-ms-transform:matrix(0.251607,0.003774,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.251607,0.003774,-0.003750,0.249972,0,0);}
.m6e_c00380{transform:matrix(0.251867,0.003778,-0.003750,0.249972,0,0);-ms-transform:matrix(0.251867,0.003778,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.251867,0.003778,-0.003750,0.249972,0,0);}
.mec_c00380{transform:matrix(0.251870,0.005037,-0.004999,0.249950,0,0);-ms-transform:matrix(0.251870,0.005037,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.251870,0.005037,-0.004999,0.249950,0,0);}
.m64_c00380{transform:matrix(0.253102,0.003797,-0.003750,0.249972,0,0);-ms-transform:matrix(0.253102,0.003797,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.253102,0.003797,-0.003750,0.249972,0,0);}
.m133_c00380{transform:matrix(0.253175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253175,0.000000,0.000000,0.250000,0,0);}
.m9d_c00380{transform:matrix(0.253451,0.003802,-0.003750,0.249972,0,0);-ms-transform:matrix(0.253451,0.003802,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.253451,0.003802,-0.003750,0.249972,0,0);}
.mff_c00380{transform:matrix(0.254508,0.005854,-0.005748,0.249934,0,0);-ms-transform:matrix(0.254508,0.005854,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.254508,0.005854,-0.005748,0.249934,0,0);}
.me6_c00380{transform:matrix(0.255389,0.005108,-0.004999,0.249950,0,0);-ms-transform:matrix(0.255389,0.005108,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.255389,0.005108,-0.004999,0.249950,0,0);}
.m6a_c00380{transform:matrix(0.255411,0.003831,-0.003750,0.249972,0,0);-ms-transform:matrix(0.255411,0.003831,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.255411,0.003831,-0.003750,0.249972,0,0);}
.mb_c00380{transform:matrix(0.255567,0.002556,-0.002500,0.249988,0,0);-ms-transform:matrix(0.255567,0.002556,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.255567,0.002556,-0.002500,0.249988,0,0);}
.m5c_c00380{transform:matrix(0.255716,0.003836,-0.003750,0.249972,0,0);-ms-transform:matrix(0.255716,0.003836,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.255716,0.003836,-0.003750,0.249972,0,0);}
.mdc_c00380{transform:matrix(0.256404,0.005128,-0.004999,0.249950,0,0);-ms-transform:matrix(0.256404,0.005128,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.256404,0.005128,-0.004999,0.249950,0,0);}
.me2_c00380{transform:matrix(0.256799,0.005136,-0.004999,0.249950,0,0);-ms-transform:matrix(0.256799,0.005136,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.256799,0.005136,-0.004999,0.249950,0,0);}
.m8f_c00380{transform:matrix(0.256946,0.003854,-0.003750,0.249972,0,0);-ms-transform:matrix(0.256946,0.003854,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.256946,0.003854,-0.003750,0.249972,0,0);}
.m12e_c00380{transform:matrix(0.257450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257450,0.000000,0.000000,0.250000,0,0);}
.m4d_c00380{transform:matrix(0.257716,0.003866,-0.003750,0.249972,0,0);-ms-transform:matrix(0.257716,0.003866,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.257716,0.003866,-0.003750,0.249972,0,0);}
.mea_c00380{transform:matrix(0.258263,0.005165,-0.004999,0.249950,0,0);-ms-transform:matrix(0.258263,0.005165,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.258263,0.005165,-0.004999,0.249950,0,0);}
.m3b_c00380{transform:matrix(0.258508,0.004395,-0.004249,0.249964,0,0);-ms-transform:matrix(0.258508,0.004395,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.258508,0.004395,-0.004249,0.249964,0,0);}
.m8c_c00380{transform:matrix(0.258771,0.003882,-0.003750,0.249972,0,0);-ms-transform:matrix(0.258771,0.003882,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.258771,0.003882,-0.003750,0.249972,0,0);}
.mdd_c00380{transform:matrix(0.259058,0.005181,-0.004999,0.249950,0,0);-ms-transform:matrix(0.259058,0.005181,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.259058,0.005181,-0.004999,0.249950,0,0);}
.me1_c00380{transform:matrix(0.259643,0.005193,-0.004999,0.249950,0,0);-ms-transform:matrix(0.259643,0.005193,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.259643,0.005193,-0.004999,0.249950,0,0);}
.m94_c00380{transform:matrix(0.259811,0.003897,-0.003750,0.249972,0,0);-ms-transform:matrix(0.259811,0.003897,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.259811,0.003897,-0.003750,0.249972,0,0);}
.m90_c00380{transform:matrix(0.260021,0.003900,-0.003750,0.249972,0,0);-ms-transform:matrix(0.260021,0.003900,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.260021,0.003900,-0.003750,0.249972,0,0);}
.m65_c00380{transform:matrix(0.260091,0.003901,-0.003750,0.249972,0,0);-ms-transform:matrix(0.260091,0.003901,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.260091,0.003901,-0.003750,0.249972,0,0);}
.m10_c00380{transform:matrix(0.260107,0.002601,-0.002500,0.249988,0,0);-ms-transform:matrix(0.260107,0.002601,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.260107,0.002601,-0.002500,0.249988,0,0);}
.m33_c00380{transform:matrix(0.260377,0.004426,-0.004249,0.249964,0,0);-ms-transform:matrix(0.260377,0.004426,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.260377,0.004426,-0.004249,0.249964,0,0);}
.m78_c00380{transform:matrix(0.260896,0.003913,-0.003750,0.249972,0,0);-ms-transform:matrix(0.260896,0.003913,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.260896,0.003913,-0.003750,0.249972,0,0);}
.m92_c00380{transform:matrix(0.261216,0.003918,-0.003750,0.249972,0,0);-ms-transform:matrix(0.261216,0.003918,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.261216,0.003918,-0.003750,0.249972,0,0);}
.m30_c00380{transform:matrix(0.261552,0.004446,-0.004249,0.249964,0,0);-ms-transform:matrix(0.261552,0.004446,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.261552,0.004446,-0.004249,0.249964,0,0);}
.m5f_c00380{transform:matrix(0.261606,0.003924,-0.003750,0.249972,0,0);-ms-transform:matrix(0.261606,0.003924,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.261606,0.003924,-0.003750,0.249972,0,0);}
.m12_c00380{transform:matrix(0.261622,0.002616,-0.002500,0.249988,0,0);-ms-transform:matrix(0.261622,0.002616,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.261622,0.002616,-0.002500,0.249988,0,0);}
.mb2_c00380{transform:matrix(0.264140,0.003962,-0.003750,0.249972,0,0);-ms-transform:matrix(0.264140,0.003962,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.264140,0.003962,-0.003750,0.249972,0,0);}
.mf_c00380{transform:matrix(0.264532,0.002645,-0.002500,0.249988,0,0);-ms-transform:matrix(0.264532,0.002645,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.264532,0.002645,-0.002500,0.249988,0,0);}
.m35_c00380{transform:matrix(0.264577,0.004498,-0.004249,0.249964,0,0);-ms-transform:matrix(0.264577,0.004498,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.264577,0.004498,-0.004249,0.249964,0,0);}
.m8b_c00380{transform:matrix(0.264670,0.003970,-0.003750,0.249972,0,0);-ms-transform:matrix(0.264670,0.003970,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.264670,0.003970,-0.003750,0.249972,0,0);}
.m69_c00380{transform:matrix(0.265175,0.003978,-0.003750,0.249972,0,0);-ms-transform:matrix(0.265175,0.003978,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.265175,0.003978,-0.003750,0.249972,0,0);}
.m48_c00380{transform:matrix(0.266450,0.003997,-0.003750,0.249972,0,0);-ms-transform:matrix(0.266450,0.003997,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.266450,0.003997,-0.003750,0.249972,0,0);}
.m3a_c00380{transform:matrix(0.266671,0.004533,-0.004249,0.249964,0,0);-ms-transform:matrix(0.266671,0.004533,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.266671,0.004533,-0.004249,0.249964,0,0);}
.m72_c00380{transform:matrix(0.266850,0.004003,-0.003750,0.249972,0,0);-ms-transform:matrix(0.266850,0.004003,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.266850,0.004003,-0.003750,0.249972,0,0);}
.me4_c00380{transform:matrix(0.267701,0.005354,-0.004999,0.249950,0,0);-ms-transform:matrix(0.267701,0.005354,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.267701,0.005354,-0.004999,0.249950,0,0);}
.m6f_c00380{transform:matrix(0.268095,0.004021,-0.003750,0.249972,0,0);-ms-transform:matrix(0.268095,0.004021,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.268095,0.004021,-0.003750,0.249972,0,0);}
.m6c_c00380{transform:matrix(0.268315,0.004025,-0.003750,0.249972,0,0);-ms-transform:matrix(0.268315,0.004025,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.268315,0.004025,-0.003750,0.249972,0,0);}
.m5b_c00380{transform:matrix(0.268540,0.004028,-0.003750,0.249972,0,0);-ms-transform:matrix(0.268540,0.004028,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.268540,0.004028,-0.003750,0.249972,0,0);}
.m32_c00380{transform:matrix(0.269546,0.004582,-0.004249,0.249964,0,0);-ms-transform:matrix(0.269546,0.004582,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.269546,0.004582,-0.004249,0.249964,0,0);}
.m71_c00380{transform:matrix(0.269610,0.004044,-0.003750,0.249972,0,0);-ms-transform:matrix(0.269610,0.004044,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.269610,0.004044,-0.003750,0.249972,0,0);}
.me5_c00380{transform:matrix(0.269951,0.005399,-0.004999,0.249950,0,0);-ms-transform:matrix(0.269951,0.005399,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.269951,0.005399,-0.004999,0.249950,0,0);}
.mb3_c00380{transform:matrix(0.270415,0.004056,-0.003750,0.249972,0,0);-ms-transform:matrix(0.270415,0.004056,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.270415,0.004056,-0.003750,0.249972,0,0);}
.m86_c00380{transform:matrix(0.270525,0.004058,-0.003750,0.249972,0,0);-ms-transform:matrix(0.270525,0.004058,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.270525,0.004058,-0.003750,0.249972,0,0);}
.m39_c00380{transform:matrix(0.270911,0.004605,-0.004249,0.249964,0,0);-ms-transform:matrix(0.270911,0.004605,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.270911,0.004605,-0.004249,0.249964,0,0);}
.mb5_c00380{transform:matrix(0.273184,0.004098,-0.003750,0.249972,0,0);-ms-transform:matrix(0.273184,0.004098,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.273184,0.004098,-0.003750,0.249972,0,0);}
.me7_c00380{transform:matrix(0.273415,0.005468,-0.004999,0.249950,0,0);-ms-transform:matrix(0.273415,0.005468,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.273415,0.005468,-0.004999,0.249950,0,0);}
.m88_c00380{transform:matrix(0.274574,0.004119,-0.003750,0.249972,0,0);-ms-transform:matrix(0.274574,0.004119,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.274574,0.004119,-0.003750,0.249972,0,0);}
.m61_c00380{transform:matrix(0.275844,0.004138,-0.003750,0.249972,0,0);-ms-transform:matrix(0.275844,0.004138,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.275844,0.004138,-0.003750,0.249972,0,0);}
.mb6_c00380{transform:matrix(0.275944,0.004139,-0.003750,0.249972,0,0);-ms-transform:matrix(0.275944,0.004139,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.275944,0.004139,-0.003750,0.249972,0,0);}
.me8_c00380{transform:matrix(0.276475,0.005529,-0.004999,0.249950,0,0);-ms-transform:matrix(0.276475,0.005529,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.276475,0.005529,-0.004999,0.249950,0,0);}
.md_c00380{transform:matrix(0.276606,0.002766,-0.002500,0.249988,0,0);-ms-transform:matrix(0.276606,0.002766,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.276606,0.002766,-0.002500,0.249988,0,0);}
.m84_c00380{transform:matrix(0.277039,0.004156,-0.003750,0.249972,0,0);-ms-transform:matrix(0.277039,0.004156,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.277039,0.004156,-0.003750,0.249972,0,0);}
.m89_c00380{transform:matrix(0.277289,0.004159,-0.003750,0.249972,0,0);-ms-transform:matrix(0.277289,0.004159,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.277289,0.004159,-0.003750,0.249972,0,0);}
.mb1_c00380{transform:matrix(0.277334,0.004160,-0.003750,0.249972,0,0);-ms-transform:matrix(0.277334,0.004160,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.277334,0.004160,-0.003750,0.249972,0,0);}
.m12a_c00380{transform:matrix(0.277365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277365,0.000000,0.000000,0.250000,0,0);}
.m9f_c00380{transform:matrix(0.277459,0.004162,-0.003750,0.249972,0,0);-ms-transform:matrix(0.277459,0.004162,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.277459,0.004162,-0.003750,0.249972,0,0);}
.m85_c00380{transform:matrix(0.277484,0.004162,-0.003750,0.249972,0,0);-ms-transform:matrix(0.277484,0.004162,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.277484,0.004162,-0.003750,0.249972,0,0);}
.m4b_c00380{transform:matrix(0.277804,0.004167,-0.003750,0.249972,0,0);-ms-transform:matrix(0.277804,0.004167,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.277804,0.004167,-0.003750,0.249972,0,0);}
.me_c00380{transform:matrix(0.279341,0.002793,-0.002500,0.249988,0,0);-ms-transform:matrix(0.279341,0.002793,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.279341,0.002793,-0.002500,0.249988,0,0);}
.m136_c00380{transform:matrix(0.280900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280900,0.000000,0.000000,0.250000,0,0);}
.ma_c00380{transform:matrix(0.281091,0.002811,-0.002500,0.249988,0,0);-ms-transform:matrix(0.281091,0.002811,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.281091,0.002811,-0.002500,0.249988,0,0);}
.mb7_c00380{transform:matrix(0.281093,0.004216,-0.003750,0.249972,0,0);-ms-transform:matrix(0.281093,0.004216,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.281093,0.004216,-0.003750,0.249972,0,0);}
.m8a_c00380{transform:matrix(0.281313,0.004220,-0.003750,0.249972,0,0);-ms-transform:matrix(0.281313,0.004220,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.281313,0.004220,-0.003750,0.249972,0,0);}
.m1e_c00380{transform:matrix(0.282051,0.002821,-0.002500,0.249988,0,0);-ms-transform:matrix(0.282051,0.002821,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.282051,0.002821,-0.002500,0.249988,0,0);}
.m47_c00380{transform:matrix(0.283523,0.004253,-0.003750,0.249972,0,0);-ms-transform:matrix(0.283523,0.004253,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.283523,0.004253,-0.003750,0.249972,0,0);}
.m4c_c00380{transform:matrix(0.283683,0.004255,-0.003750,0.249972,0,0);-ms-transform:matrix(0.283683,0.004255,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.283683,0.004255,-0.003750,0.249972,0,0);}
.m148_c00380{transform:matrix(0.290175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290175,0.000000,0.000000,0.250000,0,0);}
.m131_c00380{transform:matrix(0.302095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302095,0.000000,0.000000,0.250000,0,0);}
.m5d_c00380{transform:matrix(0.314275,0.004714,-0.003750,0.249972,0,0);-ms-transform:matrix(0.314275,0.004714,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.314275,0.004714,-0.003750,0.249972,0,0);}
.m130_c00380{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m14d_c00380{transform:matrix(0.362340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362340,0.000000,0.000000,0.250000,0,0);}
.m126_c00380{transform:matrix(0.393355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393355,0.000000,0.000000,0.250000,0,0);}
.m127_c00380{transform:matrix(0.460890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460890,0.000000,0.000000,0.250000,0,0);}
.m125_c00380{transform:matrix(0.474365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474365,0.000000,0.000000,0.250000,0,0);}
.m128_c00380{transform:matrix(0.571980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571980,0.000000,0.000000,0.250000,0,0);}
.m124_c00380{transform:matrix(0.613395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.613395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.613395,0.000000,0.000000,0.250000,0,0);}
.m12f_c00380{transform:matrix(0.670475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.670475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.670475,0.000000,0.000000,0.250000,0,0);}
.mf1_c00380{transform:matrix(1.489994,0.026820,-0.004499,0.249960,0,0);-ms-transform:matrix(1.489994,0.026820,-0.004499,0.249960,0,0);-webkit-transform:matrix(1.489994,0.026820,-0.004499,0.249960,0,0);}
.v0_c00380{vertical-align:0.000000px;}
.ls0_c00380{letter-spacing:0.000000px;}
.sc__c00380{text-shadow:none;}
.sc0_c00380{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__c00380{-webkit-text-stroke:0px transparent;}
.sc0_c00380{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00380{word-spacing:0.000000px;}
.fc0_c00380{color:transparent;}
.fs13_c00380{font-size:42.000000px;}
.fs14_c00380{font-size:72.000000px;}
.fs1_c00380{font-size:72.003600px;}
.fs7_c00380{font-size:72.008100px;}
.fs5_c00380{font-size:72.010403px;}
.fse_c00380{font-size:72.014399px;}
.fs15_c00380{font-size:78.000000px;}
.fs3_c00380{font-size:78.003900px;}
.fs9_c00380{font-size:78.008775px;}
.fsf_c00380{font-size:78.012635px;}
.fsd_c00380{font-size:78.015598px;}
.fs16_c00380{font-size:84.000000px;}
.fs0_c00380{font-size:84.004200px;}
.fs8_c00380{font-size:84.009449px;}
.fs4_c00380{font-size:84.012137px;}
.fs10_c00380{font-size:84.013607px;}
.fsc_c00380{font-size:84.016798px;}
.fs11_c00380{font-size:84.022215px;}
.fs2_c00380{font-size:90.004500px;}
.fsa_c00380{font-size:90.010124px;}
.fs6_c00380{font-size:90.013004px;}
.fs17_c00380{font-size:96.000000px;}
.fs12_c00380{font-size:102.026975px;}
.fsb_c00380{font-size:108.012149px;}
.y0_c00380{bottom:0.000000px;}
.y154_c00380{bottom:80.767500px;}
.y153_c00380{bottom:82.204500px;}
.y152_c00380{bottom:84.057000px;}
.y151_c00380{bottom:84.735000px;}
.y150_c00380{bottom:85.885500px;}
.y14f_c00380{bottom:86.964000px;}
.y14e_c00380{bottom:89.128500px;}
.y14d_c00380{bottom:93.462000px;}
.y14c_c00380{bottom:95.983500px;}
.y14b_c00380{bottom:101.694000px;}
.y14a_c00380{bottom:102.499500px;}
.y149_c00380{bottom:103.114500px;}
.y148_c00380{bottom:103.723500px;}
.y147_c00380{bottom:104.652000px;}
.y146_c00380{bottom:106.485000px;}
.y145_c00380{bottom:107.196000px;}
.y144_c00380{bottom:116.799000px;}
.y143_c00380{bottom:117.682500px;}
.y142_c00380{bottom:118.215000px;}
.y141_c00380{bottom:120.366000px;}
.y140_c00380{bottom:121.561500px;}
.y13f_c00380{bottom:124.572000px;}
.y13e_c00380{bottom:127.462500px;}
.y13d_c00380{bottom:128.553000px;}
.y13c_c00380{bottom:134.518500px;}
.y13b_c00380{bottom:136.194000px;}
.y13a_c00380{bottom:138.180000px;}
.y139_c00380{bottom:139.183500px;}
.y138_c00380{bottom:139.824000px;}
.y137_c00380{bottom:141.840000px;}
.y136_c00380{bottom:142.837500px;}
.y135_c00380{bottom:145.054500px;}
.y134_c00380{bottom:147.486000px;}
.y133_c00380{bottom:148.399500px;}
.y132_c00380{bottom:156.520500px;}
.y131_c00380{bottom:158.244000px;}
.y130_c00380{bottom:159.223500px;}
.y12f_c00380{bottom:160.621500px;}
.y12e_c00380{bottom:164.059500px;}
.y12d_c00380{bottom:164.707500px;}
.y12c_c00380{bottom:176.895000px;}
.y12b_c00380{bottom:186.238448px;}
.y12a_c00380{bottom:186.714804px;}
.y129_c00380{bottom:188.110295px;}
.y128_c00380{bottom:188.438202px;}
.y127_c00380{bottom:189.516984px;}
.y126_c00380{bottom:190.159598px;}
.y125_c00380{bottom:191.248647px;}
.y124_c00380{bottom:192.630143px;}
.y123_c00380{bottom:193.238952px;}
.y122_c00380{bottom:194.472447px;}
.y121_c00380{bottom:194.921678px;}
.y120_c00380{bottom:195.999441px;}
.y11f_c00380{bottom:224.371181px;}
.y11e_c00380{bottom:224.864421px;}
.y11d_c00380{bottom:225.890068px;}
.y11c_c00380{bottom:226.558805px;}
.y11b_c00380{bottom:228.889487px;}
.y11a_c00380{bottom:229.388783px;}
.y119_c00380{bottom:230.705688px;}
.y118_c00380{bottom:231.207297px;}
.y117_c00380{bottom:233.018529px;}
.y116_c00380{bottom:233.358340px;}
.y115_c00380{bottom:234.622464px;}
.y114_c00380{bottom:262.396533px;}
.y113_c00380{bottom:263.415145px;}
.y112_c00380{bottom:264.714105px;}
.y111_c00380{bottom:265.471656px;}
.y110_c00380{bottom:267.023742px;}
.y10f_c00380{bottom:267.777084px;}
.y10e_c00380{bottom:268.560338px;}
.y10d_c00380{bottom:269.322546px;}
.y10c_c00380{bottom:270.347921px;}
.y10b_c00380{bottom:271.608654px;}
.y10a_c00380{bottom:272.368206px;}
.y109_c00380{bottom:273.864437px;}
.y108_c00380{bottom:274.912788px;}
.y107_c00380{bottom:275.682000px;}
.y106_c00380{bottom:310.261137px;}
.y105_c00380{bottom:311.016966px;}
.y104_c00380{bottom:311.730270px;}
.y103_c00380{bottom:312.088089px;}
.y102_c00380{bottom:312.334578px;}
.y101_c00380{bottom:312.925029px;}
.y100_c00380{bottom:333.357393px;}
.yff_c00380{bottom:334.383204px;}
.yfe_c00380{bottom:336.177381px;}
.yfd_c00380{bottom:337.374318px;}
.yfc_c00380{bottom:338.169819px;}
.yfb_c00380{bottom:339.386034px;}
.yfa_c00380{bottom:340.562667px;}
.yf9_c00380{bottom:342.754878px;}
.yf8_c00380{bottom:343.746507px;}
.yf7_c00380{bottom:344.333595px;}
.yf6_c00380{bottom:345.873000px;}
.yf5_c00380{bottom:371.525430px;}
.yf4_c00380{bottom:371.688450px;}
.yf3_c00380{bottom:371.865990px;}
.yf2_c00380{bottom:371.979060px;}
.yf1_c00380{bottom:372.240360px;}
.yf0_c00380{bottom:372.756570px;}
.yef_c00380{bottom:373.247610px;}
.yee_c00380{bottom:373.368780px;}
.yed_c00380{bottom:373.699560px;}
.yec_c00380{bottom:374.083620px;}
.yeb_c00380{bottom:374.244690px;}
.yea_c00380{bottom:374.522820px;}
.ye9_c00380{bottom:375.007290px;}
.ye8_c00380{bottom:407.965140px;}
.ye7_c00380{bottom:408.746670px;}
.ye6_c00380{bottom:409.415940px;}
.ye5_c00380{bottom:410.633370px;}
.ye4_c00380{bottom:411.192090px;}
.ye3_c00380{bottom:411.527130px;}
.ye2_c00380{bottom:412.415970px;}
.ye1_c00380{bottom:412.737600px;}
.ye0_c00380{bottom:412.964880px;}
.ydf_c00380{bottom:413.293560px;}
.yde_c00380{bottom:414.156630px;}
.ydd_c00380{bottom:414.704310px;}
.ydc_c00380{bottom:441.723120px;}
.ydb_c00380{bottom:441.997980px;}
.yda_c00380{bottom:442.262310px;}
.yd9_c00380{bottom:442.714500px;}
.yd8_c00380{bottom:443.328750px;}
.yd7_c00380{bottom:443.591610px;}
.yd6_c00380{bottom:444.396060px;}
.yd5_c00380{bottom:444.741180px;}
.yd4_c00380{bottom:445.453590px;}
.yd3_c00380{bottom:445.879290px;}
.yd2_c00380{bottom:446.573790px;}
.yd1_c00380{bottom:477.162780px;}
.yd0_c00380{bottom:479.836980px;}
.ycf_c00380{bottom:480.956490px;}
.yce_c00380{bottom:481.614930px;}
.ycd_c00380{bottom:482.916600px;}
.ycc_c00380{bottom:483.597300px;}
.ycb_c00380{bottom:484.034730px;}
.yca_c00380{bottom:484.726230px;}
.yc9_c00380{bottom:486.697710px;}
.yc8_c00380{bottom:487.809990px;}
.yc7_c00380{bottom:488.706000px;}
.yc6_c00380{bottom:519.141600px;}
.yc5_c00380{bottom:520.366192px;}
.yc4_c00380{bottom:520.902607px;}
.yc3_c00380{bottom:521.375775px;}
.yc2_c00380{bottom:521.567932px;}
.yc1_c00380{bottom:521.965425px;}
.yc0_c00380{bottom:522.154920px;}
.ybf_c00380{bottom:522.415042px;}
.ybe_c00380{bottom:549.826920px;}
.ybd_c00380{bottom:551.529090px;}
.ybc_c00380{bottom:552.777360px;}
.ybb_c00380{bottom:553.874085px;}
.yba_c00380{bottom:554.494380px;}
.yb9_c00380{bottom:555.587505px;}
.yb8_c00380{bottom:556.200442px;}
.yb7_c00380{bottom:557.723160px;}
.yb6_c00380{bottom:558.198735px;}
.yb5_c00380{bottom:558.806250px;}
.yb4_c00380{bottom:559.410345px;}
.yb3_c00380{bottom:583.369275px;}
.yb2_c00380{bottom:584.412172px;}
.yb1_c00380{bottom:585.879615px;}
.yb0_c00380{bottom:586.421257px;}
.yaf_c00380{bottom:587.215575px;}
.yae_c00380{bottom:588.802710px;}
.yad_c00380{bottom:589.992667px;}
.yac_c00380{bottom:590.280555px;}
.yab_c00380{bottom:591.321532px;}
.yaa_c00380{bottom:591.713115px;}
.ya9_c00380{bottom:591.974850px;}
.ya8_c00380{bottom:592.354402px;}
.ya7_c00380{bottom:621.652747px;}
.ya6_c00380{bottom:622.678320px;}
.ya5_c00380{bottom:623.504182px;}
.ya4_c00380{bottom:624.962992px;}
.ya3_c00380{bottom:625.152645px;}
.ya2_c00380{bottom:626.656365px;}
.ya1_c00380{bottom:627.835027px;}
.ya0_c00380{bottom:628.478595px;}
.y9f_c00380{bottom:628.993687px;}
.y9e_c00380{bottom:630.301387px;}
.y9d_c00380{bottom:630.648855px;}
.y9c_c00380{bottom:631.280880px;}
.y9b_c00380{bottom:631.778782px;}
.y9a_c00380{bottom:655.546507px;}
.y99_c00380{bottom:656.749192px;}
.y98_c00380{bottom:657.543802px;}
.y97_c00380{bottom:657.945615px;}
.y96_c00380{bottom:658.884772px;}
.y95_c00380{bottom:659.276985px;}
.y94_c00380{bottom:659.811937px;}
.y93_c00380{bottom:660.482310px;}
.y92_c00380{bottom:661.399702px;}
.y91_c00380{bottom:661.788112px;}
.y90_c00380{bottom:662.319682px;}
.y8f_c00380{bottom:663.373342px;}
.y8e_c00380{bottom:691.482592px;}
.y8d_c00380{bottom:691.744035px;}
.y8c_c00380{bottom:692.565097px;}
.y8b_c00380{bottom:693.873397px;}
.y8a_c00380{bottom:695.088592px;}
.y89_c00380{bottom:695.483220px;}
.y88_c00380{bottom:696.415912px;}
.y87_c00380{bottom:697.475640px;}
.y86_c00380{bottom:698.786445px;}
.y85_c00380{bottom:699.174472px;}
.y84_c00380{bottom:699.553350px;}
.y83_c00380{bottom:727.797570px;}
.y82_c00380{bottom:728.246865px;}
.y81_c00380{bottom:728.911800px;}
.y80_c00380{bottom:729.246090px;}
.y7f_c00380{bottom:729.812707px;}
.y7e_c00380{bottom:730.134652px;}
.y7d_c00380{bottom:730.471605px;}
.y7c_c00380{bottom:730.806832px;}
.y7b_c00380{bottom:731.030550px;}
.y7a_c00380{bottom:732.140685px;}
.y79_c00380{bottom:732.459472px;}
.y78_c00380{bottom:733.343227px;}
.y77_c00380{bottom:733.669575px;}
.y76_c00380{bottom:734.657880px;}
.y75_c00380{bottom:764.541727px;}
.y74_c00380{bottom:765.543345px;}
.y73_c00380{bottom:766.218435px;}
.y72_c00380{bottom:766.545075px;}
.y71_c00380{bottom:767.325570px;}
.y70_c00380{bottom:767.873445px;}
.y6f_c00380{bottom:768.103357px;}
.y6e_c00380{bottom:768.881842px;}
.y6d_c00380{bottom:769.421910px;}
.y6c_c00380{bottom:769.654282px;}
.y6b_c00380{bottom:770.420865px;}
.y6a_c00380{bottom:770.857762px;}
.y69_c00380{bottom:771.070538px;}
.y68_c00380{bottom:771.380512px;}
.y67_c00380{bottom:800.461455px;}
.y66_c00380{bottom:800.828685px;}
.y65_c00380{bottom:801.172702px;}
.y64_c00380{bottom:801.440947px;}
.y63_c00380{bottom:802.154010px;}
.y62_c00380{bottom:802.424445px;}
.y61_c00380{bottom:802.955790px;}
.y60_c00380{bottom:803.210257px;}
.y5f_c00380{bottom:804.110625px;}
.y5e_c00380{bottom:804.544770px;}
.y5d_c00380{bottom:805.166895px;}
.y5c_c00380{bottom:805.674172px;}
.y5b_c00380{bottom:837.216397px;}
.y5a_c00380{bottom:837.541815px;}
.y59_c00380{bottom:838.940625px;}
.y58_c00380{bottom:839.707410px;}
.y57_c00380{bottom:840.172672px;}
.y56_c00380{bottom:841.555995px;}
.y55_c00380{bottom:842.020762px;}
.y54_c00380{bottom:842.811202px;}
.y53_c00380{bottom:843.271515px;}
.y52_c00380{bottom:844.962427px;}
.y51_c00380{bottom:845.267032px;}
.y50_c00380{bottom:846.178312px;}
.y4f_c00380{bottom:872.585467px;}
.y4e_c00380{bottom:874.120732px;}
.y4d_c00380{bottom:875.607150px;}
.y4c_c00380{bottom:876.101430px;}
.y4b_c00380{bottom:876.599580px;}
.y4a_c00380{bottom:877.761435px;}
.y49_c00380{bottom:880.066965px;}
.y48_c00380{bottom:880.743000px;}
.y43_c00380{bottom:911.579668px;}
.y45_c00380{bottom:911.579670px;}
.y47_c00380{bottom:911.579821px;}
.y44_c00380{bottom:911.579894px;}
.y46_c00380{bottom:911.580226px;}
.y42_c00380{bottom:911.580252px;}
.y41_c00380{bottom:911.580835px;}
.y3f_c00380{bottom:911.581245px;}
.y40_c00380{bottom:911.581381px;}
.y3e_c00380{bottom:942.832738px;}
.y3d_c00380{bottom:943.679602px;}
.y3c_c00380{bottom:944.538214px;}
.y3b_c00380{bottom:945.289984px;}
.y3a_c00380{bottom:945.628438px;}
.y39_c00380{bottom:946.006480px;}
.y38_c00380{bottom:946.264173px;}
.y37_c00380{bottom:947.101869px;}
.y36_c00380{bottom:947.466939px;}
.y35_c00380{bottom:948.076516px;}
.y34_c00380{bottom:949.044627px;}
.y33_c00380{bottom:949.516335px;}
.y32_c00380{bottom:950.125198px;}
.y31_c00380{bottom:978.910170px;}
.y30_c00380{bottom:979.460740px;}
.y2f_c00380{bottom:980.415945px;}
.y2e_c00380{bottom:981.048957px;}
.y2d_c00380{bottom:982.117815px;}
.y2c_c00380{bottom:982.688071px;}
.y2b_c00380{bottom:983.073657px;}
.y2a_c00380{bottom:983.632846px;}
.y29_c00380{bottom:985.116538px;}
.y28_c00380{bottom:986.640265px;}
.y27_c00380{bottom:987.393000px;}
.y26_c00380{bottom:1012.942920px;}
.y25_c00380{bottom:1013.852580px;}
.y24_c00380{bottom:1018.970640px;}
.y23_c00380{bottom:1051.767060px;}
.y22_c00380{bottom:1052.380080px;}
.y21_c00380{bottom:1052.783115px;}
.y20_c00380{bottom:1053.284160px;}
.y1f_c00380{bottom:1053.479130px;}
.y1e_c00380{bottom:1053.689805px;}
.y1d_c00380{bottom:1054.178625px;}
.y1c_c00380{bottom:1054.480755px;}
.y1b_c00380{bottom:1054.886415px;}
.y1a_c00380{bottom:1055.280630px;}
.y19_c00380{bottom:1055.582460px;}
.y18_c00380{bottom:1056.343980px;}
.y17_c00380{bottom:1056.576990px;}
.y16_c00380{bottom:1057.267575px;}
.y15_c00380{bottom:1057.459425px;}
.y14_c00380{bottom:1057.855860px;}
.y13_c00380{bottom:1085.399160px;}
.y12_c00380{bottom:1085.791605px;}
.y11_c00380{bottom:1086.608940px;}
.y10_c00380{bottom:1087.535715px;}
.yf_c00380{bottom:1089.003615px;}
.ye_c00380{bottom:1090.216005px;}
.yd_c00380{bottom:1090.737930px;}
.yc_c00380{bottom:1091.531310px;}
.yb_c00380{bottom:1092.960840px;}
.ya_c00380{bottom:1120.252860px;}
.y9_c00380{bottom:1121.146725px;}
.y8_c00380{bottom:1121.602860px;}
.y7_c00380{bottom:1122.481050px;}
.y6_c00380{bottom:1123.145055px;}
.y5_c00380{bottom:1124.146890px;}
.y4_c00380{bottom:1124.489580px;}
.y3_c00380{bottom:1125.588750px;}
.y2_c00380{bottom:1125.909975px;}
.y1_c00380{bottom:1126.441500px;}
.h15_c00380{height:42.000000px;}
.h16_c00380{height:72.000000px;}
.h3_c00380{height:72.003600px;}
.h9_c00380{height:72.008100px;}
.h7_c00380{height:72.010403px;}
.h10_c00380{height:72.014399px;}
.h17_c00380{height:78.000000px;}
.h5_c00380{height:78.003900px;}
.hb_c00380{height:78.008775px;}
.h11_c00380{height:78.012635px;}
.hf_c00380{height:78.015598px;}
.h18_c00380{height:84.000000px;}
.h2_c00380{height:84.004200px;}
.ha_c00380{height:84.009449px;}
.h6_c00380{height:84.012137px;}
.h12_c00380{height:84.013607px;}
.he_c00380{height:84.016798px;}
.h13_c00380{height:84.022215px;}
.h4_c00380{height:90.004500px;}
.hc_c00380{height:90.010124px;}
.h8_c00380{height:90.013004px;}
.h19_c00380{height:96.000000px;}
.h14_c00380{height:102.026975px;}
.hd_c00380{height:108.012149px;}
.h0_c00380{height:1251.450000px;}
.h1_c00380{height:1251.750000px;}
.w0_c00380{width:915.000000px;}
.x0_c00380{left:0.000000px;}
.xba_c00380{left:153.630000px;}
.xc1_c00380{left:155.640000px;}
.xa6_c00380{left:157.086729px;}
.x76_c00380{left:158.360588px;}
.x58_c00380{left:159.419948px;}
.x60_c00380{left:160.495740px;}
.x14_c00380{left:161.660475px;}
.xb_c00380{left:162.863610px;}
.x1_c00380{left:164.032500px;}
.xc9_c00380{left:170.686500px;}
.xcd_c00380{left:181.803000px;}
.xc2_c00380{left:186.114000px;}
.x61_c00380{left:192.055658px;}
.x35_c00380{left:193.308479px;}
.x77_c00380{left:201.534240px;}
.x15_c00380{left:205.654410px;}
.xa7_c00380{left:210.813006px;}
.x90_c00380{left:212.611890px;}
.x4f_c00380{left:213.949590px;}
.xbb_c00380{left:216.000000px;}
.x2_c00380{left:217.185000px;}
.x47_c00380{left:224.490983px;}
.x3d_c00380{left:225.850155px;}
.x16_c00380{left:226.939620px;}
.xd0_c00380{left:232.159500px;}
.xa8_c00380{left:233.176314px;}
.x6d_c00380{left:234.211988px;}
.xb2_c00380{left:242.753646px;}
.x9f_c00380{left:243.843000px;}
.x78_c00380{left:244.935893px;}
.x69_c00380{left:246.601230px;}
.x3e_c00380{left:247.657492px;}
.x3_c00380{left:249.307500px;}
.x97_c00380{left:254.776890px;}
.xbc_c00380{left:255.960000px;}
.x50_c00380{left:257.679375px;}
.x2e_c00380{left:259.302737px;}
.xaa_c00380{left:264.361500px;}
.x83_c00380{left:265.680000px;}
.xc3_c00380{left:267.174000px;}
.x25_c00380{left:269.788500px;}
.xa0_c00380{left:276.459000px;}
.x79_c00380{left:278.941410px;}
.xc_c00380{left:281.964225px;}
.xbe_c00380{left:286.081500px;}
.x59_c00380{left:290.873303px;}
.xbd_c00380{left:296.190000px;}
.x8a_c00380{left:298.724010px;}
.x81_c00380{left:300.152475px;}
.x48_c00380{left:302.274150px;}
.x17_c00380{left:303.648885px;}
.x84_c00380{left:310.480500px;}
.x26_c00380{left:314.067000px;}
.xca_c00380{left:318.160500px;}
.x6a_c00380{left:323.236673px;}
.x18_c00380{left:329.500140px;}
.xa9_c00380{left:330.612099px;}
.x70_c00380{left:332.448698px;}
.x51_c00380{left:334.390635px;}
.xc4_c00380{left:341.074500px;}
.x98_c00380{left:342.538200px;}
.x6e_c00380{left:344.556488px;}
.xd_c00380{left:348.100905px;}
.x91_c00380{left:354.616800px;}
.x49_c00380{left:356.522843px;}
.x52_c00380{left:357.583867px;}
.x4_c00380{left:359.224500px;}
.xce_c00380{left:363.451500px;}
.x85_c00380{left:366.094500px;}
.x3f_c00380{left:368.386793px;}
.xc5_c00380{left:374.305500px;}
.x5a_c00380{left:379.196918px;}
.x92_c00380{left:386.754720px;}
.x7a_c00380{left:387.757553px;}
.xe_c00380{left:391.592535px;}
.x5_c00380{left:393.493500px;}
.xb7_c00380{left:397.125012px;}
.x6b_c00380{left:399.699615px;}
.x40_c00380{left:401.274788px;}
.x2f_c00380{left:402.681348px;}
.x27_c00380{left:403.698000px;}
.xab_c00380{left:408.439500px;}
.x53_c00380{left:411.592418px;}
.x19_c00380{left:414.052980px;}
.x99_c00380{left:419.214180px;}
.x62_c00380{left:422.070030px;}
.xcb_c00380{left:429.661500px;}
.x7b_c00380{left:431.520705px;}
.x30_c00380{left:435.894740px;}
.xac_c00380{left:441.463500px;}
.x1a_c00380{left:447.536310px;}
.xa1_c00380{left:453.339000px;}
.x6c_c00380{left:455.593635px;}
.x41_c00380{left:457.771643px;}
.xd1_c00380{left:461.733000px;}
.xc6_c00380{left:462.864000px;}
.x86_c00380{left:464.668500px;}
.x38_c00380{left:468.298500px;}
.xbf_c00380{left:473.661000px;}
.x93_c00380{left:475.614480px;}
.x36_c00380{left:479.550650px;}
.x9a_c00380{left:485.423040px;}
.x54_c00380{left:489.397245px;}
.x1b_c00380{left:491.308245px;}
.xf_c00380{left:492.579510px;}
.x6_c00380{left:493.677000px;}
.xad_c00380{left:496.278000px;}
.x63_c00380{left:499.853040px;}
.x4a_c00380{left:501.027030px;}
.xb3_c00380{left:507.348291px;}
.x7c_c00380{left:509.596875px;}
.x31_c00380{left:512.090517px;}
.x37_c00380{left:514.116146px;}
.xcf_c00380{left:517.131000px;}
.xa2_c00380{left:518.707500px;}
.x5b_c00380{left:522.069128px;}
.x28_c00380{left:523.867500px;}
.xc0_c00380{left:529.278000px;}
.x8b_c00380{left:531.528870px;}
.x64_c00380{left:532.763025px;}
.x1c_c00380{left:536.374695px;}
.xae_c00380{left:540.859500px;}
.x5c_c00380{left:544.485315px;}
.x29_c00380{left:546.549000px;}
.x7d_c00380{left:553.850527px;}
.x87_c00380{left:555.150000px;}
.x7_c00380{left:560.077500px;}
.xc7_c00380{left:562.501500px;}
.x8c_c00380{left:564.479790px;}
.x4b_c00380{left:567.457005px;}
.x1d_c00380{left:569.888025px;}
.xaf_c00380{left:573.999000px;}
.x5d_c00380{left:577.936312px;}
.x39_c00380{left:578.965500px;}
.x2a_c00380{left:580.093500px;}
.xa3_c00380{left:586.275000px;}
.x71_c00380{left:587.892195px;}
.x42_c00380{left:589.779622px;}
.x32_c00380{left:600.640044px;}
.xcc_c00380{left:606.046500px;}
.x9b_c00380{left:608.020320px;}
.x3a_c00380{left:611.917500px;}
.x6f_c00380{left:613.269488px;}
.x10_c00380{left:614.917065px;}
.xd2_c00380{left:616.812000px;}
.xc8_c00380{left:618.373500px;}
.x88_c00380{left:620.233500px;}
.x43_c00380{left:622.997618px;}
.x1e_c00380{left:624.170565px;}
.xa4_c00380{left:630.469500px;}
.x7e_c00380{left:632.166698px;}
.x65_c00380{left:634.080593px;}
.x8d_c00380{left:641.185680px;}
.x2b_c00380{left:642.967500px;}
.x55_c00380{left:645.194423px;}
.x8_c00380{left:647.896500px;}
.x72_c00380{left:654.049665px;}
.x1f_c00380{left:669.235515px;}
.x23_c00380{left:674.499765px;}
.x44_c00380{left:677.817450px;}
.x2c_c00380{left:680.203500px;}
.x94_c00380{left:686.816220px;}
.x4c_c00380{left:690.336398px;}
.x11_c00380{left:692.143020px;}
.x9_c00380{left:693.510000px;}
.xb4_c00380{left:695.968964px;}
.x8e_c00380{left:697.633710px;}
.x73_c00380{left:699.161190px;}
.x5e_c00380{left:700.546515px;}
.x82_c00380{left:704.662583px;}
.x89_c00380{left:709.131000px;}
.x3b_c00380{left:711.012000px;}
.xb8_c00380{left:719.967804px;}
.x7f_c00380{left:721.286025px;}
.x4d_c00380{left:723.822908px;}
.x20_c00380{left:724.890570px;}
.x8f_c00380{left:730.583100px;}
.x5f_c00380{left:734.035035px;}
.x2d_c00380{left:736.392000px;}
.xb0_c00380{left:741.226500px;}
.x66_c00380{left:743.105498px;}
.x56_c00380{left:745.383938px;}
.x33_c00380{left:747.000961px;}
.x95_c00380{left:753.818130px;}
.x12_c00380{left:760.225155px;}
.x9c_c00380{left:763.342380px;}
.x24_c00380{left:765.465765px;}
.x4e_c00380{left:766.761908px;}
.x21_c00380{left:769.694520px;}
.x45_c00380{left:777.772958px;}
.xa_c00380{left:782.896500px;}
.x9d_c00380{left:786.027690px;}
.x13_c00380{left:792.868995px;}
.xa5_c00380{left:796.642500px;}
.xb1_c00380{left:797.703000px;}
.x46_c00380{left:800.967795px;}
.xb5_c00380{left:808.854198px;}
.x67_c00380{left:811.546080px;}
.x3c_c00380{left:813.363000px;}
.xb9_c00380{left:819.661935px;}
.x74_c00380{left:821.496203px;}
.x34_c00380{left:824.000816px;}
.x96_c00380{left:831.910230px;}
.x68_c00380{left:833.376570px;}
.x22_c00380{left:837.747195px;}
.xb6_c00380{left:841.783770px;}
.x80_c00380{left:842.865848px;}
.x57_c00380{left:845.565953px;}
.x9e_c00380{left:854.076090px;}
.x75_c00380{left:908.426618px;}
@media print{
.v0_c00380{vertical-align:0.000000pt;}
.ls0_c00380{letter-spacing:0.000000pt;}
.ws0_c00380{word-spacing:0.000000pt;}
.fs13_c00380{font-size:37.333333pt;}
.fs14_c00380{font-size:64.000000pt;}
.fs1_c00380{font-size:64.003200pt;}
.fs7_c00380{font-size:64.007200pt;}
.fs5_c00380{font-size:64.009247pt;}
.fse_c00380{font-size:64.012799pt;}
.fs15_c00380{font-size:69.333333pt;}
.fs3_c00380{font-size:69.336800pt;}
.fs9_c00380{font-size:69.341133pt;}
.fsf_c00380{font-size:69.344564pt;}
.fsd_c00380{font-size:69.347199pt;}
.fs16_c00380{font-size:74.666667pt;}
.fs0_c00380{font-size:74.670400pt;}
.fs8_c00380{font-size:74.675066pt;}
.fs4_c00380{font-size:74.677455pt;}
.fs10_c00380{font-size:74.678762pt;}
.fsc_c00380{font-size:74.681599pt;}
.fs11_c00380{font-size:74.686413pt;}
.fs2_c00380{font-size:80.004000pt;}
.fsa_c00380{font-size:80.008999pt;}
.fs6_c00380{font-size:80.011559pt;}
.fs17_c00380{font-size:85.333333pt;}
.fs12_c00380{font-size:90.690645pt;}
.fsb_c00380{font-size:96.010799pt;}
.y0_c00380{bottom:0.000000pt;}
.y154_c00380{bottom:71.793333pt;}
.y153_c00380{bottom:73.070667pt;}
.y152_c00380{bottom:74.717333pt;}
.y151_c00380{bottom:75.320000pt;}
.y150_c00380{bottom:76.342667pt;}
.y14f_c00380{bottom:77.301333pt;}
.y14e_c00380{bottom:79.225333pt;}
.y14d_c00380{bottom:83.077333pt;}
.y14c_c00380{bottom:85.318667pt;}
.y14b_c00380{bottom:90.394667pt;}
.y14a_c00380{bottom:91.110667pt;}
.y149_c00380{bottom:91.657333pt;}
.y148_c00380{bottom:92.198667pt;}
.y147_c00380{bottom:93.024000pt;}
.y146_c00380{bottom:94.653333pt;}
.y145_c00380{bottom:95.285333pt;}
.y144_c00380{bottom:103.821333pt;}
.y143_c00380{bottom:104.606667pt;}
.y142_c00380{bottom:105.080000pt;}
.y141_c00380{bottom:106.992000pt;}
.y140_c00380{bottom:108.054667pt;}
.y13f_c00380{bottom:110.730667pt;}
.y13e_c00380{bottom:113.300000pt;}
.y13d_c00380{bottom:114.269333pt;}
.y13c_c00380{bottom:119.572000pt;}
.y13b_c00380{bottom:121.061333pt;}
.y13a_c00380{bottom:122.826667pt;}
.y139_c00380{bottom:123.718667pt;}
.y138_c00380{bottom:124.288000pt;}
.y137_c00380{bottom:126.080000pt;}
.y136_c00380{bottom:126.966667pt;}
.y135_c00380{bottom:128.937333pt;}
.y134_c00380{bottom:131.098667pt;}
.y133_c00380{bottom:131.910667pt;}
.y132_c00380{bottom:139.129333pt;}
.y131_c00380{bottom:140.661333pt;}
.y130_c00380{bottom:141.532000pt;}
.y12f_c00380{bottom:142.774667pt;}
.y12e_c00380{bottom:145.830667pt;}
.y12d_c00380{bottom:146.406667pt;}
.y12c_c00380{bottom:157.240000pt;}
.y12b_c00380{bottom:165.545287pt;}
.y12a_c00380{bottom:165.968715pt;}
.y129_c00380{bottom:167.209151pt;}
.y128_c00380{bottom:167.500624pt;}
.y127_c00380{bottom:168.459541pt;}
.y126_c00380{bottom:169.030753pt;}
.y125_c00380{bottom:169.998797pt;}
.y124_c00380{bottom:171.226793pt;}
.y123_c00380{bottom:171.767957pt;}
.y122_c00380{bottom:172.864397pt;}
.y121_c00380{bottom:173.263713pt;}
.y120_c00380{bottom:174.221725pt;}
.y11f_c00380{bottom:199.441049pt;}
.y11e_c00380{bottom:199.879485pt;}
.y11d_c00380{bottom:200.791172pt;}
.y11c_c00380{bottom:201.385604pt;}
.y11b_c00380{bottom:203.457321pt;}
.y11a_c00380{bottom:203.901140pt;}
.y119_c00380{bottom:205.071723pt;}
.y118_c00380{bottom:205.517597pt;}
.y117_c00380{bottom:207.127581pt;}
.y116_c00380{bottom:207.429636pt;}
.y115_c00380{bottom:208.553301pt;}
.y114_c00380{bottom:233.241363pt;}
.y113_c00380{bottom:234.146796pt;}
.y112_c00380{bottom:235.301427pt;}
.y111_c00380{bottom:235.974805pt;}
.y110_c00380{bottom:237.354437pt;}
.y10f_c00380{bottom:238.024075pt;}
.y10e_c00380{bottom:238.720300pt;}
.y10d_c00380{bottom:239.397819pt;}
.y10c_c00380{bottom:240.309263pt;}
.y10b_c00380{bottom:241.429915pt;}
.y10a_c00380{bottom:242.105072pt;}
.y109_c00380{bottom:243.435055pt;}
.y108_c00380{bottom:244.366923pt;}
.y107_c00380{bottom:245.050667pt;}
.y106_c00380{bottom:275.787677pt;}
.y105_c00380{bottom:276.459525pt;}
.y104_c00380{bottom:277.093573pt;}
.y103_c00380{bottom:277.411635pt;}
.y102_c00380{bottom:277.630736pt;}
.y101_c00380{bottom:278.155581pt;}
.y100_c00380{bottom:296.317683pt;}
.yff_c00380{bottom:297.229515pt;}
.yfe_c00380{bottom:298.824339pt;}
.yfd_c00380{bottom:299.888283pt;}
.yfc_c00380{bottom:300.595395pt;}
.yfb_c00380{bottom:301.676475pt;}
.yfa_c00380{bottom:302.722371pt;}
.yf9_c00380{bottom:304.671003pt;}
.yf8_c00380{bottom:305.552451pt;}
.yf7_c00380{bottom:306.074307pt;}
.yf6_c00380{bottom:307.442667pt;}
.yf5_c00380{bottom:330.244827pt;}
.yf4_c00380{bottom:330.389733pt;}
.yf3_c00380{bottom:330.547547pt;}
.yf2_c00380{bottom:330.648053pt;}
.yf1_c00380{bottom:330.880320pt;}
.yf0_c00380{bottom:331.339173pt;}
.yef_c00380{bottom:331.775653pt;}
.yee_c00380{bottom:331.883360pt;}
.yed_c00380{bottom:332.177387pt;}
.yec_c00380{bottom:332.518773pt;}
.yeb_c00380{bottom:332.661947pt;}
.yea_c00380{bottom:332.909173pt;}
.ye9_c00380{bottom:333.339813pt;}
.ye8_c00380{bottom:362.635680pt;}
.ye7_c00380{bottom:363.330373pt;}
.ye6_c00380{bottom:363.925280pt;}
.ye5_c00380{bottom:365.007440pt;}
.ye4_c00380{bottom:365.504080pt;}
.ye3_c00380{bottom:365.801893pt;}
.ye2_c00380{bottom:366.591973pt;}
.ye1_c00380{bottom:366.877867pt;}
.ye0_c00380{bottom:367.079893pt;}
.ydf_c00380{bottom:367.372053pt;}
.yde_c00380{bottom:368.139227pt;}
.ydd_c00380{bottom:368.626053pt;}
.ydc_c00380{bottom:392.642773pt;}
.ydb_c00380{bottom:392.887093pt;}
.yda_c00380{bottom:393.122053pt;}
.yd9_c00380{bottom:393.524000pt;}
.yd8_c00380{bottom:394.070000pt;}
.yd7_c00380{bottom:394.303653pt;}
.yd6_c00380{bottom:395.018720pt;}
.yd5_c00380{bottom:395.325493pt;}
.yd4_c00380{bottom:395.958747pt;}
.yd3_c00380{bottom:396.337147pt;}
.yd2_c00380{bottom:396.954480pt;}
.yd1_c00380{bottom:424.144693pt;}
.yd0_c00380{bottom:426.521760pt;}
.ycf_c00380{bottom:427.516880pt;}
.yce_c00380{bottom:428.102160pt;}
.ycd_c00380{bottom:429.259200pt;}
.ycc_c00380{bottom:429.864267pt;}
.ycb_c00380{bottom:430.253093pt;}
.yca_c00380{bottom:430.867760pt;}
.yc9_c00380{bottom:432.620187pt;}
.yc8_c00380{bottom:433.608880pt;}
.yc7_c00380{bottom:434.405333pt;}
.yc6_c00380{bottom:461.459200pt;}
.yc5_c00380{bottom:462.547727pt;}
.yc4_c00380{bottom:463.024540pt;}
.yc3_c00380{bottom:463.445133pt;}
.yc2_c00380{bottom:463.615940pt;}
.yc1_c00380{bottom:463.969267pt;}
.yc0_c00380{bottom:464.137707pt;}
.ybf_c00380{bottom:464.368927pt;}
.ybe_c00380{bottom:488.735040pt;}
.ybd_c00380{bottom:490.248080pt;}
.ybc_c00380{bottom:491.357653pt;}
.ybb_c00380{bottom:492.332520pt;}
.yba_c00380{bottom:492.883893pt;}
.yb9_c00380{bottom:493.855560pt;}
.yb8_c00380{bottom:494.400393pt;}
.yb7_c00380{bottom:495.753920pt;}
.yb6_c00380{bottom:496.176653pt;}
.yb5_c00380{bottom:496.716667pt;}
.yb4_c00380{bottom:497.253640pt;}
.yb3_c00380{bottom:518.550467pt;}
.yb2_c00380{bottom:519.477487pt;}
.yb1_c00380{bottom:520.781880pt;}
.yb0_c00380{bottom:521.263340pt;}
.yaf_c00380{bottom:521.969400pt;}
.yae_c00380{bottom:523.380187pt;}
.yad_c00380{bottom:524.437927pt;}
.yac_c00380{bottom:524.693827pt;}
.yab_c00380{bottom:525.619140pt;}
.yaa_c00380{bottom:525.967213pt;}
.ya9_c00380{bottom:526.199867pt;}
.ya8_c00380{bottom:526.537247pt;}
.ya7_c00380{bottom:552.580220pt;}
.ya6_c00380{bottom:553.491840pt;}
.ya5_c00380{bottom:554.225940pt;}
.ya4_c00380{bottom:555.522660pt;}
.ya3_c00380{bottom:555.691240pt;}
.ya2_c00380{bottom:557.027880pt;}
.ya1_c00380{bottom:558.075580pt;}
.ya0_c00380{bottom:558.647640pt;}
.y9f_c00380{bottom:559.105500pt;}
.y9e_c00380{bottom:560.267900pt;}
.y9d_c00380{bottom:560.576760pt;}
.y9c_c00380{bottom:561.138560pt;}
.y9b_c00380{bottom:561.581140pt;}
.y9a_c00380{bottom:582.708007pt;}
.y99_c00380{bottom:583.777060pt;}
.y98_c00380{bottom:584.483380pt;}
.y97_c00380{bottom:584.840547pt;}
.y96_c00380{bottom:585.675353pt;}
.y95_c00380{bottom:586.023987pt;}
.y94_c00380{bottom:586.499500pt;}
.y93_c00380{bottom:587.095387pt;}
.y92_c00380{bottom:587.910847pt;}
.y91_c00380{bottom:588.256100pt;}
.y90_c00380{bottom:588.728607pt;}
.y8f_c00380{bottom:589.665193pt;}
.y8e_c00380{bottom:614.651193pt;}
.y8d_c00380{bottom:614.883587pt;}
.y8c_c00380{bottom:615.613420pt;}
.y8b_c00380{bottom:616.776353pt;}
.y8a_c00380{bottom:617.856527pt;}
.y89_c00380{bottom:618.207307pt;}
.y88_c00380{bottom:619.036367pt;}
.y87_c00380{bottom:619.978347pt;}
.y86_c00380{bottom:621.143507pt;}
.y85_c00380{bottom:621.488420pt;}
.y84_c00380{bottom:621.825200pt;}
.y83_c00380{bottom:646.931173pt;}
.y82_c00380{bottom:647.330547pt;}
.y81_c00380{bottom:647.921600pt;}
.y80_c00380{bottom:648.218747pt;}
.y7f_c00380{bottom:648.722407pt;}
.y7e_c00380{bottom:649.008580pt;}
.y7d_c00380{bottom:649.308093pt;}
.y7c_c00380{bottom:649.606073pt;}
.y7b_c00380{bottom:649.804933pt;}
.y7a_c00380{bottom:650.791720pt;}
.y79_c00380{bottom:651.075087pt;}
.y78_c00380{bottom:651.860647pt;}
.y77_c00380{bottom:652.150733pt;}
.y76_c00380{bottom:653.029227pt;}
.y75_c00380{bottom:679.592647pt;}
.y74_c00380{bottom:680.482973pt;}
.y73_c00380{bottom:681.083053pt;}
.y72_c00380{bottom:681.373400pt;}
.y71_c00380{bottom:682.067173pt;}
.y70_c00380{bottom:682.554173pt;}
.y6f_c00380{bottom:682.758540pt;}
.y6e_c00380{bottom:683.450527pt;}
.y6d_c00380{bottom:683.930587pt;}
.y6c_c00380{bottom:684.137140pt;}
.y6b_c00380{bottom:684.818547pt;}
.y6a_c00380{bottom:685.206900pt;}
.y69_c00380{bottom:685.396033pt;}
.y68_c00380{bottom:685.671567pt;}
.y67_c00380{bottom:711.521293pt;}
.y66_c00380{bottom:711.847720pt;}
.y65_c00380{bottom:712.153513pt;}
.y64_c00380{bottom:712.391953pt;}
.y63_c00380{bottom:713.025787pt;}
.y62_c00380{bottom:713.266173pt;}
.y61_c00380{bottom:713.738480pt;}
.y60_c00380{bottom:713.964673pt;}
.y5f_c00380{bottom:714.765000pt;}
.y5e_c00380{bottom:715.150907pt;}
.y5d_c00380{bottom:715.703907pt;}
.y5c_c00380{bottom:716.154820pt;}
.y5b_c00380{bottom:744.192353pt;}
.y5a_c00380{bottom:744.481613pt;}
.y59_c00380{bottom:745.725000pt;}
.y58_c00380{bottom:746.406587pt;}
.y57_c00380{bottom:746.820153pt;}
.y56_c00380{bottom:748.049773pt;}
.y55_c00380{bottom:748.462900pt;}
.y54_c00380{bottom:749.165513pt;}
.y53_c00380{bottom:749.574680pt;}
.y52_c00380{bottom:751.077713pt;}
.y51_c00380{bottom:751.348473pt;}
.y50_c00380{bottom:752.158500pt;}
.y4f_c00380{bottom:775.631527pt;}
.y4e_c00380{bottom:776.996207pt;}
.y4d_c00380{bottom:778.317467pt;}
.y4c_c00380{bottom:778.756827pt;}
.y4b_c00380{bottom:779.199627pt;}
.y4a_c00380{bottom:780.232387pt;}
.y49_c00380{bottom:782.281747pt;}
.y48_c00380{bottom:782.882667pt;}
.y43_c00380{bottom:810.293039pt;}
.y45_c00380{bottom:810.293040pt;}
.y47_c00380{bottom:810.293175pt;}
.y44_c00380{bottom:810.293239pt;}
.y46_c00380{bottom:810.293535pt;}
.y42_c00380{bottom:810.293557pt;}
.y41_c00380{bottom:810.294076pt;}
.y3f_c00380{bottom:810.294440pt;}
.y40_c00380{bottom:810.294561pt;}
.y3e_c00380{bottom:838.073545pt;}
.y3d_c00380{bottom:838.826313pt;}
.y3c_c00380{bottom:839.589524pt;}
.y3b_c00380{bottom:840.257764pt;}
.y3a_c00380{bottom:840.558612pt;}
.y39_c00380{bottom:840.894649pt;}
.y38_c00380{bottom:841.123709pt;}
.y37_c00380{bottom:841.868328pt;}
.y36_c00380{bottom:842.192835pt;}
.y35_c00380{bottom:842.734681pt;}
.y34_c00380{bottom:843.595224pt;}
.y33_c00380{bottom:844.014520pt;}
.y32_c00380{bottom:844.555732pt;}
.y31_c00380{bottom:870.142373pt;}
.y30_c00380{bottom:870.631769pt;}
.y2f_c00380{bottom:871.480840pt;}
.y2e_c00380{bottom:872.043517pt;}
.y2d_c00380{bottom:872.993613pt;}
.y2c_c00380{bottom:873.500508pt;}
.y2b_c00380{bottom:873.843251pt;}
.y2a_c00380{bottom:874.340308pt;}
.y29_c00380{bottom:875.659145pt;}
.y28_c00380{bottom:877.013569pt;}
.y27_c00380{bottom:877.682667pt;}
.y26_c00380{bottom:900.393707pt;}
.y25_c00380{bottom:901.202293pt;}
.y24_c00380{bottom:905.751680pt;}
.y23_c00380{bottom:934.904053pt;}
.y22_c00380{bottom:935.448960pt;}
.y21_c00380{bottom:935.807213pt;}
.y20_c00380{bottom:936.252587pt;}
.y1f_c00380{bottom:936.425893pt;}
.y1e_c00380{bottom:936.613160pt;}
.y1d_c00380{bottom:937.047667pt;}
.y1c_c00380{bottom:937.316227pt;}
.y1b_c00380{bottom:937.676813pt;}
.y1a_c00380{bottom:938.027227pt;}
.y19_c00380{bottom:938.295520pt;}
.y18_c00380{bottom:938.972427pt;}
.y17_c00380{bottom:939.179547pt;}
.y16_c00380{bottom:939.793400pt;}
.y15_c00380{bottom:939.963933pt;}
.y14_c00380{bottom:940.316320pt;}
.y13_c00380{bottom:964.799253pt;}
.y12_c00380{bottom:965.148093pt;}
.y11_c00380{bottom:965.874613pt;}
.y10_c00380{bottom:966.698413pt;}
.yf_c00380{bottom:968.003213pt;}
.ye_c00380{bottom:969.080893pt;}
.yd_c00380{bottom:969.544827pt;}
.yc_c00380{bottom:970.250053pt;}
.yb_c00380{bottom:971.520747pt;}
.ya_c00380{bottom:995.780320pt;}
.y9_c00380{bottom:996.574867pt;}
.y8_c00380{bottom:996.980320pt;}
.y7_c00380{bottom:997.760933pt;}
.y6_c00380{bottom:998.351160pt;}
.y5_c00380{bottom:999.241680pt;}
.y4_c00380{bottom:999.546293pt;}
.y3_c00380{bottom:1000.523333pt;}
.y2_c00380{bottom:1000.808867pt;}
.y1_c00380{bottom:1001.281333pt;}
.h15_c00380{height:37.333333pt;}
.h16_c00380{height:64.000000pt;}
.h3_c00380{height:64.003200pt;}
.h9_c00380{height:64.007200pt;}
.h7_c00380{height:64.009247pt;}
.h10_c00380{height:64.012799pt;}
.h17_c00380{height:69.333333pt;}
.h5_c00380{height:69.336800pt;}
.hb_c00380{height:69.341133pt;}
.h11_c00380{height:69.344564pt;}
.hf_c00380{height:69.347199pt;}
.h18_c00380{height:74.666667pt;}
.h2_c00380{height:74.670400pt;}
.ha_c00380{height:74.675066pt;}
.h6_c00380{height:74.677455pt;}
.h12_c00380{height:74.678762pt;}
.he_c00380{height:74.681599pt;}
.h13_c00380{height:74.686413pt;}
.h4_c00380{height:80.004000pt;}
.hc_c00380{height:80.008999pt;}
.h8_c00380{height:80.011559pt;}
.h19_c00380{height:85.333333pt;}
.h14_c00380{height:90.690645pt;}
.hd_c00380{height:96.010799pt;}
.h0_c00380{height:1112.400000pt;}
.h1_c00380{height:1112.666667pt;}
.w0_c00380{width:813.333333pt;}
.x0_c00380{left:0.000000pt;}
.xba_c00380{left:136.560000pt;}
.xc1_c00380{left:138.346667pt;}
.xa6_c00380{left:139.632648pt;}
.x76_c00380{left:140.764967pt;}
.x58_c00380{left:141.706620pt;}
.x60_c00380{left:142.662880pt;}
.x14_c00380{left:143.698200pt;}
.xb_c00380{left:144.767653pt;}
.x1_c00380{left:145.806667pt;}
.xc9_c00380{left:151.721333pt;}
.xcd_c00380{left:161.602667pt;}
.xc2_c00380{left:165.434667pt;}
.x61_c00380{left:170.716140pt;}
.x35_c00380{left:171.829759pt;}
.x77_c00380{left:179.141547pt;}
.x15_c00380{left:182.803920pt;}
.xa7_c00380{left:187.389339pt;}
.x90_c00380{left:188.988347pt;}
.x4f_c00380{left:190.177413pt;}
.xbb_c00380{left:192.000000pt;}
.x2_c00380{left:193.053333pt;}
.x47_c00380{left:199.547540pt;}
.x3d_c00380{left:200.755693pt;}
.x16_c00380{left:201.724107pt;}
.xd0_c00380{left:206.364000pt;}
.xa8_c00380{left:207.267835pt;}
.x6d_c00380{left:208.188433pt;}
.xb2_c00380{left:215.781019pt;}
.x9f_c00380{left:216.749333pt;}
.x78_c00380{left:217.720793pt;}
.x69_c00380{left:219.201093pt;}
.x3e_c00380{left:220.139993pt;}
.x3_c00380{left:221.606667pt;}
.x97_c00380{left:226.468347pt;}
.xbc_c00380{left:227.520000pt;}
.x50_c00380{left:229.048333pt;}
.x2e_c00380{left:230.491321pt;}
.xaa_c00380{left:234.988000pt;}
.x83_c00380{left:236.160000pt;}
.xc3_c00380{left:237.488000pt;}
.x25_c00380{left:239.812000pt;}
.xa0_c00380{left:245.741333pt;}
.x79_c00380{left:247.947920pt;}
.xc_c00380{left:250.634867pt;}
.xbe_c00380{left:254.294667pt;}
.x59_c00380{left:258.554047pt;}
.xbd_c00380{left:263.280000pt;}
.x8a_c00380{left:265.532453pt;}
.x81_c00380{left:266.802200pt;}
.x48_c00380{left:268.688133pt;}
.x17_c00380{left:269.910120pt;}
.x84_c00380{left:275.982667pt;}
.x26_c00380{left:279.170667pt;}
.xca_c00380{left:282.809333pt;}
.x6a_c00380{left:287.321487pt;}
.x18_c00380{left:292.889013pt;}
.xa9_c00380{left:293.877421pt;}
.x70_c00380{left:295.509953pt;}
.x51_c00380{left:297.236120pt;}
.xc4_c00380{left:303.177333pt;}
.x98_c00380{left:304.478400pt;}
.x6e_c00380{left:306.272433pt;}
.xd_c00380{left:309.423027pt;}
.x91_c00380{left:315.214933pt;}
.x49_c00380{left:316.909193pt;}
.x52_c00380{left:317.852327pt;}
.x4_c00380{left:319.310667pt;}
.xce_c00380{left:323.068000pt;}
.x85_c00380{left:325.417333pt;}
.x3f_c00380{left:327.454927pt;}
.xc5_c00380{left:332.716000pt;}
.x5a_c00380{left:337.063927pt;}
.x92_c00380{left:343.781973pt;}
.x7a_c00380{left:344.673380pt;}
.xe_c00380{left:348.082253pt;}
.x5_c00380{left:349.772000pt;}
.xb7_c00380{left:353.000011pt;}
.x6b_c00380{left:355.288547pt;}
.x40_c00380{left:356.688700pt;}
.x2f_c00380{left:357.938976pt;}
.x27_c00380{left:358.842667pt;}
.xab_c00380{left:363.057333pt;}
.x53_c00380{left:365.859927pt;}
.x19_c00380{left:368.047093pt;}
.x99_c00380{left:372.634827pt;}
.x62_c00380{left:375.173360pt;}
.xcb_c00380{left:381.921333pt;}
.x7b_c00380{left:383.573960pt;}
.x30_c00380{left:387.461991pt;}
.xac_c00380{left:392.412000pt;}
.x1a_c00380{left:397.810053pt;}
.xa1_c00380{left:402.968000pt;}
.x6c_c00380{left:404.972120pt;}
.x41_c00380{left:406.908127pt;}
.xd1_c00380{left:410.429333pt;}
.xc6_c00380{left:411.434667pt;}
.x86_c00380{left:413.038667pt;}
.x38_c00380{left:416.265333pt;}
.xbf_c00380{left:421.032000pt;}
.x93_c00380{left:422.768427pt;}
.x36_c00380{left:426.267244pt;}
.x9a_c00380{left:431.487147pt;}
.x54_c00380{left:435.019773pt;}
.x1b_c00380{left:436.718440pt;}
.xf_c00380{left:437.848453pt;}
.x6_c00380{left:438.824000pt;}
.xad_c00380{left:441.136000pt;}
.x63_c00380{left:444.313813pt;}
.x4a_c00380{left:445.357360pt;}
.xb3_c00380{left:450.976259pt;}
.x7c_c00380{left:452.975000pt;}
.x31_c00380{left:455.191571pt;}
.x37_c00380{left:456.992129pt;}
.xcf_c00380{left:459.672000pt;}
.xa2_c00380{left:461.073333pt;}
.x5b_c00380{left:464.061447pt;}
.x28_c00380{left:465.660000pt;}
.xc0_c00380{left:470.469333pt;}
.x8b_c00380{left:472.470107pt;}
.x64_c00380{left:473.567133pt;}
.x1c_c00380{left:476.777507pt;}
.xae_c00380{left:480.764000pt;}
.x5c_c00380{left:483.986947pt;}
.x29_c00380{left:485.821333pt;}
.x7d_c00380{left:492.311580pt;}
.x87_c00380{left:493.466667pt;}
.x7_c00380{left:497.846667pt;}
.xc7_c00380{left:500.001333pt;}
.x8c_c00380{left:501.759813pt;}
.x4b_c00380{left:504.406227pt;}
.x1d_c00380{left:506.567133pt;}
.xaf_c00380{left:510.221333pt;}
.x5d_c00380{left:513.721167pt;}
.x39_c00380{left:514.636000pt;}
.x2a_c00380{left:515.638667pt;}
.xa3_c00380{left:521.133333pt;}
.x71_c00380{left:522.570840pt;}
.x42_c00380{left:524.248553pt;}
.x32_c00380{left:533.902261pt;}
.xcc_c00380{left:538.708000pt;}
.x9b_c00380{left:540.462507pt;}
.x3a_c00380{left:543.926667pt;}
.x6f_c00380{left:545.128433pt;}
.x10_c00380{left:546.592947pt;}
.xd2_c00380{left:548.277333pt;}
.xc8_c00380{left:549.665333pt;}
.x88_c00380{left:551.318667pt;}
.x43_c00380{left:553.775660pt;}
.x1e_c00380{left:554.818280pt;}
.xa4_c00380{left:560.417333pt;}
.x7e_c00380{left:561.925953pt;}
.x65_c00380{left:563.627193pt;}
.x8d_c00380{left:569.942827pt;}
.x2b_c00380{left:571.526667pt;}
.x55_c00380{left:573.506153pt;}
.x8_c00380{left:575.908000pt;}
.x72_c00380{left:581.377480pt;}
.x1f_c00380{left:594.876013pt;}
.x23_c00380{left:599.555347pt;}
.x44_c00380{left:602.504400pt;}
.x2c_c00380{left:604.625333pt;}
.x94_c00380{left:610.503307pt;}
.x4c_c00380{left:613.632353pt;}
.x11_c00380{left:615.238240pt;}
.x9_c00380{left:616.453333pt;}
.xb4_c00380{left:618.639079pt;}
.x8e_c00380{left:620.118853pt;}
.x73_c00380{left:621.476613pt;}
.x5e_c00380{left:622.708013pt;}
.x82_c00380{left:626.366740pt;}
.x89_c00380{left:630.338667pt;}
.x3b_c00380{left:632.010667pt;}
.xb8_c00380{left:639.971381pt;}
.x7f_c00380{left:641.143133pt;}
.x4d_c00380{left:643.398140pt;}
.x20_c00380{left:644.347173pt;}
.x8f_c00380{left:649.407200pt;}
.x5f_c00380{left:652.475587pt;}
.x2d_c00380{left:654.570667pt;}
.xb0_c00380{left:658.868000pt;}
.x66_c00380{left:660.538220pt;}
.x56_c00380{left:662.563500pt;}
.x33_c00380{left:664.000855pt;}
.x95_c00380{left:670.060560pt;}
.x12_c00380{left:675.755693pt;}
.x9c_c00380{left:678.526560pt;}
.x24_c00380{left:680.414013pt;}
.x4e_c00380{left:681.566140pt;}
.x21_c00380{left:684.172907pt;}
.x45_c00380{left:691.353740pt;}
.xa_c00380{left:695.908000pt;}
.x9d_c00380{left:698.691280pt;}
.x13_c00380{left:704.772440pt;}
.xa5_c00380{left:708.126667pt;}
.xb1_c00380{left:709.069333pt;}
.x46_c00380{left:711.971373pt;}
.xb5_c00380{left:718.981509pt;}
.x67_c00380{left:721.374293pt;}
.x3c_c00380{left:722.989333pt;}
.xb9_c00380{left:728.588387pt;}
.x74_c00380{left:730.218847pt;}
.x34_c00380{left:732.445169pt;}
.x96_c00380{left:739.475760pt;}
.x68_c00380{left:740.779173pt;}
.x22_c00380{left:744.664173pt;}
.xb6_c00380{left:748.252240pt;}
.x80_c00380{left:749.214087pt;}
.x57_c00380{left:751.614180pt;}
.x9e_c00380{left:759.178747pt;}
.x75_c00380{left:807.490327pt;}
}





/* 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_c00381 {
    display:none;
  }
  .loading-indicator_c00381.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00381 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_c00381 { 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_c00381" -> "#page-container .classname_c00381")
 */
.pf_c00381 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00381 { /* 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_c00381.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00381 { /* 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_c00381 { /* 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_c00381 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00381 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00381 {overflow:visible;}
  }
}
.c_c00381 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00381 { /* 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_c00381:after { /* webkit #35443 */
  content: '';
}
.t_c00381:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00381 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 */
}
.__c00381 { /* 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_c00381 { /* info for Javascript */
  display:none;
}
.l_c00381 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00381 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00381 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00381: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_c00381 {
    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_c00381.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00381.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_c00381 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00381{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00381;src:url('chunks/assets/font_91338875028c1bc55e42d757.woff2')format("woff");}.ff1_c00381{font-family:ff1_c00381;line-height:1.000000;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;}
.m76_c00381{transform:matrix(0.012493,0.000212,-0.004249,0.249964,0,0);-ms-transform:matrix(0.012493,0.000212,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.012493,0.000212,-0.004249,0.249964,0,0);}
.m6d_c00381{transform:matrix(0.040560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.040560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.040560,0.000000,0.000000,0.250000,0,0);}
.m1d_c00381{transform:matrix(0.041160,-0.000659,0.003999,0.249968,0,0);-ms-transform:matrix(0.041160,-0.000659,0.003999,0.249968,0,0);-webkit-transform:matrix(0.041160,-0.000659,0.003999,0.249968,0,0);}
.m1c_c00381{transform:matrix(0.045449,-0.000727,0.003999,0.249968,0,0);-ms-transform:matrix(0.045449,-0.000727,0.003999,0.249968,0,0);-webkit-transform:matrix(0.045449,-0.000727,0.003999,0.249968,0,0);}
.m3d_c00381{transform:matrix(0.091425,-0.001371,0.003750,0.249972,0,0);-ms-transform:matrix(0.091425,-0.001371,0.003750,0.249972,0,0);-webkit-transform:matrix(0.091425,-0.001371,0.003750,0.249972,0,0);}
.m58_c00381{transform:matrix(0.143560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143560,0.000000,0.000000,0.250000,0,0);}
.m77_c00381{transform:matrix(0.151778,0.002580,-0.004249,0.249964,0,0);-ms-transform:matrix(0.151778,0.002580,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.151778,0.002580,-0.004249,0.249964,0,0);}
.m78_c00381{transform:matrix(0.154988,0.002635,-0.004249,0.249964,0,0);-ms-transform:matrix(0.154988,0.002635,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.154988,0.002635,-0.004249,0.249964,0,0);}
.m6e_c00381{transform:matrix(0.161030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161030,0.000000,0.000000,0.250000,0,0);}
.m79_c00381{transform:matrix(0.162911,0.002769,-0.004249,0.249964,0,0);-ms-transform:matrix(0.162911,0.002769,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.162911,0.002769,-0.004249,0.249964,0,0);}
.m6c_c00381{transform:matrix(0.166105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166105,0.000000,0.000000,0.250000,0,0);}
.m6b_c00381{transform:matrix(0.167245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167245,0.000000,0.000000,0.250000,0,0);}
.m41_c00381{transform:matrix(0.167436,-0.002512,0.003750,0.249972,0,0);-ms-transform:matrix(0.167436,-0.002512,0.003750,0.249972,0,0);-webkit-transform:matrix(0.167436,-0.002512,0.003750,0.249972,0,0);}
.m73_c00381{transform:matrix(0.173835,0.002955,-0.004249,0.249964,0,0);-ms-transform:matrix(0.173835,0.002955,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.173835,0.002955,-0.004249,0.249964,0,0);}
.m11_c00381{transform:matrix(0.177001,0.001239,-0.001750,0.249994,0,0);-ms-transform:matrix(0.177001,0.001239,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.177001,0.001239,-0.001750,0.249994,0,0);}
.m35_c00381{transform:matrix(0.180832,-0.002893,0.003999,0.249968,0,0);-ms-transform:matrix(0.180832,-0.002893,0.003999,0.249968,0,0);-webkit-transform:matrix(0.180832,-0.002893,0.003999,0.249968,0,0);}
.m3e_c00381{transform:matrix(0.181605,-0.002724,0.003750,0.249972,0,0);-ms-transform:matrix(0.181605,-0.002724,0.003750,0.249972,0,0);-webkit-transform:matrix(0.181605,-0.002724,0.003750,0.249972,0,0);}
.m39_c00381{transform:matrix(0.182077,-0.002913,0.003999,0.249968,0,0);-ms-transform:matrix(0.182077,-0.002913,0.003999,0.249968,0,0);-webkit-transform:matrix(0.182077,-0.002913,0.003999,0.249968,0,0);}
.m2c_c00381{transform:matrix(0.182757,-0.002924,0.003999,0.249968,0,0);-ms-transform:matrix(0.182757,-0.002924,0.003999,0.249968,0,0);-webkit-transform:matrix(0.182757,-0.002924,0.003999,0.249968,0,0);}
.m72_c00381{transform:matrix(0.183883,0.003126,-0.004249,0.249964,0,0);-ms-transform:matrix(0.183883,0.003126,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.183883,0.003126,-0.004249,0.249964,0,0);}
.m16_c00381{transform:matrix(0.184470,0.001291,-0.001750,0.249994,0,0);-ms-transform:matrix(0.184470,0.001291,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.184470,0.001291,-0.001750,0.249994,0,0);}
.m6f_c00381{transform:matrix(0.186413,0.003169,-0.004249,0.249964,0,0);-ms-transform:matrix(0.186413,0.003169,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.186413,0.003169,-0.004249,0.249964,0,0);}
.m31_c00381{transform:matrix(0.187806,-0.003005,0.003999,0.249968,0,0);-ms-transform:matrix(0.187806,-0.003005,0.003999,0.249968,0,0);-webkit-transform:matrix(0.187806,-0.003005,0.003999,0.249968,0,0);}
.m14_c00381{transform:matrix(0.188430,0.001319,-0.001750,0.249994,0,0);-ms-transform:matrix(0.188430,0.001319,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.188430,0.001319,-0.001750,0.249994,0,0);}
.m2f_c00381{transform:matrix(0.188441,-0.003015,0.003999,0.249968,0,0);-ms-transform:matrix(0.188441,-0.003015,0.003999,0.249968,0,0);-webkit-transform:matrix(0.188441,-0.003015,0.003999,0.249968,0,0);}
.m40_c00381{transform:matrix(0.188769,-0.002832,0.003750,0.249972,0,0);-ms-transform:matrix(0.188769,-0.002832,0.003750,0.249972,0,0);-webkit-transform:matrix(0.188769,-0.002832,0.003750,0.249972,0,0);}
.m65_c00381{transform:matrix(0.189605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189605,0.000000,0.000000,0.250000,0,0);}
.m2e_c00381{transform:matrix(0.190426,-0.003047,0.003999,0.249968,0,0);-ms-transform:matrix(0.190426,-0.003047,0.003999,0.249968,0,0);-webkit-transform:matrix(0.190426,-0.003047,0.003999,0.249968,0,0);}
.m67_c00381{transform:matrix(0.190900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190900,0.000000,0.000000,0.250000,0,0);}
.m1b_c00381{transform:matrix(0.192595,-0.003082,0.003999,0.249968,0,0);-ms-transform:matrix(0.192595,-0.003082,0.003999,0.249968,0,0);-webkit-transform:matrix(0.192595,-0.003082,0.003999,0.249968,0,0);}
.m70_c00381{transform:matrix(0.195147,0.003317,-0.004249,0.249964,0,0);-ms-transform:matrix(0.195147,0.003317,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.195147,0.003317,-0.004249,0.249964,0,0);}
.mc_c00381{transform:matrix(0.198640,0.001390,-0.001750,0.249994,0,0);-ms-transform:matrix(0.198640,0.001390,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.198640,0.001390,-0.001750,0.249994,0,0);}
.m37_c00381{transform:matrix(0.198855,-0.003182,0.003999,0.249968,0,0);-ms-transform:matrix(0.198855,-0.003182,0.003999,0.249968,0,0);-webkit-transform:matrix(0.198855,-0.003182,0.003999,0.249968,0,0);}
.m43_c00381{transform:matrix(0.199163,-0.002987,0.003750,0.249972,0,0);-ms-transform:matrix(0.199163,-0.002987,0.003750,0.249972,0,0);-webkit-transform:matrix(0.199163,-0.002987,0.003750,0.249972,0,0);}
.m32_c00381{transform:matrix(0.203039,-0.003249,0.003999,0.249968,0,0);-ms-transform:matrix(0.203039,-0.003249,0.003999,0.249968,0,0);-webkit-transform:matrix(0.203039,-0.003249,0.003999,0.249968,0,0);}
.m74_c00381{transform:matrix(0.204330,0.003474,-0.004249,0.249964,0,0);-ms-transform:matrix(0.204330,0.003474,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.204330,0.003474,-0.004249,0.249964,0,0);}
.m3f_c00381{transform:matrix(0.204442,-0.003067,0.003750,0.249972,0,0);-ms-transform:matrix(0.204442,-0.003067,0.003750,0.249972,0,0);-webkit-transform:matrix(0.204442,-0.003067,0.003750,0.249972,0,0);}
.m61_c00381{transform:matrix(0.205455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205455,0.000000,0.000000,0.250000,0,0);}
.m42_c00381{transform:matrix(0.208727,-0.003131,0.003750,0.249972,0,0);-ms-transform:matrix(0.208727,-0.003131,0.003750,0.249972,0,0);-webkit-transform:matrix(0.208727,-0.003131,0.003750,0.249972,0,0);}
.m44_c00381{transform:matrix(0.211186,-0.003168,0.003750,0.249972,0,0);-ms-transform:matrix(0.211186,-0.003168,0.003750,0.249972,0,0);-webkit-transform:matrix(0.211186,-0.003168,0.003750,0.249972,0,0);}
.mf_c00381{transform:matrix(0.211755,0.001482,-0.001750,0.249994,0,0);-ms-transform:matrix(0.211755,0.001482,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.211755,0.001482,-0.001750,0.249994,0,0);}
.m18_c00381{transform:matrix(0.212950,0.001491,-0.001750,0.249994,0,0);-ms-transform:matrix(0.212950,0.001491,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.212950,0.001491,-0.001750,0.249994,0,0);}
.m34_c00381{transform:matrix(0.218732,-0.003500,0.003999,0.249968,0,0);-ms-transform:matrix(0.218732,-0.003500,0.003999,0.249968,0,0);-webkit-transform:matrix(0.218732,-0.003500,0.003999,0.249968,0,0);}
.m56_c00381{transform:matrix(0.223675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223675,0.000000,0.000000,0.250000,0,0);}
.m7a_c00381{transform:matrix(0.224233,0.003812,-0.004249,0.249964,0,0);-ms-transform:matrix(0.224233,0.003812,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.224233,0.003812,-0.004249,0.249964,0,0);}
.m3a_c00381{transform:matrix(0.225641,-0.003610,0.003999,0.249968,0,0);-ms-transform:matrix(0.225641,-0.003610,0.003999,0.249968,0,0);-webkit-transform:matrix(0.225641,-0.003610,0.003999,0.249968,0,0);}
.m64_c00381{transform:matrix(0.225775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225775,0.000000,0.000000,0.250000,0,0);}
.m15_c00381{transform:matrix(0.227149,0.001590,-0.001750,0.249994,0,0);-ms-transform:matrix(0.227149,0.001590,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.227149,0.001590,-0.001750,0.249994,0,0);}
.m22_c00381{transform:matrix(0.229496,-0.003672,0.003999,0.249968,0,0);-ms-transform:matrix(0.229496,-0.003672,0.003999,0.249968,0,0);-webkit-transform:matrix(0.229496,-0.003672,0.003999,0.249968,0,0);}
.m46_c00381{transform:matrix(0.231459,-0.003472,0.003750,0.249972,0,0);-ms-transform:matrix(0.231459,-0.003472,0.003750,0.249972,0,0);-webkit-transform:matrix(0.231459,-0.003472,0.003750,0.249972,0,0);}
.m71_c00381{transform:matrix(0.232351,0.003950,-0.004249,0.249964,0,0);-ms-transform:matrix(0.232351,0.003950,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.232351,0.003950,-0.004249,0.249964,0,0);}
.m33_c00381{transform:matrix(0.233065,-0.003729,0.003999,0.249968,0,0);-ms-transform:matrix(0.233065,-0.003729,0.003999,0.249968,0,0);-webkit-transform:matrix(0.233065,-0.003729,0.003999,0.249968,0,0);}
.m30_c00381{transform:matrix(0.237465,-0.003799,0.003999,0.249968,0,0);-ms-transform:matrix(0.237465,-0.003799,0.003999,0.249968,0,0);-webkit-transform:matrix(0.237465,-0.003799,0.003999,0.249968,0,0);}
.ma_c00381{transform:matrix(0.237664,0.001664,-0.001750,0.249994,0,0);-ms-transform:matrix(0.237664,0.001664,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.237664,0.001664,-0.001750,0.249994,0,0);}
.m24_c00381{transform:matrix(0.237800,-0.003805,0.003999,0.249968,0,0);-ms-transform:matrix(0.237800,-0.003805,0.003999,0.249968,0,0);-webkit-transform:matrix(0.237800,-0.003805,0.003999,0.249968,0,0);}
.m17_c00381{transform:matrix(0.238244,0.001668,-0.001750,0.249994,0,0);-ms-transform:matrix(0.238244,0.001668,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.238244,0.001668,-0.001750,0.249994,0,0);}
.m54_c00381{transform:matrix(0.238605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238605,0.000000,0.000000,0.250000,0,0);}
.m27_c00381{transform:matrix(0.238674,-0.003819,0.003999,0.249968,0,0);-ms-transform:matrix(0.238674,-0.003819,0.003999,0.249968,0,0);-webkit-transform:matrix(0.238674,-0.003819,0.003999,0.249968,0,0);}
.m13_c00381{transform:matrix(0.242619,0.001698,-0.001750,0.249994,0,0);-ms-transform:matrix(0.242619,0.001698,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.242619,0.001698,-0.001750,0.249994,0,0);}
.m10_c00381{transform:matrix(0.242724,0.001699,-0.001750,0.249994,0,0);-ms-transform:matrix(0.242724,0.001699,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.242724,0.001699,-0.001750,0.249994,0,0);}
.m29_c00381{transform:matrix(0.246818,-0.003949,0.003999,0.249968,0,0);-ms-transform:matrix(0.246818,-0.003949,0.003999,0.249968,0,0);-webkit-transform:matrix(0.246818,-0.003949,0.003999,0.249968,0,0);}
.m45_c00381{transform:matrix(0.248887,-0.003733,0.003750,0.249972,0,0);-ms-transform:matrix(0.248887,-0.003733,0.003750,0.249972,0,0);-webkit-transform:matrix(0.248887,-0.003733,0.003750,0.249972,0,0);}
.m5f_c00381{transform:matrix(0.249235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249235,0.000000,0.000000,0.250000,0,0);}
.m69_c00381{transform:matrix(0.251405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251405,0.000000,0.000000,0.250000,0,0);}
.m38_c00381{transform:matrix(0.252938,-0.004047,0.003999,0.249968,0,0);-ms-transform:matrix(0.252938,-0.004047,0.003999,0.249968,0,0);-webkit-transform:matrix(0.252938,-0.004047,0.003999,0.249968,0,0);}
.m3b_c00381{transform:matrix(0.254560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254560,0.000000,0.000000,0.250000,0,0);}
.m5b_c00381{transform:matrix(0.259510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259510,0.000000,0.000000,0.250000,0,0);}
.me_c00381{transform:matrix(0.264539,0.001852,-0.001750,0.249994,0,0);-ms-transform:matrix(0.264539,0.001852,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.264539,0.001852,-0.001750,0.249994,0,0);}
.m57_c00381{transform:matrix(0.264550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264550,0.000000,0.000000,0.250000,0,0);}
.m36_c00381{transform:matrix(0.264656,-0.004234,0.003999,0.249968,0,0);-ms-transform:matrix(0.264656,-0.004234,0.003999,0.249968,0,0);-webkit-transform:matrix(0.264656,-0.004234,0.003999,0.249968,0,0);}
.m68_c00381{transform:matrix(0.264900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264900,0.000000,0.000000,0.250000,0,0);}
.m53_c00381{transform:matrix(0.265165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265165,0.000000,0.000000,0.250000,0,0);}
.md_c00381{transform:matrix(0.267933,0.001876,-0.001750,0.249994,0,0);-ms-transform:matrix(0.267933,0.001876,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.267933,0.001876,-0.001750,0.249994,0,0);}
.m66_c00381{transform:matrix(0.268765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268765,0.000000,0.000000,0.250000,0,0);}
.m21_c00381{transform:matrix(0.269800,-0.004317,0.003999,0.249968,0,0);-ms-transform:matrix(0.269800,-0.004317,0.003999,0.249968,0,0);-webkit-transform:matrix(0.269800,-0.004317,0.003999,0.249968,0,0);}
.m6_c00381{transform:matrix(0.270253,0.001892,-0.001750,0.249994,0,0);-ms-transform:matrix(0.270253,0.001892,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.270253,0.001892,-0.001750,0.249994,0,0);}
.m26_c00381{transform:matrix(0.271095,-0.004338,0.003999,0.249968,0,0);-ms-transform:matrix(0.271095,-0.004338,0.003999,0.249968,0,0);-webkit-transform:matrix(0.271095,-0.004338,0.003999,0.249968,0,0);}
.m20_c00381{transform:matrix(0.274020,-0.004384,0.003999,0.249968,0,0);-ms-transform:matrix(0.274020,-0.004384,0.003999,0.249968,0,0);-webkit-transform:matrix(0.274020,-0.004384,0.003999,0.249968,0,0);}
.m4f_c00381{transform:matrix(0.278314,-0.004175,0.003750,0.249972,0,0);-ms-transform:matrix(0.278314,-0.004175,0.003750,0.249972,0,0);-webkit-transform:matrix(0.278314,-0.004175,0.003750,0.249972,0,0);}
.m52_c00381{transform:matrix(0.280855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280855,0.000000,0.000000,0.250000,0,0);}
.m23_c00381{transform:matrix(0.280969,-0.004496,0.003999,0.249968,0,0);-ms-transform:matrix(0.280969,-0.004496,0.003999,0.249968,0,0);-webkit-transform:matrix(0.280969,-0.004496,0.003999,0.249968,0,0);}
.m28_c00381{transform:matrix(0.281094,-0.004498,0.003999,0.249968,0,0);-ms-transform:matrix(0.281094,-0.004498,0.003999,0.249968,0,0);-webkit-transform:matrix(0.281094,-0.004498,0.003999,0.249968,0,0);}
.mb_c00381{transform:matrix(0.282043,0.001974,-0.001750,0.249994,0,0);-ms-transform:matrix(0.282043,0.001974,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.282043,0.001974,-0.001750,0.249994,0,0);}
.m4b_c00381{transform:matrix(0.282733,-0.004241,0.003750,0.249972,0,0);-ms-transform:matrix(0.282733,-0.004241,0.003750,0.249972,0,0);-webkit-transform:matrix(0.282733,-0.004241,0.003750,0.249972,0,0);}
.m5a_c00381{transform:matrix(0.293510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293510,0.000000,0.000000,0.250000,0,0);}
.m4a_c00381{transform:matrix(0.294517,-0.004418,0.003750,0.249972,0,0);-ms-transform:matrix(0.294517,-0.004418,0.003750,0.249972,0,0);-webkit-transform:matrix(0.294517,-0.004418,0.003750,0.249972,0,0);}
.m9_c00381{transform:matrix(0.296653,0.002077,-0.001750,0.249994,0,0);-ms-transform:matrix(0.296653,0.002077,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.296653,0.002077,-0.001750,0.249994,0,0);}
.m1f_c00381{transform:matrix(0.299402,-0.004790,0.003999,0.249968,0,0);-ms-transform:matrix(0.299402,-0.004790,0.003999,0.249968,0,0);-webkit-transform:matrix(0.299402,-0.004790,0.003999,0.249968,0,0);}
.m55_c00381{transform:matrix(0.301670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301670,0.000000,0.000000,0.250000,0,0);}
.m4e_c00381{transform:matrix(0.303126,-0.004547,0.003750,0.249972,0,0);-ms-transform:matrix(0.303126,-0.004547,0.003750,0.249972,0,0);-webkit-transform:matrix(0.303126,-0.004547,0.003750,0.249972,0,0);}
.m4_c00381{transform:matrix(0.303533,0.002125,-0.001750,0.249994,0,0);-ms-transform:matrix(0.303533,0.002125,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.303533,0.002125,-0.001750,0.249994,0,0);}
.m75_c00381{transform:matrix(0.309440,0.005260,-0.004249,0.249964,0,0);-ms-transform:matrix(0.309440,0.005260,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.309440,0.005260,-0.004249,0.249964,0,0);}
.m59_c00381{transform:matrix(0.310395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310395,0.000000,0.000000,0.250000,0,0);}
.m60_c00381{transform:matrix(0.310900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310900,0.000000,0.000000,0.250000,0,0);}
.m2d_c00381{transform:matrix(0.311985,-0.004992,0.003999,0.249968,0,0);-ms-transform:matrix(0.311985,-0.004992,0.003999,0.249968,0,0);-webkit-transform:matrix(0.311985,-0.004992,0.003999,0.249968,0,0);}
.m1_c00381{transform:matrix(0.316222,0.002214,-0.001750,0.249994,0,0);-ms-transform:matrix(0.316222,0.002214,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.316222,0.002214,-0.001750,0.249994,0,0);}
.m2_c00381{transform:matrix(0.318827,0.002232,-0.001750,0.249994,0,0);-ms-transform:matrix(0.318827,0.002232,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.318827,0.002232,-0.001750,0.249994,0,0);}
.m12_c00381{transform:matrix(0.332057,0.002324,-0.001750,0.249994,0,0);-ms-transform:matrix(0.332057,0.002324,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.332057,0.002324,-0.001750,0.249994,0,0);}
.m8_c00381{transform:matrix(0.338717,0.002371,-0.001750,0.249994,0,0);-ms-transform:matrix(0.338717,0.002371,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.338717,0.002371,-0.001750,0.249994,0,0);}
.m7_c00381{transform:matrix(0.340027,0.002380,-0.001750,0.249994,0,0);-ms-transform:matrix(0.340027,0.002380,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.340027,0.002380,-0.001750,0.249994,0,0);}
.m4d_c00381{transform:matrix(0.341317,-0.005120,0.003750,0.249972,0,0);-ms-transform:matrix(0.341317,-0.005120,0.003750,0.249972,0,0);-webkit-transform:matrix(0.341317,-0.005120,0.003750,0.249972,0,0);}
.m25_c00381{transform:matrix(0.345446,-0.005527,0.003999,0.249968,0,0);-ms-transform:matrix(0.345446,-0.005527,0.003999,0.249968,0,0);-webkit-transform:matrix(0.345446,-0.005527,0.003999,0.249968,0,0);}
.m48_c00381{transform:matrix(0.350916,-0.005264,0.003750,0.249972,0,0);-ms-transform:matrix(0.350916,-0.005264,0.003750,0.249972,0,0);-webkit-transform:matrix(0.350916,-0.005264,0.003750,0.249972,0,0);}
.m49_c00381{transform:matrix(0.352870,-0.005293,0.003750,0.249972,0,0);-ms-transform:matrix(0.352870,-0.005293,0.003750,0.249972,0,0);-webkit-transform:matrix(0.352870,-0.005293,0.003750,0.249972,0,0);}
.m1a_c00381{transform:matrix(0.355624,-0.005690,0.003999,0.249968,0,0);-ms-transform:matrix(0.355624,-0.005690,0.003999,0.249968,0,0);-webkit-transform:matrix(0.355624,-0.005690,0.003999,0.249968,0,0);}
.m63_c00381{transform:matrix(0.370535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370535,0.000000,0.000000,0.250000,0,0);}
.m5c_c00381{transform:matrix(0.372850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372850,0.000000,0.000000,0.250000,0,0);}
.m19_c00381{transform:matrix(0.373641,0.002615,-0.001750,0.249994,0,0);-ms-transform:matrix(0.373641,0.002615,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.373641,0.002615,-0.001750,0.249994,0,0);}
.m3_c00381{transform:matrix(0.387146,0.002710,-0.001750,0.249994,0,0);-ms-transform:matrix(0.387146,0.002710,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.387146,0.002710,-0.001750,0.249994,0,0);}
.m4c_c00381{transform:matrix(0.389226,-0.005838,0.003750,0.249972,0,0);-ms-transform:matrix(0.389226,-0.005838,0.003750,0.249972,0,0);-webkit-transform:matrix(0.389226,-0.005838,0.003750,0.249972,0,0);}
.m5_c00381{transform:matrix(0.390995,0.002737,-0.001750,0.249994,0,0);-ms-transform:matrix(0.390995,0.002737,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.390995,0.002737,-0.001750,0.249994,0,0);}
.m47_c00381{transform:matrix(0.397190,-0.005958,0.003750,0.249972,0,0);-ms-transform:matrix(0.397190,-0.005958,0.003750,0.249972,0,0);-webkit-transform:matrix(0.397190,-0.005958,0.003750,0.249972,0,0);}
.m50_c00381{transform:matrix(0.403200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403200,0.000000,0.000000,0.250000,0,0);}
.m5e_c00381{transform:matrix(0.431345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431345,0.000000,0.000000,0.250000,0,0);}
.m51_c00381{transform:matrix(0.444735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444735,0.000000,0.000000,0.250000,0,0);}
.m0_c00381{transform:matrix(0.535837,0.003751,-0.001750,0.249994,0,0);-ms-transform:matrix(0.535837,0.003751,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.535837,0.003751,-0.001750,0.249994,0,0);}
.m1e_c00381{transform:matrix(0.668379,-0.010694,0.003999,0.249968,0,0);-ms-transform:matrix(0.668379,-0.010694,0.003999,0.249968,0,0);-webkit-transform:matrix(0.668379,-0.010694,0.003999,0.249968,0,0);}
.m3c_c00381{transform:matrix(0.676479,-0.010147,0.003750,0.249972,0,0);-ms-transform:matrix(0.676479,-0.010147,0.003750,0.249972,0,0);-webkit-transform:matrix(0.676479,-0.010147,0.003750,0.249972,0,0);}
.m2b_c00381{transform:matrix(0.789969,-0.012640,0.003999,0.249968,0,0);-ms-transform:matrix(0.789969,-0.012640,0.003999,0.249968,0,0);-webkit-transform:matrix(0.789969,-0.012640,0.003999,0.249968,0,0);}
.m2a_c00381{transform:matrix(0.803317,-0.012853,0.003999,0.249968,0,0);-ms-transform:matrix(0.803317,-0.012853,0.003999,0.249968,0,0);-webkit-transform:matrix(0.803317,-0.012853,0.003999,0.249968,0,0);}
.m6a_c00381{transform:matrix(0.841205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.841205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.841205,0.000000,0.000000,0.250000,0,0);}
.m62_c00381{transform:matrix(1.174095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.174095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.174095,0.000000,0.000000,0.250000,0,0);}
.m5d_c00381{transform:matrix(1.869885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.869885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.869885,0.000000,0.000000,0.250000,0,0);}
.v0_c00381{vertical-align:0.000000px;}
.ls0_c00381{letter-spacing:0.000000px;}
.sc__c00381{text-shadow:none;}
.sc0_c00381{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__c00381{-webkit-text-stroke:0px transparent;}
.sc0_c00381{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00381{word-spacing:0.000000px;}
.fc0_c00381{color:transparent;}
.fs5_c00381{font-size:18.000000px;}
.fsb_c00381{font-size:24.000000px;}
.fs9_c00381{font-size:30.000000px;}
.fs2_c00381{font-size:42.005376px;}
.fs7_c00381{font-size:60.006750px;}
.fs8_c00381{font-size:72.000000px;}
.fs0_c00381{font-size:72.001764px;}
.fs3_c00381{font-size:72.009215px;}
.fsa_c00381{font-size:84.000000px;}
.fs4_c00381{font-size:90.011519px;}
.fs1_c00381{font-size:96.002352px;}
.fs6_c00381{font-size:96.010799px;}
.fsc_c00381{font-size:108.015605px;}
.fsd_c00381{font-size:126.018206px;}
.y0_c00381{bottom:0.000000px;}
.y61_c00381{bottom:515.456308px;}
.y60_c00381{bottom:516.470946px;}
.y5f_c00381{bottom:517.635178px;}
.y5e_c00381{bottom:518.319723px;}
.y5d_c00381{bottom:520.288126px;}
.y5c_c00381{bottom:551.137423px;}
.y5b_c00381{bottom:553.046889px;}
.y5a_c00381{bottom:553.758696px;}
.y59_c00381{bottom:555.059731px;}
.y58_c00381{bottom:555.798058px;}
.y57_c00381{bottom:557.179444px;}
.y56_c00381{bottom:558.634500px;}
.y55_c00381{bottom:779.220000px;}
.y54_c00381{bottom:794.371500px;}
.y53_c00381{bottom:808.618500px;}
.y51_c00381{bottom:845.527500px;}
.y52_c00381{bottom:857.250000px;}
.y48_c00381{bottom:875.304765px;}
.y49_c00381{bottom:876.342997px;}
.y4a_c00381{bottom:877.984582px;}
.y4b_c00381{bottom:879.568380px;}
.y4c_c00381{bottom:880.121077px;}
.y4d_c00381{bottom:880.586212px;}
.y4e_c00381{bottom:881.860822px;}
.y4f_c00381{bottom:884.339212px;}
.y50_c00381{bottom:886.503465px;}
.y3d_c00381{bottom:904.236000px;}
.y3e_c00381{bottom:905.414415px;}
.y3f_c00381{bottom:907.771920px;}
.y40_c00381{bottom:908.553120px;}
.y41_c00381{bottom:910.026487px;}
.y42_c00381{bottom:910.544280px;}
.y43_c00381{bottom:911.018738px;}
.y44_c00381{bottom:912.508125px;}
.y45_c00381{bottom:913.007017px;}
.y46_c00381{bottom:913.420792px;}
.y47_c00381{bottom:914.790075px;}
.y3c_c00381{bottom:930.960000px;}
.y2d_c00381{bottom:944.182848px;}
.y2e_c00381{bottom:944.703984px;}
.y2f_c00381{bottom:945.120420px;}
.y30_c00381{bottom:945.816084px;}
.y31_c00381{bottom:946.469664px;}
.y32_c00381{bottom:947.095716px;}
.y33_c00381{bottom:947.411748px;}
.y34_c00381{bottom:947.706348px;}
.y35_c00381{bottom:947.898492px;}
.y36_c00381{bottom:948.599580px;}
.y37_c00381{bottom:948.881748px;}
.y38_c00381{bottom:949.390680px;}
.y39_c00381{bottom:950.192616px;}
.y3a_c00381{bottom:950.562396px;}
.y3b_c00381{bottom:950.790912px;}
.y20_c00381{bottom:984.407868px;}
.y21_c00381{bottom:986.609976px;}
.y22_c00381{bottom:987.227304px;}
.y23_c00381{bottom:988.213164px;}
.y24_c00381{bottom:988.784316px;}
.y25_c00381{bottom:989.996412px;}
.y26_c00381{bottom:990.574752px;}
.y27_c00381{bottom:990.953880px;}
.y28_c00381{bottom:991.593828px;}
.y29_c00381{bottom:991.968420px;}
.y2a_c00381{bottom:993.143640px;}
.y2b_c00381{bottom:994.772148px;}
.y2c_c00381{bottom:995.949192px;}
.y1b_c00381{bottom:1011.159000px;}
.y1c_c00381{bottom:1013.640840px;}
.y1d_c00381{bottom:1019.882088px;}
.y1e_c00381{bottom:1021.069944px;}
.y1f_c00381{bottom:1022.609712px;}
.y12_c00381{bottom:1057.545045px;}
.ye_c00381{bottom:1057.545553px;}
.y18_c00381{bottom:1057.545667px;}
.y11_c00381{bottom:1057.545754px;}
.y13_c00381{bottom:1057.545765px;}
.y1a_c00381{bottom:1057.545768px;}
.y16_c00381{bottom:1057.545826px;}
.yf_c00381{bottom:1057.546044px;}
.yd_c00381{bottom:1057.546053px;}
.y17_c00381{bottom:1057.546137px;}
.y19_c00381{bottom:1057.546248px;}
.y10_c00381{bottom:1057.546294px;}
.y15_c00381{bottom:1057.546296px;}
.y14_c00381{bottom:1057.546465px;}
.yc_c00381{bottom:1057.546732px;}
.yb_c00381{bottom:1057.547052px;}
.ya_c00381{bottom:1091.784700px;}
.y9_c00381{bottom:1092.192478px;}
.y8_c00381{bottom:1092.632722px;}
.y7_c00381{bottom:1092.949602px;}
.y6_c00381{bottom:1093.641898px;}
.y5_c00381{bottom:1094.505082px;}
.y4_c00381{bottom:1095.028717px;}
.y3_c00381{bottom:1095.544992px;}
.y2_c00381{bottom:1095.725833px;}
.y1_c00381{bottom:1096.291500px;}
.h7_c00381{height:18.000000px;}
.hd_c00381{height:24.000000px;}
.hb_c00381{height:30.000000px;}
.h4_c00381{height:42.005376px;}
.h9_c00381{height:60.006750px;}
.ha_c00381{height:72.000000px;}
.h2_c00381{height:72.001764px;}
.h5_c00381{height:72.009215px;}
.hc_c00381{height:84.000000px;}
.h6_c00381{height:90.011519px;}
.h3_c00381{height:96.002352px;}
.h8_c00381{height:96.010799px;}
.he_c00381{height:108.015605px;}
.hf_c00381{height:126.018206px;}
.h0_c00381{height:1251.450000px;}
.h1_c00381{height:1251.750000px;}
.w0_c00381{width:915.000000px;}
.x0_c00381{left:0.000000px;}
.xb_c00381{left:2.970083px;}
.x19_c00381{left:4.899000px;}
.x29_c00381{left:13.588068px;}
.x36_c00381{left:18.900000px;}
.x58_c00381{left:24.570000px;}
.x57_c00381{left:25.650000px;}
.x56_c00381{left:26.730000px;}
.x37_c00381{left:40.377000px;}
.x4e_c00381{left:42.390000px;}
.x1e_c00381{left:50.799156px;}
.x55_c00381{left:53.730000px;}
.x3f_c00381{left:61.266570px;}
.x45_c00381{left:63.180000px;}
.x1_c00381{left:68.680500px;}
.x2a_c00381{left:71.478048px;}
.xc_c00381{left:102.331944px;}
.x2b_c00381{left:117.666708px;}
.x38_c00381{left:118.938000px;}
.x40_c00381{left:126.181103px;}
.x46_c00381{left:136.080000px;}
.x2_c00381{left:149.490000px;}
.x1a_c00381{left:160.014000px;}
.x47_c00381{left:162.000000px;}
.xd_c00381{left:172.263867px;}
.x3_c00381{left:175.324500px;}
.x2c_c00381{left:194.904348px;}
.x1f_c00381{left:207.415140px;}
.x4f_c00381{left:216.270000px;}
.xe_c00381{left:217.624593px;}
.x41_c00381{left:228.818573px;}
.x5d_c00381{left:233.867336px;}
.x50_c00381{left:236.250000px;}
.x4_c00381{left:249.078000px;}
.x20_c00381{left:262.185888px;}
.x2d_c00381{left:267.542484px;}
.x39_c00381{left:276.105000px;}
.xf_c00381{left:294.306852px;}
.x59_c00381{left:303.760500px;}
.x10_c00381{left:317.527986px;}
.x5_c00381{left:323.883000px;}
.x3a_c00381{left:328.185000px;}
.x2e_c00381{left:337.147284px;}
.x51_c00381{left:338.850000px;}
.x48_c00381{left:346.140000px;}
.x21_c00381{left:361.260720px;}
.x42_c00381{left:362.349570px;}
.x11_c00381{left:370.989101px;}
.x2f_c00381{left:372.278220px;}
.x5a_c00381{left:385.018500px;}
.x43_c00381{left:391.458143px;}
.x22_c00381{left:393.374688px;}
.x12_c00381{left:398.530455px;}
.x30_c00381{left:404.944368px;}
.x23_c00381{left:414.444516px;}
.x31_c00381{left:426.330768px;}
.x5b_c00381{left:428.449500px;}
.x52_c00381{left:439.020000px;}
.x6_c00381{left:447.195000px;}
.x49_c00381{left:448.200000px;}
.x24_c00381{left:450.033888px;}
.x3b_c00381{left:460.929000px;}
.x25_c00381{left:470.820216px;}
.x4a_c00381{left:482.220000px;}
.x13_c00381{left:490.601970px;}
.x3c_c00381{left:492.559500px;}
.x32_c00381{left:504.282504px;}
.x14_c00381{left:526.242213px;}
.x5e_c00381{left:527.603828px;}
.x26_c00381{left:536.113128px;}
.x7_c00381{left:546.094500px;}
.x1b_c00381{left:550.092000px;}
.x4b_c00381{left:567.270000px;}
.x53_c00381{left:580.500000px;}
.x8_c00381{left:591.363000px;}
.x15_c00381{left:601.844420px;}
.x5f_c00381{left:605.646632px;}
.x4c_c00381{left:619.110000px;}
.x1c_c00381{left:624.333000px;}
.x27_c00381{left:626.548224px;}
.x54_c00381{left:635.850000px;}
.x16_c00381{left:637.484663px;}
.x3d_c00381{left:652.696500px;}
.x9_c00381{left:654.255000px;}
.x5c_c00381{left:659.173500px;}
.x33_c00381{left:681.210804px;}
.x4d_c00381{left:689.850000px;}
.x28_c00381{left:691.955136px;}
.xa_c00381{left:712.509000px;}
.x17_c00381{left:714.976964px;}
.x1d_c00381{left:720.568500px;}
.x34_c00381{left:722.232888px;}
.x18_c00381{left:737.118045px;}
.x3e_c00381{left:743.982000px;}
.x35_c00381{left:747.674244px;}
.x44_c00381{left:761.336108px;}
@media print{
.v0_c00381{vertical-align:0.000000pt;}
.ls0_c00381{letter-spacing:0.000000pt;}
.ws0_c00381{word-spacing:0.000000pt;}
.fs5_c00381{font-size:16.000000pt;}
.fsb_c00381{font-size:21.333333pt;}
.fs9_c00381{font-size:26.666667pt;}
.fs2_c00381{font-size:37.338112pt;}
.fs7_c00381{font-size:53.339333pt;}
.fs8_c00381{font-size:64.000000pt;}
.fs0_c00381{font-size:64.001568pt;}
.fs3_c00381{font-size:64.008191pt;}
.fsa_c00381{font-size:74.666667pt;}
.fs4_c00381{font-size:80.010239pt;}
.fs1_c00381{font-size:85.335424pt;}
.fs6_c00381{font-size:85.342933pt;}
.fsc_c00381{font-size:96.013871pt;}
.fsd_c00381{font-size:112.016183pt;}
.y0_c00381{bottom:0.000000pt;}
.y61_c00381{bottom:458.183385pt;}
.y60_c00381{bottom:459.085285pt;}
.y5f_c00381{bottom:460.120159pt;}
.y5e_c00381{bottom:460.728643pt;}
.y5d_c00381{bottom:462.478335pt;}
.y5c_c00381{bottom:489.899932pt;}
.y5b_c00381{bottom:491.597235pt;}
.y5a_c00381{bottom:492.229952pt;}
.y59_c00381{bottom:493.386428pt;}
.y58_c00381{bottom:494.042719pt;}
.y57_c00381{bottom:495.270617pt;}
.y56_c00381{bottom:496.564000pt;}
.y55_c00381{bottom:692.640000pt;}
.y54_c00381{bottom:706.108000pt;}
.y53_c00381{bottom:718.772000pt;}
.y51_c00381{bottom:751.580000pt;}
.y52_c00381{bottom:762.000000pt;}
.y48_c00381{bottom:778.048680pt;}
.y49_c00381{bottom:778.971553pt;}
.y4a_c00381{bottom:780.430740pt;}
.y4b_c00381{bottom:781.838560pt;}
.y4c_c00381{bottom:782.329847pt;}
.y4d_c00381{bottom:782.743300pt;}
.y4e_c00381{bottom:783.876287pt;}
.y4f_c00381{bottom:786.079300pt;}
.y50_c00381{bottom:788.003080pt;}
.y3d_c00381{bottom:803.765333pt;}
.y3e_c00381{bottom:804.812813pt;}
.y3f_c00381{bottom:806.908373pt;}
.y40_c00381{bottom:807.602773pt;}
.y41_c00381{bottom:808.912433pt;}
.y42_c00381{bottom:809.372693pt;}
.y43_c00381{bottom:809.794433pt;}
.y44_c00381{bottom:811.118333pt;}
.y45_c00381{bottom:811.561793pt;}
.y46_c00381{bottom:811.929593pt;}
.y47_c00381{bottom:813.146733pt;}
.y3c_c00381{bottom:827.520000pt;}
.y2d_c00381{bottom:839.273643pt;}
.y2e_c00381{bottom:839.736875pt;}
.y2f_c00381{bottom:840.107040pt;}
.y30_c00381{bottom:840.725408pt;}
.y31_c00381{bottom:841.306368pt;}
.y32_c00381{bottom:841.862859pt;}
.y33_c00381{bottom:842.143776pt;}
.y34_c00381{bottom:842.405643pt;}
.y35_c00381{bottom:842.576437pt;}
.y36_c00381{bottom:843.199627pt;}
.y37_c00381{bottom:843.450443pt;}
.y38_c00381{bottom:843.902827pt;}
.y39_c00381{bottom:844.615659pt;}
.y3a_c00381{bottom:844.944352pt;}
.y3b_c00381{bottom:845.147477pt;}
.y20_c00381{bottom:875.029216pt;}
.y21_c00381{bottom:876.986645pt;}
.y22_c00381{bottom:877.535381pt;}
.y23_c00381{bottom:878.411701pt;}
.y24_c00381{bottom:878.919392pt;}
.y25_c00381{bottom:879.996811pt;}
.y26_c00381{bottom:880.510891pt;}
.y27_c00381{bottom:880.847893pt;}
.y28_c00381{bottom:881.416736pt;}
.y29_c00381{bottom:881.749707pt;}
.y2a_c00381{bottom:882.794347pt;}
.y2b_c00381{bottom:884.241909pt;}
.y2c_c00381{bottom:885.288171pt;}
.y1b_c00381{bottom:898.808000pt;}
.y1c_c00381{bottom:901.014080pt;}
.y1d_c00381{bottom:906.561856pt;}
.y1e_c00381{bottom:907.617728pt;}
.y1f_c00381{bottom:908.986411pt;}
.y12_c00381{bottom:940.040040pt;}
.ye_c00381{bottom:940.040492pt;}
.y18_c00381{bottom:940.040593pt;}
.y11_c00381{bottom:940.040671pt;}
.y13_c00381{bottom:940.040680pt;}
.y1a_c00381{bottom:940.040683pt;}
.y16_c00381{bottom:940.040735pt;}
.yf_c00381{bottom:940.040928pt;}
.yd_c00381{bottom:940.040936pt;}
.y17_c00381{bottom:940.041011pt;}
.y19_c00381{bottom:940.041109pt;}
.y10_c00381{bottom:940.041151pt;}
.y15_c00381{bottom:940.041152pt;}
.y14_c00381{bottom:940.041303pt;}
.yc_c00381{bottom:940.041540pt;}
.yb_c00381{bottom:940.041824pt;}
.ya_c00381{bottom:970.475289pt;}
.y9_c00381{bottom:970.837759pt;}
.y8_c00381{bottom:971.229087pt;}
.y7_c00381{bottom:971.510757pt;}
.y6_c00381{bottom:972.126132pt;}
.y5_c00381{bottom:972.893407pt;}
.y4_c00381{bottom:973.358860pt;}
.y3_c00381{bottom:973.817771pt;}
.y2_c00381{bottom:973.978519pt;}
.y1_c00381{bottom:974.481333pt;}
.h7_c00381{height:16.000000pt;}
.hd_c00381{height:21.333333pt;}
.hb_c00381{height:26.666667pt;}
.h4_c00381{height:37.338112pt;}
.h9_c00381{height:53.339333pt;}
.ha_c00381{height:64.000000pt;}
.h2_c00381{height:64.001568pt;}
.h5_c00381{height:64.008191pt;}
.hc_c00381{height:74.666667pt;}
.h6_c00381{height:80.010239pt;}
.h3_c00381{height:85.335424pt;}
.h8_c00381{height:85.342933pt;}
.he_c00381{height:96.013871pt;}
.hf_c00381{height:112.016183pt;}
.h0_c00381{height:1112.400000pt;}
.h1_c00381{height:1112.666667pt;}
.w0_c00381{width:813.333333pt;}
.x0_c00381{left:0.000000pt;}
.xb_c00381{left:2.640073pt;}
.x19_c00381{left:4.354667pt;}
.x29_c00381{left:12.078283pt;}
.x36_c00381{left:16.800000pt;}
.x58_c00381{left:21.840000pt;}
.x57_c00381{left:22.800000pt;}
.x56_c00381{left:23.760000pt;}
.x37_c00381{left:35.890667pt;}
.x4e_c00381{left:37.680000pt;}
.x1e_c00381{left:45.154805pt;}
.x55_c00381{left:47.760000pt;}
.x3f_c00381{left:54.459173pt;}
.x45_c00381{left:56.160000pt;}
.x1_c00381{left:61.049333pt;}
.x2a_c00381{left:63.536043pt;}
.xc_c00381{left:90.961728pt;}
.x2b_c00381{left:104.592629pt;}
.x38_c00381{left:105.722667pt;}
.x40_c00381{left:112.160980pt;}
.x46_c00381{left:120.960000pt;}
.x2_c00381{left:132.880000pt;}
.x1a_c00381{left:142.234667pt;}
.x47_c00381{left:144.000000pt;}
.xd_c00381{left:153.123437pt;}
.x3_c00381{left:155.844000pt;}
.x2c_c00381{left:173.248309pt;}
.x1f_c00381{left:184.369013pt;}
.x4f_c00381{left:192.240000pt;}
.xe_c00381{left:193.444083pt;}
.x41_c00381{left:203.394287pt;}
.x5d_c00381{left:207.882076pt;}
.x50_c00381{left:210.000000pt;}
.x4_c00381{left:221.402667pt;}
.x20_c00381{left:233.054123pt;}
.x2d_c00381{left:237.815541pt;}
.x39_c00381{left:245.426667pt;}
.xf_c00381{left:261.606091pt;}
.x59_c00381{left:270.009333pt;}
.x10_c00381{left:282.247099pt;}
.x5_c00381{left:287.896000pt;}
.x3a_c00381{left:291.720000pt;}
.x2e_c00381{left:299.686475pt;}
.x51_c00381{left:301.200000pt;}
.x48_c00381{left:307.680000pt;}
.x21_c00381{left:321.120640pt;}
.x42_c00381{left:322.088507pt;}
.x11_c00381{left:329.768089pt;}
.x2f_c00381{left:330.913973pt;}
.x5a_c00381{left:342.238667pt;}
.x43_c00381{left:347.962793pt;}
.x22_c00381{left:349.666389pt;}
.x12_c00381{left:354.249293pt;}
.x30_c00381{left:359.950549pt;}
.x23_c00381{left:368.395125pt;}
.x31_c00381{left:378.960683pt;}
.x5b_c00381{left:380.844000pt;}
.x52_c00381{left:390.240000pt;}
.x6_c00381{left:397.506667pt;}
.x49_c00381{left:398.400000pt;}
.x24_c00381{left:400.030123pt;}
.x3b_c00381{left:409.714667pt;}
.x25_c00381{left:418.506859pt;}
.x4a_c00381{left:428.640000pt;}
.x13_c00381{left:436.090640pt;}
.x3c_c00381{left:437.830667pt;}
.x32_c00381{left:448.251115pt;}
.x14_c00381{left:467.770856pt;}
.x5e_c00381{left:468.981180pt;}
.x26_c00381{left:476.545003pt;}
.x7_c00381{left:485.417333pt;}
.x1b_c00381{left:488.970667pt;}
.x4b_c00381{left:504.240000pt;}
.x53_c00381{left:516.000000pt;}
.x8_c00381{left:525.656000pt;}
.x15_c00381{left:534.972817pt;}
.x5f_c00381{left:538.352561pt;}
.x4c_c00381{left:550.320000pt;}
.x1c_c00381{left:554.962667pt;}
.x27_c00381{left:556.931755pt;}
.x54_c00381{left:565.200000pt;}
.x16_c00381{left:566.653033pt;}
.x3d_c00381{left:580.174667pt;}
.x9_c00381{left:581.560000pt;}
.x5c_c00381{left:585.932000pt;}
.x33_c00381{left:605.520715pt;}
.x4d_c00381{left:613.200000pt;}
.x28_c00381{left:615.071232pt;}
.xa_c00381{left:633.341333pt;}
.x17_c00381{left:635.535079pt;}
.x1d_c00381{left:640.505333pt;}
.x34_c00381{left:641.984789pt;}
.x18_c00381{left:655.216040pt;}
.x3e_c00381{left:661.317333pt;}
.x35_c00381{left:664.599328pt;}
.x44_c00381{left:676.743207pt;}
}





/* 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_c00382 {
    display:none;
  }
  .loading-indicator_c00382.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00382 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_c00382 { 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_c00382" -> "#page-container .classname_c00382")
 */
.pf_c00382 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00382 { /* 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_c00382.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00382 { /* 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_c00382 { /* 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_c00382 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00382 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00382 {overflow:visible;}
  }
}
.c_c00382 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00382 { /* 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_c00382:after { /* webkit #35443 */
  content: '';
}
.t_c00382:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00382 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 */
}
.__c00382 { /* 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_c00382 { /* info for Javascript */
  display:none;
}
.l_c00382 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00382 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00382 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00382: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_c00382 {
    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_c00382.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00382.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_c00382 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00382{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00382;src:url('chunks/assets/font_fabf4b590f7fb32aea93ffb2.woff2')format("woff");}.ff1_c00382{font-family:ff1_c00382;line-height:1.000000;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;}
.m1_c00382{transform:matrix(0.139255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139255,0.000000,0.000000,0.250000,0,0);}
.m111_c00382{transform:matrix(0.180420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180420,0.000000,0.000000,0.250000,0,0);}
.m116_c00382{transform:matrix(0.180470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180470,0.000000,0.000000,0.250000,0,0);}
.m67_c00382{transform:matrix(0.182457,0.002189,-0.003000,0.249982,0,0);-ms-transform:matrix(0.182457,0.002189,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.182457,0.002189,-0.003000,0.249982,0,0);}
.m107_c00382{transform:matrix(0.182525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182525,0.000000,0.000000,0.250000,0,0);}
.m5a_c00382{transform:matrix(0.184212,0.002211,-0.003000,0.249982,0,0);-ms-transform:matrix(0.184212,0.002211,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.184212,0.002211,-0.003000,0.249982,0,0);}
.m5f_c00382{transform:matrix(0.185817,0.002230,-0.003000,0.249982,0,0);-ms-transform:matrix(0.185817,0.002230,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.185817,0.002230,-0.003000,0.249982,0,0);}
.m10f_c00382{transform:matrix(0.187950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187950,0.000000,0.000000,0.250000,0,0);}
.m62_c00382{transform:matrix(0.190816,0.002290,-0.003000,0.249982,0,0);-ms-transform:matrix(0.190816,0.002290,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.190816,0.002290,-0.003000,0.249982,0,0);}
.m3c_c00382{transform:matrix(0.190966,0.002292,-0.003000,0.249982,0,0);-ms-transform:matrix(0.190966,0.002292,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.190966,0.002292,-0.003000,0.249982,0,0);}
.m0_c00382{transform:matrix(0.192355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192355,0.000000,0.000000,0.250000,0,0);}
.m2a_c00382{transform:matrix(0.194336,0.002332,-0.003000,0.249982,0,0);-ms-transform:matrix(0.194336,0.002332,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.194336,0.002332,-0.003000,0.249982,0,0);}
.m2d_c00382{transform:matrix(0.194926,0.002339,-0.003000,0.249982,0,0);-ms-transform:matrix(0.194926,0.002339,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.194926,0.002339,-0.003000,0.249982,0,0);}
.mdd_c00382{transform:matrix(0.196103,0.002942,-0.003750,0.249972,0,0);-ms-transform:matrix(0.196103,0.002942,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.196103,0.002942,-0.003750,0.249972,0,0);}
.m64_c00382{transform:matrix(0.196411,0.002357,-0.003000,0.249982,0,0);-ms-transform:matrix(0.196411,0.002357,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.196411,0.002357,-0.003000,0.249982,0,0);}
.m57_c00382{transform:matrix(0.196721,0.002361,-0.003000,0.249982,0,0);-ms-transform:matrix(0.196721,0.002361,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.196721,0.002361,-0.003000,0.249982,0,0);}
.mff_c00382{transform:matrix(0.197020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197020,0.000000,0.000000,0.250000,0,0);}
.m10e_c00382{transform:matrix(0.197825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197825,0.000000,0.000000,0.250000,0,0);}
.m54_c00382{transform:matrix(0.197931,0.002375,-0.003000,0.249982,0,0);-ms-transform:matrix(0.197931,0.002375,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.197931,0.002375,-0.003000,0.249982,0,0);}
.m113_c00382{transform:matrix(0.198330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198330,0.000000,0.000000,0.250000,0,0);}
.m118_c00382{transform:matrix(0.198375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198375,0.000000,0.000000,0.250000,0,0);}
.m65_c00382{transform:matrix(0.198916,0.002387,-0.003000,0.249982,0,0);-ms-transform:matrix(0.198916,0.002387,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.198916,0.002387,-0.003000,0.249982,0,0);}
.m77_c00382{transform:matrix(0.199086,0.002389,-0.003000,0.249982,0,0);-ms-transform:matrix(0.199086,0.002389,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.199086,0.002389,-0.003000,0.249982,0,0);}
.m12a_c00382{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m103_c00382{transform:matrix(0.199295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199295,0.000000,0.000000,0.250000,0,0);}
.m11d_c00382{transform:matrix(0.200310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200310,0.000000,0.000000,0.250000,0,0);}
.m109_c00382{transform:matrix(0.201690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201690,0.000000,0.000000,0.250000,0,0);}
.m123_c00382{transform:matrix(0.202030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202030,0.000000,0.000000,0.250000,0,0);}
.m10a_c00382{transform:matrix(0.202515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202515,0.000000,0.000000,0.250000,0,0);}
.m11c_c00382{transform:matrix(0.203200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203200,0.000000,0.000000,0.250000,0,0);}
.m60_c00382{transform:matrix(0.203480,0.002442,-0.003000,0.249982,0,0);-ms-transform:matrix(0.203480,0.002442,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.203480,0.002442,-0.003000,0.249982,0,0);}
.m10b_c00382{transform:matrix(0.203870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203870,0.000000,0.000000,0.250000,0,0);}
.m3b_c00382{transform:matrix(0.204175,0.002450,-0.003000,0.249982,0,0);-ms-transform:matrix(0.204175,0.002450,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.204175,0.002450,-0.003000,0.249982,0,0);}
.m26_c00382{transform:matrix(0.204445,0.002453,-0.003000,0.249982,0,0);-ms-transform:matrix(0.204445,0.002453,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.204445,0.002453,-0.003000,0.249982,0,0);}
.m105_c00382{transform:matrix(0.204870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204870,0.000000,0.000000,0.250000,0,0);}
.m108_c00382{transform:matrix(0.205995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205995,0.000000,0.000000,0.250000,0,0);}
.m5b_c00382{transform:matrix(0.206815,0.002482,-0.003000,0.249982,0,0);-ms-transform:matrix(0.206815,0.002482,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.206815,0.002482,-0.003000,0.249982,0,0);}
.m33_c00382{transform:matrix(0.207410,0.002489,-0.003000,0.249982,0,0);-ms-transform:matrix(0.207410,0.002489,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.207410,0.002489,-0.003000,0.249982,0,0);}
.m110_c00382{transform:matrix(0.207610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207610,0.000000,0.000000,0.250000,0,0);}
.m10c_c00382{transform:matrix(0.207710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207710,0.000000,0.000000,0.250000,0,0);}
.me_c00382{transform:matrix(0.208000,0.002496,-0.003000,0.249982,0,0);-ms-transform:matrix(0.208000,0.002496,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.208000,0.002496,-0.003000,0.249982,0,0);}
.m5e_c00382{transform:matrix(0.208290,0.002499,-0.003000,0.249982,0,0);-ms-transform:matrix(0.208290,0.002499,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.208290,0.002499,-0.003000,0.249982,0,0);}
.mba_c00382{transform:matrix(0.208445,0.003544,-0.004249,0.249964,0,0);-ms-transform:matrix(0.208445,0.003544,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.208445,0.003544,-0.004249,0.249964,0,0);}
.me4_c00382{transform:matrix(0.209196,0.003138,-0.003750,0.249972,0,0);-ms-transform:matrix(0.209196,0.003138,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.209196,0.003138,-0.003750,0.249972,0,0);}
.m114_c00382{transform:matrix(0.209385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209385,0.000000,0.000000,0.250000,0,0);}
.mde_c00382{transform:matrix(0.210806,0.003162,-0.003750,0.249972,0,0);-ms-transform:matrix(0.210806,0.003162,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.210806,0.003162,-0.003750,0.249972,0,0);}
.m117_c00382{transform:matrix(0.211020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211020,0.000000,0.000000,0.250000,0,0);}
.m9c_c00382{transform:matrix(0.211188,0.003379,-0.003999,0.249968,0,0);-ms-transform:matrix(0.211188,0.003379,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.211188,0.003379,-0.003999,0.249968,0,0);}
.m19_c00382{transform:matrix(0.211200,0.002534,-0.003000,0.249982,0,0);-ms-transform:matrix(0.211200,0.002534,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.211200,0.002534,-0.003000,0.249982,0,0);}
.m10d_c00382{transform:matrix(0.211695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211695,0.000000,0.000000,0.250000,0,0);}
.m21_c00382{transform:matrix(0.211855,0.002542,-0.003000,0.249982,0,0);-ms-transform:matrix(0.211855,0.002542,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.211855,0.002542,-0.003000,0.249982,0,0);}
.m68_c00382{transform:matrix(0.212705,0.002552,-0.003000,0.249982,0,0);-ms-transform:matrix(0.212705,0.002552,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.212705,0.002552,-0.003000,0.249982,0,0);}
.ma8_c00382{transform:matrix(0.212929,0.003620,-0.004249,0.249964,0,0);-ms-transform:matrix(0.212929,0.003620,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.212929,0.003620,-0.004249,0.249964,0,0);}
.maa_c00382{transform:matrix(0.212964,0.003620,-0.004249,0.249964,0,0);-ms-transform:matrix(0.212964,0.003620,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.212964,0.003620,-0.004249,0.249964,0,0);}
.m112_c00382{transform:matrix(0.213135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213135,0.000000,0.000000,0.250000,0,0);}
.mc_c00382{transform:matrix(0.213255,0.002559,-0.003000,0.249982,0,0);-ms-transform:matrix(0.213255,0.002559,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.213255,0.002559,-0.003000,0.249982,0,0);}
.m25_c00382{transform:matrix(0.213450,0.002561,-0.003000,0.249982,0,0);-ms-transform:matrix(0.213450,0.002561,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.213450,0.002561,-0.003000,0.249982,0,0);}
.m35_c00382{transform:matrix(0.213595,0.002563,-0.003000,0.249982,0,0);-ms-transform:matrix(0.213595,0.002563,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.213595,0.002563,-0.003000,0.249982,0,0);}
.mf8_c00382{transform:matrix(0.213811,0.001924,-0.002250,0.249990,0,0);-ms-transform:matrix(0.213811,0.001924,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.213811,0.001924,-0.002250,0.249990,0,0);}
.m119_c00382{transform:matrix(0.214490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214490,0.000000,0.000000,0.250000,0,0);}
.m66_c00382{transform:matrix(0.214785,0.002577,-0.003000,0.249982,0,0);-ms-transform:matrix(0.214785,0.002577,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.214785,0.002577,-0.003000,0.249982,0,0);}
.mc1_c00382{transform:matrix(0.215674,0.003666,-0.004249,0.249964,0,0);-ms-transform:matrix(0.215674,0.003666,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.215674,0.003666,-0.004249,0.249964,0,0);}
.mad_c00382{transform:matrix(0.215684,0.003667,-0.004249,0.249964,0,0);-ms-transform:matrix(0.215684,0.003667,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.215684,0.003667,-0.004249,0.249964,0,0);}
.mf3_c00382{transform:matrix(0.215706,0.001941,-0.002250,0.249990,0,0);-ms-transform:matrix(0.215706,0.001941,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.215706,0.001941,-0.002250,0.249990,0,0);}
.m12b_c00382{transform:matrix(0.215735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215735,0.000000,0.000000,0.250000,0,0);}
.mc3_c00382{transform:matrix(0.216304,0.003677,-0.004249,0.249964,0,0);-ms-transform:matrix(0.216304,0.003677,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.216304,0.003677,-0.004249,0.249964,0,0);}
.m79_c00382{transform:matrix(0.216384,0.002597,-0.003000,0.249982,0,0);-ms-transform:matrix(0.216384,0.002597,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.216384,0.002597,-0.003000,0.249982,0,0);}
.me0_c00382{transform:matrix(0.216861,0.003253,-0.003750,0.249972,0,0);-ms-transform:matrix(0.216861,0.003253,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.216861,0.003253,-0.003750,0.249972,0,0);}
.m39_c00382{transform:matrix(0.216979,0.002604,-0.003000,0.249982,0,0);-ms-transform:matrix(0.216979,0.002604,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.216979,0.002604,-0.003000,0.249982,0,0);}
.m61_c00382{transform:matrix(0.217029,0.002604,-0.003000,0.249982,0,0);-ms-transform:matrix(0.217029,0.002604,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.217029,0.002604,-0.003000,0.249982,0,0);}
.m1d_c00382{transform:matrix(0.217839,0.002614,-0.003000,0.249982,0,0);-ms-transform:matrix(0.217839,0.002614,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.217839,0.002614,-0.003000,0.249982,0,0);}
.m125_c00382{transform:matrix(0.217875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217875,0.000000,0.000000,0.250000,0,0);}
.m124_c00382{transform:matrix(0.218205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218205,0.000000,0.000000,0.250000,0,0);}
.m127_c00382{transform:matrix(0.218695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218695,0.000000,0.000000,0.250000,0,0);}
.m15_c00382{transform:matrix(0.218924,0.002627,-0.003000,0.249982,0,0);-ms-transform:matrix(0.218924,0.002627,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.218924,0.002627,-0.003000,0.249982,0,0);}
.m102_c00382{transform:matrix(0.220380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220380,0.000000,0.000000,0.250000,0,0);}
.m126_c00382{transform:matrix(0.220670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220670,0.000000,0.000000,0.250000,0,0);}
.ma6_c00382{transform:matrix(0.220843,0.003754,-0.004249,0.249964,0,0);-ms-transform:matrix(0.220843,0.003754,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.220843,0.003754,-0.004249,0.249964,0,0);}
.m129_c00382{transform:matrix(0.221105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221105,0.000000,0.000000,0.250000,0,0);}
.mf_c00382{transform:matrix(0.221439,0.002657,-0.003000,0.249982,0,0);-ms-transform:matrix(0.221439,0.002657,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.221439,0.002657,-0.003000,0.249982,0,0);}
.m78_c00382{transform:matrix(0.221544,0.002659,-0.003000,0.249982,0,0);-ms-transform:matrix(0.221544,0.002659,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.221544,0.002659,-0.003000,0.249982,0,0);}
.ma9_c00382{transform:matrix(0.221648,0.003768,-0.004249,0.249964,0,0);-ms-transform:matrix(0.221648,0.003768,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.221648,0.003768,-0.004249,0.249964,0,0);}
.mdf_c00382{transform:matrix(0.222085,0.003331,-0.003750,0.249972,0,0);-ms-transform:matrix(0.222085,0.003331,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.222085,0.003331,-0.003750,0.249972,0,0);}
.mf0_c00382{transform:matrix(0.222246,0.002000,-0.002250,0.249990,0,0);-ms-transform:matrix(0.222246,0.002000,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.222246,0.002000,-0.002250,0.249990,0,0);}
.m106_c00382{transform:matrix(0.222435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222435,0.000000,0.000000,0.250000,0,0);}
.m8a_c00382{transform:matrix(0.222597,0.003562,-0.003999,0.249968,0,0);-ms-transform:matrix(0.222597,0.003562,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.222597,0.003562,-0.003999,0.249968,0,0);}
.m63_c00382{transform:matrix(0.222934,0.002675,-0.003000,0.249982,0,0);-ms-transform:matrix(0.222934,0.002675,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.222934,0.002675,-0.003000,0.249982,0,0);}
.me3_c00382{transform:matrix(0.223130,0.003347,-0.003750,0.249972,0,0);-ms-transform:matrix(0.223130,0.003347,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.223130,0.003347,-0.003750,0.249972,0,0);}
.m1c_c00382{transform:matrix(0.223364,0.002680,-0.003000,0.249982,0,0);-ms-transform:matrix(0.223364,0.002680,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.223364,0.002680,-0.003000,0.249982,0,0);}
.m9b_c00382{transform:matrix(0.224006,0.003584,-0.003999,0.249968,0,0);-ms-transform:matrix(0.224006,0.003584,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.224006,0.003584,-0.003999,0.249968,0,0);}
.m29_c00382{transform:matrix(0.224014,0.002688,-0.003000,0.249982,0,0);-ms-transform:matrix(0.224014,0.002688,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.224014,0.002688,-0.003000,0.249982,0,0);}
.m2b_c00382{transform:matrix(0.224399,0.002693,-0.003000,0.249982,0,0);-ms-transform:matrix(0.224399,0.002693,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.224399,0.002693,-0.003000,0.249982,0,0);}
.m83_c00382{transform:matrix(0.224651,0.003594,-0.003999,0.249968,0,0);-ms-transform:matrix(0.224651,0.003594,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.224651,0.003594,-0.003999,0.249968,0,0);}
.m11a_c00382{transform:matrix(0.224840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224840,0.000000,0.000000,0.250000,0,0);}
.m3f_c00382{transform:matrix(0.224964,0.002700,-0.003000,0.249982,0,0);-ms-transform:matrix(0.224964,0.002700,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.224964,0.002700,-0.003000,0.249982,0,0);}
.mfe_c00382{transform:matrix(0.225920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225920,0.000000,0.000000,0.250000,0,0);}
.ma0_c00382{transform:matrix(0.226322,0.003847,-0.004249,0.249964,0,0);-ms-transform:matrix(0.226322,0.003847,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.226322,0.003847,-0.004249,0.249964,0,0);}
.mf1_c00382{transform:matrix(0.226566,0.002039,-0.002250,0.249990,0,0);-ms-transform:matrix(0.226566,0.002039,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.226566,0.002039,-0.002250,0.249990,0,0);}
.m20_c00382{transform:matrix(0.226614,0.002719,-0.003000,0.249982,0,0);-ms-transform:matrix(0.226614,0.002719,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.226614,0.002719,-0.003000,0.249982,0,0);}
.mf7_c00382{transform:matrix(0.226676,0.002040,-0.002250,0.249990,0,0);-ms-transform:matrix(0.226676,0.002040,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.226676,0.002040,-0.002250,0.249990,0,0);}
.m95_c00382{transform:matrix(0.226716,0.003627,-0.003999,0.249968,0,0);-ms-transform:matrix(0.226716,0.003627,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.226716,0.003627,-0.003999,0.249968,0,0);}
.mc5_c00382{transform:matrix(0.227227,0.003863,-0.004249,0.249964,0,0);-ms-transform:matrix(0.227227,0.003863,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.227227,0.003863,-0.004249,0.249964,0,0);}
.m4b_c00382{transform:matrix(0.227414,0.002729,-0.003000,0.249982,0,0);-ms-transform:matrix(0.227414,0.002729,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.227414,0.002729,-0.003000,0.249982,0,0);}
.m128_c00382{transform:matrix(0.227855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227855,0.000000,0.000000,0.250000,0,0);}
.m121_c00382{transform:matrix(0.228335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228335,0.000000,0.000000,0.250000,0,0);}
.m58_c00382{transform:matrix(0.228429,0.002741,-0.003000,0.249982,0,0);-ms-transform:matrix(0.228429,0.002741,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.228429,0.002741,-0.003000,0.249982,0,0);}
.mf9_c00382{transform:matrix(0.228501,0.002057,-0.002250,0.249990,0,0);-ms-transform:matrix(0.228501,0.002057,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.228501,0.002057,-0.002250,0.249990,0,0);}
.ma_c00382{transform:matrix(0.228549,0.002743,-0.003000,0.249982,0,0);-ms-transform:matrix(0.228549,0.002743,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.228549,0.002743,-0.003000,0.249982,0,0);}
.mce_c00382{transform:matrix(0.228789,0.003432,-0.003750,0.249972,0,0);-ms-transform:matrix(0.228789,0.003432,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.228789,0.003432,-0.003750,0.249972,0,0);}
.m71_c00382{transform:matrix(0.228799,0.002746,-0.003000,0.249982,0,0);-ms-transform:matrix(0.228799,0.002746,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.228799,0.002746,-0.003000,0.249982,0,0);}
.mda_c00382{transform:matrix(0.229189,0.003438,-0.003750,0.249972,0,0);-ms-transform:matrix(0.229189,0.003438,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.229189,0.003438,-0.003750,0.249972,0,0);}
.m97_c00382{transform:matrix(0.229496,0.003672,-0.003999,0.249968,0,0);-ms-transform:matrix(0.229496,0.003672,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.229496,0.003672,-0.003999,0.249968,0,0);}
.md7_c00382{transform:matrix(0.229564,0.003443,-0.003750,0.249972,0,0);-ms-transform:matrix(0.229564,0.003443,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.229564,0.003443,-0.003750,0.249972,0,0);}
.mdb_c00382{transform:matrix(0.229984,0.003450,-0.003750,0.249972,0,0);-ms-transform:matrix(0.229984,0.003450,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.229984,0.003450,-0.003750,0.249972,0,0);}
.m93_c00382{transform:matrix(0.230186,0.003683,-0.003999,0.249968,0,0);-ms-transform:matrix(0.230186,0.003683,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.230186,0.003683,-0.003999,0.249968,0,0);}
.mb4_c00382{transform:matrix(0.230252,0.003914,-0.004249,0.249964,0,0);-ms-transform:matrix(0.230252,0.003914,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.230252,0.003914,-0.004249,0.249964,0,0);}
.m115_c00382{transform:matrix(0.230255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230255,0.000000,0.000000,0.250000,0,0);}
.mb5_c00382{transform:matrix(0.230357,0.003916,-0.004249,0.249964,0,0);-ms-transform:matrix(0.230357,0.003916,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.230357,0.003916,-0.004249,0.249964,0,0);}
.m31_c00382{transform:matrix(0.230413,0.002765,-0.003000,0.249982,0,0);-ms-transform:matrix(0.230413,0.002765,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.230413,0.002765,-0.003000,0.249982,0,0);}
.m56_c00382{transform:matrix(0.230703,0.002768,-0.003000,0.249982,0,0);-ms-transform:matrix(0.230703,0.002768,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.230703,0.002768,-0.003000,0.249982,0,0);}
.m49_c00382{transform:matrix(0.230853,0.002770,-0.003000,0.249982,0,0);-ms-transform:matrix(0.230853,0.002770,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.230853,0.002770,-0.003000,0.249982,0,0);}
.md0_c00382{transform:matrix(0.230869,0.003463,-0.003750,0.249972,0,0);-ms-transform:matrix(0.230869,0.003463,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.230869,0.003463,-0.003750,0.249972,0,0);}
.m4e_c00382{transform:matrix(0.230878,0.002771,-0.003000,0.249982,0,0);-ms-transform:matrix(0.230878,0.002771,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.230878,0.002771,-0.003000,0.249982,0,0);}
.mb8_c00382{transform:matrix(0.230882,0.003925,-0.004249,0.249964,0,0);-ms-transform:matrix(0.230882,0.003925,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.230882,0.003925,-0.004249,0.249964,0,0);}
.m76_c00382{transform:matrix(0.230948,0.002771,-0.003000,0.249982,0,0);-ms-transform:matrix(0.230948,0.002771,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.230948,0.002771,-0.003000,0.249982,0,0);}
.mb1_c00382{transform:matrix(0.231067,0.003928,-0.004249,0.249964,0,0);-ms-transform:matrix(0.231067,0.003928,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.231067,0.003928,-0.004249,0.249964,0,0);}
.m2f_c00382{transform:matrix(0.231403,0.002777,-0.003000,0.249982,0,0);-ms-transform:matrix(0.231403,0.002777,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.231403,0.002777,-0.003000,0.249982,0,0);}
.mf4_c00382{transform:matrix(0.231691,0.002085,-0.002250,0.249990,0,0);-ms-transform:matrix(0.231691,0.002085,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.231691,0.002085,-0.002250,0.249990,0,0);}
.m81_c00382{transform:matrix(0.232255,0.003716,-0.003999,0.249968,0,0);-ms-transform:matrix(0.232255,0.003716,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.232255,0.003716,-0.003999,0.249968,0,0);}
.ma2_c00382{transform:matrix(0.232471,0.003952,-0.004249,0.249964,0,0);-ms-transform:matrix(0.232471,0.003952,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.232471,0.003952,-0.004249,0.249964,0,0);}
.m85_c00382{transform:matrix(0.232565,0.003721,-0.003999,0.249968,0,0);-ms-transform:matrix(0.232565,0.003721,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.232565,0.003721,-0.003999,0.249968,0,0);}
.m7_c00382{transform:matrix(0.232833,0.002794,-0.003000,0.249982,0,0);-ms-transform:matrix(0.232833,0.002794,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.232833,0.002794,-0.003000,0.249982,0,0);}
.m120_c00382{transform:matrix(0.232940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232940,0.000000,0.000000,0.250000,0,0);}
.m2e_c00382{transform:matrix(0.233023,0.002796,-0.003000,0.249982,0,0);-ms-transform:matrix(0.233023,0.002796,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.233023,0.002796,-0.003000,0.249982,0,0);}
.m1b_c00382{transform:matrix(0.233143,0.002798,-0.003000,0.249982,0,0);-ms-transform:matrix(0.233143,0.002798,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.233143,0.002798,-0.003000,0.249982,0,0);}
.m5c_c00382{transform:matrix(0.233593,0.002803,-0.003000,0.249982,0,0);-ms-transform:matrix(0.233593,0.002803,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.233593,0.002803,-0.003000,0.249982,0,0);}
.m4_c00382{transform:matrix(0.233738,0.002805,-0.003000,0.249982,0,0);-ms-transform:matrix(0.233738,0.002805,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.233738,0.002805,-0.003000,0.249982,0,0);}
.m30_c00382{transform:matrix(0.233943,0.002807,-0.003000,0.249982,0,0);-ms-transform:matrix(0.233943,0.002807,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.233943,0.002807,-0.003000,0.249982,0,0);}
.me1_c00382{transform:matrix(0.233979,0.003510,-0.003750,0.249972,0,0);-ms-transform:matrix(0.233979,0.003510,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.233979,0.003510,-0.003750,0.249972,0,0);}
.m4c_c00382{transform:matrix(0.234208,0.002810,-0.003000,0.249982,0,0);-ms-transform:matrix(0.234208,0.002810,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.234208,0.002810,-0.003000,0.249982,0,0);}
.m104_c00382{transform:matrix(0.234225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234225,0.000000,0.000000,0.250000,0,0);}
.mb2_c00382{transform:matrix(0.234226,0.003982,-0.004249,0.249964,0,0);-ms-transform:matrix(0.234226,0.003982,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.234226,0.003982,-0.004249,0.249964,0,0);}
.m55_c00382{transform:matrix(0.234388,0.002813,-0.003000,0.249982,0,0);-ms-transform:matrix(0.234388,0.002813,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.234388,0.002813,-0.003000,0.249982,0,0);}
.m11b_c00382{transform:matrix(0.234590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234590,0.000000,0.000000,0.250000,0,0);}
.m32_c00382{transform:matrix(0.234858,0.002818,-0.003000,0.249982,0,0);-ms-transform:matrix(0.234858,0.002818,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.234858,0.002818,-0.003000,0.249982,0,0);}
.mc2_c00382{transform:matrix(0.235086,0.003996,-0.004249,0.249964,0,0);-ms-transform:matrix(0.235086,0.003996,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.235086,0.003996,-0.004249,0.249964,0,0);}
.maf_c00382{transform:matrix(0.235126,0.003997,-0.004249,0.249964,0,0);-ms-transform:matrix(0.235126,0.003997,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.235126,0.003997,-0.004249,0.249964,0,0);}
.m24_c00382{transform:matrix(0.235238,0.002823,-0.003000,0.249982,0,0);-ms-transform:matrix(0.235238,0.002823,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.235238,0.002823,-0.003000,0.249982,0,0);}
.m91_c00382{transform:matrix(0.235900,0.003774,-0.003999,0.249968,0,0);-ms-transform:matrix(0.235900,0.003774,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.235900,0.003774,-0.003999,0.249968,0,0);}
.me8_c00382{transform:matrix(0.235903,0.003539,-0.003750,0.249972,0,0);-ms-transform:matrix(0.235903,0.003539,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.235903,0.003539,-0.003750,0.249972,0,0);}
.mbf_c00382{transform:matrix(0.236216,0.004016,-0.004249,0.249964,0,0);-ms-transform:matrix(0.236216,0.004016,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.236216,0.004016,-0.004249,0.249964,0,0);}
.mc9_c00382{transform:matrix(0.236446,0.004020,-0.004249,0.249964,0,0);-ms-transform:matrix(0.236446,0.004020,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.236446,0.004020,-0.004249,0.249964,0,0);}
.mfa_c00382{transform:matrix(0.236485,0.002128,-0.002250,0.249990,0,0);-ms-transform:matrix(0.236485,0.002128,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.236485,0.002128,-0.002250,0.249990,0,0);}
.mb6_c00382{transform:matrix(0.236571,0.004022,-0.004249,0.249964,0,0);-ms-transform:matrix(0.236571,0.004022,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.236571,0.004022,-0.004249,0.249964,0,0);}
.mdc_c00382{transform:matrix(0.236638,0.003550,-0.003750,0.249972,0,0);-ms-transform:matrix(0.236638,0.003550,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.236638,0.003550,-0.003750,0.249972,0,0);}
.m122_c00382{transform:matrix(0.236770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236770,0.000000,0.000000,0.250000,0,0);}
.mb0_c00382{transform:matrix(0.236771,0.004025,-0.004249,0.249964,0,0);-ms-transform:matrix(0.236771,0.004025,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.236771,0.004025,-0.004249,0.249964,0,0);}
.m6f_c00382{transform:matrix(0.237008,0.002844,-0.003000,0.249982,0,0);-ms-transform:matrix(0.237008,0.002844,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.237008,0.002844,-0.003000,0.249982,0,0);}
.m2c_c00382{transform:matrix(0.237058,0.002845,-0.003000,0.249982,0,0);-ms-transform:matrix(0.237058,0.002845,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.237058,0.002845,-0.003000,0.249982,0,0);}
.m11f_c00382{transform:matrix(0.237120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237120,0.000000,0.000000,0.250000,0,0);}
.m101_c00382{transform:matrix(0.237185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237185,0.000000,0.000000,0.250000,0,0);}
.m12_c00382{transform:matrix(0.237788,0.002853,-0.003000,0.249982,0,0);-ms-transform:matrix(0.237788,0.002853,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.237788,0.002853,-0.003000,0.249982,0,0);}
.m92_c00382{transform:matrix(0.237995,0.003808,-0.003999,0.249968,0,0);-ms-transform:matrix(0.237995,0.003808,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.237995,0.003808,-0.003999,0.249968,0,0);}
.m6a_c00382{transform:matrix(0.238518,0.002862,-0.003000,0.249982,0,0);-ms-transform:matrix(0.238518,0.002862,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.238518,0.002862,-0.003000,0.249982,0,0);}
.m87_c00382{transform:matrix(0.238534,0.003817,-0.003999,0.249968,0,0);-ms-transform:matrix(0.238534,0.003817,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.238534,0.003817,-0.003999,0.249968,0,0);}
.m28_c00382{transform:matrix(0.238558,0.002863,-0.003000,0.249982,0,0);-ms-transform:matrix(0.238558,0.002863,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.238558,0.002863,-0.003000,0.249982,0,0);}
.m11e_c00382{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m22_c00382{transform:matrix(0.238943,0.002867,-0.003000,0.249982,0,0);-ms-transform:matrix(0.238943,0.002867,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.238943,0.002867,-0.003000,0.249982,0,0);}
.m23_c00382{transform:matrix(0.239103,0.002869,-0.003000,0.249982,0,0);-ms-transform:matrix(0.239103,0.002869,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.239103,0.002869,-0.003000,0.249982,0,0);}
.m27_c00382{transform:matrix(0.239543,0.002875,-0.003000,0.249982,0,0);-ms-transform:matrix(0.239543,0.002875,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.239543,0.002875,-0.003000,0.249982,0,0);}
.ma4_c00382{transform:matrix(0.239745,0.004076,-0.004249,0.249964,0,0);-ms-transform:matrix(0.239745,0.004076,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.239745,0.004076,-0.004249,0.249964,0,0);}
.m18_c00382{transform:matrix(0.240508,0.002886,-0.003000,0.249982,0,0);-ms-transform:matrix(0.240508,0.002886,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.240508,0.002886,-0.003000,0.249982,0,0);}
.m34_c00382{transform:matrix(0.240548,0.002887,-0.003000,0.249982,0,0);-ms-transform:matrix(0.240548,0.002887,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.240548,0.002887,-0.003000,0.249982,0,0);}
.m3_c00382{transform:matrix(0.240573,0.002887,-0.003000,0.249982,0,0);-ms-transform:matrix(0.240573,0.002887,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.240573,0.002887,-0.003000,0.249982,0,0);}
.m100_c00382{transform:matrix(0.240920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240920,0.000000,0.000000,0.250000,0,0);}
.m51_c00382{transform:matrix(0.241013,0.002892,-0.003000,0.249982,0,0);-ms-transform:matrix(0.241013,0.002892,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.241013,0.002892,-0.003000,0.249982,0,0);}
.m5d_c00382{transform:matrix(0.241083,0.002893,-0.003000,0.249982,0,0);-ms-transform:matrix(0.241083,0.002893,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.241083,0.002893,-0.003000,0.249982,0,0);}
.m1a_c00382{transform:matrix(0.241273,0.002895,-0.003000,0.249982,0,0);-ms-transform:matrix(0.241273,0.002895,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.241273,0.002895,-0.003000,0.249982,0,0);}
.meb_c00382{transform:matrix(0.241638,0.003625,-0.003750,0.249972,0,0);-ms-transform:matrix(0.241638,0.003625,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.241638,0.003625,-0.003750,0.249972,0,0);}
.m36_c00382{transform:matrix(0.241733,0.002901,-0.003000,0.249982,0,0);-ms-transform:matrix(0.241733,0.002901,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.241733,0.002901,-0.003000,0.249982,0,0);}
.m10_c00382{transform:matrix(0.241828,0.002902,-0.003000,0.249982,0,0);-ms-transform:matrix(0.241828,0.002902,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.241828,0.002902,-0.003000,0.249982,0,0);}
.m11_c00382{transform:matrix(0.242023,0.002904,-0.003000,0.249982,0,0);-ms-transform:matrix(0.242023,0.002904,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.242023,0.002904,-0.003000,0.249982,0,0);}
.m59_c00382{transform:matrix(0.242293,0.002908,-0.003000,0.249982,0,0);-ms-transform:matrix(0.242293,0.002908,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.242293,0.002908,-0.003000,0.249982,0,0);}
.mb7_c00382{transform:matrix(0.242430,0.004121,-0.004249,0.249964,0,0);-ms-transform:matrix(0.242430,0.004121,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.242430,0.004121,-0.004249,0.249964,0,0);}
.mcd_c00382{transform:matrix(0.242678,0.003640,-0.003750,0.249972,0,0);-ms-transform:matrix(0.242678,0.003640,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.242678,0.003640,-0.003750,0.249972,0,0);}
.mbb_c00382{transform:matrix(0.243165,0.004134,-0.004249,0.249964,0,0);-ms-transform:matrix(0.243165,0.004134,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.243165,0.004134,-0.004249,0.249964,0,0);}
.mac_c00382{transform:matrix(0.243285,0.004136,-0.004249,0.249964,0,0);-ms-transform:matrix(0.243285,0.004136,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.243285,0.004136,-0.004249,0.249964,0,0);}
.mc7_c00382{transform:matrix(0.243995,0.004148,-0.004249,0.249964,0,0);-ms-transform:matrix(0.243995,0.004148,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.243995,0.004148,-0.004249,0.249964,0,0);}
.me2_c00382{transform:matrix(0.244033,0.003660,-0.003750,0.249972,0,0);-ms-transform:matrix(0.244033,0.003660,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.244033,0.003660,-0.003750,0.249972,0,0);}
.m14_c00382{transform:matrix(0.244297,0.002932,-0.003000,0.249982,0,0);-ms-transform:matrix(0.244297,0.002932,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.244297,0.002932,-0.003000,0.249982,0,0);}
.m7d_c00382{transform:matrix(0.244444,0.003911,-0.003999,0.249968,0,0);-ms-transform:matrix(0.244444,0.003911,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.244444,0.003911,-0.003999,0.249968,0,0);}
.m7b_c00382{transform:matrix(0.244739,0.003916,-0.003999,0.249968,0,0);-ms-transform:matrix(0.244739,0.003916,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.244739,0.003916,-0.003999,0.249968,0,0);}
.m1f_c00382{transform:matrix(0.244852,0.002938,-0.003000,0.249982,0,0);-ms-transform:matrix(0.244852,0.002938,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.244852,0.002938,-0.003000,0.249982,0,0);}
.m6d_c00382{transform:matrix(0.245007,0.002940,-0.003000,0.249982,0,0);-ms-transform:matrix(0.245007,0.002940,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.245007,0.002940,-0.003000,0.249982,0,0);}
.m13_c00382{transform:matrix(0.245417,0.002945,-0.003000,0.249982,0,0);-ms-transform:matrix(0.245417,0.002945,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.245417,0.002945,-0.003000,0.249982,0,0);}
.m74_c00382{transform:matrix(0.245462,0.002946,-0.003000,0.249982,0,0);-ms-transform:matrix(0.245462,0.002946,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.245462,0.002946,-0.003000,0.249982,0,0);}
.m70_c00382{transform:matrix(0.245567,0.002947,-0.003000,0.249982,0,0);-ms-transform:matrix(0.245567,0.002947,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.245567,0.002947,-0.003000,0.249982,0,0);}
.mc4_c00382{transform:matrix(0.245620,0.004176,-0.004249,0.249964,0,0);-ms-transform:matrix(0.245620,0.004176,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.245620,0.004176,-0.004249,0.249964,0,0);}
.m38_c00382{transform:matrix(0.245752,0.002949,-0.003000,0.249982,0,0);-ms-transform:matrix(0.245752,0.002949,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.245752,0.002949,-0.003000,0.249982,0,0);}
.mb9_c00382{transform:matrix(0.245789,0.004178,-0.004249,0.249964,0,0);-ms-transform:matrix(0.245789,0.004178,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.245789,0.004178,-0.004249,0.249964,0,0);}
.m75_c00382{transform:matrix(0.245952,0.002951,-0.003000,0.249982,0,0);-ms-transform:matrix(0.245952,0.002951,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.245952,0.002951,-0.003000,0.249982,0,0);}
.me6_c00382{transform:matrix(0.245992,0.003690,-0.003750,0.249972,0,0);-ms-transform:matrix(0.245992,0.003690,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.245992,0.003690,-0.003750,0.249972,0,0);}
.m7f_c00382{transform:matrix(0.246054,0.003937,-0.003999,0.249968,0,0);-ms-transform:matrix(0.246054,0.003937,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.246054,0.003937,-0.003999,0.249968,0,0);}
.md5_c00382{transform:matrix(0.246167,0.003693,-0.003750,0.249972,0,0);-ms-transform:matrix(0.246167,0.003693,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.246167,0.003693,-0.003750,0.249972,0,0);}
.m17_c00382{transform:matrix(0.246337,0.002956,-0.003000,0.249982,0,0);-ms-transform:matrix(0.246337,0.002956,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.246337,0.002956,-0.003000,0.249982,0,0);}
.mea_c00382{transform:matrix(0.246702,0.003701,-0.003750,0.249972,0,0);-ms-transform:matrix(0.246702,0.003701,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.246702,0.003701,-0.003750,0.249972,0,0);}
.md8_c00382{transform:matrix(0.246817,0.003702,-0.003750,0.249972,0,0);-ms-transform:matrix(0.246817,0.003702,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.246817,0.003702,-0.003750,0.249972,0,0);}
.mf5_c00382{transform:matrix(0.246825,0.002221,-0.002250,0.249990,0,0);-ms-transform:matrix(0.246825,0.002221,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.246825,0.002221,-0.002250,0.249990,0,0);}
.m73_c00382{transform:matrix(0.246922,0.002963,-0.003000,0.249982,0,0);-ms-transform:matrix(0.246922,0.002963,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.246922,0.002963,-0.003000,0.249982,0,0);}
.mb_c00382{transform:matrix(0.247282,0.002967,-0.003000,0.249982,0,0);-ms-transform:matrix(0.247282,0.002967,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.247282,0.002967,-0.003000,0.249982,0,0);}
.m3a_c00382{transform:matrix(0.248207,0.002978,-0.003000,0.249982,0,0);-ms-transform:matrix(0.248207,0.002978,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.248207,0.002978,-0.003000,0.249982,0,0);}
.mf2_c00382{transform:matrix(0.248330,0.002235,-0.002250,0.249990,0,0);-ms-transform:matrix(0.248330,0.002235,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.248330,0.002235,-0.002250,0.249990,0,0);}
.ma3_c00382{transform:matrix(0.248814,0.004230,-0.004249,0.249964,0,0);-ms-transform:matrix(0.248814,0.004230,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.248814,0.004230,-0.004249,0.249964,0,0);}
.md3_c00382{transform:matrix(0.249002,0.003735,-0.003750,0.249972,0,0);-ms-transform:matrix(0.249002,0.003735,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.249002,0.003735,-0.003750,0.249972,0,0);}
.med_c00382{transform:matrix(0.249187,0.003738,-0.003750,0.249972,0,0);-ms-transform:matrix(0.249187,0.003738,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.249187,0.003738,-0.003750,0.249972,0,0);}
.mbc_c00382{transform:matrix(0.249434,0.004240,-0.004249,0.249964,0,0);-ms-transform:matrix(0.249434,0.004240,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.249434,0.004240,-0.004249,0.249964,0,0);}
.m9d_c00382{transform:matrix(0.249528,0.003992,-0.003999,0.249968,0,0);-ms-transform:matrix(0.249528,0.003992,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.249528,0.003992,-0.003999,0.249968,0,0);}
.mef_c00382{transform:matrix(0.249880,0.002249,-0.002250,0.249990,0,0);-ms-transform:matrix(0.249880,0.002249,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.249880,0.002249,-0.002250,0.249990,0,0);}
.m86_c00382{transform:matrix(0.249968,0.003999,-0.003999,0.249968,0,0);-ms-transform:matrix(0.249968,0.003999,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.249968,0.003999,-0.003999,0.249968,0,0);}
.m47_c00382{transform:matrix(0.250087,0.003001,-0.003000,0.249982,0,0);-ms-transform:matrix(0.250087,0.003001,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.250087,0.003001,-0.003000,0.249982,0,0);}
.m3d_c00382{transform:matrix(0.250237,0.003003,-0.003000,0.249982,0,0);-ms-transform:matrix(0.250237,0.003003,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.250237,0.003003,-0.003000,0.249982,0,0);}
.mc0_c00382{transform:matrix(0.250269,0.004255,-0.004249,0.249964,0,0);-ms-transform:matrix(0.250269,0.004255,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.250269,0.004255,-0.004249,0.249964,0,0);}
.m8_c00382{transform:matrix(0.251237,0.003015,-0.003000,0.249982,0,0);-ms-transform:matrix(0.251237,0.003015,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.251237,0.003015,-0.003000,0.249982,0,0);}
.m5_c00382{transform:matrix(0.251432,0.003017,-0.003000,0.249982,0,0);-ms-transform:matrix(0.251432,0.003017,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.251432,0.003017,-0.003000,0.249982,0,0);}
.m42_c00382{transform:matrix(0.251637,0.003020,-0.003000,0.249982,0,0);-ms-transform:matrix(0.251637,0.003020,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.251637,0.003020,-0.003000,0.249982,0,0);}
.mae_c00382{transform:matrix(0.252738,0.004297,-0.004249,0.249964,0,0);-ms-transform:matrix(0.252738,0.004297,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.252738,0.004297,-0.004249,0.249964,0,0);}
.m1e_c00382{transform:matrix(0.252817,0.003034,-0.003000,0.249982,0,0);-ms-transform:matrix(0.252817,0.003034,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.252817,0.003034,-0.003000,0.249982,0,0);}
.m90_c00382{transform:matrix(0.253558,0.004057,-0.003999,0.249968,0,0);-ms-transform:matrix(0.253558,0.004057,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.253558,0.004057,-0.003999,0.249968,0,0);}
.md9_c00382{transform:matrix(0.253756,0.003806,-0.003750,0.249972,0,0);-ms-transform:matrix(0.253756,0.003806,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.253756,0.003806,-0.003750,0.249972,0,0);}
.m8b_c00382{transform:matrix(0.253818,0.004061,-0.003999,0.249968,0,0);-ms-transform:matrix(0.253818,0.004061,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.253818,0.004061,-0.003999,0.249968,0,0);}
.m7a_c00382{transform:matrix(0.254537,0.004073,-0.003999,0.249968,0,0);-ms-transform:matrix(0.254537,0.004073,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.254537,0.004073,-0.003999,0.249968,0,0);}
.mc6_c00382{transform:matrix(0.255068,0.004336,-0.004249,0.249964,0,0);-ms-transform:matrix(0.255068,0.004336,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.255068,0.004336,-0.004249,0.249964,0,0);}
.m6_c00382{transform:matrix(0.255632,0.003068,-0.003000,0.249982,0,0);-ms-transform:matrix(0.255632,0.003068,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.255632,0.003068,-0.003000,0.249982,0,0);}
.md6_c00382{transform:matrix(0.255636,0.003835,-0.003750,0.249972,0,0);-ms-transform:matrix(0.255636,0.003835,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.255636,0.003835,-0.003750,0.249972,0,0);}
.m43_c00382{transform:matrix(0.256187,0.003074,-0.003000,0.249982,0,0);-ms-transform:matrix(0.256187,0.003074,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.256187,0.003074,-0.003000,0.249982,0,0);}
.ma1_c00382{transform:matrix(0.256583,0.004362,-0.004249,0.249964,0,0);-ms-transform:matrix(0.256583,0.004362,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.256583,0.004362,-0.004249,0.249964,0,0);}
.m37_c00382{transform:matrix(0.256742,0.003081,-0.003000,0.249982,0,0);-ms-transform:matrix(0.256742,0.003081,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.256742,0.003081,-0.003000,0.249982,0,0);}
.mbe_c00382{transform:matrix(0.256953,0.004368,-0.004249,0.249964,0,0);-ms-transform:matrix(0.256953,0.004368,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.256953,0.004368,-0.004249,0.249964,0,0);}
.m16_c00382{transform:matrix(0.257511,0.003090,-0.003000,0.249982,0,0);-ms-transform:matrix(0.257511,0.003090,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.257511,0.003090,-0.003000,0.249982,0,0);}
.m8d_c00382{transform:matrix(0.258012,0.004128,-0.003999,0.249968,0,0);-ms-transform:matrix(0.258012,0.004128,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.258012,0.004128,-0.003999,0.249968,0,0);}
.md_c00382{transform:matrix(0.258166,0.003098,-0.003000,0.249982,0,0);-ms-transform:matrix(0.258166,0.003098,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.258166,0.003098,-0.003000,0.249982,0,0);}
.mab_c00382{transform:matrix(0.258903,0.004401,-0.004249,0.249964,0,0);-ms-transform:matrix(0.258903,0.004401,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.258903,0.004401,-0.004249,0.249964,0,0);}
.ma5_c00382{transform:matrix(0.259243,0.004407,-0.004249,0.249964,0,0);-ms-transform:matrix(0.259243,0.004407,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.259243,0.004407,-0.004249,0.249964,0,0);}
.m96_c00382{transform:matrix(0.259512,0.004152,-0.003999,0.249968,0,0);-ms-transform:matrix(0.259512,0.004152,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.259512,0.004152,-0.003999,0.249968,0,0);}
.mf6_c00382{transform:matrix(0.259644,0.002337,-0.002250,0.249990,0,0);-ms-transform:matrix(0.259644,0.002337,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.259644,0.002337,-0.002250,0.249990,0,0);}
.m4f_c00382{transform:matrix(0.259821,0.003118,-0.003000,0.249982,0,0);-ms-transform:matrix(0.259821,0.003118,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.259821,0.003118,-0.003000,0.249982,0,0);}
.m9e_c00382{transform:matrix(0.259847,0.004158,-0.003999,0.249968,0,0);-ms-transform:matrix(0.259847,0.004158,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.259847,0.004158,-0.003999,0.249968,0,0);}
.mbd_c00382{transform:matrix(0.260102,0.004422,-0.004249,0.249964,0,0);-ms-transform:matrix(0.260102,0.004422,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.260102,0.004422,-0.004249,0.249964,0,0);}
.md1_c00382{transform:matrix(0.260161,0.003902,-0.003750,0.249972,0,0);-ms-transform:matrix(0.260161,0.003902,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.260161,0.003902,-0.003750,0.249972,0,0);}
.m7e_c00382{transform:matrix(0.260317,0.004165,-0.003999,0.249968,0,0);-ms-transform:matrix(0.260317,0.004165,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.260317,0.004165,-0.003999,0.249968,0,0);}
.mb3_c00382{transform:matrix(0.260437,0.004427,-0.004249,0.249964,0,0);-ms-transform:matrix(0.260437,0.004427,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.260437,0.004427,-0.004249,0.249964,0,0);}
.ma7_c00382{transform:matrix(0.261007,0.004437,-0.004249,0.249964,0,0);-ms-transform:matrix(0.261007,0.004437,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.261007,0.004437,-0.004249,0.249964,0,0);}
.m8f_c00382{transform:matrix(0.261122,0.004178,-0.003999,0.249968,0,0);-ms-transform:matrix(0.261122,0.004178,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.261122,0.004178,-0.003999,0.249968,0,0);}
.mcf_c00382{transform:matrix(0.261296,0.003919,-0.003750,0.249972,0,0);-ms-transform:matrix(0.261296,0.003919,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.261296,0.003919,-0.003750,0.249972,0,0);}
.m88_c00382{transform:matrix(0.261352,0.004182,-0.003999,0.249968,0,0);-ms-transform:matrix(0.261352,0.004182,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.261352,0.004182,-0.003999,0.249968,0,0);}
.m9_c00382{transform:matrix(0.261896,0.003143,-0.003000,0.249982,0,0);-ms-transform:matrix(0.261896,0.003143,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.261896,0.003143,-0.003000,0.249982,0,0);}
.m89_c00382{transform:matrix(0.262361,0.004198,-0.003999,0.249968,0,0);-ms-transform:matrix(0.262361,0.004198,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.262361,0.004198,-0.003999,0.249968,0,0);}
.m3e_c00382{transform:matrix(0.263121,0.003157,-0.003000,0.249982,0,0);-ms-transform:matrix(0.263121,0.003157,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.263121,0.003157,-0.003000,0.249982,0,0);}
.m4a_c00382{transform:matrix(0.264596,0.003175,-0.003000,0.249982,0,0);-ms-transform:matrix(0.264596,0.003175,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.264596,0.003175,-0.003000,0.249982,0,0);}
.md2_c00382{transform:matrix(0.264645,0.003970,-0.003750,0.249972,0,0);-ms-transform:matrix(0.264645,0.003970,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.264645,0.003970,-0.003750,0.249972,0,0);}
.mc8_c00382{transform:matrix(0.265967,0.004521,-0.004249,0.249964,0,0);-ms-transform:matrix(0.265967,0.004521,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.265967,0.004521,-0.004249,0.249964,0,0);}
.m4d_c00382{transform:matrix(0.266246,0.003195,-0.003000,0.249982,0,0);-ms-transform:matrix(0.266246,0.003195,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.266246,0.003195,-0.003000,0.249982,0,0);}
.m8c_c00382{transform:matrix(0.266296,0.004261,-0.003999,0.249968,0,0);-ms-transform:matrix(0.266296,0.004261,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.266296,0.004261,-0.003999,0.249968,0,0);}
.m98_c00382{transform:matrix(0.267406,0.004278,-0.003999,0.249968,0,0);-ms-transform:matrix(0.267406,0.004278,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.267406,0.004278,-0.003999,0.249968,0,0);}
.m72_c00382{transform:matrix(0.267891,0.003215,-0.003000,0.249982,0,0);-ms-transform:matrix(0.267891,0.003215,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.267891,0.003215,-0.003000,0.249982,0,0);}
.me7_c00382{transform:matrix(0.268830,0.004032,-0.003750,0.249972,0,0);-ms-transform:matrix(0.268830,0.004032,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.268830,0.004032,-0.003750,0.249972,0,0);}
.m84_c00382{transform:matrix(0.270820,0.004333,-0.003999,0.249968,0,0);-ms-transform:matrix(0.270820,0.004333,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.270820,0.004333,-0.003999,0.249968,0,0);}
.me5_c00382{transform:matrix(0.271434,0.004072,-0.003750,0.249972,0,0);-ms-transform:matrix(0.271434,0.004072,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.271434,0.004072,-0.003750,0.249972,0,0);}
.me9_c00382{transform:matrix(0.272314,0.004085,-0.003750,0.249972,0,0);-ms-transform:matrix(0.272314,0.004085,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.272314,0.004085,-0.003750,0.249972,0,0);}
.m52_c00382{transform:matrix(0.273110,0.003277,-0.003000,0.249982,0,0);-ms-transform:matrix(0.273110,0.003277,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.273110,0.003277,-0.003000,0.249982,0,0);}
.m50_c00382{transform:matrix(0.273590,0.003283,-0.003000,0.249982,0,0);-ms-transform:matrix(0.273590,0.003283,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.273590,0.003283,-0.003000,0.249982,0,0);}
.mee_c00382{transform:matrix(0.273874,0.004108,-0.003750,0.249972,0,0);-ms-transform:matrix(0.273874,0.004108,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.273874,0.004108,-0.003750,0.249972,0,0);}
.m8e_c00382{transform:matrix(0.274520,0.004392,-0.003999,0.249968,0,0);-ms-transform:matrix(0.274520,0.004392,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.274520,0.004392,-0.003999,0.249968,0,0);}
.m9f_c00382{transform:matrix(0.274930,0.004399,-0.003999,0.249968,0,0);-ms-transform:matrix(0.274930,0.004399,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.274930,0.004399,-0.003999,0.249968,0,0);}
.m6c_c00382{transform:matrix(0.275080,0.003301,-0.003000,0.249982,0,0);-ms-transform:matrix(0.275080,0.003301,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.275080,0.003301,-0.003000,0.249982,0,0);}
.m80_c00382{transform:matrix(0.275200,0.004403,-0.003999,0.249968,0,0);-ms-transform:matrix(0.275200,0.004403,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.275200,0.004403,-0.003999,0.249968,0,0);}
.mca_c00382{transform:matrix(0.275845,0.004689,-0.004249,0.249964,0,0);-ms-transform:matrix(0.275845,0.004689,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.275845,0.004689,-0.004249,0.249964,0,0);}
.mec_c00382{transform:matrix(0.275849,0.004138,-0.003750,0.249972,0,0);-ms-transform:matrix(0.275849,0.004138,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.275849,0.004138,-0.003750,0.249972,0,0);}
.m94_c00382{transform:matrix(0.276065,0.004417,-0.003999,0.249968,0,0);-ms-transform:matrix(0.276065,0.004417,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.276065,0.004417,-0.003999,0.249968,0,0);}
.m82_c00382{transform:matrix(0.276680,0.004427,-0.003999,0.249968,0,0);-ms-transform:matrix(0.276680,0.004427,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.276680,0.004427,-0.003999,0.249968,0,0);}
.m6b_c00382{transform:matrix(0.277405,0.003329,-0.003000,0.249982,0,0);-ms-transform:matrix(0.277405,0.003329,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.277405,0.003329,-0.003000,0.249982,0,0);}
.m53_c00382{transform:matrix(0.277450,0.003329,-0.003000,0.249982,0,0);-ms-transform:matrix(0.277450,0.003329,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.277450,0.003329,-0.003000,0.249982,0,0);}
.m6e_c00382{transform:matrix(0.277675,0.003332,-0.003000,0.249982,0,0);-ms-transform:matrix(0.277675,0.003332,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.277675,0.003332,-0.003000,0.249982,0,0);}
.m41_c00382{transform:matrix(0.277860,0.003334,-0.003000,0.249982,0,0);-ms-transform:matrix(0.277860,0.003334,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.277860,0.003334,-0.003000,0.249982,0,0);}
.m9a_c00382{transform:matrix(0.277879,0.004446,-0.003999,0.249968,0,0);-ms-transform:matrix(0.277879,0.004446,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.277879,0.004446,-0.003999,0.249968,0,0);}
.m99_c00382{transform:matrix(0.278739,0.004460,-0.003999,0.249968,0,0);-ms-transform:matrix(0.278739,0.004460,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.278739,0.004460,-0.003999,0.249968,0,0);}
.m7c_c00382{transform:matrix(0.279289,0.004469,-0.003999,0.249968,0,0);-ms-transform:matrix(0.279289,0.004469,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.279289,0.004469,-0.003999,0.249968,0,0);}
.mfc_c00382{transform:matrix(0.282795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282795,0.000000,0.000000,0.250000,0,0);}
.md4_c00382{transform:matrix(0.283163,0.004247,-0.003750,0.249972,0,0);-ms-transform:matrix(0.283163,0.004247,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.283163,0.004247,-0.003750,0.249972,0,0);}
.mfd_c00382{transform:matrix(0.283715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283715,0.000000,0.000000,0.250000,0,0);}
.m2_c00382{transform:matrix(0.283765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283765,0.000000,0.000000,0.250000,0,0);}
.m44_c00382{transform:matrix(0.287964,0.003456,-0.003000,0.249982,0,0);-ms-transform:matrix(0.287964,0.003456,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.287964,0.003456,-0.003000,0.249982,0,0);}
.m40_c00382{transform:matrix(0.291629,0.003500,-0.003000,0.249982,0,0);-ms-transform:matrix(0.291629,0.003500,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.291629,0.003500,-0.003000,0.249982,0,0);}
.mcb_c00382{transform:matrix(0.292228,0.004968,-0.004249,0.249964,0,0);-ms-transform:matrix(0.292228,0.004968,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.292228,0.004968,-0.004249,0.249964,0,0);}
.m48_c00382{transform:matrix(0.298214,0.003579,-0.003000,0.249982,0,0);-ms-transform:matrix(0.298214,0.003579,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.298214,0.003579,-0.003000,0.249982,0,0);}
.m45_c00382{transform:matrix(0.300788,0.003609,-0.003000,0.249982,0,0);-ms-transform:matrix(0.300788,0.003609,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.300788,0.003609,-0.003000,0.249982,0,0);}
.m69_c00382{transform:matrix(0.301953,0.003623,-0.003000,0.249982,0,0);-ms-transform:matrix(0.301953,0.003623,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.301953,0.003623,-0.003000,0.249982,0,0);}
.m46_c00382{transform:matrix(0.310828,0.003730,-0.003000,0.249982,0,0);-ms-transform:matrix(0.310828,0.003730,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.310828,0.003730,-0.003000,0.249982,0,0);}
.mcc_c00382{transform:matrix(0.409649,0.006145,-0.003750,0.249972,0,0);-ms-transform:matrix(0.409649,0.006145,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.409649,0.006145,-0.003750,0.249972,0,0);}
.mfb_c00382{transform:matrix(1.357120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.357120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.357120,0.000000,0.000000,0.250000,0,0);}
.v0_c00382{vertical-align:0.000000px;}
.ls0_c00382{letter-spacing:0.000000px;}
.sc__c00382{text-shadow:none;}
.sc0_c00382{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__c00382{-webkit-text-stroke:0px transparent;}
.sc0_c00382{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00382{word-spacing:0.000000px;}
._0_c00382{width:31.640316px;}
.fc0_c00382{color:transparent;}
.fs0_c00382{font-size:18.000000px;}
.fsd_c00382{font-size:30.000000px;}
.fs4_c00382{font-size:66.004752px;}
.fs5_c00382{font-size:72.005184px;}
.fsa_c00382{font-size:72.008100px;}
.fs7_c00382{font-size:72.009215px;}
.fsc_c00382{font-size:78.003159px;}
.fs2_c00382{font-size:78.005616px;}
.fs8_c00382{font-size:78.009983px;}
.fs9_c00382{font-size:78.011270px;}
.fs1_c00382{font-size:84.000000px;}
.fs3_c00382{font-size:84.006048px;}
.fsb_c00382{font-size:84.009449px;}
.fse_c00382{font-size:90.000000px;}
.fs6_c00382{font-size:90.006480px;}
.y0_c00382{bottom:0.000000px;}
.y12e_c00382{bottom:54.180000px;}
.y12d_c00382{bottom:55.011000px;}
.y12c_c00382{bottom:56.104500px;}
.y12b_c00382{bottom:58.602000px;}
.y12a_c00382{bottom:62.919000px;}
.y129_c00382{bottom:89.262000px;}
.y128_c00382{bottom:90.487500px;}
.y127_c00382{bottom:91.735500px;}
.y126_c00382{bottom:92.658000px;}
.y125_c00382{bottom:93.889500px;}
.y124_c00382{bottom:96.687000px;}
.y123_c00382{bottom:99.700500px;}
.y122_c00382{bottom:101.530500px;}
.y121_c00382{bottom:119.839500px;}
.y120_c00382{bottom:122.860500px;}
.y11f_c00382{bottom:123.841500px;}
.y11e_c00382{bottom:124.860000px;}
.y11d_c00382{bottom:127.201500px;}
.y11c_c00382{bottom:128.863500px;}
.y11b_c00382{bottom:130.182000px;}
.y11a_c00382{bottom:131.154000px;}
.y119_c00382{bottom:132.783000px;}
.y118_c00382{bottom:133.767000px;}
.y117_c00382{bottom:136.357500px;}
.y116_c00382{bottom:162.010500px;}
.y115_c00382{bottom:163.179000px;}
.y114_c00382{bottom:164.341500px;}
.y113_c00382{bottom:165.010500px;}
.y112_c00382{bottom:165.498000px;}
.y111_c00382{bottom:166.405500px;}
.y110_c00382{bottom:167.341500px;}
.y10f_c00382{bottom:168.945000px;}
.y10e_c00382{bottom:170.553000px;}
.y10d_c00382{bottom:171.453000px;}
.y10c_c00382{bottom:206.085000px;}
.y10b_c00382{bottom:210.915000px;}
.y10a_c00382{bottom:211.888500px;}
.y109_c00382{bottom:214.110000px;}
.y108_c00382{bottom:214.830000px;}
.y107_c00382{bottom:216.072000px;}
.y106_c00382{bottom:218.026500px;}
.y105_c00382{bottom:220.678500px;}
.y104_c00382{bottom:221.163000px;}
.y103_c00382{bottom:222.849000px;}
.y102_c00382{bottom:224.541000px;}
.y101_c00382{bottom:225.724500px;}
.y100_c00382{bottom:254.227500px;}
.yff_c00382{bottom:267.489191px;}
.yfe_c00382{bottom:267.790713px;}
.yfd_c00382{bottom:268.091979px;}
.yfc_c00382{bottom:268.492848px;}
.yfb_c00382{bottom:269.504066px;}
.yfa_c00382{bottom:270.384036px;}
.yf9_c00382{bottom:270.692768px;}
.yf8_c00382{bottom:270.986784px;}
.yf7_c00382{bottom:271.689108px;}
.yf6_c00382{bottom:271.983165px;}
.yf5_c00382{bottom:272.366714px;}
.yf4_c00382{bottom:273.241500px;}
.yf3_c00382{bottom:304.721812px;}
.yf2_c00382{bottom:305.523810px;}
.yf1_c00382{bottom:307.317457px;}
.yf0_c00382{bottom:307.941968px;}
.yef_c00382{bottom:308.740837px;}
.yee_c00382{bottom:310.132605px;}
.yed_c00382{bottom:311.322113px;}
.yec_c00382{bottom:312.888023px;}
.yeb_c00382{bottom:313.878142px;}
.yea_c00382{bottom:315.626467px;}
.ye9_c00382{bottom:341.041088px;}
.ye8_c00382{bottom:341.156640px;}
.ye7_c00382{bottom:341.932245px;}
.ye6_c00382{bottom:342.263085px;}
.ye5_c00382{bottom:342.379777px;}
.ye4_c00382{bottom:342.654675px;}
.ye3_c00382{bottom:342.872865px;}
.ye2_c00382{bottom:343.039515px;}
.ye1_c00382{bottom:343.586355px;}
.ye0_c00382{bottom:343.976648px;}
.ydf_c00382{bottom:344.516265px;}
.yde_c00382{bottom:377.873445px;}
.ydd_c00382{bottom:378.396075px;}
.ydc_c00382{bottom:378.894293px;}
.ydb_c00382{bottom:379.890840px;}
.yda_c00382{bottom:380.405505px;}
.yd9_c00382{bottom:380.905118px;}
.yd8_c00382{bottom:381.571410px;}
.yd7_c00382{bottom:382.564470px;}
.yd6_c00382{bottom:383.395170px;}
.yd5_c00382{bottom:383.893208px;}
.yd4_c00382{bottom:384.897000px;}
.yd3_c00382{bottom:385.375688px;}
.yd2_c00382{bottom:385.881937px;}
.yd1_c00382{bottom:386.643000px;}
.ycf_c00382{bottom:416.866352px;}
.yd0_c00382{bottom:416.866818px;}
.yce_c00382{bottom:448.023936px;}
.ycd_c00382{bottom:450.353160px;}
.ycc_c00382{bottom:451.412016px;}
.ycb_c00382{bottom:452.988800px;}
.yca_c00382{bottom:453.532793px;}
.yc9_c00382{bottom:454.427525px;}
.yc8_c00382{bottom:454.933055px;}
.yc7_c00382{bottom:456.004308px;}
.yc6_c00382{bottom:456.529885px;}
.yc5_c00382{bottom:458.076978px;}
.yc4_c00382{bottom:458.447178px;}
.yc3_c00382{bottom:486.458427px;}
.yc2_c00382{bottom:487.343664px;}
.yc1_c00382{bottom:487.968455px;}
.yc0_c00382{bottom:488.497683px;}
.ybf_c00382{bottom:488.763370px;}
.ybe_c00382{bottom:489.206958px;}
.ybd_c00382{bottom:489.383251px;}
.ybc_c00382{bottom:489.822236px;}
.ybb_c00382{bottom:490.349645px;}
.yba_c00382{bottom:490.870579px;}
.yb9_c00382{bottom:491.392646px;}
.yb8_c00382{bottom:519.937120px;}
.yb7_c00382{bottom:520.269008px;}
.yb6_c00382{bottom:520.605936px;}
.yb5_c00382{bottom:521.156413px;}
.yb4_c00382{bottom:521.814986px;}
.yb3_c00382{bottom:522.376629px;}
.yb2_c00382{bottom:523.264545px;}
.yb1_c00382{bottom:523.591935px;}
.yb0_c00382{bottom:523.825908px;}
.yaf_c00382{bottom:525.027443px;}
.yae_c00382{bottom:525.439422px;}
.yad_c00382{bottom:525.890518px;}
.yac_c00382{bottom:526.225321px;}
.yab_c00382{bottom:556.074189px;}
.yaa_c00382{bottom:556.634857px;}
.ya9_c00382{bottom:558.513290px;}
.ya8_c00382{bottom:559.844670px;}
.ya7_c00382{bottom:560.987580px;}
.ya6_c00382{bottom:561.906141px;}
.ya5_c00382{bottom:564.348148px;}
.ya4_c00382{bottom:565.114500px;}
.ya3_c00382{bottom:598.708932px;}
.ya2_c00382{bottom:600.014436px;}
.ya1_c00382{bottom:600.713832px;}
.ya0_c00382{bottom:600.995616px;}
.y9f_c00382{bottom:601.277400px;}
.y9e_c00382{bottom:627.769044px;}
.y9d_c00382{bottom:628.993992px;}
.y9c_c00382{bottom:630.124392px;}
.y9b_c00382{bottom:631.190292px;}
.y9a_c00382{bottom:631.644144px;}
.y99_c00382{bottom:632.582436px;}
.y98_c00382{bottom:633.043428px;}
.y97_c00382{bottom:634.597068px;}
.y96_c00382{bottom:635.053980px;}
.y95_c00382{bottom:635.510580px;}
.y94_c00382{bottom:635.974860px;}
.y93_c00382{bottom:636.288084px;}
.y92_c00382{bottom:637.192668px;}
.y91_c00382{bottom:662.453124px;}
.y90_c00382{bottom:662.732412px;}
.y8f_c00382{bottom:663.015564px;}
.y8e_c00382{bottom:663.345192px;}
.y8d_c00382{bottom:663.507912px;}
.y8c_c00382{bottom:663.791208px;}
.y8b_c00382{bottom:663.952560px;}
.y8a_c00382{bottom:664.234200px;}
.y89_c00382{bottom:664.393248px;}
.y88_c00382{bottom:664.562772px;}
.y87_c00382{bottom:664.728024px;}
.y86_c00382{bottom:665.384424px;}
.y85_c00382{bottom:665.544396px;}
.y84_c00382{bottom:699.705984px;}
.y83_c00382{bottom:700.224672px;}
.y82_c00382{bottom:701.823072px;}
.y81_c00382{bottom:702.557040px;}
.y80_c00382{bottom:703.615656px;}
.y7f_c00382{bottom:704.307744px;}
.y7e_c00382{bottom:706.428864px;}
.y7d_c00382{bottom:706.964952px;}
.y7c_c00382{bottom:707.673000px;}
.y78_c00382{bottom:739.739916px;}
.y7b_c00382{bottom:739.740138px;}
.y79_c00382{bottom:739.740468px;}
.y7a_c00382{bottom:739.740744px;}
.y73_c00382{bottom:771.923856px;}
.y72_c00382{bottom:771.923880px;}
.y74_c00382{bottom:771.923892px;}
.y70_c00382{bottom:771.924414px;}
.y76_c00382{bottom:771.924420px;}
.y6f_c00382{bottom:771.924438px;}
.y75_c00382{bottom:771.924504px;}
.y71_c00382{bottom:771.924564px;}
.y6d_c00382{bottom:771.924798px;}
.y6c_c00382{bottom:771.924822px;}
.y77_c00382{bottom:771.924876px;}
.y6e_c00382{bottom:771.924948px;}
.y6b_c00382{bottom:806.784222px;}
.y6a_c00382{bottom:807.631104px;}
.y69_c00382{bottom:807.996210px;}
.y68_c00382{bottom:808.970826px;}
.y67_c00382{bottom:809.473566px;}
.y66_c00382{bottom:810.053370px;}
.y65_c00382{bottom:811.182246px;}
.y64_c00382{bottom:811.538208px;}
.y63_c00382{bottom:812.388330px;}
.y62_c00382{bottom:813.116040px;}
.y61_c00382{bottom:813.474954px;}
.y60_c00382{bottom:814.300368px;}
.y5d_c00382{bottom:844.959528px;}
.y5a_c00382{bottom:844.959648px;}
.y5c_c00382{bottom:844.959690px;}
.y5b_c00382{bottom:844.959942px;}
.y59_c00382{bottom:844.960152px;}
.y5e_c00382{bottom:844.960224px;}
.y5f_c00382{bottom:844.960260px;}
.y58_c00382{bottom:844.960440px;}
.y57_c00382{bottom:844.961010px;}
.y56_c00382{bottom:844.961394px;}
.y55_c00382{bottom:879.531132px;}
.y54_c00382{bottom:880.084470px;}
.y53_c00382{bottom:880.396944px;}
.y52_c00382{bottom:881.020950px;}
.y51_c00382{bottom:881.474586px;}
.y50_c00382{bottom:881.710140px;}
.y4f_c00382{bottom:882.333840px;}
.y4e_c00382{bottom:882.632562px;}
.y4d_c00382{bottom:882.866484px;}
.y4c_c00382{bottom:883.399002px;}
.y4b_c00382{bottom:883.694046px;}
.y42_c00382{bottom:915.626562px;}
.y4a_c00382{bottom:915.626802px;}
.y48_c00382{bottom:915.627060px;}
.y45_c00382{bottom:915.627084px;}
.y43_c00382{bottom:915.627114px;}
.y46_c00382{bottom:915.627120px;}
.y49_c00382{bottom:915.627306px;}
.y47_c00382{bottom:915.627432px;}
.y44_c00382{bottom:915.627708px;}
.y41_c00382{bottom:949.785684px;}
.y40_c00382{bottom:950.167284px;}
.y3f_c00382{bottom:950.289240px;}
.y3e_c00382{bottom:950.723700px;}
.y3d_c00382{bottom:950.838456px;}
.y3c_c00382{bottom:951.001212px;}
.y3b_c00382{bottom:951.338748px;}
.y3a_c00382{bottom:951.504786px;}
.y39_c00382{bottom:951.891684px;}
.y38_c00382{bottom:952.548270px;}
.y37_c00382{bottom:953.088108px;}
.y36_c00382{bottom:984.684180px;}
.y35_c00382{bottom:985.348134px;}
.y34_c00382{bottom:985.554204px;}
.y33_c00382{bottom:986.158188px;}
.y32_c00382{bottom:986.679558px;}
.y31_c00382{bottom:987.220200px;}
.y30_c00382{bottom:987.813522px;}
.y2f_c00382{bottom:988.459602px;}
.y2e_c00382{bottom:1019.706318px;}
.y2d_c00382{bottom:1020.157194px;}
.y2c_c00382{bottom:1020.545706px;}
.y2b_c00382{bottom:1020.709782px;}
.y2a_c00382{bottom:1021.045596px;}
.y29_c00382{bottom:1021.491030px;}
.y28_c00382{bottom:1022.041716px;}
.y27_c00382{bottom:1022.205810px;}
.y26_c00382{bottom:1022.481198px;}
.y25_c00382{bottom:1023.022794px;}
.y24_c00382{bottom:1054.868052px;}
.y23_c00382{bottom:1055.254710px;}
.y22_c00382{bottom:1055.422944px;}
.y21_c00382{bottom:1055.652600px;}
.y20_c00382{bottom:1055.984820px;}
.y1f_c00382{bottom:1056.257448px;}
.y1e_c00382{bottom:1056.422652px;}
.y1d_c00382{bottom:1056.587022px;}
.y1c_c00382{bottom:1056.756726px;}
.y1b_c00382{bottom:1056.871428px;}
.y1a_c00382{bottom:1057.247568px;}
.y19_c00382{bottom:1057.417326px;}
.y18_c00382{bottom:1057.800030px;}
.y17_c00382{bottom:1058.125068px;}
.y16_c00382{bottom:1091.871840px;}
.y15_c00382{bottom:1092.416724px;}
.y14_c00382{bottom:1093.488834px;}
.y13_c00382{bottom:1094.564238px;}
.y12_c00382{bottom:1095.450456px;}
.y11_c00382{bottom:1096.171716px;}
.y10_c00382{bottom:1097.390454px;}
.yf_c00382{bottom:1097.920668px;}
.ye_c00382{bottom:1098.455766px;}
.yd_c00382{bottom:1101.069912px;}
.yc_c00382{bottom:1101.599496px;}
.yb_c00382{bottom:1127.501916px;}
.ya_c00382{bottom:1128.172668px;}
.y9_c00382{bottom:1129.783146px;}
.y8_c00382{bottom:1130.852382px;}
.y7_c00382{bottom:1131.137250px;}
.y6_c00382{bottom:1132.450134px;}
.y5_c00382{bottom:1133.383272px;}
.y4_c00382{bottom:1133.901240px;}
.y3_c00382{bottom:1134.811500px;}
.y2_c00382{bottom:1188.933000px;}
.y1_c00382{bottom:1224.450000px;}
.h2_c00382{height:18.000000px;}
.hf_c00382{height:30.000000px;}
.h6_c00382{height:66.004752px;}
.h7_c00382{height:72.005184px;}
.hc_c00382{height:72.008100px;}
.h9_c00382{height:72.009215px;}
.he_c00382{height:78.003159px;}
.h4_c00382{height:78.005616px;}
.ha_c00382{height:78.009983px;}
.hb_c00382{height:78.011270px;}
.h3_c00382{height:84.000000px;}
.h5_c00382{height:84.006048px;}
.hd_c00382{height:84.009449px;}
.h10_c00382{height:90.000000px;}
.h8_c00382{height:90.006480px;}
.h0_c00382{height:1251.450000px;}
.h1_c00382{height:1251.750000px;}
.w0_c00382{width:915.000000px;}
.x0_c00382{left:0.000000px;}
.x9d_c00382{left:153.630000px;}
.xb0_c00382{left:156.231000px;}
.x71_c00382{left:157.304175px;}
.x65_c00382{left:158.311260px;}
.x4b_c00382{left:159.576156px;}
.x36_c00382{left:160.655484px;}
.x4_c00382{left:161.874000px;}
.x81_c00382{left:179.908019px;}
.x4c_c00382{left:191.707782px;}
.xd_c00382{left:195.022932px;}
.xa7_c00382{left:199.273500px;}
.x3b_c00382{left:204.030054px;}
.x9e_c00382{left:210.247500px;}
.xb1_c00382{left:221.610000px;}
.x66_c00382{left:222.912324px;}
.x15_c00382{left:226.456794px;}
.x45_c00382{left:235.574628px;}
.x5_c00382{left:237.729000px;}
.xa4_c00382{left:243.540000px;}
.x53_c00382{left:245.981940px;}
.x37_c00382{left:247.872048px;}
.x94_c00382{left:254.918527px;}
.x6d_c00382{left:265.986000px;}
.x55_c00382{left:267.102000px;}
.x46_c00382{left:268.234524px;}
.x20_c00382{left:269.650248px;}
.xa5_c00382{left:275.400000px;}
.x72_c00382{left:277.105430px;}
.x67_c00382{left:278.445600px;}
.x54_c00382{left:279.463764px;}
.x6_c00382{left:280.893000px;}
.x9f_c00382{left:287.190000px;}
.x79_c00382{left:288.213287px;}
.x88_c00382{left:297.855000px;}
.x42_c00382{left:300.796290px;}
.x16_c00382{left:302.855202px;}
.x82_c00382{left:309.420212px;}
.x56_c00382{left:311.355000px;}
.x3c_c00382{left:313.656642px;}
.x5d_c00382{left:322.302684px;}
.x21_c00382{left:324.728874px;}
.xb2_c00382{left:329.226000px;}
.x97_c00382{left:330.274500px;}
.x89_c00382{left:331.605000px;}
.x47_c00382{left:334.377816px;}
.x17_c00382{left:336.879564px;}
.xa6_c00382{left:341.550000px;}
.x68_c00382{left:343.792212px;}
.x57_c00382{left:344.860500px;}
.x38_c00382{left:345.888660px;}
.xa8_c00382{left:352.245000px;}
.x7a_c00382{left:354.100359px;}
.x5e_c00382{left:355.230468px;}
.x3d_c00382{left:356.302698px;}
.x22_c00382{left:357.406110px;}
.x7_c00382{left:358.654500px;}
.xac_c00382{left:362.443500px;}
.x8a_c00382{left:363.517500px;}
.x27_c00382{left:367.657788px;}
.x83_c00382{left:376.406859px;}
.x39_c00382{left:379.640520px;}
.xa0_c00382{left:385.849500px;}
.x5f_c00382{left:388.987896px;}
.xe_c00382{left:391.825482px;}
.x73_c00382{left:397.298235px;}
.x4d_c00382{left:399.892752px;}
.x2d_c00382{left:401.156730px;}
.xad_c00382{left:406.381500px;}
.x7b_c00382{left:408.960749px;}
.x18_c00382{left:412.230900px;}
.x60_c00382{left:420.871512px;}
.x2_c00382{left:424.710000px;}
.xb3_c00382{left:429.138000px;}
.x7c_c00382{left:431.069640px;}
.x19_c00382{left:435.166326px;}
.x98_c00382{left:440.979000px;}
.x48_c00382{left:444.011130px;}
.x3e_c00382{left:445.408044px;}
.x3_c00382{left:447.930000px;}
.x1_c00382{left:449.820000px;}
.x74_c00382{left:453.443916px;}
.x69_c00382{left:454.773264px;}
.x28_c00382{left:457.842786px;}
.xae_c00382{left:461.770500px;}
.x84_c00382{left:463.894338px;}
.x8_c00382{left:468.061500px;}
.x1a_c00382{left:469.186188px;}
.xb4_c00382{left:473.143500px;}
.x99_c00382{left:475.282500px;}
.x58_c00382{left:477.430500px;}
.x2e_c00382{left:478.654746px;}
.x7d_c00382{left:486.465606px;}
.x6a_c00382{left:487.711320px;}
.x9_c00382{left:491.800500px;}
.xa9_c00382{left:495.106500px;}
.x85_c00382{left:497.923925px;}
.xf_c00382{left:501.191244px;}
.xa1_c00382{left:506.425500px;}
.x61_c00382{left:509.699160px;}
.x2f_c00382{left:511.869036px;}
.x7e_c00382{left:519.658181px;}
.x59_c00382{left:520.686000px;}
.x8e_c00382{left:529.676385px;}
.x1b_c00382{left:535.031214px;}
.x95_c00382{left:540.292680px;}
.x75_c00382{left:542.302499px;}
.x29_c00382{left:544.796550px;}
.x10_c00382{left:546.294084px;}
.xaa_c00382{left:550.483500px;}
.x4e_c00382{left:555.154608px;}
.x23_c00382{left:556.682850px;}
.x62_c00382{left:566.415144px;}
.x9a_c00382{left:573.057000px;}
.x6e_c00382{left:575.976000px;}
.x30_c00382{left:579.377706px;}
.xa_c00382{left:580.903500px;}
.x8f_c00382{left:584.511097px;}
.x7f_c00382{left:585.828804px;}
.x5a_c00382{left:586.849500px;}
.x1c_c00382{left:589.629804px;}
.xa2_c00382{left:595.278000px;}
.x86_c00382{left:596.501107px;}
.x49_c00382{left:599.277984px;}
.x11_c00382{left:601.642920px;}
.xab_c00382{left:606.112500px;}
.x90_c00382{left:607.994130px;}
.x43_c00382{left:610.778412px;}
.x31_c00382{left:612.068460px;}
.x96_c00382{left:619.381125px;}
.x4f_c00382{left:621.848202px;}
.x24_c00382{left:623.923002px;}
.x8b_c00382{left:629.643000px;}
.x3f_c00382{left:633.102312px;}
.x32_c00382{left:635.008386px;}
.x2a_c00382{left:645.510804px;}
.xa3_c00382{left:651.723000px;}
.x6f_c00382{left:654.292500px;}
.x1d_c00382{left:656.070384px;}
.x6b_c00382{left:663.188412px;}
.x63_c00382{left:664.985496px;}
.x12_c00382{left:668.881698px;}
.x91_c00382{left:674.160052px;}
.x40_c00382{left:677.644476px;}
.x2b_c00382{left:679.810770px;}
.x9b_c00382{left:685.414500px;}
.x8c_c00382{left:697.261500px;}
.x1e_c00382{left:701.962236px;}
.xaf_c00382{left:707.232000px;}
.x44_c00382{left:711.495420px;}
.xb_c00382{left:715.110000px;}
.x76_c00382{left:719.452587px;}
.x33_c00382{left:721.970694px;}
.x9c_c00382{left:729.955500px;}
.x5b_c00382{left:732.622500px;}
.x25_c00382{left:734.356272px;}
.x13_c00382{left:735.845976px;}
.x50_c00382{left:744.436860px;}
.x34_c00382{left:746.260728px;}
.x77_c00382{left:753.217116px;}
.x41_c00382{left:756.760728px;}
.x8d_c00382{left:763.698000px;}
.x5c_c00382{left:765.040500px;}
.x3a_c00382{left:766.847766px;}
.x14_c00382{left:769.876338px;}
.xc_c00382{left:771.006000px;}
.x80_c00382{left:774.565170px;}
.x64_c00382{left:777.595320px;}
.x78_c00382{left:786.332043px;}
.x51_c00382{left:788.450196px;}
.x2c_c00382{left:790.523244px;}
.x70_c00382{left:797.769000px;}
.x87_c00382{left:808.244703px;}
.x1f_c00382{left:812.962560px;}
.x35_c00382{left:822.692154px;}
.x26_c00382{left:824.561850px;}
.x92_c00382{left:829.190295px;}
.x6c_c00382{left:831.496812px;}
.x52_c00382{left:833.543694px;}
.x4a_c00382{left:843.642900px;}
.x93_c00382{left:852.397282px;}
@media print{
.v0_c00382{vertical-align:0.000000pt;}
.ls0_c00382{letter-spacing:0.000000pt;}
.ws0_c00382{word-spacing:0.000000pt;}
._0_c00382{width:28.124725pt;}
.fs0_c00382{font-size:16.000000pt;}
.fsd_c00382{font-size:26.666667pt;}
.fs4_c00382{font-size:58.670891pt;}
.fs5_c00382{font-size:64.004608pt;}
.fsa_c00382{font-size:64.007200pt;}
.fs7_c00382{font-size:64.008191pt;}
.fsc_c00382{font-size:69.336141pt;}
.fs2_c00382{font-size:69.338325pt;}
.fs8_c00382{font-size:69.342207pt;}
.fs9_c00382{font-size:69.343351pt;}
.fs1_c00382{font-size:74.666667pt;}
.fs3_c00382{font-size:74.672042pt;}
.fsb_c00382{font-size:74.675066pt;}
.fse_c00382{font-size:80.000000pt;}
.fs6_c00382{font-size:80.005760pt;}
.y0_c00382{bottom:0.000000pt;}
.y12e_c00382{bottom:48.160000pt;}
.y12d_c00382{bottom:48.898667pt;}
.y12c_c00382{bottom:49.870667pt;}
.y12b_c00382{bottom:52.090667pt;}
.y12a_c00382{bottom:55.928000pt;}
.y129_c00382{bottom:79.344000pt;}
.y128_c00382{bottom:80.433333pt;}
.y127_c00382{bottom:81.542667pt;}
.y126_c00382{bottom:82.362667pt;}
.y125_c00382{bottom:83.457333pt;}
.y124_c00382{bottom:85.944000pt;}
.y123_c00382{bottom:88.622667pt;}
.y122_c00382{bottom:90.249333pt;}
.y121_c00382{bottom:106.524000pt;}
.y120_c00382{bottom:109.209333pt;}
.y11f_c00382{bottom:110.081333pt;}
.y11e_c00382{bottom:110.986667pt;}
.y11d_c00382{bottom:113.068000pt;}
.y11c_c00382{bottom:114.545333pt;}
.y11b_c00382{bottom:115.717333pt;}
.y11a_c00382{bottom:116.581333pt;}
.y119_c00382{bottom:118.029333pt;}
.y118_c00382{bottom:118.904000pt;}
.y117_c00382{bottom:121.206667pt;}
.y116_c00382{bottom:144.009333pt;}
.y115_c00382{bottom:145.048000pt;}
.y114_c00382{bottom:146.081333pt;}
.y113_c00382{bottom:146.676000pt;}
.y112_c00382{bottom:147.109333pt;}
.y111_c00382{bottom:147.916000pt;}
.y110_c00382{bottom:148.748000pt;}
.y10f_c00382{bottom:150.173333pt;}
.y10e_c00382{bottom:151.602667pt;}
.y10d_c00382{bottom:152.402667pt;}
.y10c_c00382{bottom:183.186667pt;}
.y10b_c00382{bottom:187.480000pt;}
.y10a_c00382{bottom:188.345333pt;}
.y109_c00382{bottom:190.320000pt;}
.y108_c00382{bottom:190.960000pt;}
.y107_c00382{bottom:192.064000pt;}
.y106_c00382{bottom:193.801333pt;}
.y105_c00382{bottom:196.158667pt;}
.y104_c00382{bottom:196.589333pt;}
.y103_c00382{bottom:198.088000pt;}
.y102_c00382{bottom:199.592000pt;}
.y101_c00382{bottom:200.644000pt;}
.y100_c00382{bottom:225.980000pt;}
.yff_c00382{bottom:237.768169pt;}
.yfe_c00382{bottom:238.036189pt;}
.yfd_c00382{bottom:238.303981pt;}
.yfc_c00382{bottom:238.660309pt;}
.yfb_c00382{bottom:239.559169pt;}
.yfa_c00382{bottom:240.341365pt;}
.yf9_c00382{bottom:240.615793pt;}
.yf8_c00382{bottom:240.877141pt;}
.yf7_c00382{bottom:241.501429pt;}
.yf6_c00382{bottom:241.762813pt;}
.yf5_c00382{bottom:242.103745pt;}
.yf4_c00382{bottom:242.881333pt;}
.yf3_c00382{bottom:270.863833pt;}
.yf2_c00382{bottom:271.576720pt;}
.yf1_c00382{bottom:273.171073pt;}
.yf0_c00382{bottom:273.726193pt;}
.yef_c00382{bottom:274.436300pt;}
.yee_c00382{bottom:275.673427pt;}
.yed_c00382{bottom:276.730767pt;}
.yec_c00382{bottom:278.122687pt;}
.yeb_c00382{bottom:279.002793pt;}
.yea_c00382{bottom:280.556860pt;}
.ye9_c00382{bottom:303.147633pt;}
.ye8_c00382{bottom:303.250347pt;}
.ye7_c00382{bottom:303.939773pt;}
.ye6_c00382{bottom:304.233853pt;}
.ye5_c00382{bottom:304.337580pt;}
.ye4_c00382{bottom:304.581933pt;}
.ye3_c00382{bottom:304.775880pt;}
.ye2_c00382{bottom:304.924013pt;}
.ye1_c00382{bottom:305.410093pt;}
.ye0_c00382{bottom:305.757020pt;}
.ydf_c00382{bottom:306.236680pt;}
.yde_c00382{bottom:335.887507pt;}
.ydd_c00382{bottom:336.352067pt;}
.ydc_c00382{bottom:336.794927pt;}
.ydb_c00382{bottom:337.680747pt;}
.yda_c00382{bottom:338.138227pt;}
.yd9_c00382{bottom:338.582327pt;}
.yd8_c00382{bottom:339.174587pt;}
.yd7_c00382{bottom:340.057307pt;}
.yd6_c00382{bottom:340.795707pt;}
.yd5_c00382{bottom:341.238407pt;}
.yd4_c00382{bottom:342.130667pt;}
.yd3_c00382{bottom:342.556167pt;}
.yd2_c00382{bottom:343.006167pt;}
.yd1_c00382{bottom:343.682667pt;}
.ycf_c00382{bottom:370.547868pt;}
.yd0_c00382{bottom:370.548283pt;}
.yce_c00382{bottom:398.243499pt;}
.ycd_c00382{bottom:400.313920pt;}
.ycc_c00382{bottom:401.255125pt;}
.ycb_c00382{bottom:402.656711pt;}
.yca_c00382{bottom:403.140260pt;}
.yc9_c00382{bottom:403.935577pt;}
.yc8_c00382{bottom:404.384937pt;}
.yc7_c00382{bottom:405.337163pt;}
.yc6_c00382{bottom:405.804343pt;}
.yc5_c00382{bottom:407.179536pt;}
.yc4_c00382{bottom:407.508603pt;}
.yc3_c00382{bottom:432.407491pt;}
.yc2_c00382{bottom:433.194368pt;}
.yc1_c00382{bottom:433.749737pt;}
.yc0_c00382{bottom:434.220163pt;}
.ybf_c00382{bottom:434.456329pt;}
.ybe_c00382{bottom:434.850629pt;}
.ybd_c00382{bottom:435.007335pt;}
.ybc_c00382{bottom:435.397543pt;}
.ybb_c00382{bottom:435.866351pt;}
.yba_c00382{bottom:436.329404pt;}
.yb9_c00382{bottom:436.793463pt;}
.yb8_c00382{bottom:462.166329pt;}
.yb7_c00382{bottom:462.461340pt;}
.yb6_c00382{bottom:462.760832pt;}
.yb5_c00382{bottom:463.250145pt;}
.yb4_c00382{bottom:463.835543pt;}
.yb3_c00382{bottom:464.334781pt;}
.yb2_c00382{bottom:465.124040pt;}
.yb1_c00382{bottom:465.415053pt;}
.yb0_c00382{bottom:465.623029pt;}
.yaf_c00382{bottom:466.691060pt;}
.yae_c00382{bottom:467.057264pt;}
.yad_c00382{bottom:467.458239pt;}
.yac_c00382{bottom:467.755841pt;}
.yab_c00382{bottom:494.288168pt;}
.yaa_c00382{bottom:494.786540pt;}
.ya9_c00382{bottom:496.456257pt;}
.ya8_c00382{bottom:497.639707pt;}
.ya7_c00382{bottom:498.655627pt;}
.ya6_c00382{bottom:499.472125pt;}
.ya5_c00382{bottom:501.642799pt;}
.ya4_c00382{bottom:502.324000pt;}
.ya3_c00382{bottom:532.185717pt;}
.ya2_c00382{bottom:533.346165pt;}
.ya1_c00382{bottom:533.967851pt;}
.ya0_c00382{bottom:534.218325pt;}
.y9f_c00382{bottom:534.468800pt;}
.y9e_c00382{bottom:558.016928pt;}
.y9d_c00382{bottom:559.105771pt;}
.y9c_c00382{bottom:560.110571pt;}
.y9b_c00382{bottom:561.058037pt;}
.y9a_c00382{bottom:561.461461pt;}
.y99_c00382{bottom:562.295499pt;}
.y98_c00382{bottom:562.705269pt;}
.y97_c00382{bottom:564.086283pt;}
.y96_c00382{bottom:564.492427pt;}
.y95_c00382{bottom:564.898293pt;}
.y94_c00382{bottom:565.310987pt;}
.y93_c00382{bottom:565.589408pt;}
.y92_c00382{bottom:566.393483pt;}
.y91_c00382{bottom:588.847221pt;}
.y90_c00382{bottom:589.095477pt;}
.y8f_c00382{bottom:589.347168pt;}
.y8e_c00382{bottom:589.640171pt;}
.y8d_c00382{bottom:589.784811pt;}
.y8c_c00382{bottom:590.036629pt;}
.y8b_c00382{bottom:590.180053pt;}
.y8a_c00382{bottom:590.430400pt;}
.y89_c00382{bottom:590.571776pt;}
.y88_c00382{bottom:590.722464pt;}
.y87_c00382{bottom:590.869355pt;}
.y86_c00382{bottom:591.452821pt;}
.y85_c00382{bottom:591.595019pt;}
.y84_c00382{bottom:621.960875pt;}
.y83_c00382{bottom:622.421931pt;}
.y82_c00382{bottom:623.842731pt;}
.y81_c00382{bottom:624.495147pt;}
.y80_c00382{bottom:625.436139pt;}
.y7f_c00382{bottom:626.051328pt;}
.y7e_c00382{bottom:627.936768pt;}
.y7d_c00382{bottom:628.413291pt;}
.y7c_c00382{bottom:629.042667pt;}
.y78_c00382{bottom:657.546592pt;}
.y7b_c00382{bottom:657.546789pt;}
.y79_c00382{bottom:657.547083pt;}
.y7a_c00382{bottom:657.547328pt;}
.y73_c00382{bottom:686.154539pt;}
.y72_c00382{bottom:686.154560pt;}
.y74_c00382{bottom:686.154571pt;}
.y70_c00382{bottom:686.155035pt;}
.y76_c00382{bottom:686.155040pt;}
.y6f_c00382{bottom:686.155056pt;}
.y75_c00382{bottom:686.155115pt;}
.y71_c00382{bottom:686.155168pt;}
.y6d_c00382{bottom:686.155376pt;}
.y6c_c00382{bottom:686.155397pt;}
.y77_c00382{bottom:686.155445pt;}
.y6e_c00382{bottom:686.155509pt;}
.y6b_c00382{bottom:717.141531pt;}
.y6a_c00382{bottom:717.894315pt;}
.y69_c00382{bottom:718.218853pt;}
.y68_c00382{bottom:719.085179pt;}
.y67_c00382{bottom:719.532059pt;}
.y66_c00382{bottom:720.047440pt;}
.y65_c00382{bottom:721.050885pt;}
.y64_c00382{bottom:721.367296pt;}
.y63_c00382{bottom:722.122960pt;}
.y62_c00382{bottom:722.769813pt;}
.y61_c00382{bottom:723.088848pt;}
.y60_c00382{bottom:723.822549pt;}
.y5d_c00382{bottom:751.075136pt;}
.y5a_c00382{bottom:751.075243pt;}
.y5c_c00382{bottom:751.075280pt;}
.y5b_c00382{bottom:751.075504pt;}
.y59_c00382{bottom:751.075691pt;}
.y5e_c00382{bottom:751.075755pt;}
.y5f_c00382{bottom:751.075787pt;}
.y58_c00382{bottom:751.075947pt;}
.y57_c00382{bottom:751.076453pt;}
.y56_c00382{bottom:751.076795pt;}
.y55_c00382{bottom:781.805451pt;}
.y54_c00382{bottom:782.297307pt;}
.y53_c00382{bottom:782.575061pt;}
.y52_c00382{bottom:783.129733pt;}
.y51_c00382{bottom:783.532965pt;}
.y50_c00382{bottom:783.742347pt;}
.y4f_c00382{bottom:784.296747pt;}
.y4e_c00382{bottom:784.562277pt;}
.y4d_c00382{bottom:784.770208pt;}
.y4c_c00382{bottom:785.243557pt;}
.y4b_c00382{bottom:785.505819pt;}
.y42_c00382{bottom:813.890277pt;}
.y4a_c00382{bottom:813.890491pt;}
.y48_c00382{bottom:813.890720pt;}
.y45_c00382{bottom:813.890741pt;}
.y43_c00382{bottom:813.890768pt;}
.y46_c00382{bottom:813.890773pt;}
.y49_c00382{bottom:813.890939pt;}
.y47_c00382{bottom:813.891051pt;}
.y44_c00382{bottom:813.891296pt;}
.y41_c00382{bottom:844.253941pt;}
.y40_c00382{bottom:844.593141pt;}
.y3f_c00382{bottom:844.701547pt;}
.y3e_c00382{bottom:845.087733pt;}
.y3d_c00382{bottom:845.189739pt;}
.y3c_c00382{bottom:845.334411pt;}
.y3b_c00382{bottom:845.634443pt;}
.y3a_c00382{bottom:845.782032pt;}
.y39_c00382{bottom:846.125941pt;}
.y38_c00382{bottom:846.709573pt;}
.y37_c00382{bottom:847.189429pt;}
.y36_c00382{bottom:875.274827pt;}
.y35_c00382{bottom:875.865008pt;}
.y34_c00382{bottom:876.048181pt;}
.y33_c00382{bottom:876.585056pt;}
.y32_c00382{bottom:877.048496pt;}
.y31_c00382{bottom:877.529067pt;}
.y30_c00382{bottom:878.056464pt;}
.y2f_c00382{bottom:878.630757pt;}
.y2e_c00382{bottom:906.405616pt;}
.y2d_c00382{bottom:906.806395pt;}
.y2c_c00382{bottom:907.151739pt;}
.y2b_c00382{bottom:907.297584pt;}
.y2a_c00382{bottom:907.596085pt;}
.y29_c00382{bottom:907.992027pt;}
.y28_c00382{bottom:908.481525pt;}
.y27_c00382{bottom:908.627387pt;}
.y26_c00382{bottom:908.872176pt;}
.y25_c00382{bottom:909.353595pt;}
.y24_c00382{bottom:937.660491pt;}
.y23_c00382{bottom:938.004187pt;}
.y22_c00382{bottom:938.153728pt;}
.y21_c00382{bottom:938.357867pt;}
.y20_c00382{bottom:938.653173pt;}
.y1f_c00382{bottom:938.895509pt;}
.y1e_c00382{bottom:939.042357pt;}
.y1d_c00382{bottom:939.188464pt;}
.y1c_c00382{bottom:939.339312pt;}
.y1b_c00382{bottom:939.441269pt;}
.y1a_c00382{bottom:939.775616pt;}
.y19_c00382{bottom:939.926512pt;}
.y18_c00382{bottom:940.266693pt;}
.y17_c00382{bottom:940.555616pt;}
.y16_c00382{bottom:970.552747pt;}
.y15_c00382{bottom:971.037088pt;}
.y14_c00382{bottom:971.990075pt;}
.y13_c00382{bottom:972.945989pt;}
.y12_c00382{bottom:973.733739pt;}
.y11_c00382{bottom:974.374859pt;}
.y10_c00382{bottom:975.458181pt;}
.yf_c00382{bottom:975.929483pt;}
.ye_c00382{bottom:976.405125pt;}
.yd_c00382{bottom:978.728811pt;}
.yc_c00382{bottom:979.199552pt;}
.yb_c00382{bottom:1002.223925pt;}
.ya_c00382{bottom:1002.820149pt;}
.y9_c00382{bottom:1004.251685pt;}
.y8_c00382{bottom:1005.202117pt;}
.y7_c00382{bottom:1005.455333pt;}
.y6_c00382{bottom:1006.622341pt;}
.y5_c00382{bottom:1007.451797pt;}
.y4_c00382{bottom:1007.912213pt;}
.y3_c00382{bottom:1008.721333pt;}
.y2_c00382{bottom:1056.829333pt;}
.y1_c00382{bottom:1088.400000pt;}
.h2_c00382{height:16.000000pt;}
.hf_c00382{height:26.666667pt;}
.h6_c00382{height:58.670891pt;}
.h7_c00382{height:64.004608pt;}
.hc_c00382{height:64.007200pt;}
.h9_c00382{height:64.008191pt;}
.he_c00382{height:69.336141pt;}
.h4_c00382{height:69.338325pt;}
.ha_c00382{height:69.342207pt;}
.hb_c00382{height:69.343351pt;}
.h3_c00382{height:74.666667pt;}
.h5_c00382{height:74.672042pt;}
.hd_c00382{height:74.675066pt;}
.h10_c00382{height:80.000000pt;}
.h8_c00382{height:80.005760pt;}
.h0_c00382{height:1112.400000pt;}
.h1_c00382{height:1112.666667pt;}
.w0_c00382{width:813.333333pt;}
.x0_c00382{left:0.000000pt;}
.x9d_c00382{left:136.560000pt;}
.xb0_c00382{left:138.872000pt;}
.x71_c00382{left:139.825933pt;}
.x65_c00382{left:140.721120pt;}
.x4b_c00382{left:141.845472pt;}
.x36_c00382{left:142.804875pt;}
.x4_c00382{left:143.888000pt;}
.x81_c00382{left:159.918239pt;}
.x4c_c00382{left:170.406917pt;}
.xd_c00382{left:173.353717pt;}
.xa7_c00382{left:177.132000pt;}
.x3b_c00382{left:181.360048pt;}
.x9e_c00382{left:186.886667pt;}
.xb1_c00382{left:196.986667pt;}
.x66_c00382{left:198.144288pt;}
.x15_c00382{left:201.294928pt;}
.x45_c00382{left:209.399669pt;}
.x5_c00382{left:211.314667pt;}
.xa4_c00382{left:216.480000pt;}
.x53_c00382{left:218.650613pt;}
.x37_c00382{left:220.330709pt;}
.x94_c00382{left:226.594247pt;}
.x6d_c00382{left:236.432000pt;}
.x55_c00382{left:237.424000pt;}
.x46_c00382{left:238.430688pt;}
.x20_c00382{left:239.689109pt;}
.xa5_c00382{left:244.800000pt;}
.x72_c00382{left:246.315937pt;}
.x67_c00382{left:247.507200pt;}
.x54_c00382{left:248.412235pt;}
.x6_c00382{left:249.682667pt;}
.x9f_c00382{left:255.280000pt;}
.x79_c00382{left:256.189588pt;}
.x88_c00382{left:264.760000pt;}
.x42_c00382{left:267.374480pt;}
.x16_c00382{left:269.204624pt;}
.x82_c00382{left:275.040188pt;}
.x56_c00382{left:276.760000pt;}
.x3c_c00382{left:278.805904pt;}
.x5d_c00382{left:286.491275pt;}
.x21_c00382{left:288.647888pt;}
.xb2_c00382{left:292.645333pt;}
.x97_c00382{left:293.577333pt;}
.x89_c00382{left:294.760000pt;}
.x47_c00382{left:297.224725pt;}
.x17_c00382{left:299.448501pt;}
.xa6_c00382{left:303.600000pt;}
.x68_c00382{left:305.593077pt;}
.x57_c00382{left:306.542667pt;}
.x38_c00382{left:307.456587pt;}
.xa8_c00382{left:313.106667pt;}
.x7a_c00382{left:314.755875pt;}
.x5e_c00382{left:315.760416pt;}
.x3d_c00382{left:316.713509pt;}
.x22_c00382{left:317.694320pt;}
.x7_c00382{left:318.804000pt;}
.xac_c00382{left:322.172000pt;}
.x8a_c00382{left:323.126667pt;}
.x27_c00382{left:326.806923pt;}
.x83_c00382{left:334.583875pt;}
.x39_c00382{left:337.458240pt;}
.xa0_c00382{left:342.977333pt;}
.x5f_c00382{left:345.767019pt;}
.xe_c00382{left:348.289317pt;}
.x73_c00382{left:353.153987pt;}
.x4d_c00382{left:355.460224pt;}
.x2d_c00382{left:356.583760pt;}
.xad_c00382{left:361.228000pt;}
.x7b_c00382{left:363.520665pt;}
.x18_c00382{left:366.427467pt;}
.x60_c00382{left:374.108011pt;}
.x2_c00382{left:377.520000pt;}
.xb3_c00382{left:381.456000pt;}
.x7c_c00382{left:383.173013pt;}
.x19_c00382{left:386.814512pt;}
.x98_c00382{left:391.981333pt;}
.x48_c00382{left:394.676560pt;}
.x3e_c00382{left:395.918261pt;}
.x3_c00382{left:398.160000pt;}
.x1_c00382{left:399.840000pt;}
.x74_c00382{left:403.061259pt;}
.x69_c00382{left:404.242901pt;}
.x28_c00382{left:406.971365pt;}
.xae_c00382{left:410.462667pt;}
.x84_c00382{left:412.350523pt;}
.x8_c00382{left:416.054667pt;}
.x1a_c00382{left:417.054389pt;}
.xb4_c00382{left:420.572000pt;}
.x99_c00382{left:422.473333pt;}
.x58_c00382{left:424.382667pt;}
.x2e_c00382{left:425.470885pt;}
.x7d_c00382{left:432.413872pt;}
.x6a_c00382{left:433.521173pt;}
.x9_c00382{left:437.156000pt;}
.xa9_c00382{left:440.094667pt;}
.x85_c00382{left:442.599044pt;}
.xf_c00382{left:445.503328pt;}
.xa1_c00382{left:450.156000pt;}
.x61_c00382{left:453.065920pt;}
.x2f_c00382{left:454.994699pt;}
.x7e_c00382{left:461.918383pt;}
.x59_c00382{left:462.832000pt;}
.x8e_c00382{left:470.823453pt;}
.x1b_c00382{left:475.583301pt;}
.x95_c00382{left:480.260160pt;}
.x75_c00382{left:482.046665pt;}
.x29_c00382{left:484.263600pt;}
.x10_c00382{left:485.594741pt;}
.xaa_c00382{left:489.318667pt;}
.x4e_c00382{left:493.470763pt;}
.x23_c00382{left:494.829200pt;}
.x62_c00382{left:503.480128pt;}
.x9a_c00382{left:509.384000pt;}
.x6e_c00382{left:511.978667pt;}
.x30_c00382{left:515.002405pt;}
.xa_c00382{left:516.358667pt;}
.x8f_c00382{left:519.565420pt;}
.x7f_c00382{left:520.736715pt;}
.x5a_c00382{left:521.644000pt;}
.x1c_c00382{left:524.115381pt;}
.xa2_c00382{left:529.136000pt;}
.x86_c00382{left:530.223207pt;}
.x49_c00382{left:532.691541pt;}
.x11_c00382{left:534.793707pt;}
.xab_c00382{left:538.766667pt;}
.x90_c00382{left:540.439227pt;}
.x43_c00382{left:542.914144pt;}
.x31_c00382{left:544.060853pt;}
.x96_c00382{left:550.561000pt;}
.x4f_c00382{left:552.753957pt;}
.x24_c00382{left:554.598224pt;}
.x8b_c00382{left:559.682667pt;}
.x3f_c00382{left:562.757611pt;}
.x32_c00382{left:564.451899pt;}
.x2a_c00382{left:573.787381pt;}
.xa3_c00382{left:579.309333pt;}
.x6f_c00382{left:581.593333pt;}
.x1d_c00382{left:583.173675pt;}
.x6b_c00382{left:589.500811pt;}
.x63_c00382{left:591.098219pt;}
.x12_c00382{left:594.561509pt;}
.x91_c00382{left:599.253380pt;}
.x40_c00382{left:602.350645pt;}
.x2b_c00382{left:604.276240pt;}
.x9b_c00382{left:609.257333pt;}
.x8c_c00382{left:619.788000pt;}
.x1e_c00382{left:623.966432pt;}
.xaf_c00382{left:628.650667pt;}
.x44_c00382{left:632.440373pt;}
.xb_c00382{left:635.653333pt;}
.x76_c00382{left:639.513411pt;}
.x33_c00382{left:641.751728pt;}
.x9c_c00382{left:648.849333pt;}
.x5b_c00382{left:651.220000pt;}
.x25_c00382{left:652.761131pt;}
.x13_c00382{left:654.085312pt;}
.x50_c00382{left:661.721653pt;}
.x34_c00382{left:663.342869pt;}
.x77_c00382{left:669.526325pt;}
.x41_c00382{left:672.676203pt;}
.x8d_c00382{left:678.842667pt;}
.x5c_c00382{left:680.036000pt;}
.x3a_c00382{left:681.642459pt;}
.x14_c00382{left:684.334523pt;}
.xc_c00382{left:685.338667pt;}
.x80_c00382{left:688.502373pt;}
.x64_c00382{left:691.195840pt;}
.x78_c00382{left:698.961816pt;}
.x51_c00382{left:700.844619pt;}
.x2c_c00382{left:702.687328pt;}
.x70_c00382{left:709.128000pt;}
.x87_c00382{left:718.439736pt;}
.x1f_c00382{left:722.633387pt;}
.x35_c00382{left:731.281915pt;}
.x26_c00382{left:732.943867pt;}
.x92_c00382{left:737.058040pt;}
.x6c_c00382{left:739.108277pt;}
.x52_c00382{left:740.927728pt;}
.x4a_c00382{left:749.904800pt;}
.x93_c00382{left:757.686473pt;}
}





/* 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_c00383 {
    display:none;
  }
  .loading-indicator_c00383.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00383 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_c00383 { 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_c00383" -> "#page-container .classname_c00383")
 */
.pf_c00383 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00383 { /* 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_c00383.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00383 { /* 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_c00383 { /* 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_c00383 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00383 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00383 {overflow:visible;}
  }
}
.c_c00383 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00383 { /* 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_c00383:after { /* webkit #35443 */
  content: '';
}
.t_c00383:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00383 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 */
}
.__c00383 { /* 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_c00383 { /* info for Javascript */
  display:none;
}
.l_c00383 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00383 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00383 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00383: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_c00383 {
    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_c00383.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00383.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_c00383 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00383{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00383;src:url('chunks/assets/font_cfe63ee56e9e10a97d33a3db.woff2')format("woff");}.ff1_c00383{font-family:ff1_c00383;line-height:1.000000;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;}
.m46_c00383{transform:matrix(0.009090,-0.000064,0.001750,0.249994,0,0);-ms-transform:matrix(0.009090,-0.000064,0.001750,0.249994,0,0);-webkit-transform:matrix(0.009090,-0.000064,0.001750,0.249994,0,0);}
.m1b_c00383{transform:matrix(0.012480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.012480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.012480,0.000000,0.000000,0.250000,0,0);}
.m45_c00383{transform:matrix(0.123272,-0.000863,0.001750,0.249994,0,0);-ms-transform:matrix(0.123272,-0.000863,0.001750,0.249994,0,0);-webkit-transform:matrix(0.123272,-0.000863,0.001750,0.249994,0,0);}
.m8c_c00383{transform:matrix(0.128762,-0.002446,0.004749,0.249955,0,0);-ms-transform:matrix(0.128762,-0.002446,0.004749,0.249955,0,0);-webkit-transform:matrix(0.128762,-0.002446,0.004749,0.249955,0,0);}
.m86_c00383{transform:matrix(0.128862,-0.002448,0.004749,0.249955,0,0);-ms-transform:matrix(0.128862,-0.002448,0.004749,0.249955,0,0);-webkit-transform:matrix(0.128862,-0.002448,0.004749,0.249955,0,0);}
.m89_c00383{transform:matrix(0.140215,-0.002664,0.004749,0.249955,0,0);-ms-transform:matrix(0.140215,-0.002664,0.004749,0.249955,0,0);-webkit-transform:matrix(0.140215,-0.002664,0.004749,0.249955,0,0);}
.m88_c00383{transform:matrix(0.141040,-0.002680,0.004749,0.249955,0,0);-ms-transform:matrix(0.141040,-0.002680,0.004749,0.249955,0,0);-webkit-transform:matrix(0.141040,-0.002680,0.004749,0.249955,0,0);}
.m2_c00383{transform:matrix(0.141510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141510,0.000000,0.000000,0.250000,0,0);}
.m31_c00383{transform:matrix(0.145200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145200,0.000000,0.000000,0.250000,0,0);}
.m8b_c00383{transform:matrix(0.145984,-0.002774,0.004749,0.249955,0,0);-ms-transform:matrix(0.145984,-0.002774,0.004749,0.249955,0,0);-webkit-transform:matrix(0.145984,-0.002774,0.004749,0.249955,0,0);}
.m87_c00383{transform:matrix(0.147093,-0.002795,0.004749,0.249955,0,0);-ms-transform:matrix(0.147093,-0.002795,0.004749,0.249955,0,0);-webkit-transform:matrix(0.147093,-0.002795,0.004749,0.249955,0,0);}
.m61_c00383{transform:matrix(0.147526,-0.001033,0.001750,0.249994,0,0);-ms-transform:matrix(0.147526,-0.001033,0.001750,0.249994,0,0);-webkit-transform:matrix(0.147526,-0.001033,0.001750,0.249994,0,0);}
.m3f_c00383{transform:matrix(0.149736,-0.001048,0.001750,0.249994,0,0);-ms-transform:matrix(0.149736,-0.001048,0.001750,0.249994,0,0);-webkit-transform:matrix(0.149736,-0.001048,0.001750,0.249994,0,0);}
.m60_c00383{transform:matrix(0.150056,-0.001050,0.001750,0.249994,0,0);-ms-transform:matrix(0.150056,-0.001050,0.001750,0.249994,0,0);-webkit-transform:matrix(0.150056,-0.001050,0.001750,0.249994,0,0);}
.m5_c00383{transform:matrix(0.156065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156065,0.000000,0.000000,0.250000,0,0);}
.ma2_c00383{transform:matrix(0.156100,0.001249,-0.002000,0.249992,0,0);-ms-transform:matrix(0.156100,0.001249,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.156100,0.001249,-0.002000,0.249992,0,0);}
.m33_c00383{transform:matrix(0.158280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158280,0.000000,0.000000,0.250000,0,0);}
.m2e_c00383{transform:matrix(0.159145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159145,0.000000,0.000000,0.250000,0,0);}
.m40_c00383{transform:matrix(0.161291,-0.001129,0.001750,0.249994,0,0);-ms-transform:matrix(0.161291,-0.001129,0.001750,0.249994,0,0);-webkit-transform:matrix(0.161291,-0.001129,0.001750,0.249994,0,0);}
.m6f_c00383{transform:matrix(0.163961,-0.001148,0.001750,0.249994,0,0);-ms-transform:matrix(0.163961,-0.001148,0.001750,0.249994,0,0);-webkit-transform:matrix(0.163961,-0.001148,0.001750,0.249994,0,0);}
.m18_c00383{transform:matrix(0.163965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163965,0.000000,0.000000,0.250000,0,0);}
.m2f_c00383{transform:matrix(0.165815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165815,0.000000,0.000000,0.250000,0,0);}
.m64_c00383{transform:matrix(0.166536,-0.001166,0.001750,0.249994,0,0);-ms-transform:matrix(0.166536,-0.001166,0.001750,0.249994,0,0);-webkit-transform:matrix(0.166536,-0.001166,0.001750,0.249994,0,0);}
.m9d_c00383{transform:matrix(0.167875,0.001343,-0.002000,0.249992,0,0);-ms-transform:matrix(0.167875,0.001343,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.167875,0.001343,-0.002000,0.249992,0,0);}
.m16_c00383{transform:matrix(0.169725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169725,0.000000,0.000000,0.250000,0,0);}
.m6a_c00383{transform:matrix(0.169856,-0.001189,0.001750,0.249994,0,0);-ms-transform:matrix(0.169856,-0.001189,0.001750,0.249994,0,0);-webkit-transform:matrix(0.169856,-0.001189,0.001750,0.249994,0,0);}
.m8a_c00383{transform:matrix(0.170839,-0.003246,0.004749,0.249955,0,0);-ms-transform:matrix(0.170839,-0.003246,0.004749,0.249955,0,0);-webkit-transform:matrix(0.170839,-0.003246,0.004749,0.249955,0,0);}
.m85_c00383{transform:matrix(0.173204,-0.003291,0.004749,0.249955,0,0);-ms-transform:matrix(0.173204,-0.003291,0.004749,0.249955,0,0);-webkit-transform:matrix(0.173204,-0.003291,0.004749,0.249955,0,0);}
.m30_c00383{transform:matrix(0.173320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173320,0.000000,0.000000,0.250000,0,0);}
.m2c_c00383{transform:matrix(0.173450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173450,0.000000,0.000000,0.250000,0,0);}
.m2b_c00383{transform:matrix(0.173680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173680,0.000000,0.000000,0.250000,0,0);}
.m6d_c00383{transform:matrix(0.174261,-0.001220,0.001750,0.249994,0,0);-ms-transform:matrix(0.174261,-0.001220,0.001750,0.249994,0,0);-webkit-transform:matrix(0.174261,-0.001220,0.001750,0.249994,0,0);}
.m72_c00383{transform:matrix(0.174371,-0.001221,0.001750,0.249994,0,0);-ms-transform:matrix(0.174371,-0.001221,0.001750,0.249994,0,0);-webkit-transform:matrix(0.174371,-0.001221,0.001750,0.249994,0,0);}
.m5e_c00383{transform:matrix(0.175021,-0.001225,0.001750,0.249994,0,0);-ms-transform:matrix(0.175021,-0.001225,0.001750,0.249994,0,0);-webkit-transform:matrix(0.175021,-0.001225,0.001750,0.249994,0,0);}
.m42_c00383{transform:matrix(0.175831,-0.001231,0.001750,0.249994,0,0);-ms-transform:matrix(0.175831,-0.001231,0.001750,0.249994,0,0);-webkit-transform:matrix(0.175831,-0.001231,0.001750,0.249994,0,0);}
.m6c_c00383{transform:matrix(0.176461,-0.001235,0.001750,0.249994,0,0);-ms-transform:matrix(0.176461,-0.001235,0.001750,0.249994,0,0);-webkit-transform:matrix(0.176461,-0.001235,0.001750,0.249994,0,0);}
.m2d_c00383{transform:matrix(0.177900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177900,0.000000,0.000000,0.250000,0,0);}
.m73_c00383{transform:matrix(0.179071,-0.001253,0.001750,0.249994,0,0);-ms-transform:matrix(0.179071,-0.001253,0.001750,0.249994,0,0);-webkit-transform:matrix(0.179071,-0.001253,0.001750,0.249994,0,0);}
.m94_c00383{transform:matrix(0.181389,0.001451,-0.002000,0.249992,0,0);-ms-transform:matrix(0.181389,0.001451,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.181389,0.001451,-0.002000,0.249992,0,0);}
.m3d_c00383{transform:matrix(0.184380,-0.001291,0.001750,0.249994,0,0);-ms-transform:matrix(0.184380,-0.001291,0.001750,0.249994,0,0);-webkit-transform:matrix(0.184380,-0.001291,0.001750,0.249994,0,0);}
.m34_c00383{transform:matrix(0.184855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184855,0.000000,0.000000,0.250000,0,0);}
.m65_c00383{transform:matrix(0.185490,-0.001298,0.001750,0.249994,0,0);-ms-transform:matrix(0.185490,-0.001298,0.001750,0.249994,0,0);-webkit-transform:matrix(0.185490,-0.001298,0.001750,0.249994,0,0);}
.m41_c00383{transform:matrix(0.186390,-0.001305,0.001750,0.249994,0,0);-ms-transform:matrix(0.186390,-0.001305,0.001750,0.249994,0,0);-webkit-transform:matrix(0.186390,-0.001305,0.001750,0.249994,0,0);}
.m13_c00383{transform:matrix(0.186660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186660,0.000000,0.000000,0.250000,0,0);}
.m12_c00383{transform:matrix(0.188130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188130,0.000000,0.000000,0.250000,0,0);}
.m91_c00383{transform:matrix(0.188344,0.001507,-0.002000,0.249992,0,0);-ms-transform:matrix(0.188344,0.001507,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.188344,0.001507,-0.002000,0.249992,0,0);}
.m9f_c00383{transform:matrix(0.188514,0.001508,-0.002000,0.249992,0,0);-ms-transform:matrix(0.188514,0.001508,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.188514,0.001508,-0.002000,0.249992,0,0);}
.ma1_c00383{transform:matrix(0.189179,0.001513,-0.002000,0.249992,0,0);-ms-transform:matrix(0.189179,0.001513,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.189179,0.001513,-0.002000,0.249992,0,0);}
.m9e_c00383{transform:matrix(0.189414,0.001515,-0.002000,0.249992,0,0);-ms-transform:matrix(0.189414,0.001515,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.189414,0.001515,-0.002000,0.249992,0,0);}
.m43_c00383{transform:matrix(0.189505,-0.001327,0.001750,0.249994,0,0);-ms-transform:matrix(0.189505,-0.001327,0.001750,0.249994,0,0);-webkit-transform:matrix(0.189505,-0.001327,0.001750,0.249994,0,0);}
.m3e_c00383{transform:matrix(0.190060,-0.001330,0.001750,0.249994,0,0);-ms-transform:matrix(0.190060,-0.001330,0.001750,0.249994,0,0);-webkit-transform:matrix(0.190060,-0.001330,0.001750,0.249994,0,0);}
.m63_c00383{transform:matrix(0.190540,-0.001334,0.001750,0.249994,0,0);-ms-transform:matrix(0.190540,-0.001334,0.001750,0.249994,0,0);-webkit-transform:matrix(0.190540,-0.001334,0.001750,0.249994,0,0);}
.m71_c00383{transform:matrix(0.191055,-0.001337,0.001750,0.249994,0,0);-ms-transform:matrix(0.191055,-0.001337,0.001750,0.249994,0,0);-webkit-transform:matrix(0.191055,-0.001337,0.001750,0.249994,0,0);}
.m70_c00383{transform:matrix(0.194455,-0.001361,0.001750,0.249994,0,0);-ms-transform:matrix(0.194455,-0.001361,0.001750,0.249994,0,0);-webkit-transform:matrix(0.194455,-0.001361,0.001750,0.249994,0,0);}
.m62_c00383{transform:matrix(0.194940,-0.001365,0.001750,0.249994,0,0);-ms-transform:matrix(0.194940,-0.001365,0.001750,0.249994,0,0);-webkit-transform:matrix(0.194940,-0.001365,0.001750,0.249994,0,0);}
.m6e_c00383{transform:matrix(0.195190,-0.001366,0.001750,0.249994,0,0);-ms-transform:matrix(0.195190,-0.001366,0.001750,0.249994,0,0);-webkit-transform:matrix(0.195190,-0.001366,0.001750,0.249994,0,0);}
.m66_c00383{transform:matrix(0.195580,-0.001369,0.001750,0.249994,0,0);-ms-transform:matrix(0.195580,-0.001369,0.001750,0.249994,0,0);-webkit-transform:matrix(0.195580,-0.001369,0.001750,0.249994,0,0);}
.m5a_c00383{transform:matrix(0.196120,-0.001373,0.001750,0.249994,0,0);-ms-transform:matrix(0.196120,-0.001373,0.001750,0.249994,0,0);-webkit-transform:matrix(0.196120,-0.001373,0.001750,0.249994,0,0);}
.m57_c00383{transform:matrix(0.199095,-0.001394,0.001750,0.249994,0,0);-ms-transform:matrix(0.199095,-0.001394,0.001750,0.249994,0,0);-webkit-transform:matrix(0.199095,-0.001394,0.001750,0.249994,0,0);}
.m8e_c00383{transform:matrix(0.200544,0.001604,-0.002000,0.249992,0,0);-ms-transform:matrix(0.200544,0.001604,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.200544,0.001604,-0.002000,0.249992,0,0);}
.m6_c00383{transform:matrix(0.201245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201245,0.000000,0.000000,0.250000,0,0);}
.m44_c00383{transform:matrix(0.201650,-0.001412,0.001750,0.249994,0,0);-ms-transform:matrix(0.201650,-0.001412,0.001750,0.249994,0,0);-webkit-transform:matrix(0.201650,-0.001412,0.001750,0.249994,0,0);}
.m4e_c00383{transform:matrix(0.202220,-0.001416,0.001750,0.249994,0,0);-ms-transform:matrix(0.202220,-0.001416,0.001750,0.249994,0,0);-webkit-transform:matrix(0.202220,-0.001416,0.001750,0.249994,0,0);}
.m19_c00383{transform:matrix(0.202755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202755,0.000000,0.000000,0.250000,0,0);}
.m3c_c00383{transform:matrix(0.204050,-0.001428,0.001750,0.249994,0,0);-ms-transform:matrix(0.204050,-0.001428,0.001750,0.249994,0,0);-webkit-transform:matrix(0.204050,-0.001428,0.001750,0.249994,0,0);}
.m5f_c00383{transform:matrix(0.204315,-0.001430,0.001750,0.249994,0,0);-ms-transform:matrix(0.204315,-0.001430,0.001750,0.249994,0,0);-webkit-transform:matrix(0.204315,-0.001430,0.001750,0.249994,0,0);}
.m48_c00383{transform:matrix(0.205085,-0.001436,0.001750,0.249994,0,0);-ms-transform:matrix(0.205085,-0.001436,0.001750,0.249994,0,0);-webkit-transform:matrix(0.205085,-0.001436,0.001750,0.249994,0,0);}
.m81_c00383{transform:matrix(0.206258,-0.003919,0.004749,0.249955,0,0);-ms-transform:matrix(0.206258,-0.003919,0.004749,0.249955,0,0);-webkit-transform:matrix(0.206258,-0.003919,0.004749,0.249955,0,0);}
.m10_c00383{transform:matrix(0.206665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206665,0.000000,0.000000,0.250000,0,0);}
.m93_c00383{transform:matrix(0.207068,0.001657,-0.002000,0.249992,0,0);-ms-transform:matrix(0.207068,0.001657,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.207068,0.001657,-0.002000,0.249992,0,0);}
.m47_c00383{transform:matrix(0.207190,-0.001450,0.001750,0.249994,0,0);-ms-transform:matrix(0.207190,-0.001450,0.001750,0.249994,0,0);-webkit-transform:matrix(0.207190,-0.001450,0.001750,0.249994,0,0);}
.m1e_c00383{transform:matrix(0.210620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210620,0.000000,0.000000,0.250000,0,0);}
.m38_c00383{transform:matrix(0.210850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210850,0.000000,0.000000,0.250000,0,0);}
.m37_c00383{transform:matrix(0.210875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210875,0.000000,0.000000,0.250000,0,0);}
.m99_c00383{transform:matrix(0.211198,0.001690,-0.002000,0.249992,0,0);-ms-transform:matrix(0.211198,0.001690,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.211198,0.001690,-0.002000,0.249992,0,0);}
.m8_c00383{transform:matrix(0.211420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211420,0.000000,0.000000,0.250000,0,0);}
.m95_c00383{transform:matrix(0.211688,0.001694,-0.002000,0.249992,0,0);-ms-transform:matrix(0.211688,0.001694,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.211688,0.001694,-0.002000,0.249992,0,0);}
.m90_c00383{transform:matrix(0.213663,0.001709,-0.002000,0.249992,0,0);-ms-transform:matrix(0.213663,0.001709,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.213663,0.001709,-0.002000,0.249992,0,0);}
.m51_c00383{transform:matrix(0.214380,-0.001501,0.001750,0.249994,0,0);-ms-transform:matrix(0.214380,-0.001501,0.001750,0.249994,0,0);-webkit-transform:matrix(0.214380,-0.001501,0.001750,0.249994,0,0);}
.m27_c00383{transform:matrix(0.215210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215210,0.000000,0.000000,0.250000,0,0);}
.m78_c00383{transform:matrix(0.216490,-0.001515,0.001750,0.249994,0,0);-ms-transform:matrix(0.216490,-0.001515,0.001750,0.249994,0,0);-webkit-transform:matrix(0.216490,-0.001515,0.001750,0.249994,0,0);}
.m96_c00383{transform:matrix(0.216808,0.001734,-0.002000,0.249992,0,0);-ms-transform:matrix(0.216808,0.001734,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.216808,0.001734,-0.002000,0.249992,0,0);}
.m7a_c00383{transform:matrix(0.217765,-0.001524,0.001750,0.249994,0,0);-ms-transform:matrix(0.217765,-0.001524,0.001750,0.249994,0,0);-webkit-transform:matrix(0.217765,-0.001524,0.001750,0.249994,0,0);}
.m15_c00383{transform:matrix(0.218360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218360,0.000000,0.000000,0.250000,0,0);}
.m7c_c00383{transform:matrix(0.223400,-0.001564,0.001750,0.249994,0,0);-ms-transform:matrix(0.223400,-0.001564,0.001750,0.249994,0,0);-webkit-transform:matrix(0.223400,-0.001564,0.001750,0.249994,0,0);}
.m14_c00383{transform:matrix(0.224095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224095,0.000000,0.000000,0.250000,0,0);}
.m6b_c00383{transform:matrix(0.224819,-0.001574,0.001750,0.249994,0,0);-ms-transform:matrix(0.224819,-0.001574,0.001750,0.249994,0,0);-webkit-transform:matrix(0.224819,-0.001574,0.001750,0.249994,0,0);}
.m39_c00383{transform:matrix(0.226185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226185,0.000000,0.000000,0.250000,0,0);}
.m79_c00383{transform:matrix(0.227519,-0.001593,0.001750,0.249994,0,0);-ms-transform:matrix(0.227519,-0.001593,0.001750,0.249994,0,0);-webkit-transform:matrix(0.227519,-0.001593,0.001750,0.249994,0,0);}
.m55_c00383{transform:matrix(0.227714,-0.001594,0.001750,0.249994,0,0);-ms-transform:matrix(0.227714,-0.001594,0.001750,0.249994,0,0);-webkit-transform:matrix(0.227714,-0.001594,0.001750,0.249994,0,0);}
.m58_c00383{transform:matrix(0.228604,-0.001600,0.001750,0.249994,0,0);-ms-transform:matrix(0.228604,-0.001600,0.001750,0.249994,0,0);-webkit-transform:matrix(0.228604,-0.001600,0.001750,0.249994,0,0);}
.m1f_c00383{transform:matrix(0.228790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228790,0.000000,0.000000,0.250000,0,0);}
.m9a_c00383{transform:matrix(0.229373,0.001835,-0.002000,0.249992,0,0);-ms-transform:matrix(0.229373,0.001835,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.229373,0.001835,-0.002000,0.249992,0,0);}
.m69_c00383{transform:matrix(0.230344,-0.001612,0.001750,0.249994,0,0);-ms-transform:matrix(0.230344,-0.001612,0.001750,0.249994,0,0);-webkit-transform:matrix(0.230344,-0.001612,0.001750,0.249994,0,0);}
.m54_c00383{transform:matrix(0.230439,-0.001613,0.001750,0.249994,0,0);-ms-transform:matrix(0.230439,-0.001613,0.001750,0.249994,0,0);-webkit-transform:matrix(0.230439,-0.001613,0.001750,0.249994,0,0);}
.m97_c00383{transform:matrix(0.230723,0.001846,-0.002000,0.249992,0,0);-ms-transform:matrix(0.230723,0.001846,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.230723,0.001846,-0.002000,0.249992,0,0);}
.m11_c00383{transform:matrix(0.230855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230855,0.000000,0.000000,0.250000,0,0);}
.m59_c00383{transform:matrix(0.233579,-0.001635,0.001750,0.249994,0,0);-ms-transform:matrix(0.233579,-0.001635,0.001750,0.249994,0,0);-webkit-transform:matrix(0.233579,-0.001635,0.001750,0.249994,0,0);}
.m1a_c00383{transform:matrix(0.233830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233830,0.000000,0.000000,0.250000,0,0);}
.m83_c00383{transform:matrix(0.235163,-0.004468,0.004749,0.249955,0,0);-ms-transform:matrix(0.235163,-0.004468,0.004749,0.249955,0,0);-webkit-transform:matrix(0.235163,-0.004468,0.004749,0.249955,0,0);}
.m53_c00383{transform:matrix(0.235429,-0.001648,0.001750,0.249994,0,0);-ms-transform:matrix(0.235429,-0.001648,0.001750,0.249994,0,0);-webkit-transform:matrix(0.235429,-0.001648,0.001750,0.249994,0,0);}
.m4d_c00383{transform:matrix(0.235929,-0.001652,0.001750,0.249994,0,0);-ms-transform:matrix(0.235929,-0.001652,0.001750,0.249994,0,0);-webkit-transform:matrix(0.235929,-0.001652,0.001750,0.249994,0,0);}
.m23_c00383{transform:matrix(0.236005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236005,0.000000,0.000000,0.250000,0,0);}
.m2a_c00383{transform:matrix(0.237330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237330,0.000000,0.000000,0.250000,0,0);}
.ma0_c00383{transform:matrix(0.237367,0.001899,-0.002000,0.249992,0,0);-ms-transform:matrix(0.237367,0.001899,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.237367,0.001899,-0.002000,0.249992,0,0);}
.m0_c00383{transform:matrix(0.237540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237540,0.000000,0.000000,0.250000,0,0);}
.m82_c00383{transform:matrix(0.238112,-0.004524,0.004749,0.249955,0,0);-ms-transform:matrix(0.238112,-0.004524,0.004749,0.249955,0,0);-webkit-transform:matrix(0.238112,-0.004524,0.004749,0.249955,0,0);}
.m5b_c00383{transform:matrix(0.238424,-0.001669,0.001750,0.249994,0,0);-ms-transform:matrix(0.238424,-0.001669,0.001750,0.249994,0,0);-webkit-transform:matrix(0.238424,-0.001669,0.001750,0.249994,0,0);}
.m25_c00383{transform:matrix(0.239545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239545,0.000000,0.000000,0.250000,0,0);}
.m67_c00383{transform:matrix(0.240789,-0.001686,0.001750,0.249994,0,0);-ms-transform:matrix(0.240789,-0.001686,0.001750,0.249994,0,0);-webkit-transform:matrix(0.240789,-0.001686,0.001750,0.249994,0,0);}
.m9_c00383{transform:matrix(0.241080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241080,0.000000,0.000000,0.250000,0,0);}
.m36_c00383{transform:matrix(0.242825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242825,0.000000,0.000000,0.250000,0,0);}
.m4b_c00383{transform:matrix(0.243359,-0.001704,0.001750,0.249994,0,0);-ms-transform:matrix(0.243359,-0.001704,0.001750,0.249994,0,0);-webkit-transform:matrix(0.243359,-0.001704,0.001750,0.249994,0,0);}
.m49_c00383{transform:matrix(0.244914,-0.001714,0.001750,0.249994,0,0);-ms-transform:matrix(0.244914,-0.001714,0.001750,0.249994,0,0);-webkit-transform:matrix(0.244914,-0.001714,0.001750,0.249994,0,0);}
.ma_c00383{transform:matrix(0.245645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245645,0.000000,0.000000,0.250000,0,0);}
.m35_c00383{transform:matrix(0.245685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245685,0.000000,0.000000,0.250000,0,0);}
.m17_c00383{transform:matrix(0.249700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249700,0.000000,0.000000,0.250000,0,0);}
.m3a_c00383{transform:matrix(0.249840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249840,0.000000,0.000000,0.250000,0,0);}
.m8f_c00383{transform:matrix(0.251137,0.002009,-0.002000,0.249992,0,0);-ms-transform:matrix(0.251137,0.002009,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.251137,0.002009,-0.002000,0.249992,0,0);}
.m7_c00383{transform:matrix(0.251145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251145,0.000000,0.000000,0.250000,0,0);}
.m50_c00383{transform:matrix(0.252419,-0.001767,0.001750,0.249994,0,0);-ms-transform:matrix(0.252419,-0.001767,0.001750,0.249994,0,0);-webkit-transform:matrix(0.252419,-0.001767,0.001750,0.249994,0,0);}
.m20_c00383{transform:matrix(0.253355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253355,0.000000,0.000000,0.250000,0,0);}
.m77_c00383{transform:matrix(0.253574,-0.001775,0.001750,0.249994,0,0);-ms-transform:matrix(0.253574,-0.001775,0.001750,0.249994,0,0);-webkit-transform:matrix(0.253574,-0.001775,0.001750,0.249994,0,0);}
.m5d_c00383{transform:matrix(0.254209,-0.001779,0.001750,0.249994,0,0);-ms-transform:matrix(0.254209,-0.001779,0.001750,0.249994,0,0);-webkit-transform:matrix(0.254209,-0.001779,0.001750,0.249994,0,0);}
.m7b_c00383{transform:matrix(0.254599,-0.001782,0.001750,0.249994,0,0);-ms-transform:matrix(0.254599,-0.001782,0.001750,0.249994,0,0);-webkit-transform:matrix(0.254599,-0.001782,0.001750,0.249994,0,0);}
.md_c00383{transform:matrix(0.256765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256765,0.000000,0.000000,0.250000,0,0);}
.mc_c00383{transform:matrix(0.257405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257405,0.000000,0.000000,0.250000,0,0);}
.me_c00383{transform:matrix(0.258030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258030,0.000000,0.000000,0.250000,0,0);}
.m26_c00383{transform:matrix(0.258335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258335,0.000000,0.000000,0.250000,0,0);}
.m7d_c00383{transform:matrix(0.259474,-0.001816,0.001750,0.249994,0,0);-ms-transform:matrix(0.259474,-0.001816,0.001750,0.249994,0,0);-webkit-transform:matrix(0.259474,-0.001816,0.001750,0.249994,0,0);}
.m92_c00383{transform:matrix(0.261197,0.002090,-0.002000,0.249992,0,0);-ms-transform:matrix(0.261197,0.002090,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.261197,0.002090,-0.002000,0.249992,0,0);}
.m84_c00383{transform:matrix(0.262718,-0.004992,0.004749,0.249955,0,0);-ms-transform:matrix(0.262718,-0.004992,0.004749,0.249955,0,0);-webkit-transform:matrix(0.262718,-0.004992,0.004749,0.249955,0,0);}
.ma4_c00383{transform:matrix(0.263405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263405,0.000000,0.000000,0.250000,0,0);}
.m98_c00383{transform:matrix(0.274011,0.002192,-0.002000,0.249992,0,0);-ms-transform:matrix(0.274011,0.002192,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.274011,0.002192,-0.002000,0.249992,0,0);}
.m4f_c00383{transform:matrix(0.275043,-0.001925,0.001750,0.249994,0,0);-ms-transform:matrix(0.275043,-0.001925,0.001750,0.249994,0,0);-webkit-transform:matrix(0.275043,-0.001925,0.001750,0.249994,0,0);}
.m1_c00383{transform:matrix(0.275600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275600,0.000000,0.000000,0.250000,0,0);}
.m28_c00383{transform:matrix(0.281290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281290,0.000000,0.000000,0.250000,0,0);}
.m4a_c00383{transform:matrix(0.288518,-0.002020,0.001750,0.249994,0,0);-ms-transform:matrix(0.288518,-0.002020,0.001750,0.249994,0,0);-webkit-transform:matrix(0.288518,-0.002020,0.001750,0.249994,0,0);}
.m1c_c00383{transform:matrix(0.288725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288725,0.000000,0.000000,0.250000,0,0);}
.m1d_c00383{transform:matrix(0.290905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290905,0.000000,0.000000,0.250000,0,0);}
.m32_c00383{transform:matrix(0.292190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292190,0.000000,0.000000,0.250000,0,0);}
.m3b_c00383{transform:matrix(0.294703,-0.002063,0.001750,0.249994,0,0);-ms-transform:matrix(0.294703,-0.002063,0.001750,0.249994,0,0);-webkit-transform:matrix(0.294703,-0.002063,0.001750,0.249994,0,0);}
.mf_c00383{transform:matrix(0.296625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296625,0.000000,0.000000,0.250000,0,0);}
.m22_c00383{transform:matrix(0.297255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297255,0.000000,0.000000,0.250000,0,0);}
.m80_c00383{transform:matrix(0.297971,-0.005661,0.004749,0.249955,0,0);-ms-transform:matrix(0.297971,-0.005661,0.004749,0.249955,0,0);-webkit-transform:matrix(0.297971,-0.005661,0.004749,0.249955,0,0);}
.m52_c00383{transform:matrix(0.306987,-0.002149,0.001750,0.249994,0,0);-ms-transform:matrix(0.306987,-0.002149,0.001750,0.249994,0,0);-webkit-transform:matrix(0.306987,-0.002149,0.001750,0.249994,0,0);}
.m24_c00383{transform:matrix(0.310470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310470,0.000000,0.000000,0.250000,0,0);}
.m9c_c00383{transform:matrix(0.310640,0.002485,-0.002000,0.249992,0,0);-ms-transform:matrix(0.310640,0.002485,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.310640,0.002485,-0.002000,0.249992,0,0);}
.m21_c00383{transform:matrix(0.334105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334105,0.000000,0.000000,0.250000,0,0);}
.m75_c00383{transform:matrix(0.353851,-0.002477,0.001750,0.249994,0,0);-ms-transform:matrix(0.353851,-0.002477,0.001750,0.249994,0,0);-webkit-transform:matrix(0.353851,-0.002477,0.001750,0.249994,0,0);}
.m76_c00383{transform:matrix(0.358996,-0.002513,0.001750,0.249994,0,0);-ms-transform:matrix(0.358996,-0.002513,0.001750,0.249994,0,0);-webkit-transform:matrix(0.358996,-0.002513,0.001750,0.249994,0,0);}
.m7f_c00383{transform:matrix(0.383831,-0.002687,0.001750,0.249994,0,0);-ms-transform:matrix(0.383831,-0.002687,0.001750,0.249994,0,0);-webkit-transform:matrix(0.383831,-0.002687,0.001750,0.249994,0,0);}
.m7e_c00383{transform:matrix(0.416195,-0.002913,0.001750,0.249994,0,0);-ms-transform:matrix(0.416195,-0.002913,0.001750,0.249994,0,0);-webkit-transform:matrix(0.416195,-0.002913,0.001750,0.249994,0,0);}
.mb_c00383{transform:matrix(0.420235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420235,0.000000,0.000000,0.250000,0,0);}
.m4c_c00383{transform:matrix(0.423705,-0.002966,0.001750,0.249994,0,0);-ms-transform:matrix(0.423705,-0.002966,0.001750,0.249994,0,0);-webkit-transform:matrix(0.423705,-0.002966,0.001750,0.249994,0,0);}
.m5c_c00383{transform:matrix(0.444559,-0.003112,0.001750,0.249994,0,0);-ms-transform:matrix(0.444559,-0.003112,0.001750,0.249994,0,0);-webkit-transform:matrix(0.444559,-0.003112,0.001750,0.249994,0,0);}
.ma5_c00383{transform:matrix(0.455565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455565,0.000000,0.000000,0.250000,0,0);}
.ma3_c00383{transform:matrix(0.457350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457350,0.000000,0.000000,0.250000,0,0);}
.m56_c00383{transform:matrix(0.465154,-0.003256,0.001750,0.249994,0,0);-ms-transform:matrix(0.465154,-0.003256,0.001750,0.249994,0,0);-webkit-transform:matrix(0.465154,-0.003256,0.001750,0.249994,0,0);}
.m68_c00383{transform:matrix(0.479573,-0.003357,0.001750,0.249994,0,0);-ms-transform:matrix(0.479573,-0.003357,0.001750,0.249994,0,0);-webkit-transform:matrix(0.479573,-0.003357,0.001750,0.249994,0,0);}
.m74_c00383{transform:matrix(0.529007,-0.003703,0.001750,0.249994,0,0);-ms-transform:matrix(0.529007,-0.003703,0.001750,0.249994,0,0);-webkit-transform:matrix(0.529007,-0.003703,0.001750,0.249994,0,0);}
.m3_c00383{transform:matrix(0.547815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547815,0.000000,0.000000,0.250000,0,0);}
.m8d_c00383{transform:matrix(0.570207,-0.010834,0.004749,0.249955,0,0);-ms-transform:matrix(0.570207,-0.010834,0.004749,0.249955,0,0);-webkit-transform:matrix(0.570207,-0.010834,0.004749,0.249955,0,0);}
.m29_c00383{transform:matrix(0.584395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.584395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.584395,0.000000,0.000000,0.250000,0,0);}
.ma6_c00383{transform:matrix(0.584800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.584800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.584800,0.000000,0.000000,0.250000,0,0);}
.m4_c00383{transform:matrix(0.645175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.645175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.645175,0.000000,0.000000,0.250000,0,0);}
.m9b_c00383{transform:matrix(0.841493,0.006732,-0.002000,0.249992,0,0);-ms-transform:matrix(0.841493,0.006732,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.841493,0.006732,-0.002000,0.249992,0,0);}
.v0_c00383{vertical-align:0.000000px;}
.ls0_c00383{letter-spacing:0.000000px;}
.sc__c00383{text-shadow:none;}
.sc0_c00383{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__c00383{-webkit-text-stroke:0px transparent;}
.sc0_c00383{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00383{word-spacing:0.000000px;}
.fc0_c00383{color:transparent;}
.fs4_c00383{font-size:12.000000px;}
.fs2_c00383{font-size:18.000000px;}
.fs3_c00383{font-size:24.000000px;}
.fs1_c00383{font-size:54.000000px;}
.fs0_c00383{font-size:72.000000px;}
.fs7_c00383{font-size:78.000000px;}
.fsc_c00383{font-size:78.001911px;}
.fs5_c00383{font-size:84.000000px;}
.fsa_c00383{font-size:84.002058px;}
.fs11_c00383{font-size:90.000000px;}
.fsf_c00383{font-size:90.002880px;}
.fsd_c00383{font-size:96.017326px;}
.fs6_c00383{font-size:102.000000px;}
.fs9_c00383{font-size:102.002499px;}
.fs10_c00383{font-size:102.003264px;}
.fsb_c00383{font-size:114.002793px;}
.fs8_c00383{font-size:120.000000px;}
.fse_c00383{font-size:138.024907px;}
.y0_c00383{bottom:0.000000px;}
.y73_c00383{bottom:575.104500px;}
.y72_c00383{bottom:611.385936px;}
.y71_c00383{bottom:611.898636px;}
.y70_c00383{bottom:612.496356px;}
.y6f_c00383{bottom:612.833220px;}
.y6e_c00383{bottom:613.455288px;}
.y6d_c00383{bottom:613.810332px;}
.y6c_c00383{bottom:614.592852px;}
.y6b_c00383{bottom:615.392964px;}
.y6a_c00383{bottom:647.022564px;}
.y69_c00383{bottom:647.281416px;}
.y68_c00383{bottom:647.538828px;}
.y67_c00383{bottom:647.987604px;}
.y66_c00383{bottom:648.277224px;}
.y65_c00383{bottom:648.683448px;}
.y64_c00383{bottom:648.940428px;}
.y63_c00383{bottom:649.454772px;}
.y62_c00383{bottom:649.714032px;}
.y61_c00383{bottom:649.918884px;}
.y60_c00383{bottom:650.376840px;}
.y5f_c00383{bottom:651.126576px;}
.y5e_c00383{bottom:651.241500px;}
.y59_c00383{bottom:685.402224px;}
.y5a_c00383{bottom:685.402326px;}
.y58_c00383{bottom:685.402515px;}
.y5d_c00383{bottom:685.402603px;}
.y5b_c00383{bottom:685.402873px;}
.y5c_c00383{bottom:685.402987px;}
.y57_c00383{bottom:685.403187px;}
.y56_c00383{bottom:685.403571px;}
.y54_c00383{bottom:685.404120px;}
.y55_c00383{bottom:685.404124px;}
.y50_c00383{bottom:718.843500px;}
.y51_c00383{bottom:720.246527px;}
.y52_c00383{bottom:721.329840px;}
.y53_c00383{bottom:721.902376px;}
.y4e_c00383{bottom:757.058809px;}
.y4f_c00383{bottom:757.058908px;}
.y4c_c00383{bottom:757.059141px;}
.y45_c00383{bottom:757.059165px;}
.y47_c00383{bottom:757.059204px;}
.y4d_c00383{bottom:757.059250px;}
.y46_c00383{bottom:757.059334px;}
.y4b_c00383{bottom:757.059372px;}
.y49_c00383{bottom:757.059513px;}
.y48_c00383{bottom:757.059613px;}
.y4a_c00383{bottom:757.059802px;}
.y44_c00383{bottom:757.059805px;}
.y38_c00383{bottom:792.447075px;}
.y39_c00383{bottom:792.646272px;}
.y3a_c00383{bottom:793.157676px;}
.y3b_c00383{bottom:793.365663px;}
.y3c_c00383{bottom:793.898574px;}
.y3d_c00383{bottom:794.171167px;}
.y3e_c00383{bottom:794.488908px;}
.y3f_c00383{bottom:795.085386px;}
.y40_c00383{bottom:795.281044px;}
.y41_c00383{bottom:795.757446px;}
.y42_c00383{bottom:796.154370px;}
.y43_c00383{bottom:796.350574px;}
.y2d_c00383{bottom:824.306368px;}
.y2e_c00383{bottom:824.802103px;}
.y2f_c00383{bottom:826.138131px;}
.y30_c00383{bottom:826.550578px;}
.y31_c00383{bottom:827.016808px;}
.y32_c00383{bottom:827.231749px;}
.y33_c00383{bottom:828.704122px;}
.y34_c00383{bottom:829.449519px;}
.y35_c00383{bottom:829.807764px;}
.y36_c00383{bottom:830.653840px;}
.y37_c00383{bottom:831.713902px;}
.y5_c00383{bottom:845.370000px;}
.y6_c00383{bottom:846.990000px;}
.y4_c00383{bottom:848.610000px;}
.y22_c00383{bottom:863.456952px;}
.y23_c00383{bottom:864.019893px;}
.y24_c00383{bottom:864.399451px;}
.y25_c00383{bottom:864.629346px;}
.y26_c00383{bottom:865.055470px;}
.y27_c00383{bottom:865.405460px;}
.y28_c00383{bottom:865.582939px;}
.y29_c00383{bottom:866.008653px;}
.y2a_c00383{bottom:866.236267px;}
.y2b_c00383{bottom:866.399262px;}
.y2c_c00383{bottom:866.783338px;}
.y3_c00383{bottom:897.210000px;}
.y21_c00383{bottom:900.686734px;}
.y1a_c00383{bottom:900.687198px;}
.y20_c00383{bottom:900.687225px;}
.y19_c00383{bottom:900.687508px;}
.y1f_c00383{bottom:900.687565px;}
.y18_c00383{bottom:900.687699px;}
.y1b_c00383{bottom:900.687777px;}
.y1e_c00383{bottom:900.687936px;}
.y17_c00383{bottom:900.687939px;}
.y1c_c00383{bottom:900.688186px;}
.y1d_c00383{bottom:900.688576px;}
.y2_c00383{bottom:921.378000px;}
.yc_c00383{bottom:933.661500px;}
.yd_c00383{bottom:933.980542px;}
.ye_c00383{bottom:934.541652px;}
.yf_c00383{bottom:934.696789px;}
.y10_c00383{bottom:935.318473px;}
.y11_c00383{bottom:935.481223px;}
.y12_c00383{bottom:935.704159px;}
.y13_c00383{bottom:936.167157px;}
.y14_c00383{bottom:936.399553px;}
.y15_c00383{bottom:936.940062px;}
.y16_c00383{bottom:938.345644px;}
.y1_c00383{bottom:942.030000px;}
.yb_c00383{bottom:973.080000px;}
.ya_c00383{bottom:1009.261500px;}
.y9_c00383{bottom:1046.496000px;}
.y8_c00383{bottom:1080.810000px;}
.y7_c00383{bottom:1117.096500px;}
.h6_c00383{height:12.000000px;}
.h4_c00383{height:18.000000px;}
.h5_c00383{height:24.000000px;}
.h3_c00383{height:54.000000px;}
.h2_c00383{height:72.000000px;}
.h9_c00383{height:78.000000px;}
.he_c00383{height:78.001911px;}
.h7_c00383{height:84.000000px;}
.hc_c00383{height:84.002058px;}
.h13_c00383{height:90.000000px;}
.h11_c00383{height:90.002880px;}
.hf_c00383{height:96.017326px;}
.h8_c00383{height:102.000000px;}
.hb_c00383{height:102.002499px;}
.h12_c00383{height:102.003264px;}
.hd_c00383{height:114.002793px;}
.ha_c00383{height:120.000000px;}
.h10_c00383{height:138.024907px;}
.h0_c00383{height:1251.450000px;}
.h1_c00383{height:1251.750000px;}
.w0_c00383{width:915.000000px;}
.x0_c00383{left:0.000000px;}
.x1_c00383{left:13.500000px;}
.x4_c00383{left:14.580000px;}
.x2_c00383{left:15.930000px;}
.x5_c00383{left:18.360000px;}
.x6_c00383{left:21.870000px;}
.x3_c00383{left:36.450000px;}
.x6b_c00383{left:51.842388px;}
.x62_c00383{left:53.633277px;}
.x59_c00383{left:58.881030px;}
.x1b_c00383{left:63.450000px;}
.x10_c00383{left:66.960000px;}
.x2a_c00383{left:68.310000px;}
.x44_c00383{left:69.928427px;}
.x7_c00383{left:76.680000px;}
.x1c_c00383{left:78.570000px;}
.x63_c00383{left:86.804508px;}
.x45_c00383{left:92.609540px;}
.x6c_c00383{left:101.253314px;}
.x34_c00383{left:102.870000px;}
.x5a_c00383{left:103.984770px;}
.x2b_c00383{left:113.670000px;}
.x1d_c00383{left:135.810000px;}
.x6d_c00383{left:144.993956px;}
.x35_c00383{left:147.150000px;}
.x7b_c00383{left:162.417000px;}
.x11_c00383{left:166.590000px;}
.x8_c00383{left:169.020000px;}
.x46_c00383{left:170.371851px;}
.x64_c00383{left:172.077107px;}
.x77_c00383{left:174.626702px;}
.x50_c00383{left:182.612611px;}
.x3b_c00383{left:193.156500px;}
.x6e_c00383{left:196.834997px;}
.x12_c00383{left:202.500000px;}
.x1e_c00383{left:203.850000px;}
.x47_c00383{left:205.472073px;}
.x2c_c00383{left:206.550000px;}
.x3c_c00383{left:215.319000px;}
.x7c_c00383{left:219.661500px;}
.x9_c00383{left:224.100000px;}
.x5b_c00383{left:225.413868px;}
.x1f_c00383{left:236.520000px;}
.x7d_c00383{left:245.268000px;}
.x51_c00383{left:258.479172px;}
.x36_c00383{left:260.010000px;}
.x5c_c00383{left:262.905318px;}
.x13_c00383{left:268.920000px;}
.x84_c00383{left:273.886380px;}
.x7e_c00383{left:277.675500px;}
.x20_c00383{left:280.800000px;}
.x6f_c00383{left:285.397833px;}
.x37_c00383{left:293.490000px;}
.x65_c00383{left:295.491968px;}
.x3d_c00383{left:304.131000px;}
.x5d_c00383{left:305.294132px;}
.x2d_c00383{left:314.820000px;}
.x70_c00383{left:317.527908px;}
.x5e_c00383{left:324.856586px;}
.x3e_c00383{left:327.381000px;}
.x14_c00383{left:334.800000px;}
.x66_c00383{left:340.862783px;}
.x7f_c00383{left:341.968500px;}
.x21_c00383{left:347.220000px;}
.x71_c00383{left:349.927994px;}
.x48_c00383{left:351.276213px;}
.xa_c00383{left:356.130000px;}
.x3f_c00383{left:359.229000px;}
.x80_c00383{left:374.091000px;}
.x2e_c00383{left:380.430000px;}
.x72_c00383{left:382.868111px;}
.x15_c00383{left:384.210000px;}
.x85_c00383{left:387.767568px;}
.x52_c00383{left:389.698009px;}
.x38_c00383{left:391.500000px;}
.x67_c00383{left:393.754650px;}
.x22_c00383{left:402.570000px;}
.x78_c00383{left:416.859140px;}
.x40_c00383{left:425.371500px;}
.x8a_c00383{left:432.000000px;}
.x23_c00383{left:434.430000px;}
.x16_c00383{left:435.780000px;}
.x49_c00383{left:439.839049px;}
.xb_c00383{left:443.880000px;}
.x86_c00383{left:449.962572px;}
.x41_c00383{left:458.571000px;}
.x53_c00383{left:459.625986px;}
.x79_c00383{left:460.877514px;}
.x24_c00383{left:461.970000px;}
.xc_c00383{left:463.050000px;}
.x2f_c00383{left:466.020000px;}
.x4a_c00383{left:467.110383px;}
.x39_c00383{left:479.790000px;}
.x87_c00383{left:483.632532px;}
.x4b_c00383{left:493.841696px;}
.x54_c00383{left:495.266490px;}
.x25_c00383{left:500.580000px;}
.x17_c00383{left:506.250000px;}
.x81_c00383{left:517.168500px;}
.x26_c00383{left:522.450000px;}
.x5f_c00383{left:526.389436px;}
.x75_c00383{left:530.511000px;}
.x42_c00383{left:535.786500px;}
.x88_c00383{left:543.346572px;}
.x18_c00383{left:545.130000px;}
.x82_c00383{left:549.345000px;}
.x4c_c00383{left:557.023293px;}
.x60_c00383{left:558.923523px;}
.x3a_c00383{left:570.780000px;}
.x19_c00383{left:572.400000px;}
.xd_c00383{left:574.020000px;}
.x30_c00383{left:578.610000px;}
.x55_c00383{left:580.298176px;}
.x83_c00383{left:581.701500px;}
.x4d_c00383{left:591.043462px;}
.x7a_c00383{left:592.931166px;}
.x89_c00383{left:594.683256px;}
.x27_c00383{left:601.290000px;}
.x68_c00383{left:605.190131px;}
.x31_c00383{left:608.310000px;}
.xe_c00383{left:612.900000px;}
.x56_c00383{left:625.672307px;}
.x28_c00383{left:629.370000px;}
.x4e_c00383{left:632.353989px;}
.x1a_c00383{left:635.040000px;}
.x73_c00383{left:636.943064px;}
.xf_c00383{left:654.750000px;}
.x57_c00383{left:658.386269px;}
.x76_c00383{left:661.371000px;}
.x32_c00383{left:667.170000px;}
.x69_c00383{left:671.322593px;}
.x4f_c00383{left:691.215377px;}
.x6a_c00383{left:704.066324px;}
.x29_c00383{left:707.130000px;}
.x33_c00383{left:717.930000px;}
.x61_c00383{left:732.224172px;}
.x58_c00383{left:735.326850px;}
.x43_c00383{left:736.584000px;}
.x74_c00383{left:747.105461px;}
@media print{
.v0_c00383{vertical-align:0.000000pt;}
.ls0_c00383{letter-spacing:0.000000pt;}
.ws0_c00383{word-spacing:0.000000pt;}
.fs4_c00383{font-size:10.666667pt;}
.fs2_c00383{font-size:16.000000pt;}
.fs3_c00383{font-size:21.333333pt;}
.fs1_c00383{font-size:48.000000pt;}
.fs0_c00383{font-size:64.000000pt;}
.fs7_c00383{font-size:69.333333pt;}
.fsc_c00383{font-size:69.335032pt;}
.fs5_c00383{font-size:74.666667pt;}
.fsa_c00383{font-size:74.668496pt;}
.fs11_c00383{font-size:80.000000pt;}
.fsf_c00383{font-size:80.002560pt;}
.fsd_c00383{font-size:85.348735pt;}
.fs6_c00383{font-size:90.666667pt;}
.fs9_c00383{font-size:90.668888pt;}
.fs10_c00383{font-size:90.669568pt;}
.fsb_c00383{font-size:101.335816pt;}
.fs8_c00383{font-size:106.666667pt;}
.fse_c00383{font-size:122.688806pt;}
.y0_c00383{bottom:0.000000pt;}
.y73_c00383{bottom:511.204000pt;}
.y72_c00383{bottom:543.454165pt;}
.y71_c00383{bottom:543.909899pt;}
.y70_c00383{bottom:544.441205pt;}
.y6f_c00383{bottom:544.740640pt;}
.y6e_c00383{bottom:545.293589pt;}
.y6d_c00383{bottom:545.609184pt;}
.y6c_c00383{bottom:546.304757pt;}
.y6b_c00383{bottom:547.015968pt;}
.y6a_c00383{bottom:575.131168pt;}
.y69_c00383{bottom:575.361259pt;}
.y68_c00383{bottom:575.590069pt;}
.y67_c00383{bottom:575.988981pt;}
.y66_c00383{bottom:576.246421pt;}
.y65_c00383{bottom:576.607509pt;}
.y64_c00383{bottom:576.835936pt;}
.y63_c00383{bottom:577.293131pt;}
.y62_c00383{bottom:577.523584pt;}
.y61_c00383{bottom:577.705675pt;}
.y60_c00383{bottom:578.112747pt;}
.y5f_c00383{bottom:578.779179pt;}
.y5e_c00383{bottom:578.881333pt;}
.y59_c00383{bottom:609.246421pt;}
.y5a_c00383{bottom:609.246512pt;}
.y58_c00383{bottom:609.246680pt;}
.y5d_c00383{bottom:609.246759pt;}
.y5b_c00383{bottom:609.246999pt;}
.y5c_c00383{bottom:609.247100pt;}
.y57_c00383{bottom:609.247277pt;}
.y56_c00383{bottom:609.247619pt;}
.y54_c00383{bottom:609.248107pt;}
.y55_c00383{bottom:609.248111pt;}
.y50_c00383{bottom:638.972000pt;}
.y51_c00383{bottom:640.219135pt;}
.y52_c00383{bottom:641.182080pt;}
.y53_c00383{bottom:641.691001pt;}
.y4e_c00383{bottom:672.941164pt;}
.y4f_c00383{bottom:672.941252pt;}
.y4c_c00383{bottom:672.941459pt;}
.y45_c00383{bottom:672.941480pt;}
.y47_c00383{bottom:672.941515pt;}
.y4d_c00383{bottom:672.941556pt;}
.y46_c00383{bottom:672.941631pt;}
.y4b_c00383{bottom:672.941664pt;}
.y49_c00383{bottom:672.941789pt;}
.y48_c00383{bottom:672.941879pt;}
.y4a_c00383{bottom:672.942047pt;}
.y44_c00383{bottom:672.942049pt;}
.y38_c00383{bottom:704.397400pt;}
.y39_c00383{bottom:704.574464pt;}
.y3a_c00383{bottom:705.029045pt;}
.y3b_c00383{bottom:705.213923pt;}
.y3c_c00383{bottom:705.687621pt;}
.y3d_c00383{bottom:705.929927pt;}
.y3e_c00383{bottom:706.212363pt;}
.y3f_c00383{bottom:706.742565pt;}
.y40_c00383{bottom:706.916484pt;}
.y41_c00383{bottom:707.339952pt;}
.y42_c00383{bottom:707.692773pt;}
.y43_c00383{bottom:707.867177pt;}
.y2d_c00383{bottom:732.716772pt;}
.y2e_c00383{bottom:733.157425pt;}
.y2f_c00383{bottom:734.345005pt;}
.y30_c00383{bottom:734.711625pt;}
.y31_c00383{bottom:735.126052pt;}
.y32_c00383{bottom:735.317111pt;}
.y33_c00383{bottom:736.625887pt;}
.y34_c00383{bottom:737.288461pt;}
.y35_c00383{bottom:737.606901pt;}
.y36_c00383{bottom:738.358969pt;}
.y37_c00383{bottom:739.301247pt;}
.y5_c00383{bottom:751.440000pt;}
.y6_c00383{bottom:752.880000pt;}
.y4_c00383{bottom:754.320000pt;}
.y22_c00383{bottom:767.517291pt;}
.y23_c00383{bottom:768.017683pt;}
.y24_c00383{bottom:768.355068pt;}
.y25_c00383{bottom:768.559419pt;}
.y26_c00383{bottom:768.938196pt;}
.y27_c00383{bottom:769.249297pt;}
.y28_c00383{bottom:769.407057pt;}
.y29_c00383{bottom:769.785469pt;}
.y2a_c00383{bottom:769.987793pt;}
.y2b_c00383{bottom:770.132677pt;}
.y2c_c00383{bottom:770.474079pt;}
.y3_c00383{bottom:797.520000pt;}
.y21_c00383{bottom:800.610431pt;}
.y1a_c00383{bottom:800.610843pt;}
.y20_c00383{bottom:800.610867pt;}
.y19_c00383{bottom:800.611119pt;}
.y1f_c00383{bottom:800.611169pt;}
.y18_c00383{bottom:800.611288pt;}
.y1b_c00383{bottom:800.611357pt;}
.y1e_c00383{bottom:800.611499pt;}
.y17_c00383{bottom:800.611501pt;}
.y1c_c00383{bottom:800.611721pt;}
.y1d_c00383{bottom:800.612068pt;}
.y2_c00383{bottom:819.002667pt;}
.yc_c00383{bottom:829.921333pt;}
.yd_c00383{bottom:830.204927pt;}
.ye_c00383{bottom:830.703691pt;}
.yf_c00383{bottom:830.841591pt;}
.y10_c00383{bottom:831.394199pt;}
.y11_c00383{bottom:831.538865pt;}
.y12_c00383{bottom:831.737031pt;}
.y13_c00383{bottom:832.148584pt;}
.y14_c00383{bottom:832.355159pt;}
.y15_c00383{bottom:832.835611pt;}
.y16_c00383{bottom:834.085017pt;}
.y1_c00383{bottom:837.360000pt;}
.yb_c00383{bottom:864.960000pt;}
.ya_c00383{bottom:897.121333pt;}
.y9_c00383{bottom:930.218667pt;}
.y8_c00383{bottom:960.720000pt;}
.y7_c00383{bottom:992.974667pt;}
.h6_c00383{height:10.666667pt;}
.h4_c00383{height:16.000000pt;}
.h5_c00383{height:21.333333pt;}
.h3_c00383{height:48.000000pt;}
.h2_c00383{height:64.000000pt;}
.h9_c00383{height:69.333333pt;}
.he_c00383{height:69.335032pt;}
.h7_c00383{height:74.666667pt;}
.hc_c00383{height:74.668496pt;}
.h13_c00383{height:80.000000pt;}
.h11_c00383{height:80.002560pt;}
.hf_c00383{height:85.348735pt;}
.h8_c00383{height:90.666667pt;}
.hb_c00383{height:90.668888pt;}
.h12_c00383{height:90.669568pt;}
.hd_c00383{height:101.335816pt;}
.ha_c00383{height:106.666667pt;}
.h10_c00383{height:122.688806pt;}
.h0_c00383{height:1112.400000pt;}
.h1_c00383{height:1112.666667pt;}
.w0_c00383{width:813.333333pt;}
.x0_c00383{left:0.000000pt;}
.x1_c00383{left:12.000000pt;}
.x4_c00383{left:12.960000pt;}
.x2_c00383{left:14.160000pt;}
.x5_c00383{left:16.320000pt;}
.x6_c00383{left:19.440000pt;}
.x3_c00383{left:32.400000pt;}
.x6b_c00383{left:46.082123pt;}
.x62_c00383{left:47.674024pt;}
.x59_c00383{left:52.338693pt;}
.x1b_c00383{left:56.400000pt;}
.x10_c00383{left:59.520000pt;}
.x2a_c00383{left:60.720000pt;}
.x44_c00383{left:62.158601pt;}
.x7_c00383{left:68.160000pt;}
.x1c_c00383{left:69.840000pt;}
.x63_c00383{left:77.159563pt;}
.x45_c00383{left:82.319591pt;}
.x6c_c00383{left:90.002945pt;}
.x34_c00383{left:91.440000pt;}
.x5a_c00383{left:92.430907pt;}
.x2b_c00383{left:101.040000pt;}
.x1d_c00383{left:120.720000pt;}
.x6d_c00383{left:128.883516pt;}
.x35_c00383{left:130.800000pt;}
.x7b_c00383{left:144.370667pt;}
.x11_c00383{left:148.080000pt;}
.x8_c00383{left:150.240000pt;}
.x46_c00383{left:151.441645pt;}
.x64_c00383{left:152.957428pt;}
.x77_c00383{left:155.223735pt;}
.x50_c00383{left:162.322321pt;}
.x3b_c00383{left:171.694667pt;}
.x6e_c00383{left:174.964441pt;}
.x12_c00383{left:180.000000pt;}
.x1e_c00383{left:181.200000pt;}
.x47_c00383{left:182.641843pt;}
.x2c_c00383{left:183.600000pt;}
.x3c_c00383{left:191.394667pt;}
.x7c_c00383{left:195.254667pt;}
.x9_c00383{left:199.200000pt;}
.x5b_c00383{left:200.367883pt;}
.x1f_c00383{left:210.240000pt;}
.x7d_c00383{left:218.016000pt;}
.x51_c00383{left:229.759264pt;}
.x36_c00383{left:231.120000pt;}
.x5c_c00383{left:233.693616pt;}
.x13_c00383{left:239.040000pt;}
.x84_c00383{left:243.454560pt;}
.x7e_c00383{left:246.822667pt;}
.x20_c00383{left:249.600000pt;}
.x6f_c00383{left:253.686963pt;}
.x37_c00383{left:260.880000pt;}
.x65_c00383{left:262.659527pt;}
.x3d_c00383{left:270.338667pt;}
.x5d_c00383{left:271.372561pt;}
.x2d_c00383{left:279.840000pt;}
.x70_c00383{left:282.247029pt;}
.x5e_c00383{left:288.761409pt;}
.x3e_c00383{left:291.005333pt;}
.x14_c00383{left:297.600000pt;}
.x66_c00383{left:302.989140pt;}
.x7f_c00383{left:303.972000pt;}
.x21_c00383{left:308.640000pt;}
.x71_c00383{left:311.047105pt;}
.x48_c00383{left:312.245523pt;}
.xa_c00383{left:316.560000pt;}
.x3f_c00383{left:319.314667pt;}
.x80_c00383{left:332.525333pt;}
.x2e_c00383{left:338.160000pt;}
.x72_c00383{left:340.327209pt;}
.x15_c00383{left:341.520000pt;}
.x85_c00383{left:344.682283pt;}
.x52_c00383{left:346.398231pt;}
.x38_c00383{left:348.000000pt;}
.x67_c00383{left:350.004133pt;}
.x22_c00383{left:357.840000pt;}
.x78_c00383{left:370.541457pt;}
.x40_c00383{left:378.108000pt;}
.x8a_c00383{left:384.000000pt;}
.x23_c00383{left:386.160000pt;}
.x16_c00383{left:387.360000pt;}
.x49_c00383{left:390.968044pt;}
.xb_c00383{left:394.560000pt;}
.x86_c00383{left:399.966731pt;}
.x41_c00383{left:407.618667pt;}
.x53_c00383{left:408.556432pt;}
.x79_c00383{left:409.668901pt;}
.x24_c00383{left:410.640000pt;}
.xc_c00383{left:411.600000pt;}
.x2f_c00383{left:414.240000pt;}
.x4a_c00383{left:415.209229pt;}
.x39_c00383{left:426.480000pt;}
.x87_c00383{left:429.895584pt;}
.x4b_c00383{left:438.970396pt;}
.x54_c00383{left:440.236880pt;}
.x25_c00383{left:444.960000pt;}
.x17_c00383{left:450.000000pt;}
.x81_c00383{left:459.705333pt;}
.x26_c00383{left:464.400000pt;}
.x5f_c00383{left:467.901721pt;}
.x75_c00383{left:471.565333pt;}
.x42_c00383{left:476.254667pt;}
.x88_c00383{left:482.974731pt;}
.x18_c00383{left:484.560000pt;}
.x82_c00383{left:488.306667pt;}
.x4c_c00383{left:495.131816pt;}
.x60_c00383{left:496.820909pt;}
.x3a_c00383{left:507.360000pt;}
.x19_c00383{left:508.800000pt;}
.xd_c00383{left:510.240000pt;}
.x30_c00383{left:514.320000pt;}
.x55_c00383{left:515.820601pt;}
.x83_c00383{left:517.068000pt;}
.x4d_c00383{left:525.371967pt;}
.x7a_c00383{left:527.049925pt;}
.x89_c00383{left:528.607339pt;}
.x27_c00383{left:534.480000pt;}
.x68_c00383{left:537.946783pt;}
.x31_c00383{left:540.720000pt;}
.xe_c00383{left:544.800000pt;}
.x56_c00383{left:556.153161pt;}
.x28_c00383{left:559.440000pt;}
.x4e_c00383{left:562.092435pt;}
.x1a_c00383{left:564.480000pt;}
.x73_c00383{left:566.171612pt;}
.xf_c00383{left:582.000000pt;}
.x57_c00383{left:585.232239pt;}
.x76_c00383{left:587.885333pt;}
.x32_c00383{left:593.040000pt;}
.x69_c00383{left:596.731193pt;}
.x4f_c00383{left:614.413668pt;}
.x6a_c00383{left:625.836732pt;}
.x29_c00383{left:628.560000pt;}
.x33_c00383{left:638.160000pt;}
.x61_c00383{left:650.865931pt;}
.x58_c00383{left:653.623867pt;}
.x43_c00383{left:654.741333pt;}
.x74_c00383{left:664.093743pt;}
}





/* 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_c00384 {
    display:none;
  }
  .loading-indicator_c00384.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00384 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_c00384 { 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_c00384" -> "#page-container .classname_c00384")
 */
.pf_c00384 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00384 { /* 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_c00384.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00384 { /* 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_c00384 { /* 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_c00384 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00384 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00384 {overflow:visible;}
  }
}
.c_c00384 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00384 { /* 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_c00384:after { /* webkit #35443 */
  content: '';
}
.t_c00384:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00384 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 */
}
.__c00384 { /* 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_c00384 { /* info for Javascript */
  display:none;
}
.l_c00384 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00384 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00384 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00384: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_c00384 {
    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_c00384.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00384.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_c00384 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00384{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00384;src:url('chunks/assets/font_c605e72f209fc835e906f064.woff2')format("woff");}.ff1_c00384{font-family:ff1_c00384;line-height:1.000000;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;}
.mb3_c00384{transform:matrix(0.024730,0.000990,-0.010002,0.249800,0,0);-ms-transform:matrix(0.024730,0.000990,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.024730,0.000990,-0.010002,0.249800,0,0);}
.mc7_c00384{transform:matrix(0.063674,0.002677,-0.010501,0.249779,0,0);-ms-transform:matrix(0.063674,0.002677,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.063674,0.002677,-0.010501,0.249779,0,0);}
.mc6_c00384{transform:matrix(0.118765,0.004993,-0.010501,0.249779,0,0);-ms-transform:matrix(0.118765,0.004993,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.118765,0.004993,-0.010501,0.249779,0,0);}
.m96_c00384{transform:matrix(0.125190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125190,0.000000,0.000000,0.250000,0,0);}
.m76_c00384{transform:matrix(0.131846,0.003955,-0.007497,0.249888,0,0);-ms-transform:matrix(0.131846,0.003955,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.131846,0.003955,-0.007497,0.249888,0,0);}
.mf2_c00384{transform:matrix(0.137330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137330,0.000000,0.000000,0.250000,0,0);}
.m77_c00384{transform:matrix(0.158339,0.004750,-0.007497,0.249888,0,0);-ms-transform:matrix(0.158339,0.004750,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.158339,0.004750,-0.007497,0.249888,0,0);}
.mf5_c00384{transform:matrix(0.158360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158360,0.000000,0.000000,0.250000,0,0);}
.mf0_c00384{transform:matrix(0.160470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160470,0.000000,0.000000,0.250000,0,0);}
.mf4_c00384{transform:matrix(0.160980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160980,0.000000,0.000000,0.250000,0,0);}
.m97_c00384{transform:matrix(0.163195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163195,0.000000,0.000000,0.250000,0,0);}
.ma0_c00384{transform:matrix(0.163955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163955,0.000000,0.000000,0.250000,0,0);}
.mf3_c00384{transform:matrix(0.164940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164940,0.000000,0.000000,0.250000,0,0);}
.m24_c00384{transform:matrix(0.167234,0.004515,-0.006748,0.249909,0,0);-ms-transform:matrix(0.167234,0.004515,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.167234,0.004515,-0.006748,0.249909,0,0);}
.mf1_c00384{transform:matrix(0.167565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167565,0.000000,0.000000,0.250000,0,0);}
.m5e_c00384{transform:matrix(0.178340,0.004815,-0.006748,0.249909,0,0);-ms-transform:matrix(0.178340,0.004815,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.178340,0.004815,-0.006748,0.249909,0,0);}
.m29_c00384{transform:matrix(0.179110,0.004836,-0.006748,0.249909,0,0);-ms-transform:matrix(0.179110,0.004836,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.179110,0.004836,-0.006748,0.249909,0,0);}
.m1c_c00384{transform:matrix(0.179620,0.004850,-0.006748,0.249909,0,0);-ms-transform:matrix(0.179620,0.004850,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.179620,0.004850,-0.006748,0.249909,0,0);}
.mcd_c00384{transform:matrix(0.182324,0.007665,-0.010501,0.249779,0,0);-ms-transform:matrix(0.182324,0.007665,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.182324,0.007665,-0.010501,0.249779,0,0);}
.m26_c00384{transform:matrix(0.182404,0.004925,-0.006748,0.249909,0,0);-ms-transform:matrix(0.182404,0.004925,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.182404,0.004925,-0.006748,0.249909,0,0);}
.m9e_c00384{transform:matrix(0.184165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184165,0.000000,0.000000,0.250000,0,0);}
.m61_c00384{transform:matrix(0.184648,0.004985,-0.006748,0.249909,0,0);-ms-transform:matrix(0.184648,0.004985,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.184648,0.004985,-0.006748,0.249909,0,0);}
.m9c_c00384{transform:matrix(0.187100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187100,0.000000,0.000000,0.250000,0,0);}
.mb2_c00384{transform:matrix(0.187580,0.007511,-0.010002,0.249800,0,0);-ms-transform:matrix(0.187580,0.007511,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.187580,0.007511,-0.010002,0.249800,0,0);}
.md1_c00384{transform:matrix(0.187589,0.007887,-0.010501,0.249779,0,0);-ms-transform:matrix(0.187589,0.007887,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.187589,0.007887,-0.010501,0.249779,0,0);}
.md8_c00384{transform:matrix(0.187980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187980,0.000000,0.000000,0.250000,0,0);}
.m18_c00384{transform:matrix(0.188721,0.005095,-0.006748,0.249909,0,0);-ms-transform:matrix(0.188721,0.005095,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.188721,0.005095,-0.006748,0.249909,0,0);}
.mb6_c00384{transform:matrix(0.189790,0.004555,-0.005998,0.249928,0,0);-ms-transform:matrix(0.189790,0.004555,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.189790,0.004555,-0.005998,0.249928,0,0);}
.m9f_c00384{transform:matrix(0.190245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190245,0.000000,0.000000,0.250000,0,0);}
.ma2_c00384{transform:matrix(0.190285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190285,0.000000,0.000000,0.250000,0,0);}
.m2e_c00384{transform:matrix(0.190755,0.005150,-0.006748,0.249909,0,0);-ms-transform:matrix(0.190755,0.005150,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.190755,0.005150,-0.006748,0.249909,0,0);}
.m20_c00384{transform:matrix(0.190760,0.005151,-0.006748,0.249909,0,0);-ms-transform:matrix(0.190760,0.005151,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.190760,0.005151,-0.006748,0.249909,0,0);}
.mcf_c00384{transform:matrix(0.191256,0.008041,-0.010501,0.249779,0,0);-ms-transform:matrix(0.191256,0.008041,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.191256,0.008041,-0.010501,0.249779,0,0);}
.m44_c00384{transform:matrix(0.191365,0.005167,-0.006748,0.249909,0,0);-ms-transform:matrix(0.191365,0.005167,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.191365,0.005167,-0.006748,0.249909,0,0);}
.ma5_c00384{transform:matrix(0.191375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191375,0.000000,0.000000,0.250000,0,0);}
.m6b_c00384{transform:matrix(0.192530,0.004621,-0.005998,0.249928,0,0);-ms-transform:matrix(0.192530,0.004621,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.192530,0.004621,-0.005998,0.249928,0,0);}
.m9d_c00384{transform:matrix(0.192895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192895,0.000000,0.000000,0.250000,0,0);}
.ma1_c00384{transform:matrix(0.194620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194620,0.000000,0.000000,0.250000,0,0);}
.m22_c00384{transform:matrix(0.194729,0.005258,-0.006748,0.249909,0,0);-ms-transform:matrix(0.194729,0.005258,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.194729,0.005258,-0.006748,0.249909,0,0);}
.m48_c00384{transform:matrix(0.194749,0.005258,-0.006748,0.249909,0,0);-ms-transform:matrix(0.194749,0.005258,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.194749,0.005258,-0.006748,0.249909,0,0);}
.m93_c00384{transform:matrix(0.194874,0.005067,-0.006498,0.249916,0,0);-ms-transform:matrix(0.194874,0.005067,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.194874,0.005067,-0.006498,0.249916,0,0);}
.m55_c00384{transform:matrix(0.195423,0.005472,-0.006997,0.249902,0,0);-ms-transform:matrix(0.195423,0.005472,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.195423,0.005472,-0.006997,0.249902,0,0);}
.m2c_c00384{transform:matrix(0.195434,0.005277,-0.006748,0.249909,0,0);-ms-transform:matrix(0.195434,0.005277,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.195434,0.005277,-0.006748,0.249909,0,0);}
.md0_c00384{transform:matrix(0.196287,0.008252,-0.010501,0.249779,0,0);-ms-transform:matrix(0.196287,0.008252,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.196287,0.008252,-0.010501,0.249779,0,0);}
.mc9_c00384{transform:matrix(0.196601,0.008266,-0.010501,0.249779,0,0);-ms-transform:matrix(0.196601,0.008266,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.196601,0.008266,-0.010501,0.249779,0,0);}
.m79_c00384{transform:matrix(0.196692,0.005901,-0.007497,0.249888,0,0);-ms-transform:matrix(0.196692,0.005901,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.196692,0.005901,-0.007497,0.249888,0,0);}
.me7_c00384{transform:matrix(0.196795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196795,0.000000,0.000000,0.250000,0,0);}
.m27_c00384{transform:matrix(0.198078,0.005348,-0.006748,0.249909,0,0);-ms-transform:matrix(0.198078,0.005348,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.198078,0.005348,-0.006748,0.249909,0,0);}
.m6d_c00384{transform:matrix(0.198478,0.004763,-0.005998,0.249928,0,0);-ms-transform:matrix(0.198478,0.004763,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.198478,0.004763,-0.005998,0.249928,0,0);}
.m90_c00384{transform:matrix(0.198793,0.005169,-0.006498,0.249916,0,0);-ms-transform:matrix(0.198793,0.005169,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.198793,0.005169,-0.006498,0.249916,0,0);}
.m59_c00384{transform:matrix(0.199022,0.005573,-0.006997,0.249902,0,0);-ms-transform:matrix(0.199022,0.005573,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.199022,0.005573,-0.006997,0.249902,0,0);}
.ma9_c00384{transform:matrix(0.199100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199100,0.000000,0.000000,0.250000,0,0);}
.m30_c00384{transform:matrix(0.199627,0.005390,-0.006748,0.249909,0,0);-ms-transform:matrix(0.199627,0.005390,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.199627,0.005390,-0.006748,0.249909,0,0);}
.mef_c00384{transform:matrix(0.199713,0.005193,-0.006498,0.249916,0,0);-ms-transform:matrix(0.199713,0.005193,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.199713,0.005193,-0.006498,0.249916,0,0);}
.m2d_c00384{transform:matrix(0.200497,0.005413,-0.006748,0.249909,0,0);-ms-transform:matrix(0.200497,0.005413,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.200497,0.005413,-0.006748,0.249909,0,0);}
.m36_c00384{transform:matrix(0.201592,0.005443,-0.006748,0.249909,0,0);-ms-transform:matrix(0.201592,0.005443,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.201592,0.005443,-0.006748,0.249909,0,0);}
.mcc_c00384{transform:matrix(0.201742,0.008482,-0.010501,0.249779,0,0);-ms-transform:matrix(0.201742,0.008482,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.201742,0.008482,-0.010501,0.249779,0,0);}
.ma3_c00384{transform:matrix(0.201970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201970,0.000000,0.000000,0.250000,0,0);}
.m32_c00384{transform:matrix(0.202736,0.005474,-0.006748,0.249909,0,0);-ms-transform:matrix(0.202736,0.005474,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.202736,0.005474,-0.006748,0.249909,0,0);}
.m7d_c00384{transform:matrix(0.203109,0.006093,-0.007497,0.249888,0,0);-ms-transform:matrix(0.203109,0.006093,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.203109,0.006093,-0.007497,0.249888,0,0);}
.m2b_c00384{transform:matrix(0.203281,0.005489,-0.006748,0.249909,0,0);-ms-transform:matrix(0.203281,0.005489,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.203281,0.005489,-0.006748,0.249909,0,0);}
.mee_c00384{transform:matrix(0.203656,0.005295,-0.006498,0.249916,0,0);-ms-transform:matrix(0.203656,0.005295,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.203656,0.005295,-0.006498,0.249916,0,0);}
.m34_c00384{transform:matrix(0.203786,0.005502,-0.006748,0.249909,0,0);-ms-transform:matrix(0.203786,0.005502,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.203786,0.005502,-0.006748,0.249909,0,0);}
.mea_c00384{transform:matrix(0.204870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204870,0.000000,0.000000,0.250000,0,0);}
.mb7_c00384{transform:matrix(0.205301,0.004927,-0.005998,0.249928,0,0);-ms-transform:matrix(0.205301,0.004927,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.205301,0.004927,-0.005998,0.249928,0,0);}
.m46_c00384{transform:matrix(0.207524,0.005603,-0.006748,0.249909,0,0);-ms-transform:matrix(0.207524,0.005603,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.207524,0.005603,-0.006748,0.249909,0,0);}
.m7e_c00384{transform:matrix(0.207941,0.006238,-0.007497,0.249888,0,0);-ms-transform:matrix(0.207941,0.006238,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.207941,0.006238,-0.007497,0.249888,0,0);}
.m45_c00384{transform:matrix(0.209019,0.005644,-0.006748,0.249909,0,0);-ms-transform:matrix(0.209019,0.005644,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.209019,0.005644,-0.006748,0.249909,0,0);}
.m72_c00384{transform:matrix(0.209212,0.006067,-0.007247,0.249895,0,0);-ms-transform:matrix(0.209212,0.006067,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.209212,0.006067,-0.007247,0.249895,0,0);}
.m5c_c00384{transform:matrix(0.209294,0.005651,-0.006748,0.249909,0,0);-ms-transform:matrix(0.209294,0.005651,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.209294,0.005651,-0.006748,0.249909,0,0);}
.m5a_c00384{transform:matrix(0.209723,0.005872,-0.006997,0.249902,0,0);-ms-transform:matrix(0.209723,0.005872,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.209723,0.005872,-0.006997,0.249902,0,0);}
.m28_c00384{transform:matrix(0.209943,0.005668,-0.006748,0.249909,0,0);-ms-transform:matrix(0.209943,0.005668,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.209943,0.005668,-0.006748,0.249909,0,0);}
.maa_c00384{transform:matrix(0.210020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210020,0.000000,0.000000,0.250000,0,0);}
.m9a_c00384{transform:matrix(0.210375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210375,0.000000,0.000000,0.250000,0,0);}
.m17_c00384{transform:matrix(0.211343,0.005706,-0.006748,0.249909,0,0);-ms-transform:matrix(0.211343,0.005706,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.211343,0.005706,-0.006748,0.249909,0,0);}
.m19_c00384{transform:matrix(0.211823,0.005719,-0.006748,0.249909,0,0);-ms-transform:matrix(0.211823,0.005719,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.211823,0.005719,-0.006748,0.249909,0,0);}
.mb5_c00384{transform:matrix(0.211879,0.005085,-0.005998,0.249928,0,0);-ms-transform:matrix(0.211879,0.005085,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.211879,0.005085,-0.005998,0.249928,0,0);}
.meb_c00384{transform:matrix(0.212103,0.005515,-0.006498,0.249916,0,0);-ms-transform:matrix(0.212103,0.005515,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.212103,0.005515,-0.006498,0.249916,0,0);}
.mc8_c00384{transform:matrix(0.212108,0.008917,-0.010501,0.249779,0,0);-ms-transform:matrix(0.212108,0.008917,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.212108,0.008917,-0.010501,0.249779,0,0);}
.mb4_c00384{transform:matrix(0.212194,0.005093,-0.005998,0.249928,0,0);-ms-transform:matrix(0.212194,0.005093,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.212194,0.005093,-0.005998,0.249928,0,0);}
.m15_c00384{transform:matrix(0.212564,0.004889,-0.005748,0.249934,0,0);-ms-transform:matrix(0.212564,0.004889,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.212564,0.004889,-0.005748,0.249934,0,0);}
.m5f_c00384{transform:matrix(0.212653,0.005742,-0.006748,0.249909,0,0);-ms-transform:matrix(0.212653,0.005742,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.212653,0.005742,-0.006748,0.249909,0,0);}
.m35_c00384{transform:matrix(0.213387,0.005761,-0.006748,0.249909,0,0);-ms-transform:matrix(0.213387,0.005761,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.213387,0.005761,-0.006748,0.249909,0,0);}
.m69_c00384{transform:matrix(0.213404,0.005122,-0.005998,0.249928,0,0);-ms-transform:matrix(0.213404,0.005122,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.213404,0.005122,-0.005998,0.249928,0,0);}
.m74_c00384{transform:matrix(0.214325,0.006215,-0.007247,0.249895,0,0);-ms-transform:matrix(0.214325,0.006215,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.214325,0.006215,-0.007247,0.249895,0,0);}
.m47_c00384{transform:matrix(0.214757,0.005798,-0.006748,0.249909,0,0);-ms-transform:matrix(0.214757,0.005798,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.214757,0.005798,-0.006748,0.249909,0,0);}
.m63_c00384{transform:matrix(0.215941,0.005830,-0.006748,0.249909,0,0);-ms-transform:matrix(0.215941,0.005830,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.215941,0.005830,-0.006748,0.249909,0,0);}
.m7f_c00384{transform:matrix(0.216073,0.006482,-0.007497,0.249888,0,0);-ms-transform:matrix(0.216073,0.006482,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.216073,0.006482,-0.007497,0.249888,0,0);}
.m95_c00384{transform:matrix(0.216105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216105,0.000000,0.000000,0.250000,0,0);}
.m33_c00384{transform:matrix(0.216676,0.005850,-0.006748,0.249909,0,0);-ms-transform:matrix(0.216676,0.005850,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.216676,0.005850,-0.006748,0.249909,0,0);}
.m6e_c00384{transform:matrix(0.217947,0.005231,-0.005998,0.249928,0,0);-ms-transform:matrix(0.217947,0.005231,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.217947,0.005231,-0.005998,0.249928,0,0);}
.m1f_c00384{transform:matrix(0.218220,0.005892,-0.006748,0.249909,0,0);-ms-transform:matrix(0.218220,0.005892,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.218220,0.005892,-0.006748,0.249909,0,0);}
.mca_c00384{transform:matrix(0.218292,0.009177,-0.010501,0.249779,0,0);-ms-transform:matrix(0.218292,0.009177,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.218292,0.009177,-0.010501,0.249779,0,0);}
.m23_c00384{transform:matrix(0.218580,0.005902,-0.006748,0.249909,0,0);-ms-transform:matrix(0.218580,0.005902,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.218580,0.005902,-0.006748,0.249909,0,0);}
.mce_c00384{transform:matrix(0.218717,0.009195,-0.010501,0.249779,0,0);-ms-transform:matrix(0.218717,0.009195,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.218717,0.009195,-0.010501,0.249779,0,0);}
.ma4_c00384{transform:matrix(0.219065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219065,0.000000,0.000000,0.250000,0,0);}
.mb1_c00384{transform:matrix(0.219099,0.008773,-0.010002,0.249800,0,0);-ms-transform:matrix(0.219099,0.008773,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.219099,0.008773,-0.010002,0.249800,0,0);}
.mc_c00384{transform:matrix(0.219452,0.005047,-0.005748,0.249934,0,0);-ms-transform:matrix(0.219452,0.005047,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.219452,0.005047,-0.005748,0.249934,0,0);}
.me4_c00384{transform:matrix(0.219715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219715,0.000000,0.000000,0.250000,0,0);}
.m8_c00384{transform:matrix(0.219767,0.005055,-0.005748,0.249934,0,0);-ms-transform:matrix(0.219767,0.005055,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.219767,0.005055,-0.005748,0.249934,0,0);}
.mb9_c00384{transform:matrix(0.219777,0.005275,-0.005998,0.249928,0,0);-ms-transform:matrix(0.219777,0.005275,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.219777,0.005275,-0.005998,0.249928,0,0);}
.md_c00384{transform:matrix(0.220842,0.005079,-0.005748,0.249934,0,0);-ms-transform:matrix(0.220842,0.005079,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.220842,0.005079,-0.005748,0.249934,0,0);}
.m82_c00384{transform:matrix(0.221106,0.006633,-0.007497,0.249888,0,0);-ms-transform:matrix(0.221106,0.006633,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.221106,0.006633,-0.007497,0.249888,0,0);}
.m10_c00384{transform:matrix(0.221396,0.005092,-0.005748,0.249934,0,0);-ms-transform:matrix(0.221396,0.005092,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.221396,0.005092,-0.005748,0.249934,0,0);}
.m64_c00384{transform:matrix(0.221529,0.005981,-0.006748,0.249909,0,0);-ms-transform:matrix(0.221529,0.005981,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.221529,0.005981,-0.006748,0.249909,0,0);}
.m1d_c00384{transform:matrix(0.221589,0.005983,-0.006748,0.249909,0,0);-ms-transform:matrix(0.221589,0.005983,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.221589,0.005983,-0.006748,0.249909,0,0);}
.m5d_c00384{transform:matrix(0.221854,0.005990,-0.006748,0.249909,0,0);-ms-transform:matrix(0.221854,0.005990,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.221854,0.005990,-0.006748,0.249909,0,0);}
.ma7_c00384{transform:matrix(0.222550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222550,0.000000,0.000000,0.250000,0,0);}
.m21_c00384{transform:matrix(0.222579,0.006010,-0.006748,0.249909,0,0);-ms-transform:matrix(0.222579,0.006010,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.222579,0.006010,-0.006748,0.249909,0,0);}
.ma6_c00384{transform:matrix(0.222715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222715,0.000000,0.000000,0.250000,0,0);}
.m25_c00384{transform:matrix(0.222749,0.006014,-0.006748,0.249909,0,0);-ms-transform:matrix(0.222749,0.006014,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.222749,0.006014,-0.006748,0.249909,0,0);}
.m41_c00384{transform:matrix(0.223524,0.006035,-0.006748,0.249909,0,0);-ms-transform:matrix(0.223524,0.006035,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.223524,0.006035,-0.006748,0.249909,0,0);}
.mab_c00384{transform:matrix(0.223765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223765,0.000000,0.000000,0.250000,0,0);}
.m31_c00384{transform:matrix(0.223868,0.006044,-0.006748,0.249909,0,0);-ms-transform:matrix(0.223868,0.006044,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.223868,0.006044,-0.006748,0.249909,0,0);}
.m6a_c00384{transform:matrix(0.223966,0.005375,-0.005998,0.249928,0,0);-ms-transform:matrix(0.223966,0.005375,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.223966,0.005375,-0.005998,0.249928,0,0);}
.mb8_c00384{transform:matrix(0.224210,0.005381,-0.005998,0.249928,0,0);-ms-transform:matrix(0.224210,0.005381,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.224210,0.005381,-0.005998,0.249928,0,0);}
.m60_c00384{transform:matrix(0.224523,0.006062,-0.006748,0.249909,0,0);-ms-transform:matrix(0.224523,0.006062,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.224523,0.006062,-0.006748,0.249909,0,0);}
.m51_c00384{transform:matrix(0.224657,0.006290,-0.006997,0.249902,0,0);-ms-transform:matrix(0.224657,0.006290,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.224657,0.006290,-0.006997,0.249902,0,0);}
.m12_c00384{transform:matrix(0.224941,0.005174,-0.005748,0.249934,0,0);-ms-transform:matrix(0.224941,0.005174,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.224941,0.005174,-0.005748,0.249934,0,0);}
.m9_c00384{transform:matrix(0.225255,0.005181,-0.005748,0.249934,0,0);-ms-transform:matrix(0.225255,0.005181,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.225255,0.005181,-0.005748,0.249934,0,0);}
.m6_c00384{transform:matrix(0.225610,0.005189,-0.005748,0.249934,0,0);-ms-transform:matrix(0.225610,0.005189,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.225610,0.005189,-0.005748,0.249934,0,0);}
.m3f_c00384{transform:matrix(0.225983,0.006102,-0.006748,0.249909,0,0);-ms-transform:matrix(0.225983,0.006102,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.225983,0.006102,-0.006748,0.249909,0,0);}
.mcb_c00384{transform:matrix(0.226045,0.009503,-0.010501,0.249779,0,0);-ms-transform:matrix(0.226045,0.009503,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.226045,0.009503,-0.010501,0.249779,0,0);}
.m2a_c00384{transform:matrix(0.226098,0.006105,-0.006748,0.249909,0,0);-ms-transform:matrix(0.226098,0.006105,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.226098,0.006105,-0.006748,0.249909,0,0);}
.m62_c00384{transform:matrix(0.226692,0.006121,-0.006748,0.249909,0,0);-ms-transform:matrix(0.226692,0.006121,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.226692,0.006121,-0.006748,0.249909,0,0);}
.me1_c00384{transform:matrix(0.226740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226740,0.000000,0.000000,0.250000,0,0);}
.mec_c00384{transform:matrix(0.226873,0.005899,-0.006498,0.249916,0,0);-ms-transform:matrix(0.226873,0.005899,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.226873,0.005899,-0.006498,0.249916,0,0);}
.m57_c00384{transform:matrix(0.227041,0.006357,-0.006997,0.249902,0,0);-ms-transform:matrix(0.227041,0.006357,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.227041,0.006357,-0.006997,0.249902,0,0);}
.m91_c00384{transform:matrix(0.227238,0.005908,-0.006498,0.249916,0,0);-ms-transform:matrix(0.227238,0.005908,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.227238,0.005908,-0.006498,0.249916,0,0);}
.m68_c00384{transform:matrix(0.227370,0.005457,-0.005998,0.249928,0,0);-ms-transform:matrix(0.227370,0.005457,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.227370,0.005457,-0.005998,0.249928,0,0);}
.md5_c00384{transform:matrix(0.227430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227430,0.000000,0.000000,0.250000,0,0);}
.m99_c00384{transform:matrix(0.227860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227860,0.000000,0.000000,0.250000,0,0);}
.m78_c00384{transform:matrix(0.228092,0.006843,-0.007497,0.249888,0,0);-ms-transform:matrix(0.228092,0.006843,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.228092,0.006843,-0.007497,0.249888,0,0);}
.m4_c00384{transform:matrix(0.228220,0.005249,-0.005748,0.249934,0,0);-ms-transform:matrix(0.228220,0.005249,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.228220,0.005249,-0.005748,0.249934,0,0);}
.m8e_c00384{transform:matrix(0.228463,0.005940,-0.006498,0.249916,0,0);-ms-transform:matrix(0.228463,0.005940,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.228463,0.005940,-0.006498,0.249916,0,0);}
.m38_c00384{transform:matrix(0.228732,0.006176,-0.006748,0.249909,0,0);-ms-transform:matrix(0.228732,0.006176,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.228732,0.006176,-0.006748,0.249909,0,0);}
.m53_c00384{transform:matrix(0.229390,0.006423,-0.006997,0.249902,0,0);-ms-transform:matrix(0.229390,0.006423,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.229390,0.006423,-0.006997,0.249902,0,0);}
.m8f_c00384{transform:matrix(0.229647,0.005971,-0.006498,0.249916,0,0);-ms-transform:matrix(0.229647,0.005971,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.229647,0.005971,-0.006498,0.249916,0,0);}
.me5_c00384{transform:matrix(0.230035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230035,0.000000,0.000000,0.250000,0,0);}
.m71_c00384{transform:matrix(0.230653,0.006689,-0.007247,0.249895,0,0);-ms-transform:matrix(0.230653,0.006689,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.230653,0.006689,-0.007247,0.249895,0,0);}
.m54_c00384{transform:matrix(0.230655,0.006458,-0.006997,0.249902,0,0);-ms-transform:matrix(0.230655,0.006458,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.230655,0.006458,-0.006997,0.249902,0,0);}
.m98_c00384{transform:matrix(0.230760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230760,0.000000,0.000000,0.250000,0,0);}
.m3c_c00384{transform:matrix(0.230811,0.006232,-0.006748,0.249909,0,0);-ms-transform:matrix(0.230811,0.006232,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.230811,0.006232,-0.006748,0.249909,0,0);}
.m88_c00384{transform:matrix(0.230967,0.006005,-0.006498,0.249916,0,0);-ms-transform:matrix(0.230967,0.006005,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.230967,0.006005,-0.006498,0.249916,0,0);}
.m5_c00384{transform:matrix(0.231139,0.005316,-0.005748,0.249934,0,0);-ms-transform:matrix(0.231139,0.005316,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.231139,0.005316,-0.005748,0.249934,0,0);}
.m7a_c00384{transform:matrix(0.231181,0.006935,-0.007497,0.249888,0,0);-ms-transform:matrix(0.231181,0.006935,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.231181,0.006935,-0.007497,0.249888,0,0);}
.m1b_c00384{transform:matrix(0.231646,0.006254,-0.006748,0.249909,0,0);-ms-transform:matrix(0.231646,0.006254,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.231646,0.006254,-0.006748,0.249909,0,0);}
.m52_c00384{transform:matrix(0.231764,0.006489,-0.006997,0.249902,0,0);-ms-transform:matrix(0.231764,0.006489,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.231764,0.006489,-0.006997,0.249902,0,0);}
.m7b_c00384{transform:matrix(0.233315,0.006999,-0.007497,0.249888,0,0);-ms-transform:matrix(0.233315,0.006999,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.233315,0.006999,-0.007497,0.249888,0,0);}
.mc0_c00384{transform:matrix(0.233918,0.004444,-0.004749,0.249955,0,0);-ms-transform:matrix(0.233918,0.004444,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.233918,0.004444,-0.004749,0.249955,0,0);}
.m80_c00384{transform:matrix(0.234045,0.007021,-0.007497,0.249888,0,0);-ms-transform:matrix(0.234045,0.007021,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.234045,0.007021,-0.007497,0.249888,0,0);}
.m8b_c00384{transform:matrix(0.234281,0.006091,-0.006498,0.249916,0,0);-ms-transform:matrix(0.234281,0.006091,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.234281,0.006091,-0.006498,0.249916,0,0);}
.m16_c00384{transform:matrix(0.234588,0.005396,-0.005748,0.249934,0,0);-ms-transform:matrix(0.234588,0.005396,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.234588,0.005396,-0.005748,0.249934,0,0);}
.m2f_c00384{transform:matrix(0.234734,0.006338,-0.006748,0.249909,0,0);-ms-transform:matrix(0.234734,0.006338,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.234734,0.006338,-0.006748,0.249909,0,0);}
.m9b_c00384{transform:matrix(0.235315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235315,0.000000,0.000000,0.250000,0,0);}
.m0_c00384{transform:matrix(0.236188,0.005432,-0.005748,0.249934,0,0);-ms-transform:matrix(0.236188,0.005432,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.236188,0.005432,-0.005748,0.249934,0,0);}
.me0_c00384{transform:matrix(0.236240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236240,0.000000,0.000000,0.250000,0,0);}
.me_c00384{transform:matrix(0.236417,0.005438,-0.005748,0.249934,0,0);-ms-transform:matrix(0.236417,0.005438,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.236417,0.005438,-0.005748,0.249934,0,0);}
.mac_c00384{transform:matrix(0.236456,0.009468,-0.010002,0.249800,0,0);-ms-transform:matrix(0.236456,0.009468,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.236456,0.009468,-0.010002,0.249800,0,0);}
.m66_c00384{transform:matrix(0.237848,0.007619,-0.008004,0.249872,0,0);-ms-transform:matrix(0.237848,0.007619,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.237848,0.007619,-0.008004,0.249872,0,0);}
.me9_c00384{transform:matrix(0.238195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238195,0.000000,0.000000,0.250000,0,0);}
.m92_c00384{transform:matrix(0.238484,0.006201,-0.006498,0.249916,0,0);-ms-transform:matrix(0.238484,0.006201,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.238484,0.006201,-0.006498,0.249916,0,0);}
.m1a_c00384{transform:matrix(0.238933,0.006451,-0.006748,0.249909,0,0);-ms-transform:matrix(0.238933,0.006451,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.238933,0.006451,-0.006748,0.249909,0,0);}
.m56_c00384{transform:matrix(0.238986,0.006692,-0.006997,0.249902,0,0);-ms-transform:matrix(0.238986,0.006692,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.238986,0.006692,-0.006997,0.249902,0,0);}
.m70_c00384{transform:matrix(0.239106,0.005739,-0.005998,0.249928,0,0);-ms-transform:matrix(0.239106,0.005739,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.239106,0.005739,-0.005998,0.249928,0,0);}
.ma8_c00384{transform:matrix(0.239135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239135,0.000000,0.000000,0.250000,0,0);}
.med_c00384{transform:matrix(0.239184,0.006219,-0.006498,0.249916,0,0);-ms-transform:matrix(0.239184,0.006219,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.239184,0.006219,-0.006498,0.249916,0,0);}
.me8_c00384{transform:matrix(0.239425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239425,0.000000,0.000000,0.250000,0,0);}
.m6c_c00384{transform:matrix(0.239856,0.005757,-0.005998,0.249928,0,0);-ms-transform:matrix(0.239856,0.005757,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.239856,0.005757,-0.005998,0.249928,0,0);}
.m37_c00384{transform:matrix(0.240452,0.006492,-0.006748,0.249909,0,0);-ms-transform:matrix(0.240452,0.006492,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.240452,0.006492,-0.006748,0.249909,0,0);}
.m5b_c00384{transform:matrix(0.240646,0.006738,-0.006997,0.249902,0,0);-ms-transform:matrix(0.240646,0.006738,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.240646,0.006738,-0.006997,0.249902,0,0);}
.m1e_c00384{transform:matrix(0.241112,0.006510,-0.006748,0.249909,0,0);-ms-transform:matrix(0.241112,0.006510,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.241112,0.006510,-0.006748,0.249909,0,0);}
.m58_c00384{transform:matrix(0.241740,0.006769,-0.006997,0.249902,0,0);-ms-transform:matrix(0.241740,0.006769,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.241740,0.006769,-0.006997,0.249902,0,0);}
.m13_c00384{transform:matrix(0.241806,0.005562,-0.005748,0.249934,0,0);-ms-transform:matrix(0.241806,0.005562,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.241806,0.005562,-0.005748,0.249934,0,0);}
.me2_c00384{transform:matrix(0.241860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241860,0.000000,0.000000,0.250000,0,0);}
.m7c_c00384{transform:matrix(0.242251,0.007268,-0.007497,0.249888,0,0);-ms-transform:matrix(0.242251,0.007268,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.242251,0.007268,-0.007497,0.249888,0,0);}
.m6f_c00384{transform:matrix(0.242740,0.005826,-0.005998,0.249928,0,0);-ms-transform:matrix(0.242740,0.005826,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.242740,0.005826,-0.005998,0.249928,0,0);}
.m2_c00384{transform:matrix(0.242846,0.005585,-0.005748,0.249934,0,0);-ms-transform:matrix(0.242846,0.005585,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.242846,0.005585,-0.005748,0.249934,0,0);}
.mc2_c00384{transform:matrix(0.243586,0.004628,-0.004749,0.249955,0,0);-ms-transform:matrix(0.243586,0.004628,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.243586,0.004628,-0.004749,0.249955,0,0);}
.m73_c00384{transform:matrix(0.243907,0.007073,-0.007247,0.249895,0,0);-ms-transform:matrix(0.243907,0.007073,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.243907,0.007073,-0.007247,0.249895,0,0);}
.me6_c00384{transform:matrix(0.244285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244285,0.000000,0.000000,0.250000,0,0);}
.m14_c00384{transform:matrix(0.246615,0.005672,-0.005748,0.249934,0,0);-ms-transform:matrix(0.246615,0.005672,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.246615,0.005672,-0.005748,0.249934,0,0);}
.m3_c00384{transform:matrix(0.248089,0.005706,-0.005748,0.249934,0,0);-ms-transform:matrix(0.248089,0.005706,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.248089,0.005706,-0.005748,0.249934,0,0);}
.m7_c00384{transform:matrix(0.249009,0.005727,-0.005748,0.249934,0,0);-ms-transform:matrix(0.249009,0.005727,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.249009,0.005727,-0.005748,0.249934,0,0);}
.md6_c00384{transform:matrix(0.249215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249215,0.000000,0.000000,0.250000,0,0);}
.m4c_c00384{transform:matrix(0.249549,0.005740,-0.005748,0.249934,0,0);-ms-transform:matrix(0.249549,0.005740,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.249549,0.005740,-0.005748,0.249934,0,0);}
.m85_c00384{transform:matrix(0.251710,0.006544,-0.006498,0.249916,0,0);-ms-transform:matrix(0.251710,0.006544,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.251710,0.006544,-0.006498,0.249916,0,0);}
.mad_c00384{transform:matrix(0.252493,0.010110,-0.010002,0.249800,0,0);-ms-transform:matrix(0.252493,0.010110,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.252493,0.010110,-0.010002,0.249800,0,0);}
.m94_c00384{transform:matrix(0.253679,0.006596,-0.006498,0.249916,0,0);-ms-transform:matrix(0.253679,0.006596,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.253679,0.006596,-0.006498,0.249916,0,0);}
.mbf_c00384{transform:matrix(0.253714,0.004821,-0.004749,0.249955,0,0);-ms-transform:matrix(0.253714,0.004821,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.253714,0.004821,-0.004749,0.249955,0,0);}
.ma_c00384{transform:matrix(0.253748,0.005836,-0.005748,0.249934,0,0);-ms-transform:matrix(0.253748,0.005836,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.253748,0.005836,-0.005748,0.249934,0,0);}
.m50_c00384{transform:matrix(0.254158,0.005846,-0.005748,0.249934,0,0);-ms-transform:matrix(0.254158,0.005846,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.254158,0.005846,-0.005748,0.249934,0,0);}
.m65_c00384{transform:matrix(0.255049,0.008170,-0.008004,0.249872,0,0);-ms-transform:matrix(0.255049,0.008170,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.255049,0.008170,-0.008004,0.249872,0,0);}
.mb_c00384{transform:matrix(0.255707,0.005881,-0.005748,0.249934,0,0);-ms-transform:matrix(0.255707,0.005881,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.255707,0.005881,-0.005748,0.249934,0,0);}
.m75_c00384{transform:matrix(0.257112,0.007456,-0.007247,0.249895,0,0);-ms-transform:matrix(0.257112,0.007456,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.257112,0.007456,-0.007247,0.249895,0,0);}
.m67_c00384{transform:matrix(0.258048,0.008266,-0.008004,0.249872,0,0);-ms-transform:matrix(0.258048,0.008266,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.258048,0.008266,-0.008004,0.249872,0,0);}
.m3d_c00384{transform:matrix(0.258961,0.006992,-0.006748,0.249909,0,0);-ms-transform:matrix(0.258961,0.006992,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.258961,0.006992,-0.006748,0.249909,0,0);}
.m11_c00384{transform:matrix(0.259326,0.005965,-0.005748,0.249934,0,0);-ms-transform:matrix(0.259326,0.005965,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.259326,0.005965,-0.005748,0.249934,0,0);}
.m49_c00384{transform:matrix(0.259951,0.005979,-0.005748,0.249934,0,0);-ms-transform:matrix(0.259951,0.005979,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.259951,0.005979,-0.005748,0.249934,0,0);}
.m81_c00384{transform:matrix(0.259963,0.007799,-0.007497,0.249888,0,0);-ms-transform:matrix(0.259963,0.007799,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.259963,0.007799,-0.007497,0.249888,0,0);}
.m83_c00384{transform:matrix(0.260708,0.007821,-0.007497,0.249888,0,0);-ms-transform:matrix(0.260708,0.007821,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.260708,0.007821,-0.007497,0.249888,0,0);}
.md4_c00384{transform:matrix(0.260920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260920,0.000000,0.000000,0.250000,0,0);}
.m42_c00384{transform:matrix(0.262015,0.007074,-0.006748,0.249909,0,0);-ms-transform:matrix(0.262015,0.007074,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.262015,0.007074,-0.006748,0.249909,0,0);}
.m4b_c00384{transform:matrix(0.262870,0.006046,-0.005748,0.249934,0,0);-ms-transform:matrix(0.262870,0.006046,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.262870,0.006046,-0.005748,0.249934,0,0);}
.m43_c00384{transform:matrix(0.263639,0.007118,-0.006748,0.249909,0,0);-ms-transform:matrix(0.263639,0.007118,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.263639,0.007118,-0.006748,0.249909,0,0);}
.m86_c00384{transform:matrix(0.263751,0.006858,-0.006498,0.249916,0,0);-ms-transform:matrix(0.263751,0.006858,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.263751,0.006858,-0.006498,0.249916,0,0);}
.mbe_c00384{transform:matrix(0.264232,0.005020,-0.004749,0.249955,0,0);-ms-transform:matrix(0.264232,0.005020,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.264232,0.005020,-0.004749,0.249955,0,0);}
.m3b_c00384{transform:matrix(0.264269,0.007135,-0.006748,0.249909,0,0);-ms-transform:matrix(0.264269,0.007135,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.264269,0.007135,-0.006748,0.249909,0,0);}
.m84_c00384{transform:matrix(0.264456,0.006876,-0.006498,0.249916,0,0);-ms-transform:matrix(0.264456,0.006876,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.264456,0.006876,-0.006498,0.249916,0,0);}
.m3a_c00384{transform:matrix(0.264559,0.007143,-0.006748,0.249909,0,0);-ms-transform:matrix(0.264559,0.007143,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.264559,0.007143,-0.006748,0.249909,0,0);}
.md7_c00384{transform:matrix(0.265975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265975,0.000000,0.000000,0.250000,0,0);}
.mc1_c00384{transform:matrix(0.266997,0.005073,-0.004749,0.249955,0,0);-ms-transform:matrix(0.266997,0.005073,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.266997,0.005073,-0.004749,0.249955,0,0);}
.m8d_c00384{transform:matrix(0.267984,0.006968,-0.006498,0.249916,0,0);-ms-transform:matrix(0.267984,0.006968,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.267984,0.006968,-0.006498,0.249916,0,0);}
.m3e_c00384{transform:matrix(0.268867,0.007259,-0.006748,0.249909,0,0);-ms-transform:matrix(0.268867,0.007259,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.268867,0.007259,-0.006748,0.249909,0,0);}
.mf_c00384{transform:matrix(0.269039,0.006188,-0.005748,0.249934,0,0);-ms-transform:matrix(0.269039,0.006188,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.269039,0.006188,-0.005748,0.249934,0,0);}
.m8c_c00384{transform:matrix(0.270324,0.007028,-0.006498,0.249916,0,0);-ms-transform:matrix(0.270324,0.007028,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.270324,0.007028,-0.006498,0.249916,0,0);}
.m8a_c00384{transform:matrix(0.270424,0.007031,-0.006498,0.249916,0,0);-ms-transform:matrix(0.270424,0.007031,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.270424,0.007031,-0.006498,0.249916,0,0);}
.m39_c00384{transform:matrix(0.271971,0.007343,-0.006748,0.249909,0,0);-ms-transform:matrix(0.271971,0.007343,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.271971,0.007343,-0.006748,0.249909,0,0);}
.m89_c00384{transform:matrix(0.272763,0.007092,-0.006498,0.249916,0,0);-ms-transform:matrix(0.272763,0.007092,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.272763,0.007092,-0.006498,0.249916,0,0);}
.mc5_c00384{transform:matrix(0.272976,0.005187,-0.004749,0.249955,0,0);-ms-transform:matrix(0.272976,0.005187,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.272976,0.005187,-0.004749,0.249955,0,0);}
.m4d_c00384{transform:matrix(0.273168,0.006283,-0.005748,0.249934,0,0);-ms-transform:matrix(0.273168,0.006283,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.273168,0.006283,-0.005748,0.249934,0,0);}
.mae_c00384{transform:matrix(0.273366,0.010946,-0.010002,0.249800,0,0);-ms-transform:matrix(0.273366,0.010946,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.273366,0.010946,-0.010002,0.249800,0,0);}
.m40_c00384{transform:matrix(0.273830,0.007393,-0.006748,0.249909,0,0);-ms-transform:matrix(0.273830,0.007393,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.273830,0.007393,-0.006748,0.249909,0,0);}
.mda_c00384{transform:matrix(0.275495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275495,0.000000,0.000000,0.250000,0,0);}
.mc3_c00384{transform:matrix(0.275690,0.005238,-0.004749,0.249955,0,0);-ms-transform:matrix(0.275690,0.005238,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.275690,0.005238,-0.004749,0.249955,0,0);}
.m87_c00384{transform:matrix(0.277226,0.007208,-0.006498,0.249916,0,0);-ms-transform:matrix(0.277226,0.007208,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.277226,0.007208,-0.006498,0.249916,0,0);}
.mdd_c00384{transform:matrix(0.277965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277965,0.000000,0.000000,0.250000,0,0);}
.mc4_c00384{transform:matrix(0.284659,0.005409,-0.004749,0.249955,0,0);-ms-transform:matrix(0.284659,0.005409,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.284659,0.005409,-0.004749,0.249955,0,0);}
.m1_c00384{transform:matrix(0.288914,0.006645,-0.005748,0.249934,0,0);-ms-transform:matrix(0.288914,0.006645,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.288914,0.006645,-0.005748,0.249934,0,0);}
.maf_c00384{transform:matrix(0.291127,0.011657,-0.010002,0.249800,0,0);-ms-transform:matrix(0.291127,0.011657,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.291127,0.011657,-0.010002,0.249800,0,0);}
.m4f_c00384{transform:matrix(0.291473,0.006704,-0.005748,0.249934,0,0);-ms-transform:matrix(0.291473,0.006704,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.291473,0.006704,-0.005748,0.249934,0,0);}
.m4e_c00384{transform:matrix(0.292533,0.006728,-0.005748,0.249934,0,0);-ms-transform:matrix(0.292533,0.006728,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.292533,0.006728,-0.005748,0.249934,0,0);}
.m4a_c00384{transform:matrix(0.298026,0.006855,-0.005748,0.249934,0,0);-ms-transform:matrix(0.298026,0.006855,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.298026,0.006855,-0.005748,0.249934,0,0);}
.mdf_c00384{transform:matrix(0.303430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303430,0.000000,0.000000,0.250000,0,0);}
.mde_c00384{transform:matrix(0.307150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307150,0.000000,0.000000,0.250000,0,0);}
.md9_c00384{transform:matrix(0.324570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324570,0.000000,0.000000,0.250000,0,0);}
.mdb_c00384{transform:matrix(0.327740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327740,0.000000,0.000000,0.250000,0,0);}
.mdc_c00384{transform:matrix(0.338630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338630,0.000000,0.000000,0.250000,0,0);}
.mba_c00384{transform:matrix(0.499381,0.011985,-0.005998,0.249928,0,0);-ms-transform:matrix(0.499381,0.011985,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.499381,0.011985,-0.005998,0.249928,0,0);}
.md3_c00384{transform:matrix(0.639520,0.026887,-0.010501,0.249779,0,0);-ms-transform:matrix(0.639520,0.026887,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.639520,0.026887,-0.010501,0.249779,0,0);}
.me3_c00384{transform:matrix(0.740875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.740875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.740875,0.000000,0.000000,0.250000,0,0);}
.mbd_c00384{transform:matrix(1.051542,0.025237,-0.005998,0.249928,0,0);-ms-transform:matrix(1.051542,0.025237,-0.005998,0.249928,0,0);-webkit-transform:matrix(1.051542,0.025237,-0.005998,0.249928,0,0);}
.mbc_c00384{transform:matrix(1.185799,0.028459,-0.005998,0.249928,0,0);-ms-transform:matrix(1.185799,0.028459,-0.005998,0.249928,0,0);-webkit-transform:matrix(1.185799,0.028459,-0.005998,0.249928,0,0);}
.mbb_c00384{transform:matrix(2.442272,0.058615,-0.005998,0.249928,0,0);-ms-transform:matrix(2.442272,0.058615,-0.005998,0.249928,0,0);-webkit-transform:matrix(2.442272,0.058615,-0.005998,0.249928,0,0);}
.mb0_c00384{transform:matrix(2.819526,0.112894,-0.010002,0.249800,0,0);-ms-transform:matrix(2.819526,0.112894,-0.010002,0.249800,0,0);-webkit-transform:matrix(2.819526,0.112894,-0.010002,0.249800,0,0);}
.md2_c00384{transform:matrix(6.491715,0.272925,-0.010501,0.249779,0,0);-ms-transform:matrix(6.491715,0.272925,-0.010501,0.249779,0,0);-webkit-transform:matrix(6.491715,0.272925,-0.010501,0.249779,0,0);}
.v0_c00384{vertical-align:0.000000px;}
.ls0_c00384{letter-spacing:0.000000px;}
.sc__c00384{text-shadow:none;}
.sc0_c00384{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__c00384{-webkit-text-stroke:0px transparent;}
.sc0_c00384{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00384{word-spacing:0.000000px;}
._0_c00384{width:32.111776px;}
.fc0_c00384{color:transparent;}
.fs14_c00384{font-size:18.005183px;}
.fs17_c00384{font-size:41.995065px;}
.fs1a_c00384{font-size:42.000000px;}
.fs19_c00384{font-size:60.000000px;}
.fs10_c00384{font-size:65.986832px;}
.fs4_c00384{font-size:66.017455px;}
.fs11_c00384{font-size:71.985635px;}
.fs18_c00384{font-size:72.000000px;}
.fs15_c00384{font-size:72.012995px;}
.fsb_c00384{font-size:72.024332px;}
.fs3_c00384{font-size:72.026239px;}
.fsa_c00384{font-size:72.032393px;}
.fs6_c00384{font-size:77.961966px;}
.fs0_c00384{font-size:78.020628px;}
.fs8_c00384{font-size:78.032792px;}
.fse_c00384{font-size:84.000000px;}
.fs7_c00384{font-size:84.024189px;}
.fsc_c00384{font-size:84.028387px;}
.fs1_c00384{font-size:84.030612px;}
.fs5_c00384{font-size:84.032922px;}
.fs9_c00384{font-size:84.037791px;}
.fs16_c00384{font-size:89.989424px;}
.fsd_c00384{font-size:90.000000px;}
.fs13_c00384{font-size:90.025916px;}
.fs2_c00384{font-size:90.032799px;}
.fsf_c00384{font-size:102.000000px;}
.fs12_c00384{font-size:107.978452px;}
.fs1b_c00384{font-size:114.000000px;}
.y0_c00384{bottom:0.000000px;}
.yf3_c00384{bottom:25.083000px;}
.yf2_c00384{bottom:28.281000px;}
.yf1_c00384{bottom:32.067000px;}
.yf0_c00384{bottom:33.316500px;}
.yef_c00384{bottom:36.499500px;}
.yed_c00384{bottom:39.518355px;}
.yec_c00384{bottom:40.671078px;}
.yeb_c00384{bottom:44.408292px;}
.yea_c00384{bottom:47.207049px;}
.ye9_c00384{bottom:48.334500px;}
.yee_c00384{bottom:61.284000px;}
.ye8_c00384{bottom:66.231000px;}
.ye7_c00384{bottom:68.209500px;}
.ye6_c00384{bottom:70.050000px;}
.ye5_c00384{bottom:70.552500px;}
.ye4_c00384{bottom:72.031500px;}
.ye3_c00384{bottom:73.491000px;}
.ye2_c00384{bottom:73.984500px;}
.ye1_c00384{bottom:104.098500px;}
.ye0_c00384{bottom:133.686000px;}
.ydf_c00384{bottom:135.279000px;}
.yde_c00384{bottom:157.656000px;}
.ydd_c00384{bottom:158.904000px;}
.ydc_c00384{bottom:161.271000px;}
.ydb_c00384{bottom:162.318000px;}
.yda_c00384{bottom:164.823000px;}
.yd9_c00384{bottom:166.332000px;}
.yd8_c00384{bottom:166.957500px;}
.yd7_c00384{bottom:169.230000px;}
.yd6_c00384{bottom:170.643000px;}
.yd5_c00384{bottom:208.005000px;}
.yd1_c00384{bottom:223.916538px;}
.yd0_c00384{bottom:225.339834px;}
.yd4_c00384{bottom:228.606794px;}
.ycf_c00384{bottom:229.080270px;}
.yce_c00384{bottom:230.540421px;}
.ycd_c00384{bottom:232.391046px;}
.yd3_c00384{bottom:236.721248px;}
.ycc_c00384{bottom:237.503811px;}
.yd2_c00384{bottom:238.690182px;}
.ycb_c00384{bottom:241.622310px;}
.yca_c00384{bottom:243.505443px;}
.yc9_c00384{bottom:247.561131px;}
.yc8_c00384{bottom:248.529693px;}
.yc7_c00384{bottom:250.293000px;}
.yc6_c00384{bottom:260.317029px;}
.yc5_c00384{bottom:262.668592px;}
.yc4_c00384{bottom:265.188420px;}
.yc3_c00384{bottom:265.779909px;}
.yc2_c00384{bottom:267.688326px;}
.yc1_c00384{bottom:268.524573px;}
.yc0_c00384{bottom:270.165688px;}
.ybf_c00384{bottom:271.626000px;}
.ybe_c00384{bottom:300.237852px;}
.ybd_c00384{bottom:301.420824px;}
.ybc_c00384{bottom:304.537356px;}
.yba_c00384{bottom:305.614476px;}
.yb9_c00384{bottom:308.524392px;}
.yb8_c00384{bottom:310.151196px;}
.yb7_c00384{bottom:311.194944px;}
.ybb_c00384{bottom:312.661728px;}
.yb6_c00384{bottom:313.558668px;}
.yb5_c00384{bottom:315.364500px;}
.yb4_c00384{bottom:339.088245px;}
.yb3_c00384{bottom:343.764083px;}
.yb2_c00384{bottom:344.281284px;}
.yb1_c00384{bottom:357.427461px;}
.yb0_c00384{bottom:368.434860px;}
.yaf_c00384{bottom:370.244340px;}
.yae_c00384{bottom:371.561760px;}
.yad_c00384{bottom:372.886500px;}
.yac_c00384{bottom:375.657000px;}
.yab_c00384{bottom:376.435500px;}
.yaa_c00384{bottom:377.034000px;}
.ya9_c00384{bottom:378.843000px;}
.ya8_c00384{bottom:380.220000px;}
.ya7_c00384{bottom:381.424500px;}
.ya6_c00384{bottom:381.997500px;}
.ya5_c00384{bottom:383.193000px;}
.ya4_c00384{bottom:383.940000px;}
.ya3_c00384{bottom:409.698000px;}
.ya2_c00384{bottom:410.776500px;}
.ya1_c00384{bottom:411.270000px;}
.ya0_c00384{bottom:412.129500px;}
.y9f_c00384{bottom:413.086500px;}
.y9e_c00384{bottom:414.411000px;}
.y9d_c00384{bottom:415.260000px;}
.y9c_c00384{bottom:451.777500px;}
.y9b_c00384{bottom:452.563500px;}
.y9a_c00384{bottom:453.804000px;}
.y99_c00384{bottom:455.025000px;}
.y98_c00384{bottom:455.446500px;}
.y97_c00384{bottom:455.761500px;}
.y96_c00384{bottom:486.276000px;}
.y95_c00384{bottom:515.261343px;}
.y94_c00384{bottom:515.980341px;}
.y93_c00384{bottom:518.637114px;}
.y92_c00384{bottom:520.628289px;}
.y91_c00384{bottom:521.358639px;}
.y90_c00384{bottom:523.978179px;}
.y8f_c00384{bottom:525.682476px;}
.y8e_c00384{bottom:548.980380px;}
.y8d_c00384{bottom:550.743258px;}
.y8c_c00384{bottom:551.600322px;}
.y8b_c00384{bottom:553.623603px;}
.y8a_c00384{bottom:555.926670px;}
.y89_c00384{bottom:556.783539px;}
.y88_c00384{bottom:559.649454px;}
.y87_c00384{bottom:561.980211px;}
.y86_c00384{bottom:563.684940px;}
.y85_c00384{bottom:565.656000px;}
.y84_c00384{bottom:598.861695px;}
.y83_c00384{bottom:599.855940px;}
.y82_c00384{bottom:600.475020px;}
.y81_c00384{bottom:619.148280px;}
.y80_c00384{bottom:620.799915px;}
.y7f_c00384{bottom:621.807735px;}
.y7e_c00384{bottom:622.825950px;}
.y7d_c00384{bottom:626.166255px;}
.y7c_c00384{bottom:628.777155px;}
.y7b_c00384{bottom:631.807860px;}
.y7a_c00384{bottom:632.820630px;}
.y79_c00384{bottom:636.060630px;}
.y78_c00384{bottom:637.314915px;}
.y77_c00384{bottom:638.017500px;}
.y76_c00384{bottom:665.777644px;}
.y75_c00384{bottom:666.733861px;}
.y74_c00384{bottom:667.360435px;}
.y73_c00384{bottom:668.315956px;}
.y72_c00384{bottom:669.882000px;}
.y71_c00384{bottom:692.576844px;}
.y70_c00384{bottom:696.006096px;}
.y6f_c00384{bottom:697.089048px;}
.y6e_c00384{bottom:697.886016px;}
.y6d_c00384{bottom:702.164868px;}
.y6c_c00384{bottom:702.930048px;}
.y6b_c00384{bottom:704.265180px;}
.y6a_c00384{bottom:705.547392px;}
.y69_c00384{bottom:707.406000px;}
.y68_c00384{bottom:734.854284px;}
.y67_c00384{bottom:736.880796px;}
.y66_c00384{bottom:741.163500px;}
.y65_c00384{bottom:764.271902px;}
.y64_c00384{bottom:764.875190px;}
.y63_c00384{bottom:767.868099px;}
.y62_c00384{bottom:768.757560px;}
.y61_c00384{bottom:771.755613px;}
.y60_c00384{bottom:774.147827px;}
.y5f_c00384{bottom:775.037085px;}
.y5e_c00384{bottom:777.991601px;}
.y5d_c00384{bottom:780.036000px;}
.y5c_c00384{bottom:811.479762px;}
.y5b_c00384{bottom:812.425434px;}
.y5a_c00384{bottom:834.071898px;}
.y59_c00384{bottom:837.209550px;}
.y58_c00384{bottom:838.463376px;}
.y57_c00384{bottom:841.507452px;}
.y56_c00384{bottom:842.776608px;}
.y55_c00384{bottom:844.652454px;}
.y54_c00384{bottom:847.707828px;}
.y53_c00384{bottom:850.821960px;}
.y52_c00384{bottom:852.937500px;}
.y51_c00384{bottom:873.804997px;}
.y50_c00384{bottom:875.848984px;}
.y4f_c00384{bottom:877.627011px;}
.y4e_c00384{bottom:878.924970px;}
.y4d_c00384{bottom:879.683383px;}
.y4c_c00384{bottom:880.713105px;}
.y4b_c00384{bottom:882.975097px;}
.y4a_c00384{bottom:883.987500px;}
.y49_c00384{bottom:915.729000px;}
.y48_c00384{bottom:917.031901px;}
.y47_c00384{bottom:917.761938px;}
.y46_c00384{bottom:918.600559px;}
.y45_c00384{bottom:919.031581px;}
.y44_c00384{bottom:940.809583px;}
.y43_c00384{bottom:941.977182px;}
.y42_c00384{bottom:942.603283px;}
.y41_c00384{bottom:944.004490px;}
.y40_c00384{bottom:944.607031px;}
.y3f_c00384{bottom:945.989052px;}
.y3e_c00384{bottom:947.004974px;}
.y3d_c00384{bottom:947.593549px;}
.y3c_c00384{bottom:948.798631px;}
.y3b_c00384{bottom:950.553064px;}
.y3a_c00384{bottom:951.955082px;}
.y39_c00384{bottom:952.525522px;}
.y38_c00384{bottom:977.257488px;}
.y37_c00384{bottom:978.380484px;}
.y36_c00384{bottom:979.489189px;}
.y35_c00384{bottom:980.396559px;}
.y34_c00384{bottom:981.493846px;}
.y33_c00384{bottom:982.367976px;}
.y32_c00384{bottom:983.498016px;}
.y31_c00384{bottom:984.161983px;}
.y30_c00384{bottom:986.150487px;}
.y2f_c00384{bottom:986.792956px;}
.y2e_c00384{bottom:987.447451px;}
.y2d_c00384{bottom:988.114455px;}
.y2c_c00384{bottom:988.988746px;}
.y2b_c00384{bottom:1012.141359px;}
.y2a_c00384{bottom:1012.964455px;}
.y29_c00384{bottom:1014.908947px;}
.y28_c00384{bottom:1016.050510px;}
.y27_c00384{bottom:1016.871987px;}
.y26_c00384{bottom:1019.647959px;}
.y25_c00384{bottom:1020.457975px;}
.y24_c00384{bottom:1022.951482px;}
.y23_c00384{bottom:1024.065832px;}
.y22_c00384{bottom:1026.805276px;}
.y21_c00384{bottom:1027.614199px;}
.y20_c00384{bottom:1045.883634px;}
.y1f_c00384{bottom:1049.763858px;}
.y1e_c00384{bottom:1051.280016px;}
.y1d_c00384{bottom:1051.883668px;}
.y1c_c00384{bottom:1054.241821px;}
.y1b_c00384{bottom:1057.552453px;}
.y1a_c00384{bottom:1058.770045px;}
.y19_c00384{bottom:1059.613822px;}
.y18_c00384{bottom:1061.110500px;}
.y17_c00384{bottom:1083.606732px;}
.y16_c00384{bottom:1084.375427px;}
.y15_c00384{bottom:1085.934723px;}
.y14_c00384{bottom:1087.433783px;}
.y13_c00384{bottom:1088.482272px;}
.y12_c00384{bottom:1091.036617px;}
.y11_c00384{bottom:1091.788959px;}
.y10_c00384{bottom:1094.199233px;}
.yf_c00384{bottom:1095.334938px;}
.ye_c00384{bottom:1096.296798px;}
.yd_c00384{bottom:1097.278875px;}
.yc_c00384{bottom:1120.211877px;}
.yb_c00384{bottom:1122.522963px;}
.ya_c00384{bottom:1123.312150px;}
.y9_c00384{bottom:1124.081121px;}
.y8_c00384{bottom:1125.616854px;}
.y7_c00384{bottom:1126.640814px;}
.y6_c00384{bottom:1127.884332px;}
.y5_c00384{bottom:1128.417254px;}
.y4_c00384{bottom:1130.412561px;}
.y3_c00384{bottom:1131.964923px;}
.y2_c00384{bottom:1133.198402px;}
.y1_c00384{bottom:1133.464500px;}
.h16_c00384{height:18.005183px;}
.h19_c00384{height:41.995065px;}
.h1c_c00384{height:42.000000px;}
.h1b_c00384{height:60.000000px;}
.h12_c00384{height:65.986832px;}
.h6_c00384{height:66.017455px;}
.h13_c00384{height:71.985635px;}
.h1a_c00384{height:72.000000px;}
.h17_c00384{height:72.012995px;}
.hd_c00384{height:72.024332px;}
.h5_c00384{height:72.026239px;}
.hc_c00384{height:72.032393px;}
.h8_c00384{height:77.961966px;}
.h2_c00384{height:78.020628px;}
.ha_c00384{height:78.032792px;}
.h10_c00384{height:84.000000px;}
.h9_c00384{height:84.024189px;}
.he_c00384{height:84.028387px;}
.h3_c00384{height:84.030612px;}
.h7_c00384{height:84.032922px;}
.hb_c00384{height:84.037791px;}
.h18_c00384{height:89.989424px;}
.hf_c00384{height:90.000000px;}
.h15_c00384{height:90.025916px;}
.h4_c00384{height:90.032799px;}
.h11_c00384{height:102.000000px;}
.h14_c00384{height:107.978452px;}
.h1d_c00384{height:114.000000px;}
.h0_c00384{height:1251.450000px;}
.h1_c00384{height:1251.750000px;}
.w0_c00384{width:915.000000px;}
.x0_c00384{left:0.000000px;}
.xae_c00384{left:149.040000px;}
.xaf_c00384{left:151.473000px;}
.x93_c00384{left:154.779000px;}
.x84_c00384{left:156.159000px;}
.x75_c00384{left:157.690500px;}
.x5c_c00384{left:160.134000px;}
.x52_c00384{left:162.022500px;}
.x48_c00384{left:163.101000px;}
.x2b_c00384{left:164.471111px;}
.x20_c00384{left:165.775188px;}
.x1_c00384{left:166.944000px;}
.xd_c00384{left:169.488516px;}
.x2_c00384{left:178.513500px;}
.x80_c00384{left:180.201000px;}
.x68_c00384{left:182.007000px;}
.xb0_c00384{left:184.369500px;}
.x88_c00384{left:189.871500px;}
.xb5_c00384{left:194.914500px;}
.x37_c00384{left:196.390182px;}
.x21_c00384{left:198.125930px;}
.x97_c00384{left:200.793660px;}
.x81_c00384{left:202.698000px;}
.x69_c00384{left:205.426500px;}
.x2c_c00384{left:208.193873px;}
.xe_c00384{left:212.187516px;}
.x94_c00384{left:230.022000px;}
.x3_c00384{left:232.143000px;}
.x76_c00384{left:233.500500px;}
.x5d_c00384{left:237.576000px;}
.x49_c00384{left:238.656000px;}
.x2d_c00384{left:241.570691px;}
.x6a_c00384{left:247.236000px;}
.xa3_c00384{left:249.240345px;}
.xf_c00384{left:254.007516px;}
.x40_c00384{left:261.705720px;}
.x2e_c00384{left:274.261847px;}
.x18_c00384{left:276.378000px;}
.xb1_c00384{left:281.704500px;}
.x92_c00384{left:283.404982px;}
.x5e_c00384{left:291.001500px;}
.x7f_c00384{left:297.000000px;}
.x4_c00384{left:299.637000px;}
.x73_c00384{left:301.805460px;}
.x10_c00384{left:303.386016px;}
.xac_c00384{left:305.269500px;}
.x2f_c00384{left:306.396422px;}
.x22_c00384{left:307.703843px;}
.xa4_c00384{left:316.710000px;}
.x41_c00384{left:317.876442px;}
.x82_c00384{left:319.993500px;}
.x74_c00384{left:323.142090px;}
.x95_c00384{left:328.510500px;}
.x89_c00384{left:329.628000px;}
.x19_c00384{left:331.810500px;}
.x51_c00384{left:337.711380px;}
.x53_c00384{left:347.167500px;}
.x4a_c00384{left:349.875000px;}
.x23_c00384{left:352.256232px;}
.x7c_c00384{left:353.320203px;}
.x6b_c00384{left:355.236000px;}
.x64_c00384{left:357.090000px;}
.xa6_c00384{left:359.023500px;}
.x9a_c00384{left:361.642500px;}
.x1a_c00384{left:363.061500px;}
.xad_c00384{left:368.989500px;}
.x38_c00384{left:371.782788px;}
.x5f_c00384{left:378.514500px;}
.x54_c00384{left:380.103000px;}
.x5_c00384{left:386.389500px;}
.x6c_c00384{left:388.995000px;}
.x65_c00384{left:390.039000px;}
.xa7_c00384{left:391.966500px;}
.xa5_c00384{left:393.660000px;}
.x8a_c00384{left:396.547500px;}
.x43_c00384{left:404.218500px;}
.x30_c00384{left:405.785673px;}
.x11_c00384{left:408.180516px;}
.x6_c00384{left:409.560000px;}
.x66_c00384{left:411.645000px;}
.xb2_c00384{left:413.842500px;}
.x42_c00384{left:418.058769px;}
.x5a_c00384{left:437.306666px;}
.x31_c00384{left:438.994451px;}
.x12_c00384{left:440.891016px;}
.x67_c00384{left:444.618000px;}
.x98_c00384{left:447.006024px;}
.x44_c00384{left:448.989000px;}
.x24_c00384{left:452.002619px;}
.x4b_c00384{left:458.995500px;}
.x9b_c00384{left:462.085500px;}
.x7_c00384{left:463.626000px;}
.x83_c00384{left:464.734500px;}
.x55_c00384{left:468.703500px;}
.x39_c00384{left:471.461007px;}
.x8b_c00384{left:473.029500px;}
.x7d_c00384{left:477.045573px;}
.x45_c00384{left:481.963500px;}
.x25_c00384{left:484.393860px;}
.x6d_c00384{left:490.018500px;}
.x9c_c00384{left:493.216500px;}
.x32_c00384{left:495.525143px;}
.x77_c00384{left:498.939000px;}
.x5b_c00384{left:500.571837px;}
.x8_c00384{left:508.146000px;}
.x85_c00384{left:518.748000px;}
.xb7_c00384{left:522.940500px;}
.x4c_c00384{left:525.990000px;}
.x3a_c00384{left:527.879196px;}
.x1b_c00384{left:530.773500px;}
.x78_c00384{left:531.895500px;}
.xb3_c00384{left:536.520000px;}
.x33_c00384{left:539.241905px;}
.x99_c00384{left:541.466148px;}
.x13_c00384{left:551.949516px;}
.x60_c00384{left:556.800000px;}
.x96_c00384{left:561.030000px;}
.x86_c00384{left:563.562000px;}
.x4d_c00384{left:571.317000px;}
.x8c_c00384{left:573.505500px;}
.x9_c00384{left:574.917000px;}
.x6e_c00384{left:577.048500px;}
.x56_c00384{left:579.742500px;}
.x61_c00384{left:590.007000px;}
.x9f_c00384{left:592.073763px;}
.x34_c00384{left:594.114773px;}
.x26_c00384{left:595.435854px;}
.x14_c00384{left:597.536016px;}
.xb8_c00384{left:600.724500px;}
.xa8_c00384{left:603.225000px;}
.x3b_c00384{left:604.639326px;}
.x8d_c00384{left:606.714000px;}
.xa_c00384{left:608.350500px;}
.x57_c00384{left:612.685500px;}
.x46_c00384{left:615.702000px;}
.x1c_c00384{left:618.112500px;}
.x79_c00384{left:620.475000px;}
.x9d_c00384{left:625.839000px;}
.x27_c00384{left:628.307136px;}
.x7e_c00384{left:630.495024px;}
.x62_c00384{left:635.130000px;}
.x3c_c00384{left:638.130467px;}
.x35_c00384{left:639.451818px;}
.x1d_c00384{left:640.470000px;}
.xb_c00384{left:642.663000px;}
.x8e_c00384{left:649.968000px;}
.xa9_c00384{left:658.311000px;}
.x87_c00384{left:661.623000px;}
.x15_c00384{left:662.712516px;}
.xb9_c00384{left:667.144500px;}
.xb4_c00384{left:668.371500px;}
.xa0_c00384{left:670.822935px;}
.x28_c00384{left:673.978607px;}
.x4e_c00384{left:680.034000px;}
.x6f_c00384{left:688.392000px;}
.x36_c00384{left:694.858767px;}
.x1e_c00384{left:696.624000px;}
.x7a_c00384{left:698.293500px;}
.x47_c00384{left:704.571000px;}
.xb6_c00384{left:713.610000px;}
.x3d_c00384{left:715.990380px;}
.x70_c00384{left:722.332500px;}
.x58_c00384{left:723.534000px;}
.x4f_c00384{left:724.813500px;}
.x8f_c00384{left:728.725381px;}
.x16_c00384{left:730.508016px;}
.xc_c00384{left:743.145000px;}
.x59_c00384{left:745.878000px;}
.x9e_c00384{left:749.605500px;}
.x3e_c00384{left:750.743304px;}
.x29_c00384{left:751.778818px;}
.x71_c00384{left:755.926500px;}
.xa1_c00384{left:759.791877px;}
.x90_c00384{left:761.627946px;}
.x17_c00384{left:763.929516px;}
.x63_c00384{left:778.015500px;}
.xaa_c00384{left:782.884500px;}
.x2a_c00384{left:784.710101px;}
.xa2_c00384{left:793.645989px;}
.x7b_c00384{left:799.060500px;}
.x91_c00384{left:806.819709px;}
.x72_c00384{left:810.981000px;}
.x3f_c00384{left:815.614558px;}
.x50_c00384{left:836.872500px;}
.x1f_c00384{left:840.336000px;}
.xab_c00384{left:848.574000px;}
@media print{
.v0_c00384{vertical-align:0.000000pt;}
.ls0_c00384{letter-spacing:0.000000pt;}
.ws0_c00384{word-spacing:0.000000pt;}
._0_c00384{width:28.543801pt;}
.fs14_c00384{font-size:16.004607pt;}
.fs17_c00384{font-size:37.328946pt;}
.fs1a_c00384{font-size:37.333333pt;}
.fs19_c00384{font-size:53.333333pt;}
.fs10_c00384{font-size:58.654961pt;}
.fs4_c00384{font-size:58.682182pt;}
.fs11_c00384{font-size:63.987231pt;}
.fs18_c00384{font-size:64.000000pt;}
.fs15_c00384{font-size:64.011551pt;}
.fsb_c00384{font-size:64.021628pt;}
.fs3_c00384{font-size:64.023324pt;}
.fsa_c00384{font-size:64.028794pt;}
.fs6_c00384{font-size:69.299525pt;}
.fs0_c00384{font-size:69.351670pt;}
.fs8_c00384{font-size:69.362482pt;}
.fse_c00384{font-size:74.666667pt;}
.fs7_c00384{font-size:74.688168pt;}
.fsc_c00384{font-size:74.691900pt;}
.fs1_c00384{font-size:74.693878pt;}
.fs5_c00384{font-size:74.695930pt;}
.fs9_c00384{font-size:74.700259pt;}
.fs16_c00384{font-size:79.990599pt;}
.fsd_c00384{font-size:80.000000pt;}
.fs13_c00384{font-size:80.023037pt;}
.fs2_c00384{font-size:80.029155pt;}
.fsf_c00384{font-size:90.666667pt;}
.fs12_c00384{font-size:95.980846pt;}
.fs1b_c00384{font-size:101.333333pt;}
.y0_c00384{bottom:0.000000pt;}
.yf3_c00384{bottom:22.296000pt;}
.yf2_c00384{bottom:25.138667pt;}
.yf1_c00384{bottom:28.504000pt;}
.yf0_c00384{bottom:29.614667pt;}
.yef_c00384{bottom:32.444000pt;}
.yed_c00384{bottom:35.127427pt;}
.yec_c00384{bottom:36.152069pt;}
.yeb_c00384{bottom:39.474037pt;}
.yea_c00384{bottom:41.961821pt;}
.ye9_c00384{bottom:42.964000pt;}
.yee_c00384{bottom:54.474667pt;}
.ye8_c00384{bottom:58.872000pt;}
.ye7_c00384{bottom:60.630667pt;}
.ye6_c00384{bottom:62.266667pt;}
.ye5_c00384{bottom:62.713333pt;}
.ye4_c00384{bottom:64.028000pt;}
.ye3_c00384{bottom:65.325333pt;}
.ye2_c00384{bottom:65.764000pt;}
.ye1_c00384{bottom:92.532000pt;}
.ye0_c00384{bottom:118.832000pt;}
.ydf_c00384{bottom:120.248000pt;}
.yde_c00384{bottom:140.138667pt;}
.ydd_c00384{bottom:141.248000pt;}
.ydc_c00384{bottom:143.352000pt;}
.ydb_c00384{bottom:144.282667pt;}
.yda_c00384{bottom:146.509333pt;}
.yd9_c00384{bottom:147.850667pt;}
.yd8_c00384{bottom:148.406667pt;}
.yd7_c00384{bottom:150.426667pt;}
.yd6_c00384{bottom:151.682667pt;}
.yd5_c00384{bottom:184.893333pt;}
.yd1_c00384{bottom:199.036923pt;}
.yd0_c00384{bottom:200.302075pt;}
.yd4_c00384{bottom:203.206039pt;}
.ycf_c00384{bottom:203.626907pt;}
.yce_c00384{bottom:204.924819pt;}
.ycd_c00384{bottom:206.569819pt;}
.yd3_c00384{bottom:210.418887pt;}
.ycc_c00384{bottom:211.114499pt;}
.yd2_c00384{bottom:212.169051pt;}
.ycb_c00384{bottom:214.775387pt;}
.yca_c00384{bottom:216.449283pt;}
.yc9_c00384{bottom:220.054339pt;}
.yc8_c00384{bottom:220.915283pt;}
.yc7_c00384{bottom:222.482667pt;}
.yc6_c00384{bottom:231.392915pt;}
.yc5_c00384{bottom:233.483193pt;}
.yc4_c00384{bottom:235.723040pt;}
.yc3_c00384{bottom:236.248808pt;}
.yc2_c00384{bottom:237.945179pt;}
.yc1_c00384{bottom:238.688509pt;}
.yc0_c00384{bottom:240.147279pt;}
.ybf_c00384{bottom:241.445333pt;}
.ybe_c00384{bottom:266.878091pt;}
.ybd_c00384{bottom:267.929621pt;}
.ybc_c00384{bottom:270.699872pt;}
.yba_c00384{bottom:271.657312pt;}
.yb9_c00384{bottom:274.243904pt;}
.yb8_c00384{bottom:275.689952pt;}
.yb7_c00384{bottom:276.617728pt;}
.ybb_c00384{bottom:277.921536pt;}
.yb6_c00384{bottom:278.718816pt;}
.yb5_c00384{bottom:280.324000pt;}
.yb4_c00384{bottom:301.411773pt;}
.yb3_c00384{bottom:305.568073pt;}
.yb2_c00384{bottom:306.027808pt;}
.yb1_c00384{bottom:317.713299pt;}
.yb0_c00384{bottom:327.497653pt;}
.yaf_c00384{bottom:329.106080pt;}
.yae_c00384{bottom:330.277120pt;}
.yad_c00384{bottom:331.454667pt;}
.yac_c00384{bottom:333.917333pt;}
.yab_c00384{bottom:334.609333pt;}
.yaa_c00384{bottom:335.141333pt;}
.ya9_c00384{bottom:336.749333pt;}
.ya8_c00384{bottom:337.973333pt;}
.ya7_c00384{bottom:339.044000pt;}
.ya6_c00384{bottom:339.553333pt;}
.ya5_c00384{bottom:340.616000pt;}
.ya4_c00384{bottom:341.280000pt;}
.ya3_c00384{bottom:364.176000pt;}
.ya2_c00384{bottom:365.134667pt;}
.ya1_c00384{bottom:365.573333pt;}
.ya0_c00384{bottom:366.337333pt;}
.y9f_c00384{bottom:367.188000pt;}
.y9e_c00384{bottom:368.365333pt;}
.y9d_c00384{bottom:369.120000pt;}
.y9c_c00384{bottom:401.580000pt;}
.y9b_c00384{bottom:402.278667pt;}
.y9a_c00384{bottom:403.381333pt;}
.y99_c00384{bottom:404.466667pt;}
.y98_c00384{bottom:404.841333pt;}
.y97_c00384{bottom:405.121333pt;}
.y96_c00384{bottom:432.245333pt;}
.y95_c00384{bottom:458.010083pt;}
.y94_c00384{bottom:458.649192pt;}
.y93_c00384{bottom:461.010768pt;}
.y92_c00384{bottom:462.780701pt;}
.y91_c00384{bottom:463.429901pt;}
.y90_c00384{bottom:465.758381pt;}
.y8f_c00384{bottom:467.273312pt;}
.y8e_c00384{bottom:487.982560pt;}
.y8d_c00384{bottom:489.549563pt;}
.y8c_c00384{bottom:490.311397pt;}
.y8b_c00384{bottom:492.109869pt;}
.y8a_c00384{bottom:494.157040pt;}
.y89_c00384{bottom:494.918701pt;}
.y88_c00384{bottom:497.466181pt;}
.y87_c00384{bottom:499.537965pt;}
.y86_c00384{bottom:501.053280pt;}
.y85_c00384{bottom:502.805333pt;}
.y84_c00384{bottom:532.321507pt;}
.y83_c00384{bottom:533.205280pt;}
.y82_c00384{bottom:533.755573pt;}
.y81_c00384{bottom:550.354027pt;}
.y80_c00384{bottom:551.822147pt;}
.y7f_c00384{bottom:552.717987pt;}
.y7e_c00384{bottom:553.623067pt;}
.y7d_c00384{bottom:556.592227pt;}
.y7c_c00384{bottom:558.913027pt;}
.y7b_c00384{bottom:561.606987pt;}
.y7a_c00384{bottom:562.507227pt;}
.y79_c00384{bottom:565.387227pt;}
.y78_c00384{bottom:566.502147pt;}
.y77_c00384{bottom:567.126667pt;}
.y76_c00384{bottom:591.802351pt;}
.y75_c00384{bottom:592.652321pt;}
.y74_c00384{bottom:593.209276pt;}
.y73_c00384{bottom:594.058628pt;}
.y72_c00384{bottom:595.450667pt;}
.y71_c00384{bottom:615.623861pt;}
.y70_c00384{bottom:618.672085pt;}
.y6f_c00384{bottom:619.634709pt;}
.y6e_c00384{bottom:620.343125pt;}
.y6d_c00384{bottom:624.146549pt;}
.y6c_c00384{bottom:624.826709pt;}
.y6b_c00384{bottom:626.013493pt;}
.y6a_c00384{bottom:627.153237pt;}
.y69_c00384{bottom:628.805333pt;}
.y68_c00384{bottom:653.203808pt;}
.y67_c00384{bottom:655.005152pt;}
.y66_c00384{bottom:658.812000pt;}
.y65_c00384{bottom:679.352801pt;}
.y64_c00384{bottom:679.889057pt;}
.y63_c00384{bottom:682.549421pt;}
.y62_c00384{bottom:683.340053pt;}
.y61_c00384{bottom:686.004989pt;}
.y60_c00384{bottom:688.131401pt;}
.y5f_c00384{bottom:688.921853pt;}
.y5e_c00384{bottom:691.548089pt;}
.y5d_c00384{bottom:693.365333pt;}
.y5c_c00384{bottom:721.315344pt;}
.y5b_c00384{bottom:722.155941pt;}
.y5a_c00384{bottom:741.397243pt;}
.y59_c00384{bottom:744.186267pt;}
.y58_c00384{bottom:745.300779pt;}
.y57_c00384{bottom:748.006624pt;}
.y56_c00384{bottom:749.134763pt;}
.y55_c00384{bottom:750.802181pt;}
.y54_c00384{bottom:753.518069pt;}
.y53_c00384{bottom:756.286187pt;}
.y52_c00384{bottom:758.166667pt;}
.y51_c00384{bottom:776.715553pt;}
.y50_c00384{bottom:778.532431pt;}
.y4f_c00384{bottom:780.112899pt;}
.y4e_c00384{bottom:781.266640pt;}
.y4d_c00384{bottom:781.940785pt;}
.y4c_c00384{bottom:782.856093pt;}
.y4b_c00384{bottom:784.866753pt;}
.y4a_c00384{bottom:785.766667pt;}
.y49_c00384{bottom:813.981333pt;}
.y48_c00384{bottom:815.139468pt;}
.y47_c00384{bottom:815.788389pt;}
.y46_c00384{bottom:816.533831pt;}
.y45_c00384{bottom:816.916961pt;}
.y44_c00384{bottom:836.275185pt;}
.y43_c00384{bottom:837.313051pt;}
.y42_c00384{bottom:837.869585pt;}
.y41_c00384{bottom:839.115103pt;}
.y40_c00384{bottom:839.650695pt;}
.y3f_c00384{bottom:840.879157pt;}
.y3e_c00384{bottom:841.782199pt;}
.y3d_c00384{bottom:842.305377pt;}
.y3c_c00384{bottom:843.376561pt;}
.y3b_c00384{bottom:844.936057pt;}
.y3a_c00384{bottom:846.182295pt;}
.y39_c00384{bottom:846.689353pt;}
.y38_c00384{bottom:868.673323pt;}
.y37_c00384{bottom:869.671541pt;}
.y36_c00384{bottom:870.657057pt;}
.y35_c00384{bottom:871.463608pt;}
.y34_c00384{bottom:872.438975pt;}
.y33_c00384{bottom:873.215979pt;}
.y32_c00384{bottom:874.220459pt;}
.y31_c00384{bottom:874.810652pt;}
.y30_c00384{bottom:876.578211pt;}
.y2f_c00384{bottom:877.149295pt;}
.y2e_c00384{bottom:877.731068pt;}
.y2d_c00384{bottom:878.323960pt;}
.y2c_c00384{bottom:879.101108pt;}
.y2b_c00384{bottom:899.681208pt;}
.y2a_c00384{bottom:900.412849pt;}
.y29_c00384{bottom:902.141287pt;}
.y28_c00384{bottom:903.156009pt;}
.y27_c00384{bottom:903.886211pt;}
.y26_c00384{bottom:906.353741pt;}
.y25_c00384{bottom:907.073756pt;}
.y24_c00384{bottom:909.290207pt;}
.y23_c00384{bottom:910.280740pt;}
.y22_c00384{bottom:912.715801pt;}
.y21_c00384{bottom:913.434844pt;}
.y20_c00384{bottom:929.674341pt;}
.y1f_c00384{bottom:933.123429pt;}
.y1e_c00384{bottom:934.471125pt;}
.y1d_c00384{bottom:935.007705pt;}
.y1c_c00384{bottom:937.103841pt;}
.y1b_c00384{bottom:940.046625pt;}
.y1a_c00384{bottom:941.128929pt;}
.y19_c00384{bottom:941.878953pt;}
.y18_c00384{bottom:943.209333pt;}
.y17_c00384{bottom:963.205984pt;}
.y16_c00384{bottom:963.889268pt;}
.y15_c00384{bottom:965.275309pt;}
.y14_c00384{bottom:966.607807pt;}
.y13_c00384{bottom:967.539797pt;}
.y12_c00384{bottom:969.810327pt;}
.y11_c00384{bottom:970.479075pt;}
.y10_c00384{bottom:972.621540pt;}
.yf_c00384{bottom:973.631056pt;}
.ye_c00384{bottom:974.486043pt;}
.yd_c00384{bottom:975.359000pt;}
.yc_c00384{bottom:995.743891pt;}
.yb_c00384{bottom:997.798189pt;}
.ya_c00384{bottom:998.499689pt;}
.y9_c00384{bottom:999.183219pt;}
.y8_c00384{bottom:1000.548315pt;}
.y7_c00384{bottom:1001.458501pt;}
.y6_c00384{bottom:1002.563851pt;}
.y5_c00384{bottom:1003.037559pt;}
.y4_c00384{bottom:1004.811165pt;}
.y3_c00384{bottom:1006.191043pt;}
.y2_c00384{bottom:1007.287468pt;}
.y1_c00384{bottom:1007.524000pt;}
.h16_c00384{height:16.004607pt;}
.h19_c00384{height:37.328946pt;}
.h1c_c00384{height:37.333333pt;}
.h1b_c00384{height:53.333333pt;}
.h12_c00384{height:58.654961pt;}
.h6_c00384{height:58.682182pt;}
.h13_c00384{height:63.987231pt;}
.h1a_c00384{height:64.000000pt;}
.h17_c00384{height:64.011551pt;}
.hd_c00384{height:64.021628pt;}
.h5_c00384{height:64.023324pt;}
.hc_c00384{height:64.028794pt;}
.h8_c00384{height:69.299525pt;}
.h2_c00384{height:69.351670pt;}
.ha_c00384{height:69.362482pt;}
.h10_c00384{height:74.666667pt;}
.h9_c00384{height:74.688168pt;}
.he_c00384{height:74.691900pt;}
.h3_c00384{height:74.693878pt;}
.h7_c00384{height:74.695930pt;}
.hb_c00384{height:74.700259pt;}
.h18_c00384{height:79.990599pt;}
.hf_c00384{height:80.000000pt;}
.h15_c00384{height:80.023037pt;}
.h4_c00384{height:80.029155pt;}
.h11_c00384{height:90.666667pt;}
.h14_c00384{height:95.980846pt;}
.h1d_c00384{height:101.333333pt;}
.h0_c00384{height:1112.400000pt;}
.h1_c00384{height:1112.666667pt;}
.w0_c00384{width:813.333333pt;}
.x0_c00384{left:0.000000pt;}
.xae_c00384{left:132.480000pt;}
.xaf_c00384{left:134.642667pt;}
.x93_c00384{left:137.581333pt;}
.x84_c00384{left:138.808000pt;}
.x75_c00384{left:140.169333pt;}
.x5c_c00384{left:142.341333pt;}
.x52_c00384{left:144.020000pt;}
.x48_c00384{left:144.978667pt;}
.x2b_c00384{left:146.196543pt;}
.x20_c00384{left:147.355723pt;}
.x1_c00384{left:148.394667pt;}
.xd_c00384{left:150.656459pt;}
.x2_c00384{left:158.678667pt;}
.x80_c00384{left:160.178667pt;}
.x68_c00384{left:161.784000pt;}
.xb0_c00384{left:163.884000pt;}
.x88_c00384{left:168.774667pt;}
.xb5_c00384{left:173.257333pt;}
.x37_c00384{left:174.569051pt;}
.x21_c00384{left:176.111937pt;}
.x97_c00384{left:178.483253pt;}
.x81_c00384{left:180.176000pt;}
.x69_c00384{left:182.601333pt;}
.x2c_c00384{left:185.061220pt;}
.xe_c00384{left:188.611125pt;}
.x94_c00384{left:204.464000pt;}
.x3_c00384{left:206.349333pt;}
.x76_c00384{left:207.556000pt;}
.x5d_c00384{left:211.178667pt;}
.x49_c00384{left:212.138667pt;}
.x2d_c00384{left:214.729503pt;}
.x6a_c00384{left:219.765333pt;}
.xa3_c00384{left:221.546973pt;}
.xf_c00384{left:225.784459pt;}
.x40_c00384{left:232.627307pt;}
.x2e_c00384{left:243.788308pt;}
.x18_c00384{left:245.669333pt;}
.xb1_c00384{left:250.404000pt;}
.x92_c00384{left:251.915540pt;}
.x5e_c00384{left:258.668000pt;}
.x7f_c00384{left:264.000000pt;}
.x4_c00384{left:266.344000pt;}
.x73_c00384{left:268.271520pt;}
.x10_c00384{left:269.676459pt;}
.xac_c00384{left:271.350667pt;}
.x2f_c00384{left:272.352375pt;}
.x22_c00384{left:273.514527pt;}
.xa4_c00384{left:281.520000pt;}
.x41_c00384{left:282.556837pt;}
.x82_c00384{left:284.438667pt;}
.x74_c00384{left:287.237413pt;}
.x95_c00384{left:292.009333pt;}
.x89_c00384{left:293.002667pt;}
.x19_c00384{left:294.942667pt;}
.x51_c00384{left:300.187893pt;}
.x53_c00384{left:308.593333pt;}
.x4a_c00384{left:311.000000pt;}
.x23_c00384{left:313.116651pt;}
.x7c_c00384{left:314.062403pt;}
.x6b_c00384{left:315.765333pt;}
.x64_c00384{left:317.413333pt;}
.xa6_c00384{left:319.132000pt;}
.x9a_c00384{left:321.460000pt;}
.x1a_c00384{left:322.721333pt;}
.xad_c00384{left:327.990667pt;}
.x38_c00384{left:330.473589pt;}
.x5f_c00384{left:336.457333pt;}
.x54_c00384{left:337.869333pt;}
.x5_c00384{left:343.457333pt;}
.x6c_c00384{left:345.773333pt;}
.x65_c00384{left:346.701333pt;}
.xa7_c00384{left:348.414667pt;}
.xa5_c00384{left:349.920000pt;}
.x8a_c00384{left:352.486667pt;}
.x43_c00384{left:359.305333pt;}
.x30_c00384{left:360.698376pt;}
.x11_c00384{left:362.827125pt;}
.x6_c00384{left:364.053333pt;}
.x66_c00384{left:365.906667pt;}
.xb2_c00384{left:367.860000pt;}
.x42_c00384{left:371.607795pt;}
.x5a_c00384{left:388.717036pt;}
.x31_c00384{left:390.217289pt;}
.x12_c00384{left:391.903125pt;}
.x67_c00384{left:395.216000pt;}
.x98_c00384{left:397.338688pt;}
.x44_c00384{left:399.101333pt;}
.x24_c00384{left:401.780105pt;}
.x4b_c00384{left:407.996000pt;}
.x9b_c00384{left:410.742667pt;}
.x7_c00384{left:412.112000pt;}
.x83_c00384{left:413.097333pt;}
.x55_c00384{left:416.625333pt;}
.x39_c00384{left:419.076451pt;}
.x8b_c00384{left:420.470667pt;}
.x7d_c00384{left:424.040509pt;}
.x45_c00384{left:428.412000pt;}
.x25_c00384{left:430.572320pt;}
.x6d_c00384{left:435.572000pt;}
.x9c_c00384{left:438.414667pt;}
.x32_c00384{left:440.466793pt;}
.x77_c00384{left:443.501333pt;}
.x5b_c00384{left:444.952744pt;}
.x8_c00384{left:451.685333pt;}
.x85_c00384{left:461.109333pt;}
.xb7_c00384{left:464.836000pt;}
.x4c_c00384{left:467.546667pt;}
.x3a_c00384{left:469.225952pt;}
.x1b_c00384{left:471.798667pt;}
.x78_c00384{left:472.796000pt;}
.xb3_c00384{left:476.906667pt;}
.x33_c00384{left:479.326137pt;}
.x99_c00384{left:481.303243pt;}
.x13_c00384{left:490.621792pt;}
.x60_c00384{left:494.933333pt;}
.x96_c00384{left:498.693333pt;}
.x86_c00384{left:500.944000pt;}
.x4d_c00384{left:507.837333pt;}
.x8c_c00384{left:509.782667pt;}
.x9_c00384{left:511.037333pt;}
.x6e_c00384{left:512.932000pt;}
.x56_c00384{left:515.326667pt;}
.x61_c00384{left:524.450667pt;}
.x9f_c00384{left:526.287789pt;}
.x34_c00384{left:528.102020pt;}
.x26_c00384{left:529.276315pt;}
.x14_c00384{left:531.143125pt;}
.xb8_c00384{left:533.977333pt;}
.xa8_c00384{left:536.200000pt;}
.x3b_c00384{left:537.457179pt;}
.x8d_c00384{left:539.301333pt;}
.xa_c00384{left:540.756000pt;}
.x57_c00384{left:544.609333pt;}
.x46_c00384{left:547.290667pt;}
.x1c_c00384{left:549.433333pt;}
.x79_c00384{left:551.533333pt;}
.x9d_c00384{left:556.301333pt;}
.x27_c00384{left:558.495232pt;}
.x7e_c00384{left:560.440021pt;}
.x62_c00384{left:564.560000pt;}
.x3c_c00384{left:567.227081pt;}
.x35_c00384{left:568.401616pt;}
.x1d_c00384{left:569.306667pt;}
.xb_c00384{left:571.256000pt;}
.x8e_c00384{left:577.749333pt;}
.xa9_c00384{left:585.165333pt;}
.x87_c00384{left:588.109333pt;}
.x15_c00384{left:589.077792pt;}
.xb9_c00384{left:593.017333pt;}
.xb4_c00384{left:594.108000pt;}
.xa0_c00384{left:596.287053pt;}
.x28_c00384{left:599.092095pt;}
.x4e_c00384{left:604.474667pt;}
.x6f_c00384{left:611.904000pt;}
.x36_c00384{left:617.652237pt;}
.x1e_c00384{left:619.221333pt;}
.x7a_c00384{left:620.705333pt;}
.x47_c00384{left:626.285333pt;}
.xb6_c00384{left:634.320000pt;}
.x3d_c00384{left:636.435893pt;}
.x70_c00384{left:642.073333pt;}
.x58_c00384{left:643.141333pt;}
.x4f_c00384{left:644.278667pt;}
.x8f_c00384{left:647.755895pt;}
.x16_c00384{left:649.340459pt;}
.xc_c00384{left:660.573333pt;}
.x59_c00384{left:663.002667pt;}
.x9e_c00384{left:666.316000pt;}
.x3e_c00384{left:667.327381pt;}
.x29_c00384{left:668.247839pt;}
.x71_c00384{left:671.934667pt;}
.xa1_c00384{left:675.370557pt;}
.x90_c00384{left:677.002619pt;}
.x17_c00384{left:679.048459pt;}
.x63_c00384{left:691.569333pt;}
.xaa_c00384{left:695.897333pt;}
.x2a_c00384{left:697.520089pt;}
.xa2_c00384{left:705.463101pt;}
.x7b_c00384{left:710.276000pt;}
.x91_c00384{left:717.173075pt;}
.x72_c00384{left:720.872000pt;}
.x3f_c00384{left:724.990719pt;}
.x50_c00384{left:743.886667pt;}
.x1f_c00384{left:746.965333pt;}
.xab_c00384{left:754.288000pt;}
}





/* 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_c00385 {
    display:none;
  }
  .loading-indicator_c00385.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00385 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_c00385 { 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_c00385" -> "#page-container .classname_c00385")
 */
.pf_c00385 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00385 { /* 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_c00385.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00385 { /* 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_c00385 { /* 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_c00385 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00385 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00385 {overflow:visible;}
  }
}
.c_c00385 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00385 { /* 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_c00385:after { /* webkit #35443 */
  content: '';
}
.t_c00385:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00385 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 */
}
.__c00385 { /* 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_c00385 { /* info for Javascript */
  display:none;
}
.l_c00385 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00385 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00385 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00385: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_c00385 {
    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_c00385.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00385.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_c00385 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00385{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00385;src:url('chunks/assets/font_fabf4b590f7fb32aea93ffb2.woff2')format("woff");}.ff1_c00385{font-family:ff1_c00385;line-height:1.000000;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;}
.me_c00385{transform:matrix(0.010164,-0.000122,0.003000,0.249982,0,0);-ms-transform:matrix(0.010164,-0.000122,0.003000,0.249982,0,0);-webkit-transform:matrix(0.010164,-0.000122,0.003000,0.249982,0,0);}
.m69_c00385{transform:matrix(0.011475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.011475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.011475,0.000000,0.000000,0.250000,0,0);}
.m51_c00385{transform:matrix(0.020580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.020580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.020580,0.000000,0.000000,0.250000,0,0);}
.m40_c00385{transform:matrix(0.056771,-0.000681,0.003000,0.249982,0,0);-ms-transform:matrix(0.056771,-0.000681,0.003000,0.249982,0,0);-webkit-transform:matrix(0.056771,-0.000681,0.003000,0.249982,0,0);}
.m68_c00385{transform:matrix(0.119610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119610,0.000000,0.000000,0.250000,0,0);}
.m50_c00385{transform:matrix(0.124260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124260,0.000000,0.000000,0.250000,0,0);}
.m10_c00385{transform:matrix(0.150219,-0.001803,0.003000,0.249982,0,0);-ms-transform:matrix(0.150219,-0.001803,0.003000,0.249982,0,0);-webkit-transform:matrix(0.150219,-0.001803,0.003000,0.249982,0,0);}
.m60_c00385{transform:matrix(0.158650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158650,0.000000,0.000000,0.250000,0,0);}
.m5_c00385{transform:matrix(0.159509,-0.001914,0.003000,0.249982,0,0);-ms-transform:matrix(0.159509,-0.001914,0.003000,0.249982,0,0);-webkit-transform:matrix(0.159509,-0.001914,0.003000,0.249982,0,0);}
.m67_c00385{transform:matrix(0.164805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164805,0.000000,0.000000,0.250000,0,0);}
.md_c00385{transform:matrix(0.167338,-0.002008,0.003000,0.249982,0,0);-ms-transform:matrix(0.167338,-0.002008,0.003000,0.249982,0,0);-webkit-transform:matrix(0.167338,-0.002008,0.003000,0.249982,0,0);}
.m61_c00385{transform:matrix(0.169335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169335,0.000000,0.000000,0.250000,0,0);}
.m1e_c00385{transform:matrix(0.179557,-0.002155,0.003000,0.249982,0,0);-ms-transform:matrix(0.179557,-0.002155,0.003000,0.249982,0,0);-webkit-transform:matrix(0.179557,-0.002155,0.003000,0.249982,0,0);}
.m5f_c00385{transform:matrix(0.182405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182405,0.000000,0.000000,0.250000,0,0);}
.m5b_c00385{transform:matrix(0.186090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186090,0.000000,0.000000,0.250000,0,0);}
.m63_c00385{transform:matrix(0.189030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189030,0.000000,0.000000,0.250000,0,0);}
.m3_c00385{transform:matrix(0.192841,-0.002314,0.003000,0.249982,0,0);-ms-transform:matrix(0.192841,-0.002314,0.003000,0.249982,0,0);-webkit-transform:matrix(0.192841,-0.002314,0.003000,0.249982,0,0);}
.m4_c00385{transform:matrix(0.194421,-0.002333,0.003000,0.249982,0,0);-ms-transform:matrix(0.194421,-0.002333,0.003000,0.249982,0,0);-webkit-transform:matrix(0.194421,-0.002333,0.003000,0.249982,0,0);}
.m0_c00385{transform:matrix(0.195771,-0.002349,0.003000,0.249982,0,0);-ms-transform:matrix(0.195771,-0.002349,0.003000,0.249982,0,0);-webkit-transform:matrix(0.195771,-0.002349,0.003000,0.249982,0,0);}
.m6_c00385{transform:matrix(0.196066,-0.002353,0.003000,0.249982,0,0);-ms-transform:matrix(0.196066,-0.002353,0.003000,0.249982,0,0);-webkit-transform:matrix(0.196066,-0.002353,0.003000,0.249982,0,0);}
.m3b_c00385{transform:matrix(0.196111,-0.002353,0.003000,0.249982,0,0);-ms-transform:matrix(0.196111,-0.002353,0.003000,0.249982,0,0);-webkit-transform:matrix(0.196111,-0.002353,0.003000,0.249982,0,0);}
.m2_c00385{transform:matrix(0.197881,-0.002375,0.003000,0.249982,0,0);-ms-transform:matrix(0.197881,-0.002375,0.003000,0.249982,0,0);-webkit-transform:matrix(0.197881,-0.002375,0.003000,0.249982,0,0);}
.m1f_c00385{transform:matrix(0.198626,-0.002384,0.003000,0.249982,0,0);-ms-transform:matrix(0.198626,-0.002384,0.003000,0.249982,0,0);-webkit-transform:matrix(0.198626,-0.002384,0.003000,0.249982,0,0);}
.m23_c00385{transform:matrix(0.198811,-0.002386,0.003000,0.249982,0,0);-ms-transform:matrix(0.198811,-0.002386,0.003000,0.249982,0,0);-webkit-transform:matrix(0.198811,-0.002386,0.003000,0.249982,0,0);}
.m32_c00385{transform:matrix(0.200461,-0.002406,0.003000,0.249982,0,0);-ms-transform:matrix(0.200461,-0.002406,0.003000,0.249982,0,0);-webkit-transform:matrix(0.200461,-0.002406,0.003000,0.249982,0,0);}
.m1_c00385{transform:matrix(0.200641,-0.002408,0.003000,0.249982,0,0);-ms-transform:matrix(0.200641,-0.002408,0.003000,0.249982,0,0);-webkit-transform:matrix(0.200641,-0.002408,0.003000,0.249982,0,0);}
.ma_c00385{transform:matrix(0.200711,-0.002409,0.003000,0.249982,0,0);-ms-transform:matrix(0.200711,-0.002409,0.003000,0.249982,0,0);-webkit-transform:matrix(0.200711,-0.002409,0.003000,0.249982,0,0);}
.m62_c00385{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m59_c00385{transform:matrix(0.203325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203325,0.000000,0.000000,0.250000,0,0);}
.m2b_c00385{transform:matrix(0.204695,-0.002456,0.003000,0.249982,0,0);-ms-transform:matrix(0.204695,-0.002456,0.003000,0.249982,0,0);-webkit-transform:matrix(0.204695,-0.002456,0.003000,0.249982,0,0);}
.m5c_c00385{transform:matrix(0.204890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204890,0.000000,0.000000,0.250000,0,0);}
.m35_c00385{transform:matrix(0.207105,-0.002485,0.003000,0.249982,0,0);-ms-transform:matrix(0.207105,-0.002485,0.003000,0.249982,0,0);-webkit-transform:matrix(0.207105,-0.002485,0.003000,0.249982,0,0);}
.m5e_c00385{transform:matrix(0.207220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207220,0.000000,0.000000,0.250000,0,0);}
.mb_c00385{transform:matrix(0.209880,-0.002519,0.003000,0.249982,0,0);-ms-transform:matrix(0.209880,-0.002519,0.003000,0.249982,0,0);-webkit-transform:matrix(0.209880,-0.002519,0.003000,0.249982,0,0);}
.m43_c00385{transform:matrix(0.211880,-0.002543,0.003000,0.249982,0,0);-ms-transform:matrix(0.211880,-0.002543,0.003000,0.249982,0,0);-webkit-transform:matrix(0.211880,-0.002543,0.003000,0.249982,0,0);}
.m3a_c00385{transform:matrix(0.212895,-0.002555,0.003000,0.249982,0,0);-ms-transform:matrix(0.212895,-0.002555,0.003000,0.249982,0,0);-webkit-transform:matrix(0.212895,-0.002555,0.003000,0.249982,0,0);}
.m5a_c00385{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m48_c00385{transform:matrix(0.214400,-0.002573,0.003000,0.249982,0,0);-ms-transform:matrix(0.214400,-0.002573,0.003000,0.249982,0,0);-webkit-transform:matrix(0.214400,-0.002573,0.003000,0.249982,0,0);}
.m3c_c00385{transform:matrix(0.215180,-0.002582,0.003000,0.249982,0,0);-ms-transform:matrix(0.215180,-0.002582,0.003000,0.249982,0,0);-webkit-transform:matrix(0.215180,-0.002582,0.003000,0.249982,0,0);}
.m4a_c00385{transform:matrix(0.217574,-0.002611,0.003000,0.249982,0,0);-ms-transform:matrix(0.217574,-0.002611,0.003000,0.249982,0,0);-webkit-transform:matrix(0.217574,-0.002611,0.003000,0.249982,0,0);}
.m20_c00385{transform:matrix(0.217844,-0.002614,0.003000,0.249982,0,0);-ms-transform:matrix(0.217844,-0.002614,0.003000,0.249982,0,0);-webkit-transform:matrix(0.217844,-0.002614,0.003000,0.249982,0,0);}
.m45_c00385{transform:matrix(0.220194,-0.002642,0.003000,0.249982,0,0);-ms-transform:matrix(0.220194,-0.002642,0.003000,0.249982,0,0);-webkit-transform:matrix(0.220194,-0.002642,0.003000,0.249982,0,0);}
.m21_c00385{transform:matrix(0.221674,-0.002660,0.003000,0.249982,0,0);-ms-transform:matrix(0.221674,-0.002660,0.003000,0.249982,0,0);-webkit-transform:matrix(0.221674,-0.002660,0.003000,0.249982,0,0);}
.mc_c00385{transform:matrix(0.222134,-0.002666,0.003000,0.249982,0,0);-ms-transform:matrix(0.222134,-0.002666,0.003000,0.249982,0,0);-webkit-transform:matrix(0.222134,-0.002666,0.003000,0.249982,0,0);}
.m54_c00385{transform:matrix(0.223215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223215,0.000000,0.000000,0.250000,0,0);}
.m9_c00385{transform:matrix(0.224219,-0.002691,0.003000,0.249982,0,0);-ms-transform:matrix(0.224219,-0.002691,0.003000,0.249982,0,0);-webkit-transform:matrix(0.224219,-0.002691,0.003000,0.249982,0,0);}
.m6a_c00385{transform:matrix(0.225325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225325,0.000000,0.000000,0.250000,0,0);}
.m4b_c00385{transform:matrix(0.225709,-0.002709,0.003000,0.249982,0,0);-ms-transform:matrix(0.225709,-0.002709,0.003000,0.249982,0,0);-webkit-transform:matrix(0.225709,-0.002709,0.003000,0.249982,0,0);}
.m1c_c00385{transform:matrix(0.227639,-0.002732,0.003000,0.249982,0,0);-ms-transform:matrix(0.227639,-0.002732,0.003000,0.249982,0,0);-webkit-transform:matrix(0.227639,-0.002732,0.003000,0.249982,0,0);}
.m8_c00385{transform:matrix(0.229933,-0.002759,0.003000,0.249982,0,0);-ms-transform:matrix(0.229933,-0.002759,0.003000,0.249982,0,0);-webkit-transform:matrix(0.229933,-0.002759,0.003000,0.249982,0,0);}
.m38_c00385{transform:matrix(0.230048,-0.002761,0.003000,0.249982,0,0);-ms-transform:matrix(0.230048,-0.002761,0.003000,0.249982,0,0);-webkit-transform:matrix(0.230048,-0.002761,0.003000,0.249982,0,0);}
.m5d_c00385{transform:matrix(0.230875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230875,0.000000,0.000000,0.250000,0,0);}
.m11_c00385{transform:matrix(0.231928,-0.002783,0.003000,0.249982,0,0);-ms-transform:matrix(0.231928,-0.002783,0.003000,0.249982,0,0);-webkit-transform:matrix(0.231928,-0.002783,0.003000,0.249982,0,0);}
.m26_c00385{transform:matrix(0.233058,-0.002797,0.003000,0.249982,0,0);-ms-transform:matrix(0.233058,-0.002797,0.003000,0.249982,0,0);-webkit-transform:matrix(0.233058,-0.002797,0.003000,0.249982,0,0);}
.mf_c00385{transform:matrix(0.233788,-0.002805,0.003000,0.249982,0,0);-ms-transform:matrix(0.233788,-0.002805,0.003000,0.249982,0,0);-webkit-transform:matrix(0.233788,-0.002805,0.003000,0.249982,0,0);}
.m34_c00385{transform:matrix(0.234183,-0.002810,0.003000,0.249982,0,0);-ms-transform:matrix(0.234183,-0.002810,0.003000,0.249982,0,0);-webkit-transform:matrix(0.234183,-0.002810,0.003000,0.249982,0,0);}
.m36_c00385{transform:matrix(0.235493,-0.002826,0.003000,0.249982,0,0);-ms-transform:matrix(0.235493,-0.002826,0.003000,0.249982,0,0);-webkit-transform:matrix(0.235493,-0.002826,0.003000,0.249982,0,0);}
.m53_c00385{transform:matrix(0.237055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237055,0.000000,0.000000,0.250000,0,0);}
.m24_c00385{transform:matrix(0.237593,-0.002851,0.003000,0.249982,0,0);-ms-transform:matrix(0.237593,-0.002851,0.003000,0.249982,0,0);-webkit-transform:matrix(0.237593,-0.002851,0.003000,0.249982,0,0);}
.m49_c00385{transform:matrix(0.241778,-0.002901,0.003000,0.249982,0,0);-ms-transform:matrix(0.241778,-0.002901,0.003000,0.249982,0,0);-webkit-transform:matrix(0.241778,-0.002901,0.003000,0.249982,0,0);}
.m17_c00385{transform:matrix(0.241918,-0.002903,0.003000,0.249982,0,0);-ms-transform:matrix(0.241918,-0.002903,0.003000,0.249982,0,0);-webkit-transform:matrix(0.241918,-0.002903,0.003000,0.249982,0,0);}
.m1d_c00385{transform:matrix(0.242383,-0.002909,0.003000,0.249982,0,0);-ms-transform:matrix(0.242383,-0.002909,0.003000,0.249982,0,0);-webkit-transform:matrix(0.242383,-0.002909,0.003000,0.249982,0,0);}
.m39_c00385{transform:matrix(0.242588,-0.002911,0.003000,0.249982,0,0);-ms-transform:matrix(0.242588,-0.002911,0.003000,0.249982,0,0);-webkit-transform:matrix(0.242588,-0.002911,0.003000,0.249982,0,0);}
.m55_c00385{transform:matrix(0.242940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242940,0.000000,0.000000,0.250000,0,0);}
.m14_c00385{transform:matrix(0.243642,-0.002924,0.003000,0.249982,0,0);-ms-transform:matrix(0.243642,-0.002924,0.003000,0.249982,0,0);-webkit-transform:matrix(0.243642,-0.002924,0.003000,0.249982,0,0);}
.m37_c00385{transform:matrix(0.245877,-0.002951,0.003000,0.249982,0,0);-ms-transform:matrix(0.245877,-0.002951,0.003000,0.249982,0,0);-webkit-transform:matrix(0.245877,-0.002951,0.003000,0.249982,0,0);}
.m12_c00385{transform:matrix(0.253177,-0.003038,0.003000,0.249982,0,0);-ms-transform:matrix(0.253177,-0.003038,0.003000,0.249982,0,0);-webkit-transform:matrix(0.253177,-0.003038,0.003000,0.249982,0,0);}
.m2e_c00385{transform:matrix(0.255732,-0.003069,0.003000,0.249982,0,0);-ms-transform:matrix(0.255732,-0.003069,0.003000,0.249982,0,0);-webkit-transform:matrix(0.255732,-0.003069,0.003000,0.249982,0,0);}
.m64_c00385{transform:matrix(0.259015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259015,0.000000,0.000000,0.250000,0,0);}
.m16_c00385{transform:matrix(0.259446,-0.003113,0.003000,0.249982,0,0);-ms-transform:matrix(0.259446,-0.003113,0.003000,0.249982,0,0);-webkit-transform:matrix(0.259446,-0.003113,0.003000,0.249982,0,0);}
.m2a_c00385{transform:matrix(0.259706,-0.003116,0.003000,0.249982,0,0);-ms-transform:matrix(0.259706,-0.003116,0.003000,0.249982,0,0);-webkit-transform:matrix(0.259706,-0.003116,0.003000,0.249982,0,0);}
.m27_c00385{transform:matrix(0.261946,-0.003143,0.003000,0.249982,0,0);-ms-transform:matrix(0.261946,-0.003143,0.003000,0.249982,0,0);-webkit-transform:matrix(0.261946,-0.003143,0.003000,0.249982,0,0);}
.m7_c00385{transform:matrix(0.263556,-0.003163,0.003000,0.249982,0,0);-ms-transform:matrix(0.263556,-0.003163,0.003000,0.249982,0,0);-webkit-transform:matrix(0.263556,-0.003163,0.003000,0.249982,0,0);}
.m52_c00385{transform:matrix(0.264530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264530,0.000000,0.000000,0.250000,0,0);}
.m28_c00385{transform:matrix(0.266791,-0.003201,0.003000,0.249982,0,0);-ms-transform:matrix(0.266791,-0.003201,0.003000,0.249982,0,0);-webkit-transform:matrix(0.266791,-0.003201,0.003000,0.249982,0,0);}
.m29_c00385{transform:matrix(0.267386,-0.003209,0.003000,0.249982,0,0);-ms-transform:matrix(0.267386,-0.003209,0.003000,0.249982,0,0);-webkit-transform:matrix(0.267386,-0.003209,0.003000,0.249982,0,0);}
.m46_c00385{transform:matrix(0.269666,-0.003236,0.003000,0.249982,0,0);-ms-transform:matrix(0.269666,-0.003236,0.003000,0.249982,0,0);-webkit-transform:matrix(0.269666,-0.003236,0.003000,0.249982,0,0);}
.m15_c00385{transform:matrix(0.270975,-0.003252,0.003000,0.249982,0,0);-ms-transform:matrix(0.270975,-0.003252,0.003000,0.249982,0,0);-webkit-transform:matrix(0.270975,-0.003252,0.003000,0.249982,0,0);}
.m1b_c00385{transform:matrix(0.271550,-0.003259,0.003000,0.249982,0,0);-ms-transform:matrix(0.271550,-0.003259,0.003000,0.249982,0,0);-webkit-transform:matrix(0.271550,-0.003259,0.003000,0.249982,0,0);}
.m1a_c00385{transform:matrix(0.272935,-0.003275,0.003000,0.249982,0,0);-ms-transform:matrix(0.272935,-0.003275,0.003000,0.249982,0,0);-webkit-transform:matrix(0.272935,-0.003275,0.003000,0.249982,0,0);}
.m65_c00385{transform:matrix(0.273280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273280,0.000000,0.000000,0.250000,0,0);}
.m13_c00385{transform:matrix(0.273710,-0.003285,0.003000,0.249982,0,0);-ms-transform:matrix(0.273710,-0.003285,0.003000,0.249982,0,0);-webkit-transform:matrix(0.273710,-0.003285,0.003000,0.249982,0,0);}
.m66_c00385{transform:matrix(0.274885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274885,0.000000,0.000000,0.250000,0,0);}
.m22_c00385{transform:matrix(0.276110,-0.003313,0.003000,0.249982,0,0);-ms-transform:matrix(0.276110,-0.003313,0.003000,0.249982,0,0);-webkit-transform:matrix(0.276110,-0.003313,0.003000,0.249982,0,0);}
.m31_c00385{transform:matrix(0.280625,-0.003367,0.003000,0.249982,0,0);-ms-transform:matrix(0.280625,-0.003367,0.003000,0.249982,0,0);-webkit-transform:matrix(0.280625,-0.003367,0.003000,0.249982,0,0);}
.m2f_c00385{transform:matrix(0.280980,-0.003372,0.003000,0.249982,0,0);-ms-transform:matrix(0.280980,-0.003372,0.003000,0.249982,0,0);-webkit-transform:matrix(0.280980,-0.003372,0.003000,0.249982,0,0);}
.m2c_c00385{transform:matrix(0.281005,-0.003372,0.003000,0.249982,0,0);-ms-transform:matrix(0.281005,-0.003372,0.003000,0.249982,0,0);-webkit-transform:matrix(0.281005,-0.003372,0.003000,0.249982,0,0);}
.m56_c00385{transform:matrix(0.281010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281010,0.000000,0.000000,0.250000,0,0);}
.m3d_c00385{transform:matrix(0.282335,-0.003388,0.003000,0.249982,0,0);-ms-transform:matrix(0.282335,-0.003388,0.003000,0.249982,0,0);-webkit-transform:matrix(0.282335,-0.003388,0.003000,0.249982,0,0);}
.m33_c00385{transform:matrix(0.288119,-0.003457,0.003000,0.249982,0,0);-ms-transform:matrix(0.288119,-0.003457,0.003000,0.249982,0,0);-webkit-transform:matrix(0.288119,-0.003457,0.003000,0.249982,0,0);}
.m44_c00385{transform:matrix(0.289969,-0.003480,0.003000,0.249982,0,0);-ms-transform:matrix(0.289969,-0.003480,0.003000,0.249982,0,0);-webkit-transform:matrix(0.289969,-0.003480,0.003000,0.249982,0,0);}
.m47_c00385{transform:matrix(0.296634,-0.003560,0.003000,0.249982,0,0);-ms-transform:matrix(0.296634,-0.003560,0.003000,0.249982,0,0);-webkit-transform:matrix(0.296634,-0.003560,0.003000,0.249982,0,0);}
.m19_c00385{transform:matrix(0.299118,-0.003589,0.003000,0.249982,0,0);-ms-transform:matrix(0.299118,-0.003589,0.003000,0.249982,0,0);-webkit-transform:matrix(0.299118,-0.003589,0.003000,0.249982,0,0);}
.m4d_c00385{transform:matrix(0.308423,-0.003701,0.003000,0.249982,0,0);-ms-transform:matrix(0.308423,-0.003701,0.003000,0.249982,0,0);-webkit-transform:matrix(0.308423,-0.003701,0.003000,0.249982,0,0);}
.m41_c00385{transform:matrix(0.310988,-0.003732,0.003000,0.249982,0,0);-ms-transform:matrix(0.310988,-0.003732,0.003000,0.249982,0,0);-webkit-transform:matrix(0.310988,-0.003732,0.003000,0.249982,0,0);}
.m3e_c00385{transform:matrix(0.316287,-0.003795,0.003000,0.249982,0,0);-ms-transform:matrix(0.316287,-0.003795,0.003000,0.249982,0,0);-webkit-transform:matrix(0.316287,-0.003795,0.003000,0.249982,0,0);}
.m58_c00385{transform:matrix(0.324640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324640,0.000000,0.000000,0.250000,0,0);}
.m2d_c00385{transform:matrix(0.335806,-0.004030,0.003000,0.249982,0,0);-ms-transform:matrix(0.335806,-0.004030,0.003000,0.249982,0,0);-webkit-transform:matrix(0.335806,-0.004030,0.003000,0.249982,0,0);}
.m42_c00385{transform:matrix(0.342020,-0.004104,0.003000,0.249982,0,0);-ms-transform:matrix(0.342020,-0.004104,0.003000,0.249982,0,0);-webkit-transform:matrix(0.342020,-0.004104,0.003000,0.249982,0,0);}
.m30_c00385{transform:matrix(0.365524,-0.004386,0.003000,0.249982,0,0);-ms-transform:matrix(0.365524,-0.004386,0.003000,0.249982,0,0);-webkit-transform:matrix(0.365524,-0.004386,0.003000,0.249982,0,0);}
.m25_c00385{transform:matrix(0.367514,-0.004410,0.003000,0.249982,0,0);-ms-transform:matrix(0.367514,-0.004410,0.003000,0.249982,0,0);-webkit-transform:matrix(0.367514,-0.004410,0.003000,0.249982,0,0);}
.m18_c00385{transform:matrix(0.383302,-0.004600,0.003000,0.249982,0,0);-ms-transform:matrix(0.383302,-0.004600,0.003000,0.249982,0,0);-webkit-transform:matrix(0.383302,-0.004600,0.003000,0.249982,0,0);}
.m4e_c00385{transform:matrix(0.419240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419240,0.000000,0.000000,0.250000,0,0);}
.m4c_c00385{transform:matrix(0.491065,-0.005893,0.003000,0.249982,0,0);-ms-transform:matrix(0.491065,-0.005893,0.003000,0.249982,0,0);-webkit-transform:matrix(0.491065,-0.005893,0.003000,0.249982,0,0);}
.m3f_c00385{transform:matrix(0.520358,-0.006244,0.003000,0.249982,0,0);-ms-transform:matrix(0.520358,-0.006244,0.003000,0.249982,0,0);-webkit-transform:matrix(0.520358,-0.006244,0.003000,0.249982,0,0);}
.m6b_c00385{transform:matrix(0.661035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.661035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.661035,0.000000,0.000000,0.250000,0,0);}
.m57_c00385{transform:matrix(0.670230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.670230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.670230,0.000000,0.000000,0.250000,0,0);}
.m6c_c00385{transform:matrix(1.189520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.189520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.189520,0.000000,0.000000,0.250000,0,0);}
.m4f_c00385{transform:matrix(1.308250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.308250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.308250,0.000000,0.000000,0.250000,0,0);}
.v0_c00385{vertical-align:0.000000px;}
.ls0_c00385{letter-spacing:0.000000px;}
.sc__c00385{text-shadow:none;}
.sc0_c00385{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__c00385{-webkit-text-stroke:0px transparent;}
.sc0_c00385{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00385{word-spacing:0.000000px;}
.fc0_c00385{color:transparent;}
.fs2_c00385{font-size:72.005184px;}
.fs3_c00385{font-size:78.005616px;}
.fs4_c00385{font-size:84.000000px;}
.fs1_c00385{font-size:84.006048px;}
.fs5_c00385{font-size:96.000000px;}
.fs6_c00385{font-size:102.000000px;}
.fs0_c00385{font-size:108.007776px;}
.fs7_c00385{font-size:120.000000px;}
.fs8_c00385{font-size:246.000000px;}
.y0_c00385{bottom:0.000000px;}
.y53_c00385{bottom:786.240000px;}
.y52_c00385{bottom:812.448000px;}
.y51_c00385{bottom:830.430000px;}
.y50_c00385{bottom:866.787000px;}
.y4f_c00385{bottom:901.098000px;}
.y40_c00385{bottom:934.995180px;}
.y41_c00385{bottom:935.155782px;}
.y42_c00385{bottom:935.275410px;}
.y43_c00385{bottom:935.561970px;}
.y44_c00385{bottom:935.895498px;}
.y45_c00385{bottom:936.062220px;}
.y46_c00385{bottom:936.464646px;}
.y47_c00385{bottom:936.621468px;}
.y48_c00385{bottom:937.004226px;}
.y49_c00385{bottom:937.285092px;}
.y4a_c00385{bottom:937.447338px;}
.y4b_c00385{bottom:937.792242px;}
.y4c_c00385{bottom:937.965954px;}
.y4d_c00385{bottom:938.281902px;}
.y4e_c00385{bottom:938.652648px;}
.y32_c00385{bottom:967.044036px;}
.y33_c00385{bottom:968.459700px;}
.y34_c00385{bottom:969.085524px;}
.y35_c00385{bottom:969.412386px;}
.y36_c00385{bottom:969.765294px;}
.y37_c00385{bottom:970.290876px;}
.y38_c00385{bottom:970.932630px;}
.y39_c00385{bottom:971.457312px;}
.y3a_c00385{bottom:972.131772px;}
.y3b_c00385{bottom:972.649704px;}
.y3c_c00385{bottom:973.731162px;}
.y3d_c00385{bottom:974.126964px;}
.y3e_c00385{bottom:974.519328px;}
.y3f_c00385{bottom:974.827614px;}
.y26_c00385{bottom:1005.892194px;}
.y27_c00385{bottom:1006.464540px;}
.y28_c00385{bottom:1006.634388px;}
.y29_c00385{bottom:1007.017800px;}
.y2a_c00385{bottom:1007.236734px;}
.y2b_c00385{bottom:1007.404782px;}
.y2c_c00385{bottom:1007.954838px;}
.y2d_c00385{bottom:1008.116154px;}
.y2e_c00385{bottom:1008.615360px;}
.y2f_c00385{bottom:1008.834384px;}
.y30_c00385{bottom:1009.024350px;}
.y31_c00385{bottom:1009.371552px;}
.y1c_c00385{bottom:1039.753242px;}
.y1d_c00385{bottom:1040.178246px;}
.y1e_c00385{bottom:1041.749850px;}
.y1f_c00385{bottom:1042.360530px;}
.y20_c00385{bottom:1042.610532px;}
.y21_c00385{bottom:1042.850490px;}
.y22_c00385{bottom:1043.569920px;}
.y23_c00385{bottom:1044.864696px;}
.y24_c00385{bottom:1045.377798px;}
.y25_c00385{bottom:1045.765038px;}
.yf_c00385{bottom:1073.523480px;}
.y10_c00385{bottom:1074.900654px;}
.y11_c00385{bottom:1075.837044px;}
.y12_c00385{bottom:1076.310408px;}
.y13_c00385{bottom:1077.165246px;}
.y14_c00385{bottom:1078.144230px;}
.y15_c00385{bottom:1078.717716px;}
.y16_c00385{bottom:1079.288136px;}
.y17_c00385{bottom:1080.283494px;}
.y18_c00385{bottom:1080.714048px;}
.y19_c00385{bottom:1082.083044px;}
.y1a_c00385{bottom:1082.891616px;}
.y1b_c00385{bottom:1083.512052px;}
.y1_c00385{bottom:1110.243000px;}
.y2_c00385{bottom:1111.034172px;}
.y3_c00385{bottom:1111.892124px;}
.y4_c00385{bottom:1112.455992px;}
.y5_c00385{bottom:1113.677976px;}
.y6_c00385{bottom:1114.085028px;}
.y7_c00385{bottom:1114.480974px;}
.y8_c00385{bottom:1115.287986px;}
.y9_c00385{bottom:1115.803884px;}
.ya_c00385{bottom:1116.457392px;}
.yb_c00385{bottom:1116.700680px;}
.yc_c00385{bottom:1117.774362px;}
.yd_c00385{bottom:1118.655300px;}
.ye_c00385{bottom:1119.088650px;}
.h4_c00385{height:72.005184px;}
.h5_c00385{height:78.005616px;}
.h6_c00385{height:84.000000px;}
.h3_c00385{height:84.006048px;}
.h7_c00385{height:96.000000px;}
.h8_c00385{height:102.000000px;}
.h2_c00385{height:108.007776px;}
.h9_c00385{height:120.000000px;}
.ha_c00385{height:246.000000px;}
.h1_c00385{height:1251.000000px;}
.h0_c00385{height:1251.150000px;}
.w0_c00385{width:915.000000px;}
.x0_c00385{left:0.000000px;}
.xe_c00385{left:1.232712px;}
.x24_c00385{left:32.233134px;}
.x43_c00385{left:43.740000px;}
.x1b_c00385{left:52.583790px;}
.x3a_c00385{left:55.976832px;}
.x1_c00385{left:66.183000px;}
.x1c_c00385{left:91.251258px;}
.xf_c00385{left:99.619854px;}
.x3b_c00385{left:113.236638px;}
.x2_c00385{left:137.679000px;}
.x25_c00385{left:146.688246px;}
.x10_c00385{left:166.525752px;}
.x48_c00385{left:173.880000px;}
.x26_c00385{left:180.720108px;}
.x57_c00385{left:182.250000px;}
.x3_c00385{left:184.668000px;}
.x11_c00385{left:200.346942px;}
.x3c_c00385{left:213.182526px;}
.x44_c00385{left:217.620000px;}
.x49_c00385{left:227.070000px;}
.x1d_c00385{left:234.094968px;}
.x2f_c00385{left:236.231622px;}
.x27_c00385{left:257.427552px;}
.x12_c00385{left:261.456984px;}
.x30_c00385{left:263.470122px;}
.x4_c00385{left:286.500000px;}
.x1e_c00385{left:289.610634px;}
.x31_c00385{left:292.879122px;}
.x28_c00385{left:301.175724px;}
.x50_c00385{left:308.610000px;}
.x1f_c00385{left:312.319404px;}
.x4a_c00385{left:314.280000px;}
.x5_c00385{left:320.421000px;}
.x3d_c00385{left:324.920904px;}
.x13_c00385{left:331.412310px;}
.x20_c00385{left:334.191174px;}
.x32_c00385{left:336.677622px;}
.x6_c00385{left:353.416500px;}
.x51_c00385{left:361.260000px;}
.x58_c00385{left:370.710000px;}
.x14_c00385{left:372.326820px;}
.x33_c00385{left:390.157122px;}
.x4b_c00385{left:393.120000px;}
.x21_c00385{left:399.644466px;}
.x3e_c00385{left:401.323812px;}
.x52_c00385{left:403.110000px;}
.x15_c00385{left:413.110848px;}
.x7_c00385{left:420.667500px;}
.x59_c00385{left:429.570000px;}
.x34_c00385{left:433.880622px;}
.x4c_c00385{left:442.800000px;}
.x29_c00385{left:444.779784px;}
.x3f_c00385{left:457.484028px;}
.x45_c00385{left:459.810000px;}
.x8_c00385{left:463.659000px;}
.x53_c00385{left:474.120000px;}
.x2a_c00385{left:476.975484px;}
.x4d_c00385{left:479.790000px;}
.x16_c00385{left:484.180638px;}
.x35_c00385{left:490.085622px;}
.x46_c00385{left:513.540000px;}
.x17_c00385{left:514.934400px;}
.x9_c00385{left:518.118000px;}
.x4e_c00385{left:524.610000px;}
.x36_c00385{left:533.246622px;}
.xa_c00385{left:538.392000px;}
.x40_c00385{left:559.005060px;}
.x22_c00385{left:563.927928px;}
.x2b_c00385{left:576.834372px;}
.x54_c00385{left:586.980000px;}
.x41_c00385{left:593.858994px;}
.x23_c00385{left:599.073342px;}
.x18_c00385{left:612.765060px;}
.x2c_c00385{left:620.590044px;}
.x37_c00385{left:623.368122px;}
.x4f_c00385{left:624.780000px;}
.xb_c00385{left:627.865500px;}
.x55_c00385{left:650.700000px;}
.x38_c00385{left:656.351622px;}
.x2d_c00385{left:658.673748px;}
.x47_c00385{left:667.440000px;}
.x19_c00385{left:670.519674px;}
.x39_c00385{left:689.048622px;}
.x56_c00385{left:691.200000px;}
.xc_c00385{left:701.277000px;}
.x1a_c00385{left:714.846612px;}
.x2e_c00385{left:728.113080px;}
.x42_c00385{left:731.095014px;}
.xd_c00385{left:737.389500px;}
@media print{
.v0_c00385{vertical-align:0.000000pt;}
.ls0_c00385{letter-spacing:0.000000pt;}
.ws0_c00385{word-spacing:0.000000pt;}
.fs2_c00385{font-size:64.004608pt;}
.fs3_c00385{font-size:69.338325pt;}
.fs4_c00385{font-size:74.666667pt;}
.fs1_c00385{font-size:74.672042pt;}
.fs5_c00385{font-size:85.333333pt;}
.fs6_c00385{font-size:90.666667pt;}
.fs0_c00385{font-size:96.006912pt;}
.fs7_c00385{font-size:106.666667pt;}
.fs8_c00385{font-size:218.666667pt;}
.y0_c00385{bottom:0.000000pt;}
.y53_c00385{bottom:698.880000pt;}
.y52_c00385{bottom:722.176000pt;}
.y51_c00385{bottom:738.160000pt;}
.y50_c00385{bottom:770.477333pt;}
.y4f_c00385{bottom:800.976000pt;}
.y40_c00385{bottom:831.106827pt;}
.y41_c00385{bottom:831.249584pt;}
.y42_c00385{bottom:831.355920pt;}
.y43_c00385{bottom:831.610640pt;}
.y44_c00385{bottom:831.907109pt;}
.y45_c00385{bottom:832.055307pt;}
.y46_c00385{bottom:832.413019pt;}
.y47_c00385{bottom:832.552416pt;}
.y48_c00385{bottom:832.892645pt;}
.y49_c00385{bottom:833.142304pt;}
.y4a_c00385{bottom:833.286523pt;}
.y4b_c00385{bottom:833.593104pt;}
.y4c_c00385{bottom:833.747515pt;}
.y4d_c00385{bottom:834.028357pt;}
.y4e_c00385{bottom:834.357909pt;}
.y32_c00385{bottom:859.594699pt;}
.y33_c00385{bottom:860.853067pt;}
.y34_c00385{bottom:861.409355pt;}
.y35_c00385{bottom:861.699899pt;}
.y36_c00385{bottom:862.013595pt;}
.y37_c00385{bottom:862.480779pt;}
.y38_c00385{bottom:863.051227pt;}
.y39_c00385{bottom:863.517611pt;}
.y3a_c00385{bottom:864.117131pt;}
.y3b_c00385{bottom:864.577515pt;}
.y3c_c00385{bottom:865.538811pt;}
.y3d_c00385{bottom:865.890635pt;}
.y3e_c00385{bottom:866.239403pt;}
.y3f_c00385{bottom:866.513435pt;}
.y26_c00385{bottom:894.126395pt;}
.y27_c00385{bottom:894.635147pt;}
.y28_c00385{bottom:894.786123pt;}
.y29_c00385{bottom:895.126933pt;}
.y2a_c00385{bottom:895.321541pt;}
.y2b_c00385{bottom:895.470917pt;}
.y2c_c00385{bottom:895.959856pt;}
.y2d_c00385{bottom:896.103248pt;}
.y2e_c00385{bottom:896.546987pt;}
.y2f_c00385{bottom:896.741675pt;}
.y30_c00385{bottom:896.910533pt;}
.y31_c00385{bottom:897.219157pt;}
.y1c_c00385{bottom:924.225104pt;}
.y1d_c00385{bottom:924.602885pt;}
.y1e_c00385{bottom:925.999867pt;}
.y1f_c00385{bottom:926.542693pt;}
.y20_c00385{bottom:926.764917pt;}
.y21_c00385{bottom:926.978213pt;}
.y22_c00385{bottom:927.617707pt;}
.y23_c00385{bottom:928.768619pt;}
.y24_c00385{bottom:929.224709pt;}
.y25_c00385{bottom:929.568923pt;}
.yf_c00385{bottom:954.243093pt;}
.y10_c00385{bottom:955.467248pt;}
.y11_c00385{bottom:956.299595pt;}
.y12_c00385{bottom:956.720363pt;}
.y13_c00385{bottom:957.480219pt;}
.y14_c00385{bottom:958.350427pt;}
.y15_c00385{bottom:958.860192pt;}
.y16_c00385{bottom:959.367232pt;}
.y17_c00385{bottom:960.251995pt;}
.y18_c00385{bottom:960.634709pt;}
.y19_c00385{bottom:961.851595pt;}
.y1a_c00385{bottom:962.570325pt;}
.y1b_c00385{bottom:963.121824pt;}
.y1_c00385{bottom:986.882667pt;}
.y2_c00385{bottom:987.585931pt;}
.y3_c00385{bottom:988.348555pt;}
.y4_c00385{bottom:988.849771pt;}
.y5_c00385{bottom:989.935979pt;}
.y6_c00385{bottom:990.297803pt;}
.y7_c00385{bottom:990.649755pt;}
.y8_c00385{bottom:991.367099pt;}
.y9_c00385{bottom:991.825675pt;}
.ya_c00385{bottom:992.406571pt;}
.yb_c00385{bottom:992.622827pt;}
.yc_c00385{bottom:993.577211pt;}
.yd_c00385{bottom:994.360267pt;}
.ye_c00385{bottom:994.745467pt;}
.h4_c00385{height:64.004608pt;}
.h5_c00385{height:69.338325pt;}
.h6_c00385{height:74.666667pt;}
.h3_c00385{height:74.672042pt;}
.h7_c00385{height:85.333333pt;}
.h8_c00385{height:90.666667pt;}
.h2_c00385{height:96.006912pt;}
.h9_c00385{height:106.666667pt;}
.ha_c00385{height:218.666667pt;}
.h1_c00385{height:1112.000000pt;}
.h0_c00385{height:1112.133333pt;}
.w0_c00385{width:813.333333pt;}
.x0_c00385{left:0.000000pt;}
.xe_c00385{left:1.095744pt;}
.x24_c00385{left:28.651675pt;}
.x43_c00385{left:38.880000pt;}
.x1b_c00385{left:46.741147pt;}
.x3a_c00385{left:49.757184pt;}
.x1_c00385{left:58.829333pt;}
.x1c_c00385{left:81.112229pt;}
.xf_c00385{left:88.550981pt;}
.x3b_c00385{left:100.654789pt;}
.x2_c00385{left:122.381333pt;}
.x25_c00385{left:130.389552pt;}
.x10_c00385{left:148.022891pt;}
.x48_c00385{left:154.560000pt;}
.x26_c00385{left:160.640096pt;}
.x57_c00385{left:162.000000pt;}
.x3_c00385{left:164.149333pt;}
.x11_c00385{left:178.086171pt;}
.x3c_c00385{left:189.495579pt;}
.x44_c00385{left:193.440000pt;}
.x49_c00385{left:201.840000pt;}
.x1d_c00385{left:208.084416pt;}
.x2f_c00385{left:209.983664pt;}
.x27_c00385{left:228.824491pt;}
.x12_c00385{left:232.406208pt;}
.x30_c00385{left:234.195664pt;}
.x4_c00385{left:254.666667pt;}
.x1e_c00385{left:257.431675pt;}
.x31_c00385{left:260.336997pt;}
.x28_c00385{left:267.711755pt;}
.x50_c00385{left:274.320000pt;}
.x1f_c00385{left:277.617248pt;}
.x4a_c00385{left:279.360000pt;}
.x5_c00385{left:284.818667pt;}
.x3d_c00385{left:288.818581pt;}
.x13_c00385{left:294.588720pt;}
.x20_c00385{left:297.058821pt;}
.x32_c00385{left:299.268997pt;}
.x6_c00385{left:314.148000pt;}
.x51_c00385{left:321.120000pt;}
.x58_c00385{left:329.520000pt;}
.x14_c00385{left:330.957173pt;}
.x33_c00385{left:346.806331pt;}
.x4b_c00385{left:349.440000pt;}
.x21_c00385{left:355.239525pt;}
.x3e_c00385{left:356.732277pt;}
.x52_c00385{left:358.320000pt;}
.x15_c00385{left:367.209643pt;}
.x7_c00385{left:373.926667pt;}
.x59_c00385{left:381.840000pt;}
.x34_c00385{left:385.671664pt;}
.x4c_c00385{left:393.600000pt;}
.x29_c00385{left:395.359808pt;}
.x3f_c00385{left:406.652469pt;}
.x45_c00385{left:408.720000pt;}
.x8_c00385{left:412.141333pt;}
.x53_c00385{left:421.440000pt;}
.x2a_c00385{left:423.978208pt;}
.x4d_c00385{left:426.480000pt;}
.x16_c00385{left:430.382789pt;}
.x35_c00385{left:435.631664pt;}
.x46_c00385{left:456.480000pt;}
.x17_c00385{left:457.719467pt;}
.x9_c00385{left:460.549333pt;}
.x4e_c00385{left:466.320000pt;}
.x36_c00385{left:473.996997pt;}
.xa_c00385{left:478.570667pt;}
.x40_c00385{left:496.893387pt;}
.x22_c00385{left:501.269269pt;}
.x2b_c00385{left:512.741664pt;}
.x54_c00385{left:521.760000pt;}
.x41_c00385{left:527.874661pt;}
.x23_c00385{left:532.509637pt;}
.x18_c00385{left:544.680053pt;}
.x2c_c00385{left:551.635595pt;}
.x37_c00385{left:554.104997pt;}
.x4f_c00385{left:555.360000pt;}
.xb_c00385{left:558.102667pt;}
.x55_c00385{left:578.400000pt;}
.x38_c00385{left:583.423664pt;}
.x2d_c00385{left:585.487776pt;}
.x47_c00385{left:593.280000pt;}
.x19_c00385{left:596.017488pt;}
.x39_c00385{left:612.487664pt;}
.x56_c00385{left:614.400000pt;}
.xc_c00385{left:623.357333pt;}
.x1a_c00385{left:635.419211pt;}
.x2e_c00385{left:647.211627pt;}
.x42_c00385{left:649.862235pt;}
.xd_c00385{left:655.457333pt;}
}





/* 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_c00386 {
    display:none;
  }
  .loading-indicator_c00386.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00386 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_c00386 { 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_c00386" -> "#page-container .classname_c00386")
 */
.pf_c00386 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00386 { /* 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_c00386.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00386 { /* 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_c00386 { /* 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_c00386 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00386 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00386 {overflow:visible;}
  }
}
.c_c00386 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00386 { /* 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_c00386:after { /* webkit #35443 */
  content: '';
}
.t_c00386:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00386 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 */
}
.__c00386 { /* 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_c00386 { /* info for Javascript */
  display:none;
}
.l_c00386 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00386 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00386 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00386: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_c00386 {
    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_c00386.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00386.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_c00386 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00386{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00386;src:url('chunks/assets/font_c605e72f209fc835e906f064.woff2')format("woff");}.ff1_c00386{font-family:ff1_c00386;line-height:1.000000;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;}
.mc_c00386{transform:matrix(0.113652,0.000796,-0.001750,0.249994,0,0);-ms-transform:matrix(0.113652,0.000796,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.113652,0.000796,-0.001750,0.249994,0,0);}
.mb_c00386{transform:matrix(0.116687,0.000817,-0.001750,0.249994,0,0);-ms-transform:matrix(0.116687,0.000817,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.116687,0.000817,-0.001750,0.249994,0,0);}
.m31_c00386{transform:matrix(0.125021,0.001000,-0.002000,0.249992,0,0);-ms-transform:matrix(0.125021,0.001000,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.125021,0.001000,-0.002000,0.249992,0,0);}
.m4c_c00386{transform:matrix(0.127352,0.001401,-0.002750,0.249985,0,0);-ms-transform:matrix(0.127352,0.001401,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.127352,0.001401,-0.002750,0.249985,0,0);}
.m18_c00386{transform:matrix(0.130912,0.001440,-0.002750,0.249985,0,0);-ms-transform:matrix(0.130912,0.001440,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.130912,0.001440,-0.002750,0.249985,0,0);}
.m17_c00386{transform:matrix(0.137147,0.001509,-0.002750,0.249985,0,0);-ms-transform:matrix(0.137147,0.001509,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.137147,0.001509,-0.002750,0.249985,0,0);}
.m7b_c00386{transform:matrix(0.139685,0.002654,-0.004749,0.249955,0,0);-ms-transform:matrix(0.139685,0.002654,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.139685,0.002654,-0.004749,0.249955,0,0);}
.ma8_c00386{transform:matrix(0.148477,0.001930,-0.003250,0.249979,0,0);-ms-transform:matrix(0.148477,0.001930,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.148477,0.001930,-0.003250,0.249979,0,0);}
.m4d_c00386{transform:matrix(0.162355,0.001786,-0.002750,0.249985,0,0);-ms-transform:matrix(0.162355,0.001786,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.162355,0.001786,-0.002750,0.249985,0,0);}
.m32_c00386{transform:matrix(0.164045,0.001312,-0.002000,0.249992,0,0);-ms-transform:matrix(0.164045,0.001312,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.164045,0.001312,-0.002000,0.249992,0,0);}
.m11_c00386{transform:matrix(0.167291,0.001171,-0.001750,0.249994,0,0);-ms-transform:matrix(0.167291,0.001171,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.167291,0.001171,-0.001750,0.249994,0,0);}
.m2e_c00386{transform:matrix(0.179464,0.001436,-0.002000,0.249992,0,0);-ms-transform:matrix(0.179464,0.001436,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.179464,0.001436,-0.002000,0.249992,0,0);}
.m64_c00386{transform:matrix(0.180619,0.001445,-0.002000,0.249992,0,0);-ms-transform:matrix(0.180619,0.001445,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.180619,0.001445,-0.002000,0.249992,0,0);}
.m7c_c00386{transform:matrix(0.180647,0.003432,-0.004749,0.249955,0,0);-ms-transform:matrix(0.180647,0.003432,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.180647,0.003432,-0.004749,0.249955,0,0);}
.me6_c00386{transform:matrix(0.181366,0.003265,-0.004499,0.249960,0,0);-ms-transform:matrix(0.181366,0.003265,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.181366,0.003265,-0.004499,0.249960,0,0);}
.mdd_c00386{transform:matrix(0.182120,0.002368,-0.003250,0.249979,0,0);-ms-transform:matrix(0.182120,0.002368,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.182120,0.002368,-0.003250,0.249979,0,0);}
.mf_c00386{transform:matrix(0.183860,0.001287,-0.001750,0.249994,0,0);-ms-transform:matrix(0.183860,0.001287,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.183860,0.001287,-0.001750,0.249994,0,0);}
.me1_c00386{transform:matrix(0.185790,0.003344,-0.004499,0.249960,0,0);-ms-transform:matrix(0.185790,0.003344,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.185790,0.003344,-0.004499,0.249960,0,0);}
.mb6_c00386{transform:matrix(0.186413,0.003169,-0.004249,0.249964,0,0);-ms-transform:matrix(0.186413,0.003169,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.186413,0.003169,-0.004249,0.249964,0,0);}
.m29_c00386{transform:matrix(0.186434,0.001491,-0.002000,0.249992,0,0);-ms-transform:matrix(0.186434,0.001491,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.186434,0.001491,-0.002000,0.249992,0,0);}
.m6b_c00386{transform:matrix(0.187719,0.001502,-0.002000,0.249992,0,0);-ms-transform:matrix(0.187719,0.001502,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.187719,0.001502,-0.002000,0.249992,0,0);}
.m4f_c00386{transform:matrix(0.187744,0.002065,-0.002750,0.249985,0,0);-ms-transform:matrix(0.187744,0.002065,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.187744,0.002065,-0.002750,0.249985,0,0);}
.m2a_c00386{transform:matrix(0.189874,0.001519,-0.002000,0.249992,0,0);-ms-transform:matrix(0.189874,0.001519,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.189874,0.001519,-0.002000,0.249992,0,0);}
.ma9_c00386{transform:matrix(0.190134,0.002472,-0.003250,0.249979,0,0);-ms-transform:matrix(0.190134,0.002472,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.190134,0.002472,-0.003250,0.249979,0,0);}
.m99_c00386{transform:matrix(0.190809,0.002481,-0.003250,0.249979,0,0);-ms-transform:matrix(0.190809,0.002481,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.190809,0.002481,-0.003250,0.249979,0,0);}
.mf9_c00386{transform:matrix(0.190859,0.007069,-0.009253,0.249829,0,0);-ms-transform:matrix(0.190859,0.007069,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.190859,0.007069,-0.009253,0.249829,0,0);}
.md5_c00386{transform:matrix(0.191943,0.004031,-0.005249,0.249945,0,0);-ms-transform:matrix(0.191943,0.004031,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.191943,0.004031,-0.005249,0.249945,0,0);}
.me7_c00386{transform:matrix(0.192589,0.003467,-0.004499,0.249960,0,0);-ms-transform:matrix(0.192589,0.003467,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.192589,0.003467,-0.004499,0.249960,0,0);}
.ma0_c00386{transform:matrix(0.193139,0.002511,-0.003250,0.249979,0,0);-ms-transform:matrix(0.193139,0.002511,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.193139,0.002511,-0.003250,0.249979,0,0);}
.m69_c00386{transform:matrix(0.193544,0.001548,-0.002000,0.249992,0,0);-ms-transform:matrix(0.193544,0.001548,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.193544,0.001548,-0.002000,0.249992,0,0);}
.m34_c00386{transform:matrix(0.193764,0.001550,-0.002000,0.249992,0,0);-ms-transform:matrix(0.193764,0.001550,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.193764,0.001550,-0.002000,0.249992,0,0);}
.m9d_c00386{transform:matrix(0.194334,0.002526,-0.003250,0.249979,0,0);-ms-transform:matrix(0.194334,0.002526,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.194334,0.002526,-0.003250,0.249979,0,0);}
.m52_c00386{transform:matrix(0.194338,0.002138,-0.002750,0.249985,0,0);-ms-transform:matrix(0.194338,0.002138,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.194338,0.002138,-0.002750,0.249985,0,0);}
.m0_c00386{transform:matrix(0.194960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194960,0.000000,0.000000,0.250000,0,0);}
.m74_c00386{transform:matrix(0.195535,0.001955,-0.002500,0.249988,0,0);-ms-transform:matrix(0.195535,0.001955,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.195535,0.001955,-0.002500,0.249988,0,0);}
.m92_c00386{transform:matrix(0.195550,0.003129,-0.003999,0.249968,0,0);-ms-transform:matrix(0.195550,0.003129,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.195550,0.003129,-0.003999,0.249968,0,0);}
.m37_c00386{transform:matrix(0.195854,0.001567,-0.002000,0.249992,0,0);-ms-transform:matrix(0.195854,0.001567,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.195854,0.001567,-0.002000,0.249992,0,0);}
.mba_c00386{transform:matrix(0.196187,0.003335,-0.004249,0.249964,0,0);-ms-transform:matrix(0.196187,0.003335,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.196187,0.003335,-0.004249,0.249964,0,0);}
.m90_c00386{transform:matrix(0.196210,0.003139,-0.003999,0.249968,0,0);-ms-transform:matrix(0.196210,0.003139,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.196210,0.003139,-0.003999,0.249968,0,0);}
.me4_c00386{transform:matrix(0.196333,0.003534,-0.004499,0.249960,0,0);-ms-transform:matrix(0.196333,0.003534,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.196333,0.003534,-0.004499,0.249960,0,0);}
.m76_c00386{transform:matrix(0.197320,0.001973,-0.002500,0.249988,0,0);-ms-transform:matrix(0.197320,0.001973,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.197320,0.001973,-0.002500,0.249988,0,0);}
.m28_c00386{transform:matrix(0.197624,0.001581,-0.002000,0.249992,0,0);-ms-transform:matrix(0.197624,0.001581,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.197624,0.001581,-0.002000,0.249992,0,0);}
.m13_c00386{transform:matrix(0.198085,0.001387,-0.001750,0.249994,0,0);-ms-transform:matrix(0.198085,0.001387,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.198085,0.001387,-0.001750,0.249994,0,0);}
.mb9_c00386{transform:matrix(0.198516,0.003375,-0.004249,0.249964,0,0);-ms-transform:matrix(0.198516,0.003375,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.198516,0.003375,-0.004249,0.249964,0,0);}
.m39_c00386{transform:matrix(0.201369,0.001611,-0.002000,0.249992,0,0);-ms-transform:matrix(0.201369,0.001611,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.201369,0.001611,-0.002000,0.249992,0,0);}
.m72_c00386{transform:matrix(0.202675,0.002027,-0.002500,0.249988,0,0);-ms-transform:matrix(0.202675,0.002027,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.202675,0.002027,-0.002500,0.249988,0,0);}
.m2c_c00386{transform:matrix(0.203074,0.001625,-0.002000,0.249992,0,0);-ms-transform:matrix(0.203074,0.001625,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.203074,0.001625,-0.002000,0.249992,0,0);}
.mda_c00386{transform:matrix(0.203273,0.002643,-0.003250,0.249979,0,0);-ms-transform:matrix(0.203273,0.002643,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.203273,0.002643,-0.003250,0.249979,0,0);}
.m8e_c00386{transform:matrix(0.204099,0.003266,-0.003999,0.249968,0,0);-ms-transform:matrix(0.204099,0.003266,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.204099,0.003266,-0.003999,0.249968,0,0);}
.m35_c00386{transform:matrix(0.205798,0.001646,-0.002000,0.249992,0,0);-ms-transform:matrix(0.205798,0.001646,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.205798,0.001646,-0.002000,0.249992,0,0);}
.m14_c00386{transform:matrix(0.206395,0.001445,-0.001750,0.249994,0,0);-ms-transform:matrix(0.206395,0.001445,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.206395,0.001445,-0.001750,0.249994,0,0);}
.mee_c00386{transform:matrix(0.206634,0.006619,-0.008004,0.249872,0,0);-ms-transform:matrix(0.206634,0.006619,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.206634,0.006619,-0.008004,0.249872,0,0);}
.me0_c00386{transform:matrix(0.207006,0.003726,-0.004499,0.249960,0,0);-ms-transform:matrix(0.207006,0.003726,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.207006,0.003726,-0.004499,0.249960,0,0);}
.ma1_c00386{transform:matrix(0.207222,0.002694,-0.003250,0.249979,0,0);-ms-transform:matrix(0.207222,0.002694,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.207222,0.002694,-0.003250,0.249979,0,0);}
.m93_c00386{transform:matrix(0.207868,0.003326,-0.003999,0.249968,0,0);-ms-transform:matrix(0.207868,0.003326,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.207868,0.003326,-0.003999,0.249968,0,0);}
.m2b_c00386{transform:matrix(0.207908,0.001663,-0.002000,0.249992,0,0);-ms-transform:matrix(0.207908,0.001663,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.207908,0.001663,-0.002000,0.249992,0,0);}
.mf6_c00386{transform:matrix(0.207908,0.006660,-0.008004,0.249872,0,0);-ms-transform:matrix(0.207908,0.006660,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.207908,0.006660,-0.008004,0.249872,0,0);}
.m9e_c00386{transform:matrix(0.208692,0.002713,-0.003250,0.249979,0,0);-ms-transform:matrix(0.208692,0.002713,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.208692,0.002713,-0.003250,0.249979,0,0);}
.mf3_c00386{transform:matrix(0.209193,0.006701,-0.008004,0.249872,0,0);-ms-transform:matrix(0.209193,0.006701,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.209193,0.006701,-0.008004,0.249872,0,0);}
.m30_c00386{transform:matrix(0.209343,0.001675,-0.002000,0.249992,0,0);-ms-transform:matrix(0.209343,0.001675,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.209343,0.001675,-0.002000,0.249992,0,0);}
.mbc_c00386{transform:matrix(0.209850,0.003567,-0.004249,0.249964,0,0);-ms-transform:matrix(0.209850,0.003567,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.209850,0.003567,-0.004249,0.249964,0,0);}
.m2f_c00386{transform:matrix(0.210318,0.001683,-0.002000,0.249992,0,0);-ms-transform:matrix(0.210318,0.001683,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.210318,0.001683,-0.002000,0.249992,0,0);}
.m10_c00386{transform:matrix(0.210435,0.001473,-0.001750,0.249994,0,0);-ms-transform:matrix(0.210435,0.001473,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.210435,0.001473,-0.001750,0.249994,0,0);}
.me8_c00386{transform:matrix(0.210651,0.003792,-0.004499,0.249960,0,0);-ms-transform:matrix(0.210651,0.003792,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.210651,0.003792,-0.004499,0.249960,0,0);}
.mbb_c00386{transform:matrix(0.210660,0.003581,-0.004249,0.249964,0,0);-ms-transform:matrix(0.210660,0.003581,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.210660,0.003581,-0.004249,0.249964,0,0);}
.m77_c00386{transform:matrix(0.211014,0.002110,-0.002500,0.249988,0,0);-ms-transform:matrix(0.211014,0.002110,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.211014,0.002110,-0.002500,0.249988,0,0);}
.m1b_c00386{transform:matrix(0.211317,0.002324,-0.002750,0.249985,0,0);-ms-transform:matrix(0.211317,0.002324,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.211317,0.002324,-0.002750,0.249985,0,0);}
.m3a_c00386{transform:matrix(0.211693,0.001694,-0.002000,0.249992,0,0);-ms-transform:matrix(0.211693,0.001694,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.211693,0.001694,-0.002000,0.249992,0,0);}
.mdf_c00386{transform:matrix(0.212721,0.003829,-0.004499,0.249960,0,0);-ms-transform:matrix(0.212721,0.003829,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.212721,0.003829,-0.004499,0.249960,0,0);}
.m20_c00386{transform:matrix(0.213792,0.002352,-0.002750,0.249985,0,0);-ms-transform:matrix(0.213792,0.002352,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.213792,0.002352,-0.002750,0.249985,0,0);}
.md_c00386{transform:matrix(0.213810,0.001497,-0.001750,0.249994,0,0);-ms-transform:matrix(0.213810,0.001497,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.213810,0.001497,-0.001750,0.249994,0,0);}
.m79_c00386{transform:matrix(0.213849,0.002138,-0.002500,0.249988,0,0);-ms-transform:matrix(0.213849,0.002138,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.213849,0.002138,-0.002500,0.249988,0,0);}
.md7_c00386{transform:matrix(0.214248,0.004499,-0.005249,0.249945,0,0);-ms-transform:matrix(0.214248,0.004499,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.214248,0.004499,-0.005249,0.249945,0,0);}
.m38_c00386{transform:matrix(0.215753,0.001726,-0.002000,0.249992,0,0);-ms-transform:matrix(0.215753,0.001726,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.215753,0.001726,-0.002000,0.249992,0,0);}
.m2d_c00386{transform:matrix(0.216133,0.001729,-0.002000,0.249992,0,0);-ms-transform:matrix(0.216133,0.001729,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.216133,0.001729,-0.002000,0.249992,0,0);}
.mfd_c00386{transform:matrix(0.217351,0.008050,-0.009253,0.249829,0,0);-ms-transform:matrix(0.217351,0.008050,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.217351,0.008050,-0.009253,0.249829,0,0);}
.me5_c00386{transform:matrix(0.218095,0.003926,-0.004499,0.249960,0,0);-ms-transform:matrix(0.218095,0.003926,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.218095,0.003926,-0.004499,0.249960,0,0);}
.m21_c00386{transform:matrix(0.218912,0.002408,-0.002750,0.249985,0,0);-ms-transform:matrix(0.218912,0.002408,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.218912,0.002408,-0.002750,0.249985,0,0);}
.mb5_c00386{transform:matrix(0.218923,0.003722,-0.004249,0.249964,0,0);-ms-transform:matrix(0.218923,0.003722,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.218923,0.003722,-0.004249,0.249964,0,0);}
.me2_c00386{transform:matrix(0.219135,0.003944,-0.004499,0.249960,0,0);-ms-transform:matrix(0.219135,0.003944,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.219135,0.003944,-0.004499,0.249960,0,0);}
.m9a_c00386{transform:matrix(0.219686,0.002856,-0.003250,0.249979,0,0);-ms-transform:matrix(0.219686,0.002856,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.219686,0.002856,-0.003250,0.249979,0,0);}
.me3_c00386{transform:matrix(0.221174,0.003981,-0.004499,0.249960,0,0);-ms-transform:matrix(0.221174,0.003981,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.221174,0.003981,-0.004499,0.249960,0,0);}
.m7e_c00386{transform:matrix(0.221345,0.004206,-0.004749,0.249955,0,0);-ms-transform:matrix(0.221345,0.004206,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.221345,0.004206,-0.004749,0.249955,0,0);}
.m98_c00386{transform:matrix(0.221391,0.002878,-0.003250,0.249979,0,0);-ms-transform:matrix(0.221391,0.002878,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.221391,0.002878,-0.003250,0.249979,0,0);}
.me_c00386{transform:matrix(0.222655,0.001559,-0.001750,0.249994,0,0);-ms-transform:matrix(0.222655,0.001559,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.222655,0.001559,-0.001750,0.249994,0,0);}
.mb2_c00386{transform:matrix(0.223251,0.002902,-0.003250,0.249979,0,0);-ms-transform:matrix(0.223251,0.002902,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.223251,0.002902,-0.003250,0.249979,0,0);}
.m9b_c00386{transform:matrix(0.223516,0.002906,-0.003250,0.249979,0,0);-ms-transform:matrix(0.223516,0.002906,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.223516,0.002906,-0.003250,0.249979,0,0);}
.m36_c00386{transform:matrix(0.223528,0.001788,-0.002000,0.249992,0,0);-ms-transform:matrix(0.223528,0.001788,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.223528,0.001788,-0.002000,0.249992,0,0);}
.m1c_c00386{transform:matrix(0.223871,0.002463,-0.002750,0.249985,0,0);-ms-transform:matrix(0.223871,0.002463,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.223871,0.002463,-0.002750,0.249985,0,0);}
.m67_c00386{transform:matrix(0.223963,0.001792,-0.002000,0.249992,0,0);-ms-transform:matrix(0.223963,0.001792,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.223963,0.001792,-0.002000,0.249992,0,0);}
.mbd_c00386{transform:matrix(0.224818,0.003822,-0.004249,0.249964,0,0);-ms-transform:matrix(0.224818,0.003822,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.224818,0.003822,-0.004249,0.249964,0,0);}
.m12_c00386{transform:matrix(0.225364,0.001578,-0.001750,0.249994,0,0);-ms-transform:matrix(0.225364,0.001578,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.225364,0.001578,-0.001750,0.249994,0,0);}
.mb7_c00386{transform:matrix(0.225627,0.003836,-0.004249,0.249964,0,0);-ms-transform:matrix(0.225627,0.003836,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.225627,0.003836,-0.004249,0.249964,0,0);}
.m26_c00386{transform:matrix(0.226003,0.003164,-0.003500,0.249976,0,0);-ms-transform:matrix(0.226003,0.003164,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.226003,0.003164,-0.003500,0.249976,0,0);}
.m50_c00386{transform:matrix(0.226611,0.002493,-0.002750,0.249985,0,0);-ms-transform:matrix(0.226611,0.002493,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.226611,0.002493,-0.002750,0.249985,0,0);}
.m3b_c00386{transform:matrix(0.226958,0.001816,-0.002000,0.249992,0,0);-ms-transform:matrix(0.226958,0.001816,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.226958,0.001816,-0.002000,0.249992,0,0);}
.mb4_c00386{transform:matrix(0.227842,0.003873,-0.004249,0.249964,0,0);-ms-transform:matrix(0.227842,0.003873,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.227842,0.003873,-0.004249,0.249964,0,0);}
.m8d_c00386{transform:matrix(0.227991,0.003648,-0.003999,0.249968,0,0);-ms-transform:matrix(0.227991,0.003648,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.227991,0.003648,-0.003999,0.249968,0,0);}
.mf4_c00386{transform:matrix(0.228393,0.007316,-0.008004,0.249872,0,0);-ms-transform:matrix(0.228393,0.007316,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.228393,0.007316,-0.008004,0.249872,0,0);}
.mac_c00386{transform:matrix(0.228921,0.002976,-0.003250,0.249979,0,0);-ms-transform:matrix(0.228921,0.002976,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.228921,0.002976,-0.003250,0.249979,0,0);}
.m97_c00386{transform:matrix(0.228956,0.002976,-0.003250,0.249979,0,0);-ms-transform:matrix(0.228956,0.002976,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.228956,0.002976,-0.003250,0.249979,0,0);}
.md6_c00386{transform:matrix(0.229144,0.004812,-0.005249,0.249945,0,0);-ms-transform:matrix(0.229144,0.004812,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.229144,0.004812,-0.005249,0.249945,0,0);}
.m8b_c00386{transform:matrix(0.229166,0.003667,-0.003999,0.249968,0,0);-ms-transform:matrix(0.229166,0.003667,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.229166,0.003667,-0.003999,0.249968,0,0);}
.m101_c00386{transform:matrix(0.229368,0.008495,-0.009253,0.249829,0,0);-ms-transform:matrix(0.229368,0.008495,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.229368,0.008495,-0.009253,0.249829,0,0);}
.m24_c00386{transform:matrix(0.229438,0.003212,-0.003500,0.249976,0,0);-ms-transform:matrix(0.229438,0.003212,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.229438,0.003212,-0.003500,0.249976,0,0);}
.m8f_c00386{transform:matrix(0.229476,0.003672,-0.003999,0.249968,0,0);-ms-transform:matrix(0.229476,0.003672,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.229476,0.003672,-0.003999,0.249968,0,0);}
.m88_c00386{transform:matrix(0.229496,0.003672,-0.003999,0.249968,0,0);-ms-transform:matrix(0.229496,0.003672,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.229496,0.003672,-0.003999,0.249968,0,0);}
.m70_c00386{transform:matrix(0.230528,0.002305,-0.002500,0.249988,0,0);-ms-transform:matrix(0.230528,0.002305,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.230528,0.002305,-0.002500,0.249988,0,0);}
.m6c_c00386{transform:matrix(0.230888,0.001847,-0.002000,0.249992,0,0);-ms-transform:matrix(0.230888,0.001847,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.230888,0.001847,-0.002000,0.249992,0,0);}
.m71_c00386{transform:matrix(0.231248,0.002312,-0.002500,0.249988,0,0);-ms-transform:matrix(0.231248,0.002312,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.231248,0.002312,-0.002500,0.249988,0,0);}
.m58_c00386{transform:matrix(0.231438,0.001852,-0.002000,0.249992,0,0);-ms-transform:matrix(0.231438,0.001852,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.231438,0.001852,-0.002000,0.249992,0,0);}
.m7_c00386{transform:matrix(0.231696,0.002085,-0.002250,0.249990,0,0);-ms-transform:matrix(0.231696,0.002085,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.231696,0.002085,-0.002250,0.249990,0,0);}
.m59_c00386{transform:matrix(0.232278,0.001858,-0.002000,0.249992,0,0);-ms-transform:matrix(0.232278,0.001858,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.232278,0.001858,-0.002000,0.249992,0,0);}
.m4e_c00386{transform:matrix(0.232596,0.002559,-0.002750,0.249985,0,0);-ms-transform:matrix(0.232596,0.002559,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.232596,0.002559,-0.002750,0.249985,0,0);}
.mf7_c00386{transform:matrix(0.232606,0.007451,-0.008004,0.249872,0,0);-ms-transform:matrix(0.232606,0.007451,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.232606,0.007451,-0.008004,0.249872,0,0);}
.mae_c00386{transform:matrix(0.232965,0.003029,-0.003250,0.249979,0,0);-ms-transform:matrix(0.232965,0.003029,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.232965,0.003029,-0.003250,0.249979,0,0);}
.mfb_c00386{transform:matrix(0.233535,0.008649,-0.009253,0.249829,0,0);-ms-transform:matrix(0.233535,0.008649,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.233535,0.008649,-0.009253,0.249829,0,0);}
.m9f_c00386{transform:matrix(0.233675,0.003038,-0.003250,0.249979,0,0);-ms-transform:matrix(0.233675,0.003038,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.233675,0.003038,-0.003250,0.249979,0,0);}
.m75_c00386{transform:matrix(0.234813,0.002348,-0.002500,0.249988,0,0);-ms-transform:matrix(0.234813,0.002348,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.234813,0.002348,-0.002500,0.249988,0,0);}
.m33_c00386{transform:matrix(0.235187,0.001881,-0.002000,0.249992,0,0);-ms-transform:matrix(0.235187,0.001881,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.235187,0.001881,-0.002000,0.249992,0,0);}
.m8c_c00386{transform:matrix(0.235285,0.003765,-0.003999,0.249968,0,0);-ms-transform:matrix(0.235285,0.003765,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.235285,0.003765,-0.003999,0.249968,0,0);}
.mef_c00386{transform:matrix(0.236324,0.007570,-0.008004,0.249872,0,0);-ms-transform:matrix(0.236324,0.007570,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.236324,0.007570,-0.008004,0.249872,0,0);}
.m56_c00386{transform:matrix(0.237317,0.001899,-0.002000,0.249992,0,0);-ms-transform:matrix(0.237317,0.001899,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.237317,0.001899,-0.002000,0.249992,0,0);}
.m73_c00386{transform:matrix(0.238013,0.002380,-0.002500,0.249988,0,0);-ms-transform:matrix(0.238013,0.002380,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.238013,0.002380,-0.002500,0.249988,0,0);}
.m9c_c00386{transform:matrix(0.238405,0.003099,-0.003250,0.249979,0,0);-ms-transform:matrix(0.238405,0.003099,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.238405,0.003099,-0.003250,0.249979,0,0);}
.m51_c00386{transform:matrix(0.238426,0.002623,-0.002750,0.249985,0,0);-ms-transform:matrix(0.238426,0.002623,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.238426,0.002623,-0.002750,0.249985,0,0);}
.m19_c00386{transform:matrix(0.238431,0.002623,-0.002750,0.249985,0,0);-ms-transform:matrix(0.238431,0.002623,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.238431,0.002623,-0.002750,0.249985,0,0);}
.m54_c00386{transform:matrix(0.238972,0.001912,-0.002000,0.249992,0,0);-ms-transform:matrix(0.238972,0.001912,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.238972,0.001912,-0.002000,0.249992,0,0);}
.mb8_c00386{transform:matrix(0.239025,0.004063,-0.004249,0.249964,0,0);-ms-transform:matrix(0.239025,0.004063,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.239025,0.004063,-0.004249,0.249964,0,0);}
.m53_c00386{transform:matrix(0.240275,0.002643,-0.002750,0.249985,0,0);-ms-transform:matrix(0.240275,0.002643,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.240275,0.002643,-0.002750,0.249985,0,0);}
.m78_c00386{transform:matrix(0.241088,0.002411,-0.002500,0.249988,0,0);-ms-transform:matrix(0.241088,0.002411,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.241088,0.002411,-0.002500,0.249988,0,0);}
.mbe_c00386{transform:matrix(0.241700,0.004109,-0.004249,0.249964,0,0);-ms-transform:matrix(0.241700,0.004109,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.241700,0.004109,-0.004249,0.249964,0,0);}
.m84_c00386{transform:matrix(0.241749,0.003868,-0.003999,0.249968,0,0);-ms-transform:matrix(0.241749,0.003868,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.241749,0.003868,-0.003999,0.249968,0,0);}
.med_c00386{transform:matrix(0.242076,0.007754,-0.008004,0.249872,0,0);-ms-transform:matrix(0.242076,0.007754,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.242076,0.007754,-0.008004,0.249872,0,0);}
.m15_c00386{transform:matrix(0.242364,0.001697,-0.001750,0.249994,0,0);-ms-transform:matrix(0.242364,0.001697,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.242364,0.001697,-0.001750,0.249994,0,0);}
.m5e_c00386{transform:matrix(0.242697,0.001942,-0.002000,0.249992,0,0);-ms-transform:matrix(0.242697,0.001942,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.242697,0.001942,-0.002000,0.249992,0,0);}
.m89_c00386{transform:matrix(0.242714,0.003883,-0.003999,0.249968,0,0);-ms-transform:matrix(0.242714,0.003883,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.242714,0.003883,-0.003999,0.249968,0,0);}
.m1f_c00386{transform:matrix(0.243035,0.002673,-0.002750,0.249985,0,0);-ms-transform:matrix(0.243035,0.002673,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.243035,0.002673,-0.002750,0.249985,0,0);}
.mec_c00386{transform:matrix(0.243455,0.007798,-0.008004,0.249872,0,0);-ms-transform:matrix(0.243455,0.007798,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.243455,0.007798,-0.008004,0.249872,0,0);}
.md4_c00386{transform:matrix(0.243716,0.005118,-0.005249,0.249945,0,0);-ms-transform:matrix(0.243716,0.005118,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.243716,0.005118,-0.005249,0.249945,0,0);}
.mf1_c00386{transform:matrix(0.244275,0.007825,-0.008004,0.249872,0,0);-ms-transform:matrix(0.244275,0.007825,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.244275,0.007825,-0.008004,0.249872,0,0);}
.m5_c00386{transform:matrix(0.244290,0.002199,-0.002250,0.249990,0,0);-ms-transform:matrix(0.244290,0.002199,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.244290,0.002199,-0.002250,0.249990,0,0);}
.m1d_c00386{transform:matrix(0.245195,0.002697,-0.002750,0.249985,0,0);-ms-transform:matrix(0.245195,0.002697,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.245195,0.002697,-0.002750,0.249985,0,0);}
.m100_c00386{transform:matrix(0.245307,0.009085,-0.009253,0.249829,0,0);-ms-transform:matrix(0.245307,0.009085,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.245307,0.009085,-0.009253,0.249829,0,0);}
.m23_c00386{transform:matrix(0.245610,0.002702,-0.002750,0.249985,0,0);-ms-transform:matrix(0.245610,0.002702,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.245610,0.002702,-0.002750,0.249985,0,0);}
.m3c_c00386{transform:matrix(0.245732,0.001966,-0.002000,0.249992,0,0);-ms-transform:matrix(0.245732,0.001966,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.245732,0.001966,-0.002000,0.249992,0,0);}
.m7d_c00386{transform:matrix(0.246156,0.004677,-0.004749,0.249955,0,0);-ms-transform:matrix(0.246156,0.004677,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.246156,0.004677,-0.004749,0.249955,0,0);}
.m6d_c00386{transform:matrix(0.247677,0.001981,-0.002000,0.249992,0,0);-ms-transform:matrix(0.247677,0.001981,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.247677,0.001981,-0.002000,0.249992,0,0);}
.mf2_c00386{transform:matrix(0.247688,0.007934,-0.008004,0.249872,0,0);-ms-transform:matrix(0.247688,0.007934,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.247688,0.007934,-0.008004,0.249872,0,0);}
.m91_c00386{transform:matrix(0.247823,0.003965,-0.003999,0.249968,0,0);-ms-transform:matrix(0.247823,0.003965,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.247823,0.003965,-0.003999,0.249968,0,0);}
.mca_c00386{transform:matrix(0.247887,0.003718,-0.003750,0.249972,0,0);-ms-transform:matrix(0.247887,0.003718,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.247887,0.003718,-0.003750,0.249972,0,0);}
.mc1_c00386{transform:matrix(0.248348,0.006954,-0.006997,0.249902,0,0);-ms-transform:matrix(0.248348,0.006954,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.248348,0.006954,-0.006997,0.249902,0,0);}
.mf0_c00386{transform:matrix(0.248752,0.007968,-0.008004,0.249872,0,0);-ms-transform:matrix(0.248752,0.007968,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.248752,0.007968,-0.008004,0.249872,0,0);}
.m5b_c00386{transform:matrix(0.249397,0.001995,-0.002000,0.249992,0,0);-ms-transform:matrix(0.249397,0.001995,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.249397,0.001995,-0.002000,0.249992,0,0);}
.md8_c00386{transform:matrix(0.249940,0.005249,-0.005249,0.249945,0,0);-ms-transform:matrix(0.249940,0.005249,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.249940,0.005249,-0.005249,0.249945,0,0);}
.m22_c00386{transform:matrix(0.250760,0.002758,-0.002750,0.249985,0,0);-ms-transform:matrix(0.250760,0.002758,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.250760,0.002758,-0.002750,0.249985,0,0);}
.m6a_c00386{transform:matrix(0.250907,0.002007,-0.002000,0.249992,0,0);-ms-transform:matrix(0.250907,0.002007,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.250907,0.002007,-0.002000,0.249992,0,0);}
.m16_c00386{transform:matrix(0.251704,0.001762,-0.001750,0.249994,0,0);-ms-transform:matrix(0.251704,0.001762,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.251704,0.001762,-0.001750,0.249994,0,0);}
.m7a_c00386{transform:matrix(0.252205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252205,0.000000,0.000000,0.250000,0,0);}
.m66_c00386{transform:matrix(0.252837,0.002023,-0.002000,0.249992,0,0);-ms-transform:matrix(0.252837,0.002023,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.252837,0.002023,-0.002000,0.249992,0,0);}
.m1e_c00386{transform:matrix(0.253300,0.002786,-0.002750,0.249985,0,0);-ms-transform:matrix(0.253300,0.002786,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.253300,0.002786,-0.002750,0.249985,0,0);}
.mf5_c00386{transform:matrix(0.255574,0.008187,-0.008004,0.249872,0,0);-ms-transform:matrix(0.255574,0.008187,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.255574,0.008187,-0.008004,0.249872,0,0);}
.m27_c00386{transform:matrix(0.256925,0.003597,-0.003500,0.249976,0,0);-ms-transform:matrix(0.256925,0.003597,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.256925,0.003597,-0.003500,0.249976,0,0);}
.m1a_c00386{transform:matrix(0.256964,0.002827,-0.002750,0.249985,0,0);-ms-transform:matrix(0.256964,0.002827,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.256964,0.002827,-0.002750,0.249985,0,0);}
.m7f_c00386{transform:matrix(0.256974,0.004882,-0.004749,0.249955,0,0);-ms-transform:matrix(0.256974,0.004882,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.256974,0.004882,-0.004749,0.249955,0,0);}
.m80_c00386{transform:matrix(0.258283,0.004907,-0.004749,0.249955,0,0);-ms-transform:matrix(0.258283,0.004907,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.258283,0.004907,-0.004749,0.249955,0,0);}
.m6e_c00386{transform:matrix(0.258912,0.002071,-0.002000,0.249992,0,0);-ms-transform:matrix(0.258912,0.002071,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.258912,0.002071,-0.002000,0.249992,0,0);}
.m57_c00386{transform:matrix(0.259947,0.002080,-0.002000,0.249992,0,0);-ms-transform:matrix(0.259947,0.002080,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.259947,0.002080,-0.002000,0.249992,0,0);}
.m5a_c00386{transform:matrix(0.260152,0.002081,-0.002000,0.249992,0,0);-ms-transform:matrix(0.260152,0.002081,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.260152,0.002081,-0.002000,0.249992,0,0);}
.m86_c00386{transform:matrix(0.260642,0.004170,-0.003999,0.249968,0,0);-ms-transform:matrix(0.260642,0.004170,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.260642,0.004170,-0.003999,0.249968,0,0);}
.m85_c00386{transform:matrix(0.262146,0.004194,-0.003999,0.249968,0,0);-ms-transform:matrix(0.262146,0.004194,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.262146,0.004194,-0.003999,0.249968,0,0);}
.mb1_c00386{transform:matrix(0.262233,0.003409,-0.003250,0.249979,0,0);-ms-transform:matrix(0.262233,0.003409,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.262233,0.003409,-0.003250,0.249979,0,0);}
.m87_c00386{transform:matrix(0.262731,0.004204,-0.003999,0.249968,0,0);-ms-transform:matrix(0.262731,0.004204,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.262731,0.004204,-0.003999,0.249968,0,0);}
.m25_c00386{transform:matrix(0.263074,0.003683,-0.003500,0.249976,0,0);-ms-transform:matrix(0.263074,0.003683,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.263074,0.003683,-0.003500,0.249976,0,0);}
.ma5_c00386{transform:matrix(0.264848,0.003443,-0.003250,0.249979,0,0);-ms-transform:matrix(0.264848,0.003443,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.264848,0.003443,-0.003250,0.249979,0,0);}
.md0_c00386{transform:matrix(0.265605,0.003984,-0.003750,0.249972,0,0);-ms-transform:matrix(0.265605,0.003984,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.265605,0.003984,-0.003750,0.249972,0,0);}
.mab_c00386{transform:matrix(0.265638,0.003453,-0.003250,0.249979,0,0);-ms-transform:matrix(0.265638,0.003453,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.265638,0.003453,-0.003250,0.249979,0,0);}
.m8_c00386{transform:matrix(0.265669,0.002391,-0.002250,0.249990,0,0);-ms-transform:matrix(0.265669,0.002391,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.265669,0.002391,-0.002250,0.249990,0,0);}
.mc2_c00386{transform:matrix(0.266146,0.007452,-0.006997,0.249902,0,0);-ms-transform:matrix(0.266146,0.007452,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.266146,0.007452,-0.006997,0.249902,0,0);}
.m81_c00386{transform:matrix(0.266827,0.005070,-0.004749,0.249955,0,0);-ms-transform:matrix(0.266827,0.005070,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.266827,0.005070,-0.004749,0.249955,0,0);}
.m5f_c00386{transform:matrix(0.266936,0.002135,-0.002000,0.249992,0,0);-ms-transform:matrix(0.266936,0.002135,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.266936,0.002135,-0.002000,0.249992,0,0);}
.m65_c00386{transform:matrix(0.267126,0.002137,-0.002000,0.249992,0,0);-ms-transform:matrix(0.267126,0.002137,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.267126,0.002137,-0.002000,0.249992,0,0);}
.mfe_c00386{transform:matrix(0.267377,0.009903,-0.009253,0.249829,0,0);-ms-transform:matrix(0.267377,0.009903,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.267377,0.009903,-0.009253,0.249829,0,0);}
.mfa_c00386{transform:matrix(0.268281,0.009936,-0.009253,0.249829,0,0);-ms-transform:matrix(0.268281,0.009936,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.268281,0.009936,-0.009253,0.249829,0,0);}
.mff_c00386{transform:matrix(0.268356,0.009939,-0.009253,0.249829,0,0);-ms-transform:matrix(0.268356,0.009939,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.268356,0.009939,-0.009253,0.249829,0,0);}
.mc4_c00386{transform:matrix(0.268435,0.007516,-0.006997,0.249902,0,0);-ms-transform:matrix(0.268435,0.007516,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.268435,0.007516,-0.006997,0.249902,0,0);}
.ma6_c00386{transform:matrix(0.268517,0.003491,-0.003250,0.249979,0,0);-ms-transform:matrix(0.268517,0.003491,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.268517,0.003491,-0.003250,0.249979,0,0);}
.mfc_c00386{transform:matrix(0.269400,0.009978,-0.009253,0.249829,0,0);-ms-transform:matrix(0.269400,0.009978,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.269400,0.009978,-0.009253,0.249829,0,0);}
.md9_c00386{transform:matrix(0.269476,0.005659,-0.005249,0.249945,0,0);-ms-transform:matrix(0.269476,0.005659,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.269476,0.005659,-0.005249,0.249945,0,0);}
.m102_c00386{transform:matrix(0.269515,0.009982,-0.009253,0.249829,0,0);-ms-transform:matrix(0.269515,0.009982,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.269515,0.009982,-0.009253,0.249829,0,0);}
.maa_c00386{transform:matrix(0.269877,0.003508,-0.003250,0.249979,0,0);-ms-transform:matrix(0.269877,0.003508,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.269877,0.003508,-0.003250,0.249979,0,0);}
.mb0_c00386{transform:matrix(0.270732,0.003520,-0.003250,0.249979,0,0);-ms-transform:matrix(0.270732,0.003520,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.270732,0.003520,-0.003250,0.249979,0,0);}
.m61_c00386{transform:matrix(0.270746,0.002166,-0.002000,0.249992,0,0);-ms-transform:matrix(0.270746,0.002166,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.270746,0.002166,-0.002000,0.249992,0,0);}
.m95_c00386{transform:matrix(0.270981,0.005149,-0.004749,0.249955,0,0);-ms-transform:matrix(0.270981,0.005149,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.270981,0.005149,-0.004749,0.249955,0,0);}
.m47_c00386{transform:matrix(0.271254,0.002984,-0.002750,0.249985,0,0);-ms-transform:matrix(0.271254,0.002984,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.271254,0.002984,-0.002750,0.249985,0,0);}
.m55_c00386{transform:matrix(0.271701,0.002174,-0.002000,0.249992,0,0);-ms-transform:matrix(0.271701,0.002174,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.271701,0.002174,-0.002000,0.249992,0,0);}
.mbf_c00386{transform:matrix(0.272408,0.007627,-0.006997,0.249902,0,0);-ms-transform:matrix(0.272408,0.007627,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.272408,0.007627,-0.006997,0.249902,0,0);}
.m5c_c00386{transform:matrix(0.272701,0.002182,-0.002000,0.249992,0,0);-ms-transform:matrix(0.272701,0.002182,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.272701,0.002182,-0.002000,0.249992,0,0);}
.m60_c00386{transform:matrix(0.272891,0.002183,-0.002000,0.249992,0,0);-ms-transform:matrix(0.272891,0.002183,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.272891,0.002183,-0.002000,0.249992,0,0);}
.m63_c00386{transform:matrix(0.274581,0.002197,-0.002000,0.249992,0,0);-ms-transform:matrix(0.274581,0.002197,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.274581,0.002197,-0.002000,0.249992,0,0);}
.mce_c00386{transform:matrix(0.274739,0.004121,-0.003750,0.249972,0,0);-ms-transform:matrix(0.274739,0.004121,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.274739,0.004121,-0.003750,0.249972,0,0);}
.mc5_c00386{transform:matrix(0.275252,0.007707,-0.006997,0.249902,0,0);-ms-transform:matrix(0.275252,0.007707,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.275252,0.007707,-0.006997,0.249902,0,0);}
.mc3_c00386{transform:matrix(0.276272,0.007736,-0.006997,0.249902,0,0);-ms-transform:matrix(0.276272,0.007736,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.276272,0.007736,-0.006997,0.249902,0,0);}
.mf8_c00386{transform:matrix(0.276390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276390,0.000000,0.000000,0.250000,0,0);}
.mad_c00386{transform:matrix(0.276637,0.003596,-0.003250,0.249979,0,0);-ms-transform:matrix(0.276637,0.003596,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.276637,0.003596,-0.003250,0.249979,0,0);}
.m5d_c00386{transform:matrix(0.278251,0.002226,-0.002000,0.249992,0,0);-ms-transform:matrix(0.278251,0.002226,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.278251,0.002226,-0.002000,0.249992,0,0);}
.m8a_c00386{transform:matrix(0.278349,0.004454,-0.003999,0.249968,0,0);-ms-transform:matrix(0.278349,0.004454,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.278349,0.004454,-0.003999,0.249968,0,0);}
.mb3_c00386{transform:matrix(0.279091,0.003628,-0.003250,0.249979,0,0);-ms-transform:matrix(0.279091,0.003628,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.279091,0.003628,-0.003250,0.249979,0,0);}
.m62_c00386{transform:matrix(0.282136,0.002257,-0.002000,0.249992,0,0);-ms-transform:matrix(0.282136,0.002257,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.282136,0.002257,-0.002000,0.249992,0,0);}
.maf_c00386{transform:matrix(0.282851,0.003677,-0.003250,0.249979,0,0);-ms-transform:matrix(0.282851,0.003677,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.282851,0.003677,-0.003250,0.249979,0,0);}
.ma7_c00386{transform:matrix(0.283536,0.003686,-0.003250,0.249979,0,0);-ms-transform:matrix(0.283536,0.003686,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.283536,0.003686,-0.003250,0.249979,0,0);}
.mc9_c00386{transform:matrix(0.284988,0.004275,-0.003750,0.249972,0,0);-ms-transform:matrix(0.284988,0.004275,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.284988,0.004275,-0.003750,0.249972,0,0);}
.m46_c00386{transform:matrix(0.287603,0.003164,-0.002750,0.249985,0,0);-ms-transform:matrix(0.287603,0.003164,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.287603,0.003164,-0.002750,0.249985,0,0);}
.m4a_c00386{transform:matrix(0.288818,0.003177,-0.002750,0.249985,0,0);-ms-transform:matrix(0.288818,0.003177,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.288818,0.003177,-0.002750,0.249985,0,0);}
.m48_c00386{transform:matrix(0.289297,0.003182,-0.002750,0.249985,0,0);-ms-transform:matrix(0.289297,0.003182,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.289297,0.003182,-0.002750,0.249985,0,0);}
.mc8_c00386{transform:matrix(0.290287,0.004354,-0.003750,0.249972,0,0);-ms-transform:matrix(0.290287,0.004354,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.290287,0.004354,-0.003750,0.249972,0,0);}
.m3_c00386{transform:matrix(0.290978,0.002619,-0.002250,0.249990,0,0);-ms-transform:matrix(0.290978,0.002619,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.290978,0.002619,-0.002250,0.249990,0,0);}
.m6_c00386{transform:matrix(0.291063,0.002620,-0.002250,0.249990,0,0);-ms-transform:matrix(0.291063,0.002620,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.291063,0.002620,-0.002250,0.249990,0,0);}
.m4_c00386{transform:matrix(0.291588,0.002624,-0.002250,0.249990,0,0);-ms-transform:matrix(0.291588,0.002624,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.291588,0.002624,-0.002250,0.249990,0,0);}
.m96_c00386{transform:matrix(0.292352,0.005555,-0.004749,0.249955,0,0);-ms-transform:matrix(0.292352,0.005555,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.292352,0.005555,-0.004749,0.249955,0,0);}
.mcc_c00386{transform:matrix(0.292687,0.004390,-0.003750,0.249972,0,0);-ms-transform:matrix(0.292687,0.004390,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.292687,0.004390,-0.003750,0.249972,0,0);}
.m45_c00386{transform:matrix(0.295352,0.003249,-0.002750,0.249985,0,0);-ms-transform:matrix(0.295352,0.003249,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.295352,0.003249,-0.002750,0.249985,0,0);}
.mc7_c00386{transform:matrix(0.296324,0.008297,-0.006997,0.249902,0,0);-ms-transform:matrix(0.296324,0.008297,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.296324,0.008297,-0.006997,0.249902,0,0);}
.mc0_c00386{transform:matrix(0.297868,0.008340,-0.006997,0.249902,0,0);-ms-transform:matrix(0.297868,0.008340,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.297868,0.008340,-0.006997,0.249902,0,0);}
.mc6_c00386{transform:matrix(0.298203,0.008350,-0.006997,0.249902,0,0);-ms-transform:matrix(0.298203,0.008350,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.298203,0.008350,-0.006997,0.249902,0,0);}
.mea_c00386{transform:matrix(0.298547,0.009563,-0.008004,0.249872,0,0);-ms-transform:matrix(0.298547,0.009563,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.298547,0.009563,-0.008004,0.249872,0,0);}
.m49_c00386{transform:matrix(0.298592,0.003285,-0.002750,0.249985,0,0);-ms-transform:matrix(0.298592,0.003285,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.298592,0.003285,-0.002750,0.249985,0,0);}
.meb_c00386{transform:matrix(0.298747,0.009569,-0.008004,0.249872,0,0);-ms-transform:matrix(0.298747,0.009569,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.298747,0.009569,-0.008004,0.249872,0,0);}
.mcd_c00386{transform:matrix(0.299061,0.004486,-0.003750,0.249972,0,0);-ms-transform:matrix(0.299061,0.004486,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.299061,0.004486,-0.003750,0.249972,0,0);}
.m94_c00386{transform:matrix(0.299121,0.005683,-0.004749,0.249955,0,0);-ms-transform:matrix(0.299121,0.005683,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.299121,0.005683,-0.004749,0.249955,0,0);}
.mcb_c00386{transform:matrix(0.299346,0.004490,-0.003750,0.249972,0,0);-ms-transform:matrix(0.299346,0.004490,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.299346,0.004490,-0.003750,0.249972,0,0);}
.m68_c00386{transform:matrix(0.301630,0.002413,-0.002000,0.249992,0,0);-ms-transform:matrix(0.301630,0.002413,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.301630,0.002413,-0.002000,0.249992,0,0);}
.mcf_c00386{transform:matrix(0.304911,0.004574,-0.003750,0.249972,0,0);-ms-transform:matrix(0.304911,0.004574,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.304911,0.004574,-0.003750,0.249972,0,0);}
.m4b_c00386{transform:matrix(0.305457,0.003360,-0.002750,0.249985,0,0);-ms-transform:matrix(0.305457,0.003360,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.305457,0.003360,-0.002750,0.249985,0,0);}
.me9_c00386{transform:matrix(0.305668,0.009791,-0.008004,0.249872,0,0);-ms-transform:matrix(0.305668,0.009791,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.305668,0.009791,-0.008004,0.249872,0,0);}
.ma_c00386{transform:matrix(0.307163,0.002764,-0.002250,0.249990,0,0);-ms-transform:matrix(0.307163,0.002764,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.307163,0.002764,-0.002250,0.249990,0,0);}
.m9_c00386{transform:matrix(0.308418,0.002776,-0.002250,0.249990,0,0);-ms-transform:matrix(0.308418,0.002776,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.308418,0.002776,-0.002250,0.249990,0,0);}
.m2_c00386{transform:matrix(0.315582,0.002840,-0.002250,0.249990,0,0);-ms-transform:matrix(0.315582,0.002840,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.315582,0.002840,-0.002250,0.249990,0,0);}
.ma2_c00386{transform:matrix(0.326222,0.004241,-0.003250,0.249979,0,0);-ms-transform:matrix(0.326222,0.004241,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.326222,0.004241,-0.003250,0.249979,0,0);}
.mde_c00386{transform:matrix(0.357770,0.004651,-0.003250,0.249979,0,0);-ms-transform:matrix(0.357770,0.004651,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.357770,0.004651,-0.003250,0.249979,0,0);}
.m6f_c00386{transform:matrix(0.390637,0.003125,-0.002000,0.249992,0,0);-ms-transform:matrix(0.390637,0.003125,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.390637,0.003125,-0.002000,0.249992,0,0);}
.m1_c00386{transform:matrix(0.510425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510425,0.000000,0.000000,0.250000,0,0);}
.m42_c00386{transform:matrix(0.522420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522420,0.000000,0.000000,0.250000,0,0);}
.m3e_c00386{transform:matrix(0.612250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612250,0.000000,0.000000,0.250000,0,0);}
.m43_c00386{transform:matrix(0.636575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636575,0.000000,0.000000,0.250000,0,0);}
.m3f_c00386{transform:matrix(0.721560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.721560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.721560,0.000000,0.000000,0.250000,0,0);}
.m41_c00386{transform:matrix(0.786035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.786035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.786035,0.000000,0.000000,0.250000,0,0);}
.md3_c00386{transform:matrix(0.896674,0.013450,-0.003750,0.249972,0,0);-ms-transform:matrix(0.896674,0.013450,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.896674,0.013450,-0.003750,0.249972,0,0);}
.m40_c00386{transform:matrix(0.915490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.915490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.915490,0.000000,0.000000,0.250000,0,0);}
.m83_c00386{transform:matrix(0.975119,0.018527,-0.004749,0.249955,0,0);-ms-transform:matrix(0.975119,0.018527,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.975119,0.018527,-0.004749,0.249955,0,0);}
.m44_c00386{transform:matrix(1.120590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.120590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.120590,0.000000,0.000000,0.250000,0,0);}
.mdc_c00386{transform:matrix(1.169211,0.015200,-0.003250,0.249979,0,0);-ms-transform:matrix(1.169211,0.015200,-0.003250,0.249979,0,0);-webkit-transform:matrix(1.169211,0.015200,-0.003250,0.249979,0,0);}
.md1_c00386{transform:matrix(1.210614,0.018159,-0.003750,0.249972,0,0);-ms-transform:matrix(1.210614,0.018159,-0.003750,0.249972,0,0);-webkit-transform:matrix(1.210614,0.018159,-0.003750,0.249972,0,0);}
.mdb_c00386{transform:matrix(1.916323,0.024912,-0.003250,0.249979,0,0);-ms-transform:matrix(1.916323,0.024912,-0.003250,0.249979,0,0);-webkit-transform:matrix(1.916323,0.024912,-0.003250,0.249979,0,0);}
.m3d_c00386{transform:matrix(2.252050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.252050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.252050,0.000000,0.000000,0.250000,0,0);}
.ma4_c00386{transform:matrix(2.647376,0.034416,-0.003250,0.249979,0,0);-ms-transform:matrix(2.647376,0.034416,-0.003250,0.249979,0,0);-webkit-transform:matrix(2.647376,0.034416,-0.003250,0.249979,0,0);}
.md2_c00386{transform:matrix(3.210279,0.048154,-0.003750,0.249972,0,0);-ms-transform:matrix(3.210279,0.048154,-0.003750,0.249972,0,0);-webkit-transform:matrix(3.210279,0.048154,-0.003750,0.249972,0,0);}
.ma3_c00386{transform:matrix(4.031799,0.052413,-0.003250,0.249979,0,0);-ms-transform:matrix(4.031799,0.052413,-0.003250,0.249979,0,0);-webkit-transform:matrix(4.031799,0.052413,-0.003250,0.249979,0,0);}
.m82_c00386{transform:matrix(6.705170,0.127398,-0.004749,0.249955,0,0);-ms-transform:matrix(6.705170,0.127398,-0.004749,0.249955,0,0);-webkit-transform:matrix(6.705170,0.127398,-0.004749,0.249955,0,0);}
.v0_c00386{vertical-align:0.000000px;}
.ls0_c00386{letter-spacing:0.000000px;}
.sc__c00386{text-shadow:none;}
.sc0_c00386{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__c00386{-webkit-text-stroke:0px transparent;}
.sc0_c00386{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00386{word-spacing:0.000000px;}
._0_c00386{width:50.859248px;}
.fc0_c00386{color:transparent;}
.fs8_c00386{font-size:18.000000px;}
.fsf_c00386{font-size:18.003249px;}
.fs14_c00386{font-size:24.002028px;}
.fs1a_c00386{font-size:24.002700px;}
.fs1c_c00386{font-size:42.003549px;}
.fs0_c00386{font-size:60.000000px;}
.fs1e_c00386{font-size:65.967817px;}
.fs1_c00386{font-size:66.002673px;}
.fs9_c00386{font-size:66.003993px;}
.fs19_c00386{font-size:66.007425px;}
.fs12_c00386{font-size:66.011912px;}
.fs18_c00386{font-size:66.025867px;}
.fs20_c00386{font-size:71.977316px;}
.fsb_c00386{font-size:72.002304px;}
.fs15_c00386{font-size:72.006084px;}
.fs10_c00386{font-size:72.009215px;}
.fs1b_c00386{font-size:72.015874px;}
.fs17_c00386{font-size:72.028218px;}
.fs1f_c00386{font-size:77.961966px;}
.fsd_c00386{font-size:78.000000px;}
.fs3_c00386{font-size:78.001911px;}
.fs4_c00386{font-size:78.004719px;}
.fs5_c00386{font-size:78.007644px;}
.fse_c00386{font-size:78.014078px;}
.fs7_c00386{font-size:84.002688px;}
.fsc_c00386{font-size:84.004200px;}
.fsa_c00386{font-size:84.005082px;}
.fs13_c00386{font-size:84.007098px;}
.fs11_c00386{font-size:84.010751px;}
.fs16_c00386{font-size:84.012137px;}
.fs2_c00386{font-size:90.002205px;}
.fs1d_c00386{font-size:90.014579px;}
.fs6_c00386{font-size:96.003072px;}
.y0_c00386{bottom:0.000000px;}
.yfc_c00386{bottom:64.382756px;}
.yfb_c00386{bottom:65.601813px;}
.yfa_c00386{bottom:67.277136px;}
.yf9_c00386{bottom:68.096483px;}
.yf8_c00386{bottom:70.957563px;}
.yf7_c00386{bottom:71.786178px;}
.yf6_c00386{bottom:74.269414px;}
.yf5_c00386{bottom:75.475541px;}
.yf4_c00386{bottom:78.368089px;}
.yf3_c00386{bottom:79.123500px;}
.yf2_c00386{bottom:79.240500px;}
.yf1_c00386{bottom:99.826710px;}
.yf0_c00386{bottom:100.565563px;}
.yef_c00386{bottom:102.872613px;}
.yee_c00386{bottom:103.673650px;}
.yed_c00386{bottom:104.425480px;}
.yec_c00386{bottom:106.235559px;}
.yeb_c00386{bottom:107.764633px;}
.yea_c00386{bottom:109.547559px;}
.ye9_c00386{bottom:110.839156px;}
.ye8_c00386{bottom:111.561550px;}
.ye7_c00386{bottom:113.555829px;}
.ye6_c00386{bottom:115.316881px;}
.ye5_c00386{bottom:143.820720px;}
.ye4_c00386{bottom:146.335344px;}
.ye3_c00386{bottom:150.942000px;}
.ye2_c00386{bottom:172.292187px;}
.ye1_c00386{bottom:173.063145px;}
.ye0_c00386{bottom:173.676369px;}
.ydf_c00386{bottom:175.280952px;}
.yde_c00386{bottom:175.898604px;}
.ydd_c00386{bottom:178.470867px;}
.ydc_c00386{bottom:180.692589px;}
.ydb_c00386{bottom:181.484904px;}
.yda_c00386{bottom:183.053982px;}
.yd9_c00386{bottom:184.413000px;}
.yd8_c00386{bottom:211.842714px;}
.yd7_c00386{bottom:212.000645px;}
.yd6_c00386{bottom:212.681351px;}
.yd3_c00386{bottom:214.810868px;}
.yd2_c00386{bottom:215.718823px;}
.yd5_c00386{bottom:216.085953px;}
.yd1_c00386{bottom:216.837798px;}
.yd4_c00386{bottom:217.173000px;}
.yd0_c00386{bottom:217.589293px;}
.ycf_c00386{bottom:218.477152px;}
.yce_c00386{bottom:220.596000px;}
.ycd_c00386{bottom:242.986425px;}
.ycc_c00386{bottom:244.421940px;}
.ycb_c00386{bottom:246.793815px;}
.yca_c00386{bottom:248.648235px;}
.yc9_c00386{bottom:250.478813px;}
.yc8_c00386{bottom:251.163555px;}
.yc7_c00386{bottom:252.342578px;}
.yc6_c00386{bottom:253.983503px;}
.yc5_c00386{bottom:255.826703px;}
.yc4_c00386{bottom:256.482848px;}
.yc3_c00386{bottom:257.806995px;}
.yc2_c00386{bottom:258.931500px;}
.yc1_c00386{bottom:290.805300px;}
.yc0_c00386{bottom:293.215770px;}
.ybf_c00386{bottom:317.375856px;}
.ybe_c00386{bottom:318.024294px;}
.ybd_c00386{bottom:320.810364px;}
.ybc_c00386{bottom:323.003184px;}
.ybb_c00386{bottom:324.236892px;}
.yba_c00386{bottom:328.153770px;}
.yb9_c00386{bottom:328.597500px;}
.yb8_c00386{bottom:353.471600px;}
.yb7_c00386{bottom:354.628892px;}
.yb6_c00386{bottom:355.193691px;}
.yb5_c00386{bottom:355.923934px;}
.yb4_c00386{bottom:356.695335px;}
.yb3_c00386{bottom:357.255545px;}
.yb2_c00386{bottom:359.128698px;}
.yb1_c00386{bottom:360.088034px;}
.yb0_c00386{bottom:360.652680px;}
.yaf_c00386{bottom:361.964680px;}
.yae_c00386{bottom:363.423000px;}
.yad_c00386{bottom:397.428480px;}
.yac_c00386{bottom:425.000842px;}
.yab_c00386{bottom:425.871108px;}
.yaa_c00386{bottom:426.176088px;}
.ya9_c00386{bottom:427.897080px;}
.ya8_c00386{bottom:428.339535px;}
.ya7_c00386{bottom:429.908973px;}
.ya6_c00386{bottom:430.502104px;}
.ya5_c00386{bottom:431.506159px;}
.ya4_c00386{bottom:432.941301px;}
.ya3_c00386{bottom:433.318840px;}
.ya2_c00386{bottom:433.621500px;}
.ya1_c00386{bottom:468.761304px;}
.ya0_c00386{bottom:469.167961px;}
.y9f_c00386{bottom:470.340112px;}
.y9e_c00386{bottom:493.183102px;}
.y9b_c00386{bottom:496.849326px;}
.y9a_c00386{bottom:497.281056px;}
.y9d_c00386{bottom:497.455938px;}
.y99_c00386{bottom:498.313464px;}
.y98_c00386{bottom:498.889241px;}
.y97_c00386{bottom:499.314009px;}
.y96_c00386{bottom:500.746479px;}
.y9c_c00386{bottom:501.660533px;}
.y95_c00386{bottom:501.768494px;}
.y94_c00386{bottom:502.631525px;}
.y93_c00386{bottom:503.049136px;}
.y92_c00386{bottom:503.919188px;}
.y91_c00386{bottom:504.901500px;}
.y90_c00386{bottom:539.150549px;}
.y8f_c00386{bottom:540.002356px;}
.y8e_c00386{bottom:541.894500px;}
.y8d_c00386{bottom:569.074800px;}
.y8c_c00386{bottom:569.581536px;}
.y8b_c00386{bottom:572.408904px;}
.y8a_c00386{bottom:573.089712px;}
.y89_c00386{bottom:574.260384px;}
.y88_c00386{bottom:574.932624px;}
.y87_c00386{bottom:576.403500px;}
.y86_c00386{bottom:577.742676px;}
.y85_c00386{bottom:578.876628px;}
.y84_c00386{bottom:608.433540px;}
.y83_c00386{bottom:608.982180px;}
.y82_c00386{bottom:609.509148px;}
.y81_c00386{bottom:610.736292px;}
.y80_c00386{bottom:612.002172px;}
.y7f_c00386{bottom:613.397076px;}
.y7e_c00386{bottom:614.251500px;}
.y7d_c00386{bottom:633.656787px;}
.y7c_c00386{bottom:639.361474px;}
.y7b_c00386{bottom:641.256911px;}
.y7a_c00386{bottom:643.786513px;}
.y79_c00386{bottom:645.905517px;}
.y78_c00386{bottom:646.746979px;}
.y77_c00386{bottom:648.628863px;}
.y76_c00386{bottom:649.190028px;}
.y75_c00386{bottom:649.623000px;}
.y74_c00386{bottom:682.305000px;}
.y73_c00386{bottom:711.281280px;}
.y72_c00386{bottom:712.509825px;}
.y71_c00386{bottom:712.852845px;}
.y70_c00386{bottom:713.184960px;}
.y6f_c00386{bottom:714.065355px;}
.y6e_c00386{bottom:714.518925px;}
.y6d_c00386{bottom:715.626060px;}
.y6c_c00386{bottom:716.076960px;}
.y6b_c00386{bottom:717.170295px;}
.y6a_c00386{bottom:717.931500px;}
.y69_c00386{bottom:748.284348px;}
.y68_c00386{bottom:749.148000px;}
.y67_c00386{bottom:749.622708px;}
.y66_c00386{bottom:749.853216px;}
.y65_c00386{bottom:750.247692px;}
.y64_c00386{bottom:751.102608px;}
.y63_c00386{bottom:751.411716px;}
.y62_c00386{bottom:752.385144px;}
.y61_c00386{bottom:752.568840px;}
.y60_c00386{bottom:753.022680px;}
.y5f_c00386{bottom:753.568764px;}
.y5e_c00386{bottom:785.018700px;}
.y5d_c00386{bottom:787.628532px;}
.y5c_c00386{bottom:788.514204px;}
.y5b_c00386{bottom:788.691144px;}
.y5a_c00386{bottom:789.479772px;}
.y59_c00386{bottom:820.895100px;}
.y58_c00386{bottom:821.173536px;}
.y57_c00386{bottom:821.352792px;}
.y56_c00386{bottom:821.970756px;}
.y55_c00386{bottom:822.325104px;}
.y54_c00386{bottom:822.588636px;}
.y53_c00386{bottom:823.124352px;}
.y52_c00386{bottom:823.385760px;}
.y51_c00386{bottom:823.742184px;}
.y50_c00386{bottom:824.184984px;}
.y4f_c00386{bottom:824.541408px;}
.y4e_c00386{bottom:825.586800px;}
.y4d_c00386{bottom:825.930000px;}
.y4c_c00386{bottom:858.058146px;}
.y4b_c00386{bottom:858.453568px;}
.y4a_c00386{bottom:859.905777px;}
.y49_c00386{bottom:860.987757px;}
.y48_c00386{bottom:861.380094px;}
.y47_c00386{bottom:862.827486px;}
.y46_c00386{bottom:863.188921px;}
.y45_c00386{bottom:863.458657px;}
.y44_c00386{bottom:892.685336px;}
.y43_c00386{bottom:892.943412px;}
.y42_c00386{bottom:894.027990px;}
.y41_c00386{bottom:894.889240px;}
.y40_c00386{bottom:895.379422px;}
.y3f_c00386{bottom:896.956525px;}
.y3e_c00386{bottom:897.211500px;}
.y3d_c00386{bottom:923.352000px;}
.y3c_c00386{bottom:928.261440px;}
.y3b_c00386{bottom:928.655256px;}
.y3a_c00386{bottom:928.887972px;}
.y39_c00386{bottom:929.187948px;}
.y38_c00386{bottom:929.660448px;}
.y37_c00386{bottom:929.898120px;}
.y36_c00386{bottom:930.439392px;}
.y35_c00386{bottom:930.667764px;}
.y34_c00386{bottom:930.896100px;}
.y33_c00386{bottom:931.663512px;}
.y32_c00386{bottom:931.879272px;}
.y31_c00386{bottom:932.038512px;}
.y30_c00386{bottom:962.807292px;}
.y2f_c00386{bottom:963.792132px;}
.y2e_c00386{bottom:964.064340px;}
.y2d_c00386{bottom:964.243872px;}
.y2c_c00386{bottom:964.867716px;}
.y2b_c00386{bottom:965.658492px;}
.y2a_c00386{bottom:966.345336px;}
.y29_c00386{bottom:966.803160px;}
.y28_c00386{bottom:967.410000px;}
.y27_c00386{bottom:1001.510844px;}
.y26_c00386{bottom:1001.983407px;}
.y25_c00386{bottom:1002.294081px;}
.y24_c00386{bottom:1003.053000px;}
.y23_c00386{bottom:1033.139214px;}
.y22_c00386{bottom:1033.890805px;}
.y21_c00386{bottom:1034.371549px;}
.y20_c00386{bottom:1034.731282px;}
.y1f_c00386{bottom:1034.986323px;}
.y1e_c00386{bottom:1035.853975px;}
.y1d_c00386{bottom:1036.557915px;}
.y1c_c00386{bottom:1037.048097px;}
.y1b_c00386{bottom:1037.547057px;}
.y1a_c00386{bottom:1038.645924px;}
.y19_c00386{bottom:1039.599113px;}
.y18_c00386{bottom:1039.936686px;}
.y17_c00386{bottom:1040.311500px;}
.y15_c00386{bottom:1072.990263px;}
.y16_c00386{bottom:1072.990364px;}
.y14_c00386{bottom:1105.251231px;}
.y13_c00386{bottom:1105.638723px;}
.y12_c00386{bottom:1106.424984px;}
.y11_c00386{bottom:1106.657370px;}
.y10_c00386{bottom:1107.116819px;}
.yf_c00386{bottom:1107.436239px;}
.ye_c00386{bottom:1108.207548px;}
.yd_c00386{bottom:1108.976610px;}
.yc_c00386{bottom:1109.191587px;}
.yb_c00386{bottom:1109.430000px;}
.ya_c00386{bottom:1140.505435px;}
.y9_c00386{bottom:1141.615837px;}
.y8_c00386{bottom:1141.922044px;}
.y7_c00386{bottom:1142.121075px;}
.y6_c00386{bottom:1142.908692px;}
.y5_c00386{bottom:1143.314529px;}
.y4_c00386{bottom:1144.016840px;}
.y3_c00386{bottom:1144.908609px;}
.y2_c00386{bottom:1145.611500px;}
.y1_c00386{bottom:1200.016500px;}
.ha_c00386{height:18.000000px;}
.h11_c00386{height:18.003249px;}
.h16_c00386{height:24.002028px;}
.h1c_c00386{height:24.002700px;}
.h1e_c00386{height:42.003549px;}
.h2_c00386{height:60.000000px;}
.h20_c00386{height:65.967817px;}
.h3_c00386{height:66.002673px;}
.hb_c00386{height:66.003993px;}
.h1b_c00386{height:66.007425px;}
.h14_c00386{height:66.011912px;}
.h1a_c00386{height:66.025867px;}
.h22_c00386{height:71.977316px;}
.hd_c00386{height:72.002304px;}
.h17_c00386{height:72.006084px;}
.h12_c00386{height:72.009215px;}
.h1d_c00386{height:72.015874px;}
.h19_c00386{height:72.028218px;}
.h21_c00386{height:77.961966px;}
.hf_c00386{height:78.000000px;}
.h5_c00386{height:78.001911px;}
.h6_c00386{height:78.004719px;}
.h7_c00386{height:78.007644px;}
.h10_c00386{height:78.014078px;}
.h9_c00386{height:84.002688px;}
.he_c00386{height:84.004200px;}
.hc_c00386{height:84.005082px;}
.h15_c00386{height:84.007098px;}
.h13_c00386{height:84.010751px;}
.h18_c00386{height:84.012137px;}
.h4_c00386{height:90.002205px;}
.h1f_c00386{height:90.014579px;}
.h8_c00386{height:96.003072px;}
.h1_c00386{height:1251.000000px;}
.h0_c00386{height:1251.150000px;}
.w0_c00386{width:915.000000px;}
.x0_c00386{left:0.000000px;}
.x3_c00386{left:152.625000px;}
.x20_c00386{left:155.710500px;}
.x63_c00386{left:157.006500px;}
.x7a_c00386{left:158.430567px;}
.xc_c00386{left:167.329500px;}
.x27_c00386{left:178.677516px;}
.x5d_c00386{left:179.707500px;}
.x4c_c00386{left:189.925500px;}
.xd_c00386{left:201.388500px;}
.x5e_c00386{left:202.989000px;}
.x4d_c00386{left:212.713500px;}
.x3b_c00386{left:221.560500px;}
.x4_c00386{left:230.724000px;}
.xe_c00386{left:232.099500px;}
.x43_c00386{left:233.183268px;}
.x7b_c00386{left:234.903072px;}
.x4e_c00386{left:242.248500px;}
.x71_c00386{left:245.167500px;}
.x21_c00386{left:288.793500px;}
.x44_c00386{left:297.976284px;}
.x15_c00386{left:318.730500px;}
.x53_c00386{left:320.551080px;}
.x7f_c00386{left:321.840000px;}
.x45_c00386{left:324.125988px;}
.x72_c00386{left:328.786500px;}
.x5_c00386{left:329.809500px;}
.x56_c00386{left:330.810000px;}
.x69_c00386{left:333.600828px;}
.x13_c00386{left:340.473918px;}
.xf_c00386{left:341.965500px;}
.x80_c00386{left:343.870500px;}
.x67_c00386{left:346.588500px;}
.x3a_c00386{left:352.456800px;}
.x35_c00386{left:364.083000px;}
.x22_c00386{left:374.649000px;}
.x14_c00386{left:386.104654px;}
.x1f_c00386{left:396.391500px;}
.x6_c00386{left:407.844000px;}
.x50_c00386{left:409.386000px;}
.x16_c00386{left:418.627500px;}
.x5f_c00386{left:419.661000px;}
.x57_c00386{left:430.396500px;}
.x6e_c00386{left:433.518000px;}
.x81_c00386{left:442.365406px;}
.x1_c00386{left:451.710000px;}
.x7_c00386{left:452.937000px;}
.x17_c00386{left:463.987500px;}
.x60_c00386{left:465.286500px;}
.x2_c00386{left:474.390000px;}
.x58_c00386{left:475.813500px;}
.x5b_c00386{left:482.428848px;}
.x28_c00386{left:484.291452px;}
.x51_c00386{left:486.082500px;}
.x6a_c00386{left:487.449000px;}
.x3c_c00386{left:496.690500px;}
.x10_c00386{left:497.784000px;}
.x36_c00386{left:507.456000px;}
.x18_c00386{left:508.549500px;}
.x6f_c00386{left:511.582500px;}
.x29_c00386{left:518.313228px;}
.x64_c00386{left:519.798000px;}
.x3d_c00386{left:529.366500px;}
.x68_c00386{left:530.538000px;}
.x4f_c00386{left:539.121116px;}
.x8_c00386{left:540.450000px;}
.x48_c00386{left:542.019000px;}
.x23_c00386{left:551.476500px;}
.x52_c00386{left:553.308000px;}
.x9_c00386{left:562.564500px;}
.x70_c00386{left:564.867000px;}
.x19_c00386{left:572.544000px;}
.x24_c00386{left:573.918000px;}
.x41_c00386{left:584.188560px;}
.x2a_c00386{left:585.813768px;}
.x73_c00386{left:590.679000px;}
.x2e_c00386{left:592.920000px;}
.xa_c00386{left:596.587500px;}
.x65_c00386{left:598.128000px;}
.x25_c00386{left:607.944000px;}
.x59_c00386{left:618.678000px;}
.x61_c00386{left:620.047500px;}
.x2b_c00386{left:628.748616px;}
.x37_c00386{left:630.313500px;}
.x7c_c00386{left:631.348037px;}
.x66_c00386{left:641.083500px;}
.x74_c00386{left:643.041000px;}
.x2f_c00386{left:648.000000px;}
.x1a_c00386{left:651.421500px;}
.x75_c00386{left:655.189500px;}
.x2c_c00386{left:661.963380px;}
.x49_c00386{left:663.270000px;}
.x76_c00386{left:665.116500px;}
.x3e_c00386{left:673.566000px;}
.x1b_c00386{left:674.607000px;}
.x6c_c00386{left:680.886623px;}
.x30_c00386{left:684.990000px;}
.x46_c00386{left:685.994892px;}
.x4a_c00386{left:697.572000px;}
.x7d_c00386{left:698.792484px;}
.x1c_c00386{left:707.310000px;}
.x11_c00386{left:708.940500px;}
.x2d_c00386{left:718.128324px;}
.xb_c00386{left:719.965500px;}
.x6b_c00386{left:721.095000px;}
.x31_c00386{left:726.570000px;}
.x38_c00386{left:728.911500px;}
.x26_c00386{left:731.049000px;}
.x5a_c00386{left:742.384500px;}
.x32_c00386{left:744.660000px;}
.x1d_c00386{left:751.014000px;}
.x39_c00386{left:752.373000px;}
.x77_c00386{left:754.260000px;}
.x33_c00386{left:760.590000px;}
.x12_c00386{left:764.296500px;}
.x5c_c00386{left:767.254938px;}
.x3f_c00386{left:773.218500px;}
.x54_c00386{left:775.337352px;}
.x34_c00386{left:782.460000px;}
.x47_c00386{left:786.710196px;}
.x78_c00386{left:788.328000px;}
.x7e_c00386{left:798.960093px;}
.x6d_c00386{left:800.493000px;}
.x40_c00386{left:808.023000px;}
.x55_c00386{left:809.071380px;}
.x1e_c00386{left:819.340500px;}
.x4b_c00386{left:820.426500px;}
.x79_c00386{left:831.159000px;}
.x62_c00386{left:842.835000px;}
.x42_c00386{left:910.417560px;}
@media print{
.v0_c00386{vertical-align:0.000000pt;}
.ls0_c00386{letter-spacing:0.000000pt;}
.ws0_c00386{word-spacing:0.000000pt;}
._0_c00386{width:45.208220pt;}
.fs8_c00386{font-size:16.000000pt;}
.fsf_c00386{font-size:16.002888pt;}
.fs14_c00386{font-size:21.335136pt;}
.fs1a_c00386{font-size:21.335733pt;}
.fs1c_c00386{font-size:37.336488pt;}
.fs0_c00386{font-size:53.333333pt;}
.fs1e_c00386{font-size:58.638060pt;}
.fs1_c00386{font-size:58.669043pt;}
.fs9_c00386{font-size:58.670216pt;}
.fs19_c00386{font-size:58.673266pt;}
.fs12_c00386{font-size:58.677255pt;}
.fs18_c00386{font-size:58.689659pt;}
.fs20_c00386{font-size:63.979837pt;}
.fsb_c00386{font-size:64.002048pt;}
.fs15_c00386{font-size:64.005408pt;}
.fs10_c00386{font-size:64.008191pt;}
.fs1b_c00386{font-size:64.014110pt;}
.fs17_c00386{font-size:64.025083pt;}
.fs1f_c00386{font-size:69.299525pt;}
.fsd_c00386{font-size:69.333333pt;}
.fs3_c00386{font-size:69.335032pt;}
.fs4_c00386{font-size:69.337528pt;}
.fs5_c00386{font-size:69.340128pt;}
.fse_c00386{font-size:69.345847pt;}
.fs7_c00386{font-size:74.669056pt;}
.fsc_c00386{font-size:74.670400pt;}
.fsa_c00386{font-size:74.671184pt;}
.fs13_c00386{font-size:74.672976pt;}
.fs11_c00386{font-size:74.676223pt;}
.fs16_c00386{font-size:74.677455pt;}
.fs2_c00386{font-size:80.001960pt;}
.fs1d_c00386{font-size:80.012959pt;}
.fs6_c00386{font-size:85.336064pt;}
.y0_c00386{bottom:0.000000pt;}
.yfc_c00386{bottom:57.229116pt;}
.yfb_c00386{bottom:58.312723pt;}
.yfa_c00386{bottom:59.801899pt;}
.yf9_c00386{bottom:60.530207pt;}
.yf8_c00386{bottom:63.073389pt;}
.yf7_c00386{bottom:63.809936pt;}
.yf6_c00386{bottom:66.017257pt;}
.yf5_c00386{bottom:67.089369pt;}
.yf4_c00386{bottom:69.660524pt;}
.yf3_c00386{bottom:70.332000pt;}
.yf2_c00386{bottom:70.436000pt;}
.yf1_c00386{bottom:88.734853pt;}
.yf0_c00386{bottom:89.391612pt;}
.yef_c00386{bottom:91.442323pt;}
.yee_c00386{bottom:92.154356pt;}
.yed_c00386{bottom:92.822649pt;}
.yec_c00386{bottom:94.431608pt;}
.yeb_c00386{bottom:95.790785pt;}
.yea_c00386{bottom:97.375608pt;}
.ye9_c00386{bottom:98.523695pt;}
.ye8_c00386{bottom:99.165823pt;}
.ye7_c00386{bottom:100.938515pt;}
.ye6_c00386{bottom:102.503895pt;}
.ye5_c00386{bottom:127.840640pt;}
.ye4_c00386{bottom:130.075861pt;}
.ye3_c00386{bottom:134.170667pt;}
.ye2_c00386{bottom:153.148611pt;}
.ye1_c00386{bottom:153.833907pt;}
.ye0_c00386{bottom:154.378995pt;}
.ydf_c00386{bottom:155.805291pt;}
.yde_c00386{bottom:156.354315pt;}
.ydd_c00386{bottom:158.640771pt;}
.ydc_c00386{bottom:160.615635pt;}
.ydb_c00386{bottom:161.319915pt;}
.yda_c00386{bottom:162.714651pt;}
.yd9_c00386{bottom:163.922667pt;}
.yd8_c00386{bottom:188.304635pt;}
.yd7_c00386{bottom:188.445017pt;}
.yd6_c00386{bottom:189.050089pt;}
.yd3_c00386{bottom:190.942993pt;}
.yd2_c00386{bottom:191.750065pt;}
.yd5_c00386{bottom:192.076403pt;}
.yd1_c00386{bottom:192.744709pt;}
.yd4_c00386{bottom:193.042667pt;}
.yd0_c00386{bottom:193.412705pt;}
.ycf_c00386{bottom:194.201913pt;}
.yce_c00386{bottom:196.085333pt;}
.ycd_c00386{bottom:215.987933pt;}
.ycc_c00386{bottom:217.263947pt;}
.ycb_c00386{bottom:219.372280pt;}
.yca_c00386{bottom:221.020653pt;}
.yc9_c00386{bottom:222.647833pt;}
.yc8_c00386{bottom:223.256493pt;}
.yc7_c00386{bottom:224.304513pt;}
.yc6_c00386{bottom:225.763113pt;}
.yc5_c00386{bottom:227.401513pt;}
.yc4_c00386{bottom:227.984753pt;}
.yc3_c00386{bottom:229.161773pt;}
.yc2_c00386{bottom:230.161333pt;}
.yc1_c00386{bottom:258.493600pt;}
.yc0_c00386{bottom:260.636240pt;}
.ybf_c00386{bottom:282.111872pt;}
.ybe_c00386{bottom:282.688261pt;}
.ybd_c00386{bottom:285.164768pt;}
.ybc_c00386{bottom:287.113941pt;}
.ybb_c00386{bottom:288.210571pt;}
.yba_c00386{bottom:291.692240pt;}
.yb9_c00386{bottom:292.086667pt;}
.yb8_c00386{bottom:314.196977pt;}
.yb7_c00386{bottom:315.225681pt;}
.yb6_c00386{bottom:315.727725pt;}
.yb5_c00386{bottom:316.376831pt;}
.yb4_c00386{bottom:317.062520pt;}
.yb3_c00386{bottom:317.560484pt;}
.yb2_c00386{bottom:319.225509pt;}
.yb1_c00386{bottom:320.078252pt;}
.yb0_c00386{bottom:320.580160pt;}
.yaf_c00386{bottom:321.746383pt;}
.yae_c00386{bottom:323.042667pt;}
.yad_c00386{bottom:353.269760pt;}
.yac_c00386{bottom:377.778527pt;}
.yab_c00386{bottom:378.552096pt;}
.yaa_c00386{bottom:378.823189pt;}
.ya9_c00386{bottom:380.352960pt;}
.ya8_c00386{bottom:380.746253pt;}
.ya7_c00386{bottom:382.141309pt;}
.ya6_c00386{bottom:382.668537pt;}
.ya5_c00386{bottom:383.561031pt;}
.ya4_c00386{bottom:384.836712pt;}
.ya3_c00386{bottom:385.172303pt;}
.ya2_c00386{bottom:385.441333pt;}
.ya1_c00386{bottom:416.676715pt;}
.ya0_c00386{bottom:417.038188pt;}
.y9f_c00386{bottom:418.080100pt;}
.y9e_c00386{bottom:438.384980pt;}
.y9b_c00386{bottom:441.643845pt;}
.y9a_c00386{bottom:442.027605pt;}
.y9d_c00386{bottom:442.183056pt;}
.y99_c00386{bottom:442.945301pt;}
.y98_c00386{bottom:443.457103pt;}
.y97_c00386{bottom:443.834675pt;}
.y96_c00386{bottom:445.107981pt;}
.y9c_c00386{bottom:445.920473pt;}
.y95_c00386{bottom:446.016439pt;}
.y94_c00386{bottom:446.783577pt;}
.y93_c00386{bottom:447.154788pt;}
.y92_c00386{bottom:447.928167pt;}
.y91_c00386{bottom:448.801333pt;}
.y90_c00386{bottom:479.244932pt;}
.y8f_c00386{bottom:480.002095pt;}
.y8e_c00386{bottom:481.684000pt;}
.y8d_c00386{bottom:505.844267pt;}
.y8c_c00386{bottom:506.294699pt;}
.y8b_c00386{bottom:508.807915pt;}
.y8a_c00386{bottom:509.413077pt;}
.y89_c00386{bottom:510.453675pt;}
.y88_c00386{bottom:511.051221pt;}
.y87_c00386{bottom:512.358667pt;}
.y86_c00386{bottom:513.549045pt;}
.y85_c00386{bottom:514.557003pt;}
.y84_c00386{bottom:540.829813pt;}
.y83_c00386{bottom:541.317493pt;}
.y82_c00386{bottom:541.785909pt;}
.y81_c00386{bottom:542.876704pt;}
.y80_c00386{bottom:544.001931pt;}
.y7f_c00386{bottom:545.241845pt;}
.y7e_c00386{bottom:546.001333pt;}
.y7d_c00386{bottom:563.250477pt;}
.y7c_c00386{bottom:568.321311pt;}
.y7b_c00386{bottom:570.006143pt;}
.y7a_c00386{bottom:572.254679pt;}
.y79_c00386{bottom:574.138237pt;}
.y78_c00386{bottom:574.886204pt;}
.y77_c00386{bottom:576.558989pt;}
.y76_c00386{bottom:577.057803pt;}
.y75_c00386{bottom:577.442667pt;}
.y74_c00386{bottom:606.493333pt;}
.y73_c00386{bottom:632.250027pt;}
.y72_c00386{bottom:633.342067pt;}
.y71_c00386{bottom:633.646973pt;}
.y70_c00386{bottom:633.942187pt;}
.y6f_c00386{bottom:634.724760pt;}
.y6e_c00386{bottom:635.127933pt;}
.y6d_c00386{bottom:636.112053pt;}
.y6c_c00386{bottom:636.512853pt;}
.y6b_c00386{bottom:637.484707pt;}
.y6a_c00386{bottom:638.161333pt;}
.y69_c00386{bottom:665.141643pt;}
.y68_c00386{bottom:665.909333pt;}
.y67_c00386{bottom:666.331296pt;}
.y66_c00386{bottom:666.536192pt;}
.y65_c00386{bottom:666.886837pt;}
.y64_c00386{bottom:667.646763pt;}
.y63_c00386{bottom:667.921525pt;}
.y62_c00386{bottom:668.786795pt;}
.y61_c00386{bottom:668.950080pt;}
.y60_c00386{bottom:669.353493pt;}
.y5f_c00386{bottom:669.838901pt;}
.y5e_c00386{bottom:697.794400pt;}
.y5d_c00386{bottom:700.114251pt;}
.y5c_c00386{bottom:700.901515pt;}
.y5b_c00386{bottom:701.058795pt;}
.y5a_c00386{bottom:701.759797pt;}
.y59_c00386{bottom:729.684533pt;}
.y58_c00386{bottom:729.932032pt;}
.y57_c00386{bottom:730.091371pt;}
.y56_c00386{bottom:730.640672pt;}
.y55_c00386{bottom:730.955648pt;}
.y54_c00386{bottom:731.189899pt;}
.y53_c00386{bottom:731.666091pt;}
.y52_c00386{bottom:731.898453pt;}
.y51_c00386{bottom:732.215275pt;}
.y50_c00386{bottom:732.608875pt;}
.y4f_c00386{bottom:732.925696pt;}
.y4e_c00386{bottom:733.854933pt;}
.y4d_c00386{bottom:734.160000pt;}
.y4c_c00386{bottom:762.718352pt;}
.y4b_c00386{bottom:763.069839pt;}
.y4a_c00386{bottom:764.360691pt;}
.y49_c00386{bottom:765.322451pt;}
.y48_c00386{bottom:765.671195pt;}
.y47_c00386{bottom:766.957765pt;}
.y46_c00386{bottom:767.279041pt;}
.y45_c00386{bottom:767.518807pt;}
.y44_c00386{bottom:793.498076pt;}
.y43_c00386{bottom:793.727477pt;}
.y42_c00386{bottom:794.691547pt;}
.y41_c00386{bottom:795.457103pt;}
.y40_c00386{bottom:795.892820pt;}
.y3f_c00386{bottom:797.294689pt;}
.y3e_c00386{bottom:797.521333pt;}
.y3d_c00386{bottom:820.757333pt;}
.y3c_c00386{bottom:825.121280pt;}
.y3b_c00386{bottom:825.471339pt;}
.y3a_c00386{bottom:825.678197pt;}
.y39_c00386{bottom:825.944843pt;}
.y38_c00386{bottom:826.364843pt;}
.y37_c00386{bottom:826.576107pt;}
.y36_c00386{bottom:827.057237pt;}
.y35_c00386{bottom:827.260235pt;}
.y34_c00386{bottom:827.463200pt;}
.y33_c00386{bottom:828.145344pt;}
.y32_c00386{bottom:828.337131pt;}
.y31_c00386{bottom:828.478677pt;}
.y30_c00386{bottom:855.828704pt;}
.y2f_c00386{bottom:856.704117pt;}
.y2e_c00386{bottom:856.946080pt;}
.y2d_c00386{bottom:857.105664pt;}
.y2c_c00386{bottom:857.660192pt;}
.y2b_c00386{bottom:858.363104pt;}
.y2a_c00386{bottom:858.973632pt;}
.y29_c00386{bottom:859.380587pt;}
.y28_c00386{bottom:859.920000pt;}
.y27_c00386{bottom:890.231861pt;}
.y26_c00386{bottom:890.651917pt;}
.y25_c00386{bottom:890.928072pt;}
.y24_c00386{bottom:891.602667pt;}
.y23_c00386{bottom:918.345968pt;}
.y22_c00386{bottom:919.014049pt;}
.y21_c00386{bottom:919.441377pt;}
.y20_c00386{bottom:919.761140pt;}
.y1f_c00386{bottom:919.987843pt;}
.y1e_c00386{bottom:920.759089pt;}
.y1d_c00386{bottom:921.384813pt;}
.y1c_c00386{bottom:921.820531pt;}
.y1b_c00386{bottom:922.264051pt;}
.y1a_c00386{bottom:923.240821pt;}
.y19_c00386{bottom:924.088100pt;}
.y18_c00386{bottom:924.388165pt;}
.y17_c00386{bottom:924.721333pt;}
.y15_c00386{bottom:953.769123pt;}
.y16_c00386{bottom:953.769212pt;}
.y14_c00386{bottom:982.445539pt;}
.y13_c00386{bottom:982.789976pt;}
.y12_c00386{bottom:983.488875pt;}
.y11_c00386{bottom:983.695440pt;}
.y10_c00386{bottom:984.103839pt;}
.yf_c00386{bottom:984.387768pt;}
.ye_c00386{bottom:985.073376pt;}
.yd_c00386{bottom:985.756987pt;}
.yc_c00386{bottom:985.948077pt;}
.yb_c00386{bottom:986.160000pt;}
.ya_c00386{bottom:1013.782609pt;}
.y9_c00386{bottom:1014.769633pt;}
.y8_c00386{bottom:1015.041817pt;}
.y7_c00386{bottom:1015.218733pt;}
.y6_c00386{bottom:1015.918837pt;}
.y5_c00386{bottom:1016.279581pt;}
.y4_c00386{bottom:1016.903857pt;}
.y3_c00386{bottom:1017.696541pt;}
.y2_c00386{bottom:1018.321333pt;}
.y1_c00386{bottom:1066.681333pt;}
.ha_c00386{height:16.000000pt;}
.h11_c00386{height:16.002888pt;}
.h16_c00386{height:21.335136pt;}
.h1c_c00386{height:21.335733pt;}
.h1e_c00386{height:37.336488pt;}
.h2_c00386{height:53.333333pt;}
.h20_c00386{height:58.638060pt;}
.h3_c00386{height:58.669043pt;}
.hb_c00386{height:58.670216pt;}
.h1b_c00386{height:58.673266pt;}
.h14_c00386{height:58.677255pt;}
.h1a_c00386{height:58.689659pt;}
.h22_c00386{height:63.979837pt;}
.hd_c00386{height:64.002048pt;}
.h17_c00386{height:64.005408pt;}
.h12_c00386{height:64.008191pt;}
.h1d_c00386{height:64.014110pt;}
.h19_c00386{height:64.025083pt;}
.h21_c00386{height:69.299525pt;}
.hf_c00386{height:69.333333pt;}
.h5_c00386{height:69.335032pt;}
.h6_c00386{height:69.337528pt;}
.h7_c00386{height:69.340128pt;}
.h10_c00386{height:69.345847pt;}
.h9_c00386{height:74.669056pt;}
.he_c00386{height:74.670400pt;}
.hc_c00386{height:74.671184pt;}
.h15_c00386{height:74.672976pt;}
.h13_c00386{height:74.676223pt;}
.h18_c00386{height:74.677455pt;}
.h4_c00386{height:80.001960pt;}
.h1f_c00386{height:80.012959pt;}
.h8_c00386{height:85.336064pt;}
.h1_c00386{height:1112.000000pt;}
.h0_c00386{height:1112.133333pt;}
.w0_c00386{width:813.333333pt;}
.x0_c00386{left:0.000000pt;}
.x3_c00386{left:135.666667pt;}
.x20_c00386{left:138.409333pt;}
.x63_c00386{left:139.561333pt;}
.x7a_c00386{left:140.827171pt;}
.xc_c00386{left:148.737333pt;}
.x27_c00386{left:158.824459pt;}
.x5d_c00386{left:159.740000pt;}
.x4c_c00386{left:168.822667pt;}
.xd_c00386{left:179.012000pt;}
.x5e_c00386{left:180.434667pt;}
.x4d_c00386{left:189.078667pt;}
.x3b_c00386{left:196.942667pt;}
.x4_c00386{left:205.088000pt;}
.xe_c00386{left:206.310667pt;}
.x43_c00386{left:207.274016pt;}
.x7b_c00386{left:208.802731pt;}
.x4e_c00386{left:215.332000pt;}
.x71_c00386{left:217.926667pt;}
.x21_c00386{left:256.705333pt;}
.x44_c00386{left:264.867808pt;}
.x15_c00386{left:283.316000pt;}
.x53_c00386{left:284.934293pt;}
.x7f_c00386{left:286.080000pt;}
.x45_c00386{left:288.111989pt;}
.x72_c00386{left:292.254667pt;}
.x5_c00386{left:293.164000pt;}
.x56_c00386{left:294.053333pt;}
.x69_c00386{left:296.534069pt;}
.x13_c00386{left:302.643483pt;}
.xf_c00386{left:303.969333pt;}
.x80_c00386{left:305.662667pt;}
.x67_c00386{left:308.078667pt;}
.x3a_c00386{left:313.294933pt;}
.x35_c00386{left:323.629333pt;}
.x22_c00386{left:333.021333pt;}
.x14_c00386{left:343.204137pt;}
.x1f_c00386{left:352.348000pt;}
.x6_c00386{left:362.528000pt;}
.x50_c00386{left:363.898667pt;}
.x16_c00386{left:372.113333pt;}
.x5f_c00386{left:373.032000pt;}
.x57_c00386{left:382.574667pt;}
.x6e_c00386{left:385.349333pt;}
.x81_c00386{left:393.213695pt;}
.x1_c00386{left:401.520000pt;}
.x7_c00386{left:402.610667pt;}
.x17_c00386{left:412.433333pt;}
.x60_c00386{left:413.588000pt;}
.x2_c00386{left:421.680000pt;}
.x58_c00386{left:422.945333pt;}
.x5b_c00386{left:428.825643pt;}
.x28_c00386{left:430.481291pt;}
.x51_c00386{left:432.073333pt;}
.x6a_c00386{left:433.288000pt;}
.x3c_c00386{left:441.502667pt;}
.x10_c00386{left:442.474667pt;}
.x36_c00386{left:451.072000pt;}
.x18_c00386{left:452.044000pt;}
.x6f_c00386{left:454.740000pt;}
.x29_c00386{left:460.722869pt;}
.x64_c00386{left:462.042667pt;}
.x3d_c00386{left:470.548000pt;}
.x68_c00386{left:471.589333pt;}
.x4f_c00386{left:479.218769pt;}
.x8_c00386{left:480.400000pt;}
.x48_c00386{left:481.794667pt;}
.x23_c00386{left:490.201333pt;}
.x52_c00386{left:491.829333pt;}
.x9_c00386{left:500.057333pt;}
.x70_c00386{left:502.104000pt;}
.x19_c00386{left:508.928000pt;}
.x24_c00386{left:510.149333pt;}
.x41_c00386{left:519.278720pt;}
.x2a_c00386{left:520.723349pt;}
.x73_c00386{left:525.048000pt;}
.x2e_c00386{left:527.040000pt;}
.xa_c00386{left:530.300000pt;}
.x65_c00386{left:531.669333pt;}
.x25_c00386{left:540.394667pt;}
.x59_c00386{left:549.936000pt;}
.x61_c00386{left:551.153333pt;}
.x2b_c00386{left:558.887659pt;}
.x37_c00386{left:560.278667pt;}
.x7c_c00386{left:561.198255pt;}
.x66_c00386{left:569.852000pt;}
.x74_c00386{left:571.592000pt;}
.x2f_c00386{left:576.000000pt;}
.x1a_c00386{left:579.041333pt;}
.x75_c00386{left:582.390667pt;}
.x2c_c00386{left:588.411893pt;}
.x49_c00386{left:589.573333pt;}
.x76_c00386{left:591.214667pt;}
.x3e_c00386{left:598.725333pt;}
.x1b_c00386{left:599.650667pt;}
.x6c_c00386{left:605.232553pt;}
.x30_c00386{left:608.880000pt;}
.x46_c00386{left:609.773237pt;}
.x4a_c00386{left:620.064000pt;}
.x7d_c00386{left:621.148875pt;}
.x1c_c00386{left:628.720000pt;}
.x11_c00386{left:630.169333pt;}
.x2d_c00386{left:638.336288pt;}
.xb_c00386{left:639.969333pt;}
.x6b_c00386{left:640.973333pt;}
.x31_c00386{left:645.840000pt;}
.x38_c00386{left:647.921333pt;}
.x26_c00386{left:649.821333pt;}
.x5a_c00386{left:659.897333pt;}
.x32_c00386{left:661.920000pt;}
.x1d_c00386{left:667.568000pt;}
.x39_c00386{left:668.776000pt;}
.x77_c00386{left:670.453333pt;}
.x33_c00386{left:676.080000pt;}
.x12_c00386{left:679.374667pt;}
.x5c_c00386{left:682.004389pt;}
.x3f_c00386{left:687.305333pt;}
.x54_c00386{left:689.188757pt;}
.x34_c00386{left:695.520000pt;}
.x47_c00386{left:699.297952pt;}
.x78_c00386{left:700.736000pt;}
.x7e_c00386{left:710.186749pt;}
.x6d_c00386{left:711.549333pt;}
.x40_c00386{left:718.242667pt;}
.x55_c00386{left:719.174560pt;}
.x1e_c00386{left:728.302667pt;}
.x4b_c00386{left:729.268000pt;}
.x79_c00386{left:738.808000pt;}
.x62_c00386{left:749.186667pt;}
.x42_c00386{left:809.260053pt;}
}





/* 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_c00387 {
    display:none;
  }
  .loading-indicator_c00387.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00387 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_c00387 { 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_c00387" -> "#page-container .classname_c00387")
 */
.pf_c00387 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00387 { /* 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_c00387.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00387 { /* 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_c00387 { /* 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_c00387 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00387 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00387 {overflow:visible;}
  }
}
.c_c00387 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00387 { /* 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_c00387:after { /* webkit #35443 */
  content: '';
}
.t_c00387:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00387 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 */
}
.__c00387 { /* 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_c00387 { /* info for Javascript */
  display:none;
}
.l_c00387 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00387 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00387 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00387: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_c00387 {
    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_c00387.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00387.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_c00387 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00387{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00387;src:url('chunks/assets/font_92d6bb63cbc780ceff7db400.woff2')format("woff");}.ff1_c00387{font-family:ff1_c00387;line-height:1.000000;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;}
.m8_c00387{transform:matrix(0.155583,0.005762,-0.009253,0.249829,0,0);-ms-transform:matrix(0.155583,0.005762,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.155583,0.005762,-0.009253,0.249829,0,0);}
.m1_c00387{transform:matrix(0.166925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166925,0.000000,0.000000,0.250000,0,0);}
.ma_c00387{transform:matrix(0.184838,0.006846,-0.009253,0.249829,0,0);-ms-transform:matrix(0.184838,0.006846,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.184838,0.006846,-0.009253,0.249829,0,0);}
.mb_c00387{transform:matrix(0.186067,0.006891,-0.009253,0.249829,0,0);-ms-transform:matrix(0.186067,0.006891,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.186067,0.006891,-0.009253,0.249829,0,0);}
.m9_c00387{transform:matrix(0.201527,0.007464,-0.009253,0.249829,0,0);-ms-transform:matrix(0.201527,0.007464,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.201527,0.007464,-0.009253,0.249829,0,0);}
.m7_c00387{transform:matrix(0.211854,0.004873,-0.005748,0.249934,0,0);-ms-transform:matrix(0.211854,0.004873,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.211854,0.004873,-0.005748,0.249934,0,0);}
.m4_c00387{transform:matrix(0.213029,0.004900,-0.005748,0.249934,0,0);-ms-transform:matrix(0.213029,0.004900,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.213029,0.004900,-0.005748,0.249934,0,0);}
.m5_c00387{transform:matrix(0.227010,0.005221,-0.005748,0.249934,0,0);-ms-transform:matrix(0.227010,0.005221,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.227010,0.005221,-0.005748,0.249934,0,0);}
.m6_c00387{transform:matrix(0.229654,0.005282,-0.005748,0.249934,0,0);-ms-transform:matrix(0.229654,0.005282,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.229654,0.005282,-0.005748,0.249934,0,0);}
.m0_c00387{transform:matrix(0.235505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235505,0.000000,0.000000,0.250000,0,0);}
.m3_c00387{transform:matrix(0.247115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247115,0.000000,0.000000,0.250000,0,0);}
.m2_c00387{transform:matrix(0.260350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260350,0.000000,0.000000,0.250000,0,0);}
.v0_c00387{vertical-align:0.000000px;}
.ls0_c00387{letter-spacing:0.000000px;}
.sc__c00387{text-shadow:none;}
.sc0_c00387{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__c00387{-webkit-text-stroke:0px transparent;}
.sc0_c00387{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00387{word-spacing:0.000000px;}
.fc0_c00387{color:transparent;}
.fs0_c00387{font-size:24.000000px;}
.fs1_c00387{font-size:66.000000px;}
.fs2_c00387{font-size:90.023802px;}
.fs3_c00387{font-size:113.964084px;}
.y0_c00387{bottom:0.000000px;}
.ya_c00387{bottom:1089.938052px;}
.y9_c00387{bottom:1094.180527px;}
.y8_c00387{bottom:1095.835149px;}
.y7_c00387{bottom:1097.316000px;}
.y6_c00387{bottom:1127.426422px;}
.y5_c00387{bottom:1129.291217px;}
.y4_c00387{bottom:1130.241105px;}
.y3_c00387{bottom:1131.307500px;}
.y2_c00387{bottom:1188.526500px;}
.y1_c00387{bottom:1246.185000px;}
.h2_c00387{height:24.000000px;}
.h3_c00387{height:66.000000px;}
.h4_c00387{height:90.023802px;}
.h5_c00387{height:113.964084px;}
.h1_c00387{height:1251.000000px;}
.h0_c00387{height:1251.150000px;}
.w0_c00387{width:915.000000px;}
.x0_c00387{left:0.000000px;}
.x9_c00387{left:381.882000px;}
.x2_c00387{left:390.690000px;}
.x3_c00387{left:416.610000px;}
.xa_c00387{left:421.864977px;}
.x5_c00387{left:423.546000px;}
.x4_c00387{left:439.290000px;}
.x1_c00387{left:450.090000px;}
.xb_c00387{left:466.539758px;}
.x6_c00387{left:469.911000px;}
.x7_c00387{left:511.210500px;}
.xc_c00387{left:581.086596px;}
.x8_c00387{left:592.288500px;}
@media print{
.v0_c00387{vertical-align:0.000000pt;}
.ls0_c00387{letter-spacing:0.000000pt;}
.ws0_c00387{word-spacing:0.000000pt;}
.fs0_c00387{font-size:21.333333pt;}
.fs1_c00387{font-size:58.666667pt;}
.fs2_c00387{font-size:80.021157pt;}
.fs3_c00387{font-size:101.301408pt;}
.y0_c00387{bottom:0.000000pt;}
.ya_c00387{bottom:968.833824pt;}
.y9_c00387{bottom:972.604913pt;}
.y8_c00387{bottom:974.075688pt;}
.y7_c00387{bottom:975.392000pt;}
.y6_c00387{bottom:1002.156820pt;}
.y5_c00387{bottom:1003.814415pt;}
.y4_c00387{bottom:1004.658760pt;}
.y3_c00387{bottom:1005.606667pt;}
.y2_c00387{bottom:1056.468000pt;}
.y1_c00387{bottom:1107.720000pt;}
.h2_c00387{height:21.333333pt;}
.h3_c00387{height:58.666667pt;}
.h4_c00387{height:80.021157pt;}
.h5_c00387{height:101.301408pt;}
.h1_c00387{height:1112.000000pt;}
.h0_c00387{height:1112.133333pt;}
.w0_c00387{width:813.333333pt;}
.x0_c00387{left:0.000000pt;}
.x9_c00387{left:339.450667pt;}
.x2_c00387{left:347.280000pt;}
.x3_c00387{left:370.320000pt;}
.xa_c00387{left:374.991091pt;}
.x5_c00387{left:376.485333pt;}
.x4_c00387{left:390.480000pt;}
.x1_c00387{left:400.080000pt;}
.xb_c00387{left:414.702007pt;}
.x6_c00387{left:417.698667pt;}
.x7_c00387{left:454.409333pt;}
.xc_c00387{left:516.521419pt;}
.x8_c00387{left:526.478667pt;}
}





/* 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_c00388 {
    display:none;
  }
  .loading-indicator_c00388.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00388 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_c00388 { 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_c00388" -> "#page-container .classname_c00388")
 */
.pf_c00388 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00388 { /* 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_c00388.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00388 { /* 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_c00388 { /* 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_c00388 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00388 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00388 {overflow:visible;}
  }
}
.c_c00388 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00388 { /* 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_c00388:after { /* webkit #35443 */
  content: '';
}
.t_c00388:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00388 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 */
}
.__c00388 { /* 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_c00388 { /* info for Javascript */
  display:none;
}
.l_c00388 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00388 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00388 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00388: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_c00388 {
    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_c00388.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00388.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_c00388 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00388{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00388;src:url('chunks/assets/font_c605e72f209fc835e906f064.woff2')format("woff");}.ff1_c00388{font-family:ff1_c00388;line-height:1.000000;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;}
.md5_c00388{transform:matrix(0.083386,0.003506,-0.010501,0.249779,0,0);-ms-transform:matrix(0.083386,0.003506,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.083386,0.003506,-0.010501,0.249779,0,0);}
.m7a_c00388{transform:matrix(0.092565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092565,0.000000,0.000000,0.250000,0,0);}
.m95_c00388{transform:matrix(0.106738,0.003633,-0.008504,0.249855,0,0);-ms-transform:matrix(0.106738,0.003633,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.106738,0.003633,-0.008504,0.249855,0,0);}
.m4f_c00388{transform:matrix(0.127291,0.004205,-0.008254,0.249864,0,0);-ms-transform:matrix(0.127291,0.004205,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.127291,0.004205,-0.008254,0.249864,0,0);}
.md6_c00388{transform:matrix(0.140866,0.005922,-0.010501,0.249779,0,0);-ms-transform:matrix(0.140866,0.005922,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.140866,0.005922,-0.010501,0.249779,0,0);}
.m36_c00388{transform:matrix(0.144531,0.004480,-0.007746,0.249880,0,0);-ms-transform:matrix(0.144531,0.004480,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.144531,0.004480,-0.007746,0.249880,0,0);}
.m94_c00388{transform:matrix(0.151078,0.005142,-0.008504,0.249855,0,0);-ms-transform:matrix(0.151078,0.005142,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.151078,0.005142,-0.008504,0.249855,0,0);}
.m9_c00388{transform:matrix(0.158829,0.004765,-0.007497,0.249888,0,0);-ms-transform:matrix(0.158829,0.004765,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.158829,0.004765,-0.007497,0.249888,0,0);}
.m48_c00388{transform:matrix(0.162697,0.005044,-0.007746,0.249880,0,0);-ms-transform:matrix(0.162697,0.005044,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.162697,0.005044,-0.007746,0.249880,0,0);}
.m46_c00388{transform:matrix(0.170103,0.005273,-0.007746,0.249880,0,0);-ms-transform:matrix(0.170103,0.005273,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.170103,0.005273,-0.007746,0.249880,0,0);}
.m32_c00388{transform:matrix(0.170416,0.002556,-0.003750,0.249972,0,0);-ms-transform:matrix(0.170416,0.002556,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.170416,0.002556,-0.003750,0.249972,0,0);}
.m4c_c00388{transform:matrix(0.174226,0.005401,-0.007746,0.249880,0,0);-ms-transform:matrix(0.174226,0.005401,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.174226,0.005401,-0.007746,0.249880,0,0);}
.m37_c00388{transform:matrix(0.183617,0.005692,-0.007746,0.249880,0,0);-ms-transform:matrix(0.183617,0.005692,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.183617,0.005692,-0.007746,0.249880,0,0);}
.m4a_c00388{transform:matrix(0.184921,0.005733,-0.007746,0.249880,0,0);-ms-transform:matrix(0.184921,0.005733,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.184921,0.005733,-0.007746,0.249880,0,0);}
.mb8_c00388{transform:matrix(0.185367,0.004820,-0.006498,0.249916,0,0);-ms-transform:matrix(0.185367,0.004820,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.185367,0.004820,-0.006498,0.249916,0,0);}
.m68_c00388{transform:matrix(0.187006,0.004488,-0.005998,0.249928,0,0);-ms-transform:matrix(0.187006,0.004488,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.187006,0.004488,-0.005998,0.249928,0,0);}
.m4d_c00388{transform:matrix(0.189354,0.005870,-0.007746,0.249880,0,0);-ms-transform:matrix(0.189354,0.005870,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.189354,0.005870,-0.007746,0.249880,0,0);}
.m12_c00388{transform:matrix(0.191885,0.004989,-0.006498,0.249916,0,0);-ms-transform:matrix(0.191885,0.004989,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.191885,0.004989,-0.006498,0.249916,0,0);}
.m4e_c00388{transform:matrix(0.192443,0.005966,-0.007746,0.249880,0,0);-ms-transform:matrix(0.192443,0.005966,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.192443,0.005966,-0.007746,0.249880,0,0);}
.m4b_c00388{transform:matrix(0.192717,0.005974,-0.007746,0.249880,0,0);-ms-transform:matrix(0.192717,0.005974,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.192717,0.005974,-0.007746,0.249880,0,0);}
.m88_c00388{transform:matrix(0.194020,0.006215,-0.008004,0.249872,0,0);-ms-transform:matrix(0.194020,0.006215,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.194020,0.006215,-0.008004,0.249872,0,0);}
.mbd_c00388{transform:matrix(0.194284,0.005051,-0.006498,0.249916,0,0);-ms-transform:matrix(0.194284,0.005051,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.194284,0.005051,-0.006498,0.249916,0,0);}
.mde_c00388{transform:matrix(0.195392,0.008215,-0.010501,0.249779,0,0);-ms-transform:matrix(0.195392,0.008215,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.195392,0.008215,-0.010501,0.249779,0,0);}
.mda_c00388{transform:matrix(0.197156,0.008289,-0.010501,0.249779,0,0);-ms-transform:matrix(0.197156,0.008289,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.197156,0.008289,-0.010501,0.249779,0,0);}
.m51_c00388{transform:matrix(0.197802,0.006534,-0.008254,0.249864,0,0);-ms-transform:matrix(0.197802,0.006534,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.197802,0.006534,-0.008254,0.249864,0,0);}
.m14_c00388{transform:matrix(0.197843,0.005144,-0.006498,0.249916,0,0);-ms-transform:matrix(0.197843,0.005144,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.197843,0.005144,-0.006498,0.249916,0,0);}
.m47_c00388{transform:matrix(0.197960,0.006137,-0.007746,0.249880,0,0);-ms-transform:matrix(0.197960,0.006137,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.197960,0.006137,-0.007746,0.249880,0,0);}
.m31_c00388{transform:matrix(0.198203,0.002973,-0.003750,0.249972,0,0);-ms-transform:matrix(0.198203,0.002973,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.198203,0.002973,-0.003750,0.249972,0,0);}
.mc6_c00388{transform:matrix(0.198945,0.006771,-0.008504,0.249855,0,0);-ms-transform:matrix(0.198945,0.006771,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.198945,0.006771,-0.008504,0.249855,0,0);}
.m49_c00388{transform:matrix(0.199694,0.006191,-0.007746,0.249880,0,0);-ms-transform:matrix(0.199694,0.006191,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.199694,0.006191,-0.007746,0.249880,0,0);}
.m33_c00388{transform:matrix(0.199938,0.002999,-0.003750,0.249972,0,0);-ms-transform:matrix(0.199938,0.002999,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.199938,0.002999,-0.003750,0.249972,0,0);}
.m27_c00388{transform:matrix(0.200912,0.005224,-0.006498,0.249916,0,0);-ms-transform:matrix(0.200912,0.005224,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.200912,0.005224,-0.006498,0.249916,0,0);}
.m58_c00388{transform:matrix(0.201385,0.006652,-0.008254,0.249864,0,0);-ms-transform:matrix(0.201385,0.006652,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.201385,0.006652,-0.008254,0.249864,0,0);}
.m6d_c00388{transform:matrix(0.202588,0.006280,-0.007746,0.249880,0,0);-ms-transform:matrix(0.202588,0.006280,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.202588,0.006280,-0.007746,0.249880,0,0);}
.mdb_c00388{transform:matrix(0.203121,0.008540,-0.010501,0.249779,0,0);-ms-transform:matrix(0.203121,0.008540,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.203121,0.008540,-0.010501,0.249779,0,0);}
.m3d_c00388{transform:matrix(0.204157,0.006329,-0.007746,0.249880,0,0);-ms-transform:matrix(0.204157,0.006329,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.204157,0.006329,-0.007746,0.249880,0,0);}
.m71_c00388{transform:matrix(0.204992,0.006355,-0.007746,0.249880,0,0);-ms-transform:matrix(0.204992,0.006355,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.204992,0.006355,-0.007746,0.249880,0,0);}
.mb9_c00388{transform:matrix(0.205700,0.005348,-0.006498,0.249916,0,0);-ms-transform:matrix(0.205700,0.005348,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.205700,0.005348,-0.006498,0.249916,0,0);}
.m6e_c00388{transform:matrix(0.206871,0.006413,-0.007746,0.249880,0,0);-ms-transform:matrix(0.206871,0.006413,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.206871,0.006413,-0.007746,0.249880,0,0);}
.m39_c00388{transform:matrix(0.207155,0.006422,-0.007746,0.249880,0,0);-ms-transform:matrix(0.207155,0.006422,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.207155,0.006422,-0.007746,0.249880,0,0);}
.m72_c00388{transform:matrix(0.207535,0.006434,-0.007746,0.249880,0,0);-ms-transform:matrix(0.207535,0.006434,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.207535,0.006434,-0.007746,0.249880,0,0);}
.mbe_c00388{transform:matrix(0.208535,0.005422,-0.006498,0.249916,0,0);-ms-transform:matrix(0.208535,0.005422,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.208535,0.005422,-0.006498,0.249916,0,0);}
.m3b_c00388{transform:matrix(0.208920,0.006477,-0.007746,0.249880,0,0);-ms-transform:matrix(0.208920,0.006477,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.208920,0.006477,-0.007746,0.249880,0,0);}
.m21_c00388{transform:matrix(0.209229,0.005440,-0.006498,0.249916,0,0);-ms-transform:matrix(0.209229,0.005440,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.209229,0.005440,-0.006498,0.249916,0,0);}
.m34_c00388{transform:matrix(0.209501,0.003143,-0.003750,0.249972,0,0);-ms-transform:matrix(0.209501,0.003143,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.209501,0.003143,-0.003750,0.249972,0,0);}
.m1a_c00388{transform:matrix(0.209669,0.005451,-0.006498,0.249916,0,0);-ms-transform:matrix(0.209669,0.005451,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.209669,0.005451,-0.006498,0.249916,0,0);}
.m81_c00388{transform:matrix(0.210502,0.006743,-0.008004,0.249872,0,0);-ms-transform:matrix(0.210502,0.006743,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.210502,0.006743,-0.008004,0.249872,0,0);}
.m52_c00388{transform:matrix(0.210910,0.006967,-0.008254,0.249864,0,0);-ms-transform:matrix(0.210910,0.006967,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.210910,0.006967,-0.008254,0.249864,0,0);}
.m56_c00388{transform:matrix(0.211370,0.006982,-0.008254,0.249864,0,0);-ms-transform:matrix(0.211370,0.006982,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.211370,0.006982,-0.008254,0.249864,0,0);}
.m1d_c00388{transform:matrix(0.211424,0.005497,-0.006498,0.249916,0,0);-ms-transform:matrix(0.211424,0.005497,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.211424,0.005497,-0.006498,0.249916,0,0);}
.m6_c00388{transform:matrix(0.211470,0.006344,-0.007497,0.249888,0,0);-ms-transform:matrix(0.211470,0.006344,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.211470,0.006344,-0.007497,0.249888,0,0);}
.m35_c00388{transform:matrix(0.211901,0.003179,-0.003750,0.249972,0,0);-ms-transform:matrix(0.211901,0.003179,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.211901,0.003179,-0.003750,0.249972,0,0);}
.m28_c00388{transform:matrix(0.213733,0.005557,-0.006498,0.249916,0,0);-ms-transform:matrix(0.213733,0.005557,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.213733,0.005557,-0.006498,0.249916,0,0);}
.mb_c00388{transform:matrix(0.217637,0.006529,-0.007497,0.249888,0,0);-ms-transform:matrix(0.217637,0.006529,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.217637,0.006529,-0.007497,0.249888,0,0);}
.m54_c00388{transform:matrix(0.218096,0.007204,-0.008254,0.249864,0,0);-ms-transform:matrix(0.218096,0.007204,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.218096,0.007204,-0.008254,0.249864,0,0);}
.m45_c00388{transform:matrix(0.218395,0.006770,-0.007746,0.249880,0,0);-ms-transform:matrix(0.218395,0.006770,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.218395,0.006770,-0.007746,0.249880,0,0);}
.m86_c00388{transform:matrix(0.219797,0.007041,-0.008004,0.249872,0,0);-ms-transform:matrix(0.219797,0.007041,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.219797,0.007041,-0.008004,0.249872,0,0);}
.m22_c00388{transform:matrix(0.220825,0.005741,-0.006498,0.249916,0,0);-ms-transform:matrix(0.220825,0.005741,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.220825,0.005741,-0.006498,0.249916,0,0);}
.md7_c00388{transform:matrix(0.221939,0.009331,-0.010501,0.249779,0,0);-ms-transform:matrix(0.221939,0.009331,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.221939,0.009331,-0.010501,0.249779,0,0);}
.mbb_c00388{transform:matrix(0.222000,0.005772,-0.006498,0.249916,0,0);-ms-transform:matrix(0.222000,0.005772,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.222000,0.005772,-0.006498,0.249916,0,0);}
.m16_c00388{transform:matrix(0.222915,0.005796,-0.006498,0.249916,0,0);-ms-transform:matrix(0.222915,0.005796,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.222915,0.005796,-0.006498,0.249916,0,0);}
.m3_c00388{transform:matrix(0.222930,0.006688,-0.007497,0.249888,0,0);-ms-transform:matrix(0.222930,0.006688,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.222930,0.006688,-0.007497,0.249888,0,0);}
.m2d_c00388{transform:matrix(0.223195,0.005803,-0.006498,0.249916,0,0);-ms-transform:matrix(0.223195,0.005803,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.223195,0.005803,-0.006498,0.249916,0,0);}
.mc0_c00388{transform:matrix(0.223200,0.005803,-0.006498,0.249916,0,0);-ms-transform:matrix(0.223200,0.005803,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.223200,0.005803,-0.006498,0.249916,0,0);}
.mdc_c00388{transform:matrix(0.223218,0.009385,-0.010501,0.249779,0,0);-ms-transform:matrix(0.223218,0.009385,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.223218,0.009385,-0.010501,0.249779,0,0);}
.m10_c00388{transform:matrix(0.223275,0.005805,-0.006498,0.249916,0,0);-ms-transform:matrix(0.223275,0.005805,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.223275,0.005805,-0.006498,0.249916,0,0);}
.me_c00388{transform:matrix(0.223519,0.006706,-0.007497,0.249888,0,0);-ms-transform:matrix(0.223519,0.006706,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.223519,0.006706,-0.007497,0.249888,0,0);}
.md8_c00388{transform:matrix(0.223887,0.009413,-0.010501,0.249779,0,0);-ms-transform:matrix(0.223887,0.009413,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.223887,0.009413,-0.010501,0.249779,0,0);}
.mc8_c00388{transform:matrix(0.224590,0.007644,-0.008504,0.249855,0,0);-ms-transform:matrix(0.224590,0.007644,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.224590,0.007644,-0.008504,0.249855,0,0);}
.mc4_c00388{transform:matrix(0.225215,0.007665,-0.008504,0.249855,0,0);-ms-transform:matrix(0.225215,0.007665,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.225215,0.007665,-0.008504,0.249855,0,0);}
.m67_c00388{transform:matrix(0.225280,0.005407,-0.005998,0.249928,0,0);-ms-transform:matrix(0.225280,0.005407,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.225280,0.005407,-0.005998,0.249928,0,0);}
.mbf_c00388{transform:matrix(0.226423,0.005887,-0.006498,0.249916,0,0);-ms-transform:matrix(0.226423,0.005887,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.226423,0.005887,-0.006498,0.249916,0,0);}
.mf_c00388{transform:matrix(0.226678,0.005894,-0.006498,0.249916,0,0);-ms-transform:matrix(0.226678,0.005894,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.226678,0.005894,-0.006498,0.249916,0,0);}
.m82_c00388{transform:matrix(0.226934,0.007269,-0.008004,0.249872,0,0);-ms-transform:matrix(0.226934,0.007269,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.226934,0.007269,-0.008004,0.249872,0,0);}
.m1b_c00388{transform:matrix(0.227278,0.005909,-0.006498,0.249916,0,0);-ms-transform:matrix(0.227278,0.005909,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.227278,0.005909,-0.006498,0.249916,0,0);}
.m76_c00388{transform:matrix(0.227298,0.007736,-0.008504,0.249855,0,0);-ms-transform:matrix(0.227298,0.007736,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.227298,0.007736,-0.008504,0.249855,0,0);}
.m19_c00388{transform:matrix(0.227338,0.005911,-0.006498,0.249916,0,0);-ms-transform:matrix(0.227338,0.005911,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.227338,0.005911,-0.006498,0.249916,0,0);}
.m8_c00388{transform:matrix(0.227842,0.006835,-0.007497,0.249888,0,0);-ms-transform:matrix(0.227842,0.006835,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.227842,0.006835,-0.007497,0.249888,0,0);}
.mcd_c00388{transform:matrix(0.228028,0.007761,-0.008504,0.249855,0,0);-ms-transform:matrix(0.228028,0.007761,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.228028,0.007761,-0.008504,0.249855,0,0);}
.m6f_c00388{transform:matrix(0.229035,0.007100,-0.007746,0.249880,0,0);-ms-transform:matrix(0.229035,0.007100,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.229035,0.007100,-0.007746,0.249880,0,0);}
.mb6_c00388{transform:matrix(0.229572,0.005969,-0.006498,0.249916,0,0);-ms-transform:matrix(0.229572,0.005969,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.229572,0.005969,-0.006498,0.249916,0,0);}
.mbc_c00388{transform:matrix(0.230202,0.005985,-0.006498,0.249916,0,0);-ms-transform:matrix(0.230202,0.005985,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.230202,0.005985,-0.006498,0.249916,0,0);}
.m59_c00388{transform:matrix(0.230364,0.007610,-0.008254,0.249864,0,0);-ms-transform:matrix(0.230364,0.007610,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.230364,0.007610,-0.008254,0.249864,0,0);}
.m6b_c00388{transform:matrix(0.230429,0.007143,-0.007746,0.249880,0,0);-ms-transform:matrix(0.230429,0.007143,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.230429,0.007143,-0.007746,0.249880,0,0);}
.m5c_c00388{transform:matrix(0.230529,0.005533,-0.005998,0.249928,0,0);-ms-transform:matrix(0.230529,0.005533,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.230529,0.005533,-0.005998,0.249928,0,0);}
.m60_c00388{transform:matrix(0.230744,0.005538,-0.005998,0.249928,0,0);-ms-transform:matrix(0.230744,0.005538,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.230744,0.005538,-0.005998,0.249928,0,0);}
.m92_c00388{transform:matrix(0.230777,0.007392,-0.008004,0.249872,0,0);-ms-transform:matrix(0.230777,0.007392,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.230777,0.007392,-0.008004,0.249872,0,0);}
.m55_c00388{transform:matrix(0.230904,0.007627,-0.008254,0.249864,0,0);-ms-transform:matrix(0.230904,0.007627,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.230904,0.007627,-0.008254,0.249864,0,0);}
.m6c_c00388{transform:matrix(0.230989,0.007161,-0.007746,0.249880,0,0);-ms-transform:matrix(0.230989,0.007161,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.230989,0.007161,-0.007746,0.249880,0,0);}
.m57_c00388{transform:matrix(0.230999,0.007631,-0.008254,0.249864,0,0);-ms-transform:matrix(0.230999,0.007631,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.230999,0.007631,-0.008254,0.249864,0,0);}
.mb7_c00388{transform:matrix(0.231342,0.006015,-0.006498,0.249916,0,0);-ms-transform:matrix(0.231342,0.006015,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.231342,0.006015,-0.006498,0.249916,0,0);}
.m63_c00388{transform:matrix(0.231368,0.005553,-0.005998,0.249928,0,0);-ms-transform:matrix(0.231368,0.005553,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.231368,0.005553,-0.005998,0.249928,0,0);}
.m1_c00388{transform:matrix(0.231601,0.006948,-0.007497,0.249888,0,0);-ms-transform:matrix(0.231601,0.006948,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.231601,0.006948,-0.007497,0.249888,0,0);}
.m30_c00388{transform:matrix(0.231674,0.003475,-0.003750,0.249972,0,0);-ms-transform:matrix(0.231674,0.003475,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.231674,0.003475,-0.003750,0.249972,0,0);}
.m9a_c00388{transform:matrix(0.232141,0.007901,-0.008504,0.249855,0,0);-ms-transform:matrix(0.232141,0.007901,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.232141,0.007901,-0.008504,0.249855,0,0);}
.m97_c00388{transform:matrix(0.232151,0.007901,-0.008504,0.249855,0,0);-ms-transform:matrix(0.232151,0.007901,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.232151,0.007901,-0.008504,0.249855,0,0);}
.mdf_c00388{transform:matrix(0.232165,0.009761,-0.010501,0.249779,0,0);-ms-transform:matrix(0.232165,0.009761,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.232165,0.009761,-0.010501,0.249779,0,0);}
.m9d_c00388{transform:matrix(0.232850,0.007925,-0.008504,0.249855,0,0);-ms-transform:matrix(0.232850,0.007925,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.232850,0.007925,-0.008504,0.249855,0,0);}
.me0_c00388{transform:matrix(0.233139,0.009802,-0.010501,0.249779,0,0);-ms-transform:matrix(0.233139,0.009802,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.233139,0.009802,-0.010501,0.249779,0,0);}
.m8a_c00388{transform:matrix(0.233890,0.007492,-0.008004,0.249872,0,0);-ms-transform:matrix(0.233890,0.007492,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.233890,0.007492,-0.008004,0.249872,0,0);}
.md9_c00388{transform:matrix(0.234018,0.009839,-0.010501,0.249779,0,0);-ms-transform:matrix(0.234018,0.009839,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.234018,0.009839,-0.010501,0.249779,0,0);}
.mdd_c00388{transform:matrix(0.234338,0.009852,-0.010501,0.249779,0,0);-ms-transform:matrix(0.234338,0.009852,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.234338,0.009852,-0.010501,0.249779,0,0);}
.m70_c00388{transform:matrix(0.234627,0.007273,-0.007746,0.249880,0,0);-ms-transform:matrix(0.234627,0.007273,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.234627,0.007273,-0.007746,0.249880,0,0);}
.m53_c00388{transform:matrix(0.235187,0.007769,-0.008254,0.249864,0,0);-ms-transform:matrix(0.235187,0.007769,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.235187,0.007769,-0.008254,0.249864,0,0);}
.m64_c00388{transform:matrix(0.235862,0.005661,-0.005998,0.249928,0,0);-ms-transform:matrix(0.235862,0.005661,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.235862,0.005661,-0.005998,0.249928,0,0);}
.m87_c00388{transform:matrix(0.235989,0.007559,-0.008004,0.249872,0,0);-ms-transform:matrix(0.235989,0.007559,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.235989,0.007559,-0.008004,0.249872,0,0);}
.mba_c00388{transform:matrix(0.236450,0.006148,-0.006498,0.249916,0,0);-ms-transform:matrix(0.236450,0.006148,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.236450,0.006148,-0.006498,0.249916,0,0);}
.m42_c00388{transform:matrix(0.237146,0.007352,-0.007746,0.249880,0,0);-ms-transform:matrix(0.237146,0.007352,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.237146,0.007352,-0.007746,0.249880,0,0);}
.m89_c00388{transform:matrix(0.237253,0.007600,-0.008004,0.249872,0,0);-ms-transform:matrix(0.237253,0.007600,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.237253,0.007600,-0.008004,0.249872,0,0);}
.m50_c00388{transform:matrix(0.237695,0.007852,-0.008254,0.249864,0,0);-ms-transform:matrix(0.237695,0.007852,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.237695,0.007852,-0.008254,0.249864,0,0);}
.m11_c00388{transform:matrix(0.238140,0.006192,-0.006498,0.249916,0,0);-ms-transform:matrix(0.238140,0.006192,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.238140,0.006192,-0.006498,0.249916,0,0);}
.m26_c00388{transform:matrix(0.238364,0.006197,-0.006498,0.249916,0,0);-ms-transform:matrix(0.238364,0.006197,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.238364,0.006197,-0.006498,0.249916,0,0);}
.m3a_c00388{transform:matrix(0.238955,0.007408,-0.007746,0.249880,0,0);-ms-transform:matrix(0.238955,0.007408,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.238955,0.007408,-0.007746,0.249880,0,0);}
.m84_c00388{transform:matrix(0.239032,0.007657,-0.008004,0.249872,0,0);-ms-transform:matrix(0.239032,0.007657,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.239032,0.007657,-0.008004,0.249872,0,0);}
.m29_c00388{transform:matrix(0.239044,0.006215,-0.006498,0.249916,0,0);-ms-transform:matrix(0.239044,0.006215,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.239044,0.006215,-0.006498,0.249916,0,0);}
.m13_c00388{transform:matrix(0.239249,0.006220,-0.006498,0.249916,0,0);-ms-transform:matrix(0.239249,0.006220,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.239249,0.006220,-0.006498,0.249916,0,0);}
.m24_c00388{transform:matrix(0.239359,0.006223,-0.006498,0.249916,0,0);-ms-transform:matrix(0.239359,0.006223,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.239359,0.006223,-0.006498,0.249916,0,0);}
.m40_c00388{transform:matrix(0.239995,0.007440,-0.007746,0.249880,0,0);-ms-transform:matrix(0.239995,0.007440,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.239995,0.007440,-0.007746,0.249880,0,0);}
.m38_c00388{transform:matrix(0.241259,0.007479,-0.007746,0.249880,0,0);-ms-transform:matrix(0.241259,0.007479,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.241259,0.007479,-0.007746,0.249880,0,0);}
.m8b_c00388{transform:matrix(0.241291,0.007729,-0.008004,0.249872,0,0);-ms-transform:matrix(0.241291,0.007729,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.241291,0.007729,-0.008004,0.249872,0,0);}
.m15_c00388{transform:matrix(0.242033,0.006293,-0.006498,0.249916,0,0);-ms-transform:matrix(0.242033,0.006293,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.242033,0.006293,-0.006498,0.249916,0,0);}
.m2_c00388{transform:matrix(0.242081,0.007262,-0.007497,0.249888,0,0);-ms-transform:matrix(0.242081,0.007262,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.242081,0.007262,-0.007497,0.249888,0,0);}
.mc9_c00388{transform:matrix(0.242405,0.008250,-0.008504,0.249855,0,0);-ms-transform:matrix(0.242405,0.008250,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.242405,0.008250,-0.008504,0.249855,0,0);}
.mc_c00388{transform:matrix(0.242521,0.007276,-0.007497,0.249888,0,0);-ms-transform:matrix(0.242521,0.007276,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.242521,0.007276,-0.007497,0.249888,0,0);}
.m65_c00388{transform:matrix(0.244025,0.005857,-0.005998,0.249928,0,0);-ms-transform:matrix(0.244025,0.005857,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.244025,0.005857,-0.005998,0.249928,0,0);}
.m0_c00388{transform:matrix(0.244085,0.007323,-0.007497,0.249888,0,0);-ms-transform:matrix(0.244085,0.007323,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.244085,0.007323,-0.007497,0.249888,0,0);}
.m1f_c00388{transform:matrix(0.244347,0.006353,-0.006498,0.249916,0,0);-ms-transform:matrix(0.244347,0.006353,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.244347,0.006353,-0.006498,0.249916,0,0);}
.m41_c00388{transform:matrix(0.244827,0.007590,-0.007746,0.249880,0,0);-ms-transform:matrix(0.244827,0.007590,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.244827,0.007590,-0.007746,0.249880,0,0);}
.m7f_c00388{transform:matrix(0.246743,0.007904,-0.008004,0.249872,0,0);-ms-transform:matrix(0.246743,0.007904,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.246743,0.007904,-0.008004,0.249872,0,0);}
.m1e_c00388{transform:matrix(0.247686,0.006440,-0.006498,0.249916,0,0);-ms-transform:matrix(0.247686,0.006440,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.247686,0.006440,-0.006498,0.249916,0,0);}
.m73_c00388{transform:matrix(0.247816,0.007682,-0.007746,0.249880,0,0);-ms-transform:matrix(0.247816,0.007682,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.247816,0.007682,-0.007746,0.249880,0,0);}
.m8f_c00388{transform:matrix(0.248318,0.007954,-0.008004,0.249872,0,0);-ms-transform:matrix(0.248318,0.007954,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.248318,0.007954,-0.008004,0.249872,0,0);}
.m4_c00388{transform:matrix(0.248893,0.007467,-0.007497,0.249888,0,0);-ms-transform:matrix(0.248893,0.007467,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.248893,0.007467,-0.007497,0.249888,0,0);}
.mce_c00388{transform:matrix(0.249071,0.008477,-0.008504,0.249855,0,0);-ms-transform:matrix(0.249071,0.008477,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.249071,0.008477,-0.008504,0.249855,0,0);}
.m5e_c00388{transform:matrix(0.249238,0.005982,-0.005998,0.249928,0,0);-ms-transform:matrix(0.249238,0.005982,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.249238,0.005982,-0.005998,0.249928,0,0);}
.m2f_c00388{transform:matrix(0.249310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249310,0.000000,0.000000,0.250000,0,0);}
.md_c00388{transform:matrix(0.249513,0.007485,-0.007497,0.249888,0,0);-ms-transform:matrix(0.249513,0.007485,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.249513,0.007485,-0.007497,0.249888,0,0);}
.m2a_c00388{transform:matrix(0.250515,0.006513,-0.006498,0.249916,0,0);-ms-transform:matrix(0.250515,0.006513,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.250515,0.006513,-0.006498,0.249916,0,0);}
.m23_c00388{transform:matrix(0.251365,0.006535,-0.006498,0.249916,0,0);-ms-transform:matrix(0.251365,0.006535,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.251365,0.006535,-0.006498,0.249916,0,0);}
.m44_c00388{transform:matrix(0.251509,0.007797,-0.007746,0.249880,0,0);-ms-transform:matrix(0.251509,0.007797,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.251509,0.007797,-0.007746,0.249880,0,0);}
.m25_c00388{transform:matrix(0.251870,0.006549,-0.006498,0.249916,0,0);-ms-transform:matrix(0.251870,0.006549,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.251870,0.006549,-0.006498,0.249916,0,0);}
.m9e_c00388{transform:matrix(0.252244,0.008585,-0.008504,0.249855,0,0);-ms-transform:matrix(0.252244,0.008585,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.252244,0.008585,-0.008504,0.249855,0,0);}
.m3c_c00388{transform:matrix(0.253458,0.007857,-0.007746,0.249880,0,0);-ms-transform:matrix(0.253458,0.007857,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.253458,0.007857,-0.007746,0.249880,0,0);}
.m5_c00388{transform:matrix(0.253461,0.007604,-0.007497,0.249888,0,0);-ms-transform:matrix(0.253461,0.007604,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.253461,0.007604,-0.007497,0.249888,0,0);}
.m7_c00388{transform:matrix(0.253621,0.007609,-0.007497,0.249888,0,0);-ms-transform:matrix(0.253621,0.007609,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.253621,0.007609,-0.007497,0.249888,0,0);}
.m3e_c00388{transform:matrix(0.255322,0.007915,-0.007746,0.249880,0,0);-ms-transform:matrix(0.255322,0.007915,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.255322,0.007915,-0.007746,0.249880,0,0);}
.mc3_c00388{transform:matrix(0.255707,0.008703,-0.008504,0.249855,0,0);-ms-transform:matrix(0.255707,0.008703,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.255707,0.008703,-0.008504,0.249855,0,0);}
.m83_c00388{transform:matrix(0.256359,0.008212,-0.008004,0.249872,0,0);-ms-transform:matrix(0.256359,0.008212,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.256359,0.008212,-0.008004,0.249872,0,0);}
.m20_c00388{transform:matrix(0.256688,0.006674,-0.006498,0.249916,0,0);-ms-transform:matrix(0.256688,0.006674,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.256688,0.006674,-0.006498,0.249916,0,0);}
.m80_c00388{transform:matrix(0.257398,0.008245,-0.008004,0.249872,0,0);-ms-transform:matrix(0.257398,0.008245,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.257398,0.008245,-0.008004,0.249872,0,0);}
.m61_c00388{transform:matrix(0.257476,0.006179,-0.005998,0.249928,0,0);-ms-transform:matrix(0.257476,0.006179,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.257476,0.006179,-0.005998,0.249928,0,0);}
.m6a_c00388{transform:matrix(0.258486,0.006204,-0.005998,0.249928,0,0);-ms-transform:matrix(0.258486,0.006204,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.258486,0.006204,-0.005998,0.249928,0,0);}
.m8c_c00388{transform:matrix(0.259217,0.008303,-0.008004,0.249872,0,0);-ms-transform:matrix(0.259217,0.008303,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.259217,0.008303,-0.008004,0.249872,0,0);}
.md4_c00388{transform:matrix(0.259718,0.007792,-0.007497,0.249888,0,0);-ms-transform:matrix(0.259718,0.007792,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.259718,0.007792,-0.007497,0.249888,0,0);}
.m77_c00388{transform:matrix(0.260009,0.008849,-0.008504,0.249855,0,0);-ms-transform:matrix(0.260009,0.008849,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.260009,0.008849,-0.008504,0.249855,0,0);}
.m62_c00388{transform:matrix(0.260340,0.006248,-0.005998,0.249928,0,0);-ms-transform:matrix(0.260340,0.006248,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.260340,0.006248,-0.005998,0.249928,0,0);}
.m75_c00388{transform:matrix(0.260739,0.008874,-0.008504,0.249855,0,0);-ms-transform:matrix(0.260739,0.008874,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.260739,0.008874,-0.008504,0.249855,0,0);}
.m69_c00388{transform:matrix(0.260815,0.006260,-0.005998,0.249928,0,0);-ms-transform:matrix(0.260815,0.006260,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.260815,0.006260,-0.005998,0.249928,0,0);}
.m2c_c00388{transform:matrix(0.261312,0.006794,-0.006498,0.249916,0,0);-ms-transform:matrix(0.261312,0.006794,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.261312,0.006794,-0.006498,0.249916,0,0);}
.mcb_c00388{transform:matrix(0.262323,0.008928,-0.008504,0.249855,0,0);-ms-transform:matrix(0.262323,0.008928,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.262323,0.008928,-0.008504,0.249855,0,0);}
.m91_c00388{transform:matrix(0.263440,0.008439,-0.008004,0.249872,0,0);-ms-transform:matrix(0.263440,0.008439,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.263440,0.008439,-0.008004,0.249872,0,0);}
.m99_c00388{transform:matrix(0.263582,0.008971,-0.008504,0.249855,0,0);-ms-transform:matrix(0.263582,0.008971,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.263582,0.008971,-0.008504,0.249855,0,0);}
.m96_c00388{transform:matrix(0.263657,0.008973,-0.008504,0.249855,0,0);-ms-transform:matrix(0.263657,0.008973,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.263657,0.008973,-0.008504,0.249855,0,0);}
.m8e_c00388{transform:matrix(0.264624,0.008476,-0.008004,0.249872,0,0);-ms-transform:matrix(0.264624,0.008476,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.264624,0.008476,-0.008004,0.249872,0,0);}
.m7b_c00388{transform:matrix(0.265635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265635,0.000000,0.000000,0.250000,0,0);}
.m98_c00388{transform:matrix(0.267980,0.009120,-0.008504,0.249855,0,0);-ms-transform:matrix(0.267980,0.009120,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.267980,0.009120,-0.008504,0.249855,0,0);}
.mcf_c00388{transform:matrix(0.268779,0.009148,-0.008504,0.249855,0,0);-ms-transform:matrix(0.268779,0.009148,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.268779,0.009148,-0.008504,0.249855,0,0);}
.m5d_c00388{transform:matrix(0.269432,0.006466,-0.005998,0.249928,0,0);-ms-transform:matrix(0.269432,0.006466,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.269432,0.006466,-0.005998,0.249928,0,0);}
.m5a_c00388{transform:matrix(0.270192,0.006485,-0.005998,0.249928,0,0);-ms-transform:matrix(0.270192,0.006485,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.270192,0.006485,-0.005998,0.249928,0,0);}
.m5f_c00388{transform:matrix(0.270417,0.006490,-0.005998,0.249928,0,0);-ms-transform:matrix(0.270417,0.006490,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.270417,0.006490,-0.005998,0.249928,0,0);}
.mc5_c00388{transform:matrix(0.272407,0.009271,-0.008504,0.249855,0,0);-ms-transform:matrix(0.272407,0.009271,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.272407,0.009271,-0.008504,0.249855,0,0);}
.m5b_c00388{transform:matrix(0.272961,0.006551,-0.005998,0.249928,0,0);-ms-transform:matrix(0.272961,0.006551,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.272961,0.006551,-0.005998,0.249928,0,0);}
.m9f_c00388{transform:matrix(0.273427,0.009306,-0.008504,0.249855,0,0);-ms-transform:matrix(0.273427,0.009306,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.273427,0.009306,-0.008504,0.249855,0,0);}
.mca_c00388{transform:matrix(0.273437,0.009306,-0.008504,0.249855,0,0);-ms-transform:matrix(0.273437,0.009306,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.273437,0.009306,-0.008504,0.249855,0,0);}
.m2e_c00388{transform:matrix(0.274012,0.007124,-0.006498,0.249916,0,0);-ms-transform:matrix(0.274012,0.007124,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.274012,0.007124,-0.006498,0.249916,0,0);}
.m9b_c00388{transform:matrix(0.274341,0.009337,-0.008504,0.249855,0,0);-ms-transform:matrix(0.274341,0.009337,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.274341,0.009337,-0.008504,0.249855,0,0);}
.m90_c00388{transform:matrix(0.274409,0.008790,-0.008004,0.249872,0,0);-ms-transform:matrix(0.274409,0.008790,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.274409,0.008790,-0.008004,0.249872,0,0);}
.mc7_c00388{transform:matrix(0.274896,0.009356,-0.008504,0.249855,0,0);-ms-transform:matrix(0.274896,0.009356,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.274896,0.009356,-0.008504,0.249855,0,0);}
.m3f_c00388{transform:matrix(0.276362,0.008567,-0.007746,0.249880,0,0);-ms-transform:matrix(0.276362,0.008567,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.276362,0.008567,-0.007746,0.249880,0,0);}
.m93_c00388{transform:matrix(0.277862,0.008901,-0.008004,0.249872,0,0);-ms-transform:matrix(0.277862,0.008901,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.277862,0.008901,-0.008004,0.249872,0,0);}
.ma7_c00388{transform:matrix(0.278904,0.010051,-0.009003,0.249838,0,0);-ms-transform:matrix(0.278904,0.010051,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.278904,0.010051,-0.009003,0.249838,0,0);}
.m9c_c00388{transform:matrix(0.280593,0.009550,-0.008504,0.249855,0,0);-ms-transform:matrix(0.280593,0.009550,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.280593,0.009550,-0.008504,0.249855,0,0);}
.m74_c00388{transform:matrix(0.283731,0.009657,-0.008504,0.249855,0,0);-ms-transform:matrix(0.283731,0.009657,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.283731,0.009657,-0.008504,0.249855,0,0);}
.m85_c00388{transform:matrix(0.285039,0.009130,-0.008004,0.249872,0,0);-ms-transform:matrix(0.285039,0.009130,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.285039,0.009130,-0.008004,0.249872,0,0);}
.m43_c00388{transform:matrix(0.285938,0.008864,-0.007746,0.249880,0,0);-ms-transform:matrix(0.285938,0.008864,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.285938,0.008864,-0.007746,0.249880,0,0);}
.mcc_c00388{transform:matrix(0.287434,0.009783,-0.008504,0.249855,0,0);-ms-transform:matrix(0.287434,0.009783,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.287434,0.009783,-0.008504,0.249855,0,0);}
.ma_c00388{transform:matrix(0.288805,0.008664,-0.007497,0.249888,0,0);-ms-transform:matrix(0.288805,0.008664,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.288805,0.008664,-0.007497,0.249888,0,0);}
.m66_c00388{transform:matrix(0.289427,0.006946,-0.005998,0.249928,0,0);-ms-transform:matrix(0.289427,0.006946,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.289427,0.006946,-0.005998,0.249928,0,0);}
.md2_c00388{transform:matrix(0.291994,0.008760,-0.007497,0.249888,0,0);-ms-transform:matrix(0.291994,0.008760,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.291994,0.008760,-0.007497,0.249888,0,0);}
.md3_c00388{transform:matrix(0.302439,0.009073,-0.007497,0.249888,0,0);-ms-transform:matrix(0.302439,0.009073,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.302439,0.009073,-0.007497,0.249888,0,0);}
.ma9_c00388{transform:matrix(0.306756,0.011054,-0.009003,0.249838,0,0);-ms-transform:matrix(0.306756,0.011054,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.306756,0.011054,-0.009003,0.249838,0,0);}
.mb5_c00388{transform:matrix(0.325389,0.011726,-0.009003,0.249838,0,0);-ms-transform:matrix(0.325389,0.011726,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.325389,0.011726,-0.009003,0.249838,0,0);}
.mab_c00388{transform:matrix(0.326743,0.011775,-0.009003,0.249838,0,0);-ms-transform:matrix(0.326743,0.011775,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.326743,0.011775,-0.009003,0.249838,0,0);}
.ma5_c00388{transform:matrix(0.337551,0.012164,-0.009003,0.249838,0,0);-ms-transform:matrix(0.337551,0.012164,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.337551,0.012164,-0.009003,0.249838,0,0);}
.maa_c00388{transform:matrix(0.349223,0.012585,-0.009003,0.249838,0,0);-ms-transform:matrix(0.349223,0.012585,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.349223,0.012585,-0.009003,0.249838,0,0);}
.maf_c00388{transform:matrix(0.350158,0.012618,-0.009003,0.249838,0,0);-ms-transform:matrix(0.350158,0.012618,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.350158,0.012618,-0.009003,0.249838,0,0);}
.m1c_c00388{transform:matrix(0.351711,0.009144,-0.006498,0.249916,0,0);-ms-transform:matrix(0.351711,0.009144,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.351711,0.009144,-0.006498,0.249916,0,0);}
.mae_c00388{transform:matrix(0.353580,0.012742,-0.009003,0.249838,0,0);-ms-transform:matrix(0.353580,0.012742,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.353580,0.012742,-0.009003,0.249838,0,0);}
.ma8_c00388{transform:matrix(0.356998,0.012865,-0.009003,0.249838,0,0);-ms-transform:matrix(0.356998,0.012865,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.356998,0.012865,-0.009003,0.249838,0,0);}
.mac_c00388{transform:matrix(0.361345,0.013021,-0.009003,0.249838,0,0);-ms-transform:matrix(0.361345,0.013021,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.361345,0.013021,-0.009003,0.249838,0,0);}
.ma6_c00388{transform:matrix(0.361775,0.013037,-0.009003,0.249838,0,0);-ms-transform:matrix(0.361775,0.013037,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.361775,0.013037,-0.009003,0.249838,0,0);}
.m8d_c00388{transform:matrix(0.365413,0.011705,-0.008004,0.249872,0,0);-ms-transform:matrix(0.365413,0.011705,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.365413,0.011705,-0.008004,0.249872,0,0);}
.mad_c00388{transform:matrix(0.368536,0.013281,-0.009003,0.249838,0,0);-ms-transform:matrix(0.368536,0.013281,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.368536,0.013281,-0.009003,0.249838,0,0);}
.m79_c00388{transform:matrix(0.388940,0.013237,-0.008504,0.249855,0,0);-ms-transform:matrix(0.388940,0.013237,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.388940,0.013237,-0.008504,0.249855,0,0);}
.ma0_c00388{transform:matrix(0.403376,0.013729,-0.008504,0.249855,0,0);-ms-transform:matrix(0.403376,0.013729,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.403376,0.013729,-0.008504,0.249855,0,0);}
.md1_c00388{transform:matrix(0.404993,0.012150,-0.007497,0.249888,0,0);-ms-transform:matrix(0.404993,0.012150,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.404993,0.012150,-0.007497,0.249888,0,0);}
.m2b_c00388{transform:matrix(0.463118,0.012041,-0.006498,0.249916,0,0);-ms-transform:matrix(0.463118,0.012041,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.463118,0.012041,-0.006498,0.249916,0,0);}
.m7c_c00388{transform:matrix(0.488365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488365,0.000000,0.000000,0.250000,0,0);}
.mb3_c00388{transform:matrix(0.637017,0.022956,-0.009003,0.249838,0,0);-ms-transform:matrix(0.637017,0.022956,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.637017,0.022956,-0.009003,0.249838,0,0);}
.me3_c00388{transform:matrix(0.657924,0.027660,-0.010501,0.249779,0,0);-ms-transform:matrix(0.657924,0.027660,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.657924,0.027660,-0.010501,0.249779,0,0);}
.mb0_c00388{transform:matrix(0.684006,0.024649,-0.009003,0.249838,0,0);-ms-transform:matrix(0.684006,0.024649,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.684006,0.024649,-0.009003,0.249838,0,0);}
.m7d_c00388{transform:matrix(0.751665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.751665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.751665,0.000000,0.000000,0.250000,0,0);}
.m17_c00388{transform:matrix(0.953093,0.024780,-0.006498,0.249916,0,0);-ms-transform:matrix(0.953093,0.024780,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.953093,0.024780,-0.006498,0.249916,0,0);}
.mc2_c00388{transform:matrix(0.971232,0.025252,-0.006498,0.249916,0,0);-ms-transform:matrix(0.971232,0.025252,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.971232,0.025252,-0.006498,0.249916,0,0);}
.mc1_c00388{transform:matrix(0.974856,0.025346,-0.006498,0.249916,0,0);-ms-transform:matrix(0.974856,0.025346,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.974856,0.025346,-0.006498,0.249916,0,0);}
.ma3_c00388{transform:matrix(1.010600,0.034395,-0.008504,0.249855,0,0);-ms-transform:matrix(1.010600,0.034395,-0.008504,0.249855,0,0);-webkit-transform:matrix(1.010600,0.034395,-0.008504,0.249855,0,0);}
.mb4_c00388{transform:matrix(1.111169,0.040042,-0.009003,0.249838,0,0);-ms-transform:matrix(1.111169,0.040042,-0.009003,0.249838,0,0);-webkit-transform:matrix(1.111169,0.040042,-0.009003,0.249838,0,0);}
.mb1_c00388{transform:matrix(1.239396,0.044663,-0.009003,0.249838,0,0);-ms-transform:matrix(1.239396,0.044663,-0.009003,0.249838,0,0);-webkit-transform:matrix(1.239396,0.044663,-0.009003,0.249838,0,0);}
.m7e_c00388{transform:matrix(1.273710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.273710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.273710,0.000000,0.000000,0.250000,0,0);}
.me2_c00388{transform:matrix(1.287653,0.054136,-0.010501,0.249779,0,0);-ms-transform:matrix(1.287653,0.054136,-0.010501,0.249779,0,0);-webkit-transform:matrix(1.287653,0.054136,-0.010501,0.249779,0,0);}
.ma4_c00388{transform:matrix(1.333768,0.045393,-0.008504,0.249855,0,0);-ms-transform:matrix(1.333768,0.045393,-0.008504,0.249855,0,0);-webkit-transform:matrix(1.333768,0.045393,-0.008504,0.249855,0,0);}
.m18_c00388{transform:matrix(1.644154,0.042748,-0.006498,0.249916,0,0);-ms-transform:matrix(1.644154,0.042748,-0.006498,0.249916,0,0);-webkit-transform:matrix(1.644154,0.042748,-0.006498,0.249916,0,0);}
.mb2_c00388{transform:matrix(2.001461,0.072125,-0.009003,0.249838,0,0);-ms-transform:matrix(2.001461,0.072125,-0.009003,0.249838,0,0);-webkit-transform:matrix(2.001461,0.072125,-0.009003,0.249838,0,0);}
.md0_c00388{transform:matrix(2.511005,0.075330,-0.007497,0.249888,0,0);-ms-transform:matrix(2.511005,0.075330,-0.007497,0.249888,0,0);-webkit-transform:matrix(2.511005,0.075330,-0.007497,0.249888,0,0);}
.me1_c00388{transform:matrix(2.700165,0.113520,-0.010501,0.249779,0,0);-ms-transform:matrix(2.700165,0.113520,-0.010501,0.249779,0,0);-webkit-transform:matrix(2.700165,0.113520,-0.010501,0.249779,0,0);}
.ma2_c00388{transform:matrix(3.258089,0.110886,-0.008504,0.249855,0,0);-ms-transform:matrix(3.258089,0.110886,-0.008504,0.249855,0,0);-webkit-transform:matrix(3.258089,0.110886,-0.008504,0.249855,0,0);}
.ma1_c00388{transform:matrix(5.076921,0.172788,-0.008504,0.249855,0,0);-ms-transform:matrix(5.076921,0.172788,-0.008504,0.249855,0,0);-webkit-transform:matrix(5.076921,0.172788,-0.008504,0.249855,0,0);}
.m78_c00388{transform:matrix(6.426789,0.218730,-0.008504,0.249855,0,0);-ms-transform:matrix(6.426789,0.218730,-0.008504,0.249855,0,0);-webkit-transform:matrix(6.426789,0.218730,-0.008504,0.249855,0,0);}
.v0_c00388{vertical-align:0.000000px;}
.ls0_c00388{letter-spacing:0.000000px;}
.sc__c00388{text-shadow:none;}
.sc0_c00388{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__c00388{-webkit-text-stroke:0px transparent;}
.sc0_c00388{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00388{word-spacing:0.000000px;}
.fc0_c00388{color:transparent;}
.fs12_c00388{font-size:17.992411px;}
.fsf_c00388{font-size:18.000000px;}
.fs14_c00388{font-size:23.991563px;}
.fs5_c00388{font-size:24.000000px;}
.fsd_c00388{font-size:35.984823px;}
.fs18_c00388{font-size:35.995770px;}
.fs2_c00388{font-size:36.012166px;}
.fs15_c00388{font-size:48.016221px;}
.fs13_c00388{font-size:53.981016px;}
.fse_c00388{font-size:66.000000px;}
.fs11_c00388{font-size:71.964891px;}
.fsc_c00388{font-size:71.969646px;}
.fsa_c00388{font-size:72.020733px;}
.fs4_c00388{font-size:72.024332px;}
.fs16_c00388{font-size:72.032393px;}
.fs10_c00388{font-size:77.961966px;}
.fs3_c00388{font-size:78.026360px;}
.fs0_c00388{font-size:78.035092px;}
.fs7_c00388{font-size:78.037470px;}
.fs9_c00388{font-size:83.961771px;}
.fs17_c00388{font-size:83.990129px;}
.fs1_c00388{font-size:84.028387px;}
.fsb_c00388{font-size:84.040352px;}
.fs6_c00388{font-size:96.010799px;}
.fs8_c00388{font-size:102.048999px;}
.y0_c00388{bottom:0.000000px;}
.ye3_c00388{bottom:271.063331px;}
.ye2_c00388{bottom:274.668722px;}
.ydf_c00388{bottom:276.026097px;}
.yde_c00388{bottom:277.408380px;}
.ydd_c00388{bottom:281.133192px;}
.ydc_c00388{bottom:283.914264px;}
.ye1_c00388{bottom:284.034832px;}
.ydb_c00388{bottom:285.355074px;}
.yda_c00388{bottom:286.739688px;}
.yd9_c00388{bottom:290.881812px;}
.ye0_c00388{bottom:292.678212px;}
.yd8_c00388{bottom:293.245509px;}
.yd7_c00388{bottom:296.365080px;}
.yd6_c00388{bottom:297.322806px;}
.yd5_c00388{bottom:298.623000px;}
.yd4_c00388{bottom:327.086565px;}
.yd3_c00388{bottom:340.551810px;}
.yd2_c00388{bottom:341.871525px;}
.yd1_c00388{bottom:342.689265px;}
.ycf_c00388{bottom:343.205722px;}
.yce_c00388{bottom:345.056709px;}
.ycd_c00388{bottom:346.440915px;}
.yd0_c00388{bottom:347.224500px;}
.ycc_c00388{bottom:352.942927px;}
.ycb_c00388{bottom:356.290032px;}
.yca_c00388{bottom:360.927351px;}
.yc9_c00388{bottom:362.754717px;}
.yc8_c00388{bottom:364.135895px;}
.yc7_c00388{bottom:368.280518px;}
.yc6_c00388{bottom:369.510059px;}
.yc5_c00388{bottom:370.458806px;}
.yc4_c00388{bottom:395.077563px;}
.yc3_c00388{bottom:396.197523px;}
.yc2_c00388{bottom:398.805000px;}
.yc0_c00388{bottom:409.903692px;}
.yc1_c00388{bottom:409.904028px;}
.ybf_c00388{bottom:416.927337px;}
.ybe_c00388{bottom:418.677267px;}
.ybd_c00388{bottom:419.555547px;}
.ybc_c00388{bottom:420.412260px;}
.ybb_c00388{bottom:422.702574px;}
.yba_c00388{bottom:424.753545px;}
.yb9_c00388{bottom:427.654209px;}
.yb8_c00388{bottom:428.764266px;}
.yb7_c00388{bottom:429.613569px;}
.yb6_c00388{bottom:432.153756px;}
.yb5_c00388{bottom:434.166000px;}
.yb4_c00388{bottom:469.149966px;}
.yb3_c00388{bottom:481.005828px;}
.yb2_c00388{bottom:482.584046px;}
.yae_c00388{bottom:485.957142px;}
.yb1_c00388{bottom:486.489960px;}
.yad_c00388{bottom:487.573470px;}
.yb0_c00388{bottom:491.000445px;}
.yac_c00388{bottom:491.519682px;}
.yab_c00388{bottom:493.984242px;}
.yaa_c00388{bottom:495.558558px;}
.yaf_c00388{bottom:497.387295px;}
.ya9_c00388{bottom:497.937042px;}
.ya8_c00388{bottom:499.137786px;}
.ya7_c00388{bottom:501.890274px;}
.ya6_c00388{bottom:503.092314px;}
.ya5_c00388{bottom:503.598834px;}
.ya4_c00388{bottom:505.458000px;}
.ya3_c00388{bottom:517.041021px;}
.ya2_c00388{bottom:517.833606px;}
.ya1_c00388{bottom:519.890401px;}
.y9e_c00388{bottom:523.385307px;}
.y9d_c00388{bottom:524.553615px;}
.y9c_c00388{bottom:525.673575px;}
.ya0_c00388{bottom:527.577363px;}
.y9b_c00388{bottom:529.476900px;}
.y9a_c00388{bottom:533.170422px;}
.y99_c00388{bottom:534.740253px;}
.y98_c00388{bottom:536.623275px;}
.y9f_c00388{bottom:538.657437px;}
.y97_c00388{bottom:539.654664px;}
.y96_c00388{bottom:540.737904px;}
.y95_c00388{bottom:543.343851px;}
.y94_c00388{bottom:544.076415px;}
.y93_c00388{bottom:545.139000px;}
.y92_c00388{bottom:561.489978px;}
.y91_c00388{bottom:562.477248px;}
.y90_c00388{bottom:565.515325px;}
.y8f_c00388{bottom:569.248755px;}
.y8e_c00388{bottom:570.533260px;}
.y8d_c00388{bottom:572.795878px;}
.y8c_c00388{bottom:573.398328px;}
.y8b_c00388{bottom:575.292531px;}
.y8a_c00388{bottom:577.215993px;}
.y89_c00388{bottom:579.445560px;}
.y88_c00388{bottom:594.940968px;}
.y87_c00388{bottom:595.966392px;}
.y86_c00388{bottom:597.453912px;}
.y85_c00388{bottom:598.491576px;}
.y84_c00388{bottom:602.013144px;}
.y83_c00388{bottom:604.545864px;}
.y82_c00388{bottom:608.116248px;}
.y81_c00388{bottom:609.491496px;}
.y80_c00388{bottom:610.536696px;}
.y7f_c00388{bottom:613.740504px;}
.y7e_c00388{bottom:616.149000px;}
.y7b_c00388{bottom:633.362682px;}
.y79_c00388{bottom:640.956993px;}
.y78_c00388{bottom:642.059205px;}
.y7a_c00388{bottom:642.606855px;}
.y77_c00388{bottom:643.960842px;}
.y76_c00388{bottom:647.748000px;}
.y75_c00388{bottom:669.483433px;}
.y74_c00388{bottom:670.512990px;}
.y73_c00388{bottom:671.540454px;}
.y72_c00388{bottom:675.278961px;}
.y71_c00388{bottom:676.775610px;}
.y70_c00388{bottom:678.360748px;}
.y6f_c00388{bottom:679.775883px;}
.y6e_c00388{bottom:683.172987px;}
.y6d_c00388{bottom:685.539000px;}
.y7d_c00388{bottom:686.880000px;}
.y6c_c00388{bottom:708.292476px;}
.y6b_c00388{bottom:709.168152px;}
.y6a_c00388{bottom:710.692872px;}
.y69_c00388{bottom:711.575388px;}
.y68_c00388{bottom:712.479444px;}
.y67_c00388{bottom:716.688708px;}
.y66_c00388{bottom:717.578844px;}
.y65_c00388{bottom:718.466352px;}
.y64_c00388{bottom:739.017852px;}
.y63_c00388{bottom:740.361480px;}
.y62_c00388{bottom:741.930576px;}
.y61_c00388{bottom:743.841312px;}
.y60_c00388{bottom:746.190276px;}
.y5f_c00388{bottom:747.817368px;}
.y5e_c00388{bottom:749.691276px;}
.y5d_c00388{bottom:750.747984px;}
.y5c_c00388{bottom:753.883548px;}
.y5b_c00388{bottom:755.736000px;}
.y5a_c00388{bottom:774.603858px;}
.y59_c00388{bottom:775.733349px;}
.y58_c00388{bottom:778.950750px;}
.y57_c00388{bottom:780.485101px;}
.y56_c00388{bottom:783.409512px;}
.y55_c00388{bottom:784.511976px;}
.y54_c00388{bottom:787.455988px;}
.y53_c00388{bottom:788.526971px;}
.y52_c00388{bottom:789.613990px;}
.y51_c00388{bottom:793.889058px;}
.y50_c00388{bottom:794.617500px;}
.y4f_c00388{bottom:811.592155px;}
.y4e_c00388{bottom:813.677122px;}
.y4d_c00388{bottom:815.050453px;}
.y4c_c00388{bottom:817.134863px;}
.y4b_c00388{bottom:817.819296px;}
.y4a_c00388{bottom:822.211128px;}
.y49_c00388{bottom:823.626262px;}
.y48_c00388{bottom:826.740228px;}
.y47_c00388{bottom:828.387537px;}
.y46_c00388{bottom:830.762943px;}
.y45_c00388{bottom:854.231546px;}
.y44_c00388{bottom:857.338954px;}
.y43_c00388{bottom:858.712285px;}
.y42_c00388{bottom:860.085105px;}
.y41_c00388{bottom:862.102322px;}
.y7c_c00388{bottom:881.403000px;}
.y40_c00388{bottom:885.137229px;}
.y3f_c00388{bottom:888.603850px;}
.y3e_c00388{bottom:889.626293px;}
.y3d_c00388{bottom:893.018654px;}
.y3c_c00388{bottom:894.433277px;}
.y3b_c00388{bottom:896.149591px;}
.y3a_c00388{bottom:897.179380px;}
.y39_c00388{bottom:899.898561px;}
.y38_c00388{bottom:900.828282px;}
.y37_c00388{bottom:901.537500px;}
.y36_c00388{bottom:923.018812px;}
.y35_c00388{bottom:924.806190px;}
.y34_c00388{bottom:926.324535px;}
.y33_c00388{bottom:926.980860px;}
.y32_c00388{bottom:928.467165px;}
.y31_c00388{bottom:929.613000px;}
.y30_c00388{bottom:961.606500px;}
.y2f_c00388{bottom:964.227870px;}
.y2e_c00388{bottom:965.018232px;}
.y2d_c00388{bottom:967.377441px;}
.y2a_c00388{bottom:988.085577px;}
.y29_c00388{bottom:988.975446px;}
.y2c_c00388{bottom:989.373918px;}
.y28_c00388{bottom:989.851314px;}
.y27_c00388{bottom:991.696296px;}
.y26_c00388{bottom:994.353228px;}
.y25_c00388{bottom:996.504213px;}
.y24_c00388{bottom:999.487446px;}
.y23_c00388{bottom:1000.661907px;}
.y22_c00388{bottom:1001.551425px;}
.y2b_c00388{bottom:1002.253776px;}
.y21_c00388{bottom:1004.255760px;}
.y20_c00388{bottom:1006.274013px;}
.y1f_c00388{bottom:1027.145025px;}
.y1e_c00388{bottom:1028.498931px;}
.y1d_c00388{bottom:1030.220226px;}
.y1c_c00388{bottom:1032.443379px;}
.y1b_c00388{bottom:1033.939887px;}
.y1a_c00388{bottom:1035.715593px;}
.y19_c00388{bottom:1059.760539px;}
.y16_c00388{bottom:1064.185554px;}
.y18_c00388{bottom:1064.343039px;}
.y15_c00388{bottom:1065.021558px;}
.y14_c00388{bottom:1068.449619px;}
.y13_c00388{bottom:1069.628745px;}
.y17_c00388{bottom:1071.633543px;}
.y12_c00388{bottom:1072.521999px;}
.y11_c00388{bottom:1074.789069px;}
.y10_c00388{bottom:1076.767500px;}
.yf_c00388{bottom:1103.274630px;}
.ye_c00388{bottom:1105.834845px;}
.yd_c00388{bottom:1107.999645px;}
.yc_c00388{bottom:1109.425815px;}
.yb_c00388{bottom:1130.368725px;}
.ya_c00388{bottom:1131.684705px;}
.y9_c00388{bottom:1133.038485px;}
.y8_c00388{bottom:1135.705365px;}
.y7_c00388{bottom:1136.723580px;}
.y6_c00388{bottom:1139.391675px;}
.y5_c00388{bottom:1141.750890px;}
.y4_c00388{bottom:1143.007515px;}
.y3_c00388{bottom:1145.705310px;}
.y2_c00388{bottom:1147.672485px;}
.y1_c00388{bottom:1149.939000px;}
.h14_c00388{height:17.992411px;}
.h11_c00388{height:18.000000px;}
.h16_c00388{height:23.991563px;}
.h7_c00388{height:24.000000px;}
.hf_c00388{height:35.984823px;}
.h1a_c00388{height:35.995770px;}
.h4_c00388{height:36.012166px;}
.h17_c00388{height:48.016221px;}
.h15_c00388{height:53.981016px;}
.h10_c00388{height:66.000000px;}
.h13_c00388{height:71.964891px;}
.he_c00388{height:71.969646px;}
.hc_c00388{height:72.020733px;}
.h6_c00388{height:72.024332px;}
.h18_c00388{height:72.032393px;}
.h12_c00388{height:77.961966px;}
.h5_c00388{height:78.026360px;}
.h2_c00388{height:78.035092px;}
.h9_c00388{height:78.037470px;}
.hb_c00388{height:83.961771px;}
.h19_c00388{height:83.990129px;}
.h3_c00388{height:84.028387px;}
.hd_c00388{height:84.040352px;}
.h8_c00388{height:96.010799px;}
.ha_c00388{height:102.048999px;}
.h1_c00388{height:1251.000000px;}
.h0_c00388{height:1251.150000px;}
.w0_c00388{width:915.000000px;}
.x0_c00388{left:0.000000px;}
.x8b_c00388{left:137.170500px;}
.x68_c00388{left:140.394000px;}
.x5d_c00388{left:141.735000px;}
.x4e_c00388{left:143.380500px;}
.x3c_c00388{left:145.002007px;}
.x2c_c00388{left:147.189000px;}
.x1c_c00388{left:149.046507px;}
.x10_c00388{left:150.379500px;}
.x1_c00388{left:151.726500px;}
.xa0_c00388{left:158.410500px;}
.x96_c00388{left:159.568994px;}
.x79_c00388{left:162.544500px;}
.x43_c00388{left:167.691000px;}
.x31_c00388{left:169.570500px;}
.x97_c00388{left:182.155758px;}
.x7f_c00388{left:185.306018px;}
.x44_c00388{left:189.742926px;}
.x27_c00388{left:193.346478px;}
.x15_c00388{left:196.121508px;}
.x98_c00388{left:211.406014px;}
.x8c_c00388{left:214.564500px;}
.x69_c00388{left:215.584235px;}
.x72_c00388{left:216.664337px;}
.x5e_c00388{left:218.058000px;}
.x4f_c00388{left:220.566000px;}
.x32_c00388{left:222.439500px;}
.x1d_c00388{left:223.785057px;}
.x2_c00388{left:227.277000px;}
.x3d_c00388{left:274.767007px;}
.x73_c00388{left:282.893883px;}
.xa1_c00388{left:286.317965px;}
.x9f_c00388{left:287.686335px;}
.x95_c00388{left:289.540500px;}
.x18_c00388{left:291.731841px;}
.x3_c00388{left:292.849500px;}
.x29_c00388{left:302.411484px;}
.x62_c00388{left:304.018500px;}
.x56_c00388{left:306.482436px;}
.x33_c00388{left:310.155000px;}
.x8d_c00388{left:312.264000px;}
.x11_c00388{left:313.668000px;}
.x6a_c00388{left:315.603116px;}
.x45_c00388{left:319.160879px;}
.x2d_c00388{left:322.665000px;}
.x1e_c00388{left:323.929944px;}
.x5f_c00388{left:327.642000px;}
.x57_c00388{left:339.334560px;}
.x34_c00388{left:343.374000px;}
.x8e_c00388{left:344.929500px;}
.x6b_c00388{left:348.232953px;}
.x46_c00388{left:352.067938px;}
.x2b_c00388{left:354.780000px;}
.x1f_c00388{left:356.872086px;}
.xc_c00388{left:360.389325px;}
.x2e_c00388{left:366.420000px;}
.x74_c00388{left:368.844063px;}
.x58_c00388{left:372.296184px;}
.x39_c00388{left:375.529446px;}
.x4_c00388{left:382.776000px;}
.x47_c00388{left:384.489485px;}
.x99_c00388{left:386.332283px;}
.x19_c00388{left:388.379868px;}
.x6c_c00388{left:391.166476px;}
.x50_c00388{left:395.244000px;}
.x35_c00388{left:398.739000px;}
.x20_c00388{left:400.369455px;}
.x88_c00388{left:401.819832px;}
.xd_c00388{left:403.624455px;}
.x7a_c00388{left:412.756537px;}
.x63_c00388{left:415.294113px;}
.x3a_c00388{left:419.813946px;}
.x3e_c00388{left:420.867007px;}
.x5_c00388{left:424.663500px;}
.x2a_c00388{left:433.651809px;}
.xa2_c00388{left:441.063564px;}
.x36_c00388{left:444.372000px;}
.x75_c00388{left:446.785539px;}
.x1a_c00388{left:463.243218px;}
.x2f_c00388{left:467.643000px;}
.xe_c00388{left:469.228560px;}
.x12_c00388{left:470.298000px;}
.x48_c00388{left:473.612772px;}
.x16_c00388{left:476.525508px;}
.x76_c00388{left:491.054002px;}
.x9a_c00388{left:496.668318px;}
.x8f_c00388{left:499.188000px;}
.x83_c00388{left:500.900584px;}
.x6_c00388{left:503.304000px;}
.x49_c00388{left:506.987364px;}
.xa3_c00388{left:508.268292px;}
.x21_c00388{left:510.837069px;}
.x7b_c00388{left:514.209483px;}
.x80_c00388{left:520.738685px;}
.x1b_c00388{left:522.128820px;}
.x59_c00388{left:528.170952px;}
.x51_c00388{left:541.119000px;}
.xf_c00388{left:546.812085px;}
.x37_c00388{left:553.803000px;}
.x3f_c00388{left:562.539007px;}
.x3b_c00388{left:564.353946px;}
.x64_c00388{left:567.474384px;}
.x89_c00388{left:569.728147px;}
.xa4_c00388{left:574.418076px;}
.x9b_c00388{left:576.279930px;}
.x90_c00388{left:578.071500px;}
.x6d_c00388{left:581.697755px;}
.x40_c00388{left:584.617507px;}
.x30_c00388{left:586.801500px;}
.x22_c00388{left:590.507502px;}
.x7_c00388{left:592.240500px;}
.x60_c00388{left:593.301000px;}
.x5a_c00388{left:594.356700px;}
.x4a_c00388{left:595.517245px;}
.x13_c00388{left:602.146500px;}
.x28_c00388{left:608.825502px;}
.x84_c00388{left:610.590784px;}
.x77_c00388{left:619.642134px;}
.x7c_c00388{left:622.733850px;}
.x8_c00388{left:626.181000px;}
.x14_c00388{left:634.300500px;}
.x52_c00388{left:638.992500px;}
.x4b_c00388{left:641.966250px;}
.x5b_c00388{left:650.820132px;}
.x17_c00388{left:652.775508px;}
.xa6_c00388{left:656.304162px;}
.x61_c00388{left:659.656500px;}
.xa5_c00388{left:663.015390px;}
.x91_c00388{left:666.160500px;}
.x85_c00388{left:678.982324px;}
.x5c_c00388{left:683.241792px;}
.x23_c00388{left:688.886928px;}
.x6e_c00388{left:691.636706px;}
.x41_c00388{left:696.157507px;}
.x38_c00388{left:698.611500px;}
.x9_c00388{left:715.077000px;}
.x53_c00388{left:718.606500px;}
.x6f_c00388{left:724.031278px;}
.x9c_c00388{left:730.957980px;}
.x92_c00388{left:732.891000px;}
.x7d_c00388{left:734.484488px;}
.x4c_c00388{left:739.365753px;}
.x81_c00388{left:753.432171px;}
.x24_c00388{left:757.192134px;}
.x78_c00388{left:758.280167px;}
.xa_c00388{left:760.203000px;}
.x42_c00388{left:763.414507px;}
.x7e_c00388{left:767.391548px;}
.x70_c00388{left:770.469793px;}
.x4d_c00388{left:773.558526px;}
.x94_c00388{left:778.895628px;}
.x54_c00388{left:783.985500px;}
.x86_c00388{left:788.489708px;}
.x25_c00388{left:789.609276px;}
.x8a_c00388{left:791.000208px;}
.x93_c00388{left:800.196000px;}
.x71_c00388{left:802.482249px;}
.xb_c00388{left:804.069000px;}
.x9e_c00388{left:806.565000px;}
.x9d_c00388{left:807.898481px;}
.x65_c00388{left:812.160000px;}
.x82_c00388{left:815.672961px;}
.x26_c00388{left:822.564918px;}
.x66_c00388{left:832.140000px;}
.x87_c00388{left:833.342809px;}
.x55_c00388{left:839.970000px;}
.x67_c00388{left:909.900000px;}
@media print{
.v0_c00388{vertical-align:0.000000pt;}
.ls0_c00388{letter-spacing:0.000000pt;}
.ws0_c00388{word-spacing:0.000000pt;}
.fs12_c00388{font-size:15.993255pt;}
.fsf_c00388{font-size:16.000000pt;}
.fs14_c00388{font-size:21.325833pt;}
.fs5_c00388{font-size:21.333333pt;}
.fsd_c00388{font-size:31.986509pt;}
.fs18_c00388{font-size:31.996240pt;}
.fs2_c00388{font-size:32.010814pt;}
.fs15_c00388{font-size:42.681086pt;}
.fs13_c00388{font-size:47.983125pt;}
.fse_c00388{font-size:58.666667pt;}
.fs11_c00388{font-size:63.968792pt;}
.fsc_c00388{font-size:63.973018pt;}
.fsa_c00388{font-size:64.018429pt;}
.fs4_c00388{font-size:64.021628pt;}
.fs16_c00388{font-size:64.028794pt;}
.fs10_c00388{font-size:69.299525pt;}
.fs3_c00388{font-size:69.356764pt;}
.fs0_c00388{font-size:69.364526pt;}
.fs7_c00388{font-size:69.366640pt;}
.fs9_c00388{font-size:74.632686pt;}
.fs17_c00388{font-size:74.657893pt;}
.fs1_c00388{font-size:74.691900pt;}
.fsb_c00388{font-size:74.702535pt;}
.fs6_c00388{font-size:85.342933pt;}
.fs8_c00388{font-size:90.710222pt;}
.y0_c00388{bottom:0.000000pt;}
.ye3_c00388{bottom:240.945183pt;}
.ye2_c00388{bottom:244.149975pt;}
.ydf_c00388{bottom:245.356531pt;}
.yde_c00388{bottom:246.585227pt;}
.ydd_c00388{bottom:249.896171pt;}
.ydc_c00388{bottom:252.368235pt;}
.ye1_c00388{bottom:252.475407pt;}
.ydb_c00388{bottom:253.648955pt;}
.yda_c00388{bottom:254.879723pt;}
.yd9_c00388{bottom:258.561611pt;}
.ye0_c00388{bottom:260.158411pt;}
.yd8_c00388{bottom:260.662675pt;}
.yd7_c00388{bottom:263.435627pt;}
.yd6_c00388{bottom:264.286939pt;}
.yd5_c00388{bottom:265.442667pt;}
.yd4_c00388{bottom:290.743613pt;}
.yd3_c00388{bottom:302.712720pt;}
.yd2_c00388{bottom:303.885800pt;}
.yd1_c00388{bottom:304.612680pt;}
.ycf_c00388{bottom:305.071753pt;}
.yce_c00388{bottom:306.717075pt;}
.ycd_c00388{bottom:307.947480pt;}
.yd0_c00388{bottom:308.644000pt;}
.ycc_c00388{bottom:313.727047pt;}
.ycb_c00388{bottom:316.702251pt;}
.yca_c00388{bottom:320.824312pt;}
.yc9_c00388{bottom:322.448637pt;}
.yc8_c00388{bottom:323.676351pt;}
.yc7_c00388{bottom:327.360460pt;}
.yc6_c00388{bottom:328.453385pt;}
.yc5_c00388{bottom:329.296716pt;}
.yc4_c00388{bottom:351.180056pt;}
.yc3_c00388{bottom:352.175576pt;}
.yc2_c00388{bottom:354.493333pt;}
.yc0_c00388{bottom:364.358837pt;}
.yc1_c00388{bottom:364.359136pt;}
.ybf_c00388{bottom:370.602077pt;}
.ybe_c00388{bottom:372.157571pt;}
.ybd_c00388{bottom:372.938264pt;}
.ybc_c00388{bottom:373.699787pt;}
.ybb_c00388{bottom:375.735621pt;}
.yba_c00388{bottom:377.558707pt;}
.yb9_c00388{bottom:380.137075pt;}
.yb8_c00388{bottom:381.123792pt;}
.yb7_c00388{bottom:381.878728pt;}
.yb6_c00388{bottom:384.136672pt;}
.yb5_c00388{bottom:385.925333pt;}
.yb4_c00388{bottom:417.022192pt;}
.yb3_c00388{bottom:427.560736pt;}
.yb2_c00388{bottom:428.963596pt;}
.yae_c00388{bottom:431.961904pt;}
.yb1_c00388{bottom:432.435520pt;}
.yad_c00388{bottom:433.398640pt;}
.yb0_c00388{bottom:436.444840pt;}
.yac_c00388{bottom:436.906384pt;}
.yab_c00388{bottom:439.097104pt;}
.yaa_c00388{bottom:440.496496pt;}
.yaf_c00388{bottom:442.122040pt;}
.ya9_c00388{bottom:442.610704pt;}
.ya8_c00388{bottom:443.678032pt;}
.ya7_c00388{bottom:446.124688pt;}
.ya6_c00388{bottom:447.193168pt;}
.ya5_c00388{bottom:447.643408pt;}
.ya4_c00388{bottom:449.296000pt;}
.ya3_c00388{bottom:459.592019pt;}
.ya2_c00388{bottom:460.296539pt;}
.ya1_c00388{bottom:462.124801pt;}
.y9e_c00388{bottom:465.231384pt;}
.y9d_c00388{bottom:466.269880pt;}
.y9c_c00388{bottom:467.265400pt;}
.ya0_c00388{bottom:468.957656pt;}
.y9b_c00388{bottom:470.646133pt;}
.y9a_c00388{bottom:473.929264pt;}
.y99_c00388{bottom:475.324669pt;}
.y98_c00388{bottom:476.998467pt;}
.y9f_c00388{bottom:478.806611pt;}
.y97_c00388{bottom:479.693035pt;}
.y96_c00388{bottom:480.655915pt;}
.y95_c00388{bottom:482.972312pt;}
.y94_c00388{bottom:483.623480pt;}
.y93_c00388{bottom:484.568000pt;}
.y92_c00388{bottom:499.102203pt;}
.y91_c00388{bottom:499.979776pt;}
.y90_c00388{bottom:502.680289pt;}
.y8f_c00388{bottom:505.998893pt;}
.y8e_c00388{bottom:507.140676pt;}
.y8d_c00388{bottom:509.151892pt;}
.y8c_c00388{bottom:509.687403pt;}
.y8b_c00388{bottom:511.371139pt;}
.y8a_c00388{bottom:513.080883pt;}
.y89_c00388{bottom:515.062720pt;}
.y88_c00388{bottom:528.836416pt;}
.y87_c00388{bottom:529.747904pt;}
.y86_c00388{bottom:531.070144pt;}
.y85_c00388{bottom:531.992512pt;}
.y84_c00388{bottom:535.122795pt;}
.y83_c00388{bottom:537.374101pt;}
.y82_c00388{bottom:540.547776pt;}
.y81_c00388{bottom:541.770219pt;}
.y80_c00388{bottom:542.699285pt;}
.y7f_c00388{bottom:545.547115pt;}
.y7e_c00388{bottom:547.688000pt;}
.y7b_c00388{bottom:562.989051pt;}
.y79_c00388{bottom:569.739549pt;}
.y78_c00388{bottom:570.719293pt;}
.y7a_c00388{bottom:571.206093pt;}
.y77_c00388{bottom:572.409637pt;}
.y76_c00388{bottom:575.776000pt;}
.y75_c00388{bottom:595.096385pt;}
.y74_c00388{bottom:596.011547pt;}
.y73_c00388{bottom:596.924848pt;}
.y72_c00388{bottom:600.247965pt;}
.y71_c00388{bottom:601.578320pt;}
.y70_c00388{bottom:602.987332pt;}
.y6f_c00388{bottom:604.245229pt;}
.y6e_c00388{bottom:607.264877pt;}
.y6d_c00388{bottom:609.368000pt;}
.y7d_c00388{bottom:610.560000pt;}
.y6c_c00388{bottom:629.593312pt;}
.y6b_c00388{bottom:630.371691pt;}
.y6a_c00388{bottom:631.726997pt;}
.y69_c00388{bottom:632.511456pt;}
.y68_c00388{bottom:633.315061pt;}
.y67_c00388{bottom:637.056629pt;}
.y66_c00388{bottom:637.847861pt;}
.y65_c00388{bottom:638.636757pt;}
.y64_c00388{bottom:656.904757pt;}
.y63_c00388{bottom:658.099093pt;}
.y62_c00388{bottom:659.493845pt;}
.y61_c00388{bottom:661.192277pt;}
.y60_c00388{bottom:663.280245pt;}
.y5f_c00388{bottom:664.726549pt;}
.y5e_c00388{bottom:666.392245pt;}
.y5d_c00388{bottom:667.331541pt;}
.y5c_c00388{bottom:670.118709pt;}
.y5b_c00388{bottom:671.765333pt;}
.y5a_c00388{bottom:688.536763pt;}
.y59_c00388{bottom:689.540755pt;}
.y58_c00388{bottom:692.400667pt;}
.y57_c00388{bottom:693.764535pt;}
.y56_c00388{bottom:696.364011pt;}
.y55_c00388{bottom:697.343979pt;}
.y54_c00388{bottom:699.960879pt;}
.y53_c00388{bottom:700.912863pt;}
.y52_c00388{bottom:701.879103pt;}
.y51_c00388{bottom:705.679163pt;}
.y50_c00388{bottom:706.326667pt;}
.y4f_c00388{bottom:721.415249pt;}
.y4e_c00388{bottom:723.268553pt;}
.y4d_c00388{bottom:724.489292pt;}
.y4c_c00388{bottom:726.342100pt;}
.y4b_c00388{bottom:726.950485pt;}
.y4a_c00388{bottom:730.854336pt;}
.y49_c00388{bottom:732.112233pt;}
.y48_c00388{bottom:734.880203pt;}
.y47_c00388{bottom:736.344477pt;}
.y46_c00388{bottom:738.455949pt;}
.y45_c00388{bottom:759.316929pt;}
.y44_c00388{bottom:762.079071pt;}
.y43_c00388{bottom:763.299809pt;}
.y42_c00388{bottom:764.520093pt;}
.y41_c00388{bottom:766.313175pt;}
.y7c_c00388{bottom:783.469333pt;}
.y40_c00388{bottom:786.788648pt;}
.y3f_c00388{bottom:789.870089pt;}
.y3e_c00388{bottom:790.778927pt;}
.y3d_c00388{bottom:793.794359pt;}
.y3c_c00388{bottom:795.051801pt;}
.y3b_c00388{bottom:796.577415pt;}
.y3a_c00388{bottom:797.492783pt;}
.y39_c00388{bottom:799.909832pt;}
.y38_c00388{bottom:800.736251pt;}
.y37_c00388{bottom:801.366667pt;}
.y36_c00388{bottom:820.461167pt;}
.y35_c00388{bottom:822.049947pt;}
.y34_c00388{bottom:823.399587pt;}
.y33_c00388{bottom:823.982987pt;}
.y32_c00388{bottom:825.304147pt;}
.y31_c00388{bottom:826.322667pt;}
.y30_c00388{bottom:854.761333pt;}
.y2f_c00388{bottom:857.091440pt;}
.y2e_c00388{bottom:857.793984pt;}
.y2d_c00388{bottom:859.891059pt;}
.y2a_c00388{bottom:878.298291pt;}
.y29_c00388{bottom:879.089285pt;}
.y2c_c00388{bottom:879.443483pt;}
.y28_c00388{bottom:879.867835pt;}
.y27_c00388{bottom:881.507819pt;}
.y26_c00388{bottom:883.869536pt;}
.y25_c00388{bottom:885.781523pt;}
.y24_c00388{bottom:888.433285pt;}
.y23_c00388{bottom:889.477251pt;}
.y22_c00388{bottom:890.267933pt;}
.y2b_c00388{bottom:890.892245pt;}
.y21_c00388{bottom:892.671787pt;}
.y20_c00388{bottom:894.465789pt;}
.y1f_c00388{bottom:913.017800pt;}
.y1e_c00388{bottom:914.221272pt;}
.y1d_c00388{bottom:915.751312pt;}
.y1c_c00388{bottom:917.727448pt;}
.y1b_c00388{bottom:919.057677pt;}
.y1a_c00388{bottom:920.636083pt;}
.y19_c00388{bottom:942.009368pt;}
.y16_c00388{bottom:945.942715pt;}
.y18_c00388{bottom:946.082701pt;}
.y15_c00388{bottom:946.685829pt;}
.y14_c00388{bottom:949.732995pt;}
.y13_c00388{bottom:950.781107pt;}
.y17_c00388{bottom:952.563149pt;}
.y12_c00388{bottom:953.352888pt;}
.y11_c00388{bottom:955.368061pt;}
.y10_c00388{bottom:957.126667pt;}
.yf_c00388{bottom:980.688560pt;}
.ye_c00388{bottom:982.964307pt;}
.yd_c00388{bottom:984.888573pt;}
.yc_c00388{bottom:986.156280pt;}
.yb_c00388{bottom:1004.772200pt;}
.ya_c00388{bottom:1005.941960pt;}
.y9_c00388{bottom:1007.145320pt;}
.y8_c00388{bottom:1009.515880pt;}
.y7_c00388{bottom:1010.420960pt;}
.y6_c00388{bottom:1012.792600pt;}
.y5_c00388{bottom:1014.889680pt;}
.y4_c00388{bottom:1016.006680pt;}
.y3_c00388{bottom:1018.404720pt;}
.y2_c00388{bottom:1020.153320pt;}
.y1_c00388{bottom:1022.168000pt;}
.h14_c00388{height:15.993255pt;}
.h11_c00388{height:16.000000pt;}
.h16_c00388{height:21.325833pt;}
.h7_c00388{height:21.333333pt;}
.hf_c00388{height:31.986509pt;}
.h1a_c00388{height:31.996240pt;}
.h4_c00388{height:32.010814pt;}
.h17_c00388{height:42.681086pt;}
.h15_c00388{height:47.983125pt;}
.h10_c00388{height:58.666667pt;}
.h13_c00388{height:63.968792pt;}
.he_c00388{height:63.973018pt;}
.hc_c00388{height:64.018429pt;}
.h6_c00388{height:64.021628pt;}
.h18_c00388{height:64.028794pt;}
.h12_c00388{height:69.299525pt;}
.h5_c00388{height:69.356764pt;}
.h2_c00388{height:69.364526pt;}
.h9_c00388{height:69.366640pt;}
.hb_c00388{height:74.632686pt;}
.h19_c00388{height:74.657893pt;}
.h3_c00388{height:74.691900pt;}
.hd_c00388{height:74.702535pt;}
.h8_c00388{height:85.342933pt;}
.ha_c00388{height:90.710222pt;}
.h1_c00388{height:1112.000000pt;}
.h0_c00388{height:1112.133333pt;}
.w0_c00388{width:813.333333pt;}
.x0_c00388{left:0.000000pt;}
.x8b_c00388{left:121.929333pt;}
.x68_c00388{left:124.794667pt;}
.x5d_c00388{left:125.986667pt;}
.x4e_c00388{left:127.449333pt;}
.x3c_c00388{left:128.890673pt;}
.x2c_c00388{left:130.834667pt;}
.x1c_c00388{left:132.485784pt;}
.x10_c00388{left:133.670667pt;}
.x1_c00388{left:134.868000pt;}
.xa0_c00388{left:140.809333pt;}
.x96_c00388{left:141.839105pt;}
.x79_c00388{left:144.484000pt;}
.x43_c00388{left:149.058667pt;}
.x31_c00388{left:150.729333pt;}
.x97_c00388{left:161.916229pt;}
.x7f_c00388{left:164.716460pt;}
.x44_c00388{left:168.660379pt;}
.x27_c00388{left:171.863536pt;}
.x15_c00388{left:174.330229pt;}
.x98_c00388{left:187.916457pt;}
.x8c_c00388{left:190.724000pt;}
.x69_c00388{left:191.630431pt;}
.x72_c00388{left:192.590521pt;}
.x5e_c00388{left:193.829333pt;}
.x4f_c00388{left:196.058667pt;}
.x32_c00388{left:197.724000pt;}
.x1d_c00388{left:198.920051pt;}
.x2_c00388{left:202.024000pt;}
.x3d_c00388{left:244.237340pt;}
.x73_c00388{left:251.461229pt;}
.xa1_c00388{left:254.504857pt;}
.x9f_c00388{left:255.721187pt;}
.x95_c00388{left:257.369333pt;}
.x18_c00388{left:259.317192pt;}
.x3_c00388{left:260.310667pt;}
.x29_c00388{left:268.810208pt;}
.x62_c00388{left:270.238667pt;}
.x56_c00388{left:272.428832pt;}
.x33_c00388{left:275.693333pt;}
.x8d_c00388{left:277.568000pt;}
.x11_c00388{left:278.816000pt;}
.x6a_c00388{left:280.536103pt;}
.x45_c00388{left:283.698559pt;}
.x2d_c00388{left:286.813333pt;}
.x1e_c00388{left:287.937728pt;}
.x5f_c00388{left:291.237333pt;}
.x57_c00388{left:301.630720pt;}
.x34_c00388{left:305.221333pt;}
.x8e_c00388{left:306.604000pt;}
.x6b_c00388{left:309.540403pt;}
.x46_c00388{left:312.949279pt;}
.x2b_c00388{left:315.360000pt;}
.x1f_c00388{left:317.219632pt;}
.xc_c00388{left:320.346067pt;}
.x2e_c00388{left:325.706667pt;}
.x74_c00388{left:327.861389pt;}
.x58_c00388{left:330.929941pt;}
.x39_c00388{left:333.803952pt;}
.x4_c00388{left:340.245333pt;}
.x47_c00388{left:341.768431pt;}
.x99_c00388{left:343.406473pt;}
.x19_c00388{left:345.226549pt;}
.x6c_c00388{left:347.703535pt;}
.x50_c00388{left:351.328000pt;}
.x35_c00388{left:354.434667pt;}
.x20_c00388{left:355.883960pt;}
.x88_c00388{left:357.173184pt;}
.xd_c00388{left:358.777293pt;}
.x7a_c00388{left:366.894700pt;}
.x63_c00388{left:369.150323pt;}
.x3a_c00388{left:373.167952pt;}
.x3e_c00388{left:374.104007pt;}
.x5_c00388{left:377.478667pt;}
.x2a_c00388{left:385.468275pt;}
.xa2_c00388{left:392.056501pt;}
.x36_c00388{left:394.997333pt;}
.x75_c00388{left:397.142701pt;}
.x1a_c00388{left:411.771749pt;}
.x2f_c00388{left:415.682667pt;}
.xe_c00388{left:417.092053pt;}
.x12_c00388{left:418.042667pt;}
.x48_c00388{left:420.989131pt;}
.x16_c00388{left:423.578229pt;}
.x76_c00388{left:436.492447pt;}
.x9a_c00388{left:441.482949pt;}
.x8f_c00388{left:443.722667pt;}
.x83_c00388{left:445.244964pt;}
.x6_c00388{left:447.381333pt;}
.x49_c00388{left:450.655435pt;}
.xa3_c00388{left:451.794037pt;}
.x21_c00388{left:454.077395pt;}
.x7b_c00388{left:457.075096pt;}
.x80_c00388{left:462.878831pt;}
.x1b_c00388{left:464.114507pt;}
.x59_c00388{left:469.485291pt;}
.x51_c00388{left:480.994667pt;}
.xf_c00388{left:486.055187pt;}
.x37_c00388{left:492.269333pt;}
.x3f_c00388{left:500.034673pt;}
.x3b_c00388{left:501.647952pt;}
.x64_c00388{left:504.421675pt;}
.x89_c00388{left:506.425020pt;}
.xa4_c00388{left:510.593845pt;}
.x9b_c00388{left:512.248827pt;}
.x90_c00388{left:513.841333pt;}
.x6d_c00388{left:517.064671pt;}
.x40_c00388{left:519.660007pt;}
.x30_c00388{left:521.601333pt;}
.x22_c00388{left:524.895557pt;}
.x7_c00388{left:526.436000pt;}
.x60_c00388{left:527.378667pt;}
.x5a_c00388{left:528.317067pt;}
.x4a_c00388{left:529.348663pt;}
.x13_c00388{left:535.241333pt;}
.x28_c00388{left:541.178224pt;}
.x84_c00388{left:542.747364pt;}
.x77_c00388{left:550.793008pt;}
.x7c_c00388{left:553.541200pt;}
.x8_c00388{left:556.605333pt;}
.x14_c00388{left:563.822667pt;}
.x52_c00388{left:567.993333pt;}
.x4b_c00388{left:570.636667pt;}
.x5b_c00388{left:578.506784pt;}
.x17_c00388{left:580.244896pt;}
.xa6_c00388{left:583.381477pt;}
.x61_c00388{left:586.361333pt;}
.xa5_c00388{left:589.347013pt;}
.x91_c00388{left:592.142667pt;}
.x85_c00388{left:603.539844pt;}
.x5c_c00388{left:607.326037pt;}
.x23_c00388{left:612.343936pt;}
.x6e_c00388{left:614.788183pt;}
.x41_c00388{left:618.806673pt;}
.x38_c00388{left:620.988000pt;}
.x9_c00388{left:635.624000pt;}
.x53_c00388{left:638.761333pt;}
.x6f_c00388{left:643.583359pt;}
.x9c_c00388{left:649.740427pt;}
.x92_c00388{left:651.458667pt;}
.x7d_c00388{left:652.875100pt;}
.x4c_c00388{left:657.214003pt;}
.x81_c00388{left:669.717485pt;}
.x24_c00388{left:673.059675pt;}
.x78_c00388{left:674.026815pt;}
.xa_c00388{left:675.736000pt;}
.x42_c00388{left:678.590673pt;}
.x7e_c00388{left:682.125820pt;}
.x70_c00388{left:684.862039pt;}
.x4d_c00388{left:687.607579pt;}
.x94_c00388{left:692.351669pt;}
.x54_c00388{left:696.876000pt;}
.x86_c00388{left:700.879740pt;}
.x25_c00388{left:701.874912pt;}
.x8a_c00388{left:703.111296pt;}
.x93_c00388{left:711.285333pt;}
.x71_c00388{left:713.317555pt;}
.xb_c00388{left:714.728000pt;}
.x9e_c00388{left:716.946667pt;}
.x9d_c00388{left:718.131983pt;}
.x65_c00388{left:721.920000pt;}
.x82_c00388{left:725.042632pt;}
.x26_c00388{left:731.168816pt;}
.x66_c00388{left:739.680000pt;}
.x87_c00388{left:740.749164pt;}
.x55_c00388{left:746.640000pt;}
.x67_c00388{left:808.800000pt;}
}





/* 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_c00389 {
    display:none;
  }
  .loading-indicator_c00389.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00389 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_c00389 { 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_c00389" -> "#page-container .classname_c00389")
 */
.pf_c00389 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00389 { /* 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_c00389.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00389 { /* 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_c00389 { /* 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_c00389 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00389 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00389 {overflow:visible;}
  }
}
.c_c00389 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00389 { /* 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_c00389:after { /* webkit #35443 */
  content: '';
}
.t_c00389:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00389 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 */
}
.__c00389 { /* 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_c00389 { /* info for Javascript */
  display:none;
}
.l_c00389 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00389 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00389 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00389: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_c00389 {
    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_c00389.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00389.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_c00389 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00389{font-family:sans-serif;visibility:hidden;}
.sc__c00389{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00389{-webkit-text-stroke:0px transparent;}
}
.y0_c00389{bottom:0.000000px;}
.h1_c00389{height:1251.000000px;}
.h0_c00389{height:1251.150000px;}
.w0_c00389{width:915.000000px;}
.x0_c00389{left:0.000000px;}
@media print{
.y0_c00389{bottom:0.000000pt;}
.h1_c00389{height:1112.000000pt;}
.h0_c00389{height:1112.133333pt;}
.w0_c00389{width:813.333333pt;}
.x0_c00389{left:0.000000pt;}
}





/* 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_c00390 {
    display:none;
  }
  .loading-indicator_c00390.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00390 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_c00390 { 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_c00390" -> "#page-container .classname_c00390")
 */
.pf_c00390 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00390 { /* 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_c00390.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00390 { /* 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_c00390 { /* 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_c00390 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00390 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00390 {overflow:visible;}
  }
}
.c_c00390 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00390 { /* 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_c00390:after { /* webkit #35443 */
  content: '';
}
.t_c00390:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00390 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 */
}
.__c00390 { /* 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_c00390 { /* info for Javascript */
  display:none;
}
.l_c00390 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00390 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00390 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00390: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_c00390 {
    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_c00390.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00390.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_c00390 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00390{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00390;src:url('chunks/assets/font_53ec0c54e60da7c2d414b553.woff2')format("woff");}.ff1_c00390{font-family:ff1_c00390;line-height:1.000000;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;}
.m114_c00390{transform:matrix(0.047690,0.001957,-0.010252,0.249790,0,0);-ms-transform:matrix(0.047690,0.001957,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.047690,0.001957,-0.010252,0.249790,0,0);}
.m4_c00390{transform:matrix(0.056250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.056250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.056250,0.000000,0.000000,0.250000,0,0);}
.m5_c00390{transform:matrix(0.080759,0.001615,-0.004999,0.249950,0,0);-ms-transform:matrix(0.080759,0.001615,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.080759,0.001615,-0.004999,0.249950,0,0);}
.mff_c00390{transform:matrix(0.098145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098145,0.000000,0.000000,0.250000,0,0);}
.m9_c00390{transform:matrix(0.125755,0.002515,-0.004999,0.249950,0,0);-ms-transform:matrix(0.125755,0.002515,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.125755,0.002515,-0.004999,0.249950,0,0);}
.m145_c00390{transform:matrix(0.128270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128270,0.000000,0.000000,0.250000,0,0);}
.m115_c00390{transform:matrix(0.143070,0.005872,-0.010252,0.249790,0,0);-ms-transform:matrix(0.143070,0.005872,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.143070,0.005872,-0.010252,0.249790,0,0);}
.m36_c00390{transform:matrix(0.164417,0.003288,-0.004999,0.249950,0,0);-ms-transform:matrix(0.164417,0.003288,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.164417,0.003288,-0.004999,0.249950,0,0);}
.m88_c00390{transform:matrix(0.166959,0.002337,-0.003500,0.249976,0,0);-ms-transform:matrix(0.166959,0.002337,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.166959,0.002337,-0.003500,0.249976,0,0);}
.m57_c00390{transform:matrix(0.167509,0.002345,-0.003500,0.249976,0,0);-ms-transform:matrix(0.167509,0.002345,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.167509,0.002345,-0.003500,0.249976,0,0);}
.m54_c00390{transform:matrix(0.169038,0.002367,-0.003500,0.249976,0,0);-ms-transform:matrix(0.169038,0.002367,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.169038,0.002367,-0.003500,0.249976,0,0);}
.m5f_c00390{transform:matrix(0.169738,0.002376,-0.003500,0.249976,0,0);-ms-transform:matrix(0.169738,0.002376,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.169738,0.002376,-0.003500,0.249976,0,0);}
.mf9_c00390{transform:matrix(0.170658,0.002389,-0.003500,0.249976,0,0);-ms-transform:matrix(0.170658,0.002389,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.170658,0.002389,-0.003500,0.249976,0,0);}
.med_c00390{transform:matrix(0.170888,0.002392,-0.003500,0.249976,0,0);-ms-transform:matrix(0.170888,0.002392,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.170888,0.002392,-0.003500,0.249976,0,0);}
.m8c_c00390{transform:matrix(0.177003,0.002478,-0.003500,0.249976,0,0);-ms-transform:matrix(0.177003,0.002478,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.177003,0.002478,-0.003500,0.249976,0,0);}
.m91_c00390{transform:matrix(0.179762,0.002517,-0.003500,0.249976,0,0);-ms-transform:matrix(0.179762,0.002517,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.179762,0.002517,-0.003500,0.249976,0,0);}
.md1_c00390{transform:matrix(0.180187,0.002523,-0.003500,0.249976,0,0);-ms-transform:matrix(0.180187,0.002523,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.180187,0.002523,-0.003500,0.249976,0,0);}
.m55_c00390{transform:matrix(0.182522,0.002555,-0.003500,0.249976,0,0);-ms-transform:matrix(0.182522,0.002555,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.182522,0.002555,-0.003500,0.249976,0,0);}
.m8f_c00390{transform:matrix(0.183032,0.002562,-0.003500,0.249976,0,0);-ms-transform:matrix(0.183032,0.002562,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.183032,0.002562,-0.003500,0.249976,0,0);}
.m27_c00390{transform:matrix(0.183713,0.003674,-0.004999,0.249950,0,0);-ms-transform:matrix(0.183713,0.003674,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.183713,0.003674,-0.004999,0.249950,0,0);}
.m8a_c00390{transform:matrix(0.185132,0.002592,-0.003500,0.249976,0,0);-ms-transform:matrix(0.185132,0.002592,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.185132,0.002592,-0.003500,0.249976,0,0);}
.md5_c00390{transform:matrix(0.186607,0.002612,-0.003500,0.249976,0,0);-ms-transform:matrix(0.186607,0.002612,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.186607,0.002612,-0.003500,0.249976,0,0);}
.mcf_c00390{transform:matrix(0.186852,0.002616,-0.003500,0.249976,0,0);-ms-transform:matrix(0.186852,0.002616,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.186852,0.002616,-0.003500,0.249976,0,0);}
.m8e_c00390{transform:matrix(0.187092,0.002619,-0.003500,0.249976,0,0);-ms-transform:matrix(0.187092,0.002619,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.187092,0.002619,-0.003500,0.249976,0,0);}
.ma1_c00390{transform:matrix(0.188207,0.002635,-0.003500,0.249976,0,0);-ms-transform:matrix(0.188207,0.002635,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.188207,0.002635,-0.003500,0.249976,0,0);}
.m45_c00390{transform:matrix(0.188831,0.002644,-0.003500,0.249976,0,0);-ms-transform:matrix(0.188831,0.002644,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.188831,0.002644,-0.003500,0.249976,0,0);}
.mf2_c00390{transform:matrix(0.188856,0.002644,-0.003500,0.249976,0,0);-ms-transform:matrix(0.188856,0.002644,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.188856,0.002644,-0.003500,0.249976,0,0);}
.mee_c00390{transform:matrix(0.188991,0.002646,-0.003500,0.249976,0,0);-ms-transform:matrix(0.188991,0.002646,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.188991,0.002646,-0.003500,0.249976,0,0);}
.md6_c00390{transform:matrix(0.189586,0.002654,-0.003500,0.249976,0,0);-ms-transform:matrix(0.189586,0.002654,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.189586,0.002654,-0.003500,0.249976,0,0);}
.md3_c00390{transform:matrix(0.189766,0.002657,-0.003500,0.249976,0,0);-ms-transform:matrix(0.189766,0.002657,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.189766,0.002657,-0.003500,0.249976,0,0);}
.m31_c00390{transform:matrix(0.189867,0.003797,-0.004999,0.249950,0,0);-ms-transform:matrix(0.189867,0.003797,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.189867,0.003797,-0.004999,0.249950,0,0);}
.m5b_c00390{transform:matrix(0.190251,0.002664,-0.003500,0.249976,0,0);-ms-transform:matrix(0.190251,0.002664,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.190251,0.002664,-0.003500,0.249976,0,0);}
.m2d_c00390{transform:matrix(0.190722,0.003814,-0.004999,0.249950,0,0);-ms-transform:matrix(0.190722,0.003814,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.190722,0.003814,-0.004999,0.249950,0,0);}
.m58_c00390{transform:matrix(0.190836,0.002672,-0.003500,0.249976,0,0);-ms-transform:matrix(0.190836,0.002672,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.190836,0.002672,-0.003500,0.249976,0,0);}
.m87_c00390{transform:matrix(0.191236,0.002677,-0.003500,0.249976,0,0);-ms-transform:matrix(0.191236,0.002677,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.191236,0.002677,-0.003500,0.249976,0,0);}
.m8b_c00390{transform:matrix(0.191701,0.002684,-0.003500,0.249976,0,0);-ms-transform:matrix(0.191701,0.002684,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.191701,0.002684,-0.003500,0.249976,0,0);}
.m92_c00390{transform:matrix(0.191896,0.002687,-0.003500,0.249976,0,0);-ms-transform:matrix(0.191896,0.002687,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.191896,0.002687,-0.003500,0.249976,0,0);}
.mc9_c00390{transform:matrix(0.191951,0.002687,-0.003500,0.249976,0,0);-ms-transform:matrix(0.191951,0.002687,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.191951,0.002687,-0.003500,0.249976,0,0);}
.m93_c00390{transform:matrix(0.193061,0.002703,-0.003500,0.249976,0,0);-ms-transform:matrix(0.193061,0.002703,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.193061,0.002703,-0.003500,0.249976,0,0);}
.mf7_c00390{transform:matrix(0.193136,0.002704,-0.003500,0.249976,0,0);-ms-transform:matrix(0.193136,0.002704,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.193136,0.002704,-0.003500,0.249976,0,0);}
.m13e_c00390{transform:matrix(0.193469,0.005417,-0.006997,0.249902,0,0);-ms-transform:matrix(0.193469,0.005417,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.193469,0.005417,-0.006997,0.249902,0,0);}
.m25_c00390{transform:matrix(0.193946,0.003879,-0.004999,0.249950,0,0);-ms-transform:matrix(0.193946,0.003879,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.193946,0.003879,-0.004999,0.249950,0,0);}
.m5a_c00390{transform:matrix(0.195056,0.002731,-0.003500,0.249976,0,0);-ms-transform:matrix(0.195056,0.002731,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.195056,0.002731,-0.003500,0.249976,0,0);}
.m28_c00390{transform:matrix(0.195191,0.003904,-0.004999,0.249950,0,0);-ms-transform:matrix(0.195191,0.003904,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.195191,0.003904,-0.004999,0.249950,0,0);}
.m49_c00390{transform:matrix(0.195211,0.002733,-0.003500,0.249976,0,0);-ms-transform:matrix(0.195211,0.002733,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.195211,0.002733,-0.003500,0.249976,0,0);}
.m5c_c00390{transform:matrix(0.195241,0.002733,-0.003500,0.249976,0,0);-ms-transform:matrix(0.195241,0.002733,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.195241,0.002733,-0.003500,0.249976,0,0);}
.m1e_c00390{transform:matrix(0.195831,0.003917,-0.004999,0.249950,0,0);-ms-transform:matrix(0.195831,0.003917,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.195831,0.003917,-0.004999,0.249950,0,0);}
.mc4_c00390{transform:matrix(0.195851,0.002742,-0.003500,0.249976,0,0);-ms-transform:matrix(0.195851,0.002742,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.195851,0.002742,-0.003500,0.249976,0,0);}
.mfa_c00390{transform:matrix(0.195876,0.002742,-0.003500,0.249976,0,0);-ms-transform:matrix(0.195876,0.002742,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.195876,0.002742,-0.003500,0.249976,0,0);}
.m30_c00390{transform:matrix(0.196116,0.003922,-0.004999,0.249950,0,0);-ms-transform:matrix(0.196116,0.003922,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.196116,0.003922,-0.004999,0.249950,0,0);}
.m119_c00390{transform:matrix(0.197004,0.008085,-0.010252,0.249790,0,0);-ms-transform:matrix(0.197004,0.008085,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.197004,0.008085,-0.010252,0.249790,0,0);}
.m2a_c00390{transform:matrix(0.197131,0.003943,-0.004999,0.249950,0,0);-ms-transform:matrix(0.197131,0.003943,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.197131,0.003943,-0.004999,0.249950,0,0);}
.mef_c00390{transform:matrix(0.197291,0.002762,-0.003500,0.249976,0,0);-ms-transform:matrix(0.197291,0.002762,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.197291,0.002762,-0.003500,0.249976,0,0);}
.mc2_c00390{transform:matrix(0.198226,0.002775,-0.003500,0.249976,0,0);-ms-transform:matrix(0.198226,0.002775,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.198226,0.002775,-0.003500,0.249976,0,0);}
.m10d_c00390{transform:matrix(0.198420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198420,0.000000,0.000000,0.250000,0,0);}
.md4_c00390{transform:matrix(0.198446,0.002778,-0.003500,0.249976,0,0);-ms-transform:matrix(0.198446,0.002778,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.198446,0.002778,-0.003500,0.249976,0,0);}
.m6e_c00390{transform:matrix(0.198995,0.002786,-0.003500,0.249976,0,0);-ms-transform:matrix(0.198995,0.002786,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.198995,0.002786,-0.003500,0.249976,0,0);}
.m141_c00390{transform:matrix(0.199002,0.005572,-0.006997,0.249902,0,0);-ms-transform:matrix(0.199002,0.005572,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.199002,0.005572,-0.006997,0.249902,0,0);}
.m6_c00390{transform:matrix(0.199310,0.003986,-0.004999,0.249950,0,0);-ms-transform:matrix(0.199310,0.003986,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.199310,0.003986,-0.004999,0.249950,0,0);}
.m89_c00390{transform:matrix(0.199820,0.002797,-0.003500,0.249976,0,0);-ms-transform:matrix(0.199820,0.002797,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.199820,0.002797,-0.003500,0.249976,0,0);}
.mec_c00390{transform:matrix(0.200040,0.002801,-0.003500,0.249976,0,0);-ms-transform:matrix(0.200040,0.002801,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.200040,0.002801,-0.003500,0.249976,0,0);}
.m11c_c00390{transform:matrix(0.200191,0.008216,-0.010252,0.249790,0,0);-ms-transform:matrix(0.200191,0.008216,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.200191,0.008216,-0.010252,0.249790,0,0);}
.mc0_c00390{transform:matrix(0.200220,0.002803,-0.003500,0.249976,0,0);-ms-transform:matrix(0.200220,0.002803,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.200220,0.002803,-0.003500,0.249976,0,0);}
.m121_c00390{transform:matrix(0.201445,0.008268,-0.010252,0.249790,0,0);-ms-transform:matrix(0.201445,0.008268,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.201445,0.008268,-0.010252,0.249790,0,0);}
.ma_c00390{transform:matrix(0.202769,0.004055,-0.004999,0.249950,0,0);-ms-transform:matrix(0.202769,0.004055,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.202769,0.004055,-0.004999,0.249950,0,0);}
.m20_c00390{transform:matrix(0.202999,0.004060,-0.004999,0.249950,0,0);-ms-transform:matrix(0.202999,0.004060,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.202999,0.004060,-0.004999,0.249950,0,0);}
.m1f_c00390{transform:matrix(0.203509,0.004070,-0.004999,0.249950,0,0);-ms-transform:matrix(0.203509,0.004070,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.203509,0.004070,-0.004999,0.249950,0,0);}
.mfc_c00390{transform:matrix(0.204990,0.002870,-0.003500,0.249976,0,0);-ms-transform:matrix(0.204990,0.002870,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.204990,0.002870,-0.003500,0.249976,0,0);}
.mc6_c00390{transform:matrix(0.206075,0.002885,-0.003500,0.249976,0,0);-ms-transform:matrix(0.206075,0.002885,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.206075,0.002885,-0.003500,0.249976,0,0);}
.mfb_c00390{transform:matrix(0.206930,0.002897,-0.003500,0.249976,0,0);-ms-transform:matrix(0.206930,0.002897,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.206930,0.002897,-0.003500,0.249976,0,0);}
.m5d_c00390{transform:matrix(0.207080,0.002899,-0.003500,0.249976,0,0);-ms-transform:matrix(0.207080,0.002899,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.207080,0.002899,-0.003500,0.249976,0,0);}
.m123_c00390{transform:matrix(0.207221,0.008505,-0.010252,0.249790,0,0);-ms-transform:matrix(0.207221,0.008505,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.207221,0.008505,-0.010252,0.249790,0,0);}
.m13f_c00390{transform:matrix(0.208143,0.005828,-0.006997,0.249902,0,0);-ms-transform:matrix(0.208143,0.005828,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.208143,0.005828,-0.006997,0.249902,0,0);}
.m59_c00390{transform:matrix(0.209170,0.002928,-0.003500,0.249976,0,0);-ms-transform:matrix(0.209170,0.002928,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.209170,0.002928,-0.003500,0.249976,0,0);}
.m11a_c00390{transform:matrix(0.209214,0.008586,-0.010252,0.249790,0,0);-ms-transform:matrix(0.209214,0.008586,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.209214,0.008586,-0.010252,0.249790,0,0);}
.m29_c00390{transform:matrix(0.209258,0.004185,-0.004999,0.249950,0,0);-ms-transform:matrix(0.209258,0.004185,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.209258,0.004185,-0.004999,0.249950,0,0);}
.m94_c00390{transform:matrix(0.209289,0.002930,-0.003500,0.249976,0,0);-ms-transform:matrix(0.209289,0.002930,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.209289,0.002930,-0.003500,0.249976,0,0);}
.m22_c00390{transform:matrix(0.209348,0.004187,-0.004999,0.249950,0,0);-ms-transform:matrix(0.209348,0.004187,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.209348,0.004187,-0.004999,0.249950,0,0);}
.mf6_c00390{transform:matrix(0.209774,0.002937,-0.003500,0.249976,0,0);-ms-transform:matrix(0.209774,0.002937,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.209774,0.002937,-0.003500,0.249976,0,0);}
.m70_c00390{transform:matrix(0.211479,0.002961,-0.003500,0.249976,0,0);-ms-transform:matrix(0.211479,0.002961,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.211479,0.002961,-0.003500,0.249976,0,0);}
.m117_c00390{transform:matrix(0.211717,0.008689,-0.010252,0.249790,0,0);-ms-transform:matrix(0.211717,0.008689,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.211717,0.008689,-0.010252,0.249790,0,0);}
.m1d_c00390{transform:matrix(0.212243,0.004245,-0.004999,0.249950,0,0);-ms-transform:matrix(0.212243,0.004245,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.212243,0.004245,-0.004999,0.249950,0,0);}
.mf5_c00390{transform:matrix(0.212289,0.002972,-0.003500,0.249976,0,0);-ms-transform:matrix(0.212289,0.002972,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.212289,0.002972,-0.003500,0.249976,0,0);}
.m90_c00390{transform:matrix(0.212389,0.002973,-0.003500,0.249976,0,0);-ms-transform:matrix(0.212389,0.002973,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.212389,0.002973,-0.003500,0.249976,0,0);}
.m7d_c00390{transform:matrix(0.212844,0.002980,-0.003500,0.249976,0,0);-ms-transform:matrix(0.212844,0.002980,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.212844,0.002980,-0.003500,0.249976,0,0);}
.m23_c00390{transform:matrix(0.213482,0.004270,-0.004999,0.249950,0,0);-ms-transform:matrix(0.213482,0.004270,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.213482,0.004270,-0.004999,0.249950,0,0);}
.m11f_c00390{transform:matrix(0.213625,0.008767,-0.010252,0.249790,0,0);-ms-transform:matrix(0.213625,0.008767,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.213625,0.008767,-0.010252,0.249790,0,0);}
.m2f_c00390{transform:matrix(0.214042,0.004281,-0.004999,0.249950,0,0);-ms-transform:matrix(0.214042,0.004281,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.214042,0.004281,-0.004999,0.249950,0,0);}
.mdb_c00390{transform:matrix(0.214119,0.002998,-0.003500,0.249976,0,0);-ms-transform:matrix(0.214119,0.002998,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.214119,0.002998,-0.003500,0.249976,0,0);}
.md7_c00390{transform:matrix(0.214289,0.003000,-0.003500,0.249976,0,0);-ms-transform:matrix(0.214289,0.003000,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.214289,0.003000,-0.003500,0.249976,0,0);}
.m7f_c00390{transform:matrix(0.214934,0.003009,-0.003500,0.249976,0,0);-ms-transform:matrix(0.214934,0.003009,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.214934,0.003009,-0.003500,0.249976,0,0);}
.mc3_c00390{transform:matrix(0.215694,0.003020,-0.003500,0.249976,0,0);-ms-transform:matrix(0.215694,0.003020,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.215694,0.003020,-0.003500,0.249976,0,0);}
.mcc_c00390{transform:matrix(0.216719,0.003034,-0.003500,0.249976,0,0);-ms-transform:matrix(0.216719,0.003034,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.216719,0.003034,-0.003500,0.249976,0,0);}
.m5e_c00390{transform:matrix(0.216874,0.003036,-0.003500,0.249976,0,0);-ms-transform:matrix(0.216874,0.003036,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.216874,0.003036,-0.003500,0.249976,0,0);}
.m7b_c00390{transform:matrix(0.217019,0.003038,-0.003500,0.249976,0,0);-ms-transform:matrix(0.217019,0.003038,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.217019,0.003038,-0.003500,0.249976,0,0);}
.ma4_c00390{transform:matrix(0.217204,0.003041,-0.003500,0.249976,0,0);-ms-transform:matrix(0.217204,0.003041,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.217204,0.003041,-0.003500,0.249976,0,0);}
.m144_c00390{transform:matrix(0.217485,0.006090,-0.006997,0.249902,0,0);-ms-transform:matrix(0.217485,0.006090,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.217485,0.006090,-0.006997,0.249902,0,0);}
.mb3_c00390{transform:matrix(0.218069,0.003053,-0.003500,0.249976,0,0);-ms-transform:matrix(0.218069,0.003053,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.218069,0.003053,-0.003500,0.249976,0,0);}
.m56_c00390{transform:matrix(0.218144,0.003054,-0.003500,0.249976,0,0);-ms-transform:matrix(0.218144,0.003054,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.218144,0.003054,-0.003500,0.249976,0,0);}
.mac_c00390{transform:matrix(0.218399,0.003058,-0.003500,0.249976,0,0);-ms-transform:matrix(0.218399,0.003058,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.218399,0.003058,-0.003500,0.249976,0,0);}
.m11d_c00390{transform:matrix(0.218741,0.008977,-0.010252,0.249790,0,0);-ms-transform:matrix(0.218741,0.008977,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.218741,0.008977,-0.010252,0.249790,0,0);}
.mf3_c00390{transform:matrix(0.220353,0.003085,-0.003500,0.249976,0,0);-ms-transform:matrix(0.220353,0.003085,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.220353,0.003085,-0.003500,0.249976,0,0);}
.mf4_c00390{transform:matrix(0.220503,0.003087,-0.003500,0.249976,0,0);-ms-transform:matrix(0.220503,0.003087,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.220503,0.003087,-0.003500,0.249976,0,0);}
.m43_c00390{transform:matrix(0.220658,0.003089,-0.003500,0.249976,0,0);-ms-transform:matrix(0.220658,0.003089,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.220658,0.003089,-0.003500,0.249976,0,0);}
.m8d_c00390{transform:matrix(0.220788,0.003091,-0.003500,0.249976,0,0);-ms-transform:matrix(0.220788,0.003091,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.220788,0.003091,-0.003500,0.249976,0,0);}
.mc_c00390{transform:matrix(0.220981,0.004420,-0.004999,0.249950,0,0);-ms-transform:matrix(0.220981,0.004420,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.220981,0.004420,-0.004999,0.249950,0,0);}
.m73_c00390{transform:matrix(0.221393,0.003100,-0.003500,0.249976,0,0);-ms-transform:matrix(0.221393,0.003100,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.221393,0.003100,-0.003500,0.249976,0,0);}
.m83_c00390{transform:matrix(0.221578,0.003102,-0.003500,0.249976,0,0);-ms-transform:matrix(0.221578,0.003102,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.221578,0.003102,-0.003500,0.249976,0,0);}
.m38_c00390{transform:matrix(0.221601,0.004432,-0.004999,0.249950,0,0);-ms-transform:matrix(0.221601,0.004432,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.221601,0.004432,-0.004999,0.249950,0,0);}
.m9e_c00390{transform:matrix(0.221858,0.003106,-0.003500,0.249976,0,0);-ms-transform:matrix(0.221858,0.003106,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.221858,0.003106,-0.003500,0.249976,0,0);}
.m140_c00390{transform:matrix(0.221938,0.006214,-0.006997,0.249902,0,0);-ms-transform:matrix(0.221938,0.006214,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.221938,0.006214,-0.006997,0.249902,0,0);}
.mf8_c00390{transform:matrix(0.222063,0.003109,-0.003500,0.249976,0,0);-ms-transform:matrix(0.222063,0.003109,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.222063,0.003109,-0.003500,0.249976,0,0);}
.m72_c00390{transform:matrix(0.223863,0.003134,-0.003500,0.249976,0,0);-ms-transform:matrix(0.223863,0.003134,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.223863,0.003134,-0.003500,0.249976,0,0);}
.mb0_c00390{transform:matrix(0.223948,0.003135,-0.003500,0.249976,0,0);-ms-transform:matrix(0.223948,0.003135,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.223948,0.003135,-0.003500,0.249976,0,0);}
.mfd_c00390{transform:matrix(0.224053,0.003137,-0.003500,0.249976,0,0);-ms-transform:matrix(0.224053,0.003137,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.224053,0.003137,-0.003500,0.249976,0,0);}
.m33_c00390{transform:matrix(0.224220,0.004484,-0.004999,0.249950,0,0);-ms-transform:matrix(0.224220,0.004484,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.224220,0.004484,-0.004999,0.249950,0,0);}
.m143_c00390{transform:matrix(0.224687,0.006291,-0.006997,0.249902,0,0);-ms-transform:matrix(0.224687,0.006291,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.224687,0.006291,-0.006997,0.249902,0,0);}
.m61_c00390{transform:matrix(0.225418,0.003156,-0.003500,0.249976,0,0);-ms-transform:matrix(0.225418,0.003156,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.225418,0.003156,-0.003500,0.249976,0,0);}
.m124_c00390{transform:matrix(0.225620,0.009260,-0.010252,0.249790,0,0);-ms-transform:matrix(0.225620,0.009260,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.225620,0.009260,-0.010252,0.249790,0,0);}
.m110_c00390{transform:matrix(0.225695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225695,0.000000,0.000000,0.250000,0,0);}
.mfe_c00390{transform:matrix(0.225798,0.003161,-0.003500,0.249976,0,0);-ms-transform:matrix(0.225798,0.003161,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.225798,0.003161,-0.003500,0.249976,0,0);}
.m13b_c00390{transform:matrix(0.226736,0.006349,-0.006997,0.249902,0,0);-ms-transform:matrix(0.226736,0.006349,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.226736,0.006349,-0.006997,0.249902,0,0);}
.m37_c00390{transform:matrix(0.226870,0.004537,-0.004999,0.249950,0,0);-ms-transform:matrix(0.226870,0.004537,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.226870,0.004537,-0.004999,0.249950,0,0);}
.m34_c00390{transform:matrix(0.227849,0.004557,-0.004999,0.249950,0,0);-ms-transform:matrix(0.227849,0.004557,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.227849,0.004557,-0.004999,0.249950,0,0);}
.m18_c00390{transform:matrix(0.228394,0.004568,-0.004999,0.249950,0,0);-ms-transform:matrix(0.228394,0.004568,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.228394,0.004568,-0.004999,0.249950,0,0);}
.md0_c00390{transform:matrix(0.228508,0.003199,-0.003500,0.249976,0,0);-ms-transform:matrix(0.228508,0.003199,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.228508,0.003199,-0.003500,0.249976,0,0);}
.mcd_c00390{transform:matrix(0.228543,0.003200,-0.003500,0.249976,0,0);-ms-transform:matrix(0.228543,0.003200,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.228543,0.003200,-0.003500,0.249976,0,0);}
.m2e_c00390{transform:matrix(0.229104,0.004582,-0.004999,0.249950,0,0);-ms-transform:matrix(0.229104,0.004582,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.229104,0.004582,-0.004999,0.249950,0,0);}
.m82_c00390{transform:matrix(0.229448,0.003212,-0.003500,0.249976,0,0);-ms-transform:matrix(0.229448,0.003212,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.229448,0.003212,-0.003500,0.249976,0,0);}
.m7c_c00390{transform:matrix(0.229568,0.003214,-0.003500,0.249976,0,0);-ms-transform:matrix(0.229568,0.003214,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.229568,0.003214,-0.003500,0.249976,0,0);}
.mf1_c00390{transform:matrix(0.229667,0.003215,-0.003500,0.249976,0,0);-ms-transform:matrix(0.229667,0.003215,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.229667,0.003215,-0.003500,0.249976,0,0);}
.m3f_c00390{transform:matrix(0.229927,0.003219,-0.003500,0.249976,0,0);-ms-transform:matrix(0.229927,0.003219,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.229927,0.003219,-0.003500,0.249976,0,0);}
.md2_c00390{transform:matrix(0.230137,0.003222,-0.003500,0.249976,0,0);-ms-transform:matrix(0.230137,0.003222,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.230137,0.003222,-0.003500,0.249976,0,0);}
.m6c_c00390{transform:matrix(0.230177,0.003222,-0.003500,0.249976,0,0);-ms-transform:matrix(0.230177,0.003222,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.230177,0.003222,-0.003500,0.249976,0,0);}
.m41_c00390{transform:matrix(0.230702,0.003230,-0.003500,0.249976,0,0);-ms-transform:matrix(0.230702,0.003230,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.230702,0.003230,-0.003500,0.249976,0,0);}
.m122_c00390{transform:matrix(0.230706,0.009468,-0.010252,0.249790,0,0);-ms-transform:matrix(0.230706,0.009468,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.230706,0.009468,-0.010252,0.249790,0,0);}
.m79_c00390{transform:matrix(0.230912,0.003233,-0.003500,0.249976,0,0);-ms-transform:matrix(0.230912,0.003233,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.230912,0.003233,-0.003500,0.249976,0,0);}
.m0_c00390{transform:matrix(0.231275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231275,0.000000,0.000000,0.250000,0,0);}
.m142_c00390{transform:matrix(0.231534,0.006483,-0.006997,0.249902,0,0);-ms-transform:matrix(0.231534,0.006483,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.231534,0.006483,-0.006997,0.249902,0,0);}
.mc7_c00390{transform:matrix(0.231622,0.003243,-0.003500,0.249976,0,0);-ms-transform:matrix(0.231622,0.003243,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.231622,0.003243,-0.003500,0.249976,0,0);}
.m7_c00390{transform:matrix(0.231879,0.004638,-0.004999,0.249950,0,0);-ms-transform:matrix(0.231879,0.004638,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.231879,0.004638,-0.004999,0.249950,0,0);}
.me6_c00390{transform:matrix(0.231902,0.003247,-0.003500,0.249976,0,0);-ms-transform:matrix(0.231902,0.003247,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.231902,0.003247,-0.003500,0.249976,0,0);}
.m13c_c00390{transform:matrix(0.232214,0.006502,-0.006997,0.249902,0,0);-ms-transform:matrix(0.232214,0.006502,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.232214,0.006502,-0.006997,0.249902,0,0);}
.me4_c00390{transform:matrix(0.232507,0.003255,-0.003500,0.249976,0,0);-ms-transform:matrix(0.232507,0.003255,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.232507,0.003255,-0.003500,0.249976,0,0);}
.m99_c00390{transform:matrix(0.232637,0.003257,-0.003500,0.249976,0,0);-ms-transform:matrix(0.232637,0.003257,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.232637,0.003257,-0.003500,0.249976,0,0);}
.m77_c00390{transform:matrix(0.232917,0.003261,-0.003500,0.249976,0,0);-ms-transform:matrix(0.232917,0.003261,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.232917,0.003261,-0.003500,0.249976,0,0);}
.mf0_c00390{transform:matrix(0.233567,0.003270,-0.003500,0.249976,0,0);-ms-transform:matrix(0.233567,0.003270,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.233567,0.003270,-0.003500,0.249976,0,0);}
.m105_c00390{transform:matrix(0.233735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233735,0.000000,0.000000,0.250000,0,0);}
.mc5_c00390{transform:matrix(0.233817,0.003273,-0.003500,0.249976,0,0);-ms-transform:matrix(0.233817,0.003273,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.233817,0.003273,-0.003500,0.249976,0,0);}
.m44_c00390{transform:matrix(0.234212,0.003279,-0.003500,0.249976,0,0);-ms-transform:matrix(0.234212,0.003279,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.234212,0.003279,-0.003500,0.249976,0,0);}
.m75_c00390{transform:matrix(0.234282,0.003280,-0.003500,0.249976,0,0);-ms-transform:matrix(0.234282,0.003280,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.234282,0.003280,-0.003500,0.249976,0,0);}
.m4d_c00390{transform:matrix(0.234477,0.003283,-0.003500,0.249976,0,0);-ms-transform:matrix(0.234477,0.003283,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.234477,0.003283,-0.003500,0.249976,0,0);}
.m10e_c00390{transform:matrix(0.234650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234650,0.000000,0.000000,0.250000,0,0);}
.m9c_c00390{transform:matrix(0.234652,0.003285,-0.003500,0.249976,0,0);-ms-transform:matrix(0.234652,0.003285,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.234652,0.003285,-0.003500,0.249976,0,0);}
.maa_c00390{transform:matrix(0.234822,0.003288,-0.003500,0.249976,0,0);-ms-transform:matrix(0.234822,0.003288,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.234822,0.003288,-0.003500,0.249976,0,0);}
.mf_c00390{transform:matrix(0.234858,0.004697,-0.004999,0.249950,0,0);-ms-transform:matrix(0.234858,0.004697,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.234858,0.004697,-0.004999,0.249950,0,0);}
.m26_c00390{transform:matrix(0.235033,0.004701,-0.004999,0.249950,0,0);-ms-transform:matrix(0.235033,0.004701,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.235033,0.004701,-0.004999,0.249950,0,0);}
.mea_c00390{transform:matrix(0.235677,0.003299,-0.003500,0.249976,0,0);-ms-transform:matrix(0.235677,0.003299,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.235677,0.003299,-0.003500,0.249976,0,0);}
.m46_c00390{transform:matrix(0.235897,0.003303,-0.003500,0.249976,0,0);-ms-transform:matrix(0.235897,0.003303,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.235897,0.003303,-0.003500,0.249976,0,0);}
.m112_c00390{transform:matrix(0.236526,0.009707,-0.010252,0.249790,0,0);-ms-transform:matrix(0.236526,0.009707,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.236526,0.009707,-0.010252,0.249790,0,0);}
.mae_c00390{transform:matrix(0.237097,0.003319,-0.003500,0.249976,0,0);-ms-transform:matrix(0.237097,0.003319,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.237097,0.003319,-0.003500,0.249976,0,0);}
.me1_c00390{transform:matrix(0.237502,0.003325,-0.003500,0.249976,0,0);-ms-transform:matrix(0.237502,0.003325,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.237502,0.003325,-0.003500,0.249976,0,0);}
.m107_c00390{transform:matrix(0.237525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237525,0.000000,0.000000,0.250000,0,0);}
.m3d_c00390{transform:matrix(0.238127,0.003334,-0.003500,0.249976,0,0);-ms-transform:matrix(0.238127,0.003334,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.238127,0.003334,-0.003500,0.249976,0,0);}
.me_c00390{transform:matrix(0.238337,0.004767,-0.004999,0.249950,0,0);-ms-transform:matrix(0.238337,0.004767,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.238337,0.004767,-0.004999,0.249950,0,0);}
.m137_c00390{transform:matrix(0.238469,0.009787,-0.010252,0.249790,0,0);-ms-transform:matrix(0.238469,0.009787,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.238469,0.009787,-0.010252,0.249790,0,0);}
.m13d_c00390{transform:matrix(0.239126,0.006696,-0.006997,0.249902,0,0);-ms-transform:matrix(0.239126,0.006696,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.239126,0.006696,-0.006997,0.249902,0,0);}
.m69_c00390{transform:matrix(0.239232,0.003349,-0.003500,0.249976,0,0);-ms-transform:matrix(0.239232,0.003349,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.239232,0.003349,-0.003500,0.249976,0,0);}
.m74_c00390{transform:matrix(0.239362,0.003351,-0.003500,0.249976,0,0);-ms-transform:matrix(0.239362,0.003351,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.239362,0.003351,-0.003500,0.249976,0,0);}
.md8_c00390{transform:matrix(0.239627,0.003355,-0.003500,0.249976,0,0);-ms-transform:matrix(0.239627,0.003355,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.239627,0.003355,-0.003500,0.249976,0,0);}
.m120_c00390{transform:matrix(0.239633,0.009835,-0.010252,0.249790,0,0);-ms-transform:matrix(0.239633,0.009835,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.239633,0.009835,-0.010252,0.249790,0,0);}
.m131_c00390{transform:matrix(0.239698,0.006472,-0.006748,0.249909,0,0);-ms-transform:matrix(0.239698,0.006472,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.239698,0.006472,-0.006748,0.249909,0,0);}
.m80_c00390{transform:matrix(0.239886,0.003358,-0.003500,0.249976,0,0);-ms-transform:matrix(0.239886,0.003358,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.239886,0.003358,-0.003500,0.249976,0,0);}
.m118_c00390{transform:matrix(0.239918,0.009846,-0.010252,0.249790,0,0);-ms-transform:matrix(0.239918,0.009846,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.239918,0.009846,-0.010252,0.249790,0,0);}
.m60_c00390{transform:matrix(0.241581,0.003382,-0.003500,0.249976,0,0);-ms-transform:matrix(0.241581,0.003382,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.241581,0.003382,-0.003500,0.249976,0,0);}
.mdc_c00390{transform:matrix(0.241721,0.003384,-0.003500,0.249976,0,0);-ms-transform:matrix(0.241721,0.003384,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.241721,0.003384,-0.003500,0.249976,0,0);}
.m12b_c00390{transform:matrix(0.242050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242050,0.000000,0.000000,0.250000,0,0);}
.mcb_c00390{transform:matrix(0.242056,0.003389,-0.003500,0.249976,0,0);-ms-transform:matrix(0.242056,0.003389,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.242056,0.003389,-0.003500,0.249976,0,0);}
.mc8_c00390{transform:matrix(0.242346,0.003393,-0.003500,0.249976,0,0);-ms-transform:matrix(0.242346,0.003393,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.242346,0.003393,-0.003500,0.249976,0,0);}
.m10_c00390{transform:matrix(0.242806,0.004856,-0.004999,0.249950,0,0);-ms-transform:matrix(0.242806,0.004856,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.242806,0.004856,-0.004999,0.249950,0,0);}
.m130_c00390{transform:matrix(0.243481,0.006574,-0.006748,0.249909,0,0);-ms-transform:matrix(0.243481,0.006574,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.243481,0.006574,-0.006748,0.249909,0,0);}
.m21_c00390{transform:matrix(0.244656,0.004893,-0.004999,0.249950,0,0);-ms-transform:matrix(0.244656,0.004893,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.244656,0.004893,-0.004999,0.249950,0,0);}
.m32_c00390{transform:matrix(0.245091,0.004902,-0.004999,0.249950,0,0);-ms-transform:matrix(0.245091,0.004902,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.245091,0.004902,-0.004999,0.249950,0,0);}
.mbe_c00390{transform:matrix(0.245126,0.003432,-0.003500,0.249976,0,0);-ms-transform:matrix(0.245126,0.003432,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.245126,0.003432,-0.003500,0.249976,0,0);}
.mb2_c00390{transform:matrix(0.245666,0.003439,-0.003500,0.249976,0,0);-ms-transform:matrix(0.245666,0.003439,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.245666,0.003439,-0.003500,0.249976,0,0);}
.m12c_c00390{transform:matrix(0.245835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245835,0.000000,0.000000,0.250000,0,0);}
.m104_c00390{transform:matrix(0.246305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246305,0.000000,0.000000,0.250000,0,0);}
.m103_c00390{transform:matrix(0.246620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246620,0.000000,0.000000,0.250000,0,0);}
.mce_c00390{transform:matrix(0.246636,0.003453,-0.003500,0.249976,0,0);-ms-transform:matrix(0.246636,0.003453,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.246636,0.003453,-0.003500,0.249976,0,0);}
.m78_c00390{transform:matrix(0.246816,0.003455,-0.003500,0.249976,0,0);-ms-transform:matrix(0.246816,0.003455,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.246816,0.003455,-0.003500,0.249976,0,0);}
.m10b_c00390{transform:matrix(0.247325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247325,0.000000,0.000000,0.250000,0,0);}
.mc1_c00390{transform:matrix(0.248321,0.003476,-0.003500,0.249976,0,0);-ms-transform:matrix(0.248321,0.003476,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.248321,0.003476,-0.003500,0.249976,0,0);}
.m3a_c00390{transform:matrix(0.248411,0.003478,-0.003500,0.249976,0,0);-ms-transform:matrix(0.248411,0.003478,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.248411,0.003478,-0.003500,0.249976,0,0);}
.m9b_c00390{transform:matrix(0.248576,0.003480,-0.003500,0.249976,0,0);-ms-transform:matrix(0.248576,0.003480,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.248576,0.003480,-0.003500,0.249976,0,0);}
.m10c_c00390{transform:matrix(0.248910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248910,0.000000,0.000000,0.250000,0,0);}
.m7e_c00390{transform:matrix(0.249546,0.003494,-0.003500,0.249976,0,0);-ms-transform:matrix(0.249546,0.003494,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.249546,0.003494,-0.003500,0.249976,0,0);}
.m98_c00390{transform:matrix(0.249786,0.003497,-0.003500,0.249976,0,0);-ms-transform:matrix(0.249786,0.003497,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.249786,0.003497,-0.003500,0.249976,0,0);}
.m11e_c00390{transform:matrix(0.249980,0.010259,-0.010252,0.249790,0,0);-ms-transform:matrix(0.249980,0.010259,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.249980,0.010259,-0.010252,0.249790,0,0);}
.m24_c00390{transform:matrix(0.250790,0.005016,-0.004999,0.249950,0,0);-ms-transform:matrix(0.250790,0.005016,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.250790,0.005016,-0.004999,0.249950,0,0);}
.mbb_c00390{transform:matrix(0.251425,0.003520,-0.003500,0.249976,0,0);-ms-transform:matrix(0.251425,0.003520,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.251425,0.003520,-0.003500,0.249976,0,0);}
.m3e_c00390{transform:matrix(0.251430,0.003520,-0.003500,0.249976,0,0);-ms-transform:matrix(0.251430,0.003520,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.251430,0.003520,-0.003500,0.249976,0,0);}
.mb1_c00390{transform:matrix(0.251610,0.003523,-0.003500,0.249976,0,0);-ms-transform:matrix(0.251610,0.003523,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.251610,0.003523,-0.003500,0.249976,0,0);}
.ma6_c00390{transform:matrix(0.252080,0.003529,-0.003500,0.249976,0,0);-ms-transform:matrix(0.252080,0.003529,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.252080,0.003529,-0.003500,0.249976,0,0);}
.m86_c00390{transform:matrix(0.252375,0.003533,-0.003500,0.249976,0,0);-ms-transform:matrix(0.252375,0.003533,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.252375,0.003533,-0.003500,0.249976,0,0);}
.m11b_c00390{transform:matrix(0.252592,0.010367,-0.010252,0.249790,0,0);-ms-transform:matrix(0.252592,0.010367,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.252592,0.010367,-0.010252,0.249790,0,0);}
.m48_c00390{transform:matrix(0.252680,0.003538,-0.003500,0.249976,0,0);-ms-transform:matrix(0.252680,0.003538,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.252680,0.003538,-0.003500,0.249976,0,0);}
.m84_c00390{transform:matrix(0.252820,0.003539,-0.003500,0.249976,0,0);-ms-transform:matrix(0.252820,0.003539,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.252820,0.003539,-0.003500,0.249976,0,0);}
.mb9_c00390{transform:matrix(0.252925,0.003541,-0.003500,0.249976,0,0);-ms-transform:matrix(0.252925,0.003541,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.252925,0.003541,-0.003500,0.249976,0,0);}
.m4f_c00390{transform:matrix(0.252985,0.003542,-0.003500,0.249976,0,0);-ms-transform:matrix(0.252985,0.003542,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.252985,0.003542,-0.003500,0.249976,0,0);}
.m1b_c00390{transform:matrix(0.253299,0.005066,-0.004999,0.249950,0,0);-ms-transform:matrix(0.253299,0.005066,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.253299,0.005066,-0.004999,0.249950,0,0);}
.m6a_c00390{transform:matrix(0.253510,0.003549,-0.003500,0.249976,0,0);-ms-transform:matrix(0.253510,0.003549,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.253510,0.003549,-0.003500,0.249976,0,0);}
.m47_c00390{transform:matrix(0.253560,0.003550,-0.003500,0.249976,0,0);-ms-transform:matrix(0.253560,0.003550,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.253560,0.003550,-0.003500,0.249976,0,0);}
.m149_c00390{transform:matrix(0.253785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253785,0.000000,0.000000,0.250000,0,0);}
.m9f_c00390{transform:matrix(0.253995,0.003556,-0.003500,0.249976,0,0);-ms-transform:matrix(0.253995,0.003556,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.253995,0.003556,-0.003500,0.249976,0,0);}
.m14_c00390{transform:matrix(0.254064,0.005081,-0.004999,0.249950,0,0);-ms-transform:matrix(0.254064,0.005081,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.254064,0.005081,-0.004999,0.249950,0,0);}
.m10f_c00390{transform:matrix(0.254135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254135,0.000000,0.000000,0.250000,0,0);}
.m4c_c00390{transform:matrix(0.254160,0.003558,-0.003500,0.249976,0,0);-ms-transform:matrix(0.254160,0.003558,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.254160,0.003558,-0.003500,0.249976,0,0);}
.mb6_c00390{transform:matrix(0.254435,0.003562,-0.003500,0.249976,0,0);-ms-transform:matrix(0.254435,0.003562,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.254435,0.003562,-0.003500,0.249976,0,0);}
.mca_c00390{transform:matrix(0.254535,0.003563,-0.003500,0.249976,0,0);-ms-transform:matrix(0.254535,0.003563,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.254535,0.003563,-0.003500,0.249976,0,0);}
.m81_c00390{transform:matrix(0.255470,0.003577,-0.003500,0.249976,0,0);-ms-transform:matrix(0.255470,0.003577,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.255470,0.003577,-0.003500,0.249976,0,0);}
.m6b_c00390{transform:matrix(0.255665,0.003579,-0.003500,0.249976,0,0);-ms-transform:matrix(0.255665,0.003579,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.255665,0.003579,-0.003500,0.249976,0,0);}
.ma3_c00390{transform:matrix(0.255985,0.003584,-0.003500,0.249976,0,0);-ms-transform:matrix(0.255985,0.003584,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.255985,0.003584,-0.003500,0.249976,0,0);}
.m100_c00390{transform:matrix(0.256010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256010,0.000000,0.000000,0.250000,0,0);}
.md_c00390{transform:matrix(0.256489,0.005130,-0.004999,0.249950,0,0);-ms-transform:matrix(0.256489,0.005130,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.256489,0.005130,-0.004999,0.249950,0,0);}
.m129_c00390{transform:matrix(0.256785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256785,0.000000,0.000000,0.250000,0,0);}
.mab_c00390{transform:matrix(0.257175,0.003600,-0.003500,0.249976,0,0);-ms-transform:matrix(0.257175,0.003600,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.257175,0.003600,-0.003500,0.249976,0,0);}
.mb4_c00390{transform:matrix(0.257395,0.003604,-0.003500,0.249976,0,0);-ms-transform:matrix(0.257395,0.003604,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.257395,0.003604,-0.003500,0.249976,0,0);}
.m95_c00390{transform:matrix(0.257575,0.003606,-0.003500,0.249976,0,0);-ms-transform:matrix(0.257575,0.003606,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.257575,0.003606,-0.003500,0.249976,0,0);}
.m35_c00390{transform:matrix(0.258103,0.005162,-0.004999,0.249950,0,0);-ms-transform:matrix(0.258103,0.005162,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.258103,0.005162,-0.004999,0.249950,0,0);}
.m71_c00390{transform:matrix(0.259220,0.003629,-0.003500,0.249976,0,0);-ms-transform:matrix(0.259220,0.003629,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.259220,0.003629,-0.003500,0.249976,0,0);}
.ma2_c00390{transform:matrix(0.260934,0.003653,-0.003500,0.249976,0,0);-ms-transform:matrix(0.260934,0.003653,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.260934,0.003653,-0.003500,0.249976,0,0);}
.m85_c00390{transform:matrix(0.261409,0.003660,-0.003500,0.249976,0,0);-ms-transform:matrix(0.261409,0.003660,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.261409,0.003660,-0.003500,0.249976,0,0);}
.mdd_c00390{transform:matrix(0.261594,0.003662,-0.003500,0.249976,0,0);-ms-transform:matrix(0.261594,0.003662,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.261594,0.003662,-0.003500,0.249976,0,0);}
.m12_c00390{transform:matrix(0.262582,0.005252,-0.004999,0.249950,0,0);-ms-transform:matrix(0.262582,0.005252,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.262582,0.005252,-0.004999,0.249950,0,0);}
.mb5_c00390{transform:matrix(0.262914,0.003681,-0.003500,0.249976,0,0);-ms-transform:matrix(0.262914,0.003681,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.262914,0.003681,-0.003500,0.249976,0,0);}
.m6f_c00390{transform:matrix(0.262999,0.003682,-0.003500,0.249976,0,0);-ms-transform:matrix(0.262999,0.003682,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.262999,0.003682,-0.003500,0.249976,0,0);}
.me7_c00390{transform:matrix(0.263374,0.003687,-0.003500,0.249976,0,0);-ms-transform:matrix(0.263374,0.003687,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.263374,0.003687,-0.003500,0.249976,0,0);}
.ma8_c00390{transform:matrix(0.264299,0.003700,-0.003500,0.249976,0,0);-ms-transform:matrix(0.264299,0.003700,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.264299,0.003700,-0.003500,0.249976,0,0);}
.m13_c00390{transform:matrix(0.264742,0.005295,-0.004999,0.249950,0,0);-ms-transform:matrix(0.264742,0.005295,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.264742,0.005295,-0.004999,0.249950,0,0);}
.m111_c00390{transform:matrix(0.265452,0.010894,-0.010252,0.249790,0,0);-ms-transform:matrix(0.265452,0.010894,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.265452,0.010894,-0.010252,0.249790,0,0);}
.m39_c00390{transform:matrix(0.265489,0.003717,-0.003500,0.249976,0,0);-ms-transform:matrix(0.265489,0.003717,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.265489,0.003717,-0.003500,0.249976,0,0);}
.meb_c00390{transform:matrix(0.265574,0.003718,-0.003500,0.249976,0,0);-ms-transform:matrix(0.265574,0.003718,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.265574,0.003718,-0.003500,0.249976,0,0);}
.m4b_c00390{transform:matrix(0.265959,0.003723,-0.003500,0.249976,0,0);-ms-transform:matrix(0.265959,0.003723,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.265959,0.003723,-0.003500,0.249976,0,0);}
.m136_c00390{transform:matrix(0.266031,0.010918,-0.010252,0.249790,0,0);-ms-transform:matrix(0.266031,0.010918,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.266031,0.010918,-0.010252,0.249790,0,0);}
.m12f_c00390{transform:matrix(0.266058,0.007184,-0.006748,0.249909,0,0);-ms-transform:matrix(0.266058,0.007184,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.266058,0.007184,-0.006748,0.249909,0,0);}
.m97_c00390{transform:matrix(0.266219,0.003727,-0.003500,0.249976,0,0);-ms-transform:matrix(0.266219,0.003727,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.266219,0.003727,-0.003500,0.249976,0,0);}
.mbd_c00390{transform:matrix(0.267059,0.003739,-0.003500,0.249976,0,0);-ms-transform:matrix(0.267059,0.003739,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.267059,0.003739,-0.003500,0.249976,0,0);}
.m9a_c00390{transform:matrix(0.267309,0.003742,-0.003500,0.249976,0,0);-ms-transform:matrix(0.267309,0.003742,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.267309,0.003742,-0.003500,0.249976,0,0);}
.me5_c00390{transform:matrix(0.268704,0.003762,-0.003500,0.249976,0,0);-ms-transform:matrix(0.268704,0.003762,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.268704,0.003762,-0.003500,0.249976,0,0);}
.m76_c00390{transform:matrix(0.269504,0.003773,-0.003500,0.249976,0,0);-ms-transform:matrix(0.269504,0.003773,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.269504,0.003773,-0.003500,0.249976,0,0);}
.mde_c00390{transform:matrix(0.269714,0.003776,-0.003500,0.249976,0,0);-ms-transform:matrix(0.269714,0.003776,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.269714,0.003776,-0.003500,0.249976,0,0);}
.m109_c00390{transform:matrix(0.269740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269740,0.000000,0.000000,0.250000,0,0);}
.maf_c00390{transform:matrix(0.269884,0.003778,-0.003500,0.249976,0,0);-ms-transform:matrix(0.269884,0.003778,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.269884,0.003778,-0.003500,0.249976,0,0);}
.me9_c00390{transform:matrix(0.270019,0.003780,-0.003500,0.249976,0,0);-ms-transform:matrix(0.270019,0.003780,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.270019,0.003780,-0.003500,0.249976,0,0);}
.mad_c00390{transform:matrix(0.270324,0.003785,-0.003500,0.249976,0,0);-ms-transform:matrix(0.270324,0.003785,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.270324,0.003785,-0.003500,0.249976,0,0);}
.m9d_c00390{transform:matrix(0.270409,0.003786,-0.003500,0.249976,0,0);-ms-transform:matrix(0.270409,0.003786,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.270409,0.003786,-0.003500,0.249976,0,0);}
.m8_c00390{transform:matrix(0.270416,0.005408,-0.004999,0.249950,0,0);-ms-transform:matrix(0.270416,0.005408,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.270416,0.005408,-0.004999,0.249950,0,0);}
.m7a_c00390{transform:matrix(0.272033,0.003808,-0.003500,0.249976,0,0);-ms-transform:matrix(0.272033,0.003808,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.272033,0.003808,-0.003500,0.249976,0,0);}
.m134_c00390{transform:matrix(0.272156,0.007348,-0.006748,0.249909,0,0);-ms-transform:matrix(0.272156,0.007348,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.272156,0.007348,-0.006748,0.249909,0,0);}
.ma7_c00390{transform:matrix(0.272228,0.003811,-0.003500,0.249976,0,0);-ms-transform:matrix(0.272228,0.003811,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.272228,0.003811,-0.003500,0.249976,0,0);}
.m113_c00390{transform:matrix(0.272810,0.011196,-0.010252,0.249790,0,0);-ms-transform:matrix(0.272810,0.011196,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.272810,0.011196,-0.010252,0.249790,0,0);}
.mda_c00390{transform:matrix(0.272898,0.003821,-0.003500,0.249976,0,0);-ms-transform:matrix(0.272898,0.003821,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.272898,0.003821,-0.003500,0.249976,0,0);}
.m6d_c00390{transform:matrix(0.273558,0.003830,-0.003500,0.249976,0,0);-ms-transform:matrix(0.273558,0.003830,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.273558,0.003830,-0.003500,0.249976,0,0);}
.me8_c00390{transform:matrix(0.273848,0.003834,-0.003500,0.249976,0,0);-ms-transform:matrix(0.273848,0.003834,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.273848,0.003834,-0.003500,0.249976,0,0);}
.m42_c00390{transform:matrix(0.274828,0.003848,-0.003500,0.249976,0,0);-ms-transform:matrix(0.274828,0.003848,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.274828,0.003848,-0.003500,0.249976,0,0);}
.mbc_c00390{transform:matrix(0.274888,0.003848,-0.003500,0.249976,0,0);-ms-transform:matrix(0.274888,0.003848,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.274888,0.003848,-0.003500,0.249976,0,0);}
.m66_c00390{transform:matrix(0.275983,0.003864,-0.003500,0.249976,0,0);-ms-transform:matrix(0.275983,0.003864,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.275983,0.003864,-0.003500,0.249976,0,0);}
.md9_c00390{transform:matrix(0.276628,0.003873,-0.003500,0.249976,0,0);-ms-transform:matrix(0.276628,0.003873,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.276628,0.003873,-0.003500,0.249976,0,0);}
.m14c_c00390{transform:matrix(0.277115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277115,0.000000,0.000000,0.250000,0,0);}
.mbf_c00390{transform:matrix(0.277568,0.003886,-0.003500,0.249976,0,0);-ms-transform:matrix(0.277568,0.003886,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.277568,0.003886,-0.003500,0.249976,0,0);}
.m125_c00390{transform:matrix(0.278076,0.011413,-0.010252,0.249790,0,0);-ms-transform:matrix(0.278076,0.011413,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.278076,0.011413,-0.010252,0.249790,0,0);}
.m138_c00390{transform:matrix(0.278171,0.011416,-0.010252,0.249790,0,0);-ms-transform:matrix(0.278171,0.011416,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.278171,0.011416,-0.010252,0.249790,0,0);}
.m101_c00390{transform:matrix(0.278945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278945,0.000000,0.000000,0.250000,0,0);}
.mb7_c00390{transform:matrix(0.280008,0.003920,-0.003500,0.249976,0,0);-ms-transform:matrix(0.280008,0.003920,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.280008,0.003920,-0.003500,0.249976,0,0);}
.m108_c00390{transform:matrix(0.280790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280790,0.000000,0.000000,0.250000,0,0);}
.mb8_c00390{transform:matrix(0.283757,0.003973,-0.003500,0.249976,0,0);-ms-transform:matrix(0.283757,0.003973,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.283757,0.003973,-0.003500,0.249976,0,0);}
.m1a_c00390{transform:matrix(0.284713,0.005694,-0.004999,0.249950,0,0);-ms-transform:matrix(0.284713,0.005694,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.284713,0.005694,-0.004999,0.249950,0,0);}
.ma5_c00390{transform:matrix(0.285012,0.003990,-0.003500,0.249976,0,0);-ms-transform:matrix(0.285012,0.003990,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.285012,0.003990,-0.003500,0.249976,0,0);}
.m63_c00390{transform:matrix(0.285347,0.003995,-0.003500,0.249976,0,0);-ms-transform:matrix(0.285347,0.003995,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.285347,0.003995,-0.003500,0.249976,0,0);}
.m12d_c00390{transform:matrix(0.285400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285400,0.000000,0.000000,0.250000,0,0);}
.m64_c00390{transform:matrix(0.286207,0.004007,-0.003500,0.249976,0,0);-ms-transform:matrix(0.286207,0.004007,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.286207,0.004007,-0.003500,0.249976,0,0);}
.m50_c00390{transform:matrix(0.286407,0.004010,-0.003500,0.249976,0,0);-ms-transform:matrix(0.286407,0.004010,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.286407,0.004010,-0.003500,0.249976,0,0);}
.m102_c00390{transform:matrix(0.286745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286745,0.000000,0.000000,0.250000,0,0);}
.m67_c00390{transform:matrix(0.287192,0.004021,-0.003500,0.249976,0,0);-ms-transform:matrix(0.287192,0.004021,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.287192,0.004021,-0.003500,0.249976,0,0);}
.m132_c00390{transform:matrix(0.287285,0.007757,-0.006748,0.249909,0,0);-ms-transform:matrix(0.287285,0.007757,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.287285,0.007757,-0.006748,0.249909,0,0);}
.me2_c00390{transform:matrix(0.287502,0.004025,-0.003500,0.249976,0,0);-ms-transform:matrix(0.287502,0.004025,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.287502,0.004025,-0.003500,0.249976,0,0);}
.m116_c00390{transform:matrix(0.287898,0.011816,-0.010252,0.249790,0,0);-ms-transform:matrix(0.287898,0.011816,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.287898,0.011816,-0.010252,0.249790,0,0);}
.m127_c00390{transform:matrix(0.288325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288325,0.000000,0.000000,0.250000,0,0);}
.m2c_c00390{transform:matrix(0.289927,0.005799,-0.004999,0.249950,0,0);-ms-transform:matrix(0.289927,0.005799,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.289927,0.005799,-0.004999,0.249950,0,0);}
.m10a_c00390{transform:matrix(0.290215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290215,0.000000,0.000000,0.250000,0,0);}
.m51_c00390{transform:matrix(0.291501,0.004081,-0.003500,0.249976,0,0);-ms-transform:matrix(0.291501,0.004081,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.291501,0.004081,-0.003500,0.249976,0,0);}
.m4e_c00390{transform:matrix(0.292616,0.004097,-0.003500,0.249976,0,0);-ms-transform:matrix(0.292616,0.004097,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.292616,0.004097,-0.003500,0.249976,0,0);}
.m2b_c00390{transform:matrix(0.292871,0.005857,-0.004999,0.249950,0,0);-ms-transform:matrix(0.292871,0.005857,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.292871,0.005857,-0.004999,0.249950,0,0);}
.m62_c00390{transform:matrix(0.293071,0.004103,-0.003500,0.249976,0,0);-ms-transform:matrix(0.293071,0.004103,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.293071,0.004103,-0.003500,0.249976,0,0);}
.m12a_c00390{transform:matrix(0.293540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293540,0.000000,0.000000,0.250000,0,0);}
.m68_c00390{transform:matrix(0.293816,0.004113,-0.003500,0.249976,0,0);-ms-transform:matrix(0.293816,0.004113,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.293816,0.004113,-0.003500,0.249976,0,0);}
.ma9_c00390{transform:matrix(0.293941,0.004115,-0.003500,0.249976,0,0);-ms-transform:matrix(0.293941,0.004115,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.293941,0.004115,-0.003500,0.249976,0,0);}
.mdf_c00390{transform:matrix(0.294096,0.004117,-0.003500,0.249976,0,0);-ms-transform:matrix(0.294096,0.004117,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.294096,0.004117,-0.003500,0.249976,0,0);}
.m53_c00390{transform:matrix(0.294626,0.004125,-0.003500,0.249976,0,0);-ms-transform:matrix(0.294626,0.004125,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.294626,0.004125,-0.003500,0.249976,0,0);}
.me3_c00390{transform:matrix(0.294696,0.004126,-0.003500,0.249976,0,0);-ms-transform:matrix(0.294696,0.004126,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.294696,0.004126,-0.003500,0.249976,0,0);}
.m128_c00390{transform:matrix(0.294755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294755,0.000000,0.000000,0.250000,0,0);}
.m96_c00390{transform:matrix(0.295366,0.004135,-0.003500,0.249976,0,0);-ms-transform:matrix(0.295366,0.004135,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.295366,0.004135,-0.003500,0.249976,0,0);}
.m3c_c00390{transform:matrix(0.296841,0.004156,-0.003500,0.249976,0,0);-ms-transform:matrix(0.296841,0.004156,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.296841,0.004156,-0.003500,0.249976,0,0);}
.m135_c00390{transform:matrix(0.297177,0.008024,-0.006748,0.249909,0,0);-ms-transform:matrix(0.297177,0.008024,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.297177,0.008024,-0.006748,0.249909,0,0);}
.m19_c00390{transform:matrix(0.297705,0.005954,-0.004999,0.249950,0,0);-ms-transform:matrix(0.297705,0.005954,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.297705,0.005954,-0.004999,0.249950,0,0);}
.m2_c00390{transform:matrix(0.297740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297740,0.000000,0.000000,0.250000,0,0);}
.m17_c00390{transform:matrix(0.298275,0.005966,-0.004999,0.249950,0,0);-ms-transform:matrix(0.298275,0.005966,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.298275,0.005966,-0.004999,0.249950,0,0);}
.m106_c00390{transform:matrix(0.299460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299460,0.000000,0.000000,0.250000,0,0);}
.m3b_c00390{transform:matrix(0.299666,0.004195,-0.003500,0.249976,0,0);-ms-transform:matrix(0.299666,0.004195,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.299666,0.004195,-0.003500,0.249976,0,0);}
.m15_c00390{transform:matrix(0.300385,0.006008,-0.004999,0.249950,0,0);-ms-transform:matrix(0.300385,0.006008,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.300385,0.006008,-0.004999,0.249950,0,0);}
.m1c_c00390{transform:matrix(0.300905,0.006018,-0.004999,0.249950,0,0);-ms-transform:matrix(0.300905,0.006018,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.300905,0.006018,-0.004999,0.249950,0,0);}
.ma0_c00390{transform:matrix(0.300911,0.004213,-0.003500,0.249976,0,0);-ms-transform:matrix(0.300911,0.004213,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.300911,0.004213,-0.003500,0.249976,0,0);}
.m133_c00390{transform:matrix(0.301205,0.008133,-0.006748,0.249909,0,0);-ms-transform:matrix(0.301205,0.008133,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.301205,0.008133,-0.006748,0.249909,0,0);}
.m40_c00390{transform:matrix(0.301445,0.004220,-0.003500,0.249976,0,0);-ms-transform:matrix(0.301445,0.004220,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.301445,0.004220,-0.003500,0.249976,0,0);}
.m13a_c00390{transform:matrix(0.301481,0.012373,-0.010252,0.249790,0,0);-ms-transform:matrix(0.301481,0.012373,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.301481,0.012373,-0.010252,0.249790,0,0);}
.mba_c00390{transform:matrix(0.303015,0.004242,-0.003500,0.249976,0,0);-ms-transform:matrix(0.303015,0.004242,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.303015,0.004242,-0.003500,0.249976,0,0);}
.m139_c00390{transform:matrix(0.303495,0.012456,-0.010252,0.249790,0,0);-ms-transform:matrix(0.303495,0.012456,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.303495,0.012456,-0.010252,0.249790,0,0);}
.me0_c00390{transform:matrix(0.303870,0.004254,-0.003500,0.249976,0,0);-ms-transform:matrix(0.303870,0.004254,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.303870,0.004254,-0.003500,0.249976,0,0);}
.m65_c00390{transform:matrix(0.312594,0.004376,-0.003500,0.249976,0,0);-ms-transform:matrix(0.312594,0.004376,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.312594,0.004376,-0.003500,0.249976,0,0);}
.m52_c00390{transform:matrix(0.317589,0.004446,-0.003500,0.249976,0,0);-ms-transform:matrix(0.317589,0.004446,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.317589,0.004446,-0.003500,0.249976,0,0);}
.m126_c00390{transform:matrix(0.327130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327130,0.000000,0.000000,0.250000,0,0);}
.m16_c00390{transform:matrix(0.336808,0.006736,-0.004999,0.249950,0,0);-ms-transform:matrix(0.336808,0.006736,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.336808,0.006736,-0.004999,0.249950,0,0);}
.m4a_c00390{transform:matrix(0.346481,0.004851,-0.003500,0.249976,0,0);-ms-transform:matrix(0.346481,0.004851,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.346481,0.004851,-0.003500,0.249976,0,0);}
.m1_c00390{transform:matrix(0.358380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358380,0.000000,0.000000,0.250000,0,0);}
.m14a_c00390{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.m148_c00390{transform:matrix(0.390240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390240,0.000000,0.000000,0.250000,0,0);}
.m11_c00390{transform:matrix(0.443821,0.008876,-0.004999,0.249950,0,0);-ms-transform:matrix(0.443821,0.008876,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.443821,0.008876,-0.004999,0.249950,0,0);}
.mb_c00390{transform:matrix(0.475740,0.009515,-0.004999,0.249950,0,0);-ms-transform:matrix(0.475740,0.009515,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.475740,0.009515,-0.004999,0.249950,0,0);}
.m14b_c00390{transform:matrix(0.543325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543325,0.000000,0.000000,0.250000,0,0);}
.m12e_c00390{transform:matrix(0.560864,0.016265,-0.007247,0.249895,0,0);-ms-transform:matrix(0.560864,0.016265,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.560864,0.016265,-0.007247,0.249895,0,0);}
.m147_c00390{transform:matrix(0.745455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.745455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.745455,0.000000,0.000000,0.250000,0,0);}
.m146_c00390{transform:matrix(1.189005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.189005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.189005,0.000000,0.000000,0.250000,0,0);}
.m3_c00390{transform:matrix(1.496420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.496420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.496420,0.000000,0.000000,0.250000,0,0);}
.v0_c00390{vertical-align:0.000000px;}
.ls0_c00390{letter-spacing:0.000000px;}
.sc__c00390{text-shadow:none;}
.sc0_c00390{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__c00390{-webkit-text-stroke:0px transparent;}
.sc0_c00390{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00390{word-spacing:0.000000px;}
.fc0_c00390{color:transparent;}
.fs17_c00390{font-size:18.000000px;}
.fsf_c00390{font-size:23.996184px;}
.fs2_c00390{font-size:24.000000px;}
.fs3_c00390{font-size:24.004800px;}
.fs11_c00390{font-size:35.994276px;}
.fs18_c00390{font-size:42.000000px;}
.fs12_c00390{font-size:48.000000px;}
.fs15_c00390{font-size:59.990459px;}
.fsc_c00390{font-size:66.000000px;}
.fs6_c00390{font-size:66.006468px;}
.fs4_c00390{font-size:66.013199px;}
.fs14_c00390{font-size:66.024053px;}
.fse_c00390{font-size:71.988551px;}
.fsb_c00390{font-size:72.000000px;}
.fs9_c00390{font-size:72.007056px;}
.fs13_c00390{font-size:72.030270px;}
.fs10_c00390{font-size:77.987597px;}
.fsd_c00390{font-size:78.000000px;}
.fs7_c00390{font-size:78.007644px;}
.fs5_c00390{font-size:78.015598px;}
.fs16_c00390{font-size:78.030570px;}
.fsa_c00390{font-size:84.008232px;}
.fs8_c00390{font-size:90.008820px;}
.fs1_c00390{font-size:96.000000px;}
.fs0_c00390{font-size:138.000000px;}
.y0_c00390{bottom:0.000000px;}
.y14a_c00390{bottom:15.930000px;}
.y149_c00390{bottom:27.000000px;}
.y14b_c00390{bottom:31.050000px;}
.y146_c00390{bottom:101.907546px;}
.y145_c00390{bottom:103.512198px;}
.y144_c00390{bottom:105.351084px;}
.y143_c00390{bottom:106.273698px;}
.y142_c00390{bottom:106.871148px;}
.y141_c00390{bottom:108.142614px;}
.y140_c00390{bottom:109.057458px;}
.y13f_c00390{bottom:111.195468px;}
.y13e_c00390{bottom:113.323818px;}
.y13d_c00390{bottom:114.213000px;}
.y137_c00390{bottom:141.524661px;}
.y136_c00390{bottom:142.999064px;}
.y135_c00390{bottom:145.995740px;}
.y134_c00390{bottom:148.051357px;}
.y133_c00390{bottom:148.922310px;}
.y132_c00390{bottom:149.773337px;}
.y131_c00390{bottom:150.663000px;}
.y130_c00390{bottom:183.591000px;}
.y13c_c00390{bottom:183.984145px;}
.y13b_c00390{bottom:188.631885px;}
.y13a_c00390{bottom:189.933717px;}
.y139_c00390{bottom:190.892809px;}
.y138_c00390{bottom:192.261000px;}
.y12f_c00390{bottom:192.402000px;}
.y12d_c00390{bottom:221.529459px;}
.y12c_c00390{bottom:221.532646px;}
.y12b_c00390{bottom:222.305628px;}
.y12a_c00390{bottom:223.394693px;}
.y129_c00390{bottom:225.191419px;}
.y128_c00390{bottom:226.241650px;}
.y127_c00390{bottom:228.386727px;}
.y126_c00390{bottom:229.453272px;}
.y125_c00390{bottom:231.988215px;}
.y124_c00390{bottom:233.342880px;}
.y123_c00390{bottom:234.418543px;}
.y122_c00390{bottom:237.929864px;}
.y121_c00390{bottom:239.001737px;}
.y120_c00390{bottom:240.046478px;}
.y11f_c00390{bottom:242.497257px;}
.y11e_c00390{bottom:243.829464px;}
.y11d_c00390{bottom:249.908121px;}
.y11c_c00390{bottom:249.909256px;}
.y11b_c00390{bottom:249.910203px;}
.y11a_c00390{bottom:258.941774px;}
.y119_c00390{bottom:259.900435px;}
.y118_c00390{bottom:263.536500px;}
.y12e_c00390{bottom:264.870000px;}
.y117_c00390{bottom:270.736500px;}
.y116_c00390{bottom:293.442000px;}
.y115_c00390{bottom:294.783000px;}
.y114_c00390{bottom:296.139000px;}
.y113_c00390{bottom:296.904000px;}
.y112_c00390{bottom:299.586000px;}
.y111_c00390{bottom:300.358500px;}
.y110_c00390{bottom:300.891000px;}
.y10f_c00390{bottom:301.701000px;}
.y10e_c00390{bottom:304.078500px;}
.y10d_c00390{bottom:305.697000px;}
.y10c_c00390{bottom:306.727500px;}
.y10b_c00390{bottom:318.193500px;}
.y104_c00390{bottom:335.012397px;}
.y105_c00390{bottom:335.682870px;}
.y106_c00390{bottom:336.352725px;}
.y107_c00390{bottom:337.051218px;}
.y108_c00390{bottom:338.161014px;}
.y109_c00390{bottom:338.637885px;}
.y10a_c00390{bottom:340.233861px;}
.y103_c00390{bottom:369.547449px;}
.y102_c00390{bottom:370.149522px;}
.y101_c00390{bottom:371.136072px;}
.y100_c00390{bottom:372.161316px;}
.yff_c00390{bottom:373.563195px;}
.yfe_c00390{bottom:374.739270px;}
.yfd_c00390{bottom:375.340797px;}
.yfc_c00390{bottom:377.125254px;}
.yfb_c00390{bottom:378.730599px;}
.yfa_c00390{bottom:379.511163px;}
.yf9_c00390{bottom:380.090046px;}
.yf8_c00390{bottom:380.657151px;}
.yf7_c00390{bottom:381.453210px;}
.yf6_c00390{bottom:402.759870px;}
.yf5_c00390{bottom:403.948422px;}
.yf4_c00390{bottom:406.768740px;}
.yf3_c00390{bottom:409.912989px;}
.yf2_c00390{bottom:410.531382px;}
.yf1_c00390{bottom:413.301021px;}
.yf0_c00390{bottom:415.440051px;}
.yef_c00390{bottom:416.694111px;}
.yee_c00390{bottom:419.700186px;}
.yed_c00390{bottom:420.334017px;}
.y148_c00390{bottom:433.890000px;}
.yec_c00390{bottom:438.631017px;}
.yeb_c00390{bottom:440.119074px;}
.yea_c00390{bottom:440.761767px;}
.ye9_c00390{bottom:443.065386px;}
.ye8_c00390{bottom:444.964011px;}
.ye7_c00390{bottom:446.030100px;}
.ye6_c00390{bottom:447.050967px;}
.ye5_c00390{bottom:447.687666px;}
.ye4_c00390{bottom:448.113633px;}
.ye3_c00390{bottom:449.344728px;}
.ye2_c00390{bottom:450.585732px;}
.y147_c00390{bottom:451.440000px;}
.ye1_c00390{bottom:474.488745px;}
.ye0_c00390{bottom:475.736604px;}
.ydf_c00390{bottom:476.362827px;}
.yde_c00390{bottom:478.466547px;}
.ydd_c00390{bottom:479.103456px;}
.ydc_c00390{bottom:479.719119px;}
.ydb_c00390{bottom:480.369507px;}
.yda_c00390{bottom:482.243736px;}
.yd9_c00390{bottom:482.869308px;}
.yd8_c00390{bottom:484.726773px;}
.yd7_c00390{bottom:485.360187px;}
.yd6_c00390{bottom:485.964513px;}
.yd5_c00390{bottom:508.769976px;}
.yd4_c00390{bottom:509.389413px;}
.yd3_c00390{bottom:510.339159px;}
.yd2_c00390{bottom:511.881609px;}
.yd1_c00390{bottom:512.353962px;}
.yd0_c00390{bottom:512.942613px;}
.ycf_c00390{bottom:513.753549px;}
.yce_c00390{bottom:514.214709px;}
.ycd_c00390{bottom:515.004288px;}
.ycc_c00390{bottom:515.443566px;}
.ycb_c00390{bottom:515.919909px;}
.yca_c00390{bottom:516.372732px;}
.yc9_c00390{bottom:517.892418px;}
.yc8_c00390{bottom:518.363490px;}
.yc7_c00390{bottom:545.236314px;}
.yc6_c00390{bottom:545.557344px;}
.yc5_c00390{bottom:546.118731px;}
.yc4_c00390{bottom:546.683562px;}
.yc3_c00390{bottom:547.124391px;}
.yc2_c00390{bottom:548.228394px;}
.yc1_c00390{bottom:548.665065px;}
.yc0_c00390{bottom:549.000411px;}
.ybf_c00390{bottom:549.762375px;}
.ybe_c00390{bottom:550.431441px;}
.ybd_c00390{bottom:550.876158px;}
.ybc_c00390{bottom:551.399142px;}
.ybb_c00390{bottom:551.844300px;}
.yba_c00390{bottom:581.444685px;}
.yb9_c00390{bottom:581.876142px;}
.yb8_c00390{bottom:582.467358px;}
.yb7_c00390{bottom:583.323447px;}
.yb6_c00390{bottom:583.765437px;}
.yb5_c00390{bottom:584.343696px;}
.yb4_c00390{bottom:585.495666px;}
.yb3_c00390{bottom:586.068642px;}
.yb2_c00390{bottom:586.917612px;}
.yb1_c00390{bottom:588.223251px;}
.yb0_c00390{bottom:588.641340px;}
.yaf_c00390{bottom:589.626348px;}
.yae_c00390{bottom:589.916685px;}
.yad_c00390{bottom:617.510940px;}
.yac_c00390{bottom:618.654912px;}
.yab_c00390{bottom:619.829943px;}
.yaa_c00390{bottom:620.539653px;}
.ya9_c00390{bottom:622.381107px;}
.ya8_c00390{bottom:623.083953px;}
.ya7_c00390{bottom:624.042441px;}
.ya6_c00390{bottom:624.951039px;}
.ya5_c00390{bottom:627.530565px;}
.ya4_c00390{bottom:627.959400px;}
.ya3_c00390{bottom:630.691965px;}
.ya2_c00390{bottom:651.886722px;}
.ya1_c00390{bottom:652.257348px;}
.ya0_c00390{bottom:653.347860px;}
.y9f_c00390{bottom:653.852208px;}
.y9e_c00390{bottom:654.568629px;}
.y9d_c00390{bottom:655.555509px;}
.y9c_c00390{bottom:656.039817px;}
.y9b_c00390{bottom:656.761920px;}
.y9a_c00390{bottom:657.852096px;}
.y99_c00390{bottom:658.130181px;}
.y98_c00390{bottom:659.041641px;}
.y97_c00390{bottom:688.525851px;}
.y96_c00390{bottom:689.324988px;}
.y95_c00390{bottom:690.664272px;}
.y94_c00390{bottom:691.467786px;}
.y93_c00390{bottom:693.580692px;}
.y92_c00390{bottom:694.377342px;}
.y91_c00390{bottom:694.945953px;}
.y90_c00390{bottom:697.596813px;}
.y8f_c00390{bottom:698.375358px;}
.y8e_c00390{bottom:699.671190px;}
.y8d_c00390{bottom:700.246308px;}
.y8c_c00390{bottom:701.780769px;}
.y8b_c00390{bottom:702.558495px;}
.y8a_c00390{bottom:703.865757px;}
.y89_c00390{bottom:723.721932px;}
.y88_c00390{bottom:724.419498px;}
.y87_c00390{bottom:725.022564px;}
.y86_c00390{bottom:725.331288px;}
.y85_c00390{bottom:725.729376px;}
.y84_c00390{bottom:726.235137px;}
.y83_c00390{bottom:726.626889px;}
.y82_c00390{bottom:726.922986px;}
.y81_c00390{bottom:727.430733px;}
.y80_c00390{bottom:727.715976px;}
.y7f_c00390{bottom:728.019060px;}
.y7e_c00390{bottom:728.314779px;}
.y7d_c00390{bottom:729.383895px;}
.y7c_c00390{bottom:729.787224px;}
.y7b_c00390{bottom:760.072710px;}
.y7a_c00390{bottom:760.382235px;}
.y79_c00390{bottom:761.077254px;}
.y78_c00390{bottom:761.247807px;}
.y77_c00390{bottom:761.620572px;}
.y76_c00390{bottom:761.855376px;}
.y75_c00390{bottom:762.095457px;}
.y74_c00390{bottom:762.558372px;}
.y73_c00390{bottom:762.787878px;}
.y72_c00390{bottom:763.324776px;}
.y71_c00390{bottom:763.558887px;}
.y70_c00390{bottom:764.318451px;}
.y6f_c00390{bottom:764.620911px;}
.y6e_c00390{bottom:796.092969px;}
.y6d_c00390{bottom:796.333092px;}
.y6c_c00390{bottom:796.565217px;}
.y6b_c00390{bottom:797.183781px;}
.y6a_c00390{bottom:797.416179px;}
.y69_c00390{bottom:797.967981px;}
.y68_c00390{bottom:798.501609px;}
.y67_c00390{bottom:798.751077px;}
.y66_c00390{bottom:799.357659px;}
.y65_c00390{bottom:799.605318px;}
.y64_c00390{bottom:800.343567px;}
.y63_c00390{bottom:800.562837px;}
.y62_c00390{bottom:800.804946px;}
.y61_c00390{bottom:832.980702px;}
.y60_c00390{bottom:834.290415px;}
.y5f_c00390{bottom:835.291173px;}
.y5e_c00390{bottom:835.886979px;}
.y5d_c00390{bottom:836.459913px;}
.y5c_c00390{bottom:837.169998px;}
.y5b_c00390{bottom:838.335189px;}
.y5a_c00390{bottom:838.886796px;}
.y59_c00390{bottom:839.318652px;}
.y58_c00390{bottom:840.736839px;}
.y57_c00390{bottom:841.171236px;}
.y56_c00390{bottom:841.581072px;}
.y55_c00390{bottom:869.411703px;}
.y54_c00390{bottom:869.677080px;}
.y53_c00390{bottom:871.279995px;}
.y52_c00390{bottom:871.978980px;}
.y51_c00390{bottom:872.854422px;}
.y50_c00390{bottom:873.213402px;}
.y4f_c00390{bottom:874.006473px;}
.y4e_c00390{bottom:874.254669px;}
.y4d_c00390{bottom:905.045745px;}
.y4c_c00390{bottom:905.519106px;}
.y4b_c00390{bottom:906.905862px;}
.y4a_c00390{bottom:907.366917px;}
.y49_c00390{bottom:908.626602px;}
.y48_c00390{bottom:910.164432px;}
.y47_c00390{bottom:911.381781px;}
.y46_c00390{bottom:911.850291px;}
.y45_c00390{bottom:912.783762px;}
.y44_c00390{bottom:913.679013px;}
.y43_c00390{bottom:939.679506px;}
.y42_c00390{bottom:940.136949px;}
.y41_c00390{bottom:941.845656px;}
.y40_c00390{bottom:942.310701px;}
.y3f_c00390{bottom:942.783474px;}
.y3e_c00390{bottom:943.255302px;}
.y3d_c00390{bottom:944.635716px;}
.y3c_c00390{bottom:946.185621px;}
.y3b_c00390{bottom:946.797435px;}
.y3a_c00390{bottom:947.433000px;}
.y2e_c00390{bottom:976.903620px;}
.y2d_c00390{bottom:976.903800px;}
.y2f_c00390{bottom:976.904130px;}
.y38_c00390{bottom:976.904190px;}
.y37_c00390{bottom:976.904280px;}
.y39_c00390{bottom:976.904640px;}
.y36_c00390{bottom:976.904790px;}
.y30_c00390{bottom:976.904820px;}
.y35_c00390{bottom:976.904910px;}
.y31_c00390{bottom:976.904940px;}
.y32_c00390{bottom:976.905060px;}
.y33_c00390{bottom:976.905420px;}
.y34_c00390{bottom:976.905630px;}
.y2c_c00390{bottom:1010.343900px;}
.y2b_c00390{bottom:1010.625150px;}
.y2a_c00390{bottom:1010.880420px;}
.y29_c00390{bottom:1011.150510px;}
.y28_c00390{bottom:1011.414780px;}
.y27_c00390{bottom:1011.681960px;}
.y26_c00390{bottom:1012.220070px;}
.y25_c00390{bottom:1012.479540px;}
.y24_c00390{bottom:1013.192070px;}
.y23_c00390{bottom:1013.554380px;}
.y22_c00390{bottom:1013.809650px;}
.y21_c00390{bottom:1014.613830px;}
.y20_c00390{bottom:1014.873120px;}
.y1f_c00390{bottom:1015.127700px;}
.y1e_c00390{bottom:1015.384470px;}
.y1d_c00390{bottom:1015.733520px;}
.y1c_c00390{bottom:1046.874300px;}
.y1b_c00390{bottom:1047.744270px;}
.y1a_c00390{bottom:1049.071770px;}
.y19_c00390{bottom:1051.081800px;}
.y18_c00390{bottom:1051.730100px;}
.y17_c00390{bottom:1053.728340px;}
.y16_c00390{bottom:1054.190700px;}
.y15_c00390{bottom:1056.169200px;}
.y14_c00390{bottom:1057.054500px;}
.y2_c00390{bottom:1111.050000px;}
.y3_c00390{bottom:1122.120000px;}
.y13_c00390{bottom:1128.275130px;}
.y12_c00390{bottom:1128.454710px;}
.y11_c00390{bottom:1128.793770px;}
.y10_c00390{bottom:1129.107030px;}
.yf_c00390{bottom:1129.344690px;}
.ye_c00390{bottom:1129.582470px;}
.yd_c00390{bottom:1129.847010px;}
.yc_c00390{bottom:1129.998300px;}
.yb_c00390{bottom:1130.219670px;}
.ya_c00390{bottom:1130.576100px;}
.y9_c00390{bottom:1130.889450px;}
.y8_c00390{bottom:1131.127110px;}
.y7_c00390{bottom:1131.380970px;}
.y6_c00390{bottom:1131.780600px;}
.y5_c00390{bottom:1132.018260px;}
.y4_c00390{bottom:1132.380000px;}
.y1_c00390{bottom:1152.900000px;}
.h19_c00390{height:18.000000px;}
.h11_c00390{height:23.996184px;}
.h4_c00390{height:24.000000px;}
.h5_c00390{height:24.004800px;}
.h13_c00390{height:35.994276px;}
.h1a_c00390{height:42.000000px;}
.h14_c00390{height:48.000000px;}
.h17_c00390{height:59.990459px;}
.he_c00390{height:66.000000px;}
.h8_c00390{height:66.006468px;}
.h6_c00390{height:66.013199px;}
.h16_c00390{height:66.024053px;}
.h10_c00390{height:71.988551px;}
.hd_c00390{height:72.000000px;}
.hb_c00390{height:72.007056px;}
.h15_c00390{height:72.030270px;}
.h12_c00390{height:77.987597px;}
.hf_c00390{height:78.000000px;}
.h9_c00390{height:78.007644px;}
.h7_c00390{height:78.015598px;}
.h18_c00390{height:78.030570px;}
.hc_c00390{height:84.008232px;}
.ha_c00390{height:90.008820px;}
.h3_c00390{height:96.000000px;}
.h2_c00390{height:138.000000px;}
.h1_c00390{height:1251.000000px;}
.h0_c00390{height:1251.150000px;}
.w0_c00390{width:915.000000px;}
.x0_c00390{left:0.000000px;}
.x2_c00390{left:34.290000px;}
.x1_c00390{left:37.530000px;}
.x4_c00390{left:54.270000px;}
.x3_c00390{left:58.050000px;}
.x5_c00390{left:62.100000px;}
.xcf_c00390{left:129.087000px;}
.xcb_c00390{left:130.680000px;}
.x7c_c00390{left:132.732255px;}
.x61_c00390{left:134.901984px;}
.x48_c00390{left:137.085219px;}
.x1f_c00390{left:138.144660px;}
.x7d_c00390{left:155.078070px;}
.xd7_c00390{left:161.790000px;}
.xd0_c00390{left:163.003500px;}
.xad_c00390{left:164.452395px;}
.x8c_c00390{left:165.821097px;}
.x43_c00390{left:168.623766px;}
.x2a_c00390{left:170.351250px;}
.xbe_c00390{left:173.552088px;}
.xa6_c00390{left:176.242722px;}
.x85_c00390{left:177.776442px;}
.x56_c00390{left:179.663598px;}
.x20_c00390{left:181.857660px;}
.x69_c00390{left:189.655086px;}
.xd1_c00390{left:194.523000px;}
.xae_c00390{left:196.335519px;}
.x9b_c00390{left:197.702865px;}
.x94_c00390{left:198.730818px;}
.x3b_c00390{left:201.259437px;}
.x4e_c00390{left:202.378302px;}
.xa7_c00390{left:207.748458px;}
.x21_c00390{left:213.978870px;}
.x73_c00390{left:217.739715px;}
.x6a_c00390{left:222.059550px;}
.x2b_c00390{left:223.822140px;}
.xcc_c00390{left:227.610000px;}
.xaf_c00390{left:229.602315px;}
.x7e_c00390{left:230.901141px;}
.xd8_c00390{left:237.802500px;}
.xa8_c00390{left:239.881152px;}
.x74_c00390{left:243.068286px;}
.x33_c00390{left:244.986000px;}
.x16_c00390{left:246.315000px;}
.xbf_c00390{left:250.054766px;}
.x9f_c00390{left:261.873921px;}
.x7f_c00390{left:263.015082px;}
.x79_c00390{left:264.668103px;}
.x3c_c00390{left:267.935937px;}
.xb8_c00390{left:271.891500px;}
.x86_c00390{left:274.653381px;}
.x22_c00390{left:278.237790px;}
.x2c_c00390{left:279.453900px;}
.xb2_c00390{left:281.847000px;}
.xa9_c00390{left:283.204716px;}
.x9c_c00390{left:284.879754px;}
.x6b_c00390{left:286.012104px;}
.x57_c00390{left:288.250245px;}
.x17_c00390{left:290.580000px;}
.x95_c00390{left:296.471472px;}
.x62_c00390{left:298.480929px;}
.x3d_c00390{left:301.400937px;}
.xd2_c00390{left:302.914500px;}
.xb0_c00390{left:305.198838px;}
.x8d_c00390{left:306.714597px;}
.x4f_c00390{left:307.942155px;}
.x6c_c00390{left:309.945744px;}
.x49_c00390{left:311.117655px;}
.x2d_c00390{left:313.211400px;}
.xc0_c00390{left:316.074497px;}
.x9d_c00390{left:318.355902px;}
.x58_c00390{left:321.690021px;}
.xcd_c00390{left:326.970000px;}
.x96_c00390{left:329.367162px;}
.x63_c00390{left:331.391739px;}
.x34_c00390{left:334.084500px;}
.x8e_c00390{left:340.739097px;}
.x75_c00390{left:342.156444px;}
.x50_c00390{left:343.314120px;}
.x4a_c00390{left:344.322117px;}
.xd9_c00390{left:346.833000px;}
.xb3_c00390{left:349.257000px;}
.xbc_c00390{left:356.984256px;}
.x6d_c00390{left:363.926184px;}
.x64_c00390{left:365.150112px;}
.x8f_c00390{left:372.116097px;}
.x6_c00390{left:378.519000px;}
.xb1_c00390{left:381.202071px;}
.xa0_c00390{left:383.035170px;}
.xbd_c00390{left:385.059371px;}
.x4b_c00390{left:386.723205px;}
.x3e_c00390{left:388.354437px;}
.x18_c00390{left:389.505000px;}
.xda_c00390{left:392.242500px;}
.x7_c00390{left:396.606000px;}
.x59_c00390{left:398.404539px;}
.x2e_c00390{left:400.978500px;}
.xb9_c00390{left:404.191500px;}
.x8_c00390{left:408.489000px;}
.x23_c00390{left:410.592030px;}
.x19_c00390{left:412.623000px;}
.xd3_c00390{left:413.902500px;}
.x87_c00390{left:417.806403px;}
.x44_c00390{left:421.894518px;}
.xc1_c00390{left:425.659747px;}
.x9_c00390{left:428.470500px;}
.x51_c00390{left:429.935604px;}
.x5a_c00390{left:431.086731px;}
.xa_c00390{left:441.163500px;}
.x35_c00390{left:444.792000px;}
.xdb_c00390{left:446.530500px;}
.xb4_c00390{left:448.342500px;}
.x76_c00390{left:451.797543px;}
.xb_c00390{left:453.046500px;}
.x24_c00390{left:455.943420px;}
.xc2_c00390{left:459.220527px;}
.x90_c00390{left:461.454597px;}
.x52_c00390{left:465.651111px;}
.xc_c00390{left:468.714000px;}
.xce_c00390{left:469.800000px;}
.xaa_c00390{left:471.537174px;}
.x80_c00390{left:472.845522px;}
.x4c_c00390{left:476.380965px;}
.xa1_c00390{left:481.954287px;}
.xd_c00390{left:486.535500px;}
.x88_c00390{left:495.026229px;}
.xe_c00390{left:497.604000px;}
.x2f_c00390{left:499.818510px;}
.xc3_c00390{left:501.517824px;}
.xa2_c00390{left:504.049461px;}
.xf_c00390{left:505.168500px;}
.x6e_c00390{left:506.863692px;}
.x45_c00390{left:509.329368px;}
.x1a_c00390{left:512.535000px;}
.x10_c00390{left:518.395500px;}
.x97_c00390{left:528.116739px;}
.x11_c00390{left:530.284500px;}
.x5b_c00390{left:531.560580px;}
.xb5_c00390{left:536.409000px;}
.x12_c00390{left:542.167500px;}
.x36_c00390{left:543.393000px;}
.x1b_c00390{left:544.950000px;}
.x13_c00390{left:557.830500px;}
.x81_c00390{left:561.451761px;}
.x6f_c00390{left:563.767233px;}
.x5c_c00390{left:565.049856px;}
.xab_c00390{left:570.324651px;}
.x14_c00390{left:574.783500px;}
.x25_c00390{left:577.472580px;}
.xc4_c00390{left:580.619823px;}
.x15_c00390{left:583.762500px;}
.x65_c00390{left:585.815547px;}
.x3f_c00390{left:588.176937px;}
.x91_c00390{left:595.164597px;}
.x89_c00390{left:605.496924px;}
.x77_c00390{left:606.575532px;}
.x37_c00390{left:610.864500px;}
.xc5_c00390{left:613.885275px;}
.xa3_c00390{left:616.330953px;}
.x5d_c00390{left:618.252564px;}
.x40_c00390{left:621.109437px;}
.x30_c00390{left:622.423530px;}
.x66_c00390{left:630.110655px;}
.x98_c00390{left:638.838990px;}
.x82_c00390{left:640.006374px;}
.x5e_c00390{left:642.544437px;}
.x38_c00390{left:644.082000px;}
.x1c_c00390{left:645.451500px;}
.xba_c00390{left:647.050500px;}
.xac_c00390{left:648.168783px;}
.x8a_c00390{left:649.522881px;}
.x70_c00390{left:651.783906px;}
.x53_c00390{left:653.871549px;}
.x67_c00390{left:664.379049px;}
.xd4_c00390{left:669.907737px;}
.x99_c00390{left:671.781180px;}
.x26_c00390{left:678.211260px;}
.xb6_c00390{left:680.050500px;}
.x9e_c00390{left:683.179866px;}
.x71_c00390{left:685.280223px;}
.x4d_c00390{left:697.818552px;}
.x31_c00390{left:699.659400px;}
.xd5_c00390{left:701.627985px;}
.x83_c00390{left:705.870798px;}
.x7a_c00390{left:707.766696px;}
.x46_c00390{left:709.768710px;}
.x1d_c00390{left:711.826500px;}
.xc6_c00390{left:713.612762px;}
.xa4_c00390{left:717.048213px;}
.x41_c00390{left:720.163437px;}
.x68_c00390{left:731.352732px;}
.xc9_c00390{left:732.759767px;}
.x32_c00390{left:734.225730px;}
.xbb_c00390{left:735.646316px;}
.x9a_c00390{left:737.445081px;}
.x5f_c00390{left:741.912681px;}
.x47_c00390{left:742.977003px;}
.x27_c00390{left:744.920250px;}
.x78_c00390{left:751.571622px;}
.x42_c00390{left:753.974937px;}
.x1e_c00390{left:755.325000px;}
.xa5_c00390{left:759.507897px;}
.x7b_c00390{left:762.259362px;}
.x39_c00390{left:766.132500px;}
.xc7_c00390{left:769.680323px;}
.x92_c00390{left:773.178597px;}
.x72_c00390{left:774.369249px;}
.x54_c00390{left:775.396956px;}
.x28_c00390{left:776.816400px;}
.x84_c00390{left:784.491390px;}
.x60_c00390{left:786.204528px;}
.xb7_c00390{left:792.429000px;}
.x8b_c00390{left:794.262987px;}
.x3a_c00390{left:798.807000px;}
.xc8_c00390{left:803.677350px;}
.x55_c00390{left:809.694816px;}
.x29_c00390{left:811.887300px;}
.xd6_c00390{left:814.874125px;}
.x93_c00390{left:817.424097px;}
.xca_c00390{left:825.624990px;}
.xdc_c00390{left:888.570000px;}
.xdf_c00390{left:893.970000px;}
.xe1_c00390{left:899.370000px;}
.xe0_c00390{left:903.960000px;}
.xde_c00390{left:910.440000px;}
.xdd_c00390{left:911.520000px;}
@media print{
.v0_c00390{vertical-align:0.000000pt;}
.ls0_c00390{letter-spacing:0.000000pt;}
.ws0_c00390{word-spacing:0.000000pt;}
.fs17_c00390{font-size:16.000000pt;}
.fsf_c00390{font-size:21.329941pt;}
.fs2_c00390{font-size:21.333333pt;}
.fs3_c00390{font-size:21.337600pt;}
.fs11_c00390{font-size:31.994912pt;}
.fs18_c00390{font-size:37.333333pt;}
.fs12_c00390{font-size:42.666667pt;}
.fs15_c00390{font-size:53.324853pt;}
.fsc_c00390{font-size:58.666667pt;}
.fs6_c00390{font-size:58.672416pt;}
.fs4_c00390{font-size:58.678399pt;}
.fs14_c00390{font-size:58.688047pt;}
.fse_c00390{font-size:63.989823pt;}
.fsb_c00390{font-size:64.000000pt;}
.fs9_c00390{font-size:64.006272pt;}
.fs13_c00390{font-size:64.026906pt;}
.fs10_c00390{font-size:69.322308pt;}
.fsd_c00390{font-size:69.333333pt;}
.fs7_c00390{font-size:69.340128pt;}
.fs5_c00390{font-size:69.347199pt;}
.fs16_c00390{font-size:69.360507pt;}
.fsa_c00390{font-size:74.673984pt;}
.fs8_c00390{font-size:80.007840pt;}
.fs1_c00390{font-size:85.333333pt;}
.fs0_c00390{font-size:122.666667pt;}
.y0_c00390{bottom:0.000000pt;}
.y14a_c00390{bottom:14.160000pt;}
.y149_c00390{bottom:24.000000pt;}
.y14b_c00390{bottom:27.600000pt;}
.y146_c00390{bottom:90.584485pt;}
.y145_c00390{bottom:92.010843pt;}
.y144_c00390{bottom:93.645408pt;}
.y143_c00390{bottom:94.465509pt;}
.y142_c00390{bottom:94.996576pt;}
.y141_c00390{bottom:96.126768pt;}
.y140_c00390{bottom:96.939963pt;}
.y13f_c00390{bottom:98.840416pt;}
.y13e_c00390{bottom:100.732283pt;}
.y13d_c00390{bottom:101.522667pt;}
.y137_c00390{bottom:125.799699pt;}
.y136_c00390{bottom:127.110279pt;}
.y135_c00390{bottom:129.773991pt;}
.y134_c00390{bottom:131.601207pt;}
.y133_c00390{bottom:132.375387pt;}
.y132_c00390{bottom:133.131855pt;}
.y131_c00390{bottom:133.922667pt;}
.y130_c00390{bottom:163.192000pt;}
.y13c_c00390{bottom:163.541463pt;}
.y13b_c00390{bottom:167.672787pt;}
.y13a_c00390{bottom:168.829971pt;}
.y139_c00390{bottom:169.682497pt;}
.y138_c00390{bottom:170.898667pt;}
.y12f_c00390{bottom:171.024000pt;}
.y12d_c00390{bottom:196.915075pt;}
.y12c_c00390{bottom:196.917908pt;}
.y12b_c00390{bottom:197.605003pt;}
.y12a_c00390{bottom:198.573060pt;}
.y129_c00390{bottom:200.170151pt;}
.y128_c00390{bottom:201.103689pt;}
.y127_c00390{bottom:203.010424pt;}
.y126_c00390{bottom:203.958464pt;}
.y125_c00390{bottom:206.211747pt;}
.y124_c00390{bottom:207.415893pt;}
.y123_c00390{bottom:208.372039pt;}
.y122_c00390{bottom:211.493212pt;}
.y121_c00390{bottom:212.445988pt;}
.y120_c00390{bottom:213.374647pt;}
.y11f_c00390{bottom:215.553117pt;}
.y11e_c00390{bottom:216.737301pt;}
.y11d_c00390{bottom:222.140552pt;}
.y11c_c00390{bottom:222.141561pt;}
.y11b_c00390{bottom:222.142403pt;}
.y11a_c00390{bottom:230.170465pt;}
.y119_c00390{bottom:231.022609pt;}
.y118_c00390{bottom:234.254667pt;}
.y12e_c00390{bottom:235.440000pt;}
.y117_c00390{bottom:240.654667pt;}
.y116_c00390{bottom:260.837333pt;}
.y115_c00390{bottom:262.029333pt;}
.y114_c00390{bottom:263.234667pt;}
.y113_c00390{bottom:263.914667pt;}
.y112_c00390{bottom:266.298667pt;}
.y111_c00390{bottom:266.985333pt;}
.y110_c00390{bottom:267.458667pt;}
.y10f_c00390{bottom:268.178667pt;}
.y10e_c00390{bottom:270.292000pt;}
.y10d_c00390{bottom:271.730667pt;}
.y10c_c00390{bottom:272.646667pt;}
.y10b_c00390{bottom:282.838667pt;}
.y104_c00390{bottom:297.788797pt;}
.y105_c00390{bottom:298.384773pt;}
.y106_c00390{bottom:298.980200pt;}
.y107_c00390{bottom:299.601083pt;}
.y108_c00390{bottom:300.587568pt;}
.y109_c00390{bottom:301.011453pt;}
.y10a_c00390{bottom:302.430099pt;}
.y103_c00390{bottom:328.486621pt;}
.y102_c00390{bottom:329.021797pt;}
.y101_c00390{bottom:329.898731pt;}
.y100_c00390{bottom:330.810059pt;}
.yff_c00390{bottom:332.056173pt;}
.yfe_c00390{bottom:333.101573pt;}
.yfd_c00390{bottom:333.636264pt;}
.yfc_c00390{bottom:335.222448pt;}
.yfb_c00390{bottom:336.649421pt;}
.yfa_c00390{bottom:337.343256pt;}
.yf9_c00390{bottom:337.857819pt;}
.yf8_c00390{bottom:338.361912pt;}
.yf7_c00390{bottom:339.069520pt;}
.yf6_c00390{bottom:358.008773pt;}
.yf5_c00390{bottom:359.065264pt;}
.yf4_c00390{bottom:361.572213pt;}
.yf3_c00390{bottom:364.367101pt;}
.yf2_c00390{bottom:364.916784pt;}
.yf1_c00390{bottom:367.378685pt;}
.yf0_c00390{bottom:369.280045pt;}
.yef_c00390{bottom:370.394765pt;}
.yee_c00390{bottom:373.066832pt;}
.yed_c00390{bottom:373.630237pt;}
.y148_c00390{bottom:385.680000pt;}
.yec_c00390{bottom:389.894237pt;}
.yeb_c00390{bottom:391.216955pt;}
.yea_c00390{bottom:391.788237pt;}
.ye9_c00390{bottom:393.835899pt;}
.ye8_c00390{bottom:395.523565pt;}
.ye7_c00390{bottom:396.471200pt;}
.ye6_c00390{bottom:397.378637pt;}
.ye5_c00390{bottom:397.944592pt;}
.ye4_c00390{bottom:398.323229pt;}
.ye3_c00390{bottom:399.417536pt;}
.ye2_c00390{bottom:400.520651pt;}
.y147_c00390{bottom:401.280000pt;}
.ye1_c00390{bottom:421.767773pt;}
.ye0_c00390{bottom:422.876981pt;}
.ydf_c00390{bottom:423.433624pt;}
.yde_c00390{bottom:425.303597pt;}
.ydd_c00390{bottom:425.869739pt;}
.ydc_c00390{bottom:426.416995pt;}
.ydb_c00390{bottom:426.995117pt;}
.yda_c00390{bottom:428.661099pt;}
.yd9_c00390{bottom:429.217163pt;}
.yd8_c00390{bottom:430.868243pt;}
.yd7_c00390{bottom:431.431277pt;}
.yd6_c00390{bottom:431.968456pt;}
.yd5_c00390{bottom:452.239979pt;}
.yd4_c00390{bottom:452.790589pt;}
.yd3_c00390{bottom:453.634808pt;}
.yd2_c00390{bottom:455.005875pt;}
.yd1_c00390{bottom:455.425744pt;}
.yd0_c00390{bottom:455.948989pt;}
.ycf_c00390{bottom:456.669821pt;}
.yce_c00390{bottom:457.079741pt;}
.ycd_c00390{bottom:457.781589pt;}
.ycc_c00390{bottom:458.172059pt;}
.ycb_c00390{bottom:458.595475pt;}
.yca_c00390{bottom:458.997984pt;}
.yc9_c00390{bottom:460.348816pt;}
.yc8_c00390{bottom:460.767547pt;}
.yc7_c00390{bottom:484.654501pt;}
.yc6_c00390{bottom:484.939861pt;}
.yc5_c00390{bottom:485.438872pt;}
.yc4_c00390{bottom:485.940944pt;}
.yc3_c00390{bottom:486.332792pt;}
.yc2_c00390{bottom:487.314128pt;}
.yc1_c00390{bottom:487.702280pt;}
.yc0_c00390{bottom:488.000365pt;}
.ybf_c00390{bottom:488.677667pt;}
.ybe_c00390{bottom:489.272392pt;}
.ybd_c00390{bottom:489.667696pt;}
.ybc_c00390{bottom:490.132571pt;}
.ybb_c00390{bottom:490.528267pt;}
.yba_c00390{bottom:516.839720pt;}
.yb9_c00390{bottom:517.223237pt;}
.yb8_c00390{bottom:517.748763pt;}
.yb7_c00390{bottom:518.509731pt;}
.yb6_c00390{bottom:518.902611pt;}
.yb5_c00390{bottom:519.416619pt;}
.yb4_c00390{bottom:520.440592pt;}
.yb3_c00390{bottom:520.949904pt;}
.yb2_c00390{bottom:521.704544pt;}
.yb1_c00390{bottom:522.865112pt;}
.yb0_c00390{bottom:523.236747pt;}
.yaf_c00390{bottom:524.112309pt;}
.yae_c00390{bottom:524.370387pt;}
.yad_c00390{bottom:548.898613pt;}
.yac_c00390{bottom:549.915477pt;}
.yab_c00390{bottom:550.959949pt;}
.yaa_c00390{bottom:551.590803pt;}
.ya9_c00390{bottom:553.227651pt;}
.ya8_c00390{bottom:553.852403pt;}
.ya7_c00390{bottom:554.704392pt;}
.ya6_c00390{bottom:555.512035pt;}
.ya5_c00390{bottom:557.804947pt;}
.ya4_c00390{bottom:558.186133pt;}
.ya3_c00390{bottom:560.615080pt;}
.ya2_c00390{bottom:579.454864pt;}
.ya1_c00390{bottom:579.784309pt;}
.ya0_c00390{bottom:580.753653pt;}
.y9f_c00390{bottom:581.201963pt;}
.y9e_c00390{bottom:581.838781pt;}
.y9d_c00390{bottom:582.716008pt;}
.y9c_c00390{bottom:583.146504pt;}
.y9b_c00390{bottom:583.788373pt;}
.y9a_c00390{bottom:584.757419pt;}
.y99_c00390{bottom:585.004605pt;}
.y98_c00390{bottom:585.814792pt;}
.y97_c00390{bottom:612.022979pt;}
.y96_c00390{bottom:612.733323pt;}
.y95_c00390{bottom:613.923797pt;}
.y94_c00390{bottom:614.638032pt;}
.y93_c00390{bottom:616.516171pt;}
.y92_c00390{bottom:617.224304pt;}
.y91_c00390{bottom:617.729736pt;}
.y90_c00390{bottom:620.086056pt;}
.y8f_c00390{bottom:620.778096pt;}
.y8e_c00390{bottom:621.929947pt;}
.y8d_c00390{bottom:622.441163pt;}
.y8c_c00390{bottom:623.805128pt;}
.y8b_c00390{bottom:624.496440pt;}
.y8a_c00390{bottom:625.658451pt;}
.y89_c00390{bottom:643.308384pt;}
.y88_c00390{bottom:643.928443pt;}
.y87_c00390{bottom:644.464501pt;}
.y86_c00390{bottom:644.738923pt;}
.y85_c00390{bottom:645.092779pt;}
.y84_c00390{bottom:645.542344pt;}
.y83_c00390{bottom:645.890568pt;}
.y82_c00390{bottom:646.153765pt;}
.y81_c00390{bottom:646.605096pt;}
.y80_c00390{bottom:646.858645pt;}
.y7f_c00390{bottom:647.128053pt;}
.y7e_c00390{bottom:647.390915pt;}
.y7d_c00390{bottom:648.341240pt;}
.y7c_c00390{bottom:648.699755pt;}
.y7b_c00390{bottom:675.620187pt;}
.y7a_c00390{bottom:675.895320pt;}
.y79_c00390{bottom:676.513115pt;}
.y78_c00390{bottom:676.664717pt;}
.y77_c00390{bottom:676.996064pt;}
.y76_c00390{bottom:677.204779pt;}
.y75_c00390{bottom:677.418184pt;}
.y74_c00390{bottom:677.829664pt;}
.y73_c00390{bottom:678.033669pt;}
.y72_c00390{bottom:678.510912pt;}
.y71_c00390{bottom:678.719011pt;}
.y70_c00390{bottom:679.394179pt;}
.y6f_c00390{bottom:679.663032pt;}
.y6e_c00390{bottom:707.638195pt;}
.y6d_c00390{bottom:707.851637pt;}
.y6c_c00390{bottom:708.057971pt;}
.y6b_c00390{bottom:708.607805pt;}
.y6a_c00390{bottom:708.814381pt;}
.y69_c00390{bottom:709.304872pt;}
.y68_c00390{bottom:709.779208pt;}
.y67_c00390{bottom:710.000957pt;}
.y66_c00390{bottom:710.540141pt;}
.y65_c00390{bottom:710.760283pt;}
.y64_c00390{bottom:711.416504pt;}
.y63_c00390{bottom:711.611411pt;}
.y62_c00390{bottom:711.826619pt;}
.y61_c00390{bottom:740.427291pt;}
.y60_c00390{bottom:741.591480pt;}
.y5f_c00390{bottom:742.481043pt;}
.y5e_c00390{bottom:743.010648pt;}
.y5d_c00390{bottom:743.519923pt;}
.y5c_c00390{bottom:744.151109pt;}
.y5b_c00390{bottom:745.186835pt;}
.y5a_c00390{bottom:745.677152pt;}
.y59_c00390{bottom:746.061024pt;}
.y58_c00390{bottom:747.321635pt;}
.y57_c00390{bottom:747.707765pt;}
.y56_c00390{bottom:748.072064pt;}
.y55_c00390{bottom:772.810403pt;}
.y54_c00390{bottom:773.046293pt;}
.y53_c00390{bottom:774.471107pt;}
.y52_c00390{bottom:775.092427pt;}
.y51_c00390{bottom:775.870597pt;}
.y50_c00390{bottom:776.189691pt;}
.y4f_c00390{bottom:776.894643pt;}
.y4e_c00390{bottom:777.115261pt;}
.y4d_c00390{bottom:804.485107pt;}
.y4c_c00390{bottom:804.905872pt;}
.y4b_c00390{bottom:806.138544pt;}
.y4a_c00390{bottom:806.548371pt;}
.y49_c00390{bottom:807.668091pt;}
.y48_c00390{bottom:809.035051pt;}
.y47_c00390{bottom:810.117139pt;}
.y46_c00390{bottom:810.533592pt;}
.y45_c00390{bottom:811.363344pt;}
.y44_c00390{bottom:812.159123pt;}
.y43_c00390{bottom:835.270672pt;}
.y42_c00390{bottom:835.677288pt;}
.y41_c00390{bottom:837.196139pt;}
.y40_c00390{bottom:837.609512pt;}
.y3f_c00390{bottom:838.029755pt;}
.y3e_c00390{bottom:838.449157pt;}
.y3d_c00390{bottom:839.676192pt;}
.y3c_c00390{bottom:841.053885pt;}
.y3b_c00390{bottom:841.597720pt;}
.y3a_c00390{bottom:842.162667pt;}
.y2e_c00390{bottom:868.358773pt;}
.y2d_c00390{bottom:868.358933pt;}
.y2f_c00390{bottom:868.359227pt;}
.y38_c00390{bottom:868.359280pt;}
.y37_c00390{bottom:868.359360pt;}
.y39_c00390{bottom:868.359680pt;}
.y36_c00390{bottom:868.359813pt;}
.y30_c00390{bottom:868.359840pt;}
.y35_c00390{bottom:868.359920pt;}
.y31_c00390{bottom:868.359947pt;}
.y32_c00390{bottom:868.360053pt;}
.y33_c00390{bottom:868.360373pt;}
.y34_c00390{bottom:868.360560pt;}
.y2c_c00390{bottom:898.083467pt;}
.y2b_c00390{bottom:898.333467pt;}
.y2a_c00390{bottom:898.560373pt;}
.y29_c00390{bottom:898.800453pt;}
.y28_c00390{bottom:899.035360pt;}
.y27_c00390{bottom:899.272853pt;}
.y26_c00390{bottom:899.751173pt;}
.y25_c00390{bottom:899.981813pt;}
.y24_c00390{bottom:900.615173pt;}
.y23_c00390{bottom:900.937227pt;}
.y22_c00390{bottom:901.164133pt;}
.y21_c00390{bottom:901.878960pt;}
.y20_c00390{bottom:902.109440pt;}
.y1f_c00390{bottom:902.335733pt;}
.y1e_c00390{bottom:902.563973pt;}
.y1d_c00390{bottom:902.874240pt;}
.y1c_c00390{bottom:930.554933pt;}
.y1b_c00390{bottom:931.328240pt;}
.y1a_c00390{bottom:932.508240pt;}
.y19_c00390{bottom:934.294933pt;}
.y18_c00390{bottom:934.871200pt;}
.y17_c00390{bottom:936.647413pt;}
.y16_c00390{bottom:937.058400pt;}
.y15_c00390{bottom:938.817067pt;}
.y14_c00390{bottom:939.604000pt;}
.y2_c00390{bottom:987.600000pt;}
.y3_c00390{bottom:997.440000pt;}
.y13_c00390{bottom:1002.911227pt;}
.y12_c00390{bottom:1003.070853pt;}
.y11_c00390{bottom:1003.372240pt;}
.y10_c00390{bottom:1003.650693pt;}
.yf_c00390{bottom:1003.861947pt;}
.ye_c00390{bottom:1004.073307pt;}
.yd_c00390{bottom:1004.308453pt;}
.yc_c00390{bottom:1004.442933pt;}
.yb_c00390{bottom:1004.639707pt;}
.ya_c00390{bottom:1004.956533pt;}
.y9_c00390{bottom:1005.235067pt;}
.y8_c00390{bottom:1005.446320pt;}
.y7_c00390{bottom:1005.671973pt;}
.y6_c00390{bottom:1006.027200pt;}
.y5_c00390{bottom:1006.238453pt;}
.y4_c00390{bottom:1006.560000pt;}
.y1_c00390{bottom:1024.800000pt;}
.h19_c00390{height:16.000000pt;}
.h11_c00390{height:21.329941pt;}
.h4_c00390{height:21.333333pt;}
.h5_c00390{height:21.337600pt;}
.h13_c00390{height:31.994912pt;}
.h1a_c00390{height:37.333333pt;}
.h14_c00390{height:42.666667pt;}
.h17_c00390{height:53.324853pt;}
.he_c00390{height:58.666667pt;}
.h8_c00390{height:58.672416pt;}
.h6_c00390{height:58.678399pt;}
.h16_c00390{height:58.688047pt;}
.h10_c00390{height:63.989823pt;}
.hd_c00390{height:64.000000pt;}
.hb_c00390{height:64.006272pt;}
.h15_c00390{height:64.026906pt;}
.h12_c00390{height:69.322308pt;}
.hf_c00390{height:69.333333pt;}
.h9_c00390{height:69.340128pt;}
.h7_c00390{height:69.347199pt;}
.h18_c00390{height:69.360507pt;}
.hc_c00390{height:74.673984pt;}
.ha_c00390{height:80.007840pt;}
.h3_c00390{height:85.333333pt;}
.h2_c00390{height:122.666667pt;}
.h1_c00390{height:1112.000000pt;}
.h0_c00390{height:1112.133333pt;}
.w0_c00390{width:813.333333pt;}
.x0_c00390{left:0.000000pt;}
.x2_c00390{left:30.480000pt;}
.x1_c00390{left:33.360000pt;}
.x4_c00390{left:48.240000pt;}
.x3_c00390{left:51.600000pt;}
.x5_c00390{left:55.200000pt;}
.xcf_c00390{left:114.744000pt;}
.xcb_c00390{left:116.160000pt;}
.x7c_c00390{left:117.984227pt;}
.x61_c00390{left:119.912875pt;}
.x48_c00390{left:121.853528pt;}
.x1f_c00390{left:122.795253pt;}
.x7d_c00390{left:137.847173pt;}
.xd7_c00390{left:143.813333pt;}
.xd0_c00390{left:144.892000pt;}
.xad_c00390{left:146.179907pt;}
.x8c_c00390{left:147.396531pt;}
.x43_c00390{left:149.887792pt;}
.x2a_c00390{left:151.423333pt;}
.xbe_c00390{left:154.268523pt;}
.xa6_c00390{left:156.660197pt;}
.x85_c00390{left:158.023504pt;}
.x56_c00390{left:159.700976pt;}
.x20_c00390{left:161.651253pt;}
.x69_c00390{left:168.582299pt;}
.xd1_c00390{left:172.909333pt;}
.xae_c00390{left:174.520461pt;}
.x9b_c00390{left:175.735880pt;}
.x94_c00390{left:176.649616pt;}
.x3b_c00390{left:178.897277pt;}
.x4e_c00390{left:179.891824pt;}
.xa7_c00390{left:184.665296pt;}
.x21_c00390{left:190.203440pt;}
.x73_c00390{left:193.546413pt;}
.x6a_c00390{left:197.386267pt;}
.x2b_c00390{left:198.953013pt;}
.xcc_c00390{left:202.320000pt;}
.xaf_c00390{left:204.090947pt;}
.x7e_c00390{left:205.245459pt;}
.xd8_c00390{left:211.380000pt;}
.xa8_c00390{left:213.227691pt;}
.x74_c00390{left:216.060699pt;}
.x33_c00390{left:217.765333pt;}
.x16_c00390{left:218.946667pt;}
.xbf_c00390{left:222.270903pt;}
.x9f_c00390{left:232.776819pt;}
.x7f_c00390{left:233.791184pt;}
.x79_c00390{left:235.260536pt;}
.x3c_c00390{left:238.165277pt;}
.xb8_c00390{left:241.681333pt;}
.x86_c00390{left:244.136339pt;}
.x22_c00390{left:247.322480pt;}
.x2c_c00390{left:248.403467pt;}
.xb2_c00390{left:250.530667pt;}
.xa9_c00390{left:251.737525pt;}
.x9c_c00390{left:253.226448pt;}
.x6b_c00390{left:254.232981pt;}
.x57_c00390{left:256.222440pt;}
.x17_c00390{left:258.293333pt;}
.x95_c00390{left:263.530197pt;}
.x62_c00390{left:265.316381pt;}
.x3d_c00390{left:267.911944pt;}
.xd2_c00390{left:269.257333pt;}
.xb0_c00390{left:271.287856pt;}
.x8d_c00390{left:272.635197pt;}
.x4f_c00390{left:273.726360pt;}
.x6c_c00390{left:275.507328pt;}
.x49_c00390{left:276.549027pt;}
.x2d_c00390{left:278.410133pt;}
.xc0_c00390{left:280.955108pt;}
.x9d_c00390{left:282.983024pt;}
.x58_c00390{left:285.946685pt;}
.xcd_c00390{left:290.640000pt;}
.x96_c00390{left:292.770811pt;}
.x63_c00390{left:294.570435pt;}
.x34_c00390{left:296.964000pt;}
.x8e_c00390{left:302.879197pt;}
.x75_c00390{left:304.139061pt;}
.x50_c00390{left:305.168107pt;}
.x4a_c00390{left:306.064104pt;}
.xd9_c00390{left:308.296000pt;}
.xb3_c00390{left:310.450667pt;}
.xbc_c00390{left:317.319339pt;}
.x6d_c00390{left:323.489941pt;}
.x64_c00390{left:324.577877pt;}
.x8f_c00390{left:330.769864pt;}
.x6_c00390{left:336.461333pt;}
.xb1_c00390{left:338.846285pt;}
.xa0_c00390{left:340.475707pt;}
.xbd_c00390{left:342.274996pt;}
.x4b_c00390{left:343.753960pt;}
.x3e_c00390{left:345.203944pt;}
.x18_c00390{left:346.226667pt;}
.xda_c00390{left:348.660000pt;}
.x7_c00390{left:352.538667pt;}
.x59_c00390{left:354.137368pt;}
.x2e_c00390{left:356.425333pt;}
.xb9_c00390{left:359.281333pt;}
.x8_c00390{left:363.101333pt;}
.x23_c00390{left:364.970693pt;}
.x19_c00390{left:366.776000pt;}
.xd3_c00390{left:367.913333pt;}
.x87_c00390{left:371.383469pt;}
.x44_c00390{left:375.017349pt;}
.xc1_c00390{left:378.364220pt;}
.x9_c00390{left:380.862667pt;}
.x51_c00390{left:382.164981pt;}
.x5a_c00390{left:383.188205pt;}
.xa_c00390{left:392.145333pt;}
.x35_c00390{left:395.370667pt;}
.xdb_c00390{left:396.916000pt;}
.xb4_c00390{left:398.526667pt;}
.x76_c00390{left:401.597816pt;}
.xb_c00390{left:402.708000pt;}
.x24_c00390{left:405.283040pt;}
.xc2_c00390{left:408.196024pt;}
.x90_c00390{left:410.181864pt;}
.x52_c00390{left:413.912099pt;}
.xc_c00390{left:416.634667pt;}
.xce_c00390{left:417.600000pt;}
.xaa_c00390{left:419.144155pt;}
.x80_c00390{left:420.307131pt;}
.x4c_c00390{left:423.449747pt;}
.xa1_c00390{left:428.403811pt;}
.xd_c00390{left:432.476000pt;}
.x88_c00390{left:440.023315pt;}
.xe_c00390{left:442.314667pt;}
.x2f_c00390{left:444.283120pt;}
.xc3_c00390{left:445.793621pt;}
.xa2_c00390{left:448.043965pt;}
.xf_c00390{left:449.038667pt;}
.x6e_c00390{left:450.545504pt;}
.x45_c00390{left:452.737216pt;}
.x1a_c00390{left:455.586667pt;}
.x10_c00390{left:460.796000pt;}
.x97_c00390{left:469.437101pt;}
.x11_c00390{left:471.364000pt;}
.x5b_c00390{left:472.498293pt;}
.xb5_c00390{left:476.808000pt;}
.x12_c00390{left:481.926667pt;}
.x36_c00390{left:483.016000pt;}
.x1b_c00390{left:484.400000pt;}
.x13_c00390{left:495.849333pt;}
.x81_c00390{left:499.068232pt;}
.x6f_c00390{left:501.126429pt;}
.x5c_c00390{left:502.266539pt;}
.xab_c00390{left:506.955245pt;}
.x14_c00390{left:510.918667pt;}
.x25_c00390{left:513.308960pt;}
.xc4_c00390{left:516.106509pt;}
.x15_c00390{left:518.900000pt;}
.x65_c00390{left:520.724931pt;}
.x3f_c00390{left:522.823944pt;}
.x91_c00390{left:529.035197pt;}
.x89_c00390{left:538.219488pt;}
.x77_c00390{left:539.178251pt;}
.x37_c00390{left:542.990667pt;}
.xc5_c00390{left:545.675800pt;}
.xa3_c00390{left:547.849736pt;}
.x5d_c00390{left:549.557835pt;}
.x40_c00390{left:552.097277pt;}
.x30_c00390{left:553.265360pt;}
.x66_c00390{left:560.098360pt;}
.x98_c00390{left:567.856880pt;}
.x82_c00390{left:568.894555pt;}
.x5e_c00390{left:571.150611pt;}
.x38_c00390{left:572.517333pt;}
.x1c_c00390{left:573.734667pt;}
.xba_c00390{left:575.156000pt;}
.xac_c00390{left:576.150029pt;}
.x8a_c00390{left:577.353672pt;}
.x70_c00390{left:579.363472pt;}
.x53_c00390{left:581.219155pt;}
.x67_c00390{left:590.559155pt;}
.xd4_c00390{left:595.473544pt;}
.x99_c00390{left:597.138827pt;}
.x26_c00390{left:602.854453pt;}
.xb6_c00390{left:604.489333pt;}
.x9e_c00390{left:607.270992pt;}
.x71_c00390{left:609.137976pt;}
.x4d_c00390{left:620.283157pt;}
.x31_c00390{left:621.919467pt;}
.xd5_c00390{left:623.669320pt;}
.x83_c00390{left:627.440709pt;}
.x7a_c00390{left:629.125952pt;}
.x46_c00390{left:630.905520pt;}
.x1d_c00390{left:632.734667pt;}
.xc6_c00390{left:634.322455pt;}
.xa4_c00390{left:637.376189pt;}
.x41_c00390{left:640.145277pt;}
.x68_c00390{left:650.091317pt;}
.xc9_c00390{left:651.342015pt;}
.x32_c00390{left:652.645093pt;}
.xbb_c00390{left:653.907836pt;}
.x9a_c00390{left:655.506739pt;}
.x5f_c00390{left:659.477939pt;}
.x47_c00390{left:660.424003pt;}
.x27_c00390{left:662.151333pt;}
.x78_c00390{left:668.063664pt;}
.x42_c00390{left:670.199944pt;}
.x1e_c00390{left:671.400000pt;}
.xa5_c00390{left:675.118131pt;}
.x7b_c00390{left:677.563877pt;}
.x39_c00390{left:681.006667pt;}
.xc7_c00390{left:684.160287pt;}
.x92_c00390{left:687.269864pt;}
.x72_c00390{left:688.328221pt;}
.x54_c00390{left:689.241739pt;}
.x28_c00390{left:690.503467pt;}
.x84_c00390{left:697.325680pt;}
.x60_c00390{left:698.848469pt;}
.xb7_c00390{left:704.381333pt;}
.x8b_c00390{left:706.011544pt;}
.x3a_c00390{left:710.050667pt;}
.xc8_c00390{left:714.379867pt;}
.x55_c00390{left:719.728725pt;}
.x29_c00390{left:721.677600pt;}
.xd6_c00390{left:724.332556pt;}
.x93_c00390{left:726.599197pt;}
.xca_c00390{left:733.888880pt;}
.xdc_c00390{left:789.840000pt;}
.xdf_c00390{left:794.640000pt;}
.xe1_c00390{left:799.440000pt;}
.xe0_c00390{left:803.520000pt;}
.xde_c00390{left:809.280000pt;}
.xdd_c00390{left:810.240000pt;}
}





/* 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_c00391 {
    display:none;
  }
  .loading-indicator_c00391.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00391 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_c00391 { 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_c00391" -> "#page-container .classname_c00391")
 */
.pf_c00391 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00391 { /* 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_c00391.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00391 { /* 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_c00391 { /* 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_c00391 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00391 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00391 {overflow:visible;}
  }
}
.c_c00391 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00391 { /* 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_c00391:after { /* webkit #35443 */
  content: '';
}
.t_c00391:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00391 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 */
}
.__c00391 { /* 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_c00391 { /* info for Javascript */
  display:none;
}
.l_c00391 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00391 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00391 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00391: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_c00391 {
    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_c00391.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00391.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_c00391 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00391{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00391;src:url('chunks/assets/font_cfe63ee56e9e10a97d33a3db.woff2')format("woff");}.ff1_c00391{font-family:ff1_c00391;line-height:1.000000;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;}
.m20_c00391{transform:matrix(0.023865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.023865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.023865,0.000000,0.000000,0.250000,0,0);}
.m18_c00391{transform:matrix(0.031904,-0.000830,0.006498,0.249916,0,0);-ms-transform:matrix(0.031904,-0.000830,0.006498,0.249916,0,0);-webkit-transform:matrix(0.031904,-0.000830,0.006498,0.249916,0,0);}
.m48_c00391{transform:matrix(0.046628,-0.001259,0.006748,0.249909,0,0);-ms-transform:matrix(0.046628,-0.001259,0.006748,0.249909,0,0);-webkit-transform:matrix(0.046628,-0.001259,0.006748,0.249909,0,0);}
.m1d_c00391{transform:matrix(0.054885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054885,0.000000,0.000000,0.250000,0,0);}
.m1_c00391{transform:matrix(0.090480,-0.003804,0.010501,0.249779,0,0);-ms-transform:matrix(0.090480,-0.003804,0.010501,0.249779,0,0);-webkit-transform:matrix(0.090480,-0.003804,0.010501,0.249779,0,0);}
.m13_c00391{transform:matrix(0.092994,-0.002418,0.006498,0.249916,0,0);-ms-transform:matrix(0.092994,-0.002418,0.006498,0.249916,0,0);-webkit-transform:matrix(0.092994,-0.002418,0.006498,0.249916,0,0);}
.m50_c00391{transform:matrix(0.095667,-0.002870,0.007497,0.249888,0,0);-ms-transform:matrix(0.095667,-0.002870,0.007497,0.249888,0,0);-webkit-transform:matrix(0.095667,-0.002870,0.007497,0.249888,0,0);}
.ma3_c00391{transform:matrix(0.130963,-0.004195,0.008004,0.249872,0,0);-ms-transform:matrix(0.130963,-0.004195,0.008004,0.249872,0,0);-webkit-transform:matrix(0.130963,-0.004195,0.008004,0.249872,0,0);}
.m6d_c00391{transform:matrix(0.138330,-0.006647,0.011998,0.249712,0,0);-ms-transform:matrix(0.138330,-0.006647,0.011998,0.249712,0,0);-webkit-transform:matrix(0.138330,-0.006647,0.011998,0.249712,0,0);}
.m33_c00391{transform:matrix(0.157154,-0.005034,0.008004,0.249872,0,0);-ms-transform:matrix(0.157154,-0.005034,0.008004,0.249872,0,0);-webkit-transform:matrix(0.157154,-0.005034,0.008004,0.249872,0,0);}
.m8f_c00391{transform:matrix(0.169653,-0.005434,0.008004,0.249872,0,0);-ms-transform:matrix(0.169653,-0.005434,0.008004,0.249872,0,0);-webkit-transform:matrix(0.169653,-0.005434,0.008004,0.249872,0,0);}
.m9f_c00391{transform:matrix(0.171962,-0.005508,0.008004,0.249872,0,0);-ms-transform:matrix(0.171962,-0.005508,0.008004,0.249872,0,0);-webkit-transform:matrix(0.171962,-0.005508,0.008004,0.249872,0,0);}
.m11_c00391{transform:matrix(0.176920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176920,0.000000,0.000000,0.250000,0,0);}
.m38_c00391{transform:matrix(0.181037,-0.005799,0.008004,0.249872,0,0);-ms-transform:matrix(0.181037,-0.005799,0.008004,0.249872,0,0);-webkit-transform:matrix(0.181037,-0.005799,0.008004,0.249872,0,0);}
.m0_c00391{transform:matrix(0.182809,-0.007686,0.010501,0.249779,0,0);-ms-transform:matrix(0.182809,-0.007686,0.010501,0.249779,0,0);-webkit-transform:matrix(0.182809,-0.007686,0.010501,0.249779,0,0);}
.m6e_c00391{transform:matrix(0.195165,-0.009377,0.011998,0.249712,0,0);-ms-transform:matrix(0.195165,-0.009377,0.011998,0.249712,0,0);-webkit-transform:matrix(0.195165,-0.009377,0.011998,0.249712,0,0);}
.m4f_c00391{transform:matrix(0.198506,-0.005955,0.007497,0.249888,0,0);-ms-transform:matrix(0.198506,-0.005955,0.007497,0.249888,0,0);-webkit-transform:matrix(0.198506,-0.005955,0.007497,0.249888,0,0);}
.m68_c00391{transform:matrix(0.199255,-0.006781,0.008504,0.249855,0,0);-ms-transform:matrix(0.199255,-0.006781,0.008504,0.249855,0,0);-webkit-transform:matrix(0.199255,-0.006781,0.008504,0.249855,0,0);}
.ma0_c00391{transform:matrix(0.200552,-0.006424,0.008004,0.249872,0,0);-ms-transform:matrix(0.200552,-0.006424,0.008004,0.249872,0,0);-webkit-transform:matrix(0.200552,-0.006424,0.008004,0.249872,0,0);}
.m61_c00391{transform:matrix(0.202778,-0.006901,0.008504,0.249855,0,0);-ms-transform:matrix(0.202778,-0.006901,0.008504,0.249855,0,0);-webkit-transform:matrix(0.202778,-0.006901,0.008504,0.249855,0,0);}
.m85_c00391{transform:matrix(0.207848,-0.006658,0.008004,0.249872,0,0);-ms-transform:matrix(0.207848,-0.006658,0.008004,0.249872,0,0);-webkit-transform:matrix(0.207848,-0.006658,0.008004,0.249872,0,0);}
.m43_c00391{transform:matrix(0.208919,-0.005641,0.006748,0.249909,0,0);-ms-transform:matrix(0.208919,-0.005641,0.006748,0.249909,0,0);-webkit-transform:matrix(0.208919,-0.005641,0.006748,0.249909,0,0);}
.m65_c00391{transform:matrix(0.209269,-0.007122,0.008504,0.249855,0,0);-ms-transform:matrix(0.209269,-0.007122,0.008504,0.249855,0,0);-webkit-transform:matrix(0.209269,-0.007122,0.008504,0.249855,0,0);}
.m30_c00391{transform:matrix(0.211821,-0.006785,0.008004,0.249872,0,0);-ms-transform:matrix(0.211821,-0.006785,0.008004,0.249872,0,0);-webkit-transform:matrix(0.211821,-0.006785,0.008004,0.249872,0,0);}
.m7d_c00391{transform:matrix(0.212524,-0.009360,0.011000,0.249758,0,0);-ms-transform:matrix(0.212524,-0.009360,0.011000,0.249758,0,0);-webkit-transform:matrix(0.212524,-0.009360,0.011000,0.249758,0,0);}
.m32_c00391{transform:matrix(0.213431,-0.006837,0.008004,0.249872,0,0);-ms-transform:matrix(0.213431,-0.006837,0.008004,0.249872,0,0);-webkit-transform:matrix(0.213431,-0.006837,0.008004,0.249872,0,0);}
.md8_c00391{transform:matrix(0.215103,-0.005378,0.006248,0.249922,0,0);-ms-transform:matrix(0.215103,-0.005378,0.006248,0.249922,0,0);-webkit-transform:matrix(0.215103,-0.005378,0.006248,0.249922,0,0);}
.m14_c00391{transform:matrix(0.215607,-0.005606,0.006498,0.249916,0,0);-ms-transform:matrix(0.215607,-0.005606,0.006498,0.249916,0,0);-webkit-transform:matrix(0.215607,-0.005606,0.006498,0.249916,0,0);}
.m70_c00391{transform:matrix(0.215676,-0.010363,0.011998,0.249712,0,0);-ms-transform:matrix(0.215676,-0.010363,0.011998,0.249712,0,0);-webkit-transform:matrix(0.215676,-0.010363,0.011998,0.249712,0,0);}
.m28_c00391{transform:matrix(0.216984,-0.006950,0.008004,0.249872,0,0);-ms-transform:matrix(0.216984,-0.006950,0.008004,0.249872,0,0);-webkit-transform:matrix(0.216984,-0.006950,0.008004,0.249872,0,0);}
.m7e_c00391{transform:matrix(0.218278,-0.009614,0.011000,0.249758,0,0);-ms-transform:matrix(0.218278,-0.009614,0.011000,0.249758,0,0);-webkit-transform:matrix(0.218278,-0.009614,0.011000,0.249758,0,0);}
.m25_c00391{transform:matrix(0.218548,-0.007001,0.008004,0.249872,0,0);-ms-transform:matrix(0.218548,-0.007001,0.008004,0.249872,0,0);-webkit-transform:matrix(0.218548,-0.007001,0.008004,0.249872,0,0);}
.m4_c00391{transform:matrix(0.219720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219720,0.000000,0.000000,0.250000,0,0);}
.md6_c00391{transform:matrix(0.220456,-0.005511,0.006248,0.249922,0,0);-ms-transform:matrix(0.220456,-0.005511,0.006248,0.249922,0,0);-webkit-transform:matrix(0.220456,-0.005511,0.006248,0.249922,0,0);}
.m3e_c00391{transform:matrix(0.220845,-0.005963,0.006748,0.249909,0,0);-ms-transform:matrix(0.220845,-0.005963,0.006748,0.249909,0,0);-webkit-transform:matrix(0.220845,-0.005963,0.006748,0.249909,0,0);}
.m55_c00391{transform:matrix(0.226388,-0.006792,0.007497,0.249888,0,0);-ms-transform:matrix(0.226388,-0.006792,0.007497,0.249888,0,0);-webkit-transform:matrix(0.226388,-0.006792,0.007497,0.249888,0,0);}
.m5_c00391{transform:matrix(0.227795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227795,0.000000,0.000000,0.250000,0,0);}
.m26_c00391{transform:matrix(0.228423,-0.007317,0.008004,0.249872,0,0);-ms-transform:matrix(0.228423,-0.007317,0.008004,0.249872,0,0);-webkit-transform:matrix(0.228423,-0.007317,0.008004,0.249872,0,0);}
.m22_c00391{transform:matrix(0.229472,-0.007350,0.008004,0.249872,0,0);-ms-transform:matrix(0.229472,-0.007350,0.008004,0.249872,0,0);-webkit-transform:matrix(0.229472,-0.007350,0.008004,0.249872,0,0);}
.m73_c00391{transform:matrix(0.230359,-0.011068,0.011998,0.249712,0,0);-ms-transform:matrix(0.230359,-0.011068,0.011998,0.249712,0,0);-webkit-transform:matrix(0.230359,-0.011068,0.011998,0.249712,0,0);}
.m98_c00391{transform:matrix(0.232956,-0.007462,0.008004,0.249872,0,0);-ms-transform:matrix(0.232956,-0.007462,0.008004,0.249872,0,0);-webkit-transform:matrix(0.232956,-0.007462,0.008004,0.249872,0,0);}
.m74_c00391{transform:matrix(0.235863,-0.011333,0.011998,0.249712,0,0);-ms-transform:matrix(0.235863,-0.011333,0.011998,0.249712,0,0);-webkit-transform:matrix(0.235863,-0.011333,0.011998,0.249712,0,0);}
.m7f_c00391{transform:matrix(0.236391,-0.010412,0.011000,0.249758,0,0);-ms-transform:matrix(0.236391,-0.010412,0.011000,0.249758,0,0);-webkit-transform:matrix(0.236391,-0.010412,0.011000,0.249758,0,0);}
.m34_c00391{transform:matrix(0.236619,-0.007579,0.008004,0.249872,0,0);-ms-transform:matrix(0.236619,-0.007579,0.008004,0.249872,0,0);-webkit-transform:matrix(0.236619,-0.007579,0.008004,0.249872,0,0);}
.m64_c00391{transform:matrix(0.237912,-0.008097,0.008504,0.249855,0,0);-ms-transform:matrix(0.237912,-0.008097,0.008504,0.249855,0,0);-webkit-transform:matrix(0.237912,-0.008097,0.008504,0.249855,0,0);}
.md5_c00391{transform:matrix(0.238246,-0.005956,0.006248,0.249922,0,0);-ms-transform:matrix(0.238246,-0.005956,0.006248,0.249922,0,0);-webkit-transform:matrix(0.238246,-0.005956,0.006248,0.249922,0,0);}
.m69_c00391{transform:matrix(0.238272,-0.008109,0.008504,0.249855,0,0);-ms-transform:matrix(0.238272,-0.008109,0.008504,0.249855,0,0);-webkit-transform:matrix(0.238272,-0.008109,0.008504,0.249855,0,0);}
.m8b_c00391{transform:matrix(0.239992,-0.007687,0.008004,0.249872,0,0);-ms-transform:matrix(0.239992,-0.007687,0.008004,0.249872,0,0);-webkit-transform:matrix(0.239992,-0.007687,0.008004,0.249872,0,0);}
.ma6_c00391{transform:matrix(0.240672,-0.006498,0.006748,0.249909,0,0);-ms-transform:matrix(0.240672,-0.006498,0.006748,0.249909,0,0);-webkit-transform:matrix(0.240672,-0.006498,0.006748,0.249909,0,0);}
.m15_c00391{transform:matrix(0.241998,-0.006292,0.006498,0.249916,0,0);-ms-transform:matrix(0.241998,-0.006292,0.006498,0.249916,0,0);-webkit-transform:matrix(0.241998,-0.006292,0.006498,0.249916,0,0);}
.m37_c00391{transform:matrix(0.242436,-0.007766,0.008004,0.249872,0,0);-ms-transform:matrix(0.242436,-0.007766,0.008004,0.249872,0,0);-webkit-transform:matrix(0.242436,-0.007766,0.008004,0.249872,0,0);}
.m36_c00391{transform:matrix(0.243200,-0.007790,0.008004,0.249872,0,0);-ms-transform:matrix(0.243200,-0.007790,0.008004,0.249872,0,0);-webkit-transform:matrix(0.243200,-0.007790,0.008004,0.249872,0,0);}
.md2_c00391{transform:matrix(0.243524,-0.006088,0.006248,0.249922,0,0);-ms-transform:matrix(0.243524,-0.006088,0.006248,0.249922,0,0);-webkit-transform:matrix(0.243524,-0.006088,0.006248,0.249922,0,0);}
.m8d_c00391{transform:matrix(0.244005,-0.007816,0.008004,0.249872,0,0);-ms-transform:matrix(0.244005,-0.007816,0.008004,0.249872,0,0);-webkit-transform:matrix(0.244005,-0.007816,0.008004,0.249872,0,0);}
.m3b_c00391{transform:matrix(0.245214,-0.007855,0.008004,0.249872,0,0);-ms-transform:matrix(0.245214,-0.007855,0.008004,0.249872,0,0);-webkit-transform:matrix(0.245214,-0.007855,0.008004,0.249872,0,0);}
.md3_c00391{transform:matrix(0.247213,-0.006180,0.006248,0.249922,0,0);-ms-transform:matrix(0.247213,-0.006180,0.006248,0.249922,0,0);-webkit-transform:matrix(0.247213,-0.006180,0.006248,0.249922,0,0);}
.mc1_c00391{transform:matrix(0.248058,-0.007442,0.007497,0.249888,0,0);-ms-transform:matrix(0.248058,-0.007442,0.007497,0.249888,0,0);-webkit-transform:matrix(0.248058,-0.007442,0.007497,0.249888,0,0);}
.m54_c00391{transform:matrix(0.250937,-0.007528,0.007497,0.249888,0,0);-ms-transform:matrix(0.250937,-0.007528,0.007497,0.249888,0,0);-webkit-transform:matrix(0.250937,-0.007528,0.007497,0.249888,0,0);}
.m63_c00391{transform:matrix(0.250985,-0.008542,0.008504,0.249855,0,0);-ms-transform:matrix(0.250985,-0.008542,0.008504,0.249855,0,0);-webkit-transform:matrix(0.250985,-0.008542,0.008504,0.249855,0,0);}
.m4e_c00391{transform:matrix(0.251112,-0.007533,0.007497,0.249888,0,0);-ms-transform:matrix(0.251112,-0.007533,0.007497,0.249888,0,0);-webkit-transform:matrix(0.251112,-0.007533,0.007497,0.249888,0,0);}
.m8c_c00391{transform:matrix(0.255039,-0.008169,0.008004,0.249872,0,0);-ms-transform:matrix(0.255039,-0.008169,0.008004,0.249872,0,0);-webkit-transform:matrix(0.255039,-0.008169,0.008004,0.249872,0,0);}
.m27_c00391{transform:matrix(0.256059,-0.008202,0.008004,0.249872,0,0);-ms-transform:matrix(0.256059,-0.008202,0.008004,0.249872,0,0);-webkit-transform:matrix(0.256059,-0.008202,0.008004,0.249872,0,0);}
.mb2_c00391{transform:matrix(0.256992,-0.009004,0.008753,0.249847,0,0);-ms-transform:matrix(0.256992,-0.009004,0.008753,0.249847,0,0);-webkit-transform:matrix(0.256992,-0.009004,0.008753,0.249847,0,0);}
.m62_c00391{transform:matrix(0.257631,-0.008768,0.008504,0.249855,0,0);-ms-transform:matrix(0.257631,-0.008768,0.008504,0.249855,0,0);-webkit-transform:matrix(0.257631,-0.008768,0.008504,0.249855,0,0);}
.mdf_c00391{transform:matrix(0.258619,-0.006465,0.006248,0.249922,0,0);-ms-transform:matrix(0.258619,-0.006465,0.006248,0.249922,0,0);-webkit-transform:matrix(0.258619,-0.006465,0.006248,0.249922,0,0);}
.m72_c00391{transform:matrix(0.258697,-0.012430,0.011998,0.249712,0,0);-ms-transform:matrix(0.258697,-0.012430,0.011998,0.249712,0,0);-webkit-transform:matrix(0.258697,-0.012430,0.011998,0.249712,0,0);}
.m2_c00391{transform:matrix(0.260665,-0.010959,0.010501,0.249779,0,0);-ms-transform:matrix(0.260665,-0.010959,0.010501,0.249779,0,0);-webkit-transform:matrix(0.260665,-0.010959,0.010501,0.249779,0,0);}
.m66_c00391{transform:matrix(0.260864,-0.008878,0.008504,0.249855,0,0);-ms-transform:matrix(0.260864,-0.008878,0.008504,0.249855,0,0);-webkit-transform:matrix(0.260864,-0.008878,0.008504,0.249855,0,0);}
.mcc_c00391{transform:matrix(0.262804,-0.009470,0.009003,0.249838,0,0);-ms-transform:matrix(0.262804,-0.009470,0.009003,0.249838,0,0);-webkit-transform:matrix(0.262804,-0.009470,0.009003,0.249838,0,0);}
.ma2_c00391{transform:matrix(0.262900,-0.008421,0.008004,0.249872,0,0);-ms-transform:matrix(0.262900,-0.008421,0.008004,0.249872,0,0);-webkit-transform:matrix(0.262900,-0.008421,0.008004,0.249872,0,0);}
.m4a_c00391{transform:matrix(0.264114,-0.007131,0.006748,0.249909,0,0);-ms-transform:matrix(0.264114,-0.007131,0.006748,0.249909,0,0);-webkit-transform:matrix(0.264114,-0.007131,0.006748,0.249909,0,0);}
.m67_c00391{transform:matrix(0.264342,-0.008997,0.008504,0.249855,0,0);-ms-transform:matrix(0.264342,-0.008997,0.008504,0.249855,0,0);-webkit-transform:matrix(0.264342,-0.008997,0.008504,0.249855,0,0);}
.m23_c00391{transform:matrix(0.265029,-0.008489,0.008004,0.249872,0,0);-ms-transform:matrix(0.265029,-0.008489,0.008004,0.249872,0,0);-webkit-transform:matrix(0.265029,-0.008489,0.008004,0.249872,0,0);}
.m53_c00391{transform:matrix(0.265236,-0.007957,0.007497,0.249888,0,0);-ms-transform:matrix(0.265236,-0.007957,0.007497,0.249888,0,0);-webkit-transform:matrix(0.265236,-0.007957,0.007497,0.249888,0,0);}
.m6f_c00391{transform:matrix(0.265634,-0.012763,0.011998,0.249712,0,0);-ms-transform:matrix(0.265634,-0.012763,0.011998,0.249712,0,0);-webkit-transform:matrix(0.265634,-0.012763,0.011998,0.249712,0,0);}
.m2c_c00391{transform:matrix(0.265664,-0.008510,0.008004,0.249872,0,0);-ms-transform:matrix(0.265664,-0.008510,0.008004,0.249872,0,0);-webkit-transform:matrix(0.265664,-0.008510,0.008004,0.249872,0,0);}
.m40_c00391{transform:matrix(0.266228,-0.007188,0.006748,0.249909,0,0);-ms-transform:matrix(0.266228,-0.007188,0.006748,0.249909,0,0);-webkit-transform:matrix(0.266228,-0.007188,0.006748,0.249909,0,0);}
.m6a_c00391{transform:matrix(0.267400,-0.009101,0.008504,0.249855,0,0);-ms-transform:matrix(0.267400,-0.009101,0.008504,0.249855,0,0);-webkit-transform:matrix(0.267400,-0.009101,0.008504,0.249855,0,0);}
.m5b_c00391{transform:matrix(0.267509,-0.014460,0.013494,0.249636,0,0);-ms-transform:matrix(0.267509,-0.014460,0.013494,0.249636,0,0);-webkit-transform:matrix(0.267509,-0.014460,0.013494,0.249636,0,0);}
.m46_c00391{transform:matrix(0.268822,-0.007258,0.006748,0.249909,0,0);-ms-transform:matrix(0.268822,-0.007258,0.006748,0.249909,0,0);-webkit-transform:matrix(0.268822,-0.007258,0.006748,0.249909,0,0);}
.m39_c00391{transform:matrix(0.269642,-0.008637,0.008004,0.249872,0,0);-ms-transform:matrix(0.269642,-0.008637,0.008004,0.249872,0,0);-webkit-transform:matrix(0.269642,-0.008637,0.008004,0.249872,0,0);}
.m24_c00391{transform:matrix(0.270611,-0.008668,0.008004,0.249872,0,0);-ms-transform:matrix(0.270611,-0.008668,0.008004,0.249872,0,0);-webkit-transform:matrix(0.270611,-0.008668,0.008004,0.249872,0,0);}
.m52_c00391{transform:matrix(0.271448,-0.008143,0.007497,0.249888,0,0);-ms-transform:matrix(0.271448,-0.008143,0.007497,0.249888,0,0);-webkit-transform:matrix(0.271448,-0.008143,0.007497,0.249888,0,0);}
.mb8_c00391{transform:matrix(0.272371,-0.007354,0.006748,0.249909,0,0);-ms-transform:matrix(0.272371,-0.007354,0.006748,0.249909,0,0);-webkit-transform:matrix(0.272371,-0.007354,0.006748,0.249909,0,0);}
.m79_c00391{transform:matrix(0.272847,-0.009286,0.008504,0.249855,0,0);-ms-transform:matrix(0.272847,-0.009286,0.008504,0.249855,0,0);-webkit-transform:matrix(0.272847,-0.009286,0.008504,0.249855,0,0);}
.ma9_c00391{transform:matrix(0.274785,-0.007419,0.006748,0.249909,0,0);-ms-transform:matrix(0.274785,-0.007419,0.006748,0.249909,0,0);-webkit-transform:matrix(0.274785,-0.007419,0.006748,0.249909,0,0);}
.m1e_c00391{transform:matrix(0.275155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275155,0.000000,0.000000,0.250000,0,0);}
.m1b_c00391{transform:matrix(0.276771,-0.007196,0.006498,0.249916,0,0);-ms-transform:matrix(0.276771,-0.007196,0.006498,0.249916,0,0);-webkit-transform:matrix(0.276771,-0.007196,0.006498,0.249916,0,0);}
.mbf_c00391{transform:matrix(0.276860,-0.008306,0.007497,0.249888,0,0);-ms-transform:matrix(0.276860,-0.008306,0.007497,0.249888,0,0);-webkit-transform:matrix(0.276860,-0.008306,0.007497,0.249888,0,0);}
.m16_c00391{transform:matrix(0.277546,-0.007216,0.006498,0.249916,0,0);-ms-transform:matrix(0.277546,-0.007216,0.006498,0.249916,0,0);-webkit-transform:matrix(0.277546,-0.007216,0.006498,0.249916,0,0);}
.m80_c00391{transform:matrix(0.277586,-0.012226,0.011000,0.249758,0,0);-ms-transform:matrix(0.277586,-0.012226,0.011000,0.249758,0,0);-webkit-transform:matrix(0.277586,-0.012226,0.011000,0.249758,0,0);}
.m60_c00391{transform:matrix(0.281107,-0.009567,0.008504,0.249855,0,0);-ms-transform:matrix(0.281107,-0.009567,0.008504,0.249855,0,0);-webkit-transform:matrix(0.281107,-0.009567,0.008504,0.249855,0,0);}
.mc7_c00391{transform:matrix(0.281342,-0.010138,0.009003,0.249838,0,0);-ms-transform:matrix(0.281342,-0.010138,0.009003,0.249838,0,0);-webkit-transform:matrix(0.281342,-0.010138,0.009003,0.249838,0,0);}
.mdd_c00391{transform:matrix(0.281427,-0.007036,0.006248,0.249922,0,0);-ms-transform:matrix(0.281427,-0.007036,0.006248,0.249922,0,0);-webkit-transform:matrix(0.281427,-0.007036,0.006248,0.249922,0,0);}
.mce_c00391{transform:matrix(0.281817,-0.010156,0.009003,0.249838,0,0);-ms-transform:matrix(0.281817,-0.010156,0.009003,0.249838,0,0);-webkit-transform:matrix(0.281817,-0.010156,0.009003,0.249838,0,0);}
.m31_c00391{transform:matrix(0.282455,-0.009048,0.008004,0.249872,0,0);-ms-transform:matrix(0.282455,-0.009048,0.008004,0.249872,0,0);-webkit-transform:matrix(0.282455,-0.009048,0.008004,0.249872,0,0);}
.maa_c00391{transform:matrix(0.283957,-0.007667,0.006748,0.249909,0,0);-ms-transform:matrix(0.283957,-0.007667,0.006748,0.249909,0,0);-webkit-transform:matrix(0.283957,-0.007667,0.006748,0.249909,0,0);}
.mcd_c00391{transform:matrix(0.284870,-0.010266,0.009003,0.249838,0,0);-ms-transform:matrix(0.284870,-0.010266,0.009003,0.249838,0,0);-webkit-transform:matrix(0.284870,-0.010266,0.009003,0.249838,0,0);}
.m75_c00391{transform:matrix(0.288697,-0.013871,0.011998,0.249712,0,0);-ms-transform:matrix(0.288697,-0.013871,0.011998,0.249712,0,0);-webkit-transform:matrix(0.288697,-0.013871,0.011998,0.249712,0,0);}
.m35_c00391{transform:matrix(0.288822,-0.009252,0.008004,0.249872,0,0);-ms-transform:matrix(0.288822,-0.009252,0.008004,0.249872,0,0);-webkit-transform:matrix(0.288822,-0.009252,0.008004,0.249872,0,0);}
.m58_c00391{transform:matrix(0.291569,-0.008747,0.007497,0.249888,0,0);-ms-transform:matrix(0.291569,-0.008747,0.007497,0.249888,0,0);-webkit-transform:matrix(0.291569,-0.008747,0.007497,0.249888,0,0);}
.m97_c00391{transform:matrix(0.291655,-0.009342,0.008004,0.249872,0,0);-ms-transform:matrix(0.291655,-0.009342,0.008004,0.249872,0,0);-webkit-transform:matrix(0.291655,-0.009342,0.008004,0.249872,0,0);}
.mc2_c00391{transform:matrix(0.292583,-0.008778,0.007497,0.249888,0,0);-ms-transform:matrix(0.292583,-0.008778,0.007497,0.249888,0,0);-webkit-transform:matrix(0.292583,-0.008778,0.007497,0.249888,0,0);}
.mc0_c00391{transform:matrix(0.292983,-0.008789,0.007497,0.249888,0,0);-ms-transform:matrix(0.292983,-0.008789,0.007497,0.249888,0,0);-webkit-transform:matrix(0.292983,-0.008789,0.007497,0.249888,0,0);}
.mb6_c00391{transform:matrix(0.293258,-0.007918,0.006748,0.249909,0,0);-ms-transform:matrix(0.293258,-0.007918,0.006748,0.249909,0,0);-webkit-transform:matrix(0.293258,-0.007918,0.006748,0.249909,0,0);}
.m84_c00391{transform:matrix(0.295324,-0.009460,0.008004,0.249872,0,0);-ms-transform:matrix(0.295324,-0.009460,0.008004,0.249872,0,0);-webkit-transform:matrix(0.295324,-0.009460,0.008004,0.249872,0,0);}
.m5a_c00391{transform:matrix(0.297581,-0.016085,0.013494,0.249636,0,0);-ms-transform:matrix(0.297581,-0.016085,0.013494,0.249636,0,0);-webkit-transform:matrix(0.297581,-0.016085,0.013494,0.249636,0,0);}
.m21_c00391{transform:matrix(0.297832,-0.009540,0.008004,0.249872,0,0);-ms-transform:matrix(0.297832,-0.009540,0.008004,0.249872,0,0);-webkit-transform:matrix(0.297832,-0.009540,0.008004,0.249872,0,0);}
.md7_c00391{transform:matrix(0.298272,-0.007457,0.006248,0.249922,0,0);-ms-transform:matrix(0.298272,-0.007457,0.006248,0.249922,0,0);-webkit-transform:matrix(0.298272,-0.007457,0.006248,0.249922,0,0);}
.mae_c00391{transform:matrix(0.300131,-0.010515,0.008753,0.249847,0,0);-ms-transform:matrix(0.300131,-0.010515,0.008753,0.249847,0,0);-webkit-transform:matrix(0.300131,-0.010515,0.008753,0.249847,0,0);}
.mca_c00391{transform:matrix(0.301334,-0.010859,0.009003,0.249838,0,0);-ms-transform:matrix(0.301334,-0.010859,0.009003,0.249838,0,0);-webkit-transform:matrix(0.301334,-0.010859,0.009003,0.249838,0,0);}
.m94_c00391{transform:matrix(0.301810,-0.009668,0.008004,0.249872,0,0);-ms-transform:matrix(0.301810,-0.009668,0.008004,0.249872,0,0);-webkit-transform:matrix(0.301810,-0.009668,0.008004,0.249872,0,0);}
.m56_c00391{transform:matrix(0.302249,-0.009067,0.007497,0.249888,0,0);-ms-transform:matrix(0.302249,-0.009067,0.007497,0.249888,0,0);-webkit-transform:matrix(0.302249,-0.009067,0.007497,0.249888,0,0);}
.m71_c00391{transform:matrix(0.303570,-0.014586,0.011998,0.249712,0,0);-ms-transform:matrix(0.303570,-0.014586,0.011998,0.249712,0,0);-webkit-transform:matrix(0.303570,-0.014586,0.011998,0.249712,0,0);}
.m82_c00391{transform:matrix(0.304259,-0.009746,0.008004,0.249872,0,0);-ms-transform:matrix(0.304259,-0.009746,0.008004,0.249872,0,0);-webkit-transform:matrix(0.304259,-0.009746,0.008004,0.249872,0,0);}
.m93_c00391{transform:matrix(0.304414,-0.009751,0.008004,0.249872,0,0);-ms-transform:matrix(0.304414,-0.009751,0.008004,0.249872,0,0);-webkit-transform:matrix(0.304414,-0.009751,0.008004,0.249872,0,0);}
.m45_c00391{transform:matrix(0.306038,-0.008263,0.006748,0.249909,0,0);-ms-transform:matrix(0.306038,-0.008263,0.006748,0.249909,0,0);-webkit-transform:matrix(0.306038,-0.008263,0.006748,0.249909,0,0);}
.m95_c00391{transform:matrix(0.306528,-0.009819,0.008004,0.249872,0,0);-ms-transform:matrix(0.306528,-0.009819,0.008004,0.249872,0,0);-webkit-transform:matrix(0.306528,-0.009819,0.008004,0.249872,0,0);}
.m29_c00391{transform:matrix(0.307347,-0.009845,0.008004,0.249872,0,0);-ms-transform:matrix(0.307347,-0.009845,0.008004,0.249872,0,0);-webkit-transform:matrix(0.307347,-0.009845,0.008004,0.249872,0,0);}
.md4_c00391{transform:matrix(0.310753,-0.007769,0.006248,0.249922,0,0);-ms-transform:matrix(0.310753,-0.007769,0.006248,0.249922,0,0);-webkit-transform:matrix(0.310753,-0.007769,0.006248,0.249922,0,0);}
.m99_c00391{transform:matrix(0.311250,-0.009970,0.008004,0.249872,0,0);-ms-transform:matrix(0.311250,-0.009970,0.008004,0.249872,0,0);-webkit-transform:matrix(0.311250,-0.009970,0.008004,0.249872,0,0);}
.m3_c00391{transform:matrix(0.312669,-0.013145,0.010501,0.249779,0,0);-ms-transform:matrix(0.312669,-0.013145,0.010501,0.249779,0,0);-webkit-transform:matrix(0.312669,-0.013145,0.010501,0.249779,0,0);}
.m9c_c00391{transform:matrix(0.312969,-0.010025,0.008004,0.249872,0,0);-ms-transform:matrix(0.312969,-0.010025,0.008004,0.249872,0,0);-webkit-transform:matrix(0.312969,-0.010025,0.008004,0.249872,0,0);}
.m92_c00391{transform:matrix(0.315003,-0.010090,0.008004,0.249872,0,0);-ms-transform:matrix(0.315003,-0.010090,0.008004,0.249872,0,0);-webkit-transform:matrix(0.315003,-0.010090,0.008004,0.249872,0,0);}
.ma8_c00391{transform:matrix(0.317289,-0.008567,0.006748,0.249909,0,0);-ms-transform:matrix(0.317289,-0.008567,0.006748,0.249909,0,0);-webkit-transform:matrix(0.317289,-0.008567,0.006748,0.249909,0,0);}
.mac_c00391{transform:matrix(0.318055,-0.011143,0.008753,0.249847,0,0);-ms-transform:matrix(0.318055,-0.011143,0.008753,0.249847,0,0);-webkit-transform:matrix(0.318055,-0.011143,0.008753,0.249847,0,0);}
.m41_c00391{transform:matrix(0.318069,-0.008588,0.006748,0.249909,0,0);-ms-transform:matrix(0.318069,-0.008588,0.006748,0.249909,0,0);-webkit-transform:matrix(0.318069,-0.008588,0.006748,0.249909,0,0);}
.maf_c00391{transform:matrix(0.318200,-0.011148,0.008753,0.249847,0,0);-ms-transform:matrix(0.318200,-0.011148,0.008753,0.249847,0,0);-webkit-transform:matrix(0.318200,-0.011148,0.008753,0.249847,0,0);}
.m7b_c00391{transform:matrix(0.321708,-0.014169,0.011000,0.249758,0,0);-ms-transform:matrix(0.321708,-0.014169,0.011000,0.249758,0,0);-webkit-transform:matrix(0.321708,-0.014169,0.011000,0.249758,0,0);}
.mb7_c00391{transform:matrix(0.321978,-0.008693,0.006748,0.249909,0,0);-ms-transform:matrix(0.321978,-0.008693,0.006748,0.249909,0,0);-webkit-transform:matrix(0.321978,-0.008693,0.006748,0.249909,0,0);}
.m6b_c00391{transform:matrix(0.324782,-0.011054,0.008504,0.249855,0,0);-ms-transform:matrix(0.324782,-0.011054,0.008504,0.249855,0,0);-webkit-transform:matrix(0.324782,-0.011054,0.008504,0.249855,0,0);}
.m4c_c00391{transform:matrix(0.326833,-0.009805,0.007497,0.249888,0,0);-ms-transform:matrix(0.326833,-0.009805,0.007497,0.249888,0,0);-webkit-transform:matrix(0.326833,-0.009805,0.007497,0.249888,0,0);}
.m17_c00391{transform:matrix(0.327874,-0.008525,0.006498,0.249916,0,0);-ms-transform:matrix(0.327874,-0.008525,0.006498,0.249916,0,0);-webkit-transform:matrix(0.327874,-0.008525,0.006498,0.249916,0,0);}
.mb5_c00391{transform:matrix(0.328410,-0.008867,0.006748,0.249909,0,0);-ms-transform:matrix(0.328410,-0.008867,0.006748,0.249909,0,0);-webkit-transform:matrix(0.328410,-0.008867,0.006748,0.249909,0,0);}
.mab_c00391{transform:matrix(0.330887,-0.011593,0.008753,0.249847,0,0);-ms-transform:matrix(0.330887,-0.011593,0.008753,0.249847,0,0);-webkit-transform:matrix(0.330887,-0.011593,0.008753,0.249847,0,0);}
.m51_c00391{transform:matrix(0.332395,-0.009972,0.007497,0.249888,0,0);-ms-transform:matrix(0.332395,-0.009972,0.007497,0.249888,0,0);-webkit-transform:matrix(0.332395,-0.009972,0.007497,0.249888,0,0);}
.m42_c00391{transform:matrix(0.333563,-0.009006,0.006748,0.249909,0,0);-ms-transform:matrix(0.333563,-0.009006,0.006748,0.249909,0,0);-webkit-transform:matrix(0.333563,-0.009006,0.006748,0.249909,0,0);}
.ma5_c00391{transform:matrix(0.335438,-0.009057,0.006748,0.249909,0,0);-ms-transform:matrix(0.335438,-0.009057,0.006748,0.249909,0,0);-webkit-transform:matrix(0.335438,-0.009057,0.006748,0.249909,0,0);}
.mde_c00391{transform:matrix(0.336605,-0.008415,0.006248,0.249922,0,0);-ms-transform:matrix(0.336605,-0.008415,0.006248,0.249922,0,0);-webkit-transform:matrix(0.336605,-0.008415,0.006248,0.249922,0,0);}
.m87_c00391{transform:matrix(0.339166,-0.010864,0.008004,0.249872,0,0);-ms-transform:matrix(0.339166,-0.010864,0.008004,0.249872,0,0);-webkit-transform:matrix(0.339166,-0.010864,0.008004,0.249872,0,0);}
.m3c_c00391{transform:matrix(0.339946,-0.010889,0.008004,0.249872,0,0);-ms-transform:matrix(0.339946,-0.010889,0.008004,0.249872,0,0);-webkit-transform:matrix(0.339946,-0.010889,0.008004,0.249872,0,0);}
.m19_c00391{transform:matrix(0.341105,-0.008869,0.006498,0.249916,0,0);-ms-transform:matrix(0.341105,-0.008869,0.006498,0.249916,0,0);-webkit-transform:matrix(0.341105,-0.008869,0.006498,0.249916,0,0);}
.m9_c00391{transform:matrix(0.342155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342155,0.000000,0.000000,0.250000,0,0);}
.m88_c00391{transform:matrix(0.342719,-0.010978,0.008004,0.249872,0,0);-ms-transform:matrix(0.342719,-0.010978,0.008004,0.249872,0,0);-webkit-transform:matrix(0.342719,-0.010978,0.008004,0.249872,0,0);}
.mc3_c00391{transform:matrix(0.344030,-0.010321,0.007497,0.249888,0,0);-ms-transform:matrix(0.344030,-0.010321,0.007497,0.249888,0,0);-webkit-transform:matrix(0.344030,-0.010321,0.007497,0.249888,0,0);}
.mcb_c00391{transform:matrix(0.344746,-0.012423,0.009003,0.249838,0,0);-ms-transform:matrix(0.344746,-0.012423,0.009003,0.249838,0,0);-webkit-transform:matrix(0.344746,-0.012423,0.009003,0.249838,0,0);}
.m2b_c00391{transform:matrix(0.348436,-0.011161,0.008004,0.249872,0,0);-ms-transform:matrix(0.348436,-0.011161,0.008004,0.249872,0,0);-webkit-transform:matrix(0.348436,-0.011161,0.008004,0.249872,0,0);}
.m2d_c00391{transform:matrix(0.348816,-0.011173,0.008004,0.249872,0,0);-ms-transform:matrix(0.348816,-0.011173,0.008004,0.249872,0,0);-webkit-transform:matrix(0.348816,-0.011173,0.008004,0.249872,0,0);}
.me_c00391{transform:matrix(0.352580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352580,0.000000,0.000000,0.250000,0,0);}
.md1_c00391{transform:matrix(0.353799,-0.008845,0.006248,0.249922,0,0);-ms-transform:matrix(0.353799,-0.008845,0.006248,0.249922,0,0);-webkit-transform:matrix(0.353799,-0.008845,0.006248,0.249922,0,0);}
.mbc_c00391{transform:matrix(0.354116,-0.009561,0.006748,0.249909,0,0);-ms-transform:matrix(0.354116,-0.009561,0.006748,0.249909,0,0);-webkit-transform:matrix(0.354116,-0.009561,0.006748,0.249909,0,0);}
.m3a_c00391{transform:matrix(0.354278,-0.011348,0.008004,0.249872,0,0);-ms-transform:matrix(0.354278,-0.011348,0.008004,0.249872,0,0);-webkit-transform:matrix(0.354278,-0.011348,0.008004,0.249872,0,0);}
.m4d_c00391{transform:matrix(0.354765,-0.010643,0.007497,0.249888,0,0);-ms-transform:matrix(0.354765,-0.010643,0.007497,0.249888,0,0);-webkit-transform:matrix(0.354765,-0.010643,0.007497,0.249888,0,0);}
.mb0_c00391{transform:matrix(0.354772,-0.012429,0.008753,0.249847,0,0);-ms-transform:matrix(0.354772,-0.012429,0.008753,0.249847,0,0);-webkit-transform:matrix(0.354772,-0.012429,0.008753,0.249847,0,0);}
.mbb_c00391{transform:matrix(0.356300,-0.009620,0.006748,0.249909,0,0);-ms-transform:matrix(0.356300,-0.009620,0.006748,0.249909,0,0);-webkit-transform:matrix(0.356300,-0.009620,0.006748,0.249909,0,0);}
.m59_c00391{transform:matrix(0.356989,-0.019297,0.013494,0.249636,0,0);-ms-transform:matrix(0.356989,-0.019297,0.013494,0.249636,0,0);-webkit-transform:matrix(0.356989,-0.019297,0.013494,0.249636,0,0);}
.mdb_c00391{transform:matrix(0.357148,-0.008929,0.006248,0.249922,0,0);-ms-transform:matrix(0.357148,-0.008929,0.006248,0.249922,0,0);-webkit-transform:matrix(0.357148,-0.008929,0.006248,0.249922,0,0);}
.m5c_c00391{transform:matrix(0.357164,-0.019306,0.013494,0.249636,0,0);-ms-transform:matrix(0.357164,-0.019306,0.013494,0.249636,0,0);-webkit-transform:matrix(0.357164,-0.019306,0.013494,0.249636,0,0);}
.m8e_c00391{transform:matrix(0.357767,-0.011460,0.008004,0.249872,0,0);-ms-transform:matrix(0.357767,-0.011460,0.008004,0.249872,0,0);-webkit-transform:matrix(0.357767,-0.011460,0.008004,0.249872,0,0);}
.m9e_c00391{transform:matrix(0.360480,-0.011547,0.008004,0.249872,0,0);-ms-transform:matrix(0.360480,-0.011547,0.008004,0.249872,0,0);-webkit-transform:matrix(0.360480,-0.011547,0.008004,0.249872,0,0);}
.m5f_c00391{transform:matrix(0.361952,-0.019565,0.013494,0.249636,0,0);-ms-transform:matrix(0.361952,-0.019565,0.013494,0.249636,0,0);-webkit-transform:matrix(0.361952,-0.019565,0.013494,0.249636,0,0);}
.m3d_c00391{transform:matrix(0.362079,-0.011598,0.008004,0.249872,0,0);-ms-transform:matrix(0.362079,-0.011598,0.008004,0.249872,0,0);-webkit-transform:matrix(0.362079,-0.011598,0.008004,0.249872,0,0);}
.m8a_c00391{transform:matrix(0.363793,-0.011653,0.008004,0.249872,0,0);-ms-transform:matrix(0.363793,-0.011653,0.008004,0.249872,0,0);-webkit-transform:matrix(0.363793,-0.011653,0.008004,0.249872,0,0);}
.m86_c00391{transform:matrix(0.364033,-0.011661,0.008004,0.249872,0,0);-ms-transform:matrix(0.364033,-0.011661,0.008004,0.249872,0,0);-webkit-transform:matrix(0.364033,-0.011661,0.008004,0.249872,0,0);}
.m4b_c00391{transform:matrix(0.367570,-0.011027,0.007497,0.249888,0,0);-ms-transform:matrix(0.367570,-0.011027,0.007497,0.249888,0,0);-webkit-transform:matrix(0.367570,-0.011027,0.007497,0.249888,0,0);}
.m89_c00391{transform:matrix(0.367931,-0.011786,0.008004,0.249872,0,0);-ms-transform:matrix(0.367931,-0.011786,0.008004,0.249872,0,0);-webkit-transform:matrix(0.367931,-0.011786,0.008004,0.249872,0,0);}
.m1a_c00391{transform:matrix(0.374264,-0.009731,0.006498,0.249916,0,0);-ms-transform:matrix(0.374264,-0.009731,0.006498,0.249916,0,0);-webkit-transform:matrix(0.374264,-0.009731,0.006498,0.249916,0,0);}
.m7c_c00391{transform:matrix(0.375371,-0.016533,0.011000,0.249758,0,0);-ms-transform:matrix(0.375371,-0.016533,0.011000,0.249758,0,0);-webkit-transform:matrix(0.375371,-0.016533,0.011000,0.249758,0,0);}
.m5d_c00391{transform:matrix(0.382601,-0.020681,0.013494,0.249636,0,0);-ms-transform:matrix(0.382601,-0.020681,0.013494,0.249636,0,0);-webkit-transform:matrix(0.382601,-0.020681,0.013494,0.249636,0,0);}
.m47_c00391{transform:matrix(0.383365,-0.010351,0.006748,0.249909,0,0);-ms-transform:matrix(0.383365,-0.010351,0.006748,0.249909,0,0);-webkit-transform:matrix(0.383365,-0.010351,0.006748,0.249909,0,0);}
.m1f_c00391{transform:matrix(0.386085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386085,0.000000,0.000000,0.250000,0,0);}
.mc5_c00391{transform:matrix(0.386974,-0.013945,0.009003,0.249838,0,0);-ms-transform:matrix(0.386974,-0.013945,0.009003,0.249838,0,0);-webkit-transform:matrix(0.386974,-0.013945,0.009003,0.249838,0,0);}
.mad_c00391{transform:matrix(0.390685,-0.013688,0.008753,0.249847,0,0);-ms-transform:matrix(0.390685,-0.013688,0.008753,0.249847,0,0);-webkit-transform:matrix(0.390685,-0.013688,0.008753,0.249847,0,0);}
.me1_c00391{transform:matrix(0.394040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394040,0.000000,0.000000,0.250000,0,0);}
.m2a_c00391{transform:matrix(0.398960,-0.012780,0.008004,0.249872,0,0);-ms-transform:matrix(0.398960,-0.012780,0.008004,0.249872,0,0);-webkit-transform:matrix(0.398960,-0.012780,0.008004,0.249872,0,0);}
.m8_c00391{transform:matrix(0.409920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409920,0.000000,0.000000,0.250000,0,0);}
.ma7_c00391{transform:matrix(0.424440,-0.011460,0.006748,0.249909,0,0);-ms-transform:matrix(0.424440,-0.011460,0.006748,0.249909,0,0);-webkit-transform:matrix(0.424440,-0.011460,0.006748,0.249909,0,0);}
.m9a_c00391{transform:matrix(0.424922,-0.013611,0.008004,0.249872,0,0);-ms-transform:matrix(0.424922,-0.013611,0.008004,0.249872,0,0);-webkit-transform:matrix(0.424922,-0.013611,0.008004,0.249872,0,0);}
.md0_c00391{transform:matrix(0.429010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429010,0.000000,0.000000,0.250000,0,0);}
.m6c_c00391{transform:matrix(0.435333,-0.014816,0.008504,0.249855,0,0);-ms-transform:matrix(0.435333,-0.014816,0.008504,0.249855,0,0);-webkit-transform:matrix(0.435333,-0.014816,0.008504,0.249855,0,0);}
.mb4_c00391{transform:matrix(0.435926,-0.011770,0.006748,0.249909,0,0);-ms-transform:matrix(0.435926,-0.011770,0.006748,0.249909,0,0);-webkit-transform:matrix(0.435926,-0.011770,0.006748,0.249909,0,0);}
.m12_c00391{transform:matrix(0.438925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.438925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.438925,0.000000,0.000000,0.250000,0,0);}
.m78_c00391{transform:matrix(0.440795,-0.015002,0.008504,0.249855,0,0);-ms-transform:matrix(0.440795,-0.015002,0.008504,0.249855,0,0);-webkit-transform:matrix(0.440795,-0.015002,0.008504,0.249855,0,0);}
.mc4_c00391{transform:matrix(0.442533,-0.015947,0.009003,0.249838,0,0);-ms-transform:matrix(0.442533,-0.015947,0.009003,0.249838,0,0);-webkit-transform:matrix(0.442533,-0.015947,0.009003,0.249838,0,0);}
.m49_c00391{transform:matrix(0.449836,-0.012146,0.006748,0.249909,0,0);-ms-transform:matrix(0.449836,-0.012146,0.006748,0.249909,0,0);-webkit-transform:matrix(0.449836,-0.012146,0.006748,0.249909,0,0);}
.m9b_c00391{transform:matrix(0.456101,-0.014610,0.008004,0.249872,0,0);-ms-transform:matrix(0.456101,-0.014610,0.008004,0.249872,0,0);-webkit-transform:matrix(0.456101,-0.014610,0.008004,0.249872,0,0);}
.m2e_c00391{transform:matrix(0.456766,-0.014631,0.008004,0.249872,0,0);-ms-transform:matrix(0.456766,-0.014631,0.008004,0.249872,0,0);-webkit-transform:matrix(0.456766,-0.014631,0.008004,0.249872,0,0);}
.mf_c00391{transform:matrix(0.456840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456840,0.000000,0.000000,0.250000,0,0);}
.m83_c00391{transform:matrix(0.462938,-0.014829,0.008004,0.249872,0,0);-ms-transform:matrix(0.462938,-0.014829,0.008004,0.249872,0,0);-webkit-transform:matrix(0.462938,-0.014829,0.008004,0.249872,0,0);}
.mda_c00391{transform:matrix(0.464120,-0.011603,0.006248,0.249922,0,0);-ms-transform:matrix(0.464120,-0.011603,0.006248,0.249922,0,0);-webkit-transform:matrix(0.464120,-0.011603,0.006248,0.249922,0,0);}
.mc_c00391{transform:matrix(0.467925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467925,0.000000,0.000000,0.250000,0,0);}
.ma_c00391{transform:matrix(0.469950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469950,0.000000,0.000000,0.250000,0,0);}
.mbd_c00391{transform:matrix(0.470853,-0.014126,0.007497,0.249888,0,0);-ms-transform:matrix(0.470853,-0.014126,0.007497,0.249888,0,0);-webkit-transform:matrix(0.470853,-0.014126,0.007497,0.249888,0,0);}
.md9_c00391{transform:matrix(0.473847,-0.011846,0.006248,0.249922,0,0);-ms-transform:matrix(0.473847,-0.011846,0.006248,0.249922,0,0);-webkit-transform:matrix(0.473847,-0.011846,0.006248,0.249922,0,0);}
.m44_c00391{transform:matrix(0.474787,-0.012819,0.006748,0.249909,0,0);-ms-transform:matrix(0.474787,-0.012819,0.006748,0.249909,0,0);-webkit-transform:matrix(0.474787,-0.012819,0.006748,0.249909,0,0);}
.m77_c00391{transform:matrix(0.478313,-0.016279,0.008504,0.249855,0,0);-ms-transform:matrix(0.478313,-0.016279,0.008504,0.249855,0,0);-webkit-transform:matrix(0.478313,-0.016279,0.008504,0.249855,0,0);}
.m10_c00391{transform:matrix(0.484275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484275,0.000000,0.000000,0.250000,0,0);}
.mc9_c00391{transform:matrix(0.489892,-0.017654,0.009003,0.249838,0,0);-ms-transform:matrix(0.489892,-0.017654,0.009003,0.249838,0,0);-webkit-transform:matrix(0.489892,-0.017654,0.009003,0.249838,0,0);}
.m57_c00391{transform:matrix(0.491179,-0.014735,0.007497,0.249888,0,0);-ms-transform:matrix(0.491179,-0.014735,0.007497,0.249888,0,0);-webkit-transform:matrix(0.491179,-0.014735,0.007497,0.249888,0,0);}
.m3f_c00391{transform:matrix(0.499168,-0.013478,0.006748,0.249909,0,0);-ms-transform:matrix(0.499168,-0.013478,0.006748,0.249909,0,0);-webkit-transform:matrix(0.499168,-0.013478,0.006748,0.249909,0,0);}
.mb1_c00391{transform:matrix(0.506879,-0.017759,0.008753,0.249847,0,0);-ms-transform:matrix(0.506879,-0.017759,0.008753,0.249847,0,0);-webkit-transform:matrix(0.506879,-0.017759,0.008753,0.249847,0,0);}
.mbe_c00391{transform:matrix(0.507852,-0.015236,0.007497,0.249888,0,0);-ms-transform:matrix(0.507852,-0.015236,0.007497,0.249888,0,0);-webkit-transform:matrix(0.507852,-0.015236,0.007497,0.249888,0,0);}
.mc8_c00391{transform:matrix(0.512487,-0.018468,0.009003,0.249838,0,0);-ms-transform:matrix(0.512487,-0.018468,0.009003,0.249838,0,0);-webkit-transform:matrix(0.512487,-0.018468,0.009003,0.249838,0,0);}
.m7a_c00391{transform:matrix(0.517960,-0.017628,0.008504,0.249855,0,0);-ms-transform:matrix(0.517960,-0.017628,0.008504,0.249855,0,0);-webkit-transform:matrix(0.517960,-0.017628,0.008504,0.249855,0,0);}
.m96_c00391{transform:matrix(0.521308,-0.016699,0.008004,0.249872,0,0);-ms-transform:matrix(0.521308,-0.016699,0.008004,0.249872,0,0);-webkit-transform:matrix(0.521308,-0.016699,0.008004,0.249872,0,0);}
.m90_c00391{transform:matrix(0.525490,-0.016833,0.008004,0.249872,0,0);-ms-transform:matrix(0.525490,-0.016833,0.008004,0.249872,0,0);-webkit-transform:matrix(0.525490,-0.016833,0.008004,0.249872,0,0);}
.mb9_c00391{transform:matrix(0.539803,-0.014575,0.006748,0.249909,0,0);-ms-transform:matrix(0.539803,-0.014575,0.006748,0.249909,0,0);-webkit-transform:matrix(0.539803,-0.014575,0.006748,0.249909,0,0);}
.m9d_c00391{transform:matrix(0.558264,-0.017882,0.008004,0.249872,0,0);-ms-transform:matrix(0.558264,-0.017882,0.008004,0.249872,0,0);-webkit-transform:matrix(0.558264,-0.017882,0.008004,0.249872,0,0);}
.mc6_c00391{transform:matrix(0.559532,-0.020163,0.009003,0.249838,0,0);-ms-transform:matrix(0.559532,-0.020163,0.009003,0.249838,0,0);-webkit-transform:matrix(0.559532,-0.020163,0.009003,0.249838,0,0);}
.me2_c00391{transform:matrix(0.560720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560720,0.000000,0.000000,0.250000,0,0);}
.m91_c00391{transform:matrix(0.629757,-0.020172,0.008004,0.249872,0,0);-ms-transform:matrix(0.629757,-0.020172,0.008004,0.249872,0,0);-webkit-transform:matrix(0.629757,-0.020172,0.008004,0.249872,0,0);}
.mba_c00391{transform:matrix(0.645850,-0.017438,0.006748,0.249909,0,0);-ms-transform:matrix(0.645850,-0.017438,0.006748,0.249909,0,0);-webkit-transform:matrix(0.645850,-0.017438,0.006748,0.249909,0,0);}
.me0_c00391{transform:matrix(0.699232,-0.017481,0.006248,0.249922,0,0);-ms-transform:matrix(0.699232,-0.017481,0.006248,0.249922,0,0);-webkit-transform:matrix(0.699232,-0.017481,0.006248,0.249922,0,0);}
.m2f_c00391{transform:matrix(0.740880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.740880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.740880,0.000000,0.000000,0.250000,0,0);}
.m1c_c00391{transform:matrix(0.786084,-0.020438,0.006498,0.249916,0,0);-ms-transform:matrix(0.786084,-0.020438,0.006498,0.249916,0,0);-webkit-transform:matrix(0.786084,-0.020438,0.006498,0.249916,0,0);}
.mb3_c00391{transform:matrix(0.937230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.937230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.937230,0.000000,0.000000,0.250000,0,0);}
.mdc_c00391{transform:matrix(0.967518,-0.024188,0.006248,0.249922,0,0);-ms-transform:matrix(0.967518,-0.024188,0.006248,0.249922,0,0);-webkit-transform:matrix(0.967518,-0.024188,0.006248,0.249922,0,0);}
.m81_c00391{transform:matrix(1.034714,-0.033144,0.008004,0.249872,0,0);-ms-transform:matrix(1.034714,-0.033144,0.008004,0.249872,0,0);-webkit-transform:matrix(1.034714,-0.033144,0.008004,0.249872,0,0);}
.m5e_c00391{transform:matrix(1.044915,-0.056482,0.013494,0.249636,0,0);-ms-transform:matrix(1.044915,-0.056482,0.013494,0.249636,0,0);-webkit-transform:matrix(1.044915,-0.056482,0.013494,0.249636,0,0);}
.m76_c00391{transform:matrix(1.046854,-0.035629,0.008504,0.249855,0,0);-ms-transform:matrix(1.046854,-0.035629,0.008504,0.249855,0,0);-webkit-transform:matrix(1.046854,-0.035629,0.008504,0.249855,0,0);}
.mcf_c00391{transform:matrix(1.124500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.124500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.124500,0.000000,0.000000,0.250000,0,0);}
.md_c00391{transform:matrix(1.333255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.333255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.333255,0.000000,0.000000,0.250000,0,0);}
.ma1_c00391{transform:matrix(1.476348,-0.047290,0.008004,0.249872,0,0);-ms-transform:matrix(1.476348,-0.047290,0.008004,0.249872,0,0);-webkit-transform:matrix(1.476348,-0.047290,0.008004,0.249872,0,0);}
.m6_c00391{transform:matrix(1.498450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.498450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.498450,0.000000,0.000000,0.250000,0,0);}
.ma4_c00391{transform:matrix(1.913788,-0.051672,0.006748,0.249909,0,0);-ms-transform:matrix(1.913788,-0.051672,0.006748,0.249909,0,0);-webkit-transform:matrix(1.913788,-0.051672,0.006748,0.249909,0,0);}
.m7_c00391{transform:matrix(2.735995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.735995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.735995,0.000000,0.000000,0.250000,0,0);}
.mb_c00391{transform:matrix(3.166370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.166370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.166370,0.000000,0.000000,0.250000,0,0);}
.v0_c00391{vertical-align:0.000000px;}
.ls0_c00391{letter-spacing:0.000000px;}
.sc__c00391{text-shadow:none;}
.sc0_c00391{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__c00391{-webkit-text-stroke:0px transparent;}
.sc0_c00391{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00391{word-spacing:0.000000px;}
.fc0_c00391{color:transparent;}
.fs9_c00391{font-size:12.000000px;}
.fs3_c00391{font-size:18.000000px;}
.fs15_c00391{font-size:23.989882px;}
.fs2_c00391{font-size:24.000000px;}
.fs1_c00391{font-size:30.000000px;}
.fs4_c00391{font-size:36.000000px;}
.fsc_c00391{font-size:36.013120px;}
.fs6_c00391{font-size:42.000000px;}
.fs7_c00391{font-size:48.000000px;}
.fs1c_c00391{font-size:60.021866px;}
.fs1a_c00391{font-size:65.974453px;}
.fsb_c00391{font-size:66.024053px;}
.fs10_c00391{font-size:66.030254px;}
.fs8_c00391{font-size:71.964891px;}
.fs1e_c00391{font-size:71.974688px;}
.fs16_c00391{font-size:71.997732px;}
.fs1b_c00391{font-size:72.000000px;}
.fs19_c00391{font-size:72.026239px;}
.fsf_c00391{font-size:72.033004px;}
.fs11_c00391{font-size:77.967116px;}
.fs5_c00391{font-size:78.026360px;}
.fs1d_c00391{font-size:78.035092px;}
.fsa_c00391{font-size:83.959040px;}
.fse_c00391{font-size:84.037791px;}
.fs12_c00391{font-size:89.962057px;}
.fs1f_c00391{font-size:90.028121px;}
.fsd_c00391{font-size:90.040491px;}
.fs17_c00391{font-size:95.996976px;}
.fs14_c00391{font-size:96.014639px;}
.fs18_c00391{font-size:101.950263px;}
.fs13_c00391{font-size:114.017384px;}
.fs0_c00391{font-size:119.985899px;}
.y0_c00391{bottom:0.000000px;}
.ye1_c00391{bottom:529.951500px;}
.ydb_c00391{bottom:532.719000px;}
.ydc_c00391{bottom:533.140725px;}
.ydd_c00391{bottom:535.894725px;}
.yde_c00391{bottom:538.837988px;}
.ydf_c00391{bottom:539.834663px;}
.ye0_c00391{bottom:540.545400px;}
.yd0_c00391{bottom:557.550000px;}
.ycf_c00391{bottom:559.980000px;}
.yd1_c00391{bottom:567.436500px;}
.yd2_c00391{bottom:568.346775px;}
.yd3_c00391{bottom:569.421900px;}
.yd4_c00391{bottom:571.087275px;}
.yd5_c00391{bottom:571.952700px;}
.yd6_c00391{bottom:573.008400px;}
.yd7_c00391{bottom:575.228287px;}
.yd8_c00391{bottom:576.341362px;}
.yd9_c00391{bottom:577.891537px;}
.yda_c00391{bottom:580.688212px;}
.yc4_c00391{bottom:601.690500px;}
.yc5_c00391{bottom:603.999540px;}
.yc6_c00391{bottom:605.971782px;}
.yc7_c00391{bottom:607.298184px;}
.yc8_c00391{bottom:610.531110px;}
.yc9_c00391{bottom:611.672184px;}
.yca_c00391{bottom:613.091790px;}
.ycb_c00391{bottom:614.739276px;}
.ycc_c00391{bottom:616.310190px;}
.ycd_c00391{bottom:619.198920px;}
.yce_c00391{bottom:619.904970px;}
.ybd_c00391{bottom:635.170500px;}
.ybe_c00391{bottom:637.537140px;}
.ybf_c00391{bottom:638.415180px;}
.yc0_c00391{bottom:641.489940px;}
.yc1_c00391{bottom:642.838455px;}
.yc2_c00391{bottom:644.606370px;}
.yc3_c00391{bottom:647.313075px;}
.ya0_c00391{bottom:648.087561px;}
.ya1_c00391{bottom:650.684253px;}
.ya2_c00391{bottom:662.361268px;}
.ya3_c00391{bottom:665.229289px;}
.y8f_c00391{bottom:667.764007px;}
.y90_c00391{bottom:668.292595px;}
.y91_c00391{bottom:670.792893px;}
.y92_c00391{bottom:672.950044px;}
.y93_c00391{bottom:674.883792px;}
.y94_c00391{bottom:676.045377px;}
.y95_c00391{bottom:679.511929px;}
.y96_c00391{bottom:680.517730px;}
.y97_c00391{bottom:681.660815px;}
.y98_c00391{bottom:685.850277px;}
.y99_c00391{bottom:687.012534px;}
.y9a_c00391{bottom:689.200869px;}
.y9b_c00391{bottom:690.054822px;}
.y80_c00391{bottom:692.028981px;}
.y9c_c00391{bottom:692.659971px;}
.y9d_c00391{bottom:693.812281px;}
.y9e_c00391{bottom:696.180000px;}
.y9f_c00391{bottom:699.095719px;}
.y81_c00391{bottom:704.104500px;}
.y82_c00391{bottom:706.717332px;}
.y83_c00391{bottom:709.270068px;}
.y84_c00391{bottom:710.407812px;}
.y85_c00391{bottom:711.372516px;}
.y86_c00391{bottom:712.121748px;}
.y87_c00391{bottom:713.865588px;}
.y88_c00391{bottom:715.660884px;}
.y89_c00391{bottom:717.108612px;}
.y8a_c00391{bottom:718.001508px;}
.y8b_c00391{bottom:719.896308px;}
.y8c_c00391{bottom:720.971796px;}
.y8d_c00391{bottom:722.011428px;}
.y8e_c00391{bottom:723.082932px;}
.y7e_c00391{bottom:725.525607px;}
.y7f_c00391{bottom:729.361145px;}
.y7b_c00391{bottom:741.537000px;}
.y7c_c00391{bottom:744.579666px;}
.y7d_c00391{bottom:746.700180px;}
.yb4_c00391{bottom:747.108000px;}
.yb5_c00391{bottom:747.844816px;}
.yb6_c00391{bottom:749.468543px;}
.yb7_c00391{bottom:750.023960px;}
.y76_c00391{bottom:751.233000px;}
.yb8_c00391{bottom:751.518450px;}
.y77_c00391{bottom:752.284671px;}
.yb9_c00391{bottom:752.429579px;}
.y78_c00391{bottom:753.019887px;}
.yba_c00391{bottom:753.336738px;}
.y79_c00391{bottom:753.388413px;}
.y7a_c00391{bottom:753.637395px;}
.ybb_c00391{bottom:755.175519px;}
.y71_c00391{bottom:755.541021px;}
.ybc_c00391{bottom:756.051007px;}
.y72_c00391{bottom:759.080928px;}
.y73_c00391{bottom:760.734390px;}
.y74_c00391{bottom:766.385877px;}
.y75_c00391{bottom:769.093545px;}
.yb3_c00391{bottom:776.271000px;}
.yab_c00391{bottom:778.158000px;}
.yac_c00391{bottom:779.280188px;}
.yad_c00391{bottom:780.234323px;}
.yae_c00391{bottom:783.458085px;}
.yaf_c00391{bottom:784.721970px;}
.yb0_c00391{bottom:787.520430px;}
.yb1_c00391{bottom:790.045995px;}
.y6d_c00391{bottom:790.828500px;}
.yb2_c00391{bottom:791.352983px;}
.y6e_c00391{bottom:792.849180px;}
.y6f_c00391{bottom:794.394300px;}
.y70_c00391{bottom:799.645764px;}
.ya4_c00391{bottom:815.952000px;}
.ya5_c00391{bottom:819.232095px;}
.ya6_c00391{bottom:820.908592px;}
.ya7_c00391{bottom:822.161217px;}
.ya8_c00391{bottom:822.817884px;}
.ya9_c00391{bottom:824.203875px;}
.yaa_c00391{bottom:825.407454px;}
.y67_c00391{bottom:826.225697px;}
.y68_c00391{bottom:829.161736px;}
.y69_c00391{bottom:830.799339px;}
.y6a_c00391{bottom:831.726360px;}
.y6b_c00391{bottom:835.775782px;}
.y6c_c00391{bottom:836.866470px;}
.y60_c00391{bottom:850.066500px;}
.y61_c00391{bottom:853.353042px;}
.y62_c00391{bottom:854.432916px;}
.y63_c00391{bottom:857.117250px;}
.y64_c00391{bottom:858.763224px;}
.y65_c00391{bottom:861.229635px;}
.y66_c00391{bottom:862.022889px;}
.y5c_c00391{bottom:863.658464px;}
.y5d_c00391{bottom:868.845299px;}
.y5e_c00391{bottom:870.744141px;}
.y5f_c00391{bottom:876.044781px;}
.y59_c00391{bottom:882.589500px;}
.y5a_c00391{bottom:889.306263px;}
.y5b_c00391{bottom:891.262656px;}
.y51_c00391{bottom:893.134065px;}
.y52_c00391{bottom:894.775290px;}
.y53_c00391{bottom:895.866255px;}
.y54_c00391{bottom:898.609260px;}
.y55_c00391{bottom:902.135565px;}
.y56_c00391{bottom:904.829190px;}
.y57_c00391{bottom:905.676855px;}
.y58_c00391{bottom:908.001810px;}
.y4b_c00391{bottom:919.945500px;}
.y4c_c00391{bottom:922.180110px;}
.y4d_c00391{bottom:923.073135px;}
.y4e_c00391{bottom:923.161695px;}
.y4f_c00391{bottom:924.947250px;}
.y3e_c00391{bottom:929.577000px;}
.y3f_c00391{bottom:930.156434px;}
.y40_c00391{bottom:931.334417px;}
.y4a_c00391{bottom:931.941824px;}
.y49_c00391{bottom:931.942337px;}
.y41_c00391{bottom:932.226024px;}
.y42_c00391{bottom:933.274407px;}
.y43_c00391{bottom:934.346240px;}
.y44_c00391{bottom:934.916601px;}
.y45_c00391{bottom:936.222604px;}
.y46_c00391{bottom:937.884522px;}
.y50_c00391{bottom:938.850495px;}
.y47_c00391{bottom:939.120015px;}
.y48_c00391{bottom:942.871247px;}
.y30_c00391{bottom:959.325000px;}
.y31_c00391{bottom:961.425672px;}
.y32_c00391{bottom:962.445480px;}
.y33_c00391{bottom:964.249224px;}
.y34_c00391{bottom:964.997976px;}
.y35_c00391{bottom:968.805144px;}
.y36_c00391{bottom:970.278648px;}
.y37_c00391{bottom:972.015576px;}
.y38_c00391{bottom:974.880360px;}
.y39_c00391{bottom:975.918024px;}
.y3a_c00391{bottom:976.993464px;}
.y3b_c00391{bottom:977.657784px;}
.y3c_c00391{bottom:979.382952px;}
.y3d_c00391{bottom:981.907368px;}
.y21_c00391{bottom:993.612000px;}
.y22_c00391{bottom:995.654976px;}
.y23_c00391{bottom:996.727728px;}
.y24_c00391{bottom:997.782672px;}
.y25_c00391{bottom:998.834016px;}
.y2f_c00391{bottom:999.810000px;}
.y26_c00391{bottom:999.862224px;}
.y27_c00391{bottom:1000.238544px;}
.y28_c00391{bottom:1002.043920px;}
.y29_c00391{bottom:1003.073424px;}
.y2a_c00391{bottom:1005.783600px;}
.y2b_c00391{bottom:1007.313456px;}
.y2c_c00391{bottom:1008.496176px;}
.y2d_c00391{bottom:1011.465696px;}
.y2e_c00391{bottom:1012.508304px;}
.y1f_c00391{bottom:1028.980500px;}
.y14_c00391{bottom:1033.836000px;}
.y15_c00391{bottom:1034.724420px;}
.y16_c00391{bottom:1035.840054px;}
.y1e_c00391{bottom:1035.979500px;}
.y17_c00391{bottom:1037.609601px;}
.y18_c00391{bottom:1040.208015px;}
.y19_c00391{bottom:1040.669814px;}
.y1a_c00391{bottom:1041.147213px;}
.y1b_c00391{bottom:1043.642004px;}
.y1c_c00391{bottom:1044.188199px;}
.y1d_c00391{bottom:1046.745897px;}
.y20_c00391{bottom:1048.770000px;}
.y13_c00391{bottom:1068.040500px;}
.y12_c00391{bottom:1109.970000px;}
.y6_c00391{bottom:1112.404500px;}
.ya_c00391{bottom:1117.801500px;}
.yb_c00391{bottom:1118.271000px;}
.yc_c00391{bottom:1118.758500px;}
.y5_c00391{bottom:1119.690000px;}
.yd_c00391{bottom:1120.764000px;}
.y7_c00391{bottom:1121.151000px;}
.ye_c00391{bottom:1121.310000px;}
.yf_c00391{bottom:1121.992500px;}
.y10_c00391{bottom:1122.381000px;}
.y11_c00391{bottom:1122.696000px;}
.y8_c00391{bottom:1122.922500px;}
.y9_c00391{bottom:1126.270500px;}
.y1_c00391{bottom:1129.729500px;}
.y2_c00391{bottom:1134.969525px;}
.y3_c00391{bottom:1135.218879px;}
.y4_c00391{bottom:1138.347963px;}
.hb_c00391{height:12.000000px;}
.h5_c00391{height:18.000000px;}
.h17_c00391{height:23.989882px;}
.h4_c00391{height:24.000000px;}
.h3_c00391{height:30.000000px;}
.h6_c00391{height:36.000000px;}
.he_c00391{height:36.013120px;}
.h8_c00391{height:42.000000px;}
.h9_c00391{height:48.000000px;}
.h1e_c00391{height:60.021866px;}
.h1c_c00391{height:65.974453px;}
.hd_c00391{height:66.024053px;}
.h12_c00391{height:66.030254px;}
.ha_c00391{height:71.964891px;}
.h20_c00391{height:71.974688px;}
.h18_c00391{height:71.997732px;}
.h1d_c00391{height:72.000000px;}
.h1b_c00391{height:72.026239px;}
.h11_c00391{height:72.033004px;}
.h13_c00391{height:77.967116px;}
.h7_c00391{height:78.026360px;}
.h1f_c00391{height:78.035092px;}
.hc_c00391{height:83.959040px;}
.h10_c00391{height:84.037791px;}
.h14_c00391{height:89.962057px;}
.h21_c00391{height:90.028121px;}
.hf_c00391{height:90.040491px;}
.h19_c00391{height:95.996976px;}
.h16_c00391{height:96.014639px;}
.h1a_c00391{height:101.950263px;}
.h15_c00391{height:114.017384px;}
.h2_c00391{height:119.985899px;}
.h1_c00391{height:1251.000000px;}
.h0_c00391{height:1251.150000px;}
.w0_c00391{width:915.000000px;}
.x0_c00391{left:0.000000px;}
.x6e_c00391{left:31.518000px;}
.x8b_c00391{left:38.514000px;}
.x4e_c00391{left:39.924000px;}
.x43_c00391{left:43.708500px;}
.x97_c00391{left:48.330000px;}
.x79_c00391{left:50.372003px;}
.x6a_c00391{left:63.021000px;}
.x7a_c00391{left:64.251419px;}
.x1d_c00391{left:67.035000px;}
.x1f_c00391{left:73.803000px;}
.x53_c00391{left:80.482500px;}
.x1b_c00391{left:81.540000px;}
.x1c_c00391{left:104.220000px;}
.x6f_c00391{left:113.087349px;}
.x2a_c00391{left:118.186500px;}
.xaf_c00391{left:121.770000px;}
.x12_c00391{left:123.864000px;}
.x7b_c00391{left:129.991476px;}
.x6b_c00391{left:132.103348px;}
.x20_c00391{left:137.582157px;}
.x9c_c00391{left:141.948000px;}
.x91_c00391{left:144.599438px;}
.x44_c00391{left:147.963000px;}
.x45_c00391{left:150.915000px;}
.x13_c00391{left:158.034000px;}
.x8c_c00391{left:159.999000px;}
.x4f_c00391{left:164.184116px;}
.x21_c00391{left:171.072134px;}
.xa7_c00391{left:174.492000px;}
.x54_c00391{left:177.048837px;}
.x6c_c00391{left:180.248655px;}
.x2b_c00391{left:183.766854px;}
.x7c_c00391{left:186.704799px;}
.xac_c00391{left:187.717500px;}
.x70_c00391{left:192.780576px;}
.x14_c00391{left:200.943000px;}
.x22_c00391{left:204.006167px;}
.x55_c00391{left:208.778076px;}
.x46_c00391{left:210.433500px;}
.x2c_c00391{left:215.603985px;}
.xa8_c00391{left:217.497000px;}
.x98_c00391{left:219.637500px;}
.x8d_c00391{left:222.091500px;}
.x71_c00391{left:228.299521px;}
.x23_c00391{left:236.827812px;}
.x48_c00391{left:241.875810px;}
.x72_c00391{left:258.416374px;}
.x92_c00391{left:263.848569px;}
.x15_c00391{left:269.002500px;}
.xa0_c00391{left:270.229076px;}
.x2d_c00391{left:271.914618px;}
.x37_c00391{left:273.532500px;}
.x24_c00391{left:280.675420px;}
.x1_c00391{left:282.415500px;}
.xa6_c00391{left:283.770000px;}
.x56_c00391{left:287.650125px;}
.x5_c00391{left:291.694500px;}
.x8e_c00391{left:292.806000px;}
.x38_c00391{left:294.993000px;}
.x8_c00391{left:296.236500px;}
.x93_c00391{left:299.923458px;}
.xa1_c00391{left:307.036731px;}
.x9_c00391{left:312.447000px;}
.xad_c00391{left:314.746500px;}
.x9d_c00391{left:318.658500px;}
.xa_c00391{left:329.251500px;}
.x57_c00391{left:336.012714px;}
.x25_c00391{left:337.037002px;}
.x39_c00391{left:338.622000px;}
.x8f_c00391{left:344.139000px;}
.x6_c00391{left:350.752500px;}
.x11_c00391{left:351.810000px;}
.x99_c00391{left:355.698000px;}
.x7d_c00391{left:359.246432px;}
.xa9_c00391{left:360.957000px;}
.x16_c00391{left:368.941500px;}
.x3a_c00391{left:371.644500px;}
.x9e_c00391{left:377.589000px;}
.x94_c00391{left:379.799502px;}
.x7e_c00391{left:385.682376px;}
.x17_c00391{left:386.703000px;}
.x90_c00391{left:388.716000px;}
.x73_c00391{left:392.293863px;}
.xa2_c00391{left:396.750428px;}
.xb_c00391{left:398.431500px;}
.x10_c00391{left:404.730000px;}
.x2_c00391{left:407.053237px;}
.x58_c00391{left:408.481672px;}
.x3b_c00391{left:410.473500px;}
.x3_c00391{left:412.984300px;}
.x2e_c00391{left:414.144745px;}
.x7f_c00391{left:415.748514px;}
.xc_c00391{left:417.237000px;}
.x49_c00391{left:418.527045px;}
.x9a_c00391{left:423.042000px;}
.xa3_c00391{left:428.415231px;}
.x59_c00391{left:431.789341px;}
.x74_c00391{left:437.490121px;}
.xd_c00391{left:440.785500px;}
.x5a_c00391{left:446.245745px;}
.x3c_c00391{left:450.171000px;}
.x95_c00391{left:451.886343px;}
.xe_c00391{left:454.195500px;}
.x2f_c00391{left:460.145698px;}
.x7_c00391{left:462.334500px;}
.xf_c00391{left:465.064500px;}
.x9f_c00391{left:467.812500px;}
.x3d_c00391{left:471.295500px;}
.xae_c00391{left:472.344000px;}
.x4_c00391{left:487.411798px;}
.x96_c00391{left:489.191501px;}
.x9b_c00391{left:491.145000px;}
.xaa_c00391{left:494.275500px;}
.x18_c00391{left:501.018000px;}
.x30_c00391{left:514.370420px;}
.x87_c00391{left:516.964940px;}
.x3e_c00391{left:519.666000px;}
.x19_c00391{left:522.025500px;}
.x75_c00391{left:524.518506px;}
.x80_c00391{left:525.886577px;}
.x5b_c00391{left:530.045003px;}
.x4a_c00391{left:532.267125px;}
.x26_c00391{left:538.468369px;}
.x81_c00391{left:556.457613px;}
.x76_c00391{left:558.093897px;}
.x88_c00391{left:572.180646px;}
.x5f_c00391{left:573.884902px;}
.x5c_c00391{left:576.795123px;}
.x3f_c00391{left:581.218500px;}
.x77_c00391{left:590.549908px;}
.x61_c00391{left:600.055426px;}
.x31_c00391{left:603.805395px;}
.x50_c00391{left:606.213590px;}
.x82_c00391{left:614.003958px;}
.x4b_c00391{left:619.152015px;}
.x1a_c00391{left:620.398500px;}
.x78_c00391{left:624.000924px;}
.x40_c00391{left:626.977500px;}
.x27_c00391{left:631.173072px;}
.x62_c00391{left:633.092685px;}
.x32_c00391{left:636.199968px;}
.xa4_c00391{left:637.282155px;}
.x51_c00391{left:644.928795px;}
.x4c_c00391{left:646.506705px;}
.xa5_c00391{left:656.875043px;}
.x28_c00391{left:663.721991px;}
.xab_c00391{left:668.149500px;}
.x33_c00391{left:669.773860px;}
.x47_c00391{left:673.875000px;}
.x65_c00391{left:677.413500px;}
.x29_c00391{left:682.290000px;}
.x1e_c00391{left:685.449000px;}
.x34_c00391{left:690.513100px;}
.x83_c00391{left:704.946934px;}
.x66_c00391{left:708.314069px;}
.x60_c00391{left:715.338807px;}
.x5d_c00391{left:718.827099px;}
.x4d_c00391{left:721.502955px;}
.x67_c00391{left:729.916445px;}
.x84_c00391{left:735.254283px;}
.x68_c00391{left:740.744606px;}
.x42_c00391{left:741.859344px;}
.x35_c00391{left:744.370689px;}
.x63_c00391{left:746.025329px;}
.x69_c00391{left:748.060283px;}
.x5e_c00391{left:749.948374px;}
.x52_c00391{left:752.999805px;}
.x6d_c00391{left:757.599351px;}
.x41_c00391{left:765.912000px;}
.x85_c00391{left:797.511000px;}
.x64_c00391{left:800.127982px;}
.x89_c00391{left:820.445330px;}
.x36_c00391{left:823.179801px;}
.x86_c00391{left:874.159524px;}
.x8a_c00391{left:881.415489px;}
@media print{
.v0_c00391{vertical-align:0.000000pt;}
.ls0_c00391{letter-spacing:0.000000pt;}
.ws0_c00391{word-spacing:0.000000pt;}
.fs9_c00391{font-size:10.666667pt;}
.fs3_c00391{font-size:16.000000pt;}
.fs15_c00391{font-size:21.324339pt;}
.fs2_c00391{font-size:21.333333pt;}
.fs1_c00391{font-size:26.666667pt;}
.fs4_c00391{font-size:32.000000pt;}
.fsc_c00391{font-size:32.011662pt;}
.fs6_c00391{font-size:37.333333pt;}
.fs7_c00391{font-size:42.666667pt;}
.fs1c_c00391{font-size:53.352770pt;}
.fs1a_c00391{font-size:58.643958pt;}
.fsb_c00391{font-size:58.688047pt;}
.fs10_c00391{font-size:58.693559pt;}
.fs8_c00391{font-size:63.968792pt;}
.fs1e_c00391{font-size:63.977500pt;}
.fs16_c00391{font-size:63.997984pt;}
.fs1b_c00391{font-size:64.000000pt;}
.fs19_c00391{font-size:64.023324pt;}
.fsf_c00391{font-size:64.029337pt;}
.fs11_c00391{font-size:69.304103pt;}
.fs5_c00391{font-size:69.356764pt;}
.fs1d_c00391{font-size:69.364526pt;}
.fsa_c00391{font-size:74.630258pt;}
.fse_c00391{font-size:74.700259pt;}
.fs12_c00391{font-size:79.966273pt;}
.fs1f_c00391{font-size:80.024996pt;}
.fsd_c00391{font-size:80.035992pt;}
.fs17_c00391{font-size:85.330645pt;}
.fs14_c00391{font-size:85.346346pt;}
.fs18_c00391{font-size:90.622456pt;}
.fs13_c00391{font-size:101.348785pt;}
.fs0_c00391{font-size:106.654133pt;}
.y0_c00391{bottom:0.000000pt;}
.ye1_c00391{bottom:471.068000pt;}
.ydb_c00391{bottom:473.528000pt;}
.ydc_c00391{bottom:473.902867pt;}
.ydd_c00391{bottom:476.350867pt;}
.yde_c00391{bottom:478.967100pt;}
.ydf_c00391{bottom:479.853033pt;}
.ye0_c00391{bottom:480.484800pt;}
.yd0_c00391{bottom:495.600000pt;}
.ycf_c00391{bottom:497.760000pt;}
.yd1_c00391{bottom:504.388000pt;}
.yd2_c00391{bottom:505.197133pt;}
.yd3_c00391{bottom:506.152800pt;}
.yd4_c00391{bottom:507.633133pt;}
.yd5_c00391{bottom:508.402400pt;}
.yd6_c00391{bottom:509.340800pt;}
.yd7_c00391{bottom:511.314033pt;}
.yd8_c00391{bottom:512.303433pt;}
.yd9_c00391{bottom:513.681367pt;}
.yda_c00391{bottom:516.167300pt;}
.yc4_c00391{bottom:534.836000pt;}
.yc5_c00391{bottom:536.888480pt;}
.yc6_c00391{bottom:538.641584pt;}
.yc7_c00391{bottom:539.820608pt;}
.yc8_c00391{bottom:542.694320pt;}
.yc9_c00391{bottom:543.708608pt;}
.yca_c00391{bottom:544.970480pt;}
.ycb_c00391{bottom:546.434912pt;}
.ycc_c00391{bottom:547.831280pt;}
.ycd_c00391{bottom:550.399040pt;}
.yce_c00391{bottom:551.026640pt;}
.ybd_c00391{bottom:564.596000pt;}
.ybe_c00391{bottom:566.699680pt;}
.ybf_c00391{bottom:567.480160pt;}
.yc0_c00391{bottom:570.213280pt;}
.yc1_c00391{bottom:571.411960pt;}
.yc2_c00391{bottom:572.983440pt;}
.yc3_c00391{bottom:575.389400pt;}
.ya0_c00391{bottom:576.077832pt;}
.ya1_c00391{bottom:578.386003pt;}
.ya2_c00391{bottom:588.765572pt;}
.ya3_c00391{bottom:591.314924pt;}
.y8f_c00391{bottom:593.568007pt;}
.y90_c00391{bottom:594.037863pt;}
.y91_c00391{bottom:596.260349pt;}
.y92_c00391{bottom:598.177817pt;}
.y93_c00391{bottom:599.896704pt;}
.y94_c00391{bottom:600.929224pt;}
.y95_c00391{bottom:604.010604pt;}
.y96_c00391{bottom:604.904649pt;}
.y97_c00391{bottom:605.920724pt;}
.y98_c00391{bottom:609.644691pt;}
.y99_c00391{bottom:610.677808pt;}
.y9a_c00391{bottom:612.622995pt;}
.y9b_c00391{bottom:613.382064pt;}
.y80_c00391{bottom:615.136872pt;}
.y9c_c00391{bottom:615.697752pt;}
.y9d_c00391{bottom:616.722028pt;}
.y9e_c00391{bottom:618.826667pt;}
.y9f_c00391{bottom:621.418417pt;}
.y81_c00391{bottom:625.870667pt;}
.y82_c00391{bottom:628.193184pt;}
.y83_c00391{bottom:630.462283pt;}
.y84_c00391{bottom:631.473611pt;}
.y85_c00391{bottom:632.331125pt;}
.y86_c00391{bottom:632.997109pt;}
.y87_c00391{bottom:634.547189pt;}
.y88_c00391{bottom:636.143008pt;}
.y89_c00391{bottom:637.429877pt;}
.y8a_c00391{bottom:638.223563pt;}
.y8b_c00391{bottom:639.907829pt;}
.y8c_c00391{bottom:640.863819pt;}
.y8d_c00391{bottom:641.787936pt;}
.y8e_c00391{bottom:642.740384pt;}
.y7e_c00391{bottom:644.911651pt;}
.y7f_c00391{bottom:648.321017pt;}
.y7b_c00391{bottom:659.144000pt;}
.y7c_c00391{bottom:661.848592pt;}
.y7d_c00391{bottom:663.733493pt;}
.yb4_c00391{bottom:664.096000pt;}
.yb5_c00391{bottom:664.750948pt;}
.yb6_c00391{bottom:666.194260pt;}
.yb7_c00391{bottom:666.687964pt;}
.y76_c00391{bottom:667.762667pt;}
.yb8_c00391{bottom:668.016400pt;}
.y77_c00391{bottom:668.697485pt;}
.yb9_c00391{bottom:668.826292pt;}
.y78_c00391{bottom:669.351011pt;}
.yba_c00391{bottom:669.632656pt;}
.y79_c00391{bottom:669.678589pt;}
.y7a_c00391{bottom:669.899907pt;}
.ybb_c00391{bottom:671.267128pt;}
.y71_c00391{bottom:671.592019pt;}
.ybc_c00391{bottom:672.045340pt;}
.y72_c00391{bottom:674.738603pt;}
.y73_c00391{bottom:676.208347pt;}
.y74_c00391{bottom:681.231891pt;}
.y75_c00391{bottom:683.638707pt;}
.yb3_c00391{bottom:690.018667pt;}
.yab_c00391{bottom:691.696000pt;}
.yac_c00391{bottom:692.693500pt;}
.yad_c00391{bottom:693.541620pt;}
.yae_c00391{bottom:696.407187pt;}
.yaf_c00391{bottom:697.530640pt;}
.yb0_c00391{bottom:700.018160pt;}
.yb1_c00391{bottom:702.263107pt;}
.y6d_c00391{bottom:702.958667pt;}
.yb2_c00391{bottom:703.424873pt;}
.y6e_c00391{bottom:704.754827pt;}
.y6f_c00391{bottom:706.128267pt;}
.y70_c00391{bottom:710.796235pt;}
.ya4_c00391{bottom:725.290667pt;}
.ya5_c00391{bottom:728.206307pt;}
.ya6_c00391{bottom:729.696527pt;}
.ya7_c00391{bottom:730.809971pt;}
.ya8_c00391{bottom:731.393675pt;}
.ya9_c00391{bottom:732.625667pt;}
.yaa_c00391{bottom:733.695515pt;}
.y67_c00391{bottom:734.422841pt;}
.y68_c00391{bottom:737.032655pt;}
.y69_c00391{bottom:738.488301pt;}
.y6a_c00391{bottom:739.312320pt;}
.y6b_c00391{bottom:742.911807pt;}
.y6c_c00391{bottom:743.881307pt;}
.y60_c00391{bottom:755.614667pt;}
.y61_c00391{bottom:758.536037pt;}
.y62_c00391{bottom:759.495925pt;}
.y63_c00391{bottom:761.882000pt;}
.y64_c00391{bottom:763.345088pt;}
.y65_c00391{bottom:765.537453pt;}
.y66_c00391{bottom:766.242568pt;}
.y5c_c00391{bottom:767.696412pt;}
.y5d_c00391{bottom:772.306932pt;}
.y5e_c00391{bottom:773.994792pt;}
.y5f_c00391{bottom:778.706472pt;}
.y59_c00391{bottom:784.524000pt;}
.y5a_c00391{bottom:790.494456pt;}
.y5b_c00391{bottom:792.233472pt;}
.y51_c00391{bottom:793.896947pt;}
.y52_c00391{bottom:795.355813pt;}
.y53_c00391{bottom:796.325560pt;}
.y54_c00391{bottom:798.763787pt;}
.y55_c00391{bottom:801.898280pt;}
.y56_c00391{bottom:804.292613pt;}
.y57_c00391{bottom:805.046093pt;}
.y58_c00391{bottom:807.112720pt;}
.y4b_c00391{bottom:817.729333pt;}
.y4c_c00391{bottom:819.715653pt;}
.y4d_c00391{bottom:820.509453pt;}
.y4e_c00391{bottom:820.588173pt;}
.y4f_c00391{bottom:822.175333pt;}
.y3e_c00391{bottom:826.290667pt;}
.y3f_c00391{bottom:826.805719pt;}
.y40_c00391{bottom:827.852815pt;}
.y4a_c00391{bottom:828.392732pt;}
.y49_c00391{bottom:828.393188pt;}
.y41_c00391{bottom:828.645355pt;}
.y42_c00391{bottom:829.577251pt;}
.y43_c00391{bottom:830.529991pt;}
.y44_c00391{bottom:831.036979pt;}
.y45_c00391{bottom:832.197871pt;}
.y46_c00391{bottom:833.675131pt;}
.y50_c00391{bottom:834.533773pt;}
.y47_c00391{bottom:834.773347pt;}
.y48_c00391{bottom:838.107775pt;}
.y30_c00391{bottom:852.733333pt;}
.y31_c00391{bottom:854.600597pt;}
.y32_c00391{bottom:855.507093pt;}
.y33_c00391{bottom:857.110421pt;}
.y34_c00391{bottom:857.775979pt;}
.y35_c00391{bottom:861.160128pt;}
.y36_c00391{bottom:862.469909pt;}
.y37_c00391{bottom:864.013845pt;}
.y38_c00391{bottom:866.560320pt;}
.y39_c00391{bottom:867.482688pt;}
.y3a_c00391{bottom:868.438635pt;}
.y3b_c00391{bottom:869.029141pt;}
.y3c_c00391{bottom:870.562624pt;}
.y3d_c00391{bottom:872.806549pt;}
.y21_c00391{bottom:883.210667pt;}
.y22_c00391{bottom:885.026645pt;}
.y23_c00391{bottom:885.980203pt;}
.y24_c00391{bottom:886.917931pt;}
.y25_c00391{bottom:887.852459pt;}
.y2f_c00391{bottom:888.720000pt;}
.y26_c00391{bottom:888.766421pt;}
.y27_c00391{bottom:889.100928pt;}
.y28_c00391{bottom:890.705707pt;}
.y29_c00391{bottom:891.620821pt;}
.y2a_c00391{bottom:894.029867pt;}
.y2b_c00391{bottom:895.389739pt;}
.y2c_c00391{bottom:896.441045pt;}
.y2d_c00391{bottom:899.080619pt;}
.y2e_c00391{bottom:900.007381pt;}
.y1f_c00391{bottom:914.649333pt;}
.y14_c00391{bottom:918.965333pt;}
.y15_c00391{bottom:919.755040pt;}
.y16_c00391{bottom:920.746715pt;}
.y1e_c00391{bottom:920.870667pt;}
.y17_c00391{bottom:922.319645pt;}
.y18_c00391{bottom:924.629347pt;}
.y19_c00391{bottom:925.039835pt;}
.y1a_c00391{bottom:925.464189pt;}
.y1b_c00391{bottom:927.681781pt;}
.y1c_c00391{bottom:928.167288pt;}
.y1d_c00391{bottom:930.440797pt;}
.y20_c00391{bottom:932.240000pt;}
.y13_c00391{bottom:949.369333pt;}
.y12_c00391{bottom:986.640000pt;}
.y6_c00391{bottom:988.804000pt;}
.ya_c00391{bottom:993.601333pt;}
.yb_c00391{bottom:994.018667pt;}
.yc_c00391{bottom:994.452000pt;}
.y5_c00391{bottom:995.280000pt;}
.yd_c00391{bottom:996.234667pt;}
.y7_c00391{bottom:996.578667pt;}
.ye_c00391{bottom:996.720000pt;}
.yf_c00391{bottom:997.326667pt;}
.y10_c00391{bottom:997.672000pt;}
.y11_c00391{bottom:997.952000pt;}
.y8_c00391{bottom:998.153333pt;}
.y9_c00391{bottom:1001.129333pt;}
.y1_c00391{bottom:1004.204000pt;}
.y2_c00391{bottom:1008.861800pt;}
.y3_c00391{bottom:1009.083448pt;}
.y4_c00391{bottom:1011.864856pt;}
.hb_c00391{height:10.666667pt;}
.h5_c00391{height:16.000000pt;}
.h17_c00391{height:21.324339pt;}
.h4_c00391{height:21.333333pt;}
.h3_c00391{height:26.666667pt;}
.h6_c00391{height:32.000000pt;}
.he_c00391{height:32.011662pt;}
.h8_c00391{height:37.333333pt;}
.h9_c00391{height:42.666667pt;}
.h1e_c00391{height:53.352770pt;}
.h1c_c00391{height:58.643958pt;}
.hd_c00391{height:58.688047pt;}
.h12_c00391{height:58.693559pt;}
.ha_c00391{height:63.968792pt;}
.h20_c00391{height:63.977500pt;}
.h18_c00391{height:63.997984pt;}
.h1d_c00391{height:64.000000pt;}
.h1b_c00391{height:64.023324pt;}
.h11_c00391{height:64.029337pt;}
.h13_c00391{height:69.304103pt;}
.h7_c00391{height:69.356764pt;}
.h1f_c00391{height:69.364526pt;}
.hc_c00391{height:74.630258pt;}
.h10_c00391{height:74.700259pt;}
.h14_c00391{height:79.966273pt;}
.h21_c00391{height:80.024996pt;}
.hf_c00391{height:80.035992pt;}
.h19_c00391{height:85.330645pt;}
.h16_c00391{height:85.346346pt;}
.h1a_c00391{height:90.622456pt;}
.h15_c00391{height:101.348785pt;}
.h2_c00391{height:106.654133pt;}
.h1_c00391{height:1112.000000pt;}
.h0_c00391{height:1112.133333pt;}
.w0_c00391{width:813.333333pt;}
.x0_c00391{left:0.000000pt;}
.x6e_c00391{left:28.016000pt;}
.x8b_c00391{left:34.234667pt;}
.x4e_c00391{left:35.488000pt;}
.x43_c00391{left:38.852000pt;}
.x97_c00391{left:42.960000pt;}
.x79_c00391{left:44.775113pt;}
.x6a_c00391{left:56.018667pt;}
.x7a_c00391{left:57.112372pt;}
.x1d_c00391{left:59.586667pt;}
.x1f_c00391{left:65.602667pt;}
.x53_c00391{left:71.540000pt;}
.x1b_c00391{left:72.480000pt;}
.x1c_c00391{left:92.640000pt;}
.x6f_c00391{left:100.522088pt;}
.x2a_c00391{left:105.054667pt;}
.xaf_c00391{left:108.240000pt;}
.x12_c00391{left:110.101333pt;}
.x7b_c00391{left:115.547979pt;}
.x6b_c00391{left:117.425199pt;}
.x20_c00391{left:122.295251pt;}
.x9c_c00391{left:126.176000pt;}
.x91_c00391{left:128.532833pt;}
.x44_c00391{left:131.522667pt;}
.x45_c00391{left:134.146667pt;}
.x13_c00391{left:140.474667pt;}
.x8c_c00391{left:142.221333pt;}
.x4f_c00391{left:145.941436pt;}
.x21_c00391{left:152.064119pt;}
.xa7_c00391{left:155.104000pt;}
.x54_c00391{left:157.376744pt;}
.x6c_c00391{left:160.221027pt;}
.x2b_c00391{left:163.348315pt;}
.x7c_c00391{left:165.959821pt;}
.xac_c00391{left:166.860000pt;}
.x70_c00391{left:171.360512pt;}
.x14_c00391{left:178.616000pt;}
.x22_c00391{left:181.338815pt;}
.x55_c00391{left:185.580512pt;}
.x46_c00391{left:187.052000pt;}
.x2c_c00391{left:191.647987pt;}
.xa8_c00391{left:193.330667pt;}
.x98_c00391{left:195.233333pt;}
.x8d_c00391{left:197.414667pt;}
.x71_c00391{left:202.932908pt;}
.x23_c00391{left:210.513611pt;}
.x48_c00391{left:215.000720pt;}
.x72_c00391{left:229.703444pt;}
.x92_c00391{left:234.532061pt;}
.x15_c00391{left:239.113333pt;}
.xa0_c00391{left:240.203623pt;}
.x2d_c00391{left:241.701883pt;}
.x37_c00391{left:243.140000pt;}
.x24_c00391{left:249.489263pt;}
.x1_c00391{left:251.036000pt;}
.xa6_c00391{left:252.240000pt;}
.x56_c00391{left:255.689000pt;}
.x5_c00391{left:259.284000pt;}
.x8e_c00391{left:260.272000pt;}
.x38_c00391{left:262.216000pt;}
.x8_c00391{left:263.321333pt;}
.x93_c00391{left:266.598629pt;}
.xa1_c00391{left:272.921539pt;}
.x9_c00391{left:277.730667pt;}
.xad_c00391{left:279.774667pt;}
.x9d_c00391{left:283.252000pt;}
.xa_c00391{left:292.668000pt;}
.x57_c00391{left:298.677968pt;}
.x25_c00391{left:299.588447pt;}
.x39_c00391{left:300.997333pt;}
.x8f_c00391{left:305.901333pt;}
.x6_c00391{left:311.780000pt;}
.x11_c00391{left:312.720000pt;}
.x99_c00391{left:316.176000pt;}
.x7d_c00391{left:319.330161pt;}
.xa9_c00391{left:320.850667pt;}
.x16_c00391{left:327.948000pt;}
.x3a_c00391{left:330.350667pt;}
.x9e_c00391{left:335.634667pt;}
.x94_c00391{left:337.599557pt;}
.x7e_c00391{left:342.828779pt;}
.x17_c00391{left:343.736000pt;}
.x90_c00391{left:345.525333pt;}
.x73_c00391{left:348.705656pt;}
.xa2_c00391{left:352.667047pt;}
.xb_c00391{left:354.161333pt;}
.x10_c00391{left:359.760000pt;}
.x2_c00391{left:361.825100pt;}
.x58_c00391{left:363.094820pt;}
.x3b_c00391{left:364.865333pt;}
.x3_c00391{left:367.097156pt;}
.x2e_c00391{left:368.128663pt;}
.x7f_c00391{left:369.554235pt;}
.xc_c00391{left:370.877333pt;}
.x49_c00391{left:372.024040pt;}
.x9a_c00391{left:376.037333pt;}
.xa3_c00391{left:380.813539pt;}
.x59_c00391{left:383.812748pt;}
.x74_c00391{left:388.880108pt;}
.xd_c00391{left:391.809333pt;}
.x5a_c00391{left:396.662884pt;}
.x3c_c00391{left:400.152000pt;}
.x95_c00391{left:401.676749pt;}
.xe_c00391{left:403.729333pt;}
.x2f_c00391{left:409.018399pt;}
.x7_c00391{left:410.964000pt;}
.xf_c00391{left:413.390667pt;}
.x9f_c00391{left:415.833333pt;}
.x3d_c00391{left:418.929333pt;}
.xae_c00391{left:419.861333pt;}
.x4_c00391{left:433.254932pt;}
.x96_c00391{left:434.836889pt;}
.x9b_c00391{left:436.573333pt;}
.xaa_c00391{left:439.356000pt;}
.x18_c00391{left:445.349333pt;}
.x30_c00391{left:457.218151pt;}
.x87_c00391{left:459.524391pt;}
.x3e_c00391{left:461.925333pt;}
.x19_c00391{left:464.022667pt;}
.x75_c00391{left:466.238672pt;}
.x80_c00391{left:467.454735pt;}
.x5b_c00391{left:471.151113pt;}
.x4a_c00391{left:473.126333pt;}
.x26_c00391{left:478.638551pt;}
.x81_c00391{left:494.628989pt;}
.x76_c00391{left:496.083464pt;}
.x88_c00391{left:508.605019pt;}
.x5f_c00391{left:510.119913pt;}
.x5c_c00391{left:512.706776pt;}
.x3f_c00391{left:516.638667pt;}
.x77_c00391{left:524.933252pt;}
.x61_c00391{left:533.382601pt;}
.x31_c00391{left:536.715907pt;}
.x50_c00391{left:538.856524pt;}
.x82_c00391{left:545.781296pt;}
.x4b_c00391{left:550.357347pt;}
.x1a_c00391{left:551.465333pt;}
.x78_c00391{left:554.667488pt;}
.x40_c00391{left:557.313333pt;}
.x27_c00391{left:561.042731pt;}
.x62_c00391{left:562.749053pt;}
.x32_c00391{left:565.511083pt;}
.xa4_c00391{left:566.473027pt;}
.x51_c00391{left:573.270040pt;}
.x4c_c00391{left:574.672627pt;}
.xa5_c00391{left:583.888927pt;}
.x28_c00391{left:589.975103pt;}
.xab_c00391{left:593.910667pt;}
.x33_c00391{left:595.354543pt;}
.x47_c00391{left:599.000000pt;}
.x65_c00391{left:602.145333pt;}
.x29_c00391{left:606.480000pt;}
.x1e_c00391{left:609.288000pt;}
.x34_c00391{left:613.789423pt;}
.x83_c00391{left:626.619497pt;}
.x66_c00391{left:629.612505pt;}
.x60_c00391{left:635.856717pt;}
.x5d_c00391{left:638.957421pt;}
.x4d_c00391{left:641.335960pt;}
.x67_c00391{left:648.814617pt;}
.x84_c00391{left:653.559363pt;}
.x68_c00391{left:658.439649pt;}
.x42_c00391{left:659.430528pt;}
.x35_c00391{left:661.662835pt;}
.x63_c00391{left:663.133625pt;}
.x69_c00391{left:664.942473pt;}
.x5e_c00391{left:666.620777pt;}
.x52_c00391{left:669.333160pt;}
.x6d_c00391{left:673.421645pt;}
.x41_c00391{left:680.810667pt;}
.x85_c00391{left:708.898667pt;}
.x64_c00391{left:711.224873pt;}
.x89_c00391{left:729.284737pt;}
.x36_c00391{left:731.715379pt;}
.x86_c00391{left:777.030688pt;}
.x8a_c00391{left:783.480435pt;}
}





/* 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_c00392 {
    display:none;
  }
  .loading-indicator_c00392.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00392 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_c00392 { 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_c00392" -> "#page-container .classname_c00392")
 */
.pf_c00392 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00392 { /* 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_c00392.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00392 { /* 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_c00392 { /* 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_c00392 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00392 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00392 {overflow:visible;}
  }
}
.c_c00392 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00392 { /* 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_c00392:after { /* webkit #35443 */
  content: '';
}
.t_c00392:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00392 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 */
}
.__c00392 { /* 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_c00392 { /* info for Javascript */
  display:none;
}
.l_c00392 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00392 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00392 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00392: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_c00392 {
    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_c00392.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00392.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_c00392 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00392{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00392;src:url('chunks/assets/font_c605e72f209fc835e906f064.woff2')format("woff");}.ff1_c00392{font-family:ff1_c00392;line-height:1.000000;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;}
.m4d_c00392{transform:matrix(0.000290,-0.024183,0.249982,0.003000,0,0);-ms-transform:matrix(0.000290,-0.024183,0.249982,0.003000,0,0);-webkit-transform:matrix(0.000290,-0.024183,0.249982,0.003000,0,0);}
.m71_c00392{transform:matrix(0.000446,0.089149,-0.249997,0.001250,0,0);-ms-transform:matrix(0.000446,0.089149,-0.249997,0.001250,0,0);-webkit-transform:matrix(0.000446,0.089149,-0.249997,0.001250,0,0);}
.m5e_c00392{transform:matrix(0.000513,-0.042717,0.249982,0.003000,0,0);-ms-transform:matrix(0.000513,-0.042717,0.249982,0.003000,0,0);-webkit-transform:matrix(0.000513,-0.042717,0.249982,0.003000,0,0);}
.m69_c00392{transform:matrix(0.000547,-0.182344,0.249999,0.000750,0,0);-ms-transform:matrix(0.000547,-0.182344,0.249999,0.000750,0,0);-webkit-transform:matrix(0.000547,-0.182344,0.249999,0.000750,0,0);}
.m5c_c00392{transform:matrix(0.000587,-0.048956,0.249982,0.003000,0,0);-ms-transform:matrix(0.000587,-0.048956,0.249982,0.003000,0,0);-webkit-transform:matrix(0.000587,-0.048956,0.249982,0.003000,0,0);}
.m65_c00392{transform:matrix(0.000595,-0.049556,0.249982,0.003000,0,0);-ms-transform:matrix(0.000595,-0.049556,0.249982,0.003000,0,0);-webkit-transform:matrix(0.000595,-0.049556,0.249982,0.003000,0,0);}
.m53_c00392{transform:matrix(0.000602,-0.050206,0.249982,0.003000,0,0);-ms-transform:matrix(0.000602,-0.050206,0.249982,0.003000,0,0);-webkit-transform:matrix(0.000602,-0.050206,0.249982,0.003000,0,0);}
.m51_c00392{transform:matrix(0.000604,-0.050306,0.249982,0.003000,0,0);-ms-transform:matrix(0.000604,-0.050306,0.249982,0.003000,0,0);-webkit-transform:matrix(0.000604,-0.050306,0.249982,0.003000,0,0);}
.m57_c00392{transform:matrix(0.000724,-0.060371,0.249982,0.003000,0,0);-ms-transform:matrix(0.000724,-0.060371,0.249982,0.003000,0,0);-webkit-transform:matrix(0.000724,-0.060371,0.249982,0.003000,0,0);}
.m60_c00392{transform:matrix(0.000742,-0.061841,0.249982,0.003000,0,0);-ms-transform:matrix(0.000742,-0.061841,0.249982,0.003000,0,0);-webkit-transform:matrix(0.000742,-0.061841,0.249982,0.003000,0,0);}
.m6a_c00392{transform:matrix(0.000835,-0.278309,0.249999,0.000750,0,0);-ms-transform:matrix(0.000835,-0.278309,0.249999,0.000750,0,0);-webkit-transform:matrix(0.000835,-0.278309,0.249999,0.000750,0,0);}
.m55_c00392{transform:matrix(0.000916,-0.076315,0.249982,0.003000,0,0);-ms-transform:matrix(0.000916,-0.076315,0.249982,0.003000,0,0);-webkit-transform:matrix(0.000916,-0.076315,0.249982,0.003000,0,0);}
.m58_c00392{transform:matrix(0.001000,-0.083349,0.249982,0.003000,0,0);-ms-transform:matrix(0.001000,-0.083349,0.249982,0.003000,0,0);-webkit-transform:matrix(0.001000,-0.083349,0.249982,0.003000,0,0);}
.m5b_c00392{transform:matrix(0.001244,-0.103653,0.249982,0.003000,0,0);-ms-transform:matrix(0.001244,-0.103653,0.249982,0.003000,0,0);-webkit-transform:matrix(0.001244,-0.103653,0.249982,0.003000,0,0);}
.m4f_c00392{transform:matrix(0.001406,-0.117147,0.249982,0.003000,0,0);-ms-transform:matrix(0.001406,-0.117147,0.249982,0.003000,0,0);-webkit-transform:matrix(0.001406,-0.117147,0.249982,0.003000,0,0);}
.m6c_c00392{transform:matrix(0.001490,-0.124136,0.249982,0.003000,0,0);-ms-transform:matrix(0.001490,-0.124136,0.249982,0.003000,0,0);-webkit-transform:matrix(0.001490,-0.124136,0.249982,0.003000,0,0);}
.m72_c00392{transform:matrix(0.001528,0.305531,-0.249997,0.001250,0,0);-ms-transform:matrix(0.001528,0.305531,-0.249997,0.001250,0,0);-webkit-transform:matrix(0.001528,0.305531,-0.249997,0.001250,0,0);}
.m6f_c00392{transform:matrix(0.001690,-0.140860,0.249982,0.003000,0,0);-ms-transform:matrix(0.001690,-0.140860,0.249982,0.003000,0,0);-webkit-transform:matrix(0.001690,-0.140860,0.249982,0.003000,0,0);}
.m54_c00392{transform:matrix(0.001964,-0.163698,0.249982,0.003000,0,0);-ms-transform:matrix(0.001964,-0.163698,0.249982,0.003000,0,0);-webkit-transform:matrix(0.001964,-0.163698,0.249982,0.003000,0,0);}
.m5f_c00392{transform:matrix(0.001986,-0.165538,0.249982,0.003000,0,0);-ms-transform:matrix(0.001986,-0.165538,0.249982,0.003000,0,0);-webkit-transform:matrix(0.001986,-0.165538,0.249982,0.003000,0,0);}
.m63_c00392{transform:matrix(0.002218,-0.184872,0.249982,0.003000,0,0);-ms-transform:matrix(0.002218,-0.184872,0.249982,0.003000,0,0);-webkit-transform:matrix(0.002218,-0.184872,0.249982,0.003000,0,0);}
.m70_c00392{transform:matrix(0.002319,-0.193291,0.249982,0.003000,0,0);-ms-transform:matrix(0.002319,-0.193291,0.249982,0.003000,0,0);-webkit-transform:matrix(0.002319,-0.193291,0.249982,0.003000,0,0);}
.m64_c00392{transform:matrix(0.002346,-0.195501,0.249982,0.003000,0,0);-ms-transform:matrix(0.002346,-0.195501,0.249982,0.003000,0,0);-webkit-transform:matrix(0.002346,-0.195501,0.249982,0.003000,0,0);}
.m4e_c00392{transform:matrix(0.002446,-0.203810,0.249982,0.003000,0,0);-ms-transform:matrix(0.002446,-0.203810,0.249982,0.003000,0,0);-webkit-transform:matrix(0.002446,-0.203810,0.249982,0.003000,0,0);}
.m5a_c00392{transform:matrix(0.002768,-0.230658,0.249982,0.003000,0,0);-ms-transform:matrix(0.002768,-0.230658,0.249982,0.003000,0,0);-webkit-transform:matrix(0.002768,-0.230658,0.249982,0.003000,0,0);}
.m4b_c00392{transform:matrix(0.003247,-0.270561,0.249982,0.003000,0,0);-ms-transform:matrix(0.003247,-0.270561,0.249982,0.003000,0,0);-webkit-transform:matrix(0.003247,-0.270561,0.249982,0.003000,0,0);}
.m4a_c00392{transform:matrix(0.003251,-0.270915,0.249982,0.003000,0,0);-ms-transform:matrix(0.003251,-0.270915,0.249982,0.003000,0,0);-webkit-transform:matrix(0.003251,-0.270915,0.249982,0.003000,0,0);}
.m4c_c00392{transform:matrix(0.003476,-0.289699,0.249982,0.003000,0,0);-ms-transform:matrix(0.003476,-0.289699,0.249982,0.003000,0,0);-webkit-transform:matrix(0.003476,-0.289699,0.249982,0.003000,0,0);}
.m59_c00392{transform:matrix(0.003537,-0.294789,0.249982,0.003000,0,0);-ms-transform:matrix(0.003537,-0.294789,0.249982,0.003000,0,0);-webkit-transform:matrix(0.003537,-0.294789,0.249982,0.003000,0,0);}
.m56_c00392{transform:matrix(0.003842,-0.320132,0.249982,0.003000,0,0);-ms-transform:matrix(0.003842,-0.320132,0.249982,0.003000,0,0);-webkit-transform:matrix(0.003842,-0.320132,0.249982,0.003000,0,0);}
.m6b_c00392{transform:matrix(0.003858,-0.321497,0.249982,0.003000,0,0);-ms-transform:matrix(0.003858,-0.321497,0.249982,0.003000,0,0);-webkit-transform:matrix(0.003858,-0.321497,0.249982,0.003000,0,0);}
.m49_c00392{transform:matrix(0.004052,-0.337661,0.249982,0.003000,0,0);-ms-transform:matrix(0.004052,-0.337661,0.249982,0.003000,0,0);-webkit-transform:matrix(0.004052,-0.337661,0.249982,0.003000,0,0);}
.m52_c00392{transform:matrix(0.004158,-0.346540,0.249982,0.003000,0,0);-ms-transform:matrix(0.004158,-0.346540,0.249982,0.003000,0,0);-webkit-transform:matrix(0.004158,-0.346540,0.249982,0.003000,0,0);}
.m6d_c00392{transform:matrix(0.004916,-0.409666,0.249982,0.003000,0,0);-ms-transform:matrix(0.004916,-0.409666,0.249982,0.003000,0,0);-webkit-transform:matrix(0.004916,-0.409666,0.249982,0.003000,0,0);}
.m5d_c00392{transform:matrix(0.005049,-0.420785,0.249982,0.003000,0,0);-ms-transform:matrix(0.005049,-0.420785,0.249982,0.003000,0,0);-webkit-transform:matrix(0.005049,-0.420785,0.249982,0.003000,0,0);}
.m61_c00392{transform:matrix(0.005220,-0.434969,0.249982,0.003000,0,0);-ms-transform:matrix(0.005220,-0.434969,0.249982,0.003000,0,0);-webkit-transform:matrix(0.005220,-0.434969,0.249982,0.003000,0,0);}
.m6e_c00392{transform:matrix(0.005297,-0.441418,0.249982,0.003000,0,0);-ms-transform:matrix(0.005297,-0.441418,0.249982,0.003000,0,0);-webkit-transform:matrix(0.005297,-0.441418,0.249982,0.003000,0,0);}
.m66_c00392{transform:matrix(0.006910,-0.575804,0.249982,0.003000,0,0);-ms-transform:matrix(0.006910,-0.575804,0.249982,0.003000,0,0);-webkit-transform:matrix(0.006910,-0.575804,0.249982,0.003000,0,0);}
.m62_c00392{transform:matrix(0.007560,-0.630035,0.249982,0.003000,0,0);-ms-transform:matrix(0.007560,-0.630035,0.249982,0.003000,0,0);-webkit-transform:matrix(0.007560,-0.630035,0.249982,0.003000,0,0);}
.m50_c00392{transform:matrix(0.008942,-0.745131,0.249982,0.003000,0,0);-ms-transform:matrix(0.008942,-0.745131,0.249982,0.003000,0,0);-webkit-transform:matrix(0.008942,-0.745131,0.249982,0.003000,0,0);}
.m32_c00392{transform:matrix(0.038171,-0.001031,0.006748,0.249909,0,0);-ms-transform:matrix(0.038171,-0.001031,0.006748,0.249909,0,0);-webkit-transform:matrix(0.038171,-0.001031,0.006748,0.249909,0,0);}
.m18_c00392{transform:matrix(0.071150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.071150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.071150,0.000000,0.000000,0.250000,0,0);}
.m77_c00392{transform:matrix(0.103720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103720,0.000000,0.000000,0.250000,0,0);}
.m7_c00392{transform:matrix(0.109200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109200,0.000000,0.000000,0.250000,0,0);}
.m19_c00392{transform:matrix(0.112500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112500,0.000000,0.000000,0.250000,0,0);}
.m21_c00392{transform:matrix(0.129035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129035,0.000000,0.000000,0.250000,0,0);}
.m73_c00392{transform:matrix(0.147735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147735,0.000000,0.000000,0.250000,0,0);}
.m74_c00392{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m6_c00392{transform:matrix(0.169495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169495,0.000000,0.000000,0.250000,0,0);}
.m24_c00392{transform:matrix(0.171905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171905,0.000000,0.000000,0.250000,0,0);}
.m1_c00392{transform:matrix(0.180335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180335,0.000000,0.000000,0.250000,0,0);}
.m9_c00392{transform:matrix(0.190920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190920,0.000000,0.000000,0.250000,0,0);}
.m3c_c00392{transform:matrix(0.195651,0.001174,-0.001500,0.249996,0,0);-ms-transform:matrix(0.195651,0.001174,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.195651,0.001174,-0.001500,0.249996,0,0);}
.m46_c00392{transform:matrix(0.196291,0.001178,-0.001500,0.249996,0,0);-ms-transform:matrix(0.196291,0.001178,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.196291,0.001178,-0.001500,0.249996,0,0);}
.m75_c00392{transform:matrix(0.196365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196365,0.000000,0.000000,0.250000,0,0);}
.mf_c00392{transform:matrix(0.196975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196975,0.000000,0.000000,0.250000,0,0);}
.m2a_c00392{transform:matrix(0.207100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207100,0.000000,0.000000,0.250000,0,0);}
.m20_c00392{transform:matrix(0.208200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208200,0.000000,0.000000,0.250000,0,0);}
.m35_c00392{transform:matrix(0.214056,-0.005994,0.006997,0.249902,0,0);-ms-transform:matrix(0.214056,-0.005994,0.006997,0.249902,0,0);-webkit-transform:matrix(0.214056,-0.005994,0.006997,0.249902,0,0);}
.m36_c00392{transform:matrix(0.215850,-0.006044,0.006997,0.249902,0,0);-ms-transform:matrix(0.215850,-0.006044,0.006997,0.249902,0,0);-webkit-transform:matrix(0.215850,-0.006044,0.006997,0.249902,0,0);}
.m3_c00392{transform:matrix(0.215945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215945,0.000000,0.000000,0.250000,0,0);}
.m80_c00392{transform:matrix(0.219395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219395,0.000000,0.000000,0.250000,0,0);}
.m44_c00392{transform:matrix(0.219951,0.001320,-0.001500,0.249996,0,0);-ms-transform:matrix(0.219951,0.001320,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.219951,0.001320,-0.001500,0.249996,0,0);}
.m78_c00392{transform:matrix(0.226415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226415,0.000000,0.000000,0.250000,0,0);}
.m15_c00392{transform:matrix(0.228965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228965,0.000000,0.000000,0.250000,0,0);}
.mc_c00392{transform:matrix(0.230215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230215,0.000000,0.000000,0.250000,0,0);}
.m26_c00392{transform:matrix(0.231077,0.003235,-0.003500,0.249976,0,0);-ms-transform:matrix(0.231077,0.003235,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.231077,0.003235,-0.003500,0.249976,0,0);}
.m7e_c00392{transform:matrix(0.231530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231530,0.000000,0.000000,0.250000,0,0);}
.m40_c00392{transform:matrix(0.231961,0.001392,-0.001500,0.249996,0,0);-ms-transform:matrix(0.231961,0.001392,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.231961,0.001392,-0.001500,0.249996,0,0);}
.m7d_c00392{transform:matrix(0.234305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234305,0.000000,0.000000,0.250000,0,0);}
.m27_c00392{transform:matrix(0.235362,0.003295,-0.003500,0.249976,0,0);-ms-transform:matrix(0.235362,0.003295,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.235362,0.003295,-0.003500,0.249976,0,0);}
.m5_c00392{transform:matrix(0.236005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236005,0.000000,0.000000,0.250000,0,0);}
.m2f_c00392{transform:matrix(0.236945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236945,0.000000,0.000000,0.250000,0,0);}
.m3b_c00392{transform:matrix(0.237116,0.001423,-0.001500,0.249996,0,0);-ms-transform:matrix(0.237116,0.001423,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.237116,0.001423,-0.001500,0.249996,0,0);}
.m3d_c00392{transform:matrix(0.238456,0.001431,-0.001500,0.249996,0,0);-ms-transform:matrix(0.238456,0.001431,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.238456,0.001431,-0.001500,0.249996,0,0);}
.mb_c00392{transform:matrix(0.241870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241870,0.000000,0.000000,0.250000,0,0);}
.m22_c00392{transform:matrix(0.243390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243390,0.000000,0.000000,0.250000,0,0);}
.m12_c00392{transform:matrix(0.252980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252980,0.000000,0.000000,0.250000,0,0);}
.m3f_c00392{transform:matrix(0.253450,0.001521,-0.001500,0.249996,0,0);-ms-transform:matrix(0.253450,0.001521,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.253450,0.001521,-0.001500,0.249996,0,0);}
.m0_c00392{transform:matrix(0.253780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253780,0.000000,0.000000,0.250000,0,0);}
.m29_c00392{transform:matrix(0.254660,0.003565,-0.003500,0.249976,0,0);-ms-transform:matrix(0.254660,0.003565,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.254660,0.003565,-0.003500,0.249976,0,0);}
.m33_c00392{transform:matrix(0.255347,-0.006894,0.006748,0.249909,0,0);-ms-transform:matrix(0.255347,-0.006894,0.006748,0.249909,0,0);-webkit-transform:matrix(0.255347,-0.006894,0.006748,0.249909,0,0);}
.m45_c00392{transform:matrix(0.257175,0.001543,-0.001500,0.249996,0,0);-ms-transform:matrix(0.257175,0.001543,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.257175,0.001543,-0.001500,0.249996,0,0);}
.m3e_c00392{transform:matrix(0.258030,0.001548,-0.001500,0.249996,0,0);-ms-transform:matrix(0.258030,0.001548,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.258030,0.001548,-0.001500,0.249996,0,0);}
.m23_c00392{transform:matrix(0.259545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259545,0.000000,0.000000,0.250000,0,0);}
.m43_c00392{transform:matrix(0.259735,0.001558,-0.001500,0.249996,0,0);-ms-transform:matrix(0.259735,0.001558,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.259735,0.001558,-0.001500,0.249996,0,0);}
.m3a_c00392{transform:matrix(0.262960,0.001578,-0.001500,0.249996,0,0);-ms-transform:matrix(0.262960,0.001578,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.262960,0.001578,-0.001500,0.249996,0,0);}
.m42_c00392{transform:matrix(0.266325,0.001598,-0.001500,0.249996,0,0);-ms-transform:matrix(0.266325,0.001598,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.266325,0.001598,-0.001500,0.249996,0,0);}
.m81_c00392{transform:matrix(0.270035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270035,0.000000,0.000000,0.250000,0,0);}
.m8_c00392{transform:matrix(0.270415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270415,0.000000,0.000000,0.250000,0,0);}
.m1c_c00392{transform:matrix(0.276135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276135,0.000000,0.000000,0.250000,0,0);}
.m1f_c00392{transform:matrix(0.278110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278110,0.000000,0.000000,0.250000,0,0);}
.m34_c00392{transform:matrix(0.279783,-0.007554,0.006748,0.249909,0,0);-ms-transform:matrix(0.279783,-0.007554,0.006748,0.249909,0,0);-webkit-transform:matrix(0.279783,-0.007554,0.006748,0.249909,0,0);}
.m41_c00392{transform:matrix(0.284290,0.001706,-0.001500,0.249996,0,0);-ms-transform:matrix(0.284290,0.001706,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.284290,0.001706,-0.001500,0.249996,0,0);}
.m4_c00392{transform:matrix(0.285570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285570,0.000000,0.000000,0.250000,0,0);}
.m38_c00392{transform:matrix(0.289387,-0.008103,0.006997,0.249902,0,0);-ms-transform:matrix(0.289387,-0.008103,0.006997,0.249902,0,0);-webkit-transform:matrix(0.289387,-0.008103,0.006997,0.249902,0,0);}
.m39_c00392{transform:matrix(0.290631,-0.008138,0.006997,0.249902,0,0);-ms-transform:matrix(0.290631,-0.008138,0.006997,0.249902,0,0);-webkit-transform:matrix(0.290631,-0.008138,0.006997,0.249902,0,0);}
.me_c00392{transform:matrix(0.291045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291045,0.000000,0.000000,0.250000,0,0);}
.m2b_c00392{transform:matrix(0.293810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293810,0.000000,0.000000,0.250000,0,0);}
.m2d_c00392{transform:matrix(0.299475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299475,0.000000,0.000000,0.250000,0,0);}
.m30_c00392{transform:matrix(0.302725,-0.008174,0.006748,0.249909,0,0);-ms-transform:matrix(0.302725,-0.008174,0.006748,0.249909,0,0);-webkit-transform:matrix(0.302725,-0.008174,0.006748,0.249909,0,0);}
.m1d_c00392{transform:matrix(0.302910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302910,0.000000,0.000000,0.250000,0,0);}
.m28_c00392{transform:matrix(0.310325,0.004345,-0.003500,0.249976,0,0);-ms-transform:matrix(0.310325,0.004345,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.310325,0.004345,-0.003500,0.249976,0,0);}
.m7b_c00392{transform:matrix(0.319530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319530,0.000000,0.000000,0.250000,0,0);}
.m31_c00392{transform:matrix(0.323292,-0.008729,0.006748,0.249909,0,0);-ms-transform:matrix(0.323292,-0.008729,0.006748,0.249909,0,0);-webkit-transform:matrix(0.323292,-0.008729,0.006748,0.249909,0,0);}
.m11_c00392{transform:matrix(0.324585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324585,0.000000,0.000000,0.250000,0,0);}
.m1a_c00392{transform:matrix(0.333960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333960,0.000000,0.000000,0.250000,0,0);}
.m67_c00392{transform:matrix(0.335440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335440,0.000000,0.000000,0.250000,0,0);}
.m2e_c00392{transform:matrix(0.336600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336600,0.000000,0.000000,0.250000,0,0);}
.m1e_c00392{transform:matrix(0.339560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339560,0.000000,0.000000,0.250000,0,0);}
.m2_c00392{transform:matrix(0.359660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359660,0.000000,0.000000,0.250000,0,0);}
.m16_c00392{transform:matrix(0.360625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360625,0.000000,0.000000,0.250000,0,0);}
.m25_c00392{transform:matrix(0.364735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364735,0.000000,0.000000,0.250000,0,0);}
.m68_c00392{transform:matrix(0.396010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396010,0.000000,0.000000,0.250000,0,0);}
.m37_c00392{transform:matrix(0.414398,-0.011603,0.006997,0.249902,0,0);-ms-transform:matrix(0.414398,-0.011603,0.006997,0.249902,0,0);-webkit-transform:matrix(0.414398,-0.011603,0.006997,0.249902,0,0);}
.m47_c00392{transform:matrix(0.456945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456945,0.000000,0.000000,0.250000,0,0);}
.m7a_c00392{transform:matrix(0.463060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463060,0.000000,0.000000,0.250000,0,0);}
.m7c_c00392{transform:matrix(0.490505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490505,0.000000,0.000000,0.250000,0,0);}
.m76_c00392{transform:matrix(0.500480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.500480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.500480,0.000000,0.000000,0.250000,0,0);}
.m48_c00392{transform:matrix(0.502250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502250,0.000000,0.000000,0.250000,0,0);}
.m17_c00392{transform:matrix(0.503115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.503115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.503115,0.000000,0.000000,0.250000,0,0);}
.m79_c00392{transform:matrix(0.519230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519230,0.000000,0.000000,0.250000,0,0);}
.m10_c00392{transform:matrix(0.527565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527565,0.000000,0.000000,0.250000,0,0);}
.m2c_c00392{transform:matrix(0.567080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567080,0.000000,0.000000,0.250000,0,0);}
.ma_c00392{transform:matrix(0.578815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578815,0.000000,0.000000,0.250000,0,0);}
.m13_c00392{transform:matrix(0.609120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609120,0.000000,0.000000,0.250000,0,0);}
.m7f_c00392{transform:matrix(0.667085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667085,0.000000,0.000000,0.250000,0,0);}
.m14_c00392{transform:matrix(0.912735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.912735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.912735,0.000000,0.000000,0.250000,0,0);}
.m1b_c00392{transform:matrix(1.052345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.052345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.052345,0.000000,0.000000,0.250000,0,0);}
.md_c00392{transform:matrix(1.183765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.183765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.183765,0.000000,0.000000,0.250000,0,0);}
.v0_c00392{vertical-align:0.000000px;}
.ls0_c00392{letter-spacing:0.000000px;}
.sc__c00392{text-shadow:none;}
.sc0_c00392{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__c00392{-webkit-text-stroke:0px transparent;}
.sc0_c00392{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00392{word-spacing:0.000000px;}
.fc0_c00392{color:transparent;}
.fs4_c00392{font-size:12.000000px;}
.fs2_c00392{font-size:18.000000px;}
.fs14_c00392{font-size:18.001296px;}
.fs1e_c00392{font-size:24.000000px;}
.fs11_c00392{font-size:24.001728px;}
.fs6_c00392{font-size:30.000000px;}
.fs17_c00392{font-size:30.002160px;}
.fs5_c00392{font-size:36.000000px;}
.fs1b_c00392{font-size:36.002592px;}
.fs12_c00392{font-size:42.003024px;}
.fs10_c00392{font-size:48.000000px;}
.fs15_c00392{font-size:48.003456px;}
.fs7_c00392{font-size:54.000000px;}
.fs16_c00392{font-size:54.003888px;}
.fs3_c00392{font-size:60.000000px;}
.fs19_c00392{font-size:60.000270px;}
.fs1c_c00392{font-size:60.000750px;}
.fs1a_c00392{font-size:60.004320px;}
.fsd_c00392{font-size:60.021866px;}
.fsb_c00392{font-size:66.000000px;}
.fse_c00392{font-size:66.025867px;}
.fsa_c00392{font-size:72.000000px;}
.fsf_c00392{font-size:72.001296px;}
.fsc_c00392{font-size:72.007056px;}
.fs18_c00392{font-size:78.005616px;}
.fs8_c00392{font-size:90.000000px;}
.fs13_c00392{font-size:90.006480px;}
.fs9_c00392{font-size:96.000000px;}
.fs1_c00392{font-size:102.000000px;}
.fs0_c00392{font-size:108.000000px;}
.fs1d_c00392{font-size:120.000000px;}
.y0_c00392{bottom:0.000000px;}
.y6d_c00392{bottom:179.818500px;}
.y68_c00392{bottom:179.955000px;}
.y67_c00392{bottom:180.360000px;}
.y6c_c00392{bottom:184.140000px;}
.y6e_c00392{bottom:184.675500px;}
.y69_c00392{bottom:187.651500px;}
.y6a_c00392{bottom:188.190000px;}
.y6b_c00392{bottom:191.430000px;}
.y66_c00392{bottom:630.588000px;}
.y65_c00392{bottom:811.885500px;}
.y3b_c00392{bottom:813.237690px;}
.y64_c00392{bottom:815.940000px;}
.y3a_c00392{bottom:818.092500px;}
.y57_c00392{bottom:819.441000px;}
.y49_c00392{bottom:819.760020px;}
.y40_c00392{bottom:820.317150px;}
.y44_c00392{bottom:825.957240px;}
.y54_c00392{bottom:827.587626px;}
.y3e_c00392{bottom:828.098874px;}
.y3c_c00392{bottom:828.851808px;}
.y63_c00392{bottom:828.900000px;}
.y42_c00392{bottom:828.922182px;}
.y62_c00392{bottom:829.168500px;}
.y4a_c00392{bottom:829.217778px;}
.y58_c00392{bottom:829.441500px;}
.y46_c00392{bottom:829.471896px;}
.y4d_c00392{bottom:830.003910px;}
.y52_c00392{bottom:830.779854px;}
.y60_c00392{bottom:831.035580px;}
.y4f_c00392{bottom:831.116754px;}
.y5b_c00392{bottom:832.138500px;}
.y5a_c00392{bottom:832.147500px;}
.y5e_c00392{bottom:832.184928px;}
.y56_c00392{bottom:856.477224px;}
.y5f_c00392{bottom:857.730594px;}
.y61_c00392{bottom:857.788500px;}
.y59_c00392{bottom:865.621500px;}
.y4c_c00392{bottom:888.139230px;}
.y45_c00392{bottom:891.556068px;}
.y51_c00392{bottom:893.456886px;}
.y53_c00392{bottom:896.206524px;}
.y48_c00392{bottom:898.376124px;}
.y5d_c00392{bottom:900.340464px;}
.y41_c00392{bottom:921.571404px;}
.y3f_c00392{bottom:921.806538px;}
.y47_c00392{bottom:924.879498px;}
.y55_c00392{bottom:925.104738px;}
.y4e_c00392{bottom:927.514998px;}
.y50_c00392{bottom:927.787134px;}
.y43_c00392{bottom:928.270200px;}
.y3d_c00392{bottom:929.315640px;}
.y4b_c00392{bottom:929.668104px;}
.y39_c00392{bottom:930.492000px;}
.y5c_c00392{bottom:932.591982px;}
.y17_c00392{bottom:956.866500px;}
.y1e_c00392{bottom:959.593500px;}
.y22_c00392{bottom:960.243874px;}
.y23_c00392{bottom:960.244612px;}
.y24_c00392{bottom:960.244809px;}
.y1f_c00392{bottom:960.390000px;}
.y20_c00392{bottom:991.720500px;}
.y21_c00392{bottom:993.231150px;}
.y1d_c00392{bottom:995.097000px;}
.y37_c00392{bottom:1019.656500px;}
.y38_c00392{bottom:1023.840000px;}
.y1b_c00392{bottom:1028.209209px;}
.y25_c00392{bottom:1028.707500px;}
.y26_c00392{bottom:1029.335778px;}
.y1a_c00392{bottom:1029.936774px;}
.y27_c00392{bottom:1030.231512px;}
.y19_c00392{bottom:1030.386657px;}
.y1c_c00392{bottom:1030.590000px;}
.y18_c00392{bottom:1030.863000px;}
.y28_c00392{bottom:1032.673266px;}
.y29_c00392{bottom:1033.586808px;}
.y16_c00392{bottom:1060.560000px;}
.y36_c00392{bottom:1060.789824px;}
.y35_c00392{bottom:1061.128530px;}
.y34_c00392{bottom:1061.321337px;}
.y33_c00392{bottom:1061.786214px;}
.y32_c00392{bottom:1062.149463px;}
.y31_c00392{bottom:1062.327699px;}
.y30_c00392{bottom:1062.510633px;}
.y2f_c00392{bottom:1062.920394px;}
.y2e_c00392{bottom:1063.378872px;}
.y2d_c00392{bottom:1063.587861px;}
.y2c_c00392{bottom:1063.775664px;}
.y2b_c00392{bottom:1064.047806px;}
.y2a_c00392{bottom:1064.610000px;}
.yd_c00392{bottom:1118.349000px;}
.ye_c00392{bottom:1119.427500px;}
.y11_c00392{bottom:1120.773000px;}
.y10_c00392{bottom:1121.040000px;}
.y13_c00392{bottom:1121.433000px;}
.yc_c00392{bottom:1122.121500px;}
.yf_c00392{bottom:1123.876500px;}
.y12_c00392{bottom:1125.906000px;}
.ya_c00392{bottom:1131.570000px;}
.y2_c00392{bottom:1131.969000px;}
.yb_c00392{bottom:1131.975000px;}
.y1_c00392{bottom:1131.981000px;}
.y5_c00392{bottom:1134.000000px;}
.y6_c00392{bottom:1134.009000px;}
.y9_c00392{bottom:1135.350000px;}
.y15_c00392{bottom:1137.376500px;}
.y14_c00392{bottom:1138.050000px;}
.y8_c00392{bottom:1139.400000px;}
.y3_c00392{bottom:1143.876000px;}
.y4_c00392{bottom:1144.395000px;}
.y7_c00392{bottom:1179.090000px;}
.h6_c00392{height:12.000000px;}
.h4_c00392{height:18.000000px;}
.h16_c00392{height:18.001296px;}
.h20_c00392{height:24.000000px;}
.h13_c00392{height:24.001728px;}
.h8_c00392{height:30.000000px;}
.h19_c00392{height:30.002160px;}
.h7_c00392{height:36.000000px;}
.h1d_c00392{height:36.002592px;}
.h14_c00392{height:42.003024px;}
.h12_c00392{height:48.000000px;}
.h17_c00392{height:48.003456px;}
.h9_c00392{height:54.000000px;}
.h18_c00392{height:54.003888px;}
.h5_c00392{height:60.000000px;}
.h1b_c00392{height:60.000270px;}
.h1e_c00392{height:60.000750px;}
.h1c_c00392{height:60.004320px;}
.hf_c00392{height:60.021866px;}
.hd_c00392{height:66.000000px;}
.h10_c00392{height:66.025867px;}
.hc_c00392{height:72.000000px;}
.h11_c00392{height:72.001296px;}
.he_c00392{height:72.007056px;}
.h1a_c00392{height:78.005616px;}
.ha_c00392{height:90.000000px;}
.h15_c00392{height:90.006480px;}
.hb_c00392{height:96.000000px;}
.h3_c00392{height:102.000000px;}
.h2_c00392{height:108.000000px;}
.h1f_c00392{height:120.000000px;}
.h1_c00392{height:1251.000000px;}
.h0_c00392{height:1251.150000px;}
.w0_c00392{width:915.000000px;}
.x0_c00392{left:0.000000px;}
.x3e_c00392{left:92.880000px;}
.x3d_c00392{left:97.470000px;}
.x34_c00392{left:141.936000px;}
.x2e_c00392{left:149.433000px;}
.x22_c00392{left:156.330000px;}
.x59_c00392{left:176.850000px;}
.x58_c00392{left:178.006500px;}
.x21_c00392{left:182.520000px;}
.x1f_c00392{left:183.870000px;}
.x57_c00392{left:202.231308px;}
.x20_c00392{left:203.580000px;}
.x2f_c00392{left:205.383000px;}
.x35_c00392{left:235.635000px;}
.x1c_c00392{left:236.790000px;}
.x56_c00392{left:238.435728px;}
.x30_c00392{left:242.493541px;}
.x55_c00392{left:252.606000px;}
.x1d_c00392{left:257.850000px;}
.x54_c00392{left:265.024500px;}
.x60_c00392{left:271.890000px;}
.x53_c00392{left:278.910000px;}
.x36_c00392{left:280.992000px;}
.x31_c00392{left:288.950859px;}
.x61_c00392{left:291.330000px;}
.x1e_c00392{left:292.680000px;}
.x5f_c00392{left:293.760000px;}
.x5e_c00392{left:302.940000px;}
.x5d_c00392{left:306.720000px;}
.x5c_c00392{left:309.960000px;}
.x37_c00392{left:312.292500px;}
.x2d_c00392{left:318.600000px;}
.x32_c00392{left:323.616000px;}
.x29_c00392{left:325.080000px;}
.x2a_c00392{left:346.410000px;}
.x33_c00392{left:356.242500px;}
.x1a_c00392{left:411.210000px;}
.x16_c00392{left:413.640000px;}
.x26_c00392{left:422.908500px;}
.x1b_c00392{left:429.300000px;}
.x17_c00392{left:432.000000px;}
.x52_c00392{left:443.592642px;}
.x2b_c00392{left:444.690000px;}
.x18_c00392{left:452.250000px;}
.x27_c00392{left:456.933000px;}
.x51_c00392{left:458.432550px;}
.x15_c00392{left:460.620000px;}
.x19_c00392{left:462.780000px;}
.x14_c00392{left:466.830000px;}
.x2c_c00392{left:474.930000px;}
.x50_c00392{left:482.873562px;}
.x4f_c00392{left:484.097658px;}
.x4e_c00392{left:486.928188px;}
.x28_c00392{left:489.067500px;}
.x38_c00392{left:491.830500px;}
.x11_c00392{left:493.020000px;}
.x13_c00392{left:494.910000px;}
.x4d_c00392{left:501.778974px;}
.x4c_c00392{left:503.000448px;}
.x12_c00392{left:505.440000px;}
.x4b_c00392{left:508.406496px;}
.x10_c00392{left:512.460000px;}
.x39_c00392{left:522.319500px;}
.x4a_c00392{left:523.566702px;}
.x49_c00392{left:524.871642px;}
.x24_c00392{left:530.280000px;}
.xe_c00392{left:544.320000px;}
.x25_c00392{left:547.290000px;}
.x3a_c00392{left:552.025500px;}
.x48_c00392{left:555.460650px;}
.x47_c00392{left:556.733412px;}
.xf_c00392{left:562.410000px;}
.x46_c00392{left:566.044248px;}
.x45_c00392{left:567.262554px;}
.x44_c00392{left:574.903278px;}
.x43_c00392{left:576.172158px;}
.xc_c00392{left:596.160000px;}
.x42_c00392{left:597.506826px;}
.xb_c00392{left:607.230000px;}
.x9_c00392{left:612.090000px;}
.xa_c00392{left:613.710000px;}
.x8_c00392{left:615.600000px;}
.x6_c00392{left:619.110000px;}
.xd_c00392{left:621.000000px;}
.x41_c00392{left:622.030122px;}
.x40_c00392{left:634.772706px;}
.x3f_c00392{left:636.121500px;}
.x7_c00392{left:656.100000px;}
.x5a_c00392{left:664.200000px;}
.x4_c00392{left:667.440000px;}
.x5_c00392{left:668.520000px;}
.x5b_c00392{left:685.530000px;}
.x3b_c00392{left:690.046500px;}
.x3_c00392{left:699.300000px;}
.x3c_c00392{left:722.181000px;}
.x2_c00392{left:733.320000px;}
.x1_c00392{left:779.490000px;}
.x23_c00392{left:790.020000px;}
@media print{
.v0_c00392{vertical-align:0.000000pt;}
.ls0_c00392{letter-spacing:0.000000pt;}
.ws0_c00392{word-spacing:0.000000pt;}
.fs4_c00392{font-size:10.666667pt;}
.fs2_c00392{font-size:16.000000pt;}
.fs14_c00392{font-size:16.001152pt;}
.fs1e_c00392{font-size:21.333333pt;}
.fs11_c00392{font-size:21.334869pt;}
.fs6_c00392{font-size:26.666667pt;}
.fs17_c00392{font-size:26.668587pt;}
.fs5_c00392{font-size:32.000000pt;}
.fs1b_c00392{font-size:32.002304pt;}
.fs12_c00392{font-size:37.336021pt;}
.fs10_c00392{font-size:42.666667pt;}
.fs15_c00392{font-size:42.669739pt;}
.fs7_c00392{font-size:48.000000pt;}
.fs16_c00392{font-size:48.003456pt;}
.fs3_c00392{font-size:53.333333pt;}
.fs19_c00392{font-size:53.333573pt;}
.fs1c_c00392{font-size:53.334000pt;}
.fs1a_c00392{font-size:53.337173pt;}
.fsd_c00392{font-size:53.352770pt;}
.fsb_c00392{font-size:58.666667pt;}
.fse_c00392{font-size:58.689659pt;}
.fsa_c00392{font-size:64.000000pt;}
.fsf_c00392{font-size:64.001152pt;}
.fsc_c00392{font-size:64.006272pt;}
.fs18_c00392{font-size:69.338325pt;}
.fs8_c00392{font-size:80.000000pt;}
.fs13_c00392{font-size:80.005760pt;}
.fs9_c00392{font-size:85.333333pt;}
.fs1_c00392{font-size:90.666667pt;}
.fs0_c00392{font-size:96.000000pt;}
.fs1d_c00392{font-size:106.666667pt;}
.y0_c00392{bottom:0.000000pt;}
.y6d_c00392{bottom:159.838667pt;}
.y68_c00392{bottom:159.960000pt;}
.y67_c00392{bottom:160.320000pt;}
.y6c_c00392{bottom:163.680000pt;}
.y6e_c00392{bottom:164.156000pt;}
.y69_c00392{bottom:166.801333pt;}
.y6a_c00392{bottom:167.280000pt;}
.y6b_c00392{bottom:170.160000pt;}
.y66_c00392{bottom:560.522667pt;}
.y65_c00392{bottom:721.676000pt;}
.y3b_c00392{bottom:722.877947pt;}
.y64_c00392{bottom:725.280000pt;}
.y3a_c00392{bottom:727.193333pt;}
.y57_c00392{bottom:728.392000pt;}
.y49_c00392{bottom:728.675573pt;}
.y40_c00392{bottom:729.170800pt;}
.y44_c00392{bottom:734.184213pt;}
.y54_c00392{bottom:735.633445pt;}
.y3e_c00392{bottom:736.087888pt;}
.y3c_c00392{bottom:736.757163pt;}
.y63_c00392{bottom:736.800000pt;}
.y42_c00392{bottom:736.819717pt;}
.y62_c00392{bottom:737.038667pt;}
.y4a_c00392{bottom:737.082469pt;}
.y58_c00392{bottom:737.281333pt;}
.y46_c00392{bottom:737.308352pt;}
.y4d_c00392{bottom:737.781253pt;}
.y52_c00392{bottom:738.470981pt;}
.y60_c00392{bottom:738.698293pt;}
.y4f_c00392{bottom:738.770448pt;}
.y5b_c00392{bottom:739.678667pt;}
.y5a_c00392{bottom:739.686667pt;}
.y5e_c00392{bottom:739.719936pt;}
.y56_c00392{bottom:761.313088pt;}
.y5f_c00392{bottom:762.427195pt;}
.y61_c00392{bottom:762.478667pt;}
.y59_c00392{bottom:769.441333pt;}
.y4c_c00392{bottom:789.457093pt;}
.y45_c00392{bottom:792.494283pt;}
.y51_c00392{bottom:794.183899pt;}
.y53_c00392{bottom:796.628021pt;}
.y48_c00392{bottom:798.556555pt;}
.y5d_c00392{bottom:800.302635pt;}
.y41_c00392{bottom:819.174581pt;}
.y3f_c00392{bottom:819.383589pt;}
.y47_c00392{bottom:822.115109pt;}
.y55_c00392{bottom:822.315323pt;}
.y4e_c00392{bottom:824.457776pt;}
.y50_c00392{bottom:824.699675pt;}
.y43_c00392{bottom:825.129067pt;}
.y3d_c00392{bottom:826.058347pt;}
.y4b_c00392{bottom:826.371648pt;}
.y39_c00392{bottom:827.104000pt;}
.y5c_c00392{bottom:828.970651pt;}
.y17_c00392{bottom:850.548000pt;}
.y1e_c00392{bottom:852.972000pt;}
.y22_c00392{bottom:853.550111pt;}
.y23_c00392{bottom:853.550767pt;}
.y24_c00392{bottom:853.550941pt;}
.y1f_c00392{bottom:853.680000pt;}
.y20_c00392{bottom:881.529333pt;}
.y21_c00392{bottom:882.872133pt;}
.y1d_c00392{bottom:884.530667pt;}
.y37_c00392{bottom:906.361333pt;}
.y38_c00392{bottom:910.080000pt;}
.y1b_c00392{bottom:913.963741pt;}
.y25_c00392{bottom:914.406667pt;}
.y26_c00392{bottom:914.965136pt;}
.y1a_c00392{bottom:915.499355pt;}
.y27_c00392{bottom:915.761344pt;}
.y19_c00392{bottom:915.899251pt;}
.y1c_c00392{bottom:916.080000pt;}
.y18_c00392{bottom:916.322667pt;}
.y28_c00392{bottom:917.931792pt;}
.y29_c00392{bottom:918.743829pt;}
.y16_c00392{bottom:942.720000pt;}
.y36_c00392{bottom:942.924288pt;}
.y35_c00392{bottom:943.225360pt;}
.y34_c00392{bottom:943.396744pt;}
.y33_c00392{bottom:943.809968pt;}
.y32_c00392{bottom:944.132856pt;}
.y31_c00392{bottom:944.291288pt;}
.y30_c00392{bottom:944.453896pt;}
.y2f_c00392{bottom:944.818128pt;}
.y2e_c00392{bottom:945.225664pt;}
.y2d_c00392{bottom:945.411432pt;}
.y2c_c00392{bottom:945.578368pt;}
.y2b_c00392{bottom:945.820272pt;}
.y2a_c00392{bottom:946.320000pt;}
.yd_c00392{bottom:994.088000pt;}
.ye_c00392{bottom:995.046667pt;}
.y11_c00392{bottom:996.242667pt;}
.y10_c00392{bottom:996.480000pt;}
.y13_c00392{bottom:996.829333pt;}
.yc_c00392{bottom:997.441333pt;}
.yf_c00392{bottom:999.001333pt;}
.y12_c00392{bottom:1000.805333pt;}
.ya_c00392{bottom:1005.840000pt;}
.y2_c00392{bottom:1006.194667pt;}
.yb_c00392{bottom:1006.200000pt;}
.y1_c00392{bottom:1006.205333pt;}
.y5_c00392{bottom:1008.000000pt;}
.y6_c00392{bottom:1008.008000pt;}
.y9_c00392{bottom:1009.200000pt;}
.y15_c00392{bottom:1011.001333pt;}
.y14_c00392{bottom:1011.600000pt;}
.y8_c00392{bottom:1012.800000pt;}
.y3_c00392{bottom:1016.778667pt;}
.y4_c00392{bottom:1017.240000pt;}
.y7_c00392{bottom:1048.080000pt;}
.h6_c00392{height:10.666667pt;}
.h4_c00392{height:16.000000pt;}
.h16_c00392{height:16.001152pt;}
.h20_c00392{height:21.333333pt;}
.h13_c00392{height:21.334869pt;}
.h8_c00392{height:26.666667pt;}
.h19_c00392{height:26.668587pt;}
.h7_c00392{height:32.000000pt;}
.h1d_c00392{height:32.002304pt;}
.h14_c00392{height:37.336021pt;}
.h12_c00392{height:42.666667pt;}
.h17_c00392{height:42.669739pt;}
.h9_c00392{height:48.000000pt;}
.h18_c00392{height:48.003456pt;}
.h5_c00392{height:53.333333pt;}
.h1b_c00392{height:53.333573pt;}
.h1e_c00392{height:53.334000pt;}
.h1c_c00392{height:53.337173pt;}
.hf_c00392{height:53.352770pt;}
.hd_c00392{height:58.666667pt;}
.h10_c00392{height:58.689659pt;}
.hc_c00392{height:64.000000pt;}
.h11_c00392{height:64.001152pt;}
.he_c00392{height:64.006272pt;}
.h1a_c00392{height:69.338325pt;}
.ha_c00392{height:80.000000pt;}
.h15_c00392{height:80.005760pt;}
.hb_c00392{height:85.333333pt;}
.h3_c00392{height:90.666667pt;}
.h2_c00392{height:96.000000pt;}
.h1f_c00392{height:106.666667pt;}
.h1_c00392{height:1112.000000pt;}
.h0_c00392{height:1112.133333pt;}
.w0_c00392{width:813.333333pt;}
.x0_c00392{left:0.000000pt;}
.x3e_c00392{left:82.560000pt;}
.x3d_c00392{left:86.640000pt;}
.x34_c00392{left:126.165333pt;}
.x2e_c00392{left:132.829333pt;}
.x22_c00392{left:138.960000pt;}
.x59_c00392{left:157.200000pt;}
.x58_c00392{left:158.228000pt;}
.x21_c00392{left:162.240000pt;}
.x1f_c00392{left:163.440000pt;}
.x57_c00392{left:179.761163pt;}
.x20_c00392{left:180.960000pt;}
.x2f_c00392{left:182.562667pt;}
.x35_c00392{left:209.453333pt;}
.x1c_c00392{left:210.480000pt;}
.x56_c00392{left:211.942869pt;}
.x30_c00392{left:215.549815pt;}
.x55_c00392{left:224.538667pt;}
.x1d_c00392{left:229.200000pt;}
.x54_c00392{left:235.577333pt;}
.x60_c00392{left:241.680000pt;}
.x53_c00392{left:247.920000pt;}
.x36_c00392{left:249.770667pt;}
.x31_c00392{left:256.845208pt;}
.x61_c00392{left:258.960000pt;}
.x1e_c00392{left:260.160000pt;}
.x5f_c00392{left:261.120000pt;}
.x5e_c00392{left:269.280000pt;}
.x5d_c00392{left:272.640000pt;}
.x5c_c00392{left:275.520000pt;}
.x37_c00392{left:277.593333pt;}
.x2d_c00392{left:283.200000pt;}
.x32_c00392{left:287.658667pt;}
.x29_c00392{left:288.960000pt;}
.x2a_c00392{left:307.920000pt;}
.x33_c00392{left:316.660000pt;}
.x1a_c00392{left:365.520000pt;}
.x16_c00392{left:367.680000pt;}
.x26_c00392{left:375.918667pt;}
.x1b_c00392{left:381.600000pt;}
.x17_c00392{left:384.000000pt;}
.x52_c00392{left:394.304571pt;}
.x2b_c00392{left:395.280000pt;}
.x18_c00392{left:402.000000pt;}
.x27_c00392{left:406.162667pt;}
.x51_c00392{left:407.495600pt;}
.x15_c00392{left:409.440000pt;}
.x19_c00392{left:411.360000pt;}
.x14_c00392{left:414.960000pt;}
.x2c_c00392{left:422.160000pt;}
.x50_c00392{left:429.220944pt;}
.x4f_c00392{left:430.309029pt;}
.x4e_c00392{left:432.825056pt;}
.x28_c00392{left:434.726667pt;}
.x38_c00392{left:437.182667pt;}
.x11_c00392{left:438.240000pt;}
.x13_c00392{left:439.920000pt;}
.x4d_c00392{left:446.025755pt;}
.x4c_c00392{left:447.111509pt;}
.x12_c00392{left:449.280000pt;}
.x4b_c00392{left:451.916885pt;}
.x10_c00392{left:455.520000pt;}
.x39_c00392{left:464.284000pt;}
.x4a_c00392{left:465.392624pt;}
.x49_c00392{left:466.552571pt;}
.x24_c00392{left:471.360000pt;}
.xe_c00392{left:483.840000pt;}
.x25_c00392{left:486.480000pt;}
.x3a_c00392{left:490.689333pt;}
.x48_c00392{left:493.742800pt;}
.x47_c00392{left:494.874144pt;}
.xf_c00392{left:499.920000pt;}
.x46_c00392{left:503.150443pt;}
.x45_c00392{left:504.233381pt;}
.x44_c00392{left:511.025136pt;}
.x43_c00392{left:512.153029pt;}
.xc_c00392{left:529.920000pt;}
.x42_c00392{left:531.117179pt;}
.xb_c00392{left:539.760000pt;}
.x9_c00392{left:544.080000pt;}
.xa_c00392{left:545.520000pt;}
.x8_c00392{left:547.200000pt;}
.x6_c00392{left:550.320000pt;}
.xd_c00392{left:552.000000pt;}
.x41_c00392{left:552.915664pt;}
.x40_c00392{left:564.242405pt;}
.x3f_c00392{left:565.441333pt;}
.x7_c00392{left:583.200000pt;}
.x5a_c00392{left:590.400000pt;}
.x4_c00392{left:593.280000pt;}
.x5_c00392{left:594.240000pt;}
.x5b_c00392{left:609.360000pt;}
.x3b_c00392{left:613.374667pt;}
.x3_c00392{left:621.600000pt;}
.x3c_c00392{left:641.938667pt;}
.x2_c00392{left:651.840000pt;}
.x1_c00392{left:692.880000pt;}
.x23_c00392{left:702.240000pt;}
}





/* 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_c00393 {
    display:none;
  }
  .loading-indicator_c00393.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00393 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_c00393 { 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_c00393" -> "#page-container .classname_c00393")
 */
.pf_c00393 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00393 { /* 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_c00393.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00393 { /* 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_c00393 { /* 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_c00393 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00393 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00393 {overflow:visible;}
  }
}
.c_c00393 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00393 { /* 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_c00393:after { /* webkit #35443 */
  content: '';
}
.t_c00393:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00393 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 */
}
.__c00393 { /* 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_c00393 { /* info for Javascript */
  display:none;
}
.l_c00393 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00393 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00393 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00393: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_c00393 {
    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_c00393.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00393.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_c00393 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00393{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00393;src:url('chunks/assets/font_c605e72f209fc835e906f064.woff2')format("woff");}.ff1_c00393{font-family:ff1_c00393;line-height:1.000000;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;}
.m25_c00393{transform:matrix(0.007899,-0.000300,0.009503,0.249819,0,0);-ms-transform:matrix(0.007899,-0.000300,0.009503,0.249819,0,0);-webkit-transform:matrix(0.007899,-0.000300,0.009503,0.249819,0,0);}
.m24_c00393{transform:matrix(0.017667,-0.000672,0.009503,0.249819,0,0);-ms-transform:matrix(0.017667,-0.000672,0.009503,0.249819,0,0);-webkit-transform:matrix(0.017667,-0.000672,0.009503,0.249819,0,0);}
.m2c_c00393{transform:matrix(0.095670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.095670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.095670,0.000000,0.000000,0.250000,0,0);}
.m1e_c00393{transform:matrix(0.126698,-0.004819,0.009503,0.249819,0,0);-ms-transform:matrix(0.126698,-0.004819,0.009503,0.249819,0,0);-webkit-transform:matrix(0.126698,-0.004819,0.009503,0.249819,0,0);}
.m2a_c00393{transform:matrix(0.132885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132885,0.000000,0.000000,0.250000,0,0);}
.m2e_c00393{transform:matrix(0.148975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148975,0.000000,0.000000,0.250000,0,0);}
.m1_c00393{transform:matrix(0.155081,-0.004807,0.007746,0.249880,0,0);-ms-transform:matrix(0.155081,-0.004807,0.007746,0.249880,0,0);-webkit-transform:matrix(0.155081,-0.004807,0.007746,0.249880,0,0);}
.m13_c00393{transform:matrix(0.157495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157495,0.000000,0.000000,0.250000,0,0);}
.m17_c00393{transform:matrix(0.169174,-0.003722,0.005499,0.249940,0,0);-ms-transform:matrix(0.169174,-0.003722,0.005499,0.249940,0,0);-webkit-transform:matrix(0.169174,-0.003722,0.005499,0.249940,0,0);}
.m2_c00393{transform:matrix(0.183427,-0.005686,0.007746,0.249880,0,0);-ms-transform:matrix(0.183427,-0.005686,0.007746,0.249880,0,0);-webkit-transform:matrix(0.183427,-0.005686,0.007746,0.249880,0,0);}
.m3_c00393{transform:matrix(0.191028,-0.005922,0.007746,0.249880,0,0);-ms-transform:matrix(0.191028,-0.005922,0.007746,0.249880,0,0);-webkit-transform:matrix(0.191028,-0.005922,0.007746,0.249880,0,0);}
.m0_c00393{transform:matrix(0.196431,-0.006089,0.007746,0.249880,0,0);-ms-transform:matrix(0.196431,-0.006089,0.007746,0.249880,0,0);-webkit-transform:matrix(0.196431,-0.006089,0.007746,0.249880,0,0);}
.m11_c00393{transform:matrix(0.198545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198545,0.000000,0.000000,0.250000,0,0);}
.m4_c00393{transform:matrix(0.201073,-0.006233,0.007746,0.249880,0,0);-ms-transform:matrix(0.201073,-0.006233,0.007746,0.249880,0,0);-webkit-transform:matrix(0.201073,-0.006233,0.007746,0.249880,0,0);}
.m5_c00393{transform:matrix(0.202273,-0.006270,0.007746,0.249880,0,0);-ms-transform:matrix(0.202273,-0.006270,0.007746,0.249880,0,0);-webkit-transform:matrix(0.202273,-0.006270,0.007746,0.249880,0,0);}
.m1f_c00393{transform:matrix(0.205252,-0.007807,0.009503,0.249819,0,0);-ms-transform:matrix(0.205252,-0.007807,0.009503,0.249819,0,0);-webkit-transform:matrix(0.205252,-0.007807,0.009503,0.249819,0,0);}
.m12_c00393{transform:matrix(0.209805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209805,0.000000,0.000000,0.250000,0,0);}
.m32_c00393{transform:matrix(0.226716,0.003627,-0.003999,0.249968,0,0);-ms-transform:matrix(0.226716,0.003627,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.226716,0.003627,-0.003999,0.249968,0,0);}
.m16_c00393{transform:matrix(0.227190,-0.004998,0.005499,0.249940,0,0);-ms-transform:matrix(0.227190,-0.004998,0.005499,0.249940,0,0);-webkit-transform:matrix(0.227190,-0.004998,0.005499,0.249940,0,0);}
.m10_c00393{transform:matrix(0.227280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227280,0.000000,0.000000,0.250000,0,0);}
.m14_c00393{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m35_c00393{transform:matrix(0.234330,0.003749,-0.003999,0.249968,0,0);-ms-transform:matrix(0.234330,0.003749,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.234330,0.003749,-0.003999,0.249968,0,0);}
.mb_c00393{transform:matrix(0.234454,-0.003517,0.003750,0.249972,0,0);-ms-transform:matrix(0.234454,-0.003517,0.003750,0.249972,0,0);-webkit-transform:matrix(0.234454,-0.003517,0.003750,0.249972,0,0);}
.m33_c00393{transform:matrix(0.234505,0.003752,-0.003999,0.249968,0,0);-ms-transform:matrix(0.234505,0.003752,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.234505,0.003752,-0.003999,0.249968,0,0);}
.m9_c00393{transform:matrix(0.238248,-0.003574,0.003750,0.249972,0,0);-ms-transform:matrix(0.238248,-0.003574,0.003750,0.249972,0,0);-webkit-transform:matrix(0.238248,-0.003574,0.003750,0.249972,0,0);}
.m31_c00393{transform:matrix(0.246173,0.003939,-0.003999,0.249968,0,0);-ms-transform:matrix(0.246173,0.003939,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.246173,0.003939,-0.003999,0.249968,0,0);}
.mc_c00393{transform:matrix(0.248872,-0.003733,0.003750,0.249972,0,0);-ms-transform:matrix(0.248872,-0.003733,0.003750,0.249972,0,0);-webkit-transform:matrix(0.248872,-0.003733,0.003750,0.249972,0,0);}
.m1c_c00393{transform:matrix(0.257003,-0.005654,0.005499,0.249940,0,0);-ms-transform:matrix(0.257003,-0.005654,0.005499,0.249940,0,0);-webkit-transform:matrix(0.257003,-0.005654,0.005499,0.249940,0,0);}
.m19_c00393{transform:matrix(0.257833,-0.005672,0.005499,0.249940,0,0);-ms-transform:matrix(0.257833,-0.005672,0.005499,0.249940,0,0);-webkit-transform:matrix(0.257833,-0.005672,0.005499,0.249940,0,0);}
.m8_c00393{transform:matrix(0.258716,-0.003881,0.003750,0.249972,0,0);-ms-transform:matrix(0.258716,-0.003881,0.003750,0.249972,0,0);-webkit-transform:matrix(0.258716,-0.003881,0.003750,0.249972,0,0);}
.m1a_c00393{transform:matrix(0.260782,-0.005737,0.005499,0.249940,0,0);-ms-transform:matrix(0.260782,-0.005737,0.005499,0.249940,0,0);-webkit-transform:matrix(0.260782,-0.005737,0.005499,0.249940,0,0);}
.m2b_c00393{transform:matrix(0.262395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262395,0.000000,0.000000,0.250000,0,0);}
.m1b_c00393{transform:matrix(0.264146,-0.005811,0.005499,0.249940,0,0);-ms-transform:matrix(0.264146,-0.005811,0.005499,0.249940,0,0);-webkit-transform:matrix(0.264146,-0.005811,0.005499,0.249940,0,0);}
.ma_c00393{transform:matrix(0.270665,-0.004060,0.003750,0.249972,0,0);-ms-transform:matrix(0.270665,-0.004060,0.003750,0.249972,0,0);-webkit-transform:matrix(0.270665,-0.004060,0.003750,0.249972,0,0);}
.m18_c00393{transform:matrix(0.271404,-0.005971,0.005499,0.249940,0,0);-ms-transform:matrix(0.271404,-0.005971,0.005499,0.249940,0,0);-webkit-transform:matrix(0.271404,-0.005971,0.005499,0.249940,0,0);}
.m30_c00393{transform:matrix(0.272335,0.004357,-0.003999,0.249968,0,0);-ms-transform:matrix(0.272335,0.004357,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.272335,0.004357,-0.003999,0.249968,0,0);}
.m28_c00393{transform:matrix(0.285578,-0.010863,0.009503,0.249819,0,0);-ms-transform:matrix(0.285578,-0.010863,0.009503,0.249819,0,0);-webkit-transform:matrix(0.285578,-0.010863,0.009503,0.249819,0,0);}
.m34_c00393{transform:matrix(0.285748,0.004572,-0.003999,0.249968,0,0);-ms-transform:matrix(0.285748,0.004572,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.285748,0.004572,-0.003999,0.249968,0,0);}
.me_c00393{transform:matrix(0.290452,-0.004357,0.003750,0.249972,0,0);-ms-transform:matrix(0.290452,-0.004357,0.003750,0.249972,0,0);-webkit-transform:matrix(0.290452,-0.004357,0.003750,0.249972,0,0);}
.md_c00393{transform:matrix(0.293482,-0.004402,0.003750,0.249972,0,0);-ms-transform:matrix(0.293482,-0.004402,0.003750,0.249972,0,0);-webkit-transform:matrix(0.293482,-0.004402,0.003750,0.249972,0,0);}
.m27_c00393{transform:matrix(0.298989,-0.011373,0.009503,0.249819,0,0);-ms-transform:matrix(0.298989,-0.011373,0.009503,0.249819,0,0);-webkit-transform:matrix(0.298989,-0.011373,0.009503,0.249819,0,0);}
.m1d_c00393{transform:matrix(0.299188,-0.006582,0.005499,0.249940,0,0);-ms-transform:matrix(0.299188,-0.006582,0.005499,0.249940,0,0);-webkit-transform:matrix(0.299188,-0.006582,0.005499,0.249940,0,0);}
.m36_c00393{transform:matrix(0.305331,0.004885,-0.003999,0.249968,0,0);-ms-transform:matrix(0.305331,0.004885,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.305331,0.004885,-0.003999,0.249968,0,0);}
.m23_c00393{transform:matrix(0.307483,-0.011696,0.009503,0.249819,0,0);-ms-transform:matrix(0.307483,-0.011696,0.009503,0.249819,0,0);-webkit-transform:matrix(0.307483,-0.011696,0.009503,0.249819,0,0);}
.m20_c00393{transform:matrix(0.356387,-0.013556,0.009503,0.249819,0,0);-ms-transform:matrix(0.356387,-0.013556,0.009503,0.249819,0,0);-webkit-transform:matrix(0.356387,-0.013556,0.009503,0.249819,0,0);}
.mf_c00393{transform:matrix(0.360475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360475,0.000000,0.000000,0.250000,0,0);}
.m7_c00393{transform:matrix(0.408474,-0.006127,0.003750,0.249972,0,0);-ms-transform:matrix(0.408474,-0.006127,0.003750,0.249972,0,0);-webkit-transform:matrix(0.408474,-0.006127,0.003750,0.249972,0,0);}
.m15_c00393{transform:matrix(0.429636,-0.009452,0.005499,0.249940,0,0);-ms-transform:matrix(0.429636,-0.009452,0.005499,0.249940,0,0);-webkit-transform:matrix(0.429636,-0.009452,0.005499,0.249940,0,0);}
.m29_c00393{transform:matrix(0.453230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453230,0.000000,0.000000,0.250000,0,0);}
.m21_c00393{transform:matrix(0.539765,-0.020532,0.009503,0.249819,0,0);-ms-transform:matrix(0.539765,-0.020532,0.009503,0.249819,0,0);-webkit-transform:matrix(0.539765,-0.020532,0.009503,0.249819,0,0);}
.m26_c00393{transform:matrix(0.593086,-0.022560,0.009503,0.249819,0,0);-ms-transform:matrix(0.593086,-0.022560,0.009503,0.249819,0,0);-webkit-transform:matrix(0.593086,-0.022560,0.009503,0.249819,0,0);}
.m6_c00393{transform:matrix(0.610780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.610780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.610780,0.000000,0.000000,0.250000,0,0);}
.m22_c00393{transform:matrix(0.615450,-0.023411,0.009503,0.249819,0,0);-ms-transform:matrix(0.615450,-0.023411,0.009503,0.249819,0,0);-webkit-transform:matrix(0.615450,-0.023411,0.009503,0.249819,0,0);}
.m2d_c00393{transform:matrix(0.660135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.660135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.660135,0.000000,0.000000,0.250000,0,0);}
.m2f_c00393{transform:matrix(0.693955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.693955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.693955,0.000000,0.000000,0.250000,0,0);}
.v0_c00393{vertical-align:0.000000px;}
.ls0_c00393{letter-spacing:0.000000px;}
.sc__c00393{text-shadow:none;}
.sc0_c00393{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__c00393{-webkit-text-stroke:0px transparent;}
.sc0_c00393{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00393{word-spacing:0.000000px;}
.fc0_c00393{color:transparent;}
.fs8_c00393{font-size:12.000000px;}
.fs1_c00393{font-size:18.000000px;}
.fs9_c00393{font-size:24.000000px;}
.fs7_c00393{font-size:30.000000px;}
.fs5_c00393{font-size:41.988343px;}
.fs2_c00393{font-size:66.007425px;}
.fsa_c00393{font-size:72.009215px;}
.fs4_c00393{font-size:78.018874px;}
.fs3_c00393{font-size:84.000000px;}
.fs0_c00393{font-size:102.048999px;}
.fs6_c00393{font-size:107.970026px;}
.y0_c00393{bottom:0.000000px;}
.y2a_c00393{bottom:923.130000px;}
.y29_c00393{bottom:928.800000px;}
.y31_c00393{bottom:930.647904px;}
.y30_c00393{bottom:931.181856px;}
.y2f_c00393{bottom:933.158136px;}
.y2e_c00393{bottom:933.682680px;}
.y2d_c00393{bottom:934.188264px;}
.y2c_c00393{bottom:934.896648px;}
.y2b_c00393{bottom:936.633000px;}
.y28_c00393{bottom:943.380000px;}
.y27_c00393{bottom:946.080000px;}
.y26_c00393{bottom:950.400000px;}
.y1e_c00393{bottom:951.254262px;}
.y25_c00393{bottom:954.183000px;}
.y1f_c00393{bottom:957.605088px;}
.y20_c00393{bottom:961.765933px;}
.y21_c00393{bottom:964.339580px;}
.y22_c00393{bottom:965.114491px;}
.y23_c00393{bottom:970.208318px;}
.y24_c00393{bottom:970.694550px;}
.y1a_c00393{bottom:985.513500px;}
.y1b_c00393{bottom:986.587323px;}
.y1c_c00393{bottom:990.388482px;}
.y1d_c00393{bottom:991.556127px;}
.y11_c00393{bottom:1001.517000px;}
.y12_c00393{bottom:1003.086678px;}
.y13_c00393{bottom:1003.834161px;}
.y14_c00393{bottom:1005.092550px;}
.y15_c00393{bottom:1007.005956px;}
.y16_c00393{bottom:1009.426407px;}
.y17_c00393{bottom:1010.396343px;}
.y18_c00393{bottom:1012.622391px;}
.y19_c00393{bottom:1013.294238px;}
.y10_c00393{bottom:1038.897000px;}
.y8_c00393{bottom:1072.714500px;}
.y9_c00393{bottom:1073.397668px;}
.ya_c00393{bottom:1073.928330px;}
.yb_c00393{bottom:1074.418560px;}
.yc_c00393{bottom:1075.127603px;}
.yd_c00393{bottom:1076.079375px;}
.ye_c00393{bottom:1076.540715px;}
.yf_c00393{bottom:1077.575243px;}
.y7_c00393{bottom:1104.843000px;}
.y1_c00393{bottom:1109.176500px;}
.y2_c00393{bottom:1112.657258px;}
.y3_c00393{bottom:1113.636873px;}
.y4_c00393{bottom:1115.014854px;}
.y5_c00393{bottom:1116.078355px;}
.y6_c00393{bottom:1117.709994px;}
.ha_c00393{height:12.000000px;}
.h3_c00393{height:18.000000px;}
.hb_c00393{height:24.000000px;}
.h9_c00393{height:30.000000px;}
.h7_c00393{height:41.988343px;}
.h4_c00393{height:66.007425px;}
.hc_c00393{height:72.009215px;}
.h6_c00393{height:78.018874px;}
.h5_c00393{height:84.000000px;}
.h2_c00393{height:102.048999px;}
.h8_c00393{height:107.970026px;}
.h1_c00393{height:1251.000000px;}
.h0_c00393{height:1251.150000px;}
.w0_c00393{width:915.000000px;}
.x0_c00393{left:0.000000px;}
.x8_c00393{left:51.337500px;}
.xf_c00393{left:56.970000px;}
.x15_c00393{left:60.466500px;}
.x1_c00393{left:75.046500px;}
.x1f_c00393{left:90.557054px;}
.x9_c00393{left:96.882000px;}
.xa_c00393{left:132.259500px;}
.x10_c00393{left:141.750000px;}
.xb_c00393{left:164.941500px;}
.x2_c00393{left:187.329000px;}
.x11_c00393{left:199.260000px;}
.xc_c00393{left:212.211000px;}
.x3_c00393{left:218.929500px;}
.x16_c00393{left:222.991500px;}
.x12_c00393{left:230.850000px;}
.x2b_c00393{left:257.677500px;}
.x20_c00393{left:262.014429px;}
.x4_c00393{left:263.380500px;}
.xd_c00393{left:275.662500px;}
.x13_c00393{left:281.070000px;}
.x5_c00393{left:297.687000px;}
.xe_c00393{left:306.418500px;}
.x14_c00393{left:309.420000px;}
.x6_c00393{left:350.320500px;}
.x2c_c00393{left:366.199500px;}
.x7_c00393{left:375.030000px;}
.x2d_c00393{left:410.473500px;}
.x17_c00393{left:419.985000px;}
.x2e_c00393{left:442.072500px;}
.x21_c00393{left:443.834331px;}
.x18_c00393{left:464.073000px;}
.x2f_c00393{left:474.856500px;}
.x1b_c00393{left:511.717500px;}
.x1c_c00393{left:539.947742px;}
.x19_c00393{left:565.257000px;}
.x1a_c00393{left:595.795500px;}
.x30_c00393{left:598.374000px;}
.x22_c00393{left:602.302253px;}
.x23_c00393{left:615.440115px;}
.x31_c00393{left:631.746000px;}
.x1d_c00393{left:639.878211px;}
.x24_c00393{left:645.570000px;}
.x2a_c00393{left:650.700000px;}
.x29_c00393{left:658.530000px;}
.x28_c00393{left:662.850000px;}
.x27_c00393{left:666.630000px;}
.x1e_c00393{left:670.574984px;}
.x25_c00393{left:675.000000px;}
.x26_c00393{left:677.430000px;}
@media print{
.v0_c00393{vertical-align:0.000000pt;}
.ls0_c00393{letter-spacing:0.000000pt;}
.ws0_c00393{word-spacing:0.000000pt;}
.fs8_c00393{font-size:10.666667pt;}
.fs1_c00393{font-size:16.000000pt;}
.fs9_c00393{font-size:21.333333pt;}
.fs7_c00393{font-size:26.666667pt;}
.fs5_c00393{font-size:37.322972pt;}
.fs2_c00393{font-size:58.673266pt;}
.fsa_c00393{font-size:64.008191pt;}
.fs4_c00393{font-size:69.350110pt;}
.fs3_c00393{font-size:74.666667pt;}
.fs0_c00393{font-size:90.710222pt;}
.fs6_c00393{font-size:95.973356pt;}
.y0_c00393{bottom:0.000000pt;}
.y2a_c00393{bottom:820.560000pt;}
.y29_c00393{bottom:825.600000pt;}
.y31_c00393{bottom:827.242581pt;}
.y30_c00393{bottom:827.717205pt;}
.y2f_c00393{bottom:829.473899pt;}
.y2e_c00393{bottom:829.940160pt;}
.y2d_c00393{bottom:830.389568pt;}
.y2c_c00393{bottom:831.019243pt;}
.y2b_c00393{bottom:832.562667pt;}
.y28_c00393{bottom:838.560000pt;}
.y27_c00393{bottom:840.960000pt;}
.y26_c00393{bottom:844.800000pt;}
.y1e_c00393{bottom:845.559344pt;}
.y25_c00393{bottom:848.162667pt;}
.y1f_c00393{bottom:851.204523pt;}
.y20_c00393{bottom:854.903052pt;}
.y21_c00393{bottom:857.190737pt;}
.y22_c00393{bottom:857.879548pt;}
.y23_c00393{bottom:862.407393pt;}
.y24_c00393{bottom:862.839600pt;}
.y1a_c00393{bottom:876.012000pt;}
.y1b_c00393{bottom:876.966509pt;}
.y1c_c00393{bottom:880.345317pt;}
.y1d_c00393{bottom:881.383224pt;}
.y11_c00393{bottom:890.237333pt;}
.y12_c00393{bottom:891.632603pt;}
.y13_c00393{bottom:892.297032pt;}
.y14_c00393{bottom:893.415600pt;}
.y15_c00393{bottom:895.116405pt;}
.y16_c00393{bottom:897.267917pt;}
.y17_c00393{bottom:898.130083pt;}
.y18_c00393{bottom:900.108792pt;}
.y19_c00393{bottom:900.705989pt;}
.y10_c00393{bottom:923.464000pt;}
.y8_c00393{bottom:953.524000pt;}
.y9_c00393{bottom:954.131260pt;}
.ya_c00393{bottom:954.602960pt;}
.yb_c00393{bottom:955.038720pt;}
.yc_c00393{bottom:955.668980pt;}
.yd_c00393{bottom:956.515000pt;}
.ye_c00393{bottom:956.925080pt;}
.yf_c00393{bottom:957.844660pt;}
.y7_c00393{bottom:982.082667pt;}
.y1_c00393{bottom:985.934667pt;}
.y2_c00393{bottom:989.028673pt;}
.y3_c00393{bottom:989.899443pt;}
.y4_c00393{bottom:991.124315pt;}
.y5_c00393{bottom:992.069649pt;}
.y6_c00393{bottom:993.519995pt;}
.ha_c00393{height:10.666667pt;}
.h3_c00393{height:16.000000pt;}
.hb_c00393{height:21.333333pt;}
.h9_c00393{height:26.666667pt;}
.h7_c00393{height:37.322972pt;}
.h4_c00393{height:58.673266pt;}
.hc_c00393{height:64.008191pt;}
.h6_c00393{height:69.350110pt;}
.h5_c00393{height:74.666667pt;}
.h2_c00393{height:90.710222pt;}
.h8_c00393{height:95.973356pt;}
.h1_c00393{height:1112.000000pt;}
.h0_c00393{height:1112.133333pt;}
.w0_c00393{width:813.333333pt;}
.x0_c00393{left:0.000000pt;}
.x8_c00393{left:45.633333pt;}
.xf_c00393{left:50.640000pt;}
.x15_c00393{left:53.748000pt;}
.x1_c00393{left:66.708000pt;}
.x1f_c00393{left:80.495159pt;}
.x9_c00393{left:86.117333pt;}
.xa_c00393{left:117.564000pt;}
.x10_c00393{left:126.000000pt;}
.xb_c00393{left:146.614667pt;}
.x2_c00393{left:166.514667pt;}
.x11_c00393{left:177.120000pt;}
.xc_c00393{left:188.632000pt;}
.x3_c00393{left:194.604000pt;}
.x16_c00393{left:198.214667pt;}
.x12_c00393{left:205.200000pt;}
.x2b_c00393{left:229.046667pt;}
.x20_c00393{left:232.901715pt;}
.x4_c00393{left:234.116000pt;}
.xd_c00393{left:245.033333pt;}
.x13_c00393{left:249.840000pt;}
.x5_c00393{left:264.610667pt;}
.xe_c00393{left:272.372000pt;}
.x14_c00393{left:275.040000pt;}
.x6_c00393{left:311.396000pt;}
.x2c_c00393{left:325.510667pt;}
.x7_c00393{left:333.360000pt;}
.x2d_c00393{left:364.865333pt;}
.x17_c00393{left:373.320000pt;}
.x2e_c00393{left:392.953333pt;}
.x21_c00393{left:394.519405pt;}
.x18_c00393{left:412.509333pt;}
.x2f_c00393{left:422.094667pt;}
.x1b_c00393{left:454.860000pt;}
.x1c_c00393{left:479.953548pt;}
.x19_c00393{left:502.450667pt;}
.x1a_c00393{left:529.596000pt;}
.x30_c00393{left:531.888000pt;}
.x22_c00393{left:535.379780pt;}
.x23_c00393{left:547.057880pt;}
.x31_c00393{left:561.552000pt;}
.x1d_c00393{left:568.780632pt;}
.x24_c00393{left:573.840000pt;}
.x2a_c00393{left:578.400000pt;}
.x29_c00393{left:585.360000pt;}
.x28_c00393{left:589.200000pt;}
.x27_c00393{left:592.560000pt;}
.x1e_c00393{left:596.066652pt;}
.x25_c00393{left:600.000000pt;}
.x26_c00393{left:602.160000pt;}
}





/* 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_c00394 {
    display:none;
  }
  .loading-indicator_c00394.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00394 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_c00394 { 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_c00394" -> "#page-container .classname_c00394")
 */
.pf_c00394 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00394 { /* 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_c00394.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00394 { /* 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_c00394 { /* 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_c00394 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00394 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00394 {overflow:visible;}
  }
}
.c_c00394 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00394 { /* 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_c00394:after { /* webkit #35443 */
  content: '';
}
.t_c00394:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00394 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 */
}
.__c00394 { /* 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_c00394 { /* info for Javascript */
  display:none;
}
.l_c00394 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00394 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00394 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00394: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_c00394 {
    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_c00394.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00394.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_c00394 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00394{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00394;src:url('chunks/assets/font_c605e72f209fc835e906f064.woff2')format("woff");}.ff1_c00394{font-family:ff1_c00394;line-height:1.000000;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;}
.m133_c00394{transform:matrix(0.095090,0.004474,-0.011749,0.249724,0,0);-ms-transform:matrix(0.095090,0.004474,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.095090,0.004474,-0.011749,0.249724,0,0);}
.mad_c00394{transform:matrix(0.171568,0.003775,-0.005499,0.249940,0,0);-ms-transform:matrix(0.171568,0.003775,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.171568,0.003775,-0.005499,0.249940,0,0);}
.m13a_c00394{transform:matrix(0.173015,0.005888,-0.008504,0.249855,0,0);-ms-transform:matrix(0.173015,0.005888,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.173015,0.005888,-0.008504,0.249855,0,0);}
.maa_c00394{transform:matrix(0.173243,0.003811,-0.005499,0.249940,0,0);-ms-transform:matrix(0.173243,0.003811,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.173243,0.003811,-0.005499,0.249940,0,0);}
.m7a_c00394{transform:matrix(0.174424,0.004012,-0.005748,0.249934,0,0);-ms-transform:matrix(0.174424,0.004012,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.174424,0.004012,-0.005748,0.249934,0,0);}
.m7e_c00394{transform:matrix(0.174594,0.004016,-0.005748,0.249934,0,0);-ms-transform:matrix(0.174594,0.004016,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.174594,0.004016,-0.005748,0.249934,0,0);}
.m39_c00394{transform:matrix(0.176821,0.004774,-0.006748,0.249909,0,0);-ms-transform:matrix(0.176821,0.004774,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.176821,0.004774,-0.006748,0.249909,0,0);}
.m77_c00394{transform:matrix(0.181347,0.004171,-0.005748,0.249934,0,0);-ms-transform:matrix(0.181347,0.004171,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.181347,0.004171,-0.005748,0.249934,0,0);}
.m13e_c00394{transform:matrix(0.182419,0.006208,-0.008504,0.249855,0,0);-ms-transform:matrix(0.182419,0.006208,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.182419,0.006208,-0.008504,0.249855,0,0);}
.m13f_c00394{transform:matrix(0.183109,0.006232,-0.008504,0.249855,0,0);-ms-transform:matrix(0.183109,0.006232,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.183109,0.006232,-0.008504,0.249855,0,0);}
.ma7_c00394{transform:matrix(0.183881,0.004045,-0.005499,0.249940,0,0);-ms-transform:matrix(0.183881,0.004045,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.183881,0.004045,-0.005499,0.249940,0,0);}
.m83_c00394{transform:matrix(0.184666,0.004247,-0.005748,0.249934,0,0);-ms-transform:matrix(0.184666,0.004247,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.184666,0.004247,-0.005748,0.249934,0,0);}
.m7d_c00394{transform:matrix(0.185781,0.004273,-0.005748,0.249934,0,0);-ms-transform:matrix(0.185781,0.004273,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.185781,0.004273,-0.005748,0.249934,0,0);}
.m81_c00394{transform:matrix(0.186906,0.004299,-0.005748,0.249934,0,0);-ms-transform:matrix(0.186906,0.004299,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.186906,0.004299,-0.005748,0.249934,0,0);}
.m78_c00394{transform:matrix(0.187440,0.004311,-0.005748,0.249934,0,0);-ms-transform:matrix(0.187440,0.004311,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.187440,0.004311,-0.005748,0.249934,0,0);}
.ma6_c00394{transform:matrix(0.187450,0.004124,-0.005499,0.249940,0,0);-ms-transform:matrix(0.187450,0.004124,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.187450,0.004124,-0.005499,0.249940,0,0);}
.ma8_c00394{transform:matrix(0.189019,0.004158,-0.005499,0.249940,0,0);-ms-transform:matrix(0.189019,0.004158,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.189019,0.004158,-0.005499,0.249940,0,0);}
.ma9_c00394{transform:matrix(0.190659,0.004194,-0.005499,0.249940,0,0);-ms-transform:matrix(0.190659,0.004194,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.190659,0.004194,-0.005499,0.249940,0,0);}
.m7b_c00394{transform:matrix(0.191874,0.004413,-0.005748,0.249934,0,0);-ms-transform:matrix(0.191874,0.004413,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.191874,0.004413,-0.005748,0.249934,0,0);}
.m121_c00394{transform:matrix(0.192474,0.006551,-0.008504,0.249855,0,0);-ms-transform:matrix(0.192474,0.006551,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.192474,0.006551,-0.008504,0.249855,0,0);}
.mfa_c00394{transform:matrix(0.193672,0.007173,-0.009253,0.249829,0,0);-ms-transform:matrix(0.193672,0.007173,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.193672,0.007173,-0.009253,0.249829,0,0);}
.mcd_c00394{transform:matrix(0.193758,0.004263,-0.005499,0.249940,0,0);-ms-transform:matrix(0.193758,0.004263,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.193758,0.004263,-0.005499,0.249940,0,0);}
.m139_c00394{transform:matrix(0.194013,0.006603,-0.008504,0.249855,0,0);-ms-transform:matrix(0.194013,0.006603,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.194013,0.006603,-0.008504,0.249855,0,0);}
.mfb_c00394{transform:matrix(0.194407,0.007200,-0.009253,0.249829,0,0);-ms-transform:matrix(0.194407,0.007200,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.194407,0.007200,-0.009253,0.249829,0,0);}
.m58_c00394{transform:matrix(0.194869,0.005261,-0.006748,0.249909,0,0);-ms-transform:matrix(0.194869,0.005261,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.194869,0.005261,-0.006748,0.249909,0,0);}
.md8_c00394{transform:matrix(0.195096,0.007226,-0.009253,0.249829,0,0);-ms-transform:matrix(0.195096,0.007226,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.195096,0.007226,-0.009253,0.249829,0,0);}
.m12_c00394{transform:matrix(0.195159,0.005269,-0.006748,0.249909,0,0);-ms-transform:matrix(0.195159,0.005269,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.195159,0.005269,-0.006748,0.249909,0,0);}
.m6f_c00394{transform:matrix(0.197258,0.005326,-0.006748,0.249909,0,0);-ms-transform:matrix(0.197258,0.005326,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.197258,0.005326,-0.006748,0.249909,0,0);}
.m95_c00394{transform:matrix(0.197282,0.004340,-0.005499,0.249940,0,0);-ms-transform:matrix(0.197282,0.004340,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.197282,0.004340,-0.005499,0.249940,0,0);}
.mac_c00394{transform:matrix(0.198277,0.004362,-0.005499,0.249940,0,0);-ms-transform:matrix(0.198277,0.004362,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.198277,0.004362,-0.005499,0.249940,0,0);}
.mc7_c00394{transform:matrix(0.199652,0.004392,-0.005499,0.249940,0,0);-ms-transform:matrix(0.199652,0.004392,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.199652,0.004392,-0.005499,0.249940,0,0);}
.mf8_c00394{transform:matrix(0.200158,0.007413,-0.009253,0.249829,0,0);-ms-transform:matrix(0.200158,0.007413,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.200158,0.007413,-0.009253,0.249829,0,0);}
.m98_c00394{transform:matrix(0.200262,0.004406,-0.005499,0.249940,0,0);-ms-transform:matrix(0.200262,0.004406,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.200262,0.004406,-0.005499,0.249940,0,0);}
.m10c_c00394{transform:matrix(0.200588,0.008433,-0.010501,0.249779,0,0);-ms-transform:matrix(0.200588,0.008433,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.200588,0.008433,-0.010501,0.249779,0,0);}
.mdd_c00394{transform:matrix(0.200632,0.007431,-0.009253,0.249829,0,0);-ms-transform:matrix(0.200632,0.007431,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.200632,0.007431,-0.009253,0.249829,0,0);}
.m142_c00394{transform:matrix(0.200649,0.006829,-0.008504,0.249855,0,0);-ms-transform:matrix(0.200649,0.006829,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.200649,0.006829,-0.008504,0.249855,0,0);}
.m143_c00394{transform:matrix(0.201149,0.006846,-0.008504,0.249855,0,0);-ms-transform:matrix(0.201149,0.006846,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.201149,0.006846,-0.008504,0.249855,0,0);}
.m125_c00394{transform:matrix(0.201189,0.006847,-0.008504,0.249855,0,0);-ms-transform:matrix(0.201189,0.006847,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.201189,0.006847,-0.008504,0.249855,0,0);}
.m141_c00394{transform:matrix(0.201258,0.006850,-0.008504,0.249855,0,0);-ms-transform:matrix(0.201258,0.006850,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.201258,0.006850,-0.008504,0.249855,0,0);}
.m138_c00394{transform:matrix(0.201678,0.006864,-0.008504,0.249855,0,0);-ms-transform:matrix(0.201678,0.006864,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.201678,0.006864,-0.008504,0.249855,0,0);}
.mae_c00394{transform:matrix(0.202396,0.004453,-0.005499,0.249940,0,0);-ms-transform:matrix(0.202396,0.004453,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.202396,0.004453,-0.005499,0.249940,0,0);}
.m82_c00394{transform:matrix(0.202971,0.004668,-0.005748,0.249934,0,0);-ms-transform:matrix(0.202971,0.004668,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.202971,0.004668,-0.005748,0.249934,0,0);}
.m84_c00394{transform:matrix(0.203366,0.004677,-0.005748,0.249934,0,0);-ms-transform:matrix(0.203366,0.004677,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.203366,0.004677,-0.005748,0.249934,0,0);}
.m90_c00394{transform:matrix(0.203601,0.004479,-0.005499,0.249940,0,0);-ms-transform:matrix(0.203601,0.004479,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.203601,0.004479,-0.005499,0.249940,0,0);}
.m73_c00394{transform:matrix(0.203756,0.005501,-0.006748,0.249909,0,0);-ms-transform:matrix(0.203756,0.005501,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.203756,0.005501,-0.006748,0.249909,0,0);}
.m89_c00394{transform:matrix(0.203806,0.004484,-0.005499,0.249940,0,0);-ms-transform:matrix(0.203806,0.004484,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.203806,0.004484,-0.005499,0.249940,0,0);}
.m5f_c00394{transform:matrix(0.204051,0.005509,-0.006748,0.249909,0,0);-ms-transform:matrix(0.204051,0.005509,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.204051,0.005509,-0.006748,0.249909,0,0);}
.m62_c00394{transform:matrix(0.204116,0.005511,-0.006748,0.249909,0,0);-ms-transform:matrix(0.204116,0.005511,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.204116,0.005511,-0.006748,0.249909,0,0);}
.mc9_c00394{transform:matrix(0.204411,0.004497,-0.005499,0.249940,0,0);-ms-transform:matrix(0.204411,0.004497,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.204411,0.004497,-0.005499,0.249940,0,0);}
.m110_c00394{transform:matrix(0.204874,0.008613,-0.010501,0.249779,0,0);-ms-transform:matrix(0.204874,0.008613,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.204874,0.008613,-0.010501,0.249779,0,0);}
.m86_c00394{transform:matrix(0.205060,0.004511,-0.005499,0.249940,0,0);-ms-transform:matrix(0.205060,0.004511,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.205060,0.004511,-0.005499,0.249940,0,0);}
.m93_c00394{transform:matrix(0.206775,0.004549,-0.005499,0.249940,0,0);-ms-transform:matrix(0.206775,0.004549,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.206775,0.004549,-0.005499,0.249940,0,0);}
.maf_c00394{transform:matrix(0.207150,0.004557,-0.005499,0.249940,0,0);-ms-transform:matrix(0.207150,0.004557,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.207150,0.004557,-0.005499,0.249940,0,0);}
.m76_c00394{transform:matrix(0.207369,0.005599,-0.006748,0.249909,0,0);-ms-transform:matrix(0.207369,0.005599,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.207369,0.005599,-0.006748,0.249909,0,0);}
.m57_c00394{transform:matrix(0.207959,0.005615,-0.006748,0.249909,0,0);-ms-transform:matrix(0.207959,0.005615,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.207959,0.005615,-0.006748,0.249909,0,0);}
.mab_c00394{transform:matrix(0.208045,0.004577,-0.005499,0.249940,0,0);-ms-transform:matrix(0.208045,0.004577,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.208045,0.004577,-0.005499,0.249940,0,0);}
.m65_c00394{transform:matrix(0.209224,0.005649,-0.006748,0.249909,0,0);-ms-transform:matrix(0.209224,0.005649,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.209224,0.005649,-0.006748,0.249909,0,0);}
.m119_c00394{transform:matrix(0.209310,0.008800,-0.010501,0.249779,0,0);-ms-transform:matrix(0.209310,0.008800,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.209310,0.008800,-0.010501,0.249779,0,0);}
.m120_c00394{transform:matrix(0.209334,0.007124,-0.008504,0.249855,0,0);-ms-transform:matrix(0.209334,0.007124,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.209334,0.007124,-0.008504,0.249855,0,0);}
.mfd_c00394{transform:matrix(0.209956,0.007776,-0.009253,0.249829,0,0);-ms-transform:matrix(0.209956,0.007776,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.209956,0.007776,-0.009253,0.249829,0,0);}
.m26_c00394{transform:matrix(0.210218,0.005676,-0.006748,0.249909,0,0);-ms-transform:matrix(0.210218,0.005676,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.210218,0.005676,-0.006748,0.249909,0,0);}
.m79_c00394{transform:matrix(0.210289,0.004837,-0.005748,0.249934,0,0);-ms-transform:matrix(0.210289,0.004837,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.210289,0.004837,-0.005748,0.249934,0,0);}
.m9a_c00394{transform:matrix(0.210779,0.004637,-0.005499,0.249940,0,0);-ms-transform:matrix(0.210779,0.004637,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.210779,0.004637,-0.005499,0.249940,0,0);}
.m18_c00394{transform:matrix(0.211138,0.005701,-0.006748,0.249909,0,0);-ms-transform:matrix(0.211138,0.005701,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.211138,0.005701,-0.006748,0.249909,0,0);}
.m12c_c00394{transform:matrix(0.211316,0.006128,-0.007247,0.249895,0,0);-ms-transform:matrix(0.211316,0.006128,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.211316,0.006128,-0.007247,0.249895,0,0);}
.m5e_c00394{transform:matrix(0.211408,0.005708,-0.006748,0.249909,0,0);-ms-transform:matrix(0.211408,0.005708,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.211408,0.005708,-0.006748,0.249909,0,0);}
.mde_c00394{transform:matrix(0.211485,0.007833,-0.009253,0.249829,0,0);-ms-transform:matrix(0.211485,0.007833,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.211485,0.007833,-0.009253,0.249829,0,0);}
.me8_c00394{transform:matrix(0.211985,0.007851,-0.009253,0.249829,0,0);-ms-transform:matrix(0.211985,0.007851,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.211985,0.007851,-0.009253,0.249829,0,0);}
.m72_c00394{transform:matrix(0.212702,0.005743,-0.006748,0.249909,0,0);-ms-transform:matrix(0.212702,0.005743,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.212702,0.005743,-0.006748,0.249909,0,0);}
.m13d_c00394{transform:matrix(0.212727,0.007240,-0.008504,0.249855,0,0);-ms-transform:matrix(0.212727,0.007240,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.212727,0.007240,-0.008504,0.249855,0,0);}
.m6d_c00394{transform:matrix(0.212852,0.005747,-0.006748,0.249909,0,0);-ms-transform:matrix(0.212852,0.005747,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.212852,0.005747,-0.006748,0.249909,0,0);}
.m13b_c00394{transform:matrix(0.213182,0.007255,-0.008504,0.249855,0,0);-ms-transform:matrix(0.213182,0.007255,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.213182,0.007255,-0.008504,0.249855,0,0);}
.m10f_c00394{transform:matrix(0.213671,0.008983,-0.010501,0.249779,0,0);-ms-transform:matrix(0.213671,0.008983,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.213671,0.008983,-0.010501,0.249779,0,0);}
.m130_c00394{transform:matrix(0.214178,0.010076,-0.011749,0.249724,0,0);-ms-transform:matrix(0.214178,0.010076,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.214178,0.010076,-0.011749,0.249724,0,0);}
.m88_c00394{transform:matrix(0.214633,0.004722,-0.005499,0.249940,0,0);-ms-transform:matrix(0.214633,0.004722,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.214633,0.004722,-0.005499,0.249940,0,0);}
.m113_c00394{transform:matrix(0.214770,0.009029,-0.010501,0.249779,0,0);-ms-transform:matrix(0.214770,0.009029,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.214770,0.009029,-0.010501,0.249779,0,0);}
.m10d_c00394{transform:matrix(0.215060,0.009042,-0.010501,0.249779,0,0);-ms-transform:matrix(0.215060,0.009042,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.215060,0.009042,-0.010501,0.249779,0,0);}
.m8d_c00394{transform:matrix(0.215688,0.004745,-0.005499,0.249940,0,0);-ms-transform:matrix(0.215688,0.004745,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.215688,0.004745,-0.005499,0.249940,0,0);}
.mcb_c00394{transform:matrix(0.216418,0.004761,-0.005499,0.249940,0,0);-ms-transform:matrix(0.216418,0.004761,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.216418,0.004761,-0.005499,0.249940,0,0);}
.m140_c00394{transform:matrix(0.216874,0.007381,-0.008504,0.249855,0,0);-ms-transform:matrix(0.216874,0.007381,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.216874,0.007381,-0.008504,0.249855,0,0);}
.m10e_c00394{transform:matrix(0.217388,0.009139,-0.010501,0.249779,0,0);-ms-transform:matrix(0.217388,0.009139,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.217388,0.009139,-0.010501,0.249779,0,0);}
.m61_c00394{transform:matrix(0.217451,0.005871,-0.006748,0.249909,0,0);-ms-transform:matrix(0.217451,0.005871,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.217451,0.005871,-0.006748,0.249909,0,0);}
.m12b_c00394{transform:matrix(0.217609,0.006311,-0.007247,0.249895,0,0);-ms-transform:matrix(0.217609,0.006311,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.217609,0.006311,-0.007247,0.249895,0,0);}
.m8f_c00394{transform:matrix(0.218567,0.004808,-0.005499,0.249940,0,0);-ms-transform:matrix(0.218567,0.004808,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.218567,0.004808,-0.005499,0.249940,0,0);}
.md0_c00394{transform:matrix(0.218782,0.004813,-0.005499,0.249940,0,0);-ms-transform:matrix(0.218782,0.004813,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.218782,0.004813,-0.005499,0.249940,0,0);}
.m16_c00394{transform:matrix(0.218860,0.005909,-0.006748,0.249909,0,0);-ms-transform:matrix(0.218860,0.005909,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.218860,0.005909,-0.006748,0.249909,0,0);}
.m5b_c00394{transform:matrix(0.218870,0.005909,-0.006748,0.249909,0,0);-ms-transform:matrix(0.218870,0.005909,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.218870,0.005909,-0.006748,0.249909,0,0);}
.m10a_c00394{transform:matrix(0.219226,0.009217,-0.010501,0.249779,0,0);-ms-transform:matrix(0.219226,0.009217,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.219226,0.009217,-0.010501,0.249779,0,0);}
.m13c_c00394{transform:matrix(0.219593,0.007474,-0.008504,0.249855,0,0);-ms-transform:matrix(0.219593,0.007474,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.219593,0.007474,-0.008504,0.249855,0,0);}
.mec_c00394{transform:matrix(0.219954,0.008146,-0.009253,0.249829,0,0);-ms-transform:matrix(0.219954,0.008146,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.219954,0.008146,-0.009253,0.249829,0,0);}
.m80_c00394{transform:matrix(0.220642,0.005075,-0.005748,0.249934,0,0);-ms-transform:matrix(0.220642,0.005075,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.220642,0.005075,-0.005748,0.249934,0,0);}
.m70_c00394{transform:matrix(0.220735,0.005960,-0.006748,0.249909,0,0);-ms-transform:matrix(0.220735,0.005960,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.220735,0.005960,-0.006748,0.249909,0,0);}
.mcc_c00394{transform:matrix(0.220987,0.004862,-0.005499,0.249940,0,0);-ms-transform:matrix(0.220987,0.004862,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.220987,0.004862,-0.005499,0.249940,0,0);}
.m5a_c00394{transform:matrix(0.221879,0.005991,-0.006748,0.249909,0,0);-ms-transform:matrix(0.221879,0.005991,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.221879,0.005991,-0.006748,0.249909,0,0);}
.m97_c00394{transform:matrix(0.222261,0.004890,-0.005499,0.249940,0,0);-ms-transform:matrix(0.222261,0.004890,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.222261,0.004890,-0.005499,0.249940,0,0);}
.m44_c00394{transform:matrix(0.222434,0.006006,-0.006748,0.249909,0,0);-ms-transform:matrix(0.222434,0.006006,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.222434,0.006006,-0.006748,0.249909,0,0);}
.m123_c00394{transform:matrix(0.222591,0.007576,-0.008504,0.249855,0,0);-ms-transform:matrix(0.222591,0.007576,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.222591,0.007576,-0.008504,0.249855,0,0);}
.mda_c00394{transform:matrix(0.222877,0.008255,-0.009253,0.249829,0,0);-ms-transform:matrix(0.222877,0.008255,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.222877,0.008255,-0.009253,0.249829,0,0);}
.m7c_c00394{transform:matrix(0.223051,0.005130,-0.005748,0.249934,0,0);-ms-transform:matrix(0.223051,0.005130,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.223051,0.005130,-0.005748,0.249934,0,0);}
.md5_c00394{transform:matrix(0.223227,0.008268,-0.009253,0.249829,0,0);-ms-transform:matrix(0.223227,0.008268,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.223227,0.008268,-0.009253,0.249829,0,0);}
.m13_c00394{transform:matrix(0.223529,0.006035,-0.006748,0.249909,0,0);-ms-transform:matrix(0.223529,0.006035,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.223529,0.006035,-0.006748,0.249909,0,0);}
.mf7_c00394{transform:matrix(0.223562,0.008280,-0.009253,0.249829,0,0);-ms-transform:matrix(0.223562,0.008280,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.223562,0.008280,-0.009253,0.249829,0,0);}
.ma1_c00394{transform:matrix(0.224286,0.004934,-0.005499,0.249940,0,0);-ms-transform:matrix(0.224286,0.004934,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.224286,0.004934,-0.005499,0.249940,0,0);}
.m85_c00394{transform:matrix(0.224361,0.004936,-0.005499,0.249940,0,0);-ms-transform:matrix(0.224361,0.004936,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.224361,0.004936,-0.005499,0.249940,0,0);}
.m20_c00394{transform:matrix(0.224598,0.006064,-0.006748,0.249909,0,0);-ms-transform:matrix(0.224598,0.006064,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.224598,0.006064,-0.006748,0.249909,0,0);}
.m32_c00394{transform:matrix(0.224668,0.006066,-0.006748,0.249909,0,0);-ms-transform:matrix(0.224668,0.006066,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.224668,0.006066,-0.006748,0.249909,0,0);}
.m19_c00394{transform:matrix(0.224683,0.006066,-0.006748,0.249909,0,0);-ms-transform:matrix(0.224683,0.006066,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.224683,0.006066,-0.006748,0.249909,0,0);}
.mdc_c00394{transform:matrix(0.224826,0.008327,-0.009253,0.249829,0,0);-ms-transform:matrix(0.224826,0.008327,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.224826,0.008327,-0.009253,0.249829,0,0);}
.m9d_c00394{transform:matrix(0.225260,0.004956,-0.005499,0.249940,0,0);-ms-transform:matrix(0.225260,0.004956,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.225260,0.004956,-0.005499,0.249940,0,0);}
.m27_c00394{transform:matrix(0.225263,0.006082,-0.006748,0.249909,0,0);-ms-transform:matrix(0.225263,0.006082,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.225263,0.006082,-0.006748,0.249909,0,0);}
.m109_c00394{transform:matrix(0.225556,0.009483,-0.010501,0.249779,0,0);-ms-transform:matrix(0.225556,0.009483,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.225556,0.009483,-0.010501,0.249779,0,0);}
.m64_c00394{transform:matrix(0.225863,0.006098,-0.006748,0.249909,0,0);-ms-transform:matrix(0.225863,0.006098,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.225863,0.006098,-0.006748,0.249909,0,0);}
.m6c_c00394{transform:matrix(0.225928,0.006100,-0.006748,0.249909,0,0);-ms-transform:matrix(0.225928,0.006100,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.225928,0.006100,-0.006748,0.249909,0,0);}
.mc8_c00394{transform:matrix(0.225955,0.004971,-0.005499,0.249940,0,0);-ms-transform:matrix(0.225955,0.004971,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.225955,0.004971,-0.005499,0.249940,0,0);}
.m87_c00394{transform:matrix(0.226045,0.004973,-0.005499,0.249940,0,0);-ms-transform:matrix(0.226045,0.004973,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.226045,0.004973,-0.005499,0.249940,0,0);}
.m126_c00394{transform:matrix(0.226169,0.007697,-0.008504,0.249855,0,0);-ms-transform:matrix(0.226169,0.007697,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.226169,0.007697,-0.008504,0.249855,0,0);}
.m15_c00394{transform:matrix(0.226273,0.006109,-0.006748,0.249909,0,0);-ms-transform:matrix(0.226273,0.006109,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.226273,0.006109,-0.006748,0.249909,0,0);}
.m68_c00394{transform:matrix(0.226492,0.006115,-0.006748,0.249909,0,0);-ms-transform:matrix(0.226492,0.006115,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.226492,0.006115,-0.006748,0.249909,0,0);}
.m4a_c00394{transform:matrix(0.226662,0.006120,-0.006748,0.249909,0,0);-ms-transform:matrix(0.226662,0.006120,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.226662,0.006120,-0.006748,0.249909,0,0);}
.m6b_c00394{transform:matrix(0.226967,0.006128,-0.006748,0.249909,0,0);-ms-transform:matrix(0.226967,0.006128,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.226967,0.006128,-0.006748,0.249909,0,0);}
.m21_c00394{transform:matrix(0.226977,0.006128,-0.006748,0.249909,0,0);-ms-transform:matrix(0.226977,0.006128,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.226977,0.006128,-0.006748,0.249909,0,0);}
.mf9_c00394{transform:matrix(0.226979,0.008407,-0.009253,0.249829,0,0);-ms-transform:matrix(0.226979,0.008407,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.226979,0.008407,-0.009253,0.249829,0,0);}
.ma4_c00394{transform:matrix(0.226995,0.004994,-0.005499,0.249940,0,0);-ms-transform:matrix(0.226995,0.004994,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.226995,0.004994,-0.005499,0.249940,0,0);}
.m11_c00394{transform:matrix(0.227167,0.006134,-0.006748,0.249909,0,0);-ms-transform:matrix(0.227167,0.006134,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.227167,0.006134,-0.006748,0.249909,0,0);}
.m3e_c00394{transform:matrix(0.227347,0.006138,-0.006748,0.249909,0,0);-ms-transform:matrix(0.227347,0.006138,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.227347,0.006138,-0.006748,0.249909,0,0);}
.m9f_c00394{transform:matrix(0.227695,0.005009,-0.005499,0.249940,0,0);-ms-transform:matrix(0.227695,0.005009,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.227695,0.005009,-0.005499,0.249940,0,0);}
.m102_c00394{transform:matrix(0.227939,0.010039,-0.011000,0.249758,0,0);-ms-transform:matrix(0.227939,0.010039,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.227939,0.010039,-0.011000,0.249758,0,0);}
.m11d_c00394{transform:matrix(0.227959,0.009584,-0.010501,0.249779,0,0);-ms-transform:matrix(0.227959,0.009584,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.227959,0.009584,-0.010501,0.249779,0,0);}
.m112_c00394{transform:matrix(0.228243,0.009596,-0.010501,0.249779,0,0);-ms-transform:matrix(0.228243,0.009596,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.228243,0.009596,-0.010501,0.249779,0,0);}
.m8e_c00394{transform:matrix(0.228295,0.005022,-0.005499,0.249940,0,0);-ms-transform:matrix(0.228295,0.005022,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.228295,0.005022,-0.005499,0.249940,0,0);}
.m100_c00394{transform:matrix(0.228593,0.010068,-0.011000,0.249758,0,0);-ms-transform:matrix(0.228593,0.010068,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.228593,0.010068,-0.011000,0.249758,0,0);}
.m8c_c00394{transform:matrix(0.228955,0.005037,-0.005499,0.249940,0,0);-ms-transform:matrix(0.228955,0.005037,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.228955,0.005037,-0.005499,0.249940,0,0);}
.mcf_c00394{transform:matrix(0.229020,0.005038,-0.005499,0.249940,0,0);-ms-transform:matrix(0.229020,0.005038,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.229020,0.005038,-0.005499,0.249940,0,0);}
.m71_c00394{transform:matrix(0.229956,0.006209,-0.006748,0.249909,0,0);-ms-transform:matrix(0.229956,0.006209,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.229956,0.006209,-0.006748,0.249909,0,0);}
.mb3_c00394{transform:matrix(0.230159,0.005064,-0.005499,0.249940,0,0);-ms-transform:matrix(0.230159,0.005064,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.230159,0.005064,-0.005499,0.249940,0,0);}
.m124_c00394{transform:matrix(0.230297,0.007838,-0.008504,0.249855,0,0);-ms-transform:matrix(0.230297,0.007838,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.230297,0.007838,-0.008504,0.249855,0,0);}
.m12f_c00394{transform:matrix(0.230348,0.006680,-0.007247,0.249895,0,0);-ms-transform:matrix(0.230348,0.006680,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.230348,0.006680,-0.007247,0.249895,0,0);}
.m91_c00394{transform:matrix(0.231064,0.005083,-0.005499,0.249940,0,0);-ms-transform:matrix(0.231064,0.005083,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.231064,0.005083,-0.005499,0.249940,0,0);}
.m122_c00394{transform:matrix(0.231356,0.007874,-0.008504,0.249855,0,0);-ms-transform:matrix(0.231356,0.007874,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.231356,0.007874,-0.008504,0.249855,0,0);}
.m114_c00394{transform:matrix(0.231780,0.009745,-0.010501,0.249779,0,0);-ms-transform:matrix(0.231780,0.009745,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.231780,0.009745,-0.010501,0.249779,0,0);}
.m40_c00394{transform:matrix(0.232200,0.006269,-0.006748,0.249909,0,0);-ms-transform:matrix(0.232200,0.006269,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.232200,0.006269,-0.006748,0.249909,0,0);}
.m6e_c00394{transform:matrix(0.232285,0.006272,-0.006748,0.249909,0,0);-ms-transform:matrix(0.232285,0.006272,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.232285,0.006272,-0.006748,0.249909,0,0);}
.m47_c00394{transform:matrix(0.232320,0.006273,-0.006748,0.249909,0,0);-ms-transform:matrix(0.232320,0.006273,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.232320,0.006273,-0.006748,0.249909,0,0);}
.m136_c00394{transform:matrix(0.232393,0.010933,-0.011749,0.249724,0,0);-ms-transform:matrix(0.232393,0.010933,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.232393,0.010933,-0.011749,0.249724,0,0);}
.m66_c00394{transform:matrix(0.232435,0.006276,-0.006748,0.249909,0,0);-ms-transform:matrix(0.232435,0.006276,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.232435,0.006276,-0.006748,0.249909,0,0);}
.me9_c00394{transform:matrix(0.232436,0.008609,-0.009253,0.249829,0,0);-ms-transform:matrix(0.232436,0.008609,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.232436,0.008609,-0.009253,0.249829,0,0);}
.m12e_c00394{transform:matrix(0.232442,0.006741,-0.007247,0.249895,0,0);-ms-transform:matrix(0.232442,0.006741,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.232442,0.006741,-0.007247,0.249895,0,0);}
.m12d_c00394{transform:matrix(0.233162,0.006762,-0.007247,0.249895,0,0);-ms-transform:matrix(0.233162,0.006762,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.233162,0.006762,-0.007247,0.249895,0,0);}
.ma3_c00394{transform:matrix(0.233513,0.005137,-0.005499,0.249940,0,0);-ms-transform:matrix(0.233513,0.005137,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.233513,0.005137,-0.005499,0.249940,0,0);}
.m2e_c00394{transform:matrix(0.233595,0.006307,-0.006748,0.249909,0,0);-ms-transform:matrix(0.233595,0.006307,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.233595,0.006307,-0.006748,0.249909,0,0);}
.mbe_c00394{transform:matrix(0.233638,0.005140,-0.005499,0.249940,0,0);-ms-transform:matrix(0.233638,0.005140,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.233638,0.005140,-0.005499,0.249940,0,0);}
.m132_c00394{transform:matrix(0.233826,0.011001,-0.011749,0.249724,0,0);-ms-transform:matrix(0.233826,0.011001,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.233826,0.011001,-0.011749,0.249724,0,0);}
.m54_c00394{transform:matrix(0.234385,0.006328,-0.006748,0.249909,0,0);-ms-transform:matrix(0.234385,0.006328,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.234385,0.006328,-0.006748,0.249909,0,0);}
.m2f_c00394{transform:matrix(0.234769,0.006339,-0.006748,0.249909,0,0);-ms-transform:matrix(0.234769,0.006339,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.234769,0.006339,-0.006748,0.249909,0,0);}
.md4_c00394{transform:matrix(0.234929,0.008701,-0.009253,0.249829,0,0);-ms-transform:matrix(0.234929,0.008701,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.234929,0.008701,-0.009253,0.249829,0,0);}
.mc6_c00394{transform:matrix(0.235283,0.005176,-0.005499,0.249940,0,0);-ms-transform:matrix(0.235283,0.005176,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.235283,0.005176,-0.005499,0.249940,0,0);}
.m33_c00394{transform:matrix(0.235669,0.006363,-0.006748,0.249909,0,0);-ms-transform:matrix(0.235669,0.006363,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.235669,0.006363,-0.006748,0.249909,0,0);}
.m94_c00394{transform:matrix(0.235843,0.005189,-0.005499,0.249940,0,0);-ms-transform:matrix(0.235843,0.005189,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.235843,0.005189,-0.005499,0.249940,0,0);}
.m60_c00394{transform:matrix(0.235859,0.006368,-0.006748,0.249909,0,0);-ms-transform:matrix(0.235859,0.006368,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.235859,0.006368,-0.006748,0.249909,0,0);}
.mee_c00394{transform:matrix(0.236403,0.008756,-0.009253,0.249829,0,0);-ms-transform:matrix(0.236403,0.008756,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.236403,0.008756,-0.009253,0.249829,0,0);}
.me3_c00394{transform:matrix(0.236453,0.008758,-0.009253,0.249829,0,0);-ms-transform:matrix(0.236453,0.008758,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.236453,0.008758,-0.009253,0.249829,0,0);}
.m10b_c00394{transform:matrix(0.236476,0.009942,-0.010501,0.249779,0,0);-ms-transform:matrix(0.236476,0.009942,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.236476,0.009942,-0.010501,0.249779,0,0);}
.mca_c00394{transform:matrix(0.236508,0.005203,-0.005499,0.249940,0,0);-ms-transform:matrix(0.236508,0.005203,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.236508,0.005203,-0.005499,0.249940,0,0);}
.m128_c00394{transform:matrix(0.236561,0.006860,-0.007247,0.249895,0,0);-ms-transform:matrix(0.236561,0.006860,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.236561,0.006860,-0.007247,0.249895,0,0);}
.mf6_c00394{transform:matrix(0.236903,0.008774,-0.009253,0.249829,0,0);-ms-transform:matrix(0.236903,0.008774,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.236903,0.008774,-0.009253,0.249829,0,0);}
.m1c_c00394{transform:matrix(0.237084,0.006401,-0.006748,0.249909,0,0);-ms-transform:matrix(0.237084,0.006401,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.237084,0.006401,-0.006748,0.249909,0,0);}
.m25_c00394{transform:matrix(0.237099,0.006402,-0.006748,0.249909,0,0);-ms-transform:matrix(0.237099,0.006402,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.237099,0.006402,-0.006748,0.249909,0,0);}
.m75_c00394{transform:matrix(0.237104,0.006402,-0.006748,0.249909,0,0);-ms-transform:matrix(0.237104,0.006402,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.237104,0.006402,-0.006748,0.249909,0,0);}
.m111_c00394{transform:matrix(0.237375,0.009980,-0.010501,0.249779,0,0);-ms-transform:matrix(0.237375,0.009980,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.237375,0.009980,-0.010501,0.249779,0,0);}
.m29_c00394{transform:matrix(0.237743,0.006419,-0.006748,0.249909,0,0);-ms-transform:matrix(0.237743,0.006419,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.237743,0.006419,-0.006748,0.249909,0,0);}
.m2b_c00394{transform:matrix(0.237758,0.006419,-0.006748,0.249909,0,0);-ms-transform:matrix(0.237758,0.006419,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.237758,0.006419,-0.006748,0.249909,0,0);}
.m74_c00394{transform:matrix(0.237773,0.006420,-0.006748,0.249909,0,0);-ms-transform:matrix(0.237773,0.006420,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.237773,0.006420,-0.006748,0.249909,0,0);}
.m92_c00394{transform:matrix(0.237807,0.005232,-0.005499,0.249940,0,0);-ms-transform:matrix(0.237807,0.005232,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.237807,0.005232,-0.005499,0.249940,0,0);}
.m5c_c00394{transform:matrix(0.237833,0.006421,-0.006748,0.249909,0,0);-ms-transform:matrix(0.237833,0.006421,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.237833,0.006421,-0.006748,0.249909,0,0);}
.mce_c00394{transform:matrix(0.237947,0.005235,-0.005499,0.249940,0,0);-ms-transform:matrix(0.237947,0.005235,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.237947,0.005235,-0.005499,0.249940,0,0);}
.m8a_c00394{transform:matrix(0.237967,0.005235,-0.005499,0.249940,0,0);-ms-transform:matrix(0.237967,0.005235,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.237967,0.005235,-0.005499,0.249940,0,0);}
.m131_c00394{transform:matrix(0.238376,0.011215,-0.011749,0.249724,0,0);-ms-transform:matrix(0.238376,0.011215,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.238376,0.011215,-0.011749,0.249724,0,0);}
.m8b_c00394{transform:matrix(0.238722,0.005252,-0.005499,0.249940,0,0);-ms-transform:matrix(0.238722,0.005252,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.238722,0.005252,-0.005499,0.249940,0,0);}
.m14_c00394{transform:matrix(0.238948,0.006452,-0.006748,0.249909,0,0);-ms-transform:matrix(0.238948,0.006452,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.238948,0.006452,-0.006748,0.249909,0,0);}
.mb7_c00394{transform:matrix(0.239252,0.005264,-0.005499,0.249940,0,0);-ms-transform:matrix(0.239252,0.005264,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.239252,0.005264,-0.005499,0.249940,0,0);}
.m115_c00394{transform:matrix(0.239379,0.010064,-0.010501,0.249779,0,0);-ms-transform:matrix(0.239379,0.010064,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.239379,0.010064,-0.010501,0.249779,0,0);}
.m5d_c00394{transform:matrix(0.239608,0.006469,-0.006748,0.249909,0,0);-ms-transform:matrix(0.239608,0.006469,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.239608,0.006469,-0.006748,0.249909,0,0);}
.m96_c00394{transform:matrix(0.239637,0.005272,-0.005499,0.249940,0,0);-ms-transform:matrix(0.239637,0.005272,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.239637,0.005272,-0.005499,0.249940,0,0);}
.mff_c00394{transform:matrix(0.239678,0.010556,-0.011000,0.249758,0,0);-ms-transform:matrix(0.239678,0.010556,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.239678,0.010556,-0.011000,0.249758,0,0);}
.mfc_c00394{transform:matrix(0.240180,0.008896,-0.009253,0.249829,0,0);-ms-transform:matrix(0.240180,0.008896,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.240180,0.008896,-0.009253,0.249829,0,0);}
.m46_c00394{transform:matrix(0.241907,0.006531,-0.006748,0.249909,0,0);-ms-transform:matrix(0.241907,0.006531,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.241907,0.006531,-0.006748,0.249909,0,0);}
.ma2_c00394{transform:matrix(0.242756,0.005341,-0.005499,0.249940,0,0);-ms-transform:matrix(0.242756,0.005341,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.242756,0.005341,-0.005499,0.249940,0,0);}
.me1_c00394{transform:matrix(0.243208,0.009008,-0.009253,0.249829,0,0);-ms-transform:matrix(0.243208,0.009008,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.243208,0.009008,-0.009253,0.249829,0,0);}
.m135_c00394{transform:matrix(0.244200,0.011489,-0.011749,0.249724,0,0);-ms-transform:matrix(0.244200,0.011489,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.244200,0.011489,-0.011749,0.249724,0,0);}
.m2a_c00394{transform:matrix(0.244386,0.006598,-0.006748,0.249909,0,0);-ms-transform:matrix(0.244386,0.006598,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.244386,0.006598,-0.006748,0.249909,0,0);}
.md6_c00394{transform:matrix(0.244532,0.009057,-0.009253,0.249829,0,0);-ms-transform:matrix(0.244532,0.009057,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.244532,0.009057,-0.009253,0.249829,0,0);}
.mdb_c00394{transform:matrix(0.244757,0.009065,-0.009253,0.249829,0,0);-ms-transform:matrix(0.244757,0.009065,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.244757,0.009065,-0.009253,0.249829,0,0);}
.m45_c00394{transform:matrix(0.244771,0.006609,-0.006748,0.249909,0,0);-ms-transform:matrix(0.244771,0.006609,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.244771,0.006609,-0.006748,0.249909,0,0);}
.m2c_c00394{transform:matrix(0.245141,0.006619,-0.006748,0.249909,0,0);-ms-transform:matrix(0.245141,0.006619,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.245141,0.006619,-0.006748,0.249909,0,0);}
.mb1_c00394{transform:matrix(0.245331,0.005397,-0.005499,0.249940,0,0);-ms-transform:matrix(0.245331,0.005397,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.245331,0.005397,-0.005499,0.249940,0,0);}
.me0_c00394{transform:matrix(0.245547,0.009094,-0.009253,0.249829,0,0);-ms-transform:matrix(0.245547,0.009094,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.245547,0.009094,-0.009253,0.249829,0,0);}
.m38_c00394{transform:matrix(0.245710,0.006634,-0.006748,0.249909,0,0);-ms-transform:matrix(0.245710,0.006634,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.245710,0.006634,-0.006748,0.249909,0,0);}
.m17_c00394{transform:matrix(0.245900,0.006639,-0.006748,0.249909,0,0);-ms-transform:matrix(0.245900,0.006639,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.245900,0.006639,-0.006748,0.249909,0,0);}
.mbc_c00394{transform:matrix(0.245910,0.005410,-0.005499,0.249940,0,0);-ms-transform:matrix(0.245910,0.005410,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.245910,0.005410,-0.005499,0.249940,0,0);}
.mba_c00394{transform:matrix(0.246025,0.005413,-0.005499,0.249940,0,0);-ms-transform:matrix(0.246025,0.005413,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.246025,0.005413,-0.005499,0.249940,0,0);}
.mb5_c00394{transform:matrix(0.246145,0.005415,-0.005499,0.249940,0,0);-ms-transform:matrix(0.246145,0.005415,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.246145,0.005415,-0.005499,0.249940,0,0);}
.m129_c00394{transform:matrix(0.246187,0.007139,-0.007247,0.249895,0,0);-ms-transform:matrix(0.246187,0.007139,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.246187,0.007139,-0.007247,0.249895,0,0);}
.m9b_c00394{transform:matrix(0.246370,0.005420,-0.005499,0.249940,0,0);-ms-transform:matrix(0.246370,0.005420,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.246370,0.005420,-0.005499,0.249940,0,0);}
.meb_c00394{transform:matrix(0.246491,0.009129,-0.009253,0.249829,0,0);-ms-transform:matrix(0.246491,0.009129,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.246491,0.009129,-0.009253,0.249829,0,0);}
.m3d_c00394{transform:matrix(0.246570,0.006657,-0.006748,0.249909,0,0);-ms-transform:matrix(0.246570,0.006657,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.246570,0.006657,-0.006748,0.249909,0,0);}
.mc5_c00394{transform:matrix(0.246670,0.005427,-0.005499,0.249940,0,0);-ms-transform:matrix(0.246670,0.005427,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.246670,0.005427,-0.005499,0.249940,0,0);}
.me6_c00394{transform:matrix(0.246771,0.009140,-0.009253,0.249829,0,0);-ms-transform:matrix(0.246771,0.009140,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.246771,0.009140,-0.009253,0.249829,0,0);}
.m11e_c00394{transform:matrix(0.246812,0.010376,-0.010501,0.249779,0,0);-ms-transform:matrix(0.246812,0.010376,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.246812,0.010376,-0.010501,0.249779,0,0);}
.m4f_c00394{transform:matrix(0.247265,0.006676,-0.006748,0.249909,0,0);-ms-transform:matrix(0.247265,0.006676,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.247265,0.006676,-0.006748,0.249909,0,0);}
.m1f_c00394{transform:matrix(0.247665,0.006687,-0.006748,0.249909,0,0);-ms-transform:matrix(0.247665,0.006687,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.247665,0.006687,-0.006748,0.249909,0,0);}
.m1a_c00394{transform:matrix(0.248055,0.006697,-0.006748,0.249909,0,0);-ms-transform:matrix(0.248055,0.006697,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.248055,0.006697,-0.006748,0.249909,0,0);}
.ma0_c00394{transform:matrix(0.248085,0.005458,-0.005499,0.249940,0,0);-ms-transform:matrix(0.248085,0.005458,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.248085,0.005458,-0.005499,0.249940,0,0);}
.m9c_c00394{transform:matrix(0.248250,0.005461,-0.005499,0.249940,0,0);-ms-transform:matrix(0.248250,0.005461,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.248250,0.005461,-0.005499,0.249940,0,0);}
.mbb_c00394{transform:matrix(0.248390,0.005465,-0.005499,0.249940,0,0);-ms-transform:matrix(0.248390,0.005465,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.248390,0.005465,-0.005499,0.249940,0,0);}
.m6a_c00394{transform:matrix(0.248464,0.006709,-0.006748,0.249909,0,0);-ms-transform:matrix(0.248464,0.006709,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.248464,0.006709,-0.006748,0.249909,0,0);}
.m49_c00394{transform:matrix(0.248569,0.006711,-0.006748,0.249909,0,0);-ms-transform:matrix(0.248569,0.006711,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.248569,0.006711,-0.006748,0.249909,0,0);}
.m104_c00394{transform:matrix(0.248869,0.010961,-0.011000,0.249758,0,0);-ms-transform:matrix(0.248869,0.010961,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.248869,0.010961,-0.011000,0.249758,0,0);}
.md9_c00394{transform:matrix(0.249824,0.009253,-0.009253,0.249829,0,0);-ms-transform:matrix(0.249824,0.009253,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.249824,0.009253,-0.009253,0.249829,0,0);}
.m42_c00394{transform:matrix(0.250064,0.006752,-0.006748,0.249909,0,0);-ms-transform:matrix(0.250064,0.006752,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.250064,0.006752,-0.006748,0.249909,0,0);}
.m1b_c00394{transform:matrix(0.250099,0.006753,-0.006748,0.249909,0,0);-ms-transform:matrix(0.250099,0.006753,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.250099,0.006753,-0.006748,0.249909,0,0);}
.m67_c00394{transform:matrix(0.250714,0.006769,-0.006748,0.249909,0,0);-ms-transform:matrix(0.250714,0.006769,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.250714,0.006769,-0.006748,0.249909,0,0);}
.m117_c00394{transform:matrix(0.251373,0.010568,-0.010501,0.249779,0,0);-ms-transform:matrix(0.251373,0.010568,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.251373,0.010568,-0.010501,0.249779,0,0);}
.m28_c00394{transform:matrix(0.252108,0.006807,-0.006748,0.249909,0,0);-ms-transform:matrix(0.252108,0.006807,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.252108,0.006807,-0.006748,0.249909,0,0);}
.mf5_c00394{transform:matrix(0.252477,0.009351,-0.009253,0.249829,0,0);-ms-transform:matrix(0.252477,0.009351,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.252477,0.009351,-0.009253,0.249829,0,0);}
.mc0_c00394{transform:matrix(0.252974,0.005565,-0.005499,0.249940,0,0);-ms-transform:matrix(0.252974,0.005565,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.252974,0.005565,-0.005499,0.249940,0,0);}
.m69_c00394{transform:matrix(0.253123,0.006834,-0.006748,0.249909,0,0);-ms-transform:matrix(0.253123,0.006834,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.253123,0.006834,-0.006748,0.249909,0,0);}
.mfe_c00394{transform:matrix(0.253145,0.011150,-0.011000,0.249758,0,0);-ms-transform:matrix(0.253145,0.011150,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.253145,0.011150,-0.011000,0.249758,0,0);}
.ma5_c00394{transform:matrix(0.253319,0.005573,-0.005499,0.249940,0,0);-ms-transform:matrix(0.253319,0.005573,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.253319,0.005573,-0.005499,0.249940,0,0);}
.m41_c00394{transform:matrix(0.253498,0.006844,-0.006748,0.249909,0,0);-ms-transform:matrix(0.253498,0.006844,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.253498,0.006844,-0.006748,0.249909,0,0);}
.m106_c00394{transform:matrix(0.253629,0.011171,-0.011000,0.249758,0,0);-ms-transform:matrix(0.253629,0.011171,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.253629,0.011171,-0.011000,0.249758,0,0);}
.m12a_c00394{transform:matrix(0.253908,0.007363,-0.007247,0.249895,0,0);-ms-transform:matrix(0.253908,0.007363,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.253908,0.007363,-0.007247,0.249895,0,0);}
.m3c_c00394{transform:matrix(0.255117,0.006888,-0.006748,0.249909,0,0);-ms-transform:matrix(0.255117,0.006888,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.255117,0.006888,-0.006748,0.249909,0,0);}
.mf2_c00394{transform:matrix(0.255265,0.009454,-0.009253,0.249829,0,0);-ms-transform:matrix(0.255265,0.009454,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.255265,0.009454,-0.009253,0.249829,0,0);}
.m31_c00394{transform:matrix(0.255487,0.006898,-0.006748,0.249909,0,0);-ms-transform:matrix(0.255487,0.006898,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.255487,0.006898,-0.006748,0.249909,0,0);}
.m11f_c00394{transform:matrix(0.255919,0.010759,-0.010501,0.249779,0,0);-ms-transform:matrix(0.255919,0.010759,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.255919,0.010759,-0.010501,0.249779,0,0);}
.m63_c00394{transform:matrix(0.256337,0.006921,-0.006748,0.249909,0,0);-ms-transform:matrix(0.256337,0.006921,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.256337,0.006921,-0.006748,0.249909,0,0);}
.m36_c00394{transform:matrix(0.256651,0.006930,-0.006748,0.249909,0,0);-ms-transform:matrix(0.256651,0.006930,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.256651,0.006930,-0.006748,0.249909,0,0);}
.m3a_c00394{transform:matrix(0.256726,0.006932,-0.006748,0.249909,0,0);-ms-transform:matrix(0.256726,0.006932,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.256726,0.006932,-0.006748,0.249909,0,0);}
.m9e_c00394{transform:matrix(0.256933,0.005653,-0.005499,0.249940,0,0);-ms-transform:matrix(0.256933,0.005653,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.256933,0.005653,-0.005499,0.249940,0,0);}
.m103_c00394{transform:matrix(0.257141,0.011326,-0.011000,0.249758,0,0);-ms-transform:matrix(0.257141,0.011326,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.257141,0.011326,-0.011000,0.249758,0,0);}
.mf3_c00394{transform:matrix(0.257443,0.009535,-0.009253,0.249829,0,0);-ms-transform:matrix(0.257443,0.009535,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.257443,0.009535,-0.009253,0.249829,0,0);}
.md7_c00394{transform:matrix(0.257618,0.009541,-0.009253,0.249829,0,0);-ms-transform:matrix(0.257618,0.009541,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.257618,0.009541,-0.009253,0.249829,0,0);}
.mb6_c00394{transform:matrix(0.258248,0.005681,-0.005499,0.249940,0,0);-ms-transform:matrix(0.258248,0.005681,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.258248,0.005681,-0.005499,0.249940,0,0);}
.m108_c00394{transform:matrix(0.258804,0.011399,-0.011000,0.249758,0,0);-ms-transform:matrix(0.258804,0.011399,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.258804,0.011399,-0.011000,0.249758,0,0);}
.mea_c00394{transform:matrix(0.258843,0.009587,-0.009253,0.249829,0,0);-ms-transform:matrix(0.258843,0.009587,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.258843,0.009587,-0.009253,0.249829,0,0);}
.m137_c00394{transform:matrix(0.259093,0.012190,-0.011749,0.249724,0,0);-ms-transform:matrix(0.259093,0.012190,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.259093,0.012190,-0.011749,0.249724,0,0);}
.me4_c00394{transform:matrix(0.259322,0.009605,-0.009253,0.249829,0,0);-ms-transform:matrix(0.259322,0.009605,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.259322,0.009605,-0.009253,0.249829,0,0);}
.m3f_c00394{transform:matrix(0.259645,0.007010,-0.006748,0.249909,0,0);-ms-transform:matrix(0.259645,0.007010,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.259645,0.007010,-0.006748,0.249909,0,0);}
.mdf_c00394{transform:matrix(0.259702,0.009619,-0.009253,0.249829,0,0);-ms-transform:matrix(0.259702,0.009619,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.259702,0.009619,-0.009253,0.249829,0,0);}
.m35_c00394{transform:matrix(0.259745,0.007013,-0.006748,0.249909,0,0);-ms-transform:matrix(0.259745,0.007013,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.259745,0.007013,-0.006748,0.249909,0,0);}
.mbf_c00394{transform:matrix(0.260422,0.005729,-0.005499,0.249940,0,0);-ms-transform:matrix(0.260422,0.005729,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.260422,0.005729,-0.005499,0.249940,0,0);}
.m1e_c00394{transform:matrix(0.260635,0.007037,-0.006748,0.249909,0,0);-ms-transform:matrix(0.260635,0.007037,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.260635,0.007037,-0.006748,0.249909,0,0);}
.m11b_c00394{transform:matrix(0.260925,0.010970,-0.010501,0.249779,0,0);-ms-transform:matrix(0.260925,0.010970,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.260925,0.010970,-0.010501,0.249779,0,0);}
.m30_c00394{transform:matrix(0.261290,0.007055,-0.006748,0.249909,0,0);-ms-transform:matrix(0.261290,0.007055,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.261290,0.007055,-0.006748,0.249909,0,0);}
.mef_c00394{transform:matrix(0.261845,0.009698,-0.009253,0.249829,0,0);-ms-transform:matrix(0.261845,0.009698,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.261845,0.009698,-0.009253,0.249829,0,0);}
.md2_c00394{transform:matrix(0.263291,0.005792,-0.005499,0.249940,0,0);-ms-transform:matrix(0.263291,0.005792,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.263291,0.005792,-0.005499,0.249940,0,0);}
.m55_c00394{transform:matrix(0.263664,0.007119,-0.006748,0.249909,0,0);-ms-transform:matrix(0.263664,0.007119,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.263664,0.007119,-0.006748,0.249909,0,0);}
.me5_c00394{transform:matrix(0.264254,0.009787,-0.009253,0.249829,0,0);-ms-transform:matrix(0.264254,0.009787,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.264254,0.009787,-0.009253,0.249829,0,0);}
.mc1_c00394{transform:matrix(0.264371,0.005816,-0.005499,0.249940,0,0);-ms-transform:matrix(0.264371,0.005816,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.264371,0.005816,-0.005499,0.249940,0,0);}
.m99_c00394{transform:matrix(0.264496,0.005819,-0.005499,0.249940,0,0);-ms-transform:matrix(0.264496,0.005819,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.264496,0.005819,-0.005499,0.249940,0,0);}
.mc4_c00394{transform:matrix(0.265246,0.005835,-0.005499,0.249940,0,0);-ms-transform:matrix(0.265246,0.005835,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.265246,0.005835,-0.005499,0.249940,0,0);}
.mb2_c00394{transform:matrix(0.265996,0.005852,-0.005499,0.249940,0,0);-ms-transform:matrix(0.265996,0.005852,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.265996,0.005852,-0.005499,0.249940,0,0);}
.mf1_c00394{transform:matrix(0.266068,0.009854,-0.009253,0.249829,0,0);-ms-transform:matrix(0.266068,0.009854,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.266068,0.009854,-0.009253,0.249829,0,0);}
.mb9_c00394{transform:matrix(0.266585,0.005865,-0.005499,0.249940,0,0);-ms-transform:matrix(0.266585,0.005865,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.266585,0.005865,-0.005499,0.249940,0,0);}
.m116_c00394{transform:matrix(0.266754,0.011215,-0.010501,0.249779,0,0);-ms-transform:matrix(0.266754,0.011215,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.266754,0.011215,-0.010501,0.249779,0,0);}
.m37_c00394{transform:matrix(0.266818,0.007204,-0.006748,0.249909,0,0);-ms-transform:matrix(0.266818,0.007204,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.266818,0.007204,-0.006748,0.249909,0,0);}
.m23_c00394{transform:matrix(0.266998,0.007209,-0.006748,0.249909,0,0);-ms-transform:matrix(0.266998,0.007209,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.266998,0.007209,-0.006748,0.249909,0,0);}
.mc3_c00394{transform:matrix(0.267115,0.005877,-0.005499,0.249940,0,0);-ms-transform:matrix(0.267115,0.005877,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.267115,0.005877,-0.005499,0.249940,0,0);}
.mf0_c00394{transform:matrix(0.267242,0.009898,-0.009253,0.249829,0,0);-ms-transform:matrix(0.267242,0.009898,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.267242,0.009898,-0.009253,0.249829,0,0);}
.med_c00394{transform:matrix(0.269091,0.009966,-0.009253,0.249829,0,0);-ms-transform:matrix(0.269091,0.009966,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.269091,0.009966,-0.009253,0.249829,0,0);}
.m4c_c00394{transform:matrix(0.269777,0.007284,-0.006748,0.249909,0,0);-ms-transform:matrix(0.269777,0.007284,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.269777,0.007284,-0.006748,0.249909,0,0);}
.me2_c00394{transform:matrix(0.270190,0.010007,-0.009253,0.249829,0,0);-ms-transform:matrix(0.270190,0.010007,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.270190,0.010007,-0.009253,0.249829,0,0);}
.m11a_c00394{transform:matrix(0.270451,0.011370,-0.010501,0.249779,0,0);-ms-transform:matrix(0.270451,0.011370,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.270451,0.011370,-0.010501,0.249779,0,0);}
.m48_c00394{transform:matrix(0.271501,0.007331,-0.006748,0.249909,0,0);-ms-transform:matrix(0.271501,0.007331,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.271501,0.007331,-0.006748,0.249909,0,0);}
.mb8_c00394{transform:matrix(0.272254,0.005990,-0.005499,0.249940,0,0);-ms-transform:matrix(0.272254,0.005990,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.272254,0.005990,-0.005499,0.249940,0,0);}
.me7_c00394{transform:matrix(0.272673,0.010099,-0.009253,0.249829,0,0);-ms-transform:matrix(0.272673,0.010099,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.272673,0.010099,-0.009253,0.249829,0,0);}
.m101_c00394{transform:matrix(0.272975,0.012023,-0.011000,0.249758,0,0);-ms-transform:matrix(0.272975,0.012023,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.272975,0.012023,-0.011000,0.249758,0,0);}
.m22_c00394{transform:matrix(0.273250,0.007378,-0.006748,0.249909,0,0);-ms-transform:matrix(0.273250,0.007378,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.273250,0.007378,-0.006748,0.249909,0,0);}
.m118_c00394{transform:matrix(0.273503,0.011499,-0.010501,0.249779,0,0);-ms-transform:matrix(0.273503,0.011499,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.273503,0.011499,-0.010501,0.249779,0,0);}
.m34_c00394{transform:matrix(0.273980,0.007397,-0.006748,0.249909,0,0);-ms-transform:matrix(0.273980,0.007397,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.273980,0.007397,-0.006748,0.249909,0,0);}
.mb0_c00394{transform:matrix(0.274549,0.006040,-0.005499,0.249940,0,0);-ms-transform:matrix(0.274549,0.006040,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.274549,0.006040,-0.005499,0.249940,0,0);}
.m4_c00394{transform:matrix(0.275060,0.007427,-0.006748,0.249909,0,0);-ms-transform:matrix(0.275060,0.007427,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.275060,0.007427,-0.006748,0.249909,0,0);}
.md_c00394{transform:matrix(0.275265,0.007432,-0.006748,0.249909,0,0);-ms-transform:matrix(0.275265,0.007432,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.275265,0.007432,-0.006748,0.249909,0,0);}
.m3b_c00394{transform:matrix(0.275285,0.007433,-0.006748,0.249909,0,0);-ms-transform:matrix(0.275285,0.007433,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.275285,0.007433,-0.006748,0.249909,0,0);}
.m2d_c00394{transform:matrix(0.275320,0.007434,-0.006748,0.249909,0,0);-ms-transform:matrix(0.275320,0.007434,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.275320,0.007434,-0.006748,0.249909,0,0);}
.m1d_c00394{transform:matrix(0.275565,0.007440,-0.006748,0.249909,0,0);-ms-transform:matrix(0.275565,0.007440,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.275565,0.007440,-0.006748,0.249909,0,0);}
.m24_c00394{transform:matrix(0.276094,0.007455,-0.006748,0.249909,0,0);-ms-transform:matrix(0.276094,0.007455,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.276094,0.007455,-0.006748,0.249909,0,0);}
.m56_c00394{transform:matrix(0.276824,0.007474,-0.006748,0.249909,0,0);-ms-transform:matrix(0.276824,0.007474,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.276824,0.007474,-0.006748,0.249909,0,0);}
.m59_c00394{transform:matrix(0.276909,0.007477,-0.006748,0.249909,0,0);-ms-transform:matrix(0.276909,0.007477,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.276909,0.007477,-0.006748,0.249909,0,0);}
.mbd_c00394{transform:matrix(0.277253,0.006100,-0.005499,0.249940,0,0);-ms-transform:matrix(0.277253,0.006100,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.277253,0.006100,-0.005499,0.249940,0,0);}
.m11c_c00394{transform:matrix(0.277475,0.011666,-0.010501,0.249779,0,0);-ms-transform:matrix(0.277475,0.011666,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.277475,0.011666,-0.010501,0.249779,0,0);}
.md1_c00394{transform:matrix(0.278278,0.006122,-0.005499,0.249940,0,0);-ms-transform:matrix(0.278278,0.006122,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.278278,0.006122,-0.005499,0.249940,0,0);}
.mc2_c00394{transform:matrix(0.278333,0.006123,-0.005499,0.249940,0,0);-ms-transform:matrix(0.278333,0.006123,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.278333,0.006123,-0.005499,0.249940,0,0);}
.m107_c00394{transform:matrix(0.278540,0.012268,-0.011000,0.249758,0,0);-ms-transform:matrix(0.278540,0.012268,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.278540,0.012268,-0.011000,0.249758,0,0);}
.m50_c00394{transform:matrix(0.278893,0.007530,-0.006748,0.249909,0,0);-ms-transform:matrix(0.278893,0.007530,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.278893,0.007530,-0.006748,0.249909,0,0);}
.m43_c00394{transform:matrix(0.281612,0.007604,-0.006748,0.249909,0,0);-ms-transform:matrix(0.281612,0.007604,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.281612,0.007604,-0.006748,0.249909,0,0);}
.mf4_c00394{transform:matrix(0.283396,0.010496,-0.009253,0.249829,0,0);-ms-transform:matrix(0.283396,0.010496,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.283396,0.010496,-0.009253,0.249829,0,0);}
.mb4_c00394{transform:matrix(0.284706,0.006264,-0.005499,0.249940,0,0);-ms-transform:matrix(0.284706,0.006264,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.284706,0.006264,-0.005499,0.249940,0,0);}
.m134_c00394{transform:matrix(0.285339,0.013424,-0.011749,0.249724,0,0);-ms-transform:matrix(0.285339,0.013424,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.285339,0.013424,-0.011749,0.249724,0,0);}
.m4b_c00394{transform:matrix(0.288765,0.007797,-0.006748,0.249909,0,0);-ms-transform:matrix(0.288765,0.007797,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.288765,0.007797,-0.006748,0.249909,0,0);}
.m51_c00394{transform:matrix(0.291254,0.007864,-0.006748,0.249909,0,0);-ms-transform:matrix(0.291254,0.007864,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.291254,0.007864,-0.006748,0.249909,0,0);}
.md3_c00394{transform:matrix(0.293694,0.006461,-0.005499,0.249940,0,0);-ms-transform:matrix(0.293694,0.006461,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.293694,0.006461,-0.005499,0.249940,0,0);}
.m53_c00394{transform:matrix(0.294733,0.007958,-0.006748,0.249909,0,0);-ms-transform:matrix(0.294733,0.007958,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.294733,0.007958,-0.006748,0.249909,0,0);}
.m7f_c00394{transform:matrix(0.295082,0.006787,-0.005748,0.249934,0,0);-ms-transform:matrix(0.295082,0.006787,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.295082,0.006787,-0.005748,0.249934,0,0);}
.m4e_c00394{transform:matrix(0.295222,0.007971,-0.006748,0.249909,0,0);-ms-transform:matrix(0.295222,0.007971,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.295222,0.007971,-0.006748,0.249909,0,0);}
.m52_c00394{transform:matrix(0.298406,0.008057,-0.006748,0.249909,0,0);-ms-transform:matrix(0.298406,0.008057,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.298406,0.008057,-0.006748,0.249909,0,0);}
.m105_c00394{transform:matrix(0.306338,0.013492,-0.011000,0.249758,0,0);-ms-transform:matrix(0.306338,0.013492,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.306338,0.013492,-0.011000,0.249758,0,0);}
.m9_c00394{transform:matrix(0.322992,0.008721,-0.006748,0.249909,0,0);-ms-transform:matrix(0.322992,0.008721,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.322992,0.008721,-0.006748,0.249909,0,0);}
.mb_c00394{transform:matrix(0.328855,0.008879,-0.006748,0.249909,0,0);-ms-transform:matrix(0.328855,0.008879,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.328855,0.008879,-0.006748,0.249909,0,0);}
.m5_c00394{transform:matrix(0.417578,0.011275,-0.006748,0.249909,0,0);-ms-transform:matrix(0.417578,0.011275,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.417578,0.011275,-0.006748,0.249909,0,0);}
.me_c00394{transform:matrix(0.439160,0.011857,-0.006748,0.249909,0,0);-ms-transform:matrix(0.439160,0.011857,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.439160,0.011857,-0.006748,0.249909,0,0);}
.ma_c00394{transform:matrix(0.505831,0.013657,-0.006748,0.249909,0,0);-ms-transform:matrix(0.505831,0.013657,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.505831,0.013657,-0.006748,0.249909,0,0);}
.m3_c00394{transform:matrix(0.515952,0.013931,-0.006748,0.249909,0,0);-ms-transform:matrix(0.515952,0.013931,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.515952,0.013931,-0.006748,0.249909,0,0);}
.m6_c00394{transform:matrix(0.541883,0.014631,-0.006748,0.249909,0,0);-ms-transform:matrix(0.541883,0.014631,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.541883,0.014631,-0.006748,0.249909,0,0);}
.mc_c00394{transform:matrix(0.556417,0.015023,-0.006748,0.249909,0,0);-ms-transform:matrix(0.556417,0.015023,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.556417,0.015023,-0.006748,0.249909,0,0);}
.m4d_c00394{transform:matrix(0.569637,0.015380,-0.006748,0.249909,0,0);-ms-transform:matrix(0.569637,0.015380,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.569637,0.015380,-0.006748,0.249909,0,0);}
.mf_c00394{transform:matrix(0.611842,0.016520,-0.006748,0.249909,0,0);-ms-transform:matrix(0.611842,0.016520,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.611842,0.016520,-0.006748,0.249909,0,0);}
.m7_c00394{transform:matrix(0.813893,0.021975,-0.006748,0.249909,0,0);-ms-transform:matrix(0.813893,0.021975,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.813893,0.021975,-0.006748,0.249909,0,0);}
.m8_c00394{transform:matrix(0.944181,0.025493,-0.006748,0.249909,0,0);-ms-transform:matrix(0.944181,0.025493,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.944181,0.025493,-0.006748,0.249909,0,0);}
.m2_c00394{transform:matrix(1.154829,0.031180,-0.006748,0.249909,0,0);-ms-transform:matrix(1.154829,0.031180,-0.006748,0.249909,0,0);-webkit-transform:matrix(1.154829,0.031180,-0.006748,0.249909,0,0);}
.m10_c00394{transform:matrix(1.526944,0.041227,-0.006748,0.249909,0,0);-ms-transform:matrix(1.526944,0.041227,-0.006748,0.249909,0,0);-webkit-transform:matrix(1.526944,0.041227,-0.006748,0.249909,0,0);}
.m127_c00394{transform:matrix(2.132429,0.061840,-0.007247,0.249895,0,0);-ms-transform:matrix(2.132429,0.061840,-0.007247,0.249895,0,0);-webkit-transform:matrix(2.132429,0.061840,-0.007247,0.249895,0,0);}
.m1_c00394{transform:matrix(2.640743,0.071300,-0.006748,0.249909,0,0);-ms-transform:matrix(2.640743,0.071300,-0.006748,0.249909,0,0);-webkit-transform:matrix(2.640743,0.071300,-0.006748,0.249909,0,0);}
.m0_c00394{transform:matrix(3.425192,0.092480,-0.006748,0.249909,0,0);-ms-transform:matrix(3.425192,0.092480,-0.006748,0.249909,0,0);-webkit-transform:matrix(3.425192,0.092480,-0.006748,0.249909,0,0);}
.m144_c00394{transform:matrix(11.977630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(11.977630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(11.977630,0.000000,0.000000,0.250000,0,0);}
.v0_c00394{vertical-align:0.000000px;}
.ls0_c00394{letter-spacing:0.000000px;}
.sc__c00394{text-shadow:none;}
.sc0_c00394{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__c00394{-webkit-text-stroke:0px transparent;}
.sc0_c00394{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00394{word-spacing:0.000000px;}
.fc0_c00394{color:transparent;}
.fs0_c00394{font-size:18.006560px;}
.fs17_c00394{font-size:24.000000px;}
.fs12_c00394{font-size:42.017657px;}
.fsa_c00394{font-size:66.015970px;}
.fs3_c00394{font-size:66.024053px;}
.fsc_c00394{font-size:71.977316px;}
.fs10_c00394{font-size:71.991540px;}
.fse_c00394{font-size:71.997732px;}
.fs15_c00394{font-size:72.007560px;}
.fs9_c00394{font-size:72.017422px;}
.fs2_c00394{font-size:72.026239px;}
.fsb_c00394{font-size:77.975426px;}
.fs14_c00394{font-size:78.008190px;}
.fs7_c00394{font-size:78.018874px;}
.fs1_c00394{font-size:78.028426px;}
.fs13_c00394{font-size:78.032792px;}
.fs11_c00394{font-size:83.964587px;}
.fsd_c00394{font-size:83.973536px;}
.fsf_c00394{font-size:83.990129px;}
.fs6_c00394{font-size:84.020326px;}
.fs4_c00394{font-size:84.030612px;}
.fs16_c00394{font-size:89.962057px;}
.fs5_c00394{font-size:90.023802px;}
.fs8_c00394{font-size:96.023229px;}
.y14c_c00394{bottom:-0.213000px;}
.y0_c00394{bottom:0.000000px;}
.y14b_c00394{bottom:45.549795px;}
.y14a_c00394{bottom:47.012628px;}
.y149_c00394{bottom:48.179661px;}
.y148_c00394{bottom:50.074617px;}
.y147_c00394{bottom:51.176829px;}
.y146_c00394{bottom:52.326777px;}
.y145_c00394{bottom:54.596991px;}
.y144_c00394{bottom:55.350567px;}
.y143_c00394{bottom:57.959013px;}
.y142_c00394{bottom:59.050158px;}
.y141_c00394{bottom:60.911709px;}
.y140_c00394{bottom:62.377500px;}
.y137_c00394{bottom:85.761985px;}
.y136_c00394{bottom:86.443826px;}
.y135_c00394{bottom:87.630535px;}
.y134_c00394{bottom:88.311549px;}
.y133_c00394{bottom:89.247499px;}
.y132_c00394{bottom:91.807243px;}
.y131_c00394{bottom:94.063974px;}
.y130_c00394{bottom:94.766328px;}
.y12f_c00394{bottom:113.712000px;}
.y13f_c00394{bottom:119.592228px;}
.y13e_c00394{bottom:121.286799px;}
.y13d_c00394{bottom:123.573423px;}
.y13c_c00394{bottom:131.529204px;}
.y13b_c00394{bottom:132.587835px;}
.y12e_c00394{bottom:135.736614px;}
.y12d_c00394{bottom:136.891356px;}
.y12c_c00394{bottom:139.914534px;}
.y12b_c00394{bottom:142.148640px;}
.y12a_c00394{bottom:144.773253px;}
.y129_c00394{bottom:145.823037px;}
.y128_c00394{bottom:146.884500px;}
.y13a_c00394{bottom:155.175698px;}
.y139_c00394{bottom:157.763964px;}
.y138_c00394{bottom:159.328500px;}
.y127_c00394{bottom:163.498018px;}
.y126_c00394{bottom:164.840589px;}
.y125_c00394{bottom:166.148433px;}
.y124_c00394{bottom:170.201092px;}
.y123_c00394{bottom:172.830766px;}
.y122_c00394{bottom:176.365021px;}
.y121_c00394{bottom:177.235758px;}
.y120_c00394{bottom:181.203201px;}
.y11f_c00394{bottom:182.932389px;}
.y11e_c00394{bottom:184.697248px;}
.y11d_c00394{bottom:194.279769px;}
.y11c_c00394{bottom:197.516898px;}
.y11b_c00394{bottom:199.424601px;}
.y11a_c00394{bottom:202.264704px;}
.y119_c00394{bottom:206.880777px;}
.y118_c00394{bottom:208.304136px;}
.y117_c00394{bottom:210.640050px;}
.y116_c00394{bottom:212.509008px;}
.y115_c00394{bottom:214.352073px;}
.y114_c00394{bottom:216.195516px;}
.y113_c00394{bottom:217.592037px;}
.y112_c00394{bottom:219.852729px;}
.y111_c00394{bottom:221.674500px;}
.y110_c00394{bottom:230.357388px;}
.y10f_c00394{bottom:234.729294px;}
.y10e_c00394{bottom:237.205284px;}
.y10d_c00394{bottom:240.127830px;}
.y10c_c00394{bottom:241.657512px;}
.y10b_c00394{bottom:244.056150px;}
.y10a_c00394{bottom:245.504652px;}
.y109_c00394{bottom:249.428550px;}
.y108_c00394{bottom:250.853820px;}
.y107_c00394{bottom:252.328128px;}
.y106_c00394{bottom:253.822500px;}
.y105_c00394{bottom:277.884274px;}
.y104_c00394{bottom:279.021913px;}
.y103_c00394{bottom:279.347476px;}
.y102_c00394{bottom:279.678756px;}
.y101_c00394{bottom:280.342591px;}
.y100_c00394{bottom:280.681530px;}
.yff_c00394{bottom:281.653390px;}
.yfe_c00394{bottom:303.220080px;}
.yfd_c00394{bottom:304.439970px;}
.yfc_c00394{bottom:307.160802px;}
.yfb_c00394{bottom:308.391181px;}
.yfa_c00394{bottom:308.890737px;}
.yf9_c00394{bottom:310.563063px;}
.yf8_c00394{bottom:312.271131px;}
.yf7_c00394{bottom:313.729060px;}
.yf6_c00394{bottom:314.473704px;}
.yf5_c00394{bottom:315.923530px;}
.yf4_c00394{bottom:316.390840px;}
.yf3_c00394{bottom:317.555508px;}
.yf2_c00394{bottom:337.644954px;}
.yf1_c00394{bottom:338.821998px;}
.yf0_c00394{bottom:339.597832px;}
.yef_c00394{bottom:342.701670px;}
.yee_c00394{bottom:343.906297px;}
.yed_c00394{bottom:345.472285px;}
.yec_c00394{bottom:347.764657px;}
.yeb_c00394{bottom:349.737849px;}
.yea_c00394{bottom:351.231298px;}
.ye9_c00394{bottom:355.471554px;}
.ye8_c00394{bottom:356.671297px;}
.ye7_c00394{bottom:358.539261px;}
.ye6_c00394{bottom:360.471937px;}
.ye5_c00394{bottom:373.900828px;}
.ye4_c00394{bottom:374.770125px;}
.ye3_c00394{bottom:376.438788px;}
.ye2_c00394{bottom:378.920137px;}
.ye1_c00394{bottom:380.504107px;}
.ye0_c00394{bottom:383.832220px;}
.ydf_c00394{bottom:385.028745px;}
.yde_c00394{bottom:389.141406px;}
.ydd_c00394{bottom:391.968853px;}
.ydc_c00394{bottom:393.238582px;}
.ydb_c00394{bottom:394.486500px;}
.yda_c00394{bottom:425.294181px;}
.yd9_c00394{bottom:425.294550px;}
.yd8_c00394{bottom:425.295180px;}
.yd7_c00394{bottom:449.187600px;}
.yd6_c00394{bottom:449.894955px;}
.yd5_c00394{bottom:451.387743px;}
.yd4_c00394{bottom:453.805785px;}
.yd3_c00394{bottom:454.536735px;}
.yd2_c00394{bottom:455.052228px;}
.yd1_c00394{bottom:455.789250px;}
.yd0_c00394{bottom:457.734303px;}
.ycf_c00394{bottom:458.459214px;}
.yce_c00394{bottom:459.891051px;}
.ycd_c00394{bottom:460.627710px;}
.ycc_c00394{bottom:461.124855px;}
.ycb_c00394{bottom:463.274607px;}
.yca_c00394{bottom:484.229184px;}
.yc9_c00394{bottom:485.522592px;}
.yc8_c00394{bottom:486.985548px;}
.yc7_c00394{bottom:489.331509px;}
.yc6_c00394{bottom:490.593876px;}
.yc5_c00394{bottom:491.018175px;}
.yc4_c00394{bottom:492.267075px;}
.yc3_c00394{bottom:492.888744px;}
.yc2_c00394{bottom:494.987265px;}
.yc1_c00394{bottom:495.822957px;}
.yc0_c00394{bottom:497.033373px;}
.ybf_c00394{bottom:517.343172px;}
.ybe_c00394{bottom:519.316599px;}
.ybd_c00394{bottom:521.650512px;}
.ybc_c00394{bottom:522.809376px;}
.ybb_c00394{bottom:524.543985px;}
.yba_c00394{bottom:525.715305px;}
.yb9_c00394{bottom:528.603813px;}
.yb8_c00394{bottom:529.432464px;}
.yb7_c00394{bottom:531.167073px;}
.yb6_c00394{bottom:531.746415px;}
.yb5_c00394{bottom:534.575334px;}
.yb4_c00394{bottom:557.601231px;}
.yb3_c00394{bottom:559.557636px;}
.yb2_c00394{bottom:560.275815px;}
.yb1_c00394{bottom:561.737748px;}
.yb0_c00394{bottom:564.435828px;}
.yaf_c00394{bottom:565.143183px;}
.yae_c00394{bottom:566.355702px;}
.yad_c00394{bottom:568.042398px;}
.yac_c00394{bottom:569.259273px;}
.yab_c00394{bottom:570.219507px;}
.yaa_c00394{bottom:590.619135px;}
.ya9_c00394{bottom:591.780342px;}
.ya8_c00394{bottom:592.382631px;}
.ya7_c00394{bottom:594.078372px;}
.ya6_c00394{bottom:595.255911px;}
.ya5_c00394{bottom:596.999940px;}
.ya4_c00394{bottom:598.138479px;}
.ya3_c00394{bottom:600.996714px;}
.ya2_c00394{bottom:601.867302px;}
.ya1_c00394{bottom:604.140999px;}
.ya0_c00394{bottom:606.413772px;}
.y9f_c00394{bottom:627.033732px;}
.y9e_c00394{bottom:628.521621px;}
.y9d_c00394{bottom:629.083422px;}
.y9c_c00394{bottom:630.890886px;}
.y9b_c00394{bottom:633.444348px;}
.y9a_c00394{bottom:634.196451px;}
.y99_c00394{bottom:636.004047px;}
.y98_c00394{bottom:636.750210px;}
.y97_c00394{bottom:639.513906px;}
.y96_c00394{bottom:641.066010px;}
.y95_c00394{bottom:642.057468px;}
.y94_c00394{bottom:660.692364px;}
.y93_c00394{bottom:662.357907px;}
.y92_c00394{bottom:663.362427px;}
.y91_c00394{bottom:664.848120px;}
.y90_c00394{bottom:666.804921px;}
.y8f_c00394{bottom:669.221247px;}
.y8e_c00394{bottom:669.947313px;}
.y8d_c00394{bottom:671.171052px;}
.y8c_c00394{bottom:672.383703px;}
.y8b_c00394{bottom:673.101618px;}
.y8a_c00394{bottom:675.007500px;}
.y89_c00394{bottom:696.691293px;}
.y88_c00394{bottom:697.475547px;}
.y87_c00394{bottom:697.991253px;}
.y86_c00394{bottom:698.753876px;}
.y85_c00394{bottom:701.053680px;}
.y84_c00394{bottom:702.866517px;}
.y83_c00394{bottom:703.339340px;}
.y82_c00394{bottom:704.129803px;}
.y81_c00394{bottom:706.900878px;}
.y80_c00394{bottom:707.690066px;}
.y7f_c00394{bottom:708.451964px;}
.y7e_c00394{bottom:709.938603px;}
.y7d_c00394{bottom:710.700811px;}
.y7c_c00394{bottom:711.457500px;}
.y7b_c00394{bottom:732.361871px;}
.y7a_c00394{bottom:734.770041px;}
.y79_c00394{bottom:737.169545px;}
.y78_c00394{bottom:738.385557px;}
.y77_c00394{bottom:739.264164px;}
.y76_c00394{bottom:741.079698px;}
.y75_c00394{bottom:742.559811px;}
.y74_c00394{bottom:743.442954px;}
.y73_c00394{bottom:745.842052px;}
.y72_c00394{bottom:747.586266px;}
.y71_c00394{bottom:749.987349px;}
.y70_c00394{bottom:768.095934px;}
.y6f_c00394{bottom:769.458104px;}
.y6e_c00394{bottom:771.318441px;}
.y6d_c00394{bottom:773.463984px;}
.y6c_c00394{bottom:774.262423px;}
.y6b_c00394{bottom:777.147810px;}
.y6a_c00394{bottom:778.483293px;}
.y69_c00394{bottom:779.287725px;}
.y68_c00394{bottom:780.383033px;}
.y67_c00394{bottom:782.981836px;}
.y66_c00394{bottom:783.752051px;}
.y65_c00394{bottom:805.421122px;}
.y64_c00394{bottom:807.310516px;}
.y63_c00394{bottom:807.991169px;}
.y62_c00394{bottom:808.944873px;}
.y61_c00394{bottom:811.276035px;}
.y60_c00394{bottom:813.357911px;}
.y5f_c00394{bottom:814.044675px;}
.y5e_c00394{bottom:814.530576px;}
.y5d_c00394{bottom:815.888073px;}
.y5c_c00394{bottom:817.531012px;}
.y5b_c00394{bottom:818.205508px;}
.y5a_c00394{bottom:818.863000px;}
.y59_c00394{bottom:840.100081px;}
.y58_c00394{bottom:841.018886px;}
.y57_c00394{bottom:841.488916px;}
.y56_c00394{bottom:843.130155px;}
.y55_c00394{bottom:844.972500px;}
.y54_c00394{bottom:846.599690px;}
.y53_c00394{bottom:847.773570px;}
.y52_c00394{bottom:848.465801px;}
.y51_c00394{bottom:850.541278px;}
.y50_c00394{bottom:851.705565px;}
.y4f_c00394{bottom:852.621939px;}
.y4e_c00394{bottom:854.243663px;}
.y4d_c00394{bottom:877.173143px;}
.y4c_c00394{bottom:878.171849px;}
.y4b_c00394{bottom:879.889549px;}
.y4a_c00394{bottom:880.632719px;}
.y49_c00394{bottom:881.346409px;}
.y48_c00394{bottom:882.099579px;}
.y47_c00394{bottom:882.812946px;}
.y46_c00394{bottom:885.720226px;}
.y45_c00394{bottom:886.236161px;}
.y44_c00394{bottom:887.211988px;}
.y43_c00394{bottom:887.907702px;}
.y42_c00394{bottom:889.595197px;}
.y41_c00394{bottom:890.332253px;}
.y40_c00394{bottom:891.519240px;}
.y3f_c00394{bottom:912.724023px;}
.y3e_c00394{bottom:914.786977px;}
.y3d_c00394{bottom:915.576875px;}
.y3c_c00394{bottom:916.058497px;}
.y3b_c00394{bottom:917.316208px;}
.y3a_c00394{bottom:919.639087px;}
.y39_c00394{bottom:920.906193px;}
.y38_c00394{bottom:922.408887px;}
.y37_c00394{bottom:924.709455px;}
.y36_c00394{bottom:925.472706px;}
.y35_c00394{bottom:926.221866px;}
.y34_c00394{bottom:927.712493px;}
.y33_c00394{bottom:948.222284px;}
.y32_c00394{bottom:949.116847px;}
.y31_c00394{bottom:950.006876px;}
.y30_c00394{bottom:952.429626px;}
.y2f_c00394{bottom:953.886695px;}
.y2e_c00394{bottom:956.307663px;}
.y2d_c00394{bottom:957.504357px;}
.y2c_c00394{bottom:958.395964px;}
.y2b_c00394{bottom:959.874498px;}
.y2a_c00394{bottom:960.765539px;}
.y29_c00394{bottom:961.653015px;}
.y28_c00394{bottom:962.559000px;}
.y27_c00394{bottom:988.377616px;}
.y26_c00394{bottom:989.578651px;}
.y25_c00394{bottom:990.783855px;}
.y24_c00394{bottom:991.342760px;}
.y23_c00394{bottom:991.946759px;}
.y22_c00394{bottom:992.363619px;}
.y21_c00394{bottom:993.550242px;}
.y20_c00394{bottom:995.518206px;}
.y1f_c00394{bottom:996.289872px;}
.y1e_c00394{bottom:1018.976270px;}
.y1d_c00394{bottom:1020.187139px;}
.y1c_c00394{bottom:1022.017455px;}
.y1b_c00394{bottom:1023.206859px;}
.y1a_c00394{bottom:1024.103813px;}
.y19_c00394{bottom:1025.909910px;}
.y18_c00394{bottom:1026.802125px;}
.y17_c00394{bottom:1028.005502px;}
.y16_c00394{bottom:1029.770208px;}
.y15_c00394{bottom:1030.688789px;}
.y14_c00394{bottom:1031.547510px;}
.y13_c00394{bottom:1033.029000px;}
.y12_c00394{bottom:1117.532593px;}
.y11_c00394{bottom:1118.668453px;}
.y10_c00394{bottom:1119.357285px;}
.yf_c00394{bottom:1119.779931px;}
.y7_c00394{bottom:1119.782949px;}
.y6_c00394{bottom:1120.062439px;}
.ye_c00394{bottom:1120.140649px;}
.y5_c00394{bottom:1120.396281px;}
.yd_c00394{bottom:1120.563052px;}
.y4_c00394{bottom:1120.674597px;}
.y3_c00394{bottom:1120.979278px;}
.yc_c00394{bottom:1121.103967px;}
.yb_c00394{bottom:1121.730627px;}
.ya_c00394{bottom:1122.059590px;}
.y2_c00394{bottom:1122.907848px;}
.y9_c00394{bottom:1122.992086px;}
.y8_c00394{bottom:1124.010529px;}
.y1_c00394{bottom:1126.981500px;}
.h2_c00394{height:18.006560px;}
.h19_c00394{height:24.000000px;}
.h14_c00394{height:42.017657px;}
.hc_c00394{height:66.015970px;}
.h5_c00394{height:66.024053px;}
.he_c00394{height:71.977316px;}
.h12_c00394{height:71.991540px;}
.h10_c00394{height:71.997732px;}
.h17_c00394{height:72.007560px;}
.hb_c00394{height:72.017422px;}
.h4_c00394{height:72.026239px;}
.hd_c00394{height:77.975426px;}
.h16_c00394{height:78.008190px;}
.h9_c00394{height:78.018874px;}
.h3_c00394{height:78.028426px;}
.h15_c00394{height:78.032792px;}
.h13_c00394{height:83.964587px;}
.hf_c00394{height:83.973536px;}
.h11_c00394{height:83.990129px;}
.h8_c00394{height:84.020326px;}
.h6_c00394{height:84.030612px;}
.h18_c00394{height:89.962057px;}
.h7_c00394{height:90.023802px;}
.ha_c00394{height:96.023229px;}
.h1_c00394{height:1251.000000px;}
.h0_c00394{height:1251.150000px;}
.w0_c00394{width:915.000000px;}
.x0_c00394{left:0.000000px;}
.xd4_c00394{left:155.971500px;}
.xcc_c00394{left:158.995316px;}
.xc4_c00394{left:160.008000px;}
.xae_c00394{left:162.077677px;}
.xa0_c00394{left:163.112319px;}
.x8a_c00394{left:165.014889px;}
.x7a_c00394{left:166.119594px;}
.x5f_c00394{left:167.632770px;}
.x45_c00394{left:170.046898px;}
.x3a_c00394{left:171.421107px;}
.x1d_c00394{left:173.105411px;}
.xd1_c00394{left:192.519281px;}
.x67_c00394{left:200.811000px;}
.x4d_c00394{left:201.899781px;}
.xc5_c00394{left:203.340125px;}
.x7b_c00394{left:209.207637px;}
.x1e_c00394{left:215.973819px;}
.xaf_c00394{left:217.258053px;}
.xd2_c00394{left:223.364405px;}
.x3b_c00394{left:225.390897px;}
.xa8_c00394{left:227.902005px;}
.x98_c00394{left:229.185000px;}
.x4e_c00394{left:234.053005px;}
.x30_c00394{left:237.067217px;}
.xcd_c00394{left:246.281321px;}
.x46_c00394{left:247.289913px;}
.x71_c00394{left:254.520000px;}
.x60_c00394{left:256.561770px;}
.x3c_c00394{left:258.860392px;}
.xa1_c00394{left:260.828319px;}
.x8b_c00394{left:263.974389px;}
.xbd_c00394{left:267.882000px;}
.x31_c00394{left:269.650740px;}
.x90_c00394{left:273.157206px;}
.x7c_c00394{left:276.688152px;}
.x26_c00394{left:281.538000px;}
.x12_c00394{left:283.413000px;}
.x72_c00394{left:287.152500px;}
.x47_c00394{left:290.959000px;}
.xba_c00394{left:292.203199px;}
.x91_c00394{left:295.466259px;}
.x68_c00394{left:298.587000px;}
.xd3_c00394{left:300.481710px;}
.xbe_c00394{left:301.811037px;}
.x32_c00394{left:302.867345px;}
.xb0_c00394{left:304.826397px;}
.x58_c00394{left:309.845954px;}
.x4f_c00394{left:312.304182px;}
.x27_c00394{left:315.093000px;}
.xa2_c00394{left:316.910319px;}
.x61_c00394{left:321.162270px;}
.x1f_c00394{left:325.332387px;}
.x69_c00394{left:331.713000px;}
.xc6_c00394{left:334.177156px;}
.x3d_c00394{left:335.537220px;}
.xb6_c00394{left:336.753271px;}
.x13_c00394{left:338.283000px;}
.x82_c00394{left:341.123499px;}
.x73_c00394{left:342.273000px;}
.xce_c00394{left:345.362964px;}
.x48_c00394{left:346.367451px;}
.x28_c00394{left:347.962500px;}
.x1_c00394{left:350.116500px;}
.x59_c00394{left:355.472139px;}
.xbb_c00394{left:358.339608px;}
.x92_c00394{left:362.169885px;}
.xdc_c00394{left:364.728325px;}
.x6a_c00394{left:366.025500px;}
.x3e_c00394{left:367.141972px;}
.x14_c00394{left:370.087500px;}
.x83_c00394{left:374.624562px;}
.x50_c00394{left:376.925631px;}
.xc7_c00394{left:378.015774px;}
.x29_c00394{left:380.964000px;}
.xa3_c00394{left:381.993819px;}
.x99_c00394{left:383.636697px;}
.x8_c00394{left:385.234947px;}
.xdd_c00394{left:386.870162px;}
.x5a_c00394{left:388.990853px;}
.x20_c00394{left:391.297425px;}
.x93_c00394{left:394.037580px;}
.x8c_c00394{left:395.756889px;}
.x7d_c00394{left:396.853512px;}
.x74_c00394{left:397.897500px;}
.x51_c00394{left:400.092397px;}
.x33_c00394{left:402.862118px;}
.x15_c00394{left:404.109000px;}
.x62_c00394{left:410.017770px;}
.x3f_c00394{left:411.511966px;}
.x21_c00394{left:414.464555px;}
.x9a_c00394{left:416.328342px;}
.x9_c00394{left:417.381206px;}
.xd5_c00394{left:421.019844px;}
.xc8_c00394{left:422.470275px;}
.xbc_c00394{left:423.679480px;}
.xb1_c00394{left:425.836210px;}
.xa_c00394{left:428.731098px;}
.x75_c00394{left:430.900500px;}
.x52_c00394{left:432.811203px;}
.x2a_c00394{left:435.724500px;}
.x63_c00394{left:442.726770px;}
.x49_c00394{left:445.197448px;}
.x22_c00394{left:448.009695px;}
.xb_c00394{left:450.328423px;}
.xde_c00394{left:453.574390px;}
.xcf_c00394{left:455.387600px;}
.xbf_c00394{left:456.734958px;}
.xd6_c00394{left:465.614697px;}
.xc_c00394{left:468.972411px;}
.xc9_c00394{left:478.031658px;}
.x23_c00394{left:479.050728px;}
.xb7_c00394{left:480.414744px;}
.x9b_c00394{left:482.032665px;}
.xd_c00394{left:483.560641px;}
.x6b_c00394{left:486.507000px;}
.xc0_c00394{left:489.622538px;}
.xe_c00394{left:495.975453px;}
.x64_c00394{left:497.545770px;}
.x2_c00394{left:500.992500px;}
.xa4_c00394{left:503.355819px;}
.x94_c00394{left:505.141812px;}
.x7e_c00394{left:507.885570px;}
.xf_c00394{left:510.572684px;}
.xca_c00394{left:511.887268px;}
.x16_c00394{left:514.038000px;}
.xdf_c00394{left:519.748150px;}
.x6c_c00394{left:520.875000px;}
.x34_c00394{left:523.293618px;}
.xa9_c00394{left:525.450885px;}
.x84_c00394{left:528.328032px;}
.x53_c00394{left:531.933741px;}
.x10_c00394{left:534.305888px;}
.xa5_c00394{left:536.856819px;}
.x6d_c00394{left:541.432500px;}
.xc1_c00394{left:544.082523px;}
.x24_c00394{left:546.037509px;}
.x17_c00394{left:547.083000px;}
.x8d_c00394{left:550.549389px;}
.xd7_c00394{left:554.556816px;}
.xb8_c00394{left:556.318431px;}
.xaa_c00394{left:557.757047px;}
.xa6_c00394{left:560.288319px;}
.x5b_c00394{left:564.833568px;}
.x40_c00394{left:567.096445px;}
.x9c_c00394{left:570.841539px;}
.x3_c00394{left:572.421000px;}
.x11_c00394{left:573.483782px;}
.xe0_c00394{left:575.426416px;}
.xdb_c00394{left:577.770912px;}
.xb9_c00394{left:579.003334px;}
.x4_c00394{left:583.705500px;}
.xd8_c00394{left:587.024341px;}
.xb2_c00394{left:590.202346px;}
.x5_c00394{left:594.013500px;}
.x85_c00394{left:595.391625px;}
.x5c_c00394{left:598.074741px;}
.x41_c00394{left:599.521819px;}
.x2b_c00394{left:602.734500px;}
.x6_c00394{left:606.378000px;}
.xe1_c00394{left:609.716592px;}
.x4a_c00394{left:611.605921px;}
.x25_c00394{left:612.758709px;}
.x18_c00394{left:613.975500px;}
.x7_c00394{left:616.729500px;}
.x6e_c00394{left:620.251500px;}
.xcb_c00394{left:621.683862px;}
.x35_c00394{left:624.281512px;}
.x76_c00394{left:629.679000px;}
.x42_c00394{left:633.754936px;}
.xb3_c00394{left:634.914922px;}
.x86_c00394{left:640.662132px;}
.x54_c00394{left:642.957723px;}
.xc2_c00394{left:645.168336px;}
.x19_c00394{left:647.196000px;}
.x8e_c00394{left:649.645389px;}
.x7f_c00394{left:651.589902px;}
.xe2_c00394{left:652.698067px;}
.xd0_c00394{left:654.973152px;}
.x2c_c00394{left:656.700000px;}
.x95_c00394{left:661.459551px;}
.x43_c00394{left:666.192310px;}
.xb4_c00394{left:669.303555px;}
.x36_c00394{left:678.980425px;}
.x55_c00394{left:688.398594px;}
.x1a_c00394{left:691.248000px;}
.x9d_c00394{left:694.325190px;}
.x77_c00394{left:697.210500px;}
.x37_c00394{left:699.931693px;}
.xc3_c00394{left:701.384564px;}
.xa7_c00394{left:703.424319px;}
.x87_c00394{left:705.871890px;}
.x56_c00394{left:720.779819px;}
.x88_c00394{left:729.019344px;}
.x80_c00394{left:730.200186px;}
.x65_c00394{left:731.236770px;}
.x38_c00394{left:734.246379px;}
.x8f_c00394{left:738.572889px;}
.x78_c00394{left:742.870500px;}
.xd9_c00394{left:744.579000px;}
.x2d_c00394{left:746.431500px;}
.x96_c00394{left:751.243164px;}
.x6f_c00394{left:753.400500px;}
.x81_c00394{left:754.645158px;}
.xab_c00394{left:757.379724px;}
.x1b_c00394{left:759.037500px;}
.x5d_c00394{left:765.009768px;}
.x9e_c00394{left:771.328272px;}
.x89_c00394{left:773.683917px;}
.x70_c00394{left:775.822500px;}
.x44_c00394{left:778.017376px;}
.x2e_c00394{left:779.395500px;}
.x4b_c00394{left:799.899918px;}
.xac_c00394{left:802.433625px;}
.x1c_c00394{left:803.884500px;}
.x57_c00394{left:810.716358px;}
.x2f_c00394{left:812.527500px;}
.xb5_c00394{left:813.654282px;}
.x79_c00394{left:818.577000px;}
.x66_c00394{left:820.428270px;}
.x5e_c00394{left:821.742845px;}
.x39_c00394{left:823.939558px;}
.xad_c00394{left:825.904630px;}
.x97_c00394{left:827.164998px;}
.xda_c00394{left:832.848142px;}
.x9f_c00394{left:839.396760px;}
.x4c_c00394{left:843.659005px;}
@media print{
.v0_c00394{vertical-align:0.000000pt;}
.ls0_c00394{letter-spacing:0.000000pt;}
.ws0_c00394{word-spacing:0.000000pt;}
.fs0_c00394{font-size:16.005831pt;}
.fs17_c00394{font-size:21.333333pt;}
.fs12_c00394{font-size:37.349029pt;}
.fsa_c00394{font-size:58.680862pt;}
.fs3_c00394{font-size:58.688047pt;}
.fsc_c00394{font-size:63.979837pt;}
.fs10_c00394{font-size:63.992480pt;}
.fse_c00394{font-size:63.997984pt;}
.fs15_c00394{font-size:64.006720pt;}
.fs9_c00394{font-size:64.015486pt;}
.fs2_c00394{font-size:64.023324pt;}
.fsb_c00394{font-size:69.311490pt;}
.fs14_c00394{font-size:69.340613pt;}
.fs7_c00394{font-size:69.350110pt;}
.fs1_c00394{font-size:69.358601pt;}
.fs13_c00394{font-size:69.362482pt;}
.fs11_c00394{font-size:74.635188pt;}
.fsd_c00394{font-size:74.643143pt;}
.fsf_c00394{font-size:74.657893pt;}
.fs6_c00394{font-size:74.684734pt;}
.fs4_c00394{font-size:74.693878pt;}
.fs16_c00394{font-size:79.966273pt;}
.fs5_c00394{font-size:80.021157pt;}
.fs8_c00394{font-size:85.353982pt;}
.y14c_c00394{bottom:-0.189333pt;}
.y0_c00394{bottom:0.000000pt;}
.y14b_c00394{bottom:40.488707pt;}
.y14a_c00394{bottom:41.789003pt;}
.y149_c00394{bottom:42.826365pt;}
.y148_c00394{bottom:44.510771pt;}
.y147_c00394{bottom:45.490515pt;}
.y146_c00394{bottom:46.512691pt;}
.y145_c00394{bottom:48.530659pt;}
.y144_c00394{bottom:49.200504pt;}
.y143_c00394{bottom:51.519123pt;}
.y142_c00394{bottom:52.489029pt;}
.y141_c00394{bottom:54.143741pt;}
.y140_c00394{bottom:55.446667pt;}
.y137_c00394{bottom:76.232876pt;}
.y136_c00394{bottom:76.838956pt;}
.y135_c00394{bottom:77.893809pt;}
.y134_c00394{bottom:78.499155pt;}
.y133_c00394{bottom:79.331111pt;}
.y132_c00394{bottom:81.606439pt;}
.y131_c00394{bottom:83.612421pt;}
.y130_c00394{bottom:84.236736pt;}
.y12f_c00394{bottom:101.077333pt;}
.y13f_c00394{bottom:106.304203pt;}
.y13e_c00394{bottom:107.810488pt;}
.y13d_c00394{bottom:109.843043pt;}
.y13c_c00394{bottom:116.914848pt;}
.y13b_c00394{bottom:117.855853pt;}
.y12e_c00394{bottom:120.654768pt;}
.y12d_c00394{bottom:121.681205pt;}
.y12c_c00394{bottom:124.368475pt;}
.y12b_c00394{bottom:126.354347pt;}
.y12a_c00394{bottom:128.687336pt;}
.y129_c00394{bottom:129.620477pt;}
.y128_c00394{bottom:130.564000pt;}
.y13a_c00394{bottom:137.933953pt;}
.y139_c00394{bottom:140.234635pt;}
.y138_c00394{bottom:141.625333pt;}
.y127_c00394{bottom:145.331572pt;}
.y126_c00394{bottom:146.524968pt;}
.y125_c00394{bottom:147.687496pt;}
.y124_c00394{bottom:151.289860pt;}
.y123_c00394{bottom:153.627348pt;}
.y122_c00394{bottom:156.768908pt;}
.y121_c00394{bottom:157.542896pt;}
.y120_c00394{bottom:161.069512pt;}
.y11f_c00394{bottom:162.606568pt;}
.y11e_c00394{bottom:164.175332pt;}
.y11d_c00394{bottom:172.693128pt;}
.y11c_c00394{bottom:175.570576pt;}
.y11b_c00394{bottom:177.266312pt;}
.y11a_c00394{bottom:179.790848pt;}
.y119_c00394{bottom:183.894024pt;}
.y118_c00394{bottom:185.159232pt;}
.y117_c00394{bottom:187.235600pt;}
.y116_c00394{bottom:188.896896pt;}
.y115_c00394{bottom:190.535176pt;}
.y114_c00394{bottom:192.173792pt;}
.y113_c00394{bottom:193.415144pt;}
.y112_c00394{bottom:195.424648pt;}
.y111_c00394{bottom:197.044000pt;}
.y110_c00394{bottom:204.762123pt;}
.y10f_c00394{bottom:208.648261pt;}
.y10e_c00394{bottom:210.849141pt;}
.y10d_c00394{bottom:213.446960pt;}
.y10c_c00394{bottom:214.806677pt;}
.y10b_c00394{bottom:216.938800pt;}
.y10a_c00394{bottom:218.226357pt;}
.y109_c00394{bottom:221.714267pt;}
.y108_c00394{bottom:222.981173pt;}
.y107_c00394{bottom:224.291669pt;}
.y106_c00394{bottom:225.620000pt;}
.y105_c00394{bottom:247.008244pt;}
.y104_c00394{bottom:248.019479pt;}
.y103_c00394{bottom:248.308868pt;}
.y102_c00394{bottom:248.603339pt;}
.y101_c00394{bottom:249.193415pt;}
.y100_c00394{bottom:249.494693pt;}
.yff_c00394{bottom:250.358569pt;}
.yfe_c00394{bottom:269.528960pt;}
.yfd_c00394{bottom:270.613307pt;}
.yfc_c00394{bottom:273.031824pt;}
.yfb_c00394{bottom:274.125495pt;}
.yfa_c00394{bottom:274.569544pt;}
.yf9_c00394{bottom:276.056056pt;}
.yf8_c00394{bottom:277.574339pt;}
.yf7_c00394{bottom:278.870276pt;}
.yf6_c00394{bottom:279.532181pt;}
.yf5_c00394{bottom:280.820916pt;}
.yf4_c00394{bottom:281.236303pt;}
.yf3_c00394{bottom:282.271563pt;}
.yf2_c00394{bottom:300.128848pt;}
.yf1_c00394{bottom:301.175109pt;}
.yf0_c00394{bottom:301.864740pt;}
.yef_c00394{bottom:304.623707pt;}
.yee_c00394{bottom:305.694487pt;}
.yed_c00394{bottom:307.086476pt;}
.yec_c00394{bottom:309.124140pt;}
.yeb_c00394{bottom:310.878088pt;}
.yea_c00394{bottom:312.205599pt;}
.ye9_c00394{bottom:315.974715pt;}
.ye8_c00394{bottom:317.041153pt;}
.ye7_c00394{bottom:318.701565pt;}
.ye6_c00394{bottom:320.419500pt;}
.ye5_c00394{bottom:332.356292pt;}
.ye4_c00394{bottom:333.129000pt;}
.ye3_c00394{bottom:334.612256pt;}
.ye2_c00394{bottom:336.817900pt;}
.ye1_c00394{bottom:338.225873pt;}
.ye0_c00394{bottom:341.184196pt;}
.ydf_c00394{bottom:342.247773pt;}
.yde_c00394{bottom:345.903472pt;}
.ydd_c00394{bottom:348.416759pt;}
.ydc_c00394{bottom:349.545407pt;}
.ydb_c00394{bottom:350.654667pt;}
.yda_c00394{bottom:378.039272pt;}
.yd9_c00394{bottom:378.039600pt;}
.yd8_c00394{bottom:378.040160pt;}
.yd7_c00394{bottom:399.277867pt;}
.yd6_c00394{bottom:399.906627pt;}
.yd5_c00394{bottom:401.233549pt;}
.yd4_c00394{bottom:403.382920pt;}
.yd3_c00394{bottom:404.032653pt;}
.yd2_c00394{bottom:404.490869pt;}
.yd1_c00394{bottom:405.146000pt;}
.yd0_c00394{bottom:406.874936pt;}
.ycf_c00394{bottom:407.519301pt;}
.yce_c00394{bottom:408.792045pt;}
.ycd_c00394{bottom:409.446853pt;}
.ycc_c00394{bottom:409.888760pt;}
.ycb_c00394{bottom:411.799651pt;}
.yca_c00394{bottom:430.425941pt;}
.yc9_c00394{bottom:431.575637pt;}
.yc8_c00394{bottom:432.876043pt;}
.yc7_c00394{bottom:434.961341pt;}
.yc6_c00394{bottom:436.083445pt;}
.yc5_c00394{bottom:436.460600pt;}
.yc4_c00394{bottom:437.570733pt;}
.yc3_c00394{bottom:438.123328pt;}
.yc2_c00394{bottom:439.988680pt;}
.yc1_c00394{bottom:440.731517pt;}
.yc0_c00394{bottom:441.807443pt;}
.ybf_c00394{bottom:459.860597pt;}
.ybe_c00394{bottom:461.614755pt;}
.ybd_c00394{bottom:463.689344pt;}
.ybc_c00394{bottom:464.719445pt;}
.ybb_c00394{bottom:466.261320pt;}
.yba_c00394{bottom:467.302493pt;}
.yb9_c00394{bottom:469.870056pt;}
.yb8_c00394{bottom:470.606635pt;}
.yb7_c00394{bottom:472.148509pt;}
.yb6_c00394{bottom:472.663480pt;}
.yb5_c00394{bottom:475.178075pt;}
.yb4_c00394{bottom:495.645539pt;}
.yb3_c00394{bottom:497.384565pt;}
.yb2_c00394{bottom:498.022947pt;}
.yb1_c00394{bottom:499.322443pt;}
.yb0_c00394{bottom:501.720736pt;}
.yaf_c00394{bottom:502.349496pt;}
.yae_c00394{bottom:503.427291pt;}
.yad_c00394{bottom:504.926576pt;}
.yac_c00394{bottom:506.008243pt;}
.yab_c00394{bottom:506.861784pt;}
.yaa_c00394{bottom:524.994787pt;}
.ya9_c00394{bottom:526.026971pt;}
.ya8_c00394{bottom:526.562339pt;}
.ya7_c00394{bottom:528.069664pt;}
.ya6_c00394{bottom:529.116365pt;}
.ya5_c00394{bottom:530.666613pt;}
.ya4_c00394{bottom:531.678648pt;}
.ya3_c00394{bottom:534.219301pt;}
.ya2_c00394{bottom:534.993157pt;}
.ya1_c00394{bottom:537.014221pt;}
.ya0_c00394{bottom:539.034464pt;}
.y9f_c00394{bottom:557.363317pt;}
.y9e_c00394{bottom:558.685885pt;}
.y9d_c00394{bottom:559.185264pt;}
.y9c_c00394{bottom:560.791899pt;}
.y9b_c00394{bottom:563.061643pt;}
.y9a_c00394{bottom:563.730179pt;}
.y99_c00394{bottom:565.336931pt;}
.y98_c00394{bottom:566.000187pt;}
.y97_c00394{bottom:568.456805pt;}
.y96_c00394{bottom:569.836453pt;}
.y95_c00394{bottom:570.717749pt;}
.y94_c00394{bottom:587.282101pt;}
.y93_c00394{bottom:588.762584pt;}
.y92_c00394{bottom:589.655491pt;}
.y91_c00394{bottom:590.976107pt;}
.y90_c00394{bottom:592.715485pt;}
.y8f_c00394{bottom:594.863331pt;}
.y8e_c00394{bottom:595.508723pt;}
.y8d_c00394{bottom:596.596491pt;}
.y8c_c00394{bottom:597.674403pt;}
.y8b_c00394{bottom:598.312549pt;}
.y8a_c00394{bottom:600.006667pt;}
.y89_c00394{bottom:619.281149pt;}
.y88_c00394{bottom:619.978264pt;}
.y87_c00394{bottom:620.436669pt;}
.y86_c00394{bottom:621.114556pt;}
.y85_c00394{bottom:623.158827pt;}
.y84_c00394{bottom:624.770237pt;}
.y83_c00394{bottom:625.190524pt;}
.y82_c00394{bottom:625.893159pt;}
.y81_c00394{bottom:628.356336pt;}
.y80_c00394{bottom:629.057836pt;}
.y7f_c00394{bottom:629.735079pt;}
.y7e_c00394{bottom:631.056536pt;}
.y7d_c00394{bottom:631.734055pt;}
.y7c_c00394{bottom:632.406667pt;}
.y7b_c00394{bottom:650.988329pt;}
.y7a_c00394{bottom:653.128925pt;}
.y79_c00394{bottom:655.261817pt;}
.y78_c00394{bottom:656.342717pt;}
.y77_c00394{bottom:657.123701pt;}
.y76_c00394{bottom:658.737509pt;}
.y75_c00394{bottom:660.053165pt;}
.y74_c00394{bottom:660.838181pt;}
.y73_c00394{bottom:662.970713pt;}
.y72_c00394{bottom:664.521125pt;}
.y71_c00394{bottom:666.655421pt;}
.y70_c00394{bottom:682.751941pt;}
.y6f_c00394{bottom:683.962759pt;}
.y6e_c00394{bottom:685.616392pt;}
.y6d_c00394{bottom:687.523541pt;}
.y6c_c00394{bottom:688.233265pt;}
.y6b_c00394{bottom:690.798053pt;}
.y6a_c00394{bottom:691.985149pt;}
.y69_c00394{bottom:692.700200pt;}
.y68_c00394{bottom:693.673807pt;}
.y67_c00394{bottom:695.983855pt;}
.y66_c00394{bottom:696.668489pt;}
.y65_c00394{bottom:715.929887pt;}
.y64_c00394{bottom:717.609348pt;}
.y63_c00394{bottom:718.214372pt;}
.y62_c00394{bottom:719.062109pt;}
.y61_c00394{bottom:721.134253pt;}
.y60_c00394{bottom:722.984809pt;}
.y5f_c00394{bottom:723.595267pt;}
.y5e_c00394{bottom:724.027179pt;}
.y5d_c00394{bottom:725.233843pt;}
.y5c_c00394{bottom:726.694233pt;}
.y5b_c00394{bottom:727.293785pt;}
.y5a_c00394{bottom:727.878223pt;}
.y59_c00394{bottom:746.755628pt;}
.y58_c00394{bottom:747.572343pt;}
.y57_c00394{bottom:747.990148pt;}
.y56_c00394{bottom:749.449027pt;}
.y55_c00394{bottom:751.086667pt;}
.y54_c00394{bottom:752.533057pt;}
.y53_c00394{bottom:753.576507pt;}
.y52_c00394{bottom:754.191823pt;}
.y51_c00394{bottom:756.036692pt;}
.y50_c00394{bottom:757.071613pt;}
.y4f_c00394{bottom:757.886168pt;}
.y4e_c00394{bottom:759.327700pt;}
.y4d_c00394{bottom:779.709460pt;}
.y4c_c00394{bottom:780.597199pt;}
.y4b_c00394{bottom:782.124044pt;}
.y4a_c00394{bottom:782.784639pt;}
.y49_c00394{bottom:783.419031pt;}
.y48_c00394{bottom:784.088515pt;}
.y47_c00394{bottom:784.722619pt;}
.y46_c00394{bottom:787.306868pt;}
.y45_c00394{bottom:787.765476pt;}
.y44_c00394{bottom:788.632879pt;}
.y43_c00394{bottom:789.251291pt;}
.y42_c00394{bottom:790.751287pt;}
.y41_c00394{bottom:791.406447pt;}
.y40_c00394{bottom:792.461547pt;}
.y3f_c00394{bottom:811.310243pt;}
.y3e_c00394{bottom:813.143980pt;}
.y3d_c00394{bottom:813.846111pt;}
.y3c_c00394{bottom:814.274220pt;}
.y3b_c00394{bottom:815.392185pt;}
.y3a_c00394{bottom:817.456967pt;}
.y39_c00394{bottom:818.583283pt;}
.y38_c00394{bottom:819.919011pt;}
.y37_c00394{bottom:821.963960pt;}
.y36_c00394{bottom:822.642405pt;}
.y35_c00394{bottom:823.308325pt;}
.y34_c00394{bottom:824.633327pt;}
.y33_c00394{bottom:842.864252pt;}
.y32_c00394{bottom:843.659420pt;}
.y31_c00394{bottom:844.450556pt;}
.y30_c00394{bottom:846.604112pt;}
.y2f_c00394{bottom:847.899284pt;}
.y2e_c00394{bottom:850.051256pt;}
.y2d_c00394{bottom:851.114984pt;}
.y2c_c00394{bottom:851.907524pt;}
.y2b_c00394{bottom:853.221776pt;}
.y2a_c00394{bottom:854.013812pt;}
.y29_c00394{bottom:854.802680pt;}
.y28_c00394{bottom:855.608000pt;}
.y27_c00394{bottom:878.557881pt;}
.y26_c00394{bottom:879.625468pt;}
.y25_c00394{bottom:880.696760pt;}
.y24_c00394{bottom:881.193564pt;}
.y23_c00394{bottom:881.730452pt;}
.y22_c00394{bottom:882.100995pt;}
.y21_c00394{bottom:883.155771pt;}
.y20_c00394{bottom:884.905072pt;}
.y1f_c00394{bottom:885.590997pt;}
.y1e_c00394{bottom:905.756684pt;}
.y1d_c00394{bottom:906.833012pt;}
.y1c_c00394{bottom:908.459960pt;}
.y1b_c00394{bottom:909.517208pt;}
.y1a_c00394{bottom:910.314500pt;}
.y19_c00394{bottom:911.919920pt;}
.y18_c00394{bottom:912.713000pt;}
.y17_c00394{bottom:913.782668pt;}
.y16_c00394{bottom:915.351296pt;}
.y15_c00394{bottom:916.167812pt;}
.y14_c00394{bottom:916.931120pt;}
.y13_c00394{bottom:918.248000pt;}
.y12_c00394{bottom:993.362305pt;}
.y11_c00394{bottom:994.371959pt;}
.y10_c00394{bottom:994.984253pt;}
.yf_c00394{bottom:995.359939pt;}
.y7_c00394{bottom:995.362621pt;}
.y6_c00394{bottom:995.611057pt;}
.ye_c00394{bottom:995.680577pt;}
.y5_c00394{bottom:995.907805pt;}
.yd_c00394{bottom:996.056047pt;}
.y4_c00394{bottom:996.155197pt;}
.y3_c00394{bottom:996.426025pt;}
.yc_c00394{bottom:996.536860pt;}
.yb_c00394{bottom:997.093891pt;}
.ya_c00394{bottom:997.386303pt;}
.y2_c00394{bottom:998.140309pt;}
.y9_c00394{bottom:998.215188pt;}
.y8_c00394{bottom:999.120471pt;}
.y1_c00394{bottom:1001.761333pt;}
.h2_c00394{height:16.005831pt;}
.h19_c00394{height:21.333333pt;}
.h14_c00394{height:37.349029pt;}
.hc_c00394{height:58.680862pt;}
.h5_c00394{height:58.688047pt;}
.he_c00394{height:63.979837pt;}
.h12_c00394{height:63.992480pt;}
.h10_c00394{height:63.997984pt;}
.h17_c00394{height:64.006720pt;}
.hb_c00394{height:64.015486pt;}
.h4_c00394{height:64.023324pt;}
.hd_c00394{height:69.311490pt;}
.h16_c00394{height:69.340613pt;}
.h9_c00394{height:69.350110pt;}
.h3_c00394{height:69.358601pt;}
.h15_c00394{height:69.362482pt;}
.h13_c00394{height:74.635188pt;}
.hf_c00394{height:74.643143pt;}
.h11_c00394{height:74.657893pt;}
.h8_c00394{height:74.684734pt;}
.h6_c00394{height:74.693878pt;}
.h18_c00394{height:79.966273pt;}
.h7_c00394{height:80.021157pt;}
.ha_c00394{height:85.353982pt;}
.h1_c00394{height:1112.000000pt;}
.h0_c00394{height:1112.133333pt;}
.w0_c00394{width:813.333333pt;}
.x0_c00394{left:0.000000pt;}
.xd4_c00394{left:138.641333pt;}
.xcc_c00394{left:141.329169pt;}
.xc4_c00394{left:142.229333pt;}
.xae_c00394{left:144.069047pt;}
.xa0_c00394{left:144.988728pt;}
.x8a_c00394{left:146.679901pt;}
.x7a_c00394{left:147.661861pt;}
.x5f_c00394{left:149.006907pt;}
.x45_c00394{left:151.152799pt;}
.x3a_c00394{left:152.374317pt;}
.x1d_c00394{left:153.871476pt;}
.xd1_c00394{left:171.128249pt;}
.x67_c00394{left:178.498667pt;}
.x4d_c00394{left:179.466472pt;}
.xc5_c00394{left:180.746777pt;}
.x7b_c00394{left:185.962344pt;}
.x1e_c00394{left:191.976728pt;}
.xaf_c00394{left:193.118269pt;}
.xd2_c00394{left:198.546137pt;}
.x3b_c00394{left:200.347464pt;}
.xa8_c00394{left:202.579560pt;}
.x98_c00394{left:203.720000pt;}
.x4e_c00394{left:208.047116pt;}
.x30_c00394{left:210.726415pt;}
.xcd_c00394{left:218.916729pt;}
.x46_c00394{left:219.813256pt;}
.x71_c00394{left:226.240000pt;}
.x60_c00394{left:228.054907pt;}
.x3c_c00394{left:230.098127pt;}
.xa1_c00394{left:231.847395pt;}
.x8b_c00394{left:234.643901pt;}
.xbd_c00394{left:238.117333pt;}
.x31_c00394{left:239.689547pt;}
.x90_c00394{left:242.806405pt;}
.x7c_c00394{left:245.945024pt;}
.x26_c00394{left:250.256000pt;}
.x12_c00394{left:251.922667pt;}
.x72_c00394{left:255.246667pt;}
.x47_c00394{left:258.630223pt;}
.xba_c00394{left:259.736177pt;}
.x91_c00394{left:262.636675pt;}
.x68_c00394{left:265.410667pt;}
.xd3_c00394{left:267.094853pt;}
.xbe_c00394{left:268.276477pt;}
.x32_c00394{left:269.215417pt;}
.xb0_c00394{left:270.956797pt;}
.x58_c00394{left:275.418625pt;}
.x4f_c00394{left:277.603717pt;}
.x27_c00394{left:280.082667pt;}
.xa2_c00394{left:281.698061pt;}
.x61_c00394{left:285.477573pt;}
.x1f_c00394{left:289.184344pt;}
.x69_c00394{left:294.856000pt;}
.xc6_c00394{left:297.046361pt;}
.x3d_c00394{left:298.255307pt;}
.xb6_c00394{left:299.336241pt;}
.x13_c00394{left:300.696000pt;}
.x82_c00394{left:303.220888pt;}
.x73_c00394{left:304.242667pt;}
.xce_c00394{left:306.989301pt;}
.x48_c00394{left:307.882179pt;}
.x28_c00394{left:309.300000pt;}
.x1_c00394{left:311.214667pt;}
.x59_c00394{left:315.975235pt;}
.xbb_c00394{left:318.524096pt;}
.x92_c00394{left:321.928787pt;}
.xdc_c00394{left:324.202956pt;}
.x6a_c00394{left:325.356000pt;}
.x3e_c00394{left:326.348420pt;}
.x14_c00394{left:328.966667pt;}
.x83_c00394{left:332.999611pt;}
.x50_c00394{left:335.045005pt;}
.xc7_c00394{left:336.014021pt;}
.x29_c00394{left:338.634667pt;}
.xa3_c00394{left:339.550061pt;}
.x99_c00394{left:341.010397pt;}
.x8_c00394{left:342.431064pt;}
.xdd_c00394{left:343.884588pt;}
.x5a_c00394{left:345.769647pt;}
.x20_c00394{left:347.819933pt;}
.x93_c00394{left:350.255627pt;}
.x8c_c00394{left:351.783901pt;}
.x7d_c00394{left:352.758677pt;}
.x74_c00394{left:353.686667pt;}
.x51_c00394{left:355.637687pt;}
.x33_c00394{left:358.099660pt;}
.x15_c00394{left:359.208000pt;}
.x62_c00394{left:364.460240pt;}
.x3f_c00394{left:365.788415pt;}
.x21_c00394{left:368.412937pt;}
.x9a_c00394{left:370.069637pt;}
.x9_c00394{left:371.005516pt;}
.xd5_c00394{left:374.239861pt;}
.xc8_c00394{left:375.529133pt;}
.xbc_c00394{left:376.603983pt;}
.xb1_c00394{left:378.521076pt;}
.xa_c00394{left:381.094309pt;}
.x75_c00394{left:383.022667pt;}
.x52_c00394{left:384.721069pt;}
.x2a_c00394{left:387.310667pt;}
.x63_c00394{left:393.534907pt;}
.x49_c00394{left:395.731065pt;}
.x22_c00394{left:398.230840pt;}
.xb_c00394{left:400.291932pt;}
.xde_c00394{left:403.177236pt;}
.xcf_c00394{left:404.788977pt;}
.xbf_c00394{left:405.986629pt;}
.xd6_c00394{left:413.879731pt;}
.xc_c00394{left:416.864365pt;}
.xc9_c00394{left:424.917029pt;}
.x23_c00394{left:425.822869pt;}
.xb7_c00394{left:427.035328pt;}
.x9b_c00394{left:428.473480pt;}
.xd_c00394{left:429.831681pt;}
.x6b_c00394{left:432.450667pt;}
.xc0_c00394{left:435.220033pt;}
.xe_c00394{left:440.867069pt;}
.x64_c00394{left:442.262907pt;}
.x2_c00394{left:445.326667pt;}
.xa4_c00394{left:447.427395pt;}
.x94_c00394{left:449.014944pt;}
.x7e_c00394{left:451.453840pt;}
.xf_c00394{left:453.842385pt;}
.xca_c00394{left:455.010905pt;}
.x16_c00394{left:456.922667pt;}
.xdf_c00394{left:461.998356pt;}
.x6c_c00394{left:463.000000pt;}
.x34_c00394{left:465.149883pt;}
.xa9_c00394{left:467.067453pt;}
.x84_c00394{left:469.624917pt;}
.x53_c00394{left:472.829992pt;}
.x10_c00394{left:474.938567pt;}
.xa5_c00394{left:477.206061pt;}
.x6d_c00394{left:481.273333pt;}
.xc1_c00394{left:483.628909pt;}
.x24_c00394{left:485.366675pt;}
.x17_c00394{left:486.296000pt;}
.x8d_c00394{left:489.377235pt;}
.xd7_c00394{left:492.939392pt;}
.xb8_c00394{left:494.505272pt;}
.xaa_c00394{left:495.784041pt;}
.xa6_c00394{left:498.034061pt;}
.x5b_c00394{left:502.074283pt;}
.x40_c00394{left:504.085729pt;}
.x9c_c00394{left:507.414701pt;}
.x3_c00394{left:508.818667pt;}
.x11_c00394{left:509.763361pt;}
.xe0_c00394{left:511.490148pt;}
.xdb_c00394{left:513.574144pt;}
.xb9_c00394{left:514.669631pt;}
.x4_c00394{left:518.849333pt;}
.xd8_c00394{left:521.799415pt;}
.xb2_c00394{left:524.624308pt;}
.x5_c00394{left:528.012000pt;}
.x85_c00394{left:529.237000pt;}
.x5c_c00394{left:531.621992pt;}
.x41_c00394{left:532.908284pt;}
.x2b_c00394{left:535.764000pt;}
.x6_c00394{left:539.002667pt;}
.xe1_c00394{left:541.970304pt;}
.x4a_c00394{left:543.649708pt;}
.x25_c00394{left:544.674408pt;}
.x18_c00394{left:545.756000pt;}
.x7_c00394{left:548.204000pt;}
.x6e_c00394{left:551.334667pt;}
.xcb_c00394{left:552.607877pt;}
.x35_c00394{left:554.916900pt;}
.x76_c00394{left:559.714667pt;}
.x42_c00394{left:563.337721pt;}
.xb3_c00394{left:564.368820pt;}
.x86_c00394{left:569.477451pt;}
.x54_c00394{left:571.517976pt;}
.xc2_c00394{left:573.482965pt;}
.x19_c00394{left:575.285333pt;}
.x8e_c00394{left:577.462568pt;}
.x7f_c00394{left:579.191024pt;}
.xe2_c00394{left:580.176060pt;}
.xd0_c00394{left:582.198357pt;}
.x2c_c00394{left:583.733333pt;}
.x95_c00394{left:587.964045pt;}
.x43_c00394{left:592.170943pt;}
.xb4_c00394{left:594.936493pt;}
.x36_c00394{left:603.538156pt;}
.x55_c00394{left:611.909861pt;}
.x1a_c00394{left:614.442667pt;}
.x9d_c00394{left:617.177947pt;}
.x77_c00394{left:619.742667pt;}
.x37_c00394{left:622.161505pt;}
.xc3_c00394{left:623.452945pt;}
.xa7_c00394{left:625.266061pt;}
.x87_c00394{left:627.441680pt;}
.x56_c00394{left:640.693172pt;}
.x88_c00394{left:648.017195pt;}
.x80_c00394{left:649.066832pt;}
.x65_c00394{left:649.988240pt;}
.x38_c00394{left:652.663448pt;}
.x8f_c00394{left:656.509235pt;}
.x78_c00394{left:660.329333pt;}
.xd9_c00394{left:661.848000pt;}
.x2d_c00394{left:663.494667pt;}
.x96_c00394{left:667.771701pt;}
.x6f_c00394{left:669.689333pt;}
.x81_c00394{left:670.795696pt;}
.xab_c00394{left:673.226421pt;}
.x1b_c00394{left:674.700000pt;}
.x5d_c00394{left:680.008683pt;}
.x9e_c00394{left:685.625131pt;}
.x89_c00394{left:687.719037pt;}
.x70_c00394{left:689.620000pt;}
.x44_c00394{left:691.571001pt;}
.x2e_c00394{left:692.796000pt;}
.x4b_c00394{left:711.022149pt;}
.xac_c00394{left:713.274333pt;}
.x1c_c00394{left:714.564000pt;}
.x57_c00394{left:720.636763pt;}
.x2f_c00394{left:722.246667pt;}
.xb5_c00394{left:723.248251pt;}
.x79_c00394{left:727.624000pt;}
.x66_c00394{left:729.269573pt;}
.x5e_c00394{left:730.438084pt;}
.x39_c00394{left:732.390719pt;}
.xad_c00394{left:734.137449pt;}
.x97_c00394{left:735.257776pt;}
.xda_c00394{left:740.309460pt;}
.x9f_c00394{left:746.130453pt;}
.x4c_c00394{left:749.919116pt;}
}





/* 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_c00395 {
    display:none;
  }
  .loading-indicator_c00395.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00395 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_c00395 { 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_c00395" -> "#page-container .classname_c00395")
 */
.pf_c00395 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00395 { /* 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_c00395.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00395 { /* 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_c00395 { /* 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_c00395 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00395 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00395 {overflow:visible;}
  }
}
.c_c00395 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00395 { /* 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_c00395:after { /* webkit #35443 */
  content: '';
}
.t_c00395:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00395 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 */
}
.__c00395 { /* 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_c00395 { /* info for Javascript */
  display:none;
}
.l_c00395 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00395 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00395 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00395: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_c00395 {
    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_c00395.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00395.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_c00395 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00395{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00395;src:url('chunks/assets/font_c605e72f209fc835e906f064.woff2')format("woff");}.ff1_c00395{font-family:ff1_c00395;line-height:1.000000;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;}
.m7b_c00395{transform:matrix(0.094998,-0.002660,0.006997,0.249902,0,0);-ms-transform:matrix(0.094998,-0.002660,0.006997,0.249902,0,0);-webkit-transform:matrix(0.094998,-0.002660,0.006997,0.249902,0,0);}
.m6e_c00395{transform:matrix(0.136497,-0.003822,0.006997,0.249902,0,0);-ms-transform:matrix(0.136497,-0.003822,0.006997,0.249902,0,0);-webkit-transform:matrix(0.136497,-0.003822,0.006997,0.249902,0,0);}
.m81_c00395{transform:matrix(0.153500,-0.004298,0.006997,0.249902,0,0);-ms-transform:matrix(0.153500,-0.004298,0.006997,0.249902,0,0);-webkit-transform:matrix(0.153500,-0.004298,0.006997,0.249902,0,0);}
.m77_c00395{transform:matrix(0.155804,-0.004363,0.006997,0.249902,0,0);-ms-transform:matrix(0.155804,-0.004363,0.006997,0.249902,0,0);-webkit-transform:matrix(0.155804,-0.004363,0.006997,0.249902,0,0);}
.me_c00395{transform:matrix(0.158153,-0.004428,0.006997,0.249902,0,0);-ms-transform:matrix(0.158153,-0.004428,0.006997,0.249902,0,0);-webkit-transform:matrix(0.158153,-0.004428,0.006997,0.249902,0,0);}
.m74_c00395{transform:matrix(0.162691,-0.004555,0.006997,0.249902,0,0);-ms-transform:matrix(0.162691,-0.004555,0.006997,0.249902,0,0);-webkit-transform:matrix(0.162691,-0.004555,0.006997,0.249902,0,0);}
.m8_c00395{transform:matrix(0.166375,-0.004658,0.006997,0.249902,0,0);-ms-transform:matrix(0.166375,-0.004658,0.006997,0.249902,0,0);-webkit-transform:matrix(0.166375,-0.004658,0.006997,0.249902,0,0);}
.ma_c00395{transform:matrix(0.166810,-0.004671,0.006997,0.249902,0,0);-ms-transform:matrix(0.166810,-0.004671,0.006997,0.249902,0,0);-webkit-transform:matrix(0.166810,-0.004671,0.006997,0.249902,0,0);}
.m7_c00395{transform:matrix(0.169878,-0.004757,0.006997,0.249902,0,0);-ms-transform:matrix(0.169878,-0.004757,0.006997,0.249902,0,0);-webkit-transform:matrix(0.169878,-0.004757,0.006997,0.249902,0,0);}
.m5_c00395{transform:matrix(0.169918,-0.004758,0.006997,0.249902,0,0);-ms-transform:matrix(0.169918,-0.004758,0.006997,0.249902,0,0);-webkit-transform:matrix(0.169918,-0.004758,0.006997,0.249902,0,0);}
.m3b_c00395{transform:matrix(0.172562,-0.004832,0.006997,0.249902,0,0);-ms-transform:matrix(0.172562,-0.004832,0.006997,0.249902,0,0);-webkit-transform:matrix(0.172562,-0.004832,0.006997,0.249902,0,0);}
.mc_c00395{transform:matrix(0.172572,-0.004832,0.006997,0.249902,0,0);-ms-transform:matrix(0.172572,-0.004832,0.006997,0.249902,0,0);-webkit-transform:matrix(0.172572,-0.004832,0.006997,0.249902,0,0);}
.mb_c00395{transform:matrix(0.173317,-0.004853,0.006997,0.249902,0,0);-ms-transform:matrix(0.173317,-0.004853,0.006997,0.249902,0,0);-webkit-transform:matrix(0.173317,-0.004853,0.006997,0.249902,0,0);}
.m73_c00395{transform:matrix(0.178955,-0.005011,0.006997,0.249902,0,0);-ms-transform:matrix(0.178955,-0.005011,0.006997,0.249902,0,0);-webkit-transform:matrix(0.178955,-0.005011,0.006997,0.249902,0,0);}
.m6_c00395{transform:matrix(0.182024,-0.005097,0.006997,0.249902,0,0);-ms-transform:matrix(0.182024,-0.005097,0.006997,0.249902,0,0);-webkit-transform:matrix(0.182024,-0.005097,0.006997,0.249902,0,0);}
.m76_c00395{transform:matrix(0.184018,-0.005153,0.006997,0.249902,0,0);-ms-transform:matrix(0.184018,-0.005153,0.006997,0.249902,0,0);-webkit-transform:matrix(0.184018,-0.005153,0.006997,0.249902,0,0);}
.m2b_c00395{transform:matrix(0.188251,-0.005271,0.006997,0.249902,0,0);-ms-transform:matrix(0.188251,-0.005271,0.006997,0.249902,0,0);-webkit-transform:matrix(0.188251,-0.005271,0.006997,0.249902,0,0);}
.m7d_c00395{transform:matrix(0.191850,-0.005372,0.006997,0.249902,0,0);-ms-transform:matrix(0.191850,-0.005372,0.006997,0.249902,0,0);-webkit-transform:matrix(0.191850,-0.005372,0.006997,0.249902,0,0);}
.m3e_c00395{transform:matrix(0.194284,-0.005440,0.006997,0.249902,0,0);-ms-transform:matrix(0.194284,-0.005440,0.006997,0.249902,0,0);-webkit-transform:matrix(0.194284,-0.005440,0.006997,0.249902,0,0);}
.mf_c00395{transform:matrix(0.194544,-0.005447,0.006997,0.249902,0,0);-ms-transform:matrix(0.194544,-0.005447,0.006997,0.249902,0,0);-webkit-transform:matrix(0.194544,-0.005447,0.006997,0.249902,0,0);}
.m58_c00395{transform:matrix(0.194759,-0.005453,0.006997,0.249902,0,0);-ms-transform:matrix(0.194759,-0.005453,0.006997,0.249902,0,0);-webkit-transform:matrix(0.194759,-0.005453,0.006997,0.249902,0,0);}
.m75_c00395{transform:matrix(0.194979,-0.005459,0.006997,0.249902,0,0);-ms-transform:matrix(0.194979,-0.005459,0.006997,0.249902,0,0);-webkit-transform:matrix(0.194979,-0.005459,0.006997,0.249902,0,0);}
.m47_c00395{transform:matrix(0.195523,-0.005475,0.006997,0.249902,0,0);-ms-transform:matrix(0.195523,-0.005475,0.006997,0.249902,0,0);-webkit-transform:matrix(0.195523,-0.005475,0.006997,0.249902,0,0);}
.m52_c00395{transform:matrix(0.196288,-0.005496,0.006997,0.249902,0,0);-ms-transform:matrix(0.196288,-0.005496,0.006997,0.249902,0,0);-webkit-transform:matrix(0.196288,-0.005496,0.006997,0.249902,0,0);}
.m5f_c00395{transform:matrix(0.196308,-0.005497,0.006997,0.249902,0,0);-ms-transform:matrix(0.196308,-0.005497,0.006997,0.249902,0,0);-webkit-transform:matrix(0.196308,-0.005497,0.006997,0.249902,0,0);}
.m5e_c00395{transform:matrix(0.197398,-0.005527,0.006997,0.249902,0,0);-ms-transform:matrix(0.197398,-0.005527,0.006997,0.249902,0,0);-webkit-transform:matrix(0.197398,-0.005527,0.006997,0.249902,0,0);}
.m71_c00395{transform:matrix(0.198217,-0.005550,0.006997,0.249902,0,0);-ms-transform:matrix(0.198217,-0.005550,0.006997,0.249902,0,0);-webkit-transform:matrix(0.198217,-0.005550,0.006997,0.249902,0,0);}
.m5a_c00395{transform:matrix(0.201121,-0.005631,0.006997,0.249902,0,0);-ms-transform:matrix(0.201121,-0.005631,0.006997,0.249902,0,0);-webkit-transform:matrix(0.201121,-0.005631,0.006997,0.249902,0,0);}
.m6d_c00395{transform:matrix(0.204055,-0.005714,0.006997,0.249902,0,0);-ms-transform:matrix(0.204055,-0.005714,0.006997,0.249902,0,0);-webkit-transform:matrix(0.204055,-0.005714,0.006997,0.249902,0,0);}
.m7e_c00395{transform:matrix(0.205484,-0.005754,0.006997,0.249902,0,0);-ms-transform:matrix(0.205484,-0.005754,0.006997,0.249902,0,0);-webkit-transform:matrix(0.205484,-0.005754,0.006997,0.249902,0,0);}
.m72_c00395{transform:matrix(0.205679,-0.005759,0.006997,0.249902,0,0);-ms-transform:matrix(0.205679,-0.005759,0.006997,0.249902,0,0);-webkit-transform:matrix(0.205679,-0.005759,0.006997,0.249902,0,0);}
.m49_c00395{transform:matrix(0.205899,-0.005765,0.006997,0.249902,0,0);-ms-transform:matrix(0.205899,-0.005765,0.006997,0.249902,0,0);-webkit-transform:matrix(0.205899,-0.005765,0.006997,0.249902,0,0);}
.m5d_c00395{transform:matrix(0.209833,-0.005875,0.006997,0.249902,0,0);-ms-transform:matrix(0.209833,-0.005875,0.006997,0.249902,0,0);-webkit-transform:matrix(0.209833,-0.005875,0.006997,0.249902,0,0);}
.m46_c00395{transform:matrix(0.209893,-0.005877,0.006997,0.249902,0,0);-ms-transform:matrix(0.209893,-0.005877,0.006997,0.249902,0,0);-webkit-transform:matrix(0.209893,-0.005877,0.006997,0.249902,0,0);}
.m35_c00395{transform:matrix(0.211502,-0.005922,0.006997,0.249902,0,0);-ms-transform:matrix(0.211502,-0.005922,0.006997,0.249902,0,0);-webkit-transform:matrix(0.211502,-0.005922,0.006997,0.249902,0,0);}
.m22_c00395{transform:matrix(0.211577,-0.005924,0.006997,0.249902,0,0);-ms-transform:matrix(0.211577,-0.005924,0.006997,0.249902,0,0);-webkit-transform:matrix(0.211577,-0.005924,0.006997,0.249902,0,0);}
.m5b_c00395{transform:matrix(0.212002,-0.005936,0.006997,0.249902,0,0);-ms-transform:matrix(0.212002,-0.005936,0.006997,0.249902,0,0);-webkit-transform:matrix(0.212002,-0.005936,0.006997,0.249902,0,0);}
.m3d_c00395{transform:matrix(0.214081,-0.005994,0.006997,0.249902,0,0);-ms-transform:matrix(0.214081,-0.005994,0.006997,0.249902,0,0);-webkit-transform:matrix(0.214081,-0.005994,0.006997,0.249902,0,0);}
.m59_c00395{transform:matrix(0.214586,-0.006008,0.006997,0.249902,0,0);-ms-transform:matrix(0.214586,-0.006008,0.006997,0.249902,0,0);-webkit-transform:matrix(0.214586,-0.006008,0.006997,0.249902,0,0);}
.m45_c00395{transform:matrix(0.216535,-0.006063,0.006997,0.249902,0,0);-ms-transform:matrix(0.216535,-0.006063,0.006997,0.249902,0,0);-webkit-transform:matrix(0.216535,-0.006063,0.006997,0.249902,0,0);}
.m7c_c00395{transform:matrix(0.216850,-0.006072,0.006997,0.249902,0,0);-ms-transform:matrix(0.216850,-0.006072,0.006997,0.249902,0,0);-webkit-transform:matrix(0.216850,-0.006072,0.006997,0.249902,0,0);}
.m3f_c00395{transform:matrix(0.216975,-0.006075,0.006997,0.249902,0,0);-ms-transform:matrix(0.216975,-0.006075,0.006997,0.249902,0,0);-webkit-transform:matrix(0.216975,-0.006075,0.006997,0.249902,0,0);}
.m54_c00395{transform:matrix(0.220059,-0.006162,0.006997,0.249902,0,0);-ms-transform:matrix(0.220059,-0.006162,0.006997,0.249902,0,0);-webkit-transform:matrix(0.220059,-0.006162,0.006997,0.249902,0,0);}
.m3a_c00395{transform:matrix(0.220329,-0.006169,0.006997,0.249902,0,0);-ms-transform:matrix(0.220329,-0.006169,0.006997,0.249902,0,0);-webkit-transform:matrix(0.220329,-0.006169,0.006997,0.249902,0,0);}
.m2e_c00395{transform:matrix(0.220684,-0.006179,0.006997,0.249902,0,0);-ms-transform:matrix(0.220684,-0.006179,0.006997,0.249902,0,0);-webkit-transform:matrix(0.220684,-0.006179,0.006997,0.249902,0,0);}
.m43_c00395{transform:matrix(0.220933,-0.006186,0.006997,0.249902,0,0);-ms-transform:matrix(0.220933,-0.006186,0.006997,0.249902,0,0);-webkit-transform:matrix(0.220933,-0.006186,0.006997,0.249902,0,0);}
.m44_c00395{transform:matrix(0.221683,-0.006207,0.006997,0.249902,0,0);-ms-transform:matrix(0.221683,-0.006207,0.006997,0.249902,0,0);-webkit-transform:matrix(0.221683,-0.006207,0.006997,0.249902,0,0);}
.m5c_c00395{transform:matrix(0.221898,-0.006213,0.006997,0.249902,0,0);-ms-transform:matrix(0.221898,-0.006213,0.006997,0.249902,0,0);-webkit-transform:matrix(0.221898,-0.006213,0.006997,0.249902,0,0);}
.m1e_c00395{transform:matrix(0.222523,-0.006231,0.006997,0.249902,0,0);-ms-transform:matrix(0.222523,-0.006231,0.006997,0.249902,0,0);-webkit-transform:matrix(0.222523,-0.006231,0.006997,0.249902,0,0);}
.m48_c00395{transform:matrix(0.222733,-0.006237,0.006997,0.249902,0,0);-ms-transform:matrix(0.222733,-0.006237,0.006997,0.249902,0,0);-webkit-transform:matrix(0.222733,-0.006237,0.006997,0.249902,0,0);}
.m27_c00395{transform:matrix(0.224667,-0.006291,0.006997,0.249902,0,0);-ms-transform:matrix(0.224667,-0.006291,0.006997,0.249902,0,0);-webkit-transform:matrix(0.224667,-0.006291,0.006997,0.249902,0,0);}
.m78_c00395{transform:matrix(0.229615,-0.006429,0.006997,0.249902,0,0);-ms-transform:matrix(0.229615,-0.006429,0.006997,0.249902,0,0);-webkit-transform:matrix(0.229615,-0.006429,0.006997,0.249902,0,0);}
.m66_c00395{transform:matrix(0.233034,-0.006525,0.006997,0.249902,0,0);-ms-transform:matrix(0.233034,-0.006525,0.006997,0.249902,0,0);-webkit-transform:matrix(0.233034,-0.006525,0.006997,0.249902,0,0);}
.m60_c00395{transform:matrix(0.237147,-0.006640,0.006997,0.249902,0,0);-ms-transform:matrix(0.237147,-0.006640,0.006997,0.249902,0,0);-webkit-transform:matrix(0.237147,-0.006640,0.006997,0.249902,0,0);}
.m4a_c00395{transform:matrix(0.237697,-0.006656,0.006997,0.249902,0,0);-ms-transform:matrix(0.237697,-0.006656,0.006997,0.249902,0,0);-webkit-transform:matrix(0.237697,-0.006656,0.006997,0.249902,0,0);}
.m4b_c00395{transform:matrix(0.237762,-0.006657,0.006997,0.249902,0,0);-ms-transform:matrix(0.237762,-0.006657,0.006997,0.249902,0,0);-webkit-transform:matrix(0.237762,-0.006657,0.006997,0.249902,0,0);}
.m65_c00395{transform:matrix(0.239141,-0.006696,0.006997,0.249902,0,0);-ms-transform:matrix(0.239141,-0.006696,0.006997,0.249902,0,0);-webkit-transform:matrix(0.239141,-0.006696,0.006997,0.249902,0,0);}
.m68_c00395{transform:matrix(0.241165,-0.006753,0.006997,0.249902,0,0);-ms-transform:matrix(0.241165,-0.006753,0.006997,0.249902,0,0);-webkit-transform:matrix(0.241165,-0.006753,0.006997,0.249902,0,0);}
.m18_c00395{transform:matrix(0.241205,-0.006754,0.006997,0.249902,0,0);-ms-transform:matrix(0.241205,-0.006754,0.006997,0.249902,0,0);-webkit-transform:matrix(0.241205,-0.006754,0.006997,0.249902,0,0);}
.m50_c00395{transform:matrix(0.241435,-0.006760,0.006997,0.249902,0,0);-ms-transform:matrix(0.241435,-0.006760,0.006997,0.249902,0,0);-webkit-transform:matrix(0.241435,-0.006760,0.006997,0.249902,0,0);}
.m32_c00395{transform:matrix(0.242560,-0.006792,0.006997,0.249902,0,0);-ms-transform:matrix(0.242560,-0.006792,0.006997,0.249902,0,0);-webkit-transform:matrix(0.242560,-0.006792,0.006997,0.249902,0,0);}
.m4d_c00395{transform:matrix(0.244604,-0.006849,0.006997,0.249902,0,0);-ms-transform:matrix(0.244604,-0.006849,0.006997,0.249902,0,0);-webkit-transform:matrix(0.244604,-0.006849,0.006997,0.249902,0,0);}
.m36_c00395{transform:matrix(0.247508,-0.006930,0.006997,0.249902,0,0);-ms-transform:matrix(0.247508,-0.006930,0.006997,0.249902,0,0);-webkit-transform:matrix(0.247508,-0.006930,0.006997,0.249902,0,0);}
.md_c00395{transform:matrix(0.248108,-0.006947,0.006997,0.249902,0,0);-ms-transform:matrix(0.248108,-0.006947,0.006997,0.249902,0,0);-webkit-transform:matrix(0.248108,-0.006947,0.006997,0.249902,0,0);}
.m2c_c00395{transform:matrix(0.249552,-0.006987,0.006997,0.249902,0,0);-ms-transform:matrix(0.249552,-0.006987,0.006997,0.249902,0,0);-webkit-transform:matrix(0.249552,-0.006987,0.006997,0.249902,0,0);}
.m6c_c00395{transform:matrix(0.250212,-0.007006,0.006997,0.249902,0,0);-ms-transform:matrix(0.250212,-0.007006,0.006997,0.249902,0,0);-webkit-transform:matrix(0.250212,-0.007006,0.006997,0.249902,0,0);}
.m31_c00395{transform:matrix(0.250912,-0.007026,0.006997,0.249902,0,0);-ms-transform:matrix(0.250912,-0.007026,0.006997,0.249902,0,0);-webkit-transform:matrix(0.250912,-0.007026,0.006997,0.249902,0,0);}
.m26_c00395{transform:matrix(0.252086,-0.007058,0.006997,0.249902,0,0);-ms-transform:matrix(0.252086,-0.007058,0.006997,0.249902,0,0);-webkit-transform:matrix(0.252086,-0.007058,0.006997,0.249902,0,0);}
.m25_c00395{transform:matrix(0.254620,-0.007129,0.006997,0.249902,0,0);-ms-transform:matrix(0.254620,-0.007129,0.006997,0.249902,0,0);-webkit-transform:matrix(0.254620,-0.007129,0.006997,0.249902,0,0);}
.m1a_c00395{transform:matrix(0.255330,-0.007149,0.006997,0.249902,0,0);-ms-transform:matrix(0.255330,-0.007149,0.006997,0.249902,0,0);-webkit-transform:matrix(0.255330,-0.007149,0.006997,0.249902,0,0);}
.m4_c00395{transform:matrix(0.258679,-0.007243,0.006997,0.249902,0,0);-ms-transform:matrix(0.258679,-0.007243,0.006997,0.249902,0,0);-webkit-transform:matrix(0.258679,-0.007243,0.006997,0.249902,0,0);}
.m21_c00395{transform:matrix(0.258799,-0.007246,0.006997,0.249902,0,0);-ms-transform:matrix(0.258799,-0.007246,0.006997,0.249902,0,0);-webkit-transform:matrix(0.258799,-0.007246,0.006997,0.249902,0,0);}
.m64_c00395{transform:matrix(0.261448,-0.007321,0.006997,0.249902,0,0);-ms-transform:matrix(0.261448,-0.007321,0.006997,0.249902,0,0);-webkit-transform:matrix(0.261448,-0.007321,0.006997,0.249902,0,0);}
.m37_c00395{transform:matrix(0.265141,-0.007424,0.006997,0.249902,0,0);-ms-transform:matrix(0.265141,-0.007424,0.006997,0.249902,0,0);-webkit-transform:matrix(0.265141,-0.007424,0.006997,0.249902,0,0);}
.m41_c00395{transform:matrix(0.265426,-0.007432,0.006997,0.249902,0,0);-ms-transform:matrix(0.265426,-0.007432,0.006997,0.249902,0,0);-webkit-transform:matrix(0.265426,-0.007432,0.006997,0.249902,0,0);}
.m17_c00395{transform:matrix(0.265896,-0.007445,0.006997,0.249902,0,0);-ms-transform:matrix(0.265896,-0.007445,0.006997,0.249902,0,0);-webkit-transform:matrix(0.265896,-0.007445,0.006997,0.249902,0,0);}
.m2a_c00395{transform:matrix(0.266226,-0.007454,0.006997,0.249902,0,0);-ms-transform:matrix(0.266226,-0.007454,0.006997,0.249902,0,0);-webkit-transform:matrix(0.266226,-0.007454,0.006997,0.249902,0,0);}
.m6a_c00395{transform:matrix(0.269964,-0.007559,0.006997,0.249902,0,0);-ms-transform:matrix(0.269964,-0.007559,0.006997,0.249902,0,0);-webkit-transform:matrix(0.269964,-0.007559,0.006997,0.249902,0,0);}
.m9_c00395{transform:matrix(0.271858,-0.007612,0.006997,0.249902,0,0);-ms-transform:matrix(0.271858,-0.007612,0.006997,0.249902,0,0);-webkit-transform:matrix(0.271858,-0.007612,0.006997,0.249902,0,0);}
.m69_c00395{transform:matrix(0.273588,-0.007660,0.006997,0.249902,0,0);-ms-transform:matrix(0.273588,-0.007660,0.006997,0.249902,0,0);-webkit-transform:matrix(0.273588,-0.007660,0.006997,0.249902,0,0);}
.m2d_c00395{transform:matrix(0.275352,-0.007710,0.006997,0.249902,0,0);-ms-transform:matrix(0.275352,-0.007710,0.006997,0.249902,0,0);-webkit-transform:matrix(0.275352,-0.007710,0.006997,0.249902,0,0);}
.m70_c00395{transform:matrix(0.275772,-0.007722,0.006997,0.249902,0,0);-ms-transform:matrix(0.275772,-0.007722,0.006997,0.249902,0,0);-webkit-transform:matrix(0.275772,-0.007722,0.006997,0.249902,0,0);}
.m53_c00395{transform:matrix(0.276477,-0.007741,0.006997,0.249902,0,0);-ms-transform:matrix(0.276477,-0.007741,0.006997,0.249902,0,0);-webkit-transform:matrix(0.276477,-0.007741,0.006997,0.249902,0,0);}
.m80_c00395{transform:matrix(0.277151,-0.007760,0.006997,0.249902,0,0);-ms-transform:matrix(0.277151,-0.007760,0.006997,0.249902,0,0);-webkit-transform:matrix(0.277151,-0.007760,0.006997,0.249902,0,0);}
.m29_c00395{transform:matrix(0.277691,-0.007775,0.006997,0.249902,0,0);-ms-transform:matrix(0.277691,-0.007775,0.006997,0.249902,0,0);-webkit-transform:matrix(0.277691,-0.007775,0.006997,0.249902,0,0);}
.m63_c00395{transform:matrix(0.277831,-0.007779,0.006997,0.249902,0,0);-ms-transform:matrix(0.277831,-0.007779,0.006997,0.249902,0,0);-webkit-transform:matrix(0.277831,-0.007779,0.006997,0.249902,0,0);}
.m42_c00395{transform:matrix(0.279066,-0.007814,0.006997,0.249902,0,0);-ms-transform:matrix(0.279066,-0.007814,0.006997,0.249902,0,0);-webkit-transform:matrix(0.279066,-0.007814,0.006997,0.249902,0,0);}
.m19_c00395{transform:matrix(0.279620,-0.007829,0.006997,0.249902,0,0);-ms-transform:matrix(0.279620,-0.007829,0.006997,0.249902,0,0);-webkit-transform:matrix(0.279620,-0.007829,0.006997,0.249902,0,0);}
.m24_c00395{transform:matrix(0.280815,-0.007863,0.006997,0.249902,0,0);-ms-transform:matrix(0.280815,-0.007863,0.006997,0.249902,0,0);-webkit-transform:matrix(0.280815,-0.007863,0.006997,0.249902,0,0);}
.m14_c00395{transform:matrix(0.284818,-0.007975,0.006997,0.249902,0,0);-ms-transform:matrix(0.284818,-0.007975,0.006997,0.249902,0,0);-webkit-transform:matrix(0.284818,-0.007975,0.006997,0.249902,0,0);}
.m16_c00395{transform:matrix(0.285328,-0.007989,0.006997,0.249902,0,0);-ms-transform:matrix(0.285328,-0.007989,0.006997,0.249902,0,0);-webkit-transform:matrix(0.285328,-0.007989,0.006997,0.249902,0,0);}
.m23_c00395{transform:matrix(0.285373,-0.007990,0.006997,0.249902,0,0);-ms-transform:matrix(0.285373,-0.007990,0.006997,0.249902,0,0);-webkit-transform:matrix(0.285373,-0.007990,0.006997,0.249902,0,0);}
.m30_c00395{transform:matrix(0.290856,-0.008144,0.006997,0.249902,0,0);-ms-transform:matrix(0.290856,-0.008144,0.006997,0.249902,0,0);-webkit-transform:matrix(0.290856,-0.008144,0.006997,0.249902,0,0);}
.m7a_c00395{transform:matrix(0.297413,-0.008328,0.006997,0.249902,0,0);-ms-transform:matrix(0.297413,-0.008328,0.006997,0.249902,0,0);-webkit-transform:matrix(0.297413,-0.008328,0.006997,0.249902,0,0);}
.m51_c00395{transform:matrix(0.298483,-0.008358,0.006997,0.249902,0,0);-ms-transform:matrix(0.298483,-0.008358,0.006997,0.249902,0,0);-webkit-transform:matrix(0.298483,-0.008358,0.006997,0.249902,0,0);}
.m4e_c00395{transform:matrix(0.298803,-0.008366,0.006997,0.249902,0,0);-ms-transform:matrix(0.298803,-0.008366,0.006997,0.249902,0,0);-webkit-transform:matrix(0.298803,-0.008366,0.006997,0.249902,0,0);}
.m67_c00395{transform:matrix(0.299078,-0.008374,0.006997,0.249902,0,0);-ms-transform:matrix(0.299078,-0.008374,0.006997,0.249902,0,0);-webkit-transform:matrix(0.299078,-0.008374,0.006997,0.249902,0,0);}
.m4f_c00395{transform:matrix(0.302421,-0.008468,0.006997,0.249902,0,0);-ms-transform:matrix(0.302421,-0.008468,0.006997,0.249902,0,0);-webkit-transform:matrix(0.302421,-0.008468,0.006997,0.249902,0,0);}
.m1f_c00395{transform:matrix(0.304746,-0.008533,0.006997,0.249902,0,0);-ms-transform:matrix(0.304746,-0.008533,0.006997,0.249902,0,0);-webkit-transform:matrix(0.304746,-0.008533,0.006997,0.249902,0,0);}
.m28_c00395{transform:matrix(0.305105,-0.008543,0.006997,0.249902,0,0);-ms-transform:matrix(0.305105,-0.008543,0.006997,0.249902,0,0);-webkit-transform:matrix(0.305105,-0.008543,0.006997,0.249902,0,0);}
.m79_c00395{transform:matrix(0.307579,-0.008612,0.006997,0.249902,0,0);-ms-transform:matrix(0.307579,-0.008612,0.006997,0.249902,0,0);-webkit-transform:matrix(0.307579,-0.008612,0.006997,0.249902,0,0);}
.m1b_c00395{transform:matrix(0.315821,-0.008843,0.006997,0.249902,0,0);-ms-transform:matrix(0.315821,-0.008843,0.006997,0.249902,0,0);-webkit-transform:matrix(0.315821,-0.008843,0.006997,0.249902,0,0);}
.m2_c00395{transform:matrix(0.325933,-0.004889,0.003750,0.249972,0,0);-ms-transform:matrix(0.325933,-0.004889,0.003750,0.249972,0,0);-webkit-transform:matrix(0.325933,-0.004889,0.003750,0.249972,0,0);}
.m56_c00395{transform:matrix(0.329626,-0.009230,0.006997,0.249902,0,0);-ms-transform:matrix(0.329626,-0.009230,0.006997,0.249902,0,0);-webkit-transform:matrix(0.329626,-0.009230,0.006997,0.249902,0,0);}
.m2f_c00395{transform:matrix(0.330231,-0.009246,0.006997,0.249902,0,0);-ms-transform:matrix(0.330231,-0.009246,0.006997,0.249902,0,0);-webkit-transform:matrix(0.330231,-0.009246,0.006997,0.249902,0,0);}
.m10_c00395{transform:matrix(0.340022,-0.009521,0.006997,0.249902,0,0);-ms-transform:matrix(0.340022,-0.009521,0.006997,0.249902,0,0);-webkit-transform:matrix(0.340022,-0.009521,0.006997,0.249902,0,0);}
.m61_c00395{transform:matrix(0.341046,-0.009549,0.006997,0.249902,0,0);-ms-transform:matrix(0.341046,-0.009549,0.006997,0.249902,0,0);-webkit-transform:matrix(0.341046,-0.009549,0.006997,0.249902,0,0);}
.m3c_c00395{transform:matrix(0.342581,-0.009592,0.006997,0.249902,0,0);-ms-transform:matrix(0.342581,-0.009592,0.006997,0.249902,0,0);-webkit-transform:matrix(0.342581,-0.009592,0.006997,0.249902,0,0);}
.m1c_c00395{transform:matrix(0.343945,-0.009630,0.006997,0.249902,0,0);-ms-transform:matrix(0.343945,-0.009630,0.006997,0.249902,0,0);-webkit-transform:matrix(0.343945,-0.009630,0.006997,0.249902,0,0);}
.m1d_c00395{transform:matrix(0.344070,-0.009634,0.006997,0.249902,0,0);-ms-transform:matrix(0.344070,-0.009634,0.006997,0.249902,0,0);-webkit-transform:matrix(0.344070,-0.009634,0.006997,0.249902,0,0);}
.m15_c00395{transform:matrix(0.348833,-0.009767,0.006997,0.249902,0,0);-ms-transform:matrix(0.348833,-0.009767,0.006997,0.249902,0,0);-webkit-transform:matrix(0.348833,-0.009767,0.006997,0.249902,0,0);}
.m12_c00395{transform:matrix(0.350383,-0.009811,0.006997,0.249902,0,0);-ms-transform:matrix(0.350383,-0.009811,0.006997,0.249902,0,0);-webkit-transform:matrix(0.350383,-0.009811,0.006997,0.249902,0,0);}
.m13_c00395{transform:matrix(0.375393,-0.010511,0.006997,0.249902,0,0);-ms-transform:matrix(0.375393,-0.010511,0.006997,0.249902,0,0);-webkit-transform:matrix(0.375393,-0.010511,0.006997,0.249902,0,0);}
.m6f_c00395{transform:matrix(0.381231,-0.010674,0.006997,0.249902,0,0);-ms-transform:matrix(0.381231,-0.010674,0.006997,0.249902,0,0);-webkit-transform:matrix(0.381231,-0.010674,0.006997,0.249902,0,0);}
.m57_c00395{transform:matrix(0.411869,-0.011532,0.006997,0.249902,0,0);-ms-transform:matrix(0.411869,-0.011532,0.006997,0.249902,0,0);-webkit-transform:matrix(0.411869,-0.011532,0.006997,0.249902,0,0);}
.m38_c00395{transform:matrix(0.420135,-0.011764,0.006997,0.249902,0,0);-ms-transform:matrix(0.420135,-0.011764,0.006997,0.249902,0,0);-webkit-transform:matrix(0.420135,-0.011764,0.006997,0.249902,0,0);}
.m40_c00395{transform:matrix(0.432735,-0.012117,0.006997,0.249902,0,0);-ms-transform:matrix(0.432735,-0.012117,0.006997,0.249902,0,0);-webkit-transform:matrix(0.432735,-0.012117,0.006997,0.249902,0,0);}
.m6b_c00395{transform:matrix(0.451373,-0.012638,0.006997,0.249902,0,0);-ms-transform:matrix(0.451373,-0.012638,0.006997,0.249902,0,0);-webkit-transform:matrix(0.451373,-0.012638,0.006997,0.249902,0,0);}
.m4c_c00395{transform:matrix(0.455516,-0.012754,0.006997,0.249902,0,0);-ms-transform:matrix(0.455516,-0.012754,0.006997,0.249902,0,0);-webkit-transform:matrix(0.455516,-0.012754,0.006997,0.249902,0,0);}
.m7f_c00395{transform:matrix(0.460999,-0.012908,0.006997,0.249902,0,0);-ms-transform:matrix(0.460999,-0.012908,0.006997,0.249902,0,0);-webkit-transform:matrix(0.460999,-0.012908,0.006997,0.249902,0,0);}
.m62_c00395{transform:matrix(0.469611,-0.013149,0.006997,0.249902,0,0);-ms-transform:matrix(0.469611,-0.013149,0.006997,0.249902,0,0);-webkit-transform:matrix(0.469611,-0.013149,0.006997,0.249902,0,0);}
.m33_c00395{transform:matrix(0.477738,-0.013377,0.006997,0.249902,0,0);-ms-transform:matrix(0.477738,-0.013377,0.006997,0.249902,0,0);-webkit-transform:matrix(0.477738,-0.013377,0.006997,0.249902,0,0);}
.m34_c00395{transform:matrix(0.484885,-0.013577,0.006997,0.249902,0,0);-ms-transform:matrix(0.484885,-0.013577,0.006997,0.249902,0,0);-webkit-transform:matrix(0.484885,-0.013577,0.006997,0.249902,0,0);}
.m39_c00395{transform:matrix(0.620327,-0.017369,0.006997,0.249902,0,0);-ms-transform:matrix(0.620327,-0.017369,0.006997,0.249902,0,0);-webkit-transform:matrix(0.620327,-0.017369,0.006997,0.249902,0,0);}
.m0_c00395{transform:matrix(0.650052,-0.009751,0.003750,0.249972,0,0);-ms-transform:matrix(0.650052,-0.009751,0.003750,0.249972,0,0);-webkit-transform:matrix(0.650052,-0.009751,0.003750,0.249972,0,0);}
.m3_c00395{transform:matrix(0.693417,-0.010401,0.003750,0.249972,0,0);-ms-transform:matrix(0.693417,-0.010401,0.003750,0.249972,0,0);-webkit-transform:matrix(0.693417,-0.010401,0.003750,0.249972,0,0);}
.m11_c00395{transform:matrix(0.750976,-0.021027,0.006997,0.249902,0,0);-ms-transform:matrix(0.750976,-0.021027,0.006997,0.249902,0,0);-webkit-transform:matrix(0.750976,-0.021027,0.006997,0.249902,0,0);}
.m1_c00395{transform:matrix(0.768584,-0.011529,0.003750,0.249972,0,0);-ms-transform:matrix(0.768584,-0.011529,0.003750,0.249972,0,0);-webkit-transform:matrix(0.768584,-0.011529,0.003750,0.249972,0,0);}
.m55_c00395{transform:matrix(0.890551,-0.024935,0.006997,0.249902,0,0);-ms-transform:matrix(0.890551,-0.024935,0.006997,0.249902,0,0);-webkit-transform:matrix(0.890551,-0.024935,0.006997,0.249902,0,0);}
.m20_c00395{transform:matrix(1.679487,-0.047026,0.006997,0.249902,0,0);-ms-transform:matrix(1.679487,-0.047026,0.006997,0.249902,0,0);-webkit-transform:matrix(1.679487,-0.047026,0.006997,0.249902,0,0);}
.v0_c00395{vertical-align:0.000000px;}
.ls0_c00395{letter-spacing:0.000000px;}
.sc__c00395{text-shadow:none;}
.sc0_c00395{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__c00395{-webkit-text-stroke:0px transparent;}
.sc0_c00395{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00395{word-spacing:0.000000px;}
.fc0_c00395{color:transparent;}
.fs0_c00395{font-size:36.004050px;}
.fs2_c00395{font-size:72.028218px;}
.fs6_c00395{font-size:78.030570px;}
.fs3_c00395{font-size:84.032922px;}
.fs5_c00395{font-size:90.035273px;}
.fs4_c00395{font-size:102.039976px;}
.fs1_c00395{font-size:108.042328px;}
.y0_c00395{bottom:0.000000px;}
.y7c_c00395{bottom:664.935570px;}
.y7d_c00395{bottom:665.641992px;}
.y7e_c00395{bottom:668.062692px;}
.y7f_c00395{bottom:668.800224px;}
.y80_c00395{bottom:670.001268px;}
.y81_c00395{bottom:671.236824px;}
.y82_c00395{bottom:672.114990px;}
.y6f_c00395{bottom:693.851490px;}
.y70_c00395{bottom:694.709868px;}
.y71_c00395{bottom:696.390228px;}
.y72_c00395{bottom:697.296930px;}
.y73_c00395{bottom:699.907284px;}
.y74_c00395{bottom:701.523264px;}
.y75_c00395{bottom:702.457962px;}
.y76_c00395{bottom:703.178244px;}
.y77_c00395{bottom:706.454790px;}
.y78_c00395{bottom:707.341782px;}
.y79_c00395{bottom:708.260718px;}
.y7a_c00395{bottom:710.030472px;}
.y7b_c00395{bottom:710.864730px;}
.y63_c00395{bottom:730.358388px;}
.y64_c00395{bottom:731.680800px;}
.y65_c00395{bottom:733.842900px;}
.y66_c00395{bottom:736.000170px;}
.y67_c00395{bottom:737.043162px;}
.y68_c00395{bottom:737.827884px;}
.y69_c00395{bottom:739.408932px;}
.y6a_c00395{bottom:740.758848px;}
.y6b_c00395{bottom:741.451680px;}
.y6c_c00395{bottom:743.751888px;}
.y6d_c00395{bottom:745.348248px;}
.y6e_c00395{bottom:746.127048px;}
.y57_c00395{bottom:765.153504px;}
.y58_c00395{bottom:766.378248px;}
.y59_c00395{bottom:767.968188px;}
.y5a_c00395{bottom:768.810642px;}
.y5b_c00395{bottom:770.315748px;}
.y5c_c00395{bottom:772.995012px;}
.y5d_c00395{bottom:774.055410px;}
.y5e_c00395{bottom:777.574272px;}
.y5f_c00395{bottom:779.243052px;}
.y60_c00395{bottom:780.279522px;}
.y61_c00395{bottom:781.565004px;}
.y62_c00395{bottom:784.774692px;}
.y4d_c00395{bottom:799.290846px;}
.y4e_c00395{bottom:801.271692px;}
.y4f_c00395{bottom:803.610990px;}
.y50_c00395{bottom:804.652272px;}
.y51_c00395{bottom:805.817910px;}
.y52_c00395{bottom:808.773570px;}
.y53_c00395{bottom:811.437246px;}
.y54_c00395{bottom:812.358204px;}
.y55_c00395{bottom:812.919912px;}
.y56_c00395{bottom:814.736406px;}
.y41_c00395{bottom:839.095542px;}
.y42_c00395{bottom:840.375036px;}
.y43_c00395{bottom:841.345758px;}
.y44_c00395{bottom:841.820202px;}
.y45_c00395{bottom:843.447510px;}
.y46_c00395{bottom:845.302302px;}
.y47_c00395{bottom:846.918654px;}
.y48_c00395{bottom:848.097420px;}
.y49_c00395{bottom:848.779506px;}
.y4a_c00395{bottom:850.859556px;}
.y4b_c00395{bottom:851.802948px;}
.y4c_c00395{bottom:852.877362px;}
.y35_c00395{bottom:872.430000px;}
.y36_c00395{bottom:874.122600px;}
.y37_c00395{bottom:875.453664px;}
.y38_c00395{bottom:878.048718px;}
.y39_c00395{bottom:879.526908px;}
.y3a_c00395{bottom:880.395972px;}
.y3b_c00395{bottom:881.272596px;}
.y3c_c00395{bottom:885.030378px;}
.y3d_c00395{bottom:885.632994px;}
.y3e_c00395{bottom:887.779362px;}
.y3f_c00395{bottom:889.904940px;}
.y40_c00395{bottom:890.874636px;}
.y29_c00395{bottom:910.374102px;}
.y2a_c00395{bottom:912.151008px;}
.y2b_c00395{bottom:914.656830px;}
.y2c_c00395{bottom:915.631344px;}
.y2d_c00395{bottom:916.318272px;}
.y2e_c00395{bottom:917.973288px;}
.y2f_c00395{bottom:920.759934px;}
.y30_c00395{bottom:922.342146px;}
.y31_c00395{bottom:924.273786px;}
.y32_c00395{bottom:927.177408px;}
.y33_c00395{bottom:928.123698px;}
.y34_c00395{bottom:928.935498px;}
.y20_c00395{bottom:941.214546px;}
.y21_c00395{bottom:942.082026px;}
.y22_c00395{bottom:950.531568px;}
.y23_c00395{bottom:953.077374px;}
.y24_c00395{bottom:954.332364px;}
.y25_c00395{bottom:955.351554px;}
.y26_c00395{bottom:956.849958px;}
.y27_c00395{bottom:957.878544px;}
.y28_c00395{bottom:958.857132px;}
.y13_c00395{bottom:981.707484px;}
.y14_c00395{bottom:983.043600px;}
.y15_c00395{bottom:986.008716px;}
.y16_c00395{bottom:988.872228px;}
.y17_c00395{bottom:990.426654px;}
.y18_c00395{bottom:992.005728px;}
.y19_c00395{bottom:992.820234px;}
.y1a_c00395{bottom:993.618030px;}
.y1b_c00395{bottom:994.150962px;}
.y1c_c00395{bottom:995.751450px;}
.y1d_c00395{bottom:996.638376px;}
.y1e_c00395{bottom:998.303418px;}
.y1f_c00395{bottom:999.425184px;}
.y5_c00395{bottom:1013.059500px;}
.y6_c00395{bottom:1015.603062px;}
.y7_c00395{bottom:1016.859870px;}
.y8_c00395{bottom:1018.728786px;}
.y9_c00395{bottom:1019.975682px;}
.ya_c00395{bottom:1020.868476px;}
.yb_c00395{bottom:1022.727732px;}
.yc_c00395{bottom:1023.674706px;}
.yd_c00395{bottom:1024.882122px;}
.ye_c00395{bottom:1026.635622px;}
.yf_c00395{bottom:1027.676760px;}
.y10_c00395{bottom:1028.535198px;}
.y11_c00395{bottom:1029.918972px;}
.y12_c00395{bottom:1031.288004px;}
.y1_c00395{bottom:1118.341500px;}
.y2_c00395{bottom:1121.050342px;}
.y3_c00395{bottom:1121.359200px;}
.y4_c00395{bottom:1121.656650px;}
.h2_c00395{height:36.004050px;}
.h4_c00395{height:72.028218px;}
.h8_c00395{height:78.030570px;}
.h5_c00395{height:84.032922px;}
.h7_c00395{height:90.035273px;}
.h6_c00395{height:102.039976px;}
.h3_c00395{height:108.042328px;}
.h1_c00395{height:1251.000000px;}
.h0_c00395{height:1251.150000px;}
.w0_c00395{width:915.000000px;}
.x0_c00395{left:0.000000px;}
.x1f_c00395{left:1.614654px;}
.x13_c00395{left:11.648100px;}
.x3f_c00395{left:18.355344px;}
.x5_c00395{left:29.607000px;}
.x20_c00395{left:31.523814px;}
.x33_c00395{left:41.064000px;}
.x28_c00395{left:42.136254px;}
.x5b_c00395{left:50.542314px;}
.x14_c00395{left:67.301316px;}
.x63_c00395{left:76.980918px;}
.x40_c00395{left:79.277772px;}
.x34_c00395{left:101.514000px;}
.x29_c00395{left:103.399032px;}
.x5c_c00395{left:105.652488px;}
.x52_c00395{left:108.199716px;}
.x64_c00395{left:109.996266px;}
.x4a_c00395{left:115.977558px;}
.x6_c00395{left:120.448500px;}
.x41_c00395{left:125.473302px;}
.x35_c00395{left:149.052000px;}
.x53_c00395{left:161.176734px;}
.x7_c00395{left:165.334500px;}
.x65_c00395{left:174.619878px;}
.x2a_c00395{left:189.783096px;}
.x15_c00395{left:190.837134px;}
.x5d_c00395{left:195.737568px;}
.x4b_c00395{left:202.633494px;}
.x66_c00395{left:209.468310px;}
.x2b_c00395{left:223.407672px;}
.x42_c00395{left:225.626958px;}
.x8_c00395{left:232.081500px;}
.x54_c00395{left:239.442366px;}
.x36_c00395{left:241.732500px;}
.x2c_c00395{left:247.083000px;}
.x9_c00395{left:276.613500px;}
.x1_c00395{left:283.330500px;}
.x4c_c00395{left:284.400804px;}
.x5e_c00395{left:285.650148px;}
.x37_c00395{left:294.525000px;}
.x2d_c00395{left:304.153404px;}
.xa_c00395{left:308.499000px;}
.x16_c00395{left:310.154490px;}
.x43_c00395{left:313.958262px;}
.x21_c00395{left:322.892166px;}
.x38_c00395{left:325.563000px;}
.x55_c00395{left:328.750368px;}
.x6b_c00395{left:354.367230px;}
.x39_c00395{left:356.871000px;}
.x5f_c00395{left:361.809174px;}
.x56_c00395{left:364.101894px;}
.x67_c00395{left:372.042924px;}
.xb_c00395{left:374.901000px;}
.x6c_c00395{left:386.459106px;}
.x44_c00395{left:390.932340px;}
.x4d_c00395{left:393.873870px;}
.x2e_c00395{left:400.245216px;}
.xc_c00395{left:408.721500px;}
.x22_c00395{left:410.704230px;}
.x60_c00395{left:427.657524px;}
.x68_c00395{left:435.706494px;}
.x17_c00395{left:440.669064px;}
.x45_c00395{left:447.077844px;}
.xd_c00395{left:451.843500px;}
.x23_c00395{left:453.970512px;}
.x2_c00395{left:463.920000px;}
.x18_c00395{left:474.637386px;}
.x46_c00395{left:479.533686px;}
.x57_c00395{left:481.411842px;}
.x3_c00395{left:484.510500px;}
.x24_c00395{left:489.137046px;}
.x3a_c00395{left:491.077500px;}
.x4e_c00395{left:492.543642px;}
.x6d_c00395{left:496.502586px;}
.x4_c00395{left:504.340500px;}
.x19_c00395{left:507.848082px;}
.x3b_c00395{left:512.599500px;}
.xe_c00395{left:514.468500px;}
.x2f_c00395{left:521.450856px;}
.x4f_c00395{left:526.668108px;}
.x1a_c00395{left:530.044560px;}
.x58_c00395{left:537.043734px;}
.x25_c00395{left:540.828618px;}
.x50_c00395{left:547.479696px;}
.xf_c00395{left:551.652000px;}
.x69_c00395{left:561.733050px;}
.x59_c00395{left:571.594302px;}
.x26_c00395{left:576.277110px;}
.x47_c00395{left:578.590590px;}
.x10_c00395{left:582.310500px;}
.x6e_c00395{left:584.609370px;}
.x3c_c00395{left:589.255500px;}
.x1b_c00395{left:596.748036px;}
.x61_c00395{left:608.604768px;}
.x27_c00395{left:610.047186px;}
.x51_c00395{left:614.767086px;}
.x30_c00395{left:621.559542px;}
.x48_c00395{left:623.488368px;}
.x11_c00395{left:631.731000px;}
.x1c_c00395{left:633.731694px;}
.x6f_c00395{left:640.745778px;}
.x31_c00395{left:654.176118px;}
.x3d_c00395{left:665.169000px;}
.x49_c00395{left:674.673906px;}
.x12_c00395{left:680.625000px;}
.x32_c00395{left:682.150320px;}
.x3e_c00395{left:699.801000px;}
.x1d_c00395{left:703.115964px;}
.x62_c00395{left:707.585856px;}
.x5a_c00395{left:721.413402px;}
.x6a_c00395{left:731.347542px;}
.x1e_c00395{left:749.880714px;}
@media print{
.v0_c00395{vertical-align:0.000000pt;}
.ls0_c00395{letter-spacing:0.000000pt;}
.ws0_c00395{word-spacing:0.000000pt;}
.fs0_c00395{font-size:32.003600pt;}
.fs2_c00395{font-size:64.025083pt;}
.fs6_c00395{font-size:69.360507pt;}
.fs3_c00395{font-size:74.695930pt;}
.fs5_c00395{font-size:80.031354pt;}
.fs4_c00395{font-size:90.702201pt;}
.fs1_c00395{font-size:96.037625pt;}
.y0_c00395{bottom:0.000000pt;}
.y7c_c00395{bottom:591.053840pt;}
.y7d_c00395{bottom:591.681771pt;}
.y7e_c00395{bottom:593.833504pt;}
.y7f_c00395{bottom:594.489088pt;}
.y80_c00395{bottom:595.556683pt;}
.y81_c00395{bottom:596.654955pt;}
.y82_c00395{bottom:597.435547pt;}
.y6f_c00395{bottom:616.756880pt;}
.y70_c00395{bottom:617.519883pt;}
.y71_c00395{bottom:619.013536pt;}
.y72_c00395{bottom:619.819493pt;}
.y73_c00395{bottom:622.139808pt;}
.y74_c00395{bottom:623.576235pt;}
.y75_c00395{bottom:624.407077pt;}
.y76_c00395{bottom:625.047328pt;}
.y77_c00395{bottom:627.959813pt;}
.y78_c00395{bottom:628.748251pt;}
.y79_c00395{bottom:629.565083pt;}
.y7a_c00395{bottom:631.138197pt;}
.y7b_c00395{bottom:631.879760pt;}
.y63_c00395{bottom:649.207456pt;}
.y64_c00395{bottom:650.382933pt;}
.y65_c00395{bottom:652.304800pt;}
.y66_c00395{bottom:654.222373pt;}
.y67_c00395{bottom:655.149477pt;}
.y68_c00395{bottom:655.847008pt;}
.y69_c00395{bottom:657.252384pt;}
.y6a_c00395{bottom:658.452309pt;}
.y6b_c00395{bottom:659.068160pt;}
.y6c_c00395{bottom:661.112789pt;}
.y6d_c00395{bottom:662.531776pt;}
.y6e_c00395{bottom:663.224043pt;}
.y57_c00395{bottom:680.136448pt;}
.y58_c00395{bottom:681.225109pt;}
.y59_c00395{bottom:682.638389pt;}
.y5a_c00395{bottom:683.387237pt;}
.y5b_c00395{bottom:684.725109pt;}
.y5c_c00395{bottom:687.106677pt;}
.y5d_c00395{bottom:688.049253pt;}
.y5e_c00395{bottom:691.177131pt;}
.y5f_c00395{bottom:692.660491pt;}
.y60_c00395{bottom:693.581797pt;}
.y61_c00395{bottom:694.724448pt;}
.y62_c00395{bottom:697.577504pt;}
.y4d_c00395{bottom:710.480752pt;}
.y4e_c00395{bottom:712.241504pt;}
.y4f_c00395{bottom:714.320880pt;}
.y50_c00395{bottom:715.246464pt;}
.y51_c00395{bottom:716.282587pt;}
.y52_c00395{bottom:718.909840pt;}
.y53_c00395{bottom:721.277552pt;}
.y54_c00395{bottom:722.096181pt;}
.y55_c00395{bottom:722.595477pt;}
.y56_c00395{bottom:724.210139pt;}
.y41_c00395{bottom:745.862704pt;}
.y42_c00395{bottom:747.000032pt;}
.y43_c00395{bottom:747.862896pt;}
.y44_c00395{bottom:748.284624pt;}
.y45_c00395{bottom:749.731120pt;}
.y46_c00395{bottom:751.379824pt;}
.y47_c00395{bottom:752.816581pt;}
.y48_c00395{bottom:753.864373pt;}
.y49_c00395{bottom:754.470672pt;}
.y4a_c00395{bottom:756.319605pt;}
.y4b_c00395{bottom:757.158176pt;}
.y4c_c00395{bottom:758.113211pt;}
.y35_c00395{bottom:775.493333pt;}
.y36_c00395{bottom:776.997867pt;}
.y37_c00395{bottom:778.181035pt;}
.y38_c00395{bottom:780.487749pt;}
.y39_c00395{bottom:781.801696pt;}
.y3a_c00395{bottom:782.574197pt;}
.y3b_c00395{bottom:783.353419pt;}
.y3c_c00395{bottom:786.693669pt;}
.y3d_c00395{bottom:787.229328pt;}
.y3e_c00395{bottom:789.137211pt;}
.y3f_c00395{bottom:791.026613pt;}
.y40_c00395{bottom:791.888565pt;}
.y29_c00395{bottom:809.221424pt;}
.y2a_c00395{bottom:810.800896pt;}
.y2b_c00395{bottom:813.028293pt;}
.y2c_c00395{bottom:813.894528pt;}
.y2d_c00395{bottom:814.505131pt;}
.y2e_c00395{bottom:815.976256pt;}
.y2f_c00395{bottom:818.453275pt;}
.y30_c00395{bottom:819.859685pt;}
.y31_c00395{bottom:821.576699pt;}
.y32_c00395{bottom:824.157696pt;}
.y33_c00395{bottom:824.998843pt;}
.y34_c00395{bottom:825.720443pt;}
.y20_c00395{bottom:836.635152pt;}
.y21_c00395{bottom:837.406245pt;}
.y22_c00395{bottom:844.916949pt;}
.y23_c00395{bottom:847.179888pt;}
.y24_c00395{bottom:848.295435pt;}
.y25_c00395{bottom:849.201381pt;}
.y26_c00395{bottom:850.533296pt;}
.y27_c00395{bottom:851.447595pt;}
.y28_c00395{bottom:852.317451pt;}
.y13_c00395{bottom:872.628875pt;}
.y14_c00395{bottom:873.816533pt;}
.y15_c00395{bottom:876.452192pt;}
.y16_c00395{bottom:878.997536pt;}
.y17_c00395{bottom:880.379248pt;}
.y18_c00395{bottom:881.782869pt;}
.y19_c00395{bottom:882.506875pt;}
.y1a_c00395{bottom:883.216027pt;}
.y1b_c00395{bottom:883.689744pt;}
.y1c_c00395{bottom:885.112400pt;}
.y1d_c00395{bottom:885.900779pt;}
.y1e_c00395{bottom:887.380816pt;}
.y1f_c00395{bottom:888.377941pt;}
.y5_c00395{bottom:900.497333pt;}
.y6_c00395{bottom:902.758277pt;}
.y7_c00395{bottom:903.875440pt;}
.y8_c00395{bottom:905.536699pt;}
.y9_c00395{bottom:906.645051pt;}
.ya_c00395{bottom:907.438645pt;}
.yb_c00395{bottom:909.091317pt;}
.yc_c00395{bottom:909.933072pt;}
.yd_c00395{bottom:911.006331pt;}
.ye_c00395{bottom:912.564997pt;}
.yf_c00395{bottom:913.490453pt;}
.y10_c00395{bottom:914.253509pt;}
.y11_c00395{bottom:915.483531pt;}
.y12_c00395{bottom:916.700448pt;}
.y1_c00395{bottom:994.081333pt;}
.y2_c00395{bottom:996.489193pt;}
.y3_c00395{bottom:996.763733pt;}
.y4_c00395{bottom:997.028133pt;}
.h2_c00395{height:32.003600pt;}
.h4_c00395{height:64.025083pt;}
.h8_c00395{height:69.360507pt;}
.h5_c00395{height:74.695930pt;}
.h7_c00395{height:80.031354pt;}
.h6_c00395{height:90.702201pt;}
.h3_c00395{height:96.037625pt;}
.h1_c00395{height:1112.000000pt;}
.h0_c00395{height:1112.133333pt;}
.w0_c00395{width:813.333333pt;}
.x0_c00395{left:0.000000pt;}
.x1f_c00395{left:1.435248pt;}
.x13_c00395{left:10.353867pt;}
.x3f_c00395{left:16.315861pt;}
.x5_c00395{left:26.317333pt;}
.x20_c00395{left:28.021168pt;}
.x33_c00395{left:36.501333pt;}
.x28_c00395{left:37.454448pt;}
.x5b_c00395{left:44.926501pt;}
.x14_c00395{left:59.823392pt;}
.x63_c00395{left:68.427483pt;}
.x40_c00395{left:70.469131pt;}
.x34_c00395{left:90.234667pt;}
.x29_c00395{left:91.910251pt;}
.x5c_c00395{left:93.913323pt;}
.x52_c00395{left:96.177525pt;}
.x64_c00395{left:97.774459pt;}
.x4a_c00395{left:103.091163pt;}
.x6_c00395{left:107.065333pt;}
.x41_c00395{left:111.531824pt;}
.x35_c00395{left:132.490667pt;}
.x53_c00395{left:143.268208pt;}
.x7_c00395{left:146.964000pt;}
.x65_c00395{left:155.217669pt;}
.x2a_c00395{left:168.696085pt;}
.x15_c00395{left:169.633008pt;}
.x5d_c00395{left:173.988949pt;}
.x4b_c00395{left:180.118661pt;}
.x66_c00395{left:186.194053pt;}
.x2b_c00395{left:198.584597pt;}
.x42_c00395{left:200.557296pt;}
.x8_c00395{left:206.294667pt;}
.x54_c00395{left:212.837659pt;}
.x36_c00395{left:214.873333pt;}
.x2c_c00395{left:219.629333pt;}
.x9_c00395{left:245.878667pt;}
.x1_c00395{left:251.849333pt;}
.x4c_c00395{left:252.800715pt;}
.x5e_c00395{left:253.911243pt;}
.x37_c00395{left:261.800000pt;}
.x2d_c00395{left:270.358581pt;}
.xa_c00395{left:274.221333pt;}
.x16_c00395{left:275.692880pt;}
.x43_c00395{left:279.074011pt;}
.x21_c00395{left:287.015259pt;}
.x38_c00395{left:289.389333pt;}
.x55_c00395{left:292.222549pt;}
.x6b_c00395{left:314.993093pt;}
.x39_c00395{left:317.218667pt;}
.x5f_c00395{left:321.608155pt;}
.x56_c00395{left:323.646128pt;}
.x67_c00395{left:330.704821pt;}
.xb_c00395{left:333.245333pt;}
.x6c_c00395{left:343.519205pt;}
.x44_c00395{left:347.495413pt;}
.x4d_c00395{left:350.110107pt;}
.x2e_c00395{left:355.773525pt;}
.xc_c00395{left:363.308000pt;}
.x22_c00395{left:365.070427pt;}
.x60_c00395{left:380.140021pt;}
.x68_c00395{left:387.294661pt;}
.x17_c00395{left:391.705835pt;}
.x45_c00395{left:397.402528pt;}
.xd_c00395{left:401.638667pt;}
.x23_c00395{left:403.529344pt;}
.x2_c00395{left:412.373333pt;}
.x18_c00395{left:421.899899pt;}
.x46_c00395{left:426.252165pt;}
.x57_c00395{left:427.921637pt;}
.x3_c00395{left:430.676000pt;}
.x24_c00395{left:434.788485pt;}
.x3a_c00395{left:436.513333pt;}
.x4e_c00395{left:437.816571pt;}
.x6d_c00395{left:441.335632pt;}
.x4_c00395{left:448.302667pt;}
.x19_c00395{left:451.420517pt;}
.x3b_c00395{left:455.644000pt;}
.xe_c00395{left:457.305333pt;}
.x2f_c00395{left:463.511872pt;}
.x4f_c00395{left:468.149429pt;}
.x1a_c00395{left:471.150720pt;}
.x58_c00395{left:477.372208pt;}
.x25_c00395{left:480.736549pt;}
.x50_c00395{left:486.648619pt;}
.xf_c00395{left:490.357333pt;}
.x69_c00395{left:499.318267pt;}
.x59_c00395{left:508.083824pt;}
.x26_c00395{left:512.246320pt;}
.x47_c00395{left:514.302747pt;}
.x10_c00395{left:517.609333pt;}
.x6e_c00395{left:519.652773pt;}
.x3c_c00395{left:523.782667pt;}
.x1b_c00395{left:530.442699pt;}
.x61_c00395{left:540.982016pt;}
.x27_c00395{left:542.264165pt;}
.x51_c00395{left:546.459632pt;}
.x30_c00395{left:552.497371pt;}
.x48_c00395{left:554.211883pt;}
.x11_c00395{left:561.538667pt;}
.x1c_c00395{left:563.317061pt;}
.x6f_c00395{left:569.551803pt;}
.x31_c00395{left:581.489883pt;}
.x3d_c00395{left:591.261333pt;}
.x49_c00395{left:599.710139pt;}
.x12_c00395{left:605.000000pt;}
.x32_c00395{left:606.355840pt;}
.x3e_c00395{left:622.045333pt;}
.x1d_c00395{left:624.991968pt;}
.x62_c00395{left:628.965205pt;}
.x5a_c00395{left:641.256357pt;}
.x6a_c00395{left:650.086704pt;}
.x1e_c00395{left:666.560635pt;}
}





/* 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_c00396 {
    display:none;
  }
  .loading-indicator_c00396.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00396 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_c00396 { 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_c00396" -> "#page-container .classname_c00396")
 */
.pf_c00396 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00396 { /* 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_c00396.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00396 { /* 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_c00396 { /* 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_c00396 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00396 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00396 {overflow:visible;}
  }
}
.c_c00396 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00396 { /* 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_c00396:after { /* webkit #35443 */
  content: '';
}
.t_c00396:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00396 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 */
}
.__c00396 { /* 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_c00396 { /* info for Javascript */
  display:none;
}
.l_c00396 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00396 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00396 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00396: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_c00396 {
    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_c00396.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00396.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_c00396 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00396{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00396;src:url('chunks/assets/font_c605e72f209fc835e906f064.woff2')format("woff");}.ff1_c00396{font-family:ff1_c00396;line-height:1.000000;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;}
.m137_c00396{transform:matrix(0.018185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.018185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.018185,0.000000,0.000000,0.250000,0,0);}
.m1_c00396{transform:matrix(0.129270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129270,0.000000,0.000000,0.250000,0,0);}
.m0_c00396{transform:matrix(0.130495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130495,0.000000,0.000000,0.250000,0,0);}
.m14c_c00396{transform:matrix(0.152545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152545,0.000000,0.000000,0.250000,0,0);}
.m110_c00396{transform:matrix(0.153485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153485,0.000000,0.000000,0.250000,0,0);}
.mfe_c00396{transform:matrix(0.153535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153535,0.000000,0.000000,0.250000,0,0);}
.m14b_c00396{transform:matrix(0.155530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155530,0.000000,0.000000,0.250000,0,0);}
.m11b_c00396{transform:matrix(0.157060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157060,0.000000,0.000000,0.250000,0,0);}
.m12e_c00396{transform:matrix(0.157725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157725,0.000000,0.000000,0.250000,0,0);}
.m146_c00396{transform:matrix(0.158315,-0.001267,0.002000,0.249992,0,0);-ms-transform:matrix(0.158315,-0.001267,0.002000,0.249992,0,0);-webkit-transform:matrix(0.158315,-0.001267,0.002000,0.249992,0,0);}
.m115_c00396{transform:matrix(0.160540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160540,0.000000,0.000000,0.250000,0,0);}
.m14f_c00396{transform:matrix(0.161005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161005,0.000000,0.000000,0.250000,0,0);}
.m148_c00396{transform:matrix(0.162360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162360,0.000000,0.000000,0.250000,0,0);}
.m10f_c00396{transform:matrix(0.163510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163510,0.000000,0.000000,0.250000,0,0);}
.m10e_c00396{transform:matrix(0.164460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164460,0.000000,0.000000,0.250000,0,0);}
.m11a_c00396{transform:matrix(0.165965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165965,0.000000,0.000000,0.250000,0,0);}
.m14e_c00396{transform:matrix(0.166210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166210,0.000000,0.000000,0.250000,0,0);}
.m134_c00396{transform:matrix(0.169580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169580,0.000000,0.000000,0.250000,0,0);}
.m144_c00396{transform:matrix(0.169615,-0.001357,0.002000,0.249992,0,0);-ms-transform:matrix(0.169615,-0.001357,0.002000,0.249992,0,0);-webkit-transform:matrix(0.169615,-0.001357,0.002000,0.249992,0,0);}
.m143_c00396{transform:matrix(0.169885,-0.001359,0.002000,0.249992,0,0);-ms-transform:matrix(0.169885,-0.001359,0.002000,0.249992,0,0);-webkit-transform:matrix(0.169885,-0.001359,0.002000,0.249992,0,0);}
.m14d_c00396{transform:matrix(0.170695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170695,0.000000,0.000000,0.250000,0,0);}
.m147_c00396{transform:matrix(0.170890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170890,0.000000,0.000000,0.250000,0,0);}
.mf8_c00396{transform:matrix(0.171610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171610,0.000000,0.000000,0.250000,0,0);}
.m117_c00396{transform:matrix(0.172060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172060,0.000000,0.000000,0.250000,0,0);}
.m111_c00396{transform:matrix(0.174980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174980,0.000000,0.000000,0.250000,0,0);}
.m118_c00396{transform:matrix(0.175205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175205,0.000000,0.000000,0.250000,0,0);}
.m6f_c00396{transform:matrix(0.176076,-0.001233,0.001750,0.249994,0,0);-ms-transform:matrix(0.176076,-0.001233,0.001750,0.249994,0,0);-webkit-transform:matrix(0.176076,-0.001233,0.001750,0.249994,0,0);}
.m142_c00396{transform:matrix(0.176529,-0.001412,0.002000,0.249992,0,0);-ms-transform:matrix(0.176529,-0.001412,0.002000,0.249992,0,0);-webkit-transform:matrix(0.176529,-0.001412,0.002000,0.249992,0,0);}
.m149_c00396{transform:matrix(0.177225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177225,0.000000,0.000000,0.250000,0,0);}
.m3a_c00396{transform:matrix(0.177485,-0.002662,0.003750,0.249972,0,0);-ms-transform:matrix(0.177485,-0.002662,0.003750,0.249972,0,0);-webkit-transform:matrix(0.177485,-0.002662,0.003750,0.249972,0,0);}
.m113_c00396{transform:matrix(0.177490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177490,0.000000,0.000000,0.250000,0,0);}
.m3c_c00396{transform:matrix(0.178595,-0.002679,0.003750,0.249972,0,0);-ms-transform:matrix(0.178595,-0.002679,0.003750,0.249972,0,0);-webkit-transform:matrix(0.178595,-0.002679,0.003750,0.249972,0,0);}
.m1b_c00396{transform:matrix(0.179155,-0.002687,0.003750,0.249972,0,0);-ms-transform:matrix(0.179155,-0.002687,0.003750,0.249972,0,0);-webkit-transform:matrix(0.179155,-0.002687,0.003750,0.249972,0,0);}
.mf9_c00396{transform:matrix(0.179255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179255,0.000000,0.000000,0.250000,0,0);}
.m145_c00396{transform:matrix(0.179544,-0.001436,0.002000,0.249992,0,0);-ms-transform:matrix(0.179544,-0.001436,0.002000,0.249992,0,0);-webkit-transform:matrix(0.179544,-0.001436,0.002000,0.249992,0,0);}
.m114_c00396{transform:matrix(0.179595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179595,0.000000,0.000000,0.250000,0,0);}
.m141_c00396{transform:matrix(0.179964,-0.001440,0.002000,0.249992,0,0);-ms-transform:matrix(0.179964,-0.001440,0.002000,0.249992,0,0);-webkit-transform:matrix(0.179964,-0.001440,0.002000,0.249992,0,0);}
.m6c_c00396{transform:matrix(0.181391,-0.001270,0.001750,0.249994,0,0);-ms-transform:matrix(0.181391,-0.001270,0.001750,0.249994,0,0);-webkit-transform:matrix(0.181391,-0.001270,0.001750,0.249994,0,0);}
.m6e_c00396{transform:matrix(0.181941,-0.001274,0.001750,0.249994,0,0);-ms-transform:matrix(0.181941,-0.001274,0.001750,0.249994,0,0);-webkit-transform:matrix(0.181941,-0.001274,0.001750,0.249994,0,0);}
.mcd_c00396{transform:matrix(0.182055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182055,0.000000,0.000000,0.250000,0,0);}
.m13d_c00396{transform:matrix(0.182139,-0.001457,0.002000,0.249992,0,0);-ms-transform:matrix(0.182139,-0.001457,0.002000,0.249992,0,0);-webkit-transform:matrix(0.182139,-0.001457,0.002000,0.249992,0,0);}
.m19_c00396{transform:matrix(0.183389,-0.002751,0.003750,0.249972,0,0);-ms-transform:matrix(0.183389,-0.002751,0.003750,0.249972,0,0);-webkit-transform:matrix(0.183389,-0.002751,0.003750,0.249972,0,0);}
.mbd_c00396{transform:matrix(0.184225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184225,0.000000,0.000000,0.250000,0,0);}
.m12d_c00396{transform:matrix(0.184655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184655,0.000000,0.000000,0.250000,0,0);}
.m116_c00396{transform:matrix(0.185015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185015,0.000000,0.000000,0.250000,0,0);}
.m101_c00396{transform:matrix(0.186495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186495,0.000000,0.000000,0.250000,0,0);}
.mfc_c00396{transform:matrix(0.187510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187510,0.000000,0.000000,0.250000,0,0);}
.m12a_c00396{transform:matrix(0.187680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187680,0.000000,0.000000,0.250000,0,0);}
.m1a_c00396{transform:matrix(0.188074,-0.002821,0.003750,0.249972,0,0);-ms-transform:matrix(0.188074,-0.002821,0.003750,0.249972,0,0);-webkit-transform:matrix(0.188074,-0.002821,0.003750,0.249972,0,0);}
.m12c_c00396{transform:matrix(0.188190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188190,0.000000,0.000000,0.250000,0,0);}
.m11c_c00396{transform:matrix(0.188985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188985,0.000000,0.000000,0.250000,0,0);}
.m35_c00396{transform:matrix(0.188989,-0.002835,0.003750,0.249972,0,0);-ms-transform:matrix(0.188989,-0.002835,0.003750,0.249972,0,0);-webkit-transform:matrix(0.188989,-0.002835,0.003750,0.249972,0,0);}
.m105_c00396{transform:matrix(0.189070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189070,0.000000,0.000000,0.250000,0,0);}
.mfb_c00396{transform:matrix(0.189320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189320,0.000000,0.000000,0.250000,0,0);}
.m18_c00396{transform:matrix(0.189964,-0.002849,0.003750,0.249972,0,0);-ms-transform:matrix(0.189964,-0.002849,0.003750,0.249972,0,0);-webkit-transform:matrix(0.189964,-0.002849,0.003750,0.249972,0,0);}
.mc6_c00396{transform:matrix(0.190315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190315,0.000000,0.000000,0.250000,0,0);}
.m21_c00396{transform:matrix(0.190809,-0.002862,0.003750,0.249972,0,0);-ms-transform:matrix(0.190809,-0.002862,0.003750,0.249972,0,0);-webkit-transform:matrix(0.190809,-0.002862,0.003750,0.249972,0,0);}
.m63_c00396{transform:matrix(0.190990,-0.001337,0.001750,0.249994,0,0);-ms-transform:matrix(0.190990,-0.001337,0.001750,0.249994,0,0);-webkit-transform:matrix(0.190990,-0.001337,0.001750,0.249994,0,0);}
.mc4_c00396{transform:matrix(0.191375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191375,0.000000,0.000000,0.250000,0,0);}
.m70_c00396{transform:matrix(0.191795,-0.001343,0.001750,0.249994,0,0);-ms-transform:matrix(0.191795,-0.001343,0.001750,0.249994,0,0);-webkit-transform:matrix(0.191795,-0.001343,0.001750,0.249994,0,0);}
.m56_c00396{transform:matrix(0.192580,-0.001348,0.001750,0.249994,0,0);-ms-transform:matrix(0.192580,-0.001348,0.001750,0.249994,0,0);-webkit-transform:matrix(0.192580,-0.001348,0.001750,0.249994,0,0);}
.m32_c00396{transform:matrix(0.192598,-0.002889,0.003750,0.249972,0,0);-ms-transform:matrix(0.192598,-0.002889,0.003750,0.249972,0,0);-webkit-transform:matrix(0.192598,-0.002889,0.003750,0.249972,0,0);}
.m65_c00396{transform:matrix(0.193500,-0.001355,0.001750,0.249994,0,0);-ms-transform:matrix(0.193500,-0.001355,0.001750,0.249994,0,0);-webkit-transform:matrix(0.193500,-0.001355,0.001750,0.249994,0,0);}
.m139_c00396{transform:matrix(0.193724,-0.001550,0.002000,0.249992,0,0);-ms-transform:matrix(0.193724,-0.001550,0.002000,0.249992,0,0);-webkit-transform:matrix(0.193724,-0.001550,0.002000,0.249992,0,0);}
.m131_c00396{transform:matrix(0.194145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194145,0.000000,0.000000,0.250000,0,0);}
.m5c_c00396{transform:matrix(0.194345,-0.001360,0.001750,0.249994,0,0);-ms-transform:matrix(0.194345,-0.001360,0.001750,0.249994,0,0);-webkit-transform:matrix(0.194345,-0.001360,0.001750,0.249994,0,0);}
.mcf_c00396{transform:matrix(0.194940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194940,0.000000,0.000000,0.250000,0,0);}
.m3e_c00396{transform:matrix(0.195553,-0.002933,0.003750,0.249972,0,0);-ms-transform:matrix(0.195553,-0.002933,0.003750,0.249972,0,0);-webkit-transform:matrix(0.195553,-0.002933,0.003750,0.249972,0,0);}
.m1d_c00396{transform:matrix(0.195558,-0.002933,0.003750,0.249972,0,0);-ms-transform:matrix(0.195558,-0.002933,0.003750,0.249972,0,0);-webkit-transform:matrix(0.195558,-0.002933,0.003750,0.249972,0,0);}
.m1f_c00396{transform:matrix(0.195798,-0.002937,0.003750,0.249972,0,0);-ms-transform:matrix(0.195798,-0.002937,0.003750,0.249972,0,0);-webkit-transform:matrix(0.195798,-0.002937,0.003750,0.249972,0,0);}
.m95_c00396{transform:matrix(0.196120,-0.001373,0.001750,0.249994,0,0);-ms-transform:matrix(0.196120,-0.001373,0.001750,0.249994,0,0);-webkit-transform:matrix(0.196120,-0.001373,0.001750,0.249994,0,0);}
.mcb_c00396{transform:matrix(0.196125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196125,0.000000,0.000000,0.250000,0,0);}
.m72_c00396{transform:matrix(0.196635,-0.001376,0.001750,0.249994,0,0);-ms-transform:matrix(0.196635,-0.001376,0.001750,0.249994,0,0);-webkit-transform:matrix(0.196635,-0.001376,0.001750,0.249994,0,0);}
.m135_c00396{transform:matrix(0.196690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196690,0.000000,0.000000,0.250000,0,0);}
.m102_c00396{transform:matrix(0.196770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196770,0.000000,0.000000,0.250000,0,0);}
.m112_c00396{transform:matrix(0.197570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197570,0.000000,0.000000,0.250000,0,0);}
.mf7_c00396{transform:matrix(0.197850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197850,0.000000,0.000000,0.250000,0,0);}
.m59_c00396{transform:matrix(0.197905,-0.001385,0.001750,0.249994,0,0);-ms-transform:matrix(0.197905,-0.001385,0.001750,0.249994,0,0);-webkit-transform:matrix(0.197905,-0.001385,0.001750,0.249994,0,0);}
.m10c_c00396{transform:matrix(0.197910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197910,0.000000,0.000000,0.250000,0,0);}
.m43_c00396{transform:matrix(0.198635,-0.001390,0.001750,0.249994,0,0);-ms-transform:matrix(0.198635,-0.001390,0.001750,0.249994,0,0);-webkit-transform:matrix(0.198635,-0.001390,0.001750,0.249994,0,0);}
.mfa_c00396{transform:matrix(0.199015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199015,0.000000,0.000000,0.250000,0,0);}
.m12b_c00396{transform:matrix(0.199595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199595,0.000000,0.000000,0.250000,0,0);}
.m39_c00396{transform:matrix(0.200507,-0.003008,0.003750,0.249972,0,0);-ms-transform:matrix(0.200507,-0.003008,0.003750,0.249972,0,0);-webkit-transform:matrix(0.200507,-0.003008,0.003750,0.249972,0,0);}
.m130_c00396{transform:matrix(0.200645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200645,0.000000,0.000000,0.250000,0,0);}
.m119_c00396{transform:matrix(0.201245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201245,0.000000,0.000000,0.250000,0,0);}
.m20_c00396{transform:matrix(0.201497,-0.003022,0.003750,0.249972,0,0);-ms-transform:matrix(0.201497,-0.003022,0.003750,0.249972,0,0);-webkit-transform:matrix(0.201497,-0.003022,0.003750,0.249972,0,0);}
.m100_c00396{transform:matrix(0.201775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201775,0.000000,0.000000,0.250000,0,0);}
.m73_c00396{transform:matrix(0.202500,-0.001418,0.001750,0.249994,0,0);-ms-transform:matrix(0.202500,-0.001418,0.001750,0.249994,0,0);-webkit-transform:matrix(0.202500,-0.001418,0.001750,0.249994,0,0);}
.m128_c00396{transform:matrix(0.203170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203170,0.000000,0.000000,0.250000,0,0);}
.md6_c00396{transform:matrix(0.204020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204020,0.000000,0.000000,0.250000,0,0);}
.m98_c00396{transform:matrix(0.204150,-0.001429,0.001750,0.249994,0,0);-ms-transform:matrix(0.204150,-0.001429,0.001750,0.249994,0,0);-webkit-transform:matrix(0.204150,-0.001429,0.001750,0.249994,0,0);}
.m76_c00396{transform:matrix(0.204165,-0.001429,0.001750,0.249994,0,0);-ms-transform:matrix(0.204165,-0.001429,0.001750,0.249994,0,0);-webkit-transform:matrix(0.204165,-0.001429,0.001750,0.249994,0,0);}
.m4e_c00396{transform:matrix(0.204185,-0.001429,0.001750,0.249994,0,0);-ms-transform:matrix(0.204185,-0.001429,0.001750,0.249994,0,0);-webkit-transform:matrix(0.204185,-0.001429,0.001750,0.249994,0,0);}
.m53_c00396{transform:matrix(0.204340,-0.001430,0.001750,0.249994,0,0);-ms-transform:matrix(0.204340,-0.001430,0.001750,0.249994,0,0);-webkit-transform:matrix(0.204340,-0.001430,0.001750,0.249994,0,0);}
.mc9_c00396{transform:matrix(0.204460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204460,0.000000,0.000000,0.250000,0,0);}
.m8b_c00396{transform:matrix(0.204600,-0.001432,0.001750,0.249994,0,0);-ms-transform:matrix(0.204600,-0.001432,0.001750,0.249994,0,0);-webkit-transform:matrix(0.204600,-0.001432,0.001750,0.249994,0,0);}
.m5d_c00396{transform:matrix(0.205105,-0.001436,0.001750,0.249994,0,0);-ms-transform:matrix(0.205105,-0.001436,0.001750,0.249994,0,0);-webkit-transform:matrix(0.205105,-0.001436,0.001750,0.249994,0,0);}
.m7_c00396{transform:matrix(0.205467,-0.003082,0.003750,0.249972,0,0);-ms-transform:matrix(0.205467,-0.003082,0.003750,0.249972,0,0);-webkit-transform:matrix(0.205467,-0.003082,0.003750,0.249972,0,0);}
.mff_c00396{transform:matrix(0.205595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205595,0.000000,0.000000,0.250000,0,0);}
.m25_c00396{transform:matrix(0.206072,-0.003091,0.003750,0.249972,0,0);-ms-transform:matrix(0.206072,-0.003091,0.003750,0.249972,0,0);-webkit-transform:matrix(0.206072,-0.003091,0.003750,0.249972,0,0);}
.mce_c00396{transform:matrix(0.206260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206260,0.000000,0.000000,0.250000,0,0);}
.m77_c00396{transform:matrix(0.206645,-0.001447,0.001750,0.249994,0,0);-ms-transform:matrix(0.206645,-0.001447,0.001750,0.249994,0,0);-webkit-transform:matrix(0.206645,-0.001447,0.001750,0.249994,0,0);}
.m93_c00396{transform:matrix(0.206890,-0.001448,0.001750,0.249994,0,0);-ms-transform:matrix(0.206890,-0.001448,0.001750,0.249994,0,0);-webkit-transform:matrix(0.206890,-0.001448,0.001750,0.249994,0,0);}
.mfd_c00396{transform:matrix(0.207385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207385,0.000000,0.000000,0.250000,0,0);}
.m5f_c00396{transform:matrix(0.207865,-0.001455,0.001750,0.249994,0,0);-ms-transform:matrix(0.207865,-0.001455,0.001750,0.249994,0,0);-webkit-transform:matrix(0.207865,-0.001455,0.001750,0.249994,0,0);}
.m5a_c00396{transform:matrix(0.208060,-0.001456,0.001750,0.249994,0,0);-ms-transform:matrix(0.208060,-0.001456,0.001750,0.249994,0,0);-webkit-transform:matrix(0.208060,-0.001456,0.001750,0.249994,0,0);}
.mc2_c00396{transform:matrix(0.208135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208135,0.000000,0.000000,0.250000,0,0);}
.m10a_c00396{transform:matrix(0.208435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208435,0.000000,0.000000,0.250000,0,0);}
.m133_c00396{transform:matrix(0.208515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208515,0.000000,0.000000,0.250000,0,0);}
.m12f_c00396{transform:matrix(0.208870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208870,0.000000,0.000000,0.250000,0,0);}
.m38_c00396{transform:matrix(0.208906,-0.003134,0.003750,0.249972,0,0);-ms-transform:matrix(0.208906,-0.003134,0.003750,0.249972,0,0);-webkit-transform:matrix(0.208906,-0.003134,0.003750,0.249972,0,0);}
.m4_c00396{transform:matrix(0.208936,-0.003134,0.003750,0.249972,0,0);-ms-transform:matrix(0.208936,-0.003134,0.003750,0.249972,0,0);-webkit-transform:matrix(0.208936,-0.003134,0.003750,0.249972,0,0);}
.m1c_c00396{transform:matrix(0.209531,-0.003143,0.003750,0.249972,0,0);-ms-transform:matrix(0.209531,-0.003143,0.003750,0.249972,0,0);-webkit-transform:matrix(0.209531,-0.003143,0.003750,0.249972,0,0);}
.md8_c00396{transform:matrix(0.209935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209935,0.000000,0.000000,0.250000,0,0);}
.mab_c00396{transform:matrix(0.210045,-0.001470,0.001750,0.249994,0,0);-ms-transform:matrix(0.210045,-0.001470,0.001750,0.249994,0,0);-webkit-transform:matrix(0.210045,-0.001470,0.001750,0.249994,0,0);}
.m3d_c00396{transform:matrix(0.210166,-0.003152,0.003750,0.249972,0,0);-ms-transform:matrix(0.210166,-0.003152,0.003750,0.249972,0,0);-webkit-transform:matrix(0.210166,-0.003152,0.003750,0.249972,0,0);}
.m140_c00396{transform:matrix(0.210178,-0.001681,0.002000,0.249992,0,0);-ms-transform:matrix(0.210178,-0.001681,0.002000,0.249992,0,0);-webkit-transform:matrix(0.210178,-0.001681,0.002000,0.249992,0,0);}
.m3b_c00396{transform:matrix(0.210501,-0.003158,0.003750,0.249972,0,0);-ms-transform:matrix(0.210501,-0.003158,0.003750,0.249972,0,0);-webkit-transform:matrix(0.210501,-0.003158,0.003750,0.249972,0,0);}
.m99_c00396{transform:matrix(0.210825,-0.001476,0.001750,0.249994,0,0);-ms-transform:matrix(0.210825,-0.001476,0.001750,0.249994,0,0);-webkit-transform:matrix(0.210825,-0.001476,0.001750,0.249994,0,0);}
.mc3_c00396{transform:matrix(0.210875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210875,0.000000,0.000000,0.250000,0,0);}
.m92_c00396{transform:matrix(0.211025,-0.001477,0.001750,0.249994,0,0);-ms-transform:matrix(0.211025,-0.001477,0.001750,0.249994,0,0);-webkit-transform:matrix(0.211025,-0.001477,0.001750,0.249994,0,0);}
.m2d_c00396{transform:matrix(0.211176,-0.003168,0.003750,0.249972,0,0);-ms-transform:matrix(0.211176,-0.003168,0.003750,0.249972,0,0);-webkit-transform:matrix(0.211176,-0.003168,0.003750,0.249972,0,0);}
.m1e_c00396{transform:matrix(0.211496,-0.003172,0.003750,0.249972,0,0);-ms-transform:matrix(0.211496,-0.003172,0.003750,0.249972,0,0);-webkit-transform:matrix(0.211496,-0.003172,0.003750,0.249972,0,0);}
.m13f_c00396{transform:matrix(0.211568,-0.001693,0.002000,0.249992,0,0);-ms-transform:matrix(0.211568,-0.001693,0.002000,0.249992,0,0);-webkit-transform:matrix(0.211568,-0.001693,0.002000,0.249992,0,0);}
.m47_c00396{transform:matrix(0.211865,-0.001483,0.001750,0.249994,0,0);-ms-transform:matrix(0.211865,-0.001483,0.001750,0.249994,0,0);-webkit-transform:matrix(0.211865,-0.001483,0.001750,0.249994,0,0);}
.m6b_c00396{transform:matrix(0.212465,-0.001487,0.001750,0.249994,0,0);-ms-transform:matrix(0.212465,-0.001487,0.001750,0.249994,0,0);-webkit-transform:matrix(0.212465,-0.001487,0.001750,0.249994,0,0);}
.m132_c00396{transform:matrix(0.212520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212520,0.000000,0.000000,0.250000,0,0);}
.md2_c00396{transform:matrix(0.212610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212610,0.000000,0.000000,0.250000,0,0);}
.md5_c00396{transform:matrix(0.213135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213135,0.000000,0.000000,0.250000,0,0);}
.m40_c00396{transform:matrix(0.213520,-0.001495,0.001750,0.249994,0,0);-ms-transform:matrix(0.213520,-0.001495,0.001750,0.249994,0,0);-webkit-transform:matrix(0.213520,-0.001495,0.001750,0.249994,0,0);}
.mc7_c00396{transform:matrix(0.213985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213985,0.000000,0.000000,0.250000,0,0);}
.m37_c00396{transform:matrix(0.214111,-0.003212,0.003750,0.249972,0,0);-ms-transform:matrix(0.214111,-0.003212,0.003750,0.249972,0,0);-webkit-transform:matrix(0.214111,-0.003212,0.003750,0.249972,0,0);}
.m14a_c00396{transform:matrix(0.214505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214505,0.000000,0.000000,0.250000,0,0);}
.m9a_c00396{transform:matrix(0.214615,-0.001502,0.001750,0.249994,0,0);-ms-transform:matrix(0.214615,-0.001502,0.001750,0.249994,0,0);-webkit-transform:matrix(0.214615,-0.001502,0.001750,0.249994,0,0);}
.m75_c00396{transform:matrix(0.215365,-0.001508,0.001750,0.249994,0,0);-ms-transform:matrix(0.215365,-0.001508,0.001750,0.249994,0,0);-webkit-transform:matrix(0.215365,-0.001508,0.001750,0.249994,0,0);}
.m22_c00396{transform:matrix(0.215491,-0.003232,0.003750,0.249972,0,0);-ms-transform:matrix(0.215491,-0.003232,0.003750,0.249972,0,0);-webkit-transform:matrix(0.215491,-0.003232,0.003750,0.249972,0,0);}
.m13b_c00396{transform:matrix(0.215733,-0.001726,0.002000,0.249992,0,0);-ms-transform:matrix(0.215733,-0.001726,0.002000,0.249992,0,0);-webkit-transform:matrix(0.215733,-0.001726,0.002000,0.249992,0,0);}
.mde_c00396{transform:matrix(0.215755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215755,0.000000,0.000000,0.250000,0,0);}
.m6d_c00396{transform:matrix(0.215980,-0.001512,0.001750,0.249994,0,0);-ms-transform:matrix(0.215980,-0.001512,0.001750,0.249994,0,0);-webkit-transform:matrix(0.215980,-0.001512,0.001750,0.249994,0,0);}
.m7c_c00396{transform:matrix(0.216010,-0.001512,0.001750,0.249994,0,0);-ms-transform:matrix(0.216010,-0.001512,0.001750,0.249994,0,0);-webkit-transform:matrix(0.216010,-0.001512,0.001750,0.249994,0,0);}
.mdd_c00396{transform:matrix(0.216335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216335,0.000000,0.000000,0.250000,0,0);}
.m138_c00396{transform:matrix(0.216678,-0.001733,0.002000,0.249992,0,0);-ms-transform:matrix(0.216678,-0.001733,0.002000,0.249992,0,0);-webkit-transform:matrix(0.216678,-0.001733,0.002000,0.249992,0,0);}
.m109_c00396{transform:matrix(0.217580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217580,0.000000,0.000000,0.250000,0,0);}
.m45_c00396{transform:matrix(0.217615,-0.001523,0.001750,0.249994,0,0);-ms-transform:matrix(0.217615,-0.001523,0.001750,0.249994,0,0);-webkit-transform:matrix(0.217615,-0.001523,0.001750,0.249994,0,0);}
.mc8_c00396{transform:matrix(0.217825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217825,0.000000,0.000000,0.250000,0,0);}
.m96_c00396{transform:matrix(0.217875,-0.001525,0.001750,0.249994,0,0);-ms-transform:matrix(0.217875,-0.001525,0.001750,0.249994,0,0);-webkit-transform:matrix(0.217875,-0.001525,0.001750,0.249994,0,0);}
.m13e_c00396{transform:matrix(0.218693,-0.001750,0.002000,0.249992,0,0);-ms-transform:matrix(0.218693,-0.001750,0.002000,0.249992,0,0);-webkit-transform:matrix(0.218693,-0.001750,0.002000,0.249992,0,0);}
.m97_c00396{transform:matrix(0.218945,-0.001533,0.001750,0.249994,0,0);-ms-transform:matrix(0.218945,-0.001533,0.001750,0.249994,0,0);-webkit-transform:matrix(0.218945,-0.001533,0.001750,0.249994,0,0);}
.mc5_c00396{transform:matrix(0.219590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219590,0.000000,0.000000,0.250000,0,0);}
.mdc_c00396{transform:matrix(0.219860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219860,0.000000,0.000000,0.250000,0,0);}
.md0_c00396{transform:matrix(0.220315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220315,0.000000,0.000000,0.250000,0,0);}
.mea_c00396{transform:matrix(0.220480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220480,0.000000,0.000000,0.250000,0,0);}
.m13c_c00396{transform:matrix(0.220788,-0.001766,0.002000,0.249992,0,0);-ms-transform:matrix(0.220788,-0.001766,0.002000,0.249992,0,0);-webkit-transform:matrix(0.220788,-0.001766,0.002000,0.249992,0,0);}
.m3_c00396{transform:matrix(0.220805,-0.003312,0.003750,0.249972,0,0);-ms-transform:matrix(0.220805,-0.003312,0.003750,0.249972,0,0);-webkit-transform:matrix(0.220805,-0.003312,0.003750,0.249972,0,0);}
.m103_c00396{transform:matrix(0.220850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220850,0.000000,0.000000,0.250000,0,0);}
.m8_c00396{transform:matrix(0.220865,-0.003313,0.003750,0.249972,0,0);-ms-transform:matrix(0.220865,-0.003313,0.003750,0.249972,0,0);-webkit-transform:matrix(0.220865,-0.003313,0.003750,0.249972,0,0);}
.m7d_c00396{transform:matrix(0.220885,-0.001546,0.001750,0.249994,0,0);-ms-transform:matrix(0.220885,-0.001546,0.001750,0.249994,0,0);-webkit-transform:matrix(0.220885,-0.001546,0.001750,0.249994,0,0);}
.m106_c00396{transform:matrix(0.221145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221145,0.000000,0.000000,0.250000,0,0);}
.m11e_c00396{transform:matrix(0.221385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221385,0.000000,0.000000,0.250000,0,0);}
.md3_c00396{transform:matrix(0.221455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221455,0.000000,0.000000,0.250000,0,0);}
.m74_c00396{transform:matrix(0.221605,-0.001551,0.001750,0.249994,0,0);-ms-transform:matrix(0.221605,-0.001551,0.001750,0.249994,0,0);-webkit-transform:matrix(0.221605,-0.001551,0.001750,0.249994,0,0);}
.m2_c00396{transform:matrix(0.221785,-0.003327,0.003750,0.249972,0,0);-ms-transform:matrix(0.221785,-0.003327,0.003750,0.249972,0,0);-webkit-transform:matrix(0.221785,-0.003327,0.003750,0.249972,0,0);}
.m44_c00396{transform:matrix(0.222120,-0.001555,0.001750,0.249994,0,0);-ms-transform:matrix(0.222120,-0.001555,0.001750,0.249994,0,0);-webkit-transform:matrix(0.222120,-0.001555,0.001750,0.249994,0,0);}
.m104_c00396{transform:matrix(0.222525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222525,0.000000,0.000000,0.250000,0,0);}
.mc_c00396{transform:matrix(0.222820,-0.003342,0.003750,0.249972,0,0);-ms-transform:matrix(0.222820,-0.003342,0.003750,0.249972,0,0);-webkit-transform:matrix(0.222820,-0.003342,0.003750,0.249972,0,0);}
.m57_c00396{transform:matrix(0.223210,-0.001562,0.001750,0.249994,0,0);-ms-transform:matrix(0.223210,-0.001562,0.001750,0.249994,0,0);-webkit-transform:matrix(0.223210,-0.001562,0.001750,0.249994,0,0);}
.mee_c00396{transform:matrix(0.223270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223270,0.000000,0.000000,0.250000,0,0);}
.m126_c00396{transform:matrix(0.223380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223380,0.000000,0.000000,0.250000,0,0);}
.mbc_c00396{transform:matrix(0.223535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223535,0.000000,0.000000,0.250000,0,0);}
.m4a_c00396{transform:matrix(0.223695,-0.001566,0.001750,0.249994,0,0);-ms-transform:matrix(0.223695,-0.001566,0.001750,0.249994,0,0);-webkit-transform:matrix(0.223695,-0.001566,0.001750,0.249994,0,0);}
.m71_c00396{transform:matrix(0.224015,-0.001568,0.001750,0.249994,0,0);-ms-transform:matrix(0.224015,-0.001568,0.001750,0.249994,0,0);-webkit-transform:matrix(0.224015,-0.001568,0.001750,0.249994,0,0);}
.m17_c00396{transform:matrix(0.224655,-0.003370,0.003750,0.249972,0,0);-ms-transform:matrix(0.224655,-0.003370,0.003750,0.249972,0,0);-webkit-transform:matrix(0.224655,-0.003370,0.003750,0.249972,0,0);}
.m79_c00396{transform:matrix(0.224759,-0.001573,0.001750,0.249994,0,0);-ms-transform:matrix(0.224759,-0.001573,0.001750,0.249994,0,0);-webkit-transform:matrix(0.224759,-0.001573,0.001750,0.249994,0,0);}
.m30_c00396{transform:matrix(0.224935,-0.003374,0.003750,0.249972,0,0);-ms-transform:matrix(0.224935,-0.003374,0.003750,0.249972,0,0);-webkit-transform:matrix(0.224935,-0.003374,0.003750,0.249972,0,0);}
.m34_c00396{transform:matrix(0.224945,-0.003374,0.003750,0.249972,0,0);-ms-transform:matrix(0.224945,-0.003374,0.003750,0.249972,0,0);-webkit-transform:matrix(0.224945,-0.003374,0.003750,0.249972,0,0);}
.m90_c00396{transform:matrix(0.225429,-0.001578,0.001750,0.249994,0,0);-ms-transform:matrix(0.225429,-0.001578,0.001750,0.249994,0,0);-webkit-transform:matrix(0.225429,-0.001578,0.001750,0.249994,0,0);}
.m13a_c00396{transform:matrix(0.225638,-0.001805,0.002000,0.249992,0,0);-ms-transform:matrix(0.225638,-0.001805,0.002000,0.249992,0,0);-webkit-transform:matrix(0.225638,-0.001805,0.002000,0.249992,0,0);}
.m82_c00396{transform:matrix(0.225839,-0.001581,0.001750,0.249994,0,0);-ms-transform:matrix(0.225839,-0.001581,0.001750,0.249994,0,0);-webkit-transform:matrix(0.225839,-0.001581,0.001750,0.249994,0,0);}
.m28_c00396{transform:matrix(0.225990,-0.003390,0.003750,0.249972,0,0);-ms-transform:matrix(0.225990,-0.003390,0.003750,0.249972,0,0);-webkit-transform:matrix(0.225990,-0.003390,0.003750,0.249972,0,0);}
.mc0_c00396{transform:matrix(0.226080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226080,0.000000,0.000000,0.250000,0,0);}
.mbf_c00396{transform:matrix(0.226340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226340,0.000000,0.000000,0.250000,0,0);}
.m42_c00396{transform:matrix(0.226539,-0.001586,0.001750,0.249994,0,0);-ms-transform:matrix(0.226539,-0.001586,0.001750,0.249994,0,0);-webkit-transform:matrix(0.226539,-0.001586,0.001750,0.249994,0,0);}
.mdb_c00396{transform:matrix(0.226600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226600,0.000000,0.000000,0.250000,0,0);}
.m11d_c00396{transform:matrix(0.226815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226815,0.000000,0.000000,0.250000,0,0);}
.m10d_c00396{transform:matrix(0.227290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227290,0.000000,0.000000,0.250000,0,0);}
.m8d_c00396{transform:matrix(0.227424,-0.001592,0.001750,0.249994,0,0);-ms-transform:matrix(0.227424,-0.001592,0.001750,0.249994,0,0);-webkit-transform:matrix(0.227424,-0.001592,0.001750,0.249994,0,0);}
.m33_c00396{transform:matrix(0.227614,-0.003414,0.003750,0.249972,0,0);-ms-transform:matrix(0.227614,-0.003414,0.003750,0.249972,0,0);-webkit-transform:matrix(0.227614,-0.003414,0.003750,0.249972,0,0);}
.mb5_c00396{transform:matrix(0.228160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228160,0.000000,0.000000,0.250000,0,0);}
.mf1_c00396{transform:matrix(0.228170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228170,0.000000,0.000000,0.250000,0,0);}
.m94_c00396{transform:matrix(0.228189,-0.001597,0.001750,0.249994,0,0);-ms-transform:matrix(0.228189,-0.001597,0.001750,0.249994,0,0);-webkit-transform:matrix(0.228189,-0.001597,0.001750,0.249994,0,0);}
.m50_c00396{transform:matrix(0.228274,-0.001598,0.001750,0.249994,0,0);-ms-transform:matrix(0.228274,-0.001598,0.001750,0.249994,0,0);-webkit-transform:matrix(0.228274,-0.001598,0.001750,0.249994,0,0);}
.m62_c00396{transform:matrix(0.228689,-0.001601,0.001750,0.249994,0,0);-ms-transform:matrix(0.228689,-0.001601,0.001750,0.249994,0,0);-webkit-transform:matrix(0.228689,-0.001601,0.001750,0.249994,0,0);}
.m3f_c00396{transform:matrix(0.228749,-0.001601,0.001750,0.249994,0,0);-ms-transform:matrix(0.228749,-0.001601,0.001750,0.249994,0,0);-webkit-transform:matrix(0.228749,-0.001601,0.001750,0.249994,0,0);}
.m36_c00396{transform:matrix(0.228899,-0.003433,0.003750,0.249972,0,0);-ms-transform:matrix(0.228899,-0.003433,0.003750,0.249972,0,0);-webkit-transform:matrix(0.228899,-0.003433,0.003750,0.249972,0,0);}
.maa_c00396{transform:matrix(0.229394,-0.001606,0.001750,0.249994,0,0);-ms-transform:matrix(0.229394,-0.001606,0.001750,0.249994,0,0);-webkit-transform:matrix(0.229394,-0.001606,0.001750,0.249994,0,0);}
.m2b_c00396{transform:matrix(0.229774,-0.003447,0.003750,0.249972,0,0);-ms-transform:matrix(0.229774,-0.003447,0.003750,0.249972,0,0);-webkit-transform:matrix(0.229774,-0.003447,0.003750,0.249972,0,0);}
.m107_c00396{transform:matrix(0.230010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230010,0.000000,0.000000,0.250000,0,0);}
.m10b_c00396{transform:matrix(0.230400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230400,0.000000,0.000000,0.250000,0,0);}
.ma7_c00396{transform:matrix(0.230454,-0.001613,0.001750,0.249994,0,0);-ms-transform:matrix(0.230454,-0.001613,0.001750,0.249994,0,0);-webkit-transform:matrix(0.230454,-0.001613,0.001750,0.249994,0,0);}
.m6a_c00396{transform:matrix(0.230654,-0.001615,0.001750,0.249994,0,0);-ms-transform:matrix(0.230654,-0.001615,0.001750,0.249994,0,0);-webkit-transform:matrix(0.230654,-0.001615,0.001750,0.249994,0,0);}
.mbe_c00396{transform:matrix(0.231360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231360,0.000000,0.000000,0.250000,0,0);}
.mda_c00396{transform:matrix(0.231380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231380,0.000000,0.000000,0.250000,0,0);}
.me_c00396{transform:matrix(0.231409,-0.003471,0.003750,0.249972,0,0);-ms-transform:matrix(0.231409,-0.003471,0.003750,0.249972,0,0);-webkit-transform:matrix(0.231409,-0.003471,0.003750,0.249972,0,0);}
.m12_c00396{transform:matrix(0.231504,-0.003473,0.003750,0.249972,0,0);-ms-transform:matrix(0.231504,-0.003473,0.003750,0.249972,0,0);-webkit-transform:matrix(0.231504,-0.003473,0.003750,0.249972,0,0);}
.m91_c00396{transform:matrix(0.232004,-0.001624,0.001750,0.249994,0,0);-ms-transform:matrix(0.232004,-0.001624,0.001750,0.249994,0,0);-webkit-transform:matrix(0.232004,-0.001624,0.001750,0.249994,0,0);}
.mba_c00396{transform:matrix(0.232135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232135,0.000000,0.000000,0.250000,0,0);}
.m58_c00396{transform:matrix(0.232509,-0.001628,0.001750,0.249994,0,0);-ms-transform:matrix(0.232509,-0.001628,0.001750,0.249994,0,0);-webkit-transform:matrix(0.232509,-0.001628,0.001750,0.249994,0,0);}
.m122_c00396{transform:matrix(0.232520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232520,0.000000,0.000000,0.250000,0,0);}
.m31_c00396{transform:matrix(0.232684,-0.003490,0.003750,0.249972,0,0);-ms-transform:matrix(0.232684,-0.003490,0.003750,0.249972,0,0);-webkit-transform:matrix(0.232684,-0.003490,0.003750,0.249972,0,0);}
.m81_c00396{transform:matrix(0.232939,-0.001631,0.001750,0.249994,0,0);-ms-transform:matrix(0.232939,-0.001631,0.001750,0.249994,0,0);-webkit-transform:matrix(0.232939,-0.001631,0.001750,0.249994,0,0);}
.m23_c00396{transform:matrix(0.232994,-0.003495,0.003750,0.249972,0,0);-ms-transform:matrix(0.232994,-0.003495,0.003750,0.249972,0,0);-webkit-transform:matrix(0.232994,-0.003495,0.003750,0.249972,0,0);}
.m51_c00396{transform:matrix(0.233419,-0.001634,0.001750,0.249994,0,0);-ms-transform:matrix(0.233419,-0.001634,0.001750,0.249994,0,0);-webkit-transform:matrix(0.233419,-0.001634,0.001750,0.249994,0,0);}
.me1_c00396{transform:matrix(0.233695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233695,0.000000,0.000000,0.250000,0,0);}
.ma9_c00396{transform:matrix(0.233834,-0.001637,0.001750,0.249994,0,0);-ms-transform:matrix(0.233834,-0.001637,0.001750,0.249994,0,0);-webkit-transform:matrix(0.233834,-0.001637,0.001750,0.249994,0,0);}
.m55_c00396{transform:matrix(0.233969,-0.001638,0.001750,0.249994,0,0);-ms-transform:matrix(0.233969,-0.001638,0.001750,0.249994,0,0);-webkit-transform:matrix(0.233969,-0.001638,0.001750,0.249994,0,0);}
.m11f_c00396{transform:matrix(0.234550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234550,0.000000,0.000000,0.250000,0,0);}
.m2f_c00396{transform:matrix(0.234594,-0.003519,0.003750,0.249972,0,0);-ms-transform:matrix(0.234594,-0.003519,0.003750,0.249972,0,0);-webkit-transform:matrix(0.234594,-0.003519,0.003750,0.249972,0,0);}
.mf4_c00396{transform:matrix(0.234855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234855,0.000000,0.000000,0.250000,0,0);}
.m4f_c00396{transform:matrix(0.235154,-0.001646,0.001750,0.249994,0,0);-ms-transform:matrix(0.235154,-0.001646,0.001750,0.249994,0,0);-webkit-transform:matrix(0.235154,-0.001646,0.001750,0.249994,0,0);}
.m85_c00396{transform:matrix(0.235749,-0.001650,0.001750,0.249994,0,0);-ms-transform:matrix(0.235749,-0.001650,0.001750,0.249994,0,0);-webkit-transform:matrix(0.235749,-0.001650,0.001750,0.249994,0,0);}
.m5e_c00396{transform:matrix(0.236919,-0.001658,0.001750,0.249994,0,0);-ms-transform:matrix(0.236919,-0.001658,0.001750,0.249994,0,0);-webkit-transform:matrix(0.236919,-0.001658,0.001750,0.249994,0,0);}
.mb6_c00396{transform:matrix(0.237065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237065,0.000000,0.000000,0.250000,0,0);}
.m4b_c00396{transform:matrix(0.237599,-0.001663,0.001750,0.249994,0,0);-ms-transform:matrix(0.237599,-0.001663,0.001750,0.249994,0,0);-webkit-transform:matrix(0.237599,-0.001663,0.001750,0.249994,0,0);}
.mbb_c00396{transform:matrix(0.237790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237790,0.000000,0.000000,0.250000,0,0);}
.m108_c00396{transform:matrix(0.237950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237950,0.000000,0.000000,0.250000,0,0);}
.m26_c00396{transform:matrix(0.238023,-0.003570,0.003750,0.249972,0,0);-ms-transform:matrix(0.238023,-0.003570,0.003750,0.249972,0,0);-webkit-transform:matrix(0.238023,-0.003570,0.003750,0.249972,0,0);}
.mca_c00396{transform:matrix(0.238375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238375,0.000000,0.000000,0.250000,0,0);}
.m129_c00396{transform:matrix(0.238775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238775,0.000000,0.000000,0.250000,0,0);}
.m5b_c00396{transform:matrix(0.238914,-0.001672,0.001750,0.249994,0,0);-ms-transform:matrix(0.238914,-0.001672,0.001750,0.249994,0,0);-webkit-transform:matrix(0.238914,-0.001672,0.001750,0.249994,0,0);}
.m14_c00396{transform:matrix(0.238923,-0.003584,0.003750,0.249972,0,0);-ms-transform:matrix(0.238923,-0.003584,0.003750,0.249972,0,0);-webkit-transform:matrix(0.238923,-0.003584,0.003750,0.249972,0,0);}
.m52_c00396{transform:matrix(0.239214,-0.001674,0.001750,0.249994,0,0);-ms-transform:matrix(0.239214,-0.001674,0.001750,0.249994,0,0);-webkit-transform:matrix(0.239214,-0.001674,0.001750,0.249994,0,0);}
.ma_c00396{transform:matrix(0.239513,-0.003593,0.003750,0.249972,0,0);-ms-transform:matrix(0.239513,-0.003593,0.003750,0.249972,0,0);-webkit-transform:matrix(0.239513,-0.003593,0.003750,0.249972,0,0);}
.me0_c00396{transform:matrix(0.239650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239650,0.000000,0.000000,0.250000,0,0);}
.m8f_c00396{transform:matrix(0.240344,-0.001682,0.001750,0.249994,0,0);-ms-transform:matrix(0.240344,-0.001682,0.001750,0.249994,0,0);-webkit-transform:matrix(0.240344,-0.001682,0.001750,0.249994,0,0);}
.mac_c00396{transform:matrix(0.240384,-0.001683,0.001750,0.249994,0,0);-ms-transform:matrix(0.240384,-0.001683,0.001750,0.249994,0,0);-webkit-transform:matrix(0.240384,-0.001683,0.001750,0.249994,0,0);}
.mb3_c00396{transform:matrix(0.240635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240635,0.000000,0.000000,0.250000,0,0);}
.m125_c00396{transform:matrix(0.240670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240670,0.000000,0.000000,0.250000,0,0);}
.m61_c00396{transform:matrix(0.240959,-0.001687,0.001750,0.249994,0,0);-ms-transform:matrix(0.240959,-0.001687,0.001750,0.249994,0,0);-webkit-transform:matrix(0.240959,-0.001687,0.001750,0.249994,0,0);}
.md1_c00396{transform:matrix(0.241205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241205,0.000000,0.000000,0.250000,0,0);}
.mdf_c00396{transform:matrix(0.241510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241510,0.000000,0.000000,0.250000,0,0);}
.m24_c00396{transform:matrix(0.241878,-0.003628,0.003750,0.249972,0,0);-ms-transform:matrix(0.241878,-0.003628,0.003750,0.249972,0,0);-webkit-transform:matrix(0.241878,-0.003628,0.003750,0.249972,0,0);}
.m78_c00396{transform:matrix(0.242134,-0.001695,0.001750,0.249994,0,0);-ms-transform:matrix(0.242134,-0.001695,0.001750,0.249994,0,0);-webkit-transform:matrix(0.242134,-0.001695,0.001750,0.249994,0,0);}
.m69_c00396{transform:matrix(0.242289,-0.001696,0.001750,0.249994,0,0);-ms-transform:matrix(0.242289,-0.001696,0.001750,0.249994,0,0);-webkit-transform:matrix(0.242289,-0.001696,0.001750,0.249994,0,0);}
.m9_c00396{transform:matrix(0.242323,-0.003635,0.003750,0.249972,0,0);-ms-transform:matrix(0.242323,-0.003635,0.003750,0.249972,0,0);-webkit-transform:matrix(0.242323,-0.003635,0.003750,0.249972,0,0);}
.mad_c00396{transform:matrix(0.242324,-0.001696,0.001750,0.249994,0,0);-ms-transform:matrix(0.242324,-0.001696,0.001750,0.249994,0,0);-webkit-transform:matrix(0.242324,-0.001696,0.001750,0.249994,0,0);}
.m4d_c00396{transform:matrix(0.242344,-0.001696,0.001750,0.249994,0,0);-ms-transform:matrix(0.242344,-0.001696,0.001750,0.249994,0,0);-webkit-transform:matrix(0.242344,-0.001696,0.001750,0.249994,0,0);}
.m8e_c00396{transform:matrix(0.242509,-0.001698,0.001750,0.249994,0,0);-ms-transform:matrix(0.242509,-0.001698,0.001750,0.249994,0,0);-webkit-transform:matrix(0.242509,-0.001698,0.001750,0.249994,0,0);}
.m127_c00396{transform:matrix(0.242630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242630,0.000000,0.000000,0.250000,0,0);}
.mb8_c00396{transform:matrix(0.242745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242745,0.000000,0.000000,0.250000,0,0);}
.m41_c00396{transform:matrix(0.243464,-0.001704,0.001750,0.249994,0,0);-ms-transform:matrix(0.243464,-0.001704,0.001750,0.249994,0,0);-webkit-transform:matrix(0.243464,-0.001704,0.001750,0.249994,0,0);}
.m27_c00396{transform:matrix(0.243808,-0.003657,0.003750,0.249972,0,0);-ms-transform:matrix(0.243808,-0.003657,0.003750,0.249972,0,0);-webkit-transform:matrix(0.243808,-0.003657,0.003750,0.249972,0,0);}
.m121_c00396{transform:matrix(0.244030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244030,0.000000,0.000000,0.250000,0,0);}
.mc1_c00396{transform:matrix(0.244175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244175,0.000000,0.000000,0.250000,0,0);}
.m123_c00396{transform:matrix(0.244315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244315,0.000000,0.000000,0.250000,0,0);}
.mb9_c00396{transform:matrix(0.244475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244475,0.000000,0.000000,0.250000,0,0);}
.mcc_c00396{transform:matrix(0.244585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244585,0.000000,0.000000,0.250000,0,0);}
.m8a_c00396{transform:matrix(0.244854,-0.001714,0.001750,0.249994,0,0);-ms-transform:matrix(0.244854,-0.001714,0.001750,0.249994,0,0);-webkit-transform:matrix(0.244854,-0.001714,0.001750,0.249994,0,0);}
.m66_c00396{transform:matrix(0.244864,-0.001714,0.001750,0.249994,0,0);-ms-transform:matrix(0.244864,-0.001714,0.001750,0.249994,0,0);-webkit-transform:matrix(0.244864,-0.001714,0.001750,0.249994,0,0);}
.m2c_c00396{transform:matrix(0.245137,-0.003677,0.003750,0.249972,0,0);-ms-transform:matrix(0.245137,-0.003677,0.003750,0.249972,0,0);-webkit-transform:matrix(0.245137,-0.003677,0.003750,0.249972,0,0);}
.m49_c00396{transform:matrix(0.245984,-0.001722,0.001750,0.249994,0,0);-ms-transform:matrix(0.245984,-0.001722,0.001750,0.249994,0,0);-webkit-transform:matrix(0.245984,-0.001722,0.001750,0.249994,0,0);}
.m7a_c00396{transform:matrix(0.246259,-0.001724,0.001750,0.249994,0,0);-ms-transform:matrix(0.246259,-0.001724,0.001750,0.249994,0,0);-webkit-transform:matrix(0.246259,-0.001724,0.001750,0.249994,0,0);}
.m60_c00396{transform:matrix(0.246444,-0.001725,0.001750,0.249994,0,0);-ms-transform:matrix(0.246444,-0.001725,0.001750,0.249994,0,0);-webkit-transform:matrix(0.246444,-0.001725,0.001750,0.249994,0,0);}
.m15_c00396{transform:matrix(0.246912,-0.003704,0.003750,0.249972,0,0);-ms-transform:matrix(0.246912,-0.003704,0.003750,0.249972,0,0);-webkit-transform:matrix(0.246912,-0.003704,0.003750,0.249972,0,0);}
.m7e_c00396{transform:matrix(0.247379,-0.001732,0.001750,0.249994,0,0);-ms-transform:matrix(0.247379,-0.001732,0.001750,0.249994,0,0);-webkit-transform:matrix(0.247379,-0.001732,0.001750,0.249994,0,0);}
.mf5_c00396{transform:matrix(0.247550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247550,0.000000,0.000000,0.250000,0,0);}
.m87_c00396{transform:matrix(0.248129,-0.001737,0.001750,0.249994,0,0);-ms-transform:matrix(0.248129,-0.001737,0.001750,0.249994,0,0);-webkit-transform:matrix(0.248129,-0.001737,0.001750,0.249994,0,0);}
.me8_c00396{transform:matrix(0.248445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248445,0.000000,0.000000,0.250000,0,0);}
.mec_c00396{transform:matrix(0.248925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248925,0.000000,0.000000,0.250000,0,0);}
.me5_c00396{transform:matrix(0.249040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249040,0.000000,0.000000,0.250000,0,0);}
.mae_c00396{transform:matrix(0.249405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249405,0.000000,0.000000,0.250000,0,0);}
.m10_c00396{transform:matrix(0.249797,-0.003747,0.003750,0.249972,0,0);-ms-transform:matrix(0.249797,-0.003747,0.003750,0.249972,0,0);-webkit-transform:matrix(0.249797,-0.003747,0.003750,0.249972,0,0);}
.m120_c00396{transform:matrix(0.249820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249820,0.000000,0.000000,0.250000,0,0);}
.m29_c00396{transform:matrix(0.249827,-0.003747,0.003750,0.249972,0,0);-ms-transform:matrix(0.249827,-0.003747,0.003750,0.249972,0,0);-webkit-transform:matrix(0.249827,-0.003747,0.003750,0.249972,0,0);}
.m84_c00396{transform:matrix(0.250149,-0.001751,0.001750,0.249994,0,0);-ms-transform:matrix(0.250149,-0.001751,0.001750,0.249994,0,0);-webkit-transform:matrix(0.250149,-0.001751,0.001750,0.249994,0,0);}
.m68_c00396{transform:matrix(0.250604,-0.001754,0.001750,0.249994,0,0);-ms-transform:matrix(0.250604,-0.001754,0.001750,0.249994,0,0);-webkit-transform:matrix(0.250604,-0.001754,0.001750,0.249994,0,0);}
.m13_c00396{transform:matrix(0.250632,-0.003759,0.003750,0.249972,0,0);-ms-transform:matrix(0.250632,-0.003759,0.003750,0.249972,0,0);-webkit-transform:matrix(0.250632,-0.003759,0.003750,0.249972,0,0);}
.md9_c00396{transform:matrix(0.250915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250915,0.000000,0.000000,0.250000,0,0);}
.mb4_c00396{transform:matrix(0.251415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251415,0.000000,0.000000,0.250000,0,0);}
.m7f_c00396{transform:matrix(0.252099,-0.001765,0.001750,0.249994,0,0);-ms-transform:matrix(0.252099,-0.001765,0.001750,0.249994,0,0);-webkit-transform:matrix(0.252099,-0.001765,0.001750,0.249994,0,0);}
.m64_c00396{transform:matrix(0.252214,-0.001765,0.001750,0.249994,0,0);-ms-transform:matrix(0.252214,-0.001765,0.001750,0.249994,0,0);-webkit-transform:matrix(0.252214,-0.001765,0.001750,0.249994,0,0);}
.mb0_c00396{transform:matrix(0.252355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252355,0.000000,0.000000,0.250000,0,0);}
.m2e_c00396{transform:matrix(0.252452,-0.003787,0.003750,0.249972,0,0);-ms-transform:matrix(0.252452,-0.003787,0.003750,0.249972,0,0);-webkit-transform:matrix(0.252452,-0.003787,0.003750,0.249972,0,0);}
.m2a_c00396{transform:matrix(0.253082,-0.003796,0.003750,0.249972,0,0);-ms-transform:matrix(0.253082,-0.003796,0.003750,0.249972,0,0);-webkit-transform:matrix(0.253082,-0.003796,0.003750,0.249972,0,0);}
.m5_c00396{transform:matrix(0.253102,-0.003797,0.003750,0.249972,0,0);-ms-transform:matrix(0.253102,-0.003797,0.003750,0.249972,0,0);-webkit-transform:matrix(0.253102,-0.003797,0.003750,0.249972,0,0);}
.m67_c00396{transform:matrix(0.253174,-0.001772,0.001750,0.249994,0,0);-ms-transform:matrix(0.253174,-0.001772,0.001750,0.249994,0,0);-webkit-transform:matrix(0.253174,-0.001772,0.001750,0.249994,0,0);}
.me6_c00396{transform:matrix(0.253325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253325,0.000000,0.000000,0.250000,0,0);}
.ma8_c00396{transform:matrix(0.253329,-0.001773,0.001750,0.249994,0,0);-ms-transform:matrix(0.253329,-0.001773,0.001750,0.249994,0,0);-webkit-transform:matrix(0.253329,-0.001773,0.001750,0.249994,0,0);}
.maf_c00396{transform:matrix(0.253785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253785,0.000000,0.000000,0.250000,0,0);}
.m83_c00396{transform:matrix(0.253844,-0.001777,0.001750,0.249994,0,0);-ms-transform:matrix(0.253844,-0.001777,0.001750,0.249994,0,0);-webkit-transform:matrix(0.253844,-0.001777,0.001750,0.249994,0,0);}
.me4_c00396{transform:matrix(0.253845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253845,0.000000,0.000000,0.250000,0,0);}
.m46_c00396{transform:matrix(0.254554,-0.001782,0.001750,0.249994,0,0);-ms-transform:matrix(0.254554,-0.001782,0.001750,0.249994,0,0);-webkit-transform:matrix(0.254554,-0.001782,0.001750,0.249994,0,0);}
.md7_c00396{transform:matrix(0.254560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254560,0.000000,0.000000,0.250000,0,0);}
.m4c_c00396{transform:matrix(0.255334,-0.001787,0.001750,0.249994,0,0);-ms-transform:matrix(0.255334,-0.001787,0.001750,0.249994,0,0);-webkit-transform:matrix(0.255334,-0.001787,0.001750,0.249994,0,0);}
.m80_c00396{transform:matrix(0.255574,-0.001789,0.001750,0.249994,0,0);-ms-transform:matrix(0.255574,-0.001789,0.001750,0.249994,0,0);-webkit-transform:matrix(0.255574,-0.001789,0.001750,0.249994,0,0);}
.m9f_c00396{transform:matrix(0.256124,-0.001793,0.001750,0.249994,0,0);-ms-transform:matrix(0.256124,-0.001793,0.001750,0.249994,0,0);-webkit-transform:matrix(0.256124,-0.001793,0.001750,0.249994,0,0);}
.m7b_c00396{transform:matrix(0.256304,-0.001794,0.001750,0.249994,0,0);-ms-transform:matrix(0.256304,-0.001794,0.001750,0.249994,0,0);-webkit-transform:matrix(0.256304,-0.001794,0.001750,0.249994,0,0);}
.m6_c00396{transform:matrix(0.256491,-0.003847,0.003750,0.249972,0,0);-ms-transform:matrix(0.256491,-0.003847,0.003750,0.249972,0,0);-webkit-transform:matrix(0.256491,-0.003847,0.003750,0.249972,0,0);}
.m48_c00396{transform:matrix(0.256539,-0.001796,0.001750,0.249994,0,0);-ms-transform:matrix(0.256539,-0.001796,0.001750,0.249994,0,0);-webkit-transform:matrix(0.256539,-0.001796,0.001750,0.249994,0,0);}
.mf2_c00396{transform:matrix(0.256745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256745,0.000000,0.000000,0.250000,0,0);}
.mb_c00396{transform:matrix(0.257766,-0.003866,0.003750,0.249972,0,0);-ms-transform:matrix(0.257766,-0.003866,0.003750,0.249972,0,0);-webkit-transform:matrix(0.257766,-0.003866,0.003750,0.249972,0,0);}
.m124_c00396{transform:matrix(0.257870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257870,0.000000,0.000000,0.250000,0,0);}
.m9e_c00396{transform:matrix(0.257934,-0.001806,0.001750,0.249994,0,0);-ms-transform:matrix(0.257934,-0.001806,0.001750,0.249994,0,0);-webkit-transform:matrix(0.257934,-0.001806,0.001750,0.249994,0,0);}
.md4_c00396{transform:matrix(0.258025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258025,0.000000,0.000000,0.250000,0,0);}
.md_c00396{transform:matrix(0.259066,-0.003886,0.003750,0.249972,0,0);-ms-transform:matrix(0.259066,-0.003886,0.003750,0.249972,0,0);-webkit-transform:matrix(0.259066,-0.003886,0.003750,0.249972,0,0);}
.m89_c00396{transform:matrix(0.260924,-0.001826,0.001750,0.249994,0,0);-ms-transform:matrix(0.260924,-0.001826,0.001750,0.249994,0,0);-webkit-transform:matrix(0.260924,-0.001826,0.001750,0.249994,0,0);}
.mf_c00396{transform:matrix(0.261216,-0.003918,0.003750,0.249972,0,0);-ms-transform:matrix(0.261216,-0.003918,0.003750,0.249972,0,0);-webkit-transform:matrix(0.261216,-0.003918,0.003750,0.249972,0,0);}
.meb_c00396{transform:matrix(0.262025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262025,0.000000,0.000000,0.250000,0,0);}
.mb7_c00396{transform:matrix(0.262205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262205,0.000000,0.000000,0.250000,0,0);}
.mef_c00396{transform:matrix(0.263310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263310,0.000000,0.000000,0.250000,0,0);}
.ma2_c00396{transform:matrix(0.265124,-0.001856,0.001750,0.249994,0,0);-ms-transform:matrix(0.265124,-0.001856,0.001750,0.249994,0,0);-webkit-transform:matrix(0.265124,-0.001856,0.001750,0.249994,0,0);}
.me7_c00396{transform:matrix(0.266490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266490,0.000000,0.000000,0.250000,0,0);}
.me9_c00396{transform:matrix(0.267165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267165,0.000000,0.000000,0.250000,0,0);}
.mf3_c00396{transform:matrix(0.267300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267300,0.000000,0.000000,0.250000,0,0);}
.mf6_c00396{transform:matrix(0.267525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267525,0.000000,0.000000,0.250000,0,0);}
.mf0_c00396{transform:matrix(0.269800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269800,0.000000,0.000000,0.250000,0,0);}
.m11_c00396{transform:matrix(0.271649,-0.004075,0.003750,0.249972,0,0);-ms-transform:matrix(0.271649,-0.004075,0.003750,0.249972,0,0);-webkit-transform:matrix(0.271649,-0.004075,0.003750,0.249972,0,0);}
.me3_c00396{transform:matrix(0.273105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273105,0.000000,0.000000,0.250000,0,0);}
.ma0_c00396{transform:matrix(0.274298,-0.001920,0.001750,0.249994,0,0);-ms-transform:matrix(0.274298,-0.001920,0.001750,0.249994,0,0);-webkit-transform:matrix(0.274298,-0.001920,0.001750,0.249994,0,0);}
.m88_c00396{transform:matrix(0.274918,-0.001924,0.001750,0.249994,0,0);-ms-transform:matrix(0.274918,-0.001924,0.001750,0.249994,0,0);-webkit-transform:matrix(0.274918,-0.001924,0.001750,0.249994,0,0);}
.ma3_c00396{transform:matrix(0.275028,-0.001925,0.001750,0.249994,0,0);-ms-transform:matrix(0.275028,-0.001925,0.001750,0.249994,0,0);-webkit-transform:matrix(0.275028,-0.001925,0.001750,0.249994,0,0);}
.mb2_c00396{transform:matrix(0.275210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275210,0.000000,0.000000,0.250000,0,0);}
.med_c00396{transform:matrix(0.275565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275565,0.000000,0.000000,0.250000,0,0);}
.m9d_c00396{transform:matrix(0.277708,-0.001944,0.001750,0.249994,0,0);-ms-transform:matrix(0.277708,-0.001944,0.001750,0.249994,0,0);-webkit-transform:matrix(0.277708,-0.001944,0.001750,0.249994,0,0);}
.me2_c00396{transform:matrix(0.279175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279175,0.000000,0.000000,0.250000,0,0);}
.m86_c00396{transform:matrix(0.280883,-0.001966,0.001750,0.249994,0,0);-ms-transform:matrix(0.280883,-0.001966,0.001750,0.249994,0,0);-webkit-transform:matrix(0.280883,-0.001966,0.001750,0.249994,0,0);}
.ma5_c00396{transform:matrix(0.282118,-0.001975,0.001750,0.249994,0,0);-ms-transform:matrix(0.282118,-0.001975,0.001750,0.249994,0,0);-webkit-transform:matrix(0.282118,-0.001975,0.001750,0.249994,0,0);}
.mb1_c00396{transform:matrix(0.284095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284095,0.000000,0.000000,0.250000,0,0);}
.m16_c00396{transform:matrix(0.285558,-0.004283,0.003750,0.249972,0,0);-ms-transform:matrix(0.285558,-0.004283,0.003750,0.249972,0,0);-webkit-transform:matrix(0.285558,-0.004283,0.003750,0.249972,0,0);}
.m54_c00396{transform:matrix(0.288208,-0.002017,0.001750,0.249994,0,0);-ms-transform:matrix(0.288208,-0.002017,0.001750,0.249994,0,0);-webkit-transform:matrix(0.288208,-0.002017,0.001750,0.249994,0,0);}
.ma6_c00396{transform:matrix(0.288728,-0.002021,0.001750,0.249994,0,0);-ms-transform:matrix(0.288728,-0.002021,0.001750,0.249994,0,0);-webkit-transform:matrix(0.288728,-0.002021,0.001750,0.249994,0,0);}
.ma1_c00396{transform:matrix(0.290383,-0.002033,0.001750,0.249994,0,0);-ms-transform:matrix(0.290383,-0.002033,0.001750,0.249994,0,0);-webkit-transform:matrix(0.290383,-0.002033,0.001750,0.249994,0,0);}
.ma4_c00396{transform:matrix(0.290798,-0.002036,0.001750,0.249994,0,0);-ms-transform:matrix(0.290798,-0.002036,0.001750,0.249994,0,0);-webkit-transform:matrix(0.290798,-0.002036,0.001750,0.249994,0,0);}
.m9b_c00396{transform:matrix(0.294428,-0.002061,0.001750,0.249994,0,0);-ms-transform:matrix(0.294428,-0.002061,0.001750,0.249994,0,0);-webkit-transform:matrix(0.294428,-0.002061,0.001750,0.249994,0,0);}
.m9c_c00396{transform:matrix(0.299963,-0.002100,0.001750,0.249994,0,0);-ms-transform:matrix(0.299963,-0.002100,0.001750,0.249994,0,0);-webkit-transform:matrix(0.299963,-0.002100,0.001750,0.249994,0,0);}
.m8c_c00396{transform:matrix(0.364811,-0.002554,0.001750,0.249994,0,0);-ms-transform:matrix(0.364811,-0.002554,0.001750,0.249994,0,0);-webkit-transform:matrix(0.364811,-0.002554,0.001750,0.249994,0,0);}
.m136_c00396{transform:matrix(2.853020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.853020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.853020,0.000000,0.000000,0.250000,0,0);}
.v0_c00396{vertical-align:0.000000px;}
.ls0_c00396{letter-spacing:0.000000px;}
.sc__c00396{text-shadow:none;}
.sc0_c00396{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__c00396{-webkit-text-stroke:0px transparent;}
.sc0_c00396{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00396{word-spacing:0.000000px;}
.fc0_c00396{color:transparent;}
.fs10_c00396{font-size:42.000000px;}
.fsa_c00396{font-size:66.001617px;}
.fsb_c00396{font-size:72.000000px;}
.fs9_c00396{font-size:72.001764px;}
.fs3_c00396{font-size:72.008100px;}
.fsd_c00396{font-size:78.000000px;}
.fs6_c00396{font-size:78.001911px;}
.fs2_c00396{font-size:78.008775px;}
.fsc_c00396{font-size:84.000000px;}
.fs7_c00396{font-size:84.002058px;}
.fs11_c00396{font-size:84.002688px;}
.fs5_c00396{font-size:84.009449px;}
.fs8_c00396{font-size:90.002205px;}
.fs4_c00396{font-size:90.010124px;}
.fse_c00396{font-size:96.000000px;}
.fsf_c00396{font-size:102.000000px;}
.fs13_c00396{font-size:108.000000px;}
.fs12_c00396{font-size:108.003456px;}
.fs1_c00396{font-size:132.000000px;}
.fs0_c00396{font-size:174.000000px;}
.y0_c00396{bottom:0.000000px;}
.y115_c00396{bottom:87.618000px;}
.y10f_c00396{bottom:120.689700px;}
.y110_c00396{bottom:121.883844px;}
.y111_c00396{bottom:122.726916px;}
.y112_c00396{bottom:122.967840px;}
.y113_c00396{bottom:123.694860px;}
.y114_c00396{bottom:124.549356px;}
.y106_c00396{bottom:159.570000px;}
.y107_c00396{bottom:159.827268px;}
.y108_c00396{bottom:160.440948px;}
.y109_c00396{bottom:161.052276px;}
.y10a_c00396{bottom:161.238048px;}
.y10b_c00396{bottom:161.596548px;}
.y10c_c00396{bottom:161.844972px;}
.y10d_c00396{bottom:162.371892px;}
.y10e_c00396{bottom:162.825480px;}
.y105_c00396{bottom:180.727500px;}
.y104_c00396{bottom:212.445000px;}
.y103_c00396{bottom:252.042000px;}
.y102_c00396{bottom:285.379500px;}
.yf5_c00396{bottom:316.171500px;}
.yf6_c00396{bottom:316.497000px;}
.yf7_c00396{bottom:316.896000px;}
.yf8_c00396{bottom:317.091000px;}
.yf9_c00396{bottom:317.479500px;}
.yfa_c00396{bottom:317.949000px;}
.yfb_c00396{bottom:318.148500px;}
.yfc_c00396{bottom:318.342000px;}
.yfd_c00396{bottom:319.077000px;}
.yfe_c00396{bottom:319.347000px;}
.yff_c00396{bottom:319.611000px;}
.y100_c00396{bottom:320.080500px;}
.y101_c00396{bottom:320.278500px;}
.ye9_c00396{bottom:348.573000px;}
.yea_c00396{bottom:349.321500px;}
.yeb_c00396{bottom:349.786500px;}
.yec_c00396{bottom:350.382000px;}
.yed_c00396{bottom:351.609000px;}
.yee_c00396{bottom:352.240500px;}
.yef_c00396{bottom:353.016000px;}
.yf0_c00396{bottom:354.573000px;}
.yf1_c00396{bottom:355.018500px;}
.yf2_c00396{bottom:356.433000px;}
.yf3_c00396{bottom:357.517500px;}
.yf4_c00396{bottom:358.129500px;}
.ye8_c00396{bottom:392.734500px;}
.y2_c00396{bottom:406.620000px;}
.y1_c00396{bottom:424.170000px;}
.ydc_c00396{bottom:427.680000px;}
.ydd_c00396{bottom:427.956000px;}
.yde_c00396{bottom:428.121000px;}
.ydf_c00396{bottom:428.337000px;}
.ye0_c00396{bottom:428.895000px;}
.ye1_c00396{bottom:429.384000px;}
.ye2_c00396{bottom:429.612000px;}
.ye3_c00396{bottom:429.883500px;}
.ye4_c00396{bottom:430.159500px;}
.ye5_c00396{bottom:430.497000px;}
.ye6_c00396{bottom:430.723500px;}
.ye7_c00396{bottom:431.107500px;}
.yce_c00396{bottom:460.350000px;}
.ycf_c00396{bottom:460.579500px;}
.yd0_c00396{bottom:460.806000px;}
.yd1_c00396{bottom:461.497500px;}
.yd2_c00396{bottom:461.728500px;}
.yd3_c00396{bottom:461.962500px;}
.yd4_c00396{bottom:462.733500px;}
.yd5_c00396{bottom:462.964500px;}
.yd6_c00396{bottom:463.735500px;}
.yd7_c00396{bottom:463.896000px;}
.yd8_c00396{bottom:464.206500px;}
.yd9_c00396{bottom:464.439000px;}
.yda_c00396{bottom:464.673000px;}
.ydb_c00396{bottom:464.913000px;}
.yc0_c00396{bottom:494.911500px;}
.yc1_c00396{bottom:495.529500px;}
.yc2_c00396{bottom:495.883500px;}
.yc3_c00396{bottom:496.489500px;}
.yc4_c00396{bottom:497.214000px;}
.yc5_c00396{bottom:497.581500px;}
.yc6_c00396{bottom:498.790500px;}
.yc7_c00396{bottom:499.161000px;}
.yc8_c00396{bottom:499.512000px;}
.yc9_c00396{bottom:500.734500px;}
.yca_c00396{bottom:500.985000px;}
.ycb_c00396{bottom:501.352500px;}
.ycc_c00396{bottom:501.718500px;}
.ycd_c00396{bottom:502.207500px;}
.yb5_c00396{bottom:531.091500px;}
.yb6_c00396{bottom:532.162500px;}
.yb7_c00396{bottom:533.694000px;}
.yb8_c00396{bottom:534.778500px;}
.yb9_c00396{bottom:535.084500px;}
.yba_c00396{bottom:536.010000px;}
.ybb_c00396{bottom:536.940000px;}
.ybc_c00396{bottom:537.895500px;}
.ybd_c00396{bottom:539.748000px;}
.ybe_c00396{bottom:540.213000px;}
.ybf_c00396{bottom:540.538500px;}
.yb4_c00396{bottom:572.899500px;}
.yad_c00396{bottom:600.214146px;}
.yae_c00396{bottom:601.234352px;}
.yaf_c00396{bottom:604.270593px;}
.yb0_c00396{bottom:605.542592px;}
.yb1_c00396{bottom:606.821631px;}
.yb2_c00396{bottom:607.548177px;}
.yb3_c00396{bottom:609.055286px;}
.ya1_c00396{bottom:636.928194px;}
.ya2_c00396{bottom:637.811121px;}
.ya3_c00396{bottom:638.792034px;}
.ya4_c00396{bottom:639.195932px;}
.ya5_c00396{bottom:639.490422px;}
.ya6_c00396{bottom:639.787149px;}
.ya7_c00396{bottom:640.282177px;}
.ya8_c00396{bottom:640.887746px;}
.ya9_c00396{bottom:641.273577px;}
.yaa_c00396{bottom:641.595214px;}
.yab_c00396{bottom:642.486614px;}
.yac_c00396{bottom:642.987153px;}
.y94_c00396{bottom:672.838205px;}
.y95_c00396{bottom:674.006805px;}
.y96_c00396{bottom:674.709225px;}
.y97_c00396{bottom:675.491627px;}
.y98_c00396{bottom:675.899052px;}
.y99_c00396{bottom:676.288452px;}
.y9a_c00396{bottom:676.896099px;}
.y9b_c00396{bottom:677.197949px;}
.y9c_c00396{bottom:677.787509px;}
.y9d_c00396{bottom:677.991279px;}
.y9e_c00396{bottom:678.293328px;}
.y9f_c00396{bottom:678.697036px;}
.ya0_c00396{bottom:679.093438px;}
.y87_c00396{bottom:711.175737px;}
.y88_c00396{bottom:711.477922px;}
.y89_c00396{bottom:712.046078px;}
.y8a_c00396{bottom:712.255432px;}
.y8b_c00396{bottom:712.541558px;}
.y8c_c00396{bottom:713.538395px;}
.y8d_c00396{bottom:714.043993px;}
.y8e_c00396{bottom:715.028223px;}
.y8f_c00396{bottom:715.532142px;}
.y90_c00396{bottom:715.840972px;}
.y91_c00396{bottom:716.000788px;}
.y92_c00396{bottom:717.141748px;}
.y93_c00396{bottom:717.436292px;}
.y7c_c00396{bottom:743.848451px;}
.y7d_c00396{bottom:744.924225px;}
.y7e_c00396{bottom:745.399251px;}
.y7f_c00396{bottom:746.129764px;}
.y80_c00396{bottom:747.252342px;}
.y81_c00396{bottom:747.713061px;}
.y82_c00396{bottom:748.075610px;}
.y83_c00396{bottom:748.802628px;}
.y84_c00396{bottom:749.669487px;}
.y85_c00396{bottom:750.774536px;}
.y86_c00396{bottom:751.376933px;}
.y6f_c00396{bottom:780.028898px;}
.y70_c00396{bottom:780.875153px;}
.y71_c00396{bottom:781.225841px;}
.y72_c00396{bottom:781.956333px;}
.y73_c00396{bottom:782.315345px;}
.y74_c00396{bottom:782.579796px;}
.y75_c00396{bottom:782.912944px;}
.y76_c00396{bottom:784.136883px;}
.y77_c00396{bottom:784.742901px;}
.y78_c00396{bottom:785.233503px;}
.y79_c00396{bottom:786.331708px;}
.y7a_c00396{bottom:787.079499px;}
.y7b_c00396{bottom:787.676616px;}
.y62_c00396{bottom:813.782105px;}
.y63_c00396{bottom:815.078888px;}
.y64_c00396{bottom:816.049725px;}
.y65_c00396{bottom:816.401771px;}
.y66_c00396{bottom:816.900108px;}
.y67_c00396{bottom:818.211037px;}
.y68_c00396{bottom:818.534748px;}
.y69_c00396{bottom:819.538926px;}
.y6a_c00396{bottom:819.871221px;}
.y6b_c00396{bottom:821.378196px;}
.y6c_c00396{bottom:821.864496px;}
.y6d_c00396{bottom:823.051214px;}
.y6e_c00396{bottom:824.052065px;}
.y57_c00396{bottom:851.311308px;}
.y58_c00396{bottom:852.498331px;}
.y59_c00396{bottom:852.890616px;}
.y5a_c00396{bottom:853.941039px;}
.y5b_c00396{bottom:855.006860px;}
.y5c_c00396{bottom:855.402461px;}
.y5d_c00396{bottom:855.810059px;}
.y5e_c00396{bottom:857.138396px;}
.y5f_c00396{bottom:857.530586px;}
.y60_c00396{bottom:857.922776px;}
.y61_c00396{bottom:859.392531px;}
.y4c_c00396{bottom:885.062835px;}
.y4d_c00396{bottom:885.763767px;}
.y4e_c00396{bottom:887.150688px;}
.y4f_c00396{bottom:888.900128px;}
.y50_c00396{bottom:889.984965px;}
.y51_c00396{bottom:890.520846px;}
.y52_c00396{bottom:891.379505px;}
.y53_c00396{bottom:891.747522px;}
.y54_c00396{bottom:892.616380px;}
.y55_c00396{bottom:894.416601px;}
.y56_c00396{bottom:894.763105px;}
.y41_c00396{bottom:926.370000px;}
.y42_c00396{bottom:926.606177px;}
.y43_c00396{bottom:926.906823px;}
.y44_c00396{bottom:927.373664px;}
.y45_c00396{bottom:927.759098px;}
.y46_c00396{bottom:927.914246px;}
.y47_c00396{bottom:928.148627px;}
.y48_c00396{bottom:928.379196px;}
.y49_c00396{bottom:929.157845px;}
.y4a_c00396{bottom:929.388488px;}
.y4b_c00396{bottom:930.165236px;}
.y3a_c00396{bottom:955.250153px;}
.y3b_c00396{bottom:957.466103px;}
.y3c_c00396{bottom:957.996158px;}
.y3d_c00396{bottom:958.747433px;}
.y3e_c00396{bottom:960.281850px;}
.y3f_c00396{bottom:961.052865px;}
.y40_c00396{bottom:963.115005px;}
.y2f_c00396{bottom:995.207768px;}
.y30_c00396{bottom:995.793353px;}
.y31_c00396{bottom:995.999535px;}
.y32_c00396{bottom:996.976568px;}
.y33_c00396{bottom:997.763880px;}
.y34_c00396{bottom:998.476418px;}
.y35_c00396{bottom:998.775180px;}
.y36_c00396{bottom:999.664823px;}
.y37_c00396{bottom:1000.174778px;}
.y38_c00396{bottom:1000.468418px;}
.y39_c00396{bottom:1001.175833px;}
.y25_c00396{bottom:1030.581938px;}
.y26_c00396{bottom:1031.078700px;}
.y27_c00396{bottom:1031.771287px;}
.y28_c00396{bottom:1032.075150px;}
.y29_c00396{bottom:1032.857363px;}
.y2a_c00396{bottom:1033.564507px;}
.y2b_c00396{bottom:1034.055967px;}
.y2c_c00396{bottom:1035.056978px;}
.y2d_c00396{bottom:1035.851378px;}
.y2e_c00396{bottom:1036.261620px;}
.y19_c00396{bottom:1062.448380px;}
.y1a_c00396{bottom:1064.450122px;}
.y1b_c00396{bottom:1065.144397px;}
.y1c_c00396{bottom:1065.573353px;}
.y1d_c00396{bottom:1066.007805px;}
.y1e_c00396{bottom:1066.436018px;}
.y1f_c00396{bottom:1067.302823px;}
.y20_c00396{bottom:1067.861070px;}
.y21_c00396{bottom:1068.738480px;}
.y22_c00396{bottom:1069.318230px;}
.y23_c00396{bottom:1070.044058px;}
.y24_c00396{bottom:1070.478668px;}
.ye_c00396{bottom:1099.169310px;}
.yf_c00396{bottom:1100.138453px;}
.y10_c00396{bottom:1100.582198px;}
.y11_c00396{bottom:1101.571410px;}
.y12_c00396{bottom:1102.442423px;}
.y13_c00396{bottom:1103.723520px;}
.y14_c00396{bottom:1104.166388px;}
.y15_c00396{bottom:1104.598448px;}
.y16_c00396{bottom:1105.321680px;}
.y17_c00396{bottom:1105.891298px;}
.y18_c00396{bottom:1106.477648px;}
.y3_c00396{bottom:1132.923000px;}
.y4_c00396{bottom:1133.563868px;}
.y5_c00396{bottom:1134.046245px;}
.y6_c00396{bottom:1135.051432px;}
.y7_c00396{bottom:1136.683268px;}
.y8_c00396{bottom:1138.351688px;}
.y9_c00396{bottom:1138.845855px;}
.ya_c00396{bottom:1139.347875px;}
.yb_c00396{bottom:1140.339473px;}
.yc_c00396{bottom:1141.174223px;}
.yd_c00396{bottom:1142.854793px;}
.h12_c00396{height:42.000000px;}
.hc_c00396{height:66.001617px;}
.hd_c00396{height:72.000000px;}
.hb_c00396{height:72.001764px;}
.h5_c00396{height:72.008100px;}
.hf_c00396{height:78.000000px;}
.h8_c00396{height:78.001911px;}
.h4_c00396{height:78.008775px;}
.he_c00396{height:84.000000px;}
.h9_c00396{height:84.002058px;}
.h13_c00396{height:84.002688px;}
.h7_c00396{height:84.009449px;}
.ha_c00396{height:90.002205px;}
.h6_c00396{height:90.010124px;}
.h10_c00396{height:96.000000px;}
.h11_c00396{height:102.000000px;}
.h15_c00396{height:108.000000px;}
.h14_c00396{height:108.003456px;}
.h3_c00396{height:132.000000px;}
.h2_c00396{height:174.000000px;}
.h1_c00396{height:1251.000000px;}
.h0_c00396{height:1251.150000px;}
.w0_c00396{width:915.000000px;}
.x0_c00396{left:0.000000px;}
.x1_c00396{left:8.100000px;}
.x21_c00396{left:131.569500px;}
.x2_c00396{left:132.772500px;}
.x30_c00396{left:134.580900px;}
.x4a_c00396{left:136.280869px;}
.x6d_c00396{left:137.567492px;}
.x9d_c00396{left:139.639500px;}
.xae_c00396{left:140.935500px;}
.xb7_c00396{left:142.824000px;}
.xd1_c00396{left:144.174000px;}
.xe1_c00396{left:145.443564px;}
.x64_c00396{left:170.472639px;}
.x9e_c00396{left:172.345500px;}
.x3_c00396{left:175.497000px;}
.xde_c00396{left:176.953500px;}
.x3c_c00396{left:179.016616px;}
.x7e_c00396{left:181.591851px;}
.x22_c00396{left:186.691950px;}
.x94_c00396{left:194.566500px;}
.xb8_c00396{left:196.251000px;}
.x28_c00396{left:198.067170px;}
.x9f_c00396{left:204.783000px;}
.x4_c00396{left:207.655500px;}
.x56_c00396{left:212.378936px;}
.x8c_c00396{left:214.903500px;}
.x29_c00396{left:221.014740px;}
.x4b_c00396{left:222.745029px;}
.x95_c00396{left:226.731000px;}
.xb9_c00396{left:229.465500px;}
.x31_c00396{left:230.899335px;}
.x44_c00396{left:233.475632px;}
.x77_c00396{left:235.876986px;}
.xaf_c00396{left:238.945500px;}
.xd2_c00396{left:240.564000px;}
.xd_c00396{left:241.628490px;}
.x57_c00396{left:244.262043px;}
.x83_c00396{left:247.590000px;}
.x32_c00396{left:253.933567px;}
.x65_c00396{left:256.901432px;}
.xcb_c00396{left:261.084000px;}
.xc2_c00396{left:262.546500px;}
.x23_c00396{left:263.671380px;}
.x3d_c00396{left:265.714157px;}
.x6e_c00396{left:267.437175px;}
.xa8_c00396{left:270.615000px;}
.xba_c00396{left:271.972500px;}
.x5_c00396{left:274.668000px;}
.x36_c00396{left:276.294000px;}
.x96_c00396{left:281.821500px;}
.xd3_c00396{left:283.764000px;}
.x16_c00396{left:286.775505px;}
.x66_c00396{left:288.775991px;}
.x84_c00396{left:291.600000px;}
.xc3_c00396{left:294.954000px;}
.x24_c00396{left:297.431918px;}
.xa0_c00396{left:303.604500px;}
.xd9_c00396{left:306.450000px;}
.x4c_c00396{left:311.009094px;}
.x7f_c00396{left:313.611567px;}
.xe_c00396{left:317.778285px;}
.x37_c00396{left:319.243500px;}
.x8d_c00396{left:324.258000px;}
.xe4_c00396{left:327.240000px;}
.x2a_c00396{left:329.560005px;}
.xe2_c00396{left:330.716124px;}
.xa1_c00396{left:336.546000px;}
.xb0_c00396{left:338.035500px;}
.x17_c00396{left:340.162103px;}
.x4d_c00396{left:344.269735px;}
.x6f_c00396{left:345.496083px;}
.x97_c00396{left:347.703000px;}
.xda_c00396{left:352.080000px;}
.x33_c00396{left:353.301142px;}
.xbb_c00396{left:359.659500px;}
.x58_c00396{left:367.395099px;}
.x80_c00396{left:368.890872px;}
.xa2_c00396{left:370.024500px;}
.xd4_c00396{left:371.784000px;}
.x18_c00396{left:373.160093px;}
.x3e_c00396{left:375.055768px;}
.x98_c00396{left:381.175500px;}
.x6_c00396{left:383.457000px;}
.xf_c00396{left:384.747788px;}
.x34_c00396{left:386.798115px;}
.x78_c00396{left:389.776334px;}
.x59_c00396{left:397.629749px;}
.x67_c00396{left:399.465437px;}
.x85_c00396{left:401.220000px;}
.xbc_c00396{left:404.740500px;}
.x19_c00396{left:406.624605px;}
.x2b_c00396{left:417.055380px;}
.xe3_c00396{left:418.707012px;}
.x79_c00396{left:422.417372px;}
.x81_c00396{left:424.533146px;}
.xcc_c00396{left:427.944000px;}
.xdf_c00396{left:429.166500px;}
.x4e_c00396{left:431.683343px;}
.xc4_c00396{left:438.054000px;}
.x1a_c00396{left:439.573095px;}
.x38_c00396{left:440.997000px;}
.x3f_c00396{left:442.813995px;}
.x5f_c00396{left:445.724217px;}
.x4f_c00396{left:453.283635px;}
.x68_c00396{left:455.621649px;}
.xb1_c00396{left:457.915500px;}
.xbd_c00396{left:460.083000px;}
.x25_c00396{left:462.937313px;}
.xc5_c00396{left:471.264000px;}
.x45_c00396{left:475.414158px;}
.x35_c00396{left:476.463360px;}
.x70_c00396{left:477.755235px;}
.xa3_c00396{left:480.177000px;}
.x10_c00396{left:483.257235px;}
.x60_c00396{left:487.540041px;}
.x8e_c00396{left:489.732000px;}
.x99_c00396{left:491.049000px;}
.x7_c00396{left:494.685000px;}
.x2c_c00396{left:496.164990px;}
.xc6_c00396{left:503.400000px;}
.x1b_c00396{left:506.262098px;}
.x46_c00396{left:509.426971px;}
.x7a_c00396{left:510.452643px;}
.xa4_c00396{left:513.117000px;}
.x11_c00396{left:517.282748px;}
.x50_c00396{left:520.233886px;}
.x82_c00396{left:521.615768px;}
.x9a_c00396{left:524.794500px;}
.x8_c00396{left:527.629500px;}
.x2d_c00396{left:529.385482px;}
.xb2_c00396{left:536.485500px;}
.x51_c00396{left:542.417647px;}
.x1c_c00396{left:549.179880px;}
.x12_c00396{left:550.487737px;}
.xe0_c00396{left:551.730000px;}
.x40_c00396{left:552.958055px;}
.x8f_c00396{left:556.135500px;}
.x9_c00396{left:561.097500px;}
.x5a_c00396{left:563.904587px;}
.x69_c00396{left:564.938616px;}
.xb3_c00396{left:569.695500px;}
.xbe_c00396{left:571.252500px;}
.x7b_c00396{left:577.675698px;}
.xa9_c00396{left:579.756000px;}
.xdb_c00396{left:582.660000px;}
.x61_c00396{left:586.618269px;}
.x71_c00396{left:588.474681px;}
.xd5_c00396{left:592.914000px;}
.xcd_c00396{left:594.804000px;}
.xbf_c00396{left:603.102000px;}
.xdc_c00396{left:604.800000px;}
.x13_c00396{left:606.104902px;}
.x41_c00396{left:607.220131px;}
.x5b_c00396{left:608.489337px;}
.x86_c00396{left:612.360000px;}
.x1d_c00396{left:616.675905px;}
.x47_c00396{left:620.114097px;}
.x72_c00396{left:621.952709px;}
.xa5_c00396{left:623.245500px;}
.x90_c00396{left:624.355500px;}
.xb4_c00396{left:625.585500px;}
.xa_c00396{left:627.204000px;}
.x26_c00396{left:628.750230px;}
.xaa_c00396{left:635.103000px;}
.xce_c00396{left:637.194000px;}
.x39_c00396{left:640.818000px;}
.x52_c00396{left:642.837019px;}
.xa6_c00396{left:646.215000px;}
.x14_c00396{left:649.880707px;}
.x48_c00396{left:652.782952px;}
.x6a_c00396{left:655.115846px;}
.x7c_c00396{left:656.241596px;}
.x1e_c00396{left:661.227233px;}
.x62_c00396{left:665.453064px;}
.x87_c00396{left:667.440000px;}
.xc7_c00396{left:671.047500px;}
.x3a_c00396{left:673.767000px;}
.x53_c00396{left:675.235203px;}
.xb_c00396{left:682.854000px;}
.x2e_c00396{left:684.905977px;}
.x73_c00396{left:687.531795px;}
.x9b_c00396{left:690.549000px;}
.xd6_c00396{left:692.814000px;}
.x15_c00396{left:694.972058px;}
.x88_c00396{left:700.920000px;}
.xab_c00396{left:702.601500px;}
.xc0_c00396{left:704.088000px;}
.x5c_c00396{left:708.373044px;}
.x74_c00396{left:710.212980px;}
.xc8_c00396{left:715.044000px;}
.x1f_c00396{left:717.117420px;}
.x42_c00396{left:719.744544px;}
.x9c_c00396{left:724.018500px;}
.x89_c00396{left:733.590000px;}
.xb5_c00396{left:735.745500px;}
.x43_c00396{left:741.386679px;}
.x75_c00396{left:743.719508px;}
.xac_c00396{left:747.958500px;}
.xcf_c00396{left:749.514000px;}
.x20_c00396{left:750.592432px;}
.x54_c00396{left:754.333272px;}
.x91_c00396{left:756.681000px;}
.x27_c00396{left:762.671790px;}
.x63_c00396{left:765.885750px;}
.xb6_c00396{left:770.575500px;}
.x5d_c00396{left:776.412644px;}
.xc1_c00396{left:781.548000px;}
.x3b_c00396{left:784.731000px;}
.x76_c00396{left:788.534378px;}
.x92_c00396{left:789.903000px;}
.xa7_c00396{left:791.461500px;}
.xc9_c00396{left:793.335000px;}
.xc_c00396{left:794.892000px;}
.x2f_c00396{left:796.152990px;}
.x6b_c00396{left:799.581819px;}
.x8a_c00396{left:800.820000px;}
.xdd_c00396{left:806.760000px;}
.x49_c00396{left:807.984024px;}
.x7d_c00396{left:810.944933px;}
.x93_c00396{left:813.111000px;}
.xd0_c00396{left:815.664000px;}
.xd7_c00396{left:817.014000px;}
.x55_c00396{left:821.022534px;}
.xad_c00396{left:824.890500px;}
.xca_c00396{left:826.276500px;}
.x5e_c00396{left:830.642121px;}
.x6c_c00396{left:832.230357px;}
.x8b_c00396{left:834.840000px;}
.xd8_c00396{left:839.154000px;}
@media print{
.v0_c00396{vertical-align:0.000000pt;}
.ls0_c00396{letter-spacing:0.000000pt;}
.ws0_c00396{word-spacing:0.000000pt;}
.fs10_c00396{font-size:37.333333pt;}
.fsa_c00396{font-size:58.668104pt;}
.fsb_c00396{font-size:64.000000pt;}
.fs9_c00396{font-size:64.001568pt;}
.fs3_c00396{font-size:64.007200pt;}
.fsd_c00396{font-size:69.333333pt;}
.fs6_c00396{font-size:69.335032pt;}
.fs2_c00396{font-size:69.341133pt;}
.fsc_c00396{font-size:74.666667pt;}
.fs7_c00396{font-size:74.668496pt;}
.fs11_c00396{font-size:74.669056pt;}
.fs5_c00396{font-size:74.675066pt;}
.fs8_c00396{font-size:80.001960pt;}
.fs4_c00396{font-size:80.008999pt;}
.fse_c00396{font-size:85.333333pt;}
.fsf_c00396{font-size:90.666667pt;}
.fs13_c00396{font-size:96.000000pt;}
.fs12_c00396{font-size:96.003072pt;}
.fs1_c00396{font-size:117.333333pt;}
.fs0_c00396{font-size:154.666667pt;}
.y0_c00396{bottom:0.000000pt;}
.y115_c00396{bottom:77.882667pt;}
.y10f_c00396{bottom:107.279733pt;}
.y110_c00396{bottom:108.341195pt;}
.y111_c00396{bottom:109.090592pt;}
.y112_c00396{bottom:109.304747pt;}
.y113_c00396{bottom:109.950987pt;}
.y114_c00396{bottom:110.710539pt;}
.y106_c00396{bottom:141.840000pt;}
.y107_c00396{bottom:142.068683pt;}
.y108_c00396{bottom:142.614176pt;}
.y109_c00396{bottom:143.157579pt;}
.y10a_c00396{bottom:143.322709pt;}
.y10b_c00396{bottom:143.641376pt;}
.y10c_c00396{bottom:143.862197pt;}
.y10d_c00396{bottom:144.330571pt;}
.y10e_c00396{bottom:144.733760pt;}
.y105_c00396{bottom:160.646667pt;}
.y104_c00396{bottom:188.840000pt;}
.y103_c00396{bottom:224.037333pt;}
.y102_c00396{bottom:253.670667pt;}
.yf5_c00396{bottom:281.041333pt;}
.yf6_c00396{bottom:281.330667pt;}
.yf7_c00396{bottom:281.685333pt;}
.yf8_c00396{bottom:281.858667pt;}
.yf9_c00396{bottom:282.204000pt;}
.yfa_c00396{bottom:282.621333pt;}
.yfb_c00396{bottom:282.798667pt;}
.yfc_c00396{bottom:282.970667pt;}
.yfd_c00396{bottom:283.624000pt;}
.yfe_c00396{bottom:283.864000pt;}
.yff_c00396{bottom:284.098667pt;}
.y100_c00396{bottom:284.516000pt;}
.y101_c00396{bottom:284.692000pt;}
.ye9_c00396{bottom:309.842667pt;}
.yea_c00396{bottom:310.508000pt;}
.yeb_c00396{bottom:310.921333pt;}
.yec_c00396{bottom:311.450667pt;}
.yed_c00396{bottom:312.541333pt;}
.yee_c00396{bottom:313.102667pt;}
.yef_c00396{bottom:313.792000pt;}
.yf0_c00396{bottom:315.176000pt;}
.yf1_c00396{bottom:315.572000pt;}
.yf2_c00396{bottom:316.829333pt;}
.yf3_c00396{bottom:317.793333pt;}
.yf4_c00396{bottom:318.337333pt;}
.ye8_c00396{bottom:349.097333pt;}
.y2_c00396{bottom:361.440000pt;}
.y1_c00396{bottom:377.040000pt;}
.ydc_c00396{bottom:380.160000pt;}
.ydd_c00396{bottom:380.405333pt;}
.yde_c00396{bottom:380.552000pt;}
.ydf_c00396{bottom:380.744000pt;}
.ye0_c00396{bottom:381.240000pt;}
.ye1_c00396{bottom:381.674667pt;}
.ye2_c00396{bottom:381.877333pt;}
.ye3_c00396{bottom:382.118667pt;}
.ye4_c00396{bottom:382.364000pt;}
.ye5_c00396{bottom:382.664000pt;}
.ye6_c00396{bottom:382.865333pt;}
.ye7_c00396{bottom:383.206667pt;}
.yce_c00396{bottom:409.200000pt;}
.ycf_c00396{bottom:409.404000pt;}
.yd0_c00396{bottom:409.605333pt;}
.yd1_c00396{bottom:410.220000pt;}
.yd2_c00396{bottom:410.425333pt;}
.yd3_c00396{bottom:410.633333pt;}
.yd4_c00396{bottom:411.318667pt;}
.yd5_c00396{bottom:411.524000pt;}
.yd6_c00396{bottom:412.209333pt;}
.yd7_c00396{bottom:412.352000pt;}
.yd8_c00396{bottom:412.628000pt;}
.yd9_c00396{bottom:412.834667pt;}
.yda_c00396{bottom:413.042667pt;}
.ydb_c00396{bottom:413.256000pt;}
.yc0_c00396{bottom:439.921333pt;}
.yc1_c00396{bottom:440.470667pt;}
.yc2_c00396{bottom:440.785333pt;}
.yc3_c00396{bottom:441.324000pt;}
.yc4_c00396{bottom:441.968000pt;}
.yc5_c00396{bottom:442.294667pt;}
.yc6_c00396{bottom:443.369333pt;}
.yc7_c00396{bottom:443.698667pt;}
.yc8_c00396{bottom:444.010667pt;}
.yc9_c00396{bottom:445.097333pt;}
.yca_c00396{bottom:445.320000pt;}
.ycb_c00396{bottom:445.646667pt;}
.ycc_c00396{bottom:445.972000pt;}
.ycd_c00396{bottom:446.406667pt;}
.yb5_c00396{bottom:472.081333pt;}
.yb6_c00396{bottom:473.033333pt;}
.yb7_c00396{bottom:474.394667pt;}
.yb8_c00396{bottom:475.358667pt;}
.yb9_c00396{bottom:475.630667pt;}
.yba_c00396{bottom:476.453333pt;}
.ybb_c00396{bottom:477.280000pt;}
.ybc_c00396{bottom:478.129333pt;}
.ybd_c00396{bottom:479.776000pt;}
.ybe_c00396{bottom:480.189333pt;}
.ybf_c00396{bottom:480.478667pt;}
.yb4_c00396{bottom:509.244000pt;}
.yad_c00396{bottom:533.523685pt;}
.yae_c00396{bottom:534.430535pt;}
.yaf_c00396{bottom:537.129416pt;}
.yb0_c00396{bottom:538.260081pt;}
.yb1_c00396{bottom:539.397005pt;}
.yb2_c00396{bottom:540.042824pt;}
.yb3_c00396{bottom:541.382476pt;}
.ya1_c00396{bottom:566.158395pt;}
.ya2_c00396{bottom:566.943219pt;}
.ya3_c00396{bottom:567.815141pt;}
.ya4_c00396{bottom:568.174161pt;}
.ya5_c00396{bottom:568.435931pt;}
.ya6_c00396{bottom:568.699688pt;}
.ya7_c00396{bottom:569.139713pt;}
.ya8_c00396{bottom:569.677996pt;}
.ya9_c00396{bottom:570.020957pt;}
.yaa_c00396{bottom:570.306857pt;}
.yab_c00396{bottom:571.099212pt;}
.yac_c00396{bottom:571.544136pt;}
.y94_c00396{bottom:598.078404pt;}
.y95_c00396{bottom:599.117160pt;}
.y96_c00396{bottom:599.741533pt;}
.y97_c00396{bottom:600.437001pt;}
.y98_c00396{bottom:600.799157pt;}
.y99_c00396{bottom:601.145291pt;}
.y9a_c00396{bottom:601.685421pt;}
.y9b_c00396{bottom:601.953732pt;}
.y9c_c00396{bottom:602.477785pt;}
.y9d_c00396{bottom:602.658915pt;}
.y9e_c00396{bottom:602.927403pt;}
.y9f_c00396{bottom:603.286255pt;}
.ya0_c00396{bottom:603.638612pt;}
.y87_c00396{bottom:632.156211pt;}
.y88_c00396{bottom:632.424820pt;}
.y89_c00396{bottom:632.929847pt;}
.y8a_c00396{bottom:633.115940pt;}
.y8b_c00396{bottom:633.370273pt;}
.y8c_c00396{bottom:634.256351pt;}
.y8d_c00396{bottom:634.705772pt;}
.y8e_c00396{bottom:635.580643pt;}
.y8f_c00396{bottom:636.028571pt;}
.y90_c00396{bottom:636.303087pt;}
.y91_c00396{bottom:636.445145pt;}
.y92_c00396{bottom:637.459332pt;}
.y93_c00396{bottom:637.721148pt;}
.y7c_c00396{bottom:661.198623pt;}
.y7d_c00396{bottom:662.154867pt;}
.y7e_c00396{bottom:662.577112pt;}
.y7f_c00396{bottom:663.226457pt;}
.y80_c00396{bottom:664.224304pt;}
.y81_c00396{bottom:664.633832pt;}
.y82_c00396{bottom:664.956097pt;}
.y83_c00396{bottom:665.602336pt;}
.y84_c00396{bottom:666.372877pt;}
.y85_c00396{bottom:667.355143pt;}
.y86_c00396{bottom:667.890607pt;}
.y6f_c00396{bottom:693.359020pt;}
.y70_c00396{bottom:694.111247pt;}
.y71_c00396{bottom:694.422969pt;}
.y72_c00396{bottom:695.072296pt;}
.y73_c00396{bottom:695.391417pt;}
.y74_c00396{bottom:695.626485pt;}
.y75_c00396{bottom:695.922617pt;}
.y76_c00396{bottom:697.010563pt;}
.y77_c00396{bottom:697.549245pt;}
.y78_c00396{bottom:697.985336pt;}
.y79_c00396{bottom:698.961519pt;}
.y7a_c00396{bottom:699.626221pt;}
.y7b_c00396{bottom:700.156992pt;}
.y62_c00396{bottom:723.361871pt;}
.y63_c00396{bottom:724.514567pt;}
.y64_c00396{bottom:725.377533pt;}
.y65_c00396{bottom:725.690463pt;}
.y66_c00396{bottom:726.133429pt;}
.y67_c00396{bottom:727.298700pt;}
.y68_c00396{bottom:727.586443pt;}
.y69_c00396{bottom:728.479045pt;}
.y6a_c00396{bottom:728.774419pt;}
.y6b_c00396{bottom:730.113952pt;}
.y6c_c00396{bottom:730.546219pt;}
.y6d_c00396{bottom:731.601079pt;}
.y6e_c00396{bottom:732.490724pt;}
.y57_c00396{bottom:756.721163pt;}
.y58_c00396{bottom:757.776295pt;}
.y59_c00396{bottom:758.124992pt;}
.y5a_c00396{bottom:759.058701pt;}
.y5b_c00396{bottom:760.006097pt;}
.y5c_c00396{bottom:760.357743pt;}
.y5d_c00396{bottom:760.720052pt;}
.y5e_c00396{bottom:761.900796pt;}
.y5f_c00396{bottom:762.249409pt;}
.y60_c00396{bottom:762.598023pt;}
.y61_c00396{bottom:763.904472pt;}
.y4c_c00396{bottom:786.722520pt;}
.y4d_c00396{bottom:787.345571pt;}
.y4e_c00396{bottom:788.578389pt;}
.y4f_c00396{bottom:790.133447pt;}
.y50_c00396{bottom:791.097747pt;}
.y51_c00396{bottom:791.574085pt;}
.y52_c00396{bottom:792.337337pt;}
.y53_c00396{bottom:792.664464pt;}
.y54_c00396{bottom:793.436783pt;}
.y55_c00396{bottom:795.036979pt;}
.y56_c00396{bottom:795.344983pt;}
.y41_c00396{bottom:823.440000pt;}
.y42_c00396{bottom:823.649935pt;}
.y43_c00396{bottom:823.917176pt;}
.y44_c00396{bottom:824.332145pt;}
.y45_c00396{bottom:824.674753pt;}
.y46_c00396{bottom:824.812663pt;}
.y47_c00396{bottom:825.021001pt;}
.y48_c00396{bottom:825.225952pt;}
.y49_c00396{bottom:825.918084pt;}
.y4a_c00396{bottom:826.123100pt;}
.y4b_c00396{bottom:826.813543pt;}
.y3a_c00396{bottom:849.111247pt;}
.y3b_c00396{bottom:851.080980pt;}
.y3c_c00396{bottom:851.552140pt;}
.y3d_c00396{bottom:852.219940pt;}
.y3e_c00396{bottom:853.583867pt;}
.y3f_c00396{bottom:854.269213pt;}
.y40_c00396{bottom:856.102227pt;}
.y2f_c00396{bottom:884.629127pt;}
.y30_c00396{bottom:885.149647pt;}
.y31_c00396{bottom:885.332920pt;}
.y32_c00396{bottom:886.201393pt;}
.y33_c00396{bottom:886.901227pt;}
.y34_c00396{bottom:887.534593pt;}
.y35_c00396{bottom:887.800160pt;}
.y36_c00396{bottom:888.590953pt;}
.y37_c00396{bottom:889.044247pt;}
.y38_c00396{bottom:889.305260pt;}
.y39_c00396{bottom:889.934073pt;}
.y25_c00396{bottom:916.072833pt;}
.y26_c00396{bottom:916.514400pt;}
.y27_c00396{bottom:917.130033pt;}
.y28_c00396{bottom:917.400133pt;}
.y29_c00396{bottom:918.095433pt;}
.y2a_c00396{bottom:918.724007pt;}
.y2b_c00396{bottom:919.160860pt;}
.y2c_c00396{bottom:920.050647pt;}
.y2d_c00396{bottom:920.756780pt;}
.y2e_c00396{bottom:921.121440pt;}
.y19_c00396{bottom:944.398560pt;}
.y1a_c00396{bottom:946.177887pt;}
.y1b_c00396{bottom:946.795020pt;}
.y1c_c00396{bottom:947.176313pt;}
.y1d_c00396{bottom:947.562493pt;}
.y1e_c00396{bottom:947.943127pt;}
.y1f_c00396{bottom:948.713620pt;}
.y20_c00396{bottom:949.209840pt;}
.y21_c00396{bottom:949.989760pt;}
.y22_c00396{bottom:950.505093pt;}
.y23_c00396{bottom:951.150273pt;}
.y24_c00396{bottom:951.536593pt;}
.ye_c00396{bottom:977.039387pt;}
.yf_c00396{bottom:977.900847pt;}
.y10_c00396{bottom:978.295287pt;}
.y11_c00396{bottom:979.174587pt;}
.y12_c00396{bottom:979.948820pt;}
.y13_c00396{bottom:981.087573pt;}
.y14_c00396{bottom:981.481233pt;}
.y15_c00396{bottom:981.865287pt;}
.y16_c00396{bottom:982.508160pt;}
.y17_c00396{bottom:983.014487pt;}
.y18_c00396{bottom:983.535687pt;}
.y3_c00396{bottom:1007.042667pt;}
.y4_c00396{bottom:1007.612327pt;}
.y5_c00396{bottom:1008.041107pt;}
.y6_c00396{bottom:1008.934607pt;}
.y7_c00396{bottom:1010.385127pt;}
.y8_c00396{bottom:1011.868167pt;}
.y9_c00396{bottom:1012.307427pt;}
.ya_c00396{bottom:1012.753667pt;}
.yb_c00396{bottom:1013.635087pt;}
.yc_c00396{bottom:1014.377087pt;}
.yd_c00396{bottom:1015.870927pt;}
.h12_c00396{height:37.333333pt;}
.hc_c00396{height:58.668104pt;}
.hd_c00396{height:64.000000pt;}
.hb_c00396{height:64.001568pt;}
.h5_c00396{height:64.007200pt;}
.hf_c00396{height:69.333333pt;}
.h8_c00396{height:69.335032pt;}
.h4_c00396{height:69.341133pt;}
.he_c00396{height:74.666667pt;}
.h9_c00396{height:74.668496pt;}
.h13_c00396{height:74.669056pt;}
.h7_c00396{height:74.675066pt;}
.ha_c00396{height:80.001960pt;}
.h6_c00396{height:80.008999pt;}
.h10_c00396{height:85.333333pt;}
.h11_c00396{height:90.666667pt;}
.h15_c00396{height:96.000000pt;}
.h14_c00396{height:96.003072pt;}
.h3_c00396{height:117.333333pt;}
.h2_c00396{height:154.666667pt;}
.h1_c00396{height:1112.000000pt;}
.h0_c00396{height:1112.133333pt;}
.w0_c00396{width:813.333333pt;}
.x0_c00396{left:0.000000pt;}
.x1_c00396{left:7.200000pt;}
.x21_c00396{left:116.950667pt;}
.x2_c00396{left:118.020000pt;}
.x30_c00396{left:119.627467pt;}
.x4a_c00396{left:121.138551pt;}
.x6d_c00396{left:122.282215pt;}
.x9d_c00396{left:124.124000pt;}
.xae_c00396{left:125.276000pt;}
.xb7_c00396{left:126.954667pt;}
.xd1_c00396{left:128.154667pt;}
.xe1_c00396{left:129.283168pt;}
.x64_c00396{left:151.531235pt;}
.x9e_c00396{left:153.196000pt;}
.x3_c00396{left:155.997333pt;}
.xde_c00396{left:157.292000pt;}
.x3c_c00396{left:159.125881pt;}
.x7e_c00396{left:161.414979pt;}
.x22_c00396{left:165.948400pt;}
.x94_c00396{left:172.948000pt;}
.xb8_c00396{left:174.445333pt;}
.x28_c00396{left:176.059707pt;}
.x9f_c00396{left:182.029333pt;}
.x4_c00396{left:184.582667pt;}
.x56_c00396{left:188.781276pt;}
.x8c_c00396{left:191.025333pt;}
.x29_c00396{left:196.457547pt;}
.x4b_c00396{left:197.995581pt;}
.x95_c00396{left:201.538667pt;}
.xb9_c00396{left:203.969333pt;}
.x31_c00396{left:205.243853pt;}
.x44_c00396{left:207.533895pt;}
.x77_c00396{left:209.668432pt;}
.xaf_c00396{left:212.396000pt;}
.xd2_c00396{left:213.834667pt;}
.xd_c00396{left:214.780880pt;}
.x57_c00396{left:217.121816pt;}
.x83_c00396{left:220.080000pt;}
.x32_c00396{left:225.718727pt;}
.x65_c00396{left:228.356828pt;}
.xcb_c00396{left:232.074667pt;}
.xc2_c00396{left:233.374667pt;}
.x23_c00396{left:234.374560pt;}
.x3d_c00396{left:236.190361pt;}
.x6e_c00396{left:237.721933pt;}
.xa8_c00396{left:240.546667pt;}
.xba_c00396{left:241.753333pt;}
.x5_c00396{left:244.149333pt;}
.x36_c00396{left:245.594667pt;}
.x96_c00396{left:250.508000pt;}
.xd3_c00396{left:252.234667pt;}
.x16_c00396{left:254.911560pt;}
.x66_c00396{left:256.689769pt;}
.x84_c00396{left:259.200000pt;}
.xc3_c00396{left:262.181333pt;}
.x24_c00396{left:264.383927pt;}
.xa0_c00396{left:269.870667pt;}
.xd9_c00396{left:272.400000pt;}
.x4c_c00396{left:276.452528pt;}
.x7f_c00396{left:278.765837pt;}
.xe_c00396{left:282.469587pt;}
.x37_c00396{left:283.772000pt;}
.x8d_c00396{left:288.229333pt;}
.xe4_c00396{left:290.880000pt;}
.x2a_c00396{left:292.942227pt;}
.xe2_c00396{left:293.969888pt;}
.xa1_c00396{left:299.152000pt;}
.xb0_c00396{left:300.476000pt;}
.x17_c00396{left:302.366313pt;}
.x4d_c00396{left:306.017543pt;}
.x6f_c00396{left:307.107629pt;}
.x97_c00396{left:309.069333pt;}
.xda_c00396{left:312.960000pt;}
.x33_c00396{left:314.045460pt;}
.xbb_c00396{left:319.697333pt;}
.x58_c00396{left:326.573421pt;}
.x80_c00396{left:327.902997pt;}
.xa2_c00396{left:328.910667pt;}
.xd4_c00396{left:330.474667pt;}
.x18_c00396{left:331.697860pt;}
.x3e_c00396{left:333.382905pt;}
.x98_c00396{left:338.822667pt;}
.x6_c00396{left:340.850667pt;}
.xf_c00396{left:341.998033pt;}
.x34_c00396{left:343.820547pt;}
.x78_c00396{left:346.467852pt;}
.x59_c00396{left:353.448665pt;}
.x67_c00396{left:355.080388pt;}
.x85_c00396{left:356.640000pt;}
.xbc_c00396{left:359.769333pt;}
.x19_c00396{left:361.444093pt;}
.x2b_c00396{left:370.715893pt;}
.xe3_c00396{left:372.184011pt;}
.x79_c00396{left:375.482108pt;}
.x81_c00396{left:377.362796pt;}
.xcc_c00396{left:380.394667pt;}
.xdf_c00396{left:381.481333pt;}
.x4e_c00396{left:383.718527pt;}
.xc4_c00396{left:389.381333pt;}
.x1a_c00396{left:390.731640pt;}
.x38_c00396{left:391.997333pt;}
.x3f_c00396{left:393.612440pt;}
.x5f_c00396{left:396.199304pt;}
.x4f_c00396{left:402.918787pt;}
.x68_c00396{left:404.997021pt;}
.xb1_c00396{left:407.036000pt;}
.xbd_c00396{left:408.962667pt;}
.x25_c00396{left:411.499833pt;}
.xc5_c00396{left:418.901333pt;}
.x45_c00396{left:422.590363pt;}
.x35_c00396{left:423.522987pt;}
.x70_c00396{left:424.671320pt;}
.xa3_c00396{left:426.824000pt;}
.x10_c00396{left:429.561987pt;}
.x60_c00396{left:433.368925pt;}
.x8e_c00396{left:435.317333pt;}
.x99_c00396{left:436.488000pt;}
.x7_c00396{left:439.720000pt;}
.x2c_c00396{left:441.035547pt;}
.xc6_c00396{left:447.466667pt;}
.x1b_c00396{left:450.010753pt;}
.x46_c00396{left:452.823975pt;}
.x7a_c00396{left:453.735683pt;}
.xa4_c00396{left:456.104000pt;}
.x11_c00396{left:459.806887pt;}
.x50_c00396{left:462.430121pt;}
.x82_c00396{left:463.658460pt;}
.x9a_c00396{left:466.484000pt;}
.x8_c00396{left:469.004000pt;}
.x2d_c00396{left:470.564873pt;}
.xb2_c00396{left:476.876000pt;}
.x51_c00396{left:482.149020pt;}
.x1c_c00396{left:488.159893pt;}
.x12_c00396{left:489.322433pt;}
.xe0_c00396{left:490.426667pt;}
.x40_c00396{left:491.518271pt;}
.x8f_c00396{left:494.342667pt;}
.x9_c00396{left:498.753333pt;}
.x5a_c00396{left:501.248521pt;}
.x69_c00396{left:502.167659pt;}
.xb3_c00396{left:506.396000pt;}
.xbe_c00396{left:507.780000pt;}
.x7b_c00396{left:513.489509pt;}
.xa9_c00396{left:515.338667pt;}
.xdb_c00396{left:517.920000pt;}
.x61_c00396{left:521.438461pt;}
.x71_c00396{left:523.088605pt;}
.xd5_c00396{left:527.034667pt;}
.xcd_c00396{left:528.714667pt;}
.xbf_c00396{left:536.090667pt;}
.xdc_c00396{left:537.600000pt;}
.x13_c00396{left:538.759913pt;}
.x41_c00396{left:539.751228pt;}
.x5b_c00396{left:540.879411pt;}
.x86_c00396{left:544.320000pt;}
.x1d_c00396{left:548.156360pt;}
.x47_c00396{left:551.212531pt;}
.x72_c00396{left:552.846852pt;}
.xa5_c00396{left:553.996000pt;}
.x90_c00396{left:554.982667pt;}
.xb4_c00396{left:556.076000pt;}
.xa_c00396{left:557.514667pt;}
.x26_c00396{left:558.889093pt;}
.xaa_c00396{left:564.536000pt;}
.xce_c00396{left:566.394667pt;}
.x39_c00396{left:569.616000pt;}
.x52_c00396{left:571.410684pt;}
.xa6_c00396{left:574.413333pt;}
.x14_c00396{left:577.671740pt;}
.x48_c00396{left:580.251513pt;}
.x6a_c00396{left:582.325196pt;}
.x7c_c00396{left:583.325863pt;}
.x1e_c00396{left:587.757540pt;}
.x62_c00396{left:591.513835pt;}
.x87_c00396{left:593.280000pt;}
.xc7_c00396{left:596.486667pt;}
.x3a_c00396{left:598.904000pt;}
.x53_c00396{left:600.209069pt;}
.xb_c00396{left:606.981333pt;}
.x2e_c00396{left:608.805313pt;}
.x73_c00396{left:611.139373pt;}
.x9b_c00396{left:613.821333pt;}
.xd6_c00396{left:615.834667pt;}
.x15_c00396{left:617.752940pt;}
.x88_c00396{left:623.040000pt;}
.xab_c00396{left:624.534667pt;}
.xc0_c00396{left:625.856000pt;}
.x5c_c00396{left:629.664928pt;}
.x74_c00396{left:631.300427pt;}
.xc8_c00396{left:635.594667pt;}
.x1f_c00396{left:637.437707pt;}
.x42_c00396{left:639.772928pt;}
.x9c_c00396{left:643.572000pt;}
.x89_c00396{left:652.080000pt;}
.xb5_c00396{left:653.996000pt;}
.x43_c00396{left:659.010381pt;}
.x75_c00396{left:661.084007pt;}
.xac_c00396{left:664.852000pt;}
.xcf_c00396{left:666.234667pt;}
.x20_c00396{left:667.193273pt;}
.x54_c00396{left:670.518464pt;}
.x91_c00396{left:672.605333pt;}
.x27_c00396{left:677.930480pt;}
.x63_c00396{left:680.787333pt;}
.xb6_c00396{left:684.956000pt;}
.x5d_c00396{left:690.144572pt;}
.xc1_c00396{left:694.709333pt;}
.x3b_c00396{left:697.538667pt;}
.x76_c00396{left:700.919447pt;}
.x92_c00396{left:702.136000pt;}
.xa7_c00396{left:703.521333pt;}
.xc9_c00396{left:705.186667pt;}
.xc_c00396{left:706.570667pt;}
.x2f_c00396{left:707.691547pt;}
.x6b_c00396{left:710.739395pt;}
.x8a_c00396{left:711.840000pt;}
.xdd_c00396{left:717.120000pt;}
.x49_c00396{left:718.208021pt;}
.x7d_c00396{left:720.839940pt;}
.x93_c00396{left:722.765333pt;}
.xd0_c00396{left:725.034667pt;}
.xd7_c00396{left:726.234667pt;}
.x55_c00396{left:729.797808pt;}
.xad_c00396{left:733.236000pt;}
.xca_c00396{left:734.468000pt;}
.x5e_c00396{left:738.348552pt;}
.x6c_c00396{left:739.760317pt;}
.x8b_c00396{left:742.080000pt;}
.xd8_c00396{left:745.914667pt;}
}





/* 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_c00397 {
    display:none;
  }
  .loading-indicator_c00397.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00397 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_c00397 { 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_c00397" -> "#page-container .classname_c00397")
 */
.pf_c00397 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00397 { /* 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_c00397.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00397 { /* 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_c00397 { /* 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_c00397 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00397 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00397 {overflow:visible;}
  }
}
.c_c00397 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00397 { /* 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_c00397:after { /* webkit #35443 */
  content: '';
}
.t_c00397:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00397 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 */
}
.__c00397 { /* 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_c00397 { /* info for Javascript */
  display:none;
}
.l_c00397 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00397 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00397 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00397: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_c00397 {
    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_c00397.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00397.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_c00397 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00397{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00397;src:url('chunks/assets/font_c605e72f209fc835e906f064.woff2')format("woff");}.ff1_c00397{font-family:ff1_c00397;line-height:1.000000;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;}
.m77_c00397{transform:matrix(0.004465,-0.000022,0.001250,0.249997,0,0);-ms-transform:matrix(0.004465,-0.000022,0.001250,0.249997,0,0);-webkit-transform:matrix(0.004465,-0.000022,0.001250,0.249997,0,0);}
.m78_c00397{transform:matrix(0.016010,-0.000080,0.001250,0.249997,0,0);-ms-transform:matrix(0.016010,-0.000080,0.001250,0.249997,0,0);-webkit-transform:matrix(0.016010,-0.000080,0.001250,0.249997,0,0);}
.m4c_c00397{transform:matrix(0.020580,-0.000103,0.001250,0.249997,0,0);-ms-transform:matrix(0.020580,-0.000103,0.001250,0.249997,0,0);-webkit-transform:matrix(0.020580,-0.000103,0.001250,0.249997,0,0);}
.m63_c00397{transform:matrix(0.037620,-0.000188,0.001250,0.249997,0,0);-ms-transform:matrix(0.037620,-0.000188,0.001250,0.249997,0,0);-webkit-transform:matrix(0.037620,-0.000188,0.001250,0.249997,0,0);}
.m80_c00397{transform:matrix(0.114820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114820,0.000000,0.000000,0.250000,0,0);}
.m31_c00397{transform:matrix(0.132345,-0.001588,0.003000,0.249982,0,0);-ms-transform:matrix(0.132345,-0.001588,0.003000,0.249982,0,0);-webkit-transform:matrix(0.132345,-0.001588,0.003000,0.249982,0,0);}
.m2a_c00397{transform:matrix(0.135765,-0.001629,0.003000,0.249982,0,0);-ms-transform:matrix(0.135765,-0.001629,0.003000,0.249982,0,0);-webkit-transform:matrix(0.135765,-0.001629,0.003000,0.249982,0,0);}
.m34_c00397{transform:matrix(0.137080,-0.001645,0.003000,0.249982,0,0);-ms-transform:matrix(0.137080,-0.001645,0.003000,0.249982,0,0);-webkit-transform:matrix(0.137080,-0.001645,0.003000,0.249982,0,0);}
.m7e_c00397{transform:matrix(0.139440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139440,0.000000,0.000000,0.250000,0,0);}
.m2c_c00397{transform:matrix(0.139495,-0.001674,0.003000,0.249982,0,0);-ms-transform:matrix(0.139495,-0.001674,0.003000,0.249982,0,0);-webkit-transform:matrix(0.139495,-0.001674,0.003000,0.249982,0,0);}
.m29_c00397{transform:matrix(0.141865,-0.001702,0.003000,0.249982,0,0);-ms-transform:matrix(0.141865,-0.001702,0.003000,0.249982,0,0);-webkit-transform:matrix(0.141865,-0.001702,0.003000,0.249982,0,0);}
.m2f_c00397{transform:matrix(0.149879,-0.001799,0.003000,0.249982,0,0);-ms-transform:matrix(0.149879,-0.001799,0.003000,0.249982,0,0);-webkit-transform:matrix(0.149879,-0.001799,0.003000,0.249982,0,0);}
.m2d_c00397{transform:matrix(0.150114,-0.001801,0.003000,0.249982,0,0);-ms-transform:matrix(0.150114,-0.001801,0.003000,0.249982,0,0);-webkit-transform:matrix(0.150114,-0.001801,0.003000,0.249982,0,0);}
.m6b_c00397{transform:matrix(0.151693,-0.000758,0.001250,0.249997,0,0);-ms-transform:matrix(0.151693,-0.000758,0.001250,0.249997,0,0);-webkit-transform:matrix(0.151693,-0.000758,0.001250,0.249997,0,0);}
.m2e_c00397{transform:matrix(0.151779,-0.001821,0.003000,0.249982,0,0);-ms-transform:matrix(0.151779,-0.001821,0.003000,0.249982,0,0);-webkit-transform:matrix(0.151779,-0.001821,0.003000,0.249982,0,0);}
.m33_c00397{transform:matrix(0.151849,-0.001822,0.003000,0.249982,0,0);-ms-transform:matrix(0.151849,-0.001822,0.003000,0.249982,0,0);-webkit-transform:matrix(0.151849,-0.001822,0.003000,0.249982,0,0);}
.m32_c00397{transform:matrix(0.153779,-0.001845,0.003000,0.249982,0,0);-ms-transform:matrix(0.153779,-0.001845,0.003000,0.249982,0,0);-webkit-transform:matrix(0.153779,-0.001845,0.003000,0.249982,0,0);}
.m36_c00397{transform:matrix(0.153829,-0.001846,0.003000,0.249982,0,0);-ms-transform:matrix(0.153829,-0.001846,0.003000,0.249982,0,0);-webkit-transform:matrix(0.153829,-0.001846,0.003000,0.249982,0,0);}
.m3e_c00397{transform:matrix(0.154154,-0.001850,0.003000,0.249982,0,0);-ms-transform:matrix(0.154154,-0.001850,0.003000,0.249982,0,0);-webkit-transform:matrix(0.154154,-0.001850,0.003000,0.249982,0,0);}
.m28_c00397{transform:matrix(0.154399,-0.001853,0.003000,0.249982,0,0);-ms-transform:matrix(0.154399,-0.001853,0.003000,0.249982,0,0);-webkit-transform:matrix(0.154399,-0.001853,0.003000,0.249982,0,0);}
.m35_c00397{transform:matrix(0.155514,-0.001866,0.003000,0.249982,0,0);-ms-transform:matrix(0.155514,-0.001866,0.003000,0.249982,0,0);-webkit-transform:matrix(0.155514,-0.001866,0.003000,0.249982,0,0);}
.m27_c00397{transform:matrix(0.156339,-0.001876,0.003000,0.249982,0,0);-ms-transform:matrix(0.156339,-0.001876,0.003000,0.249982,0,0);-webkit-transform:matrix(0.156339,-0.001876,0.003000,0.249982,0,0);}
.m40_c00397{transform:matrix(0.157199,-0.001886,0.003000,0.249982,0,0);-ms-transform:matrix(0.157199,-0.001886,0.003000,0.249982,0,0);-webkit-transform:matrix(0.157199,-0.001886,0.003000,0.249982,0,0);}
.m59_c00397{transform:matrix(0.157803,-0.000789,0.001250,0.249997,0,0);-ms-transform:matrix(0.157803,-0.000789,0.001250,0.249997,0,0);-webkit-transform:matrix(0.157803,-0.000789,0.001250,0.249997,0,0);}
.m30_c00397{transform:matrix(0.159234,-0.001911,0.003000,0.249982,0,0);-ms-transform:matrix(0.159234,-0.001911,0.003000,0.249982,0,0);-webkit-transform:matrix(0.159234,-0.001911,0.003000,0.249982,0,0);}
.m69_c00397{transform:matrix(0.161143,-0.000806,0.001250,0.249997,0,0);-ms-transform:matrix(0.161143,-0.000806,0.001250,0.249997,0,0);-webkit-transform:matrix(0.161143,-0.000806,0.001250,0.249997,0,0);}
.m3c_c00397{transform:matrix(0.163543,-0.001963,0.003000,0.249982,0,0);-ms-transform:matrix(0.163543,-0.001963,0.003000,0.249982,0,0);-webkit-transform:matrix(0.163543,-0.001963,0.003000,0.249982,0,0);}
.m25_c00397{transform:matrix(0.163923,-0.001967,0.003000,0.249982,0,0);-ms-transform:matrix(0.163923,-0.001967,0.003000,0.249982,0,0);-webkit-transform:matrix(0.163923,-0.001967,0.003000,0.249982,0,0);}
.m73_c00397{transform:matrix(0.165943,-0.000830,0.001250,0.249997,0,0);-ms-transform:matrix(0.165943,-0.000830,0.001250,0.249997,0,0);-webkit-transform:matrix(0.165943,-0.000830,0.001250,0.249997,0,0);}
.m3b_c00397{transform:matrix(0.167103,-0.002005,0.003000,0.249982,0,0);-ms-transform:matrix(0.167103,-0.002005,0.003000,0.249982,0,0);-webkit-transform:matrix(0.167103,-0.002005,0.003000,0.249982,0,0);}
.m2b_c00397{transform:matrix(0.168783,-0.002025,0.003000,0.249982,0,0);-ms-transform:matrix(0.168783,-0.002025,0.003000,0.249982,0,0);-webkit-transform:matrix(0.168783,-0.002025,0.003000,0.249982,0,0);}
.m3_c00397{transform:matrix(0.169773,-0.002037,0.003000,0.249982,0,0);-ms-transform:matrix(0.169773,-0.002037,0.003000,0.249982,0,0);-webkit-transform:matrix(0.169773,-0.002037,0.003000,0.249982,0,0);}
.m12_c00397{transform:matrix(0.171938,-0.002063,0.003000,0.249982,0,0);-ms-transform:matrix(0.171938,-0.002063,0.003000,0.249982,0,0);-webkit-transform:matrix(0.171938,-0.002063,0.003000,0.249982,0,0);}
.m3d_c00397{transform:matrix(0.172538,-0.002070,0.003000,0.249982,0,0);-ms-transform:matrix(0.172538,-0.002070,0.003000,0.249982,0,0);-webkit-transform:matrix(0.172538,-0.002070,0.003000,0.249982,0,0);}
.m1d_c00397{transform:matrix(0.173398,-0.002081,0.003000,0.249982,0,0);-ms-transform:matrix(0.173398,-0.002081,0.003000,0.249982,0,0);-webkit-transform:matrix(0.173398,-0.002081,0.003000,0.249982,0,0);}
.m9_c00397{transform:matrix(0.173533,-0.002082,0.003000,0.249982,0,0);-ms-transform:matrix(0.173533,-0.002082,0.003000,0.249982,0,0);-webkit-transform:matrix(0.173533,-0.002082,0.003000,0.249982,0,0);}
.m47_c00397{transform:matrix(0.175138,-0.000876,0.001250,0.249997,0,0);-ms-transform:matrix(0.175138,-0.000876,0.001250,0.249997,0,0);-webkit-transform:matrix(0.175138,-0.000876,0.001250,0.249997,0,0);}
.m5_c00397{transform:matrix(0.175502,-0.002106,0.003000,0.249982,0,0);-ms-transform:matrix(0.175502,-0.002106,0.003000,0.249982,0,0);-webkit-transform:matrix(0.175502,-0.002106,0.003000,0.249982,0,0);}
.m13_c00397{transform:matrix(0.176127,-0.002114,0.003000,0.249982,0,0);-ms-transform:matrix(0.176127,-0.002114,0.003000,0.249982,0,0);-webkit-transform:matrix(0.176127,-0.002114,0.003000,0.249982,0,0);}
.m20_c00397{transform:matrix(0.176297,-0.002116,0.003000,0.249982,0,0);-ms-transform:matrix(0.176297,-0.002116,0.003000,0.249982,0,0);-webkit-transform:matrix(0.176297,-0.002116,0.003000,0.249982,0,0);}
.m6e_c00397{transform:matrix(0.178298,-0.000891,0.001250,0.249997,0,0);-ms-transform:matrix(0.178298,-0.000891,0.001250,0.249997,0,0);-webkit-transform:matrix(0.178298,-0.000891,0.001250,0.249997,0,0);}
.m4f_c00397{transform:matrix(0.179173,-0.000896,0.001250,0.249997,0,0);-ms-transform:matrix(0.179173,-0.000896,0.001250,0.249997,0,0);-webkit-transform:matrix(0.179173,-0.000896,0.001250,0.249997,0,0);}
.m6f_c00397{transform:matrix(0.179943,-0.000900,0.001250,0.249997,0,0);-ms-transform:matrix(0.179943,-0.000900,0.001250,0.249997,0,0);-webkit-transform:matrix(0.179943,-0.000900,0.001250,0.249997,0,0);}
.m58_c00397{transform:matrix(0.181123,-0.000906,0.001250,0.249997,0,0);-ms-transform:matrix(0.181123,-0.000906,0.001250,0.249997,0,0);-webkit-transform:matrix(0.181123,-0.000906,0.001250,0.249997,0,0);}
.m10_c00397{transform:matrix(0.181432,-0.002177,0.003000,0.249982,0,0);-ms-transform:matrix(0.181432,-0.002177,0.003000,0.249982,0,0);-webkit-transform:matrix(0.181432,-0.002177,0.003000,0.249982,0,0);}
.m71_c00397{transform:matrix(0.182013,-0.000910,0.001250,0.249997,0,0);-ms-transform:matrix(0.182013,-0.000910,0.001250,0.249997,0,0);-webkit-transform:matrix(0.182013,-0.000910,0.001250,0.249997,0,0);}
.m1a_c00397{transform:matrix(0.182517,-0.002190,0.003000,0.249982,0,0);-ms-transform:matrix(0.182517,-0.002190,0.003000,0.249982,0,0);-webkit-transform:matrix(0.182517,-0.002190,0.003000,0.249982,0,0);}
.m39_c00397{transform:matrix(0.183332,-0.002200,0.003000,0.249982,0,0);-ms-transform:matrix(0.183332,-0.002200,0.003000,0.249982,0,0);-webkit-transform:matrix(0.183332,-0.002200,0.003000,0.249982,0,0);}
.m54_c00397{transform:matrix(0.183703,-0.000919,0.001250,0.249997,0,0);-ms-transform:matrix(0.183703,-0.000919,0.001250,0.249997,0,0);-webkit-transform:matrix(0.183703,-0.000919,0.001250,0.249997,0,0);}
.m6d_c00397{transform:matrix(0.183753,-0.000919,0.001250,0.249997,0,0);-ms-transform:matrix(0.183753,-0.000919,0.001250,0.249997,0,0);-webkit-transform:matrix(0.183753,-0.000919,0.001250,0.249997,0,0);}
.m21_c00397{transform:matrix(0.184167,-0.002210,0.003000,0.249982,0,0);-ms-transform:matrix(0.184167,-0.002210,0.003000,0.249982,0,0);-webkit-transform:matrix(0.184167,-0.002210,0.003000,0.249982,0,0);}
.mf_c00397{transform:matrix(0.185752,-0.002229,0.003000,0.249982,0,0);-ms-transform:matrix(0.185752,-0.002229,0.003000,0.249982,0,0);-webkit-transform:matrix(0.185752,-0.002229,0.003000,0.249982,0,0);}
.m75_c00397{transform:matrix(0.186508,-0.000933,0.001250,0.249997,0,0);-ms-transform:matrix(0.186508,-0.000933,0.001250,0.249997,0,0);-webkit-transform:matrix(0.186508,-0.000933,0.001250,0.249997,0,0);}
.m70_c00397{transform:matrix(0.186718,-0.000934,0.001250,0.249997,0,0);-ms-transform:matrix(0.186718,-0.000934,0.001250,0.249997,0,0);-webkit-transform:matrix(0.186718,-0.000934,0.001250,0.249997,0,0);}
.m55_c00397{transform:matrix(0.186828,-0.000934,0.001250,0.249997,0,0);-ms-transform:matrix(0.186828,-0.000934,0.001250,0.249997,0,0);-webkit-transform:matrix(0.186828,-0.000934,0.001250,0.249997,0,0);}
.m3a_c00397{transform:matrix(0.186992,-0.002244,0.003000,0.249982,0,0);-ms-transform:matrix(0.186992,-0.002244,0.003000,0.249982,0,0);-webkit-transform:matrix(0.186992,-0.002244,0.003000,0.249982,0,0);}
.m4_c00397{transform:matrix(0.187966,-0.002256,0.003000,0.249982,0,0);-ms-transform:matrix(0.187966,-0.002256,0.003000,0.249982,0,0);-webkit-transform:matrix(0.187966,-0.002256,0.003000,0.249982,0,0);}
.m51_c00397{transform:matrix(0.189183,-0.000946,0.001250,0.249997,0,0);-ms-transform:matrix(0.189183,-0.000946,0.001250,0.249997,0,0);-webkit-transform:matrix(0.189183,-0.000946,0.001250,0.249997,0,0);}
.m11_c00397{transform:matrix(0.189441,-0.002273,0.003000,0.249982,0,0);-ms-transform:matrix(0.189441,-0.002273,0.003000,0.249982,0,0);-webkit-transform:matrix(0.189441,-0.002273,0.003000,0.249982,0,0);}
.m74_c00397{transform:matrix(0.189813,-0.000949,0.001250,0.249997,0,0);-ms-transform:matrix(0.189813,-0.000949,0.001250,0.249997,0,0);-webkit-transform:matrix(0.189813,-0.000949,0.001250,0.249997,0,0);}
.m1b_c00397{transform:matrix(0.189981,-0.002280,0.003000,0.249982,0,0);-ms-transform:matrix(0.189981,-0.002280,0.003000,0.249982,0,0);-webkit-transform:matrix(0.189981,-0.002280,0.003000,0.249982,0,0);}
.m52_c00397{transform:matrix(0.190163,-0.000951,0.001250,0.249997,0,0);-ms-transform:matrix(0.190163,-0.000951,0.001250,0.249997,0,0);-webkit-transform:matrix(0.190163,-0.000951,0.001250,0.249997,0,0);}
.ma_c00397{transform:matrix(0.190406,-0.002285,0.003000,0.249982,0,0);-ms-transform:matrix(0.190406,-0.002285,0.003000,0.249982,0,0);-webkit-transform:matrix(0.190406,-0.002285,0.003000,0.249982,0,0);}
.m5f_c00397{transform:matrix(0.192368,-0.000962,0.001250,0.249997,0,0);-ms-transform:matrix(0.192368,-0.000962,0.001250,0.249997,0,0);-webkit-transform:matrix(0.192368,-0.000962,0.001250,0.249997,0,0);}
.m26_c00397{transform:matrix(0.192631,-0.002312,0.003000,0.249982,0,0);-ms-transform:matrix(0.192631,-0.002312,0.003000,0.249982,0,0);-webkit-transform:matrix(0.192631,-0.002312,0.003000,0.249982,0,0);}
.m23_c00397{transform:matrix(0.193701,-0.002324,0.003000,0.249982,0,0);-ms-transform:matrix(0.193701,-0.002324,0.003000,0.249982,0,0);-webkit-transform:matrix(0.193701,-0.002324,0.003000,0.249982,0,0);}
.m3f_c00397{transform:matrix(0.193806,-0.002326,0.003000,0.249982,0,0);-ms-transform:matrix(0.193806,-0.002326,0.003000,0.249982,0,0);-webkit-transform:matrix(0.193806,-0.002326,0.003000,0.249982,0,0);}
.m64_c00397{transform:matrix(0.193963,-0.000970,0.001250,0.249997,0,0);-ms-transform:matrix(0.193963,-0.000970,0.001250,0.249997,0,0);-webkit-transform:matrix(0.193963,-0.000970,0.001250,0.249997,0,0);}
.m7f_c00397{transform:matrix(0.194485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194485,0.000000,0.000000,0.250000,0,0);}
.m1c_c00397{transform:matrix(0.195576,-0.002347,0.003000,0.249982,0,0);-ms-transform:matrix(0.195576,-0.002347,0.003000,0.249982,0,0);-webkit-transform:matrix(0.195576,-0.002347,0.003000,0.249982,0,0);}
.m6a_c00397{transform:matrix(0.196028,-0.000980,0.001250,0.249997,0,0);-ms-transform:matrix(0.196028,-0.000980,0.001250,0.249997,0,0);-webkit-transform:matrix(0.196028,-0.000980,0.001250,0.249997,0,0);}
.m65_c00397{transform:matrix(0.198298,-0.000991,0.001250,0.249997,0,0);-ms-transform:matrix(0.198298,-0.000991,0.001250,0.249997,0,0);-webkit-transform:matrix(0.198298,-0.000991,0.001250,0.249997,0,0);}
.md_c00397{transform:matrix(0.198861,-0.002386,0.003000,0.249982,0,0);-ms-transform:matrix(0.198861,-0.002386,0.003000,0.249982,0,0);-webkit-transform:matrix(0.198861,-0.002386,0.003000,0.249982,0,0);}
.m5d_c00397{transform:matrix(0.199068,-0.000995,0.001250,0.249997,0,0);-ms-transform:matrix(0.199068,-0.000995,0.001250,0.249997,0,0);-webkit-transform:matrix(0.199068,-0.000995,0.001250,0.249997,0,0);}
.m53_c00397{transform:matrix(0.199443,-0.000997,0.001250,0.249997,0,0);-ms-transform:matrix(0.199443,-0.000997,0.001250,0.249997,0,0);-webkit-transform:matrix(0.199443,-0.000997,0.001250,0.249997,0,0);}
.m62_c00397{transform:matrix(0.200142,-0.001001,0.001250,0.249997,0,0);-ms-transform:matrix(0.200142,-0.001001,0.001250,0.249997,0,0);-webkit-transform:matrix(0.200142,-0.001001,0.001250,0.249997,0,0);}
.m68_c00397{transform:matrix(0.200992,-0.001005,0.001250,0.249997,0,0);-ms-transform:matrix(0.200992,-0.001005,0.001250,0.249997,0,0);-webkit-transform:matrix(0.200992,-0.001005,0.001250,0.249997,0,0);}
.m16_c00397{transform:matrix(0.202545,-0.002431,0.003000,0.249982,0,0);-ms-transform:matrix(0.202545,-0.002431,0.003000,0.249982,0,0);-webkit-transform:matrix(0.202545,-0.002431,0.003000,0.249982,0,0);}
.m19_c00397{transform:matrix(0.203155,-0.002438,0.003000,0.249982,0,0);-ms-transform:matrix(0.203155,-0.002438,0.003000,0.249982,0,0);-webkit-transform:matrix(0.203155,-0.002438,0.003000,0.249982,0,0);}
.m50_c00397{transform:matrix(0.203232,-0.001016,0.001250,0.249997,0,0);-ms-transform:matrix(0.203232,-0.001016,0.001250,0.249997,0,0);-webkit-transform:matrix(0.203232,-0.001016,0.001250,0.249997,0,0);}
.m57_c00397{transform:matrix(0.203317,-0.001017,0.001250,0.249997,0,0);-ms-transform:matrix(0.203317,-0.001017,0.001250,0.249997,0,0);-webkit-transform:matrix(0.203317,-0.001017,0.001250,0.249997,0,0);}
.m56_c00397{transform:matrix(0.203402,-0.001017,0.001250,0.249997,0,0);-ms-transform:matrix(0.203402,-0.001017,0.001250,0.249997,0,0);-webkit-transform:matrix(0.203402,-0.001017,0.001250,0.249997,0,0);}
.m38_c00397{transform:matrix(0.203590,-0.002443,0.003000,0.249982,0,0);-ms-transform:matrix(0.203590,-0.002443,0.003000,0.249982,0,0);-webkit-transform:matrix(0.203590,-0.002443,0.003000,0.249982,0,0);}
.mc_c00397{transform:matrix(0.204005,-0.002448,0.003000,0.249982,0,0);-ms-transform:matrix(0.204005,-0.002448,0.003000,0.249982,0,0);-webkit-transform:matrix(0.204005,-0.002448,0.003000,0.249982,0,0);}
.m4e_c00397{transform:matrix(0.204682,-0.001023,0.001250,0.249997,0,0);-ms-transform:matrix(0.204682,-0.001023,0.001250,0.249997,0,0);-webkit-transform:matrix(0.204682,-0.001023,0.001250,0.249997,0,0);}
.m7c_c00397{transform:matrix(0.206262,-0.001031,0.001250,0.249997,0,0);-ms-transform:matrix(0.206262,-0.001031,0.001250,0.249997,0,0);-webkit-transform:matrix(0.206262,-0.001031,0.001250,0.249997,0,0);}
.m1e_c00397{transform:matrix(0.206280,-0.002475,0.003000,0.249982,0,0);-ms-transform:matrix(0.206280,-0.002475,0.003000,0.249982,0,0);-webkit-transform:matrix(0.206280,-0.002475,0.003000,0.249982,0,0);}
.m22_c00397{transform:matrix(0.206450,-0.002477,0.003000,0.249982,0,0);-ms-transform:matrix(0.206450,-0.002477,0.003000,0.249982,0,0);-webkit-transform:matrix(0.206450,-0.002477,0.003000,0.249982,0,0);}
.m4b_c00397{transform:matrix(0.207502,-0.001038,0.001250,0.249997,0,0);-ms-transform:matrix(0.207502,-0.001038,0.001250,0.249997,0,0);-webkit-transform:matrix(0.207502,-0.001038,0.001250,0.249997,0,0);}
.m1f_c00397{transform:matrix(0.208645,-0.002504,0.003000,0.249982,0,0);-ms-transform:matrix(0.208645,-0.002504,0.003000,0.249982,0,0);-webkit-transform:matrix(0.208645,-0.002504,0.003000,0.249982,0,0);}
.m8_c00397{transform:matrix(0.209775,-0.002517,0.003000,0.249982,0,0);-ms-transform:matrix(0.209775,-0.002517,0.003000,0.249982,0,0);-webkit-transform:matrix(0.209775,-0.002517,0.003000,0.249982,0,0);}
.m14_c00397{transform:matrix(0.210235,-0.002523,0.003000,0.249982,0,0);-ms-transform:matrix(0.210235,-0.002523,0.003000,0.249982,0,0);-webkit-transform:matrix(0.210235,-0.002523,0.003000,0.249982,0,0);}
.mb_c00397{transform:matrix(0.210290,-0.002523,0.003000,0.249982,0,0);-ms-transform:matrix(0.210290,-0.002523,0.003000,0.249982,0,0);-webkit-transform:matrix(0.210290,-0.002523,0.003000,0.249982,0,0);}
.m17_c00397{transform:matrix(0.210360,-0.002524,0.003000,0.249982,0,0);-ms-transform:matrix(0.210360,-0.002524,0.003000,0.249982,0,0);-webkit-transform:matrix(0.210360,-0.002524,0.003000,0.249982,0,0);}
.me_c00397{transform:matrix(0.216419,-0.002597,0.003000,0.249982,0,0);-ms-transform:matrix(0.216419,-0.002597,0.003000,0.249982,0,0);-webkit-transform:matrix(0.216419,-0.002597,0.003000,0.249982,0,0);}
.m24_c00397{transform:matrix(0.219319,-0.002632,0.003000,0.249982,0,0);-ms-transform:matrix(0.219319,-0.002632,0.003000,0.249982,0,0);-webkit-transform:matrix(0.219319,-0.002632,0.003000,0.249982,0,0);}
.m18_c00397{transform:matrix(0.222424,-0.002669,0.003000,0.249982,0,0);-ms-transform:matrix(0.222424,-0.002669,0.003000,0.249982,0,0);-webkit-transform:matrix(0.222424,-0.002669,0.003000,0.249982,0,0);}
.m41_c00397{transform:matrix(0.223092,-0.001115,0.001250,0.249997,0,0);-ms-transform:matrix(0.223092,-0.001115,0.001250,0.249997,0,0);-webkit-transform:matrix(0.223092,-0.001115,0.001250,0.249997,0,0);}
.m6c_c00397{transform:matrix(0.223762,-0.001119,0.001250,0.249997,0,0);-ms-transform:matrix(0.223762,-0.001119,0.001250,0.249997,0,0);-webkit-transform:matrix(0.223762,-0.001119,0.001250,0.249997,0,0);}
.m7_c00397{transform:matrix(0.225569,-0.002707,0.003000,0.249982,0,0);-ms-transform:matrix(0.225569,-0.002707,0.003000,0.249982,0,0);-webkit-transform:matrix(0.225569,-0.002707,0.003000,0.249982,0,0);}
.m43_c00397{transform:matrix(0.227592,-0.001138,0.001250,0.249997,0,0);-ms-transform:matrix(0.227592,-0.001138,0.001250,0.249997,0,0);-webkit-transform:matrix(0.227592,-0.001138,0.001250,0.249997,0,0);}
.m76_c00397{transform:matrix(0.230037,-0.001150,0.001250,0.249997,0,0);-ms-transform:matrix(0.230037,-0.001150,0.001250,0.249997,0,0);-webkit-transform:matrix(0.230037,-0.001150,0.001250,0.249997,0,0);}
.m42_c00397{transform:matrix(0.231932,-0.001160,0.001250,0.249997,0,0);-ms-transform:matrix(0.231932,-0.001160,0.001250,0.249997,0,0);-webkit-transform:matrix(0.231932,-0.001160,0.001250,0.249997,0,0);}
.m72_c00397{transform:matrix(0.233407,-0.001167,0.001250,0.249997,0,0);-ms-transform:matrix(0.233407,-0.001167,0.001250,0.249997,0,0);-webkit-transform:matrix(0.233407,-0.001167,0.001250,0.249997,0,0);}
.m45_c00397{transform:matrix(0.234832,-0.001174,0.001250,0.249997,0,0);-ms-transform:matrix(0.234832,-0.001174,0.001250,0.249997,0,0);-webkit-transform:matrix(0.234832,-0.001174,0.001250,0.249997,0,0);}
.m48_c00397{transform:matrix(0.236372,-0.001182,0.001250,0.249997,0,0);-ms-transform:matrix(0.236372,-0.001182,0.001250,0.249997,0,0);-webkit-transform:matrix(0.236372,-0.001182,0.001250,0.249997,0,0);}
.m6_c00397{transform:matrix(0.237198,-0.002846,0.003000,0.249982,0,0);-ms-transform:matrix(0.237198,-0.002846,0.003000,0.249982,0,0);-webkit-transform:matrix(0.237198,-0.002846,0.003000,0.249982,0,0);}
.m61_c00397{transform:matrix(0.237892,-0.001189,0.001250,0.249997,0,0);-ms-transform:matrix(0.237892,-0.001189,0.001250,0.249997,0,0);-webkit-transform:matrix(0.237892,-0.001189,0.001250,0.249997,0,0);}
.m4a_c00397{transform:matrix(0.242457,-0.001212,0.001250,0.249997,0,0);-ms-transform:matrix(0.242457,-0.001212,0.001250,0.249997,0,0);-webkit-transform:matrix(0.242457,-0.001212,0.001250,0.249997,0,0);}
.m49_c00397{transform:matrix(0.249447,-0.001247,0.001250,0.249997,0,0);-ms-transform:matrix(0.249447,-0.001247,0.001250,0.249997,0,0);-webkit-transform:matrix(0.249447,-0.001247,0.001250,0.249997,0,0);}
.m4d_c00397{transform:matrix(0.258087,-0.001290,0.001250,0.249997,0,0);-ms-transform:matrix(0.258087,-0.001290,0.001250,0.249997,0,0);-webkit-transform:matrix(0.258087,-0.001290,0.001250,0.249997,0,0);}
.m44_c00397{transform:matrix(0.260377,-0.001302,0.001250,0.249997,0,0);-ms-transform:matrix(0.260377,-0.001302,0.001250,0.249997,0,0);-webkit-transform:matrix(0.260377,-0.001302,0.001250,0.249997,0,0);}
.m15_c00397{transform:matrix(0.262721,-0.003153,0.003000,0.249982,0,0);-ms-transform:matrix(0.262721,-0.003153,0.003000,0.249982,0,0);-webkit-transform:matrix(0.262721,-0.003153,0.003000,0.249982,0,0);}
.m46_c00397{transform:matrix(0.263117,-0.001316,0.001250,0.249997,0,0);-ms-transform:matrix(0.263117,-0.001316,0.001250,0.249997,0,0);-webkit-transform:matrix(0.263117,-0.001316,0.001250,0.249997,0,0);}
.m5b_c00397{transform:matrix(0.264212,-0.001321,0.001250,0.249997,0,0);-ms-transform:matrix(0.264212,-0.001321,0.001250,0.249997,0,0);-webkit-transform:matrix(0.264212,-0.001321,0.001250,0.249997,0,0);}
.m5e_c00397{transform:matrix(0.265112,-0.001326,0.001250,0.249997,0,0);-ms-transform:matrix(0.265112,-0.001326,0.001250,0.249997,0,0);-webkit-transform:matrix(0.265112,-0.001326,0.001250,0.249997,0,0);}
.m5c_c00397{transform:matrix(0.274577,-0.001373,0.001250,0.249997,0,0);-ms-transform:matrix(0.274577,-0.001373,0.001250,0.249997,0,0);-webkit-transform:matrix(0.274577,-0.001373,0.001250,0.249997,0,0);}
.m37_c00397{transform:matrix(0.304118,-0.003649,0.003000,0.249982,0,0);-ms-transform:matrix(0.304118,-0.003649,0.003000,0.249982,0,0);-webkit-transform:matrix(0.304118,-0.003649,0.003000,0.249982,0,0);}
.m2_c00397{transform:matrix(0.336990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336990,0.000000,0.000000,0.250000,0,0);}
.m66_c00397{transform:matrix(0.345676,-0.001728,0.001250,0.249997,0,0);-ms-transform:matrix(0.345676,-0.001728,0.001250,0.249997,0,0);-webkit-transform:matrix(0.345676,-0.001728,0.001250,0.249997,0,0);}
.m67_c00397{transform:matrix(0.348616,-0.001743,0.001250,0.249997,0,0);-ms-transform:matrix(0.348616,-0.001743,0.001250,0.249997,0,0);-webkit-transform:matrix(0.348616,-0.001743,0.001250,0.249997,0,0);}
.m79_c00397{transform:matrix(0.365180,-0.001826,0.001250,0.249997,0,0);-ms-transform:matrix(0.365180,-0.001826,0.001250,0.249997,0,0);-webkit-transform:matrix(0.365180,-0.001826,0.001250,0.249997,0,0);}
.m7b_c00397{transform:matrix(0.391025,-0.001955,0.001250,0.249997,0,0);-ms-transform:matrix(0.391025,-0.001955,0.001250,0.249997,0,0);-webkit-transform:matrix(0.391025,-0.001955,0.001250,0.249997,0,0);}
.m0_c00397{transform:matrix(0.407490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407490,0.000000,0.000000,0.250000,0,0);}
.m60_c00397{transform:matrix(0.517934,-0.002590,0.001250,0.249997,0,0);-ms-transform:matrix(0.517934,-0.002590,0.001250,0.249997,0,0);-webkit-transform:matrix(0.517934,-0.002590,0.001250,0.249997,0,0);}
.m1_c00397{transform:matrix(0.627200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.627200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.627200,0.000000,0.000000,0.250000,0,0);}
.m5a_c00397{transform:matrix(0.648002,-0.003240,0.001250,0.249997,0,0);-ms-transform:matrix(0.648002,-0.003240,0.001250,0.249997,0,0);-webkit-transform:matrix(0.648002,-0.003240,0.001250,0.249997,0,0);}
.m7a_c00397{transform:matrix(0.690661,-0.003453,0.001250,0.249997,0,0);-ms-transform:matrix(0.690661,-0.003453,0.001250,0.249997,0,0);-webkit-transform:matrix(0.690661,-0.003453,0.001250,0.249997,0,0);}
.m7d_c00397{transform:matrix(0.770170,-0.003851,0.001250,0.249997,0,0);-ms-transform:matrix(0.770170,-0.003851,0.001250,0.249997,0,0);-webkit-transform:matrix(0.770170,-0.003851,0.001250,0.249997,0,0);}
.v0_c00397{vertical-align:0.000000px;}
.ls0_c00397{letter-spacing:0.000000px;}
.sc__c00397{text-shadow:none;}
.sc0_c00397{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__c00397{-webkit-text-stroke:0px transparent;}
.sc0_c00397{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00397{word-spacing:0.000000px;}
._0_c00397{width:2.268499px;}
.fc0_c00397{color:transparent;}
.fs0_c00397{font-size:18.000000px;}
.fs1_c00397{font-size:60.000000px;}
.fs6_c00397{font-size:84.001050px;}
.fs3_c00397{font-size:96.006912px;}
.fs7_c00397{font-size:102.001275px;}
.fs9_c00397{font-size:108.001350px;}
.fs2_c00397{font-size:108.007776px;}
.fs8_c00397{font-size:114.001425px;}
.fs5_c00397{font-size:114.008208px;}
.fs4_c00397{font-size:126.009072px;}
.fsa_c00397{font-size:150.000000px;}
.y0_c00397{bottom:0.000000px;}
.y82_c00397{bottom:89.640000px;}
.y81_c00397{bottom:130.410000px;}
.y80_c00397{bottom:176.040000px;}
.y7a_c00397{bottom:708.875115px;}
.y7b_c00397{bottom:708.875407px;}
.y7f_c00397{bottom:708.875835px;}
.y7c_c00397{bottom:708.875850px;}
.y7e_c00397{bottom:708.875992px;}
.y7d_c00397{bottom:708.876442px;}
.y70_c00397{bottom:739.260345px;}
.y71_c00397{bottom:739.696942px;}
.y72_c00397{bottom:740.394577px;}
.y73_c00397{bottom:740.957370px;}
.y74_c00397{bottom:741.422962px;}
.y75_c00397{bottom:741.633915px;}
.y76_c00397{bottom:741.910455px;}
.y77_c00397{bottom:742.641352px;}
.y78_c00397{bottom:743.112682px;}
.y79_c00397{bottom:743.523255px;}
.y64_c00397{bottom:813.795487px;}
.y65_c00397{bottom:814.179315px;}
.y66_c00397{bottom:814.774110px;}
.y67_c00397{bottom:815.486347px;}
.y68_c00397{bottom:816.677362px;}
.y69_c00397{bottom:816.923205px;}
.y6a_c00397{bottom:817.466542px;}
.y6b_c00397{bottom:817.665855px;}
.y6c_c00397{bottom:818.479425px;}
.y6d_c00397{bottom:818.786250px;}
.y6e_c00397{bottom:819.005595px;}
.y6f_c00397{bottom:819.569280px;}
.y1_c00397{bottom:847.530000px;}
.y59_c00397{bottom:849.690578px;}
.y5a_c00397{bottom:850.050045px;}
.y5b_c00397{bottom:851.029117px;}
.y5c_c00397{bottom:851.308260px;}
.y5d_c00397{bottom:851.563507px;}
.y5e_c00397{bottom:852.468180px;}
.y5f_c00397{bottom:852.724822px;}
.y60_c00397{bottom:852.978030px;}
.y61_c00397{bottom:853.706257px;}
.y62_c00397{bottom:854.409037px;}
.y63_c00397{bottom:854.678235px;}
.y4d_c00397{bottom:883.440637px;}
.y4e_c00397{bottom:883.816755px;}
.y4f_c00397{bottom:884.245680px;}
.y50_c00397{bottom:884.516565px;}
.y51_c00397{bottom:885.415612px;}
.y52_c00397{bottom:885.848835px;}
.y53_c00397{bottom:886.001737px;}
.y54_c00397{bottom:886.477207px;}
.y55_c00397{bottom:886.736647px;}
.y56_c00397{bottom:887.264122px;}
.y57_c00397{bottom:888.183247px;}
.y58_c00397{bottom:888.871687px;}
.y41_c00397{bottom:924.480000px;}
.y42_c00397{bottom:924.844492px;}
.y43_c00397{bottom:925.140142px;}
.y44_c00397{bottom:925.404742px;}
.y45_c00397{bottom:925.584292px;}
.y46_c00397{bottom:926.124285px;}
.y47_c00397{bottom:926.450797px;}
.y48_c00397{bottom:926.567085px;}
.y49_c00397{bottom:926.831685px;}
.y4a_c00397{bottom:927.170527px;}
.y4b_c00397{bottom:927.393172px;}
.y4c_c00397{bottom:927.722902px;}
.y3a_c00397{bottom:957.948822px;}
.y3b_c00397{bottom:958.851462px;}
.y3c_c00397{bottom:960.029964px;}
.y3d_c00397{bottom:960.521718px;}
.y3e_c00397{bottom:961.474608px;}
.y3f_c00397{bottom:961.947252px;}
.y40_c00397{bottom:962.296110px;}
.y2f_c00397{bottom:990.080826px;}
.y30_c00397{bottom:990.787356px;}
.y31_c00397{bottom:991.663602px;}
.y32_c00397{bottom:992.014512px;}
.y33_c00397{bottom:992.667312px;}
.y34_c00397{bottom:993.721260px;}
.y35_c00397{bottom:994.083414px;}
.y36_c00397{bottom:994.967772px;}
.y37_c00397{bottom:995.913960px;}
.y38_c00397{bottom:997.131414px;}
.y39_c00397{bottom:997.496916px;}
.y25_c00397{bottom:1028.420796px;}
.y26_c00397{bottom:1028.903262px;}
.y27_c00397{bottom:1029.167580px;}
.y28_c00397{bottom:1029.725622px;}
.y29_c00397{bottom:1030.366098px;}
.y2a_c00397{bottom:1030.698996px;}
.y2b_c00397{bottom:1031.178612px;}
.y2c_c00397{bottom:1031.702652px;}
.y2d_c00397{bottom:1031.907144px;}
.y2e_c00397{bottom:1032.351390px;}
.y19_c00397{bottom:1064.604468px;}
.y1a_c00397{bottom:1065.235710px;}
.y1b_c00397{bottom:1065.512358px;}
.y1c_c00397{bottom:1065.946152px;}
.y1d_c00397{bottom:1066.300440px;}
.y1e_c00397{bottom:1066.830492px;}
.y1f_c00397{bottom:1067.180286px;}
.y20_c00397{bottom:1067.712630px;}
.y21_c00397{bottom:1067.976018px;}
.y22_c00397{bottom:1068.225948px;}
.y23_c00397{bottom:1068.517848px;}
.y24_c00397{bottom:1068.956748px;}
.ye_c00397{bottom:1101.058890px;}
.yf_c00397{bottom:1102.368696px;}
.y10_c00397{bottom:1102.764438px;}
.y11_c00397{bottom:1103.162370px;}
.y12_c00397{bottom:1103.649966px;}
.y13_c00397{bottom:1103.949432px;}
.y14_c00397{bottom:1104.253368px;}
.y15_c00397{bottom:1105.174386px;}
.y16_c00397{bottom:1105.748826px;}
.y17_c00397{bottom:1106.441586px;}
.y18_c00397{bottom:1106.726274px;}
.y3_c00397{bottom:1136.163000px;}
.y4_c00397{bottom:1136.581248px;}
.y5_c00397{bottom:1137.912528px;}
.y6_c00397{bottom:1138.577106px;}
.y7_c00397{bottom:1139.384460px;}
.y8_c00397{bottom:1139.775816px;}
.y9_c00397{bottom:1140.171726px;}
.ya_c00397{bottom:1141.503276px;}
.yb_c00397{bottom:1142.863986px;}
.yc_c00397{bottom:1143.618510px;}
.yd_c00397{bottom:1144.072434px;}
.y2_c00397{bottom:1203.664500px;}
.h2_c00397{height:18.000000px;}
.h3_c00397{height:60.000000px;}
.h8_c00397{height:84.001050px;}
.h5_c00397{height:96.006912px;}
.h9_c00397{height:102.001275px;}
.hb_c00397{height:108.001350px;}
.h4_c00397{height:108.007776px;}
.ha_c00397{height:114.001425px;}
.h7_c00397{height:114.008208px;}
.h6_c00397{height:126.009072px;}
.hc_c00397{height:150.000000px;}
.h1_c00397{height:1251.000000px;}
.h0_c00397{height:1251.150000px;}
.w0_c00397{width:915.000000px;}
.x0_c00397{left:0.000000px;}
.x1_c00397{left:7.560000px;}
.x2f_c00397{left:63.146538px;}
.x3a_c00397{left:68.131500px;}
.x44_c00397{left:71.164267px;}
.x4c_c00397{left:72.521047px;}
.x26_c00397{left:80.561532px;}
.xf_c00397{left:81.989706px;}
.x4_c00397{left:92.287500px;}
.x1a_c00397{left:93.560262px;}
.x5b_c00397{left:100.327380px;}
.x51_c00397{left:106.546950px;}
.x62_c00397{left:110.433555px;}
.x45_c00397{left:118.187062px;}
.x5_c00397{left:127.141500px;}
.x3b_c00397{left:141.030000px;}
.x27_c00397{left:161.022828px;}
.x5c_c00397{left:162.746258px;}
.x1b_c00397{left:172.417542px;}
.x3c_c00397{left:200.160000px;}
.x28_c00397{left:205.052496px;}
.x1c_c00397{left:206.973198px;}
.x10_c00397{left:227.520444px;}
.x6_c00397{left:238.081500px;}
.x4d_c00397{left:239.726535px;}
.x63_c00397{left:244.895415px;}
.x52_c00397{left:251.850548px;}
.x3d_c00397{left:253.080000px;}
.x1d_c00397{left:261.250308px;}
.x5d_c00397{left:262.372260px;}
.x11_c00397{left:271.500528px;}
.x4e_c00397{left:274.554510px;}
.x3e_c00397{left:288.990000px;}
.x7_c00397{left:293.463000px;}
.x29_c00397{left:297.937674px;}
.x1e_c00397{left:305.526432px;}
.x12_c00397{left:315.788130px;}
.x46_c00397{left:317.955562px;}
.x5e_c00397{left:342.829958px;}
.x8_c00397{left:360.742500px;}
.x13_c00397{left:370.048092px;}
.x1f_c00397{left:371.700600px;}
.x53_c00397{left:384.150900px;}
.x34_c00397{left:386.411610px;}
.x47_c00397{left:391.379467px;}
.x9_c00397{left:393.355500px;}
.x3f_c00397{left:396.988500px;}
.x14_c00397{left:403.254780px;}
.x2a_c00397{left:404.568342px;}
.x5f_c00397{left:409.247790px;}
.x54_c00397{left:411.418853px;}
.x20_c00397{left:415.477206px;}
.x4f_c00397{left:419.536335px;}
.xa_c00397{left:426.348000px;}
.x15_c00397{left:437.084004px;}
.x2_c00397{left:440.100000px;}
.x35_c00397{left:450.880062px;}
.x2b_c00397{left:459.938820px;}
.x40_c00397{left:462.291000px;}
.x3_c00397{left:464.130000px;}
.x55_c00397{left:471.785145px;}
.x60_c00397{left:478.845592px;}
.x21_c00397{left:482.092410px;}
.x48_c00397{left:483.160087px;}
.x41_c00397{left:485.548500px;}
.x56_c00397{left:493.947203px;}
.x30_c00397{left:507.522384px;}
.x22_c00397{left:515.042994px;}
.x64_c00397{left:527.319472px;}
.x36_c00397{left:535.086546px;}
.xb_c00397{left:537.310500px;}
.x16_c00397{left:539.464194px;}
.x23_c00397{left:546.372006px;}
.x49_c00397{left:549.054097px;}
.x37_c00397{left:570.190200px;}
.x50_c00397{left:574.449517px;}
.x24_c00397{left:582.823752px;}
.x57_c00397{left:584.359395px;}
.x31_c00397{left:593.497410px;}
.x17_c00397{left:603.336498px;}
.x42_c00397{left:606.237000px;}
.x65_c00397{left:608.590005px;}
.x58_c00397{left:618.423713px;}
.x2c_c00397{left:627.338880px;}
.x25_c00397{left:637.651380px;}
.x59_c00397{left:642.792225px;}
.xc_c00397{left:650.703000px;}
.x2d_c00397{left:661.382328px;}
.x4a_c00397{left:663.877372px;}
.x38_c00397{left:671.982252px;}
.x18_c00397{left:680.319270px;}
.x39_c00397{left:696.928158px;}
.x32_c00397{left:704.203242px;}
.x5a_c00397{left:705.427973px;}
.x61_c00397{left:709.303290px;}
.x19_c00397{left:711.919404px;}
.xd_c00397{left:713.580000px;}
.x43_c00397{left:716.712000px;}
.x2e_c00397{left:735.408156px;}
.x33_c00397{left:737.412138px;}
.x4b_c00397{left:749.964082px;}
.xe_c00397{left:751.407000px;}
.x66_c00397{left:910.980000px;}
@media print{
.v0_c00397{vertical-align:0.000000pt;}
.ls0_c00397{letter-spacing:0.000000pt;}
.ws0_c00397{word-spacing:0.000000pt;}
._0_c00397{width:2.016444pt;}
.fs0_c00397{font-size:16.000000pt;}
.fs1_c00397{font-size:53.333333pt;}
.fs6_c00397{font-size:74.667600pt;}
.fs3_c00397{font-size:85.339477pt;}
.fs7_c00397{font-size:90.667800pt;}
.fs9_c00397{font-size:96.001200pt;}
.fs2_c00397{font-size:96.006912pt;}
.fs8_c00397{font-size:101.334600pt;}
.fs5_c00397{font-size:101.340629pt;}
.fs4_c00397{font-size:112.008064pt;}
.fsa_c00397{font-size:133.333333pt;}
.y0_c00397{bottom:0.000000pt;}
.y82_c00397{bottom:79.680000pt;}
.y81_c00397{bottom:115.920000pt;}
.y80_c00397{bottom:156.480000pt;}
.y7a_c00397{bottom:630.111213pt;}
.y7b_c00397{bottom:630.111473pt;}
.y7f_c00397{bottom:630.111853pt;}
.y7c_c00397{bottom:630.111867pt;}
.y7e_c00397{bottom:630.111993pt;}
.y7d_c00397{bottom:630.112393pt;}
.y70_c00397{bottom:657.120307pt;}
.y71_c00397{bottom:657.508393pt;}
.y72_c00397{bottom:658.128513pt;}
.y73_c00397{bottom:658.628773pt;}
.y74_c00397{bottom:659.042633pt;}
.y75_c00397{bottom:659.230147pt;}
.y76_c00397{bottom:659.475960pt;}
.y77_c00397{bottom:660.125647pt;}
.y78_c00397{bottom:660.544607pt;}
.y79_c00397{bottom:660.909560pt;}
.y64_c00397{bottom:723.373767pt;}
.y65_c00397{bottom:723.714947pt;}
.y66_c00397{bottom:724.243653pt;}
.y67_c00397{bottom:724.876753pt;}
.y68_c00397{bottom:725.935433pt;}
.y69_c00397{bottom:726.153960pt;}
.y6a_c00397{bottom:726.636927pt;}
.y6b_c00397{bottom:726.814093pt;}
.y6c_c00397{bottom:727.537267pt;}
.y6d_c00397{bottom:727.810000pt;}
.y6e_c00397{bottom:728.004973pt;}
.y6f_c00397{bottom:728.506027pt;}
.y1_c00397{bottom:753.360000pt;}
.y59_c00397{bottom:755.280513pt;}
.y5a_c00397{bottom:755.600040pt;}
.y5b_c00397{bottom:756.470327pt;}
.y5c_c00397{bottom:756.718453pt;}
.y5d_c00397{bottom:756.945340pt;}
.y5e_c00397{bottom:757.749493pt;}
.y5f_c00397{bottom:757.977620pt;}
.y60_c00397{bottom:758.202693pt;}
.y61_c00397{bottom:758.850007pt;}
.y62_c00397{bottom:759.474700pt;}
.y63_c00397{bottom:759.713987pt;}
.y4d_c00397{bottom:785.280567pt;}
.y4e_c00397{bottom:785.614893pt;}
.y4f_c00397{bottom:785.996160pt;}
.y50_c00397{bottom:786.236947pt;}
.y51_c00397{bottom:787.036100pt;}
.y52_c00397{bottom:787.421187pt;}
.y53_c00397{bottom:787.557100pt;}
.y54_c00397{bottom:787.979740pt;}
.y55_c00397{bottom:788.210353pt;}
.y56_c00397{bottom:788.679220pt;}
.y57_c00397{bottom:789.496220pt;}
.y58_c00397{bottom:790.108167pt;}
.y41_c00397{bottom:821.760000pt;}
.y42_c00397{bottom:822.083993pt;}
.y43_c00397{bottom:822.346793pt;}
.y44_c00397{bottom:822.581993pt;}
.y45_c00397{bottom:822.741593pt;}
.y46_c00397{bottom:823.221587pt;}
.y47_c00397{bottom:823.511820pt;}
.y48_c00397{bottom:823.615187pt;}
.y49_c00397{bottom:823.850387pt;}
.y4a_c00397{bottom:824.151580pt;}
.y4b_c00397{bottom:824.349487pt;}
.y4c_c00397{bottom:824.642580pt;}
.y3a_c00397{bottom:851.510064pt;}
.y3b_c00397{bottom:852.312411pt;}
.y3c_c00397{bottom:853.359968pt;}
.y3d_c00397{bottom:853.797083pt;}
.y3e_c00397{bottom:854.644096pt;}
.y3f_c00397{bottom:855.064224pt;}
.y40_c00397{bottom:855.374320pt;}
.y2f_c00397{bottom:880.071845pt;}
.y30_c00397{bottom:880.699872pt;}
.y31_c00397{bottom:881.478757pt;}
.y32_c00397{bottom:881.790677pt;}
.y33_c00397{bottom:882.370944pt;}
.y34_c00397{bottom:883.307787pt;}
.y35_c00397{bottom:883.629701pt;}
.y36_c00397{bottom:884.415797pt;}
.y37_c00397{bottom:885.256853pt;}
.y38_c00397{bottom:886.339035pt;}
.y39_c00397{bottom:886.663925pt;}
.y25_c00397{bottom:914.151819pt;}
.y26_c00397{bottom:914.580677pt;}
.y27_c00397{bottom:914.815627pt;}
.y28_c00397{bottom:915.311664pt;}
.y29_c00397{bottom:915.880976pt;}
.y2a_c00397{bottom:916.176885pt;}
.y2b_c00397{bottom:916.603211pt;}
.y2c_c00397{bottom:917.069024pt;}
.y2d_c00397{bottom:917.250795pt;}
.y2e_c00397{bottom:917.645680pt;}
.y19_c00397{bottom:946.315083pt;}
.y1a_c00397{bottom:946.876187pt;}
.y1b_c00397{bottom:947.122096pt;}
.y1c_c00397{bottom:947.507691pt;}
.y1d_c00397{bottom:947.822613pt;}
.y1e_c00397{bottom:948.293771pt;}
.y1f_c00397{bottom:948.604699pt;}
.y20_c00397{bottom:949.077893pt;}
.y21_c00397{bottom:949.312016pt;}
.y22_c00397{bottom:949.534176pt;}
.y23_c00397{bottom:949.793643pt;}
.y24_c00397{bottom:950.183776pt;}
.ye_c00397{bottom:978.719013pt;}
.yf_c00397{bottom:979.883285pt;}
.y10_c00397{bottom:980.235056pt;}
.y11_c00397{bottom:980.588773pt;}
.y12_c00397{bottom:981.022192pt;}
.y13_c00397{bottom:981.288384pt;}
.y14_c00397{bottom:981.558549pt;}
.y15_c00397{bottom:982.377232pt;}
.y16_c00397{bottom:982.887845pt;}
.y17_c00397{bottom:983.503632pt;}
.y18_c00397{bottom:983.756688pt;}
.y3_c00397{bottom:1009.922667pt;}
.y4_c00397{bottom:1010.294443pt;}
.y5_c00397{bottom:1011.477803pt;}
.y6_c00397{bottom:1012.068539pt;}
.y7_c00397{bottom:1012.786187pt;}
.y8_c00397{bottom:1013.134059pt;}
.y9_c00397{bottom:1013.485979pt;}
.ya_c00397{bottom:1014.669579pt;}
.yb_c00397{bottom:1015.879099pt;}
.yc_c00397{bottom:1016.549787pt;}
.yd_c00397{bottom:1016.953275pt;}
.y2_c00397{bottom:1069.924000pt;}
.h2_c00397{height:16.000000pt;}
.h3_c00397{height:53.333333pt;}
.h8_c00397{height:74.667600pt;}
.h5_c00397{height:85.339477pt;}
.h9_c00397{height:90.667800pt;}
.hb_c00397{height:96.001200pt;}
.h4_c00397{height:96.006912pt;}
.ha_c00397{height:101.334600pt;}
.h7_c00397{height:101.340629pt;}
.h6_c00397{height:112.008064pt;}
.hc_c00397{height:133.333333pt;}
.h1_c00397{height:1112.000000pt;}
.h0_c00397{height:1112.133333pt;}
.w0_c00397{width:813.333333pt;}
.x0_c00397{left:0.000000pt;}
.x1_c00397{left:6.720000pt;}
.x2f_c00397{left:56.130256pt;}
.x3a_c00397{left:60.561333pt;}
.x44_c00397{left:63.257127pt;}
.x4c_c00397{left:64.463153pt;}
.x26_c00397{left:71.610251pt;}
.xf_c00397{left:72.879739pt;}
.x4_c00397{left:82.033333pt;}
.x1a_c00397{left:83.164677pt;}
.x5b_c00397{left:89.179893pt;}
.x51_c00397{left:94.708400pt;}
.x62_c00397{left:98.163160pt;}
.x45_c00397{left:105.055167pt;}
.x5_c00397{left:113.014667pt;}
.x3b_c00397{left:125.360000pt;}
.x27_c00397{left:143.131403pt;}
.x5c_c00397{left:144.663340pt;}
.x1b_c00397{left:153.260037pt;}
.x3c_c00397{left:177.920000pt;}
.x28_c00397{left:182.268885pt;}
.x1c_c00397{left:183.976176pt;}
.x10_c00397{left:202.240395pt;}
.x6_c00397{left:211.628000pt;}
.x4d_c00397{left:213.090253pt;}
.x63_c00397{left:217.684813pt;}
.x52_c00397{left:223.867153pt;}
.x3d_c00397{left:224.960000pt;}
.x1d_c00397{left:232.222496pt;}
.x5d_c00397{left:233.219787pt;}
.x11_c00397{left:241.333803pt;}
.x4e_c00397{left:244.048453pt;}
.x3e_c00397{left:256.880000pt;}
.x7_c00397{left:260.856000pt;}
.x29_c00397{left:264.833488pt;}
.x1e_c00397{left:271.579051pt;}
.x12_c00397{left:280.700560pt;}
.x46_c00397{left:282.627167pt;}
.x5e_c00397{left:304.737740pt;}
.x8_c00397{left:320.660000pt;}
.x13_c00397{left:328.931637pt;}
.x1f_c00397{left:330.400533pt;}
.x53_c00397{left:341.467467pt;}
.x34_c00397{left:343.476987pt;}
.x47_c00397{left:347.892860pt;}
.x9_c00397{left:349.649333pt;}
.x3f_c00397{left:352.878667pt;}
.x14_c00397{left:358.448693pt;}
.x2a_c00397{left:359.616304pt;}
.x5f_c00397{left:363.775813pt;}
.x54_c00397{left:365.705647pt;}
.x20_c00397{left:369.313072pt;}
.x4f_c00397{left:372.921187pt;}
.xa_c00397{left:378.976000pt;}
.x15_c00397{left:388.519115pt;}
.x2_c00397{left:391.200000pt;}
.x35_c00397{left:400.782277pt;}
.x2b_c00397{left:408.834507pt;}
.x40_c00397{left:410.925333pt;}
.x3_c00397{left:412.560000pt;}
.x55_c00397{left:419.364573pt;}
.x60_c00397{left:425.640527pt;}
.x21_c00397{left:428.526587pt;}
.x48_c00397{left:429.475633pt;}
.x41_c00397{left:431.598667pt;}
.x56_c00397{left:439.064180pt;}
.x30_c00397{left:451.131008pt;}
.x22_c00397{left:457.815995pt;}
.x64_c00397{left:468.728420pt;}
.x36_c00397{left:475.632485pt;}
.xb_c00397{left:477.609333pt;}
.x16_c00397{left:479.523728pt;}
.x23_c00397{left:485.664005pt;}
.x49_c00397{left:488.048087pt;}
.x37_c00397{left:506.835733pt;}
.x50_c00397{left:510.621793pt;}
.x24_c00397{left:518.065557pt;}
.x57_c00397{left:519.430573pt;}
.x31_c00397{left:527.553253pt;}
.x17_c00397{left:536.299109pt;}
.x42_c00397{left:538.877333pt;}
.x65_c00397{left:540.968893pt;}
.x58_c00397{left:549.709967pt;}
.x2c_c00397{left:557.634560pt;}
.x25_c00397{left:566.801227pt;}
.x59_c00397{left:571.370867pt;}
.xc_c00397{left:578.402667pt;}
.x2d_c00397{left:587.895403pt;}
.x4a_c00397{left:590.113220pt;}
.x38_c00397{left:597.317557pt;}
.x18_c00397{left:604.728240pt;}
.x39_c00397{left:619.491696pt;}
.x32_c00397{left:625.958437pt;}
.x5a_c00397{left:627.047087pt;}
.x61_c00397{left:630.491813pt;}
.x19_c00397{left:632.817248pt;}
.xd_c00397{left:634.293333pt;}
.x43_c00397{left:637.077333pt;}
.x2e_c00397{left:653.696139pt;}
.x33_c00397{left:655.477456pt;}
.x4b_c00397{left:666.634740pt;}
.xe_c00397{left:667.917333pt;}
.x66_c00397{left:809.760000pt;}
}





/* 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_c00398 {
    display:none;
  }
  .loading-indicator_c00398.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00398 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_c00398 { 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_c00398" -> "#page-container .classname_c00398")
 */
.pf_c00398 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00398 { /* 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_c00398.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00398 { /* 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_c00398 { /* 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_c00398 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00398 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00398 {overflow:visible;}
  }
}
.c_c00398 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00398 { /* 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_c00398:after { /* webkit #35443 */
  content: '';
}
.t_c00398:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00398 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 */
}
.__c00398 { /* 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_c00398 { /* info for Javascript */
  display:none;
}
.l_c00398 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00398 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00398 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00398: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_c00398 {
    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_c00398.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00398.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_c00398 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00398{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00398;src:url('chunks/assets/font_b11a17f404e7258299fdf971.woff2')format("woff");}.ff1_c00398{font-family:ff1_c00398;line-height:1.000000;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;}
.m130_c00398{transform:matrix(0.028122,-0.000422,0.003750,0.249972,0,0);-ms-transform:matrix(0.028122,-0.000422,0.003750,0.249972,0,0);-webkit-transform:matrix(0.028122,-0.000422,0.003750,0.249972,0,0);}
.m1_c00398{transform:matrix(0.125355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125355,0.000000,0.000000,0.250000,0,0);}
.m0_c00398{transform:matrix(0.129245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129245,0.000000,0.000000,0.250000,0,0);}
.m68_c00398{transform:matrix(0.168108,0.001513,-0.002250,0.249990,0,0);-ms-transform:matrix(0.168108,0.001513,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.168108,0.001513,-0.002250,0.249990,0,0);}
.mfb_c00398{transform:matrix(0.172688,0.002763,-0.003999,0.249968,0,0);-ms-transform:matrix(0.172688,0.002763,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.172688,0.002763,-0.003999,0.249968,0,0);}
.mf6_c00398{transform:matrix(0.180862,0.002894,-0.003999,0.249968,0,0);-ms-transform:matrix(0.180862,0.002894,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.180862,0.002894,-0.003999,0.249968,0,0);}
.mf7_c00398{transform:matrix(0.183337,0.002933,-0.003999,0.249968,0,0);-ms-transform:matrix(0.183337,0.002933,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.183337,0.002933,-0.003999,0.249968,0,0);}
.m121_c00398{transform:matrix(0.185169,0.002037,-0.002750,0.249985,0,0);-ms-transform:matrix(0.185169,0.002037,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.185169,0.002037,-0.002750,0.249985,0,0);}
.m12b_c00398{transform:matrix(0.186944,0.002056,-0.002750,0.249985,0,0);-ms-transform:matrix(0.186944,0.002056,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.186944,0.002056,-0.002750,0.249985,0,0);}
.m128_c00398{transform:matrix(0.187819,0.002066,-0.002750,0.249985,0,0);-ms-transform:matrix(0.187819,0.002066,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.187819,0.002066,-0.002750,0.249985,0,0);}
.m7f_c00398{transform:matrix(0.187936,0.002255,-0.003000,0.249982,0,0);-ms-transform:matrix(0.187936,0.002255,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.187936,0.002255,-0.003000,0.249982,0,0);}
.m122_c00398{transform:matrix(0.188564,0.002074,-0.002750,0.249985,0,0);-ms-transform:matrix(0.188564,0.002074,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.188564,0.002074,-0.002750,0.249985,0,0);}
.mde_c00398{transform:matrix(0.192035,0.003073,-0.003999,0.249968,0,0);-ms-transform:matrix(0.192035,0.003073,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.192035,0.003073,-0.003999,0.249968,0,0);}
.m126_c00398{transform:matrix(0.192813,0.002121,-0.002750,0.249985,0,0);-ms-transform:matrix(0.192813,0.002121,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.192813,0.002121,-0.002750,0.249985,0,0);}
.m123_c00398{transform:matrix(0.194528,0.002140,-0.002750,0.249985,0,0);-ms-transform:matrix(0.194528,0.002140,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.194528,0.002140,-0.002750,0.249985,0,0);}
.mf4_c00398{transform:matrix(0.195790,0.003133,-0.003999,0.249968,0,0);-ms-transform:matrix(0.195790,0.003133,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.195790,0.003133,-0.003999,0.249968,0,0);}
.mfa_c00398{transform:matrix(0.196940,0.003151,-0.003999,0.249968,0,0);-ms-transform:matrix(0.196940,0.003151,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.196940,0.003151,-0.003999,0.249968,0,0);}
.me5_c00398{transform:matrix(0.197410,0.003159,-0.003999,0.249968,0,0);-ms-transform:matrix(0.197410,0.003159,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.197410,0.003159,-0.003999,0.249968,0,0);}
.mf5_c00398{transform:matrix(0.197875,0.003166,-0.003999,0.249968,0,0);-ms-transform:matrix(0.197875,0.003166,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.197875,0.003166,-0.003999,0.249968,0,0);}
.mae_c00398{transform:matrix(0.197888,0.002968,-0.003750,0.249972,0,0);-ms-transform:matrix(0.197888,0.002968,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.197888,0.002968,-0.003750,0.249972,0,0);}
.m129_c00398{transform:matrix(0.199128,0.002190,-0.002750,0.249985,0,0);-ms-transform:matrix(0.199128,0.002190,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.199128,0.002190,-0.002750,0.249985,0,0);}
.m85_c00398{transform:matrix(0.199316,0.002392,-0.003000,0.249982,0,0);-ms-transform:matrix(0.199316,0.002392,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.199316,0.002392,-0.003000,0.249982,0,0);}
.m12c_c00398{transform:matrix(0.200618,0.002207,-0.002750,0.249985,0,0);-ms-transform:matrix(0.200618,0.002207,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.200618,0.002207,-0.002750,0.249985,0,0);}
.mbb_c00398{transform:matrix(0.200687,0.003010,-0.003750,0.249972,0,0);-ms-transform:matrix(0.200687,0.003010,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.200687,0.003010,-0.003750,0.249972,0,0);}
.mb0_c00398{transform:matrix(0.200857,0.003013,-0.003750,0.249972,0,0);-ms-transform:matrix(0.200857,0.003013,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.200857,0.003013,-0.003750,0.249972,0,0);}
.ma6_c00398{transform:matrix(0.201282,0.003019,-0.003750,0.249972,0,0);-ms-transform:matrix(0.201282,0.003019,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.201282,0.003019,-0.003750,0.249972,0,0);}
.mac_c00398{transform:matrix(0.202202,0.003033,-0.003750,0.249972,0,0);-ms-transform:matrix(0.202202,0.003033,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.202202,0.003033,-0.003750,0.249972,0,0);}
.m12e_c00398{transform:matrix(0.202298,0.002225,-0.002750,0.249985,0,0);-ms-transform:matrix(0.202298,0.002225,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.202298,0.002225,-0.002750,0.249985,0,0);}
.m1e_c00398{transform:matrix(0.205492,0.001849,-0.002250,0.249990,0,0);-ms-transform:matrix(0.205492,0.001849,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.205492,0.001849,-0.002250,0.249990,0,0);}
.mc0_c00398{transform:matrix(0.205642,0.003085,-0.003750,0.249972,0,0);-ms-transform:matrix(0.205642,0.003085,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.205642,0.003085,-0.003750,0.249972,0,0);}
.m12a_c00398{transform:matrix(0.207147,0.002279,-0.002750,0.249985,0,0);-ms-transform:matrix(0.207147,0.002279,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.207147,0.002279,-0.002750,0.249985,0,0);}
.m124_c00398{transform:matrix(0.207557,0.002283,-0.002750,0.249985,0,0);-ms-transform:matrix(0.207557,0.002283,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.207557,0.002283,-0.002750,0.249985,0,0);}
.m1a_c00398{transform:matrix(0.208007,0.001872,-0.002250,0.249990,0,0);-ms-transform:matrix(0.208007,0.001872,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.208007,0.001872,-0.002250,0.249990,0,0);}
.mf8_c00398{transform:matrix(0.208558,0.003337,-0.003999,0.249968,0,0);-ms-transform:matrix(0.208558,0.003337,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.208558,0.003337,-0.003999,0.249968,0,0);}
.m10d_c00398{transform:matrix(0.208688,0.003339,-0.003999,0.249968,0,0);-ms-transform:matrix(0.208688,0.003339,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.208688,0.003339,-0.003999,0.249968,0,0);}
.m5c_c00398{transform:matrix(0.209497,0.001885,-0.002250,0.249990,0,0);-ms-transform:matrix(0.209497,0.001885,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.209497,0.001885,-0.002250,0.249990,0,0);}
.m7e_c00398{transform:matrix(0.209535,0.002514,-0.003000,0.249982,0,0);-ms-transform:matrix(0.209535,0.002514,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.209535,0.002514,-0.003000,0.249982,0,0);}
.mc2_c00398{transform:matrix(0.210026,0.003150,-0.003750,0.249972,0,0);-ms-transform:matrix(0.210026,0.003150,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.210026,0.003150,-0.003750,0.249972,0,0);}
.me4_c00398{transform:matrix(0.210388,0.003366,-0.003999,0.249968,0,0);-ms-transform:matrix(0.210388,0.003366,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.210388,0.003366,-0.003999,0.249968,0,0);}
.mad_c00398{transform:matrix(0.210991,0.003165,-0.003750,0.249972,0,0);-ms-transform:matrix(0.210991,0.003165,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.210991,0.003165,-0.003750,0.249972,0,0);}
.me2_c00398{transform:matrix(0.210998,0.003376,-0.003999,0.249968,0,0);-ms-transform:matrix(0.210998,0.003376,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.210998,0.003376,-0.003999,0.249968,0,0);}
.mfd_c00398{transform:matrix(0.212003,0.003392,-0.003999,0.249968,0,0);-ms-transform:matrix(0.212003,0.003392,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.212003,0.003392,-0.003999,0.249968,0,0);}
.md_c00398{transform:matrix(0.212121,0.001909,-0.002250,0.249990,0,0);-ms-transform:matrix(0.212121,0.001909,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.212121,0.001909,-0.002250,0.249990,0,0);}
.m2d_c00398{transform:matrix(0.212191,0.001910,-0.002250,0.249990,0,0);-ms-transform:matrix(0.212191,0.001910,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.212191,0.001910,-0.002250,0.249990,0,0);}
.m55_c00398{transform:matrix(0.212501,0.001913,-0.002250,0.249990,0,0);-ms-transform:matrix(0.212501,0.001913,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.212501,0.001913,-0.002250,0.249990,0,0);}
.m46_c00398{transform:matrix(0.212611,0.001914,-0.002250,0.249990,0,0);-ms-transform:matrix(0.212611,0.001914,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.212611,0.001914,-0.002250,0.249990,0,0);}
.m110_c00398{transform:matrix(0.213498,0.003416,-0.003999,0.249968,0,0);-ms-transform:matrix(0.213498,0.003416,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.213498,0.003416,-0.003999,0.249968,0,0);}
.m1c_c00398{transform:matrix(0.213626,0.001923,-0.002250,0.249990,0,0);-ms-transform:matrix(0.213626,0.001923,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.213626,0.001923,-0.002250,0.249990,0,0);}
.maa_c00398{transform:matrix(0.214181,0.003213,-0.003750,0.249972,0,0);-ms-transform:matrix(0.214181,0.003213,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.214181,0.003213,-0.003750,0.249972,0,0);}
.m43_c00398{transform:matrix(0.214406,0.001930,-0.002250,0.249990,0,0);-ms-transform:matrix(0.214406,0.001930,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.214406,0.001930,-0.002250,0.249990,0,0);}
.me9_c00398{transform:matrix(0.214658,0.003435,-0.003999,0.249968,0,0);-ms-transform:matrix(0.214658,0.003435,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.214658,0.003435,-0.003999,0.249968,0,0);}
.m5f_c00398{transform:matrix(0.214691,0.001932,-0.002250,0.249990,0,0);-ms-transform:matrix(0.214691,0.001932,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.214691,0.001932,-0.002250,0.249990,0,0);}
.m127_c00398{transform:matrix(0.214692,0.002362,-0.002750,0.249985,0,0);-ms-transform:matrix(0.214692,0.002362,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.214692,0.002362,-0.002750,0.249985,0,0);}
.m4b_c00398{transform:matrix(0.214791,0.001933,-0.002250,0.249990,0,0);-ms-transform:matrix(0.214791,0.001933,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.214791,0.001933,-0.002250,0.249990,0,0);}
.m12d_c00398{transform:matrix(0.215612,0.002372,-0.002750,0.249985,0,0);-ms-transform:matrix(0.215612,0.002372,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.215612,0.002372,-0.002750,0.249985,0,0);}
.mea_c00398{transform:matrix(0.216697,0.003467,-0.003999,0.249968,0,0);-ms-transform:matrix(0.216697,0.003467,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.216697,0.003467,-0.003999,0.249968,0,0);}
.m125_c00398{transform:matrix(0.216802,0.002385,-0.002750,0.249985,0,0);-ms-transform:matrix(0.216802,0.002385,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.216802,0.002385,-0.002750,0.249985,0,0);}
.mbe_c00398{transform:matrix(0.217746,0.003266,-0.003750,0.249972,0,0);-ms-transform:matrix(0.217746,0.003266,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.217746,0.003266,-0.003750,0.249972,0,0);}
.me1_c00398{transform:matrix(0.217982,0.003488,-0.003999,0.249968,0,0);-ms-transform:matrix(0.217982,0.003488,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.217982,0.003488,-0.003999,0.249968,0,0);}
.mc3_c00398{transform:matrix(0.218970,0.003285,-0.003750,0.249972,0,0);-ms-transform:matrix(0.218970,0.003285,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.218970,0.003285,-0.003750,0.249972,0,0);}
.ma7_c00398{transform:matrix(0.219305,0.003290,-0.003750,0.249972,0,0);-ms-transform:matrix(0.219305,0.003290,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.219305,0.003290,-0.003750,0.249972,0,0);}
.m3e_c00398{transform:matrix(0.220011,0.001980,-0.002250,0.249990,0,0);-ms-transform:matrix(0.220011,0.001980,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.220011,0.001980,-0.002250,0.249990,0,0);}
.m3d_c00398{transform:matrix(0.221446,0.001993,-0.002250,0.249990,0,0);-ms-transform:matrix(0.221446,0.001993,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.221446,0.001993,-0.002250,0.249990,0,0);}
.mdf_c00398{transform:matrix(0.221792,0.003549,-0.003999,0.249968,0,0);-ms-transform:matrix(0.221792,0.003549,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.221792,0.003549,-0.003999,0.249968,0,0);}
.m57_c00398{transform:matrix(0.222116,0.001999,-0.002250,0.249990,0,0);-ms-transform:matrix(0.222116,0.001999,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.222116,0.001999,-0.002250,0.249990,0,0);}
.m84_c00398{transform:matrix(0.222164,0.002666,-0.003000,0.249982,0,0);-ms-transform:matrix(0.222164,0.002666,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.222164,0.002666,-0.003000,0.249982,0,0);}
.mfc_c00398{transform:matrix(0.222642,0.003562,-0.003999,0.249968,0,0);-ms-transform:matrix(0.222642,0.003562,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.222642,0.003562,-0.003999,0.249968,0,0);}
.mf9_c00398{transform:matrix(0.222966,0.003567,-0.003999,0.249968,0,0);-ms-transform:matrix(0.222966,0.003567,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.222966,0.003567,-0.003999,0.249968,0,0);}
.m47_c00398{transform:matrix(0.224061,0.002017,-0.002250,0.249990,0,0);-ms-transform:matrix(0.224061,0.002017,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.224061,0.002017,-0.002250,0.249990,0,0);}
.mcd_c00398{transform:matrix(0.225320,0.003380,-0.003750,0.249972,0,0);-ms-transform:matrix(0.225320,0.003380,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.225320,0.003380,-0.003750,0.249972,0,0);}
.m8_c00398{transform:matrix(0.225336,0.002028,-0.002250,0.249990,0,0);-ms-transform:matrix(0.225336,0.002028,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.225336,0.002028,-0.002250,0.249990,0,0);}
.m82_c00398{transform:matrix(0.225634,0.002708,-0.003000,0.249982,0,0);-ms-transform:matrix(0.225634,0.002708,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.225634,0.002708,-0.003000,0.249982,0,0);}
.m8b_c00398{transform:matrix(0.225829,0.002710,-0.003000,0.249982,0,0);-ms-transform:matrix(0.225829,0.002710,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.225829,0.002710,-0.003000,0.249982,0,0);}
.m65_c00398{transform:matrix(0.226006,0.002034,-0.002250,0.249990,0,0);-ms-transform:matrix(0.226006,0.002034,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.226006,0.002034,-0.002250,0.249990,0,0);}
.ma8_c00398{transform:matrix(0.226789,0.003402,-0.003750,0.249972,0,0);-ms-transform:matrix(0.226789,0.003402,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.226789,0.003402,-0.003750,0.249972,0,0);}
.mee_c00398{transform:matrix(0.226936,0.003631,-0.003999,0.249968,0,0);-ms-transform:matrix(0.226936,0.003631,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.226936,0.003631,-0.003999,0.249968,0,0);}
.m3f_c00398{transform:matrix(0.227256,0.002045,-0.002250,0.249990,0,0);-ms-transform:matrix(0.227256,0.002045,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.227256,0.002045,-0.002250,0.249990,0,0);}
.mfe_c00398{transform:matrix(0.227356,0.003638,-0.003999,0.249968,0,0);-ms-transform:matrix(0.227356,0.003638,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.227356,0.003638,-0.003999,0.249968,0,0);}
.m7d_c00398{transform:matrix(0.227504,0.002730,-0.003000,0.249982,0,0);-ms-transform:matrix(0.227504,0.002730,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.227504,0.002730,-0.003000,0.249982,0,0);}
.me0_c00398{transform:matrix(0.227616,0.003642,-0.003999,0.249968,0,0);-ms-transform:matrix(0.227616,0.003642,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.227616,0.003642,-0.003999,0.249968,0,0);}
.maf_c00398{transform:matrix(0.227664,0.003415,-0.003750,0.249972,0,0);-ms-transform:matrix(0.227664,0.003415,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.227664,0.003415,-0.003750,0.249972,0,0);}
.m4_c00398{transform:matrix(0.227871,0.002051,-0.002250,0.249990,0,0);-ms-transform:matrix(0.227871,0.002051,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.227871,0.002051,-0.002250,0.249990,0,0);}
.mab_c00398{transform:matrix(0.228394,0.003426,-0.003750,0.249972,0,0);-ms-transform:matrix(0.228394,0.003426,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.228394,0.003426,-0.003750,0.249972,0,0);}
.me6_c00398{transform:matrix(0.228416,0.003655,-0.003999,0.249968,0,0);-ms-transform:matrix(0.228416,0.003655,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.228416,0.003655,-0.003999,0.249968,0,0);}
.m83_c00398{transform:matrix(0.228659,0.002744,-0.003000,0.249982,0,0);-ms-transform:matrix(0.228659,0.002744,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.228659,0.002744,-0.003000,0.249982,0,0);}
.m23_c00398{transform:matrix(0.229146,0.002062,-0.002250,0.249990,0,0);-ms-transform:matrix(0.229146,0.002062,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.229146,0.002062,-0.002250,0.249990,0,0);}
.m91_c00398{transform:matrix(0.229178,0.002750,-0.003000,0.249982,0,0);-ms-transform:matrix(0.229178,0.002750,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.229178,0.002750,-0.003000,0.249982,0,0);}
.m63_c00398{transform:matrix(0.229321,0.002064,-0.002250,0.249990,0,0);-ms-transform:matrix(0.229321,0.002064,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.229321,0.002064,-0.002250,0.249990,0,0);}
.m61_c00398{transform:matrix(0.229426,0.002065,-0.002250,0.249990,0,0);-ms-transform:matrix(0.229426,0.002065,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.229426,0.002065,-0.002250,0.249990,0,0);}
.m101_c00398{transform:matrix(0.229561,0.003673,-0.003999,0.249968,0,0);-ms-transform:matrix(0.229561,0.003673,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.229561,0.003673,-0.003999,0.249968,0,0);}
.m9d_c00398{transform:matrix(0.230189,0.003453,-0.003750,0.249972,0,0);-ms-transform:matrix(0.230189,0.003453,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.230189,0.003453,-0.003750,0.249972,0,0);}
.m2f_c00398{transform:matrix(0.230206,0.002072,-0.002250,0.249990,0,0);-ms-transform:matrix(0.230206,0.002072,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.230206,0.002072,-0.002250,0.249990,0,0);}
.m6f_c00398{transform:matrix(0.230308,0.002764,-0.003000,0.249982,0,0);-ms-transform:matrix(0.230308,0.002764,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.230308,0.002764,-0.003000,0.249982,0,0);}
.m50_c00398{transform:matrix(0.230331,0.002073,-0.002250,0.249990,0,0);-ms-transform:matrix(0.230331,0.002073,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.230331,0.002073,-0.002250,0.249990,0,0);}
.ma9_c00398{transform:matrix(0.230699,0.003460,-0.003750,0.249972,0,0);-ms-transform:matrix(0.230699,0.003460,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.230699,0.003460,-0.003750,0.249972,0,0);}
.m3_c00398{transform:matrix(0.231426,0.002083,-0.002250,0.249990,0,0);-ms-transform:matrix(0.231426,0.002083,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.231426,0.002083,-0.002250,0.249990,0,0);}
.m9e_c00398{transform:matrix(0.231449,0.003472,-0.003750,0.249972,0,0);-ms-transform:matrix(0.231449,0.003472,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.231449,0.003472,-0.003750,0.249972,0,0);}
.m60_c00398{transform:matrix(0.231696,0.002085,-0.002250,0.249990,0,0);-ms-transform:matrix(0.231696,0.002085,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.231696,0.002085,-0.002250,0.249990,0,0);}
.m40_c00398{transform:matrix(0.231796,0.002086,-0.002250,0.249990,0,0);-ms-transform:matrix(0.231796,0.002086,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.231796,0.002086,-0.002250,0.249990,0,0);}
.m37_c00398{transform:matrix(0.231811,0.002086,-0.002250,0.249990,0,0);-ms-transform:matrix(0.231811,0.002086,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.231811,0.002086,-0.002250,0.249990,0,0);}
.mcc_c00398{transform:matrix(0.231814,0.003477,-0.003750,0.249972,0,0);-ms-transform:matrix(0.231814,0.003477,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.231814,0.003477,-0.003750,0.249972,0,0);}
.m48_c00398{transform:matrix(0.232056,0.002089,-0.002250,0.249990,0,0);-ms-transform:matrix(0.232056,0.002089,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.232056,0.002089,-0.002250,0.249990,0,0);}
.m7c_c00398{transform:matrix(0.232078,0.002785,-0.003000,0.249982,0,0);-ms-transform:matrix(0.232078,0.002785,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.232078,0.002785,-0.003000,0.249982,0,0);}
.m19_c00398{transform:matrix(0.232096,0.002089,-0.002250,0.249990,0,0);-ms-transform:matrix(0.232096,0.002089,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.232096,0.002089,-0.002250,0.249990,0,0);}
.mdc_c00398{transform:matrix(0.232255,0.003716,-0.003999,0.249968,0,0);-ms-transform:matrix(0.232255,0.003716,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.232255,0.003716,-0.003999,0.249968,0,0);}
.m86_c00398{transform:matrix(0.232438,0.002789,-0.003000,0.249982,0,0);-ms-transform:matrix(0.232438,0.002789,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.232438,0.002789,-0.003000,0.249982,0,0);}
.m26_c00398{transform:matrix(0.232546,0.002093,-0.002250,0.249990,0,0);-ms-transform:matrix(0.232546,0.002093,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.232546,0.002093,-0.002250,0.249990,0,0);}
.me7_c00398{transform:matrix(0.232560,0.003721,-0.003999,0.249968,0,0);-ms-transform:matrix(0.232560,0.003721,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.232560,0.003721,-0.003999,0.249968,0,0);}
.me8_c00398{transform:matrix(0.232985,0.003728,-0.003999,0.249968,0,0);-ms-transform:matrix(0.232985,0.003728,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.232985,0.003728,-0.003999,0.249968,0,0);}
.m54_c00398{transform:matrix(0.233561,0.002102,-0.002250,0.249990,0,0);-ms-transform:matrix(0.233561,0.002102,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.233561,0.002102,-0.002250,0.249990,0,0);}
.m105_c00398{transform:matrix(0.233650,0.003738,-0.003999,0.249968,0,0);-ms-transform:matrix(0.233650,0.003738,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.233650,0.003738,-0.003999,0.249968,0,0);}
.m11f_c00398{transform:matrix(0.233665,0.003739,-0.003999,0.249968,0,0);-ms-transform:matrix(0.233665,0.003739,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.233665,0.003739,-0.003999,0.249968,0,0);}
.mb5_c00398{transform:matrix(0.234199,0.003513,-0.003750,0.249972,0,0);-ms-transform:matrix(0.234199,0.003513,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.234199,0.003513,-0.003750,0.249972,0,0);}
.m1f_c00398{transform:matrix(0.234975,0.002115,-0.002250,0.249990,0,0);-ms-transform:matrix(0.234975,0.002115,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.234975,0.002115,-0.002250,0.249990,0,0);}
.m10a_c00398{transform:matrix(0.235090,0.003761,-0.003999,0.249968,0,0);-ms-transform:matrix(0.235090,0.003761,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.235090,0.003761,-0.003999,0.249968,0,0);}
.m11d_c00398{transform:matrix(0.235450,0.003767,-0.003999,0.249968,0,0);-ms-transform:matrix(0.235450,0.003767,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.235450,0.003767,-0.003999,0.249968,0,0);}
.md8_c00398{transform:matrix(0.235900,0.003774,-0.003999,0.249968,0,0);-ms-transform:matrix(0.235900,0.003774,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.235900,0.003774,-0.003999,0.249968,0,0);}
.mc5_c00398{transform:matrix(0.235978,0.003540,-0.003750,0.249972,0,0);-ms-transform:matrix(0.235978,0.003540,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.235978,0.003540,-0.003750,0.249972,0,0);}
.m113_c00398{transform:matrix(0.236450,0.003783,-0.003999,0.249968,0,0);-ms-transform:matrix(0.236450,0.003783,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.236450,0.003783,-0.003999,0.249968,0,0);}
.mda_c00398{transform:matrix(0.236995,0.003792,-0.003999,0.249968,0,0);-ms-transform:matrix(0.236995,0.003792,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.236995,0.003792,-0.003999,0.249968,0,0);}
.ma5_c00398{transform:matrix(0.238038,0.003571,-0.003750,0.249972,0,0);-ms-transform:matrix(0.238038,0.003571,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.238038,0.003571,-0.003750,0.249972,0,0);}
.m5b_c00398{transform:matrix(0.238430,0.002146,-0.002250,0.249990,0,0);-ms-transform:matrix(0.238430,0.002146,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.238430,0.002146,-0.002250,0.249990,0,0);}
.m2a_c00398{transform:matrix(0.238845,0.002150,-0.002250,0.249990,0,0);-ms-transform:matrix(0.238845,0.002150,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.238845,0.002150,-0.002250,0.249990,0,0);}
.m10f_c00398{transform:matrix(0.239029,0.003824,-0.003999,0.249968,0,0);-ms-transform:matrix(0.239029,0.003824,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.239029,0.003824,-0.003999,0.249968,0,0);}
.m1d_c00398{transform:matrix(0.239530,0.002156,-0.002250,0.249990,0,0);-ms-transform:matrix(0.239530,0.002156,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.239530,0.002156,-0.002250,0.249990,0,0);}
.me3_c00398{transform:matrix(0.239804,0.003837,-0.003999,0.249968,0,0);-ms-transform:matrix(0.239804,0.003837,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.239804,0.003837,-0.003999,0.249968,0,0);}
.m107_c00398{transform:matrix(0.240264,0.003844,-0.003999,0.249968,0,0);-ms-transform:matrix(0.240264,0.003844,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.240264,0.003844,-0.003999,0.249968,0,0);}
.mb8_c00398{transform:matrix(0.240568,0.003609,-0.003750,0.249972,0,0);-ms-transform:matrix(0.240568,0.003609,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.240568,0.003609,-0.003750,0.249972,0,0);}
.ma_c00398{transform:matrix(0.240585,0.002165,-0.002250,0.249990,0,0);-ms-transform:matrix(0.240585,0.002165,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.240585,0.002165,-0.002250,0.249990,0,0);}
.m115_c00398{transform:matrix(0.240639,0.003850,-0.003999,0.249968,0,0);-ms-transform:matrix(0.240639,0.003850,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.240639,0.003850,-0.003999,0.249968,0,0);}
.m58_c00398{transform:matrix(0.240665,0.002166,-0.002250,0.249990,0,0);-ms-transform:matrix(0.240665,0.002166,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.240665,0.002166,-0.002250,0.249990,0,0);}
.mc1_c00398{transform:matrix(0.240703,0.003611,-0.003750,0.249972,0,0);-ms-transform:matrix(0.240703,0.003611,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.240703,0.003611,-0.003750,0.249972,0,0);}
.m10e_c00398{transform:matrix(0.240724,0.003852,-0.003999,0.249968,0,0);-ms-transform:matrix(0.240724,0.003852,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.240724,0.003852,-0.003999,0.249968,0,0);}
.m81_c00398{transform:matrix(0.240843,0.002890,-0.003000,0.249982,0,0);-ms-transform:matrix(0.240843,0.002890,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.240843,0.002890,-0.003000,0.249982,0,0);}
.m44_c00398{transform:matrix(0.240925,0.002168,-0.002250,0.249990,0,0);-ms-transform:matrix(0.240925,0.002168,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.240925,0.002168,-0.002250,0.249990,0,0);}
.m67_c00398{transform:matrix(0.241570,0.002174,-0.002250,0.249990,0,0);-ms-transform:matrix(0.241570,0.002174,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.241570,0.002174,-0.002250,0.249990,0,0);}
.m20_c00398{transform:matrix(0.241690,0.002175,-0.002250,0.249990,0,0);-ms-transform:matrix(0.241690,0.002175,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.241690,0.002175,-0.002250,0.249990,0,0);}
.m4a_c00398{transform:matrix(0.242010,0.002178,-0.002250,0.249990,0,0);-ms-transform:matrix(0.242010,0.002178,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.242010,0.002178,-0.002250,0.249990,0,0);}
.meb_c00398{transform:matrix(0.242514,0.003880,-0.003999,0.249968,0,0);-ms-transform:matrix(0.242514,0.003880,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.242514,0.003880,-0.003999,0.249968,0,0);}
.m4c_c00398{transform:matrix(0.242535,0.002183,-0.002250,0.249990,0,0);-ms-transform:matrix(0.242535,0.002183,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.242535,0.002183,-0.002250,0.249990,0,0);}
.m8e_c00398{transform:matrix(0.242728,0.002913,-0.003000,0.249982,0,0);-ms-transform:matrix(0.242728,0.002913,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.242728,0.002913,-0.003000,0.249982,0,0);}
.mff_c00398{transform:matrix(0.242969,0.003888,-0.003999,0.249968,0,0);-ms-transform:matrix(0.242969,0.003888,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.242969,0.003888,-0.003999,0.249968,0,0);}
.m21_c00398{transform:matrix(0.243190,0.002189,-0.002250,0.249990,0,0);-ms-transform:matrix(0.243190,0.002189,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.243190,0.002189,-0.002250,0.249990,0,0);}
.m88_c00398{transform:matrix(0.243477,0.002922,-0.003000,0.249982,0,0);-ms-transform:matrix(0.243477,0.002922,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.243477,0.002922,-0.003000,0.249982,0,0);}
.md3_c00398{transform:matrix(0.243994,0.003904,-0.003999,0.249968,0,0);-ms-transform:matrix(0.243994,0.003904,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.243994,0.003904,-0.003999,0.249968,0,0);}
.m28_c00398{transform:matrix(0.244085,0.002197,-0.002250,0.249990,0,0);-ms-transform:matrix(0.244085,0.002197,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.244085,0.002197,-0.002250,0.249990,0,0);}
.m22_c00398{transform:matrix(0.244390,0.002200,-0.002250,0.249990,0,0);-ms-transform:matrix(0.244390,0.002200,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.244390,0.002200,-0.002250,0.249990,0,0);}
.m79_c00398{transform:matrix(0.244917,0.002939,-0.003000,0.249982,0,0);-ms-transform:matrix(0.244917,0.002939,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.244917,0.002939,-0.003000,0.249982,0,0);}
.m53_c00398{transform:matrix(0.245150,0.002206,-0.002250,0.249990,0,0);-ms-transform:matrix(0.245150,0.002206,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.245150,0.002206,-0.002250,0.249990,0,0);}
.m29_c00398{transform:matrix(0.245205,0.002207,-0.002250,0.249990,0,0);-ms-transform:matrix(0.245205,0.002207,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.245205,0.002207,-0.002250,0.249990,0,0);}
.mdb_c00398{transform:matrix(0.245429,0.003927,-0.003999,0.249968,0,0);-ms-transform:matrix(0.245429,0.003927,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.245429,0.003927,-0.003999,0.249968,0,0);}
.m7b_c00398{transform:matrix(0.245952,0.002951,-0.003000,0.249982,0,0);-ms-transform:matrix(0.245952,0.002951,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.245952,0.002951,-0.003000,0.249982,0,0);}
.m59_c00398{transform:matrix(0.246010,0.002214,-0.002250,0.249990,0,0);-ms-transform:matrix(0.246010,0.002214,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.246010,0.002214,-0.002250,0.249990,0,0);}
.mb6_c00398{transform:matrix(0.246177,0.003693,-0.003750,0.249972,0,0);-ms-transform:matrix(0.246177,0.003693,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.246177,0.003693,-0.003750,0.249972,0,0);}
.m42_c00398{transform:matrix(0.246400,0.002218,-0.002250,0.249990,0,0);-ms-transform:matrix(0.246400,0.002218,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.246400,0.002218,-0.002250,0.249990,0,0);}
.m106_c00398{transform:matrix(0.246813,0.003949,-0.003999,0.249968,0,0);-ms-transform:matrix(0.246813,0.003949,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.246813,0.003949,-0.003999,0.249968,0,0);}
.m10c_c00398{transform:matrix(0.247098,0.003954,-0.003999,0.249968,0,0);-ms-transform:matrix(0.247098,0.003954,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.247098,0.003954,-0.003999,0.249968,0,0);}
.mce_c00398{transform:matrix(0.247477,0.003712,-0.003750,0.249972,0,0);-ms-transform:matrix(0.247477,0.003712,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.247477,0.003712,-0.003750,0.249972,0,0);}
.m9b_c00398{transform:matrix(0.247522,0.003713,-0.003750,0.249972,0,0);-ms-transform:matrix(0.247522,0.003713,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.247522,0.003713,-0.003750,0.249972,0,0);}
.m116_c00398{transform:matrix(0.247723,0.003964,-0.003999,0.249968,0,0);-ms-transform:matrix(0.247723,0.003964,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.247723,0.003964,-0.003999,0.249968,0,0);}
.m45_c00398{transform:matrix(0.248045,0.002232,-0.002250,0.249990,0,0);-ms-transform:matrix(0.248045,0.002232,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.248045,0.002232,-0.002250,0.249990,0,0);}
.m102_c00398{transform:matrix(0.248048,0.003969,-0.003999,0.249968,0,0);-ms-transform:matrix(0.248048,0.003969,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.248048,0.003969,-0.003999,0.249968,0,0);}
.m1b_c00398{transform:matrix(0.248210,0.002234,-0.002250,0.249990,0,0);-ms-transform:matrix(0.248210,0.002234,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.248210,0.002234,-0.002250,0.249990,0,0);}
.mc6_c00398{transform:matrix(0.248222,0.003723,-0.003750,0.249972,0,0);-ms-transform:matrix(0.248222,0.003723,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.248222,0.003723,-0.003750,0.249972,0,0);}
.m7a_c00398{transform:matrix(0.248287,0.002979,-0.003000,0.249982,0,0);-ms-transform:matrix(0.248287,0.002979,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.248287,0.002979,-0.003000,0.249982,0,0);}
.m118_c00398{transform:matrix(0.248983,0.003984,-0.003999,0.249968,0,0);-ms-transform:matrix(0.248983,0.003984,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.248983,0.003984,-0.003999,0.249968,0,0);}
.m112_c00398{transform:matrix(0.248988,0.003984,-0.003999,0.249968,0,0);-ms-transform:matrix(0.248988,0.003984,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.248988,0.003984,-0.003999,0.249968,0,0);}
.md4_c00398{transform:matrix(0.249008,0.003984,-0.003999,0.249968,0,0);-ms-transform:matrix(0.249008,0.003984,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.249008,0.003984,-0.003999,0.249968,0,0);}
.m69_c00398{transform:matrix(0.249092,0.002989,-0.003000,0.249982,0,0);-ms-transform:matrix(0.249092,0.002989,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.249092,0.002989,-0.003000,0.249982,0,0);}
.mb_c00398{transform:matrix(0.249395,0.002245,-0.002250,0.249990,0,0);-ms-transform:matrix(0.249395,0.002245,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.249395,0.002245,-0.002250,0.249990,0,0);}
.m66_c00398{transform:matrix(0.249430,0.002245,-0.002250,0.249990,0,0);-ms-transform:matrix(0.249430,0.002245,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.249430,0.002245,-0.002250,0.249990,0,0);}
.m41_c00398{transform:matrix(0.249845,0.002249,-0.002250,0.249990,0,0);-ms-transform:matrix(0.249845,0.002249,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.249845,0.002249,-0.002250,0.249990,0,0);}
.mc4_c00398{transform:matrix(0.249922,0.003749,-0.003750,0.249972,0,0);-ms-transform:matrix(0.249922,0.003749,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.249922,0.003749,-0.003750,0.249972,0,0);}
.md7_c00398{transform:matrix(0.249928,0.003999,-0.003999,0.249968,0,0);-ms-transform:matrix(0.249928,0.003999,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.249928,0.003999,-0.003999,0.249968,0,0);}
.m11b_c00398{transform:matrix(0.250358,0.004006,-0.003999,0.249968,0,0);-ms-transform:matrix(0.250358,0.004006,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.250358,0.004006,-0.003999,0.249968,0,0);}
.m56_c00398{transform:matrix(0.250395,0.002254,-0.002250,0.249990,0,0);-ms-transform:matrix(0.250395,0.002254,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.250395,0.002254,-0.002250,0.249990,0,0);}
.mec_c00398{transform:matrix(0.250698,0.004011,-0.003999,0.249968,0,0);-ms-transform:matrix(0.250698,0.004011,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.250698,0.004011,-0.003999,0.249968,0,0);}
.md0_c00398{transform:matrix(0.250902,0.003764,-0.003750,0.249972,0,0);-ms-transform:matrix(0.250902,0.003764,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.250902,0.003764,-0.003750,0.249972,0,0);}
.m76_c00398{transform:matrix(0.250992,0.003012,-0.003000,0.249982,0,0);-ms-transform:matrix(0.250992,0.003012,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.250992,0.003012,-0.003000,0.249982,0,0);}
.m111_c00398{transform:matrix(0.251658,0.004027,-0.003999,0.249968,0,0);-ms-transform:matrix(0.251658,0.004027,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.251658,0.004027,-0.003999,0.249968,0,0);}
.m5e_c00398{transform:matrix(0.251835,0.002267,-0.002250,0.249990,0,0);-ms-transform:matrix(0.251835,0.002267,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.251835,0.002267,-0.002250,0.249990,0,0);}
.ma4_c00398{transform:matrix(0.251842,0.003778,-0.003750,0.249972,0,0);-ms-transform:matrix(0.251842,0.003778,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.251842,0.003778,-0.003750,0.249972,0,0);}
.m6c_c00398{transform:matrix(0.251862,0.003022,-0.003000,0.249982,0,0);-ms-transform:matrix(0.251862,0.003022,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.251862,0.003022,-0.003000,0.249982,0,0);}
.m64_c00398{transform:matrix(0.252080,0.002269,-0.002250,0.249990,0,0);-ms-transform:matrix(0.252080,0.002269,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.252080,0.002269,-0.002250,0.249990,0,0);}
.m2_c00398{transform:matrix(0.252400,0.002272,-0.002250,0.249990,0,0);-ms-transform:matrix(0.252400,0.002272,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.252400,0.002272,-0.002250,0.249990,0,0);}
.mbf_c00398{transform:matrix(0.252512,0.003788,-0.003750,0.249972,0,0);-ms-transform:matrix(0.252512,0.003788,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.252512,0.003788,-0.003750,0.249972,0,0);}
.m96_c00398{transform:matrix(0.252827,0.003034,-0.003000,0.249982,0,0);-ms-transform:matrix(0.252827,0.003034,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.252827,0.003034,-0.003000,0.249982,0,0);}
.mbd_c00398{transform:matrix(0.252967,0.003794,-0.003750,0.249972,0,0);-ms-transform:matrix(0.252967,0.003794,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.252967,0.003794,-0.003750,0.249972,0,0);}
.m119_c00398{transform:matrix(0.253358,0.004054,-0.003999,0.249968,0,0);-ms-transform:matrix(0.253358,0.004054,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.253358,0.004054,-0.003999,0.249968,0,0);}
.m18_c00398{transform:matrix(0.253695,0.002283,-0.002250,0.249990,0,0);-ms-transform:matrix(0.253695,0.002283,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.253695,0.002283,-0.002250,0.249990,0,0);}
.m5a_c00398{transform:matrix(0.254175,0.002288,-0.002250,0.249990,0,0);-ms-transform:matrix(0.254175,0.002288,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.254175,0.002288,-0.002250,0.249990,0,0);}
.m72_c00398{transform:matrix(0.254702,0.003056,-0.003000,0.249982,0,0);-ms-transform:matrix(0.254702,0.003056,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.254702,0.003056,-0.003000,0.249982,0,0);}
.mcb_c00398{transform:matrix(0.254726,0.003821,-0.003750,0.249972,0,0);-ms-transform:matrix(0.254726,0.003821,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.254726,0.003821,-0.003750,0.249972,0,0);}
.mb2_c00398{transform:matrix(0.254886,0.003823,-0.003750,0.249972,0,0);-ms-transform:matrix(0.254886,0.003823,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.254886,0.003823,-0.003750,0.249972,0,0);}
.m5d_c00398{transform:matrix(0.254955,0.002295,-0.002250,0.249990,0,0);-ms-transform:matrix(0.254955,0.002295,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.254955,0.002295,-0.002250,0.249990,0,0);}
.m104_c00398{transform:matrix(0.255407,0.004087,-0.003999,0.249968,0,0);-ms-transform:matrix(0.255407,0.004087,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.255407,0.004087,-0.003999,0.249968,0,0);}
.m32_c00398{transform:matrix(0.255655,0.002301,-0.002250,0.249990,0,0);-ms-transform:matrix(0.255655,0.002301,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.255655,0.002301,-0.002250,0.249990,0,0);}
.m87_c00398{transform:matrix(0.255917,0.003071,-0.003000,0.249982,0,0);-ms-transform:matrix(0.255917,0.003071,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.255917,0.003071,-0.003000,0.249982,0,0);}
.m25_c00398{transform:matrix(0.255980,0.002304,-0.002250,0.249990,0,0);-ms-transform:matrix(0.255980,0.002304,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.255980,0.002304,-0.002250,0.249990,0,0);}
.m6_c00398{transform:matrix(0.256555,0.002309,-0.002250,0.249990,0,0);-ms-transform:matrix(0.256555,0.002309,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.256555,0.002309,-0.002250,0.249990,0,0);}
.m2e_c00398{transform:matrix(0.256630,0.002310,-0.002250,0.249990,0,0);-ms-transform:matrix(0.256630,0.002310,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.256630,0.002310,-0.002250,0.249990,0,0);}
.mb1_c00398{transform:matrix(0.257176,0.003858,-0.003750,0.249972,0,0);-ms-transform:matrix(0.257176,0.003858,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.257176,0.003858,-0.003750,0.249972,0,0);}
.mc7_c00398{transform:matrix(0.257351,0.003860,-0.003750,0.249972,0,0);-ms-transform:matrix(0.257351,0.003860,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.257351,0.003860,-0.003750,0.249972,0,0);}
.m6a_c00398{transform:matrix(0.257371,0.003088,-0.003000,0.249982,0,0);-ms-transform:matrix(0.257371,0.003088,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.257371,0.003088,-0.003000,0.249982,0,0);}
.m4f_c00398{transform:matrix(0.257410,0.002317,-0.002250,0.249990,0,0);-ms-transform:matrix(0.257410,0.002317,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.257410,0.002317,-0.002250,0.249990,0,0);}
.m62_c00398{transform:matrix(0.257525,0.002318,-0.002250,0.249990,0,0);-ms-transform:matrix(0.257525,0.002318,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.257525,0.002318,-0.002250,0.249990,0,0);}
.mbc_c00398{transform:matrix(0.257881,0.003868,-0.003750,0.249972,0,0);-ms-transform:matrix(0.257881,0.003868,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.257881,0.003868,-0.003750,0.249972,0,0);}
.m35_c00398{transform:matrix(0.257930,0.002321,-0.002250,0.249990,0,0);-ms-transform:matrix(0.257930,0.002321,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.257930,0.002321,-0.002250,0.249990,0,0);}
.mb3_c00398{transform:matrix(0.257996,0.003870,-0.003750,0.249972,0,0);-ms-transform:matrix(0.257996,0.003870,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.257996,0.003870,-0.003750,0.249972,0,0);}
.m94_c00398{transform:matrix(0.258291,0.003099,-0.003000,0.249982,0,0);-ms-transform:matrix(0.258291,0.003099,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.258291,0.003099,-0.003000,0.249982,0,0);}
.m95_c00398{transform:matrix(0.258296,0.003100,-0.003000,0.249982,0,0);-ms-transform:matrix(0.258296,0.003100,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.258296,0.003100,-0.003000,0.249982,0,0);}
.m74_c00398{transform:matrix(0.258471,0.003102,-0.003000,0.249982,0,0);-ms-transform:matrix(0.258471,0.003102,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.258471,0.003102,-0.003000,0.249982,0,0);}
.m24_c00398{transform:matrix(0.259444,0.002335,-0.002250,0.249990,0,0);-ms-transform:matrix(0.259444,0.002335,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.259444,0.002335,-0.002250,0.249990,0,0);}
.mca_c00398{transform:matrix(0.260026,0.003900,-0.003750,0.249972,0,0);-ms-transform:matrix(0.260026,0.003900,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.260026,0.003900,-0.003750,0.249972,0,0);}
.m10_c00398{transform:matrix(0.260029,0.002340,-0.002250,0.249990,0,0);-ms-transform:matrix(0.260029,0.002340,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.260029,0.002340,-0.002250,0.249990,0,0);}
.m4d_c00398{transform:matrix(0.260189,0.002342,-0.002250,0.249990,0,0);-ms-transform:matrix(0.260189,0.002342,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.260189,0.002342,-0.002250,0.249990,0,0);}
.m3a_c00398{transform:matrix(0.261039,0.002349,-0.002250,0.249990,0,0);-ms-transform:matrix(0.261039,0.002349,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.261039,0.002349,-0.002250,0.249990,0,0);}
.m34_c00398{transform:matrix(0.261054,0.002349,-0.002250,0.249990,0,0);-ms-transform:matrix(0.261054,0.002349,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.261054,0.002349,-0.002250,0.249990,0,0);}
.m117_c00398{transform:matrix(0.261467,0.004183,-0.003999,0.249968,0,0);-ms-transform:matrix(0.261467,0.004183,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.261467,0.004183,-0.003999,0.249968,0,0);}
.m93_c00398{transform:matrix(0.261481,0.003138,-0.003000,0.249982,0,0);-ms-transform:matrix(0.261481,0.003138,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.261481,0.003138,-0.003000,0.249982,0,0);}
.m49_c00398{transform:matrix(0.261679,0.002355,-0.002250,0.249990,0,0);-ms-transform:matrix(0.261679,0.002355,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.261679,0.002355,-0.002250,0.249990,0,0);}
.m80_c00398{transform:matrix(0.262456,0.003149,-0.003000,0.249982,0,0);-ms-transform:matrix(0.262456,0.003149,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.262456,0.003149,-0.003000,0.249982,0,0);}
.m15_c00398{transform:matrix(0.262504,0.002363,-0.002250,0.249990,0,0);-ms-transform:matrix(0.262504,0.002363,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.262504,0.002363,-0.002250,0.249990,0,0);}
.mf1_c00398{transform:matrix(0.262541,0.004201,-0.003999,0.249968,0,0);-ms-transform:matrix(0.262541,0.004201,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.262541,0.004201,-0.003999,0.249968,0,0);}
.m99_c00398{transform:matrix(0.262911,0.003155,-0.003000,0.249982,0,0);-ms-transform:matrix(0.262911,0.003155,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.262911,0.003155,-0.003000,0.249982,0,0);}
.mcf_c00398{transform:matrix(0.263310,0.003950,-0.003750,0.249972,0,0);-ms-transform:matrix(0.263310,0.003950,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.263310,0.003950,-0.003750,0.249972,0,0);}
.m11a_c00398{transform:matrix(0.263431,0.004215,-0.003999,0.249968,0,0);-ms-transform:matrix(0.263431,0.004215,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.263431,0.004215,-0.003999,0.249968,0,0);}
.ma1_c00398{transform:matrix(0.263435,0.003952,-0.003750,0.249972,0,0);-ms-transform:matrix(0.263435,0.003952,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.263435,0.003952,-0.003750,0.249972,0,0);}
.m9f_c00398{transform:matrix(0.264465,0.003967,-0.003750,0.249972,0,0);-ms-transform:matrix(0.264465,0.003967,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.264465,0.003967,-0.003750,0.249972,0,0);}
.m70_c00398{transform:matrix(0.264671,0.003176,-0.003000,0.249982,0,0);-ms-transform:matrix(0.264671,0.003176,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.264671,0.003176,-0.003000,0.249982,0,0);}
.mc9_c00398{transform:matrix(0.265075,0.003976,-0.003750,0.249972,0,0);-ms-transform:matrix(0.265075,0.003976,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.265075,0.003976,-0.003750,0.249972,0,0);}
.m97_c00398{transform:matrix(0.265076,0.003181,-0.003000,0.249982,0,0);-ms-transform:matrix(0.265076,0.003181,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.265076,0.003181,-0.003000,0.249982,0,0);}
.m75_c00398{transform:matrix(0.265186,0.003182,-0.003000,0.249982,0,0);-ms-transform:matrix(0.265186,0.003182,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.265186,0.003182,-0.003000,0.249982,0,0);}
.med_c00398{transform:matrix(0.265341,0.004245,-0.003999,0.249968,0,0);-ms-transform:matrix(0.265341,0.004245,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.265341,0.004245,-0.003999,0.249968,0,0);}
.m73_c00398{transform:matrix(0.265556,0.003187,-0.003000,0.249982,0,0);-ms-transform:matrix(0.265556,0.003187,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.265556,0.003187,-0.003000,0.249982,0,0);}
.m114_c00398{transform:matrix(0.265556,0.004249,-0.003999,0.249968,0,0);-ms-transform:matrix(0.265556,0.004249,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.265556,0.004249,-0.003999,0.249968,0,0);}
.mdd_c00398{transform:matrix(0.265606,0.004250,-0.003999,0.249968,0,0);-ms-transform:matrix(0.265606,0.004250,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.265606,0.004250,-0.003999,0.249968,0,0);}
.m77_c00398{transform:matrix(0.266211,0.003195,-0.003000,0.249982,0,0);-ms-transform:matrix(0.266211,0.003195,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.266211,0.003195,-0.003000,0.249982,0,0);}
.m9c_c00398{transform:matrix(0.266450,0.003997,-0.003750,0.249972,0,0);-ms-transform:matrix(0.266450,0.003997,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.266450,0.003997,-0.003750,0.249972,0,0);}
.m30_c00398{transform:matrix(0.266469,0.002398,-0.002250,0.249990,0,0);-ms-transform:matrix(0.266469,0.002398,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.266469,0.002398,-0.002250,0.249990,0,0);}
.m6b_c00398{transform:matrix(0.266971,0.003204,-0.003000,0.249982,0,0);-ms-transform:matrix(0.266971,0.003204,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.266971,0.003204,-0.003000,0.249982,0,0);}
.mc_c00398{transform:matrix(0.267084,0.002404,-0.002250,0.249990,0,0);-ms-transform:matrix(0.267084,0.002404,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.267084,0.002404,-0.002250,0.249990,0,0);}
.m7_c00398{transform:matrix(0.267689,0.002409,-0.002250,0.249990,0,0);-ms-transform:matrix(0.267689,0.002409,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.267689,0.002409,-0.002250,0.249990,0,0);}
.md2_c00398{transform:matrix(0.267710,0.004016,-0.003750,0.249972,0,0);-ms-transform:matrix(0.267710,0.004016,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.267710,0.004016,-0.003750,0.249972,0,0);}
.md1_c00398{transform:matrix(0.267725,0.004016,-0.003750,0.249972,0,0);-ms-transform:matrix(0.267725,0.004016,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.267725,0.004016,-0.003750,0.249972,0,0);}
.mc8_c00398{transform:matrix(0.268115,0.004022,-0.003750,0.249972,0,0);-ms-transform:matrix(0.268115,0.004022,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.268115,0.004022,-0.003750,0.249972,0,0);}
.m8a_c00398{transform:matrix(0.268421,0.003221,-0.003000,0.249982,0,0);-ms-transform:matrix(0.268421,0.003221,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.268421,0.003221,-0.003000,0.249982,0,0);}
.m100_c00398{transform:matrix(0.268931,0.004303,-0.003999,0.249968,0,0);-ms-transform:matrix(0.268931,0.004303,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.268931,0.004303,-0.003999,0.249968,0,0);}
.m89_c00398{transform:matrix(0.269356,0.003232,-0.003000,0.249982,0,0);-ms-transform:matrix(0.269356,0.003232,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.269356,0.003232,-0.003000,0.249982,0,0);}
.m27_c00398{transform:matrix(0.269744,0.002428,-0.002250,0.249990,0,0);-ms-transform:matrix(0.269744,0.002428,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.269744,0.002428,-0.002250,0.249990,0,0);}
.m92_c00398{transform:matrix(0.269906,0.003239,-0.003000,0.249982,0,0);-ms-transform:matrix(0.269906,0.003239,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.269906,0.003239,-0.003000,0.249982,0,0);}
.m2c_c00398{transform:matrix(0.269999,0.002430,-0.002250,0.249990,0,0);-ms-transform:matrix(0.269999,0.002430,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.269999,0.002430,-0.002250,0.249990,0,0);}
.me_c00398{transform:matrix(0.270884,0.002438,-0.002250,0.249990,0,0);-ms-transform:matrix(0.270884,0.002438,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.270884,0.002438,-0.002250,0.249990,0,0);}
.m8c_c00398{transform:matrix(0.271355,0.003256,-0.003000,0.249982,0,0);-ms-transform:matrix(0.271355,0.003256,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.271355,0.003256,-0.003000,0.249982,0,0);}
.mef_c00398{transform:matrix(0.271905,0.004350,-0.003999,0.249968,0,0);-ms-transform:matrix(0.271905,0.004350,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.271905,0.004350,-0.003999,0.249968,0,0);}
.m12_c00398{transform:matrix(0.272239,0.002450,-0.002250,0.249990,0,0);-ms-transform:matrix(0.272239,0.002450,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.272239,0.002450,-0.002250,0.249990,0,0);}
.m98_c00398{transform:matrix(0.272275,0.003267,-0.003000,0.249982,0,0);-ms-transform:matrix(0.272275,0.003267,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.272275,0.003267,-0.003000,0.249982,0,0);}
.m2b_c00398{transform:matrix(0.272344,0.002451,-0.002250,0.249990,0,0);-ms-transform:matrix(0.272344,0.002451,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.272344,0.002451,-0.002250,0.249990,0,0);}
.m103_c00398{transform:matrix(0.272380,0.004358,-0.003999,0.249968,0,0);-ms-transform:matrix(0.272380,0.004358,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.272380,0.004358,-0.003999,0.249968,0,0);}
.md9_c00398{transform:matrix(0.272445,0.004359,-0.003999,0.249968,0,0);-ms-transform:matrix(0.272445,0.004359,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.272445,0.004359,-0.003999,0.249968,0,0);}
.m8f_c00398{transform:matrix(0.272575,0.003271,-0.003000,0.249982,0,0);-ms-transform:matrix(0.272575,0.003271,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.272575,0.003271,-0.003000,0.249982,0,0);}
.m120_c00398{transform:matrix(0.272630,0.004362,-0.003999,0.249968,0,0);-ms-transform:matrix(0.272630,0.004362,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.272630,0.004362,-0.003999,0.249968,0,0);}
.m10b_c00398{transform:matrix(0.272655,0.004362,-0.003999,0.249968,0,0);-ms-transform:matrix(0.272655,0.004362,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.272655,0.004362,-0.003999,0.249968,0,0);}
.md6_c00398{transform:matrix(0.272950,0.004367,-0.003999,0.249968,0,0);-ms-transform:matrix(0.272950,0.004367,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.272950,0.004367,-0.003999,0.249968,0,0);}
.m108_c00398{transform:matrix(0.273095,0.004370,-0.003999,0.249968,0,0);-ms-transform:matrix(0.273095,0.004370,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.273095,0.004370,-0.003999,0.249968,0,0);}
.m8d_c00398{transform:matrix(0.274115,0.003289,-0.003000,0.249982,0,0);-ms-transform:matrix(0.274115,0.003289,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.274115,0.003289,-0.003000,0.249982,0,0);}
.m5_c00398{transform:matrix(0.274709,0.002472,-0.002250,0.249990,0,0);-ms-transform:matrix(0.274709,0.002472,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.274709,0.002472,-0.002250,0.249990,0,0);}
.m9_c00398{transform:matrix(0.274869,0.002474,-0.002250,0.249990,0,0);-ms-transform:matrix(0.274869,0.002474,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.274869,0.002474,-0.002250,0.249990,0,0);}
.m9a_c00398{transform:matrix(0.275355,0.003304,-0.003000,0.249982,0,0);-ms-transform:matrix(0.275355,0.003304,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.275355,0.003304,-0.003000,0.249982,0,0);}
.m4e_c00398{transform:matrix(0.275494,0.002479,-0.002250,0.249990,0,0);-ms-transform:matrix(0.275494,0.002479,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.275494,0.002479,-0.002250,0.249990,0,0);}
.mf_c00398{transform:matrix(0.275589,0.002480,-0.002250,0.249990,0,0);-ms-transform:matrix(0.275589,0.002480,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.275589,0.002480,-0.002250,0.249990,0,0);}
.m14_c00398{transform:matrix(0.275854,0.002483,-0.002250,0.249990,0,0);-ms-transform:matrix(0.275854,0.002483,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.275854,0.002483,-0.002250,0.249990,0,0);}
.m51_c00398{transform:matrix(0.276069,0.002485,-0.002250,0.249990,0,0);-ms-transform:matrix(0.276069,0.002485,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.276069,0.002485,-0.002250,0.249990,0,0);}
.m109_c00398{transform:matrix(0.276835,0.004429,-0.003999,0.249968,0,0);-ms-transform:matrix(0.276835,0.004429,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.276835,0.004429,-0.003999,0.249968,0,0);}
.m90_c00398{transform:matrix(0.277335,0.003328,-0.003000,0.249982,0,0);-ms-transform:matrix(0.277335,0.003328,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.277335,0.003328,-0.003000,0.249982,0,0);}
.m71_c00398{transform:matrix(0.277440,0.003329,-0.003000,0.249982,0,0);-ms-transform:matrix(0.277440,0.003329,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.277440,0.003329,-0.003000,0.249982,0,0);}
.m11c_c00398{transform:matrix(0.278514,0.004456,-0.003999,0.249968,0,0);-ms-transform:matrix(0.278514,0.004456,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.278514,0.004456,-0.003999,0.249968,0,0);}
.ma0_c00398{transform:matrix(0.279374,0.004191,-0.003750,0.249972,0,0);-ms-transform:matrix(0.279374,0.004191,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.279374,0.004191,-0.003750,0.249972,0,0);}
.mf0_c00398{transform:matrix(0.280114,0.004482,-0.003999,0.249968,0,0);-ms-transform:matrix(0.280114,0.004482,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.280114,0.004482,-0.003999,0.249968,0,0);}
.m39_c00398{transform:matrix(0.280549,0.002525,-0.002250,0.249990,0,0);-ms-transform:matrix(0.280549,0.002525,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.280549,0.002525,-0.002250,0.249990,0,0);}
.mb4_c00398{transform:matrix(0.280948,0.004214,-0.003750,0.249972,0,0);-ms-transform:matrix(0.280948,0.004214,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.280948,0.004214,-0.003750,0.249972,0,0);}
.mba_c00398{transform:matrix(0.281783,0.004227,-0.003750,0.249972,0,0);-ms-transform:matrix(0.281783,0.004227,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.281783,0.004227,-0.003750,0.249972,0,0);}
.m11e_c00398{transform:matrix(0.282554,0.004521,-0.003999,0.249968,0,0);-ms-transform:matrix(0.282554,0.004521,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.282554,0.004521,-0.003999,0.249968,0,0);}
.m6e_c00398{transform:matrix(0.282825,0.003394,-0.003000,0.249982,0,0);-ms-transform:matrix(0.282825,0.003394,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.282825,0.003394,-0.003000,0.249982,0,0);}
.mb9_c00398{transform:matrix(0.282913,0.004244,-0.003750,0.249972,0,0);-ms-transform:matrix(0.282913,0.004244,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.282913,0.004244,-0.003750,0.249972,0,0);}
.md5_c00398{transform:matrix(0.283319,0.004533,-0.003999,0.249968,0,0);-ms-transform:matrix(0.283319,0.004533,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.283319,0.004533,-0.003999,0.249968,0,0);}
.m78_c00398{transform:matrix(0.284150,0.003410,-0.003000,0.249982,0,0);-ms-transform:matrix(0.284150,0.003410,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.284150,0.003410,-0.003000,0.249982,0,0);}
.m31_c00398{transform:matrix(0.284163,0.002557,-0.002250,0.249990,0,0);-ms-transform:matrix(0.284163,0.002557,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.284163,0.002557,-0.002250,0.249990,0,0);}
.m6d_c00398{transform:matrix(0.284205,0.003410,-0.003000,0.249982,0,0);-ms-transform:matrix(0.284205,0.003410,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.284205,0.003410,-0.003000,0.249982,0,0);}
.m52_c00398{transform:matrix(0.284563,0.002561,-0.002250,0.249990,0,0);-ms-transform:matrix(0.284563,0.002561,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.284563,0.002561,-0.002250,0.249990,0,0);}
.mf2_c00398{transform:matrix(0.286538,0.004585,-0.003999,0.249968,0,0);-ms-transform:matrix(0.286538,0.004585,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.286538,0.004585,-0.003999,0.249968,0,0);}
.mf3_c00398{transform:matrix(0.287283,0.004597,-0.003999,0.249968,0,0);-ms-transform:matrix(0.287283,0.004597,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.287283,0.004597,-0.003999,0.249968,0,0);}
.m3b_c00398{transform:matrix(0.288053,0.002592,-0.002250,0.249990,0,0);-ms-transform:matrix(0.288053,0.002592,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.288053,0.002592,-0.002250,0.249990,0,0);}
.m33_c00398{transform:matrix(0.289708,0.002607,-0.002250,0.249990,0,0);-ms-transform:matrix(0.289708,0.002607,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.289708,0.002607,-0.002250,0.249990,0,0);}
.m36_c00398{transform:matrix(0.299878,0.002699,-0.002250,0.249990,0,0);-ms-transform:matrix(0.299878,0.002699,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.299878,0.002699,-0.002250,0.249990,0,0);}
.m13_c00398{transform:matrix(0.300613,0.002706,-0.002250,0.249990,0,0);-ms-transform:matrix(0.300613,0.002706,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.300613,0.002706,-0.002250,0.249990,0,0);}
.mb7_c00398{transform:matrix(0.300671,0.004510,-0.003750,0.249972,0,0);-ms-transform:matrix(0.300671,0.004510,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.300671,0.004510,-0.003750,0.249972,0,0);}
.m3c_c00398{transform:matrix(0.303598,0.002732,-0.002250,0.249990,0,0);-ms-transform:matrix(0.303598,0.002732,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.303598,0.002732,-0.002250,0.249990,0,0);}
.m17_c00398{transform:matrix(0.304068,0.002737,-0.002250,0.249990,0,0);-ms-transform:matrix(0.304068,0.002737,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.304068,0.002737,-0.002250,0.249990,0,0);}
.m11_c00398{transform:matrix(0.304768,0.002743,-0.002250,0.249990,0,0);-ms-transform:matrix(0.304768,0.002743,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.304768,0.002743,-0.002250,0.249990,0,0);}
.m16_c00398{transform:matrix(0.305688,0.002751,-0.002250,0.249990,0,0);-ms-transform:matrix(0.305688,0.002751,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.305688,0.002751,-0.002250,0.249990,0,0);}
.m38_c00398{transform:matrix(0.306668,0.002760,-0.002250,0.249990,0,0);-ms-transform:matrix(0.306668,0.002760,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.306668,0.002760,-0.002250,0.249990,0,0);}
.m132_c00398{transform:matrix(0.320319,-0.004805,0.003750,0.249972,0,0);-ms-transform:matrix(0.320319,-0.004805,0.003750,0.249972,0,0);-webkit-transform:matrix(0.320319,-0.004805,0.003750,0.249972,0,0);}
.ma3_c00398{transform:matrix(0.335557,0.005033,-0.003750,0.249972,0,0);-ms-transform:matrix(0.335557,0.005033,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.335557,0.005033,-0.003750,0.249972,0,0);}
.m135_c00398{transform:matrix(0.340862,-0.005113,0.003750,0.249972,0,0);-ms-transform:matrix(0.340862,-0.005113,0.003750,0.249972,0,0);-webkit-transform:matrix(0.340862,-0.005113,0.003750,0.249972,0,0);}
.m138_c00398{transform:matrix(0.344246,-0.005164,0.003750,0.249972,0,0);-ms-transform:matrix(0.344246,-0.005164,0.003750,0.249972,0,0);-webkit-transform:matrix(0.344246,-0.005164,0.003750,0.249972,0,0);}
.m137_c00398{transform:matrix(0.347896,-0.005218,0.003750,0.249972,0,0);-ms-transform:matrix(0.347896,-0.005218,0.003750,0.249972,0,0);-webkit-transform:matrix(0.347896,-0.005218,0.003750,0.249972,0,0);}
.m136_c00398{transform:matrix(0.352195,-0.005283,0.003750,0.249972,0,0);-ms-transform:matrix(0.352195,-0.005283,0.003750,0.249972,0,0);-webkit-transform:matrix(0.352195,-0.005283,0.003750,0.249972,0,0);}
.m13e_c00398{transform:matrix(0.360372,0.003604,-0.002500,0.249988,0,0);-ms-transform:matrix(0.360372,0.003604,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.360372,0.003604,-0.002500,0.249988,0,0);}
.m13b_c00398{transform:matrix(0.366894,-0.005503,0.003750,0.249972,0,0);-ms-transform:matrix(0.366894,-0.005503,0.003750,0.249972,0,0);-webkit-transform:matrix(0.366894,-0.005503,0.003750,0.249972,0,0);}
.m133_c00398{transform:matrix(0.368474,-0.005527,0.003750,0.249972,0,0);-ms-transform:matrix(0.368474,-0.005527,0.003750,0.249972,0,0);-webkit-transform:matrix(0.368474,-0.005527,0.003750,0.249972,0,0);}
.m13d_c00398{transform:matrix(0.369472,0.003695,-0.002500,0.249988,0,0);-ms-transform:matrix(0.369472,0.003695,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.369472,0.003695,-0.002500,0.249988,0,0);}
.m13a_c00398{transform:matrix(0.374743,-0.005621,0.003750,0.249972,0,0);-ms-transform:matrix(0.374743,-0.005621,0.003750,0.249972,0,0);-webkit-transform:matrix(0.374743,-0.005621,0.003750,0.249972,0,0);}
.m139_c00398{transform:matrix(0.390266,-0.005854,0.003750,0.249972,0,0);-ms-transform:matrix(0.390266,-0.005854,0.003750,0.249972,0,0);-webkit-transform:matrix(0.390266,-0.005854,0.003750,0.249972,0,0);}
.m143_c00398{transform:matrix(0.391110,0.003911,-0.002500,0.249988,0,0);-ms-transform:matrix(0.391110,0.003911,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.391110,0.003911,-0.002500,0.249988,0,0);}
.m142_c00398{transform:matrix(0.394015,0.003940,-0.002500,0.249988,0,0);-ms-transform:matrix(0.394015,0.003940,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.394015,0.003940,-0.002500,0.249988,0,0);}
.m134_c00398{transform:matrix(0.395980,-0.005940,0.003750,0.249972,0,0);-ms-transform:matrix(0.395980,-0.005940,0.003750,0.249972,0,0);-webkit-transform:matrix(0.395980,-0.005940,0.003750,0.249972,0,0);}
.ma2_c00398{transform:matrix(0.402830,0.006042,-0.003750,0.249972,0,0);-ms-transform:matrix(0.402830,0.006042,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.402830,0.006042,-0.003750,0.249972,0,0);}
.m141_c00398{transform:matrix(0.408385,0.004084,-0.002500,0.249988,0,0);-ms-transform:matrix(0.408385,0.004084,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.408385,0.004084,-0.002500,0.249988,0,0);}
.m140_c00398{transform:matrix(0.427949,0.004279,-0.002500,0.249988,0,0);-ms-transform:matrix(0.427949,0.004279,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.427949,0.004279,-0.002500,0.249988,0,0);}
.m145_c00398{transform:matrix(0.431643,0.004316,-0.002500,0.249988,0,0);-ms-transform:matrix(0.431643,0.004316,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.431643,0.004316,-0.002500,0.249988,0,0);}
.m146_c00398{transform:matrix(0.433003,0.004330,-0.002500,0.249988,0,0);-ms-transform:matrix(0.433003,0.004330,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.433003,0.004330,-0.002500,0.249988,0,0);}
.m144_c00398{transform:matrix(0.446453,0.004465,-0.002500,0.249988,0,0);-ms-transform:matrix(0.446453,0.004465,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.446453,0.004465,-0.002500,0.249988,0,0);}
.m13c_c00398{transform:matrix(0.453492,0.004535,-0.002500,0.249988,0,0);-ms-transform:matrix(0.453492,0.004535,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.453492,0.004535,-0.002500,0.249988,0,0);}
.m13f_c00398{transform:matrix(0.470591,0.004706,-0.002500,0.249988,0,0);-ms-transform:matrix(0.470591,0.004706,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.470591,0.004706,-0.002500,0.249988,0,0);}
.m131_c00398{transform:matrix(0.998688,-0.014980,0.003750,0.249972,0,0);-ms-transform:matrix(0.998688,-0.014980,0.003750,0.249972,0,0);-webkit-transform:matrix(0.998688,-0.014980,0.003750,0.249972,0,0);}
.m12f_c00398{transform:matrix(1.333935,-0.020009,0.003750,0.249972,0,0);-ms-transform:matrix(1.333935,-0.020009,0.003750,0.249972,0,0);-webkit-transform:matrix(1.333935,-0.020009,0.003750,0.249972,0,0);}
.v0_c00398{vertical-align:0.000000px;}
.ls0_c00398{letter-spacing:0.000000px;}
.sc__c00398{text-shadow:none;}
.sc0_c00398{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__c00398{-webkit-text-stroke:0px transparent;}
.sc0_c00398{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00398{word-spacing:0.000000px;}
.fc0_c00398{color:transparent;}
.fs10_c00398{font-size:42.002100px;}
.fsf_c00398{font-size:48.005400px;}
.fs2_c00398{font-size:66.002673px;}
.fs1_c00398{font-size:72.002916px;}
.fs5_c00398{font-size:72.005184px;}
.fs7_c00398{font-size:72.008100px;}
.fsa_c00398{font-size:72.009215px;}
.fs3_c00398{font-size:78.003159px;}
.fs9_c00398{font-size:78.008775px;}
.fsd_c00398{font-size:78.009983px;}
.fs6_c00398{font-size:84.006048px;}
.fs8_c00398{font-size:84.009449px;}
.fsb_c00398{font-size:84.010751px;}
.fs0_c00398{font-size:90.000000px;}
.fse_c00398{font-size:90.005445px;}
.fsc_c00398{font-size:90.011519px;}
.fs4_c00398{font-size:102.004131px;}
.y0_c00398{bottom:0.000000px;}
.y14c_c00398{bottom:88.375230px;}
.y14b_c00398{bottom:88.942425px;}
.y14a_c00398{bottom:89.606895px;}
.y149_c00398{bottom:89.930940px;}
.y148_c00398{bottom:90.152460px;}
.y147_c00398{bottom:90.598080px;}
.y146_c00398{bottom:90.808695px;}
.y145_c00398{bottom:91.583685px;}
.y144_c00398{bottom:92.126115px;}
.y143_c00398{bottom:92.344260px;}
.y142_c00398{bottom:92.881500px;}
.y141_c00398{bottom:122.709937px;}
.y140_c00398{bottom:124.354410px;}
.y13f_c00398{bottom:126.273750px;}
.y13e_c00398{bottom:127.219988px;}
.y13d_c00398{bottom:127.862527px;}
.y13c_c00398{bottom:129.147278px;}
.y13b_c00398{bottom:130.102627px;}
.y13a_c00398{bottom:132.324525px;}
.y139_c00398{bottom:133.910445px;}
.y138_c00398{bottom:134.540100px;}
.y137_c00398{bottom:136.080600px;}
.y135_c00398{bottom:161.716500px;}
.y136_c00398{bottom:165.323858px;}
.y134_c00398{bottom:174.119016px;}
.y133_c00398{bottom:175.022226px;}
.y132_c00398{bottom:175.509636px;}
.y131_c00398{bottom:175.874996px;}
.y130_c00398{bottom:176.611737px;}
.y12f_c00398{bottom:176.980281px;}
.y12e_c00398{bottom:177.345311px;}
.y12d_c00398{bottom:178.079445px;}
.y12c_c00398{bottom:178.566261px;}
.y12b_c00398{bottom:179.520060px;}
.y12a_c00398{bottom:180.143694px;}
.y129_c00398{bottom:180.612377px;}
.y128_c00398{bottom:181.078370px;}
.y127_c00398{bottom:181.440000px;}
.y126_c00398{bottom:213.025380px;}
.y125_c00398{bottom:213.677664px;}
.y124_c00398{bottom:216.207744px;}
.y123_c00398{bottom:217.059408px;}
.y122_c00398{bottom:219.158940px;}
.y121_c00398{bottom:220.021632px;}
.y120_c00398{bottom:221.288388px;}
.y11f_c00398{bottom:222.320304px;}
.y11e_c00398{bottom:222.966432px;}
.y11d_c00398{bottom:224.146248px;}
.y11c_c00398{bottom:225.419784px;}
.y111_c00398{bottom:249.167232px;}
.y112_c00398{bottom:249.167520px;}
.y114_c00398{bottom:249.167616px;}
.y115_c00398{bottom:249.167784px;}
.y117_c00398{bottom:249.167952px;}
.y116_c00398{bottom:249.168000px;}
.y113_c00398{bottom:249.168192px;}
.y118_c00398{bottom:249.168504px;}
.y11a_c00398{bottom:249.168744px;}
.y119_c00398{bottom:249.168984px;}
.y11b_c00398{bottom:249.169272px;}
.y110_c00398{bottom:282.452196px;}
.y10f_c00398{bottom:282.958080px;}
.y10e_c00398{bottom:284.460900px;}
.y10d_c00398{bottom:285.640644px;}
.y10c_c00398{bottom:286.305024px;}
.y10b_c00398{bottom:286.800096px;}
.y10a_c00398{bottom:287.302008px;}
.y109_c00398{bottom:287.651124px;}
.y108_c00398{bottom:289.441644px;}
.y107_c00398{bottom:290.280288px;}
.y106_c00398{bottom:290.765376px;}
.y105_c00398{bottom:291.914964px;}
.y104_c00398{bottom:292.387800px;}
.y103_c00398{bottom:319.467684px;}
.y102_c00398{bottom:320.301060px;}
.y101_c00398{bottom:321.895188px;}
.y100_c00398{bottom:322.472520px;}
.yff_c00398{bottom:323.294292px;}
.yfe_c00398{bottom:323.873808px;}
.yfd_c00398{bottom:325.871352px;}
.yfc_c00398{bottom:327.450396px;}
.yfb_c00398{bottom:328.033056px;}
.yfa_c00398{bottom:328.626408px;}
.yf9_c00398{bottom:329.597568px;}
.yf8_c00398{bottom:330.193824px;}
.yf7_c00398{bottom:354.479424px;}
.yf6_c00398{bottom:356.403060px;}
.yf5_c00398{bottom:357.523356px;}
.yf4_c00398{bottom:359.405964px;}
.yf3_c00398{bottom:360.907200px;}
.yf2_c00398{bottom:361.443324px;}
.yf1_c00398{bottom:362.747184px;}
.yf0_c00398{bottom:363.489756px;}
.yef_c00398{bottom:364.218648px;}
.yee_c00398{bottom:389.215884px;}
.yed_c00398{bottom:389.545320px;}
.yec_c00398{bottom:390.014184px;}
.yeb_c00398{bottom:390.424572px;}
.yea_c00398{bottom:390.818880px;}
.ye9_c00398{bottom:391.017132px;}
.ye8_c00398{bottom:391.287144px;}
.ye7_c00398{bottom:391.946172px;}
.ye6_c00398{bottom:392.146152px;}
.ye5_c00398{bottom:392.411820px;}
.ye4_c00398{bottom:392.865516px;}
.ye3_c00398{bottom:393.194712px;}
.ye2_c00398{bottom:393.384624px;}
.ye1_c00398{bottom:424.947240px;}
.ye0_c00398{bottom:425.483136px;}
.ydf_c00398{bottom:426.019104px;}
.yde_c00398{bottom:426.558336px;}
.ydd_c00398{bottom:427.959144px;}
.ydc_c00398{bottom:428.511408px;}
.ydb_c00398{bottom:429.051336px;}
.yda_c00398{bottom:430.283544px;}
.yd9_c00398{bottom:432.055128px;}
.yd8_c00398{bottom:432.914688px;}
.yd7_c00398{bottom:433.623000px;}
.yd6_c00398{bottom:463.187775px;}
.yd5_c00398{bottom:464.108925px;}
.yd4_c00398{bottom:464.776905px;}
.yd3_c00398{bottom:465.709463px;}
.yd2_c00398{bottom:466.247010px;}
.yd1_c00398{bottom:466.642020px;}
.yd0_c00398{bottom:467.167170px;}
.ycf_c00398{bottom:467.831527px;}
.yce_c00398{bottom:468.768090px;}
.ycd_c00398{bottom:469.551285px;}
.ycc_c00398{bottom:469.838970px;}
.ycb_c00398{bottom:470.600242px;}
.yca_c00398{bottom:496.396635px;}
.yc9_c00398{bottom:496.672357px;}
.yc8_c00398{bottom:497.009925px;}
.yc7_c00398{bottom:497.226817px;}
.yc6_c00398{bottom:497.391120px;}
.yc5_c00398{bottom:497.783625px;}
.yc4_c00398{bottom:497.892495px;}
.yc3_c00398{bottom:498.332610px;}
.yc2_c00398{bottom:498.500085px;}
.yc1_c00398{bottom:498.993037px;}
.yc0_c00398{bottom:499.653172px;}
.ybf_c00398{bottom:499.760677px;}
.ybe_c00398{bottom:532.775700px;}
.ybd_c00398{bottom:533.791320px;}
.ybc_c00398{bottom:534.102390px;}
.ybb_c00398{bottom:534.330218px;}
.yba_c00398{bottom:534.643005px;}
.yb9_c00398{bottom:534.950452px;}
.yb8_c00398{bottom:535.807575px;}
.yb7_c00398{bottom:536.262810px;}
.yb6_c00398{bottom:536.647740px;}
.yb5_c00398{bottom:537.023190px;}
.yb4_c00398{bottom:568.499827px;}
.yb3_c00398{bottom:569.235930px;}
.yb2_c00398{bottom:569.600625px;}
.yb1_c00398{bottom:569.969595px;}
.yb0_c00398{bottom:570.337778px;}
.yaf_c00398{bottom:571.074150px;}
.yae_c00398{bottom:571.558845px;}
.yad_c00398{bottom:572.521770px;}
.yac_c00398{bottom:573.382545px;}
.yab_c00398{bottom:574.113997px;}
.yaa_c00398{bottom:574.475355px;}
.ya9_c00398{bottom:575.906865px;}
.ya8_c00398{bottom:604.521142px;}
.ya7_c00398{bottom:605.006737px;}
.ya6_c00398{bottom:606.858397px;}
.ya5_c00398{bottom:607.867027px;}
.ya4_c00398{bottom:609.523658px;}
.ya3_c00398{bottom:610.524143px;}
.ya2_c00398{bottom:611.001570px;}
.ya1_c00398{bottom:611.504512px;}
.ya0_c00398{bottom:612.674895px;}
.y9f_c00398{bottom:613.173000px;}
.y9e_c00398{bottom:642.762852px;}
.y9d_c00398{bottom:643.285986px;}
.y9c_c00398{bottom:643.998294px;}
.y9b_c00398{bottom:644.614338px;}
.y9a_c00398{bottom:644.975220px;}
.y99_c00398{bottom:645.157362px;}
.y98_c00398{bottom:645.677454px;}
.y97_c00398{bottom:646.202094px;}
.y96_c00398{bottom:646.908714px;}
.y95_c00398{bottom:674.984436px;}
.y94_c00398{bottom:676.468986px;}
.y93_c00398{bottom:677.402034px;}
.y92_c00398{bottom:677.794326px;}
.y91_c00398{bottom:678.850692px;}
.y90_c00398{bottom:679.913682px;}
.y8f_c00398{bottom:680.311788px;}
.y8e_c00398{bottom:681.244962px;}
.y8d_c00398{bottom:682.294650px;}
.y8c_c00398{bottom:682.825434px;}
.y8b_c00398{bottom:683.090790px;}
.y8a_c00398{bottom:711.096504px;}
.y89_c00398{bottom:711.571794px;}
.y88_c00398{bottom:712.494822px;}
.y87_c00398{bottom:713.451240px;}
.y86_c00398{bottom:714.369204px;}
.y85_c00398{bottom:715.934334px;}
.y84_c00398{bottom:716.996328px;}
.y83_c00398{bottom:717.287412px;}
.y82_c00398{bottom:717.937638px;}
.y81_c00398{bottom:719.140854px;}
.y80_c00398{bottom:720.085098px;}
.y7f_c00398{bottom:746.306700px;}
.y7e_c00398{bottom:746.478162px;}
.y7d_c00398{bottom:746.695140px;}
.y7c_c00398{bottom:747.363174px;}
.y7b_c00398{bottom:747.703992px;}
.y7a_c00398{bottom:747.866562px;}
.y79_c00398{bottom:748.247946px;}
.y78_c00398{bottom:748.530768px;}
.y77_c00398{bottom:748.864494px;}
.y76_c00398{bottom:749.137956px;}
.y75_c00398{bottom:749.787270px;}
.y74_c00398{bottom:783.354318px;}
.y73_c00398{bottom:783.758904px;}
.y72_c00398{bottom:785.353578px;}
.y71_c00398{bottom:786.698394px;}
.y70_c00398{bottom:787.349742px;}
.y6f_c00398{bottom:788.415270px;}
.y6e_c00398{bottom:789.080046px;}
.y6d_c00398{bottom:789.481500px;}
.y6c_c00398{bottom:820.391681px;}
.y61_c00398{bottom:856.891871px;}
.y62_c00398{bottom:856.892211px;}
.y6a_c00398{bottom:856.892223px;}
.y69_c00398{bottom:856.892256px;}
.y63_c00398{bottom:856.892765px;}
.y6b_c00398{bottom:856.892777px;}
.y68_c00398{bottom:856.892903px;}
.y64_c00398{bottom:856.893152px;}
.y65_c00398{bottom:856.893165px;}
.y67_c00398{bottom:856.893356px;}
.y66_c00398{bottom:856.893792px;}
.y60_c00398{bottom:890.621046px;}
.y5f_c00398{bottom:891.520290px;}
.y5e_c00398{bottom:891.854421px;}
.y5d_c00398{bottom:892.504835px;}
.y5c_c00398{bottom:893.514249px;}
.y5b_c00398{bottom:894.180527px;}
.y5a_c00398{bottom:894.837030px;}
.y59_c00398{bottom:895.166517px;}
.y58_c00398{bottom:895.951607px;}
.y57_c00398{bottom:896.267376px;}
.y56_c00398{bottom:896.502435px;}
.y55_c00398{bottom:897.474911px;}
.y4a_c00398{bottom:927.005220px;}
.y4b_c00398{bottom:927.005967px;}
.y4c_c00398{bottom:927.006611px;}
.y4d_c00398{bottom:927.006864px;}
.y4e_c00398{bottom:927.007568px;}
.y4f_c00398{bottom:927.007835px;}
.y52_c00398{bottom:927.008216px;}
.y54_c00398{bottom:927.008300px;}
.y51_c00398{bottom:927.008382px;}
.y50_c00398{bottom:927.008415px;}
.y53_c00398{bottom:927.008586px;}
.y49_c00398{bottom:961.567109px;}
.y48_c00398{bottom:961.809189px;}
.y47_c00398{bottom:962.041890px;}
.y46_c00398{bottom:962.742690px;}
.y45_c00398{bottom:963.275004px;}
.y44_c00398{bottom:963.514628px;}
.y43_c00398{bottom:964.060952px;}
.y42_c00398{bottom:964.677631px;}
.y41_c00398{bottom:964.990836px;}
.y40_c00398{bottom:965.292757px;}
.y3f_c00398{bottom:965.599201px;}
.y3e_c00398{bottom:965.827313px;}
.y3d_c00398{bottom:966.051861px;}
.y3c_c00398{bottom:997.650169px;}
.y3b_c00398{bottom:998.177103px;}
.y3a_c00398{bottom:998.445491px;}
.y39_c00398{bottom:998.892785px;}
.y38_c00398{bottom:999.775911px;}
.y37_c00398{bottom:1000.036820px;}
.y36_c00398{bottom:1000.845342px;}
.y35_c00398{bottom:1001.103080px;}
.y34_c00398{bottom:1001.455426px;}
.y33_c00398{bottom:1001.989812px;}
.y32_c00398{bottom:1002.247401px;}
.y31_c00398{bottom:1002.776616px;}
.y30_c00398{bottom:1033.082751px;}
.y2f_c00398{bottom:1033.421055px;}
.y2e_c00398{bottom:1033.979632px;}
.y2d_c00398{bottom:1034.205996px;}
.y2c_c00398{bottom:1034.988979px;}
.y2b_c00398{bottom:1035.877057px;}
.y2a_c00398{bottom:1036.314001px;}
.y29_c00398{bottom:1036.749028px;}
.y28_c00398{bottom:1037.092193px;}
.y27_c00398{bottom:1037.961612px;}
.y26_c00398{bottom:1038.298051px;}
.y25_c00398{bottom:1038.846990px;}
.y24_c00398{bottom:1039.496675px;}
.y23_c00398{bottom:1067.310924px;}
.y22_c00398{bottom:1067.712834px;}
.y21_c00398{bottom:1068.110211px;}
.y20_c00398{bottom:1068.451982px;}
.y1f_c00398{bottom:1068.849426px;}
.y1e_c00398{bottom:1069.045929px;}
.y1d_c00398{bottom:1069.387497px;}
.y1c_c00398{bottom:1069.580708px;}
.y1b_c00398{bottom:1070.180024px;}
.y1a_c00398{bottom:1070.370710px;}
.y19_c00398{bottom:1070.705679px;}
.y18_c00398{bottom:1071.357847px;}
.y17_c00398{bottom:1102.781247px;}
.y16_c00398{bottom:1103.336948px;}
.y15_c00398{bottom:1103.502418px;}
.y14_c00398{bottom:1103.780999px;}
.y13_c00398{bottom:1104.441350px;}
.y12_c00398{bottom:1104.610113px;}
.y11_c00398{bottom:1105.164829px;}
.y10_c00398{bottom:1105.381911px;}
.yf_c00398{bottom:1105.603404px;}
.ye_c00398{bottom:1105.917553px;}
.yd_c00398{bottom:1138.622846px;}
.yc_c00398{bottom:1139.228213px;}
.yb_c00398{bottom:1139.634144px;}
.ya_c00398{bottom:1140.037308px;}
.y9_c00398{bottom:1140.834685px;}
.y8_c00398{bottom:1141.133589px;}
.y7_c00398{bottom:1141.840733px;}
.y6_c00398{bottom:1142.526141px;}
.y5_c00398{bottom:1143.427631px;}
.y4_c00398{bottom:1144.108003px;}
.y3_c00398{bottom:1144.406516px;}
.y2_c00398{bottom:1144.800000px;}
.y1_c00398{bottom:1202.034000px;}
.h12_c00398{height:42.002100px;}
.h11_c00398{height:48.005400px;}
.h4_c00398{height:66.002673px;}
.h3_c00398{height:72.002916px;}
.h7_c00398{height:72.005184px;}
.h9_c00398{height:72.008100px;}
.hc_c00398{height:72.009215px;}
.h5_c00398{height:78.003159px;}
.hb_c00398{height:78.008775px;}
.hf_c00398{height:78.009983px;}
.h8_c00398{height:84.006048px;}
.ha_c00398{height:84.009449px;}
.hd_c00398{height:84.010751px;}
.h2_c00398{height:90.000000px;}
.h10_c00398{height:90.005445px;}
.he_c00398{height:90.011519px;}
.h6_c00398{height:102.004131px;}
.h1_c00398{height:1251.000000px;}
.h0_c00398{height:1251.150000px;}
.w0_c00398{width:915.000000px;}
.x0_c00398{left:0.000000px;}
.x99_c00398{left:138.091500px;}
.x53_c00398{left:140.270124px;}
.x17_c00398{left:142.203486px;}
.x3_c00398{left:143.292000px;}
.xf_c00398{left:144.380674px;}
.x58_c00398{left:162.173226px;}
.x81_c00398{left:173.227356px;}
.x31_c00398{left:174.871434px;}
.x84_c00398{left:184.221012px;}
.x4_c00398{left:187.012500px;}
.x70_c00398{left:194.561693px;}
.x75_c00398{left:203.479793px;}
.x10_c00398{left:207.288443px;}
.x9b_c00398{left:215.989020px;}
.x8f_c00398{left:217.071732px;}
.x5_c00398{left:220.180500px;}
.x5e_c00398{left:228.313332px;}
.x2a_c00398{left:239.646617px;}
.x46_c00398{left:249.585000px;}
.x11_c00398{left:251.567035px;}
.x96_c00398{left:258.723000px;}
.x87_c00398{left:260.623404px;}
.x21_c00398{left:262.059680px;}
.x94_c00398{left:269.484036px;}
.x9c_c00398{left:270.697110px;}
.x4b_c00398{left:272.066184px;}
.x37_c00398{left:273.246546px;}
.x62_c00398{left:281.944500px;}
.x47_c00398{left:283.039500px;}
.x76_c00398{left:292.775820px;}
.x32_c00398{left:294.482094px;}
.x6_c00398{left:295.777500px;}
.x68_c00398{left:304.097700px;}
.x18_c00398{left:306.889941px;}
.x71_c00398{left:314.687115px;}
.x90_c00398{left:315.903528px;}
.x38_c00398{left:318.338705px;}
.x4c_c00398{left:326.609256px;}
.x85_c00398{left:336.159588px;}
.x89_c00398{left:337.520280px;}
.x19_c00398{left:338.744805px;}
.x54_c00398{left:340.030818px;}
.x7a_c00398{left:347.242500px;}
.x2b_c00398{left:350.340102px;}
.x95_c00398{left:357.763788px;}
.x5f_c00398{left:359.005614px;}
.x42_c00398{left:361.535225px;}
.x9f_c00398{left:369.177000px;}
.x69_c00398{left:370.565183px;}
.x3d_c00398{left:372.451041px;}
.x9a_c00398{left:378.582000px;}
.x9d_c00398{left:380.252903px;}
.x60_c00398{left:381.685194px;}
.x22_c00398{left:382.709600px;}
.x4d_c00398{left:393.300354px;}
.x39_c00398{left:394.481874px;}
.x7_c00398{left:395.943000px;}
.x97_c00398{left:402.126000px;}
.x91_c00398{left:403.665492px;}
.x59_c00398{left:404.819226px;}
.x12_c00398{left:405.994597px;}
.xa0_c00398{left:413.739000px;}
.x43_c00398{left:415.538099px;}
.x23_c00398{left:417.005289px;}
.x63_c00398{left:425.328000px;}
.x33_c00398{left:427.304984px;}
.x55_c00398{left:436.659996px;}
.x1a_c00398{left:438.671505px;}
.x1_c00398{left:440.100000px;}
.x92_c00398{left:446.600484px;}
.x4e_c00398{left:449.748588px;}
.x8a_c00398{left:456.929700px;}
.x7b_c00398{left:457.966500px;}
.x24_c00398{left:460.507898px;}
.xa1_c00398{left:468.295500px;}
.x1b_c00398{left:470.806869px;}
.x8_c00398{left:472.099500px;}
.x8b_c00398{left:480.156060px;}
.x48_c00398{left:481.510500px;}
.x2c_c00398{left:483.481290px;}
.x2_c00398{left:484.650000px;}
.x64_c00398{left:492.027000px;}
.x5a_c00398{left:493.401726px;}
.x3a_c00398{left:494.925515px;}
.x77_c00398{left:502.857270px;}
.x25_c00398{left:504.223506px;}
.x34_c00398{left:505.342388px;}
.x72_c00398{left:514.035360px;}
.x2d_c00398{left:516.138087px;}
.x88_c00398{left:523.881480px;}
.x4f_c00398{left:526.162014px;}
.x1c_c00398{left:527.760408px;}
.x7c_c00398{left:534.979500px;}
.x6a_c00398{left:536.355128px;}
.x3e_c00398{left:537.701556px;}
.x35_c00398{left:539.634509px;}
.x9e_c00398{left:545.537460px;}
.x8c_c00398{left:546.593616px;}
.x78_c00398{left:547.695795px;}
.x44_c00398{left:549.194426px;}
.x9_c00398{left:550.671000px;}
.x50_c00398{left:558.587232px;}
.x1d_c00398{left:560.428286px;}
.x7d_c00398{left:568.725000px;}
.x13_c00398{left:571.791064px;}
.x6b_c00398{left:580.370760px;}
.x5b_c00398{left:581.432226px;}
.xa_c00398{left:583.882500px;}
.x8d_c00398{left:590.836812px;}
.x26_c00398{left:593.064710px;}
.x3b_c00398{left:594.289061px;}
.x86_c00398{left:601.070340px;}
.x65_c00398{left:602.469000px;}
.x56_c00398{left:614.080248px;}
.x36_c00398{left:615.781886px;}
.x79_c00398{left:625.469805px;}
.x14_c00398{left:627.413062px;}
.x82_c00398{left:634.716156px;}
.x3f_c00398{left:638.691152px;}
.x6c_c00398{left:647.366287px;}
.x61_c00398{left:658.187460px;}
.x15_c00398{left:660.633264px;}
.x45_c00398{left:670.159713px;}
.x27_c00398{left:671.395508px;}
.xb_c00398{left:672.480000px;}
.x93_c00398{left:679.098504px;}
.x6d_c00398{left:680.813790px;}
.x2e_c00398{left:682.464086px;}
.x1e_c00398{left:683.566607px;}
.x7e_c00398{left:690.792000px;}
.x5c_c00398{left:691.877226px;}
.x28_c00398{left:694.046805px;}
.x40_c00398{left:703.792071px;}
.x6e_c00398{left:714.313793px;}
.x2f_c00398{left:715.951883px;}
.xc_c00398{left:717.276000px;}
.x7f_c00398{left:724.494000px;}
.x49_c00398{left:726.468000px;}
.x3c_c00398{left:737.124630px;}
.x57_c00398{left:748.322526px;}
.x1f_c00398{left:749.721389px;}
.x73_c00398{left:758.414535px;}
.x4a_c00398{left:760.183500px;}
.xd_c00398{left:762.379500px;}
.x8e_c00398{left:769.656168px;}
.x16_c00398{left:771.881774px;}
.x30_c00398{left:781.833977px;}
.x29_c00398{left:783.699495px;}
.x80_c00398{left:791.485500px;}
.x66_c00398{left:793.155000px;}
.x51_c00398{left:803.760324px;}
.x98_c00398{left:806.421000px;}
.x74_c00398{left:813.504293px;}
.x6f_c00398{left:814.506323px;}
.x5d_c00398{left:815.589726px;}
.x20_c00398{left:816.713198px;}
.x67_c00398{left:825.528000px;}
.x41_c00398{left:827.165964px;}
.xe_c00398{left:829.642500px;}
.x83_c00398{left:835.916316px;}
.x52_c00398{left:838.051704px;}
@media print{
.v0_c00398{vertical-align:0.000000pt;}
.ls0_c00398{letter-spacing:0.000000pt;}
.ws0_c00398{word-spacing:0.000000pt;}
.fs10_c00398{font-size:37.335200pt;}
.fsf_c00398{font-size:42.671466pt;}
.fs2_c00398{font-size:58.669043pt;}
.fs1_c00398{font-size:64.002592pt;}
.fs5_c00398{font-size:64.004608pt;}
.fs7_c00398{font-size:64.007200pt;}
.fsa_c00398{font-size:64.008191pt;}
.fs3_c00398{font-size:69.336141pt;}
.fs9_c00398{font-size:69.341133pt;}
.fsd_c00398{font-size:69.342207pt;}
.fs6_c00398{font-size:74.672042pt;}
.fs8_c00398{font-size:74.675066pt;}
.fsb_c00398{font-size:74.676223pt;}
.fs0_c00398{font-size:80.000000pt;}
.fse_c00398{font-size:80.004840pt;}
.fsc_c00398{font-size:80.010239pt;}
.fs4_c00398{font-size:90.670339pt;}
.y0_c00398{bottom:0.000000pt;}
.y14c_c00398{bottom:78.555760pt;}
.y14b_c00398{bottom:79.059933pt;}
.y14a_c00398{bottom:79.650573pt;}
.y149_c00398{bottom:79.938613pt;}
.y148_c00398{bottom:80.135520pt;}
.y147_c00398{bottom:80.531627pt;}
.y146_c00398{bottom:80.718840pt;}
.y145_c00398{bottom:81.407720pt;}
.y144_c00398{bottom:81.889880pt;}
.y143_c00398{bottom:82.083787pt;}
.y142_c00398{bottom:82.561333pt;}
.y141_c00398{bottom:109.075500pt;}
.y140_c00398{bottom:110.537253pt;}
.y13f_c00398{bottom:112.243333pt;}
.y13e_c00398{bottom:113.084433pt;}
.y13d_c00398{bottom:113.655580pt;}
.y13c_c00398{bottom:114.797580pt;}
.y13b_c00398{bottom:115.646780pt;}
.y13a_c00398{bottom:117.621800pt;}
.y139_c00398{bottom:119.031507pt;}
.y138_c00398{bottom:119.591200pt;}
.y137_c00398{bottom:120.960533pt;}
.y135_c00398{bottom:143.748000pt;}
.y136_c00398{bottom:146.954540pt;}
.y134_c00398{bottom:154.772459pt;}
.y133_c00398{bottom:155.575312pt;}
.y132_c00398{bottom:156.008565pt;}
.y131_c00398{bottom:156.333329pt;}
.y130_c00398{bottom:156.988211pt;}
.y12f_c00398{bottom:157.315805pt;}
.y12e_c00398{bottom:157.640276pt;}
.y12d_c00398{bottom:158.292840pt;}
.y12c_c00398{bottom:158.725565pt;}
.y12b_c00398{bottom:159.573387pt;}
.y12a_c00398{bottom:160.127728pt;}
.y129_c00398{bottom:160.544335pt;}
.y128_c00398{bottom:160.958551pt;}
.y127_c00398{bottom:161.280000pt;}
.y126_c00398{bottom:189.355893pt;}
.y125_c00398{bottom:189.935701pt;}
.y124_c00398{bottom:192.184661pt;}
.y123_c00398{bottom:192.941696pt;}
.y122_c00398{bottom:194.807947pt;}
.y121_c00398{bottom:195.574784pt;}
.y120_c00398{bottom:196.700789pt;}
.y11f_c00398{bottom:197.618048pt;}
.y11e_c00398{bottom:198.192384pt;}
.y11d_c00398{bottom:199.241109pt;}
.y11c_c00398{bottom:200.373141pt;}
.y111_c00398{bottom:221.481984pt;}
.y112_c00398{bottom:221.482240pt;}
.y114_c00398{bottom:221.482325pt;}
.y115_c00398{bottom:221.482475pt;}
.y117_c00398{bottom:221.482624pt;}
.y116_c00398{bottom:221.482667pt;}
.y113_c00398{bottom:221.482837pt;}
.y118_c00398{bottom:221.483115pt;}
.y11a_c00398{bottom:221.483328pt;}
.y119_c00398{bottom:221.483541pt;}
.y11b_c00398{bottom:221.483797pt;}
.y110_c00398{bottom:251.068619pt;}
.y10f_c00398{bottom:251.518293pt;}
.y10e_c00398{bottom:252.854133pt;}
.y10d_c00398{bottom:253.902795pt;}
.y10c_c00398{bottom:254.493355pt;}
.y10b_c00398{bottom:254.933419pt;}
.y10a_c00398{bottom:255.379563pt;}
.y109_c00398{bottom:255.689888pt;}
.y108_c00398{bottom:257.281461pt;}
.y107_c00398{bottom:258.026923pt;}
.y106_c00398{bottom:258.458112pt;}
.y105_c00398{bottom:259.479968pt;}
.y104_c00398{bottom:259.900267pt;}
.y103_c00398{bottom:283.971275pt;}
.y102_c00398{bottom:284.712053pt;}
.y101_c00398{bottom:286.129056pt;}
.y100_c00398{bottom:286.642240pt;}
.yff_c00398{bottom:287.372704pt;}
.yfe_c00398{bottom:287.887829pt;}
.yfd_c00398{bottom:289.663424pt;}
.yfc_c00398{bottom:291.067019pt;}
.yfb_c00398{bottom:291.584939pt;}
.yfa_c00398{bottom:292.112363pt;}
.yf9_c00398{bottom:292.975616pt;}
.yf8_c00398{bottom:293.505621pt;}
.yf7_c00398{bottom:315.092821pt;}
.yf6_c00398{bottom:316.802720pt;}
.yf5_c00398{bottom:317.798539pt;}
.yf4_c00398{bottom:319.471968pt;}
.yf3_c00398{bottom:320.806400pt;}
.yf2_c00398{bottom:321.282955pt;}
.yf1_c00398{bottom:322.441941pt;}
.yf0_c00398{bottom:323.102005pt;}
.yef_c00398{bottom:323.749909pt;}
.yee_c00398{bottom:345.969675pt;}
.yed_c00398{bottom:346.262507pt;}
.yec_c00398{bottom:346.679275pt;}
.yeb_c00398{bottom:347.044064pt;}
.yea_c00398{bottom:347.394560pt;}
.ye9_c00398{bottom:347.570784pt;}
.ye8_c00398{bottom:347.810795pt;}
.ye7_c00398{bottom:348.396597pt;}
.ye6_c00398{bottom:348.574357pt;}
.ye5_c00398{bottom:348.810507pt;}
.ye4_c00398{bottom:349.213792pt;}
.ye3_c00398{bottom:349.506411pt;}
.ye2_c00398{bottom:349.675221pt;}
.ye1_c00398{bottom:377.730880pt;}
.ye0_c00398{bottom:378.207232pt;}
.ydf_c00398{bottom:378.683648pt;}
.yde_c00398{bottom:379.162965pt;}
.ydd_c00398{bottom:380.408128pt;}
.ydc_c00398{bottom:380.899029pt;}
.ydb_c00398{bottom:381.378965pt;}
.yda_c00398{bottom:382.474261pt;}
.yd9_c00398{bottom:384.049003pt;}
.yd8_c00398{bottom:384.813056pt;}
.yd7_c00398{bottom:385.442667pt;}
.yd6_c00398{bottom:411.722467pt;}
.yd5_c00398{bottom:412.541267pt;}
.yd4_c00398{bottom:413.135027pt;}
.yd3_c00398{bottom:413.963967pt;}
.yd2_c00398{bottom:414.441787pt;}
.yd1_c00398{bottom:414.792907pt;}
.yd0_c00398{bottom:415.259707pt;}
.ycf_c00398{bottom:415.850247pt;}
.yce_c00398{bottom:416.682747pt;}
.ycd_c00398{bottom:417.378920pt;}
.ycc_c00398{bottom:417.634640pt;}
.ycb_c00398{bottom:418.311327pt;}
.yca_c00398{bottom:441.241453pt;}
.yc9_c00398{bottom:441.486540pt;}
.yc8_c00398{bottom:441.786600pt;}
.yc7_c00398{bottom:441.979393pt;}
.yc6_c00398{bottom:442.125440pt;}
.yc5_c00398{bottom:442.474333pt;}
.yc4_c00398{bottom:442.571107pt;}
.yc3_c00398{bottom:442.962320pt;}
.yc2_c00398{bottom:443.111187pt;}
.yc1_c00398{bottom:443.549367pt;}
.yc0_c00398{bottom:444.136153pt;}
.ybf_c00398{bottom:444.231713pt;}
.ybe_c00398{bottom:473.578400pt;}
.ybd_c00398{bottom:474.481173pt;}
.ybc_c00398{bottom:474.757680pt;}
.ybb_c00398{bottom:474.960193pt;}
.yba_c00398{bottom:475.238227pt;}
.yb9_c00398{bottom:475.511513pt;}
.yb8_c00398{bottom:476.273400pt;}
.yb7_c00398{bottom:476.678053pt;}
.yb6_c00398{bottom:477.020213pt;}
.yb5_c00398{bottom:477.353947pt;}
.yb4_c00398{bottom:505.333180pt;}
.yb3_c00398{bottom:505.987493pt;}
.yb2_c00398{bottom:506.311667pt;}
.yb1_c00398{bottom:506.639640pt;}
.yb0_c00398{bottom:506.966913pt;}
.yaf_c00398{bottom:507.621467pt;}
.yae_c00398{bottom:508.052307pt;}
.yad_c00398{bottom:508.908240pt;}
.yac_c00398{bottom:509.673373pt;}
.yab_c00398{bottom:510.323553pt;}
.yaa_c00398{bottom:510.644760pt;}
.ya9_c00398{bottom:511.917213pt;}
.ya8_c00398{bottom:537.352127pt;}
.ya7_c00398{bottom:537.783767pt;}
.ya6_c00398{bottom:539.429687pt;}
.ya5_c00398{bottom:540.326247pt;}
.ya4_c00398{bottom:541.798807pt;}
.ya3_c00398{bottom:542.688127pt;}
.ya2_c00398{bottom:543.112507pt;}
.ya1_c00398{bottom:543.559567pt;}
.ya0_c00398{bottom:544.599907pt;}
.y9f_c00398{bottom:545.042667pt;}
.y9e_c00398{bottom:571.344757pt;}
.y9d_c00398{bottom:571.809765pt;}
.y9c_c00398{bottom:572.442928pt;}
.y9b_c00398{bottom:572.990523pt;}
.y9a_c00398{bottom:573.311307pt;}
.y99_c00398{bottom:573.473211pt;}
.y98_c00398{bottom:573.935515pt;}
.y97_c00398{bottom:574.401861pt;}
.y96_c00398{bottom:575.029968pt;}
.y95_c00398{bottom:599.986165pt;}
.y94_c00398{bottom:601.305765pt;}
.y93_c00398{bottom:602.135141pt;}
.y92_c00398{bottom:602.483845pt;}
.y91_c00398{bottom:603.422837pt;}
.y90_c00398{bottom:604.367717pt;}
.y8f_c00398{bottom:604.721589pt;}
.y8e_c00398{bottom:605.551077pt;}
.y8d_c00398{bottom:606.484133pt;}
.y8c_c00398{bottom:606.955941pt;}
.y8b_c00398{bottom:607.191813pt;}
.y8a_c00398{bottom:632.085781pt;}
.y89_c00398{bottom:632.508261pt;}
.y88_c00398{bottom:633.328731pt;}
.y87_c00398{bottom:634.178880pt;}
.y86_c00398{bottom:634.994848pt;}
.y85_c00398{bottom:636.386075pt;}
.y84_c00398{bottom:637.330069pt;}
.y83_c00398{bottom:637.588811pt;}
.y82_c00398{bottom:638.166789pt;}
.y81_c00398{bottom:639.236315pt;}
.y80_c00398{bottom:640.075643pt;}
.y7f_c00398{bottom:663.383733pt;}
.y7e_c00398{bottom:663.536144pt;}
.y7d_c00398{bottom:663.729013pt;}
.y7c_c00398{bottom:664.322821pt;}
.y7b_c00398{bottom:664.625771pt;}
.y7a_c00398{bottom:664.770277pt;}
.y79_c00398{bottom:665.109285pt;}
.y78_c00398{bottom:665.360683pt;}
.y77_c00398{bottom:665.657328pt;}
.y76_c00398{bottom:665.900405pt;}
.y75_c00398{bottom:666.477573pt;}
.y74_c00398{bottom:696.314949pt;}
.y73_c00398{bottom:696.674581pt;}
.y72_c00398{bottom:698.092069pt;}
.y71_c00398{bottom:699.287461pt;}
.y70_c00398{bottom:699.866437pt;}
.y6f_c00398{bottom:700.813573pt;}
.y6e_c00398{bottom:701.404485pt;}
.y6d_c00398{bottom:701.761333pt;}
.y6c_c00398{bottom:729.237049pt;}
.y61_c00398{bottom:761.681663pt;}
.y62_c00398{bottom:761.681965pt;}
.y6a_c00398{bottom:761.681976pt;}
.y69_c00398{bottom:761.682005pt;}
.y63_c00398{bottom:761.682457pt;}
.y6b_c00398{bottom:761.682468pt;}
.y68_c00398{bottom:761.682580pt;}
.y64_c00398{bottom:761.682801pt;}
.y65_c00398{bottom:761.682813pt;}
.y67_c00398{bottom:761.682983pt;}
.y66_c00398{bottom:761.683371pt;}
.y60_c00398{bottom:791.663152pt;}
.y5f_c00398{bottom:792.462480pt;}
.y5e_c00398{bottom:792.759485pt;}
.y5d_c00398{bottom:793.337631pt;}
.y5c_c00398{bottom:794.234888pt;}
.y5b_c00398{bottom:794.827135pt;}
.y5a_c00398{bottom:795.410693pt;}
.y59_c00398{bottom:795.703571pt;}
.y58_c00398{bottom:796.401428pt;}
.y57_c00398{bottom:796.682112pt;}
.y56_c00398{bottom:796.891053pt;}
.y55_c00398{bottom:797.755476pt;}
.y4a_c00398{bottom:824.004640pt;}
.y4b_c00398{bottom:824.005304pt;}
.y4c_c00398{bottom:824.005876pt;}
.y4d_c00398{bottom:824.006101pt;}
.y4e_c00398{bottom:824.006727pt;}
.y4f_c00398{bottom:824.006964pt;}
.y52_c00398{bottom:824.007303pt;}
.y54_c00398{bottom:824.007377pt;}
.y51_c00398{bottom:824.007451pt;}
.y50_c00398{bottom:824.007480pt;}
.y53_c00398{bottom:824.007632pt;}
.y49_c00398{bottom:854.726319pt;}
.y48_c00398{bottom:854.941501pt;}
.y47_c00398{bottom:855.148347pt;}
.y46_c00398{bottom:855.771280pt;}
.y45_c00398{bottom:856.244448pt;}
.y44_c00398{bottom:856.457447pt;}
.y43_c00398{bottom:856.943068pt;}
.y42_c00398{bottom:857.491228pt;}
.y41_c00398{bottom:857.769632pt;}
.y40_c00398{bottom:858.038007pt;}
.y3f_c00398{bottom:858.310401pt;}
.y3e_c00398{bottom:858.513167pt;}
.y3d_c00398{bottom:858.712765pt;}
.y3c_c00398{bottom:886.800151pt;}
.y3b_c00398{bottom:887.268536pt;}
.y3a_c00398{bottom:887.507103pt;}
.y39_c00398{bottom:887.904697pt;}
.y38_c00398{bottom:888.689699pt;}
.y37_c00398{bottom:888.921617pt;}
.y36_c00398{bottom:889.640304pt;}
.y35_c00398{bottom:889.869404pt;}
.y34_c00398{bottom:890.182601pt;}
.y33_c00398{bottom:890.657611pt;}
.y32_c00398{bottom:890.886579pt;}
.y31_c00398{bottom:891.356992pt;}
.y30_c00398{bottom:918.295779pt;}
.y2f_c00398{bottom:918.596493pt;}
.y2e_c00398{bottom:919.093007pt;}
.y2d_c00398{bottom:919.294219pt;}
.y2c_c00398{bottom:919.990204pt;}
.y2b_c00398{bottom:920.779607pt;}
.y2a_c00398{bottom:921.168001pt;}
.y29_c00398{bottom:921.554692pt;}
.y28_c00398{bottom:921.859727pt;}
.y27_c00398{bottom:922.632544pt;}
.y26_c00398{bottom:922.931601pt;}
.y25_c00398{bottom:923.419547pt;}
.y24_c00398{bottom:923.997044pt;}
.y23_c00398{bottom:948.720821pt;}
.y22_c00398{bottom:949.078075pt;}
.y21_c00398{bottom:949.431299pt;}
.y20_c00398{bottom:949.735095pt;}
.y1f_c00398{bottom:950.088379pt;}
.y1e_c00398{bottom:950.263048pt;}
.y1d_c00398{bottom:950.566664pt;}
.y1c_c00398{bottom:950.738407pt;}
.y1b_c00398{bottom:951.271132pt;}
.y1a_c00398{bottom:951.440631pt;}
.y19_c00398{bottom:951.738381pt;}
.y18_c00398{bottom:952.318087pt;}
.y17_c00398{bottom:980.249997pt;}
.y16_c00398{bottom:980.743953pt;}
.y15_c00398{bottom:980.891039pt;}
.y14_c00398{bottom:981.138665pt;}
.y13_c00398{bottom:981.725644pt;}
.y12_c00398{bottom:981.875656pt;}
.y11_c00398{bottom:982.368737pt;}
.y10_c00398{bottom:982.561699pt;}
.yf_c00398{bottom:982.758581pt;}
.ye_c00398{bottom:983.037825pt;}
.yd_c00398{bottom:1012.109196pt;}
.yc_c00398{bottom:1012.647300pt;}
.yb_c00398{bottom:1013.008128pt;}
.ya_c00398{bottom:1013.366496pt;}
.y9_c00398{bottom:1014.075276pt;}
.y8_c00398{bottom:1014.340968pt;}
.y7_c00398{bottom:1014.969540pt;}
.y6_c00398{bottom:1015.578792pt;}
.y5_c00398{bottom:1016.380116pt;}
.y4_c00398{bottom:1016.984892pt;}
.y3_c00398{bottom:1017.250236pt;}
.y2_c00398{bottom:1017.600000pt;}
.y1_c00398{bottom:1068.474667pt;}
.h12_c00398{height:37.335200pt;}
.h11_c00398{height:42.671466pt;}
.h4_c00398{height:58.669043pt;}
.h3_c00398{height:64.002592pt;}
.h7_c00398{height:64.004608pt;}
.h9_c00398{height:64.007200pt;}
.hc_c00398{height:64.008191pt;}
.h5_c00398{height:69.336141pt;}
.hb_c00398{height:69.341133pt;}
.hf_c00398{height:69.342207pt;}
.h8_c00398{height:74.672042pt;}
.ha_c00398{height:74.675066pt;}
.hd_c00398{height:74.676223pt;}
.h2_c00398{height:80.000000pt;}
.h10_c00398{height:80.004840pt;}
.he_c00398{height:80.010239pt;}
.h6_c00398{height:90.670339pt;}
.h1_c00398{height:1112.000000pt;}
.h0_c00398{height:1112.133333pt;}
.w0_c00398{width:813.333333pt;}
.x0_c00398{left:0.000000pt;}
.x99_c00398{left:122.748000pt;}
.x53_c00398{left:124.684555pt;}
.x17_c00398{left:126.403099pt;}
.x3_c00398{left:127.370667pt;}
.xf_c00398{left:128.338377pt;}
.x58_c00398{left:144.153979pt;}
.x81_c00398{left:153.979872pt;}
.x31_c00398{left:155.441275pt;}
.x84_c00398{left:163.752011pt;}
.x4_c00398{left:166.233333pt;}
.x70_c00398{left:172.943727pt;}
.x75_c00398{left:180.870927pt;}
.x10_c00398{left:184.256393pt;}
.x9b_c00398{left:191.990240pt;}
.x8f_c00398{left:192.952651pt;}
.x5_c00398{left:195.716000pt;}
.x5e_c00398{left:202.945184pt;}
.x2a_c00398{left:213.019215pt;}
.x46_c00398{left:221.853333pt;}
.x11_c00398{left:223.615143pt;}
.x96_c00398{left:229.976000pt;}
.x87_c00398{left:231.665248pt;}
.x21_c00398{left:232.941937pt;}
.x94_c00398{left:239.541365pt;}
.x9c_c00398{left:240.619653pt;}
.x4b_c00398{left:241.836608pt;}
.x37_c00398{left:242.885819pt;}
.x62_c00398{left:250.617333pt;}
.x47_c00398{left:251.590667pt;}
.x76_c00398{left:260.245173pt;}
.x32_c00398{left:261.761861pt;}
.x6_c00398{left:262.913333pt;}
.x68_c00398{left:270.309067pt;}
.x18_c00398{left:272.791059pt;}
.x71_c00398{left:279.721880pt;}
.x90_c00398{left:280.803136pt;}
.x38_c00398{left:282.967737pt;}
.x4c_c00398{left:290.319339pt;}
.x85_c00398{left:298.808523pt;}
.x89_c00398{left:300.018027pt;}
.x19_c00398{left:301.106493pt;}
.x54_c00398{left:302.249616pt;}
.x7a_c00398{left:308.660000pt;}
.x2b_c00398{left:311.413424pt;}
.x95_c00398{left:318.012256pt;}
.x5f_c00398{left:319.116101pt;}
.x42_c00398{left:321.364644pt;}
.x9f_c00398{left:328.157333pt;}
.x69_c00398{left:329.391273pt;}
.x3d_c00398{left:331.067592pt;}
.x9a_c00398{left:336.517333pt;}
.x9d_c00398{left:338.002580pt;}
.x60_c00398{left:339.275728pt;}
.x22_c00398{left:340.186311pt;}
.x4d_c00398{left:349.600315pt;}
.x39_c00398{left:350.650555pt;}
.x7_c00398{left:351.949333pt;}
.x97_c00398{left:357.445333pt;}
.x91_c00398{left:358.813771pt;}
.x59_c00398{left:359.839312pt;}
.x12_c00398{left:360.884087pt;}
.xa0_c00398{left:367.768000pt;}
.x43_c00398{left:369.367199pt;}
.x23_c00398{left:370.671368pt;}
.x63_c00398{left:378.069333pt;}
.x33_c00398{left:379.826652pt;}
.x55_c00398{left:388.142219pt;}
.x1a_c00398{left:389.930227pt;}
.x1_c00398{left:391.200000pt;}
.x92_c00398{left:396.978208pt;}
.x4e_c00398{left:399.776523pt;}
.x8a_c00398{left:406.159733pt;}
.x7b_c00398{left:407.081333pt;}
.x24_c00398{left:409.340353pt;}
.xa1_c00398{left:416.262667pt;}
.x1b_c00398{left:418.494995pt;}
.x8_c00398{left:419.644000pt;}
.x8b_c00398{left:426.805387pt;}
.x48_c00398{left:428.009333pt;}
.x2c_c00398{left:429.761147pt;}
.x2_c00398{left:430.800000pt;}
.x64_c00398{left:437.357333pt;}
.x5a_c00398{left:438.579312pt;}
.x3a_c00398{left:439.933791pt;}
.x77_c00398{left:446.984240pt;}
.x25_c00398{left:448.198672pt;}
.x34_c00398{left:449.193233pt;}
.x72_c00398{left:456.920320pt;}
.x2d_c00398{left:458.789411pt;}
.x88_c00398{left:465.672427pt;}
.x4f_c00398{left:467.699568pt;}
.x1c_c00398{left:469.120363pt;}
.x7c_c00398{left:475.537333pt;}
.x6a_c00398{left:476.760113pt;}
.x3e_c00398{left:477.956939pt;}
.x35_c00398{left:479.675119pt;}
.x9e_c00398{left:484.922187pt;}
.x8c_c00398{left:485.860992pt;}
.x78_c00398{left:486.840707pt;}
.x44_c00398{left:488.172823pt;}
.x9_c00398{left:489.485333pt;}
.x50_c00398{left:496.521984pt;}
.x1d_c00398{left:498.158476pt;}
.x7d_c00398{left:505.533333pt;}
.x13_c00398{left:508.258724pt;}
.x6b_c00398{left:515.885120pt;}
.x5b_c00398{left:516.828645pt;}
.xa_c00398{left:519.006667pt;}
.x8d_c00398{left:525.188277pt;}
.x26_c00398{left:527.168631pt;}
.x3b_c00398{left:528.256943pt;}
.x86_c00398{left:534.284747pt;}
.x65_c00398{left:535.528000pt;}
.x56_c00398{left:545.849109pt;}
.x36_c00398{left:547.361676pt;}
.x79_c00398{left:555.973160pt;}
.x14_c00398{left:557.700500pt;}
.x82_c00398{left:564.192139pt;}
.x3f_c00398{left:567.725468pt;}
.x6c_c00398{left:575.436700pt;}
.x61_c00398{left:585.055520pt;}
.x15_c00398{left:587.229568pt;}
.x45_c00398{left:595.697523pt;}
.x27_c00398{left:596.796007pt;}
.xb_c00398{left:597.760000pt;}
.x93_c00398{left:603.643115pt;}
.x6d_c00398{left:605.167813pt;}
.x2e_c00398{left:606.634743pt;}
.x1e_c00398{left:607.614761pt;}
.x7e_c00398{left:614.037333pt;}
.x5c_c00398{left:615.001979pt;}
.x28_c00398{left:616.930493pt;}
.x40_c00398{left:625.592952pt;}
.x6e_c00398{left:634.945593pt;}
.x2f_c00398{left:636.401673pt;}
.xc_c00398{left:637.578667pt;}
.x7f_c00398{left:643.994667pt;}
.x49_c00398{left:645.749333pt;}
.x3c_c00398{left:655.221893pt;}
.x57_c00398{left:665.175579pt;}
.x1f_c00398{left:666.419012pt;}
.x73_c00398{left:674.146253pt;}
.x4a_c00398{left:675.718667pt;}
.xd_c00398{left:677.670667pt;}
.x8e_c00398{left:684.138816pt;}
.x16_c00398{left:686.117132pt;}
.x30_c00398{left:694.963535pt;}
.x29_c00398{left:696.621773pt;}
.x80_c00398{left:703.542667pt;}
.x66_c00398{left:705.026667pt;}
.x51_c00398{left:714.453621pt;}
.x98_c00398{left:716.818667pt;}
.x74_c00398{left:723.114927pt;}
.x6f_c00398{left:724.005620pt;}
.x5d_c00398{left:724.968645pt;}
.x20_c00398{left:725.967287pt;}
.x67_c00398{left:733.802667pt;}
.x41_c00398{left:735.258635pt;}
.xe_c00398{left:737.460000pt;}
.x83_c00398{left:743.036725pt;}
.x52_c00398{left:744.934848pt;}
}





/* 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_c00399 {
    display:none;
  }
  .loading-indicator_c00399.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00399 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_c00399 { 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_c00399" -> "#page-container .classname_c00399")
 */
.pf_c00399 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00399 { /* 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_c00399.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00399 { /* 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_c00399 { /* 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_c00399 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00399 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00399 {overflow:visible;}
  }
}
.c_c00399 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00399 { /* 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_c00399:after { /* webkit #35443 */
  content: '';
}
.t_c00399:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00399 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 */
}
.__c00399 { /* 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_c00399 { /* info for Javascript */
  display:none;
}
.l_c00399 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00399 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00399 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00399: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_c00399 {
    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_c00399.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00399.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_c00399 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00399{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00399;src:url('chunks/assets/font_c605e72f209fc835e906f064.woff2')format("woff");}.ff1_c00399{font-family:ff1_c00399;line-height:1.000000;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;}
.ma3_c00399{transform:matrix(0.007483,-0.000180,0.005998,0.249928,0,0);-ms-transform:matrix(0.007483,-0.000180,0.005998,0.249928,0,0);-webkit-transform:matrix(0.007483,-0.000180,0.005998,0.249928,0,0);}
.m27_c00399{transform:matrix(0.009790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.009790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.009790,0.000000,0.000000,0.250000,0,0);}
.m28_c00399{transform:matrix(0.020185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.020185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.020185,0.000000,0.000000,0.250000,0,0);}
.m97_c00399{transform:matrix(0.030099,-0.000602,0.004999,0.249950,0,0);-ms-transform:matrix(0.030099,-0.000602,0.004999,0.249950,0,0);-webkit-transform:matrix(0.030099,-0.000602,0.004999,0.249950,0,0);}
.m58_c00399{transform:matrix(0.041825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.041825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.041825,0.000000,0.000000,0.250000,0,0);}
.m7a_c00399{transform:matrix(0.072860,-0.001457,0.004999,0.249950,0,0);-ms-transform:matrix(0.072860,-0.001457,0.004999,0.249950,0,0);-webkit-transform:matrix(0.072860,-0.001457,0.004999,0.249950,0,0);}
.m95_c00399{transform:matrix(0.097680,-0.001954,0.004999,0.249950,0,0);-ms-transform:matrix(0.097680,-0.001954,0.004999,0.249950,0,0);-webkit-transform:matrix(0.097680,-0.001954,0.004999,0.249950,0,0);}
.m89_c00399{transform:matrix(0.151790,-0.003036,0.004999,0.249950,0,0);-ms-transform:matrix(0.151790,-0.003036,0.004999,0.249950,0,0);-webkit-transform:matrix(0.151790,-0.003036,0.004999,0.249950,0,0);}
.m7b_c00399{transform:matrix(0.159673,-0.003193,0.004999,0.249950,0,0);-ms-transform:matrix(0.159673,-0.003193,0.004999,0.249950,0,0);-webkit-transform:matrix(0.159673,-0.003193,0.004999,0.249950,0,0);}
.ma5_c00399{transform:matrix(0.160214,-0.003845,0.005998,0.249928,0,0);-ms-transform:matrix(0.160214,-0.003845,0.005998,0.249928,0,0);-webkit-transform:matrix(0.160214,-0.003845,0.005998,0.249928,0,0);}
.m9e_c00399{transform:matrix(0.170041,-0.004081,0.005998,0.249928,0,0);-ms-transform:matrix(0.170041,-0.004081,0.005998,0.249928,0,0);-webkit-transform:matrix(0.170041,-0.004081,0.005998,0.249928,0,0);}
.m8c_c00399{transform:matrix(0.170756,-0.003415,0.004999,0.249950,0,0);-ms-transform:matrix(0.170756,-0.003415,0.004999,0.249950,0,0);-webkit-transform:matrix(0.170756,-0.003415,0.004999,0.249950,0,0);}
.m55_c00399{transform:matrix(0.171945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171945,0.000000,0.000000,0.250000,0,0);}
.m51_c00399{transform:matrix(0.174860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174860,0.000000,0.000000,0.250000,0,0);}
.m91_c00399{transform:matrix(0.176005,-0.003520,0.004999,0.249950,0,0);-ms-transform:matrix(0.176005,-0.003520,0.004999,0.249950,0,0);-webkit-transform:matrix(0.176005,-0.003520,0.004999,0.249950,0,0);}
.m92_c00399{transform:matrix(0.176640,-0.003533,0.004999,0.249950,0,0);-ms-transform:matrix(0.176640,-0.003533,0.004999,0.249950,0,0);-webkit-transform:matrix(0.176640,-0.003533,0.004999,0.249950,0,0);}
.m9b_c00399{transform:matrix(0.177634,-0.004263,0.005998,0.249928,0,0);-ms-transform:matrix(0.177634,-0.004263,0.005998,0.249928,0,0);-webkit-transform:matrix(0.177634,-0.004263,0.005998,0.249928,0,0);}
.m8f_c00399{transform:matrix(0.178369,-0.003567,0.004999,0.249950,0,0);-ms-transform:matrix(0.178369,-0.003567,0.004999,0.249950,0,0);-webkit-transform:matrix(0.178369,-0.003567,0.004999,0.249950,0,0);}
.m8e_c00399{transform:matrix(0.178664,-0.003573,0.004999,0.249950,0,0);-ms-transform:matrix(0.178664,-0.003573,0.004999,0.249950,0,0);-webkit-transform:matrix(0.178664,-0.003573,0.004999,0.249950,0,0);}
.m10_c00399{transform:matrix(0.186690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186690,0.000000,0.000000,0.250000,0,0);}
.m50_c00399{transform:matrix(0.186955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186955,0.000000,0.000000,0.250000,0,0);}
.m48_c00399{transform:matrix(0.187705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187705,0.000000,0.000000,0.250000,0,0);}
.m8d_c00399{transform:matrix(0.190357,-0.003807,0.004999,0.249950,0,0);-ms-transform:matrix(0.190357,-0.003807,0.004999,0.249950,0,0);-webkit-transform:matrix(0.190357,-0.003807,0.004999,0.249950,0,0);}
.m9c_c00399{transform:matrix(0.190605,-0.004575,0.005998,0.249928,0,0);-ms-transform:matrix(0.190605,-0.004575,0.005998,0.249928,0,0);-webkit-transform:matrix(0.190605,-0.004575,0.005998,0.249928,0,0);}
.m11_c00399{transform:matrix(0.192110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192110,0.000000,0.000000,0.250000,0,0);}
.m90_c00399{transform:matrix(0.193876,-0.003878,0.004999,0.249950,0,0);-ms-transform:matrix(0.193876,-0.003878,0.004999,0.249950,0,0);-webkit-transform:matrix(0.193876,-0.003878,0.004999,0.249950,0,0);}
.m1_c00399{transform:matrix(0.195515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195515,0.000000,0.000000,0.250000,0,0);}
.m9a_c00399{transform:matrix(0.196423,-0.004714,0.005998,0.249928,0,0);-ms-transform:matrix(0.196423,-0.004714,0.005998,0.249928,0,0);-webkit-transform:matrix(0.196423,-0.004714,0.005998,0.249928,0,0);}
.m18_c00399{transform:matrix(0.197515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197515,0.000000,0.000000,0.250000,0,0);}
.m14_c00399{transform:matrix(0.199510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199510,0.000000,0.000000,0.250000,0,0);}
.m9d_c00399{transform:matrix(0.202517,-0.004860,0.005998,0.249928,0,0);-ms-transform:matrix(0.202517,-0.004860,0.005998,0.249928,0,0);-webkit-transform:matrix(0.202517,-0.004860,0.005998,0.249928,0,0);}
.m81_c00399{transform:matrix(0.202984,-0.004060,0.004999,0.249950,0,0);-ms-transform:matrix(0.202984,-0.004060,0.004999,0.249950,0,0);-webkit-transform:matrix(0.202984,-0.004060,0.004999,0.249950,0,0);}
.m6_c00399{transform:matrix(0.204460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204460,0.000000,0.000000,0.250000,0,0);}
.ma8_c00399{transform:matrix(0.204491,-0.004908,0.005998,0.249928,0,0);-ms-transform:matrix(0.204491,-0.004908,0.005998,0.249928,0,0);-webkit-transform:matrix(0.204491,-0.004908,0.005998,0.249928,0,0);}
.m4e_c00399{transform:matrix(0.205340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205340,0.000000,0.000000,0.250000,0,0);}
.ma6_c00399{transform:matrix(0.206136,-0.004947,0.005998,0.249928,0,0);-ms-transform:matrix(0.206136,-0.004947,0.005998,0.249928,0,0);-webkit-transform:matrix(0.206136,-0.004947,0.005998,0.249928,0,0);}
.mf_c00399{transform:matrix(0.208535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208535,0.000000,0.000000,0.250000,0,0);}
.m56_c00399{transform:matrix(0.208680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208680,0.000000,0.000000,0.250000,0,0);}
.m83_c00399{transform:matrix(0.208978,-0.004180,0.004999,0.249950,0,0);-ms-transform:matrix(0.208978,-0.004180,0.004999,0.249950,0,0);-webkit-transform:matrix(0.208978,-0.004180,0.004999,0.249950,0,0);}
.m53_c00399{transform:matrix(0.212075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212075,0.000000,0.000000,0.250000,0,0);}
.m6f_c00399{transform:matrix(0.212708,-0.005530,0.006498,0.249916,0,0);-ms-transform:matrix(0.212708,-0.005530,0.006498,0.249916,0,0);-webkit-transform:matrix(0.212708,-0.005530,0.006498,0.249916,0,0);}
.m80_c00399{transform:matrix(0.212912,-0.004258,0.004999,0.249950,0,0);-ms-transform:matrix(0.212912,-0.004258,0.004999,0.249950,0,0);-webkit-transform:matrix(0.212912,-0.004258,0.004999,0.249950,0,0);}
.ma4_c00399{transform:matrix(0.213878,-0.005133,0.005998,0.249928,0,0);-ms-transform:matrix(0.213878,-0.005133,0.005998,0.249928,0,0);-webkit-transform:matrix(0.213878,-0.005133,0.005998,0.249928,0,0);}
.m84_c00399{transform:matrix(0.214127,-0.004283,0.004999,0.249950,0,0);-ms-transform:matrix(0.214127,-0.004283,0.004999,0.249950,0,0);-webkit-transform:matrix(0.214127,-0.004283,0.004999,0.249950,0,0);}
.m6d_c00399{transform:matrix(0.214677,-0.005582,0.006498,0.249916,0,0);-ms-transform:matrix(0.214677,-0.005582,0.006498,0.249916,0,0);-webkit-transform:matrix(0.214677,-0.005582,0.006498,0.249916,0,0);}
.m45_c00399{transform:matrix(0.214955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214955,0.000000,0.000000,0.250000,0,0);}
.m67_c00399{transform:matrix(0.215687,-0.005608,0.006498,0.249916,0,0);-ms-transform:matrix(0.215687,-0.005608,0.006498,0.249916,0,0);-webkit-transform:matrix(0.215687,-0.005608,0.006498,0.249916,0,0);}
.m69_c00399{transform:matrix(0.216272,-0.005623,0.006498,0.249916,0,0);-ms-transform:matrix(0.216272,-0.005623,0.006498,0.249916,0,0);-webkit-transform:matrix(0.216272,-0.005623,0.006498,0.249916,0,0);}
.m44_c00399{transform:matrix(0.216335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216335,0.000000,0.000000,0.250000,0,0);}
.ma_c00399{transform:matrix(0.216525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216525,0.000000,0.000000,0.250000,0,0);}
.m7e_c00399{transform:matrix(0.216662,-0.004333,0.004999,0.249950,0,0);-ms-transform:matrix(0.216662,-0.004333,0.004999,0.249950,0,0);-webkit-transform:matrix(0.216662,-0.004333,0.004999,0.249950,0,0);}
.m3_c00399{transform:matrix(0.217365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217365,0.000000,0.000000,0.250000,0,0);}
.m9f_c00399{transform:matrix(0.217577,-0.005222,0.005998,0.249928,0,0);-ms-transform:matrix(0.217577,-0.005222,0.005998,0.249928,0,0);-webkit-transform:matrix(0.217577,-0.005222,0.005998,0.249928,0,0);}
.m41_c00399{transform:matrix(0.217770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217770,0.000000,0.000000,0.250000,0,0);}
.m52_c00399{transform:matrix(0.219090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219090,0.000000,0.000000,0.250000,0,0);}
.m6b_c00399{transform:matrix(0.219171,-0.005698,0.006498,0.249916,0,0);-ms-transform:matrix(0.219171,-0.005698,0.006498,0.249916,0,0);-webkit-transform:matrix(0.219171,-0.005698,0.006498,0.249916,0,0);}
.m61_c00399{transform:matrix(0.219955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219955,0.000000,0.000000,0.250000,0,0);}
.m75_c00399{transform:matrix(0.220111,-0.004402,0.004999,0.249950,0,0);-ms-transform:matrix(0.220111,-0.004402,0.004999,0.249950,0,0);-webkit-transform:matrix(0.220111,-0.004402,0.004999,0.249950,0,0);}
.m2a_c00399{transform:matrix(0.220830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220830,0.000000,0.000000,0.250000,0,0);}
.m29_c00399{transform:matrix(0.221430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221430,0.000000,0.000000,0.250000,0,0);}
.m1e_c00399{transform:matrix(0.221595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221595,0.000000,0.000000,0.250000,0,0);}
.m4f_c00399{transform:matrix(0.222175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222175,0.000000,0.000000,0.250000,0,0);}
.m7_c00399{transform:matrix(0.222380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222380,0.000000,0.000000,0.250000,0,0);}
.m24_c00399{transform:matrix(0.222990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222990,0.000000,0.000000,0.250000,0,0);}
.m5b_c00399{transform:matrix(0.223955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223955,0.000000,0.000000,0.250000,0,0);}
.m60_c00399{transform:matrix(0.224655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224655,0.000000,0.000000,0.250000,0,0);}
.m2f_c00399{transform:matrix(0.225300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225300,0.000000,0.000000,0.250000,0,0);}
.m2c_c00399{transform:matrix(0.225400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225400,0.000000,0.000000,0.250000,0,0);}
.m54_c00399{transform:matrix(0.226200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226200,0.000000,0.000000,0.250000,0,0);}
.m25_c00399{transform:matrix(0.226940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226940,0.000000,0.000000,0.250000,0,0);}
.m16_c00399{transform:matrix(0.227075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227075,0.000000,0.000000,0.250000,0,0);}
.m9_c00399{transform:matrix(0.227185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227185,0.000000,0.000000,0.250000,0,0);}
.m7f_c00399{transform:matrix(0.228484,-0.004570,0.004999,0.249950,0,0);-ms-transform:matrix(0.228484,-0.004570,0.004999,0.249950,0,0);-webkit-transform:matrix(0.228484,-0.004570,0.004999,0.249950,0,0);}
.m31_c00399{transform:matrix(0.229150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229150,0.000000,0.000000,0.250000,0,0);}
.m1d_c00399{transform:matrix(0.229295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229295,0.000000,0.000000,0.250000,0,0);}
.m13_c00399{transform:matrix(0.229570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229570,0.000000,0.000000,0.250000,0,0);}
.m4c_c00399{transform:matrix(0.230085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230085,0.000000,0.000000,0.250000,0,0);}
.m1c_c00399{transform:matrix(0.231120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231120,0.000000,0.000000,0.250000,0,0);}
.m20_c00399{transform:matrix(0.232300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232300,0.000000,0.000000,0.250000,0,0);}
.mad_c00399{transform:matrix(0.232913,-0.005590,0.005998,0.249928,0,0);-ms-transform:matrix(0.232913,-0.005590,0.005998,0.249928,0,0);-webkit-transform:matrix(0.232913,-0.005590,0.005998,0.249928,0,0);}
.m3b_c00399{transform:matrix(0.233945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233945,0.000000,0.000000,0.250000,0,0);}
.m23_c00399{transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);}
.m40_c00399{transform:matrix(0.234260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234260,0.000000,0.000000,0.250000,0,0);}
.m2_c00399{transform:matrix(0.235330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235330,0.000000,0.000000,0.250000,0,0);}
.m8b_c00399{transform:matrix(0.235778,-0.004716,0.004999,0.249950,0,0);-ms-transform:matrix(0.235778,-0.004716,0.004999,0.249950,0,0);-webkit-transform:matrix(0.235778,-0.004716,0.004999,0.249950,0,0);}
.m4d_c00399{transform:matrix(0.236130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236130,0.000000,0.000000,0.250000,0,0);}
.m5_c00399{transform:matrix(0.236235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236235,0.000000,0.000000,0.250000,0,0);}
.m68_c00399{transform:matrix(0.237195,-0.006167,0.006498,0.249916,0,0);-ms-transform:matrix(0.237195,-0.006167,0.006498,0.249916,0,0);-webkit-transform:matrix(0.237195,-0.006167,0.006498,0.249916,0,0);}
.m82_c00399{transform:matrix(0.237777,-0.004756,0.004999,0.249950,0,0);-ms-transform:matrix(0.237777,-0.004756,0.004999,0.249950,0,0);-webkit-transform:matrix(0.237777,-0.004756,0.004999,0.249950,0,0);}
.m3f_c00399{transform:matrix(0.237785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237785,0.000000,0.000000,0.250000,0,0);}
.m1a_c00399{transform:matrix(0.238185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238185,0.000000,0.000000,0.250000,0,0);}
.m6c_c00399{transform:matrix(0.239839,-0.006236,0.006498,0.249916,0,0);-ms-transform:matrix(0.239839,-0.006236,0.006498,0.249916,0,0);-webkit-transform:matrix(0.239839,-0.006236,0.006498,0.249916,0,0);}
.m43_c00399{transform:matrix(0.240405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240405,0.000000,0.000000,0.250000,0,0);}
.m77_c00399{transform:matrix(0.241462,-0.004829,0.004999,0.249950,0,0);-ms-transform:matrix(0.241462,-0.004829,0.004999,0.249950,0,0);-webkit-transform:matrix(0.241462,-0.004829,0.004999,0.249950,0,0);}
.m76_c00399{transform:matrix(0.241737,-0.004835,0.004999,0.249950,0,0);-ms-transform:matrix(0.241737,-0.004835,0.004999,0.249950,0,0);-webkit-transform:matrix(0.241737,-0.004835,0.004999,0.249950,0,0);}
.m30_c00399{transform:matrix(0.242715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242715,0.000000,0.000000,0.250000,0,0);}
.m5f_c00399{transform:matrix(0.242910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242910,0.000000,0.000000,0.250000,0,0);}
.m8_c00399{transform:matrix(0.244225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244225,0.000000,0.000000,0.250000,0,0);}
.m5e_c00399{transform:matrix(0.244315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244315,0.000000,0.000000,0.250000,0,0);}
.m73_c00399{transform:matrix(0.244641,-0.004893,0.004999,0.249950,0,0);-ms-transform:matrix(0.244641,-0.004893,0.004999,0.249950,0,0);-webkit-transform:matrix(0.244641,-0.004893,0.004999,0.249950,0,0);}
.m5c_c00399{transform:matrix(0.245825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245825,0.000000,0.000000,0.250000,0,0);}
.m1f_c00399{transform:matrix(0.246545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246545,0.000000,0.000000,0.250000,0,0);}
.m2b_c00399{transform:matrix(0.247005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247005,0.000000,0.000000,0.250000,0,0);}
.m6a_c00399{transform:matrix(0.247801,-0.006443,0.006498,0.249916,0,0);-ms-transform:matrix(0.247801,-0.006443,0.006498,0.249916,0,0);-webkit-transform:matrix(0.247801,-0.006443,0.006498,0.249916,0,0);}
.m17_c00399{transform:matrix(0.248135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248135,0.000000,0.000000,0.250000,0,0);}
.m3c_c00399{transform:matrix(0.249480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249480,0.000000,0.000000,0.250000,0,0);}
.m42_c00399{transform:matrix(0.250010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250010,0.000000,0.000000,0.250000,0,0);}
.m15_c00399{transform:matrix(0.251695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251695,0.000000,0.000000,0.250000,0,0);}
.m2d_c00399{transform:matrix(0.252200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252200,0.000000,0.000000,0.250000,0,0);}
.m5d_c00399{transform:matrix(0.253555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253555,0.000000,0.000000,0.250000,0,0);}
.m74_c00399{transform:matrix(0.254754,-0.005095,0.004999,0.249950,0,0);-ms-transform:matrix(0.254754,-0.005095,0.004999,0.249950,0,0);-webkit-transform:matrix(0.254754,-0.005095,0.004999,0.249950,0,0);}
.m46_c00399{transform:matrix(0.256275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256275,0.000000,0.000000,0.250000,0,0);}
.m3d_c00399{transform:matrix(0.256340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256340,0.000000,0.000000,0.250000,0,0);}
.m12_c00399{transform:matrix(0.257065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257065,0.000000,0.000000,0.250000,0,0);}
.m8a_c00399{transform:matrix(0.257199,-0.005144,0.004999,0.249950,0,0);-ms-transform:matrix(0.257199,-0.005144,0.004999,0.249950,0,0);-webkit-transform:matrix(0.257199,-0.005144,0.004999,0.249950,0,0);}
.m72_c00399{transform:matrix(0.257983,-0.005160,0.004999,0.249950,0,0);-ms-transform:matrix(0.257983,-0.005160,0.004999,0.249950,0,0);-webkit-transform:matrix(0.257983,-0.005160,0.004999,0.249950,0,0);}
.m6e_c00399{transform:matrix(0.259372,-0.006744,0.006498,0.249916,0,0);-ms-transform:matrix(0.259372,-0.006744,0.006498,0.249916,0,0);-webkit-transform:matrix(0.259372,-0.006744,0.006498,0.249916,0,0);}
.m0_c00399{transform:matrix(0.261110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261110,0.000000,0.000000,0.250000,0,0);}
.m2e_c00399{transform:matrix(0.261950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261950,0.000000,0.000000,0.250000,0,0);}
.m21_c00399{transform:matrix(0.262190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262190,0.000000,0.000000,0.250000,0,0);}
.m33_c00399{transform:matrix(0.262480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262480,0.000000,0.000000,0.250000,0,0);}
.m59_c00399{transform:matrix(0.262795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262795,0.000000,0.000000,0.250000,0,0);}
.m88_c00399{transform:matrix(0.263267,-0.005265,0.004999,0.249950,0,0);-ms-transform:matrix(0.263267,-0.005265,0.004999,0.249950,0,0);-webkit-transform:matrix(0.263267,-0.005265,0.004999,0.249950,0,0);}
.m5a_c00399{transform:matrix(0.264135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264135,0.000000,0.000000,0.250000,0,0);}
.m26_c00399{transform:matrix(0.264850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264850,0.000000,0.000000,0.250000,0,0);}
.m34_c00399{transform:matrix(0.266590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266590,0.000000,0.000000,0.250000,0,0);}
.m64_c00399{transform:matrix(0.266640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266640,0.000000,0.000000,0.250000,0,0);}
.m93_c00399{transform:matrix(0.266772,-0.005335,0.004999,0.249950,0,0);-ms-transform:matrix(0.266772,-0.005335,0.004999,0.249950,0,0);-webkit-transform:matrix(0.266772,-0.005335,0.004999,0.249950,0,0);}
.me_c00399{transform:matrix(0.267605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267605,0.000000,0.000000,0.250000,0,0);}
.mab_c00399{transform:matrix(0.270357,-0.006489,0.005998,0.249928,0,0);-ms-transform:matrix(0.270357,-0.006489,0.005998,0.249928,0,0);-webkit-transform:matrix(0.270357,-0.006489,0.005998,0.249928,0,0);}
.m4_c00399{transform:matrix(0.270620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270620,0.000000,0.000000,0.250000,0,0);}
.m32_c00399{transform:matrix(0.276525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276525,0.000000,0.000000,0.250000,0,0);}
.m35_c00399{transform:matrix(0.276755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276755,0.000000,0.000000,0.250000,0,0);}
.m3e_c00399{transform:matrix(0.281350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281350,0.000000,0.000000,0.250000,0,0);}
.m86_c00399{transform:matrix(0.285333,-0.005707,0.004999,0.249950,0,0);-ms-transform:matrix(0.285333,-0.005707,0.004999,0.249950,0,0);-webkit-transform:matrix(0.285333,-0.005707,0.004999,0.249950,0,0);}
.m7d_c00399{transform:matrix(0.285948,-0.005719,0.004999,0.249950,0,0);-ms-transform:matrix(0.285948,-0.005719,0.004999,0.249950,0,0);-webkit-transform:matrix(0.285948,-0.005719,0.004999,0.249950,0,0);}
.m62_c00399{transform:matrix(0.292860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292860,0.000000,0.000000,0.250000,0,0);}
.m57_c00399{transform:matrix(0.299090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299090,0.000000,0.000000,0.250000,0,0);}
.m49_c00399{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m22_c00399{transform:matrix(0.301010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301010,0.000000,0.000000,0.250000,0,0);}
.m7c_c00399{transform:matrix(0.304954,-0.006099,0.004999,0.249950,0,0);-ms-transform:matrix(0.304954,-0.006099,0.004999,0.249950,0,0);-webkit-transform:matrix(0.304954,-0.006099,0.004999,0.249950,0,0);}
.ma7_c00399{transform:matrix(0.305037,-0.007321,0.005998,0.249928,0,0);-ms-transform:matrix(0.305037,-0.007321,0.005998,0.249928,0,0);-webkit-transform:matrix(0.305037,-0.007321,0.005998,0.249928,0,0);}
.mc_c00399{transform:matrix(0.310625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310625,0.000000,0.000000,0.250000,0,0);}
.m19_c00399{transform:matrix(0.312240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312240,0.000000,0.000000,0.250000,0,0);}
.m78_c00399{transform:matrix(0.313992,-0.006280,0.004999,0.249950,0,0);-ms-transform:matrix(0.313992,-0.006280,0.004999,0.249950,0,0);-webkit-transform:matrix(0.313992,-0.006280,0.004999,0.249950,0,0);}
.mac_c00399{transform:matrix(0.314369,-0.007545,0.005998,0.249928,0,0);-ms-transform:matrix(0.314369,-0.007545,0.005998,0.249928,0,0);-webkit-transform:matrix(0.314369,-0.007545,0.005998,0.249928,0,0);}
.m94_c00399{transform:matrix(0.314747,-0.006295,0.004999,0.249950,0,0);-ms-transform:matrix(0.314747,-0.006295,0.004999,0.249950,0,0);-webkit-transform:matrix(0.314747,-0.006295,0.004999,0.249950,0,0);}
.m36_c00399{transform:matrix(0.318510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318510,0.000000,0.000000,0.250000,0,0);}
.m96_c00399{transform:matrix(0.321191,-0.006424,0.004999,0.249950,0,0);-ms-transform:matrix(0.321191,-0.006424,0.004999,0.249950,0,0);-webkit-transform:matrix(0.321191,-0.006424,0.004999,0.249950,0,0);}
.m63_c00399{transform:matrix(0.325990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325990,0.000000,0.000000,0.250000,0,0);}
.m47_c00399{transform:matrix(0.329225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329225,0.000000,0.000000,0.250000,0,0);}
.ma9_c00399{transform:matrix(0.329780,-0.007915,0.005998,0.249928,0,0);-ms-transform:matrix(0.329780,-0.007915,0.005998,0.249928,0,0);-webkit-transform:matrix(0.329780,-0.007915,0.005998,0.249928,0,0);}
.m87_c00399{transform:matrix(0.335613,-0.006712,0.004999,0.249950,0,0);-ms-transform:matrix(0.335613,-0.006712,0.004999,0.249950,0,0);-webkit-transform:matrix(0.335613,-0.006712,0.004999,0.249950,0,0);}
.m4b_c00399{transform:matrix(0.341515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341515,0.000000,0.000000,0.250000,0,0);}
.ma1_c00399{transform:matrix(0.343076,-0.008234,0.005998,0.249928,0,0);-ms-transform:matrix(0.343076,-0.008234,0.005998,0.249928,0,0);-webkit-transform:matrix(0.343076,-0.008234,0.005998,0.249928,0,0);}
.m38_c00399{transform:matrix(0.364925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364925,0.000000,0.000000,0.250000,0,0);}
.ma2_c00399{transform:matrix(0.373288,-0.008959,0.005998,0.249928,0,0);-ms-transform:matrix(0.373288,-0.008959,0.005998,0.249928,0,0);-webkit-transform:matrix(0.373288,-0.008959,0.005998,0.249928,0,0);}
.m98_c00399{transform:matrix(0.377161,-0.009052,0.005998,0.249928,0,0);-ms-transform:matrix(0.377161,-0.009052,0.005998,0.249928,0,0);-webkit-transform:matrix(0.377161,-0.009052,0.005998,0.249928,0,0);}
.m79_c00399{transform:matrix(0.377420,-0.007548,0.004999,0.249950,0,0);-ms-transform:matrix(0.377420,-0.007548,0.004999,0.249950,0,0);-webkit-transform:matrix(0.377420,-0.007548,0.004999,0.249950,0,0);}
.m65_c00399{transform:matrix(0.384200,-0.009989,0.006498,0.249916,0,0);-ms-transform:matrix(0.384200,-0.009989,0.006498,0.249916,0,0);-webkit-transform:matrix(0.384200,-0.009989,0.006498,0.249916,0,0);}
.m4a_c00399{transform:matrix(0.392120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392120,0.000000,0.000000,0.250000,0,0);}
.md_c00399{transform:matrix(0.406065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406065,0.000000,0.000000,0.250000,0,0);}
.mb_c00399{transform:matrix(0.416540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416540,0.000000,0.000000,0.250000,0,0);}
.m85_c00399{transform:matrix(0.440932,-0.008819,0.004999,0.249950,0,0);-ms-transform:matrix(0.440932,-0.008819,0.004999,0.249950,0,0);-webkit-transform:matrix(0.440932,-0.008819,0.004999,0.249950,0,0);}
.m39_c00399{transform:matrix(0.451460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451460,0.000000,0.000000,0.250000,0,0);}
.m1b_c00399{transform:matrix(0.474085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474085,0.000000,0.000000,0.250000,0,0);}
.maa_c00399{transform:matrix(0.488874,-0.011733,0.005998,0.249928,0,0);-ms-transform:matrix(0.488874,-0.011733,0.005998,0.249928,0,0);-webkit-transform:matrix(0.488874,-0.011733,0.005998,0.249928,0,0);}
.m66_c00399{transform:matrix(0.545241,-0.014176,0.006498,0.249916,0,0);-ms-transform:matrix(0.545241,-0.014176,0.006498,0.249916,0,0);-webkit-transform:matrix(0.545241,-0.014176,0.006498,0.249916,0,0);}
.m99_c00399{transform:matrix(0.552806,-0.013267,0.005998,0.249928,0,0);-ms-transform:matrix(0.552806,-0.013267,0.005998,0.249928,0,0);-webkit-transform:matrix(0.552806,-0.013267,0.005998,0.249928,0,0);}
.m70_c00399{transform:matrix(0.614472,-0.015976,0.006498,0.249916,0,0);-ms-transform:matrix(0.614472,-0.015976,0.006498,0.249916,0,0);-webkit-transform:matrix(0.614472,-0.015976,0.006498,0.249916,0,0);}
.ma0_c00399{transform:matrix(0.674621,-0.016191,0.005998,0.249928,0,0);-ms-transform:matrix(0.674621,-0.016191,0.005998,0.249928,0,0);-webkit-transform:matrix(0.674621,-0.016191,0.005998,0.249928,0,0);}
.m71_c00399{transform:matrix(0.771001,-0.015420,0.004999,0.249950,0,0);-ms-transform:matrix(0.771001,-0.015420,0.004999,0.249950,0,0);-webkit-transform:matrix(0.771001,-0.015420,0.004999,0.249950,0,0);}
.m37_c00399{transform:matrix(0.925645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.925645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.925645,0.000000,0.000000,0.250000,0,0);}
.m3a_c00399{transform:matrix(1.576575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.576575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.576575,0.000000,0.000000,0.250000,0,0);}
.v0_c00399{vertical-align:0.000000px;}
.ls0_c00399{letter-spacing:0.000000px;}
.sc__c00399{text-shadow:none;}
.sc0_c00399{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__c00399{-webkit-text-stroke:0px transparent;}
.sc0_c00399{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00399{word-spacing:0.000000px;}
.fc0_c00399{color:transparent;}
.fs3_c00399{font-size:78.000000px;}
.fs1_c00399{font-size:84.000000px;}
.fs6_c00399{font-size:84.016798px;}
.fs5_c00399{font-size:84.028387px;}
.fs4_c00399{font-size:90.000000px;}
.fs7_c00399{font-size:90.017998px;}
.fs2_c00399{font-size:96.000000px;}
.fs9_c00399{font-size:102.029372px;}
.fs8_c00399{font-size:108.021598px;}
.fs0_c00399{font-size:156.000000px;}
.y0_c00399{bottom:0.000000px;}
.ya5_c00399{bottom:639.793764px;}
.ya6_c00399{bottom:642.266436px;}
.ya7_c00399{bottom:643.654920px;}
.ya8_c00399{bottom:645.503328px;}
.ya9_c00399{bottom:647.102508px;}
.yaa_c00399{bottom:648.021384px;}
.yab_c00399{bottom:648.510900px;}
.yac_c00399{bottom:649.834800px;}
.yad_c00399{bottom:651.224436px;}
.yae_c00399{bottom:651.910836px;}
.y99_c00399{bottom:671.964000px;}
.y9a_c00399{bottom:672.760644px;}
.y9b_c00399{bottom:676.181580px;}
.y9c_c00399{bottom:678.041736px;}
.y9d_c00399{bottom:678.812496px;}
.y9e_c00399{bottom:680.898912px;}
.y9f_c00399{bottom:683.041452px;}
.ya0_c00399{bottom:683.729988px;}
.ya1_c00399{bottom:685.525308px;}
.ya2_c00399{bottom:687.806340px;}
.ya3_c00399{bottom:688.948188px;}
.ya4_c00399{bottom:689.322732px;}
.y8b_c00399{bottom:713.322480px;}
.y8c_c00399{bottom:714.228720px;}
.y8d_c00399{bottom:715.067820px;}
.y8e_c00399{bottom:715.628730px;}
.y8f_c00399{bottom:716.799450px;}
.y90_c00399{bottom:717.934200px;}
.y91_c00399{bottom:719.053500px;}
.y92_c00399{bottom:720.948690px;}
.y93_c00399{bottom:721.990860px;}
.y94_c00399{bottom:722.630490px;}
.y95_c00399{bottom:723.348870px;}
.y96_c00399{bottom:723.689790px;}
.y97_c00399{bottom:724.516590px;}
.y98_c00399{bottom:726.924630px;}
.y7c_c00399{bottom:744.384240px;}
.y7d_c00399{bottom:745.145610px;}
.y7e_c00399{bottom:745.873560px;}
.y7f_c00399{bottom:746.364420px;}
.y80_c00399{bottom:747.143520px;}
.y81_c00399{bottom:749.289450px;}
.y82_c00399{bottom:750.336360px;}
.y83_c00399{bottom:750.778110px;}
.y84_c00399{bottom:752.113140px;}
.y85_c00399{bottom:752.990100px;}
.y86_c00399{bottom:754.070700px;}
.y87_c00399{bottom:754.923870px;}
.y88_c00399{bottom:755.245650px;}
.y89_c00399{bottom:756.341730px;}
.y8a_c00399{bottom:757.520910px;}
.y72_c00399{bottom:780.925500px;}
.y73_c00399{bottom:782.890710px;}
.y74_c00399{bottom:783.571950px;}
.y75_c00399{bottom:786.228210px;}
.y76_c00399{bottom:788.441970px;}
.y77_c00399{bottom:789.553080px;}
.y78_c00399{bottom:791.299620px;}
.y79_c00399{bottom:792.427680px;}
.y7a_c00399{bottom:794.442660px;}
.y7b_c00399{bottom:795.878760px;}
.y66_c00399{bottom:850.791000px;}
.y67_c00399{bottom:852.094731px;}
.y68_c00399{bottom:854.074995px;}
.y69_c00399{bottom:854.932956px;}
.y6a_c00399{bottom:856.983576px;}
.y6b_c00399{bottom:858.089343px;}
.y6c_c00399{bottom:860.114691px;}
.y6d_c00399{bottom:861.238047px;}
.y6e_c00399{bottom:863.567361px;}
.y6f_c00399{bottom:865.104936px;}
.y70_c00399{bottom:866.696838px;}
.y71_c00399{bottom:867.514629px;}
.y59_c00399{bottom:889.930500px;}
.y5a_c00399{bottom:890.487000px;}
.y5b_c00399{bottom:891.169500px;}
.y5c_c00399{bottom:893.067000px;}
.y5d_c00399{bottom:893.755500px;}
.y5e_c00399{bottom:895.183500px;}
.y5f_c00399{bottom:897.252000px;}
.y60_c00399{bottom:898.635000px;}
.y61_c00399{bottom:900.018000px;}
.y62_c00399{bottom:900.726000px;}
.y63_c00399{bottom:902.289000px;}
.y64_c00399{bottom:903.073500px;}
.y65_c00399{bottom:903.570000px;}
.y4d_c00399{bottom:920.449500px;}
.y4e_c00399{bottom:922.126500px;}
.y4f_c00399{bottom:925.605000px;}
.y50_c00399{bottom:926.838000px;}
.y51_c00399{bottom:929.617500px;}
.y52_c00399{bottom:930.564000px;}
.y53_c00399{bottom:932.407500px;}
.y54_c00399{bottom:935.196000px;}
.y55_c00399{bottom:937.383000px;}
.y56_c00399{bottom:938.617500px;}
.y57_c00399{bottom:939.226500px;}
.y58_c00399{bottom:940.402500px;}
.y3f_c00399{bottom:962.016000px;}
.y40_c00399{bottom:963.345000px;}
.y41_c00399{bottom:964.236000px;}
.y42_c00399{bottom:964.767000px;}
.y43_c00399{bottom:965.364000px;}
.y44_c00399{bottom:966.915000px;}
.y45_c00399{bottom:968.151000px;}
.y46_c00399{bottom:968.674500px;}
.y47_c00399{bottom:969.901500px;}
.y48_c00399{bottom:971.314500px;}
.y49_c00399{bottom:972.036000px;}
.y4a_c00399{bottom:972.769500px;}
.y4b_c00399{bottom:973.456500px;}
.y4c_c00399{bottom:973.932000px;}
.y37_c00399{bottom:992.803500px;}
.y38_c00399{bottom:994.234500px;}
.y39_c00399{bottom:997.854000px;}
.y3a_c00399{bottom:998.599500px;}
.y3b_c00399{bottom:1001.305500px;}
.y3c_c00399{bottom:1007.553000px;}
.y3d_c00399{bottom:1009.188000px;}
.y3e_c00399{bottom:1009.980000px;}
.y28_c00399{bottom:1030.864500px;}
.y29_c00399{bottom:1031.485500px;}
.y2a_c00399{bottom:1032.321000px;}
.y2b_c00399{bottom:1034.146500px;}
.y2c_c00399{bottom:1034.893500px;}
.y2d_c00399{bottom:1036.164000px;}
.y2e_c00399{bottom:1036.687500px;}
.y2f_c00399{bottom:1038.489000px;}
.y30_c00399{bottom:1040.517000px;}
.y31_c00399{bottom:1041.450000px;}
.y32_c00399{bottom:1042.524000px;}
.y33_c00399{bottom:1043.134500px;}
.y34_c00399{bottom:1045.311000px;}
.y35_c00399{bottom:1046.125500px;}
.y36_c00399{bottom:1047.288000px;}
.y1c_c00399{bottom:1066.224000px;}
.y1d_c00399{bottom:1067.529000px;}
.y1e_c00399{bottom:1069.381500px;}
.y1f_c00399{bottom:1071.271500px;}
.y20_c00399{bottom:1072.900500px;}
.y21_c00399{bottom:1074.718500px;}
.y22_c00399{bottom:1075.605000px;}
.y23_c00399{bottom:1077.030000px;}
.y24_c00399{bottom:1078.158000px;}
.y25_c00399{bottom:1080.865500px;}
.y26_c00399{bottom:1081.801500px;}
.y27_c00399{bottom:1083.286500px;}
.yf_c00399{bottom:1101.882000px;}
.y10_c00399{bottom:1104.553500px;}
.y11_c00399{bottom:1107.732000px;}
.y12_c00399{bottom:1108.719000px;}
.y13_c00399{bottom:1110.366000px;}
.y14_c00399{bottom:1111.303500px;}
.y15_c00399{bottom:1112.649000px;}
.y16_c00399{bottom:1114.048500px;}
.y17_c00399{bottom:1115.208000px;}
.y18_c00399{bottom:1116.552000px;}
.y19_c00399{bottom:1118.301000px;}
.y1a_c00399{bottom:1119.354000px;}
.y1b_c00399{bottom:1120.891500px;}
.y2_c00399{bottom:1140.216000px;}
.y3_c00399{bottom:1140.780000px;}
.y4_c00399{bottom:1142.481000px;}
.y5_c00399{bottom:1143.627000px;}
.y6_c00399{bottom:1144.696500px;}
.y7_c00399{bottom:1146.936000px;}
.y8_c00399{bottom:1147.738500px;}
.y9_c00399{bottom:1149.730500px;}
.ya_c00399{bottom:1151.556000px;}
.yb_c00399{bottom:1152.246000px;}
.yc_c00399{bottom:1154.047500px;}
.yd_c00399{bottom:1155.927000px;}
.ye_c00399{bottom:1156.821000px;}
.y1_c00399{bottom:1209.201000px;}
.h5_c00399{height:78.000000px;}
.h3_c00399{height:84.000000px;}
.h8_c00399{height:84.016798px;}
.h7_c00399{height:84.028387px;}
.h6_c00399{height:90.000000px;}
.h9_c00399{height:90.017998px;}
.h4_c00399{height:96.000000px;}
.hb_c00399{height:102.029372px;}
.ha_c00399{height:108.021598px;}
.h2_c00399{height:156.000000px;}
.h1_c00399{height:1251.000000px;}
.h0_c00399{height:1251.150000px;}
.w0_c00399{width:915.000000px;}
.x0_c00399{left:0.000000px;}
.x34_c00399{left:4.069500px;}
.x3a_c00399{left:5.170500px;}
.x45_c00399{left:6.216000px;}
.x59_c00399{left:21.859500px;}
.x27_c00399{left:27.166500px;}
.x4d_c00399{left:41.205000px;}
.x6e_c00399{left:47.694180px;}
.xf_c00399{left:60.988500px;}
.x28_c00399{left:63.522000px;}
.x46_c00399{left:66.102000px;}
.x4e_c00399{left:67.738500px;}
.x2_c00399{left:70.470000px;}
.x5a_c00399{left:72.003000px;}
.x65_c00399{left:73.033500px;}
.x3b_c00399{left:88.188000px;}
.x3_c00399{left:93.021000px;}
.x4f_c00399{left:100.215000px;}
.x1c_c00399{left:107.959500px;}
.x6f_c00399{left:123.865770px;}
.x29_c00399{left:142.909500px;}
.x5b_c00399{left:148.167000px;}
.x79_c00399{left:149.746800px;}
.x10_c00399{left:153.090000px;}
.x8c_c00399{left:159.166548px;}
.x4_c00399{left:161.073000px;}
.x66_c00399{left:171.294000px;}
.x70_c00399{left:172.574670px;}
.x1d_c00399{left:174.118500px;}
.x2a_c00399{left:175.360500px;}
.x3c_c00399{left:177.021000px;}
.x5c_c00399{left:181.165500px;}
.x7a_c00399{left:182.744280px;}
.x47_c00399{left:190.318500px;}
.x67_c00399{left:205.356000px;}
.x5_c00399{left:206.904000px;}
.x35_c00399{left:214.465500px;}
.x50_c00399{left:223.366500px;}
.x2b_c00399{left:230.613000px;}
.x48_c00399{left:234.331500px;}
.x1e_c00399{left:241.618500px;}
.x36_c00399{left:245.497500px;}
.x6_c00399{left:249.685500px;}
.x7b_c00399{left:251.634420px;}
.x2c_c00399{left:253.374000px;}
.x5d_c00399{left:260.035500px;}
.x11_c00399{left:262.704000px;}
.x8d_c00399{left:276.890508px;}
.x51_c00399{left:291.399000px;}
.x12_c00399{left:296.719500px;}
.x1f_c00399{left:299.788500px;}
.x5e_c00399{left:302.565000px;}
.x71_c00399{left:306.731910px;}
.x3d_c00399{left:311.289000px;}
.x7c_c00399{left:318.350910px;}
.x85_c00399{left:319.632000px;}
.x2d_c00399{left:331.669500px;}
.x49_c00399{left:333.576000px;}
.x68_c00399{left:338.169000px;}
.x7_c00399{left:339.270000px;}
.x8e_c00399{left:342.998760px;}
.x86_c00399{left:351.747000px;}
.x13_c00399{left:353.517000px;}
.x37_c00399{left:358.266000px;}
.x20_c00399{left:364.693500px;}
.x4a_c00399{left:367.405500px;}
.x8_c00399{left:371.394000px;}
.x5f_c00399{left:380.463000px;}
.x7d_c00399{left:384.219870px;}
.x14_c00399{left:385.839000px;}
.x3e_c00399{left:388.494000px;}
.x52_c00399{left:389.917500px;}
.x21_c00399{left:396.364500px;}
.x72_c00399{left:399.697320px;}
.x1_c00399{left:412.830000px;}
.x2e_c00399{left:419.857500px;}
.x3f_c00399{left:421.168500px;}
.x60_c00399{left:423.669000px;}
.x8f_c00399{left:431.022096px;}
.x15_c00399{left:432.259500px;}
.x87_c00399{left:438.681000px;}
.x22_c00399{left:447.264000px;}
.x69_c00399{left:448.857000px;}
.x9_c00399{left:451.095000px;}
.x53_c00399{left:455.769000px;}
.x2f_c00399{left:460.417500px;}
.x16_c00399{left:480.498000px;}
.x73_c00399{left:483.105480px;}
.x23_c00399{left:487.555500px;}
.x7e_c00399{left:495.711060px;}
.x40_c00399{left:497.850000px;}
.x6a_c00399{left:504.412500px;}
.x30_c00399{left:507.115500px;}
.x61_c00399{left:513.258000px;}
.x17_c00399{left:520.455000px;}
.x54_c00399{left:521.637000px;}
.xa_c00399{left:524.112000px;}
.x88_c00399{left:527.953500px;}
.x31_c00399{left:533.629500px;}
.x74_c00399{left:537.907860px;}
.xb_c00399{left:551.728500px;}
.x55_c00399{left:555.372000px;}
.x7f_c00399{left:556.973220px;}
.x18_c00399{left:566.805000px;}
.x62_c00399{left:572.395500px;}
.x90_c00399{left:574.285428px;}
.x24_c00399{left:584.244000px;}
.x41_c00399{left:586.117500px;}
.x6b_c00399{left:591.739500px;}
.x80_c00399{left:594.581970px;}
.x75_c00399{left:605.443260px;}
.x4b_c00399{left:610.929000px;}
.x25_c00399{left:617.652000px;}
.xc_c00399{left:623.760000px;}
.x19_c00399{left:627.105000px;}
.x32_c00399{left:628.287000px;}
.x56_c00399{left:629.799000px;}
.x42_c00399{left:631.234500px;}
.x63_c00399{left:633.622500px;}
.x81_c00399{left:636.803490px;}
.x6c_c00399{left:648.142500px;}
.x4c_c00399{left:655.023000px;}
.x82_c00399{left:656.850690px;}
.x76_c00399{left:658.756020px;}
.x1a_c00399{left:663.418500px;}
.x64_c00399{left:665.076000px;}
.x57_c00399{left:667.125000px;}
.x26_c00399{left:670.675500px;}
.x43_c00399{left:677.101500px;}
.x77_c00399{left:678.896640px;}
.x38_c00399{left:686.707500px;}
.x58_c00399{left:690.802500px;}
.xd_c00399{left:698.968500px;}
.x91_c00399{left:703.483716px;}
.x83_c00399{left:705.468600px;}
.x33_c00399{left:714.253500px;}
.x1b_c00399{left:716.446500px;}
.x39_c00399{left:719.719500px;}
.x89_c00399{left:726.490500px;}
.xe_c00399{left:734.734500px;}
.x92_c00399{left:736.148556px;}
.x78_c00399{left:747.431130px;}
.x44_c00399{left:749.689500px;}
.x8a_c00399{left:774.067500px;}
.x8b_c00399{left:789.673500px;}
.x6d_c00399{left:820.696500px;}
.x84_c00399{left:847.104090px;}
@media print{
.v0_c00399{vertical-align:0.000000pt;}
.ls0_c00399{letter-spacing:0.000000pt;}
.ws0_c00399{word-spacing:0.000000pt;}
.fs3_c00399{font-size:69.333333pt;}
.fs1_c00399{font-size:74.666667pt;}
.fs6_c00399{font-size:74.681599pt;}
.fs5_c00399{font-size:74.691900pt;}
.fs4_c00399{font-size:80.000000pt;}
.fs7_c00399{font-size:80.015998pt;}
.fs2_c00399{font-size:85.333333pt;}
.fs9_c00399{font-size:90.692775pt;}
.fs8_c00399{font-size:96.019198pt;}
.fs0_c00399{font-size:138.666667pt;}
.y0_c00399{bottom:0.000000pt;}
.ya5_c00399{bottom:568.705568pt;}
.ya6_c00399{bottom:570.903499pt;}
.ya7_c00399{bottom:572.137707pt;}
.ya8_c00399{bottom:573.780736pt;}
.ya9_c00399{bottom:575.202229pt;}
.yaa_c00399{bottom:576.019008pt;}
.yab_c00399{bottom:576.454133pt;}
.yac_c00399{bottom:577.630933pt;}
.yad_c00399{bottom:578.866165pt;}
.yae_c00399{bottom:579.476299pt;}
.y99_c00399{bottom:597.301333pt;}
.y9a_c00399{bottom:598.009461pt;}
.y9b_c00399{bottom:601.050293pt;}
.y9c_c00399{bottom:602.703765pt;}
.y9d_c00399{bottom:603.388885pt;}
.y9e_c00399{bottom:605.243477pt;}
.y9f_c00399{bottom:607.147957pt;}
.ya0_c00399{bottom:607.759989pt;}
.ya1_c00399{bottom:609.355829pt;}
.ya2_c00399{bottom:611.383413pt;}
.ya3_c00399{bottom:612.398389pt;}
.ya4_c00399{bottom:612.731317pt;}
.y8b_c00399{bottom:634.064427pt;}
.y8c_c00399{bottom:634.869973pt;}
.y8d_c00399{bottom:635.615840pt;}
.y8e_c00399{bottom:636.114427pt;}
.y8f_c00399{bottom:637.155067pt;}
.y90_c00399{bottom:638.163733pt;}
.y91_c00399{bottom:639.158667pt;}
.y92_c00399{bottom:640.843280pt;}
.y93_c00399{bottom:641.769653pt;}
.y94_c00399{bottom:642.338213pt;}
.y95_c00399{bottom:642.976773pt;}
.y96_c00399{bottom:643.279813pt;}
.y97_c00399{bottom:644.014747pt;}
.y98_c00399{bottom:646.155227pt;}
.y7c_c00399{bottom:661.674880pt;}
.y7d_c00399{bottom:662.351653pt;}
.y7e_c00399{bottom:662.998720pt;}
.y7f_c00399{bottom:663.435040pt;}
.y80_c00399{bottom:664.127573pt;}
.y81_c00399{bottom:666.035067pt;}
.y82_c00399{bottom:666.965653pt;}
.y83_c00399{bottom:667.358320pt;}
.y84_c00399{bottom:668.545013pt;}
.y85_c00399{bottom:669.324533pt;}
.y86_c00399{bottom:670.285067pt;}
.y87_c00399{bottom:671.043440pt;}
.y88_c00399{bottom:671.329467pt;}
.y89_c00399{bottom:672.303760pt;}
.y8a_c00399{bottom:673.351920pt;}
.y72_c00399{bottom:694.156000pt;}
.y73_c00399{bottom:695.902853pt;}
.y74_c00399{bottom:696.508400pt;}
.y75_c00399{bottom:698.869520pt;}
.y76_c00399{bottom:700.837307pt;}
.y77_c00399{bottom:701.824960pt;}
.y78_c00399{bottom:703.377440pt;}
.y79_c00399{bottom:704.380160pt;}
.y7a_c00399{bottom:706.171253pt;}
.y7b_c00399{bottom:707.447787pt;}
.y66_c00399{bottom:756.258667pt;}
.y67_c00399{bottom:757.417539pt;}
.y68_c00399{bottom:759.177773pt;}
.y69_c00399{bottom:759.940405pt;}
.y6a_c00399{bottom:761.763179pt;}
.y6b_c00399{bottom:762.746083pt;}
.y6c_c00399{bottom:764.546392pt;}
.y6d_c00399{bottom:765.544931pt;}
.y6e_c00399{bottom:767.615432pt;}
.y6f_c00399{bottom:768.982165pt;}
.y70_c00399{bottom:770.397189pt;}
.y71_c00399{bottom:771.124115pt;}
.y59_c00399{bottom:791.049333pt;}
.y5a_c00399{bottom:791.544000pt;}
.y5b_c00399{bottom:792.150667pt;}
.y5c_c00399{bottom:793.837333pt;}
.y5d_c00399{bottom:794.449333pt;}
.y5e_c00399{bottom:795.718667pt;}
.y5f_c00399{bottom:797.557333pt;}
.y60_c00399{bottom:798.786667pt;}
.y61_c00399{bottom:800.016000pt;}
.y62_c00399{bottom:800.645333pt;}
.y63_c00399{bottom:802.034667pt;}
.y64_c00399{bottom:802.732000pt;}
.y65_c00399{bottom:803.173333pt;}
.y4d_c00399{bottom:818.177333pt;}
.y4e_c00399{bottom:819.668000pt;}
.y4f_c00399{bottom:822.760000pt;}
.y50_c00399{bottom:823.856000pt;}
.y51_c00399{bottom:826.326667pt;}
.y52_c00399{bottom:827.168000pt;}
.y53_c00399{bottom:828.806667pt;}
.y54_c00399{bottom:831.285333pt;}
.y55_c00399{bottom:833.229333pt;}
.y56_c00399{bottom:834.326667pt;}
.y57_c00399{bottom:834.868000pt;}
.y58_c00399{bottom:835.913333pt;}
.y3f_c00399{bottom:855.125333pt;}
.y40_c00399{bottom:856.306667pt;}
.y41_c00399{bottom:857.098667pt;}
.y42_c00399{bottom:857.570667pt;}
.y43_c00399{bottom:858.101333pt;}
.y44_c00399{bottom:859.480000pt;}
.y45_c00399{bottom:860.578667pt;}
.y46_c00399{bottom:861.044000pt;}
.y47_c00399{bottom:862.134667pt;}
.y48_c00399{bottom:863.390667pt;}
.y49_c00399{bottom:864.032000pt;}
.y4a_c00399{bottom:864.684000pt;}
.y4b_c00399{bottom:865.294667pt;}
.y4c_c00399{bottom:865.717333pt;}
.y37_c00399{bottom:882.492000pt;}
.y38_c00399{bottom:883.764000pt;}
.y39_c00399{bottom:886.981333pt;}
.y3a_c00399{bottom:887.644000pt;}
.y3b_c00399{bottom:890.049333pt;}
.y3c_c00399{bottom:895.602667pt;}
.y3d_c00399{bottom:897.056000pt;}
.y3e_c00399{bottom:897.760000pt;}
.y28_c00399{bottom:916.324000pt;}
.y29_c00399{bottom:916.876000pt;}
.y2a_c00399{bottom:917.618667pt;}
.y2b_c00399{bottom:919.241333pt;}
.y2c_c00399{bottom:919.905333pt;}
.y2d_c00399{bottom:921.034667pt;}
.y2e_c00399{bottom:921.500000pt;}
.y2f_c00399{bottom:923.101333pt;}
.y30_c00399{bottom:924.904000pt;}
.y31_c00399{bottom:925.733333pt;}
.y32_c00399{bottom:926.688000pt;}
.y33_c00399{bottom:927.230667pt;}
.y34_c00399{bottom:929.165333pt;}
.y35_c00399{bottom:929.889333pt;}
.y36_c00399{bottom:930.922667pt;}
.y1c_c00399{bottom:947.754667pt;}
.y1d_c00399{bottom:948.914667pt;}
.y1e_c00399{bottom:950.561333pt;}
.y1f_c00399{bottom:952.241333pt;}
.y20_c00399{bottom:953.689333pt;}
.y21_c00399{bottom:955.305333pt;}
.y22_c00399{bottom:956.093333pt;}
.y23_c00399{bottom:957.360000pt;}
.y24_c00399{bottom:958.362667pt;}
.y25_c00399{bottom:960.769333pt;}
.y26_c00399{bottom:961.601333pt;}
.y27_c00399{bottom:962.921333pt;}
.yf_c00399{bottom:979.450667pt;}
.y10_c00399{bottom:981.825333pt;}
.y11_c00399{bottom:984.650667pt;}
.y12_c00399{bottom:985.528000pt;}
.y13_c00399{bottom:986.992000pt;}
.y14_c00399{bottom:987.825333pt;}
.y15_c00399{bottom:989.021333pt;}
.y16_c00399{bottom:990.265333pt;}
.y17_c00399{bottom:991.296000pt;}
.y18_c00399{bottom:992.490667pt;}
.y19_c00399{bottom:994.045333pt;}
.y1a_c00399{bottom:994.981333pt;}
.y1b_c00399{bottom:996.348000pt;}
.y2_c00399{bottom:1013.525333pt;}
.y3_c00399{bottom:1014.026667pt;}
.y4_c00399{bottom:1015.538667pt;}
.y5_c00399{bottom:1016.557333pt;}
.y6_c00399{bottom:1017.508000pt;}
.y7_c00399{bottom:1019.498667pt;}
.y8_c00399{bottom:1020.212000pt;}
.y9_c00399{bottom:1021.982667pt;}
.ya_c00399{bottom:1023.605333pt;}
.yb_c00399{bottom:1024.218667pt;}
.yc_c00399{bottom:1025.820000pt;}
.yd_c00399{bottom:1027.490667pt;}
.ye_c00399{bottom:1028.285333pt;}
.y1_c00399{bottom:1074.845333pt;}
.h5_c00399{height:69.333333pt;}
.h3_c00399{height:74.666667pt;}
.h8_c00399{height:74.681599pt;}
.h7_c00399{height:74.691900pt;}
.h6_c00399{height:80.000000pt;}
.h9_c00399{height:80.015998pt;}
.h4_c00399{height:85.333333pt;}
.hb_c00399{height:90.692775pt;}
.ha_c00399{height:96.019198pt;}
.h2_c00399{height:138.666667pt;}
.h1_c00399{height:1112.000000pt;}
.h0_c00399{height:1112.133333pt;}
.w0_c00399{width:813.333333pt;}
.x0_c00399{left:0.000000pt;}
.x34_c00399{left:3.617333pt;}
.x3a_c00399{left:4.596000pt;}
.x45_c00399{left:5.525333pt;}
.x59_c00399{left:19.430667pt;}
.x27_c00399{left:24.148000pt;}
.x4d_c00399{left:36.626667pt;}
.x6e_c00399{left:42.394827pt;}
.xf_c00399{left:54.212000pt;}
.x28_c00399{left:56.464000pt;}
.x46_c00399{left:58.757333pt;}
.x4e_c00399{left:60.212000pt;}
.x2_c00399{left:62.640000pt;}
.x5a_c00399{left:64.002667pt;}
.x65_c00399{left:64.918667pt;}
.x3b_c00399{left:78.389333pt;}
.x3_c00399{left:82.685333pt;}
.x4f_c00399{left:89.080000pt;}
.x1c_c00399{left:95.964000pt;}
.x6f_c00399{left:110.102907pt;}
.x29_c00399{left:127.030667pt;}
.x5b_c00399{left:131.704000pt;}
.x79_c00399{left:133.108267pt;}
.x10_c00399{left:136.080000pt;}
.x8c_c00399{left:141.481376pt;}
.x4_c00399{left:143.176000pt;}
.x66_c00399{left:152.261333pt;}
.x70_c00399{left:153.399707pt;}
.x1d_c00399{left:154.772000pt;}
.x2a_c00399{left:155.876000pt;}
.x3c_c00399{left:157.352000pt;}
.x5c_c00399{left:161.036000pt;}
.x7a_c00399{left:162.439360pt;}
.x47_c00399{left:169.172000pt;}
.x67_c00399{left:182.538667pt;}
.x5_c00399{left:183.914667pt;}
.x35_c00399{left:190.636000pt;}
.x50_c00399{left:198.548000pt;}
.x2b_c00399{left:204.989333pt;}
.x48_c00399{left:208.294667pt;}
.x1e_c00399{left:214.772000pt;}
.x36_c00399{left:218.220000pt;}
.x6_c00399{left:221.942667pt;}
.x7b_c00399{left:223.675040pt;}
.x2c_c00399{left:225.221333pt;}
.x5d_c00399{left:231.142667pt;}
.x11_c00399{left:233.514667pt;}
.x8d_c00399{left:246.124896pt;}
.x51_c00399{left:259.021333pt;}
.x12_c00399{left:263.750667pt;}
.x1f_c00399{left:266.478667pt;}
.x5e_c00399{left:268.946667pt;}
.x71_c00399{left:272.650587pt;}
.x3d_c00399{left:276.701333pt;}
.x7c_c00399{left:282.978587pt;}
.x85_c00399{left:284.117333pt;}
.x2d_c00399{left:294.817333pt;}
.x49_c00399{left:296.512000pt;}
.x68_c00399{left:300.594667pt;}
.x7_c00399{left:301.573333pt;}
.x8e_c00399{left:304.887787pt;}
.x86_c00399{left:312.664000pt;}
.x13_c00399{left:314.237333pt;}
.x37_c00399{left:318.458667pt;}
.x20_c00399{left:324.172000pt;}
.x4a_c00399{left:326.582667pt;}
.x8_c00399{left:330.128000pt;}
.x5f_c00399{left:338.189333pt;}
.x7d_c00399{left:341.528773pt;}
.x14_c00399{left:342.968000pt;}
.x3e_c00399{left:345.328000pt;}
.x52_c00399{left:346.593333pt;}
.x21_c00399{left:352.324000pt;}
.x72_c00399{left:355.286507pt;}
.x1_c00399{left:366.960000pt;}
.x2e_c00399{left:373.206667pt;}
.x3f_c00399{left:374.372000pt;}
.x60_c00399{left:376.594667pt;}
.x8f_c00399{left:383.130752pt;}
.x15_c00399{left:384.230667pt;}
.x87_c00399{left:389.938667pt;}
.x22_c00399{left:397.568000pt;}
.x69_c00399{left:398.984000pt;}
.x9_c00399{left:400.973333pt;}
.x53_c00399{left:405.128000pt;}
.x2f_c00399{left:409.260000pt;}
.x16_c00399{left:427.109333pt;}
.x73_c00399{left:429.427093pt;}
.x23_c00399{left:433.382667pt;}
.x7e_c00399{left:440.632053pt;}
.x40_c00399{left:442.533333pt;}
.x6a_c00399{left:448.366667pt;}
.x30_c00399{left:450.769333pt;}
.x61_c00399{left:456.229333pt;}
.x17_c00399{left:462.626667pt;}
.x54_c00399{left:463.677333pt;}
.xa_c00399{left:465.877333pt;}
.x88_c00399{left:469.292000pt;}
.x31_c00399{left:474.337333pt;}
.x74_c00399{left:478.140320pt;}
.xb_c00399{left:490.425333pt;}
.x55_c00399{left:493.664000pt;}
.x7f_c00399{left:495.087307pt;}
.x18_c00399{left:503.826667pt;}
.x62_c00399{left:508.796000pt;}
.x90_c00399{left:510.475936pt;}
.x24_c00399{left:519.328000pt;}
.x41_c00399{left:520.993333pt;}
.x6b_c00399{left:525.990667pt;}
.x80_c00399{left:528.517307pt;}
.x75_c00399{left:538.171787pt;}
.x4b_c00399{left:543.048000pt;}
.x25_c00399{left:549.024000pt;}
.xc_c00399{left:554.453333pt;}
.x19_c00399{left:557.426667pt;}
.x32_c00399{left:558.477333pt;}
.x56_c00399{left:559.821333pt;}
.x42_c00399{left:561.097333pt;}
.x63_c00399{left:563.220000pt;}
.x81_c00399{left:566.047547pt;}
.x6c_c00399{left:576.126667pt;}
.x4c_c00399{left:582.242667pt;}
.x82_c00399{left:583.867280pt;}
.x76_c00399{left:585.560907pt;}
.x1a_c00399{left:589.705333pt;}
.x64_c00399{left:591.178667pt;}
.x57_c00399{left:593.000000pt;}
.x26_c00399{left:596.156000pt;}
.x43_c00399{left:601.868000pt;}
.x77_c00399{left:603.463680pt;}
.x38_c00399{left:610.406667pt;}
.x58_c00399{left:614.046667pt;}
.xd_c00399{left:621.305333pt;}
.x91_c00399{left:625.318859pt;}
.x83_c00399{left:627.083200pt;}
.x33_c00399{left:634.892000pt;}
.x1b_c00399{left:636.841333pt;}
.x39_c00399{left:639.750667pt;}
.x89_c00399{left:645.769333pt;}
.xe_c00399{left:653.097333pt;}
.x92_c00399{left:654.354272pt;}
.x78_c00399{left:664.383227pt;}
.x44_c00399{left:666.390667pt;}
.x8a_c00399{left:688.060000pt;}
.x8b_c00399{left:701.932000pt;}
.x6d_c00399{left:729.508000pt;}
.x84_c00399{left:752.981413pt;}
}





/* 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_c00400 {
    display:none;
  }
  .loading-indicator_c00400.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00400 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_c00400 { 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_c00400" -> "#page-container .classname_c00400")
 */
.pf_c00400 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00400 { /* 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_c00400.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00400 { /* 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_c00400 { /* 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_c00400 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00400 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00400 {overflow:visible;}
  }
}
.c_c00400 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00400 { /* 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_c00400:after { /* webkit #35443 */
  content: '';
}
.t_c00400:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00400 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 */
}
.__c00400 { /* 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_c00400 { /* info for Javascript */
  display:none;
}
.l_c00400 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00400 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00400 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00400: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_c00400 {
    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_c00400.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00400.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_c00400 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00400{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00400;src:url('chunks/assets/font_fabf4b590f7fb32aea93ffb2.woff2')format("woff");}.ff1_c00400{font-family:ff1_c00400;line-height:1.000000;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;}
.m7f_c00400{transform:matrix(0.126178,0.000757,-0.001500,0.249996,0,0);-ms-transform:matrix(0.126178,0.000757,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.126178,0.000757,-0.001500,0.249996,0,0);}
.m14f_c00400{transform:matrix(0.130024,0.002340,-0.004499,0.249960,0,0);-ms-transform:matrix(0.130024,0.002340,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.130024,0.002340,-0.004499,0.249960,0,0);}
.m7c_c00400{transform:matrix(0.133218,0.000799,-0.001500,0.249996,0,0);-ms-transform:matrix(0.133218,0.000799,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.133218,0.000799,-0.001500,0.249996,0,0);}
.mf9_c00400{transform:matrix(0.147617,0.003100,-0.005249,0.249945,0,0);-ms-transform:matrix(0.147617,0.003100,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.147617,0.003100,-0.005249,0.249945,0,0);}
.m106_c00400{transform:matrix(0.149917,0.003148,-0.005249,0.249945,0,0);-ms-transform:matrix(0.149917,0.003148,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.149917,0.003148,-0.005249,0.249945,0,0);}
.mff_c00400{transform:matrix(0.156490,0.003286,-0.005249,0.249945,0,0);-ms-transform:matrix(0.156490,0.003286,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.156490,0.003286,-0.005249,0.249945,0,0);}
.mf6_c00400{transform:matrix(0.157250,0.003302,-0.005249,0.249945,0,0);-ms-transform:matrix(0.157250,0.003302,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.157250,0.003302,-0.005249,0.249945,0,0);}
.mf8_c00400{transform:matrix(0.159675,0.003353,-0.005249,0.249945,0,0);-ms-transform:matrix(0.159675,0.003353,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.159675,0.003353,-0.005249,0.249945,0,0);}
.m107_c00400{transform:matrix(0.160020,0.003360,-0.005249,0.249945,0,0);-ms-transform:matrix(0.160020,0.003360,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.160020,0.003360,-0.005249,0.249945,0,0);}
.mf5_c00400{transform:matrix(0.160620,0.003373,-0.005249,0.249945,0,0);-ms-transform:matrix(0.160620,0.003373,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.160620,0.003373,-0.005249,0.249945,0,0);}
.mf3_c00400{transform:matrix(0.162104,0.003404,-0.005249,0.249945,0,0);-ms-transform:matrix(0.162104,0.003404,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.162104,0.003404,-0.005249,0.249945,0,0);}
.mfb_c00400{transform:matrix(0.162829,0.003419,-0.005249,0.249945,0,0);-ms-transform:matrix(0.162829,0.003419,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.162829,0.003419,-0.005249,0.249945,0,0);}
.mf7_c00400{transform:matrix(0.164999,0.003465,-0.005249,0.249945,0,0);-ms-transform:matrix(0.164999,0.003465,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.164999,0.003465,-0.005249,0.249945,0,0);}
.m100_c00400{transform:matrix(0.165913,0.003484,-0.005249,0.249945,0,0);-ms-transform:matrix(0.165913,0.003484,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.165913,0.003484,-0.005249,0.249945,0,0);}
.m104_c00400{transform:matrix(0.168343,0.003535,-0.005249,0.249945,0,0);-ms-transform:matrix(0.168343,0.003535,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.168343,0.003535,-0.005249,0.249945,0,0);}
.mfd_c00400{transform:matrix(0.169153,0.003552,-0.005249,0.249945,0,0);-ms-transform:matrix(0.169153,0.003552,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.169153,0.003552,-0.005249,0.249945,0,0);}
.m102_c00400{transform:matrix(0.169163,0.003552,-0.005249,0.249945,0,0);-ms-transform:matrix(0.169163,0.003552,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.169163,0.003552,-0.005249,0.249945,0,0);}
.m139_c00400{transform:matrix(0.170010,0.003910,-0.005748,0.249934,0,0);-ms-transform:matrix(0.170010,0.003910,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.170010,0.003910,-0.005748,0.249934,0,0);}
.ma_c00400{transform:matrix(0.171762,0.001031,-0.001500,0.249996,0,0);-ms-transform:matrix(0.171762,0.001031,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.171762,0.001031,-0.001500,0.249996,0,0);}
.mfc_c00400{transform:matrix(0.171882,0.003610,-0.005249,0.249945,0,0);-ms-transform:matrix(0.171882,0.003610,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.171882,0.003610,-0.005249,0.249945,0,0);}
.m1c_c00400{transform:matrix(0.172972,0.001038,-0.001500,0.249996,0,0);-ms-transform:matrix(0.172972,0.001038,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.172972,0.001038,-0.001500,0.249996,0,0);}
.m105_c00400{transform:matrix(0.173242,0.003638,-0.005249,0.249945,0,0);-ms-transform:matrix(0.173242,0.003638,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.173242,0.003638,-0.005249,0.249945,0,0);}
.m150_c00400{transform:matrix(0.173702,0.003127,-0.004499,0.249960,0,0);-ms-transform:matrix(0.173702,0.003127,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.173702,0.003127,-0.004499,0.249960,0,0);}
.m156_c00400{transform:matrix(0.174187,0.003135,-0.004499,0.249960,0,0);-ms-transform:matrix(0.174187,0.003135,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.174187,0.003135,-0.004499,0.249960,0,0);}
.mf4_c00400{transform:matrix(0.174312,0.003661,-0.005249,0.249945,0,0);-ms-transform:matrix(0.174312,0.003661,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.174312,0.003661,-0.005249,0.249945,0,0);}
.m109_c00400{transform:matrix(0.174971,0.003674,-0.005249,0.249945,0,0);-ms-transform:matrix(0.174971,0.003674,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.174971,0.003674,-0.005249,0.249945,0,0);}
.m152_c00400{transform:matrix(0.175242,0.003154,-0.004499,0.249960,0,0);-ms-transform:matrix(0.175242,0.003154,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.175242,0.003154,-0.004499,0.249960,0,0);}
.m103_c00400{transform:matrix(0.176541,0.003707,-0.005249,0.249945,0,0);-ms-transform:matrix(0.176541,0.003707,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.176541,0.003707,-0.005249,0.249945,0,0);}
.m158_c00400{transform:matrix(0.177411,0.003193,-0.004499,0.249960,0,0);-ms-transform:matrix(0.177411,0.003193,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.177411,0.003193,-0.004499,0.249960,0,0);}
.m7b_c00400{transform:matrix(0.177502,0.001065,-0.001500,0.249996,0,0);-ms-transform:matrix(0.177502,0.001065,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.177502,0.001065,-0.001500,0.249996,0,0);}
.mc_c00400{transform:matrix(0.179172,0.001075,-0.001500,0.249996,0,0);-ms-transform:matrix(0.179172,0.001075,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.179172,0.001075,-0.001500,0.249996,0,0);}
.m134_c00400{transform:matrix(0.180927,0.004161,-0.005748,0.249934,0,0);-ms-transform:matrix(0.180927,0.004161,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.180927,0.004161,-0.005748,0.249934,0,0);}
.mfa_c00400{transform:matrix(0.181640,0.003814,-0.005249,0.249945,0,0);-ms-transform:matrix(0.181640,0.003814,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.181640,0.003814,-0.005249,0.249945,0,0);}
.m160_c00400{transform:matrix(0.182300,0.003281,-0.004499,0.249960,0,0);-ms-transform:matrix(0.182300,0.003281,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.182300,0.003281,-0.004499,0.249960,0,0);}
.mfe_c00400{transform:matrix(0.185744,0.003901,-0.005249,0.249945,0,0);-ms-transform:matrix(0.185744,0.003901,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.185744,0.003901,-0.005249,0.249945,0,0);}
.m101_c00400{transform:matrix(0.186159,0.003909,-0.005249,0.249945,0,0);-ms-transform:matrix(0.186159,0.003909,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.186159,0.003909,-0.005249,0.249945,0,0);}
.m154_c00400{transform:matrix(0.186735,0.003361,-0.004499,0.249960,0,0);-ms-transform:matrix(0.186735,0.003361,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.186735,0.003361,-0.004499,0.249960,0,0);}
.m7e_c00400{transform:matrix(0.187207,0.001123,-0.001500,0.249996,0,0);-ms-transform:matrix(0.187207,0.001123,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.187207,0.001123,-0.001500,0.249996,0,0);}
.m14e_c00400{transform:matrix(0.187965,0.003383,-0.004499,0.249960,0,0);-ms-transform:matrix(0.187965,0.003383,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.187965,0.003383,-0.004499,0.249960,0,0);}
.m133_c00400{transform:matrix(0.188150,0.004327,-0.005748,0.249934,0,0);-ms-transform:matrix(0.188150,0.004327,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.188150,0.004327,-0.005748,0.249934,0,0);}
.m92_c00400{transform:matrix(0.188476,0.001885,-0.002500,0.249988,0,0);-ms-transform:matrix(0.188476,0.001885,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.188476,0.001885,-0.002500,0.249988,0,0);}
.m3c_c00400{transform:matrix(0.188612,0.001132,-0.001500,0.249996,0,0);-ms-transform:matrix(0.188612,0.001132,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.188612,0.001132,-0.001500,0.249996,0,0);}
.m4_c00400{transform:matrix(0.188742,0.001132,-0.001500,0.249996,0,0);-ms-transform:matrix(0.188742,0.001132,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.188742,0.001132,-0.001500,0.249996,0,0);}
.m50_c00400{transform:matrix(0.189059,0.002080,-0.002750,0.249985,0,0);-ms-transform:matrix(0.189059,0.002080,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.189059,0.002080,-0.002750,0.249985,0,0);}
.mdc_c00400{transform:matrix(0.189563,0.003981,-0.005249,0.249945,0,0);-ms-transform:matrix(0.189563,0.003981,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.189563,0.003981,-0.005249,0.249945,0,0);}
.m2_c00400{transform:matrix(0.189937,0.001140,-0.001500,0.249996,0,0);-ms-transform:matrix(0.189937,0.001140,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.189937,0.001140,-0.001500,0.249996,0,0);}
.m86_c00400{transform:matrix(0.190182,0.001141,-0.001500,0.249996,0,0);-ms-transform:matrix(0.190182,0.001141,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.190182,0.001141,-0.001500,0.249996,0,0);}
.m119_c00400{transform:matrix(0.190796,0.004961,-0.006498,0.249916,0,0);-ms-transform:matrix(0.190796,0.004961,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.190796,0.004961,-0.006498,0.249916,0,0);}
.m79_c00400{transform:matrix(0.190827,0.001145,-0.001500,0.249996,0,0);-ms-transform:matrix(0.190827,0.001145,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.190827,0.001145,-0.001500,0.249996,0,0);}
.m10b_c00400{transform:matrix(0.191103,0.004013,-0.005249,0.249945,0,0);-ms-transform:matrix(0.191103,0.004013,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.191103,0.004013,-0.005249,0.249945,0,0);}
.m81_c00400{transform:matrix(0.192617,0.001156,-0.001500,0.249996,0,0);-ms-transform:matrix(0.192617,0.001156,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.192617,0.001156,-0.001500,0.249996,0,0);}
.m10c_c00400{transform:matrix(0.193072,0.004055,-0.005249,0.249945,0,0);-ms-transform:matrix(0.193072,0.004055,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.193072,0.004055,-0.005249,0.249945,0,0);}
.m7_c00400{transform:matrix(0.193127,0.001159,-0.001500,0.249996,0,0);-ms-transform:matrix(0.193127,0.001159,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.193127,0.001159,-0.001500,0.249996,0,0);}
.m89_c00400{transform:matrix(0.193152,0.001159,-0.001500,0.249996,0,0);-ms-transform:matrix(0.193152,0.001159,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.193152,0.001159,-0.001500,0.249996,0,0);}
.m3f_c00400{transform:matrix(0.193502,0.001161,-0.001500,0.249996,0,0);-ms-transform:matrix(0.193502,0.001161,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.193502,0.001161,-0.001500,0.249996,0,0);}
.m131_c00400{transform:matrix(0.193664,0.004454,-0.005748,0.249934,0,0);-ms-transform:matrix(0.193664,0.004454,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.193664,0.004454,-0.005748,0.249934,0,0);}
.me1_c00400{transform:matrix(0.193727,0.004068,-0.005249,0.249945,0,0);-ms-transform:matrix(0.193727,0.004068,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.193727,0.004068,-0.005249,0.249945,0,0);}
.mc2_c00400{transform:matrix(0.193762,0.004069,-0.005249,0.249945,0,0);-ms-transform:matrix(0.193762,0.004069,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.193762,0.004069,-0.005249,0.249945,0,0);}
.m83_c00400{transform:matrix(0.194032,0.001164,-0.001500,0.249996,0,0);-ms-transform:matrix(0.194032,0.001164,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.194032,0.001164,-0.001500,0.249996,0,0);}
.m14c_c00400{transform:matrix(0.194618,0.003503,-0.004499,0.249960,0,0);-ms-transform:matrix(0.194618,0.003503,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.194618,0.003503,-0.004499,0.249960,0,0);}
.m5f_c00400{transform:matrix(0.194928,0.002144,-0.002750,0.249985,0,0);-ms-transform:matrix(0.194928,0.002144,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.194928,0.002144,-0.002750,0.249985,0,0);}
.m7d_c00400{transform:matrix(0.195021,0.001170,-0.001500,0.249996,0,0);-ms-transform:matrix(0.195021,0.001170,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.195021,0.001170,-0.001500,0.249996,0,0);}
.m108_c00400{transform:matrix(0.195337,0.004102,-0.005249,0.249945,0,0);-ms-transform:matrix(0.195337,0.004102,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.195337,0.004102,-0.005249,0.249945,0,0);}
.mc6_c00400{transform:matrix(0.195532,0.004106,-0.005249,0.249945,0,0);-ms-transform:matrix(0.195532,0.004106,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.195532,0.004106,-0.005249,0.249945,0,0);}
.m29_c00400{transform:matrix(0.195571,0.001173,-0.001500,0.249996,0,0);-ms-transform:matrix(0.195571,0.001173,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.195571,0.001173,-0.001500,0.249996,0,0);}
.mc1_c00400{transform:matrix(0.195602,0.004108,-0.005249,0.249945,0,0);-ms-transform:matrix(0.195602,0.004108,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.195602,0.004108,-0.005249,0.249945,0,0);}
.me4_c00400{transform:matrix(0.196082,0.004118,-0.005249,0.249945,0,0);-ms-transform:matrix(0.196082,0.004118,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.196082,0.004118,-0.005249,0.249945,0,0);}
.mc8_c00400{transform:matrix(0.196692,0.004131,-0.005249,0.249945,0,0);-ms-transform:matrix(0.196692,0.004131,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.196692,0.004131,-0.005249,0.249945,0,0);}
.m58_c00400{transform:matrix(0.196723,0.002164,-0.002750,0.249985,0,0);-ms-transform:matrix(0.196723,0.002164,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.196723,0.002164,-0.002750,0.249985,0,0);}
.m84_c00400{transform:matrix(0.196771,0.001181,-0.001500,0.249996,0,0);-ms-transform:matrix(0.196771,0.001181,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.196771,0.001181,-0.001500,0.249996,0,0);}
.m153_c00400{transform:matrix(0.196818,0.003543,-0.004499,0.249960,0,0);-ms-transform:matrix(0.196818,0.003543,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.196818,0.003543,-0.004499,0.249960,0,0);}
.m155_c00400{transform:matrix(0.197188,0.003549,-0.004499,0.249960,0,0);-ms-transform:matrix(0.197188,0.003549,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.197188,0.003549,-0.004499,0.249960,0,0);}
.m8f_c00400{transform:matrix(0.197326,0.001184,-0.001500,0.249996,0,0);-ms-transform:matrix(0.197326,0.001184,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.197326,0.001184,-0.001500,0.249996,0,0);}
.m117_c00400{transform:matrix(0.197843,0.005144,-0.006498,0.249916,0,0);-ms-transform:matrix(0.197843,0.005144,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.197843,0.005144,-0.006498,0.249916,0,0);}
.m10a_c00400{transform:matrix(0.197876,0.004155,-0.005249,0.249945,0,0);-ms-transform:matrix(0.197876,0.004155,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.197876,0.004155,-0.005249,0.249945,0,0);}
.m82_c00400{transform:matrix(0.198036,0.001188,-0.001500,0.249996,0,0);-ms-transform:matrix(0.198036,0.001188,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.198036,0.001188,-0.001500,0.249996,0,0);}
.m137_c00400{transform:matrix(0.198463,0.004565,-0.005748,0.249934,0,0);-ms-transform:matrix(0.198463,0.004565,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.198463,0.004565,-0.005748,0.249934,0,0);}
.mc4_c00400{transform:matrix(0.199321,0.004186,-0.005249,0.249945,0,0);-ms-transform:matrix(0.199321,0.004186,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.199321,0.004186,-0.005249,0.249945,0,0);}
.m61_c00400{transform:matrix(0.199353,0.002193,-0.002750,0.249985,0,0);-ms-transform:matrix(0.199353,0.002193,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.199353,0.002193,-0.002750,0.249985,0,0);}
.m14d_c00400{transform:matrix(0.200513,0.003609,-0.004499,0.249960,0,0);-ms-transform:matrix(0.200513,0.003609,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.200513,0.003609,-0.004499,0.249960,0,0);}
.m8b_c00400{transform:matrix(0.200876,0.001205,-0.001500,0.249996,0,0);-ms-transform:matrix(0.200876,0.001205,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.200876,0.001205,-0.001500,0.249996,0,0);}
.m7a_c00400{transform:matrix(0.200956,0.001206,-0.001500,0.249996,0,0);-ms-transform:matrix(0.200956,0.001206,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.200956,0.001206,-0.001500,0.249996,0,0);}
.m8_c00400{transform:matrix(0.201311,0.001208,-0.001500,0.249996,0,0);-ms-transform:matrix(0.201311,0.001208,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.201311,0.001208,-0.001500,0.249996,0,0);}
.m116_c00400{transform:matrix(0.201462,0.005238,-0.006498,0.249916,0,0);-ms-transform:matrix(0.201462,0.005238,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.201462,0.005238,-0.006498,0.249916,0,0);}
.m142_c00400{transform:matrix(0.201490,0.004030,-0.004999,0.249950,0,0);-ms-transform:matrix(0.201490,0.004030,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.201490,0.004030,-0.004999,0.249950,0,0);}
.m14b_c00400{transform:matrix(0.201647,0.003630,-0.004499,0.249960,0,0);-ms-transform:matrix(0.201647,0.003630,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.201647,0.003630,-0.004499,0.249960,0,0);}
.m162_c00400{transform:matrix(0.205022,0.003690,-0.004499,0.249960,0,0);-ms-transform:matrix(0.205022,0.003690,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.205022,0.003690,-0.004499,0.249960,0,0);}
.mc3_c00400{transform:matrix(0.205725,0.004320,-0.005249,0.249945,0,0);-ms-transform:matrix(0.205725,0.004320,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.205725,0.004320,-0.005249,0.249945,0,0);}
.m132_c00400{transform:matrix(0.205821,0.004734,-0.005748,0.249934,0,0);-ms-transform:matrix(0.205821,0.004734,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.205821,0.004734,-0.005748,0.249934,0,0);}
.m13e_c00400{transform:matrix(0.206219,0.004124,-0.004999,0.249950,0,0);-ms-transform:matrix(0.206219,0.004124,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.206219,0.004124,-0.004999,0.249950,0,0);}
.m13a_c00400{transform:matrix(0.206240,0.004744,-0.005748,0.249934,0,0);-ms-transform:matrix(0.206240,0.004744,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.206240,0.004744,-0.005748,0.249934,0,0);}
.m1f_c00400{transform:matrix(0.206256,0.001238,-0.001500,0.249996,0,0);-ms-transform:matrix(0.206256,0.001238,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.206256,0.001238,-0.001500,0.249996,0,0);}
.m87_c00400{transform:matrix(0.206841,0.001241,-0.001500,0.249996,0,0);-ms-transform:matrix(0.206841,0.001241,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.206841,0.001241,-0.001500,0.249996,0,0);}
.m6f_c00400{transform:matrix(0.208010,0.001456,-0.001750,0.249994,0,0);-ms-transform:matrix(0.208010,0.001456,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.208010,0.001456,-0.001750,0.249994,0,0);}
.m30_c00400{transform:matrix(0.208011,0.001248,-0.001500,0.249996,0,0);-ms-transform:matrix(0.208011,0.001248,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.208011,0.001248,-0.001500,0.249996,0,0);}
.m54_c00400{transform:matrix(0.208052,0.002289,-0.002750,0.249985,0,0);-ms-transform:matrix(0.208052,0.002289,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.208052,0.002289,-0.002750,0.249985,0,0);}
.m151_c00400{transform:matrix(0.209021,0.003762,-0.004499,0.249960,0,0);-ms-transform:matrix(0.209021,0.003762,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.209021,0.003762,-0.004499,0.249960,0,0);}
.m13d_c00400{transform:matrix(0.209028,0.004181,-0.004999,0.249950,0,0);-ms-transform:matrix(0.209028,0.004181,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.209028,0.004181,-0.004999,0.249950,0,0);}
.m68_c00400{transform:matrix(0.209097,0.002300,-0.002750,0.249985,0,0);-ms-transform:matrix(0.209097,0.002300,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.209097,0.002300,-0.002750,0.249985,0,0);}
.m135_c00400{transform:matrix(0.209245,0.004813,-0.005748,0.249934,0,0);-ms-transform:matrix(0.209245,0.004813,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.209245,0.004813,-0.005748,0.249934,0,0);}
.mb4_c00400{transform:matrix(0.209290,0.002093,-0.002500,0.249988,0,0);-ms-transform:matrix(0.209290,0.002093,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.209290,0.002093,-0.002500,0.249988,0,0);}
.m36_c00400{transform:matrix(0.209296,0.001256,-0.001500,0.249996,0,0);-ms-transform:matrix(0.209296,0.001256,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.209296,0.001256,-0.001500,0.249996,0,0);}
.mcc_c00400{transform:matrix(0.209364,0.004397,-0.005249,0.249945,0,0);-ms-transform:matrix(0.209364,0.004397,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.209364,0.004397,-0.005249,0.249945,0,0);}
.m24_c00400{transform:matrix(0.209876,0.001259,-0.001500,0.249996,0,0);-ms-transform:matrix(0.209876,0.001259,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.209876,0.001259,-0.001500,0.249996,0,0);}
.m21_c00400{transform:matrix(0.210181,0.001261,-0.001500,0.249996,0,0);-ms-transform:matrix(0.210181,0.001261,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.210181,0.001261,-0.001500,0.249996,0,0);}
.md_c00400{transform:matrix(0.210276,0.001262,-0.001500,0.249996,0,0);-ms-transform:matrix(0.210276,0.001262,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.210276,0.001262,-0.001500,0.249996,0,0);}
.m136_c00400{transform:matrix(0.210419,0.004840,-0.005748,0.249934,0,0);-ms-transform:matrix(0.210419,0.004840,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.210419,0.004840,-0.005748,0.249934,0,0);}
.mb1_c00400{transform:matrix(0.210609,0.002106,-0.002500,0.249988,0,0);-ms-transform:matrix(0.210609,0.002106,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.210609,0.002106,-0.002500,0.249988,0,0);}
.m6_c00400{transform:matrix(0.210766,0.001265,-0.001500,0.249996,0,0);-ms-transform:matrix(0.210766,0.001265,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.210766,0.001265,-0.001500,0.249996,0,0);}
.m42_c00400{transform:matrix(0.211211,0.001267,-0.001500,0.249996,0,0);-ms-transform:matrix(0.211211,0.001267,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.211211,0.001267,-0.001500,0.249996,0,0);}
.m5b_c00400{transform:matrix(0.211427,0.002326,-0.002750,0.249985,0,0);-ms-transform:matrix(0.211427,0.002326,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.211427,0.002326,-0.002750,0.249985,0,0);}
.m12c_c00400{transform:matrix(0.211438,0.004440,-0.005249,0.249945,0,0);-ms-transform:matrix(0.211438,0.004440,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.211438,0.004440,-0.005249,0.249945,0,0);}
.m114_c00400{transform:matrix(0.211973,0.005511,-0.006498,0.249916,0,0);-ms-transform:matrix(0.211973,0.005511,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.211973,0.005511,-0.006498,0.249916,0,0);}
.m62_c00400{transform:matrix(0.212172,0.002334,-0.002750,0.249985,0,0);-ms-transform:matrix(0.212172,0.002334,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.212172,0.002334,-0.002750,0.249985,0,0);}
.m67_c00400{transform:matrix(0.212187,0.002334,-0.002750,0.249985,0,0);-ms-transform:matrix(0.212187,0.002334,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.212187,0.002334,-0.002750,0.249985,0,0);}
.m27_c00400{transform:matrix(0.212511,0.001275,-0.001500,0.249996,0,0);-ms-transform:matrix(0.212511,0.001275,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.212511,0.001275,-0.001500,0.249996,0,0);}
.mc5_c00400{transform:matrix(0.212528,0.004463,-0.005249,0.249945,0,0);-ms-transform:matrix(0.212528,0.004463,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.212528,0.004463,-0.005249,0.249945,0,0);}
.m31_c00400{transform:matrix(0.212606,0.001276,-0.001500,0.249996,0,0);-ms-transform:matrix(0.212606,0.001276,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.212606,0.001276,-0.001500,0.249996,0,0);}
.m138_c00400{transform:matrix(0.212854,0.004896,-0.005748,0.249934,0,0);-ms-transform:matrix(0.212854,0.004896,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.212854,0.004896,-0.005748,0.249934,0,0);}
.m1d_c00400{transform:matrix(0.213461,0.001281,-0.001500,0.249996,0,0);-ms-transform:matrix(0.213461,0.001281,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.213461,0.001281,-0.001500,0.249996,0,0);}
.m51_c00400{transform:matrix(0.213467,0.002348,-0.002750,0.249985,0,0);-ms-transform:matrix(0.213467,0.002348,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.213467,0.002348,-0.002750,0.249985,0,0);}
.m53_c00400{transform:matrix(0.213527,0.002349,-0.002750,0.249985,0,0);-ms-transform:matrix(0.213527,0.002349,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.213527,0.002349,-0.002750,0.249985,0,0);}
.m140_c00400{transform:matrix(0.213567,0.004271,-0.004999,0.249950,0,0);-ms-transform:matrix(0.213567,0.004271,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.213567,0.004271,-0.004999,0.249950,0,0);}
.m74_c00400{transform:matrix(0.213630,0.001495,-0.001750,0.249994,0,0);-ms-transform:matrix(0.213630,0.001495,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.213630,0.001495,-0.001750,0.249994,0,0);}
.mca_c00400{transform:matrix(0.213938,0.004493,-0.005249,0.249945,0,0);-ms-transform:matrix(0.213938,0.004493,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.213938,0.004493,-0.005249,0.249945,0,0);}
.m12d_c00400{transform:matrix(0.214373,0.004502,-0.005249,0.249945,0,0);-ms-transform:matrix(0.214373,0.004502,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.214373,0.004502,-0.005249,0.249945,0,0);}
.mb_c00400{transform:matrix(0.214456,0.001287,-0.001500,0.249996,0,0);-ms-transform:matrix(0.214456,0.001287,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.214456,0.001287,-0.001500,0.249996,0,0);}
.m164_c00400{transform:matrix(0.214585,0.003863,-0.004499,0.249960,0,0);-ms-transform:matrix(0.214585,0.003863,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.214585,0.003863,-0.004499,0.249960,0,0);}
.maa_c00400{transform:matrix(0.215184,0.002152,-0.002500,0.249988,0,0);-ms-transform:matrix(0.215184,0.002152,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.215184,0.002152,-0.002500,0.249988,0,0);}
.m1e_c00400{transform:matrix(0.215191,0.001291,-0.001500,0.249996,0,0);-ms-transform:matrix(0.215191,0.001291,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.215191,0.001291,-0.001500,0.249996,0,0);}
.m11b_c00400{transform:matrix(0.215687,0.005608,-0.006498,0.249916,0,0);-ms-transform:matrix(0.215687,0.005608,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.215687,0.005608,-0.006498,0.249916,0,0);}
.m9e_c00400{transform:matrix(0.215704,0.002157,-0.002500,0.249988,0,0);-ms-transform:matrix(0.215704,0.002157,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.215704,0.002157,-0.002500,0.249988,0,0);}
.m3_c00400{transform:matrix(0.215921,0.001296,-0.001500,0.249996,0,0);-ms-transform:matrix(0.215921,0.001296,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.215921,0.001296,-0.001500,0.249996,0,0);}
.m111_c00400{transform:matrix(0.216027,0.005617,-0.006498,0.249916,0,0);-ms-transform:matrix(0.216027,0.005617,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.216027,0.005617,-0.006498,0.249916,0,0);}
.m112_c00400{transform:matrix(0.216232,0.005622,-0.006498,0.249916,0,0);-ms-transform:matrix(0.216232,0.005622,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.216232,0.005622,-0.006498,0.249916,0,0);}
.m127_c00400{transform:matrix(0.216296,0.004110,-0.004749,0.249955,0,0);-ms-transform:matrix(0.216296,0.004110,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.216296,0.004110,-0.004749,0.249955,0,0);}
.m99_c00400{transform:matrix(0.216324,0.002163,-0.002500,0.249988,0,0);-ms-transform:matrix(0.216324,0.002163,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.216324,0.002163,-0.002500,0.249988,0,0);}
.m2a_c00400{transform:matrix(0.216366,0.001298,-0.001500,0.249996,0,0);-ms-transform:matrix(0.216366,0.001298,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.216366,0.001298,-0.001500,0.249996,0,0);}
.mc9_c00400{transform:matrix(0.216687,0.004550,-0.005249,0.249945,0,0);-ms-transform:matrix(0.216687,0.004550,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.216687,0.004550,-0.005249,0.249945,0,0);}
.m85_c00400{transform:matrix(0.217691,0.001306,-0.001500,0.249996,0,0);-ms-transform:matrix(0.217691,0.001306,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.217691,0.001306,-0.001500,0.249996,0,0);}
.m34_c00400{transform:matrix(0.217701,0.001306,-0.001500,0.249996,0,0);-ms-transform:matrix(0.217701,0.001306,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.217701,0.001306,-0.001500,0.249996,0,0);}
.m9_c00400{transform:matrix(0.218176,0.001309,-0.001500,0.249996,0,0);-ms-transform:matrix(0.218176,0.001309,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.218176,0.001309,-0.001500,0.249996,0,0);}
.m8d_c00400{transform:matrix(0.218201,0.001309,-0.001500,0.249996,0,0);-ms-transform:matrix(0.218201,0.001309,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.218201,0.001309,-0.001500,0.249996,0,0);}
.m91_c00400{transform:matrix(0.218361,0.001310,-0.001500,0.249996,0,0);-ms-transform:matrix(0.218361,0.001310,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.218361,0.001310,-0.001500,0.249996,0,0);}
.m28_c00400{transform:matrix(0.218571,0.001311,-0.001500,0.249996,0,0);-ms-transform:matrix(0.218571,0.001311,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.218571,0.001311,-0.001500,0.249996,0,0);}
.m37_c00400{transform:matrix(0.218936,0.001314,-0.001500,0.249996,0,0);-ms-transform:matrix(0.218936,0.001314,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.218936,0.001314,-0.001500,0.249996,0,0);}
.m124_c00400{transform:matrix(0.219495,0.004170,-0.004749,0.249955,0,0);-ms-transform:matrix(0.219495,0.004170,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.219495,0.004170,-0.004749,0.249955,0,0);}
.m26_c00400{transform:matrix(0.219606,0.001318,-0.001500,0.249996,0,0);-ms-transform:matrix(0.219606,0.001318,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.219606,0.001318,-0.001500,0.249996,0,0);}
.m11e_c00400{transform:matrix(0.220155,0.004183,-0.004749,0.249955,0,0);-ms-transform:matrix(0.220155,0.004183,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.220155,0.004183,-0.004749,0.249955,0,0);}
.m64_c00400{transform:matrix(0.220302,0.002423,-0.002750,0.249985,0,0);-ms-transform:matrix(0.220302,0.002423,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.220302,0.002423,-0.002750,0.249985,0,0);}
.m12a_c00400{transform:matrix(0.220331,0.004627,-0.005249,0.249945,0,0);-ms-transform:matrix(0.220331,0.004627,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.220331,0.004627,-0.005249,0.249945,0,0);}
.m59_c00400{transform:matrix(0.220837,0.002429,-0.002750,0.249985,0,0);-ms-transform:matrix(0.220837,0.002429,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.220837,0.002429,-0.002750,0.249985,0,0);}
.m90_c00400{transform:matrix(0.220846,0.001325,-0.001500,0.249996,0,0);-ms-transform:matrix(0.220846,0.001325,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.220846,0.001325,-0.001500,0.249996,0,0);}
.m5_c00400{transform:matrix(0.221266,0.001328,-0.001500,0.249996,0,0);-ms-transform:matrix(0.221266,0.001328,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.221266,0.001328,-0.001500,0.249996,0,0);}
.m80_c00400{transform:matrix(0.221516,0.001329,-0.001500,0.249996,0,0);-ms-transform:matrix(0.221516,0.001329,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.221516,0.001329,-0.001500,0.249996,0,0);}
.m22_c00400{transform:matrix(0.222386,0.001334,-0.001500,0.249996,0,0);-ms-transform:matrix(0.222386,0.001334,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.222386,0.001334,-0.001500,0.249996,0,0);}
.me7_c00400{transform:matrix(0.222576,0.004674,-0.005249,0.249945,0,0);-ms-transform:matrix(0.222576,0.004674,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.222576,0.004674,-0.005249,0.249945,0,0);}
.mc7_c00400{transform:matrix(0.222686,0.004676,-0.005249,0.249945,0,0);-ms-transform:matrix(0.222686,0.004676,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.222686,0.004676,-0.005249,0.249945,0,0);}
.m72_c00400{transform:matrix(0.222985,0.001561,-0.001750,0.249994,0,0);-ms-transform:matrix(0.222985,0.001561,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.222985,0.001561,-0.001750,0.249994,0,0);}
.m4a_c00400{transform:matrix(0.223256,0.002456,-0.002750,0.249985,0,0);-ms-transform:matrix(0.223256,0.002456,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.223256,0.002456,-0.002750,0.249985,0,0);}
.mde_c00400{transform:matrix(0.223431,0.004692,-0.005249,0.249945,0,0);-ms-transform:matrix(0.223431,0.004692,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.223431,0.004692,-0.005249,0.249945,0,0);}
.mb2_c00400{transform:matrix(0.224059,0.002241,-0.002500,0.249988,0,0);-ms-transform:matrix(0.224059,0.002241,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.224059,0.002241,-0.002500,0.249988,0,0);}
.m3a_c00400{transform:matrix(0.224326,0.001346,-0.001500,0.249996,0,0);-ms-transform:matrix(0.224326,0.001346,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.224326,0.001346,-0.001500,0.249996,0,0);}
.m13f_c00400{transform:matrix(0.224475,0.004490,-0.004999,0.249950,0,0);-ms-transform:matrix(0.224475,0.004490,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.224475,0.004490,-0.004999,0.249950,0,0);}
.m11f_c00400{transform:matrix(0.224614,0.004268,-0.004749,0.249955,0,0);-ms-transform:matrix(0.224614,0.004268,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.224614,0.004268,-0.004749,0.249955,0,0);}
.m94_c00400{transform:matrix(0.224754,0.002248,-0.002500,0.249988,0,0);-ms-transform:matrix(0.224754,0.002248,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.224754,0.002248,-0.002500,0.249988,0,0);}
.m2f_c00400{transform:matrix(0.224806,0.001349,-0.001500,0.249996,0,0);-ms-transform:matrix(0.224806,0.001349,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.224806,0.001349,-0.001500,0.249996,0,0);}
.m40_c00400{transform:matrix(0.225311,0.001352,-0.001500,0.249996,0,0);-ms-transform:matrix(0.225311,0.001352,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.225311,0.001352,-0.001500,0.249996,0,0);}
.m48_c00400{transform:matrix(0.225331,0.002479,-0.002750,0.249985,0,0);-ms-transform:matrix(0.225331,0.002479,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.225331,0.002479,-0.002750,0.249985,0,0);}
.m15_c00400{transform:matrix(0.225341,0.001352,-0.001500,0.249996,0,0);-ms-transform:matrix(0.225341,0.001352,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.225341,0.001352,-0.001500,0.249996,0,0);}
.m3d_c00400{transform:matrix(0.225501,0.001353,-0.001500,0.249996,0,0);-ms-transform:matrix(0.225501,0.001353,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.225501,0.001353,-0.001500,0.249996,0,0);}
.m143_c00400{transform:matrix(0.226015,0.004520,-0.004999,0.249950,0,0);-ms-transform:matrix(0.226015,0.004520,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.226015,0.004520,-0.004999,0.249950,0,0);}
.m10d_c00400{transform:matrix(0.226060,0.004747,-0.005249,0.249945,0,0);-ms-transform:matrix(0.226060,0.004747,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.226060,0.004747,-0.005249,0.249945,0,0);}
.m113_c00400{transform:matrix(0.226264,0.005883,-0.006498,0.249916,0,0);-ms-transform:matrix(0.226264,0.005883,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.226264,0.005883,-0.006498,0.249916,0,0);}
.m11c_c00400{transform:matrix(0.226633,0.005892,-0.006498,0.249916,0,0);-ms-transform:matrix(0.226633,0.005892,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.226633,0.005892,-0.006498,0.249916,0,0);}
.m8c_c00400{transform:matrix(0.226816,0.001361,-0.001500,0.249996,0,0);-ms-transform:matrix(0.226816,0.001361,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.226816,0.001361,-0.001500,0.249996,0,0);}
.m5a_c00400{transform:matrix(0.226951,0.002496,-0.002750,0.249985,0,0);-ms-transform:matrix(0.226951,0.002496,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.226951,0.002496,-0.002750,0.249985,0,0);}
.me3_c00400{transform:matrix(0.227360,0.004775,-0.005249,0.249945,0,0);-ms-transform:matrix(0.227360,0.004775,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.227360,0.004775,-0.005249,0.249945,0,0);}
.m159_c00400{transform:matrix(0.227373,0.004093,-0.004499,0.249960,0,0);-ms-transform:matrix(0.227373,0.004093,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.227373,0.004093,-0.004499,0.249960,0,0);}
.mdd_c00400{transform:matrix(0.227685,0.004781,-0.005249,0.249945,0,0);-ms-transform:matrix(0.227685,0.004781,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.227685,0.004781,-0.005249,0.249945,0,0);}
.m129_c00400{transform:matrix(0.227975,0.004787,-0.005249,0.249945,0,0);-ms-transform:matrix(0.227975,0.004787,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.227975,0.004787,-0.005249,0.249945,0,0);}
.m4c_c00400{transform:matrix(0.228146,0.002510,-0.002750,0.249985,0,0);-ms-transform:matrix(0.228146,0.002510,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.228146,0.002510,-0.002750,0.249985,0,0);}
.m98_c00400{transform:matrix(0.228189,0.002282,-0.002500,0.249988,0,0);-ms-transform:matrix(0.228189,0.002282,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.228189,0.002282,-0.002500,0.249988,0,0);}
.m13c_c00400{transform:matrix(0.228409,0.004568,-0.004999,0.249950,0,0);-ms-transform:matrix(0.228409,0.004568,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.228409,0.004568,-0.004999,0.249950,0,0);}
.m25_c00400{transform:matrix(0.228601,0.001372,-0.001500,0.249996,0,0);-ms-transform:matrix(0.228601,0.001372,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.228601,0.001372,-0.001500,0.249996,0,0);}
.mcb_c00400{transform:matrix(0.228690,0.004802,-0.005249,0.249945,0,0);-ms-transform:matrix(0.228690,0.004802,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.228690,0.004802,-0.005249,0.249945,0,0);}
.m15f_c00400{transform:matrix(0.228728,0.004117,-0.004499,0.249960,0,0);-ms-transform:matrix(0.228728,0.004117,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.228728,0.004117,-0.004499,0.249960,0,0);}
.me9_c00400{transform:matrix(0.229214,0.004814,-0.005249,0.249945,0,0);-ms-transform:matrix(0.229214,0.004814,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.229214,0.004814,-0.005249,0.249945,0,0);}
.ma0_c00400{transform:matrix(0.229319,0.002293,-0.002500,0.249988,0,0);-ms-transform:matrix(0.229319,0.002293,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.229319,0.002293,-0.002500,0.249988,0,0);}
.md7_c00400{transform:matrix(0.229474,0.004819,-0.005249,0.249945,0,0);-ms-transform:matrix(0.229474,0.004819,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.229474,0.004819,-0.005249,0.249945,0,0);}
.m130_c00400{transform:matrix(0.229519,0.004820,-0.005249,0.249945,0,0);-ms-transform:matrix(0.229519,0.004820,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.229519,0.004820,-0.005249,0.249945,0,0);}
.m9c_c00400{transform:matrix(0.230448,0.002304,-0.002500,0.249988,0,0);-ms-transform:matrix(0.230448,0.002304,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.230448,0.002304,-0.002500,0.249988,0,0);}
.m5e_c00400{transform:matrix(0.230526,0.002536,-0.002750,0.249985,0,0);-ms-transform:matrix(0.230526,0.002536,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.230526,0.002536,-0.002750,0.249985,0,0);}
.mdf_c00400{transform:matrix(0.230594,0.004842,-0.005249,0.249945,0,0);-ms-transform:matrix(0.230594,0.004842,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.230594,0.004842,-0.005249,0.249945,0,0);}
.mee_c00400{transform:matrix(0.230844,0.004848,-0.005249,0.249945,0,0);-ms-transform:matrix(0.230844,0.004848,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.230844,0.004848,-0.005249,0.249945,0,0);}
.m96_c00400{transform:matrix(0.231113,0.002311,-0.002500,0.249988,0,0);-ms-transform:matrix(0.231113,0.002311,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.231113,0.002311,-0.002500,0.249988,0,0);}
.m70_c00400{transform:matrix(0.231119,0.001618,-0.001750,0.249994,0,0);-ms-transform:matrix(0.231119,0.001618,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.231119,0.001618,-0.001750,0.249994,0,0);}
.m2c_c00400{transform:matrix(0.231376,0.001388,-0.001500,0.249996,0,0);-ms-transform:matrix(0.231376,0.001388,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.231376,0.001388,-0.001500,0.249996,0,0);}
.m10e_c00400{transform:matrix(0.231384,0.004859,-0.005249,0.249945,0,0);-ms-transform:matrix(0.231384,0.004859,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.231384,0.004859,-0.005249,0.249945,0,0);}
.ma8_c00400{transform:matrix(0.231463,0.002315,-0.002500,0.249988,0,0);-ms-transform:matrix(0.231463,0.002315,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.231463,0.002315,-0.002500,0.249988,0,0);}
.mb8_c00400{transform:matrix(0.231574,0.004863,-0.005249,0.249945,0,0);-ms-transform:matrix(0.231574,0.004863,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.231574,0.004863,-0.005249,0.249945,0,0);}
.m14a_c00400{transform:matrix(0.231579,0.005326,-0.005748,0.249934,0,0);-ms-transform:matrix(0.231579,0.005326,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.231579,0.005326,-0.005748,0.249934,0,0);}
.m97_c00400{transform:matrix(0.231608,0.002316,-0.002500,0.249988,0,0);-ms-transform:matrix(0.231608,0.002316,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.231608,0.002316,-0.002500,0.249988,0,0);}
.m8e_c00400{transform:matrix(0.231891,0.001391,-0.001500,0.249996,0,0);-ms-transform:matrix(0.231891,0.001391,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.231891,0.001391,-0.001500,0.249996,0,0);}
.m12e_c00400{transform:matrix(0.231934,0.004871,-0.005249,0.249945,0,0);-ms-transform:matrix(0.231934,0.004871,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.231934,0.004871,-0.005249,0.249945,0,0);}
.maf_c00400{transform:matrix(0.232028,0.002320,-0.002500,0.249988,0,0);-ms-transform:matrix(0.232028,0.002320,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.232028,0.002320,-0.002500,0.249988,0,0);}
.m75_c00400{transform:matrix(0.232099,0.001625,-0.001750,0.249994,0,0);-ms-transform:matrix(0.232099,0.001625,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.232099,0.001625,-0.001750,0.249994,0,0);}
.m20_c00400{transform:matrix(0.232141,0.001393,-0.001500,0.249996,0,0);-ms-transform:matrix(0.232141,0.001393,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.232141,0.001393,-0.001500,0.249996,0,0);}
.mb7_c00400{transform:matrix(0.232463,0.002325,-0.002500,0.249988,0,0);-ms-transform:matrix(0.232463,0.002325,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.232463,0.002325,-0.002500,0.249988,0,0);}
.mcd_c00400{transform:matrix(0.232539,0.004883,-0.005249,0.249945,0,0);-ms-transform:matrix(0.232539,0.004883,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.232539,0.004883,-0.005249,0.249945,0,0);}
.m38_c00400{transform:matrix(0.232666,0.001396,-0.001500,0.249996,0,0);-ms-transform:matrix(0.232666,0.001396,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.232666,0.001396,-0.001500,0.249996,0,0);}
.m2b_c00400{transform:matrix(0.233256,0.001400,-0.001500,0.249996,0,0);-ms-transform:matrix(0.233256,0.001400,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.233256,0.001400,-0.001500,0.249996,0,0);}
.me0_c00400{transform:matrix(0.233524,0.004904,-0.005249,0.249945,0,0);-ms-transform:matrix(0.233524,0.004904,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.233524,0.004904,-0.005249,0.249945,0,0);}
.m5c_c00400{transform:matrix(0.233541,0.002569,-0.002750,0.249985,0,0);-ms-transform:matrix(0.233541,0.002569,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.233541,0.002569,-0.002750,0.249985,0,0);}
.md0_c00400{transform:matrix(0.233628,0.004906,-0.005249,0.249945,0,0);-ms-transform:matrix(0.233628,0.004906,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.233628,0.004906,-0.005249,0.249945,0,0);}
.m19_c00400{transform:matrix(0.233676,0.001402,-0.001500,0.249996,0,0);-ms-transform:matrix(0.233676,0.001402,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.233676,0.001402,-0.001500,0.249996,0,0);}
.mec_c00400{transform:matrix(0.233683,0.004907,-0.005249,0.249945,0,0);-ms-transform:matrix(0.233683,0.004907,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.233683,0.004907,-0.005249,0.249945,0,0);}
.m60_c00400{transform:matrix(0.233866,0.002573,-0.002750,0.249985,0,0);-ms-transform:matrix(0.233866,0.002573,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.233866,0.002573,-0.002750,0.249985,0,0);}
.mb5_c00400{transform:matrix(0.234073,0.002341,-0.002500,0.249988,0,0);-ms-transform:matrix(0.234073,0.002341,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.234073,0.002341,-0.002500,0.249988,0,0);}
.m52_c00400{transform:matrix(0.234076,0.002575,-0.002750,0.249985,0,0);-ms-transform:matrix(0.234076,0.002575,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.234076,0.002575,-0.002750,0.249985,0,0);}
.me5_c00400{transform:matrix(0.234278,0.004920,-0.005249,0.249945,0,0);-ms-transform:matrix(0.234278,0.004920,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.234278,0.004920,-0.005249,0.249945,0,0);}
.m128_c00400{transform:matrix(0.234648,0.004458,-0.004749,0.249955,0,0);-ms-transform:matrix(0.234648,0.004458,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.234648,0.004458,-0.004749,0.249955,0,0);}
.m73_c00400{transform:matrix(0.234669,0.001643,-0.001750,0.249994,0,0);-ms-transform:matrix(0.234669,0.001643,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.234669,0.001643,-0.001750,0.249994,0,0);}
.m161_c00400{transform:matrix(0.234787,0.004226,-0.004499,0.249960,0,0);-ms-transform:matrix(0.234787,0.004226,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.234787,0.004226,-0.004499,0.249960,0,0);}
.m49_c00400{transform:matrix(0.235106,0.002586,-0.002750,0.249985,0,0);-ms-transform:matrix(0.235106,0.002586,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.235106,0.002586,-0.002750,0.249985,0,0);}
.m118_c00400{transform:matrix(0.235206,0.006115,-0.006498,0.249916,0,0);-ms-transform:matrix(0.235206,0.006115,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.235206,0.006115,-0.006498,0.249916,0,0);}
.m8a_c00400{transform:matrix(0.235686,0.001414,-0.001500,0.249996,0,0);-ms-transform:matrix(0.235686,0.001414,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.235686,0.001414,-0.001500,0.249996,0,0);}
.m33_c00400{transform:matrix(0.235916,0.001415,-0.001500,0.249996,0,0);-ms-transform:matrix(0.235916,0.001415,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.235916,0.001415,-0.001500,0.249996,0,0);}
.mdb_c00400{transform:matrix(0.236473,0.004966,-0.005249,0.249945,0,0);-ms-transform:matrix(0.236473,0.004966,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.236473,0.004966,-0.005249,0.249945,0,0);}
.m57_c00400{transform:matrix(0.236556,0.002602,-0.002750,0.249985,0,0);-ms-transform:matrix(0.236556,0.002602,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.236556,0.002602,-0.002750,0.249985,0,0);}
.m2d_c00400{transform:matrix(0.237031,0.001422,-0.001500,0.249996,0,0);-ms-transform:matrix(0.237031,0.001422,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.237031,0.001422,-0.001500,0.249996,0,0);}
.mea_c00400{transform:matrix(0.237118,0.004979,-0.005249,0.249945,0,0);-ms-transform:matrix(0.237118,0.004979,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.237118,0.004979,-0.005249,0.249945,0,0);}
.m56_c00400{transform:matrix(0.237576,0.002613,-0.002750,0.249985,0,0);-ms-transform:matrix(0.237576,0.002613,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.237576,0.002613,-0.002750,0.249985,0,0);}
.m5d_c00400{transform:matrix(0.237651,0.002614,-0.002750,0.249985,0,0);-ms-transform:matrix(0.237651,0.002614,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.237651,0.002614,-0.002750,0.249985,0,0);}
.m46_c00400{transform:matrix(0.237756,0.002615,-0.002750,0.249985,0,0);-ms-transform:matrix(0.237756,0.002615,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.237756,0.002615,-0.002750,0.249985,0,0);}
.m3b_c00400{transform:matrix(0.237826,0.001427,-0.001500,0.249996,0,0);-ms-transform:matrix(0.237826,0.001427,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.237826,0.001427,-0.001500,0.249996,0,0);}
.m163_c00400{transform:matrix(0.237861,0.004282,-0.004499,0.249960,0,0);-ms-transform:matrix(0.237861,0.004282,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.237861,0.004282,-0.004499,0.249960,0,0);}
.m9b_c00400{transform:matrix(0.238028,0.002380,-0.002500,0.249988,0,0);-ms-transform:matrix(0.238028,0.002380,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.238028,0.002380,-0.002500,0.249988,0,0);}
.m11a_c00400{transform:matrix(0.238060,0.006190,-0.006498,0.249916,0,0);-ms-transform:matrix(0.238060,0.006190,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.238060,0.006190,-0.006498,0.249916,0,0);}
.m12b_c00400{transform:matrix(0.238152,0.005001,-0.005249,0.249945,0,0);-ms-transform:matrix(0.238152,0.005001,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.238152,0.005001,-0.005249,0.249945,0,0);}
.m18_c00400{transform:matrix(0.238181,0.001429,-0.001500,0.249996,0,0);-ms-transform:matrix(0.238181,0.001429,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.238181,0.001429,-0.001500,0.249996,0,0);}
.m9a_c00400{transform:matrix(0.238628,0.002386,-0.002500,0.249988,0,0);-ms-transform:matrix(0.238628,0.002386,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.238628,0.002386,-0.002500,0.249988,0,0);}
.me2_c00400{transform:matrix(0.238802,0.005015,-0.005249,0.249945,0,0);-ms-transform:matrix(0.238802,0.005015,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.238802,0.005015,-0.005249,0.249945,0,0);}
.m55_c00400{transform:matrix(0.238996,0.002629,-0.002750,0.249985,0,0);-ms-transform:matrix(0.238996,0.002629,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.238996,0.002629,-0.002750,0.249985,0,0);}
.mce_c00400{transform:matrix(0.239042,0.005020,-0.005249,0.249945,0,0);-ms-transform:matrix(0.239042,0.005020,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.239042,0.005020,-0.005249,0.249945,0,0);}
.ma3_c00400{transform:matrix(0.239208,0.002392,-0.002500,0.249988,0,0);-ms-transform:matrix(0.239208,0.002392,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.239208,0.002392,-0.002500,0.249988,0,0);}
.m120_c00400{transform:matrix(0.239227,0.004545,-0.004749,0.249955,0,0);-ms-transform:matrix(0.239227,0.004545,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.239227,0.004545,-0.004749,0.249955,0,0);}
.m9f_c00400{transform:matrix(0.239853,0.002399,-0.002500,0.249988,0,0);-ms-transform:matrix(0.239853,0.002399,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.239853,0.002399,-0.002500,0.249988,0,0);}
.m141_c00400{transform:matrix(0.239917,0.004798,-0.004999,0.249950,0,0);-ms-transform:matrix(0.239917,0.004798,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.239917,0.004798,-0.004999,0.249950,0,0);}
.md8_c00400{transform:matrix(0.240322,0.005047,-0.005249,0.249945,0,0);-ms-transform:matrix(0.240322,0.005047,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.240322,0.005047,-0.005249,0.249945,0,0);}
.mab_c00400{transform:matrix(0.240363,0.002404,-0.002500,0.249988,0,0);-ms-transform:matrix(0.240363,0.002404,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.240363,0.002404,-0.002500,0.249988,0,0);}
.m2e_c00400{transform:matrix(0.240386,0.001442,-0.001500,0.249996,0,0);-ms-transform:matrix(0.240386,0.001442,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.240386,0.001442,-0.001500,0.249996,0,0);}
.m63_c00400{transform:matrix(0.240550,0.002646,-0.002750,0.249985,0,0);-ms-transform:matrix(0.240550,0.002646,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.240550,0.002646,-0.002750,0.249985,0,0);}
.m43_c00400{transform:matrix(0.240591,0.001444,-0.001500,0.249996,0,0);-ms-transform:matrix(0.240591,0.001444,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.240591,0.001444,-0.001500,0.249996,0,0);}
.m14_c00400{transform:matrix(0.240726,0.001444,-0.001500,0.249996,0,0);-ms-transform:matrix(0.240726,0.001444,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.240726,0.001444,-0.001500,0.249996,0,0);}
.me6_c00400{transform:matrix(0.240847,0.005058,-0.005249,0.249945,0,0);-ms-transform:matrix(0.240847,0.005058,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.240847,0.005058,-0.005249,0.249945,0,0);}
.m88_c00400{transform:matrix(0.241606,0.001450,-0.001500,0.249996,0,0);-ms-transform:matrix(0.241606,0.001450,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.241606,0.001450,-0.001500,0.249996,0,0);}
.me_c00400{transform:matrix(0.242336,0.001454,-0.001500,0.249996,0,0);-ms-transform:matrix(0.242336,0.001454,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.242336,0.001454,-0.001500,0.249996,0,0);}
.m6d_c00400{transform:matrix(0.242730,0.002670,-0.002750,0.249985,0,0);-ms-transform:matrix(0.242730,0.002670,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.242730,0.002670,-0.002750,0.249985,0,0);}
.m12f_c00400{transform:matrix(0.243351,0.005110,-0.005249,0.249945,0,0);-ms-transform:matrix(0.243351,0.005110,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.243351,0.005110,-0.005249,0.249945,0,0);}
.mae_c00400{transform:matrix(0.243503,0.002435,-0.002500,0.249988,0,0);-ms-transform:matrix(0.243503,0.002435,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.243503,0.002435,-0.002500,0.249988,0,0);}
.ma7_c00400{transform:matrix(0.243768,0.002438,-0.002500,0.249988,0,0);-ms-transform:matrix(0.243768,0.002438,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.243768,0.002438,-0.002500,0.249988,0,0);}
.mb6_c00400{transform:matrix(0.244033,0.002440,-0.002500,0.249988,0,0);-ms-transform:matrix(0.244033,0.002440,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.244033,0.002440,-0.002500,0.249988,0,0);}
.md5_c00400{transform:matrix(0.244041,0.005125,-0.005249,0.249945,0,0);-ms-transform:matrix(0.244041,0.005125,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.244041,0.005125,-0.005249,0.249945,0,0);}
.m23_c00400{transform:matrix(0.244301,0.001466,-0.001500,0.249996,0,0);-ms-transform:matrix(0.244301,0.001466,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.244301,0.001466,-0.001500,0.249996,0,0);}
.m39_c00400{transform:matrix(0.244476,0.001467,-0.001500,0.249996,0,0);-ms-transform:matrix(0.244476,0.001467,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.244476,0.001467,-0.001500,0.249996,0,0);}
.m11_c00400{transform:matrix(0.244866,0.001469,-0.001500,0.249996,0,0);-ms-transform:matrix(0.244866,0.001469,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.244866,0.001469,-0.001500,0.249996,0,0);}
.m11d_c00400{transform:matrix(0.245226,0.004659,-0.004749,0.249955,0,0);-ms-transform:matrix(0.245226,0.004659,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.245226,0.004659,-0.004749,0.249955,0,0);}
.m122_c00400{transform:matrix(0.245251,0.004660,-0.004749,0.249955,0,0);-ms-transform:matrix(0.245251,0.004660,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.245251,0.004660,-0.004749,0.249955,0,0);}
.md3_c00400{transform:matrix(0.245916,0.005164,-0.005249,0.249945,0,0);-ms-transform:matrix(0.245916,0.005164,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.245916,0.005164,-0.005249,0.249945,0,0);}
.m15d_c00400{transform:matrix(0.246725,0.004441,-0.004499,0.249960,0,0);-ms-transform:matrix(0.246725,0.004441,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.246725,0.004441,-0.004499,0.249960,0,0);}
.m115_c00400{transform:matrix(0.246937,0.006420,-0.006498,0.249916,0,0);-ms-transform:matrix(0.246937,0.006420,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.246937,0.006420,-0.006498,0.249916,0,0);}
.m15a_c00400{transform:matrix(0.247435,0.004454,-0.004499,0.249960,0,0);-ms-transform:matrix(0.247435,0.004454,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.247435,0.004454,-0.004499,0.249960,0,0);}
.ma6_c00400{transform:matrix(0.247673,0.002477,-0.002500,0.249988,0,0);-ms-transform:matrix(0.247673,0.002477,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.247673,0.002477,-0.002500,0.249988,0,0);}
.md2_c00400{transform:matrix(0.247880,0.005205,-0.005249,0.249945,0,0);-ms-transform:matrix(0.247880,0.005205,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.247880,0.005205,-0.005249,0.249945,0,0);}
.m16_c00400{transform:matrix(0.248441,0.001491,-0.001500,0.249996,0,0);-ms-transform:matrix(0.248441,0.001491,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.248441,0.001491,-0.001500,0.249996,0,0);}
.mb0_c00400{transform:matrix(0.248663,0.002487,-0.002500,0.249988,0,0);-ms-transform:matrix(0.248663,0.002487,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.248663,0.002487,-0.002500,0.249988,0,0);}
.ma4_c00400{transform:matrix(0.249638,0.002496,-0.002500,0.249988,0,0);-ms-transform:matrix(0.249638,0.002496,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.249638,0.002496,-0.002500,0.249988,0,0);}
.m15c_c00400{transform:matrix(0.250094,0.004502,-0.004499,0.249960,0,0);-ms-transform:matrix(0.250094,0.004502,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.250094,0.004502,-0.004499,0.249960,0,0);}
.m76_c00400{transform:matrix(0.250509,0.001754,-0.001750,0.249994,0,0);-ms-transform:matrix(0.250509,0.001754,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.250509,0.001754,-0.001750,0.249994,0,0);}
.m95_c00400{transform:matrix(0.251137,0.002511,-0.002500,0.249988,0,0);-ms-transform:matrix(0.251137,0.002511,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.251137,0.002511,-0.002500,0.249988,0,0);}
.mc0_c00400{transform:matrix(0.251340,0.005278,-0.005249,0.249945,0,0);-ms-transform:matrix(0.251340,0.005278,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.251340,0.005278,-0.005249,0.249945,0,0);}
.ma2_c00400{transform:matrix(0.251387,0.002514,-0.002500,0.249988,0,0);-ms-transform:matrix(0.251387,0.002514,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.251387,0.002514,-0.002500,0.249988,0,0);}
.m93_c00400{transform:matrix(0.251457,0.002515,-0.002500,0.249988,0,0);-ms-transform:matrix(0.251457,0.002515,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.251457,0.002515,-0.002500,0.249988,0,0);}
.m123_c00400{transform:matrix(0.251475,0.004778,-0.004749,0.249955,0,0);-ms-transform:matrix(0.251475,0.004778,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.251475,0.004778,-0.004749,0.249955,0,0);}
.m9d_c00400{transform:matrix(0.251882,0.002519,-0.002500,0.249988,0,0);-ms-transform:matrix(0.251882,0.002519,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.251882,0.002519,-0.002500,0.249988,0,0);}
.mef_c00400{transform:matrix(0.252299,0.005298,-0.005249,0.249945,0,0);-ms-transform:matrix(0.252299,0.005298,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.252299,0.005298,-0.005249,0.249945,0,0);}
.m126_c00400{transform:matrix(0.252304,0.004794,-0.004749,0.249955,0,0);-ms-transform:matrix(0.252304,0.004794,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.252304,0.004794,-0.004749,0.249955,0,0);}
.m71_c00400{transform:matrix(0.252349,0.001766,-0.001750,0.249994,0,0);-ms-transform:matrix(0.252349,0.001766,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.252349,0.001766,-0.001750,0.249994,0,0);}
.m45_c00400{transform:matrix(0.252415,0.002777,-0.002750,0.249985,0,0);-ms-transform:matrix(0.252415,0.002777,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.252415,0.002777,-0.002750,0.249985,0,0);}
.m146_c00400{transform:matrix(0.252563,0.005809,-0.005748,0.249934,0,0);-ms-transform:matrix(0.252563,0.005809,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.252563,0.005809,-0.005748,0.249934,0,0);}
.m121_c00400{transform:matrix(0.253019,0.004807,-0.004749,0.249955,0,0);-ms-transform:matrix(0.253019,0.004807,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.253019,0.004807,-0.004749,0.249955,0,0);}
.m4f_c00400{transform:matrix(0.253115,0.002784,-0.002750,0.249985,0,0);-ms-transform:matrix(0.253115,0.002784,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.253115,0.002784,-0.002750,0.249985,0,0);}
.mbe_c00400{transform:matrix(0.253244,0.005318,-0.005249,0.249945,0,0);-ms-transform:matrix(0.253244,0.005318,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.253244,0.005318,-0.005249,0.249945,0,0);}
.m13_c00400{transform:matrix(0.253320,0.001520,-0.001500,0.249996,0,0);-ms-transform:matrix(0.253320,0.001520,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.253320,0.001520,-0.001500,0.249996,0,0);}
.mf_c00400{transform:matrix(0.253435,0.001521,-0.001500,0.249996,0,0);-ms-transform:matrix(0.253435,0.001521,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.253435,0.001521,-0.001500,0.249996,0,0);}
.m6e_c00400{transform:matrix(0.253459,0.001774,-0.001750,0.249994,0,0);-ms-transform:matrix(0.253459,0.001774,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.253459,0.001774,-0.001750,0.249994,0,0);}
.me8_c00400{transform:matrix(0.253634,0.005326,-0.005249,0.249945,0,0);-ms-transform:matrix(0.253634,0.005326,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.253634,0.005326,-0.005249,0.249945,0,0);}
.m4d_c00400{transform:matrix(0.254295,0.002797,-0.002750,0.249985,0,0);-ms-transform:matrix(0.254295,0.002797,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.254295,0.002797,-0.002750,0.249985,0,0);}
.mad_c00400{transform:matrix(0.254557,0.002546,-0.002500,0.249988,0,0);-ms-transform:matrix(0.254557,0.002546,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.254557,0.002546,-0.002500,0.249988,0,0);}
.m125_c00400{transform:matrix(0.254729,0.004840,-0.004749,0.249955,0,0);-ms-transform:matrix(0.254729,0.004840,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.254729,0.004840,-0.004749,0.249955,0,0);}
.ma1_c00400{transform:matrix(0.254792,0.002548,-0.002500,0.249988,0,0);-ms-transform:matrix(0.254792,0.002548,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.254792,0.002548,-0.002500,0.249988,0,0);}
.m77_c00400{transform:matrix(0.255064,0.001785,-0.001750,0.249994,0,0);-ms-transform:matrix(0.255064,0.001785,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.255064,0.001785,-0.001750,0.249994,0,0);}
.m65_c00400{transform:matrix(0.255210,0.002807,-0.002750,0.249985,0,0);-ms-transform:matrix(0.255210,0.002807,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.255210,0.002807,-0.002750,0.249985,0,0);}
.m148_c00400{transform:matrix(0.255372,0.005874,-0.005748,0.249934,0,0);-ms-transform:matrix(0.255372,0.005874,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.255372,0.005874,-0.005748,0.249934,0,0);}
.m10_c00400{transform:matrix(0.256145,0.001537,-0.001500,0.249996,0,0);-ms-transform:matrix(0.256145,0.001537,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.256145,0.001537,-0.001500,0.249996,0,0);}
.mba_c00400{transform:matrix(0.256483,0.005386,-0.005249,0.249945,0,0);-ms-transform:matrix(0.256483,0.005386,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.256483,0.005386,-0.005249,0.249945,0,0);}
.med_c00400{transform:matrix(0.256583,0.005388,-0.005249,0.249945,0,0);-ms-transform:matrix(0.256583,0.005388,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.256583,0.005388,-0.005249,0.249945,0,0);}
.m78_c00400{transform:matrix(0.256759,0.001797,-0.001750,0.249994,0,0);-ms-transform:matrix(0.256759,0.001797,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.256759,0.001797,-0.001750,0.249994,0,0);}
.md1_c00400{transform:matrix(0.257363,0.005405,-0.005249,0.249945,0,0);-ms-transform:matrix(0.257363,0.005405,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.257363,0.005405,-0.005249,0.249945,0,0);}
.mb3_c00400{transform:matrix(0.259267,0.002593,-0.002500,0.249988,0,0);-ms-transform:matrix(0.259267,0.002593,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.259267,0.002593,-0.002500,0.249988,0,0);}
.mda_c00400{transform:matrix(0.259408,0.005448,-0.005249,0.249945,0,0);-ms-transform:matrix(0.259408,0.005448,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.259408,0.005448,-0.005249,0.249945,0,0);}
.m35_c00400{transform:matrix(0.259835,0.001559,-0.001500,0.249996,0,0);-ms-transform:matrix(0.259835,0.001559,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.259835,0.001559,-0.001500,0.249996,0,0);}
.m145_c00400{transform:matrix(0.259946,0.005979,-0.005748,0.249934,0,0);-ms-transform:matrix(0.259946,0.005979,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.259946,0.005979,-0.005748,0.249934,0,0);}
.m41_c00400{transform:matrix(0.262590,0.001576,-0.001500,0.249996,0,0);-ms-transform:matrix(0.262590,0.001576,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.262590,0.001576,-0.001500,0.249996,0,0);}
.m110_c00400{transform:matrix(0.262872,0.005520,-0.005249,0.249945,0,0);-ms-transform:matrix(0.262872,0.005520,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.262872,0.005520,-0.005249,0.249945,0,0);}
.m32_c00400{transform:matrix(0.262925,0.001578,-0.001500,0.249996,0,0);-ms-transform:matrix(0.262925,0.001578,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.262925,0.001578,-0.001500,0.249996,0,0);}
.mbb_c00400{transform:matrix(0.263052,0.005524,-0.005249,0.249945,0,0);-ms-transform:matrix(0.263052,0.005524,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.263052,0.005524,-0.005249,0.249945,0,0);}
.m12_c00400{transform:matrix(0.263305,0.001580,-0.001500,0.249996,0,0);-ms-transform:matrix(0.263305,0.001580,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.263305,0.001580,-0.001500,0.249996,0,0);}
.mbd_c00400{transform:matrix(0.263657,0.005537,-0.005249,0.249945,0,0);-ms-transform:matrix(0.263657,0.005537,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.263657,0.005537,-0.005249,0.249945,0,0);}
.m3e_c00400{transform:matrix(0.263900,0.001583,-0.001500,0.249996,0,0);-ms-transform:matrix(0.263900,0.001583,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.263900,0.001583,-0.001500,0.249996,0,0);}
.m44_c00400{transform:matrix(0.265130,0.001591,-0.001500,0.249996,0,0);-ms-transform:matrix(0.265130,0.001591,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.265130,0.001591,-0.001500,0.249996,0,0);}
.m4e_c00400{transform:matrix(0.265259,0.002918,-0.002750,0.249985,0,0);-ms-transform:matrix(0.265259,0.002918,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.265259,0.002918,-0.002750,0.249985,0,0);}
.mac_c00400{transform:matrix(0.266237,0.002662,-0.002500,0.249988,0,0);-ms-transform:matrix(0.266237,0.002662,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.266237,0.002662,-0.002500,0.249988,0,0);}
.m1b_c00400{transform:matrix(0.266995,0.001602,-0.001500,0.249996,0,0);-ms-transform:matrix(0.266995,0.001602,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.266995,0.001602,-0.001500,0.249996,0,0);}
.m17_c00400{transform:matrix(0.267405,0.001604,-0.001500,0.249996,0,0);-ms-transform:matrix(0.267405,0.001604,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.267405,0.001604,-0.001500,0.249996,0,0);}
.mb9_c00400{transform:matrix(0.267851,0.005625,-0.005249,0.249945,0,0);-ms-transform:matrix(0.267851,0.005625,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.267851,0.005625,-0.005249,0.249945,0,0);}
.m149_c00400{transform:matrix(0.268389,0.006173,-0.005748,0.249934,0,0);-ms-transform:matrix(0.268389,0.006173,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.268389,0.006173,-0.005748,0.249934,0,0);}
.m6b_c00400{transform:matrix(0.269019,0.002959,-0.002750,0.249985,0,0);-ms-transform:matrix(0.269019,0.002959,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.269019,0.002959,-0.002750,0.249985,0,0);}
.m10f_c00400{transform:matrix(0.269121,0.005652,-0.005249,0.249945,0,0);-ms-transform:matrix(0.269121,0.005652,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.269121,0.005652,-0.005249,0.249945,0,0);}
.m6c_c00400{transform:matrix(0.270429,0.002975,-0.002750,0.249985,0,0);-ms-transform:matrix(0.270429,0.002975,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.270429,0.002975,-0.002750,0.249985,0,0);}
.mbc_c00400{transform:matrix(0.270450,0.005679,-0.005249,0.249945,0,0);-ms-transform:matrix(0.270450,0.005679,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.270450,0.005679,-0.005249,0.249945,0,0);}
.mf2_c00400{transform:matrix(0.270730,0.005685,-0.005249,0.249945,0,0);-ms-transform:matrix(0.270730,0.005685,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.270730,0.005685,-0.005249,0.249945,0,0);}
.md4_c00400{transform:matrix(0.271460,0.005701,-0.005249,0.249945,0,0);-ms-transform:matrix(0.271460,0.005701,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.271460,0.005701,-0.005249,0.249945,0,0);}
.mf1_c00400{transform:matrix(0.271620,0.005704,-0.005249,0.249945,0,0);-ms-transform:matrix(0.271620,0.005704,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.271620,0.005704,-0.005249,0.249945,0,0);}
.ma9_c00400{transform:matrix(0.274251,0.002743,-0.002500,0.249988,0,0);-ms-transform:matrix(0.274251,0.002743,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.274251,0.002743,-0.002500,0.249988,0,0);}
.m66_c00400{transform:matrix(0.276173,0.003038,-0.002750,0.249985,0,0);-ms-transform:matrix(0.276173,0.003038,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.276173,0.003038,-0.002750,0.249985,0,0);}
.m4b_c00400{transform:matrix(0.276498,0.003041,-0.002750,0.249985,0,0);-ms-transform:matrix(0.276498,0.003041,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.276498,0.003041,-0.002750,0.249985,0,0);}
.mf0_c00400{transform:matrix(0.277609,0.005830,-0.005249,0.249945,0,0);-ms-transform:matrix(0.277609,0.005830,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.277609,0.005830,-0.005249,0.249945,0,0);}
.m6a_c00400{transform:matrix(0.277653,0.003054,-0.002750,0.249985,0,0);-ms-transform:matrix(0.277653,0.003054,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.277653,0.003054,-0.002750,0.249985,0,0);}
.m147_c00400{transform:matrix(0.277742,0.006388,-0.005748,0.249934,0,0);-ms-transform:matrix(0.277742,0.006388,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.277742,0.006388,-0.005748,0.249934,0,0);}
.md9_c00400{transform:matrix(0.278044,0.005839,-0.005249,0.249945,0,0);-ms-transform:matrix(0.278044,0.005839,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.278044,0.005839,-0.005249,0.249945,0,0);}
.m47_c00400{transform:matrix(0.278088,0.003059,-0.002750,0.249985,0,0);-ms-transform:matrix(0.278088,0.003059,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.278088,0.003059,-0.002750,0.249985,0,0);}
.m69_c00400{transform:matrix(0.278133,0.003059,-0.002750,0.249985,0,0);-ms-transform:matrix(0.278133,0.003059,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.278133,0.003059,-0.002750,0.249985,0,0);}
.m1a_c00400{transform:matrix(0.278545,0.001671,-0.001500,0.249996,0,0);-ms-transform:matrix(0.278545,0.001671,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.278545,0.001671,-0.001500,0.249996,0,0);}
.meb_c00400{transform:matrix(0.281753,0.005917,-0.005249,0.249945,0,0);-ms-transform:matrix(0.281753,0.005917,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.281753,0.005917,-0.005249,0.249945,0,0);}
.md6_c00400{transform:matrix(0.283193,0.005947,-0.005249,0.249945,0,0);-ms-transform:matrix(0.283193,0.005947,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.283193,0.005947,-0.005249,0.249945,0,0);}
.ma5_c00400{transform:matrix(0.284586,0.002846,-0.002500,0.249988,0,0);-ms-transform:matrix(0.284586,0.002846,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.284586,0.002846,-0.002500,0.249988,0,0);}
.mbf_c00400{transform:matrix(0.287117,0.006029,-0.005249,0.249945,0,0);-ms-transform:matrix(0.287117,0.006029,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.287117,0.006029,-0.005249,0.249945,0,0);}
.m157_c00400{transform:matrix(0.290963,0.005237,-0.004499,0.249960,0,0);-ms-transform:matrix(0.290963,0.005237,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.290963,0.005237,-0.004499,0.249960,0,0);}
.mcf_c00400{transform:matrix(0.291576,0.006123,-0.005249,0.249945,0,0);-ms-transform:matrix(0.291576,0.006123,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.291576,0.006123,-0.005249,0.249945,0,0);}
.m15e_c00400{transform:matrix(0.296287,0.005333,-0.004499,0.249960,0,0);-ms-transform:matrix(0.296287,0.005333,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.296287,0.005333,-0.004499,0.249960,0,0);}
.m15b_c00400{transform:matrix(0.486861,0.008764,-0.004499,0.249960,0,0);-ms-transform:matrix(0.486861,0.008764,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.486861,0.008764,-0.004499,0.249960,0,0);}
.m144_c00400{transform:matrix(0.504796,0.011610,-0.005748,0.249934,0,0);-ms-transform:matrix(0.504796,0.011610,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.504796,0.011610,-0.005748,0.249934,0,0);}
.m0_c00400{transform:matrix(0.520185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520185,0.000000,0.000000,0.250000,0,0);}
.m1_c00400{transform:matrix(0.939300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.939300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.939300,0.000000,0.000000,0.250000,0,0);}
.m13b_c00400{transform:matrix(1.281021,0.029463,-0.005748,0.249934,0,0);-ms-transform:matrix(1.281021,0.029463,-0.005748,0.249934,0,0);-webkit-transform:matrix(1.281021,0.029463,-0.005748,0.249934,0,0);}
.v0_c00400{vertical-align:0.000000px;}
.ls0_c00400{letter-spacing:0.000000px;}
.sc__c00400{text-shadow:none;}
.sc0_c00400{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__c00400{-webkit-text-stroke:0px transparent;}
.sc0_c00400{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00400{word-spacing:0.000000px;}
.fc0_c00400{color:transparent;}
.fs0_c00400{font-size:24.000000px;}
.fs11_c00400{font-size:36.009521px;}
.fs2_c00400{font-size:72.001296px;}
.fs9_c00400{font-size:72.003600px;}
.fs5_c00400{font-size:72.004356px;}
.fsa_c00400{font-size:72.015874px;}
.fs13_c00400{font-size:72.019041px;}
.fs4_c00400{font-size:78.001404px;}
.fs7_c00400{font-size:78.001911px;}
.fs8_c00400{font-size:78.003900px;}
.fsf_c00400{font-size:78.014078px;}
.fs3_c00400{font-size:84.001512px;}
.fs6_c00400{font-size:84.005082px;}
.fs15_c00400{font-size:84.013607px;}
.fs12_c00400{font-size:84.016798px;}
.fsb_c00400{font-size:84.018520px;}
.fse_c00400{font-size:84.028387px;}
.fs1_c00400{font-size:90.001620px;}
.fs14_c00400{font-size:96.015551px;}
.fs10_c00400{font-size:96.025389px;}
.fsd_c00400{font-size:102.022489px;}
.fsc_c00400{font-size:108.023811px;}
.y0_c00400{bottom:0.000000px;}
.y16c_c00400{bottom:34.477815px;}
.y16b_c00400{bottom:36.279444px;}
.y16a_c00400{bottom:37.031409px;}
.y169_c00400{bottom:39.075348px;}
.y168_c00400{bottom:39.838899px;}
.y167_c00400{bottom:41.543469px;}
.y166_c00400{bottom:42.848730px;}
.y165_c00400{bottom:44.195904px;}
.y164_c00400{bottom:45.910344px;}
.y163_c00400{bottom:47.727987px;}
.y162_c00400{bottom:48.979155px;}
.y161_c00400{bottom:50.220102px;}
.y160_c00400{bottom:54.922593px;}
.y15f_c00400{bottom:54.922839px;}
.y15e_c00400{bottom:54.923151px;}
.y15d_c00400{bottom:68.987811px;}
.y15c_c00400{bottom:69.989511px;}
.y15b_c00400{bottom:70.981842px;}
.y15a_c00400{bottom:71.569794px;}
.y159_c00400{bottom:71.993073px;}
.y158_c00400{bottom:72.576516px;}
.y157_c00400{bottom:72.977817px;}
.y156_c00400{bottom:73.568496px;}
.y155_c00400{bottom:74.948682px;}
.y154_c00400{bottom:76.324197px;}
.y153_c00400{bottom:77.493000px;}
.y152_c00400{bottom:115.392065px;}
.y151_c00400{bottom:116.441693px;}
.y150_c00400{bottom:116.961470px;}
.y14f_c00400{bottom:119.530098px;}
.y14e_c00400{bottom:120.536705px;}
.y14b_c00400{bottom:126.542670px;}
.y14a_c00400{bottom:127.223460px;}
.y149_c00400{bottom:129.233160px;}
.y14d_c00400{bottom:129.398099px;}
.y148_c00400{bottom:130.091910px;}
.y14c_c00400{bottom:130.408500px;}
.y147_c00400{bottom:131.420370px;}
.y146_c00400{bottom:132.104520px;}
.y145_c00400{bottom:133.340550px;}
.y144_c00400{bottom:134.463000px;}
.y143_c00400{bottom:154.775381px;}
.y142_c00400{bottom:172.882530px;}
.y141_c00400{bottom:173.652811px;}
.y140_c00400{bottom:176.008644px;}
.y13f_c00400{bottom:177.276139px;}
.y13e_c00400{bottom:179.328475px;}
.y13d_c00400{bottom:181.860327px;}
.y13c_c00400{bottom:182.606769px;}
.y13b_c00400{bottom:183.879336px;}
.y13a_c00400{bottom:186.361680px;}
.y139_c00400{bottom:187.381500px;}
.y138_c00400{bottom:208.482074px;}
.y137_c00400{bottom:209.196683px;}
.y136_c00400{bottom:211.789322px;}
.y135_c00400{bottom:213.888545px;}
.y134_c00400{bottom:214.796249px;}
.y133_c00400{bottom:215.510763px;}
.y132_c00400{bottom:216.429681px;}
.y131_c00400{bottom:218.964203px;}
.y130_c00400{bottom:220.590548px;}
.y12f_c00400{bottom:221.943000px;}
.y12e_c00400{bottom:246.829814px;}
.y12d_c00400{bottom:247.486539px;}
.y12c_c00400{bottom:248.969907px;}
.y12b_c00400{bottom:251.284762px;}
.y12a_c00400{bottom:251.941688px;}
.y129_c00400{bottom:253.614552px;}
.y128_c00400{bottom:254.671617px;}
.y127_c00400{bottom:256.360356px;}
.y126_c00400{bottom:257.611278px;}
.y125_c00400{bottom:258.226764px;}
.y124_c00400{bottom:259.024964px;}
.y123_c00400{bottom:260.281500px;}
.y122_c00400{bottom:279.849810px;}
.y121_c00400{bottom:280.742325px;}
.y120_c00400{bottom:283.348422px;}
.y11f_c00400{bottom:284.224362px;}
.y11e_c00400{bottom:286.550829px;}
.y11d_c00400{bottom:287.400327px;}
.y11c_c00400{bottom:288.271236px;}
.y11b_c00400{bottom:288.849411px;}
.y11a_c00400{bottom:290.285664px;}
.y119_c00400{bottom:292.020111px;}
.y118_c00400{bottom:293.431014px;}
.y117_c00400{bottom:294.307500px;}
.y113_c00400{bottom:323.140089px;}
.y114_c00400{bottom:323.846399px;}
.y115_c00400{bottom:324.543528px;}
.y116_c00400{bottom:326.457288px;}
.y112_c00400{bottom:351.850710px;}
.y111_c00400{bottom:352.599023px;}
.y110_c00400{bottom:353.814431px;}
.y10f_c00400{bottom:354.310911px;}
.y10e_c00400{bottom:355.282288px;}
.y10d_c00400{bottom:355.641422px;}
.y10c_c00400{bottom:356.004031px;}
.y10b_c00400{bottom:356.496972px;}
.y10a_c00400{bottom:356.854097px;}
.y109_c00400{bottom:357.343233px;}
.y108_c00400{bottom:358.050158px;}
.y107_c00400{bottom:358.784049px;}
.y106_c00400{bottom:388.293024px;}
.y105_c00400{bottom:388.524899px;}
.y104_c00400{bottom:389.080914px;}
.y103_c00400{bottom:389.457807px;}
.y102_c00400{bottom:389.623389px;}
.y101_c00400{bottom:389.927291px;}
.y100_c00400{bottom:390.238872px;}
.yff_c00400{bottom:390.855761px;}
.yfe_c00400{bottom:391.090967px;}
.yfd_c00400{bottom:391.401221px;}
.yfc_c00400{bottom:391.631559px;}
.yfb_c00400{bottom:391.866104px;}
.yfa_c00400{bottom:392.233276px;}
.yf9_c00400{bottom:392.773952px;}
.yf8_c00400{bottom:393.082626px;}
.yf7_c00400{bottom:425.052204px;}
.yf6_c00400{bottom:425.999622px;}
.yf5_c00400{bottom:427.682370px;}
.yf4_c00400{bottom:428.628705px;}
.yf3_c00400{bottom:429.198474px;}
.yf2_c00400{bottom:430.143549px;}
.yf1_c00400{bottom:430.708593px;}
.yf0_c00400{bottom:432.599259px;}
.yef_c00400{bottom:433.323489px;}
.yee_c00400{bottom:433.892880px;}
.yed_c00400{bottom:435.751545px;}
.yec_c00400{bottom:436.291467px;}
.yeb_c00400{bottom:460.494485px;}
.yea_c00400{bottom:461.112845px;}
.ye9_c00400{bottom:461.480921px;}
.ye8_c00400{bottom:462.223767px;}
.ye7_c00400{bottom:463.436379px;}
.ye6_c00400{bottom:463.798056px;}
.ye5_c00400{bottom:464.543195px;}
.ye4_c00400{bottom:465.630324px;}
.ye3_c00400{bottom:465.882207px;}
.ye2_c00400{bottom:466.592936px;}
.ye1_c00400{bottom:466.951754px;}
.ye0_c00400{bottom:468.158018px;}
.ydf_c00400{bottom:495.702812px;}
.yde_c00400{bottom:497.142449px;}
.ydd_c00400{bottom:497.592114px;}
.ydc_c00400{bottom:498.020579px;}
.ydb_c00400{bottom:499.888050px;}
.yda_c00400{bottom:500.334302px;}
.yd9_c00400{bottom:501.468306px;}
.yd8_c00400{bottom:502.055448px;}
.yd7_c00400{bottom:502.620129px;}
.yd6_c00400{bottom:503.472498px;}
.yd5_c00400{bottom:503.909988px;}
.yd4_c00400{bottom:504.617997px;}
.yd3_c00400{bottom:534.288960px;}
.yd2_c00400{bottom:535.566168px;}
.yd1_c00400{bottom:536.381159px;}
.yd0_c00400{bottom:537.870561px;}
.ycf_c00400{bottom:538.506771px;}
.yce_c00400{bottom:539.554172px;}
.ycd_c00400{bottom:540.179691px;}
.ycc_c00400{bottom:541.441724px;}
.ycb_c00400{bottom:542.063054px;}
.yca_c00400{bottom:542.698823px;}
.yc9_c00400{bottom:543.322704px;}
.yc8_c00400{bottom:544.157910px;}
.yc7_c00400{bottom:544.748775px;}
.yc6_c00400{bottom:545.394152px;}
.yc5_c00400{bottom:567.413987px;}
.yc4_c00400{bottom:569.757681px;}
.yc3_c00400{bottom:570.903494px;}
.yc2_c00400{bottom:572.536202px;}
.yc1_c00400{bottom:574.390481px;}
.yc0_c00400{bottom:576.018117px;}
.ybf_c00400{bottom:577.413567px;}
.ybe_c00400{bottom:579.267720px;}
.ybd_c00400{bottom:579.964500px;}
.ybc_c00400{bottom:607.345365px;}
.yb6_c00400{bottom:607.345500px;}
.yba_c00400{bottom:607.345605px;}
.ybb_c00400{bottom:607.345620px;}
.yb3_c00400{bottom:607.345665px;}
.yb5_c00400{bottom:607.345755px;}
.yb7_c00400{bottom:607.345815px;}
.yb8_c00400{bottom:607.346130px;}
.yb9_c00400{bottom:607.346190px;}
.yb4_c00400{bottom:607.346310px;}
.yb2_c00400{bottom:638.927940px;}
.yb1_c00400{bottom:639.545685px;}
.yb0_c00400{bottom:639.812865px;}
.yaf_c00400{bottom:639.995850px;}
.yae_c00400{bottom:640.620495px;}
.yad_c00400{bottom:640.879815px;}
.yac_c00400{bottom:641.321160px;}
.yab_c00400{bottom:641.679675px;}
.yaa_c00400{bottom:642.830895px;}
.ya9_c00400{bottom:643.103715px;}
.ya8_c00400{bottom:643.539330px;}
.ya7_c00400{bottom:643.967520px;}
.ya6_c00400{bottom:644.490210px;}
.ya5_c00400{bottom:674.356410px;}
.ya4_c00400{bottom:675.033855px;}
.ya3_c00400{bottom:675.358245px;}
.ya2_c00400{bottom:676.146630px;}
.ya1_c00400{bottom:676.589295px;}
.ya0_c00400{bottom:676.818780px;}
.y9f_c00400{bottom:677.361990px;}
.y9e_c00400{bottom:677.691345px;}
.y9d_c00400{bottom:678.139545px;}
.y9c_c00400{bottom:678.582540px;}
.y9b_c00400{bottom:679.019940px;}
.y9a_c00400{bottom:679.794825px;}
.y99_c00400{bottom:680.229480px;}
.y98_c00400{bottom:681.001485px;}
.y97_c00400{bottom:681.211500px;}
.y96_c00400{bottom:711.661647px;}
.y95_c00400{bottom:711.941934px;}
.y94_c00400{bottom:712.128261px;}
.y93_c00400{bottom:712.594857px;}
.y92_c00400{bottom:712.865325px;}
.y91_c00400{bottom:713.330535px;}
.y90_c00400{bottom:713.528076px;}
.y8f_c00400{bottom:714.124245px;}
.y8e_c00400{bottom:714.326826px;}
.y8d_c00400{bottom:714.521226px;}
.y8c_c00400{bottom:715.315035px;}
.y8b_c00400{bottom:715.575639px;}
.y8a_c00400{bottom:715.770075px;}
.y89_c00400{bottom:747.156897px;}
.y88_c00400{bottom:747.425844px;}
.y87_c00400{bottom:747.957231px;}
.y86_c00400{bottom:748.229445px;}
.y85_c00400{bottom:748.486935px;}
.y84_c00400{bottom:749.026557px;}
.y83_c00400{bottom:749.219238px;}
.y82_c00400{bottom:749.541852px;}
.y81_c00400{bottom:749.881863px;}
.y80_c00400{bottom:750.086100px;}
.y7f_c00400{bottom:750.280428px;}
.y7e_c00400{bottom:750.669210px;}
.y7d_c00400{bottom:750.870000px;}
.y7c_c00400{bottom:782.964622px;}
.y7b_c00400{bottom:783.728235px;}
.y7a_c00400{bottom:784.274665px;}
.y79_c00400{bottom:784.663837px;}
.y78_c00400{bottom:784.899993px;}
.y77_c00400{bottom:785.359326px;}
.y76_c00400{bottom:785.746776px;}
.y75_c00400{bottom:786.296976px;}
.y74_c00400{bottom:786.601255px;}
.y73_c00400{bottom:786.831793px;}
.y72_c00400{bottom:787.591500px;}
.y71_c00400{bottom:819.204109px;}
.y70_c00400{bottom:819.366947px;}
.y6f_c00400{bottom:819.763143px;}
.y6e_c00400{bottom:820.149162px;}
.y6d_c00400{bottom:820.312016px;}
.y6c_c00400{bottom:820.810965px;}
.y6b_c00400{bottom:821.427384px;}
.y6a_c00400{bottom:821.695931px;}
.y69_c00400{bottom:821.807276px;}
.y68_c00400{bottom:822.303364px;}
.y67_c00400{bottom:822.684693px;}
.y66_c00400{bottom:855.573672px;}
.y65_c00400{bottom:855.874403px;}
.y64_c00400{bottom:856.870218px;}
.y63_c00400{bottom:857.177037px;}
.y62_c00400{bottom:857.480474px;}
.y61_c00400{bottom:858.270603px;}
.y60_c00400{bottom:858.571400px;}
.y5f_c00400{bottom:859.273713px;}
.y5e_c00400{bottom:860.462538px;}
.y5d_c00400{bottom:861.256282px;}
.y5c_c00400{bottom:861.836766px;}
.y5b_c00400{bottom:890.687316px;}
.y5a_c00400{bottom:891.152684px;}
.y59_c00400{bottom:891.384312px;}
.y58_c00400{bottom:891.932227px;}
.y57_c00400{bottom:892.554171px;}
.y56_c00400{bottom:893.327670px;}
.y55_c00400{bottom:893.559546px;}
.y54_c00400{bottom:893.943423px;}
.y53_c00400{bottom:894.630033px;}
.y52_c00400{bottom:895.096524px;}
.y51_c00400{bottom:895.317767px;}
.y50_c00400{bottom:926.370883px;}
.y4f_c00400{bottom:927.107493px;}
.y4e_c00400{bottom:927.713406px;}
.y4d_c00400{bottom:928.072958px;}
.y4c_c00400{bottom:929.299518px;}
.y4b_c00400{bottom:929.656033px;}
.y4a_c00400{bottom:930.024462px;}
.y49_c00400{bottom:930.386720px;}
.y48_c00400{bottom:931.604469px;}
.y47_c00400{bottom:932.082276px;}
.y46_c00400{bottom:932.581500px;}
.y45_c00400{bottom:965.787354px;}
.y44_c00400{bottom:965.787714px;}
.y40_c00400{bottom:998.420196px;}
.y43_c00400{bottom:998.420685px;}
.y41_c00400{bottom:998.420736px;}
.y3f_c00400{bottom:998.420898px;}
.y42_c00400{bottom:998.421216px;}
.y3e_c00400{bottom:998.421549px;}
.y3b_c00400{bottom:998.421651px;}
.y3c_c00400{bottom:998.421660px;}
.y38_c00400{bottom:998.421753px;}
.y3a_c00400{bottom:998.421942px;}
.y3d_c00400{bottom:998.422029px;}
.y39_c00400{bottom:998.422113px;}
.y37_c00400{bottom:1031.838591px;}
.y36_c00400{bottom:1033.076649px;}
.y35_c00400{bottom:1033.439379px;}
.y34_c00400{bottom:1033.940979px;}
.y33_c00400{bottom:1035.277767px;}
.y32_c00400{bottom:1035.634050px;}
.y31_c00400{bottom:1035.996834px;}
.y30_c00400{bottom:1036.607901px;}
.y2f_c00400{bottom:1036.980099px;}
.y2e_c00400{bottom:1037.695992px;}
.y2d_c00400{bottom:1038.425967px;}
.y2c_c00400{bottom:1038.677370px;}
.y2b_c00400{bottom:1039.502784px;}
.y2a_c00400{bottom:1067.652927px;}
.y29_c00400{bottom:1067.880336px;}
.y28_c00400{bottom:1068.343308px;}
.y27_c00400{bottom:1068.662115px;}
.y26_c00400{bottom:1069.126671px;}
.y25_c00400{bottom:1069.672896px;}
.y24_c00400{bottom:1069.909932px;}
.y23_c00400{bottom:1070.063796px;}
.y22_c00400{bottom:1070.526552px;}
.y21_c00400{bottom:1070.834148px;}
.y20_c00400{bottom:1071.303408px;}
.y1f_c00400{bottom:1071.532410px;}
.y1e_c00400{bottom:1071.987285px;}
.y1d_c00400{bottom:1072.291623px;}
.y1c_c00400{bottom:1072.441944px;}
.y1b_c00400{bottom:1104.230001px;}
.y1a_c00400{bottom:1104.944793px;}
.y19_c00400{bottom:1105.202001px;}
.y18_c00400{bottom:1105.478397px;}
.y17_c00400{bottom:1106.188593px;}
.y16_c00400{bottom:1106.541198px;}
.y15_c00400{bottom:1106.804820px;}
.y14_c00400{bottom:1107.166881px;}
.y13_c00400{bottom:1107.594276px;}
.y12_c00400{bottom:1107.959574px;}
.y11_c00400{bottom:1108.135743px;}
.y10_c00400{bottom:1108.640976px;}
.yf_c00400{bottom:1109.087190px;}
.ye_c00400{bottom:1109.430252px;}
.yd_c00400{bottom:1138.794120px;}
.yc_c00400{bottom:1138.991778px;}
.yb_c00400{bottom:1139.398560px;}
.ya_c00400{bottom:1139.594391px;}
.y9_c00400{bottom:1140.130773px;}
.y8_c00400{bottom:1140.518088px;}
.y7_c00400{bottom:1140.731865px;}
.y6_c00400{bottom:1141.128666px;}
.y5_c00400{bottom:1141.661781px;}
.y4_c00400{bottom:1141.859295px;}
.y3_c00400{bottom:1142.381016px;}
.y2_c00400{bottom:1142.640000px;}
.y1_c00400{bottom:1218.118500px;}
.h2_c00400{height:24.000000px;}
.h13_c00400{height:36.009521px;}
.h4_c00400{height:72.001296px;}
.hb_c00400{height:72.003600px;}
.h7_c00400{height:72.004356px;}
.hc_c00400{height:72.015874px;}
.h15_c00400{height:72.019041px;}
.h6_c00400{height:78.001404px;}
.h9_c00400{height:78.001911px;}
.ha_c00400{height:78.003900px;}
.h11_c00400{height:78.014078px;}
.h5_c00400{height:84.001512px;}
.h8_c00400{height:84.005082px;}
.h17_c00400{height:84.013607px;}
.h14_c00400{height:84.016798px;}
.hd_c00400{height:84.018520px;}
.h10_c00400{height:84.028387px;}
.h3_c00400{height:90.001620px;}
.h16_c00400{height:96.015551px;}
.h12_c00400{height:96.025389px;}
.hf_c00400{height:102.022489px;}
.he_c00400{height:108.023811px;}
.h1_c00400{height:1251.000000px;}
.h0_c00400{height:1251.150000px;}
.w0_c00400{width:915.000000px;}
.x0_c00400{left:0.000000px;}
.xa5_c00400{left:140.130711px;}
.x8f_c00400{left:142.127111px;}
.x67_c00400{left:143.367870px;}
.x41_c00400{left:144.617276px;}
.x3_c00400{left:146.002500px;}
.x5a_c00400{left:164.824500px;}
.x1a_c00400{left:167.560701px;}
.x80_c00400{left:175.281330px;}
.x3b_c00400{left:177.009008px;}
.x2c_c00400{left:178.202883px;}
.x31_c00400{left:187.383912px;}
.x4_c00400{left:189.166500px;}
.x76_c00400{left:196.938573px;}
.xa6_c00400{left:198.807000px;}
.x6d_c00400{left:208.006286px;}
.x42_c00400{left:209.117195px;}
.x1b_c00400{left:211.033440px;}
.x22_c00400{left:220.486428px;}
.x77_c00400{left:230.634243px;}
.x4c_c00400{left:242.358000px;}
.x23_c00400{left:243.386244px;}
.xf_c00400{left:245.306088px;}
.x93_c00400{left:250.245000px;}
.x6e_c00400{left:251.994144px;}
.x32_c00400{left:253.114500px;}
.xa7_c00400{left:260.608500px;}
.x61_c00400{left:263.125245px;}
.x86_c00400{left:264.705768px;}
.x90_c00400{left:273.050579px;}
.x4d_c00400{left:274.746000px;}
.x5_c00400{left:276.120000px;}
.x9a_c00400{left:283.519500px;}
.x6f_c00400{left:284.847030px;}
.x49_c00400{left:286.345500px;}
.xa2_c00400{left:294.753000px;}
.x68_c00400{left:295.924125px;}
.x43_c00400{left:297.368642px;}
.x33_c00400{left:298.498500px;}
.x6_c00400{left:309.039000px;}
.x62_c00400{left:317.637840px;}
.x45_c00400{left:319.333643px;}
.x2d_c00400{left:321.035022px;}
.xae_c00400{left:328.349022px;}
.x10_c00400{left:330.622071px;}
.x94_c00400{left:338.221500px;}
.x78_c00400{left:339.702576px;}
.x34_c00400{left:341.935500px;}
.x7a_c00400{left:349.768710px;}
.x70_c00400{left:351.068834px;}
.x53_c00400{left:352.514418px;}
.x81_c00400{left:360.762923px;}
.x5b_c00400{left:362.979000px;}
.x4e_c00400{left:365.454000px;}
.x7b_c00400{left:372.696530px;}
.x24_c00400{left:374.860302px;}
.x11_c00400{left:376.254522px;}
.xa3_c00400{left:382.536000px;}
.x87_c00400{left:383.576702px;}
.x54_c00400{left:384.914418px;}
.xa9_c00400{left:393.474000px;}
.x46_c00400{left:395.465175px;}
.x3c_c00400{left:396.516660px;}
.x7_c00400{left:397.891500px;}
.x95_c00400{left:404.931000px;}
.x5c_c00400{left:406.719000px;}
.x25_c00400{left:408.642285px;}
.xaa_c00400{left:415.768500px;}
.x71_c00400{left:417.454106px;}
.x55_c00400{left:418.677918px;}
.x1c_c00400{left:419.737689px;}
.x88_c00400{left:427.863711px;}
.x12_c00400{left:429.736383px;}
.x9b_c00400{left:438.238500px;}
.x69_c00400{left:440.651100px;}
.x2e_c00400{left:441.726369px;}
.x1_c00400{left:447.390000px;}
.x9f_c00400{left:449.227500px;}
.x4f_c00400{left:451.336500px;}
.x35_c00400{left:452.640000px;}
.x96_c00400{left:460.171500px;}
.x89_c00400{left:461.359539px;}
.x8_c00400{left:464.025000px;}
.x7c_c00400{left:471.556788px;}
.x2_c00400{left:472.770000px;}
.x13_c00400{left:475.079343px;}
.x97_c00400{left:482.409000px;}
.x1d_c00400{left:485.863293px;}
.xa4_c00400{left:492.616500px;}
.x9c_c00400{left:493.873500px;}
.x5d_c00400{left:495.838500px;}
.x26_c00400{left:497.198130px;}
.x9_c00400{left:499.654500px;}
.xab_c00400{left:504.361500px;}
.x72_c00400{left:505.477791px;}
.x14_c00400{left:508.015947px;}
.x98_c00400{left:515.905500px;}
.x56_c00400{left:518.039418px;}
.x36_c00400{left:519.066000px;}
.xa0_c00400{left:526.476000px;}
.x27_c00400{left:529.577658px;}
.x73_c00400{left:538.989209px;}
.x3d_c00400{left:540.147980px;}
.x1e_c00400{left:541.512951px;}
.x8a_c00400{left:549.403901px;}
.x57_c00400{left:550.962918px;}
.x15_c00400{left:552.032916px;}
.xac_c00400{left:559.491000px;}
.x82_c00400{left:560.864744px;}
.x4a_c00400{left:563.119500px;}
.xa_c00400{left:564.207000px;}
.x7d_c00400{left:572.283456px;}
.x9d_c00400{left:581.919000px;}
.x5e_c00400{left:583.095000px;}
.x50_c00400{left:584.188500px;}
.x83_c00400{left:594.356547px;}
.x63_c00400{left:595.533390px;}
.x5f_c00400{left:606.043500px;}
.xad_c00400{left:615.141000px;}
.x74_c00400{left:617.344985px;}
.x47_c00400{left:618.513393px;}
.x1f_c00400{left:619.549983px;}
.xa1_c00400{left:626.439000px;}
.x64_c00400{left:627.916035px;}
.x3e_c00400{left:629.010390px;}
.x8b_c00400{left:637.452794px;}
.x16_c00400{left:640.897854px;}
.x79_c00400{left:650.034177px;}
.x28_c00400{left:651.122013px;}
.xb_c00400{left:653.604000px;}
.x75_c00400{left:660.227280px;}
.x37_c00400{left:662.982000px;}
.xa8_c00400{left:670.431000px;}
.x99_c00400{left:671.748000px;}
.x2f_c00400{left:674.200230px;}
.x17_c00400{left:675.463440px;}
.x7e_c00400{left:682.478577px;}
.x6a_c00400{left:683.964000px;}
.xc_c00400{left:686.242500px;}
.x38_c00400{left:695.668500px;}
.x29_c00400{left:696.720645px;}
.x91_c00400{left:704.341610px;}
.x65_c00400{left:705.982095px;}
.x18_c00400{left:707.581053px;}
.x8c_c00400{left:714.950568px;}
.xaf_c00400{left:716.037651px;}
.x51_c00400{left:718.122000px;}
.x48_c00400{left:728.418153px;}
.x2a_c00400{left:729.674655px;}
.x20_c00400{left:731.609817px;}
.x6b_c00400{left:738.526500px;}
.x3f_c00400{left:740.519307px;}
.x84_c00400{left:748.992525px;}
.x39_c00400{left:750.751500px;}
.xd_c00400{left:754.039500px;}
.x60_c00400{left:761.587500px;}
.x52_c00400{left:762.946500px;}
.x92_c00400{left:772.418411px;}
.x58_c00400{left:782.396418px;}
.x7f_c00400{left:783.472277px;}
.xe_c00400{left:786.982500px;}
.x8d_c00400{left:794.379410px;}
.x19_c00400{left:796.961982px;}
.x85_c00400{left:804.755219px;}
.x4b_c00400{left:805.864500px;}
.x40_c00400{left:806.964728px;}
.x9e_c00400{left:816.400500px;}
.x3a_c00400{left:817.716000px;}
.x30_c00400{left:819.463959px;}
.x8e_c00400{left:827.573675px;}
.x59_c00400{left:829.110918px;}
.x21_c00400{left:830.172723px;}
.x66_c00400{left:839.625780px;}
.x44_c00400{left:840.686604px;}
.x2b_c00400{left:842.264280px;}
.x6c_c00400{left:850.131000px;}
@media print{
.v0_c00400{vertical-align:0.000000pt;}
.ls0_c00400{letter-spacing:0.000000pt;}
.ws0_c00400{word-spacing:0.000000pt;}
.fs0_c00400{font-size:21.333333pt;}
.fs11_c00400{font-size:32.008463pt;}
.fs2_c00400{font-size:64.001152pt;}
.fs9_c00400{font-size:64.003200pt;}
.fs5_c00400{font-size:64.003872pt;}
.fsa_c00400{font-size:64.014110pt;}
.fs13_c00400{font-size:64.016926pt;}
.fs4_c00400{font-size:69.334581pt;}
.fs7_c00400{font-size:69.335032pt;}
.fs8_c00400{font-size:69.336800pt;}
.fsf_c00400{font-size:69.345847pt;}
.fs3_c00400{font-size:74.668011pt;}
.fs6_c00400{font-size:74.671184pt;}
.fs15_c00400{font-size:74.678762pt;}
.fs12_c00400{font-size:74.681599pt;}
.fsb_c00400{font-size:74.683129pt;}
.fse_c00400{font-size:74.691900pt;}
.fs1_c00400{font-size:80.001440pt;}
.fs14_c00400{font-size:85.347156pt;}
.fs10_c00400{font-size:85.355901pt;}
.fsd_c00400{font-size:90.686656pt;}
.fsc_c00400{font-size:96.021166pt;}
.y0_c00400{bottom:0.000000pt;}
.y16c_c00400{bottom:30.646947pt;}
.y16b_c00400{bottom:32.248395pt;}
.y16a_c00400{bottom:32.916808pt;}
.y169_c00400{bottom:34.733643pt;}
.y168_c00400{bottom:35.412355pt;}
.y167_c00400{bottom:36.927528pt;}
.y166_c00400{bottom:38.087760pt;}
.y165_c00400{bottom:39.285248pt;}
.y164_c00400{bottom:40.809195pt;}
.y163_c00400{bottom:42.424877pt;}
.y162_c00400{bottom:43.537027pt;}
.y161_c00400{bottom:44.640091pt;}
.y160_c00400{bottom:48.820083pt;}
.y15f_c00400{bottom:48.820301pt;}
.y15e_c00400{bottom:48.820579pt;}
.y15d_c00400{bottom:61.322499pt;}
.y15c_c00400{bottom:62.212899pt;}
.y15b_c00400{bottom:63.094971pt;}
.y15a_c00400{bottom:63.617595pt;}
.y159_c00400{bottom:63.993843pt;}
.y158_c00400{bottom:64.512459pt;}
.y157_c00400{bottom:64.869171pt;}
.y156_c00400{bottom:65.394219pt;}
.y155_c00400{bottom:66.621051pt;}
.y154_c00400{bottom:67.843731pt;}
.y153_c00400{bottom:68.882667pt;}
.y152_c00400{bottom:102.570724pt;}
.y151_c00400{bottom:103.503727pt;}
.y150_c00400{bottom:103.965751pt;}
.y14f_c00400{bottom:106.248976pt;}
.y14e_c00400{bottom:107.143737pt;}
.y14b_c00400{bottom:112.482373pt;}
.y14a_c00400{bottom:113.087520pt;}
.y149_c00400{bottom:114.873920pt;}
.y14d_c00400{bottom:115.020532pt;}
.y148_c00400{bottom:115.637253pt;}
.y14c_c00400{bottom:115.918667pt;}
.y147_c00400{bottom:116.818107pt;}
.y146_c00400{bottom:117.426240pt;}
.y145_c00400{bottom:118.524933pt;}
.y144_c00400{bottom:119.522667pt;}
.y143_c00400{bottom:137.578116pt;}
.y142_c00400{bottom:153.673360pt;}
.y141_c00400{bottom:154.358055pt;}
.y140_c00400{bottom:156.452128pt;}
.y13f_c00400{bottom:157.578791pt;}
.y13e_c00400{bottom:159.403089pt;}
.y13d_c00400{bottom:161.653624pt;}
.y13c_c00400{bottom:162.317128pt;}
.y13b_c00400{bottom:163.448299pt;}
.y13a_c00400{bottom:165.654827pt;}
.y139_c00400{bottom:166.561333pt;}
.y138_c00400{bottom:185.317399pt;}
.y137_c00400{bottom:185.952607pt;}
.y136_c00400{bottom:188.257175pt;}
.y135_c00400{bottom:190.123151pt;}
.y134_c00400{bottom:190.929999pt;}
.y133_c00400{bottom:191.565123pt;}
.y132_c00400{bottom:192.381939pt;}
.y131_c00400{bottom:194.634847pt;}
.y130_c00400{bottom:196.080487pt;}
.y12f_c00400{bottom:197.282667pt;}
.y12e_c00400{bottom:219.404279pt;}
.y12d_c00400{bottom:219.988035pt;}
.y12c_c00400{bottom:221.306584pt;}
.y12b_c00400{bottom:223.364233pt;}
.y12a_c00400{bottom:223.948167pt;}
.y129_c00400{bottom:225.435157pt;}
.y128_c00400{bottom:226.374771pt;}
.y127_c00400{bottom:227.875872pt;}
.y126_c00400{bottom:228.987803pt;}
.y125_c00400{bottom:229.534901pt;}
.y124_c00400{bottom:230.244412pt;}
.y123_c00400{bottom:231.361333pt;}
.y122_c00400{bottom:248.755387pt;}
.y121_c00400{bottom:249.548733pt;}
.y120_c00400{bottom:251.865264pt;}
.y11f_c00400{bottom:252.643877pt;}
.y11e_c00400{bottom:254.711848pt;}
.y11d_c00400{bottom:255.466957pt;}
.y11c_c00400{bottom:256.241099pt;}
.y11b_c00400{bottom:256.755032pt;}
.y11a_c00400{bottom:258.031701pt;}
.y119_c00400{bottom:259.573432pt;}
.y118_c00400{bottom:260.827568pt;}
.y117_c00400{bottom:261.606667pt;}
.y113_c00400{bottom:287.235635pt;}
.y114_c00400{bottom:287.863465pt;}
.y115_c00400{bottom:288.483136pt;}
.y116_c00400{bottom:290.184256pt;}
.y112_c00400{bottom:312.756187pt;}
.y111_c00400{bottom:313.421353pt;}
.y110_c00400{bottom:314.501716pt;}
.y10f_c00400{bottom:314.943032pt;}
.y10e_c00400{bottom:315.806479pt;}
.y10d_c00400{bottom:316.125708pt;}
.y10c_c00400{bottom:316.448028pt;}
.y10b_c00400{bottom:316.886197pt;}
.y10a_c00400{bottom:317.203641pt;}
.y109_c00400{bottom:317.638429pt;}
.y108_c00400{bottom:318.266807pt;}
.y107_c00400{bottom:318.919155pt;}
.y106_c00400{bottom:345.149355pt;}
.y105_c00400{bottom:345.355465pt;}
.y104_c00400{bottom:345.849701pt;}
.y103_c00400{bottom:346.184717pt;}
.y102_c00400{bottom:346.331901pt;}
.y101_c00400{bottom:346.602036pt;}
.y100_c00400{bottom:346.878997pt;}
.yff_c00400{bottom:347.427343pt;}
.yfe_c00400{bottom:347.636415pt;}
.yfd_c00400{bottom:347.912196pt;}
.yfc_c00400{bottom:348.116941pt;}
.yfb_c00400{bottom:348.325425pt;}
.yfa_c00400{bottom:348.651801pt;}
.yf9_c00400{bottom:349.132401pt;}
.yf8_c00400{bottom:349.406779pt;}
.yf7_c00400{bottom:377.824181pt;}
.yf6_c00400{bottom:378.666331pt;}
.yf5_c00400{bottom:380.162107pt;}
.yf4_c00400{bottom:381.003293pt;}
.yf3_c00400{bottom:381.509755pt;}
.yf2_c00400{bottom:382.349821pt;}
.yf1_c00400{bottom:382.852083pt;}
.yf0_c00400{bottom:384.532675pt;}
.yef_c00400{bottom:385.176435pt;}
.yee_c00400{bottom:385.682560pt;}
.yed_c00400{bottom:387.334707pt;}
.yec_c00400{bottom:387.814637pt;}
.yeb_c00400{bottom:409.328431pt;}
.yea_c00400{bottom:409.878084pt;}
.ye9_c00400{bottom:410.205263pt;}
.ye8_c00400{bottom:410.865571pt;}
.ye7_c00400{bottom:411.943448pt;}
.ye6_c00400{bottom:412.264939pt;}
.ye5_c00400{bottom:412.927284pt;}
.ye4_c00400{bottom:413.893621pt;}
.ye3_c00400{bottom:414.117517pt;}
.ye2_c00400{bottom:414.749276pt;}
.ye1_c00400{bottom:415.068225pt;}
.ye0_c00400{bottom:416.140460pt;}
.ydf_c00400{bottom:440.624721pt;}
.yde_c00400{bottom:441.904399pt;}
.ydd_c00400{bottom:442.304101pt;}
.ydc_c00400{bottom:442.684959pt;}
.ydb_c00400{bottom:444.344933pt;}
.yda_c00400{bottom:444.741601pt;}
.yd9_c00400{bottom:445.749605pt;}
.yd8_c00400{bottom:446.271509pt;}
.yd7_c00400{bottom:446.773448pt;}
.yd6_c00400{bottom:447.531109pt;}
.yd5_c00400{bottom:447.919989pt;}
.yd4_c00400{bottom:448.549331pt;}
.yd3_c00400{bottom:474.923520pt;}
.yd2_c00400{bottom:476.058816pt;}
.yd1_c00400{bottom:476.783252pt;}
.yd0_c00400{bottom:478.107165pt;}
.ycf_c00400{bottom:478.672685pt;}
.yce_c00400{bottom:479.603708pt;}
.ycd_c00400{bottom:480.159725pt;}
.ycc_c00400{bottom:481.281532pt;}
.ycb_c00400{bottom:481.833825pt;}
.yca_c00400{bottom:482.398953pt;}
.yc9_c00400{bottom:482.953515pt;}
.yc8_c00400{bottom:483.695920pt;}
.yc7_c00400{bottom:484.221133pt;}
.yc6_c00400{bottom:484.794801pt;}
.yc5_c00400{bottom:504.367988pt;}
.yc4_c00400{bottom:506.451272pt;}
.yc3_c00400{bottom:507.469772pt;}
.yc2_c00400{bottom:508.921068pt;}
.yc1_c00400{bottom:510.569316pt;}
.yc0_c00400{bottom:512.016104pt;}
.ybf_c00400{bottom:513.256504pt;}
.ybe_c00400{bottom:514.904640pt;}
.ybd_c00400{bottom:515.524000pt;}
.ybc_c00400{bottom:539.862547pt;}
.yb6_c00400{bottom:539.862667pt;}
.yba_c00400{bottom:539.862760pt;}
.ybb_c00400{bottom:539.862773pt;}
.yb3_c00400{bottom:539.862813pt;}
.yb5_c00400{bottom:539.862893pt;}
.yb7_c00400{bottom:539.862947pt;}
.yb8_c00400{bottom:539.863227pt;}
.yb9_c00400{bottom:539.863280pt;}
.yb4_c00400{bottom:539.863387pt;}
.yb2_c00400{bottom:567.935947pt;}
.yb1_c00400{bottom:568.485053pt;}
.yb0_c00400{bottom:568.722547pt;}
.yaf_c00400{bottom:568.885200pt;}
.yae_c00400{bottom:569.440440pt;}
.yad_c00400{bottom:569.670947pt;}
.yac_c00400{bottom:570.063253pt;}
.yab_c00400{bottom:570.381933pt;}
.yaa_c00400{bottom:571.405240pt;}
.ya9_c00400{bottom:571.647747pt;}
.ya8_c00400{bottom:572.034960pt;}
.ya7_c00400{bottom:572.415573pt;}
.ya6_c00400{bottom:572.880187pt;}
.ya5_c00400{bottom:599.427920pt;}
.ya4_c00400{bottom:600.030093pt;}
.ya3_c00400{bottom:600.318440pt;}
.ya2_c00400{bottom:601.019227pt;}
.ya1_c00400{bottom:601.412707pt;}
.ya0_c00400{bottom:601.616693pt;}
.y9f_c00400{bottom:602.099547pt;}
.y9e_c00400{bottom:602.392307pt;}
.y9d_c00400{bottom:602.790707pt;}
.y9c_c00400{bottom:603.184480pt;}
.y9b_c00400{bottom:603.573280pt;}
.y9a_c00400{bottom:604.262067pt;}
.y99_c00400{bottom:604.648427pt;}
.y98_c00400{bottom:605.334653pt;}
.y97_c00400{bottom:605.521333pt;}
.y96_c00400{bottom:632.588131pt;}
.y95_c00400{bottom:632.837275pt;}
.y94_c00400{bottom:633.002899pt;}
.y93_c00400{bottom:633.417651pt;}
.y92_c00400{bottom:633.658067pt;}
.y91_c00400{bottom:634.071587pt;}
.y90_c00400{bottom:634.247179pt;}
.y8f_c00400{bottom:634.777107pt;}
.y8e_c00400{bottom:634.957179pt;}
.y8d_c00400{bottom:635.129979pt;}
.y8c_c00400{bottom:635.835587pt;}
.y8b_c00400{bottom:636.067235pt;}
.y8a_c00400{bottom:636.240067pt;}
.y89_c00400{bottom:664.139464pt;}
.y88_c00400{bottom:664.378528pt;}
.y87_c00400{bottom:664.850872pt;}
.y86_c00400{bottom:665.092840pt;}
.y85_c00400{bottom:665.321720pt;}
.y84_c00400{bottom:665.801384pt;}
.y83_c00400{bottom:665.972656pt;}
.y82_c00400{bottom:666.259424pt;}
.y81_c00400{bottom:666.561656pt;}
.y80_c00400{bottom:666.743200pt;}
.y7f_c00400{bottom:666.915936pt;}
.y7e_c00400{bottom:667.261520pt;}
.y7d_c00400{bottom:667.440000pt;}
.y7c_c00400{bottom:695.968553pt;}
.y7b_c00400{bottom:696.647320pt;}
.y7a_c00400{bottom:697.133036pt;}
.y79_c00400{bottom:697.478967pt;}
.y78_c00400{bottom:697.688883pt;}
.y77_c00400{bottom:698.097179pt;}
.y76_c00400{bottom:698.441579pt;}
.y75_c00400{bottom:698.930645pt;}
.y74_c00400{bottom:699.201116pt;}
.y73_c00400{bottom:699.406039pt;}
.y72_c00400{bottom:700.081333pt;}
.y71_c00400{bottom:728.181431pt;}
.y70_c00400{bottom:728.326175pt;}
.y6f_c00400{bottom:728.678349pt;}
.y6e_c00400{bottom:729.021477pt;}
.y6d_c00400{bottom:729.166236pt;}
.y6c_c00400{bottom:729.609747pt;}
.y6b_c00400{bottom:730.157675pt;}
.y6a_c00400{bottom:730.396383pt;}
.y69_c00400{bottom:730.495356pt;}
.y68_c00400{bottom:730.936324pt;}
.y67_c00400{bottom:731.275283pt;}
.y66_c00400{bottom:760.509931pt;}
.y65_c00400{bottom:760.777247pt;}
.y64_c00400{bottom:761.662416pt;}
.y63_c00400{bottom:761.935144pt;}
.y62_c00400{bottom:762.204865pt;}
.y61_c00400{bottom:762.907203pt;}
.y60_c00400{bottom:763.174577pt;}
.y5f_c00400{bottom:763.798856pt;}
.y5e_c00400{bottom:764.855589pt;}
.y5d_c00400{bottom:765.561140pt;}
.y5c_c00400{bottom:766.077125pt;}
.y5b_c00400{bottom:791.722059pt;}
.y5a_c00400{bottom:792.135719pt;}
.y59_c00400{bottom:792.341611pt;}
.y58_c00400{bottom:792.828647pt;}
.y57_c00400{bottom:793.381485pt;}
.y56_c00400{bottom:794.069040pt;}
.y55_c00400{bottom:794.275152pt;}
.y54_c00400{bottom:794.616376pt;}
.y53_c00400{bottom:795.226696pt;}
.y52_c00400{bottom:795.641355pt;}
.y51_c00400{bottom:795.838015pt;}
.y50_c00400{bottom:823.440785pt;}
.y4f_c00400{bottom:824.095549pt;}
.y4e_c00400{bottom:824.634139pt;}
.y4d_c00400{bottom:824.953740pt;}
.y4c_c00400{bottom:826.044016pt;}
.y4b_c00400{bottom:826.360919pt;}
.y4a_c00400{bottom:826.688411pt;}
.y49_c00400{bottom:827.010417pt;}
.y48_c00400{bottom:828.092861pt;}
.y47_c00400{bottom:828.517579pt;}
.y46_c00400{bottom:828.961333pt;}
.y45_c00400{bottom:858.477648pt;}
.y44_c00400{bottom:858.477968pt;}
.y40_c00400{bottom:887.484619pt;}
.y43_c00400{bottom:887.485053pt;}
.y41_c00400{bottom:887.485099pt;}
.y3f_c00400{bottom:887.485243pt;}
.y42_c00400{bottom:887.485525pt;}
.y3e_c00400{bottom:887.485821pt;}
.y3b_c00400{bottom:887.485912pt;}
.y3c_c00400{bottom:887.485920pt;}
.y38_c00400{bottom:887.486003pt;}
.y3a_c00400{bottom:887.486171pt;}
.y3d_c00400{bottom:887.486248pt;}
.y39_c00400{bottom:887.486323pt;}
.y37_c00400{bottom:917.189859pt;}
.y36_c00400{bottom:918.290355pt;}
.y35_c00400{bottom:918.612781pt;}
.y34_c00400{bottom:919.058648pt;}
.y33_c00400{bottom:920.246904pt;}
.y32_c00400{bottom:920.563600pt;}
.y31_c00400{bottom:920.886075pt;}
.y30_c00400{bottom:921.429245pt;}
.y2f_c00400{bottom:921.760088pt;}
.y2e_c00400{bottom:922.396437pt;}
.y2d_c00400{bottom:923.045304pt;}
.y2c_c00400{bottom:923.268773pt;}
.y2b_c00400{bottom:924.002475pt;}
.y2a_c00400{bottom:949.024824pt;}
.y29_c00400{bottom:949.226965pt;}
.y28_c00400{bottom:949.638496pt;}
.y27_c00400{bottom:949.921880pt;}
.y26_c00400{bottom:950.334819pt;}
.y25_c00400{bottom:950.820352pt;}
.y24_c00400{bottom:951.031051pt;}
.y23_c00400{bottom:951.167819pt;}
.y22_c00400{bottom:951.579157pt;}
.y21_c00400{bottom:951.852576pt;}
.y20_c00400{bottom:952.269696pt;}
.y1f_c00400{bottom:952.473253pt;}
.y1e_c00400{bottom:952.877587pt;}
.y1d_c00400{bottom:953.148109pt;}
.y1c_c00400{bottom:953.281728pt;}
.y1b_c00400{bottom:981.537779pt;}
.y1a_c00400{bottom:982.173149pt;}
.y19_c00400{bottom:982.401779pt;}
.y18_c00400{bottom:982.647464pt;}
.y17_c00400{bottom:983.278749pt;}
.y16_c00400{bottom:983.592176pt;}
.y15_c00400{bottom:983.826507pt;}
.y14_c00400{bottom:984.148339pt;}
.y13_c00400{bottom:984.528245pt;}
.y12_c00400{bottom:984.852955pt;}
.y11_c00400{bottom:985.009549pt;}
.y10_c00400{bottom:985.458645pt;}
.yf_c00400{bottom:985.855280pt;}
.ye_c00400{bottom:986.160224pt;}
.yd_c00400{bottom:1012.261440pt;}
.yc_c00400{bottom:1012.437136pt;}
.yb_c00400{bottom:1012.798720pt;}
.ya_c00400{bottom:1012.972792pt;}
.y9_c00400{bottom:1013.449576pt;}
.y8_c00400{bottom:1013.793856pt;}
.y7_c00400{bottom:1013.983880pt;}
.y6_c00400{bottom:1014.336592pt;}
.y5_c00400{bottom:1014.810472pt;}
.y4_c00400{bottom:1014.986040pt;}
.y3_c00400{bottom:1015.449792pt;}
.y2_c00400{bottom:1015.680000pt;}
.y1_c00400{bottom:1082.772000pt;}
.h2_c00400{height:21.333333pt;}
.h13_c00400{height:32.008463pt;}
.h4_c00400{height:64.001152pt;}
.hb_c00400{height:64.003200pt;}
.h7_c00400{height:64.003872pt;}
.hc_c00400{height:64.014110pt;}
.h15_c00400{height:64.016926pt;}
.h6_c00400{height:69.334581pt;}
.h9_c00400{height:69.335032pt;}
.ha_c00400{height:69.336800pt;}
.h11_c00400{height:69.345847pt;}
.h5_c00400{height:74.668011pt;}
.h8_c00400{height:74.671184pt;}
.h17_c00400{height:74.678762pt;}
.h14_c00400{height:74.681599pt;}
.hd_c00400{height:74.683129pt;}
.h10_c00400{height:74.691900pt;}
.h3_c00400{height:80.001440pt;}
.h16_c00400{height:85.347156pt;}
.h12_c00400{height:85.355901pt;}
.hf_c00400{height:90.686656pt;}
.he_c00400{height:96.021166pt;}
.h1_c00400{height:1112.000000pt;}
.h0_c00400{height:1112.133333pt;}
.w0_c00400{width:813.333333pt;}
.x0_c00400{left:0.000000pt;}
.xa5_c00400{left:124.560632pt;}
.x8f_c00400{left:126.335209pt;}
.x67_c00400{left:127.438107pt;}
.x41_c00400{left:128.548689pt;}
.x3_c00400{left:129.780000pt;}
.x5a_c00400{left:146.510667pt;}
.x1a_c00400{left:148.942845pt;}
.x80_c00400{left:155.805627pt;}
.x3b_c00400{left:157.341340pt;}
.x2c_c00400{left:158.402563pt;}
.x31_c00400{left:166.563477pt;}
.x4_c00400{left:168.148000pt;}
.x76_c00400{left:175.056509pt;}
.xa6_c00400{left:176.717333pt;}
.x6d_c00400{left:184.894476pt;}
.x42_c00400{left:185.881951pt;}
.x1b_c00400{left:187.585280pt;}
.x22_c00400{left:195.987936pt;}
.x77_c00400{left:205.008216pt;}
.x4c_c00400{left:215.429333pt;}
.x23_c00400{left:216.343328pt;}
.xf_c00400{left:218.049856pt;}
.x93_c00400{left:222.440000pt;}
.x6e_c00400{left:223.994795pt;}
.x32_c00400{left:224.990667pt;}
.xa7_c00400{left:231.652000pt;}
.x61_c00400{left:233.889107pt;}
.x86_c00400{left:235.294016pt;}
.x90_c00400{left:242.711625pt;}
.x4d_c00400{left:244.218667pt;}
.x5_c00400{left:245.440000pt;}
.x9a_c00400{left:252.017333pt;}
.x6f_c00400{left:253.197360pt;}
.x49_c00400{left:254.529333pt;}
.xa2_c00400{left:262.002667pt;}
.x68_c00400{left:263.043667pt;}
.x43_c00400{left:264.327681pt;}
.x33_c00400{left:265.332000pt;}
.x6_c00400{left:274.701333pt;}
.x62_c00400{left:282.344747pt;}
.x45_c00400{left:283.852127pt;}
.x2d_c00400{left:285.364464pt;}
.xae_c00400{left:291.865797pt;}
.x10_c00400{left:293.886285pt;}
.x94_c00400{left:300.641333pt;}
.x78_c00400{left:301.957845pt;}
.x34_c00400{left:303.942667pt;}
.x7a_c00400{left:310.905520pt;}
.x70_c00400{left:312.061185pt;}
.x53_c00400{left:313.346149pt;}
.x81_c00400{left:320.678153pt;}
.x5b_c00400{left:322.648000pt;}
.x4e_c00400{left:324.848000pt;}
.x7b_c00400{left:331.285804pt;}
.x24_c00400{left:333.209157pt;}
.x11_c00400{left:334.448464pt;}
.xa3_c00400{left:340.032000pt;}
.x87_c00400{left:340.957068pt;}
.x54_c00400{left:342.146149pt;}
.xa9_c00400{left:349.754667pt;}
.x46_c00400{left:351.524600pt;}
.x3c_c00400{left:352.459253pt;}
.x7_c00400{left:353.681333pt;}
.x95_c00400{left:359.938667pt;}
.x5c_c00400{left:361.528000pt;}
.x25_c00400{left:363.237587pt;}
.xaa_c00400{left:369.572000pt;}
.x71_c00400{left:371.070316pt;}
.x55_c00400{left:372.158149pt;}
.x1c_c00400{left:373.100168pt;}
.x88_c00400{left:380.323299pt;}
.x12_c00400{left:381.987896pt;}
.x9b_c00400{left:389.545333pt;}
.x69_c00400{left:391.689867pt;}
.x2e_c00400{left:392.645661pt;}
.x1_c00400{left:397.680000pt;}
.x9f_c00400{left:399.313333pt;}
.x4f_c00400{left:401.188000pt;}
.x35_c00400{left:402.346667pt;}
.x96_c00400{left:409.041333pt;}
.x89_c00400{left:410.097368pt;}
.x8_c00400{left:412.466667pt;}
.x7c_c00400{left:419.161589pt;}
.x2_c00400{left:420.240000pt;}
.x13_c00400{left:422.292749pt;}
.x97_c00400{left:428.808000pt;}
.x1d_c00400{left:431.878483pt;}
.xa4_c00400{left:437.881333pt;}
.x9c_c00400{left:438.998667pt;}
.x5d_c00400{left:440.745333pt;}
.x26_c00400{left:441.953893pt;}
.x9_c00400{left:444.137333pt;}
.xab_c00400{left:448.321333pt;}
.x72_c00400{left:449.313592pt;}
.x14_c00400{left:451.569731pt;}
.x98_c00400{left:458.582667pt;}
.x56_c00400{left:460.479483pt;}
.x36_c00400{left:461.392000pt;}
.xa0_c00400{left:467.978667pt;}
.x27_c00400{left:470.735696pt;}
.x73_c00400{left:479.101519pt;}
.x3d_c00400{left:480.131537pt;}
.x1e_c00400{left:481.344845pt;}
.x8a_c00400{left:488.359023pt;}
.x57_c00400{left:489.744816pt;}
.x15_c00400{left:490.695925pt;}
.xac_c00400{left:497.325333pt;}
.x82_c00400{left:498.546439pt;}
.x4a_c00400{left:500.550667pt;}
.xa_c00400{left:501.517333pt;}
.x7d_c00400{left:508.696405pt;}
.x9d_c00400{left:517.261333pt;}
.x5e_c00400{left:518.306667pt;}
.x50_c00400{left:519.278667pt;}
.x83_c00400{left:528.316931pt;}
.x63_c00400{left:529.363013pt;}
.x5f_c00400{left:538.705333pt;}
.xad_c00400{left:546.792000pt;}
.x74_c00400{left:548.751097pt;}
.x47_c00400{left:549.789683pt;}
.x1f_c00400{left:550.711096pt;}
.xa1_c00400{left:556.834667pt;}
.x64_c00400{left:558.147587pt;}
.x3e_c00400{left:559.120347pt;}
.x8b_c00400{left:566.624705pt;}
.x16_c00400{left:569.686981pt;}
.x79_c00400{left:577.808157pt;}
.x28_c00400{left:578.775123pt;}
.xb_c00400{left:580.981333pt;}
.x75_c00400{left:586.868693pt;}
.x37_c00400{left:589.317333pt;}
.xa8_c00400{left:595.938667pt;}
.x99_c00400{left:597.109333pt;}
.x2f_c00400{left:599.289093pt;}
.x17_c00400{left:600.411947pt;}
.x7e_c00400{left:606.647624pt;}
.x6a_c00400{left:607.968000pt;}
.xc_c00400{left:609.993333pt;}
.x38_c00400{left:618.372000pt;}
.x29_c00400{left:619.307240pt;}
.x91_c00400{left:626.081431pt;}
.x65_c00400{left:627.539640pt;}
.x18_c00400{left:628.960936pt;}
.x8c_c00400{left:635.511616pt;}
.xaf_c00400{left:636.477912pt;}
.x51_c00400{left:638.330667pt;}
.x48_c00400{left:647.482803pt;}
.x2a_c00400{left:648.599693pt;}
.x20_c00400{left:650.319837pt;}
.x6b_c00400{left:656.468000pt;}
.x3f_c00400{left:658.239384pt;}
.x84_c00400{left:665.771133pt;}
.x39_c00400{left:667.334667pt;}
.xd_c00400{left:670.257333pt;}
.x60_c00400{left:676.966667pt;}
.x52_c00400{left:678.174667pt;}
.x92_c00400{left:686.594143pt;}
.x58_c00400{left:695.463483pt;}
.x7f_c00400{left:696.419801pt;}
.xe_c00400{left:699.540000pt;}
.x8d_c00400{left:706.115031pt;}
.x19_c00400{left:708.410651pt;}
.x85_c00400{left:715.337972pt;}
.x4b_c00400{left:716.324000pt;}
.x40_c00400{left:717.301980pt;}
.x9e_c00400{left:725.689333pt;}
.x3a_c00400{left:726.858667pt;}
.x30_c00400{left:728.412408pt;}
.x8e_c00400{left:735.621044pt;}
.x59_c00400{left:736.987483pt;}
.x21_c00400{left:737.931309pt;}
.x66_c00400{left:746.334027pt;}
.x44_c00400{left:747.276981pt;}
.x2b_c00400{left:748.679360pt;}
.x6c_c00400{left:755.672000pt;}
}





/* 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_c00401 {
    display:none;
  }
  .loading-indicator_c00401.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00401 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_c00401 { 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_c00401" -> "#page-container .classname_c00401")
 */
.pf_c00401 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00401 { /* 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_c00401.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00401 { /* 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_c00401 { /* 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_c00401 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00401 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00401 {overflow:visible;}
  }
}
.c_c00401 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00401 { /* 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_c00401:after { /* webkit #35443 */
  content: '';
}
.t_c00401:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00401 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 */
}
.__c00401 { /* 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_c00401 { /* info for Javascript */
  display:none;
}
.l_c00401 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00401 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00401 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00401: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_c00401 {
    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_c00401.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00401.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_c00401 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00401{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00401;src:url('chunks/assets/font_cfe63ee56e9e10a97d33a3db.woff2')format("woff");}.ff1_c00401{font-family:ff1_c00401;line-height:1.000000;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;}
.mcc_c00401{transform:matrix(0.011582,-0.000441,0.009503,0.249819,0,0);-ms-transform:matrix(0.011582,-0.000441,0.009503,0.249819,0,0);-webkit-transform:matrix(0.011582,-0.000441,0.009503,0.249819,0,0);}
.m8f_c00401{transform:matrix(0.012577,-0.000264,0.005249,0.249945,0,0);-ms-transform:matrix(0.012577,-0.000264,0.005249,0.249945,0,0);-webkit-transform:matrix(0.012577,-0.000264,0.005249,0.249945,0,0);}
.mcb_c00401{transform:matrix(0.026923,-0.000350,0.003250,0.249979,0,0);-ms-transform:matrix(0.026923,-0.000350,0.003250,0.249979,0,0);-webkit-transform:matrix(0.026923,-0.000350,0.003250,0.249979,0,0);}
.m9_c00401{transform:matrix(0.050310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.050310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.050310,0.000000,0.000000,0.250000,0,0);}
.md_c00401{transform:matrix(0.070290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.070290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.070290,0.000000,0.000000,0.250000,0,0);}
.m55_c00401{transform:matrix(0.084206,-0.001768,0.005249,0.249945,0,0);-ms-transform:matrix(0.084206,-0.001768,0.005249,0.249945,0,0);-webkit-transform:matrix(0.084206,-0.001768,0.005249,0.249945,0,0);}
.ma9_c00401{transform:matrix(0.126322,-0.002905,0.005748,0.249934,0,0);-ms-transform:matrix(0.126322,-0.002905,0.005748,0.249934,0,0);-webkit-transform:matrix(0.126322,-0.002905,0.005748,0.249934,0,0);}
.maa_c00401{transform:matrix(0.126991,-0.002921,0.005748,0.249934,0,0);-ms-transform:matrix(0.126991,-0.002921,0.005748,0.249934,0,0);-webkit-transform:matrix(0.126991,-0.002921,0.005748,0.249934,0,0);}
.ma7_c00401{transform:matrix(0.127276,-0.002927,0.005748,0.249934,0,0);-ms-transform:matrix(0.127276,-0.002927,0.005748,0.249934,0,0);-webkit-transform:matrix(0.127276,-0.002927,0.005748,0.249934,0,0);}
.mc_c00401{transform:matrix(0.135375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135375,0.000000,0.000000,0.250000,0,0);}
.m4c_c00401{transform:matrix(0.141434,-0.002970,0.005249,0.249945,0,0);-ms-transform:matrix(0.141434,-0.002970,0.005249,0.249945,0,0);-webkit-transform:matrix(0.141434,-0.002970,0.005249,0.249945,0,0);}
.m12_c00401{transform:matrix(0.144053,-0.003025,0.005249,0.249945,0,0);-ms-transform:matrix(0.144053,-0.003025,0.005249,0.249945,0,0);-webkit-transform:matrix(0.144053,-0.003025,0.005249,0.249945,0,0);}
.m19_c00401{transform:matrix(0.144778,-0.003040,0.005249,0.249945,0,0);-ms-transform:matrix(0.144778,-0.003040,0.005249,0.249945,0,0);-webkit-transform:matrix(0.144778,-0.003040,0.005249,0.249945,0,0);}
.m15_c00401{transform:matrix(0.159905,-0.003358,0.005249,0.249945,0,0);-ms-transform:matrix(0.159905,-0.003358,0.005249,0.249945,0,0);-webkit-transform:matrix(0.159905,-0.003358,0.005249,0.249945,0,0);}
.mac_c00401{transform:matrix(0.160473,-0.003691,0.005748,0.249934,0,0);-ms-transform:matrix(0.160473,-0.003691,0.005748,0.249934,0,0);-webkit-transform:matrix(0.160473,-0.003691,0.005748,0.249934,0,0);}
.m69_c00401{transform:matrix(0.163794,-0.003440,0.005249,0.249945,0,0);-ms-transform:matrix(0.163794,-0.003440,0.005249,0.249945,0,0);-webkit-transform:matrix(0.163794,-0.003440,0.005249,0.249945,0,0);}
.m4b_c00401{transform:matrix(0.164404,-0.003452,0.005249,0.249945,0,0);-ms-transform:matrix(0.164404,-0.003452,0.005249,0.249945,0,0);-webkit-transform:matrix(0.164404,-0.003452,0.005249,0.249945,0,0);}
.ma6_c00401{transform:matrix(0.166371,-0.003827,0.005748,0.249934,0,0);-ms-transform:matrix(0.166371,-0.003827,0.005748,0.249934,0,0);-webkit-transform:matrix(0.166371,-0.003827,0.005748,0.249934,0,0);}
.m3e_c00401{transform:matrix(0.166578,-0.003498,0.005249,0.249945,0,0);-ms-transform:matrix(0.166578,-0.003498,0.005249,0.249945,0,0);-webkit-transform:matrix(0.166578,-0.003498,0.005249,0.249945,0,0);}
.m14_c00401{transform:matrix(0.167248,-0.003512,0.005249,0.249945,0,0);-ms-transform:matrix(0.167248,-0.003512,0.005249,0.249945,0,0);-webkit-transform:matrix(0.167248,-0.003512,0.005249,0.249945,0,0);}
.mb0_c00401{transform:matrix(0.169895,-0.003908,0.005748,0.249934,0,0);-ms-transform:matrix(0.169895,-0.003908,0.005748,0.249934,0,0);-webkit-transform:matrix(0.169895,-0.003908,0.005748,0.249934,0,0);}
.m4d_c00401{transform:matrix(0.171082,-0.003593,0.005249,0.249945,0,0);-ms-transform:matrix(0.171082,-0.003593,0.005249,0.249945,0,0);-webkit-transform:matrix(0.171082,-0.003593,0.005249,0.249945,0,0);}
.m88_c00401{transform:matrix(0.173567,-0.003645,0.005249,0.249945,0,0);-ms-transform:matrix(0.173567,-0.003645,0.005249,0.249945,0,0);-webkit-transform:matrix(0.173567,-0.003645,0.005249,0.249945,0,0);}
.m7c_c00401{transform:matrix(0.175731,-0.003690,0.005249,0.249945,0,0);-ms-transform:matrix(0.175731,-0.003690,0.005249,0.249945,0,0);-webkit-transform:matrix(0.175731,-0.003690,0.005249,0.249945,0,0);}
.m4a_c00401{transform:matrix(0.175941,-0.003695,0.005249,0.249945,0,0);-ms-transform:matrix(0.175941,-0.003695,0.005249,0.249945,0,0);-webkit-transform:matrix(0.175941,-0.003695,0.005249,0.249945,0,0);}
.m11_c00401{transform:matrix(0.177086,-0.003719,0.005249,0.249945,0,0);-ms-transform:matrix(0.177086,-0.003719,0.005249,0.249945,0,0);-webkit-transform:matrix(0.177086,-0.003719,0.005249,0.249945,0,0);}
.m64_c00401{transform:matrix(0.177841,-0.003735,0.005249,0.249945,0,0);-ms-transform:matrix(0.177841,-0.003735,0.005249,0.249945,0,0);-webkit-transform:matrix(0.177841,-0.003735,0.005249,0.249945,0,0);}
.ma8_c00401{transform:matrix(0.178383,-0.004103,0.005748,0.249934,0,0);-ms-transform:matrix(0.178383,-0.004103,0.005748,0.249934,0,0);-webkit-transform:matrix(0.178383,-0.004103,0.005748,0.249934,0,0);}
.m39_c00401{transform:matrix(0.178901,-0.003757,0.005249,0.249945,0,0);-ms-transform:matrix(0.178901,-0.003757,0.005249,0.249945,0,0);-webkit-transform:matrix(0.178901,-0.003757,0.005249,0.249945,0,0);}
.m8b_c00401{transform:matrix(0.179910,-0.003778,0.005249,0.249945,0,0);-ms-transform:matrix(0.179910,-0.003778,0.005249,0.249945,0,0);-webkit-transform:matrix(0.179910,-0.003778,0.005249,0.249945,0,0);}
.mab_c00401{transform:matrix(0.182337,-0.004194,0.005748,0.249934,0,0);-ms-transform:matrix(0.182337,-0.004194,0.005748,0.249934,0,0);-webkit-transform:matrix(0.182337,-0.004194,0.005748,0.249934,0,0);}
.m79_c00401{transform:matrix(0.183335,-0.003850,0.005249,0.249945,0,0);-ms-transform:matrix(0.183335,-0.003850,0.005249,0.249945,0,0);-webkit-transform:matrix(0.183335,-0.003850,0.005249,0.249945,0,0);}
.m97_c00401{transform:matrix(0.183631,-0.004224,0.005748,0.249934,0,0);-ms-transform:matrix(0.183631,-0.004224,0.005748,0.249934,0,0);-webkit-transform:matrix(0.183631,-0.004224,0.005748,0.249934,0,0);}
.mad_c00401{transform:matrix(0.185096,-0.004257,0.005748,0.249934,0,0);-ms-transform:matrix(0.185096,-0.004257,0.005748,0.249934,0,0);-webkit-transform:matrix(0.185096,-0.004257,0.005748,0.249934,0,0);}
.m8d_c00401{transform:matrix(0.186254,-0.003911,0.005249,0.249945,0,0);-ms-transform:matrix(0.186254,-0.003911,0.005249,0.249945,0,0);-webkit-transform:matrix(0.186254,-0.003911,0.005249,0.249945,0,0);}
.m98_c00401{transform:matrix(0.187385,-0.004310,0.005748,0.249934,0,0);-ms-transform:matrix(0.187385,-0.004310,0.005748,0.249934,0,0);-webkit-transform:matrix(0.187385,-0.004310,0.005748,0.249934,0,0);}
.m40_c00401{transform:matrix(0.187954,-0.003947,0.005249,0.249945,0,0);-ms-transform:matrix(0.187954,-0.003947,0.005249,0.249945,0,0);-webkit-transform:matrix(0.187954,-0.003947,0.005249,0.249945,0,0);}
.m44_c00401{transform:matrix(0.188069,-0.003949,0.005249,0.249945,0,0);-ms-transform:matrix(0.188069,-0.003949,0.005249,0.249945,0,0);-webkit-transform:matrix(0.188069,-0.003949,0.005249,0.249945,0,0);}
.m87_c00401{transform:matrix(0.188209,-0.003952,0.005249,0.249945,0,0);-ms-transform:matrix(0.188209,-0.003952,0.005249,0.249945,0,0);-webkit-transform:matrix(0.188209,-0.003952,0.005249,0.249945,0,0);}
.m1a_c00401{transform:matrix(0.188963,-0.003968,0.005249,0.249945,0,0);-ms-transform:matrix(0.188963,-0.003968,0.005249,0.249945,0,0);-webkit-transform:matrix(0.188963,-0.003968,0.005249,0.249945,0,0);}
.m50_c00401{transform:matrix(0.188978,-0.003969,0.005249,0.249945,0,0);-ms-transform:matrix(0.188978,-0.003969,0.005249,0.249945,0,0);-webkit-transform:matrix(0.188978,-0.003969,0.005249,0.249945,0,0);}
.m89_c00401{transform:matrix(0.188993,-0.003969,0.005249,0.249945,0,0);-ms-transform:matrix(0.188993,-0.003969,0.005249,0.249945,0,0);-webkit-transform:matrix(0.188993,-0.003969,0.005249,0.249945,0,0);}
.m47_c00401{transform:matrix(0.189858,-0.003987,0.005249,0.249945,0,0);-ms-transform:matrix(0.189858,-0.003987,0.005249,0.249945,0,0);-webkit-transform:matrix(0.189858,-0.003987,0.005249,0.249945,0,0);}
.mc6_c00401{transform:matrix(0.190729,-0.002479,0.003250,0.249979,0,0);-ms-transform:matrix(0.190729,-0.002479,0.003250,0.249979,0,0);-webkit-transform:matrix(0.190729,-0.002479,0.003250,0.249979,0,0);}
.m13_c00401{transform:matrix(0.191393,-0.004019,0.005249,0.249945,0,0);-ms-transform:matrix(0.191393,-0.004019,0.005249,0.249945,0,0);-webkit-transform:matrix(0.191393,-0.004019,0.005249,0.249945,0,0);}
.m7f_c00401{transform:matrix(0.192423,-0.004041,0.005249,0.249945,0,0);-ms-transform:matrix(0.192423,-0.004041,0.005249,0.249945,0,0);-webkit-transform:matrix(0.192423,-0.004041,0.005249,0.249945,0,0);}
.m9a_c00401{transform:matrix(0.192884,-0.004436,0.005748,0.249934,0,0);-ms-transform:matrix(0.192884,-0.004436,0.005748,0.249934,0,0);-webkit-transform:matrix(0.192884,-0.004436,0.005748,0.249934,0,0);}
.m4f_c00401{transform:matrix(0.193622,-0.004066,0.005249,0.249945,0,0);-ms-transform:matrix(0.193622,-0.004066,0.005249,0.249945,0,0);-webkit-transform:matrix(0.193622,-0.004066,0.005249,0.249945,0,0);}
.m18_c00401{transform:matrix(0.194417,-0.004083,0.005249,0.249945,0,0);-ms-transform:matrix(0.194417,-0.004083,0.005249,0.249945,0,0);-webkit-transform:matrix(0.194417,-0.004083,0.005249,0.249945,0,0);}
.m10_c00401{transform:matrix(0.194702,-0.004089,0.005249,0.249945,0,0);-ms-transform:matrix(0.194702,-0.004089,0.005249,0.249945,0,0);-webkit-transform:matrix(0.194702,-0.004089,0.005249,0.249945,0,0);}
.m16_c00401{transform:matrix(0.196172,-0.004120,0.005249,0.249945,0,0);-ms-transform:matrix(0.196172,-0.004120,0.005249,0.249945,0,0);-webkit-transform:matrix(0.196172,-0.004120,0.005249,0.249945,0,0);}
.m78_c00401{transform:matrix(0.197222,-0.004142,0.005249,0.249945,0,0);-ms-transform:matrix(0.197222,-0.004142,0.005249,0.249945,0,0);-webkit-transform:matrix(0.197222,-0.004142,0.005249,0.249945,0,0);}
.maf_c00401{transform:matrix(0.197543,-0.004543,0.005748,0.249934,0,0);-ms-transform:matrix(0.197543,-0.004543,0.005748,0.249934,0,0);-webkit-transform:matrix(0.197543,-0.004543,0.005748,0.249934,0,0);}
.m6b_c00401{transform:matrix(0.199011,-0.004179,0.005249,0.249945,0,0);-ms-transform:matrix(0.199011,-0.004179,0.005249,0.249945,0,0);-webkit-transform:matrix(0.199011,-0.004179,0.005249,0.249945,0,0);}
.m42_c00401{transform:matrix(0.200186,-0.004204,0.005249,0.249945,0,0);-ms-transform:matrix(0.200186,-0.004204,0.005249,0.249945,0,0);-webkit-transform:matrix(0.200186,-0.004204,0.005249,0.249945,0,0);}
.m38_c00401{transform:matrix(0.200906,-0.004219,0.005249,0.249945,0,0);-ms-transform:matrix(0.200906,-0.004219,0.005249,0.249945,0,0);-webkit-transform:matrix(0.200906,-0.004219,0.005249,0.249945,0,0);}
.m22_c00401{transform:matrix(0.201096,-0.004223,0.005249,0.249945,0,0);-ms-transform:matrix(0.201096,-0.004223,0.005249,0.249945,0,0);-webkit-transform:matrix(0.201096,-0.004223,0.005249,0.249945,0,0);}
.m1e_c00401{transform:matrix(0.202880,-0.004260,0.005249,0.249945,0,0);-ms-transform:matrix(0.202880,-0.004260,0.005249,0.249945,0,0);-webkit-transform:matrix(0.202880,-0.004260,0.005249,0.249945,0,0);}
.m71_c00401{transform:matrix(0.204155,-0.004287,0.005249,0.249945,0,0);-ms-transform:matrix(0.204155,-0.004287,0.005249,0.249945,0,0);-webkit-transform:matrix(0.204155,-0.004287,0.005249,0.249945,0,0);}
.m7b_c00401{transform:matrix(0.204210,-0.004288,0.005249,0.249945,0,0);-ms-transform:matrix(0.204210,-0.004288,0.005249,0.249945,0,0);-webkit-transform:matrix(0.204210,-0.004288,0.005249,0.249945,0,0);}
.m1f_c00401{transform:matrix(0.204425,-0.004293,0.005249,0.249945,0,0);-ms-transform:matrix(0.204425,-0.004293,0.005249,0.249945,0,0);-webkit-transform:matrix(0.204425,-0.004293,0.005249,0.249945,0,0);}
.m9c_c00401{transform:matrix(0.204631,-0.004707,0.005748,0.249934,0,0);-ms-transform:matrix(0.204631,-0.004707,0.005748,0.249934,0,0);-webkit-transform:matrix(0.204631,-0.004707,0.005748,0.249934,0,0);}
.mc5_c00401{transform:matrix(0.205098,-0.002666,0.003250,0.249979,0,0);-ms-transform:matrix(0.205098,-0.002666,0.003250,0.249979,0,0);-webkit-transform:matrix(0.205098,-0.002666,0.003250,0.249979,0,0);}
.m9d_c00401{transform:matrix(0.206145,-0.004741,0.005748,0.249934,0,0);-ms-transform:matrix(0.206145,-0.004741,0.005748,0.249934,0,0);-webkit-transform:matrix(0.206145,-0.004741,0.005748,0.249934,0,0);}
.mc4_c00401{transform:matrix(0.206308,-0.002682,0.003250,0.249979,0,0);-ms-transform:matrix(0.206308,-0.002682,0.003250,0.249979,0,0);-webkit-transform:matrix(0.206308,-0.002682,0.003250,0.249979,0,0);}
.m61_c00401{transform:matrix(0.206779,-0.004342,0.005249,0.249945,0,0);-ms-transform:matrix(0.206779,-0.004342,0.005249,0.249945,0,0);-webkit-transform:matrix(0.206779,-0.004342,0.005249,0.249945,0,0);}
.m99_c00401{transform:matrix(0.206825,-0.004757,0.005748,0.249934,0,0);-ms-transform:matrix(0.206825,-0.004757,0.005748,0.249934,0,0);-webkit-transform:matrix(0.206825,-0.004757,0.005748,0.249934,0,0);}
.m7d_c00401{transform:matrix(0.207739,-0.004363,0.005249,0.249945,0,0);-ms-transform:matrix(0.207739,-0.004363,0.005249,0.249945,0,0);-webkit-transform:matrix(0.207739,-0.004363,0.005249,0.249945,0,0);}
.m1b_c00401{transform:matrix(0.207779,-0.004363,0.005249,0.249945,0,0);-ms-transform:matrix(0.207779,-0.004363,0.005249,0.249945,0,0);-webkit-transform:matrix(0.207779,-0.004363,0.005249,0.249945,0,0);}
.m3b_c00401{transform:matrix(0.208314,-0.004375,0.005249,0.249945,0,0);-ms-transform:matrix(0.208314,-0.004375,0.005249,0.249945,0,0);-webkit-transform:matrix(0.208314,-0.004375,0.005249,0.249945,0,0);}
.m3f_c00401{transform:matrix(0.208594,-0.004380,0.005249,0.249945,0,0);-ms-transform:matrix(0.208594,-0.004380,0.005249,0.249945,0,0);-webkit-transform:matrix(0.208594,-0.004380,0.005249,0.249945,0,0);}
.m65_c00401{transform:matrix(0.208694,-0.004383,0.005249,0.249945,0,0);-ms-transform:matrix(0.208694,-0.004383,0.005249,0.249945,0,0);-webkit-transform:matrix(0.208694,-0.004383,0.005249,0.249945,0,0);}
.m67_c00401{transform:matrix(0.209134,-0.004392,0.005249,0.249945,0,0);-ms-transform:matrix(0.209134,-0.004392,0.005249,0.249945,0,0);-webkit-transform:matrix(0.209134,-0.004392,0.005249,0.249945,0,0);}
.m25_c00401{transform:matrix(0.209634,-0.004402,0.005249,0.249945,0,0);-ms-transform:matrix(0.209634,-0.004402,0.005249,0.249945,0,0);-webkit-transform:matrix(0.209634,-0.004402,0.005249,0.249945,0,0);}
.m6a_c00401{transform:matrix(0.209899,-0.004408,0.005249,0.249945,0,0);-ms-transform:matrix(0.209899,-0.004408,0.005249,0.249945,0,0);-webkit-transform:matrix(0.209899,-0.004408,0.005249,0.249945,0,0);}
.m17_c00401{transform:matrix(0.210324,-0.004417,0.005249,0.249945,0,0);-ms-transform:matrix(0.210324,-0.004417,0.005249,0.249945,0,0);-webkit-transform:matrix(0.210324,-0.004417,0.005249,0.249945,0,0);}
.m41_c00401{transform:matrix(0.210844,-0.004428,0.005249,0.249945,0,0);-ms-transform:matrix(0.210844,-0.004428,0.005249,0.249945,0,0);-webkit-transform:matrix(0.210844,-0.004428,0.005249,0.249945,0,0);}
.m70_c00401{transform:matrix(0.210968,-0.004430,0.005249,0.249945,0,0);-ms-transform:matrix(0.210968,-0.004430,0.005249,0.249945,0,0);-webkit-transform:matrix(0.210968,-0.004430,0.005249,0.249945,0,0);}
.m7e_c00401{transform:matrix(0.211428,-0.004440,0.005249,0.249945,0,0);-ms-transform:matrix(0.211428,-0.004440,0.005249,0.249945,0,0);-webkit-transform:matrix(0.211428,-0.004440,0.005249,0.249945,0,0);}
.m4e_c00401{transform:matrix(0.212263,-0.004458,0.005249,0.249945,0,0);-ms-transform:matrix(0.212263,-0.004458,0.005249,0.249945,0,0);-webkit-transform:matrix(0.212263,-0.004458,0.005249,0.249945,0,0);}
.mae_c00401{transform:matrix(0.213848,-0.004919,0.005748,0.249934,0,0);-ms-transform:matrix(0.213848,-0.004919,0.005748,0.249934,0,0);-webkit-transform:matrix(0.213848,-0.004919,0.005748,0.249934,0,0);}
.m3a_c00401{transform:matrix(0.214158,-0.004497,0.005249,0.249945,0,0);-ms-transform:matrix(0.214158,-0.004497,0.005249,0.249945,0,0);-webkit-transform:matrix(0.214158,-0.004497,0.005249,0.249945,0,0);}
.m93_c00401{transform:matrix(0.214483,-0.004933,0.005748,0.249934,0,0);-ms-transform:matrix(0.214483,-0.004933,0.005748,0.249934,0,0);-webkit-transform:matrix(0.214483,-0.004933,0.005748,0.249934,0,0);}
.m3d_c00401{transform:matrix(0.214788,-0.004511,0.005249,0.249945,0,0);-ms-transform:matrix(0.214788,-0.004511,0.005249,0.249945,0,0);-webkit-transform:matrix(0.214788,-0.004511,0.005249,0.249945,0,0);}
.m82_c00401{transform:matrix(0.214893,-0.004513,0.005249,0.249945,0,0);-ms-transform:matrix(0.214893,-0.004513,0.005249,0.249945,0,0);-webkit-transform:matrix(0.214893,-0.004513,0.005249,0.249945,0,0);}
.m8c_c00401{transform:matrix(0.215348,-0.004522,0.005249,0.249945,0,0);-ms-transform:matrix(0.215348,-0.004522,0.005249,0.249945,0,0);-webkit-transform:matrix(0.215348,-0.004522,0.005249,0.249945,0,0);}
.mc8_c00401{transform:matrix(0.218332,-0.002838,0.003250,0.249979,0,0);-ms-transform:matrix(0.218332,-0.002838,0.003250,0.249979,0,0);-webkit-transform:matrix(0.218332,-0.002838,0.003250,0.249979,0,0);}
.m66_c00401{transform:matrix(0.220696,-0.004635,0.005249,0.249945,0,0);-ms-transform:matrix(0.220696,-0.004635,0.005249,0.249945,0,0);-webkit-transform:matrix(0.220696,-0.004635,0.005249,0.249945,0,0);}
.m59_c00401{transform:matrix(0.221536,-0.004652,0.005249,0.249945,0,0);-ms-transform:matrix(0.221536,-0.004652,0.005249,0.249945,0,0);-webkit-transform:matrix(0.221536,-0.004652,0.005249,0.249945,0,0);}
.m7a_c00401{transform:matrix(0.221856,-0.004659,0.005249,0.249945,0,0);-ms-transform:matrix(0.221856,-0.004659,0.005249,0.249945,0,0);-webkit-transform:matrix(0.221856,-0.004659,0.005249,0.249945,0,0);}
.mb2_c00401{transform:matrix(0.222051,-0.005107,0.005748,0.249934,0,0);-ms-transform:matrix(0.222051,-0.005107,0.005748,0.249934,0,0);-webkit-transform:matrix(0.222051,-0.005107,0.005748,0.249934,0,0);}
.m75_c00401{transform:matrix(0.222276,-0.004668,0.005249,0.249945,0,0);-ms-transform:matrix(0.222276,-0.004668,0.005249,0.249945,0,0);-webkit-transform:matrix(0.222276,-0.004668,0.005249,0.249945,0,0);}
.m60_c00401{transform:matrix(0.222791,-0.004679,0.005249,0.249945,0,0);-ms-transform:matrix(0.222791,-0.004679,0.005249,0.249945,0,0);-webkit-transform:matrix(0.222791,-0.004679,0.005249,0.249945,0,0);}
.m68_c00401{transform:matrix(0.223006,-0.004683,0.005249,0.249945,0,0);-ms-transform:matrix(0.223006,-0.004683,0.005249,0.249945,0,0);-webkit-transform:matrix(0.223006,-0.004683,0.005249,0.249945,0,0);}
.m81_c00401{transform:matrix(0.224920,-0.004723,0.005249,0.249945,0,0);-ms-transform:matrix(0.224920,-0.004723,0.005249,0.249945,0,0);-webkit-transform:matrix(0.224920,-0.004723,0.005249,0.249945,0,0);}
.m80_c00401{transform:matrix(0.224950,-0.004724,0.005249,0.249945,0,0);-ms-transform:matrix(0.224950,-0.004724,0.005249,0.249945,0,0);-webkit-transform:matrix(0.224950,-0.004724,0.005249,0.249945,0,0);}
.m2f_c00401{transform:matrix(0.225890,-0.004744,0.005249,0.249945,0,0);-ms-transform:matrix(0.225890,-0.004744,0.005249,0.249945,0,0);-webkit-transform:matrix(0.225890,-0.004744,0.005249,0.249945,0,0);}
.m5b_c00401{transform:matrix(0.228105,-0.004790,0.005249,0.249945,0,0);-ms-transform:matrix(0.228105,-0.004790,0.005249,0.249945,0,0);-webkit-transform:matrix(0.228105,-0.004790,0.005249,0.249945,0,0);}
.m5e_c00401{transform:matrix(0.228685,-0.004802,0.005249,0.249945,0,0);-ms-transform:matrix(0.228685,-0.004802,0.005249,0.249945,0,0);-webkit-transform:matrix(0.228685,-0.004802,0.005249,0.249945,0,0);}
.m43_c00401{transform:matrix(0.230484,-0.004840,0.005249,0.249945,0,0);-ms-transform:matrix(0.230484,-0.004840,0.005249,0.249945,0,0);-webkit-transform:matrix(0.230484,-0.004840,0.005249,0.249945,0,0);}
.m52_c00401{transform:matrix(0.230509,-0.004841,0.005249,0.249945,0,0);-ms-transform:matrix(0.230509,-0.004841,0.005249,0.249945,0,0);-webkit-transform:matrix(0.230509,-0.004841,0.005249,0.249945,0,0);}
.m8e_c00401{transform:matrix(0.231414,-0.004860,0.005249,0.249945,0,0);-ms-transform:matrix(0.231414,-0.004860,0.005249,0.249945,0,0);-webkit-transform:matrix(0.231414,-0.004860,0.005249,0.249945,0,0);}
.m84_c00401{transform:matrix(0.231599,-0.004864,0.005249,0.249945,0,0);-ms-transform:matrix(0.231599,-0.004864,0.005249,0.249945,0,0);-webkit-transform:matrix(0.231599,-0.004864,0.005249,0.249945,0,0);}
.m20_c00401{transform:matrix(0.232204,-0.004876,0.005249,0.249945,0,0);-ms-transform:matrix(0.232204,-0.004876,0.005249,0.249945,0,0);-webkit-transform:matrix(0.232204,-0.004876,0.005249,0.249945,0,0);}
.ma2_c00401{transform:matrix(0.232843,-0.005355,0.005748,0.249934,0,0);-ms-transform:matrix(0.232843,-0.005355,0.005748,0.249934,0,0);-webkit-transform:matrix(0.232843,-0.005355,0.005748,0.249934,0,0);}
.m51_c00401{transform:matrix(0.232979,-0.004893,0.005249,0.249945,0,0);-ms-transform:matrix(0.232979,-0.004893,0.005249,0.249945,0,0);-webkit-transform:matrix(0.232979,-0.004893,0.005249,0.249945,0,0);}
.ma1_c00401{transform:matrix(0.234563,-0.005395,0.005748,0.249934,0,0);-ms-transform:matrix(0.234563,-0.005395,0.005748,0.249934,0,0);-webkit-transform:matrix(0.234563,-0.005395,0.005748,0.249934,0,0);}
.m74_c00401{transform:matrix(0.235768,-0.004951,0.005249,0.249945,0,0);-ms-transform:matrix(0.235768,-0.004951,0.005249,0.249945,0,0);-webkit-transform:matrix(0.235768,-0.004951,0.005249,0.249945,0,0);}
.m6e_c00401{transform:matrix(0.236498,-0.004966,0.005249,0.249945,0,0);-ms-transform:matrix(0.236498,-0.004966,0.005249,0.249945,0,0);-webkit-transform:matrix(0.236498,-0.004966,0.005249,0.249945,0,0);}
.m58_c00401{transform:matrix(0.237273,-0.004983,0.005249,0.249945,0,0);-ms-transform:matrix(0.237273,-0.004983,0.005249,0.249945,0,0);-webkit-transform:matrix(0.237273,-0.004983,0.005249,0.249945,0,0);}
.m24_c00401{transform:matrix(0.238038,-0.004999,0.005249,0.249945,0,0);-ms-transform:matrix(0.238038,-0.004999,0.005249,0.249945,0,0);-webkit-transform:matrix(0.238038,-0.004999,0.005249,0.249945,0,0);}
.m2d_c00401{transform:matrix(0.238797,-0.005015,0.005249,0.249945,0,0);-ms-transform:matrix(0.238797,-0.005015,0.005249,0.249945,0,0);-webkit-transform:matrix(0.238797,-0.005015,0.005249,0.249945,0,0);}
.mb8_c00401{transform:matrix(0.239622,-0.005511,0.005748,0.249934,0,0);-ms-transform:matrix(0.239622,-0.005511,0.005748,0.249934,0,0);-webkit-transform:matrix(0.239622,-0.005511,0.005748,0.249934,0,0);}
.m8a_c00401{transform:matrix(0.239672,-0.005033,0.005249,0.249945,0,0);-ms-transform:matrix(0.239672,-0.005033,0.005249,0.249945,0,0);-webkit-transform:matrix(0.239672,-0.005033,0.005249,0.249945,0,0);}
.m2a_c00401{transform:matrix(0.240412,-0.005049,0.005249,0.249945,0,0);-ms-transform:matrix(0.240412,-0.005049,0.005249,0.249945,0,0);-webkit-transform:matrix(0.240412,-0.005049,0.005249,0.249945,0,0);}
.m94_c00401{transform:matrix(0.240931,-0.005541,0.005748,0.249934,0,0);-ms-transform:matrix(0.240931,-0.005541,0.005748,0.249934,0,0);-webkit-transform:matrix(0.240931,-0.005541,0.005748,0.249934,0,0);}
.mb3_c00401{transform:matrix(0.240991,-0.005543,0.005748,0.249934,0,0);-ms-transform:matrix(0.240991,-0.005543,0.005748,0.249934,0,0);-webkit-transform:matrix(0.240991,-0.005543,0.005748,0.249934,0,0);}
.mb4_c00401{transform:matrix(0.242696,-0.005582,0.005748,0.249934,0,0);-ms-transform:matrix(0.242696,-0.005582,0.005748,0.249934,0,0);-webkit-transform:matrix(0.242696,-0.005582,0.005748,0.249934,0,0);}
.m76_c00401{transform:matrix(0.243801,-0.005120,0.005249,0.249945,0,0);-ms-transform:matrix(0.243801,-0.005120,0.005249,0.249945,0,0);-webkit-transform:matrix(0.243801,-0.005120,0.005249,0.249945,0,0);}
.m86_c00401{transform:matrix(0.243961,-0.005123,0.005249,0.249945,0,0);-ms-transform:matrix(0.243961,-0.005123,0.005249,0.249945,0,0);-webkit-transform:matrix(0.243961,-0.005123,0.005249,0.249945,0,0);}
.m63_c00401{transform:matrix(0.245531,-0.005156,0.005249,0.249945,0,0);-ms-transform:matrix(0.245531,-0.005156,0.005249,0.249945,0,0);-webkit-transform:matrix(0.245531,-0.005156,0.005249,0.249945,0,0);}
.m9b_c00401{transform:matrix(0.245540,-0.005647,0.005748,0.249934,0,0);-ms-transform:matrix(0.245540,-0.005647,0.005748,0.249934,0,0);-webkit-transform:matrix(0.245540,-0.005647,0.005748,0.249934,0,0);}
.mb7_c00401{transform:matrix(0.246805,-0.005677,0.005748,0.249934,0,0);-ms-transform:matrix(0.246805,-0.005677,0.005748,0.249934,0,0);-webkit-transform:matrix(0.246805,-0.005677,0.005748,0.249934,0,0);}
.m31_c00401{transform:matrix(0.246966,-0.005186,0.005249,0.249945,0,0);-ms-transform:matrix(0.246966,-0.005186,0.005249,0.249945,0,0);-webkit-transform:matrix(0.246966,-0.005186,0.005249,0.249945,0,0);}
.m6f_c00401{transform:matrix(0.247680,-0.005201,0.005249,0.249945,0,0);-ms-transform:matrix(0.247680,-0.005201,0.005249,0.249945,0,0);-webkit-transform:matrix(0.247680,-0.005201,0.005249,0.249945,0,0);}
.m5f_c00401{transform:matrix(0.249245,-0.005234,0.005249,0.249945,0,0);-ms-transform:matrix(0.249245,-0.005234,0.005249,0.249945,0,0);-webkit-transform:matrix(0.249245,-0.005234,0.005249,0.249945,0,0);}
.m2c_c00401{transform:matrix(0.249640,-0.005242,0.005249,0.249945,0,0);-ms-transform:matrix(0.249640,-0.005242,0.005249,0.249945,0,0);-webkit-transform:matrix(0.249640,-0.005242,0.005249,0.249945,0,0);}
.m1d_c00401{transform:matrix(0.250080,-0.005252,0.005249,0.249945,0,0);-ms-transform:matrix(0.250080,-0.005252,0.005249,0.249945,0,0);-webkit-transform:matrix(0.250080,-0.005252,0.005249,0.249945,0,0);}
.mb5_c00401{transform:matrix(0.250414,-0.005760,0.005748,0.249934,0,0);-ms-transform:matrix(0.250414,-0.005760,0.005748,0.249934,0,0);-webkit-transform:matrix(0.250414,-0.005760,0.005748,0.249934,0,0);}
.mca_c00401{transform:matrix(0.250569,-0.003257,0.003250,0.249979,0,0);-ms-transform:matrix(0.250569,-0.003257,0.003250,0.249979,0,0);-webkit-transform:matrix(0.250569,-0.003257,0.003250,0.249979,0,0);}
.m46_c00401{transform:matrix(0.251345,-0.005278,0.005249,0.249945,0,0);-ms-transform:matrix(0.251345,-0.005278,0.005249,0.249945,0,0);-webkit-transform:matrix(0.251345,-0.005278,0.005249,0.249945,0,0);}
.m2b_c00401{transform:matrix(0.253844,-0.005331,0.005249,0.249945,0,0);-ms-transform:matrix(0.253844,-0.005331,0.005249,0.249945,0,0);-webkit-transform:matrix(0.253844,-0.005331,0.005249,0.249945,0,0);}
.m27_c00401{transform:matrix(0.253849,-0.005331,0.005249,0.249945,0,0);-ms-transform:matrix(0.253849,-0.005331,0.005249,0.249945,0,0);-webkit-transform:matrix(0.253849,-0.005331,0.005249,0.249945,0,0);}
.m95_c00401{transform:matrix(0.254713,-0.005858,0.005748,0.249934,0,0);-ms-transform:matrix(0.254713,-0.005858,0.005748,0.249934,0,0);-webkit-transform:matrix(0.254713,-0.005858,0.005748,0.249934,0,0);}
.mbf_c00401{transform:matrix(0.255277,-0.005871,0.005748,0.249934,0,0);-ms-transform:matrix(0.255277,-0.005871,0.005748,0.249934,0,0);-webkit-transform:matrix(0.255277,-0.005871,0.005748,0.249934,0,0);}
.m2e_c00401{transform:matrix(0.257743,-0.005413,0.005249,0.249945,0,0);-ms-transform:matrix(0.257743,-0.005413,0.005249,0.249945,0,0);-webkit-transform:matrix(0.257743,-0.005413,0.005249,0.249945,0,0);}
.m72_c00401{transform:matrix(0.257828,-0.005414,0.005249,0.249945,0,0);-ms-transform:matrix(0.257828,-0.005414,0.005249,0.249945,0,0);-webkit-transform:matrix(0.257828,-0.005414,0.005249,0.249945,0,0);}
.m26_c00401{transform:matrix(0.258438,-0.005427,0.005249,0.249945,0,0);-ms-transform:matrix(0.258438,-0.005427,0.005249,0.249945,0,0);-webkit-transform:matrix(0.258438,-0.005427,0.005249,0.249945,0,0);}
.m9e_c00401{transform:matrix(0.259601,-0.005971,0.005748,0.249934,0,0);-ms-transform:matrix(0.259601,-0.005971,0.005748,0.249934,0,0);-webkit-transform:matrix(0.259601,-0.005971,0.005748,0.249934,0,0);}
.m3c_c00401{transform:matrix(0.261742,-0.005497,0.005249,0.249945,0,0);-ms-transform:matrix(0.261742,-0.005497,0.005249,0.249945,0,0);-webkit-transform:matrix(0.261742,-0.005497,0.005249,0.249945,0,0);}
.m6c_c00401{transform:matrix(0.262042,-0.005503,0.005249,0.249945,0,0);-ms-transform:matrix(0.262042,-0.005503,0.005249,0.249945,0,0);-webkit-transform:matrix(0.262042,-0.005503,0.005249,0.249945,0,0);}
.m54_c00401{transform:matrix(0.262407,-0.005511,0.005249,0.249945,0,0);-ms-transform:matrix(0.262407,-0.005511,0.005249,0.249945,0,0);-webkit-transform:matrix(0.262407,-0.005511,0.005249,0.249945,0,0);}
.m45_c00401{transform:matrix(0.262667,-0.005516,0.005249,0.249945,0,0);-ms-transform:matrix(0.262667,-0.005516,0.005249,0.249945,0,0);-webkit-transform:matrix(0.262667,-0.005516,0.005249,0.249945,0,0);}
.m9f_c00401{transform:matrix(0.262925,-0.006047,0.005748,0.249934,0,0);-ms-transform:matrix(0.262925,-0.006047,0.005748,0.249934,0,0);-webkit-transform:matrix(0.262925,-0.006047,0.005748,0.249934,0,0);}
.mf_c00401{transform:matrix(0.263107,-0.005525,0.005249,0.249945,0,0);-ms-transform:matrix(0.263107,-0.005525,0.005249,0.249945,0,0);-webkit-transform:matrix(0.263107,-0.005525,0.005249,0.249945,0,0);}
.mcf_c00401{transform:matrix(0.264719,-0.010069,0.009503,0.249819,0,0);-ms-transform:matrix(0.264719,-0.010069,0.009503,0.249819,0,0);-webkit-transform:matrix(0.264719,-0.010069,0.009503,0.249819,0,0);}
.m21_c00401{transform:matrix(0.266196,-0.005590,0.005249,0.249945,0,0);-ms-transform:matrix(0.266196,-0.005590,0.005249,0.249945,0,0);-webkit-transform:matrix(0.266196,-0.005590,0.005249,0.249945,0,0);}
.mce_c00401{transform:matrix(0.266667,-0.010143,0.009503,0.249819,0,0);-ms-transform:matrix(0.266667,-0.010143,0.009503,0.249819,0,0);-webkit-transform:matrix(0.266667,-0.010143,0.009503,0.249819,0,0);}
.m30_c00401{transform:matrix(0.268896,-0.005647,0.005249,0.249945,0,0);-ms-transform:matrix(0.268896,-0.005647,0.005249,0.249945,0,0);-webkit-transform:matrix(0.268896,-0.005647,0.005249,0.249945,0,0);}
.m32_c00401{transform:matrix(0.271870,-0.005709,0.005249,0.249945,0,0);-ms-transform:matrix(0.271870,-0.005709,0.005249,0.249945,0,0);-webkit-transform:matrix(0.271870,-0.005709,0.005249,0.249945,0,0);}
.m5d_c00401{transform:matrix(0.272775,-0.005728,0.005249,0.249945,0,0);-ms-transform:matrix(0.272775,-0.005728,0.005249,0.249945,0,0);-webkit-transform:matrix(0.272775,-0.005728,0.005249,0.249945,0,0);}
.m36_c00401{transform:matrix(0.276439,-0.005805,0.005249,0.249945,0,0);-ms-transform:matrix(0.276439,-0.005805,0.005249,0.249945,0,0);-webkit-transform:matrix(0.276439,-0.005805,0.005249,0.249945,0,0);}
.m33_c00401{transform:matrix(0.276889,-0.005815,0.005249,0.249945,0,0);-ms-transform:matrix(0.276889,-0.005815,0.005249,0.249945,0,0);-webkit-transform:matrix(0.276889,-0.005815,0.005249,0.249945,0,0);}
.m57_c00401{transform:matrix(0.282808,-0.005939,0.005249,0.249945,0,0);-ms-transform:matrix(0.282808,-0.005939,0.005249,0.249945,0,0);-webkit-transform:matrix(0.282808,-0.005939,0.005249,0.249945,0,0);}
.mb6_c00401{transform:matrix(0.282915,-0.006507,0.005748,0.249934,0,0);-ms-transform:matrix(0.282915,-0.006507,0.005748,0.249934,0,0);-webkit-transform:matrix(0.282915,-0.006507,0.005748,0.249934,0,0);}
.m34_c00401{transform:matrix(0.285887,-0.006004,0.005249,0.249945,0,0);-ms-transform:matrix(0.285887,-0.006004,0.005249,0.249945,0,0);-webkit-transform:matrix(0.285887,-0.006004,0.005249,0.249945,0,0);}
.m53_c00401{transform:matrix(0.288091,-0.006050,0.005249,0.249945,0,0);-ms-transform:matrix(0.288091,-0.006050,0.005249,0.249945,0,0);-webkit-transform:matrix(0.288091,-0.006050,0.005249,0.249945,0,0);}
.m83_c00401{transform:matrix(0.288576,-0.006060,0.005249,0.249945,0,0);-ms-transform:matrix(0.288576,-0.006060,0.005249,0.249945,0,0);-webkit-transform:matrix(0.288576,-0.006060,0.005249,0.249945,0,0);}
.m1c_c00401{transform:matrix(0.292086,-0.006134,0.005249,0.249945,0,0);-ms-transform:matrix(0.292086,-0.006134,0.005249,0.249945,0,0);-webkit-transform:matrix(0.292086,-0.006134,0.005249,0.249945,0,0);}
.m48_c00401{transform:matrix(0.296700,-0.006231,0.005249,0.249945,0,0);-ms-transform:matrix(0.296700,-0.006231,0.005249,0.249945,0,0);-webkit-transform:matrix(0.296700,-0.006231,0.005249,0.249945,0,0);}
.mbc_c00401{transform:matrix(0.298326,-0.006862,0.005748,0.249934,0,0);-ms-transform:matrix(0.298326,-0.006862,0.005748,0.249934,0,0);-webkit-transform:matrix(0.298326,-0.006862,0.005748,0.249934,0,0);}
.m85_c00401{transform:matrix(0.301803,-0.006338,0.005249,0.249945,0,0);-ms-transform:matrix(0.301803,-0.006338,0.005249,0.249945,0,0);-webkit-transform:matrix(0.301803,-0.006338,0.005249,0.249945,0,0);}
.m73_c00401{transform:matrix(0.302143,-0.006345,0.005249,0.249945,0,0);-ms-transform:matrix(0.302143,-0.006345,0.005249,0.249945,0,0);-webkit-transform:matrix(0.302143,-0.006345,0.005249,0.249945,0,0);}
.mb1_c00401{transform:matrix(0.305229,-0.007020,0.005748,0.249934,0,0);-ms-transform:matrix(0.305229,-0.007020,0.005748,0.249934,0,0);-webkit-transform:matrix(0.305229,-0.007020,0.005748,0.249934,0,0);}
.m90_c00401{transform:matrix(0.309323,-0.007114,0.005748,0.249934,0,0);-ms-transform:matrix(0.309323,-0.007114,0.005748,0.249934,0,0);-webkit-transform:matrix(0.309323,-0.007114,0.005748,0.249934,0,0);}
.m49_c00401{transform:matrix(0.312441,-0.006561,0.005249,0.249945,0,0);-ms-transform:matrix(0.312441,-0.006561,0.005249,0.249945,0,0);-webkit-transform:matrix(0.312441,-0.006561,0.005249,0.249945,0,0);}
.m5_c00401{transform:matrix(0.313790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313790,0.000000,0.000000,0.250000,0,0);}
.m6d_c00401{transform:matrix(0.318200,-0.006682,0.005249,0.249945,0,0);-ms-transform:matrix(0.318200,-0.006682,0.005249,0.249945,0,0);-webkit-transform:matrix(0.318200,-0.006682,0.005249,0.249945,0,0);}
.mb_c00401{transform:matrix(0.318200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318200,0.000000,0.000000,0.250000,0,0);}
.ma0_c00401{transform:matrix(0.320800,-0.007378,0.005748,0.249934,0,0);-ms-transform:matrix(0.320800,-0.007378,0.005748,0.249934,0,0);-webkit-transform:matrix(0.320800,-0.007378,0.005748,0.249934,0,0);}
.m23_c00401{transform:matrix(0.320929,-0.006740,0.005249,0.249945,0,0);-ms-transform:matrix(0.320929,-0.006740,0.005249,0.249945,0,0);-webkit-transform:matrix(0.320929,-0.006740,0.005249,0.249945,0,0);}
.m6_c00401{transform:matrix(0.322345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322345,0.000000,0.000000,0.250000,0,0);}
.mc9_c00401{transform:matrix(0.324323,-0.004216,0.003250,0.249979,0,0);-ms-transform:matrix(0.324323,-0.004216,0.003250,0.249979,0,0);-webkit-transform:matrix(0.324323,-0.004216,0.003250,0.249979,0,0);}
.m91_c00401{transform:matrix(0.325319,-0.007482,0.005748,0.249934,0,0);-ms-transform:matrix(0.325319,-0.007482,0.005748,0.249934,0,0);-webkit-transform:matrix(0.325319,-0.007482,0.005748,0.249934,0,0);}
.mc0_c00401{transform:matrix(0.337426,-0.007761,0.005748,0.249934,0,0);-ms-transform:matrix(0.337426,-0.007761,0.005748,0.249934,0,0);-webkit-transform:matrix(0.337426,-0.007761,0.005748,0.249934,0,0);}
.m5a_c00401{transform:matrix(0.338120,-0.007101,0.005249,0.249945,0,0);-ms-transform:matrix(0.338120,-0.007101,0.005249,0.249945,0,0);-webkit-transform:matrix(0.338120,-0.007101,0.005249,0.249945,0,0);}
.m62_c00401{transform:matrix(0.343304,-0.007209,0.005249,0.249945,0,0);-ms-transform:matrix(0.343304,-0.007209,0.005249,0.249945,0,0);-webkit-transform:matrix(0.343304,-0.007209,0.005249,0.249945,0,0);}
.ma5_c00401{transform:matrix(0.344594,-0.007926,0.005748,0.249934,0,0);-ms-transform:matrix(0.344594,-0.007926,0.005748,0.249934,0,0);-webkit-transform:matrix(0.344594,-0.007926,0.005748,0.249934,0,0);}
.m56_c00401{transform:matrix(0.345924,-0.007264,0.005249,0.249945,0,0);-ms-transform:matrix(0.345924,-0.007264,0.005249,0.249945,0,0);-webkit-transform:matrix(0.345924,-0.007264,0.005249,0.249945,0,0);}
.m35_c00401{transform:matrix(0.350648,-0.007364,0.005249,0.249945,0,0);-ms-transform:matrix(0.350648,-0.007364,0.005249,0.249945,0,0);-webkit-transform:matrix(0.350648,-0.007364,0.005249,0.249945,0,0);}
.m28_c00401{transform:matrix(0.352167,-0.007396,0.005249,0.249945,0,0);-ms-transform:matrix(0.352167,-0.007396,0.005249,0.249945,0,0);-webkit-transform:matrix(0.352167,-0.007396,0.005249,0.249945,0,0);}
.m77_c00401{transform:matrix(0.359061,-0.007540,0.005249,0.249945,0,0);-ms-transform:matrix(0.359061,-0.007540,0.005249,0.249945,0,0);-webkit-transform:matrix(0.359061,-0.007540,0.005249,0.249945,0,0);}
.mbe_c00401{transform:matrix(0.361169,-0.008307,0.005748,0.249934,0,0);-ms-transform:matrix(0.361169,-0.008307,0.005748,0.249934,0,0);-webkit-transform:matrix(0.361169,-0.008307,0.005748,0.249934,0,0);}
.m8_c00401{transform:matrix(0.371420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371420,0.000000,0.000000,0.250000,0,0);}
.mcd_c00401{transform:matrix(0.372611,-0.014173,0.009503,0.249819,0,0);-ms-transform:matrix(0.372611,-0.014173,0.009503,0.249819,0,0);-webkit-transform:matrix(0.372611,-0.014173,0.009503,0.249819,0,0);}
.md0_c00401{transform:matrix(0.374159,-0.014232,0.009503,0.249819,0,0);-ms-transform:matrix(0.374159,-0.014232,0.009503,0.249819,0,0);-webkit-transform:matrix(0.374159,-0.014232,0.009503,0.249819,0,0);}
.m96_c00401{transform:matrix(0.380589,-0.008754,0.005748,0.249934,0,0);-ms-transform:matrix(0.380589,-0.008754,0.005748,0.249934,0,0);-webkit-transform:matrix(0.380589,-0.008754,0.005748,0.249934,0,0);}
.m92_c00401{transform:matrix(0.410266,-0.009436,0.005748,0.249934,0,0);-ms-transform:matrix(0.410266,-0.009436,0.005748,0.249934,0,0);-webkit-transform:matrix(0.410266,-0.009436,0.005748,0.249934,0,0);}
.m29_c00401{transform:matrix(0.423072,-0.008885,0.005249,0.249945,0,0);-ms-transform:matrix(0.423072,-0.008885,0.005249,0.249945,0,0);-webkit-transform:matrix(0.423072,-0.008885,0.005249,0.249945,0,0);}
.md3_c00401{transform:matrix(0.444963,-0.016926,0.009503,0.249819,0,0);-ms-transform:matrix(0.444963,-0.016926,0.009503,0.249819,0,0);-webkit-transform:matrix(0.444963,-0.016926,0.009503,0.249819,0,0);}
.mc7_c00401{transform:matrix(0.452572,-0.005883,0.003250,0.249979,0,0);-ms-transform:matrix(0.452572,-0.005883,0.003250,0.249979,0,0);-webkit-transform:matrix(0.452572,-0.005883,0.003250,0.249979,0,0);}
.mbb_c00401{transform:matrix(0.470651,-0.010825,0.005748,0.249934,0,0);-ms-transform:matrix(0.470651,-0.010825,0.005748,0.249934,0,0);-webkit-transform:matrix(0.470651,-0.010825,0.005748,0.249934,0,0);}
.md2_c00401{transform:matrix(0.473098,-0.017996,0.009503,0.249819,0,0);-ms-transform:matrix(0.473098,-0.017996,0.009503,0.249819,0,0);-webkit-transform:matrix(0.473098,-0.017996,0.009503,0.249819,0,0);}
.m7_c00401{transform:matrix(0.488435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.488435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.488435,0.000000,0.000000,0.250000,0,0);}
.mc1_c00401{transform:matrix(0.491360,-0.011301,0.005748,0.249934,0,0);-ms-transform:matrix(0.491360,-0.011301,0.005748,0.249934,0,0);-webkit-transform:matrix(0.491360,-0.011301,0.005748,0.249934,0,0);}
.m5c_c00401{transform:matrix(0.498940,-0.010478,0.005249,0.249945,0,0);-ms-transform:matrix(0.498940,-0.010478,0.005249,0.249945,0,0);-webkit-transform:matrix(0.498940,-0.010478,0.005249,0.249945,0,0);}
.md1_c00401{transform:matrix(0.509746,-0.019390,0.009503,0.249819,0,0);-ms-transform:matrix(0.509746,-0.019390,0.009503,0.249819,0,0);-webkit-transform:matrix(0.509746,-0.019390,0.009503,0.249819,0,0);}
.m4_c00401{transform:matrix(0.534820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534820,0.000000,0.000000,0.250000,0,0);}
.m2_c00401{transform:matrix(0.549410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549410,0.000000,0.000000,0.250000,0,0);}
.mc2_c00401{transform:matrix(0.556578,-0.007236,0.003250,0.249979,0,0);-ms-transform:matrix(0.556578,-0.007236,0.003250,0.249979,0,0);-webkit-transform:matrix(0.556578,-0.007236,0.003250,0.249979,0,0);}
.ma4_c00401{transform:matrix(0.580022,-0.013340,0.005748,0.249934,0,0);-ms-transform:matrix(0.580022,-0.013340,0.005748,0.249934,0,0);-webkit-transform:matrix(0.580022,-0.013340,0.005748,0.249934,0,0);}
.ma_c00401{transform:matrix(0.662125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662125,0.000000,0.000000,0.250000,0,0);}
.m37_c00401{transform:matrix(0.668368,-0.014036,0.005249,0.249945,0,0);-ms-transform:matrix(0.668368,-0.014036,0.005249,0.249945,0,0);-webkit-transform:matrix(0.668368,-0.014036,0.005249,0.249945,0,0);}
.mba_c00401{transform:matrix(0.682844,-0.015705,0.005748,0.249934,0,0);-ms-transform:matrix(0.682844,-0.015705,0.005748,0.249934,0,0);-webkit-transform:matrix(0.682844,-0.015705,0.005748,0.249934,0,0);}
.ma3_c00401{transform:matrix(0.734441,-0.016892,0.005748,0.249934,0,0);-ms-transform:matrix(0.734441,-0.016892,0.005748,0.249934,0,0);-webkit-transform:matrix(0.734441,-0.016892,0.005748,0.249934,0,0);}
.me_c00401{transform:matrix(0.762565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.762565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.762565,0.000000,0.000000,0.250000,0,0);}
.mbd_c00401{transform:matrix(0.767667,-0.017656,0.005748,0.249934,0,0);-ms-transform:matrix(0.767667,-0.017656,0.005748,0.249934,0,0);-webkit-transform:matrix(0.767667,-0.017656,0.005748,0.249934,0,0);}
.mc3_c00401{transform:matrix(0.785654,-0.010213,0.003250,0.249979,0,0);-ms-transform:matrix(0.785654,-0.010213,0.003250,0.249979,0,0);-webkit-transform:matrix(0.785654,-0.010213,0.003250,0.249979,0,0);}
.m3_c00401{transform:matrix(1.125225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.125225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.125225,0.000000,0.000000,0.250000,0,0);}
.mb9_c00401{transform:matrix(1.210790,-0.027848,0.005748,0.249934,0,0);-ms-transform:matrix(1.210790,-0.027848,0.005748,0.249934,0,0);-webkit-transform:matrix(1.210790,-0.027848,0.005748,0.249934,0,0);}
.m1_c00401{transform:matrix(1.962150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.962150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.962150,0.000000,0.000000,0.250000,0,0);}
.m0_c00401{transform:matrix(1.989210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.989210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.989210,0.000000,0.000000,0.250000,0,0);}
.md4_c00401{transform:matrix(1.998765,-0.076029,0.009503,0.249819,0,0);-ms-transform:matrix(1.998765,-0.076029,0.009503,0.249819,0,0);-webkit-transform:matrix(1.998765,-0.076029,0.009503,0.249819,0,0);}
.v0_c00401{vertical-align:0.000000px;}
.ls0_c00401{letter-spacing:0.000000px;}
.sc__c00401{text-shadow:none;}
.sc0_c00401{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__c00401{-webkit-text-stroke:0px transparent;}
.sc0_c00401{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00401{word-spacing:0.000000px;}
.fc0_c00401{color:transparent;}
.fs1_c00401{font-size:12.000000px;}
.fs0_c00401{font-size:24.000000px;}
.fs2_c00401{font-size:30.000000px;}
.fsc_c00401{font-size:72.019041px;}
.fs6_c00401{font-size:78.017197px;}
.fse_c00401{font-size:83.976687px;}
.fs8_c00401{font-size:84.018520px;}
.fs3_c00401{font-size:90.000000px;}
.fsb_c00401{font-size:90.023802px;}
.fs5_c00401{font-size:96.021166px;}
.fs7_c00401{font-size:102.022489px;}
.fs9_c00401{font-size:102.026975px;}
.fsd_c00401{font-size:108.009126px;}
.fs4_c00401{font-size:108.023811px;}
.fsa_c00401{font-size:132.034909px;}
.y0_c00401{bottom:0.000000px;}
.yc2_c00401{bottom:456.841500px;}
.yc3_c00401{bottom:457.029828px;}
.yc4_c00401{bottom:458.584218px;}
.yc5_c00401{bottom:461.068848px;}
.yc6_c00401{bottom:465.143037px;}
.yc7_c00401{bottom:466.160772px;}
.yc8_c00401{bottom:469.425105px;}
.yc9_c00401{bottom:473.669154px;}
.yca_c00401{bottom:474.741837px;}
.yb8_c00401{bottom:481.683000px;}
.yb9_c00401{bottom:482.461752px;}
.yba_c00401{bottom:484.031775px;}
.ybb_c00401{bottom:484.509233px;}
.ybc_c00401{bottom:484.875794px;}
.ybd_c00401{bottom:486.747052px;}
.ybe_c00401{bottom:487.140465px;}
.ybf_c00401{bottom:488.287591px;}
.yc0_c00401{bottom:488.891448px;}
.yc1_c00401{bottom:489.518451px;}
.yb0_c00401{bottom:553.923384px;}
.yb1_c00401{bottom:555.059109px;}
.yb2_c00401{bottom:556.172115px;}
.yb3_c00401{bottom:557.843478px;}
.yb4_c00401{bottom:559.701254px;}
.yb5_c00401{bottom:561.292935px;}
.yb6_c00401{bottom:562.627062px;}
.yb7_c00401{bottom:564.530501px;}
.ya7_c00401{bottom:587.590468px;}
.ya8_c00401{bottom:589.273851px;}
.ya9_c00401{bottom:591.260816px;}
.yaa_c00401{bottom:592.363906px;}
.yab_c00401{bottom:593.156998px;}
.yac_c00401{bottom:596.152841px;}
.yad_c00401{bottom:596.940585px;}
.yae_c00401{bottom:597.786735px;}
.yaf_c00401{bottom:599.917987px;}
.y9a_c00401{bottom:617.647791px;}
.y9b_c00401{bottom:619.017199px;}
.y9c_c00401{bottom:620.845458px;}
.y9d_c00401{bottom:621.708579px;}
.y9e_c00401{bottom:622.220662px;}
.y9f_c00401{bottom:624.020079px;}
.ya0_c00401{bottom:624.815235px;}
.ya1_c00401{bottom:626.055924px;}
.ya2_c00401{bottom:627.062979px;}
.ya3_c00401{bottom:630.320227px;}
.ya4_c00401{bottom:631.185626px;}
.ya5_c00401{bottom:632.380774px;}
.ya6_c00401{bottom:633.809419px;}
.y8c_c00401{bottom:657.360653px;}
.y8d_c00401{bottom:658.750585px;}
.y8e_c00401{bottom:660.214074px;}
.y8f_c00401{bottom:660.903313px;}
.y90_c00401{bottom:662.661801px;}
.y91_c00401{bottom:663.538725px;}
.y92_c00401{bottom:664.136727px;}
.y93_c00401{bottom:665.347066px;}
.y94_c00401{bottom:666.071238px;}
.y95_c00401{bottom:667.044988px;}
.y96_c00401{bottom:667.929675px;}
.y97_c00401{bottom:668.970840px;}
.y98_c00401{bottom:670.635433px;}
.y99_c00401{bottom:671.584015px;}
.y86_c00401{bottom:692.839500px;}
.y87_c00401{bottom:694.168233px;}
.y88_c00401{bottom:695.149447px;}
.y89_c00401{bottom:695.958093px;}
.y8a_c00401{bottom:697.716178px;}
.y8b_c00401{bottom:705.438244px;}
.y79_c00401{bottom:768.084060px;}
.y7a_c00401{bottom:769.846104px;}
.y7b_c00401{bottom:772.790988px;}
.y7c_c00401{bottom:774.048835px;}
.y7d_c00401{bottom:774.815346px;}
.y7e_c00401{bottom:776.225382px;}
.y7f_c00401{bottom:777.116661px;}
.y80_c00401{bottom:778.823947px;}
.y81_c00401{bottom:780.250087px;}
.y82_c00401{bottom:782.216160px;}
.y83_c00401{bottom:783.465357px;}
.y84_c00401{bottom:784.282498px;}
.y85_c00401{bottom:787.167112px;}
.y6e_c00401{bottom:800.223241px;}
.y6f_c00401{bottom:801.229509px;}
.y70_c00401{bottom:802.052346px;}
.y71_c00401{bottom:804.349486px;}
.y72_c00401{bottom:806.547921px;}
.y73_c00401{bottom:807.441961px;}
.y74_c00401{bottom:810.319251px;}
.y75_c00401{bottom:813.638070px;}
.y76_c00401{bottom:815.176671px;}
.y77_c00401{bottom:815.674635px;}
.y78_c00401{bottom:818.730295px;}
.y1_c00401{bottom:820.530000px;}
.y63_c00401{bottom:835.347604px;}
.y64_c00401{bottom:836.807736px;}
.y65_c00401{bottom:837.774778px;}
.y66_c00401{bottom:841.297474px;}
.y67_c00401{bottom:842.324431px;}
.y68_c00401{bottom:843.367134px;}
.y69_c00401{bottom:846.008901px;}
.y6a_c00401{bottom:847.129771px;}
.y6b_c00401{bottom:849.619222px;}
.y6c_c00401{bottom:853.633873px;}
.y6d_c00401{bottom:856.531737px;}
.y58_c00401{bottom:872.240275px;}
.y59_c00401{bottom:874.388938px;}
.y5a_c00401{bottom:876.254347px;}
.y5b_c00401{bottom:877.179919px;}
.y5c_c00401{bottom:879.466221px;}
.y5d_c00401{bottom:882.001041px;}
.y5e_c00401{bottom:885.210520px;}
.y5f_c00401{bottom:886.172800px;}
.y60_c00401{bottom:887.772244px;}
.y61_c00401{bottom:890.774815px;}
.y62_c00401{bottom:892.657387px;}
.y4b_c00401{bottom:909.743977px;}
.y4c_c00401{bottom:910.416111px;}
.y4d_c00401{bottom:911.210182px;}
.y4e_c00401{bottom:912.967528px;}
.y4f_c00401{bottom:914.372770px;}
.y50_c00401{bottom:915.194872px;}
.y51_c00401{bottom:917.918253px;}
.y52_c00401{bottom:918.755589px;}
.y53_c00401{bottom:919.624881px;}
.y54_c00401{bottom:920.413767px;}
.y55_c00401{bottom:921.613294px;}
.y56_c00401{bottom:923.167119px;}
.y57_c00401{bottom:924.283563px;}
.y2_c00401{bottom:928.260000px;}
.y3_c00401{bottom:936.360000px;}
.y48_c00401{bottom:961.029670px;}
.y49_c00401{bottom:963.240105px;}
.y4a_c00401{bottom:964.599618px;}
.y3c_c00401{bottom:980.625094px;}
.y3d_c00401{bottom:982.021366px;}
.y3e_c00401{bottom:985.230027px;}
.y3f_c00401{bottom:986.147610px;}
.y40_c00401{bottom:986.847661px;}
.y41_c00401{bottom:990.991950px;}
.y42_c00401{bottom:992.266246px;}
.y43_c00401{bottom:992.931795px;}
.y44_c00401{bottom:994.842468px;}
.y45_c00401{bottom:996.490660px;}
.y46_c00401{bottom:998.753542px;}
.y47_c00401{bottom:1000.624546px;}
.y2f_c00401{bottom:1015.727215px;}
.y30_c00401{bottom:1016.475520px;}
.y31_c00401{bottom:1019.660680px;}
.y32_c00401{bottom:1020.559480px;}
.y33_c00401{bottom:1021.584808px;}
.y34_c00401{bottom:1025.010429px;}
.y35_c00401{bottom:1025.944449px;}
.y36_c00401{bottom:1026.823881px;}
.y37_c00401{bottom:1028.287224px;}
.y38_c00401{bottom:1029.144232px;}
.y39_c00401{bottom:1030.919062px;}
.y3a_c00401{bottom:1032.825051px;}
.y3b_c00401{bottom:1033.511724px;}
.y1f_c00401{bottom:1052.681515px;}
.y20_c00401{bottom:1053.963900px;}
.y21_c00401{bottom:1054.891065px;}
.y22_c00401{bottom:1056.678408px;}
.y23_c00401{bottom:1057.904818px;}
.y24_c00401{bottom:1059.693548px;}
.y25_c00401{bottom:1061.761284px;}
.y26_c00401{bottom:1062.645429px;}
.y27_c00401{bottom:1063.122495px;}
.y28_c00401{bottom:1063.872942px;}
.y29_c00401{bottom:1064.897671px;}
.y2a_c00401{bottom:1066.199266px;}
.y2b_c00401{bottom:1068.023688px;}
.y2c_c00401{bottom:1068.920346px;}
.y2d_c00401{bottom:1070.629965px;}
.y2e_c00401{bottom:1071.947412px;}
.y11_c00401{bottom:1090.532266px;}
.y12_c00401{bottom:1092.485085px;}
.y13_c00401{bottom:1095.141136px;}
.y14_c00401{bottom:1096.016574px;}
.y15_c00401{bottom:1097.100148px;}
.y16_c00401{bottom:1099.580562px;}
.y17_c00401{bottom:1100.875821px;}
.y18_c00401{bottom:1101.784639px;}
.y19_c00401{bottom:1102.912659px;}
.y1a_c00401{bottom:1104.550291px;}
.y1b_c00401{bottom:1105.914159px;}
.y1c_c00401{bottom:1106.394108px;}
.y1d_c00401{bottom:1108.606509px;}
.y1e_c00401{bottom:1110.184045px;}
.y5_c00401{bottom:1127.796000px;}
.y6_c00401{bottom:1129.441024px;}
.y7_c00401{bottom:1130.208081px;}
.y8_c00401{bottom:1131.612729px;}
.y9_c00401{bottom:1132.299775px;}
.ya_c00401{bottom:1134.190405px;}
.yb_c00401{bottom:1135.533187px;}
.yc_c00401{bottom:1136.214627px;}
.yd_c00401{bottom:1137.556149px;}
.ye_c00401{bottom:1139.480957px;}
.yf_c00401{bottom:1139.566101px;}
.y10_c00401{bottom:1140.257463px;}
.y4_c00401{bottom:1211.746500px;}
.h3_c00401{height:12.000000px;}
.h2_c00401{height:24.000000px;}
.h4_c00401{height:30.000000px;}
.he_c00401{height:72.019041px;}
.h8_c00401{height:78.017197px;}
.h10_c00401{height:83.976687px;}
.ha_c00401{height:84.018520px;}
.h5_c00401{height:90.000000px;}
.hd_c00401{height:90.023802px;}
.h7_c00401{height:96.021166px;}
.h9_c00401{height:102.022489px;}
.hb_c00401{height:102.026975px;}
.hf_c00401{height:108.009126px;}
.h6_c00401{height:108.023811px;}
.hc_c00401{height:132.034909px;}
.h1_c00401{height:1251.000000px;}
.h0_c00401{height:1251.150000px;}
.w0_c00401{width:915.000000px;}
.x0_c00401{left:0.000000px;}
.x3_c00401{left:3.780000px;}
.x2_c00401{left:5.670000px;}
.x1_c00401{left:7.020000px;}
.x5_c00401{left:20.790000px;}
.x4_c00401{left:25.110000px;}
.x7e_c00401{left:32.590497px;}
.x5c_c00401{left:44.414676px;}
.x21_c00401{left:47.945232px;}
.x47_c00401{left:49.968489px;}
.x30_c00401{left:51.422463px;}
.x53_c00401{left:53.295186px;}
.x7_c00401{left:56.967000px;}
.x13_c00401{left:60.287157px;}
.x39_c00401{left:61.562753px;}
.x48_c00401{left:76.829721px;}
.x31_c00401{left:79.123967px;}
.x5d_c00401{left:91.506285px;}
.x65_c00401{left:92.766654px;}
.x22_c00401{left:95.433747px;}
.x95_c00401{left:103.914000px;}
.x49_c00401{left:108.568544px;}
.x3a_c00401{left:109.686657px;}
.x5e_c00401{left:122.692233px;}
.x6b_c00401{left:125.134683px;}
.x14_c00401{left:127.624349px;}
.x23_c00401{left:129.794432px;}
.x8_c00401{left:135.301500px;}
.x8f_c00401{left:147.206984px;}
.x9c_c00401{left:148.260000px;}
.x73_c00401{left:150.987000px;}
.x9d_c00401{left:153.211044px;}
.x88_c00401{left:168.795965px;}
.x9_c00401{left:171.828000px;}
.x77_c00401{left:174.808184px;}
.x4a_c00401{left:178.888653px;}
.x74_c00401{left:186.145500px;}
.x54_c00401{left:191.703939px;}
.x9e_c00401{left:194.075139px;}
.x24_c00401{left:195.969084px;}
.x32_c00401{left:197.069099px;}
.x90_c00401{left:201.284468px;}
.x66_c00401{left:204.177774px;}
.x78_c00401{left:206.145408px;}
.x7f_c00401{left:209.146497px;}
.x15_c00401{left:219.230477px;}
.x3b_c00401{left:220.318572px;}
.x55_c00401{left:223.630584px;}
.x96_c00401{left:224.685000px;}
.x33_c00401{left:230.364909px;}
.x80_c00401{left:231.410997px;}
.x89_c00401{left:233.569014px;}
.x4b_c00401{left:235.085928px;}
.x5f_c00401{left:236.344388px;}
.xa_c00401{left:238.716000px;}
.x25_c00401{left:241.363851px;}
.x16_c00401{left:249.412905px;}
.x3c_c00401{left:251.936249px;}
.x91_c00401{left:254.308917px;}
.x9f_c00401{left:259.394754px;}
.x97_c00401{left:261.412500px;}
.x75_c00401{left:262.584000px;}
.x34_c00401{left:268.328121px;}
.x60_c00401{left:269.454426px;}
.xb_c00401{left:271.432500px;}
.x3d_c00401{left:276.053685px;}
.x67_c00401{left:282.710745px;}
.x17_c00401{left:286.791137px;}
.x98_c00401{left:289.609500px;}
.x56_c00401{left:302.488854px;}
.x26_c00401{left:307.604504px;}
.x81_c00401{left:309.646497px;}
.x68_c00401{left:314.636552px;}
.x6c_c00401{left:316.316649px;}
.x79_c00401{left:325.948668px;}
.x92_c00401{left:333.893574px;}
.x82_c00401{left:344.218497px;}
.x7a_c00401{left:353.123289px;}
.xc_c00401{left:361.462500px;}
.xa0_c00401{left:366.503039px;}
.x6d_c00401{left:370.526948px;}
.x18_c00401{left:372.320273px;}
.x4c_c00401{left:376.906521px;}
.x8a_c00401{left:382.891199px;}
.x27_c00401{left:384.201365px;}
.x61_c00401{left:388.308978px;}
.x57_c00401{left:389.894175px;}
.xa1_c00401{left:393.258756px;}
.x6_c00401{left:395.010000px;}
.x83_c00401{left:398.161497px;}
.x6e_c00401{left:404.822357px;}
.x7b_c00401{left:408.161066px;}
.x4d_c00401{left:410.419718px;}
.x19_c00401{left:416.991776px;}
.x3e_c00401{left:418.948182px;}
.x93_c00401{left:422.366145px;}
.xd_c00401{left:425.404500px;}
.x35_c00401{left:429.838304px;}
.x99_c00401{left:433.552500px;}
.x28_c00401{left:434.586002px;}
.x7c_c00401{left:441.082325px;}
.x4e_c00401{left:445.168788px;}
.x1a_c00401{left:448.335015px;}
.xe_c00401{left:457.854000px;}
.x29_c00401{left:462.389505px;}
.x9a_c00401{left:463.815000px;}
.x6f_c00401{left:470.471958px;}
.x4f_c00401{left:476.732142px;}
.xa2_c00401{left:479.076352px;}
.x3f_c00401{left:485.881968px;}
.x1b_c00401{left:487.257995px;}
.x8b_c00401{left:498.137264px;}
.x2a_c00401{left:500.324217px;}
.x62_c00401{left:504.776034px;}
.x36_c00401{left:516.602373px;}
.xf_c00401{left:521.736000px;}
.x50_c00401{left:524.705610px;}
.x8c_c00401{left:528.406659px;}
.x58_c00401{left:533.739515px;}
.x69_c00401{left:535.942544px;}
.x1c_c00401{left:543.731013px;}
.x2b_c00401{left:548.513138px;}
.x40_c00401{left:551.783912px;}
.x8d_c00401{left:560.954417px;}
.x7d_c00401{left:572.959395px;}
.x84_c00401{left:583.565997px;}
.x51_c00401{left:586.834881px;}
.x59_c00401{left:588.894254px;}
.x1d_c00401{left:590.740607px;}
.x76_c00401{left:598.326000px;}
.x70_c00401{left:600.920756px;}
.x1e_c00401{left:607.306835px;}
.x41_c00401{left:608.616867px;}
.x10_c00401{left:613.393500px;}
.x2c_c00401{left:616.096133px;}
.x11_c00401{left:617.448000px;}
.xa3_c00401{left:618.850439px;}
.x85_c00401{left:621.191997px;}
.x52_c00401{left:631.495133px;}
.x63_c00401{left:634.279850px;}
.x8e_c00401{left:642.916259px;}
.x9b_c00401{left:646.737000px;}
.x2d_c00401{left:649.289943px;}
.x12_c00401{left:650.370000px;}
.x94_c00401{left:652.365737px;}
.x44_c00401{left:667.197042px;}
.x86_c00401{left:673.154997px;}
.x71_c00401{left:680.380908px;}
.x1f_c00401{left:683.575014px;}
.x37_c00401{left:684.668205px;}
.x42_c00401{left:686.645763px;}
.x5a_c00401{left:692.427866px;}
.x38_c00401{left:710.077992px;}
.x2e_c00401{left:712.620974px;}
.x45_c00401{left:714.215870px;}
.x6a_c00401{left:717.831332px;}
.x64_c00401{left:727.753725px;}
.x87_c00401{left:735.269997px;}
.x20_c00401{left:737.972379px;}
.x46_c00401{left:743.153088px;}
.x43_c00401{left:751.158927px;}
.x5b_c00401{left:757.348967px;}
.x2f_c00401{left:761.421831px;}
.x72_c00401{left:791.303253px;}
@media print{
.v0_c00401{vertical-align:0.000000pt;}
.ls0_c00401{letter-spacing:0.000000pt;}
.ws0_c00401{word-spacing:0.000000pt;}
.fs1_c00401{font-size:10.666667pt;}
.fs0_c00401{font-size:21.333333pt;}
.fs2_c00401{font-size:26.666667pt;}
.fsc_c00401{font-size:64.016926pt;}
.fs6_c00401{font-size:69.348620pt;}
.fse_c00401{font-size:74.645944pt;}
.fs8_c00401{font-size:74.683129pt;}
.fs3_c00401{font-size:80.000000pt;}
.fsb_c00401{font-size:80.021157pt;}
.fs5_c00401{font-size:85.352147pt;}
.fs7_c00401{font-size:90.686656pt;}
.fs9_c00401{font-size:90.690645pt;}
.fsd_c00401{font-size:96.008112pt;}
.fs4_c00401{font-size:96.021166pt;}
.fsa_c00401{font-size:117.364364pt;}
.y0_c00401{bottom:0.000000pt;}
.yc2_c00401{bottom:406.081333pt;}
.yc3_c00401{bottom:406.248736pt;}
.yc4_c00401{bottom:407.630416pt;}
.yc5_c00401{bottom:409.838976pt;}
.yc6_c00401{bottom:413.460477pt;}
.yc7_c00401{bottom:414.365131pt;}
.yc8_c00401{bottom:417.266760pt;}
.yc9_c00401{bottom:421.039248pt;}
.yca_c00401{bottom:421.992744pt;}
.yb8_c00401{bottom:428.162667pt;}
.yb9_c00401{bottom:428.854891pt;}
.yba_c00401{bottom:430.250467pt;}
.ybb_c00401{bottom:430.674873pt;}
.ybc_c00401{bottom:431.000705pt;}
.ybd_c00401{bottom:432.664047pt;}
.ybe_c00401{bottom:433.013747pt;}
.ybf_c00401{bottom:434.033415pt;}
.yc0_c00401{bottom:434.570176pt;}
.yc1_c00401{bottom:435.127512pt;}
.yb0_c00401{bottom:492.376341pt;}
.yb1_c00401{bottom:493.385875pt;}
.yb2_c00401{bottom:494.375213pt;}
.yb3_c00401{bottom:495.860869pt;}
.yb4_c00401{bottom:497.512225pt;}
.yb5_c00401{bottom:498.927053pt;}
.yb6_c00401{bottom:500.112944pt;}
.yb7_c00401{bottom:501.804889pt;}
.ya7_c00401{bottom:522.302639pt;}
.ya8_c00401{bottom:523.798979pt;}
.ya9_c00401{bottom:525.565169pt;}
.yaa_c00401{bottom:526.545695pt;}
.yab_c00401{bottom:527.250665pt;}
.yac_c00401{bottom:529.913636pt;}
.yad_c00401{bottom:530.613853pt;}
.yae_c00401{bottom:531.365987pt;}
.yaf_c00401{bottom:533.260433pt;}
.y9a_c00401{bottom:549.020259pt;}
.y9b_c00401{bottom:550.237511pt;}
.y9c_c00401{bottom:551.862629pt;}
.y9d_c00401{bottom:552.629848pt;}
.y9e_c00401{bottom:553.085033pt;}
.y9f_c00401{bottom:554.684515pt;}
.ya0_c00401{bottom:555.391320pt;}
.ya1_c00401{bottom:556.494155pt;}
.ya2_c00401{bottom:557.389315pt;}
.ya3_c00401{bottom:560.284647pt;}
.ya4_c00401{bottom:561.053889pt;}
.ya5_c00401{bottom:562.116244pt;}
.ya6_c00401{bottom:563.386151pt;}
.y8c_c00401{bottom:584.320580pt;}
.y8d_c00401{bottom:585.556076pt;}
.y8e_c00401{bottom:586.856955pt;}
.y8f_c00401{bottom:587.469612pt;}
.y90_c00401{bottom:589.032712pt;}
.y91_c00401{bottom:589.812200pt;}
.y92_c00401{bottom:590.343757pt;}
.y93_c00401{bottom:591.419615pt;}
.y94_c00401{bottom:592.063323pt;}
.y95_c00401{bottom:592.928879pt;}
.y96_c00401{bottom:593.715267pt;}
.y97_c00401{bottom:594.640747pt;}
.y98_c00401{bottom:596.120385pt;}
.y99_c00401{bottom:596.963569pt;}
.y86_c00401{bottom:615.857333pt;}
.y87_c00401{bottom:617.038429pt;}
.y88_c00401{bottom:617.910620pt;}
.y89_c00401{bottom:618.629416pt;}
.y8a_c00401{bottom:620.192159pt;}
.y8b_c00401{bottom:627.056217pt;}
.y79_c00401{bottom:682.741387pt;}
.y7a_c00401{bottom:684.307648pt;}
.y7b_c00401{bottom:686.925323pt;}
.y7c_c00401{bottom:688.043409pt;}
.y7d_c00401{bottom:688.724752pt;}
.y7e_c00401{bottom:689.978117pt;}
.y7f_c00401{bottom:690.770365pt;}
.y80_c00401{bottom:692.287953pt;}
.y81_c00401{bottom:693.555633pt;}
.y82_c00401{bottom:695.303253pt;}
.y83_c00401{bottom:696.413651pt;}
.y84_c00401{bottom:697.139999pt;}
.y85_c00401{bottom:699.704100pt;}
.y6e_c00401{bottom:711.309548pt;}
.y6f_c00401{bottom:712.204008pt;}
.y70_c00401{bottom:712.935419pt;}
.y71_c00401{bottom:714.977321pt;}
.y72_c00401{bottom:716.931485pt;}
.y73_c00401{bottom:717.726188pt;}
.y74_c00401{bottom:720.283779pt;}
.y75_c00401{bottom:723.233840pt;}
.y76_c00401{bottom:724.601485pt;}
.y77_c00401{bottom:725.044120pt;}
.y78_c00401{bottom:727.760263pt;}
.y1_c00401{bottom:729.360000pt;}
.y63_c00401{bottom:742.531204pt;}
.y64_c00401{bottom:743.829099pt;}
.y65_c00401{bottom:744.688692pt;}
.y66_c00401{bottom:747.819977pt;}
.y67_c00401{bottom:748.732828pt;}
.y68_c00401{bottom:749.659675pt;}
.y69_c00401{bottom:752.007912pt;}
.y6a_c00401{bottom:753.004241pt;}
.y6b_c00401{bottom:755.217087pt;}
.y6c_c00401{bottom:758.785665pt;}
.y6d_c00401{bottom:761.361544pt;}
.y58_c00401{bottom:775.324689pt;}
.y59_c00401{bottom:777.234612pt;}
.y5a_c00401{bottom:778.892753pt;}
.y5b_c00401{bottom:779.715484pt;}
.y5c_c00401{bottom:781.747752pt;}
.y5d_c00401{bottom:784.000925pt;}
.y5e_c00401{bottom:786.853796pt;}
.y5f_c00401{bottom:787.709156pt;}
.y60_c00401{bottom:789.130884pt;}
.y61_c00401{bottom:791.799836pt;}
.y62_c00401{bottom:793.473233pt;}
.y4b_c00401{bottom:808.661313pt;}
.y4c_c00401{bottom:809.258765pt;}
.y4d_c00401{bottom:809.964607pt;}
.y4e_c00401{bottom:811.526692pt;}
.y4f_c00401{bottom:812.775796pt;}
.y50_c00401{bottom:813.506553pt;}
.y51_c00401{bottom:815.927336pt;}
.y52_c00401{bottom:816.671635pt;}
.y53_c00401{bottom:817.444339pt;}
.y54_c00401{bottom:818.145571pt;}
.y55_c00401{bottom:819.211817pt;}
.y56_c00401{bottom:820.592995pt;}
.y57_c00401{bottom:821.585389pt;}
.y2_c00401{bottom:825.120000pt;}
.y3_c00401{bottom:832.320000pt;}
.y48_c00401{bottom:854.248596pt;}
.y49_c00401{bottom:856.213427pt;}
.y4a_c00401{bottom:857.421883pt;}
.y3c_c00401{bottom:871.666751pt;}
.y3d_c00401{bottom:872.907881pt;}
.y3e_c00401{bottom:875.760024pt;}
.y3f_c00401{bottom:876.575653pt;}
.y40_c00401{bottom:877.197921pt;}
.y41_c00401{bottom:880.881733pt;}
.y42_c00401{bottom:882.014441pt;}
.y43_c00401{bottom:882.606040pt;}
.y44_c00401{bottom:884.304416pt;}
.y45_c00401{bottom:885.769476pt;}
.y46_c00401{bottom:887.780927pt;}
.y47_c00401{bottom:889.444041pt;}
.y2f_c00401{bottom:902.868636pt;}
.y30_c00401{bottom:903.533796pt;}
.y31_c00401{bottom:906.365049pt;}
.y32_c00401{bottom:907.163983pt;}
.y33_c00401{bottom:908.075385pt;}
.y34_c00401{bottom:911.120381pt;}
.y35_c00401{bottom:911.950621pt;}
.y36_c00401{bottom:912.732339pt;}
.y37_c00401{bottom:914.033088pt;}
.y38_c00401{bottom:914.794873pt;}
.y39_c00401{bottom:916.372500pt;}
.y3a_c00401{bottom:918.066712pt;}
.y3b_c00401{bottom:918.677088pt;}
.y1f_c00401{bottom:935.716903pt;}
.y20_c00401{bottom:936.856800pt;}
.y21_c00401{bottom:937.680947pt;}
.y22_c00401{bottom:939.269696pt;}
.y23_c00401{bottom:940.359839pt;}
.y24_c00401{bottom:941.949820pt;}
.y25_c00401{bottom:943.787808pt;}
.y26_c00401{bottom:944.573715pt;}
.y27_c00401{bottom:944.997773pt;}
.y28_c00401{bottom:945.664837pt;}
.y29_c00401{bottom:946.575708pt;}
.y2a_c00401{bottom:947.732681pt;}
.y2b_c00401{bottom:949.354389pt;}
.y2c_c00401{bottom:950.151419pt;}
.y2d_c00401{bottom:951.671080pt;}
.y2e_c00401{bottom:952.842144pt;}
.y11_c00401{bottom:969.362015pt;}
.y12_c00401{bottom:971.097853pt;}
.y13_c00401{bottom:973.458788pt;}
.y14_c00401{bottom:974.236955pt;}
.y15_c00401{bottom:975.200132pt;}
.y16_c00401{bottom:977.404944pt;}
.y17_c00401{bottom:978.556285pt;}
.y18_c00401{bottom:979.364124pt;}
.y19_c00401{bottom:980.366808pt;}
.y1a_c00401{bottom:981.822481pt;}
.y1b_c00401{bottom:983.034808pt;}
.y1c_c00401{bottom:983.461429pt;}
.y1d_c00401{bottom:985.428008pt;}
.y1e_c00401{bottom:986.830263pt;}
.y5_c00401{bottom:1002.485333pt;}
.y6_c00401{bottom:1003.947577pt;}
.y7_c00401{bottom:1004.629405pt;}
.y8_c00401{bottom:1005.877981pt;}
.y9_c00401{bottom:1006.488689pt;}
.ya_c00401{bottom:1008.169249pt;}
.yb_c00401{bottom:1009.362833pt;}
.yc_c00401{bottom:1009.968557pt;}
.yd_c00401{bottom:1011.161021pt;}
.ye_c00401{bottom:1012.871961pt;}
.yf_c00401{bottom:1012.947645pt;}
.y10_c00401{bottom:1013.562189pt;}
.y4_c00401{bottom:1077.108000pt;}
.h3_c00401{height:10.666667pt;}
.h2_c00401{height:21.333333pt;}
.h4_c00401{height:26.666667pt;}
.he_c00401{height:64.016926pt;}
.h8_c00401{height:69.348620pt;}
.h10_c00401{height:74.645944pt;}
.ha_c00401{height:74.683129pt;}
.h5_c00401{height:80.000000pt;}
.hd_c00401{height:80.021157pt;}
.h7_c00401{height:85.352147pt;}
.h9_c00401{height:90.686656pt;}
.hb_c00401{height:90.690645pt;}
.hf_c00401{height:96.008112pt;}
.h6_c00401{height:96.021166pt;}
.hc_c00401{height:117.364364pt;}
.h1_c00401{height:1112.000000pt;}
.h0_c00401{height:1112.133333pt;}
.w0_c00401{width:813.333333pt;}
.x0_c00401{left:0.000000pt;}
.x3_c00401{left:3.360000pt;}
.x2_c00401{left:5.040000pt;}
.x1_c00401{left:6.240000pt;}
.x5_c00401{left:18.480000pt;}
.x4_c00401{left:22.320000pt;}
.x7e_c00401{left:28.969331pt;}
.x5c_c00401{left:39.479712pt;}
.x21_c00401{left:42.617984pt;}
.x47_c00401{left:44.416435pt;}
.x30_c00401{left:45.708856pt;}
.x53_c00401{left:47.373499pt;}
.x7_c00401{left:50.637333pt;}
.x13_c00401{left:53.588584pt;}
.x39_c00401{left:54.722447pt;}
.x48_c00401{left:68.293085pt;}
.x31_c00401{left:70.332415pt;}
.x5d_c00401{left:81.338920pt;}
.x65_c00401{left:82.459248pt;}
.x22_c00401{left:84.829997pt;}
.x95_c00401{left:92.368000pt;}
.x49_c00401{left:96.505372pt;}
.x3a_c00401{left:97.499251pt;}
.x5e_c00401{left:109.059763pt;}
.x6b_c00401{left:111.230829pt;}
.x14_c00401{left:113.443865pt;}
.x23_c00401{left:115.372828pt;}
.x8_c00401{left:120.268000pt;}
.x8f_c00401{left:130.850652pt;}
.x9c_c00401{left:131.786667pt;}
.x73_c00401{left:134.210667pt;}
.x9d_c00401{left:136.187595pt;}
.x88_c00401{left:150.040857pt;}
.x9_c00401{left:152.736000pt;}
.x77_c00401{left:155.385052pt;}
.x4a_c00401{left:159.012136pt;}
.x74_c00401{left:165.462667pt;}
.x54_c00401{left:170.403501pt;}
.x9e_c00401{left:172.511235pt;}
.x24_c00401{left:174.194741pt;}
.x32_c00401{left:175.172532pt;}
.x90_c00401{left:178.919527pt;}
.x66_c00401{left:181.491355pt;}
.x78_c00401{left:183.240363pt;}
.x7f_c00401{left:185.907997pt;}
.x15_c00401{left:194.871535pt;}
.x3b_c00401{left:195.838731pt;}
.x55_c00401{left:198.782741pt;}
.x96_c00401{left:199.720000pt;}
.x33_c00401{left:204.768808pt;}
.x80_c00401{left:205.698664pt;}
.x89_c00401{left:207.616901pt;}
.x4b_c00401{left:208.965269pt;}
.x5f_c00401{left:210.083900pt;}
.xa_c00401{left:212.192000pt;}
.x25_c00401{left:214.545645pt;}
.x16_c00401{left:221.700360pt;}
.x3c_c00401{left:223.943332pt;}
.x91_c00401{left:226.052371pt;}
.x9f_c00401{left:230.573115pt;}
.x97_c00401{left:232.366667pt;}
.x75_c00401{left:233.408000pt;}
.x34_c00401{left:238.513885pt;}
.x60_c00401{left:239.515045pt;}
.xb_c00401{left:241.273333pt;}
.x3d_c00401{left:245.381053pt;}
.x67_c00401{left:251.298440pt;}
.x17_c00401{left:254.925455pt;}
.x98_c00401{left:257.430667pt;}
.x56_c00401{left:268.878981pt;}
.x26_c00401{left:273.426225pt;}
.x81_c00401{left:275.241331pt;}
.x68_c00401{left:279.676935pt;}
.x6c_c00401{left:281.170355pt;}
.x79_c00401{left:289.732149pt;}
.x92_c00401{left:296.794288pt;}
.x82_c00401{left:305.971997pt;}
.x7a_c00401{left:313.887368pt;}
.xc_c00401{left:321.300000pt;}
.xa0_c00401{left:325.780479pt;}
.x6d_c00401{left:329.357287pt;}
.x18_c00401{left:330.951353pt;}
.x4c_c00401{left:335.028019pt;}
.x8a_c00401{left:340.347732pt;}
.x27_c00401{left:341.512324pt;}
.x61_c00401{left:345.163536pt;}
.x57_c00401{left:346.572600pt;}
.xa1_c00401{left:349.563339pt;}
.x6_c00401{left:351.120000pt;}
.x83_c00401{left:353.921331pt;}
.x6e_c00401{left:359.842095pt;}
.x7b_c00401{left:362.809836pt;}
.x4d_c00401{left:364.817527pt;}
.x19_c00401{left:370.659356pt;}
.x3e_c00401{left:372.398384pt;}
.x93_c00401{left:375.436573pt;}
.xd_c00401{left:378.137333pt;}
.x35_c00401{left:382.078492pt;}
.x99_c00401{left:385.380000pt;}
.x28_c00401{left:386.298668pt;}
.x7c_c00401{left:392.073177pt;}
.x4e_c00401{left:395.705589pt;}
.x1a_c00401{left:398.520013pt;}
.xe_c00401{left:406.981333pt;}
.x29_c00401{left:411.012893pt;}
.x9a_c00401{left:412.280000pt;}
.x6f_c00401{left:418.197296pt;}
.x4f_c00401{left:423.761904pt;}
.xa2_c00401{left:425.845647pt;}
.x3f_c00401{left:431.895083pt;}
.x1b_c00401{left:433.118217pt;}
.x8b_c00401{left:442.788679pt;}
.x2a_c00401{left:444.732637pt;}
.x62_c00401{left:448.689808pt;}
.x36_c00401{left:459.202109pt;}
.xf_c00401{left:463.765333pt;}
.x50_c00401{left:466.404987pt;}
.x8c_c00401{left:469.694808pt;}
.x58_c00401{left:474.435124pt;}
.x69_c00401{left:476.393372pt;}
.x1c_c00401{left:483.316456pt;}
.x2b_c00401{left:487.567233pt;}
.x40_c00401{left:490.474588pt;}
.x8d_c00401{left:498.626148pt;}
.x7d_c00401{left:509.297240pt;}
.x84_c00401{left:518.725331pt;}
.x51_c00401{left:521.631005pt;}
.x59_c00401{left:523.461559pt;}
.x1d_c00401{left:525.102761pt;}
.x76_c00401{left:531.845333pt;}
.x70_c00401{left:534.151783pt;}
.x1e_c00401{left:539.828297pt;}
.x41_c00401{left:540.992771pt;}
.x10_c00401{left:545.238667pt;}
.x2c_c00401{left:547.641007pt;}
.x11_c00401{left:548.842667pt;}
.xa3_c00401{left:550.089279pt;}
.x85_c00401{left:552.170664pt;}
.x52_c00401{left:561.329007pt;}
.x63_c00401{left:563.804311pt;}
.x8e_c00401{left:571.481119pt;}
.x9b_c00401{left:574.877333pt;}
.x2d_c00401{left:577.146616pt;}
.x12_c00401{left:578.106667pt;}
.x94_c00401{left:579.880655pt;}
.x44_c00401{left:593.064037pt;}
.x86_c00401{left:598.359997pt;}
.x71_c00401{left:604.783029pt;}
.x1f_c00401{left:607.622235pt;}
.x37_c00401{left:608.593960pt;}
.x42_c00401{left:610.351789pt;}
.x5a_c00401{left:615.491436pt;}
.x38_c00401{left:631.180437pt;}
.x2e_c00401{left:633.440865pt;}
.x45_c00401{left:634.858551pt;}
.x6a_c00401{left:638.072295pt;}
.x64_c00401{left:646.892200pt;}
.x87_c00401{left:653.573331pt;}
.x20_c00401{left:655.975448pt;}
.x46_c00401{left:660.580523pt;}
.x43_c00401{left:667.696824pt;}
.x5b_c00401{left:673.199081pt;}
.x2f_c00401{left:676.819405pt;}
.x72_c00401{left:703.380669pt;}
}





/* 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_c00402 {
    display:none;
  }
  .loading-indicator_c00402.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00402 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_c00402 { 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_c00402" -> "#page-container .classname_c00402")
 */
.pf_c00402 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00402 { /* 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_c00402.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00402 { /* 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_c00402 { /* 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_c00402 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00402 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00402 {overflow:visible;}
  }
}
.c_c00402 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00402 { /* 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_c00402:after { /* webkit #35443 */
  content: '';
}
.t_c00402:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00402 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 */
}
.__c00402 { /* 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_c00402 { /* info for Javascript */
  display:none;
}
.l_c00402 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00402 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00402 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00402: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_c00402 {
    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_c00402.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00402.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_c00402 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00402{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00402;src:url('chunks/assets/font_c605e72f209fc835e906f064.woff2')format("woff");}.ff1_c00402{font-family:ff1_c00402;line-height:1.000000;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;}
.mcd_c00402{transform:matrix(0.048024,0.000336,-0.001750,0.249994,0,0);-ms-transform:matrix(0.048024,0.000336,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.048024,0.000336,-0.001750,0.249994,0,0);}
.m105_c00402{transform:matrix(0.124544,0.002989,-0.005998,0.249928,0,0);-ms-transform:matrix(0.124544,0.002989,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.124544,0.002989,-0.005998,0.249928,0,0);}
.m109_c00402{transform:matrix(0.138570,0.003326,-0.005998,0.249928,0,0);-ms-transform:matrix(0.138570,0.003326,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.138570,0.003326,-0.005998,0.249928,0,0);}
.m87_c00402{transform:matrix(0.145913,0.001459,-0.002500,0.249988,0,0);-ms-transform:matrix(0.145913,0.001459,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.145913,0.001459,-0.002500,0.249988,0,0);}
.m137_c00402{transform:matrix(0.146709,-0.002787,0.004749,0.249955,0,0);-ms-transform:matrix(0.146709,-0.002787,0.004749,0.249955,0,0);-webkit-transform:matrix(0.146709,-0.002787,0.004749,0.249955,0,0);}
.m107_c00402{transform:matrix(0.155285,0.003727,-0.005998,0.249928,0,0);-ms-transform:matrix(0.155285,0.003727,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.155285,0.003727,-0.005998,0.249928,0,0);}
.m88_c00402{transform:matrix(0.157207,0.001572,-0.002500,0.249988,0,0);-ms-transform:matrix(0.157207,0.001572,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.157207,0.001572,-0.002500,0.249988,0,0);}
.m131_c00402{transform:matrix(0.157867,-0.002999,0.004749,0.249955,0,0);-ms-transform:matrix(0.157867,-0.002999,0.004749,0.249955,0,0);-webkit-transform:matrix(0.157867,-0.002999,0.004749,0.249955,0,0);}
.m57_c00402{transform:matrix(0.158725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158725,0.000000,0.000000,0.250000,0,0);}
.m50_c00402{transform:matrix(0.160540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160540,0.000000,0.000000,0.250000,0,0);}
.ma6_c00402{transform:matrix(0.163332,0.001633,-0.002500,0.249988,0,0);-ms-transform:matrix(0.163332,0.001633,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.163332,0.001633,-0.002500,0.249988,0,0);}
.ma7_c00402{transform:matrix(0.164552,0.001646,-0.002500,0.249988,0,0);-ms-transform:matrix(0.164552,0.001646,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.164552,0.001646,-0.002500,0.249988,0,0);}
.m92_c00402{transform:matrix(0.166977,0.001670,-0.002500,0.249988,0,0);-ms-transform:matrix(0.166977,0.001670,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.166977,0.001670,-0.002500,0.249988,0,0);}
.md6_c00402{transform:matrix(0.167876,0.001175,-0.001750,0.249994,0,0);-ms-transform:matrix(0.167876,0.001175,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.167876,0.001175,-0.001750,0.249994,0,0);}
.m7a_c00402{transform:matrix(0.171161,0.001712,-0.002500,0.249988,0,0);-ms-transform:matrix(0.171161,0.001712,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.171161,0.001712,-0.002500,0.249988,0,0);}
.mad_c00402{transform:matrix(0.171166,0.001712,-0.002500,0.249988,0,0);-ms-transform:matrix(0.171166,0.001712,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.171166,0.001712,-0.002500,0.249988,0,0);}
.m94_c00402{transform:matrix(0.172051,0.001721,-0.002500,0.249988,0,0);-ms-transform:matrix(0.172051,0.001721,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.172051,0.001721,-0.002500,0.249988,0,0);}
.m4f_c00402{transform:matrix(0.172310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172310,0.000000,0.000000,0.250000,0,0);}
.m68_c00402{transform:matrix(0.173400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173400,0.000000,0.000000,0.250000,0,0);}
.m51_c00402{transform:matrix(0.173510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173510,0.000000,0.000000,0.250000,0,0);}
.m53_c00402{transform:matrix(0.174240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174240,0.000000,0.000000,0.250000,0,0);}
.m132_c00402{transform:matrix(0.174304,-0.003312,0.004749,0.249955,0,0);-ms-transform:matrix(0.174304,-0.003312,0.004749,0.249955,0,0);-webkit-transform:matrix(0.174304,-0.003312,0.004749,0.249955,0,0);}
.ma9_c00402{transform:matrix(0.174551,0.001746,-0.002500,0.249988,0,0);-ms-transform:matrix(0.174551,0.001746,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.174551,0.001746,-0.002500,0.249988,0,0);}
.mab_c00402{transform:matrix(0.175476,0.001755,-0.002500,0.249988,0,0);-ms-transform:matrix(0.175476,0.001755,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.175476,0.001755,-0.002500,0.249988,0,0);}
.mcf_c00402{transform:matrix(0.176226,0.001234,-0.001750,0.249994,0,0);-ms-transform:matrix(0.176226,0.001234,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.176226,0.001234,-0.001750,0.249994,0,0);}
.m66_c00402{transform:matrix(0.176980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176980,0.000000,0.000000,0.250000,0,0);}
.mce_c00402{transform:matrix(0.177846,0.001245,-0.001750,0.249994,0,0);-ms-transform:matrix(0.177846,0.001245,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.177846,0.001245,-0.001750,0.249994,0,0);}
.m96_c00402{transform:matrix(0.178656,0.001787,-0.002500,0.249988,0,0);-ms-transform:matrix(0.178656,0.001787,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.178656,0.001787,-0.002500,0.249988,0,0);}
.m89_c00402{transform:matrix(0.181061,0.001811,-0.002500,0.249988,0,0);-ms-transform:matrix(0.181061,0.001811,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.181061,0.001811,-0.002500,0.249988,0,0);}
.maa_c00402{transform:matrix(0.182716,0.001827,-0.002500,0.249988,0,0);-ms-transform:matrix(0.182716,0.001827,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.182716,0.001827,-0.002500,0.249988,0,0);}
.ma8_c00402{transform:matrix(0.183401,0.001834,-0.002500,0.249988,0,0);-ms-transform:matrix(0.183401,0.001834,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.183401,0.001834,-0.002500,0.249988,0,0);}
.m99_c00402{transform:matrix(0.183936,0.001839,-0.002500,0.249988,0,0);-ms-transform:matrix(0.183936,0.001839,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.183936,0.001839,-0.002500,0.249988,0,0);}
.m90_c00402{transform:matrix(0.184126,0.001841,-0.002500,0.249988,0,0);-ms-transform:matrix(0.184126,0.001841,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.184126,0.001841,-0.002500,0.249988,0,0);}
.m9c_c00402{transform:matrix(0.184166,0.001842,-0.002500,0.249988,0,0);-ms-transform:matrix(0.184166,0.001842,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.184166,0.001842,-0.002500,0.249988,0,0);}
.m54_c00402{transform:matrix(0.184505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184505,0.000000,0.000000,0.250000,0,0);}
.m93_c00402{transform:matrix(0.184651,0.001847,-0.002500,0.249988,0,0);-ms-transform:matrix(0.184651,0.001847,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.184651,0.001847,-0.002500,0.249988,0,0);}
.m8e_c00402{transform:matrix(0.185821,0.001858,-0.002500,0.249988,0,0);-ms-transform:matrix(0.185821,0.001858,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.185821,0.001858,-0.002500,0.249988,0,0);}
.m9f_c00402{transform:matrix(0.186001,0.001860,-0.002500,0.249988,0,0);-ms-transform:matrix(0.186001,0.001860,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.186001,0.001860,-0.002500,0.249988,0,0);}
.md0_c00402{transform:matrix(0.186420,0.001305,-0.001750,0.249994,0,0);-ms-transform:matrix(0.186420,0.001305,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.186420,0.001305,-0.001750,0.249994,0,0);}
.mac_c00402{transform:matrix(0.186666,0.001867,-0.002500,0.249988,0,0);-ms-transform:matrix(0.186666,0.001867,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.186666,0.001867,-0.002500,0.249988,0,0);}
.m80_c00402{transform:matrix(0.186946,0.001869,-0.002500,0.249988,0,0);-ms-transform:matrix(0.186946,0.001869,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.186946,0.001869,-0.002500,0.249988,0,0);}
.m8f_c00402{transform:matrix(0.187641,0.001876,-0.002500,0.249988,0,0);-ms-transform:matrix(0.187641,0.001876,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.187641,0.001876,-0.002500,0.249988,0,0);}
.m95_c00402{transform:matrix(0.188531,0.001885,-0.002500,0.249988,0,0);-ms-transform:matrix(0.188531,0.001885,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.188531,0.001885,-0.002500,0.249988,0,0);}
.m55_c00402{transform:matrix(0.188760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188760,0.000000,0.000000,0.250000,0,0);}
.m100_c00402{transform:matrix(0.188931,0.004534,-0.005998,0.249928,0,0);-ms-transform:matrix(0.188931,0.004534,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.188931,0.004534,-0.005998,0.249928,0,0);}
.m21_c00402{transform:matrix(0.189153,0.000946,-0.001250,0.249997,0,0);-ms-transform:matrix(0.189153,0.000946,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.189153,0.000946,-0.001250,0.249997,0,0);}
.m59_c00402{transform:matrix(0.190645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190645,0.000000,0.000000,0.250000,0,0);}
.md7_c00402{transform:matrix(0.190930,0.001337,-0.001750,0.249994,0,0);-ms-transform:matrix(0.190930,0.001337,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.190930,0.001337,-0.001750,0.249994,0,0);}
.m8c_c00402{transform:matrix(0.190940,0.001909,-0.002500,0.249988,0,0);-ms-transform:matrix(0.190940,0.001909,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.190940,0.001909,-0.002500,0.249988,0,0);}
.m136_c00402{transform:matrix(0.191340,-0.003635,0.004749,0.249955,0,0);-ms-transform:matrix(0.191340,-0.003635,0.004749,0.249955,0,0);-webkit-transform:matrix(0.191340,-0.003635,0.004749,0.249955,0,0);}
.md3_c00402{transform:matrix(0.192015,0.001344,-0.001750,0.249994,0,0);-ms-transform:matrix(0.192015,0.001344,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.192015,0.001344,-0.001750,0.249994,0,0);}
.mbd_c00402{transform:matrix(0.192601,0.002696,-0.003500,0.249976,0,0);-ms-transform:matrix(0.192601,0.002696,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.192601,0.002696,-0.003500,0.249976,0,0);}
.md1_c00402{transform:matrix(0.193235,0.001353,-0.001750,0.249994,0,0);-ms-transform:matrix(0.193235,0.001353,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.193235,0.001353,-0.001750,0.249994,0,0);}
.m58_c00402{transform:matrix(0.193760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193760,0.000000,0.000000,0.250000,0,0);}
.m56_c00402{transform:matrix(0.193780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193780,0.000000,0.000000,0.250000,0,0);}
.m52_c00402{transform:matrix(0.194230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194230,0.000000,0.000000,0.250000,0,0);}
.m67_c00402{transform:matrix(0.194515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194515,0.000000,0.000000,0.250000,0,0);}
.md5_c00402{transform:matrix(0.194660,0.001363,-0.001750,0.249994,0,0);-ms-transform:matrix(0.194660,0.001363,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.194660,0.001363,-0.001750,0.249994,0,0);}
.m7c_c00402{transform:matrix(0.195040,0.001950,-0.002500,0.249988,0,0);-ms-transform:matrix(0.195040,0.001950,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.195040,0.001950,-0.002500,0.249988,0,0);}
.m91_c00402{transform:matrix(0.195655,0.001957,-0.002500,0.249988,0,0);-ms-transform:matrix(0.195655,0.001957,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.195655,0.001957,-0.002500,0.249988,0,0);}
.md2_c00402{transform:matrix(0.196110,0.001373,-0.001750,0.249994,0,0);-ms-transform:matrix(0.196110,0.001373,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.196110,0.001373,-0.001750,0.249994,0,0);}
.me1_c00402{transform:matrix(0.196113,0.002157,-0.002750,0.249985,0,0);-ms-transform:matrix(0.196113,0.002157,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.196113,0.002157,-0.002750,0.249985,0,0);}
.m13f_c00402{transform:matrix(0.196330,-0.003730,0.004749,0.249955,0,0);-ms-transform:matrix(0.196330,-0.003730,0.004749,0.249955,0,0);-webkit-transform:matrix(0.196330,-0.003730,0.004749,0.249955,0,0);}
.m45_c00402{transform:matrix(0.196455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196455,0.000000,0.000000,0.250000,0,0);}
.m22_c00402{transform:matrix(0.197383,0.000987,-0.001250,0.249997,0,0);-ms-transform:matrix(0.197383,0.000987,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.197383,0.000987,-0.001250,0.249997,0,0);}
.m25_c00402{transform:matrix(0.197798,0.000989,-0.001250,0.249997,0,0);-ms-transform:matrix(0.197798,0.000989,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.197798,0.000989,-0.001250,0.249997,0,0);}
.m6_c00402{transform:matrix(0.197910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197910,0.000000,0.000000,0.250000,0,0);}
.me7_c00402{transform:matrix(0.197923,0.002969,-0.003750,0.249972,0,0);-ms-transform:matrix(0.197923,0.002969,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.197923,0.002969,-0.003750,0.249972,0,0);}
.m9a_c00402{transform:matrix(0.197965,0.001980,-0.002500,0.249988,0,0);-ms-transform:matrix(0.197965,0.001980,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.197965,0.001980,-0.002500,0.249988,0,0);}
.ma0_c00402{transform:matrix(0.198040,0.001980,-0.002500,0.249988,0,0);-ms-transform:matrix(0.198040,0.001980,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.198040,0.001980,-0.002500,0.249988,0,0);}
.m98_c00402{transform:matrix(0.198605,0.001986,-0.002500,0.249988,0,0);-ms-transform:matrix(0.198605,0.001986,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.198605,0.001986,-0.002500,0.249988,0,0);}
.m9_c00402{transform:matrix(0.199100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199100,0.000000,0.000000,0.250000,0,0);}
.m43_c00402{transform:matrix(0.199295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199295,0.000000,0.000000,0.250000,0,0);}
.m97_c00402{transform:matrix(0.199490,0.001995,-0.002500,0.249988,0,0);-ms-transform:matrix(0.199490,0.001995,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.199490,0.001995,-0.002500,0.249988,0,0);}
.m75_c00402{transform:matrix(0.199985,0.002000,-0.002500,0.249988,0,0);-ms-transform:matrix(0.199985,0.002000,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.199985,0.002000,-0.002500,0.249988,0,0);}
.m78_c00402{transform:matrix(0.200725,0.002007,-0.002500,0.249988,0,0);-ms-transform:matrix(0.200725,0.002007,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.200725,0.002007,-0.002500,0.249988,0,0);}
.m8b_c00402{transform:matrix(0.200955,0.002010,-0.002500,0.249988,0,0);-ms-transform:matrix(0.200955,0.002010,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.200955,0.002010,-0.002500,0.249988,0,0);}
.mfe_c00402{transform:matrix(0.202067,0.004850,-0.005998,0.249928,0,0);-ms-transform:matrix(0.202067,0.004850,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.202067,0.004850,-0.005998,0.249928,0,0);}
.m42_c00402{transform:matrix(0.202640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202640,0.000000,0.000000,0.250000,0,0);}
.me4_c00402{transform:matrix(0.203188,0.002235,-0.002750,0.249985,0,0);-ms-transform:matrix(0.203188,0.002235,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.203188,0.002235,-0.002750,0.249985,0,0);}
.m7e_c00402{transform:matrix(0.203345,0.002033,-0.002500,0.249988,0,0);-ms-transform:matrix(0.203345,0.002033,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.203345,0.002033,-0.002500,0.249988,0,0);}
.mde_c00402{transform:matrix(0.204113,0.002245,-0.002750,0.249985,0,0);-ms-transform:matrix(0.204113,0.002245,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.204113,0.002245,-0.002750,0.249985,0,0);}
.m49_c00402{transform:matrix(0.204460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204460,0.000000,0.000000,0.250000,0,0);}
.mb9_c00402{transform:matrix(0.205335,0.002875,-0.003500,0.249976,0,0);-ms-transform:matrix(0.205335,0.002875,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.205335,0.002875,-0.003500,0.249976,0,0);}
.m83_c00402{transform:matrix(0.206815,0.002068,-0.002500,0.249988,0,0);-ms-transform:matrix(0.206815,0.002068,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.206815,0.002068,-0.002500,0.249988,0,0);}
.m79_c00402{transform:matrix(0.206895,0.002069,-0.002500,0.249988,0,0);-ms-transform:matrix(0.206895,0.002069,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.206895,0.002069,-0.002500,0.249988,0,0);}
.m9d_c00402{transform:matrix(0.206920,0.002069,-0.002500,0.249988,0,0);-ms-transform:matrix(0.206920,0.002069,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.206920,0.002069,-0.002500,0.249988,0,0);}
.mc1_c00402{transform:matrix(0.207175,0.002900,-0.003500,0.249976,0,0);-ms-transform:matrix(0.207175,0.002900,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.207175,0.002900,-0.003500,0.249976,0,0);}
.m8_c00402{transform:matrix(0.207365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207365,0.000000,0.000000,0.250000,0,0);}
.m41_c00402{transform:matrix(0.207425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207425,0.000000,0.000000,0.250000,0,0);}
.m82_c00402{transform:matrix(0.207590,0.002076,-0.002500,0.249988,0,0);-ms-transform:matrix(0.207590,0.002076,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.207590,0.002076,-0.002500,0.249988,0,0);}
.mf3_c00402{transform:matrix(0.207692,0.003115,-0.003750,0.249972,0,0);-ms-transform:matrix(0.207692,0.003115,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.207692,0.003115,-0.003750,0.249972,0,0);}
.md4_c00402{transform:matrix(0.208510,0.001460,-0.001750,0.249994,0,0);-ms-transform:matrix(0.208510,0.001460,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.208510,0.001460,-0.001750,0.249994,0,0);}
.m76_c00402{transform:matrix(0.208815,0.002088,-0.002500,0.249988,0,0);-ms-transform:matrix(0.208815,0.002088,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.208815,0.002088,-0.002500,0.249988,0,0);}
.mf_c00402{transform:matrix(0.209220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209220,0.000000,0.000000,0.250000,0,0);}
.m140_c00402{transform:matrix(0.209432,-0.003979,0.004749,0.249955,0,0);-ms-transform:matrix(0.209432,-0.003979,0.004749,0.249955,0,0);-webkit-transform:matrix(0.209432,-0.003979,0.004749,0.249955,0,0);}
.m8d_c00402{transform:matrix(0.209500,0.002095,-0.002500,0.249988,0,0);-ms-transform:matrix(0.209500,0.002095,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.209500,0.002095,-0.002500,0.249988,0,0);}
.m115_c00402{transform:matrix(0.209575,0.004820,-0.005748,0.249934,0,0);-ms-transform:matrix(0.209575,0.004820,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.209575,0.004820,-0.005748,0.249934,0,0);}
.m26_c00402{transform:matrix(0.209687,0.001048,-0.001250,0.249997,0,0);-ms-transform:matrix(0.209687,0.001048,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.209687,0.001048,-0.001250,0.249997,0,0);}
.m119_c00402{transform:matrix(0.209845,0.004826,-0.005748,0.249934,0,0);-ms-transform:matrix(0.209845,0.004826,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.209845,0.004826,-0.005748,0.249934,0,0);}
.m70_c00402{transform:matrix(0.209925,0.002099,-0.002500,0.249988,0,0);-ms-transform:matrix(0.209925,0.002099,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.209925,0.002099,-0.002500,0.249988,0,0);}
.m74_c00402{transform:matrix(0.210309,0.002103,-0.002500,0.249988,0,0);-ms-transform:matrix(0.210309,0.002103,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.210309,0.002103,-0.002500,0.249988,0,0);}
.ma4_c00402{transform:matrix(0.211804,0.002118,-0.002500,0.249988,0,0);-ms-transform:matrix(0.211804,0.002118,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.211804,0.002118,-0.002500,0.249988,0,0);}
.m13b_c00402{transform:matrix(0.212007,-0.004028,0.004749,0.249955,0,0);-ms-transform:matrix(0.212007,-0.004028,0.004749,0.249955,0,0);-webkit-transform:matrix(0.212007,-0.004028,0.004749,0.249955,0,0);}
.m29_c00402{transform:matrix(0.212510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212510,0.000000,0.000000,0.250000,0,0);}
.m4d_c00402{transform:matrix(0.212515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212515,0.000000,0.000000,0.250000,0,0);}
.mc0_c00402{transform:matrix(0.212939,0.002981,-0.003500,0.249976,0,0);-ms-transform:matrix(0.212939,0.002981,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.212939,0.002981,-0.003500,0.249976,0,0);}
.m77_c00402{transform:matrix(0.213124,0.002131,-0.002500,0.249988,0,0);-ms-transform:matrix(0.213124,0.002131,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.213124,0.002131,-0.002500,0.249988,0,0);}
.m12_c00402{transform:matrix(0.213610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213610,0.000000,0.000000,0.250000,0,0);}
.mfa_c00402{transform:matrix(0.213791,0.003207,-0.003750,0.249972,0,0);-ms-transform:matrix(0.213791,0.003207,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.213791,0.003207,-0.003750,0.249972,0,0);}
.m13c_c00402{transform:matrix(0.213806,-0.004062,0.004749,0.249955,0,0);-ms-transform:matrix(0.213806,-0.004062,0.004749,0.249955,0,0);-webkit-transform:matrix(0.213806,-0.004062,0.004749,0.249955,0,0);}
.m1f_c00402{transform:matrix(0.214197,0.001071,-0.001250,0.249997,0,0);-ms-transform:matrix(0.214197,0.001071,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.214197,0.001071,-0.001250,0.249997,0,0);}
.me9_c00402{transform:matrix(0.214256,0.003214,-0.003750,0.249972,0,0);-ms-transform:matrix(0.214256,0.003214,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.214256,0.003214,-0.003750,0.249972,0,0);}
.m6e_c00402{transform:matrix(0.214404,0.002144,-0.002500,0.249988,0,0);-ms-transform:matrix(0.214404,0.002144,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.214404,0.002144,-0.002500,0.249988,0,0);}
.md8_c00402{transform:matrix(0.214510,0.001502,-0.001750,0.249994,0,0);-ms-transform:matrix(0.214510,0.001502,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.214510,0.001502,-0.001750,0.249994,0,0);}
.m81_c00402{transform:matrix(0.215059,0.002151,-0.002500,0.249988,0,0);-ms-transform:matrix(0.215059,0.002151,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.215059,0.002151,-0.002500,0.249988,0,0);}
.m9b_c00402{transform:matrix(0.215599,0.002156,-0.002500,0.249988,0,0);-ms-transform:matrix(0.215599,0.002156,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.215599,0.002156,-0.002500,0.249988,0,0);}
.m6c_c00402{transform:matrix(0.215704,0.002157,-0.002500,0.249988,0,0);-ms-transform:matrix(0.215704,0.002157,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.215704,0.002157,-0.002500,0.249988,0,0);}
.mb_c00402{transform:matrix(0.215890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215890,0.000000,0.000000,0.250000,0,0);}
.mc_c00402{transform:matrix(0.216100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216100,0.000000,0.000000,0.250000,0,0);}
.m3f_c00402{transform:matrix(0.216335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216335,0.000000,0.000000,0.250000,0,0);}
.m28_c00402{transform:matrix(0.216827,0.001084,-0.001250,0.249997,0,0);-ms-transform:matrix(0.216827,0.001084,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.216827,0.001084,-0.001250,0.249997,0,0);}
.mbf_c00402{transform:matrix(0.217389,0.003043,-0.003500,0.249976,0,0);-ms-transform:matrix(0.217389,0.003043,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.217389,0.003043,-0.003500,0.249976,0,0);}
.m84_c00402{transform:matrix(0.217399,0.002174,-0.002500,0.249988,0,0);-ms-transform:matrix(0.217399,0.002174,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.217399,0.002174,-0.002500,0.249988,0,0);}
.m86_c00402{transform:matrix(0.217464,0.002175,-0.002500,0.249988,0,0);-ms-transform:matrix(0.217464,0.002175,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.217464,0.002175,-0.002500,0.249988,0,0);}
.m10_c00402{transform:matrix(0.217530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217530,0.000000,0.000000,0.250000,0,0);}
.m10d_c00402{transform:matrix(0.217632,0.005223,-0.005998,0.249928,0,0);-ms-transform:matrix(0.217632,0.005223,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.217632,0.005223,-0.005998,0.249928,0,0);}
.ma1_c00402{transform:matrix(0.217804,0.002178,-0.002500,0.249988,0,0);-ms-transform:matrix(0.217804,0.002178,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.217804,0.002178,-0.002500,0.249988,0,0);}
.ma3_c00402{transform:matrix(0.217849,0.002178,-0.002500,0.249988,0,0);-ms-transform:matrix(0.217849,0.002178,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.217849,0.002178,-0.002500,0.249988,0,0);}
.ma_c00402{transform:matrix(0.217875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217875,0.000000,0.000000,0.250000,0,0);}
.m101_c00402{transform:matrix(0.218047,0.005233,-0.005998,0.249928,0,0);-ms-transform:matrix(0.218047,0.005233,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.218047,0.005233,-0.005998,0.249928,0,0);}
.m47_c00402{transform:matrix(0.218205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218205,0.000000,0.000000,0.250000,0,0);}
.md9_c00402{transform:matrix(0.218682,0.002405,-0.002750,0.249985,0,0);-ms-transform:matrix(0.218682,0.002405,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.218682,0.002405,-0.002750,0.249985,0,0);}
.mdf_c00402{transform:matrix(0.218727,0.002406,-0.002750,0.249985,0,0);-ms-transform:matrix(0.218727,0.002406,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.218727,0.002406,-0.002750,0.249985,0,0);}
.m4b_c00402{transform:matrix(0.219685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219685,0.000000,0.000000,0.250000,0,0);}
.m27_c00402{transform:matrix(0.220202,0.001101,-0.001250,0.249997,0,0);-ms-transform:matrix(0.220202,0.001101,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.220202,0.001101,-0.001250,0.249997,0,0);}
.me8_c00402{transform:matrix(0.220310,0.003305,-0.003750,0.249972,0,0);-ms-transform:matrix(0.220310,0.003305,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.220310,0.003305,-0.003750,0.249972,0,0);}
.m23_c00402{transform:matrix(0.220627,0.001103,-0.001250,0.249997,0,0);-ms-transform:matrix(0.220627,0.001103,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.220627,0.001103,-0.001250,0.249997,0,0);}
.mfd_c00402{transform:matrix(0.220720,0.003311,-0.003750,0.249972,0,0);-ms-transform:matrix(0.220720,0.003311,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.220720,0.003311,-0.003750,0.249972,0,0);}
.m6a_c00402{transform:matrix(0.221109,0.002211,-0.002500,0.249988,0,0);-ms-transform:matrix(0.221109,0.002211,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.221109,0.002211,-0.002500,0.249988,0,0);}
.meb_c00402{transform:matrix(0.221560,0.003323,-0.003750,0.249972,0,0);-ms-transform:matrix(0.221560,0.003323,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.221560,0.003323,-0.003750,0.249972,0,0);}
.m7_c00402{transform:matrix(0.221670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221670,0.000000,0.000000,0.250000,0,0);}
.m7b_c00402{transform:matrix(0.222519,0.002225,-0.002500,0.249988,0,0);-ms-transform:matrix(0.222519,0.002225,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.222519,0.002225,-0.002500,0.249988,0,0);}
.m2_c00402{transform:matrix(0.222560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222560,0.000000,0.000000,0.250000,0,0);}
.m20_c00402{transform:matrix(0.222927,0.001115,-0.001250,0.249997,0,0);-ms-transform:matrix(0.222927,0.001115,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.222927,0.001115,-0.001250,0.249997,0,0);}
.mbe_c00402{transform:matrix(0.222928,0.003121,-0.003500,0.249976,0,0);-ms-transform:matrix(0.222928,0.003121,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.222928,0.003121,-0.003500,0.249976,0,0);}
.mda_c00402{transform:matrix(0.223306,0.002456,-0.002750,0.249985,0,0);-ms-transform:matrix(0.223306,0.002456,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.223306,0.002456,-0.002750,0.249985,0,0);}
.m9e_c00402{transform:matrix(0.223514,0.002235,-0.002500,0.249988,0,0);-ms-transform:matrix(0.223514,0.002235,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.223514,0.002235,-0.002500,0.249988,0,0);}
.me5_c00402{transform:matrix(0.224016,0.002464,-0.002750,0.249985,0,0);-ms-transform:matrix(0.224016,0.002464,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.224016,0.002464,-0.002750,0.249985,0,0);}
.m24_c00402{transform:matrix(0.224602,0.001123,-0.001250,0.249997,0,0);-ms-transform:matrix(0.224602,0.001123,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.224602,0.001123,-0.001250,0.249997,0,0);}
.m7f_c00402{transform:matrix(0.225084,0.002251,-0.002500,0.249988,0,0);-ms-transform:matrix(0.225084,0.002251,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.225084,0.002251,-0.002500,0.249988,0,0);}
.m138_c00402{transform:matrix(0.225554,-0.004286,0.004749,0.249955,0,0);-ms-transform:matrix(0.225554,-0.004286,0.004749,0.249955,0,0);-webkit-transform:matrix(0.225554,-0.004286,0.004749,0.249955,0,0);}
.m44_c00402{transform:matrix(0.225625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225625,0.000000,0.000000,0.250000,0,0);}
.m40_c00402{transform:matrix(0.225665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225665,0.000000,0.000000,0.250000,0,0);}
.mba_c00402{transform:matrix(0.225698,0.003160,-0.003500,0.249976,0,0);-ms-transform:matrix(0.225698,0.003160,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.225698,0.003160,-0.003500,0.249976,0,0);}
.m4e_c00402{transform:matrix(0.226060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226060,0.000000,0.000000,0.250000,0,0);}
.me0_c00402{transform:matrix(0.226106,0.002487,-0.002750,0.249985,0,0);-ms-transform:matrix(0.226106,0.002487,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.226106,0.002487,-0.002750,0.249985,0,0);}
.m5a_c00402{transform:matrix(0.226110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226110,0.000000,0.000000,0.250000,0,0);}
.m7d_c00402{transform:matrix(0.226144,0.002261,-0.002500,0.249988,0,0);-ms-transform:matrix(0.226144,0.002261,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.226144,0.002261,-0.002500,0.249988,0,0);}
.m85_c00402{transform:matrix(0.226549,0.002265,-0.002500,0.249988,0,0);-ms-transform:matrix(0.226549,0.002265,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.226549,0.002265,-0.002500,0.249988,0,0);}
.mf8_c00402{transform:matrix(0.227059,0.003406,-0.003750,0.249972,0,0);-ms-transform:matrix(0.227059,0.003406,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.227059,0.003406,-0.003750,0.249972,0,0);}
.m2a_c00402{transform:matrix(0.227265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227265,0.000000,0.000000,0.250000,0,0);}
.m8a_c00402{transform:matrix(0.227709,0.002277,-0.002500,0.249988,0,0);-ms-transform:matrix(0.227709,0.002277,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.227709,0.002277,-0.002500,0.249988,0,0);}
.me3_c00402{transform:matrix(0.227996,0.002508,-0.002750,0.249985,0,0);-ms-transform:matrix(0.227996,0.002508,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.227996,0.002508,-0.002750,0.249985,0,0);}
.mdd_c00402{transform:matrix(0.228106,0.002509,-0.002750,0.249985,0,0);-ms-transform:matrix(0.228106,0.002509,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.228106,0.002509,-0.002750,0.249985,0,0);}
.m2c_c00402{transform:matrix(0.228510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228510,0.000000,0.000000,0.250000,0,0);}
.mef_c00402{transform:matrix(0.228764,0.003431,-0.003750,0.249972,0,0);-ms-transform:matrix(0.228764,0.003431,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.228764,0.003431,-0.003750,0.249972,0,0);}
.mbc_c00402{transform:matrix(0.228773,0.003203,-0.003500,0.249976,0,0);-ms-transform:matrix(0.228773,0.003203,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.228773,0.003203,-0.003500,0.249976,0,0);}
.m10b_c00402{transform:matrix(0.229054,0.005497,-0.005998,0.249928,0,0);-ms-transform:matrix(0.229054,0.005497,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.229054,0.005497,-0.005998,0.249928,0,0);}
.m2e_c00402{transform:matrix(0.229330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229330,0.000000,0.000000,0.250000,0,0);}
.mbb_c00402{transform:matrix(0.229413,0.003212,-0.003500,0.249976,0,0);-ms-transform:matrix(0.229413,0.003212,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.229413,0.003212,-0.003500,0.249976,0,0);}
.md_c00402{transform:matrix(0.229490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229490,0.000000,0.000000,0.250000,0,0);}
.m46_c00402{transform:matrix(0.229705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229705,0.000000,0.000000,0.250000,0,0);}
.mff_c00402{transform:matrix(0.229819,0.005516,-0.005998,0.249928,0,0);-ms-transform:matrix(0.229819,0.005516,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.229819,0.005516,-0.005998,0.249928,0,0);}
.mdc_c00402{transform:matrix(0.229826,0.002528,-0.002750,0.249985,0,0);-ms-transform:matrix(0.229826,0.002528,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.229826,0.002528,-0.002750,0.249985,0,0);}
.m11_c00402{transform:matrix(0.230300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230300,0.000000,0.000000,0.250000,0,0);}
.mb4_c00402{transform:matrix(0.230687,0.003230,-0.003500,0.249976,0,0);-ms-transform:matrix(0.230687,0.003230,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.230687,0.003230,-0.003500,0.249976,0,0);}
.m4c_c00402{transform:matrix(0.230910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230910,0.000000,0.000000,0.250000,0,0);}
.me_c00402{transform:matrix(0.231515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231515,0.000000,0.000000,0.250000,0,0);}
.m3d_c00402{transform:matrix(0.231620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231620,0.000000,0.000000,0.250000,0,0);}
.m2b_c00402{transform:matrix(0.231645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231645,0.000000,0.000000,0.250000,0,0);}
.m108_c00402{transform:matrix(0.231893,0.005565,-0.005998,0.249928,0,0);-ms-transform:matrix(0.231893,0.005565,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.231893,0.005565,-0.005998,0.249928,0,0);}
.m62_c00402{transform:matrix(0.232285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232285,0.000000,0.000000,0.250000,0,0);}
.m48_c00402{transform:matrix(0.232320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232320,0.000000,0.000000,0.250000,0,0);}
.mc3_c00402{transform:matrix(0.233069,0.001631,-0.001750,0.249994,0,0);-ms-transform:matrix(0.233069,0.001631,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.233069,0.001631,-0.001750,0.249994,0,0);}
.me2_c00402{transform:matrix(0.233206,0.002565,-0.002750,0.249985,0,0);-ms-transform:matrix(0.233206,0.002565,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.233206,0.002565,-0.002750,0.249985,0,0);}
.m11a_c00402{transform:matrix(0.233363,0.005367,-0.005748,0.249934,0,0);-ms-transform:matrix(0.233363,0.005367,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.233363,0.005367,-0.005748,0.249934,0,0);}
.mea_c00402{transform:matrix(0.233679,0.003505,-0.003750,0.249972,0,0);-ms-transform:matrix(0.233679,0.003505,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.233679,0.003505,-0.003750,0.249972,0,0);}
.m35_c00402{transform:matrix(0.234260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234260,0.000000,0.000000,0.250000,0,0);}
.m102_c00402{transform:matrix(0.234273,0.005623,-0.005998,0.249928,0,0);-ms-transform:matrix(0.234273,0.005623,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.234273,0.005623,-0.005998,0.249928,0,0);}
.mf9_c00402{transform:matrix(0.234399,0.003516,-0.003750,0.249972,0,0);-ms-transform:matrix(0.234399,0.003516,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.234399,0.003516,-0.003750,0.249972,0,0);}
.mdb_c00402{transform:matrix(0.234601,0.002581,-0.002750,0.249985,0,0);-ms-transform:matrix(0.234601,0.002581,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.234601,0.002581,-0.002750,0.249985,0,0);}
.mb6_c00402{transform:matrix(0.234762,0.003287,-0.003500,0.249976,0,0);-ms-transform:matrix(0.234762,0.003287,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.234762,0.003287,-0.003500,0.249976,0,0);}
.m5e_c00402{transform:matrix(0.235395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235395,0.000000,0.000000,0.250000,0,0);}
.m13_c00402{transform:matrix(0.235485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235485,0.000000,0.000000,0.250000,0,0);}
.m10a_c00402{transform:matrix(0.235687,0.005656,-0.005998,0.249928,0,0);-ms-transform:matrix(0.235687,0.005656,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.235687,0.005656,-0.005998,0.249928,0,0);}
.mee_c00402{transform:matrix(0.236218,0.003543,-0.003750,0.249972,0,0);-ms-transform:matrix(0.236218,0.003543,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.236218,0.003543,-0.003750,0.249972,0,0);}
.m4a_c00402{transform:matrix(0.236380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236380,0.000000,0.000000,0.250000,0,0);}
.mb2_c00402{transform:matrix(0.236422,0.003310,-0.003500,0.249976,0,0);-ms-transform:matrix(0.236422,0.003310,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.236422,0.003310,-0.003500,0.249976,0,0);}
.m73_c00402{transform:matrix(0.236428,0.002364,-0.002500,0.249988,0,0);-ms-transform:matrix(0.236428,0.002364,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.236428,0.002364,-0.002500,0.249988,0,0);}
.m38_c00402{transform:matrix(0.236440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236440,0.000000,0.000000,0.250000,0,0);}
.m106_c00402{transform:matrix(0.236962,0.005687,-0.005998,0.249928,0,0);-ms-transform:matrix(0.236962,0.005687,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.236962,0.005687,-0.005998,0.249928,0,0);}
.med_c00402{transform:matrix(0.237203,0.003558,-0.003750,0.249972,0,0);-ms-transform:matrix(0.237203,0.003558,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.237203,0.003558,-0.003750,0.249972,0,0);}
.ma2_c00402{transform:matrix(0.237218,0.002372,-0.002500,0.249988,0,0);-ms-transform:matrix(0.237218,0.002372,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.237218,0.002372,-0.002500,0.249988,0,0);}
.m71_c00402{transform:matrix(0.237413,0.002374,-0.002500,0.249988,0,0);-ms-transform:matrix(0.237413,0.002374,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.237413,0.002374,-0.002500,0.249988,0,0);}
.mec_c00402{transform:matrix(0.237708,0.003566,-0.003750,0.249972,0,0);-ms-transform:matrix(0.237708,0.003566,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.237708,0.003566,-0.003750,0.249972,0,0);}
.mf5_c00402{transform:matrix(0.237733,0.003566,-0.003750,0.249972,0,0);-ms-transform:matrix(0.237733,0.003566,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.237733,0.003566,-0.003750,0.249972,0,0);}
.m64_c00402{transform:matrix(0.237830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237830,0.000000,0.000000,0.250000,0,0);}
.m3_c00402{transform:matrix(0.237895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237895,0.000000,0.000000,0.250000,0,0);}
.mf7_c00402{transform:matrix(0.238828,0.003582,-0.003750,0.249972,0,0);-ms-transform:matrix(0.238828,0.003582,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.238828,0.003582,-0.003750,0.249972,0,0);}
.m13a_c00402{transform:matrix(0.238987,-0.004541,0.004749,0.249955,0,0);-ms-transform:matrix(0.238987,-0.004541,0.004749,0.249955,0,0);-webkit-transform:matrix(0.238987,-0.004541,0.004749,0.249955,0,0);}
.m14_c00402{transform:matrix(0.239040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239040,0.000000,0.000000,0.250000,0,0);}
.m104_c00402{transform:matrix(0.239066,0.005738,-0.005998,0.249928,0,0);-ms-transform:matrix(0.239066,0.005738,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.239066,0.005738,-0.005998,0.249928,0,0);}
.m37_c00402{transform:matrix(0.239355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239355,0.000000,0.000000,0.250000,0,0);}
.m69_c00402{transform:matrix(0.239768,0.002398,-0.002500,0.249988,0,0);-ms-transform:matrix(0.239768,0.002398,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.239768,0.002398,-0.002500,0.249988,0,0);}
.mf6_c00402{transform:matrix(0.239863,0.003598,-0.003750,0.249972,0,0);-ms-transform:matrix(0.239863,0.003598,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.239863,0.003598,-0.003750,0.249972,0,0);}
.m5_c00402{transform:matrix(0.239930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239930,0.000000,0.000000,0.250000,0,0);}
.mf1_c00402{transform:matrix(0.240443,0.003607,-0.003750,0.249972,0,0);-ms-transform:matrix(0.240443,0.003607,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.240443,0.003607,-0.003750,0.249972,0,0);}
.m6f_c00402{transform:matrix(0.240808,0.002408,-0.002500,0.249988,0,0);-ms-transform:matrix(0.240808,0.002408,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.240808,0.002408,-0.002500,0.249988,0,0);}
.m17_c00402{transform:matrix(0.241232,0.001206,-0.001250,0.249997,0,0);-ms-transform:matrix(0.241232,0.001206,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.241232,0.001206,-0.001250,0.249997,0,0);}
.m2f_c00402{transform:matrix(0.241275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241275,0.000000,0.000000,0.250000,0,0);}
.m30_c00402{transform:matrix(0.241710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241710,0.000000,0.000000,0.250000,0,0);}
.mf2_c00402{transform:matrix(0.241743,0.003626,-0.003750,0.249972,0,0);-ms-transform:matrix(0.241743,0.003626,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.241743,0.003626,-0.003750,0.249972,0,0);}
.m4_c00402{transform:matrix(0.242740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242740,0.000000,0.000000,0.250000,0,0);}
.m142_c00402{transform:matrix(0.243116,-0.004619,0.004749,0.249955,0,0);-ms-transform:matrix(0.243116,-0.004619,0.004749,0.249955,0,0);-webkit-transform:matrix(0.243116,-0.004619,0.004749,0.249955,0,0);}
.m33_c00402{transform:matrix(0.243320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243320,0.000000,0.000000,0.250000,0,0);}
.m15_c00402{transform:matrix(0.243610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243610,0.000000,0.000000,0.250000,0,0);}
.mf0_c00402{transform:matrix(0.244278,0.003664,-0.003750,0.249972,0,0);-ms-transform:matrix(0.244278,0.003664,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.244278,0.003664,-0.003750,0.249972,0,0);}
.m5d_c00402{transform:matrix(0.244575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244575,0.000000,0.000000,0.250000,0,0);}
.mfc_c00402{transform:matrix(0.245067,0.003676,-0.003750,0.249972,0,0);-ms-transform:matrix(0.245067,0.003676,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.245067,0.003676,-0.003750,0.249972,0,0);}
.m5f_c00402{transform:matrix(0.246705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246705,0.000000,0.000000,0.250000,0,0);}
.m34_c00402{transform:matrix(0.247385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247385,0.000000,0.000000,0.250000,0,0);}
.m36_c00402{transform:matrix(0.247630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247630,0.000000,0.000000,0.250000,0,0);}
.mb0_c00402{transform:matrix(0.248221,0.003475,-0.003500,0.249976,0,0);-ms-transform:matrix(0.248221,0.003475,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.248221,0.003475,-0.003500,0.249976,0,0);}
.m2d_c00402{transform:matrix(0.248850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248850,0.000000,0.000000,0.250000,0,0);}
.mc5_c00402{transform:matrix(0.248919,0.001742,-0.001750,0.249994,0,0);-ms-transform:matrix(0.248919,0.001742,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.248919,0.001742,-0.001750,0.249994,0,0);}
.m31_c00402{transform:matrix(0.249365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249365,0.000000,0.000000,0.250000,0,0);}
.mf4_c00402{transform:matrix(0.249612,0.003744,-0.003750,0.249972,0,0);-ms-transform:matrix(0.249612,0.003744,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.249612,0.003744,-0.003750,0.249972,0,0);}
.mfb_c00402{transform:matrix(0.250707,0.003761,-0.003750,0.249972,0,0);-ms-transform:matrix(0.250707,0.003761,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.250707,0.003761,-0.003750,0.249972,0,0);}
.ma5_c00402{transform:matrix(0.251132,0.002511,-0.002500,0.249988,0,0);-ms-transform:matrix(0.251132,0.002511,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.251132,0.002511,-0.002500,0.249988,0,0);}
.m3e_c00402{transform:matrix(0.251625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251625,0.000000,0.000000,0.250000,0,0);}
.m11d_c00402{transform:matrix(0.251913,0.005794,-0.005748,0.249934,0,0);-ms-transform:matrix(0.251913,0.005794,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.251913,0.005794,-0.005748,0.249934,0,0);}
.mc8_c00402{transform:matrix(0.252604,0.001768,-0.001750,0.249994,0,0);-ms-transform:matrix(0.252604,0.001768,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.252604,0.001768,-0.001750,0.249994,0,0);}
.m3b_c00402{transform:matrix(0.252700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252700,0.000000,0.000000,0.250000,0,0);}
.mcb_c00402{transform:matrix(0.253099,0.001772,-0.001750,0.249994,0,0);-ms-transform:matrix(0.253099,0.001772,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.253099,0.001772,-0.001750,0.249994,0,0);}
.mae_c00402{transform:matrix(0.253565,0.003550,-0.003500,0.249976,0,0);-ms-transform:matrix(0.253565,0.003550,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.253565,0.003550,-0.003500,0.249976,0,0);}
.m13d_c00402{transform:matrix(0.254254,-0.004831,0.004749,0.249955,0,0);-ms-transform:matrix(0.254254,-0.004831,0.004749,0.249955,0,0);-webkit-transform:matrix(0.254254,-0.004831,0.004749,0.249955,0,0);}
.m32_c00402{transform:matrix(0.255575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255575,0.000000,0.000000,0.250000,0,0);}
.m72_c00402{transform:matrix(0.257807,0.002578,-0.002500,0.249988,0,0);-ms-transform:matrix(0.257807,0.002578,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.257807,0.002578,-0.002500,0.249988,0,0);}
.m3c_c00402{transform:matrix(0.258955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258955,0.000000,0.000000,0.250000,0,0);}
.m6b_c00402{transform:matrix(0.259642,0.002596,-0.002500,0.249988,0,0);-ms-transform:matrix(0.259642,0.002596,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.259642,0.002596,-0.002500,0.249988,0,0);}
.mcc_c00402{transform:matrix(0.259649,0.001818,-0.001750,0.249994,0,0);-ms-transform:matrix(0.259649,0.001818,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.259649,0.001818,-0.001750,0.249994,0,0);}
.m5b_c00402{transform:matrix(0.260580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260580,0.000000,0.000000,0.250000,0,0);}
.m5c_c00402{transform:matrix(0.261210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261210,0.000000,0.000000,0.250000,0,0);}
.mb7_c00402{transform:matrix(0.261664,0.003663,-0.003500,0.249976,0,0);-ms-transform:matrix(0.261664,0.003663,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.261664,0.003663,-0.003500,0.249976,0,0);}
.maf_c00402{transform:matrix(0.262439,0.003674,-0.003500,0.249976,0,0);-ms-transform:matrix(0.262439,0.003674,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.262439,0.003674,-0.003500,0.249976,0,0);}
.mca_c00402{transform:matrix(0.263649,0.001846,-0.001750,0.249994,0,0);-ms-transform:matrix(0.263649,0.001846,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.263649,0.001846,-0.001750,0.249994,0,0);}
.mb8_c00402{transform:matrix(0.264954,0.003709,-0.003500,0.249976,0,0);-ms-transform:matrix(0.264954,0.003709,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.264954,0.003709,-0.003500,0.249976,0,0);}
.m6d_c00402{transform:matrix(0.265172,0.002652,-0.002500,0.249988,0,0);-ms-transform:matrix(0.265172,0.002652,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.265172,0.002652,-0.002500,0.249988,0,0);}
.m117_c00402{transform:matrix(0.266420,0.006128,-0.005748,0.249934,0,0);-ms-transform:matrix(0.266420,0.006128,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.266420,0.006128,-0.005748,0.249934,0,0);}
.mb3_c00402{transform:matrix(0.267399,0.003744,-0.003500,0.249976,0,0);-ms-transform:matrix(0.267399,0.003744,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.267399,0.003744,-0.003500,0.249976,0,0);}
.mc2_c00402{transform:matrix(0.267938,0.001876,-0.001750,0.249994,0,0);-ms-transform:matrix(0.267938,0.001876,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.267938,0.001876,-0.001750,0.249994,0,0);}
.m1e_c00402{transform:matrix(0.268712,0.001344,-0.001250,0.249997,0,0);-ms-transform:matrix(0.268712,0.001344,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.268712,0.001344,-0.001250,0.249997,0,0);}
.m10c_c00402{transform:matrix(0.269327,0.006464,-0.005998,0.249928,0,0);-ms-transform:matrix(0.269327,0.006464,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.269327,0.006464,-0.005998,0.249928,0,0);}
.m60_c00402{transform:matrix(0.270895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270895,0.000000,0.000000,0.250000,0,0);}
.m134_c00402{transform:matrix(0.272201,-0.005172,0.004749,0.249955,0,0);-ms-transform:matrix(0.272201,-0.005172,0.004749,0.249955,0,0);-webkit-transform:matrix(0.272201,-0.005172,0.004749,0.249955,0,0);}
.m114_c00402{transform:matrix(0.273433,0.006289,-0.005748,0.249934,0,0);-ms-transform:matrix(0.273433,0.006289,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.273433,0.006289,-0.005748,0.249934,0,0);}
.m61_c00402{transform:matrix(0.274265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274265,0.000000,0.000000,0.250000,0,0);}
.m10f_c00402{transform:matrix(0.274611,0.006591,-0.005998,0.249928,0,0);-ms-transform:matrix(0.274611,0.006591,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.274611,0.006591,-0.005998,0.249928,0,0);}
.m16_c00402{transform:matrix(0.274692,0.001373,-0.001250,0.249997,0,0);-ms-transform:matrix(0.274692,0.001373,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.274692,0.001373,-0.001250,0.249997,0,0);}
.mc7_c00402{transform:matrix(0.275763,0.001930,-0.001750,0.249994,0,0);-ms-transform:matrix(0.275763,0.001930,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.275763,0.001930,-0.001750,0.249994,0,0);}
.m18_c00402{transform:matrix(0.276082,0.001380,-0.001250,0.249997,0,0);-ms-transform:matrix(0.276082,0.001380,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.276082,0.001380,-0.001250,0.249997,0,0);}
.m139_c00402{transform:matrix(0.276365,-0.005251,0.004749,0.249955,0,0);-ms-transform:matrix(0.276365,-0.005251,0.004749,0.249955,0,0);-webkit-transform:matrix(0.276365,-0.005251,0.004749,0.249955,0,0);}
.m63_c00402{transform:matrix(0.276755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276755,0.000000,0.000000,0.250000,0,0);}
.m1c_c00402{transform:matrix(0.277352,0.001387,-0.001250,0.249997,0,0);-ms-transform:matrix(0.277352,0.001387,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.277352,0.001387,-0.001250,0.249997,0,0);}
.mb5_c00402{transform:matrix(0.277798,0.003889,-0.003500,0.249976,0,0);-ms-transform:matrix(0.277798,0.003889,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.277798,0.003889,-0.003500,0.249976,0,0);}
.mc6_c00402{transform:matrix(0.277828,0.001945,-0.001750,0.249994,0,0);-ms-transform:matrix(0.277828,0.001945,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.277828,0.001945,-0.001750,0.249994,0,0);}
.mb1_c00402{transform:matrix(0.279833,0.003918,-0.003500,0.249976,0,0);-ms-transform:matrix(0.279833,0.003918,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.279833,0.003918,-0.003500,0.249976,0,0);}
.m19_c00402{transform:matrix(0.280351,0.001402,-0.001250,0.249997,0,0);-ms-transform:matrix(0.280351,0.001402,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.280351,0.001402,-0.001250,0.249997,0,0);}
.m128_c00402{transform:matrix(0.282070,0.006488,-0.005748,0.249934,0,0);-ms-transform:matrix(0.282070,0.006488,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.282070,0.006488,-0.005748,0.249934,0,0);}
.m3a_c00402{transform:matrix(0.282305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282305,0.000000,0.000000,0.250000,0,0);}
.m10e_c00402{transform:matrix(0.283508,0.006804,-0.005998,0.249928,0,0);-ms-transform:matrix(0.283508,0.006804,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.283508,0.006804,-0.005998,0.249928,0,0);}
.m11f_c00402{transform:matrix(0.284355,0.006540,-0.005748,0.249934,0,0);-ms-transform:matrix(0.284355,0.006540,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.284355,0.006540,-0.005748,0.249934,0,0);}
.me6_c00402{transform:matrix(0.284588,0.003130,-0.002750,0.249985,0,0);-ms-transform:matrix(0.284588,0.003130,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.284588,0.003130,-0.002750,0.249985,0,0);}
.m123_c00402{transform:matrix(0.285320,0.006562,-0.005748,0.249934,0,0);-ms-transform:matrix(0.285320,0.006562,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.285320,0.006562,-0.005748,0.249934,0,0);}
.m1d_c00402{transform:matrix(0.288706,0.001444,-0.001250,0.249997,0,0);-ms-transform:matrix(0.288706,0.001444,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.288706,0.001444,-0.001250,0.249997,0,0);}
.m65_c00402{transform:matrix(0.289505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289505,0.000000,0.000000,0.250000,0,0);}
.m113_c00402{transform:matrix(0.295527,0.006797,-0.005748,0.249934,0,0);-ms-transform:matrix(0.295527,0.006797,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.295527,0.006797,-0.005748,0.249934,0,0);}
.m1a_c00402{transform:matrix(0.296486,0.001482,-0.001250,0.249997,0,0);-ms-transform:matrix(0.296486,0.001482,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.296486,0.001482,-0.001250,0.249997,0,0);}
.m135_c00402{transform:matrix(0.296486,-0.005633,0.004749,0.249955,0,0);-ms-transform:matrix(0.296486,-0.005633,0.004749,0.249955,0,0);-webkit-transform:matrix(0.296486,-0.005633,0.004749,0.249955,0,0);}
.mc9_c00402{transform:matrix(0.304133,0.002129,-0.001750,0.249994,0,0);-ms-transform:matrix(0.304133,0.002129,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.304133,0.002129,-0.001750,0.249994,0,0);}
.m11e_c00402{transform:matrix(0.306729,0.007055,-0.005748,0.249934,0,0);-ms-transform:matrix(0.306729,0.007055,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.306729,0.007055,-0.005748,0.249934,0,0);}
.mc4_c00402{transform:matrix(0.307012,0.002149,-0.001750,0.249994,0,0);-ms-transform:matrix(0.307012,0.002149,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.307012,0.002149,-0.001750,0.249994,0,0);}
.m1b_c00402{transform:matrix(0.311606,0.001558,-0.001250,0.249997,0,0);-ms-transform:matrix(0.311606,0.001558,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.311606,0.001558,-0.001250,0.249997,0,0);}
.m120_c00402{transform:matrix(0.324339,0.007460,-0.005748,0.249934,0,0);-ms-transform:matrix(0.324339,0.007460,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.324339,0.007460,-0.005748,0.249934,0,0);}
.m122_c00402{transform:matrix(0.337261,0.007757,-0.005748,0.249934,0,0);-ms-transform:matrix(0.337261,0.007757,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.337261,0.007757,-0.005748,0.249934,0,0);}
.m11b_c00402{transform:matrix(0.337526,0.007763,-0.005748,0.249934,0,0);-ms-transform:matrix(0.337526,0.007763,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.337526,0.007763,-0.005748,0.249934,0,0);}
.m124_c00402{transform:matrix(0.337716,0.007767,-0.005748,0.249934,0,0);-ms-transform:matrix(0.337716,0.007767,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.337716,0.007767,-0.005748,0.249934,0,0);}
.m11c_c00402{transform:matrix(0.340620,0.007834,-0.005748,0.249934,0,0);-ms-transform:matrix(0.340620,0.007834,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.340620,0.007834,-0.005748,0.249934,0,0);}
.m127_c00402{transform:matrix(0.346863,0.007978,-0.005748,0.249934,0,0);-ms-transform:matrix(0.346863,0.007978,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.346863,0.007978,-0.005748,0.249934,0,0);}
.m12d_c00402{transform:matrix(0.348273,0.008010,-0.005748,0.249934,0,0);-ms-transform:matrix(0.348273,0.008010,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.348273,0.008010,-0.005748,0.249934,0,0);}
.m103_c00402{transform:matrix(0.353528,0.008485,-0.005998,0.249928,0,0);-ms-transform:matrix(0.353528,0.008485,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.353528,0.008485,-0.005998,0.249928,0,0);}
.m121_c00402{transform:matrix(0.354531,0.008154,-0.005748,0.249934,0,0);-ms-transform:matrix(0.354531,0.008154,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.354531,0.008154,-0.005748,0.249934,0,0);}
.m39_c00402{transform:matrix(0.365870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365870,0.000000,0.000000,0.250000,0,0);}
.m118_c00402{transform:matrix(0.366733,0.008435,-0.005748,0.249934,0,0);-ms-transform:matrix(0.366733,0.008435,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.366733,0.008435,-0.005748,0.249934,0,0);}
.m129_c00402{transform:matrix(0.375381,0.008634,-0.005748,0.249934,0,0);-ms-transform:matrix(0.375381,0.008634,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.375381,0.008634,-0.005748,0.249934,0,0);}
.m125_c00402{transform:matrix(0.378635,0.008709,-0.005748,0.249934,0,0);-ms-transform:matrix(0.378635,0.008709,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.378635,0.008709,-0.005748,0.249934,0,0);}
.m12a_c00402{transform:matrix(0.399234,0.009182,-0.005748,0.249934,0,0);-ms-transform:matrix(0.399234,0.009182,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.399234,0.009182,-0.005748,0.249934,0,0);}
.m130_c00402{transform:matrix(0.404393,0.009301,-0.005748,0.249934,0,0);-ms-transform:matrix(0.404393,0.009301,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.404393,0.009301,-0.005748,0.249934,0,0);}
.m12f_c00402{transform:matrix(0.409092,0.009409,-0.005748,0.249934,0,0);-ms-transform:matrix(0.409092,0.009409,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.409092,0.009409,-0.005748,0.249934,0,0);}
.m110_c00402{transform:matrix(0.421559,0.010117,-0.005998,0.249928,0,0);-ms-transform:matrix(0.421559,0.010117,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.421559,0.010117,-0.005998,0.249928,0,0);}
.m111_c00402{transform:matrix(0.448126,0.010755,-0.005998,0.249928,0,0);-ms-transform:matrix(0.448126,0.010755,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.448126,0.010755,-0.005998,0.249928,0,0);}
.m141_c00402{transform:matrix(0.456973,-0.008682,0.004749,0.249955,0,0);-ms-transform:matrix(0.456973,-0.008682,0.004749,0.249955,0,0);-webkit-transform:matrix(0.456973,-0.008682,0.004749,0.249955,0,0);}
.m116_c00402{transform:matrix(0.460963,0.010602,-0.005748,0.249934,0,0);-ms-transform:matrix(0.460963,0.010602,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.460963,0.010602,-0.005748,0.249934,0,0);}
.m13e_c00402{transform:matrix(0.515182,-0.009788,0.004749,0.249955,0,0);-ms-transform:matrix(0.515182,-0.009788,0.004749,0.249955,0,0);-webkit-transform:matrix(0.515182,-0.009788,0.004749,0.249955,0,0);}
.m12e_c00402{transform:matrix(0.518093,0.011916,-0.005748,0.249934,0,0);-ms-transform:matrix(0.518093,0.011916,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.518093,0.011916,-0.005748,0.249934,0,0);}
.m12c_c00402{transform:matrix(0.526671,0.012113,-0.005748,0.249934,0,0);-ms-transform:matrix(0.526671,0.012113,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.526671,0.012113,-0.005748,0.249934,0,0);}
.m126_c00402{transform:matrix(0.527915,0.012142,-0.005748,0.249934,0,0);-ms-transform:matrix(0.527915,0.012142,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.527915,0.012142,-0.005748,0.249934,0,0);}
.m0_c00402{transform:matrix(0.555710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555710,0.000000,0.000000,0.250000,0,0);}
.m12b_c00402{transform:matrix(0.646064,0.014859,-0.005748,0.249934,0,0);-ms-transform:matrix(0.646064,0.014859,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.646064,0.014859,-0.005748,0.249934,0,0);}
.m133_c00402{transform:matrix(0.743141,-0.014120,0.004749,0.249955,0,0);-ms-transform:matrix(0.743141,-0.014120,0.004749,0.249955,0,0);-webkit-transform:matrix(0.743141,-0.014120,0.004749,0.249955,0,0);}
.m1_c00402{transform:matrix(0.750720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.750720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.750720,0.000000,0.000000,0.250000,0,0);}
.m112_c00402{transform:matrix(1.372180,0.032932,-0.005998,0.249928,0,0);-ms-transform:matrix(1.372180,0.032932,-0.005998,0.249928,0,0);-webkit-transform:matrix(1.372180,0.032932,-0.005998,0.249928,0,0);}
.v0_c00402{vertical-align:0.000000px;}
.ls0_c00402{letter-spacing:0.000000px;}
.sc__c00402{text-shadow:none;}
.sc0_c00402{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__c00402{-webkit-text-stroke:0px transparent;}
.sc0_c00402{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00402{word-spacing:0.000000px;}
._0_c00402{width:46.205129px;}
.fc0_c00402{color:transparent;}
.fs0_c00402{font-size:24.000000px;}
.fs17_c00402{font-size:60.015868px;}
.fs15_c00402{font-size:60.017278px;}
.fs14_c00402{font-size:66.019005px;}
.fs6_c00402{font-size:72.000000px;}
.fs2_c00402{font-size:72.000900px;}
.fse_c00402{font-size:72.001764px;}
.fsc_c00402{font-size:72.007056px;}
.fs16_c00402{font-size:72.019041px;}
.fs13_c00402{font-size:72.020733px;}
.fs4_c00402{font-size:78.000000px;}
.fs7_c00402{font-size:78.003900px;}
.fs1_c00402{font-size:84.000000px;}
.fs10_c00402{font-size:84.005082px;}
.fs11_c00402{font-size:84.009449px;}
.fs12_c00402{font-size:84.024189px;}
.fs3_c00402{font-size:90.001125px;}
.fs8_c00402{font-size:90.004500px;}
.fsd_c00402{font-size:90.008820px;}
.fs19_c00402{font-size:90.016244px;}
.fs5_c00402{font-size:102.000000px;}
.fsf_c00402{font-size:102.002499px;}
.fsa_c00402{font-size:102.005100px;}
.fsb_c00402{font-size:108.005400px;}
.fs18_c00402{font-size:108.019492px;}
.fs9_c00402{font-size:114.005700px;}
.y0_c00402{bottom:0.000000px;}
.y106_c00402{bottom:78.647237px;}
.y107_c00402{bottom:78.647728px;}
.y105_c00402{bottom:78.647861px;}
.y103_c00402{bottom:78.647910px;}
.y100_c00402{bottom:78.648200px;}
.y108_c00402{bottom:78.648459px;}
.y101_c00402{bottom:78.648521px;}
.y104_c00402{bottom:78.648546px;}
.y102_c00402{bottom:78.648595px;}
.yf7_c00402{bottom:134.193000px;}
.yf8_c00402{bottom:135.654794px;}
.yf9_c00402{bottom:136.931138px;}
.yf6_c00402{bottom:139.717841px;}
.yf5_c00402{bottom:140.136296px;}
.yf4_c00402{bottom:140.486773px;}
.yfa_c00402{bottom:140.888647px;}
.yf3_c00402{bottom:141.444955px;}
.yfb_c00402{bottom:141.780527px;}
.yf2_c00402{bottom:141.821469px;}
.yfc_c00402{bottom:142.375008px;}
.yf1_c00402{bottom:142.580396px;}
.yf0_c00402{bottom:143.329316px;}
.yfd_c00402{bottom:143.446010px;}
.yfe_c00402{bottom:143.667540px;}
.yef_c00402{bottom:144.283289px;}
.yee_c00402{bottom:144.811404px;}
.yff_c00402{bottom:145.139280px;}
.yed_c00402{bottom:146.120358px;}
.yec_c00402{bottom:147.239063px;}
.yeb_c00402{bottom:147.955650px;}
.yea_c00402{bottom:162.602054px;}
.ye9_c00402{bottom:162.809778px;}
.ye8_c00402{bottom:163.011666px;}
.ye7_c00402{bottom:163.241193px;}
.ye6_c00402{bottom:163.541767px;}
.ye5_c00402{bottom:163.747230px;}
.ye4_c00402{bottom:165.532115px;}
.ye3_c00402{bottom:165.871470px;}
.ye2_c00402{bottom:166.135563px;}
.ye1_c00402{bottom:166.588101px;}
.ye0_c00402{bottom:170.276220px;}
.ydf_c00402{bottom:171.293694px;}
.yde_c00402{bottom:172.341838px;}
.ydd_c00402{bottom:172.839087px;}
.ydc_c00402{bottom:174.357570px;}
.ydb_c00402{bottom:174.865514px;}
.yda_c00402{bottom:176.129525px;}
.yd9_c00402{bottom:177.667500px;}
.yd8_c00402{bottom:187.458552px;}
.yd6_c00402{bottom:220.837296px;}
.yd7_c00402{bottom:220.837836px;}
.yd5_c00402{bottom:245.801676px;}
.yd4_c00402{bottom:247.526472px;}
.yd3_c00402{bottom:248.017476px;}
.yd2_c00402{bottom:250.221984px;}
.yd1_c00402{bottom:250.693128px;}
.yd0_c00402{bottom:252.378504px;}
.ycf_c00402{bottom:254.293620px;}
.yce_c00402{bottom:256.029252px;}
.ycd_c00402{bottom:256.479396px;}
.ycc_c00402{bottom:258.651012px;}
.ycb_c00402{bottom:279.260172px;}
.yca_c00402{bottom:281.938608px;}
.yc9_c00402{bottom:282.728160px;}
.yc8_c00402{bottom:285.128172px;}
.yc7_c00402{bottom:285.693948px;}
.yc6_c00402{bottom:287.792244px;}
.yc5_c00402{bottom:289.099908px;}
.yc4_c00402{bottom:290.687364px;}
.yc3_c00402{bottom:293.345892px;}
.yc2_c00402{bottom:295.389000px;}
.yc1_c00402{bottom:321.822593px;}
.yc0_c00402{bottom:322.297380px;}
.ybf_c00402{bottom:322.461038px;}
.ybe_c00402{bottom:323.083005px;}
.ybd_c00402{bottom:323.853585px;}
.ybc_c00402{bottom:324.470453px;}
.ybb_c00402{bottom:325.473615px;}
.yba_c00402{bottom:325.634595px;}
.yb9_c00402{bottom:326.246498px;}
.yb8_c00402{bottom:326.399828px;}
.yb7_c00402{bottom:326.696498px;}
.yb6_c00402{bottom:345.437490px;}
.yb5_c00402{bottom:346.600245px;}
.yb4_c00402{bottom:346.931693px;}
.yb3_c00402{bottom:347.596725px;}
.yb2_c00402{bottom:347.928240px;}
.yb1_c00402{bottom:349.257518px;}
.yb0_c00402{bottom:351.084113px;}
.yaf_c00402{bottom:351.582015px;}
.yae_c00402{bottom:353.036775px;}
.yad_c00402{bottom:353.725073px;}
.yac_c00402{bottom:354.684270px;}
.yab_c00402{bottom:355.323000px;}
.yaa_c00402{bottom:388.309809px;}
.ya9_c00402{bottom:389.037871px;}
.ya8_c00402{bottom:389.408874px;}
.ya7_c00402{bottom:389.664310px;}
.ya6_c00402{bottom:390.508368px;}
.ya5_c00402{bottom:390.870691px;}
.ya4_c00402{bottom:391.717290px;}
.ya3_c00402{bottom:392.091691px;}
.ya2_c00402{bottom:392.459592px;}
.ya1_c00402{bottom:393.291604px;}
.ya0_c00402{bottom:393.567435px;}
.y9f_c00402{bottom:394.646914px;}
.y9e_c00402{bottom:395.236377px;}
.y9d_c00402{bottom:395.821500px;}
.y9c_c00402{bottom:425.491197px;}
.y9b_c00402{bottom:426.103200px;}
.y9a_c00402{bottom:426.331880px;}
.y99_c00402{bottom:426.881954px;}
.y98_c00402{bottom:427.033353px;}
.y97_c00402{bottom:427.496256px;}
.y96_c00402{bottom:428.189917px;}
.y95_c00402{bottom:429.040491px;}
.y94_c00402{bottom:429.507269px;}
.y93_c00402{bottom:429.730247px;}
.y92_c00402{bottom:430.110000px;}
.y91_c00402{bottom:461.979381px;}
.y90_c00402{bottom:462.393879px;}
.y8f_c00402{bottom:462.626307px;}
.y8e_c00402{bottom:463.083750px;}
.y8d_c00402{bottom:463.344581px;}
.y8c_c00402{bottom:463.558224px;}
.y8b_c00402{bottom:463.798264px;}
.y8a_c00402{bottom:464.646906px;}
.y89_c00402{bottom:465.340588px;}
.y88_c00402{bottom:465.571242px;}
.y87_c00402{bottom:466.331011px;}
.y86_c00402{bottom:466.491619px;}
.y85_c00402{bottom:467.100000px;}
.y80_c00402{bottom:497.564376px;}
.y7f_c00402{bottom:497.564826px;}
.y81_c00402{bottom:497.564859px;}
.y84_c00402{bottom:497.565072px;}
.y82_c00402{bottom:497.565186px;}
.y7e_c00402{bottom:497.565240px;}
.y7d_c00402{bottom:497.565333px;}
.y83_c00402{bottom:497.565648px;}
.y7c_c00402{bottom:497.565969px;}
.y7b_c00402{bottom:530.981958px;}
.y7a_c00402{bottom:531.908184px;}
.y79_c00402{bottom:532.395237px;}
.y78_c00402{bottom:533.628609px;}
.y77_c00402{bottom:533.949342px;}
.y76_c00402{bottom:535.015932px;}
.y75_c00402{bottom:535.488327px;}
.y74_c00402{bottom:537.329439px;}
.y73_c00402{bottom:537.813489px;}
.y72_c00402{bottom:538.577406px;}
.y71_c00402{bottom:539.193000px;}
.y69_c00402{bottom:570.488175px;}
.y6a_c00402{bottom:570.488190px;}
.y6c_c00402{bottom:570.488550px;}
.y6b_c00402{bottom:570.488805px;}
.y6d_c00402{bottom:570.488880px;}
.y70_c00402{bottom:570.489000px;}
.y6e_c00402{bottom:570.489210px;}
.y6f_c00402{bottom:570.489540px;}
.y68_c00402{bottom:602.205420px;}
.y67_c00402{bottom:603.680100px;}
.y66_c00402{bottom:604.417125px;}
.y65_c00402{bottom:604.654620px;}
.y64_c00402{bottom:605.753880px;}
.y63_c00402{bottom:606.226410px;}
.y62_c00402{bottom:606.594510px;}
.y61_c00402{bottom:607.809915px;}
.y60_c00402{bottom:608.192610px;}
.y5f_c00402{bottom:608.534475px;}
.y5e_c00402{bottom:609.387120px;}
.y5d_c00402{bottom:638.260380px;}
.y5c_c00402{bottom:639.179955px;}
.y5b_c00402{bottom:640.531065px;}
.y5a_c00402{bottom:641.986440px;}
.y59_c00402{bottom:642.391485px;}
.y58_c00402{bottom:643.178040px;}
.y57_c00402{bottom:643.702410px;}
.y56_c00402{bottom:644.221965px;}
.y55_c00402{bottom:644.619420px;}
.y54_c00402{bottom:645.567930px;}
.y53_c00402{bottom:667.498185px;}
.y52_c00402{bottom:668.210640px;}
.y51_c00402{bottom:669.071595px;}
.y50_c00402{bottom:669.547065px;}
.y4f_c00402{bottom:670.526505px;}
.y4e_c00402{bottom:671.031975px;}
.y4d_c00402{bottom:671.388960px;}
.y4c_c00402{bottom:672.131415px;}
.y4b_c00402{bottom:672.606885px;}
.y4a_c00402{bottom:672.963870px;}
.y49_c00402{bottom:674.279895px;}
.y48_c00402{bottom:674.649960px;}
.y47_c00402{bottom:674.999805px;}
.y46_c00402{bottom:709.059900px;}
.y45_c00402{bottom:709.674870px;}
.y44_c00402{bottom:709.787550px;}
.y43_c00402{bottom:710.008515px;}
.y42_c00402{bottom:710.498175px;}
.y41_c00402{bottom:710.777955px;}
.y40_c00402{bottom:711.270180px;}
.y3f_c00402{bottom:711.436965px;}
.y3e_c00402{bottom:711.880005px;}
.y3d_c00402{bottom:712.257795px;}
.y3c_c00402{bottom:745.270920px;}
.y3b_c00402{bottom:745.529085px;}
.y3a_c00402{bottom:746.133045px;}
.y39_c00402{bottom:746.327730px;}
.y38_c00402{bottom:747.001215px;}
.y37_c00402{bottom:747.266895px;}
.y36_c00402{bottom:747.787245px;}
.y35_c00402{bottom:748.314915px;}
.y34_c00402{bottom:748.581870px;}
.y33_c00402{bottom:748.979190px;}
.y32_c00402{bottom:780.700800px;}
.y31_c00402{bottom:781.697190px;}
.y30_c00402{bottom:782.364240px;}
.y2f_c00402{bottom:782.696190px;}
.y2e_c00402{bottom:783.352425px;}
.y2d_c00402{bottom:783.692640px;}
.y2c_c00402{bottom:783.927630px;}
.y2b_c00402{bottom:784.246215px;}
.y2a_c00402{bottom:785.355945px;}
.y29_c00402{bottom:785.784960px;}
.y28_c00402{bottom:786.241500px;}
.y27_c00402{bottom:819.007500px;}
.y26_c00402{bottom:852.873000px;}
.y25_c00402{bottom:853.038000px;}
.y24_c00402{bottom:853.428000px;}
.y23_c00402{bottom:853.591500px;}
.y22_c00402{bottom:853.983000px;}
.y21_c00402{bottom:854.476500px;}
.y20_c00402{bottom:854.701500px;}
.y1f_c00402{bottom:854.910000px;}
.y1e_c00402{bottom:855.193500px;}
.y1d_c00402{bottom:855.306000px;}
.y1c_c00402{bottom:855.739500px;}
.y1b_c00402{bottom:855.901500px;}
.y1a_c00402{bottom:888.675000px;}
.y19_c00402{bottom:923.763000px;}
.y18_c00402{bottom:959.133000px;}
.y17_c00402{bottom:995.490000px;}
.y16_c00402{bottom:1030.437622px;}
.y15_c00402{bottom:1030.905945px;}
.y14_c00402{bottom:1031.446552px;}
.y13_c00402{bottom:1031.757727px;}
.y12_c00402{bottom:1032.533347px;}
.y11_c00402{bottom:1032.996120px;}
.y10_c00402{bottom:1033.305937px;}
.yf_c00402{bottom:1033.535377px;}
.ye_c00402{bottom:1034.384527px;}
.yd_c00402{bottom:1034.909745px;}
.yc_c00402{bottom:1065.517230px;}
.yb_c00402{bottom:1066.397573px;}
.y9_c00402{bottom:1066.595932px;}
.ya_c00402{bottom:1066.600095px;}
.y8_c00402{bottom:1066.899698px;}
.y7_c00402{bottom:1067.450497px;}
.y6_c00402{bottom:1067.999947px;}
.y5_c00402{bottom:1068.491317px;}
.y4_c00402{bottom:1068.660000px;}
.y3_c00402{bottom:1101.973500px;}
.y2_c00402{bottom:1138.423500px;}
.y1_c00402{bottom:1214.025000px;}
.h2_c00402{height:24.000000px;}
.h19_c00402{height:60.015868px;}
.h17_c00402{height:60.017278px;}
.h16_c00402{height:66.019005px;}
.h8_c00402{height:72.000000px;}
.h4_c00402{height:72.000900px;}
.h10_c00402{height:72.001764px;}
.he_c00402{height:72.007056px;}
.h18_c00402{height:72.019041px;}
.h15_c00402{height:72.020733px;}
.h6_c00402{height:78.000000px;}
.h9_c00402{height:78.003900px;}
.h3_c00402{height:84.000000px;}
.h12_c00402{height:84.005082px;}
.h13_c00402{height:84.009449px;}
.h14_c00402{height:84.024189px;}
.h5_c00402{height:90.001125px;}
.ha_c00402{height:90.004500px;}
.hf_c00402{height:90.008820px;}
.h1b_c00402{height:90.016244px;}
.h7_c00402{height:102.000000px;}
.h11_c00402{height:102.002499px;}
.hc_c00402{height:102.005100px;}
.hd_c00402{height:108.005400px;}
.h1a_c00402{height:108.019492px;}
.hb_c00402{height:114.005700px;}
.h1_c00402{height:1251.000000px;}
.h0_c00402{height:1251.150000px;}
.w0_c00402{width:915.000000px;}
.x0_c00402{left:0.000000px;}
.x4f_c00402{left:157.258335px;}
.x51_c00402{left:158.627700px;}
.x3_c00402{left:159.840000px;}
.x33_c00402{left:160.920000px;}
.x6c_c00402{left:183.608268px;}
.x3a_c00402{left:192.433500px;}
.x14_c00402{left:193.516500px;}
.x66_c00402{left:202.722015px;}
.x34_c00402{left:203.850000px;}
.x58_c00402{left:213.563019px;}
.x4_c00402{left:225.450000px;}
.x18_c00402{left:235.605022px;}
.x20_c00402{left:237.060000px;}
.x27_c00402{left:246.510000px;}
.x6a_c00402{left:259.004076px;}
.x41_c00402{left:267.969000px;}
.x2e_c00402{left:269.190000px;}
.x35_c00402{left:279.720000px;}
.x76_c00402{left:280.803089px;}
.x21_c00402{left:290.520000px;}
.x15_c00402{left:291.790500px;}
.x3b_c00402{left:301.518000px;}
.x40_c00402{left:304.023000px;}
.xe_c00402{left:312.930000px;}
.x63_c00402{left:313.950000px;}
.x22_c00402{left:323.460000px;}
.x67_c00402{left:334.985377px;}
.x2f_c00402{left:336.150000px;}
.x5_c00402{left:345.060000px;}
.xf_c00402{left:346.410000px;}
.x19_c00402{left:356.833807px;}
.x3c_c00402{left:358.222500px;}
.x61_c00402{left:365.710500px;}
.x54_c00402{left:367.252500px;}
.x30_c00402{left:368.550000px;}
.x4a_c00402{left:377.755245px;}
.x1a_c00402{left:389.521477px;}
.x62_c00402{left:390.786000px;}
.x3d_c00402{left:400.066500px;}
.x10_c00402{left:401.760000px;}
.x36_c00402{left:411.750000px;}
.x72_c00402{left:413.487000px;}
.x4b_c00402{left:420.951810px;}
.x1_c00402{left:422.550000px;}
.x28_c00402{left:423.900000px;}
.x1b_c00402{left:433.784535px;}
.x31_c00402{left:444.420000px;}
.x52_c00402{left:445.508445px;}
.x2_c00402{left:446.580000px;}
.x50_c00402{left:455.851380px;}
.x29_c00402{left:457.110000px;}
.x6_c00402{left:466.560000px;}
.x37_c00402{left:467.640000px;}
.x70_c00402{left:477.177135px;}
.x68_c00402{left:478.380090px;}
.x23_c00402{left:489.240000px;}
.x1c_c00402{left:499.938375px;}
.x5b_c00402{left:510.747000px;}
.x11_c00402{left:512.460000px;}
.x4c_c00402{left:520.844805px;}
.x42_c00402{left:522.855000px;}
.x55_c00402{left:533.335500px;}
.x24_c00402{left:543.780000px;}
.x6d_c00402{left:544.903500px;}
.x12_c00402{left:555.660000px;}
.x43_c00402{left:556.876500px;}
.x64_c00402{left:565.900500px;}
.x38_c00402{left:567.540000px;}
.x16_c00402{left:572.593500px;}
.x2a_c00402{left:576.990000px;}
.x7_c00402{left:578.340000px;}
.x32_c00402{left:588.060000px;}
.x6e_c00402{left:589.141500px;}
.x5f_c00402{left:599.274000px;}
.x45_c00402{left:601.230225px;}
.x48_c00402{left:610.139460px;}
.x8_c00402{left:611.280000px;}
.x59_c00402{left:621.033861px;}
.x3e_c00402{left:622.275000px;}
.x53_c00402{left:623.447235px;}
.x5c_c00402{left:631.981500px;}
.x13_c00402{left:633.960000px;}
.x56_c00402{left:643.263000px;}
.x71_c00402{left:645.485319px;}
.x1d_c00402{left:655.195822px;}
.x6b_c00402{left:665.874552px;}
.x9_c00402{left:666.900000px;}
.x73_c00402{left:668.718000px;}
.x49_c00402{left:677.107320px;}
.x2b_c00402{left:689.040000px;}
.x5d_c00402{left:696.793500px;}
.x4d_c00402{left:699.031020px;}
.xa_c00402{left:711.450000px;}
.x6f_c00402{left:717.396591px;}
.x5a_c00402{left:720.672891px;}
.x39_c00402{left:721.710000px;}
.x1e_c00402{left:732.416550px;}
.x46_c00402{left:734.350050px;}
.x65_c00402{left:743.052000px;}
.xb_c00402{left:744.390000px;}
.x25_c00402{left:754.920000px;}
.x74_c00402{left:756.375000px;}
.x3f_c00402{left:765.858000px;}
.x75_c00402{left:768.034500px;}
.x47_c00402{left:777.268260px;}
.x17_c00402{left:788.334000px;}
.xc_c00402{left:789.480000px;}
.x1f_c00402{left:799.380382px;}
.x2c_c00402{left:811.080000px;}
.x60_c00402{left:819.582000px;}
.x44_c00402{left:822.039000px;}
.x26_c00402{left:823.230000px;}
.xd_c00402{left:833.490000px;}
.x4e_c00402{left:842.120595px;}
.x2d_c00402{left:844.560000px;}
.x57_c00402{left:855.219000px;}
.x69_c00402{left:856.749495px;}
.x5e_c00402{left:891.822000px;}
@media print{
.v0_c00402{vertical-align:0.000000pt;}
.ls0_c00402{letter-spacing:0.000000pt;}
.ws0_c00402{word-spacing:0.000000pt;}
._0_c00402{width:41.071225pt;}
.fs0_c00402{font-size:21.333333pt;}
.fs17_c00402{font-size:53.347438pt;}
.fs15_c00402{font-size:53.348691pt;}
.fs14_c00402{font-size:58.683560pt;}
.fs6_c00402{font-size:64.000000pt;}
.fs2_c00402{font-size:64.000800pt;}
.fse_c00402{font-size:64.001568pt;}
.fsc_c00402{font-size:64.006272pt;}
.fs16_c00402{font-size:64.016926pt;}
.fs13_c00402{font-size:64.018429pt;}
.fs4_c00402{font-size:69.333333pt;}
.fs7_c00402{font-size:69.336800pt;}
.fs1_c00402{font-size:74.666667pt;}
.fs10_c00402{font-size:74.671184pt;}
.fs11_c00402{font-size:74.675066pt;}
.fs12_c00402{font-size:74.688168pt;}
.fs3_c00402{font-size:80.001000pt;}
.fs8_c00402{font-size:80.004000pt;}
.fsd_c00402{font-size:80.007840pt;}
.fs19_c00402{font-size:80.014439pt;}
.fs5_c00402{font-size:90.666667pt;}
.fsf_c00402{font-size:90.668888pt;}
.fsa_c00402{font-size:90.671200pt;}
.fsb_c00402{font-size:96.004800pt;}
.fs18_c00402{font-size:96.017326pt;}
.fs9_c00402{font-size:101.338400pt;}
.y0_c00402{bottom:0.000000pt;}
.y106_c00402{bottom:69.908655pt;}
.y107_c00402{bottom:69.909092pt;}
.y105_c00402{bottom:69.909209pt;}
.y103_c00402{bottom:69.909253pt;}
.y100_c00402{bottom:69.909511pt;}
.y108_c00402{bottom:69.909741pt;}
.y101_c00402{bottom:69.909796pt;}
.y104_c00402{bottom:69.909819pt;}
.y102_c00402{bottom:69.909863pt;}
.yf7_c00402{bottom:119.282667pt;}
.yf8_c00402{bottom:120.582039pt;}
.yf9_c00402{bottom:121.716567pt;}
.yf6_c00402{bottom:124.193636pt;}
.yf5_c00402{bottom:124.565596pt;}
.yf4_c00402{bottom:124.877132pt;}
.yfa_c00402{bottom:125.234353pt;}
.yf3_c00402{bottom:125.728849pt;}
.yfb_c00402{bottom:126.027135pt;}
.yf2_c00402{bottom:126.063528pt;}
.yfc_c00402{bottom:126.555563pt;}
.yf1_c00402{bottom:126.738129pt;}
.yf0_c00402{bottom:127.403836pt;}
.yfd_c00402{bottom:127.507564pt;}
.yfe_c00402{bottom:127.704480pt;}
.yef_c00402{bottom:128.251812pt;}
.yee_c00402{bottom:128.721248pt;}
.yff_c00402{bottom:129.012693pt;}
.yed_c00402{bottom:129.884763pt;}
.yec_c00402{bottom:130.879167pt;}
.yeb_c00402{bottom:131.516133pt;}
.yea_c00402{bottom:144.535159pt;}
.ye9_c00402{bottom:144.719803pt;}
.ye8_c00402{bottom:144.899259pt;}
.ye7_c00402{bottom:145.103283pt;}
.ye6_c00402{bottom:145.370460pt;}
.ye5_c00402{bottom:145.553093pt;}
.ye4_c00402{bottom:147.139657pt;}
.ye3_c00402{bottom:147.441307pt;}
.ye2_c00402{bottom:147.676056pt;}
.ye1_c00402{bottom:148.078312pt;}
.ye0_c00402{bottom:151.356640pt;}
.ydf_c00402{bottom:152.261061pt;}
.yde_c00402{bottom:153.192745pt;}
.ydd_c00402{bottom:153.634744pt;}
.ydc_c00402{bottom:154.984507pt;}
.ydb_c00402{bottom:155.436012pt;}
.yda_c00402{bottom:156.559577pt;}
.yd9_c00402{bottom:157.926667pt;}
.yd8_c00402{bottom:166.629824pt;}
.yd6_c00402{bottom:196.299819pt;}
.yd7_c00402{bottom:196.300299pt;}
.yd5_c00402{bottom:218.490379pt;}
.yd4_c00402{bottom:220.023531pt;}
.yd3_c00402{bottom:220.459979pt;}
.yd2_c00402{bottom:222.419541pt;}
.yd1_c00402{bottom:222.838336pt;}
.yd0_c00402{bottom:224.336448pt;}
.ycf_c00402{bottom:226.038773pt;}
.yce_c00402{bottom:227.581557pt;}
.ycd_c00402{bottom:227.981685pt;}
.ycc_c00402{bottom:229.912011pt;}
.ycb_c00402{bottom:248.231264pt;}
.yca_c00402{bottom:250.612096pt;}
.yc9_c00402{bottom:251.313920pt;}
.yc8_c00402{bottom:253.447264pt;}
.yc7_c00402{bottom:253.950176pt;}
.yc6_c00402{bottom:255.815328pt;}
.yc5_c00402{bottom:256.977696pt;}
.yc4_c00402{bottom:258.388768pt;}
.yc3_c00402{bottom:260.751904pt;}
.yc2_c00402{bottom:262.568000pt;}
.yc1_c00402{bottom:286.064527pt;}
.yc0_c00402{bottom:286.486560pt;}
.ybf_c00402{bottom:286.632033pt;}
.ybe_c00402{bottom:287.184893pt;}
.ybd_c00402{bottom:287.869853pt;}
.ybc_c00402{bottom:288.418180pt;}
.ybb_c00402{bottom:289.309880pt;}
.yba_c00402{bottom:289.452973pt;}
.yb9_c00402{bottom:289.996887pt;}
.yb8_c00402{bottom:290.133180pt;}
.yb7_c00402{bottom:290.396887pt;}
.yb6_c00402{bottom:307.055547pt;}
.yb5_c00402{bottom:308.089107pt;}
.yb4_c00402{bottom:308.383727pt;}
.yb3_c00402{bottom:308.974867pt;}
.yb2_c00402{bottom:309.269547pt;}
.yb1_c00402{bottom:310.451127pt;}
.yb0_c00402{bottom:312.074767pt;}
.yaf_c00402{bottom:312.517347pt;}
.yae_c00402{bottom:313.810467pt;}
.yad_c00402{bottom:314.422287pt;}
.yac_c00402{bottom:315.274907pt;}
.yab_c00402{bottom:315.842667pt;}
.yaa_c00402{bottom:345.164275pt;}
.ya9_c00402{bottom:345.811441pt;}
.ya8_c00402{bottom:346.141221pt;}
.ya7_c00402{bottom:346.368276pt;}
.ya6_c00402{bottom:347.118549pt;}
.ya5_c00402{bottom:347.440615pt;}
.ya4_c00402{bottom:348.193147pt;}
.ya3_c00402{bottom:348.525948pt;}
.ya2_c00402{bottom:348.852971pt;}
.ya1_c00402{bottom:349.592537pt;}
.ya0_c00402{bottom:349.837720pt;}
.y9f_c00402{bottom:350.797257pt;}
.y9e_c00402{bottom:351.321224pt;}
.y9d_c00402{bottom:351.841333pt;}
.y9c_c00402{bottom:378.214397pt;}
.y9b_c00402{bottom:378.758400pt;}
.y9a_c00402{bottom:378.961671pt;}
.y99_c00402{bottom:379.450625pt;}
.y98_c00402{bottom:379.585203pt;}
.y97_c00402{bottom:379.996672pt;}
.y96_c00402{bottom:380.613260pt;}
.y95_c00402{bottom:381.369325pt;}
.y94_c00402{bottom:381.784239pt;}
.y93_c00402{bottom:381.982441pt;}
.y92_c00402{bottom:382.320000pt;}
.y91_c00402{bottom:410.648339pt;}
.y90_c00402{bottom:411.016781pt;}
.y8f_c00402{bottom:411.223384pt;}
.y8e_c00402{bottom:411.630000pt;}
.y8d_c00402{bottom:411.861849pt;}
.y8c_c00402{bottom:412.051755pt;}
.y8b_c00402{bottom:412.265124pt;}
.y8a_c00402{bottom:413.019472pt;}
.y89_c00402{bottom:413.636079pt;}
.y88_c00402{bottom:413.841104pt;}
.y87_c00402{bottom:414.516455pt;}
.y86_c00402{bottom:414.659217pt;}
.y85_c00402{bottom:415.200000pt;}
.y80_c00402{bottom:442.279445pt;}
.y7f_c00402{bottom:442.279845pt;}
.y81_c00402{bottom:442.279875pt;}
.y84_c00402{bottom:442.280064pt;}
.y82_c00402{bottom:442.280165pt;}
.y7e_c00402{bottom:442.280213pt;}
.y7d_c00402{bottom:442.280296pt;}
.y83_c00402{bottom:442.280576pt;}
.y7c_c00402{bottom:442.280861pt;}
.y7b_c00402{bottom:471.983963pt;}
.y7a_c00402{bottom:472.807275pt;}
.y79_c00402{bottom:473.240211pt;}
.y78_c00402{bottom:474.336541pt;}
.y77_c00402{bottom:474.621637pt;}
.y76_c00402{bottom:475.569717pt;}
.y75_c00402{bottom:475.989624pt;}
.y74_c00402{bottom:477.626168pt;}
.y73_c00402{bottom:478.056435pt;}
.y72_c00402{bottom:478.735472pt;}
.y71_c00402{bottom:479.282667pt;}
.y69_c00402{bottom:507.100600pt;}
.y6a_c00402{bottom:507.100613pt;}
.y6c_c00402{bottom:507.100933pt;}
.y6b_c00402{bottom:507.101160pt;}
.y6d_c00402{bottom:507.101227pt;}
.y70_c00402{bottom:507.101333pt;}
.y6e_c00402{bottom:507.101520pt;}
.y6f_c00402{bottom:507.101813pt;}
.y68_c00402{bottom:535.293707pt;}
.y67_c00402{bottom:536.604533pt;}
.y66_c00402{bottom:537.259667pt;}
.y65_c00402{bottom:537.470773pt;}
.y64_c00402{bottom:538.447893pt;}
.y63_c00402{bottom:538.867920pt;}
.y62_c00402{bottom:539.195120pt;}
.y61_c00402{bottom:540.275480pt;}
.y60_c00402{bottom:540.615653pt;}
.y5f_c00402{bottom:540.919533pt;}
.y5e_c00402{bottom:541.677440pt;}
.y5d_c00402{bottom:567.342560pt;}
.y5c_c00402{bottom:568.159960pt;}
.y5b_c00402{bottom:569.360947pt;}
.y5a_c00402{bottom:570.654613pt;}
.y59_c00402{bottom:571.014653pt;}
.y58_c00402{bottom:571.713813pt;}
.y57_c00402{bottom:572.179920pt;}
.y56_c00402{bottom:572.641747pt;}
.y55_c00402{bottom:572.995040pt;}
.y54_c00402{bottom:573.838160pt;}
.y53_c00402{bottom:593.331720pt;}
.y52_c00402{bottom:593.965013pt;}
.y51_c00402{bottom:594.730307pt;}
.y50_c00402{bottom:595.152947pt;}
.y4f_c00402{bottom:596.023560pt;}
.y4e_c00402{bottom:596.472867pt;}
.y4d_c00402{bottom:596.790187pt;}
.y4c_c00402{bottom:597.450147pt;}
.y4b_c00402{bottom:597.872787pt;}
.y4a_c00402{bottom:598.190107pt;}
.y49_c00402{bottom:599.359907pt;}
.y48_c00402{bottom:599.688853pt;}
.y47_c00402{bottom:599.999827pt;}
.y46_c00402{bottom:630.275467pt;}
.y45_c00402{bottom:630.822107pt;}
.y44_c00402{bottom:630.922267pt;}
.y43_c00402{bottom:631.118680pt;}
.y42_c00402{bottom:631.553933pt;}
.y41_c00402{bottom:631.802627pt;}
.y40_c00402{bottom:632.240160pt;}
.y3f_c00402{bottom:632.388413pt;}
.y3e_c00402{bottom:632.782227pt;}
.y3d_c00402{bottom:633.118040pt;}
.y3c_c00402{bottom:662.463040pt;}
.y3b_c00402{bottom:662.692520pt;}
.y3a_c00402{bottom:663.229373pt;}
.y39_c00402{bottom:663.402427pt;}
.y38_c00402{bottom:664.001080pt;}
.y37_c00402{bottom:664.237240pt;}
.y36_c00402{bottom:664.699773pt;}
.y35_c00402{bottom:665.168813pt;}
.y34_c00402{bottom:665.406107pt;}
.y33_c00402{bottom:665.759280pt;}
.y32_c00402{bottom:693.956267pt;}
.y31_c00402{bottom:694.841947pt;}
.y30_c00402{bottom:695.434880pt;}
.y2f_c00402{bottom:695.729947pt;}
.y2e_c00402{bottom:696.313267pt;}
.y2d_c00402{bottom:696.615680pt;}
.y2c_c00402{bottom:696.824560pt;}
.y2b_c00402{bottom:697.107747pt;}
.y2a_c00402{bottom:698.094173pt;}
.y29_c00402{bottom:698.475520pt;}
.y28_c00402{bottom:698.881333pt;}
.y27_c00402{bottom:728.006667pt;}
.y26_c00402{bottom:758.109333pt;}
.y25_c00402{bottom:758.256000pt;}
.y24_c00402{bottom:758.602667pt;}
.y23_c00402{bottom:758.748000pt;}
.y22_c00402{bottom:759.096000pt;}
.y21_c00402{bottom:759.534667pt;}
.y20_c00402{bottom:759.734667pt;}
.y1f_c00402{bottom:759.920000pt;}
.y1e_c00402{bottom:760.172000pt;}
.y1d_c00402{bottom:760.272000pt;}
.y1c_c00402{bottom:760.657333pt;}
.y1b_c00402{bottom:760.801333pt;}
.y1a_c00402{bottom:789.933333pt;}
.y19_c00402{bottom:821.122667pt;}
.y18_c00402{bottom:852.562667pt;}
.y17_c00402{bottom:884.880000pt;}
.y16_c00402{bottom:915.944553pt;}
.y15_c00402{bottom:916.360840pt;}
.y14_c00402{bottom:916.841380pt;}
.y13_c00402{bottom:917.117980pt;}
.y12_c00402{bottom:917.807420pt;}
.y11_c00402{bottom:918.218773pt;}
.y10_c00402{bottom:918.494167pt;}
.yf_c00402{bottom:918.698113pt;}
.ye_c00402{bottom:919.452913pt;}
.yd_c00402{bottom:919.919773pt;}
.yc_c00402{bottom:947.126427pt;}
.yb_c00402{bottom:947.908953pt;}
.y9_c00402{bottom:948.085273pt;}
.ya_c00402{bottom:948.088973pt;}
.y8_c00402{bottom:948.355287pt;}
.y7_c00402{bottom:948.844887pt;}
.y6_c00402{bottom:949.333287pt;}
.y5_c00402{bottom:949.770060pt;}
.y4_c00402{bottom:949.920000pt;}
.y3_c00402{bottom:979.532000pt;}
.y2_c00402{bottom:1011.932000pt;}
.y1_c00402{bottom:1079.133333pt;}
.h2_c00402{height:21.333333pt;}
.h19_c00402{height:53.347438pt;}
.h17_c00402{height:53.348691pt;}
.h16_c00402{height:58.683560pt;}
.h8_c00402{height:64.000000pt;}
.h4_c00402{height:64.000800pt;}
.h10_c00402{height:64.001568pt;}
.he_c00402{height:64.006272pt;}
.h18_c00402{height:64.016926pt;}
.h15_c00402{height:64.018429pt;}
.h6_c00402{height:69.333333pt;}
.h9_c00402{height:69.336800pt;}
.h3_c00402{height:74.666667pt;}
.h12_c00402{height:74.671184pt;}
.h13_c00402{height:74.675066pt;}
.h14_c00402{height:74.688168pt;}
.h5_c00402{height:80.001000pt;}
.ha_c00402{height:80.004000pt;}
.hf_c00402{height:80.007840pt;}
.h1b_c00402{height:80.014439pt;}
.h7_c00402{height:90.666667pt;}
.h11_c00402{height:90.668888pt;}
.hc_c00402{height:90.671200pt;}
.hd_c00402{height:96.004800pt;}
.h1a_c00402{height:96.017326pt;}
.hb_c00402{height:101.338400pt;}
.h1_c00402{height:1112.000000pt;}
.h0_c00402{height:1112.133333pt;}
.w0_c00402{width:813.333333pt;}
.x0_c00402{left:0.000000pt;}
.x4f_c00402{left:139.785187pt;}
.x51_c00402{left:141.002400pt;}
.x3_c00402{left:142.080000pt;}
.x33_c00402{left:143.040000pt;}
.x6c_c00402{left:163.207349pt;}
.x3a_c00402{left:171.052000pt;}
.x14_c00402{left:172.014667pt;}
.x66_c00402{left:180.197347pt;}
.x34_c00402{left:181.200000pt;}
.x58_c00402{left:189.833795pt;}
.x4_c00402{left:200.400000pt;}
.x18_c00402{left:209.426687pt;}
.x20_c00402{left:210.720000pt;}
.x27_c00402{left:219.120000pt;}
.x6a_c00402{left:230.225845pt;}
.x41_c00402{left:238.194667pt;}
.x2e_c00402{left:239.280000pt;}
.x35_c00402{left:248.640000pt;}
.x76_c00402{left:249.602745pt;}
.x21_c00402{left:258.240000pt;}
.x15_c00402{left:259.369333pt;}
.x3b_c00402{left:268.016000pt;}
.x40_c00402{left:270.242667pt;}
.xe_c00402{left:278.160000pt;}
.x63_c00402{left:279.066667pt;}
.x22_c00402{left:287.520000pt;}
.x67_c00402{left:297.764780pt;}
.x2f_c00402{left:298.800000pt;}
.x5_c00402{left:306.720000pt;}
.xf_c00402{left:307.920000pt;}
.x19_c00402{left:317.185607pt;}
.x3c_c00402{left:318.420000pt;}
.x61_c00402{left:325.076000pt;}
.x54_c00402{left:326.446667pt;}
.x30_c00402{left:327.600000pt;}
.x4a_c00402{left:335.782440pt;}
.x1a_c00402{left:346.241313pt;}
.x62_c00402{left:347.365333pt;}
.x3d_c00402{left:355.614667pt;}
.x10_c00402{left:357.120000pt;}
.x36_c00402{left:366.000000pt;}
.x72_c00402{left:367.544000pt;}
.x4b_c00402{left:374.179387pt;}
.x1_c00402{left:375.600000pt;}
.x28_c00402{left:376.800000pt;}
.x1b_c00402{left:385.586253pt;}
.x31_c00402{left:395.040000pt;}
.x52_c00402{left:396.007507pt;}
.x2_c00402{left:396.960000pt;}
.x50_c00402{left:405.201227pt;}
.x29_c00402{left:406.320000pt;}
.x6_c00402{left:414.720000pt;}
.x37_c00402{left:415.680000pt;}
.x70_c00402{left:424.157453pt;}
.x68_c00402{left:425.226747pt;}
.x23_c00402{left:434.880000pt;}
.x1c_c00402{left:444.389667pt;}
.x5b_c00402{left:453.997333pt;}
.x11_c00402{left:455.520000pt;}
.x4c_c00402{left:462.973160pt;}
.x42_c00402{left:464.760000pt;}
.x55_c00402{left:474.076000pt;}
.x24_c00402{left:483.360000pt;}
.x6d_c00402{left:484.358667pt;}
.x12_c00402{left:493.920000pt;}
.x43_c00402{left:495.001333pt;}
.x64_c00402{left:503.022667pt;}
.x38_c00402{left:504.480000pt;}
.x16_c00402{left:508.972000pt;}
.x2a_c00402{left:512.880000pt;}
.x7_c00402{left:514.080000pt;}
.x32_c00402{left:522.720000pt;}
.x6e_c00402{left:523.681333pt;}
.x5f_c00402{left:532.688000pt;}
.x45_c00402{left:534.426867pt;}
.x48_c00402{left:542.346187pt;}
.x8_c00402{left:543.360000pt;}
.x59_c00402{left:552.030099pt;}
.x3e_c00402{left:553.133333pt;}
.x53_c00402{left:554.175320pt;}
.x5c_c00402{left:561.761333pt;}
.x13_c00402{left:563.520000pt;}
.x56_c00402{left:571.789333pt;}
.x71_c00402{left:573.764728pt;}
.x1d_c00402{left:582.396287pt;}
.x6b_c00402{left:591.888491pt;}
.x9_c00402{left:592.800000pt;}
.x73_c00402{left:594.416000pt;}
.x49_c00402{left:601.873173pt;}
.x2b_c00402{left:612.480000pt;}
.x5d_c00402{left:619.372000pt;}
.x4d_c00402{left:621.360907pt;}
.xa_c00402{left:632.400000pt;}
.x6f_c00402{left:637.685859pt;}
.x5a_c00402{left:640.598125pt;}
.x39_c00402{left:641.520000pt;}
.x1e_c00402{left:651.036933pt;}
.x46_c00402{left:652.755600pt;}
.x65_c00402{left:660.490667pt;}
.xb_c00402{left:661.680000pt;}
.x25_c00402{left:671.040000pt;}
.x74_c00402{left:672.333333pt;}
.x3f_c00402{left:680.762667pt;}
.x75_c00402{left:682.697333pt;}
.x47_c00402{left:690.905120pt;}
.x17_c00402{left:700.741333pt;}
.xc_c00402{left:701.760000pt;}
.x1f_c00402{left:710.560340pt;}
.x2c_c00402{left:720.960000pt;}
.x60_c00402{left:728.517333pt;}
.x44_c00402{left:730.701333pt;}
.x26_c00402{left:731.760000pt;}
.xd_c00402{left:740.880000pt;}
.x4e_c00402{left:748.551640pt;}
.x2d_c00402{left:750.720000pt;}
.x57_c00402{left:760.194667pt;}
.x69_c00402{left:761.555107pt;}
.x5e_c00402{left:792.730667pt;}
}





/* 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_c00403 {
    display:none;
  }
  .loading-indicator_c00403.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00403 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_c00403 { 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_c00403" -> "#page-container .classname_c00403")
 */
.pf_c00403 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00403 { /* 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_c00403.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00403 { /* 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_c00403 { /* 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_c00403 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00403 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00403 {overflow:visible;}
  }
}
.c_c00403 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00403 { /* 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_c00403:after { /* webkit #35443 */
  content: '';
}
.t_c00403:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00403 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 */
}
.__c00403 { /* 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_c00403 { /* info for Javascript */
  display:none;
}
.l_c00403 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00403 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00403 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00403: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_c00403 {
    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_c00403.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00403.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_c00403 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00403{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00403;src:url('chunks/assets/font_b11a17f404e7258299fdf971.woff2')format("woff");}.ff1_c00403{font-family:ff1_c00403;line-height:1.000000;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;}
.m2_c00403{transform:matrix(0.009483,-0.000190,0.004999,0.249950,0,0);-ms-transform:matrix(0.009483,-0.000190,0.004999,0.249950,0,0);-webkit-transform:matrix(0.009483,-0.000190,0.004999,0.249950,0,0);}
.m17_c00403{transform:matrix(0.018181,-0.000364,0.004999,0.249950,0,0);-ms-transform:matrix(0.018181,-0.000364,0.004999,0.249950,0,0);-webkit-transform:matrix(0.018181,-0.000364,0.004999,0.249950,0,0);}
.m35_c00403{transform:matrix(0.018746,-0.000375,0.004999,0.249950,0,0);-ms-transform:matrix(0.018746,-0.000375,0.004999,0.249950,0,0);-webkit-transform:matrix(0.018746,-0.000375,0.004999,0.249950,0,0);}
.m2c_c00403{transform:matrix(0.131129,-0.002623,0.004999,0.249950,0,0);-ms-transform:matrix(0.131129,-0.002623,0.004999,0.249950,0,0);-webkit-transform:matrix(0.131129,-0.002623,0.004999,0.249950,0,0);}
.m50_c00403{transform:matrix(0.134028,-0.002681,0.004999,0.249950,0,0);-ms-transform:matrix(0.134028,-0.002681,0.004999,0.249950,0,0);-webkit-transform:matrix(0.134028,-0.002681,0.004999,0.249950,0,0);}
.m4d_c00403{transform:matrix(0.138067,-0.002761,0.004999,0.249950,0,0);-ms-transform:matrix(0.138067,-0.002761,0.004999,0.249950,0,0);-webkit-transform:matrix(0.138067,-0.002761,0.004999,0.249950,0,0);}
.mb_c00403{transform:matrix(0.162662,-0.003253,0.004999,0.249950,0,0);-ms-transform:matrix(0.162662,-0.003253,0.004999,0.249950,0,0);-webkit-transform:matrix(0.162662,-0.003253,0.004999,0.249950,0,0);}
.m21_c00403{transform:matrix(0.173610,-0.003472,0.004999,0.249950,0,0);-ms-transform:matrix(0.173610,-0.003472,0.004999,0.249950,0,0);-webkit-transform:matrix(0.173610,-0.003472,0.004999,0.249950,0,0);}
.m45_c00403{transform:matrix(0.184298,-0.003686,0.004999,0.249950,0,0);-ms-transform:matrix(0.184298,-0.003686,0.004999,0.249950,0,0);-webkit-transform:matrix(0.184298,-0.003686,0.004999,0.249950,0,0);}
.m5d_c00403{transform:matrix(0.186923,-0.003738,0.004999,0.249950,0,0);-ms-transform:matrix(0.186923,-0.003738,0.004999,0.249950,0,0);-webkit-transform:matrix(0.186923,-0.003738,0.004999,0.249950,0,0);}
.m5e_c00403{transform:matrix(0.193711,-0.003874,0.004999,0.249950,0,0);-ms-transform:matrix(0.193711,-0.003874,0.004999,0.249950,0,0);-webkit-transform:matrix(0.193711,-0.003874,0.004999,0.249950,0,0);}
.m2b_c00403{transform:matrix(0.194311,-0.003886,0.004999,0.249950,0,0);-ms-transform:matrix(0.194311,-0.003886,0.004999,0.249950,0,0);-webkit-transform:matrix(0.194311,-0.003886,0.004999,0.249950,0,0);}
.m52_c00403{transform:matrix(0.199970,-0.003999,0.004999,0.249950,0,0);-ms-transform:matrix(0.199970,-0.003999,0.004999,0.249950,0,0);-webkit-transform:matrix(0.199970,-0.003999,0.004999,0.249950,0,0);}
.m5c_c00403{transform:matrix(0.201550,-0.004031,0.004999,0.249950,0,0);-ms-transform:matrix(0.201550,-0.004031,0.004999,0.249950,0,0);-webkit-transform:matrix(0.201550,-0.004031,0.004999,0.249950,0,0);}
.m31_c00403{transform:matrix(0.202554,-0.004051,0.004999,0.249950,0,0);-ms-transform:matrix(0.202554,-0.004051,0.004999,0.249950,0,0);-webkit-transform:matrix(0.202554,-0.004051,0.004999,0.249950,0,0);}
.m48_c00403{transform:matrix(0.203764,-0.004075,0.004999,0.249950,0,0);-ms-transform:matrix(0.203764,-0.004075,0.004999,0.249950,0,0);-webkit-transform:matrix(0.203764,-0.004075,0.004999,0.249950,0,0);}
.m4f_c00403{transform:matrix(0.204879,-0.004098,0.004999,0.249950,0,0);-ms-transform:matrix(0.204879,-0.004098,0.004999,0.249950,0,0);-webkit-transform:matrix(0.204879,-0.004098,0.004999,0.249950,0,0);}
.m23_c00403{transform:matrix(0.206054,-0.004121,0.004999,0.249950,0,0);-ms-transform:matrix(0.206054,-0.004121,0.004999,0.249950,0,0);-webkit-transform:matrix(0.206054,-0.004121,0.004999,0.249950,0,0);}
.m5a_c00403{transform:matrix(0.206189,-0.004124,0.004999,0.249950,0,0);-ms-transform:matrix(0.206189,-0.004124,0.004999,0.249950,0,0);-webkit-transform:matrix(0.206189,-0.004124,0.004999,0.249950,0,0);}
.m33_c00403{transform:matrix(0.214182,-0.004284,0.004999,0.249950,0,0);-ms-transform:matrix(0.214182,-0.004284,0.004999,0.249950,0,0);-webkit-transform:matrix(0.214182,-0.004284,0.004999,0.249950,0,0);}
.m14_c00403{transform:matrix(0.215607,-0.004312,0.004999,0.249950,0,0);-ms-transform:matrix(0.215607,-0.004312,0.004999,0.249950,0,0);-webkit-transform:matrix(0.215607,-0.004312,0.004999,0.249950,0,0);}
.m13_c00403{transform:matrix(0.219106,-0.004382,0.004999,0.249950,0,0);-ms-transform:matrix(0.219106,-0.004382,0.004999,0.249950,0,0);-webkit-transform:matrix(0.219106,-0.004382,0.004999,0.249950,0,0);}
.m46_c00403{transform:matrix(0.220001,-0.004400,0.004999,0.249950,0,0);-ms-transform:matrix(0.220001,-0.004400,0.004999,0.249950,0,0);-webkit-transform:matrix(0.220001,-0.004400,0.004999,0.249950,0,0);}
.m51_c00403{transform:matrix(0.221776,-0.004436,0.004999,0.249950,0,0);-ms-transform:matrix(0.221776,-0.004436,0.004999,0.249950,0,0);-webkit-transform:matrix(0.221776,-0.004436,0.004999,0.249950,0,0);}
.m22_c00403{transform:matrix(0.222221,-0.004444,0.004999,0.249950,0,0);-ms-transform:matrix(0.222221,-0.004444,0.004999,0.249950,0,0);-webkit-transform:matrix(0.222221,-0.004444,0.004999,0.249950,0,0);}
.m37_c00403{transform:matrix(0.222625,-0.004453,0.004999,0.249950,0,0);-ms-transform:matrix(0.222625,-0.004453,0.004999,0.249950,0,0);-webkit-transform:matrix(0.222625,-0.004453,0.004999,0.249950,0,0);}
.m2a_c00403{transform:matrix(0.223225,-0.004465,0.004999,0.249950,0,0);-ms-transform:matrix(0.223225,-0.004465,0.004999,0.249950,0,0);-webkit-transform:matrix(0.223225,-0.004465,0.004999,0.249950,0,0);}
.m56_c00403{transform:matrix(0.227430,-0.004549,0.004999,0.249950,0,0);-ms-transform:matrix(0.227430,-0.004549,0.004999,0.249950,0,0);-webkit-transform:matrix(0.227430,-0.004549,0.004999,0.249950,0,0);}
.m54_c00403{transform:matrix(0.228174,-0.004563,0.004999,0.249950,0,0);-ms-transform:matrix(0.228174,-0.004563,0.004999,0.249950,0,0);-webkit-transform:matrix(0.228174,-0.004563,0.004999,0.249950,0,0);}
.m10_c00403{transform:matrix(0.228269,-0.004565,0.004999,0.249950,0,0);-ms-transform:matrix(0.228269,-0.004565,0.004999,0.249950,0,0);-webkit-transform:matrix(0.228269,-0.004565,0.004999,0.249950,0,0);}
.m20_c00403{transform:matrix(0.229194,-0.004584,0.004999,0.249950,0,0);-ms-transform:matrix(0.229194,-0.004584,0.004999,0.249950,0,0);-webkit-transform:matrix(0.229194,-0.004584,0.004999,0.249950,0,0);}
.m1e_c00403{transform:matrix(0.229459,-0.004589,0.004999,0.249950,0,0);-ms-transform:matrix(0.229459,-0.004589,0.004999,0.249950,0,0);-webkit-transform:matrix(0.229459,-0.004589,0.004999,0.249950,0,0);}
.m1f_c00403{transform:matrix(0.229959,-0.004599,0.004999,0.249950,0,0);-ms-transform:matrix(0.229959,-0.004599,0.004999,0.249950,0,0);-webkit-transform:matrix(0.229959,-0.004599,0.004999,0.249950,0,0);}
.m49_c00403{transform:matrix(0.230649,-0.004613,0.004999,0.249950,0,0);-ms-transform:matrix(0.230649,-0.004613,0.004999,0.249950,0,0);-webkit-transform:matrix(0.230649,-0.004613,0.004999,0.249950,0,0);}
.m25_c00403{transform:matrix(0.230899,-0.004618,0.004999,0.249950,0,0);-ms-transform:matrix(0.230899,-0.004618,0.004999,0.249950,0,0);-webkit-transform:matrix(0.230899,-0.004618,0.004999,0.249950,0,0);}
.m5_c00403{transform:matrix(0.231924,-0.004638,0.004999,0.249950,0,0);-ms-transform:matrix(0.231924,-0.004638,0.004999,0.249950,0,0);-webkit-transform:matrix(0.231924,-0.004638,0.004999,0.249950,0,0);}
.m57_c00403{transform:matrix(0.232573,-0.004651,0.004999,0.249950,0,0);-ms-transform:matrix(0.232573,-0.004651,0.004999,0.249950,0,0);-webkit-transform:matrix(0.232573,-0.004651,0.004999,0.249950,0,0);}
.mf_c00403{transform:matrix(0.232893,-0.004658,0.004999,0.249950,0,0);-ms-transform:matrix(0.232893,-0.004658,0.004999,0.249950,0,0);-webkit-transform:matrix(0.232893,-0.004658,0.004999,0.249950,0,0);}
.m7_c00403{transform:matrix(0.233608,-0.004672,0.004999,0.249950,0,0);-ms-transform:matrix(0.233608,-0.004672,0.004999,0.249950,0,0);-webkit-transform:matrix(0.233608,-0.004672,0.004999,0.249950,0,0);}
.m4b_c00403{transform:matrix(0.234948,-0.004699,0.004999,0.249950,0,0);-ms-transform:matrix(0.234948,-0.004699,0.004999,0.249950,0,0);-webkit-transform:matrix(0.234948,-0.004699,0.004999,0.249950,0,0);}
.m2f_c00403{transform:matrix(0.235773,-0.004715,0.004999,0.249950,0,0);-ms-transform:matrix(0.235773,-0.004715,0.004999,0.249950,0,0);-webkit-transform:matrix(0.235773,-0.004715,0.004999,0.249950,0,0);}
.m15_c00403{transform:matrix(0.235803,-0.004716,0.004999,0.249950,0,0);-ms-transform:matrix(0.235803,-0.004716,0.004999,0.249950,0,0);-webkit-transform:matrix(0.235803,-0.004716,0.004999,0.249950,0,0);}
.m53_c00403{transform:matrix(0.236563,-0.004731,0.004999,0.249950,0,0);-ms-transform:matrix(0.236563,-0.004731,0.004999,0.249950,0,0);-webkit-transform:matrix(0.236563,-0.004731,0.004999,0.249950,0,0);}
.me_c00403{transform:matrix(0.241367,-0.004827,0.004999,0.249950,0,0);-ms-transform:matrix(0.241367,-0.004827,0.004999,0.249950,0,0);-webkit-transform:matrix(0.241367,-0.004827,0.004999,0.249950,0,0);}
.m44_c00403{transform:matrix(0.241612,-0.004832,0.004999,0.249950,0,0);-ms-transform:matrix(0.241612,-0.004832,0.004999,0.249950,0,0);-webkit-transform:matrix(0.241612,-0.004832,0.004999,0.249950,0,0);}
.m3d_c00403{transform:matrix(0.242931,-0.004859,0.004999,0.249950,0,0);-ms-transform:matrix(0.242931,-0.004859,0.004999,0.249950,0,0);-webkit-transform:matrix(0.242931,-0.004859,0.004999,0.249950,0,0);}
.m11_c00403{transform:matrix(0.243896,-0.004878,0.004999,0.249950,0,0);-ms-transform:matrix(0.243896,-0.004878,0.004999,0.249950,0,0);-webkit-transform:matrix(0.243896,-0.004878,0.004999,0.249950,0,0);}
.m4a_c00403{transform:matrix(0.244336,-0.004887,0.004999,0.249950,0,0);-ms-transform:matrix(0.244336,-0.004887,0.004999,0.249950,0,0);-webkit-transform:matrix(0.244336,-0.004887,0.004999,0.249950,0,0);}
.m1d_c00403{transform:matrix(0.245666,-0.004913,0.004999,0.249950,0,0);-ms-transform:matrix(0.245666,-0.004913,0.004999,0.249950,0,0);-webkit-transform:matrix(0.245666,-0.004913,0.004999,0.249950,0,0);}
.m43_c00403{transform:matrix(0.250080,-0.005002,0.004999,0.249950,0,0);-ms-transform:matrix(0.250080,-0.005002,0.004999,0.249950,0,0);-webkit-transform:matrix(0.250080,-0.005002,0.004999,0.249950,0,0);}
.m3_c00403{transform:matrix(0.250440,-0.005009,0.004999,0.249950,0,0);-ms-transform:matrix(0.250440,-0.005009,0.004999,0.249950,0,0);-webkit-transform:matrix(0.250440,-0.005009,0.004999,0.249950,0,0);}
.m32_c00403{transform:matrix(0.251640,-0.005033,0.004999,0.249950,0,0);-ms-transform:matrix(0.251640,-0.005033,0.004999,0.249950,0,0);-webkit-transform:matrix(0.251640,-0.005033,0.004999,0.249950,0,0);}
.m12_c00403{transform:matrix(0.253524,-0.005070,0.004999,0.249950,0,0);-ms-transform:matrix(0.253524,-0.005070,0.004999,0.249950,0,0);-webkit-transform:matrix(0.253524,-0.005070,0.004999,0.249950,0,0);}
.m2d_c00403{transform:matrix(0.253904,-0.005078,0.004999,0.249950,0,0);-ms-transform:matrix(0.253904,-0.005078,0.004999,0.249950,0,0);-webkit-transform:matrix(0.253904,-0.005078,0.004999,0.249950,0,0);}
.m3f_c00403{transform:matrix(0.254044,-0.005081,0.004999,0.249950,0,0);-ms-transform:matrix(0.254044,-0.005081,0.004999,0.249950,0,0);-webkit-transform:matrix(0.254044,-0.005081,0.004999,0.249950,0,0);}
.m3b_c00403{transform:matrix(0.254129,-0.005083,0.004999,0.249950,0,0);-ms-transform:matrix(0.254129,-0.005083,0.004999,0.249950,0,0);-webkit-transform:matrix(0.254129,-0.005083,0.004999,0.249950,0,0);}
.m27_c00403{transform:matrix(0.256544,-0.005131,0.004999,0.249950,0,0);-ms-transform:matrix(0.256544,-0.005131,0.004999,0.249950,0,0);-webkit-transform:matrix(0.256544,-0.005131,0.004999,0.249950,0,0);}
.m26_c00403{transform:matrix(0.257623,-0.005152,0.004999,0.249950,0,0);-ms-transform:matrix(0.257623,-0.005152,0.004999,0.249950,0,0);-webkit-transform:matrix(0.257623,-0.005152,0.004999,0.249950,0,0);}
.m6_c00403{transform:matrix(0.257848,-0.005157,0.004999,0.249950,0,0);-ms-transform:matrix(0.257848,-0.005157,0.004999,0.249950,0,0);-webkit-transform:matrix(0.257848,-0.005157,0.004999,0.249950,0,0);}
.m3c_c00403{transform:matrix(0.262937,-0.005259,0.004999,0.249950,0,0);-ms-transform:matrix(0.262937,-0.005259,0.004999,0.249950,0,0);-webkit-transform:matrix(0.262937,-0.005259,0.004999,0.249950,0,0);}
.m38_c00403{transform:matrix(0.265862,-0.005317,0.004999,0.249950,0,0);-ms-transform:matrix(0.265862,-0.005317,0.004999,0.249950,0,0);-webkit-transform:matrix(0.265862,-0.005317,0.004999,0.249950,0,0);}
.m60_c00403{transform:matrix(0.269211,-0.005384,0.004999,0.249950,0,0);-ms-transform:matrix(0.269211,-0.005384,0.004999,0.249950,0,0);-webkit-transform:matrix(0.269211,-0.005384,0.004999,0.249950,0,0);}
.m24_c00403{transform:matrix(0.271086,-0.005422,0.004999,0.249950,0,0);-ms-transform:matrix(0.271086,-0.005422,0.004999,0.249950,0,0);-webkit-transform:matrix(0.271086,-0.005422,0.004999,0.249950,0,0);}
.m39_c00403{transform:matrix(0.271246,-0.005425,0.004999,0.249950,0,0);-ms-transform:matrix(0.271246,-0.005425,0.004999,0.249950,0,0);-webkit-transform:matrix(0.271246,-0.005425,0.004999,0.249950,0,0);}
.m5b_c00403{transform:matrix(0.274090,-0.005482,0.004999,0.249950,0,0);-ms-transform:matrix(0.274090,-0.005482,0.004999,0.249950,0,0);-webkit-transform:matrix(0.274090,-0.005482,0.004999,0.249950,0,0);}
.m9_c00403{transform:matrix(0.275755,-0.005515,0.004999,0.249950,0,0);-ms-transform:matrix(0.275755,-0.005515,0.004999,0.249950,0,0);-webkit-transform:matrix(0.275755,-0.005515,0.004999,0.249950,0,0);}
.ma_c00403{transform:matrix(0.277714,-0.005554,0.004999,0.249950,0,0);-ms-transform:matrix(0.277714,-0.005554,0.004999,0.249950,0,0);-webkit-transform:matrix(0.277714,-0.005554,0.004999,0.249950,0,0);}
.m34_c00403{transform:matrix(0.280954,-0.005619,0.004999,0.249950,0,0);-ms-transform:matrix(0.280954,-0.005619,0.004999,0.249950,0,0);-webkit-transform:matrix(0.280954,-0.005619,0.004999,0.249950,0,0);}
.m2e_c00403{transform:matrix(0.281319,-0.005626,0.004999,0.249950,0,0);-ms-transform:matrix(0.281319,-0.005626,0.004999,0.249950,0,0);-webkit-transform:matrix(0.281319,-0.005626,0.004999,0.249950,0,0);}
.m1c_c00403{transform:matrix(0.281549,-0.005631,0.004999,0.249950,0,0);-ms-transform:matrix(0.281549,-0.005631,0.004999,0.249950,0,0);-webkit-transform:matrix(0.281549,-0.005631,0.004999,0.249950,0,0);}
.m36_c00403{transform:matrix(0.281954,-0.005639,0.004999,0.249950,0,0);-ms-transform:matrix(0.281954,-0.005639,0.004999,0.249950,0,0);-webkit-transform:matrix(0.281954,-0.005639,0.004999,0.249950,0,0);}
.m18_c00403{transform:matrix(0.282663,-0.005653,0.004999,0.249950,0,0);-ms-transform:matrix(0.282663,-0.005653,0.004999,0.249950,0,0);-webkit-transform:matrix(0.282663,-0.005653,0.004999,0.249950,0,0);}
.m8_c00403{transform:matrix(0.286828,-0.005737,0.004999,0.249950,0,0);-ms-transform:matrix(0.286828,-0.005737,0.004999,0.249950,0,0);-webkit-transform:matrix(0.286828,-0.005737,0.004999,0.249950,0,0);}
.m19_c00403{transform:matrix(0.287098,-0.005742,0.004999,0.249950,0,0);-ms-transform:matrix(0.287098,-0.005742,0.004999,0.249950,0,0);-webkit-transform:matrix(0.287098,-0.005742,0.004999,0.249950,0,0);}
.m1a_c00403{transform:matrix(0.292142,-0.005843,0.004999,0.249950,0,0);-ms-transform:matrix(0.292142,-0.005843,0.004999,0.249950,0,0);-webkit-transform:matrix(0.292142,-0.005843,0.004999,0.249950,0,0);}
.m59_c00403{transform:matrix(0.293306,-0.005866,0.004999,0.249950,0,0);-ms-transform:matrix(0.293306,-0.005866,0.004999,0.249950,0,0);-webkit-transform:matrix(0.293306,-0.005866,0.004999,0.249950,0,0);}
.m30_c00403{transform:matrix(0.293411,-0.005868,0.004999,0.249950,0,0);-ms-transform:matrix(0.293411,-0.005868,0.004999,0.249950,0,0);-webkit-transform:matrix(0.293411,-0.005868,0.004999,0.249950,0,0);}
.m3e_c00403{transform:matrix(0.293766,-0.005875,0.004999,0.249950,0,0);-ms-transform:matrix(0.293766,-0.005875,0.004999,0.249950,0,0);-webkit-transform:matrix(0.293766,-0.005875,0.004999,0.249950,0,0);}
.m28_c00403{transform:matrix(0.296811,-0.005936,0.004999,0.249950,0,0);-ms-transform:matrix(0.296811,-0.005936,0.004999,0.249950,0,0);-webkit-transform:matrix(0.296811,-0.005936,0.004999,0.249950,0,0);}
.m40_c00403{transform:matrix(0.297346,-0.005947,0.004999,0.249950,0,0);-ms-transform:matrix(0.297346,-0.005947,0.004999,0.249950,0,0);-webkit-transform:matrix(0.297346,-0.005947,0.004999,0.249950,0,0);}
.m41_c00403{transform:matrix(0.298925,-0.005979,0.004999,0.249950,0,0);-ms-transform:matrix(0.298925,-0.005979,0.004999,0.249950,0,0);-webkit-transform:matrix(0.298925,-0.005979,0.004999,0.249950,0,0);}
.m58_c00403{transform:matrix(0.309173,-0.006183,0.004999,0.249950,0,0);-ms-transform:matrix(0.309173,-0.006183,0.004999,0.249950,0,0);-webkit-transform:matrix(0.309173,-0.006183,0.004999,0.249950,0,0);}
.m29_c00403{transform:matrix(0.331384,-0.006628,0.004999,0.249950,0,0);-ms-transform:matrix(0.331384,-0.006628,0.004999,0.249950,0,0);-webkit-transform:matrix(0.331384,-0.006628,0.004999,0.249950,0,0);}
.m55_c00403{transform:matrix(0.356859,-0.007137,0.004999,0.249950,0,0);-ms-transform:matrix(0.356859,-0.007137,0.004999,0.249950,0,0);-webkit-transform:matrix(0.356859,-0.007137,0.004999,0.249950,0,0);}
.m4_c00403{transform:matrix(0.357828,-0.007157,0.004999,0.249950,0,0);-ms-transform:matrix(0.357828,-0.007157,0.004999,0.249950,0,0);-webkit-transform:matrix(0.357828,-0.007157,0.004999,0.249950,0,0);}
.m0_c00403{transform:matrix(0.362800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362800,0.000000,0.000000,0.250000,0,0);}
.m4c_c00403{transform:matrix(0.369226,-0.007385,0.004999,0.249950,0,0);-ms-transform:matrix(0.369226,-0.007385,0.004999,0.249950,0,0);-webkit-transform:matrix(0.369226,-0.007385,0.004999,0.249950,0,0);}
.m1_c00403{transform:matrix(0.377690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377690,0.000000,0.000000,0.250000,0,0);}
.m42_c00403{transform:matrix(0.386448,-0.007729,0.004999,0.249950,0,0);-ms-transform:matrix(0.386448,-0.007729,0.004999,0.249950,0,0);-webkit-transform:matrix(0.386448,-0.007729,0.004999,0.249950,0,0);}
.mc_c00403{transform:matrix(0.394166,-0.007883,0.004999,0.249950,0,0);-ms-transform:matrix(0.394166,-0.007883,0.004999,0.249950,0,0);-webkit-transform:matrix(0.394166,-0.007883,0.004999,0.249950,0,0);}
.m3a_c00403{transform:matrix(0.421706,-0.008434,0.004999,0.249950,0,0);-ms-transform:matrix(0.421706,-0.008434,0.004999,0.249950,0,0);-webkit-transform:matrix(0.421706,-0.008434,0.004999,0.249950,0,0);}
.m5f_c00403{transform:matrix(0.428839,-0.008577,0.004999,0.249950,0,0);-ms-transform:matrix(0.428839,-0.008577,0.004999,0.249950,0,0);-webkit-transform:matrix(0.428839,-0.008577,0.004999,0.249950,0,0);}
.m47_c00403{transform:matrix(0.429244,-0.008585,0.004999,0.249950,0,0);-ms-transform:matrix(0.429244,-0.008585,0.004999,0.249950,0,0);-webkit-transform:matrix(0.429244,-0.008585,0.004999,0.249950,0,0);}
.m61_c00403{transform:matrix(0.434378,-0.008688,0.004999,0.249950,0,0);-ms-transform:matrix(0.434378,-0.008688,0.004999,0.249950,0,0);-webkit-transform:matrix(0.434378,-0.008688,0.004999,0.249950,0,0);}
.md_c00403{transform:matrix(0.475100,-0.009502,0.004999,0.249950,0,0);-ms-transform:matrix(0.475100,-0.009502,0.004999,0.249950,0,0);-webkit-transform:matrix(0.475100,-0.009502,0.004999,0.249950,0,0);}
.m16_c00403{transform:matrix(0.476500,-0.009530,0.004999,0.249950,0,0);-ms-transform:matrix(0.476500,-0.009530,0.004999,0.249950,0,0);-webkit-transform:matrix(0.476500,-0.009530,0.004999,0.249950,0,0);}
.m1b_c00403{transform:matrix(0.586158,-0.011723,0.004999,0.249950,0,0);-ms-transform:matrix(0.586158,-0.011723,0.004999,0.249950,0,0);-webkit-transform:matrix(0.586158,-0.011723,0.004999,0.249950,0,0);}
.m4e_c00403{transform:matrix(0.597570,-0.011951,0.004999,0.249950,0,0);-ms-transform:matrix(0.597570,-0.011951,0.004999,0.249950,0,0);-webkit-transform:matrix(0.597570,-0.011951,0.004999,0.249950,0,0);}
.v0_c00403{vertical-align:0.000000px;}
.ls0_c00403{letter-spacing:0.000000px;}
.sc__c00403{text-shadow:none;}
.sc0_c00403{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__c00403{-webkit-text-stroke:0px transparent;}
.sc0_c00403{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00403{word-spacing:0.000000px;}
.fc0_c00403{color:transparent;}
.fs0_c00403{font-size:18.000000px;}
.fs3_c00403{font-size:72.014399px;}
.fs2_c00403{font-size:84.016798px;}
.fs1_c00403{font-size:90.017998px;}
.fs5_c00403{font-size:108.021598px;}
.fs4_c00403{font-size:138.027597px;}
.y0_c00403{bottom:0.000000px;}
.y59_c00403{bottom:745.015800px;}
.y5a_c00403{bottom:745.748580px;}
.y5b_c00403{bottom:747.218730px;}
.y5c_c00403{bottom:747.688890px;}
.y5d_c00403{bottom:749.336190px;}
.y5e_c00403{bottom:750.009900px;}
.y5f_c00403{bottom:751.367490px;}
.y60_c00403{bottom:752.633010px;}
.y61_c00403{bottom:753.337830px;}
.y51_c00403{bottom:780.955710px;}
.y52_c00403{bottom:781.735950px;}
.y53_c00403{bottom:782.116650px;}
.y54_c00403{bottom:782.918850px;}
.y55_c00403{bottom:783.304230px;}
.y56_c00403{bottom:783.956010px;}
.y57_c00403{bottom:785.264400px;}
.y58_c00403{bottom:785.786610px;}
.y4e_c00403{bottom:821.057400px;}
.y4f_c00403{bottom:824.211270px;}
.y50_c00403{bottom:827.891880px;}
.y42_c00403{bottom:849.605550px;}
.y43_c00403{bottom:851.243700px;}
.y44_c00403{bottom:851.989410px;}
.y45_c00403{bottom:853.831800px;}
.y46_c00403{bottom:854.441610px;}
.y47_c00403{bottom:856.413180px;}
.y48_c00403{bottom:858.617970px;}
.y49_c00403{bottom:859.611990px;}
.y4a_c00403{bottom:860.714010px;}
.y4b_c00403{bottom:861.909330px;}
.y4c_c00403{bottom:862.454970px;}
.y4d_c00403{bottom:864.452190px;}
.y35_c00403{bottom:887.347950px;}
.y36_c00403{bottom:887.735820px;}
.y37_c00403{bottom:889.418430px;}
.y38_c00403{bottom:890.152200px;}
.y39_c00403{bottom:890.866950px;}
.y3a_c00403{bottom:892.639800px;}
.y3b_c00403{bottom:894.030390px;}
.y3c_c00403{bottom:894.715050px;}
.y3d_c00403{bottom:895.938780px;}
.y3e_c00403{bottom:897.038010px;}
.y3f_c00403{bottom:898.685490px;}
.y40_c00403{bottom:899.593380px;}
.y41_c00403{bottom:900.200460px;}
.y26_c00403{bottom:918.267990px;}
.y27_c00403{bottom:919.727310px;}
.y28_c00403{bottom:921.821700px;}
.y29_c00403{bottom:923.019210px;}
.y2a_c00403{bottom:924.614760px;}
.y2b_c00403{bottom:925.148130px;}
.y2c_c00403{bottom:925.999890px;}
.y2d_c00403{bottom:926.047050px;}
.y2e_c00403{bottom:927.805830px;}
.y2f_c00403{bottom:928.967190px;}
.y30_c00403{bottom:931.041270px;}
.y31_c00403{bottom:931.978410px;}
.y32_c00403{bottom:933.744840px;}
.y33_c00403{bottom:934.699170px;}
.y34_c00403{bottom:935.840970px;}
.y1b_c00403{bottom:952.597290px;}
.y1c_c00403{bottom:954.131550px;}
.y1d_c00403{bottom:955.033860px;}
.y1e_c00403{bottom:956.897160px;}
.y1f_c00403{bottom:957.999300px;}
.y20_c00403{bottom:960.689550px;}
.y21_c00403{bottom:963.543660px;}
.y22_c00403{bottom:964.303470px;}
.y23_c00403{bottom:966.148230px;}
.y24_c00403{bottom:967.345950px;}
.y25_c00403{bottom:968.598540px;}
.yc_c00403{bottom:992.761950px;}
.yd_c00403{bottom:993.088950px;}
.ye_c00403{bottom:994.446180px;}
.yf_c00403{bottom:995.664600px;}
.y10_c00403{bottom:996.123630px;}
.y11_c00403{bottom:998.252310px;}
.y12_c00403{bottom:999.390090px;}
.y13_c00403{bottom:1000.433070px;}
.y14_c00403{bottom:1001.444940px;}
.y15_c00403{bottom:1002.203190px;}
.y16_c00403{bottom:1003.425840px;}
.y17_c00403{bottom:1003.607580px;}
.y18_c00403{bottom:1004.032350px;}
.y19_c00403{bottom:1004.891310px;}
.y1a_c00403{bottom:1005.843030px;}
.y2_c00403{bottom:1026.538500px;}
.y3_c00403{bottom:1027.134000px;}
.y4_c00403{bottom:1028.592150px;}
.y5_c00403{bottom:1029.934650px;}
.y6_c00403{bottom:1031.429490px;}
.y7_c00403{bottom:1032.320970px;}
.y8_c00403{bottom:1034.480100px;}
.y9_c00403{bottom:1035.868050px;}
.ya_c00403{bottom:1036.697100px;}
.yb_c00403{bottom:1040.733540px;}
.y1_c00403{bottom:1150.740000px;}
.h2_c00403{height:18.000000px;}
.h5_c00403{height:72.014399px;}
.h4_c00403{height:84.016798px;}
.h3_c00403{height:90.017998px;}
.h7_c00403{height:108.021598px;}
.h6_c00403{height:138.027597px;}
.h1_c00403{height:1251.000000px;}
.h0_c00403{height:1251.150000px;}
.w0_c00403{width:915.000000px;}
.x0_c00403{left:0.000000px;}
.x1_c00403{left:3.240000px;}
.xc_c00403{left:7.988670px;}
.x16_c00403{left:13.260750px;}
.x2_c00403{left:24.472500px;}
.xd_c00403{left:26.139390px;}
.x3_c00403{left:54.247500px;}
.x17_c00403{left:77.218650px;}
.x21_c00403{left:83.485140px;}
.x3a_c00403{left:90.938820px;}
.xe_c00403{left:101.578920px;}
.x2f_c00403{left:108.461280px;}
.x18_c00403{left:114.831150px;}
.x4_c00403{left:127.155000px;}
.x22_c00403{left:137.543580px;}
.x4c_c00403{left:152.641950px;}
.x3b_c00403{left:162.192060px;}
.xf_c00403{left:169.252620px;}
.x19_c00403{left:192.464940px;}
.x5_c00403{left:194.280000px;}
.x4d_c00403{left:201.510840px;}
.x30_c00403{left:207.108330px;}
.x47_c00403{left:211.717560px;}
.x23_c00403{left:215.102220px;}
.x1a_c00403{left:238.418280px;}
.x31_c00403{left:242.071140px;}
.x24_c00403{left:259.446510px;}
.x6_c00403{left:269.022000px;}
.x3c_c00403{left:274.715310px;}
.x32_c00403{left:276.082950px;}
.x4e_c00403{left:299.553150px;}
.x3d_c00403{left:301.229220px;}
.x48_c00403{left:308.480040px;}
.x7_c00403{left:313.596000px;}
.x25_c00403{left:318.515730px;}
.x4f_c00403{left:330.864270px;}
.x26_c00403{left:338.281470px;}
.x1b_c00403{left:350.496810px;}
.x33_c00403{left:360.523770px;}
.x27_c00403{left:369.840060px;}
.x28_c00403{left:371.597820px;}
.x10_c00403{left:376.235400px;}
.x3e_c00403{left:386.977590px;}
.x49_c00403{left:407.474880px;}
.x8_c00403{left:421.552500px;}
.x34_c00403{left:426.751950px;}
.x11_c00403{left:434.161710px;}
.x29_c00403{left:436.727700px;}
.x50_c00403{left:440.690250px;}
.x35_c00403{left:459.334290px;}
.x4a_c00403{left:461.822580px;}
.x1c_c00403{left:469.417800px;}
.x2a_c00403{left:479.714670px;}
.x3f_c00403{left:482.811330px;}
.x51_c00403{left:485.630250px;}
.x9_c00403{left:490.950000px;}
.x1d_c00403{left:501.105780px;}
.x36_c00403{left:517.594620px;}
.x40_c00403{left:526.059750px;}
.xa_c00403{left:532.402500px;}
.x45_c00403{left:539.131260px;}
.x2b_c00403{left:556.557930px;}
.x37_c00403{left:569.930070px;}
.x41_c00403{left:573.957870px;}
.x52_c00403{left:576.093780px;}
.x1e_c00403{left:577.962630px;}
.x2c_c00403{left:591.260070px;}
.x12_c00403{left:600.456870px;}
.x13_c00403{left:610.519260px;}
.x4b_c00403{left:614.351970px;}
.x42_c00403{left:625.920750px;}
.x1f_c00403{left:627.869640px;}
.x14_c00403{left:634.083690px;}
.x38_c00403{left:648.402510px;}
.x43_c00403{left:649.676340px;}
.x2d_c00403{left:656.697420px;}
.x53_c00403{left:660.453210px;}
.x20_c00403{left:680.069970px;}
.x15_c00403{left:681.833610px;}
.x2e_c00403{left:692.033970px;}
.x54_c00403{left:707.398890px;}
.x39_c00403{left:720.549570px;}
.x46_c00403{left:728.994540px;}
.xb_c00403{left:734.224500px;}
.x44_c00403{left:736.482120px;}
@media print{
.v0_c00403{vertical-align:0.000000pt;}
.ls0_c00403{letter-spacing:0.000000pt;}
.ws0_c00403{word-spacing:0.000000pt;}
.fs0_c00403{font-size:16.000000pt;}
.fs3_c00403{font-size:64.012799pt;}
.fs2_c00403{font-size:74.681599pt;}
.fs1_c00403{font-size:80.015998pt;}
.fs5_c00403{font-size:96.019198pt;}
.fs4_c00403{font-size:122.691198pt;}
.y0_c00403{bottom:0.000000pt;}
.y59_c00403{bottom:662.236267pt;}
.y5a_c00403{bottom:662.887627pt;}
.y5b_c00403{bottom:664.194427pt;}
.y5c_c00403{bottom:664.612347pt;}
.y5d_c00403{bottom:666.076613pt;}
.y5e_c00403{bottom:666.675467pt;}
.y5f_c00403{bottom:667.882213pt;}
.y60_c00403{bottom:669.007120pt;}
.y61_c00403{bottom:669.633627pt;}
.y51_c00403{bottom:694.182853pt;}
.y52_c00403{bottom:694.876400pt;}
.y53_c00403{bottom:695.214800pt;}
.y54_c00403{bottom:695.927867pt;}
.y55_c00403{bottom:696.270427pt;}
.y56_c00403{bottom:696.849787pt;}
.y57_c00403{bottom:698.012800pt;}
.y58_c00403{bottom:698.476987pt;}
.y4e_c00403{bottom:729.828800pt;}
.y4f_c00403{bottom:732.632240pt;}
.y50_c00403{bottom:735.903893pt;}
.y42_c00403{bottom:755.204933pt;}
.y43_c00403{bottom:756.661067pt;}
.y44_c00403{bottom:757.323920pt;}
.y45_c00403{bottom:758.961600pt;}
.y46_c00403{bottom:759.503653pt;}
.y47_c00403{bottom:761.256160pt;}
.y48_c00403{bottom:763.215973pt;}
.y49_c00403{bottom:764.099547pt;}
.y4a_c00403{bottom:765.079120pt;}
.y4b_c00403{bottom:766.141627pt;}
.y4c_c00403{bottom:766.626640pt;}
.y4d_c00403{bottom:768.401947pt;}
.y35_c00403{bottom:788.753733pt;}
.y36_c00403{bottom:789.098507pt;}
.y37_c00403{bottom:790.594160pt;}
.y38_c00403{bottom:791.246400pt;}
.y39_c00403{bottom:791.881733pt;}
.y3a_c00403{bottom:793.457600pt;}
.y3b_c00403{bottom:794.693680pt;}
.y3c_c00403{bottom:795.302267pt;}
.y3d_c00403{bottom:796.390027pt;}
.y3e_c00403{bottom:797.367120pt;}
.y3f_c00403{bottom:798.831547pt;}
.y40_c00403{bottom:799.638560pt;}
.y41_c00403{bottom:800.178187pt;}
.y26_c00403{bottom:816.238213pt;}
.y27_c00403{bottom:817.535387pt;}
.y28_c00403{bottom:819.397067pt;}
.y29_c00403{bottom:820.461520pt;}
.y2a_c00403{bottom:821.879787pt;}
.y2b_c00403{bottom:822.353893pt;}
.y2c_c00403{bottom:823.111013pt;}
.y2d_c00403{bottom:823.152933pt;}
.y2e_c00403{bottom:824.716293pt;}
.y2f_c00403{bottom:825.748613pt;}
.y30_c00403{bottom:827.592240pt;}
.y31_c00403{bottom:828.425253pt;}
.y32_c00403{bottom:829.995413pt;}
.y33_c00403{bottom:830.843707pt;}
.y34_c00403{bottom:831.858640pt;}
.y1b_c00403{bottom:846.753147pt;}
.y1c_c00403{bottom:848.116933pt;}
.y1d_c00403{bottom:848.918987pt;}
.y1e_c00403{bottom:850.575253pt;}
.y1f_c00403{bottom:851.554933pt;}
.y20_c00403{bottom:853.946267pt;}
.y21_c00403{bottom:856.483253pt;}
.y22_c00403{bottom:857.158640pt;}
.y23_c00403{bottom:858.798427pt;}
.y24_c00403{bottom:859.863067pt;}
.y25_c00403{bottom:860.976480pt;}
.yc_c00403{bottom:882.455067pt;}
.yd_c00403{bottom:882.745733pt;}
.ye_c00403{bottom:883.952160pt;}
.yf_c00403{bottom:885.035200pt;}
.y10_c00403{bottom:885.443227pt;}
.y11_c00403{bottom:887.335387pt;}
.y12_c00403{bottom:888.346747pt;}
.y13_c00403{bottom:889.273840pt;}
.y14_c00403{bottom:890.173280pt;}
.y15_c00403{bottom:890.847280pt;}
.y16_c00403{bottom:891.934080pt;}
.y17_c00403{bottom:892.095627pt;}
.y18_c00403{bottom:892.473200pt;}
.y19_c00403{bottom:893.236720pt;}
.y1a_c00403{bottom:894.082693pt;}
.y2_c00403{bottom:912.478667pt;}
.y3_c00403{bottom:913.008000pt;}
.y4_c00403{bottom:914.304133pt;}
.y5_c00403{bottom:915.497467pt;}
.y6_c00403{bottom:916.826213pt;}
.y7_c00403{bottom:917.618640pt;}
.y8_c00403{bottom:919.537867pt;}
.y9_c00403{bottom:920.771600pt;}
.ya_c00403{bottom:921.508533pt;}
.yb_c00403{bottom:925.096480pt;}
.y1_c00403{bottom:1022.880000pt;}
.h2_c00403{height:16.000000pt;}
.h5_c00403{height:64.012799pt;}
.h4_c00403{height:74.681599pt;}
.h3_c00403{height:80.015998pt;}
.h7_c00403{height:96.019198pt;}
.h6_c00403{height:122.691198pt;}
.h1_c00403{height:1112.000000pt;}
.h0_c00403{height:1112.133333pt;}
.w0_c00403{width:813.333333pt;}
.x0_c00403{left:0.000000pt;}
.x1_c00403{left:2.880000pt;}
.xc_c00403{left:7.101040pt;}
.x16_c00403{left:11.787333pt;}
.x2_c00403{left:21.753333pt;}
.xd_c00403{left:23.235013pt;}
.x3_c00403{left:48.220000pt;}
.x17_c00403{left:68.638800pt;}
.x21_c00403{left:74.209013pt;}
.x3a_c00403{left:80.834507pt;}
.xe_c00403{left:90.292373pt;}
.x2f_c00403{left:96.410027pt;}
.x18_c00403{left:102.072133pt;}
.x4_c00403{left:113.026667pt;}
.x22_c00403{left:122.260960pt;}
.x4c_c00403{left:135.681733pt;}
.x3b_c00403{left:144.170720pt;}
.xf_c00403{left:150.446773pt;}
.x19_c00403{left:171.079947pt;}
.x5_c00403{left:172.693333pt;}
.x4d_c00403{left:179.120747pt;}
.x30_c00403{left:184.096293pt;}
.x47_c00403{left:188.193387pt;}
.x23_c00403{left:191.201973pt;}
.x1a_c00403{left:211.927360pt;}
.x31_c00403{left:215.174347pt;}
.x24_c00403{left:230.619120pt;}
.x6_c00403{left:239.130667pt;}
.x3c_c00403{left:244.191387pt;}
.x32_c00403{left:245.407067pt;}
.x4e_c00403{left:266.269467pt;}
.x3d_c00403{left:267.759307pt;}
.x48_c00403{left:274.204480pt;}
.x7_c00403{left:278.752000pt;}
.x25_c00403{left:283.125093pt;}
.x4f_c00403{left:294.101573pt;}
.x26_c00403{left:300.694640pt;}
.x1b_c00403{left:311.552720pt;}
.x33_c00403{left:320.465573pt;}
.x27_c00403{left:328.746720pt;}
.x28_c00403{left:330.309173pt;}
.x10_c00403{left:334.431467pt;}
.x3e_c00403{left:343.980080pt;}
.x49_c00403{left:362.199893pt;}
.x8_c00403{left:374.713333pt;}
.x34_c00403{left:379.335067pt;}
.x11_c00403{left:385.921520pt;}
.x29_c00403{left:388.202400pt;}
.x50_c00403{left:391.724667pt;}
.x35_c00403{left:408.297147pt;}
.x4a_c00403{left:410.508960pt;}
.x1c_c00403{left:417.260267pt;}
.x2a_c00403{left:426.413040pt;}
.x3f_c00403{left:429.165627pt;}
.x51_c00403{left:431.671333pt;}
.x9_c00403{left:436.400000pt;}
.x1d_c00403{left:445.427360pt;}
.x36_c00403{left:460.084107pt;}
.x40_c00403{left:467.608667pt;}
.xa_c00403{left:473.246667pt;}
.x45_c00403{left:479.227787pt;}
.x2b_c00403{left:494.718160pt;}
.x37_c00403{left:506.604507pt;}
.x41_c00403{left:510.184773pt;}
.x52_c00403{left:512.083360pt;}
.x1e_c00403{left:513.744560pt;}
.x2c_c00403{left:525.564507pt;}
.x12_c00403{left:533.739440pt;}
.x13_c00403{left:542.683787pt;}
.x4b_c00403{left:546.090640pt;}
.x42_c00403{left:556.374000pt;}
.x1f_c00403{left:558.106347pt;}
.x14_c00403{left:563.629947pt;}
.x38_c00403{left:576.357787pt;}
.x43_c00403{left:577.490080pt;}
.x2d_c00403{left:583.731040pt;}
.x53_c00403{left:587.069520pt;}
.x20_c00403{left:604.506640pt;}
.x15_c00403{left:606.074320pt;}
.x2e_c00403{left:615.141307pt;}
.x54_c00403{left:628.799013pt;}
.x39_c00403{left:640.488507pt;}
.x46_c00403{left:647.995147pt;}
.xb_c00403{left:652.644000pt;}
.x44_c00403{left:654.650773pt;}
}





/* 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_c00404 {
    display:none;
  }
  .loading-indicator_c00404.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00404 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_c00404 { 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_c00404" -> "#page-container .classname_c00404")
 */
.pf_c00404 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00404 { /* 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_c00404.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00404 { /* 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_c00404 { /* 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_c00404 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00404 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00404 {overflow:visible;}
  }
}
.c_c00404 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00404 { /* 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_c00404:after { /* webkit #35443 */
  content: '';
}
.t_c00404:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00404 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 */
}
.__c00404 { /* 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_c00404 { /* info for Javascript */
  display:none;
}
.l_c00404 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00404 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00404 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00404: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_c00404 {
    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_c00404.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00404.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_c00404 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00404{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00404;src:url('chunks/assets/font_7c6b9abe6ee2a268480c528b.woff2')format("woff");}.ff1_c00404{font-family:ff1_c00404;line-height:1.000000;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;}
.m15e_c00404{transform:matrix(0.014128,0.000594,-0.010501,0.249779,0,0);-ms-transform:matrix(0.014128,0.000594,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.014128,0.000594,-0.010501,0.249779,0,0);}
.m14b_c00404{transform:matrix(0.017790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.017790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.017790,0.000000,0.000000,0.250000,0,0);}
.m161_c00404{transform:matrix(0.035570,0.000605,-0.004249,0.249964,0,0);-ms-transform:matrix(0.035570,0.000605,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.035570,0.000605,-0.004249,0.249964,0,0);}
.mce_c00404{transform:matrix(0.135470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135470,0.000000,0.000000,0.250000,0,0);}
.m15f_c00404{transform:matrix(0.135915,0.002311,-0.004249,0.249964,0,0);-ms-transform:matrix(0.135915,0.002311,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.135915,0.002311,-0.004249,0.249964,0,0);}
.m160_c00404{transform:matrix(0.143169,0.002434,-0.004249,0.249964,0,0);-ms-transform:matrix(0.143169,0.002434,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.143169,0.002434,-0.004249,0.249964,0,0);}
.mcc_c00404{transform:matrix(0.145150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145150,0.000000,0.000000,0.250000,0,0);}
.mcd_c00404{transform:matrix(0.149875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149875,0.000000,0.000000,0.250000,0,0);}
.md1_c00404{transform:matrix(0.151660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151660,0.000000,0.000000,0.250000,0,0);}
.md0_c00404{transform:matrix(0.154670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154670,0.000000,0.000000,0.250000,0,0);}
.mcb_c00404{transform:matrix(0.158380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158380,0.000000,0.000000,0.250000,0,0);}
.m48_c00404{transform:matrix(0.161174,0.002901,-0.004499,0.249960,0,0);-ms-transform:matrix(0.161174,0.002901,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.161174,0.002901,-0.004499,0.249960,0,0);}
.m97_c00404{transform:matrix(0.163752,0.002456,-0.003750,0.249972,0,0);-ms-transform:matrix(0.163752,0.002456,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.163752,0.002456,-0.003750,0.249972,0,0);}
.mcf_c00404{transform:matrix(0.165475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165475,0.000000,0.000000,0.250000,0,0);}
.m14a_c00404{transform:matrix(0.166960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166960,0.000000,0.000000,0.250000,0,0);}
.m25_c00404{transform:matrix(0.167948,0.003023,-0.004499,0.249960,0,0);-ms-transform:matrix(0.167948,0.003023,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.167948,0.003023,-0.004499,0.249960,0,0);}
.m22_c00404{transform:matrix(0.168983,0.003042,-0.004499,0.249960,0,0);-ms-transform:matrix(0.168983,0.003042,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.168983,0.003042,-0.004499,0.249960,0,0);}
.m7e_c00404{transform:matrix(0.169966,0.003399,-0.004999,0.249950,0,0);-ms-transform:matrix(0.169966,0.003399,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.169966,0.003399,-0.004999,0.249950,0,0);}
.m27_c00404{transform:matrix(0.170227,0.003064,-0.004499,0.249960,0,0);-ms-transform:matrix(0.170227,0.003064,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.170227,0.003064,-0.004499,0.249960,0,0);}
.m4e_c00404{transform:matrix(0.170547,0.003070,-0.004499,0.249960,0,0);-ms-transform:matrix(0.170547,0.003070,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.170547,0.003070,-0.004499,0.249960,0,0);}
.m148_c00404{transform:matrix(0.172750,0.005879,-0.008504,0.249855,0,0);-ms-transform:matrix(0.172750,0.005879,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.172750,0.005879,-0.008504,0.249855,0,0);}
.m4f_c00404{transform:matrix(0.173577,0.003124,-0.004499,0.249960,0,0);-ms-transform:matrix(0.173577,0.003124,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.173577,0.003124,-0.004499,0.249960,0,0);}
.m2a_c00404{transform:matrix(0.175742,0.003163,-0.004499,0.249960,0,0);-ms-transform:matrix(0.175742,0.003163,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.175742,0.003163,-0.004499,0.249960,0,0);}
.m92_c00404{transform:matrix(0.176445,0.002647,-0.003750,0.249972,0,0);-ms-transform:matrix(0.176445,0.002647,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.176445,0.002647,-0.003750,0.249972,0,0);}
.m4b_c00404{transform:matrix(0.176516,0.003177,-0.004499,0.249960,0,0);-ms-transform:matrix(0.176516,0.003177,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.176516,0.003177,-0.004499,0.249960,0,0);}
.m20_c00404{transform:matrix(0.178166,0.003207,-0.004499,0.249960,0,0);-ms-transform:matrix(0.178166,0.003207,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.178166,0.003207,-0.004499,0.249960,0,0);}
.m132_c00404{transform:matrix(0.178879,0.003041,-0.004249,0.249964,0,0);-ms-transform:matrix(0.178879,0.003041,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.178879,0.003041,-0.004249,0.249964,0,0);}
.m9d_c00404{transform:matrix(0.179155,0.002687,-0.003750,0.249972,0,0);-ms-transform:matrix(0.179155,0.002687,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.179155,0.002687,-0.003750,0.249972,0,0);}
.m147_c00404{transform:matrix(0.180441,0.006141,-0.008504,0.249855,0,0);-ms-transform:matrix(0.180441,0.006141,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.180441,0.006141,-0.008504,0.249855,0,0);}
.m80_c00404{transform:matrix(0.181359,0.003627,-0.004999,0.249950,0,0);-ms-transform:matrix(0.181359,0.003627,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.181359,0.003627,-0.004999,0.249950,0,0);}
.m94_c00404{transform:matrix(0.181375,0.002721,-0.003750,0.249972,0,0);-ms-transform:matrix(0.181375,0.002721,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.181375,0.002721,-0.003750,0.249972,0,0);}
.m140_c00404{transform:matrix(0.181780,0.006187,-0.008504,0.249855,0,0);-ms-transform:matrix(0.181780,0.006187,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.181780,0.006187,-0.008504,0.249855,0,0);}
.m9b_c00404{transform:matrix(0.181925,0.002729,-0.003750,0.249972,0,0);-ms-transform:matrix(0.181925,0.002729,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.181925,0.002729,-0.003750,0.249972,0,0);}
.mf5_c00404{transform:matrix(0.182459,0.004926,-0.006748,0.249909,0,0);-ms-transform:matrix(0.182459,0.004926,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.182459,0.004926,-0.006748,0.249909,0,0);}
.mb8_c00404{transform:matrix(0.182504,0.002738,-0.003750,0.249972,0,0);-ms-transform:matrix(0.182504,0.002738,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.182504,0.002738,-0.003750,0.249972,0,0);}
.mff_c00404{transform:matrix(0.183608,0.004957,-0.006748,0.249909,0,0);-ms-transform:matrix(0.183608,0.004957,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.183608,0.004957,-0.006748,0.249909,0,0);}
.m46_c00404{transform:matrix(0.183885,0.003310,-0.004499,0.249960,0,0);-ms-transform:matrix(0.183885,0.003310,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.183885,0.003310,-0.004499,0.249960,0,0);}
.m82_c00404{transform:matrix(0.186908,0.003738,-0.004999,0.249950,0,0);-ms-transform:matrix(0.186908,0.003738,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.186908,0.003738,-0.004999,0.249950,0,0);}
.m95_c00404{transform:matrix(0.187809,0.002817,-0.003750,0.249972,0,0);-ms-transform:matrix(0.187809,0.002817,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.187809,0.002817,-0.003750,0.249972,0,0);}
.m29_c00404{transform:matrix(0.187820,0.003381,-0.004499,0.249960,0,0);-ms-transform:matrix(0.187820,0.003381,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.187820,0.003381,-0.004499,0.249960,0,0);}
.md3_c00404{transform:matrix(0.188535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188535,0.000000,0.000000,0.250000,0,0);}
.mf8_c00404{transform:matrix(0.189551,0.005118,-0.006748,0.249909,0,0);-ms-transform:matrix(0.189551,0.005118,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.189551,0.005118,-0.006748,0.249909,0,0);}
.mbc_c00404{transform:matrix(0.189599,0.002844,-0.003750,0.249972,0,0);-ms-transform:matrix(0.189599,0.002844,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.189599,0.002844,-0.003750,0.249972,0,0);}
.m50_c00404{transform:matrix(0.189879,0.003418,-0.004499,0.249960,0,0);-ms-transform:matrix(0.189879,0.003418,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.189879,0.003418,-0.004499,0.249960,0,0);}
.m70_c00404{transform:matrix(0.189999,0.003420,-0.004499,0.249960,0,0);-ms-transform:matrix(0.189999,0.003420,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.189999,0.003420,-0.004499,0.249960,0,0);}
.m4a_c00404{transform:matrix(0.190609,0.003431,-0.004499,0.249960,0,0);-ms-transform:matrix(0.190609,0.003431,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.190609,0.003431,-0.004499,0.249960,0,0);}
.m26_c00404{transform:matrix(0.190704,0.003433,-0.004499,0.249960,0,0);-ms-transform:matrix(0.190704,0.003433,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.190704,0.003433,-0.004499,0.249960,0,0);}
.ma3_c00404{transform:matrix(0.191148,0.002867,-0.003750,0.249972,0,0);-ms-transform:matrix(0.191148,0.002867,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.191148,0.002867,-0.003750,0.249972,0,0);}
.mbd_c00404{transform:matrix(0.192488,0.002887,-0.003750,0.249972,0,0);-ms-transform:matrix(0.192488,0.002887,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.192488,0.002887,-0.003750,0.249972,0,0);}
.m3d_c00404{transform:matrix(0.192599,0.003467,-0.004499,0.249960,0,0);-ms-transform:matrix(0.192599,0.003467,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.192599,0.003467,-0.004499,0.249960,0,0);}
.m24_c00404{transform:matrix(0.193239,0.003478,-0.004499,0.249960,0,0);-ms-transform:matrix(0.193239,0.003478,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.193239,0.003478,-0.004499,0.249960,0,0);}
.mf9_c00404{transform:matrix(0.193529,0.005225,-0.006748,0.249909,0,0);-ms-transform:matrix(0.193529,0.005225,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.193529,0.005225,-0.006748,0.249909,0,0);}
.mf6_c00404{transform:matrix(0.194124,0.005241,-0.006748,0.249909,0,0);-ms-transform:matrix(0.194124,0.005241,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.194124,0.005241,-0.006748,0.249909,0,0);}
.mb9_c00404{transform:matrix(0.194173,0.002913,-0.003750,0.249972,0,0);-ms-transform:matrix(0.194173,0.002913,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.194173,0.002913,-0.003750,0.249972,0,0);}
.mf0_c00404{transform:matrix(0.194279,0.005246,-0.006748,0.249909,0,0);-ms-transform:matrix(0.194279,0.005246,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.194279,0.005246,-0.006748,0.249909,0,0);}
.m99_c00404{transform:matrix(0.194978,0.002925,-0.003750,0.249972,0,0);-ms-transform:matrix(0.194978,0.002925,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.194978,0.002925,-0.003750,0.249972,0,0);}
.me1_c00404{transform:matrix(0.195470,0.003714,-0.004749,0.249955,0,0);-ms-transform:matrix(0.195470,0.003714,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.195470,0.003714,-0.004749,0.249955,0,0);}
.m84_c00404{transform:matrix(0.195781,0.003916,-0.004999,0.249950,0,0);-ms-transform:matrix(0.195781,0.003916,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.195781,0.003916,-0.004999,0.249950,0,0);}
.m9e_c00404{transform:matrix(0.196363,0.002945,-0.003750,0.249972,0,0);-ms-transform:matrix(0.196363,0.002945,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.196363,0.002945,-0.003750,0.249972,0,0);}
.m146_c00404{transform:matrix(0.196881,0.006701,-0.008504,0.249855,0,0);-ms-transform:matrix(0.196881,0.006701,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.196881,0.006701,-0.008504,0.249855,0,0);}
.m21_c00404{transform:matrix(0.197123,0.003548,-0.004499,0.249960,0,0);-ms-transform:matrix(0.197123,0.003548,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.197123,0.003548,-0.004499,0.249960,0,0);}
.m47_c00404{transform:matrix(0.197238,0.003550,-0.004499,0.249960,0,0);-ms-transform:matrix(0.197238,0.003550,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.197238,0.003550,-0.004499,0.249960,0,0);}
.mf7_c00404{transform:matrix(0.197253,0.005326,-0.006748,0.249909,0,0);-ms-transform:matrix(0.197253,0.005326,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.197253,0.005326,-0.006748,0.249909,0,0);}
.m145_c00404{transform:matrix(0.197925,0.006736,-0.008504,0.249855,0,0);-ms-transform:matrix(0.197925,0.006736,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.197925,0.006736,-0.008504,0.249855,0,0);}
.m98_c00404{transform:matrix(0.198823,0.002982,-0.003750,0.249972,0,0);-ms-transform:matrix(0.198823,0.002982,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.198823,0.002982,-0.003750,0.249972,0,0);}
.mf2_c00404{transform:matrix(0.200807,0.005422,-0.006748,0.249909,0,0);-ms-transform:matrix(0.200807,0.005422,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.200807,0.005422,-0.006748,0.249909,0,0);}
.m142_c00404{transform:matrix(0.201129,0.006845,-0.008504,0.249855,0,0);-ms-transform:matrix(0.201129,0.006845,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.201129,0.006845,-0.008504,0.249855,0,0);}
.m28_c00404{transform:matrix(0.201397,0.003625,-0.004499,0.249960,0,0);-ms-transform:matrix(0.201397,0.003625,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.201397,0.003625,-0.004499,0.249960,0,0);}
.m49_c00404{transform:matrix(0.201562,0.003628,-0.004499,0.249960,0,0);-ms-transform:matrix(0.201562,0.003628,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.201562,0.003628,-0.004499,0.249960,0,0);}
.mfb_c00404{transform:matrix(0.202031,0.005455,-0.006748,0.249909,0,0);-ms-transform:matrix(0.202031,0.005455,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.202031,0.005455,-0.006748,0.249909,0,0);}
.m23_c00404{transform:matrix(0.202262,0.003641,-0.004499,0.249960,0,0);-ms-transform:matrix(0.202262,0.003641,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.202262,0.003641,-0.004499,0.249960,0,0);}
.m3b_c00404{transform:matrix(0.202807,0.003651,-0.004499,0.249960,0,0);-ms-transform:matrix(0.202807,0.003651,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.202807,0.003651,-0.004499,0.249960,0,0);}
.mf4_c00404{transform:matrix(0.203371,0.005491,-0.006748,0.249909,0,0);-ms-transform:matrix(0.203371,0.005491,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.203371,0.005491,-0.006748,0.249909,0,0);}
.m7c_c00404{transform:matrix(0.203764,0.004075,-0.004999,0.249950,0,0);-ms-transform:matrix(0.203764,0.004075,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.203764,0.004075,-0.004999,0.249950,0,0);}
.m13b_c00404{transform:matrix(0.204067,0.006945,-0.008504,0.249855,0,0);-ms-transform:matrix(0.204067,0.006945,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.204067,0.006945,-0.008504,0.249855,0,0);}
.m45_c00404{transform:matrix(0.204182,0.003675,-0.004499,0.249960,0,0);-ms-transform:matrix(0.204182,0.003675,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.204182,0.003675,-0.004499,0.249960,0,0);}
.mc1_c00404{transform:matrix(0.204297,0.003064,-0.003750,0.249972,0,0);-ms-transform:matrix(0.204297,0.003064,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.204297,0.003064,-0.003750,0.249972,0,0);}
.m42_c00404{transform:matrix(0.204452,0.003680,-0.004499,0.249960,0,0);-ms-transform:matrix(0.204452,0.003680,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.204452,0.003680,-0.004499,0.249960,0,0);}
.mc0_c00404{transform:matrix(0.204662,0.003070,-0.003750,0.249972,0,0);-ms-transform:matrix(0.204662,0.003070,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.204662,0.003070,-0.003750,0.249972,0,0);}
.m4c_c00404{transform:matrix(0.205377,0.003697,-0.004499,0.249960,0,0);-ms-transform:matrix(0.205377,0.003697,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.205377,0.003697,-0.004499,0.249960,0,0);}
.me5_c00404{transform:matrix(0.205598,0.003906,-0.004749,0.249955,0,0);-ms-transform:matrix(0.205598,0.003906,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.205598,0.003906,-0.004749,0.249955,0,0);}
.m6b_c00404{transform:matrix(0.206062,0.003709,-0.004499,0.249960,0,0);-ms-transform:matrix(0.206062,0.003709,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.206062,0.003709,-0.004499,0.249960,0,0);}
.m2c_c00404{transform:matrix(0.206422,0.003716,-0.004499,0.249960,0,0);-ms-transform:matrix(0.206422,0.003716,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.206422,0.003716,-0.004499,0.249960,0,0);}
.m4d_c00404{transform:matrix(0.206687,0.003720,-0.004499,0.249960,0,0);-ms-transform:matrix(0.206687,0.003720,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.206687,0.003720,-0.004499,0.249960,0,0);}
.m143_c00404{transform:matrix(0.206705,0.007035,-0.008504,0.249855,0,0);-ms-transform:matrix(0.206705,0.007035,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.206705,0.007035,-0.008504,0.249855,0,0);}
.ma_c00404{transform:matrix(0.206797,0.003722,-0.004499,0.249960,0,0);-ms-transform:matrix(0.206797,0.003722,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.206797,0.003722,-0.004499,0.249960,0,0);}
.m3e_c00404{transform:matrix(0.207206,0.003730,-0.004499,0.249960,0,0);-ms-transform:matrix(0.207206,0.003730,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.207206,0.003730,-0.004499,0.249960,0,0);}
.m2b_c00404{transform:matrix(0.207351,0.003732,-0.004499,0.249960,0,0);-ms-transform:matrix(0.207351,0.003732,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.207351,0.003732,-0.004499,0.249960,0,0);}
.m32_c00404{transform:matrix(0.207361,0.003733,-0.004499,0.249960,0,0);-ms-transform:matrix(0.207361,0.003733,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.207361,0.003733,-0.004499,0.249960,0,0);}
.m10d_c00404{transform:matrix(0.207776,0.003740,-0.004499,0.249960,0,0);-ms-transform:matrix(0.207776,0.003740,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.207776,0.003740,-0.004499,0.249960,0,0);}
.m11_c00404{transform:matrix(0.207981,0.003744,-0.004499,0.249960,0,0);-ms-transform:matrix(0.207981,0.003744,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.207981,0.003744,-0.004499,0.249960,0,0);}
.m6_c00404{transform:matrix(0.208031,0.003745,-0.004499,0.249960,0,0);-ms-transform:matrix(0.208031,0.003745,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.208031,0.003745,-0.004499,0.249960,0,0);}
.m43_c00404{transform:matrix(0.208041,0.003745,-0.004499,0.249960,0,0);-ms-transform:matrix(0.208041,0.003745,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.208041,0.003745,-0.004499,0.249960,0,0);}
.mfe_c00404{transform:matrix(0.208259,0.005623,-0.006748,0.249909,0,0);-ms-transform:matrix(0.208259,0.005623,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.208259,0.005623,-0.006748,0.249909,0,0);}
.mec_c00404{transform:matrix(0.208529,0.005630,-0.006748,0.249909,0,0);-ms-transform:matrix(0.208529,0.005630,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.208529,0.005630,-0.006748,0.249909,0,0);}
.m12c_c00404{transform:matrix(0.208974,0.008577,-0.010252,0.249790,0,0);-ms-transform:matrix(0.208974,0.008577,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.208974,0.008577,-0.010252,0.249790,0,0);}
.m111_c00404{transform:matrix(0.209266,0.003767,-0.004499,0.249960,0,0);-ms-transform:matrix(0.209266,0.003767,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.209266,0.003767,-0.004499,0.249960,0,0);}
.m7d_c00404{transform:matrix(0.209313,0.004186,-0.004999,0.249950,0,0);-ms-transform:matrix(0.209313,0.004186,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.209313,0.004186,-0.004999,0.249950,0,0);}
.md_c00404{transform:matrix(0.209511,0.003771,-0.004499,0.249960,0,0);-ms-transform:matrix(0.209511,0.003771,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.209511,0.003771,-0.004499,0.249960,0,0);}
.m6d_c00404{transform:matrix(0.209901,0.003778,-0.004499,0.249960,0,0);-ms-transform:matrix(0.209901,0.003778,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.209901,0.003778,-0.004499,0.249960,0,0);}
.m128_c00404{transform:matrix(0.210576,0.003790,-0.004499,0.249960,0,0);-ms-transform:matrix(0.210576,0.003790,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.210576,0.003790,-0.004499,0.249960,0,0);}
.m41_c00404{transform:matrix(0.210986,0.003798,-0.004499,0.249960,0,0);-ms-transform:matrix(0.210986,0.003798,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.210986,0.003798,-0.004499,0.249960,0,0);}
.me9_c00404{transform:matrix(0.211542,0.004019,-0.004749,0.249955,0,0);-ms-transform:matrix(0.211542,0.004019,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.211542,0.004019,-0.004749,0.249955,0,0);}
.m93_c00404{transform:matrix(0.211906,0.003179,-0.003750,0.249972,0,0);-ms-transform:matrix(0.211906,0.003179,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.211906,0.003179,-0.003750,0.249972,0,0);}
.m120_c00404{transform:matrix(0.212166,0.003819,-0.004499,0.249960,0,0);-ms-transform:matrix(0.212166,0.003819,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.212166,0.003819,-0.004499,0.249960,0,0);}
.m0_c00404{transform:matrix(0.212265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212265,0.000000,0.000000,0.250000,0,0);}
.ma5_c00404{transform:matrix(0.212346,0.003185,-0.003750,0.249972,0,0);-ms-transform:matrix(0.212346,0.003185,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.212346,0.003185,-0.003750,0.249972,0,0);}
.m113_c00404{transform:matrix(0.212476,0.003825,-0.004499,0.249960,0,0);-ms-transform:matrix(0.212476,0.003825,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.212476,0.003825,-0.004499,0.249960,0,0);}
.mf3_c00404{transform:matrix(0.212702,0.005743,-0.006748,0.249909,0,0);-ms-transform:matrix(0.212702,0.005743,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.212702,0.005743,-0.006748,0.249909,0,0);}
.m13_c00404{transform:matrix(0.213100,0.003836,-0.004499,0.249960,0,0);-ms-transform:matrix(0.213100,0.003836,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.213100,0.003836,-0.004499,0.249960,0,0);}
.m30_c00404{transform:matrix(0.213685,0.003846,-0.004499,0.249960,0,0);-ms-transform:matrix(0.213685,0.003846,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.213685,0.003846,-0.004499,0.249960,0,0);}
.m2_c00404{transform:matrix(0.214585,0.003863,-0.004499,0.249960,0,0);-ms-transform:matrix(0.214585,0.003863,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.214585,0.003863,-0.004499,0.249960,0,0);}
.m10f_c00404{transform:matrix(0.214665,0.003864,-0.004499,0.249960,0,0);-ms-transform:matrix(0.214665,0.003864,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.214665,0.003864,-0.004499,0.249960,0,0);}
.m101_c00404{transform:matrix(0.214785,0.002577,-0.003000,0.249982,0,0);-ms-transform:matrix(0.214785,0.002577,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.214785,0.002577,-0.003000,0.249982,0,0);}
.m16_c00404{transform:matrix(0.214865,0.003868,-0.004499,0.249960,0,0);-ms-transform:matrix(0.214865,0.003868,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.214865,0.003868,-0.004499,0.249960,0,0);}
.mee_c00404{transform:matrix(0.214997,0.005805,-0.006748,0.249909,0,0);-ms-transform:matrix(0.214997,0.005805,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.214997,0.005805,-0.006748,0.249909,0,0);}
.m3_c00404{transform:matrix(0.215490,0.003879,-0.004499,0.249960,0,0);-ms-transform:matrix(0.215490,0.003879,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.215490,0.003879,-0.004499,0.249960,0,0);}
.mbb_c00404{transform:matrix(0.215576,0.003234,-0.003750,0.249972,0,0);-ms-transform:matrix(0.215576,0.003234,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.215576,0.003234,-0.003750,0.249972,0,0);}
.mf1_c00404{transform:matrix(0.216091,0.005834,-0.006748,0.249909,0,0);-ms-transform:matrix(0.216091,0.005834,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.216091,0.005834,-0.006748,0.249909,0,0);}
.me3_c00404{transform:matrix(0.216466,0.004113,-0.004749,0.249955,0,0);-ms-transform:matrix(0.216466,0.004113,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.216466,0.004113,-0.004749,0.249955,0,0);}
.mbf_c00404{transform:matrix(0.216491,0.003247,-0.003750,0.249972,0,0);-ms-transform:matrix(0.216491,0.003247,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.216491,0.003247,-0.003750,0.249972,0,0);}
.m7f_c00404{transform:matrix(0.216672,0.004333,-0.004999,0.249950,0,0);-ms-transform:matrix(0.216672,0.004333,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.216672,0.004333,-0.004999,0.249950,0,0);}
.m126_c00404{transform:matrix(0.216755,0.003902,-0.004499,0.249960,0,0);-ms-transform:matrix(0.216755,0.003902,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.216755,0.003902,-0.004499,0.249960,0,0);}
.m13c_c00404{transform:matrix(0.216869,0.007381,-0.008504,0.249855,0,0);-ms-transform:matrix(0.216869,0.007381,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.216869,0.007381,-0.008504,0.249855,0,0);}
.m9a_c00404{transform:matrix(0.218170,0.003273,-0.003750,0.249972,0,0);-ms-transform:matrix(0.218170,0.003273,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.218170,0.003273,-0.003750,0.249972,0,0);}
.mba_c00404{transform:matrix(0.218665,0.003280,-0.003750,0.249972,0,0);-ms-transform:matrix(0.218665,0.003280,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.218665,0.003280,-0.003750,0.249972,0,0);}
.me0_c00404{transform:matrix(0.218706,0.004155,-0.004749,0.249955,0,0);-ms-transform:matrix(0.218706,0.004155,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.218706,0.004155,-0.004749,0.249955,0,0);}
.m9c_c00404{transform:matrix(0.218730,0.003281,-0.003750,0.249972,0,0);-ms-transform:matrix(0.218730,0.003281,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.218730,0.003281,-0.003750,0.249972,0,0);}
.ma8_c00404{transform:matrix(0.218970,0.003285,-0.003750,0.249972,0,0);-ms-transform:matrix(0.218970,0.003285,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.218970,0.003285,-0.003750,0.249972,0,0);}
.mbe_c00404{transform:matrix(0.219395,0.003291,-0.003750,0.249972,0,0);-ms-transform:matrix(0.219395,0.003291,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.219395,0.003291,-0.003750,0.249972,0,0);}
.mfc_c00404{transform:matrix(0.219455,0.005925,-0.006748,0.249909,0,0);-ms-transform:matrix(0.219455,0.005925,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.219455,0.005925,-0.006748,0.249909,0,0);}
.m85_c00404{transform:matrix(0.219831,0.004397,-0.004999,0.249950,0,0);-ms-transform:matrix(0.219831,0.004397,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.219831,0.004397,-0.004999,0.249950,0,0);}
.me7_c00404{transform:matrix(0.220400,0.004188,-0.004749,0.249955,0,0);-ms-transform:matrix(0.220400,0.004188,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.220400,0.004188,-0.004749,0.249955,0,0);}
.mab_c00404{transform:matrix(0.220555,0.003308,-0.003750,0.249972,0,0);-ms-transform:matrix(0.220555,0.003308,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.220555,0.003308,-0.003750,0.249972,0,0);}
.m133_c00404{transform:matrix(0.220593,0.003750,-0.004249,0.249964,0,0);-ms-transform:matrix(0.220593,0.003750,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.220593,0.003750,-0.004249,0.249964,0,0);}
.m14d_c00404{transform:matrix(0.220760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220760,0.000000,0.000000,0.250000,0,0);}
.m81_c00404{transform:matrix(0.220786,0.004416,-0.004999,0.249950,0,0);-ms-transform:matrix(0.220786,0.004416,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.220786,0.004416,-0.004999,0.249950,0,0);}
.ma6_c00404{transform:matrix(0.220875,0.003313,-0.003750,0.249972,0,0);-ms-transform:matrix(0.220875,0.003313,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.220875,0.003313,-0.003750,0.249972,0,0);}
.m17_c00404{transform:matrix(0.221169,0.003981,-0.004499,0.249960,0,0);-ms-transform:matrix(0.221169,0.003981,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.221169,0.003981,-0.004499,0.249960,0,0);}
.m71_c00404{transform:matrix(0.221774,0.003992,-0.004499,0.249960,0,0);-ms-transform:matrix(0.221774,0.003992,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.221774,0.003992,-0.004499,0.249960,0,0);}
.m38_c00404{transform:matrix(0.222089,0.003998,-0.004499,0.249960,0,0);-ms-transform:matrix(0.222089,0.003998,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.222089,0.003998,-0.004499,0.249960,0,0);}
.mfa_c00404{transform:matrix(0.223169,0.006026,-0.006748,0.249909,0,0);-ms-transform:matrix(0.223169,0.006026,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.223169,0.006026,-0.006748,0.249909,0,0);}
.mb2_c00404{transform:matrix(0.223245,0.003349,-0.003750,0.249972,0,0);-ms-transform:matrix(0.223245,0.003349,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.223245,0.003349,-0.003750,0.249972,0,0);}
.mf_c00404{transform:matrix(0.223344,0.004020,-0.004499,0.249960,0,0);-ms-transform:matrix(0.223344,0.004020,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.223344,0.004020,-0.004499,0.249960,0,0);}
.m39_c00404{transform:matrix(0.223369,0.004021,-0.004499,0.249960,0,0);-ms-transform:matrix(0.223369,0.004021,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.223369,0.004021,-0.004499,0.249960,0,0);}
.mb7_c00404{transform:matrix(0.223980,0.003360,-0.003750,0.249972,0,0);-ms-transform:matrix(0.223980,0.003360,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.223980,0.003360,-0.003750,0.249972,0,0);}
.m69_c00404{transform:matrix(0.224034,0.004033,-0.004499,0.249960,0,0);-ms-transform:matrix(0.224034,0.004033,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.224034,0.004033,-0.004499,0.249960,0,0);}
.m153_c00404{transform:matrix(0.224457,0.009437,-0.010501,0.249779,0,0);-ms-transform:matrix(0.224457,0.009437,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.224457,0.009437,-0.010501,0.249779,0,0);}
.m96_c00404{transform:matrix(0.224625,0.003369,-0.003750,0.249972,0,0);-ms-transform:matrix(0.224625,0.003369,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.224625,0.003369,-0.003750,0.249972,0,0);}
.m86_c00404{transform:matrix(0.224655,0.003370,-0.003750,0.249972,0,0);-ms-transform:matrix(0.224655,0.003370,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.224655,0.003370,-0.003750,0.249972,0,0);}
.m106_c00404{transform:matrix(0.224664,0.002696,-0.003000,0.249982,0,0);-ms-transform:matrix(0.224664,0.002696,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.224664,0.002696,-0.003000,0.249982,0,0);}
.md9_c00404{transform:matrix(0.224709,0.004269,-0.004749,0.249955,0,0);-ms-transform:matrix(0.224709,0.004269,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.224709,0.004269,-0.004749,0.249955,0,0);}
.mc4_c00404{transform:matrix(0.225090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225090,0.000000,0.000000,0.250000,0,0);}
.m3a_c00404{transform:matrix(0.225398,0.004057,-0.004499,0.249960,0,0);-ms-transform:matrix(0.225398,0.004057,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.225398,0.004057,-0.004499,0.249960,0,0);}
.m8d_c00404{transform:matrix(0.225820,0.003387,-0.003750,0.249972,0,0);-ms-transform:matrix(0.225820,0.003387,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.225820,0.003387,-0.003750,0.249972,0,0);}
.m14e_c00404{transform:matrix(0.226465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226465,0.000000,0.000000,0.250000,0,0);}
.me8_c00404{transform:matrix(0.226559,0.004305,-0.004749,0.249955,0,0);-ms-transform:matrix(0.226559,0.004305,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.226559,0.004305,-0.004749,0.249955,0,0);}
.m35_c00404{transform:matrix(0.226563,0.004078,-0.004499,0.249960,0,0);-ms-transform:matrix(0.226563,0.004078,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.226563,0.004078,-0.004499,0.249960,0,0);}
.m11d_c00404{transform:matrix(0.226708,0.004081,-0.004499,0.249960,0,0);-ms-transform:matrix(0.226708,0.004081,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.226708,0.004081,-0.004499,0.249960,0,0);}
.mb6_c00404{transform:matrix(0.226719,0.003401,-0.003750,0.249972,0,0);-ms-transform:matrix(0.226719,0.003401,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.226719,0.003401,-0.003750,0.249972,0,0);}
.m36_c00404{transform:matrix(0.227008,0.004086,-0.004499,0.249960,0,0);-ms-transform:matrix(0.227008,0.004086,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.227008,0.004086,-0.004499,0.249960,0,0);}
.m135_c00404{transform:matrix(0.227017,0.003859,-0.004249,0.249964,0,0);-ms-transform:matrix(0.227017,0.003859,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.227017,0.003859,-0.004249,0.249964,0,0);}
.m13e_c00404{transform:matrix(0.227283,0.007735,-0.008504,0.249855,0,0);-ms-transform:matrix(0.227283,0.007735,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.227283,0.007735,-0.008504,0.249855,0,0);}
.m154_c00404{transform:matrix(0.227524,0.009566,-0.010501,0.249779,0,0);-ms-transform:matrix(0.227524,0.009566,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.227524,0.009566,-0.010501,0.249779,0,0);}
.m5b_c00404{transform:matrix(0.228123,0.004106,-0.004499,0.249960,0,0);-ms-transform:matrix(0.228123,0.004106,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.228123,0.004106,-0.004499,0.249960,0,0);}
.ma4_c00404{transform:matrix(0.228204,0.003423,-0.003750,0.249972,0,0);-ms-transform:matrix(0.228204,0.003423,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.228204,0.003423,-0.003750,0.249972,0,0);}
.m40_c00404{transform:matrix(0.228573,0.004114,-0.004499,0.249960,0,0);-ms-transform:matrix(0.228573,0.004114,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.228573,0.004114,-0.004499,0.249960,0,0);}
.m104_c00404{transform:matrix(0.228799,0.002746,-0.003000,0.249982,0,0);-ms-transform:matrix(0.228799,0.002746,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.228799,0.002746,-0.003000,0.249982,0,0);}
.mfd_c00404{transform:matrix(0.228802,0.006178,-0.006748,0.249909,0,0);-ms-transform:matrix(0.228802,0.006178,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.228802,0.006178,-0.006748,0.249909,0,0);}
.m66_c00404{transform:matrix(0.229378,0.004129,-0.004499,0.249960,0,0);-ms-transform:matrix(0.229378,0.004129,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.229378,0.004129,-0.004499,0.249960,0,0);}
.m4_c00404{transform:matrix(0.229848,0.004137,-0.004499,0.249960,0,0);-ms-transform:matrix(0.229848,0.004137,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.229848,0.004137,-0.004499,0.249960,0,0);}
.m78_c00404{transform:matrix(0.230178,0.004143,-0.004499,0.249960,0,0);-ms-transform:matrix(0.230178,0.004143,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.230178,0.004143,-0.004499,0.249960,0,0);}
.ma7_c00404{transform:matrix(0.230314,0.003455,-0.003750,0.249972,0,0);-ms-transform:matrix(0.230314,0.003455,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.230314,0.003455,-0.003750,0.249972,0,0);}
.mc9_c00404{transform:matrix(0.230325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230325,0.000000,0.000000,0.250000,0,0);}
.m12f_c00404{transform:matrix(0.230667,0.003921,-0.004249,0.249964,0,0);-ms-transform:matrix(0.230667,0.003921,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.230667,0.003921,-0.004249,0.249964,0,0);}
.med_c00404{transform:matrix(0.230676,0.006228,-0.006748,0.249909,0,0);-ms-transform:matrix(0.230676,0.006228,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.230676,0.006228,-0.006748,0.249909,0,0);}
.m6f_c00404{transform:matrix(0.230748,0.004153,-0.004499,0.249960,0,0);-ms-transform:matrix(0.230748,0.004153,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.230748,0.004153,-0.004499,0.249960,0,0);}
.m1f_c00404{transform:matrix(0.230858,0.004155,-0.004499,0.249960,0,0);-ms-transform:matrix(0.230858,0.004155,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.230858,0.004155,-0.004499,0.249960,0,0);}
.me2_c00404{transform:matrix(0.231253,0.004394,-0.004749,0.249955,0,0);-ms-transform:matrix(0.231253,0.004394,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.231253,0.004394,-0.004749,0.249955,0,0);}
.m144_c00404{transform:matrix(0.231306,0.007872,-0.008504,0.249855,0,0);-ms-transform:matrix(0.231306,0.007872,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.231306,0.007872,-0.008504,0.249855,0,0);}
.m59_c00404{transform:matrix(0.231398,0.004165,-0.004499,0.249960,0,0);-ms-transform:matrix(0.231398,0.004165,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.231398,0.004165,-0.004499,0.249960,0,0);}
.me_c00404{transform:matrix(0.231607,0.004169,-0.004499,0.249960,0,0);-ms-transform:matrix(0.231607,0.004169,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.231607,0.004169,-0.004499,0.249960,0,0);}
.m14c_c00404{transform:matrix(0.231955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231955,0.000000,0.000000,0.250000,0,0);}
.m109_c00404{transform:matrix(0.232268,0.002787,-0.003000,0.249982,0,0);-ms-transform:matrix(0.232268,0.002787,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.232268,0.002787,-0.003000,0.249982,0,0);}
.m83_c00404{transform:matrix(0.232314,0.004646,-0.004999,0.249950,0,0);-ms-transform:matrix(0.232314,0.004646,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.232314,0.004646,-0.004999,0.249950,0,0);}
.m117_c00404{transform:matrix(0.232907,0.004192,-0.004499,0.249960,0,0);-ms-transform:matrix(0.232907,0.004192,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.232907,0.004192,-0.004499,0.249960,0,0);}
.m37_c00404{transform:matrix(0.232972,0.004194,-0.004499,0.249960,0,0);-ms-transform:matrix(0.232972,0.004194,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.232972,0.004194,-0.004499,0.249960,0,0);}
.m13a_c00404{transform:matrix(0.233230,0.007938,-0.008504,0.249855,0,0);-ms-transform:matrix(0.233230,0.007938,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.233230,0.007938,-0.008504,0.249855,0,0);}
.m130_c00404{transform:matrix(0.233536,0.003970,-0.004249,0.249964,0,0);-ms-transform:matrix(0.233536,0.003970,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.233536,0.003970,-0.004249,0.249964,0,0);}
.meb_c00404{transform:matrix(0.233855,0.006314,-0.006748,0.249909,0,0);-ms-transform:matrix(0.233855,0.006314,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.233855,0.006314,-0.006748,0.249909,0,0);}
.m79_c00404{transform:matrix(0.234007,0.004212,-0.004499,0.249960,0,0);-ms-transform:matrix(0.234007,0.004212,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.234007,0.004212,-0.004499,0.249960,0,0);}
.m9_c00404{transform:matrix(0.234152,0.004215,-0.004499,0.249960,0,0);-ms-transform:matrix(0.234152,0.004215,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.234152,0.004215,-0.004499,0.249960,0,0);}
.me6_c00404{transform:matrix(0.234238,0.004451,-0.004749,0.249955,0,0);-ms-transform:matrix(0.234238,0.004451,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.234238,0.004451,-0.004749,0.249955,0,0);}
.m2f_c00404{transform:matrix(0.234762,0.004226,-0.004499,0.249960,0,0);-ms-transform:matrix(0.234762,0.004226,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.234762,0.004226,-0.004499,0.249960,0,0);}
.m115_c00404{transform:matrix(0.234952,0.004229,-0.004499,0.249960,0,0);-ms-transform:matrix(0.234952,0.004229,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.234952,0.004229,-0.004499,0.249960,0,0);}
.m6c_c00404{transform:matrix(0.235357,0.004236,-0.004499,0.249960,0,0);-ms-transform:matrix(0.235357,0.004236,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.235357,0.004236,-0.004499,0.249960,0,0);}
.m1_c00404{transform:matrix(0.235812,0.004245,-0.004499,0.249960,0,0);-ms-transform:matrix(0.235812,0.004245,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.235812,0.004245,-0.004499,0.249960,0,0);}
.mb_c00404{transform:matrix(0.235967,0.004247,-0.004499,0.249960,0,0);-ms-transform:matrix(0.235967,0.004247,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.235967,0.004247,-0.004499,0.249960,0,0);}
.m141_c00404{transform:matrix(0.237048,0.008068,-0.008504,0.249855,0,0);-ms-transform:matrix(0.237048,0.008068,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.237048,0.008068,-0.008504,0.249855,0,0);}
.m134_c00404{transform:matrix(0.237076,0.004030,-0.004249,0.249964,0,0);-ms-transform:matrix(0.237076,0.004030,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.237076,0.004030,-0.004249,0.249964,0,0);}
.m123_c00404{transform:matrix(0.237387,0.004273,-0.004499,0.249960,0,0);-ms-transform:matrix(0.237387,0.004273,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.237387,0.004273,-0.004499,0.249960,0,0);}
.m110_c00404{transform:matrix(0.237427,0.004274,-0.004499,0.249960,0,0);-ms-transform:matrix(0.237427,0.004274,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.237427,0.004274,-0.004499,0.249960,0,0);}
.m114_c00404{transform:matrix(0.237552,0.004276,-0.004499,0.249960,0,0);-ms-transform:matrix(0.237552,0.004276,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.237552,0.004276,-0.004499,0.249960,0,0);}
.mea_c00404{transform:matrix(0.237692,0.004516,-0.004749,0.249955,0,0);-ms-transform:matrix(0.237692,0.004516,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.237692,0.004516,-0.004749,0.249955,0,0);}
.m1b_c00404{transform:matrix(0.237796,0.004280,-0.004499,0.249960,0,0);-ms-transform:matrix(0.237796,0.004280,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.237796,0.004280,-0.004499,0.249960,0,0);}
.m31_c00404{transform:matrix(0.237831,0.004281,-0.004499,0.249960,0,0);-ms-transform:matrix(0.237831,0.004281,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.237831,0.004281,-0.004499,0.249960,0,0);}
.m34_c00404{transform:matrix(0.237881,0.004282,-0.004499,0.249960,0,0);-ms-transform:matrix(0.237881,0.004282,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.237881,0.004282,-0.004499,0.249960,0,0);}
.me4_c00404{transform:matrix(0.238317,0.004528,-0.004749,0.249955,0,0);-ms-transform:matrix(0.238317,0.004528,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.238317,0.004528,-0.004749,0.249955,0,0);}
.m2d_c00404{transform:matrix(0.238401,0.004291,-0.004499,0.249960,0,0);-ms-transform:matrix(0.238401,0.004291,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.238401,0.004291,-0.004499,0.249960,0,0);}
.mca_c00404{transform:matrix(0.238535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238535,0.000000,0.000000,0.250000,0,0);}
.m2e_c00404{transform:matrix(0.238681,0.004296,-0.004499,0.249960,0,0);-ms-transform:matrix(0.238681,0.004296,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.238681,0.004296,-0.004499,0.249960,0,0);}
.m13d_c00404{transform:matrix(0.238692,0.008124,-0.008504,0.249855,0,0);-ms-transform:matrix(0.238692,0.008124,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.238692,0.008124,-0.008504,0.249855,0,0);}
.m6e_c00404{transform:matrix(0.238961,0.004301,-0.004499,0.249960,0,0);-ms-transform:matrix(0.238961,0.004301,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.238961,0.004301,-0.004499,0.249960,0,0);}
.mc3_c00404{transform:matrix(0.239180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239180,0.000000,0.000000,0.250000,0,0);}
.md7_c00404{transform:matrix(0.239187,0.004545,-0.004749,0.249955,0,0);-ms-transform:matrix(0.239187,0.004545,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.239187,0.004545,-0.004749,0.249955,0,0);}
.m10e_c00404{transform:matrix(0.239836,0.004317,-0.004499,0.249960,0,0);-ms-transform:matrix(0.239836,0.004317,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.239836,0.004317,-0.004499,0.249960,0,0);}
.m155_c00404{transform:matrix(0.240018,0.010091,-0.010501,0.249779,0,0);-ms-transform:matrix(0.240018,0.010091,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.240018,0.010091,-0.010501,0.249779,0,0);}
.m13f_c00404{transform:matrix(0.240031,0.008169,-0.008504,0.249855,0,0);-ms-transform:matrix(0.240031,0.008169,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.240031,0.008169,-0.008504,0.249855,0,0);}
.md6_c00404{transform:matrix(0.240112,0.004562,-0.004749,0.249955,0,0);-ms-transform:matrix(0.240112,0.004562,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.240112,0.004562,-0.004749,0.249955,0,0);}
.mdd_c00404{transform:matrix(0.240592,0.004571,-0.004749,0.249955,0,0);-ms-transform:matrix(0.240592,0.004571,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.240592,0.004571,-0.004749,0.249955,0,0);}
.m105_c00404{transform:matrix(0.240618,0.002887,-0.003000,0.249982,0,0);-ms-transform:matrix(0.240618,0.002887,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.240618,0.002887,-0.003000,0.249982,0,0);}
.m7_c00404{transform:matrix(0.240701,0.004333,-0.004499,0.249960,0,0);-ms-transform:matrix(0.240701,0.004333,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.240701,0.004333,-0.004499,0.249960,0,0);}
.m150_c00404{transform:matrix(0.240795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240795,0.000000,0.000000,0.250000,0,0);}
.mb4_c00404{transform:matrix(0.240808,0.003612,-0.003750,0.249972,0,0);-ms-transform:matrix(0.240808,0.003612,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.240808,0.003612,-0.003750,0.249972,0,0);}
.mdc_c00404{transform:matrix(0.241256,0.004584,-0.004749,0.249955,0,0);-ms-transform:matrix(0.241256,0.004584,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.241256,0.004584,-0.004749,0.249955,0,0);}
.m14f_c00404{transform:matrix(0.241450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241450,0.000000,0.000000,0.250000,0,0);}
.m5_c00404{transform:matrix(0.242096,0.004358,-0.004499,0.249960,0,0);-ms-transform:matrix(0.242096,0.004358,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.242096,0.004358,-0.004499,0.249960,0,0);}
.m3c_c00404{transform:matrix(0.242616,0.004367,-0.004499,0.249960,0,0);-ms-transform:matrix(0.242616,0.004367,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.242616,0.004367,-0.004499,0.249960,0,0);}
.m5d_c00404{transform:matrix(0.243531,0.004384,-0.004499,0.249960,0,0);-ms-transform:matrix(0.243531,0.004384,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.243531,0.004384,-0.004499,0.249960,0,0);}
.m74_c00404{transform:matrix(0.244055,0.004393,-0.004499,0.249960,0,0);-ms-transform:matrix(0.244055,0.004393,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.244055,0.004393,-0.004499,0.249960,0,0);}
.m8e_c00404{transform:matrix(0.244068,0.003661,-0.003750,0.249972,0,0);-ms-transform:matrix(0.244068,0.003661,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.244068,0.003661,-0.003750,0.249972,0,0);}
.md8_c00404{transform:matrix(0.244431,0.004644,-0.004749,0.249955,0,0);-ms-transform:matrix(0.244431,0.004644,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.244431,0.004644,-0.004749,0.249955,0,0);}
.m136_c00404{transform:matrix(0.244600,0.004158,-0.004249,0.249964,0,0);-ms-transform:matrix(0.244600,0.004158,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.244600,0.004158,-0.004249,0.249964,0,0);}
.m12_c00404{transform:matrix(0.244660,0.004404,-0.004499,0.249960,0,0);-ms-transform:matrix(0.244660,0.004404,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.244660,0.004404,-0.004499,0.249960,0,0);}
.m33_c00404{transform:matrix(0.244710,0.004405,-0.004499,0.249960,0,0);-ms-transform:matrix(0.244710,0.004405,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.244710,0.004405,-0.004499,0.249960,0,0);}
.mef_c00404{transform:matrix(0.244731,0.006608,-0.006748,0.249909,0,0);-ms-transform:matrix(0.244731,0.006608,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.244731,0.006608,-0.006748,0.249909,0,0);}
.m10b_c00404{transform:matrix(0.244917,0.002939,-0.003000,0.249982,0,0);-ms-transform:matrix(0.244917,0.002939,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.244917,0.002939,-0.003000,0.249982,0,0);}
.m60_c00404{transform:matrix(0.245065,0.004411,-0.004499,0.249960,0,0);-ms-transform:matrix(0.245065,0.004411,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.245065,0.004411,-0.004499,0.249960,0,0);}
.m76_c00404{transform:matrix(0.245175,0.004413,-0.004499,0.249960,0,0);-ms-transform:matrix(0.245175,0.004413,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.245175,0.004413,-0.004499,0.249960,0,0);}
.m5a_c00404{transform:matrix(0.245535,0.004420,-0.004499,0.249960,0,0);-ms-transform:matrix(0.245535,0.004420,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.245535,0.004420,-0.004499,0.249960,0,0);}
.mad_c00404{transform:matrix(0.245647,0.003685,-0.003750,0.249972,0,0);-ms-transform:matrix(0.245647,0.003685,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.245647,0.003685,-0.003750,0.249972,0,0);}
.m124_c00404{transform:matrix(0.245850,0.004425,-0.004499,0.249960,0,0);-ms-transform:matrix(0.245850,0.004425,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.245850,0.004425,-0.004499,0.249960,0,0);}
.m138_c00404{transform:matrix(0.245954,0.004181,-0.004249,0.249964,0,0);-ms-transform:matrix(0.245954,0.004181,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.245954,0.004181,-0.004249,0.249964,0,0);}
.m14_c00404{transform:matrix(0.246370,0.004435,-0.004499,0.249960,0,0);-ms-transform:matrix(0.246370,0.004435,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.246370,0.004435,-0.004499,0.249960,0,0);}
.md2_c00404{transform:matrix(0.246415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246415,0.000000,0.000000,0.250000,0,0);}
.m3f_c00404{transform:matrix(0.246980,0.004446,-0.004499,0.249960,0,0);-ms-transform:matrix(0.246980,0.004446,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.246980,0.004446,-0.004499,0.249960,0,0);}
.m57_c00404{transform:matrix(0.247260,0.004451,-0.004499,0.249960,0,0);-ms-transform:matrix(0.247260,0.004451,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.247260,0.004451,-0.004499,0.249960,0,0);}
.m103_c00404{transform:matrix(0.247367,0.002968,-0.003000,0.249982,0,0);-ms-transform:matrix(0.247367,0.002968,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.247367,0.002968,-0.003000,0.249982,0,0);}
.m44_c00404{transform:matrix(0.248005,0.004464,-0.004499,0.249960,0,0);-ms-transform:matrix(0.248005,0.004464,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.248005,0.004464,-0.004499,0.249960,0,0);}
.m127_c00404{transform:matrix(0.249480,0.004491,-0.004499,0.249960,0,0);-ms-transform:matrix(0.249480,0.004491,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.249480,0.004491,-0.004499,0.249960,0,0);}
.m53_c00404{transform:matrix(0.249840,0.004497,-0.004499,0.249960,0,0);-ms-transform:matrix(0.249840,0.004497,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.249840,0.004497,-0.004499,0.249960,0,0);}
.maf_c00404{transform:matrix(0.250127,0.003752,-0.003750,0.249972,0,0);-ms-transform:matrix(0.250127,0.003752,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.250127,0.003752,-0.003750,0.249972,0,0);}
.m9f_c00404{transform:matrix(0.250372,0.003756,-0.003750,0.249972,0,0);-ms-transform:matrix(0.250372,0.003756,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.250372,0.003756,-0.003750,0.249972,0,0);}
.m107_c00404{transform:matrix(0.250902,0.003011,-0.003000,0.249982,0,0);-ms-transform:matrix(0.250902,0.003011,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.250902,0.003011,-0.003000,0.249982,0,0);}
.m125_c00404{transform:matrix(0.250974,0.004518,-0.004499,0.249960,0,0);-ms-transform:matrix(0.250974,0.004518,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.250974,0.004518,-0.004499,0.249960,0,0);}
.m8_c00404{transform:matrix(0.251004,0.004518,-0.004499,0.249960,0,0);-ms-transform:matrix(0.251004,0.004518,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.251004,0.004518,-0.004499,0.249960,0,0);}
.m87_c00404{transform:matrix(0.251807,0.003777,-0.003750,0.249972,0,0);-ms-transform:matrix(0.251807,0.003777,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.251807,0.003777,-0.003750,0.249972,0,0);}
.m88_c00404{transform:matrix(0.251867,0.003778,-0.003750,0.249972,0,0);-ms-transform:matrix(0.251867,0.003778,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.251867,0.003778,-0.003750,0.249972,0,0);}
.m119_c00404{transform:matrix(0.251949,0.004535,-0.004499,0.249960,0,0);-ms-transform:matrix(0.251949,0.004535,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.251949,0.004535,-0.004499,0.249960,0,0);}
.m68_c00404{transform:matrix(0.252434,0.004544,-0.004499,0.249960,0,0);-ms-transform:matrix(0.252434,0.004544,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.252434,0.004544,-0.004499,0.249960,0,0);}
.m137_c00404{transform:matrix(0.252554,0.004293,-0.004249,0.249964,0,0);-ms-transform:matrix(0.252554,0.004293,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.252554,0.004293,-0.004249,0.249964,0,0);}
.m11a_c00404{transform:matrix(0.252839,0.004551,-0.004499,0.249960,0,0);-ms-transform:matrix(0.252839,0.004551,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.252839,0.004551,-0.004499,0.249960,0,0);}
.m102_c00404{transform:matrix(0.252862,0.003034,-0.003000,0.249982,0,0);-ms-transform:matrix(0.252862,0.003034,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.252862,0.003034,-0.003000,0.249982,0,0);}
.mc_c00404{transform:matrix(0.252979,0.004554,-0.004499,0.249960,0,0);-ms-transform:matrix(0.252979,0.004554,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.252979,0.004554,-0.004499,0.249960,0,0);}
.m72_c00404{transform:matrix(0.253124,0.004556,-0.004499,0.249960,0,0);-ms-transform:matrix(0.253124,0.004556,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.253124,0.004556,-0.004499,0.249960,0,0);}
.mdb_c00404{transform:matrix(0.253739,0.004821,-0.004749,0.249955,0,0);-ms-transform:matrix(0.253739,0.004821,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.253739,0.004821,-0.004749,0.249955,0,0);}
.mae_c00404{transform:matrix(0.253756,0.003806,-0.003750,0.249972,0,0);-ms-transform:matrix(0.253756,0.003806,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.253756,0.003806,-0.003750,0.249972,0,0);}
.mb0_c00404{transform:matrix(0.254101,0.003812,-0.003750,0.249972,0,0);-ms-transform:matrix(0.254101,0.003812,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.254101,0.003812,-0.003750,0.249972,0,0);}
.m121_c00404{transform:matrix(0.254234,0.004576,-0.004499,0.249960,0,0);-ms-transform:matrix(0.254234,0.004576,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.254234,0.004576,-0.004499,0.249960,0,0);}
.m1d_c00404{transform:matrix(0.254274,0.004577,-0.004499,0.249960,0,0);-ms-transform:matrix(0.254274,0.004577,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.254274,0.004577,-0.004499,0.249960,0,0);}
.m8b_c00404{transform:matrix(0.254726,0.003821,-0.003750,0.249972,0,0);-ms-transform:matrix(0.254726,0.003821,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.254726,0.003821,-0.003750,0.249972,0,0);}
.m112_c00404{transform:matrix(0.255054,0.004591,-0.004499,0.249960,0,0);-ms-transform:matrix(0.255054,0.004591,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.255054,0.004591,-0.004499,0.249960,0,0);}
.m6a_c00404{transform:matrix(0.255299,0.004595,-0.004499,0.249960,0,0);-ms-transform:matrix(0.255299,0.004595,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.255299,0.004595,-0.004499,0.249960,0,0);}
.m139_c00404{transform:matrix(0.255333,0.004341,-0.004249,0.249964,0,0);-ms-transform:matrix(0.255333,0.004341,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.255333,0.004341,-0.004249,0.249964,0,0);}
.mc8_c00404{transform:matrix(0.255440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255440,0.000000,0.000000,0.250000,0,0);}
.ma2_c00404{transform:matrix(0.255941,0.003839,-0.003750,0.249972,0,0);-ms-transform:matrix(0.255941,0.003839,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.255941,0.003839,-0.003750,0.249972,0,0);}
.m73_c00404{transform:matrix(0.255949,0.004607,-0.004499,0.249960,0,0);-ms-transform:matrix(0.255949,0.004607,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.255949,0.004607,-0.004499,0.249960,0,0);}
.m131_c00404{transform:matrix(0.256298,0.004357,-0.004249,0.249964,0,0);-ms-transform:matrix(0.256298,0.004357,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.256298,0.004357,-0.004249,0.249964,0,0);}
.mb5_c00404{transform:matrix(0.256761,0.003851,-0.003750,0.249972,0,0);-ms-transform:matrix(0.256761,0.003851,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.256761,0.003851,-0.003750,0.249972,0,0);}
.m15_c00404{transform:matrix(0.258063,0.004645,-0.004499,0.249960,0,0);-ms-transform:matrix(0.258063,0.004645,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.258063,0.004645,-0.004499,0.249960,0,0);}
.m10_c00404{transform:matrix(0.258193,0.004647,-0.004499,0.249960,0,0);-ms-transform:matrix(0.258193,0.004647,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.258193,0.004647,-0.004499,0.249960,0,0);}
.mdf_c00404{transform:matrix(0.258263,0.004907,-0.004749,0.249955,0,0);-ms-transform:matrix(0.258263,0.004907,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.258263,0.004907,-0.004749,0.249955,0,0);}
.m116_c00404{transform:matrix(0.258558,0.004654,-0.004499,0.249960,0,0);-ms-transform:matrix(0.258558,0.004654,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.258558,0.004654,-0.004499,0.249960,0,0);}
.m77_c00404{transform:matrix(0.259798,0.004676,-0.004499,0.249960,0,0);-ms-transform:matrix(0.259798,0.004676,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.259798,0.004676,-0.004499,0.249960,0,0);}
.m10a_c00404{transform:matrix(0.260281,0.003123,-0.003000,0.249982,0,0);-ms-transform:matrix(0.260281,0.003123,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.260281,0.003123,-0.003000,0.249982,0,0);}
.m18_c00404{transform:matrix(0.261228,0.004702,-0.004499,0.249960,0,0);-ms-transform:matrix(0.261228,0.004702,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.261228,0.004702,-0.004499,0.249960,0,0);}
.ma9_c00404{transform:matrix(0.262136,0.003932,-0.003750,0.249972,0,0);-ms-transform:matrix(0.262136,0.003932,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.262136,0.003932,-0.003750,0.249972,0,0);}
.m8c_c00404{transform:matrix(0.263310,0.003950,-0.003750,0.249972,0,0);-ms-transform:matrix(0.263310,0.003950,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.263310,0.003950,-0.003750,0.249972,0,0);}
.mda_c00404{transform:matrix(0.263517,0.005007,-0.004749,0.249955,0,0);-ms-transform:matrix(0.263517,0.005007,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.263517,0.005007,-0.004749,0.249955,0,0);}
.m8a_c00404{transform:matrix(0.263610,0.003954,-0.003750,0.249972,0,0);-ms-transform:matrix(0.263610,0.003954,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.263610,0.003954,-0.003750,0.249972,0,0);}
.m63_c00404{transform:matrix(0.263717,0.004747,-0.004499,0.249960,0,0);-ms-transform:matrix(0.263717,0.004747,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.263717,0.004747,-0.004499,0.249960,0,0);}
.m19_c00404{transform:matrix(0.264762,0.004766,-0.004499,0.249960,0,0);-ms-transform:matrix(0.264762,0.004766,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.264762,0.004766,-0.004499,0.249960,0,0);}
.m54_c00404{transform:matrix(0.264827,0.004767,-0.004499,0.249960,0,0);-ms-transform:matrix(0.264827,0.004767,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.264827,0.004767,-0.004499,0.249960,0,0);}
.m11f_c00404{transform:matrix(0.265857,0.004785,-0.004499,0.249960,0,0);-ms-transform:matrix(0.265857,0.004785,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.265857,0.004785,-0.004499,0.249960,0,0);}
.m5e_c00404{transform:matrix(0.265967,0.004787,-0.004499,0.249960,0,0);-ms-transform:matrix(0.265967,0.004787,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.265967,0.004787,-0.004499,0.249960,0,0);}
.m51_c00404{transform:matrix(0.266677,0.004800,-0.004499,0.249960,0,0);-ms-transform:matrix(0.266677,0.004800,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.266677,0.004800,-0.004499,0.249960,0,0);}
.m89_c00404{transform:matrix(0.266760,0.004001,-0.003750,0.249972,0,0);-ms-transform:matrix(0.266760,0.004001,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.266760,0.004001,-0.003750,0.249972,0,0);}
.m1e_c00404{transform:matrix(0.267257,0.004811,-0.004499,0.249960,0,0);-ms-transform:matrix(0.267257,0.004811,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.267257,0.004811,-0.004499,0.249960,0,0);}
.m65_c00404{transform:matrix(0.267757,0.004820,-0.004499,0.249960,0,0);-ms-transform:matrix(0.267757,0.004820,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.267757,0.004820,-0.004499,0.249960,0,0);}
.m52_c00404{transform:matrix(0.267902,0.004822,-0.004499,0.249960,0,0);-ms-transform:matrix(0.267902,0.004822,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.267902,0.004822,-0.004499,0.249960,0,0);}
.m10c_c00404{transform:matrix(0.267981,0.003216,-0.003000,0.249982,0,0);-ms-transform:matrix(0.267981,0.003216,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.267981,0.003216,-0.003000,0.249982,0,0);}
.m5f_c00404{transform:matrix(0.269341,0.004848,-0.004499,0.249960,0,0);-ms-transform:matrix(0.269341,0.004848,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.269341,0.004848,-0.004499,0.249960,0,0);}
.m7a_c00404{transform:matrix(0.269676,0.004854,-0.004499,0.249960,0,0);-ms-transform:matrix(0.269676,0.004854,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.269676,0.004854,-0.004499,0.249960,0,0);}
.m108_c00404{transform:matrix(0.270011,0.003240,-0.003000,0.249982,0,0);-ms-transform:matrix(0.270011,0.003240,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.270011,0.003240,-0.003000,0.249982,0,0);}
.m7b_c00404{transform:matrix(0.271226,0.004882,-0.004499,0.249960,0,0);-ms-transform:matrix(0.271226,0.004882,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.271226,0.004882,-0.004499,0.249960,0,0);}
.m11e_c00404{transform:matrix(0.271801,0.004892,-0.004499,0.249960,0,0);-ms-transform:matrix(0.271801,0.004892,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.271801,0.004892,-0.004499,0.249960,0,0);}
.ma0_c00404{transform:matrix(0.272584,0.004089,-0.003750,0.249972,0,0);-ms-transform:matrix(0.272584,0.004089,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.272584,0.004089,-0.003750,0.249972,0,0);}
.mc2_c00404{transform:matrix(0.272800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272800,0.000000,0.000000,0.250000,0,0);}
.m100_c00404{transform:matrix(0.272925,0.003275,-0.003000,0.249982,0,0);-ms-transform:matrix(0.272925,0.003275,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.272925,0.003275,-0.003000,0.249982,0,0);}
.m11b_c00404{transform:matrix(0.274121,0.004934,-0.004499,0.249960,0,0);-ms-transform:matrix(0.274121,0.004934,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.274121,0.004934,-0.004499,0.249960,0,0);}
.m11c_c00404{transform:matrix(0.274780,0.004946,-0.004499,0.249960,0,0);-ms-transform:matrix(0.274780,0.004946,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.274780,0.004946,-0.004499,0.249960,0,0);}
.mc6_c00404{transform:matrix(0.276210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276210,0.000000,0.000000,0.250000,0,0);}
.m58_c00404{transform:matrix(0.276250,0.004973,-0.004499,0.249960,0,0);-ms-transform:matrix(0.276250,0.004973,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.276250,0.004973,-0.004499,0.249960,0,0);}
.m55_c00404{transform:matrix(0.276950,0.004985,-0.004499,0.249960,0,0);-ms-transform:matrix(0.276950,0.004985,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.276950,0.004985,-0.004499,0.249960,0,0);}
.mb3_c00404{transform:matrix(0.277669,0.004165,-0.003750,0.249972,0,0);-ms-transform:matrix(0.277669,0.004165,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.277669,0.004165,-0.003750,0.249972,0,0);}
.m75_c00404{transform:matrix(0.277755,0.005000,-0.004499,0.249960,0,0);-ms-transform:matrix(0.277755,0.005000,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.277755,0.005000,-0.004499,0.249960,0,0);}
.mde_c00404{transform:matrix(0.278275,0.005287,-0.004749,0.249955,0,0);-ms-transform:matrix(0.278275,0.005287,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.278275,0.005287,-0.004749,0.249955,0,0);}
.m56_c00404{transform:matrix(0.279105,0.005024,-0.004499,0.249960,0,0);-ms-transform:matrix(0.279105,0.005024,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.279105,0.005024,-0.004499,0.249960,0,0);}
.m118_c00404{transform:matrix(0.279565,0.005032,-0.004499,0.249960,0,0);-ms-transform:matrix(0.279565,0.005032,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.279565,0.005032,-0.004499,0.249960,0,0);}
.mc7_c00404{transform:matrix(0.279925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279925,0.000000,0.000000,0.250000,0,0);}
.m8f_c00404{transform:matrix(0.280303,0.004205,-0.003750,0.249972,0,0);-ms-transform:matrix(0.280303,0.004205,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.280303,0.004205,-0.003750,0.249972,0,0);}
.m122_c00404{transform:matrix(0.280420,0.005048,-0.004499,0.249960,0,0);-ms-transform:matrix(0.280420,0.005048,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.280420,0.005048,-0.004499,0.249960,0,0);}
.m61_c00404{transform:matrix(0.280545,0.005050,-0.004499,0.249960,0,0);-ms-transform:matrix(0.280545,0.005050,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.280545,0.005050,-0.004499,0.249960,0,0);}
.md4_c00404{transform:matrix(0.281004,0.005339,-0.004749,0.249955,0,0);-ms-transform:matrix(0.281004,0.005339,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.281004,0.005339,-0.004749,0.249955,0,0);}
.mc5_c00404{transform:matrix(0.281005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281005,0.000000,0.000000,0.250000,0,0);}
.m1c_c00404{transform:matrix(0.281434,0.005066,-0.004499,0.249960,0,0);-ms-transform:matrix(0.281434,0.005066,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.281434,0.005066,-0.004499,0.249960,0,0);}
.m1a_c00404{transform:matrix(0.281589,0.005069,-0.004499,0.249960,0,0);-ms-transform:matrix(0.281589,0.005069,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.281589,0.005069,-0.004499,0.249960,0,0);}
.mac_c00404{transform:matrix(0.283893,0.004258,-0.003750,0.249972,0,0);-ms-transform:matrix(0.283893,0.004258,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.283893,0.004258,-0.003750,0.249972,0,0);}
.md5_c00404{transform:matrix(0.284134,0.005399,-0.004749,0.249955,0,0);-ms-transform:matrix(0.284134,0.005399,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.284134,0.005399,-0.004749,0.249955,0,0);}
.m5c_c00404{transform:matrix(0.286574,0.005158,-0.004499,0.249960,0,0);-ms-transform:matrix(0.286574,0.005158,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.286574,0.005158,-0.004499,0.249960,0,0);}
.m12d_c00404{transform:matrix(0.287468,0.011798,-0.010252,0.249790,0,0);-ms-transform:matrix(0.287468,0.011798,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.287468,0.011798,-0.010252,0.249790,0,0);}
.m62_c00404{transform:matrix(0.287718,0.005179,-0.004499,0.249960,0,0);-ms-transform:matrix(0.287718,0.005179,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.287718,0.005179,-0.004499,0.249960,0,0);}
.mb1_c00404{transform:matrix(0.288478,0.004327,-0.003750,0.249972,0,0);-ms-transform:matrix(0.288478,0.004327,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.288478,0.004327,-0.003750,0.249972,0,0);}
.m129_c00404{transform:matrix(0.291080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291080,0.000000,0.000000,0.250000,0,0);}
.ma1_c00404{transform:matrix(0.291322,0.004370,-0.003750,0.249972,0,0);-ms-transform:matrix(0.291322,0.004370,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.291322,0.004370,-0.003750,0.249972,0,0);}
.m64_c00404{transform:matrix(0.291988,0.005256,-0.004499,0.249960,0,0);-ms-transform:matrix(0.291988,0.005256,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.291988,0.005256,-0.004499,0.249960,0,0);}
.m90_c00404{transform:matrix(0.292342,0.004385,-0.003750,0.249972,0,0);-ms-transform:matrix(0.292342,0.004385,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.292342,0.004385,-0.003750,0.249972,0,0);}
.m12a_c00404{transform:matrix(0.292499,0.012004,-0.010252,0.249790,0,0);-ms-transform:matrix(0.292499,0.012004,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.292499,0.012004,-0.010252,0.249790,0,0);}
.m12e_c00404{transform:matrix(0.293773,0.012057,-0.010252,0.249790,0,0);-ms-transform:matrix(0.293773,0.012057,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.293773,0.012057,-0.010252,0.249790,0,0);}
.m67_c00404{transform:matrix(0.310440,0.005588,-0.004499,0.249960,0,0);-ms-transform:matrix(0.310440,0.005588,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.310440,0.005588,-0.004499,0.249960,0,0);}
.m15c_c00404{transform:matrix(0.310496,0.013054,-0.010501,0.249779,0,0);-ms-transform:matrix(0.310496,0.013054,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.310496,0.013054,-0.010501,0.249779,0,0);}
.m91_c00404{transform:matrix(0.318919,0.004784,-0.003750,0.249972,0,0);-ms-transform:matrix(0.318919,0.004784,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.318919,0.004784,-0.003750,0.249972,0,0);}
.m159_c00404{transform:matrix(0.320971,0.013494,-0.010501,0.249779,0,0);-ms-transform:matrix(0.320971,0.013494,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.320971,0.013494,-0.010501,0.249779,0,0);}
.m15a_c00404{transform:matrix(0.326332,0.013720,-0.010501,0.249779,0,0);-ms-transform:matrix(0.326332,0.013720,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.326332,0.013720,-0.010501,0.249779,0,0);}
.m152_c00404{transform:matrix(0.334485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334485,0.000000,0.000000,0.250000,0,0);}
.m156_c00404{transform:matrix(0.337387,0.014184,-0.010501,0.249779,0,0);-ms-transform:matrix(0.337387,0.014184,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.337387,0.014184,-0.010501,0.249779,0,0);}
.m15d_c00404{transform:matrix(0.343347,0.014435,-0.010501,0.249779,0,0);-ms-transform:matrix(0.343347,0.014435,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.343347,0.014435,-0.010501,0.249779,0,0);}
.m157_c00404{transform:matrix(0.344406,0.014480,-0.010501,0.249779,0,0);-ms-transform:matrix(0.344406,0.014480,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.344406,0.014480,-0.010501,0.249779,0,0);}
.m15b_c00404{transform:matrix(0.345275,0.014516,-0.010501,0.249779,0,0);-ms-transform:matrix(0.345275,0.014516,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.345275,0.014516,-0.010501,0.249779,0,0);}
.maa_c00404{transform:matrix(0.355715,0.005336,-0.003750,0.249972,0,0);-ms-transform:matrix(0.355715,0.005336,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.355715,0.005336,-0.003750,0.249972,0,0);}
.m12b_c00404{transform:matrix(0.372946,0.015306,-0.010252,0.249790,0,0);-ms-transform:matrix(0.372946,0.015306,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.372946,0.015306,-0.010252,0.249790,0,0);}
.m158_c00404{transform:matrix(0.378546,0.015915,-0.010501,0.249779,0,0);-ms-transform:matrix(0.378546,0.015915,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.378546,0.015915,-0.010501,0.249779,0,0);}
.m149_c00404{transform:matrix(0.848835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.848835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.848835,0.000000,0.000000,0.250000,0,0);}
.m151_c00404{transform:matrix(4.544360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.544360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.544360,0.000000,0.000000,0.250000,0,0);}
.v0_c00404{vertical-align:0.000000px;}
.ls0_c00404{letter-spacing:0.000000px;}
.sc__c00404{text-shadow:none;}
.sc0_c00404{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__c00404{-webkit-text-stroke:0px transparent;}
.sc0_c00404{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00404{word-spacing:0.000000px;}
.fc0_c00404{color:transparent;}
.fs18_c00404{font-size:24.000000px;}
.fs1b_c00404{font-size:24.003468px;}
.fs16_c00404{font-size:48.000000px;}
.fs1a_c00404{font-size:53.993655px;}
.fs0_c00404{font-size:60.000000px;}
.fs12_c00404{font-size:65.989505px;}
.fs11_c00404{font-size:66.000000px;}
.fs5_c00404{font-size:66.010691px;}
.fsa_c00404{font-size:72.000000px;}
.fs10_c00404{font-size:72.005184px;}
.fs7_c00404{font-size:72.008100px;}
.fs3_c00404{font-size:72.011663px;}
.fsc_c00404{font-size:72.012995px;}
.fs19_c00404{font-size:77.990834px;}
.fs9_c00404{font-size:78.008775px;}
.fs13_c00404{font-size:78.011270px;}
.fs2_c00404{font-size:78.012635px;}
.fs14_c00404{font-size:83.964587px;}
.fs17_c00404{font-size:84.000000px;}
.fs1_c00404{font-size:84.013607px;}
.fsd_c00404{font-size:84.015161px;}
.fse_c00404{font-size:84.030612px;}
.fs8_c00404{font-size:90.010124px;}
.fs6_c00404{font-size:90.017998px;}
.fsf_c00404{font-size:90.032799px;}
.fs4_c00404{font-size:96.015551px;}
.fs15_c00404{font-size:101.956998px;}
.fsb_c00404{font-size:120.000000px;}
.y0_c00404{bottom:0.000000px;}
.y161_c00404{bottom:7.062891px;}
.y160_c00404{bottom:9.783996px;}
.y15f_c00404{bottom:11.610000px;}
.y15e_c00404{bottom:49.665117px;}
.y15d_c00404{bottom:50.215732px;}
.y15c_c00404{bottom:50.478478px;}
.y15b_c00404{bottom:50.655985px;}
.y15a_c00404{bottom:51.014658px;}
.y159_c00404{bottom:51.368758px;}
.y158_c00404{bottom:51.985969px;}
.y157_c00404{bottom:52.596322px;}
.y156_c00404{bottom:52.941504px;}
.y155_c00404{bottom:65.629866px;}
.y152_c00404{bottom:66.063000px;}
.y154_c00404{bottom:67.983168px;}
.y153_c00404{bottom:68.875500px;}
.y150_c00404{bottom:74.808000px;}
.y151_c00404{bottom:75.918000px;}
.y14f_c00404{bottom:79.240500px;}
.y14e_c00404{bottom:82.387500px;}
.y14d_c00404{bottom:84.711000px;}
.y14c_c00404{bottom:85.867500px;}
.y14b_c00404{bottom:90.430500px;}
.y148_c00404{bottom:116.146388px;}
.y149_c00404{bottom:117.601602px;}
.y14a_c00404{bottom:119.765841px;}
.y147_c00404{bottom:141.662550px;}
.y146_c00404{bottom:143.967597px;}
.y145_c00404{bottom:145.078989px;}
.y144_c00404{bottom:146.224245px;}
.y143_c00404{bottom:149.277105px;}
.y142_c00404{bottom:150.009822px;}
.y141_c00404{bottom:154.499250px;}
.y140_c00404{bottom:157.491114px;}
.y13f_c00404{bottom:158.267079px;}
.y13e_c00404{bottom:160.491546px;}
.y13d_c00404{bottom:161.991813px;}
.y13c_c00404{bottom:164.176500px;}
.y13b_c00404{bottom:181.115121px;}
.y13a_c00404{bottom:181.500936px;}
.y139_c00404{bottom:182.989907px;}
.y138_c00404{bottom:184.500960px;}
.y137_c00404{bottom:185.263486px;}
.y136_c00404{bottom:186.379163px;}
.y135_c00404{bottom:187.126823px;}
.y134_c00404{bottom:187.846024px;}
.y133_c00404{bottom:189.758474px;}
.y132_c00404{bottom:190.147400px;}
.y131_c00404{bottom:191.974500px;}
.y130_c00404{bottom:214.727512px;}
.y12f_c00404{bottom:217.024784px;}
.y12e_c00404{bottom:218.781592px;}
.y12d_c00404{bottom:222.919927px;}
.y12c_c00404{bottom:225.202500px;}
.y124_c00404{bottom:226.884045px;}
.y125_c00404{bottom:226.884774px;}
.y128_c00404{bottom:226.885101px;}
.y126_c00404{bottom:226.885170px;}
.y129_c00404{bottom:226.885482px;}
.y12a_c00404{bottom:226.885605px;}
.y127_c00404{bottom:226.885638px;}
.y12b_c00404{bottom:251.362500px;}
.y123_c00404{bottom:254.189109px;}
.y122_c00404{bottom:254.954961px;}
.y121_c00404{bottom:255.275913px;}
.y120_c00404{bottom:256.342473px;}
.y11f_c00404{bottom:258.044931px;}
.y11e_c00404{bottom:258.514152px;}
.y11d_c00404{bottom:259.917063px;}
.y11c_c00404{bottom:261.134226px;}
.y11b_c00404{bottom:261.896367px;}
.y11a_c00404{bottom:287.184234px;}
.y119_c00404{bottom:287.772888px;}
.y118_c00404{bottom:288.779097px;}
.y117_c00404{bottom:290.777556px;}
.y116_c00404{bottom:291.584262px;}
.y115_c00404{bottom:292.577214px;}
.y114_c00404{bottom:293.165166px;}
.y113_c00404{bottom:295.342716px;}
.y112_c00404{bottom:295.940928px;}
.y111_c00404{bottom:296.319954px;}
.y110_c00404{bottom:296.940981px;}
.y10f_c00404{bottom:298.287606px;}
.y10e_c00404{bottom:298.893000px;}
.y10d_c00404{bottom:324.859080px;}
.y10c_c00404{bottom:325.387092px;}
.y10b_c00404{bottom:326.181648px;}
.y10a_c00404{bottom:326.586774px;}
.y109_c00404{bottom:327.782748px;}
.y108_c00404{bottom:328.307790px;}
.y107_c00404{bottom:328.706328px;}
.y106_c00404{bottom:329.108250px;}
.y105_c00404{bottom:329.503584px;}
.y104_c00404{bottom:330.160980px;}
.y103_c00404{bottom:330.822444px;}
.y102_c00404{bottom:331.094190px;}
.y101_c00404{bottom:332.643000px;}
.y100_c00404{bottom:360.091792px;}
.yff_c00404{bottom:361.402549px;}
.yfe_c00404{bottom:363.969844px;}
.yfd_c00404{bottom:365.752182px;}
.yfc_c00404{bottom:366.746932px;}
.yfb_c00404{bottom:367.504393px;}
.yfa_c00404{bottom:370.033948px;}
.yf9_c00404{bottom:370.809267px;}
.yf8_c00404{bottom:371.577985px;}
.yf7_c00404{bottom:372.821767px;}
.yf6_c00404{bottom:373.603564px;}
.yf5_c00404{bottom:374.335231px;}
.yf4_c00404{bottom:375.830961px;}
.yf3_c00404{bottom:394.613770px;}
.yf2_c00404{bottom:395.517811px;}
.yf1_c00404{bottom:397.003635px;}
.yf0_c00404{bottom:397.925172px;}
.yef_c00404{bottom:398.814430px;}
.yee_c00404{bottom:403.014118px;}
.yed_c00404{bottom:404.211420px;}
.yec_c00404{bottom:406.561878px;}
.yeb_c00404{bottom:407.485804px;}
.yea_c00404{bottom:410.139000px;}
.ye9_c00404{bottom:432.611091px;}
.ye8_c00404{bottom:433.053528px;}
.ye7_c00404{bottom:433.931171px;}
.ye6_c00404{bottom:434.647177px;}
.ye5_c00404{bottom:435.922565px;}
.ye4_c00404{bottom:436.368774px;}
.ye3_c00404{bottom:437.941242px;}
.ye2_c00404{bottom:438.246039px;}
.ye1_c00404{bottom:439.236614px;}
.ye0_c00404{bottom:439.647425px;}
.ydf_c00404{bottom:440.364116px;}
.yde_c00404{bottom:469.640697px;}
.ydd_c00404{bottom:471.765486px;}
.ydc_c00404{bottom:472.422297px;}
.ydb_c00404{bottom:473.268006px;}
.yda_c00404{bottom:474.300504px;}
.yd9_c00404{bottom:475.577931px;}
.yd8_c00404{bottom:476.208123px;}
.yd7_c00404{bottom:477.049985px;}
.yd6_c00404{bottom:477.666924px;}
.yd5_c00404{bottom:478.486613px;}
.yd4_c00404{bottom:480.801383px;}
.yd3_c00404{bottom:482.493000px;}
.yca_c00404{bottom:501.930000px;}
.ycb_c00404{bottom:502.521000px;}
.ycc_c00404{bottom:503.172000px;}
.ycd_c00404{bottom:503.302500px;}
.yce_c00404{bottom:503.443500px;}
.ycf_c00404{bottom:504.034500px;}
.yd0_c00404{bottom:504.495000px;}
.yd1_c00404{bottom:505.224000px;}
.yd2_c00404{bottom:505.905000px;}
.yc9_c00404{bottom:550.150500px;}
.yc8_c00404{bottom:577.665795px;}
.yc7_c00404{bottom:578.196660px;}
.yc6_c00404{bottom:579.841320px;}
.yc5_c00404{bottom:581.368170px;}
.yc4_c00404{bottom:581.854530px;}
.yc3_c00404{bottom:582.360172px;}
.yc2_c00404{bottom:583.526685px;}
.yc1_c00404{bottom:585.164100px;}
.yc0_c00404{bottom:585.666435px;}
.ybf_c00404{bottom:586.156305px;}
.ybe_c00404{bottom:587.793000px;}
.ybd_c00404{bottom:610.338780px;}
.ybc_c00404{bottom:611.269103px;}
.ybb_c00404{bottom:611.896785px;}
.yba_c00404{bottom:613.310715px;}
.yb9_c00404{bottom:613.761795px;}
.yb8_c00404{bottom:616.102628px;}
.yb7_c00404{bottom:616.556100px;}
.yb6_c00404{bottom:617.470335px;}
.yb5_c00404{bottom:617.802083px;}
.yb4_c00404{bottom:618.554640px;}
.yb3_c00404{bottom:619.015583px;}
.yb2_c00404{bottom:619.468245px;}
.yb1_c00404{bottom:619.914420px;}
.yb0_c00404{bottom:645.748245px;}
.yaf_c00404{bottom:646.979573px;}
.yae_c00404{bottom:647.585738px;}
.yad_c00404{bottom:648.376020px;}
.yac_c00404{bottom:649.002803px;}
.yab_c00404{bottom:649.603298px;}
.yaa_c00404{bottom:650.243018px;}
.ya9_c00404{bottom:650.548545px;}
.ya8_c00404{bottom:652.095188px;}
.ya7_c00404{bottom:652.631355px;}
.ya6_c00404{bottom:653.314995px;}
.ya5_c00404{bottom:655.015298px;}
.ya4_c00404{bottom:681.718125px;}
.ya3_c00404{bottom:682.146225px;}
.ya2_c00404{bottom:683.301765px;}
.ya1_c00404{bottom:683.736780px;}
.ya0_c00404{bottom:684.615248px;}
.y9f_c00404{bottom:685.185727px;}
.y9e_c00404{bottom:685.895048px;}
.y9d_c00404{bottom:686.316075px;}
.y9c_c00404{bottom:687.764003px;}
.y9b_c00404{bottom:688.195433px;}
.y9a_c00404{bottom:688.628055px;}
.y99_c00404{bottom:689.625165px;}
.y98_c00404{bottom:690.042255px;}
.y97_c00404{bottom:690.660788px;}
.y96_c00404{bottom:718.019850px;}
.y95_c00404{bottom:719.680710px;}
.y94_c00404{bottom:720.183405px;}
.y93_c00404{bottom:720.668685px;}
.y92_c00404{bottom:721.839428px;}
.y91_c00404{bottom:722.673930px;}
.y90_c00404{bottom:723.829260px;}
.y8f_c00404{bottom:724.833728px;}
.y8e_c00404{bottom:725.634683px;}
.y8d_c00404{bottom:726.627540px;}
.y8c_c00404{bottom:727.113000px;}
.y8b_c00404{bottom:755.408550px;}
.y8a_c00404{bottom:756.315780px;}
.y89_c00404{bottom:756.969690px;}
.y88_c00404{bottom:757.654380px;}
.y87_c00404{bottom:759.626940px;}
.y86_c00404{bottom:760.296720px;}
.y85_c00404{bottom:762.069300px;}
.y84_c00404{bottom:762.726360px;}
.y83_c00404{bottom:764.056230px;}
.y82_c00404{bottom:765.184500px;}
.y81_c00404{bottom:792.499062px;}
.y80_c00404{bottom:792.910890px;}
.y7f_c00404{bottom:793.967574px;}
.y7e_c00404{bottom:794.509302px;}
.y7d_c00404{bottom:794.900997px;}
.y7c_c00404{bottom:795.697746px;}
.y7b_c00404{bottom:796.225980px;}
.y7a_c00404{bottom:797.538537px;}
.y79_c00404{bottom:797.939961px;}
.y78_c00404{bottom:798.333963px;}
.y77_c00404{bottom:826.479939px;}
.y76_c00404{bottom:826.852047px;}
.y75_c00404{bottom:827.715996px;}
.y74_c00404{bottom:828.205464px;}
.y73_c00404{bottom:828.808557px;}
.y72_c00404{bottom:829.414686px;}
.y71_c00404{bottom:829.780236px;}
.y70_c00404{bottom:830.495604px;}
.y6f_c00404{bottom:830.872878px;}
.y6e_c00404{bottom:831.238266px;}
.y6d_c00404{bottom:831.594858px;}
.y6c_c00404{bottom:832.809828px;}
.y6b_c00404{bottom:833.169564px;}
.y6a_c00404{bottom:861.561495px;}
.y69_c00404{bottom:862.792344px;}
.y68_c00404{bottom:863.142339px;}
.y67_c00404{bottom:863.647620px;}
.y66_c00404{bottom:864.506727px;}
.y65_c00404{bottom:864.979818px;}
.y64_c00404{bottom:865.581885px;}
.y63_c00404{bottom:866.321943px;}
.y62_c00404{bottom:866.675121px;}
.y61_c00404{bottom:867.168408px;}
.y60_c00404{bottom:867.768993px;}
.y5f_c00404{bottom:868.130859px;}
.y5e_c00404{bottom:869.086482px;}
.y5d_c00404{bottom:898.135392px;}
.y5c_c00404{bottom:898.815819px;}
.y5b_c00404{bottom:899.478222px;}
.y5a_c00404{bottom:901.266327px;}
.y59_c00404{bottom:901.713951px;}
.y58_c00404{bottom:904.134243px;}
.y57_c00404{bottom:905.904810px;}
.y56_c00404{bottom:907.223379px;}
.y55_c00404{bottom:908.112942px;}
.y54_c00404{bottom:909.847569px;}
.y53_c00404{bottom:911.213217px;}
.y52_c00404{bottom:932.627238px;}
.y51_c00404{bottom:933.081708px;}
.y50_c00404{bottom:933.554883px;}
.y4f_c00404{bottom:934.810200px;}
.y4e_c00404{bottom:936.050118px;}
.y4d_c00404{bottom:936.651507px;}
.y4c_c00404{bottom:937.283316px;}
.y4b_c00404{bottom:938.210907px;}
.y4a_c00404{bottom:938.520198px;}
.y49_c00404{bottom:939.579753px;}
.y48_c00404{bottom:940.222116px;}
.y47_c00404{bottom:941.730270px;}
.y46_c00404{bottom:969.760179px;}
.y45_c00404{bottom:970.452507px;}
.y44_c00404{bottom:971.165259px;}
.y43_c00404{bottom:972.035010px;}
.y42_c00404{bottom:973.473633px;}
.y41_c00404{bottom:973.820202px;}
.y40_c00404{bottom:974.527716px;}
.y3f_c00404{bottom:975.058713px;}
.y3e_c00404{bottom:976.830231px;}
.y3d_c00404{bottom:977.516364px;}
.y3c_c00404{bottom:978.726096px;}
.y3b_c00404{bottom:1003.692060px;}
.y3a_c00404{bottom:1004.132415px;}
.y39_c00404{bottom:1004.580135px;}
.y38_c00404{bottom:1005.112743px;}
.y37_c00404{bottom:1005.582924px;}
.y36_c00404{bottom:1006.239039px;}
.y35_c00404{bottom:1006.568067px;}
.y34_c00404{bottom:1007.450841px;}
.y33_c00404{bottom:1007.785089px;}
.y32_c00404{bottom:1008.119526px;}
.y31_c00404{bottom:1008.449163px;}
.y30_c00404{bottom:1009.102323px;}
.y2f_c00404{bottom:1009.661127px;}
.y2e_c00404{bottom:1010.316810px;}
.y2d_c00404{bottom:1039.369572px;}
.y2c_c00404{bottom:1040.691642px;}
.y2b_c00404{bottom:1041.093633px;}
.y2a_c00404{bottom:1041.763680px;}
.y29_c00404{bottom:1042.700490px;}
.y28_c00404{bottom:1043.089623px;}
.y27_c00404{bottom:1043.763030px;}
.y26_c00404{bottom:1044.151986px;}
.y25_c00404{bottom:1044.936606px;}
.y24_c00404{bottom:1045.867398px;}
.y23_c00404{bottom:1046.268174px;}
.y22_c00404{bottom:1047.059460px;}
.y21_c00404{bottom:1047.583146px;}
.y20_c00404{bottom:1074.880116px;}
.y1f_c00404{bottom:1075.823538px;}
.y1e_c00404{bottom:1076.471916px;}
.y1d_c00404{bottom:1077.943518px;}
.y1c_c00404{bottom:1078.488066px;}
.y1b_c00404{bottom:1080.080217px;}
.y1a_c00404{bottom:1081.126416px;}
.y19_c00404{bottom:1082.189415px;}
.y18_c00404{bottom:1082.575404px;}
.y17_c00404{bottom:1082.960934px;}
.y16_c00404{bottom:1111.307673px;}
.y15_c00404{bottom:1112.554716px;}
.y14_c00404{bottom:1113.015852px;}
.y13_c00404{bottom:1114.100577px;}
.y12_c00404{bottom:1114.561497px;}
.y11_c00404{bottom:1115.971128px;}
.y10_c00404{bottom:1116.428769px;}
.yf_c00404{bottom:1117.196511px;}
.ye_c00404{bottom:1117.661346px;}
.yd_c00404{bottom:1119.182106px;}
.yc_c00404{bottom:1119.957312px;}
.yb_c00404{bottom:1145.382342px;}
.ya_c00404{bottom:1146.028182px;}
.y9_c00404{bottom:1146.601257px;}
.y8_c00404{bottom:1148.434989px;}
.y7_c00404{bottom:1149.023562px;}
.y6_c00404{bottom:1151.016459px;}
.y5_c00404{bottom:1152.392136px;}
.y4_c00404{bottom:1153.407876px;}
.y3_c00404{bottom:1154.199489px;}
.y2_c00404{bottom:1155.606000px;}
.y1_c00404{bottom:1209.478500px;}
.h1a_c00404{height:24.000000px;}
.h1d_c00404{height:24.003468px;}
.h18_c00404{height:48.000000px;}
.h1c_c00404{height:53.993655px;}
.h2_c00404{height:60.000000px;}
.h14_c00404{height:65.989505px;}
.h13_c00404{height:66.000000px;}
.h7_c00404{height:66.010691px;}
.hc_c00404{height:72.000000px;}
.h12_c00404{height:72.005184px;}
.h9_c00404{height:72.008100px;}
.h5_c00404{height:72.011663px;}
.he_c00404{height:72.012995px;}
.h1b_c00404{height:77.990834px;}
.hb_c00404{height:78.008775px;}
.h15_c00404{height:78.011270px;}
.h4_c00404{height:78.012635px;}
.h16_c00404{height:83.964587px;}
.h19_c00404{height:84.000000px;}
.h3_c00404{height:84.013607px;}
.hf_c00404{height:84.015161px;}
.h10_c00404{height:84.030612px;}
.ha_c00404{height:90.010124px;}
.h8_c00404{height:90.017998px;}
.h11_c00404{height:90.032799px;}
.h6_c00404{height:96.015551px;}
.h17_c00404{height:101.956998px;}
.hd_c00404{height:120.000000px;}
.h1_c00404{height:1251.000000px;}
.h0_c00404{height:1251.150000px;}
.w0_c00404{width:915.000000px;}
.x0_c00404{left:0.000000px;}
.x62_c00404{left:151.971532px;}
.x88_c00404{left:162.910500px;}
.x8f_c00404{left:164.236318px;}
.x3a_c00404{left:165.603195px;}
.x46_c00404{left:166.957803px;}
.x28_c00404{left:168.048774px;}
.xc_c00404{left:169.383096px;}
.x7e_c00404{left:176.850000px;}
.xcf_c00404{left:182.520000px;}
.xd1_c00404{left:194.454000px;}
.xab_c00404{left:197.343000px;}
.x47_c00404{left:199.613907px;}
.x17_c00404{left:202.327110px;}
.xce_c00404{left:208.245162px;}
.x1f_c00404{left:212.299260px;}
.xb2_c00404{left:217.591014px;}
.x90_c00404{left:219.331588px;}
.xd_c00404{left:224.704065px;}
.xb8_c00404{left:227.892060px;}
.x9d_c00404{left:229.760499px;}
.x63_c00404{left:231.715440px;}
.x4e_c00404{left:233.089572px;}
.x18_c00404{left:234.441066px;}
.x2f_c00404{left:244.730394px;}
.x91_c00404{left:250.904179px;}
.x89_c00404{left:251.943000px;}
.x40_c00404{left:255.237996px;}
.xd2_c00404{left:258.976500px;}
.x9e_c00404{left:261.584942px;}
.x72_c00404{left:264.091905px;}
.x5a_c00404{left:265.228500px;}
.xc0_c00404{left:271.090500px;}
.xac_c00404{left:272.155500px;}
.x53_c00404{left:274.606500px;}
.x2_c00404{left:277.243500px;}
.xdb_c00404{left:279.967500px;}
.x30_c00404{left:287.600433px;}
.x29_c00404{left:289.537770px;}
.xc1_c00404{left:293.968500px;}
.x9f_c00404{left:295.599627px;}
.xb3_c00404{left:304.550778px;}
.x78_c00404{left:307.308000px;}
.x64_c00404{left:308.391735px;}
.x48_c00404{left:310.042812px;}
.x20_c00404{left:311.618979px;}
.xa4_c00404{left:317.286000px;}
.x5b_c00404{left:318.625500px;}
.x3b_c00404{left:320.585106px;}
.x19_c00404{left:323.006124px;}
.x92_c00404{left:327.048343px;}
.x7f_c00404{left:329.940000px;}
.x54_c00404{left:331.020000px;}
.xe_c00404{left:333.281868px;}
.x6b_c00404{left:335.638035px;}
.xc6_c00404{left:337.045693px;}
.xb9_c00404{left:338.880024px;}
.x65_c00404{left:341.634225px;}
.x41_c00404{left:342.718512px;}
.xd3_c00404{left:346.392000px;}
.x93_c00404{left:350.514022px;}
.x3_c00404{left:355.383000px;}
.xc7_c00404{left:359.845371px;}
.xad_c00404{left:360.948000px;}
.x3c_c00404{left:365.087013px;}
.xf_c00404{left:366.441744px;}
.x99_c00404{left:371.959500px;}
.x6c_c00404{left:373.983120px;}
.x49_c00404{left:375.661074px;}
.xa0_c00404{left:383.090564px;}
.x4f_c00404{left:386.455623px;}
.x2a_c00404{left:387.818418px;}
.x21_c00404{left:389.171349px;}
.xd8_c00404{left:391.154341px;}
.x83_c00404{left:394.869000px;}
.x31_c00404{left:398.355429px;}
.x4_c00404{left:399.361500px;}
.xb4_c00404{left:404.747487px;}
.x73_c00404{left:406.930065px;}
.x1a_c00404{left:410.221047px;}
.xd0_c00404{left:412.020000px;}
.x8a_c00404{left:416.914500px;}
.x84_c00404{left:418.374000px;}
.x42_c00404{left:419.670705px;}
.x10_c00404{left:421.264686px;}
.xba_c00404{left:426.104766px;}
.xa5_c00404{left:427.191000px;}
.x55_c00404{left:430.366500px;}
.x32_c00404{left:431.523117px;}
.x1_c00404{left:432.540000px;}
.xd9_c00404{left:435.712869px;}
.xb5_c00404{left:438.234390px;}
.x74_c00404{left:439.362060px;}
.xc8_c00404{left:447.753375px;}
.xc2_c00404{left:448.771500px;}
.x79_c00404{left:449.958000px;}
.x50_c00404{left:452.893305px;}
.x11_c00404{left:453.941535px;}
.x5_c00404{left:455.791500px;}
.xbb_c00404{left:458.510769px;}
.xa6_c00404{left:460.135500px;}
.x5c_c00404{left:462.612000px;}
.xd4_c00404{left:469.518000px;}
.x94_c00404{left:471.499816px;}
.x33_c00404{left:475.747710px;}
.xae_c00404{left:481.923000px;}
.x6d_c00404{left:484.494285px;}
.x51_c00404{left:485.574342px;}
.x22_c00404{left:486.963906px;}
.xda_c00404{left:490.531320px;}
.x8b_c00404{left:493.693500px;}
.x34_c00404{left:497.418993px;}
.x6e_c00404{left:506.363122px;}
.x4a_c00404{left:508.271787px;}
.xaf_c00404{left:514.587000px;}
.x85_c00404{left:516.909000px;}
.x5d_c00404{left:518.245500px;}
.x3d_c00404{left:519.533451px;}
.x7a_c00404{left:527.725500px;}
.x52_c00404{left:530.675202px;}
.x6_c00404{left:532.218000px;}
.x9a_c00404{left:537.577500px;}
.x43_c00404{left:541.748595px;}
.x1b_c00404{left:542.854857px;}
.xdc_c00404{left:547.444500px;}
.x80_c00404{left:550.530000px;}
.x56_c00404{left:552.484500px;}
.x12_c00404{left:554.678298px;}
.xc3_c00404{left:558.379500px;}
.xa1_c00404{left:559.733139px;}
.x7b_c00404{left:561.435000px;}
.x4b_c00404{left:563.369226px;}
.xa7_c00404{left:570.594000px;}
.x66_c00404{left:573.088155px;}
.x23_c00404{left:575.503464px;}
.xc9_c00404{left:579.663333px;}
.x44_c00404{left:584.703495px;}
.x13_c00404{left:587.620674px;}
.xd5_c00404{left:592.849500px;}
.x7c_c00404{left:593.859000px;}
.x6f_c00404{left:594.945450px;}
.x5e_c00404{left:596.295000px;}
.xca_c00404{left:601.192283px;}
.x95_c00404{left:603.888393px;}
.x75_c00404{left:606.520058px;}
.xd6_c00404{left:613.098000px;}
.xb0_c00404{left:614.568000px;}
.x67_c00404{left:617.021482px;}
.x4c_c00404{left:618.214638px;}
.xbd_c00404{left:625.304827px;}
.x5f_c00404{left:628.647000px;}
.xd7_c00404{left:634.322754px;}
.xb6_c00404{left:635.999619px;}
.x76_c00404{left:638.692530px;}
.x3e_c00404{left:640.573104px;}
.x2b_c00404{left:641.694003px;}
.x7_c00404{left:642.934500px;}
.x8c_c00404{left:648.436500px;}
.x57_c00404{left:651.112500px;}
.x24_c00404{left:653.556888px;}
.x96_c00404{left:658.947663px;}
.x81_c00404{left:660.150000px;}
.x60_c00404{left:662.160000px;}
.x37_c00404{left:663.245487px;}
.x14_c00404{left:665.138763px;}
.xa8_c00404{left:670.258500px;}
.x8_c00404{left:675.633000px;}
.xa2_c00404{left:680.490180px;}
.x68_c00404{left:684.588008px;}
.x35_c00404{left:686.182770px;}
.x2c_c00404{left:688.655253px;}
.xcb_c00404{left:690.892493px;}
.x8d_c00404{left:692.947500px;}
.x70_c00404{left:696.217980px;}
.x15_c00404{left:698.093139px;}
.xa9_c00404{left:704.019000px;}
.x25_c00404{left:709.454436px;}
.x1c_c00404{left:710.797974px;}
.xb7_c00404{left:713.633208px;}
.x86_c00404{left:715.110000px;}
.x58_c00404{left:718.042500px;}
.xcc_c00404{left:724.542809px;}
.x97_c00404{left:726.462858px;}
.x8e_c00404{left:727.516500px;}
.x36_c00404{left:729.480336px;}
.x45_c00404{left:740.466597px;}
.x2d_c00404{left:741.918921px;}
.x26_c00404{left:742.957554px;}
.x38_c00404{left:752.908440px;}
.xcd_c00404{left:757.198121px;}
.x98_c00404{left:760.489734px;}
.x59_c00404{left:763.404000px;}
.x1d_c00404{left:764.824806px;}
.xbe_c00404{left:768.945043px;}
.xaa_c00404{left:770.232000px;}
.x61_c00404{left:772.884000px;}
.x4d_c00404{left:775.096902px;}
.x9_c00404{left:777.507000px;}
.xc4_c00404{left:779.706000px;}
.x82_c00404{left:782.190000px;}
.x3f_c00404{left:785.491893px;}
.x16_c00404{left:787.213065px;}
.xa3_c00404{left:792.087209px;}
.xc5_c00404{left:802.401000px;}
.xbc_c00404{left:804.060000px;}
.x7d_c00404{left:805.293000px;}
.x69_c00404{left:806.928675px;}
.xa_c00404{left:809.344500px;}
.xb1_c00404{left:814.197000px;}
.x9b_c00404{left:815.218500px;}
.x39_c00404{left:819.115692px;}
.xbf_c00404{left:824.920012px;}
.x71_c00404{left:827.519460px;}
.x87_c00404{left:828.525000px;}
.x2e_c00404{left:830.769219px;}
.x6a_c00404{left:839.869665px;}
.x1e_c00404{left:843.412284px;}
.xb_c00404{left:845.224500px;}
.x9c_c00404{left:848.701500px;}
.x77_c00404{left:850.924702px;}
.x27_c00404{left:853.084434px;}
@media print{
.v0_c00404{vertical-align:0.000000pt;}
.ls0_c00404{letter-spacing:0.000000pt;}
.ws0_c00404{word-spacing:0.000000pt;}
.fs18_c00404{font-size:21.333333pt;}
.fs1b_c00404{font-size:21.336416pt;}
.fs16_c00404{font-size:42.666667pt;}
.fs1a_c00404{font-size:47.994360pt;}
.fs0_c00404{font-size:53.333333pt;}
.fs12_c00404{font-size:58.657338pt;}
.fs11_c00404{font-size:58.666667pt;}
.fs5_c00404{font-size:58.676170pt;}
.fsa_c00404{font-size:64.000000pt;}
.fs10_c00404{font-size:64.004608pt;}
.fs7_c00404{font-size:64.007200pt;}
.fs3_c00404{font-size:64.010367pt;}
.fsc_c00404{font-size:64.011551pt;}
.fs19_c00404{font-size:69.325186pt;}
.fs9_c00404{font-size:69.341133pt;}
.fs13_c00404{font-size:69.343351pt;}
.fs2_c00404{font-size:69.344564pt;}
.fs14_c00404{font-size:74.635188pt;}
.fs17_c00404{font-size:74.666667pt;}
.fs1_c00404{font-size:74.678762pt;}
.fsd_c00404{font-size:74.680143pt;}
.fse_c00404{font-size:74.693878pt;}
.fs8_c00404{font-size:80.008999pt;}
.fs6_c00404{font-size:80.015998pt;}
.fsf_c00404{font-size:80.029155pt;}
.fs4_c00404{font-size:85.347156pt;}
.fs15_c00404{font-size:90.628443pt;}
.fsb_c00404{font-size:106.666667pt;}
.y0_c00404{bottom:0.000000pt;}
.y161_c00404{bottom:6.278125pt;}
.y160_c00404{bottom:8.696885pt;}
.y15f_c00404{bottom:10.320000pt;}
.y15e_c00404{bottom:44.146771pt;}
.y15d_c00404{bottom:44.636207pt;}
.y15c_c00404{bottom:44.869759pt;}
.y15b_c00404{bottom:45.027543pt;}
.y15a_c00404{bottom:45.346363pt;}
.y159_c00404{bottom:45.661119pt;}
.y158_c00404{bottom:46.209751pt;}
.y157_c00404{bottom:46.752287pt;}
.y156_c00404{bottom:47.059115pt;}
.y155_c00404{bottom:58.337659pt;}
.y152_c00404{bottom:58.722667pt;}
.y154_c00404{bottom:60.429483pt;}
.y153_c00404{bottom:61.222667pt;}
.y150_c00404{bottom:66.496000pt;}
.y151_c00404{bottom:67.482667pt;}
.y14f_c00404{bottom:70.436000pt;}
.y14e_c00404{bottom:73.233333pt;}
.y14d_c00404{bottom:75.298667pt;}
.y14c_c00404{bottom:76.326667pt;}
.y14b_c00404{bottom:80.382667pt;}
.y148_c00404{bottom:103.241233pt;}
.y149_c00404{bottom:104.534757pt;}
.y14a_c00404{bottom:106.458525pt;}
.y147_c00404{bottom:125.922267pt;}
.y146_c00404{bottom:127.971197pt;}
.y145_c00404{bottom:128.959101pt;}
.y144_c00404{bottom:129.977107pt;}
.y143_c00404{bottom:132.690760pt;}
.y142_c00404{bottom:133.342064pt;}
.y141_c00404{bottom:137.332667pt;}
.y140_c00404{bottom:139.992101pt;}
.y13f_c00404{bottom:140.681848pt;}
.y13e_c00404{bottom:142.659152pt;}
.y13d_c00404{bottom:143.992723pt;}
.y13c_c00404{bottom:145.934667pt;}
.y13b_c00404{bottom:160.991219pt;}
.y13a_c00404{bottom:161.334165pt;}
.y139_c00404{bottom:162.657695pt;}
.y138_c00404{bottom:164.000853pt;}
.y137_c00404{bottom:164.678655pt;}
.y136_c00404{bottom:165.670367pt;}
.y135_c00404{bottom:166.334953pt;}
.y134_c00404{bottom:166.974244pt;}
.y133_c00404{bottom:168.674199pt;}
.y132_c00404{bottom:169.019911pt;}
.y131_c00404{bottom:170.644000pt;}
.y130_c00404{bottom:190.868900pt;}
.y12f_c00404{bottom:192.910919pt;}
.y12e_c00404{bottom:194.472527pt;}
.y12d_c00404{bottom:198.151047pt;}
.y12c_c00404{bottom:200.180000pt;}
.y124_c00404{bottom:201.674707pt;}
.y125_c00404{bottom:201.675355pt;}
.y128_c00404{bottom:201.675645pt;}
.y126_c00404{bottom:201.675707pt;}
.y129_c00404{bottom:201.675984pt;}
.y12a_c00404{bottom:201.676093pt;}
.y127_c00404{bottom:201.676123pt;}
.y12b_c00404{bottom:223.433333pt;}
.y123_c00404{bottom:225.945875pt;}
.y122_c00404{bottom:226.626632pt;}
.y121_c00404{bottom:226.911923pt;}
.y120_c00404{bottom:227.859976pt;}
.y11f_c00404{bottom:229.373272pt;}
.y11e_c00404{bottom:229.790357pt;}
.y11d_c00404{bottom:231.037389pt;}
.y11c_c00404{bottom:232.119312pt;}
.y11b_c00404{bottom:232.796771pt;}
.y11a_c00404{bottom:255.274875pt;}
.y119_c00404{bottom:255.798123pt;}
.y118_c00404{bottom:256.692531pt;}
.y117_c00404{bottom:258.468939pt;}
.y116_c00404{bottom:259.186011pt;}
.y115_c00404{bottom:260.068635pt;}
.y114_c00404{bottom:260.591259pt;}
.y113_c00404{bottom:262.526859pt;}
.y112_c00404{bottom:263.058603pt;}
.y111_c00404{bottom:263.395515pt;}
.y110_c00404{bottom:263.947539pt;}
.y10f_c00404{bottom:265.144539pt;}
.y10e_c00404{bottom:265.682667pt;}
.y10d_c00404{bottom:288.763627pt;}
.y10c_c00404{bottom:289.232971pt;}
.y10b_c00404{bottom:289.939243pt;}
.y10a_c00404{bottom:290.299355pt;}
.y109_c00404{bottom:291.362443pt;}
.y108_c00404{bottom:291.829147pt;}
.y107_c00404{bottom:292.183403pt;}
.y106_c00404{bottom:292.540667pt;}
.y105_c00404{bottom:292.892075pt;}
.y104_c00404{bottom:293.476427pt;}
.y103_c00404{bottom:294.064395pt;}
.y102_c00404{bottom:294.305947pt;}
.y101_c00404{bottom:295.682667pt;}
.y100_c00404{bottom:320.081593pt;}
.yff_c00404{bottom:321.246711pt;}
.yfe_c00404{bottom:323.528751pt;}
.yfd_c00404{bottom:325.113051pt;}
.yfc_c00404{bottom:325.997273pt;}
.yfb_c00404{bottom:326.670572pt;}
.yfa_c00404{bottom:328.919065pt;}
.yf9_c00404{bottom:329.608237pt;}
.yf8_c00404{bottom:330.291543pt;}
.yf7_c00404{bottom:331.397127pt;}
.yf6_c00404{bottom:332.092057pt;}
.yf5_c00404{bottom:332.742428pt;}
.yf4_c00404{bottom:334.071965pt;}
.yf3_c00404{bottom:350.767796pt;}
.yf2_c00404{bottom:351.571388pt;}
.yf1_c00404{bottom:352.892120pt;}
.yf0_c00404{bottom:353.711264pt;}
.yef_c00404{bottom:354.501716pt;}
.yee_c00404{bottom:358.234772pt;}
.yed_c00404{bottom:359.299040pt;}
.yec_c00404{bottom:361.388336pt;}
.yeb_c00404{bottom:362.209604pt;}
.yea_c00404{bottom:364.568000pt;}
.ye9_c00404{bottom:384.543192pt;}
.ye8_c00404{bottom:384.936469pt;}
.ye7_c00404{bottom:385.716596pt;}
.ye6_c00404{bottom:386.353047pt;}
.ye5_c00404{bottom:387.486724pt;}
.ye4_c00404{bottom:387.883355pt;}
.ye3_c00404{bottom:389.281104pt;}
.ye2_c00404{bottom:389.552035pt;}
.ye1_c00404{bottom:390.432545pt;}
.ye0_c00404{bottom:390.797711pt;}
.ydf_c00404{bottom:391.434769pt;}
.yde_c00404{bottom:417.458397pt;}
.ydd_c00404{bottom:419.347099pt;}
.ydc_c00404{bottom:419.930931pt;}
.ydb_c00404{bottom:420.682672pt;}
.yda_c00404{bottom:421.600448pt;}
.yd9_c00404{bottom:422.735939pt;}
.yd8_c00404{bottom:423.296109pt;}
.yd7_c00404{bottom:424.044431pt;}
.yd6_c00404{bottom:424.592821pt;}
.yd5_c00404{bottom:425.321433pt;}
.yd4_c00404{bottom:427.379007pt;}
.yd3_c00404{bottom:428.882667pt;}
.yca_c00404{bottom:446.160000pt;}
.ycb_c00404{bottom:446.685333pt;}
.ycc_c00404{bottom:447.264000pt;}
.ycd_c00404{bottom:447.380000pt;}
.yce_c00404{bottom:447.505333pt;}
.ycf_c00404{bottom:448.030667pt;}
.yd0_c00404{bottom:448.440000pt;}
.yd1_c00404{bottom:449.088000pt;}
.yd2_c00404{bottom:449.693333pt;}
.yc9_c00404{bottom:489.022667pt;}
.yc8_c00404{bottom:513.480707pt;}
.yc7_c00404{bottom:513.952587pt;}
.yc6_c00404{bottom:515.414507pt;}
.yc5_c00404{bottom:516.771707pt;}
.yc4_c00404{bottom:517.204027pt;}
.yc3_c00404{bottom:517.653487pt;}
.yc2_c00404{bottom:518.690387pt;}
.yc1_c00404{bottom:520.145867pt;}
.yc0_c00404{bottom:520.592387pt;}
.ybf_c00404{bottom:521.027827pt;}
.ybe_c00404{bottom:522.482667pt;}
.ybd_c00404{bottom:542.523360pt;}
.ybc_c00404{bottom:543.350313pt;}
.ybb_c00404{bottom:543.908253pt;}
.yba_c00404{bottom:545.165080pt;}
.yb9_c00404{bottom:545.566040pt;}
.yb8_c00404{bottom:547.646780pt;}
.yb7_c00404{bottom:548.049867pt;}
.yb6_c00404{bottom:548.862520pt;}
.yb5_c00404{bottom:549.157407pt;}
.yb4_c00404{bottom:549.826347pt;}
.yb3_c00404{bottom:550.236073pt;}
.yb2_c00404{bottom:550.638440pt;}
.yb1_c00404{bottom:551.035040pt;}
.yb0_c00404{bottom:573.998440pt;}
.yaf_c00404{bottom:575.092953pt;}
.yae_c00404{bottom:575.631767pt;}
.yad_c00404{bottom:576.334240pt;}
.yac_c00404{bottom:576.891380pt;}
.yab_c00404{bottom:577.425153pt;}
.yaa_c00404{bottom:577.993793pt;}
.ya9_c00404{bottom:578.265373pt;}
.ya8_c00404{bottom:579.640167pt;}
.ya7_c00404{bottom:580.116760pt;}
.ya6_c00404{bottom:580.724440pt;}
.ya5_c00404{bottom:582.235820pt;}
.ya4_c00404{bottom:605.971667pt;}
.ya3_c00404{bottom:606.352200pt;}
.ya2_c00404{bottom:607.379347pt;}
.ya1_c00404{bottom:607.766027pt;}
.ya0_c00404{bottom:608.546887pt;}
.y9f_c00404{bottom:609.053980pt;}
.y9e_c00404{bottom:609.684487pt;}
.y9d_c00404{bottom:610.058733pt;}
.y9c_c00404{bottom:611.345780pt;}
.y9b_c00404{bottom:611.729273pt;}
.y9a_c00404{bottom:612.113827pt;}
.y99_c00404{bottom:613.000147pt;}
.y98_c00404{bottom:613.370893pt;}
.y97_c00404{bottom:613.920700pt;}
.y96_c00404{bottom:638.239867pt;}
.y95_c00404{bottom:639.716187pt;}
.y94_c00404{bottom:640.163027pt;}
.y93_c00404{bottom:640.594387pt;}
.y92_c00404{bottom:641.635047pt;}
.y91_c00404{bottom:642.376827pt;}
.y90_c00404{bottom:643.403787pt;}
.y8f_c00404{bottom:644.296647pt;}
.y8e_c00404{bottom:645.008607pt;}
.y8d_c00404{bottom:645.891147pt;}
.y8c_c00404{bottom:646.322667pt;}
.y8b_c00404{bottom:671.474267pt;}
.y8a_c00404{bottom:672.280693pt;}
.y89_c00404{bottom:672.861947pt;}
.y88_c00404{bottom:673.470560pt;}
.y87_c00404{bottom:675.223947pt;}
.y86_c00404{bottom:675.819307pt;}
.y85_c00404{bottom:677.394933pt;}
.y84_c00404{bottom:677.978987pt;}
.y83_c00404{bottom:679.161093pt;}
.y82_c00404{bottom:680.164000pt;}
.y81_c00404{bottom:704.443611pt;}
.y80_c00404{bottom:704.809680pt;}
.y7f_c00404{bottom:705.748955pt;}
.y7e_c00404{bottom:706.230491pt;}
.y7d_c00404{bottom:706.578664pt;}
.y7c_c00404{bottom:707.286885pt;}
.y7b_c00404{bottom:707.756427pt;}
.y7a_c00404{bottom:708.923144pt;}
.y79_c00404{bottom:709.279965pt;}
.y78_c00404{bottom:709.630189pt;}
.y77_c00404{bottom:734.648835pt;}
.y76_c00404{bottom:734.979597pt;}
.y75_c00404{bottom:735.747552pt;}
.y74_c00404{bottom:736.182635pt;}
.y73_c00404{bottom:736.718717pt;}
.y72_c00404{bottom:737.257499pt;}
.y71_c00404{bottom:737.582432pt;}
.y70_c00404{bottom:738.218315pt;}
.y6f_c00404{bottom:738.553669pt;}
.y6e_c00404{bottom:738.878459pt;}
.y6d_c00404{bottom:739.195429pt;}
.y6c_c00404{bottom:740.275403pt;}
.y6b_c00404{bottom:740.595168pt;}
.y6a_c00404{bottom:765.832440pt;}
.y69_c00404{bottom:766.926528pt;}
.y68_c00404{bottom:767.237635pt;}
.y67_c00404{bottom:767.686773pt;}
.y66_c00404{bottom:768.450424pt;}
.y65_c00404{bottom:768.870949pt;}
.y64_c00404{bottom:769.406120pt;}
.y63_c00404{bottom:770.063949pt;}
.y62_c00404{bottom:770.377885pt;}
.y61_c00404{bottom:770.816363pt;}
.y60_c00404{bottom:771.350216pt;}
.y5f_c00404{bottom:771.671875pt;}
.y5e_c00404{bottom:772.521317pt;}
.y5d_c00404{bottom:798.342571pt;}
.y5c_c00404{bottom:798.947395pt;}
.y5b_c00404{bottom:799.536197pt;}
.y5a_c00404{bottom:801.125624pt;}
.y59_c00404{bottom:801.523512pt;}
.y58_c00404{bottom:803.674883pt;}
.y57_c00404{bottom:805.248720pt;}
.y56_c00404{bottom:806.420781pt;}
.y55_c00404{bottom:807.211504pt;}
.y54_c00404{bottom:808.753395pt;}
.y53_c00404{bottom:809.967304pt;}
.y52_c00404{bottom:829.001989pt;}
.y51_c00404{bottom:829.405963pt;}
.y50_c00404{bottom:829.826563pt;}
.y4f_c00404{bottom:830.942400pt;}
.y4e_c00404{bottom:832.044549pt;}
.y4d_c00404{bottom:832.579117pt;}
.y4c_c00404{bottom:833.140725pt;}
.y4b_c00404{bottom:833.965251pt;}
.y4a_c00404{bottom:834.240176pt;}
.y49_c00404{bottom:835.182003pt;}
.y48_c00404{bottom:835.752992pt;}
.y47_c00404{bottom:837.093573pt;}
.y46_c00404{bottom:862.009048pt;}
.y45_c00404{bottom:862.624451pt;}
.y44_c00404{bottom:863.258008pt;}
.y43_c00404{bottom:864.031120pt;}
.y42_c00404{bottom:865.309896pt;}
.y41_c00404{bottom:865.617957pt;}
.y40_c00404{bottom:866.246859pt;}
.y3f_c00404{bottom:866.718856pt;}
.y3e_c00404{bottom:868.293539pt;}
.y3d_c00404{bottom:868.903435pt;}
.y3c_c00404{bottom:869.978752pt;}
.y3b_c00404{bottom:892.170720pt;}
.y3a_c00404{bottom:892.562147pt;}
.y39_c00404{bottom:892.960120pt;}
.y38_c00404{bottom:893.433549pt;}
.y37_c00404{bottom:893.851488pt;}
.y36_c00404{bottom:894.434701pt;}
.y35_c00404{bottom:894.727171pt;}
.y34_c00404{bottom:895.511859pt;}
.y33_c00404{bottom:895.808968pt;}
.y32_c00404{bottom:896.106245pt;}
.y31_c00404{bottom:896.399256pt;}
.y30_c00404{bottom:896.979843pt;}
.y2f_c00404{bottom:897.476557pt;}
.y2e_c00404{bottom:898.059387pt;}
.y2d_c00404{bottom:923.884064pt;}
.y2c_c00404{bottom:925.059237pt;}
.y2b_c00404{bottom:925.416563pt;}
.y2a_c00404{bottom:926.012160pt;}
.y29_c00404{bottom:926.844880pt;}
.y28_c00404{bottom:927.190776pt;}
.y27_c00404{bottom:927.789360pt;}
.y26_c00404{bottom:928.135099pt;}
.y25_c00404{bottom:928.832539pt;}
.y24_c00404{bottom:929.659909pt;}
.y23_c00404{bottom:930.016155pt;}
.y22_c00404{bottom:930.719520pt;}
.y21_c00404{bottom:931.185019pt;}
.y20_c00404{bottom:955.448992pt;}
.y1f_c00404{bottom:956.287589pt;}
.y1e_c00404{bottom:956.863925pt;}
.y1d_c00404{bottom:958.172016pt;}
.y1c_c00404{bottom:958.656059pt;}
.y1b_c00404{bottom:960.071304pt;}
.y1a_c00404{bottom:961.001259pt;}
.y19_c00404{bottom:961.946147pt;}
.y18_c00404{bottom:962.289248pt;}
.y17_c00404{bottom:962.631941pt;}
.y16_c00404{bottom:987.829043pt;}
.y15_c00404{bottom:988.937525pt;}
.y14_c00404{bottom:989.347424pt;}
.y13_c00404{bottom:990.311624pt;}
.y12_c00404{bottom:990.721331pt;}
.y11_c00404{bottom:991.974336pt;}
.y10_c00404{bottom:992.381128pt;}
.yf_c00404{bottom:993.063565pt;}
.ye_c00404{bottom:993.476752pt;}
.yd_c00404{bottom:994.828539pt;}
.yc_c00404{bottom:995.517611pt;}
.yb_c00404{bottom:1018.117637pt;}
.ya_c00404{bottom:1018.691717pt;}
.y9_c00404{bottom:1019.201117pt;}
.y8_c00404{bottom:1020.831101pt;}
.y7_c00404{bottom:1021.354277pt;}
.y6_c00404{bottom:1023.125741pt;}
.y5_c00404{bottom:1024.348565pt;}
.y4_c00404{bottom:1025.251445pt;}
.y3_c00404{bottom:1025.955101pt;}
.y2_c00404{bottom:1027.205333pt;}
.y1_c00404{bottom:1075.092000pt;}
.h1a_c00404{height:21.333333pt;}
.h1d_c00404{height:21.336416pt;}
.h18_c00404{height:42.666667pt;}
.h1c_c00404{height:47.994360pt;}
.h2_c00404{height:53.333333pt;}
.h14_c00404{height:58.657338pt;}
.h13_c00404{height:58.666667pt;}
.h7_c00404{height:58.676170pt;}
.hc_c00404{height:64.000000pt;}
.h12_c00404{height:64.004608pt;}
.h9_c00404{height:64.007200pt;}
.h5_c00404{height:64.010367pt;}
.he_c00404{height:64.011551pt;}
.h1b_c00404{height:69.325186pt;}
.hb_c00404{height:69.341133pt;}
.h15_c00404{height:69.343351pt;}
.h4_c00404{height:69.344564pt;}
.h16_c00404{height:74.635188pt;}
.h19_c00404{height:74.666667pt;}
.h3_c00404{height:74.678762pt;}
.hf_c00404{height:74.680143pt;}
.h10_c00404{height:74.693878pt;}
.ha_c00404{height:80.008999pt;}
.h8_c00404{height:80.015998pt;}
.h11_c00404{height:80.029155pt;}
.h6_c00404{height:85.347156pt;}
.h17_c00404{height:90.628443pt;}
.hd_c00404{height:106.666667pt;}
.h1_c00404{height:1112.000000pt;}
.h0_c00404{height:1112.133333pt;}
.w0_c00404{width:813.333333pt;}
.x0_c00404{left:0.000000pt;}
.x62_c00404{left:135.085807pt;}
.x88_c00404{left:144.809333pt;}
.x8f_c00404{left:145.987839pt;}
.x3a_c00404{left:147.202840pt;}
.x46_c00404{left:148.406936pt;}
.x28_c00404{left:149.376688pt;}
.xc_c00404{left:150.562752pt;}
.x7e_c00404{left:157.200000pt;}
.xcf_c00404{left:162.240000pt;}
.xd1_c00404{left:172.848000pt;}
.xab_c00404{left:175.416000pt;}
.x47_c00404{left:177.434584pt;}
.x17_c00404{left:179.846320pt;}
.xce_c00404{left:185.106811pt;}
.x1f_c00404{left:188.710453pt;}
.xb2_c00404{left:193.414235pt;}
.x90_c00404{left:194.961412pt;}
.xd_c00404{left:199.736947pt;}
.xb8_c00404{left:202.570720pt;}
.x9d_c00404{left:204.231555pt;}
.x63_c00404{left:205.969280pt;}
.x4e_c00404{left:207.190731pt;}
.x18_c00404{left:208.392059pt;}
.x2f_c00404{left:217.538128pt;}
.x91_c00404{left:223.025937pt;}
.x89_c00404{left:223.949333pt;}
.x40_c00404{left:226.878219pt;}
.xd2_c00404{left:230.201333pt;}
.x9e_c00404{left:232.519948pt;}
.x72_c00404{left:234.748360pt;}
.x5a_c00404{left:235.758667pt;}
.xc0_c00404{left:240.969333pt;}
.xac_c00404{left:241.916000pt;}
.x53_c00404{left:244.094667pt;}
.x2_c00404{left:246.438667pt;}
.xdb_c00404{left:248.860000pt;}
.x30_c00404{left:255.644829pt;}
.x29_c00404{left:257.366907pt;}
.xc1_c00404{left:261.305333pt;}
.x9f_c00404{left:262.755224pt;}
.xb3_c00404{left:270.711803pt;}
.x78_c00404{left:273.162667pt;}
.x64_c00404{left:274.125987pt;}
.x48_c00404{left:275.593611pt;}
.x20_c00404{left:276.994648pt;}
.xa4_c00404{left:282.032000pt;}
.x5b_c00404{left:283.222667pt;}
.x3b_c00404{left:284.964539pt;}
.x19_c00404{left:287.116555pt;}
.x92_c00404{left:290.709639pt;}
.x7f_c00404{left:293.280000pt;}
.x54_c00404{left:294.240000pt;}
.xe_c00404{left:296.250549pt;}
.x6b_c00404{left:298.344920pt;}
.xc6_c00404{left:299.596172pt;}
.xb9_c00404{left:301.226688pt;}
.x65_c00404{left:303.674867pt;}
.x41_c00404{left:304.638677pt;}
.xd3_c00404{left:307.904000pt;}
.x93_c00404{left:311.568020pt;}
.x3_c00404{left:315.896000pt;}
.xc7_c00404{left:319.862552pt;}
.xad_c00404{left:320.842667pt;}
.x3c_c00404{left:324.521789pt;}
.xf_c00404{left:325.725995pt;}
.x99_c00404{left:330.630667pt;}
.x6c_c00404{left:332.429440pt;}
.x49_c00404{left:333.920955pt;}
.xa0_c00404{left:340.524945pt;}
.x4f_c00404{left:343.516109pt;}
.x2a_c00404{left:344.727483pt;}
.x21_c00404{left:345.930088pt;}
.xd8_c00404{left:347.692748pt;}
.x83_c00404{left:350.994667pt;}
.x31_c00404{left:354.093715pt;}
.x4_c00404{left:354.988000pt;}
.xb4_c00404{left:359.775544pt;}
.x73_c00404{left:361.715613pt;}
.x1a_c00404{left:364.640931pt;}
.xd0_c00404{left:366.240000pt;}
.x8a_c00404{left:370.590667pt;}
.x84_c00404{left:371.888000pt;}
.x42_c00404{left:373.040627pt;}
.x10_c00404{left:374.457499pt;}
.xba_c00404{left:378.759792pt;}
.xa5_c00404{left:379.725333pt;}
.x55_c00404{left:382.548000pt;}
.x32_c00404{left:383.576104pt;}
.x1_c00404{left:384.480000pt;}
.xd9_c00404{left:387.300328pt;}
.xb5_c00404{left:389.541680pt;}
.x74_c00404{left:390.544053pt;}
.xc8_c00404{left:398.003000pt;}
.xc2_c00404{left:398.908000pt;}
.x79_c00404{left:399.962667pt;}
.x50_c00404{left:402.571827pt;}
.x11_c00404{left:403.503587pt;}
.x5_c00404{left:405.148000pt;}
.xbb_c00404{left:407.565128pt;}
.xa6_c00404{left:409.009333pt;}
.x5c_c00404{left:411.210667pt;}
.xd4_c00404{left:417.349333pt;}
.x94_c00404{left:419.110948pt;}
.x33_c00404{left:422.886853pt;}
.xae_c00404{left:428.376000pt;}
.x6d_c00404{left:430.661587pt;}
.x51_c00404{left:431.621637pt;}
.x22_c00404{left:432.856805pt;}
.xda_c00404{left:436.027840pt;}
.x8b_c00404{left:438.838667pt;}
.x34_c00404{left:442.150216pt;}
.x6e_c00404{left:450.100553pt;}
.x4a_c00404{left:451.797144pt;}
.xaf_c00404{left:457.410667pt;}
.x85_c00404{left:459.474667pt;}
.x5d_c00404{left:460.662667pt;}
.x3d_c00404{left:461.807512pt;}
.x7a_c00404{left:469.089333pt;}
.x52_c00404{left:471.711291pt;}
.x6_c00404{left:473.082667pt;}
.x9a_c00404{left:477.846667pt;}
.x43_c00404{left:481.554307pt;}
.x1b_c00404{left:482.537651pt;}
.xdc_c00404{left:486.617333pt;}
.x80_c00404{left:489.360000pt;}
.x56_c00404{left:491.097333pt;}
.x12_c00404{left:493.047376pt;}
.xc3_c00404{left:496.337333pt;}
.xa1_c00404{left:497.540568pt;}
.x7b_c00404{left:499.053333pt;}
.x4b_c00404{left:500.772645pt;}
.xa7_c00404{left:507.194667pt;}
.x66_c00404{left:509.411693pt;}
.x23_c00404{left:511.558635pt;}
.xc9_c00404{left:515.256296pt;}
.x44_c00404{left:519.736440pt;}
.x13_c00404{left:522.329488pt;}
.xd5_c00404{left:526.977333pt;}
.x7c_c00404{left:527.874667pt;}
.x6f_c00404{left:528.840400pt;}
.x5e_c00404{left:530.040000pt;}
.xca_c00404{left:534.393140pt;}
.x95_c00404{left:536.789683pt;}
.x75_c00404{left:539.128940pt;}
.xd6_c00404{left:544.976000pt;}
.xb0_c00404{left:546.282667pt;}
.x67_c00404{left:548.463540pt;}
.x4c_c00404{left:549.524123pt;}
.xbd_c00404{left:555.826513pt;}
.x5f_c00404{left:558.797333pt;}
.xd7_c00404{left:563.842448pt;}
.xb6_c00404{left:565.332995pt;}
.x76_c00404{left:567.726693pt;}
.x3e_c00404{left:569.398315pt;}
.x2b_c00404{left:570.394669pt;}
.x7_c00404{left:571.497333pt;}
.x8c_c00404{left:576.388000pt;}
.x57_c00404{left:578.766667pt;}
.x24_c00404{left:580.939456pt;}
.x96_c00404{left:585.731256pt;}
.x81_c00404{left:586.800000pt;}
.x60_c00404{left:588.586667pt;}
.x37_c00404{left:589.551544pt;}
.x14_c00404{left:591.234456pt;}
.xa8_c00404{left:595.785333pt;}
.x8_c00404{left:600.562667pt;}
.xa2_c00404{left:604.880160pt;}
.x68_c00404{left:608.522673pt;}
.x35_c00404{left:609.940240pt;}
.x2c_c00404{left:612.138003pt;}
.xcb_c00404{left:614.126660pt;}
.x8d_c00404{left:615.953333pt;}
.x70_c00404{left:618.860427pt;}
.x15_c00404{left:620.527235pt;}
.xa9_c00404{left:625.794667pt;}
.x25_c00404{left:630.626165pt;}
.x1c_c00404{left:631.820421pt;}
.xb7_c00404{left:634.340629pt;}
.x86_c00404{left:635.653333pt;}
.x58_c00404{left:638.260000pt;}
.xcc_c00404{left:644.038052pt;}
.x97_c00404{left:645.744763pt;}
.x8e_c00404{left:646.681333pt;}
.x36_c00404{left:648.426965pt;}
.x45_c00404{left:658.192531pt;}
.x2d_c00404{left:659.483485pt;}
.x26_c00404{left:660.406715pt;}
.x38_c00404{left:669.251947pt;}
.xcd_c00404{left:673.064996pt;}
.x98_c00404{left:675.990875pt;}
.x59_c00404{left:678.581333pt;}
.x1d_c00404{left:679.844272pt;}
.xbe_c00404{left:683.506705pt;}
.xaa_c00404{left:684.650667pt;}
.x61_c00404{left:687.008000pt;}
.x4d_c00404{left:688.975024pt;}
.x9_c00404{left:691.117333pt;}
.xc4_c00404{left:693.072000pt;}
.x82_c00404{left:695.280000pt;}
.x3f_c00404{left:698.215016pt;}
.x16_c00404{left:699.744947pt;}
.xa3_c00404{left:704.077519pt;}
.xc5_c00404{left:713.245333pt;}
.xbc_c00404{left:714.720000pt;}
.x7d_c00404{left:715.816000pt;}
.x69_c00404{left:717.269933pt;}
.xa_c00404{left:719.417333pt;}
.xb1_c00404{left:723.730667pt;}
.x9b_c00404{left:724.638667pt;}
.x39_c00404{left:728.102837pt;}
.xbf_c00404{left:733.262233pt;}
.x71_c00404{left:735.572853pt;}
.x87_c00404{left:736.466667pt;}
.x2e_c00404{left:738.461528pt;}
.x6a_c00404{left:746.550813pt;}
.x1e_c00404{left:749.699808pt;}
.xb_c00404{left:751.310667pt;}
.x9c_c00404{left:754.401333pt;}
.x77_c00404{left:756.377513pt;}
.x27_c00404{left:758.297275pt;}
}





/* 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_c00405 {
    display:none;
  }
  .loading-indicator_c00405.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00405 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_c00405 { 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_c00405" -> "#page-container .classname_c00405")
 */
.pf_c00405 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00405 { /* 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_c00405.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00405 { /* 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_c00405 { /* 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_c00405 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00405 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00405 {overflow:visible;}
  }
}
.c_c00405 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00405 { /* 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_c00405:after { /* webkit #35443 */
  content: '';
}
.t_c00405:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00405 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 */
}
.__c00405 { /* 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_c00405 { /* info for Javascript */
  display:none;
}
.l_c00405 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00405 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00405 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00405: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_c00405 {
    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_c00405.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00405.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_c00405 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00405{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00405;src:url('chunks/assets/font_cfe63ee56e9e10a97d33a3db.woff2')format("woff");}.ff1_c00405{font-family:ff1_c00405;line-height:1.000000;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;}
.mf_c00405{transform:matrix(0.024986,-0.000450,0.004499,0.249960,0,0);-ms-transform:matrix(0.024986,-0.000450,0.004499,0.249960,0,0);-webkit-transform:matrix(0.024986,-0.000450,0.004499,0.249960,0,0);}
.m28_c00405{transform:matrix(0.044993,-0.000810,0.004499,0.249960,0,0);-ms-transform:matrix(0.044993,-0.000810,0.004499,0.249960,0,0);-webkit-transform:matrix(0.044993,-0.000810,0.004499,0.249960,0,0);}
.m3_c00405{transform:matrix(0.046637,-0.000886,0.004749,0.249955,0,0);-ms-transform:matrix(0.046637,-0.000886,0.004749,0.249955,0,0);-webkit-transform:matrix(0.046637,-0.000886,0.004749,0.249955,0,0);}
.m8a_c00405{transform:matrix(0.055440,-0.000776,0.003500,0.249976,0,0);-ms-transform:matrix(0.055440,-0.000776,0.003500,0.249976,0,0);-webkit-transform:matrix(0.055440,-0.000776,0.003500,0.249976,0,0);}
.m98_c00405{transform:matrix(0.108200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108200,0.000000,0.000000,0.250000,0,0);}
.m14_c00405{transform:matrix(0.131174,-0.002361,0.004499,0.249960,0,0);-ms-transform:matrix(0.131174,-0.002361,0.004499,0.249960,0,0);-webkit-transform:matrix(0.131174,-0.002361,0.004499,0.249960,0,0);}
.m7d_c00405{transform:matrix(0.133155,-0.001997,0.003750,0.249972,0,0);-ms-transform:matrix(0.133155,-0.001997,0.003750,0.249972,0,0);-webkit-transform:matrix(0.133155,-0.001997,0.003750,0.249972,0,0);}
.m11_c00405{transform:matrix(0.135588,-0.002441,0.004499,0.249960,0,0);-ms-transform:matrix(0.135588,-0.002441,0.004499,0.249960,0,0);-webkit-transform:matrix(0.135588,-0.002441,0.004499,0.249960,0,0);}
.m2_c00405{transform:matrix(0.146619,-0.002786,0.004749,0.249955,0,0);-ms-transform:matrix(0.146619,-0.002786,0.004749,0.249955,0,0);-webkit-transform:matrix(0.146619,-0.002786,0.004749,0.249955,0,0);}
.m1a_c00405{transform:matrix(0.149851,-0.002697,0.004499,0.249960,0,0);-ms-transform:matrix(0.149851,-0.002697,0.004499,0.249960,0,0);-webkit-transform:matrix(0.149851,-0.002697,0.004499,0.249960,0,0);}
.m8e_c00405{transform:matrix(0.159214,-0.002229,0.003500,0.249976,0,0);-ms-transform:matrix(0.159214,-0.002229,0.003500,0.249976,0,0);-webkit-transform:matrix(0.159214,-0.002229,0.003500,0.249976,0,0);}
.m17_c00405{transform:matrix(0.161379,-0.002905,0.004499,0.249960,0,0);-ms-transform:matrix(0.161379,-0.002905,0.004499,0.249960,0,0);-webkit-transform:matrix(0.161379,-0.002905,0.004499,0.249960,0,0);}
.m12_c00405{transform:matrix(0.165153,-0.002973,0.004499,0.249960,0,0);-ms-transform:matrix(0.165153,-0.002973,0.004499,0.249960,0,0);-webkit-transform:matrix(0.165153,-0.002973,0.004499,0.249960,0,0);}
.m92_c00405{transform:matrix(0.166259,-0.002328,0.003500,0.249976,0,0);-ms-transform:matrix(0.166259,-0.002328,0.003500,0.249976,0,0);-webkit-transform:matrix(0.166259,-0.002328,0.003500,0.249976,0,0);}
.m2f_c00405{transform:matrix(0.166858,-0.003003,0.004499,0.249960,0,0);-ms-transform:matrix(0.166858,-0.003003,0.004499,0.249960,0,0);-webkit-transform:matrix(0.166858,-0.003003,0.004499,0.249960,0,0);}
.m9f_c00405{transform:matrix(0.167458,-0.003517,0.005249,0.249945,0,0);-ms-transform:matrix(0.167458,-0.003517,0.005249,0.249945,0,0);-webkit-transform:matrix(0.167458,-0.003517,0.005249,0.249945,0,0);}
.m13_c00405{transform:matrix(0.167968,-0.003023,0.004499,0.249960,0,0);-ms-transform:matrix(0.167968,-0.003023,0.004499,0.249960,0,0);-webkit-transform:matrix(0.167968,-0.003023,0.004499,0.249960,0,0);}
.m6d_c00405{transform:matrix(0.168105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168105,0.000000,0.000000,0.250000,0,0);}
.m15_c00405{transform:matrix(0.169488,-0.003051,0.004499,0.249960,0,0);-ms-transform:matrix(0.169488,-0.003051,0.004499,0.249960,0,0);-webkit-transform:matrix(0.169488,-0.003051,0.004499,0.249960,0,0);}
.m93_c00405{transform:matrix(0.172273,-0.002412,0.003500,0.249976,0,0);-ms-transform:matrix(0.172273,-0.002412,0.003500,0.249976,0,0);-webkit-transform:matrix(0.172273,-0.002412,0.003500,0.249976,0,0);}
.m0_c00405{transform:matrix(0.173339,-0.003293,0.004749,0.249955,0,0);-ms-transform:matrix(0.173339,-0.003293,0.004749,0.249955,0,0);-webkit-transform:matrix(0.173339,-0.003293,0.004749,0.249955,0,0);}
.m6c_c00405{transform:matrix(0.174750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174750,0.000000,0.000000,0.250000,0,0);}
.m79_c00405{transform:matrix(0.178071,-0.003205,0.004499,0.249960,0,0);-ms-transform:matrix(0.178071,-0.003205,0.004499,0.249960,0,0);-webkit-transform:matrix(0.178071,-0.003205,0.004499,0.249960,0,0);}
.m82_c00405{transform:matrix(0.178315,-0.002675,0.003750,0.249972,0,0);-ms-transform:matrix(0.178315,-0.002675,0.003750,0.249972,0,0);-webkit-transform:matrix(0.178315,-0.002675,0.003750,0.249972,0,0);}
.m7a_c00405{transform:matrix(0.179136,-0.003224,0.004499,0.249960,0,0);-ms-transform:matrix(0.179136,-0.003224,0.004499,0.249960,0,0);-webkit-transform:matrix(0.179136,-0.003224,0.004499,0.249960,0,0);}
.m16_c00405{transform:matrix(0.181421,-0.003266,0.004499,0.249960,0,0);-ms-transform:matrix(0.181421,-0.003266,0.004499,0.249960,0,0);-webkit-transform:matrix(0.181421,-0.003266,0.004499,0.249960,0,0);}
.m90_c00405{transform:matrix(0.182737,-0.002558,0.003500,0.249976,0,0);-ms-transform:matrix(0.182737,-0.002558,0.003500,0.249976,0,0);-webkit-transform:matrix(0.182737,-0.002558,0.003500,0.249976,0,0);}
.m8c_c00405{transform:matrix(0.183077,-0.002563,0.003500,0.249976,0,0);-ms-transform:matrix(0.183077,-0.002563,0.003500,0.249976,0,0);-webkit-transform:matrix(0.183077,-0.002563,0.003500,0.249976,0,0);}
.m77_c00405{transform:matrix(0.184145,-0.003315,0.004499,0.249960,0,0);-ms-transform:matrix(0.184145,-0.003315,0.004499,0.249960,0,0);-webkit-transform:matrix(0.184145,-0.003315,0.004499,0.249960,0,0);}
.m18_c00405{transform:matrix(0.185410,-0.003337,0.004499,0.249960,0,0);-ms-transform:matrix(0.185410,-0.003337,0.004499,0.249960,0,0);-webkit-transform:matrix(0.185410,-0.003337,0.004499,0.249960,0,0);}
.m8d_c00405{transform:matrix(0.185532,-0.002597,0.003500,0.249976,0,0);-ms-transform:matrix(0.185532,-0.002597,0.003500,0.249976,0,0);-webkit-transform:matrix(0.185532,-0.002597,0.003500,0.249976,0,0);}
.m70_c00405{transform:matrix(0.186925,-0.003365,0.004499,0.249960,0,0);-ms-transform:matrix(0.186925,-0.003365,0.004499,0.249960,0,0);-webkit-transform:matrix(0.186925,-0.003365,0.004499,0.249960,0,0);}
.ma0_c00405{transform:matrix(0.187059,-0.003928,0.005249,0.249945,0,0);-ms-transform:matrix(0.187059,-0.003928,0.005249,0.249945,0,0);-webkit-transform:matrix(0.187059,-0.003928,0.005249,0.249945,0,0);}
.m41_c00405{transform:matrix(0.189589,-0.003413,0.004499,0.249960,0,0);-ms-transform:matrix(0.189589,-0.003413,0.004499,0.249960,0,0);-webkit-transform:matrix(0.189589,-0.003413,0.004499,0.249960,0,0);}
.m48_c00405{transform:matrix(0.190799,-0.003434,0.004499,0.249960,0,0);-ms-transform:matrix(0.190799,-0.003434,0.004499,0.249960,0,0);-webkit-transform:matrix(0.190799,-0.003434,0.004499,0.249960,0,0);}
.m8b_c00405{transform:matrix(0.191566,-0.002682,0.003500,0.249976,0,0);-ms-transform:matrix(0.191566,-0.002682,0.003500,0.249976,0,0);-webkit-transform:matrix(0.191566,-0.002682,0.003500,0.249976,0,0);}
.m2e_c00405{transform:matrix(0.192459,-0.003464,0.004499,0.249960,0,0);-ms-transform:matrix(0.192459,-0.003464,0.004499,0.249960,0,0);-webkit-transform:matrix(0.192459,-0.003464,0.004499,0.249960,0,0);}
.m55_c00405{transform:matrix(0.194410,-0.003694,0.004749,0.249955,0,0);-ms-transform:matrix(0.194410,-0.003694,0.004749,0.249955,0,0);-webkit-transform:matrix(0.194410,-0.003694,0.004749,0.249955,0,0);}
.m60_c00405{transform:matrix(0.198334,-0.003768,0.004749,0.249955,0,0);-ms-transform:matrix(0.198334,-0.003768,0.004749,0.249955,0,0);-webkit-transform:matrix(0.198334,-0.003768,0.004749,0.249955,0,0);}
.m8f_c00405{transform:matrix(0.198486,-0.002779,0.003500,0.249976,0,0);-ms-transform:matrix(0.198486,-0.002779,0.003500,0.249976,0,0);-webkit-transform:matrix(0.198486,-0.002779,0.003500,0.249976,0,0);}
.m91_c00405{transform:matrix(0.199325,-0.002791,0.003500,0.249976,0,0);-ms-transform:matrix(0.199325,-0.002791,0.003500,0.249976,0,0);-webkit-transform:matrix(0.199325,-0.002791,0.003500,0.249976,0,0);}
.m9e_c00405{transform:matrix(0.199766,-0.004195,0.005249,0.249945,0,0);-ms-transform:matrix(0.199766,-0.004195,0.005249,0.249945,0,0);-webkit-transform:matrix(0.199766,-0.004195,0.005249,0.249945,0,0);}
.m9c_c00405{transform:matrix(0.200731,-0.004215,0.005249,0.249945,0,0);-ms-transform:matrix(0.200731,-0.004215,0.005249,0.249945,0,0);-webkit-transform:matrix(0.200731,-0.004215,0.005249,0.249945,0,0);}
.m9b_c00405{transform:matrix(0.201381,-0.004229,0.005249,0.249945,0,0);-ms-transform:matrix(0.201381,-0.004229,0.005249,0.249945,0,0);-webkit-transform:matrix(0.201381,-0.004229,0.005249,0.249945,0,0);}
.m99_c00405{transform:matrix(0.201661,-0.004235,0.005249,0.249945,0,0);-ms-transform:matrix(0.201661,-0.004235,0.005249,0.249945,0,0);-webkit-transform:matrix(0.201661,-0.004235,0.005249,0.249945,0,0);}
.m75_c00405{transform:matrix(0.202242,-0.003640,0.004499,0.249960,0,0);-ms-transform:matrix(0.202242,-0.003640,0.004499,0.249960,0,0);-webkit-transform:matrix(0.202242,-0.003640,0.004499,0.249960,0,0);}
.m3b_c00405{transform:matrix(0.202597,-0.003647,0.004499,0.249960,0,0);-ms-transform:matrix(0.202597,-0.003647,0.004499,0.249960,0,0);-webkit-transform:matrix(0.202597,-0.003647,0.004499,0.249960,0,0);}
.m3c_c00405{transform:matrix(0.206162,-0.003711,0.004499,0.249960,0,0);-ms-transform:matrix(0.206162,-0.003711,0.004499,0.249960,0,0);-webkit-transform:matrix(0.206162,-0.003711,0.004499,0.249960,0,0);}
.m4c_c00405{transform:matrix(0.207416,-0.003733,0.004499,0.249960,0,0);-ms-transform:matrix(0.207416,-0.003733,0.004499,0.249960,0,0);-webkit-transform:matrix(0.207416,-0.003733,0.004499,0.249960,0,0);}
.m95_c00405{transform:matrix(0.210039,-0.002941,0.003500,0.249976,0,0);-ms-transform:matrix(0.210039,-0.002941,0.003500,0.249976,0,0);-webkit-transform:matrix(0.210039,-0.002941,0.003500,0.249976,0,0);}
.m72_c00405{transform:matrix(0.210891,-0.003796,0.004499,0.249960,0,0);-ms-transform:matrix(0.210891,-0.003796,0.004499,0.249960,0,0);-webkit-transform:matrix(0.210891,-0.003796,0.004499,0.249960,0,0);}
.m86_c00405{transform:matrix(0.212586,-0.003189,0.003750,0.249972,0,0);-ms-transform:matrix(0.212586,-0.003189,0.003750,0.249972,0,0);-webkit-transform:matrix(0.212586,-0.003189,0.003750,0.249972,0,0);}
.m1_c00405{transform:matrix(0.212777,-0.004043,0.004749,0.249955,0,0);-ms-transform:matrix(0.212777,-0.004043,0.004749,0.249955,0,0);-webkit-transform:matrix(0.212777,-0.004043,0.004749,0.249955,0,0);}
.m4e_c00405{transform:matrix(0.213235,-0.003838,0.004499,0.249960,0,0);-ms-transform:matrix(0.213235,-0.003838,0.004499,0.249960,0,0);-webkit-transform:matrix(0.213235,-0.003838,0.004499,0.249960,0,0);}
.m57_c00405{transform:matrix(0.214206,-0.004070,0.004749,0.249955,0,0);-ms-transform:matrix(0.214206,-0.004070,0.004749,0.249955,0,0);-webkit-transform:matrix(0.214206,-0.004070,0.004749,0.249955,0,0);}
.m59_c00405{transform:matrix(0.217666,-0.004136,0.004749,0.249955,0,0);-ms-transform:matrix(0.217666,-0.004136,0.004749,0.249955,0,0);-webkit-transform:matrix(0.217666,-0.004136,0.004749,0.249955,0,0);}
.m19_c00405{transform:matrix(0.217930,-0.003923,0.004499,0.249960,0,0);-ms-transform:matrix(0.217930,-0.003923,0.004499,0.249960,0,0);-webkit-transform:matrix(0.217930,-0.003923,0.004499,0.249960,0,0);}
.m76_c00405{transform:matrix(0.219110,-0.003944,0.004499,0.249960,0,0);-ms-transform:matrix(0.219110,-0.003944,0.004499,0.249960,0,0);-webkit-transform:matrix(0.219110,-0.003944,0.004499,0.249960,0,0);}
.m2c_c00405{transform:matrix(0.219404,-0.003949,0.004499,0.249960,0,0);-ms-transform:matrix(0.219404,-0.003949,0.004499,0.249960,0,0);-webkit-transform:matrix(0.219404,-0.003949,0.004499,0.249960,0,0);}
.m42_c00405{transform:matrix(0.219609,-0.003953,0.004499,0.249960,0,0);-ms-transform:matrix(0.219609,-0.003953,0.004499,0.249960,0,0);-webkit-transform:matrix(0.219609,-0.003953,0.004499,0.249960,0,0);}
.m37_c00405{transform:matrix(0.220384,-0.003967,0.004499,0.249960,0,0);-ms-transform:matrix(0.220384,-0.003967,0.004499,0.249960,0,0);-webkit-transform:matrix(0.220384,-0.003967,0.004499,0.249960,0,0);}
.m3d_c00405{transform:matrix(0.220654,-0.003972,0.004499,0.249960,0,0);-ms-transform:matrix(0.220654,-0.003972,0.004499,0.249960,0,0);-webkit-transform:matrix(0.220654,-0.003972,0.004499,0.249960,0,0);}
.m51_c00405{transform:matrix(0.220740,-0.004194,0.004749,0.249955,0,0);-ms-transform:matrix(0.220740,-0.004194,0.004749,0.249955,0,0);-webkit-transform:matrix(0.220740,-0.004194,0.004749,0.249955,0,0);}
.m32_c00405{transform:matrix(0.221374,-0.003985,0.004499,0.249960,0,0);-ms-transform:matrix(0.221374,-0.003985,0.004499,0.249960,0,0);-webkit-transform:matrix(0.221374,-0.003985,0.004499,0.249960,0,0);}
.m73_c00405{transform:matrix(0.223984,-0.004032,0.004499,0.249960,0,0);-ms-transform:matrix(0.223984,-0.004032,0.004499,0.249960,0,0);-webkit-transform:matrix(0.223984,-0.004032,0.004499,0.249960,0,0);}
.m63_c00405{transform:matrix(0.225214,-0.004279,0.004749,0.249955,0,0);-ms-transform:matrix(0.225214,-0.004279,0.004749,0.249955,0,0);-webkit-transform:matrix(0.225214,-0.004279,0.004749,0.249955,0,0);}
.m5b_c00405{transform:matrix(0.225644,-0.004287,0.004749,0.249955,0,0);-ms-transform:matrix(0.225644,-0.004287,0.004749,0.249955,0,0);-webkit-transform:matrix(0.225644,-0.004287,0.004749,0.249955,0,0);}
.m7_c00405{transform:matrix(0.227393,-0.004093,0.004499,0.249960,0,0);-ms-transform:matrix(0.227393,-0.004093,0.004499,0.249960,0,0);-webkit-transform:matrix(0.227393,-0.004093,0.004499,0.249960,0,0);}
.m6a_c00405{transform:matrix(0.228669,-0.004345,0.004749,0.249955,0,0);-ms-transform:matrix(0.228669,-0.004345,0.004749,0.249955,0,0);-webkit-transform:matrix(0.228669,-0.004345,0.004749,0.249955,0,0);}
.m33_c00405{transform:matrix(0.230338,-0.004146,0.004499,0.249960,0,0);-ms-transform:matrix(0.230338,-0.004146,0.004499,0.249960,0,0);-webkit-transform:matrix(0.230338,-0.004146,0.004499,0.249960,0,0);}
.m7b_c00405{transform:matrix(0.230693,-0.004152,0.004499,0.249960,0,0);-ms-transform:matrix(0.230693,-0.004152,0.004499,0.249960,0,0);-webkit-transform:matrix(0.230693,-0.004152,0.004499,0.249960,0,0);}
.m56_c00405{transform:matrix(0.230928,-0.004388,0.004749,0.249955,0,0);-ms-transform:matrix(0.230928,-0.004388,0.004749,0.249955,0,0);-webkit-transform:matrix(0.230928,-0.004388,0.004749,0.249955,0,0);}
.m74_c00405{transform:matrix(0.231822,-0.004173,0.004499,0.249960,0,0);-ms-transform:matrix(0.231822,-0.004173,0.004499,0.249960,0,0);-webkit-transform:matrix(0.231822,-0.004173,0.004499,0.249960,0,0);}
.m71_c00405{transform:matrix(0.232107,-0.004178,0.004499,0.249960,0,0);-ms-transform:matrix(0.232107,-0.004178,0.004499,0.249960,0,0);-webkit-transform:matrix(0.232107,-0.004178,0.004499,0.249960,0,0);}
.m67_c00405{transform:matrix(0.232353,-0.004415,0.004749,0.249955,0,0);-ms-transform:matrix(0.232353,-0.004415,0.004749,0.249955,0,0);-webkit-transform:matrix(0.232353,-0.004415,0.004749,0.249955,0,0);}
.m53_c00405{transform:matrix(0.233408,-0.004435,0.004749,0.249955,0,0);-ms-transform:matrix(0.233408,-0.004435,0.004749,0.249955,0,0);-webkit-transform:matrix(0.233408,-0.004435,0.004749,0.249955,0,0);}
.m25_c00405{transform:matrix(0.233937,-0.004211,0.004499,0.249960,0,0);-ms-transform:matrix(0.233937,-0.004211,0.004499,0.249960,0,0);-webkit-transform:matrix(0.233937,-0.004211,0.004499,0.249960,0,0);}
.m6f_c00405{transform:matrix(0.234012,-0.004212,0.004499,0.249960,0,0);-ms-transform:matrix(0.234012,-0.004212,0.004499,0.249960,0,0);-webkit-transform:matrix(0.234012,-0.004212,0.004499,0.249960,0,0);}
.m88_c00405{transform:matrix(0.234234,-0.003514,0.003750,0.249972,0,0);-ms-transform:matrix(0.234234,-0.003514,0.003750,0.249972,0,0);-webkit-transform:matrix(0.234234,-0.003514,0.003750,0.249972,0,0);}
.m3e_c00405{transform:matrix(0.234747,-0.004225,0.004499,0.249960,0,0);-ms-transform:matrix(0.234747,-0.004225,0.004499,0.249960,0,0);-webkit-transform:matrix(0.234747,-0.004225,0.004499,0.249960,0,0);}
.m40_c00405{transform:matrix(0.236142,-0.004251,0.004499,0.249960,0,0);-ms-transform:matrix(0.236142,-0.004251,0.004499,0.249960,0,0);-webkit-transform:matrix(0.236142,-0.004251,0.004499,0.249960,0,0);}
.m47_c00405{transform:matrix(0.237831,-0.004281,0.004499,0.249960,0,0);-ms-transform:matrix(0.237831,-0.004281,0.004499,0.249960,0,0);-webkit-transform:matrix(0.237831,-0.004281,0.004499,0.249960,0,0);}
.m84_c00405{transform:matrix(0.238198,-0.003573,0.003750,0.249972,0,0);-ms-transform:matrix(0.238198,-0.003573,0.003750,0.249972,0,0);-webkit-transform:matrix(0.238198,-0.003573,0.003750,0.249972,0,0);}
.ma3_c00405{transform:matrix(0.242652,-0.005096,0.005249,0.249945,0,0);-ms-transform:matrix(0.242652,-0.005096,0.005249,0.249945,0,0);-webkit-transform:matrix(0.242652,-0.005096,0.005249,0.249945,0,0);}
.m80_c00405{transform:matrix(0.243113,-0.003647,0.003750,0.249972,0,0);-ms-transform:matrix(0.243113,-0.003647,0.003750,0.249972,0,0);-webkit-transform:matrix(0.243113,-0.003647,0.003750,0.249972,0,0);}
.m58_c00405{transform:matrix(0.243166,-0.004620,0.004749,0.249955,0,0);-ms-transform:matrix(0.243166,-0.004620,0.004749,0.249955,0,0);-webkit-transform:matrix(0.243166,-0.004620,0.004749,0.249955,0,0);}
.m4_c00405{transform:matrix(0.244515,-0.004401,0.004499,0.249960,0,0);-ms-transform:matrix(0.244515,-0.004401,0.004499,0.249960,0,0);-webkit-transform:matrix(0.244515,-0.004401,0.004499,0.249960,0,0);}
.m26_c00405{transform:matrix(0.244775,-0.004406,0.004499,0.249960,0,0);-ms-transform:matrix(0.244775,-0.004406,0.004499,0.249960,0,0);-webkit-transform:matrix(0.244775,-0.004406,0.004499,0.249960,0,0);}
.m9d_c00405{transform:matrix(0.245236,-0.005150,0.005249,0.249945,0,0);-ms-transform:matrix(0.245236,-0.005150,0.005249,0.249945,0,0);-webkit-transform:matrix(0.245236,-0.005150,0.005249,0.249945,0,0);}
.m1e_c00405{transform:matrix(0.249600,-0.004493,0.004499,0.249960,0,0);-ms-transform:matrix(0.249600,-0.004493,0.004499,0.249960,0,0);-webkit-transform:matrix(0.249600,-0.004493,0.004499,0.249960,0,0);}
.m62_c00405{transform:matrix(0.250145,-0.004753,0.004749,0.249955,0,0);-ms-transform:matrix(0.250145,-0.004753,0.004749,0.249955,0,0);-webkit-transform:matrix(0.250145,-0.004753,0.004749,0.249955,0,0);}
.m96_c00405{transform:matrix(0.250800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250800,0.000000,0.000000,0.250000,0,0);}
.m30_c00405{transform:matrix(0.251839,-0.004533,0.004499,0.249960,0,0);-ms-transform:matrix(0.251839,-0.004533,0.004499,0.249960,0,0);-webkit-transform:matrix(0.251839,-0.004533,0.004499,0.249960,0,0);}
.m9_c00405{transform:matrix(0.252349,-0.004542,0.004499,0.249960,0,0);-ms-transform:matrix(0.252349,-0.004542,0.004499,0.249960,0,0);-webkit-transform:matrix(0.252349,-0.004542,0.004499,0.249960,0,0);}
.m3f_c00405{transform:matrix(0.252759,-0.004550,0.004499,0.249960,0,0);-ms-transform:matrix(0.252759,-0.004550,0.004499,0.249960,0,0);-webkit-transform:matrix(0.252759,-0.004550,0.004499,0.249960,0,0);}
.m39_c00405{transform:matrix(0.252834,-0.004551,0.004499,0.249960,0,0);-ms-transform:matrix(0.252834,-0.004551,0.004499,0.249960,0,0);-webkit-transform:matrix(0.252834,-0.004551,0.004499,0.249960,0,0);}
.m61_c00405{transform:matrix(0.252964,-0.004806,0.004749,0.249955,0,0);-ms-transform:matrix(0.252964,-0.004806,0.004749,0.249955,0,0);-webkit-transform:matrix(0.252964,-0.004806,0.004749,0.249955,0,0);}
.m2b_c00405{transform:matrix(0.253984,-0.004572,0.004499,0.249960,0,0);-ms-transform:matrix(0.253984,-0.004572,0.004499,0.249960,0,0);-webkit-transform:matrix(0.253984,-0.004572,0.004499,0.249960,0,0);}
.ma9_c00405{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m87_c00405{transform:matrix(0.255401,-0.003831,0.003750,0.249972,0,0);-ms-transform:matrix(0.255401,-0.003831,0.003750,0.249972,0,0);-webkit-transform:matrix(0.255401,-0.003831,0.003750,0.249972,0,0);}
.m54_c00405{transform:matrix(0.255889,-0.004862,0.004749,0.249955,0,0);-ms-transform:matrix(0.255889,-0.004862,0.004749,0.249955,0,0);-webkit-transform:matrix(0.255889,-0.004862,0.004749,0.249955,0,0);}
.m83_c00405{transform:matrix(0.256206,-0.003843,0.003750,0.249972,0,0);-ms-transform:matrix(0.256206,-0.003843,0.003750,0.249972,0,0);-webkit-transform:matrix(0.256206,-0.003843,0.003750,0.249972,0,0);}
.m64_c00405{transform:matrix(0.256349,-0.004871,0.004749,0.249955,0,0);-ms-transform:matrix(0.256349,-0.004871,0.004749,0.249955,0,0);-webkit-transform:matrix(0.256349,-0.004871,0.004749,0.249955,0,0);}
.m69_c00405{transform:matrix(0.257858,-0.004899,0.004749,0.249955,0,0);-ms-transform:matrix(0.257858,-0.004899,0.004749,0.249955,0,0);-webkit-transform:matrix(0.257858,-0.004899,0.004749,0.249955,0,0);}
.md_c00405{transform:matrix(0.259018,-0.004662,0.004499,0.249960,0,0);-ms-transform:matrix(0.259018,-0.004662,0.004499,0.249960,0,0);-webkit-transform:matrix(0.259018,-0.004662,0.004499,0.249960,0,0);}
.m4a_c00405{transform:matrix(0.261208,-0.004702,0.004499,0.249960,0,0);-ms-transform:matrix(0.261208,-0.004702,0.004499,0.249960,0,0);-webkit-transform:matrix(0.261208,-0.004702,0.004499,0.249960,0,0);}
.m7c_c00405{transform:matrix(0.262962,-0.004733,0.004499,0.249960,0,0);-ms-transform:matrix(0.262962,-0.004733,0.004499,0.249960,0,0);-webkit-transform:matrix(0.262962,-0.004733,0.004499,0.249960,0,0);}
.m43_c00405{transform:matrix(0.263262,-0.004739,0.004499,0.249960,0,0);-ms-transform:matrix(0.263262,-0.004739,0.004499,0.249960,0,0);-webkit-transform:matrix(0.263262,-0.004739,0.004499,0.249960,0,0);}
.m7f_c00405{transform:matrix(0.263695,-0.003955,0.003750,0.249972,0,0);-ms-transform:matrix(0.263695,-0.003955,0.003750,0.249972,0,0);-webkit-transform:matrix(0.263695,-0.003955,0.003750,0.249972,0,0);}
.m49_c00405{transform:matrix(0.264497,-0.004761,0.004499,0.249960,0,0);-ms-transform:matrix(0.264497,-0.004761,0.004499,0.249960,0,0);-webkit-transform:matrix(0.264497,-0.004761,0.004499,0.249960,0,0);}
.m3a_c00405{transform:matrix(0.268836,-0.004839,0.004499,0.249960,0,0);-ms-transform:matrix(0.268836,-0.004839,0.004499,0.249960,0,0);-webkit-transform:matrix(0.268836,-0.004839,0.004499,0.249960,0,0);}
.mc_c00405{transform:matrix(0.270296,-0.004865,0.004499,0.249960,0,0);-ms-transform:matrix(0.270296,-0.004865,0.004499,0.249960,0,0);-webkit-transform:matrix(0.270296,-0.004865,0.004499,0.249960,0,0);}
.m21_c00405{transform:matrix(0.272186,-0.004899,0.004499,0.249960,0,0);-ms-transform:matrix(0.272186,-0.004899,0.004499,0.249960,0,0);-webkit-transform:matrix(0.272186,-0.004899,0.004499,0.249960,0,0);}
.m6_c00405{transform:matrix(0.272561,-0.004906,0.004499,0.249960,0,0);-ms-transform:matrix(0.272561,-0.004906,0.004499,0.249960,0,0);-webkit-transform:matrix(0.272561,-0.004906,0.004499,0.249960,0,0);}
.m5a_c00405{transform:matrix(0.273651,-0.005199,0.004749,0.249955,0,0);-ms-transform:matrix(0.273651,-0.005199,0.004749,0.249955,0,0);-webkit-transform:matrix(0.273651,-0.005199,0.004749,0.249955,0,0);}
.m5f_c00405{transform:matrix(0.276875,-0.005261,0.004749,0.249955,0,0);-ms-transform:matrix(0.276875,-0.005261,0.004749,0.249955,0,0);-webkit-transform:matrix(0.276875,-0.005261,0.004749,0.249955,0,0);}
.m4d_c00405{transform:matrix(0.278020,-0.005004,0.004499,0.249960,0,0);-ms-transform:matrix(0.278020,-0.005004,0.004499,0.249960,0,0);-webkit-transform:matrix(0.278020,-0.005004,0.004499,0.249960,0,0);}
.mb_c00405{transform:matrix(0.278300,-0.005009,0.004499,0.249960,0,0);-ms-transform:matrix(0.278300,-0.005009,0.004499,0.249960,0,0);-webkit-transform:matrix(0.278300,-0.005009,0.004499,0.249960,0,0);}
.ma6_c00405{transform:matrix(0.278639,-0.005851,0.005249,0.249945,0,0);-ms-transform:matrix(0.278639,-0.005851,0.005249,0.249945,0,0);-webkit-transform:matrix(0.278639,-0.005851,0.005249,0.249945,0,0);}
.m81_c00405{transform:matrix(0.279024,-0.004185,0.003750,0.249972,0,0);-ms-transform:matrix(0.279024,-0.004185,0.003750,0.249972,0,0);-webkit-transform:matrix(0.279024,-0.004185,0.003750,0.249972,0,0);}
.m22_c00405{transform:matrix(0.281349,-0.005064,0.004499,0.249960,0,0);-ms-transform:matrix(0.281349,-0.005064,0.004499,0.249960,0,0);-webkit-transform:matrix(0.281349,-0.005064,0.004499,0.249960,0,0);}
.m4f_c00405{transform:matrix(0.281509,-0.005067,0.004499,0.249960,0,0);-ms-transform:matrix(0.281509,-0.005067,0.004499,0.249960,0,0);-webkit-transform:matrix(0.281509,-0.005067,0.004499,0.249960,0,0);}
.m24_c00405{transform:matrix(0.281874,-0.005074,0.004499,0.249960,0,0);-ms-transform:matrix(0.281874,-0.005074,0.004499,0.249960,0,0);-webkit-transform:matrix(0.281874,-0.005074,0.004499,0.249960,0,0);}
.m45_c00405{transform:matrix(0.282544,-0.005086,0.004499,0.249960,0,0);-ms-transform:matrix(0.282544,-0.005086,0.004499,0.249960,0,0);-webkit-transform:matrix(0.282544,-0.005086,0.004499,0.249960,0,0);}
.ma_c00405{transform:matrix(0.284319,-0.005118,0.004499,0.249960,0,0);-ms-transform:matrix(0.284319,-0.005118,0.004499,0.249960,0,0);-webkit-transform:matrix(0.284319,-0.005118,0.004499,0.249960,0,0);}
.m4b_c00405{transform:matrix(0.285134,-0.005132,0.004499,0.249960,0,0);-ms-transform:matrix(0.285134,-0.005132,0.004499,0.249960,0,0);-webkit-transform:matrix(0.285134,-0.005132,0.004499,0.249960,0,0);}
.m8_c00405{transform:matrix(0.287623,-0.005177,0.004499,0.249960,0,0);-ms-transform:matrix(0.287623,-0.005177,0.004499,0.249960,0,0);-webkit-transform:matrix(0.287623,-0.005177,0.004499,0.249960,0,0);}
.m31_c00405{transform:matrix(0.292213,-0.005260,0.004499,0.249960,0,0);-ms-transform:matrix(0.292213,-0.005260,0.004499,0.249960,0,0);-webkit-transform:matrix(0.292213,-0.005260,0.004499,0.249960,0,0);}
.m36_c00405{transform:matrix(0.292843,-0.005271,0.004499,0.249960,0,0);-ms-transform:matrix(0.292843,-0.005271,0.004499,0.249960,0,0);-webkit-transform:matrix(0.292843,-0.005271,0.004499,0.249960,0,0);}
.m65_c00405{transform:matrix(0.292847,-0.005564,0.004749,0.249955,0,0);-ms-transform:matrix(0.292847,-0.005564,0.004749,0.249955,0,0);-webkit-transform:matrix(0.292847,-0.005564,0.004749,0.249955,0,0);}
.m1b_c00405{transform:matrix(0.294692,-0.005304,0.004499,0.249960,0,0);-ms-transform:matrix(0.294692,-0.005304,0.004499,0.249960,0,0);-webkit-transform:matrix(0.294692,-0.005304,0.004499,0.249960,0,0);}
.m35_c00405{transform:matrix(0.295287,-0.005315,0.004499,0.249960,0,0);-ms-transform:matrix(0.295287,-0.005315,0.004499,0.249960,0,0);-webkit-transform:matrix(0.295287,-0.005315,0.004499,0.249960,0,0);}
.m34_c00405{transform:matrix(0.295727,-0.005323,0.004499,0.249960,0,0);-ms-transform:matrix(0.295727,-0.005323,0.004499,0.249960,0,0);-webkit-transform:matrix(0.295727,-0.005323,0.004499,0.249960,0,0);}
.m66_c00405{transform:matrix(0.297201,-0.005647,0.004749,0.249955,0,0);-ms-transform:matrix(0.297201,-0.005647,0.004749,0.249955,0,0);-webkit-transform:matrix(0.297201,-0.005647,0.004749,0.249955,0,0);}
.ma8_c00405{transform:matrix(0.298830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298830,0.000000,0.000000,0.250000,0,0);}
.m78_c00405{transform:matrix(0.300841,-0.005415,0.004499,0.249960,0,0);-ms-transform:matrix(0.300841,-0.005415,0.004499,0.249960,0,0);-webkit-transform:matrix(0.300841,-0.005415,0.004499,0.249960,0,0);}
.m85_c00405{transform:matrix(0.302376,-0.004536,0.003750,0.249972,0,0);-ms-transform:matrix(0.302376,-0.004536,0.003750,0.249972,0,0);-webkit-transform:matrix(0.302376,-0.004536,0.003750,0.249972,0,0);}
.m38_c00405{transform:matrix(0.308475,-0.005553,0.004499,0.249960,0,0);-ms-transform:matrix(0.308475,-0.005553,0.004499,0.249960,0,0);-webkit-transform:matrix(0.308475,-0.005553,0.004499,0.249960,0,0);}
.ma2_c00405{transform:matrix(0.309207,-0.006493,0.005249,0.249945,0,0);-ms-transform:matrix(0.309207,-0.006493,0.005249,0.249945,0,0);-webkit-transform:matrix(0.309207,-0.006493,0.005249,0.249945,0,0);}
.m1f_c00405{transform:matrix(0.316679,-0.005700,0.004499,0.249960,0,0);-ms-transform:matrix(0.316679,-0.005700,0.004499,0.249960,0,0);-webkit-transform:matrix(0.316679,-0.005700,0.004499,0.249960,0,0);}
.ma4_c00405{transform:matrix(0.320604,-0.006733,0.005249,0.249945,0,0);-ms-transform:matrix(0.320604,-0.006733,0.005249,0.249945,0,0);-webkit-transform:matrix(0.320604,-0.006733,0.005249,0.249945,0,0);}
.m52_c00405{transform:matrix(0.323882,-0.006154,0.004749,0.249955,0,0);-ms-transform:matrix(0.323882,-0.006154,0.004749,0.249955,0,0);-webkit-transform:matrix(0.323882,-0.006154,0.004749,0.249955,0,0);}
.m89_c00405{transform:matrix(0.327363,-0.004910,0.003750,0.249972,0,0);-ms-transform:matrix(0.327363,-0.004910,0.003750,0.249972,0,0);-webkit-transform:matrix(0.327363,-0.004910,0.003750,0.249972,0,0);}
.m27_c00405{transform:matrix(0.331686,-0.005970,0.004499,0.249960,0,0);-ms-transform:matrix(0.331686,-0.005970,0.004499,0.249960,0,0);-webkit-transform:matrix(0.331686,-0.005970,0.004499,0.249960,0,0);}
.ma5_c00405{transform:matrix(0.331992,-0.006972,0.005249,0.249945,0,0);-ms-transform:matrix(0.331992,-0.006972,0.005249,0.249945,0,0);-webkit-transform:matrix(0.331992,-0.006972,0.005249,0.249945,0,0);}
.m1d_c00405{transform:matrix(0.333386,-0.006001,0.004499,0.249960,0,0);-ms-transform:matrix(0.333386,-0.006001,0.004499,0.249960,0,0);-webkit-transform:matrix(0.333386,-0.006001,0.004499,0.249960,0,0);}
.m5_c00405{transform:matrix(0.335541,-0.006040,0.004499,0.249960,0,0);-ms-transform:matrix(0.335541,-0.006040,0.004499,0.249960,0,0);-webkit-transform:matrix(0.335541,-0.006040,0.004499,0.249960,0,0);}
.m2a_c00405{transform:matrix(0.342050,-0.006157,0.004499,0.249960,0,0);-ms-transform:matrix(0.342050,-0.006157,0.004499,0.249960,0,0);-webkit-transform:matrix(0.342050,-0.006157,0.004499,0.249960,0,0);}
.m2d_c00405{transform:matrix(0.343969,-0.006191,0.004499,0.249960,0,0);-ms-transform:matrix(0.343969,-0.006191,0.004499,0.249960,0,0);-webkit-transform:matrix(0.343969,-0.006191,0.004499,0.249960,0,0);}
.m94_c00405{transform:matrix(0.350921,-0.004913,0.003500,0.249976,0,0);-ms-transform:matrix(0.350921,-0.004913,0.003500,0.249976,0,0);-webkit-transform:matrix(0.350921,-0.004913,0.003500,0.249976,0,0);}
.m7e_c00405{transform:matrix(0.359995,-0.005400,0.003750,0.249972,0,0);-ms-transform:matrix(0.359995,-0.005400,0.003750,0.249972,0,0);-webkit-transform:matrix(0.359995,-0.005400,0.003750,0.249972,0,0);}
.m6b_c00405{transform:matrix(0.366275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366275,0.000000,0.000000,0.250000,0,0);}
.m44_c00405{transform:matrix(0.368260,-0.006629,0.004499,0.249960,0,0);-ms-transform:matrix(0.368260,-0.006629,0.004499,0.249960,0,0);-webkit-transform:matrix(0.368260,-0.006629,0.004499,0.249960,0,0);}
.m5e_c00405{transform:matrix(0.368678,-0.007005,0.004749,0.249955,0,0);-ms-transform:matrix(0.368678,-0.007005,0.004749,0.249955,0,0);-webkit-transform:matrix(0.368678,-0.007005,0.004749,0.249955,0,0);}
.m6e_c00405{transform:matrix(0.369025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369025,0.000000,0.000000,0.250000,0,0);}
.m97_c00405{transform:matrix(0.375900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375900,0.000000,0.000000,0.250000,0,0);}
.m46_c00405{transform:matrix(0.396176,-0.007131,0.004499,0.249960,0,0);-ms-transform:matrix(0.396176,-0.007131,0.004499,0.249960,0,0);-webkit-transform:matrix(0.396176,-0.007131,0.004499,0.249960,0,0);}
.m23_c00405{transform:matrix(0.413398,-0.007441,0.004499,0.249960,0,0);-ms-transform:matrix(0.413398,-0.007441,0.004499,0.249960,0,0);-webkit-transform:matrix(0.413398,-0.007441,0.004499,0.249960,0,0);}
.m9a_c00405{transform:matrix(0.418223,-0.008783,0.005249,0.249945,0,0);-ms-transform:matrix(0.418223,-0.008783,0.005249,0.249945,0,0);-webkit-transform:matrix(0.418223,-0.008783,0.005249,0.249945,0,0);}
.m1c_c00405{transform:matrix(0.424511,-0.007641,0.004499,0.249960,0,0);-ms-transform:matrix(0.424511,-0.007641,0.004499,0.249960,0,0);-webkit-transform:matrix(0.424511,-0.007641,0.004499,0.249960,0,0);}
.m20_c00405{transform:matrix(0.426856,-0.007683,0.004499,0.249960,0,0);-ms-transform:matrix(0.426856,-0.007683,0.004499,0.249960,0,0);-webkit-transform:matrix(0.426856,-0.007683,0.004499,0.249960,0,0);}
.me_c00405{transform:matrix(0.434055,-0.007813,0.004499,0.249960,0,0);-ms-transform:matrix(0.434055,-0.007813,0.004499,0.249960,0,0);-webkit-transform:matrix(0.434055,-0.007813,0.004499,0.249960,0,0);}
.m68_c00405{transform:matrix(0.442740,-0.008412,0.004749,0.249955,0,0);-ms-transform:matrix(0.442740,-0.008412,0.004749,0.249955,0,0);-webkit-transform:matrix(0.442740,-0.008412,0.004749,0.249955,0,0);}
.m50_c00405{transform:matrix(0.445360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445360,0.000000,0.000000,0.250000,0,0);}
.m5c_c00405{transform:matrix(0.467526,-0.008883,0.004749,0.249955,0,0);-ms-transform:matrix(0.467526,-0.008883,0.004749,0.249955,0,0);-webkit-transform:matrix(0.467526,-0.008883,0.004749,0.249955,0,0);}
.ma1_c00405{transform:matrix(0.512542,-0.010763,0.005249,0.249945,0,0);-ms-transform:matrix(0.512542,-0.010763,0.005249,0.249945,0,0);-webkit-transform:matrix(0.512542,-0.010763,0.005249,0.249945,0,0);}
.m29_c00405{transform:matrix(0.530269,-0.009545,0.004499,0.249960,0,0);-ms-transform:matrix(0.530269,-0.009545,0.004499,0.249960,0,0);-webkit-transform:matrix(0.530269,-0.009545,0.004499,0.249960,0,0);}
.maa_c00405{transform:matrix(0.540835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540835,0.000000,0.000000,0.250000,0,0);}
.ma7_c00405{transform:matrix(0.582990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582990,0.000000,0.000000,0.250000,0,0);}
.m5d_c00405{transform:matrix(0.688646,-0.013084,0.004749,0.249955,0,0);-ms-transform:matrix(0.688646,-0.013084,0.004749,0.249955,0,0);-webkit-transform:matrix(0.688646,-0.013084,0.004749,0.249955,0,0);}
.m10_c00405{transform:matrix(1.000588,-0.018011,0.004499,0.249960,0,0);-ms-transform:matrix(1.000588,-0.018011,0.004499,0.249960,0,0);-webkit-transform:matrix(1.000588,-0.018011,0.004499,0.249960,0,0);}
.v0_c00405{vertical-align:0.000000px;}
.ls0_c00405{letter-spacing:0.000000px;}
.sc__c00405{text-shadow:none;}
.sc0_c00405{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__c00405{-webkit-text-stroke:0px transparent;}
.sc0_c00405{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00405{word-spacing:0.000000px;}
.fc0_c00405{color:transparent;}
.fs9_c00405{font-size:12.000000px;}
.fsf_c00405{font-size:18.000000px;}
.fsb_c00405{font-size:24.000000px;}
.fsa_c00405{font-size:30.000000px;}
.fse_c00405{font-size:36.003528px;}
.fs11_c00405{font-size:66.000000px;}
.fs0_c00405{font-size:66.011912px;}
.fs1_c00405{font-size:72.011663px;}
.fsc_c00405{font-size:78.008775px;}
.fs3_c00405{font-size:78.012635px;}
.fs8_c00405{font-size:78.014078px;}
.fs5_c00405{font-size:90.014579px;}
.fs7_c00405{font-size:90.016244px;}
.fs4_c00405{font-size:96.015551px;}
.fsd_c00405{font-size:114.011171px;}
.fs10_c00405{font-size:120.026457px;}
.fs2_c00405{font-size:126.020410px;}
.fs6_c00405{font-size:186.000000px;}
.y0_c00405{bottom:0.000000px;}
.yaa_c00405{bottom:65.880000px;}
.ya9_c00405{bottom:82.620000px;}
.ya8_c00405{bottom:84.510000px;}
.ya7_c00405{bottom:165.240000px;}
.y99_c00405{bottom:697.144500px;}
.y9a_c00405{bottom:697.841879px;}
.y9b_c00405{bottom:698.939055px;}
.y9c_c00405{bottom:700.100428px;}
.y9d_c00405{bottom:701.363484px;}
.y9e_c00405{bottom:701.998398px;}
.y9f_c00405{bottom:702.755154px;}
.ya0_c00405{bottom:703.294686px;}
.ya1_c00405{bottom:704.382318px;}
.ya2_c00405{bottom:705.568860px;}
.ya3_c00405{bottom:707.083979px;}
.ya4_c00405{bottom:708.453063px;}
.ya5_c00405{bottom:709.663419px;}
.ya6_c00405{bottom:711.060381px;}
.y98_c00405{bottom:721.707000px;}
.y96_c00405{bottom:726.028734px;}
.y97_c00405{bottom:728.863500px;}
.y8b_c00405{bottom:737.374500px;}
.y8c_c00405{bottom:737.640129px;}
.y8d_c00405{bottom:739.197027px;}
.y8e_c00405{bottom:739.826628px;}
.y8f_c00405{bottom:740.272206px;}
.y90_c00405{bottom:740.751237px;}
.y91_c00405{bottom:742.162752px;}
.y92_c00405{bottom:742.572441px;}
.y93_c00405{bottom:743.847792px;}
.y94_c00405{bottom:744.305865px;}
.y95_c00405{bottom:745.236501px;}
.y7e_c00405{bottom:773.010000px;}
.y7f_c00405{bottom:773.825625px;}
.y80_c00405{bottom:774.915255px;}
.y81_c00405{bottom:776.732895px;}
.y82_c00405{bottom:777.163432px;}
.y83_c00405{bottom:778.570065px;}
.y84_c00405{bottom:779.197815px;}
.y85_c00405{bottom:779.691870px;}
.y86_c00405{bottom:780.682095px;}
.y87_c00405{bottom:781.335450px;}
.y88_c00405{bottom:781.768170px;}
.y89_c00405{bottom:783.009810px;}
.y8a_c00405{bottom:783.505620px;}
.y70_c00405{bottom:809.739000px;}
.y71_c00405{bottom:810.785628px;}
.y72_c00405{bottom:811.358082px;}
.y73_c00405{bottom:812.799882px;}
.y74_c00405{bottom:813.629241px;}
.y75_c00405{bottom:814.583745px;}
.y76_c00405{bottom:815.564250px;}
.y77_c00405{bottom:816.151338px;}
.y78_c00405{bottom:817.356348px;}
.y79_c00405{bottom:817.932960px;}
.y7a_c00405{bottom:818.556822px;}
.y7b_c00405{bottom:819.139968px;}
.y7c_c00405{bottom:820.064043px;}
.y7d_c00405{bottom:821.144448px;}
.y5e_c00405{bottom:842.335177px;}
.y5f_c00405{bottom:843.652649px;}
.y60_c00405{bottom:844.719316px;}
.y61_c00405{bottom:846.077293px;}
.y62_c00405{bottom:846.784106px;}
.y63_c00405{bottom:847.712016px;}
.y64_c00405{bottom:849.339254px;}
.y6f_c00405{bottom:849.420000px;}
.y65_c00405{bottom:850.199832px;}
.y66_c00405{bottom:851.471592px;}
.y67_c00405{bottom:852.808148px;}
.y68_c00405{bottom:853.462978px;}
.y69_c00405{bottom:854.449044px;}
.y6a_c00405{bottom:855.596201px;}
.y6b_c00405{bottom:856.300761px;}
.y6e_c00405{bottom:856.980000px;}
.y6d_c00405{bottom:864.138000px;}
.y6c_c00405{bottom:873.180000px;}
.y52_c00405{bottom:880.477500px;}
.y53_c00405{bottom:880.998851px;}
.y54_c00405{bottom:881.752590px;}
.y55_c00405{bottom:882.307542px;}
.y56_c00405{bottom:884.087282px;}
.y57_c00405{bottom:884.529402px;}
.y58_c00405{bottom:886.889060px;}
.y59_c00405{bottom:887.888839px;}
.y5a_c00405{bottom:888.499452px;}
.y5b_c00405{bottom:889.760720px;}
.y5c_c00405{bottom:890.604035px;}
.y5d_c00405{bottom:892.333899px;}
.y51_c00405{bottom:902.340000px;}
.y46_c00405{bottom:952.022298px;}
.y47_c00405{bottom:954.508137px;}
.y48_c00405{bottom:955.319655px;}
.y49_c00405{bottom:956.072397px;}
.y4a_c00405{bottom:957.029532px;}
.y4b_c00405{bottom:958.493643px;}
.y4c_c00405{bottom:958.894974px;}
.y4d_c00405{bottom:959.629182px;}
.y4e_c00405{bottom:960.060630px;}
.y4f_c00405{bottom:962.100360px;}
.y50_c00405{bottom:962.825403px;}
.y38_c00405{bottom:984.622683px;}
.y39_c00405{bottom:986.010843px;}
.y3a_c00405{bottom:987.077556px;}
.y3b_c00405{bottom:988.276386px;}
.y3c_c00405{bottom:989.525043px;}
.y3d_c00405{bottom:990.600411px;}
.y3e_c00405{bottom:992.191284px;}
.y3f_c00405{bottom:992.984472px;}
.y40_c00405{bottom:995.103030px;}
.y41_c00405{bottom:995.863716px;}
.y42_c00405{bottom:996.636744px;}
.y43_c00405{bottom:997.459545px;}
.y44_c00405{bottom:998.949237px;}
.y45_c00405{bottom:1000.322733px;}
.y2a_c00405{bottom:1022.176479px;}
.y2b_c00405{bottom:1023.201906px;}
.y2c_c00405{bottom:1024.110375px;}
.y2d_c00405{bottom:1025.128971px;}
.y2e_c00405{bottom:1025.748801px;}
.y2f_c00405{bottom:1026.697053px;}
.y30_c00405{bottom:1027.991100px;}
.y31_c00405{bottom:1028.537616px;}
.y32_c00405{bottom:1029.454887px;}
.y33_c00405{bottom:1030.031586px;}
.y34_c00405{bottom:1031.180490px;}
.y35_c00405{bottom:1032.428235px;}
.y36_c00405{bottom:1032.956715px;}
.y37_c00405{bottom:1034.225424px;}
.y1c_c00405{bottom:1059.479103px;}
.y1d_c00405{bottom:1060.186719px;}
.y1e_c00405{bottom:1060.945905px;}
.y1f_c00405{bottom:1062.460578px;}
.y20_c00405{bottom:1063.455717px;}
.y21_c00405{bottom:1064.894034px;}
.y22_c00405{bottom:1065.675657px;}
.y23_c00405{bottom:1066.454175px;}
.y24_c00405{bottom:1067.697957px;}
.y25_c00405{bottom:1068.757086px;}
.y26_c00405{bottom:1070.489811px;}
.y27_c00405{bottom:1072.035561px;}
.y28_c00405{bottom:1072.634043px;}
.y29_c00405{bottom:1073.744931px;}
.y10_c00405{bottom:1097.005626px;}
.y11_c00405{bottom:1097.266386px;}
.y12_c00405{bottom:1098.910770px;}
.y13_c00405{bottom:1100.046426px;}
.y14_c00405{bottom:1100.467896px;}
.y15_c00405{bottom:1101.470007px;}
.y16_c00405{bottom:1101.878481px;}
.y17_c00405{bottom:1103.179854px;}
.y18_c00405{bottom:1103.612916px;}
.y19_c00405{bottom:1104.320652px;}
.y1a_c00405{bottom:1104.763323px;}
.y1b_c00405{bottom:1106.190507px;}
.y5_c00405{bottom:1131.307500px;}
.y6_c00405{bottom:1132.023351px;}
.y7_c00405{bottom:1132.844475px;}
.y8_c00405{bottom:1133.472549px;}
.y9_c00405{bottom:1134.061824px;}
.ya_c00405{bottom:1135.864938px;}
.yb_c00405{bottom:1136.458101px;}
.yc_c00405{bottom:1138.425996px;}
.yd_c00405{bottom:1139.849841px;}
.ye_c00405{bottom:1140.821166px;}
.yf_c00405{bottom:1141.581486px;}
.y1_c00405{bottom:1198.261500px;}
.y2_c00405{bottom:1198.757314px;}
.y3_c00405{bottom:1199.128527px;}
.y4_c00405{bottom:1204.843091px;}
.hb_c00405{height:12.000000px;}
.h11_c00405{height:18.000000px;}
.hd_c00405{height:24.000000px;}
.hc_c00405{height:30.000000px;}
.h10_c00405{height:36.003528px;}
.h13_c00405{height:66.000000px;}
.h2_c00405{height:66.011912px;}
.h3_c00405{height:72.011663px;}
.he_c00405{height:78.008775px;}
.h5_c00405{height:78.012635px;}
.ha_c00405{height:78.014078px;}
.h7_c00405{height:90.014579px;}
.h9_c00405{height:90.016244px;}
.h6_c00405{height:96.015551px;}
.hf_c00405{height:114.011171px;}
.h12_c00405{height:120.026457px;}
.h4_c00405{height:126.020410px;}
.h8_c00405{height:186.000000px;}
.h1_c00405{height:1251.000000px;}
.h0_c00405{height:1251.150000px;}
.w0_c00405{width:915.000000px;}
.x0_c00405{left:0.000000px;}
.x8b_c00405{left:4.320000px;}
.x8a_c00405{left:8.640000px;}
.x24_c00405{left:13.310895px;}
.x51_c00405{left:15.513657px;}
.xe_c00405{left:20.123421px;}
.x6c_c00405{left:36.486000px;}
.x5_c00405{left:40.197000px;}
.x31_c00405{left:41.673831px;}
.x3e_c00405{left:53.131659px;}
.x81_c00405{left:54.540000px;}
.x80_c00405{left:58.591473px;}
.x76_c00405{left:61.422000px;}
.x25_c00405{left:73.613475px;}
.x52_c00405{left:78.220263px;}
.x47_c00405{left:80.040000px;}
.x18_c00405{left:81.992517px;}
.x82_c00405{left:83.970000px;}
.x6_c00405{left:85.815000px;}
.x6d_c00405{left:90.861000px;}
.x32_c00405{left:99.537594px;}
.x60_c00405{left:102.801000px;}
.x83_c00405{left:105.570000px;}
.x48_c00405{left:107.479500px;}
.x7_c00405{left:120.708000px;}
.x26_c00405{left:127.084947px;}
.x53_c00405{left:128.990325px;}
.x33_c00405{left:143.961288px;}
.xf_c00405{left:146.572788px;}
.x8_c00405{left:153.445500px;}
.x84_c00405{left:158.341500px;}
.x61_c00405{left:160.947000px;}
.x6e_c00405{left:163.503000px;}
.x19_c00405{left:166.141017px;}
.x77_c00405{left:172.629000px;}
.x49_c00405{left:176.358000px;}
.x27_c00405{left:187.008027px;}
.x62_c00405{left:192.750000px;}
.x34_c00405{left:193.890888px;}
.x3f_c00405{left:199.319778px;}
.x85_c00405{left:213.645000px;}
.x78_c00405{left:217.600500px;}
.x1a_c00405{left:221.426517px;}
.x28_c00405{left:223.443675px;}
.x54_c00405{left:227.317591px;}
.x10_c00405{left:233.922645px;}
.x35_c00405{left:245.921772px;}
.x40_c00405{left:247.071642px;}
.x79_c00405{left:249.427500px;}
.x9_c00405{left:253.618500px;}
.x11_c00405{left:266.340561px;}
.x4a_c00405{left:270.028500px;}
.x55_c00405{left:271.495410px;}
.x63_c00405{left:272.850000px;}
.x29_c00405{left:279.208674px;}
.x7a_c00405{left:283.644000px;}
.x6f_c00405{left:284.679000px;}
.xa_c00405{left:286.572000px;}
.x36_c00405{left:290.742939px;}
.x4b_c00405{left:293.298000px;}
.x1b_c00405{left:301.333017px;}
.x86_c00405{left:304.024500px;}
.x70_c00405{left:313.381500px;}
.x64_c00405{left:318.925500px;}
.x87_c00405{left:340.060500px;}
.x12_c00405{left:343.437000px;}
.x1c_c00405{left:344.756517px;}
.x41_c00405{left:347.649951px;}
.x56_c00405{left:349.004975px;}
.x2a_c00405{left:355.351551px;}
.x37_c00405{left:357.034284px;}
.x88_c00405{left:365.752500px;}
.x65_c00405{left:371.953500px;}
.x13_c00405{left:374.882835px;}
.x7b_c00405{left:384.466500px;}
.x1d_c00405{left:388.007517px;}
.x38_c00405{left:390.096720px;}
.xb_c00405{left:395.899500px;}
.x71_c00405{left:407.157000px;}
.x7c_c00405{left:413.730000px;}
.x4c_c00405{left:417.490500px;}
.x66_c00405{left:426.426000px;}
.x1_c00405{left:428.562000px;}
.x42_c00405{left:433.740990px;}
.x2b_c00405{left:441.424590px;}
.x72_c00405{left:449.007000px;}
.x57_c00405{left:450.492598px;}
.x2_c00405{left:454.657500px;}
.x1e_c00405{left:457.106517px;}
.x67_c00405{left:459.042000px;}
.x4d_c00405{left:470.110500px;}
.x3_c00405{left:474.195000px;}
.x2c_c00405{left:475.380711px;}
.x39_c00405{left:478.368189px;}
.x73_c00405{left:481.944000px;}
.x43_c00405{left:500.577705px;}
.x4e_c00405{left:502.248000px;}
.x7d_c00405{left:504.826500px;}
.x14_c00405{left:508.252323px;}
.x3a_c00405{left:510.041760px;}
.x58_c00405{left:514.124676px;}
.x1f_c00405{left:515.947017px;}
.x44_c00405{left:525.964164px;}
.xc_c00405{left:528.964500px;}
.x7e_c00405{left:537.546000px;}
.x2d_c00405{left:542.959926px;}
.x59_c00405{left:545.272479px;}
.x74_c00405{left:547.959000px;}
.x68_c00405{left:558.021000px;}
.x15_c00405{left:562.659210px;}
.x4f_c00405{left:568.630500px;}
.xd_c00405{left:571.204500px;}
.x3b_c00405{left:576.525078px;}
.x5a_c00405{left:592.195184px;}
.x16_c00405{left:596.671761px;}
.x7f_c00405{left:604.020000px;}
.x20_c00405{left:612.209517px;}
.x2e_c00405{left:616.363749px;}
.x75_c00405{left:620.364000px;}
.x69_c00405{left:625.077000px;}
.x3c_c00405{left:638.612382px;}
.x45_c00405{left:645.951324px;}
.x2f_c00405{left:647.474316px;}
.x89_c00405{left:669.025500px;}
.x6a_c00405{left:676.414500px;}
.x5b_c00405{left:680.334820px;}
.x46_c00405{left:688.565580px;}
.x3d_c00405{left:695.828199px;}
.x21_c00405{left:698.084517px;}
.x50_c00405{left:704.061000px;}
.x17_c00405{left:706.469643px;}
.x30_c00405{left:722.126166px;}
.x22_c00405{left:731.333517px;}
.x6b_c00405{left:736.437000px;}
.x4_c00405{left:774.961500px;}
.x23_c00405{left:793.049517px;}
.x5f_c00405{left:908.010000px;}
.x5e_c00405{left:910.710000px;}
.x5c_c00405{left:911.790000px;}
.x5d_c00405{left:912.820500px;}
@media print{
.v0_c00405{vertical-align:0.000000pt;}
.ls0_c00405{letter-spacing:0.000000pt;}
.ws0_c00405{word-spacing:0.000000pt;}
.fs9_c00405{font-size:10.666667pt;}
.fsf_c00405{font-size:16.000000pt;}
.fsb_c00405{font-size:21.333333pt;}
.fsa_c00405{font-size:26.666667pt;}
.fse_c00405{font-size:32.003136pt;}
.fs11_c00405{font-size:58.666667pt;}
.fs0_c00405{font-size:58.677255pt;}
.fs1_c00405{font-size:64.010367pt;}
.fsc_c00405{font-size:69.341133pt;}
.fs3_c00405{font-size:69.344564pt;}
.fs8_c00405{font-size:69.345847pt;}
.fs5_c00405{font-size:80.012959pt;}
.fs7_c00405{font-size:80.014439pt;}
.fs4_c00405{font-size:85.347156pt;}
.fsd_c00405{font-size:101.343264pt;}
.fs10_c00405{font-size:106.690184pt;}
.fs2_c00405{font-size:112.018143pt;}
.fs6_c00405{font-size:165.333333pt;}
.y0_c00405{bottom:0.000000pt;}
.yaa_c00405{bottom:58.560000pt;}
.ya9_c00405{bottom:73.440000pt;}
.ya8_c00405{bottom:75.120000pt;}
.ya7_c00405{bottom:146.880000pt;}
.y99_c00405{bottom:619.684000pt;}
.y9a_c00405{bottom:620.303892pt;}
.y9b_c00405{bottom:621.279160pt;}
.y9c_c00405{bottom:622.311492pt;}
.y9d_c00405{bottom:623.434208pt;}
.y9e_c00405{bottom:623.998576pt;}
.y9f_c00405{bottom:624.671248pt;}
.ya0_c00405{bottom:625.150832pt;}
.ya1_c00405{bottom:626.117616pt;}
.ya2_c00405{bottom:627.172320pt;}
.ya3_c00405{bottom:628.519092pt;}
.ya4_c00405{bottom:629.736056pt;}
.ya5_c00405{bottom:630.811928pt;}
.ya6_c00405{bottom:632.053672pt;}
.y98_c00405{bottom:641.517333pt;}
.y96_c00405{bottom:645.358875pt;}
.y97_c00405{bottom:647.878667pt;}
.y8b_c00405{bottom:655.444000pt;}
.y8c_c00405{bottom:655.680115pt;}
.y8d_c00405{bottom:657.064024pt;}
.y8e_c00405{bottom:657.623669pt;}
.y8f_c00405{bottom:658.019739pt;}
.y90_c00405{bottom:658.445544pt;}
.y91_c00405{bottom:659.700224pt;}
.y92_c00405{bottom:660.064392pt;}
.y93_c00405{bottom:661.198037pt;}
.y94_c00405{bottom:661.605213pt;}
.y95_c00405{bottom:662.432445pt;}
.y7e_c00405{bottom:687.120000pt;}
.y7f_c00405{bottom:687.845000pt;}
.y80_c00405{bottom:688.813560pt;}
.y81_c00405{bottom:690.429240pt;}
.y82_c00405{bottom:690.811940pt;}
.y83_c00405{bottom:692.062280pt;}
.y84_c00405{bottom:692.620280pt;}
.y85_c00405{bottom:693.059440pt;}
.y86_c00405{bottom:693.939640pt;}
.y87_c00405{bottom:694.520400pt;}
.y88_c00405{bottom:694.905040pt;}
.y89_c00405{bottom:696.008720pt;}
.y8a_c00405{bottom:696.449440pt;}
.y70_c00405{bottom:719.768000pt;}
.y71_c00405{bottom:720.698336pt;}
.y72_c00405{bottom:721.207184pt;}
.y73_c00405{bottom:722.488784pt;}
.y74_c00405{bottom:723.225992pt;}
.y75_c00405{bottom:724.074440pt;}
.y76_c00405{bottom:724.946000pt;}
.y77_c00405{bottom:725.467856pt;}
.y78_c00405{bottom:726.538976pt;}
.y79_c00405{bottom:727.051520pt;}
.y7a_c00405{bottom:727.606064pt;}
.y7b_c00405{bottom:728.124416pt;}
.y7c_c00405{bottom:728.945816pt;}
.y7d_c00405{bottom:729.906176pt;}
.y5e_c00405{bottom:748.742380pt;}
.y5f_c00405{bottom:749.913465pt;}
.y60_c00405{bottom:750.861615pt;}
.y61_c00405{bottom:752.068705pt;}
.y62_c00405{bottom:752.696983pt;}
.y63_c00405{bottom:753.521792pt;}
.y64_c00405{bottom:754.968225pt;}
.y6f_c00405{bottom:755.040000pt;}
.y65_c00405{bottom:755.733184pt;}
.y66_c00405{bottom:756.863637pt;}
.y67_c00405{bottom:758.051687pt;}
.y68_c00405{bottom:758.633759pt;}
.y69_c00405{bottom:759.510261pt;}
.y6a_c00405{bottom:760.529956pt;}
.y6b_c00405{bottom:761.156232pt;}
.y6e_c00405{bottom:761.760000pt;}
.y6d_c00405{bottom:768.122667pt;}
.y6c_c00405{bottom:776.160000pt;}
.y52_c00405{bottom:782.646667pt;}
.y53_c00405{bottom:783.110089pt;}
.y54_c00405{bottom:783.780080pt;}
.y55_c00405{bottom:784.273371pt;}
.y56_c00405{bottom:785.855361pt;}
.y57_c00405{bottom:786.248357pt;}
.y58_c00405{bottom:788.345831pt;}
.y59_c00405{bottom:789.234524pt;}
.y5a_c00405{bottom:789.777291pt;}
.y5b_c00405{bottom:790.898417pt;}
.y5c_c00405{bottom:791.648031pt;}
.y5d_c00405{bottom:793.185688pt;}
.y51_c00405{bottom:802.080000pt;}
.y46_c00405{bottom:846.242043pt;}
.y47_c00405{bottom:848.451677pt;}
.y48_c00405{bottom:849.173027pt;}
.y49_c00405{bottom:849.842131pt;}
.y4a_c00405{bottom:850.692917pt;}
.y4b_c00405{bottom:851.994349pt;}
.y4c_c00405{bottom:852.351088pt;}
.y4d_c00405{bottom:853.003717pt;}
.y4e_c00405{bottom:853.387227pt;}
.y4f_c00405{bottom:855.200320pt;}
.y50_c00405{bottom:855.844803pt;}
.y38_c00405{bottom:875.220163pt;}
.y39_c00405{bottom:876.454083pt;}
.y3a_c00405{bottom:877.402272pt;}
.y3b_c00405{bottom:878.467899pt;}
.y3c_c00405{bottom:879.577816pt;}
.y3d_c00405{bottom:880.533699pt;}
.y3e_c00405{bottom:881.947808pt;}
.y3f_c00405{bottom:882.652864pt;}
.y40_c00405{bottom:884.536027pt;}
.y41_c00405{bottom:885.212192pt;}
.y42_c00405{bottom:885.899328pt;}
.y43_c00405{bottom:886.630707pt;}
.y44_c00405{bottom:887.954877pt;}
.y45_c00405{bottom:889.175763pt;}
.y2a_c00405{bottom:908.601315pt;}
.y2b_c00405{bottom:909.512805pt;}
.y2c_c00405{bottom:910.320333pt;}
.y2d_c00405{bottom:911.225752pt;}
.y2e_c00405{bottom:911.776712pt;}
.y2f_c00405{bottom:912.619603pt;}
.y30_c00405{bottom:913.769867pt;}
.y31_c00405{bottom:914.255659pt;}
.y32_c00405{bottom:915.071011pt;}
.y33_c00405{bottom:915.583632pt;}
.y34_c00405{bottom:916.604880pt;}
.y35_c00405{bottom:917.713987pt;}
.y36_c00405{bottom:918.183747pt;}
.y37_c00405{bottom:919.311488pt;}
.y1c_c00405{bottom:941.759203pt;}
.y1d_c00405{bottom:942.388195pt;}
.y1e_c00405{bottom:943.063027pt;}
.y1f_c00405{bottom:944.409403pt;}
.y20_c00405{bottom:945.293971pt;}
.y21_c00405{bottom:946.572475pt;}
.y22_c00405{bottom:947.267251pt;}
.y23_c00405{bottom:947.959267pt;}
.y24_c00405{bottom:949.064851pt;}
.y25_c00405{bottom:950.006299pt;}
.y26_c00405{bottom:951.546499pt;}
.y27_c00405{bottom:952.920499pt;}
.y28_c00405{bottom:953.452483pt;}
.y29_c00405{bottom:954.439939pt;}
.y10_c00405{bottom:975.116112pt;}
.y11_c00405{bottom:975.347899pt;}
.y12_c00405{bottom:976.809573pt;}
.y13_c00405{bottom:977.819045pt;}
.y14_c00405{bottom:978.193685pt;}
.y15_c00405{bottom:979.084451pt;}
.y16_c00405{bottom:979.447539pt;}
.y17_c00405{bottom:980.604315pt;}
.y18_c00405{bottom:980.989259pt;}
.y19_c00405{bottom:981.618357pt;}
.y1a_c00405{bottom:982.011843pt;}
.y1b_c00405{bottom:983.280451pt;}
.y5_c00405{bottom:1005.606667pt;}
.y6_c00405{bottom:1006.242979pt;}
.y7_c00405{bottom:1006.972867pt;}
.y8_c00405{bottom:1007.531155pt;}
.y9_c00405{bottom:1008.054955pt;}
.ya_c00405{bottom:1009.657723pt;}
.yb_c00405{bottom:1010.184979pt;}
.yc_c00405{bottom:1011.934219pt;}
.yd_c00405{bottom:1013.199859pt;}
.ye_c00405{bottom:1014.063259pt;}
.yf_c00405{bottom:1014.739099pt;}
.y1_c00405{bottom:1065.121333pt;}
.y2_c00405{bottom:1065.562057pt;}
.y3_c00405{bottom:1065.892024pt;}
.y4_c00405{bottom:1070.971636pt;}
.hb_c00405{height:10.666667pt;}
.h11_c00405{height:16.000000pt;}
.hd_c00405{height:21.333333pt;}
.hc_c00405{height:26.666667pt;}
.h10_c00405{height:32.003136pt;}
.h13_c00405{height:58.666667pt;}
.h2_c00405{height:58.677255pt;}
.h3_c00405{height:64.010367pt;}
.he_c00405{height:69.341133pt;}
.h5_c00405{height:69.344564pt;}
.ha_c00405{height:69.345847pt;}
.h7_c00405{height:80.012959pt;}
.h9_c00405{height:80.014439pt;}
.h6_c00405{height:85.347156pt;}
.hf_c00405{height:101.343264pt;}
.h12_c00405{height:106.690184pt;}
.h4_c00405{height:112.018143pt;}
.h8_c00405{height:165.333333pt;}
.h1_c00405{height:1112.000000pt;}
.h0_c00405{height:1112.133333pt;}
.w0_c00405{width:813.333333pt;}
.x0_c00405{left:0.000000pt;}
.x8b_c00405{left:3.840000pt;}
.x8a_c00405{left:7.680000pt;}
.x24_c00405{left:11.831907pt;}
.x51_c00405{left:13.789917pt;}
.xe_c00405{left:17.887485pt;}
.x6c_c00405{left:32.432000pt;}
.x5_c00405{left:35.730667pt;}
.x31_c00405{left:37.043405pt;}
.x3e_c00405{left:47.228141pt;}
.x81_c00405{left:48.480000pt;}
.x80_c00405{left:52.081309pt;}
.x76_c00405{left:54.597333pt;}
.x25_c00405{left:65.434200pt;}
.x52_c00405{left:69.529123pt;}
.x47_c00405{left:71.146667pt;}
.x18_c00405{left:72.882237pt;}
.x82_c00405{left:74.640000pt;}
.x6_c00405{left:76.280000pt;}
.x6d_c00405{left:80.765333pt;}
.x32_c00405{left:88.477861pt;}
.x60_c00405{left:91.378667pt;}
.x83_c00405{left:93.840000pt;}
.x48_c00405{left:95.537333pt;}
.x7_c00405{left:107.296000pt;}
.x26_c00405{left:112.964397pt;}
.x53_c00405{left:114.658067pt;}
.x33_c00405{left:127.965589pt;}
.xf_c00405{left:130.286923pt;}
.x8_c00405{left:136.396000pt;}
.x84_c00405{left:140.748000pt;}
.x61_c00405{left:143.064000pt;}
.x6e_c00405{left:145.336000pt;}
.x19_c00405{left:147.680904pt;}
.x77_c00405{left:153.448000pt;}
.x49_c00405{left:156.762667pt;}
.x27_c00405{left:166.229357pt;}
.x62_c00405{left:171.333333pt;}
.x34_c00405{left:172.347456pt;}
.x3f_c00405{left:177.173136pt;}
.x85_c00405{left:189.906667pt;}
.x78_c00405{left:193.422667pt;}
.x1a_c00405{left:196.823571pt;}
.x28_c00405{left:198.616600pt;}
.x54_c00405{left:202.060081pt;}
.x10_c00405{left:207.931240pt;}
.x35_c00405{left:218.597131pt;}
.x40_c00405{left:219.619237pt;}
.x79_c00405{left:221.713333pt;}
.x9_c00405{left:225.438667pt;}
.x11_c00405{left:236.747165pt;}
.x4a_c00405{left:240.025333pt;}
.x55_c00405{left:241.329253pt;}
.x63_c00405{left:242.533333pt;}
.x29_c00405{left:248.185488pt;}
.x7a_c00405{left:252.128000pt;}
.x6f_c00405{left:253.048000pt;}
.xa_c00405{left:254.730667pt;}
.x36_c00405{left:258.438168pt;}
.x4b_c00405{left:260.709333pt;}
.x1b_c00405{left:267.851571pt;}
.x86_c00405{left:270.244000pt;}
.x70_c00405{left:278.561333pt;}
.x64_c00405{left:283.489333pt;}
.x87_c00405{left:302.276000pt;}
.x12_c00405{left:305.277333pt;}
.x1c_c00405{left:306.450237pt;}
.x41_c00405{left:309.022179pt;}
.x56_c00405{left:310.226644pt;}
.x2a_c00405{left:315.868045pt;}
.x37_c00405{left:317.363808pt;}
.x88_c00405{left:325.113333pt;}
.x65_c00405{left:330.625333pt;}
.x13_c00405{left:333.229187pt;}
.x7b_c00405{left:341.748000pt;}
.x1d_c00405{left:344.895571pt;}
.x38_c00405{left:346.752640pt;}
.xb_c00405{left:351.910667pt;}
.x71_c00405{left:361.917333pt;}
.x7c_c00405{left:367.760000pt;}
.x4c_c00405{left:371.102667pt;}
.x66_c00405{left:379.045333pt;}
.x1_c00405{left:380.944000pt;}
.x42_c00405{left:385.547547pt;}
.x2b_c00405{left:392.377413pt;}
.x72_c00405{left:399.117333pt;}
.x57_c00405{left:400.437865pt;}
.x2_c00405{left:404.140000pt;}
.x1e_c00405{left:406.316904pt;}
.x67_c00405{left:408.037333pt;}
.x4d_c00405{left:417.876000pt;}
.x3_c00405{left:421.506667pt;}
.x2c_c00405{left:422.560632pt;}
.x39_c00405{left:425.216168pt;}
.x73_c00405{left:428.394667pt;}
.x43_c00405{left:444.957960pt;}
.x4e_c00405{left:446.442667pt;}
.x7d_c00405{left:448.734667pt;}
.x14_c00405{left:451.779843pt;}
.x3a_c00405{left:453.370453pt;}
.x58_c00405{left:456.999712pt;}
.x1f_c00405{left:458.619571pt;}
.x44_c00405{left:467.523701pt;}
.xc_c00405{left:470.190667pt;}
.x7e_c00405{left:477.818667pt;}
.x2d_c00405{left:482.631045pt;}
.x59_c00405{left:484.686648pt;}
.x74_c00405{left:487.074667pt;}
.x68_c00405{left:496.018667pt;}
.x15_c00405{left:500.141520pt;}
.x4f_c00405{left:505.449333pt;}
.xd_c00405{left:507.737333pt;}
.x3b_c00405{left:512.466736pt;}
.x5a_c00405{left:526.395719pt;}
.x16_c00405{left:530.374899pt;}
.x7f_c00405{left:536.906667pt;}
.x20_c00405{left:544.186237pt;}
.x2e_c00405{left:547.878888pt;}
.x75_c00405{left:551.434667pt;}
.x69_c00405{left:555.624000pt;}
.x3c_c00405{left:567.655451pt;}
.x45_c00405{left:574.178955pt;}
.x2f_c00405{left:575.532725pt;}
.x89_c00405{left:594.689333pt;}
.x6a_c00405{left:601.257333pt;}
.x5b_c00405{left:604.742063pt;}
.x46_c00405{left:612.058293pt;}
.x3d_c00405{left:618.513955pt;}
.x21_c00405{left:620.519571pt;}
.x50_c00405{left:625.832000pt;}
.x17_c00405{left:627.973016pt;}
.x30_c00405{left:641.889925pt;}
.x22_c00405{left:650.074237pt;}
.x6b_c00405{left:654.610667pt;}
.x4_c00405{left:688.854667pt;}
.x23_c00405{left:704.932904pt;}
.x5f_c00405{left:807.120000pt;}
.x5e_c00405{left:809.520000pt;}
.x5c_c00405{left:810.480000pt;}
.x5d_c00405{left:811.396000pt;}
}





/* 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_c00406 {
    display:none;
  }
  .loading-indicator_c00406.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00406 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_c00406 { 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_c00406" -> "#page-container .classname_c00406")
 */
.pf_c00406 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00406 { /* 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_c00406.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00406 { /* 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_c00406 { /* 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_c00406 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00406 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00406 {overflow:visible;}
  }
}
.c_c00406 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00406 { /* 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_c00406:after { /* webkit #35443 */
  content: '';
}
.t_c00406:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00406 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 */
}
.__c00406 { /* 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_c00406 { /* info for Javascript */
  display:none;
}
.l_c00406 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00406 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00406 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00406: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_c00406 {
    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_c00406.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00406.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_c00406 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00406{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00406;src:url('chunks/assets/font_c605e72f209fc835e906f064.woff2')format("woff");}.ff1_c00406{font-family:ff1_c00406;line-height:1.000000;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;}
.mf2_c00406{transform:matrix(0.015452,0.000495,-0.008004,0.249872,0,0);-ms-transform:matrix(0.015452,0.000495,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.015452,0.000495,-0.008004,0.249872,0,0);}
.mdc_c00406{transform:matrix(0.149663,0.004794,-0.008004,0.249872,0,0);-ms-transform:matrix(0.149663,0.004794,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.149663,0.004794,-0.008004,0.249872,0,0);}
.me6_c00406{transform:matrix(0.153156,0.004906,-0.008004,0.249872,0,0);-ms-transform:matrix(0.153156,0.004906,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.153156,0.004906,-0.008004,0.249872,0,0);}
.m17_c00406{transform:matrix(0.157010,0.003768,-0.005998,0.249928,0,0);-ms-transform:matrix(0.157010,0.003768,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.157010,0.003768,-0.005998,0.249928,0,0);}
.mda_c00406{transform:matrix(0.158988,0.005093,-0.008004,0.249872,0,0);-ms-transform:matrix(0.158988,0.005093,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.158988,0.005093,-0.008004,0.249872,0,0);}
.m109_c00406{transform:matrix(0.160458,0.005140,-0.008004,0.249872,0,0);-ms-transform:matrix(0.160458,0.005140,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.160458,0.005140,-0.008004,0.249872,0,0);}
.mde_c00406{transform:matrix(0.164101,0.005256,-0.008004,0.249872,0,0);-ms-transform:matrix(0.164101,0.005256,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.164101,0.005256,-0.008004,0.249872,0,0);}
.m10f_c00406{transform:matrix(0.164301,0.005263,-0.008004,0.249872,0,0);-ms-transform:matrix(0.164301,0.005263,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.164301,0.005263,-0.008004,0.249872,0,0);}
.me3_c00406{transform:matrix(0.165345,0.005296,-0.008004,0.249872,0,0);-ms-transform:matrix(0.165345,0.005296,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.165345,0.005296,-0.008004,0.249872,0,0);}
.mb3_c00406{transform:matrix(0.165475,0.003640,-0.005499,0.249940,0,0);-ms-transform:matrix(0.165475,0.003640,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.165475,0.003640,-0.005499,0.249940,0,0);}
.m8b_c00406{transform:matrix(0.166852,0.004004,-0.005998,0.249928,0,0);-ms-transform:matrix(0.166852,0.004004,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.166852,0.004004,-0.005998,0.249928,0,0);}
.m85_c00406{transform:matrix(0.167262,0.004014,-0.005998,0.249928,0,0);-ms-transform:matrix(0.167262,0.004014,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.167262,0.004014,-0.005998,0.249928,0,0);}
.me0_c00406{transform:matrix(0.170732,0.005469,-0.008004,0.249872,0,0);-ms-transform:matrix(0.170732,0.005469,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.170732,0.005469,-0.008004,0.249872,0,0);}
.mdd_c00406{transform:matrix(0.171792,0.005503,-0.008004,0.249872,0,0);-ms-transform:matrix(0.171792,0.005503,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.171792,0.005503,-0.008004,0.249872,0,0);}
.m8a_c00406{transform:matrix(0.171861,0.004125,-0.005998,0.249928,0,0);-ms-transform:matrix(0.171861,0.004125,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.171861,0.004125,-0.005998,0.249928,0,0);}
.m89_c00406{transform:matrix(0.172280,0.004135,-0.005998,0.249928,0,0);-ms-transform:matrix(0.172280,0.004135,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.172280,0.004135,-0.005998,0.249928,0,0);}
.m108_c00406{transform:matrix(0.172686,0.005531,-0.008004,0.249872,0,0);-ms-transform:matrix(0.172686,0.005531,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.172686,0.005531,-0.008004,0.249872,0,0);}
.m111_c00406{transform:matrix(0.174550,0.005591,-0.008004,0.249872,0,0);-ms-transform:matrix(0.174550,0.005591,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.174550,0.005591,-0.008004,0.249872,0,0);}
.me1_c00406{transform:matrix(0.174920,0.005603,-0.008004,0.249872,0,0);-ms-transform:matrix(0.174920,0.005603,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.174920,0.005603,-0.008004,0.249872,0,0);}
.m86_c00406{transform:matrix(0.175659,0.004216,-0.005998,0.249928,0,0);-ms-transform:matrix(0.175659,0.004216,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.175659,0.004216,-0.005998,0.249928,0,0);}
.m82_c00406{transform:matrix(0.176749,0.004242,-0.005998,0.249928,0,0);-ms-transform:matrix(0.176749,0.004242,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.176749,0.004242,-0.005998,0.249928,0,0);}
.m80_c00406{transform:matrix(0.177049,0.004249,-0.005998,0.249928,0,0);-ms-transform:matrix(0.177049,0.004249,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.177049,0.004249,-0.005998,0.249928,0,0);}
.m34_c00406{transform:matrix(0.179123,0.004299,-0.005998,0.249928,0,0);-ms-transform:matrix(0.179123,0.004299,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.179123,0.004299,-0.005998,0.249928,0,0);}
.mbb_c00406{transform:matrix(0.180416,0.003969,-0.005499,0.249940,0,0);-ms-transform:matrix(0.180416,0.003969,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.180416,0.003969,-0.005499,0.249940,0,0);}
.mdb_c00406{transform:matrix(0.180992,0.005798,-0.008004,0.249872,0,0);-ms-transform:matrix(0.180992,0.005798,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.180992,0.005798,-0.008004,0.249872,0,0);}
.m37_c00406{transform:matrix(0.181343,0.004352,-0.005998,0.249928,0,0);-ms-transform:matrix(0.181343,0.004352,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.181343,0.004352,-0.005998,0.249928,0,0);}
.m11f_c00406{transform:matrix(0.181732,0.005821,-0.008004,0.249872,0,0);-ms-transform:matrix(0.181732,0.005821,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.181732,0.005821,-0.008004,0.249872,0,0);}
.me4_c00406{transform:matrix(0.182112,0.005833,-0.008004,0.249872,0,0);-ms-transform:matrix(0.182112,0.005833,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.182112,0.005833,-0.008004,0.249872,0,0);}
.m31_c00406{transform:matrix(0.182472,0.004379,-0.005998,0.249928,0,0);-ms-transform:matrix(0.182472,0.004379,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.182472,0.004379,-0.005998,0.249928,0,0);}
.m10b_c00406{transform:matrix(0.182716,0.005853,-0.008004,0.249872,0,0);-ms-transform:matrix(0.182716,0.005853,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.182716,0.005853,-0.008004,0.249872,0,0);}
.m7f_c00406{transform:matrix(0.182997,0.004392,-0.005998,0.249928,0,0);-ms-transform:matrix(0.182997,0.004392,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.182997,0.004392,-0.005998,0.249928,0,0);}
.m116_c00406{transform:matrix(0.183916,0.005891,-0.008004,0.249872,0,0);-ms-transform:matrix(0.183916,0.005891,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.183916,0.005891,-0.008004,0.249872,0,0);}
.mcb_c00406{transform:matrix(0.184180,0.004052,-0.005499,0.249940,0,0);-ms-transform:matrix(0.184180,0.004052,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.184180,0.004052,-0.005499,0.249940,0,0);}
.mb6_c00406{transform:matrix(0.184670,0.004063,-0.005499,0.249940,0,0);-ms-transform:matrix(0.184670,0.004063,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.184670,0.004063,-0.005499,0.249940,0,0);}
.m81_c00406{transform:matrix(0.184692,0.004433,-0.005998,0.249928,0,0);-ms-transform:matrix(0.184692,0.004433,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.184692,0.004433,-0.005998,0.249928,0,0);}
.m7b_c00406{transform:matrix(0.185257,0.004446,-0.005998,0.249928,0,0);-ms-transform:matrix(0.185257,0.004446,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.185257,0.004446,-0.005998,0.249928,0,0);}
.m87_c00406{transform:matrix(0.185507,0.004452,-0.005998,0.249928,0,0);-ms-transform:matrix(0.185507,0.004452,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.185507,0.004452,-0.005998,0.249928,0,0);}
.m83_c00406{transform:matrix(0.185582,0.004454,-0.005998,0.249928,0,0);-ms-transform:matrix(0.185582,0.004454,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.185582,0.004454,-0.005998,0.249928,0,0);}
.ma9_c00406{transform:matrix(0.186385,0.004100,-0.005499,0.249940,0,0);-ms-transform:matrix(0.186385,0.004100,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.186385,0.004100,-0.005499,0.249940,0,0);}
.mb1_c00406{transform:matrix(0.188269,0.004142,-0.005499,0.249940,0,0);-ms-transform:matrix(0.188269,0.004142,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.188269,0.004142,-0.005499,0.249940,0,0);}
.m8c_c00406{transform:matrix(0.188666,0.004528,-0.005998,0.249928,0,0);-ms-transform:matrix(0.188666,0.004528,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.188666,0.004528,-0.005998,0.249928,0,0);}
.me7_c00406{transform:matrix(0.188848,0.006049,-0.008004,0.249872,0,0);-ms-transform:matrix(0.188848,0.006049,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.188848,0.006049,-0.008004,0.249872,0,0);}
.mbc_c00406{transform:matrix(0.189559,0.004170,-0.005499,0.249940,0,0);-ms-transform:matrix(0.189559,0.004170,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.189559,0.004170,-0.005499,0.249940,0,0);}
.m10a_c00406{transform:matrix(0.190437,0.006100,-0.008004,0.249872,0,0);-ms-transform:matrix(0.190437,0.006100,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.190437,0.006100,-0.008004,0.249872,0,0);}
.mdf_c00406{transform:matrix(0.191207,0.006125,-0.008004,0.249872,0,0);-ms-transform:matrix(0.191207,0.006125,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.191207,0.006125,-0.008004,0.249872,0,0);}
.m4_c00406{transform:matrix(0.192530,0.004621,-0.005998,0.249928,0,0);-ms-transform:matrix(0.192530,0.004621,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.192530,0.004621,-0.005998,0.249928,0,0);}
.m118_c00406{transform:matrix(0.192941,0.006180,-0.008004,0.249872,0,0);-ms-transform:matrix(0.192941,0.006180,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.192941,0.006180,-0.008004,0.249872,0,0);}
.m3d_c00406{transform:matrix(0.192979,0.004632,-0.005998,0.249928,0,0);-ms-transform:matrix(0.192979,0.004632,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.192979,0.004632,-0.005998,0.249928,0,0);}
.m35_c00406{transform:matrix(0.193544,0.004645,-0.005998,0.249928,0,0);-ms-transform:matrix(0.193544,0.004645,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.193544,0.004645,-0.005998,0.249928,0,0);}
.me2_c00406{transform:matrix(0.193906,0.006211,-0.008004,0.249872,0,0);-ms-transform:matrix(0.193906,0.006211,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.193906,0.006211,-0.008004,0.249872,0,0);}
.m10d_c00406{transform:matrix(0.194185,0.006220,-0.008004,0.249872,0,0);-ms-transform:matrix(0.194185,0.006220,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.194185,0.006220,-0.008004,0.249872,0,0);}
.m88_c00406{transform:matrix(0.194274,0.004663,-0.005998,0.249928,0,0);-ms-transform:matrix(0.194274,0.004663,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.194274,0.004663,-0.005998,0.249928,0,0);}
.m10c_c00406{transform:matrix(0.194280,0.006223,-0.008004,0.249872,0,0);-ms-transform:matrix(0.194280,0.006223,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.194280,0.006223,-0.008004,0.249872,0,0);}
.m6f_c00406{transform:matrix(0.194294,0.004663,-0.005998,0.249928,0,0);-ms-transform:matrix(0.194294,0.004663,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.194294,0.004663,-0.005998,0.249928,0,0);}
.mc5_c00406{transform:matrix(0.194893,0.004288,-0.005499,0.249940,0,0);-ms-transform:matrix(0.194893,0.004288,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.194893,0.004288,-0.005499,0.249940,0,0);}
.m84_c00406{transform:matrix(0.195439,0.004691,-0.005998,0.249928,0,0);-ms-transform:matrix(0.195439,0.004691,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.195439,0.004691,-0.005998,0.249928,0,0);}
.m77_c00406{transform:matrix(0.195964,0.004703,-0.005998,0.249928,0,0);-ms-transform:matrix(0.195964,0.004703,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.195964,0.004703,-0.005998,0.249928,0,0);}
.m13c_c00406{transform:matrix(0.196204,0.006285,-0.008004,0.249872,0,0);-ms-transform:matrix(0.196204,0.006285,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.196204,0.006285,-0.008004,0.249872,0,0);}
.m110_c00406{transform:matrix(0.196604,0.006298,-0.008004,0.249872,0,0);-ms-transform:matrix(0.196604,0.006298,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.196604,0.006298,-0.008004,0.249872,0,0);}
.m152_c00406{transform:matrix(0.196756,0.003935,-0.004999,0.249950,0,0);-ms-transform:matrix(0.196756,0.003935,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.196756,0.003935,-0.004999,0.249950,0,0);}
.m115_c00406{transform:matrix(0.196854,0.006306,-0.008004,0.249872,0,0);-ms-transform:matrix(0.196854,0.006306,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.196854,0.006306,-0.008004,0.249872,0,0);}
.m11c_c00406{transform:matrix(0.196864,0.006306,-0.008004,0.249872,0,0);-ms-transform:matrix(0.196864,0.006306,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.196864,0.006306,-0.008004,0.249872,0,0);}
.m56_c00406{transform:matrix(0.197273,0.004735,-0.005998,0.249928,0,0);-ms-transform:matrix(0.197273,0.004735,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.197273,0.004735,-0.005998,0.249928,0,0);}
.mac_c00406{transform:matrix(0.197282,0.004340,-0.005499,0.249940,0,0);-ms-transform:matrix(0.197282,0.004340,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.197282,0.004340,-0.005499,0.249940,0,0);}
.m14f_c00406{transform:matrix(0.197520,0.003950,-0.004999,0.249950,0,0);-ms-transform:matrix(0.197520,0.003950,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.197520,0.003950,-0.004999,0.249950,0,0);}
.m6d_c00406{transform:matrix(0.198353,0.004760,-0.005998,0.249928,0,0);-ms-transform:matrix(0.198353,0.004760,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.198353,0.004760,-0.005998,0.249928,0,0);}
.m10e_c00406{transform:matrix(0.198498,0.006358,-0.008004,0.249872,0,0);-ms-transform:matrix(0.198498,0.006358,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.198498,0.006358,-0.008004,0.249872,0,0);}
.med_c00406{transform:matrix(0.198933,0.006372,-0.008004,0.249872,0,0);-ms-transform:matrix(0.198933,0.006372,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.198933,0.006372,-0.008004,0.249872,0,0);}
.m138_c00406{transform:matrix(0.198998,0.006374,-0.008004,0.249872,0,0);-ms-transform:matrix(0.198998,0.006374,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.198998,0.006374,-0.008004,0.249872,0,0);}
.m75_c00406{transform:matrix(0.199468,0.004787,-0.005998,0.249928,0,0);-ms-transform:matrix(0.199468,0.004787,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.199468,0.004787,-0.005998,0.249928,0,0);}
.m79_c00406{transform:matrix(0.199593,0.004790,-0.005998,0.249928,0,0);-ms-transform:matrix(0.199593,0.004790,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.199593,0.004790,-0.005998,0.249928,0,0);}
.m151_c00406{transform:matrix(0.199660,0.003993,-0.004999,0.249950,0,0);-ms-transform:matrix(0.199660,0.003993,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.199660,0.003993,-0.004999,0.249950,0,0);}
.m1_c00406{transform:matrix(0.199727,0.004793,-0.005998,0.249928,0,0);-ms-transform:matrix(0.199727,0.004793,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.199727,0.004793,-0.005998,0.249928,0,0);}
.m150_c00406{transform:matrix(0.199740,0.003995,-0.004999,0.249950,0,0);-ms-transform:matrix(0.199740,0.003995,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.199740,0.003995,-0.004999,0.249950,0,0);}
.ma_c00406{transform:matrix(0.200237,0.004806,-0.005998,0.249928,0,0);-ms-transform:matrix(0.200237,0.004806,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.200237,0.004806,-0.005998,0.249928,0,0);}
.m5b_c00406{transform:matrix(0.201437,0.004834,-0.005998,0.249928,0,0);-ms-transform:matrix(0.201437,0.004834,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.201437,0.004834,-0.005998,0.249928,0,0);}
.m11a_c00406{transform:matrix(0.202156,0.006475,-0.008004,0.249872,0,0);-ms-transform:matrix(0.202156,0.006475,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.202156,0.006475,-0.008004,0.249872,0,0);}
.mcc_c00406{transform:matrix(0.202166,0.004448,-0.005499,0.249940,0,0);-ms-transform:matrix(0.202166,0.004448,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.202166,0.004448,-0.005499,0.249940,0,0);}
.m5d_c00406{transform:matrix(0.203296,0.004879,-0.005998,0.249928,0,0);-ms-transform:matrix(0.203296,0.004879,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.203296,0.004879,-0.005998,0.249928,0,0);}
.m123_c00406{transform:matrix(0.203301,0.006512,-0.008004,0.249872,0,0);-ms-transform:matrix(0.203301,0.006512,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.203301,0.006512,-0.008004,0.249872,0,0);}
.m5a_c00406{transform:matrix(0.203801,0.004891,-0.005998,0.249928,0,0);-ms-transform:matrix(0.203801,0.004891,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.203801,0.004891,-0.005998,0.249928,0,0);}
.m39_c00406{transform:matrix(0.203986,0.004896,-0.005998,0.249928,0,0);-ms-transform:matrix(0.203986,0.004896,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.203986,0.004896,-0.005998,0.249928,0,0);}
.ma4_c00406{transform:matrix(0.204256,0.004494,-0.005499,0.249940,0,0);-ms-transform:matrix(0.204256,0.004494,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.204256,0.004494,-0.005499,0.249940,0,0);}
.m54_c00406{transform:matrix(0.204401,0.004906,-0.005998,0.249928,0,0);-ms-transform:matrix(0.204401,0.004906,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.204401,0.004906,-0.005998,0.249928,0,0);}
.mb9_c00406{transform:matrix(0.204491,0.004499,-0.005499,0.249940,0,0);-ms-transform:matrix(0.204491,0.004499,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.204491,0.004499,-0.005499,0.249940,0,0);}
.m11d_c00406{transform:matrix(0.204950,0.006565,-0.008004,0.249872,0,0);-ms-transform:matrix(0.204950,0.006565,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.204950,0.006565,-0.008004,0.249872,0,0);}
.ma5_c00406{transform:matrix(0.205275,0.004516,-0.005499,0.249940,0,0);-ms-transform:matrix(0.205275,0.004516,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.205275,0.004516,-0.005499,0.249940,0,0);}
.m41_c00406{transform:matrix(0.205376,0.004929,-0.005998,0.249928,0,0);-ms-transform:matrix(0.205376,0.004929,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.205376,0.004929,-0.005998,0.249928,0,0);}
.m55_c00406{transform:matrix(0.206161,0.004948,-0.005998,0.249928,0,0);-ms-transform:matrix(0.206161,0.004948,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.206161,0.004948,-0.005998,0.249928,0,0);}
.m57_c00406{transform:matrix(0.206201,0.004949,-0.005998,0.249928,0,0);-ms-transform:matrix(0.206201,0.004949,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.206201,0.004949,-0.005998,0.249928,0,0);}
.m133_c00406{transform:matrix(0.206214,0.006605,-0.008004,0.249872,0,0);-ms-transform:matrix(0.206214,0.006605,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.206214,0.006605,-0.008004,0.249872,0,0);}
.m7a_c00406{transform:matrix(0.206366,0.004953,-0.005998,0.249928,0,0);-ms-transform:matrix(0.206366,0.004953,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.206366,0.004953,-0.005998,0.249928,0,0);}
.maf_c00406{transform:matrix(0.206385,0.004540,-0.005499,0.249940,0,0);-ms-transform:matrix(0.206385,0.004540,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.206385,0.004540,-0.005499,0.249940,0,0);}
.m136_c00406{transform:matrix(0.207319,0.006641,-0.008004,0.249872,0,0);-ms-transform:matrix(0.207319,0.006641,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.207319,0.006641,-0.008004,0.249872,0,0);}
.m45_c00406{transform:matrix(0.207335,0.004976,-0.005998,0.249928,0,0);-ms-transform:matrix(0.207335,0.004976,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.207335,0.004976,-0.005998,0.249928,0,0);}
.mc0_c00406{transform:matrix(0.207395,0.004563,-0.005499,0.249940,0,0);-ms-transform:matrix(0.207395,0.004563,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.207395,0.004563,-0.005499,0.249940,0,0);}
.mba_c00406{transform:matrix(0.207550,0.004566,-0.005499,0.249940,0,0);-ms-transform:matrix(0.207550,0.004566,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.207550,0.004566,-0.005499,0.249940,0,0);}
.m8_c00406{transform:matrix(0.207975,0.004991,-0.005998,0.249928,0,0);-ms-transform:matrix(0.207975,0.004991,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.207975,0.004991,-0.005998,0.249928,0,0);}
.mce_c00406{transform:matrix(0.208125,0.004579,-0.005499,0.249940,0,0);-ms-transform:matrix(0.208125,0.004579,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.208125,0.004579,-0.005499,0.249940,0,0);}
.m127_c00406{transform:matrix(0.209253,0.006703,-0.008004,0.249872,0,0);-ms-transform:matrix(0.209253,0.006703,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.209253,0.006703,-0.008004,0.249872,0,0);}
.m122_c00406{transform:matrix(0.209443,0.006709,-0.008004,0.249872,0,0);-ms-transform:matrix(0.209443,0.006709,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.209443,0.006709,-0.008004,0.249872,0,0);}
.m70_c00406{transform:matrix(0.209960,0.005039,-0.005998,0.249928,0,0);-ms-transform:matrix(0.209960,0.005039,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.209960,0.005039,-0.005998,0.249928,0,0);}
.m74_c00406{transform:matrix(0.210000,0.005040,-0.005998,0.249928,0,0);-ms-transform:matrix(0.210000,0.005040,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.210000,0.005040,-0.005998,0.249928,0,0);}
.md3_c00406{transform:matrix(0.210442,0.006741,-0.008004,0.249872,0,0);-ms-transform:matrix(0.210442,0.006741,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.210442,0.006741,-0.008004,0.249872,0,0);}
.m69_c00406{transform:matrix(0.210969,0.005063,-0.005998,0.249928,0,0);-ms-transform:matrix(0.210969,0.005063,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.210969,0.005063,-0.005998,0.249928,0,0);}
.m43_c00406{transform:matrix(0.211154,0.005068,-0.005998,0.249928,0,0);-ms-transform:matrix(0.211154,0.005068,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.211154,0.005068,-0.005998,0.249928,0,0);}
.m78_c00406{transform:matrix(0.211264,0.005070,-0.005998,0.249928,0,0);-ms-transform:matrix(0.211264,0.005070,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.211264,0.005070,-0.005998,0.249928,0,0);}
.mc9_c00406{transform:matrix(0.211699,0.004657,-0.005499,0.249940,0,0);-ms-transform:matrix(0.211699,0.004657,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.211699,0.004657,-0.005499,0.249940,0,0);}
.m139_c00406{transform:matrix(0.212076,0.006793,-0.008004,0.249872,0,0);-ms-transform:matrix(0.212076,0.006793,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.212076,0.006793,-0.008004,0.249872,0,0);}
.md1_c00406{transform:matrix(0.212091,0.006794,-0.008004,0.249872,0,0);-ms-transform:matrix(0.212091,0.006794,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.212091,0.006794,-0.008004,0.249872,0,0);}
.m32_c00406{transform:matrix(0.212224,0.005093,-0.005998,0.249928,0,0);-ms-transform:matrix(0.212224,0.005093,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.212224,0.005093,-0.005998,0.249928,0,0);}
.m3_c00406{transform:matrix(0.212454,0.005099,-0.005998,0.249928,0,0);-ms-transform:matrix(0.212454,0.005099,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.212454,0.005099,-0.005998,0.249928,0,0);}
.mb4_c00406{transform:matrix(0.212459,0.004674,-0.005499,0.249940,0,0);-ms-transform:matrix(0.212459,0.004674,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.212459,0.004674,-0.005499,0.249940,0,0);}
.m7e_c00406{transform:matrix(0.213319,0.005120,-0.005998,0.249928,0,0);-ms-transform:matrix(0.213319,0.005120,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.213319,0.005120,-0.005998,0.249928,0,0);}
.m121_c00406{transform:matrix(0.213775,0.006848,-0.008004,0.249872,0,0);-ms-transform:matrix(0.213775,0.006848,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.213775,0.006848,-0.008004,0.249872,0,0);}
.m154_c00406{transform:matrix(0.213887,0.004278,-0.004999,0.249950,0,0);-ms-transform:matrix(0.213887,0.004278,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.213887,0.004278,-0.004999,0.249950,0,0);}
.mca_c00406{transform:matrix(0.214213,0.004713,-0.005499,0.249940,0,0);-ms-transform:matrix(0.214213,0.004713,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.214213,0.004713,-0.005499,0.249940,0,0);}
.m142_c00406{transform:matrix(0.214252,0.008364,-0.009752,0.249810,0,0);-ms-transform:matrix(0.214252,0.008364,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.214252,0.008364,-0.009752,0.249810,0,0);}
.mfc_c00406{transform:matrix(0.214305,0.006865,-0.008004,0.249872,0,0);-ms-transform:matrix(0.214305,0.006865,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.214305,0.006865,-0.008004,0.249872,0,0);}
.m33_c00406{transform:matrix(0.214438,0.005147,-0.005998,0.249928,0,0);-ms-transform:matrix(0.214438,0.005147,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.214438,0.005147,-0.005998,0.249928,0,0);}
.m3b_c00406{transform:matrix(0.214638,0.005151,-0.005998,0.249928,0,0);-ms-transform:matrix(0.214638,0.005151,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.214638,0.005151,-0.005998,0.249928,0,0);}
.mb5_c00406{transform:matrix(0.214843,0.004727,-0.005499,0.249940,0,0);-ms-transform:matrix(0.214843,0.004727,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.214843,0.004727,-0.005499,0.249940,0,0);}
.m68_c00406{transform:matrix(0.215423,0.005170,-0.005998,0.249928,0,0);-ms-transform:matrix(0.215423,0.005170,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.215423,0.005170,-0.005998,0.249928,0,0);}
.m13d_c00406{transform:matrix(0.215649,0.006908,-0.008004,0.249872,0,0);-ms-transform:matrix(0.215649,0.006908,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.215649,0.006908,-0.008004,0.249872,0,0);}
.m36_c00406{transform:matrix(0.215803,0.005179,-0.005998,0.249928,0,0);-ms-transform:matrix(0.215803,0.005179,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.215803,0.005179,-0.005998,0.249928,0,0);}
.mab_c00406{transform:matrix(0.216168,0.004756,-0.005499,0.249940,0,0);-ms-transform:matrix(0.216168,0.004756,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.216168,0.004756,-0.005499,0.249940,0,0);}
.mc8_c00406{transform:matrix(0.216263,0.004758,-0.005499,0.249940,0,0);-ms-transform:matrix(0.216263,0.004758,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.216263,0.004758,-0.005499,0.249940,0,0);}
.m147_c00406{transform:matrix(0.216625,0.008457,-0.009752,0.249810,0,0);-ms-transform:matrix(0.216625,0.008457,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.216625,0.008457,-0.009752,0.249810,0,0);}
.m53_c00406{transform:matrix(0.216663,0.005200,-0.005998,0.249928,0,0);-ms-transform:matrix(0.216663,0.005200,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.216663,0.005200,-0.005998,0.249928,0,0);}
.mbd_c00406{transform:matrix(0.216738,0.004768,-0.005499,0.249940,0,0);-ms-transform:matrix(0.216738,0.004768,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.216738,0.004768,-0.005499,0.249940,0,0);}
.m134_c00406{transform:matrix(0.217154,0.006956,-0.008004,0.249872,0,0);-ms-transform:matrix(0.217154,0.006956,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.217154,0.006956,-0.008004,0.249872,0,0);}
.m2f_c00406{transform:matrix(0.217212,0.005213,-0.005998,0.249928,0,0);-ms-transform:matrix(0.217212,0.005213,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.217212,0.005213,-0.005998,0.249928,0,0);}
.m114_c00406{transform:matrix(0.217274,0.006960,-0.008004,0.249872,0,0);-ms-transform:matrix(0.217274,0.006960,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.217274,0.006960,-0.008004,0.249872,0,0);}
.mc1_c00406{transform:matrix(0.217477,0.004785,-0.005499,0.249940,0,0);-ms-transform:matrix(0.217477,0.004785,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.217477,0.004785,-0.005499,0.249940,0,0);}
.mcd_c00406{transform:matrix(0.217562,0.004786,-0.005499,0.249940,0,0);-ms-transform:matrix(0.217562,0.004786,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.217562,0.004786,-0.005499,0.249940,0,0);}
.m0_c00406{transform:matrix(0.217887,0.005229,-0.005998,0.249928,0,0);-ms-transform:matrix(0.217887,0.005229,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.217887,0.005229,-0.005998,0.249928,0,0);}
.m72_c00406{transform:matrix(0.218047,0.005233,-0.005998,0.249928,0,0);-ms-transform:matrix(0.218047,0.005233,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.218047,0.005233,-0.005998,0.249928,0,0);}
.m117_c00406{transform:matrix(0.218393,0.006996,-0.008004,0.249872,0,0);-ms-transform:matrix(0.218393,0.006996,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.218393,0.006996,-0.008004,0.249872,0,0);}
.m13f_c00406{transform:matrix(0.218773,0.008541,-0.009752,0.249810,0,0);-ms-transform:matrix(0.218773,0.008541,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.218773,0.008541,-0.009752,0.249810,0,0);}
.m119_c00406{transform:matrix(0.218793,0.007008,-0.008004,0.249872,0,0);-ms-transform:matrix(0.218793,0.007008,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.218793,0.007008,-0.008004,0.249872,0,0);}
.mfa_c00406{transform:matrix(0.218828,0.007009,-0.008004,0.249872,0,0);-ms-transform:matrix(0.218828,0.007009,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.218828,0.007009,-0.008004,0.249872,0,0);}
.mc3_c00406{transform:matrix(0.219162,0.004822,-0.005499,0.249940,0,0);-ms-transform:matrix(0.219162,0.004822,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.219162,0.004822,-0.005499,0.249940,0,0);}
.mb2_c00406{transform:matrix(0.219177,0.004822,-0.005499,0.249940,0,0);-ms-transform:matrix(0.219177,0.004822,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.219177,0.004822,-0.005499,0.249940,0,0);}
.m40_c00406{transform:matrix(0.219472,0.005267,-0.005998,0.249928,0,0);-ms-transform:matrix(0.219472,0.005267,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.219472,0.005267,-0.005998,0.249928,0,0);}
.m30_c00406{transform:matrix(0.219732,0.005274,-0.005998,0.249928,0,0);-ms-transform:matrix(0.219732,0.005274,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.219732,0.005274,-0.005998,0.249928,0,0);}
.m3f_c00406{transform:matrix(0.219982,0.005280,-0.005998,0.249928,0,0);-ms-transform:matrix(0.219982,0.005280,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.219982,0.005280,-0.005998,0.249928,0,0);}
.mf9_c00406{transform:matrix(0.220752,0.007071,-0.008004,0.249872,0,0);-ms-transform:matrix(0.220752,0.007071,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.220752,0.007071,-0.008004,0.249872,0,0);}
.m102_c00406{transform:matrix(0.220777,0.007072,-0.008004,0.249872,0,0);-ms-transform:matrix(0.220777,0.007072,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.220777,0.007072,-0.008004,0.249872,0,0);}
.mc2_c00406{transform:matrix(0.221156,0.004865,-0.005499,0.249940,0,0);-ms-transform:matrix(0.221156,0.004865,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.221156,0.004865,-0.005499,0.249940,0,0);}
.m14c_c00406{transform:matrix(0.221201,0.004424,-0.004999,0.249950,0,0);-ms-transform:matrix(0.221201,0.004424,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.221201,0.004424,-0.004999,0.249950,0,0);}
.m6c_c00406{transform:matrix(0.221236,0.005310,-0.005998,0.249928,0,0);-ms-transform:matrix(0.221236,0.005310,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.221236,0.005310,-0.005998,0.249928,0,0);}
.m60_c00406{transform:matrix(0.221351,0.005312,-0.005998,0.249928,0,0);-ms-transform:matrix(0.221351,0.005312,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.221351,0.005312,-0.005998,0.249928,0,0);}
.m6a_c00406{transform:matrix(0.221771,0.005323,-0.005998,0.249928,0,0);-ms-transform:matrix(0.221771,0.005323,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.221771,0.005323,-0.005998,0.249928,0,0);}
.m153_c00406{transform:matrix(0.221996,0.004440,-0.004999,0.249950,0,0);-ms-transform:matrix(0.221996,0.004440,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.221996,0.004440,-0.004999,0.249950,0,0);}
.m128_c00406{transform:matrix(0.222066,0.007113,-0.008004,0.249872,0,0);-ms-transform:matrix(0.222066,0.007113,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.222066,0.007113,-0.008004,0.249872,0,0);}
.m14e_c00406{transform:matrix(0.222920,0.004458,-0.004999,0.249950,0,0);-ms-transform:matrix(0.222920,0.004458,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.222920,0.004458,-0.004999,0.249950,0,0);}
.m11b_c00406{transform:matrix(0.222991,0.007143,-0.008004,0.249872,0,0);-ms-transform:matrix(0.222991,0.007143,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.222991,0.007143,-0.008004,0.249872,0,0);}
.m13_c00406{transform:matrix(0.223206,0.005357,-0.005998,0.249928,0,0);-ms-transform:matrix(0.223206,0.005357,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.223206,0.005357,-0.005998,0.249928,0,0);}
.m5_c00406{transform:matrix(0.223256,0.005358,-0.005998,0.249928,0,0);-ms-transform:matrix(0.223256,0.005358,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.223256,0.005358,-0.005998,0.249928,0,0);}
.m99_c00406{transform:matrix(0.223456,0.004916,-0.005499,0.249940,0,0);-ms-transform:matrix(0.223456,0.004916,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.223456,0.004916,-0.005499,0.249940,0,0);}
.mae_c00406{transform:matrix(0.223796,0.004924,-0.005499,0.249940,0,0);-ms-transform:matrix(0.223796,0.004924,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.223796,0.004924,-0.005499,0.249940,0,0);}
.m76_c00406{transform:matrix(0.223956,0.005375,-0.005998,0.249928,0,0);-ms-transform:matrix(0.223956,0.005375,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.223956,0.005375,-0.005998,0.249928,0,0);}
.m5c_c00406{transform:matrix(0.223966,0.005375,-0.005998,0.249928,0,0);-ms-transform:matrix(0.223966,0.005375,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.223966,0.005375,-0.005998,0.249928,0,0);}
.m46_c00406{transform:matrix(0.224005,0.005376,-0.005998,0.249928,0,0);-ms-transform:matrix(0.224005,0.005376,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.224005,0.005376,-0.005998,0.249928,0,0);}
.m7c_c00406{transform:matrix(0.224440,0.005387,-0.005998,0.249928,0,0);-ms-transform:matrix(0.224440,0.005387,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.224440,0.005387,-0.005998,0.249928,0,0);}
.m7_c00406{transform:matrix(0.224495,0.005388,-0.005998,0.249928,0,0);-ms-transform:matrix(0.224495,0.005388,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.224495,0.005388,-0.005998,0.249928,0,0);}
.m26_c00406{transform:matrix(0.224615,0.005391,-0.005998,0.249928,0,0);-ms-transform:matrix(0.224615,0.005391,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.224615,0.005391,-0.005998,0.249928,0,0);}
.m93_c00406{transform:matrix(0.224696,0.004943,-0.005499,0.249940,0,0);-ms-transform:matrix(0.224696,0.004943,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.224696,0.004943,-0.005499,0.249940,0,0);}
.m6b_c00406{transform:matrix(0.225430,0.005410,-0.005998,0.249928,0,0);-ms-transform:matrix(0.225430,0.005410,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.225430,0.005410,-0.005998,0.249928,0,0);}
.mb0_c00406{transform:matrix(0.225565,0.004962,-0.005499,0.249940,0,0);-ms-transform:matrix(0.225565,0.004962,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.225565,0.004962,-0.005499,0.249940,0,0);}
.m71_c00406{transform:matrix(0.225655,0.005416,-0.005998,0.249928,0,0);-ms-transform:matrix(0.225655,0.005416,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.225655,0.005416,-0.005998,0.249928,0,0);}
.m11e_c00406{transform:matrix(0.225724,0.007230,-0.008004,0.249872,0,0);-ms-transform:matrix(0.225724,0.007230,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.225724,0.007230,-0.008004,0.249872,0,0);}
.m4c_c00406{transform:matrix(0.225780,0.005419,-0.005998,0.249928,0,0);-ms-transform:matrix(0.225780,0.005419,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.225780,0.005419,-0.005998,0.249928,0,0);}
.m14d_c00406{transform:matrix(0.225900,0.004518,-0.004999,0.249950,0,0);-ms-transform:matrix(0.225900,0.004518,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.225900,0.004518,-0.004999,0.249950,0,0);}
.m8e_c00406{transform:matrix(0.226055,0.004973,-0.005499,0.249940,0,0);-ms-transform:matrix(0.226055,0.004973,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.226055,0.004973,-0.005499,0.249940,0,0);}
.m104_c00406{transform:matrix(0.226059,0.007241,-0.008004,0.249872,0,0);-ms-transform:matrix(0.226059,0.007241,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.226059,0.007241,-0.008004,0.249872,0,0);}
.m6e_c00406{transform:matrix(0.226165,0.005428,-0.005998,0.249928,0,0);-ms-transform:matrix(0.226165,0.005428,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.226165,0.005428,-0.005998,0.249928,0,0);}
.m52_c00406{transform:matrix(0.226495,0.005436,-0.005998,0.249928,0,0);-ms-transform:matrix(0.226495,0.005436,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.226495,0.005436,-0.005998,0.249928,0,0);}
.m1b_c00406{transform:matrix(0.226680,0.005440,-0.005998,0.249928,0,0);-ms-transform:matrix(0.226680,0.005440,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.226680,0.005440,-0.005998,0.249928,0,0);}
.m73_c00406{transform:matrix(0.227315,0.005456,-0.005998,0.249928,0,0);-ms-transform:matrix(0.227315,0.005456,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.227315,0.005456,-0.005998,0.249928,0,0);}
.m9b_c00406{transform:matrix(0.227375,0.005002,-0.005499,0.249940,0,0);-ms-transform:matrix(0.227375,0.005002,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.227375,0.005002,-0.005499,0.249940,0,0);}
.ma6_c00406{transform:matrix(0.227855,0.005013,-0.005499,0.249940,0,0);-ms-transform:matrix(0.227855,0.005013,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.227855,0.005013,-0.005499,0.249940,0,0);}
.m13a_c00406{transform:matrix(0.227898,0.007300,-0.008004,0.249872,0,0);-ms-transform:matrix(0.227898,0.007300,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.227898,0.007300,-0.008004,0.249872,0,0);}
.mb7_c00406{transform:matrix(0.227915,0.005014,-0.005499,0.249940,0,0);-ms-transform:matrix(0.227915,0.005014,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.227915,0.005014,-0.005499,0.249940,0,0);}
.md_c00406{transform:matrix(0.228039,0.005473,-0.005998,0.249928,0,0);-ms-transform:matrix(0.228039,0.005473,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.228039,0.005473,-0.005998,0.249928,0,0);}
.m2_c00406{transform:matrix(0.228099,0.005474,-0.005998,0.249928,0,0);-ms-transform:matrix(0.228099,0.005474,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.228099,0.005474,-0.005998,0.249928,0,0);}
.m143_c00406{transform:matrix(0.228296,0.008912,-0.009752,0.249810,0,0);-ms-transform:matrix(0.228296,0.008912,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.228296,0.008912,-0.009752,0.249810,0,0);}
.m126_c00406{transform:matrix(0.228303,0.007313,-0.008004,0.249872,0,0);-ms-transform:matrix(0.228303,0.007313,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.228303,0.007313,-0.008004,0.249872,0,0);}
.m58_c00406{transform:matrix(0.228379,0.005481,-0.005998,0.249928,0,0);-ms-transform:matrix(0.228379,0.005481,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.228379,0.005481,-0.005998,0.249928,0,0);}
.m48_c00406{transform:matrix(0.228749,0.005490,-0.005998,0.249928,0,0);-ms-transform:matrix(0.228749,0.005490,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.228749,0.005490,-0.005998,0.249928,0,0);}
.m120_c00406{transform:matrix(0.228868,0.007331,-0.008004,0.249872,0,0);-ms-transform:matrix(0.228868,0.007331,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.228868,0.007331,-0.008004,0.249872,0,0);}
.mc7_c00406{transform:matrix(0.229140,0.005041,-0.005499,0.249940,0,0);-ms-transform:matrix(0.229140,0.005041,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.229140,0.005041,-0.005499,0.249940,0,0);}
.m9_c00406{transform:matrix(0.229229,0.005501,-0.005998,0.249928,0,0);-ms-transform:matrix(0.229229,0.005501,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.229229,0.005501,-0.005998,0.249928,0,0);}
.mea_c00406{transform:matrix(0.229472,0.007350,-0.008004,0.249872,0,0);-ms-transform:matrix(0.229472,0.007350,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.229472,0.007350,-0.008004,0.249872,0,0);}
.m59_c00406{transform:matrix(0.229694,0.005513,-0.005998,0.249928,0,0);-ms-transform:matrix(0.229694,0.005513,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.229694,0.005513,-0.005998,0.249928,0,0);}
.m100_c00406{transform:matrix(0.229782,0.007360,-0.008004,0.249872,0,0);-ms-transform:matrix(0.229782,0.007360,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.229782,0.007360,-0.008004,0.249872,0,0);}
.mc4_c00406{transform:matrix(0.229884,0.005057,-0.005499,0.249940,0,0);-ms-transform:matrix(0.229884,0.005057,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.229884,0.005057,-0.005499,0.249940,0,0);}
.m64_c00406{transform:matrix(0.230149,0.005524,-0.005998,0.249928,0,0);-ms-transform:matrix(0.230149,0.005524,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.230149,0.005524,-0.005998,0.249928,0,0);}
.me8_c00406{transform:matrix(0.230317,0.007378,-0.008004,0.249872,0,0);-ms-transform:matrix(0.230317,0.007378,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.230317,0.007378,-0.008004,0.249872,0,0);}
.m5e_c00406{transform:matrix(0.230579,0.005534,-0.005998,0.249928,0,0);-ms-transform:matrix(0.230579,0.005534,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.230579,0.005534,-0.005998,0.249928,0,0);}
.m91_c00406{transform:matrix(0.230839,0.005078,-0.005499,0.249940,0,0);-ms-transform:matrix(0.230839,0.005078,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.230839,0.005078,-0.005499,0.249940,0,0);}
.ma7_c00406{transform:matrix(0.231009,0.005082,-0.005499,0.249940,0,0);-ms-transform:matrix(0.231009,0.005082,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.231009,0.005082,-0.005499,0.249940,0,0);}
.m7d_c00406{transform:matrix(0.231458,0.005555,-0.005998,0.249928,0,0);-ms-transform:matrix(0.231458,0.005555,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.231458,0.005555,-0.005998,0.249928,0,0);}
.m28_c00406{transform:matrix(0.231573,0.005558,-0.005998,0.249928,0,0);-ms-transform:matrix(0.231573,0.005558,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.231573,0.005558,-0.005998,0.249928,0,0);}
.mf7_c00406{transform:matrix(0.232826,0.007458,-0.008004,0.249872,0,0);-ms-transform:matrix(0.232826,0.007458,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.232826,0.007458,-0.008004,0.249872,0,0);}
.mbe_c00406{transform:matrix(0.233508,0.005137,-0.005499,0.249940,0,0);-ms-transform:matrix(0.233508,0.005137,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.233508,0.005137,-0.005499,0.249940,0,0);}
.md6_c00406{transform:matrix(0.233560,0.007481,-0.008004,0.249872,0,0);-ms-transform:matrix(0.233560,0.007481,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.233560,0.007481,-0.008004,0.249872,0,0);}
.m13e_c00406{transform:matrix(0.234030,0.007496,-0.008004,0.249872,0,0);-ms-transform:matrix(0.234030,0.007496,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.234030,0.007496,-0.008004,0.249872,0,0);}
.m135_c00406{transform:matrix(0.234115,0.007499,-0.008004,0.249872,0,0);-ms-transform:matrix(0.234115,0.007499,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.234115,0.007499,-0.008004,0.249872,0,0);}
.m62_c00406{transform:matrix(0.234717,0.005633,-0.005998,0.249928,0,0);-ms-transform:matrix(0.234717,0.005633,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.234717,0.005633,-0.005998,0.249928,0,0);}
.m98_c00406{transform:matrix(0.235063,0.005171,-0.005499,0.249940,0,0);-ms-transform:matrix(0.235063,0.005171,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.235063,0.005171,-0.005499,0.249940,0,0);}
.mf5_c00406{transform:matrix(0.235169,0.007533,-0.008004,0.249872,0,0);-ms-transform:matrix(0.235169,0.007533,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.235169,0.007533,-0.008004,0.249872,0,0);}
.m12c_c00406{transform:matrix(0.235459,0.007542,-0.008004,0.249872,0,0);-ms-transform:matrix(0.235459,0.007542,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.235459,0.007542,-0.008004,0.249872,0,0);}
.m12e_c00406{transform:matrix(0.235549,0.007545,-0.008004,0.249872,0,0);-ms-transform:matrix(0.235549,0.007545,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.235549,0.007545,-0.008004,0.249872,0,0);}
.m145_c00406{transform:matrix(0.235611,0.009198,-0.009752,0.249810,0,0);-ms-transform:matrix(0.235611,0.009198,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.235611,0.009198,-0.009752,0.249810,0,0);}
.m12b_c00406{transform:matrix(0.236354,0.007571,-0.008004,0.249872,0,0);-ms-transform:matrix(0.236354,0.007571,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.236354,0.007571,-0.008004,0.249872,0,0);}
.mbf_c00406{transform:matrix(0.236408,0.005201,-0.005499,0.249940,0,0);-ms-transform:matrix(0.236408,0.005201,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.236408,0.005201,-0.005499,0.249940,0,0);}
.m6_c00406{transform:matrix(0.236702,0.005681,-0.005998,0.249928,0,0);-ms-transform:matrix(0.236702,0.005681,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.236702,0.005681,-0.005998,0.249928,0,0);}
.mff_c00406{transform:matrix(0.236779,0.007584,-0.008004,0.249872,0,0);-ms-transform:matrix(0.236779,0.007584,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.236779,0.007584,-0.008004,0.249872,0,0);}
.m140_c00406{transform:matrix(0.236989,0.009252,-0.009752,0.249810,0,0);-ms-transform:matrix(0.236989,0.009252,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.236989,0.009252,-0.009752,0.249810,0,0);}
.m14a_c00406{transform:matrix(0.237079,0.009255,-0.009752,0.249810,0,0);-ms-transform:matrix(0.237079,0.009255,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.237079,0.009255,-0.009752,0.249810,0,0);}
.m106_c00406{transform:matrix(0.237663,0.007613,-0.008004,0.249872,0,0);-ms-transform:matrix(0.237663,0.007613,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.237663,0.007613,-0.008004,0.249872,0,0);}
.mfd_c00406{transform:matrix(0.238378,0.007636,-0.008004,0.249872,0,0);-ms-transform:matrix(0.238378,0.007636,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.238378,0.007636,-0.008004,0.249872,0,0);}
.md7_c00406{transform:matrix(0.239107,0.007659,-0.008004,0.249872,0,0);-ms-transform:matrix(0.239107,0.007659,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.239107,0.007659,-0.008004,0.249872,0,0);}
.ma8_c00406{transform:matrix(0.239212,0.005263,-0.005499,0.249940,0,0);-ms-transform:matrix(0.239212,0.005263,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.239212,0.005263,-0.005499,0.249940,0,0);}
.m11_c00406{transform:matrix(0.239841,0.005756,-0.005998,0.249928,0,0);-ms-transform:matrix(0.239841,0.005756,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.239841,0.005756,-0.005998,0.249928,0,0);}
.m137_c00406{transform:matrix(0.240072,0.007690,-0.008004,0.249872,0,0);-ms-transform:matrix(0.240072,0.007690,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.240072,0.007690,-0.008004,0.249872,0,0);}
.mb8_c00406{transform:matrix(0.240412,0.005289,-0.005499,0.249940,0,0);-ms-transform:matrix(0.240412,0.005289,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.240412,0.005289,-0.005499,0.249940,0,0);}
.m130_c00406{transform:matrix(0.240547,0.007705,-0.008004,0.249872,0,0);-ms-transform:matrix(0.240547,0.007705,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.240547,0.007705,-0.008004,0.249872,0,0);}
.m131_c00406{transform:matrix(0.240737,0.007711,-0.008004,0.249872,0,0);-ms-transform:matrix(0.240737,0.007711,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.240737,0.007711,-0.008004,0.249872,0,0);}
.m23_c00406{transform:matrix(0.241251,0.005790,-0.005998,0.249928,0,0);-ms-transform:matrix(0.241251,0.005790,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.241251,0.005790,-0.005998,0.249928,0,0);}
.mad_c00406{transform:matrix(0.241412,0.005311,-0.005499,0.249940,0,0);-ms-transform:matrix(0.241412,0.005311,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.241412,0.005311,-0.005499,0.249940,0,0);}
.m38_c00406{transform:matrix(0.241425,0.005794,-0.005998,0.249928,0,0);-ms-transform:matrix(0.241425,0.005794,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.241425,0.005794,-0.005998,0.249928,0,0);}
.m90_c00406{transform:matrix(0.241961,0.005323,-0.005499,0.249940,0,0);-ms-transform:matrix(0.241961,0.005323,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.241961,0.005323,-0.005499,0.249940,0,0);}
.maa_c00406{transform:matrix(0.242076,0.005326,-0.005499,0.249940,0,0);-ms-transform:matrix(0.242076,0.005326,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.242076,0.005326,-0.005499,0.249940,0,0);}
.mf4_c00406{transform:matrix(0.242251,0.007760,-0.008004,0.249872,0,0);-ms-transform:matrix(0.242251,0.007760,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.242251,0.007760,-0.008004,0.249872,0,0);}
.ma0_c00406{transform:matrix(0.243316,0.005353,-0.005499,0.249940,0,0);-ms-transform:matrix(0.243316,0.005353,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.243316,0.005353,-0.005499,0.249940,0,0);}
.md2_c00406{transform:matrix(0.243625,0.007804,-0.008004,0.249872,0,0);-ms-transform:matrix(0.243625,0.007804,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.243625,0.007804,-0.008004,0.249872,0,0);}
.mcf_c00406{transform:matrix(0.243970,0.007815,-0.008004,0.249872,0,0);-ms-transform:matrix(0.243970,0.007815,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.243970,0.007815,-0.008004,0.249872,0,0);}
.m3a_c00406{transform:matrix(0.243990,0.005856,-0.005998,0.249928,0,0);-ms-transform:matrix(0.243990,0.005856,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.243990,0.005856,-0.005998,0.249928,0,0);}
.m44_c00406{transform:matrix(0.244040,0.005857,-0.005998,0.249928,0,0);-ms-transform:matrix(0.244040,0.005857,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.244040,0.005857,-0.005998,0.249928,0,0);}
.m42_c00406{transform:matrix(0.244265,0.005862,-0.005998,0.249928,0,0);-ms-transform:matrix(0.244265,0.005862,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.244265,0.005862,-0.005998,0.249928,0,0);}
.m13b_c00406{transform:matrix(0.244270,0.007824,-0.008004,0.249872,0,0);-ms-transform:matrix(0.244270,0.007824,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.244270,0.007824,-0.008004,0.249872,0,0);}
.m20_c00406{transform:matrix(0.244405,0.005866,-0.005998,0.249928,0,0);-ms-transform:matrix(0.244405,0.005866,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.244405,0.005866,-0.005998,0.249928,0,0);}
.m144_c00406{transform:matrix(0.244529,0.009546,-0.009752,0.249810,0,0);-ms-transform:matrix(0.244529,0.009546,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.244529,0.009546,-0.009752,0.249810,0,0);}
.m101_c00406{transform:matrix(0.244590,0.007835,-0.008004,0.249872,0,0);-ms-transform:matrix(0.244590,0.007835,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.244590,0.007835,-0.008004,0.249872,0,0);}
.m124_c00406{transform:matrix(0.244680,0.007838,-0.008004,0.249872,0,0);-ms-transform:matrix(0.244680,0.007838,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.244680,0.007838,-0.008004,0.249872,0,0);}
.m112_c00406{transform:matrix(0.244719,0.007839,-0.008004,0.249872,0,0);-ms-transform:matrix(0.244719,0.007839,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.244719,0.007839,-0.008004,0.249872,0,0);}
.m22_c00406{transform:matrix(0.245604,0.005895,-0.005998,0.249928,0,0);-ms-transform:matrix(0.245604,0.005895,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.245604,0.005895,-0.005998,0.249928,0,0);}
.m2c_c00406{transform:matrix(0.245899,0.005902,-0.005998,0.249928,0,0);-ms-transform:matrix(0.245899,0.005902,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.245899,0.005902,-0.005998,0.249928,0,0);}
.m18_c00406{transform:matrix(0.246134,0.005907,-0.005998,0.249928,0,0);-ms-transform:matrix(0.246134,0.005907,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.246134,0.005907,-0.005998,0.249928,0,0);}
.m125_c00406{transform:matrix(0.246284,0.007889,-0.008004,0.249872,0,0);-ms-transform:matrix(0.246284,0.007889,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.246284,0.007889,-0.008004,0.249872,0,0);}
.m103_c00406{transform:matrix(0.246614,0.007900,-0.008004,0.249872,0,0);-ms-transform:matrix(0.246614,0.007900,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.246614,0.007900,-0.008004,0.249872,0,0);}
.m4e_c00406{transform:matrix(0.246659,0.005920,-0.005998,0.249928,0,0);-ms-transform:matrix(0.246659,0.005920,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.246659,0.005920,-0.005998,0.249928,0,0);}
.m12f_c00406{transform:matrix(0.246993,0.007912,-0.008004,0.249872,0,0);-ms-transform:matrix(0.246993,0.007912,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.246993,0.007912,-0.008004,0.249872,0,0);}
.me5_c00406{transform:matrix(0.247468,0.007927,-0.008004,0.249872,0,0);-ms-transform:matrix(0.247468,0.007927,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.247468,0.007927,-0.008004,0.249872,0,0);}
.m148_c00406{transform:matrix(0.247841,0.009675,-0.009752,0.249810,0,0);-ms-transform:matrix(0.247841,0.009675,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.247841,0.009675,-0.009752,0.249810,0,0);}
.mf6_c00406{transform:matrix(0.248418,0.007957,-0.008004,0.249872,0,0);-ms-transform:matrix(0.248418,0.007957,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.248418,0.007957,-0.008004,0.249872,0,0);}
.mf3_c00406{transform:matrix(0.248548,0.007961,-0.008004,0.249872,0,0);-ms-transform:matrix(0.248548,0.007961,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.248548,0.007961,-0.008004,0.249872,0,0);}
.m8d_c00406{transform:matrix(0.248710,0.005472,-0.005499,0.249940,0,0);-ms-transform:matrix(0.248710,0.005472,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.248710,0.005472,-0.005499,0.249940,0,0);}
.mc6_c00406{transform:matrix(0.249345,0.005486,-0.005499,0.249940,0,0);-ms-transform:matrix(0.249345,0.005486,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.249345,0.005486,-0.005499,0.249940,0,0);}
.m3c_c00406{transform:matrix(0.249413,0.005986,-0.005998,0.249928,0,0);-ms-transform:matrix(0.249413,0.005986,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.249413,0.005986,-0.005998,0.249928,0,0);}
.m25_c00406{transform:matrix(0.249928,0.005998,-0.005998,0.249928,0,0);-ms-transform:matrix(0.249928,0.005998,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.249928,0.005998,-0.005998,0.249928,0,0);}
.m2a_c00406{transform:matrix(0.249943,0.005999,-0.005998,0.249928,0,0);-ms-transform:matrix(0.249943,0.005999,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.249943,0.005999,-0.005998,0.249928,0,0);}
.ma2_c00406{transform:matrix(0.250094,0.005502,-0.005499,0.249940,0,0);-ms-transform:matrix(0.250094,0.005502,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.250094,0.005502,-0.005499,0.249940,0,0);}
.m9e_c00406{transform:matrix(0.250399,0.005509,-0.005499,0.249940,0,0);-ms-transform:matrix(0.250399,0.005509,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.250399,0.005509,-0.005499,0.249940,0,0);}
.mf8_c00406{transform:matrix(0.251346,0.008051,-0.008004,0.249872,0,0);-ms-transform:matrix(0.251346,0.008051,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.251346,0.008051,-0.008004,0.249872,0,0);}
.m14_c00406{transform:matrix(0.251373,0.006033,-0.005998,0.249928,0,0);-ms-transform:matrix(0.251373,0.006033,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.251373,0.006033,-0.005998,0.249928,0,0);}
.m95_c00406{transform:matrix(0.251659,0.005537,-0.005499,0.249940,0,0);-ms-transform:matrix(0.251659,0.005537,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.251659,0.005537,-0.005499,0.249940,0,0);}
.m2e_c00406{transform:matrix(0.251807,0.006043,-0.005998,0.249928,0,0);-ms-transform:matrix(0.251807,0.006043,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.251807,0.006043,-0.005998,0.249928,0,0);}
.mfb_c00406{transform:matrix(0.251951,0.008070,-0.008004,0.249872,0,0);-ms-transform:matrix(0.251951,0.008070,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.251951,0.008070,-0.008004,0.249872,0,0);}
.m141_c00406{transform:matrix(0.252228,0.009847,-0.009752,0.249810,0,0);-ms-transform:matrix(0.252228,0.009847,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.252228,0.009847,-0.009752,0.249810,0,0);}
.m1c_c00406{transform:matrix(0.252282,0.006055,-0.005998,0.249928,0,0);-ms-transform:matrix(0.252282,0.006055,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.252282,0.006055,-0.005998,0.249928,0,0);}
.m3e_c00406{transform:matrix(0.255172,0.006124,-0.005998,0.249928,0,0);-ms-transform:matrix(0.255172,0.006124,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.255172,0.006124,-0.005998,0.249928,0,0);}
.m29_c00406{transform:matrix(0.255207,0.006125,-0.005998,0.249928,0,0);-ms-transform:matrix(0.255207,0.006125,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.255207,0.006125,-0.005998,0.249928,0,0);}
.mfe_c00406{transform:matrix(0.255214,0.008175,-0.008004,0.249872,0,0);-ms-transform:matrix(0.255214,0.008175,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.255214,0.008175,-0.008004,0.249872,0,0);}
.ma3_c00406{transform:matrix(0.255518,0.005621,-0.005499,0.249940,0,0);-ms-transform:matrix(0.255518,0.005621,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.255518,0.005621,-0.005499,0.249940,0,0);}
.md4_c00406{transform:matrix(0.255544,0.008186,-0.008004,0.249872,0,0);-ms-transform:matrix(0.255544,0.008186,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.255544,0.008186,-0.008004,0.249872,0,0);}
.m12_c00406{transform:matrix(0.255676,0.006136,-0.005998,0.249928,0,0);-ms-transform:matrix(0.255676,0.006136,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.255676,0.006136,-0.005998,0.249928,0,0);}
.m4a_c00406{transform:matrix(0.256671,0.006160,-0.005998,0.249928,0,0);-ms-transform:matrix(0.256671,0.006160,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.256671,0.006160,-0.005998,0.249928,0,0);}
.m132_c00406{transform:matrix(0.256683,0.008222,-0.008004,0.249872,0,0);-ms-transform:matrix(0.256683,0.008222,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.256683,0.008222,-0.008004,0.249872,0,0);}
.m105_c00406{transform:matrix(0.257233,0.008240,-0.008004,0.249872,0,0);-ms-transform:matrix(0.257233,0.008240,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.257233,0.008240,-0.008004,0.249872,0,0);}
.mc_c00406{transform:matrix(0.257496,0.006180,-0.005998,0.249928,0,0);-ms-transform:matrix(0.257496,0.006180,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.257496,0.006180,-0.005998,0.249928,0,0);}
.m50_c00406{transform:matrix(0.258001,0.006192,-0.005998,0.249928,0,0);-ms-transform:matrix(0.258001,0.006192,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.258001,0.006192,-0.005998,0.249928,0,0);}
.m107_c00406{transform:matrix(0.258957,0.008295,-0.008004,0.249872,0,0);-ms-transform:matrix(0.258957,0.008295,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.258957,0.008295,-0.008004,0.249872,0,0);}
.m49_c00406{transform:matrix(0.259135,0.006219,-0.005998,0.249928,0,0);-ms-transform:matrix(0.259135,0.006219,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.259135,0.006219,-0.005998,0.249928,0,0);}
.m65_c00406{transform:matrix(0.260465,0.006251,-0.005998,0.249928,0,0);-ms-transform:matrix(0.260465,0.006251,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.260465,0.006251,-0.005998,0.249928,0,0);}
.m2d_c00406{transform:matrix(0.260510,0.006252,-0.005998,0.249928,0,0);-ms-transform:matrix(0.260510,0.006252,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.260510,0.006252,-0.005998,0.249928,0,0);}
.m4d_c00406{transform:matrix(0.260745,0.006258,-0.005998,0.249928,0,0);-ms-transform:matrix(0.260745,0.006258,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.260745,0.006258,-0.005998,0.249928,0,0);}
.m149_c00406{transform:matrix(0.260956,0.010187,-0.009752,0.249810,0,0);-ms-transform:matrix(0.260956,0.010187,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.260956,0.010187,-0.009752,0.249810,0,0);}
.m9a_c00406{transform:matrix(0.261322,0.005749,-0.005499,0.249940,0,0);-ms-transform:matrix(0.261322,0.005749,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.261322,0.005749,-0.005499,0.249940,0,0);}
.m155_c00406{transform:matrix(0.261418,0.005228,-0.004999,0.249950,0,0);-ms-transform:matrix(0.261418,0.005228,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.261418,0.005228,-0.004999,0.249950,0,0);}
.m4f_c00406{transform:matrix(0.261870,0.006285,-0.005998,0.249928,0,0);-ms-transform:matrix(0.261870,0.006285,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.261870,0.006285,-0.005998,0.249928,0,0);}
.m27_c00406{transform:matrix(0.262180,0.006292,-0.005998,0.249928,0,0);-ms-transform:matrix(0.262180,0.006292,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.262180,0.006292,-0.005998,0.249928,0,0);}
.md0_c00406{transform:matrix(0.263330,0.008435,-0.008004,0.249872,0,0);-ms-transform:matrix(0.263330,0.008435,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.263330,0.008435,-0.008004,0.249872,0,0);}
.m12d_c00406{transform:matrix(0.263385,0.008437,-0.008004,0.249872,0,0);-ms-transform:matrix(0.263385,0.008437,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.263385,0.008437,-0.008004,0.249872,0,0);}
.m146_c00406{transform:matrix(0.263474,0.010286,-0.009752,0.249810,0,0);-ms-transform:matrix(0.263474,0.010286,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.263474,0.010286,-0.009752,0.249810,0,0);}
.m16_c00406{transform:matrix(0.264134,0.006339,-0.005998,0.249928,0,0);-ms-transform:matrix(0.264134,0.006339,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.264134,0.006339,-0.005998,0.249928,0,0);}
.m2b_c00406{transform:matrix(0.265808,0.006379,-0.005998,0.249928,0,0);-ms-transform:matrix(0.265808,0.006379,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.265808,0.006379,-0.005998,0.249928,0,0);}
.mef_c00406{transform:matrix(0.265834,0.008515,-0.008004,0.249872,0,0);-ms-transform:matrix(0.265834,0.008515,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.265834,0.008515,-0.008004,0.249872,0,0);}
.m10_c00406{transform:matrix(0.265953,0.006383,-0.005998,0.249928,0,0);-ms-transform:matrix(0.265953,0.006383,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.265953,0.006383,-0.005998,0.249928,0,0);}
.mb_c00406{transform:matrix(0.265968,0.006383,-0.005998,0.249928,0,0);-ms-transform:matrix(0.265968,0.006383,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.265968,0.006383,-0.005998,0.249928,0,0);}
.m1d_c00406{transform:matrix(0.266053,0.006385,-0.005998,0.249928,0,0);-ms-transform:matrix(0.266053,0.006385,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.266053,0.006385,-0.005998,0.249928,0,0);}
.meb_c00406{transform:matrix(0.266808,0.008546,-0.008004,0.249872,0,0);-ms-transform:matrix(0.266808,0.008546,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.266808,0.008546,-0.008004,0.249872,0,0);}
.m19_c00406{transform:matrix(0.268383,0.006441,-0.005998,0.249928,0,0);-ms-transform:matrix(0.268383,0.006441,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.268383,0.006441,-0.005998,0.249928,0,0);}
.m61_c00406{transform:matrix(0.269712,0.006473,-0.005998,0.249928,0,0);-ms-transform:matrix(0.269712,0.006473,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.269712,0.006473,-0.005998,0.249928,0,0);}
.m63_c00406{transform:matrix(0.269787,0.006475,-0.005998,0.249928,0,0);-ms-transform:matrix(0.269787,0.006475,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.269787,0.006475,-0.005998,0.249928,0,0);}
.m1a_c00406{transform:matrix(0.270112,0.006483,-0.005998,0.249928,0,0);-ms-transform:matrix(0.270112,0.006483,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.270112,0.006483,-0.005998,0.249928,0,0);}
.m47_c00406{transform:matrix(0.270402,0.006490,-0.005998,0.249928,0,0);-ms-transform:matrix(0.270402,0.006490,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.270402,0.006490,-0.005998,0.249928,0,0);}
.m9c_c00406{transform:matrix(0.270600,0.005953,-0.005499,0.249940,0,0);-ms-transform:matrix(0.270600,0.005953,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.270600,0.005953,-0.005499,0.249940,0,0);}
.ma1_c00406{transform:matrix(0.271494,0.005973,-0.005499,0.249940,0,0);-ms-transform:matrix(0.271494,0.005973,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.271494,0.005973,-0.005499,0.249940,0,0);}
.m9d_c00406{transform:matrix(0.271534,0.005974,-0.005499,0.249940,0,0);-ms-transform:matrix(0.271534,0.005974,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.271534,0.005974,-0.005499,0.249940,0,0);}
.m1e_c00406{transform:matrix(0.271932,0.006526,-0.005998,0.249928,0,0);-ms-transform:matrix(0.271932,0.006526,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.271932,0.006526,-0.005998,0.249928,0,0);}
.m97_c00406{transform:matrix(0.272059,0.005985,-0.005499,0.249940,0,0);-ms-transform:matrix(0.272059,0.005985,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.272059,0.005985,-0.005499,0.249940,0,0);}
.mf_c00406{transform:matrix(0.272527,0.006541,-0.005998,0.249928,0,0);-ms-transform:matrix(0.272527,0.006541,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.272527,0.006541,-0.005998,0.249928,0,0);}
.m8f_c00406{transform:matrix(0.272734,0.006000,-0.005499,0.249940,0,0);-ms-transform:matrix(0.272734,0.006000,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.272734,0.006000,-0.005499,0.249940,0,0);}
.m21_c00406{transform:matrix(0.273286,0.006559,-0.005998,0.249928,0,0);-ms-transform:matrix(0.273286,0.006559,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.273286,0.006559,-0.005998,0.249928,0,0);}
.m5f_c00406{transform:matrix(0.273391,0.006561,-0.005998,0.249928,0,0);-ms-transform:matrix(0.273391,0.006561,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.273391,0.006561,-0.005998,0.249928,0,0);}
.m94_c00406{transform:matrix(0.274039,0.006029,-0.005499,0.249940,0,0);-ms-transform:matrix(0.274039,0.006029,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.274039,0.006029,-0.005499,0.249940,0,0);}
.m96_c00406{transform:matrix(0.274434,0.006038,-0.005499,0.249940,0,0);-ms-transform:matrix(0.274434,0.006038,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.274434,0.006038,-0.005499,0.249940,0,0);}
.mee_c00406{transform:matrix(0.274449,0.008791,-0.008004,0.249872,0,0);-ms-transform:matrix(0.274449,0.008791,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.274449,0.008791,-0.008004,0.249872,0,0);}
.m24_c00406{transform:matrix(0.275486,0.006612,-0.005998,0.249928,0,0);-ms-transform:matrix(0.275486,0.006612,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.275486,0.006612,-0.005998,0.249928,0,0);}
.m4b_c00406{transform:matrix(0.276115,0.006627,-0.005998,0.249928,0,0);-ms-transform:matrix(0.276115,0.006627,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.276115,0.006627,-0.005998,0.249928,0,0);}
.m51_c00406{transform:matrix(0.276425,0.006634,-0.005998,0.249928,0,0);-ms-transform:matrix(0.276425,0.006634,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.276425,0.006634,-0.005998,0.249928,0,0);}
.md9_c00406{transform:matrix(0.276613,0.008860,-0.008004,0.249872,0,0);-ms-transform:matrix(0.276613,0.008860,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.276613,0.008860,-0.008004,0.249872,0,0);}
.m9f_c00406{transform:matrix(0.276783,0.006089,-0.005499,0.249940,0,0);-ms-transform:matrix(0.276783,0.006089,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.276783,0.006089,-0.005499,0.249940,0,0);}
.m1f_c00406{transform:matrix(0.276800,0.006643,-0.005998,0.249928,0,0);-ms-transform:matrix(0.276800,0.006643,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.276800,0.006643,-0.005998,0.249928,0,0);}
.m15_c00406{transform:matrix(0.277635,0.006663,-0.005998,0.249928,0,0);-ms-transform:matrix(0.277635,0.006663,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.277635,0.006663,-0.005998,0.249928,0,0);}
.mf1_c00406{transform:matrix(0.279747,0.008961,-0.008004,0.249872,0,0);-ms-transform:matrix(0.279747,0.008961,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.279747,0.008961,-0.008004,0.249872,0,0);}
.me_c00406{transform:matrix(0.279934,0.006718,-0.005998,0.249928,0,0);-ms-transform:matrix(0.279934,0.006718,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.279934,0.006718,-0.005998,0.249928,0,0);}
.m66_c00406{transform:matrix(0.280934,0.006742,-0.005998,0.249928,0,0);-ms-transform:matrix(0.280934,0.006742,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.280934,0.006742,-0.005998,0.249928,0,0);}
.m67_c00406{transform:matrix(0.281099,0.006746,-0.005998,0.249928,0,0);-ms-transform:matrix(0.281099,0.006746,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.281099,0.006746,-0.005998,0.249928,0,0);}
.mec_c00406{transform:matrix(0.281656,0.009022,-0.008004,0.249872,0,0);-ms-transform:matrix(0.281656,0.009022,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.281656,0.009022,-0.008004,0.249872,0,0);}
.md8_c00406{transform:matrix(0.281686,0.009023,-0.008004,0.249872,0,0);-ms-transform:matrix(0.281686,0.009023,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.281686,0.009023,-0.008004,0.249872,0,0);}
.md5_c00406{transform:matrix(0.285074,0.009131,-0.008004,0.249872,0,0);-ms-transform:matrix(0.285074,0.009131,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.285074,0.009131,-0.008004,0.249872,0,0);}
.mf0_c00406{transform:matrix(0.285334,0.009140,-0.008004,0.249872,0,0);-ms-transform:matrix(0.285334,0.009140,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.285334,0.009140,-0.008004,0.249872,0,0);}
.m92_c00406{transform:matrix(0.287515,0.006325,-0.005499,0.249940,0,0);-ms-transform:matrix(0.287515,0.006325,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.287515,0.006325,-0.005499,0.249940,0,0);}
.m129_c00406{transform:matrix(0.312285,0.010003,-0.008004,0.249872,0,0);-ms-transform:matrix(0.312285,0.010003,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.312285,0.010003,-0.008004,0.249872,0,0);}
.me9_c00406{transform:matrix(0.320016,0.010251,-0.008004,0.249872,0,0);-ms-transform:matrix(0.320016,0.010251,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.320016,0.010251,-0.008004,0.249872,0,0);}
.m113_c00406{transform:matrix(0.341350,0.010934,-0.008004,0.249872,0,0);-ms-transform:matrix(0.341350,0.010934,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.341350,0.010934,-0.008004,0.249872,0,0);}
.m12a_c00406{transform:matrix(0.364343,0.011671,-0.008004,0.249872,0,0);-ms-transform:matrix(0.364343,0.011671,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.364343,0.011671,-0.008004,0.249872,0,0);}
.m14b_c00406{transform:matrix(2.612738,0.052255,-0.004999,0.249950,0,0);-ms-transform:matrix(2.612738,0.052255,-0.004999,0.249950,0,0);-webkit-transform:matrix(2.612738,0.052255,-0.004999,0.249950,0,0);}
.v0_c00406{vertical-align:0.000000px;}
.ls0_c00406{letter-spacing:0.000000px;}
.sc__c00406{text-shadow:none;}
.sc0_c00406{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__c00406{-webkit-text-stroke:0px transparent;}
.sc0_c00406{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00406{word-spacing:0.000000px;}
.fc0_c00406{color:transparent;}
.fse_c00406{font-size:48.009599px;}
.fs8_c00406{font-size:71.964891px;}
.fs5_c00406{font-size:72.017422px;}
.fs1_c00406{font-size:72.020733px;}
.fsa_c00406{font-size:77.961966px;}
.fsd_c00406{font-size:77.981356px;}
.fs3_c00406{font-size:78.022461px;}
.fsc_c00406{font-size:83.959040px;}
.fsf_c00406{font-size:84.016798px;}
.fs6_c00406{font-size:84.020326px;}
.fs0_c00406{font-size:84.024189px;}
.fsb_c00406{font-size:89.956114px;}
.fs7_c00406{font-size:90.021777px;}
.fs2_c00406{font-size:90.025916px;}
.fs9_c00406{font-size:101.950263px;}
.fs4_c00406{font-size:102.029372px;}
.y0_c00406{bottom:0.000000px;}
.y15e_c00406{bottom:75.623040px;}
.y15d_c00406{bottom:76.871940px;}
.y15c_c00406{bottom:78.322890px;}
.y15b_c00406{bottom:79.047990px;}
.y15a_c00406{bottom:79.536390px;}
.y159_c00406{bottom:80.273790px;}
.y158_c00406{bottom:80.986260px;}
.y157_c00406{bottom:82.654680px;}
.y156_c00406{bottom:84.340560px;}
.y155_c00406{bottom:85.050990px;}
.y154_c00406{bottom:106.386000px;}
.y153_c00406{bottom:115.302666px;}
.y152_c00406{bottom:120.089077px;}
.y151_c00406{bottom:123.138975px;}
.y150_c00406{bottom:124.441653px;}
.y14f_c00406{bottom:128.810492px;}
.y14e_c00406{bottom:129.669622px;}
.y14d_c00406{bottom:132.246021px;}
.y14c_c00406{bottom:133.943340px;}
.y14b_c00406{bottom:135.227824px;}
.y14a_c00406{bottom:138.236714px;}
.y149_c00406{bottom:141.506980px;}
.y148_c00406{bottom:142.833000px;}
.y147_c00406{bottom:156.277767px;}
.y146_c00406{bottom:157.088949px;}
.y145_c00406{bottom:157.886722px;}
.y144_c00406{bottom:161.086531px;}
.y143_c00406{bottom:162.720250px;}
.y142_c00406{bottom:163.501602px;}
.y141_c00406{bottom:164.286783px;}
.y140_c00406{bottom:166.957564px;}
.y13f_c00406{bottom:167.743935px;}
.y13e_c00406{bottom:170.102673px;}
.y13d_c00406{bottom:171.648847px;}
.y13c_c00406{bottom:172.697131px;}
.y13b_c00406{bottom:192.087537px;}
.y13a_c00406{bottom:194.012980px;}
.y139_c00406{bottom:194.794890px;}
.y138_c00406{bottom:197.060368px;}
.y137_c00406{bottom:198.932463px;}
.y136_c00406{bottom:200.813544px;}
.y135_c00406{bottom:205.677085px;}
.y134_c00406{bottom:207.577462px;}
.y133_c00406{bottom:209.797224px;}
.y132_c00406{bottom:210.523086px;}
.y131_c00406{bottom:214.259355px;}
.y130_c00406{bottom:229.920600px;}
.y12f_c00406{bottom:230.919525px;}
.y12e_c00406{bottom:232.377358px;}
.y12d_c00406{bottom:232.862247px;}
.y12c_c00406{bottom:236.036524px;}
.y12b_c00406{bottom:237.028126px;}
.y12a_c00406{bottom:238.003941px;}
.y129_c00406{bottom:239.182432px;}
.y128_c00406{bottom:241.358515px;}
.y127_c00406{bottom:241.867906px;}
.y126_c00406{bottom:243.769677px;}
.y125_c00406{bottom:244.481361px;}
.y124_c00406{bottom:266.318392px;}
.y123_c00406{bottom:268.410450px;}
.y122_c00406{bottom:269.478472px;}
.y121_c00406{bottom:270.979989px;}
.y120_c00406{bottom:271.811892px;}
.y11f_c00406{bottom:273.292863px;}
.y11e_c00406{bottom:273.924399px;}
.y11d_c00406{bottom:274.551790px;}
.y11c_c00406{bottom:276.196278px;}
.y11b_c00406{bottom:276.638599px;}
.y11a_c00406{bottom:278.710063px;}
.y119_c00406{bottom:279.293553px;}
.y118_c00406{bottom:300.267312px;}
.y117_c00406{bottom:300.837586px;}
.y116_c00406{bottom:302.926105px;}
.y115_c00406{bottom:304.619007px;}
.y114_c00406{bottom:306.527295px;}
.y113_c00406{bottom:307.625914px;}
.y112_c00406{bottom:309.123730px;}
.y111_c00406{bottom:309.679219px;}
.y110_c00406{bottom:310.229785px;}
.y10f_c00406{bottom:311.138098px;}
.y10e_c00406{bottom:337.275775px;}
.y10d_c00406{bottom:338.253780px;}
.y10c_c00406{bottom:340.049199px;}
.y10b_c00406{bottom:340.847854px;}
.y10a_c00406{bottom:342.259693px;}
.y109_c00406{bottom:342.858694px;}
.y108_c00406{bottom:344.042140px;}
.y107_c00406{bottom:344.644144px;}
.y106_c00406{bottom:345.636475px;}
.y105_c00406{bottom:348.381373px;}
.y104_c00406{bottom:371.749074px;}
.y103_c00406{bottom:372.385917px;}
.y102_c00406{bottom:374.060737px;}
.y101_c00406{bottom:374.713347px;}
.y100_c00406{bottom:375.354681px;}
.yff_c00406{bottom:377.025202px;}
.yfe_c00406{bottom:378.078813px;}
.yfd_c00406{bottom:379.357460px;}
.yfc_c00406{bottom:381.828015px;}
.yfb_c00406{bottom:383.096260px;}
.yfa_c00406{bottom:384.542109px;}
.yf9_c00406{bottom:405.370528px;}
.yf8_c00406{bottom:408.317649px;}
.yf7_c00406{bottom:411.344203px;}
.yf6_c00406{bottom:412.751832px;}
.yf5_c00406{bottom:415.078986px;}
.yf4_c00406{bottom:415.553787px;}
.yf3_c00406{bottom:418.337010px;}
.yf2_c00406{bottom:419.942106px;}
.yf1_c00406{bottom:420.610939px;}
.yf0_c00406{bottom:421.784757px;}
.yef_c00406{bottom:443.535632px;}
.yee_c00406{bottom:445.109533px;}
.yed_c00406{bottom:445.795217px;}
.yec_c00406{bottom:446.268816px;}
.yeb_c00406{bottom:447.586797px;}
.yea_c00406{bottom:448.251156px;}
.ye9_c00406{bottom:450.445436px;}
.ye8_c00406{bottom:451.343837px;}
.ye7_c00406{bottom:452.008532px;}
.ye6_c00406{bottom:453.754451px;}
.ye5_c00406{bottom:454.434789px;}
.ye4_c00406{bottom:455.311530px;}
.ye3_c00406{bottom:455.742204px;}
.ye2_c00406{bottom:457.040589px;}
.ye1_c00406{bottom:457.677474px;}
.ye0_c00406{bottom:480.239760px;}
.ydf_c00406{bottom:483.472800px;}
.yde_c00406{bottom:484.520208px;}
.ydd_c00406{bottom:485.606064px;}
.ydc_c00406{bottom:489.532704px;}
.ydb_c00406{bottom:491.270688px;}
.yda_c00406{bottom:492.288048px;}
.yd9_c00406{bottom:493.731840px;}
.yd8_c00406{bottom:494.431872px;}
.yd7_c00406{bottom:496.534176px;}
.yd6_c00406{bottom:497.622000px;}
.yd5_c00406{bottom:524.500470px;}
.yd4_c00406{bottom:525.509205px;}
.yd3_c00406{bottom:526.016007px;}
.yd2_c00406{bottom:526.351560px;}
.yd1_c00406{bottom:527.167353px;}
.yd0_c00406{bottom:528.005367px;}
.ycf_c00406{bottom:528.810597px;}
.yce_c00406{bottom:529.968579px;}
.ycd_c00406{bottom:551.222331px;}
.ycc_c00406{bottom:552.198105px;}
.ycb_c00406{bottom:554.927931px;}
.yca_c00406{bottom:556.319550px;}
.yc9_c00406{bottom:558.402351px;}
.yc8_c00406{bottom:560.092665px;}
.yc7_c00406{bottom:561.479649px;}
.yc6_c00406{bottom:564.870669px;}
.yc5_c00406{bottom:568.654737px;}
.yc4_c00406{bottom:570.995655px;}
.yc3_c00406{bottom:571.988865px;}
.yc2_c00406{bottom:575.891418px;}
.yc1_c00406{bottom:585.962835px;}
.yc0_c00406{bottom:587.164398px;}
.ybf_c00406{bottom:587.683521px;}
.ybe_c00406{bottom:590.130735px;}
.ybd_c00406{bottom:590.849178px;}
.ybc_c00406{bottom:592.328535px;}
.ybb_c00406{bottom:593.766840px;}
.yba_c00406{bottom:594.252501px;}
.yb9_c00406{bottom:596.207850px;}
.yb8_c00406{bottom:597.152475px;}
.yb7_c00406{bottom:600.057993px;}
.yb6_c00406{bottom:601.267113px;}
.yb5_c00406{bottom:622.107111px;}
.yb4_c00406{bottom:624.783534px;}
.yb3_c00406{bottom:625.556247px;}
.yb2_c00406{bottom:626.125812px;}
.yb1_c00406{bottom:628.772109px;}
.yb0_c00406{bottom:629.295759px;}
.yaf_c00406{bottom:631.683390px;}
.yae_c00406{bottom:633.803628px;}
.yad_c00406{bottom:635.895423px;}
.yac_c00406{bottom:636.961878px;}
.yab_c00406{bottom:637.998585px;}
.yaa_c00406{bottom:657.084318px;}
.ya9_c00406{bottom:657.895275px;}
.ya8_c00406{bottom:658.298328px;}
.ya7_c00406{bottom:659.888622px;}
.ya6_c00406{bottom:660.492210px;}
.ya5_c00406{bottom:661.288578px;}
.ya4_c00406{bottom:663.063828px;}
.ya3_c00406{bottom:664.051077px;}
.ya2_c00406{bottom:665.465508px;}
.ya1_c00406{bottom:666.859920px;}
.ya0_c00406{bottom:667.433010px;}
.y9f_c00406{bottom:668.434221px;}
.y9e_c00406{bottom:669.026340px;}
.y9d_c00406{bottom:669.595188px;}
.y9c_c00406{bottom:694.154727px;}
.y9b_c00406{bottom:696.109416px;}
.y9a_c00406{bottom:696.841422px;}
.y99_c00406{bottom:699.253128px;}
.y98_c00406{bottom:700.012623px;}
.y97_c00406{bottom:702.474852px;}
.y96_c00406{bottom:703.163859px;}
.y95_c00406{bottom:704.143068px;}
.y94_c00406{bottom:706.543686px;}
.y93_c00406{bottom:707.255925px;}
.y92_c00406{bottom:708.486000px;}
.y91_c00406{bottom:729.951084px;}
.y90_c00406{bottom:730.549056px;}
.y8f_c00406{bottom:731.152368px;}
.y8e_c00406{bottom:731.744784px;}
.y8d_c00406{bottom:733.560168px;}
.y8c_c00406{bottom:734.918796px;}
.y8b_c00406{bottom:735.541680px;}
.y8a_c00406{bottom:736.142904px;}
.y89_c00406{bottom:738.126504px;}
.y88_c00406{bottom:739.497432px;}
.y87_c00406{bottom:740.480076px;}
.y86_c00406{bottom:741.855624px;}
.y85_c00406{bottom:764.299620px;}
.y84_c00406{bottom:764.879112px;}
.y83_c00406{bottom:766.025676px;}
.y82_c00406{bottom:766.395672px;}
.y81_c00406{bottom:768.286032px;}
.y80_c00406{bottom:768.846024px;}
.y7f_c00406{bottom:769.613436px;}
.y7e_c00406{bottom:770.151684px;}
.y7d_c00406{bottom:771.477000px;}
.y7c_c00406{bottom:772.235028px;}
.y7b_c00406{bottom:774.292032px;}
.y7a_c00406{bottom:775.030416px;}
.y79_c00406{bottom:776.154864px;}
.y78_c00406{bottom:801.500268px;}
.y77_c00406{bottom:802.542348px;}
.y76_c00406{bottom:803.786304px;}
.y75_c00406{bottom:804.512592px;}
.y74_c00406{bottom:805.039116px;}
.y73_c00406{bottom:806.266044px;}
.y72_c00406{bottom:806.810700px;}
.y71_c00406{bottom:807.705276px;}
.y70_c00406{bottom:809.110896px;}
.y6f_c00406{bottom:809.984904px;}
.y6e_c00406{bottom:810.683220px;}
.y6d_c00406{bottom:811.546716px;}
.y6c_c00406{bottom:812.074128px;}
.y6b_c00406{bottom:841.260492px;}
.y6a_c00406{bottom:842.719068px;}
.y69_c00406{bottom:843.383544px;}
.y68_c00406{bottom:843.779568px;}
.y67_c00406{bottom:844.722672px;}
.y66_c00406{bottom:845.115540px;}
.y65_c00406{bottom:846.039384px;}
.y64_c00406{bottom:846.424032px;}
.y63_c00406{bottom:846.956760px;}
.y62_c00406{bottom:847.611360px;}
.y61_c00406{bottom:848.803068px;}
.y60_c00406{bottom:874.333236px;}
.y5f_c00406{bottom:874.984548px;}
.y5e_c00406{bottom:875.993292px;}
.y5d_c00406{bottom:876.492084px;}
.y5c_c00406{bottom:877.163616px;}
.y5b_c00406{bottom:878.168952px;}
.y5a_c00406{bottom:879.157896px;}
.y59_c00406{bottom:879.648228px;}
.y58_c00406{bottom:880.141860px;}
.y57_c00406{bottom:880.793496px;}
.y56_c00406{bottom:881.299464px;}
.y55_c00406{bottom:882.279300px;}
.y54_c00406{bottom:883.910844px;}
.y53_c00406{bottom:911.208180px;}
.y52_c00406{bottom:912.030816px;}
.y51_c00406{bottom:912.821436px;}
.y50_c00406{bottom:913.353480px;}
.y4f_c00406{bottom:914.151384px;}
.y4e_c00406{bottom:914.539584px;}
.y4d_c00406{bottom:915.736572px;}
.y4c_c00406{bottom:916.402980px;}
.y4b_c00406{bottom:917.198016px;}
.y4a_c00406{bottom:917.590416px;}
.y49_c00406{bottom:918.750180px;}
.y48_c00406{bottom:944.978868px;}
.y47_c00406{bottom:945.439500px;}
.y46_c00406{bottom:946.690884px;}
.y45_c00406{bottom:947.151588px;}
.y44_c00406{bottom:947.938680px;}
.y43_c00406{bottom:948.404472px;}
.y42_c00406{bottom:948.854736px;}
.y41_c00406{bottom:949.467132px;}
.y40_c00406{bottom:951.017904px;}
.y3f_c00406{bottom:951.479496px;}
.y3e_c00406{bottom:952.716000px;}
.y3d_c00406{bottom:953.183616px;}
.y3c_c00406{bottom:954.402000px;}
.y3b_c00406{bottom:980.085612px;}
.y3a_c00406{bottom:982.305360px;}
.y39_c00406{bottom:982.807176px;}
.y38_c00406{bottom:984.100068px;}
.y37_c00406{bottom:984.711156px;}
.y36_c00406{bottom:985.331592px;}
.y35_c00406{bottom:986.824524px;}
.y34_c00406{bottom:988.498440px;}
.y33_c00406{bottom:989.114148px;}
.y32_c00406{bottom:990.992004px;}
.y31_c00406{bottom:993.294840px;}
.y30_c00406{bottom:1015.987092px;}
.y2f_c00406{bottom:1017.670608px;}
.y2e_c00406{bottom:1018.528056px;}
.y2d_c00406{bottom:1019.815968px;}
.y2c_c00406{bottom:1020.857016px;}
.y2b_c00406{bottom:1021.904052px;}
.y2a_c00406{bottom:1022.529468px;}
.y29_c00406{bottom:1023.797100px;}
.y28_c00406{bottom:1024.418148px;}
.y27_c00406{bottom:1025.053992px;}
.y26_c00406{bottom:1025.669448px;}
.y25_c00406{bottom:1027.757160px;}
.y24_c00406{bottom:1028.597436px;}
.y23_c00406{bottom:1029.213756px;}
.y22_c00406{bottom:1051.942332px;}
.y21_c00406{bottom:1052.704872px;}
.y20_c00406{bottom:1054.422252px;}
.y1f_c00406{bottom:1055.914224px;}
.y1e_c00406{bottom:1057.204356px;}
.y1d_c00406{bottom:1058.172960px;}
.y1c_c00406{bottom:1058.714316px;}
.y1b_c00406{bottom:1060.202964px;}
.y1a_c00406{bottom:1061.710536px;}
.y19_c00406{bottom:1062.429960px;}
.y18_c00406{bottom:1086.362832px;}
.y17_c00406{bottom:1087.517112px;}
.y16_c00406{bottom:1088.865204px;}
.y15_c00406{bottom:1089.947400px;}
.y14_c00406{bottom:1090.617888px;}
.y13_c00406{bottom:1091.536776px;}
.y12_c00406{bottom:1092.185988px;}
.y11_c00406{bottom:1093.746564px;}
.y10_c00406{bottom:1094.383272px;}
.yf_c00406{bottom:1097.041440px;}
.ye_c00406{bottom:1097.710632px;}
.yd_c00406{bottom:1098.807072px;}
.yc_c00406{bottom:1100.514612px;}
.yb_c00406{bottom:1121.495700px;}
.ya_c00406{bottom:1123.118328px;}
.y9_c00406{bottom:1123.932864px;}
.y8_c00406{bottom:1126.625160px;}
.y7_c00406{bottom:1128.972720px;}
.y6_c00406{bottom:1130.320344px;}
.y5_c00406{bottom:1131.091248px;}
.y4_c00406{bottom:1132.166928px;}
.y3_c00406{bottom:1133.780592px;}
.y2_c00406{bottom:1134.809688px;}
.y1_c00406{bottom:1135.627500px;}
.h10_c00406{height:48.009599px;}
.ha_c00406{height:71.964891px;}
.h7_c00406{height:72.017422px;}
.h3_c00406{height:72.020733px;}
.hc_c00406{height:77.961966px;}
.hf_c00406{height:77.981356px;}
.h5_c00406{height:78.022461px;}
.he_c00406{height:83.959040px;}
.h11_c00406{height:84.016798px;}
.h8_c00406{height:84.020326px;}
.h2_c00406{height:84.024189px;}
.hd_c00406{height:89.956114px;}
.h9_c00406{height:90.021777px;}
.h4_c00406{height:90.025916px;}
.hb_c00406{height:101.950263px;}
.h6_c00406{height:102.029372px;}
.h1_c00406{height:1251.000000px;}
.h0_c00406{height:1251.150000px;}
.w0_c00406{width:915.000000px;}
.x0_c00406{left:0.000000px;}
.xa0_c00406{left:8.681499px;}
.xe7_c00406{left:126.090000px;}
.xdb_c00406{left:128.076240px;}
.xe0_c00406{left:129.221480px;}
.xbd_c00406{left:130.754601px;}
.x94_c00406{left:133.177221px;}
.x75_c00406{left:134.427000px;}
.x64_c00406{left:135.528048px;}
.x50_c00406{left:136.950420px;}
.x2c_c00406{left:138.801792px;}
.x21_c00406{left:139.917492px;}
.x18_c00406{left:141.519144px;}
.xc_c00406{left:142.572756px;}
.xe8_c00406{left:160.084860px;}
.xd1_c00406{left:161.743518px;}
.xb2_c00406{left:165.253752px;}
.x7f_c00406{left:166.604874px;}
.x59_c00406{left:170.361516px;}
.x22_c00406{left:172.351380px;}
.x8a_c00406{left:177.175911px;}
.x19_c00406{left:183.877272px;}
.xce_c00406{left:184.941714px;}
.xbe_c00406{left:186.552898px;}
.x95_c00406{left:188.137221px;}
.x76_c00406{left:190.339500px;}
.x80_c00406{left:199.522278px;}
.x65_c00406{left:201.641136px;}
.xc4_c00406{left:207.305777px;}
.xa5_c00406{left:209.849040px;}
.x6f_c00406{left:212.728788px;}
.x23_c00406{left:216.555672px;}
.xbf_c00406{left:218.344270px;}
.x8b_c00406{left:221.626464px;}
.x77_c00406{left:222.714000px;}
.x5a_c00406{left:224.350884px;}
.x34_c00406{left:226.065912px;}
.xd_c00406{left:227.915928px;}
.xb3_c00406{left:230.045285px;}
.x3e_c00406{left:236.580720px;}
.xdc_c00406{left:237.880811px;}
.xa9_c00406{left:240.199500px;}
.xa1_c00406{left:242.120799px;}
.x66_c00406{left:245.101944px;}
.xe3_c00406{left:246.462646px;}
.x46_c00406{left:247.599084px;}
.x1_c00406{left:249.439500px;}
.xb4_c00406{left:251.545028px;}
.x81_c00406{left:255.127662px;}
.x2d_c00406{left:260.017836px;}
.xa6_c00406{left:263.572323px;}
.x5b_c00406{left:268.018272px;}
.x3f_c00406{left:269.252616px;}
.xd2_c00406{left:270.618891px;}
.x1a_c00406{left:272.582676px;}
.xaa_c00406{left:274.160005px;}
.xc8_c00406{left:282.352772px;}
.x2_c00406{left:283.515000px;}
.x82_c00406{left:286.975467px;}
.x51_c00406{left:290.861736px;}
.xd3_c00406{left:293.840304px;}
.xb5_c00406{left:295.306039px;}
.x8c_c00406{left:308.795136px;}
.x47_c00406{left:312.939696px;}
.xe_c00406{left:316.179888px;}
.x96_c00406{left:320.206221px;}
.x5c_c00406{left:322.633248px;}
.xdd_c00406{left:324.454125px;}
.x3_c00406{left:326.394000px;}
.xb6_c00406{left:329.236097px;}
.x78_c00406{left:331.833000px;}
.x40_c00406{left:335.460660px;}
.xc9_c00406{left:337.402364px;}
.xab_c00406{left:339.791309px;}
.x70_c00406{left:343.438080px;}
.xe9_c00406{left:344.965980px;}
.x48_c00406{left:346.716504px;}
.x35_c00406{left:347.850144px;}
.xe4_c00406{left:356.439060px;}
.x24_c00406{left:358.829736px;}
.x1b_c00406{left:360.186900px;}
.xac_c00406{left:361.645432px;}
.x97_c00406{left:363.143721px;}
.x83_c00406{left:364.478298px;}
.x67_c00406{left:366.080748px;}
.x52_c00406{left:367.295232px;}
.xca_c00406{left:370.806917px;}
.xa7_c00406{left:373.807785px;}
.x79_c00406{left:376.342500px;}
.xea_c00406{left:378.459630px;}
.x36_c00406{left:380.778528px;}
.x41_c00406{left:391.056180px;}
.x1c_c00406{left:392.061264px;}
.x4_c00406{left:393.630000px;}
.x8d_c00406{left:397.120242px;}
.xe5_c00406{left:399.916539px;}
.xcf_c00406{left:402.382560px;}
.xc5_c00406{left:403.729934px;}
.x7a_c00406{left:407.661000px;}
.x5d_c00406{left:410.467596px;}
.xd4_c00406{left:413.187020px;}
.xb7_c00406{left:416.428354px;}
.x49_c00406{left:423.140028px;}
.x25_c00406{left:425.020692px;}
.xc0_c00406{left:426.990928px;}
.xa8_c00406{left:429.968931px;}
.xeb_c00406{left:433.582410px;}
.xcb_c00406{left:436.412151px;}
.x5_c00406{left:438.450000px;}
.x84_c00406{left:443.095728px;}
.x53_c00406{left:444.310908px;}
.xd5_c00406{left:446.389622px;}
.xf_c00406{left:449.074632px;}
.x98_c00406{left:452.023221px;}
.x71_c00406{left:453.666456px;}
.x4a_c00406{left:455.827584px;}
.x5e_c00406{left:466.377324px;}
.xd7_c00406{left:468.253565px;}
.x6_c00406{left:470.571000px;}
.x99_c00406{left:474.098721px;}
.x54_c00406{left:477.002304px;}
.x2e_c00406{left:479.314116px;}
.x10_c00406{left:480.919692px;}
.x72_c00406{left:487.097280px;}
.x68_c00406{left:488.657340px;}
.x26_c00406{left:491.721684px;}
.xad_c00406{left:492.737209px;}
.xb8_c00406{left:494.447739px;}
.x8e_c00406{left:496.576353px;}
.x85_c00406{left:497.930046px;}
.x5f_c00406{left:500.390340px;}
.xe1_c00406{left:511.873011px;}
.xd8_c00406{left:513.258929px;}
.xd0_c00406{left:514.405739px;}
.x8f_c00406{left:518.400396px;}
.x69_c00406{left:520.339668px;}
.x4b_c00406{left:521.735304px;}
.x42_c00406{left:523.143696px;}
.x1d_c00406{left:524.947584px;}
.x7_c00406{left:526.722000px;}
.x37_c00406{left:535.260072px;}
.x9a_c00406{left:539.476221px;}
.xe2_c00406{left:544.367297px;}
.xcc_c00406{left:547.890531px;}
.x7b_c00406{left:554.103000px;}
.x55_c00406{left:555.570912px;}
.x2f_c00406{left:557.904048px;}
.x11_c00406{left:558.951180px;}
.xc1_c00406{left:560.263514px;}
.x6a_c00406{left:565.447728px;}
.x38_c00406{left:567.403776px;}
.xa2_c00406{left:572.868360px;}
.x60_c00406{left:577.089564px;}
.xde_c00406{left:578.465072px;}
.x27_c00406{left:579.792768px;}
.x56_c00406{left:588.518880px;}
.x43_c00406{left:589.596312px;}
.x12_c00406{left:591.379776px;}
.x73_c00406{left:597.238656px;}
.x6b_c00406{left:598.411272px;}
.x39_c00406{left:600.632232px;}
.xb9_c00406{left:604.019696px;}
.x9b_c00406{left:606.719721px;}
.x61_c00406{left:610.034400px;}
.x1e_c00406{left:612.752844px;}
.xc6_c00406{left:614.061483px;}
.xae_c00406{left:615.322002px;}
.x30_c00406{left:622.725324px;}
.x8_c00406{left:624.537000px;}
.xc2_c00406{left:627.201100px;}
.x90_c00406{left:628.659045px;}
.x4c_c00406{left:633.566460px;}
.x28_c00406{left:634.613856px;}
.x13_c00406{left:637.296168px;}
.x9c_c00406{left:639.376221px;}
.x86_c00406{left:640.811619px;}
.x57_c00406{left:643.908828px;}
.xd6_c00406{left:646.718955px;}
.xc7_c00406{left:647.757284px;}
.xaf_c00406{left:649.221069px;}
.x91_c00406{left:652.365489px;}
.x62_c00406{left:655.430112px;}
.x3a_c00406{left:656.816196px;}
.x7c_c00406{left:663.726000px;}
.x4d_c00406{left:666.794124px;}
.x14_c00406{left:670.798872px;}
.x87_c00406{left:674.318556px;}
.xd9_c00406{left:679.380378px;}
.xb0_c00406{left:681.919837px;}
.x92_c00406{left:684.555570px;}
.x3b_c00406{left:689.770116px;}
.x31_c00406{left:690.791496px;}
.x7d_c00406{left:696.999000px;}
.x74_c00406{left:698.081664px;}
.x44_c00406{left:699.801528px;}
.x29_c00406{left:702.409992px;}
.x6c_c00406{left:709.632456px;}
.xe6_c00406{left:711.321322px;}
.x1f_c00406{left:713.764800px;}
.x32_c00406{left:717.203664px;}
.xdf_c00406{left:723.007112px;}
.x15_c00406{left:724.895556px;}
.xba_c00406{left:726.630597px;}
.x6d_c00406{left:731.365092px;}
.x4e_c00406{left:734.089668px;}
.x9_c00406{left:736.716000px;}
.xcd_c00406{left:746.040572px;}
.x2a_c00406{left:747.517392px;}
.x9d_c00406{left:750.613221px;}
.x20_c00406{left:758.607324px;}
.xbb_c00406{left:760.867990px;}
.x88_c00406{left:762.703344px;}
.x58_c00406{left:765.467820px;}
.x45_c00406{left:768.410292px;}
.xa_c00406{left:770.655000px;}
.xa3_c00406{left:773.021760px;}
.x9e_c00406{left:774.209721px;}
.x4f_c00406{left:777.549564px;}
.x3c_c00406{left:779.182572px;}
.xb1_c00406{left:782.851305px;}
.x7e_c00406{left:785.848500px;}
.xda_c00406{left:790.871475px;}
.x16_c00406{left:792.322536px;}
.x93_c00406{left:796.047153px;}
.x63_c00406{left:798.334044px;}
.xa4_c00406{left:804.482523px;}
.x3d_c00406{left:812.133492px;}
.x9f_c00406{left:828.826221px;}
.x89_c00406{left:830.164284px;}
.x6e_c00406{left:832.926156px;}
.x33_c00406{left:834.019668px;}
.x2b_c00406{left:836.112012px;}
.xb_c00406{left:838.264500px;}
.xbc_c00406{left:839.412042px;}
.x17_c00406{left:850.048080px;}
.xc3_c00406{left:911.190363px;}
@media print{
.v0_c00406{vertical-align:0.000000pt;}
.ls0_c00406{letter-spacing:0.000000pt;}
.ws0_c00406{word-spacing:0.000000pt;}
.fse_c00406{font-size:42.675199pt;}
.fs8_c00406{font-size:63.968792pt;}
.fs5_c00406{font-size:64.015486pt;}
.fs1_c00406{font-size:64.018429pt;}
.fsa_c00406{font-size:69.299525pt;}
.fsd_c00406{font-size:69.316761pt;}
.fs3_c00406{font-size:69.353298pt;}
.fsc_c00406{font-size:74.630258pt;}
.fsf_c00406{font-size:74.681599pt;}
.fs6_c00406{font-size:74.684734pt;}
.fs0_c00406{font-size:74.688168pt;}
.fsb_c00406{font-size:79.960990pt;}
.fs7_c00406{font-size:80.019358pt;}
.fs2_c00406{font-size:80.023037pt;}
.fs9_c00406{font-size:90.622456pt;}
.fs4_c00406{font-size:90.692775pt;}
.y0_c00406{bottom:0.000000pt;}
.y15e_c00406{bottom:67.220480pt;}
.y15d_c00406{bottom:68.330613pt;}
.y15c_c00406{bottom:69.620347pt;}
.y15b_c00406{bottom:70.264880pt;}
.y15a_c00406{bottom:70.699013pt;}
.y159_c00406{bottom:71.354480pt;}
.y158_c00406{bottom:71.987787pt;}
.y157_c00406{bottom:73.470827pt;}
.y156_c00406{bottom:74.969387pt;}
.y155_c00406{bottom:75.600880pt;}
.y154_c00406{bottom:94.565333pt;}
.y153_c00406{bottom:102.491259pt;}
.y152_c00406{bottom:106.745847pt;}
.y151_c00406{bottom:109.456867pt;}
.y150_c00406{bottom:110.614803pt;}
.y14f_c00406{bottom:114.498215pt;}
.y14e_c00406{bottom:115.261887pt;}
.y14d_c00406{bottom:117.552019pt;}
.y14c_c00406{bottom:119.060747pt;}
.y14b_c00406{bottom:120.202511pt;}
.y14a_c00406{bottom:122.877079pt;}
.y149_c00406{bottom:125.783983pt;}
.y148_c00406{bottom:126.962667pt;}
.y147_c00406{bottom:138.913571pt;}
.y146_c00406{bottom:139.634621pt;}
.y145_c00406{bottom:140.343753pt;}
.y144_c00406{bottom:143.188028pt;}
.y143_c00406{bottom:144.640223pt;}
.y142_c00406{bottom:145.334757pt;}
.y141_c00406{bottom:146.032696pt;}
.y140_c00406{bottom:148.406724pt;}
.y13f_c00406{bottom:149.105720pt;}
.y13e_c00406{bottom:151.202376pt;}
.y13d_c00406{bottom:152.576753pt;}
.y13c_c00406{bottom:153.508561pt;}
.y13b_c00406{bottom:170.744477pt;}
.y13a_c00406{bottom:172.455983pt;}
.y139_c00406{bottom:173.151013pt;}
.y138_c00406{bottom:175.164772pt;}
.y137_c00406{bottom:176.828856pt;}
.y136_c00406{bottom:178.500928pt;}
.y135_c00406{bottom:182.824076pt;}
.y134_c00406{bottom:184.513300pt;}
.y133_c00406{bottom:186.486421pt;}
.y132_c00406{bottom:187.131632pt;}
.y131_c00406{bottom:190.452760pt;}
.y130_c00406{bottom:204.373867pt;}
.y12f_c00406{bottom:205.261800pt;}
.y12e_c00406{bottom:206.557652pt;}
.y12d_c00406{bottom:206.988664pt;}
.y12c_c00406{bottom:209.810244pt;}
.y12b_c00406{bottom:210.691668pt;}
.y12a_c00406{bottom:211.559059pt;}
.y129_c00406{bottom:212.606607pt;}
.y128_c00406{bottom:214.540903pt;}
.y127_c00406{bottom:214.993695pt;}
.y126_c00406{bottom:216.684157pt;}
.y125_c00406{bottom:217.316765pt;}
.y124_c00406{bottom:236.727460pt;}
.y123_c00406{bottom:238.587067pt;}
.y122_c00406{bottom:239.536420pt;}
.y121_c00406{bottom:240.871101pt;}
.y120_c00406{bottom:241.610571pt;}
.y11f_c00406{bottom:242.926989pt;}
.y11e_c00406{bottom:243.488355pt;}
.y11d_c00406{bottom:244.046036pt;}
.y11c_c00406{bottom:245.507803pt;}
.y11b_c00406{bottom:245.900977pt;}
.y11a_c00406{bottom:247.742279pt;}
.y119_c00406{bottom:248.260936pt;}
.y118_c00406{bottom:266.904277pt;}
.y117_c00406{bottom:267.411188pt;}
.y116_c00406{bottom:269.267649pt;}
.y115_c00406{bottom:270.772451pt;}
.y114_c00406{bottom:272.468707pt;}
.y113_c00406{bottom:273.445257pt;}
.y112_c00406{bottom:274.776649pt;}
.y111_c00406{bottom:275.270417pt;}
.y110_c00406{bottom:275.759809pt;}
.y10f_c00406{bottom:276.567199pt;}
.y10e_c00406{bottom:299.800689pt;}
.y10d_c00406{bottom:300.670027pt;}
.y10c_c00406{bottom:302.265955pt;}
.y10b_c00406{bottom:302.975871pt;}
.y10a_c00406{bottom:304.230839pt;}
.y109_c00406{bottom:304.763284pt;}
.y108_c00406{bottom:305.815236pt;}
.y107_c00406{bottom:306.350351pt;}
.y106_c00406{bottom:307.232423pt;}
.y105_c00406{bottom:309.672332pt;}
.y104_c00406{bottom:330.443621pt;}
.y103_c00406{bottom:331.009704pt;}
.y102_c00406{bottom:332.498433pt;}
.y101_c00406{bottom:333.078531pt;}
.y100_c00406{bottom:333.648605pt;}
.yff_c00406{bottom:335.133513pt;}
.yfe_c00406{bottom:336.070056pt;}
.yfd_c00406{bottom:337.206631pt;}
.yfc_c00406{bottom:339.402680pt;}
.yfb_c00406{bottom:340.530009pt;}
.yfa_c00406{bottom:341.815208pt;}
.yf9_c00406{bottom:360.329359pt;}
.yf8_c00406{bottom:362.949021pt;}
.yf7_c00406{bottom:365.639292pt;}
.yf6_c00406{bottom:366.890517pt;}
.yf5_c00406{bottom:368.959099pt;}
.yf4_c00406{bottom:369.381144pt;}
.yf3_c00406{bottom:371.855120pt;}
.yf2_c00406{bottom:373.281872pt;}
.yf1_c00406{bottom:373.876391pt;}
.yf0_c00406{bottom:374.919784pt;}
.yef_c00406{bottom:394.253895pt;}
.yee_c00406{bottom:395.652919pt;}
.yed_c00406{bottom:396.262415pt;}
.yec_c00406{bottom:396.683392pt;}
.yeb_c00406{bottom:397.854931pt;}
.yea_c00406{bottom:398.445472pt;}
.ye9_c00406{bottom:400.395943pt;}
.ye8_c00406{bottom:401.194521pt;}
.ye7_c00406{bottom:401.785361pt;}
.ye6_c00406{bottom:403.337289pt;}
.ye5_c00406{bottom:403.942035pt;}
.ye4_c00406{bottom:404.721360pt;}
.ye3_c00406{bottom:405.104181pt;}
.ye2_c00406{bottom:406.258301pt;}
.ye1_c00406{bottom:406.824421pt;}
.ye0_c00406{bottom:426.879787pt;}
.ydf_c00406{bottom:429.753600pt;}
.yde_c00406{bottom:430.684629pt;}
.ydd_c00406{bottom:431.649835pt;}
.ydc_c00406{bottom:435.140181pt;}
.ydb_c00406{bottom:436.685056pt;}
.yda_c00406{bottom:437.589376pt;}
.yd9_c00406{bottom:438.872747pt;}
.yd8_c00406{bottom:439.494997pt;}
.yd7_c00406{bottom:441.363712pt;}
.yd6_c00406{bottom:442.330667pt;}
.yd5_c00406{bottom:466.222640pt;}
.yd4_c00406{bottom:467.119293pt;}
.yd3_c00406{bottom:467.569784pt;}
.yd2_c00406{bottom:467.868053pt;}
.yd1_c00406{bottom:468.593203pt;}
.yd0_c00406{bottom:469.338104pt;}
.ycf_c00406{bottom:470.053864pt;}
.yce_c00406{bottom:471.083181pt;}
.ycd_c00406{bottom:489.975405pt;}
.ycc_c00406{bottom:490.842760pt;}
.ycb_c00406{bottom:493.269272pt;}
.yca_c00406{bottom:494.506267pt;}
.yc9_c00406{bottom:496.357645pt;}
.yc8_c00406{bottom:497.860147pt;}
.yc7_c00406{bottom:499.093021pt;}
.yc6_c00406{bottom:502.107261pt;}
.yc5_c00406{bottom:505.470877pt;}
.yc4_c00406{bottom:507.551693pt;}
.yc3_c00406{bottom:508.434547pt;}
.yc2_c00406{bottom:511.903483pt;}
.yc1_c00406{bottom:520.855853pt;}
.yc0_c00406{bottom:521.923909pt;}
.ybf_c00406{bottom:522.385352pt;}
.ybe_c00406{bottom:524.560653pt;}
.ybd_c00406{bottom:525.199269pt;}
.ybc_c00406{bottom:526.514253pt;}
.ybb_c00406{bottom:527.792747pt;}
.yba_c00406{bottom:528.224445pt;}
.yb9_c00406{bottom:529.962533pt;}
.yb8_c00406{bottom:530.802200pt;}
.yb7_c00406{bottom:533.384883pt;}
.yb6_c00406{bottom:534.459656pt;}
.yb5_c00406{bottom:552.984099pt;}
.yb4_c00406{bottom:555.363141pt;}
.yb3_c00406{bottom:556.049997pt;}
.yb2_c00406{bottom:556.556277pt;}
.yb1_c00406{bottom:558.908541pt;}
.yb0_c00406{bottom:559.374008pt;}
.yaf_c00406{bottom:561.496347pt;}
.yae_c00406{bottom:563.381003pt;}
.yad_c00406{bottom:565.240376pt;}
.yac_c00406{bottom:566.188336pt;}
.yab_c00406{bottom:567.109853pt;}
.yaa_c00406{bottom:584.074949pt;}
.ya9_c00406{bottom:584.795800pt;}
.ya8_c00406{bottom:585.154069pt;}
.ya7_c00406{bottom:586.567664pt;}
.ya6_c00406{bottom:587.104187pt;}
.ya5_c00406{bottom:587.812069pt;}
.ya4_c00406{bottom:589.390069pt;}
.ya3_c00406{bottom:590.267624pt;}
.ya2_c00406{bottom:591.524896pt;}
.ya1_c00406{bottom:592.764373pt;}
.ya0_c00406{bottom:593.273787pt;}
.y9f_c00406{bottom:594.163752pt;}
.y9e_c00406{bottom:594.690080pt;}
.y9d_c00406{bottom:595.195723pt;}
.y9c_c00406{bottom:617.026424pt;}
.y9b_c00406{bottom:618.763925pt;}
.y9a_c00406{bottom:619.414597pt;}
.y99_c00406{bottom:621.558336pt;}
.y98_c00406{bottom:622.233443pt;}
.y97_c00406{bottom:624.422091pt;}
.y96_c00406{bottom:625.034541pt;}
.y95_c00406{bottom:625.904949pt;}
.y94_c00406{bottom:628.038832pt;}
.y93_c00406{bottom:628.671933pt;}
.y92_c00406{bottom:629.765333pt;}
.y91_c00406{bottom:648.845408pt;}
.y90_c00406{bottom:649.376939pt;}
.y8f_c00406{bottom:649.913216pt;}
.y8e_c00406{bottom:650.439808pt;}
.y8d_c00406{bottom:652.053483pt;}
.y8c_c00406{bottom:653.261152pt;}
.y8b_c00406{bottom:653.814827pt;}
.y8a_c00406{bottom:654.349248pt;}
.y89_c00406{bottom:656.112448pt;}
.y88_c00406{bottom:657.331051pt;}
.y87_c00406{bottom:658.204512pt;}
.y86_c00406{bottom:659.427221pt;}
.y85_c00406{bottom:679.377440pt;}
.y84_c00406{bottom:679.892544pt;}
.y83_c00406{bottom:680.911712pt;}
.y82_c00406{bottom:681.240597pt;}
.y81_c00406{bottom:682.920917pt;}
.y80_c00406{bottom:683.418688pt;}
.y7f_c00406{bottom:684.100832pt;}
.y7e_c00406{bottom:684.579275pt;}
.y7d_c00406{bottom:685.757333pt;}
.y7c_c00406{bottom:686.431136pt;}
.y7b_c00406{bottom:688.259584pt;}
.y7a_c00406{bottom:688.915925pt;}
.y79_c00406{bottom:689.915435pt;}
.y78_c00406{bottom:712.444683pt;}
.y77_c00406{bottom:713.370976pt;}
.y76_c00406{bottom:714.476715pt;}
.y75_c00406{bottom:715.122304pt;}
.y74_c00406{bottom:715.590325pt;}
.y73_c00406{bottom:716.680928pt;}
.y72_c00406{bottom:717.165067pt;}
.y71_c00406{bottom:717.960245pt;}
.y70_c00406{bottom:719.209685pt;}
.y6f_c00406{bottom:719.986581pt;}
.y6e_c00406{bottom:720.607307pt;}
.y6d_c00406{bottom:721.374859pt;}
.y6c_c00406{bottom:721.843669pt;}
.y6b_c00406{bottom:747.787104pt;}
.y6a_c00406{bottom:749.083616pt;}
.y69_c00406{bottom:749.674261pt;}
.y68_c00406{bottom:750.026283pt;}
.y67_c00406{bottom:750.864597pt;}
.y66_c00406{bottom:751.213813pt;}
.y65_c00406{bottom:752.035008pt;}
.y64_c00406{bottom:752.376917pt;}
.y63_c00406{bottom:752.850453pt;}
.y62_c00406{bottom:753.432320pt;}
.y61_c00406{bottom:754.491616pt;}
.y60_c00406{bottom:777.185099pt;}
.y5f_c00406{bottom:777.764043pt;}
.y5e_c00406{bottom:778.660704pt;}
.y5d_c00406{bottom:779.104075pt;}
.y5c_c00406{bottom:779.700992pt;}
.y5b_c00406{bottom:780.594624pt;}
.y5a_c00406{bottom:781.473685pt;}
.y59_c00406{bottom:781.909536pt;}
.y58_c00406{bottom:782.348320pt;}
.y57_c00406{bottom:782.927552pt;}
.y56_c00406{bottom:783.377301pt;}
.y55_c00406{bottom:784.248267pt;}
.y54_c00406{bottom:785.698528pt;}
.y53_c00406{bottom:809.962827pt;}
.y52_c00406{bottom:810.694059pt;}
.y51_c00406{bottom:811.396832pt;}
.y50_c00406{bottom:811.869760pt;}
.y4f_c00406{bottom:812.579008pt;}
.y4e_c00406{bottom:812.924075pt;}
.y4d_c00406{bottom:813.988064pt;}
.y4c_c00406{bottom:814.580427pt;}
.y4b_c00406{bottom:815.287125pt;}
.y4a_c00406{bottom:815.635925pt;}
.y49_c00406{bottom:816.666827pt;}
.y48_c00406{bottom:839.981216pt;}
.y47_c00406{bottom:840.390667pt;}
.y46_c00406{bottom:841.503008pt;}
.y45_c00406{bottom:841.912523pt;}
.y44_c00406{bottom:842.612160pt;}
.y43_c00406{bottom:843.026197pt;}
.y42_c00406{bottom:843.426432pt;}
.y41_c00406{bottom:843.970784pt;}
.y40_c00406{bottom:845.349248pt;}
.y3f_c00406{bottom:845.759552pt;}
.y3e_c00406{bottom:846.858667pt;}
.y3d_c00406{bottom:847.274325pt;}
.y3c_c00406{bottom:848.357333pt;}
.y3b_c00406{bottom:871.187211pt;}
.y3a_c00406{bottom:873.160320pt;}
.y39_c00406{bottom:873.606379pt;}
.y38_c00406{bottom:874.755616pt;}
.y37_c00406{bottom:875.298805pt;}
.y36_c00406{bottom:875.850304pt;}
.y35_c00406{bottom:877.177355pt;}
.y34_c00406{bottom:878.665280pt;}
.y33_c00406{bottom:879.212576pt;}
.y32_c00406{bottom:880.881781pt;}
.y31_c00406{bottom:882.928747pt;}
.y30_c00406{bottom:903.099637pt;}
.y2f_c00406{bottom:904.596096pt;}
.y2e_c00406{bottom:905.358272pt;}
.y2d_c00406{bottom:906.503083pt;}
.y2c_c00406{bottom:907.428459pt;}
.y2b_c00406{bottom:908.359157pt;}
.y2a_c00406{bottom:908.915083pt;}
.y29_c00406{bottom:910.041867pt;}
.y28_c00406{bottom:910.593909pt;}
.y27_c00406{bottom:911.159104pt;}
.y26_c00406{bottom:911.706176pt;}
.y25_c00406{bottom:913.561920pt;}
.y24_c00406{bottom:914.308832pt;}
.y23_c00406{bottom:914.856672pt;}
.y22_c00406{bottom:935.059851pt;}
.y21_c00406{bottom:935.737664pt;}
.y20_c00406{bottom:937.264224pt;}
.y1f_c00406{bottom:938.590421pt;}
.y1e_c00406{bottom:939.737205pt;}
.y1d_c00406{bottom:940.598187pt;}
.y1c_c00406{bottom:941.079392pt;}
.y1b_c00406{bottom:942.402635pt;}
.y1a_c00406{bottom:943.742699pt;}
.y19_c00406{bottom:944.382187pt;}
.y18_c00406{bottom:965.655851pt;}
.y17_c00406{bottom:966.681877pt;}
.y16_c00406{bottom:967.880181pt;}
.y15_c00406{bottom:968.842133pt;}
.y14_c00406{bottom:969.438123pt;}
.y13_c00406{bottom:970.254912pt;}
.y12_c00406{bottom:970.831989pt;}
.y11_c00406{bottom:972.219168pt;}
.y10_c00406{bottom:972.785131pt;}
.yf_c00406{bottom:975.147947pt;}
.ye_c00406{bottom:975.742784pt;}
.yd_c00406{bottom:976.717397pt;}
.yc_c00406{bottom:978.235211pt;}
.yb_c00406{bottom:996.885067pt;}
.ya_c00406{bottom:998.327403pt;}
.y9_c00406{bottom:999.051435pt;}
.y8_c00406{bottom:1001.444587pt;}
.y7_c00406{bottom:1003.531307pt;}
.y6_c00406{bottom:1004.729195pt;}
.y5_c00406{bottom:1005.414443pt;}
.y4_c00406{bottom:1006.370603pt;}
.y3_c00406{bottom:1007.804971pt;}
.y2_c00406{bottom:1008.719723pt;}
.y1_c00406{bottom:1009.446667pt;}
.h10_c00406{height:42.675199pt;}
.ha_c00406{height:63.968792pt;}
.h7_c00406{height:64.015486pt;}
.h3_c00406{height:64.018429pt;}
.hc_c00406{height:69.299525pt;}
.hf_c00406{height:69.316761pt;}
.h5_c00406{height:69.353298pt;}
.he_c00406{height:74.630258pt;}
.h11_c00406{height:74.681599pt;}
.h8_c00406{height:74.684734pt;}
.h2_c00406{height:74.688168pt;}
.hd_c00406{height:79.960990pt;}
.h9_c00406{height:80.019358pt;}
.h4_c00406{height:80.023037pt;}
.hb_c00406{height:90.622456pt;}
.h6_c00406{height:90.692775pt;}
.h1_c00406{height:1112.000000pt;}
.h0_c00406{height:1112.133333pt;}
.w0_c00406{width:813.333333pt;}
.x0_c00406{left:0.000000pt;}
.xa0_c00406{left:7.716888pt;}
.xe7_c00406{left:112.080000pt;}
.xdb_c00406{left:113.845547pt;}
.xe0_c00406{left:114.863537pt;}
.xbd_c00406{left:116.226312pt;}
.x94_c00406{left:118.379752pt;}
.x75_c00406{left:119.490667pt;}
.x64_c00406{left:120.469376pt;}
.x50_c00406{left:121.733707pt;}
.x2c_c00406{left:123.379371pt;}
.x21_c00406{left:124.371104pt;}
.x18_c00406{left:125.794795pt;}
.xc_c00406{left:126.731339pt;}
.xe8_c00406{left:142.297653pt;}
.xd1_c00406{left:143.772016pt;}
.xb2_c00406{left:146.892224pt;}
.x7f_c00406{left:148.093221pt;}
.x59_c00406{left:151.432459pt;}
.x22_c00406{left:153.201227pt;}
.x8a_c00406{left:157.489699pt;}
.x19_c00406{left:163.446464pt;}
.xce_c00406{left:164.392635pt;}
.xbe_c00406{left:165.824799pt;}
.x95_c00406{left:167.233085pt;}
.x76_c00406{left:169.190667pt;}
.x80_c00406{left:177.353136pt;}
.x65_c00406{left:179.236565pt;}
.xc4_c00406{left:184.271801pt;}
.xa5_c00406{left:186.532480pt;}
.x6f_c00406{left:189.092256pt;}
.x23_c00406{left:192.493931pt;}
.xbf_c00406{left:194.083796pt;}
.x8b_c00406{left:197.001301pt;}
.x77_c00406{left:197.968000pt;}
.x5a_c00406{left:199.423008pt;}
.x34_c00406{left:200.947477pt;}
.xd_c00406{left:202.591936pt;}
.xb3_c00406{left:204.484697pt;}
.x3e_c00406{left:210.293973pt;}
.xdc_c00406{left:211.449609pt;}
.xa9_c00406{left:213.510667pt;}
.xa1_c00406{left:215.218488pt;}
.x66_c00406{left:217.868395pt;}
.xe3_c00406{left:219.077908pt;}
.x46_c00406{left:220.088075pt;}
.x1_c00406{left:221.724000pt;}
.xb4_c00406{left:223.595580pt;}
.x81_c00406{left:226.780144pt;}
.x2d_c00406{left:231.126965pt;}
.xa6_c00406{left:234.286509pt;}
.x5b_c00406{left:238.238464pt;}
.x3f_c00406{left:239.335659pt;}
.xd2_c00406{left:240.550125pt;}
.x1a_c00406{left:242.295712pt;}
.xaa_c00406{left:243.697783pt;}
.xc8_c00406{left:250.980241pt;}
.x2_c00406{left:252.013333pt;}
.x82_c00406{left:255.089304pt;}
.x51_c00406{left:258.543765pt;}
.xd3_c00406{left:261.191381pt;}
.xb5_c00406{left:262.494257pt;}
.x8c_c00406{left:274.484565pt;}
.x47_c00406{left:278.168619pt;}
.xe_c00406{left:281.048789pt;}
.x96_c00406{left:284.627752pt;}
.x5c_c00406{left:286.785109pt;}
.xdd_c00406{left:288.403667pt;}
.x3_c00406{left:290.128000pt;}
.xb6_c00406{left:292.654308pt;}
.x78_c00406{left:294.962667pt;}
.x40_c00406{left:298.187253pt;}
.xc9_c00406{left:299.913212pt;}
.xab_c00406{left:302.036719pt;}
.x70_c00406{left:305.278293pt;}
.xe9_c00406{left:306.636427pt;}
.x48_c00406{left:308.192448pt;}
.x35_c00406{left:309.200128pt;}
.xe4_c00406{left:316.834720pt;}
.x24_c00406{left:318.959765pt;}
.x1b_c00406{left:320.166133pt;}
.xac_c00406{left:321.462607pt;}
.x97_c00406{left:322.794419pt;}
.x83_c00406{left:323.980709pt;}
.x67_c00406{left:325.405109pt;}
.x52_c00406{left:326.484651pt;}
.xca_c00406{left:329.606148pt;}
.xa7_c00406{left:332.273587pt;}
.x79_c00406{left:334.526667pt;}
.xea_c00406{left:336.408560pt;}
.x36_c00406{left:338.469803pt;}
.x41_c00406{left:347.605493pt;}
.x1c_c00406{left:348.498901pt;}
.x4_c00406{left:349.893333pt;}
.x8d_c00406{left:352.995771pt;}
.xe5_c00406{left:355.481368pt;}
.xcf_c00406{left:357.673387pt;}
.xc5_c00406{left:358.871052pt;}
.x7a_c00406{left:362.365333pt;}
.x5d_c00406{left:364.860085pt;}
.xd4_c00406{left:367.277351pt;}
.xb7_c00406{left:370.158537pt;}
.x49_c00406{left:376.124469pt;}
.x25_c00406{left:377.796171pt;}
.xc0_c00406{left:379.547492pt;}
.xa8_c00406{left:382.194605pt;}
.xeb_c00406{left:385.406587pt;}
.xcb_c00406{left:387.921912pt;}
.x5_c00406{left:389.733333pt;}
.x84_c00406{left:393.862869pt;}
.x53_c00406{left:394.943029pt;}
.xd5_c00406{left:396.790775pt;}
.xf_c00406{left:399.177451pt;}
.x98_c00406{left:401.798419pt;}
.x71_c00406{left:403.259072pt;}
.x4a_c00406{left:405.180075pt;}
.x5e_c00406{left:414.557621pt;}
.xd7_c00406{left:416.225391pt;}
.x6_c00406{left:418.285333pt;}
.x99_c00406{left:421.421085pt;}
.x54_c00406{left:424.002048pt;}
.x2e_c00406{left:426.056992pt;}
.x10_c00406{left:427.484171pt;}
.x72_c00406{left:432.975360pt;}
.x68_c00406{left:434.362080pt;}
.x26_c00406{left:437.085941pt;}
.xad_c00406{left:437.988631pt;}
.xb8_c00406{left:439.509101pt;}
.x8e_c00406{left:441.401203pt;}
.x85_c00406{left:442.604485pt;}
.x5f_c00406{left:444.791413pt;}
.xe1_c00406{left:454.998232pt;}
.xd8_c00406{left:456.230159pt;}
.xd0_c00406{left:457.249545pt;}
.x8f_c00406{left:460.800352pt;}
.x69_c00406{left:462.524149pt;}
.x4b_c00406{left:463.764715pt;}
.x42_c00406{left:465.016619pt;}
.x1d_c00406{left:466.620075pt;}
.x7_c00406{left:468.197333pt;}
.x37_c00406{left:475.786731pt;}
.x9a_c00406{left:479.534419pt;}
.xe2_c00406{left:483.882041pt;}
.xcc_c00406{left:487.013805pt;}
.x7b_c00406{left:492.536000pt;}
.x55_c00406{left:493.840811pt;}
.x2f_c00406{left:495.914709pt;}
.x11_c00406{left:496.845493pt;}
.xc1_c00406{left:498.012012pt;}
.x6a_c00406{left:502.620203pt;}
.x38_c00406{left:504.358912pt;}
.xa2_c00406{left:509.216320pt;}
.x60_c00406{left:512.968501pt;}
.xde_c00406{left:514.191175pt;}
.x27_c00406{left:515.371349pt;}
.x56_c00406{left:523.127893pt;}
.x43_c00406{left:524.085611pt;}
.x12_c00406{left:525.670912pt;}
.x73_c00406{left:530.878805pt;}
.x6b_c00406{left:531.921131pt;}
.x39_c00406{left:533.895317pt;}
.xb9_c00406{left:536.906396pt;}
.x9b_c00406{left:539.306419pt;}
.x61_c00406{left:542.252800pt;}
.x1e_c00406{left:544.669195pt;}
.xc6_c00406{left:545.832429pt;}
.xae_c00406{left:546.952891pt;}
.x30_c00406{left:553.533621pt;}
.x8_c00406{left:555.144000pt;}
.xc2_c00406{left:557.512089pt;}
.x90_c00406{left:558.808040pt;}
.x4c_c00406{left:563.170187pt;}
.x28_c00406{left:564.101205pt;}
.x13_c00406{left:566.485483pt;}
.x9c_c00406{left:568.334419pt;}
.x86_c00406{left:569.610328pt;}
.x57_c00406{left:572.363403pt;}
.xd6_c00406{left:574.861293pt;}
.xc7_c00406{left:575.784252pt;}
.xaf_c00406{left:577.085395pt;}
.x91_c00406{left:579.880435pt;}
.x62_c00406{left:582.604544pt;}
.x3a_c00406{left:583.836619pt;}
.x7c_c00406{left:589.978667pt;}
.x4d_c00406{left:592.705888pt;}
.x14_c00406{left:596.265664pt;}
.x87_c00406{left:599.394272pt;}
.xd9_c00406{left:603.893669pt;}
.xb0_c00406{left:606.150967pt;}
.x92_c00406{left:608.493840pt;}
.x3b_c00406{left:613.128992pt;}
.x31_c00406{left:614.036885pt;}
.x7d_c00406{left:619.554667pt;}
.x74_c00406{left:620.517035pt;}
.x44_c00406{left:622.045803pt;}
.x29_c00406{left:624.364437pt;}
.x6c_c00406{left:630.784405pt;}
.xe6_c00406{left:632.285620pt;}
.x1f_c00406{left:634.457600pt;}
.x32_c00406{left:637.514368pt;}
.xdf_c00406{left:642.672988pt;}
.x15_c00406{left:644.351605pt;}
.xba_c00406{left:645.893864pt;}
.x6d_c00406{left:650.102304pt;}
.x4e_c00406{left:652.524149pt;}
.x9_c00406{left:654.858667pt;}
.xcd_c00406{left:663.147175pt;}
.x2a_c00406{left:664.459904pt;}
.x9d_c00406{left:667.211752pt;}
.x20_c00406{left:674.317621pt;}
.xbb_c00406{left:676.327103pt;}
.x88_c00406{left:677.958528pt;}
.x58_c00406{left:680.415840pt;}
.x45_c00406{left:683.031371pt;}
.xa_c00406{left:685.026667pt;}
.xa3_c00406{left:687.130453pt;}
.x9e_c00406{left:688.186419pt;}
.x4f_c00406{left:691.155168pt;}
.x3c_c00406{left:692.606731pt;}
.xb1_c00406{left:695.867827pt;}
.x7e_c00406{left:698.532000pt;}
.xda_c00406{left:702.996867pt;}
.x16_c00406{left:704.286699pt;}
.x93_c00406{left:707.597469pt;}
.x63_c00406{left:709.630261pt;}
.xa4_c00406{left:715.095576pt;}
.x3d_c00406{left:721.896437pt;}
.x9f_c00406{left:736.734419pt;}
.x89_c00406{left:737.923808pt;}
.x6e_c00406{left:740.378805pt;}
.x33_c00406{left:741.350816pt;}
.x2b_c00406{left:743.210677pt;}
.xb_c00406{left:745.124000pt;}
.xbc_c00406{left:746.144037pt;}
.x17_c00406{left:755.598293pt;}
.xc3_c00406{left:809.946989pt;}
}





/* 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_c00407 {
    display:none;
  }
  .loading-indicator_c00407.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00407 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_c00407 { 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_c00407" -> "#page-container .classname_c00407")
 */
.pf_c00407 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00407 { /* 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_c00407.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00407 { /* 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_c00407 { /* 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_c00407 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00407 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00407 {overflow:visible;}
  }
}
.c_c00407 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00407 { /* 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_c00407:after { /* webkit #35443 */
  content: '';
}
.t_c00407:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00407 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 */
}
.__c00407 { /* 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_c00407 { /* info for Javascript */
  display:none;
}
.l_c00407 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00407 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00407 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00407: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_c00407 {
    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_c00407.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00407.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_c00407 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00407{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00407;src:url('chunks/assets/font_b11a17f404e7258299fdf971.woff2')format("woff");}.ff1_c00407{font-family:ff1_c00407;line-height:1.000000;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;}
.m3_c00407{transform:matrix(0.008369,-0.000092,0.002750,0.249985,0,0);-ms-transform:matrix(0.008369,-0.000092,0.002750,0.249985,0,0);-webkit-transform:matrix(0.008369,-0.000092,0.002750,0.249985,0,0);}
.m0_c00407{transform:matrix(0.014254,-0.000157,0.002750,0.249985,0,0);-ms-transform:matrix(0.014254,-0.000157,0.002750,0.249985,0,0);-webkit-transform:matrix(0.014254,-0.000157,0.002750,0.249985,0,0);}
.m12_c00407{transform:matrix(0.015658,-0.000251,0.003999,0.249968,0,0);-ms-transform:matrix(0.015658,-0.000251,0.003999,0.249968,0,0);-webkit-transform:matrix(0.015658,-0.000251,0.003999,0.249968,0,0);}
.m2e_c00407{transform:matrix(0.016068,-0.000257,0.003999,0.249968,0,0);-ms-transform:matrix(0.016068,-0.000257,0.003999,0.249968,0,0);-webkit-transform:matrix(0.016068,-0.000257,0.003999,0.249968,0,0);}
.m21_c00407{transform:matrix(0.126164,-0.002019,0.003999,0.249968,0,0);-ms-transform:matrix(0.126164,-0.002019,0.003999,0.249968,0,0);-webkit-transform:matrix(0.126164,-0.002019,0.003999,0.249968,0,0);}
.m23_c00407{transform:matrix(0.132088,-0.002113,0.003999,0.249968,0,0);-ms-transform:matrix(0.132088,-0.002113,0.003999,0.249968,0,0);-webkit-transform:matrix(0.132088,-0.002113,0.003999,0.249968,0,0);}
.m62_c00407{transform:matrix(0.138295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138295,0.000000,0.000000,0.250000,0,0);}
.m70_c00407{transform:matrix(0.139226,-0.001949,0.003500,0.249976,0,0);-ms-transform:matrix(0.139226,-0.001949,0.003500,0.249976,0,0);-webkit-transform:matrix(0.139226,-0.001949,0.003500,0.249976,0,0);}
.m17_c00407{transform:matrix(0.142482,-0.002280,0.003999,0.249968,0,0);-ms-transform:matrix(0.142482,-0.002280,0.003999,0.249968,0,0);-webkit-transform:matrix(0.142482,-0.002280,0.003999,0.249968,0,0);}
.mc_c00407{transform:matrix(0.148526,-0.002376,0.003999,0.249968,0,0);-ms-transform:matrix(0.148526,-0.002376,0.003999,0.249968,0,0);-webkit-transform:matrix(0.148526,-0.002376,0.003999,0.249968,0,0);}
.m19_c00407{transform:matrix(0.152390,-0.002438,0.003999,0.249968,0,0);-ms-transform:matrix(0.152390,-0.002438,0.003999,0.249968,0,0);-webkit-transform:matrix(0.152390,-0.002438,0.003999,0.249968,0,0);}
.m16_c00407{transform:matrix(0.152565,-0.002441,0.003999,0.249968,0,0);-ms-transform:matrix(0.152565,-0.002441,0.003999,0.249968,0,0);-webkit-transform:matrix(0.152565,-0.002441,0.003999,0.249968,0,0);}
.m2_c00407{transform:matrix(0.155046,-0.001706,0.002750,0.249985,0,0);-ms-transform:matrix(0.155046,-0.001706,0.002750,0.249985,0,0);-webkit-transform:matrix(0.155046,-0.001706,0.002750,0.249985,0,0);}
.m18_c00407{transform:matrix(0.156490,-0.002504,0.003999,0.249968,0,0);-ms-transform:matrix(0.156490,-0.002504,0.003999,0.249968,0,0);-webkit-transform:matrix(0.156490,-0.002504,0.003999,0.249968,0,0);}
.mb_c00407{transform:matrix(0.162044,-0.002593,0.003999,0.249968,0,0);-ms-transform:matrix(0.162044,-0.002593,0.003999,0.249968,0,0);-webkit-transform:matrix(0.162044,-0.002593,0.003999,0.249968,0,0);}
.m1a_c00407{transform:matrix(0.163264,-0.002612,0.003999,0.249968,0,0);-ms-transform:matrix(0.163264,-0.002612,0.003999,0.249968,0,0);-webkit-transform:matrix(0.163264,-0.002612,0.003999,0.249968,0,0);}
.m15_c00407{transform:matrix(0.171243,-0.002740,0.003999,0.249968,0,0);-ms-transform:matrix(0.171243,-0.002740,0.003999,0.249968,0,0);-webkit-transform:matrix(0.171243,-0.002740,0.003999,0.249968,0,0);}
.m1e_c00407{transform:matrix(0.172068,-0.002753,0.003999,0.249968,0,0);-ms-transform:matrix(0.172068,-0.002753,0.003999,0.249968,0,0);-webkit-transform:matrix(0.172068,-0.002753,0.003999,0.249968,0,0);}
.m7_c00407{transform:matrix(0.172828,-0.002765,0.003999,0.249968,0,0);-ms-transform:matrix(0.172828,-0.002765,0.003999,0.249968,0,0);-webkit-transform:matrix(0.172828,-0.002765,0.003999,0.249968,0,0);}
.m5b_c00407{transform:matrix(0.173531,-0.001735,0.002500,0.249988,0,0);-ms-transform:matrix(0.173531,-0.001735,0.002500,0.249988,0,0);-webkit-transform:matrix(0.173531,-0.001735,0.002500,0.249988,0,0);}
.m40_c00407{transform:matrix(0.177857,-0.002846,0.003999,0.249968,0,0);-ms-transform:matrix(0.177857,-0.002846,0.003999,0.249968,0,0);-webkit-transform:matrix(0.177857,-0.002846,0.003999,0.249968,0,0);}
.m10_c00407{transform:matrix(0.180387,-0.002886,0.003999,0.249968,0,0);-ms-transform:matrix(0.180387,-0.002886,0.003999,0.249968,0,0);-webkit-transform:matrix(0.180387,-0.002886,0.003999,0.249968,0,0);}
.m42_c00407{transform:matrix(0.180467,-0.002887,0.003999,0.249968,0,0);-ms-transform:matrix(0.180467,-0.002887,0.003999,0.249968,0,0);-webkit-transform:matrix(0.180467,-0.002887,0.003999,0.249968,0,0);}
.m46_c00407{transform:matrix(0.181532,-0.002905,0.003999,0.249968,0,0);-ms-transform:matrix(0.181532,-0.002905,0.003999,0.249968,0,0);-webkit-transform:matrix(0.181532,-0.002905,0.003999,0.249968,0,0);}
.m4e_c00407{transform:matrix(0.184391,-0.001844,0.002500,0.249988,0,0);-ms-transform:matrix(0.184391,-0.001844,0.002500,0.249988,0,0);-webkit-transform:matrix(0.184391,-0.001844,0.002500,0.249988,0,0);}
.m43_c00407{transform:matrix(0.187711,-0.003003,0.003999,0.249968,0,0);-ms-transform:matrix(0.187711,-0.003003,0.003999,0.249968,0,0);-webkit-transform:matrix(0.187711,-0.003003,0.003999,0.249968,0,0);}
.m4c_c00407{transform:matrix(0.189726,-0.001897,0.002500,0.249988,0,0);-ms-transform:matrix(0.189726,-0.001897,0.002500,0.249988,0,0);-webkit-transform:matrix(0.189726,-0.001897,0.002500,0.249988,0,0);}
.m61_c00407{transform:matrix(0.190685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190685,0.000000,0.000000,0.250000,0,0);}
.m52_c00407{transform:matrix(0.192345,-0.001923,0.002500,0.249988,0,0);-ms-transform:matrix(0.192345,-0.001923,0.002500,0.249988,0,0);-webkit-transform:matrix(0.192345,-0.001923,0.002500,0.249988,0,0);}
.m93_c00407{transform:matrix(0.195540,-0.003715,0.004749,0.249955,0,0);-ms-transform:matrix(0.195540,-0.003715,0.004749,0.249955,0,0);-webkit-transform:matrix(0.195540,-0.003715,0.004749,0.249955,0,0);}
.m1f_c00407{transform:matrix(0.197435,-0.003159,0.003999,0.249968,0,0);-ms-transform:matrix(0.197435,-0.003159,0.003999,0.249968,0,0);-webkit-transform:matrix(0.197435,-0.003159,0.003999,0.249968,0,0);}
.m9_c00407{transform:matrix(0.197730,-0.003164,0.003999,0.249968,0,0);-ms-transform:matrix(0.197730,-0.003164,0.003999,0.249968,0,0);-webkit-transform:matrix(0.197730,-0.003164,0.003999,0.249968,0,0);}
.m1d_c00407{transform:matrix(0.198700,-0.003179,0.003999,0.249968,0,0);-ms-transform:matrix(0.198700,-0.003179,0.003999,0.249968,0,0);-webkit-transform:matrix(0.198700,-0.003179,0.003999,0.249968,0,0);}
.m75_c00407{transform:matrix(0.199064,-0.003782,0.004749,0.249955,0,0);-ms-transform:matrix(0.199064,-0.003782,0.004749,0.249955,0,0);-webkit-transform:matrix(0.199064,-0.003782,0.004749,0.249955,0,0);}
.m37_c00407{transform:matrix(0.199754,-0.003196,0.003999,0.249968,0,0);-ms-transform:matrix(0.199754,-0.003196,0.003999,0.249968,0,0);-webkit-transform:matrix(0.199754,-0.003196,0.003999,0.249968,0,0);}
.m51_c00407{transform:matrix(0.201790,-0.002018,0.002500,0.249988,0,0);-ms-transform:matrix(0.201790,-0.002018,0.002500,0.249988,0,0);-webkit-transform:matrix(0.201790,-0.002018,0.002500,0.249988,0,0);}
.m77_c00407{transform:matrix(0.202189,-0.003842,0.004749,0.249955,0,0);-ms-transform:matrix(0.202189,-0.003842,0.004749,0.249955,0,0);-webkit-transform:matrix(0.202189,-0.003842,0.004749,0.249955,0,0);}
.mf_c00407{transform:matrix(0.202209,-0.003235,0.003999,0.249968,0,0);-ms-transform:matrix(0.202209,-0.003235,0.003999,0.249968,0,0);-webkit-transform:matrix(0.202209,-0.003235,0.003999,0.249968,0,0);}
.m95_c00407{transform:matrix(0.202214,-0.003842,0.004749,0.249955,0,0);-ms-transform:matrix(0.202214,-0.003842,0.004749,0.249955,0,0);-webkit-transform:matrix(0.202214,-0.003842,0.004749,0.249955,0,0);}
.m41_c00407{transform:matrix(0.202289,-0.003237,0.003999,0.249968,0,0);-ms-transform:matrix(0.202289,-0.003237,0.003999,0.249968,0,0);-webkit-transform:matrix(0.202289,-0.003237,0.003999,0.249968,0,0);}
.m59_c00407{transform:matrix(0.202710,-0.002027,0.002500,0.249988,0,0);-ms-transform:matrix(0.202710,-0.002027,0.002500,0.249988,0,0);-webkit-transform:matrix(0.202710,-0.002027,0.002500,0.249988,0,0);}
.m1b_c00407{transform:matrix(0.202894,-0.003246,0.003999,0.249968,0,0);-ms-transform:matrix(0.202894,-0.003246,0.003999,0.249968,0,0);-webkit-transform:matrix(0.202894,-0.003246,0.003999,0.249968,0,0);}
.m44_c00407{transform:matrix(0.203494,-0.003256,0.003999,0.249968,0,0);-ms-transform:matrix(0.203494,-0.003256,0.003999,0.249968,0,0);-webkit-transform:matrix(0.203494,-0.003256,0.003999,0.249968,0,0);}
.m8_c00407{transform:matrix(0.204644,-0.003274,0.003999,0.249968,0,0);-ms-transform:matrix(0.204644,-0.003274,0.003999,0.249968,0,0);-webkit-transform:matrix(0.204644,-0.003274,0.003999,0.249968,0,0);}
.m45_c00407{transform:matrix(0.205634,-0.003290,0.003999,0.249968,0,0);-ms-transform:matrix(0.205634,-0.003290,0.003999,0.249968,0,0);-webkit-transform:matrix(0.205634,-0.003290,0.003999,0.249968,0,0);}
.m35_c00407{transform:matrix(0.207478,-0.003320,0.003999,0.249968,0,0);-ms-transform:matrix(0.207478,-0.003320,0.003999,0.249968,0,0);-webkit-transform:matrix(0.207478,-0.003320,0.003999,0.249968,0,0);}
.m1c_c00407{transform:matrix(0.208518,-0.003336,0.003999,0.249968,0,0);-ms-transform:matrix(0.208518,-0.003336,0.003999,0.249968,0,0);-webkit-transform:matrix(0.208518,-0.003336,0.003999,0.249968,0,0);}
.m3f_c00407{transform:matrix(0.208703,-0.003339,0.003999,0.249968,0,0);-ms-transform:matrix(0.208703,-0.003339,0.003999,0.249968,0,0);-webkit-transform:matrix(0.208703,-0.003339,0.003999,0.249968,0,0);}
.m20_c00407{transform:matrix(0.209713,-0.003355,0.003999,0.249968,0,0);-ms-transform:matrix(0.209713,-0.003355,0.003999,0.249968,0,0);-webkit-transform:matrix(0.209713,-0.003355,0.003999,0.249968,0,0);}
.m6c_c00407{transform:matrix(0.209914,-0.002939,0.003500,0.249976,0,0);-ms-transform:matrix(0.209914,-0.002939,0.003500,0.249976,0,0);-webkit-transform:matrix(0.209914,-0.002939,0.003500,0.249976,0,0);}
.m7b_c00407{transform:matrix(0.209987,-0.003990,0.004749,0.249955,0,0);-ms-transform:matrix(0.209987,-0.003990,0.004749,0.249955,0,0);-webkit-transform:matrix(0.209987,-0.003990,0.004749,0.249955,0,0);}
.m5a_c00407{transform:matrix(0.210149,-0.002101,0.002500,0.249988,0,0);-ms-transform:matrix(0.210149,-0.002101,0.002500,0.249988,0,0);-webkit-transform:matrix(0.210149,-0.002101,0.002500,0.249988,0,0);}
.m50_c00407{transform:matrix(0.211549,-0.002115,0.002500,0.249988,0,0);-ms-transform:matrix(0.211549,-0.002115,0.002500,0.249988,0,0);-webkit-transform:matrix(0.211549,-0.002115,0.002500,0.249988,0,0);}
.m6_c00407{transform:matrix(0.211598,-0.003386,0.003999,0.249968,0,0);-ms-transform:matrix(0.211598,-0.003386,0.003999,0.249968,0,0);-webkit-transform:matrix(0.211598,-0.003386,0.003999,0.249968,0,0);}
.m39_c00407{transform:matrix(0.211813,-0.003389,0.003999,0.249968,0,0);-ms-transform:matrix(0.211813,-0.003389,0.003999,0.249968,0,0);-webkit-transform:matrix(0.211813,-0.003389,0.003999,0.249968,0,0);}
.m5d_c00407{transform:matrix(0.212494,-0.002125,0.002500,0.249988,0,0);-ms-transform:matrix(0.212494,-0.002125,0.002500,0.249988,0,0);-webkit-transform:matrix(0.212494,-0.002125,0.002500,0.249988,0,0);}
.m58_c00407{transform:matrix(0.212499,-0.002125,0.002500,0.249988,0,0);-ms-transform:matrix(0.212499,-0.002125,0.002500,0.249988,0,0);-webkit-transform:matrix(0.212499,-0.002125,0.002500,0.249988,0,0);}
.m47_c00407{transform:matrix(0.213998,-0.003424,0.003999,0.249968,0,0);-ms-transform:matrix(0.213998,-0.003424,0.003999,0.249968,0,0);-webkit-transform:matrix(0.213998,-0.003424,0.003999,0.249968,0,0);}
.m3c_c00407{transform:matrix(0.214038,-0.003425,0.003999,0.249968,0,0);-ms-transform:matrix(0.214038,-0.003425,0.003999,0.249968,0,0);-webkit-transform:matrix(0.214038,-0.003425,0.003999,0.249968,0,0);}
.m4b_c00407{transform:matrix(0.215419,-0.002154,0.002500,0.249988,0,0);-ms-transform:matrix(0.215419,-0.002154,0.002500,0.249988,0,0);-webkit-transform:matrix(0.215419,-0.002154,0.002500,0.249988,0,0);}
.m81_c00407{transform:matrix(0.215676,-0.004098,0.004749,0.249955,0,0);-ms-transform:matrix(0.215676,-0.004098,0.004749,0.249955,0,0);-webkit-transform:matrix(0.215676,-0.004098,0.004749,0.249955,0,0);}
.m4a_c00407{transform:matrix(0.216739,-0.002167,0.002500,0.249988,0,0);-ms-transform:matrix(0.216739,-0.002167,0.002500,0.249988,0,0);-webkit-transform:matrix(0.216739,-0.002167,0.002500,0.249988,0,0);}
.m54_c00407{transform:matrix(0.217694,-0.002177,0.002500,0.249988,0,0);-ms-transform:matrix(0.217694,-0.002177,0.002500,0.249988,0,0);-webkit-transform:matrix(0.217694,-0.002177,0.002500,0.249988,0,0);}
.m79_c00407{transform:matrix(0.218166,-0.004145,0.004749,0.249955,0,0);-ms-transform:matrix(0.218166,-0.004145,0.004749,0.249955,0,0);-webkit-transform:matrix(0.218166,-0.004145,0.004749,0.249955,0,0);}
.m48_c00407{transform:matrix(0.218782,-0.003501,0.003999,0.249968,0,0);-ms-transform:matrix(0.218782,-0.003501,0.003999,0.249968,0,0);-webkit-transform:matrix(0.218782,-0.003501,0.003999,0.249968,0,0);}
.m90_c00407{transform:matrix(0.219140,-0.004164,0.004749,0.249955,0,0);-ms-transform:matrix(0.219140,-0.004164,0.004749,0.249955,0,0);-webkit-transform:matrix(0.219140,-0.004164,0.004749,0.249955,0,0);}
.m38_c00407{transform:matrix(0.219862,-0.003518,0.003999,0.249968,0,0);-ms-transform:matrix(0.219862,-0.003518,0.003999,0.249968,0,0);-webkit-transform:matrix(0.219862,-0.003518,0.003999,0.249968,0,0);}
.m68_c00407{transform:matrix(0.220193,-0.003083,0.003500,0.249976,0,0);-ms-transform:matrix(0.220193,-0.003083,0.003500,0.249976,0,0);-webkit-transform:matrix(0.220193,-0.003083,0.003500,0.249976,0,0);}
.m6e_c00407{transform:matrix(0.220868,-0.003092,0.003500,0.249976,0,0);-ms-transform:matrix(0.220868,-0.003092,0.003500,0.249976,0,0);-webkit-transform:matrix(0.220868,-0.003092,0.003500,0.249976,0,0);}
.m5c_c00407{transform:matrix(0.221344,-0.002213,0.002500,0.249988,0,0);-ms-transform:matrix(0.221344,-0.002213,0.002500,0.249988,0,0);-webkit-transform:matrix(0.221344,-0.002213,0.002500,0.249988,0,0);}
.me_c00407{transform:matrix(0.221777,-0.003548,0.003999,0.249968,0,0);-ms-transform:matrix(0.221777,-0.003548,0.003999,0.249968,0,0);-webkit-transform:matrix(0.221777,-0.003548,0.003999,0.249968,0,0);}
.m34_c00407{transform:matrix(0.221792,-0.003549,0.003999,0.249968,0,0);-ms-transform:matrix(0.221792,-0.003549,0.003999,0.249968,0,0);-webkit-transform:matrix(0.221792,-0.003549,0.003999,0.249968,0,0);}
.m53_c00407{transform:matrix(0.222679,-0.002227,0.002500,0.249988,0,0);-ms-transform:matrix(0.222679,-0.002227,0.002500,0.249988,0,0);-webkit-transform:matrix(0.222679,-0.002227,0.002500,0.249988,0,0);}
.m91_c00407{transform:matrix(0.223035,-0.004238,0.004749,0.249955,0,0);-ms-transform:matrix(0.223035,-0.004238,0.004749,0.249955,0,0);-webkit-transform:matrix(0.223035,-0.004238,0.004749,0.249955,0,0);}
.m83_c00407{transform:matrix(0.223225,-0.004241,0.004749,0.249955,0,0);-ms-transform:matrix(0.223225,-0.004241,0.004749,0.249955,0,0);-webkit-transform:matrix(0.223225,-0.004241,0.004749,0.249955,0,0);}
.m3b_c00407{transform:matrix(0.223286,-0.003573,0.003999,0.249968,0,0);-ms-transform:matrix(0.223286,-0.003573,0.003999,0.249968,0,0);-webkit-transform:matrix(0.223286,-0.003573,0.003999,0.249968,0,0);}
.m6b_c00407{transform:matrix(0.223358,-0.003127,0.003500,0.249976,0,0);-ms-transform:matrix(0.223358,-0.003127,0.003500,0.249976,0,0);-webkit-transform:matrix(0.223358,-0.003127,0.003500,0.249976,0,0);}
.md_c00407{transform:matrix(0.223501,-0.003576,0.003999,0.249968,0,0);-ms-transform:matrix(0.223501,-0.003576,0.003999,0.249968,0,0);-webkit-transform:matrix(0.223501,-0.003576,0.003999,0.249968,0,0);}
.m67_c00407{transform:matrix(0.224788,-0.003147,0.003500,0.249976,0,0);-ms-transform:matrix(0.224788,-0.003147,0.003500,0.249976,0,0);-webkit-transform:matrix(0.224788,-0.003147,0.003500,0.249976,0,0);}
.m8f_c00407{transform:matrix(0.224949,-0.004274,0.004749,0.249955,0,0);-ms-transform:matrix(0.224949,-0.004274,0.004749,0.249955,0,0);-webkit-transform:matrix(0.224949,-0.004274,0.004749,0.249955,0,0);}
.m5_c00407{transform:matrix(0.225171,-0.003603,0.003999,0.249968,0,0);-ms-transform:matrix(0.225171,-0.003603,0.003999,0.249968,0,0);-webkit-transform:matrix(0.225171,-0.003603,0.003999,0.249968,0,0);}
.m6d_c00407{transform:matrix(0.226043,-0.003165,0.003500,0.249976,0,0);-ms-transform:matrix(0.226043,-0.003165,0.003500,0.249976,0,0);-webkit-transform:matrix(0.226043,-0.003165,0.003500,0.249976,0,0);}
.m5e_c00407{transform:matrix(0.226354,-0.002264,0.002500,0.249988,0,0);-ms-transform:matrix(0.226354,-0.002264,0.002500,0.249988,0,0);-webkit-transform:matrix(0.226354,-0.002264,0.002500,0.249988,0,0);}
.m60_c00407{transform:matrix(0.226699,-0.002267,0.002500,0.249988,0,0);-ms-transform:matrix(0.226699,-0.002267,0.002500,0.249988,0,0);-webkit-transform:matrix(0.226699,-0.002267,0.002500,0.249988,0,0);}
.m80_c00407{transform:matrix(0.229084,-0.004353,0.004749,0.249955,0,0);-ms-transform:matrix(0.229084,-0.004353,0.004749,0.249955,0,0);-webkit-transform:matrix(0.229084,-0.004353,0.004749,0.249955,0,0);}
.m74_c00407{transform:matrix(0.229729,-0.004365,0.004749,0.249955,0,0);-ms-transform:matrix(0.229729,-0.004365,0.004749,0.249955,0,0);-webkit-transform:matrix(0.229729,-0.004365,0.004749,0.249955,0,0);}
.m8c_c00407{transform:matrix(0.231003,-0.004389,0.004749,0.249955,0,0);-ms-transform:matrix(0.231003,-0.004389,0.004749,0.249955,0,0);-webkit-transform:matrix(0.231003,-0.004389,0.004749,0.249955,0,0);}
.m32_c00407{transform:matrix(0.231250,-0.003700,0.003999,0.249968,0,0);-ms-transform:matrix(0.231250,-0.003700,0.003999,0.249968,0,0);-webkit-transform:matrix(0.231250,-0.003700,0.003999,0.249968,0,0);}
.m94_c00407{transform:matrix(0.231573,-0.004400,0.004749,0.249955,0,0);-ms-transform:matrix(0.231573,-0.004400,0.004749,0.249955,0,0);-webkit-transform:matrix(0.231573,-0.004400,0.004749,0.249955,0,0);}
.m78_c00407{transform:matrix(0.233333,-0.004433,0.004749,0.249955,0,0);-ms-transform:matrix(0.233333,-0.004433,0.004749,0.249955,0,0);-webkit-transform:matrix(0.233333,-0.004433,0.004749,0.249955,0,0);}
.m7a_c00407{transform:matrix(0.235777,-0.004480,0.004749,0.249955,0,0);-ms-transform:matrix(0.235777,-0.004480,0.004749,0.249955,0,0);-webkit-transform:matrix(0.235777,-0.004480,0.004749,0.249955,0,0);}
.m87_c00407{transform:matrix(0.237627,-0.004515,0.004749,0.249955,0,0);-ms-transform:matrix(0.237627,-0.004515,0.004749,0.249955,0,0);-webkit-transform:matrix(0.237627,-0.004515,0.004749,0.249955,0,0);}
.m7c_c00407{transform:matrix(0.238592,-0.004533,0.004749,0.249955,0,0);-ms-transform:matrix(0.238592,-0.004533,0.004749,0.249955,0,0);-webkit-transform:matrix(0.238592,-0.004533,0.004749,0.249955,0,0);}
.m7e_c00407{transform:matrix(0.238677,-0.004535,0.004749,0.249955,0,0);-ms-transform:matrix(0.238677,-0.004535,0.004749,0.249955,0,0);-webkit-transform:matrix(0.238677,-0.004535,0.004749,0.249955,0,0);}
.m57_c00407{transform:matrix(0.239508,-0.002395,0.002500,0.249988,0,0);-ms-transform:matrix(0.239508,-0.002395,0.002500,0.249988,0,0);-webkit-transform:matrix(0.239508,-0.002395,0.002500,0.249988,0,0);}
.m1_c00407{transform:matrix(0.240035,-0.002640,0.002750,0.249985,0,0);-ms-transform:matrix(0.240035,-0.002640,0.002750,0.249985,0,0);-webkit-transform:matrix(0.240035,-0.002640,0.002750,0.249985,0,0);}
.m71_c00407{transform:matrix(0.241561,-0.004590,0.004749,0.249955,0,0);-ms-transform:matrix(0.241561,-0.004590,0.004749,0.249955,0,0);-webkit-transform:matrix(0.241561,-0.004590,0.004749,0.249955,0,0);}
.m11_c00407{transform:matrix(0.241909,-0.003871,0.003999,0.249968,0,0);-ms-transform:matrix(0.241909,-0.003871,0.003999,0.249968,0,0);-webkit-transform:matrix(0.241909,-0.003871,0.003999,0.249968,0,0);}
.m84_c00407{transform:matrix(0.242551,-0.004608,0.004749,0.249955,0,0);-ms-transform:matrix(0.242551,-0.004608,0.004749,0.249955,0,0);-webkit-transform:matrix(0.242551,-0.004608,0.004749,0.249955,0,0);}
.m82_c00407{transform:matrix(0.242961,-0.004616,0.004749,0.249955,0,0);-ms-transform:matrix(0.242961,-0.004616,0.004749,0.249955,0,0);-webkit-transform:matrix(0.242961,-0.004616,0.004749,0.249955,0,0);}
.m30_c00407{transform:matrix(0.243214,-0.003891,0.003999,0.249968,0,0);-ms-transform:matrix(0.243214,-0.003891,0.003999,0.249968,0,0);-webkit-transform:matrix(0.243214,-0.003891,0.003999,0.249968,0,0);}
.m6a_c00407{transform:matrix(0.243466,-0.003409,0.003500,0.249976,0,0);-ms-transform:matrix(0.243466,-0.003409,0.003500,0.249976,0,0);-webkit-transform:matrix(0.243466,-0.003409,0.003500,0.249976,0,0);}
.m92_c00407{transform:matrix(0.245221,-0.004659,0.004749,0.249955,0,0);-ms-transform:matrix(0.245221,-0.004659,0.004749,0.249955,0,0);-webkit-transform:matrix(0.245221,-0.004659,0.004749,0.249955,0,0);}
.m36_c00407{transform:matrix(0.246333,-0.003941,0.003999,0.249968,0,0);-ms-transform:matrix(0.246333,-0.003941,0.003999,0.249968,0,0);-webkit-transform:matrix(0.246333,-0.003941,0.003999,0.249968,0,0);}
.m4f_c00407{transform:matrix(0.246468,-0.002465,0.002500,0.249988,0,0);-ms-transform:matrix(0.246468,-0.002465,0.002500,0.249988,0,0);-webkit-transform:matrix(0.246468,-0.002465,0.002500,0.249988,0,0);}
.m7f_c00407{transform:matrix(0.246810,-0.004689,0.004749,0.249955,0,0);-ms-transform:matrix(0.246810,-0.004689,0.004749,0.249955,0,0);-webkit-transform:matrix(0.246810,-0.004689,0.004749,0.249955,0,0);}
.m73_c00407{transform:matrix(0.247740,-0.004707,0.004749,0.249955,0,0);-ms-transform:matrix(0.247740,-0.004707,0.004749,0.249955,0,0);-webkit-transform:matrix(0.247740,-0.004707,0.004749,0.249955,0,0);}
.m8d_c00407{transform:matrix(0.249700,-0.004744,0.004749,0.249955,0,0);-ms-transform:matrix(0.249700,-0.004744,0.004749,0.249955,0,0);-webkit-transform:matrix(0.249700,-0.004744,0.004749,0.249955,0,0);}
.m26_c00407{transform:matrix(0.249898,-0.003998,0.003999,0.249968,0,0);-ms-transform:matrix(0.249898,-0.003998,0.003999,0.249968,0,0);-webkit-transform:matrix(0.249898,-0.003998,0.003999,0.249968,0,0);}
.m65_c00407{transform:matrix(0.253925,-0.003555,0.003500,0.249976,0,0);-ms-transform:matrix(0.253925,-0.003555,0.003500,0.249976,0,0);-webkit-transform:matrix(0.253925,-0.003555,0.003500,0.249976,0,0);}
.m25_c00407{transform:matrix(0.254152,-0.004066,0.003999,0.249968,0,0);-ms-transform:matrix(0.254152,-0.004066,0.003999,0.249968,0,0);-webkit-transform:matrix(0.254152,-0.004066,0.003999,0.249968,0,0);}
.m8e_c00407{transform:matrix(0.254514,-0.004836,0.004749,0.249955,0,0);-ms-transform:matrix(0.254514,-0.004836,0.004749,0.249955,0,0);-webkit-transform:matrix(0.254514,-0.004836,0.004749,0.249955,0,0);}
.m72_c00407{transform:matrix(0.256854,-0.004880,0.004749,0.249955,0,0);-ms-transform:matrix(0.256854,-0.004880,0.004749,0.249955,0,0);-webkit-transform:matrix(0.256854,-0.004880,0.004749,0.249955,0,0);}
.m6f_c00407{transform:matrix(0.258035,-0.003612,0.003500,0.249976,0,0);-ms-transform:matrix(0.258035,-0.003612,0.003500,0.249976,0,0);-webkit-transform:matrix(0.258035,-0.003612,0.003500,0.249976,0,0);}
.m5f_c00407{transform:matrix(0.259102,-0.002591,0.002500,0.249988,0,0);-ms-transform:matrix(0.259102,-0.002591,0.002500,0.249988,0,0);-webkit-transform:matrix(0.259102,-0.002591,0.002500,0.249988,0,0);}
.m96_c00407{transform:matrix(0.259248,-0.004926,0.004749,0.249955,0,0);-ms-transform:matrix(0.259248,-0.004926,0.004749,0.249955,0,0);-webkit-transform:matrix(0.259248,-0.004926,0.004749,0.249955,0,0);}
.m4_c00407{transform:matrix(0.262029,-0.002882,0.002750,0.249985,0,0);-ms-transform:matrix(0.262029,-0.002882,0.002750,0.249985,0,0);-webkit-transform:matrix(0.262029,-0.002882,0.002750,0.249985,0,0);}
.m66_c00407{transform:matrix(0.264689,-0.003706,0.003500,0.249976,0,0);-ms-transform:matrix(0.264689,-0.003706,0.003500,0.249976,0,0);-webkit-transform:matrix(0.264689,-0.003706,0.003500,0.249976,0,0);}
.m55_c00407{transform:matrix(0.266152,-0.002662,0.002500,0.249988,0,0);-ms-transform:matrix(0.266152,-0.002662,0.002500,0.249988,0,0);-webkit-transform:matrix(0.266152,-0.002662,0.002500,0.249988,0,0);}
.m8b_c00407{transform:matrix(0.267527,-0.005083,0.004749,0.249955,0,0);-ms-transform:matrix(0.267527,-0.005083,0.004749,0.249955,0,0);-webkit-transform:matrix(0.267527,-0.005083,0.004749,0.249955,0,0);}
.m98_c00407{transform:matrix(0.268906,-0.005109,0.004749,0.249955,0,0);-ms-transform:matrix(0.268906,-0.005109,0.004749,0.249955,0,0);-webkit-transform:matrix(0.268906,-0.005109,0.004749,0.249955,0,0);}
.m4d_c00407{transform:matrix(0.269907,-0.002699,0.002500,0.249988,0,0);-ms-transform:matrix(0.269907,-0.002699,0.002500,0.249988,0,0);-webkit-transform:matrix(0.269907,-0.002699,0.002500,0.249988,0,0);}
.m85_c00407{transform:matrix(0.269926,-0.005129,0.004749,0.249955,0,0);-ms-transform:matrix(0.269926,-0.005129,0.004749,0.249955,0,0);-webkit-transform:matrix(0.269926,-0.005129,0.004749,0.249955,0,0);}
.m76_c00407{transform:matrix(0.270596,-0.005141,0.004749,0.249955,0,0);-ms-transform:matrix(0.270596,-0.005141,0.004749,0.249955,0,0);-webkit-transform:matrix(0.270596,-0.005141,0.004749,0.249955,0,0);}
.m86_c00407{transform:matrix(0.274236,-0.005210,0.004749,0.249955,0,0);-ms-transform:matrix(0.274236,-0.005210,0.004749,0.249955,0,0);-webkit-transform:matrix(0.274236,-0.005210,0.004749,0.249955,0,0);}
.m3d_c00407{transform:matrix(0.276155,-0.004418,0.003999,0.249968,0,0);-ms-transform:matrix(0.276155,-0.004418,0.003999,0.249968,0,0);-webkit-transform:matrix(0.276155,-0.004418,0.003999,0.249968,0,0);}
.m3a_c00407{transform:matrix(0.277050,-0.004433,0.003999,0.249968,0,0);-ms-transform:matrix(0.277050,-0.004433,0.003999,0.249968,0,0);-webkit-transform:matrix(0.277050,-0.004433,0.003999,0.249968,0,0);}
.m33_c00407{transform:matrix(0.277819,-0.004445,0.003999,0.249968,0,0);-ms-transform:matrix(0.277819,-0.004445,0.003999,0.249968,0,0);-webkit-transform:matrix(0.277819,-0.004445,0.003999,0.249968,0,0);}
.m27_c00407{transform:matrix(0.282229,-0.004516,0.003999,0.249968,0,0);-ms-transform:matrix(0.282229,-0.004516,0.003999,0.249968,0,0);-webkit-transform:matrix(0.282229,-0.004516,0.003999,0.249968,0,0);}
.m13_c00407{transform:matrix(0.283319,-0.004533,0.003999,0.249968,0,0);-ms-transform:matrix(0.283319,-0.004533,0.003999,0.249968,0,0);-webkit-transform:matrix(0.283319,-0.004533,0.003999,0.249968,0,0);}
.m2b_c00407{transform:matrix(0.284254,-0.004548,0.003999,0.249968,0,0);-ms-transform:matrix(0.284254,-0.004548,0.003999,0.249968,0,0);-webkit-transform:matrix(0.284254,-0.004548,0.003999,0.249968,0,0);}
.m31_c00407{transform:matrix(0.290458,-0.004647,0.003999,0.249968,0,0);-ms-transform:matrix(0.290458,-0.004647,0.003999,0.249968,0,0);-webkit-transform:matrix(0.290458,-0.004647,0.003999,0.249968,0,0);}
.m2a_c00407{transform:matrix(0.294547,-0.004713,0.003999,0.249968,0,0);-ms-transform:matrix(0.294547,-0.004713,0.003999,0.249968,0,0);-webkit-transform:matrix(0.294547,-0.004713,0.003999,0.249968,0,0);}
.m88_c00407{transform:matrix(0.297186,-0.005647,0.004749,0.249955,0,0);-ms-transform:matrix(0.297186,-0.005647,0.004749,0.249955,0,0);-webkit-transform:matrix(0.297186,-0.005647,0.004749,0.249955,0,0);}
.ma_c00407{transform:matrix(0.299397,-0.004790,0.003999,0.249968,0,0);-ms-transform:matrix(0.299397,-0.004790,0.003999,0.249968,0,0);-webkit-transform:matrix(0.299397,-0.004790,0.003999,0.249968,0,0);}
.m28_c00407{transform:matrix(0.301231,-0.004820,0.003999,0.249968,0,0);-ms-transform:matrix(0.301231,-0.004820,0.003999,0.249968,0,0);-webkit-transform:matrix(0.301231,-0.004820,0.003999,0.249968,0,0);}
.m89_c00407{transform:matrix(0.303525,-0.005767,0.004749,0.249955,0,0);-ms-transform:matrix(0.303525,-0.005767,0.004749,0.249955,0,0);-webkit-transform:matrix(0.303525,-0.005767,0.004749,0.249955,0,0);}
.m2d_c00407{transform:matrix(0.310110,-0.004962,0.003999,0.249968,0,0);-ms-transform:matrix(0.310110,-0.004962,0.003999,0.249968,0,0);-webkit-transform:matrix(0.310110,-0.004962,0.003999,0.249968,0,0);}
.m2c_c00407{transform:matrix(0.311155,-0.004978,0.003999,0.249968,0,0);-ms-transform:matrix(0.311155,-0.004978,0.003999,0.249968,0,0);-webkit-transform:matrix(0.311155,-0.004978,0.003999,0.249968,0,0);}
.m22_c00407{transform:matrix(0.315405,-0.005046,0.003999,0.249968,0,0);-ms-transform:matrix(0.315405,-0.005046,0.003999,0.249968,0,0);-webkit-transform:matrix(0.315405,-0.005046,0.003999,0.249968,0,0);}
.m29_c00407{transform:matrix(0.315885,-0.005054,0.003999,0.249968,0,0);-ms-transform:matrix(0.315885,-0.005054,0.003999,0.249968,0,0);-webkit-transform:matrix(0.315885,-0.005054,0.003999,0.249968,0,0);}
.m69_c00407{transform:matrix(0.321444,-0.004500,0.003500,0.249976,0,0);-ms-transform:matrix(0.321444,-0.004500,0.003500,0.249976,0,0);-webkit-transform:matrix(0.321444,-0.004500,0.003500,0.249976,0,0);}
.m14_c00407{transform:matrix(0.334442,-0.005351,0.003999,0.249968,0,0);-ms-transform:matrix(0.334442,-0.005351,0.003999,0.249968,0,0);-webkit-transform:matrix(0.334442,-0.005351,0.003999,0.249968,0,0);}
.m8a_c00407{transform:matrix(0.335609,-0.006377,0.004749,0.249955,0,0);-ms-transform:matrix(0.335609,-0.006377,0.004749,0.249955,0,0);-webkit-transform:matrix(0.335609,-0.006377,0.004749,0.249955,0,0);}
.m49_c00407{transform:matrix(0.375906,-0.003759,0.002500,0.249988,0,0);-ms-transform:matrix(0.375906,-0.003759,0.002500,0.249988,0,0);-webkit-transform:matrix(0.375906,-0.003759,0.002500,0.249988,0,0);}
.m2f_c00407{transform:matrix(0.438019,-0.007008,0.003999,0.249968,0,0);-ms-transform:matrix(0.438019,-0.007008,0.003999,0.249968,0,0);-webkit-transform:matrix(0.438019,-0.007008,0.003999,0.249968,0,0);}
.m7d_c00407{transform:matrix(0.452873,-0.008605,0.004749,0.249955,0,0);-ms-transform:matrix(0.452873,-0.008605,0.004749,0.249955,0,0);-webkit-transform:matrix(0.452873,-0.008605,0.004749,0.249955,0,0);}
.m3e_c00407{transform:matrix(0.459076,-0.007345,0.003999,0.249968,0,0);-ms-transform:matrix(0.459076,-0.007345,0.003999,0.249968,0,0);-webkit-transform:matrix(0.459076,-0.007345,0.003999,0.249968,0,0);}
.m97_c00407{transform:matrix(0.470260,-0.008935,0.004749,0.249955,0,0);-ms-transform:matrix(0.470260,-0.008935,0.004749,0.249955,0,0);-webkit-transform:matrix(0.470260,-0.008935,0.004749,0.249955,0,0);}
.m64_c00407{transform:matrix(0.588222,-0.008235,0.003500,0.249976,0,0);-ms-transform:matrix(0.588222,-0.008235,0.003500,0.249976,0,0);-webkit-transform:matrix(0.588222,-0.008235,0.003500,0.249976,0,0);}
.m56_c00407{transform:matrix(0.597855,-0.005979,0.002500,0.249988,0,0);-ms-transform:matrix(0.597855,-0.005979,0.002500,0.249988,0,0);-webkit-transform:matrix(0.597855,-0.005979,0.002500,0.249988,0,0);}
.m63_c00407{transform:matrix(0.858211,-0.012015,0.003500,0.249976,0,0);-ms-transform:matrix(0.858211,-0.012015,0.003500,0.249976,0,0);-webkit-transform:matrix(0.858211,-0.012015,0.003500,0.249976,0,0);}
.m24_c00407{transform:matrix(0.978510,-0.015656,0.003999,0.249968,0,0);-ms-transform:matrix(0.978510,-0.015656,0.003999,0.249968,0,0);-webkit-transform:matrix(0.978510,-0.015656,0.003999,0.249968,0,0);}
.v0_c00407{vertical-align:0.000000px;}
.ls0_c00407{letter-spacing:0.000000px;}
.sc__c00407{text-shadow:none;}
.sc0_c00407{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__c00407{-webkit-text-stroke:0px transparent;}
.sc0_c00407{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00407{word-spacing:0.000000px;}
.fc0_c00407{color:transparent;}
.fs7_c00407{font-size:18.000000px;}
.fs3_c00407{font-size:72.009215px;}
.fs8_c00407{font-size:78.007644px;}
.fsa_c00407{font-size:78.014078px;}
.fs4_c00407{font-size:84.010751px;}
.fs9_c00407{font-size:84.015161px;}
.fs6_c00407{font-size:90.004500px;}
.fs5_c00407{font-size:96.012287px;}
.fs0_c00407{font-size:102.006171px;}
.fs1_c00407{font-size:102.013055px;}
.fs2_c00407{font-size:120.015359px;}
.y0_c00407{bottom:0.000000px;}
.y8b_c00407{bottom:778.223068px;}
.y8c_c00407{bottom:778.882990px;}
.y8d_c00407{bottom:779.547501px;}
.y8e_c00407{bottom:780.697338px;}
.y8f_c00407{bottom:781.065663px;}
.y90_c00407{bottom:781.706326px;}
.y91_c00407{bottom:782.094270px;}
.y92_c00407{bottom:782.993040px;}
.y93_c00407{bottom:783.465930px;}
.y94_c00407{bottom:784.287117px;}
.y95_c00407{bottom:784.848630px;}
.y96_c00407{bottom:786.165271px;}
.y97_c00407{bottom:786.901921px;}
.y98_c00407{bottom:788.909115px;}
.y99_c00407{bottom:789.667806px;}
.y7e_c00407{bottom:814.869165px;}
.y7f_c00407{bottom:816.051217px;}
.y80_c00407{bottom:817.105023px;}
.y81_c00407{bottom:818.366524px;}
.y82_c00407{bottom:819.075417px;}
.y83_c00407{bottom:819.589887px;}
.y84_c00407{bottom:820.816452px;}
.y85_c00407{bottom:821.339283px;}
.y86_c00407{bottom:822.226599px;}
.y87_c00407{bottom:823.643938px;}
.y88_c00407{bottom:824.536879px;}
.y89_c00407{bottom:825.218779px;}
.y8a_c00407{bottom:826.085629px;}
.y72_c00407{bottom:848.176500px;}
.y73_c00407{bottom:848.655072px;}
.y74_c00407{bottom:850.769116px;}
.y75_c00407{bottom:853.075450px;}
.y76_c00407{bottom:854.152266px;}
.y77_c00407{bottom:854.751393px;}
.y78_c00407{bottom:856.212987px;}
.y79_c00407{bottom:856.865637px;}
.y7a_c00407{bottom:858.315517px;}
.y7b_c00407{bottom:858.958392px;}
.y7c_c00407{bottom:859.799569px;}
.y7d_c00407{bottom:860.867521px;}
.y64_c00407{bottom:886.224000px;}
.y65_c00407{bottom:886.861770px;}
.y66_c00407{bottom:887.789172px;}
.y67_c00407{bottom:888.418752px;}
.y68_c00407{bottom:889.354134px;}
.y69_c00407{bottom:889.841397px;}
.y6a_c00407{bottom:890.429523px;}
.y6b_c00407{bottom:891.365178px;}
.y6c_c00407{bottom:892.287351px;}
.y6d_c00407{bottom:892.767264px;}
.y6e_c00407{bottom:893.213472px;}
.y6f_c00407{bottom:893.836962px;}
.y70_c00407{bottom:894.323238px;}
.y71_c00407{bottom:895.286970px;}
.y63_c00407{bottom:907.470000px;}
.y57_c00407{bottom:924.503205px;}
.y58_c00407{bottom:925.640835px;}
.y59_c00407{bottom:926.388750px;}
.y5a_c00407{bottom:927.116325px;}
.y5b_c00407{bottom:927.609585px;}
.y5c_c00407{bottom:928.324335px;}
.y5d_c00407{bottom:928.692375px;}
.y5e_c00407{bottom:929.782065px;}
.y5f_c00407{bottom:930.403740px;}
.y60_c00407{bottom:931.139025px;}
.y61_c00407{bottom:931.463865px;}
.y4a_c00407{bottom:959.680500px;}
.y4b_c00407{bottom:960.217800px;}
.y4c_c00407{bottom:960.574485px;}
.y4d_c00407{bottom:961.446570px;}
.y4e_c00407{bottom:961.759920px;}
.y4f_c00407{bottom:962.345730px;}
.y50_c00407{bottom:962.649120px;}
.y51_c00407{bottom:962.977290px;}
.y52_c00407{bottom:963.417555px;}
.y53_c00407{bottom:964.532430px;}
.y54_c00407{bottom:964.848645px;}
.y55_c00407{bottom:965.747460px;}
.y56_c00407{bottom:966.010665px;}
.y3f_c00407{bottom:993.296676px;}
.y40_c00407{bottom:993.875748px;}
.y41_c00407{bottom:995.645016px;}
.y42_c00407{bottom:996.123612px;}
.y43_c00407{bottom:997.124604px;}
.y44_c00407{bottom:997.635144px;}
.y45_c00407{bottom:998.116956px;}
.y46_c00407{bottom:999.325572px;}
.y47_c00407{bottom:1000.615992px;}
.y48_c00407{bottom:1001.095620px;}
.y49_c00407{bottom:1002.659628px;}
.y2f_c00407{bottom:1030.582524px;}
.y30_c00407{bottom:1030.976244px;}
.y31_c00407{bottom:1031.839308px;}
.y32_c00407{bottom:1033.094904px;}
.y33_c00407{bottom:1033.710684px;}
.y34_c00407{bottom:1034.655636px;}
.y35_c00407{bottom:1035.427944px;}
.y36_c00407{bottom:1036.195020px;}
.y37_c00407{bottom:1036.652292px;}
.y38_c00407{bottom:1037.589312px;}
.y39_c00407{bottom:1038.039084px;}
.y3a_c00407{bottom:1038.523356px;}
.y3b_c00407{bottom:1038.977496px;}
.y3c_c00407{bottom:1039.677276px;}
.y3d_c00407{bottom:1040.530056px;}
.y3e_c00407{bottom:1041.116688px;}
.y23_c00407{bottom:1069.462380px;}
.y24_c00407{bottom:1069.905588px;}
.y25_c00407{bottom:1070.374320px;}
.y26_c00407{bottom:1070.865852px;}
.y27_c00407{bottom:1071.227388px;}
.y28_c00407{bottom:1072.019664px;}
.y29_c00407{bottom:1072.689720px;}
.y2a_c00407{bottom:1073.336004px;}
.y2b_c00407{bottom:1073.791608px;}
.y2c_c00407{bottom:1074.053412px;}
.y2d_c00407{bottom:1074.764364px;}
.y2e_c00407{bottom:1075.470900px;}
.y13_c00407{bottom:1100.255232px;}
.y14_c00407{bottom:1101.571308px;}
.y15_c00407{bottom:1101.922104px;}
.y16_c00407{bottom:1103.900076px;}
.y17_c00407{bottom:1105.832016px;}
.y18_c00407{bottom:1107.461508px;}
.y19_c00407{bottom:1108.415784px;}
.y1a_c00407{bottom:1109.693712px;}
.y1b_c00407{bottom:1110.663744px;}
.y1c_c00407{bottom:1112.823468px;}
.y1d_c00407{bottom:1113.833652px;}
.y1e_c00407{bottom:1115.781780px;}
.y1f_c00407{bottom:1117.697148px;}
.y20_c00407{bottom:1118.544096px;}
.y21_c00407{bottom:1120.179900px;}
.y62_c00407{bottom:1122.930000px;}
.y22_c00407{bottom:1125.709020px;}
.y6_c00407{bottom:1137.435000px;}
.y7_c00407{bottom:1138.067376px;}
.y8_c00407{bottom:1139.133648px;}
.y9_c00407{bottom:1139.670984px;}
.ya_c00407{bottom:1141.464384px;}
.yb_c00407{bottom:1142.975640px;}
.yc_c00407{bottom:1143.942984px;}
.yd_c00407{bottom:1144.452672px;}
.ye_c00407{bottom:1145.072280px;}
.yf_c00407{bottom:1146.236880px;}
.y10_c00407{bottom:1146.854976px;}
.y11_c00407{bottom:1147.999152px;}
.y12_c00407{bottom:1150.946808px;}
.y1_c00407{bottom:1223.370000px;}
.y2_c00407{bottom:1228.092119px;}
.y3_c00407{bottom:1228.506681px;}
.y4_c00407{bottom:1230.278748px;}
.y5_c00407{bottom:1232.797803px;}
.h9_c00407{height:18.000000px;}
.h5_c00407{height:72.009215px;}
.ha_c00407{height:78.007644px;}
.hc_c00407{height:78.014078px;}
.h6_c00407{height:84.010751px;}
.hb_c00407{height:84.015161px;}
.h8_c00407{height:90.004500px;}
.h7_c00407{height:96.012287px;}
.h2_c00407{height:102.006171px;}
.h3_c00407{height:102.013055px;}
.h4_c00407{height:120.015359px;}
.h1_c00407{height:1251.000000px;}
.h0_c00407{height:1251.150000px;}
.w0_c00407{width:915.000000px;}
.x0_c00407{left:0.000000px;}
.x1_c00407{left:9.186000px;}
.x57_c00407{left:15.120000px;}
.x13_c00407{left:16.292544px;}
.x65_c00407{left:32.833500px;}
.x2c_c00407{left:36.625428px;}
.x59_c00407{left:44.521500px;}
.x6_c00407{left:56.068500px;}
.x66_c00407{left:58.021500px;}
.x14_c00407{left:61.694112px;}
.x4f_c00407{left:62.818620px;}
.x43_c00407{left:68.997000px;}
.x15_c00407{left:73.772592px;}
.x58_c00407{left:75.060000px;}
.x5a_c00407{left:90.076500px;}
.x3a_c00407{left:93.702492px;}
.x7_c00407{left:95.592000px;}
.x2d_c00407{left:98.256396px;}
.x23_c00407{left:114.238584px;}
.x44_c00407{left:122.727000px;}
.x7b_c00407{left:135.252940px;}
.x6f_c00407{left:136.913719px;}
.x16_c00407{left:141.975408px;}
.x5b_c00407{left:156.319500px;}
.x45_c00407{left:158.395500px;}
.x8_c00407{left:162.234000px;}
.x50_c00407{left:166.230585px;}
.x67_c00407{left:169.287000px;}
.x24_c00407{left:175.623432px;}
.x2e_c00407{left:187.890252px;}
.x9_c00407{left:195.817500px;}
.x5c_c00407{left:201.289500px;}
.x70_c00407{left:202.801981px;}
.x17_c00407{left:208.614060px;}
.x3b_c00407{left:211.689888px;}
.x25_c00407{left:220.725192px;}
.x7c_c00407{left:224.554332px;}
.x2f_c00407{left:231.909168px;}
.x51_c00407{left:234.271410px;}
.x3c_c00407{left:243.571392px;}
.x46_c00407{left:245.604000px;}
.x7d_c00407{left:262.222257px;}
.x18_c00407{left:264.789372px;}
.x5d_c00407{left:268.102500px;}
.x47_c00407{left:276.939000px;}
.x71_c00407{left:281.674984px;}
.x7e_c00407{left:285.009612px;}
.x68_c00407{left:290.673000px;}
.x19_c00407{left:297.706032px;}
.x30_c00407{left:299.408328px;}
.x52_c00407{left:300.428250px;}
.x5e_c00407{left:302.907000px;}
.xa_c00407{left:307.905000px;}
.x3d_c00407{left:310.259448px;}
.x26_c00407{left:319.848888px;}
.x72_c00407{left:325.934992px;}
.x48_c00407{left:335.520000px;}
.x7f_c00407{left:337.841607px;}
.x1a_c00407{left:341.754864px;}
.x3e_c00407{left:344.325000px;}
.x69_c00407{left:347.347500px;}
.x31_c00407{left:354.523080px;}
.x73_c00407{left:358.066816px;}
.x49_c00407{left:365.859000px;}
.x1b_c00407{left:375.187404px;}
.x3f_c00407{left:376.407504px;}
.x6a_c00407{left:378.880500px;}
.x4a_c00407{left:398.676000px;}
.xb_c00407{left:402.358500px;}
.x27_c00407{left:403.550592px;}
.x32_c00407{left:409.310832px;}
.x5f_c00407{left:411.748500px;}
.x80_c00407{left:413.927485px;}
.x74_c00407{left:434.706177px;}
.x2_c00407{left:438.469500px;}
.x33_c00407{left:442.016388px;}
.x53_c00407{left:443.781825px;}
.x81_c00407{left:446.955739px;}
.x1c_c00407{left:449.685924px;}
.x6b_c00407{left:455.806500px;}
.x40_c00407{left:457.009800px;}
.xc_c00407{left:462.817500px;}
.x75_c00407{left:467.357029px;}
.x3_c00407{left:476.157000px;}
.x60_c00407{left:477.618000px;}
.x1d_c00407{left:484.502676px;}
.x6c_c00407{left:490.156500px;}
.xd_c00407{left:494.673000px;}
.x34_c00407{left:508.926024px;}
.x61_c00407{left:511.897500px;}
.x76_c00407{left:522.824193px;}
.x82_c00407{left:524.387175px;}
.xe_c00407{left:533.398500px;}
.x28_c00407{left:541.248708px;}
.x41_c00407{left:543.006168px;}
.x1e_c00407{left:551.684208px;}
.x4b_c00407{left:554.190000px;}
.x6d_c00407{left:566.466000px;}
.x83_c00407{left:567.738828px;}
.x29_c00407{left:574.021908px;}
.x35_c00407{left:575.649660px;}
.x4c_c00407{left:585.811500px;}
.x62_c00407{left:588.304500px;}
.x54_c00407{left:599.316765px;}
.xf_c00407{left:606.186000px;}
.x36_c00407{left:608.065692px;}
.x77_c00407{left:611.399737px;}
.x1f_c00407{left:617.755980px;}
.x63_c00407{left:623.038500px;}
.x4_c00407{left:637.254000px;}
.x10_c00407{left:644.817000px;}
.x20_c00407{left:646.965408px;}
.x37_c00407{left:658.084800px;}
.x2a_c00407{left:662.905284px;}
.x55_c00407{left:666.094590px;}
.x78_c00407{left:667.241929px;}
.x4d_c00407{left:675.693000px;}
.x42_c00407{left:679.266852px;}
.x84_c00407{left:685.779802px;}
.x64_c00407{left:691.876500px;}
.x56_c00407{left:695.578290px;}
.x6e_c00407{left:700.782000px;}
.x4e_c00407{left:702.013500px;}
.x21_c00407{left:703.347672px;}
.x79_c00407{left:709.844352px;}
.x11_c00407{left:716.328000px;}
.x38_c00407{left:718.979244px;}
.x85_c00407{left:730.370484px;}
.x2b_c00407{left:751.137564px;}
.x39_c00407{left:760.895088px;}
.x7a_c00407{left:763.997430px;}
.x5_c00407{left:866.259000px;}
.x22_c00407{left:894.003024px;}
.x12_c00407{left:900.556500px;}
@media print{
.v0_c00407{vertical-align:0.000000pt;}
.ls0_c00407{letter-spacing:0.000000pt;}
.ws0_c00407{word-spacing:0.000000pt;}
.fs7_c00407{font-size:16.000000pt;}
.fs3_c00407{font-size:64.008191pt;}
.fs8_c00407{font-size:69.340128pt;}
.fsa_c00407{font-size:69.345847pt;}
.fs4_c00407{font-size:74.676223pt;}
.fs9_c00407{font-size:74.680143pt;}
.fs6_c00407{font-size:80.004000pt;}
.fs5_c00407{font-size:85.344255pt;}
.fs0_c00407{font-size:90.672152pt;}
.fs1_c00407{font-size:90.678271pt;}
.fs2_c00407{font-size:106.680319pt;}
.y0_c00407{bottom:0.000000pt;}
.y8b_c00407{bottom:691.753839pt;}
.y8c_c00407{bottom:692.340436pt;}
.y8d_c00407{bottom:692.931112pt;}
.y8e_c00407{bottom:693.953189pt;}
.y8f_c00407{bottom:694.280589pt;}
.y90_c00407{bottom:694.850068pt;}
.y91_c00407{bottom:695.194907pt;}
.y92_c00407{bottom:695.993813pt;}
.y93_c00407{bottom:696.414160pt;}
.y94_c00407{bottom:697.144104pt;}
.y95_c00407{bottom:697.643227pt;}
.y96_c00407{bottom:698.813575pt;}
.y97_c00407{bottom:699.468375pt;}
.y98_c00407{bottom:701.252547pt;}
.y99_c00407{bottom:701.926939pt;}
.y7e_c00407{bottom:724.328147pt;}
.y7f_c00407{bottom:725.378860pt;}
.y80_c00407{bottom:726.315576pt;}
.y81_c00407{bottom:727.436911pt;}
.y82_c00407{bottom:728.067037pt;}
.y83_c00407{bottom:728.524344pt;}
.y84_c00407{bottom:729.614624pt;}
.y85_c00407{bottom:730.079363pt;}
.y86_c00407{bottom:730.868088pt;}
.y87_c00407{bottom:732.127945pt;}
.y88_c00407{bottom:732.921671pt;}
.y89_c00407{bottom:733.527804pt;}
.y8a_c00407{bottom:734.298337pt;}
.y72_c00407{bottom:753.934667pt;}
.y73_c00407{bottom:754.360064pt;}
.y74_c00407{bottom:756.239215pt;}
.y75_c00407{bottom:758.289289pt;}
.y76_c00407{bottom:759.246459pt;}
.y77_c00407{bottom:759.779016pt;}
.y78_c00407{bottom:761.078211pt;}
.y79_c00407{bottom:761.658344pt;}
.y7a_c00407{bottom:762.947127pt;}
.y7b_c00407{bottom:763.518571pt;}
.y7c_c00407{bottom:764.266284pt;}
.y7d_c00407{bottom:765.215575pt;}
.y64_c00407{bottom:787.754667pt;}
.y65_c00407{bottom:788.321573pt;}
.y66_c00407{bottom:789.145931pt;}
.y67_c00407{bottom:789.705557pt;}
.y68_c00407{bottom:790.537008pt;}
.y69_c00407{bottom:790.970131pt;}
.y6a_c00407{bottom:791.492909pt;}
.y6b_c00407{bottom:792.324603pt;}
.y6c_c00407{bottom:793.144312pt;}
.y6d_c00407{bottom:793.570901pt;}
.y6e_c00407{bottom:793.967531pt;}
.y6f_c00407{bottom:794.521744pt;}
.y70_c00407{bottom:794.953989pt;}
.y71_c00407{bottom:795.810640pt;}
.y63_c00407{bottom:806.640000pt;}
.y57_c00407{bottom:821.780627pt;}
.y58_c00407{bottom:822.791853pt;}
.y59_c00407{bottom:823.456667pt;}
.y5a_c00407{bottom:824.103400pt;}
.y5b_c00407{bottom:824.541853pt;}
.y5c_c00407{bottom:825.177187pt;}
.y5d_c00407{bottom:825.504333pt;}
.y5e_c00407{bottom:826.472947pt;}
.y5f_c00407{bottom:827.025547pt;}
.y60_c00407{bottom:827.679133pt;}
.y61_c00407{bottom:827.967880pt;}
.y4a_c00407{bottom:853.049333pt;}
.y4b_c00407{bottom:853.526933pt;}
.y4c_c00407{bottom:853.843987pt;}
.y4d_c00407{bottom:854.619173pt;}
.y4e_c00407{bottom:854.897707pt;}
.y4f_c00407{bottom:855.418427pt;}
.y50_c00407{bottom:855.688107pt;}
.y51_c00407{bottom:855.979813pt;}
.y52_c00407{bottom:856.371160pt;}
.y53_c00407{bottom:857.362160pt;}
.y54_c00407{bottom:857.643240pt;}
.y55_c00407{bottom:858.442187pt;}
.y56_c00407{bottom:858.676147pt;}
.y3f_c00407{bottom:882.930379pt;}
.y40_c00407{bottom:883.445109pt;}
.y41_c00407{bottom:885.017792pt;}
.y42_c00407{bottom:885.443211pt;}
.y43_c00407{bottom:886.332981pt;}
.y44_c00407{bottom:886.786795pt;}
.y45_c00407{bottom:887.215072pt;}
.y46_c00407{bottom:888.289397pt;}
.y47_c00407{bottom:889.436437pt;}
.y48_c00407{bottom:889.862773pt;}
.y49_c00407{bottom:891.253003pt;}
.y2f_c00407{bottom:916.073355pt;}
.y30_c00407{bottom:916.423328pt;}
.y31_c00407{bottom:917.190496pt;}
.y32_c00407{bottom:918.306581pt;}
.y33_c00407{bottom:918.853941pt;}
.y34_c00407{bottom:919.693899pt;}
.y35_c00407{bottom:920.380395pt;}
.y36_c00407{bottom:921.062240pt;}
.y37_c00407{bottom:921.468704pt;}
.y38_c00407{bottom:922.301611pt;}
.y39_c00407{bottom:922.701408pt;}
.y3a_c00407{bottom:923.131872pt;}
.y3b_c00407{bottom:923.535552pt;}
.y3c_c00407{bottom:924.157579pt;}
.y3d_c00407{bottom:924.915605pt;}
.y3e_c00407{bottom:925.437056pt;}
.y23_c00407{bottom:950.633227pt;}
.y24_c00407{bottom:951.027189pt;}
.y25_c00407{bottom:951.443840pt;}
.y26_c00407{bottom:951.880757pt;}
.y27_c00407{bottom:952.202123pt;}
.y28_c00407{bottom:952.906368pt;}
.y29_c00407{bottom:953.501973pt;}
.y2a_c00407{bottom:954.076448pt;}
.y2b_c00407{bottom:954.481429pt;}
.y2c_c00407{bottom:954.714144pt;}
.y2d_c00407{bottom:955.346101pt;}
.y2e_c00407{bottom:955.974133pt;}
.y13_c00407{bottom:978.004651pt;}
.y14_c00407{bottom:979.174496pt;}
.y15_c00407{bottom:979.486315pt;}
.y16_c00407{bottom:981.244512pt;}
.y17_c00407{bottom:982.961792pt;}
.y18_c00407{bottom:984.410229pt;}
.y19_c00407{bottom:985.258475pt;}
.y1a_c00407{bottom:986.394411pt;}
.y1b_c00407{bottom:987.256661pt;}
.y1c_c00407{bottom:989.176416pt;}
.y1d_c00407{bottom:990.074357pt;}
.y1e_c00407{bottom:991.806027pt;}
.y1f_c00407{bottom:993.508576pt;}
.y20_c00407{bottom:994.261419pt;}
.y21_c00407{bottom:995.715467pt;}
.y62_c00407{bottom:998.160000pt;}
.y22_c00407{bottom:1000.630240pt;}
.y6_c00407{bottom:1011.053333pt;}
.y7_c00407{bottom:1011.615445pt;}
.y8_c00407{bottom:1012.563243pt;}
.y9_c00407{bottom:1013.040875pt;}
.ya_c00407{bottom:1014.635008pt;}
.yb_c00407{bottom:1015.978347pt;}
.yc_c00407{bottom:1016.838208pt;}
.yd_c00407{bottom:1017.291264pt;}
.ye_c00407{bottom:1017.842027pt;}
.yf_c00407{bottom:1018.877227pt;}
.y10_c00407{bottom:1019.426645pt;}
.y11_c00407{bottom:1020.443691pt;}
.y12_c00407{bottom:1023.063829pt;}
.y1_c00407{bottom:1087.440000pt;}
.y2_c00407{bottom:1091.637439pt;}
.y3_c00407{bottom:1092.005939pt;}
.y4_c00407{bottom:1093.581109pt;}
.y5_c00407{bottom:1095.820269pt;}
.h9_c00407{height:16.000000pt;}
.h5_c00407{height:64.008191pt;}
.ha_c00407{height:69.340128pt;}
.hc_c00407{height:69.345847pt;}
.h6_c00407{height:74.676223pt;}
.hb_c00407{height:74.680143pt;}
.h8_c00407{height:80.004000pt;}
.h7_c00407{height:85.344255pt;}
.h2_c00407{height:90.672152pt;}
.h3_c00407{height:90.678271pt;}
.h4_c00407{height:106.680319pt;}
.h1_c00407{height:1112.000000pt;}
.h0_c00407{height:1112.133333pt;}
.w0_c00407{width:813.333333pt;}
.x0_c00407{left:0.000000pt;}
.x1_c00407{left:8.165333pt;}
.x57_c00407{left:13.440000pt;}
.x13_c00407{left:14.482261pt;}
.x65_c00407{left:29.185333pt;}
.x2c_c00407{left:32.555936pt;}
.x59_c00407{left:39.574667pt;}
.x6_c00407{left:49.838667pt;}
.x66_c00407{left:51.574667pt;}
.x14_c00407{left:54.839211pt;}
.x4f_c00407{left:55.838773pt;}
.x43_c00407{left:61.330667pt;}
.x15_c00407{left:65.575637pt;}
.x58_c00407{left:66.720000pt;}
.x5a_c00407{left:80.068000pt;}
.x3a_c00407{left:83.291104pt;}
.x7_c00407{left:84.970667pt;}
.x2d_c00407{left:87.339019pt;}
.x23_c00407{left:101.545408pt;}
.x44_c00407{left:109.090667pt;}
.x7b_c00407{left:120.224836pt;}
.x6f_c00407{left:121.701084pt;}
.x16_c00407{left:126.200363pt;}
.x5b_c00407{left:138.950667pt;}
.x45_c00407{left:140.796000pt;}
.x8_c00407{left:144.208000pt;}
.x50_c00407{left:147.760520pt;}
.x67_c00407{left:150.477333pt;}
.x24_c00407{left:156.109717pt;}
.x2e_c00407{left:167.013557pt;}
.x9_c00407{left:174.060000pt;}
.x5c_c00407{left:178.924000pt;}
.x70_c00407{left:180.268428pt;}
.x17_c00407{left:185.434720pt;}
.x3b_c00407{left:188.168789pt;}
.x25_c00407{left:196.200171pt;}
.x7c_c00407{left:199.603851pt;}
.x2f_c00407{left:206.141483pt;}
.x51_c00407{left:208.241253pt;}
.x3c_c00407{left:216.507904pt;}
.x46_c00407{left:218.314667pt;}
.x7d_c00407{left:233.086451pt;}
.x18_c00407{left:235.368331pt;}
.x5d_c00407{left:238.313333pt;}
.x47_c00407{left:246.168000pt;}
.x71_c00407{left:250.377764pt;}
.x7e_c00407{left:253.341877pt;}
.x68_c00407{left:258.376000pt;}
.x19_c00407{left:264.627584pt;}
.x30_c00407{left:266.140736pt;}
.x52_c00407{left:267.047333pt;}
.x5e_c00407{left:269.250667pt;}
.xa_c00407{left:273.693333pt;}
.x3d_c00407{left:275.786176pt;}
.x26_c00407{left:284.310123pt;}
.x72_c00407{left:289.719993pt;}
.x48_c00407{left:298.240000pt;}
.x7f_c00407{left:300.303651pt;}
.x1a_c00407{left:303.782101pt;}
.x3e_c00407{left:306.066667pt;}
.x69_c00407{left:308.753333pt;}
.x31_c00407{left:315.131627pt;}
.x73_c00407{left:318.281615pt;}
.x49_c00407{left:325.208000pt;}
.x1b_c00407{left:333.499915pt;}
.x3f_c00407{left:334.584448pt;}
.x6a_c00407{left:336.782667pt;}
.x4a_c00407{left:354.378667pt;}
.xb_c00407{left:357.652000pt;}
.x27_c00407{left:358.711637pt;}
.x32_c00407{left:363.831851pt;}
.x5f_c00407{left:365.998667pt;}
.x80_c00407{left:367.935543pt;}
.x74_c00407{left:386.405491pt;}
.x2_c00407{left:389.750667pt;}
.x33_c00407{left:392.903456pt;}
.x53_c00407{left:394.472733pt;}
.x81_c00407{left:397.293991pt;}
.x1c_c00407{left:399.720821pt;}
.x6b_c00407{left:405.161333pt;}
.x40_c00407{left:406.230933pt;}
.xc_c00407{left:411.393333pt;}
.x75_c00407{left:415.428471pt;}
.x3_c00407{left:423.250667pt;}
.x60_c00407{left:424.549333pt;}
.x1d_c00407{left:430.669045pt;}
.x6c_c00407{left:435.694667pt;}
.xd_c00407{left:439.709333pt;}
.x34_c00407{left:452.378688pt;}
.x61_c00407{left:455.020000pt;}
.x76_c00407{left:464.732616pt;}
.x82_c00407{left:466.121933pt;}
.xe_c00407{left:474.132000pt;}
.x28_c00407{left:481.109963pt;}
.x41_c00407{left:482.672149pt;}
.x1e_c00407{left:490.385963pt;}
.x4b_c00407{left:492.613333pt;}
.x6d_c00407{left:503.525333pt;}
.x83_c00407{left:504.656736pt;}
.x29_c00407{left:510.241696pt;}
.x35_c00407{left:511.688587pt;}
.x4c_c00407{left:520.721333pt;}
.x62_c00407{left:522.937333pt;}
.x54_c00407{left:532.726013pt;}
.xf_c00407{left:538.832000pt;}
.x36_c00407{left:540.502837pt;}
.x77_c00407{left:543.466433pt;}
.x1f_c00407{left:549.116427pt;}
.x63_c00407{left:553.812000pt;}
.x4_c00407{left:566.448000pt;}
.x10_c00407{left:573.170667pt;}
.x20_c00407{left:575.080363pt;}
.x37_c00407{left:584.964267pt;}
.x2a_c00407{left:589.249141pt;}
.x55_c00407{left:592.084080pt;}
.x78_c00407{left:593.103937pt;}
.x4d_c00407{left:600.616000pt;}
.x42_c00407{left:603.792757pt;}
.x84_c00407{left:609.582047pt;}
.x64_c00407{left:615.001333pt;}
.x56_c00407{left:618.291813pt;}
.x6e_c00407{left:622.917333pt;}
.x4e_c00407{left:624.012000pt;}
.x21_c00407{left:625.197931pt;}
.x79_c00407{left:630.972757pt;}
.x11_c00407{left:636.736000pt;}
.x38_c00407{left:639.092661pt;}
.x85_c00407{left:649.218208pt;}
.x2b_c00407{left:667.677835pt;}
.x39_c00407{left:676.351189pt;}
.x7a_c00407{left:679.108827pt;}
.x5_c00407{left:770.008000pt;}
.x22_c00407{left:794.669355pt;}
.x12_c00407{left:800.494667pt;}
}





/* 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_c00408 {
    display:none;
  }
  .loading-indicator_c00408.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00408 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_c00408 { 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_c00408" -> "#page-container .classname_c00408")
 */
.pf_c00408 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00408 { /* 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_c00408.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00408 { /* 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_c00408 { /* 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_c00408 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00408 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00408 {overflow:visible;}
  }
}
.c_c00408 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00408 { /* 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_c00408:after { /* webkit #35443 */
  content: '';
}
.t_c00408:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00408 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 */
}
.__c00408 { /* 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_c00408 { /* info for Javascript */
  display:none;
}
.l_c00408 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00408 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00408 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00408: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_c00408 {
    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_c00408.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00408.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_c00408 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00408{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00408;src:url('chunks/assets/font_dbd529e162d5851c7bfb6d27.woff2')format("woff");}.ff1_c00408{font-family:ff1_c00408;line-height:1.000000;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;}
.m11_c00408{transform:matrix(0.102920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102920,0.000000,0.000000,0.250000,0,0);}
.m3_c00408{transform:matrix(0.209474,0.002933,-0.003500,0.249976,0,0);-ms-transform:matrix(0.209474,0.002933,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.209474,0.002933,-0.003500,0.249976,0,0);}
.mf_c00408{transform:matrix(0.209935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209935,0.000000,0.000000,0.250000,0,0);}
.mb_c00408{transform:matrix(0.218440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218440,0.000000,0.000000,0.250000,0,0);}
.md_c00408{transform:matrix(0.222125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222125,0.000000,0.000000,0.250000,0,0);}
.m6_c00408{transform:matrix(0.223948,0.003135,-0.003500,0.249976,0,0);-ms-transform:matrix(0.223948,0.003135,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.223948,0.003135,-0.003500,0.249976,0,0);}
.me_c00408{transform:matrix(0.242460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242460,0.000000,0.000000,0.250000,0,0);}
.mc_c00408{transform:matrix(0.246740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246740,0.000000,0.000000,0.250000,0,0);}
.m8_c00408{transform:matrix(0.246916,0.003457,-0.003500,0.249976,0,0);-ms-transform:matrix(0.246916,0.003457,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.246916,0.003457,-0.003500,0.249976,0,0);}
.m9_c00408{transform:matrix(0.247191,0.003461,-0.003500,0.249976,0,0);-ms-transform:matrix(0.247191,0.003461,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.247191,0.003461,-0.003500,0.249976,0,0);}
.m0_c00408{transform:matrix(0.251330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251330,0.000000,0.000000,0.250000,0,0);}
.m10_c00408{transform:matrix(0.262925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262925,0.000000,0.000000,0.250000,0,0);}
.m7_c00408{transform:matrix(0.271168,0.003796,-0.003500,0.249976,0,0);-ms-transform:matrix(0.271168,0.003796,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.271168,0.003796,-0.003500,0.249976,0,0);}
.m1_c00408{transform:matrix(0.271280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271280,0.000000,0.000000,0.250000,0,0);}
.m2_c00408{transform:matrix(0.276018,0.003864,-0.003500,0.249976,0,0);-ms-transform:matrix(0.276018,0.003864,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.276018,0.003864,-0.003500,0.249976,0,0);}
.m4_c00408{transform:matrix(0.279298,0.003910,-0.003500,0.249976,0,0);-ms-transform:matrix(0.279298,0.003910,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.279298,0.003910,-0.003500,0.249976,0,0);}
.m5_c00408{transform:matrix(0.280078,0.003921,-0.003500,0.249976,0,0);-ms-transform:matrix(0.280078,0.003921,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.280078,0.003921,-0.003500,0.249976,0,0);}
.ma_c00408{transform:matrix(0.294956,0.004129,-0.003500,0.249976,0,0);-ms-transform:matrix(0.294956,0.004129,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.294956,0.004129,-0.003500,0.249976,0,0);}
.v0_c00408{vertical-align:0.000000px;}
.ls0_c00408{letter-spacing:0.000000px;}
.sc__c00408{text-shadow:none;}
.sc0_c00408{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__c00408{-webkit-text-stroke:0px transparent;}
.sc0_c00408{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00408{word-spacing:0.000000px;}
.fc0_c00408{color:transparent;}
.fs0_c00408{font-size:72.000000px;}
.fs1_c00408{font-size:72.007056px;}
.fs2_c00408{font-size:78.000000px;}
.y0_c00408{bottom:0.000000px;}
.yb_c00408{bottom:1063.293000px;}
.ya_c00408{bottom:1093.379736px;}
.y9_c00408{bottom:1094.000580px;}
.y8_c00408{bottom:1094.624490px;}
.y7_c00408{bottom:1095.860802px;}
.y6_c00408{bottom:1096.333260px;}
.y5_c00408{bottom:1098.189471px;}
.y4_c00408{bottom:1100.053095px;}
.y3_c00408{bottom:1100.362656px;}
.y2_c00408{bottom:1101.603000px;}
.y1_c00408{bottom:1135.201500px;}
.h2_c00408{height:72.000000px;}
.h3_c00408{height:72.007056px;}
.h4_c00408{height:78.000000px;}
.h1_c00408{height:1251.000000px;}
.h0_c00408{height:1251.150000px;}
.w0_c00408{width:915.000000px;}
.x0_c00408{left:0.000000px;}
.xc_c00408{left:143.370000px;}
.x1_c00408{left:144.450000px;}
.xd_c00408{left:186.840000px;}
.x2_c00408{left:208.440000px;}
.x3_c00408{left:251.718000px;}
.xe_c00408{left:262.710000px;}
.xf_c00408{left:296.190000px;}
.x4_c00408{left:340.314000px;}
.x5_c00408{left:362.425500px;}
.x10_c00408{left:373.410000px;}
.x11_c00408{left:405.270000px;}
.x6_c00408{left:495.541500px;}
.x12_c00408{left:519.480000px;}
.x7_c00408{left:628.128000px;}
.x8_c00408{left:661.875000px;}
.x9_c00408{left:750.183000px;}
.xa_c00408{left:794.748000px;}
.xb_c00408{left:839.094000px;}
@media print{
.v0_c00408{vertical-align:0.000000pt;}
.ls0_c00408{letter-spacing:0.000000pt;}
.ws0_c00408{word-spacing:0.000000pt;}
.fs0_c00408{font-size:64.000000pt;}
.fs1_c00408{font-size:64.006272pt;}
.fs2_c00408{font-size:69.333333pt;}
.y0_c00408{bottom:0.000000pt;}
.yb_c00408{bottom:945.149333pt;}
.ya_c00408{bottom:971.893099pt;}
.y9_c00408{bottom:972.444960pt;}
.y8_c00408{bottom:972.999547pt;}
.y7_c00408{bottom:974.098491pt;}
.y6_c00408{bottom:974.518453pt;}
.y5_c00408{bottom:976.168419pt;}
.y4_c00408{bottom:977.824973pt;}
.y3_c00408{bottom:978.100139pt;}
.y2_c00408{bottom:979.202667pt;}
.y1_c00408{bottom:1009.068000pt;}
.h2_c00408{height:64.000000pt;}
.h3_c00408{height:64.006272pt;}
.h4_c00408{height:69.333333pt;}
.h1_c00408{height:1112.000000pt;}
.h0_c00408{height:1112.133333pt;}
.w0_c00408{width:813.333333pt;}
.x0_c00408{left:0.000000pt;}
.xc_c00408{left:127.440000pt;}
.x1_c00408{left:128.400000pt;}
.xd_c00408{left:166.080000pt;}
.x2_c00408{left:185.280000pt;}
.x3_c00408{left:223.749333pt;}
.xe_c00408{left:233.520000pt;}
.xf_c00408{left:263.280000pt;}
.x4_c00408{left:302.501333pt;}
.x5_c00408{left:322.156000pt;}
.x10_c00408{left:331.920000pt;}
.x11_c00408{left:360.240000pt;}
.x6_c00408{left:440.481333pt;}
.x12_c00408{left:461.760000pt;}
.x7_c00408{left:558.336000pt;}
.x8_c00408{left:588.333333pt;}
.x9_c00408{left:666.829333pt;}
.xa_c00408{left:706.442667pt;}
.xb_c00408{left:745.861333pt;}
}





/* 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_c00409 {
    display:none;
  }
  .loading-indicator_c00409.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00409 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_c00409 { 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_c00409" -> "#page-container .classname_c00409")
 */
.pf_c00409 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00409 { /* 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_c00409.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00409 { /* 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_c00409 { /* 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_c00409 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00409 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00409 {overflow:visible;}
  }
}
.c_c00409 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00409 { /* 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_c00409:after { /* webkit #35443 */
  content: '';
}
.t_c00409:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00409 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 */
}
.__c00409 { /* 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_c00409 { /* info for Javascript */
  display:none;
}
.l_c00409 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00409 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00409 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00409: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_c00409 {
    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_c00409.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00409.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_c00409 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00409{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00409;src:url('chunks/assets/font_91338875028c1bc55e42d757.woff2')format("woff");}.ff1_c00409{font-family:ff1_c00409;line-height:1.000000;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;}
.mf_c00409{transform:matrix(0.011332,0.201952,-0.249607,0.014006,0,0);-ms-transform:matrix(0.011332,0.201952,-0.249607,0.014006,0,0);-webkit-transform:matrix(0.011332,0.201952,-0.249607,0.014006,0,0);}
.m10_c00409{transform:matrix(0.028204,0.502639,-0.249607,0.014006,0,0);-ms-transform:matrix(0.028204,0.502639,-0.249607,0.014006,0,0);-webkit-transform:matrix(0.028204,0.502639,-0.249607,0.014006,0,0);}
.mb_c00409{transform:matrix(0.043730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.043730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.043730,0.000000,0.000000,0.250000,0,0);}
.m0_c00409{transform:matrix(0.184390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184390,0.000000,0.000000,0.250000,0,0);}
.m4_c00409{transform:matrix(0.201245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201245,0.000000,0.000000,0.250000,0,0);}
.m8_c00409{transform:matrix(0.207620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207620,0.000000,0.000000,0.250000,0,0);}
.me_c00409{transform:matrix(0.216975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216975,0.000000,0.000000,0.250000,0,0);}
.ma_c00409{transform:matrix(0.221470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221470,0.000000,0.000000,0.250000,0,0);}
.m7_c00409{transform:matrix(0.237185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237185,0.000000,0.000000,0.250000,0,0);}
.m3_c00409{transform:matrix(0.241300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241300,0.000000,0.000000,0.250000,0,0);}
.mc_c00409{transform:matrix(0.244825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244825,0.000000,0.000000,0.250000,0,0);}
.m2_c00409{transform:matrix(0.251485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251485,0.000000,0.000000,0.250000,0,0);}
.m9_c00409{transform:matrix(0.252480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252480,0.000000,0.000000,0.250000,0,0);}
.m5_c00409{transform:matrix(0.289700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289700,0.000000,0.000000,0.250000,0,0);}
.md_c00409{transform:matrix(0.312945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312945,0.000000,0.000000,0.250000,0,0);}
.m1_c00409{transform:matrix(0.313180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313180,0.000000,0.000000,0.250000,0,0);}
.m6_c00409{transform:matrix(0.526300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526300,0.000000,0.000000,0.250000,0,0);}
.v0_c00409{vertical-align:0.000000px;}
.ls0_c00409{letter-spacing:0.000000px;}
.sc__c00409{text-shadow:none;}
.sc0_c00409{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__c00409{-webkit-text-stroke:0px transparent;}
.sc0_c00409{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00409{word-spacing:0.000000px;}
.fc0_c00409{color:transparent;}
.fs5_c00409{font-size:18.000000px;}
.fs9_c00409{font-size:30.000000px;}
.fs0_c00409{font-size:36.000000px;}
.fsc_c00409{font-size:47.979356px;}
.fs4_c00409{font-size:48.000000px;}
.fs3_c00409{font-size:54.000000px;}
.fs2_c00409{font-size:60.000000px;}
.fs8_c00409{font-size:66.000000px;}
.fs7_c00409{font-size:72.000000px;}
.fsa_c00409{font-size:78.000000px;}
.fs6_c00409{font-size:84.000000px;}
.fsb_c00409{font-size:89.961292px;}
.fs1_c00409{font-size:114.000000px;}
.y0_c00409{bottom:0.000000px;}
.yc_c00409{bottom:1058.938500px;}
.yd_c00409{bottom:1058.940000px;}
.y9_c00409{bottom:1060.965000px;}
.y8_c00409{bottom:1061.100000px;}
.ya_c00409{bottom:1061.371500px;}
.y6_c00409{bottom:1061.635500px;}
.y7_c00409{bottom:1062.180000px;}
.yb_c00409{bottom:1064.340000px;}
.ye_c00409{bottom:1072.170000px;}
.yf_c00409{bottom:1072.321230px;}
.y2_c00409{bottom:1094.448000px;}
.y5_c00409{bottom:1094.850000px;}
.y4_c00409{bottom:1098.090000px;}
.y3_c00409{bottom:1098.757500px;}
.y1_c00409{bottom:1103.220000px;}
.h7_c00409{height:18.000000px;}
.hb_c00409{height:30.000000px;}
.h2_c00409{height:36.000000px;}
.he_c00409{height:47.979356px;}
.h6_c00409{height:48.000000px;}
.h5_c00409{height:54.000000px;}
.h4_c00409{height:60.000000px;}
.ha_c00409{height:66.000000px;}
.h9_c00409{height:72.000000px;}
.hc_c00409{height:78.000000px;}
.h8_c00409{height:84.000000px;}
.hd_c00409{height:89.961292px;}
.h3_c00409{height:114.000000px;}
.h1_c00409{height:1251.000000px;}
.h0_c00409{height:1251.150000px;}
.w0_c00409{width:915.000000px;}
.x0_c00409{left:0.000000px;}
.x10_c00409{left:429.806400px;}
.xf_c00409{left:436.050000px;}
.xe_c00409{left:447.660000px;}
.xd_c00409{left:457.650000px;}
.xc_c00409{left:492.480000px;}
.xa_c00409{left:498.960000px;}
.x9_c00409{left:503.010000px;}
.xb_c00409{left:507.870000px;}
.x8_c00409{left:559.440000px;}
.x5_c00409{left:589.680000px;}
.x4_c00409{left:594.000000px;}
.x3_c00409{left:602.370000px;}
.x7_c00409{left:615.870000px;}
.x6_c00409{left:625.320000px;}
.x2_c00409{left:643.410000px;}
.x1_c00409{left:650.970000px;}
@media print{
.v0_c00409{vertical-align:0.000000pt;}
.ls0_c00409{letter-spacing:0.000000pt;}
.ws0_c00409{word-spacing:0.000000pt;}
.fs5_c00409{font-size:16.000000pt;}
.fs9_c00409{font-size:26.666667pt;}
.fs0_c00409{font-size:32.000000pt;}
.fsc_c00409{font-size:42.648316pt;}
.fs4_c00409{font-size:42.666667pt;}
.fs3_c00409{font-size:48.000000pt;}
.fs2_c00409{font-size:53.333333pt;}
.fs8_c00409{font-size:58.666667pt;}
.fs7_c00409{font-size:64.000000pt;}
.fsa_c00409{font-size:69.333333pt;}
.fs6_c00409{font-size:74.666667pt;}
.fsb_c00409{font-size:79.965593pt;}
.fs1_c00409{font-size:101.333333pt;}
.y0_c00409{bottom:0.000000pt;}
.yc_c00409{bottom:941.278667pt;}
.yd_c00409{bottom:941.280000pt;}
.y9_c00409{bottom:943.080000pt;}
.y8_c00409{bottom:943.200000pt;}
.ya_c00409{bottom:943.441333pt;}
.y6_c00409{bottom:943.676000pt;}
.y7_c00409{bottom:944.160000pt;}
.yb_c00409{bottom:946.080000pt;}
.ye_c00409{bottom:953.040000pt;}
.yf_c00409{bottom:953.174427pt;}
.y2_c00409{bottom:972.842667pt;}
.y5_c00409{bottom:973.200000pt;}
.y4_c00409{bottom:976.080000pt;}
.y3_c00409{bottom:976.673333pt;}
.y1_c00409{bottom:980.640000pt;}
.h7_c00409{height:16.000000pt;}
.hb_c00409{height:26.666667pt;}
.h2_c00409{height:32.000000pt;}
.he_c00409{height:42.648316pt;}
.h6_c00409{height:42.666667pt;}
.h5_c00409{height:48.000000pt;}
.h4_c00409{height:53.333333pt;}
.ha_c00409{height:58.666667pt;}
.h9_c00409{height:64.000000pt;}
.hc_c00409{height:69.333333pt;}
.h8_c00409{height:74.666667pt;}
.hd_c00409{height:79.965593pt;}
.h3_c00409{height:101.333333pt;}
.h1_c00409{height:1112.000000pt;}
.h0_c00409{height:1112.133333pt;}
.w0_c00409{width:813.333333pt;}
.x0_c00409{left:0.000000pt;}
.x10_c00409{left:382.050133pt;}
.xf_c00409{left:387.600000pt;}
.xe_c00409{left:397.920000pt;}
.xd_c00409{left:406.800000pt;}
.xc_c00409{left:437.760000pt;}
.xa_c00409{left:443.520000pt;}
.x9_c00409{left:447.120000pt;}
.xb_c00409{left:451.440000pt;}
.x8_c00409{left:497.280000pt;}
.x5_c00409{left:524.160000pt;}
.x4_c00409{left:528.000000pt;}
.x3_c00409{left:535.440000pt;}
.x7_c00409{left:547.440000pt;}
.x6_c00409{left:555.840000pt;}
.x2_c00409{left:571.920000pt;}
.x1_c00409{left:578.640000pt;}
}





/* 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_c00410 {
    display:none;
  }
  .loading-indicator_c00410.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00410 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_c00410 { 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_c00410" -> "#page-container .classname_c00410")
 */
.pf_c00410 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00410 { /* 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_c00410.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00410 { /* 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_c00410 { /* 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_c00410 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00410 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00410 {overflow:visible;}
  }
}
.c_c00410 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00410 { /* 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_c00410:after { /* webkit #35443 */
  content: '';
}
.t_c00410:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00410 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 */
}
.__c00410 { /* 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_c00410 { /* info for Javascript */
  display:none;
}
.l_c00410 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00410 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00410 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00410: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_c00410 {
    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_c00410.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00410.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_c00410 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00410{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00410;src:url('chunks/assets/font_53ec0c54e60da7c2d414b553.woff2')format("woff");}.ff1_c00410{font-family:ff1_c00410;line-height:1.000000;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;}
.m5a_c00410{transform:matrix(0.124855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124855,0.000000,0.000000,0.250000,0,0);}
.m2_c00410{transform:matrix(0.147470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147470,0.000000,0.000000,0.250000,0,0);}
.mae_c00410{transform:matrix(0.155325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155325,0.000000,0.000000,0.250000,0,0);}
.mb5_c00410{transform:matrix(0.157125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157125,0.000000,0.000000,0.250000,0,0);}
.m6d_c00410{transform:matrix(0.163685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163685,0.000000,0.000000,0.250000,0,0);}
.m10a_c00410{transform:matrix(0.166105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166105,0.000000,0.000000,0.250000,0,0);}
.m126_c00410{transform:matrix(0.166591,0.002832,-0.004249,0.249964,0,0);-ms-transform:matrix(0.166591,0.002832,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.166591,0.002832,-0.004249,0.249964,0,0);}
.m12a_c00410{transform:matrix(0.168076,0.002857,-0.004249,0.249964,0,0);-ms-transform:matrix(0.168076,0.002857,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.168076,0.002857,-0.004249,0.249964,0,0);}
.m107_c00410{transform:matrix(0.169385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169385,0.000000,0.000000,0.250000,0,0);}
.m109_c00410{transform:matrix(0.171610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171610,0.000000,0.000000,0.250000,0,0);}
.m11f_c00410{transform:matrix(0.172950,0.002940,-0.004249,0.249964,0,0);-ms-transform:matrix(0.172950,0.002940,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.172950,0.002940,-0.004249,0.249964,0,0);}
.mb0_c00410{transform:matrix(0.173605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173605,0.000000,0.000000,0.250000,0,0);}
.m105_c00410{transform:matrix(0.174215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174215,0.000000,0.000000,0.250000,0,0);}
.m142_c00410{transform:matrix(0.175290,0.005615,-0.008004,0.249872,0,0);-ms-transform:matrix(0.175290,0.005615,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.175290,0.005615,-0.008004,0.249872,0,0);}
.m123_c00410{transform:matrix(0.175365,0.002981,-0.004249,0.249964,0,0);-ms-transform:matrix(0.175365,0.002981,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.175365,0.002981,-0.004249,0.249964,0,0);}
.m146_c00410{transform:matrix(0.177424,0.005683,-0.008004,0.249872,0,0);-ms-transform:matrix(0.177424,0.005683,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.177424,0.005683,-0.008004,0.249872,0,0);}
.m128_c00410{transform:matrix(0.177769,0.003022,-0.004249,0.249964,0,0);-ms-transform:matrix(0.177769,0.003022,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.177769,0.003022,-0.004249,0.249964,0,0);}
.m12b_c00410{transform:matrix(0.179114,0.003045,-0.004249,0.249964,0,0);-ms-transform:matrix(0.179114,0.003045,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.179114,0.003045,-0.004249,0.249964,0,0);}
.m122_c00410{transform:matrix(0.180634,0.003071,-0.004249,0.249964,0,0);-ms-transform:matrix(0.180634,0.003071,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.180634,0.003071,-0.004249,0.249964,0,0);}
.maa_c00410{transform:matrix(0.181055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181055,0.000000,0.000000,0.250000,0,0);}
.me3_c00410{transform:matrix(0.181195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181195,0.000000,0.000000,0.250000,0,0);}
.m11c_c00410{transform:matrix(0.182029,0.003094,-0.004249,0.249964,0,0);-ms-transform:matrix(0.182029,0.003094,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.182029,0.003094,-0.004249,0.249964,0,0);}
.m106_c00410{transform:matrix(0.182065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182065,0.000000,0.000000,0.250000,0,0);}
.m102_c00410{transform:matrix(0.182325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182325,0.000000,0.000000,0.250000,0,0);}
.m5b_c00410{transform:matrix(0.183725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183725,0.000000,0.000000,0.250000,0,0);}
.m7e_c00410{transform:matrix(0.183985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183985,0.000000,0.000000,0.250000,0,0);}
.m125_c00410{transform:matrix(0.184358,0.003134,-0.004249,0.249964,0,0);-ms-transform:matrix(0.184358,0.003134,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.184358,0.003134,-0.004249,0.249964,0,0);}
.m70_c00410{transform:matrix(0.184715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184715,0.000000,0.000000,0.250000,0,0);}
.m12c_c00410{transform:matrix(0.185318,0.003150,-0.004249,0.249964,0,0);-ms-transform:matrix(0.185318,0.003150,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.185318,0.003150,-0.004249,0.249964,0,0);}
.m100_c00410{transform:matrix(0.185345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185345,0.000000,0.000000,0.250000,0,0);}
.ma1_c00410{transform:matrix(0.186070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186070,0.000000,0.000000,0.250000,0,0);}
.m99_c00410{transform:matrix(0.186090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186090,0.000000,0.000000,0.250000,0,0);}
.m93_c00410{transform:matrix(0.186280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186280,0.000000,0.000000,0.250000,0,0);}
.mab_c00410{transform:matrix(0.186690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186690,0.000000,0.000000,0.250000,0,0);}
.m10c_c00410{transform:matrix(0.186910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186910,0.000000,0.000000,0.250000,0,0);}
.mac_c00410{transform:matrix(0.187290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187290,0.000000,0.000000,0.250000,0,0);}
.m127_c00410{transform:matrix(0.189853,0.003227,-0.004249,0.249964,0,0);-ms-transform:matrix(0.189853,0.003227,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.189853,0.003227,-0.004249,0.249964,0,0);}
.m71_c00410{transform:matrix(0.193060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193060,0.000000,0.000000,0.250000,0,0);}
.mde_c00410{transform:matrix(0.193380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193380,0.000000,0.000000,0.250000,0,0);}
.m8c_c00410{transform:matrix(0.193505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193505,0.000000,0.000000,0.250000,0,0);}
.m121_c00410{transform:matrix(0.193717,0.003293,-0.004249,0.249964,0,0);-ms-transform:matrix(0.193717,0.003293,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.193717,0.003293,-0.004249,0.249964,0,0);}
.m101_c00410{transform:matrix(0.193960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193960,0.000000,0.000000,0.250000,0,0);}
.m73_c00410{transform:matrix(0.194200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194200,0.000000,0.000000,0.250000,0,0);}
.m104_c00410{transform:matrix(0.194315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194315,0.000000,0.000000,0.250000,0,0);}
.m76_c00410{transform:matrix(0.194960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194960,0.000000,0.000000,0.250000,0,0);}
.mb6_c00410{transform:matrix(0.195270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195270,0.000000,0.000000,0.250000,0,0);}
.m1d_c00410{transform:matrix(0.195420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195420,0.000000,0.000000,0.250000,0,0);}
.ma8_c00410{transform:matrix(0.195515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195515,0.000000,0.000000,0.250000,0,0);}
.mf9_c00410{transform:matrix(0.195565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195565,0.000000,0.000000,0.250000,0,0);}
.mad_c00410{transform:matrix(0.195650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195650,0.000000,0.000000,0.250000,0,0);}
.maf_c00410{transform:matrix(0.195700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195700,0.000000,0.000000,0.250000,0,0);}
.m124_c00410{transform:matrix(0.195862,0.003330,-0.004249,0.249964,0,0);-ms-transform:matrix(0.195862,0.003330,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.195862,0.003330,-0.004249,0.249964,0,0);}
.mea_c00410{transform:matrix(0.197910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197910,0.000000,0.000000,0.250000,0,0);}
.m72_c00410{transform:matrix(0.198040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198040,0.000000,0.000000,0.250000,0,0);}
.mb2_c00410{transform:matrix(0.199075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199075,0.000000,0.000000,0.250000,0,0);}
.mfc_c00410{transform:matrix(0.199100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199100,0.000000,0.000000,0.250000,0,0);}
.m129_c00410{transform:matrix(0.199376,0.003389,-0.004249,0.249964,0,0);-ms-transform:matrix(0.199376,0.003389,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.199376,0.003389,-0.004249,0.249964,0,0);}
.m22_c00410{transform:matrix(0.199700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199700,0.000000,0.000000,0.250000,0,0);}
.md5_c00410{transform:matrix(0.200310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200310,0.000000,0.000000,0.250000,0,0);}
.m116_c00410{transform:matrix(0.201266,0.003422,-0.004249,0.249964,0,0);-ms-transform:matrix(0.201266,0.003422,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.201266,0.003422,-0.004249,0.249964,0,0);}
.mee_c00410{transform:matrix(0.201530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201530,0.000000,0.000000,0.250000,0,0);}
.m132_c00410{transform:matrix(0.201566,0.003427,-0.004249,0.249964,0,0);-ms-transform:matrix(0.201566,0.003427,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.201566,0.003427,-0.004249,0.249964,0,0);}
.m66_c00410{transform:matrix(0.201595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201595,0.000000,0.000000,0.250000,0,0);}
.m9a_c00410{transform:matrix(0.202405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202405,0.000000,0.000000,0.250000,0,0);}
.m108_c00410{transform:matrix(0.203330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203330,0.000000,0.000000,0.250000,0,0);}
.mb4_c00410{transform:matrix(0.203550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203550,0.000000,0.000000,0.250000,0,0);}
.mb1_c00410{transform:matrix(0.203665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203665,0.000000,0.000000,0.250000,0,0);}
.m9d_c00410{transform:matrix(0.204330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204330,0.000000,0.000000,0.250000,0,0);}
.mb3_c00410{transform:matrix(0.204375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204375,0.000000,0.000000,0.250000,0,0);}
.m151_c00410{transform:matrix(0.204541,0.005114,-0.006248,0.249922,0,0);-ms-transform:matrix(0.204541,0.005114,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.204541,0.005114,-0.006248,0.249922,0,0);}
.m12e_c00410{transform:matrix(0.204575,0.003478,-0.004249,0.249964,0,0);-ms-transform:matrix(0.204575,0.003478,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.204575,0.003478,-0.004249,0.249964,0,0);}
.m2a_c00410{transform:matrix(0.206095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206095,0.000000,0.000000,0.250000,0,0);}
.mf3_c00410{transform:matrix(0.206220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206220,0.000000,0.000000,0.250000,0,0);}
.meb_c00410{transform:matrix(0.206260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206260,0.000000,0.000000,0.250000,0,0);}
.md8_c00410{transform:matrix(0.206380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206380,0.000000,0.000000,0.250000,0,0);}
.m13e_c00410{transform:matrix(0.206719,0.006622,-0.008004,0.249872,0,0);-ms-transform:matrix(0.206719,0.006622,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.206719,0.006622,-0.008004,0.249872,0,0);}
.mfa_c00410{transform:matrix(0.207425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207425,0.000000,0.000000,0.250000,0,0);}
.md3_c00410{transform:matrix(0.207475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207475,0.000000,0.000000,0.250000,0,0);}
.mf6_c00410{transform:matrix(0.208605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208605,0.000000,0.000000,0.250000,0,0);}
.m118_c00410{transform:matrix(0.208900,0.003551,-0.004249,0.249964,0,0);-ms-transform:matrix(0.208900,0.003551,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.208900,0.003551,-0.004249,0.249964,0,0);}
.md9_c00410{transform:matrix(0.209220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209220,0.000000,0.000000,0.250000,0,0);}
.m7b_c00410{transform:matrix(0.209300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209300,0.000000,0.000000,0.250000,0,0);}
.mdc_c00410{transform:matrix(0.209805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209805,0.000000,0.000000,0.250000,0,0);}
.m11d_c00410{transform:matrix(0.209850,0.003567,-0.004249,0.249964,0,0);-ms-transform:matrix(0.209850,0.003567,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.209850,0.003567,-0.004249,0.249964,0,0);}
.m13f_c00410{transform:matrix(0.209912,0.006724,-0.008004,0.249872,0,0);-ms-transform:matrix(0.209912,0.006724,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.209912,0.006724,-0.008004,0.249872,0,0);}
.m43_c00410{transform:matrix(0.209931,0.001260,-0.001500,0.249996,0,0);-ms-transform:matrix(0.209931,0.001260,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.209931,0.001260,-0.001500,0.249996,0,0);}
.m89_c00410{transform:matrix(0.209935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209935,0.000000,0.000000,0.250000,0,0);}
.ma5_c00410{transform:matrix(0.210185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210185,0.000000,0.000000,0.250000,0,0);}
.m119_c00410{transform:matrix(0.210465,0.003578,-0.004249,0.249964,0,0);-ms-transform:matrix(0.210465,0.003578,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.210465,0.003578,-0.004249,0.249964,0,0);}
.m10b_c00410{transform:matrix(0.210585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210585,0.000000,0.000000,0.250000,0,0);}
.me4_c00410{transform:matrix(0.210610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210610,0.000000,0.000000,0.250000,0,0);}
.m13c_c00410{transform:matrix(0.210727,0.006750,-0.008004,0.249872,0,0);-ms-transform:matrix(0.210727,0.006750,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.210727,0.006750,-0.008004,0.249872,0,0);}
.m2c_c00410{transform:matrix(0.211215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211215,0.000000,0.000000,0.250000,0,0);}
.m78_c00410{transform:matrix(0.211510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211510,0.000000,0.000000,0.250000,0,0);}
.m140_c00410{transform:matrix(0.212561,0.006809,-0.008004,0.249872,0,0);-ms-transform:matrix(0.212561,0.006809,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.212561,0.006809,-0.008004,0.249872,0,0);}
.m11a_c00410{transform:matrix(0.212919,0.003620,-0.004249,0.249964,0,0);-ms-transform:matrix(0.212919,0.003620,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.212919,0.003620,-0.004249,0.249964,0,0);}
.m3e_c00410{transform:matrix(0.213131,0.001279,-0.001500,0.249996,0,0);-ms-transform:matrix(0.213131,0.001279,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.213131,0.001279,-0.001500,0.249996,0,0);}
.mec_c00410{transform:matrix(0.213140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213140,0.000000,0.000000,0.250000,0,0);}
.m117_c00410{transform:matrix(0.213574,0.003631,-0.004249,0.249964,0,0);-ms-transform:matrix(0.213574,0.003631,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.213574,0.003631,-0.004249,0.249964,0,0);}
.m141_c00410{transform:matrix(0.213585,0.006842,-0.008004,0.249872,0,0);-ms-transform:matrix(0.213585,0.006842,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.213585,0.006842,-0.008004,0.249872,0,0);}
.m13d_c00410{transform:matrix(0.213750,0.006847,-0.008004,0.249872,0,0);-ms-transform:matrix(0.213750,0.006847,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.213750,0.006847,-0.008004,0.249872,0,0);}
.m74_c00410{transform:matrix(0.213805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213805,0.000000,0.000000,0.250000,0,0);}
.m75_c00410{transform:matrix(0.214310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214310,0.000000,0.000000,0.250000,0,0);}
.m4f_c00410{transform:matrix(0.214926,0.001290,-0.001500,0.249996,0,0);-ms-transform:matrix(0.214926,0.001290,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.214926,0.001290,-0.001500,0.249996,0,0);}
.m1_c00410{transform:matrix(0.214995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214995,0.000000,0.000000,0.250000,0,0);}
.m77_c00410{transform:matrix(0.215135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215135,0.000000,0.000000,0.250000,0,0);}
.me9_c00410{transform:matrix(0.215485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215485,0.000000,0.000000,0.250000,0,0);}
.m45_c00410{transform:matrix(0.215701,0.001294,-0.001500,0.249996,0,0);-ms-transform:matrix(0.215701,0.001294,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.215701,0.001294,-0.001500,0.249996,0,0);}
.m21_c00410{transform:matrix(0.215910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215910,0.000000,0.000000,0.250000,0,0);}
.m115_c00410{transform:matrix(0.216019,0.003672,-0.004249,0.249964,0,0);-ms-transform:matrix(0.216019,0.003672,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.216019,0.003672,-0.004249,0.249964,0,0);}
.m120_c00410{transform:matrix(0.216474,0.003680,-0.004249,0.249964,0,0);-ms-transform:matrix(0.216474,0.003680,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.216474,0.003680,-0.004249,0.249964,0,0);}
.mf0_c00410{transform:matrix(0.216725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216725,0.000000,0.000000,0.250000,0,0);}
.m28_c00410{transform:matrix(0.216790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216790,0.000000,0.000000,0.250000,0,0);}
.m1f_c00410{transform:matrix(0.217530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217530,0.000000,0.000000,0.250000,0,0);}
.m8f_c00410{transform:matrix(0.217705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217705,0.000000,0.000000,0.250000,0,0);}
.mdd_c00410{transform:matrix(0.217770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217770,0.000000,0.000000,0.250000,0,0);}
.m81_c00410{transform:matrix(0.217845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217845,0.000000,0.000000,0.250000,0,0);}
.m8e_c00410{transform:matrix(0.218795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218795,0.000000,0.000000,0.250000,0,0);}
.m9f_c00410{transform:matrix(0.219375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219375,0.000000,0.000000,0.250000,0,0);}
.md2_c00410{transform:matrix(0.219730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219730,0.000000,0.000000,0.250000,0,0);}
.ma7_c00410{transform:matrix(0.220100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220100,0.000000,0.000000,0.250000,0,0);}
.mf5_c00410{transform:matrix(0.220340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220340,0.000000,0.000000,0.250000,0,0);}
.ma9_c00410{transform:matrix(0.220370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220370,0.000000,0.000000,0.250000,0,0);}
.m6e_c00410{transform:matrix(0.220955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220955,0.000000,0.000000,0.250000,0,0);}
.m6f_c00410{transform:matrix(0.221170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221170,0.000000,0.000000,0.250000,0,0);}
.m103_c00410{transform:matrix(0.221545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221545,0.000000,0.000000,0.250000,0,0);}
.mf_c00410{transform:matrix(0.221600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221600,0.000000,0.000000,0.250000,0,0);}
.md1_c00410{transform:matrix(0.221905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221905,0.000000,0.000000,0.250000,0,0);}
.m148_c00410{transform:matrix(0.222021,0.005551,-0.006248,0.249922,0,0);-ms-transform:matrix(0.222021,0.005551,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.222021,0.005551,-0.006248,0.249922,0,0);}
.m9e_c00410{transform:matrix(0.222810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222810,0.000000,0.000000,0.250000,0,0);}
.m86_c00410{transform:matrix(0.222845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222845,0.000000,0.000000,0.250000,0,0);}
.md7_c00410{transform:matrix(0.223085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223085,0.000000,0.000000,0.250000,0,0);}
.mb9_c00410{transform:matrix(0.223180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223180,0.000000,0.000000,0.250000,0,0);}
.m8b_c00410{transform:matrix(0.223405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223405,0.000000,0.000000,0.250000,0,0);}
.mf1_c00410{transform:matrix(0.223485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223485,0.000000,0.000000,0.250000,0,0);}
.m29_c00410{transform:matrix(0.223860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223860,0.000000,0.000000,0.250000,0,0);}
.mbb_c00410{transform:matrix(0.223955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223955,0.000000,0.000000,0.250000,0,0);}
.ma6_c00410{transform:matrix(0.224225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224225,0.000000,0.000000,0.250000,0,0);}
.md4_c00410{transform:matrix(0.224435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224435,0.000000,0.000000,0.250000,0,0);}
.mda_c00410{transform:matrix(0.224625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224625,0.000000,0.000000,0.250000,0,0);}
.m95_c00410{transform:matrix(0.224655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224655,0.000000,0.000000,0.250000,0,0);}
.m112_c00410{transform:matrix(0.224735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224735,0.000000,0.000000,0.250000,0,0);}
.mc3_c00410{transform:matrix(0.224765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224765,0.000000,0.000000,0.250000,0,0);}
.m143_c00410{transform:matrix(0.224925,0.007205,-0.008004,0.249872,0,0);-ms-transform:matrix(0.224925,0.007205,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.224925,0.007205,-0.008004,0.249872,0,0);}
.me0_c00410{transform:matrix(0.225315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225315,0.000000,0.000000,0.250000,0,0);}
.m2e_c00410{transform:matrix(0.226025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226025,0.000000,0.000000,0.250000,0,0);}
.me8_c00410{transform:matrix(0.226045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226045,0.000000,0.000000,0.250000,0,0);}
.med_c00410{transform:matrix(0.226100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226100,0.000000,0.000000,0.250000,0,0);}
.mc7_c00410{transform:matrix(0.226110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226110,0.000000,0.000000,0.250000,0,0);}
.mf7_c00410{transform:matrix(0.226655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226655,0.000000,0.000000,0.250000,0,0);}
.mc5_c00410{transform:matrix(0.226745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226745,0.000000,0.000000,0.250000,0,0);}
.me2_c00410{transform:matrix(0.227260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227260,0.000000,0.000000,0.250000,0,0);}
.m49_c00410{transform:matrix(0.227426,0.001365,-0.001500,0.249996,0,0);-ms-transform:matrix(0.227426,0.001365,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.227426,0.001365,-0.001500,0.249996,0,0);}
.m5d_c00410{transform:matrix(0.227945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227945,0.000000,0.000000,0.250000,0,0);}
.m153_c00410{transform:matrix(0.228034,0.005701,-0.006248,0.249922,0,0);-ms-transform:matrix(0.228034,0.005701,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.228034,0.005701,-0.006248,0.249922,0,0);}
.m46_c00410{transform:matrix(0.228506,0.001371,-0.001500,0.249996,0,0);-ms-transform:matrix(0.228506,0.001371,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.228506,0.001371,-0.001500,0.249996,0,0);}
.mf8_c00410{transform:matrix(0.228560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228560,0.000000,0.000000,0.250000,0,0);}
.m87_c00410{transform:matrix(0.228630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228630,0.000000,0.000000,0.250000,0,0);}
.ma0_c00410{transform:matrix(0.228715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228715,0.000000,0.000000,0.250000,0,0);}
.mff_c00410{transform:matrix(0.228740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228740,0.000000,0.000000,0.250000,0,0);}
.m15_c00410{transform:matrix(0.228815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228815,0.000000,0.000000,0.250000,0,0);}
.m90_c00410{transform:matrix(0.229045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229045,0.000000,0.000000,0.250000,0,0);}
.m84_c00410{transform:matrix(0.229330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229330,0.000000,0.000000,0.250000,0,0);}
.ma4_c00410{transform:matrix(0.229425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229425,0.000000,0.000000,0.250000,0,0);}
.ma2_c00410{transform:matrix(0.230085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230085,0.000000,0.000000,0.250000,0,0);}
.m64_c00410{transform:matrix(0.230215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230215,0.000000,0.000000,0.250000,0,0);}
.m91_c00410{transform:matrix(0.230385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230385,0.000000,0.000000,0.250000,0,0);}
.mf4_c00410{transform:matrix(0.230690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230690,0.000000,0.000000,0.250000,0,0);}
.m1a_c00410{transform:matrix(0.230895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230895,0.000000,0.000000,0.250000,0,0);}
.mfe_c00410{transform:matrix(0.231015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231015,0.000000,0.000000,0.250000,0,0);}
.mf2_c00410{transform:matrix(0.231280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231280,0.000000,0.000000,0.250000,0,0);}
.m139_c00410{transform:matrix(0.231402,0.003934,-0.004249,0.249964,0,0);-ms-transform:matrix(0.231402,0.003934,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.231402,0.003934,-0.004249,0.249964,0,0);}
.mb7_c00410{transform:matrix(0.231570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231570,0.000000,0.000000,0.250000,0,0);}
.m1e_c00410{transform:matrix(0.231755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231755,0.000000,0.000000,0.250000,0,0);}
.m7d_c00410{transform:matrix(0.231805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231805,0.000000,0.000000,0.250000,0,0);}
.md6_c00410{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m3_c00410{transform:matrix(0.232045,0.003017,-0.003250,0.249979,0,0);-ms-transform:matrix(0.232045,0.003017,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.232045,0.003017,-0.003250,0.249979,0,0);}
.mfb_c00410{transform:matrix(0.232055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232055,0.000000,0.000000,0.250000,0,0);}
.m3c_c00410{transform:matrix(0.232056,0.001392,-0.001500,0.249996,0,0);-ms-transform:matrix(0.232056,0.001392,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.232056,0.001392,-0.001500,0.249996,0,0);}
.mcb_c00410{transform:matrix(0.232285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232285,0.000000,0.000000,0.250000,0,0);}
.m11b_c00410{transform:matrix(0.232421,0.003951,-0.004249,0.249964,0,0);-ms-transform:matrix(0.232421,0.003951,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.232421,0.003951,-0.004249,0.249964,0,0);}
.m5e_c00410{transform:matrix(0.232495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232495,0.000000,0.000000,0.250000,0,0);}
.m144_c00410{transform:matrix(0.232536,0.007449,-0.008004,0.249872,0,0);-ms-transform:matrix(0.232536,0.007449,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.232536,0.007449,-0.008004,0.249872,0,0);}
.mba_c00410{transform:matrix(0.232865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232865,0.000000,0.000000,0.250000,0,0);}
.m85_c00410{transform:matrix(0.232945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232945,0.000000,0.000000,0.250000,0,0);}
.mc1_c00410{transform:matrix(0.233375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233375,0.000000,0.000000,0.250000,0,0);}
.mc0_c00410{transform:matrix(0.233395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233395,0.000000,0.000000,0.250000,0,0);}
.m135_c00410{transform:matrix(0.233661,0.003972,-0.004249,0.249964,0,0);-ms-transform:matrix(0.233661,0.003972,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.233661,0.003972,-0.004249,0.249964,0,0);}
.mcd_c00410{transform:matrix(0.233680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233680,0.000000,0.000000,0.250000,0,0);}
.m55_c00410{transform:matrix(0.233695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233695,0.000000,0.000000,0.250000,0,0);}
.m14a_c00410{transform:matrix(0.234782,0.005870,-0.006248,0.249922,0,0);-ms-transform:matrix(0.234782,0.005870,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.234782,0.005870,-0.006248,0.249922,0,0);}
.mdb_c00410{transform:matrix(0.234830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234830,0.000000,0.000000,0.250000,0,0);}
.m145_c00410{transform:matrix(0.235009,0.007528,-0.008004,0.249872,0,0);-ms-transform:matrix(0.235009,0.007528,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.235009,0.007528,-0.008004,0.249872,0,0);}
.ma3_c00410{transform:matrix(0.235490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235490,0.000000,0.000000,0.250000,0,0);}
.m68_c00410{transform:matrix(0.235930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235930,0.000000,0.000000,0.250000,0,0);}
.m11e_c00410{transform:matrix(0.236366,0.004018,-0.004249,0.249964,0,0);-ms-transform:matrix(0.236366,0.004018,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.236366,0.004018,-0.004249,0.249964,0,0);}
.m2d_c00410{transform:matrix(0.236495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236495,0.000000,0.000000,0.250000,0,0);}
.m2b_c00410{transform:matrix(0.236700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236700,0.000000,0.000000,0.250000,0,0);}
.m92_c00410{transform:matrix(0.236805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236805,0.000000,0.000000,0.250000,0,0);}
.m23_c00410{transform:matrix(0.237560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237560,0.000000,0.000000,0.250000,0,0);}
.mfd_c00410{transform:matrix(0.237580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237580,0.000000,0.000000,0.250000,0,0);}
.m20_c00410{transform:matrix(0.237695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237695,0.000000,0.000000,0.250000,0,0);}
.m17_c00410{transform:matrix(0.238185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238185,0.000000,0.000000,0.250000,0,0);}
.m4a_c00410{transform:matrix(0.238366,0.001430,-0.001500,0.249996,0,0);-ms-transform:matrix(0.238366,0.001430,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.238366,0.001430,-0.001500,0.249996,0,0);}
.mbc_c00410{transform:matrix(0.239540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239540,0.000000,0.000000,0.250000,0,0);}
.m24_c00410{transform:matrix(0.239555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239555,0.000000,0.000000,0.250000,0,0);}
.mbe_c00410{transform:matrix(0.239850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239850,0.000000,0.000000,0.250000,0,0);}
.m6_c00410{transform:matrix(0.239870,0.003118,-0.003250,0.249979,0,0);-ms-transform:matrix(0.239870,0.003118,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.239870,0.003118,-0.003250,0.249979,0,0);}
.m18_c00410{transform:matrix(0.239910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239910,0.000000,0.000000,0.250000,0,0);}
.mb8_c00410{transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);}
.mce_c00410{transform:matrix(0.240650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240650,0.000000,0.000000,0.250000,0,0);}
.m25_c00410{transform:matrix(0.241560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241560,0.000000,0.000000,0.250000,0,0);}
.m54_c00410{transform:matrix(0.241615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241615,0.000000,0.000000,0.250000,0,0);}
.mc2_c00410{transform:matrix(0.241925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241925,0.000000,0.000000,0.250000,0,0);}
.me1_c00410{transform:matrix(0.241965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241965,0.000000,0.000000,0.250000,0,0);}
.md_c00410{transform:matrix(0.242330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242330,0.000000,0.000000,0.250000,0,0);}
.m80_c00410{transform:matrix(0.242550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242550,0.000000,0.000000,0.250000,0,0);}
.m12f_c00410{transform:matrix(0.242710,0.004126,-0.004249,0.249964,0,0);-ms-transform:matrix(0.242710,0.004126,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.242710,0.004126,-0.004249,0.249964,0,0);}
.m61_c00410{transform:matrix(0.243375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243375,0.000000,0.000000,0.250000,0,0);}
.m12d_c00410{transform:matrix(0.243460,0.004139,-0.004249,0.249964,0,0);-ms-transform:matrix(0.243460,0.004139,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.243460,0.004139,-0.004249,0.249964,0,0);}
.m7c_c00410{transform:matrix(0.243810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243810,0.000000,0.000000,0.250000,0,0);}
.mef_c00410{transform:matrix(0.243970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243970,0.000000,0.000000,0.250000,0,0);}
.m9b_c00410{transform:matrix(0.244200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244200,0.000000,0.000000,0.250000,0,0);}
.m97_c00410{transform:matrix(0.244495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244495,0.000000,0.000000,0.250000,0,0);}
.m3f_c00410{transform:matrix(0.244596,0.001468,-0.001500,0.249996,0,0);-ms-transform:matrix(0.244596,0.001468,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.244596,0.001468,-0.001500,0.249996,0,0);}
.m50_c00410{transform:matrix(0.244876,0.001469,-0.001500,0.249996,0,0);-ms-transform:matrix(0.244876,0.001469,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.244876,0.001469,-0.001500,0.249996,0,0);}
.m88_c00410{transform:matrix(0.245150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245150,0.000000,0.000000,0.250000,0,0);}
.m41_c00410{transform:matrix(0.245431,0.001473,-0.001500,0.249996,0,0);-ms-transform:matrix(0.245431,0.001473,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.245431,0.001473,-0.001500,0.249996,0,0);}
.m47_c00410{transform:matrix(0.245441,0.001473,-0.001500,0.249996,0,0);-ms-transform:matrix(0.245441,0.001473,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.245441,0.001473,-0.001500,0.249996,0,0);}
.mc8_c00410{transform:matrix(0.245460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245460,0.000000,0.000000,0.250000,0,0);}
.m31_c00410{transform:matrix(0.245585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245585,0.000000,0.000000,0.250000,0,0);}
.mbd_c00410{transform:matrix(0.246190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246190,0.000000,0.000000,0.250000,0,0);}
.m7a_c00410{transform:matrix(0.246335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246335,0.000000,0.000000,0.250000,0,0);}
.m94_c00410{transform:matrix(0.246350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246350,0.000000,0.000000,0.250000,0,0);}
.m5c_c00410{transform:matrix(0.246600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246600,0.000000,0.000000,0.250000,0,0);}
.me_c00410{transform:matrix(0.246730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246730,0.000000,0.000000,0.250000,0,0);}
.m8d_c00410{transform:matrix(0.246740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246740,0.000000,0.000000,0.250000,0,0);}
.m42_c00410{transform:matrix(0.247496,0.001485,-0.001500,0.249996,0,0);-ms-transform:matrix(0.247496,0.001485,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.247496,0.001485,-0.001500,0.249996,0,0);}
.m111_c00410{transform:matrix(0.247935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247935,0.000000,0.000000,0.250000,0,0);}
.m98_c00410{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m113_c00410{transform:matrix(0.248295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248295,0.000000,0.000000,0.250000,0,0);}
.m13b_c00410{transform:matrix(0.248334,0.004222,-0.004249,0.249964,0,0);-ms-transform:matrix(0.248334,0.004222,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.248334,0.004222,-0.004249,0.249964,0,0);}
.m40_c00410{transform:matrix(0.248466,0.001491,-0.001500,0.249996,0,0);-ms-transform:matrix(0.248466,0.001491,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.248466,0.001491,-0.001500,0.249996,0,0);}
.m14b_c00410{transform:matrix(0.248477,0.006212,-0.006248,0.249922,0,0);-ms-transform:matrix(0.248477,0.006212,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.248477,0.006212,-0.006248,0.249922,0,0);}
.m5f_c00410{transform:matrix(0.248510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248510,0.000000,0.000000,0.250000,0,0);}
.mc9_c00410{transform:matrix(0.248660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248660,0.000000,0.000000,0.250000,0,0);}
.m63_c00410{transform:matrix(0.249040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249040,0.000000,0.000000,0.250000,0,0);}
.m14e_c00410{transform:matrix(0.249137,0.006228,-0.006248,0.249922,0,0);-ms-transform:matrix(0.249137,0.006228,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.249137,0.006228,-0.006248,0.249922,0,0);}
.m155_c00410{transform:matrix(0.249502,0.006238,-0.006248,0.249922,0,0);-ms-transform:matrix(0.249502,0.006238,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.249502,0.006238,-0.006248,0.249922,0,0);}
.m52_c00410{transform:matrix(0.249556,0.001497,-0.001500,0.249996,0,0);-ms-transform:matrix(0.249556,0.001497,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.249556,0.001497,-0.001500,0.249996,0,0);}
.m3a_c00410{transform:matrix(0.249611,0.001498,-0.001500,0.249996,0,0);-ms-transform:matrix(0.249611,0.001498,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.249611,0.001498,-0.001500,0.249996,0,0);}
.me7_c00410{transform:matrix(0.249905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249905,0.000000,0.000000,0.250000,0,0);}
.mdf_c00410{transform:matrix(0.250055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250055,0.000000,0.000000,0.250000,0,0);}
.m4d_c00410{transform:matrix(0.250150,0.001501,-0.001500,0.249996,0,0);-ms-transform:matrix(0.250150,0.001501,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.250150,0.001501,-0.001500,0.249996,0,0);}
.m1b_c00410{transform:matrix(0.250155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250155,0.000000,0.000000,0.250000,0,0);}
.me6_c00410{transform:matrix(0.250705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250705,0.000000,0.000000,0.250000,0,0);}
.m82_c00410{transform:matrix(0.250905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250905,0.000000,0.000000,0.250000,0,0);}
.m137_c00410{transform:matrix(0.250974,0.004267,-0.004249,0.249964,0,0);-ms-transform:matrix(0.250974,0.004267,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.250974,0.004267,-0.004249,0.249964,0,0);}
.m83_c00410{transform:matrix(0.251025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251025,0.000000,0.000000,0.250000,0,0);}
.ma_c00410{transform:matrix(0.251560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251560,0.000000,0.000000,0.250000,0,0);}
.m48_c00410{transform:matrix(0.251890,0.001511,-0.001500,0.249996,0,0);-ms-transform:matrix(0.251890,0.001511,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.251890,0.001511,-0.001500,0.249996,0,0);}
.m13_c00410{transform:matrix(0.251895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251895,0.000000,0.000000,0.250000,0,0);}
.m26_c00410{transform:matrix(0.252100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252100,0.000000,0.000000,0.250000,0,0);}
.m7f_c00410{transform:matrix(0.252200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252200,0.000000,0.000000,0.250000,0,0);}
.m79_c00410{transform:matrix(0.252240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252240,0.000000,0.000000,0.250000,0,0);}
.m149_c00410{transform:matrix(0.252321,0.006308,-0.006248,0.249922,0,0);-ms-transform:matrix(0.252321,0.006308,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.252321,0.006308,-0.006248,0.249922,0,0);}
.m30_c00410{transform:matrix(0.252505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252505,0.000000,0.000000,0.250000,0,0);}
.m44_c00410{transform:matrix(0.252560,0.001515,-0.001500,0.249996,0,0);-ms-transform:matrix(0.252560,0.001515,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.252560,0.001515,-0.001500,0.249996,0,0);}
.m3d_c00410{transform:matrix(0.252570,0.001515,-0.001500,0.249996,0,0);-ms-transform:matrix(0.252570,0.001515,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.252570,0.001515,-0.001500,0.249996,0,0);}
.m13a_c00410{transform:matrix(0.252798,0.004298,-0.004249,0.249964,0,0);-ms-transform:matrix(0.252798,0.004298,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.252798,0.004298,-0.004249,0.249964,0,0);}
.m10e_c00410{transform:matrix(0.253360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253360,0.000000,0.000000,0.250000,0,0);}
.m14d_c00410{transform:matrix(0.253706,0.006343,-0.006248,0.249922,0,0);-ms-transform:matrix(0.253706,0.006343,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.253706,0.006343,-0.006248,0.249922,0,0);}
.m2f_c00410{transform:matrix(0.254150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254150,0.000000,0.000000,0.250000,0,0);}
.me5_c00410{transform:matrix(0.254185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254185,0.000000,0.000000,0.250000,0,0);}
.m130_c00410{transform:matrix(0.254308,0.004323,-0.004249,0.249964,0,0);-ms-transform:matrix(0.254308,0.004323,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.254308,0.004323,-0.004249,0.249964,0,0);}
.md0_c00410{transform:matrix(0.254345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254345,0.000000,0.000000,0.250000,0,0);}
.m59_c00410{transform:matrix(0.255010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255010,0.000000,0.000000,0.250000,0,0);}
.m27_c00410{transform:matrix(0.255295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255295,0.000000,0.000000,0.250000,0,0);}
.m60_c00410{transform:matrix(0.255705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255705,0.000000,0.000000,0.250000,0,0);}
.m152_c00410{transform:matrix(0.256220,0.006405,-0.006248,0.249922,0,0);-ms-transform:matrix(0.256220,0.006405,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.256220,0.006405,-0.006248,0.249922,0,0);}
.m8_c00410{transform:matrix(0.256785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256785,0.000000,0.000000,0.250000,0,0);}
.m147_c00410{transform:matrix(0.256885,0.006422,-0.006248,0.249922,0,0);-ms-transform:matrix(0.256885,0.006422,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.256885,0.006422,-0.006248,0.249922,0,0);}
.mb_c00410{transform:matrix(0.257030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257030,0.000000,0.000000,0.250000,0,0);}
.m96_c00410{transform:matrix(0.257070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257070,0.000000,0.000000,0.250000,0,0);}
.m69_c00410{transform:matrix(0.257100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257100,0.000000,0.000000,0.250000,0,0);}
.m9c_c00410{transform:matrix(0.257795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257795,0.000000,0.000000,0.250000,0,0);}
.m131_c00410{transform:matrix(0.258033,0.004387,-0.004249,0.249964,0,0);-ms-transform:matrix(0.258033,0.004387,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.258033,0.004387,-0.004249,0.249964,0,0);}
.m10f_c00410{transform:matrix(0.258860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258860,0.000000,0.000000,0.250000,0,0);}
.m67_c00410{transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);}
.m6b_c00410{transform:matrix(0.259955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259955,0.000000,0.000000,0.250000,0,0);}
.m134_c00410{transform:matrix(0.261327,0.004443,-0.004249,0.249964,0,0);-ms-transform:matrix(0.261327,0.004443,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.261327,0.004443,-0.004249,0.249964,0,0);}
.m4_c00410{transform:matrix(0.262213,0.003409,-0.003250,0.249979,0,0);-ms-transform:matrix(0.262213,0.003409,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.262213,0.003409,-0.003250,0.249979,0,0);}
.m65_c00410{transform:matrix(0.262850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262850,0.000000,0.000000,0.250000,0,0);}
.m8a_c00410{transform:matrix(0.262865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262865,0.000000,0.000000,0.250000,0,0);}
.m110_c00410{transform:matrix(0.262885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262885,0.000000,0.000000,0.250000,0,0);}
.m10d_c00410{transform:matrix(0.263090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263090,0.000000,0.000000,0.250000,0,0);}
.m16_c00410{transform:matrix(0.263660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263660,0.000000,0.000000,0.250000,0,0);}
.mbf_c00410{transform:matrix(0.264135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264135,0.000000,0.000000,0.250000,0,0);}
.m51_c00410{transform:matrix(0.265685,0.001594,-0.001500,0.249996,0,0);-ms-transform:matrix(0.265685,0.001594,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.265685,0.001594,-0.001500,0.249996,0,0);}
.m37_c00410{transform:matrix(0.265940,0.001596,-0.001500,0.249996,0,0);-ms-transform:matrix(0.265940,0.001596,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.265940,0.001596,-0.001500,0.249996,0,0);}
.mcf_c00410{transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);}
.m133_c00410{transform:matrix(0.266342,0.004528,-0.004249,0.249964,0,0);-ms-transform:matrix(0.266342,0.004528,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.266342,0.004528,-0.004249,0.249964,0,0);}
.m14_c00410{transform:matrix(0.267910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267910,0.000000,0.000000,0.250000,0,0);}
.m4c_c00410{transform:matrix(0.268170,0.001609,-0.001500,0.249996,0,0);-ms-transform:matrix(0.268170,0.001609,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.268170,0.001609,-0.001500,0.249996,0,0);}
.m14f_c00410{transform:matrix(0.268226,0.006706,-0.006248,0.249922,0,0);-ms-transform:matrix(0.268226,0.006706,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.268226,0.006706,-0.006248,0.249922,0,0);}
.m58_c00410{transform:matrix(0.268540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268540,0.000000,0.000000,0.250000,0,0);}
.m38_c00410{transform:matrix(0.268575,0.001611,-0.001500,0.249996,0,0);-ms-transform:matrix(0.268575,0.001611,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.268575,0.001611,-0.001500,0.249996,0,0);}
.m1c_c00410{transform:matrix(0.269845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269845,0.000000,0.000000,0.250000,0,0);}
.mca_c00410{transform:matrix(0.270145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270145,0.000000,0.000000,0.250000,0,0);}
.m4e_c00410{transform:matrix(0.270205,0.001621,-0.001500,0.249996,0,0);-ms-transform:matrix(0.270205,0.001621,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.270205,0.001621,-0.001500,0.249996,0,0);}
.m4b_c00410{transform:matrix(0.271765,0.001631,-0.001500,0.249996,0,0);-ms-transform:matrix(0.271765,0.001631,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.271765,0.001631,-0.001500,0.249996,0,0);}
.m150_c00410{transform:matrix(0.271985,0.006800,-0.006248,0.249922,0,0);-ms-transform:matrix(0.271985,0.006800,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.271985,0.006800,-0.006248,0.249922,0,0);}
.m154_c00410{transform:matrix(0.273030,0.006826,-0.006248,0.249922,0,0);-ms-transform:matrix(0.273030,0.006826,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.273030,0.006826,-0.006248,0.249922,0,0);}
.m6a_c00410{transform:matrix(0.273325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273325,0.000000,0.000000,0.250000,0,0);}
.mc_c00410{transform:matrix(0.273955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273955,0.000000,0.000000,0.250000,0,0);}
.m6c_c00410{transform:matrix(0.274260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274260,0.000000,0.000000,0.250000,0,0);}
.m53_c00410{transform:matrix(0.274650,0.001648,-0.001500,0.249996,0,0);-ms-transform:matrix(0.274650,0.001648,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.274650,0.001648,-0.001500,0.249996,0,0);}
.mc4_c00410{transform:matrix(0.276230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276230,0.000000,0.000000,0.250000,0,0);}
.m39_c00410{transform:matrix(0.276350,0.001658,-0.001500,0.249996,0,0);-ms-transform:matrix(0.276350,0.001658,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.276350,0.001658,-0.001500,0.249996,0,0);}
.m57_c00410{transform:matrix(0.276380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276380,0.000000,0.000000,0.250000,0,0);}
.m34_c00410{transform:matrix(0.279475,0.001677,-0.001500,0.249996,0,0);-ms-transform:matrix(0.279475,0.001677,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.279475,0.001677,-0.001500,0.249996,0,0);}
.m19_c00410{transform:matrix(0.279700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279700,0.000000,0.000000,0.250000,0,0);}
.m114_c00410{transform:matrix(0.280520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280520,0.000000,0.000000,0.250000,0,0);}
.m138_c00410{transform:matrix(0.282684,0.004806,-0.004249,0.249964,0,0);-ms-transform:matrix(0.282684,0.004806,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.282684,0.004806,-0.004249,0.249964,0,0);}
.m56_c00410{transform:matrix(0.282725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282725,0.000000,0.000000,0.250000,0,0);}
.m62_c00410{transform:matrix(0.283215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283215,0.000000,0.000000,0.250000,0,0);}
.m136_c00410{transform:matrix(0.283334,0.004817,-0.004249,0.249964,0,0);-ms-transform:matrix(0.283334,0.004817,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.283334,0.004817,-0.004249,0.249964,0,0);}
.mcc_c00410{transform:matrix(0.285100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285100,0.000000,0.000000,0.250000,0,0);}
.m9_c00410{transform:matrix(0.287165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287165,0.000000,0.000000,0.250000,0,0);}
.m35_c00410{transform:matrix(0.288395,0.001730,-0.001500,0.249996,0,0);-ms-transform:matrix(0.288395,0.001730,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.288395,0.001730,-0.001500,0.249996,0,0);}
.m36_c00410{transform:matrix(0.288825,0.001733,-0.001500,0.249996,0,0);-ms-transform:matrix(0.288825,0.001733,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.288825,0.001733,-0.001500,0.249996,0,0);}
.m32_c00410{transform:matrix(0.293120,0.001759,-0.001500,0.249996,0,0);-ms-transform:matrix(0.293120,0.001759,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.293120,0.001759,-0.001500,0.249996,0,0);}
.m5_c00410{transform:matrix(0.295925,0.003847,-0.003250,0.249979,0,0);-ms-transform:matrix(0.295925,0.003847,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.295925,0.003847,-0.003250,0.249979,0,0);}
.m14c_c00410{transform:matrix(0.296992,0.007425,-0.006248,0.249922,0,0);-ms-transform:matrix(0.296992,0.007425,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.296992,0.007425,-0.006248,0.249922,0,0);}
.m33_c00410{transform:matrix(0.298860,0.001793,-0.001500,0.249996,0,0);-ms-transform:matrix(0.298860,0.001793,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.298860,0.001793,-0.001500,0.249996,0,0);}
.m3b_c00410{transform:matrix(0.300075,0.001800,-0.001500,0.249996,0,0);-ms-transform:matrix(0.300075,0.001800,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.300075,0.001800,-0.001500,0.249996,0,0);}
.mc6_c00410{transform:matrix(0.332980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332980,0.000000,0.000000,0.250000,0,0);}
.m0_c00410{transform:matrix(0.347040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347040,0.000000,0.000000,0.250000,0,0);}
.m7_c00410{transform:matrix(0.395035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395035,0.000000,0.000000,0.250000,0,0);}
.m11_c00410{transform:matrix(0.503115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.503115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.503115,0.000000,0.000000,0.250000,0,0);}
.m12_c00410{transform:matrix(0.907005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.907005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.907005,0.000000,0.000000,0.250000,0,0);}
.m10_c00410{transform:matrix(1.591985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.591985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.591985,0.000000,0.000000,0.250000,0,0);}
.v0_c00410{vertical-align:0.000000px;}
.ls0_c00410{letter-spacing:0.000000px;}
.sc__c00410{text-shadow:none;}
.sc0_c00410{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__c00410{-webkit-text-stroke:0px transparent;}
.sc0_c00410{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00410{word-spacing:0.000000px;}
._1_c00410{width:13.206663px;}
._0_c00410{width:19.068902px;}
.fc0_c00410{color:transparent;}
.fs2_c00410{font-size:24.000000px;}
.fs5_c00410{font-size:66.001188px;}
.fs3_c00410{font-size:72.000000px;}
.fs7_c00410{font-size:72.001296px;}
.fsc_c00410{font-size:72.010403px;}
.fsf_c00410{font-size:72.022496px;}
.fs4_c00410{font-size:78.000000px;}
.fs6_c00410{font-size:78.001404px;}
.fs1_c00410{font-size:78.006591px;}
.fsd_c00410{font-size:78.011270px;}
.fse_c00410{font-size:83.959040px;}
.fs0_c00410{font-size:84.000000px;}
.fsa_c00410{font-size:84.012137px;}
.fs8_c00410{font-size:90.000000px;}
.fs9_c00410{font-size:96.000000px;}
.fsb_c00410{font-size:102.014738px;}
.y0_c00410{bottom:0.000000px;}
.yde_c00410{bottom:56.904450px;}
.ydd_c00410{bottom:58.890525px;}
.ydc_c00410{bottom:59.686763px;}
.ydb_c00410{bottom:60.841500px;}
.yda_c00410{bottom:61.388587px;}
.yd9_c00410{bottom:63.332325px;}
.yd8_c00410{bottom:65.016600px;}
.yd7_c00410{bottom:66.091538px;}
.yd6_c00410{bottom:66.942788px;}
.yd5_c00410{bottom:68.062950px;}
.yd4_c00410{bottom:69.406800px;}
.yd3_c00410{bottom:70.234425px;}
.yd2_c00410{bottom:71.314275px;}
.yd1_c00410{bottom:72.107663px;}
.yd0_c00410{bottom:73.713000px;}
.ycf_c00410{bottom:91.515156px;}
.yce_c00410{bottom:94.377972px;}
.ycd_c00410{bottom:97.211268px;}
.ycc_c00410{bottom:100.498596px;}
.ycb_c00410{bottom:101.490324px;}
.yca_c00410{bottom:103.236660px;}
.yc9_c00410{bottom:105.028644px;}
.yc8_c00410{bottom:106.446276px;}
.yc7_c00410{bottom:107.518212px;}
.yc6_c00410{bottom:109.236948px;}
.yc5_c00410{bottom:110.980500px;}
.yc3_c00410{bottom:142.410670px;}
.yc4_c00410{bottom:142.411105px;}
.yc2_c00410{bottom:166.970623px;}
.yc1_c00410{bottom:169.178376px;}
.yc0_c00410{bottom:169.781760px;}
.ybf_c00410{bottom:172.163497px;}
.ybe_c00410{bottom:172.776669px;}
.ybd_c00410{bottom:173.953755px;}
.ybc_c00410{bottom:175.343352px;}
.ybb_c00410{bottom:175.759546px;}
.yba_c00410{bottom:176.752069px;}
.yb9_c00410{bottom:177.538461px;}
.yb8_c00410{bottom:178.106073px;}
.yb7_c00410{bottom:178.492717px;}
.yb6_c00410{bottom:179.270260px;}
.yb5_c00410{bottom:202.842513px;}
.yb4_c00410{bottom:203.345821px;}
.yb3_c00410{bottom:203.652381px;}
.yb2_c00410{bottom:204.659253px;}
.yb1_c00410{bottom:205.147302px;}
.yb0_c00410{bottom:205.957170px;}
.yaf_c00410{bottom:206.239059px;}
.yae_c00410{bottom:206.452402px;}
.yad_c00410{bottom:207.334608px;}
.yac_c00410{bottom:207.735693px;}
.yab_c00410{bottom:207.929985px;}
.yaa_c00410{bottom:208.705720px;}
.ya9_c00410{bottom:240.663016px;}
.ya8_c00410{bottom:241.021062px;}
.ya7_c00410{bottom:242.528163px;}
.ya6_c00410{bottom:243.128892px;}
.ya5_c00410{bottom:243.500860px;}
.ya4_c00410{bottom:244.993809px;}
.ya3_c00410{bottom:245.742106px;}
.ya2_c00410{bottom:246.494356px;}
.ya1_c00410{bottom:247.256347px;}
.ya0_c00410{bottom:248.178963px;}
.y9f_c00410{bottom:248.908748px;}
.y9e_c00410{bottom:250.024500px;}
.y9d_c00410{bottom:283.326000px;}
.y9c_c00410{bottom:283.675500px;}
.y9b_c00410{bottom:283.947000px;}
.y9a_c00410{bottom:284.296500px;}
.y99_c00410{bottom:284.899500px;}
.y98_c00410{bottom:285.087000px;}
.y97_c00410{bottom:285.510000px;}
.y96_c00410{bottom:286.203000px;}
.y95_c00410{bottom:313.683000px;}
.y94_c00410{bottom:314.482500px;}
.y93_c00410{bottom:314.746500px;}
.y92_c00410{bottom:315.016500px;}
.y91_c00410{bottom:315.639000px;}
.y90_c00410{bottom:315.913500px;}
.y8f_c00410{bottom:316.263000px;}
.y8e_c00410{bottom:316.522500px;}
.y8d_c00410{bottom:317.148000px;}
.y8c_c00410{bottom:317.314500px;}
.y8b_c00410{bottom:317.677500px;}
.y8a_c00410{bottom:318.111000px;}
.y89_c00410{bottom:318.631500px;}
.y88_c00410{bottom:319.057500px;}
.y87_c00410{bottom:353.182500px;}
.y86_c00410{bottom:385.371000px;}
.y85_c00410{bottom:385.762500px;}
.y84_c00410{bottom:386.074500px;}
.y83_c00410{bottom:386.548500px;}
.y82_c00410{bottom:386.775000px;}
.y81_c00410{bottom:387.232500px;}
.y80_c00410{bottom:387.550500px;}
.y7f_c00410{bottom:388.327500px;}
.y7e_c00410{bottom:388.551000px;}
.y7d_c00410{bottom:389.016000px;}
.y7c_c00410{bottom:389.320500px;}
.y7b_c00410{bottom:389.553000px;}
.y7a_c00410{bottom:389.779500px;}
.y79_c00410{bottom:390.153000px;}
.y78_c00410{bottom:421.920000px;}
.y77_c00410{bottom:457.398000px;}
.y76_c00410{bottom:457.938000px;}
.y75_c00410{bottom:458.542500px;}
.y74_c00410{bottom:458.821500px;}
.y73_c00410{bottom:459.165000px;}
.y72_c00410{bottom:459.351000px;}
.y71_c00410{bottom:459.973500px;}
.y70_c00410{bottom:460.588500px;}
.y6f_c00410{bottom:460.852500px;}
.y6e_c00410{bottom:461.295000px;}
.y6d_c00410{bottom:461.635500px;}
.y6c_c00410{bottom:462.166500px;}
.y6b_c00410{bottom:462.781500px;}
.y6a_c00410{bottom:491.823000px;}
.y69_c00410{bottom:492.021000px;}
.y68_c00410{bottom:492.486000px;}
.y67_c00410{bottom:492.687000px;}
.y66_c00410{bottom:492.891000px;}
.y65_c00410{bottom:493.558500px;}
.y64_c00410{bottom:493.752000px;}
.y63_c00410{bottom:494.157000px;}
.y62_c00410{bottom:494.415000px;}
.y61_c00410{bottom:494.616000px;}
.y60_c00410{bottom:494.809500px;}
.y5f_c00410{bottom:495.138000px;}
.y5e_c00410{bottom:495.340500px;}
.y5d_c00410{bottom:495.993000px;}
.y5c_c00410{bottom:528.163500px;}
.y5b_c00410{bottom:528.763500px;}
.y5a_c00410{bottom:529.260000px;}
.y59_c00410{bottom:529.668000px;}
.y58_c00410{bottom:530.074500px;}
.y57_c00410{bottom:530.656500px;}
.y56_c00410{bottom:531.354000px;}
.y55_c00410{bottom:531.657000px;}
.y54_c00410{bottom:532.162500px;}
.y53_c00410{bottom:532.461000px;}
.y52_c00410{bottom:533.037000px;}
.y51_c00410{bottom:533.440500px;}
.y50_c00410{bottom:533.935500px;}
.y4f_c00410{bottom:534.331500px;}
.y4e_c00410{bottom:563.598000px;}
.y4d_c00410{bottom:563.779500px;}
.y4c_c00410{bottom:564.574500px;}
.y4b_c00410{bottom:565.374000px;}
.y4a_c00410{bottom:565.992000px;}
.y49_c00410{bottom:566.622000px;}
.y48_c00410{bottom:566.877000px;}
.y47_c00410{bottom:567.328500px;}
.y46_c00410{bottom:567.499500px;}
.y45_c00410{bottom:567.862500px;}
.y44_c00410{bottom:568.285500px;}
.y43_c00410{bottom:568.555500px;}
.y42_c00410{bottom:568.891500px;}
.y41_c00410{bottom:600.904500px;}
.y40_c00410{bottom:635.493000px;}
.y3f_c00410{bottom:670.069500px;}
.y3e_c00410{bottom:670.183500px;}
.y3d_c00410{bottom:670.458000px;}
.y3c_c00410{bottom:670.635000px;}
.y3b_c00410{bottom:670.798500px;}
.y3a_c00410{bottom:671.184000px;}
.y39_c00410{bottom:671.295000px;}
.y38_c00410{bottom:671.518500px;}
.y37_c00410{bottom:672.072000px;}
.y36_c00410{bottom:672.235500px;}
.y35_c00410{bottom:672.567000px;}
.y34_c00410{bottom:672.781500px;}
.y33_c00410{bottom:672.949500px;}
.y32_c00410{bottom:673.110000px;}
.y31_c00410{bottom:673.381500px;}
.y30_c00410{bottom:706.591500px;}
.y2f_c00410{bottom:742.771500px;}
.y2e_c00410{bottom:778.857000px;}
.y2d_c00410{bottom:815.331000px;}
.y2c_c00410{bottom:817.704000px;}
.y28_c00410{bottom:850.130619px;}
.y25_c00410{bottom:850.131030px;}
.y23_c00410{bottom:850.131072px;}
.y27_c00410{bottom:850.131099px;}
.y26_c00410{bottom:850.131210px;}
.y20_c00410{bottom:850.131294px;}
.y29_c00410{bottom:850.131348px;}
.y21_c00410{bottom:850.131423px;}
.y2a_c00410{bottom:850.131597px;}
.y24_c00410{bottom:850.131621px;}
.y22_c00410{bottom:850.131783px;}
.y2b_c00410{bottom:850.132266px;}
.y1a_c00410{bottom:887.570769px;}
.y19_c00410{bottom:887.571060px;}
.y1b_c00410{bottom:887.571138px;}
.y1c_c00410{bottom:887.571207px;}
.y1e_c00410{bottom:887.571216px;}
.y1d_c00410{bottom:887.571447px;}
.y1f_c00410{bottom:887.571456px;}
.y16_c00410{bottom:887.571462px;}
.y17_c00410{bottom:887.571531px;}
.y15_c00410{bottom:887.571633px;}
.y18_c00410{bottom:887.571771px;}
.y14_c00410{bottom:922.045113px;}
.y13_c00410{bottom:922.244400px;}
.y12_c00410{bottom:922.578129px;}
.y11_c00410{bottom:922.783770px;}
.y10_c00410{bottom:923.104530px;}
.yf_c00410{bottom:923.569569px;}
.ye_c00410{bottom:923.974578px;}
.yd_c00410{bottom:924.306687px;}
.yc_c00410{bottom:924.838056px;}
.yb_c00410{bottom:925.290000px;}
.ya_c00410{bottom:955.117500px;}
.y9_c00410{bottom:993.246000px;}
.y8_c00410{bottom:1029.367500px;}
.y7_c00410{bottom:1065.328500px;}
.y6_c00410{bottom:1150.434000px;}
.y5_c00410{bottom:1160.399992px;}
.y4_c00410{bottom:1161.267079px;}
.y3_c00410{bottom:1163.001292px;}
.y2_c00410{bottom:1163.703000px;}
.y1_c00410{bottom:1208.515500px;}
.h4_c00410{height:24.000000px;}
.h7_c00410{height:66.001188px;}
.h5_c00410{height:72.000000px;}
.h9_c00410{height:72.001296px;}
.he_c00410{height:72.010403px;}
.h11_c00410{height:72.022496px;}
.h6_c00410{height:78.000000px;}
.h8_c00410{height:78.001404px;}
.h3_c00410{height:78.006591px;}
.hf_c00410{height:78.011270px;}
.h10_c00410{height:83.959040px;}
.h2_c00410{height:84.000000px;}
.hc_c00410{height:84.012137px;}
.ha_c00410{height:90.000000px;}
.hb_c00410{height:96.000000px;}
.hd_c00410{height:102.014738px;}
.h1_c00410{height:1251.000000px;}
.h0_c00410{height:1251.150000px;}
.w0_c00410{width:915.000000px;}
.x0_c00410{left:0.000000px;}
.x5e_c00410{left:133.867500px;}
.x26_c00410{left:135.000000px;}
.x1d_c00410{left:136.350000px;}
.x71_c00410{left:137.954877px;}
.x48_c00410{left:157.410000px;}
.x43_c00410{left:166.590000px;}
.x68_c00410{left:168.214500px;}
.x1e_c00410{left:178.740000px;}
.x6e_c00410{left:179.989239px;}
.x69_c00410{left:188.734500px;}
.x37_c00410{left:189.808575px;}
.x6a_c00410{left:200.884500px;}
.x74_c00410{left:202.615500px;}
.x3e_c00410{left:210.060000px;}
.x5c_c00410{left:211.581000px;}
.x38_c00410{left:222.749763px;}
.x4f_c00410{left:232.200000px;}
.x75_c00410{left:234.351000px;}
.x15_c00410{left:244.080000px;}
.x2c_c00410{left:245.082000px;}
.x59_c00410{left:253.801500px;}
.x1f_c00410{left:254.880000px;}
.x39_c00410{left:264.869775px;}
.x44_c00410{left:266.490000px;}
.x32_c00410{left:277.018347px;}
.x50_c00410{left:288.630000px;}
.x16_c00410{left:298.350000px;}
.x45_c00410{left:299.700000px;}
.x4_c00410{left:306.267000px;}
.x20_c00410{left:308.610000px;}
.x33_c00410{left:310.229544px;}
.x6c_c00410{left:311.634000px;}
.x2d_c00410{left:320.406000px;}
.x8_c00410{left:321.570000px;}
.x9_c00410{left:330.750000px;}
.x61_c00410{left:332.533500px;}
.x5f_c00410{left:341.697000px;}
.xa_c00410{left:343.710000px;}
.xb_c00410{left:353.430000px;}
.x3a_c00410{left:354.781515px;}
.x5_c00410{left:360.244500px;}
.x54_c00410{left:364.683000px;}
.xc_c00410{left:375.030000px;}
.x1_c00410{left:379.890000px;}
.x34_c00410{left:386.100771px;}
.xd_c00410{left:387.450000px;}
.xe_c00410{left:396.630000px;}
.x49_c00410{left:397.710000px;}
.xf_c00410{left:408.240000px;}
.x17_c00410{left:409.860000px;}
.x2_c00410{left:419.850000px;}
.x21_c00410{left:430.920000px;}
.x6f_c00410{left:432.247481px;}
.x3_c00410{left:440.910000px;}
.x27_c00410{left:442.530000px;}
.x51_c00410{left:452.520000px;}
.x3b_c00410{left:453.603570px;}
.x10_c00410{left:465.210000px;}
.x3f_c00410{left:467.640000px;}
.x28_c00410{left:475.470000px;}
.x64_c00410{left:485.605500px;}
.x22_c00410{left:486.810000px;}
.x40_c00410{left:488.160000px;}
.x6_c00410{left:493.645500px;}
.x6b_c00410{left:496.962000px;}
.x5d_c00410{left:498.297000px;}
.x18_c00410{left:508.140000px;}
.x11_c00410{left:512.730000px;}
.x23_c00410{left:519.480000px;}
.x56_c00410{left:530.551500px;}
.x12_c00410{left:531.630000px;}
.x62_c00410{left:540.711000px;}
.x13_c00410{left:542.160000px;}
.x4a_c00410{left:552.690000px;}
.x7_c00410{left:560.344500px;}
.x3c_c00410{left:562.956003px;}
.x46_c00410{left:565.110000px;}
.x72_c00410{left:573.126940px;}
.x19_c00410{left:575.100000px;}
.x14_c00410{left:581.310000px;}
.x41_c00410{left:585.360000px;}
.x65_c00410{left:586.615500px;}
.x57_c00410{left:596.971500px;}
.x60_c00410{left:607.018500px;}
.x2e_c00410{left:609.327000px;}
.x4b_c00410{left:619.650000px;}
.x24_c00410{left:629.640000px;}
.x47_c00410{left:631.260000px;}
.x29_c00410{left:640.980000px;}
.x52_c00410{left:652.050000px;}
.x58_c00410{left:653.131500px;}
.x2f_c00410{left:662.787000px;}
.x4c_c00410{left:664.740000px;}
.x2a_c00410{left:675.000000px;}
.x55_c00410{left:684.919500px;}
.x1a_c00410{left:686.340000px;}
.x30_c00410{left:697.060500px;}
.x76_c00410{left:699.451500px;}
.x4d_c00410{left:707.400000px;}
.x5a_c00410{left:708.481500px;}
.x25_c00410{left:718.470000px;}
.x1b_c00410{left:719.550000px;}
.x35_c00410{left:730.087155px;}
.x3d_c00410{left:731.437578px;}
.x66_c00410{left:739.969500px;}
.x42_c00410{left:751.410000px;}
.x31_c00410{left:752.682000px;}
.x1c_c00410{left:763.290000px;}
.x4e_c00410{left:775.170000px;}
.x5b_c00410{left:784.891500px;}
.x2b_c00410{left:785.970000px;}
.x6d_c00410{left:787.267019px;}
.x36_c00410{left:797.589585px;}
.x67_c00410{left:807.495000px;}
.x77_c00410{left:810.744000px;}
.x53_c00410{left:818.640000px;}
.x70_c00410{left:820.160376px;}
.x63_c00410{left:829.897500px;}
.x73_c00410{left:853.578708px;}
@media print{
.v0_c00410{vertical-align:0.000000pt;}
.ls0_c00410{letter-spacing:0.000000pt;}
.ws0_c00410{word-spacing:0.000000pt;}
._1_c00410{width:11.739256pt;}
._0_c00410{width:16.950136pt;}
.fs2_c00410{font-size:21.333333pt;}
.fs5_c00410{font-size:58.667723pt;}
.fs3_c00410{font-size:64.000000pt;}
.fs7_c00410{font-size:64.001152pt;}
.fsc_c00410{font-size:64.009247pt;}
.fsf_c00410{font-size:64.019997pt;}
.fs4_c00410{font-size:69.333333pt;}
.fs6_c00410{font-size:69.334581pt;}
.fs1_c00410{font-size:69.339192pt;}
.fsd_c00410{font-size:69.343351pt;}
.fse_c00410{font-size:74.630258pt;}
.fs0_c00410{font-size:74.666667pt;}
.fsa_c00410{font-size:74.677455pt;}
.fs8_c00410{font-size:80.000000pt;}
.fs9_c00410{font-size:85.333333pt;}
.fsb_c00410{font-size:90.679767pt;}
.y0_c00410{bottom:0.000000pt;}
.yde_c00410{bottom:50.581733pt;}
.ydd_c00410{bottom:52.347133pt;}
.ydc_c00410{bottom:53.054900pt;}
.ydb_c00410{bottom:54.081333pt;}
.yda_c00410{bottom:54.567633pt;}
.yd9_c00410{bottom:56.295400pt;}
.yd8_c00410{bottom:57.792533pt;}
.yd7_c00410{bottom:58.748033pt;}
.yd6_c00410{bottom:59.504700pt;}
.yd5_c00410{bottom:60.500400pt;}
.yd4_c00410{bottom:61.694933pt;}
.yd3_c00410{bottom:62.430600pt;}
.yd2_c00410{bottom:63.390467pt;}
.yd1_c00410{bottom:64.095700pt;}
.yd0_c00410{bottom:65.522667pt;}
.ycf_c00410{bottom:81.346805pt;}
.yce_c00410{bottom:83.891531pt;}
.ycd_c00410{bottom:86.410016pt;}
.ycc_c00410{bottom:89.332085pt;}
.ycb_c00410{bottom:90.213621pt;}
.yca_c00410{bottom:91.765920pt;}
.yc9_c00410{bottom:93.358795pt;}
.yc8_c00410{bottom:94.618912pt;}
.yc7_c00410{bottom:95.571744pt;}
.yc6_c00410{bottom:97.099509pt;}
.yc5_c00410{bottom:98.649333pt;}
.yc3_c00410{bottom:126.587263pt;}
.yc4_c00410{bottom:126.587649pt;}
.yc2_c00410{bottom:148.418332pt;}
.yc1_c00410{bottom:150.380779pt;}
.yc0_c00410{bottom:150.917120pt;}
.ybf_c00410{bottom:153.034220pt;}
.ybe_c00410{bottom:153.579261pt;}
.ybd_c00410{bottom:154.625560pt;}
.ybc_c00410{bottom:155.860757pt;}
.ybb_c00410{bottom:156.230708pt;}
.yba_c00410{bottom:157.112951pt;}
.yb9_c00410{bottom:157.811965pt;}
.yb8_c00410{bottom:158.316509pt;}
.yb7_c00410{bottom:158.660193pt;}
.yb6_c00410{bottom:159.351343pt;}
.yb5_c00410{bottom:180.304456pt;}
.yb4_c00410{bottom:180.751841pt;}
.yb3_c00410{bottom:181.024339pt;}
.yb2_c00410{bottom:181.919336pt;}
.yb1_c00410{bottom:182.353157pt;}
.yb0_c00410{bottom:183.073040pt;}
.yaf_c00410{bottom:183.323608pt;}
.yae_c00410{bottom:183.513247pt;}
.yad_c00410{bottom:184.297429pt;}
.yac_c00410{bottom:184.653949pt;}
.yab_c00410{bottom:184.826653pt;}
.yaa_c00410{bottom:185.516196pt;}
.ya9_c00410{bottom:213.922681pt;}
.ya8_c00410{bottom:214.240944pt;}
.ya7_c00410{bottom:215.580589pt;}
.ya6_c00410{bottom:216.114571pt;}
.ya5_c00410{bottom:216.445209pt;}
.ya4_c00410{bottom:217.772275pt;}
.ya3_c00410{bottom:218.437428pt;}
.ya2_c00410{bottom:219.106095pt;}
.ya1_c00410{bottom:219.783420pt;}
.ya0_c00410{bottom:220.603523pt;}
.y9f_c00410{bottom:221.252220pt;}
.y9e_c00410{bottom:222.244000pt;}
.y9d_c00410{bottom:251.845333pt;}
.y9c_c00410{bottom:252.156000pt;}
.y9b_c00410{bottom:252.397333pt;}
.y9a_c00410{bottom:252.708000pt;}
.y99_c00410{bottom:253.244000pt;}
.y98_c00410{bottom:253.410667pt;}
.y97_c00410{bottom:253.786667pt;}
.y96_c00410{bottom:254.402667pt;}
.y95_c00410{bottom:278.829333pt;}
.y94_c00410{bottom:279.540000pt;}
.y93_c00410{bottom:279.774667pt;}
.y92_c00410{bottom:280.014667pt;}
.y91_c00410{bottom:280.568000pt;}
.y90_c00410{bottom:280.812000pt;}
.y8f_c00410{bottom:281.122667pt;}
.y8e_c00410{bottom:281.353333pt;}
.y8d_c00410{bottom:281.909333pt;}
.y8c_c00410{bottom:282.057333pt;}
.y8b_c00410{bottom:282.380000pt;}
.y8a_c00410{bottom:282.765333pt;}
.y89_c00410{bottom:283.228000pt;}
.y88_c00410{bottom:283.606667pt;}
.y87_c00410{bottom:313.940000pt;}
.y86_c00410{bottom:342.552000pt;}
.y85_c00410{bottom:342.900000pt;}
.y84_c00410{bottom:343.177333pt;}
.y83_c00410{bottom:343.598667pt;}
.y82_c00410{bottom:343.800000pt;}
.y81_c00410{bottom:344.206667pt;}
.y80_c00410{bottom:344.489333pt;}
.y7f_c00410{bottom:345.180000pt;}
.y7e_c00410{bottom:345.378667pt;}
.y7d_c00410{bottom:345.792000pt;}
.y7c_c00410{bottom:346.062667pt;}
.y7b_c00410{bottom:346.269333pt;}
.y7a_c00410{bottom:346.470667pt;}
.y79_c00410{bottom:346.802667pt;}
.y78_c00410{bottom:375.040000pt;}
.y77_c00410{bottom:406.576000pt;}
.y76_c00410{bottom:407.056000pt;}
.y75_c00410{bottom:407.593333pt;}
.y74_c00410{bottom:407.841333pt;}
.y73_c00410{bottom:408.146667pt;}
.y72_c00410{bottom:408.312000pt;}
.y71_c00410{bottom:408.865333pt;}
.y70_c00410{bottom:409.412000pt;}
.y6f_c00410{bottom:409.646667pt;}
.y6e_c00410{bottom:410.040000pt;}
.y6d_c00410{bottom:410.342667pt;}
.y6c_c00410{bottom:410.814667pt;}
.y6b_c00410{bottom:411.361333pt;}
.y6a_c00410{bottom:437.176000pt;}
.y69_c00410{bottom:437.352000pt;}
.y68_c00410{bottom:437.765333pt;}
.y67_c00410{bottom:437.944000pt;}
.y66_c00410{bottom:438.125333pt;}
.y65_c00410{bottom:438.718667pt;}
.y64_c00410{bottom:438.890667pt;}
.y63_c00410{bottom:439.250667pt;}
.y62_c00410{bottom:439.480000pt;}
.y61_c00410{bottom:439.658667pt;}
.y60_c00410{bottom:439.830667pt;}
.y5f_c00410{bottom:440.122667pt;}
.y5e_c00410{bottom:440.302667pt;}
.y5d_c00410{bottom:440.882667pt;}
.y5c_c00410{bottom:469.478667pt;}
.y5b_c00410{bottom:470.012000pt;}
.y5a_c00410{bottom:470.453333pt;}
.y59_c00410{bottom:470.816000pt;}
.y58_c00410{bottom:471.177333pt;}
.y57_c00410{bottom:471.694667pt;}
.y56_c00410{bottom:472.314667pt;}
.y55_c00410{bottom:472.584000pt;}
.y54_c00410{bottom:473.033333pt;}
.y53_c00410{bottom:473.298667pt;}
.y52_c00410{bottom:473.810667pt;}
.y51_c00410{bottom:474.169333pt;}
.y50_c00410{bottom:474.609333pt;}
.y4f_c00410{bottom:474.961333pt;}
.y4e_c00410{bottom:500.976000pt;}
.y4d_c00410{bottom:501.137333pt;}
.y4c_c00410{bottom:501.844000pt;}
.y4b_c00410{bottom:502.554667pt;}
.y4a_c00410{bottom:503.104000pt;}
.y49_c00410{bottom:503.664000pt;}
.y48_c00410{bottom:503.890667pt;}
.y47_c00410{bottom:504.292000pt;}
.y46_c00410{bottom:504.444000pt;}
.y45_c00410{bottom:504.766667pt;}
.y44_c00410{bottom:505.142667pt;}
.y43_c00410{bottom:505.382667pt;}
.y42_c00410{bottom:505.681333pt;}
.y41_c00410{bottom:534.137333pt;}
.y40_c00410{bottom:564.882667pt;}
.y3f_c00410{bottom:595.617333pt;}
.y3e_c00410{bottom:595.718667pt;}
.y3d_c00410{bottom:595.962667pt;}
.y3c_c00410{bottom:596.120000pt;}
.y3b_c00410{bottom:596.265333pt;}
.y3a_c00410{bottom:596.608000pt;}
.y39_c00410{bottom:596.706667pt;}
.y38_c00410{bottom:596.905333pt;}
.y37_c00410{bottom:597.397333pt;}
.y36_c00410{bottom:597.542667pt;}
.y35_c00410{bottom:597.837333pt;}
.y34_c00410{bottom:598.028000pt;}
.y33_c00410{bottom:598.177333pt;}
.y32_c00410{bottom:598.320000pt;}
.y31_c00410{bottom:598.561333pt;}
.y30_c00410{bottom:628.081333pt;}
.y2f_c00410{bottom:660.241333pt;}
.y2e_c00410{bottom:692.317333pt;}
.y2d_c00410{bottom:724.738667pt;}
.y2c_c00410{bottom:726.848000pt;}
.y28_c00410{bottom:755.671661pt;}
.y25_c00410{bottom:755.672027pt;}
.y23_c00410{bottom:755.672064pt;}
.y27_c00410{bottom:755.672088pt;}
.y26_c00410{bottom:755.672187pt;}
.y20_c00410{bottom:755.672261pt;}
.y29_c00410{bottom:755.672309pt;}
.y21_c00410{bottom:755.672376pt;}
.y2a_c00410{bottom:755.672531pt;}
.y24_c00410{bottom:755.672552pt;}
.y22_c00410{bottom:755.672696pt;}
.y2b_c00410{bottom:755.673125pt;}
.y1a_c00410{bottom:788.951795pt;}
.y19_c00410{bottom:788.952053pt;}
.y1b_c00410{bottom:788.952123pt;}
.y1c_c00410{bottom:788.952184pt;}
.y1e_c00410{bottom:788.952192pt;}
.y1d_c00410{bottom:788.952397pt;}
.y1f_c00410{bottom:788.952405pt;}
.y16_c00410{bottom:788.952411pt;}
.y17_c00410{bottom:788.952472pt;}
.y15_c00410{bottom:788.952563pt;}
.y18_c00410{bottom:788.952685pt;}
.y14_c00410{bottom:819.595656pt;}
.y13_c00410{bottom:819.772800pt;}
.y12_c00410{bottom:820.069448pt;}
.y11_c00410{bottom:820.252240pt;}
.y10_c00410{bottom:820.537360pt;}
.yf_c00410{bottom:820.950728pt;}
.ye_c00410{bottom:821.310736pt;}
.yd_c00410{bottom:821.605944pt;}
.yc_c00410{bottom:822.078272pt;}
.yb_c00410{bottom:822.480000pt;}
.ya_c00410{bottom:848.993333pt;}
.y9_c00410{bottom:882.885333pt;}
.y8_c00410{bottom:914.993333pt;}
.y7_c00410{bottom:946.958667pt;}
.y6_c00410{bottom:1022.608000pt;}
.y5_c00410{bottom:1031.466660pt;}
.y4_c00410{bottom:1032.237404pt;}
.y3_c00410{bottom:1033.778927pt;}
.y2_c00410{bottom:1034.402667pt;}
.y1_c00410{bottom:1074.236000pt;}
.h4_c00410{height:21.333333pt;}
.h7_c00410{height:58.667723pt;}
.h5_c00410{height:64.000000pt;}
.h9_c00410{height:64.001152pt;}
.he_c00410{height:64.009247pt;}
.h11_c00410{height:64.019997pt;}
.h6_c00410{height:69.333333pt;}
.h8_c00410{height:69.334581pt;}
.h3_c00410{height:69.339192pt;}
.hf_c00410{height:69.343351pt;}
.h10_c00410{height:74.630258pt;}
.h2_c00410{height:74.666667pt;}
.hc_c00410{height:74.677455pt;}
.ha_c00410{height:80.000000pt;}
.hb_c00410{height:85.333333pt;}
.hd_c00410{height:90.679767pt;}
.h1_c00410{height:1112.000000pt;}
.h0_c00410{height:1112.133333pt;}
.w0_c00410{width:813.333333pt;}
.x0_c00410{left:0.000000pt;}
.x5e_c00410{left:118.993333pt;}
.x26_c00410{left:120.000000pt;}
.x1d_c00410{left:121.200000pt;}
.x71_c00410{left:122.626557pt;}
.x48_c00410{left:139.920000pt;}
.x43_c00410{left:148.080000pt;}
.x68_c00410{left:149.524000pt;}
.x1e_c00410{left:158.880000pt;}
.x6e_c00410{left:159.990435pt;}
.x69_c00410{left:167.764000pt;}
.x37_c00410{left:168.718733pt;}
.x6a_c00410{left:178.564000pt;}
.x74_c00410{left:180.102667pt;}
.x3e_c00410{left:186.720000pt;}
.x5c_c00410{left:188.072000pt;}
.x38_c00410{left:197.999789pt;}
.x4f_c00410{left:206.400000pt;}
.x75_c00410{left:208.312000pt;}
.x15_c00410{left:216.960000pt;}
.x2c_c00410{left:217.850667pt;}
.x59_c00410{left:225.601333pt;}
.x1f_c00410{left:226.560000pt;}
.x39_c00410{left:235.439800pt;}
.x44_c00410{left:236.880000pt;}
.x32_c00410{left:246.238531pt;}
.x50_c00410{left:256.560000pt;}
.x16_c00410{left:265.200000pt;}
.x45_c00410{left:266.400000pt;}
.x4_c00410{left:272.237333pt;}
.x20_c00410{left:274.320000pt;}
.x33_c00410{left:275.759595pt;}
.x6c_c00410{left:277.008000pt;}
.x2d_c00410{left:284.805333pt;}
.x8_c00410{left:285.840000pt;}
.x9_c00410{left:294.000000pt;}
.x61_c00410{left:295.585333pt;}
.x5f_c00410{left:303.730667pt;}
.xa_c00410{left:305.520000pt;}
.xb_c00410{left:314.160000pt;}
.x3a_c00410{left:315.361347pt;}
.x5_c00410{left:320.217333pt;}
.x54_c00410{left:324.162667pt;}
.xc_c00410{left:333.360000pt;}
.x1_c00410{left:337.680000pt;}
.x34_c00410{left:343.200685pt;}
.xd_c00410{left:344.400000pt;}
.xe_c00410{left:352.560000pt;}
.x49_c00410{left:353.520000pt;}
.xf_c00410{left:362.880000pt;}
.x17_c00410{left:364.320000pt;}
.x2_c00410{left:373.200000pt;}
.x21_c00410{left:383.040000pt;}
.x6f_c00410{left:384.219983pt;}
.x3_c00410{left:391.920000pt;}
.x27_c00410{left:393.360000pt;}
.x51_c00410{left:402.240000pt;}
.x3b_c00410{left:403.203173pt;}
.x10_c00410{left:413.520000pt;}
.x3f_c00410{left:415.680000pt;}
.x28_c00410{left:422.640000pt;}
.x64_c00410{left:431.649333pt;}
.x22_c00410{left:432.720000pt;}
.x40_c00410{left:433.920000pt;}
.x6_c00410{left:438.796000pt;}
.x6b_c00410{left:441.744000pt;}
.x5d_c00410{left:442.930667pt;}
.x18_c00410{left:451.680000pt;}
.x11_c00410{left:455.760000pt;}
.x23_c00410{left:461.760000pt;}
.x56_c00410{left:471.601333pt;}
.x12_c00410{left:472.560000pt;}
.x62_c00410{left:480.632000pt;}
.x13_c00410{left:481.920000pt;}
.x4a_c00410{left:491.280000pt;}
.x7_c00410{left:498.084000pt;}
.x3c_c00410{left:500.405336pt;}
.x46_c00410{left:502.320000pt;}
.x72_c00410{left:509.446169pt;}
.x19_c00410{left:511.200000pt;}
.x14_c00410{left:516.720000pt;}
.x41_c00410{left:520.320000pt;}
.x65_c00410{left:521.436000pt;}
.x57_c00410{left:530.641333pt;}
.x60_c00410{left:539.572000pt;}
.x2e_c00410{left:541.624000pt;}
.x4b_c00410{left:550.800000pt;}
.x24_c00410{left:559.680000pt;}
.x47_c00410{left:561.120000pt;}
.x29_c00410{left:569.760000pt;}
.x52_c00410{left:579.600000pt;}
.x58_c00410{left:580.561333pt;}
.x2f_c00410{left:589.144000pt;}
.x4c_c00410{left:590.880000pt;}
.x2a_c00410{left:600.000000pt;}
.x55_c00410{left:608.817333pt;}
.x1a_c00410{left:610.080000pt;}
.x30_c00410{left:619.609333pt;}
.x76_c00410{left:621.734667pt;}
.x4d_c00410{left:628.800000pt;}
.x5a_c00410{left:629.761333pt;}
.x25_c00410{left:638.640000pt;}
.x1b_c00410{left:639.600000pt;}
.x35_c00410{left:648.966360pt;}
.x3d_c00410{left:650.166736pt;}
.x66_c00410{left:657.750667pt;}
.x42_c00410{left:667.920000pt;}
.x31_c00410{left:669.050667pt;}
.x1c_c00410{left:678.480000pt;}
.x4e_c00410{left:689.040000pt;}
.x5b_c00410{left:697.681333pt;}
.x2b_c00410{left:698.640000pt;}
.x6d_c00410{left:699.792905pt;}
.x36_c00410{left:708.968520pt;}
.x67_c00410{left:717.773333pt;}
.x77_c00410{left:720.661333pt;}
.x53_c00410{left:727.680000pt;}
.x70_c00410{left:729.031445pt;}
.x63_c00410{left:737.686667pt;}
.x73_c00410{left:758.736629pt;}
}





/* 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_c00411 {
    display:none;
  }
  .loading-indicator_c00411.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00411 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_c00411 { 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_c00411" -> "#page-container .classname_c00411")
 */
.pf_c00411 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00411 { /* 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_c00411.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00411 { /* 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_c00411 { /* 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_c00411 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00411 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00411 {overflow:visible;}
  }
}
.c_c00411 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00411 { /* 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_c00411:after { /* webkit #35443 */
  content: '';
}
.t_c00411:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00411 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 */
}
.__c00411 { /* 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_c00411 { /* info for Javascript */
  display:none;
}
.l_c00411 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00411 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00411 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00411: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_c00411 {
    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_c00411.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00411.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_c00411 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00411{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00411;src:url('chunks/assets/font_c605e72f209fc835e906f064.woff2')format("woff");}.ff1_c00411{font-family:ff1_c00411;line-height:1.000000;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;}
.m1_c00411{transform:matrix(0.010050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.010050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.010050,0.000000,0.000000,0.250000,0,0);}
.m19_c00411{transform:matrix(0.013519,-0.000122,0.002250,0.249990,0,0);-ms-transform:matrix(0.013519,-0.000122,0.002250,0.249990,0,0);-webkit-transform:matrix(0.013519,-0.000122,0.002250,0.249990,0,0);}
.m6d_c00411{transform:matrix(0.054663,-0.000437,0.002000,0.249992,0,0);-ms-transform:matrix(0.054663,-0.000437,0.002000,0.249992,0,0);-webkit-transform:matrix(0.054663,-0.000437,0.002000,0.249992,0,0);}
.m0_c00411{transform:matrix(0.060020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060020,0.000000,0.000000,0.250000,0,0);}
.m18_c00411{transform:matrix(0.064387,-0.000579,0.002250,0.249990,0,0);-ms-transform:matrix(0.064387,-0.000579,0.002250,0.249990,0,0);-webkit-transform:matrix(0.064387,-0.000579,0.002250,0.249990,0,0);}
.m7a_c00411{transform:matrix(0.083820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.083820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.083820,0.000000,0.000000,0.250000,0,0);}
.m47_c00411{transform:matrix(0.092884,-0.000372,0.001000,0.249998,0,0);-ms-transform:matrix(0.092884,-0.000372,0.001000,0.249998,0,0);-webkit-transform:matrix(0.092884,-0.000372,0.001000,0.249998,0,0);}
.m6e_c00411{transform:matrix(0.118956,-0.000952,0.002000,0.249992,0,0);-ms-transform:matrix(0.118956,-0.000952,0.002000,0.249992,0,0);-webkit-transform:matrix(0.118956,-0.000952,0.002000,0.249992,0,0);}
.m7d_c00411{transform:matrix(0.134535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134535,0.000000,0.000000,0.250000,0,0);}
.m6f_c00411{transform:matrix(0.145920,-0.001167,0.002000,0.249992,0,0);-ms-transform:matrix(0.145920,-0.001167,0.002000,0.249992,0,0);-webkit-transform:matrix(0.145920,-0.001167,0.002000,0.249992,0,0);}
.m6b_c00411{transform:matrix(0.147310,-0.001178,0.002000,0.249992,0,0);-ms-transform:matrix(0.147310,-0.001178,0.002000,0.249992,0,0);-webkit-transform:matrix(0.147310,-0.001178,0.002000,0.249992,0,0);}
.m67_c00411{transform:matrix(0.155575,-0.001245,0.002000,0.249992,0,0);-ms-transform:matrix(0.155575,-0.001245,0.002000,0.249992,0,0);-webkit-transform:matrix(0.155575,-0.001245,0.002000,0.249992,0,0);}
.m5c_c00411{transform:matrix(0.157030,-0.001256,0.002000,0.249992,0,0);-ms-transform:matrix(0.157030,-0.001256,0.002000,0.249992,0,0);-webkit-transform:matrix(0.157030,-0.001256,0.002000,0.249992,0,0);}
.m7f_c00411{transform:matrix(0.161125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161125,0.000000,0.000000,0.250000,0,0);}
.m4_c00411{transform:matrix(0.162195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162195,0.000000,0.000000,0.250000,0,0);}
.m7e_c00411{transform:matrix(0.166425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166425,0.000000,0.000000,0.250000,0,0);}
.m24_c00411{transform:matrix(0.168411,-0.001179,0.001750,0.249994,0,0);-ms-transform:matrix(0.168411,-0.001179,0.001750,0.249994,0,0);-webkit-transform:matrix(0.168411,-0.001179,0.001750,0.249994,0,0);}
.m2_c00411{transform:matrix(0.169945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169945,0.000000,0.000000,0.250000,0,0);}
.m7c_c00411{transform:matrix(0.171025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171025,0.000000,0.000000,0.250000,0,0);}
.m76_c00411{transform:matrix(0.172019,-0.001376,0.002000,0.249992,0,0);-ms-transform:matrix(0.172019,-0.001376,0.002000,0.249992,0,0);-webkit-transform:matrix(0.172019,-0.001376,0.002000,0.249992,0,0);}
.m65_c00411{transform:matrix(0.172739,-0.001382,0.002000,0.249992,0,0);-ms-transform:matrix(0.172739,-0.001382,0.002000,0.249992,0,0);-webkit-transform:matrix(0.172739,-0.001382,0.002000,0.249992,0,0);}
.m3_c00411{transform:matrix(0.174605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174605,0.000000,0.000000,0.250000,0,0);}
.m75_c00411{transform:matrix(0.174779,-0.001398,0.002000,0.249992,0,0);-ms-transform:matrix(0.174779,-0.001398,0.002000,0.249992,0,0);-webkit-transform:matrix(0.174779,-0.001398,0.002000,0.249992,0,0);}
.m73_c00411{transform:matrix(0.178239,-0.001426,0.002000,0.249992,0,0);-ms-transform:matrix(0.178239,-0.001426,0.002000,0.249992,0,0);-webkit-transform:matrix(0.178239,-0.001426,0.002000,0.249992,0,0);}
.mc_c00411{transform:matrix(0.180280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180280,0.000000,0.000000,0.250000,0,0);}
.m69_c00411{transform:matrix(0.190849,-0.001527,0.002000,0.249992,0,0);-ms-transform:matrix(0.190849,-0.001527,0.002000,0.249992,0,0);-webkit-transform:matrix(0.190849,-0.001527,0.002000,0.249992,0,0);}
.m40_c00411{transform:matrix(0.194228,-0.000777,0.001000,0.249998,0,0);-ms-transform:matrix(0.194228,-0.000777,0.001000,0.249998,0,0);-webkit-transform:matrix(0.194228,-0.000777,0.001000,0.249998,0,0);}
.m4d_c00411{transform:matrix(0.195813,-0.000783,0.001000,0.249998,0,0);-ms-transform:matrix(0.195813,-0.000783,0.001000,0.249998,0,0);-webkit-transform:matrix(0.195813,-0.000783,0.001000,0.249998,0,0);}
.m66_c00411{transform:matrix(0.197239,-0.001578,0.002000,0.249992,0,0);-ms-transform:matrix(0.197239,-0.001578,0.002000,0.249992,0,0);-webkit-transform:matrix(0.197239,-0.001578,0.002000,0.249992,0,0);}
.me_c00411{transform:matrix(0.197982,-0.001782,0.002250,0.249990,0,0);-ms-transform:matrix(0.197982,-0.001782,0.002250,0.249990,0,0);-webkit-transform:matrix(0.197982,-0.001782,0.002250,0.249990,0,0);}
.m70_c00411{transform:matrix(0.198809,-0.001590,0.002000,0.249992,0,0);-ms-transform:matrix(0.198809,-0.001590,0.002000,0.249992,0,0);-webkit-transform:matrix(0.198809,-0.001590,0.002000,0.249992,0,0);}
.m41_c00411{transform:matrix(0.200308,-0.000801,0.001000,0.249998,0,0);-ms-transform:matrix(0.200308,-0.000801,0.001000,0.249998,0,0);-webkit-transform:matrix(0.200308,-0.000801,0.001000,0.249998,0,0);}
.m5a_c00411{transform:matrix(0.202624,-0.001621,0.002000,0.249992,0,0);-ms-transform:matrix(0.202624,-0.001621,0.002000,0.249992,0,0);-webkit-transform:matrix(0.202624,-0.001621,0.002000,0.249992,0,0);}
.m59_c00411{transform:matrix(0.202864,-0.001623,0.002000,0.249992,0,0);-ms-transform:matrix(0.202864,-0.001623,0.002000,0.249992,0,0);-webkit-transform:matrix(0.202864,-0.001623,0.002000,0.249992,0,0);}
.m78_c00411{transform:matrix(0.205963,-0.001648,0.002000,0.249992,0,0);-ms-transform:matrix(0.205963,-0.001648,0.002000,0.249992,0,0);-webkit-transform:matrix(0.205963,-0.001648,0.002000,0.249992,0,0);}
.m71_c00411{transform:matrix(0.206098,-0.001649,0.002000,0.249992,0,0);-ms-transform:matrix(0.206098,-0.001649,0.002000,0.249992,0,0);-webkit-transform:matrix(0.206098,-0.001649,0.002000,0.249992,0,0);}
.m48_c00411{transform:matrix(0.207393,-0.000830,0.001000,0.249998,0,0);-ms-transform:matrix(0.207393,-0.000830,0.001000,0.249998,0,0);-webkit-transform:matrix(0.207393,-0.000830,0.001000,0.249998,0,0);}
.m77_c00411{transform:matrix(0.207508,-0.001660,0.002000,0.249992,0,0);-ms-transform:matrix(0.207508,-0.001660,0.002000,0.249992,0,0);-webkit-transform:matrix(0.207508,-0.001660,0.002000,0.249992,0,0);}
.m68_c00411{transform:matrix(0.209793,-0.001678,0.002000,0.249992,0,0);-ms-transform:matrix(0.209793,-0.001678,0.002000,0.249992,0,0);-webkit-transform:matrix(0.209793,-0.001678,0.002000,0.249992,0,0);}
.m43_c00411{transform:matrix(0.211013,-0.000844,0.001000,0.249998,0,0);-ms-transform:matrix(0.211013,-0.000844,0.001000,0.249998,0,0);-webkit-transform:matrix(0.211013,-0.000844,0.001000,0.249998,0,0);}
.m5b_c00411{transform:matrix(0.211533,-0.001692,0.002000,0.249992,0,0);-ms-transform:matrix(0.211533,-0.001692,0.002000,0.249992,0,0);-webkit-transform:matrix(0.211533,-0.001692,0.002000,0.249992,0,0);}
.m33_c00411{transform:matrix(0.212832,-0.001064,0.001250,0.249997,0,0);-ms-transform:matrix(0.212832,-0.001064,0.001250,0.249997,0,0);-webkit-transform:matrix(0.212832,-0.001064,0.001250,0.249997,0,0);}
.m63_c00411{transform:matrix(0.214663,-0.001717,0.002000,0.249992,0,0);-ms-transform:matrix(0.214663,-0.001717,0.002000,0.249992,0,0);-webkit-transform:matrix(0.214663,-0.001717,0.002000,0.249992,0,0);}
.m3b_c00411{transform:matrix(0.218738,-0.000875,0.001000,0.249998,0,0);-ms-transform:matrix(0.218738,-0.000875,0.001000,0.249998,0,0);-webkit-transform:matrix(0.218738,-0.000875,0.001000,0.249998,0,0);}
.m10_c00411{transform:matrix(0.219526,-0.001976,0.002250,0.249990,0,0);-ms-transform:matrix(0.219526,-0.001976,0.002250,0.249990,0,0);-webkit-transform:matrix(0.219526,-0.001976,0.002250,0.249990,0,0);}
.m37_c00411{transform:matrix(0.220437,-0.001102,0.001250,0.249997,0,0);-ms-transform:matrix(0.220437,-0.001102,0.001250,0.249997,0,0);-webkit-transform:matrix(0.220437,-0.001102,0.001250,0.249997,0,0);}
.m4e_c00411{transform:matrix(0.220578,-0.000882,0.001000,0.249998,0,0);-ms-transform:matrix(0.220578,-0.000882,0.001000,0.249998,0,0);-webkit-transform:matrix(0.220578,-0.000882,0.001000,0.249998,0,0);}
.m2b_c00411{transform:matrix(0.221875,-0.001553,0.001750,0.249994,0,0);-ms-transform:matrix(0.221875,-0.001553,0.001750,0.249994,0,0);-webkit-transform:matrix(0.221875,-0.001553,0.001750,0.249994,0,0);}
.m3e_c00411{transform:matrix(0.224763,-0.000899,0.001000,0.249998,0,0);-ms-transform:matrix(0.224763,-0.000899,0.001000,0.249998,0,0);-webkit-transform:matrix(0.224763,-0.000899,0.001000,0.249998,0,0);}
.m80_c00411{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00411{transform:matrix(0.225923,-0.001807,0.002000,0.249992,0,0);-ms-transform:matrix(0.225923,-0.001807,0.002000,0.249992,0,0);-webkit-transform:matrix(0.225923,-0.001807,0.002000,0.249992,0,0);}
.m12_c00411{transform:matrix(0.225931,-0.002033,0.002250,0.249990,0,0);-ms-transform:matrix(0.225931,-0.002033,0.002250,0.249990,0,0);-webkit-transform:matrix(0.225931,-0.002033,0.002250,0.249990,0,0);}
.m3f_c00411{transform:matrix(0.226613,-0.000906,0.001000,0.249998,0,0);-ms-transform:matrix(0.226613,-0.000906,0.001000,0.249998,0,0);-webkit-transform:matrix(0.226613,-0.000906,0.001000,0.249998,0,0);}
.m36_c00411{transform:matrix(0.227377,-0.001137,0.001250,0.249997,0,0);-ms-transform:matrix(0.227377,-0.001137,0.001250,0.249997,0,0);-webkit-transform:matrix(0.227377,-0.001137,0.001250,0.249997,0,0);}
.m4a_c00411{transform:matrix(0.228543,-0.000914,0.001000,0.249998,0,0);-ms-transform:matrix(0.228543,-0.000914,0.001000,0.249998,0,0);-webkit-transform:matrix(0.228543,-0.000914,0.001000,0.249998,0,0);}
.m4f_c00411{transform:matrix(0.228693,-0.000915,0.001000,0.249998,0,0);-ms-transform:matrix(0.228693,-0.000915,0.001000,0.249998,0,0);-webkit-transform:matrix(0.228693,-0.000915,0.001000,0.249998,0,0);}
.m4c_c00411{transform:matrix(0.229513,-0.000918,0.001000,0.249998,0,0);-ms-transform:matrix(0.229513,-0.000918,0.001000,0.249998,0,0);-webkit-transform:matrix(0.229513,-0.000918,0.001000,0.249998,0,0);}
.m34_c00411{transform:matrix(0.229827,-0.001149,0.001250,0.249997,0,0);-ms-transform:matrix(0.229827,-0.001149,0.001250,0.249997,0,0);-webkit-transform:matrix(0.229827,-0.001149,0.001250,0.249997,0,0);}
.m42_c00411{transform:matrix(0.230803,-0.000923,0.001000,0.249998,0,0);-ms-transform:matrix(0.230803,-0.000923,0.001000,0.249998,0,0);-webkit-transform:matrix(0.230803,-0.000923,0.001000,0.249998,0,0);}
.m62_c00411{transform:matrix(0.231198,-0.001850,0.002000,0.249992,0,0);-ms-transform:matrix(0.231198,-0.001850,0.002000,0.249992,0,0);-webkit-transform:matrix(0.231198,-0.001850,0.002000,0.249992,0,0);}
.m61_c00411{transform:matrix(0.232473,-0.001860,0.002000,0.249992,0,0);-ms-transform:matrix(0.232473,-0.001860,0.002000,0.249992,0,0);-webkit-transform:matrix(0.232473,-0.001860,0.002000,0.249992,0,0);}
.m29_c00411{transform:matrix(0.232979,-0.001631,0.001750,0.249994,0,0);-ms-transform:matrix(0.232979,-0.001631,0.001750,0.249994,0,0);-webkit-transform:matrix(0.232979,-0.001631,0.001750,0.249994,0,0);}
.m72_c00411{transform:matrix(0.233248,-0.001866,0.002000,0.249992,0,0);-ms-transform:matrix(0.233248,-0.001866,0.002000,0.249992,0,0);-webkit-transform:matrix(0.233248,-0.001866,0.002000,0.249992,0,0);}
.m56_c00411{transform:matrix(0.233753,-0.000935,0.001000,0.249998,0,0);-ms-transform:matrix(0.233753,-0.000935,0.001000,0.249998,0,0);-webkit-transform:matrix(0.233753,-0.000935,0.001000,0.249998,0,0);}
.m53_c00411{transform:matrix(0.234233,-0.000937,0.001000,0.249998,0,0);-ms-transform:matrix(0.234233,-0.000937,0.001000,0.249998,0,0);-webkit-transform:matrix(0.234233,-0.000937,0.001000,0.249998,0,0);}
.m74_c00411{transform:matrix(0.234547,-0.001876,0.002000,0.249992,0,0);-ms-transform:matrix(0.234547,-0.001876,0.002000,0.249992,0,0);-webkit-transform:matrix(0.234547,-0.001876,0.002000,0.249992,0,0);}
.m5_c00411{transform:matrix(0.234580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234580,0.000000,0.000000,0.250000,0,0);}
.m2d_c00411{transform:matrix(0.234779,-0.001643,0.001750,0.249994,0,0);-ms-transform:matrix(0.234779,-0.001643,0.001750,0.249994,0,0);-webkit-transform:matrix(0.234779,-0.001643,0.001750,0.249994,0,0);}
.m1d_c00411{transform:matrix(0.235110,-0.002116,0.002250,0.249990,0,0);-ms-transform:matrix(0.235110,-0.002116,0.002250,0.249990,0,0);-webkit-transform:matrix(0.235110,-0.002116,0.002250,0.249990,0,0);}
.m6a_c00411{transform:matrix(0.235147,-0.001881,0.002000,0.249992,0,0);-ms-transform:matrix(0.235147,-0.001881,0.002000,0.249992,0,0);-webkit-transform:matrix(0.235147,-0.001881,0.002000,0.249992,0,0);}
.m38_c00411{transform:matrix(0.235917,-0.001180,0.001250,0.249997,0,0);-ms-transform:matrix(0.235917,-0.001180,0.001250,0.249997,0,0);-webkit-transform:matrix(0.235917,-0.001180,0.001250,0.249997,0,0);}
.m39_c00411{transform:matrix(0.236402,-0.001182,0.001250,0.249997,0,0);-ms-transform:matrix(0.236402,-0.001182,0.001250,0.249997,0,0);-webkit-transform:matrix(0.236402,-0.001182,0.001250,0.249997,0,0);}
.m5f_c00411{transform:matrix(0.239067,-0.001913,0.002000,0.249992,0,0);-ms-transform:matrix(0.239067,-0.001913,0.002000,0.249992,0,0);-webkit-transform:matrix(0.239067,-0.001913,0.002000,0.249992,0,0);}
.m49_c00411{transform:matrix(0.246793,-0.000987,0.001000,0.249998,0,0);-ms-transform:matrix(0.246793,-0.000987,0.001000,0.249998,0,0);-webkit-transform:matrix(0.246793,-0.000987,0.001000,0.249998,0,0);}
.m64_c00411{transform:matrix(0.247657,-0.001981,0.002000,0.249992,0,0);-ms-transform:matrix(0.247657,-0.001981,0.002000,0.249992,0,0);-webkit-transform:matrix(0.247657,-0.001981,0.002000,0.249992,0,0);}
.m4b_c00411{transform:matrix(0.248848,-0.000995,0.001000,0.249998,0,0);-ms-transform:matrix(0.248848,-0.000995,0.001000,0.249998,0,0);-webkit-transform:matrix(0.248848,-0.000995,0.001000,0.249998,0,0);}
.m50_c00411{transform:matrix(0.249988,-0.001000,0.001000,0.249998,0,0);-ms-transform:matrix(0.249988,-0.001000,0.001000,0.249998,0,0);-webkit-transform:matrix(0.249988,-0.001000,0.001000,0.249998,0,0);}
.m35_c00411{transform:matrix(0.250367,-0.001252,0.001250,0.249997,0,0);-ms-transform:matrix(0.250367,-0.001252,0.001250,0.249997,0,0);-webkit-transform:matrix(0.250367,-0.001252,0.001250,0.249997,0,0);}
.m3d_c00411{transform:matrix(0.250493,-0.001002,0.001000,0.249998,0,0);-ms-transform:matrix(0.250493,-0.001002,0.001000,0.249998,0,0);-webkit-transform:matrix(0.250493,-0.001002,0.001000,0.249998,0,0);}
.mf_c00411{transform:matrix(0.251350,-0.002262,0.002250,0.249990,0,0);-ms-transform:matrix(0.251350,-0.002262,0.002250,0.249990,0,0);-webkit-transform:matrix(0.251350,-0.002262,0.002250,0.249990,0,0);}
.md_c00411{transform:matrix(0.252695,-0.002274,0.002250,0.249990,0,0);-ms-transform:matrix(0.252695,-0.002274,0.002250,0.249990,0,0);-webkit-transform:matrix(0.252695,-0.002274,0.002250,0.249990,0,0);}
.m3c_c00411{transform:matrix(0.253108,-0.001012,0.001000,0.249998,0,0);-ms-transform:matrix(0.253108,-0.001012,0.001000,0.249998,0,0);-webkit-transform:matrix(0.253108,-0.001012,0.001000,0.249998,0,0);}
.m57_c00411{transform:matrix(0.253757,-0.002030,0.002000,0.249992,0,0);-ms-transform:matrix(0.253757,-0.002030,0.002000,0.249992,0,0);-webkit-transform:matrix(0.253757,-0.002030,0.002000,0.249992,0,0);}
.m31_c00411{transform:matrix(0.254557,-0.001273,0.001250,0.249997,0,0);-ms-transform:matrix(0.254557,-0.001273,0.001250,0.249997,0,0);-webkit-transform:matrix(0.254557,-0.001273,0.001250,0.249997,0,0);}
.m58_c00411{transform:matrix(0.255867,-0.002047,0.002000,0.249992,0,0);-ms-transform:matrix(0.255867,-0.002047,0.002000,0.249992,0,0);-webkit-transform:matrix(0.255867,-0.002047,0.002000,0.249992,0,0);}
.m44_c00411{transform:matrix(0.258923,-0.001036,0.001000,0.249998,0,0);-ms-transform:matrix(0.258923,-0.001036,0.001000,0.249998,0,0);-webkit-transform:matrix(0.258923,-0.001036,0.001000,0.249998,0,0);}
.m11_c00411{transform:matrix(0.263854,-0.002375,0.002250,0.249990,0,0);-ms-transform:matrix(0.263854,-0.002375,0.002250,0.249990,0,0);-webkit-transform:matrix(0.263854,-0.002375,0.002250,0.249990,0,0);}
.m2a_c00411{transform:matrix(0.266053,-0.001862,0.001750,0.249994,0,0);-ms-transform:matrix(0.266053,-0.001862,0.001750,0.249994,0,0);-webkit-transform:matrix(0.266053,-0.001862,0.001750,0.249994,0,0);}
.m1a_c00411{transform:matrix(0.267044,-0.002403,0.002250,0.249990,0,0);-ms-transform:matrix(0.267044,-0.002403,0.002250,0.249990,0,0);-webkit-transform:matrix(0.267044,-0.002403,0.002250,0.249990,0,0);}
.m52_c00411{transform:matrix(0.267313,-0.001069,0.001000,0.249998,0,0);-ms-transform:matrix(0.267313,-0.001069,0.001000,0.249998,0,0);-webkit-transform:matrix(0.267313,-0.001069,0.001000,0.249998,0,0);}
.m45_c00411{transform:matrix(0.268468,-0.001074,0.001000,0.249998,0,0);-ms-transform:matrix(0.268468,-0.001074,0.001000,0.249998,0,0);-webkit-transform:matrix(0.268468,-0.001074,0.001000,0.249998,0,0);}
.m9_c00411{transform:matrix(0.268560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268560,0.000000,0.000000,0.250000,0,0);}
.m1e_c00411{transform:matrix(0.270024,-0.002430,0.002250,0.249990,0,0);-ms-transform:matrix(0.270024,-0.002430,0.002250,0.249990,0,0);-webkit-transform:matrix(0.270024,-0.002430,0.002250,0.249990,0,0);}
.m20_c00411{transform:matrix(0.270249,-0.002432,0.002250,0.249990,0,0);-ms-transform:matrix(0.270249,-0.002432,0.002250,0.249990,0,0);-webkit-transform:matrix(0.270249,-0.002432,0.002250,0.249990,0,0);}
.m2c_c00411{transform:matrix(0.274003,-0.001918,0.001750,0.249994,0,0);-ms-transform:matrix(0.274003,-0.001918,0.001750,0.249994,0,0);-webkit-transform:matrix(0.274003,-0.001918,0.001750,0.249994,0,0);}
.m13_c00411{transform:matrix(0.275544,-0.002480,0.002250,0.249990,0,0);-ms-transform:matrix(0.275544,-0.002480,0.002250,0.249990,0,0);-webkit-transform:matrix(0.275544,-0.002480,0.002250,0.249990,0,0);}
.m16_c00411{transform:matrix(0.275999,-0.002484,0.002250,0.249990,0,0);-ms-transform:matrix(0.275999,-0.002484,0.002250,0.249990,0,0);-webkit-transform:matrix(0.275999,-0.002484,0.002250,0.249990,0,0);}
.m1f_c00411{transform:matrix(0.279114,-0.002512,0.002250,0.249990,0,0);-ms-transform:matrix(0.279114,-0.002512,0.002250,0.249990,0,0);-webkit-transform:matrix(0.279114,-0.002512,0.002250,0.249990,0,0);}
.m2e_c00411{transform:matrix(0.281458,-0.001970,0.001750,0.249994,0,0);-ms-transform:matrix(0.281458,-0.001970,0.001750,0.249994,0,0);-webkit-transform:matrix(0.281458,-0.001970,0.001750,0.249994,0,0);}
.m21_c00411{transform:matrix(0.284593,-0.002561,0.002250,0.249990,0,0);-ms-transform:matrix(0.284593,-0.002561,0.002250,0.249990,0,0);-webkit-transform:matrix(0.284593,-0.002561,0.002250,0.249990,0,0);}
.m55_c00411{transform:matrix(0.284733,-0.001139,0.001000,0.249998,0,0);-ms-transform:matrix(0.284733,-0.001139,0.001000,0.249998,0,0);-webkit-transform:matrix(0.284733,-0.001139,0.001000,0.249998,0,0);}
.m26_c00411{transform:matrix(0.286493,-0.002005,0.001750,0.249994,0,0);-ms-transform:matrix(0.286493,-0.002005,0.001750,0.249994,0,0);-webkit-transform:matrix(0.286493,-0.002005,0.001750,0.249994,0,0);}
.m7b_c00411{transform:matrix(0.288140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288140,0.000000,0.000000,0.250000,0,0);}
.m1b_c00411{transform:matrix(0.290028,-0.002610,0.002250,0.249990,0,0);-ms-transform:matrix(0.290028,-0.002610,0.002250,0.249990,0,0);-webkit-transform:matrix(0.290028,-0.002610,0.002250,0.249990,0,0);}
.m60_c00411{transform:matrix(0.292471,-0.002340,0.002000,0.249992,0,0);-ms-transform:matrix(0.292471,-0.002340,0.002000,0.249992,0,0);-webkit-transform:matrix(0.292471,-0.002340,0.002000,0.249992,0,0);}
.m32_c00411{transform:matrix(0.292496,-0.001462,0.001250,0.249997,0,0);-ms-transform:matrix(0.292496,-0.001462,0.001250,0.249997,0,0);-webkit-transform:matrix(0.292496,-0.001462,0.001250,0.249997,0,0);}
.m17_c00411{transform:matrix(0.294233,-0.002648,0.002250,0.249990,0,0);-ms-transform:matrix(0.294233,-0.002648,0.002250,0.249990,0,0);-webkit-transform:matrix(0.294233,-0.002648,0.002250,0.249990,0,0);}
.m2f_c00411{transform:matrix(0.294703,-0.002063,0.001750,0.249994,0,0);-ms-transform:matrix(0.294703,-0.002063,0.001750,0.249994,0,0);-webkit-transform:matrix(0.294703,-0.002063,0.001750,0.249994,0,0);}
.m30_c00411{transform:matrix(0.300076,-0.001500,0.001250,0.249997,0,0);-ms-transform:matrix(0.300076,-0.001500,0.001250,0.249997,0,0);-webkit-transform:matrix(0.300076,-0.001500,0.001250,0.249997,0,0);}
.m27_c00411{transform:matrix(0.302068,-0.002114,0.001750,0.249994,0,0);-ms-transform:matrix(0.302068,-0.002114,0.001750,0.249994,0,0);-webkit-transform:matrix(0.302068,-0.002114,0.001750,0.249994,0,0);}
.m22_c00411{transform:matrix(0.307203,-0.002765,0.002250,0.249990,0,0);-ms-transform:matrix(0.307203,-0.002765,0.002250,0.249990,0,0);-webkit-transform:matrix(0.307203,-0.002765,0.002250,0.249990,0,0);}
.m28_c00411{transform:matrix(0.314097,-0.002199,0.001750,0.249994,0,0);-ms-transform:matrix(0.314097,-0.002199,0.001750,0.249994,0,0);-webkit-transform:matrix(0.314097,-0.002199,0.001750,0.249994,0,0);}
.m25_c00411{transform:matrix(0.323847,-0.002267,0.001750,0.249994,0,0);-ms-transform:matrix(0.323847,-0.002267,0.001750,0.249994,0,0);-webkit-transform:matrix(0.323847,-0.002267,0.001750,0.249994,0,0);}
.m15_c00411{transform:matrix(0.344536,-0.003101,0.002250,0.249990,0,0);-ms-transform:matrix(0.344536,-0.003101,0.002250,0.249990,0,0);-webkit-transform:matrix(0.344536,-0.003101,0.002250,0.249990,0,0);}
.m54_c00411{transform:matrix(0.365122,-0.001460,0.001000,0.249998,0,0);-ms-transform:matrix(0.365122,-0.001460,0.001000,0.249998,0,0);-webkit-transform:matrix(0.365122,-0.001460,0.001000,0.249998,0,0);}
.m46_c00411{transform:matrix(0.373742,-0.001495,0.001000,0.249998,0,0);-ms-transform:matrix(0.373742,-0.001495,0.001000,0.249998,0,0);-webkit-transform:matrix(0.373742,-0.001495,0.001000,0.249998,0,0);}
.m14_c00411{transform:matrix(0.377560,-0.003398,0.002250,0.249990,0,0);-ms-transform:matrix(0.377560,-0.003398,0.002250,0.249990,0,0);-webkit-transform:matrix(0.377560,-0.003398,0.002250,0.249990,0,0);}
.m6c_c00411{transform:matrix(0.377913,-0.003023,0.002000,0.249992,0,0);-ms-transform:matrix(0.377913,-0.003023,0.002000,0.249992,0,0);-webkit-transform:matrix(0.377913,-0.003023,0.002000,0.249992,0,0);}
.m1c_c00411{transform:matrix(0.409368,-0.003684,0.002250,0.249990,0,0);-ms-transform:matrix(0.409368,-0.003684,0.002250,0.249990,0,0);-webkit-transform:matrix(0.409368,-0.003684,0.002250,0.249990,0,0);}
.m79_c00411{transform:matrix(0.428550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428550,0.000000,0.000000,0.250000,0,0);}
.m5d_c00411{transform:matrix(0.446986,-0.003576,0.002000,0.249992,0,0);-ms-transform:matrix(0.446986,-0.003576,0.002000,0.249992,0,0);-webkit-transform:matrix(0.446986,-0.003576,0.002000,0.249992,0,0);}
.mb_c00411{transform:matrix(0.519640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519640,0.000000,0.000000,0.250000,0,0);}
.m51_c00411{transform:matrix(0.531601,-0.002126,0.001000,0.249998,0,0);-ms-transform:matrix(0.531601,-0.002126,0.001000,0.249998,0,0);-webkit-transform:matrix(0.531601,-0.002126,0.001000,0.249998,0,0);}
.m3a_c00411{transform:matrix(0.550631,-0.002203,0.001000,0.249998,0,0);-ms-transform:matrix(0.550631,-0.002203,0.001000,0.249998,0,0);-webkit-transform:matrix(0.550631,-0.002203,0.001000,0.249998,0,0);}
.m8_c00411{transform:matrix(0.608435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608435,0.000000,0.000000,0.250000,0,0);}
.m23_c00411{transform:matrix(0.671224,-0.004699,0.001750,0.249994,0,0);-ms-transform:matrix(0.671224,-0.004699,0.001750,0.249994,0,0);-webkit-transform:matrix(0.671224,-0.004699,0.001750,0.249994,0,0);}
.m6_c00411{transform:matrix(0.780900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.780900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.780900,0.000000,0.000000,0.250000,0,0);}
.ma_c00411{transform:matrix(0.960710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.960710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.960710,0.000000,0.000000,0.250000,0,0);}
.m7_c00411{transform:matrix(2.719535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.719535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.719535,0.000000,0.000000,0.250000,0,0);}
.v0_c00411{vertical-align:0.000000px;}
.ls0_c00411{letter-spacing:0.000000px;}
.sc__c00411{text-shadow:none;}
.sc0_c00411{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__c00411{-webkit-text-stroke:0px transparent;}
.sc0_c00411{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00411{word-spacing:0.000000px;}
.fc0_c00411{color:transparent;}
.fs2_c00411{font-size:18.000000px;}
.fsc_c00411{font-size:24.000000px;}
.fs1_c00411{font-size:36.000000px;}
.fsd_c00411{font-size:42.000000px;}
.fse_c00411{font-size:60.000000px;}
.fs5_c00411{font-size:72.001764px;}
.fs4_c00411{font-size:72.002916px;}
.fs8_c00411{font-size:78.000624px;}
.fs3_c00411{font-size:78.003159px;}
.fs7_c00411{font-size:84.000672px;}
.fs6_c00411{font-size:84.001050px;}
.fsf_c00411{font-size:90.000000px;}
.fs9_c00411{font-size:90.002880px;}
.fsa_c00411{font-size:96.003072px;}
.fsb_c00411{font-size:102.003264px;}
.fs0_c00411{font-size:114.000000px;}
.y0_c00411{bottom:0.000000px;}
.y6b_c00411{bottom:733.271208px;}
.y6a_c00411{bottom:733.271580px;}
.y6d_c00411{bottom:733.271604px;}
.y6c_c00411{bottom:733.271916px;}
.y69_c00411{bottom:733.271952px;}
.y6f_c00411{bottom:733.272000px;}
.y6e_c00411{bottom:733.272072px;}
.y68_c00411{bottom:733.272204px;}
.y67_c00411{bottom:733.272288px;}
.y5a_c00411{bottom:770.137128px;}
.y5b_c00411{bottom:770.137164px;}
.y5c_c00411{bottom:770.137212px;}
.y59_c00411{bottom:770.137260px;}
.y5d_c00411{bottom:770.137860px;}
.y5e_c00411{bottom:770.138448px;}
.y5f_c00411{bottom:770.138808px;}
.y60_c00411{bottom:770.138916px;}
.y61_c00411{bottom:770.139444px;}
.y64_c00411{bottom:770.139648px;}
.y62_c00411{bottom:770.139672px;}
.y65_c00411{bottom:770.139696px;}
.y66_c00411{bottom:770.140044px;}
.y63_c00411{bottom:770.140380px;}
.y4e_c00411{bottom:802.441500px;}
.y4f_c00411{bottom:803.292252px;}
.y50_c00411{bottom:803.912028px;}
.y51_c00411{bottom:804.274884px;}
.y52_c00411{bottom:804.625176px;}
.y53_c00411{bottom:805.067580px;}
.y54_c00411{bottom:805.258428px;}
.y55_c00411{bottom:805.951356px;}
.y56_c00411{bottom:806.733996px;}
.y57_c00411{bottom:807.638940px;}
.y58_c00411{bottom:807.938940px;}
.y3e_c00411{bottom:842.400000px;}
.y3f_c00411{bottom:842.453232px;}
.y40_c00411{bottom:842.697312px;}
.y41_c00411{bottom:842.960850px;}
.y42_c00411{bottom:843.169272px;}
.y43_c00411{bottom:843.437076px;}
.y44_c00411{bottom:843.613086px;}
.y45_c00411{bottom:843.700578px;}
.y46_c00411{bottom:844.053708px;}
.y47_c00411{bottom:844.137120px;}
.y48_c00411{bottom:844.456722px;}
.y49_c00411{bottom:844.701900px;}
.y4a_c00411{bottom:844.790382px;}
.y4b_c00411{bottom:844.963338px;}
.y4c_c00411{bottom:845.108064px;}
.y4d_c00411{bottom:845.399616px;}
.y31_c00411{bottom:875.523000px;}
.y32_c00411{bottom:875.919258px;}
.y33_c00411{bottom:876.052050px;}
.y34_c00411{bottom:876.186228px;}
.y35_c00411{bottom:876.546762px;}
.y36_c00411{bottom:876.677448px;}
.y37_c00411{bottom:876.985242px;}
.y38_c00411{bottom:877.253064px;}
.y39_c00411{bottom:877.560876px;}
.y3a_c00411{bottom:877.876236px;}
.y3b_c00411{bottom:878.003850px;}
.y3c_c00411{bottom:878.396922px;}
.y3d_c00411{bottom:878.739366px;}
.y27_c00411{bottom:912.261000px;}
.y28_c00411{bottom:912.777840px;}
.y29_c00411{bottom:912.919830px;}
.y2a_c00411{bottom:913.228658px;}
.y2b_c00411{bottom:913.396080px;}
.y2c_c00411{bottom:913.671743px;}
.y2d_c00411{bottom:914.054925px;}
.y2e_c00411{bottom:914.387010px;}
.y2f_c00411{bottom:914.667795px;}
.y30_c00411{bottom:915.106605px;}
.y76_c00411{bottom:983.070000px;}
.y1a_c00411{bottom:983.071500px;}
.y1b_c00411{bottom:983.506494px;}
.y1c_c00411{bottom:983.600658px;}
.y1d_c00411{bottom:984.095722px;}
.y1e_c00411{bottom:984.875872px;}
.y1f_c00411{bottom:985.129175px;}
.y20_c00411{bottom:985.577000px;}
.y21_c00411{bottom:985.803988px;}
.y22_c00411{bottom:986.276278px;}
.y23_c00411{bottom:986.472859px;}
.y24_c00411{bottom:986.724061px;}
.y25_c00411{bottom:986.987107px;}
.y26_c00411{bottom:987.904251px;}
.y75_c00411{bottom:997.920000px;}
.y74_c00411{bottom:1005.210000px;}
.y73_c00411{bottom:1008.180000px;}
.y72_c00411{bottom:1014.120000px;}
.y71_c00411{bottom:1015.333500px;}
.y10_c00411{bottom:1018.440000px;}
.y11_c00411{bottom:1018.954255px;}
.y12_c00411{bottom:1019.975773px;}
.y13_c00411{bottom:1020.787366px;}
.y70_c00411{bottom:1021.680000px;}
.y14_c00411{bottom:1021.773029px;}
.y15_c00411{bottom:1022.071864px;}
.y16_c00411{bottom:1022.591925px;}
.y17_c00411{bottom:1023.610486px;}
.y18_c00411{bottom:1024.174219px;}
.y19_c00411{bottom:1024.917570px;}
.y4_c00411{bottom:1053.271500px;}
.y5_c00411{bottom:1053.718364px;}
.y6_c00411{bottom:1053.954222px;}
.y7_c00411{bottom:1054.384292px;}
.y8_c00411{bottom:1054.681791px;}
.y9_c00411{bottom:1055.679644px;}
.ya_c00411{bottom:1055.968490px;}
.yb_c00411{bottom:1056.301643px;}
.yc_c00411{bottom:1057.170084px;}
.yd_c00411{bottom:1057.466679px;}
.ye_c00411{bottom:1058.171352px;}
.yf_c00411{bottom:1059.410584px;}
.y3_c00411{bottom:1124.550000px;}
.y2_c00411{bottom:1140.660000px;}
.y1_c00411{bottom:1155.373500px;}
.h4_c00411{height:18.000000px;}
.he_c00411{height:24.000000px;}
.h3_c00411{height:36.000000px;}
.hf_c00411{height:42.000000px;}
.h10_c00411{height:60.000000px;}
.h7_c00411{height:72.001764px;}
.h6_c00411{height:72.002916px;}
.ha_c00411{height:78.000624px;}
.h5_c00411{height:78.003159px;}
.h9_c00411{height:84.000672px;}
.h8_c00411{height:84.001050px;}
.h11_c00411{height:90.000000px;}
.hb_c00411{height:90.002880px;}
.hc_c00411{height:96.003072px;}
.hd_c00411{height:102.003264px;}
.h2_c00411{height:114.000000px;}
.h1_c00411{height:1251.000000px;}
.h0_c00411{height:1251.150000px;}
.w0_c00411{width:915.000000px;}
.x0_c00411{left:0.000000px;}
.x1_c00411{left:11.070000px;}
.x37_c00411{left:37.348500px;}
.x1a_c00411{left:41.838000px;}
.x2e_c00411{left:43.051500px;}
.x23_c00411{left:62.343000px;}
.x42_c00411{left:67.486500px;}
.x24_c00411{left:75.795000px;}
.x43_c00411{left:80.794500px;}
.xe_c00411{left:88.735500px;}
.x1b_c00411{left:98.977500px;}
.x38_c00411{left:136.413000px;}
.xf_c00411{left:138.387000px;}
.x44_c00411{left:141.814500px;}
.x2_c00411{left:143.640000px;}
.x25_c00411{left:146.518500px;}
.x59_c00411{left:147.693468px;}
.x60_c00411{left:152.554680px;}
.x10_c00411{left:164.593500px;}
.x39_c00411{left:169.611000px;}
.x2f_c00411{left:174.817500px;}
.x52_c00411{left:182.929500px;}
.x3a_c00411{left:203.155500px;}
.x5a_c00411{left:206.555736px;}
.x45_c00411{left:207.699000px;}
.x11_c00411{left:212.379000px;}
.x61_c00411{left:229.236588px;}
.x30_c00411{left:236.583000px;}
.x12_c00411{left:245.434500px;}
.x26_c00411{left:257.968500px;}
.x46_c00411{left:259.804500px;}
.x31_c00411{left:270.067500px;}
.x62_c00411{left:272.707872px;}
.x27_c00411{left:294.154500px;}
.x1c_c00411{left:302.656500px;}
.x7_c00411{left:304.020000px;}
.x53_c00411{left:305.758500px;}
.x3_c00411{left:313.470000px;}
.x32_c00411{left:325.200000px;}
.x47_c00411{left:326.755500px;}
.x8_c00411{left:348.570000px;}
.x13_c00411{left:356.307000px;}
.x28_c00411{left:358.129500px;}
.x4_c00411{left:368.820000px;}
.x48_c00411{left:370.758000px;}
.x63_c00411{left:382.871928px;}
.x14_c00411{left:388.401000px;}
.x29_c00411{left:390.556500px;}
.x49_c00411{left:392.631000px;}
.x33_c00411{left:401.836500px;}
.x3b_c00411{left:402.909000px;}
.x54_c00411{left:404.845500px;}
.x1d_c00411{left:412.174500px;}
.x15_c00411{left:425.418000px;}
.x55_c00411{left:428.701500px;}
.xd_c00411{left:433.620000px;}
.x1e_c00411{left:445.378500px;}
.x9_c00411{left:448.200000px;}
.x5_c00411{left:455.760000px;}
.x2a_c00411{left:458.026500px;}
.x5b_c00411{left:461.174520px;}
.x34_c00411{left:468.253500px;}
.x3c_c00411{left:469.864500px;}
.x4a_c00411{left:480.913500px;}
.x2b_c00411{left:486.109500px;}
.xa_c00411{left:491.400000px;}
.xb_c00411{left:499.770000px;}
.x4b_c00411{left:501.766500px;}
.x1f_c00411{left:503.163000px;}
.x56_c00411{left:515.317500px;}
.x16_c00411{left:521.911500px;}
.x35_c00411{left:524.410500px;}
.x64_c00411{left:537.855840px;}
.x3d_c00411{left:546.817500px;}
.x5c_c00411{left:549.738684px;}
.x17_c00411{left:554.866500px;}
.x2c_c00411{left:559.573500px;}
.x6_c00411{left:568.890000px;}
.xc_c00411{left:579.960000px;}
.x4c_c00411{left:581.667000px;}
.x36_c00411{left:612.172500px;}
.x20_c00411{left:616.336500px;}
.x3e_c00411{left:625.657500px;}
.x18_c00411{left:633.163500px;}
.x5d_c00411{left:639.651432px;}
.x4d_c00411{left:642.961500px;}
.x3f_c00411{left:657.561000px;}
.x4e_c00411{left:665.082000px;}
.x21_c00411{left:678.973500px;}
.x2d_c00411{left:690.594000px;}
.x5e_c00411{left:707.152752px;}
.x4f_c00411{left:708.321000px;}
.x57_c00411{left:726.265500px;}
.x5f_c00411{left:731.722824px;}
.x50_c00411{left:744.502500px;}
.x40_c00411{left:755.829000px;}
.x22_c00411{left:761.568000px;}
.x58_c00411{left:763.765500px;}
.x19_c00411{left:770.856000px;}
.x51_c00411{left:817.390500px;}
.x41_c00411{left:841.440000px;}
.x65_c00411{left:903.690000px;}
.x66_c00411{left:905.850000px;}
.x67_c00411{left:908.010000px;}
.x68_c00411{left:909.090000px;}
@media print{
.v0_c00411{vertical-align:0.000000pt;}
.ls0_c00411{letter-spacing:0.000000pt;}
.ws0_c00411{word-spacing:0.000000pt;}
.fs2_c00411{font-size:16.000000pt;}
.fsc_c00411{font-size:21.333333pt;}
.fs1_c00411{font-size:32.000000pt;}
.fsd_c00411{font-size:37.333333pt;}
.fse_c00411{font-size:53.333333pt;}
.fs5_c00411{font-size:64.001568pt;}
.fs4_c00411{font-size:64.002592pt;}
.fs8_c00411{font-size:69.333888pt;}
.fs3_c00411{font-size:69.336141pt;}
.fs7_c00411{font-size:74.667264pt;}
.fs6_c00411{font-size:74.667600pt;}
.fsf_c00411{font-size:80.000000pt;}
.fs9_c00411{font-size:80.002560pt;}
.fsa_c00411{font-size:85.336064pt;}
.fsb_c00411{font-size:90.669568pt;}
.fs0_c00411{font-size:101.333333pt;}
.y0_c00411{bottom:0.000000pt;}
.y6b_c00411{bottom:651.796629pt;}
.y6a_c00411{bottom:651.796960pt;}
.y6d_c00411{bottom:651.796981pt;}
.y6c_c00411{bottom:651.797259pt;}
.y69_c00411{bottom:651.797291pt;}
.y6f_c00411{bottom:651.797333pt;}
.y6e_c00411{bottom:651.797397pt;}
.y68_c00411{bottom:651.797515pt;}
.y67_c00411{bottom:651.797589pt;}
.y5a_c00411{bottom:684.566336pt;}
.y5b_c00411{bottom:684.566368pt;}
.y5c_c00411{bottom:684.566411pt;}
.y59_c00411{bottom:684.566453pt;}
.y5d_c00411{bottom:684.566987pt;}
.y5e_c00411{bottom:684.567509pt;}
.y5f_c00411{bottom:684.567829pt;}
.y60_c00411{bottom:684.567925pt;}
.y61_c00411{bottom:684.568395pt;}
.y64_c00411{bottom:684.568576pt;}
.y62_c00411{bottom:684.568597pt;}
.y65_c00411{bottom:684.568619pt;}
.y66_c00411{bottom:684.568928pt;}
.y63_c00411{bottom:684.569227pt;}
.y4e_c00411{bottom:713.281333pt;}
.y4f_c00411{bottom:714.037557pt;}
.y50_c00411{bottom:714.588469pt;}
.y51_c00411{bottom:714.911008pt;}
.y52_c00411{bottom:715.222379pt;}
.y53_c00411{bottom:715.615627pt;}
.y54_c00411{bottom:715.785269pt;}
.y55_c00411{bottom:716.401205pt;}
.y56_c00411{bottom:717.096885pt;}
.y57_c00411{bottom:717.901280pt;}
.y58_c00411{bottom:718.167947pt;}
.y3e_c00411{bottom:748.800000pt;}
.y3f_c00411{bottom:748.847317pt;}
.y40_c00411{bottom:749.064277pt;}
.y41_c00411{bottom:749.298533pt;}
.y42_c00411{bottom:749.483797pt;}
.y43_c00411{bottom:749.721845pt;}
.y44_c00411{bottom:749.878299pt;}
.y45_c00411{bottom:749.956069pt;}
.y46_c00411{bottom:750.269963pt;}
.y47_c00411{bottom:750.344107pt;}
.y48_c00411{bottom:750.628197pt;}
.y49_c00411{bottom:750.846133pt;}
.y4a_c00411{bottom:750.924784pt;}
.y4b_c00411{bottom:751.078523pt;}
.y4c_c00411{bottom:751.207168pt;}
.y4d_c00411{bottom:751.466325pt;}
.y31_c00411{bottom:778.242667pt;}
.y32_c00411{bottom:778.594896pt;}
.y33_c00411{bottom:778.712933pt;}
.y34_c00411{bottom:778.832203pt;}
.y35_c00411{bottom:779.152677pt;}
.y36_c00411{bottom:779.268843pt;}
.y37_c00411{bottom:779.542437pt;}
.y38_c00411{bottom:779.780501pt;}
.y39_c00411{bottom:780.054112pt;}
.y3a_c00411{bottom:780.334432pt;}
.y3b_c00411{bottom:780.447867pt;}
.y3c_c00411{bottom:780.797264pt;}
.y3d_c00411{bottom:781.101659pt;}
.y27_c00411{bottom:810.898667pt;}
.y28_c00411{bottom:811.358080pt;}
.y29_c00411{bottom:811.484293pt;}
.y2a_c00411{bottom:811.758807pt;}
.y2b_c00411{bottom:811.907627pt;}
.y2c_c00411{bottom:812.152660pt;}
.y2d_c00411{bottom:812.493267pt;}
.y2e_c00411{bottom:812.788453pt;}
.y2f_c00411{bottom:813.038040pt;}
.y30_c00411{bottom:813.428093pt;}
.y76_c00411{bottom:873.840000pt;}
.y1a_c00411{bottom:873.841333pt;}
.y1b_c00411{bottom:874.227995pt;}
.y1c_c00411{bottom:874.311696pt;}
.y1d_c00411{bottom:874.751753pt;}
.y1e_c00411{bottom:875.445220pt;}
.y1f_c00411{bottom:875.670377pt;}
.y20_c00411{bottom:876.068444pt;}
.y21_c00411{bottom:876.270212pt;}
.y22_c00411{bottom:876.690025pt;}
.y23_c00411{bottom:876.864764pt;}
.y24_c00411{bottom:877.088055pt;}
.y25_c00411{bottom:877.321873pt;}
.y26_c00411{bottom:878.137112pt;}
.y75_c00411{bottom:887.040000pt;}
.y74_c00411{bottom:893.520000pt;}
.y73_c00411{bottom:896.160000pt;}
.y72_c00411{bottom:901.440000pt;}
.y71_c00411{bottom:902.518667pt;}
.y10_c00411{bottom:905.280000pt;}
.y11_c00411{bottom:905.737116pt;}
.y12_c00411{bottom:906.645132pt;}
.y13_c00411{bottom:907.366548pt;}
.y70_c00411{bottom:908.160000pt;}
.y14_c00411{bottom:908.242692pt;}
.y15_c00411{bottom:908.508324pt;}
.y16_c00411{bottom:908.970600pt;}
.y17_c00411{bottom:909.875988pt;}
.y18_c00411{bottom:910.377084pt;}
.y19_c00411{bottom:911.037840pt;}
.y4_c00411{bottom:936.241333pt;}
.y5_c00411{bottom:936.638545pt;}
.y6_c00411{bottom:936.848197pt;}
.y7_c00411{bottom:937.230481pt;}
.y8_c00411{bottom:937.494925pt;}
.y9_c00411{bottom:938.381905pt;}
.ya_c00411{bottom:938.638657pt;}
.yb_c00411{bottom:938.934793pt;}
.yc_c00411{bottom:939.706741pt;}
.yd_c00411{bottom:939.970381pt;}
.ye_c00411{bottom:940.596757pt;}
.yf_c00411{bottom:941.698297pt;}
.y3_c00411{bottom:999.600000pt;}
.y2_c00411{bottom:1013.920000pt;}
.y1_c00411{bottom:1026.998667pt;}
.h4_c00411{height:16.000000pt;}
.he_c00411{height:21.333333pt;}
.h3_c00411{height:32.000000pt;}
.hf_c00411{height:37.333333pt;}
.h10_c00411{height:53.333333pt;}
.h7_c00411{height:64.001568pt;}
.h6_c00411{height:64.002592pt;}
.ha_c00411{height:69.333888pt;}
.h5_c00411{height:69.336141pt;}
.h9_c00411{height:74.667264pt;}
.h8_c00411{height:74.667600pt;}
.h11_c00411{height:80.000000pt;}
.hb_c00411{height:80.002560pt;}
.hc_c00411{height:85.336064pt;}
.hd_c00411{height:90.669568pt;}
.h2_c00411{height:101.333333pt;}
.h1_c00411{height:1112.000000pt;}
.h0_c00411{height:1112.133333pt;}
.w0_c00411{width:813.333333pt;}
.x0_c00411{left:0.000000pt;}
.x1_c00411{left:9.840000pt;}
.x37_c00411{left:33.198667pt;}
.x1a_c00411{left:37.189333pt;}
.x2e_c00411{left:38.268000pt;}
.x23_c00411{left:55.416000pt;}
.x42_c00411{left:59.988000pt;}
.x24_c00411{left:67.373333pt;}
.x43_c00411{left:71.817333pt;}
.xe_c00411{left:78.876000pt;}
.x1b_c00411{left:87.980000pt;}
.x38_c00411{left:121.256000pt;}
.xf_c00411{left:123.010667pt;}
.x44_c00411{left:126.057333pt;}
.x2_c00411{left:127.680000pt;}
.x25_c00411{left:130.238667pt;}
.x59_c00411{left:131.283083pt;}
.x60_c00411{left:135.604160pt;}
.x10_c00411{left:146.305333pt;}
.x39_c00411{left:150.765333pt;}
.x2f_c00411{left:155.393333pt;}
.x52_c00411{left:162.604000pt;}
.x3a_c00411{left:180.582667pt;}
.x5a_c00411{left:183.605099pt;}
.x45_c00411{left:184.621333pt;}
.x11_c00411{left:188.781333pt;}
.x61_c00411{left:203.765856pt;}
.x30_c00411{left:210.296000pt;}
.x12_c00411{left:218.164000pt;}
.x26_c00411{left:229.305333pt;}
.x46_c00411{left:230.937333pt;}
.x31_c00411{left:240.060000pt;}
.x62_c00411{left:242.406997pt;}
.x27_c00411{left:261.470667pt;}
.x1c_c00411{left:269.028000pt;}
.x7_c00411{left:270.240000pt;}
.x53_c00411{left:271.785333pt;}
.x3_c00411{left:278.640000pt;}
.x32_c00411{left:289.066667pt;}
.x47_c00411{left:290.449333pt;}
.x8_c00411{left:309.840000pt;}
.x13_c00411{left:316.717333pt;}
.x28_c00411{left:318.337333pt;}
.x4_c00411{left:327.840000pt;}
.x48_c00411{left:329.562667pt;}
.x63_c00411{left:340.330603pt;}
.x14_c00411{left:345.245333pt;}
.x29_c00411{left:347.161333pt;}
.x49_c00411{left:349.005333pt;}
.x33_c00411{left:357.188000pt;}
.x3b_c00411{left:358.141333pt;}
.x54_c00411{left:359.862667pt;}
.x1d_c00411{left:366.377333pt;}
.x15_c00411{left:378.149333pt;}
.x55_c00411{left:381.068000pt;}
.xd_c00411{left:385.440000pt;}
.x1e_c00411{left:395.892000pt;}
.x9_c00411{left:398.400000pt;}
.x5_c00411{left:405.120000pt;}
.x2a_c00411{left:407.134667pt;}
.x5b_c00411{left:409.932907pt;}
.x34_c00411{left:416.225333pt;}
.x3c_c00411{left:417.657333pt;}
.x4a_c00411{left:427.478667pt;}
.x2b_c00411{left:432.097333pt;}
.xa_c00411{left:436.800000pt;}
.xb_c00411{left:444.240000pt;}
.x4b_c00411{left:446.014667pt;}
.x1f_c00411{left:447.256000pt;}
.x56_c00411{left:458.060000pt;}
.x16_c00411{left:463.921333pt;}
.x35_c00411{left:466.142667pt;}
.x64_c00411{left:478.094080pt;}
.x3d_c00411{left:486.060000pt;}
.x5c_c00411{left:488.656608pt;}
.x17_c00411{left:493.214667pt;}
.x2c_c00411{left:497.398667pt;}
.x6_c00411{left:505.680000pt;}
.xc_c00411{left:515.520000pt;}
.x4c_c00411{left:517.037333pt;}
.x36_c00411{left:544.153333pt;}
.x20_c00411{left:547.854667pt;}
.x3e_c00411{left:556.140000pt;}
.x18_c00411{left:562.812000pt;}
.x5d_c00411{left:568.579051pt;}
.x4d_c00411{left:571.521333pt;}
.x3f_c00411{left:584.498667pt;}
.x4e_c00411{left:591.184000pt;}
.x21_c00411{left:603.532000pt;}
.x2d_c00411{left:613.861333pt;}
.x5e_c00411{left:628.580224pt;}
.x4f_c00411{left:629.618667pt;}
.x57_c00411{left:645.569333pt;}
.x5f_c00411{left:650.420288pt;}
.x50_c00411{left:661.780000pt;}
.x40_c00411{left:671.848000pt;}
.x22_c00411{left:676.949333pt;}
.x58_c00411{left:678.902667pt;}
.x19_c00411{left:685.205333pt;}
.x51_c00411{left:726.569333pt;}
.x41_c00411{left:747.946667pt;}
.x65_c00411{left:803.280000pt;}
.x66_c00411{left:805.200000pt;}
.x67_c00411{left:807.120000pt;}
.x68_c00411{left:808.080000pt;}
}





/* 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_c00412 {
    display:none;
  }
  .loading-indicator_c00412.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00412 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_c00412 { 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_c00412" -> "#page-container .classname_c00412")
 */
.pf_c00412 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00412 { /* 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_c00412.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00412 { /* 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_c00412 { /* 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_c00412 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00412 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00412 {overflow:visible;}
  }
}
.c_c00412 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00412 { /* 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_c00412:after { /* webkit #35443 */
  content: '';
}
.t_c00412:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00412 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 */
}
.__c00412 { /* 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_c00412 { /* info for Javascript */
  display:none;
}
.l_c00412 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00412 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00412 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00412: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_c00412 {
    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_c00412.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00412.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_c00412 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00412{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00412;src:url('chunks/assets/font_c605e72f209fc835e906f064.woff2')format("woff");}.ff1_c00412{font-family:ff1_c00412;line-height:1.000000;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;}
.ma3_c00412{transform:matrix(0.105951,0.001377,-0.003250,0.249979,0,0);-ms-transform:matrix(0.105951,0.001377,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.105951,0.001377,-0.003250,0.249979,0,0);}
.mbb_c00412{transform:matrix(0.143155,0.003579,-0.006248,0.249922,0,0);-ms-transform:matrix(0.143155,0.003579,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.143155,0.003579,-0.006248,0.249922,0,0);}
.mc1_c00412{transform:matrix(0.151113,0.003778,-0.006248,0.249922,0,0);-ms-transform:matrix(0.151113,0.003778,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.151113,0.003778,-0.006248,0.249922,0,0);}
.m13a_c00412{transform:matrix(0.151561,0.004395,-0.007247,0.249895,0,0);-ms-transform:matrix(0.151561,0.004395,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.151561,0.004395,-0.007247,0.249895,0,0);}
.mbf_c00412{transform:matrix(0.154242,0.003856,-0.006248,0.249922,0,0);-ms-transform:matrix(0.154242,0.003856,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.154242,0.003856,-0.006248,0.249922,0,0);}
.mc2_c00412{transform:matrix(0.155926,0.003898,-0.006248,0.249922,0,0);-ms-transform:matrix(0.155926,0.003898,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.155926,0.003898,-0.006248,0.249922,0,0);}
.m129_c00412{transform:matrix(0.156664,0.004543,-0.007247,0.249895,0,0);-ms-transform:matrix(0.156664,0.004543,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.156664,0.004543,-0.007247,0.249895,0,0);}
.m134_c00412{transform:matrix(0.159988,0.004640,-0.007247,0.249895,0,0);-ms-transform:matrix(0.159988,0.004640,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.159988,0.004640,-0.007247,0.249895,0,0);}
.m132_c00412{transform:matrix(0.160987,0.004669,-0.007247,0.249895,0,0);-ms-transform:matrix(0.160987,0.004669,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.160987,0.004669,-0.007247,0.249895,0,0);}
.m127_c00412{transform:matrix(0.161447,0.004682,-0.007247,0.249895,0,0);-ms-transform:matrix(0.161447,0.004682,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.161447,0.004682,-0.007247,0.249895,0,0);}
.m151_c00412{transform:matrix(0.162990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162990,0.000000,0.000000,0.250000,0,0);}
.m138_c00412{transform:matrix(0.163441,0.004740,-0.007247,0.249895,0,0);-ms-transform:matrix(0.163441,0.004740,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.163441,0.004740,-0.007247,0.249895,0,0);}
.m14b_c00412{transform:matrix(0.164155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164155,0.000000,0.000000,0.250000,0,0);}
.m14f_c00412{transform:matrix(0.164960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164960,0.000000,0.000000,0.250000,0,0);}
.m83_c00412{transform:matrix(0.168243,0.001514,-0.002250,0.249990,0,0);-ms-transform:matrix(0.168243,0.001514,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.168243,0.001514,-0.002250,0.249990,0,0);}
.mbd_c00412{transform:matrix(0.170757,0.004269,-0.006248,0.249922,0,0);-ms-transform:matrix(0.170757,0.004269,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.170757,0.004269,-0.006248,0.249922,0,0);}
.m13e_c00412{transform:matrix(0.172767,0.005010,-0.007247,0.249895,0,0);-ms-transform:matrix(0.172767,0.005010,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.172767,0.005010,-0.007247,0.249895,0,0);}
.m131_c00412{transform:matrix(0.172882,0.005014,-0.007247,0.249895,0,0);-ms-transform:matrix(0.172882,0.005014,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.172882,0.005014,-0.007247,0.249895,0,0);}
.mc6_c00412{transform:matrix(0.172961,0.004324,-0.006248,0.249922,0,0);-ms-transform:matrix(0.172961,0.004324,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.172961,0.004324,-0.006248,0.249922,0,0);}
.m128_c00412{transform:matrix(0.173347,0.005027,-0.007247,0.249895,0,0);-ms-transform:matrix(0.173347,0.005027,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.173347,0.005027,-0.007247,0.249895,0,0);}
.m13b_c00412{transform:matrix(0.173437,0.005030,-0.007247,0.249895,0,0);-ms-transform:matrix(0.173437,0.005030,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.173437,0.005030,-0.007247,0.249895,0,0);}
.m136_c00412{transform:matrix(0.176506,0.005119,-0.007247,0.249895,0,0);-ms-transform:matrix(0.176506,0.005119,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.176506,0.005119,-0.007247,0.249895,0,0);}
.mc0_c00412{transform:matrix(0.176600,0.004415,-0.006248,0.249922,0,0);-ms-transform:matrix(0.176600,0.004415,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.176600,0.004415,-0.006248,0.249922,0,0);}
.mc5_c00412{transform:matrix(0.177330,0.004433,-0.006248,0.249922,0,0);-ms-transform:matrix(0.177330,0.004433,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.177330,0.004433,-0.006248,0.249922,0,0);}
.m125_c00412{transform:matrix(0.179440,0.005204,-0.007247,0.249895,0,0);-ms-transform:matrix(0.179440,0.005204,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.179440,0.005204,-0.007247,0.249895,0,0);}
.m135_c00412{transform:matrix(0.180734,0.005241,-0.007247,0.249895,0,0);-ms-transform:matrix(0.180734,0.005241,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.180734,0.005241,-0.007247,0.249895,0,0);}
.m65_c00412{transform:matrix(0.181188,0.001631,-0.002250,0.249990,0,0);-ms-transform:matrix(0.181188,0.001631,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.181188,0.001631,-0.002250,0.249990,0,0);}
.mbe_c00412{transform:matrix(0.181573,0.004539,-0.006248,0.249922,0,0);-ms-transform:matrix(0.181573,0.004539,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.181573,0.004539,-0.006248,0.249922,0,0);}
.m114_c00412{transform:matrix(0.181749,0.005271,-0.007247,0.249895,0,0);-ms-transform:matrix(0.181749,0.005271,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.181749,0.005271,-0.007247,0.249895,0,0);}
.mbc_c00412{transform:matrix(0.183548,0.004589,-0.006248,0.249922,0,0);-ms-transform:matrix(0.183548,0.004589,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.183548,0.004589,-0.006248,0.249922,0,0);}
.m41_c00412{transform:matrix(0.183709,0.002388,-0.003250,0.249979,0,0);-ms-transform:matrix(0.183709,0.002388,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.183709,0.002388,-0.003250,0.249979,0,0);}
.m9b_c00412{transform:matrix(0.183978,0.001656,-0.002250,0.249990,0,0);-ms-transform:matrix(0.183978,0.001656,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.183978,0.001656,-0.002250,0.249990,0,0);}
.m80_c00412{transform:matrix(0.184218,0.001658,-0.002250,0.249990,0,0);-ms-transform:matrix(0.184218,0.001658,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.184218,0.001658,-0.002250,0.249990,0,0);}
.m126_c00412{transform:matrix(0.184308,0.005345,-0.007247,0.249895,0,0);-ms-transform:matrix(0.184308,0.005345,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.184308,0.005345,-0.007247,0.249895,0,0);}
.m130_c00412{transform:matrix(0.184427,0.005348,-0.007247,0.249895,0,0);-ms-transform:matrix(0.184427,0.005348,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.184427,0.005348,-0.007247,0.249895,0,0);}
.m156_c00412{transform:matrix(0.184910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184910,0.000000,0.000000,0.250000,0,0);}
.m12c_c00412{transform:matrix(0.185497,0.005379,-0.007247,0.249895,0,0);-ms-transform:matrix(0.185497,0.005379,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.185497,0.005379,-0.007247,0.249895,0,0);}
.mc3_c00412{transform:matrix(0.186162,0.004654,-0.006248,0.249922,0,0);-ms-transform:matrix(0.186162,0.004654,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.186162,0.004654,-0.006248,0.249922,0,0);}
.m14e_c00412{transform:matrix(0.186595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186595,0.000000,0.000000,0.250000,0,0);}
.m159_c00412{transform:matrix(0.186955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186955,0.000000,0.000000,0.250000,0,0);}
.m149_c00412{transform:matrix(0.187525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187525,0.000000,0.000000,0.250000,0,0);}
.m12d_c00412{transform:matrix(0.187631,0.005441,-0.007247,0.249895,0,0);-ms-transform:matrix(0.187631,0.005441,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.187631,0.005441,-0.007247,0.249895,0,0);}
.m14a_c00412{transform:matrix(0.187745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187745,0.000000,0.000000,0.250000,0,0);}
.m14c_c00412{transform:matrix(0.188175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188175,0.000000,0.000000,0.250000,0,0);}
.m133_c00412{transform:matrix(0.188411,0.005464,-0.007247,0.249895,0,0);-ms-transform:matrix(0.188411,0.005464,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.188411,0.005464,-0.007247,0.249895,0,0);}
.m13d_c00412{transform:matrix(0.189066,0.005483,-0.007247,0.249895,0,0);-ms-transform:matrix(0.189066,0.005483,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.189066,0.005483,-0.007247,0.249895,0,0);}
.mfe_c00412{transform:matrix(0.189165,0.005486,-0.007247,0.249895,0,0);-ms-transform:matrix(0.189165,0.005486,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.189165,0.005486,-0.007247,0.249895,0,0);}
.m13c_c00412{transform:matrix(0.189995,0.005510,-0.007247,0.249895,0,0);-ms-transform:matrix(0.189995,0.005510,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.189995,0.005510,-0.007247,0.249895,0,0);}
.m12a_c00412{transform:matrix(0.190310,0.005519,-0.007247,0.249895,0,0);-ms-transform:matrix(0.190310,0.005519,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.190310,0.005519,-0.007247,0.249895,0,0);}
.m157_c00412{transform:matrix(0.190525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190525,0.000000,0.000000,0.250000,0,0);}
.m14d_c00412{transform:matrix(0.190590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190590,0.000000,0.000000,0.250000,0,0);}
.mc4_c00412{transform:matrix(0.190875,0.004772,-0.006248,0.249922,0,0);-ms-transform:matrix(0.190875,0.004772,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.190875,0.004772,-0.006248,0.249922,0,0);}
.mb0_c00412{transform:matrix(0.190970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190970,0.000000,0.000000,0.250000,0,0);}
.m139_c00412{transform:matrix(0.192484,0.005582,-0.007247,0.249895,0,0);-ms-transform:matrix(0.192484,0.005582,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.192484,0.005582,-0.007247,0.249895,0,0);}
.m10f_c00412{transform:matrix(0.192504,0.005583,-0.007247,0.249895,0,0);-ms-transform:matrix(0.192504,0.005583,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.192504,0.005583,-0.007247,0.249895,0,0);}
.md8_c00412{transform:matrix(0.193095,0.004827,-0.006248,0.249922,0,0);-ms-transform:matrix(0.193095,0.004827,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.193095,0.004827,-0.006248,0.249922,0,0);}
.m61_c00412{transform:matrix(0.193497,0.001741,-0.002250,0.249990,0,0);-ms-transform:matrix(0.193497,0.001741,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.193497,0.001741,-0.002250,0.249990,0,0);}
.m12b_c00412{transform:matrix(0.193709,0.005618,-0.007247,0.249895,0,0);-ms-transform:matrix(0.193709,0.005618,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.193709,0.005618,-0.007247,0.249895,0,0);}
.m12f_c00412{transform:matrix(0.193754,0.005619,-0.007247,0.249895,0,0);-ms-transform:matrix(0.193754,0.005619,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.193754,0.005619,-0.007247,0.249895,0,0);}
.m10e_c00412{transform:matrix(0.195423,0.005667,-0.007247,0.249895,0,0);-ms-transform:matrix(0.195423,0.005667,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.195423,0.005667,-0.007247,0.249895,0,0);}
.m150_c00412{transform:matrix(0.196070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196070,0.000000,0.000000,0.250000,0,0);}
.me_c00412{transform:matrix(0.196278,0.002552,-0.003250,0.249979,0,0);-ms-transform:matrix(0.196278,0.002552,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.196278,0.002552,-0.003250,0.249979,0,0);}
.m26_c00412{transform:matrix(0.196493,0.002554,-0.003250,0.249979,0,0);-ms-transform:matrix(0.196493,0.002554,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.196493,0.002554,-0.003250,0.249979,0,0);}
.mf7_c00412{transform:matrix(0.196712,0.005705,-0.007247,0.249895,0,0);-ms-transform:matrix(0.196712,0.005705,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.196712,0.005705,-0.007247,0.249895,0,0);}
.m15c_c00412{transform:matrix(0.196805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196805,0.000000,0.000000,0.250000,0,0);}
.mf5_c00412{transform:matrix(0.197247,0.005720,-0.007247,0.249895,0,0);-ms-transform:matrix(0.197247,0.005720,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.197247,0.005720,-0.007247,0.249895,0,0);}
.m94_c00412{transform:matrix(0.197572,0.001778,-0.002250,0.249990,0,0);-ms-transform:matrix(0.197572,0.001778,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.197572,0.001778,-0.002250,0.249990,0,0);}
.m15b_c00412{transform:matrix(0.198770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198770,0.000000,0.000000,0.250000,0,0);}
.m90_c00412{transform:matrix(0.199027,0.001791,-0.002250,0.249990,0,0);-ms-transform:matrix(0.199027,0.001791,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.199027,0.001791,-0.002250,0.249990,0,0);}
.mdf_c00412{transform:matrix(0.200232,0.005006,-0.006248,0.249922,0,0);-ms-transform:matrix(0.200232,0.005006,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.200232,0.005006,-0.006248,0.249922,0,0);}
.m7b_c00412{transform:matrix(0.200237,0.001802,-0.002250,0.249990,0,0);-ms-transform:matrix(0.200237,0.001802,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.200237,0.001802,-0.002250,0.249990,0,0);}
.ma4_c00412{transform:matrix(0.200368,0.002605,-0.003250,0.249979,0,0);-ms-transform:matrix(0.200368,0.002605,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.200368,0.002605,-0.003250,0.249979,0,0);}
.mac_c00412{transform:matrix(0.200933,0.002612,-0.003250,0.249979,0,0);-ms-transform:matrix(0.200933,0.002612,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.200933,0.002612,-0.003250,0.249979,0,0);}
.m2a_c00412{transform:matrix(0.201578,0.002621,-0.003250,0.249979,0,0);-ms-transform:matrix(0.201578,0.002621,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.201578,0.002621,-0.003250,0.249979,0,0);}
.m10b_c00412{transform:matrix(0.201915,0.005856,-0.007247,0.249895,0,0);-ms-transform:matrix(0.201915,0.005856,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.201915,0.005856,-0.007247,0.249895,0,0);}
.m116_c00412{transform:matrix(0.202580,0.005875,-0.007247,0.249895,0,0);-ms-transform:matrix(0.202580,0.005875,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.202580,0.005875,-0.007247,0.249895,0,0);}
.m60_c00412{transform:matrix(0.203307,0.001830,-0.002250,0.249990,0,0);-ms-transform:matrix(0.203307,0.001830,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.203307,0.001830,-0.002250,0.249990,0,0);}
.m10_c00412{transform:matrix(0.204313,0.002656,-0.003250,0.249979,0,0);-ms-transform:matrix(0.204313,0.002656,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.204313,0.002656,-0.003250,0.249979,0,0);}
.m39_c00412{transform:matrix(0.205003,0.002665,-0.003250,0.249979,0,0);-ms-transform:matrix(0.205003,0.002665,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.205003,0.002665,-0.003250,0.249979,0,0);}
.m158_c00412{transform:matrix(0.205230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205230,0.000000,0.000000,0.250000,0,0);}
.m112_c00412{transform:matrix(0.206838,0.005998,-0.007247,0.249895,0,0);-ms-transform:matrix(0.206838,0.005998,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.206838,0.005998,-0.007247,0.249895,0,0);}
.m1_c00412{transform:matrix(0.207440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207440,0.000000,0.000000,0.250000,0,0);}
.m15a_c00412{transform:matrix(0.207760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207760,0.000000,0.000000,0.250000,0,0);}
.mf3_c00412{transform:matrix(0.208622,0.006050,-0.007247,0.249895,0,0);-ms-transform:matrix(0.208622,0.006050,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.208622,0.006050,-0.007247,0.249895,0,0);}
.md6_c00412{transform:matrix(0.208645,0.005216,-0.006248,0.249922,0,0);-ms-transform:matrix(0.208645,0.005216,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.208645,0.005216,-0.006248,0.249922,0,0);}
.m73_c00412{transform:matrix(0.208707,0.001878,-0.002250,0.249990,0,0);-ms-transform:matrix(0.208707,0.001878,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.208707,0.001878,-0.002250,0.249990,0,0);}
.med_c00412{transform:matrix(0.209155,0.005229,-0.006248,0.249922,0,0);-ms-transform:matrix(0.209155,0.005229,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.209155,0.005229,-0.006248,0.249922,0,0);}
.mf0_c00412{transform:matrix(0.209272,0.006069,-0.007247,0.249895,0,0);-ms-transform:matrix(0.209272,0.006069,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.209272,0.006069,-0.007247,0.249895,0,0);}
.mfd_c00412{transform:matrix(0.209777,0.006084,-0.007247,0.249895,0,0);-ms-transform:matrix(0.209777,0.006084,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.209777,0.006084,-0.007247,0.249895,0,0);}
.mf4_c00412{transform:matrix(0.209807,0.006084,-0.007247,0.249895,0,0);-ms-transform:matrix(0.209807,0.006084,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.209807,0.006084,-0.007247,0.249895,0,0);}
.m47_c00412{transform:matrix(0.209917,0.002729,-0.003250,0.249979,0,0);-ms-transform:matrix(0.209917,0.002729,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.209917,0.002729,-0.003250,0.249979,0,0);}
.m99_c00412{transform:matrix(0.209926,0.001889,-0.002250,0.249990,0,0);-ms-transform:matrix(0.209926,0.001889,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.209926,0.001889,-0.002250,0.249990,0,0);}
.m8e_c00412{transform:matrix(0.210286,0.001893,-0.002250,0.249990,0,0);-ms-transform:matrix(0.210286,0.001893,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.210286,0.001893,-0.002250,0.249990,0,0);}
.m7d_c00412{transform:matrix(0.210406,0.001894,-0.002250,0.249990,0,0);-ms-transform:matrix(0.210406,0.001894,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.210406,0.001894,-0.002250,0.249990,0,0);}
.m155_c00412{transform:matrix(0.210605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210605,0.000000,0.000000,0.250000,0,0);}
.m100_c00412{transform:matrix(0.211126,0.006123,-0.007247,0.249895,0,0);-ms-transform:matrix(0.211126,0.006123,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.211126,0.006123,-0.007247,0.249895,0,0);}
.mfc_c00412{transform:matrix(0.211196,0.006125,-0.007247,0.249895,0,0);-ms-transform:matrix(0.211196,0.006125,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.211196,0.006125,-0.007247,0.249895,0,0);}
.m55_c00412{transform:matrix(0.211336,0.001902,-0.002250,0.249990,0,0);-ms-transform:matrix(0.211336,0.001902,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.211336,0.001902,-0.002250,0.249990,0,0);}
.md3_c00412{transform:matrix(0.211419,0.005285,-0.006248,0.249922,0,0);-ms-transform:matrix(0.211419,0.005285,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.211419,0.005285,-0.006248,0.249922,0,0);}
.m110_c00412{transform:matrix(0.211491,0.006133,-0.007247,0.249895,0,0);-ms-transform:matrix(0.211491,0.006133,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.211491,0.006133,-0.007247,0.249895,0,0);}
.me9_c00412{transform:matrix(0.211594,0.005290,-0.006248,0.249922,0,0);-ms-transform:matrix(0.211594,0.005290,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.211594,0.005290,-0.006248,0.249922,0,0);}
.m105_c00412{transform:matrix(0.211781,0.006142,-0.007247,0.249895,0,0);-ms-transform:matrix(0.211781,0.006142,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.211781,0.006142,-0.007247,0.249895,0,0);}
.mad_c00412{transform:matrix(0.212592,0.002764,-0.003250,0.249979,0,0);-ms-transform:matrix(0.212592,0.002764,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.212592,0.002764,-0.003250,0.249979,0,0);}
.m4e_c00412{transform:matrix(0.212752,0.002766,-0.003250,0.249979,0,0);-ms-transform:matrix(0.212752,0.002766,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.212752,0.002766,-0.003250,0.249979,0,0);}
.mdb_c00412{transform:matrix(0.213003,0.005325,-0.006248,0.249922,0,0);-ms-transform:matrix(0.213003,0.005325,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.213003,0.005325,-0.006248,0.249922,0,0);}
.m63_c00412{transform:matrix(0.213126,0.001918,-0.002250,0.249990,0,0);-ms-transform:matrix(0.213126,0.001918,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.213126,0.001918,-0.002250,0.249990,0,0);}
.m96_c00412{transform:matrix(0.214406,0.001930,-0.002250,0.249990,0,0);-ms-transform:matrix(0.214406,0.001930,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.214406,0.001930,-0.002250,0.249990,0,0);}
.mf2_c00412{transform:matrix(0.214590,0.006223,-0.007247,0.249895,0,0);-ms-transform:matrix(0.214590,0.006223,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.214590,0.006223,-0.007247,0.249895,0,0);}
.m31_c00412{transform:matrix(0.214782,0.002792,-0.003250,0.249979,0,0);-ms-transform:matrix(0.214782,0.002792,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.214782,0.002792,-0.003250,0.249979,0,0);}
.mda_c00412{transform:matrix(0.216657,0.005416,-0.006248,0.249922,0,0);-ms-transform:matrix(0.216657,0.005416,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.216657,0.005416,-0.006248,0.249922,0,0);}
.m142_c00412{transform:matrix(0.216944,0.006291,-0.007247,0.249895,0,0);-ms-transform:matrix(0.216944,0.006291,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.216944,0.006291,-0.007247,0.249895,0,0);}
.m6f_c00412{transform:matrix(0.216986,0.001953,-0.002250,0.249990,0,0);-ms-transform:matrix(0.216986,0.001953,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.216986,0.001953,-0.002250,0.249990,0,0);}
.m154_c00412{transform:matrix(0.217495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217495,0.000000,0.000000,0.250000,0,0);}
.ma6_c00412{transform:matrix(0.217752,0.002831,-0.003250,0.249979,0,0);-ms-transform:matrix(0.217752,0.002831,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.217752,0.002831,-0.003250,0.249979,0,0);}
.md9_c00412{transform:matrix(0.217792,0.005445,-0.006248,0.249922,0,0);-ms-transform:matrix(0.217792,0.005445,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.217792,0.005445,-0.006248,0.249922,0,0);}
.m115_c00412{transform:matrix(0.217858,0.006318,-0.007247,0.249895,0,0);-ms-transform:matrix(0.217858,0.006318,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.217858,0.006318,-0.007247,0.249895,0,0);}
.mf1_c00412{transform:matrix(0.218483,0.006336,-0.007247,0.249895,0,0);-ms-transform:matrix(0.218483,0.006336,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.218483,0.006336,-0.007247,0.249895,0,0);}
.mf9_c00412{transform:matrix(0.218663,0.006341,-0.007247,0.249895,0,0);-ms-transform:matrix(0.218663,0.006341,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.218663,0.006341,-0.007247,0.249895,0,0);}
.m7c_c00412{transform:matrix(0.219056,0.001972,-0.002250,0.249990,0,0);-ms-transform:matrix(0.219056,0.001972,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.219056,0.001972,-0.002250,0.249990,0,0);}
.m81_c00412{transform:matrix(0.219201,0.001973,-0.002250,0.249990,0,0);-ms-transform:matrix(0.219201,0.001973,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.219201,0.001973,-0.002250,0.249990,0,0);}
.m5e_c00412{transform:matrix(0.219306,0.001974,-0.002250,0.249990,0,0);-ms-transform:matrix(0.219306,0.001974,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.219306,0.001974,-0.002250,0.249990,0,0);}
.mea_c00412{transform:matrix(0.219541,0.005489,-0.006248,0.249922,0,0);-ms-transform:matrix(0.219541,0.005489,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.219541,0.005489,-0.006248,0.249922,0,0);}
.m103_c00412{transform:matrix(0.219798,0.006374,-0.007247,0.249895,0,0);-ms-transform:matrix(0.219798,0.006374,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.219798,0.006374,-0.007247,0.249895,0,0);}
.md5_c00412{transform:matrix(0.219891,0.005497,-0.006248,0.249922,0,0);-ms-transform:matrix(0.219891,0.005497,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.219891,0.005497,-0.006248,0.249922,0,0);}
.m4b_c00412{transform:matrix(0.220196,0.002863,-0.003250,0.249979,0,0);-ms-transform:matrix(0.220196,0.002863,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.220196,0.002863,-0.003250,0.249979,0,0);}
.m111_c00412{transform:matrix(0.220697,0.006400,-0.007247,0.249895,0,0);-ms-transform:matrix(0.220697,0.006400,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.220697,0.006400,-0.007247,0.249895,0,0);}
.m106_c00412{transform:matrix(0.220737,0.006401,-0.007247,0.249895,0,0);-ms-transform:matrix(0.220737,0.006401,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.220737,0.006401,-0.007247,0.249895,0,0);}
.m43_c00412{transform:matrix(0.220811,0.002871,-0.003250,0.249979,0,0);-ms-transform:matrix(0.220811,0.002871,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.220811,0.002871,-0.003250,0.249979,0,0);}
.m75_c00412{transform:matrix(0.220881,0.001988,-0.002250,0.249990,0,0);-ms-transform:matrix(0.220881,0.001988,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.220881,0.001988,-0.002250,0.249990,0,0);}
.mab_c00412{transform:matrix(0.221121,0.002875,-0.003250,0.249979,0,0);-ms-transform:matrix(0.221121,0.002875,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.221121,0.002875,-0.003250,0.249979,0,0);}
.m22_c00412{transform:matrix(0.221186,0.002875,-0.003250,0.249979,0,0);-ms-transform:matrix(0.221186,0.002875,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.221186,0.002875,-0.003250,0.249979,0,0);}
.maf_c00412{transform:matrix(0.221400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221400,0.000000,0.000000,0.250000,0,0);}
.m44_c00412{transform:matrix(0.222471,0.002892,-0.003250,0.249979,0,0);-ms-transform:matrix(0.222471,0.002892,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.222471,0.002892,-0.003250,0.249979,0,0);}
.m49_c00412{transform:matrix(0.223361,0.002904,-0.003250,0.249979,0,0);-ms-transform:matrix(0.223361,0.002904,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.223361,0.002904,-0.003250,0.249979,0,0);}
.m9d_c00412{transform:matrix(0.223371,0.002010,-0.002250,0.249990,0,0);-ms-transform:matrix(0.223371,0.002010,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.223371,0.002010,-0.002250,0.249990,0,0);}
.mcf_c00412{transform:matrix(0.223535,0.005588,-0.006248,0.249922,0,0);-ms-transform:matrix(0.223535,0.005588,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.223535,0.005588,-0.006248,0.249922,0,0);}
.m119_c00412{transform:matrix(0.223976,0.006495,-0.007247,0.249895,0,0);-ms-transform:matrix(0.223976,0.006495,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.223976,0.006495,-0.007247,0.249895,0,0);}
.mc_c00412{transform:matrix(0.224051,0.002913,-0.003250,0.249979,0,0);-ms-transform:matrix(0.224051,0.002913,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.224051,0.002913,-0.003250,0.249979,0,0);}
.ma7_c00412{transform:matrix(0.224636,0.002920,-0.003250,0.249979,0,0);-ms-transform:matrix(0.224636,0.002920,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.224636,0.002920,-0.003250,0.249979,0,0);}
.m78_c00412{transform:matrix(0.224646,0.002022,-0.002250,0.249990,0,0);-ms-transform:matrix(0.224646,0.002022,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.224646,0.002022,-0.002250,0.249990,0,0);}
.m88_c00412{transform:matrix(0.224671,0.002022,-0.002250,0.249990,0,0);-ms-transform:matrix(0.224671,0.002022,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.224671,0.002022,-0.002250,0.249990,0,0);}
.m6b_c00412{transform:matrix(0.224946,0.002025,-0.002250,0.249990,0,0);-ms-transform:matrix(0.224946,0.002025,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.224946,0.002025,-0.002250,0.249990,0,0);}
.m146_c00412{transform:matrix(0.225230,0.006532,-0.007247,0.249895,0,0);-ms-transform:matrix(0.225230,0.006532,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.225230,0.006532,-0.007247,0.249895,0,0);}
.m11e_c00412{transform:matrix(0.225250,0.006532,-0.007247,0.249895,0,0);-ms-transform:matrix(0.225250,0.006532,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.225250,0.006532,-0.007247,0.249895,0,0);}
.ma8_c00412{transform:matrix(0.225486,0.002931,-0.003250,0.249979,0,0);-ms-transform:matrix(0.225486,0.002931,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.225486,0.002931,-0.003250,0.249979,0,0);}
.m5b_c00412{transform:matrix(0.225696,0.002031,-0.002250,0.249990,0,0);-ms-transform:matrix(0.225696,0.002031,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.225696,0.002031,-0.002250,0.249990,0,0);}
.mfa_c00412{transform:matrix(0.225810,0.006548,-0.007247,0.249895,0,0);-ms-transform:matrix(0.225810,0.006548,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.225810,0.006548,-0.007247,0.249895,0,0);}
.mcb_c00412{transform:matrix(0.226039,0.005651,-0.006248,0.249922,0,0);-ms-transform:matrix(0.226039,0.005651,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.226039,0.005651,-0.006248,0.249922,0,0);}
.m79_c00412{transform:matrix(0.226346,0.002037,-0.002250,0.249990,0,0);-ms-transform:matrix(0.226346,0.002037,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.226346,0.002037,-0.002250,0.249990,0,0);}
.m4c_c00412{transform:matrix(0.226556,0.002945,-0.003250,0.249979,0,0);-ms-transform:matrix(0.226556,0.002945,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.226556,0.002945,-0.003250,0.249979,0,0);}
.m91_c00412{transform:matrix(0.226736,0.002041,-0.002250,0.249990,0,0);-ms-transform:matrix(0.226736,0.002041,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.226736,0.002041,-0.002250,0.249990,0,0);}
.m7e_c00412{transform:matrix(0.226876,0.002042,-0.002250,0.249990,0,0);-ms-transform:matrix(0.226876,0.002042,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.226876,0.002042,-0.002250,0.249990,0,0);}
.m12e_c00412{transform:matrix(0.227174,0.006588,-0.007247,0.249895,0,0);-ms-transform:matrix(0.227174,0.006588,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.227174,0.006588,-0.007247,0.249895,0,0);}
.m1d_c00412{transform:matrix(0.227411,0.002956,-0.003250,0.249979,0,0);-ms-transform:matrix(0.227411,0.002956,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.227411,0.002956,-0.003250,0.249979,0,0);}
.ma5_c00412{transform:matrix(0.227581,0.002959,-0.003250,0.249979,0,0);-ms-transform:matrix(0.227581,0.002959,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.227581,0.002959,-0.003250,0.249979,0,0);}
.mdd_c00412{transform:matrix(0.227619,0.005690,-0.006248,0.249922,0,0);-ms-transform:matrix(0.227619,0.005690,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.227619,0.005690,-0.006248,0.249922,0,0);}
.m118_c00412{transform:matrix(0.228074,0.006614,-0.007247,0.249895,0,0);-ms-transform:matrix(0.228074,0.006614,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.228074,0.006614,-0.007247,0.249895,0,0);}
.m72_c00412{transform:matrix(0.228116,0.002053,-0.002250,0.249990,0,0);-ms-transform:matrix(0.228116,0.002053,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.228116,0.002053,-0.002250,0.249990,0,0);}
.m62_c00412{transform:matrix(0.228131,0.002053,-0.002250,0.249990,0,0);-ms-transform:matrix(0.228131,0.002053,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.228131,0.002053,-0.002250,0.249990,0,0);}
.mf8_c00412{transform:matrix(0.228169,0.006617,-0.007247,0.249895,0,0);-ms-transform:matrix(0.228169,0.006617,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.228169,0.006617,-0.007247,0.249895,0,0);}
.m113_c00412{transform:matrix(0.228349,0.006622,-0.007247,0.249895,0,0);-ms-transform:matrix(0.228349,0.006622,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.228349,0.006622,-0.007247,0.249895,0,0);}
.mb7_c00412{transform:matrix(0.228744,0.005719,-0.006248,0.249922,0,0);-ms-transform:matrix(0.228744,0.005719,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.228744,0.005719,-0.006248,0.249922,0,0);}
.m71_c00412{transform:matrix(0.228851,0.002060,-0.002250,0.249990,0,0);-ms-transform:matrix(0.228851,0.002060,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.228851,0.002060,-0.002250,0.249990,0,0);}
.m10c_c00412{transform:matrix(0.228914,0.006638,-0.007247,0.249895,0,0);-ms-transform:matrix(0.228914,0.006638,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.228914,0.006638,-0.007247,0.249895,0,0);}
.m102_c00412{transform:matrix(0.228949,0.006640,-0.007247,0.249895,0,0);-ms-transform:matrix(0.228949,0.006640,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.228949,0.006640,-0.007247,0.249895,0,0);}
.m6a_c00412{transform:matrix(0.229146,0.002062,-0.002250,0.249990,0,0);-ms-transform:matrix(0.229146,0.002062,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.229146,0.002062,-0.002250,0.249990,0,0);}
.m48_c00412{transform:matrix(0.229866,0.002988,-0.003250,0.249979,0,0);-ms-transform:matrix(0.229866,0.002988,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.229866,0.002988,-0.003250,0.249979,0,0);}
.m10d_c00412{transform:matrix(0.229963,0.006669,-0.007247,0.249895,0,0);-ms-transform:matrix(0.229963,0.006669,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.229963,0.006669,-0.007247,0.249895,0,0);}
.mef_c00412{transform:matrix(0.230113,0.005753,-0.006248,0.249922,0,0);-ms-transform:matrix(0.230113,0.005753,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.230113,0.005753,-0.006248,0.249922,0,0);}
.m4d_c00412{transform:matrix(0.230201,0.002993,-0.003250,0.249979,0,0);-ms-transform:matrix(0.230201,0.002993,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.230201,0.002993,-0.003250,0.249979,0,0);}
.m7a_c00412{transform:matrix(0.230506,0.002075,-0.002250,0.249990,0,0);-ms-transform:matrix(0.230506,0.002075,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.230506,0.002075,-0.002250,0.249990,0,0);}
.m74_c00412{transform:matrix(0.231191,0.002081,-0.002250,0.249990,0,0);-ms-transform:matrix(0.231191,0.002081,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.231191,0.002081,-0.002250,0.249990,0,0);}
.m109_c00412{transform:matrix(0.231528,0.006714,-0.007247,0.249895,0,0);-ms-transform:matrix(0.231528,0.006714,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.231528,0.006714,-0.007247,0.249895,0,0);}
.md4_c00412{transform:matrix(0.231588,0.005790,-0.006248,0.249922,0,0);-ms-transform:matrix(0.231588,0.005790,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.231588,0.005790,-0.006248,0.249922,0,0);}
.m45_c00412{transform:matrix(0.231610,0.003011,-0.003250,0.249979,0,0);-ms-transform:matrix(0.231610,0.003011,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.231610,0.003011,-0.003250,0.249979,0,0);}
.mec_c00412{transform:matrix(0.231763,0.005794,-0.006248,0.249922,0,0);-ms-transform:matrix(0.231763,0.005794,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.231763,0.005794,-0.006248,0.249922,0,0);}
.mf6_c00412{transform:matrix(0.231808,0.006722,-0.007247,0.249895,0,0);-ms-transform:matrix(0.231808,0.006722,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.231808,0.006722,-0.007247,0.249895,0,0);}
.mdc_c00412{transform:matrix(0.231913,0.005798,-0.006248,0.249922,0,0);-ms-transform:matrix(0.231913,0.005798,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.231913,0.005798,-0.006248,0.249922,0,0);}
.mc7_c00412{transform:matrix(0.232212,0.005805,-0.006248,0.249922,0,0);-ms-transform:matrix(0.232212,0.005805,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.232212,0.005805,-0.006248,0.249922,0,0);}
.m17_c00412{transform:matrix(0.232385,0.003021,-0.003250,0.249979,0,0);-ms-transform:matrix(0.232385,0.003021,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.232385,0.003021,-0.003250,0.249979,0,0);}
.m12_c00412{transform:matrix(0.232445,0.003022,-0.003250,0.249979,0,0);-ms-transform:matrix(0.232445,0.003022,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.232445,0.003022,-0.003250,0.249979,0,0);}
.m8c_c00412{transform:matrix(0.232546,0.002093,-0.002250,0.249990,0,0);-ms-transform:matrix(0.232546,0.002093,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.232546,0.002093,-0.002250,0.249990,0,0);}
.m68_c00412{transform:matrix(0.232841,0.002096,-0.002250,0.249990,0,0);-ms-transform:matrix(0.232841,0.002096,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.232841,0.002096,-0.002250,0.249990,0,0);}
.meb_c00412{transform:matrix(0.233322,0.005833,-0.006248,0.249922,0,0);-ms-transform:matrix(0.233322,0.005833,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.233322,0.005833,-0.006248,0.249922,0,0);}
.m95_c00412{transform:matrix(0.233406,0.002101,-0.002250,0.249990,0,0);-ms-transform:matrix(0.233406,0.002101,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.233406,0.002101,-0.002250,0.249990,0,0);}
.mb3_c00412{transform:matrix(0.233607,0.005840,-0.006248,0.249922,0,0);-ms-transform:matrix(0.233607,0.005840,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.233607,0.005840,-0.006248,0.249922,0,0);}
.m9a_c00412{transform:matrix(0.234251,0.002108,-0.002250,0.249990,0,0);-ms-transform:matrix(0.234251,0.002108,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.234251,0.002108,-0.002250,0.249990,0,0);}
.m77_c00412{transform:matrix(0.234311,0.002109,-0.002250,0.249990,0,0);-ms-transform:matrix(0.234311,0.002109,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.234311,0.002109,-0.002250,0.249990,0,0);}
.m137_c00412{transform:matrix(0.235216,0.006821,-0.007247,0.249895,0,0);-ms-transform:matrix(0.235216,0.006821,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.235216,0.006821,-0.007247,0.249895,0,0);}
.md0_c00412{transform:matrix(0.235681,0.005892,-0.006248,0.249922,0,0);-ms-transform:matrix(0.235681,0.005892,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.235681,0.005892,-0.006248,0.249922,0,0);}
.m6d_c00412{transform:matrix(0.235780,0.002122,-0.002250,0.249990,0,0);-ms-transform:matrix(0.235780,0.002122,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.235780,0.002122,-0.002250,0.249990,0,0);}
.m7f_c00412{transform:matrix(0.235815,0.002122,-0.002250,0.249990,0,0);-ms-transform:matrix(0.235815,0.002122,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.235815,0.002122,-0.002250,0.249990,0,0);}
.m160_c00412{transform:matrix(0.235828,0.002358,-0.002500,0.249988,0,0);-ms-transform:matrix(0.235828,0.002358,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.235828,0.002358,-0.002500,0.249988,0,0);}
.m21_c00412{transform:matrix(0.236425,0.003074,-0.003250,0.249979,0,0);-ms-transform:matrix(0.236425,0.003074,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.236425,0.003074,-0.003250,0.249979,0,0);}
.m86_c00412{transform:matrix(0.236435,0.002128,-0.002250,0.249990,0,0);-ms-transform:matrix(0.236435,0.002128,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.236435,0.002128,-0.002250,0.249990,0,0);}
.mee_c00412{transform:matrix(0.236661,0.005917,-0.006248,0.249922,0,0);-ms-transform:matrix(0.236661,0.005917,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.236661,0.005917,-0.006248,0.249922,0,0);}
.m70_c00412{transform:matrix(0.236890,0.002132,-0.002250,0.249990,0,0);-ms-transform:matrix(0.236890,0.002132,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.236890,0.002132,-0.002250,0.249990,0,0);}
.mb_c00412{transform:matrix(0.237005,0.003081,-0.003250,0.249979,0,0);-ms-transform:matrix(0.237005,0.003081,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.237005,0.003081,-0.003250,0.249979,0,0);}
.m121_c00412{transform:matrix(0.237070,0.006875,-0.007247,0.249895,0,0);-ms-transform:matrix(0.237070,0.006875,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.237070,0.006875,-0.007247,0.249895,0,0);}
.m50_c00412{transform:matrix(0.237265,0.002135,-0.002250,0.249990,0,0);-ms-transform:matrix(0.237265,0.002135,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.237265,0.002135,-0.002250,0.249990,0,0);}
.m9e_c00412{transform:matrix(0.237320,0.002136,-0.002250,0.249990,0,0);-ms-transform:matrix(0.237320,0.002136,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.237320,0.002136,-0.002250,0.249990,0,0);}
.m64_c00412{transform:matrix(0.238050,0.002142,-0.002250,0.249990,0,0);-ms-transform:matrix(0.238050,0.002142,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.238050,0.002142,-0.002250,0.249990,0,0);}
.me4_c00412{transform:matrix(0.238460,0.005962,-0.006248,0.249922,0,0);-ms-transform:matrix(0.238460,0.005962,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.238460,0.005962,-0.006248,0.249922,0,0);}
.m15_c00412{transform:matrix(0.238550,0.003101,-0.003250,0.249979,0,0);-ms-transform:matrix(0.238550,0.003101,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.238550,0.003101,-0.003250,0.249979,0,0);}
.m11c_c00412{transform:matrix(0.238910,0.006928,-0.007247,0.249895,0,0);-ms-transform:matrix(0.238910,0.006928,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.238910,0.006928,-0.007247,0.249895,0,0);}
.mb9_c00412{transform:matrix(0.238935,0.005973,-0.006248,0.249922,0,0);-ms-transform:matrix(0.238935,0.005973,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.238935,0.005973,-0.006248,0.249922,0,0);}
.m85_c00412{transform:matrix(0.239640,0.002157,-0.002250,0.249990,0,0);-ms-transform:matrix(0.239640,0.002157,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.239640,0.002157,-0.002250,0.249990,0,0);}
.m104_c00412{transform:matrix(0.239994,0.006960,-0.007247,0.249895,0,0);-ms-transform:matrix(0.239994,0.006960,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.239994,0.006960,-0.007247,0.249895,0,0);}
.m141_c00412{transform:matrix(0.240399,0.006972,-0.007247,0.249895,0,0);-ms-transform:matrix(0.240399,0.006972,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.240399,0.006972,-0.007247,0.249895,0,0);}
.m23_c00412{transform:matrix(0.240615,0.003128,-0.003250,0.249979,0,0);-ms-transform:matrix(0.240615,0.003128,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.240615,0.003128,-0.003250,0.249979,0,0);}
.m82_c00412{transform:matrix(0.240850,0.002168,-0.002250,0.249990,0,0);-ms-transform:matrix(0.240850,0.002168,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.240850,0.002168,-0.002250,0.249990,0,0);}
.m89_c00412{transform:matrix(0.241290,0.002172,-0.002250,0.249990,0,0);-ms-transform:matrix(0.241290,0.002172,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.241290,0.002172,-0.002250,0.249990,0,0);}
.md7_c00412{transform:matrix(0.241330,0.006033,-0.006248,0.249922,0,0);-ms-transform:matrix(0.241330,0.006033,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.241330,0.006033,-0.006248,0.249922,0,0);}
.m69_c00412{transform:matrix(0.241685,0.002175,-0.002250,0.249990,0,0);-ms-transform:matrix(0.241685,0.002175,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.241685,0.002175,-0.002250,0.249990,0,0);}
.m76_c00412{transform:matrix(0.241785,0.002176,-0.002250,0.249990,0,0);-ms-transform:matrix(0.241785,0.002176,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.241785,0.002176,-0.002250,0.249990,0,0);}
.m84_c00412{transform:matrix(0.242100,0.002179,-0.002250,0.249990,0,0);-ms-transform:matrix(0.242100,0.002179,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.242100,0.002179,-0.002250,0.249990,0,0);}
.mde_c00412{transform:matrix(0.242444,0.006061,-0.006248,0.249922,0,0);-ms-transform:matrix(0.242444,0.006061,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.242444,0.006061,-0.006248,0.249922,0,0);}
.m34_c00412{transform:matrix(0.242495,0.003152,-0.003250,0.249979,0,0);-ms-transform:matrix(0.242495,0.003152,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.242495,0.003152,-0.003250,0.249979,0,0);}
.m5f_c00412{transform:matrix(0.242500,0.002183,-0.002250,0.249990,0,0);-ms-transform:matrix(0.242500,0.002183,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.242500,0.002183,-0.002250,0.249990,0,0);}
.mc8_c00412{transform:matrix(0.242629,0.006066,-0.006248,0.249922,0,0);-ms-transform:matrix(0.242629,0.006066,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.242629,0.006066,-0.006248,0.249922,0,0);}
.m144_c00412{transform:matrix(0.242903,0.007044,-0.007247,0.249895,0,0);-ms-transform:matrix(0.242903,0.007044,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.242903,0.007044,-0.007247,0.249895,0,0);}
.m117_c00412{transform:matrix(0.243003,0.007047,-0.007247,0.249895,0,0);-ms-transform:matrix(0.243003,0.007047,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.243003,0.007047,-0.007247,0.249895,0,0);}
.m6e_c00412{transform:matrix(0.243190,0.002189,-0.002250,0.249990,0,0);-ms-transform:matrix(0.243190,0.002189,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.243190,0.002189,-0.002250,0.249990,0,0);}
.m122_c00412{transform:matrix(0.243213,0.007053,-0.007247,0.249895,0,0);-ms-transform:matrix(0.243213,0.007053,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.243213,0.007053,-0.007247,0.249895,0,0);}
.m148_c00412{transform:matrix(0.243218,0.007053,-0.007247,0.249895,0,0);-ms-transform:matrix(0.243218,0.007053,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.243218,0.007053,-0.007247,0.249895,0,0);}
.m7_c00412{transform:matrix(0.243354,0.003164,-0.003250,0.249979,0,0);-ms-transform:matrix(0.243354,0.003164,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.243354,0.003164,-0.003250,0.249979,0,0);}
.ma2_c00412{transform:matrix(0.243494,0.003165,-0.003250,0.249979,0,0);-ms-transform:matrix(0.243494,0.003165,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.243494,0.003165,-0.003250,0.249979,0,0);}
.m58_c00412{transform:matrix(0.243560,0.002192,-0.002250,0.249990,0,0);-ms-transform:matrix(0.243560,0.002192,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.243560,0.002192,-0.002250,0.249990,0,0);}
.m5_c00412{transform:matrix(0.243859,0.003170,-0.003250,0.249979,0,0);-ms-transform:matrix(0.243859,0.003170,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.243859,0.003170,-0.003250,0.249979,0,0);}
.m4_c00412{transform:matrix(0.244004,0.003172,-0.003250,0.249979,0,0);-ms-transform:matrix(0.244004,0.003172,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.244004,0.003172,-0.003250,0.249979,0,0);}
.m42_c00412{transform:matrix(0.244129,0.003174,-0.003250,0.249979,0,0);-ms-transform:matrix(0.244129,0.003174,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.244129,0.003174,-0.003250,0.249979,0,0);}
.m4a_c00412{transform:matrix(0.244429,0.003178,-0.003250,0.249979,0,0);-ms-transform:matrix(0.244429,0.003178,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.244429,0.003178,-0.003250,0.249979,0,0);}
.m9_c00412{transform:matrix(0.244454,0.003178,-0.003250,0.249979,0,0);-ms-transform:matrix(0.244454,0.003178,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.244454,0.003178,-0.003250,0.249979,0,0);}
.mcc_c00412{transform:matrix(0.244858,0.006121,-0.006248,0.249922,0,0);-ms-transform:matrix(0.244858,0.006121,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.244858,0.006121,-0.006248,0.249922,0,0);}
.m92_c00412{transform:matrix(0.245015,0.002205,-0.002250,0.249990,0,0);-ms-transform:matrix(0.245015,0.002205,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.245015,0.002205,-0.002250,0.249990,0,0);}
.ma1_c00412{transform:matrix(0.245704,0.003194,-0.003250,0.249979,0,0);-ms-transform:matrix(0.245704,0.003194,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.245704,0.003194,-0.003250,0.249979,0,0);}
.m27_c00412{transform:matrix(0.245949,0.003197,-0.003250,0.249979,0,0);-ms-transform:matrix(0.245949,0.003197,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.245949,0.003197,-0.003250,0.249979,0,0);}
.maa_c00412{transform:matrix(0.245999,0.003198,-0.003250,0.249979,0,0);-ms-transform:matrix(0.245999,0.003198,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.245999,0.003198,-0.003250,0.249979,0,0);}
.m93_c00412{transform:matrix(0.246075,0.002215,-0.002250,0.249990,0,0);-ms-transform:matrix(0.246075,0.002215,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.246075,0.002215,-0.002250,0.249990,0,0);}
.mb6_c00412{transform:matrix(0.246128,0.006153,-0.006248,0.249922,0,0);-ms-transform:matrix(0.246128,0.006153,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.246128,0.006153,-0.006248,0.249922,0,0);}
.m161_c00412{transform:matrix(0.246493,0.002465,-0.002500,0.249988,0,0);-ms-transform:matrix(0.246493,0.002465,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.246493,0.002465,-0.002500,0.249988,0,0);}
.m147_c00412{transform:matrix(0.246636,0.007152,-0.007247,0.249895,0,0);-ms-transform:matrix(0.246636,0.007152,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.246636,0.007152,-0.007247,0.249895,0,0);}
.m36_c00412{transform:matrix(0.246639,0.003206,-0.003250,0.249979,0,0);-ms-transform:matrix(0.246639,0.003206,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.246639,0.003206,-0.003250,0.249979,0,0);}
.m1a_c00412{transform:matrix(0.246919,0.003210,-0.003250,0.249979,0,0);-ms-transform:matrix(0.246919,0.003210,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.246919,0.003210,-0.003250,0.249979,0,0);}
.m140_c00412{transform:matrix(0.247196,0.007169,-0.007247,0.249895,0,0);-ms-transform:matrix(0.247196,0.007169,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.247196,0.007169,-0.007247,0.249895,0,0);}
.m101_c00412{transform:matrix(0.247216,0.007169,-0.007247,0.249895,0,0);-ms-transform:matrix(0.247216,0.007169,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.247216,0.007169,-0.007247,0.249895,0,0);}
.m108_c00412{transform:matrix(0.248041,0.007193,-0.007247,0.249895,0,0);-ms-transform:matrix(0.248041,0.007193,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.248041,0.007193,-0.007247,0.249895,0,0);}
.mb4_c00412{transform:matrix(0.248507,0.006213,-0.006248,0.249922,0,0);-ms-transform:matrix(0.248507,0.006213,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.248507,0.006213,-0.006248,0.249922,0,0);}
.m35_c00412{transform:matrix(0.249194,0.003240,-0.003250,0.249979,0,0);-ms-transform:matrix(0.249194,0.003240,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.249194,0.003240,-0.003250,0.249979,0,0);}
.m162_c00412{transform:matrix(0.249568,0.002496,-0.002500,0.249988,0,0);-ms-transform:matrix(0.249568,0.002496,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.249568,0.002496,-0.002500,0.249988,0,0);}
.m8b_c00412{transform:matrix(0.249955,0.002250,-0.002250,0.249990,0,0);-ms-transform:matrix(0.249955,0.002250,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.249955,0.002250,-0.002250,0.249990,0,0);}
.m66_c00412{transform:matrix(0.250395,0.002254,-0.002250,0.249990,0,0);-ms-transform:matrix(0.250395,0.002254,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.250395,0.002254,-0.002250,0.249990,0,0);}
.m67_c00412{transform:matrix(0.250505,0.002255,-0.002250,0.249990,0,0);-ms-transform:matrix(0.250505,0.002255,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.250505,0.002255,-0.002250,0.249990,0,0);}
.md_c00412{transform:matrix(0.250639,0.003258,-0.003250,0.249979,0,0);-ms-transform:matrix(0.250639,0.003258,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.250639,0.003258,-0.003250,0.249979,0,0);}
.m98_c00412{transform:matrix(0.250910,0.002258,-0.002250,0.249990,0,0);-ms-transform:matrix(0.250910,0.002258,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.250910,0.002258,-0.002250,0.249990,0,0);}
.m32_c00412{transform:matrix(0.250979,0.003263,-0.003250,0.249979,0,0);-ms-transform:matrix(0.250979,0.003263,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.250979,0.003263,-0.003250,0.249979,0,0);}
.m143_c00412{transform:matrix(0.251089,0.007282,-0.007247,0.249895,0,0);-ms-transform:matrix(0.251089,0.007282,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.251089,0.007282,-0.007247,0.249895,0,0);}
.m152_c00412{transform:matrix(0.251510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251510,0.000000,0.000000,0.250000,0,0);}
.m15d_c00412{transform:matrix(0.251802,0.002518,-0.002500,0.249988,0,0);-ms-transform:matrix(0.251802,0.002518,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.251802,0.002518,-0.002500,0.249988,0,0);}
.m24_c00412{transform:matrix(0.252094,0.003277,-0.003250,0.249979,0,0);-ms-transform:matrix(0.252094,0.003277,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.252094,0.003277,-0.003250,0.249979,0,0);}
.m163_c00412{transform:matrix(0.252102,0.002521,-0.002500,0.249988,0,0);-ms-transform:matrix(0.252102,0.002521,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.252102,0.002521,-0.002500,0.249988,0,0);}
.m107_c00412{transform:matrix(0.252424,0.007320,-0.007247,0.249895,0,0);-ms-transform:matrix(0.252424,0.007320,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.252424,0.007320,-0.007247,0.249895,0,0);}
.m13f_c00412{transform:matrix(0.252599,0.007325,-0.007247,0.249895,0,0);-ms-transform:matrix(0.252599,0.007325,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.252599,0.007325,-0.007247,0.249895,0,0);}
.ma9_c00412{transform:matrix(0.253664,0.003298,-0.003250,0.249979,0,0);-ms-transform:matrix(0.253664,0.003298,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.253664,0.003298,-0.003250,0.249979,0,0);}
.m53_c00412{transform:matrix(0.253685,0.002283,-0.002250,0.249990,0,0);-ms-transform:matrix(0.253685,0.002283,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.253685,0.002283,-0.002250,0.249990,0,0);}
.m52_c00412{transform:matrix(0.253730,0.002284,-0.002250,0.249990,0,0);-ms-transform:matrix(0.253730,0.002284,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.253730,0.002284,-0.002250,0.249990,0,0);}
.m20_c00412{transform:matrix(0.253779,0.003299,-0.003250,0.249979,0,0);-ms-transform:matrix(0.253779,0.003299,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.253779,0.003299,-0.003250,0.249979,0,0);}
.m6c_c00412{transform:matrix(0.254280,0.002289,-0.002250,0.249990,0,0);-ms-transform:matrix(0.254280,0.002289,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.254280,0.002289,-0.002250,0.249990,0,0);}
.me3_c00412{transform:matrix(0.255130,0.006378,-0.006248,0.249922,0,0);-ms-transform:matrix(0.255130,0.006378,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.255130,0.006378,-0.006248,0.249922,0,0);}
.m6_c00412{transform:matrix(0.255288,0.003319,-0.003250,0.249979,0,0);-ms-transform:matrix(0.255288,0.003319,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.255288,0.003319,-0.003250,0.249979,0,0);}
.m97_c00412{transform:matrix(0.255420,0.002299,-0.002250,0.249990,0,0);-ms-transform:matrix(0.255420,0.002299,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.255420,0.002299,-0.002250,0.249990,0,0);}
.m2c_c00412{transform:matrix(0.255913,0.003327,-0.003250,0.249979,0,0);-ms-transform:matrix(0.255913,0.003327,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.255913,0.003327,-0.003250,0.249979,0,0);}
.m8d_c00412{transform:matrix(0.256630,0.002310,-0.002250,0.249990,0,0);-ms-transform:matrix(0.256630,0.002310,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.256630,0.002310,-0.002250,0.249990,0,0);}
.mb2_c00412{transform:matrix(0.256730,0.006418,-0.006248,0.249922,0,0);-ms-transform:matrix(0.256730,0.006418,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.256730,0.006418,-0.006248,0.249922,0,0);}
.m19_c00412{transform:matrix(0.256858,0.003339,-0.003250,0.249979,0,0);-ms-transform:matrix(0.256858,0.003339,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.256858,0.003339,-0.003250,0.249979,0,0);}
.m3f_c00412{transform:matrix(0.257293,0.003345,-0.003250,0.249979,0,0);-ms-transform:matrix(0.257293,0.003345,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.257293,0.003345,-0.003250,0.249979,0,0);}
.m3e_c00412{transform:matrix(0.257723,0.003350,-0.003250,0.249979,0,0);-ms-transform:matrix(0.257723,0.003350,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.257723,0.003350,-0.003250,0.249979,0,0);}
.m2e_c00412{transform:matrix(0.257858,0.003352,-0.003250,0.249979,0,0);-ms-transform:matrix(0.257858,0.003352,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.257858,0.003352,-0.003250,0.249979,0,0);}
.m1f_c00412{transform:matrix(0.257878,0.003352,-0.003250,0.249979,0,0);-ms-transform:matrix(0.257878,0.003352,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.257878,0.003352,-0.003250,0.249979,0,0);}
.m11_c00412{transform:matrix(0.258008,0.003354,-0.003250,0.249979,0,0);-ms-transform:matrix(0.258008,0.003354,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.258008,0.003354,-0.003250,0.249979,0,0);}
.m9c_c00412{transform:matrix(0.258145,0.002323,-0.002250,0.249990,0,0);-ms-transform:matrix(0.258145,0.002323,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.258145,0.002323,-0.002250,0.249990,0,0);}
.m145_c00412{transform:matrix(0.258176,0.007487,-0.007247,0.249895,0,0);-ms-transform:matrix(0.258176,0.007487,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.258176,0.007487,-0.007247,0.249895,0,0);}
.m46_c00412{transform:matrix(0.259378,0.003372,-0.003250,0.249979,0,0);-ms-transform:matrix(0.259378,0.003372,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.259378,0.003372,-0.003250,0.249979,0,0);}
.m124_c00412{transform:matrix(0.259846,0.007536,-0.007247,0.249895,0,0);-ms-transform:matrix(0.259846,0.007536,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.259846,0.007536,-0.007247,0.249895,0,0);}
.m1c_c00412{transform:matrix(0.260098,0.003381,-0.003250,0.249979,0,0);-ms-transform:matrix(0.260098,0.003381,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.260098,0.003381,-0.003250,0.249979,0,0);}
.mae_c00412{transform:matrix(0.260323,0.003384,-0.003250,0.249979,0,0);-ms-transform:matrix(0.260323,0.003384,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.260323,0.003384,-0.003250,0.249979,0,0);}
.m5d_c00412{transform:matrix(0.261009,0.002349,-0.002250,0.249990,0,0);-ms-transform:matrix(0.261009,0.002349,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.261009,0.002349,-0.002250,0.249990,0,0);}
.m40_c00412{transform:matrix(0.261133,0.003395,-0.003250,0.249979,0,0);-ms-transform:matrix(0.261133,0.003395,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.261133,0.003395,-0.003250,0.249979,0,0);}
.m3b_c00412{transform:matrix(0.261458,0.003399,-0.003250,0.249979,0,0);-ms-transform:matrix(0.261458,0.003399,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.261458,0.003399,-0.003250,0.249979,0,0);}
.m25_c00412{transform:matrix(0.261613,0.003401,-0.003250,0.249979,0,0);-ms-transform:matrix(0.261613,0.003401,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.261613,0.003401,-0.003250,0.249979,0,0);}
.m37_c00412{transform:matrix(0.261713,0.003402,-0.003250,0.249979,0,0);-ms-transform:matrix(0.261713,0.003402,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.261713,0.003402,-0.003250,0.249979,0,0);}
.mb8_c00412{transform:matrix(0.262263,0.006557,-0.006248,0.249922,0,0);-ms-transform:matrix(0.262263,0.006557,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.262263,0.006557,-0.006248,0.249922,0,0);}
.m1b_c00412{transform:matrix(0.262323,0.003410,-0.003250,0.249979,0,0);-ms-transform:matrix(0.262323,0.003410,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.262323,0.003410,-0.003250,0.249979,0,0);}
.m30_c00412{transform:matrix(0.262553,0.003413,-0.003250,0.249979,0,0);-ms-transform:matrix(0.262553,0.003413,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.262553,0.003413,-0.003250,0.249979,0,0);}
.m11b_c00412{transform:matrix(0.262655,0.007617,-0.007247,0.249895,0,0);-ms-transform:matrix(0.262655,0.007617,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.262655,0.007617,-0.007247,0.249895,0,0);}
.m13_c00412{transform:matrix(0.262908,0.003418,-0.003250,0.249979,0,0);-ms-transform:matrix(0.262908,0.003418,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.262908,0.003418,-0.003250,0.249979,0,0);}
.mb1_c00412{transform:matrix(0.262908,0.006573,-0.006248,0.249922,0,0);-ms-transform:matrix(0.262908,0.006573,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.262908,0.006573,-0.006248,0.249922,0,0);}
.mce_c00412{transform:matrix(0.263088,0.006577,-0.006248,0.249922,0,0);-ms-transform:matrix(0.263088,0.006577,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.263088,0.006577,-0.006248,0.249922,0,0);}
.m9f_c00412{transform:matrix(0.263624,0.002373,-0.002250,0.249990,0,0);-ms-transform:matrix(0.263624,0.002373,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.263624,0.002373,-0.002250,0.249990,0,0);}
.m11a_c00412{transform:matrix(0.263794,0.007650,-0.007247,0.249895,0,0);-ms-transform:matrix(0.263794,0.007650,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.263794,0.007650,-0.007247,0.249895,0,0);}
.m16_c00412{transform:matrix(0.263913,0.003431,-0.003250,0.249979,0,0);-ms-transform:matrix(0.263913,0.003431,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.263913,0.003431,-0.003250,0.249979,0,0);}
.me0_c00412{transform:matrix(0.264212,0.006605,-0.006248,0.249922,0,0);-ms-transform:matrix(0.264212,0.006605,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.264212,0.006605,-0.006248,0.249922,0,0);}
.m8_c00412{transform:matrix(0.264523,0.003439,-0.003250,0.249979,0,0);-ms-transform:matrix(0.264523,0.003439,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.264523,0.003439,-0.003250,0.249979,0,0);}
.mb5_c00412{transform:matrix(0.264592,0.006615,-0.006248,0.249922,0,0);-ms-transform:matrix(0.264592,0.006615,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.264592,0.006615,-0.006248,0.249922,0,0);}
.me1_c00412{transform:matrix(0.265227,0.006631,-0.006248,0.249922,0,0);-ms-transform:matrix(0.265227,0.006631,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.265227,0.006631,-0.006248,0.249922,0,0);}
.m3a_c00412{transform:matrix(0.265253,0.003448,-0.003250,0.249979,0,0);-ms-transform:matrix(0.265253,0.003448,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.265253,0.003448,-0.003250,0.249979,0,0);}
.m38_c00412{transform:matrix(0.265713,0.003454,-0.003250,0.249979,0,0);-ms-transform:matrix(0.265713,0.003454,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.265713,0.003454,-0.003250,0.249979,0,0);}
.m15e_c00412{transform:matrix(0.265932,0.002659,-0.002500,0.249988,0,0);-ms-transform:matrix(0.265932,0.002659,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.265932,0.002659,-0.002500,0.249988,0,0);}
.ma_c00412{transform:matrix(0.266008,0.003458,-0.003250,0.249979,0,0);-ms-transform:matrix(0.266008,0.003458,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.266008,0.003458,-0.003250,0.249979,0,0);}
.md2_c00412{transform:matrix(0.267326,0.006683,-0.006248,0.249922,0,0);-ms-transform:matrix(0.267326,0.006683,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.267326,0.006683,-0.006248,0.249922,0,0);}
.m14_c00412{transform:matrix(0.268057,0.003485,-0.003250,0.249979,0,0);-ms-transform:matrix(0.268057,0.003485,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.268057,0.003485,-0.003250,0.249979,0,0);}
.m54_c00412{transform:matrix(0.268684,0.002418,-0.002250,0.249990,0,0);-ms-transform:matrix(0.268684,0.002418,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.268684,0.002418,-0.002250,0.249990,0,0);}
.mc9_c00412{transform:matrix(0.268696,0.006717,-0.006248,0.249922,0,0);-ms-transform:matrix(0.268696,0.006717,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.268696,0.006717,-0.006248,0.249922,0,0);}
.me7_c00412{transform:matrix(0.268721,0.006718,-0.006248,0.249922,0,0);-ms-transform:matrix(0.268721,0.006718,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.268721,0.006718,-0.006248,0.249922,0,0);}
.m18_c00412{transform:matrix(0.269032,0.003497,-0.003250,0.249979,0,0);-ms-transform:matrix(0.269032,0.003497,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.269032,0.003497,-0.003250,0.249979,0,0);}
.m0_c00412{transform:matrix(0.269260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269260,0.000000,0.000000,0.250000,0,0);}
.m59_c00412{transform:matrix(0.269594,0.002426,-0.002250,0.249990,0,0);-ms-transform:matrix(0.269594,0.002426,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.269594,0.002426,-0.002250,0.249990,0,0);}
.m2b_c00412{transform:matrix(0.270292,0.003514,-0.003250,0.249979,0,0);-ms-transform:matrix(0.270292,0.003514,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.270292,0.003514,-0.003250,0.249979,0,0);}
.mf_c00412{transform:matrix(0.270487,0.003516,-0.003250,0.249979,0,0);-ms-transform:matrix(0.270487,0.003516,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.270487,0.003516,-0.003250,0.249979,0,0);}
.m8f_c00412{transform:matrix(0.270564,0.002435,-0.002250,0.249990,0,0);-ms-transform:matrix(0.270564,0.002435,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.270564,0.002435,-0.002250,0.249990,0,0);}
.m120_c00412{transform:matrix(0.270926,0.007857,-0.007247,0.249895,0,0);-ms-transform:matrix(0.270926,0.007857,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.270926,0.007857,-0.007247,0.249895,0,0);}
.m29_c00412{transform:matrix(0.271652,0.003531,-0.003250,0.249979,0,0);-ms-transform:matrix(0.271652,0.003531,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.271652,0.003531,-0.003250,0.249979,0,0);}
.m11f_c00412{transform:matrix(0.271866,0.007884,-0.007247,0.249895,0,0);-ms-transform:matrix(0.271866,0.007884,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.271866,0.007884,-0.007247,0.249895,0,0);}
.m87_c00412{transform:matrix(0.272129,0.002449,-0.002250,0.249990,0,0);-ms-transform:matrix(0.272129,0.002449,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.272129,0.002449,-0.002250,0.249990,0,0);}
.m1e_c00412{transform:matrix(0.272307,0.003540,-0.003250,0.249979,0,0);-ms-transform:matrix(0.272307,0.003540,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.272307,0.003540,-0.003250,0.249979,0,0);}
.m11d_c00412{transform:matrix(0.273890,0.007943,-0.007247,0.249895,0,0);-ms-transform:matrix(0.273890,0.007943,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.273890,0.007943,-0.007247,0.249895,0,0);}
.me5_c00412{transform:matrix(0.274154,0.006854,-0.006248,0.249922,0,0);-ms-transform:matrix(0.274154,0.006854,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.274154,0.006854,-0.006248,0.249922,0,0);}
.m56_c00412{transform:matrix(0.274844,0.002474,-0.002250,0.249990,0,0);-ms-transform:matrix(0.274844,0.002474,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.274844,0.002474,-0.002250,0.249990,0,0);}
.mca_c00412{transform:matrix(0.275129,0.006878,-0.006248,0.249922,0,0);-ms-transform:matrix(0.275129,0.006878,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.275129,0.006878,-0.006248,0.249922,0,0);}
.m28_c00412{transform:matrix(0.275137,0.003577,-0.003250,0.249979,0,0);-ms-transform:matrix(0.275137,0.003577,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.275137,0.003577,-0.003250,0.249979,0,0);}
.m2d_c00412{transform:matrix(0.275212,0.003578,-0.003250,0.249979,0,0);-ms-transform:matrix(0.275212,0.003578,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.275212,0.003578,-0.003250,0.249979,0,0);}
.me2_c00412{transform:matrix(0.275259,0.006881,-0.006248,0.249922,0,0);-ms-transform:matrix(0.275259,0.006881,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.275259,0.006881,-0.006248,0.249922,0,0);}
.m5a_c00412{transform:matrix(0.275374,0.002478,-0.002250,0.249990,0,0);-ms-transform:matrix(0.275374,0.002478,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.275374,0.002478,-0.002250,0.249990,0,0);}
.me6_c00412{transform:matrix(0.275969,0.006899,-0.006248,0.249922,0,0);-ms-transform:matrix(0.275969,0.006899,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.275969,0.006899,-0.006248,0.249922,0,0);}
.m3c_c00412{transform:matrix(0.278022,0.003614,-0.003250,0.249979,0,0);-ms-transform:matrix(0.278022,0.003614,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.278022,0.003614,-0.003250,0.249979,0,0);}
.m2f_c00412{transform:matrix(0.278626,0.003622,-0.003250,0.249979,0,0);-ms-transform:matrix(0.278626,0.003622,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.278626,0.003622,-0.003250,0.249979,0,0);}
.m33_c00412{transform:matrix(0.278931,0.003626,-0.003250,0.249979,0,0);-ms-transform:matrix(0.278931,0.003626,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.278931,0.003626,-0.003250,0.249979,0,0);}
.m15f_c00412{transform:matrix(0.279266,0.002793,-0.002500,0.249988,0,0);-ms-transform:matrix(0.279266,0.002793,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.279266,0.002793,-0.002500,0.249988,0,0);}
.m3d_c00412{transform:matrix(0.279266,0.003630,-0.003250,0.249979,0,0);-ms-transform:matrix(0.279266,0.003630,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.279266,0.003630,-0.003250,0.249979,0,0);}
.me8_c00412{transform:matrix(0.280212,0.007005,-0.006248,0.249922,0,0);-ms-transform:matrix(0.280212,0.007005,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.280212,0.007005,-0.006248,0.249922,0,0);}
.md1_c00412{transform:matrix(0.281472,0.007037,-0.006248,0.249922,0,0);-ms-transform:matrix(0.281472,0.007037,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.281472,0.007037,-0.006248,0.249922,0,0);}
.m4f_c00412{transform:matrix(0.281824,0.002536,-0.002250,0.249990,0,0);-ms-transform:matrix(0.281824,0.002536,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.281824,0.002536,-0.002250,0.249990,0,0);}
.m123_c00412{transform:matrix(0.281991,0.008178,-0.007247,0.249895,0,0);-ms-transform:matrix(0.281991,0.008178,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.281991,0.008178,-0.007247,0.249895,0,0);}
.mcd_c00412{transform:matrix(0.282037,0.007051,-0.006248,0.249922,0,0);-ms-transform:matrix(0.282037,0.007051,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.282037,0.007051,-0.006248,0.249922,0,0);}
.m8a_c00412{transform:matrix(0.283704,0.002553,-0.002250,0.249990,0,0);-ms-transform:matrix(0.283704,0.002553,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.283704,0.002553,-0.002250,0.249990,0,0);}
.mba_c00412{transform:matrix(0.287090,0.007177,-0.006248,0.249922,0,0);-ms-transform:matrix(0.287090,0.007177,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.287090,0.007177,-0.006248,0.249922,0,0);}
.m5c_c00412{transform:matrix(0.287913,0.002591,-0.002250,0.249990,0,0);-ms-transform:matrix(0.287913,0.002591,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.287913,0.002591,-0.002250,0.249990,0,0);}
.m57_c00412{transform:matrix(0.288358,0.002595,-0.002250,0.249990,0,0);-ms-transform:matrix(0.288358,0.002595,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.288358,0.002595,-0.002250,0.249990,0,0);}
.m51_c00412{transform:matrix(0.290693,0.002616,-0.002250,0.249990,0,0);-ms-transform:matrix(0.290693,0.002616,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.290693,0.002616,-0.002250,0.249990,0,0);}
.mfb_c00412{transform:matrix(0.302978,0.008786,-0.007247,0.249895,0,0);-ms-transform:matrix(0.302978,0.008786,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.302978,0.008786,-0.007247,0.249895,0,0);}
.ma0_c00412{transform:matrix(0.320102,0.002881,-0.002250,0.249990,0,0);-ms-transform:matrix(0.320102,0.002881,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.320102,0.002881,-0.002250,0.249990,0,0);}
.m10a_c00412{transform:matrix(0.325508,0.009440,-0.007247,0.249895,0,0);-ms-transform:matrix(0.325508,0.009440,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.325508,0.009440,-0.007247,0.249895,0,0);}
.mff_c00412{transform:matrix(0.340937,0.009887,-0.007247,0.249895,0,0);-ms-transform:matrix(0.340937,0.009887,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.340937,0.009887,-0.007247,0.249895,0,0);}
.m3_c00412{transform:matrix(0.344975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344975,0.000000,0.000000,0.250000,0,0);}
.m2_c00412{transform:matrix(0.516085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516085,0.000000,0.000000,0.250000,0,0);}
.m153_c00412{transform:matrix(1.299235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.299235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.299235,0.000000,0.000000,0.250000,0,0);}
.v0_c00412{vertical-align:0.000000px;}
.ls0_c00412{letter-spacing:0.000000px;}
.sc__c00412{text-shadow:none;}
.sc0_c00412{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__c00412{-webkit-text-stroke:0px transparent;}
.sc0_c00412{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00412{word-spacing:0.000000px;}
.fc0_c00412{color:transparent;}
.fs0_c00412{font-size:18.000000px;}
.fs11_c00412{font-size:54.000000px;}
.fs1_c00412{font-size:60.000000px;}
.fs4_c00412{font-size:66.002673px;}
.fs7_c00412{font-size:72.002916px;}
.fs12_c00412{font-size:72.003600px;}
.fs2_c00412{font-size:72.006084px;}
.fs9_c00412{font-size:72.022496px;}
.fse_c00412{font-size:72.030270px;}
.fs5_c00412{font-size:78.003159px;}
.fs3_c00412{font-size:78.006591px;}
.fsd_c00412{font-size:78.032792px;}
.fs6_c00412{font-size:84.003402px;}
.fsb_c00412{font-size:84.026246px;}
.fsc_c00412{font-size:84.035315px;}
.fs8_c00412{font-size:90.000000px;}
.fs10_c00412{font-size:102.000000px;}
.fsf_c00412{font-size:102.042882px;}
.fsa_c00412{font-size:108.033745px;}
.y0_c00412{bottom:0.000000px;}
.y161_c00412{bottom:87.412230px;}
.y160_c00412{bottom:87.968625px;}
.y15f_c00412{bottom:88.408920px;}
.y15e_c00412{bottom:88.851885px;}
.y15d_c00412{bottom:90.283140px;}
.y15c_c00412{bottom:91.354770px;}
.y15b_c00412{bottom:91.800000px;}
.y15a_c00412{bottom:119.220000px;}
.y159_c00412{bottom:120.070500px;}
.y158_c00412{bottom:121.068000px;}
.y157_c00412{bottom:121.558500px;}
.y156_c00412{bottom:121.894500px;}
.y155_c00412{bottom:122.547000px;}
.y154_c00412{bottom:123.033000px;}
.y153_c00412{bottom:124.179000px;}
.y152_c00412{bottom:125.823000px;}
.y151_c00412{bottom:146.205000px;}
.y150_c00412{bottom:171.306000px;}
.y14f_c00412{bottom:197.960440px;}
.y14e_c00412{bottom:199.031200px;}
.y14d_c00412{bottom:199.659807px;}
.y14c_c00412{bottom:201.071028px;}
.y14b_c00412{bottom:202.138675px;}
.y14a_c00412{bottom:203.375803px;}
.y149_c00412{bottom:203.852731px;}
.y148_c00412{bottom:204.782824px;}
.y147_c00412{bottom:205.856131px;}
.y146_c00412{bottom:206.314344px;}
.y145_c00412{bottom:207.814266px;}
.y144_c00412{bottom:236.557005px;}
.y143_c00412{bottom:237.093571px;}
.y142_c00412{bottom:238.068315px;}
.y141_c00412{bottom:239.386546px;}
.y140_c00412{bottom:240.136707px;}
.y13f_c00412{bottom:240.511918px;}
.y13e_c00412{bottom:242.198464px;}
.y13d_c00412{bottom:242.763294px;}
.y13c_c00412{bottom:243.724722px;}
.y13b_c00412{bottom:244.099041px;}
.y13a_c00412{bottom:245.032140px;}
.y139_c00412{bottom:245.574841px;}
.y138_c00412{bottom:247.067395px;}
.y137_c00412{bottom:247.612816px;}
.y136_c00412{bottom:248.332408px;}
.y135_c00412{bottom:269.195793px;}
.y134_c00412{bottom:272.250547px;}
.y133_c00412{bottom:274.707000px;}
.y132_c00412{bottom:277.439908px;}
.y131_c00412{bottom:279.505765px;}
.y130_c00412{bottom:282.284260px;}
.y12f_c00412{bottom:284.998594px;}
.y12e_c00412{bottom:285.977008px;}
.y12d_c00412{bottom:287.315982px;}
.y12c_c00412{bottom:288.359839px;}
.y12b_c00412{bottom:289.058340px;}
.y12a_c00412{bottom:290.738908px;}
.y129_c00412{bottom:307.061763px;}
.y128_c00412{bottom:309.077527px;}
.y127_c00412{bottom:309.958774px;}
.y126_c00412{bottom:310.617904px;}
.y125_c00412{bottom:311.746875px;}
.y124_c00412{bottom:313.708339px;}
.y123_c00412{bottom:314.378151px;}
.y122_c00412{bottom:316.354996px;}
.y121_c00412{bottom:317.229369px;}
.y120_c00412{bottom:318.784953px;}
.y11f_c00412{bottom:320.091138px;}
.y11e_c00412{bottom:320.721790px;}
.y11d_c00412{bottom:341.430358px;}
.y11c_c00412{bottom:342.977350px;}
.y11b_c00412{bottom:343.450101px;}
.y11a_c00412{bottom:344.225121px;}
.y119_c00412{bottom:344.537880px;}
.y118_c00412{bottom:345.461596px;}
.y117_c00412{bottom:345.944967px;}
.y116_c00412{bottom:346.536492px;}
.y115_c00412{bottom:347.019057px;}
.y114_c00412{bottom:347.469110px;}
.y113_c00412{bottom:348.550771px;}
.y112_c00412{bottom:349.769250px;}
.y111_c00412{bottom:350.702063px;}
.y110_c00412{bottom:380.725153px;}
.y10f_c00412{bottom:381.396357px;}
.y10e_c00412{bottom:382.686073px;}
.y10d_c00412{bottom:384.062919px;}
.y10c_c00412{bottom:384.941643px;}
.y10b_c00412{bottom:385.619243px;}
.y10a_c00412{bottom:386.288749px;}
.y109_c00412{bottom:387.601527px;}
.y108_c00412{bottom:388.486647px;}
.y107_c00412{bottom:389.587488px;}
.y106_c00412{bottom:391.150316px;}
.y105_c00412{bottom:391.798524px;}
.y104_c00412{bottom:392.670722px;}
.y103_c00412{bottom:393.243441px;}
.y102_c00412{bottom:394.188712px;}
.y101_c00412{bottom:412.680754px;}
.y100_c00412{bottom:413.636058px;}
.yff_c00412{bottom:414.620202px;}
.yfe_c00412{bottom:416.221176px;}
.yfd_c00412{bottom:417.844944px;}
.yfc_c00412{bottom:418.784588px;}
.yfb_c00412{bottom:421.064640px;}
.yfa_c00412{bottom:421.996714px;}
.yf9_c00412{bottom:423.310023px;}
.yf8_c00412{bottom:424.565694px;}
.yf7_c00412{bottom:426.155880px;}
.yf6_c00412{bottom:428.073882px;}
.yf5_c00412{bottom:429.310500px;}
.yf4_c00412{bottom:458.094338px;}
.yf3_c00412{bottom:460.726500px;}
.yf2_c00412{bottom:461.531400px;}
.yf1_c00412{bottom:462.312525px;}
.yf0_c00412{bottom:464.433675px;}
.yef_c00412{bottom:465.978900px;}
.yee_c00412{bottom:467.047800px;}
.yed_c00412{bottom:487.247887px;}
.yec_c00412{bottom:488.730937px;}
.yeb_c00412{bottom:490.439775px;}
.yea_c00412{bottom:492.124800px;}
.ye9_c00412{bottom:492.707850px;}
.ye8_c00412{bottom:493.653300px;}
.ye7_c00412{bottom:495.706087px;}
.ye6_c00412{bottom:496.826175px;}
.ye5_c00412{bottom:498.105525px;}
.ye4_c00412{bottom:522.259613px;}
.ye3_c00412{bottom:524.495325px;}
.ye2_c00412{bottom:525.941213px;}
.ye1_c00412{bottom:527.652975px;}
.ye0_c00412{bottom:528.882337px;}
.ydf_c00412{bottom:529.868587px;}
.yde_c00412{bottom:531.306375px;}
.ydd_c00412{bottom:532.030687px;}
.ydc_c00412{bottom:533.011125px;}
.ydb_c00412{bottom:533.962612px;}
.yda_c00412{bottom:535.172475px;}
.yd9_c00412{bottom:536.872387px;}
.yd8_c00412{bottom:537.810225px;}
.yd7_c00412{bottom:559.692225px;}
.yd6_c00412{bottom:562.122787px;}
.yd5_c00412{bottom:562.816275px;}
.yd4_c00412{bottom:563.473538px;}
.yd3_c00412{bottom:563.938688px;}
.yd2_c00412{bottom:566.359162px;}
.yd1_c00412{bottom:567.228713px;}
.yd0_c00412{bottom:567.883537px;}
.ycf_c00412{bottom:569.860950px;}
.yce_c00412{bottom:571.610850px;}
.ycd_c00412{bottom:572.280638px;}
.ycc_c00412{bottom:572.922262px;}
.ycb_c00412{bottom:592.648987px;}
.yca_c00412{bottom:594.068962px;}
.yc9_c00412{bottom:594.694050px;}
.yc8_c00412{bottom:596.286075px;}
.yc7_c00412{bottom:597.073875px;}
.yc6_c00412{bottom:597.662700px;}
.yc5_c00412{bottom:599.041988px;}
.yc4_c00412{bottom:599.653950px;}
.yc3_c00412{bottom:601.429688px;}
.yc2_c00412{bottom:602.624887px;}
.yc1_c00412{bottom:604.403662px;}
.yc0_c00412{bottom:604.790663px;}
.ybf_c00412{bottom:630.980963px;}
.ybe_c00412{bottom:632.046113px;}
.ybd_c00412{bottom:633.473625px;}
.ybc_c00412{bottom:634.297050px;}
.ybb_c00412{bottom:635.410800px;}
.yba_c00412{bottom:637.085137px;}
.yb9_c00412{bottom:638.435550px;}
.yb8_c00412{bottom:639.271275px;}
.yb7_c00412{bottom:642.041100px;}
.yb6_c00412{bottom:643.417500px;}
.yb5_c00412{bottom:673.930500px;}
.yb4_c00412{bottom:701.767863px;}
.yb3_c00412{bottom:702.195771px;}
.yb2_c00412{bottom:702.501199px;}
.yb1_c00412{bottom:703.077112px;}
.yb0_c00412{bottom:703.948333px;}
.yaf_c00412{bottom:705.243777px;}
.yae_c00412{bottom:705.822459px;}
.yad_c00412{bottom:706.240929px;}
.yac_c00412{bottom:706.675720px;}
.yab_c00412{bottom:707.497080px;}
.yaa_c00412{bottom:707.928907px;}
.ya9_c00412{bottom:708.208635px;}
.ya8_c00412{bottom:709.238527px;}
.ya7_c00412{bottom:710.101500px;}
.ya6_c00412{bottom:736.951331px;}
.ya5_c00412{bottom:738.179387px;}
.ya4_c00412{bottom:738.738086px;}
.ya3_c00412{bottom:739.181633px;}
.ya2_c00412{bottom:739.516034px;}
.ya1_c00412{bottom:740.625912px;}
.ya0_c00412{bottom:740.841056px;}
.y9f_c00412{bottom:741.394773px;}
.y9e_c00412{bottom:741.719697px;}
.y9d_c00412{bottom:742.373757px;}
.y9c_c00412{bottom:743.038644px;}
.y9b_c00412{bottom:743.371736px;}
.y9a_c00412{bottom:743.916204px;}
.y99_c00412{bottom:745.195632px;}
.y98_c00412{bottom:771.939219px;}
.y97_c00412{bottom:772.500951px;}
.y96_c00412{bottom:772.939769px;}
.y95_c00412{bottom:773.231189px;}
.y94_c00412{bottom:774.523441px;}
.y93_c00412{bottom:774.955710px;}
.y92_c00412{bottom:775.686542px;}
.y91_c00412{bottom:776.117148px;}
.y90_c00412{bottom:776.829519px;}
.y8f_c00412{bottom:778.015751px;}
.y8e_c00412{bottom:778.405642px;}
.y8d_c00412{bottom:778.826189px;}
.y8c_c00412{bottom:779.844294px;}
.y8b_c00412{bottom:780.258386px;}
.y8a_c00412{bottom:780.837390px;}
.y89_c00412{bottom:811.723043px;}
.y88_c00412{bottom:811.902192px;}
.y87_c00412{bottom:812.708501px;}
.y86_c00412{bottom:813.145401px;}
.y85_c00412{bottom:813.319556px;}
.y84_c00412{bottom:814.028582px;}
.y83_c00412{bottom:814.473581px;}
.y82_c00412{bottom:814.818719px;}
.y81_c00412{bottom:815.343398px;}
.y80_c00412{bottom:815.693328px;}
.y7f_c00412{bottom:816.478026px;}
.y7e_c00412{bottom:844.713782px;}
.y7d_c00412{bottom:845.119599px;}
.y7c_c00412{bottom:845.660112px;}
.y7b_c00412{bottom:846.325167px;}
.y7a_c00412{bottom:846.723232px;}
.y79_c00412{bottom:847.377647px;}
.y78_c00412{bottom:847.779561px;}
.y77_c00412{bottom:848.440362px;}
.y76_c00412{bottom:848.972436px;}
.y75_c00412{bottom:849.643500px;}
.y74_c00412{bottom:850.028765px;}
.y73_c00412{bottom:850.440564px;}
.y72_c00412{bottom:851.227595px;}
.y71_c00412{bottom:851.503037px;}
.y70_c00412{bottom:852.931842px;}
.y6f_c00412{bottom:882.121188px;}
.y6e_c00412{bottom:882.572268px;}
.y6d_c00412{bottom:883.327736px;}
.y6c_c00412{bottom:883.572704px;}
.y6b_c00412{bottom:884.328549px;}
.y6a_c00412{bottom:884.563730px;}
.y69_c00412{bottom:885.339423px;}
.y68_c00412{bottom:885.554648px;}
.y67_c00412{bottom:886.211232px;}
.y66_c00412{bottom:886.549779px;}
.y65_c00412{bottom:887.089806px;}
.y64_c00412{bottom:887.318573px;}
.y63_c00412{bottom:887.652879px;}
.y62_c00412{bottom:888.401124px;}
.y61_c00412{bottom:888.840552px;}
.y60_c00412{bottom:917.321289px;}
.y5f_c00412{bottom:918.021183px;}
.y5e_c00412{bottom:918.225357px;}
.y5d_c00412{bottom:918.723777px;}
.y5c_c00412{bottom:919.214772px;}
.y5b_c00412{bottom:919.516146px;}
.y5a_c00412{bottom:920.208777px;}
.y59_c00412{bottom:920.806571px;}
.y58_c00412{bottom:921.010502px;}
.y57_c00412{bottom:921.499026px;}
.y56_c00412{bottom:921.800400px;}
.y55_c00412{bottom:922.104110px;}
.y54_c00412{bottom:922.799319px;}
.y53_c00412{bottom:922.993382px;}
.y52_c00412{bottom:923.671500px;}
.y51_c00412{bottom:954.007813px;}
.y50_c00412{bottom:954.353589px;}
.y4f_c00412{bottom:954.628476px;}
.y4e_c00412{bottom:954.985372px;}
.y4d_c00412{bottom:955.590523px;}
.y4c_c00412{bottom:955.869469px;}
.y4b_c00412{bottom:956.301469px;}
.y4a_c00412{bottom:956.574268px;}
.y49_c00412{bottom:957.540355px;}
.y48_c00412{bottom:957.985993px;}
.y47_c00412{bottom:958.335555px;}
.y46_c00412{bottom:958.600785px;}
.y45_c00412{bottom:959.125000px;}
.y44_c00412{bottom:959.295303px;}
.y43_c00412{bottom:986.331100px;}
.y42_c00412{bottom:986.878783px;}
.y41_c00412{bottom:987.662866px;}
.y40_c00412{bottom:989.003526px;}
.y3f_c00412{bottom:990.328467px;}
.y3e_c00412{bottom:991.245511px;}
.y3d_c00412{bottom:992.051982px;}
.y3c_c00412{bottom:992.307960px;}
.y3b_c00412{bottom:992.970001px;}
.y3a_c00412{bottom:993.753556px;}
.y39_c00412{bottom:994.397695px;}
.y38_c00412{bottom:1024.591746px;}
.y37_c00412{bottom:1024.907643px;}
.y36_c00412{bottom:1025.062002px;}
.y35_c00412{bottom:1025.997420px;}
.y34_c00412{bottom:1026.373410px;}
.y33_c00412{bottom:1026.531574px;}
.y32_c00412{bottom:1026.994375px;}
.y31_c00412{bottom:1027.690653px;}
.y30_c00412{bottom:1027.850691px;}
.y2f_c00412{bottom:1028.534830px;}
.y2e_c00412{bottom:1028.697073px;}
.y2d_c00412{bottom:1029.229020px;}
.y2c_c00412{bottom:1058.453688px;}
.y2b_c00412{bottom:1059.059295px;}
.y2a_c00412{bottom:1059.762133px;}
.y29_c00412{bottom:1060.056480px;}
.y28_c00412{bottom:1060.447688px;}
.y27_c00412{bottom:1060.940925px;}
.y26_c00412{bottom:1061.149824px;}
.y25_c00412{bottom:1061.742673px;}
.y24_c00412{bottom:1062.148999px;}
.y23_c00412{bottom:1062.441238px;}
.y22_c00412{bottom:1062.733419px;}
.y21_c00412{bottom:1063.132059px;}
.y20_c00412{bottom:1063.433818px;}
.y1f_c00412{bottom:1064.022160px;}
.y1e_c00412{bottom:1064.604865px;}
.y1d_c00412{bottom:1094.229028px;}
.y1c_c00412{bottom:1094.654304px;}
.y1b_c00412{bottom:1095.524803px;}
.y1a_c00412{bottom:1096.251627px;}
.y19_c00412{bottom:1096.820383px;}
.y18_c00412{bottom:1097.821006px;}
.y17_c00412{bottom:1098.701997px;}
.y16_c00412{bottom:1099.133824px;}
.y15_c00412{bottom:1100.113251px;}
.y14_c00412{bottom:1100.699011px;}
.y13_c00412{bottom:1101.829543px;}
.y12_c00412{bottom:1102.678437px;}
.y11_c00412{bottom:1128.781545px;}
.y10_c00412{bottom:1129.360363px;}
.yf_c00412{bottom:1129.644693px;}
.ye_c00412{bottom:1130.793048px;}
.yd_c00412{bottom:1131.094654px;}
.yc_c00412{bottom:1131.800281px;}
.yb_c00412{bottom:1132.225596px;}
.ya_c00412{bottom:1132.674525px;}
.y9_c00412{bottom:1133.678892px;}
.y8_c00412{bottom:1134.261357px;}
.y7_c00412{bottom:1135.244625px;}
.y6_c00412{bottom:1135.686982px;}
.y5_c00412{bottom:1136.265528px;}
.y4_c00412{bottom:1136.943211px;}
.y3_c00412{bottom:1137.511500px;}
.y2_c00412{bottom:1201.236000px;}
.y1_c00412{bottom:1237.680000px;}
.h2_c00412{height:18.000000px;}
.h13_c00412{height:54.000000px;}
.h3_c00412{height:60.000000px;}
.h6_c00412{height:66.002673px;}
.h9_c00412{height:72.002916px;}
.h14_c00412{height:72.003600px;}
.h4_c00412{height:72.006084px;}
.hb_c00412{height:72.022496px;}
.h10_c00412{height:72.030270px;}
.h7_c00412{height:78.003159px;}
.h5_c00412{height:78.006591px;}
.hf_c00412{height:78.032792px;}
.h8_c00412{height:84.003402px;}
.hd_c00412{height:84.026246px;}
.he_c00412{height:84.035315px;}
.ha_c00412{height:90.000000px;}
.h12_c00412{height:102.000000px;}
.h11_c00412{height:102.042882px;}
.hc_c00412{height:108.033745px;}
.h1_c00412{height:1251.000000px;}
.h0_c00412{height:1251.150000px;}
.w0_c00412{width:915.000000px;}
.x0_c00412{left:0.000000px;}
.x6e_c00412{left:9.586740px;}
.xe6_c00412{left:131.220000px;}
.xbb_c00412{left:133.385924px;}
.xa9_c00412{left:134.813100px;}
.x86_c00412{left:136.421025px;}
.x64_c00412{left:137.555855px;}
.x54_c00412{left:138.876759px;}
.x29_c00412{left:140.296983px;}
.x14_c00412{left:142.142976px;}
.x5_c00412{left:143.745000px;}
.x87_c00412{left:157.904775px;}
.x39_c00412{left:161.890934px;}
.xc4_c00412{left:166.317125px;}
.x91_c00412{left:168.769988px;}
.xd2_c00412{left:177.409841px;}
.x97_c00412{left:179.021738px;}
.x65_c00412{left:182.054748px;}
.x48_c00412{left:184.001612px;}
.x6_c00412{left:187.459500px;}
.x6f_c00412{left:192.073607px;}
.x30_c00412{left:195.034629px;}
.xbc_c00412{left:199.977351px;}
.x75_c00412{left:203.100000px;}
.x15_c00412{left:207.442476px;}
.xcb_c00412{left:210.030923px;}
.xa1_c00412{left:211.129763px;}
.x66_c00412{left:213.897101px;}
.x2a_c00412{left:216.183392px;}
.x70_c00412{left:225.416810px;}
.x3a_c00412{left:227.488704px;}
.xc5_c00412{left:231.599133px;}
.x40_c00412{left:237.460500px;}
.x7_c00412{left:239.589000px;}
.xda_c00412{left:241.869857px;}
.xaa_c00412{left:243.760838px;}
.x7d_c00412{left:245.140500px;}
.xb6_c00412{left:254.334852px;}
.x88_c00412{left:256.733063px;}
.x49_c00412{left:258.805937px;}
.x31_c00412{left:260.270468px;}
.x1d_c00412{left:272.279372px;}
.xdb_c00412{left:274.546538px;}
.xa2_c00412{left:277.006425px;}
.x55_c00412{left:280.900425px;}
.x76_c00412{left:282.322500px;}
.x8_c00412{left:284.092500px;}
.xae_c00412{left:287.712000px;}
.x92_c00412{left:289.692563px;}
.x4a_c00412{left:292.284140px;}
.x16_c00412{left:294.406476px;}
.xd3_c00412{left:297.226470px;}
.x7e_c00412{left:300.196500px;}
.x3b_c00412{left:304.439216px;}
.x1e_c00412{left:305.762607px;}
.xc6_c00412{left:309.415448px;}
.x98_c00412{left:311.262638px;}
.x32_c00412{left:315.466689px;}
.x9_c00412{left:318.120000px;}
.x89_c00412{left:323.152688px;}
.x67_c00412{left:324.576618px;}
.xd4_c00412{left:329.141063px;}
.xab_c00412{left:332.149050px;}
.x2b_c00412{left:337.145330px;}
.x17_c00412{left:339.464976px;}
.x56_c00412{left:346.513157px;}
.x41_c00412{left:348.451500px;}
.x1f_c00412{left:350.044908px;}
.xdc_c00412{left:351.262902px;}
.xc7_c00412{left:353.129345px;}
.x68_c00412{left:354.563538px;}
.x71_c00412{left:357.298622px;}
.x2c_c00412{left:360.073124px;}
.xac_c00412{left:364.714875px;}
.x4b_c00412{left:369.204951px;}
.x57_c00412{left:380.767725px;}
.x20_c00412{left:382.445085px;}
.xd5_c00412{left:383.991116px;}
.x93_c00412{left:388.541400px;}
.x5d_c00412{left:390.024504px;}
.xa_c00412{left:393.756000px;}
.xbd_c00412{left:396.379698px;}
.xa3_c00412{left:397.782075px;}
.x99_c00412{left:399.046200px;}
.x77_c00412{left:400.239000px;}
.x4c_c00412{left:402.987641px;}
.x33_c00412{left:404.002340px;}
.xcc_c00412{left:405.970526px;}
.xaf_c00412{left:408.684000px;}
.x7f_c00412{left:410.989500px;}
.x58_c00412{left:412.907361px;}
.x18_c00412{left:414.805476px;}
.xe7_c00412{left:416.653500px;}
.xdd_c00412{left:417.708786px;}
.xb7_c00412{left:419.891004px;}
.x8a_c00412{left:421.799438px;}
.xea_c00412{left:427.308000px;}
.xbe_c00412{left:430.879706px;}
.x9a_c00412{left:431.981175px;}
.x78_c00412{left:433.684500px;}
.x42_c00412{left:436.218000px;}
.xb_c00412{left:438.561000px;}
.x80_c00412{left:444.418500px;}
.x5e_c00412{left:445.636004px;}
.x2_c00412{left:447.930000px;}
.xe8_c00412{left:449.328000px;}
.xb0_c00412{left:451.983000px;}
.xa4_c00412{left:453.371175px;}
.x8b_c00412{left:455.823900px;}
.x43_c00412{left:458.877000px;}
.x21_c00412{left:459.954102px;}
.xe1_c00412{left:461.160000px;}
.xd6_c00412{left:462.561434px;}
.x94_c00412{left:464.765925px;}
.x72_c00412{left:466.662636px;}
.x4d_c00412{left:468.607547px;}
.x3_c00412{left:470.610000px;}
.x1_c00412{left:472.230000px;}
.x34_c00412{left:480.429834px;}
.xc8_c00412{left:485.496884px;}
.xa5_c00412{left:487.680038px;}
.x4e_c00412{left:490.187858px;}
.xcd_c00412{left:495.620349px;}
.x9b_c00412{left:497.357588px;}
.x81_c00412{left:498.435000px;}
.x69_c00412{left:500.680787px;}
.x4_c00412{left:504.630000px;}
.xad_c00412{left:507.900938px;}
.x79_c00412{left:510.388500px;}
.x59_c00412{left:513.086648px;}
.x3c_c00412{left:514.800866px;}
.xc_c00412{left:515.820000px;}
.x22_c00412{left:525.869034px;}
.xb1_c00412{left:529.410000px;}
.x8c_c00412{left:532.488825px;}
.x5f_c00412{left:534.250800px;}
.xe2_c00412{left:538.650000px;}
.xde_c00412{left:540.125987px;}
.x9c_c00412{left:542.210963px;}
.x23_c00412{left:549.093243px;}
.xd_c00412{left:550.353000px;}
.x60_c00412{left:556.101503px;}
.xce_c00412{left:562.249478px;}
.xb8_c00412{left:563.338958px;}
.x82_c00412{left:565.408500px;}
.x4f_c00412{left:567.708656px;}
.x3d_c00412{left:568.804376px;}
.xeb_c00412{left:571.273500px;}
.xe9_c00412{left:572.505000px;}
.xbf_c00412{left:573.669780px;}
.x73_c00412{left:577.648137px;}
.xe_c00412{left:583.069500px;}
.x95_c00412{left:585.780038px;}
.xa6_c00412{left:586.840875px;}
.x35_c00412{left:590.888277px;}
.x19_c00412{left:592.762476px;}
.xd7_c00412{left:595.017000px;}
.xc0_c00412{left:596.050524px;}
.x9d_c00412{left:598.109663px;}
.x2d_c00412{left:602.033000px;}
.x24_c00412{left:603.883590px;}
.x8d_c00412{left:608.927175px;}
.x61_c00412{left:610.646489px;}
.xe3_c00412{left:615.330000px;}
.xd8_c00412{left:617.118200px;}
.x6a_c00412{left:623.254872px;}
.x44_c00412{left:635.743500px;}
.xf_c00412{left:637.348500px;}
.xb2_c00412{left:640.434000px;}
.x83_c00412{left:642.895500px;}
.x25_c00412{left:647.363352px;}
.xcf_c00412{left:650.430888px;}
.xc1_c00412{left:651.454623px;}
.x5a_c00412{left:656.208287px;}
.x10_c00412{left:660.549000px;}
.x50_c00412{left:666.821765px;}
.xc9_c00412{left:673.030821px;}
.x9e_c00412{left:675.885975px;}
.x7a_c00412{left:677.055000px;}
.x26_c00412{left:680.045549px;}
.xc2_c00412{left:685.253826px;}
.xa7_c00412{left:687.374475px;}
.x45_c00412{left:690.298500px;}
.x51_c00412{left:691.373549px;}
.x1a_c00412{left:692.422476px;}
.x8e_c00412{left:697.403663px;}
.x84_c00412{left:699.996000px;}
.x36_c00412{left:702.671240px;}
.xb9_c00412{left:710.038238px;}
.x62_c00412{left:711.403893px;}
.xca_c00412{left:717.085305px;}
.xe4_c00412{left:719.010000px;}
.x7b_c00412{left:721.356000px;}
.x6b_c00412{left:722.668295px;}
.x3e_c00412{left:723.813938px;}
.xd0_c00412{left:729.648777px;}
.x8f_c00412{left:732.133238px;}
.x63_c00412{left:733.809596px;}
.x2e_c00412{left:735.729432px;}
.xd9_c00412{left:738.708438px;}
.x9f_c00412{left:741.586388px;}
.x85_c00412{left:742.602000px;}
.x46_c00412{left:745.678500px;}
.x11_c00412{left:748.884000px;}
.xb3_c00412{left:751.632000px;}
.xe5_c00412{left:752.760000px;}
.x27_c00412{left:758.114105px;}
.x1b_c00412{left:759.383976px;}
.xdf_c00412{left:761.997383px;}
.x52_c00412{left:766.980374px;}
.x37_c00412{left:768.063098px;}
.x12_c00412{left:770.755500px;}
.xa8_c00412{left:774.613913px;}
.x7c_c00412{left:777.766500px;}
.x6c_c00412{left:778.803770px;}
.xb4_c00412{left:785.568000px;}
.x5b_c00412{left:789.886182px;}
.x1c_c00412{left:792.097476px;}
.xc3_c00412{left:795.749850px;}
.x96_c00412{left:798.085050px;}
.x3f_c00412{left:801.331469px;}
.x2f_c00412{left:802.946678px;}
.xba_c00412{left:808.043772px;}
.x90_c00412{left:811.026038px;}
.x53_c00412{left:812.099969px;}
.x38_c00412{left:813.654683px;}
.x13_c00412{left:815.280000px;}
.xb5_c00412{left:818.509500px;}
.x6d_c00412{left:822.050217px;}
.x5c_c00412{left:823.642764px;}
.x28_c00412{left:825.356595px;}
.xd1_c00412{left:828.203579px;}
.x74_c00412{left:834.112829px;}
.xe0_c00412{left:838.470617px;}
.xa0_c00412{left:843.202500px;}
.x47_c00412{left:846.130500px;}
@media print{
.v0_c00412{vertical-align:0.000000pt;}
.ls0_c00412{letter-spacing:0.000000pt;}
.ws0_c00412{word-spacing:0.000000pt;}
.fs0_c00412{font-size:16.000000pt;}
.fs11_c00412{font-size:48.000000pt;}
.fs1_c00412{font-size:53.333333pt;}
.fs4_c00412{font-size:58.669043pt;}
.fs7_c00412{font-size:64.002592pt;}
.fs12_c00412{font-size:64.003200pt;}
.fs2_c00412{font-size:64.005408pt;}
.fs9_c00412{font-size:64.019997pt;}
.fse_c00412{font-size:64.026906pt;}
.fs5_c00412{font-size:69.336141pt;}
.fs3_c00412{font-size:69.339192pt;}
.fsd_c00412{font-size:69.362482pt;}
.fs6_c00412{font-size:74.669691pt;}
.fsb_c00412{font-size:74.689996pt;}
.fsc_c00412{font-size:74.698057pt;}
.fs8_c00412{font-size:80.000000pt;}
.fs10_c00412{font-size:90.666667pt;}
.fsf_c00412{font-size:90.704784pt;}
.fsa_c00412{font-size:96.029995pt;}
.y0_c00412{bottom:0.000000pt;}
.y161_c00412{bottom:77.699760pt;}
.y160_c00412{bottom:78.194333pt;}
.y15f_c00412{bottom:78.585707pt;}
.y15e_c00412{bottom:78.979453pt;}
.y15d_c00412{bottom:80.251680pt;}
.y15c_c00412{bottom:81.204240pt;}
.y15b_c00412{bottom:81.600000pt;}
.y15a_c00412{bottom:105.973333pt;}
.y159_c00412{bottom:106.729333pt;}
.y158_c00412{bottom:107.616000pt;}
.y157_c00412{bottom:108.052000pt;}
.y156_c00412{bottom:108.350667pt;}
.y155_c00412{bottom:108.930667pt;}
.y154_c00412{bottom:109.362667pt;}
.y153_c00412{bottom:110.381333pt;}
.y152_c00412{bottom:111.842667pt;}
.y151_c00412{bottom:129.960000pt;}
.y150_c00412{bottom:152.272000pt;}
.y14f_c00412{bottom:175.964836pt;}
.y14e_c00412{bottom:176.916623pt;}
.y14d_c00412{bottom:177.475384pt;}
.y14c_c00412{bottom:178.729803pt;}
.y14b_c00412{bottom:179.678823pt;}
.y14a_c00412{bottom:180.778492pt;}
.y149_c00412{bottom:181.202428pt;}
.y148_c00412{bottom:182.029177pt;}
.y147_c00412{bottom:182.983228pt;}
.y146_c00412{bottom:183.390528pt;}
.y145_c00412{bottom:184.723792pt;}
.y144_c00412{bottom:210.272893pt;}
.y143_c00412{bottom:210.749841pt;}
.y142_c00412{bottom:211.616280pt;}
.y141_c00412{bottom:212.788041pt;}
.y140_c00412{bottom:213.454851pt;}
.y13f_c00412{bottom:213.788372pt;}
.y13e_c00412{bottom:215.287524pt;}
.y13d_c00412{bottom:215.789595pt;}
.y13c_c00412{bottom:216.644197pt;}
.y13b_c00412{bottom:216.976925pt;}
.y13a_c00412{bottom:217.806347pt;}
.y139_c00412{bottom:218.288748pt;}
.y138_c00412{bottom:219.615463pt;}
.y137_c00412{bottom:220.100281pt;}
.y136_c00412{bottom:220.739919pt;}
.y135_c00412{bottom:239.285149pt;}
.y134_c00412{bottom:242.000487pt;}
.y133_c00412{bottom:244.184000pt;}
.y132_c00412{bottom:246.613252pt;}
.y131_c00412{bottom:248.449569pt;}
.y130_c00412{bottom:250.919343pt;}
.y12f_c00412{bottom:253.332084pt;}
.y12e_c00412{bottom:254.201785pt;}
.y12d_c00412{bottom:255.391984pt;}
.y12c_c00412{bottom:256.319857pt;}
.y12b_c00412{bottom:256.940747pt;}
.y12a_c00412{bottom:258.434585pt;}
.y129_c00412{bottom:272.943789pt;}
.y128_c00412{bottom:274.735580pt;}
.y127_c00412{bottom:275.518911pt;}
.y126_c00412{bottom:276.104804pt;}
.y125_c00412{bottom:277.108333pt;}
.y124_c00412{bottom:278.851857pt;}
.y123_c00412{bottom:279.447245pt;}
.y122_c00412{bottom:281.204441pt;}
.y121_c00412{bottom:281.981661pt;}
.y120_c00412{bottom:283.364403pt;}
.y11f_c00412{bottom:284.525456pt;}
.y11e_c00412{bottom:285.086036pt;}
.y11d_c00412{bottom:303.493652pt;}
.y11c_c00412{bottom:304.868756pt;}
.y11b_c00412{bottom:305.288979pt;}
.y11a_c00412{bottom:305.977885pt;}
.y119_c00412{bottom:306.255893pt;}
.y118_c00412{bottom:307.076975pt;}
.y117_c00412{bottom:307.506637pt;}
.y116_c00412{bottom:308.032437pt;}
.y115_c00412{bottom:308.461384pt;}
.y114_c00412{bottom:308.861431pt;}
.y113_c00412{bottom:309.822908pt;}
.y112_c00412{bottom:310.906000pt;}
.y111_c00412{bottom:311.735167pt;}
.y110_c00412{bottom:338.422359pt;}
.y10f_c00412{bottom:339.018984pt;}
.y10e_c00412{bottom:340.165399pt;}
.y10d_c00412{bottom:341.389261pt;}
.y10c_c00412{bottom:342.170349pt;}
.y10b_c00412{bottom:342.772660pt;}
.y10a_c00412{bottom:343.367777pt;}
.y109_c00412{bottom:344.534691pt;}
.y108_c00412{bottom:345.321464pt;}
.y107_c00412{bottom:346.299989pt;}
.y106_c00412{bottom:347.689169pt;}
.y105_c00412{bottom:348.265355pt;}
.y104_c00412{bottom:349.040641pt;}
.y103_c00412{bottom:349.549725pt;}
.y102_c00412{bottom:350.389967pt;}
.y101_c00412{bottom:366.827337pt;}
.y100_c00412{bottom:367.676496pt;}
.yff_c00412{bottom:368.551291pt;}
.yfe_c00412{bottom:369.974379pt;}
.yfd_c00412{bottom:371.417728pt;}
.yfc_c00412{bottom:372.252967pt;}
.yfb_c00412{bottom:374.279680pt;}
.yfa_c00412{bottom:375.108191pt;}
.yf9_c00412{bottom:376.275576pt;}
.yf8_c00412{bottom:377.391728pt;}
.yf7_c00412{bottom:378.805227pt;}
.yf6_c00412{bottom:380.510117pt;}
.yf5_c00412{bottom:381.609333pt;}
.yf4_c00412{bottom:407.194967pt;}
.yf3_c00412{bottom:409.534667pt;}
.yf2_c00412{bottom:410.250133pt;}
.yf1_c00412{bottom:410.944467pt;}
.yf0_c00412{bottom:412.829933pt;}
.yef_c00412{bottom:414.203467pt;}
.yee_c00412{bottom:415.153600pt;}
.yed_c00412{bottom:433.109233pt;}
.yec_c00412{bottom:434.427500pt;}
.yeb_c00412{bottom:435.946467pt;}
.yea_c00412{bottom:437.444267pt;}
.ye9_c00412{bottom:437.962533pt;}
.ye8_c00412{bottom:438.802933pt;}
.ye7_c00412{bottom:440.627633pt;}
.ye6_c00412{bottom:441.623267pt;}
.ye5_c00412{bottom:442.760467pt;}
.ye4_c00412{bottom:464.230767pt;}
.ye3_c00412{bottom:466.218067pt;}
.ye2_c00412{bottom:467.503300pt;}
.ye1_c00412{bottom:469.024867pt;}
.ye0_c00412{bottom:470.117633pt;}
.ydf_c00412{bottom:470.994300pt;}
.yde_c00412{bottom:472.272333pt;}
.ydd_c00412{bottom:472.916167pt;}
.ydc_c00412{bottom:473.787667pt;}
.ydb_c00412{bottom:474.633433pt;}
.yda_c00412{bottom:475.708867pt;}
.yd9_c00412{bottom:477.219900pt;}
.yd8_c00412{bottom:478.053533pt;}
.yd7_c00412{bottom:497.504200pt;}
.yd6_c00412{bottom:499.664700pt;}
.yd5_c00412{bottom:500.281133pt;}
.yd4_c00412{bottom:500.865367pt;}
.yd3_c00412{bottom:501.278833pt;}
.yd2_c00412{bottom:503.430367pt;}
.yd1_c00412{bottom:504.203300pt;}
.yd0_c00412{bottom:504.785367pt;}
.ycf_c00412{bottom:506.543067pt;}
.yce_c00412{bottom:508.098533pt;}
.ycd_c00412{bottom:508.693900pt;}
.ycc_c00412{bottom:509.264233pt;}
.ycb_c00412{bottom:526.799100pt;}
.yca_c00412{bottom:528.061300pt;}
.yc9_c00412{bottom:528.616933pt;}
.yc8_c00412{bottom:530.032067pt;}
.yc7_c00412{bottom:530.732333pt;}
.yc6_c00412{bottom:531.255733pt;}
.yc5_c00412{bottom:532.481767pt;}
.yc4_c00412{bottom:533.025733pt;}
.yc3_c00412{bottom:534.604167pt;}
.yc2_c00412{bottom:535.666567pt;}
.yc1_c00412{bottom:537.247700pt;}
.yc0_c00412{bottom:537.591700pt;}
.ybf_c00412{bottom:560.871967pt;}
.ybe_c00412{bottom:561.818767pt;}
.ybd_c00412{bottom:563.087667pt;}
.ybc_c00412{bottom:563.819600pt;}
.ybb_c00412{bottom:564.809600pt;}
.yba_c00412{bottom:566.297900pt;}
.yb9_c00412{bottom:567.498267pt;}
.yb8_c00412{bottom:568.241133pt;}
.yb7_c00412{bottom:570.703200pt;}
.yb6_c00412{bottom:571.926667pt;}
.yb5_c00412{bottom:599.049333pt;}
.yb4_c00412{bottom:623.793656pt;}
.yb3_c00412{bottom:624.174019pt;}
.yb2_c00412{bottom:624.445511pt;}
.yb1_c00412{bottom:624.957433pt;}
.yb0_c00412{bottom:625.731852pt;}
.yaf_c00412{bottom:626.883357pt;}
.yae_c00412{bottom:627.397741pt;}
.yad_c00412{bottom:627.769715pt;}
.yac_c00412{bottom:628.156196pt;}
.yab_c00412{bottom:628.886293pt;}
.yaa_c00412{bottom:629.270140pt;}
.ya9_c00412{bottom:629.518787pt;}
.ya8_c00412{bottom:630.434247pt;}
.ya7_c00412{bottom:631.201333pt;}
.ya6_c00412{bottom:655.067849pt;}
.ya5_c00412{bottom:656.159455pt;}
.ya4_c00412{bottom:656.656076pt;}
.ya3_c00412{bottom:657.050340pt;}
.ya2_c00412{bottom:657.347585pt;}
.ya1_c00412{bottom:658.334144pt;}
.ya0_c00412{bottom:658.525383pt;}
.y9f_c00412{bottom:659.017576pt;}
.y9e_c00412{bottom:659.306397pt;}
.y9d_c00412{bottom:659.887784pt;}
.y9c_c00412{bottom:660.478795pt;}
.y9b_c00412{bottom:660.774876pt;}
.y9a_c00412{bottom:661.258848pt;}
.y99_c00412{bottom:662.396117pt;}
.y98_c00412{bottom:686.168195pt;}
.y97_c00412{bottom:686.667512pt;}
.y96_c00412{bottom:687.057572pt;}
.y95_c00412{bottom:687.316612pt;}
.y94_c00412{bottom:688.465281pt;}
.y93_c00412{bottom:688.849520pt;}
.y92_c00412{bottom:689.499148pt;}
.y91_c00412{bottom:689.881909pt;}
.y90_c00412{bottom:690.515128pt;}
.y8f_c00412{bottom:691.569556pt;}
.y8e_c00412{bottom:691.916127pt;}
.y8d_c00412{bottom:692.289945pt;}
.y8c_c00412{bottom:693.194928pt;}
.y8b_c00412{bottom:693.563009pt;}
.y8a_c00412{bottom:694.077680pt;}
.y89_c00412{bottom:721.531593pt;}
.y88_c00412{bottom:721.690837pt;}
.y87_c00412{bottom:722.407556pt;}
.y86_c00412{bottom:722.795912pt;}
.y85_c00412{bottom:722.950716pt;}
.y84_c00412{bottom:723.580961pt;}
.y83_c00412{bottom:723.976516pt;}
.y82_c00412{bottom:724.283305pt;}
.y81_c00412{bottom:724.749687pt;}
.y80_c00412{bottom:725.060736pt;}
.y7f_c00412{bottom:725.758245pt;}
.y7e_c00412{bottom:750.856695pt;}
.y7d_c00412{bottom:751.217421pt;}
.y7c_c00412{bottom:751.697877pt;}
.y7b_c00412{bottom:752.289037pt;}
.y7a_c00412{bottom:752.642873pt;}
.y79_c00412{bottom:753.224575pt;}
.y78_c00412{bottom:753.581832pt;}
.y77_c00412{bottom:754.169211pt;}
.y76_c00412{bottom:754.642165pt;}
.y75_c00412{bottom:755.238667pt;}
.y74_c00412{bottom:755.581124pt;}
.y73_c00412{bottom:755.947168pt;}
.y72_c00412{bottom:756.646751pt;}
.y71_c00412{bottom:756.891588pt;}
.y70_c00412{bottom:758.161637pt;}
.y6f_c00412{bottom:784.107723pt;}
.y6e_c00412{bottom:784.508683pt;}
.y6d_c00412{bottom:785.180209pt;}
.y6c_c00412{bottom:785.397959pt;}
.y6b_c00412{bottom:786.069821pt;}
.y6a_c00412{bottom:786.278871pt;}
.y69_c00412{bottom:786.968376pt;}
.y68_c00412{bottom:787.159687pt;}
.y67_c00412{bottom:787.743317pt;}
.y66_c00412{bottom:788.044248pt;}
.y65_c00412{bottom:788.524272pt;}
.y64_c00412{bottom:788.727620pt;}
.y63_c00412{bottom:789.024781pt;}
.y62_c00412{bottom:789.689888pt;}
.y61_c00412{bottom:790.080491pt;}
.y60_c00412{bottom:815.396701pt;}
.y5f_c00412{bottom:816.018829pt;}
.y5e_c00412{bottom:816.200317pt;}
.y5d_c00412{bottom:816.643357pt;}
.y5c_c00412{bottom:817.079797pt;}
.y5b_c00412{bottom:817.347685pt;}
.y5a_c00412{bottom:817.963357pt;}
.y59_c00412{bottom:818.494729pt;}
.y58_c00412{bottom:818.676001pt;}
.y57_c00412{bottom:819.110245pt;}
.y56_c00412{bottom:819.378133pt;}
.y55_c00412{bottom:819.648097pt;}
.y54_c00412{bottom:820.266061pt;}
.y53_c00412{bottom:820.438561pt;}
.y52_c00412{bottom:821.041333pt;}
.y51_c00412{bottom:848.006945pt;}
.y50_c00412{bottom:848.314301pt;}
.y4f_c00412{bottom:848.558645pt;}
.y4e_c00412{bottom:848.875887pt;}
.y4d_c00412{bottom:849.413799pt;}
.y4c_c00412{bottom:849.661751pt;}
.y4b_c00412{bottom:850.045751pt;}
.y4a_c00412{bottom:850.288239pt;}
.y49_c00412{bottom:851.146983pt;}
.y48_c00412{bottom:851.543105pt;}
.y47_c00412{bottom:851.853827pt;}
.y46_c00412{bottom:852.089587pt;}
.y45_c00412{bottom:852.555556pt;}
.y44_c00412{bottom:852.706936pt;}
.y43_c00412{bottom:876.738756pt;}
.y42_c00412{bottom:877.225585pt;}
.y41_c00412{bottom:877.922548pt;}
.y40_c00412{bottom:879.114245pt;}
.y3f_c00412{bottom:880.291971pt;}
.y3e_c00412{bottom:881.107121pt;}
.y3d_c00412{bottom:881.823984pt;}
.y3c_c00412{bottom:882.051520pt;}
.y3b_c00412{bottom:882.640001pt;}
.y3a_c00412{bottom:883.336495pt;}
.y39_c00412{bottom:883.909063pt;}
.y38_c00412{bottom:910.748219pt;}
.y37_c00412{bottom:911.029016pt;}
.y36_c00412{bottom:911.166224pt;}
.y35_c00412{bottom:911.997707pt;}
.y34_c00412{bottom:912.331920pt;}
.y33_c00412{bottom:912.472511pt;}
.y32_c00412{bottom:912.883889pt;}
.y31_c00412{bottom:913.502803pt;}
.y30_c00412{bottom:913.645059pt;}
.y2f_c00412{bottom:914.253183pt;}
.y2e_c00412{bottom:914.397399pt;}
.y2d_c00412{bottom:914.870240pt;}
.y2c_c00412{bottom:940.847723pt;}
.y2b_c00412{bottom:941.386040pt;}
.y2a_c00412{bottom:942.010785pt;}
.y29_c00412{bottom:942.272427pt;}
.y28_c00412{bottom:942.620167pt;}
.y27_c00412{bottom:943.058600pt;}
.y26_c00412{bottom:943.244288pt;}
.y25_c00412{bottom:943.771265pt;}
.y24_c00412{bottom:944.132444pt;}
.y23_c00412{bottom:944.392212pt;}
.y22_c00412{bottom:944.651928pt;}
.y21_c00412{bottom:945.006275pt;}
.y20_c00412{bottom:945.274505pt;}
.y1f_c00412{bottom:945.797476pt;}
.y1e_c00412{bottom:946.315436pt;}
.y1d_c00412{bottom:972.648025pt;}
.y1c_c00412{bottom:973.026048pt;}
.y1b_c00412{bottom:973.799825pt;}
.y1a_c00412{bottom:974.445891pt;}
.y19_c00412{bottom:974.951452pt;}
.y18_c00412{bottom:975.840895pt;}
.y17_c00412{bottom:976.623997pt;}
.y16_c00412{bottom:977.007844pt;}
.y15_c00412{bottom:977.878445pt;}
.y14_c00412{bottom:978.399121pt;}
.y13_c00412{bottom:979.404039pt;}
.y12_c00412{bottom:980.158611pt;}
.y11_c00412{bottom:1003.361373pt;}
.y10_c00412{bottom:1003.875879pt;}
.yf_c00412{bottom:1004.128616pt;}
.ye_c00412{bottom:1005.149376pt;}
.yd_c00412{bottom:1005.417471pt;}
.yc_c00412{bottom:1006.044695pt;}
.yb_c00412{bottom:1006.422752pt;}
.ya_c00412{bottom:1006.821800pt;}
.y9_c00412{bottom:1007.714571pt;}
.y8_c00412{bottom:1008.232317pt;}
.y7_c00412{bottom:1009.106333pt;}
.y6_c00412{bottom:1009.499540pt;}
.y5_c00412{bottom:1010.013803pt;}
.y4_c00412{bottom:1010.616188pt;}
.y3_c00412{bottom:1011.121333pt;}
.y2_c00412{bottom:1067.765333pt;}
.y1_c00412{bottom:1100.160000pt;}
.h2_c00412{height:16.000000pt;}
.h13_c00412{height:48.000000pt;}
.h3_c00412{height:53.333333pt;}
.h6_c00412{height:58.669043pt;}
.h9_c00412{height:64.002592pt;}
.h14_c00412{height:64.003200pt;}
.h4_c00412{height:64.005408pt;}
.hb_c00412{height:64.019997pt;}
.h10_c00412{height:64.026906pt;}
.h7_c00412{height:69.336141pt;}
.h5_c00412{height:69.339192pt;}
.hf_c00412{height:69.362482pt;}
.h8_c00412{height:74.669691pt;}
.hd_c00412{height:74.689996pt;}
.he_c00412{height:74.698057pt;}
.ha_c00412{height:80.000000pt;}
.h12_c00412{height:90.666667pt;}
.h11_c00412{height:90.704784pt;}
.hc_c00412{height:96.029995pt;}
.h1_c00412{height:1112.000000pt;}
.h0_c00412{height:1112.133333pt;}
.w0_c00412{width:813.333333pt;}
.x0_c00412{left:0.000000pt;}
.x6e_c00412{left:8.521547pt;}
.xe6_c00412{left:116.640000pt;}
.xbb_c00412{left:118.565265pt;}
.xa9_c00412{left:119.833867pt;}
.x86_c00412{left:121.263133pt;}
.x64_c00412{left:122.271871pt;}
.x54_c00412{left:123.446008pt;}
.x29_c00412{left:124.708429pt;}
.x14_c00412{left:126.349312pt;}
.x5_c00412{left:127.773333pt;}
.x87_c00412{left:140.359800pt;}
.x39_c00412{left:143.903052pt;}
.xc4_c00412{left:147.837444pt;}
.x91_c00412{left:150.017767pt;}
.xd2_c00412{left:157.697636pt;}
.x97_c00412{left:159.130433pt;}
.x65_c00412{left:161.826443pt;}
.x48_c00412{left:163.556988pt;}
.x6_c00412{left:166.630667pt;}
.x6f_c00412{left:170.732095pt;}
.x30_c00412{left:173.364115pt;}
.xbc_c00412{left:177.757645pt;}
.x75_c00412{left:180.533333pt;}
.x15_c00412{left:184.393312pt;}
.xcb_c00412{left:186.694153pt;}
.xa1_c00412{left:187.670900pt;}
.x66_c00412{left:190.130756pt;}
.x2a_c00412{left:192.163015pt;}
.x70_c00412{left:200.370497pt;}
.x3a_c00412{left:202.212181pt;}
.xc5_c00412{left:205.865896pt;}
.x40_c00412{left:211.076000pt;}
.x7_c00412{left:212.968000pt;}
.xda_c00412{left:214.995428pt;}
.xaa_c00412{left:216.676300pt;}
.x7d_c00412{left:217.902667pt;}
.xb6_c00412{left:226.075424pt;}
.x88_c00412{left:228.207167pt;}
.x49_c00412{left:230.049721pt;}
.x31_c00412{left:231.351527pt;}
.x1d_c00412{left:242.026108pt;}
.xdb_c00412{left:244.041367pt;}
.xa2_c00412{left:246.227933pt;}
.x55_c00412{left:249.689267pt;}
.x76_c00412{left:250.953333pt;}
.x8_c00412{left:252.526667pt;}
.xae_c00412{left:255.744000pt;}
.x92_c00412{left:257.504500pt;}
.x4a_c00412{left:259.808124pt;}
.x16_c00412{left:261.694645pt;}
.xd3_c00412{left:264.201307pt;}
.x7e_c00412{left:266.841333pt;}
.x3b_c00412{left:270.612636pt;}
.x1e_c00412{left:271.788984pt;}
.xc6_c00412{left:275.035953pt;}
.x98_c00412{left:276.677900pt;}
.x32_c00412{left:280.414835pt;}
.x9_c00412{left:282.773333pt;}
.x89_c00412{left:287.246833pt;}
.x67_c00412{left:288.512549pt;}
.xd4_c00412{left:292.569833pt;}
.xab_c00412{left:295.243600pt;}
.x2b_c00412{left:299.684737pt;}
.x17_c00412{left:301.746645pt;}
.x56_c00412{left:308.011695pt;}
.x41_c00412{left:309.734667pt;}
.x1f_c00412{left:311.151029pt;}
.xdc_c00412{left:312.233691pt;}
.xc7_c00412{left:313.892751pt;}
.x68_c00412{left:315.167589pt;}
.x71_c00412{left:317.598775pt;}
.x2c_c00412{left:320.064999pt;}
.xac_c00412{left:324.191000pt;}
.x4b_c00412{left:328.182179pt;}
.x57_c00412{left:338.460200pt;}
.x20_c00412{left:339.951187pt;}
.xd5_c00412{left:341.325436pt;}
.x93_c00412{left:345.370133pt;}
.x5d_c00412{left:346.688448pt;}
.xa_c00412{left:350.005333pt;}
.xbd_c00412{left:352.337509pt;}
.xa3_c00412{left:353.584067pt;}
.x99_c00412{left:354.707733pt;}
.x77_c00412{left:355.768000pt;}
.x4c_c00412{left:358.211236pt;}
.x33_c00412{left:359.113191pt;}
.xcc_c00412{left:360.862689pt;}
.xaf_c00412{left:363.274667pt;}
.x7f_c00412{left:365.324000pt;}
.x58_c00412{left:367.028765pt;}
.x18_c00412{left:368.715979pt;}
.xe7_c00412{left:370.358667pt;}
.xdd_c00412{left:371.296699pt;}
.xb7_c00412{left:373.236448pt;}
.x8a_c00412{left:374.932833pt;}
.xea_c00412{left:379.829333pt;}
.xbe_c00412{left:383.004183pt;}
.x9a_c00412{left:383.983267pt;}
.x78_c00412{left:385.497333pt;}
.x42_c00412{left:387.749333pt;}
.xb_c00412{left:389.832000pt;}
.x80_c00412{left:395.038667pt;}
.x5e_c00412{left:396.120892pt;}
.x2_c00412{left:398.160000pt;}
.xe8_c00412{left:399.402667pt;}
.xb0_c00412{left:401.762667pt;}
.xa4_c00412{left:402.996600pt;}
.x8b_c00412{left:405.176800pt;}
.x43_c00412{left:407.890667pt;}
.x21_c00412{left:408.848091pt;}
.xe1_c00412{left:409.920000pt;}
.xd6_c00412{left:411.165719pt;}
.x94_c00412{left:413.125267pt;}
.x72_c00412{left:414.811232pt;}
.x4d_c00412{left:416.540041pt;}
.x3_c00412{left:418.320000pt;}
.x1_c00412{left:419.760000pt;}
.x34_c00412{left:427.048741pt;}
.xc8_c00412{left:431.552785pt;}
.xa5_c00412{left:433.493367pt;}
.x4e_c00412{left:435.722540pt;}
.xcd_c00412{left:440.551421pt;}
.x9b_c00412{left:442.095633pt;}
.x81_c00412{left:443.053333pt;}
.x69_c00412{left:445.049588pt;}
.x4_c00412{left:448.560000pt;}
.xad_c00412{left:451.467500pt;}
.x79_c00412{left:453.678667pt;}
.x59_c00412{left:456.077020pt;}
.x3c_c00412{left:457.600769pt;}
.xc_c00412{left:458.506667pt;}
.x22_c00412{left:467.439141pt;}
.xb1_c00412{left:470.586667pt;}
.x8c_c00412{left:473.323400pt;}
.x5f_c00412{left:474.889600pt;}
.xe2_c00412{left:478.800000pt;}
.xde_c00412{left:480.111988pt;}
.x9c_c00412{left:481.965300pt;}
.x23_c00412{left:488.082883pt;}
.xd_c00412{left:489.202667pt;}
.x60_c00412{left:494.312447pt;}
.xce_c00412{left:499.777313pt;}
.xb8_c00412{left:500.745740pt;}
.x82_c00412{left:502.585333pt;}
.x4f_c00412{left:504.629916pt;}
.x3d_c00412{left:505.603889pt;}
.xeb_c00412{left:507.798667pt;}
.xe9_c00412{left:508.893333pt;}
.xbf_c00412{left:509.928693pt;}
.x73_c00412{left:513.465011pt;}
.xe_c00412{left:518.284000pt;}
.x95_c00412{left:520.693367pt;}
.xa6_c00412{left:521.636333pt;}
.x35_c00412{left:525.234024pt;}
.x19_c00412{left:526.899979pt;}
.xd7_c00412{left:528.904000pt;}
.xc0_c00412{left:529.822688pt;}
.x9d_c00412{left:531.653033pt;}
.x2d_c00412{left:535.140444pt;}
.x24_c00412{left:536.785413pt;}
.x8d_c00412{left:541.268600pt;}
.x61_c00412{left:542.796879pt;}
.xe3_c00412{left:546.960000pt;}
.xd8_c00412{left:548.549511pt;}
.x6a_c00412{left:554.004331pt;}
.x44_c00412{left:565.105333pt;}
.xf_c00412{left:566.532000pt;}
.xb2_c00412{left:569.274667pt;}
.x83_c00412{left:571.462667pt;}
.x25_c00412{left:575.434091pt;}
.xcf_c00412{left:578.160789pt;}
.xc1_c00412{left:579.070776pt;}
.x5a_c00412{left:583.296255pt;}
.x10_c00412{left:587.154667pt;}
.x50_c00412{left:592.730457pt;}
.xc9_c00412{left:598.249619pt;}
.x9e_c00412{left:600.787533pt;}
.x7a_c00412{left:601.826667pt;}
.x26_c00412{left:604.484932pt;}
.xc2_c00412{left:609.114512pt;}
.xa7_c00412{left:610.999533pt;}
.x45_c00412{left:613.598667pt;}
.x51_c00412{left:614.554265pt;}
.x1a_c00412{left:615.486645pt;}
.x8e_c00412{left:619.914367pt;}
.x84_c00412{left:622.218667pt;}
.x36_c00412{left:624.596657pt;}
.xb9_c00412{left:631.145100pt;}
.x62_c00412{left:632.359016pt;}
.xca_c00412{left:637.409160pt;}
.xe4_c00412{left:639.120000pt;}
.x7b_c00412{left:641.205333pt;}
.x6b_c00412{left:642.371817pt;}
.x3e_c00412{left:643.390167pt;}
.xd0_c00412{left:648.576691pt;}
.x8f_c00412{left:650.785100pt;}
.x63_c00412{left:652.275196pt;}
.x2e_c00412{left:653.981717pt;}
.xd9_c00412{left:656.629723pt;}
.x9f_c00412{left:659.187900pt;}
.x85_c00412{left:660.090667pt;}
.x46_c00412{left:662.825333pt;}
.x11_c00412{left:665.674667pt;}
.xb3_c00412{left:668.117333pt;}
.xe5_c00412{left:669.120000pt;}
.x27_c00412{left:673.879204pt;}
.x1b_c00412{left:675.007979pt;}
.xdf_c00412{left:677.331007pt;}
.x52_c00412{left:681.760332pt;}
.x37_c00412{left:682.722753pt;}
.x12_c00412{left:685.116000pt;}
.xa8_c00412{left:688.545700pt;}
.x7c_c00412{left:691.348000pt;}
.x6c_c00412{left:692.270017pt;}
.xb4_c00412{left:698.282667pt;}
.x5b_c00412{left:702.121051pt;}
.x1c_c00412{left:704.086645pt;}
.xc3_c00412{left:707.333200pt;}
.x96_c00412{left:709.408933pt;}
.x3f_c00412{left:712.294639pt;}
.x2f_c00412{left:713.730380pt;}
.xba_c00412{left:718.261131pt;}
.x90_c00412{left:720.912033pt;}
.x53_c00412{left:721.866639pt;}
.x38_c00412{left:723.248607pt;}
.x13_c00412{left:724.693333pt;}
.xb5_c00412{left:727.564000pt;}
.x6d_c00412{left:730.711304pt;}
.x5c_c00412{left:732.126901pt;}
.x28_c00412{left:733.650307pt;}
.xd1_c00412{left:736.180959pt;}
.x74_c00412{left:741.433625pt;}
.xe0_c00412{left:745.307215pt;}
.xa0_c00412{left:749.513333pt;}
.x47_c00412{left:752.116000pt;}
}





/* 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_c00413 {
    display:none;
  }
  .loading-indicator_c00413.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00413 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_c00413 { 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_c00413" -> "#page-container .classname_c00413")
 */
.pf_c00413 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00413 { /* 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_c00413.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00413 { /* 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_c00413 { /* 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_c00413 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00413 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00413 {overflow:visible;}
  }
}
.c_c00413 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00413 { /* 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_c00413:after { /* webkit #35443 */
  content: '';
}
.t_c00413:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00413 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 */
}
.__c00413 { /* 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_c00413 { /* info for Javascript */
  display:none;
}
.l_c00413 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00413 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00413 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00413: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_c00413 {
    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_c00413.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00413.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_c00413 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00413{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00413;src:url('chunks/assets/font_b11a17f404e7258299fdf971.woff2')format("woff");}.ff1_c00413{font-family:ff1_c00413;line-height:1.000000;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;}
.m3c_c00413{transform:matrix(0.102476,-0.000922,0.002250,0.249990,0,0);-ms-transform:matrix(0.102476,-0.000922,0.002250,0.249990,0,0);-webkit-transform:matrix(0.102476,-0.000922,0.002250,0.249990,0,0);}
.m32_c00413{transform:matrix(0.107696,-0.000969,0.002250,0.249990,0,0);-ms-transform:matrix(0.107696,-0.000969,0.002250,0.249990,0,0);-webkit-transform:matrix(0.107696,-0.000969,0.002250,0.249990,0,0);}
.m2_c00413{transform:matrix(0.149953,-0.002249,0.003750,0.249972,0,0);-ms-transform:matrix(0.149953,-0.002249,0.003750,0.249972,0,0);-webkit-transform:matrix(0.149953,-0.002249,0.003750,0.249972,0,0);}
.m71_c00413{transform:matrix(0.158920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158920,0.000000,0.000000,0.250000,0,0);}
.m26_c00413{transform:matrix(0.170473,-0.001534,0.002250,0.249990,0,0);-ms-transform:matrix(0.170473,-0.001534,0.002250,0.249990,0,0);-webkit-transform:matrix(0.170473,-0.001534,0.002250,0.249990,0,0);}
.m3f_c00413{transform:matrix(0.177988,-0.001602,0.002250,0.249990,0,0);-ms-transform:matrix(0.177988,-0.001602,0.002250,0.249990,0,0);-webkit-transform:matrix(0.177988,-0.001602,0.002250,0.249990,0,0);}
.m3e_c00413{transform:matrix(0.181143,-0.001630,0.002250,0.249990,0,0);-ms-transform:matrix(0.181143,-0.001630,0.002250,0.249990,0,0);-webkit-transform:matrix(0.181143,-0.001630,0.002250,0.249990,0,0);}
.m41_c00413{transform:matrix(0.181238,-0.001631,0.002250,0.249990,0,0);-ms-transform:matrix(0.181238,-0.001631,0.002250,0.249990,0,0);-webkit-transform:matrix(0.181238,-0.001631,0.002250,0.249990,0,0);}
.m40_c00413{transform:matrix(0.183093,-0.001648,0.002250,0.249990,0,0);-ms-transform:matrix(0.183093,-0.001648,0.002250,0.249990,0,0);-webkit-transform:matrix(0.183093,-0.001648,0.002250,0.249990,0,0);}
.m42_c00413{transform:matrix(0.184373,-0.001659,0.002250,0.249990,0,0);-ms-transform:matrix(0.184373,-0.001659,0.002250,0.249990,0,0);-webkit-transform:matrix(0.184373,-0.001659,0.002250,0.249990,0,0);}
.m45_c00413{transform:matrix(0.196347,-0.001767,0.002250,0.249990,0,0);-ms-transform:matrix(0.196347,-0.001767,0.002250,0.249990,0,0);-webkit-transform:matrix(0.196347,-0.001767,0.002250,0.249990,0,0);}
.m35_c00413{transform:matrix(0.198392,-0.001786,0.002250,0.249990,0,0);-ms-transform:matrix(0.198392,-0.001786,0.002250,0.249990,0,0);-webkit-transform:matrix(0.198392,-0.001786,0.002250,0.249990,0,0);}
.m4_c00413{transform:matrix(0.200202,-0.003003,0.003750,0.249972,0,0);-ms-transform:matrix(0.200202,-0.003003,0.003750,0.249972,0,0);-webkit-transform:matrix(0.200202,-0.003003,0.003750,0.249972,0,0);}
.m9_c00413{transform:matrix(0.201587,-0.001814,0.002250,0.249990,0,0);-ms-transform:matrix(0.201587,-0.001814,0.002250,0.249990,0,0);-webkit-transform:matrix(0.201587,-0.001814,0.002250,0.249990,0,0);}
.m15_c00413{transform:matrix(0.208597,-0.001877,0.002250,0.249990,0,0);-ms-transform:matrix(0.208597,-0.001877,0.002250,0.249990,0,0);-webkit-transform:matrix(0.208597,-0.001877,0.002250,0.249990,0,0);}
.m18_c00413{transform:matrix(0.212051,-0.001908,0.002250,0.249990,0,0);-ms-transform:matrix(0.212051,-0.001908,0.002250,0.249990,0,0);-webkit-transform:matrix(0.212051,-0.001908,0.002250,0.249990,0,0);}
.m52_c00413{transform:matrix(0.212416,-0.001274,0.001500,0.249996,0,0);-ms-transform:matrix(0.212416,-0.001274,0.001500,0.249996,0,0);-webkit-transform:matrix(0.212416,-0.001274,0.001500,0.249996,0,0);}
.m7_c00413{transform:matrix(0.218006,-0.001962,0.002250,0.249990,0,0);-ms-transform:matrix(0.218006,-0.001962,0.002250,0.249990,0,0);-webkit-transform:matrix(0.218006,-0.001962,0.002250,0.249990,0,0);}
.m19_c00413{transform:matrix(0.221336,-0.001992,0.002250,0.249990,0,0);-ms-transform:matrix(0.221336,-0.001992,0.002250,0.249990,0,0);-webkit-transform:matrix(0.221336,-0.001992,0.002250,0.249990,0,0);}
.m25_c00413{transform:matrix(0.221661,-0.001995,0.002250,0.249990,0,0);-ms-transform:matrix(0.221661,-0.001995,0.002250,0.249990,0,0);-webkit-transform:matrix(0.221661,-0.001995,0.002250,0.249990,0,0);}
.m3_c00413{transform:matrix(0.222190,-0.003333,0.003750,0.249972,0,0);-ms-transform:matrix(0.222190,-0.003333,0.003750,0.249972,0,0);-webkit-transform:matrix(0.222190,-0.003333,0.003750,0.249972,0,0);}
.m3d_c00413{transform:matrix(0.223116,-0.002008,0.002250,0.249990,0,0);-ms-transform:matrix(0.223116,-0.002008,0.002250,0.249990,0,0);-webkit-transform:matrix(0.223116,-0.002008,0.002250,0.249990,0,0);}
.m5e_c00413{transform:matrix(0.223735,-0.003356,0.003750,0.249972,0,0);-ms-transform:matrix(0.223735,-0.003356,0.003750,0.249972,0,0);-webkit-transform:matrix(0.223735,-0.003356,0.003750,0.249972,0,0);}
.m4a_c00413{transform:matrix(0.226681,-0.001360,0.001500,0.249996,0,0);-ms-transform:matrix(0.226681,-0.001360,0.001500,0.249996,0,0);-webkit-transform:matrix(0.226681,-0.001360,0.001500,0.249996,0,0);}
.m27_c00413{transform:matrix(0.227681,-0.002049,0.002250,0.249990,0,0);-ms-transform:matrix(0.227681,-0.002049,0.002250,0.249990,0,0);-webkit-transform:matrix(0.227681,-0.002049,0.002250,0.249990,0,0);}
.m4d_c00413{transform:matrix(0.228506,-0.001371,0.001500,0.249996,0,0);-ms-transform:matrix(0.228506,-0.001371,0.001500,0.249996,0,0);-webkit-transform:matrix(0.228506,-0.001371,0.001500,0.249996,0,0);}
.m23_c00413{transform:matrix(0.229426,-0.002065,0.002250,0.249990,0,0);-ms-transform:matrix(0.229426,-0.002065,0.002250,0.249990,0,0);-webkit-transform:matrix(0.229426,-0.002065,0.002250,0.249990,0,0);}
.m4e_c00413{transform:matrix(0.230311,-0.001382,0.001500,0.249996,0,0);-ms-transform:matrix(0.230311,-0.001382,0.001500,0.249996,0,0);-webkit-transform:matrix(0.230311,-0.001382,0.001500,0.249996,0,0);}
.m54_c00413{transform:matrix(0.231251,-0.001388,0.001500,0.249996,0,0);-ms-transform:matrix(0.231251,-0.001388,0.001500,0.249996,0,0);-webkit-transform:matrix(0.231251,-0.001388,0.001500,0.249996,0,0);}
.m1_c00413{transform:matrix(0.231674,-0.003475,0.003750,0.249972,0,0);-ms-transform:matrix(0.231674,-0.003475,0.003750,0.249972,0,0);-webkit-transform:matrix(0.231674,-0.003475,0.003750,0.249972,0,0);}
.m0_c00413{transform:matrix(0.231924,-0.003479,0.003750,0.249972,0,0);-ms-transform:matrix(0.231924,-0.003479,0.003750,0.249972,0,0);-webkit-transform:matrix(0.231924,-0.003479,0.003750,0.249972,0,0);}
.m1a_c00413{transform:matrix(0.232136,-0.002089,0.002250,0.249990,0,0);-ms-transform:matrix(0.232136,-0.002089,0.002250,0.249990,0,0);-webkit-transform:matrix(0.232136,-0.002089,0.002250,0.249990,0,0);}
.m1c_c00413{transform:matrix(0.234690,-0.002112,0.002250,0.249990,0,0);-ms-transform:matrix(0.234690,-0.002112,0.002250,0.249990,0,0);-webkit-transform:matrix(0.234690,-0.002112,0.002250,0.249990,0,0);}
.m2e_c00413{transform:matrix(0.236155,-0.002125,0.002250,0.249990,0,0);-ms-transform:matrix(0.236155,-0.002125,0.002250,0.249990,0,0);-webkit-transform:matrix(0.236155,-0.002125,0.002250,0.249990,0,0);}
.m49_c00413{transform:matrix(0.236201,-0.001417,0.001500,0.249996,0,0);-ms-transform:matrix(0.236201,-0.001417,0.001500,0.249996,0,0);-webkit-transform:matrix(0.236201,-0.001417,0.001500,0.249996,0,0);}
.m2d_c00413{transform:matrix(0.237000,-0.002133,0.002250,0.249990,0,0);-ms-transform:matrix(0.237000,-0.002133,0.002250,0.249990,0,0);-webkit-transform:matrix(0.237000,-0.002133,0.002250,0.249990,0,0);}
.m24_c00413{transform:matrix(0.237280,-0.002136,0.002250,0.249990,0,0);-ms-transform:matrix(0.237280,-0.002136,0.002250,0.249990,0,0);-webkit-transform:matrix(0.237280,-0.002136,0.002250,0.249990,0,0);}
.m2b_c00413{transform:matrix(0.238150,-0.002143,0.002250,0.249990,0,0);-ms-transform:matrix(0.238150,-0.002143,0.002250,0.249990,0,0);-webkit-transform:matrix(0.238150,-0.002143,0.002250,0.249990,0,0);}
.m22_c00413{transform:matrix(0.238715,-0.002148,0.002250,0.249990,0,0);-ms-transform:matrix(0.238715,-0.002148,0.002250,0.249990,0,0);-webkit-transform:matrix(0.238715,-0.002148,0.002250,0.249990,0,0);}
.m28_c00413{transform:matrix(0.239370,-0.002154,0.002250,0.249990,0,0);-ms-transform:matrix(0.239370,-0.002154,0.002250,0.249990,0,0);-webkit-transform:matrix(0.239370,-0.002154,0.002250,0.249990,0,0);}
.m21_c00413{transform:matrix(0.239735,-0.002158,0.002250,0.249990,0,0);-ms-transform:matrix(0.239735,-0.002158,0.002250,0.249990,0,0);-webkit-transform:matrix(0.239735,-0.002158,0.002250,0.249990,0,0);}
.m29_c00413{transform:matrix(0.241030,-0.002169,0.002250,0.249990,0,0);-ms-transform:matrix(0.241030,-0.002169,0.002250,0.249990,0,0);-webkit-transform:matrix(0.241030,-0.002169,0.002250,0.249990,0,0);}
.m20_c00413{transform:matrix(0.241060,-0.002170,0.002250,0.249990,0,0);-ms-transform:matrix(0.241060,-0.002170,0.002250,0.249990,0,0);-webkit-transform:matrix(0.241060,-0.002170,0.002250,0.249990,0,0);}
.m64_c00413{transform:matrix(0.241673,-0.003625,0.003750,0.249972,0,0);-ms-transform:matrix(0.241673,-0.003625,0.003750,0.249972,0,0);-webkit-transform:matrix(0.241673,-0.003625,0.003750,0.249972,0,0);}
.m38_c00413{transform:matrix(0.242915,-0.002186,0.002250,0.249990,0,0);-ms-transform:matrix(0.242915,-0.002186,0.002250,0.249990,0,0);-webkit-transform:matrix(0.242915,-0.002186,0.002250,0.249990,0,0);}
.m43_c00413{transform:matrix(0.245175,-0.002207,0.002250,0.249990,0,0);-ms-transform:matrix(0.245175,-0.002207,0.002250,0.249990,0,0);-webkit-transform:matrix(0.245175,-0.002207,0.002250,0.249990,0,0);}
.m4c_c00413{transform:matrix(0.247441,-0.001485,0.001500,0.249996,0,0);-ms-transform:matrix(0.247441,-0.001485,0.001500,0.249996,0,0);-webkit-transform:matrix(0.247441,-0.001485,0.001500,0.249996,0,0);}
.ma_c00413{transform:matrix(0.248690,-0.002238,0.002250,0.249990,0,0);-ms-transform:matrix(0.248690,-0.002238,0.002250,0.249990,0,0);-webkit-transform:matrix(0.248690,-0.002238,0.002250,0.249990,0,0);}
.m6c_c00413{transform:matrix(0.249127,-0.003737,0.003750,0.249972,0,0);-ms-transform:matrix(0.249127,-0.003737,0.003750,0.249972,0,0);-webkit-transform:matrix(0.249127,-0.003737,0.003750,0.249972,0,0);}
.m1f_c00413{transform:matrix(0.249655,-0.002247,0.002250,0.249990,0,0);-ms-transform:matrix(0.249655,-0.002247,0.002250,0.249990,0,0);-webkit-transform:matrix(0.249655,-0.002247,0.002250,0.249990,0,0);}
.m1b_c00413{transform:matrix(0.251680,-0.002265,0.002250,0.249990,0,0);-ms-transform:matrix(0.251680,-0.002265,0.002250,0.249990,0,0);-webkit-transform:matrix(0.251680,-0.002265,0.002250,0.249990,0,0);}
.m30_c00413{transform:matrix(0.251995,-0.002268,0.002250,0.249990,0,0);-ms-transform:matrix(0.251995,-0.002268,0.002250,0.249990,0,0);-webkit-transform:matrix(0.251995,-0.002268,0.002250,0.249990,0,0);}
.me_c00413{transform:matrix(0.254700,-0.002292,0.002250,0.249990,0,0);-ms-transform:matrix(0.254700,-0.002292,0.002250,0.249990,0,0);-webkit-transform:matrix(0.254700,-0.002292,0.002250,0.249990,0,0);}
.m69_c00413{transform:matrix(0.254996,-0.003825,0.003750,0.249972,0,0);-ms-transform:matrix(0.254996,-0.003825,0.003750,0.249972,0,0);-webkit-transform:matrix(0.254996,-0.003825,0.003750,0.249972,0,0);}
.m5a_c00413{transform:matrix(0.255051,-0.003826,0.003750,0.249972,0,0);-ms-transform:matrix(0.255051,-0.003826,0.003750,0.249972,0,0);-webkit-transform:matrix(0.255051,-0.003826,0.003750,0.249972,0,0);}
.m36_c00413{transform:matrix(0.258545,-0.002327,0.002250,0.249990,0,0);-ms-transform:matrix(0.258545,-0.002327,0.002250,0.249990,0,0);-webkit-transform:matrix(0.258545,-0.002327,0.002250,0.249990,0,0);}
.m67_c00413{transform:matrix(0.258831,-0.003882,0.003750,0.249972,0,0);-ms-transform:matrix(0.258831,-0.003882,0.003750,0.249972,0,0);-webkit-transform:matrix(0.258831,-0.003882,0.003750,0.249972,0,0);}
.m1e_c00413{transform:matrix(0.259459,-0.002335,0.002250,0.249990,0,0);-ms-transform:matrix(0.259459,-0.002335,0.002250,0.249990,0,0);-webkit-transform:matrix(0.259459,-0.002335,0.002250,0.249990,0,0);}
.m5c_c00413{transform:matrix(0.261056,-0.003916,0.003750,0.249972,0,0);-ms-transform:matrix(0.261056,-0.003916,0.003750,0.249972,0,0);-webkit-transform:matrix(0.261056,-0.003916,0.003750,0.249972,0,0);}
.m5f_c00413{transform:matrix(0.262485,-0.003937,0.003750,0.249972,0,0);-ms-transform:matrix(0.262485,-0.003937,0.003750,0.249972,0,0);-webkit-transform:matrix(0.262485,-0.003937,0.003750,0.249972,0,0);}
.m31_c00413{transform:matrix(0.264449,-0.002380,0.002250,0.249990,0,0);-ms-transform:matrix(0.264449,-0.002380,0.002250,0.249990,0,0);-webkit-transform:matrix(0.264449,-0.002380,0.002250,0.249990,0,0);}
.m6d_c00413{transform:matrix(0.265095,-0.003976,0.003750,0.249972,0,0);-ms-transform:matrix(0.265095,-0.003976,0.003750,0.249972,0,0);-webkit-transform:matrix(0.265095,-0.003976,0.003750,0.249972,0,0);}
.m17_c00413{transform:matrix(0.265434,-0.002389,0.002250,0.249990,0,0);-ms-transform:matrix(0.265434,-0.002389,0.002250,0.249990,0,0);-webkit-transform:matrix(0.265434,-0.002389,0.002250,0.249990,0,0);}
.m65_c00413{transform:matrix(0.270790,-0.004062,0.003750,0.249972,0,0);-ms-transform:matrix(0.270790,-0.004062,0.003750,0.249972,0,0);-webkit-transform:matrix(0.270790,-0.004062,0.003750,0.249972,0,0);}
.m8_c00413{transform:matrix(0.271259,-0.002441,0.002250,0.249990,0,0);-ms-transform:matrix(0.271259,-0.002441,0.002250,0.249990,0,0);-webkit-transform:matrix(0.271259,-0.002441,0.002250,0.249990,0,0);}
.m50_c00413{transform:matrix(0.271445,-0.001629,0.001500,0.249996,0,0);-ms-transform:matrix(0.271445,-0.001629,0.001500,0.249996,0,0);-webkit-transform:matrix(0.271445,-0.001629,0.001500,0.249996,0,0);}
.m16_c00413{transform:matrix(0.272549,-0.002453,0.002250,0.249990,0,0);-ms-transform:matrix(0.272549,-0.002453,0.002250,0.249990,0,0);-webkit-transform:matrix(0.272549,-0.002453,0.002250,0.249990,0,0);}
.m6a_c00413{transform:matrix(0.276079,-0.004141,0.003750,0.249972,0,0);-ms-transform:matrix(0.276079,-0.004141,0.003750,0.249972,0,0);-webkit-transform:matrix(0.276079,-0.004141,0.003750,0.249972,0,0);}
.m51_c00413{transform:matrix(0.277940,-0.001668,0.001500,0.249996,0,0);-ms-transform:matrix(0.277940,-0.001668,0.001500,0.249996,0,0);-webkit-transform:matrix(0.277940,-0.001668,0.001500,0.249996,0,0);}
.m10_c00413{transform:matrix(0.279319,-0.002514,0.002250,0.249990,0,0);-ms-transform:matrix(0.279319,-0.002514,0.002250,0.249990,0,0);-webkit-transform:matrix(0.279319,-0.002514,0.002250,0.249990,0,0);}
.m63_c00413{transform:matrix(0.280363,-0.004205,0.003750,0.249972,0,0);-ms-transform:matrix(0.280363,-0.004205,0.003750,0.249972,0,0);-webkit-transform:matrix(0.280363,-0.004205,0.003750,0.249972,0,0);}
.m59_c00413{transform:matrix(0.281323,-0.004220,0.003750,0.249972,0,0);-ms-transform:matrix(0.281323,-0.004220,0.003750,0.249972,0,0);-webkit-transform:matrix(0.281323,-0.004220,0.003750,0.249972,0,0);}
.m5b_c00413{transform:matrix(0.281863,-0.004228,0.003750,0.249972,0,0);-ms-transform:matrix(0.281863,-0.004228,0.003750,0.249972,0,0);-webkit-transform:matrix(0.281863,-0.004228,0.003750,0.249972,0,0);}
.mb_c00413{transform:matrix(0.284243,-0.002558,0.002250,0.249990,0,0);-ms-transform:matrix(0.284243,-0.002558,0.002250,0.249990,0,0);-webkit-transform:matrix(0.284243,-0.002558,0.002250,0.249990,0,0);}
.m72_c00413{transform:matrix(0.284605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284605,0.000000,0.000000,0.250000,0,0);}
.m5d_c00413{transform:matrix(0.284928,-0.004274,0.003750,0.249972,0,0);-ms-transform:matrix(0.284928,-0.004274,0.003750,0.249972,0,0);-webkit-transform:matrix(0.284928,-0.004274,0.003750,0.249972,0,0);}
.m47_c00413{transform:matrix(0.285590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285590,0.000000,0.000000,0.250000,0,0);}
.m66_c00413{transform:matrix(0.287908,-0.004319,0.003750,0.249972,0,0);-ms-transform:matrix(0.287908,-0.004319,0.003750,0.249972,0,0);-webkit-transform:matrix(0.287908,-0.004319,0.003750,0.249972,0,0);}
.m13_c00413{transform:matrix(0.289893,-0.002609,0.002250,0.249990,0,0);-ms-transform:matrix(0.289893,-0.002609,0.002250,0.249990,0,0);-webkit-transform:matrix(0.289893,-0.002609,0.002250,0.249990,0,0);}
.m2a_c00413{transform:matrix(0.291233,-0.002621,0.002250,0.249990,0,0);-ms-transform:matrix(0.291233,-0.002621,0.002250,0.249990,0,0);-webkit-transform:matrix(0.291233,-0.002621,0.002250,0.249990,0,0);}
.m3b_c00413{transform:matrix(0.291458,-0.002623,0.002250,0.249990,0,0);-ms-transform:matrix(0.291458,-0.002623,0.002250,0.249990,0,0);-webkit-transform:matrix(0.291458,-0.002623,0.002250,0.249990,0,0);}
.m70_c00413{transform:matrix(0.292885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292885,0.000000,0.000000,0.250000,0,0);}
.mf_c00413{transform:matrix(0.295433,-0.002659,0.002250,0.249990,0,0);-ms-transform:matrix(0.295433,-0.002659,0.002250,0.249990,0,0);-webkit-transform:matrix(0.295433,-0.002659,0.002250,0.249990,0,0);}
.md_c00413{transform:matrix(0.298548,-0.002687,0.002250,0.249990,0,0);-ms-transform:matrix(0.298548,-0.002687,0.002250,0.249990,0,0);-webkit-transform:matrix(0.298548,-0.002687,0.002250,0.249990,0,0);}
.m44_c00413{transform:matrix(0.299113,-0.002692,0.002250,0.249990,0,0);-ms-transform:matrix(0.299113,-0.002692,0.002250,0.249990,0,0);-webkit-transform:matrix(0.299113,-0.002692,0.002250,0.249990,0,0);}
.m62_c00413{transform:matrix(0.300196,-0.004503,0.003750,0.249972,0,0);-ms-transform:matrix(0.300196,-0.004503,0.003750,0.249972,0,0);-webkit-transform:matrix(0.300196,-0.004503,0.003750,0.249972,0,0);}
.m2f_c00413{transform:matrix(0.301163,-0.002710,0.002250,0.249990,0,0);-ms-transform:matrix(0.301163,-0.002710,0.002250,0.249990,0,0);-webkit-transform:matrix(0.301163,-0.002710,0.002250,0.249990,0,0);}
.m4b_c00413{transform:matrix(0.301255,-0.001808,0.001500,0.249996,0,0);-ms-transform:matrix(0.301255,-0.001808,0.001500,0.249996,0,0);-webkit-transform:matrix(0.301255,-0.001808,0.001500,0.249996,0,0);}
.m77_c00413{transform:matrix(0.303770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303770,0.000000,0.000000,0.250000,0,0);}
.m12_c00413{transform:matrix(0.309297,-0.002784,0.002250,0.249990,0,0);-ms-transform:matrix(0.309297,-0.002784,0.002250,0.249990,0,0);-webkit-transform:matrix(0.309297,-0.002784,0.002250,0.249990,0,0);}
.m6b_c00413{transform:matrix(0.310410,-0.004656,0.003750,0.249972,0,0);-ms-transform:matrix(0.310410,-0.004656,0.003750,0.249972,0,0);-webkit-transform:matrix(0.310410,-0.004656,0.003750,0.249972,0,0);}
.m37_c00413{transform:matrix(0.310432,-0.002794,0.002250,0.249990,0,0);-ms-transform:matrix(0.310432,-0.002794,0.002250,0.249990,0,0);-webkit-transform:matrix(0.310432,-0.002794,0.002250,0.249990,0,0);}
.m39_c00413{transform:matrix(0.310942,-0.002798,0.002250,0.249990,0,0);-ms-transform:matrix(0.310942,-0.002798,0.002250,0.249990,0,0);-webkit-transform:matrix(0.310942,-0.002798,0.002250,0.249990,0,0);}
.mc_c00413{transform:matrix(0.312397,-0.002812,0.002250,0.249990,0,0);-ms-transform:matrix(0.312397,-0.002812,0.002250,0.249990,0,0);-webkit-transform:matrix(0.312397,-0.002812,0.002250,0.249990,0,0);}
.m34_c00413{transform:matrix(0.314302,-0.002829,0.002250,0.249990,0,0);-ms-transform:matrix(0.314302,-0.002829,0.002250,0.249990,0,0);-webkit-transform:matrix(0.314302,-0.002829,0.002250,0.249990,0,0);}
.m33_c00413{transform:matrix(0.314682,-0.002832,0.002250,0.249990,0,0);-ms-transform:matrix(0.314682,-0.002832,0.002250,0.249990,0,0);-webkit-transform:matrix(0.314682,-0.002832,0.002250,0.249990,0,0);}
.m2c_c00413{transform:matrix(0.320307,-0.002883,0.002250,0.249990,0,0);-ms-transform:matrix(0.320307,-0.002883,0.002250,0.249990,0,0);-webkit-transform:matrix(0.320307,-0.002883,0.002250,0.249990,0,0);}
.m53_c00413{transform:matrix(0.324599,-0.001948,0.001500,0.249996,0,0);-ms-transform:matrix(0.324599,-0.001948,0.001500,0.249996,0,0);-webkit-transform:matrix(0.324599,-0.001948,0.001500,0.249996,0,0);}
.m14_c00413{transform:matrix(0.335811,-0.003022,0.002250,0.249990,0,0);-ms-transform:matrix(0.335811,-0.003022,0.002250,0.249990,0,0);-webkit-transform:matrix(0.335811,-0.003022,0.002250,0.249990,0,0);}
.m4f_c00413{transform:matrix(0.336204,-0.002017,0.001500,0.249996,0,0);-ms-transform:matrix(0.336204,-0.002017,0.001500,0.249996,0,0);-webkit-transform:matrix(0.336204,-0.002017,0.001500,0.249996,0,0);}
.m48_c00413{transform:matrix(0.349584,-0.002098,0.001500,0.249996,0,0);-ms-transform:matrix(0.349584,-0.002098,0.001500,0.249996,0,0);-webkit-transform:matrix(0.349584,-0.002098,0.001500,0.249996,0,0);}
.m11_c00413{transform:matrix(0.349621,-0.003147,0.002250,0.249990,0,0);-ms-transform:matrix(0.349621,-0.003147,0.002250,0.249990,0,0);-webkit-transform:matrix(0.349621,-0.003147,0.002250,0.249990,0,0);}
.m68_c00413{transform:matrix(0.363519,-0.005453,0.003750,0.249972,0,0);-ms-transform:matrix(0.363519,-0.005453,0.003750,0.249972,0,0);-webkit-transform:matrix(0.363519,-0.005453,0.003750,0.249972,0,0);}
.m75_c00413{transform:matrix(0.371215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371215,0.000000,0.000000,0.250000,0,0);}
.m1d_c00413{transform:matrix(0.387894,-0.003491,0.002250,0.249990,0,0);-ms-transform:matrix(0.387894,-0.003491,0.002250,0.249990,0,0);-webkit-transform:matrix(0.387894,-0.003491,0.002250,0.249990,0,0);}
.m58_c00413{transform:matrix(0.390006,-0.005850,0.003750,0.249972,0,0);-ms-transform:matrix(0.390006,-0.005850,0.003750,0.249972,0,0);-webkit-transform:matrix(0.390006,-0.005850,0.003750,0.249972,0,0);}
.m6_c00413{transform:matrix(0.392294,-0.003531,0.002250,0.249990,0,0);-ms-transform:matrix(0.392294,-0.003531,0.002250,0.249990,0,0);-webkit-transform:matrix(0.392294,-0.003531,0.002250,0.249990,0,0);}
.m5_c00413{transform:matrix(0.410008,-0.003690,0.002250,0.249990,0,0);-ms-transform:matrix(0.410008,-0.003690,0.002250,0.249990,0,0);-webkit-transform:matrix(0.410008,-0.003690,0.002250,0.249990,0,0);}
.m46_c00413{transform:matrix(0.412500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412500,0.000000,0.000000,0.250000,0,0);}
.m57_c00413{transform:matrix(0.433336,-0.006500,0.003750,0.249972,0,0);-ms-transform:matrix(0.433336,-0.006500,0.003750,0.249972,0,0);-webkit-transform:matrix(0.433336,-0.006500,0.003750,0.249972,0,0);}
.m56_c00413{transform:matrix(0.447187,-0.002683,0.001500,0.249996,0,0);-ms-transform:matrix(0.447187,-0.002683,0.001500,0.249996,0,0);-webkit-transform:matrix(0.447187,-0.002683,0.001500,0.249996,0,0);}
.m76_c00413{transform:matrix(0.489800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.489800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.489800,0.000000,0.000000,0.250000,0,0);}
.m3a_c00413{transform:matrix(0.491335,-0.004422,0.002250,0.249990,0,0);-ms-transform:matrix(0.491335,-0.004422,0.002250,0.249990,0,0);-webkit-transform:matrix(0.491335,-0.004422,0.002250,0.249990,0,0);}
.m55_c00413{transform:matrix(0.647548,-0.003885,0.001500,0.249996,0,0);-ms-transform:matrix(0.647548,-0.003885,0.001500,0.249996,0,0);-webkit-transform:matrix(0.647548,-0.003885,0.001500,0.249996,0,0);}
.m61_c00413{transform:matrix(0.759740,-0.011396,0.003750,0.249972,0,0);-ms-transform:matrix(0.759740,-0.011396,0.003750,0.249972,0,0);-webkit-transform:matrix(0.759740,-0.011396,0.003750,0.249972,0,0);}
.m60_c00413{transform:matrix(0.843600,-0.012654,0.003750,0.249972,0,0);-ms-transform:matrix(0.843600,-0.012654,0.003750,0.249972,0,0);-webkit-transform:matrix(0.843600,-0.012654,0.003750,0.249972,0,0);}
.m6e_c00413{transform:matrix(0.986779,-0.014802,0.003750,0.249972,0,0);-ms-transform:matrix(0.986779,-0.014802,0.003750,0.249972,0,0);-webkit-transform:matrix(0.986779,-0.014802,0.003750,0.249972,0,0);}
.m74_c00413{transform:matrix(1.136690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.136690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.136690,0.000000,0.000000,0.250000,0,0);}
.m73_c00413{transform:matrix(1.213340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.213340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.213340,0.000000,0.000000,0.250000,0,0);}
.m6f_c00413{transform:matrix(1.454165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.454165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.454165,0.000000,0.000000,0.250000,0,0);}
.v0_c00413{vertical-align:0.000000px;}
.ls0_c00413{letter-spacing:0.000000px;}
.sc__c00413{text-shadow:none;}
.sc0_c00413{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__c00413{-webkit-text-stroke:0px transparent;}
.sc0_c00413{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00413{word-spacing:0.000000px;}
.fc0_c00413{color:transparent;}
.fs8_c00413{font-size:18.000000px;}
.fs5_c00413{font-size:24.000000px;}
.fs9_c00413{font-size:42.000000px;}
.fs1_c00413{font-size:72.002916px;}
.fs6_c00413{font-size:78.001404px;}
.fs3_c00413{font-size:78.003159px;}
.fs0_c00413{font-size:78.008775px;}
.fs2_c00413{font-size:84.003402px;}
.fs7_c00413{font-size:96.010799px;}
.fs4_c00413{font-size:114.004617px;}
.y0_c00413{bottom:0.000000px;}
.y72_c00413{bottom:19.170000px;}
.y71_c00413{bottom:40.230000px;}
.y70_c00413{bottom:386.370000px;}
.y6f_c00413{bottom:408.240000px;}
.y6c_c00413{bottom:767.588715px;}
.y6d_c00413{bottom:768.729203px;}
.y6e_c00413{bottom:769.079625px;}
.y62_c00413{bottom:801.359880px;}
.y63_c00413{bottom:802.412505px;}
.y64_c00413{bottom:804.013800px;}
.y65_c00413{bottom:804.880973px;}
.y66_c00413{bottom:805.260383px;}
.y67_c00413{bottom:806.652765px;}
.y68_c00413{bottom:807.549968px;}
.y69_c00413{bottom:808.228583px;}
.y6a_c00413{bottom:809.322165px;}
.y6b_c00413{bottom:809.963145px;}
.y57_c00413{bottom:837.408000px;}
.y58_c00413{bottom:838.066507px;}
.y59_c00413{bottom:838.806465px;}
.y5a_c00413{bottom:839.551710px;}
.y5b_c00413{bottom:840.090990px;}
.y5c_c00413{bottom:840.896940px;}
.y5d_c00413{bottom:841.343003px;}
.y5e_c00413{bottom:842.224530px;}
.y5f_c00413{bottom:842.888528px;}
.y60_c00413{bottom:844.232588px;}
.y61_c00413{bottom:846.799320px;}
.y48_c00413{bottom:946.515000px;}
.y49_c00413{bottom:947.035056px;}
.y4a_c00413{bottom:947.307279px;}
.y4b_c00413{bottom:947.516169px;}
.y4c_c00413{bottom:947.775495px;}
.y4d_c00413{bottom:948.235602px;}
.y4e_c00413{bottom:948.436455px;}
.y4f_c00413{bottom:948.741033px;}
.y50_c00413{bottom:948.963369px;}
.y51_c00413{bottom:949.439604px;}
.y52_c00413{bottom:949.696824px;}
.y53_c00413{bottom:950.035449px;}
.y54_c00413{bottom:950.301138px;}
.y55_c00413{bottom:950.495700px;}
.y56_c00413{bottom:950.876319px;}
.y47_c00413{bottom:971.835000px;}
.y3e_c00413{bottom:974.655688px;}
.y3f_c00413{bottom:976.150021px;}
.y40_c00413{bottom:977.020599px;}
.y41_c00413{bottom:978.163203px;}
.y42_c00413{bottom:980.214676px;}
.y43_c00413{bottom:982.207206px;}
.y44_c00413{bottom:983.532894px;}
.y45_c00413{bottom:985.231233px;}
.y46_c00413{bottom:986.184769px;}
.y30_c00413{bottom:1015.453036px;}
.y31_c00413{bottom:1016.160070px;}
.y32_c00413{bottom:1016.934864px;}
.y33_c00413{bottom:1017.321430px;}
.y34_c00413{bottom:1017.773109px;}
.y35_c00413{bottom:1019.394439px;}
.y36_c00413{bottom:1020.278969px;}
.y37_c00413{bottom:1020.638752px;}
.y38_c00413{bottom:1021.687784px;}
.y39_c00413{bottom:1023.276213px;}
.y3a_c00413{bottom:1023.635592px;}
.y3b_c00413{bottom:1025.186097px;}
.y3c_c00413{bottom:1025.587708px;}
.y3d_c00413{bottom:1026.822135px;}
.y21_c00413{bottom:1051.648588px;}
.y22_c00413{bottom:1051.985548px;}
.y23_c00413{bottom:1053.023844px;}
.y24_c00413{bottom:1054.149370px;}
.y25_c00413{bottom:1054.614888px;}
.y26_c00413{bottom:1055.342788px;}
.y27_c00413{bottom:1056.193521px;}
.y28_c00413{bottom:1056.497757px;}
.y29_c00413{bottom:1057.490715px;}
.y2a_c00413{bottom:1058.150940px;}
.y2b_c00413{bottom:1058.664037px;}
.y2c_c00413{bottom:1059.147720px;}
.y2d_c00413{bottom:1059.808485px;}
.y2e_c00413{bottom:1060.317895px;}
.y2f_c00413{bottom:1061.322603px;}
.y15_c00413{bottom:1087.831345px;}
.y16_c00413{bottom:1088.720407px;}
.y17_c00413{bottom:1089.122322px;}
.y18_c00413{bottom:1089.912310px;}
.y19_c00413{bottom:1090.590841px;}
.y1a_c00413{bottom:1091.158915px;}
.y1b_c00413{bottom:1092.036040px;}
.y1c_c00413{bottom:1092.845932px;}
.y1d_c00413{bottom:1093.222353px;}
.y1e_c00413{bottom:1094.104690px;}
.y1f_c00413{bottom:1094.694936px;}
.y20_c00413{bottom:1095.765159px;}
.y6_c00413{bottom:1133.190000px;}
.y7_c00413{bottom:1133.748805px;}
.y8_c00413{bottom:1134.208210px;}
.y9_c00413{bottom:1134.402799px;}
.ya_c00413{bottom:1135.214365px;}
.yb_c00413{bottom:1135.403986px;}
.yc_c00413{bottom:1135.912005px;}
.yd_c00413{bottom:1136.189457px;}
.ye_c00413{bottom:1136.484068px;}
.yf_c00413{bottom:1137.144339px;}
.y10_c00413{bottom:1137.587517px;}
.y11_c00413{bottom:1138.283807px;}
.y12_c00413{bottom:1138.527644px;}
.y13_c00413{bottom:1138.982121px;}
.y14_c00413{bottom:1139.494810px;}
.y1_c00413{bottom:1193.403000px;}
.y2_c00413{bottom:1193.727135px;}
.y3_c00413{bottom:1194.231630px;}
.y4_c00413{bottom:1195.610183px;}
.y5_c00413{bottom:1196.878057px;}
.ha_c00413{height:18.000000px;}
.h7_c00413{height:24.000000px;}
.hb_c00413{height:42.000000px;}
.h3_c00413{height:72.002916px;}
.h8_c00413{height:78.001404px;}
.h5_c00413{height:78.003159px;}
.h2_c00413{height:78.008775px;}
.h4_c00413{height:84.003402px;}
.h9_c00413{height:96.010799px;}
.h6_c00413{height:114.004617px;}
.h1_c00413{height:1251.000000px;}
.h0_c00413{height:1251.150000px;}
.w0_c00413{width:915.000000px;}
.x0_c00413{left:0.000000px;}
.x62_c00413{left:2.160000px;}
.x63_c00413{left:3.240000px;}
.x65_c00413{left:5.400000px;}
.x64_c00413{left:6.480000px;}
.x36_c00413{left:24.996478px;}
.x3f_c00413{left:35.439000px;}
.x6_c00413{left:39.994500px;}
.x15_c00413{left:57.553617px;}
.x3d_c00413{left:70.470000px;}
.x20_c00413{left:74.407601px;}
.x3e_c00413{left:85.590000px;}
.x4c_c00413{left:92.239500px;}
.x21_c00413{left:96.846386px;}
.x7_c00413{left:102.084000px;}
.x37_c00413{left:108.026755px;}
.x2c_c00413{left:118.728561px;}
.x40_c00413{left:122.115000px;}
.x16_c00413{left:131.669619px;}
.x4d_c00413{left:136.140000px;}
.x56_c00413{left:148.184685px;}
.x8_c00413{left:153.129000px;}
.x38_c00413{left:156.420340px;}
.x17_c00413{left:165.159214px;}
.x2d_c00413{left:167.147010px;}
.x9_c00413{left:174.750000px;}
.x4e_c00413{left:185.470500px;}
.x2e_c00413{left:191.263984px;}
.x41_c00413{left:202.300500px;}
.x57_c00413{left:213.958695px;}
.x2f_c00413{left:219.448702px;}
.x18_c00413{left:230.933932px;}
.x4f_c00413{left:235.153500px;}
.x22_c00413{left:241.096596px;}
.x42_c00413{left:245.521500px;}
.xa_c00413{left:264.924000px;}
.x50_c00413{left:271.105500px;}
.x23_c00413{left:272.152422px;}
.xb_c00413{left:285.993000px;}
.x19_c00413{left:287.491407px;}
.x58_c00413{left:314.010187px;}
.x24_c00413{left:320.694303px;}
.x43_c00413{left:322.206000px;}
.x51_c00413{left:324.835500px;}
.x1a_c00413{left:334.776124px;}
.xc_c00413{left:342.439500px;}
.x52_c00413{left:354.573000px;}
.x44_c00413{left:355.681500px;}
.x59_c00413{left:368.220877px;}
.xd_c00413{left:373.267500px;}
.x30_c00413{left:376.034334px;}
.x25_c00413{left:377.383739px;}
.x5a_c00413{left:391.914517px;}
.x1_c00413{left:396.844500px;}
.x31_c00413{left:398.508916px;}
.xe_c00413{left:406.002000px;}
.x1b_c00413{left:407.899154px;}
.x53_c00413{left:413.341500px;}
.x2_c00413{left:418.453500px;}
.x45_c00413{left:443.500500px;}
.x39_c00413{left:444.519999px;}
.x3_c00413{left:452.086500px;}
.x54_c00413{left:457.608000px;}
.x26_c00413{left:463.845068px;}
.x1c_c00413{left:475.385331px;}
.xf_c00413{left:479.365500px;}
.x1d_c00413{left:506.708981px;}
.x27_c00413{left:507.867692px;}
.x3a_c00413{left:518.146032px;}
.x46_c00413{left:522.873000px;}
.x10_c00413{left:528.607500px;}
.x5b_c00413{left:535.051380px;}
.x28_c00413{left:542.043342px;}
.x4_c00413{left:543.990000px;}
.x55_c00413{left:547.212000px;}
.x5f_c00413{left:559.372635px;}
.x32_c00413{left:563.383035px;}
.x47_c00413{left:565.743000px;}
.x29_c00413{left:574.284101px;}
.x5c_c00413{left:577.491750px;}
.x1e_c00413{left:580.244496px;}
.x33_c00413{left:585.812617px;}
.x60_c00413{left:601.597530px;}
.x11_c00413{left:605.973000px;}
.x3b_c00413{left:612.509391px;}
.x61_c00413{left:614.556690px;}
.x2a_c00413{left:618.366725px;}
.x48_c00413{left:622.180500px;}
.x5_c00413{left:628.515000px;}
.x12_c00413{left:633.066000px;}
.x5d_c00413{left:645.796215px;}
.x2b_c00413{left:652.299389px;}
.x3c_c00413{left:665.453598px;}
.x49_c00413{left:666.462000px;}
.x13_c00413{left:683.563500px;}
.x5e_c00413{left:685.827607px;}
.x4a_c00413{left:698.889000px;}
.x34_c00413{left:707.873436px;}
.x1f_c00413{left:718.737270px;}
.x14_c00413{left:740.529000px;}
.x4b_c00413{left:762.325500px;}
.x35_c00413{left:785.027076px;}
@media print{
.v0_c00413{vertical-align:0.000000pt;}
.ls0_c00413{letter-spacing:0.000000pt;}
.ws0_c00413{word-spacing:0.000000pt;}
.fs8_c00413{font-size:16.000000pt;}
.fs5_c00413{font-size:21.333333pt;}
.fs9_c00413{font-size:37.333333pt;}
.fs1_c00413{font-size:64.002592pt;}
.fs6_c00413{font-size:69.334581pt;}
.fs3_c00413{font-size:69.336141pt;}
.fs0_c00413{font-size:69.341133pt;}
.fs2_c00413{font-size:74.669691pt;}
.fs7_c00413{font-size:85.342933pt;}
.fs4_c00413{font-size:101.337437pt;}
.y0_c00413{bottom:0.000000pt;}
.y72_c00413{bottom:17.040000pt;}
.y71_c00413{bottom:35.760000pt;}
.y70_c00413{bottom:343.440000pt;}
.y6f_c00413{bottom:362.880000pt;}
.y6c_c00413{bottom:682.301080pt;}
.y6d_c00413{bottom:683.314847pt;}
.y6e_c00413{bottom:683.626333pt;}
.y62_c00413{bottom:712.319893pt;}
.y63_c00413{bottom:713.255560pt;}
.y64_c00413{bottom:714.678933pt;}
.y65_c00413{bottom:715.449753pt;}
.y66_c00413{bottom:715.787007pt;}
.y67_c00413{bottom:717.024680pt;}
.y68_c00413{bottom:717.822193pt;}
.y69_c00413{bottom:718.425407pt;}
.y6a_c00413{bottom:719.397480pt;}
.y6b_c00413{bottom:719.967240pt;}
.y57_c00413{bottom:744.362667pt;}
.y58_c00413{bottom:744.948007pt;}
.y59_c00413{bottom:745.605747pt;}
.y5a_c00413{bottom:746.268187pt;}
.y5b_c00413{bottom:746.747547pt;}
.y5c_c00413{bottom:747.463947pt;}
.y5d_c00413{bottom:747.860447pt;}
.y5e_c00413{bottom:748.644027pt;}
.y5f_c00413{bottom:749.234247pt;}
.y60_c00413{bottom:750.428967pt;}
.y61_c00413{bottom:752.710507pt;}
.y48_c00413{bottom:841.346667pt;}
.y49_c00413{bottom:841.808939pt;}
.y4a_c00413{bottom:842.050915pt;}
.y4b_c00413{bottom:842.236595pt;}
.y4c_c00413{bottom:842.467107pt;}
.y4d_c00413{bottom:842.876091pt;}
.y4e_c00413{bottom:843.054627pt;}
.y4f_c00413{bottom:843.325363pt;}
.y50_c00413{bottom:843.522995pt;}
.y51_c00413{bottom:843.946315pt;}
.y52_c00413{bottom:844.174955pt;}
.y53_c00413{bottom:844.475955pt;}
.y54_c00413{bottom:844.712123pt;}
.y55_c00413{bottom:844.885067pt;}
.y56_c00413{bottom:845.223395pt;}
.y47_c00413{bottom:863.853333pt;}
.y3e_c00413{bottom:866.360612pt;}
.y3f_c00413{bottom:867.688908pt;}
.y40_c00413{bottom:868.462755pt;}
.y41_c00413{bottom:869.478403pt;}
.y42_c00413{bottom:871.301935pt;}
.y43_c00413{bottom:873.073072pt;}
.y44_c00413{bottom:874.251461pt;}
.y45_c00413{bottom:875.761096pt;}
.y46_c00413{bottom:876.608684pt;}
.y30_c00413{bottom:902.624921pt;}
.y31_c00413{bottom:903.253396pt;}
.y32_c00413{bottom:903.942101pt;}
.y33_c00413{bottom:904.285716pt;}
.y34_c00413{bottom:904.687208pt;}
.y35_c00413{bottom:906.128391pt;}
.y36_c00413{bottom:906.914639pt;}
.y37_c00413{bottom:907.234447pt;}
.y38_c00413{bottom:908.166919pt;}
.y39_c00413{bottom:909.578856pt;}
.y3a_c00413{bottom:909.898304pt;}
.y3b_c00413{bottom:911.276531pt;}
.y3c_c00413{bottom:911.633519pt;}
.y3d_c00413{bottom:912.730787pt;}
.y21_c00413{bottom:934.798745pt;}
.y22_c00413{bottom:935.098265pt;}
.y23_c00413{bottom:936.021195pt;}
.y24_c00413{bottom:937.021663pt;}
.y25_c00413{bottom:937.435456pt;}
.y26_c00413{bottom:938.082479pt;}
.y27_c00413{bottom:938.838685pt;}
.y28_c00413{bottom:939.109117pt;}
.y29_c00413{bottom:939.991747pt;}
.y2a_c00413{bottom:940.578613pt;}
.y2b_c00413{bottom:941.034700pt;}
.y2c_c00413{bottom:941.464640pt;}
.y2d_c00413{bottom:942.051987pt;}
.y2e_c00413{bottom:942.504796pt;}
.y2f_c00413{bottom:943.397869pt;}
.y15_c00413{bottom:966.961196pt;}
.y16_c00413{bottom:967.751473pt;}
.y17_c00413{bottom:968.108731pt;}
.y18_c00413{bottom:968.810943pt;}
.y19_c00413{bottom:969.414081pt;}
.y1a_c00413{bottom:969.919036pt;}
.y1b_c00413{bottom:970.698703pt;}
.y1c_c00413{bottom:971.418607pt;}
.y1d_c00413{bottom:971.753203pt;}
.y1e_c00413{bottom:972.537503pt;}
.y1f_c00413{bottom:973.062165pt;}
.y20_c00413{bottom:974.013475pt;}
.y6_c00413{bottom:1007.280000pt;}
.y7_c00413{bottom:1007.776716pt;}
.y8_c00413{bottom:1008.185076pt;}
.y9_c00413{bottom:1008.358044pt;}
.ya_c00413{bottom:1009.079436pt;}
.yb_c00413{bottom:1009.247988pt;}
.yc_c00413{bottom:1009.699560pt;}
.yd_c00413{bottom:1009.946184pt;}
.ye_c00413{bottom:1010.208060pt;}
.yf_c00413{bottom:1010.794968pt;}
.y10_c00413{bottom:1011.188904pt;}
.y11_c00413{bottom:1011.807828pt;}
.y12_c00413{bottom:1012.024572pt;}
.y13_c00413{bottom:1012.428552pt;}
.y14_c00413{bottom:1012.884276pt;}
.y1_c00413{bottom:1060.802667pt;}
.y2_c00413{bottom:1061.090787pt;}
.y3_c00413{bottom:1061.539227pt;}
.y4_c00413{bottom:1062.764607pt;}
.y5_c00413{bottom:1063.891607pt;}
.ha_c00413{height:16.000000pt;}
.h7_c00413{height:21.333333pt;}
.hb_c00413{height:37.333333pt;}
.h3_c00413{height:64.002592pt;}
.h8_c00413{height:69.334581pt;}
.h5_c00413{height:69.336141pt;}
.h2_c00413{height:69.341133pt;}
.h4_c00413{height:74.669691pt;}
.h9_c00413{height:85.342933pt;}
.h6_c00413{height:101.337437pt;}
.h1_c00413{height:1112.000000pt;}
.h0_c00413{height:1112.133333pt;}
.w0_c00413{width:813.333333pt;}
.x0_c00413{left:0.000000pt;}
.x62_c00413{left:1.920000pt;}
.x63_c00413{left:2.880000pt;}
.x65_c00413{left:4.800000pt;}
.x64_c00413{left:5.760000pt;}
.x36_c00413{left:22.219092pt;}
.x3f_c00413{left:31.501333pt;}
.x6_c00413{left:35.550667pt;}
.x15_c00413{left:51.158771pt;}
.x3d_c00413{left:62.640000pt;}
.x20_c00413{left:66.140089pt;}
.x3e_c00413{left:76.080000pt;}
.x4c_c00413{left:81.990667pt;}
.x21_c00413{left:86.085676pt;}
.x7_c00413{left:90.741333pt;}
.x37_c00413{left:96.023783pt;}
.x2c_c00413{left:105.536499pt;}
.x40_c00413{left:108.546667pt;}
.x16_c00413{left:117.039661pt;}
.x4d_c00413{left:121.013333pt;}
.x56_c00413{left:131.719720pt;}
.x8_c00413{left:136.114667pt;}
.x38_c00413{left:139.040303pt;}
.x17_c00413{left:146.808191pt;}
.x2d_c00413{left:148.575120pt;}
.x9_c00413{left:155.333333pt;}
.x4e_c00413{left:164.862667pt;}
.x2e_c00413{left:170.012431pt;}
.x41_c00413{left:179.822667pt;}
.x57_c00413{left:190.185507pt;}
.x2f_c00413{left:195.065513pt;}
.x18_c00413{left:205.274607pt;}
.x4f_c00413{left:209.025333pt;}
.x22_c00413{left:214.308085pt;}
.x42_c00413{left:218.241333pt;}
.xa_c00413{left:235.488000pt;}
.x50_c00413{left:240.982667pt;}
.x23_c00413{left:241.913264pt;}
.xb_c00413{left:254.216000pt;}
.x19_c00413{left:255.547917pt;}
.x58_c00413{left:279.120167pt;}
.x24_c00413{left:285.061603pt;}
.x43_c00413{left:286.405333pt;}
.x51_c00413{left:288.742667pt;}
.x1a_c00413{left:297.578777pt;}
.xc_c00413{left:304.390667pt;}
.x52_c00413{left:315.176000pt;}
.x44_c00413{left:316.161333pt;}
.x59_c00413{left:327.307447pt;}
.xd_c00413{left:331.793333pt;}
.x30_c00413{left:334.252741pt;}
.x25_c00413{left:335.452212pt;}
.x5a_c00413{left:348.368460pt;}
.x1_c00413{left:352.750667pt;}
.x31_c00413{left:354.230148pt;}
.xe_c00413{left:360.890667pt;}
.x1b_c00413{left:362.577025pt;}
.x53_c00413{left:367.414667pt;}
.x2_c00413{left:371.958667pt;}
.x45_c00413{left:394.222667pt;}
.x39_c00413{left:395.128888pt;}
.x3_c00413{left:401.854667pt;}
.x54_c00413{left:406.762667pt;}
.x26_c00413{left:412.306727pt;}
.x1c_c00413{left:422.564739pt;}
.xf_c00413{left:426.102667pt;}
.x1d_c00413{left:450.407983pt;}
.x27_c00413{left:451.437948pt;}
.x3a_c00413{left:460.574251pt;}
.x46_c00413{left:464.776000pt;}
.x10_c00413{left:469.873333pt;}
.x5b_c00413{left:475.601227pt;}
.x28_c00413{left:481.816304pt;}
.x4_c00413{left:483.546667pt;}
.x55_c00413{left:486.410667pt;}
.x5f_c00413{left:497.220120pt;}
.x32_c00413{left:500.784920pt;}
.x47_c00413{left:502.882667pt;}
.x29_c00413{left:510.474756pt;}
.x5c_c00413{left:513.326000pt;}
.x1e_c00413{left:515.772885pt;}
.x33_c00413{left:520.722327pt;}
.x60_c00413{left:534.753360pt;}
.x11_c00413{left:538.642667pt;}
.x3b_c00413{left:544.452792pt;}
.x61_c00413{left:546.272613pt;}
.x2a_c00413{left:549.659311pt;}
.x48_c00413{left:553.049333pt;}
.x5_c00413{left:558.680000pt;}
.x12_c00413{left:562.725333pt;}
.x5d_c00413{left:574.041080pt;}
.x2b_c00413{left:579.821679pt;}
.x3c_c00413{left:591.514309pt;}
.x49_c00413{left:592.410667pt;}
.x13_c00413{left:607.612000pt;}
.x5e_c00413{left:609.624540pt;}
.x4a_c00413{left:621.234667pt;}
.x34_c00413{left:629.220832pt;}
.x1f_c00413{left:638.877573pt;}
.x14_c00413{left:658.248000pt;}
.x4b_c00413{left:677.622667pt;}
.x35_c00413{left:697.801845pt;}
}





/* 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_c00414 {
    display:none;
  }
  .loading-indicator_c00414.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00414 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_c00414 { 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_c00414" -> "#page-container .classname_c00414")
 */
.pf_c00414 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00414 { /* 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_c00414.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00414 { /* 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_c00414 { /* 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_c00414 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00414 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00414 {overflow:visible;}
  }
}
.c_c00414 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00414 { /* 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_c00414:after { /* webkit #35443 */
  content: '';
}
.t_c00414:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00414 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 */
}
.__c00414 { /* 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_c00414 { /* info for Javascript */
  display:none;
}
.l_c00414 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00414 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00414 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00414: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_c00414 {
    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_c00414.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00414.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_c00414 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00414{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00414;src:url('chunks/assets/font_c605e72f209fc835e906f064.woff2')format("woff");}.ff1_c00414{font-family:ff1_c00414;line-height:1.000000;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;}
.m54_c00414{transform:matrix(0.008484,0.000153,-0.004499,0.249960,0,0);-ms-transform:matrix(0.008484,0.000153,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.008484,0.000153,-0.004499,0.249960,0,0);}
.m2_c00414{transform:matrix(0.110960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110960,0.000000,0.000000,0.250000,0,0);}
.m11_c00414{transform:matrix(0.141732,0.002551,-0.004499,0.249960,0,0);-ms-transform:matrix(0.141732,0.002551,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.141732,0.002551,-0.004499,0.249960,0,0);}
.m1b_c00414{transform:matrix(0.157579,0.002836,-0.004499,0.249960,0,0);-ms-transform:matrix(0.157579,0.002836,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.157579,0.002836,-0.004499,0.249960,0,0);}
.m27_c00414{transform:matrix(0.161989,0.002916,-0.004499,0.249960,0,0);-ms-transform:matrix(0.161989,0.002916,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.161989,0.002916,-0.004499,0.249960,0,0);}
.m35_c00414{transform:matrix(0.162799,0.002930,-0.004499,0.249960,0,0);-ms-transform:matrix(0.162799,0.002930,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.162799,0.002930,-0.004499,0.249960,0,0);}
.m0_c00414{transform:matrix(0.163590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163590,0.000000,0.000000,0.250000,0,0);}
.m24_c00414{transform:matrix(0.165913,0.002986,-0.004499,0.249960,0,0);-ms-transform:matrix(0.165913,0.002986,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.165913,0.002986,-0.004499,0.249960,0,0);}
.m5a_c00414{transform:matrix(0.166036,0.002823,-0.004249,0.249964,0,0);-ms-transform:matrix(0.166036,0.002823,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.166036,0.002823,-0.004249,0.249964,0,0);}
.m10d_c00414{transform:matrix(0.167196,0.002842,-0.004249,0.249964,0,0);-ms-transform:matrix(0.167196,0.002842,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.167196,0.002842,-0.004249,0.249964,0,0);}
.m106_c00414{transform:matrix(0.168986,0.002873,-0.004249,0.249964,0,0);-ms-transform:matrix(0.168986,0.002873,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.168986,0.002873,-0.004249,0.249964,0,0);}
.m36_c00414{transform:matrix(0.169733,0.003055,-0.004499,0.249960,0,0);-ms-transform:matrix(0.169733,0.003055,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.169733,0.003055,-0.004499,0.249960,0,0);}
.m5d_c00414{transform:matrix(0.171095,0.002909,-0.004249,0.249964,0,0);-ms-transform:matrix(0.171095,0.002909,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.171095,0.002909,-0.004249,0.249964,0,0);}
.m39_c00414{transform:matrix(0.171377,0.003085,-0.004499,0.249960,0,0);-ms-transform:matrix(0.171377,0.003085,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.171377,0.003085,-0.004499,0.249960,0,0);}
.m13b_c00414{transform:matrix(0.171775,0.007050,-0.010252,0.249790,0,0);-ms-transform:matrix(0.171775,0.007050,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.171775,0.007050,-0.010252,0.249790,0,0);}
.m58_c00414{transform:matrix(0.172720,0.002936,-0.004249,0.249964,0,0);-ms-transform:matrix(0.172720,0.002936,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.172720,0.002936,-0.004249,0.249964,0,0);}
.m23_c00414{transform:matrix(0.172812,0.003111,-0.004499,0.249960,0,0);-ms-transform:matrix(0.172812,0.003111,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.172812,0.003111,-0.004499,0.249960,0,0);}
.m3b_c00414{transform:matrix(0.178071,0.003205,-0.004499,0.249960,0,0);-ms-transform:matrix(0.178071,0.003205,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.178071,0.003205,-0.004499,0.249960,0,0);}
.mfb_c00414{transform:matrix(0.178109,0.003028,-0.004249,0.249964,0,0);-ms-transform:matrix(0.178109,0.003028,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.178109,0.003028,-0.004249,0.249964,0,0);}
.m22_c00414{transform:matrix(0.178161,0.003207,-0.004499,0.249960,0,0);-ms-transform:matrix(0.178161,0.003207,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.178161,0.003207,-0.004499,0.249960,0,0);}
.m1e_c00414{transform:matrix(0.178271,0.003209,-0.004499,0.249960,0,0);-ms-transform:matrix(0.178271,0.003209,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.178271,0.003209,-0.004499,0.249960,0,0);}
.m1d_c00414{transform:matrix(0.178586,0.003215,-0.004499,0.249960,0,0);-ms-transform:matrix(0.178586,0.003215,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.178586,0.003215,-0.004499,0.249960,0,0);}
.m107_c00414{transform:matrix(0.178879,0.003041,-0.004249,0.249964,0,0);-ms-transform:matrix(0.178879,0.003041,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.178879,0.003041,-0.004249,0.249964,0,0);}
.m3e_c00414{transform:matrix(0.179751,0.003236,-0.004499,0.249960,0,0);-ms-transform:matrix(0.179751,0.003236,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.179751,0.003236,-0.004499,0.249960,0,0);}
.m50_c00414{transform:matrix(0.180251,0.003245,-0.004499,0.249960,0,0);-ms-transform:matrix(0.180251,0.003245,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.180251,0.003245,-0.004499,0.249960,0,0);}
.ma8_c00414{transform:matrix(0.180254,0.003064,-0.004249,0.249964,0,0);-ms-transform:matrix(0.180254,0.003064,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.180254,0.003064,-0.004249,0.249964,0,0);}
.m20_c00414{transform:matrix(0.180281,0.003245,-0.004499,0.249960,0,0);-ms-transform:matrix(0.180281,0.003245,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.180281,0.003245,-0.004499,0.249960,0,0);}
.m5b_c00414{transform:matrix(0.180454,0.003068,-0.004249,0.249964,0,0);-ms-transform:matrix(0.180454,0.003068,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.180454,0.003068,-0.004249,0.249964,0,0);}
.m28_c00414{transform:matrix(0.181276,0.003263,-0.004499,0.249960,0,0);-ms-transform:matrix(0.181276,0.003263,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.181276,0.003263,-0.004499,0.249960,0,0);}
.m1c_c00414{transform:matrix(0.182120,0.003278,-0.004499,0.249960,0,0);-ms-transform:matrix(0.182120,0.003278,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.182120,0.003278,-0.004499,0.249960,0,0);}
.m104_c00414{transform:matrix(0.184343,0.003134,-0.004249,0.249964,0,0);-ms-transform:matrix(0.184343,0.003134,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.184343,0.003134,-0.004249,0.249964,0,0);}
.m4f_c00414{transform:matrix(0.184685,0.003324,-0.004499,0.249960,0,0);-ms-transform:matrix(0.184685,0.003324,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.184685,0.003324,-0.004499,0.249960,0,0);}
.m138_c00414{transform:matrix(0.185889,0.007629,-0.010252,0.249790,0,0);-ms-transform:matrix(0.185889,0.007629,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.185889,0.007629,-0.010252,0.249790,0,0);}
.m103_c00414{transform:matrix(0.186928,0.003178,-0.004249,0.249964,0,0);-ms-transform:matrix(0.186928,0.003178,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.186928,0.003178,-0.004249,0.249964,0,0);}
.m76_c00414{transform:matrix(0.187848,0.003193,-0.004249,0.249964,0,0);-ms-transform:matrix(0.187848,0.003193,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.187848,0.003193,-0.004249,0.249964,0,0);}
.m21_c00414{transform:matrix(0.188005,0.003384,-0.004499,0.249960,0,0);-ms-transform:matrix(0.188005,0.003384,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.188005,0.003384,-0.004499,0.249960,0,0);}
.m1f_c00414{transform:matrix(0.188494,0.003393,-0.004499,0.249960,0,0);-ms-transform:matrix(0.188494,0.003393,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.188494,0.003393,-0.004499,0.249960,0,0);}
.mfe_c00414{transform:matrix(0.188578,0.003206,-0.004249,0.249964,0,0);-ms-transform:matrix(0.188578,0.003206,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.188578,0.003206,-0.004249,0.249964,0,0);}
.m26_c00414{transform:matrix(0.189289,0.003407,-0.004499,0.249960,0,0);-ms-transform:matrix(0.189289,0.003407,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.189289,0.003407,-0.004499,0.249960,0,0);}
.m109_c00414{transform:matrix(0.189748,0.003226,-0.004249,0.249964,0,0);-ms-transform:matrix(0.189748,0.003226,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.189748,0.003226,-0.004249,0.249964,0,0);}
.m56_c00414{transform:matrix(0.189948,0.003229,-0.004249,0.249964,0,0);-ms-transform:matrix(0.189948,0.003229,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.189948,0.003229,-0.004249,0.249964,0,0);}
.m5e_c00414{transform:matrix(0.190023,0.003230,-0.004249,0.249964,0,0);-ms-transform:matrix(0.190023,0.003230,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.190023,0.003230,-0.004249,0.249964,0,0);}
.m63_c00414{transform:matrix(0.190158,0.003233,-0.004249,0.249964,0,0);-ms-transform:matrix(0.190158,0.003233,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.190158,0.003233,-0.004249,0.249964,0,0);}
.ma9_c00414{transform:matrix(0.190352,0.003236,-0.004249,0.249964,0,0);-ms-transform:matrix(0.190352,0.003236,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.190352,0.003236,-0.004249,0.249964,0,0);}
.m59_c00414{transform:matrix(0.190677,0.003242,-0.004249,0.249964,0,0);-ms-transform:matrix(0.190677,0.003242,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.190677,0.003242,-0.004249,0.249964,0,0);}
.m61_c00414{transform:matrix(0.190687,0.003242,-0.004249,0.249964,0,0);-ms-transform:matrix(0.190687,0.003242,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.190687,0.003242,-0.004249,0.249964,0,0);}
.m53_c00414{transform:matrix(0.191024,0.003438,-0.004499,0.249960,0,0);-ms-transform:matrix(0.191024,0.003438,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.191024,0.003438,-0.004499,0.249960,0,0);}
.m10f_c00414{transform:matrix(0.191382,0.003253,-0.004249,0.249964,0,0);-ms-transform:matrix(0.191382,0.003253,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.191382,0.003253,-0.004249,0.249964,0,0);}
.me4_c00414{transform:matrix(0.192642,0.003275,-0.004249,0.249964,0,0);-ms-transform:matrix(0.192642,0.003275,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.192642,0.003275,-0.004249,0.249964,0,0);}
.m65_c00414{transform:matrix(0.193127,0.003283,-0.004249,0.249964,0,0);-ms-transform:matrix(0.193127,0.003283,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.193127,0.003283,-0.004249,0.249964,0,0);}
.m41_c00414{transform:matrix(0.193549,0.003484,-0.004499,0.249960,0,0);-ms-transform:matrix(0.193549,0.003484,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.193549,0.003484,-0.004499,0.249960,0,0);}
.m57_c00414{transform:matrix(0.193672,0.003292,-0.004249,0.249964,0,0);-ms-transform:matrix(0.193672,0.003292,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.193672,0.003292,-0.004249,0.249964,0,0);}
.m19_c00414{transform:matrix(0.193739,0.003487,-0.004499,0.249960,0,0);-ms-transform:matrix(0.193739,0.003487,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.193739,0.003487,-0.004499,0.249960,0,0);}
.m6_c00414{transform:matrix(0.194092,0.003300,-0.004249,0.249964,0,0);-ms-transform:matrix(0.194092,0.003300,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.194092,0.003300,-0.004249,0.249964,0,0);}
.mfd_c00414{transform:matrix(0.194402,0.003305,-0.004249,0.249964,0,0);-ms-transform:matrix(0.194402,0.003305,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.194402,0.003305,-0.004249,0.249964,0,0);}
.m110_c00414{transform:matrix(0.194469,0.005251,-0.006748,0.249909,0,0);-ms-transform:matrix(0.194469,0.005251,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.194469,0.005251,-0.006748,0.249909,0,0);}
.m44_c00414{transform:matrix(0.194508,0.003501,-0.004499,0.249960,0,0);-ms-transform:matrix(0.194508,0.003501,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.194508,0.003501,-0.004499,0.249960,0,0);}
.me6_c00414{transform:matrix(0.194512,0.003307,-0.004249,0.249964,0,0);-ms-transform:matrix(0.194512,0.003307,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.194512,0.003307,-0.004249,0.249964,0,0);}
.m9a_c00414{transform:matrix(0.194772,0.003311,-0.004249,0.249964,0,0);-ms-transform:matrix(0.194772,0.003311,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.194772,0.003311,-0.004249,0.249964,0,0);}
.m108_c00414{transform:matrix(0.195007,0.003315,-0.004249,0.249964,0,0);-ms-transform:matrix(0.195007,0.003315,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.195007,0.003315,-0.004249,0.249964,0,0);}
.m11e_c00414{transform:matrix(0.195488,0.005474,-0.006997,0.249902,0,0);-ms-transform:matrix(0.195488,0.005474,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.195488,0.005474,-0.006997,0.249902,0,0);}
.mf1_c00414{transform:matrix(0.195537,0.003324,-0.004249,0.249964,0,0);-ms-transform:matrix(0.195537,0.003324,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.195537,0.003324,-0.004249,0.249964,0,0);}
.mae_c00414{transform:matrix(0.196617,0.003342,-0.004249,0.249964,0,0);-ms-transform:matrix(0.196617,0.003342,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.196617,0.003342,-0.004249,0.249964,0,0);}
.m139_c00414{transform:matrix(0.196799,0.008077,-0.010252,0.249790,0,0);-ms-transform:matrix(0.196799,0.008077,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.196799,0.008077,-0.010252,0.249790,0,0);}
.m116_c00414{transform:matrix(0.197258,0.005326,-0.006748,0.249909,0,0);-ms-transform:matrix(0.197258,0.005326,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.197258,0.005326,-0.006748,0.249909,0,0);}
.m12b_c00414{transform:matrix(0.199202,0.005578,-0.006997,0.249902,0,0);-ms-transform:matrix(0.199202,0.005578,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.199202,0.005578,-0.006997,0.249902,0,0);}
.m4d_c00414{transform:matrix(0.199968,0.003599,-0.004499,0.249960,0,0);-ms-transform:matrix(0.199968,0.003599,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.199968,0.003599,-0.004499,0.249960,0,0);}
.m3d_c00414{transform:matrix(0.200093,0.003602,-0.004499,0.249960,0,0);-ms-transform:matrix(0.200093,0.003602,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.200093,0.003602,-0.004499,0.249960,0,0);}
.m10c_c00414{transform:matrix(0.200221,0.003404,-0.004249,0.249964,0,0);-ms-transform:matrix(0.200221,0.003404,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.200221,0.003404,-0.004249,0.249964,0,0);}
.m4c_c00414{transform:matrix(0.200313,0.003606,-0.004499,0.249960,0,0);-ms-transform:matrix(0.200313,0.003606,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.200313,0.003606,-0.004499,0.249960,0,0);}
.m105_c00414{transform:matrix(0.200541,0.003409,-0.004249,0.249964,0,0);-ms-transform:matrix(0.200541,0.003409,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.200541,0.003409,-0.004249,0.249964,0,0);}
.m100_c00414{transform:matrix(0.201091,0.003419,-0.004249,0.249964,0,0);-ms-transform:matrix(0.201091,0.003419,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.201091,0.003419,-0.004249,0.249964,0,0);}
.m37_c00414{transform:matrix(0.202227,0.003640,-0.004499,0.249960,0,0);-ms-transform:matrix(0.202227,0.003640,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.202227,0.003640,-0.004499,0.249960,0,0);}
.m55_c00414{transform:matrix(0.202456,0.003442,-0.004249,0.249964,0,0);-ms-transform:matrix(0.202456,0.003442,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.202456,0.003442,-0.004249,0.249964,0,0);}
.md_c00414{transform:matrix(0.202866,0.003449,-0.004249,0.249964,0,0);-ms-transform:matrix(0.202866,0.003449,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.202866,0.003449,-0.004249,0.249964,0,0);}
.m38_c00414{transform:matrix(0.203642,0.003666,-0.004499,0.249960,0,0);-ms-transform:matrix(0.203642,0.003666,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.203642,0.003666,-0.004499,0.249960,0,0);}
.m3a_c00414{transform:matrix(0.203747,0.003667,-0.004499,0.249960,0,0);-ms-transform:matrix(0.203747,0.003667,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.203747,0.003667,-0.004499,0.249960,0,0);}
.m6a_c00414{transform:matrix(0.203826,0.003465,-0.004249,0.249964,0,0);-ms-transform:matrix(0.203826,0.003465,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.203826,0.003465,-0.004249,0.249964,0,0);}
.m48_c00414{transform:matrix(0.204097,0.003674,-0.004499,0.249960,0,0);-ms-transform:matrix(0.204097,0.003674,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.204097,0.003674,-0.004499,0.249960,0,0);}
.m10e_c00414{transform:matrix(0.204565,0.003478,-0.004249,0.249964,0,0);-ms-transform:matrix(0.204565,0.003478,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.204565,0.003478,-0.004249,0.249964,0,0);}
.m3c_c00414{transform:matrix(0.205227,0.003694,-0.004499,0.249960,0,0);-ms-transform:matrix(0.205227,0.003694,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.205227,0.003694,-0.004499,0.249960,0,0);}
.mdc_c00414{transform:matrix(0.205230,0.003489,-0.004249,0.249964,0,0);-ms-transform:matrix(0.205230,0.003489,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.205230,0.003489,-0.004249,0.249964,0,0);}
.mcf_c00414{transform:matrix(0.205370,0.003491,-0.004249,0.249964,0,0);-ms-transform:matrix(0.205370,0.003491,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.205370,0.003491,-0.004249,0.249964,0,0);}
.m11f_c00414{transform:matrix(0.205689,0.005759,-0.006997,0.249902,0,0);-ms-transform:matrix(0.205689,0.005759,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.205689,0.005759,-0.006997,0.249902,0,0);}
.m43_c00414{transform:matrix(0.205737,0.003703,-0.004499,0.249960,0,0);-ms-transform:matrix(0.205737,0.003703,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.205737,0.003703,-0.004499,0.249960,0,0);}
.mf8_c00414{transform:matrix(0.206620,0.003513,-0.004249,0.249964,0,0);-ms-transform:matrix(0.206620,0.003513,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.206620,0.003513,-0.004249,0.249964,0,0);}
.m118_c00414{transform:matrix(0.206755,0.005582,-0.006748,0.249909,0,0);-ms-transform:matrix(0.206755,0.005582,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.206755,0.005582,-0.006748,0.249909,0,0);}
.m18_c00414{transform:matrix(0.207341,0.003732,-0.004499,0.249960,0,0);-ms-transform:matrix(0.207341,0.003732,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.207341,0.003732,-0.004499,0.249960,0,0);}
.mb_c00414{transform:matrix(0.207430,0.003526,-0.004249,0.249964,0,0);-ms-transform:matrix(0.207430,0.003526,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.207430,0.003526,-0.004249,0.249964,0,0);}
.m10a_c00414{transform:matrix(0.207755,0.003532,-0.004249,0.249964,0,0);-ms-transform:matrix(0.207755,0.003532,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.207755,0.003532,-0.004249,0.249964,0,0);}
.m11c_c00414{transform:matrix(0.207999,0.005616,-0.006748,0.249909,0,0);-ms-transform:matrix(0.207999,0.005616,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.207999,0.005616,-0.006748,0.249909,0,0);}
.m10b_c00414{transform:matrix(0.208370,0.003542,-0.004249,0.249964,0,0);-ms-transform:matrix(0.208370,0.003542,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.208370,0.003542,-0.004249,0.249964,0,0);}
.mca_c00414{transform:matrix(0.208445,0.003544,-0.004249,0.249964,0,0);-ms-transform:matrix(0.208445,0.003544,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.208445,0.003544,-0.004249,0.249964,0,0);}
.md3_c00414{transform:matrix(0.209270,0.003558,-0.004249,0.249964,0,0);-ms-transform:matrix(0.209270,0.003558,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.209270,0.003558,-0.004249,0.249964,0,0);}
.maf_c00414{transform:matrix(0.209325,0.003559,-0.004249,0.249964,0,0);-ms-transform:matrix(0.209325,0.003559,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.209325,0.003559,-0.004249,0.249964,0,0);}
.me8_c00414{transform:matrix(0.209330,0.003559,-0.004249,0.249964,0,0);-ms-transform:matrix(0.209330,0.003559,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.209330,0.003559,-0.004249,0.249964,0,0);}
.m122_c00414{transform:matrix(0.209938,0.005878,-0.006997,0.249902,0,0);-ms-transform:matrix(0.209938,0.005878,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.209938,0.005878,-0.006997,0.249902,0,0);}
.m62_c00414{transform:matrix(0.209980,0.003570,-0.004249,0.249964,0,0);-ms-transform:matrix(0.209980,0.003570,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.209980,0.003570,-0.004249,0.249964,0,0);}
.m4e_c00414{transform:matrix(0.210061,0.003781,-0.004499,0.249960,0,0);-ms-transform:matrix(0.210061,0.003781,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.210061,0.003781,-0.004499,0.249960,0,0);}
.me7_c00414{transform:matrix(0.210170,0.003573,-0.004249,0.249964,0,0);-ms-transform:matrix(0.210170,0.003573,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.210170,0.003573,-0.004249,0.249964,0,0);}
.m128_c00414{transform:matrix(0.210747,0.005901,-0.006997,0.249902,0,0);-ms-transform:matrix(0.210747,0.005901,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.210747,0.005901,-0.006997,0.249902,0,0);}
.m101_c00414{transform:matrix(0.210995,0.003587,-0.004249,0.249964,0,0);-ms-transform:matrix(0.210995,0.003587,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.210995,0.003587,-0.004249,0.249964,0,0);}
.m17_c00414{transform:matrix(0.210996,0.003798,-0.004499,0.249960,0,0);-ms-transform:matrix(0.210996,0.003798,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.210996,0.003798,-0.004499,0.249960,0,0);}
.mbc_c00414{transform:matrix(0.211085,0.003588,-0.004249,0.249964,0,0);-ms-transform:matrix(0.211085,0.003588,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.211085,0.003588,-0.004249,0.249964,0,0);}
.m12_c00414{transform:matrix(0.212381,0.003823,-0.004499,0.249960,0,0);-ms-transform:matrix(0.212381,0.003823,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.212381,0.003823,-0.004499,0.249960,0,0);}
.m51_c00414{transform:matrix(0.212436,0.003824,-0.004499,0.249960,0,0);-ms-transform:matrix(0.212436,0.003824,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.212436,0.003824,-0.004499,0.249960,0,0);}
.m5c_c00414{transform:matrix(0.212669,0.003615,-0.004249,0.249964,0,0);-ms-transform:matrix(0.212669,0.003615,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.212669,0.003615,-0.004249,0.249964,0,0);}
.m117_c00414{transform:matrix(0.212747,0.005744,-0.006748,0.249909,0,0);-ms-transform:matrix(0.212747,0.005744,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.212747,0.005744,-0.006748,0.249909,0,0);}
.mf4_c00414{transform:matrix(0.213109,0.003623,-0.004249,0.249964,0,0);-ms-transform:matrix(0.213109,0.003623,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.213109,0.003623,-0.004249,0.249964,0,0);}
.mb2_c00414{transform:matrix(0.213444,0.003629,-0.004249,0.249964,0,0);-ms-transform:matrix(0.213444,0.003629,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.213444,0.003629,-0.004249,0.249964,0,0);}
.m67_c00414{transform:matrix(0.213539,0.003630,-0.004249,0.249964,0,0);-ms-transform:matrix(0.213539,0.003630,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.213539,0.003630,-0.004249,0.249964,0,0);}
.me2_c00414{transform:matrix(0.213604,0.003631,-0.004249,0.249964,0,0);-ms-transform:matrix(0.213604,0.003631,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.213604,0.003631,-0.004249,0.249964,0,0);}
.m52_c00414{transform:matrix(0.214000,0.003852,-0.004499,0.249960,0,0);-ms-transform:matrix(0.214000,0.003852,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.214000,0.003852,-0.004499,0.249960,0,0);}
.m10_c00414{transform:matrix(0.214250,0.003857,-0.004499,0.249960,0,0);-ms-transform:matrix(0.214250,0.003857,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.214250,0.003857,-0.004499,0.249960,0,0);}
.m60_c00414{transform:matrix(0.214389,0.003645,-0.004249,0.249964,0,0);-ms-transform:matrix(0.214389,0.003645,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.214389,0.003645,-0.004249,0.249964,0,0);}
.m95_c00414{transform:matrix(0.214769,0.003651,-0.004249,0.249964,0,0);-ms-transform:matrix(0.214769,0.003651,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.214769,0.003651,-0.004249,0.249964,0,0);}
.m123_c00414{transform:matrix(0.215166,0.006025,-0.006997,0.249902,0,0);-ms-transform:matrix(0.215166,0.006025,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.215166,0.006025,-0.006997,0.249902,0,0);}
.m8_c00414{transform:matrix(0.215784,0.003668,-0.004249,0.249964,0,0);-ms-transform:matrix(0.215784,0.003668,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.215784,0.003668,-0.004249,0.249964,0,0);}
.m4b_c00414{transform:matrix(0.216065,0.003889,-0.004499,0.249960,0,0);-ms-transform:matrix(0.216065,0.003889,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.216065,0.003889,-0.004499,0.249960,0,0);}
.m13c_c00414{transform:matrix(0.216193,0.008873,-0.010252,0.249790,0,0);-ms-transform:matrix(0.216193,0.008873,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.216193,0.008873,-0.010252,0.249790,0,0);}
.m15_c00414{transform:matrix(0.216470,0.003896,-0.004499,0.249960,0,0);-ms-transform:matrix(0.216470,0.003896,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.216470,0.003896,-0.004499,0.249960,0,0);}
.mf9_c00414{transform:matrix(0.216614,0.003682,-0.004249,0.249964,0,0);-ms-transform:matrix(0.216614,0.003682,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.216614,0.003682,-0.004249,0.249964,0,0);}
.m113_c00414{transform:matrix(0.216646,0.005849,-0.006748,0.249909,0,0);-ms-transform:matrix(0.216646,0.005849,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.216646,0.005849,-0.006748,0.249909,0,0);}
.md1_c00414{transform:matrix(0.216749,0.003685,-0.004249,0.249964,0,0);-ms-transform:matrix(0.216749,0.003685,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.216749,0.003685,-0.004249,0.249964,0,0);}
.m69_c00414{transform:matrix(0.217104,0.003691,-0.004249,0.249964,0,0);-ms-transform:matrix(0.217104,0.003691,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.217104,0.003691,-0.004249,0.249964,0,0);}
.me9_c00414{transform:matrix(0.217289,0.003694,-0.004249,0.249964,0,0);-ms-transform:matrix(0.217289,0.003694,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.217289,0.003694,-0.004249,0.249964,0,0);}
.m13a_c00414{transform:matrix(0.217986,0.008946,-0.010252,0.249790,0,0);-ms-transform:matrix(0.217986,0.008946,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.217986,0.008946,-0.010252,0.249790,0,0);}
.m7f_c00414{transform:matrix(0.218223,0.003710,-0.004249,0.249964,0,0);-ms-transform:matrix(0.218223,0.003710,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.218223,0.003710,-0.004249,0.249964,0,0);}
.m42_c00414{transform:matrix(0.218265,0.003929,-0.004499,0.249960,0,0);-ms-transform:matrix(0.218265,0.003929,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.218265,0.003929,-0.004499,0.249960,0,0);}
.mec_c00414{transform:matrix(0.218428,0.003713,-0.004249,0.249964,0,0);-ms-transform:matrix(0.218428,0.003713,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.218428,0.003713,-0.004249,0.249964,0,0);}
.m87_c00414{transform:matrix(0.218468,0.003714,-0.004249,0.249964,0,0);-ms-transform:matrix(0.218468,0.003714,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.218468,0.003714,-0.004249,0.249964,0,0);}
.m47_c00414{transform:matrix(0.218540,0.003934,-0.004499,0.249960,0,0);-ms-transform:matrix(0.218540,0.003934,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.218540,0.003934,-0.004499,0.249960,0,0);}
.mea_c00414{transform:matrix(0.218713,0.003718,-0.004249,0.249964,0,0);-ms-transform:matrix(0.218713,0.003718,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.218713,0.003718,-0.004249,0.249964,0,0);}
.m12c_c00414{transform:matrix(0.218839,0.006127,-0.006997,0.249902,0,0);-ms-transform:matrix(0.218839,0.006127,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.218839,0.006127,-0.006997,0.249902,0,0);}
.m121_c00414{transform:matrix(0.218864,0.006128,-0.006997,0.249902,0,0);-ms-transform:matrix(0.218864,0.006128,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.218864,0.006128,-0.006997,0.249902,0,0);}
.m78_c00414{transform:matrix(0.218893,0.003721,-0.004249,0.249964,0,0);-ms-transform:matrix(0.218893,0.003721,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.218893,0.003721,-0.004249,0.249964,0,0);}
.m9_c00414{transform:matrix(0.218908,0.003721,-0.004249,0.249964,0,0);-ms-transform:matrix(0.218908,0.003721,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.218908,0.003721,-0.004249,0.249964,0,0);}
.mbb_c00414{transform:matrix(0.218918,0.003722,-0.004249,0.249964,0,0);-ms-transform:matrix(0.218918,0.003722,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.218918,0.003722,-0.004249,0.249964,0,0);}
.mff_c00414{transform:matrix(0.219278,0.003728,-0.004249,0.249964,0,0);-ms-transform:matrix(0.219278,0.003728,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.219278,0.003728,-0.004249,0.249964,0,0);}
.m111_c00414{transform:matrix(0.219510,0.005927,-0.006748,0.249909,0,0);-ms-transform:matrix(0.219510,0.005927,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.219510,0.005927,-0.006748,0.249909,0,0);}
.mb0_c00414{transform:matrix(0.219938,0.003739,-0.004249,0.249964,0,0);-ms-transform:matrix(0.219938,0.003739,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.219938,0.003739,-0.004249,0.249964,0,0);}
.m1a_c00414{transform:matrix(0.220804,0.003974,-0.004499,0.249960,0,0);-ms-transform:matrix(0.220804,0.003974,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.220804,0.003974,-0.004499,0.249960,0,0);}
.mb1_c00414{transform:matrix(0.220853,0.003755,-0.004249,0.249964,0,0);-ms-transform:matrix(0.220853,0.003755,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.220853,0.003755,-0.004249,0.249964,0,0);}
.m125_c00414{transform:matrix(0.221583,0.006204,-0.006997,0.249902,0,0);-ms-transform:matrix(0.221583,0.006204,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.221583,0.006204,-0.006997,0.249902,0,0);}
.m11b_c00414{transform:matrix(0.221709,0.005986,-0.006748,0.249909,0,0);-ms-transform:matrix(0.221709,0.005986,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.221709,0.005986,-0.006748,0.249909,0,0);}
.mee_c00414{transform:matrix(0.221848,0.003771,-0.004249,0.249964,0,0);-ms-transform:matrix(0.221848,0.003771,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.221848,0.003771,-0.004249,0.249964,0,0);}
.m3f_c00414{transform:matrix(0.221999,0.003996,-0.004499,0.249960,0,0);-ms-transform:matrix(0.221999,0.003996,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.221999,0.003996,-0.004499,0.249960,0,0);}
.m32_c00414{transform:matrix(0.222574,0.004006,-0.004499,0.249960,0,0);-ms-transform:matrix(0.222574,0.004006,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.222574,0.004006,-0.004499,0.249960,0,0);}
.mbe_c00414{transform:matrix(0.222703,0.003786,-0.004249,0.249964,0,0);-ms-transform:matrix(0.222703,0.003786,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.222703,0.003786,-0.004249,0.249964,0,0);}
.mb4_c00414{transform:matrix(0.222733,0.003786,-0.004249,0.249964,0,0);-ms-transform:matrix(0.222733,0.003786,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.222733,0.003786,-0.004249,0.249964,0,0);}
.mcc_c00414{transform:matrix(0.222813,0.003788,-0.004249,0.249964,0,0);-ms-transform:matrix(0.222813,0.003788,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.222813,0.003788,-0.004249,0.249964,0,0);}
.m6e_c00414{transform:matrix(0.223238,0.003795,-0.004249,0.249964,0,0);-ms-transform:matrix(0.223238,0.003795,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.223238,0.003795,-0.004249,0.249964,0,0);}
.m16_c00414{transform:matrix(0.223309,0.004020,-0.004499,0.249960,0,0);-ms-transform:matrix(0.223309,0.004020,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.223309,0.004020,-0.004499,0.249960,0,0);}
.m11a_c00414{transform:matrix(0.223534,0.006035,-0.006748,0.249909,0,0);-ms-transform:matrix(0.223534,0.006035,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.223534,0.006035,-0.006748,0.249909,0,0);}
.m64_c00414{transform:matrix(0.223723,0.003803,-0.004249,0.249964,0,0);-ms-transform:matrix(0.223723,0.003803,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.223723,0.003803,-0.004249,0.249964,0,0);}
.m12a_c00414{transform:matrix(0.223797,0.006266,-0.006997,0.249902,0,0);-ms-transform:matrix(0.223797,0.006266,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.223797,0.006266,-0.006997,0.249902,0,0);}
.me5_c00414{transform:matrix(0.223863,0.003806,-0.004249,0.249964,0,0);-ms-transform:matrix(0.223863,0.003806,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.223863,0.003806,-0.004249,0.249964,0,0);}
.mf3_c00414{transform:matrix(0.223998,0.003808,-0.004249,0.249964,0,0);-ms-transform:matrix(0.223998,0.003808,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.223998,0.003808,-0.004249,0.249964,0,0);}
.m3_c00414{transform:matrix(0.224038,0.003809,-0.004249,0.249964,0,0);-ms-transform:matrix(0.224038,0.003809,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.224038,0.003809,-0.004249,0.249964,0,0);}
.mc0_c00414{transform:matrix(0.224048,0.003809,-0.004249,0.249964,0,0);-ms-transform:matrix(0.224048,0.003809,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.224048,0.003809,-0.004249,0.249964,0,0);}
.m11d_c00414{transform:matrix(0.224272,0.006280,-0.006997,0.249902,0,0);-ms-transform:matrix(0.224272,0.006280,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.224272,0.006280,-0.006997,0.249902,0,0);}
.mb3_c00414{transform:matrix(0.224298,0.003813,-0.004249,0.249964,0,0);-ms-transform:matrix(0.224298,0.003813,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.224298,0.003813,-0.004249,0.249964,0,0);}
.md5_c00414{transform:matrix(0.224733,0.003820,-0.004249,0.249964,0,0);-ms-transform:matrix(0.224733,0.003820,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.224733,0.003820,-0.004249,0.249964,0,0);}
.m4_c00414{transform:matrix(0.224967,0.003824,-0.004249,0.249964,0,0);-ms-transform:matrix(0.224967,0.003824,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.224967,0.003824,-0.004249,0.249964,0,0);}
.m49_c00414{transform:matrix(0.225304,0.004055,-0.004499,0.249960,0,0);-ms-transform:matrix(0.225304,0.004055,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.225304,0.004055,-0.004499,0.249960,0,0);}
.m2e_c00414{transform:matrix(0.225309,0.004056,-0.004499,0.249960,0,0);-ms-transform:matrix(0.225309,0.004056,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.225309,0.004056,-0.004499,0.249960,0,0);}
.ma6_c00414{transform:matrix(0.225312,0.003830,-0.004249,0.249964,0,0);-ms-transform:matrix(0.225312,0.003830,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.225312,0.003830,-0.004249,0.249964,0,0);}
.mcb_c00414{transform:matrix(0.225487,0.003833,-0.004249,0.249964,0,0);-ms-transform:matrix(0.225487,0.003833,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.225487,0.003833,-0.004249,0.249964,0,0);}
.m30_c00414{transform:matrix(0.225488,0.004059,-0.004499,0.249960,0,0);-ms-transform:matrix(0.225488,0.004059,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.225488,0.004059,-0.004499,0.249960,0,0);}
.m129_c00414{transform:matrix(0.225831,0.006323,-0.006997,0.249902,0,0);-ms-transform:matrix(0.225831,0.006323,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.225831,0.006323,-0.006997,0.249902,0,0);}
.m40_c00414{transform:matrix(0.226488,0.004077,-0.004499,0.249960,0,0);-ms-transform:matrix(0.226488,0.004077,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.226488,0.004077,-0.004499,0.249960,0,0);}
.ma2_c00414{transform:matrix(0.226712,0.003854,-0.004249,0.249964,0,0);-ms-transform:matrix(0.226712,0.003854,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.226712,0.003854,-0.004249,0.249964,0,0);}
.m137_c00414{transform:matrix(0.226899,0.009312,-0.010252,0.249790,0,0);-ms-transform:matrix(0.226899,0.009312,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.226899,0.009312,-0.010252,0.249790,0,0);}
.m102_c00414{transform:matrix(0.226952,0.003858,-0.004249,0.249964,0,0);-ms-transform:matrix(0.226952,0.003858,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.226952,0.003858,-0.004249,0.249964,0,0);}
.mb6_c00414{transform:matrix(0.227072,0.003860,-0.004249,0.249964,0,0);-ms-transform:matrix(0.227072,0.003860,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.227072,0.003860,-0.004249,0.249964,0,0);}
.mb7_c00414{transform:matrix(0.227217,0.003863,-0.004249,0.249964,0,0);-ms-transform:matrix(0.227217,0.003863,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.227217,0.003863,-0.004249,0.249964,0,0);}
.m9e_c00414{transform:matrix(0.227222,0.003863,-0.004249,0.249964,0,0);-ms-transform:matrix(0.227222,0.003863,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.227222,0.003863,-0.004249,0.249964,0,0);}
.m120_c00414{transform:matrix(0.227421,0.006368,-0.006997,0.249902,0,0);-ms-transform:matrix(0.227421,0.006368,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.227421,0.006368,-0.006997,0.249902,0,0);}
.m86_c00414{transform:matrix(0.227672,0.003870,-0.004249,0.249964,0,0);-ms-transform:matrix(0.227672,0.003870,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.227672,0.003870,-0.004249,0.249964,0,0);}
.mad_c00414{transform:matrix(0.227797,0.003873,-0.004249,0.249964,0,0);-ms-transform:matrix(0.227797,0.003873,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.227797,0.003873,-0.004249,0.249964,0,0);}
.m114_c00414{transform:matrix(0.227972,0.006155,-0.006748,0.249909,0,0);-ms-transform:matrix(0.227972,0.006155,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.227972,0.006155,-0.006748,0.249909,0,0);}
.mef_c00414{transform:matrix(0.228152,0.003879,-0.004249,0.249964,0,0);-ms-transform:matrix(0.228152,0.003879,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.228152,0.003879,-0.004249,0.249964,0,0);}
.m68_c00414{transform:matrix(0.228257,0.003880,-0.004249,0.249964,0,0);-ms-transform:matrix(0.228257,0.003880,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.228257,0.003880,-0.004249,0.249964,0,0);}
.m89_c00414{transform:matrix(0.228322,0.003881,-0.004249,0.249964,0,0);-ms-transform:matrix(0.228322,0.003881,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.228322,0.003881,-0.004249,0.249964,0,0);}
.m66_c00414{transform:matrix(0.228527,0.003885,-0.004249,0.249964,0,0);-ms-transform:matrix(0.228527,0.003885,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.228527,0.003885,-0.004249,0.249964,0,0);}
.m7b_c00414{transform:matrix(0.228597,0.003886,-0.004249,0.249964,0,0);-ms-transform:matrix(0.228597,0.003886,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.228597,0.003886,-0.004249,0.249964,0,0);}
.mf0_c00414{transform:matrix(0.228672,0.003887,-0.004249,0.249964,0,0);-ms-transform:matrix(0.228672,0.003887,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.228672,0.003887,-0.004249,0.249964,0,0);}
.mc6_c00414{transform:matrix(0.228827,0.003890,-0.004249,0.249964,0,0);-ms-transform:matrix(0.228827,0.003890,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.228827,0.003890,-0.004249,0.249964,0,0);}
.mf6_c00414{transform:matrix(0.229262,0.003897,-0.004249,0.249964,0,0);-ms-transform:matrix(0.229262,0.003897,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.229262,0.003897,-0.004249,0.249964,0,0);}
.me_c00414{transform:matrix(0.229402,0.003900,-0.004249,0.249964,0,0);-ms-transform:matrix(0.229402,0.003900,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.229402,0.003900,-0.004249,0.249964,0,0);}
.m9c_c00414{transform:matrix(0.229492,0.003901,-0.004249,0.249964,0,0);-ms-transform:matrix(0.229492,0.003901,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.229492,0.003901,-0.004249,0.249964,0,0);}
.mf7_c00414{transform:matrix(0.230087,0.003911,-0.004249,0.249964,0,0);-ms-transform:matrix(0.230087,0.003911,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.230087,0.003911,-0.004249,0.249964,0,0);}
.m115_c00414{transform:matrix(0.230106,0.006213,-0.006748,0.249909,0,0);-ms-transform:matrix(0.230106,0.006213,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.230106,0.006213,-0.006748,0.249909,0,0);}
.med_c00414{transform:matrix(0.230112,0.003912,-0.004249,0.249964,0,0);-ms-transform:matrix(0.230112,0.003912,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.230112,0.003912,-0.004249,0.249964,0,0);}
.m7d_c00414{transform:matrix(0.230187,0.003913,-0.004249,0.249964,0,0);-ms-transform:matrix(0.230187,0.003913,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.230187,0.003913,-0.004249,0.249964,0,0);}
.m119_c00414{transform:matrix(0.230831,0.006232,-0.006748,0.249909,0,0);-ms-transform:matrix(0.230831,0.006232,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.230831,0.006232,-0.006748,0.249909,0,0);}
.m81_c00414{transform:matrix(0.230882,0.003925,-0.004249,0.249964,0,0);-ms-transform:matrix(0.230882,0.003925,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.230882,0.003925,-0.004249,0.249964,0,0);}
.m13_c00414{transform:matrix(0.230948,0.004157,-0.004499,0.249960,0,0);-ms-transform:matrix(0.230948,0.004157,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.230948,0.004157,-0.004499,0.249960,0,0);}
.m14_c00414{transform:matrix(0.230973,0.004158,-0.004499,0.249960,0,0);-ms-transform:matrix(0.230973,0.004158,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.230973,0.004158,-0.004499,0.249960,0,0);}
.m93_c00414{transform:matrix(0.231442,0.003935,-0.004249,0.249964,0,0);-ms-transform:matrix(0.231442,0.003935,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.231442,0.003935,-0.004249,0.249964,0,0);}
.m5f_c00414{transform:matrix(0.231457,0.003935,-0.004249,0.249964,0,0);-ms-transform:matrix(0.231457,0.003935,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.231457,0.003935,-0.004249,0.249964,0,0);}
.mb9_c00414{transform:matrix(0.231871,0.003942,-0.004249,0.249964,0,0);-ms-transform:matrix(0.231871,0.003942,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.231871,0.003942,-0.004249,0.249964,0,0);}
.mce_c00414{transform:matrix(0.232031,0.003945,-0.004249,0.249964,0,0);-ms-transform:matrix(0.232031,0.003945,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.232031,0.003945,-0.004249,0.249964,0,0);}
.md8_c00414{transform:matrix(0.233126,0.003963,-0.004249,0.249964,0,0);-ms-transform:matrix(0.233126,0.003963,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.233126,0.003963,-0.004249,0.249964,0,0);}
.m46_c00414{transform:matrix(0.233292,0.004199,-0.004499,0.249960,0,0);-ms-transform:matrix(0.233292,0.004199,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.233292,0.004199,-0.004499,0.249960,0,0);}
.mc2_c00414{transform:matrix(0.233341,0.003967,-0.004249,0.249964,0,0);-ms-transform:matrix(0.233341,0.003967,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.233341,0.003967,-0.004249,0.249964,0,0);}
.md9_c00414{transform:matrix(0.233626,0.003972,-0.004249,0.249964,0,0);-ms-transform:matrix(0.233626,0.003972,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.233626,0.003972,-0.004249,0.249964,0,0);}
.m99_c00414{transform:matrix(0.233661,0.003972,-0.004249,0.249964,0,0);-ms-transform:matrix(0.233661,0.003972,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.233661,0.003972,-0.004249,0.249964,0,0);}
.m126_c00414{transform:matrix(0.234018,0.006553,-0.006997,0.249902,0,0);-ms-transform:matrix(0.234018,0.006553,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.234018,0.006553,-0.006997,0.249902,0,0);}
.mfa_c00414{transform:matrix(0.234061,0.003979,-0.004249,0.249964,0,0);-ms-transform:matrix(0.234061,0.003979,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.234061,0.003979,-0.004249,0.249964,0,0);}
.m8b_c00414{transform:matrix(0.234326,0.003984,-0.004249,0.249964,0,0);-ms-transform:matrix(0.234326,0.003984,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.234326,0.003984,-0.004249,0.249964,0,0);}
.m45_c00414{transform:matrix(0.234337,0.004218,-0.004499,0.249960,0,0);-ms-transform:matrix(0.234337,0.004218,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.234337,0.004218,-0.004499,0.249960,0,0);}
.m75_c00414{transform:matrix(0.234371,0.003984,-0.004249,0.249964,0,0);-ms-transform:matrix(0.234371,0.003984,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.234371,0.003984,-0.004249,0.249964,0,0);}
.mba_c00414{transform:matrix(0.235371,0.004001,-0.004249,0.249964,0,0);-ms-transform:matrix(0.235371,0.004001,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.235371,0.004001,-0.004249,0.249964,0,0);}
.mf_c00414{transform:matrix(0.235441,0.004002,-0.004249,0.249964,0,0);-ms-transform:matrix(0.235441,0.004002,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.235441,0.004002,-0.004249,0.249964,0,0);}
.m112_c00414{transform:matrix(0.235839,0.006368,-0.006748,0.249909,0,0);-ms-transform:matrix(0.235839,0.006368,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.235839,0.006368,-0.006748,0.249909,0,0);}
.mdf_c00414{transform:matrix(0.237001,0.004029,-0.004249,0.249964,0,0);-ms-transform:matrix(0.237001,0.004029,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.237001,0.004029,-0.004249,0.249964,0,0);}
.m91_c00414{transform:matrix(0.237151,0.004032,-0.004249,0.249964,0,0);-ms-transform:matrix(0.237151,0.004032,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.237151,0.004032,-0.004249,0.249964,0,0);}
.m6b_c00414{transform:matrix(0.237706,0.004041,-0.004249,0.249964,0,0);-ms-transform:matrix(0.237706,0.004041,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.237706,0.004041,-0.004249,0.249964,0,0);}
.mc4_c00414{transform:matrix(0.237771,0.004042,-0.004249,0.249964,0,0);-ms-transform:matrix(0.237771,0.004042,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.237771,0.004042,-0.004249,0.249964,0,0);}
.m34_c00414{transform:matrix(0.238261,0.004289,-0.004499,0.249960,0,0);-ms-transform:matrix(0.238261,0.004289,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.238261,0.004289,-0.004499,0.249960,0,0);}
.meb_c00414{transform:matrix(0.238476,0.004054,-0.004249,0.249964,0,0);-ms-transform:matrix(0.238476,0.004054,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.238476,0.004054,-0.004249,0.249964,0,0);}
.m1_c00414{transform:matrix(0.238535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238535,0.000000,0.000000,0.250000,0,0);}
.mf2_c00414{transform:matrix(0.238716,0.004058,-0.004249,0.249964,0,0);-ms-transform:matrix(0.238716,0.004058,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.238716,0.004058,-0.004249,0.249964,0,0);}
.m80_c00414{transform:matrix(0.239135,0.004065,-0.004249,0.249964,0,0);-ms-transform:matrix(0.239135,0.004065,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.239135,0.004065,-0.004249,0.249964,0,0);}
.m124_c00414{transform:matrix(0.239396,0.006703,-0.006997,0.249902,0,0);-ms-transform:matrix(0.239396,0.006703,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.239396,0.006703,-0.006997,0.249902,0,0);}
.m70_c00414{transform:matrix(0.240030,0.004081,-0.004249,0.249964,0,0);-ms-transform:matrix(0.240030,0.004081,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.240030,0.004081,-0.004249,0.249964,0,0);}
.m84_c00414{transform:matrix(0.240110,0.004082,-0.004249,0.249964,0,0);-ms-transform:matrix(0.240110,0.004082,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.240110,0.004082,-0.004249,0.249964,0,0);}
.mda_c00414{transform:matrix(0.240930,0.004096,-0.004249,0.249964,0,0);-ms-transform:matrix(0.240930,0.004096,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.240930,0.004096,-0.004249,0.249964,0,0);}
.m83_c00414{transform:matrix(0.241450,0.004105,-0.004249,0.249964,0,0);-ms-transform:matrix(0.241450,0.004105,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.241450,0.004105,-0.004249,0.249964,0,0);}
.md6_c00414{transform:matrix(0.241475,0.004105,-0.004249,0.249964,0,0);-ms-transform:matrix(0.241475,0.004105,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.241475,0.004105,-0.004249,0.249964,0,0);}
.m29_c00414{transform:matrix(0.241576,0.004348,-0.004499,0.249960,0,0);-ms-transform:matrix(0.241576,0.004348,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.241576,0.004348,-0.004499,0.249960,0,0);}
.mb5_c00414{transform:matrix(0.241900,0.004112,-0.004249,0.249964,0,0);-ms-transform:matrix(0.241900,0.004112,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.241900,0.004112,-0.004249,0.249964,0,0);}
.mf5_c00414{transform:matrix(0.242430,0.004121,-0.004249,0.249964,0,0);-ms-transform:matrix(0.242430,0.004121,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.242430,0.004121,-0.004249,0.249964,0,0);}
.m127_c00414{transform:matrix(0.242495,0.006790,-0.006997,0.249902,0,0);-ms-transform:matrix(0.242495,0.006790,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.242495,0.006790,-0.006997,0.249902,0,0);}
.mde_c00414{transform:matrix(0.242630,0.004125,-0.004249,0.249964,0,0);-ms-transform:matrix(0.242630,0.004125,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.242630,0.004125,-0.004249,0.249964,0,0);}
.mab_c00414{transform:matrix(0.242725,0.004126,-0.004249,0.249964,0,0);-ms-transform:matrix(0.242725,0.004126,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.242725,0.004126,-0.004249,0.249964,0,0);}
.md4_c00414{transform:matrix(0.242760,0.004127,-0.004249,0.249964,0,0);-ms-transform:matrix(0.242760,0.004127,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.242760,0.004127,-0.004249,0.249964,0,0);}
.me1_c00414{transform:matrix(0.243165,0.004134,-0.004249,0.249964,0,0);-ms-transform:matrix(0.243165,0.004134,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.243165,0.004134,-0.004249,0.249964,0,0);}
.mc5_c00414{transform:matrix(0.243715,0.004143,-0.004249,0.249964,0,0);-ms-transform:matrix(0.243715,0.004143,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.243715,0.004143,-0.004249,0.249964,0,0);}
.mc9_c00414{transform:matrix(0.244570,0.004158,-0.004249,0.249964,0,0);-ms-transform:matrix(0.244570,0.004158,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.244570,0.004158,-0.004249,0.249964,0,0);}
.mdb_c00414{transform:matrix(0.245150,0.004168,-0.004249,0.249964,0,0);-ms-transform:matrix(0.245150,0.004168,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.245150,0.004168,-0.004249,0.249964,0,0);}
.m8d_c00414{transform:matrix(0.245585,0.004175,-0.004249,0.249964,0,0);-ms-transform:matrix(0.245585,0.004175,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.245585,0.004175,-0.004249,0.249964,0,0);}
.mb8_c00414{transform:matrix(0.246019,0.004182,-0.004249,0.249964,0,0);-ms-transform:matrix(0.246019,0.004182,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.246019,0.004182,-0.004249,0.249964,0,0);}
.m79_c00414{transform:matrix(0.246259,0.004186,-0.004249,0.249964,0,0);-ms-transform:matrix(0.246259,0.004186,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.246259,0.004186,-0.004249,0.249964,0,0);}
.mc1_c00414{transform:matrix(0.247099,0.004201,-0.004249,0.249964,0,0);-ms-transform:matrix(0.247099,0.004201,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.247099,0.004201,-0.004249,0.249964,0,0);}
.mc_c00414{transform:matrix(0.247309,0.004204,-0.004249,0.249964,0,0);-ms-transform:matrix(0.247309,0.004204,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.247309,0.004204,-0.004249,0.249964,0,0);}
.m77_c00414{transform:matrix(0.247424,0.004206,-0.004249,0.249964,0,0);-ms-transform:matrix(0.247424,0.004206,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.247424,0.004206,-0.004249,0.249964,0,0);}
.m2c_c00414{transform:matrix(0.247895,0.004462,-0.004499,0.249960,0,0);-ms-transform:matrix(0.247895,0.004462,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.247895,0.004462,-0.004499,0.249960,0,0);}
.m12e_c00414{transform:matrix(0.248003,0.006944,-0.006997,0.249902,0,0);-ms-transform:matrix(0.248003,0.006944,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.248003,0.006944,-0.006997,0.249902,0,0);}
.mfc_c00414{transform:matrix(0.248044,0.004217,-0.004249,0.249964,0,0);-ms-transform:matrix(0.248044,0.004217,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.248044,0.004217,-0.004249,0.249964,0,0);}
.mc7_c00414{transform:matrix(0.248304,0.004221,-0.004249,0.249964,0,0);-ms-transform:matrix(0.248304,0.004221,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.248304,0.004221,-0.004249,0.249964,0,0);}
.m25_c00414{transform:matrix(0.248840,0.004479,-0.004499,0.249960,0,0);-ms-transform:matrix(0.248840,0.004479,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.248840,0.004479,-0.004499,0.249960,0,0);}
.md7_c00414{transform:matrix(0.248889,0.004231,-0.004249,0.249964,0,0);-ms-transform:matrix(0.248889,0.004231,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.248889,0.004231,-0.004249,0.249964,0,0);}
.mcd_c00414{transform:matrix(0.249519,0.004242,-0.004249,0.249964,0,0);-ms-transform:matrix(0.249519,0.004242,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.249519,0.004242,-0.004249,0.249964,0,0);}
.m2b_c00414{transform:matrix(0.250429,0.004508,-0.004499,0.249960,0,0);-ms-transform:matrix(0.250429,0.004508,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.250429,0.004508,-0.004499,0.249960,0,0);}
.ma0_c00414{transform:matrix(0.250434,0.004257,-0.004249,0.249964,0,0);-ms-transform:matrix(0.250434,0.004257,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.250434,0.004257,-0.004249,0.249964,0,0);}
.mbf_c00414{transform:matrix(0.250464,0.004258,-0.004249,0.249964,0,0);-ms-transform:matrix(0.250464,0.004258,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.250464,0.004258,-0.004249,0.249964,0,0);}
.mbd_c00414{transform:matrix(0.251739,0.004280,-0.004249,0.249964,0,0);-ms-transform:matrix(0.251739,0.004280,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.251739,0.004280,-0.004249,0.249964,0,0);}
.me3_c00414{transform:matrix(0.251774,0.004280,-0.004249,0.249964,0,0);-ms-transform:matrix(0.251774,0.004280,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.251774,0.004280,-0.004249,0.249964,0,0);}
.m12d_c00414{transform:matrix(0.252101,0.007059,-0.006997,0.249902,0,0);-ms-transform:matrix(0.252101,0.007059,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.252101,0.007059,-0.006997,0.249902,0,0);}
.m7a_c00414{transform:matrix(0.252519,0.004293,-0.004249,0.249964,0,0);-ms-transform:matrix(0.252519,0.004293,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.252519,0.004293,-0.004249,0.249964,0,0);}
.m88_c00414{transform:matrix(0.252713,0.004296,-0.004249,0.249964,0,0);-ms-transform:matrix(0.252713,0.004296,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.252713,0.004296,-0.004249,0.249964,0,0);}
.mac_c00414{transform:matrix(0.253303,0.004306,-0.004249,0.249964,0,0);-ms-transform:matrix(0.253303,0.004306,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.253303,0.004306,-0.004249,0.249964,0,0);}
.m5_c00414{transform:matrix(0.253428,0.004308,-0.004249,0.249964,0,0);-ms-transform:matrix(0.253428,0.004308,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.253428,0.004308,-0.004249,0.249964,0,0);}
.mc8_c00414{transform:matrix(0.253738,0.004314,-0.004249,0.249964,0,0);-ms-transform:matrix(0.253738,0.004314,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.253738,0.004314,-0.004249,0.249964,0,0);}
.mc3_c00414{transform:matrix(0.253913,0.004317,-0.004249,0.249964,0,0);-ms-transform:matrix(0.253913,0.004317,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.253913,0.004317,-0.004249,0.249964,0,0);}
.md2_c00414{transform:matrix(0.254113,0.004320,-0.004249,0.249964,0,0);-ms-transform:matrix(0.254113,0.004320,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.254113,0.004320,-0.004249,0.249964,0,0);}
.m8a_c00414{transform:matrix(0.254278,0.004323,-0.004249,0.249964,0,0);-ms-transform:matrix(0.254278,0.004323,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.254278,0.004323,-0.004249,0.249964,0,0);}
.m2d_c00414{transform:matrix(0.254924,0.004589,-0.004499,0.249960,0,0);-ms-transform:matrix(0.254924,0.004589,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.254924,0.004589,-0.004499,0.249960,0,0);}
.m7c_c00414{transform:matrix(0.255163,0.004338,-0.004249,0.249964,0,0);-ms-transform:matrix(0.255163,0.004338,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.255163,0.004338,-0.004249,0.249964,0,0);}
.m2f_c00414{transform:matrix(0.255269,0.004595,-0.004499,0.249960,0,0);-ms-transform:matrix(0.255269,0.004595,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.255269,0.004595,-0.004499,0.249960,0,0);}
.m82_c00414{transform:matrix(0.255893,0.004350,-0.004249,0.249964,0,0);-ms-transform:matrix(0.255893,0.004350,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.255893,0.004350,-0.004249,0.249964,0,0);}
.mdd_c00414{transform:matrix(0.256943,0.004368,-0.004249,0.249964,0,0);-ms-transform:matrix(0.256943,0.004368,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.256943,0.004368,-0.004249,0.249964,0,0);}
.m7e_c00414{transform:matrix(0.257178,0.004372,-0.004249,0.249964,0,0);-ms-transform:matrix(0.257178,0.004372,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.257178,0.004372,-0.004249,0.249964,0,0);}
.m85_c00414{transform:matrix(0.257398,0.004376,-0.004249,0.249964,0,0);-ms-transform:matrix(0.257398,0.004376,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.257398,0.004376,-0.004249,0.249964,0,0);}
.me0_c00414{transform:matrix(0.258173,0.004389,-0.004249,0.249964,0,0);-ms-transform:matrix(0.258173,0.004389,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.258173,0.004389,-0.004249,0.249964,0,0);}
.m94_c00414{transform:matrix(0.260102,0.004422,-0.004249,0.249964,0,0);-ms-transform:matrix(0.260102,0.004422,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.260102,0.004422,-0.004249,0.249964,0,0);}
.md0_c00414{transform:matrix(0.260857,0.004435,-0.004249,0.249964,0,0);-ms-transform:matrix(0.260857,0.004435,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.260857,0.004435,-0.004249,0.249964,0,0);}
.m97_c00414{transform:matrix(0.261652,0.004448,-0.004249,0.249964,0,0);-ms-transform:matrix(0.261652,0.004448,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.261652,0.004448,-0.004249,0.249964,0,0);}
.m7_c00414{transform:matrix(0.262567,0.004464,-0.004249,0.249964,0,0);-ms-transform:matrix(0.262567,0.004464,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.262567,0.004464,-0.004249,0.249964,0,0);}
.m90_c00414{transform:matrix(0.263132,0.004473,-0.004249,0.249964,0,0);-ms-transform:matrix(0.263132,0.004473,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.263132,0.004473,-0.004249,0.249964,0,0);}
.m98_c00414{transform:matrix(0.263527,0.004480,-0.004249,0.249964,0,0);-ms-transform:matrix(0.263527,0.004480,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.263527,0.004480,-0.004249,0.249964,0,0);}
.ma1_c00414{transform:matrix(0.264022,0.004488,-0.004249,0.249964,0,0);-ms-transform:matrix(0.264022,0.004488,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.264022,0.004488,-0.004249,0.249964,0,0);}
.m2a_c00414{transform:matrix(0.265297,0.004775,-0.004499,0.249960,0,0);-ms-transform:matrix(0.265297,0.004775,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.265297,0.004775,-0.004499,0.249960,0,0);}
.m6d_c00414{transform:matrix(0.265392,0.004512,-0.004249,0.249964,0,0);-ms-transform:matrix(0.265392,0.004512,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.265392,0.004512,-0.004249,0.249964,0,0);}
.ma7_c00414{transform:matrix(0.267261,0.004543,-0.004249,0.249964,0,0);-ms-transform:matrix(0.267261,0.004543,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.267261,0.004543,-0.004249,0.249964,0,0);}
.m9b_c00414{transform:matrix(0.269356,0.004579,-0.004249,0.249964,0,0);-ms-transform:matrix(0.269356,0.004579,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.269356,0.004579,-0.004249,0.249964,0,0);}
.m74_c00414{transform:matrix(0.269751,0.004586,-0.004249,0.249964,0,0);-ms-transform:matrix(0.269751,0.004586,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.269751,0.004586,-0.004249,0.249964,0,0);}
.m6f_c00414{transform:matrix(0.270896,0.004605,-0.004249,0.249964,0,0);-ms-transform:matrix(0.270896,0.004605,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.270896,0.004605,-0.004249,0.249964,0,0);}
.m92_c00414{transform:matrix(0.270976,0.004607,-0.004249,0.249964,0,0);-ms-transform:matrix(0.270976,0.004607,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.270976,0.004607,-0.004249,0.249964,0,0);}
.ma5_c00414{transform:matrix(0.271336,0.004613,-0.004249,0.249964,0,0);-ms-transform:matrix(0.271336,0.004613,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.271336,0.004613,-0.004249,0.249964,0,0);}
.m33_c00414{transform:matrix(0.271556,0.004888,-0.004499,0.249960,0,0);-ms-transform:matrix(0.271556,0.004888,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.271556,0.004888,-0.004499,0.249960,0,0);}
.m96_c00414{transform:matrix(0.272591,0.004634,-0.004249,0.249964,0,0);-ms-transform:matrix(0.272591,0.004634,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.272591,0.004634,-0.004249,0.249964,0,0);}
.m71_c00414{transform:matrix(0.273550,0.004650,-0.004249,0.249964,0,0);-ms-transform:matrix(0.273550,0.004650,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.273550,0.004650,-0.004249,0.249964,0,0);}
.m8f_c00414{transform:matrix(0.273705,0.004653,-0.004249,0.249964,0,0);-ms-transform:matrix(0.273705,0.004653,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.273705,0.004653,-0.004249,0.249964,0,0);}
.ma3_c00414{transform:matrix(0.274220,0.004662,-0.004249,0.249964,0,0);-ms-transform:matrix(0.274220,0.004662,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.274220,0.004662,-0.004249,0.249964,0,0);}
.m9d_c00414{transform:matrix(0.274860,0.004673,-0.004249,0.249964,0,0);-ms-transform:matrix(0.274860,0.004673,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.274860,0.004673,-0.004249,0.249964,0,0);}
.m31_c00414{transform:matrix(0.276340,0.004974,-0.004499,0.249960,0,0);-ms-transform:matrix(0.276340,0.004974,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.276340,0.004974,-0.004499,0.249960,0,0);}
.m6c_c00414{transform:matrix(0.276825,0.004706,-0.004249,0.249964,0,0);-ms-transform:matrix(0.276825,0.004706,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.276825,0.004706,-0.004249,0.249964,0,0);}
.m9f_c00414{transform:matrix(0.276915,0.004708,-0.004249,0.249964,0,0);-ms-transform:matrix(0.276915,0.004708,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.276915,0.004708,-0.004249,0.249964,0,0);}
.ma_c00414{transform:matrix(0.280804,0.004774,-0.004249,0.249964,0,0);-ms-transform:matrix(0.280804,0.004774,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.280804,0.004774,-0.004249,0.249964,0,0);}
.m8e_c00414{transform:matrix(0.281234,0.004781,-0.004249,0.249964,0,0);-ms-transform:matrix(0.281234,0.004781,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.281234,0.004781,-0.004249,0.249964,0,0);}
.ma4_c00414{transform:matrix(0.281519,0.004786,-0.004249,0.249964,0,0);-ms-transform:matrix(0.281519,0.004786,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.281519,0.004786,-0.004249,0.249964,0,0);}
.m72_c00414{transform:matrix(0.283214,0.004815,-0.004249,0.249964,0,0);-ms-transform:matrix(0.283214,0.004815,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.283214,0.004815,-0.004249,0.249964,0,0);}
.m133_c00414{transform:matrix(0.291825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291825,0.000000,0.000000,0.250000,0,0);}
.m8c_c00414{transform:matrix(0.302776,0.005147,-0.004249,0.249964,0,0);-ms-transform:matrix(0.302776,0.005147,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.302776,0.005147,-0.004249,0.249964,0,0);}
.m136_c00414{transform:matrix(0.329530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329530,0.000000,0.000000,0.250000,0,0);}
.m4a_c00414{transform:matrix(0.333066,0.005995,-0.004499,0.249960,0,0);-ms-transform:matrix(0.333066,0.005995,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.333066,0.005995,-0.004499,0.249960,0,0);}
.m135_c00414{transform:matrix(0.333540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333540,0.000000,0.000000,0.250000,0,0);}
.m130_c00414{transform:matrix(0.337060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337060,0.000000,0.000000,0.250000,0,0);}
.m131_c00414{transform:matrix(0.356555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356555,0.000000,0.000000,0.250000,0,0);}
.m73_c00414{transform:matrix(0.363542,0.006180,-0.004249,0.249964,0,0);-ms-transform:matrix(0.363542,0.006180,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.363542,0.006180,-0.004249,0.249964,0,0);}
.m132_c00414{transform:matrix(0.371000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371000,0.000000,0.000000,0.250000,0,0);}
.m134_c00414{transform:matrix(0.407665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407665,0.000000,0.000000,0.250000,0,0);}
.maa_c00414{transform:matrix(0.545036,0.009266,-0.004249,0.249964,0,0);-ms-transform:matrix(0.545036,0.009266,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.545036,0.009266,-0.004249,0.249964,0,0);}
.m12f_c00414{transform:matrix(3.459125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.459125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.459125,0.000000,0.000000,0.250000,0,0);}
.v0_c00414{vertical-align:0.000000px;}
.v1_c00414{vertical-align:2.568416px;}
.ls0_c00414{letter-spacing:0.000000px;}
.sc__c00414{text-shadow:none;}
.sc0_c00414{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__c00414{-webkit-text-stroke:0px transparent;}
.sc0_c00414{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00414{word-spacing:0.000000px;}
._0_c00414{width:54.538839px;}
.fc0_c00414{color:transparent;}
.fsd_c00414{font-size:48.000000px;}
.fse_c00414{font-size:54.000000px;}
.fs0_c00414{font-size:72.000000px;}
.fs8_c00414{font-size:72.010403px;}
.fs4_c00414{font-size:72.011663px;}
.fs1_c00414{font-size:78.011270px;}
.fsc_c00414{font-size:78.030570px;}
.fs7_c00414{font-size:84.012137px;}
.fs2_c00414{font-size:84.013607px;}
.fsa_c00414{font-size:84.030612px;}
.fsb_c00414{font-size:84.032922px;}
.fsf_c00414{font-size:89.985689px;}
.fs9_c00414{font-size:90.013004px;}
.fs5_c00414{font-size:90.014579px;}
.fs6_c00414{font-size:96.013871px;}
.fs3_c00414{font-size:102.016523px;}
.y0_c00414{bottom:0.000000px;}
.y13c_c00414{bottom:68.742000px;}
.y13b_c00414{bottom:70.266000px;}
.y13a_c00414{bottom:71.410500px;}
.y139_c00414{bottom:72.555000px;}
.y138_c00414{bottom:75.340500px;}
.y137_c00414{bottom:78.210000px;}
.y136_c00414{bottom:79.117500px;}
.y135_c00414{bottom:99.238500px;}
.y142_c00414{bottom:113.948042px;}
.y141_c00414{bottom:115.245015px;}
.y140_c00414{bottom:118.506852px;}
.y13f_c00414{bottom:120.342504px;}
.y13e_c00414{bottom:121.671150px;}
.y13d_c00414{bottom:127.999500px;}
.y134_c00414{bottom:130.784034px;}
.y133_c00414{bottom:132.670200px;}
.y132_c00414{bottom:133.440786px;}
.y131_c00414{bottom:134.195610px;}
.y130_c00414{bottom:135.256266px;}
.y12f_c00414{bottom:152.987472px;}
.y12e_c00414{bottom:154.250328px;}
.y12d_c00414{bottom:154.873188px;}
.y12c_c00414{bottom:157.055886px;}
.y12b_c00414{bottom:158.620848px;}
.y12a_c00414{bottom:161.724312px;}
.y129_c00414{bottom:162.966000px;}
.y128_c00414{bottom:164.191518px;}
.y127_c00414{bottom:164.824206px;}
.y126_c00414{bottom:166.966458px;}
.y125_c00414{bottom:168.182274px;}
.y124_c00414{bottom:169.072716px;}
.y123_c00414{bottom:170.914500px;}
.y122_c00414{bottom:187.546781px;}
.y121_c00414{bottom:188.769070px;}
.y120_c00414{bottom:190.256676px;}
.y11f_c00414{bottom:192.061356px;}
.y11e_c00414{bottom:193.277166px;}
.y11d_c00414{bottom:194.461832px;}
.y11c_c00414{bottom:195.351495px;}
.y11b_c00414{bottom:197.765376px;}
.y11a_c00414{bottom:199.531662px;}
.y119_c00414{bottom:200.739413px;}
.y118_c00414{bottom:203.671491px;}
.y117_c00414{bottom:205.134270px;}
.y116_c00414{bottom:206.011500px;}
.y115_c00414{bottom:223.443956px;}
.y114_c00414{bottom:224.603012px;}
.y113_c00414{bottom:225.103907px;}
.y112_c00414{bottom:226.117299px;}
.y111_c00414{bottom:227.612070px;}
.y110_c00414{bottom:229.112120px;}
.y10f_c00414{bottom:229.447350px;}
.y10e_c00414{bottom:230.262119px;}
.y10d_c00414{bottom:230.752554px;}
.y10c_c00414{bottom:231.241893px;}
.y10b_c00414{bottom:232.395059px;}
.y10a_c00414{bottom:233.191233px;}
.y109_c00414{bottom:258.742851px;}
.y108_c00414{bottom:261.338166px;}
.y107_c00414{bottom:262.766999px;}
.y106_c00414{bottom:263.549948px;}
.y105_c00414{bottom:265.144962px;}
.y104_c00414{bottom:265.739090px;}
.y103_c00414{bottom:266.540649px;}
.y102_c00414{bottom:268.325480px;}
.y101_c00414{bottom:268.703786px;}
.y100_c00414{bottom:269.104502px;}
.yff_c00414{bottom:270.865494px;}
.yfe_c00414{bottom:271.267409px;}
.yfd_c00414{bottom:295.791579px;}
.yfc_c00414{bottom:296.862399px;}
.yfb_c00414{bottom:298.980315px;}
.yfa_c00414{bottom:299.714676px;}
.yf9_c00414{bottom:300.765015px;}
.yf8_c00414{bottom:302.351208px;}
.yf7_c00414{bottom:302.873598px;}
.yf6_c00414{bottom:303.944571px;}
.yf5_c00414{bottom:305.831060px;}
.yf4_c00414{bottom:333.327681px;}
.yf3_c00414{bottom:334.100966px;}
.yf2_c00414{bottom:334.690095px;}
.yf1_c00414{bottom:335.707068px;}
.yf0_c00414{bottom:336.513396px;}
.yef_c00414{bottom:338.707128px;}
.yee_c00414{bottom:339.699422px;}
.yed_c00414{bottom:340.875692px;}
.yec_c00414{bottom:341.683830px;}
.yeb_c00414{bottom:343.063839px;}
.yea_c00414{bottom:344.044943px;}
.ye9_c00414{bottom:344.636520px;}
.ye8_c00414{bottom:345.053199px;}
.ye7_c00414{bottom:345.797036px;}
.ye6_c00414{bottom:368.997699px;}
.ye5_c00414{bottom:369.353750px;}
.ye4_c00414{bottom:370.100258px;}
.ye3_c00414{bottom:370.949855px;}
.ye2_c00414{bottom:372.296364px;}
.ye1_c00414{bottom:373.395149px;}
.ye0_c00414{bottom:374.114582px;}
.ydf_c00414{bottom:374.949821px;}
.yde_c00414{bottom:376.043976px;}
.ydd_c00414{bottom:400.561929px;}
.ydc_c00414{bottom:402.165461px;}
.ydb_c00414{bottom:403.357235px;}
.yda_c00414{bottom:404.173074px;}
.yd9_c00414{bottom:404.576723px;}
.yd8_c00414{bottom:406.172145px;}
.yd7_c00414{bottom:407.363001px;}
.yd6_c00414{bottom:408.136770px;}
.yd5_c00414{bottom:409.906760px;}
.yd4_c00414{bottom:410.513408px;}
.yd3_c00414{bottom:412.501004px;}
.yd2_c00414{bottom:439.088699px;}
.yd1_c00414{bottom:440.813223px;}
.yd0_c00414{bottom:441.258843px;}
.ycf_c00414{bottom:442.041968px;}
.yce_c00414{bottom:443.596095px;}
.ycd_c00414{bottom:444.075780px;}
.ycc_c00414{bottom:444.683811px;}
.ycb_c00414{bottom:445.157138px;}
.yca_c00414{bottom:446.084657px;}
.yc9_c00414{bottom:447.614852px;}
.yc8_c00414{bottom:448.683735px;}
.yc7_c00414{bottom:475.983203px;}
.yc6_c00414{bottom:476.568942px;}
.yc5_c00414{bottom:477.425514px;}
.yc4_c00414{bottom:478.162889px;}
.yc3_c00414{bottom:479.444708px;}
.yc2_c00414{bottom:480.164168px;}
.yc1_c00414{bottom:481.042101px;}
.yc0_c00414{bottom:481.606658px;}
.ybf_c00414{bottom:483.042182px;}
.ybe_c00414{bottom:483.464109px;}
.ybd_c00414{bottom:484.867701px;}
.ybc_c00414{bottom:512.566389px;}
.ybb_c00414{bottom:512.871066px;}
.yba_c00414{bottom:514.311665px;}
.yb9_c00414{bottom:515.326302px;}
.yb8_c00414{bottom:515.615457px;}
.yb7_c00414{bottom:516.763326px;}
.yb6_c00414{bottom:517.624539px;}
.yb5_c00414{bottom:519.193499px;}
.yb4_c00414{bottom:520.337211px;}
.yb3_c00414{bottom:521.323338px;}
.yb2_c00414{bottom:548.183241px;}
.yb1_c00414{bottom:550.400054px;}
.yb0_c00414{bottom:552.183003px;}
.yaf_c00414{bottom:553.515825px;}
.yae_c00414{bottom:554.379455px;}
.yad_c00414{bottom:555.963059px;}
.yac_c00414{bottom:556.632591px;}
.yab_c00414{bottom:557.259429px;}
.yaa_c00414{bottom:559.492965px;}
.ya9_c00414{bottom:560.102396px;}
.ya8_c00414{bottom:560.750211px;}
.ya7_c00414{bottom:583.310214px;}
.ya6_c00414{bottom:583.698963px;}
.ya5_c00414{bottom:584.771126px;}
.ya4_c00414{bottom:586.365875px;}
.ya3_c00414{bottom:587.830718px;}
.ya2_c00414{bottom:588.222735px;}
.ya1_c00414{bottom:589.032863px;}
.ya0_c00414{bottom:589.683876px;}
.y9f_c00414{bottom:590.993303px;}
.y9e_c00414{bottom:616.952808px;}
.y9d_c00414{bottom:618.702422px;}
.y9c_c00414{bottom:619.344845px;}
.y9b_c00414{bottom:620.838239px;}
.y9a_c00414{bottom:622.526037px;}
.y99_c00414{bottom:623.141669px;}
.y98_c00414{bottom:624.398627px;}
.y97_c00414{bottom:625.661573px;}
.y96_c00414{bottom:627.539385px;}
.y95_c00414{bottom:627.953477px;}
.y94_c00414{bottom:629.610302px;}
.y93_c00414{bottom:652.720208px;}
.y92_c00414{bottom:653.491593px;}
.y91_c00414{bottom:654.743072px;}
.y90_c00414{bottom:655.215204px;}
.y8f_c00414{bottom:655.551102px;}
.y8e_c00414{bottom:656.913624px;}
.y8d_c00414{bottom:658.478267px;}
.y8c_c00414{bottom:659.230896px;}
.y8b_c00414{bottom:660.611282px;}
.y8a_c00414{bottom:660.929291px;}
.y89_c00414{bottom:662.013534px;}
.y88_c00414{bottom:689.296488px;}
.y87_c00414{bottom:690.239841px;}
.y86_c00414{bottom:690.761535px;}
.y85_c00414{bottom:691.425975px;}
.y84_c00414{bottom:692.891201px;}
.y83_c00414{bottom:693.695250px;}
.y82_c00414{bottom:694.625963px;}
.y81_c00414{bottom:695.948234px;}
.y80_c00414{bottom:696.215837px;}
.y7f_c00414{bottom:696.990627px;}
.y7e_c00414{bottom:697.388544px;}
.y7d_c00414{bottom:725.380347px;}
.y7c_c00414{bottom:725.977826px;}
.y7b_c00414{bottom:727.291292px;}
.y7a_c00414{bottom:727.864191px;}
.y79_c00414{bottom:729.310205px;}
.y78_c00414{bottom:730.434158px;}
.y77_c00414{bottom:731.006394px;}
.y76_c00414{bottom:732.164604px;}
.y75_c00414{bottom:732.571601px;}
.y74_c00414{bottom:733.305656px;}
.y73_c00414{bottom:762.225617px;}
.y72_c00414{bottom:762.665832px;}
.y71_c00414{bottom:763.894451px;}
.y70_c00414{bottom:764.879495px;}
.y6f_c00414{bottom:765.320471px;}
.y6e_c00414{bottom:766.430241px;}
.y6d_c00414{bottom:766.757631px;}
.y6c_c00414{bottom:767.534898px;}
.y6b_c00414{bottom:768.410262px;}
.y6a_c00414{bottom:797.422470px;}
.y69_c00414{bottom:797.987423px;}
.y68_c00414{bottom:798.946682px;}
.y67_c00414{bottom:800.439783px;}
.y66_c00414{bottom:801.389072px;}
.y65_c00414{bottom:802.518671px;}
.y64_c00414{bottom:803.069624px;}
.y63_c00414{bottom:804.203660px;}
.y62_c00414{bottom:804.754383px;}
.y61_c00414{bottom:805.328592px;}
.y60_c00414{bottom:805.873247px;}
.y5f_c00414{bottom:806.267706px;}
.y5e_c00414{bottom:807.567416px;}
.y5d_c00414{bottom:833.369085px;}
.y5c_c00414{bottom:833.933502px;}
.y5b_c00414{bottom:835.820273px;}
.y5a_c00414{bottom:836.394252px;}
.y59_c00414{bottom:836.944032px;}
.y58_c00414{bottom:837.895590px;}
.y57_c00414{bottom:838.459293px;}
.y56_c00414{bottom:840.356238px;}
.y55_c00414{bottom:841.274263px;}
.y54_c00414{bottom:842.404500px;}
.y53_c00414{bottom:871.667202px;}
.y52_c00414{bottom:874.611543px;}
.y51_c00414{bottom:875.975796px;}
.y50_c00414{bottom:877.121946px;}
.y4f_c00414{bottom:877.615785px;}
.y4e_c00414{bottom:878.126145px;}
.y4d_c00414{bottom:878.775744px;}
.y4c_c00414{bottom:879.904200px;}
.y4b_c00414{bottom:904.659879px;}
.y4a_c00414{bottom:905.303457px;}
.y49_c00414{bottom:906.382542px;}
.y48_c00414{bottom:907.314747px;}
.y47_c00414{bottom:907.946286px;}
.y46_c00414{bottom:908.853537px;}
.y45_c00414{bottom:910.248228px;}
.y44_c00414{bottom:911.499861px;}
.y43_c00414{bottom:911.945166px;}
.y42_c00414{bottom:912.569160px;}
.y41_c00414{bottom:913.460040px;}
.y40_c00414{bottom:913.928721px;}
.y3f_c00414{bottom:940.714041px;}
.y3e_c00414{bottom:941.823582px;}
.y3d_c00414{bottom:942.159114px;}
.y3c_c00414{bottom:942.393975px;}
.y3b_c00414{bottom:943.493616px;}
.y3a_c00414{bottom:943.815645px;}
.y39_c00414{bottom:944.374773px;}
.y38_c00414{bottom:944.691204px;}
.y37_c00414{bottom:945.250197px;}
.y36_c00414{bottom:945.800448px;}
.y35_c00414{bottom:946.016046px;}
.y34_c00414{bottom:946.334337px;}
.y33_c00414{bottom:975.967155px;}
.y32_c00414{bottom:977.284263px;}
.y31_c00414{bottom:977.786538px;}
.y30_c00414{bottom:979.131882px;}
.y2f_c00414{bottom:979.614222px;}
.y2e_c00414{bottom:980.448909px;}
.y2d_c00414{bottom:980.939685px;}
.y2c_c00414{bottom:981.924327px;}
.y2b_c00414{bottom:982.596141px;}
.y2a_c00414{bottom:983.406033px;}
.y29_c00414{bottom:984.575601px;}
.y28_c00414{bottom:985.223607px;}
.y27_c00414{bottom:1011.168450px;}
.y26_c00414{bottom:1011.426249px;}
.y25_c00414{bottom:1011.968136px;}
.y24_c00414{bottom:1012.316514px;}
.y23_c00414{bottom:1012.585812px;}
.y22_c00414{bottom:1012.855380px;}
.y21_c00414{bottom:1013.291532px;}
.y20_c00414{bottom:1013.910852px;}
.y1f_c00414{bottom:1014.094101px;}
.y1e_c00414{bottom:1014.710133px;}
.y1d_c00414{bottom:1015.399446px;}
.y1c_c00414{bottom:1015.584339px;}
.y1b_c00414{bottom:1016.020356px;}
.y1a_c00414{bottom:1016.275512px;}
.y19_c00414{bottom:1046.901528px;}
.y18_c00414{bottom:1047.510162px;}
.y17_c00414{bottom:1048.330746px;}
.y16_c00414{bottom:1049.109534px;}
.y15_c00414{bottom:1050.494661px;}
.y14_c00414{bottom:1050.926337px;}
.y13_c00414{bottom:1052.318700px;}
.y12_c00414{bottom:1053.877815px;}
.y11_c00414{bottom:1054.495116px;}
.y10_c00414{bottom:1054.877409px;}
.yf_c00414{bottom:1056.244500px;}
.yd_c00414{bottom:1089.708000px;}
.yc_c00414{bottom:1089.708044px;}
.ye_c00414{bottom:1089.708307px;}
.yb_c00414{bottom:1117.414695px;}
.ya_c00414{bottom:1117.955448px;}
.y9_c00414{bottom:1119.811338px;}
.y8_c00414{bottom:1120.238233px;}
.y7_c00414{bottom:1120.806603px;}
.y6_c00414{bottom:1122.696102px;}
.y5_c00414{bottom:1123.239813px;}
.y4_c00414{bottom:1125.117939px;}
.y3_c00414{bottom:1125.875263px;}
.y2_c00414{bottom:1126.444500px;}
.y1_c00414{bottom:1179.103500px;}
.h10_c00414{height:48.000000px;}
.h11_c00414{height:54.000000px;}
.h2_c00414{height:72.000000px;}
.hb_c00414{height:72.010403px;}
.h7_c00414{height:72.011663px;}
.h3_c00414{height:78.011270px;}
.hf_c00414{height:78.030570px;}
.ha_c00414{height:84.012137px;}
.h4_c00414{height:84.013607px;}
.hd_c00414{height:84.030612px;}
.he_c00414{height:84.032922px;}
.h12_c00414{height:89.985689px;}
.hc_c00414{height:90.013004px;}
.h8_c00414{height:90.014579px;}
.h9_c00414{height:96.013871px;}
.h5_c00414{height:102.016523px;}
.h6_c00414{height:104.584939px;}
.h1_c00414{height:1251.000000px;}
.h0_c00414{height:1251.150000px;}
.w0_c00414{width:915.000000px;}
.x0_c00414{left:0.000000px;}
.xbd_c00414{left:149.040000px;}
.x83_c00414{left:151.263915px;}
.x41_c00414{left:153.147219px;}
.x1a_c00414{left:155.662053px;}
.xe_c00414{left:156.855099px;}
.x9e_c00414{left:172.821107px;}
.xac_c00414{left:183.901500px;}
.x69_c00414{left:185.010735px;}
.x52_c00414{left:186.117982px;}
.x1b_c00414{left:187.509777px;}
.xf_c00414{left:188.719804px;}
.x91_c00414{left:193.722972px;}
.xba_c00414{left:194.853204px;}
.x26_c00414{left:198.294948px;}
.xa6_c00414{left:204.908069px;}
.x2c_c00414{left:209.359305px;}
.x6a_c00414{left:215.475680px;}
.x92_c00414{left:216.909590px;}
.xbb_c00414{left:226.314732px;}
.x73_c00414{left:228.475980px;}
.x38_c00414{left:230.588127px;}
.xad_c00414{left:238.078500px;}
.x49_c00414{left:240.669650px;}
.x10_c00414{left:242.187757px;}
.xb1_c00414{left:248.358000px;}
.x53_c00414{left:250.669965px;}
.x33_c00414{left:252.791403px;}
.xbc_c00414{left:258.392802px;}
.x7a_c00414{left:260.864676px;}
.x5e_c00414{left:261.885543px;}
.x3e_c00414{left:262.942500px;}
.x4_c00414{left:264.366000px;}
.x11_c00414{left:266.001000px;}
.x99_c00414{left:270.230432px;}
.x39_c00414{left:273.845949px;}
.x27_c00414{left:276.275160px;}
.xa7_c00414{left:281.832195px;}
.x42_c00414{left:284.842719px;}
.xbe_c00414{left:290.332500px;}
.xb2_c00414{left:291.780000px;}
.x7b_c00414{left:293.274369px;}
.x89_c00414{left:294.497780px;}
.x5_c00414{left:297.850500px;}
.x93_c00414{left:304.301111px;}
.x3a_c00414{left:307.867785px;}
.x9f_c00414{left:313.937210px;}
.x65_c00414{left:315.689166px;}
.x43_c00414{left:318.619719px;}
.x2d_c00414{left:320.333289px;}
.x6b_c00414{left:327.177993px;}
.x34_c00414{left:329.202411px;}
.x28_c00414{left:330.272076px;}
.x84_c00414{left:336.983901px;}
.x3b_c00414{left:340.805067px;}
.x6_c00414{left:342.399000px;}
.xa8_c00414{left:347.232939px;}
.x1c_c00414{left:351.412788px;}
.x6c_c00414{left:358.490387px;}
.x5f_c00414{left:360.694677px;}
.x12_c00414{left:363.189000px;}
.xb3_c00414{left:368.289000px;}
.x9a_c00414{left:369.871140px;}
.x4e_c00414{left:373.473989px;}
.x29_c00414{left:375.097506px;}
.x94_c00414{left:380.976810px;}
.x3f_c00414{left:383.428500px;}
.xb4_c00414{left:390.885000px;}
.x6d_c00414{left:391.961178px;}
.xbf_c00414{left:393.477000px;}
.x13_c00414{left:397.483500px;}
.xa9_c00414{left:401.515275px;}
.x7c_c00414{left:403.753892px;}
.x58_c00414{left:404.783138px;}
.x2e_c00414{left:407.821371px;}
.xa0_c00414{left:413.102027px;}
.x66_c00414{left:415.882683px;}
.x1_c00414{left:418.230000px;}
.xaa_c00414{left:423.882540px;}
.x95_c00414{left:425.866545px;}
.x60_c00414{left:427.130408px;}
.x1d_c00414{left:428.400639px;}
.xb5_c00414{left:434.653500px;}
.x8a_c00414{left:435.745857px;}
.x74_c00414{left:437.206184px;}
.x2_c00414{left:440.640000px;}
.x7d_c00414{left:447.201350px;}
.x44_c00414{left:450.132219px;}
.x1e_c00414{left:451.335270px;}
.x7_c00414{left:452.877000px;}
.xa1_c00414{left:457.604762px;}
.x4f_c00414{left:459.888854px;}
.x4a_c00414{left:462.103491px;}
.x9b_c00414{left:469.001823px;}
.x6e_c00414{left:471.169149px;}
.x3_c00414{left:473.580000px;}
.xb6_c00414{left:478.999500px;}
.x85_c00414{left:480.395694px;}
.x8_c00414{left:484.860000px;}
.x8f_c00414{left:491.527013px;}
.x61_c00414{left:493.302164px;}
.x40_c00414{left:495.013500px;}
.x8b_c00414{left:501.912735px;}
.x75_c00414{left:503.399672px;}
.x4b_c00414{left:506.136719px;}
.x3c_c00414{left:508.197612px;}
.x6f_c00414{left:514.380456px;}
.x45_c00414{left:516.579219px;}
.x35_c00414{left:518.234019px;}
.xab_c00414{left:523.859432px;}
.x62_c00414{left:525.720567px;}
.x54_c00414{left:527.701502px;}
.x1f_c00414{left:528.839229px;}
.x9c_c00414{left:534.669945px;}
.x67_c00414{left:537.972062px;}
.x96_c00414{left:546.279980px;}
.x2f_c00414{left:549.906810px;}
.x14_c00414{left:561.454500px;}
.x7e_c00414{left:570.115214px;}
.x50_c00414{left:571.161927px;}
.x30_c00414{left:573.374685px;}
.xa2_c00414{left:579.228696px;}
.x70_c00414{left:581.043065px;}
.x20_c00414{left:583.413057px;}
.x15_c00414{left:585.436500px;}
.x8c_c00414{left:590.553731px;}
.x76_c00414{left:591.662664px;}
.x9_c00414{left:596.007000px;}
.xc0_c00414{left:600.840150px;}
.x4c_c00414{left:604.680449px;}
.x31_c00414{left:606.853491px;}
.x59_c00414{left:613.862297px;}
.x51_c00414{left:615.188411px;}
.x21_c00414{left:617.145132px;}
.xa3_c00414{left:622.724957px;}
.x86_c00414{left:625.715615px;}
.x36_c00414{left:628.146930px;}
.xa_c00414{left:629.440500px;}
.xc1_c00414{left:633.213744px;}
.x5a_c00414{left:637.857521px;}
.xb7_c00414{left:645.729000px;}
.x55_c00414{left:649.813380px;}
.x22_c00414{left:650.862207px;}
.xb_c00414{left:654.552000px;}
.x8d_c00414{left:658.316583px;}
.x46_c00414{left:660.249219px;}
.x16_c00414{left:662.388000px;}
.x7f_c00414{left:668.728920px;}
.x71_c00414{left:670.212026px;}
.x5b_c00414{left:671.631755px;}
.xc2_c00414{left:677.940972px;}
.x87_c00414{left:681.666971px;}
.x2a_c00414{left:684.312165px;}
.x77_c00414{left:691.921973px;}
.x63_c00414{left:693.167381px;}
.x23_c00414{left:694.391037px;}
.xa4_c00414{left:702.096105px;}
.x3d_c00414{left:704.532723px;}
.x17_c00414{left:705.654000px;}
.x88_c00414{left:713.528603px;}
.x47_c00414{left:716.676219px;}
.x32_c00414{left:717.843975px;}
.xb8_c00414{left:723.682500px;}
.x80_c00414{left:725.431271px;}
.x4d_c00414{left:727.525560px;}
.xae_c00414{left:734.923500px;}
.xb9_c00414{left:745.927500px;}
.x56_c00414{left:748.623770px;}
.x48_c00414{left:749.908719px;}
.x18_c00414{left:751.242000px;}
.xc3_c00414{left:757.418415px;}
.x90_c00414{left:758.972772px;}
.x5c_c00414{left:761.046819px;}
.x24_c00414{left:762.174741px;}
.xc_c00414{left:763.722000px;}
.x97_c00414{left:769.425180px;}
.x2b_c00414{left:772.072890px;}
.x9d_c00414{left:779.915127px;}
.x72_c00414{left:781.018865px;}
.x19_c00414{left:785.055000px;}
.xaf_c00414{left:790.020000px;}
.x81_c00414{left:791.351759px;}
.x68_c00414{left:792.650211px;}
.x25_c00414{left:794.336019px;}
.xd_c00414{left:795.531000px;}
.x78_c00414{left:802.699995px;}
.x8e_c00414{left:813.655457px;}
.x5d_c00414{left:816.131124px;}
.x37_c00414{left:817.736565px;}
.x64_c00414{left:819.047597px;}
.x79_c00414{left:826.182602px;}
.x57_c00414{left:827.239450px;}
.xb0_c00414{left:835.290000px;}
.x82_c00414{left:836.398319px;}
.x98_c00414{left:845.065880px;}
.xa5_c00414{left:846.288657px;}
@media print{
.v0_c00414{vertical-align:0.000000pt;}
.v1_c00414{vertical-align:2.283036pt;}
.ls0_c00414{letter-spacing:0.000000pt;}
.ws0_c00414{word-spacing:0.000000pt;}
._0_c00414{width:48.478968pt;}
.fsd_c00414{font-size:42.666667pt;}
.fse_c00414{font-size:48.000000pt;}
.fs0_c00414{font-size:64.000000pt;}
.fs8_c00414{font-size:64.009247pt;}
.fs4_c00414{font-size:64.010367pt;}
.fs1_c00414{font-size:69.343351pt;}
.fsc_c00414{font-size:69.360507pt;}
.fs7_c00414{font-size:74.677455pt;}
.fs2_c00414{font-size:74.678762pt;}
.fsa_c00414{font-size:74.693878pt;}
.fsb_c00414{font-size:74.695930pt;}
.fsf_c00414{font-size:79.987279pt;}
.fs9_c00414{font-size:80.011559pt;}
.fs5_c00414{font-size:80.012959pt;}
.fs6_c00414{font-size:85.345663pt;}
.fs3_c00414{font-size:90.681353pt;}
.y0_c00414{bottom:0.000000pt;}
.y13c_c00414{bottom:61.104000pt;}
.y13b_c00414{bottom:62.458667pt;}
.y13a_c00414{bottom:63.476000pt;}
.y139_c00414{bottom:64.493333pt;}
.y138_c00414{bottom:66.969333pt;}
.y137_c00414{bottom:69.520000pt;}
.y136_c00414{bottom:70.326667pt;}
.y135_c00414{bottom:88.212000pt;}
.y142_c00414{bottom:101.287148pt;}
.y141_c00414{bottom:102.440013pt;}
.y140_c00414{bottom:105.339424pt;}
.y13f_c00414{bottom:106.971115pt;}
.y13e_c00414{bottom:108.152133pt;}
.y13d_c00414{bottom:113.777333pt;}
.y134_c00414{bottom:116.252475pt;}
.y133_c00414{bottom:117.929067pt;}
.y132_c00414{bottom:118.614032pt;}
.y131_c00414{bottom:119.284987pt;}
.y130_c00414{bottom:120.227792pt;}
.y12f_c00414{bottom:135.988864pt;}
.y12e_c00414{bottom:137.111403pt;}
.y12d_c00414{bottom:137.665056pt;}
.y12c_c00414{bottom:139.605232pt;}
.y12b_c00414{bottom:140.996309pt;}
.y12a_c00414{bottom:143.754944pt;}
.y129_c00414{bottom:144.858667pt;}
.y128_c00414{bottom:145.948016pt;}
.y127_c00414{bottom:146.510405pt;}
.y126_c00414{bottom:148.414629pt;}
.y125_c00414{bottom:149.495355pt;}
.y124_c00414{bottom:150.286859pt;}
.y123_c00414{bottom:151.924000pt;}
.y122_c00414{bottom:166.708249pt;}
.y121_c00414{bottom:167.794729pt;}
.y120_c00414{bottom:169.117045pt;}
.y11f_c00414{bottom:170.721205pt;}
.y11e_c00414{bottom:171.801925pt;}
.y11d_c00414{bottom:172.854961pt;}
.y11c_c00414{bottom:173.645773pt;}
.y11b_c00414{bottom:175.791445pt;}
.y11a_c00414{bottom:177.361477pt;}
.y119_c00414{bottom:178.435033pt;}
.y118_c00414{bottom:181.041325pt;}
.y117_c00414{bottom:182.341573pt;}
.y116_c00414{bottom:183.121333pt;}
.y115_c00414{bottom:198.616849pt;}
.y114_c00414{bottom:199.647121pt;}
.y113_c00414{bottom:200.092361pt;}
.y112_c00414{bottom:200.993155pt;}
.y111_c00414{bottom:202.321840pt;}
.y110_c00414{bottom:203.655217pt;}
.y10f_c00414{bottom:203.953200pt;}
.y10e_c00414{bottom:204.677439pt;}
.y10d_c00414{bottom:205.113381pt;}
.y10c_c00414{bottom:205.548349pt;}
.y10b_c00414{bottom:206.573385pt;}
.y10a_c00414{bottom:207.281096pt;}
.y109_c00414{bottom:229.993645pt;}
.y108_c00414{bottom:232.300592pt;}
.y107_c00414{bottom:233.570665pt;}
.y106_c00414{bottom:234.266620pt;}
.y105_c00414{bottom:235.684411pt;}
.y104_c00414{bottom:236.212524pt;}
.y103_c00414{bottom:236.925021pt;}
.y102_c00414{bottom:238.511537pt;}
.y101_c00414{bottom:238.847809pt;}
.y100_c00414{bottom:239.204001pt;}
.yff_c00414{bottom:240.769328pt;}
.yfe_c00414{bottom:241.126585pt;}
.yfd_c00414{bottom:262.925848pt;}
.yfc_c00414{bottom:263.877688pt;}
.yfb_c00414{bottom:265.760280pt;}
.yfa_c00414{bottom:266.413045pt;}
.yf9_c00414{bottom:267.346680pt;}
.yf8_c00414{bottom:268.756629pt;}
.yf7_c00414{bottom:269.220976pt;}
.yf6_c00414{bottom:270.172952pt;}
.yf5_c00414{bottom:271.849831pt;}
.yf4_c00414{bottom:296.291272pt;}
.yf3_c00414{bottom:296.978636pt;}
.yf2_c00414{bottom:297.502307pt;}
.yf1_c00414{bottom:298.406283pt;}
.yf0_c00414{bottom:299.123019pt;}
.yef_c00414{bottom:301.073003pt;}
.yee_c00414{bottom:301.955041pt;}
.yed_c00414{bottom:303.000615pt;}
.yec_c00414{bottom:303.718960pt;}
.yeb_c00414{bottom:304.945635pt;}
.yea_c00414{bottom:305.817727pt;}
.ye9_c00414{bottom:306.343573pt;}
.ye8_c00414{bottom:306.713955pt;}
.ye7_c00414{bottom:307.375143pt;}
.ye6_c00414{bottom:327.997955pt;}
.ye5_c00414{bottom:328.314444pt;}
.ye4_c00414{bottom:328.978007pt;}
.ye3_c00414{bottom:329.733204pt;}
.ye2_c00414{bottom:330.930101pt;}
.ye1_c00414{bottom:331.906799pt;}
.ye0_c00414{bottom:332.546295pt;}
.ydf_c00414{bottom:333.288729pt;}
.yde_c00414{bottom:334.261312pt;}
.ydd_c00414{bottom:356.055048pt;}
.ydc_c00414{bottom:357.480409pt;}
.ydb_c00414{bottom:358.539764pt;}
.yda_c00414{bottom:359.264955pt;}
.yd9_c00414{bottom:359.623753pt;}
.yd8_c00414{bottom:361.041907pt;}
.yd7_c00414{bottom:362.100445pt;}
.yd6_c00414{bottom:362.788240pt;}
.yd5_c00414{bottom:364.361564pt;}
.yd4_c00414{bottom:364.900807pt;}
.yd3_c00414{bottom:366.667559pt;}
.yd2_c00414{bottom:390.301065pt;}
.yd1_c00414{bottom:391.833976pt;}
.yd0_c00414{bottom:392.230083pt;}
.ycf_c00414{bottom:392.926193pt;}
.yce_c00414{bottom:394.307640pt;}
.ycd_c00414{bottom:394.734027pt;}
.ycc_c00414{bottom:395.274499pt;}
.ycb_c00414{bottom:395.695233pt;}
.yca_c00414{bottom:396.519695pt;}
.yc9_c00414{bottom:397.879868pt;}
.yc8_c00414{bottom:398.829987pt;}
.yc7_c00414{bottom:423.096180pt;}
.yc6_c00414{bottom:423.616837pt;}
.yc5_c00414{bottom:424.378235pt;}
.yc4_c00414{bottom:425.033679pt;}
.yc3_c00414{bottom:426.173073pt;}
.yc2_c00414{bottom:426.812593pt;}
.yc1_c00414{bottom:427.592979pt;}
.yc0_c00414{bottom:428.094807pt;}
.ybf_c00414{bottom:429.370828pt;}
.ybe_c00414{bottom:429.745875pt;}
.ybd_c00414{bottom:430.993512pt;}
.ybc_c00414{bottom:455.614568pt;}
.ybb_c00414{bottom:455.885392pt;}
.yba_c00414{bottom:457.165924pt;}
.yb9_c00414{bottom:458.067824pt;}
.yb8_c00414{bottom:458.324851pt;}
.yb7_c00414{bottom:459.345179pt;}
.yb6_c00414{bottom:460.110701pt;}
.yb5_c00414{bottom:461.505332pt;}
.yb4_c00414{bottom:462.521965pt;}
.yb3_c00414{bottom:463.398523pt;}
.yb2_c00414{bottom:487.273992pt;}
.yb1_c00414{bottom:489.244492pt;}
.yb0_c00414{bottom:490.829336pt;}
.yaf_c00414{bottom:492.014067pt;}
.yae_c00414{bottom:492.781737pt;}
.yad_c00414{bottom:494.189385pt;}
.yac_c00414{bottom:494.784525pt;}
.yab_c00414{bottom:495.341715pt;}
.yaa_c00414{bottom:497.327080pt;}
.ya9_c00414{bottom:497.868796pt;}
.ya8_c00414{bottom:498.444632pt;}
.ya7_c00414{bottom:518.497968pt;}
.ya6_c00414{bottom:518.843523pt;}
.ya5_c00414{bottom:519.796556pt;}
.ya4_c00414{bottom:521.214111pt;}
.ya3_c00414{bottom:522.516193pt;}
.ya2_c00414{bottom:522.864653pt;}
.ya1_c00414{bottom:523.584767pt;}
.ya0_c00414{bottom:524.163445pt;}
.y9f_c00414{bottom:525.327380pt;}
.y9e_c00414{bottom:548.402496pt;}
.y9d_c00414{bottom:549.957708pt;}
.y9c_c00414{bottom:550.528751pt;}
.y9b_c00414{bottom:551.856212pt;}
.y9a_c00414{bottom:553.356477pt;}
.y99_c00414{bottom:553.903705pt;}
.y98_c00414{bottom:555.021001pt;}
.y97_c00414{bottom:556.143620pt;}
.y96_c00414{bottom:557.812787pt;}
.y95_c00414{bottom:558.180868pt;}
.y94_c00414{bottom:559.653601pt;}
.y93_c00414{bottom:580.195740pt;}
.y92_c00414{bottom:580.881416pt;}
.y91_c00414{bottom:581.993841pt;}
.y90_c00414{bottom:582.413515pt;}
.y8f_c00414{bottom:582.712091pt;}
.y8e_c00414{bottom:583.923221pt;}
.y8d_c00414{bottom:585.314015pt;}
.y8c_c00414{bottom:585.983019pt;}
.y8b_c00414{bottom:587.210028pt;}
.y8a_c00414{bottom:587.492703pt;}
.y89_c00414{bottom:588.456475pt;}
.y88_c00414{bottom:612.707989pt;}
.y87_c00414{bottom:613.546525pt;}
.y86_c00414{bottom:614.010253pt;}
.y85_c00414{bottom:614.600867pt;}
.y84_c00414{bottom:615.903289pt;}
.y83_c00414{bottom:616.618000pt;}
.y82_c00414{bottom:617.445300pt;}
.y81_c00414{bottom:618.620652pt;}
.y80_c00414{bottom:618.858521pt;}
.y7f_c00414{bottom:619.547224pt;}
.y7e_c00414{bottom:619.900928pt;}
.y7d_c00414{bottom:644.782531pt;}
.y7c_c00414{bottom:645.313623pt;}
.y7b_c00414{bottom:646.481148pt;}
.y7a_c00414{bottom:646.990392pt;}
.y79_c00414{bottom:648.275737pt;}
.y78_c00414{bottom:649.274807pt;}
.y77_c00414{bottom:649.783461pt;}
.y76_c00414{bottom:650.812981pt;}
.y75_c00414{bottom:651.174756pt;}
.y74_c00414{bottom:651.827249pt;}
.y73_c00414{bottom:677.533881pt;}
.y72_c00414{bottom:677.925184pt;}
.y71_c00414{bottom:679.017289pt;}
.y70_c00414{bottom:679.892884pt;}
.y6f_c00414{bottom:680.284863pt;}
.y6e_c00414{bottom:681.271325pt;}
.y6d_c00414{bottom:681.562339pt;}
.y6c_c00414{bottom:682.253243pt;}
.y6b_c00414{bottom:683.031344pt;}
.y6a_c00414{bottom:708.819973pt;}
.y69_c00414{bottom:709.322153pt;}
.y68_c00414{bottom:710.174828pt;}
.y67_c00414{bottom:711.502029pt;}
.y66_c00414{bottom:712.345841pt;}
.y65_c00414{bottom:713.349929pt;}
.y64_c00414{bottom:713.839665pt;}
.y63_c00414{bottom:714.847697pt;}
.y62_c00414{bottom:715.337229pt;}
.y61_c00414{bottom:715.847637pt;}
.y60_c00414{bottom:716.331775pt;}
.y5f_c00414{bottom:716.682405pt;}
.y5e_c00414{bottom:717.837703pt;}
.y5d_c00414{bottom:740.772520pt;}
.y5c_c00414{bottom:741.274224pt;}
.y5b_c00414{bottom:742.951353pt;}
.y5a_c00414{bottom:743.461557pt;}
.y59_c00414{bottom:743.950251pt;}
.y58_c00414{bottom:744.796080pt;}
.y57_c00414{bottom:745.297149pt;}
.y56_c00414{bottom:746.983323pt;}
.y55_c00414{bottom:747.799345pt;}
.y54_c00414{bottom:748.804000pt;}
.y53_c00414{bottom:774.815291pt;}
.y52_c00414{bottom:777.432483pt;}
.y51_c00414{bottom:778.645152pt;}
.y50_c00414{bottom:779.663952pt;}
.y4f_c00414{bottom:780.102920pt;}
.y4e_c00414{bottom:780.556573pt;}
.y4d_c00414{bottom:781.133995pt;}
.y4c_c00414{bottom:782.137067pt;}
.y4b_c00414{bottom:804.142115pt;}
.y4a_c00414{bottom:804.714184pt;}
.y49_c00414{bottom:805.673371pt;}
.y48_c00414{bottom:806.501997pt;}
.y47_c00414{bottom:807.063365pt;}
.y46_c00414{bottom:807.869811pt;}
.y45_c00414{bottom:809.109536pt;}
.y44_c00414{bottom:810.222099pt;}
.y43_c00414{bottom:810.617925pt;}
.y42_c00414{bottom:811.172587pt;}
.y41_c00414{bottom:811.964480pt;}
.y40_c00414{bottom:812.381085pt;}
.y3f_c00414{bottom:836.190259pt;}
.y3e_c00414{bottom:837.176517pt;}
.y3d_c00414{bottom:837.474768pt;}
.y3c_c00414{bottom:837.683533pt;}
.y3b_c00414{bottom:838.660992pt;}
.y3a_c00414{bottom:838.947240pt;}
.y39_c00414{bottom:839.444243pt;}
.y38_c00414{bottom:839.725515pt;}
.y37_c00414{bottom:840.222397pt;}
.y36_c00414{bottom:840.711509pt;}
.y35_c00414{bottom:840.903152pt;}
.y34_c00414{bottom:841.186077pt;}
.y33_c00414{bottom:867.526360pt;}
.y32_c00414{bottom:868.697123pt;}
.y31_c00414{bottom:869.143589pt;}
.y30_c00414{bottom:870.339451pt;}
.y2f_c00414{bottom:870.768197pt;}
.y2e_c00414{bottom:871.510141pt;}
.y2d_c00414{bottom:871.946387pt;}
.y2c_c00414{bottom:872.821624pt;}
.y2b_c00414{bottom:873.418792pt;}
.y2a_c00414{bottom:874.138696pt;}
.y29_c00414{bottom:875.178312pt;}
.y28_c00414{bottom:875.754317pt;}
.y27_c00414{bottom:898.816400pt;}
.y26_c00414{bottom:899.045555pt;}
.y25_c00414{bottom:899.527232pt;}
.y24_c00414{bottom:899.836901pt;}
.y23_c00414{bottom:900.076277pt;}
.y22_c00414{bottom:900.315893pt;}
.y21_c00414{bottom:900.703584pt;}
.y20_c00414{bottom:901.254091pt;}
.y1f_c00414{bottom:901.416979pt;}
.y1e_c00414{bottom:901.964563pt;}
.y1d_c00414{bottom:902.577285pt;}
.y1c_c00414{bottom:902.741635pt;}
.y1b_c00414{bottom:903.129205pt;}
.y1a_c00414{bottom:903.356011pt;}
.y19_c00414{bottom:930.579136pt;}
.y18_c00414{bottom:931.120144pt;}
.y17_c00414{bottom:931.849552pt;}
.y16_c00414{bottom:932.541808pt;}
.y15_c00414{bottom:933.773032pt;}
.y14_c00414{bottom:934.156744pt;}
.y13_c00414{bottom:935.394400pt;}
.y12_c00414{bottom:936.780280pt;}
.y11_c00414{bottom:937.328992pt;}
.y10_c00414{bottom:937.668808pt;}
.yf_c00414{bottom:938.884000pt;}
.yd_c00414{bottom:968.629333pt;}
.yc_c00414{bottom:968.629372pt;}
.ye_c00414{bottom:968.629607pt;}
.yb_c00414{bottom:993.257507pt;}
.ya_c00414{bottom:993.738176pt;}
.y9_c00414{bottom:995.387856pt;}
.y8_c00414{bottom:995.767319pt;}
.y7_c00414{bottom:996.272536pt;}
.y6_c00414{bottom:997.952091pt;}
.y5_c00414{bottom:998.435389pt;}
.y4_c00414{bottom:1000.104835pt;}
.y3_c00414{bottom:1000.778012pt;}
.y2_c00414{bottom:1001.284000pt;}
.y1_c00414{bottom:1048.092000pt;}
.h10_c00414{height:42.666667pt;}
.h11_c00414{height:48.000000pt;}
.h2_c00414{height:64.000000pt;}
.hb_c00414{height:64.009247pt;}
.h7_c00414{height:64.010367pt;}
.h3_c00414{height:69.343351pt;}
.hf_c00414{height:69.360507pt;}
.ha_c00414{height:74.677455pt;}
.h4_c00414{height:74.678762pt;}
.hd_c00414{height:74.693878pt;}
.he_c00414{height:74.695930pt;}
.h12_c00414{height:79.987279pt;}
.hc_c00414{height:80.011559pt;}
.h8_c00414{height:80.012959pt;}
.h9_c00414{height:85.345663pt;}
.h5_c00414{height:90.681353pt;}
.h6_c00414{height:92.964390pt;}
.h1_c00414{height:1112.000000pt;}
.h0_c00414{height:1112.133333pt;}
.w0_c00414{width:813.333333pt;}
.x0_c00414{left:0.000000pt;}
.xbd_c00414{left:132.480000pt;}
.x83_c00414{left:134.456813pt;}
.x41_c00414{left:136.130861pt;}
.x1a_c00414{left:138.366269pt;}
.xe_c00414{left:139.426755pt;}
.x9e_c00414{left:153.618761pt;}
.xac_c00414{left:163.468000pt;}
.x69_c00414{left:164.453987pt;}
.x52_c00414{left:165.438207pt;}
.x1b_c00414{left:166.675357pt;}
.xf_c00414{left:167.750937pt;}
.x91_c00414{left:172.198197pt;}
.xba_c00414{left:173.202848pt;}
.x26_c00414{left:176.262176pt;}
.xa6_c00414{left:182.140505pt;}
.x2c_c00414{left:186.097160pt;}
.x6a_c00414{left:191.533937pt;}
.x92_c00414{left:192.808524pt;}
.xbb_c00414{left:201.168651pt;}
.x73_c00414{left:203.089760pt;}
.x38_c00414{left:204.967224pt;}
.xad_c00414{left:211.625333pt;}
.x49_c00414{left:213.928577pt;}
.x10_c00414{left:215.278007pt;}
.xb1_c00414{left:220.762667pt;}
.x53_c00414{left:222.817747pt;}
.x33_c00414{left:224.703469pt;}
.xbc_c00414{left:229.682491pt;}
.x7a_c00414{left:231.879712pt;}
.x5e_c00414{left:232.787149pt;}
.x3e_c00414{left:233.726667pt;}
.x4_c00414{left:234.992000pt;}
.x11_c00414{left:236.445333pt;}
.x99_c00414{left:240.204828pt;}
.x39_c00414{left:243.418621pt;}
.x27_c00414{left:245.577920pt;}
.xa7_c00414{left:250.517507pt;}
.x42_c00414{left:253.193528pt;}
.xbe_c00414{left:258.073333pt;}
.xb2_c00414{left:259.360000pt;}
.x7b_c00414{left:260.688328pt;}
.x89_c00414{left:261.775804pt;}
.x5_c00414{left:264.756000pt;}
.x93_c00414{left:270.489876pt;}
.x3a_c00414{left:273.660253pt;}
.x9f_c00414{left:279.055297pt;}
.x65_c00414{left:280.612592pt;}
.x43_c00414{left:283.217528pt;}
.x2d_c00414{left:284.740701pt;}
.x6b_c00414{left:290.824883pt;}
.x34_c00414{left:292.624365pt;}
.x28_c00414{left:293.575179pt;}
.x84_c00414{left:299.541245pt;}
.x3b_c00414{left:302.937837pt;}
.x6_c00414{left:304.354667pt;}
.xa8_c00414{left:308.651501pt;}
.x1c_c00414{left:312.366923pt;}
.x6c_c00414{left:318.658121pt;}
.x5f_c00414{left:320.617491pt;}
.x12_c00414{left:322.834667pt;}
.xb3_c00414{left:327.368000pt;}
.x9a_c00414{left:328.774347pt;}
.x4e_c00414{left:331.976879pt;}
.x29_c00414{left:333.420005pt;}
.x94_c00414{left:338.646053pt;}
.x3f_c00414{left:340.825333pt;}
.xb4_c00414{left:347.453333pt;}
.x6d_c00414{left:348.409936pt;}
.xbf_c00414{left:349.757333pt;}
.x13_c00414{left:353.318667pt;}
.xa9_c00414{left:356.902467pt;}
.x7c_c00414{left:358.892348pt;}
.x58_c00414{left:359.807233pt;}
.x2e_c00414{left:362.507885pt;}
.xa0_c00414{left:367.201801pt;}
.x66_c00414{left:369.673496pt;}
.x1_c00414{left:371.760000pt;}
.xaa_c00414{left:376.784480pt;}
.x95_c00414{left:378.548040pt;}
.x60_c00414{left:379.671473pt;}
.x1d_c00414{left:380.800568pt;}
.xb5_c00414{left:386.358667pt;}
.x8a_c00414{left:387.329651pt;}
.x74_c00414{left:388.627719pt;}
.x2_c00414{left:391.680000pt;}
.x7d_c00414{left:397.512311pt;}
.x44_c00414{left:400.117528pt;}
.x1e_c00414{left:401.186907pt;}
.x7_c00414{left:402.557333pt;}
.xa1_c00414{left:406.759788pt;}
.x4f_c00414{left:408.790092pt;}
.x4a_c00414{left:410.758659pt;}
.x9b_c00414{left:416.890509pt;}
.x6e_c00414{left:418.817021pt;}
.x3_c00414{left:420.960000pt;}
.xb6_c00414{left:425.777333pt;}
.x85_c00414{left:427.018395pt;}
.x8_c00414{left:430.986667pt;}
.x8f_c00414{left:436.912900pt;}
.x61_c00414{left:438.490812pt;}
.x40_c00414{left:440.012000pt;}
.x8b_c00414{left:446.144653pt;}
.x75_c00414{left:447.466375pt;}
.x4b_c00414{left:449.899305pt;}
.x3c_c00414{left:451.731211pt;}
.x6f_c00414{left:457.227072pt;}
.x45_c00414{left:459.181528pt;}
.x35_c00414{left:460.652461pt;}
.xab_c00414{left:465.652828pt;}
.x62_c00414{left:467.307171pt;}
.x54_c00414{left:469.068001pt;}
.x1f_c00414{left:470.079315pt;}
.x9c_c00414{left:475.262173pt;}
.x67_c00414{left:478.197388pt;}
.x96_c00414{left:485.582204pt;}
.x2f_c00414{left:488.806053pt;}
.x14_c00414{left:499.070667pt;}
.x7e_c00414{left:506.769079pt;}
.x50_c00414{left:507.699491pt;}
.x30_c00414{left:509.666387pt;}
.xa2_c00414{left:514.869952pt;}
.x70_c00414{left:516.482724pt;}
.x20_c00414{left:518.589384pt;}
.x15_c00414{left:520.388000pt;}
.x8c_c00414{left:524.936649pt;}
.x76_c00414{left:525.922368pt;}
.x9_c00414{left:529.784000pt;}
.xc0_c00414{left:534.080133pt;}
.x4c_c00414{left:537.493732pt;}
.x31_c00414{left:539.425325pt;}
.x59_c00414{left:545.655375pt;}
.x51_c00414{left:546.834143pt;}
.x21_c00414{left:548.573451pt;}
.xa3_c00414{left:553.533295pt;}
.x86_c00414{left:556.191657pt;}
.x36_c00414{left:558.352827pt;}
.xa_c00414{left:559.502667pt;}
.xc1_c00414{left:562.856661pt;}
.x5a_c00414{left:566.984463pt;}
.xb7_c00414{left:573.981333pt;}
.x55_c00414{left:577.611893pt;}
.x22_c00414{left:578.544184pt;}
.xb_c00414{left:581.824000pt;}
.x8d_c00414{left:585.170296pt;}
.x46_c00414{left:586.888195pt;}
.x16_c00414{left:588.789333pt;}
.x7f_c00414{left:594.425707pt;}
.x71_c00414{left:595.744023pt;}
.x5b_c00414{left:597.006004pt;}
.xc2_c00414{left:602.614197pt;}
.x87_c00414{left:605.926196pt;}
.x2a_c00414{left:608.277480pt;}
.x77_c00414{left:615.041753pt;}
.x63_c00414{left:616.148783pt;}
.x23_c00414{left:617.236477pt;}
.xa4_c00414{left:624.085427pt;}
.x3d_c00414{left:626.251309pt;}
.x17_c00414{left:627.248000pt;}
.x88_c00414{left:634.247647pt;}
.x47_c00414{left:637.045528pt;}
.x32_c00414{left:638.083533pt;}
.xb8_c00414{left:643.273333pt;}
.x80_c00414{left:644.827796pt;}
.x4d_c00414{left:646.689387pt;}
.xae_c00414{left:653.265333pt;}
.xb9_c00414{left:663.046667pt;}
.x56_c00414{left:665.443351pt;}
.x48_c00414{left:666.585528pt;}
.x18_c00414{left:667.770667pt;}
.xc3_c00414{left:673.260813pt;}
.x90_c00414{left:674.642464pt;}
.x5c_c00414{left:676.486061pt;}
.x24_c00414{left:677.488659pt;}
.xc_c00414{left:678.864000pt;}
.x97_c00414{left:683.933493pt;}
.x2b_c00414{left:686.287013pt;}
.x9d_c00414{left:693.257891pt;}
.x72_c00414{left:694.238991pt;}
.x19_c00414{left:697.826667pt;}
.xaf_c00414{left:702.240000pt;}
.x81_c00414{left:703.423785pt;}
.x68_c00414{left:704.577965pt;}
.x25_c00414{left:706.076461pt;}
.xd_c00414{left:707.138667pt;}
.x78_c00414{left:713.511107pt;}
.x8e_c00414{left:723.249295pt;}
.x5d_c00414{left:725.449888pt;}
.x37_c00414{left:726.876947pt;}
.x64_c00414{left:728.042308pt;}
.x79_c00414{left:734.384535pt;}
.x57_c00414{left:735.323956pt;}
.xb0_c00414{left:742.480000pt;}
.x82_c00414{left:743.465172pt;}
.x98_c00414{left:751.169671pt;}
.xa5_c00414{left:752.256584pt;}
}





/* 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_c00415 {
    display:none;
  }
  .loading-indicator_c00415.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00415 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_c00415 { 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_c00415" -> "#page-container .classname_c00415")
 */
.pf_c00415 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00415 { /* 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_c00415.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00415 { /* 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_c00415 { /* 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_c00415 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00415 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00415 {overflow:visible;}
  }
}
.c_c00415 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00415 { /* 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_c00415:after { /* webkit #35443 */
  content: '';
}
.t_c00415:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00415 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 */
}
.__c00415 { /* 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_c00415 { /* info for Javascript */
  display:none;
}
.l_c00415 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00415 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00415 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00415: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_c00415 {
    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_c00415.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00415.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_c00415 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00415{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00415;src:url('chunks/assets/font_cfe63ee56e9e10a97d33a3db.woff2')format("woff");}.ff1_c00415{font-family:ff1_c00415;line-height:1.000000;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;}
.m5e_c00415{transform:matrix(0.009485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.009485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.009485,0.000000,0.000000,0.250000,0,0);}
.m55_c00415{transform:matrix(0.011590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.011590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.011590,0.000000,0.000000,0.250000,0,0);}
.m56_c00415{transform:matrix(0.018185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.018185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.018185,0.000000,0.000000,0.250000,0,0);}
.m1_c00415{transform:matrix(0.042639,-0.000256,0.001500,0.249996,0,0);-ms-transform:matrix(0.042639,-0.000256,0.001500,0.249996,0,0);-webkit-transform:matrix(0.042639,-0.000256,0.001500,0.249996,0,0);}
.m3e_c00415{transform:matrix(0.155284,0.001398,-0.002250,0.249990,0,0);-ms-transform:matrix(0.155284,0.001398,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.155284,0.001398,-0.002250,0.249990,0,0);}
.m1a_c00415{transform:matrix(0.157445,-0.001260,0.002000,0.249992,0,0);-ms-transform:matrix(0.157445,-0.001260,0.002000,0.249992,0,0);-webkit-transform:matrix(0.157445,-0.001260,0.002000,0.249992,0,0);}
.m3c_c00415{transform:matrix(0.158309,0.001425,-0.002250,0.249990,0,0);-ms-transform:matrix(0.158309,0.001425,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.158309,0.001425,-0.002250,0.249990,0,0);}
.m2a_c00415{transform:matrix(0.164865,-0.001319,0.002000,0.249992,0,0);-ms-transform:matrix(0.164865,-0.001319,0.002000,0.249992,0,0);-webkit-transform:matrix(0.164865,-0.001319,0.002000,0.249992,0,0);}
.m3b_c00415{transform:matrix(0.168673,0.001518,-0.002250,0.249990,0,0);-ms-transform:matrix(0.168673,0.001518,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.168673,0.001518,-0.002250,0.249990,0,0);}
.m42_c00415{transform:matrix(0.174358,0.001569,-0.002250,0.249990,0,0);-ms-transform:matrix(0.174358,0.001569,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.174358,0.001569,-0.002250,0.249990,0,0);}
.m3f_c00415{transform:matrix(0.176138,0.001585,-0.002250,0.249990,0,0);-ms-transform:matrix(0.176138,0.001585,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.176138,0.001585,-0.002250,0.249990,0,0);}
.m41_c00415{transform:matrix(0.177548,0.001598,-0.002250,0.249990,0,0);-ms-transform:matrix(0.177548,0.001598,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.177548,0.001598,-0.002250,0.249990,0,0);}
.m3d_c00415{transform:matrix(0.179563,0.001616,-0.002250,0.249990,0,0);-ms-transform:matrix(0.179563,0.001616,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.179563,0.001616,-0.002250,0.249990,0,0);}
.m3a_c00415{transform:matrix(0.184688,0.001662,-0.002250,0.249990,0,0);-ms-transform:matrix(0.184688,0.001662,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.184688,0.001662,-0.002250,0.249990,0,0);}
.m39_c00415{transform:matrix(0.188952,0.001701,-0.002250,0.249990,0,0);-ms-transform:matrix(0.188952,0.001701,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.188952,0.001701,-0.002250,0.249990,0,0);}
.m10_c00415{transform:matrix(0.190032,-0.001140,0.001500,0.249996,0,0);-ms-transform:matrix(0.190032,-0.001140,0.001500,0.249996,0,0);-webkit-transform:matrix(0.190032,-0.001140,0.001500,0.249996,0,0);}
.m5a_c00415{transform:matrix(0.190825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190825,0.000000,0.000000,0.250000,0,0);}
.m4e_c00415{transform:matrix(0.193033,-0.000965,0.001250,0.249997,0,0);-ms-transform:matrix(0.193033,-0.000965,0.001250,0.249997,0,0);-webkit-transform:matrix(0.193033,-0.000965,0.001250,0.249997,0,0);}
.m48_c00415{transform:matrix(0.194713,-0.000974,0.001250,0.249997,0,0);-ms-transform:matrix(0.194713,-0.000974,0.001250,0.249997,0,0);-webkit-transform:matrix(0.194713,-0.000974,0.001250,0.249997,0,0);}
.m1c_c00415{transform:matrix(0.195054,-0.001560,0.002000,0.249992,0,0);-ms-transform:matrix(0.195054,-0.001560,0.002000,0.249992,0,0);-webkit-transform:matrix(0.195054,-0.001560,0.002000,0.249992,0,0);}
.m62_c00415{transform:matrix(0.195510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195510,0.000000,0.000000,0.250000,0,0);}
.m6_c00415{transform:matrix(0.196171,-0.001177,0.001500,0.249996,0,0);-ms-transform:matrix(0.196171,-0.001177,0.001500,0.249996,0,0);-webkit-transform:matrix(0.196171,-0.001177,0.001500,0.249996,0,0);}
.me_c00415{transform:matrix(0.201231,-0.001207,0.001500,0.249996,0,0);-ms-transform:matrix(0.201231,-0.001207,0.001500,0.249996,0,0);-webkit-transform:matrix(0.201231,-0.001207,0.001500,0.249996,0,0);}
.m43_c00415{transform:matrix(0.208092,0.001873,-0.002250,0.249990,0,0);-ms-transform:matrix(0.208092,0.001873,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.208092,0.001873,-0.002250,0.249990,0,0);}
.m52_c00415{transform:matrix(0.208555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208555,0.000000,0.000000,0.250000,0,0);}
.m1d_c00415{transform:matrix(0.211283,-0.001690,0.002000,0.249992,0,0);-ms-transform:matrix(0.211283,-0.001690,0.002000,0.249992,0,0);-webkit-transform:matrix(0.211283,-0.001690,0.002000,0.249992,0,0);}
.m61_c00415{transform:matrix(0.212085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212085,0.000000,0.000000,0.250000,0,0);}
.m27_c00415{transform:matrix(0.212803,-0.001702,0.002000,0.249992,0,0);-ms-transform:matrix(0.212803,-0.001702,0.002000,0.249992,0,0);-webkit-transform:matrix(0.212803,-0.001702,0.002000,0.249992,0,0);}
.m25_c00415{transform:matrix(0.215093,-0.001721,0.002000,0.249992,0,0);-ms-transform:matrix(0.215093,-0.001721,0.002000,0.249992,0,0);-webkit-transform:matrix(0.215093,-0.001721,0.002000,0.249992,0,0);}
.m35_c00415{transform:matrix(0.215188,-0.001722,0.002000,0.249992,0,0);-ms-transform:matrix(0.215188,-0.001722,0.002000,0.249992,0,0);-webkit-transform:matrix(0.215188,-0.001722,0.002000,0.249992,0,0);}
.m22_c00415{transform:matrix(0.216213,-0.001730,0.002000,0.249992,0,0);-ms-transform:matrix(0.216213,-0.001730,0.002000,0.249992,0,0);-webkit-transform:matrix(0.216213,-0.001730,0.002000,0.249992,0,0);}
.m24_c00415{transform:matrix(0.217808,-0.001742,0.002000,0.249992,0,0);-ms-transform:matrix(0.217808,-0.001742,0.002000,0.249992,0,0);-webkit-transform:matrix(0.217808,-0.001742,0.002000,0.249992,0,0);}
.m1e_c00415{transform:matrix(0.219823,-0.001759,0.002000,0.249992,0,0);-ms-transform:matrix(0.219823,-0.001759,0.002000,0.249992,0,0);-webkit-transform:matrix(0.219823,-0.001759,0.002000,0.249992,0,0);}
.m4_c00415{transform:matrix(0.221066,-0.001326,0.001500,0.249996,0,0);-ms-transform:matrix(0.221066,-0.001326,0.001500,0.249996,0,0);-webkit-transform:matrix(0.221066,-0.001326,0.001500,0.249996,0,0);}
.m4c_c00415{transform:matrix(0.223757,-0.001119,0.001250,0.249997,0,0);-ms-transform:matrix(0.223757,-0.001119,0.001250,0.249997,0,0);-webkit-transform:matrix(0.223757,-0.001119,0.001250,0.249997,0,0);}
.m40_c00415{transform:matrix(0.227101,0.002044,-0.002250,0.249990,0,0);-ms-transform:matrix(0.227101,0.002044,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.227101,0.002044,-0.002250,0.249990,0,0);}
.m12_c00415{transform:matrix(0.227253,-0.001818,0.002000,0.249992,0,0);-ms-transform:matrix(0.227253,-0.001818,0.002000,0.249992,0,0);-webkit-transform:matrix(0.227253,-0.001818,0.002000,0.249992,0,0);}
.m4a_c00415{transform:matrix(0.228197,-0.001141,0.001250,0.249997,0,0);-ms-transform:matrix(0.228197,-0.001141,0.001250,0.249997,0,0);-webkit-transform:matrix(0.228197,-0.001141,0.001250,0.249997,0,0);}
.m3_c00415{transform:matrix(0.228796,-0.001373,0.001500,0.249996,0,0);-ms-transform:matrix(0.228796,-0.001373,0.001500,0.249996,0,0);-webkit-transform:matrix(0.228796,-0.001373,0.001500,0.249996,0,0);}
.m23_c00415{transform:matrix(0.232993,-0.001864,0.002000,0.249992,0,0);-ms-transform:matrix(0.232993,-0.001864,0.002000,0.249992,0,0);-webkit-transform:matrix(0.232993,-0.001864,0.002000,0.249992,0,0);}
.m8_c00415{transform:matrix(0.233381,-0.001400,0.001500,0.249996,0,0);-ms-transform:matrix(0.233381,-0.001400,0.001500,0.249996,0,0);-webkit-transform:matrix(0.233381,-0.001400,0.001500,0.249996,0,0);}
.m4b_c00415{transform:matrix(0.235387,-0.001177,0.001250,0.249997,0,0);-ms-transform:matrix(0.235387,-0.001177,0.001250,0.249997,0,0);-webkit-transform:matrix(0.235387,-0.001177,0.001250,0.249997,0,0);}
.m65_c00415{transform:matrix(0.239100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239100,0.000000,0.000000,0.250000,0,0);}
.m7_c00415{transform:matrix(0.239581,-0.001437,0.001500,0.249996,0,0);-ms-transform:matrix(0.239581,-0.001437,0.001500,0.249996,0,0);-webkit-transform:matrix(0.239581,-0.001437,0.001500,0.249996,0,0);}
.m2f_c00415{transform:matrix(0.240042,-0.001920,0.002000,0.249992,0,0);-ms-transform:matrix(0.240042,-0.001920,0.002000,0.249992,0,0);-webkit-transform:matrix(0.240042,-0.001920,0.002000,0.249992,0,0);}
.m66_c00415{transform:matrix(0.241480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241480,0.000000,0.000000,0.250000,0,0);}
.m49_c00415{transform:matrix(0.242372,-0.001212,0.001250,0.249997,0,0);-ms-transform:matrix(0.242372,-0.001212,0.001250,0.249997,0,0);-webkit-transform:matrix(0.242372,-0.001212,0.001250,0.249997,0,0);}
.m0_c00415{transform:matrix(0.242886,-0.001457,0.001500,0.249996,0,0);-ms-transform:matrix(0.242886,-0.001457,0.001500,0.249996,0,0);-webkit-transform:matrix(0.242886,-0.001457,0.001500,0.249996,0,0);}
.m6c_c00415{transform:matrix(0.244255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244255,0.000000,0.000000,0.250000,0,0);}
.m44_c00415{transform:matrix(0.244405,0.002200,-0.002250,0.249990,0,0);-ms-transform:matrix(0.244405,0.002200,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.244405,0.002200,-0.002250,0.249990,0,0);}
.m15_c00415{transform:matrix(0.244692,-0.001958,0.002000,0.249992,0,0);-ms-transform:matrix(0.244692,-0.001958,0.002000,0.249992,0,0);-webkit-transform:matrix(0.244692,-0.001958,0.002000,0.249992,0,0);}
.m29_c00415{transform:matrix(0.244877,-0.001959,0.002000,0.249992,0,0);-ms-transform:matrix(0.244877,-0.001959,0.002000,0.249992,0,0);-webkit-transform:matrix(0.244877,-0.001959,0.002000,0.249992,0,0);}
.m20_c00415{transform:matrix(0.246132,-0.001969,0.002000,0.249992,0,0);-ms-transform:matrix(0.246132,-0.001969,0.002000,0.249992,0,0);-webkit-transform:matrix(0.246132,-0.001969,0.002000,0.249992,0,0);}
.m16_c00415{transform:matrix(0.247147,-0.001977,0.002000,0.249992,0,0);-ms-transform:matrix(0.247147,-0.001977,0.002000,0.249992,0,0);-webkit-transform:matrix(0.247147,-0.001977,0.002000,0.249992,0,0);}
.m2_c00415{transform:matrix(0.247521,-0.001485,0.001500,0.249996,0,0);-ms-transform:matrix(0.247521,-0.001485,0.001500,0.249996,0,0);-webkit-transform:matrix(0.247521,-0.001485,0.001500,0.249996,0,0);}
.m64_c00415{transform:matrix(0.250350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250350,0.000000,0.000000,0.250000,0,0);}
.m2e_c00415{transform:matrix(0.250907,-0.002007,0.002000,0.249992,0,0);-ms-transform:matrix(0.250907,-0.002007,0.002000,0.249992,0,0);-webkit-transform:matrix(0.250907,-0.002007,0.002000,0.249992,0,0);}
.m2d_c00415{transform:matrix(0.252542,-0.002020,0.002000,0.249992,0,0);-ms-transform:matrix(0.252542,-0.002020,0.002000,0.249992,0,0);-webkit-transform:matrix(0.252542,-0.002020,0.002000,0.249992,0,0);}
.m14_c00415{transform:matrix(0.253002,-0.002024,0.002000,0.249992,0,0);-ms-transform:matrix(0.253002,-0.002024,0.002000,0.249992,0,0);-webkit-transform:matrix(0.253002,-0.002024,0.002000,0.249992,0,0);}
.mf_c00415{transform:matrix(0.253520,-0.001521,0.001500,0.249996,0,0);-ms-transform:matrix(0.253520,-0.001521,0.001500,0.249996,0,0);-webkit-transform:matrix(0.253520,-0.001521,0.001500,0.249996,0,0);}
.m30_c00415{transform:matrix(0.255302,-0.002042,0.002000,0.249992,0,0);-ms-transform:matrix(0.255302,-0.002042,0.002000,0.249992,0,0);-webkit-transform:matrix(0.255302,-0.002042,0.002000,0.249992,0,0);}
.m9_c00415{transform:matrix(0.258245,-0.001549,0.001500,0.249996,0,0);-ms-transform:matrix(0.258245,-0.001549,0.001500,0.249996,0,0);-webkit-transform:matrix(0.258245,-0.001549,0.001500,0.249996,0,0);}
.m5_c00415{transform:matrix(0.260350,-0.001562,0.001500,0.249996,0,0);-ms-transform:matrix(0.260350,-0.001562,0.001500,0.249996,0,0);-webkit-transform:matrix(0.260350,-0.001562,0.001500,0.249996,0,0);}
.m57_c00415{transform:matrix(0.262730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262730,0.000000,0.000000,0.250000,0,0);}
.m17_c00415{transform:matrix(0.263197,-0.002106,0.002000,0.249992,0,0);-ms-transform:matrix(0.263197,-0.002106,0.002000,0.249992,0,0);-webkit-transform:matrix(0.263197,-0.002106,0.002000,0.249992,0,0);}
.m21_c00415{transform:matrix(0.265916,-0.002127,0.002000,0.249992,0,0);-ms-transform:matrix(0.265916,-0.002127,0.002000,0.249992,0,0);-webkit-transform:matrix(0.265916,-0.002127,0.002000,0.249992,0,0);}
.m63_c00415{transform:matrix(0.270105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270105,0.000000,0.000000,0.250000,0,0);}
.m18_c00415{transform:matrix(0.271136,-0.002169,0.002000,0.249992,0,0);-ms-transform:matrix(0.271136,-0.002169,0.002000,0.249992,0,0);-webkit-transform:matrix(0.271136,-0.002169,0.002000,0.249992,0,0);}
.m67_c00415{transform:matrix(0.272400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272400,0.000000,0.000000,0.250000,0,0);}
.m59_c00415{transform:matrix(0.276505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276505,0.000000,0.000000,0.250000,0,0);}
.m6b_c00415{transform:matrix(0.281295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281295,0.000000,0.000000,0.250000,0,0);}
.m69_c00415{transform:matrix(0.283605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283605,0.000000,0.000000,0.250000,0,0);}
.m2c_c00415{transform:matrix(0.290341,-0.002323,0.002000,0.249992,0,0);-ms-transform:matrix(0.290341,-0.002323,0.002000,0.249992,0,0);-webkit-transform:matrix(0.290341,-0.002323,0.002000,0.249992,0,0);}
.ma_c00415{transform:matrix(0.291390,-0.001748,0.001500,0.249996,0,0);-ms-transform:matrix(0.291390,-0.001748,0.001500,0.249996,0,0);-webkit-transform:matrix(0.291390,-0.001748,0.001500,0.249996,0,0);}
.m47_c00415{transform:matrix(0.291691,-0.001458,0.001250,0.249997,0,0);-ms-transform:matrix(0.291691,-0.001458,0.001250,0.249997,0,0);-webkit-transform:matrix(0.291691,-0.001458,0.001250,0.249997,0,0);}
.m4f_c00415{transform:matrix(0.293971,-0.001470,0.001250,0.249997,0,0);-ms-transform:matrix(0.293971,-0.001470,0.001250,0.249997,0,0);-webkit-transform:matrix(0.293971,-0.001470,0.001250,0.249997,0,0);}
.m26_c00415{transform:matrix(0.294136,-0.002353,0.002000,0.249992,0,0);-ms-transform:matrix(0.294136,-0.002353,0.002000,0.249992,0,0);-webkit-transform:matrix(0.294136,-0.002353,0.002000,0.249992,0,0);}
.m60_c00415{transform:matrix(0.294185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294185,0.000000,0.000000,0.250000,0,0);}
.m68_c00415{transform:matrix(0.298515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298515,0.000000,0.000000,0.250000,0,0);}
.m46_c00415{transform:matrix(0.300991,-0.001505,0.001250,0.249997,0,0);-ms-transform:matrix(0.300991,-0.001505,0.001250,0.249997,0,0);-webkit-transform:matrix(0.300991,-0.001505,0.001250,0.249997,0,0);}
.m11_c00415{transform:matrix(0.301395,-0.002411,0.002000,0.249992,0,0);-ms-transform:matrix(0.301395,-0.002411,0.002000,0.249992,0,0);-webkit-transform:matrix(0.301395,-0.002411,0.002000,0.249992,0,0);}
.m2b_c00415{transform:matrix(0.309150,-0.002473,0.002000,0.249992,0,0);-ms-transform:matrix(0.309150,-0.002473,0.002000,0.249992,0,0);-webkit-transform:matrix(0.309150,-0.002473,0.002000,0.249992,0,0);}
.m31_c00415{transform:matrix(0.309605,-0.002477,0.002000,0.249992,0,0);-ms-transform:matrix(0.309605,-0.002477,0.002000,0.249992,0,0);-webkit-transform:matrix(0.309605,-0.002477,0.002000,0.249992,0,0);}
.m4d_c00415{transform:matrix(0.309861,-0.001549,0.001250,0.249997,0,0);-ms-transform:matrix(0.309861,-0.001549,0.001250,0.249997,0,0);-webkit-transform:matrix(0.309861,-0.001549,0.001250,0.249997,0,0);}
.m19_c00415{transform:matrix(0.312380,-0.002499,0.002000,0.249992,0,0);-ms-transform:matrix(0.312380,-0.002499,0.002000,0.249992,0,0);-webkit-transform:matrix(0.312380,-0.002499,0.002000,0.249992,0,0);}
.m38_c00415{transform:matrix(0.312717,0.002814,-0.002250,0.249990,0,0);-ms-transform:matrix(0.312717,0.002814,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.312717,0.002814,-0.002250,0.249990,0,0);}
.m70_c00415{transform:matrix(0.312975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312975,0.000000,0.000000,0.250000,0,0);}
.m28_c00415{transform:matrix(0.316415,-0.002531,0.002000,0.249992,0,0);-ms-transform:matrix(0.316415,-0.002531,0.002000,0.249992,0,0);-webkit-transform:matrix(0.316415,-0.002531,0.002000,0.249992,0,0);}
.m13_c00415{transform:matrix(0.323150,-0.002585,0.002000,0.249992,0,0);-ms-transform:matrix(0.323150,-0.002585,0.002000,0.249992,0,0);-webkit-transform:matrix(0.323150,-0.002585,0.002000,0.249992,0,0);}
.m5d_c00415{transform:matrix(0.336170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336170,0.000000,0.000000,0.250000,0,0);}
.m36_c00415{transform:matrix(0.347424,-0.002779,0.002000,0.249992,0,0);-ms-transform:matrix(0.347424,-0.002779,0.002000,0.249992,0,0);-webkit-transform:matrix(0.347424,-0.002779,0.002000,0.249992,0,0);}
.m6f_c00415{transform:matrix(0.348995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348995,0.000000,0.000000,0.250000,0,0);}
.mc_c00415{transform:matrix(0.350059,-0.002100,0.001500,0.249996,0,0);-ms-transform:matrix(0.350059,-0.002100,0.001500,0.249996,0,0);-webkit-transform:matrix(0.350059,-0.002100,0.001500,0.249996,0,0);}
.mb_c00415{transform:matrix(0.356719,-0.002140,0.001500,0.249996,0,0);-ms-transform:matrix(0.356719,-0.002140,0.001500,0.249996,0,0);-webkit-transform:matrix(0.356719,-0.002140,0.001500,0.249996,0,0);}
.m37_c00415{transform:matrix(0.361238,-0.002890,0.002000,0.249992,0,0);-ms-transform:matrix(0.361238,-0.002890,0.002000,0.249992,0,0);-webkit-transform:matrix(0.361238,-0.002890,0.002000,0.249992,0,0);}
.m71_c00415{transform:matrix(0.365125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365125,0.000000,0.000000,0.250000,0,0);}
.m34_c00415{transform:matrix(0.367533,-0.002940,0.002000,0.249992,0,0);-ms-transform:matrix(0.367533,-0.002940,0.002000,0.249992,0,0);-webkit-transform:matrix(0.367533,-0.002940,0.002000,0.249992,0,0);}
.m6e_c00415{transform:matrix(0.371790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371790,0.000000,0.000000,0.250000,0,0);}
.m33_c00415{transform:matrix(0.394012,-0.003152,0.002000,0.249992,0,0);-ms-transform:matrix(0.394012,-0.003152,0.002000,0.249992,0,0);-webkit-transform:matrix(0.394012,-0.003152,0.002000,0.249992,0,0);}
.m1f_c00415{transform:matrix(0.404997,-0.003240,0.002000,0.249992,0,0);-ms-transform:matrix(0.404997,-0.003240,0.002000,0.249992,0,0);-webkit-transform:matrix(0.404997,-0.003240,0.002000,0.249992,0,0);}
.m58_c00415{transform:matrix(0.417245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417245,0.000000,0.000000,0.250000,0,0);}
.m51_c00415{transform:matrix(0.427970,-0.002140,0.001250,0.249997,0,0);-ms-transform:matrix(0.427970,-0.002140,0.001250,0.249997,0,0);-webkit-transform:matrix(0.427970,-0.002140,0.001250,0.249997,0,0);}
.m32_c00415{transform:matrix(0.432821,-0.003463,0.002000,0.249992,0,0);-ms-transform:matrix(0.432821,-0.003463,0.002000,0.249992,0,0);-webkit-transform:matrix(0.432821,-0.003463,0.002000,0.249992,0,0);}
.m53_c00415{transform:matrix(0.456145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456145,0.000000,0.000000,0.250000,0,0);}
.m6a_c00415{transform:matrix(0.497525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497525,0.000000,0.000000,0.250000,0,0);}
.md_c00415{transform:matrix(0.498301,-0.002990,0.001500,0.249996,0,0);-ms-transform:matrix(0.498301,-0.002990,0.001500,0.249996,0,0);-webkit-transform:matrix(0.498301,-0.002990,0.001500,0.249996,0,0);}
.m45_c00415{transform:matrix(0.518904,-0.002595,0.001250,0.249997,0,0);-ms-transform:matrix(0.518904,-0.002595,0.001250,0.249997,0,0);-webkit-transform:matrix(0.518904,-0.002595,0.001250,0.249997,0,0);}
.m5f_c00415{transform:matrix(0.566625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566625,0.000000,0.000000,0.250000,0,0);}
.m5b_c00415{transform:matrix(0.586730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.586730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.586730,0.000000,0.000000,0.250000,0,0);}
.m50_c00415{transform:matrix(0.629617,-0.003148,0.001250,0.249997,0,0);-ms-transform:matrix(0.629617,-0.003148,0.001250,0.249997,0,0);-webkit-transform:matrix(0.629617,-0.003148,0.001250,0.249997,0,0);}
.m5c_c00415{transform:matrix(0.665980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665980,0.000000,0.000000,0.250000,0,0);}
.m1b_c00415{transform:matrix(0.679118,-0.005433,0.002000,0.249992,0,0);-ms-transform:matrix(0.679118,-0.005433,0.002000,0.249992,0,0);-webkit-transform:matrix(0.679118,-0.005433,0.002000,0.249992,0,0);}
.m54_c00415{transform:matrix(0.704815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.704815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.704815,0.000000,0.000000,0.250000,0,0);}
.m6d_c00415{transform:matrix(0.707955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.707955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.707955,0.000000,0.000000,0.250000,0,0);}
.v0_c00415{vertical-align:0.000000px;}
.ls0_c00415{letter-spacing:0.000000px;}
.sc__c00415{text-shadow:none;}
.sc0_c00415{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__c00415{-webkit-text-stroke:0px transparent;}
.sc0_c00415{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00415{word-spacing:0.000000px;}
.fc0_c00415{color:transparent;}
.fs9_c00415{font-size:72.000000px;}
.fs4_c00415{font-size:72.002304px;}
.fs6_c00415{font-size:78.000975px;}
.fs2_c00415{font-size:78.002496px;}
.fs7_c00415{font-size:84.000000px;}
.fs8_c00415{font-size:90.000000px;}
.fs0_c00415{font-size:90.001620px;}
.fs3_c00415{font-size:90.002880px;}
.fs1_c00415{font-size:108.001944px;}
.fs5_c00415{font-size:114.004617px;}
.y0_c00415{bottom:0.000000px;}
.y55_c00415{bottom:715.008000px;}
.y54_c00415{bottom:751.513500px;}
.y53_c00415{bottom:860.125500px;}
.y46_c00415{bottom:894.216000px;}
.y47_c00415{bottom:894.419888px;}
.y48_c00415{bottom:894.635970px;}
.y49_c00415{bottom:894.770970px;}
.y4a_c00415{bottom:895.036777px;}
.y4b_c00415{bottom:895.372920px;}
.y4c_c00415{bottom:895.592978px;}
.y4d_c00415{bottom:895.922348px;}
.y4e_c00415{bottom:896.410012px;}
.y4f_c00415{bottom:896.864558px;}
.y50_c00415{bottom:897.025560px;}
.y51_c00415{bottom:897.225360px;}
.y52_c00415{bottom:897.579105px;}
.y45_c00415{bottom:928.567369px;}
.y44_c00415{bottom:928.736889px;}
.y43_c00415{bottom:929.217894px;}
.y42_c00415{bottom:929.718285px;}
.y41_c00415{bottom:930.018066px;}
.y40_c00415{bottom:930.516081px;}
.y3f_c00415{bottom:930.801957px;}
.y3e_c00415{bottom:931.820154px;}
.y3d_c00415{bottom:932.006967px;}
.y3c_c00415{bottom:932.299039px;}
.y3b_c00415{bottom:933.312795px;}
.y3a_c00415{bottom:934.229067px;}
.y39_c00415{bottom:935.011500px;}
.y2b_c00415{bottom:964.027836px;}
.y2c_c00415{bottom:964.292496px;}
.y2d_c00415{bottom:965.025528px;}
.y2e_c00415{bottom:966.008328px;}
.y2f_c00415{bottom:966.378720px;}
.y30_c00415{bottom:967.362132px;}
.y31_c00415{bottom:967.718724px;}
.y32_c00415{bottom:968.274120px;}
.y33_c00415{bottom:968.696316px;}
.y34_c00415{bottom:969.409680px;}
.y35_c00415{bottom:969.894780px;}
.y36_c00415{bottom:970.522512px;}
.y37_c00415{bottom:970.708332px;}
.y38_c00415{bottom:971.377656px;}
.y1d_c00415{bottom:999.269316px;}
.y1e_c00415{bottom:999.672972px;}
.y1f_c00415{bottom:999.903528px;}
.y20_c00415{bottom:1000.364928px;}
.y21_c00415{bottom:1000.916148px;}
.y22_c00415{bottom:1001.126004px;}
.y23_c00415{bottom:1001.533632px;}
.y24_c00415{bottom:1002.070524px;}
.y25_c00415{bottom:1002.231816px;}
.y26_c00415{bottom:1002.764052px;}
.y27_c00415{bottom:1002.930852px;}
.y28_c00415{bottom:1003.386888px;}
.y29_c00415{bottom:1003.497720px;}
.y2a_c00415{bottom:1003.945548px;}
.y12_c00415{bottom:1036.449000px;}
.y13_c00415{bottom:1037.068644px;}
.y14_c00415{bottom:1037.338572px;}
.y15_c00415{bottom:1037.695596px;}
.y16_c00415{bottom:1038.053760px;}
.y17_c00415{bottom:1038.669156px;}
.y18_c00415{bottom:1038.858036px;}
.y19_c00415{bottom:1039.464540px;}
.y1a_c00415{bottom:1040.155668px;}
.y1b_c00415{bottom:1040.437932px;}
.y1c_c00415{bottom:1040.635596px;}
.yd_c00415{bottom:1070.846319px;}
.ye_c00415{bottom:1074.038994px;}
.yf_c00415{bottom:1075.062267px;}
.y10_c00415{bottom:1077.012642px;}
.y11_c00415{bottom:1077.900108px;}
.y1_c00415{bottom:1107.733500px;}
.y3_c00415{bottom:1108.063899px;}
.y2_c00415{bottom:1108.103103px;}
.y4_c00415{bottom:1108.276461px;}
.y5_c00415{bottom:1108.873899px;}
.y6_c00415{bottom:1109.055708px;}
.y7_c00415{bottom:1109.270826px;}
.y8_c00415{bottom:1109.567646px;}
.y9_c00415{bottom:1109.932110px;}
.ya_c00415{bottom:1110.110301px;}
.yb_c00415{bottom:1110.768012px;}
.yc_c00415{bottom:1111.065894px;}
.hb_c00415{height:72.000000px;}
.h6_c00415{height:72.002304px;}
.h8_c00415{height:78.000975px;}
.h4_c00415{height:78.002496px;}
.h9_c00415{height:84.000000px;}
.ha_c00415{height:90.000000px;}
.h2_c00415{height:90.001620px;}
.h5_c00415{height:90.002880px;}
.h3_c00415{height:108.001944px;}
.h7_c00415{height:114.004617px;}
.h1_c00415{height:1251.000000px;}
.h0_c00415{height:1251.150000px;}
.w0_c00415{width:915.000000px;}
.x0_c00415{left:0.000000px;}
.x34_c00415{left:13.575000px;}
.x4c_c00415{left:44.010000px;}
.x28_c00415{left:55.570716px;}
.x12_c00415{left:57.387000px;}
.x41_c00415{left:62.184000px;}
.x1_c00415{left:66.537000px;}
.x29_c00415{left:79.652640px;}
.x35_c00415{left:100.512000px;}
.x42_c00415{left:102.961500px;}
.x4d_c00415{left:108.540000px;}
.x56_c00415{left:117.450000px;}
.x3_c00415{left:121.603500px;}
.x60_c00415{left:123.930000px;}
.x1d_c00415{left:125.119524px;}
.x2_c00415{left:128.137500px;}
.x13_c00415{left:134.842500px;}
.x57_c00415{left:139.320000px;}
.x2a_c00415{left:146.342544px;}
.x4_c00415{left:157.030500px;}
.x1e_c00415{left:158.064288px;}
.x61_c00415{left:160.380000px;}
.x14_c00415{left:168.583500px;}
.x43_c00415{left:173.178000px;}
.x58_c00415{left:187.380000px;}
.x36_c00415{left:202.320000px;}
.x62_c00415{left:206.010000px;}
.x15_c00415{left:213.211500px;}
.x1f_c00415{left:223.989816px;}
.x44_c00415{left:226.339500px;}
.xd_c00415{left:231.150741px;}
.x2b_c00415{left:235.627896px;}
.x4e_c00415{left:243.000000px;}
.x59_c00415{left:251.640000px;}
.x5_c00415{left:256.603500px;}
.x16_c00415{left:257.982000px;}
.x2c_c00415{left:269.363592px;}
.x4f_c00415{left:272.700000px;}
.x6_c00415{left:286.905000px;}
.x45_c00415{left:293.568000px;}
.x20_c00415{left:302.830452px;}
.x63_c00415{left:305.910000px;}
.x37_c00415{left:314.959500px;}
.x5a_c00415{left:317.250000px;}
.x7_c00415{left:322.758000px;}
.x21_c00415{left:332.812692px;}
.x17_c00415{left:334.906500px;}
.x46_c00415{left:337.579500px;}
.x38_c00415{left:347.412000px;}
.x64_c00415{left:352.350000px;}
.x18_c00415{left:358.516500px;}
.x50_c00415{left:362.610000px;}
.x5b_c00415{left:363.960000px;}
.x39_c00415{left:368.169000px;}
.x8_c00415{left:372.228000px;}
.x22_c00415{left:391.079160px;}
.x47_c00415{left:403.453500px;}
.x51_c00415{left:407.430000px;}
.x5c_c00415{left:415.530000px;}
.x9_c00415{left:432.972000px;}
.x19_c00415{left:434.329500px;}
.x2d_c00415{left:441.596952px;}
.xe_c00415{left:459.252297px;}
.x65_c00415{left:460.350000px;}
.xa_c00415{left:462.670500px;}
.x23_c00415{left:467.753772px;}
.x2e_c00415{left:479.933028px;}
.x3a_c00415{left:481.302000px;}
.x24_c00415{left:490.727952px;}
.x48_c00415{left:500.986500px;}
.x52_c00415{left:503.010000px;}
.x3b_c00415{left:513.066000px;}
.x1a_c00415{left:520.720500px;}
.xf_c00415{left:532.294287px;}
.x2f_c00415{left:544.726968px;}
.x66_c00415{left:546.750000px;}
.x1b_c00415{left:556.003500px;}
.x25_c00415{left:566.820564px;}
.x3c_c00415{left:568.401000px;}
.x5d_c00415{left:570.510000px;}
.xb_c00415{left:572.289000px;}
.x1c_c00415{left:580.711500px;}
.x30_c00415{left:588.863412px;}
.x26_c00415{left:590.670756px;}
.x49_c00415{left:591.895500px;}
.x67_c00415{left:593.460000px;}
.x5e_c00415{left:597.780000px;}
.x3d_c00415{left:601.710000px;}
.x53_c00415{left:615.060000px;}
.xc_c00415{left:621.936000px;}
.x4a_c00415{left:624.096000px;}
.x54_c00415{left:641.250000px;}
.x31_c00415{left:645.953544px;}
.x27_c00415{left:655.925784px;}
.x3e_c00415{left:657.309000px;}
.x32_c00415{left:662.805636px;}
.x4b_c00415{left:664.056000px;}
.x10_c00415{left:671.600100px;}
.x5f_c00415{left:676.350000px;}
.x68_c00415{left:682.290000px;}
.x55_c00415{left:694.440000px;}
.x3f_c00415{left:710.754000px;}
.x33_c00415{left:723.594672px;}
.x40_c00415{left:729.589500px;}
.x11_c00415{left:735.008058px;}
@media print{
.v0_c00415{vertical-align:0.000000pt;}
.ls0_c00415{letter-spacing:0.000000pt;}
.ws0_c00415{word-spacing:0.000000pt;}
.fs9_c00415{font-size:64.000000pt;}
.fs4_c00415{font-size:64.002048pt;}
.fs6_c00415{font-size:69.334200pt;}
.fs2_c00415{font-size:69.335552pt;}
.fs7_c00415{font-size:74.666667pt;}
.fs8_c00415{font-size:80.000000pt;}
.fs0_c00415{font-size:80.001440pt;}
.fs3_c00415{font-size:80.002560pt;}
.fs1_c00415{font-size:96.001728pt;}
.fs5_c00415{font-size:101.337437pt;}
.y0_c00415{bottom:0.000000pt;}
.y55_c00415{bottom:635.562667pt;}
.y54_c00415{bottom:668.012000pt;}
.y53_c00415{bottom:764.556000pt;}
.y46_c00415{bottom:794.858667pt;}
.y47_c00415{bottom:795.039900pt;}
.y48_c00415{bottom:795.231973pt;}
.y49_c00415{bottom:795.351973pt;}
.y4a_c00415{bottom:795.588247pt;}
.y4b_c00415{bottom:795.887040pt;}
.y4c_c00415{bottom:796.082647pt;}
.y4d_c00415{bottom:796.375420pt;}
.y4e_c00415{bottom:796.808900pt;}
.y4f_c00415{bottom:797.212940pt;}
.y50_c00415{bottom:797.356053pt;}
.y51_c00415{bottom:797.533653pt;}
.y52_c00415{bottom:797.848093pt;}
.y45_c00415{bottom:825.393217pt;}
.y44_c00415{bottom:825.543901pt;}
.y43_c00415{bottom:825.971461pt;}
.y42_c00415{bottom:826.416253pt;}
.y41_c00415{bottom:826.682725pt;}
.y40_c00415{bottom:827.125405pt;}
.y3f_c00415{bottom:827.379517pt;}
.y3e_c00415{bottom:828.284581pt;}
.y3d_c00415{bottom:828.450637pt;}
.y3c_c00415{bottom:828.710257pt;}
.y3b_c00415{bottom:829.611373pt;}
.y3a_c00415{bottom:830.425837pt;}
.y39_c00415{bottom:831.121333pt;}
.y2b_c00415{bottom:856.913632pt;}
.y2c_c00415{bottom:857.148885pt;}
.y2d_c00415{bottom:857.800469pt;}
.y2e_c00415{bottom:858.674069pt;}
.y2f_c00415{bottom:859.003307pt;}
.y30_c00415{bottom:859.877451pt;}
.y31_c00415{bottom:860.194421pt;}
.y32_c00415{bottom:860.688107pt;}
.y33_c00415{bottom:861.063392pt;}
.y34_c00415{bottom:861.697493pt;}
.y35_c00415{bottom:862.128693pt;}
.y36_c00415{bottom:862.686677pt;}
.y37_c00415{bottom:862.851851pt;}
.y38_c00415{bottom:863.446805pt;}
.y1d_c00415{bottom:888.239392pt;}
.y1e_c00415{bottom:888.598197pt;}
.y1f_c00415{bottom:888.803136pt;}
.y20_c00415{bottom:889.213269pt;}
.y21_c00415{bottom:889.703243pt;}
.y22_c00415{bottom:889.889781pt;}
.y23_c00415{bottom:890.252117pt;}
.y24_c00415{bottom:890.729355pt;}
.y25_c00415{bottom:890.872725pt;}
.y26_c00415{bottom:891.345824pt;}
.y27_c00415{bottom:891.494091pt;}
.y28_c00415{bottom:891.899456pt;}
.y29_c00415{bottom:891.997973pt;}
.y2a_c00415{bottom:892.396043pt;}
.y12_c00415{bottom:921.288000pt;}
.y13_c00415{bottom:921.838795pt;}
.y14_c00415{bottom:922.078731pt;}
.y15_c00415{bottom:922.396085pt;}
.y16_c00415{bottom:922.714453pt;}
.y17_c00415{bottom:923.261472pt;}
.y18_c00415{bottom:923.429365pt;}
.y19_c00415{bottom:923.968480pt;}
.y1a_c00415{bottom:924.582816pt;}
.y1b_c00415{bottom:924.833717pt;}
.y1c_c00415{bottom:925.009419pt;}
.yd_c00415{bottom:951.863395pt;}
.ye_c00415{bottom:954.701328pt;}
.yf_c00415{bottom:955.610904pt;}
.y10_c00415{bottom:957.344571pt;}
.y11_c00415{bottom:958.133429pt;}
.y1_c00415{bottom:984.652000pt;}
.y3_c00415{bottom:984.945688pt;}
.y2_c00415{bottom:984.980536pt;}
.y4_c00415{bottom:985.134632pt;}
.y5_c00415{bottom:985.665688pt;}
.y6_c00415{bottom:985.827296pt;}
.y7_c00415{bottom:986.018512pt;}
.y8_c00415{bottom:986.282352pt;}
.y9_c00415{bottom:986.606320pt;}
.ya_c00415{bottom:986.764712pt;}
.yb_c00415{bottom:987.349344pt;}
.yc_c00415{bottom:987.614128pt;}
.hb_c00415{height:64.000000pt;}
.h6_c00415{height:64.002048pt;}
.h8_c00415{height:69.334200pt;}
.h4_c00415{height:69.335552pt;}
.h9_c00415{height:74.666667pt;}
.ha_c00415{height:80.000000pt;}
.h2_c00415{height:80.001440pt;}
.h5_c00415{height:80.002560pt;}
.h3_c00415{height:96.001728pt;}
.h7_c00415{height:101.337437pt;}
.h1_c00415{height:1112.000000pt;}
.h0_c00415{height:1112.133333pt;}
.w0_c00415{width:813.333333pt;}
.x0_c00415{left:0.000000pt;}
.x34_c00415{left:12.066667pt;}
.x4c_c00415{left:39.120000pt;}
.x28_c00415{left:49.396192pt;}
.x12_c00415{left:51.010667pt;}
.x41_c00415{left:55.274667pt;}
.x1_c00415{left:59.144000pt;}
.x29_c00415{left:70.802347pt;}
.x35_c00415{left:89.344000pt;}
.x42_c00415{left:91.521333pt;}
.x4d_c00415{left:96.480000pt;}
.x56_c00415{left:104.400000pt;}
.x3_c00415{left:108.092000pt;}
.x60_c00415{left:110.160000pt;}
.x1d_c00415{left:111.217355pt;}
.x2_c00415{left:113.900000pt;}
.x13_c00415{left:119.860000pt;}
.x57_c00415{left:123.840000pt;}
.x2a_c00415{left:130.082261pt;}
.x4_c00415{left:139.582667pt;}
.x1e_c00415{left:140.501589pt;}
.x61_c00415{left:142.560000pt;}
.x14_c00415{left:149.852000pt;}
.x43_c00415{left:153.936000pt;}
.x58_c00415{left:166.560000pt;}
.x36_c00415{left:179.840000pt;}
.x62_c00415{left:183.120000pt;}
.x15_c00415{left:189.521333pt;}
.x1f_c00415{left:199.102059pt;}
.x44_c00415{left:201.190667pt;}
.xd_c00415{left:205.467325pt;}
.x2b_c00415{left:209.447019pt;}
.x4e_c00415{left:216.000000pt;}
.x59_c00415{left:223.680000pt;}
.x5_c00415{left:228.092000pt;}
.x16_c00415{left:229.317333pt;}
.x2c_c00415{left:239.434304pt;}
.x4f_c00415{left:242.400000pt;}
.x6_c00415{left:255.026667pt;}
.x45_c00415{left:260.949333pt;}
.x20_c00415{left:269.182624pt;}
.x63_c00415{left:271.920000pt;}
.x37_c00415{left:279.964000pt;}
.x5a_c00415{left:282.000000pt;}
.x7_c00415{left:286.896000pt;}
.x21_c00415{left:295.833504pt;}
.x17_c00415{left:297.694667pt;}
.x46_c00415{left:300.070667pt;}
.x38_c00415{left:308.810667pt;}
.x64_c00415{left:313.200000pt;}
.x18_c00415{left:318.681333pt;}
.x50_c00415{left:322.320000pt;}
.x5b_c00415{left:323.520000pt;}
.x39_c00415{left:327.261333pt;}
.x8_c00415{left:330.869333pt;}
.x22_c00415{left:347.625920pt;}
.x47_c00415{left:358.625333pt;}
.x51_c00415{left:362.160000pt;}
.x5c_c00415{left:369.360000pt;}
.x9_c00415{left:384.864000pt;}
.x19_c00415{left:386.070667pt;}
.x2d_c00415{left:392.530624pt;}
.xe_c00415{left:408.224264pt;}
.x65_c00415{left:409.200000pt;}
.xa_c00415{left:411.262667pt;}
.x23_c00415{left:415.781131pt;}
.x2e_c00415{left:426.607136pt;}
.x3a_c00415{left:427.824000pt;}
.x24_c00415{left:436.202624pt;}
.x48_c00415{left:445.321333pt;}
.x52_c00415{left:447.120000pt;}
.x3b_c00415{left:456.058667pt;}
.x1a_c00415{left:462.862667pt;}
.xf_c00415{left:473.150477pt;}
.x2f_c00415{left:484.201749pt;}
.x66_c00415{left:486.000000pt;}
.x1b_c00415{left:494.225333pt;}
.x25_c00415{left:503.840501pt;}
.x3c_c00415{left:505.245333pt;}
.x5d_c00415{left:507.120000pt;}
.xb_c00415{left:508.701333pt;}
.x1c_c00415{left:516.188000pt;}
.x30_c00415{left:523.434144pt;}
.x26_c00415{left:525.040672pt;}
.x49_c00415{left:526.129333pt;}
.x67_c00415{left:527.520000pt;}
.x5e_c00415{left:531.360000pt;}
.x3d_c00415{left:534.853333pt;}
.x53_c00415{left:546.720000pt;}
.xc_c00415{left:552.832000pt;}
.x4a_c00415{left:554.752000pt;}
.x54_c00415{left:570.000000pt;}
.x31_c00415{left:574.180928pt;}
.x27_c00415{left:583.045141pt;}
.x3e_c00415{left:584.274667pt;}
.x32_c00415{left:589.160565pt;}
.x4b_c00415{left:590.272000pt;}
.x10_c00415{left:596.977867pt;}
.x5f_c00415{left:601.200000pt;}
.x68_c00415{left:606.480000pt;}
.x55_c00415{left:617.280000pt;}
.x3f_c00415{left:631.781333pt;}
.x33_c00415{left:643.195264pt;}
.x40_c00415{left:648.524000pt;}
.x11_c00415{left:653.340496pt;}
}





/* 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_c00416 {
    display:none;
  }
  .loading-indicator_c00416.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00416 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_c00416 { 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_c00416" -> "#page-container .classname_c00416")
 */
.pf_c00416 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00416 { /* 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_c00416.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00416 { /* 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_c00416 { /* 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_c00416 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00416 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00416 {overflow:visible;}
  }
}
.c_c00416 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00416 { /* 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_c00416:after { /* webkit #35443 */
  content: '';
}
.t_c00416:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00416 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 */
}
.__c00416 { /* 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_c00416 { /* info for Javascript */
  display:none;
}
.l_c00416 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00416 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00416 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00416: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_c00416 {
    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_c00416.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00416.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_c00416 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00416{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00416;src:url('chunks/assets/font_7c6b9abe6ee2a268480c528b.woff2')format("woff");}.ff1_c00416{font-family:ff1_c00416;line-height:1.000000;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;}
.m13f_c00416{transform:matrix(0.123016,0.001845,-0.003750,0.249972,0,0);-ms-transform:matrix(0.123016,0.001845,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.123016,0.001845,-0.003750,0.249972,0,0);}
.m37_c00416{transform:matrix(0.143343,0.001433,-0.002500,0.249988,0,0);-ms-transform:matrix(0.143343,0.001433,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.143343,0.001433,-0.002500,0.249988,0,0);}
.m146_c00416{transform:matrix(0.152728,0.002291,-0.003750,0.249972,0,0);-ms-transform:matrix(0.152728,0.002291,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.152728,0.002291,-0.003750,0.249972,0,0);}
.m147_c00416{transform:matrix(0.158147,0.002372,-0.003750,0.249972,0,0);-ms-transform:matrix(0.158147,0.002372,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.158147,0.002372,-0.003750,0.249972,0,0);}
.m144_c00416{transform:matrix(0.159052,0.002386,-0.003750,0.249972,0,0);-ms-transform:matrix(0.159052,0.002386,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.159052,0.002386,-0.003750,0.249972,0,0);}
.m145_c00416{transform:matrix(0.159587,0.002394,-0.003750,0.249972,0,0);-ms-transform:matrix(0.159587,0.002394,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.159587,0.002394,-0.003750,0.249972,0,0);}
.m35_c00416{transform:matrix(0.164672,0.001647,-0.002500,0.249988,0,0);-ms-transform:matrix(0.164672,0.001647,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.164672,0.001647,-0.002500,0.249988,0,0);}
.m14a_c00416{transform:matrix(0.175365,0.002630,-0.003750,0.249972,0,0);-ms-transform:matrix(0.175365,0.002630,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.175365,0.002630,-0.003750,0.249972,0,0);}
.m149_c00416{transform:matrix(0.176740,0.002651,-0.003750,0.249972,0,0);-ms-transform:matrix(0.176740,0.002651,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.176740,0.002651,-0.003750,0.249972,0,0);}
.m13_c00416{transform:matrix(0.176962,0.001062,-0.001500,0.249996,0,0);-ms-transform:matrix(0.176962,0.001062,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.176962,0.001062,-0.001500,0.249996,0,0);}
.mb_c00416{transform:matrix(0.177017,0.001062,-0.001500,0.249996,0,0);-ms-transform:matrix(0.177017,0.001062,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.177017,0.001062,-0.001500,0.249996,0,0);}
.m7e_c00416{transform:matrix(0.178070,0.002671,-0.003750,0.249972,0,0);-ms-transform:matrix(0.178070,0.002671,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.178070,0.002671,-0.003750,0.249972,0,0);}
.m11_c00416{transform:matrix(0.178612,0.001072,-0.001500,0.249996,0,0);-ms-transform:matrix(0.178612,0.001072,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.178612,0.001072,-0.001500,0.249996,0,0);}
.m3_c00416{transform:matrix(0.179797,0.001079,-0.001500,0.249996,0,0);-ms-transform:matrix(0.179797,0.001079,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.179797,0.001079,-0.001500,0.249996,0,0);}
.m19_c00416{transform:matrix(0.180277,0.001082,-0.001500,0.249996,0,0);-ms-transform:matrix(0.180277,0.001082,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.180277,0.001082,-0.001500,0.249996,0,0);}
.mbf_c00416{transform:matrix(0.180755,0.002711,-0.003750,0.249972,0,0);-ms-transform:matrix(0.180755,0.002711,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.180755,0.002711,-0.003750,0.249972,0,0);}
.md_c00416{transform:matrix(0.180852,0.001085,-0.001500,0.249996,0,0);-ms-transform:matrix(0.180852,0.001085,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.180852,0.001085,-0.001500,0.249996,0,0);}
.mc6_c00416{transform:matrix(0.181315,0.002720,-0.003750,0.249972,0,0);-ms-transform:matrix(0.181315,0.002720,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.181315,0.002720,-0.003750,0.249972,0,0);}
.m11e_c00416{transform:matrix(0.182309,0.002735,-0.003750,0.249972,0,0);-ms-transform:matrix(0.182309,0.002735,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.182309,0.002735,-0.003750,0.249972,0,0);}
.m142_c00416{transform:matrix(0.182314,0.002735,-0.003750,0.249972,0,0);-ms-transform:matrix(0.182314,0.002735,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.182314,0.002735,-0.003750,0.249972,0,0);}
.m148_c00416{transform:matrix(0.182839,0.002743,-0.003750,0.249972,0,0);-ms-transform:matrix(0.182839,0.002743,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.182839,0.002743,-0.003750,0.249972,0,0);}
.m141_c00416{transform:matrix(0.183414,0.002751,-0.003750,0.249972,0,0);-ms-transform:matrix(0.183414,0.002751,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.183414,0.002751,-0.003750,0.249972,0,0);}
.m85_c00416{transform:matrix(0.183599,0.002754,-0.003750,0.249972,0,0);-ms-transform:matrix(0.183599,0.002754,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.183599,0.002754,-0.003750,0.249972,0,0);}
.m143_c00416{transform:matrix(0.184224,0.002763,-0.003750,0.249972,0,0);-ms-transform:matrix(0.184224,0.002763,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.184224,0.002763,-0.003750,0.249972,0,0);}
.mc3_c00416{transform:matrix(0.184974,0.002775,-0.003750,0.249972,0,0);-ms-transform:matrix(0.184974,0.002775,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.184974,0.002775,-0.003750,0.249972,0,0);}
.mda_c00416{transform:matrix(0.187929,0.002819,-0.003750,0.249972,0,0);-ms-transform:matrix(0.187929,0.002819,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.187929,0.002819,-0.003750,0.249972,0,0);}
.mc5_c00416{transform:matrix(0.188169,0.002823,-0.003750,0.249972,0,0);-ms-transform:matrix(0.188169,0.002823,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.188169,0.002823,-0.003750,0.249972,0,0);}
.m71_c00416{transform:matrix(0.188944,0.002834,-0.003750,0.249972,0,0);-ms-transform:matrix(0.188944,0.002834,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.188944,0.002834,-0.003750,0.249972,0,0);}
.md7_c00416{transform:matrix(0.189729,0.002846,-0.003750,0.249972,0,0);-ms-transform:matrix(0.189729,0.002846,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.189729,0.002846,-0.003750,0.249972,0,0);}
.m23_c00416{transform:matrix(0.190175,0.001902,-0.002500,0.249988,0,0);-ms-transform:matrix(0.190175,0.001902,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.190175,0.001902,-0.002500,0.249988,0,0);}
.m1c_c00416{transform:matrix(0.190542,0.001143,-0.001500,0.249996,0,0);-ms-transform:matrix(0.190542,0.001143,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.190542,0.001143,-0.001500,0.249996,0,0);}
.m5c_c00416{transform:matrix(0.191045,0.001910,-0.002500,0.249988,0,0);-ms-transform:matrix(0.191045,0.001910,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.191045,0.001910,-0.002500,0.249988,0,0);}
.m1a_c00416{transform:matrix(0.191202,0.001147,-0.001500,0.249996,0,0);-ms-transform:matrix(0.191202,0.001147,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.191202,0.001147,-0.001500,0.249996,0,0);}
.m2e_c00416{transform:matrix(0.191965,0.001920,-0.002500,0.249988,0,0);-ms-transform:matrix(0.191965,0.001920,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.191965,0.001920,-0.002500,0.249988,0,0);}
.me2_c00416{transform:matrix(0.193038,0.002896,-0.003750,0.249972,0,0);-ms-transform:matrix(0.193038,0.002896,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.193038,0.002896,-0.003750,0.249972,0,0);}
.m4_c00416{transform:matrix(0.193597,0.001162,-0.001500,0.249996,0,0);-ms-transform:matrix(0.193597,0.001162,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.193597,0.001162,-0.001500,0.249996,0,0);}
.m7f_c00416{transform:matrix(0.194173,0.002913,-0.003750,0.249972,0,0);-ms-transform:matrix(0.194173,0.002913,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.194173,0.002913,-0.003750,0.249972,0,0);}
.m36_c00416{transform:matrix(0.194565,0.001946,-0.002500,0.249988,0,0);-ms-transform:matrix(0.194565,0.001946,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.194565,0.001946,-0.002500,0.249988,0,0);}
.ma_c00416{transform:matrix(0.196306,0.001178,-0.001500,0.249996,0,0);-ms-transform:matrix(0.196306,0.001178,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.196306,0.001178,-0.001500,0.249996,0,0);}
.m2b_c00416{transform:matrix(0.196505,0.001965,-0.002500,0.249988,0,0);-ms-transform:matrix(0.196505,0.001965,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.196505,0.001965,-0.002500,0.249988,0,0);}
.m104_c00416{transform:matrix(0.196713,0.002951,-0.003750,0.249972,0,0);-ms-transform:matrix(0.196713,0.002951,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.196713,0.002951,-0.003750,0.249972,0,0);}
.m1e_c00416{transform:matrix(0.197615,0.001976,-0.002500,0.249988,0,0);-ms-transform:matrix(0.197615,0.001976,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.197615,0.001976,-0.002500,0.249988,0,0);}
.m15_c00416{transform:matrix(0.198341,0.001190,-0.001500,0.249996,0,0);-ms-transform:matrix(0.198341,0.001190,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.198341,0.001190,-0.001500,0.249996,0,0);}
.ma3_c00416{transform:matrix(0.199078,0.002986,-0.003750,0.249972,0,0);-ms-transform:matrix(0.199078,0.002986,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.199078,0.002986,-0.003750,0.249972,0,0);}
.m10_c00416{transform:matrix(0.199726,0.001198,-0.001500,0.249996,0,0);-ms-transform:matrix(0.199726,0.001198,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.199726,0.001198,-0.001500,0.249996,0,0);}
.mcb_c00416{transform:matrix(0.200222,0.003003,-0.003750,0.249972,0,0);-ms-transform:matrix(0.200222,0.003003,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.200222,0.003003,-0.003750,0.249972,0,0);}
.mc7_c00416{transform:matrix(0.200347,0.003005,-0.003750,0.249972,0,0);-ms-transform:matrix(0.200347,0.003005,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.200347,0.003005,-0.003750,0.249972,0,0);}
.m0_c00416{transform:matrix(0.200690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200690,0.000000,0.000000,0.250000,0,0);}
.mc4_c00416{transform:matrix(0.201002,0.003015,-0.003750,0.249972,0,0);-ms-transform:matrix(0.201002,0.003015,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.201002,0.003015,-0.003750,0.249972,0,0);}
.m14_c00416{transform:matrix(0.201891,0.001211,-0.001500,0.249996,0,0);-ms-transform:matrix(0.201891,0.001211,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.201891,0.001211,-0.001500,0.249996,0,0);}
.mc0_c00416{transform:matrix(0.202112,0.003032,-0.003750,0.249972,0,0);-ms-transform:matrix(0.202112,0.003032,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.202112,0.003032,-0.003750,0.249972,0,0);}
.m1d_c00416{transform:matrix(0.202296,0.001214,-0.001500,0.249996,0,0);-ms-transform:matrix(0.202296,0.001214,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.202296,0.001214,-0.001500,0.249996,0,0);}
.mc1_c00416{transform:matrix(0.202317,0.003035,-0.003750,0.249972,0,0);-ms-transform:matrix(0.202317,0.003035,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.202317,0.003035,-0.003750,0.249972,0,0);}
.mac_c00416{transform:matrix(0.202642,0.003040,-0.003750,0.249972,0,0);-ms-transform:matrix(0.202642,0.003040,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.202642,0.003040,-0.003750,0.249972,0,0);}
.mb5_c00416{transform:matrix(0.202817,0.003042,-0.003750,0.249972,0,0);-ms-transform:matrix(0.202817,0.003042,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.202817,0.003042,-0.003750,0.249972,0,0);}
.mc8_c00416{transform:matrix(0.202987,0.003045,-0.003750,0.249972,0,0);-ms-transform:matrix(0.202987,0.003045,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.202987,0.003045,-0.003750,0.249972,0,0);}
.maa_c00416{transform:matrix(0.203332,0.003050,-0.003750,0.249972,0,0);-ms-transform:matrix(0.203332,0.003050,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.203332,0.003050,-0.003750,0.249972,0,0);}
.me3_c00416{transform:matrix(0.203757,0.003056,-0.003750,0.249972,0,0);-ms-transform:matrix(0.203757,0.003056,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.203757,0.003056,-0.003750,0.249972,0,0);}
.m13b_c00416{transform:matrix(0.203832,0.003057,-0.003750,0.249972,0,0);-ms-transform:matrix(0.203832,0.003057,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.203832,0.003057,-0.003750,0.249972,0,0);}
.me6_c00416{transform:matrix(0.204022,0.003060,-0.003750,0.249972,0,0);-ms-transform:matrix(0.204022,0.003060,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.204022,0.003060,-0.003750,0.249972,0,0);}
.m7a_c00416{transform:matrix(0.204167,0.003063,-0.003750,0.249972,0,0);-ms-transform:matrix(0.204167,0.003063,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.204167,0.003063,-0.003750,0.249972,0,0);}
.m20_c00416{transform:matrix(0.204450,0.002044,-0.002500,0.249988,0,0);-ms-transform:matrix(0.204450,0.002044,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.204450,0.002044,-0.002500,0.249988,0,0);}
.me_c00416{transform:matrix(0.204551,0.001227,-0.001500,0.249996,0,0);-ms-transform:matrix(0.204551,0.001227,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.204551,0.001227,-0.001500,0.249996,0,0);}
.m13c_c00416{transform:matrix(0.204957,0.003074,-0.003750,0.249972,0,0);-ms-transform:matrix(0.204957,0.003074,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.204957,0.003074,-0.003750,0.249972,0,0);}
.m100_c00416{transform:matrix(0.205102,0.003077,-0.003750,0.249972,0,0);-ms-transform:matrix(0.205102,0.003077,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.205102,0.003077,-0.003750,0.249972,0,0);}
.mf9_c00416{transform:matrix(0.205377,0.003081,-0.003750,0.249972,0,0);-ms-transform:matrix(0.205377,0.003081,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.205377,0.003081,-0.003750,0.249972,0,0);}
.m9_c00416{transform:matrix(0.205426,0.001233,-0.001500,0.249996,0,0);-ms-transform:matrix(0.205426,0.001233,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.205426,0.001233,-0.001500,0.249996,0,0);}
.mca_c00416{transform:matrix(0.205612,0.003084,-0.003750,0.249972,0,0);-ms-transform:matrix(0.205612,0.003084,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.205612,0.003084,-0.003750,0.249972,0,0);}
.m2c_c00416{transform:matrix(0.205955,0.002060,-0.002500,0.249988,0,0);-ms-transform:matrix(0.205955,0.002060,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.205955,0.002060,-0.002500,0.249988,0,0);}
.m12_c00416{transform:matrix(0.206191,0.001237,-0.001500,0.249996,0,0);-ms-transform:matrix(0.206191,0.001237,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.206191,0.001237,-0.001500,0.249996,0,0);}
.m6_c00416{transform:matrix(0.206296,0.001238,-0.001500,0.249996,0,0);-ms-transform:matrix(0.206296,0.001238,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.206296,0.001238,-0.001500,0.249996,0,0);}
.m28_c00416{transform:matrix(0.206420,0.002064,-0.002500,0.249988,0,0);-ms-transform:matrix(0.206420,0.002064,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.206420,0.002064,-0.002500,0.249988,0,0);}
.m47_c00416{transform:matrix(0.206730,0.002067,-0.002500,0.249988,0,0);-ms-transform:matrix(0.206730,0.002067,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.206730,0.002067,-0.002500,0.249988,0,0);}
.m125_c00416{transform:matrix(0.206802,0.003102,-0.003750,0.249972,0,0);-ms-transform:matrix(0.206802,0.003102,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.206802,0.003102,-0.003750,0.249972,0,0);}
.m90_c00416{transform:matrix(0.207077,0.003106,-0.003750,0.249972,0,0);-ms-transform:matrix(0.207077,0.003106,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.207077,0.003106,-0.003750,0.249972,0,0);}
.m2a_c00416{transform:matrix(0.207230,0.002072,-0.002500,0.249988,0,0);-ms-transform:matrix(0.207230,0.002072,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.207230,0.002072,-0.002500,0.249988,0,0);}
.mbc_c00416{transform:matrix(0.207692,0.003115,-0.003750,0.249972,0,0);-ms-transform:matrix(0.207692,0.003115,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.207692,0.003115,-0.003750,0.249972,0,0);}
.m7_c00416{transform:matrix(0.207961,0.001248,-0.001500,0.249996,0,0);-ms-transform:matrix(0.207961,0.001248,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.207961,0.001248,-0.001500,0.249996,0,0);}
.m82_c00416{transform:matrix(0.208017,0.003120,-0.003750,0.249972,0,0);-ms-transform:matrix(0.208017,0.003120,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.208017,0.003120,-0.003750,0.249972,0,0);}
.m128_c00416{transform:matrix(0.208347,0.003125,-0.003750,0.249972,0,0);-ms-transform:matrix(0.208347,0.003125,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.208347,0.003125,-0.003750,0.249972,0,0);}
.mc_c00416{transform:matrix(0.208386,0.001250,-0.001500,0.249996,0,0);-ms-transform:matrix(0.208386,0.001250,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.208386,0.001250,-0.001500,0.249996,0,0);}
.mb8_c00416{transform:matrix(0.208687,0.003130,-0.003750,0.249972,0,0);-ms-transform:matrix(0.208687,0.003130,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.208687,0.003130,-0.003750,0.249972,0,0);}
.ma5_c00416{transform:matrix(0.209196,0.003138,-0.003750,0.249972,0,0);-ms-transform:matrix(0.209196,0.003138,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.209196,0.003138,-0.003750,0.249972,0,0);}
.m49_c00416{transform:matrix(0.209290,0.002093,-0.002500,0.249988,0,0);-ms-transform:matrix(0.209290,0.002093,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.209290,0.002093,-0.002500,0.249988,0,0);}
.m32_c00416{transform:matrix(0.209535,0.002095,-0.002500,0.249988,0,0);-ms-transform:matrix(0.209535,0.002095,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.209535,0.002095,-0.002500,0.249988,0,0);}
.mdf_c00416{transform:matrix(0.210161,0.003152,-0.003750,0.249972,0,0);-ms-transform:matrix(0.210161,0.003152,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.210161,0.003152,-0.003750,0.249972,0,0);}
.m7d_c00416{transform:matrix(0.210256,0.003154,-0.003750,0.249972,0,0);-ms-transform:matrix(0.210256,0.003154,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.210256,0.003154,-0.003750,0.249972,0,0);}
.mc2_c00416{transform:matrix(0.210266,0.003154,-0.003750,0.249972,0,0);-ms-transform:matrix(0.210266,0.003154,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.210266,0.003154,-0.003750,0.249972,0,0);}
.m122_c00416{transform:matrix(0.210371,0.003156,-0.003750,0.249972,0,0);-ms-transform:matrix(0.210371,0.003156,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.210371,0.003156,-0.003750,0.249972,0,0);}
.mdb_c00416{transform:matrix(0.210806,0.003162,-0.003750,0.249972,0,0);-ms-transform:matrix(0.210806,0.003162,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.210806,0.003162,-0.003750,0.249972,0,0);}
.md9_c00416{transform:matrix(0.211006,0.003165,-0.003750,0.249972,0,0);-ms-transform:matrix(0.211006,0.003165,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.211006,0.003165,-0.003750,0.249972,0,0);}
.m22_c00416{transform:matrix(0.211279,0.002113,-0.002500,0.249988,0,0);-ms-transform:matrix(0.211279,0.002113,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.211279,0.002113,-0.002500,0.249988,0,0);}
.ma1_c00416{transform:matrix(0.211461,0.003172,-0.003750,0.249972,0,0);-ms-transform:matrix(0.211461,0.003172,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.211461,0.003172,-0.003750,0.249972,0,0);}
.md4_c00416{transform:matrix(0.211741,0.003176,-0.003750,0.249972,0,0);-ms-transform:matrix(0.211741,0.003176,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.211741,0.003176,-0.003750,0.249972,0,0);}
.md0_c00416{transform:matrix(0.211946,0.003179,-0.003750,0.249972,0,0);-ms-transform:matrix(0.211946,0.003179,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.211946,0.003179,-0.003750,0.249972,0,0);}
.m25_c00416{transform:matrix(0.211959,0.002120,-0.002500,0.249988,0,0);-ms-transform:matrix(0.211959,0.002120,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.211959,0.002120,-0.002500,0.249988,0,0);}
.m8_c00416{transform:matrix(0.211981,0.001272,-0.001500,0.249996,0,0);-ms-transform:matrix(0.211981,0.001272,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.211981,0.001272,-0.001500,0.249996,0,0);}
.maf_c00416{transform:matrix(0.212161,0.003182,-0.003750,0.249972,0,0);-ms-transform:matrix(0.212161,0.003182,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.212161,0.003182,-0.003750,0.249972,0,0);}
.mb2_c00416{transform:matrix(0.212491,0.003187,-0.003750,0.249972,0,0);-ms-transform:matrix(0.212491,0.003187,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.212491,0.003187,-0.003750,0.249972,0,0);}
.me1_c00416{transform:matrix(0.212561,0.003188,-0.003750,0.249972,0,0);-ms-transform:matrix(0.212561,0.003188,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.212561,0.003188,-0.003750,0.249972,0,0);}
.m4b_c00416{transform:matrix(0.212609,0.002126,-0.002500,0.249988,0,0);-ms-transform:matrix(0.212609,0.002126,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.212609,0.002126,-0.002500,0.249988,0,0);}
.me0_c00416{transform:matrix(0.212711,0.003191,-0.003750,0.249972,0,0);-ms-transform:matrix(0.212711,0.003191,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.212711,0.003191,-0.003750,0.249972,0,0);}
.m83_c00416{transform:matrix(0.212936,0.003194,-0.003750,0.249972,0,0);-ms-transform:matrix(0.212936,0.003194,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.212936,0.003194,-0.003750,0.249972,0,0);}
.m108_c00416{transform:matrix(0.212991,0.003195,-0.003750,0.249972,0,0);-ms-transform:matrix(0.212991,0.003195,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.212991,0.003195,-0.003750,0.249972,0,0);}
.mf0_c00416{transform:matrix(0.213111,0.003197,-0.003750,0.249972,0,0);-ms-transform:matrix(0.213111,0.003197,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.213111,0.003197,-0.003750,0.249972,0,0);}
.m18_c00416{transform:matrix(0.213186,0.001279,-0.001500,0.249996,0,0);-ms-transform:matrix(0.213186,0.001279,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.213186,0.001279,-0.001500,0.249996,0,0);}
.m118_c00416{transform:matrix(0.213796,0.003207,-0.003750,0.249972,0,0);-ms-transform:matrix(0.213796,0.003207,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.213796,0.003207,-0.003750,0.249972,0,0);}
.m107_c00416{transform:matrix(0.213961,0.003209,-0.003750,0.249972,0,0);-ms-transform:matrix(0.213961,0.003209,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.213961,0.003209,-0.003750,0.249972,0,0);}
.mcd_c00416{transform:matrix(0.214056,0.003211,-0.003750,0.249972,0,0);-ms-transform:matrix(0.214056,0.003211,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.214056,0.003211,-0.003750,0.249972,0,0);}
.mb7_c00416{transform:matrix(0.214396,0.003216,-0.003750,0.249972,0,0);-ms-transform:matrix(0.214396,0.003216,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.214396,0.003216,-0.003750,0.249972,0,0);}
.m1b_c00416{transform:matrix(0.214496,0.001287,-0.001500,0.249996,0,0);-ms-transform:matrix(0.214496,0.001287,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.214496,0.001287,-0.001500,0.249996,0,0);}
.m16_c00416{transform:matrix(0.214681,0.001288,-0.001500,0.249996,0,0);-ms-transform:matrix(0.214681,0.001288,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.214681,0.001288,-0.001500,0.249996,0,0);}
.m2f_c00416{transform:matrix(0.214714,0.002147,-0.002500,0.249988,0,0);-ms-transform:matrix(0.214714,0.002147,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.214714,0.002147,-0.002500,0.249988,0,0);}
.ma6_c00416{transform:matrix(0.214726,0.003221,-0.003750,0.249972,0,0);-ms-transform:matrix(0.214726,0.003221,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.214726,0.003221,-0.003750,0.249972,0,0);}
.ma0_c00416{transform:matrix(0.214831,0.003222,-0.003750,0.249972,0,0);-ms-transform:matrix(0.214831,0.003222,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.214831,0.003222,-0.003750,0.249972,0,0);}
.m101_c00416{transform:matrix(0.214936,0.003224,-0.003750,0.249972,0,0);-ms-transform:matrix(0.214936,0.003224,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.214936,0.003224,-0.003750,0.249972,0,0);}
.m5b_c00416{transform:matrix(0.215029,0.002150,-0.002500,0.249988,0,0);-ms-transform:matrix(0.215029,0.002150,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.215029,0.002150,-0.002500,0.249988,0,0);}
.me9_c00416{transform:matrix(0.215036,0.003226,-0.003750,0.249972,0,0);-ms-transform:matrix(0.215036,0.003226,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.215036,0.003226,-0.003750,0.249972,0,0);}
.m7c_c00416{transform:matrix(0.215111,0.003227,-0.003750,0.249972,0,0);-ms-transform:matrix(0.215111,0.003227,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.215111,0.003227,-0.003750,0.249972,0,0);}
.mce_c00416{transform:matrix(0.215171,0.003228,-0.003750,0.249972,0,0);-ms-transform:matrix(0.215171,0.003228,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.215171,0.003228,-0.003750,0.249972,0,0);}
.m64_c00416{transform:matrix(0.215681,0.003235,-0.003750,0.249972,0,0);-ms-transform:matrix(0.215681,0.003235,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.215681,0.003235,-0.003750,0.249972,0,0);}
.ma8_c00416{transform:matrix(0.215866,0.003238,-0.003750,0.249972,0,0);-ms-transform:matrix(0.215866,0.003238,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.215866,0.003238,-0.003750,0.249972,0,0);}
.mdd_c00416{transform:matrix(0.216311,0.003245,-0.003750,0.249972,0,0);-ms-transform:matrix(0.216311,0.003245,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.216311,0.003245,-0.003750,0.249972,0,0);}
.me8_c00416{transform:matrix(0.216526,0.003248,-0.003750,0.249972,0,0);-ms-transform:matrix(0.216526,0.003248,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.216526,0.003248,-0.003750,0.249972,0,0);}
.m80_c00416{transform:matrix(0.216636,0.003250,-0.003750,0.249972,0,0);-ms-transform:matrix(0.216636,0.003250,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.216636,0.003250,-0.003750,0.249972,0,0);}
.ma4_c00416{transform:matrix(0.216681,0.003250,-0.003750,0.249972,0,0);-ms-transform:matrix(0.216681,0.003250,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.216681,0.003250,-0.003750,0.249972,0,0);}
.mb4_c00416{transform:matrix(0.216701,0.003251,-0.003750,0.249972,0,0);-ms-transform:matrix(0.216701,0.003251,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.216701,0.003251,-0.003750,0.249972,0,0);}
.m13e_c00416{transform:matrix(0.216716,0.003251,-0.003750,0.249972,0,0);-ms-transform:matrix(0.216716,0.003251,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.216716,0.003251,-0.003750,0.249972,0,0);}
.m29_c00416{transform:matrix(0.217029,0.002170,-0.002500,0.249988,0,0);-ms-transform:matrix(0.217029,0.002170,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.217029,0.002170,-0.002500,0.249988,0,0);}
.m30_c00416{transform:matrix(0.217609,0.002176,-0.002500,0.249988,0,0);-ms-transform:matrix(0.217609,0.002176,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.217609,0.002176,-0.002500,0.249988,0,0);}
.m5_c00416{transform:matrix(0.217791,0.001307,-0.001500,0.249996,0,0);-ms-transform:matrix(0.217791,0.001307,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.217791,0.001307,-0.001500,0.249996,0,0);}
.m81_c00416{transform:matrix(0.218445,0.003277,-0.003750,0.249972,0,0);-ms-transform:matrix(0.218445,0.003277,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.218445,0.003277,-0.003750,0.249972,0,0);}
.m119_c00416{transform:matrix(0.218770,0.003282,-0.003750,0.249972,0,0);-ms-transform:matrix(0.218770,0.003282,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.218770,0.003282,-0.003750,0.249972,0,0);}
.m134_c00416{transform:matrix(0.218830,0.003282,-0.003750,0.249972,0,0);-ms-transform:matrix(0.218830,0.003282,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.218830,0.003282,-0.003750,0.249972,0,0);}
.md3_c00416{transform:matrix(0.219310,0.003290,-0.003750,0.249972,0,0);-ms-transform:matrix(0.219310,0.003290,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.219310,0.003290,-0.003750,0.249972,0,0);}
.m11d_c00416{transform:matrix(0.219350,0.003290,-0.003750,0.249972,0,0);-ms-transform:matrix(0.219350,0.003290,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.219350,0.003290,-0.003750,0.249972,0,0);}
.m88_c00416{transform:matrix(0.219775,0.003297,-0.003750,0.249972,0,0);-ms-transform:matrix(0.219775,0.003297,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.219775,0.003297,-0.003750,0.249972,0,0);}
.m131_c00416{transform:matrix(0.220165,0.003302,-0.003750,0.249972,0,0);-ms-transform:matrix(0.220165,0.003302,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.220165,0.003302,-0.003750,0.249972,0,0);}
.mcc_c00416{transform:matrix(0.220265,0.003304,-0.003750,0.249972,0,0);-ms-transform:matrix(0.220265,0.003304,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.220265,0.003304,-0.003750,0.249972,0,0);}
.m34_c00416{transform:matrix(0.220609,0.002206,-0.002500,0.249988,0,0);-ms-transform:matrix(0.220609,0.002206,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.220609,0.002206,-0.002500,0.249988,0,0);}
.mc9_c00416{transform:matrix(0.221015,0.003315,-0.003750,0.249972,0,0);-ms-transform:matrix(0.221015,0.003315,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.221015,0.003315,-0.003750,0.249972,0,0);}
.md2_c00416{transform:matrix(0.221155,0.003317,-0.003750,0.249972,0,0);-ms-transform:matrix(0.221155,0.003317,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.221155,0.003317,-0.003750,0.249972,0,0);}
.m24_c00416{transform:matrix(0.221504,0.002215,-0.002500,0.249988,0,0);-ms-transform:matrix(0.221504,0.002215,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.221504,0.002215,-0.002500,0.249988,0,0);}
.mb6_c00416{transform:matrix(0.221805,0.003327,-0.003750,0.249972,0,0);-ms-transform:matrix(0.221805,0.003327,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.221805,0.003327,-0.003750,0.249972,0,0);}
.m45_c00416{transform:matrix(0.222139,0.002221,-0.002500,0.249988,0,0);-ms-transform:matrix(0.222139,0.002221,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.222139,0.002221,-0.002500,0.249988,0,0);}
.mf_c00416{transform:matrix(0.222176,0.001333,-0.001500,0.249996,0,0);-ms-transform:matrix(0.222176,0.001333,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.222176,0.001333,-0.001500,0.249996,0,0);}
.m75_c00416{transform:matrix(0.222190,0.003333,-0.003750,0.249972,0,0);-ms-transform:matrix(0.222190,0.003333,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.222190,0.003333,-0.003750,0.249972,0,0);}
.m123_c00416{transform:matrix(0.222215,0.003333,-0.003750,0.249972,0,0);-ms-transform:matrix(0.222215,0.003333,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.222215,0.003333,-0.003750,0.249972,0,0);}
.mf1_c00416{transform:matrix(0.222230,0.003333,-0.003750,0.249972,0,0);-ms-transform:matrix(0.222230,0.003333,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.222230,0.003333,-0.003750,0.249972,0,0);}
.me4_c00416{transform:matrix(0.222380,0.003336,-0.003750,0.249972,0,0);-ms-transform:matrix(0.222380,0.003336,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.222380,0.003336,-0.003750,0.249972,0,0);}
.m136_c00416{transform:matrix(0.222405,0.003336,-0.003750,0.249972,0,0);-ms-transform:matrix(0.222405,0.003336,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.222405,0.003336,-0.003750,0.249972,0,0);}
.m2d_c00416{transform:matrix(0.222519,0.002225,-0.002500,0.249988,0,0);-ms-transform:matrix(0.222519,0.002225,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.222519,0.002225,-0.002500,0.249988,0,0);}
.m31_c00416{transform:matrix(0.222939,0.002229,-0.002500,0.249988,0,0);-ms-transform:matrix(0.222939,0.002229,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.222939,0.002229,-0.002500,0.249988,0,0);}
.m13a_c00416{transform:matrix(0.223090,0.003346,-0.003750,0.249972,0,0);-ms-transform:matrix(0.223090,0.003346,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.223090,0.003346,-0.003750,0.249972,0,0);}
.m39_c00416{transform:matrix(0.223259,0.002233,-0.002500,0.249988,0,0);-ms-transform:matrix(0.223259,0.002233,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.223259,0.002233,-0.002500,0.249988,0,0);}
.m133_c00416{transform:matrix(0.223380,0.003351,-0.003750,0.249972,0,0);-ms-transform:matrix(0.223380,0.003351,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.223380,0.003351,-0.003750,0.249972,0,0);}
.m114_c00416{transform:matrix(0.223860,0.003358,-0.003750,0.249972,0,0);-ms-transform:matrix(0.223860,0.003358,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.223860,0.003358,-0.003750,0.249972,0,0);}
.m76_c00416{transform:matrix(0.224045,0.003361,-0.003750,0.249972,0,0);-ms-transform:matrix(0.224045,0.003361,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.224045,0.003361,-0.003750,0.249972,0,0);}
.mf7_c00416{transform:matrix(0.224630,0.003369,-0.003750,0.249972,0,0);-ms-transform:matrix(0.224630,0.003369,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.224630,0.003369,-0.003750,0.249972,0,0);}
.m57_c00416{transform:matrix(0.224669,0.002247,-0.002500,0.249988,0,0);-ms-transform:matrix(0.224669,0.002247,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.224669,0.002247,-0.002500,0.249988,0,0);}
.m21_c00416{transform:matrix(0.225319,0.002253,-0.002500,0.249988,0,0);-ms-transform:matrix(0.225319,0.002253,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.225319,0.002253,-0.002500,0.249988,0,0);}
.m6e_c00416{transform:matrix(0.225320,0.003380,-0.003750,0.249972,0,0);-ms-transform:matrix(0.225320,0.003380,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.225320,0.003380,-0.003750,0.249972,0,0);}
.ma2_c00416{transform:matrix(0.225805,0.003387,-0.003750,0.249972,0,0);-ms-transform:matrix(0.225805,0.003387,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.225805,0.003387,-0.003750,0.249972,0,0);}
.mbd_c00416{transform:matrix(0.225885,0.003388,-0.003750,0.249972,0,0);-ms-transform:matrix(0.225885,0.003388,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.225885,0.003388,-0.003750,0.249972,0,0);}
.me7_c00416{transform:matrix(0.225915,0.003389,-0.003750,0.249972,0,0);-ms-transform:matrix(0.225915,0.003389,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.225915,0.003389,-0.003750,0.249972,0,0);}
.mec_c00416{transform:matrix(0.226000,0.003390,-0.003750,0.249972,0,0);-ms-transform:matrix(0.226000,0.003390,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.226000,0.003390,-0.003750,0.249972,0,0);}
.m3e_c00416{transform:matrix(0.226054,0.002261,-0.002500,0.249988,0,0);-ms-transform:matrix(0.226054,0.002261,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.226054,0.002261,-0.002500,0.249988,0,0);}
.m26_c00416{transform:matrix(0.226279,0.002263,-0.002500,0.249988,0,0);-ms-transform:matrix(0.226279,0.002263,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.226279,0.002263,-0.002500,0.249988,0,0);}
.m84_c00416{transform:matrix(0.226370,0.003396,-0.003750,0.249972,0,0);-ms-transform:matrix(0.226370,0.003396,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.226370,0.003396,-0.003750,0.249972,0,0);}
.m17_c00416{transform:matrix(0.226411,0.001358,-0.001500,0.249996,0,0);-ms-transform:matrix(0.226411,0.001358,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.226411,0.001358,-0.001500,0.249996,0,0);}
.mee_c00416{transform:matrix(0.226575,0.003399,-0.003750,0.249972,0,0);-ms-transform:matrix(0.226575,0.003399,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.226575,0.003399,-0.003750,0.249972,0,0);}
.mb0_c00416{transform:matrix(0.226630,0.003399,-0.003750,0.249972,0,0);-ms-transform:matrix(0.226630,0.003399,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.226630,0.003399,-0.003750,0.249972,0,0);}
.m9a_c00416{transform:matrix(0.226719,0.003401,-0.003750,0.249972,0,0);-ms-transform:matrix(0.226719,0.003401,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.226719,0.003401,-0.003750,0.249972,0,0);}
.m10b_c00416{transform:matrix(0.226939,0.003404,-0.003750,0.249972,0,0);-ms-transform:matrix(0.226939,0.003404,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.226939,0.003404,-0.003750,0.249972,0,0);}
.md5_c00416{transform:matrix(0.227094,0.003406,-0.003750,0.249972,0,0);-ms-transform:matrix(0.227094,0.003406,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.227094,0.003406,-0.003750,0.249972,0,0);}
.m4e_c00416{transform:matrix(0.227254,0.002273,-0.002500,0.249988,0,0);-ms-transform:matrix(0.227254,0.002273,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.227254,0.002273,-0.002500,0.249988,0,0);}
.m9e_c00416{transform:matrix(0.227544,0.003413,-0.003750,0.249972,0,0);-ms-transform:matrix(0.227544,0.003413,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.227544,0.003413,-0.003750,0.249972,0,0);}
.mea_c00416{transform:matrix(0.227724,0.003416,-0.003750,0.249972,0,0);-ms-transform:matrix(0.227724,0.003416,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.227724,0.003416,-0.003750,0.249972,0,0);}
.m121_c00416{transform:matrix(0.228139,0.003422,-0.003750,0.249972,0,0);-ms-transform:matrix(0.228139,0.003422,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.228139,0.003422,-0.003750,0.249972,0,0);}
.mf5_c00416{transform:matrix(0.228174,0.003423,-0.003750,0.249972,0,0);-ms-transform:matrix(0.228174,0.003423,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.228174,0.003423,-0.003750,0.249972,0,0);}
.me5_c00416{transform:matrix(0.228194,0.003423,-0.003750,0.249972,0,0);-ms-transform:matrix(0.228194,0.003423,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.228194,0.003423,-0.003750,0.249972,0,0);}
.m63_c00416{transform:matrix(0.228254,0.003424,-0.003750,0.249972,0,0);-ms-transform:matrix(0.228254,0.003424,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.228254,0.003424,-0.003750,0.249972,0,0);}
.mfe_c00416{transform:matrix(0.228539,0.003428,-0.003750,0.249972,0,0);-ms-transform:matrix(0.228539,0.003428,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.228539,0.003428,-0.003750,0.249972,0,0);}
.m33_c00416{transform:matrix(0.228744,0.002287,-0.002500,0.249988,0,0);-ms-transform:matrix(0.228744,0.002287,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.228744,0.002287,-0.002500,0.249988,0,0);}
.m69_c00416{transform:matrix(0.228789,0.003432,-0.003750,0.249972,0,0);-ms-transform:matrix(0.228789,0.003432,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.228789,0.003432,-0.003750,0.249972,0,0);}
.m5a_c00416{transform:matrix(0.228804,0.002288,-0.002500,0.249988,0,0);-ms-transform:matrix(0.228804,0.002288,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.228804,0.002288,-0.002500,0.249988,0,0);}
.m137_c00416{transform:matrix(0.228914,0.003434,-0.003750,0.249972,0,0);-ms-transform:matrix(0.228914,0.003434,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.228914,0.003434,-0.003750,0.249972,0,0);}
.mba_c00416{transform:matrix(0.228984,0.003435,-0.003750,0.249972,0,0);-ms-transform:matrix(0.228984,0.003435,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.228984,0.003435,-0.003750,0.249972,0,0);}
.m5e_c00416{transform:matrix(0.229179,0.003438,-0.003750,0.249972,0,0);-ms-transform:matrix(0.229179,0.003438,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.229179,0.003438,-0.003750,0.249972,0,0);}
.m3c_c00416{transform:matrix(0.229254,0.002293,-0.002500,0.249988,0,0);-ms-transform:matrix(0.229254,0.002293,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.229254,0.002293,-0.002500,0.249988,0,0);}
.mab_c00416{transform:matrix(0.229889,0.003448,-0.003750,0.249972,0,0);-ms-transform:matrix(0.229889,0.003448,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.229889,0.003448,-0.003750,0.249972,0,0);}
.mb3_c00416{transform:matrix(0.230164,0.003452,-0.003750,0.249972,0,0);-ms-transform:matrix(0.230164,0.003452,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.230164,0.003452,-0.003750,0.249972,0,0);}
.mdc_c00416{transform:matrix(0.230544,0.003458,-0.003750,0.249972,0,0);-ms-transform:matrix(0.230544,0.003458,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.230544,0.003458,-0.003750,0.249972,0,0);}
.mbb_c00416{transform:matrix(0.230694,0.003460,-0.003750,0.249972,0,0);-ms-transform:matrix(0.230694,0.003460,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.230694,0.003460,-0.003750,0.249972,0,0);}
.m12e_c00416{transform:matrix(0.230759,0.003461,-0.003750,0.249972,0,0);-ms-transform:matrix(0.230759,0.003461,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.230759,0.003461,-0.003750,0.249972,0,0);}
.m13d_c00416{transform:matrix(0.230779,0.003462,-0.003750,0.249972,0,0);-ms-transform:matrix(0.230779,0.003462,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.230779,0.003462,-0.003750,0.249972,0,0);}
.m12a_c00416{transform:matrix(0.231169,0.003468,-0.003750,0.249972,0,0);-ms-transform:matrix(0.231169,0.003468,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.231169,0.003468,-0.003750,0.249972,0,0);}
.m8e_c00416{transform:matrix(0.231294,0.003469,-0.003750,0.249972,0,0);-ms-transform:matrix(0.231294,0.003469,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.231294,0.003469,-0.003750,0.249972,0,0);}
.mb1_c00416{transform:matrix(0.232294,0.003484,-0.003750,0.249972,0,0);-ms-transform:matrix(0.232294,0.003484,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.232294,0.003484,-0.003750,0.249972,0,0);}
.m8a_c00416{transform:matrix(0.232429,0.003486,-0.003750,0.249972,0,0);-ms-transform:matrix(0.232429,0.003486,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.232429,0.003486,-0.003750,0.249972,0,0);}
.m135_c00416{transform:matrix(0.232674,0.003490,-0.003750,0.249972,0,0);-ms-transform:matrix(0.232674,0.003490,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.232674,0.003490,-0.003750,0.249972,0,0);}
.m116_c00416{transform:matrix(0.232699,0.003490,-0.003750,0.249972,0,0);-ms-transform:matrix(0.232699,0.003490,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.232699,0.003490,-0.003750,0.249972,0,0);}
.m12d_c00416{transform:matrix(0.233134,0.003497,-0.003750,0.249972,0,0);-ms-transform:matrix(0.233134,0.003497,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.233134,0.003497,-0.003750,0.249972,0,0);}
.m124_c00416{transform:matrix(0.233424,0.003501,-0.003750,0.249972,0,0);-ms-transform:matrix(0.233424,0.003501,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.233424,0.003501,-0.003750,0.249972,0,0);}
.m105_c00416{transform:matrix(0.233979,0.003510,-0.003750,0.249972,0,0);-ms-transform:matrix(0.233979,0.003510,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.233979,0.003510,-0.003750,0.249972,0,0);}
.m1f_c00416{transform:matrix(0.234798,0.002348,-0.002500,0.249988,0,0);-ms-transform:matrix(0.234798,0.002348,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.234798,0.002348,-0.002500,0.249988,0,0);}
.m61_c00416{transform:matrix(0.235104,0.003527,-0.003750,0.249972,0,0);-ms-transform:matrix(0.235104,0.003527,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.235104,0.003527,-0.003750,0.249972,0,0);}
.m103_c00416{transform:matrix(0.235234,0.003529,-0.003750,0.249972,0,0);-ms-transform:matrix(0.235234,0.003529,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.235234,0.003529,-0.003750,0.249972,0,0);}
.m73_c00416{transform:matrix(0.235409,0.003531,-0.003750,0.249972,0,0);-ms-transform:matrix(0.235409,0.003531,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.235409,0.003531,-0.003750,0.249972,0,0);}
.mae_c00416{transform:matrix(0.235459,0.003532,-0.003750,0.249972,0,0);-ms-transform:matrix(0.235459,0.003532,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.235459,0.003532,-0.003750,0.249972,0,0);}
.m4f_c00416{transform:matrix(0.235468,0.002355,-0.002500,0.249988,0,0);-ms-transform:matrix(0.235468,0.002355,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.235468,0.002355,-0.002500,0.249988,0,0);}
.m9f_c00416{transform:matrix(0.235554,0.003533,-0.003750,0.249972,0,0);-ms-transform:matrix(0.235554,0.003533,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.235554,0.003533,-0.003750,0.249972,0,0);}
.m8b_c00416{transform:matrix(0.235728,0.003536,-0.003750,0.249972,0,0);-ms-transform:matrix(0.235728,0.003536,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.235728,0.003536,-0.003750,0.249972,0,0);}
.mbe_c00416{transform:matrix(0.235858,0.003538,-0.003750,0.249972,0,0);-ms-transform:matrix(0.235858,0.003538,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.235858,0.003538,-0.003750,0.249972,0,0);}
.m130_c00416{transform:matrix(0.235893,0.003538,-0.003750,0.249972,0,0);-ms-transform:matrix(0.235893,0.003538,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.235893,0.003538,-0.003750,0.249972,0,0);}
.m126_c00416{transform:matrix(0.236083,0.003541,-0.003750,0.249972,0,0);-ms-transform:matrix(0.236083,0.003541,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.236083,0.003541,-0.003750,0.249972,0,0);}
.m127_c00416{transform:matrix(0.236388,0.003546,-0.003750,0.249972,0,0);-ms-transform:matrix(0.236388,0.003546,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.236388,0.003546,-0.003750,0.249972,0,0);}
.ma9_c00416{transform:matrix(0.236893,0.003553,-0.003750,0.249972,0,0);-ms-transform:matrix(0.236893,0.003553,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.236893,0.003553,-0.003750,0.249972,0,0);}
.md1_c00416{transform:matrix(0.237323,0.003560,-0.003750,0.249972,0,0);-ms-transform:matrix(0.237323,0.003560,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.237323,0.003560,-0.003750,0.249972,0,0);}
.md8_c00416{transform:matrix(0.237413,0.003561,-0.003750,0.249972,0,0);-ms-transform:matrix(0.237413,0.003561,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.237413,0.003561,-0.003750,0.249972,0,0);}
.m6f_c00416{transform:matrix(0.237743,0.003566,-0.003750,0.249972,0,0);-ms-transform:matrix(0.237743,0.003566,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.237743,0.003566,-0.003750,0.249972,0,0);}
.mb9_c00416{transform:matrix(0.237778,0.003567,-0.003750,0.249972,0,0);-ms-transform:matrix(0.237778,0.003567,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.237778,0.003567,-0.003750,0.249972,0,0);}
.m86_c00416{transform:matrix(0.237808,0.003567,-0.003750,0.249972,0,0);-ms-transform:matrix(0.237808,0.003567,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.237808,0.003567,-0.003750,0.249972,0,0);}
.m139_c00416{transform:matrix(0.237978,0.003570,-0.003750,0.249972,0,0);-ms-transform:matrix(0.237978,0.003570,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.237978,0.003570,-0.003750,0.249972,0,0);}
.mf4_c00416{transform:matrix(0.238403,0.003576,-0.003750,0.249972,0,0);-ms-transform:matrix(0.238403,0.003576,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.238403,0.003576,-0.003750,0.249972,0,0);}
.m5d_c00416{transform:matrix(0.238448,0.003577,-0.003750,0.249972,0,0);-ms-transform:matrix(0.238448,0.003577,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.238448,0.003577,-0.003750,0.249972,0,0);}
.mf2_c00416{transform:matrix(0.238613,0.003579,-0.003750,0.249972,0,0);-ms-transform:matrix(0.238613,0.003579,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.238613,0.003579,-0.003750,0.249972,0,0);}
.m102_c00416{transform:matrix(0.238788,0.003582,-0.003750,0.249972,0,0);-ms-transform:matrix(0.238788,0.003582,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.238788,0.003582,-0.003750,0.249972,0,0);}
.mff_c00416{transform:matrix(0.238963,0.003584,-0.003750,0.249972,0,0);-ms-transform:matrix(0.238963,0.003584,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.238963,0.003584,-0.003750,0.249972,0,0);}
.mcf_c00416{transform:matrix(0.239063,0.003586,-0.003750,0.249972,0,0);-ms-transform:matrix(0.239063,0.003586,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.239063,0.003586,-0.003750,0.249972,0,0);}
.m27_c00416{transform:matrix(0.239458,0.002395,-0.002500,0.249988,0,0);-ms-transform:matrix(0.239458,0.002395,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.239458,0.002395,-0.002500,0.249988,0,0);}
.m77_c00416{transform:matrix(0.239823,0.003597,-0.003750,0.249972,0,0);-ms-transform:matrix(0.239823,0.003597,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.239823,0.003597,-0.003750,0.249972,0,0);}
.m111_c00416{transform:matrix(0.239883,0.003598,-0.003750,0.249972,0,0);-ms-transform:matrix(0.239883,0.003598,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.239883,0.003598,-0.003750,0.249972,0,0);}
.m78_c00416{transform:matrix(0.239953,0.003599,-0.003750,0.249972,0,0);-ms-transform:matrix(0.239953,0.003599,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.239953,0.003599,-0.003750,0.249972,0,0);}
.m9c_c00416{transform:matrix(0.240128,0.003602,-0.003750,0.249972,0,0);-ms-transform:matrix(0.240128,0.003602,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.240128,0.003602,-0.003750,0.249972,0,0);}
.m10d_c00416{transform:matrix(0.240608,0.003609,-0.003750,0.249972,0,0);-ms-transform:matrix(0.240608,0.003609,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.240608,0.003609,-0.003750,0.249972,0,0);}
.m51_c00416{transform:matrix(0.240623,0.002406,-0.002500,0.249988,0,0);-ms-transform:matrix(0.240623,0.002406,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.240623,0.002406,-0.002500,0.249988,0,0);}
.mfb_c00416{transform:matrix(0.240643,0.003610,-0.003750,0.249972,0,0);-ms-transform:matrix(0.240643,0.003610,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.240643,0.003610,-0.003750,0.249972,0,0);}
.m7b_c00416{transform:matrix(0.241123,0.003617,-0.003750,0.249972,0,0);-ms-transform:matrix(0.241123,0.003617,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.241123,0.003617,-0.003750,0.249972,0,0);}
.mde_c00416{transform:matrix(0.241278,0.003619,-0.003750,0.249972,0,0);-ms-transform:matrix(0.241278,0.003619,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.241278,0.003619,-0.003750,0.249972,0,0);}
.mad_c00416{transform:matrix(0.241358,0.003620,-0.003750,0.249972,0,0);-ms-transform:matrix(0.241358,0.003620,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.241358,0.003620,-0.003750,0.249972,0,0);}
.m106_c00416{transform:matrix(0.241363,0.003620,-0.003750,0.249972,0,0);-ms-transform:matrix(0.241363,0.003620,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.241363,0.003620,-0.003750,0.249972,0,0);}
.m4d_c00416{transform:matrix(0.241688,0.002417,-0.002500,0.249988,0,0);-ms-transform:matrix(0.241688,0.002417,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.241688,0.002417,-0.002500,0.249988,0,0);}
.m3a_c00416{transform:matrix(0.242503,0.002425,-0.002500,0.249988,0,0);-ms-transform:matrix(0.242503,0.002425,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.242503,0.002425,-0.002500,0.249988,0,0);}
.m8d_c00416{transform:matrix(0.242518,0.003638,-0.003750,0.249972,0,0);-ms-transform:matrix(0.242518,0.003638,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.242518,0.003638,-0.003750,0.249972,0,0);}
.mf6_c00416{transform:matrix(0.242978,0.003645,-0.003750,0.249972,0,0);-ms-transform:matrix(0.242978,0.003645,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.242978,0.003645,-0.003750,0.249972,0,0);}
.m12b_c00416{transform:matrix(0.243063,0.003646,-0.003750,0.249972,0,0);-ms-transform:matrix(0.243063,0.003646,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.243063,0.003646,-0.003750,0.249972,0,0);}
.m70_c00416{transform:matrix(0.243443,0.003652,-0.003750,0.249972,0,0);-ms-transform:matrix(0.243443,0.003652,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.243443,0.003652,-0.003750,0.249972,0,0);}
.m40_c00416{transform:matrix(0.243948,0.002439,-0.002500,0.249988,0,0);-ms-transform:matrix(0.243948,0.002439,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.243948,0.002439,-0.002500,0.249988,0,0);}
.m98_c00416{transform:matrix(0.244068,0.003661,-0.003750,0.249972,0,0);-ms-transform:matrix(0.244068,0.003661,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.244068,0.003661,-0.003750,0.249972,0,0);}
.m41_c00416{transform:matrix(0.244373,0.002444,-0.002500,0.249988,0,0);-ms-transform:matrix(0.244373,0.002444,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.244373,0.002444,-0.002500,0.249988,0,0);}
.m79_c00416{transform:matrix(0.244547,0.003668,-0.003750,0.249972,0,0);-ms-transform:matrix(0.244547,0.003668,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.244547,0.003668,-0.003750,0.249972,0,0);}
.m117_c00416{transform:matrix(0.244572,0.003669,-0.003750,0.249972,0,0);-ms-transform:matrix(0.244572,0.003669,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.244572,0.003669,-0.003750,0.249972,0,0);}
.m94_c00416{transform:matrix(0.244842,0.003673,-0.003750,0.249972,0,0);-ms-transform:matrix(0.244842,0.003673,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.244842,0.003673,-0.003750,0.249972,0,0);}
.m42_c00416{transform:matrix(0.245258,0.002453,-0.002500,0.249988,0,0);-ms-transform:matrix(0.245258,0.002453,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.245258,0.002453,-0.002500,0.249988,0,0);}
.m11f_c00416{transform:matrix(0.245397,0.003681,-0.003750,0.249972,0,0);-ms-transform:matrix(0.245397,0.003681,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.245397,0.003681,-0.003750,0.249972,0,0);}
.m46_c00416{transform:matrix(0.245753,0.002458,-0.002500,0.249988,0,0);-ms-transform:matrix(0.245753,0.002458,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.245753,0.002458,-0.002500,0.249988,0,0);}
.m12f_c00416{transform:matrix(0.245972,0.003690,-0.003750,0.249972,0,0);-ms-transform:matrix(0.245972,0.003690,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.245972,0.003690,-0.003750,0.249972,0,0);}
.med_c00416{transform:matrix(0.245987,0.003690,-0.003750,0.249972,0,0);-ms-transform:matrix(0.245987,0.003690,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.245987,0.003690,-0.003750,0.249972,0,0);}
.m129_c00416{transform:matrix(0.246037,0.003691,-0.003750,0.249972,0,0);-ms-transform:matrix(0.246037,0.003691,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.246037,0.003691,-0.003750,0.249972,0,0);}
.m9d_c00416{transform:matrix(0.246702,0.003701,-0.003750,0.249972,0,0);-ms-transform:matrix(0.246702,0.003701,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.246702,0.003701,-0.003750,0.249972,0,0);}
.m132_c00416{transform:matrix(0.246842,0.003703,-0.003750,0.249972,0,0);-ms-transform:matrix(0.246842,0.003703,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.246842,0.003703,-0.003750,0.249972,0,0);}
.m11a_c00416{transform:matrix(0.246992,0.003705,-0.003750,0.249972,0,0);-ms-transform:matrix(0.246992,0.003705,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.246992,0.003705,-0.003750,0.249972,0,0);}
.m11c_c00416{transform:matrix(0.247132,0.003707,-0.003750,0.249972,0,0);-ms-transform:matrix(0.247132,0.003707,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.247132,0.003707,-0.003750,0.249972,0,0);}
.m4c_c00416{transform:matrix(0.247288,0.002473,-0.002500,0.249988,0,0);-ms-transform:matrix(0.247288,0.002473,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.247288,0.002473,-0.002500,0.249988,0,0);}
.mef_c00416{transform:matrix(0.248222,0.003723,-0.003750,0.249972,0,0);-ms-transform:matrix(0.248222,0.003723,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.248222,0.003723,-0.003750,0.249972,0,0);}
.m115_c00416{transform:matrix(0.249992,0.003750,-0.003750,0.249972,0,0);-ms-transform:matrix(0.249992,0.003750,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.249992,0.003750,-0.003750,0.249972,0,0);}
.m5f_c00416{transform:matrix(0.250142,0.003752,-0.003750,0.249972,0,0);-ms-transform:matrix(0.250142,0.003752,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.250142,0.003752,-0.003750,0.249972,0,0);}
.mf3_c00416{transform:matrix(0.250282,0.003754,-0.003750,0.249972,0,0);-ms-transform:matrix(0.250282,0.003754,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.250282,0.003754,-0.003750,0.249972,0,0);}
.md6_c00416{transform:matrix(0.250482,0.003757,-0.003750,0.249972,0,0);-ms-transform:matrix(0.250482,0.003757,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.250482,0.003757,-0.003750,0.249972,0,0);}
.mfc_c00416{transform:matrix(0.250487,0.003757,-0.003750,0.249972,0,0);-ms-transform:matrix(0.250487,0.003757,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.250487,0.003757,-0.003750,0.249972,0,0);}
.m50_c00416{transform:matrix(0.250647,0.002506,-0.002500,0.249988,0,0);-ms-transform:matrix(0.250647,0.002506,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.250647,0.002506,-0.002500,0.249988,0,0);}
.m65_c00416{transform:matrix(0.250837,0.003763,-0.003750,0.249972,0,0);-ms-transform:matrix(0.250837,0.003763,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.250837,0.003763,-0.003750,0.249972,0,0);}
.m99_c00416{transform:matrix(0.251417,0.003771,-0.003750,0.249972,0,0);-ms-transform:matrix(0.251417,0.003771,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.251417,0.003771,-0.003750,0.249972,0,0);}
.m120_c00416{transform:matrix(0.252452,0.003787,-0.003750,0.249972,0,0);-ms-transform:matrix(0.252452,0.003787,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.252452,0.003787,-0.003750,0.249972,0,0);}
.m3d_c00416{transform:matrix(0.252832,0.002528,-0.002500,0.249988,0,0);-ms-transform:matrix(0.252832,0.002528,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.252832,0.002528,-0.002500,0.249988,0,0);}
.meb_c00416{transform:matrix(0.255066,0.003826,-0.003750,0.249972,0,0);-ms-transform:matrix(0.255066,0.003826,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.255066,0.003826,-0.003750,0.249972,0,0);}
.m89_c00416{transform:matrix(0.255616,0.003834,-0.003750,0.249972,0,0);-ms-transform:matrix(0.255616,0.003834,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.255616,0.003834,-0.003750,0.249972,0,0);}
.ma7_c00416{transform:matrix(0.256006,0.003840,-0.003750,0.249972,0,0);-ms-transform:matrix(0.256006,0.003840,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.256006,0.003840,-0.003750,0.249972,0,0);}
.m12c_c00416{transform:matrix(0.256851,0.003853,-0.003750,0.249972,0,0);-ms-transform:matrix(0.256851,0.003853,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.256851,0.003853,-0.003750,0.249972,0,0);}
.m138_c00416{transform:matrix(0.256871,0.003853,-0.003750,0.249972,0,0);-ms-transform:matrix(0.256871,0.003853,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.256871,0.003853,-0.003750,0.249972,0,0);}
.mf8_c00416{transform:matrix(0.256966,0.003854,-0.003750,0.249972,0,0);-ms-transform:matrix(0.256966,0.003854,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.256966,0.003854,-0.003750,0.249972,0,0);}
.m60_c00416{transform:matrix(0.257371,0.003861,-0.003750,0.249972,0,0);-ms-transform:matrix(0.257371,0.003861,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.257371,0.003861,-0.003750,0.249972,0,0);}
.m109_c00416{transform:matrix(0.257521,0.003863,-0.003750,0.249972,0,0);-ms-transform:matrix(0.257521,0.003863,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.257521,0.003863,-0.003750,0.249972,0,0);}
.m67_c00416{transform:matrix(0.257546,0.003863,-0.003750,0.249972,0,0);-ms-transform:matrix(0.257546,0.003863,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.257546,0.003863,-0.003750,0.249972,0,0);}
.m72_c00416{transform:matrix(0.257956,0.003869,-0.003750,0.249972,0,0);-ms-transform:matrix(0.257956,0.003869,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.257956,0.003869,-0.003750,0.249972,0,0);}
.m52_c00416{transform:matrix(0.258297,0.002583,-0.002500,0.249988,0,0);-ms-transform:matrix(0.258297,0.002583,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.258297,0.002583,-0.002500,0.249988,0,0);}
.m74_c00416{transform:matrix(0.258536,0.003878,-0.003750,0.249972,0,0);-ms-transform:matrix(0.258536,0.003878,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.258536,0.003878,-0.003750,0.249972,0,0);}
.m3f_c00416{transform:matrix(0.258602,0.002586,-0.002500,0.249988,0,0);-ms-transform:matrix(0.258602,0.002586,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.258602,0.002586,-0.002500,0.249988,0,0);}
.m48_c00416{transform:matrix(0.259222,0.002592,-0.002500,0.249988,0,0);-ms-transform:matrix(0.259222,0.002592,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.259222,0.002592,-0.002500,0.249988,0,0);}
.m10e_c00416{transform:matrix(0.259586,0.003894,-0.003750,0.249972,0,0);-ms-transform:matrix(0.259586,0.003894,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.259586,0.003894,-0.003750,0.249972,0,0);}
.m10c_c00416{transform:matrix(0.259636,0.003895,-0.003750,0.249972,0,0);-ms-transform:matrix(0.259636,0.003895,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.259636,0.003895,-0.003750,0.249972,0,0);}
.m87_c00416{transform:matrix(0.259711,0.003896,-0.003750,0.249972,0,0);-ms-transform:matrix(0.259711,0.003896,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.259711,0.003896,-0.003750,0.249972,0,0);}
.m6c_c00416{transform:matrix(0.259926,0.003899,-0.003750,0.249972,0,0);-ms-transform:matrix(0.259926,0.003899,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.259926,0.003899,-0.003750,0.249972,0,0);}
.m11b_c00416{transform:matrix(0.259996,0.003900,-0.003750,0.249972,0,0);-ms-transform:matrix(0.259996,0.003900,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.259996,0.003900,-0.003750,0.249972,0,0);}
.m38_c00416{transform:matrix(0.260067,0.002601,-0.002500,0.249988,0,0);-ms-transform:matrix(0.260067,0.002601,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.260067,0.002601,-0.002500,0.249988,0,0);}
.m66_c00416{transform:matrix(0.260621,0.003909,-0.003750,0.249972,0,0);-ms-transform:matrix(0.260621,0.003909,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.260621,0.003909,-0.003750,0.249972,0,0);}
.m62_c00416{transform:matrix(0.260851,0.003913,-0.003750,0.249972,0,0);-ms-transform:matrix(0.260851,0.003913,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.260851,0.003913,-0.003750,0.249972,0,0);}
.m92_c00416{transform:matrix(0.261136,0.003917,-0.003750,0.249972,0,0);-ms-transform:matrix(0.261136,0.003917,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.261136,0.003917,-0.003750,0.249972,0,0);}
.m4a_c00416{transform:matrix(0.262307,0.002623,-0.002500,0.249988,0,0);-ms-transform:matrix(0.262307,0.002623,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.262307,0.002623,-0.002500,0.249988,0,0);}
.mfd_c00416{transform:matrix(0.262455,0.003937,-0.003750,0.249972,0,0);-ms-transform:matrix(0.262455,0.003937,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.262455,0.003937,-0.003750,0.249972,0,0);}
.m97_c00416{transform:matrix(0.263140,0.003947,-0.003750,0.249972,0,0);-ms-transform:matrix(0.263140,0.003947,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.263140,0.003947,-0.003750,0.249972,0,0);}
.m53_c00416{transform:matrix(0.264057,0.002641,-0.002500,0.249988,0,0);-ms-transform:matrix(0.264057,0.002641,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.264057,0.002641,-0.002500,0.249988,0,0);}
.m3b_c00416{transform:matrix(0.264372,0.002644,-0.002500,0.249988,0,0);-ms-transform:matrix(0.264372,0.002644,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.264372,0.002644,-0.002500,0.249988,0,0);}
.m95_c00416{transform:matrix(0.264585,0.003969,-0.003750,0.249972,0,0);-ms-transform:matrix(0.264585,0.003969,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.264585,0.003969,-0.003750,0.249972,0,0);}
.m9b_c00416{transform:matrix(0.264945,0.003974,-0.003750,0.249972,0,0);-ms-transform:matrix(0.264945,0.003974,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.264945,0.003974,-0.003750,0.249972,0,0);}
.m54_c00416{transform:matrix(0.265362,0.002654,-0.002500,0.249988,0,0);-ms-transform:matrix(0.265362,0.002654,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.265362,0.002654,-0.002500,0.249988,0,0);}
.m91_c00416{transform:matrix(0.266205,0.003993,-0.003750,0.249972,0,0);-ms-transform:matrix(0.266205,0.003993,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.266205,0.003993,-0.003750,0.249972,0,0);}
.m6a_c00416{transform:matrix(0.266710,0.004001,-0.003750,0.249972,0,0);-ms-transform:matrix(0.266710,0.004001,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.266710,0.004001,-0.003750,0.249972,0,0);}
.m10a_c00416{transform:matrix(0.269330,0.004040,-0.003750,0.249972,0,0);-ms-transform:matrix(0.269330,0.004040,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.269330,0.004040,-0.003750,0.249972,0,0);}
.m6b_c00416{transform:matrix(0.270315,0.004055,-0.003750,0.249972,0,0);-ms-transform:matrix(0.270315,0.004055,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.270315,0.004055,-0.003750,0.249972,0,0);}
.m10f_c00416{transform:matrix(0.271654,0.004075,-0.003750,0.249972,0,0);-ms-transform:matrix(0.271654,0.004075,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.271654,0.004075,-0.003750,0.249972,0,0);}
.m113_c00416{transform:matrix(0.271869,0.004078,-0.003750,0.249972,0,0);-ms-transform:matrix(0.271869,0.004078,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.271869,0.004078,-0.003750,0.249972,0,0);}
.m112_c00416{transform:matrix(0.271914,0.004079,-0.003750,0.249972,0,0);-ms-transform:matrix(0.271914,0.004079,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.271914,0.004079,-0.003750,0.249972,0,0);}
.m96_c00416{transform:matrix(0.272229,0.004083,-0.003750,0.249972,0,0);-ms-transform:matrix(0.272229,0.004083,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.272229,0.004083,-0.003750,0.249972,0,0);}
.m55_c00416{transform:matrix(0.272391,0.002724,-0.002500,0.249988,0,0);-ms-transform:matrix(0.272391,0.002724,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.272391,0.002724,-0.002500,0.249988,0,0);}
.m8c_c00416{transform:matrix(0.272619,0.004089,-0.003750,0.249972,0,0);-ms-transform:matrix(0.272619,0.004089,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.272619,0.004089,-0.003750,0.249972,0,0);}
.m59_c00416{transform:matrix(0.273071,0.002731,-0.002500,0.249988,0,0);-ms-transform:matrix(0.273071,0.002731,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.273071,0.002731,-0.002500,0.249988,0,0);}
.m93_c00416{transform:matrix(0.275349,0.004130,-0.003750,0.249972,0,0);-ms-transform:matrix(0.275349,0.004130,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.275349,0.004130,-0.003750,0.249972,0,0);}
.m56_c00416{transform:matrix(0.277046,0.002770,-0.002500,0.249988,0,0);-ms-transform:matrix(0.277046,0.002770,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.277046,0.002770,-0.002500,0.249988,0,0);}
.m68_c00416{transform:matrix(0.277094,0.004156,-0.003750,0.249972,0,0);-ms-transform:matrix(0.277094,0.004156,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.277094,0.004156,-0.003750,0.249972,0,0);}
.m43_c00416{transform:matrix(0.277566,0.002776,-0.002500,0.249988,0,0);-ms-transform:matrix(0.277566,0.002776,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.277566,0.002776,-0.002500,0.249988,0,0);}
.m110_c00416{transform:matrix(0.278069,0.004171,-0.003750,0.249972,0,0);-ms-transform:matrix(0.278069,0.004171,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.278069,0.004171,-0.003750,0.249972,0,0);}
.m8f_c00416{transform:matrix(0.278819,0.004182,-0.003750,0.249972,0,0);-ms-transform:matrix(0.278819,0.004182,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.278819,0.004182,-0.003750,0.249972,0,0);}
.m44_c00416{transform:matrix(0.279521,0.002795,-0.002500,0.249988,0,0);-ms-transform:matrix(0.279521,0.002795,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.279521,0.002795,-0.002500,0.249988,0,0);}
.m6d_c00416{transform:matrix(0.279889,0.004198,-0.003750,0.249972,0,0);-ms-transform:matrix(0.279889,0.004198,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.279889,0.004198,-0.003750,0.249972,0,0);}
.mfa_c00416{transform:matrix(0.284443,0.004267,-0.003750,0.249972,0,0);-ms-transform:matrix(0.284443,0.004267,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.284443,0.004267,-0.003750,0.249972,0,0);}
.m58_c00416{transform:matrix(0.309470,0.003095,-0.002500,0.249988,0,0);-ms-transform:matrix(0.309470,0.003095,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.309470,0.003095,-0.002500,0.249988,0,0);}
.m2_c00416{transform:matrix(0.341110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341110,0.000000,0.000000,0.250000,0,0);}
.m1_c00416{transform:matrix(0.510425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510425,0.000000,0.000000,0.250000,0,0);}
.m140_c00416{transform:matrix(1.288460,0.019327,-0.003750,0.249972,0,0);-ms-transform:matrix(1.288460,0.019327,-0.003750,0.249972,0,0);-webkit-transform:matrix(1.288460,0.019327,-0.003750,0.249972,0,0);}
.v0_c00416{vertical-align:0.000000px;}
.ls0_c00416{letter-spacing:0.000000px;}
.sc__c00416{text-shadow:none;}
.sc0_c00416{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__c00416{-webkit-text-stroke:0px transparent;}
.sc0_c00416{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00416{word-spacing:0.000000px;}
.fc0_c00416{color:transparent;}
.fsb_c00416{font-size:30.003375px;}
.fs0_c00416{font-size:60.000000px;}
.fs3_c00416{font-size:72.003600px;}
.fs7_c00416{font-size:72.008100px;}
.fs4_c00416{font-size:78.003900px;}
.fs6_c00416{font-size:78.008775px;}
.fs2_c00416{font-size:84.004200px;}
.fs9_c00416{font-size:84.009449px;}
.fs1_c00416{font-size:90.001620px;}
.fs5_c00416{font-size:90.004500px;}
.fs8_c00416{font-size:90.010124px;}
.fsa_c00416{font-size:96.010799px;}
.fsc_c00416{font-size:102.011474px;}
.y0_c00416{bottom:0.000000px;}
.y147_c00416{bottom:103.311210px;}
.y150_c00416{bottom:103.311607px;}
.y148_c00416{bottom:103.311705px;}
.y14d_c00416{bottom:103.311810px;}
.y14e_c00416{bottom:103.311855px;}
.y14c_c00416{bottom:103.311915px;}
.y14b_c00416{bottom:103.312020px;}
.y14a_c00416{bottom:103.312125px;}
.y149_c00416{bottom:103.312140px;}
.y14f_c00416{bottom:103.312267px;}
.y146_c00416{bottom:144.298935px;}
.y145_c00416{bottom:147.915165px;}
.y144_c00416{bottom:148.776870px;}
.y143_c00416{bottom:149.769615px;}
.y142_c00416{bottom:151.114485px;}
.y141_c00416{bottom:151.612950px;}
.y140_c00416{bottom:152.601825px;}
.y13f_c00416{bottom:154.105117px;}
.y13e_c00416{bottom:154.438342px;}
.y13d_c00416{bottom:155.429265px;}
.y13c_c00416{bottom:156.259897px;}
.y13b_c00416{bottom:158.062620px;}
.y13a_c00416{bottom:159.033000px;}
.y139_c00416{bottom:184.296172px;}
.y138_c00416{bottom:186.047857px;}
.y137_c00416{bottom:186.824422px;}
.y136_c00416{bottom:187.867237px;}
.y135_c00416{bottom:189.912352px;}
.y134_c00416{bottom:191.173087px;}
.y133_c00416{bottom:191.706825px;}
.y132_c00416{bottom:194.212320px;}
.y131_c00416{bottom:195.980940px;}
.y130_c00416{bottom:197.236237px;}
.y12f_c00416{bottom:199.462927px;}
.y12e_c00416{bottom:226.010513px;}
.y12d_c00416{bottom:228.242393px;}
.y12c_c00416{bottom:229.596795px;}
.y12b_c00416{bottom:230.153250px;}
.y12a_c00416{bottom:231.837938px;}
.y129_c00416{bottom:232.972530px;}
.y128_c00416{bottom:233.546617px;}
.y127_c00416{bottom:234.669968px;}
.y126_c00416{bottom:235.035308px;}
.y125_c00416{bottom:236.357460px;}
.y124_c00416{bottom:236.872230px;}
.y123_c00416{bottom:237.262305px;}
.y122_c00416{bottom:262.993793px;}
.y121_c00416{bottom:265.634963px;}
.y120_c00416{bottom:267.633863px;}
.y11f_c00416{bottom:268.318695px;}
.y11e_c00416{bottom:268.978898px;}
.y11d_c00416{bottom:270.507548px;}
.y11c_c00416{bottom:271.419863px;}
.y11b_c00416{bottom:274.012425px;}
.y11a_c00416{bottom:274.901168px;}
.y119_c00416{bottom:275.339460px;}
.y118_c00416{bottom:294.845888px;}
.y117_c00416{bottom:295.284638px;}
.y116_c00416{bottom:296.449958px;}
.y115_c00416{bottom:297.878348px;}
.y114_c00416{bottom:298.734885px;}
.y113_c00416{bottom:299.180505px;}
.y112_c00416{bottom:300.314588px;}
.y111_c00416{bottom:300.746535px;}
.y110_c00416{bottom:302.028780px;}
.y10f_c00416{bottom:302.881508px;}
.y10e_c00416{bottom:333.190838px;}
.y10d_c00416{bottom:333.667155px;}
.y10c_c00416{bottom:333.984135px;}
.y10b_c00416{bottom:335.695778px;}
.y10a_c00416{bottom:336.779790px;}
.y109_c00416{bottom:337.240845px;}
.y108_c00416{bottom:338.485290px;}
.y107_c00416{bottom:340.315418px;}
.y106_c00416{bottom:341.090033px;}
.y105_c00416{bottom:341.705603px;}
.y104_c00416{bottom:342.305873px;}
.y103_c00416{bottom:364.480875px;}
.y102_c00416{bottom:365.352998px;}
.y101_c00416{bottom:367.509600px;}
.y100_c00416{bottom:369.268530px;}
.yff_c00416{bottom:369.648435px;}
.yfe_c00416{bottom:370.867350px;}
.yfd_c00416{bottom:371.212440px;}
.yfc_c00416{bottom:372.971055px;}
.yfb_c00416{bottom:373.497953px;}
.yfa_c00416{bottom:374.711783px;}
.yf9_c00416{bottom:401.014343px;}
.yf8_c00416{bottom:402.562793px;}
.yf7_c00416{bottom:403.907513px;}
.yf6_c00416{bottom:404.988885px;}
.yf5_c00416{bottom:405.873202px;}
.yf4_c00416{bottom:406.549987px;}
.yf3_c00416{bottom:407.894797px;}
.yf2_c00416{bottom:408.778957px;}
.yf1_c00416{bottom:410.098080px;}
.yf0_c00416{bottom:410.757653px;}
.yef_c00416{bottom:413.148015px;}
.yee_c00416{bottom:414.037793px;}
.yed_c00416{bottom:414.674018px;}
.yec_c00416{bottom:438.341918px;}
.yeb_c00416{bottom:439.932428px;}
.yea_c00416{bottom:440.240648px;}
.ye9_c00416{bottom:441.817515px;}
.ye8_c00416{bottom:443.528040px;}
.ye7_c00416{bottom:444.236415px;}
.ye6_c00416{bottom:444.815693px;}
.ye5_c00416{bottom:445.960335px;}
.ye4_c00416{bottom:446.536552px;}
.ye3_c00416{bottom:474.243330px;}
.ye2_c00416{bottom:476.116883px;}
.ye1_c00416{bottom:476.704148px;}
.ye0_c00416{bottom:478.224098px;}
.ydf_c00416{bottom:478.958873px;}
.yde_c00416{bottom:479.522460px;}
.ydd_c00416{bottom:480.293108px;}
.ydc_c00416{bottom:481.964910px;}
.ydb_c00416{bottom:482.510730px;}
.yda_c00416{bottom:482.916930px;}
.yd9_c00416{bottom:484.559093px;}
.yd8_c00416{bottom:485.692042px;}
.yd7_c00416{bottom:510.038137px;}
.yd6_c00416{bottom:510.915660px;}
.yd5_c00416{bottom:511.635270px;}
.yd4_c00416{bottom:512.793427px;}
.yd3_c00416{bottom:513.090840px;}
.yd2_c00416{bottom:514.236517px;}
.yd1_c00416{bottom:515.090550px;}
.yd0_c00416{bottom:515.391900px;}
.ycf_c00416{bottom:516.389325px;}
.yce_c00416{bottom:516.936968px;}
.ycd_c00416{bottom:517.380195px;}
.ycc_c00416{bottom:517.677067px;}
.ycb_c00416{bottom:518.364502px;}
.yca_c00416{bottom:545.815890px;}
.yc9_c00416{bottom:546.533167px;}
.yc8_c00416{bottom:547.263045px;}
.yc7_c00416{bottom:548.831032px;}
.yc6_c00416{bottom:549.721058px;}
.yc5_c00416{bottom:551.514937px;}
.yc4_c00416{bottom:552.746115px;}
.yc3_c00416{bottom:553.969530px;}
.yc2_c00416{bottom:555.208372px;}
.yc1_c00416{bottom:555.899265px;}
.yc0_c00416{bottom:582.576360px;}
.ybf_c00416{bottom:583.304857px;}
.ybe_c00416{bottom:583.794202px;}
.ybd_c00416{bottom:584.530305px;}
.ybc_c00416{bottom:585.252832px;}
.ybb_c00416{bottom:585.621622px;}
.yba_c00416{bottom:586.946737px;}
.yb9_c00416{bottom:587.443178px;}
.yb8_c00416{bottom:587.692770px;}
.yb7_c00416{bottom:588.644040px;}
.yb6_c00416{bottom:589.112445px;}
.yb5_c00416{bottom:617.629875px;}
.yb4_c00416{bottom:618.490462px;}
.yb3_c00416{bottom:619.071975px;}
.yb2_c00416{bottom:620.076675px;}
.yb1_c00416{bottom:620.937105px;}
.yb0_c00416{bottom:621.376080px;}
.yaf_c00416{bottom:622.247632px;}
.yae_c00416{bottom:623.830665px;}
.yad_c00416{bottom:624.244650px;}
.yac_c00416{bottom:625.795935px;}
.yab_c00416{bottom:626.377065px;}
.yaa_c00416{bottom:653.188800px;}
.ya9_c00416{bottom:653.687925px;}
.ya8_c00416{bottom:654.307327px;}
.ya7_c00416{bottom:654.908587px;}
.ya6_c00416{bottom:655.273507px;}
.ya5_c00416{bottom:655.874175px;}
.ya4_c00416{bottom:656.245650px;}
.ya3_c00416{bottom:656.985802px;}
.ya2_c00416{bottom:657.461572px;}
.ya1_c00416{bottom:657.713760px;}
.ya0_c00416{bottom:658.913842px;}
.y9f_c00416{bottom:659.860342px;}
.y9e_c00416{bottom:689.307952px;}
.y9d_c00416{bottom:690.002760px;}
.y9c_c00416{bottom:691.101180px;}
.y9b_c00416{bottom:691.610782px;}
.y9a_c00416{bottom:692.492505px;}
.y99_c00416{bottom:693.037687px;}
.y98_c00416{bottom:693.407857px;}
.y97_c00416{bottom:695.166607px;}
.y96_c00416{bottom:696.393870px;}
.y95_c00416{bottom:696.759855px;}
.y94_c00416{bottom:698.324040px;}
.y93_c00416{bottom:699.554385px;}
.y92_c00416{bottom:724.934010px;}
.y91_c00416{bottom:725.221897px;}
.y90_c00416{bottom:726.556560px;}
.y8f_c00416{bottom:727.077907px;}
.y8e_c00416{bottom:727.606102px;}
.y8d_c00416{bottom:728.802907px;}
.y8c_c00416{bottom:729.204855px;}
.y8b_c00416{bottom:729.732510px;}
.y8a_c00416{bottom:730.656345px;}
.y89_c00416{bottom:731.051400px;}
.y88_c00416{bottom:731.971717px;}
.y87_c00416{bottom:732.496935px;}
.y86_c00416{bottom:760.853947px;}
.y85_c00416{bottom:762.963420px;}
.y84_c00416{bottom:763.609590px;}
.y83_c00416{bottom:764.877142px;}
.y82_c00416{bottom:765.927037px;}
.y81_c00416{bottom:768.221580px;}
.y80_c00416{bottom:769.883887px;}
.y7f_c00416{bottom:770.540197px;}
.y7e_c00416{bottom:771.150832px;}
.y7d_c00416{bottom:772.412137px;}
.y7c_c00416{bottom:773.273745px;}
.y7b_c00416{bottom:797.142127px;}
.y7a_c00416{bottom:797.482860px;}
.y79_c00416{bottom:798.157882px;}
.y78_c00416{bottom:798.602790px;}
.y77_c00416{bottom:799.270230px;}
.y76_c00416{bottom:799.599420px;}
.y75_c00416{bottom:800.033610px;}
.y74_c00416{bottom:801.249262px;}
.y73_c00416{bottom:801.489442px;}
.y72_c00416{bottom:802.580115px;}
.y71_c00416{bottom:802.898497px;}
.y70_c00416{bottom:803.784600px;}
.y6f_c00416{bottom:832.819800px;}
.y6e_c00416{bottom:833.259090px;}
.y6d_c00416{bottom:834.697770px;}
.y6c_c00416{bottom:835.434450px;}
.y6b_c00416{bottom:836.585850px;}
.y6a_c00416{bottom:837.737767px;}
.y69_c00416{bottom:838.155285px;}
.y68_c00416{bottom:839.728185px;}
.y67_c00416{bottom:840.738315px;}
.y66_c00416{bottom:841.587420px;}
.y65_c00416{bottom:869.489940px;}
.y64_c00416{bottom:869.979517px;}
.y63_c00416{bottom:870.327660px;}
.y62_c00416{bottom:871.985145px;}
.y61_c00416{bottom:872.807497px;}
.y60_c00416{bottom:874.463880px;}
.y5f_c00416{bottom:875.776350px;}
.y5e_c00416{bottom:876.295065px;}
.y5d_c00416{bottom:876.963000px;}
.y5b_c00416{bottom:910.584840px;}
.y5c_c00416{bottom:910.585485px;}
.y5a_c00416{bottom:940.153515px;}
.y59_c00416{bottom:941.213580px;}
.y58_c00416{bottom:941.655390px;}
.y57_c00416{bottom:942.020925px;}
.y56_c00416{bottom:943.352700px;}
.y55_c00416{bottom:944.687280px;}
.y54_c00416{bottom:945.607185px;}
.y53_c00416{bottom:946.274370px;}
.y52_c00416{bottom:947.058195px;}
.y51_c00416{bottom:947.446635px;}
.y50_c00416{bottom:947.722035px;}
.y4f_c00416{bottom:948.231375px;}
.y4e_c00416{bottom:975.380265px;}
.y4d_c00416{bottom:975.989325px;}
.y4c_c00416{bottom:976.953885px;}
.y4b_c00416{bottom:977.324160px;}
.y4a_c00416{bottom:978.554895px;}
.y49_c00416{bottom:978.907740px;}
.y48_c00416{bottom:980.478540px;}
.y47_c00416{bottom:980.850615px;}
.y46_c00416{bottom:981.917295px;}
.y45_c00416{bottom:982.523085px;}
.y44_c00416{bottom:1011.647010px;}
.y43_c00416{bottom:1013.082885px;}
.y42_c00416{bottom:1013.802900px;}
.y41_c00416{bottom:1014.242505px;}
.y40_c00416{bottom:1014.971775px;}
.y3f_c00416{bottom:1015.678350px;}
.y3e_c00416{bottom:1016.106825px;}
.y3d_c00416{bottom:1016.678985px;}
.y3c_c00416{bottom:1017.106965px;}
.y3b_c00416{bottom:1018.114755px;}
.y3a_c00416{bottom:1018.524990px;}
.y39_c00416{bottom:1018.953225px;}
.y38_c00416{bottom:1019.518740px;}
.y37_c00416{bottom:1046.400510px;}
.y36_c00416{bottom:1046.631210px;}
.y35_c00416{bottom:1046.787135px;}
.y34_c00416{bottom:1047.173955px;}
.y33_c00416{bottom:1047.408225px;}
.y32_c00416{bottom:1047.951840px;}
.y31_c00416{bottom:1048.112205px;}
.y30_c00416{bottom:1048.564290px;}
.y2f_c00416{bottom:1049.102850px;}
.y2e_c00416{bottom:1049.580255px;}
.y2d_c00416{bottom:1049.803095px;}
.y2c_c00416{bottom:1050.274170px;}
.y2b_c00416{bottom:1050.577335px;}
.y2a_c00416{bottom:1050.806235px;}
.y29_c00416{bottom:1051.109310px;}
.y28_c00416{bottom:1082.528610px;}
.y27_c00416{bottom:1082.969145px;}
.y26_c00416{bottom:1084.089615px;}
.y25_c00416{bottom:1084.527750px;}
.y24_c00416{bottom:1084.753650px;}
.y23_c00416{bottom:1085.518140px;}
.y22_c00416{bottom:1085.847585px;}
.y21_c00416{bottom:1086.069165px;}
.y20_c00416{bottom:1086.838575px;}
.y1f_c00416{bottom:1087.173405px;}
.y1e_c00416{bottom:1088.369415px;}
.y1d_c00416{bottom:1088.911500px;}
.y1c_c00416{bottom:1117.735146px;}
.y1b_c00416{bottom:1117.942434px;}
.y1a_c00416{bottom:1118.412369px;}
.y19_c00416{bottom:1118.603592px;}
.y18_c00416{bottom:1118.806083px;}
.y17_c00416{bottom:1119.207780px;}
.y16_c00416{bottom:1119.339252px;}
.y15_c00416{bottom:1119.867174px;}
.y14_c00416{bottom:1120.134483px;}
.y13_c00416{bottom:1120.529907px;}
.y12_c00416{bottom:1120.727511px;}
.y11_c00416{bottom:1121.122800px;}
.y10_c00416{bottom:1121.317119px;}
.yf_c00416{bottom:1121.579487px;}
.ye_c00416{bottom:1144.611135px;}
.yd_c00416{bottom:1144.943181px;}
.yc_c00416{bottom:1145.140812px;}
.yb_c00416{bottom:1145.484171px;}
.ya_c00416{bottom:1145.677068px;}
.y9_c00416{bottom:1145.813193px;}
.y8_c00416{bottom:1146.208491px;}
.y7_c00416{bottom:1146.675078px;}
.y6_c00416{bottom:1147.072050px;}
.y5_c00416{bottom:1147.540230px;}
.y4_c00416{bottom:1148.191443px;}
.y3_c00416{bottom:1148.389020px;}
.y2_c00416{bottom:1148.580000px;}
.y1_c00416{bottom:1214.875500px;}
.hd_c00416{height:30.003375px;}
.h2_c00416{height:60.000000px;}
.h5_c00416{height:72.003600px;}
.h9_c00416{height:72.008100px;}
.h6_c00416{height:78.003900px;}
.h8_c00416{height:78.008775px;}
.h4_c00416{height:84.004200px;}
.hb_c00416{height:84.009449px;}
.h3_c00416{height:90.001620px;}
.h7_c00416{height:90.004500px;}
.ha_c00416{height:90.010124px;}
.hc_c00416{height:96.010799px;}
.he_c00416{height:102.011474px;}
.h1_c00416{height:1251.000000px;}
.h0_c00416{height:1251.150000px;}
.w0_c00416{width:915.000000px;}
.x0_c00416{left:0.000000px;}
.xba_c00416{left:148.230420px;}
.x56_c00416{left:151.304618px;}
.x6d_c00416{left:152.413913px;}
.x4a_c00416{left:153.484583px;}
.x23_c00416{left:155.159880px;}
.x4_c00416{left:156.535500px;}
.xa7_c00416{left:173.174130px;}
.x8e_c00416{left:183.888120px;}
.x5_c00416{left:188.365500px;}
.x78_c00416{left:195.235755px;}
.x3c_c00416{left:197.007795px;}
.x24_c00416{left:198.368670px;}
.x11_c00416{left:199.436973px;}
.xa9_c00416{left:203.783490px;}
.x7d_c00416{left:205.562235px;}
.x1a_c00416{left:210.727500px;}
.xb2_c00416{left:215.673000px;}
.xa3_c00416{left:217.083330px;}
.x4b_c00416{left:218.793540px;}
.x3d_c00416{left:219.897330px;}
.x6_c00416{left:221.295000px;}
.x7e_c00416{left:228.454433px;}
.x5e_c00416{left:229.545225px;}
.x12_c00416{left:231.823473px;}
.x9c_c00416{left:238.990545px;}
.x66_c00416{left:240.103080px;}
.x4f_c00416{left:241.785743px;}
.x42_c00416{left:243.546120px;}
.xaf_c00416{left:249.588608px;}
.x3e_c00416{left:252.290685px;}
.x96_c00416{left:260.772053px;}
.x43_c00416{left:261.967500px;}
.x2e_c00416{left:263.346285px;}
.x79_c00416{left:272.624085px;}
.x25_c00416{left:274.227435px;}
.x74_c00416{left:282.516045px;}
.x57_c00416{left:295.132478px;}
.x4c_c00416{left:296.537880px;}
.x13_c00416{left:297.704973px;}
.xaa_c00416{left:302.979998px;}
.x75_c00416{left:305.156895px;}
.x44_c00416{left:306.496500px;}
.x35_c00416{left:307.642110px;}
.x85_c00416{left:315.008070px;}
.x6e_c00416{left:316.479840px;}
.x3f_c00416{left:317.621880px;}
.x5f_c00416{left:327.322763px;}
.x7_c00416{left:329.830500px;}
.xb3_c00416{left:335.854500px;}
.x86_c00416{left:338.887350px;}
.x26_c00416{left:341.436945px;}
.x8f_c00416{left:347.951835px;}
.x67_c00416{left:349.215128px;}
.x60_c00416{left:350.221425px;}
.x1b_c00416{left:363.811500px;}
.xab_c00416{left:369.068018px;}
.x87_c00416{left:370.974383px;}
.x68_c00416{left:372.129000px;}
.x27_c00416{left:373.321905px;}
.x7f_c00416{left:381.312000px;}
.x50_c00416{left:382.733318px;}
.x5b_c00416{left:384.053003px;}
.xb4_c00416{left:391.230000px;}
.x97_c00416{left:392.317095px;}
.x14_c00416{left:396.542973px;}
.xac_c00416{left:402.839505px;}
.x80_c00416{left:404.502698px;}
.x51_c00416{left:406.747118px;}
.x8_c00416{left:407.860500px;}
.x69_c00416{left:415.349588px;}
.x2f_c00416{left:417.784650px;}
.x9d_c00416{left:425.042835px;}
.x61_c00416{left:426.937778px;}
.x45_c00416{left:428.575500px;}
.x1_c00416{left:429.840000px;}
.xa4_c00416{left:436.074878px;}
.x15_c00416{left:441.094473px;}
.x90_c00416{left:446.857410px;}
.x4d_c00416{left:449.636970px;}
.x30_c00416{left:450.731160px;}
.x2_c00416{left:452.520000px;}
.xb5_c00416{left:457.291500px;}
.x5c_c00416{left:461.529990px;}
.x1c_c00416{left:462.910500px;}
.x98_c00416{left:468.476948px;}
.x6f_c00416{left:470.118953px;}
.x9_c00416{left:474.022500px;}
.xb6_c00416{left:479.506500px;}
.x6a_c00416{left:482.597115px;}
.x36_c00416{left:484.227840px;}
.x3_c00416{left:487.080000px;}
.xb0_c00416{left:489.987263px;}
.x91_c00416{left:491.098103px;}
.x99_c00416{left:492.203588px;}
.x1d_c00416{left:495.855000px;}
.xa8_c00416{left:502.280948px;}
.x31_c00416{left:505.037025px;}
.x8b_c00416{left:513.597390px;}
.x88_c00416{left:514.700085px;}
.x37_c00416{left:516.362025px;}
.x28_c00416{left:518.572770px;}
.x16_c00416{left:529.081473px;}
.xbb_c00416{left:534.647182px;}
.x62_c00416{left:536.886135px;}
.x58_c00416{left:537.961920px;}
.x46_c00416{left:539.001000px;}
.x9e_c00416{left:546.844658px;}
.x89_c00416{left:547.871595px;}
.xa_c00416{left:551.787000px;}
.x81_c00416{left:558.221288px;}
.x63_c00416{left:560.063798px;}
.x32_c00416{left:561.162345px;}
.xad_c00416{left:568.686533px;}
.x76_c00416{left:569.864258px;}
.x6b_c00416{left:570.911903px;}
.x1e_c00416{left:572.304000px;}
.xb7_c00416{left:579.726000px;}
.x82_c00416{left:581.149485px;}
.x29_c00416{left:583.133205px;}
.xbc_c00416{left:590.003625px;}
.x8a_c00416{left:591.055290px;}
.x92_c00416{left:592.163520px;}
.x47_c00416{left:593.824500px;}
.x1f_c00416{left:594.894000px;}
.x9a_c00416{left:602.163945px;}
.x52_c00416{left:604.697468px;}
.x2a_c00416{left:606.070395px;}
.xb_c00416{left:617.670000px;}
.x9f_c00416{left:624.313328px;}
.x4e_c00416{left:626.796780px;}
.x38_c00416{left:628.184400px;}
.x8c_c00416{left:634.925535px;}
.x70_c00416{left:637.054448px;}
.x20_c00416{left:638.707500px;}
.xc_c00416{left:640.357500px;}
.xa5_c00416{left:646.217700px;}
.x5d_c00416{left:648.694905px;}
.x33_c00416{left:650.271660px;}
.x17_c00416{left:651.691473px;}
.xb1_c00416{left:656.939738px;}
.x6c_c00416{left:658.829190px;}
.x59_c00416{left:659.951108px;}
.x39_c00416{left:661.911570px;}
.x83_c00416{left:670.262663px;}
.x53_c00416{left:671.398463px;}
.xd_c00416{left:672.507000px;}
.xb8_c00416{left:678.882000px;}
.x64_c00416{left:681.062475px;}
.x18_c00416{left:683.561973px;}
.x93_c00416{left:690.502163px;}
.x7a_c00416{left:691.816808px;}
.x5a_c00416{left:693.927060px;}
.x40_c00416{left:702.562185px;}
.x48_c00416{left:704.323500px;}
.x71_c00416{left:714.336765px;}
.x54_c00416{left:715.962315px;}
.x2b_c00416{left:717.312240px;}
.x84_c00416{left:725.638328px;}
.x49_c00416{left:727.533000px;}
.xe_c00416{left:729.733500px;}
.xa6_c00416{left:735.908400px;}
.x7b_c00416{left:737.474633px;}
.x41_c00416{left:739.392450px;}
.xa0_c00416{left:746.524650px;}
.x77_c00416{left:747.537923px;}
.x3a_c00416{left:749.666700px;}
.x21_c00416{left:750.754500px;}
.x94_c00416{left:757.745123px;}
.x72_c00416{left:759.105615px;}
.x34_c00416{left:760.705845px;}
.xf_c00416{left:762.672000px;}
.xa1_c00416{left:769.156988px;}
.x2c_c00416{left:772.645905px;}
.x8d_c00416{left:781.011923px;}
.x7c_c00416{left:782.292458px;}
.x55_c00416{left:783.468878px;}
.x9b_c00416{left:791.476110px;}
.x65_c00416{left:793.109288px;}
.x22_c00416{left:794.808000px;}
.x19_c00416{left:796.432473px;}
.xa2_c00416{left:803.212005px;}
.x3b_c00416{left:805.022145px;}
.xae_c00416{left:812.361720px;}
.x10_c00416{left:818.013000px;}
.x73_c00416{left:825.280095px;}
.x2d_c00416{left:827.810055px;}
.x95_c00416{left:835.169318px;}
.xb9_c00416{left:892.170000px;}
@media print{
.v0_c00416{vertical-align:0.000000pt;}
.ls0_c00416{letter-spacing:0.000000pt;}
.ws0_c00416{word-spacing:0.000000pt;}
.fsb_c00416{font-size:26.669666pt;}
.fs0_c00416{font-size:53.333333pt;}
.fs3_c00416{font-size:64.003200pt;}
.fs7_c00416{font-size:64.007200pt;}
.fs4_c00416{font-size:69.336800pt;}
.fs6_c00416{font-size:69.341133pt;}
.fs2_c00416{font-size:74.670400pt;}
.fs9_c00416{font-size:74.675066pt;}
.fs1_c00416{font-size:80.001440pt;}
.fs5_c00416{font-size:80.004000pt;}
.fs8_c00416{font-size:80.008999pt;}
.fsa_c00416{font-size:85.342933pt;}
.fsc_c00416{font-size:90.676866pt;}
.y0_c00416{bottom:0.000000pt;}
.y147_c00416{bottom:91.832187pt;}
.y150_c00416{bottom:91.832540pt;}
.y148_c00416{bottom:91.832627pt;}
.y14d_c00416{bottom:91.832720pt;}
.y14e_c00416{bottom:91.832760pt;}
.y14c_c00416{bottom:91.832813pt;}
.y14b_c00416{bottom:91.832907pt;}
.y14a_c00416{bottom:91.833000pt;}
.y149_c00416{bottom:91.833013pt;}
.y14f_c00416{bottom:91.833127pt;}
.y146_c00416{bottom:128.265720pt;}
.y145_c00416{bottom:131.480147pt;}
.y144_c00416{bottom:132.246107pt;}
.y143_c00416{bottom:133.128547pt;}
.y142_c00416{bottom:134.323987pt;}
.y141_c00416{bottom:134.767067pt;}
.y140_c00416{bottom:135.646067pt;}
.y13f_c00416{bottom:136.982327pt;}
.y13e_c00416{bottom:137.278527pt;}
.y13d_c00416{bottom:138.159347pt;}
.y13c_c00416{bottom:138.897687pt;}
.y13b_c00416{bottom:140.500107pt;}
.y13a_c00416{bottom:141.362667pt;}
.y139_c00416{bottom:163.818820pt;}
.y138_c00416{bottom:165.375873pt;}
.y137_c00416{bottom:166.066153pt;}
.y136_c00416{bottom:166.993100pt;}
.y135_c00416{bottom:168.810980pt;}
.y134_c00416{bottom:169.931633pt;}
.y133_c00416{bottom:170.406067pt;}
.y132_c00416{bottom:172.633173pt;}
.y131_c00416{bottom:174.205280pt;}
.y130_c00416{bottom:175.321100pt;}
.y12f_c00416{bottom:177.300380pt;}
.y12e_c00416{bottom:200.898233pt;}
.y12d_c00416{bottom:202.882127pt;}
.y12c_c00416{bottom:204.086040pt;}
.y12b_c00416{bottom:204.580667pt;}
.y12a_c00416{bottom:206.078167pt;}
.y129_c00416{bottom:207.086693pt;}
.y128_c00416{bottom:207.596993pt;}
.y127_c00416{bottom:208.595527pt;}
.y126_c00416{bottom:208.920273pt;}
.y125_c00416{bottom:210.095520pt;}
.y124_c00416{bottom:210.553093pt;}
.y123_c00416{bottom:210.899827pt;}
.y122_c00416{bottom:233.772260pt;}
.y121_c00416{bottom:236.119967pt;}
.y120_c00416{bottom:237.896767pt;}
.y11f_c00416{bottom:238.505507pt;}
.y11e_c00416{bottom:239.092353pt;}
.y11d_c00416{bottom:240.451153pt;}
.y11c_c00416{bottom:241.262100pt;}
.y11b_c00416{bottom:243.566600pt;}
.y11a_c00416{bottom:244.356593pt;}
.y119_c00416{bottom:244.746187pt;}
.y118_c00416{bottom:262.085233pt;}
.y117_c00416{bottom:262.475233pt;}
.y116_c00416{bottom:263.511073pt;}
.y115_c00416{bottom:264.780753pt;}
.y114_c00416{bottom:265.542120pt;}
.y113_c00416{bottom:265.938227pt;}
.y112_c00416{bottom:266.946300pt;}
.y111_c00416{bottom:267.330253pt;}
.y110_c00416{bottom:268.470027pt;}
.y10f_c00416{bottom:269.228007pt;}
.y10e_c00416{bottom:296.169633pt;}
.y10d_c00416{bottom:296.593027pt;}
.y10c_c00416{bottom:296.874787pt;}
.y10b_c00416{bottom:298.396247pt;}
.y10a_c00416{bottom:299.359813pt;}
.y109_c00416{bottom:299.769640pt;}
.y108_c00416{bottom:300.875813pt;}
.y107_c00416{bottom:302.502593pt;}
.y106_c00416{bottom:303.191140pt;}
.y105_c00416{bottom:303.738313pt;}
.y104_c00416{bottom:304.271887pt;}
.y103_c00416{bottom:323.983000pt;}
.y102_c00416{bottom:324.758220pt;}
.y101_c00416{bottom:326.675200pt;}
.y100_c00416{bottom:328.238693pt;}
.yff_c00416{bottom:328.576387pt;}
.yfe_c00416{bottom:329.659867pt;}
.yfd_c00416{bottom:329.966613pt;}
.yfc_c00416{bottom:331.529827pt;}
.yfb_c00416{bottom:331.998180pt;}
.yfa_c00416{bottom:333.077140pt;}
.yf9_c00416{bottom:356.457193pt;}
.yf8_c00416{bottom:357.833593pt;}
.yf7_c00416{bottom:359.028900pt;}
.yf6_c00416{bottom:359.990120pt;}
.yf5_c00416{bottom:360.776180pt;}
.yf4_c00416{bottom:361.377767pt;}
.yf3_c00416{bottom:362.573153pt;}
.yf2_c00416{bottom:363.359073pt;}
.yf1_c00416{bottom:364.531627pt;}
.yf0_c00416{bottom:365.117913pt;}
.yef_c00416{bottom:367.242680pt;}
.yee_c00416{bottom:368.033593pt;}
.yed_c00416{bottom:368.599127pt;}
.yec_c00416{bottom:389.637260pt;}
.yeb_c00416{bottom:391.051047pt;}
.yea_c00416{bottom:391.325020pt;}
.ye9_c00416{bottom:392.726680pt;}
.ye8_c00416{bottom:394.247147pt;}
.ye7_c00416{bottom:394.876813pt;}
.ye6_c00416{bottom:395.391727pt;}
.ye5_c00416{bottom:396.409187pt;}
.ye4_c00416{bottom:396.921380pt;}
.ye3_c00416{bottom:421.549627pt;}
.ye2_c00416{bottom:423.215007pt;}
.ye1_c00416{bottom:423.737020pt;}
.ye0_c00416{bottom:425.088087pt;}
.ydf_c00416{bottom:425.741220pt;}
.yde_c00416{bottom:426.242187pt;}
.ydd_c00416{bottom:426.927207pt;}
.ydc_c00416{bottom:428.413253pt;}
.ydb_c00416{bottom:428.898427pt;}
.yda_c00416{bottom:429.259493pt;}
.yd9_c00416{bottom:430.719193pt;}
.yd8_c00416{bottom:431.726260pt;}
.yd7_c00416{bottom:453.367233pt;}
.yd6_c00416{bottom:454.147253pt;}
.yd5_c00416{bottom:454.786907pt;}
.yd4_c00416{bottom:455.816380pt;}
.yd3_c00416{bottom:456.080747pt;}
.yd2_c00416{bottom:457.099127pt;}
.yd1_c00416{bottom:457.858267pt;}
.yd0_c00416{bottom:458.126133pt;}
.ycf_c00416{bottom:459.012733pt;}
.yce_c00416{bottom:459.499527pt;}
.ycd_c00416{bottom:459.893507pt;}
.ycc_c00416{bottom:460.157393pt;}
.ycb_c00416{bottom:460.768447pt;}
.yca_c00416{bottom:485.169680pt;}
.yc9_c00416{bottom:485.807260pt;}
.yc8_c00416{bottom:486.456040pt;}
.yc7_c00416{bottom:487.849807pt;}
.yc6_c00416{bottom:488.640940pt;}
.yc5_c00416{bottom:490.235500pt;}
.yc4_c00416{bottom:491.329880pt;}
.yc3_c00416{bottom:492.417360pt;}
.yc2_c00416{bottom:493.518553pt;}
.yc1_c00416{bottom:494.132680pt;}
.yc0_c00416{bottom:517.845653pt;}
.ybf_c00416{bottom:518.493207pt;}
.ybe_c00416{bottom:518.928180pt;}
.ybd_c00416{bottom:519.582493pt;}
.ybc_c00416{bottom:520.224740pt;}
.ybb_c00416{bottom:520.552553pt;}
.yba_c00416{bottom:521.730433pt;}
.yb9_c00416{bottom:522.171713pt;}
.yb8_c00416{bottom:522.393573pt;}
.yb7_c00416{bottom:523.239147pt;}
.yb6_c00416{bottom:523.655507pt;}
.yb5_c00416{bottom:549.004333pt;}
.yb4_c00416{bottom:549.769300pt;}
.yb3_c00416{bottom:550.286200pt;}
.yb2_c00416{bottom:551.179267pt;}
.yb1_c00416{bottom:551.944093pt;}
.yb0_c00416{bottom:552.334293pt;}
.yaf_c00416{bottom:553.109007pt;}
.yae_c00416{bottom:554.516147pt;}
.yad_c00416{bottom:554.884133pt;}
.yac_c00416{bottom:556.263053pt;}
.yab_c00416{bottom:556.779613pt;}
.yaa_c00416{bottom:580.612267pt;}
.ya9_c00416{bottom:581.055933pt;}
.ya8_c00416{bottom:581.606513pt;}
.ya7_c00416{bottom:582.140967pt;}
.ya6_c00416{bottom:582.465340pt;}
.ya5_c00416{bottom:582.999267pt;}
.ya4_c00416{bottom:583.329467pt;}
.ya3_c00416{bottom:583.987380pt;}
.ya2_c00416{bottom:584.410287pt;}
.ya1_c00416{bottom:584.634453pt;}
.ya0_c00416{bottom:585.701193pt;}
.y9f_c00416{bottom:586.542527pt;}
.y9e_c00416{bottom:612.718180pt;}
.y9d_c00416{bottom:613.335787pt;}
.y9c_c00416{bottom:614.312160pt;}
.y9b_c00416{bottom:614.765140pt;}
.y9a_c00416{bottom:615.548893pt;}
.y99_c00416{bottom:616.033500pt;}
.y98_c00416{bottom:616.362540pt;}
.y97_c00416{bottom:617.925873pt;}
.y96_c00416{bottom:619.016773pt;}
.y95_c00416{bottom:619.342093pt;}
.y94_c00416{bottom:620.732480pt;}
.y93_c00416{bottom:621.826120pt;}
.y92_c00416{bottom:644.385787pt;}
.y91_c00416{bottom:644.641687pt;}
.y90_c00416{bottom:645.828053pt;}
.y8f_c00416{bottom:646.291473pt;}
.y8e_c00416{bottom:646.760980pt;}
.y8d_c00416{bottom:647.824807pt;}
.y8c_c00416{bottom:648.182093pt;}
.y8b_c00416{bottom:648.651120pt;}
.y8a_c00416{bottom:649.472307pt;}
.y89_c00416{bottom:649.823467pt;}
.y88_c00416{bottom:650.641527pt;}
.y87_c00416{bottom:651.108387pt;}
.y86_c00416{bottom:676.314620pt;}
.y85_c00416{bottom:678.189707pt;}
.y84_c00416{bottom:678.764080pt;}
.y83_c00416{bottom:679.890793pt;}
.y82_c00416{bottom:680.824033pt;}
.y81_c00416{bottom:682.863627pt;}
.y80_c00416{bottom:684.341233pt;}
.y7f_c00416{bottom:684.924620pt;}
.y7e_c00416{bottom:685.467407pt;}
.y7d_c00416{bottom:686.588567pt;}
.y7c_c00416{bottom:687.354440pt;}
.y7b_c00416{bottom:708.570780pt;}
.y7a_c00416{bottom:708.873653pt;}
.y79_c00416{bottom:709.473673pt;}
.y78_c00416{bottom:709.869147pt;}
.y77_c00416{bottom:710.462427pt;}
.y76_c00416{bottom:710.755040pt;}
.y75_c00416{bottom:711.140987pt;}
.y74_c00416{bottom:712.221567pt;}
.y73_c00416{bottom:712.435060pt;}
.y72_c00416{bottom:713.404547pt;}
.y71_c00416{bottom:713.687553pt;}
.y70_c00416{bottom:714.475200pt;}
.y6f_c00416{bottom:740.284267pt;}
.y6e_c00416{bottom:740.674747pt;}
.y6d_c00416{bottom:741.953573pt;}
.y6c_c00416{bottom:742.608400pt;}
.y6b_c00416{bottom:743.631867pt;}
.y6a_c00416{bottom:744.655793pt;}
.y69_c00416{bottom:745.026920pt;}
.y68_c00416{bottom:746.425053pt;}
.y67_c00416{bottom:747.322947pt;}
.y66_c00416{bottom:748.077707pt;}
.y65_c00416{bottom:772.879947pt;}
.y64_c00416{bottom:773.315127pt;}
.y63_c00416{bottom:773.624587pt;}
.y62_c00416{bottom:775.097907pt;}
.y61_c00416{bottom:775.828887pt;}
.y60_c00416{bottom:777.301227pt;}
.y5f_c00416{bottom:778.467867pt;}
.y5e_c00416{bottom:778.928947pt;}
.y5d_c00416{bottom:779.522667pt;}
.y5b_c00416{bottom:809.408747pt;}
.y5c_c00416{bottom:809.409320pt;}
.y5a_c00416{bottom:835.692013pt;}
.y59_c00416{bottom:836.634293pt;}
.y58_c00416{bottom:837.027013pt;}
.y57_c00416{bottom:837.351933pt;}
.y56_c00416{bottom:838.535733pt;}
.y55_c00416{bottom:839.722027pt;}
.y54_c00416{bottom:840.539720pt;}
.y53_c00416{bottom:841.132773pt;}
.y52_c00416{bottom:841.829507pt;}
.y51_c00416{bottom:842.174787pt;}
.y50_c00416{bottom:842.419587pt;}
.y4f_c00416{bottom:842.872333pt;}
.y4e_c00416{bottom:867.004680pt;}
.y4d_c00416{bottom:867.546067pt;}
.y4c_c00416{bottom:868.403453pt;}
.y4b_c00416{bottom:868.732587pt;}
.y4a_c00416{bottom:869.826573pt;}
.y49_c00416{bottom:870.140213pt;}
.y48_c00416{bottom:871.536480pt;}
.y47_c00416{bottom:871.867213pt;}
.y46_c00416{bottom:872.815373pt;}
.y45_c00416{bottom:873.353853pt;}
.y44_c00416{bottom:899.241787pt;}
.y43_c00416{bottom:900.518120pt;}
.y42_c00416{bottom:901.158133pt;}
.y41_c00416{bottom:901.548893pt;}
.y40_c00416{bottom:902.197133pt;}
.y3f_c00416{bottom:902.825200pt;}
.y3e_c00416{bottom:903.206067pt;}
.y3d_c00416{bottom:903.714653pt;}
.y3c_c00416{bottom:904.095080pt;}
.y3b_c00416{bottom:904.990893pt;}
.y3a_c00416{bottom:905.355547pt;}
.y39_c00416{bottom:905.736200pt;}
.y38_c00416{bottom:906.238880pt;}
.y37_c00416{bottom:930.133787pt;}
.y36_c00416{bottom:930.338853pt;}
.y35_c00416{bottom:930.477453pt;}
.y34_c00416{bottom:930.821293pt;}
.y33_c00416{bottom:931.029533pt;}
.y32_c00416{bottom:931.512747pt;}
.y31_c00416{bottom:931.655293pt;}
.y30_c00416{bottom:932.057147pt;}
.y2f_c00416{bottom:932.535867pt;}
.y2e_c00416{bottom:932.960227pt;}
.y2d_c00416{bottom:933.158307pt;}
.y2c_c00416{bottom:933.577040pt;}
.y2b_c00416{bottom:933.846520pt;}
.y2a_c00416{bottom:934.049987pt;}
.y29_c00416{bottom:934.319387pt;}
.y28_c00416{bottom:962.247653pt;}
.y27_c00416{bottom:962.639240pt;}
.y26_c00416{bottom:963.635213pt;}
.y25_c00416{bottom:964.024667pt;}
.y24_c00416{bottom:964.225467pt;}
.y23_c00416{bottom:964.905013pt;}
.y22_c00416{bottom:965.197853pt;}
.y21_c00416{bottom:965.394813pt;}
.y20_c00416{bottom:966.078733pt;}
.y1f_c00416{bottom:966.376360pt;}
.y1e_c00416{bottom:967.439480pt;}
.y1d_c00416{bottom:967.921333pt;}
.y1c_c00416{bottom:993.542352pt;}
.y1b_c00416{bottom:993.726608pt;}
.y1a_c00416{bottom:994.144328pt;}
.y19_c00416{bottom:994.314304pt;}
.y18_c00416{bottom:994.494296pt;}
.y17_c00416{bottom:994.851360pt;}
.y16_c00416{bottom:994.968224pt;}
.y15_c00416{bottom:995.437488pt;}
.y14_c00416{bottom:995.675096pt;}
.y13_c00416{bottom:996.026584pt;}
.y12_c00416{bottom:996.202232pt;}
.y11_c00416{bottom:996.553600pt;}
.y10_c00416{bottom:996.726328pt;}
.yf_c00416{bottom:996.959544pt;}
.ye_c00416{bottom:1017.432120pt;}
.yd_c00416{bottom:1017.727272pt;}
.yc_c00416{bottom:1017.902944pt;}
.yb_c00416{bottom:1018.208152pt;}
.ya_c00416{bottom:1018.379616pt;}
.y9_c00416{bottom:1018.500616pt;}
.y8_c00416{bottom:1018.851992pt;}
.y7_c00416{bottom:1019.266736pt;}
.y6_c00416{bottom:1019.619600pt;}
.y5_c00416{bottom:1020.035760pt;}
.y4_c00416{bottom:1020.614616pt;}
.y3_c00416{bottom:1020.790240pt;}
.y2_c00416{bottom:1020.960000pt;}
.y1_c00416{bottom:1079.889333pt;}
.hd_c00416{height:26.669666pt;}
.h2_c00416{height:53.333333pt;}
.h5_c00416{height:64.003200pt;}
.h9_c00416{height:64.007200pt;}
.h6_c00416{height:69.336800pt;}
.h8_c00416{height:69.341133pt;}
.h4_c00416{height:74.670400pt;}
.hb_c00416{height:74.675066pt;}
.h3_c00416{height:80.001440pt;}
.h7_c00416{height:80.004000pt;}
.ha_c00416{height:80.008999pt;}
.hc_c00416{height:85.342933pt;}
.he_c00416{height:90.676866pt;}
.h1_c00416{height:1112.000000pt;}
.h0_c00416{height:1112.133333pt;}
.w0_c00416{width:813.333333pt;}
.x0_c00416{left:0.000000pt;}
.xba_c00416{left:131.760373pt;}
.x56_c00416{left:134.492993pt;}
.x6d_c00416{left:135.479033pt;}
.x4a_c00416{left:136.430740pt;}
.x23_c00416{left:137.919893pt;}
.x4_c00416{left:139.142667pt;}
.xa7_c00416{left:153.932560pt;}
.x8e_c00416{left:163.456107pt;}
.x5_c00416{left:167.436000pt;}
.x78_c00416{left:173.542893pt;}
.x3c_c00416{left:175.118040pt;}
.x24_c00416{left:176.327707pt;}
.x11_c00416{left:177.277309pt;}
.xa9_c00416{left:181.140880pt;}
.x7d_c00416{left:182.721987pt;}
.x1a_c00416{left:187.313333pt;}
.xb2_c00416{left:191.709333pt;}
.xa3_c00416{left:192.962960pt;}
.x4b_c00416{left:194.483147pt;}
.x3d_c00416{left:195.464293pt;}
.x6_c00416{left:196.706667pt;}
.x7e_c00416{left:203.070607pt;}
.x5e_c00416{left:204.040200pt;}
.x12_c00416{left:206.065309pt;}
.x9c_c00416{left:212.436040pt;}
.x66_c00416{left:213.424960pt;}
.x4f_c00416{left:214.920660pt;}
.x42_c00416{left:216.485440pt;}
.xaf_c00416{left:221.856540pt;}
.x3e_c00416{left:224.258387pt;}
.x96_c00416{left:231.797380pt;}
.x43_c00416{left:232.860000pt;}
.x2e_c00416{left:234.085587pt;}
.x79_c00416{left:242.332520pt;}
.x25_c00416{left:243.757720pt;}
.x74_c00416{left:251.125373pt;}
.x57_c00416{left:262.339980pt;}
.x4c_c00416{left:263.589227pt;}
.x13_c00416{left:264.626643pt;}
.xaa_c00416{left:269.315553pt;}
.x75_c00416{left:271.250573pt;}
.x44_c00416{left:272.441333pt;}
.x35_c00416{left:273.459653pt;}
.x85_c00416{left:280.007173pt;}
.x6e_c00416{left:281.315413pt;}
.x3f_c00416{left:282.330560pt;}
.x5f_c00416{left:290.953567pt;}
.x7_c00416{left:293.182667pt;}
.xb3_c00416{left:298.537333pt;}
.x86_c00416{left:301.233200pt;}
.x26_c00416{left:303.499507pt;}
.x8f_c00416{left:309.290520pt;}
.x67_c00416{left:310.413447pt;}
.x60_c00416{left:311.307933pt;}
.x1b_c00416{left:323.388000pt;}
.xab_c00416{left:328.060460pt;}
.x87_c00416{left:329.755007pt;}
.x68_c00416{left:330.781333pt;}
.x27_c00416{left:331.841693pt;}
.x7f_c00416{left:338.944000pt;}
.x50_c00416{left:340.207393pt;}
.x5b_c00416{left:341.380447pt;}
.xb4_c00416{left:347.760000pt;}
.x97_c00416{left:348.726307pt;}
.x14_c00416{left:352.482643pt;}
.xac_c00416{left:358.079560pt;}
.x80_c00416{left:359.557953pt;}
.x51_c00416{left:361.552993pt;}
.x8_c00416{left:362.542667pt;}
.x69_c00416{left:369.199633pt;}
.x2f_c00416{left:371.364133pt;}
.x9d_c00416{left:377.815853pt;}
.x61_c00416{left:379.500247pt;}
.x45_c00416{left:380.956000pt;}
.x1_c00416{left:382.080000pt;}
.xa4_c00416{left:387.622113pt;}
.x15_c00416{left:392.083976pt;}
.x90_c00416{left:397.206587pt;}
.x4d_c00416{left:399.677307pt;}
.x30_c00416{left:400.649920pt;}
.x2_c00416{left:402.240000pt;}
.xb5_c00416{left:406.481333pt;}
.x5c_c00416{left:410.248880pt;}
.x1c_c00416{left:411.476000pt;}
.x98_c00416{left:416.423953pt;}
.x6f_c00416{left:417.883513pt;}
.x9_c00416{left:421.353333pt;}
.xb6_c00416{left:426.228000pt;}
.x6a_c00416{left:428.975213pt;}
.x36_c00416{left:430.424747pt;}
.x3_c00416{left:432.960000pt;}
.xb0_c00416{left:435.544233pt;}
.x91_c00416{left:436.531647pt;}
.x99_c00416{left:437.514300pt;}
.x1d_c00416{left:440.760000pt;}
.xa8_c00416{left:446.471953pt;}
.x31_c00416{left:448.921800pt;}
.x8b_c00416{left:456.531013pt;}
.x88_c00416{left:457.511187pt;}
.x37_c00416{left:458.988467pt;}
.x28_c00416{left:460.953573pt;}
.x16_c00416{left:470.294643pt;}
.xbb_c00416{left:475.241940pt;}
.x62_c00416{left:477.232120pt;}
.x58_c00416{left:478.188373pt;}
.x46_c00416{left:479.112000pt;}
.x9e_c00416{left:486.084140pt;}
.x89_c00416{left:486.996973pt;}
.xa_c00416{left:490.477333pt;}
.x81_c00416{left:496.196700pt;}
.x63_c00416{left:497.834487pt;}
.x32_c00416{left:498.810973pt;}
.xad_c00416{left:505.499140pt;}
.x76_c00416{left:506.546007pt;}
.x6b_c00416{left:507.477247pt;}
.x1e_c00416{left:508.714667pt;}
.xb7_c00416{left:515.312000pt;}
.x82_c00416{left:516.577320pt;}
.x29_c00416{left:518.340627pt;}
.xbc_c00416{left:524.447667pt;}
.x8a_c00416{left:525.382480pt;}
.x92_c00416{left:526.367573pt;}
.x47_c00416{left:527.844000pt;}
.x1f_c00416{left:528.794667pt;}
.x9a_c00416{left:535.256840pt;}
.x52_c00416{left:537.508860pt;}
.x2a_c00416{left:538.729240pt;}
.xb_c00416{left:549.040000pt;}
.x9f_c00416{left:554.945180pt;}
.x4e_c00416{left:557.152693pt;}
.x38_c00416{left:558.386133pt;}
.x8c_c00416{left:564.378253pt;}
.x70_c00416{left:566.270620pt;}
.x20_c00416{left:567.740000pt;}
.xc_c00416{left:569.206667pt;}
.xa5_c00416{left:574.415733pt;}
.x5d_c00416{left:576.617693pt;}
.x33_c00416{left:578.019253pt;}
.x17_c00416{left:579.281309pt;}
.xb1_c00416{left:583.946433pt;}
.x6c_c00416{left:585.625947pt;}
.x59_c00416{left:586.623207pt;}
.x39_c00416{left:588.365840pt;}
.x83_c00416{left:595.789033pt;}
.x53_c00416{left:596.798633pt;}
.xd_c00416{left:597.784000pt;}
.xb8_c00416{left:603.450667pt;}
.x64_c00416{left:605.388867pt;}
.x18_c00416{left:607.610643pt;}
.x93_c00416{left:613.779700pt;}
.x7a_c00416{left:614.948273pt;}
.x5a_c00416{left:616.824053pt;}
.x40_c00416{left:624.499720pt;}
.x48_c00416{left:626.065333pt;}
.x71_c00416{left:634.966013pt;}
.x54_c00416{left:636.410947pt;}
.x2b_c00416{left:637.610880pt;}
.x84_c00416{left:645.011847pt;}
.x49_c00416{left:646.696000pt;}
.xe_c00416{left:648.652000pt;}
.xa6_c00416{left:654.140800pt;}
.x7b_c00416{left:655.533007pt;}
.x41_c00416{left:657.237733pt;}
.xa0_c00416{left:663.577467pt;}
.x77_c00416{left:664.478153pt;}
.x3a_c00416{left:666.370400pt;}
.x21_c00416{left:667.337333pt;}
.x94_c00416{left:673.551220pt;}
.x72_c00416{left:674.760547pt;}
.x34_c00416{left:676.182973pt;}
.xf_c00416{left:677.930667pt;}
.xa1_c00416{left:683.695100pt;}
.x2c_c00416{left:686.796360pt;}
.x8d_c00416{left:694.232820pt;}
.x7c_c00416{left:695.371073pt;}
.x55_c00416{left:696.416780pt;}
.x9b_c00416{left:703.534320pt;}
.x65_c00416{left:704.986033pt;}
.x22_c00416{left:706.496000pt;}
.x19_c00416{left:707.939976pt;}
.xa2_c00416{left:713.966227pt;}
.x3b_c00416{left:715.575240pt;}
.xae_c00416{left:722.099307pt;}
.x10_c00416{left:727.122667pt;}
.x73_c00416{left:733.582307pt;}
.x2d_c00416{left:735.831160pt;}
.x95_c00416{left:742.372727pt;}
.xb9_c00416{left:793.040000pt;}
}





/* 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_c00417 {
    display:none;
  }
  .loading-indicator_c00417.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00417 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_c00417 { 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_c00417" -> "#page-container .classname_c00417")
 */
.pf_c00417 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00417 { /* 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_c00417.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00417 { /* 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_c00417 { /* 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_c00417 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00417 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00417 {overflow:visible;}
  }
}
.c_c00417 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00417 { /* 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_c00417:after { /* webkit #35443 */
  content: '';
}
.t_c00417:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00417 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 */
}
.__c00417 { /* 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_c00417 { /* info for Javascript */
  display:none;
}
.l_c00417 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00417 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00417 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00417: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_c00417 {
    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_c00417.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00417.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_c00417 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00417{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00417;src:url('chunks/assets/font_dbd529e162d5851c7bfb6d27.woff2')format("woff");}.ff1_c00417{font-family:ff1_c00417;line-height:1.000000;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;}
.m2_c00417{transform:matrix(0.010605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.010605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.010605,0.000000,0.000000,0.250000,0,0);}
.m63_c00417{transform:matrix(0.013415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.013415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.013415,0.000000,0.000000,0.250000,0,0);}
.m66_c00417{transform:matrix(0.021635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021635,0.000000,0.000000,0.250000,0,0);}
.m0_c00417{transform:matrix(0.162465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162465,0.000000,0.000000,0.250000,0,0);}
.m8_c00417{transform:matrix(0.164456,-0.001151,0.001750,0.249994,0,0);-ms-transform:matrix(0.164456,-0.001151,0.001750,0.249994,0,0);-webkit-transform:matrix(0.164456,-0.001151,0.001750,0.249994,0,0);}
.m4d_c00417{transform:matrix(0.169335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169335,0.000000,0.000000,0.250000,0,0);}
.m24_c00417{transform:matrix(0.169485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169485,0.000000,0.000000,0.250000,0,0);}
.m1f_c00417{transform:matrix(0.172870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172870,0.000000,0.000000,0.250000,0,0);}
.m21_c00417{transform:matrix(0.174165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174165,0.000000,0.000000,0.250000,0,0);}
.m25_c00417{transform:matrix(0.177055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177055,0.000000,0.000000,0.250000,0,0);}
.m6_c00417{transform:matrix(0.177706,-0.001244,0.001750,0.249994,0,0);-ms-transform:matrix(0.177706,-0.001244,0.001750,0.249994,0,0);-webkit-transform:matrix(0.177706,-0.001244,0.001750,0.249994,0,0);}
.m22_c00417{transform:matrix(0.178615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178615,0.000000,0.000000,0.250000,0,0);}
.m10_c00417{transform:matrix(0.182386,-0.001277,0.001750,0.249994,0,0);-ms-transform:matrix(0.182386,-0.001277,0.001750,0.249994,0,0);-webkit-transform:matrix(0.182386,-0.001277,0.001750,0.249994,0,0);}
.m5_c00417{transform:matrix(0.183051,-0.001281,0.001750,0.249994,0,0);-ms-transform:matrix(0.183051,-0.001281,0.001750,0.249994,0,0);-webkit-transform:matrix(0.183051,-0.001281,0.001750,0.249994,0,0);}
.m3e_c00417{transform:matrix(0.184230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184230,0.000000,0.000000,0.250000,0,0);}
.m15_c00417{transform:matrix(0.187485,-0.001312,0.001750,0.249994,0,0);-ms-transform:matrix(0.187485,-0.001312,0.001750,0.249994,0,0);-webkit-transform:matrix(0.187485,-0.001312,0.001750,0.249994,0,0);}
.m34_c00417{transform:matrix(0.187625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187625,0.000000,0.000000,0.250000,0,0);}
.m7_c00417{transform:matrix(0.188180,-0.001317,0.001750,0.249994,0,0);-ms-transform:matrix(0.188180,-0.001317,0.001750,0.249994,0,0);-webkit-transform:matrix(0.188180,-0.001317,0.001750,0.249994,0,0);}
.m23_c00417{transform:matrix(0.189735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189735,0.000000,0.000000,0.250000,0,0);}
.m4c_c00417{transform:matrix(0.190470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190470,0.000000,0.000000,0.250000,0,0);}
.ma_c00417{transform:matrix(0.192795,-0.001350,0.001750,0.249994,0,0);-ms-transform:matrix(0.192795,-0.001350,0.001750,0.249994,0,0);-webkit-transform:matrix(0.192795,-0.001350,0.001750,0.249994,0,0);}
.m56_c00417{transform:matrix(0.194195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194195,0.000000,0.000000,0.250000,0,0);}
.m36_c00417{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m9_c00417{transform:matrix(0.195230,-0.001367,0.001750,0.249994,0,0);-ms-transform:matrix(0.195230,-0.001367,0.001750,0.249994,0,0);-webkit-transform:matrix(0.195230,-0.001367,0.001750,0.249994,0,0);}
.m2e_c00417{transform:matrix(0.197230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197230,0.000000,0.000000,0.250000,0,0);}
.m12_c00417{transform:matrix(0.198950,-0.001393,0.001750,0.249994,0,0);-ms-transform:matrix(0.198950,-0.001393,0.001750,0.249994,0,0);-webkit-transform:matrix(0.198950,-0.001393,0.001750,0.249994,0,0);}
.m3b_c00417{transform:matrix(0.199290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199290,0.000000,0.000000,0.250000,0,0);}
.m14_c00417{transform:matrix(0.200845,-0.001406,0.001750,0.249994,0,0);-ms-transform:matrix(0.200845,-0.001406,0.001750,0.249994,0,0);-webkit-transform:matrix(0.200845,-0.001406,0.001750,0.249994,0,0);}
.m20_c00417{transform:matrix(0.201445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201445,0.000000,0.000000,0.250000,0,0);}
.m3f_c00417{transform:matrix(0.204850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204850,0.000000,0.000000,0.250000,0,0);}
.m19_c00417{transform:matrix(0.204880,-0.001434,0.001750,0.249994,0,0);-ms-transform:matrix(0.204880,-0.001434,0.001750,0.249994,0,0);-webkit-transform:matrix(0.204880,-0.001434,0.001750,0.249994,0,0);}
.m28_c00417{transform:matrix(0.205325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205325,0.000000,0.000000,0.250000,0,0);}
.m39_c00417{transform:matrix(0.205925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205925,0.000000,0.000000,0.250000,0,0);}
.m4b_c00417{transform:matrix(0.206095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206095,0.000000,0.000000,0.250000,0,0);}
.m29_c00417{transform:matrix(0.206515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206515,0.000000,0.000000,0.250000,0,0);}
.m4f_c00417{transform:matrix(0.208015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208015,0.000000,0.000000,0.250000,0,0);}
.m31_c00417{transform:matrix(0.209680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209680,0.000000,0.000000,0.250000,0,0);}
.m33_c00417{transform:matrix(0.212615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212615,0.000000,0.000000,0.250000,0,0);}
.m40_c00417{transform:matrix(0.213550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213550,0.000000,0.000000,0.250000,0,0);}
.m16_c00417{transform:matrix(0.213880,-0.001497,0.001750,0.249994,0,0);-ms-transform:matrix(0.213880,-0.001497,0.001750,0.249994,0,0);-webkit-transform:matrix(0.213880,-0.001497,0.001750,0.249994,0,0);}
.m2f_c00417{transform:matrix(0.216620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216620,0.000000,0.000000,0.250000,0,0);}
.mb_c00417{transform:matrix(0.218460,-0.001529,0.001750,0.249994,0,0);-ms-transform:matrix(0.218460,-0.001529,0.001750,0.249994,0,0);-webkit-transform:matrix(0.218460,-0.001529,0.001750,0.249994,0,0);}
.m43_c00417{transform:matrix(0.218505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218505,0.000000,0.000000,0.250000,0,0);}
.m48_c00417{transform:matrix(0.218795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218795,0.000000,0.000000,0.250000,0,0);}
.m13_c00417{transform:matrix(0.219045,-0.001533,0.001750,0.249994,0,0);-ms-transform:matrix(0.219045,-0.001533,0.001750,0.249994,0,0);-webkit-transform:matrix(0.219045,-0.001533,0.001750,0.249994,0,0);}
.m4_c00417{transform:matrix(0.219510,-0.001537,0.001750,0.249994,0,0);-ms-transform:matrix(0.219510,-0.001537,0.001750,0.249994,0,0);-webkit-transform:matrix(0.219510,-0.001537,0.001750,0.249994,0,0);}
.m2d_c00417{transform:matrix(0.220755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220755,0.000000,0.000000,0.250000,0,0);}
.m35_c00417{transform:matrix(0.220995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220995,0.000000,0.000000,0.250000,0,0);}
.m58_c00417{transform:matrix(0.221205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221205,0.000000,0.000000,0.250000,0,0);}
.me_c00417{transform:matrix(0.222885,-0.001560,0.001750,0.249994,0,0);-ms-transform:matrix(0.222885,-0.001560,0.001750,0.249994,0,0);-webkit-transform:matrix(0.222885,-0.001560,0.001750,0.249994,0,0);}
.m5c_c00417{transform:matrix(0.225490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225490,0.000000,0.000000,0.250000,0,0);}
.m3a_c00417{transform:matrix(0.225655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225655,0.000000,0.000000,0.250000,0,0);}
.m5a_c00417{transform:matrix(0.226025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226025,0.000000,0.000000,0.250000,0,0);}
.mc_c00417{transform:matrix(0.227734,-0.001594,0.001750,0.249994,0,0);-ms-transform:matrix(0.227734,-0.001594,0.001750,0.249994,0,0);-webkit-transform:matrix(0.227734,-0.001594,0.001750,0.249994,0,0);}
.m30_c00417{transform:matrix(0.233690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233690,0.000000,0.000000,0.250000,0,0);}
.m41_c00417{transform:matrix(0.234755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234755,0.000000,0.000000,0.250000,0,0);}
.m5d_c00417{transform:matrix(0.236890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236890,0.000000,0.000000,0.250000,0,0);}
.m65_c00417{transform:matrix(0.237605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237605,0.000000,0.000000,0.250000,0,0);}
.m3d_c00417{transform:matrix(0.237790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237790,0.000000,0.000000,0.250000,0,0);}
.m32_c00417{transform:matrix(0.240975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240975,0.000000,0.000000,0.250000,0,0);}
.m59_c00417{transform:matrix(0.244160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244160,0.000000,0.000000,0.250000,0,0);}
.m1b_c00417{transform:matrix(0.244514,-0.001712,0.001750,0.249994,0,0);-ms-transform:matrix(0.244514,-0.001712,0.001750,0.249994,0,0);-webkit-transform:matrix(0.244514,-0.001712,0.001750,0.249994,0,0);}
.mf_c00417{transform:matrix(0.245844,-0.001721,0.001750,0.249994,0,0);-ms-transform:matrix(0.245844,-0.001721,0.001750,0.249994,0,0);-webkit-transform:matrix(0.245844,-0.001721,0.001750,0.249994,0,0);}
.m5b_c00417{transform:matrix(0.245955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245955,0.000000,0.000000,0.250000,0,0);}
.m17_c00417{transform:matrix(0.246579,-0.001726,0.001750,0.249994,0,0);-ms-transform:matrix(0.246579,-0.001726,0.001750,0.249994,0,0);-webkit-transform:matrix(0.246579,-0.001726,0.001750,0.249994,0,0);}
.m46_c00417{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m50_c00417{transform:matrix(0.250030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250030,0.000000,0.000000,0.250000,0,0);}
.m1c_c00417{transform:matrix(0.251749,-0.001762,0.001750,0.249994,0,0);-ms-transform:matrix(0.251749,-0.001762,0.001750,0.249994,0,0);-webkit-transform:matrix(0.251749,-0.001762,0.001750,0.249994,0,0);}
.m4a_c00417{transform:matrix(0.252005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252005,0.000000,0.000000,0.250000,0,0);}
.m51_c00417{transform:matrix(0.252905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252905,0.000000,0.000000,0.250000,0,0);}
.m57_c00417{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m47_c00417{transform:matrix(0.253735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253735,0.000000,0.000000,0.250000,0,0);}
.m42_c00417{transform:matrix(0.254565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254565,0.000000,0.000000,0.250000,0,0);}
.m3_c00417{transform:matrix(0.257095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257095,0.000000,0.000000,0.250000,0,0);}
.m3c_c00417{transform:matrix(0.257110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257110,0.000000,0.000000,0.250000,0,0);}
.m1a_c00417{transform:matrix(0.257444,-0.001802,0.001750,0.249994,0,0);-ms-transform:matrix(0.257444,-0.001802,0.001750,0.249994,0,0);-webkit-transform:matrix(0.257444,-0.001802,0.001750,0.249994,0,0);}
.m18_c00417{transform:matrix(0.265169,-0.001856,0.001750,0.249994,0,0);-ms-transform:matrix(0.265169,-0.001856,0.001750,0.249994,0,0);-webkit-transform:matrix(0.265169,-0.001856,0.001750,0.249994,0,0);}
.m11_c00417{transform:matrix(0.265838,-0.001861,0.001750,0.249994,0,0);-ms-transform:matrix(0.265838,-0.001861,0.001750,0.249994,0,0);-webkit-transform:matrix(0.265838,-0.001861,0.001750,0.249994,0,0);}
.m55_c00417{transform:matrix(0.267920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267920,0.000000,0.000000,0.250000,0,0);}
.m5f_c00417{transform:matrix(0.268400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268400,0.000000,0.000000,0.250000,0,0);}
.m64_c00417{transform:matrix(0.274655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274655,0.000000,0.000000,0.250000,0,0);}
.m1d_c00417{transform:matrix(0.276828,-0.001938,0.001750,0.249994,0,0);-ms-transform:matrix(0.276828,-0.001938,0.001750,0.249994,0,0);-webkit-transform:matrix(0.276828,-0.001938,0.001750,0.249994,0,0);}
.m44_c00417{transform:matrix(0.276930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276930,0.000000,0.000000,0.250000,0,0);}
.m37_c00417{transform:matrix(0.278885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278885,0.000000,0.000000,0.250000,0,0);}
.m54_c00417{transform:matrix(0.280220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280220,0.000000,0.000000,0.250000,0,0);}
.m27_c00417{transform:matrix(0.284855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284855,0.000000,0.000000,0.250000,0,0);}
.m4e_c00417{transform:matrix(0.288840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288840,0.000000,0.000000,0.250000,0,0);}
.m2c_c00417{transform:matrix(0.290690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290690,0.000000,0.000000,0.250000,0,0);}
.md_c00417{transform:matrix(0.295328,-0.002067,0.001750,0.249994,0,0);-ms-transform:matrix(0.295328,-0.002067,0.001750,0.249994,0,0);-webkit-transform:matrix(0.295328,-0.002067,0.001750,0.249994,0,0);}
.m1e_c00417{transform:matrix(0.299530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299530,0.000000,0.000000,0.250000,0,0);}
.m52_c00417{transform:matrix(0.304075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304075,0.000000,0.000000,0.250000,0,0);}
.m49_c00417{transform:matrix(0.336240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336240,0.000000,0.000000,0.250000,0,0);}
.m5e_c00417{transform:matrix(0.346095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346095,0.000000,0.000000,0.250000,0,0);}
.m67_c00417{transform:matrix(0.366195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366195,0.000000,0.000000,0.250000,0,0);}
.m2b_c00417{transform:matrix(0.379390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379390,0.000000,0.000000,0.250000,0,0);}
.m61_c00417{transform:matrix(0.400745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400745,0.000000,0.000000,0.250000,0,0);}
.m2a_c00417{transform:matrix(0.405620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405620,0.000000,0.000000,0.250000,0,0);}
.m1_c00417{transform:matrix(0.410310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410310,0.000000,0.000000,0.250000,0,0);}
.m53_c00417{transform:matrix(0.437655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437655,0.000000,0.000000,0.250000,0,0);}
.m38_c00417{transform:matrix(0.444060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444060,0.000000,0.000000,0.250000,0,0);}
.m60_c00417{transform:matrix(0.578450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578450,0.000000,0.000000,0.250000,0,0);}
.m45_c00417{transform:matrix(0.655630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.655630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.655630,0.000000,0.000000,0.250000,0,0);}
.m26_c00417{transform:matrix(0.656570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.656570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.656570,0.000000,0.000000,0.250000,0,0);}
.m62_c00417{transform:matrix(0.830400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.830400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.830400,0.000000,0.000000,0.250000,0,0);}
.v0_c00417{vertical-align:0.000000px;}
.ls0_c00417{letter-spacing:0.000000px;}
.sc__c00417{text-shadow:none;}
.sc0_c00417{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__c00417{-webkit-text-stroke:0px transparent;}
.sc0_c00417{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00417{word-spacing:0.000000px;}
.fc0_c00417{color:transparent;}
.fs6_c00417{font-size:12.000000px;}
.fs0_c00417{font-size:72.000000px;}
.fs5_c00417{font-size:78.000000px;}
.fs4_c00417{font-size:90.000000px;}
.fs2_c00417{font-size:90.002205px;}
.fs3_c00417{font-size:102.000000px;}
.fs1_c00417{font-size:102.002499px;}
.y0_c00417{bottom:0.000000px;}
.y3a_c00417{bottom:877.428000px;}
.y3b_c00417{bottom:877.746000px;}
.y3c_c00417{bottom:879.550500px;}
.y3d_c00417{bottom:880.540500px;}
.y3e_c00417{bottom:880.821000px;}
.y3f_c00417{bottom:881.176500px;}
.y40_c00417{bottom:882.042000px;}
.y41_c00417{bottom:891.540000px;}
.y2d_c00417{bottom:915.238500px;}
.y2e_c00417{bottom:915.474000px;}
.y2f_c00417{bottom:915.937500px;}
.y30_c00417{bottom:916.111500px;}
.y31_c00417{bottom:916.279500px;}
.y32_c00417{bottom:916.467000px;}
.y33_c00417{bottom:916.848000px;}
.y34_c00417{bottom:917.386500px;}
.y35_c00417{bottom:917.769000px;}
.y36_c00417{bottom:918.043500px;}
.y37_c00417{bottom:918.384000px;}
.y38_c00417{bottom:918.543000px;}
.y39_c00417{bottom:918.661500px;}
.y1f_c00417{bottom:951.727500px;}
.y20_c00417{bottom:951.982500px;}
.y21_c00417{bottom:952.269000px;}
.y22_c00417{bottom:952.707000px;}
.y23_c00417{bottom:952.858500px;}
.y24_c00417{bottom:953.278500px;}
.y25_c00417{bottom:953.433000px;}
.y26_c00417{bottom:953.596500px;}
.y27_c00417{bottom:953.764500px;}
.y28_c00417{bottom:953.812500px;}
.y29_c00417{bottom:954.319500px;}
.y2a_c00417{bottom:954.484500px;}
.y2b_c00417{bottom:954.666000px;}
.y2c_c00417{bottom:954.963000px;}
.y1e_c00417{bottom:989.884500px;}
.y1d_c00417{bottom:1024.419000px;}
.y1c_c00417{bottom:1059.103500px;}
.yf_c00417{bottom:1095.388314px;}
.y10_c00417{bottom:1095.791350px;}
.y11_c00417{bottom:1095.966244px;}
.y12_c00417{bottom:1096.354627px;}
.y13_c00417{bottom:1096.523336px;}
.y14_c00417{bottom:1096.683724px;}
.y15_c00417{bottom:1097.017201px;}
.y16_c00417{bottom:1097.550573px;}
.y17_c00417{bottom:1097.806004px;}
.y18_c00417{bottom:1098.111538px;}
.y19_c00417{bottom:1098.282220px;}
.y1a_c00417{bottom:1098.611443px;}
.y1b_c00417{bottom:1098.788976px;}
.y2_c00417{bottom:1122.391500px;}
.y3_c00417{bottom:1122.559679px;}
.y4_c00417{bottom:1122.954667px;}
.y5_c00417{bottom:1123.181394px;}
.y6_c00417{bottom:1123.578430px;}
.y7_c00417{bottom:1123.805251px;}
.y8_c00417{bottom:1123.964379px;}
.y9_c00417{bottom:1124.425581px;}
.ya_c00417{bottom:1124.958288px;}
.yb_c00417{bottom:1125.444154px;}
.yc_c00417{bottom:1125.947209px;}
.yd_c00417{bottom:1126.748276px;}
.ye_c00417{bottom:1126.968975px;}
.y1_c00417{bottom:1190.910000px;}
.h8_c00417{height:12.000000px;}
.h2_c00417{height:72.000000px;}
.h7_c00417{height:78.000000px;}
.h6_c00417{height:90.000000px;}
.h4_c00417{height:90.002205px;}
.h5_c00417{height:102.000000px;}
.h3_c00417{height:102.002499px;}
.h1_c00417{height:1251.000000px;}
.h0_c00417{height:1251.150000px;}
.w0_c00417{width:915.000000px;}
.x0_c00417{left:0.000000px;}
.x4b_c00417{left:38.721000px;}
.x12_c00417{left:41.393778px;}
.x34_c00417{left:51.300000px;}
.x54_c00417{left:54.654000px;}
.x1c_c00417{left:57.240000px;}
.x3f_c00417{left:61.132500px;}
.x28_c00417{left:66.420000px;}
.x5a_c00417{left:73.710000px;}
.x5_c00417{left:76.804500px;}
.x4c_c00417{left:85.969500px;}
.x6_c00417{left:100.830000px;}
.x55_c00417{left:107.556000px;}
.x40_c00417{left:112.131000px;}
.x13_c00417{left:122.114412px;}
.x1d_c00417{left:124.470000px;}
.x29_c00417{left:146.340000px;}
.x7_c00417{left:157.257000px;}
.x1e_c00417{left:168.210000px;}
.x41_c00417{left:169.374000px;}
.x4d_c00417{left:178.602000px;}
.x8_c00417{left:189.646500px;}
.x2a_c00417{left:203.040000px;}
.x4e_c00417{left:213.387000px;}
.x14_c00417{left:234.726987px;}
.x9_c00417{left:246.366000px;}
.x42_c00417{left:257.109000px;}
.x35_c00417{left:265.410000px;}
.x15_c00417{left:268.471460px;}
.xa_c00417{left:278.769000px;}
.x4f_c00417{left:284.445000px;}
.x43_c00417{left:287.359500px;}
.xb_c00417{left:301.501500px;}
.x2b_c00417{left:309.690000px;}
.x1f_c00417{left:323.190000px;}
.x2c_c00417{left:334.530000px;}
.x20_c00417{left:348.300000px;}
.x36_c00417{left:357.750000px;}
.x50_c00417{left:360.558000px;}
.xc_c00417{left:367.387500px;}
.x44_c00417{left:371.343000px;}
.x45_c00417{left:402.372000px;}
.x2d_c00417{left:403.380000px;}
.x56_c00417{left:408.318000px;}
.x1_c00417{left:410.400000px;}
.x37_c00417{left:411.750000px;}
.x21_c00417{left:423.360000px;}
.x2_c00417{left:433.620000px;}
.x46_c00417{left:435.039000px;}
.xd_c00417{left:443.488500px;}
.x22_c00417{left:456.300000px;}
.x38_c00417{left:467.910000px;}
.x16_c00417{left:473.936837px;}
.x23_c00417{left:477.630000px;}
.x2e_c00417{left:481.410000px;}
.x39_c00417{left:499.500000px;}
.xe_c00417{left:512.898000px;}
.x17_c00417{left:524.999051px;}
.x3a_c00417{left:544.050000px;}
.x2f_c00417{left:545.130000px;}
.x24_c00417{left:555.120000px;}
.x57_c00417{left:573.255000px;}
.x30_c00417{left:576.450000px;}
.x3b_c00417{left:578.610000px;}
.x47_c00417{left:579.753000px;}
.xf_c00417{left:584.763000px;}
.x18_c00417{left:586.004901px;}
.x25_c00417{left:588.330000px;}
.x51_c00417{left:599.761500px;}
.x48_c00417{left:612.729000px;}
.x19_c00417{left:620.031373px;}
.x3_c00417{left:634.770000px;}
.x31_c00417{left:642.330000px;}
.x49_c00417{left:648.931500px;}
.x3c_c00417{left:655.830000px;}
.x52_c00417{left:667.812000px;}
.x4_c00417{left:673.650000px;}
.x58_c00417{left:679.203000px;}
.x1a_c00417{left:685.921298px;}
.x32_c00417{left:688.500000px;}
.x3d_c00417{left:690.120000px;}
.x10_c00417{left:699.201000px;}
.x4a_c00417{left:708.337500px;}
.x26_c00417{left:714.150000px;}
.x33_c00417{left:719.010000px;}
.x3e_c00417{left:720.090000px;}
.x1b_c00417{left:721.569301px;}
.x53_c00417{left:723.453000px;}
.x11_c00417{left:730.729500px;}
.x27_c00417{left:771.930000px;}
.x59_c00417{left:823.570500px;}
@media print{
.v0_c00417{vertical-align:0.000000pt;}
.ls0_c00417{letter-spacing:0.000000pt;}
.ws0_c00417{word-spacing:0.000000pt;}
.fs6_c00417{font-size:10.666667pt;}
.fs0_c00417{font-size:64.000000pt;}
.fs5_c00417{font-size:69.333333pt;}
.fs4_c00417{font-size:80.000000pt;}
.fs2_c00417{font-size:80.001960pt;}
.fs3_c00417{font-size:90.666667pt;}
.fs1_c00417{font-size:90.668888pt;}
.y0_c00417{bottom:0.000000pt;}
.y3a_c00417{bottom:779.936000pt;}
.y3b_c00417{bottom:780.218667pt;}
.y3c_c00417{bottom:781.822667pt;}
.y3d_c00417{bottom:782.702667pt;}
.y3e_c00417{bottom:782.952000pt;}
.y3f_c00417{bottom:783.268000pt;}
.y40_c00417{bottom:784.037333pt;}
.y41_c00417{bottom:792.480000pt;}
.y2d_c00417{bottom:813.545333pt;}
.y2e_c00417{bottom:813.754667pt;}
.y2f_c00417{bottom:814.166667pt;}
.y30_c00417{bottom:814.321333pt;}
.y31_c00417{bottom:814.470667pt;}
.y32_c00417{bottom:814.637333pt;}
.y33_c00417{bottom:814.976000pt;}
.y34_c00417{bottom:815.454667pt;}
.y35_c00417{bottom:815.794667pt;}
.y36_c00417{bottom:816.038667pt;}
.y37_c00417{bottom:816.341333pt;}
.y38_c00417{bottom:816.482667pt;}
.y39_c00417{bottom:816.588000pt;}
.y1f_c00417{bottom:845.980000pt;}
.y20_c00417{bottom:846.206667pt;}
.y21_c00417{bottom:846.461333pt;}
.y22_c00417{bottom:846.850667pt;}
.y23_c00417{bottom:846.985333pt;}
.y24_c00417{bottom:847.358667pt;}
.y25_c00417{bottom:847.496000pt;}
.y26_c00417{bottom:847.641333pt;}
.y27_c00417{bottom:847.790667pt;}
.y28_c00417{bottom:847.833333pt;}
.y29_c00417{bottom:848.284000pt;}
.y2a_c00417{bottom:848.430667pt;}
.y2b_c00417{bottom:848.592000pt;}
.y2c_c00417{bottom:848.856000pt;}
.y1e_c00417{bottom:879.897333pt;}
.y1d_c00417{bottom:910.594667pt;}
.y1c_c00417{bottom:941.425333pt;}
.yf_c00417{bottom:973.678501pt;}
.y10_c00417{bottom:974.036756pt;}
.y11_c00417{bottom:974.192217pt;}
.y12_c00417{bottom:974.537447pt;}
.y13_c00417{bottom:974.687409pt;}
.y14_c00417{bottom:974.829977pt;}
.y15_c00417{bottom:975.126401pt;}
.y16_c00417{bottom:975.600509pt;}
.y17_c00417{bottom:975.827559pt;}
.y18_c00417{bottom:976.099145pt;}
.y19_c00417{bottom:976.250863pt;}
.y1a_c00417{bottom:976.543505pt;}
.y1b_c00417{bottom:976.701312pt;}
.y2_c00417{bottom:997.681333pt;}
.y3_c00417{bottom:997.830825pt;}
.y4_c00417{bottom:998.181927pt;}
.y5_c00417{bottom:998.383461pt;}
.y6_c00417{bottom:998.736383pt;}
.y7_c00417{bottom:998.938001pt;}
.y8_c00417{bottom:999.079448pt;}
.y9_c00417{bottom:999.489405pt;}
.ya_c00417{bottom:999.962923pt;}
.yb_c00417{bottom:1000.394804pt;}
.yc_c00417{bottom:1000.841964pt;}
.yd_c00417{bottom:1001.554023pt;}
.ye_c00417{bottom:1001.750200pt;}
.y1_c00417{bottom:1058.586667pt;}
.h8_c00417{height:10.666667pt;}
.h2_c00417{height:64.000000pt;}
.h7_c00417{height:69.333333pt;}
.h6_c00417{height:80.000000pt;}
.h4_c00417{height:80.001960pt;}
.h5_c00417{height:90.666667pt;}
.h3_c00417{height:90.668888pt;}
.h1_c00417{height:1112.000000pt;}
.h0_c00417{height:1112.133333pt;}
.w0_c00417{width:813.333333pt;}
.x0_c00417{left:0.000000pt;}
.x4b_c00417{left:34.418667pt;}
.x12_c00417{left:36.794469pt;}
.x34_c00417{left:45.600000pt;}
.x54_c00417{left:48.581333pt;}
.x1c_c00417{left:50.880000pt;}
.x3f_c00417{left:54.340000pt;}
.x28_c00417{left:59.040000pt;}
.x5a_c00417{left:65.520000pt;}
.x5_c00417{left:68.270667pt;}
.x4c_c00417{left:76.417333pt;}
.x6_c00417{left:89.626667pt;}
.x55_c00417{left:95.605333pt;}
.x40_c00417{left:99.672000pt;}
.x13_c00417{left:108.546144pt;}
.x1d_c00417{left:110.640000pt;}
.x29_c00417{left:130.080000pt;}
.x7_c00417{left:139.784000pt;}
.x1e_c00417{left:149.520000pt;}
.x41_c00417{left:150.554667pt;}
.x4d_c00417{left:158.757333pt;}
.x8_c00417{left:168.574667pt;}
.x2a_c00417{left:180.480000pt;}
.x4e_c00417{left:189.677333pt;}
.x14_c00417{left:208.646211pt;}
.x9_c00417{left:218.992000pt;}
.x42_c00417{left:228.541333pt;}
.x35_c00417{left:235.920000pt;}
.x15_c00417{left:238.641297pt;}
.xa_c00417{left:247.794667pt;}
.x4f_c00417{left:252.840000pt;}
.x43_c00417{left:255.430667pt;}
.xb_c00417{left:268.001333pt;}
.x2b_c00417{left:275.280000pt;}
.x1f_c00417{left:287.280000pt;}
.x2c_c00417{left:297.360000pt;}
.x20_c00417{left:309.600000pt;}
.x36_c00417{left:318.000000pt;}
.x50_c00417{left:320.496000pt;}
.xc_c00417{left:326.566667pt;}
.x44_c00417{left:330.082667pt;}
.x45_c00417{left:357.664000pt;}
.x2d_c00417{left:358.560000pt;}
.x56_c00417{left:362.949333pt;}
.x1_c00417{left:364.800000pt;}
.x37_c00417{left:366.000000pt;}
.x21_c00417{left:376.320000pt;}
.x2_c00417{left:385.440000pt;}
.x46_c00417{left:386.701333pt;}
.xd_c00417{left:394.212000pt;}
.x22_c00417{left:405.600000pt;}
.x38_c00417{left:415.920000pt;}
.x16_c00417{left:421.277188pt;}
.x23_c00417{left:424.560000pt;}
.x2e_c00417{left:427.920000pt;}
.x39_c00417{left:444.000000pt;}
.xe_c00417{left:455.909333pt;}
.x17_c00417{left:466.665823pt;}
.x3a_c00417{left:483.600000pt;}
.x2f_c00417{left:484.560000pt;}
.x24_c00417{left:493.440000pt;}
.x57_c00417{left:509.560000pt;}
.x30_c00417{left:512.400000pt;}
.x3b_c00417{left:514.320000pt;}
.x47_c00417{left:515.336000pt;}
.xf_c00417{left:519.789333pt;}
.x18_c00417{left:520.893245pt;}
.x25_c00417{left:522.960000pt;}
.x51_c00417{left:533.121333pt;}
.x48_c00417{left:544.648000pt;}
.x19_c00417{left:551.138999pt;}
.x3_c00417{left:564.240000pt;}
.x31_c00417{left:570.960000pt;}
.x49_c00417{left:576.828000pt;}
.x3c_c00417{left:582.960000pt;}
.x52_c00417{left:593.610667pt;}
.x4_c00417{left:598.800000pt;}
.x58_c00417{left:603.736000pt;}
.x1a_c00417{left:609.707820pt;}
.x32_c00417{left:612.000000pt;}
.x3d_c00417{left:613.440000pt;}
.x10_c00417{left:621.512000pt;}
.x4a_c00417{left:629.633333pt;}
.x26_c00417{left:634.800000pt;}
.x33_c00417{left:639.120000pt;}
.x3e_c00417{left:640.080000pt;}
.x1b_c00417{left:641.394935pt;}
.x53_c00417{left:643.069333pt;}
.x11_c00417{left:649.537333pt;}
.x27_c00417{left:686.160000pt;}
.x59_c00417{left:732.062667pt;}
}





/* 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_c00418 {
    display:none;
  }
  .loading-indicator_c00418.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00418 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_c00418 { 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_c00418" -> "#page-container .classname_c00418")
 */
.pf_c00418 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00418 { /* 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_c00418.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00418 { /* 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_c00418 { /* 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_c00418 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00418 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00418 {overflow:visible;}
  }
}
.c_c00418 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00418 { /* 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_c00418:after { /* webkit #35443 */
  content: '';
}
.t_c00418:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00418 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 */
}
.__c00418 { /* 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_c00418 { /* info for Javascript */
  display:none;
}
.l_c00418 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00418 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00418 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00418: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_c00418 {
    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_c00418.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00418.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_c00418 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00418{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00418;src:url('chunks/assets/font_fabf4b590f7fb32aea93ffb2.woff2')format("woff");}.ff1_c00418{font-family:ff1_c00418;line-height:1.000000;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;}
.m13d_c00418{transform:matrix(0.023863,0.000310,-0.003250,0.249979,0,0);-ms-transform:matrix(0.023863,0.000310,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.023863,0.000310,-0.003250,0.249979,0,0);}
.m110_c00418{transform:matrix(0.161061,0.001127,-0.001750,0.249994,0,0);-ms-transform:matrix(0.161061,0.001127,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.161061,0.001127,-0.001750,0.249994,0,0);}
.m142_c00418{transform:matrix(0.164026,0.002132,-0.003250,0.249979,0,0);-ms-transform:matrix(0.164026,0.002132,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.164026,0.002132,-0.003250,0.249979,0,0);}
.m141_c00418{transform:matrix(0.165746,0.002155,-0.003250,0.249979,0,0);-ms-transform:matrix(0.165746,0.002155,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.165746,0.002155,-0.003250,0.249979,0,0);}
.m74_c00418{transform:matrix(0.167295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167295,0.000000,0.000000,0.250000,0,0);}
.m133_c00418{transform:matrix(0.167826,0.002182,-0.003250,0.249979,0,0);-ms-transform:matrix(0.167826,0.002182,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.167826,0.002182,-0.003250,0.249979,0,0);}
.m135_c00418{transform:matrix(0.169946,0.002209,-0.003250,0.249979,0,0);-ms-transform:matrix(0.169946,0.002209,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.169946,0.002209,-0.003250,0.249979,0,0);}
.mbc_c00418{transform:matrix(0.171840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171840,0.000000,0.000000,0.250000,0,0);}
.m111_c00418{transform:matrix(0.172326,0.001206,-0.001750,0.249994,0,0);-ms-transform:matrix(0.172326,0.001206,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.172326,0.001206,-0.001750,0.249994,0,0);}
.m117_c00418{transform:matrix(0.173506,0.001215,-0.001750,0.249994,0,0);-ms-transform:matrix(0.173506,0.001215,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.173506,0.001215,-0.001750,0.249994,0,0);}
.m145_c00418{transform:matrix(0.174475,0.002268,-0.003250,0.249979,0,0);-ms-transform:matrix(0.174475,0.002268,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.174475,0.002268,-0.003250,0.249979,0,0);}
.m116_c00418{transform:matrix(0.175271,0.001227,-0.001750,0.249994,0,0);-ms-transform:matrix(0.175271,0.001227,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.175271,0.001227,-0.001750,0.249994,0,0);}
.m140_c00418{transform:matrix(0.176210,0.002291,-0.003250,0.249979,0,0);-ms-transform:matrix(0.176210,0.002291,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.176210,0.002291,-0.003250,0.249979,0,0);}
.m144_c00418{transform:matrix(0.176355,0.002293,-0.003250,0.249979,0,0);-ms-transform:matrix(0.176355,0.002293,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.176355,0.002293,-0.003250,0.249979,0,0);}
.m27_c00418{transform:matrix(0.177089,-0.001948,0.002750,0.249985,0,0);-ms-transform:matrix(0.177089,-0.001948,0.002750,0.249985,0,0);-webkit-transform:matrix(0.177089,-0.001948,0.002750,0.249985,0,0);}
.m61_c00418{transform:matrix(0.178375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178375,0.000000,0.000000,0.250000,0,0);}
.m32_c00418{transform:matrix(0.178929,-0.001968,0.002750,0.249985,0,0);-ms-transform:matrix(0.178929,-0.001968,0.002750,0.249985,0,0);-webkit-transform:matrix(0.178929,-0.001968,0.002750,0.249985,0,0);}
.m119_c00418{transform:matrix(0.179466,0.001256,-0.001750,0.249994,0,0);-ms-transform:matrix(0.179466,0.001256,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.179466,0.001256,-0.001750,0.249994,0,0);}
.m8b_c00418{transform:matrix(0.179745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179745,0.000000,0.000000,0.250000,0,0);}
.m132_c00418{transform:matrix(0.180130,0.002342,-0.003250,0.249979,0,0);-ms-transform:matrix(0.180130,0.002342,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.180130,0.002342,-0.003250,0.249979,0,0);}
.mcf_c00418{transform:matrix(0.180276,0.001262,-0.001750,0.249994,0,0);-ms-transform:matrix(0.180276,0.001262,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.180276,0.001262,-0.001750,0.249994,0,0);}
.md2_c00418{transform:matrix(0.181391,0.001270,-0.001750,0.249994,0,0);-ms-transform:matrix(0.181391,0.001270,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.181391,0.001270,-0.001750,0.249994,0,0);}
.m8d_c00418{transform:matrix(0.181570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181570,0.000000,0.000000,0.250000,0,0);}
.m30_c00418{transform:matrix(0.181899,-0.002001,0.002750,0.249985,0,0);-ms-transform:matrix(0.181899,-0.002001,0.002750,0.249985,0,0);-webkit-transform:matrix(0.181899,-0.002001,0.002750,0.249985,0,0);}
.m8f_c00418{transform:matrix(0.181945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181945,0.000000,0.000000,0.250000,0,0);}
.me4_c00418{transform:matrix(0.182051,0.001274,-0.001750,0.249994,0,0);-ms-transform:matrix(0.182051,0.001274,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.182051,0.001274,-0.001750,0.249994,0,0);}
.m13e_c00418{transform:matrix(0.182170,0.002368,-0.003250,0.249979,0,0);-ms-transform:matrix(0.182170,0.002368,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.182170,0.002368,-0.003250,0.249979,0,0);}
.m70_c00418{transform:matrix(0.183050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183050,0.000000,0.000000,0.250000,0,0);}
.m13a_c00418{transform:matrix(0.183529,0.002386,-0.003250,0.249979,0,0);-ms-transform:matrix(0.183529,0.002386,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.183529,0.002386,-0.003250,0.249979,0,0);}
.m86_c00418{transform:matrix(0.183620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183620,0.000000,0.000000,0.250000,0,0);}
.m138_c00418{transform:matrix(0.184024,0.002392,-0.003250,0.249979,0,0);-ms-transform:matrix(0.184024,0.002392,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.184024,0.002392,-0.003250,0.249979,0,0);}
.m136_c00418{transform:matrix(0.184114,0.002393,-0.003250,0.249979,0,0);-ms-transform:matrix(0.184114,0.002393,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.184114,0.002393,-0.003250,0.249979,0,0);}
.m92_c00418{transform:matrix(0.184175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184175,0.000000,0.000000,0.250000,0,0);}
.mb9_c00418{transform:matrix(0.185150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185150,0.000000,0.000000,0.250000,0,0);}
.m123_c00418{transform:matrix(0.185305,0.001297,-0.001750,0.249994,0,0);-ms-transform:matrix(0.185305,0.001297,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.185305,0.001297,-0.001750,0.249994,0,0);}
.mb7_c00418{transform:matrix(0.185830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185830,0.000000,0.000000,0.250000,0,0);}
.m24_c00418{transform:matrix(0.186339,-0.002050,0.002750,0.249985,0,0);-ms-transform:matrix(0.186339,-0.002050,0.002750,0.249985,0,0);-webkit-transform:matrix(0.186339,-0.002050,0.002750,0.249985,0,0);}
.m143_c00418{transform:matrix(0.187514,0.002438,-0.003250,0.249979,0,0);-ms-transform:matrix(0.187514,0.002438,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.187514,0.002438,-0.003250,0.249979,0,0);}
.m6b_c00418{transform:matrix(0.188045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188045,0.000000,0.000000,0.250000,0,0);}
.m114_c00418{transform:matrix(0.188645,0.001321,-0.001750,0.249994,0,0);-ms-transform:matrix(0.188645,0.001321,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.188645,0.001321,-0.001750,0.249994,0,0);}
.m76_c00418{transform:matrix(0.188680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188680,0.000000,0.000000,0.250000,0,0);}
.m29_c00418{transform:matrix(0.188734,-0.002076,0.002750,0.249985,0,0);-ms-transform:matrix(0.188734,-0.002076,0.002750,0.249985,0,0);-webkit-transform:matrix(0.188734,-0.002076,0.002750,0.249985,0,0);}
.m11c_c00418{transform:matrix(0.188740,0.001321,-0.001750,0.249994,0,0);-ms-transform:matrix(0.188740,0.001321,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.188740,0.001321,-0.001750,0.249994,0,0);}
.m33_c00418{transform:matrix(0.189144,-0.002081,0.002750,0.249985,0,0);-ms-transform:matrix(0.189144,-0.002081,0.002750,0.249985,0,0);-webkit-transform:matrix(0.189144,-0.002081,0.002750,0.249985,0,0);}
.mcd_c00418{transform:matrix(0.190260,0.001332,-0.001750,0.249994,0,0);-ms-transform:matrix(0.190260,0.001332,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.190260,0.001332,-0.001750,0.249994,0,0);}
.m2e_c00418{transform:matrix(0.190368,-0.002094,0.002750,0.249985,0,0);-ms-transform:matrix(0.190368,-0.002094,0.002750,0.249985,0,0);-webkit-transform:matrix(0.190368,-0.002094,0.002750,0.249985,0,0);}
.m91_c00418{transform:matrix(0.190380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190380,0.000000,0.000000,0.250000,0,0);}
.m115_c00418{transform:matrix(0.190465,0.001333,-0.001750,0.249994,0,0);-ms-transform:matrix(0.190465,0.001333,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.190465,0.001333,-0.001750,0.249994,0,0);}
.m139_c00418{transform:matrix(0.190794,0.002480,-0.003250,0.249979,0,0);-ms-transform:matrix(0.190794,0.002480,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.190794,0.002480,-0.003250,0.249979,0,0);}
.m72_c00418{transform:matrix(0.190855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190855,0.000000,0.000000,0.250000,0,0);}
.m36_c00418{transform:matrix(0.191423,-0.002106,0.002750,0.249985,0,0);-ms-transform:matrix(0.191423,-0.002106,0.002750,0.249985,0,0);-webkit-transform:matrix(0.191423,-0.002106,0.002750,0.249985,0,0);}
.md0_c00418{transform:matrix(0.191920,0.001343,-0.001750,0.249994,0,0);-ms-transform:matrix(0.191920,0.001343,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.191920,0.001343,-0.001750,0.249994,0,0);}
.m1e_c00418{transform:matrix(0.191963,-0.002112,0.002750,0.249985,0,0);-ms-transform:matrix(0.191963,-0.002112,0.002750,0.249985,0,0);-webkit-transform:matrix(0.191963,-0.002112,0.002750,0.249985,0,0);}
.m112_c00418{transform:matrix(0.192280,0.001346,-0.001750,0.249994,0,0);-ms-transform:matrix(0.192280,0.001346,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.192280,0.001346,-0.001750,0.249994,0,0);}
.m2c_c00418{transform:matrix(0.192463,-0.002117,0.002750,0.249985,0,0);-ms-transform:matrix(0.192463,-0.002117,0.002750,0.249985,0,0);-webkit-transform:matrix(0.192463,-0.002117,0.002750,0.249985,0,0);}
.m12e_c00418{transform:matrix(0.192580,0.001348,-0.001750,0.249994,0,0);-ms-transform:matrix(0.192580,0.001348,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.192580,0.001348,-0.001750,0.249994,0,0);}
.m83_c00418{transform:matrix(0.192825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192825,0.000000,0.000000,0.250000,0,0);}
.md5_c00418{transform:matrix(0.193035,0.001351,-0.001750,0.249994,0,0);-ms-transform:matrix(0.193035,0.001351,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.193035,0.001351,-0.001750,0.249994,0,0);}
.mbb_c00418{transform:matrix(0.193425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193425,0.000000,0.000000,0.250000,0,0);}
.m2a_c00418{transform:matrix(0.193588,-0.002129,0.002750,0.249985,0,0);-ms-transform:matrix(0.193588,-0.002129,0.002750,0.249985,0,0);-webkit-transform:matrix(0.193588,-0.002129,0.002750,0.249985,0,0);}
.m131_c00418{transform:matrix(0.193709,0.002518,-0.003250,0.249979,0,0);-ms-transform:matrix(0.193709,0.002518,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.193709,0.002518,-0.003250,0.249979,0,0);}
.m113_c00418{transform:matrix(0.193840,0.001357,-0.001750,0.249994,0,0);-ms-transform:matrix(0.193840,0.001357,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.193840,0.001357,-0.001750,0.249994,0,0);}
.m69_c00418{transform:matrix(0.193865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193865,0.000000,0.000000,0.250000,0,0);}
.m6d_c00418{transform:matrix(0.194200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194200,0.000000,0.000000,0.250000,0,0);}
.m94_c00418{transform:matrix(0.194835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194835,0.000000,0.000000,0.250000,0,0);}
.m3b_c00418{transform:matrix(0.194928,-0.002144,0.002750,0.249985,0,0);-ms-transform:matrix(0.194928,-0.002144,0.002750,0.249985,0,0);-webkit-transform:matrix(0.194928,-0.002144,0.002750,0.249985,0,0);}
.m3a_c00418{transform:matrix(0.194973,-0.002145,0.002750,0.249985,0,0);-ms-transform:matrix(0.194973,-0.002145,0.002750,0.249985,0,0);-webkit-transform:matrix(0.194973,-0.002145,0.002750,0.249985,0,0);}
.m11a_c00418{transform:matrix(0.195215,0.001367,-0.001750,0.249994,0,0);-ms-transform:matrix(0.195215,0.001367,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.195215,0.001367,-0.001750,0.249994,0,0);}
.mcc_c00418{transform:matrix(0.195400,0.001368,-0.001750,0.249994,0,0);-ms-transform:matrix(0.195400,0.001368,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.195400,0.001368,-0.001750,0.249994,0,0);}
.m39_c00418{transform:matrix(0.195568,-0.002151,0.002750,0.249985,0,0);-ms-transform:matrix(0.195568,-0.002151,0.002750,0.249985,0,0);-webkit-transform:matrix(0.195568,-0.002151,0.002750,0.249985,0,0);}
.m6e_c00418{transform:matrix(0.196365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196365,0.000000,0.000000,0.250000,0,0);}
.m38_c00418{transform:matrix(0.196373,-0.002160,0.002750,0.249985,0,0);-ms-transform:matrix(0.196373,-0.002160,0.002750,0.249985,0,0);-webkit-transform:matrix(0.196373,-0.002160,0.002750,0.249985,0,0);}
.md4_c00418{transform:matrix(0.196640,0.001376,-0.001750,0.249994,0,0);-ms-transform:matrix(0.196640,0.001376,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.196640,0.001376,-0.001750,0.249994,0,0);}
.m11e_c00418{transform:matrix(0.197320,0.001381,-0.001750,0.249994,0,0);-ms-transform:matrix(0.197320,0.001381,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.197320,0.001381,-0.001750,0.249994,0,0);}
.m118_c00418{transform:matrix(0.197380,0.001382,-0.001750,0.249994,0,0);-ms-transform:matrix(0.197380,0.001382,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.197380,0.001382,-0.001750,0.249994,0,0);}
.m126_c00418{transform:matrix(0.197415,0.001382,-0.001750,0.249994,0,0);-ms-transform:matrix(0.197415,0.001382,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.197415,0.001382,-0.001750,0.249994,0,0);}
.m68_c00418{transform:matrix(0.197550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197550,0.000000,0.000000,0.250000,0,0);}
.m6c_c00418{transform:matrix(0.197710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197710,0.000000,0.000000,0.250000,0,0);}
.m137_c00418{transform:matrix(0.198423,0.002580,-0.003250,0.249979,0,0);-ms-transform:matrix(0.198423,0.002580,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.198423,0.002580,-0.003250,0.249979,0,0);}
.m11f_c00418{transform:matrix(0.198595,0.001390,-0.001750,0.249994,0,0);-ms-transform:matrix(0.198595,0.001390,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.198595,0.001390,-0.001750,0.249994,0,0);}
.m134_c00418{transform:matrix(0.198763,0.002584,-0.003250,0.249979,0,0);-ms-transform:matrix(0.198763,0.002584,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.198763,0.002584,-0.003250,0.249979,0,0);}
.me8_c00418{transform:matrix(0.199095,0.001394,-0.001750,0.249994,0,0);-ms-transform:matrix(0.199095,0.001394,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.199095,0.001394,-0.001750,0.249994,0,0);}
.m13f_c00418{transform:matrix(0.199293,0.002591,-0.003250,0.249979,0,0);-ms-transform:matrix(0.199293,0.002591,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.199293,0.002591,-0.003250,0.249979,0,0);}
.m99_c00418{transform:matrix(0.199365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199365,0.000000,0.000000,0.250000,0,0);}
.m96_c00418{transform:matrix(0.199410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199410,0.000000,0.000000,0.250000,0,0);}
.m3e_c00418{transform:matrix(0.199688,-0.002197,0.002750,0.249985,0,0);-ms-transform:matrix(0.199688,-0.002197,0.002750,0.249985,0,0);-webkit-transform:matrix(0.199688,-0.002197,0.002750,0.249985,0,0);}
.m8a_c00418{transform:matrix(0.200190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200190,0.000000,0.000000,0.250000,0,0);}
.m9c_c00418{transform:matrix(0.200295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200295,0.000000,0.000000,0.250000,0,0);}
.m12a_c00418{transform:matrix(0.200875,0.001406,-0.001750,0.249994,0,0);-ms-transform:matrix(0.200875,0.001406,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.200875,0.001406,-0.001750,0.249994,0,0);}
.m47_c00418{transform:matrix(0.201298,-0.002214,0.002750,0.249985,0,0);-ms-transform:matrix(0.201298,-0.002214,0.002750,0.249985,0,0);-webkit-transform:matrix(0.201298,-0.002214,0.002750,0.249985,0,0);}
.m42_c00418{transform:matrix(0.201753,-0.002219,0.002750,0.249985,0,0);-ms-transform:matrix(0.201753,-0.002219,0.002750,0.249985,0,0);-webkit-transform:matrix(0.201753,-0.002219,0.002750,0.249985,0,0);}
.m90_c00418{transform:matrix(0.201895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201895,0.000000,0.000000,0.250000,0,0);}
.m66_c00418{transform:matrix(0.201990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201990,0.000000,0.000000,0.250000,0,0);}
.m22_c00418{transform:matrix(0.202143,-0.002224,0.002750,0.249985,0,0);-ms-transform:matrix(0.202143,-0.002224,0.002750,0.249985,0,0);-webkit-transform:matrix(0.202143,-0.002224,0.002750,0.249985,0,0);}
.mda_c00418{transform:matrix(0.202890,0.001420,-0.001750,0.249994,0,0);-ms-transform:matrix(0.202890,0.001420,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.202890,0.001420,-0.001750,0.249994,0,0);}
.m64_c00418{transform:matrix(0.203010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203010,0.000000,0.000000,0.250000,0,0);}
.mfa_c00418{transform:matrix(0.203610,0.001425,-0.001750,0.249994,0,0);-ms-transform:matrix(0.203610,0.001425,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.203610,0.001425,-0.001750,0.249994,0,0);}
.m109_c00418{transform:matrix(0.204150,0.001429,-0.001750,0.249994,0,0);-ms-transform:matrix(0.204150,0.001429,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.204150,0.001429,-0.001750,0.249994,0,0);}
.mb3_c00418{transform:matrix(0.204215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204215,0.000000,0.000000,0.250000,0,0);}
.m93_c00418{transform:matrix(0.204285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204285,0.000000,0.000000,0.250000,0,0);}
.mb2_c00418{transform:matrix(0.204405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204405,0.000000,0.000000,0.250000,0,0);}
.m67_c00418{transform:matrix(0.204540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204540,0.000000,0.000000,0.250000,0,0);}
.m25_c00418{transform:matrix(0.204738,-0.002252,0.002750,0.249985,0,0);-ms-transform:matrix(0.204738,-0.002252,0.002750,0.249985,0,0);-webkit-transform:matrix(0.204738,-0.002252,0.002750,0.249985,0,0);}
.m122_c00418{transform:matrix(0.204910,0.001434,-0.001750,0.249994,0,0);-ms-transform:matrix(0.204910,0.001434,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.204910,0.001434,-0.001750,0.249994,0,0);}
.m45_c00418{transform:matrix(0.205098,-0.002256,0.002750,0.249985,0,0);-ms-transform:matrix(0.205098,-0.002256,0.002750,0.249985,0,0);-webkit-transform:matrix(0.205098,-0.002256,0.002750,0.249985,0,0);}
.mb0_c00418{transform:matrix(0.205310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205310,0.000000,0.000000,0.250000,0,0);}
.m3f_c00418{transform:matrix(0.205333,-0.002259,0.002750,0.249985,0,0);-ms-transform:matrix(0.205333,-0.002259,0.002750,0.249985,0,0);-webkit-transform:matrix(0.205333,-0.002259,0.002750,0.249985,0,0);}
.meb_c00418{transform:matrix(0.205630,0.001439,-0.001750,0.249994,0,0);-ms-transform:matrix(0.205630,0.001439,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.205630,0.001439,-0.001750,0.249994,0,0);}
.m9d_c00418{transform:matrix(0.205635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205635,0.000000,0.000000,0.250000,0,0);}
.m12f_c00418{transform:matrix(0.205765,0.001440,-0.001750,0.249994,0,0);-ms-transform:matrix(0.205765,0.001440,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.205765,0.001440,-0.001750,0.249994,0,0);}
.mb6_c00418{transform:matrix(0.205995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205995,0.000000,0.000000,0.250000,0,0);}
.m65_c00418{transform:matrix(0.206730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206730,0.000000,0.000000,0.250000,0,0);}
.m106_c00418{transform:matrix(0.206820,0.001448,-0.001750,0.249994,0,0);-ms-transform:matrix(0.206820,0.001448,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.206820,0.001448,-0.001750,0.249994,0,0);}
.m19_c00418{transform:matrix(0.207412,-0.002282,0.002750,0.249985,0,0);-ms-transform:matrix(0.207412,-0.002282,0.002750,0.249985,0,0);-webkit-transform:matrix(0.207412,-0.002282,0.002750,0.249985,0,0);}
.m105_c00418{transform:matrix(0.207770,0.001454,-0.001750,0.249994,0,0);-ms-transform:matrix(0.207770,0.001454,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.207770,0.001454,-0.001750,0.249994,0,0);}
.m2d_c00418{transform:matrix(0.208267,-0.002291,0.002750,0.249985,0,0);-ms-transform:matrix(0.208267,-0.002291,0.002750,0.249985,0,0);-webkit-transform:matrix(0.208267,-0.002291,0.002750,0.249985,0,0);}
.m124_c00418{transform:matrix(0.208625,0.001460,-0.001750,0.249994,0,0);-ms-transform:matrix(0.208625,0.001460,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.208625,0.001460,-0.001750,0.249994,0,0);}
.mba_c00418{transform:matrix(0.209020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209020,0.000000,0.000000,0.250000,0,0);}
.m71_c00418{transform:matrix(0.209065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209065,0.000000,0.000000,0.250000,0,0);}
.m9f_c00418{transform:matrix(0.209220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209220,0.000000,0.000000,0.250000,0,0);}
.mfd_c00418{transform:matrix(0.209295,0.001465,-0.001750,0.249994,0,0);-ms-transform:matrix(0.209295,0.001465,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.209295,0.001465,-0.001750,0.249994,0,0);}
.md6_c00418{transform:matrix(0.209465,0.001466,-0.001750,0.249994,0,0);-ms-transform:matrix(0.209465,0.001466,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.209465,0.001466,-0.001750,0.249994,0,0);}
.m1d_c00418{transform:matrix(0.209537,-0.002305,0.002750,0.249985,0,0);-ms-transform:matrix(0.209537,-0.002305,0.002750,0.249985,0,0);-webkit-transform:matrix(0.209537,-0.002305,0.002750,0.249985,0,0);}
.m5e_c00418{transform:matrix(0.209550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209550,0.000000,0.000000,0.250000,0,0);}
.m73_c00418{transform:matrix(0.209835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209835,0.000000,0.000000,0.250000,0,0);}
.m101_c00418{transform:matrix(0.209930,0.001470,-0.001750,0.249994,0,0);-ms-transform:matrix(0.209930,0.001470,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.209930,0.001470,-0.001750,0.249994,0,0);}
.m88_c00418{transform:matrix(0.210380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210380,0.000000,0.000000,0.250000,0,0);}
.m10e_c00418{transform:matrix(0.210390,0.001473,-0.001750,0.249994,0,0);-ms-transform:matrix(0.210390,0.001473,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.210390,0.001473,-0.001750,0.249994,0,0);}
.m2b_c00418{transform:matrix(0.210582,-0.002316,0.002750,0.249985,0,0);-ms-transform:matrix(0.210582,-0.002316,0.002750,0.249985,0,0);-webkit-transform:matrix(0.210582,-0.002316,0.002750,0.249985,0,0);}
.me1_c00418{transform:matrix(0.210605,0.001474,-0.001750,0.249994,0,0);-ms-transform:matrix(0.210605,0.001474,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.210605,0.001474,-0.001750,0.249994,0,0);}
.m28_c00418{transform:matrix(0.210772,-0.002318,0.002750,0.249985,0,0);-ms-transform:matrix(0.210772,-0.002318,0.002750,0.249985,0,0);-webkit-transform:matrix(0.210772,-0.002318,0.002750,0.249985,0,0);}
.mea_c00418{transform:matrix(0.210825,0.001476,-0.001750,0.249994,0,0);-ms-transform:matrix(0.210825,0.001476,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.210825,0.001476,-0.001750,0.249994,0,0);}
.m89_c00418{transform:matrix(0.211010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211010,0.000000,0.000000,0.250000,0,0);}
.m128_c00418{transform:matrix(0.211020,0.001477,-0.001750,0.249994,0,0);-ms-transform:matrix(0.211020,0.001477,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.211020,0.001477,-0.001750,0.249994,0,0);}
.md7_c00418{transform:matrix(0.211210,0.001478,-0.001750,0.249994,0,0);-ms-transform:matrix(0.211210,0.001478,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.211210,0.001478,-0.001750,0.249994,0,0);}
.m8c_c00418{transform:matrix(0.211490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211490,0.000000,0.000000,0.250000,0,0);}
.m95_c00418{transform:matrix(0.211560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211560,0.000000,0.000000,0.250000,0,0);}
.m120_c00418{transform:matrix(0.213175,0.001492,-0.001750,0.249994,0,0);-ms-transform:matrix(0.213175,0.001492,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.213175,0.001492,-0.001750,0.249994,0,0);}
.mcb_c00418{transform:matrix(0.213255,0.001493,-0.001750,0.249994,0,0);-ms-transform:matrix(0.213255,0.001493,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.213255,0.001493,-0.001750,0.249994,0,0);}
.mb8_c00418{transform:matrix(0.213270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213270,0.000000,0.000000,0.250000,0,0);}
.m5d_c00418{transform:matrix(0.213465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213465,0.000000,0.000000,0.250000,0,0);}
.md1_c00418{transform:matrix(0.213630,0.001495,-0.001750,0.249994,0,0);-ms-transform:matrix(0.213630,0.001495,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.213630,0.001495,-0.001750,0.249994,0,0);}
.m34_c00418{transform:matrix(0.213687,-0.002351,0.002750,0.249985,0,0);-ms-transform:matrix(0.213687,-0.002351,0.002750,0.249985,0,0);-webkit-transform:matrix(0.213687,-0.002351,0.002750,0.249985,0,0);}
.mb5_c00418{transform:matrix(0.213925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213925,0.000000,0.000000,0.250000,0,0);}
.me2_c00418{transform:matrix(0.214135,0.001499,-0.001750,0.249994,0,0);-ms-transform:matrix(0.214135,0.001499,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.214135,0.001499,-0.001750,0.249994,0,0);}
.m31_c00418{transform:matrix(0.214182,-0.002356,0.002750,0.249985,0,0);-ms-transform:matrix(0.214182,-0.002356,0.002750,0.249985,0,0);-webkit-transform:matrix(0.214182,-0.002356,0.002750,0.249985,0,0);}
.m20_c00418{transform:matrix(0.214407,-0.002358,0.002750,0.249985,0,0);-ms-transform:matrix(0.214407,-0.002358,0.002750,0.249985,0,0);-webkit-transform:matrix(0.214407,-0.002358,0.002750,0.249985,0,0);}
.m11d_c00418{transform:matrix(0.215055,0.001505,-0.001750,0.249994,0,0);-ms-transform:matrix(0.215055,0.001505,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.215055,0.001505,-0.001750,0.249994,0,0);}
.m121_c00418{transform:matrix(0.215190,0.001506,-0.001750,0.249994,0,0);-ms-transform:matrix(0.215190,0.001506,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.215190,0.001506,-0.001750,0.249994,0,0);}
.mc_c00418{transform:matrix(0.215782,-0.001079,0.001250,0.249997,0,0);-ms-transform:matrix(0.215782,-0.001079,0.001250,0.249997,0,0);-webkit-transform:matrix(0.215782,-0.001079,0.001250,0.249997,0,0);}
.m12b_c00418{transform:matrix(0.215905,0.001511,-0.001750,0.249994,0,0);-ms-transform:matrix(0.215905,0.001511,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.215905,0.001511,-0.001750,0.249994,0,0);}
.m37_c00418{transform:matrix(0.216192,-0.002378,0.002750,0.249985,0,0);-ms-transform:matrix(0.216192,-0.002378,0.002750,0.249985,0,0);-webkit-transform:matrix(0.216192,-0.002378,0.002750,0.249985,0,0);}
.m44_c00418{transform:matrix(0.216292,-0.002379,0.002750,0.249985,0,0);-ms-transform:matrix(0.216292,-0.002379,0.002750,0.249985,0,0);-webkit-transform:matrix(0.216292,-0.002379,0.002750,0.249985,0,0);}
.m104_c00418{transform:matrix(0.217100,0.001520,-0.001750,0.249994,0,0);-ms-transform:matrix(0.217100,0.001520,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.217100,0.001520,-0.001750,0.249994,0,0);}
.mb4_c00418{transform:matrix(0.217275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217275,0.000000,0.000000,0.250000,0,0);}
.m8e_c00418{transform:matrix(0.217925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217925,0.000000,0.000000,0.250000,0,0);}
.m11b_c00418{transform:matrix(0.218095,0.001527,-0.001750,0.249994,0,0);-ms-transform:matrix(0.218095,0.001527,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.218095,0.001527,-0.001750,0.249994,0,0);}
.mec_c00418{transform:matrix(0.218130,0.001527,-0.001750,0.249994,0,0);-ms-transform:matrix(0.218130,0.001527,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.218130,0.001527,-0.001750,0.249994,0,0);}
.mf0_c00418{transform:matrix(0.218250,0.001528,-0.001750,0.249994,0,0);-ms-transform:matrix(0.218250,0.001528,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.218250,0.001528,-0.001750,0.249994,0,0);}
.m3c_c00418{transform:matrix(0.218732,-0.002406,0.002750,0.249985,0,0);-ms-transform:matrix(0.218732,-0.002406,0.002750,0.249985,0,0);-webkit-transform:matrix(0.218732,-0.002406,0.002750,0.249985,0,0);}
.mdf_c00418{transform:matrix(0.218790,0.001532,-0.001750,0.249994,0,0);-ms-transform:matrix(0.218790,0.001532,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.218790,0.001532,-0.001750,0.249994,0,0);}
.m1f_c00418{transform:matrix(0.219567,-0.002415,0.002750,0.249985,0,0);-ms-transform:matrix(0.219567,-0.002415,0.002750,0.249985,0,0);-webkit-transform:matrix(0.219567,-0.002415,0.002750,0.249985,0,0);}
.m125_c00418{transform:matrix(0.219655,0.001538,-0.001750,0.249994,0,0);-ms-transform:matrix(0.219655,0.001538,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.219655,0.001538,-0.001750,0.249994,0,0);}
.m108_c00418{transform:matrix(0.220365,0.001543,-0.001750,0.249994,0,0);-ms-transform:matrix(0.220365,0.001543,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.220365,0.001543,-0.001750,0.249994,0,0);}
.m10d_c00418{transform:matrix(0.220375,0.001543,-0.001750,0.249994,0,0);-ms-transform:matrix(0.220375,0.001543,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.220375,0.001543,-0.001750,0.249994,0,0);}
.m6a_c00418{transform:matrix(0.220535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220535,0.000000,0.000000,0.250000,0,0);}
.m10a_c00418{transform:matrix(0.220900,0.001546,-0.001750,0.249994,0,0);-ms-transform:matrix(0.220900,0.001546,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.220900,0.001546,-0.001750,0.249994,0,0);}
.m35_c00418{transform:matrix(0.221137,-0.002433,0.002750,0.249985,0,0);-ms-transform:matrix(0.221137,-0.002433,0.002750,0.249985,0,0);-webkit-transform:matrix(0.221137,-0.002433,0.002750,0.249985,0,0);}
.m3d_c00418{transform:matrix(0.221167,-0.002433,0.002750,0.249985,0,0);-ms-transform:matrix(0.221167,-0.002433,0.002750,0.249985,0,0);-webkit-transform:matrix(0.221167,-0.002433,0.002750,0.249985,0,0);}
.m130_c00418{transform:matrix(0.221175,0.001548,-0.001750,0.249994,0,0);-ms-transform:matrix(0.221175,0.001548,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.221175,0.001548,-0.001750,0.249994,0,0);}
.me6_c00418{transform:matrix(0.221405,0.001550,-0.001750,0.249994,0,0);-ms-transform:matrix(0.221405,0.001550,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.221405,0.001550,-0.001750,0.249994,0,0);}
.m85_c00418{transform:matrix(0.221640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221640,0.000000,0.000000,0.250000,0,0);}
.m5c_c00418{transform:matrix(0.221670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221670,0.000000,0.000000,0.250000,0,0);}
.md9_c00418{transform:matrix(0.221990,0.001554,-0.001750,0.249994,0,0);-ms-transform:matrix(0.221990,0.001554,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.221990,0.001554,-0.001750,0.249994,0,0);}
.m97_c00418{transform:matrix(0.222240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222240,0.000000,0.000000,0.250000,0,0);}
.mdb_c00418{transform:matrix(0.222485,0.001557,-0.001750,0.249994,0,0);-ms-transform:matrix(0.222485,0.001557,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.222485,0.001557,-0.001750,0.249994,0,0);}
.m75_c00418{transform:matrix(0.222530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222530,0.000000,0.000000,0.250000,0,0);}
.m84_c00418{transform:matrix(0.223165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223165,0.000000,0.000000,0.250000,0,0);}
.ma1_c00418{transform:matrix(0.223270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223270,0.000000,0.000000,0.250000,0,0);}
.m6f_c00418{transform:matrix(0.223320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223320,0.000000,0.000000,0.250000,0,0);}
.mef_c00418{transform:matrix(0.223400,0.001564,-0.001750,0.249994,0,0);-ms-transform:matrix(0.223400,0.001564,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.223400,0.001564,-0.001750,0.249994,0,0);}
.m4d_c00418{transform:matrix(0.223871,-0.002463,0.002750,0.249985,0,0);-ms-transform:matrix(0.223871,-0.002463,0.002750,0.249985,0,0);-webkit-transform:matrix(0.223871,-0.002463,0.002750,0.249985,0,0);}
.m12d_c00418{transform:matrix(0.224025,0.001568,-0.001750,0.249994,0,0);-ms-transform:matrix(0.224025,0.001568,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.224025,0.001568,-0.001750,0.249994,0,0);}
.mce_c00418{transform:matrix(0.224564,0.001572,-0.001750,0.249994,0,0);-ms-transform:matrix(0.224564,0.001572,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.224564,0.001572,-0.001750,0.249994,0,0);}
.ma8_c00418{transform:matrix(0.224680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224680,0.000000,0.000000,0.250000,0,0);}
.m52_c00418{transform:matrix(0.224736,-0.002472,0.002750,0.249985,0,0);-ms-transform:matrix(0.224736,-0.002472,0.002750,0.249985,0,0);-webkit-transform:matrix(0.224736,-0.002472,0.002750,0.249985,0,0);}
.md3_c00418{transform:matrix(0.225334,0.001577,-0.001750,0.249994,0,0);-ms-transform:matrix(0.225334,0.001577,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.225334,0.001577,-0.001750,0.249994,0,0);}
.m11_c00418{transform:matrix(0.225342,-0.001127,0.001250,0.249997,0,0);-ms-transform:matrix(0.225342,-0.001127,0.001250,0.249997,0,0);-webkit-transform:matrix(0.225342,-0.001127,0.001250,0.249997,0,0);}
.mf8_c00418{transform:matrix(0.225459,0.001578,-0.001750,0.249994,0,0);-ms-transform:matrix(0.225459,0.001578,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.225459,0.001578,-0.001750,0.249994,0,0);}
.me9_c00418{transform:matrix(0.225619,0.001579,-0.001750,0.249994,0,0);-ms-transform:matrix(0.225619,0.001579,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.225619,0.001579,-0.001750,0.249994,0,0);}
.m1b_c00418{transform:matrix(0.225681,-0.002482,0.002750,0.249985,0,0);-ms-transform:matrix(0.225681,-0.002482,0.002750,0.249985,0,0);-webkit-transform:matrix(0.225681,-0.002482,0.002750,0.249985,0,0);}
.m9a_c00418{transform:matrix(0.225695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225695,0.000000,0.000000,0.250000,0,0);}
.m46_c00418{transform:matrix(0.226326,-0.002490,0.002750,0.249985,0,0);-ms-transform:matrix(0.226326,-0.002490,0.002750,0.249985,0,0);-webkit-transform:matrix(0.226326,-0.002490,0.002750,0.249985,0,0);}
.m60_c00418{transform:matrix(0.226945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226945,0.000000,0.000000,0.250000,0,0);}
.mc0_c00418{transform:matrix(0.227005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227005,0.000000,0.000000,0.250000,0,0);}
.m7d_c00418{transform:matrix(0.227430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227430,0.000000,0.000000,0.250000,0,0);}
.m9b_c00418{transform:matrix(0.227900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227900,0.000000,0.000000,0.250000,0,0);}
.m2f_c00418{transform:matrix(0.227926,-0.002507,0.002750,0.249985,0,0);-ms-transform:matrix(0.227926,-0.002507,0.002750,0.249985,0,0);-webkit-transform:matrix(0.227926,-0.002507,0.002750,0.249985,0,0);}
.mae_c00418{transform:matrix(0.228105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228105,0.000000,0.000000,0.250000,0,0);}
.m41_c00418{transform:matrix(0.228366,-0.002512,0.002750,0.249985,0,0);-ms-transform:matrix(0.228366,-0.002512,0.002750,0.249985,0,0);-webkit-transform:matrix(0.228366,-0.002512,0.002750,0.249985,0,0);}
.m107_c00418{transform:matrix(0.228699,0.001601,-0.001750,0.249994,0,0);-ms-transform:matrix(0.228699,0.001601,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.228699,0.001601,-0.001750,0.249994,0,0);}
.m87_c00418{transform:matrix(0.228945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228945,0.000000,0.000000,0.250000,0,0);}
.m10b_c00418{transform:matrix(0.229204,0.001604,-0.001750,0.249994,0,0);-ms-transform:matrix(0.229204,0.001604,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.229204,0.001604,-0.001750,0.249994,0,0);}
.mdd_c00418{transform:matrix(0.229324,0.001605,-0.001750,0.249994,0,0);-ms-transform:matrix(0.229324,0.001605,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.229324,0.001605,-0.001750,0.249994,0,0);}
.ma0_c00418{transform:matrix(0.229715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229715,0.000000,0.000000,0.250000,0,0);}
.m98_c00418{transform:matrix(0.230110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230110,0.000000,0.000000,0.250000,0,0);}
.me_c00418{transform:matrix(0.230337,-0.001152,0.001250,0.249997,0,0);-ms-transform:matrix(0.230337,-0.001152,0.001250,0.249997,0,0);-webkit-transform:matrix(0.230337,-0.001152,0.001250,0.249997,0,0);}
.ma4_c00418{transform:matrix(0.230340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230340,0.000000,0.000000,0.250000,0,0);}
.me5_c00418{transform:matrix(0.230719,0.001615,-0.001750,0.249994,0,0);-ms-transform:matrix(0.230719,0.001615,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.230719,0.001615,-0.001750,0.249994,0,0);}
.mff_c00418{transform:matrix(0.230909,0.001616,-0.001750,0.249994,0,0);-ms-transform:matrix(0.230909,0.001616,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.230909,0.001616,-0.001750,0.249994,0,0);}
.m10f_c00418{transform:matrix(0.231059,0.001617,-0.001750,0.249994,0,0);-ms-transform:matrix(0.231059,0.001617,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.231059,0.001617,-0.001750,0.249994,0,0);}
.m43_c00418{transform:matrix(0.231061,-0.002542,0.002750,0.249985,0,0);-ms-transform:matrix(0.231061,-0.002542,0.002750,0.249985,0,0);-webkit-transform:matrix(0.231061,-0.002542,0.002750,0.249985,0,0);}
.m63_c00418{transform:matrix(0.231205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231205,0.000000,0.000000,0.250000,0,0);}
.m23_c00418{transform:matrix(0.231876,-0.002551,0.002750,0.249985,0,0);-ms-transform:matrix(0.231876,-0.002551,0.002750,0.249985,0,0);-webkit-transform:matrix(0.231876,-0.002551,0.002750,0.249985,0,0);}
.m4f_c00418{transform:matrix(0.232046,-0.002553,0.002750,0.249985,0,0);-ms-transform:matrix(0.232046,-0.002553,0.002750,0.249985,0,0);-webkit-transform:matrix(0.232046,-0.002553,0.002750,0.249985,0,0);}
.m21_c00418{transform:matrix(0.232566,-0.002558,0.002750,0.249985,0,0);-ms-transform:matrix(0.232566,-0.002558,0.002750,0.249985,0,0);-webkit-transform:matrix(0.232566,-0.002558,0.002750,0.249985,0,0);}
.m127_c00418{transform:matrix(0.232994,0.001631,-0.001750,0.249994,0,0);-ms-transform:matrix(0.232994,0.001631,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.232994,0.001631,-0.001750,0.249994,0,0);}
.m18_c00418{transform:matrix(0.233226,-0.002565,0.002750,0.249985,0,0);-ms-transform:matrix(0.233226,-0.002565,0.002750,0.249985,0,0);-webkit-transform:matrix(0.233226,-0.002565,0.002750,0.249985,0,0);}
.m48_c00418{transform:matrix(0.233556,-0.002569,0.002750,0.249985,0,0);-ms-transform:matrix(0.233556,-0.002569,0.002750,0.249985,0,0);-webkit-transform:matrix(0.233556,-0.002569,0.002750,0.249985,0,0);}
.mf6_c00418{transform:matrix(0.233564,0.001635,-0.001750,0.249994,0,0);-ms-transform:matrix(0.233564,0.001635,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.233564,0.001635,-0.001750,0.249994,0,0);}
.m79_c00418{transform:matrix(0.233735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233735,0.000000,0.000000,0.250000,0,0);}
.me7_c00418{transform:matrix(0.233864,0.001637,-0.001750,0.249994,0,0);-ms-transform:matrix(0.233864,0.001637,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.233864,0.001637,-0.001750,0.249994,0,0);}
.mc4_c00418{transform:matrix(0.234354,0.001640,-0.001750,0.249994,0,0);-ms-transform:matrix(0.234354,0.001640,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.234354,0.001640,-0.001750,0.249994,0,0);}
.m5f_c00418{transform:matrix(0.234900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234900,0.000000,0.000000,0.250000,0,0);}
.m58_c00418{transform:matrix(0.235066,-0.002586,0.002750,0.249985,0,0);-ms-transform:matrix(0.235066,-0.002586,0.002750,0.249985,0,0);-webkit-transform:matrix(0.235066,-0.002586,0.002750,0.249985,0,0);}
.m12c_c00418{transform:matrix(0.235264,0.001647,-0.001750,0.249994,0,0);-ms-transform:matrix(0.235264,0.001647,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.235264,0.001647,-0.001750,0.249994,0,0);}
.med_c00418{transform:matrix(0.235794,0.001651,-0.001750,0.249994,0,0);-ms-transform:matrix(0.235794,0.001651,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.235794,0.001651,-0.001750,0.249994,0,0);}
.m49_c00418{transform:matrix(0.235906,-0.002595,0.002750,0.249985,0,0);-ms-transform:matrix(0.235906,-0.002595,0.002750,0.249985,0,0);-webkit-transform:matrix(0.235906,-0.002595,0.002750,0.249985,0,0);}
.mf3_c00418{transform:matrix(0.236019,0.001652,-0.001750,0.249994,0,0);-ms-transform:matrix(0.236019,0.001652,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.236019,0.001652,-0.001750,0.249994,0,0);}
.m9e_c00418{transform:matrix(0.236465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236465,0.000000,0.000000,0.250000,0,0);}
.mf9_c00418{transform:matrix(0.236799,0.001658,-0.001750,0.249994,0,0);-ms-transform:matrix(0.236799,0.001658,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.236799,0.001658,-0.001750,0.249994,0,0);}
.m26_c00418{transform:matrix(0.237216,-0.002609,0.002750,0.249985,0,0);-ms-transform:matrix(0.237216,-0.002609,0.002750,0.249985,0,0);-webkit-transform:matrix(0.237216,-0.002609,0.002750,0.249985,0,0);}
.me3_c00418{transform:matrix(0.237529,0.001663,-0.001750,0.249994,0,0);-ms-transform:matrix(0.237529,0.001663,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.237529,0.001663,-0.001750,0.249994,0,0);}
.m1a_c00418{transform:matrix(0.238181,-0.002620,0.002750,0.249985,0,0);-ms-transform:matrix(0.238181,-0.002620,0.002750,0.249985,0,0);-webkit-transform:matrix(0.238181,-0.002620,0.002750,0.249985,0,0);}
.m103_c00418{transform:matrix(0.238634,0.001670,-0.001750,0.249994,0,0);-ms-transform:matrix(0.238634,0.001670,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.238634,0.001670,-0.001750,0.249994,0,0);}
.mee_c00418{transform:matrix(0.238729,0.001671,-0.001750,0.249994,0,0);-ms-transform:matrix(0.238729,0.001671,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.238729,0.001671,-0.001750,0.249994,0,0);}
.mb1_c00418{transform:matrix(0.239270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239270,0.000000,0.000000,0.250000,0,0);}
.ma5_c00418{transform:matrix(0.239295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239295,0.000000,0.000000,0.250000,0,0);}
.m40_c00418{transform:matrix(0.240265,-0.002643,0.002750,0.249985,0,0);-ms-transform:matrix(0.240265,-0.002643,0.002750,0.249985,0,0);-webkit-transform:matrix(0.240265,-0.002643,0.002750,0.249985,0,0);}
.maf_c00418{transform:matrix(0.240295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240295,0.000000,0.000000,0.250000,0,0);}
.m102_c00418{transform:matrix(0.240324,0.001682,-0.001750,0.249994,0,0);-ms-transform:matrix(0.240324,0.001682,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.240324,0.001682,-0.001750,0.249994,0,0);}
.mc8_c00418{transform:matrix(0.240369,0.001683,-0.001750,0.249994,0,0);-ms-transform:matrix(0.240369,0.001683,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.240369,0.001683,-0.001750,0.249994,0,0);}
.m7f_c00418{transform:matrix(0.240635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240635,0.000000,0.000000,0.250000,0,0);}
.m10c_c00418{transform:matrix(0.241464,0.001690,-0.001750,0.249994,0,0);-ms-transform:matrix(0.241464,0.001690,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.241464,0.001690,-0.001750,0.249994,0,0);}
.mf7_c00418{transform:matrix(0.241694,0.001692,-0.001750,0.249994,0,0);-ms-transform:matrix(0.241694,0.001692,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.241694,0.001692,-0.001750,0.249994,0,0);}
.m129_c00418{transform:matrix(0.242064,0.001694,-0.001750,0.249994,0,0);-ms-transform:matrix(0.242064,0.001694,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.242064,0.001694,-0.001750,0.249994,0,0);}
.mfb_c00418{transform:matrix(0.242454,0.001697,-0.001750,0.249994,0,0);-ms-transform:matrix(0.242454,0.001697,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.242454,0.001697,-0.001750,0.249994,0,0);}
.m59_c00418{transform:matrix(0.242730,-0.002670,0.002750,0.249985,0,0);-ms-transform:matrix(0.242730,-0.002670,0.002750,0.249985,0,0);-webkit-transform:matrix(0.242730,-0.002670,0.002750,0.249985,0,0);}
.mf_c00418{transform:matrix(0.243372,-0.001217,0.001250,0.249997,0,0);-ms-transform:matrix(0.243372,-0.001217,0.001250,0.249997,0,0);-webkit-transform:matrix(0.243372,-0.001217,0.001250,0.249997,0,0);}
.mf4_c00418{transform:matrix(0.243879,0.001707,-0.001750,0.249994,0,0);-ms-transform:matrix(0.243879,0.001707,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.243879,0.001707,-0.001750,0.249994,0,0);}
.mac_c00418{transform:matrix(0.244075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244075,0.000000,0.000000,0.250000,0,0);}
.ma7_c00418{transform:matrix(0.244095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244095,0.000000,0.000000,0.250000,0,0);}
.mf5_c00418{transform:matrix(0.245194,0.001716,-0.001750,0.249994,0,0);-ms-transform:matrix(0.245194,0.001716,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.245194,0.001716,-0.001750,0.249994,0,0);}
.m62_c00418{transform:matrix(0.245470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245470,0.000000,0.000000,0.250000,0,0);}
.md8_c00418{transform:matrix(0.245954,0.001722,-0.001750,0.249994,0,0);-ms-transform:matrix(0.245954,0.001722,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.245954,0.001722,-0.001750,0.249994,0,0);}
.mc5_c00418{transform:matrix(0.245964,0.001722,-0.001750,0.249994,0,0);-ms-transform:matrix(0.245964,0.001722,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.245964,0.001722,-0.001750,0.249994,0,0);}
.m51_c00418{transform:matrix(0.246925,-0.002716,0.002750,0.249985,0,0);-ms-transform:matrix(0.246925,-0.002716,0.002750,0.249985,0,0);-webkit-transform:matrix(0.246925,-0.002716,0.002750,0.249985,0,0);}
.mc9_c00418{transform:matrix(0.247929,0.001736,-0.001750,0.249994,0,0);-ms-transform:matrix(0.247929,0.001736,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.247929,0.001736,-0.001750,0.249994,0,0);}
.m12_c00418{transform:matrix(0.248582,-0.001243,0.001250,0.249997,0,0);-ms-transform:matrix(0.248582,-0.001243,0.001250,0.249997,0,0);-webkit-transform:matrix(0.248582,-0.001243,0.001250,0.249997,0,0);}
.m2_c00418{transform:matrix(0.248897,-0.001244,0.001250,0.249997,0,0);-ms-transform:matrix(0.248897,-0.001244,0.001250,0.249997,0,0);-webkit-transform:matrix(0.248897,-0.001244,0.001250,0.249997,0,0);}
.me0_c00418{transform:matrix(0.249314,0.001745,-0.001750,0.249994,0,0);-ms-transform:matrix(0.249314,0.001745,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.249314,0.001745,-0.001750,0.249994,0,0);}
.mfe_c00418{transform:matrix(0.249649,0.001748,-0.001750,0.249994,0,0);-ms-transform:matrix(0.249649,0.001748,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.249649,0.001748,-0.001750,0.249994,0,0);}
.m4c_c00418{transform:matrix(0.249885,-0.002749,0.002750,0.249985,0,0);-ms-transform:matrix(0.249885,-0.002749,0.002750,0.249985,0,0);-webkit-transform:matrix(0.249885,-0.002749,0.002750,0.249985,0,0);}
.mc2_c00418{transform:matrix(0.249954,0.001750,-0.001750,0.249994,0,0);-ms-transform:matrix(0.249954,0.001750,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.249954,0.001750,-0.001750,0.249994,0,0);}
.m57_c00418{transform:matrix(0.250140,-0.002752,0.002750,0.249985,0,0);-ms-transform:matrix(0.250140,-0.002752,0.002750,0.249985,0,0);-webkit-transform:matrix(0.250140,-0.002752,0.002750,0.249985,0,0);}
.m80_c00418{transform:matrix(0.250470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250470,0.000000,0.000000,0.250000,0,0);}
.m1c_c00418{transform:matrix(0.250800,-0.002759,0.002750,0.249985,0,0);-ms-transform:matrix(0.250800,-0.002759,0.002750,0.249985,0,0);-webkit-transform:matrix(0.250800,-0.002759,0.002750,0.249985,0,0);}
.mf1_c00418{transform:matrix(0.250809,0.001756,-0.001750,0.249994,0,0);-ms-transform:matrix(0.250809,0.001756,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.250809,0.001756,-0.001750,0.249994,0,0);}
.m1_c00418{transform:matrix(0.251597,-0.001258,0.001250,0.249997,0,0);-ms-transform:matrix(0.251597,-0.001258,0.001250,0.249997,0,0);-webkit-transform:matrix(0.251597,-0.001258,0.001250,0.249997,0,0);}
.mf2_c00418{transform:matrix(0.251924,0.001763,-0.001750,0.249994,0,0);-ms-transform:matrix(0.251924,0.001763,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.251924,0.001763,-0.001750,0.249994,0,0);}
.mab_c00418{transform:matrix(0.252355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252355,0.000000,0.000000,0.250000,0,0);}
.m13_c00418{transform:matrix(0.252842,-0.001264,0.001250,0.249997,0,0);-ms-transform:matrix(0.252842,-0.001264,0.001250,0.249997,0,0);-webkit-transform:matrix(0.252842,-0.001264,0.001250,0.249997,0,0);}
.ma2_c00418{transform:matrix(0.252925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252925,0.000000,0.000000,0.250000,0,0);}
.mdc_c00418{transform:matrix(0.253104,0.001772,-0.001750,0.249994,0,0);-ms-transform:matrix(0.253104,0.001772,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.253104,0.001772,-0.001750,0.249994,0,0);}
.m100_c00418{transform:matrix(0.253814,0.001777,-0.001750,0.249994,0,0);-ms-transform:matrix(0.253814,0.001777,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.253814,0.001777,-0.001750,0.249994,0,0);}
.maa_c00418{transform:matrix(0.254680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254680,0.000000,0.000000,0.250000,0,0);}
.m55_c00418{transform:matrix(0.255040,-0.002805,0.002750,0.249985,0,0);-ms-transform:matrix(0.255040,-0.002805,0.002750,0.249985,0,0);-webkit-transform:matrix(0.255040,-0.002805,0.002750,0.249985,0,0);}
.ma9_c00418{transform:matrix(0.255355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255355,0.000000,0.000000,0.250000,0,0);}
.m78_c00418{transform:matrix(0.255690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255690,0.000000,0.000000,0.250000,0,0);}
.mfc_c00418{transform:matrix(0.255899,0.001791,-0.001750,0.249994,0,0);-ms-transform:matrix(0.255899,0.001791,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.255899,0.001791,-0.001750,0.249994,0,0);}
.m4b_c00418{transform:matrix(0.256015,-0.002816,0.002750,0.249985,0,0);-ms-transform:matrix(0.256015,-0.002816,0.002750,0.249985,0,0);-webkit-transform:matrix(0.256015,-0.002816,0.002750,0.249985,0,0);}
.ma3_c00418{transform:matrix(0.258315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258315,0.000000,0.000000,0.250000,0,0);}
.m7e_c00418{transform:matrix(0.258730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258730,0.000000,0.000000,0.250000,0,0);}
.m4a_c00418{transform:matrix(0.258924,-0.002848,0.002750,0.249985,0,0);-ms-transform:matrix(0.258924,-0.002848,0.002750,0.249985,0,0);-webkit-transform:matrix(0.258924,-0.002848,0.002750,0.249985,0,0);}
.mc1_c00418{transform:matrix(0.259365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259365,0.000000,0.000000,0.250000,0,0);}
.mbd_c00418{transform:matrix(0.260120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260120,0.000000,0.000000,0.250000,0,0);}
.m4e_c00418{transform:matrix(0.260424,-0.002865,0.002750,0.249985,0,0);-ms-transform:matrix(0.260424,-0.002865,0.002750,0.249985,0,0);-webkit-transform:matrix(0.260424,-0.002865,0.002750,0.249985,0,0);}
.m54_c00418{transform:matrix(0.260999,-0.002871,0.002750,0.249985,0,0);-ms-transform:matrix(0.260999,-0.002871,0.002750,0.249985,0,0);-webkit-transform:matrix(0.260999,-0.002871,0.002750,0.249985,0,0);}
.m77_c00418{transform:matrix(0.261335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261335,0.000000,0.000000,0.250000,0,0);}
.m82_c00418{transform:matrix(0.261540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261540,0.000000,0.000000,0.250000,0,0);}
.m14_c00418{transform:matrix(0.262557,-0.001313,0.001250,0.249997,0,0);-ms-transform:matrix(0.262557,-0.001313,0.001250,0.249997,0,0);-webkit-transform:matrix(0.262557,-0.001313,0.001250,0.249997,0,0);}
.m5b_c00418{transform:matrix(0.262649,-0.002889,0.002750,0.249985,0,0);-ms-transform:matrix(0.262649,-0.002889,0.002750,0.249985,0,0);-webkit-transform:matrix(0.262649,-0.002889,0.002750,0.249985,0,0);}
.m15_c00418{transform:matrix(0.262847,-0.001314,0.001250,0.249997,0,0);-ms-transform:matrix(0.262847,-0.001314,0.001250,0.249997,0,0);-webkit-transform:matrix(0.262847,-0.001314,0.001250,0.249997,0,0);}
.mde_c00418{transform:matrix(0.263664,0.001846,-0.001750,0.249994,0,0);-ms-transform:matrix(0.263664,0.001846,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.263664,0.001846,-0.001750,0.249994,0,0);}
.m0_c00418{transform:matrix(0.265432,-0.001327,0.001250,0.249997,0,0);-ms-transform:matrix(0.265432,-0.001327,0.001250,0.249997,0,0);-webkit-transform:matrix(0.265432,-0.001327,0.001250,0.249997,0,0);}
.m7a_c00418{transform:matrix(0.265900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265900,0.000000,0.000000,0.250000,0,0);}
.md_c00418{transform:matrix(0.266377,-0.001332,0.001250,0.249997,0,0);-ms-transform:matrix(0.266377,-0.001332,0.001250,0.249997,0,0);-webkit-transform:matrix(0.266377,-0.001332,0.001250,0.249997,0,0);}
.mca_c00418{transform:matrix(0.267998,0.001876,-0.001750,0.249994,0,0);-ms-transform:matrix(0.267998,0.001876,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.267998,0.001876,-0.001750,0.249994,0,0);}
.m7c_c00418{transform:matrix(0.268965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268965,0.000000,0.000000,0.250000,0,0);}
.m53_c00418{transform:matrix(0.270254,-0.002973,0.002750,0.249985,0,0);-ms-transform:matrix(0.270254,-0.002973,0.002750,0.249985,0,0);-webkit-transform:matrix(0.270254,-0.002973,0.002750,0.249985,0,0);}
.m56_c00418{transform:matrix(0.271254,-0.002984,0.002750,0.249985,0,0);-ms-transform:matrix(0.271254,-0.002984,0.002750,0.249985,0,0);-webkit-transform:matrix(0.271254,-0.002984,0.002750,0.249985,0,0);}
.m10_c00418{transform:matrix(0.273502,-0.001368,0.001250,0.249997,0,0);-ms-transform:matrix(0.273502,-0.001368,0.001250,0.249997,0,0);-webkit-transform:matrix(0.273502,-0.001368,0.001250,0.249997,0,0);}
.mbf_c00418{transform:matrix(0.273910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273910,0.000000,0.000000,0.250000,0,0);}
.mc3_c00418{transform:matrix(0.273953,0.001918,-0.001750,0.249994,0,0);-ms-transform:matrix(0.273953,0.001918,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.273953,0.001918,-0.001750,0.249994,0,0);}
.mad_c00418{transform:matrix(0.274005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274005,0.000000,0.000000,0.250000,0,0);}
.m7_c00418{transform:matrix(0.274792,-0.001374,0.001250,0.249997,0,0);-ms-transform:matrix(0.274792,-0.001374,0.001250,0.249997,0,0);-webkit-transform:matrix(0.274792,-0.001374,0.001250,0.249997,0,0);}
.ma6_c00418{transform:matrix(0.274880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274880,0.000000,0.000000,0.250000,0,0);}
.m6_c00418{transform:matrix(0.275547,-0.001378,0.001250,0.249997,0,0);-ms-transform:matrix(0.275547,-0.001378,0.001250,0.249997,0,0);-webkit-transform:matrix(0.275547,-0.001378,0.001250,0.249997,0,0);}
.m5a_c00418{transform:matrix(0.280613,-0.003087,0.002750,0.249985,0,0);-ms-transform:matrix(0.280613,-0.003087,0.002750,0.249985,0,0);-webkit-transform:matrix(0.280613,-0.003087,0.002750,0.249985,0,0);}
.m7b_c00418{transform:matrix(0.280940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280940,0.000000,0.000000,0.250000,0,0);}
.m81_c00418{transform:matrix(0.280945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280945,0.000000,0.000000,0.250000,0,0);}
.mb_c00418{transform:matrix(0.281481,-0.001407,0.001250,0.249997,0,0);-ms-transform:matrix(0.281481,-0.001407,0.001250,0.249997,0,0);-webkit-transform:matrix(0.281481,-0.001407,0.001250,0.249997,0,0);}
.mc7_c00418{transform:matrix(0.282028,0.001974,-0.001750,0.249994,0,0);-ms-transform:matrix(0.282028,0.001974,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.282028,0.001974,-0.001750,0.249994,0,0);}
.mc6_c00418{transform:matrix(0.282748,0.001979,-0.001750,0.249994,0,0);-ms-transform:matrix(0.282748,0.001979,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.282748,0.001979,-0.001750,0.249994,0,0);}
.m4_c00418{transform:matrix(0.284341,-0.001422,0.001250,0.249997,0,0);-ms-transform:matrix(0.284341,-0.001422,0.001250,0.249997,0,0);-webkit-transform:matrix(0.284341,-0.001422,0.001250,0.249997,0,0);}
.m3_c00418{transform:matrix(0.284431,-0.001422,0.001250,0.249997,0,0);-ms-transform:matrix(0.284431,-0.001422,0.001250,0.249997,0,0);-webkit-transform:matrix(0.284431,-0.001422,0.001250,0.249997,0,0);}
.m5_c00418{transform:matrix(0.284776,-0.001424,0.001250,0.249997,0,0);-ms-transform:matrix(0.284776,-0.001424,0.001250,0.249997,0,0);-webkit-transform:matrix(0.284776,-0.001424,0.001250,0.249997,0,0);}
.m9_c00418{transform:matrix(0.285416,-0.001427,0.001250,0.249997,0,0);-ms-transform:matrix(0.285416,-0.001427,0.001250,0.249997,0,0);-webkit-transform:matrix(0.285416,-0.001427,0.001250,0.249997,0,0);}
.ma_c00418{transform:matrix(0.289311,-0.001447,0.001250,0.249997,0,0);-ms-transform:matrix(0.289311,-0.001447,0.001250,0.249997,0,0);-webkit-transform:matrix(0.289311,-0.001447,0.001250,0.249997,0,0);}
.mbe_c00418{transform:matrix(0.292620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292620,0.000000,0.000000,0.250000,0,0);}
.m17_c00418{transform:matrix(0.295471,-0.001477,0.001250,0.249997,0,0);-ms-transform:matrix(0.295471,-0.001477,0.001250,0.249997,0,0);-webkit-transform:matrix(0.295471,-0.001477,0.001250,0.249997,0,0);}
.m8_c00418{transform:matrix(0.308026,-0.001540,0.001250,0.249997,0,0);-ms-transform:matrix(0.308026,-0.001540,0.001250,0.249997,0,0);-webkit-transform:matrix(0.308026,-0.001540,0.001250,0.249997,0,0);}
.m50_c00418{transform:matrix(0.310726,-0.003418,0.002750,0.249985,0,0);-ms-transform:matrix(0.310726,-0.003418,0.002750,0.249985,0,0);-webkit-transform:matrix(0.310726,-0.003418,0.002750,0.249985,0,0);}
.m16_c00418{transform:matrix(0.344626,-0.001723,0.001250,0.249997,0,0);-ms-transform:matrix(0.344626,-0.001723,0.001250,0.249997,0,0);-webkit-transform:matrix(0.344626,-0.001723,0.001250,0.249997,0,0);}
.m13b_c00418{transform:matrix(0.717319,0.009325,-0.003250,0.249979,0,0);-ms-transform:matrix(0.717319,0.009325,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.717319,0.009325,-0.003250,0.249979,0,0);}
.m13c_c00418{transform:matrix(1.321093,0.017174,-0.003250,0.249979,0,0);-ms-transform:matrix(1.321093,0.017174,-0.003250,0.249979,0,0);-webkit-transform:matrix(1.321093,0.017174,-0.003250,0.249979,0,0);}
.v0_c00418{vertical-align:0.000000px;}
.ls0_c00418{letter-spacing:0.000000px;}
.sc__c00418{text-shadow:none;}
.sc0_c00418{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__c00418{-webkit-text-stroke:0px transparent;}
.sc0_c00418{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00418{word-spacing:0.000000px;}
._0_c00418{width:32.928830px;}
.fc0_c00418{color:transparent;}
.fsf_c00418{font-size:48.004056px;}
.fs0_c00418{font-size:66.000825px;}
.fs8_c00418{font-size:72.000000px;}
.fs1_c00418{font-size:72.000900px;}
.fs9_c00418{font-size:72.001764px;}
.fs5_c00418{font-size:72.004356px;}
.fsb_c00418{font-size:78.001911px;}
.fs4_c00418{font-size:78.004719px;}
.fs6_c00418{font-size:84.000000px;}
.fsc_c00418{font-size:84.002058px;}
.fs2_c00418{font-size:84.005082px;}
.fs7_c00418{font-size:90.000000px;}
.fsa_c00418{font-size:90.002205px;}
.fs3_c00418{font-size:90.005445px;}
.fsd_c00418{font-size:102.002499px;}
.fse_c00418{font-size:102.008619px;}
.y0_c00418{bottom:0.000000px;}
.yfa_c00418{bottom:56.428197px;}
.yfb_c00418{bottom:56.846727px;}
.yfc_c00418{bottom:58.699227px;}
.yfd_c00418{bottom:58.979583px;}
.yfe_c00418{bottom:59.552284px;}
.yff_c00418{bottom:59.983425px;}
.y100_c00418{bottom:61.127504px;}
.y101_c00418{bottom:61.857275px;}
.yf7_c00418{bottom:88.521515px;}
.yf8_c00418{bottom:88.521803px;}
.yf9_c00418{bottom:88.522136px;}
.yf6_c00418{bottom:113.164496px;}
.yf5_c00418{bottom:114.452139px;}
.yf4_c00418{bottom:114.746589px;}
.yf3_c00418{bottom:116.189531px;}
.yf2_c00418{bottom:116.766496px;}
.yf1_c00418{bottom:117.316611px;}
.yf0_c00418{bottom:119.051311px;}
.yef_c00418{bottom:119.623032px;}
.yee_c00418{bottom:120.346131px;}
.yed_c00418{bottom:122.041500px;}
.yec_c00418{bottom:149.227463px;}
.yeb_c00418{bottom:149.658747px;}
.yea_c00418{bottom:149.984864px;}
.ye9_c00418{bottom:150.546057px;}
.ye8_c00418{bottom:151.664685px;}
.ye7_c00418{bottom:152.209996px;}
.ye6_c00418{bottom:152.550221px;}
.ye5_c00418{bottom:153.868551px;}
.ye4_c00418{bottom:154.208849px;}
.ye3_c00418{bottom:155.194125px;}
.ye2_c00418{bottom:155.517942px;}
.ye1_c00418{bottom:156.057974px;}
.ydd_c00418{bottom:185.614418px;}
.ydc_c00418{bottom:185.614827px;}
.yd5_c00418{bottom:185.614873px;}
.ye0_c00418{bottom:185.614929px;}
.ydb_c00418{bottom:185.614967px;}
.yd6_c00418{bottom:185.615034px;}
.yde_c00418{bottom:185.615088px;}
.ydf_c00418{bottom:185.615129px;}
.yd7_c00418{bottom:185.615524px;}
.yd8_c00418{bottom:185.615565px;}
.yd9_c00418{bottom:185.615576px;}
.yda_c00418{bottom:185.615646px;}
.yce_c00418{bottom:222.400800px;}
.yd0_c00418{bottom:222.400832px;}
.ycc_c00418{bottom:222.400859px;}
.yd2_c00418{bottom:222.400983px;}
.ycb_c00418{bottom:222.401088px;}
.yd3_c00418{bottom:222.401144px;}
.ycd_c00418{bottom:222.401229px;}
.yd1_c00418{bottom:222.401333px;}
.ycf_c00418{bottom:222.401481px;}
.yd4_c00418{bottom:222.401884px;}
.yca_c00418{bottom:256.872500px;}
.yc9_c00418{bottom:257.145161px;}
.yc8_c00418{bottom:257.591922px;}
.yc7_c00418{bottom:258.652017px;}
.yc6_c00418{bottom:259.194002px;}
.yc5_c00418{bottom:259.633245px;}
.yc4_c00418{bottom:259.900416px;}
.yc3_c00418{bottom:260.339607px;}
.yc2_c00418{bottom:261.031544px;}
.yc1_c00418{bottom:261.300730px;}
.yc0_c00418{bottom:261.650200px;}
.ybf_c00418{bottom:261.898872px;}
.ybe_c00418{bottom:293.095912px;}
.ybd_c00418{bottom:293.258171px;}
.ybc_c00418{bottom:293.650291px;}
.ybb_c00418{bottom:293.814882px;}
.yba_c00418{bottom:294.211605px;}
.yb9_c00418{bottom:294.321090px;}
.yb8_c00418{bottom:294.753948px;}
.yb7_c00418{bottom:294.922708px;}
.yb6_c00418{bottom:295.528340px;}
.yb5_c00418{bottom:295.973118px;}
.yb4_c00418{bottom:296.129284px;}
.yb3_c00418{bottom:296.458287px;}
.yad_c00418{bottom:331.663737px;}
.yab_c00418{bottom:331.663806px;}
.yb0_c00418{bottom:331.664009px;}
.yae_c00418{bottom:331.664017px;}
.yaf_c00418{bottom:331.664058px;}
.yb2_c00418{bottom:331.664139px;}
.yac_c00418{bottom:331.664177px;}
.yb1_c00418{bottom:331.664249px;}
.ya9_c00418{bottom:331.664295px;}
.yaa_c00418{bottom:331.664396px;}
.ya8_c00418{bottom:331.664525px;}
.ya7_c00418{bottom:331.664784px;}
.ya6_c00418{bottom:331.665164px;}
.ya5_c00418{bottom:331.665393px;}
.y9a_c00418{bottom:368.529039px;}
.y9b_c00418{bottom:368.529170px;}
.y9c_c00418{bottom:368.529251px;}
.y9d_c00418{bottom:368.529491px;}
.y9e_c00418{bottom:368.529861px;}
.ya3_c00418{bottom:368.530044px;}
.ya1_c00418{bottom:368.530203px;}
.y9f_c00418{bottom:368.530382px;}
.ya4_c00418{bottom:368.530415px;}
.ya0_c00418{bottom:368.530553px;}
.ya2_c00418{bottom:368.530664px;}
.y90_c00418{bottom:402.144987px;}
.y8f_c00418{bottom:402.145277px;}
.y91_c00418{bottom:402.145278px;}
.y92_c00418{bottom:402.146009px;}
.y96_c00418{bottom:402.146081px;}
.y93_c00418{bottom:402.146499px;}
.y97_c00418{bottom:402.146552px;}
.y95_c00418{bottom:402.146640px;}
.y94_c00418{bottom:402.146660px;}
.y98_c00418{bottom:402.146922px;}
.y99_c00418{bottom:402.147033px;}
.y8d_c00418{bottom:437.980575px;}
.y89_c00418{bottom:437.980932px;}
.y8e_c00418{bottom:437.980946px;}
.y83_c00418{bottom:437.981009px;}
.y8a_c00418{bottom:437.981043px;}
.y8c_c00418{bottom:437.981195px;}
.y88_c00418{bottom:437.981282px;}
.y8b_c00418{bottom:437.981534px;}
.y84_c00418{bottom:437.981559px;}
.y87_c00418{bottom:437.981961px;}
.y85_c00418{bottom:437.982110px;}
.y86_c00418{bottom:437.982150px;}
.y82_c00418{bottom:472.358457px;}
.y81_c00418{bottom:472.677689px;}
.y80_c00418{bottom:472.910190px;}
.y7f_c00418{bottom:473.689437px;}
.y7e_c00418{bottom:474.619002px;}
.y7d_c00418{bottom:474.927114px;}
.y7c_c00418{bottom:475.157673px;}
.y7b_c00418{bottom:475.773771px;}
.y7a_c00418{bottom:476.010000px;}
.y79_c00418{bottom:511.944000px;}
.y78_c00418{bottom:544.045500px;}
.y77_c00418{bottom:581.694000px;}
.y6b_c00418{bottom:612.630000px;}
.y6c_c00418{bottom:612.799500px;}
.y6d_c00418{bottom:613.131000px;}
.y6e_c00418{bottom:613.566000px;}
.y6f_c00418{bottom:613.731000px;}
.y70_c00418{bottom:614.008500px;}
.y71_c00418{bottom:614.448000px;}
.y72_c00418{bottom:614.779500px;}
.y73_c00418{bottom:614.947500px;}
.y74_c00418{bottom:615.118500px;}
.y75_c00418{bottom:615.556500px;}
.y76_c00418{bottom:615.720000px;}
.y6a_c00418{bottom:651.240000px;}
.y69_c00418{bottom:688.465500px;}
.y67_c00418{bottom:720.097500px;}
.y68_c00418{bottom:722.985000px;}
.y66_c00418{bottom:760.728000px;}
.y65_c00418{bottom:795.712500px;}
.y5e_c00418{bottom:828.093000px;}
.y5f_c00418{bottom:828.870000px;}
.y60_c00418{bottom:829.402500px;}
.y61_c00418{bottom:830.059500px;}
.y62_c00418{bottom:830.577000px;}
.y63_c00418{bottom:831.108000px;}
.y64_c00418{bottom:832.468500px;}
.y5d_c00418{bottom:868.030500px;}
.y54_c00418{bottom:903.876120px;}
.y55_c00418{bottom:903.876311px;}
.y53_c00418{bottom:903.876646px;}
.y51_c00418{bottom:903.876849px;}
.y56_c00418{bottom:903.876921px;}
.y52_c00418{bottom:903.877070px;}
.y57_c00418{bottom:903.877355px;}
.y5a_c00418{bottom:903.877796px;}
.y58_c00418{bottom:903.878068px;}
.y5c_c00418{bottom:903.878163px;}
.y59_c00418{bottom:903.878442px;}
.y5b_c00418{bottom:903.878499px;}
.y48_c00418{bottom:935.270558px;}
.y49_c00418{bottom:935.486203px;}
.y4a_c00418{bottom:935.647484px;}
.y4b_c00418{bottom:936.111381px;}
.y4c_c00418{bottom:937.102111px;}
.y4d_c00418{bottom:938.038261px;}
.y4e_c00418{bottom:938.732252px;}
.y4f_c00418{bottom:939.046722px;}
.y50_c00418{bottom:939.898675px;}
.y47_c00418{bottom:973.860032px;}
.y41_c00418{bottom:973.860179px;}
.y44_c00418{bottom:973.860297px;}
.y46_c00418{bottom:973.860678px;}
.y42_c00418{bottom:973.860680px;}
.y43_c00418{bottom:973.860690px;}
.y40_c00418{bottom:973.860722px;}
.y45_c00418{bottom:973.860921px;}
.y3f_c00418{bottom:973.861338px;}
.y3e_c00418{bottom:973.861521px;}
.y3d_c00418{bottom:973.861644px;}
.y3c_c00418{bottom:973.862201px;}
.y31_c00418{bottom:1003.857641px;}
.y32_c00418{bottom:1004.564138px;}
.y33_c00418{bottom:1005.541168px;}
.y34_c00418{bottom:1005.901001px;}
.y35_c00418{bottom:1006.272267px;}
.y36_c00418{bottom:1007.490611px;}
.y37_c00418{bottom:1008.808564px;}
.y38_c00418{bottom:1009.173792px;}
.y39_c00418{bottom:1010.035075px;}
.y3a_c00418{bottom:1010.522156px;}
.y3b_c00418{bottom:1010.999930px;}
.y25_c00418{bottom:1039.768056px;}
.y26_c00418{bottom:1040.189327px;}
.y27_c00418{bottom:1040.414244px;}
.y28_c00418{bottom:1040.640531px;}
.y29_c00418{bottom:1040.967479px;}
.y2a_c00418{bottom:1041.961389px;}
.y2b_c00418{bottom:1042.501455px;}
.y2c_c00418{bottom:1042.841060px;}
.y2d_c00418{bottom:1043.598849px;}
.y2e_c00418{bottom:1044.053057px;}
.y2f_c00418{bottom:1044.825993px;}
.y30_c00418{bottom:1045.161190px;}
.y19_c00418{bottom:1074.871500px;}
.y1a_c00418{bottom:1075.943868px;}
.y1b_c00418{bottom:1076.294443px;}
.y1c_c00418{bottom:1077.758670px;}
.y1d_c00418{bottom:1078.730355px;}
.y1e_c00418{bottom:1078.979290px;}
.y1f_c00418{bottom:1079.463335px;}
.y20_c00418{bottom:1079.834271px;}
.y21_c00418{bottom:1080.543985px;}
.y22_c00418{bottom:1080.784935px;}
.y23_c00418{bottom:1081.533326px;}
.y24_c00418{bottom:1081.889412px;}
.yd_c00418{bottom:1113.750053px;}
.ye_c00418{bottom:1113.938347px;}
.yf_c00418{bottom:1114.395495px;}
.y10_c00418{bottom:1114.593323px;}
.y11_c00418{bottom:1114.791023px;}
.y12_c00418{bottom:1115.522737px;}
.y13_c00418{bottom:1115.728672px;}
.y14_c00418{bottom:1116.058223px;}
.y15_c00418{bottom:1116.444023px;}
.y16_c00418{bottom:1116.914857px;}
.y17_c00418{bottom:1117.321215px;}
.y18_c00418{bottom:1117.783845px;}
.y1_c00418{bottom:1140.750000px;}
.y2_c00418{bottom:1140.974107px;}
.y3_c00418{bottom:1141.186163px;}
.y4_c00418{bottom:1141.352242px;}
.y5_c00418{bottom:1141.680292px;}
.y6_c00418{bottom:1142.011057px;}
.y7_c00418{bottom:1142.336325px;}
.y8_c00418{bottom:1142.453857px;}
.y9_c00418{bottom:1142.729258px;}
.ya_c00418{bottom:1143.286785px;}
.yb_c00418{bottom:1143.620235px;}
.yc_c00418{bottom:1144.003553px;}
.h11_c00418{height:48.004056px;}
.h2_c00418{height:66.000825px;}
.ha_c00418{height:72.000000px;}
.h3_c00418{height:72.000900px;}
.hb_c00418{height:72.001764px;}
.h7_c00418{height:72.004356px;}
.hd_c00418{height:78.001911px;}
.h6_c00418{height:78.004719px;}
.h8_c00418{height:84.000000px;}
.he_c00418{height:84.002058px;}
.h4_c00418{height:84.005082px;}
.h9_c00418{height:90.000000px;}
.hc_c00418{height:90.002205px;}
.h5_c00418{height:90.005445px;}
.hf_c00418{height:102.002499px;}
.h10_c00418{height:102.008619px;}
.h1_c00418{height:1251.000000px;}
.h0_c00418{height:1251.150000px;}
.w0_c00418{width:915.000000px;}
.x0_c00418{left:0.000000px;}
.x40_c00418{left:150.123081px;}
.x1_c00418{left:158.271000px;}
.xd_c00418{left:159.616530px;}
.x38_c00418{left:161.252639px;}
.x6e_c00418{left:162.540000px;}
.x67_c00418{left:163.683000px;}
.xa4_c00418{left:165.772251px;}
.xb4_c00418{left:167.119482px;}
.xc5_c00418{left:168.134190px;}
.xe8_c00418{left:169.811421px;}
.x5e_c00418{left:184.410000px;}
.xe_c00418{left:190.975372px;}
.x39_c00418{left:192.039992px;}
.x79_c00418{left:195.562500px;}
.xa5_c00418{left:198.172337px;}
.xcd_c00418{left:199.789769px;}
.x24_c00418{left:202.082611px;}
.x2_c00418{left:203.092500px;}
.x49_c00418{left:204.390000px;}
.x9b_c00418{left:207.627644px;}
.xd4_c00418{left:211.936376px;}
.x3a_c00418{left:215.020998px;}
.x8d_c00418{left:218.160000px;}
.xdd_c00418{left:222.382218px;}
.x25_c00418{left:224.575359px;}
.x52_c00418{left:226.416000px;}
.x6f_c00418{left:228.960000px;}
.xad_c00418{left:230.841138px;}
.xbd_c00418{left:232.389440px;}
.xce_c00418{left:233.809938px;}
.x8e_c00418{left:239.760000px;}
.xe6_c00418{left:241.117116px;}
.xc6_c00418{left:242.868165px;}
.x3_c00418{left:245.503500px;}
.x26_c00418{left:247.192606px;}
.x82_c00418{left:249.480000px;}
.x96_c00418{left:251.640000px;}
.xb5_c00418{left:252.710672px;}
.xde_c00418{left:254.712536px;}
.x19_c00418{left:256.972500px;}
.x4a_c00418{left:258.120000px;}
.x41_c00418{left:259.208781px;}
.x7a_c00418{left:261.990000px;}
.xbe_c00418{left:263.699381px;}
.xf_c00418{left:267.104490px;}
.x53_c00418{left:270.735000px;}
.x69_c00418{left:271.890000px;}
.xc7_c00418{left:276.608934px;}
.x4_c00418{left:278.719500px;}
.x27_c00418{left:279.915469px;}
.x3b_c00418{left:281.196402px;}
.x9c_c00418{left:285.118445px;}
.x1a_c00418{left:288.843000px;}
.x42_c00418{left:290.801109px;}
.xd5_c00418{left:297.799086px;}
.x10_c00418{left:300.069825px;}
.x32_c00418{left:301.870704px;}
.x83_c00418{left:305.370000px;}
.xa6_c00418{left:308.064723px;}
.x2e_c00418{left:313.099126px;}
.x68_c00418{left:315.664500px;}
.x8f_c00418{left:316.980000px;}
.xb6_c00418{left:318.322385px;}
.x54_c00418{left:325.546500px;}
.xd6_c00418{left:331.009214px;}
.x11_c00418{left:333.009660px;}
.x33_c00418{left:334.273131px;}
.x5f_c00418{left:336.420000px;}
.x84_c00418{left:338.040000px;}
.xcf_c00418{left:343.162293px;}
.x5_c00418{left:344.329500px;}
.x2f_c00418{left:345.811126px;}
.x70_c00418{left:349.380000px;}
.x97_c00418{left:350.460000px;}
.xbf_c00418{left:352.526120px;}
.xe3_c00418{left:354.369000px;}
.xa7_c00418{left:362.605901px;}
.xe9_c00418{left:366.155760px;}
.x43_c00418{left:369.646146px;}
.xae_c00418{left:373.945152px;}
.x28_c00418{left:379.272058px;}
.x7b_c00418{left:381.873000px;}
.x98_c00418{left:383.130000px;}
.x90_c00418{left:384.210000px;}
.xdf_c00418{left:387.291753px;}
.x4b_c00418{left:391.500000px;}
.x99_c00418{left:394.095000px;}
.xb7_c00418{left:395.273154px;}
.xd7_c00418{left:398.511021px;}
.x60_c00418{left:402.030000px;}
.x57_c00418{left:403.110000px;}
.x6_c00418{left:410.482500px;}
.x55_c00418{left:413.017500px;}
.x9d_c00418{left:417.151913px;}
.x1b_c00418{left:421.954500px;}
.x85_c00418{left:426.330000px;}
.x29_c00418{left:433.278652px;}
.x7c_c00418{left:437.490000px;}
.xa8_c00418{left:439.016649px;}
.xea_c00418{left:443.347851px;}
.x44_c00418{left:444.710721px;}
.x6a_c00418{left:448.470000px;}
.x9e_c00418{left:449.822009px;}
.xc8_c00418{left:451.293206px;}
.xd0_c00418{left:452.784669px;}
.x12_c00418{left:455.052052px;}
.x71_c00418{left:458.730000px;}
.x86_c00418{left:460.080000px;}
.xaf_c00418{left:461.967968px;}
.x2a_c00418{left:467.288532px;}
.x61_c00418{left:468.720000px;}
.x91_c00418{left:470.070000px;}
.xb8_c00418{left:473.575487px;}
.x7_c00418{left:475.536000px;}
.x9f_c00418{left:483.302147px;}
.x13_c00418{left:489.338880px;}
.x4c_c00418{left:490.860000px;}
.x87_c00418{left:492.750000px;}
.xe7_c00418{left:496.019192px;}
.xd8_c00418{left:497.602872px;}
.x8_c00418{left:499.042500px;}
.xc9_c00418{left:506.113317px;}
.xc0_c00418{left:507.512793px;}
.x1c_c00418{left:510.289500px;}
.x58_c00418{left:513.270000px;}
.xd1_c00418{left:518.666393px;}
.x34_c00418{left:522.473901px;}
.x4d_c00418{left:523.800000px;}
.x56_c00418{left:526.434000px;}
.xe4_c00418{left:531.786000px;}
.x1d_c00418{left:532.920000px;}
.x92_c00418{left:537.300000px;}
.x2b_c00418{left:543.133873px;}
.x14_c00418{left:544.148602px;}
.x59_c00418{left:545.940000px;}
.x72_c00418{left:548.100000px;}
.xe0_c00418{left:553.081767px;}
.x9_c00418{left:554.122500px;}
.x45_c00418{left:555.146569px;}
.x3c_c00418{left:556.333997px;}
.x88_c00418{left:558.360000px;}
.xb9_c00418{left:561.598302px;}
.x62_c00418{left:568.620000px;}
.x6b_c00418{left:569.700000px;}
.xa9_c00418{left:571.320128px;}
.xca_c00418{left:573.896345px;}
.x1e_c00418{left:576.924000px;}
.x46_c00418{left:578.637907px;}
.x73_c00418{left:581.040000px;}
.xa0_c00418{left:582.934029px;}
.xeb_c00418{left:587.485062px;}
.x2c_c00418{left:588.516868px;}
.x7d_c00418{left:591.909000px;}
.xc1_c00418{left:594.208011px;}
.x6c_c00418{left:601.560000px;}
.x93_c00418{left:604.530000px;}
.x15_c00418{left:608.408280px;}
.x1f_c00418{left:610.645500px;}
.x5a_c00418{left:613.170000px;}
.xa1_c00418{left:614.794094px;}
.xba_c00418{left:616.949511px;}
.xd2_c00418{left:618.028265px;}
.x7e_c00418{left:625.402500px;}
.x35_c00418{left:633.179799px;}
.x74_c00418{left:635.310000px;}
.xb0_c00418{left:639.092151px;}
.x30_c00418{left:643.337626px;}
.x47_c00418{left:645.332976px;}
.x63_c00418{left:646.650000px;}
.x89_c00418{left:647.730000px;}
.xd3_c00418{left:651.508403px;}
.x3d_c00418{left:655.428353px;}
.x5b_c00418{left:657.990000px;}
.x7f_c00418{left:659.703000px;}
.xd9_c00418{left:663.117978px;}
.xa_c00418{left:665.628000px;}
.x4e_c00418{left:667.440000px;}
.x75_c00418{left:669.600000px;}
.xb1_c00418{left:672.572289px;}
.x20_c00418{left:675.165000px;}
.x64_c00418{left:679.860000px;}
.x16_c00418{left:686.974890px;}
.x8a_c00418{left:692.820000px;}
.xc2_c00418{left:695.453429px;}
.x21_c00418{left:697.069500px;}
.x2d_c00418{left:699.212073px;}
.x3e_c00418{left:700.245816px;}
.x76_c00418{left:702.810000px;}
.xaa_c00418{left:704.973680px;}
.xbb_c00418{left:706.050879px;}
.x6d_c00418{left:709.020000px;}
.x4f_c00418{left:711.450000px;}
.x9a_c00418{left:715.164000px;}
.xda_c00418{left:718.739208px;}
.x31_c00418{left:721.636126px;}
.x94_c00418{left:725.760000px;}
.xc3_c00418{left:728.395391px;}
.xe5_c00418{left:729.480000px;}
.xb_c00418{left:732.318000px;}
.x5c_c00418{left:735.480000px;}
.xab_c00418{left:738.993849px;}
.x80_c00418{left:747.432000px;}
.xdb_c00418{left:751.949336px;}
.x17_c00418{left:754.746052px;}
.x48_c00418{left:755.770341px;}
.x65_c00418{left:757.080000px;}
.xa2_c00418{left:760.866744px;}
.xcb_c00418{left:762.374532px;}
.x22_c00418{left:765.105000px;}
.x5d_c00418{left:768.420000px;}
.x77_c00418{left:770.040000px;}
.xe1_c00418{left:775.596095px;}
.x36_c00418{left:777.368240px;}
.x81_c00418{left:780.100500px;}
.x95_c00418{left:781.650000px;}
.xb2_c00418{left:783.814739px;}
.x50_c00418{left:790.020000px;}
.x66_c00418{left:791.640000px;}
.x8b_c00418{left:793.530000px;}
.xa3_c00418{left:794.886914px;}
.xcc_c00418{left:796.397291px;}
.x23_c00418{left:797.476500px;}
.x78_c00418{left:803.250000px;}
.xc4_c00418{left:806.699483px;}
.xc_c00418{left:808.981500px;}
.x37_c00418{left:810.040700px;}
.xb3_c00418{left:817.834908px;}
.x3f_c00418{left:822.019679px;}
.x8c_c00418{left:826.470000px;}
.xdc_c00418{left:829.981658px;}
.x18_c00418{left:831.971670px;}
.x51_c00418{left:834.030000px;}
.xac_c00418{left:838.625732px;}
.xbc_c00418{left:839.974442px;}
.xe2_c00418{left:851.437509px;}
@media print{
.v0_c00418{vertical-align:0.000000pt;}
.ls0_c00418{letter-spacing:0.000000pt;}
.ws0_c00418{word-spacing:0.000000pt;}
._0_c00418{width:29.270071pt;}
.fsf_c00418{font-size:42.670272pt;}
.fs0_c00418{font-size:58.667400pt;}
.fs8_c00418{font-size:64.000000pt;}
.fs1_c00418{font-size:64.000800pt;}
.fs9_c00418{font-size:64.001568pt;}
.fs5_c00418{font-size:64.003872pt;}
.fsb_c00418{font-size:69.335032pt;}
.fs4_c00418{font-size:69.337528pt;}
.fs6_c00418{font-size:74.666667pt;}
.fsc_c00418{font-size:74.668496pt;}
.fs2_c00418{font-size:74.671184pt;}
.fs7_c00418{font-size:80.000000pt;}
.fsa_c00418{font-size:80.001960pt;}
.fs3_c00418{font-size:80.004840pt;}
.fsd_c00418{font-size:90.668888pt;}
.fse_c00418{font-size:90.674328pt;}
.y0_c00418{bottom:0.000000pt;}
.yfa_c00418{bottom:50.158397pt;}
.yfb_c00418{bottom:50.530424pt;}
.yfc_c00418{bottom:52.177091pt;}
.yfd_c00418{bottom:52.426296pt;}
.yfe_c00418{bottom:52.935364pt;}
.yff_c00418{bottom:53.318600pt;}
.y100_c00418{bottom:54.335559pt;}
.y101_c00418{bottom:54.984244pt;}
.yf7_c00418{bottom:78.685791pt;}
.yf8_c00418{bottom:78.686047pt;}
.yf9_c00418{bottom:78.686343pt;}
.yf6_c00418{bottom:100.590663pt;}
.yf5_c00418{bottom:101.735235pt;}
.yf4_c00418{bottom:101.996968pt;}
.yf3_c00418{bottom:103.279583pt;}
.yf2_c00418{bottom:103.792441pt;}
.yf1_c00418{bottom:104.281432pt;}
.yf0_c00418{bottom:105.823388pt;}
.yef_c00418{bottom:106.331584pt;}
.yee_c00418{bottom:106.974339pt;}
.yed_c00418{bottom:108.481333pt;}
.yec_c00418{bottom:132.646633pt;}
.yeb_c00418{bottom:133.029997pt;}
.yea_c00418{bottom:133.319879pt;}
.ye9_c00418{bottom:133.818717pt;}
.ye8_c00418{bottom:134.813053pt;}
.ye7_c00418{bottom:135.297775pt;}
.ye6_c00418{bottom:135.600196pt;}
.ye5_c00418{bottom:136.772045pt;}
.ye4_c00418{bottom:137.074532pt;}
.ye3_c00418{bottom:137.950333pt;}
.ye2_c00418{bottom:138.238171pt;}
.ye1_c00418{bottom:138.718199pt;}
.ydd_c00418{bottom:164.990593pt;}
.ydc_c00418{bottom:164.990957pt;}
.yd5_c00418{bottom:164.990999pt;}
.ye0_c00418{bottom:164.991048pt;}
.ydb_c00418{bottom:164.991081pt;}
.yd6_c00418{bottom:164.991141pt;}
.yde_c00418{bottom:164.991189pt;}
.ydf_c00418{bottom:164.991225pt;}
.yd7_c00418{bottom:164.991577pt;}
.yd8_c00418{bottom:164.991613pt;}
.yd9_c00418{bottom:164.991623pt;}
.yda_c00418{bottom:164.991685pt;}
.yce_c00418{bottom:197.689600pt;}
.yd0_c00418{bottom:197.689628pt;}
.ycc_c00418{bottom:197.689652pt;}
.yd2_c00418{bottom:197.689763pt;}
.ycb_c00418{bottom:197.689856pt;}
.yd3_c00418{bottom:197.689905pt;}
.ycd_c00418{bottom:197.689981pt;}
.yd1_c00418{bottom:197.690073pt;}
.ycf_c00418{bottom:197.690205pt;}
.yd4_c00418{bottom:197.690564pt;}
.yca_c00418{bottom:228.331111pt;}
.yc9_c00418{bottom:228.573476pt;}
.yc8_c00418{bottom:228.970597pt;}
.yc7_c00418{bottom:229.912904pt;}
.yc6_c00418{bottom:230.394668pt;}
.yc5_c00418{bottom:230.785107pt;}
.yc4_c00418{bottom:231.022592pt;}
.yc3_c00418{bottom:231.412984pt;}
.yc2_c00418{bottom:232.028039pt;}
.yc1_c00418{bottom:232.267316pt;}
.yc0_c00418{bottom:232.577956pt;}
.ybf_c00418{bottom:232.798997pt;}
.ybe_c00418{bottom:260.529700pt;}
.ybd_c00418{bottom:260.673929pt;}
.ybc_c00418{bottom:261.022481pt;}
.ybb_c00418{bottom:261.168784pt;}
.yba_c00418{bottom:261.521427pt;}
.yb9_c00418{bottom:261.618747pt;}
.yb8_c00418{bottom:262.003509pt;}
.yb7_c00418{bottom:262.153519pt;}
.yb6_c00418{bottom:262.691857pt;}
.yb5_c00418{bottom:263.087216pt;}
.yb4_c00418{bottom:263.226031pt;}
.yb3_c00418{bottom:263.518477pt;}
.yad_c00418{bottom:294.812211pt;}
.yab_c00418{bottom:294.812272pt;}
.yb0_c00418{bottom:294.812452pt;}
.yae_c00418{bottom:294.812460pt;}
.yaf_c00418{bottom:294.812496pt;}
.yb2_c00418{bottom:294.812568pt;}
.yac_c00418{bottom:294.812601pt;}
.yb1_c00418{bottom:294.812665pt;}
.ya9_c00418{bottom:294.812707pt;}
.yaa_c00418{bottom:294.812796pt;}
.ya8_c00418{bottom:294.812911pt;}
.ya7_c00418{bottom:294.813141pt;}
.ya6_c00418{bottom:294.813479pt;}
.ya5_c00418{bottom:294.813683pt;}
.y9a_c00418{bottom:327.581368pt;}
.y9b_c00418{bottom:327.581484pt;}
.y9c_c00418{bottom:327.581556pt;}
.y9d_c00418{bottom:327.581769pt;}
.y9e_c00418{bottom:327.582099pt;}
.ya3_c00418{bottom:327.582261pt;}
.ya1_c00418{bottom:327.582403pt;}
.y9f_c00418{bottom:327.582561pt;}
.ya4_c00418{bottom:327.582591pt;}
.ya0_c00418{bottom:327.582713pt;}
.ya2_c00418{bottom:327.582812pt;}
.y90_c00418{bottom:357.462211pt;}
.y8f_c00418{bottom:357.462468pt;}
.y91_c00418{bottom:357.462469pt;}
.y92_c00418{bottom:357.463119pt;}
.y96_c00418{bottom:357.463183pt;}
.y93_c00418{bottom:357.463555pt;}
.y97_c00418{bottom:357.463601pt;}
.y95_c00418{bottom:357.463680pt;}
.y94_c00418{bottom:357.463697pt;}
.y98_c00418{bottom:357.463931pt;}
.y99_c00418{bottom:357.464029pt;}
.y8d_c00418{bottom:389.316067pt;}
.y89_c00418{bottom:389.316384pt;}
.y8e_c00418{bottom:389.316396pt;}
.y83_c00418{bottom:389.316452pt;}
.y8a_c00418{bottom:389.316483pt;}
.y8c_c00418{bottom:389.316617pt;}
.y88_c00418{bottom:389.316695pt;}
.y8b_c00418{bottom:389.316919pt;}
.y84_c00418{bottom:389.316941pt;}
.y87_c00418{bottom:389.317299pt;}
.y85_c00418{bottom:389.317431pt;}
.y86_c00418{bottom:389.317467pt;}
.y82_c00418{bottom:419.874184pt;}
.y81_c00418{bottom:420.157945pt;}
.y80_c00418{bottom:420.364613pt;}
.y7f_c00418{bottom:421.057277pt;}
.y7e_c00418{bottom:421.883557pt;}
.y7d_c00418{bottom:422.157435pt;}
.y7c_c00418{bottom:422.362376pt;}
.y7b_c00418{bottom:422.910019pt;}
.y7a_c00418{bottom:423.120000pt;}
.y79_c00418{bottom:455.061333pt;}
.y78_c00418{bottom:483.596000pt;}
.y77_c00418{bottom:517.061333pt;}
.y6b_c00418{bottom:544.560000pt;}
.y6c_c00418{bottom:544.710667pt;}
.y6d_c00418{bottom:545.005333pt;}
.y6e_c00418{bottom:545.392000pt;}
.y6f_c00418{bottom:545.538667pt;}
.y70_c00418{bottom:545.785333pt;}
.y71_c00418{bottom:546.176000pt;}
.y72_c00418{bottom:546.470667pt;}
.y73_c00418{bottom:546.620000pt;}
.y74_c00418{bottom:546.772000pt;}
.y75_c00418{bottom:547.161333pt;}
.y76_c00418{bottom:547.306667pt;}
.y6a_c00418{bottom:578.880000pt;}
.y69_c00418{bottom:611.969333pt;}
.y67_c00418{bottom:640.086667pt;}
.y68_c00418{bottom:642.653333pt;}
.y66_c00418{bottom:676.202667pt;}
.y65_c00418{bottom:707.300000pt;}
.y5e_c00418{bottom:736.082667pt;}
.y5f_c00418{bottom:736.773333pt;}
.y60_c00418{bottom:737.246667pt;}
.y61_c00418{bottom:737.830667pt;}
.y62_c00418{bottom:738.290667pt;}
.y63_c00418{bottom:738.762667pt;}
.y64_c00418{bottom:739.972000pt;}
.y5d_c00418{bottom:771.582667pt;}
.y54_c00418{bottom:803.445440pt;}
.y55_c00418{bottom:803.445609pt;}
.y53_c00418{bottom:803.445908pt;}
.y51_c00418{bottom:803.446088pt;}
.y56_c00418{bottom:803.446152pt;}
.y52_c00418{bottom:803.446284pt;}
.y57_c00418{bottom:803.446537pt;}
.y5a_c00418{bottom:803.446929pt;}
.y58_c00418{bottom:803.447172pt;}
.y5c_c00418{bottom:803.447256pt;}
.y59_c00418{bottom:803.447504pt;}
.y5b_c00418{bottom:803.447555pt;}
.y48_c00418{bottom:831.351607pt;}
.y49_c00418{bottom:831.543292pt;}
.y4a_c00418{bottom:831.686652pt;}
.y4b_c00418{bottom:832.099005pt;}
.y4c_c00418{bottom:832.979655pt;}
.y4d_c00418{bottom:833.811788pt;}
.y4e_c00418{bottom:834.428668pt;}
.y4f_c00418{bottom:834.708197pt;}
.y50_c00418{bottom:835.465489pt;}
.y47_c00418{bottom:865.653361pt;}
.y41_c00418{bottom:865.653492pt;}
.y44_c00418{bottom:865.653597pt;}
.y46_c00418{bottom:865.653936pt;}
.y42_c00418{bottom:865.653937pt;}
.y43_c00418{bottom:865.653947pt;}
.y40_c00418{bottom:865.653975pt;}
.y45_c00418{bottom:865.654152pt;}
.y3f_c00418{bottom:865.654523pt;}
.y3e_c00418{bottom:865.654685pt;}
.y3d_c00418{bottom:865.654795pt;}
.y3c_c00418{bottom:865.655289pt;}
.y31_c00418{bottom:892.317903pt;}
.y32_c00418{bottom:892.945900pt;}
.y33_c00418{bottom:893.814372pt;}
.y34_c00418{bottom:894.134223pt;}
.y35_c00418{bottom:894.464237pt;}
.y36_c00418{bottom:895.547209pt;}
.y37_c00418{bottom:896.718724pt;}
.y38_c00418{bottom:897.043371pt;}
.y39_c00418{bottom:897.808956pt;}
.y3a_c00418{bottom:898.241916pt;}
.y3b_c00418{bottom:898.666604pt;}
.y25_c00418{bottom:924.238272pt;}
.y26_c00418{bottom:924.612735pt;}
.y27_c00418{bottom:924.812661pt;}
.y28_c00418{bottom:925.013805pt;}
.y29_c00418{bottom:925.304425pt;}
.y2a_c00418{bottom:926.187901pt;}
.y2b_c00418{bottom:926.667960pt;}
.y2c_c00418{bottom:926.969831pt;}
.y2d_c00418{bottom:927.643421pt;}
.y2e_c00418{bottom:928.047161pt;}
.y2f_c00418{bottom:928.734216pt;}
.y30_c00418{bottom:929.032169pt;}
.y19_c00418{bottom:955.441333pt;}
.y1a_c00418{bottom:956.394549pt;}
.y1b_c00418{bottom:956.706172pt;}
.y1c_c00418{bottom:958.007707pt;}
.y1d_c00418{bottom:958.871427pt;}
.y1e_c00418{bottom:959.092703pt;}
.y1f_c00418{bottom:959.522964pt;}
.y20_c00418{bottom:959.852685pt;}
.y21_c00418{bottom:960.483543pt;}
.y22_c00418{bottom:960.697720pt;}
.y23_c00418{bottom:961.362956pt;}
.y24_c00418{bottom:961.679477pt;}
.yd_c00418{bottom:990.000047pt;}
.ye_c00418{bottom:990.167420pt;}
.yf_c00418{bottom:990.573773pt;}
.y10_c00418{bottom:990.749620pt;}
.y11_c00418{bottom:990.925353pt;}
.y12_c00418{bottom:991.575767pt;}
.y13_c00418{bottom:991.758820pt;}
.y14_c00418{bottom:992.051753pt;}
.y15_c00418{bottom:992.394687pt;}
.y16_c00418{bottom:992.813207pt;}
.y17_c00418{bottom:993.174413pt;}
.y18_c00418{bottom:993.585640pt;}
.y1_c00418{bottom:1014.000000pt;}
.y2_c00418{bottom:1014.199207pt;}
.y3_c00418{bottom:1014.387700pt;}
.y4_c00418{bottom:1014.535327pt;}
.y5_c00418{bottom:1014.826927pt;}
.y6_c00418{bottom:1015.120940pt;}
.y7_c00418{bottom:1015.410067pt;}
.y8_c00418{bottom:1015.514540pt;}
.y9_c00418{bottom:1015.759340pt;}
.ya_c00418{bottom:1016.254920pt;}
.yb_c00418{bottom:1016.551320pt;}
.yc_c00418{bottom:1016.892047pt;}
.h11_c00418{height:42.670272pt;}
.h2_c00418{height:58.667400pt;}
.ha_c00418{height:64.000000pt;}
.h3_c00418{height:64.000800pt;}
.hb_c00418{height:64.001568pt;}
.h7_c00418{height:64.003872pt;}
.hd_c00418{height:69.335032pt;}
.h6_c00418{height:69.337528pt;}
.h8_c00418{height:74.666667pt;}
.he_c00418{height:74.668496pt;}
.h4_c00418{height:74.671184pt;}
.h9_c00418{height:80.000000pt;}
.hc_c00418{height:80.001960pt;}
.h5_c00418{height:80.004840pt;}
.hf_c00418{height:90.668888pt;}
.h10_c00418{height:90.674328pt;}
.h1_c00418{height:1112.000000pt;}
.h0_c00418{height:1112.133333pt;}
.w0_c00418{width:813.333333pt;}
.x0_c00418{left:0.000000pt;}
.x40_c00418{left:133.442739pt;}
.x1_c00418{left:140.685333pt;}
.xd_c00418{left:141.881360pt;}
.x38_c00418{left:143.335679pt;}
.x6e_c00418{left:144.480000pt;}
.x67_c00418{left:145.496000pt;}
.xa4_c00418{left:147.353112pt;}
.xb4_c00418{left:148.550651pt;}
.xc5_c00418{left:149.452613pt;}
.xe8_c00418{left:150.943485pt;}
.x5e_c00418{left:163.920000pt;}
.xe_c00418{left:169.755887pt;}
.x39_c00418{left:170.702215pt;}
.x79_c00418{left:173.833333pt;}
.xa5_c00418{left:176.153188pt;}
.xcd_c00418{left:177.590905pt;}
.x24_c00418{left:179.628988pt;}
.x2_c00418{left:180.526667pt;}
.x49_c00418{left:181.680000pt;}
.x9b_c00418{left:184.557905pt;}
.xd4_c00418{left:188.387889pt;}
.x3a_c00418{left:191.129776pt;}
.x8d_c00418{left:193.920000pt;}
.xdd_c00418{left:197.673083pt;}
.x25_c00418{left:199.622541pt;}
.x52_c00418{left:201.258667pt;}
.x6f_c00418{left:203.520000pt;}
.xad_c00418{left:205.192123pt;}
.xbd_c00418{left:206.568391pt;}
.xce_c00418{left:207.831056pt;}
.x8e_c00418{left:213.120000pt;}
.xe6_c00418{left:214.326325pt;}
.xc6_c00418{left:215.882813pt;}
.x3_c00418{left:218.225333pt;}
.x26_c00418{left:219.726761pt;}
.x82_c00418{left:221.760000pt;}
.x96_c00418{left:223.680000pt;}
.xb5_c00418{left:224.631708pt;}
.xde_c00418{left:226.411143pt;}
.x19_c00418{left:228.420000pt;}
.x4a_c00418{left:229.440000pt;}
.x41_c00418{left:230.407805pt;}
.x7a_c00418{left:232.880000pt;}
.xbe_c00418{left:234.399449pt;}
.xf_c00418{left:237.426213pt;}
.x53_c00418{left:240.653333pt;}
.x69_c00418{left:241.680000pt;}
.xc7_c00418{left:245.874608pt;}
.x4_c00418{left:247.750667pt;}
.x27_c00418{left:248.813751pt;}
.x3b_c00418{left:249.952357pt;}
.x9c_c00418{left:253.438617pt;}
.x1a_c00418{left:256.749333pt;}
.x42_c00418{left:258.489875pt;}
.xd5_c00418{left:264.710299pt;}
.x10_c00418{left:266.728733pt;}
.x32_c00418{left:268.329515pt;}
.x83_c00418{left:271.440000pt;}
.xa6_c00418{left:273.835309pt;}
.x2e_c00418{left:278.310335pt;}
.x68_c00418{left:280.590667pt;}
.x8f_c00418{left:281.760000pt;}
.xb6_c00418{left:282.953231pt;}
.x54_c00418{left:289.374667pt;}
.xd6_c00418{left:294.230412pt;}
.x11_c00418{left:296.008587pt;}
.x33_c00418{left:297.131672pt;}
.x5f_c00418{left:299.040000pt;}
.x84_c00418{left:300.480000pt;}
.xcf_c00418{left:305.033149pt;}
.x5_c00418{left:306.070667pt;}
.x2f_c00418{left:307.387668pt;}
.x70_c00418{left:310.560000pt;}
.x97_c00418{left:311.520000pt;}
.xbf_c00418{left:313.356551pt;}
.xe3_c00418{left:314.994667pt;}
.xa7_c00418{left:322.316356pt;}
.xe9_c00418{left:325.471787pt;}
.x43_c00418{left:328.574352pt;}
.xae_c00418{left:332.395691pt;}
.x28_c00418{left:337.130719pt;}
.x7b_c00418{left:339.442667pt;}
.x98_c00418{left:340.560000pt;}
.x90_c00418{left:341.520000pt;}
.xdf_c00418{left:344.259336pt;}
.x4b_c00418{left:348.000000pt;}
.x99_c00418{left:350.306667pt;}
.xb7_c00418{left:351.353915pt;}
.xd7_c00418{left:354.232019pt;}
.x60_c00418{left:357.360000pt;}
.x57_c00418{left:358.320000pt;}
.x6_c00418{left:364.873333pt;}
.x55_c00418{left:367.126667pt;}
.x9d_c00418{left:370.801700pt;}
.x1b_c00418{left:375.070667pt;}
.x85_c00418{left:378.960000pt;}
.x29_c00418{left:385.136580pt;}
.x7c_c00418{left:388.880000pt;}
.xa8_c00418{left:390.237021pt;}
.xea_c00418{left:394.086979pt;}
.x44_c00418{left:395.298419pt;}
.x6a_c00418{left:398.640000pt;}
.x9e_c00418{left:399.841785pt;}
.xc8_c00418{left:401.149516pt;}
.xd0_c00418{left:402.475261pt;}
.x12_c00418{left:404.490713pt;}
.x71_c00418{left:407.760000pt;}
.x86_c00418{left:408.960000pt;}
.xaf_c00418{left:410.638193pt;}
.x2a_c00418{left:415.367584pt;}
.x61_c00418{left:416.640000pt;}
.x91_c00418{left:417.840000pt;}
.xb8_c00418{left:420.955988pt;}
.x7_c00418{left:422.698667pt;}
.x9f_c00418{left:429.601908pt;}
.x13_c00418{left:434.967893pt;}
.x4c_c00418{left:436.320000pt;}
.x87_c00418{left:438.000000pt;}
.xe7_c00418{left:440.905948pt;}
.xd8_c00418{left:442.313664pt;}
.x8_c00418{left:443.593333pt;}
.xc9_c00418{left:449.878504pt;}
.xc0_c00418{left:451.122483pt;}
.x1c_c00418{left:453.590667pt;}
.x58_c00418{left:456.240000pt;}
.xd1_c00418{left:461.036793pt;}
.x34_c00418{left:464.421245pt;}
.x4d_c00418{left:465.600000pt;}
.x56_c00418{left:467.941333pt;}
.xe4_c00418{left:472.698667pt;}
.x1d_c00418{left:473.706667pt;}
.x92_c00418{left:477.600000pt;}
.x2b_c00418{left:482.785665pt;}
.x14_c00418{left:483.687647pt;}
.x59_c00418{left:485.280000pt;}
.x72_c00418{left:487.200000pt;}
.xe0_c00418{left:491.628237pt;}
.x9_c00418{left:492.553333pt;}
.x45_c00418{left:493.463617pt;}
.x3c_c00418{left:494.519108pt;}
.x88_c00418{left:496.320000pt;}
.xb9_c00418{left:499.198491pt;}
.x62_c00418{left:505.440000pt;}
.x6b_c00418{left:506.400000pt;}
.xa9_c00418{left:507.840113pt;}
.xca_c00418{left:510.130084pt;}
.x1e_c00418{left:512.821333pt;}
.x46_c00418{left:514.344807pt;}
.x73_c00418{left:516.480000pt;}
.xa0_c00418{left:518.163581pt;}
.xeb_c00418{left:522.208944pt;}
.x2c_c00418{left:523.126105pt;}
.x7d_c00418{left:526.141333pt;}
.xc1_c00418{left:528.184899pt;}
.x6c_c00418{left:534.720000pt;}
.x93_c00418{left:537.360000pt;}
.x15_c00418{left:540.807360pt;}
.x1f_c00418{left:542.796000pt;}
.x5a_c00418{left:545.040000pt;}
.xa1_c00418{left:546.483639pt;}
.xba_c00418{left:548.399565pt;}
.xd2_c00418{left:549.358457pt;}
.x7e_c00418{left:555.913333pt;}
.x35_c00418{left:562.826488pt;}
.x74_c00418{left:564.720000pt;}
.xb0_c00418{left:568.081912pt;}
.x30_c00418{left:571.855668pt;}
.x47_c00418{left:573.629312pt;}
.x63_c00418{left:574.800000pt;}
.x89_c00418{left:575.760000pt;}
.xd3_c00418{left:579.118580pt;}
.x3d_c00418{left:582.602980pt;}
.x5b_c00418{left:584.880000pt;}
.x7f_c00418{left:586.402667pt;}
.xd9_c00418{left:589.438203pt;}
.xa_c00418{left:591.669333pt;}
.x4e_c00418{left:593.280000pt;}
.x75_c00418{left:595.200000pt;}
.xb1_c00418{left:597.842035pt;}
.x20_c00418{left:600.146667pt;}
.x64_c00418{left:604.320000pt;}
.x16_c00418{left:610.644347pt;}
.x8a_c00418{left:615.840000pt;}
.xc2_c00418{left:618.180825pt;}
.x21_c00418{left:619.617333pt;}
.x2d_c00418{left:621.521843pt;}
.x3e_c00418{left:622.440725pt;}
.x76_c00418{left:624.720000pt;}
.xaa_c00418{left:626.643271pt;}
.xbb_c00418{left:627.600781pt;}
.x6d_c00418{left:630.240000pt;}
.x4f_c00418{left:632.400000pt;}
.x9a_c00418{left:635.701333pt;}
.xda_c00418{left:638.879296pt;}
.x31_c00418{left:641.454335pt;}
.x94_c00418{left:645.120000pt;}
.xc3_c00418{left:647.462569pt;}
.xe5_c00418{left:648.426667pt;}
.xb_c00418{left:650.949333pt;}
.x5c_c00418{left:653.760000pt;}
.xab_c00418{left:656.883421pt;}
.x80_c00418{left:664.384000pt;}
.xdb_c00418{left:668.399409pt;}
.x17_c00418{left:670.885380pt;}
.x48_c00418{left:671.795859pt;}
.x65_c00418{left:672.960000pt;}
.xa2_c00418{left:676.325995pt;}
.xcb_c00418{left:677.666251pt;}
.x22_c00418{left:680.093333pt;}
.x5d_c00418{left:683.040000pt;}
.x77_c00418{left:684.480000pt;}
.xe1_c00418{left:689.418751pt;}
.x36_c00418{left:690.993991pt;}
.x81_c00418{left:693.422667pt;}
.x95_c00418{left:694.800000pt;}
.xb2_c00418{left:696.724212pt;}
.x50_c00418{left:702.240000pt;}
.x66_c00418{left:703.680000pt;}
.x8b_c00418{left:705.360000pt;}
.xa3_c00418{left:706.566145pt;}
.xcc_c00418{left:707.908703pt;}
.x23_c00418{left:708.868000pt;}
.x78_c00418{left:714.000000pt;}
.xc4_c00418{left:717.066207pt;}
.xc_c00418{left:719.094667pt;}
.x37_c00418{left:720.036177pt;}
.xb3_c00418{left:726.964363pt;}
.x3f_c00418{left:730.684159pt;}
.x8c_c00418{left:734.640000pt;}
.xdc_c00418{left:737.761473pt;}
.x18_c00418{left:739.530373pt;}
.x51_c00418{left:741.360000pt;}
.xac_c00418{left:745.445095pt;}
.xbc_c00418{left:746.643948pt;}
.xe2_c00418{left:756.833341pt;}
}





/* 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_c00419 {
    display:none;
  }
  .loading-indicator_c00419.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00419 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_c00419 { 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_c00419" -> "#page-container .classname_c00419")
 */
.pf_c00419 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00419 { /* 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_c00419.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00419 { /* 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_c00419 { /* 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_c00419 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00419 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00419 {overflow:visible;}
  }
}
.c_c00419 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00419 { /* 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_c00419:after { /* webkit #35443 */
  content: '';
}
.t_c00419:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00419 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 */
}
.__c00419 { /* 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_c00419 { /* info for Javascript */
  display:none;
}
.l_c00419 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00419 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00419 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00419: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_c00419 {
    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_c00419.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00419.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_c00419 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00419{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00419;src:url('chunks/assets/font_7c6b9abe6ee2a268480c528b.woff2')format("woff");}.ff1_c00419{font-family:ff1_c00419;line-height:1.000000;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;}
.m18_c00419{transform:matrix(0.021634,-0.000195,0.002250,0.249990,0,0);-ms-transform:matrix(0.021634,-0.000195,0.002250,0.249990,0,0);-webkit-transform:matrix(0.021634,-0.000195,0.002250,0.249990,0,0);}
.m2_c00419{transform:matrix(0.081610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.081610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.081610,0.000000,0.000000,0.250000,0,0);}
.m77_c00419{transform:matrix(0.093455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093455,0.000000,0.000000,0.250000,0,0);}
.m7c_c00419{transform:matrix(0.096790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096790,0.000000,0.000000,0.250000,0,0);}
.m75_c00419{transform:matrix(0.117155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117155,0.000000,0.000000,0.250000,0,0);}
.m0_c00419{transform:matrix(0.124310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124310,0.000000,0.000000,0.250000,0,0);}
.m20_c00419{transform:matrix(0.144989,-0.001305,0.002250,0.249990,0,0);-ms-transform:matrix(0.144989,-0.001305,0.002250,0.249990,0,0);-webkit-transform:matrix(0.144989,-0.001305,0.002250,0.249990,0,0);}
.m79_c00419{transform:matrix(0.147275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147275,0.000000,0.000000,0.250000,0,0);}
.m63_c00419{transform:matrix(0.163080,-0.001794,0.002750,0.249985,0,0);-ms-transform:matrix(0.163080,-0.001794,0.002750,0.249985,0,0);-webkit-transform:matrix(0.163080,-0.001794,0.002750,0.249985,0,0);}
.m3c_c00419{transform:matrix(0.168180,-0.001850,0.002750,0.249985,0,0);-ms-transform:matrix(0.168180,-0.001850,0.002750,0.249985,0,0);-webkit-transform:matrix(0.168180,-0.001850,0.002750,0.249985,0,0);}
.m3f_c00419{transform:matrix(0.169725,-0.001867,0.002750,0.249985,0,0);-ms-transform:matrix(0.169725,-0.001867,0.002750,0.249985,0,0);-webkit-transform:matrix(0.169725,-0.001867,0.002750,0.249985,0,0);}
.m1_c00419{transform:matrix(0.175645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175645,0.000000,0.000000,0.250000,0,0);}
.m3b_c00419{transform:matrix(0.175839,-0.001934,0.002750,0.249985,0,0);-ms-transform:matrix(0.175839,-0.001934,0.002750,0.249985,0,0);-webkit-transform:matrix(0.175839,-0.001934,0.002750,0.249985,0,0);}
.m56_c00419{transform:matrix(0.176279,-0.001939,0.002750,0.249985,0,0);-ms-transform:matrix(0.176279,-0.001939,0.002750,0.249985,0,0);-webkit-transform:matrix(0.176279,-0.001939,0.002750,0.249985,0,0);}
.m14_c00419{transform:matrix(0.179595,-0.003772,0.005249,0.249945,0,0);-ms-transform:matrix(0.179595,-0.003772,0.005249,0.249945,0,0);-webkit-transform:matrix(0.179595,-0.003772,0.005249,0.249945,0,0);}
.m1e_c00419{transform:matrix(0.184393,-0.001660,0.002250,0.249990,0,0);-ms-transform:matrix(0.184393,-0.001660,0.002250,0.249990,0,0);-webkit-transform:matrix(0.184393,-0.001660,0.002250,0.249990,0,0);}
.m2f_c00419{transform:matrix(0.184863,-0.001664,0.002250,0.249990,0,0);-ms-transform:matrix(0.184863,-0.001664,0.002250,0.249990,0,0);-webkit-transform:matrix(0.184863,-0.001664,0.002250,0.249990,0,0);}
.m29_c00419{transform:matrix(0.186262,-0.001676,0.002250,0.249990,0,0);-ms-transform:matrix(0.186262,-0.001676,0.002250,0.249990,0,0);-webkit-transform:matrix(0.186262,-0.001676,0.002250,0.249990,0,0);}
.mf_c00419{transform:matrix(0.188194,-0.003952,0.005249,0.249945,0,0);-ms-transform:matrix(0.188194,-0.003952,0.005249,0.249945,0,0);-webkit-transform:matrix(0.188194,-0.003952,0.005249,0.249945,0,0);}
.m57_c00419{transform:matrix(0.189934,-0.002089,0.002750,0.249985,0,0);-ms-transform:matrix(0.189934,-0.002089,0.002750,0.249985,0,0);-webkit-transform:matrix(0.189934,-0.002089,0.002750,0.249985,0,0);}
.m2d_c00419{transform:matrix(0.192207,-0.001730,0.002250,0.249990,0,0);-ms-transform:matrix(0.192207,-0.001730,0.002250,0.249990,0,0);-webkit-transform:matrix(0.192207,-0.001730,0.002250,0.249990,0,0);}
.m4e_c00419{transform:matrix(0.193703,-0.002131,0.002750,0.249985,0,0);-ms-transform:matrix(0.193703,-0.002131,0.002750,0.249985,0,0);-webkit-transform:matrix(0.193703,-0.002131,0.002750,0.249985,0,0);}
.m12_c00419{transform:matrix(0.194682,-0.004088,0.005249,0.249945,0,0);-ms-transform:matrix(0.194682,-0.004088,0.005249,0.249945,0,0);-webkit-transform:matrix(0.194682,-0.004088,0.005249,0.249945,0,0);}
.m1a_c00419{transform:matrix(0.194692,-0.001752,0.002250,0.249990,0,0);-ms-transform:matrix(0.194692,-0.001752,0.002250,0.249990,0,0);-webkit-transform:matrix(0.194692,-0.001752,0.002250,0.249990,0,0);}
.m70_c00419{transform:matrix(0.196368,-0.002160,0.002750,0.249985,0,0);-ms-transform:matrix(0.196368,-0.002160,0.002750,0.249985,0,0);-webkit-transform:matrix(0.196368,-0.002160,0.002750,0.249985,0,0);}
.m59_c00419{transform:matrix(0.196398,-0.002160,0.002750,0.249985,0,0);-ms-transform:matrix(0.196398,-0.002160,0.002750,0.249985,0,0);-webkit-transform:matrix(0.196398,-0.002160,0.002750,0.249985,0,0);}
.m2c_c00419{transform:matrix(0.196837,-0.001772,0.002250,0.249990,0,0);-ms-transform:matrix(0.196837,-0.001772,0.002250,0.249990,0,0);-webkit-transform:matrix(0.196837,-0.001772,0.002250,0.249990,0,0);}
.m62_c00419{transform:matrix(0.198103,-0.002179,0.002750,0.249985,0,0);-ms-transform:matrix(0.198103,-0.002179,0.002750,0.249985,0,0);-webkit-transform:matrix(0.198103,-0.002179,0.002750,0.249985,0,0);}
.m3e_c00419{transform:matrix(0.199598,-0.002196,0.002750,0.249985,0,0);-ms-transform:matrix(0.199598,-0.002196,0.002750,0.249985,0,0);-webkit-transform:matrix(0.199598,-0.002196,0.002750,0.249985,0,0);}
.m69_c00419{transform:matrix(0.200868,-0.002210,0.002750,0.249985,0,0);-ms-transform:matrix(0.200868,-0.002210,0.002750,0.249985,0,0);-webkit-transform:matrix(0.200868,-0.002210,0.002750,0.249985,0,0);}
.m51_c00419{transform:matrix(0.201223,-0.002213,0.002750,0.249985,0,0);-ms-transform:matrix(0.201223,-0.002213,0.002750,0.249985,0,0);-webkit-transform:matrix(0.201223,-0.002213,0.002750,0.249985,0,0);}
.md_c00419{transform:matrix(0.202215,-0.004247,0.005249,0.249945,0,0);-ms-transform:matrix(0.202215,-0.004247,0.005249,0.249945,0,0);-webkit-transform:matrix(0.202215,-0.004247,0.005249,0.249945,0,0);}
.m48_c00419{transform:matrix(0.202848,-0.002231,0.002750,0.249985,0,0);-ms-transform:matrix(0.202848,-0.002231,0.002750,0.249985,0,0);-webkit-transform:matrix(0.202848,-0.002231,0.002750,0.249985,0,0);}
.m42_c00419{transform:matrix(0.204503,-0.002250,0.002750,0.249985,0,0);-ms-transform:matrix(0.204503,-0.002250,0.002750,0.249985,0,0);-webkit-transform:matrix(0.204503,-0.002250,0.002750,0.249985,0,0);}
.m10_c00419{transform:matrix(0.206345,-0.004333,0.005249,0.249945,0,0);-ms-transform:matrix(0.206345,-0.004333,0.005249,0.249945,0,0);-webkit-transform:matrix(0.206345,-0.004333,0.005249,0.249945,0,0);}
.m58_c00419{transform:matrix(0.206782,-0.002275,0.002750,0.249985,0,0);-ms-transform:matrix(0.206782,-0.002275,0.002750,0.249985,0,0);-webkit-transform:matrix(0.206782,-0.002275,0.002750,0.249985,0,0);}
.m11_c00419{transform:matrix(0.209484,-0.004399,0.005249,0.249945,0,0);-ms-transform:matrix(0.209484,-0.004399,0.005249,0.249945,0,0);-webkit-transform:matrix(0.209484,-0.004399,0.005249,0.249945,0,0);}
.m1d_c00419{transform:matrix(0.209872,-0.001889,0.002250,0.249990,0,0);-ms-transform:matrix(0.209872,-0.001889,0.002250,0.249990,0,0);-webkit-transform:matrix(0.209872,-0.001889,0.002250,0.249990,0,0);}
.m67_c00419{transform:matrix(0.210567,-0.002316,0.002750,0.249985,0,0);-ms-transform:matrix(0.210567,-0.002316,0.002750,0.249985,0,0);-webkit-transform:matrix(0.210567,-0.002316,0.002750,0.249985,0,0);}
.m45_c00419{transform:matrix(0.214407,-0.002358,0.002750,0.249985,0,0);-ms-transform:matrix(0.214407,-0.002358,0.002750,0.249985,0,0);-webkit-transform:matrix(0.214407,-0.002358,0.002750,0.249985,0,0);}
.m5d_c00419{transform:matrix(0.214847,-0.002363,0.002750,0.249985,0,0);-ms-transform:matrix(0.214847,-0.002363,0.002750,0.249985,0,0);-webkit-transform:matrix(0.214847,-0.002363,0.002750,0.249985,0,0);}
.m55_c00419{transform:matrix(0.216832,-0.002385,0.002750,0.249985,0,0);-ms-transform:matrix(0.216832,-0.002385,0.002750,0.249985,0,0);-webkit-transform:matrix(0.216832,-0.002385,0.002750,0.249985,0,0);}
.m25_c00419{transform:matrix(0.217331,-0.001956,0.002250,0.249990,0,0);-ms-transform:matrix(0.217331,-0.001956,0.002250,0.249990,0,0);-webkit-transform:matrix(0.217331,-0.001956,0.002250,0.249990,0,0);}
.m41_c00419{transform:matrix(0.217592,-0.002394,0.002750,0.249985,0,0);-ms-transform:matrix(0.217592,-0.002394,0.002750,0.249985,0,0);-webkit-transform:matrix(0.217592,-0.002394,0.002750,0.249985,0,0);}
.me_c00419{transform:matrix(0.218202,-0.004582,0.005249,0.249945,0,0);-ms-transform:matrix(0.218202,-0.004582,0.005249,0.249945,0,0);-webkit-transform:matrix(0.218202,-0.004582,0.005249,0.249945,0,0);}
.m4d_c00419{transform:matrix(0.219657,-0.002416,0.002750,0.249985,0,0);-ms-transform:matrix(0.219657,-0.002416,0.002750,0.249985,0,0);-webkit-transform:matrix(0.219657,-0.002416,0.002750,0.249985,0,0);}
.m1b_c00419{transform:matrix(0.220746,-0.001987,0.002250,0.249990,0,0);-ms-transform:matrix(0.220746,-0.001987,0.002250,0.249990,0,0);-webkit-transform:matrix(0.220746,-0.001987,0.002250,0.249990,0,0);}
.m52_c00419{transform:matrix(0.222962,-0.002453,0.002750,0.249985,0,0);-ms-transform:matrix(0.222962,-0.002453,0.002750,0.249985,0,0);-webkit-transform:matrix(0.222962,-0.002453,0.002750,0.249985,0,0);}
.m5a_c00419{transform:matrix(0.223396,-0.002457,0.002750,0.249985,0,0);-ms-transform:matrix(0.223396,-0.002457,0.002750,0.249985,0,0);-webkit-transform:matrix(0.223396,-0.002457,0.002750,0.249985,0,0);}
.m5e_c00419{transform:matrix(0.223536,-0.002459,0.002750,0.249985,0,0);-ms-transform:matrix(0.223536,-0.002459,0.002750,0.249985,0,0);-webkit-transform:matrix(0.223536,-0.002459,0.002750,0.249985,0,0);}
.m40_c00419{transform:matrix(0.224231,-0.002467,0.002750,0.249985,0,0);-ms-transform:matrix(0.224231,-0.002467,0.002750,0.249985,0,0);-webkit-transform:matrix(0.224231,-0.002467,0.002750,0.249985,0,0);}
.m71_c00419{transform:matrix(0.225191,-0.002477,0.002750,0.249985,0,0);-ms-transform:matrix(0.225191,-0.002477,0.002750,0.249985,0,0);-webkit-transform:matrix(0.225191,-0.002477,0.002750,0.249985,0,0);}
.m43_c00419{transform:matrix(0.225286,-0.002478,0.002750,0.249985,0,0);-ms-transform:matrix(0.225286,-0.002478,0.002750,0.249985,0,0);-webkit-transform:matrix(0.225286,-0.002478,0.002750,0.249985,0,0);}
.m5f_c00419{transform:matrix(0.225931,-0.002485,0.002750,0.249985,0,0);-ms-transform:matrix(0.225931,-0.002485,0.002750,0.249985,0,0);-webkit-transform:matrix(0.225931,-0.002485,0.002750,0.249985,0,0);}
.m68_c00419{transform:matrix(0.225936,-0.002485,0.002750,0.249985,0,0);-ms-transform:matrix(0.225936,-0.002485,0.002750,0.249985,0,0);-webkit-transform:matrix(0.225936,-0.002485,0.002750,0.249985,0,0);}
.m46_c00419{transform:matrix(0.226086,-0.002487,0.002750,0.249985,0,0);-ms-transform:matrix(0.226086,-0.002487,0.002750,0.249985,0,0);-webkit-transform:matrix(0.226086,-0.002487,0.002750,0.249985,0,0);}
.m21_c00419{transform:matrix(0.226766,-0.002041,0.002250,0.249990,0,0);-ms-transform:matrix(0.226766,-0.002041,0.002250,0.249990,0,0);-webkit-transform:matrix(0.226766,-0.002041,0.002250,0.249990,0,0);}
.m5c_c00419{transform:matrix(0.228806,-0.002517,0.002750,0.249985,0,0);-ms-transform:matrix(0.228806,-0.002517,0.002750,0.249985,0,0);-webkit-transform:matrix(0.228806,-0.002517,0.002750,0.249985,0,0);}
.m4c_c00419{transform:matrix(0.229391,-0.002523,0.002750,0.249985,0,0);-ms-transform:matrix(0.229391,-0.002523,0.002750,0.249985,0,0);-webkit-transform:matrix(0.229391,-0.002523,0.002750,0.249985,0,0);}
.m33_c00419{transform:matrix(0.229936,-0.002529,0.002750,0.249985,0,0);-ms-transform:matrix(0.229936,-0.002529,0.002750,0.249985,0,0);-webkit-transform:matrix(0.229936,-0.002529,0.002750,0.249985,0,0);}
.m34_c00419{transform:matrix(0.230031,-0.002530,0.002750,0.249985,0,0);-ms-transform:matrix(0.230031,-0.002530,0.002750,0.249985,0,0);-webkit-transform:matrix(0.230031,-0.002530,0.002750,0.249985,0,0);}
.m65_c00419{transform:matrix(0.230996,-0.002541,0.002750,0.249985,0,0);-ms-transform:matrix(0.230996,-0.002541,0.002750,0.249985,0,0);-webkit-transform:matrix(0.230996,-0.002541,0.002750,0.249985,0,0);}
.m44_c00419{transform:matrix(0.231351,-0.002545,0.002750,0.249985,0,0);-ms-transform:matrix(0.231351,-0.002545,0.002750,0.249985,0,0);-webkit-transform:matrix(0.231351,-0.002545,0.002750,0.249985,0,0);}
.m49_c00419{transform:matrix(0.232626,-0.002559,0.002750,0.249985,0,0);-ms-transform:matrix(0.232626,-0.002559,0.002750,0.249985,0,0);-webkit-transform:matrix(0.232626,-0.002559,0.002750,0.249985,0,0);}
.m54_c00419{transform:matrix(0.234231,-0.002577,0.002750,0.249985,0,0);-ms-transform:matrix(0.234231,-0.002577,0.002750,0.249985,0,0);-webkit-transform:matrix(0.234231,-0.002577,0.002750,0.249985,0,0);}
.m16_c00419{transform:matrix(0.235043,-0.004936,0.005249,0.249945,0,0);-ms-transform:matrix(0.235043,-0.004936,0.005249,0.249945,0,0);-webkit-transform:matrix(0.235043,-0.004936,0.005249,0.249945,0,0);}
.m64_c00419{transform:matrix(0.235426,-0.002590,0.002750,0.249985,0,0);-ms-transform:matrix(0.235426,-0.002590,0.002750,0.249985,0,0);-webkit-transform:matrix(0.235426,-0.002590,0.002750,0.249985,0,0);}
.m6e_c00419{transform:matrix(0.241445,-0.002656,0.002750,0.249985,0,0);-ms-transform:matrix(0.241445,-0.002656,0.002750,0.249985,0,0);-webkit-transform:matrix(0.241445,-0.002656,0.002750,0.249985,0,0);}
.m28_c00419{transform:matrix(0.241820,-0.002176,0.002250,0.249990,0,0);-ms-transform:matrix(0.241820,-0.002176,0.002250,0.249990,0,0);-webkit-transform:matrix(0.241820,-0.002176,0.002250,0.249990,0,0);}
.m6a_c00419{transform:matrix(0.241940,-0.002661,0.002750,0.249985,0,0);-ms-transform:matrix(0.241940,-0.002661,0.002750,0.249985,0,0);-webkit-transform:matrix(0.241940,-0.002661,0.002750,0.249985,0,0);}
.m6d_c00419{transform:matrix(0.245525,-0.002701,0.002750,0.249985,0,0);-ms-transform:matrix(0.245525,-0.002701,0.002750,0.249985,0,0);-webkit-transform:matrix(0.245525,-0.002701,0.002750,0.249985,0,0);}
.m61_c00419{transform:matrix(0.247045,-0.002717,0.002750,0.249985,0,0);-ms-transform:matrix(0.247045,-0.002717,0.002750,0.249985,0,0);-webkit-transform:matrix(0.247045,-0.002717,0.002750,0.249985,0,0);}
.m7_c00419{transform:matrix(0.249070,-0.005230,0.005249,0.249945,0,0);-ms-transform:matrix(0.249070,-0.005230,0.005249,0.249945,0,0);-webkit-transform:matrix(0.249070,-0.005230,0.005249,0.249945,0,0);}
.m3a_c00419{transform:matrix(0.249385,-0.002743,0.002750,0.249985,0,0);-ms-transform:matrix(0.249385,-0.002743,0.002750,0.249985,0,0);-webkit-transform:matrix(0.249385,-0.002743,0.002750,0.249985,0,0);}
.m2a_c00419{transform:matrix(0.250130,-0.002251,0.002250,0.249990,0,0);-ms-transform:matrix(0.250130,-0.002251,0.002250,0.249990,0,0);-webkit-transform:matrix(0.250130,-0.002251,0.002250,0.249990,0,0);}
.m47_c00419{transform:matrix(0.250270,-0.002753,0.002750,0.249985,0,0);-ms-transform:matrix(0.250270,-0.002753,0.002750,0.249985,0,0);-webkit-transform:matrix(0.250270,-0.002753,0.002750,0.249985,0,0);}
.m35_c00419{transform:matrix(0.253465,-0.002788,0.002750,0.249985,0,0);-ms-transform:matrix(0.253465,-0.002788,0.002750,0.249985,0,0);-webkit-transform:matrix(0.253465,-0.002788,0.002750,0.249985,0,0);}
.m38_c00419{transform:matrix(0.253895,-0.002793,0.002750,0.249985,0,0);-ms-transform:matrix(0.253895,-0.002793,0.002750,0.249985,0,0);-webkit-transform:matrix(0.253895,-0.002793,0.002750,0.249985,0,0);}
.m30_c00419{transform:matrix(0.254950,-0.002295,0.002250,0.249990,0,0);-ms-transform:matrix(0.254950,-0.002295,0.002250,0.249990,0,0);-webkit-transform:matrix(0.254950,-0.002295,0.002250,0.249990,0,0);}
.m4a_c00419{transform:matrix(0.255080,-0.002806,0.002750,0.249985,0,0);-ms-transform:matrix(0.255080,-0.002806,0.002750,0.249985,0,0);-webkit-transform:matrix(0.255080,-0.002806,0.002750,0.249985,0,0);}
.ma_c00419{transform:matrix(0.256268,-0.005382,0.005249,0.249945,0,0);-ms-transform:matrix(0.256268,-0.005382,0.005249,0.249945,0,0);-webkit-transform:matrix(0.256268,-0.005382,0.005249,0.249945,0,0);}
.m5b_c00419{transform:matrix(0.258464,-0.002843,0.002750,0.249985,0,0);-ms-transform:matrix(0.258464,-0.002843,0.002750,0.249985,0,0);-webkit-transform:matrix(0.258464,-0.002843,0.002750,0.249985,0,0);}
.m22_c00419{transform:matrix(0.261134,-0.002350,0.002250,0.249990,0,0);-ms-transform:matrix(0.261134,-0.002350,0.002250,0.249990,0,0);-webkit-transform:matrix(0.261134,-0.002350,0.002250,0.249990,0,0);}
.m5_c00419{transform:matrix(0.261142,-0.005484,0.005249,0.249945,0,0);-ms-transform:matrix(0.261142,-0.005484,0.005249,0.249945,0,0);-webkit-transform:matrix(0.261142,-0.005484,0.005249,0.249945,0,0);}
.m6b_c00419{transform:matrix(0.261389,-0.002875,0.002750,0.249985,0,0);-ms-transform:matrix(0.261389,-0.002875,0.002750,0.249985,0,0);-webkit-transform:matrix(0.261389,-0.002875,0.002750,0.249985,0,0);}
.m50_c00419{transform:matrix(0.266239,-0.002929,0.002750,0.249985,0,0);-ms-transform:matrix(0.266239,-0.002929,0.002750,0.249985,0,0);-webkit-transform:matrix(0.266239,-0.002929,0.002750,0.249985,0,0);}
.m53_c00419{transform:matrix(0.266274,-0.002929,0.002750,0.249985,0,0);-ms-transform:matrix(0.266274,-0.002929,0.002750,0.249985,0,0);-webkit-transform:matrix(0.266274,-0.002929,0.002750,0.249985,0,0);}
.m4_c00419{transform:matrix(0.266916,-0.005605,0.005249,0.249945,0,0);-ms-transform:matrix(0.266916,-0.005605,0.005249,0.249945,0,0);-webkit-transform:matrix(0.266916,-0.005605,0.005249,0.249945,0,0);}
.m6c_c00419{transform:matrix(0.267019,-0.002937,0.002750,0.249985,0,0);-ms-transform:matrix(0.267019,-0.002937,0.002750,0.249985,0,0);-webkit-transform:matrix(0.267019,-0.002937,0.002750,0.249985,0,0);}
.m4f_c00419{transform:matrix(0.267469,-0.002942,0.002750,0.249985,0,0);-ms-transform:matrix(0.267469,-0.002942,0.002750,0.249985,0,0);-webkit-transform:matrix(0.267469,-0.002942,0.002750,0.249985,0,0);}
.m7a_c00419{transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);}
.m13_c00419{transform:matrix(0.273990,-0.005754,0.005249,0.249945,0,0);-ms-transform:matrix(0.273990,-0.005754,0.005249,0.249945,0,0);-webkit-transform:matrix(0.273990,-0.005754,0.005249,0.249945,0,0);}
.m15_c00419{transform:matrix(0.279853,-0.005877,0.005249,0.249945,0,0);-ms-transform:matrix(0.279853,-0.005877,0.005249,0.249945,0,0);-webkit-transform:matrix(0.279853,-0.005877,0.005249,0.249945,0,0);}
.m37_c00419{transform:matrix(0.284803,-0.003133,0.002750,0.249985,0,0);-ms-transform:matrix(0.284803,-0.003133,0.002750,0.249985,0,0);-webkit-transform:matrix(0.284803,-0.003133,0.002750,0.249985,0,0);}
.m23_c00419{transform:matrix(0.285783,-0.002572,0.002250,0.249990,0,0);-ms-transform:matrix(0.285783,-0.002572,0.002250,0.249990,0,0);-webkit-transform:matrix(0.285783,-0.002572,0.002250,0.249990,0,0);}
.m7d_c00419{transform:matrix(0.288140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288140,0.000000,0.000000,0.250000,0,0);}
.m6_c00419{transform:matrix(0.289201,-0.006073,0.005249,0.249945,0,0);-ms-transform:matrix(0.289201,-0.006073,0.005249,0.249945,0,0);-webkit-transform:matrix(0.289201,-0.006073,0.005249,0.249945,0,0);}
.m1c_c00419{transform:matrix(0.293253,-0.002639,0.002250,0.249990,0,0);-ms-transform:matrix(0.293253,-0.002639,0.002250,0.249990,0,0);-webkit-transform:matrix(0.293253,-0.002639,0.002250,0.249990,0,0);}
.mb_c00419{transform:matrix(0.297269,-0.006243,0.005249,0.249945,0,0);-ms-transform:matrix(0.297269,-0.006243,0.005249,0.249945,0,0);-webkit-transform:matrix(0.297269,-0.006243,0.005249,0.249945,0,0);}
.m24_c00419{transform:matrix(0.300183,-0.002702,0.002250,0.249990,0,0);-ms-transform:matrix(0.300183,-0.002702,0.002250,0.249990,0,0);-webkit-transform:matrix(0.300183,-0.002702,0.002250,0.249990,0,0);}
.m6f_c00419{transform:matrix(0.302192,-0.003324,0.002750,0.249985,0,0);-ms-transform:matrix(0.302192,-0.003324,0.002750,0.249985,0,0);-webkit-transform:matrix(0.302192,-0.003324,0.002750,0.249985,0,0);}
.m9_c00419{transform:matrix(0.304463,-0.006394,0.005249,0.249945,0,0);-ms-transform:matrix(0.304463,-0.006394,0.005249,0.249945,0,0);-webkit-transform:matrix(0.304463,-0.006394,0.005249,0.249945,0,0);}
.m78_c00419{transform:matrix(0.305535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305535,0.000000,0.000000,0.250000,0,0);}
.m4b_c00419{transform:matrix(0.320656,-0.003527,0.002750,0.249985,0,0);-ms-transform:matrix(0.320656,-0.003527,0.002750,0.249985,0,0);-webkit-transform:matrix(0.320656,-0.003527,0.002750,0.249985,0,0);}
.m60_c00419{transform:matrix(0.323080,-0.003554,0.002750,0.249985,0,0);-ms-transform:matrix(0.323080,-0.003554,0.002750,0.249985,0,0);-webkit-transform:matrix(0.323080,-0.003554,0.002750,0.249985,0,0);}
.m17_c00419{transform:matrix(0.326898,-0.006865,0.005249,0.249945,0,0);-ms-transform:matrix(0.326898,-0.006865,0.005249,0.249945,0,0);-webkit-transform:matrix(0.326898,-0.006865,0.005249,0.249945,0,0);}
.m19_c00419{transform:matrix(0.327057,-0.002944,0.002250,0.249990,0,0);-ms-transform:matrix(0.327057,-0.002944,0.002250,0.249990,0,0);-webkit-transform:matrix(0.327057,-0.002944,0.002250,0.249990,0,0);}
.m31_c00419{transform:matrix(0.345871,-0.003113,0.002250,0.249990,0,0);-ms-transform:matrix(0.345871,-0.003113,0.002250,0.249990,0,0);-webkit-transform:matrix(0.345871,-0.003113,0.002250,0.249990,0,0);}
.m39_c00419{transform:matrix(0.367258,-0.004040,0.002750,0.249985,0,0);-ms-transform:matrix(0.367258,-0.004040,0.002750,0.249985,0,0);-webkit-transform:matrix(0.367258,-0.004040,0.002750,0.249985,0,0);}
.m3_c00419{transform:matrix(0.406735,-0.008541,0.005249,0.249945,0,0);-ms-transform:matrix(0.406735,-0.008541,0.005249,0.249945,0,0);-webkit-transform:matrix(0.406735,-0.008541,0.005249,0.249945,0,0);}
.m7b_c00419{transform:matrix(0.410860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410860,0.000000,0.000000,0.250000,0,0);}
.m1f_c00419{transform:matrix(0.418918,-0.003770,0.002250,0.249990,0,0);-ms-transform:matrix(0.418918,-0.003770,0.002250,0.249990,0,0);-webkit-transform:matrix(0.418918,-0.003770,0.002250,0.249990,0,0);}
.m66_c00419{transform:matrix(0.424954,-0.004674,0.002750,0.249985,0,0);-ms-transform:matrix(0.424954,-0.004674,0.002750,0.249985,0,0);-webkit-transform:matrix(0.424954,-0.004674,0.002750,0.249985,0,0);}
.m8_c00419{transform:matrix(0.430265,-0.009036,0.005249,0.249945,0,0);-ms-transform:matrix(0.430265,-0.009036,0.005249,0.249945,0,0);-webkit-transform:matrix(0.430265,-0.009036,0.005249,0.249945,0,0);}
.m3d_c00419{transform:matrix(0.435444,-0.004790,0.002750,0.249985,0,0);-ms-transform:matrix(0.435444,-0.004790,0.002750,0.249985,0,0);-webkit-transform:matrix(0.435444,-0.004790,0.002750,0.249985,0,0);}
.m72_c00419{transform:matrix(0.449303,-0.004942,0.002750,0.249985,0,0);-ms-transform:matrix(0.449303,-0.004942,0.002750,0.249985,0,0);-webkit-transform:matrix(0.449303,-0.004942,0.002750,0.249985,0,0);}
.m73_c00419{transform:matrix(0.456945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456945,0.000000,0.000000,0.250000,0,0);}
.m2b_c00419{transform:matrix(0.465671,-0.004191,0.002250,0.249990,0,0);-ms-transform:matrix(0.465671,-0.004191,0.002250,0.249990,0,0);-webkit-transform:matrix(0.465671,-0.004191,0.002250,0.249990,0,0);}
.m7e_c00419{transform:matrix(0.474240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474240,0.000000,0.000000,0.250000,0,0);}
.m27_c00419{transform:matrix(0.502040,-0.004518,0.002250,0.249990,0,0);-ms-transform:matrix(0.502040,-0.004518,0.002250,0.249990,0,0);-webkit-transform:matrix(0.502040,-0.004518,0.002250,0.249990,0,0);}
.mc_c00419{transform:matrix(0.505389,-0.010613,0.005249,0.249945,0,0);-ms-transform:matrix(0.505389,-0.010613,0.005249,0.249945,0,0);-webkit-transform:matrix(0.505389,-0.010613,0.005249,0.249945,0,0);}
.m2e_c00419{transform:matrix(0.511424,-0.004603,0.002250,0.249990,0,0);-ms-transform:matrix(0.511424,-0.004603,0.002250,0.249990,0,0);-webkit-transform:matrix(0.511424,-0.004603,0.002250,0.249990,0,0);}
.m74_c00419{transform:matrix(0.517395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517395,0.000000,0.000000,0.250000,0,0);}
.m76_c00419{transform:matrix(0.742160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.742160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.742160,0.000000,0.000000,0.250000,0,0);}
.m26_c00419{transform:matrix(0.758689,-0.006828,0.002250,0.249990,0,0);-ms-transform:matrix(0.758689,-0.006828,0.002250,0.249990,0,0);-webkit-transform:matrix(0.758689,-0.006828,0.002250,0.249990,0,0);}
.m36_c00419{transform:matrix(0.781433,-0.008596,0.002750,0.249985,0,0);-ms-transform:matrix(0.781433,-0.008596,0.002750,0.249985,0,0);-webkit-transform:matrix(0.781433,-0.008596,0.002750,0.249985,0,0);}
.m32_c00419{transform:matrix(1.214457,-0.013359,0.002750,0.249985,0,0);-ms-transform:matrix(1.214457,-0.013359,0.002750,0.249985,0,0);-webkit-transform:matrix(1.214457,-0.013359,0.002750,0.249985,0,0);}
.v0_c00419{vertical-align:0.000000px;}
.ls0_c00419{letter-spacing:0.000000px;}
.sc__c00419{text-shadow:none;}
.sc0_c00419{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__c00419{-webkit-text-stroke:0px transparent;}
.sc0_c00419{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00419{word-spacing:0.000000px;}
.fc0_c00419{color:transparent;}
.fsa_c00419{font-size:18.000000px;}
.fsc_c00419{font-size:24.000000px;}
.fs5_c00419{font-size:78.004719px;}
.fs1_c00419{font-size:78.017197px;}
.fs6_c00419{font-size:84.005082px;}
.fs0_c00419{font-size:90.000000px;}
.fs3_c00419{font-size:90.003645px;}
.fs7_c00419{font-size:96.005808px;}
.fs8_c00419{font-size:102.006171px;}
.fs2_c00419{font-size:102.022489px;}
.fs4_c00419{font-size:108.004374px;}
.fs9_c00419{font-size:138.008349px;}
.fsb_c00419{font-size:150.000000px;}
.y0_c00419{bottom:0.000000px;}
.y75_c00419{bottom:458.625000px;}
.y74_c00419{bottom:472.812000px;}
.y73_c00419{bottom:473.041500px;}
.y72_c00419{bottom:496.653000px;}
.y71_c00419{bottom:693.977813px;}
.y70_c00419{bottom:693.978569px;}
.y65_c00419{bottom:725.831822px;}
.y66_c00419{bottom:726.689106px;}
.y67_c00419{bottom:727.139865px;}
.y68_c00419{bottom:728.046399px;}
.y69_c00419{bottom:728.439776px;}
.y6a_c00419{bottom:729.436689px;}
.y6b_c00419{bottom:730.548119px;}
.y6c_c00419{bottom:731.358630px;}
.y6d_c00419{bottom:731.700795px;}
.y6e_c00419{bottom:732.149162px;}
.y6f_c00419{bottom:733.360161px;}
.y64_c00419{bottom:766.908930px;}
.y63_c00419{bottom:766.909383px;}
.y62_c00419{bottom:766.910030px;}
.y61_c00419{bottom:766.910562px;}
.y5f_c00419{bottom:766.910688px;}
.y5c_c00419{bottom:766.910801px;}
.y60_c00419{bottom:766.911089px;}
.y5d_c00419{bottom:766.911204px;}
.y5e_c00419{bottom:766.911425px;}
.y55_c00419{bottom:802.709417px;}
.y56_c00419{bottom:803.349528px;}
.y57_c00419{bottom:805.002635px;}
.y58_c00419{bottom:805.645403px;}
.y59_c00419{bottom:806.326737px;}
.y5a_c00419{bottom:807.091638px;}
.y5b_c00419{bottom:807.826847px;}
.y4a_c00419{bottom:834.639488px;}
.y4b_c00419{bottom:834.936725px;}
.y4c_c00419{bottom:835.588139px;}
.y4d_c00419{bottom:836.828073px;}
.y4e_c00419{bottom:837.537648px;}
.y4f_c00419{bottom:839.840675px;}
.y50_c00419{bottom:840.417747px;}
.y51_c00419{bottom:841.969748px;}
.y52_c00419{bottom:843.394358px;}
.y53_c00419{bottom:844.038498px;}
.y54_c00419{bottom:844.999224px;}
.y3a_c00419{bottom:871.293950px;}
.y3b_c00419{bottom:871.673451px;}
.y3c_c00419{bottom:871.906481px;}
.y3d_c00419{bottom:873.017864px;}
.y3e_c00419{bottom:873.418695px;}
.y3f_c00419{bottom:873.710402px;}
.y40_c00419{bottom:874.569141px;}
.y41_c00419{bottom:875.052851px;}
.y42_c00419{bottom:875.494148px;}
.y43_c00419{bottom:875.820629px;}
.y44_c00419{bottom:877.052123px;}
.y45_c00419{bottom:877.366809px;}
.y46_c00419{bottom:878.449604px;}
.y47_c00419{bottom:879.528819px;}
.y48_c00419{bottom:879.998061px;}
.y49_c00419{bottom:880.627104px;}
.y31_c00419{bottom:907.009500px;}
.y32_c00419{bottom:907.813727px;}
.y33_c00419{bottom:909.191493px;}
.y34_c00419{bottom:909.682005px;}
.y35_c00419{bottom:910.809071px;}
.y36_c00419{bottom:912.229655px;}
.y37_c00419{bottom:913.816196px;}
.y38_c00419{bottom:914.544555px;}
.y39_c00419{bottom:914.778740px;}
.y25_c00419{bottom:1020.726331px;}
.y2a_c00419{bottom:1020.726586px;}
.y26_c00419{bottom:1020.726918px;}
.y2c_c00419{bottom:1020.727056px;}
.y2f_c00419{bottom:1020.727185px;}
.y29_c00419{bottom:1020.727230px;}
.y2b_c00419{bottom:1020.727249px;}
.y2d_c00419{bottom:1020.727269px;}
.y2e_c00419{bottom:1020.727378px;}
.y27_c00419{bottom:1020.727390px;}
.y30_c00419{bottom:1020.727621px;}
.y28_c00419{bottom:1020.727917px;}
.y17_c00419{bottom:1051.747500px;}
.y18_c00419{bottom:1051.945532px;}
.y19_c00419{bottom:1052.452700px;}
.y1a_c00419{bottom:1052.749362px;}
.y1b_c00419{bottom:1053.357227px;}
.y1c_c00419{bottom:1053.556000px;}
.y1d_c00419{bottom:1054.168617px;}
.y1e_c00419{bottom:1054.443585px;}
.y1f_c00419{bottom:1054.899817px;}
.y20_c00419{bottom:1055.074940px;}
.y21_c00419{bottom:1055.872843px;}
.y22_c00419{bottom:1057.000512px;}
.y23_c00419{bottom:1057.316493px;}
.y24_c00419{bottom:1057.681290px;}
.yb_c00419{bottom:1085.201213px;}
.yc_c00419{bottom:1085.715367px;}
.yd_c00419{bottom:1086.852408px;}
.ye_c00419{bottom:1087.762446px;}
.yf_c00419{bottom:1088.732276px;}
.y10_c00419{bottom:1089.556907px;}
.y11_c00419{bottom:1090.316607px;}
.y12_c00419{bottom:1090.776495px;}
.y13_c00419{bottom:1091.500168px;}
.y14_c00419{bottom:1091.903723px;}
.y15_c00419{bottom:1092.257834px;}
.y16_c00419{bottom:1092.700262px;}
.y2_c00419{bottom:1111.879500px;}
.y3_c00419{bottom:1113.026699px;}
.y4_c00419{bottom:1114.745527px;}
.y5_c00419{bottom:1116.139623px;}
.y6_c00419{bottom:1118.476545px;}
.y7_c00419{bottom:1119.620247px;}
.y8_c00419{bottom:1120.098165px;}
.y9_c00419{bottom:1121.500860px;}
.ya_c00419{bottom:1123.557023px;}
.y1_c00419{bottom:1192.992000px;}
.hc_c00419{height:18.000000px;}
.he_c00419{height:24.000000px;}
.h7_c00419{height:78.004719px;}
.h3_c00419{height:78.017197px;}
.h8_c00419{height:84.005082px;}
.h2_c00419{height:90.000000px;}
.h5_c00419{height:90.003645px;}
.h9_c00419{height:96.005808px;}
.ha_c00419{height:102.006171px;}
.h4_c00419{height:102.022489px;}
.h6_c00419{height:108.004374px;}
.hb_c00419{height:138.008349px;}
.hd_c00419{height:150.000000px;}
.h1_c00419{height:1251.000000px;}
.h0_c00419{height:1251.150000px;}
.w0_c00419{width:915.000000px;}
.x0_c00419{left:0.000000px;}
.x27_c00419{left:5.128304px;}
.x32_c00419{left:11.898000px;}
.xd_c00419{left:23.896435px;}
.x19_c00419{left:28.147500px;}
.x3a_c00419{left:31.197659px;}
.x4_c00419{left:35.379000px;}
.x28_c00419{left:37.529423px;}
.x1a_c00419{left:50.151000px;}
.x60_c00419{left:51.652023px;}
.x3b_c00419{left:58.333268px;}
.xe_c00419{left:63.458082px;}
.x3c_c00419{left:75.017223px;}
.x49_c00419{left:81.628641px;}
.x33_c00419{left:85.009500px;}
.x5_c00419{left:90.007500px;}
.x1b_c00419{left:106.503000px;}
.x4a_c00419{left:122.300397px;}
.x1c_c00419{left:139.465500px;}
.x58_c00419{left:142.300176px;}
.xf_c00419{left:150.903261px;}
.x3d_c00419{left:154.367600px;}
.x61_c00419{left:160.609319px;}
.x6_c00419{left:171.856500px;}
.x59_c00419{left:179.023115px;}
.x3e_c00419{left:183.033159px;}
.x4b_c00419{left:199.835640px;}
.x3f_c00419{left:203.823966px;}
.x1d_c00419{left:207.006000px;}
.x34_c00419{left:210.261000px;}
.x10_c00419{left:220.893010px;}
.x1e_c00419{left:229.092000px;}
.x62_c00419{left:236.202494px;}
.x7_c00419{left:238.242000px;}
.x29_c00419{left:241.656947px;}
.x4c_c00419{left:244.158198px;}
.x35_c00419{left:254.853000px;}
.x5a_c00419{left:257.598119px;}
.x40_c00419{left:265.116437px;}
.x63_c00419{left:268.963631px;}
.x5b_c00419{left:291.080678px;}
.x11_c00419{left:295.445016px;}
.x1f_c00419{left:297.160500px;}
.x41_c00419{left:299.679798px;}
.x2a_c00419{left:319.420251px;}
.x20_c00419{left:327.712500px;}
.x42_c00419{left:331.205759px;}
.x53_c00419{left:346.987203px;}
.x8_c00419{left:349.524000px;}
.x64_c00419{left:352.091223px;}
.x43_c00419{left:354.475983px;}
.x36_c00419{left:357.313500px;}
.x12_c00419{left:358.866663px;}
.x2b_c00419{left:362.352234px;}
.x5c_c00419{left:368.035484px;}
.x21_c00419{left:378.405000px;}
.x4d_c00419{left:388.061778px;}
.x54_c00419{left:389.631822px;}
.x1_c00419{left:391.500000px;}
.x22_c00419{left:397.863000px;}
.x5d_c00419{left:399.627812px;}
.x9_c00419{left:403.986000px;}
.x13_c00419{left:417.266959px;}
.x2_c00419{left:420.390000px;}
.x4e_c00419{left:424.157298px;}
.xa_c00419{left:426.744000px;}
.x6d_c00419{left:432.810000px;}
.x2c_c00419{left:438.765417px;}
.x44_c00419{left:442.427079px;}
.x65_c00419{left:444.674700px;}
.x3_c00419{left:446.850000px;}
.x6e_c00419{left:451.170000px;}
.x14_c00419{left:452.600881px;}
.x45_c00419{left:464.897837px;}
.x2d_c00419{left:472.246631px;}
.x73_c00419{left:478.170000px;}
.x6a_c00419{left:482.220000px;}
.x6f_c00419{left:483.840000px;}
.x23_c00419{left:486.519000px;}
.xb_c00419{left:493.539000px;}
.x55_c00419{left:499.818471px;}
.x74_c00419{left:503.280000px;}
.x15_c00419{left:508.213705px;}
.x5e_c00419{left:511.683875px;}
.x69_c00419{left:513.035187px;}
.x4f_c00419{left:521.197469px;}
.x6b_c00419{left:524.340000px;}
.x70_c00419{left:525.690000px;}
.x2e_c00419{left:531.108396px;}
.x6c_c00419{left:537.030000px;}
.x16_c00419{left:539.292934px;}
.x66_c00419{left:540.735144px;}
.x46_c00419{left:542.194779px;}
.x5f_c00419{left:544.356335px;}
.x17_c00419{left:566.588533px;}
.x71_c00419{left:571.320000px;}
.x67_c00419{left:578.086232px;}
.x56_c00419{left:588.142094px;}
.x72_c00419{left:590.220000px;}
.xc_c00419{left:591.451500px;}
.x18_c00419{left:600.662266px;}
.x50_c00419{left:610.202568px;}
.x24_c00419{left:611.815500px;}
.x47_c00419{left:619.302738px;}
.x2f_c00419{left:626.961658px;}
.x37_c00419{left:630.688500px;}
.x57_c00419{left:639.130850px;}
.x25_c00419{left:646.924500px;}
.x51_c00419{left:650.485857px;}
.x48_c00419{left:652.823633px;}
.x30_c00419{left:660.442872px;}
.x68_c00419{left:679.039626px;}
.x26_c00419{left:687.457500px;}
.x38_c00419{left:696.903000px;}
.x31_c00419{left:704.994977px;}
.x52_c00419{left:710.548557px;}
.x39_c00419{left:718.192500px;}
@media print{
.v0_c00419{vertical-align:0.000000pt;}
.ls0_c00419{letter-spacing:0.000000pt;}
.ws0_c00419{word-spacing:0.000000pt;}
.fsa_c00419{font-size:16.000000pt;}
.fsc_c00419{font-size:21.333333pt;}
.fs5_c00419{font-size:69.337528pt;}
.fs1_c00419{font-size:69.348620pt;}
.fs6_c00419{font-size:74.671184pt;}
.fs0_c00419{font-size:80.000000pt;}
.fs3_c00419{font-size:80.003240pt;}
.fs7_c00419{font-size:85.338496pt;}
.fs8_c00419{font-size:90.672152pt;}
.fs2_c00419{font-size:90.686656pt;}
.fs4_c00419{font-size:96.003888pt;}
.fs9_c00419{font-size:122.674088pt;}
.fsb_c00419{font-size:133.333333pt;}
.y0_c00419{bottom:0.000000pt;}
.y75_c00419{bottom:407.666667pt;}
.y74_c00419{bottom:420.277333pt;}
.y73_c00419{bottom:420.481333pt;}
.y72_c00419{bottom:441.469333pt;}
.y71_c00419{bottom:616.869167pt;}
.y70_c00419{bottom:616.869839pt;}
.y65_c00419{bottom:645.183841pt;}
.y66_c00419{bottom:645.945872pt;}
.y67_c00419{bottom:646.346547pt;}
.y68_c00419{bottom:647.152355pt;}
.y69_c00419{bottom:647.502023pt;}
.y6a_c00419{bottom:648.388168pt;}
.y6b_c00419{bottom:649.376105pt;}
.y6c_c00419{bottom:650.096560pt;}
.y6d_c00419{bottom:650.400707pt;}
.y6e_c00419{bottom:650.799255pt;}
.y6f_c00419{bottom:651.875699pt;}
.y64_c00419{bottom:681.696827pt;}
.y63_c00419{bottom:681.697229pt;}
.y62_c00419{bottom:681.697804pt;}
.y61_c00419{bottom:681.698277pt;}
.y5f_c00419{bottom:681.698389pt;}
.y5c_c00419{bottom:681.698489pt;}
.y60_c00419{bottom:681.698745pt;}
.y5d_c00419{bottom:681.698848pt;}
.y5e_c00419{bottom:681.699044pt;}
.y55_c00419{bottom:713.519481pt;}
.y56_c00419{bottom:714.088469pt;}
.y57_c00419{bottom:715.557897pt;}
.y58_c00419{bottom:716.129247pt;}
.y59_c00419{bottom:716.734877pt;}
.y5a_c00419{bottom:717.414789pt;}
.y5b_c00419{bottom:718.068308pt;}
.y4a_c00419{bottom:741.901767pt;}
.y4b_c00419{bottom:742.165977pt;}
.y4c_c00419{bottom:742.745012pt;}
.y4d_c00419{bottom:743.847176pt;}
.y4e_c00419{bottom:744.477909pt;}
.y4f_c00419{bottom:746.525044pt;}
.y50_c00419{bottom:747.037997pt;}
.y51_c00419{bottom:748.417553pt;}
.y52_c00419{bottom:749.683873pt;}
.y53_c00419{bottom:750.256443pt;}
.y54_c00419{bottom:751.110421pt;}
.y3a_c00419{bottom:774.483511pt;}
.y3b_c00419{bottom:774.820845pt;}
.y3c_c00419{bottom:775.027983pt;}
.y3d_c00419{bottom:776.015879pt;}
.y3e_c00419{bottom:776.372173pt;}
.y3f_c00419{bottom:776.631468pt;}
.y40_c00419{bottom:777.394792pt;}
.y41_c00419{bottom:777.824756pt;}
.y42_c00419{bottom:778.217020pt;}
.y43_c00419{bottom:778.507225pt;}
.y44_c00419{bottom:779.601887pt;}
.y45_c00419{bottom:779.881608pt;}
.y46_c00419{bottom:780.844092pt;}
.y47_c00419{bottom:781.803395pt;}
.y48_c00419{bottom:782.220499pt;}
.y49_c00419{bottom:782.779648pt;}
.y31_c00419{bottom:806.230667pt;}
.y32_c00419{bottom:806.945535pt;}
.y33_c00419{bottom:808.170216pt;}
.y34_c00419{bottom:808.606227pt;}
.y35_c00419{bottom:809.608063pt;}
.y36_c00419{bottom:810.870804pt;}
.y37_c00419{bottom:812.281063pt;}
.y38_c00419{bottom:812.928493pt;}
.y39_c00419{bottom:813.136657pt;}
.y25_c00419{bottom:907.312295pt;}
.y2a_c00419{bottom:907.312521pt;}
.y26_c00419{bottom:907.312816pt;}
.y2c_c00419{bottom:907.312939pt;}
.y2f_c00419{bottom:907.313053pt;}
.y29_c00419{bottom:907.313093pt;}
.y2b_c00419{bottom:907.313111pt;}
.y2d_c00419{bottom:907.313128pt;}
.y2e_c00419{bottom:907.313225pt;}
.y27_c00419{bottom:907.313236pt;}
.y30_c00419{bottom:907.313441pt;}
.y28_c00419{bottom:907.313704pt;}
.y17_c00419{bottom:934.886667pt;}
.y18_c00419{bottom:935.062695pt;}
.y19_c00419{bottom:935.513511pt;}
.y1a_c00419{bottom:935.777211pt;}
.y1b_c00419{bottom:936.317535pt;}
.y1c_c00419{bottom:936.494223pt;}
.y1d_c00419{bottom:937.038771pt;}
.y1e_c00419{bottom:937.283187pt;}
.y1f_c00419{bottom:937.688727pt;}
.y20_c00419{bottom:937.844391pt;}
.y21_c00419{bottom:938.553639pt;}
.y22_c00419{bottom:939.556011pt;}
.y23_c00419{bottom:939.836883pt;}
.y24_c00419{bottom:940.161147pt;}
.yb_c00419{bottom:964.623300pt;}
.yc_c00419{bottom:965.080327pt;}
.yd_c00419{bottom:966.091029pt;}
.ye_c00419{bottom:966.899952pt;}
.yf_c00419{bottom:967.762023pt;}
.y10_c00419{bottom:968.495028pt;}
.y11_c00419{bottom:969.170317pt;}
.y12_c00419{bottom:969.579107pt;}
.y13_c00419{bottom:970.222372pt;}
.y14_c00419{bottom:970.581087pt;}
.y15_c00419{bottom:970.895852pt;}
.y16_c00419{bottom:971.289121pt;}
.y2_c00419{bottom:988.337333pt;}
.y3_c00419{bottom:989.357065pt;}
.y4_c00419{bottom:990.884913pt;}
.y5_c00419{bottom:992.124109pt;}
.y6_c00419{bottom:994.201373pt;}
.y7_c00419{bottom:995.217997pt;}
.y8_c00419{bottom:995.642813pt;}
.y9_c00419{bottom:996.889653pt;}
.ya_c00419{bottom:998.717353pt;}
.y1_c00419{bottom:1060.437333pt;}
.hc_c00419{height:16.000000pt;}
.he_c00419{height:21.333333pt;}
.h7_c00419{height:69.337528pt;}
.h3_c00419{height:69.348620pt;}
.h8_c00419{height:74.671184pt;}
.h2_c00419{height:80.000000pt;}
.h5_c00419{height:80.003240pt;}
.h9_c00419{height:85.338496pt;}
.ha_c00419{height:90.672152pt;}
.h4_c00419{height:90.686656pt;}
.h6_c00419{height:96.003888pt;}
.hb_c00419{height:122.674088pt;}
.hd_c00419{height:133.333333pt;}
.h1_c00419{height:1112.000000pt;}
.h0_c00419{height:1112.133333pt;}
.w0_c00419{width:813.333333pt;}
.x0_c00419{left:0.000000pt;}
.x27_c00419{left:4.558492pt;}
.x32_c00419{left:10.576000pt;}
.xd_c00419{left:21.241276pt;}
.x19_c00419{left:25.020000pt;}
.x3a_c00419{left:27.731252pt;}
.x4_c00419{left:31.448000pt;}
.x28_c00419{left:33.359487pt;}
.x1a_c00419{left:44.578667pt;}
.x60_c00419{left:45.912909pt;}
.x3b_c00419{left:51.851793pt;}
.xe_c00419{left:56.407184pt;}
.x3c_c00419{left:66.681976pt;}
.x49_c00419{left:72.558792pt;}
.x33_c00419{left:75.564000pt;}
.x5_c00419{left:80.006667pt;}
.x1b_c00419{left:94.669333pt;}
.x4a_c00419{left:108.711464pt;}
.x1c_c00419{left:123.969333pt;}
.x58_c00419{left:126.489045pt;}
.xf_c00419{left:134.136232pt;}
.x3d_c00419{left:137.215644pt;}
.x61_c00419{left:142.763839pt;}
.x6_c00419{left:152.761333pt;}
.x59_c00419{left:159.131657pt;}
.x3e_c00419{left:162.696141pt;}
.x4b_c00419{left:177.631680pt;}
.x3f_c00419{left:181.176859pt;}
.x1d_c00419{left:184.005333pt;}
.x34_c00419{left:186.898667pt;}
.x10_c00419{left:196.349343pt;}
.x1e_c00419{left:203.637333pt;}
.x62_c00419{left:209.957772pt;}
.x7_c00419{left:211.770667pt;}
.x29_c00419{left:214.806175pt;}
.x4c_c00419{left:217.029509pt;}
.x35_c00419{left:226.536000pt;}
.x5a_c00419{left:228.976105pt;}
.x40_c00419{left:235.659055pt;}
.x63_c00419{left:239.078783pt;}
.x5b_c00419{left:258.738380pt;}
.x11_c00419{left:262.617792pt;}
.x1f_c00419{left:264.142667pt;}
.x41_c00419{left:266.382043pt;}
.x2a_c00419{left:283.929112pt;}
.x20_c00419{left:291.300000pt;}
.x42_c00419{left:294.405119pt;}
.x53_c00419{left:308.433069pt;}
.x8_c00419{left:310.688000pt;}
.x64_c00419{left:312.969976pt;}
.x43_c00419{left:315.089763pt;}
.x36_c00419{left:317.612000pt;}
.x12_c00419{left:318.992589pt;}
.x2b_c00419{left:322.090875pt;}
.x5c_c00419{left:327.142652pt;}
.x21_c00419{left:336.360000pt;}
.x4d_c00419{left:344.943803pt;}
.x54_c00419{left:346.339397pt;}
.x1_c00419{left:348.000000pt;}
.x22_c00419{left:353.656000pt;}
.x5d_c00419{left:355.224721pt;}
.x9_c00419{left:359.098667pt;}
.x13_c00419{left:370.903964pt;}
.x2_c00419{left:373.680000pt;}
.x4e_c00419{left:377.028709pt;}
.xa_c00419{left:379.328000pt;}
.x6d_c00419{left:384.720000pt;}
.x2c_c00419{left:390.013704pt;}
.x44_c00419{left:393.268515pt;}
.x65_c00419{left:395.266400pt;}
.x3_c00419{left:397.200000pt;}
.x6e_c00419{left:401.040000pt;}
.x14_c00419{left:402.311895pt;}
.x45_c00419{left:413.242521pt;}
.x2d_c00419{left:419.774783pt;}
.x73_c00419{left:425.040000pt;}
.x6a_c00419{left:428.640000pt;}
.x6f_c00419{left:430.080000pt;}
.x23_c00419{left:432.461333pt;}
.xb_c00419{left:438.701333pt;}
.x55_c00419{left:444.283085pt;}
.x74_c00419{left:447.360000pt;}
.x15_c00419{left:451.745516pt;}
.x5e_c00419{left:454.830111pt;}
.x69_c00419{left:456.031277pt;}
.x4f_c00419{left:463.286639pt;}
.x6b_c00419{left:466.080000pt;}
.x70_c00419{left:467.280000pt;}
.x2e_c00419{left:472.096352pt;}
.x6c_c00419{left:477.360000pt;}
.x16_c00419{left:479.371497pt;}
.x66_c00419{left:480.653461pt;}
.x46_c00419{left:481.950915pt;}
.x5f_c00419{left:483.872297pt;}
.x17_c00419{left:503.634252pt;}
.x71_c00419{left:507.840000pt;}
.x67_c00419{left:513.854428pt;}
.x56_c00419{left:522.792972pt;}
.x72_c00419{left:524.640000pt;}
.xc_c00419{left:525.734667pt;}
.x18_c00419{left:533.922015pt;}
.x50_c00419{left:542.402283pt;}
.x24_c00419{left:543.836000pt;}
.x47_c00419{left:550.491323pt;}
.x2f_c00419{left:557.299252pt;}
.x37_c00419{left:560.612000pt;}
.x57_c00419{left:568.116311pt;}
.x25_c00419{left:575.044000pt;}
.x51_c00419{left:578.209651pt;}
.x48_c00419{left:580.287673pt;}
.x30_c00419{left:587.060331pt;}
.x68_c00419{left:603.590779pt;}
.x26_c00419{left:611.073333pt;}
.x38_c00419{left:619.469333pt;}
.x31_c00419{left:626.662201pt;}
.x52_c00419{left:631.598717pt;}
.x39_c00419{left:638.393333pt;}
}





/* 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_c00420 {
    display:none;
  }
  .loading-indicator_c00420.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00420 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_c00420 { 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_c00420" -> "#page-container .classname_c00420")
 */
.pf_c00420 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00420 { /* 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_c00420.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00420 { /* 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_c00420 { /* 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_c00420 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00420 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00420 {overflow:visible;}
  }
}
.c_c00420 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00420 { /* 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_c00420:after { /* webkit #35443 */
  content: '';
}
.t_c00420:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00420 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 */
}
.__c00420 { /* 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_c00420 { /* info for Javascript */
  display:none;
}
.l_c00420 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00420 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00420 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00420: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_c00420 {
    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_c00420.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00420.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_c00420 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00420{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00420;src:url('chunks/assets/font_fabf4b590f7fb32aea93ffb2.woff2')format("woff");}.ff1_c00420{font-family:ff1_c00420;line-height:1.000000;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;}
.m35_c00420{transform:matrix(0.173714,0.001390,-0.002000,0.249992,0,0);-ms-transform:matrix(0.173714,0.001390,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.173714,0.001390,-0.002000,0.249992,0,0);}
.m32_c00420{transform:matrix(0.181559,0.001452,-0.002000,0.249992,0,0);-ms-transform:matrix(0.181559,0.001452,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.181559,0.001452,-0.002000,0.249992,0,0);}
.m3a_c00420{transform:matrix(0.181879,0.001455,-0.002000,0.249992,0,0);-ms-transform:matrix(0.181879,0.001455,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.181879,0.001455,-0.002000,0.249992,0,0);}
.m5_c00420{transform:matrix(0.182470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182470,0.000000,0.000000,0.250000,0,0);}
.m38_c00420{transform:matrix(0.185199,0.001482,-0.002000,0.249992,0,0);-ms-transform:matrix(0.185199,0.001482,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.185199,0.001482,-0.002000,0.249992,0,0);}
.m91_c00420{transform:matrix(0.185590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185590,0.000000,0.000000,0.250000,0,0);}
.mc_c00420{transform:matrix(0.190315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190315,0.000000,0.000000,0.250000,0,0);}
.m93_c00420{transform:matrix(0.193155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193155,0.000000,0.000000,0.250000,0,0);}
.m12_c00420{transform:matrix(0.194940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194940,0.000000,0.000000,0.250000,0,0);}
.m3b_c00420{transform:matrix(0.196434,0.001571,-0.002000,0.249992,0,0);-ms-transform:matrix(0.196434,0.001571,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.196434,0.001571,-0.002000,0.249992,0,0);}
.m7_c00420{transform:matrix(0.198930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198930,0.000000,0.000000,0.250000,0,0);}
.m37_c00420{transform:matrix(0.201869,0.001615,-0.002000,0.249992,0,0);-ms-transform:matrix(0.201869,0.001615,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.201869,0.001615,-0.002000,0.249992,0,0);}
.m59_c00420{transform:matrix(0.202895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202895,0.000000,0.000000,0.250000,0,0);}
.m33_c00420{transform:matrix(0.203898,0.001631,-0.002000,0.249992,0,0);-ms-transform:matrix(0.203898,0.001631,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.203898,0.001631,-0.002000,0.249992,0,0);}
.m92_c00420{transform:matrix(0.204485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204485,0.000000,0.000000,0.250000,0,0);}
.m13_c00420{transform:matrix(0.205110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205110,0.000000,0.000000,0.250000,0,0);}
.m7d_c00420{transform:matrix(0.205665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205665,0.000000,0.000000,0.250000,0,0);}
.m87_c00420{transform:matrix(0.206260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206260,0.000000,0.000000,0.250000,0,0);}
.m36_c00420{transform:matrix(0.207068,0.001657,-0.002000,0.249992,0,0);-ms-transform:matrix(0.207068,0.001657,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.207068,0.001657,-0.002000,0.249992,0,0);}
.mb_c00420{transform:matrix(0.208045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208045,0.000000,0.000000,0.250000,0,0);}
.m3_c00420{transform:matrix(0.208125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208125,0.000000,0.000000,0.250000,0,0);}
.m2_c00420{transform:matrix(0.208630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208630,0.000000,0.000000,0.250000,0,0);}
.m34_c00420{transform:matrix(0.210748,0.001686,-0.002000,0.249992,0,0);-ms-transform:matrix(0.210748,0.001686,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.210748,0.001686,-0.002000,0.249992,0,0);}
.m31_c00420{transform:matrix(0.211003,0.001688,-0.002000,0.249992,0,0);-ms-transform:matrix(0.211003,0.001688,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.211003,0.001688,-0.002000,0.249992,0,0);}
.m4d_c00420{transform:matrix(0.211025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211025,0.000000,0.000000,0.250000,0,0);}
.m4a_c00420{transform:matrix(0.211660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211660,0.000000,0.000000,0.250000,0,0);}
.me_c00420{transform:matrix(0.212150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212150,0.000000,0.000000,0.250000,0,0);}
.m6a_c00420{transform:matrix(0.212200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212200,0.000000,0.000000,0.250000,0,0);}
.m44_c00420{transform:matrix(0.212395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212395,0.000000,0.000000,0.250000,0,0);}
.m75_c00420{transform:matrix(0.212510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212510,0.000000,0.000000,0.250000,0,0);}
.m4c_c00420{transform:matrix(0.212875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212875,0.000000,0.000000,0.250000,0,0);}
.m9_c00420{transform:matrix(0.214015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214015,0.000000,0.000000,0.250000,0,0);}
.m90_c00420{transform:matrix(0.214315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214315,0.000000,0.000000,0.250000,0,0);}
.m4_c00420{transform:matrix(0.215980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215980,0.000000,0.000000,0.250000,0,0);}
.m6_c00420{transform:matrix(0.217265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217265,0.000000,0.000000,0.250000,0,0);}
.m71_c00420{transform:matrix(0.218295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218295,0.000000,0.000000,0.250000,0,0);}
.m48_c00420{transform:matrix(0.218300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218300,0.000000,0.000000,0.250000,0,0);}
.m95_c00420{transform:matrix(0.218950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218950,0.000000,0.000000,0.250000,0,0);}
.m4e_c00420{transform:matrix(0.219295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219295,0.000000,0.000000,0.250000,0,0);}
.m28_c00420{transform:matrix(0.220580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220580,0.000000,0.000000,0.250000,0,0);}
.m39_c00420{transform:matrix(0.220913,0.001767,-0.002000,0.249992,0,0);-ms-transform:matrix(0.220913,0.001767,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.220913,0.001767,-0.002000,0.249992,0,0);}
.m7e_c00420{transform:matrix(0.221215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221215,0.000000,0.000000,0.250000,0,0);}
.m20_c00420{transform:matrix(0.221880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221880,0.000000,0.000000,0.250000,0,0);}
.m5f_c00420{transform:matrix(0.222035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222035,0.000000,0.000000,0.250000,0,0);}
.m76_c00420{transform:matrix(0.222735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222735,0.000000,0.000000,0.250000,0,0);}
.m5c_c00420{transform:matrix(0.222845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222845,0.000000,0.000000,0.250000,0,0);}
.m7a_c00420{transform:matrix(0.223380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223380,0.000000,0.000000,0.250000,0,0);}
.m29_c00420{transform:matrix(0.225345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225345,0.000000,0.000000,0.250000,0,0);}
.m57_c00420{transform:matrix(0.225465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225465,0.000000,0.000000,0.250000,0,0);}
.m5b_c00420{transform:matrix(0.225505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225505,0.000000,0.000000,0.250000,0,0);}
.m15_c00420{transform:matrix(0.225520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225520,0.000000,0.000000,0.250000,0,0);}
.m14_c00420{transform:matrix(0.225720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225720,0.000000,0.000000,0.250000,0,0);}
.m88_c00420{transform:matrix(0.226070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226070,0.000000,0.000000,0.250000,0,0);}
.m58_c00420{transform:matrix(0.226175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226175,0.000000,0.000000,0.250000,0,0);}
.m8_c00420{transform:matrix(0.226580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226580,0.000000,0.000000,0.250000,0,0);}
.m96_c00420{transform:matrix(0.227235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227235,0.000000,0.000000,0.250000,0,0);}
.m4b_c00420{transform:matrix(0.227290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227290,0.000000,0.000000,0.250000,0,0);}
.m67_c00420{transform:matrix(0.228090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228090,0.000000,0.000000,0.250000,0,0);}
.m89_c00420{transform:matrix(0.228160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228160,0.000000,0.000000,0.250000,0,0);}
.m47_c00420{transform:matrix(0.228215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228215,0.000000,0.000000,0.250000,0,0);}
.m94_c00420{transform:matrix(0.228345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228345,0.000000,0.000000,0.250000,0,0);}
.md_c00420{transform:matrix(0.228555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228555,0.000000,0.000000,0.250000,0,0);}
.ma_c00420{transform:matrix(0.228890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228890,0.000000,0.000000,0.250000,0,0);}
.m10_c00420{transform:matrix(0.229115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229115,0.000000,0.000000,0.250000,0,0);}
.m2f_c00420{transform:matrix(0.229473,0.001836,-0.002000,0.249992,0,0);-ms-transform:matrix(0.229473,0.001836,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.229473,0.001836,-0.002000,0.249992,0,0);}
.m49_c00420{transform:matrix(0.229615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229615,0.000000,0.000000,0.250000,0,0);}
.m4f_c00420{transform:matrix(0.230235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230235,0.000000,0.000000,0.250000,0,0);}
.m81_c00420{transform:matrix(0.230915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230915,0.000000,0.000000,0.250000,0,0);}
.m97_c00420{transform:matrix(0.231245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231245,0.000000,0.000000,0.250000,0,0);}
.mf_c00420{transform:matrix(0.231295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231295,0.000000,0.000000,0.250000,0,0);}
.m86_c00420{transform:matrix(0.231830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231830,0.000000,0.000000,0.250000,0,0);}
.m8d_c00420{transform:matrix(0.231965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231965,0.000000,0.000000,0.250000,0,0);}
.m30_c00420{transform:matrix(0.233283,0.001866,-0.002000,0.249992,0,0);-ms-transform:matrix(0.233283,0.001866,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.233283,0.001866,-0.002000,0.249992,0,0);}
.m27_c00420{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00420{transform:matrix(0.234360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234360,0.000000,0.000000,0.250000,0,0);}
.m8c_c00420{transform:matrix(0.234785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234785,0.000000,0.000000,0.250000,0,0);}
.m2d_c00420{transform:matrix(0.235442,0.001884,-0.002000,0.249992,0,0);-ms-transform:matrix(0.235442,0.001884,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.235442,0.001884,-0.002000,0.249992,0,0);}
.m7c_c00420{transform:matrix(0.235790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235790,0.000000,0.000000,0.250000,0,0);}
.m68_c00420{transform:matrix(0.236445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236445,0.000000,0.000000,0.250000,0,0);}
.m2e_c00420{transform:matrix(0.237837,0.001903,-0.002000,0.249992,0,0);-ms-transform:matrix(0.237837,0.001903,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.237837,0.001903,-0.002000,0.249992,0,0);}
.m85_c00420{transform:matrix(0.237950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237950,0.000000,0.000000,0.250000,0,0);}
.m7b_c00420{transform:matrix(0.238360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238360,0.000000,0.000000,0.250000,0,0);}
.m40_c00420{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m11_c00420{transform:matrix(0.238640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238640,0.000000,0.000000,0.250000,0,0);}
.m64_c00420{transform:matrix(0.238980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238980,0.000000,0.000000,0.250000,0,0);}
.m56_c00420{transform:matrix(0.239660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239660,0.000000,0.000000,0.250000,0,0);}
.m45_c00420{transform:matrix(0.239895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239895,0.000000,0.000000,0.250000,0,0);}
.m65_c00420{transform:matrix(0.239910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239910,0.000000,0.000000,0.250000,0,0);}
.m79_c00420{transform:matrix(0.241510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241510,0.000000,0.000000,0.250000,0,0);}
.m78_c00420{transform:matrix(0.241710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241710,0.000000,0.000000,0.250000,0,0);}
.m1d_c00420{transform:matrix(0.241995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241995,0.000000,0.000000,0.250000,0,0);}
.m41_c00420{transform:matrix(0.244475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244475,0.000000,0.000000,0.250000,0,0);}
.m66_c00420{transform:matrix(0.245215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245215,0.000000,0.000000,0.250000,0,0);}
.m74_c00420{transform:matrix(0.245665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245665,0.000000,0.000000,0.250000,0,0);}
.m82_c00420{transform:matrix(0.245725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245725,0.000000,0.000000,0.250000,0,0);}
.m80_c00420{transform:matrix(0.246175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246175,0.000000,0.000000,0.250000,0,0);}
.m98_c00420{transform:matrix(0.246515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246515,0.000000,0.000000,0.250000,0,0);}
.m50_c00420{transform:matrix(0.246595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246595,0.000000,0.000000,0.250000,0,0);}
.m77_c00420{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m83_c00420{transform:matrix(0.247430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247430,0.000000,0.000000,0.250000,0,0);}
.m8b_c00420{transform:matrix(0.247505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247505,0.000000,0.000000,0.250000,0,0);}
.m6f_c00420{transform:matrix(0.247550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247550,0.000000,0.000000,0.250000,0,0);}
.m9b_c00420{transform:matrix(0.247685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247685,0.000000,0.000000,0.250000,0,0);}
.m72_c00420{transform:matrix(0.247955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247955,0.000000,0.000000,0.250000,0,0);}
.m73_c00420{transform:matrix(0.248155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248155,0.000000,0.000000,0.250000,0,0);}
.m5a_c00420{transform:matrix(0.248905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248905,0.000000,0.000000,0.250000,0,0);}
.m52_c00420{transform:matrix(0.249505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249505,0.000000,0.000000,0.250000,0,0);}
.m24_c00420{transform:matrix(0.250155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250155,0.000000,0.000000,0.250000,0,0);}
.m2a_c00420{transform:matrix(0.252355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252355,0.000000,0.000000,0.250000,0,0);}
.m7f_c00420{transform:matrix(0.252370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252370,0.000000,0.000000,0.250000,0,0);}
.m60_c00420{transform:matrix(0.252435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252435,0.000000,0.000000,0.250000,0,0);}
.m5d_c00420{transform:matrix(0.252540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252540,0.000000,0.000000,0.250000,0,0);}
.m6e_c00420{transform:matrix(0.253105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253105,0.000000,0.000000,0.250000,0,0);}
.m19_c00420{transform:matrix(0.253740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253740,0.000000,0.000000,0.250000,0,0);}
.m43_c00420{transform:matrix(0.254280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254280,0.000000,0.000000,0.250000,0,0);}
.m62_c00420{transform:matrix(0.255210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255210,0.000000,0.000000,0.250000,0,0);}
.m3c_c00420{transform:matrix(0.257282,0.002058,-0.002000,0.249992,0,0);-ms-transform:matrix(0.257282,0.002058,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.257282,0.002058,-0.002000,0.249992,0,0);}
.m1a_c00420{transform:matrix(0.257450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257450,0.000000,0.000000,0.250000,0,0);}
.m61_c00420{transform:matrix(0.260975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260975,0.000000,0.000000,0.250000,0,0);}
.m51_c00420{transform:matrix(0.261210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261210,0.000000,0.000000,0.250000,0,0);}
.m5e_c00420{transform:matrix(0.261420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261420,0.000000,0.000000,0.250000,0,0);}
.m23_c00420{transform:matrix(0.262110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262110,0.000000,0.000000,0.250000,0,0);}
.m1f_c00420{transform:matrix(0.262290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262290,0.000000,0.000000,0.250000,0,0);}
.m84_c00420{transform:matrix(0.263090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263090,0.000000,0.000000,0.250000,0,0);}
.m8a_c00420{transform:matrix(0.264125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264125,0.000000,0.000000,0.250000,0,0);}
.m42_c00420{transform:matrix(0.264980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264980,0.000000,0.000000,0.250000,0,0);}
.m69_c00420{transform:matrix(0.266130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266130,0.000000,0.000000,0.250000,0,0);}
.m8f_c00420{transform:matrix(0.267340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267340,0.000000,0.000000,0.250000,0,0);}
.m99_c00420{transform:matrix(0.267440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267440,0.000000,0.000000,0.250000,0,0);}
.m25_c00420{transform:matrix(0.267730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267730,0.000000,0.000000,0.250000,0,0);}
.m21_c00420{transform:matrix(0.268825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268825,0.000000,0.000000,0.250000,0,0);}
.m26_c00420{transform:matrix(0.268905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268905,0.000000,0.000000,0.250000,0,0);}
.m2c_c00420{transform:matrix(0.269160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269160,0.000000,0.000000,0.250000,0,0);}
.m9a_c00420{transform:matrix(0.269270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269270,0.000000,0.000000,0.250000,0,0);}
.m9c_c00420{transform:matrix(0.269375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269375,0.000000,0.000000,0.250000,0,0);}
.m6b_c00420{transform:matrix(0.270355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270355,0.000000,0.000000,0.250000,0,0);}
.m8e_c00420{transform:matrix(0.271955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271955,0.000000,0.000000,0.250000,0,0);}
.m6c_c00420{transform:matrix(0.272285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272285,0.000000,0.000000,0.250000,0,0);}
.m46_c00420{transform:matrix(0.272340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272340,0.000000,0.000000,0.250000,0,0);}
.m22_c00420{transform:matrix(0.272690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272690,0.000000,0.000000,0.250000,0,0);}
.m6d_c00420{transform:matrix(0.272940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272940,0.000000,0.000000,0.250000,0,0);}
.m55_c00420{transform:matrix(0.273420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273420,0.000000,0.000000,0.250000,0,0);}
.m63_c00420{transform:matrix(0.274825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274825,0.000000,0.000000,0.250000,0,0);}
.m54_c00420{transform:matrix(0.275290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275290,0.000000,0.000000,0.250000,0,0);}
.m16_c00420{transform:matrix(0.276330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276330,0.000000,0.000000,0.250000,0,0);}
.m2b_c00420{transform:matrix(0.276715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276715,0.000000,0.000000,0.250000,0,0);}
.m53_c00420{transform:matrix(0.278990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278990,0.000000,0.000000,0.250000,0,0);}
.m1e_c00420{transform:matrix(0.282575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282575,0.000000,0.000000,0.250000,0,0);}
.m70_c00420{transform:matrix(0.282650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282650,0.000000,0.000000,0.250000,0,0);}
.m17_c00420{transform:matrix(0.283055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283055,0.000000,0.000000,0.250000,0,0);}
.m18_c00420{transform:matrix(0.291075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291075,0.000000,0.000000,0.250000,0,0);}
.m3e_c00420{transform:matrix(0.299495,0.002396,-0.002000,0.249992,0,0);-ms-transform:matrix(0.299495,0.002396,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.299495,0.002396,-0.002000,0.249992,0,0);}
.m3f_c00420{transform:matrix(0.299580,0.002397,-0.002000,0.249992,0,0);-ms-transform:matrix(0.299580,0.002397,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.299580,0.002397,-0.002000,0.249992,0,0);}
.m3d_c00420{transform:matrix(0.304235,0.002434,-0.002000,0.249992,0,0);-ms-transform:matrix(0.304235,0.002434,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.304235,0.002434,-0.002000,0.249992,0,0);}
.m1b_c00420{transform:matrix(0.305470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305470,0.000000,0.000000,0.250000,0,0);}
.m1_c00420{transform:matrix(0.313340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313340,0.000000,0.000000,0.250000,0,0);}
.m0_c00420{transform:matrix(0.383160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383160,0.000000,0.000000,0.250000,0,0);}
.v0_c00420{vertical-align:0.000000px;}
.ls0_c00420{letter-spacing:0.000000px;}
.sc__c00420{text-shadow:none;}
.sc0_c00420{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__c00420{-webkit-text-stroke:0px transparent;}
.sc0_c00420{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00420{word-spacing:0.000000px;}
.fc0_c00420{color:transparent;}
.fs2_c00420{font-size:66.000000px;}
.fs6_c00420{font-size:66.002112px;}
.fs3_c00420{font-size:72.000000px;}
.fs7_c00420{font-size:78.000000px;}
.fs1_c00420{font-size:84.000000px;}
.fs4_c00420{font-size:84.002688px;}
.fs0_c00420{font-size:90.000000px;}
.fs5_c00420{font-size:96.003072px;}
.y0_c00420{bottom:0.000000px;}
.y54_c00420{bottom:85.956000px;}
.y53_c00420{bottom:86.484000px;}
.y52_c00420{bottom:87.417000px;}
.y51_c00420{bottom:88.458000px;}
.y50_c00420{bottom:89.098500px;}
.y4f_c00420{bottom:118.155000px;}
.y4e_c00420{bottom:119.346000px;}
.y4d_c00420{bottom:119.758500px;}
.y4c_c00420{bottom:121.513500px;}
.y4b_c00420{bottom:122.116500px;}
.y4a_c00420{bottom:122.908500px;}
.y49_c00420{bottom:123.486000px;}
.y48_c00420{bottom:124.471500px;}
.y47_c00420{bottom:152.946000px;}
.y46_c00420{bottom:154.438500px;}
.y45_c00420{bottom:155.185500px;}
.y44_c00420{bottom:155.758500px;}
.y43_c00420{bottom:156.522000px;}
.y42_c00420{bottom:157.636500px;}
.y41_c00420{bottom:158.173500px;}
.y40_c00420{bottom:159.301500px;}
.y3f_c00420{bottom:191.881500px;}
.y3e_c00420{bottom:231.253500px;}
.y3d_c00420{bottom:265.695000px;}
.y3c_c00420{bottom:301.069500px;}
.y3b_c00420{bottom:349.014000px;}
.y3a_c00420{bottom:386.176500px;}
.y39_c00420{bottom:386.527500px;}
.y38_c00420{bottom:386.893500px;}
.y37_c00420{bottom:387.748500px;}
.y36_c00420{bottom:388.705500px;}
.y35_c00420{bottom:389.685000px;}
.y34_c00420{bottom:390.151500px;}
.y33_c00420{bottom:423.471000px;}
.y32_c00420{bottom:476.890500px;}
.y31_c00420{bottom:514.041000px;}
.y30_c00420{bottom:550.080000px;}
.y2f_c00420{bottom:602.640000px;}
.y2e_c00420{bottom:638.362500px;}
.y2d_c00420{bottom:672.390000px;}
.y2c_c00420{bottom:708.660000px;}
.y2b_c00420{bottom:761.695776px;}
.y2a_c00420{bottom:761.696292px;}
.y29_c00420{bottom:761.696436px;}
.y28_c00420{bottom:761.696964px;}
.y25_c00420{bottom:797.786652px;}
.y27_c00420{bottom:797.786784px;}
.y26_c00420{bottom:797.787012px;}
.y24_c00420{bottom:797.787360px;}
.y22_c00420{bottom:797.787732px;}
.y23_c00420{bottom:797.787816px;}
.y21_c00420{bottom:797.788080px;}
.y1d_c00420{bottom:832.139580px;}
.y1e_c00420{bottom:833.335920px;}
.y1f_c00420{bottom:833.612892px;}
.y20_c00420{bottom:834.317628px;}
.y1c_c00420{bottom:869.708976px;}
.y1b_c00420{bottom:870.251028px;}
.y1a_c00420{bottom:871.393860px;}
.y19_c00420{bottom:872.100000px;}
.y18_c00420{bottom:922.021500px;}
.y17_c00420{bottom:923.230500px;}
.y16_c00420{bottom:923.848500px;}
.y15_c00420{bottom:924.208500px;}
.y14_c00420{bottom:959.320500px;}
.y13_c00420{bottom:993.717000px;}
.y12_c00420{bottom:1027.408500px;}
.y11_c00420{bottom:1027.806000px;}
.y10_c00420{bottom:1028.346000px;}
.yf_c00420{bottom:1028.745000px;}
.ye_c00420{bottom:1028.938500px;}
.yd_c00420{bottom:1029.402000px;}
.yc_c00420{bottom:1030.204500px;}
.yb_c00420{bottom:1030.401000px;}
.ya_c00420{bottom:1030.591500px;}
.y4_c00420{bottom:1061.641500px;}
.y5_c00420{bottom:1062.069000px;}
.y6_c00420{bottom:1062.514500px;}
.y7_c00420{bottom:1063.213500px;}
.y8_c00420{bottom:1063.482000px;}
.y9_c00420{bottom:1063.830000px;}
.y3_c00420{bottom:1097.622000px;}
.y2_c00420{bottom:1132.650000px;}
.y1_c00420{bottom:1211.086500px;}
.h4_c00420{height:66.000000px;}
.h8_c00420{height:66.002112px;}
.h5_c00420{height:72.000000px;}
.h9_c00420{height:78.000000px;}
.h3_c00420{height:84.000000px;}
.h6_c00420{height:84.002688px;}
.h2_c00420{height:90.000000px;}
.h7_c00420{height:96.003072px;}
.h1_c00420{height:1251.000000px;}
.h0_c00420{height:1251.150000px;}
.w0_c00420{width:915.000000px;}
.x0_c00420{left:0.000000px;}
.xc_c00420{left:147.420000px;}
.x3_c00420{left:150.120000px;}
.x26_c00420{left:169.976244px;}
.x2c_c00420{left:171.989868px;}
.x3d_c00420{left:184.140000px;}
.x57_c00420{left:186.759000px;}
.xd_c00420{left:192.510000px;}
.x16_c00420{left:202.633500px;}
.x2d_c00420{left:204.120420px;}
.x38_c00420{left:205.740000px;}
.x20_c00420{left:213.571500px;}
.x4_c00420{left:224.370000px;}
.x43_c00420{left:227.610000px;}
.x53_c00420{left:239.842500px;}
.x36_c00420{left:246.780000px;}
.x35_c00420{left:248.400000px;}
.x4e_c00420{left:250.585500px;}
.x17_c00420{left:258.256500px;}
.x3e_c00420{left:260.280000px;}
.x30_c00420{left:269.730000px;}
.x54_c00420{left:271.894500px;}
.x39_c00420{left:281.880000px;}
.x5_c00420{left:290.520000px;}
.x3f_c00420{left:291.870000px;}
.x22_c00420{left:302.253000px;}
.x44_c00420{left:303.480000px;}
.xe_c00420{left:312.390000px;}
.x29_c00420{left:313.743648px;}
.x48_c00420{left:315.727500px;}
.x1a_c00420{left:322.831500px;}
.x2e_c00420{left:325.083660px;}
.x58_c00420{left:326.820000px;}
.x27_c00420{left:333.647004px;}
.x23_c00420{left:334.912500px;}
.x45_c00420{left:336.420000px;}
.x18_c00420{left:345.714000px;}
.x31_c00420{left:346.950000px;}
.x40_c00420{left:348.030000px;}
.x55_c00420{left:349.359000px;}
.xf_c00420{left:355.860000px;}
.x4d_c00420{left:358.830000px;}
.x3a_c00420{left:370.440000px;}
.x6_c00420{left:378.540000px;}
.x41_c00420{left:380.160000px;}
.x24_c00420{left:391.065000px;}
.x4f_c00420{left:392.614500px;}
.x37_c00420{left:401.490000px;}
.x49_c00420{left:402.663000px;}
.x59_c00420{left:404.565000px;}
.x7_c00420{left:410.670000px;}
.x28_c00420{left:411.878148px;}
.x32_c00420{left:413.100000px;}
.x1_c00420{left:421.200000px;}
.x19_c00420{left:422.683500px;}
.x2f_c00420{left:424.717032px;}
.x50_c00420{left:426.364500px;}
.x10_c00420{left:432.810000px;}
.x33_c00420{left:434.430000px;}
.x46_c00420{left:446.580000px;}
.x5a_c00420{left:448.597500px;}
.x1b_c00420{left:456.481500px;}
.x2a_c00420{left:467.648988px;}
.x21_c00420{left:469.261500px;}
.x51_c00420{left:470.343000px;}
.x2_c00420{left:474.660000px;}
.x8_c00420{left:477.360000px;}
.x34_c00420{left:478.440000px;}
.x4a_c00420{left:480.432000px;}
.x2b_c00420{left:488.980356px;}
.x25_c00420{left:500.956500px;}
.x11_c00420{left:510.570000px;}
.x42_c00420{left:512.460000px;}
.x4b_c00420{left:513.640500px;}
.x9_c00420{left:521.370000px;}
.x47_c00420{left:523.260000px;}
.x1c_c00420{left:533.703000px;}
.x56_c00420{left:535.956000px;}
.x3b_c00420{left:544.860000px;}
.x52_c00420{left:558.105000px;}
.x1d_c00420{left:565.831500px;}
.x3c_c00420{left:578.880000px;}
.x4c_c00420{left:601.830000px;}
.x12_c00420{left:621.540000px;}
.x1e_c00420{left:632.254500px;}
.xa_c00420{left:633.960000px;}
.x13_c00420{left:654.750000px;}
.x14_c00420{left:688.230000px;}
.xb_c00420{left:721.440000px;}
.x15_c00420{left:766.530000px;}
.x1f_c00420{left:788.317500px;}
@media print{
.v0_c00420{vertical-align:0.000000pt;}
.ls0_c00420{letter-spacing:0.000000pt;}
.ws0_c00420{word-spacing:0.000000pt;}
.fs2_c00420{font-size:58.666667pt;}
.fs6_c00420{font-size:58.668544pt;}
.fs3_c00420{font-size:64.000000pt;}
.fs7_c00420{font-size:69.333333pt;}
.fs1_c00420{font-size:74.666667pt;}
.fs4_c00420{font-size:74.669056pt;}
.fs0_c00420{font-size:80.000000pt;}
.fs5_c00420{font-size:85.336064pt;}
.y0_c00420{bottom:0.000000pt;}
.y54_c00420{bottom:76.405333pt;}
.y53_c00420{bottom:76.874667pt;}
.y52_c00420{bottom:77.704000pt;}
.y51_c00420{bottom:78.629333pt;}
.y50_c00420{bottom:79.198667pt;}
.y4f_c00420{bottom:105.026667pt;}
.y4e_c00420{bottom:106.085333pt;}
.y4d_c00420{bottom:106.452000pt;}
.y4c_c00420{bottom:108.012000pt;}
.y4b_c00420{bottom:108.548000pt;}
.y4a_c00420{bottom:109.252000pt;}
.y49_c00420{bottom:109.765333pt;}
.y48_c00420{bottom:110.641333pt;}
.y47_c00420{bottom:135.952000pt;}
.y46_c00420{bottom:137.278667pt;}
.y45_c00420{bottom:137.942667pt;}
.y44_c00420{bottom:138.452000pt;}
.y43_c00420{bottom:139.130667pt;}
.y42_c00420{bottom:140.121333pt;}
.y41_c00420{bottom:140.598667pt;}
.y40_c00420{bottom:141.601333pt;}
.y3f_c00420{bottom:170.561333pt;}
.y3e_c00420{bottom:205.558667pt;}
.y3d_c00420{bottom:236.173333pt;}
.y3c_c00420{bottom:267.617333pt;}
.y3b_c00420{bottom:310.234667pt;}
.y3a_c00420{bottom:343.268000pt;}
.y39_c00420{bottom:343.580000pt;}
.y38_c00420{bottom:343.905333pt;}
.y37_c00420{bottom:344.665333pt;}
.y36_c00420{bottom:345.516000pt;}
.y35_c00420{bottom:346.386667pt;}
.y34_c00420{bottom:346.801333pt;}
.y33_c00420{bottom:376.418667pt;}
.y32_c00420{bottom:423.902667pt;}
.y31_c00420{bottom:456.925333pt;}
.y30_c00420{bottom:488.960000pt;}
.y2f_c00420{bottom:535.680000pt;}
.y2e_c00420{bottom:567.433333pt;}
.y2d_c00420{bottom:597.680000pt;}
.y2c_c00420{bottom:629.920000pt;}
.y2b_c00420{bottom:677.062912pt;}
.y2a_c00420{bottom:677.063371pt;}
.y29_c00420{bottom:677.063499pt;}
.y28_c00420{bottom:677.063968pt;}
.y25_c00420{bottom:709.143691pt;}
.y27_c00420{bottom:709.143808pt;}
.y26_c00420{bottom:709.144011pt;}
.y24_c00420{bottom:709.144320pt;}
.y22_c00420{bottom:709.144651pt;}
.y23_c00420{bottom:709.144725pt;}
.y21_c00420{bottom:709.144960pt;}
.y1d_c00420{bottom:739.679627pt;}
.y1e_c00420{bottom:740.743040pt;}
.y1f_c00420{bottom:740.989237pt;}
.y20_c00420{bottom:741.615669pt;}
.y1c_c00420{bottom:773.074645pt;}
.y1b_c00420{bottom:773.556469pt;}
.y1a_c00420{bottom:774.572320pt;}
.y19_c00420{bottom:775.200000pt;}
.y18_c00420{bottom:819.574667pt;}
.y17_c00420{bottom:820.649333pt;}
.y16_c00420{bottom:821.198667pt;}
.y15_c00420{bottom:821.518667pt;}
.y14_c00420{bottom:852.729333pt;}
.y13_c00420{bottom:883.304000pt;}
.y12_c00420{bottom:913.252000pt;}
.y11_c00420{bottom:913.605333pt;}
.y10_c00420{bottom:914.085333pt;}
.yf_c00420{bottom:914.440000pt;}
.ye_c00420{bottom:914.612000pt;}
.yd_c00420{bottom:915.024000pt;}
.yc_c00420{bottom:915.737333pt;}
.yb_c00420{bottom:915.912000pt;}
.ya_c00420{bottom:916.081333pt;}
.y4_c00420{bottom:943.681333pt;}
.y5_c00420{bottom:944.061333pt;}
.y6_c00420{bottom:944.457333pt;}
.y7_c00420{bottom:945.078667pt;}
.y8_c00420{bottom:945.317333pt;}
.y9_c00420{bottom:945.626667pt;}
.y3_c00420{bottom:975.664000pt;}
.y2_c00420{bottom:1006.800000pt;}
.y1_c00420{bottom:1076.521333pt;}
.h4_c00420{height:58.666667pt;}
.h8_c00420{height:58.668544pt;}
.h5_c00420{height:64.000000pt;}
.h9_c00420{height:69.333333pt;}
.h3_c00420{height:74.666667pt;}
.h6_c00420{height:74.669056pt;}
.h2_c00420{height:80.000000pt;}
.h7_c00420{height:85.336064pt;}
.h1_c00420{height:1112.000000pt;}
.h0_c00420{height:1112.133333pt;}
.w0_c00420{width:813.333333pt;}
.x0_c00420{left:0.000000pt;}
.xc_c00420{left:131.040000pt;}
.x3_c00420{left:133.440000pt;}
.x26_c00420{left:151.089995pt;}
.x2c_c00420{left:152.879883pt;}
.x3d_c00420{left:163.680000pt;}
.x57_c00420{left:166.008000pt;}
.xd_c00420{left:171.120000pt;}
.x16_c00420{left:180.118667pt;}
.x2d_c00420{left:181.440373pt;}
.x38_c00420{left:182.880000pt;}
.x20_c00420{left:189.841333pt;}
.x4_c00420{left:199.440000pt;}
.x43_c00420{left:202.320000pt;}
.x53_c00420{left:213.193333pt;}
.x36_c00420{left:219.360000pt;}
.x35_c00420{left:220.800000pt;}
.x4e_c00420{left:222.742667pt;}
.x17_c00420{left:229.561333pt;}
.x3e_c00420{left:231.360000pt;}
.x30_c00420{left:239.760000pt;}
.x54_c00420{left:241.684000pt;}
.x39_c00420{left:250.560000pt;}
.x5_c00420{left:258.240000pt;}
.x3f_c00420{left:259.440000pt;}
.x22_c00420{left:268.669333pt;}
.x44_c00420{left:269.760000pt;}
.xe_c00420{left:277.680000pt;}
.x29_c00420{left:278.883243pt;}
.x48_c00420{left:280.646667pt;}
.x1a_c00420{left:286.961333pt;}
.x2e_c00420{left:288.963253pt;}
.x58_c00420{left:290.506667pt;}
.x27_c00420{left:296.575115pt;}
.x23_c00420{left:297.700000pt;}
.x45_c00420{left:299.040000pt;}
.x18_c00420{left:307.301333pt;}
.x31_c00420{left:308.400000pt;}
.x40_c00420{left:309.360000pt;}
.x55_c00420{left:310.541333pt;}
.xf_c00420{left:316.320000pt;}
.x4d_c00420{left:318.960000pt;}
.x3a_c00420{left:329.280000pt;}
.x6_c00420{left:336.480000pt;}
.x41_c00420{left:337.920000pt;}
.x24_c00420{left:347.613333pt;}
.x4f_c00420{left:348.990667pt;}
.x37_c00420{left:356.880000pt;}
.x49_c00420{left:357.922667pt;}
.x59_c00420{left:359.613333pt;}
.x7_c00420{left:365.040000pt;}
.x28_c00420{left:366.113909pt;}
.x32_c00420{left:367.200000pt;}
.x1_c00420{left:374.400000pt;}
.x19_c00420{left:375.718667pt;}
.x2f_c00420{left:377.526251pt;}
.x50_c00420{left:378.990667pt;}
.x10_c00420{left:384.720000pt;}
.x33_c00420{left:386.160000pt;}
.x46_c00420{left:396.960000pt;}
.x5a_c00420{left:398.753333pt;}
.x1b_c00420{left:405.761333pt;}
.x2a_c00420{left:415.687989pt;}
.x21_c00420{left:417.121333pt;}
.x51_c00420{left:418.082667pt;}
.x2_c00420{left:421.920000pt;}
.x8_c00420{left:424.320000pt;}
.x34_c00420{left:425.280000pt;}
.x4a_c00420{left:427.050667pt;}
.x2b_c00420{left:434.649205pt;}
.x25_c00420{left:445.294667pt;}
.x11_c00420{left:453.840000pt;}
.x42_c00420{left:455.520000pt;}
.x4b_c00420{left:456.569333pt;}
.x9_c00420{left:463.440000pt;}
.x47_c00420{left:465.120000pt;}
.x1c_c00420{left:474.402667pt;}
.x56_c00420{left:476.405333pt;}
.x3b_c00420{left:484.320000pt;}
.x52_c00420{left:496.093333pt;}
.x1d_c00420{left:502.961333pt;}
.x3c_c00420{left:514.560000pt;}
.x4c_c00420{left:534.960000pt;}
.x12_c00420{left:552.480000pt;}
.x1e_c00420{left:562.004000pt;}
.xa_c00420{left:563.520000pt;}
.x13_c00420{left:582.000000pt;}
.x14_c00420{left:611.760000pt;}
.xb_c00420{left:641.280000pt;}
.x15_c00420{left:681.360000pt;}
.x1f_c00420{left:700.726667pt;}
}





/* 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_c00421 {
    display:none;
  }
  .loading-indicator_c00421.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00421 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_c00421 { 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_c00421" -> "#page-container .classname_c00421")
 */
.pf_c00421 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00421 { /* 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_c00421.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00421 { /* 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_c00421 { /* 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_c00421 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00421 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00421 {overflow:visible;}
  }
}
.c_c00421 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00421 { /* 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_c00421:after { /* webkit #35443 */
  content: '';
}
.t_c00421:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00421 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 */
}
.__c00421 { /* 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_c00421 { /* info for Javascript */
  display:none;
}
.l_c00421 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00421 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00421 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00421: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_c00421 {
    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_c00421.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00421.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_c00421 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00421{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00421;src:url('chunks/assets/font_b11a17f404e7258299fdf971.woff2')format("woff");}.ff1_c00421{font-family:ff1_c00421;line-height:1.000000;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;}
.ma_c00421{transform:matrix(0.095475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.095475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.095475,0.000000,0.000000,0.250000,0,0);}
.m14_c00421{transform:matrix(0.140992,0.002538,-0.004499,0.249960,0,0);-ms-transform:matrix(0.140992,0.002538,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.140992,0.002538,-0.004499,0.249960,0,0);}
.m7_c00421{transform:matrix(0.146636,-0.001613,0.002750,0.249985,0,0);-ms-transform:matrix(0.146636,-0.001613,0.002750,0.249985,0,0);-webkit-transform:matrix(0.146636,-0.001613,0.002750,0.249985,0,0);}
.m1_c00421{transform:matrix(0.153361,-0.001687,0.002750,0.249985,0,0);-ms-transform:matrix(0.153361,-0.001687,0.002750,0.249985,0,0);-webkit-transform:matrix(0.153361,-0.001687,0.002750,0.249985,0,0);}
.m2_c00421{transform:matrix(0.162500,-0.001788,0.002750,0.249985,0,0);-ms-transform:matrix(0.162500,-0.001788,0.002750,0.249985,0,0);-webkit-transform:matrix(0.162500,-0.001788,0.002750,0.249985,0,0);}
.m6_c00421{transform:matrix(0.165210,-0.001817,0.002750,0.249985,0,0);-ms-transform:matrix(0.165210,-0.001817,0.002750,0.249985,0,0);-webkit-transform:matrix(0.165210,-0.001817,0.002750,0.249985,0,0);}
.me_c00421{transform:matrix(0.170765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170765,0.000000,0.000000,0.250000,0,0);}
.m5_c00421{transform:matrix(0.171825,-0.001890,0.002750,0.249985,0,0);-ms-transform:matrix(0.171825,-0.001890,0.002750,0.249985,0,0);-webkit-transform:matrix(0.171825,-0.001890,0.002750,0.249985,0,0);}
.mb_c00421{transform:matrix(0.173405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173405,0.000000,0.000000,0.250000,0,0);}
.mc_c00421{transform:matrix(0.181435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181435,0.000000,0.000000,0.250000,0,0);}
.m13_c00421{transform:matrix(0.183605,0.003305,-0.004499,0.249960,0,0);-ms-transform:matrix(0.183605,0.003305,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.183605,0.003305,-0.004499,0.249960,0,0);}
.m9_c00421{transform:matrix(0.185035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185035,0.000000,0.000000,0.250000,0,0);}
.mf_c00421{transform:matrix(0.195203,0.003514,-0.004499,0.249960,0,0);-ms-transform:matrix(0.195203,0.003514,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.195203,0.003514,-0.004499,0.249960,0,0);}
.m0_c00421{transform:matrix(0.197178,-0.002169,0.002750,0.249985,0,0);-ms-transform:matrix(0.197178,-0.002169,0.002750,0.249985,0,0);-webkit-transform:matrix(0.197178,-0.002169,0.002750,0.249985,0,0);}
.m10_c00421{transform:matrix(0.200293,0.003605,-0.004499,0.249960,0,0);-ms-transform:matrix(0.200293,0.003605,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.200293,0.003605,-0.004499,0.249960,0,0);}
.m11_c00421{transform:matrix(0.200548,0.003610,-0.004499,0.249960,0,0);-ms-transform:matrix(0.200548,0.003610,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.200548,0.003610,-0.004499,0.249960,0,0);}
.m15_c00421{transform:matrix(0.218705,0.003937,-0.004499,0.249960,0,0);-ms-transform:matrix(0.218705,0.003937,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.218705,0.003937,-0.004499,0.249960,0,0);}
.md_c00421{transform:matrix(0.220850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220850,0.000000,0.000000,0.250000,0,0);}
.m12_c00421{transform:matrix(0.222569,0.004006,-0.004499,0.249960,0,0);-ms-transform:matrix(0.222569,0.004006,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.222569,0.004006,-0.004499,0.249960,0,0);}
.m4_c00421{transform:matrix(0.233721,-0.002571,0.002750,0.249985,0,0);-ms-transform:matrix(0.233721,-0.002571,0.002750,0.249985,0,0);-webkit-transform:matrix(0.233721,-0.002571,0.002750,0.249985,0,0);}
.m3_c00421{transform:matrix(0.288973,-0.003179,0.002750,0.249985,0,0);-ms-transform:matrix(0.288973,-0.003179,0.002750,0.249985,0,0);-webkit-transform:matrix(0.288973,-0.003179,0.002750,0.249985,0,0);}
.m8_c00421{transform:matrix(0.467467,-0.005142,0.002750,0.249985,0,0);-ms-transform:matrix(0.467467,-0.005142,0.002750,0.249985,0,0);-webkit-transform:matrix(0.467467,-0.005142,0.002750,0.249985,0,0);}
.v0_c00421{vertical-align:0.000000px;}
.ls0_c00421{letter-spacing:0.000000px;}
.sc__c00421{text-shadow:none;}
.sc0_c00421{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__c00421{-webkit-text-stroke:0px transparent;}
.sc0_c00421{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00421{word-spacing:0.000000px;}
.fc0_c00421{color:transparent;}
.fs3_c00421{font-size:102.016523px;}
.fs1_c00421{font-size:108.000000px;}
.fs2_c00421{font-size:114.000000px;}
.fs0_c00421{font-size:126.007623px;}
.fs4_c00421{font-size:126.020410px;}
.y0_c00421{bottom:0.000000px;}
.y12_c00421{bottom:829.262631px;}
.y11_c00421{bottom:831.050451px;}
.y10_c00421{bottom:833.763711px;}
.yf_c00421{bottom:864.418074px;}
.ye_c00421{bottom:866.838840px;}
.yd_c00421{bottom:868.086780px;}
.yc_c00421{bottom:870.216000px;}
.yb_c00421{bottom:921.613500px;}
.ya_c00421{bottom:953.346000px;}
.y1_c00421{bottom:1027.354500px;}
.y2_c00421{bottom:1027.890635px;}
.y3_c00421{bottom:1028.624439px;}
.y4_c00421{bottom:1029.596025px;}
.y5_c00421{bottom:1030.306796px;}
.y6_c00421{bottom:1030.695651px;}
.y7_c00421{bottom:1031.541655px;}
.y8_c00421{bottom:1032.995916px;}
.y9_c00421{bottom:1033.356672px;}
.h5_c00421{height:102.016523px;}
.h3_c00421{height:108.000000px;}
.h4_c00421{height:114.000000px;}
.h2_c00421{height:126.007623px;}
.h6_c00421{height:126.020410px;}
.h1_c00421{height:1251.000000px;}
.h0_c00421{height:1251.150000px;}
.w0_c00421{width:915.000000px;}
.x0_c00421{left:0.000000px;}
.x1_c00421{left:79.695000px;}
.x2_c00421{left:128.434500px;}
.x3_c00421{left:195.144000px;}
.xb_c00421{left:279.990000px;}
.x4_c00421{left:283.470000px;}
.xf_c00421{left:298.309500px;}
.xc_c00421{left:308.610000px;}
.x5_c00421{left:348.085500px;}
.x6_c00421{left:383.436000px;}
.x12_c00421{left:394.895355px;}
.xa_c00421{left:416.340000px;}
.x7_c00421{left:460.345500px;}
.x10_c00421{left:485.929500px;}
.x13_c00421{left:507.953151px;}
.xd_c00421{left:527.580000px;}
.x14_c00421{left:582.435105px;}
.xe_c00421{left:583.740000px;}
.x8_c00421{left:592.551000px;}
.x11_c00421{left:620.416500px;}
.x9_c00421{left:625.347000px;}
@media print{
.v0_c00421{vertical-align:0.000000pt;}
.ls0_c00421{letter-spacing:0.000000pt;}
.ws0_c00421{word-spacing:0.000000pt;}
.fs3_c00421{font-size:90.681353pt;}
.fs1_c00421{font-size:96.000000pt;}
.fs2_c00421{font-size:101.333333pt;}
.fs0_c00421{font-size:112.006776pt;}
.fs4_c00421{font-size:112.018143pt;}
.y0_c00421{bottom:0.000000pt;}
.y12_c00421{bottom:737.122339pt;}
.y11_c00421{bottom:738.711512pt;}
.y10_c00421{bottom:741.123299pt;}
.yf_c00421{bottom:768.371621pt;}
.ye_c00421{bottom:770.523413pt;}
.yd_c00421{bottom:771.632693pt;}
.yc_c00421{bottom:773.525333pt;}
.yb_c00421{bottom:819.212000pt;}
.ya_c00421{bottom:847.418667pt;}
.y1_c00421{bottom:913.204000pt;}
.y2_c00421{bottom:913.680564pt;}
.y3_c00421{bottom:914.332835pt;}
.y4_c00421{bottom:915.196467pt;}
.y5_c00421{bottom:915.828263pt;}
.y6_c00421{bottom:916.173912pt;}
.y7_c00421{bottom:916.925916pt;}
.y8_c00421{bottom:918.218592pt;}
.y9_c00421{bottom:918.539264pt;}
.h5_c00421{height:90.681353pt;}
.h3_c00421{height:96.000000pt;}
.h4_c00421{height:101.333333pt;}
.h2_c00421{height:112.006776pt;}
.h6_c00421{height:112.018143pt;}
.h1_c00421{height:1112.000000pt;}
.h0_c00421{height:1112.133333pt;}
.w0_c00421{width:813.333333pt;}
.x0_c00421{left:0.000000pt;}
.x1_c00421{left:70.840000pt;}
.x2_c00421{left:114.164000pt;}
.x3_c00421{left:173.461333pt;}
.xb_c00421{left:248.880000pt;}
.x4_c00421{left:251.973333pt;}
.xf_c00421{left:265.164000pt;}
.xc_c00421{left:274.320000pt;}
.x5_c00421{left:309.409333pt;}
.x6_c00421{left:340.832000pt;}
.x12_c00421{left:351.018093pt;}
.xa_c00421{left:370.080000pt;}
.x7_c00421{left:409.196000pt;}
.x10_c00421{left:431.937333pt;}
.x13_c00421{left:451.513912pt;}
.xd_c00421{left:468.960000pt;}
.x14_c00421{left:517.720093pt;}
.xe_c00421{left:518.880000pt;}
.x8_c00421{left:526.712000pt;}
.x11_c00421{left:551.481333pt;}
.x9_c00421{left:555.864000pt;}
}





/* 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_c00422 {
    display:none;
  }
  .loading-indicator_c00422.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00422 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_c00422 { 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_c00422" -> "#page-container .classname_c00422")
 */
.pf_c00422 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00422 { /* 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_c00422.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00422 { /* 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_c00422 { /* 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_c00422 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00422 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00422 {overflow:visible;}
  }
}
.c_c00422 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00422 { /* 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_c00422:after { /* webkit #35443 */
  content: '';
}
.t_c00422:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00422 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 */
}
.__c00422 { /* 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_c00422 { /* info for Javascript */
  display:none;
}
.l_c00422 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00422 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00422 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00422: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_c00422 {
    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_c00422.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00422.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_c00422 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00422{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00422;src:url('chunks/assets/font_fabf4b590f7fb32aea93ffb2.woff2')format("woff");}.ff1_c00422{font-family:ff1_c00422;line-height:1.000000;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;}
.m115_c00422{transform:matrix(0.010806,0.000433,-0.010002,0.249800,0,0);-ms-transform:matrix(0.010806,0.000433,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.010806,0.000433,-0.010002,0.249800,0,0);}
.me7_c00422{transform:matrix(0.123930,0.003346,-0.006748,0.249909,0,0);-ms-transform:matrix(0.123930,0.003346,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.123930,0.003346,-0.006748,0.249909,0,0);}
.m114_c00422{transform:matrix(0.133048,0.005327,-0.010002,0.249800,0,0);-ms-transform:matrix(0.133048,0.005327,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.133048,0.005327,-0.010002,0.249800,0,0);}
.m10e_c00422{transform:matrix(0.134727,0.005394,-0.010002,0.249800,0,0);-ms-transform:matrix(0.134727,0.005394,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.134727,0.005394,-0.010002,0.249800,0,0);}
.me2_c00422{transform:matrix(0.147541,0.003984,-0.006748,0.249909,0,0);-ms-transform:matrix(0.147541,0.003984,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.147541,0.003984,-0.006748,0.249909,0,0);}
.me8_c00422{transform:matrix(0.154349,0.004167,-0.006748,0.249909,0,0);-ms-transform:matrix(0.154349,0.004167,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.154349,0.004167,-0.006748,0.249909,0,0);}
.m107_c00422{transform:matrix(0.158130,0.003321,-0.005249,0.249945,0,0);-ms-transform:matrix(0.158130,0.003321,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.158130,0.003321,-0.005249,0.249945,0,0);}
.me5_c00422{transform:matrix(0.158417,0.004277,-0.006748,0.249909,0,0);-ms-transform:matrix(0.158417,0.004277,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.158417,0.004277,-0.006748,0.249909,0,0);}
.m101_c00422{transform:matrix(0.159385,0.003347,-0.005249,0.249945,0,0);-ms-transform:matrix(0.159385,0.003347,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.159385,0.003347,-0.005249,0.249945,0,0);}
.mae_c00422{transform:matrix(0.161154,0.003868,-0.005998,0.249928,0,0);-ms-transform:matrix(0.161154,0.003868,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.161154,0.003868,-0.005998,0.249928,0,0);}
.me0_c00422{transform:matrix(0.163325,0.004410,-0.006748,0.249909,0,0);-ms-transform:matrix(0.163325,0.004410,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.163325,0.004410,-0.006748,0.249909,0,0);}
.m105_c00422{transform:matrix(0.164494,0.003454,-0.005249,0.249945,0,0);-ms-transform:matrix(0.164494,0.003454,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.164494,0.003454,-0.005249,0.249945,0,0);}
.me1_c00422{transform:matrix(0.165965,0.004481,-0.006748,0.249909,0,0);-ms-transform:matrix(0.165965,0.004481,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.165965,0.004481,-0.006748,0.249909,0,0);}
.m88_c00422{transform:matrix(0.167271,0.002509,-0.003750,0.249972,0,0);-ms-transform:matrix(0.167271,0.002509,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.167271,0.002509,-0.003750,0.249972,0,0);}
.med_c00422{transform:matrix(0.168449,0.004548,-0.006748,0.249909,0,0);-ms-transform:matrix(0.168449,0.004548,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.168449,0.004548,-0.006748,0.249909,0,0);}
.mea_c00422{transform:matrix(0.169323,0.004572,-0.006748,0.249909,0,0);-ms-transform:matrix(0.169323,0.004572,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.169323,0.004572,-0.006748,0.249909,0,0);}
.mb2_c00422{transform:matrix(0.169336,0.004064,-0.005998,0.249928,0,0);-ms-transform:matrix(0.169336,0.004064,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.169336,0.004064,-0.005998,0.249928,0,0);}
.mc1_c00422{transform:matrix(0.169556,0.002882,-0.004249,0.249964,0,0);-ms-transform:matrix(0.169556,0.002882,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.169556,0.002882,-0.004249,0.249964,0,0);}
.me6_c00422{transform:matrix(0.169653,0.004581,-0.006748,0.249909,0,0);-ms-transform:matrix(0.169653,0.004581,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.169653,0.004581,-0.006748,0.249909,0,0);}
.me4_c00422{transform:matrix(0.169868,0.004586,-0.006748,0.249909,0,0);-ms-transform:matrix(0.169868,0.004586,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.169868,0.004586,-0.006748,0.249909,0,0);}
.mf4_c00422{transform:matrix(0.169993,0.004590,-0.006748,0.249909,0,0);-ms-transform:matrix(0.169993,0.004590,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.169993,0.004590,-0.006748,0.249909,0,0);}
.maa_c00422{transform:matrix(0.170716,0.004097,-0.005998,0.249928,0,0);-ms-transform:matrix(0.170716,0.004097,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.170716,0.004097,-0.005998,0.249928,0,0);}
.me3_c00422{transform:matrix(0.171003,0.004617,-0.006748,0.249909,0,0);-ms-transform:matrix(0.171003,0.004617,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.171003,0.004617,-0.006748,0.249909,0,0);}
.ma7_c00422{transform:matrix(0.171561,0.004117,-0.005998,0.249928,0,0);-ms-transform:matrix(0.171561,0.004117,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.171561,0.004117,-0.005998,0.249928,0,0);}
.mc8_c00422{transform:matrix(0.171585,0.002917,-0.004249,0.249964,0,0);-ms-transform:matrix(0.171585,0.002917,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.171585,0.002917,-0.004249,0.249964,0,0);}
.mdf_c00422{transform:matrix(0.171732,0.004637,-0.006748,0.249909,0,0);-ms-transform:matrix(0.171732,0.004637,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.171732,0.004637,-0.006748,0.249909,0,0);}
.mac_c00422{transform:matrix(0.172615,0.004143,-0.005998,0.249928,0,0);-ms-transform:matrix(0.172615,0.004143,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.172615,0.004143,-0.005998,0.249928,0,0);}
.m109_c00422{transform:matrix(0.172742,0.003628,-0.005249,0.249945,0,0);-ms-transform:matrix(0.172742,0.003628,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.172742,0.003628,-0.005249,0.249945,0,0);}
.mc4_c00422{transform:matrix(0.173550,0.002950,-0.004249,0.249964,0,0);-ms-transform:matrix(0.173550,0.002950,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.173550,0.002950,-0.004249,0.249964,0,0);}
.ma9_c00422{transform:matrix(0.174395,0.004185,-0.005998,0.249928,0,0);-ms-transform:matrix(0.174395,0.004185,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.174395,0.004185,-0.005998,0.249928,0,0);}
.m104_c00422{transform:matrix(0.176756,0.003712,-0.005249,0.249945,0,0);-ms-transform:matrix(0.176756,0.003712,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.176756,0.003712,-0.005249,0.249945,0,0);}
.mf1_c00422{transform:matrix(0.177705,0.004798,-0.006748,0.249909,0,0);-ms-transform:matrix(0.177705,0.004798,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.177705,0.004798,-0.006748,0.249909,0,0);}
.meb_c00422{transform:matrix(0.177815,0.004801,-0.006748,0.249909,0,0);-ms-transform:matrix(0.177815,0.004801,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.177815,0.004801,-0.006748,0.249909,0,0);}
.mc2_c00422{transform:matrix(0.178304,0.003031,-0.004249,0.249964,0,0);-ms-transform:matrix(0.178304,0.003031,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.178304,0.003031,-0.004249,0.249964,0,0);}
.mf7_c00422{transform:matrix(0.178486,0.006789,-0.009503,0.249819,0,0);-ms-transform:matrix(0.178486,0.006789,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.178486,0.006789,-0.009503,0.249819,0,0);}
.m99_c00422{transform:matrix(0.178564,0.004286,-0.005998,0.249928,0,0);-ms-transform:matrix(0.178564,0.004286,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.178564,0.004286,-0.005998,0.249928,0,0);}
.mf2_c00422{transform:matrix(0.178840,0.004829,-0.006748,0.249909,0,0);-ms-transform:matrix(0.178840,0.004829,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.178840,0.004829,-0.006748,0.249909,0,0);}
.mc9_c00422{transform:matrix(0.179904,0.003058,-0.004249,0.249964,0,0);-ms-transform:matrix(0.179904,0.003058,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.179904,0.003058,-0.004249,0.249964,0,0);}
.m3a_c00422{transform:matrix(0.180226,0.003244,-0.004499,0.249960,0,0);-ms-transform:matrix(0.180226,0.003244,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.180226,0.003244,-0.004499,0.249960,0,0);}
.m100_c00422{transform:matrix(0.180754,0.006876,-0.009503,0.249819,0,0);-ms-transform:matrix(0.180754,0.006876,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.180754,0.006876,-0.009503,0.249819,0,0);}
.mc6_c00422{transform:matrix(0.181419,0.003084,-0.004249,0.249964,0,0);-ms-transform:matrix(0.181419,0.003084,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.181419,0.003084,-0.004249,0.249964,0,0);}
.mee_c00422{transform:matrix(0.181434,0.004899,-0.006748,0.249909,0,0);-ms-transform:matrix(0.181434,0.004899,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.181434,0.004899,-0.006748,0.249909,0,0);}
.ma2_c00422{transform:matrix(0.181893,0.004365,-0.005998,0.249928,0,0);-ms-transform:matrix(0.181893,0.004365,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.181893,0.004365,-0.005998,0.249928,0,0);}
.m9c_c00422{transform:matrix(0.182417,0.004378,-0.005998,0.249928,0,0);-ms-transform:matrix(0.182417,0.004378,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.182417,0.004378,-0.005998,0.249928,0,0);}
.m37_c00422{transform:matrix(0.184212,-0.002211,0.003000,0.249982,0,0);-ms-transform:matrix(0.184212,-0.002211,0.003000,0.249982,0,0);-webkit-transform:matrix(0.184212,-0.002211,0.003000,0.249982,0,0);}
.m106_c00422{transform:matrix(0.185299,0.003891,-0.005249,0.249945,0,0);-ms-transform:matrix(0.185299,0.003891,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.185299,0.003891,-0.005249,0.249945,0,0);}
.mfc_c00422{transform:matrix(0.185696,0.007064,-0.009503,0.249819,0,0);-ms-transform:matrix(0.185696,0.007064,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.185696,0.007064,-0.009503,0.249819,0,0);}
.ma6_c00422{transform:matrix(0.185712,0.004457,-0.005998,0.249928,0,0);-ms-transform:matrix(0.185712,0.004457,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.185712,0.004457,-0.005998,0.249928,0,0);}
.mf5_c00422{transform:matrix(0.188836,0.005099,-0.006748,0.249909,0,0);-ms-transform:matrix(0.188836,0.005099,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.188836,0.005099,-0.006748,0.249909,0,0);}
.mf0_c00422{transform:matrix(0.189706,0.005122,-0.006748,0.249909,0,0);-ms-transform:matrix(0.189706,0.005122,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.189706,0.005122,-0.006748,0.249909,0,0);}
.maf_c00422{transform:matrix(0.190280,0.004567,-0.005998,0.249928,0,0);-ms-transform:matrix(0.190280,0.004567,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.190280,0.004567,-0.005998,0.249928,0,0);}
.m10c_c00422{transform:matrix(0.191272,0.007659,-0.010002,0.249800,0,0);-ms-transform:matrix(0.191272,0.007659,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.191272,0.007659,-0.010002,0.249800,0,0);}
.m3c_c00422{transform:matrix(0.191634,0.003449,-0.004499,0.249960,0,0);-ms-transform:matrix(0.191634,0.003449,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.191634,0.003449,-0.004499,0.249960,0,0);}
.m10a_c00422{transform:matrix(0.192243,0.004037,-0.005249,0.249945,0,0);-ms-transform:matrix(0.192243,0.004037,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.192243,0.004037,-0.005249,0.249945,0,0);}
.m9f_c00422{transform:matrix(0.192245,0.004614,-0.005998,0.249928,0,0);-ms-transform:matrix(0.192245,0.004614,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.192245,0.004614,-0.005998,0.249928,0,0);}
.mfe_c00422{transform:matrix(0.193460,0.007359,-0.009503,0.249819,0,0);-ms-transform:matrix(0.193460,0.007359,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.193460,0.007359,-0.009503,0.249819,0,0);}
.m30_c00422{transform:matrix(0.193745,0.001937,-0.002500,0.249988,0,0);-ms-transform:matrix(0.193745,0.001937,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.193745,0.001937,-0.002500,0.249988,0,0);}
.mad_c00422{transform:matrix(0.193839,0.004652,-0.005998,0.249928,0,0);-ms-transform:matrix(0.193839,0.004652,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.193839,0.004652,-0.005998,0.249928,0,0);}
.m108_c00422{transform:matrix(0.193882,0.004072,-0.005249,0.249945,0,0);-ms-transform:matrix(0.193882,0.004072,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.193882,0.004072,-0.005249,0.249945,0,0);}
.m3f_c00422{transform:matrix(0.194319,0.003498,-0.004499,0.249960,0,0);-ms-transform:matrix(0.194319,0.003498,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.194319,0.003498,-0.004499,0.249960,0,0);}
.md8_c00422{transform:matrix(0.194512,0.003307,-0.004249,0.249964,0,0);-ms-transform:matrix(0.194512,0.003307,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.194512,0.003307,-0.004249,0.249964,0,0);}
.m8d_c00422{transform:matrix(0.194708,0.002921,-0.003750,0.249972,0,0);-ms-transform:matrix(0.194708,0.002921,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.194708,0.002921,-0.003750,0.249972,0,0);}
.m102_c00422{transform:matrix(0.194837,0.004092,-0.005249,0.249945,0,0);-ms-transform:matrix(0.194837,0.004092,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.194837,0.004092,-0.005249,0.249945,0,0);}
.mc5_c00422{transform:matrix(0.194992,0.003315,-0.004249,0.249964,0,0);-ms-transform:matrix(0.194992,0.003315,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.194992,0.003315,-0.004249,0.249964,0,0);}
.ma0_c00422{transform:matrix(0.195219,0.004685,-0.005998,0.249928,0,0);-ms-transform:matrix(0.195219,0.004685,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.195219,0.004685,-0.005998,0.249928,0,0);}
.m42_c00422{transform:matrix(0.196423,0.003536,-0.004499,0.249960,0,0);-ms-transform:matrix(0.196423,0.003536,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.196423,0.003536,-0.004499,0.249960,0,0);}
.m10b_c00422{transform:matrix(0.197167,0.007895,-0.010002,0.249800,0,0);-ms-transform:matrix(0.197167,0.007895,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.197167,0.007895,-0.010002,0.249800,0,0);}
.m9a_c00422{transform:matrix(0.197268,0.004734,-0.005998,0.249928,0,0);-ms-transform:matrix(0.197268,0.004734,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.197268,0.004734,-0.005998,0.249928,0,0);}
.m96_c00422{transform:matrix(0.197853,0.004748,-0.005998,0.249928,0,0);-ms-transform:matrix(0.197853,0.004748,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.197853,0.004748,-0.005998,0.249928,0,0);}
.m8c_c00422{transform:matrix(0.198303,0.002975,-0.003750,0.249972,0,0);-ms-transform:matrix(0.198303,0.002975,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.198303,0.002975,-0.003750,0.249972,0,0);}
.m92_c00422{transform:matrix(0.198318,0.004760,-0.005998,0.249928,0,0);-ms-transform:matrix(0.198318,0.004760,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.198318,0.004760,-0.005998,0.249928,0,0);}
.mc3_c00422{transform:matrix(0.199156,0.003386,-0.004249,0.249964,0,0);-ms-transform:matrix(0.199156,0.003386,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.199156,0.003386,-0.004249,0.249964,0,0);}
.ma3_c00422{transform:matrix(0.199468,0.004787,-0.005998,0.249928,0,0);-ms-transform:matrix(0.199468,0.004787,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.199468,0.004787,-0.005998,0.249928,0,0);}
.m103_c00422{transform:matrix(0.200241,0.004205,-0.005249,0.249945,0,0);-ms-transform:matrix(0.200241,0.004205,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.200241,0.004205,-0.005249,0.249945,0,0);}
.ma8_c00422{transform:matrix(0.201002,0.004824,-0.005998,0.249928,0,0);-ms-transform:matrix(0.201002,0.004824,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.201002,0.004824,-0.005998,0.249928,0,0);}
.ma5_c00422{transform:matrix(0.202012,0.004848,-0.005998,0.249928,0,0);-ms-transform:matrix(0.202012,0.004848,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.202012,0.004848,-0.005998,0.249928,0,0);}
.mdd_c00422{transform:matrix(0.202186,0.003437,-0.004249,0.249964,0,0);-ms-transform:matrix(0.202186,0.003437,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.202186,0.003437,-0.004249,0.249964,0,0);}
.mb1_c00422{transform:matrix(0.202897,0.004870,-0.005998,0.249928,0,0);-ms-transform:matrix(0.202897,0.004870,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.202897,0.004870,-0.005998,0.249928,0,0);}
.mb0_c00422{transform:matrix(0.203067,0.004874,-0.005998,0.249928,0,0);-ms-transform:matrix(0.203067,0.004874,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.203067,0.004874,-0.005998,0.249928,0,0);}
.ma1_c00422{transform:matrix(0.203246,0.004878,-0.005998,0.249928,0,0);-ms-transform:matrix(0.203246,0.004878,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.203246,0.004878,-0.005998,0.249928,0,0);}
.mfd_c00422{transform:matrix(0.203273,0.007732,-0.009503,0.249819,0,0);-ms-transform:matrix(0.203273,0.007732,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.203273,0.007732,-0.009503,0.249819,0,0);}
.m8e_c00422{transform:matrix(0.204636,0.004911,-0.005998,0.249928,0,0);-ms-transform:matrix(0.204636,0.004911,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.204636,0.004911,-0.005998,0.249928,0,0);}
.mab_c00422{transform:matrix(0.205126,0.004923,-0.005998,0.249928,0,0);-ms-transform:matrix(0.205126,0.004923,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.205126,0.004923,-0.005998,0.249928,0,0);}
.md9_c00422{transform:matrix(0.205605,0.003495,-0.004249,0.249964,0,0);-ms-transform:matrix(0.205605,0.003495,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.205605,0.003495,-0.004249,0.249964,0,0);}
.mc0_c00422{transform:matrix(0.205825,0.003499,-0.004249,0.249964,0,0);-ms-transform:matrix(0.205825,0.003499,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.205825,0.003499,-0.004249,0.249964,0,0);}
.m50_c00422{transform:matrix(0.206062,0.003709,-0.004499,0.249960,0,0);-ms-transform:matrix(0.206062,0.003709,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.206062,0.003709,-0.004499,0.249960,0,0);}
.m2b_c00422{transform:matrix(0.206085,0.002061,-0.002500,0.249988,0,0);-ms-transform:matrix(0.206085,0.002061,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.206085,0.002061,-0.002500,0.249988,0,0);}
.m97_c00422{transform:matrix(0.206201,0.004949,-0.005998,0.249928,0,0);-ms-transform:matrix(0.206201,0.004949,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.206201,0.004949,-0.005998,0.249928,0,0);}
.m43_c00422{transform:matrix(0.206227,0.003712,-0.004499,0.249960,0,0);-ms-transform:matrix(0.206227,0.003712,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.206227,0.003712,-0.004499,0.249960,0,0);}
.mf3_c00422{transform:matrix(0.206460,0.005574,-0.006748,0.249909,0,0);-ms-transform:matrix(0.206460,0.005574,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.206460,0.005574,-0.006748,0.249909,0,0);}
.m8a_c00422{transform:matrix(0.206607,0.003099,-0.003750,0.249972,0,0);-ms-transform:matrix(0.206607,0.003099,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.206607,0.003099,-0.003750,0.249972,0,0);}
.mef_c00422{transform:matrix(0.206610,0.005578,-0.006748,0.249909,0,0);-ms-transform:matrix(0.206610,0.005578,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.206610,0.005578,-0.006748,0.249909,0,0);}
.me9_c00422{transform:matrix(0.206755,0.005582,-0.006748,0.249909,0,0);-ms-transform:matrix(0.206755,0.005582,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.206755,0.005582,-0.006748,0.249909,0,0);}
.m10f_c00422{transform:matrix(0.206864,0.008283,-0.010002,0.249800,0,0);-ms-transform:matrix(0.206864,0.008283,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.206864,0.008283,-0.010002,0.249800,0,0);}
.mbf_c00422{transform:matrix(0.207004,0.003312,-0.003999,0.249968,0,0);-ms-transform:matrix(0.207004,0.003312,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.207004,0.003312,-0.003999,0.249968,0,0);}
.m4a_c00422{transform:matrix(0.207361,0.003733,-0.004499,0.249960,0,0);-ms-transform:matrix(0.207361,0.003733,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.207361,0.003733,-0.004499,0.249960,0,0);}
.mb5_c00422{transform:matrix(0.207368,0.003318,-0.003999,0.249968,0,0);-ms-transform:matrix(0.207368,0.003318,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.207368,0.003318,-0.003999,0.249968,0,0);}
.m6f_c00422{transform:matrix(0.207419,0.004148,-0.004999,0.249950,0,0);-ms-transform:matrix(0.207419,0.004148,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.207419,0.004148,-0.004999,0.249950,0,0);}
.m33_c00422{transform:matrix(0.207425,-0.002489,0.003000,0.249982,0,0);-ms-transform:matrix(0.207425,-0.002489,0.003000,0.249982,0,0);-webkit-transform:matrix(0.207425,-0.002489,0.003000,0.249982,0,0);}
.m8f_c00422{transform:matrix(0.208005,0.004992,-0.005998,0.249928,0,0);-ms-transform:matrix(0.208005,0.004992,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.208005,0.004992,-0.005998,0.249928,0,0);}
.m7_c00422{transform:matrix(0.208475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208475,0.000000,0.000000,0.250000,0,0);}
.m40_c00422{transform:matrix(0.208896,0.003760,-0.004499,0.249960,0,0);-ms-transform:matrix(0.208896,0.003760,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.208896,0.003760,-0.004499,0.249960,0,0);}
.m74_c00422{transform:matrix(0.209258,0.004185,-0.004999,0.249950,0,0);-ms-transform:matrix(0.209258,0.004185,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.209258,0.004185,-0.004999,0.249950,0,0);}
.m4c_c00422{transform:matrix(0.209266,0.003767,-0.004499,0.249960,0,0);-ms-transform:matrix(0.209266,0.003767,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.209266,0.003767,-0.004499,0.249960,0,0);}
.mca_c00422{transform:matrix(0.209525,0.003562,-0.004249,0.249964,0,0);-ms-transform:matrix(0.209525,0.003562,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.209525,0.003562,-0.004249,0.249964,0,0);}
.mc7_c00422{transform:matrix(0.209790,0.003566,-0.004249,0.249964,0,0);-ms-transform:matrix(0.209790,0.003566,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.209790,0.003566,-0.004249,0.249964,0,0);}
.mf9_c00422{transform:matrix(0.210023,0.007989,-0.009503,0.249819,0,0);-ms-transform:matrix(0.210023,0.007989,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.210023,0.007989,-0.009503,0.249819,0,0);}
.m89_c00422{transform:matrix(0.210556,0.003158,-0.003750,0.249972,0,0);-ms-transform:matrix(0.210556,0.003158,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.210556,0.003158,-0.003750,0.249972,0,0);}
.m7c_c00422{transform:matrix(0.210693,0.004214,-0.004999,0.249950,0,0);-ms-transform:matrix(0.210693,0.004214,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.210693,0.004214,-0.004999,0.249950,0,0);}
.m39_c00422{transform:matrix(0.210986,0.003798,-0.004499,0.249960,0,0);-ms-transform:matrix(0.210986,0.003798,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.210986,0.003798,-0.004499,0.249960,0,0);}
.mec_c00422{transform:matrix(0.211308,0.005705,-0.006748,0.249909,0,0);-ms-transform:matrix(0.211308,0.005705,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.211308,0.005705,-0.006748,0.249909,0,0);}
.mfa_c00422{transform:matrix(0.211357,0.008040,-0.009503,0.249819,0,0);-ms-transform:matrix(0.211357,0.008040,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.211357,0.008040,-0.009503,0.249819,0,0);}
.mdb_c00422{transform:matrix(0.211629,0.003598,-0.004249,0.249964,0,0);-ms-transform:matrix(0.211629,0.003598,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.211629,0.003598,-0.004249,0.249964,0,0);}
.m113_c00422{transform:matrix(0.212420,0.008505,-0.010002,0.249800,0,0);-ms-transform:matrix(0.212420,0.008505,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.212420,0.008505,-0.010002,0.249800,0,0);}
.m52_c00422{transform:matrix(0.212476,0.003825,-0.004499,0.249960,0,0);-ms-transform:matrix(0.212476,0.003825,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.212476,0.003825,-0.004499,0.249960,0,0);}
.m71_c00422{transform:matrix(0.212577,0.004252,-0.004999,0.249950,0,0);-ms-transform:matrix(0.212577,0.004252,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.212577,0.004252,-0.004999,0.249950,0,0);}
.m112_c00422{transform:matrix(0.213019,0.008529,-0.010002,0.249800,0,0);-ms-transform:matrix(0.213019,0.008529,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.213019,0.008529,-0.010002,0.249800,0,0);}
.mff_c00422{transform:matrix(0.213071,0.008105,-0.009503,0.249819,0,0);-ms-transform:matrix(0.213071,0.008105,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.213071,0.008105,-0.009503,0.249819,0,0);}
.m67_c00422{transform:matrix(0.213092,0.004262,-0.004999,0.249950,0,0);-ms-transform:matrix(0.213092,0.004262,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.213092,0.004262,-0.004999,0.249950,0,0);}
.ma4_c00422{transform:matrix(0.213119,0.005115,-0.005998,0.249928,0,0);-ms-transform:matrix(0.213119,0.005115,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.213119,0.005115,-0.005998,0.249928,0,0);}
.m6_c00422{transform:matrix(0.213805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213805,0.000000,0.000000,0.250000,0,0);}
.m93_c00422{transform:matrix(0.214493,0.005148,-0.005998,0.249928,0,0);-ms-transform:matrix(0.214493,0.005148,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.214493,0.005148,-0.005998,0.249928,0,0);}
.m110_c00422{transform:matrix(0.214593,0.008592,-0.010002,0.249800,0,0);-ms-transform:matrix(0.214593,0.008592,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.214593,0.008592,-0.010002,0.249800,0,0);}
.m36_c00422{transform:matrix(0.214840,-0.002578,0.003000,0.249982,0,0);-ms-transform:matrix(0.214840,-0.002578,0.003000,0.249982,0,0);-webkit-transform:matrix(0.214840,-0.002578,0.003000,0.249982,0,0);}
.mda_c00422{transform:matrix(0.214989,0.003655,-0.004249,0.249964,0,0);-ms-transform:matrix(0.214989,0.003655,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.214989,0.003655,-0.004249,0.249964,0,0);}
.m6c_c00422{transform:matrix(0.215107,0.004302,-0.004999,0.249950,0,0);-ms-transform:matrix(0.215107,0.004302,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.215107,0.004302,-0.004999,0.249950,0,0);}
.m8b_c00422{transform:matrix(0.215586,0.003234,-0.003750,0.249972,0,0);-ms-transform:matrix(0.215586,0.003234,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.215586,0.003234,-0.003750,0.249972,0,0);}
.m6a_c00422{transform:matrix(0.215602,0.004312,-0.004999,0.249950,0,0);-ms-transform:matrix(0.215602,0.004312,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.215602,0.004312,-0.004999,0.249950,0,0);}
.m10d_c00422{transform:matrix(0.215827,0.008642,-0.010002,0.249800,0,0);-ms-transform:matrix(0.215827,0.008642,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.215827,0.008642,-0.010002,0.249800,0,0);}
.m72_c00422{transform:matrix(0.216292,0.004326,-0.004999,0.249950,0,0);-ms-transform:matrix(0.216292,0.004326,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.216292,0.004326,-0.004999,0.249950,0,0);}
.m91_c00422{transform:matrix(0.216823,0.005204,-0.005998,0.249928,0,0);-ms-transform:matrix(0.216823,0.005204,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.216823,0.005204,-0.005998,0.249928,0,0);}
.mf6_c00422{transform:matrix(0.217148,0.008260,-0.009503,0.249819,0,0);-ms-transform:matrix(0.217148,0.008260,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.217148,0.008260,-0.009503,0.249819,0,0);}
.m9e_c00422{transform:matrix(0.217202,0.005213,-0.005998,0.249928,0,0);-ms-transform:matrix(0.217202,0.005213,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.217202,0.005213,-0.005998,0.249928,0,0);}
.mf8_c00422{transform:matrix(0.217418,0.008270,-0.009503,0.249819,0,0);-ms-transform:matrix(0.217418,0.008270,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.217418,0.008270,-0.009503,0.249819,0,0);}
.m28_c00422{transform:matrix(0.217504,0.002175,-0.002500,0.249988,0,0);-ms-transform:matrix(0.217504,0.002175,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.217504,0.002175,-0.002500,0.249988,0,0);}
.m3b_c00422{transform:matrix(0.218170,0.003927,-0.004499,0.249960,0,0);-ms-transform:matrix(0.218170,0.003927,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.218170,0.003927,-0.004499,0.249960,0,0);}
.m9d_c00422{transform:matrix(0.218217,0.005237,-0.005998,0.249928,0,0);-ms-transform:matrix(0.218217,0.005237,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.218217,0.005237,-0.005998,0.249928,0,0);}
.m5e_c00422{transform:matrix(0.218220,0.003928,-0.004499,0.249960,0,0);-ms-transform:matrix(0.218220,0.003928,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.218220,0.003928,-0.004499,0.249960,0,0);}
.m48_c00422{transform:matrix(0.218845,0.003939,-0.004499,0.249960,0,0);-ms-transform:matrix(0.218845,0.003939,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.218845,0.003939,-0.004499,0.249960,0,0);}
.m49_c00422{transform:matrix(0.218890,0.003940,-0.004499,0.249960,0,0);-ms-transform:matrix(0.218890,0.003940,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.218890,0.003940,-0.004499,0.249960,0,0);}
.mde_c00422{transform:matrix(0.219523,0.003732,-0.004249,0.249964,0,0);-ms-transform:matrix(0.219523,0.003732,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.219523,0.003732,-0.004249,0.249964,0,0);}
.mba_c00422{transform:matrix(0.219797,0.003517,-0.003999,0.249968,0,0);-ms-transform:matrix(0.219797,0.003517,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.219797,0.003517,-0.003999,0.249968,0,0);}
.m14_c00422{transform:matrix(0.220255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220255,0.000000,0.000000,0.250000,0,0);}
.m9b_c00422{transform:matrix(0.220681,0.005296,-0.005998,0.249928,0,0);-ms-transform:matrix(0.220681,0.005296,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.220681,0.005296,-0.005998,0.249928,0,0);}
.m3e_c00422{transform:matrix(0.220739,0.003973,-0.004499,0.249960,0,0);-ms-transform:matrix(0.220739,0.003973,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.220739,0.003973,-0.004499,0.249960,0,0);}
.mfb_c00422{transform:matrix(0.222079,0.008447,-0.009503,0.249819,0,0);-ms-transform:matrix(0.222079,0.008447,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.222079,0.008447,-0.009503,0.249819,0,0);}
.m31_c00422{transform:matrix(0.223169,0.002232,-0.002500,0.249988,0,0);-ms-transform:matrix(0.223169,0.002232,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.223169,0.002232,-0.002500,0.249988,0,0);}
.m7e_c00422{transform:matrix(0.223225,0.004465,-0.004999,0.249950,0,0);-ms-transform:matrix(0.223225,0.004465,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.223225,0.004465,-0.004999,0.249950,0,0);}
.m56_c00422{transform:matrix(0.223234,0.004018,-0.004499,0.249960,0,0);-ms-transform:matrix(0.223234,0.004018,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.223234,0.004018,-0.004499,0.249960,0,0);}
.mb3_c00422{transform:matrix(0.223351,0.003574,-0.003999,0.249968,0,0);-ms-transform:matrix(0.223351,0.003574,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.223351,0.003574,-0.003999,0.249968,0,0);}
.m10_c00422{transform:matrix(0.223380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223380,0.000000,0.000000,0.250000,0,0);}
.m35_c00422{transform:matrix(0.223529,-0.002682,0.003000,0.249982,0,0);-ms-transform:matrix(0.223529,-0.002682,0.003000,0.249982,0,0);-webkit-transform:matrix(0.223529,-0.002682,0.003000,0.249982,0,0);}
.m78_c00422{transform:matrix(0.224765,0.004495,-0.004999,0.249950,0,0);-ms-transform:matrix(0.224765,0.004495,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.224765,0.004495,-0.004999,0.249950,0,0);}
.mb8_c00422{transform:matrix(0.224926,0.003599,-0.003999,0.249968,0,0);-ms-transform:matrix(0.224926,0.003599,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.224926,0.003599,-0.003999,0.249968,0,0);}
.m3_c00422{transform:matrix(0.225345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225345,0.000000,0.000000,0.250000,0,0);}
.m3d_c00422{transform:matrix(0.225718,0.004063,-0.004499,0.249960,0,0);-ms-transform:matrix(0.225718,0.004063,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.225718,0.004063,-0.004499,0.249960,0,0);}
.mb6_c00422{transform:matrix(0.226066,0.003617,-0.003999,0.249968,0,0);-ms-transform:matrix(0.226066,0.003617,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.226066,0.003617,-0.003999,0.249968,0,0);}
.m4e_c00422{transform:matrix(0.226328,0.004074,-0.004499,0.249960,0,0);-ms-transform:matrix(0.226328,0.004074,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.226328,0.004074,-0.004499,0.249960,0,0);}
.m7a_c00422{transform:matrix(0.226530,0.004531,-0.004999,0.249950,0,0);-ms-transform:matrix(0.226530,0.004531,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.226530,0.004531,-0.004999,0.249950,0,0);}
.mbe_c00422{transform:matrix(0.227001,0.003632,-0.003999,0.249968,0,0);-ms-transform:matrix(0.227001,0.003632,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.227001,0.003632,-0.003999,0.249968,0,0);}
.m45_c00422{transform:matrix(0.227228,0.004090,-0.004499,0.249960,0,0);-ms-transform:matrix(0.227228,0.004090,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.227228,0.004090,-0.004499,0.249960,0,0);}
.m95_c00422{transform:matrix(0.227255,0.005454,-0.005998,0.249928,0,0);-ms-transform:matrix(0.227255,0.005454,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.227255,0.005454,-0.005998,0.249928,0,0);}
.m73_c00422{transform:matrix(0.227505,0.004550,-0.004999,0.249950,0,0);-ms-transform:matrix(0.227505,0.004550,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.227505,0.004550,-0.004999,0.249950,0,0);}
.md_c00422{transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);}
.mbb_c00422{transform:matrix(0.227826,0.003645,-0.003999,0.249968,0,0);-ms-transform:matrix(0.227826,0.003645,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.227826,0.003645,-0.003999,0.249968,0,0);}
.m111_c00422{transform:matrix(0.228467,0.009148,-0.010002,0.249800,0,0);-ms-transform:matrix(0.228467,0.009148,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.228467,0.009148,-0.010002,0.249800,0,0);}
.md6_c00422{transform:matrix(0.228507,0.003885,-0.004249,0.249964,0,0);-ms-transform:matrix(0.228507,0.003885,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.228507,0.003885,-0.004249,0.249964,0,0);}
.mdc_c00422{transform:matrix(0.229472,0.003901,-0.004249,0.249964,0,0);-ms-transform:matrix(0.229472,0.003901,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.229472,0.003901,-0.004249,0.249964,0,0);}
.m1e_c00422{transform:matrix(0.229525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229525,0.000000,0.000000,0.250000,0,0);}
.m44_c00422{transform:matrix(0.230083,0.004141,-0.004499,0.249960,0,0);-ms-transform:matrix(0.230083,0.004141,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.230083,0.004141,-0.004499,0.249960,0,0);}
.me_c00422{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m6e_c00422{transform:matrix(0.232229,0.004645,-0.004999,0.249950,0,0);-ms-transform:matrix(0.232229,0.004645,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.232229,0.004645,-0.004999,0.249950,0,0);}
.m38_c00422{transform:matrix(0.232668,-0.002792,0.003000,0.249982,0,0);-ms-transform:matrix(0.232668,-0.002792,0.003000,0.249982,0,0);-webkit-transform:matrix(0.232668,-0.002792,0.003000,0.249982,0,0);}
.m51_c00422{transform:matrix(0.232907,0.004192,-0.004499,0.249960,0,0);-ms-transform:matrix(0.232907,0.004192,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.232907,0.004192,-0.004499,0.249960,0,0);}
.m94_c00422{transform:matrix(0.233568,0.005606,-0.005998,0.249928,0,0);-ms-transform:matrix(0.233568,0.005606,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.233568,0.005606,-0.005998,0.249928,0,0);}
.m9_c00422{transform:matrix(0.233635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233635,0.000000,0.000000,0.250000,0,0);}
.m66_c00422{transform:matrix(0.233742,0.004207,-0.004499,0.249960,0,0);-ms-transform:matrix(0.233742,0.004207,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.233742,0.004207,-0.004499,0.249960,0,0);}
.m6d_c00422{transform:matrix(0.234668,0.004693,-0.004999,0.249950,0,0);-ms-transform:matrix(0.234668,0.004693,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.234668,0.004693,-0.004999,0.249950,0,0);}
.mc_c00422{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m64_c00422{transform:matrix(0.236442,0.004256,-0.004499,0.249960,0,0);-ms-transform:matrix(0.236442,0.004256,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.236442,0.004256,-0.004499,0.249960,0,0);}
.m90_c00422{transform:matrix(0.236497,0.005676,-0.005998,0.249928,0,0);-ms-transform:matrix(0.236497,0.005676,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.236497,0.005676,-0.005998,0.249928,0,0);}
.m65_c00422{transform:matrix(0.237197,0.004270,-0.004499,0.249960,0,0);-ms-transform:matrix(0.237197,0.004270,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.237197,0.004270,-0.004499,0.249960,0,0);}
.m2d_c00422{transform:matrix(0.237763,0.002378,-0.002500,0.249988,0,0);-ms-transform:matrix(0.237763,0.002378,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.237763,0.002378,-0.002500,0.249988,0,0);}
.mbc_c00422{transform:matrix(0.238195,0.003811,-0.003999,0.249968,0,0);-ms-transform:matrix(0.238195,0.003811,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.238195,0.003811,-0.003999,0.249968,0,0);}
.m4b_c00422{transform:matrix(0.238501,0.004293,-0.004499,0.249960,0,0);-ms-transform:matrix(0.238501,0.004293,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.238501,0.004293,-0.004499,0.249960,0,0);}
.m70_c00422{transform:matrix(0.238667,0.004773,-0.004999,0.249950,0,0);-ms-transform:matrix(0.238667,0.004773,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.238667,0.004773,-0.004999,0.249950,0,0);}
.mb9_c00422{transform:matrix(0.238819,0.003821,-0.003999,0.249968,0,0);-ms-transform:matrix(0.238819,0.003821,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.238819,0.003821,-0.003999,0.249968,0,0);}
.mbd_c00422{transform:matrix(0.239039,0.003825,-0.003999,0.249968,0,0);-ms-transform:matrix(0.239039,0.003825,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.239039,0.003825,-0.003999,0.249968,0,0);}
.m34_c00422{transform:matrix(0.239123,-0.002869,0.003000,0.249982,0,0);-ms-transform:matrix(0.239123,-0.002869,0.003000,0.249982,0,0);-webkit-transform:matrix(0.239123,-0.002869,0.003000,0.249982,0,0);}
.m4d_c00422{transform:matrix(0.239161,0.004305,-0.004499,0.249960,0,0);-ms-transform:matrix(0.239161,0.004305,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.239161,0.004305,-0.004499,0.249960,0,0);}
.m60_c00422{transform:matrix(0.240071,0.004321,-0.004499,0.249960,0,0);-ms-transform:matrix(0.240071,0.004321,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.240071,0.004321,-0.004499,0.249960,0,0);}
.m98_c00422{transform:matrix(0.240881,0.005781,-0.005998,0.249928,0,0);-ms-transform:matrix(0.240881,0.005781,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.240881,0.005781,-0.005998,0.249928,0,0);}
.m87_c00422{transform:matrix(0.240982,0.004820,-0.004999,0.249950,0,0);-ms-transform:matrix(0.240982,0.004820,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.240982,0.004820,-0.004999,0.249950,0,0);}
.m82_c00422{transform:matrix(0.241252,0.004825,-0.004999,0.249950,0,0);-ms-transform:matrix(0.241252,0.004825,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.241252,0.004825,-0.004999,0.249950,0,0);}
.m41_c00422{transform:matrix(0.241261,0.004343,-0.004499,0.249960,0,0);-ms-transform:matrix(0.241261,0.004343,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.241261,0.004343,-0.004499,0.249960,0,0);}
.m4_c00422{transform:matrix(0.241940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241940,0.000000,0.000000,0.250000,0,0);}
.m62_c00422{transform:matrix(0.242336,0.004362,-0.004499,0.249960,0,0);-ms-transform:matrix(0.242336,0.004362,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.242336,0.004362,-0.004499,0.249960,0,0);}
.m1c_c00422{transform:matrix(0.242545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242545,0.000000,0.000000,0.250000,0,0);}
.m75_c00422{transform:matrix(0.242926,0.004859,-0.004999,0.249950,0,0);-ms-transform:matrix(0.242926,0.004859,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.242926,0.004859,-0.004999,0.249950,0,0);}
.m4f_c00422{transform:matrix(0.242936,0.004373,-0.004499,0.249960,0,0);-ms-transform:matrix(0.242936,0.004373,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.242936,0.004373,-0.004499,0.249960,0,0);}
.m77_c00422{transform:matrix(0.243581,0.004872,-0.004999,0.249950,0,0);-ms-transform:matrix(0.243581,0.004872,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.243581,0.004872,-0.004999,0.249950,0,0);}
.m16_c00422{transform:matrix(0.243730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243730,0.000000,0.000000,0.250000,0,0);}
.m69_c00422{transform:matrix(0.243786,0.004876,-0.004999,0.249950,0,0);-ms-transform:matrix(0.243786,0.004876,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.243786,0.004876,-0.004999,0.249950,0,0);}
.m5b_c00422{transform:matrix(0.244065,0.004393,-0.004499,0.249960,0,0);-ms-transform:matrix(0.244065,0.004393,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.244065,0.004393,-0.004499,0.249960,0,0);}
.m81_c00422{transform:matrix(0.244126,0.004883,-0.004999,0.249950,0,0);-ms-transform:matrix(0.244126,0.004883,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.244126,0.004883,-0.004999,0.249950,0,0);}
.md0_c00422{transform:matrix(0.245070,0.004166,-0.004249,0.249964,0,0);-ms-transform:matrix(0.245070,0.004166,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.245070,0.004166,-0.004249,0.249964,0,0);}
.m32_c00422{transform:matrix(0.245623,0.002456,-0.002500,0.249988,0,0);-ms-transform:matrix(0.245623,0.002456,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.245623,0.002456,-0.002500,0.249988,0,0);}
.m61_c00422{transform:matrix(0.246410,0.004435,-0.004499,0.249960,0,0);-ms-transform:matrix(0.246410,0.004435,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.246410,0.004435,-0.004499,0.249960,0,0);}
.m53_c00422{transform:matrix(0.246510,0.004437,-0.004499,0.249960,0,0);-ms-transform:matrix(0.246510,0.004437,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.246510,0.004437,-0.004499,0.249960,0,0);}
.m47_c00422{transform:matrix(0.247260,0.004451,-0.004499,0.249960,0,0);-ms-transform:matrix(0.247260,0.004451,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.247260,0.004451,-0.004499,0.249960,0,0);}
.m8_c00422{transform:matrix(0.247330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247330,0.000000,0.000000,0.250000,0,0);}
.mb7_c00422{transform:matrix(0.247553,0.003961,-0.003999,0.249968,0,0);-ms-transform:matrix(0.247553,0.003961,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.247553,0.003961,-0.003999,0.249968,0,0);}
.m59_c00422{transform:matrix(0.247815,0.004461,-0.004499,0.249960,0,0);-ms-transform:matrix(0.247815,0.004461,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.247815,0.004461,-0.004499,0.249960,0,0);}
.m13_c00422{transform:matrix(0.248305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248305,0.000000,0.000000,0.250000,0,0);}
.m29_c00422{transform:matrix(0.248838,0.002488,-0.002500,0.249988,0,0);-ms-transform:matrix(0.248838,0.002488,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.248838,0.002488,-0.002500,0.249988,0,0);}
.ma_c00422{transform:matrix(0.249740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249740,0.000000,0.000000,0.250000,0,0);}
.m2f_c00422{transform:matrix(0.249888,0.002499,-0.002500,0.249988,0,0);-ms-transform:matrix(0.249888,0.002499,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.249888,0.002499,-0.002500,0.249988,0,0);}
.m1b_c00422{transform:matrix(0.250015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250015,0.000000,0.000000,0.250000,0,0);}
.m86_c00422{transform:matrix(0.250105,0.005002,-0.004999,0.249950,0,0);-ms-transform:matrix(0.250105,0.005002,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.250105,0.005002,-0.004999,0.249950,0,0);}
.m83_c00422{transform:matrix(0.250410,0.005008,-0.004999,0.249950,0,0);-ms-transform:matrix(0.250410,0.005008,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.250410,0.005008,-0.004999,0.249950,0,0);}
.m79_c00422{transform:matrix(0.250985,0.005020,-0.004999,0.249950,0,0);-ms-transform:matrix(0.250985,0.005020,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.250985,0.005020,-0.004999,0.249950,0,0);}
.m2c_c00422{transform:matrix(0.252092,0.002521,-0.002500,0.249988,0,0);-ms-transform:matrix(0.252092,0.002521,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.252092,0.002521,-0.002500,0.249988,0,0);}
.mf_c00422{transform:matrix(0.253300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253300,0.000000,0.000000,0.250000,0,0);}
.mb4_c00422{transform:matrix(0.253433,0.004055,-0.003999,0.249968,0,0);-ms-transform:matrix(0.253433,0.004055,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.253433,0.004055,-0.003999,0.249968,0,0);}
.mb_c00422{transform:matrix(0.253715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253715,0.000000,0.000000,0.250000,0,0);}
.m11_c00422{transform:matrix(0.254385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254385,0.000000,0.000000,0.250000,0,0);}
.mce_c00422{transform:matrix(0.254888,0.004333,-0.004249,0.249964,0,0);-ms-transform:matrix(0.254888,0.004333,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.254888,0.004333,-0.004249,0.249964,0,0);}
.m5f_c00422{transform:matrix(0.254909,0.004588,-0.004499,0.249960,0,0);-ms-transform:matrix(0.254909,0.004588,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.254909,0.004588,-0.004499,0.249960,0,0);}
.m2e_c00422{transform:matrix(0.255112,0.002551,-0.002500,0.249988,0,0);-ms-transform:matrix(0.255112,0.002551,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.255112,0.002551,-0.002500,0.249988,0,0);}
.m2a_c00422{transform:matrix(0.255327,0.002553,-0.002500,0.249988,0,0);-ms-transform:matrix(0.255327,0.002553,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.255327,0.002553,-0.002500,0.249988,0,0);}
.m7b_c00422{transform:matrix(0.255384,0.005108,-0.004999,0.249950,0,0);-ms-transform:matrix(0.255384,0.005108,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.255384,0.005108,-0.004999,0.249950,0,0);}
.m22_c00422{transform:matrix(0.255440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255440,0.000000,0.000000,0.250000,0,0);}
.m0_c00422{transform:matrix(0.255895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255895,0.000000,0.000000,0.250000,0,0);}
.m68_c00422{transform:matrix(0.257558,0.005151,-0.004999,0.249950,0,0);-ms-transform:matrix(0.257558,0.005151,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.257558,0.005151,-0.004999,0.249950,0,0);}
.m55_c00422{transform:matrix(0.258818,0.004659,-0.004499,0.249960,0,0);-ms-transform:matrix(0.258818,0.004659,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.258818,0.004659,-0.004499,0.249960,0,0);}
.m6b_c00422{transform:matrix(0.259788,0.005196,-0.004999,0.249950,0,0);-ms-transform:matrix(0.259788,0.005196,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.259788,0.005196,-0.004999,0.249950,0,0);}
.m7f_c00422{transform:matrix(0.261313,0.005226,-0.004999,0.249950,0,0);-ms-transform:matrix(0.261313,0.005226,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.261313,0.005226,-0.004999,0.249950,0,0);}
.md1_c00422{transform:matrix(0.261682,0.004449,-0.004249,0.249964,0,0);-ms-transform:matrix(0.261682,0.004449,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.261682,0.004449,-0.004249,0.249964,0,0);}
.m23_c00422{transform:matrix(0.262105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262105,0.000000,0.000000,0.250000,0,0);}
.m85_c00422{transform:matrix(0.262298,0.005246,-0.004999,0.249950,0,0);-ms-transform:matrix(0.262298,0.005246,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.262298,0.005246,-0.004999,0.249950,0,0);}
.m19_c00422{transform:matrix(0.262400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262400,0.000000,0.000000,0.250000,0,0);}
.m63_c00422{transform:matrix(0.262442,0.004724,-0.004499,0.249960,0,0);-ms-transform:matrix(0.262442,0.004724,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.262442,0.004724,-0.004499,0.249960,0,0);}
.m80_c00422{transform:matrix(0.262582,0.005252,-0.004999,0.249950,0,0);-ms-transform:matrix(0.262582,0.005252,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.262582,0.005252,-0.004999,0.249950,0,0);}
.m1a_c00422{transform:matrix(0.262850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262850,0.000000,0.000000,0.250000,0,0);}
.m18_c00422{transform:matrix(0.263465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263465,0.000000,0.000000,0.250000,0,0);}
.m12_c00422{transform:matrix(0.264105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264105,0.000000,0.000000,0.250000,0,0);}
.m21_c00422{transform:matrix(0.264210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264210,0.000000,0.000000,0.250000,0,0);}
.m5a_c00422{transform:matrix(0.264572,0.004762,-0.004499,0.249960,0,0);-ms-transform:matrix(0.264572,0.004762,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.264572,0.004762,-0.004499,0.249960,0,0);}
.mcb_c00422{transform:matrix(0.265092,0.004507,-0.004249,0.249964,0,0);-ms-transform:matrix(0.265092,0.004507,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.265092,0.004507,-0.004249,0.249964,0,0);}
.m15_c00422{transform:matrix(0.265895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265895,0.000000,0.000000,0.250000,0,0);}
.m46_c00422{transform:matrix(0.267737,0.004819,-0.004499,0.249960,0,0);-ms-transform:matrix(0.267737,0.004819,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.267737,0.004819,-0.004499,0.249960,0,0);}
.m20_c00422{transform:matrix(0.267910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267910,0.000000,0.000000,0.250000,0,0);}
.m54_c00422{transform:matrix(0.268407,0.004831,-0.004499,0.249960,0,0);-ms-transform:matrix(0.268407,0.004831,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.268407,0.004831,-0.004499,0.249960,0,0);}
.m58_c00422{transform:matrix(0.270201,0.004864,-0.004499,0.249960,0,0);-ms-transform:matrix(0.270201,0.004864,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.270201,0.004864,-0.004499,0.249960,0,0);}
.m1f_c00422{transform:matrix(0.270845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270845,0.000000,0.000000,0.250000,0,0);}
.m5d_c00422{transform:matrix(0.271486,0.004887,-0.004499,0.249960,0,0);-ms-transform:matrix(0.271486,0.004887,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.271486,0.004887,-0.004499,0.249960,0,0);}
.m2_c00422{transform:matrix(0.271820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271820,0.000000,0.000000,0.250000,0,0);}
.m17_c00422{transform:matrix(0.272115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272115,0.000000,0.000000,0.250000,0,0);}
.m84_c00422{transform:matrix(0.272241,0.005445,-0.004999,0.249950,0,0);-ms-transform:matrix(0.272241,0.005445,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.272241,0.005445,-0.004999,0.249950,0,0);}
.m57_c00422{transform:matrix(0.272721,0.004909,-0.004499,0.249960,0,0);-ms-transform:matrix(0.272721,0.004909,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.272721,0.004909,-0.004499,0.249960,0,0);}
.mcd_c00422{transform:matrix(0.273410,0.004648,-0.004249,0.249964,0,0);-ms-transform:matrix(0.273410,0.004648,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.273410,0.004648,-0.004249,0.249964,0,0);}
.m1_c00422{transform:matrix(0.274440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274440,0.000000,0.000000,0.250000,0,0);}
.m1d_c00422{transform:matrix(0.275235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275235,0.000000,0.000000,0.250000,0,0);}
.m5c_c00422{transform:matrix(0.276490,0.004977,-0.004499,0.249960,0,0);-ms-transform:matrix(0.276490,0.004977,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.276490,0.004977,-0.004499,0.249960,0,0);}
.m7d_c00422{transform:matrix(0.276880,0.005538,-0.004999,0.249950,0,0);-ms-transform:matrix(0.276880,0.005538,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.276880,0.005538,-0.004999,0.249950,0,0);}
.m5_c00422{transform:matrix(0.278020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278020,0.000000,0.000000,0.250000,0,0);}
.mcf_c00422{transform:matrix(0.278050,0.004727,-0.004249,0.249964,0,0);-ms-transform:matrix(0.278050,0.004727,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.278050,0.004727,-0.004249,0.249964,0,0);}
.md4_c00422{transform:matrix(0.279580,0.004753,-0.004249,0.249964,0,0);-ms-transform:matrix(0.279580,0.004753,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.279580,0.004753,-0.004249,0.249964,0,0);}
.m76_c00422{transform:matrix(0.289077,0.005782,-0.004999,0.249950,0,0);-ms-transform:matrix(0.289077,0.005782,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.289077,0.005782,-0.004999,0.249950,0,0);}
.mcc_c00422{transform:matrix(0.290398,0.004937,-0.004249,0.249964,0,0);-ms-transform:matrix(0.290398,0.004937,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.290398,0.004937,-0.004249,0.249964,0,0);}
.md7_c00422{transform:matrix(0.292323,0.004969,-0.004249,0.249964,0,0);-ms-transform:matrix(0.292323,0.004969,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.292323,0.004969,-0.004249,0.249964,0,0);}
.m25_c00422{transform:matrix(0.293645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293645,0.000000,0.000000,0.250000,0,0);}
.md2_c00422{transform:matrix(0.295927,0.005031,-0.004249,0.249964,0,0);-ms-transform:matrix(0.295927,0.005031,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.295927,0.005031,-0.004249,0.249964,0,0);}
.m24_c00422{transform:matrix(0.296815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296815,0.000000,0.000000,0.250000,0,0);}
.m27_c00422{transform:matrix(0.301425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301425,0.000000,0.000000,0.250000,0,0);}
.md5_c00422{transform:matrix(0.301881,0.005132,-0.004249,0.249964,0,0);-ms-transform:matrix(0.301881,0.005132,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.301881,0.005132,-0.004249,0.249964,0,0);}
.m26_c00422{transform:matrix(0.306395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306395,0.000000,0.000000,0.250000,0,0);}
.md3_c00422{transform:matrix(0.330687,0.005622,-0.004249,0.249964,0,0);-ms-transform:matrix(0.330687,0.005622,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.330687,0.005622,-0.004249,0.249964,0,0);}
.v0_c00422{vertical-align:0.000000px;}
.ls0_c00422{letter-spacing:0.000000px;}
.sc__c00422{text-shadow:none;}
.sc0_c00422{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__c00422{-webkit-text-stroke:0px transparent;}
.sc0_c00422{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00422{word-spacing:0.000000px;}
.fc0_c00422{color:transparent;}
.fs3_c00422{font-size:66.000000px;}
.fs11_c00422{font-size:66.009536px;}
.fs1_c00422{font-size:72.000000px;}
.fs8_c00422{font-size:72.011663px;}
.fsa_c00422{font-size:72.014399px;}
.fs2_c00422{font-size:78.000000px;}
.fs4_c00422{font-size:78.003900px;}
.fsf_c00422{font-size:78.009983px;}
.fs7_c00422{font-size:78.012635px;}
.fs9_c00422{font-size:78.015598px;}
.fs5_c00422{font-size:84.006048px;}
.fs12_c00422{font-size:84.012137px;}
.fs6_c00422{font-size:84.013607px;}
.fsc_c00422{font-size:84.024189px;}
.fs15_c00422{font-size:89.975022px;}
.fs17_c00422{font-size:89.982043px;}
.fs0_c00422{font-size:90.000000px;}
.fsd_c00422{font-size:90.025916px;}
.fsb_c00422{font-size:96.010799px;}
.fs10_c00422{font-size:96.013871px;}
.fse_c00422{font-size:96.027644px;}
.fs14_c00422{font-size:96.034986px;}
.fs16_c00422{font-size:102.022489px;}
.fs13_c00422{font-size:114.041545px;}
.y0_c00422{bottom:0.000000px;}
.yf8_c00422{bottom:49.553880px;}
.yf7_c00422{bottom:50.636880px;}
.yf6_c00422{bottom:52.863780px;}
.yf5_c00422{bottom:53.775840px;}
.yf4_c00422{bottom:59.489220px;}
.yf3_c00422{bottom:60.867900px;}
.yf2_c00422{bottom:61.797240px;}
.yf1_c00422{bottom:64.873620px;}
.yf0_c00422{bottom:65.746860px;}
.yef_c00422{bottom:68.818080px;}
.yee_c00422{bottom:70.163100px;}
.yed_c00422{bottom:71.847000px;}
.yec_c00422{bottom:91.871980px;}
.yeb_c00422{bottom:92.598402px;}
.yea_c00422{bottom:93.999522px;}
.ye9_c00422{bottom:94.674567px;}
.ye8_c00422{bottom:96.086932px;}
.ye7_c00422{bottom:96.976681px;}
.ye6_c00422{bottom:98.146717px;}
.ye5_c00422{bottom:98.624919px;}
.ye4_c00422{bottom:101.122932px;}
.ye3_c00422{bottom:101.793000px;}
.ye2_c00422{bottom:122.226219px;}
.ye1_c00422{bottom:125.149407px;}
.ye0_c00422{bottom:126.463713px;}
.ydf_c00422{bottom:128.558349px;}
.yde_c00422{bottom:129.831216px;}
.ydd_c00422{bottom:134.062668px;}
.ydc_c00422{bottom:137.026440px;}
.ydb_c00422{bottom:139.975563px;}
.yda_c00422{bottom:142.501233px;}
.yd9_c00422{bottom:143.658219px;}
.yd8_c00422{bottom:147.433500px;}
.yd7_c00422{bottom:160.215918px;}
.yd6_c00422{bottom:160.980021px;}
.yd5_c00422{bottom:163.286217px;}
.yd4_c00422{bottom:164.075952px;}
.yd3_c00422{bottom:164.845319px;}
.yd2_c00422{bottom:165.368003px;}
.yd1_c00422{bottom:167.376737px;}
.yd0_c00422{bottom:168.153756px;}
.ycf_c00422{bottom:168.899475px;}
.yce_c00422{bottom:171.719931px;}
.ycd_c00422{bottom:172.458360px;}
.ycc_c00422{bottom:173.195292px;}
.ycb_c00422{bottom:174.955319px;}
.yca_c00422{bottom:195.937311px;}
.yc9_c00422{bottom:196.539789px;}
.yc8_c00422{bottom:198.620598px;}
.yc7_c00422{bottom:199.853540px;}
.yc6_c00422{bottom:201.670451px;}
.yc5_c00422{bottom:203.761709px;}
.yc4_c00422{bottom:204.630272px;}
.yc3_c00422{bottom:206.428269px;}
.yc2_c00422{bottom:208.240847px;}
.yc1_c00422{bottom:210.612000px;}
.yc0_c00422{bottom:244.195303px;}
.ybf_c00422{bottom:244.523748px;}
.ybe_c00422{bottom:245.297227px;}
.ybd_c00422{bottom:245.737974px;}
.ybc_c00422{bottom:246.378549px;}
.ybb_c00422{bottom:246.716340px;}
.yba_c00422{bottom:247.039722px;}
.yb9_c00422{bottom:273.984237px;}
.yb8_c00422{bottom:274.257517px;}
.yb7_c00422{bottom:275.293674px;}
.yb6_c00422{bottom:276.005755px;}
.yb5_c00422{bottom:277.020801px;}
.yb4_c00422{bottom:278.152183px;}
.yb3_c00422{bottom:278.588022px;}
.yb2_c00422{bottom:279.016078px;}
.yb1_c00422{bottom:279.735411px;}
.yb0_c00422{bottom:280.167216px;}
.yaf_c00422{bottom:280.465764px;}
.yae_c00422{bottom:281.593113px;}
.yad_c00422{bottom:282.146313px;}
.yac_c00422{bottom:304.637707px;}
.yab_c00422{bottom:306.515068px;}
.yaa_c00422{bottom:307.094020px;}
.ya9_c00422{bottom:307.663257px;}
.ya8_c00422{bottom:309.381217px;}
.ya7_c00422{bottom:310.114725px;}
.ya6_c00422{bottom:311.066283px;}
.ya5_c00422{bottom:311.620806px;}
.ya4_c00422{bottom:313.136602px;}
.ya3_c00422{bottom:313.856493px;}
.ya2_c00422{bottom:314.417008px;}
.ya1_c00422{bottom:315.904500px;}
.ya0_c00422{bottom:340.732632px;}
.y9f_c00422{bottom:341.622912px;}
.y9e_c00422{bottom:342.530352px;}
.y9d_c00422{bottom:343.597872px;}
.y9c_c00422{bottom:344.142816px;}
.y9b_c00422{bottom:344.673480px;}
.y9a_c00422{bottom:345.728808px;}
.y99_c00422{bottom:346.458312px;}
.y98_c00422{bottom:348.032112px;}
.y97_c00422{bottom:348.731376px;}
.y96_c00422{bottom:349.259112px;}
.y95_c00422{bottom:350.999784px;}
.y94_c00422{bottom:351.543000px;}
.y93_c00422{bottom:376.252872px;}
.y92_c00422{bottom:377.577768px;}
.y91_c00422{bottom:378.603612px;}
.y90_c00422{bottom:379.595964px;}
.y8f_c00422{bottom:379.926672px;}
.y8e_c00422{bottom:380.753928px;}
.y8d_c00422{bottom:381.247560px;}
.y8c_c00422{bottom:382.735224px;}
.y8b_c00422{bottom:383.391048px;}
.y8a_c00422{bottom:383.910168px;}
.y89_c00422{bottom:385.211004px;}
.y88_c00422{bottom:385.700364px;}
.y87_c00422{bottom:386.356344px;}
.y86_c00422{bottom:410.591880px;}
.y85_c00422{bottom:412.197588px;}
.y84_c00422{bottom:413.138988px;}
.y83_c00422{bottom:413.830656px;}
.y82_c00422{bottom:415.221120px;}
.y81_c00422{bottom:415.941480px;}
.y80_c00422{bottom:416.643384px;}
.y7f_c00422{bottom:418.278864px;}
.y7e_c00422{bottom:420.115560px;}
.y7d_c00422{bottom:420.805428px;}
.y7c_c00422{bottom:422.880792px;}
.y7b_c00422{bottom:424.025676px;}
.y7a_c00422{bottom:424.704372px;}
.y79_c00422{bottom:450.557796px;}
.y78_c00422{bottom:451.356168px;}
.y77_c00422{bottom:452.160084px;}
.y76_c00422{bottom:454.018980px;}
.y75_c00422{bottom:455.883816px;}
.y74_c00422{bottom:456.698496px;}
.y73_c00422{bottom:457.487436px;}
.y72_c00422{bottom:458.025276px;}
.y71_c00422{bottom:460.139628px;}
.y70_c00422{bottom:460.930584px;}
.y6f_c00422{bottom:461.707500px;}
.y6e_c00422{bottom:490.977127px;}
.y6d_c00422{bottom:491.965575px;}
.y6c_c00422{bottom:492.294615px;}
.y6b_c00422{bottom:493.792462px;}
.y6a_c00422{bottom:496.416930px;}
.y69_c00422{bottom:497.071500px;}
.y68_c00422{bottom:520.002150px;}
.y67_c00422{bottom:520.494870px;}
.y66_c00422{bottom:521.944980px;}
.y65_c00422{bottom:523.907430px;}
.y64_c00422{bottom:525.131880px;}
.y63_c00422{bottom:526.122510px;}
.y62_c00422{bottom:527.305560px;}
.y61_c00422{bottom:529.249830px;}
.y60_c00422{bottom:530.717760px;}
.y5f_c00422{bottom:531.442290px;}
.y5e_c00422{bottom:534.320940px;}
.y5d_c00422{bottom:558.310920px;}
.y5c_c00422{bottom:560.330550px;}
.y5b_c00422{bottom:561.007260px;}
.y5a_c00422{bottom:562.762770px;}
.y59_c00422{bottom:563.448870px;}
.y58_c00422{bottom:564.997920px;}
.y57_c00422{bottom:565.459200px;}
.y56_c00422{bottom:566.544270px;}
.y55_c00422{bottom:567.186750px;}
.y54_c00422{bottom:568.093890px;}
.y53_c00422{bottom:568.736790px;}
.y52_c00422{bottom:569.410140px;}
.y51_c00422{bottom:570.949710px;}
.y50_c00422{bottom:571.584720px;}
.y4f_c00422{bottom:595.281870px;}
.y4e_c00422{bottom:596.378820px;}
.y4d_c00422{bottom:597.059310px;}
.y4c_c00422{bottom:599.268540px;}
.y4b_c00422{bottom:600.137010px;}
.y4a_c00422{bottom:601.688340px;}
.y49_c00422{bottom:604.129200px;}
.y48_c00422{bottom:604.804500px;}
.y47_c00422{bottom:627.939762px;}
.y46_c00422{bottom:628.537893px;}
.y45_c00422{bottom:629.544021px;}
.y44_c00422{bottom:631.945698px;}
.y43_c00422{bottom:633.122331px;}
.y42_c00422{bottom:634.701831px;}
.y41_c00422{bottom:635.917074px;}
.y40_c00422{bottom:637.685574px;}
.y3f_c00422{bottom:638.268153px;}
.y3e_c00422{bottom:664.645986px;}
.y3d_c00422{bottom:666.454311px;}
.y3c_c00422{bottom:667.246977px;}
.y3b_c00422{bottom:668.272707px;}
.y3a_c00422{bottom:669.064239px;}
.y39_c00422{bottom:671.029191px;}
.y38_c00422{bottom:672.812784px;}
.y37_c00422{bottom:673.414965px;}
.y36_c00422{bottom:673.821990px;}
.y35_c00422{bottom:674.993493px;}
.y34_c00422{bottom:700.504704px;}
.y33_c00422{bottom:700.858044px;}
.y32_c00422{bottom:701.467425px;}
.y31_c00422{bottom:701.832705px;}
.y30_c00422{bottom:702.455994px;}
.y2f_c00422{bottom:703.049589px;}
.y2e_c00422{bottom:703.673661px;}
.y2d_c00422{bottom:704.033667px;}
.y2c_c00422{bottom:704.763795px;}
.y2b_c00422{bottom:705.123057px;}
.y2a_c00422{bottom:705.488607px;}
.y29_c00422{bottom:705.865125px;}
.y28_c00422{bottom:706.812924px;}
.y27_c00422{bottom:707.180013px;}
.y26_c00422{bottom:707.665515px;}
.y25_c00422{bottom:736.316883px;}
.y24_c00422{bottom:736.933995px;}
.y23_c00422{bottom:737.526024px;}
.y22_c00422{bottom:739.544247px;}
.y21_c00422{bottom:740.340639px;}
.y20_c00422{bottom:740.919924px;}
.y1f_c00422{bottom:741.916575px;}
.y1e_c00422{bottom:742.728411px;}
.y1d_c00422{bottom:743.320548px;}
.y1c_c00422{bottom:743.925375px;}
.y1b_c00422{bottom:744.491970px;}
.y1a_c00422{bottom:745.474500px;}
.y14_c00422{bottom:796.501500px;}
.y15_c00422{bottom:796.760988px;}
.y16_c00422{bottom:798.218880px;}
.y17_c00422{bottom:799.261548px;}
.y18_c00422{bottom:799.533654px;}
.y19_c00422{bottom:799.802898px;}
.y13_c00422{bottom:832.609155px;}
.y12_c00422{bottom:832.609740px;}
.y10_c00422{bottom:832.610280px;}
.y11_c00422{bottom:832.610325px;}
.yf_c00422{bottom:832.610820px;}
.ye_c00422{bottom:866.852715px;}
.yd_c00422{bottom:867.638505px;}
.yc_c00422{bottom:867.954420px;}
.yb_c00422{bottom:869.061525px;}
.ya_c00422{bottom:870.057750px;}
.y9_c00422{bottom:870.481500px;}
.y8_c00422{bottom:920.649000px;}
.y7_c00422{bottom:956.457000px;}
.y6_c00422{bottom:991.561500px;}
.y5_c00422{bottom:1045.440000px;}
.y4_c00422{bottom:1080.888000px;}
.y3_c00422{bottom:1116.637500px;}
.y2_c00422{bottom:1152.129000px;}
.y1_c00422{bottom:1213.111500px;}
.h5_c00422{height:66.000000px;}
.h13_c00422{height:66.009536px;}
.h3_c00422{height:72.000000px;}
.ha_c00422{height:72.011663px;}
.hc_c00422{height:72.014399px;}
.h4_c00422{height:78.000000px;}
.h6_c00422{height:78.003900px;}
.h11_c00422{height:78.009983px;}
.h9_c00422{height:78.012635px;}
.hb_c00422{height:78.015598px;}
.h7_c00422{height:84.006048px;}
.h14_c00422{height:84.012137px;}
.h8_c00422{height:84.013607px;}
.he_c00422{height:84.024189px;}
.h17_c00422{height:89.975022px;}
.h19_c00422{height:89.982043px;}
.h2_c00422{height:90.000000px;}
.hf_c00422{height:90.025916px;}
.hd_c00422{height:96.010799px;}
.h12_c00422{height:96.013871px;}
.h10_c00422{height:96.027644px;}
.h16_c00422{height:96.034986px;}
.h18_c00422{height:102.022489px;}
.h15_c00422{height:114.041545px;}
.h1_c00422{height:1251.000000px;}
.h0_c00422{height:1251.150000px;}
.w0_c00422{width:915.000000px;}
.x0_c00422{left:0.000000px;}
.x9c_c00422{left:161.932500px;}
.x75_c00422{left:163.159500px;}
.x66_c00422{left:164.447172px;}
.x30_c00422{left:165.618744px;}
.x20_c00422{left:188.730735px;}
.x2_c00422{left:190.080000px;}
.x4f_c00422{left:196.608420px;}
.x41_c00422{left:197.644386px;}
.x84_c00422{left:206.352810px;}
.x5b_c00422{left:208.494000px;}
.x24_c00422{left:210.243000px;}
.x14_c00422{left:221.670000px;}
.x7_c00422{left:224.100000px;}
.x8d_c00422{left:229.352980px;}
.x3a_c00422{left:230.393238px;}
.x1c_c00422{left:232.066500px;}
.x97_c00422{left:239.169871px;}
.x6f_c00422{left:240.288036px;}
.x31_c00422{left:243.077991px;}
.xc_c00422{left:244.890000px;}
.x67_c00422{left:251.310936px;}
.x3b_c00422{left:253.005738px;}
.xf_c00422{left:254.880000px;}
.x8_c00422{left:256.230000px;}
.x9d_c00422{left:261.182651px;}
.x8f_c00422{left:270.898500px;}
.xa8_c00422{left:272.031000px;}
.x48_c00422{left:273.526500px;}
.x26_c00422{left:276.502500px;}
.x7d_c00422{left:283.783500px;}
.x19_c00422{left:286.740000px;}
.x3_c00422{left:289.170000px;}
.x9e_c00422{left:291.599204px;}
.x85_c00422{left:293.055700px;}
.x42_c00422{left:295.894386px;}
.x21_c00422{left:298.895745px;}
.x98_c00422{left:303.319797px;}
.x5e_c00422{left:305.847000px;}
.x49_c00422{left:307.291500px;}
.x15_c00422{left:310.230000px;}
.xa5_c00422{left:314.868000px;}
.x86_c00422{left:316.001256px;}
.x10_c00422{left:322.380000px;}
.x70_c00422{left:327.008256px;}
.x32_c00422{left:329.244345px;}
.x1d_c00422{left:331.689000px;}
.x8e_c00422{left:337.355307px;}
.x50_c00422{left:339.399420px;}
.xd_c00422{left:343.170000px;}
.x9_c00422{left:344.790000px;}
.xa9_c00422{left:347.678277px;}
.x68_c00422{left:350.166564px;}
.x90_c00422{left:358.719000px;}
.x27_c00422{left:362.565000px;}
.x1a_c00422{left:363.690000px;}
.x5c_c00422{left:383.458500px;}
.x3c_c00422{left:385.548738px;}
.x16_c00422{left:388.260000px;}
.xa6_c00422{left:393.355500px;}
.x28_c00422{left:396.166500px;}
.x22_c00422{left:397.451100px;}
.x1_c00422{left:400.410000px;}
.x71_c00422{left:405.293640px;}
.x11_c00422{left:408.510000px;}
.x4_c00422{left:411.210000px;}
.x7e_c00422{left:415.294500px;}
.x51_c00422{left:416.880420px;}
.x25_c00422{left:418.623000px;}
.xa_c00422{left:420.660000px;}
.xaa_c00422{left:424.381997px;}
.x91_c00422{left:425.851500px;}
.x5f_c00422{left:426.901500px;}
.x29_c00422{left:429.063000px;}
.x9f_c00422{left:435.528630px;}
.x87_c00422{left:437.491518px;}
.x5_c00422{left:442.260000px;}
.xab_c00422{left:446.191166px;}
.x7f_c00422{left:447.913500px;}
.x60_c00422{left:449.311500px;}
.x43_c00422{left:451.157886px;}
.x12_c00422{left:453.330000px;}
.x99_c00422{left:458.361523px;}
.x23_c00422{left:462.524595px;}
.x1b_c00422{left:464.670000px;}
.x52_c00422{left:471.133920px;}
.x1e_c00422{left:473.991000px;}
.xe_c00422{left:476.280000px;}
.x76_c00422{left:480.952500px;}
.x61_c00422{left:482.184000px;}
.x57_c00422{left:483.858240px;}
.x17_c00422{left:485.730000px;}
.x6_c00422{left:486.810000px;}
.x92_c00422{left:492.444000px;}
.x3d_c00422{left:494.712738px;}
.x33_c00422{left:495.846351px;}
.xb_c00422{left:498.150000px;}
.x80_c00422{left:503.887500px;}
.x5d_c00422{left:505.251000px;}
.x4a_c00422{left:506.901000px;}
.x18_c00422{left:508.950000px;}
.xa0_c00422{left:513.444636px;}
.x44_c00422{left:516.526386px;}
.x13_c00422{left:519.480000px;}
.xac_c00422{left:523.023756px;}
.x93_c00422{left:524.613000px;}
.x77_c00422{left:526.546500px;}
.x34_c00422{left:528.517455px;}
.x2a_c00422{left:529.534500px;}
.xa7_c00422{left:535.125000px;}
.x58_c00422{left:537.608580px;}
.x3e_c00422{left:538.686738px;}
.x81_c00422{left:547.035000px;}
.x69_c00422{left:548.411856px;}
.x4b_c00422{left:550.324500px;}
.x1f_c00422{left:552.570000px;}
.x88_c00422{left:558.012703px;}
.x2b_c00422{left:561.717000px;}
.x53_c00422{left:571.650420px;}
.x9a_c00422{left:579.495105px;}
.xad_c00422{left:580.666555px;}
.x59_c00422{left:582.638280px;}
.x35_c00422{left:585.278610px;}
.x72_c00422{left:592.544568px;}
.x62_c00422{left:593.830500px;}
.x3f_c00422{left:595.671738px;}
.x94_c00422{left:602.067000px;}
.x2c_c00422{left:605.961000px;}
.x73_c00422{left:614.641356px;}
.x6a_c00422{left:616.177752px;}
.x78_c00422{left:625.671000px;}
.x89_c00422{left:636.079507px;}
.x36_c00422{left:639.262914px;}
.x82_c00422{left:648.091500px;}
.x45_c00422{left:649.952886px;}
.xa1_c00422{left:658.150285px;}
.x79_c00422{left:659.730000px;}
.x4c_c00422{left:660.786000px;}
.x95_c00422{left:669.360000px;}
.x63_c00422{left:671.284500px;}
.x74_c00422{left:680.816148px;}
.x6b_c00422{left:682.368504px;}
.x8a_c00422{left:690.852730px;}
.x54_c00422{left:693.730920px;}
.x4d_c00422{left:694.810500px;}
.x37_c00422{left:695.980569px;}
.x64_c00422{left:704.781000px;}
.x46_c00422{left:705.848886px;}
.xa2_c00422{left:713.217163px;}
.x6c_c00422{left:715.315380px;}
.x2d_c00422{left:718.084500px;}
.xae_c00422{left:723.358221px;}
.x7a_c00422{left:726.450000px;}
.x55_c00422{left:727.566420px;}
.x38_c00422{left:729.194754px;}
.x65_c00422{left:738.046500px;}
.x47_c00422{left:739.078386px;}
.x40_c00422{left:740.171238px;}
.xaf_c00422{left:746.136919px;}
.xa3_c00422{left:747.769577px;}
.x4e_c00422{left:749.658000px;}
.x2e_c00422{left:750.975000px;}
.x6d_c00422{left:760.168620px;}
.x8b_c00422{left:770.602662px;}
.x7b_c00422{left:783.165000px;}
.x2f_c00422{left:785.259000px;}
.x8c_c00422{left:791.620590px;}
.x5a_c00422{left:793.405350px;}
.xb0_c00422{left:801.753747px;}
.x9b_c00422{left:803.392702px;}
.x96_c00422{left:814.405500px;}
.x39_c00422{left:816.690270px;}
.xa4_c00422{left:824.618651px;}
.x83_c00422{left:826.065000px;}
.x56_c00422{left:828.547920px;}
.x6e_c00422{left:836.641128px;}
.x7c_c00422{left:838.807500px;}
@media print{
.v0_c00422{vertical-align:0.000000pt;}
.ls0_c00422{letter-spacing:0.000000pt;}
.ws0_c00422{word-spacing:0.000000pt;}
.fs3_c00422{font-size:58.666667pt;}
.fs11_c00422{font-size:58.675143pt;}
.fs1_c00422{font-size:64.000000pt;}
.fs8_c00422{font-size:64.010367pt;}
.fsa_c00422{font-size:64.012799pt;}
.fs2_c00422{font-size:69.333333pt;}
.fs4_c00422{font-size:69.336800pt;}
.fsf_c00422{font-size:69.342207pt;}
.fs7_c00422{font-size:69.344564pt;}
.fs9_c00422{font-size:69.347199pt;}
.fs5_c00422{font-size:74.672042pt;}
.fs12_c00422{font-size:74.677455pt;}
.fs6_c00422{font-size:74.678762pt;}
.fsc_c00422{font-size:74.688168pt;}
.fs15_c00422{font-size:79.977797pt;}
.fs17_c00422{font-size:79.984038pt;}
.fs0_c00422{font-size:80.000000pt;}
.fsd_c00422{font-size:80.023037pt;}
.fsb_c00422{font-size:85.342933pt;}
.fs10_c00422{font-size:85.345663pt;}
.fse_c00422{font-size:85.357906pt;}
.fs14_c00422{font-size:85.364432pt;}
.fs16_c00422{font-size:90.686656pt;}
.fs13_c00422{font-size:101.370263pt;}
.y0_c00422{bottom:0.000000pt;}
.yf8_c00422{bottom:44.047893pt;}
.yf7_c00422{bottom:45.010560pt;}
.yf6_c00422{bottom:46.990027pt;}
.yf5_c00422{bottom:47.800747pt;}
.yf4_c00422{bottom:52.879307pt;}
.yf3_c00422{bottom:54.104800pt;}
.yf2_c00422{bottom:54.930880pt;}
.yf1_c00422{bottom:57.665440pt;}
.yf0_c00422{bottom:58.441653pt;}
.yef_c00422{bottom:61.171627pt;}
.yee_c00422{bottom:62.367200pt;}
.yed_c00422{bottom:63.864000pt;}
.yec_c00422{bottom:81.663983pt;}
.yeb_c00422{bottom:82.309691pt;}
.yea_c00422{bottom:83.555131pt;}
.ye9_c00422{bottom:84.155171pt;}
.ye8_c00422{bottom:85.410607pt;}
.ye7_c00422{bottom:86.201495pt;}
.ye6_c00422{bottom:87.241527pt;}
.ye5_c00422{bottom:87.666595pt;}
.ye4_c00422{bottom:89.887051pt;}
.ye3_c00422{bottom:90.482667pt;}
.ye2_c00422{bottom:108.645528pt;}
.ye1_c00422{bottom:111.243917pt;}
.ye0_c00422{bottom:112.412189pt;}
.ydf_c00422{bottom:114.274088pt;}
.yde_c00422{bottom:115.405525pt;}
.ydd_c00422{bottom:119.166816pt;}
.ydc_c00422{bottom:121.801280pt;}
.ydb_c00422{bottom:124.422723pt;}
.yda_c00422{bottom:126.667763pt;}
.yd9_c00422{bottom:127.696195pt;}
.yd8_c00422{bottom:131.052000pt;}
.yd7_c00422{bottom:142.414149pt;}
.yd6_c00422{bottom:143.093352pt;}
.yd5_c00422{bottom:145.143304pt;}
.yd4_c00422{bottom:145.845291pt;}
.yd3_c00422{bottom:146.529172pt;}
.yd2_c00422{bottom:146.993780pt;}
.yd1_c00422{bottom:148.779321pt;}
.yd0_c00422{bottom:149.470005pt;}
.ycf_c00422{bottom:150.132867pt;}
.yce_c00422{bottom:152.639939pt;}
.ycd_c00422{bottom:153.296320pt;}
.ycc_c00422{bottom:153.951371pt;}
.ycb_c00422{bottom:155.515839pt;}
.yca_c00422{bottom:174.166499pt;}
.yc9_c00422{bottom:174.702035pt;}
.yc8_c00422{bottom:176.551643pt;}
.yc7_c00422{bottom:177.647591pt;}
.yc6_c00422{bottom:179.262623pt;}
.yc5_c00422{bottom:181.121519pt;}
.yc4_c00422{bottom:181.893575pt;}
.yc3_c00422{bottom:183.491795pt;}
.yc2_c00422{bottom:185.102975pt;}
.yc1_c00422{bottom:187.210667pt;}
.yc0_c00422{bottom:217.062492pt;}
.ybf_c00422{bottom:217.354443pt;}
.ybe_c00422{bottom:218.041980pt;}
.ybd_c00422{bottom:218.433755pt;}
.ybc_c00422{bottom:219.003155pt;}
.ybb_c00422{bottom:219.303413pt;}
.yba_c00422{bottom:219.590864pt;}
.yb9_c00422{bottom:243.541544pt;}
.yb8_c00422{bottom:243.784460pt;}
.yb7_c00422{bottom:244.705488pt;}
.yb6_c00422{bottom:245.338449pt;}
.yb5_c00422{bottom:246.240712pt;}
.yb4_c00422{bottom:247.246385pt;}
.yb3_c00422{bottom:247.633797pt;}
.yb2_c00422{bottom:248.014292pt;}
.yb1_c00422{bottom:248.653699pt;}
.yb0_c00422{bottom:249.037525pt;}
.yaf_c00422{bottom:249.302901pt;}
.yae_c00422{bottom:250.304989pt;}
.yad_c00422{bottom:250.796723pt;}
.yac_c00422{bottom:270.789073pt;}
.yab_c00422{bottom:272.457839pt;}
.yaa_c00422{bottom:272.972463pt;}
.ya9_c00422{bottom:273.478451pt;}
.ya8_c00422{bottom:275.005527pt;}
.ya7_c00422{bottom:275.657533pt;}
.ya6_c00422{bottom:276.503363pt;}
.ya5_c00422{bottom:276.996272pt;}
.ya4_c00422{bottom:278.343647pt;}
.ya3_c00422{bottom:278.983549pt;}
.ya2_c00422{bottom:279.481785pt;}
.ya1_c00422{bottom:280.804000pt;}
.ya0_c00422{bottom:302.873451pt;}
.y9f_c00422{bottom:303.664811pt;}
.y9e_c00422{bottom:304.471424pt;}
.y9d_c00422{bottom:305.420331pt;}
.y9c_c00422{bottom:305.904725pt;}
.y9b_c00422{bottom:306.376427pt;}
.y9a_c00422{bottom:307.314496pt;}
.y99_c00422{bottom:307.962944pt;}
.y98_c00422{bottom:309.361877pt;}
.y97_c00422{bottom:309.983445pt;}
.y96_c00422{bottom:310.452544pt;}
.y95_c00422{bottom:311.999808pt;}
.y94_c00422{bottom:312.482667pt;}
.y93_c00422{bottom:334.446997pt;}
.y92_c00422{bottom:335.624683pt;}
.y91_c00422{bottom:336.536544pt;}
.y90_c00422{bottom:337.418635pt;}
.y8f_c00422{bottom:337.712597pt;}
.y8e_c00422{bottom:338.447936pt;}
.y8d_c00422{bottom:338.886720pt;}
.y8c_c00422{bottom:340.209088pt;}
.y8b_c00422{bottom:340.792043pt;}
.y8a_c00422{bottom:341.253483pt;}
.y89_c00422{bottom:342.409781pt;}
.y88_c00422{bottom:342.844768pt;}
.y87_c00422{bottom:343.427861pt;}
.y86_c00422{bottom:364.970560pt;}
.y85_c00422{bottom:366.397856pt;}
.y84_c00422{bottom:367.234656pt;}
.y83_c00422{bottom:367.849472pt;}
.y82_c00422{bottom:369.085440pt;}
.y81_c00422{bottom:369.725760pt;}
.y80_c00422{bottom:370.349675pt;}
.y7f_c00422{bottom:371.803435pt;}
.y7e_c00422{bottom:373.436053pt;}
.y7d_c00422{bottom:374.049269pt;}
.y7c_c00422{bottom:375.894037pt;}
.y7b_c00422{bottom:376.911712pt;}
.y7a_c00422{bottom:377.514997pt;}
.y79_c00422{bottom:400.495819pt;}
.y78_c00422{bottom:401.205483pt;}
.y77_c00422{bottom:401.920075pt;}
.y76_c00422{bottom:403.572427pt;}
.y75_c00422{bottom:405.230059pt;}
.y74_c00422{bottom:405.954219pt;}
.y73_c00422{bottom:406.655499pt;}
.y72_c00422{bottom:407.133579pt;}
.y71_c00422{bottom:409.013003pt;}
.y70_c00422{bottom:409.716075pt;}
.y6f_c00422{bottom:410.406667pt;}
.y6e_c00422{bottom:436.424113pt;}
.y6d_c00422{bottom:437.302733pt;}
.y6c_c00422{bottom:437.595213pt;}
.y6b_c00422{bottom:438.926633pt;}
.y6a_c00422{bottom:441.259493pt;}
.y69_c00422{bottom:441.841333pt;}
.y68_c00422{bottom:462.224133pt;}
.y67_c00422{bottom:462.662107pt;}
.y66_c00422{bottom:463.951093pt;}
.y65_c00422{bottom:465.695493pt;}
.y64_c00422{bottom:466.783893pt;}
.y63_c00422{bottom:467.664453pt;}
.y62_c00422{bottom:468.716053pt;}
.y61_c00422{bottom:470.444293pt;}
.y60_c00422{bottom:471.749120pt;}
.y5f_c00422{bottom:472.393147pt;}
.y5e_c00422{bottom:474.951947pt;}
.y5d_c00422{bottom:496.276373pt;}
.y5c_c00422{bottom:498.071600pt;}
.y5b_c00422{bottom:498.673120pt;}
.y5a_c00422{bottom:500.233573pt;}
.y59_c00422{bottom:500.843440pt;}
.y58_c00422{bottom:502.220373pt;}
.y57_c00422{bottom:502.630400pt;}
.y56_c00422{bottom:503.594907pt;}
.y55_c00422{bottom:504.166000pt;}
.y54_c00422{bottom:504.972347pt;}
.y53_c00422{bottom:505.543813pt;}
.y52_c00422{bottom:506.142347pt;}
.y51_c00422{bottom:507.510853pt;}
.y50_c00422{bottom:508.075307pt;}
.y4f_c00422{bottom:529.139440pt;}
.y4e_c00422{bottom:530.114507pt;}
.y4d_c00422{bottom:530.719387pt;}
.y4c_c00422{bottom:532.683147pt;}
.y4b_c00422{bottom:533.455120pt;}
.y4a_c00422{bottom:534.834080pt;}
.y49_c00422{bottom:537.003733pt;}
.y48_c00422{bottom:537.604000pt;}
.y47_c00422{bottom:558.168677pt;}
.y46_c00422{bottom:558.700349pt;}
.y45_c00422{bottom:559.594685pt;}
.y44_c00422{bottom:561.729509pt;}
.y43_c00422{bottom:562.775405pt;}
.y42_c00422{bottom:564.179405pt;}
.y41_c00422{bottom:565.259621pt;}
.y40_c00422{bottom:566.831621pt;}
.y3f_c00422{bottom:567.349469pt;}
.y3e_c00422{bottom:590.796432pt;}
.y3d_c00422{bottom:592.403832pt;}
.y3c_c00422{bottom:593.108424pt;}
.y3b_c00422{bottom:594.020184pt;}
.y3a_c00422{bottom:594.723768pt;}
.y39_c00422{bottom:596.470392pt;}
.y38_c00422{bottom:598.055808pt;}
.y37_c00422{bottom:598.591080pt;}
.y36_c00422{bottom:598.952880pt;}
.y35_c00422{bottom:599.994216pt;}
.y34_c00422{bottom:622.670848pt;}
.y33_c00422{bottom:622.984928pt;}
.y32_c00422{bottom:623.526600pt;}
.y31_c00422{bottom:623.851293pt;}
.y30_c00422{bottom:624.405328pt;}
.y2f_c00422{bottom:624.932968pt;}
.y2e_c00422{bottom:625.487699pt;}
.y2d_c00422{bottom:625.807704pt;}
.y2c_c00422{bottom:626.456707pt;}
.y2b_c00422{bottom:626.776051pt;}
.y2a_c00422{bottom:627.100984pt;}
.y29_c00422{bottom:627.435667pt;}
.y28_c00422{bottom:628.278155pt;}
.y27_c00422{bottom:628.604456pt;}
.y26_c00422{bottom:629.036013pt;}
.y25_c00422{bottom:654.503896pt;}
.y24_c00422{bottom:655.052440pt;}
.y23_c00422{bottom:655.578688pt;}
.y22_c00422{bottom:657.372664pt;}
.y21_c00422{bottom:658.080568pt;}
.y20_c00422{bottom:658.595488pt;}
.y1f_c00422{bottom:659.481400pt;}
.y1e_c00422{bottom:660.203032pt;}
.y1d_c00422{bottom:660.729376pt;}
.y1c_c00422{bottom:661.267000pt;}
.y1b_c00422{bottom:661.770640pt;}
.y1a_c00422{bottom:662.644000pt;}
.y14_c00422{bottom:708.001333pt;}
.y15_c00422{bottom:708.231989pt;}
.y16_c00422{bottom:709.527893pt;}
.y17_c00422{bottom:710.454709pt;}
.y18_c00422{bottom:710.696581pt;}
.y19_c00422{bottom:710.935909pt;}
.y13_c00422{bottom:740.097027pt;}
.y12_c00422{bottom:740.097547pt;}
.y10_c00422{bottom:740.098027pt;}
.y11_c00422{bottom:740.098067pt;}
.yf_c00422{bottom:740.098507pt;}
.ye_c00422{bottom:770.535747pt;}
.yd_c00422{bottom:771.234227pt;}
.yc_c00422{bottom:771.515040pt;}
.yb_c00422{bottom:772.499133pt;}
.ya_c00422{bottom:773.384667pt;}
.y9_c00422{bottom:773.761333pt;}
.y8_c00422{bottom:818.354667pt;}
.y7_c00422{bottom:850.184000pt;}
.y6_c00422{bottom:881.388000pt;}
.y5_c00422{bottom:929.280000pt;}
.y4_c00422{bottom:960.789333pt;}
.y3_c00422{bottom:992.566667pt;}
.y2_c00422{bottom:1024.114667pt;}
.y1_c00422{bottom:1078.321333pt;}
.h5_c00422{height:58.666667pt;}
.h13_c00422{height:58.675143pt;}
.h3_c00422{height:64.000000pt;}
.ha_c00422{height:64.010367pt;}
.hc_c00422{height:64.012799pt;}
.h4_c00422{height:69.333333pt;}
.h6_c00422{height:69.336800pt;}
.h11_c00422{height:69.342207pt;}
.h9_c00422{height:69.344564pt;}
.hb_c00422{height:69.347199pt;}
.h7_c00422{height:74.672042pt;}
.h14_c00422{height:74.677455pt;}
.h8_c00422{height:74.678762pt;}
.he_c00422{height:74.688168pt;}
.h17_c00422{height:79.977797pt;}
.h19_c00422{height:79.984038pt;}
.h2_c00422{height:80.000000pt;}
.hf_c00422{height:80.023037pt;}
.hd_c00422{height:85.342933pt;}
.h12_c00422{height:85.345663pt;}
.h10_c00422{height:85.357906pt;}
.h16_c00422{height:85.364432pt;}
.h18_c00422{height:90.686656pt;}
.h15_c00422{height:101.370263pt;}
.h1_c00422{height:1112.000000pt;}
.h0_c00422{height:1112.133333pt;}
.w0_c00422{width:813.333333pt;}
.x0_c00422{left:0.000000pt;}
.x9c_c00422{left:143.940000pt;}
.x75_c00422{left:145.030667pt;}
.x66_c00422{left:146.175264pt;}
.x30_c00422{left:147.216661pt;}
.x20_c00422{left:167.760653pt;}
.x2_c00422{left:168.960000pt;}
.x4f_c00422{left:174.763040pt;}
.x41_c00422{left:175.683899pt;}
.x84_c00422{left:183.424720pt;}
.x5b_c00422{left:185.328000pt;}
.x24_c00422{left:186.882667pt;}
.x14_c00422{left:197.040000pt;}
.x7_c00422{left:199.200000pt;}
.x8d_c00422{left:203.869316pt;}
.x3a_c00422{left:204.793989pt;}
.x1c_c00422{left:206.281333pt;}
.x97_c00422{left:212.595441pt;}
.x6f_c00422{left:213.589365pt;}
.x31_c00422{left:216.069325pt;}
.xc_c00422{left:217.680000pt;}
.x67_c00422{left:223.387499pt;}
.x3b_c00422{left:224.893989pt;}
.xf_c00422{left:226.560000pt;}
.x8_c00422{left:227.760000pt;}
.x9d_c00422{left:232.162356pt;}
.x8f_c00422{left:240.798667pt;}
.xa8_c00422{left:241.805333pt;}
.x48_c00422{left:243.134667pt;}
.x26_c00422{left:245.780000pt;}
.x7d_c00422{left:252.252000pt;}
.x19_c00422{left:254.880000pt;}
.x3_c00422{left:257.040000pt;}
.x9e_c00422{left:259.199292pt;}
.x85_c00422{left:260.493956pt;}
.x42_c00422{left:263.017232pt;}
.x21_c00422{left:265.685107pt;}
.x98_c00422{left:269.617597pt;}
.x5e_c00422{left:271.864000pt;}
.x49_c00422{left:273.148000pt;}
.x15_c00422{left:275.760000pt;}
.xa5_c00422{left:279.882667pt;}
.x86_c00422{left:280.890005pt;}
.x10_c00422{left:286.560000pt;}
.x70_c00422{left:290.674005pt;}
.x32_c00422{left:292.661640pt;}
.x1d_c00422{left:294.834667pt;}
.x8e_c00422{left:299.871384pt;}
.x50_c00422{left:301.688373pt;}
.xd_c00422{left:305.040000pt;}
.x9_c00422{left:306.480000pt;}
.xa9_c00422{left:309.047357pt;}
.x68_c00422{left:311.259168pt;}
.x90_c00422{left:318.861333pt;}
.x27_c00422{left:322.280000pt;}
.x1a_c00422{left:323.280000pt;}
.x5c_c00422{left:340.852000pt;}
.x3c_c00422{left:342.709989pt;}
.x16_c00422{left:345.120000pt;}
.xa6_c00422{left:349.649333pt;}
.x28_c00422{left:352.148000pt;}
.x22_c00422{left:353.289867pt;}
.x1_c00422{left:355.920000pt;}
.x71_c00422{left:360.261013pt;}
.x11_c00422{left:363.120000pt;}
.x4_c00422{left:365.520000pt;}
.x7e_c00422{left:369.150667pt;}
.x51_c00422{left:370.560373pt;}
.x25_c00422{left:372.109333pt;}
.xa_c00422{left:373.920000pt;}
.xaa_c00422{left:377.228441pt;}
.x91_c00422{left:378.534667pt;}
.x5f_c00422{left:379.468000pt;}
.x29_c00422{left:381.389333pt;}
.x9f_c00422{left:387.136560pt;}
.x87_c00422{left:388.881349pt;}
.x5_c00422{left:393.120000pt;}
.xab_c00422{left:396.614369pt;}
.x7f_c00422{left:398.145333pt;}
.x60_c00422{left:399.388000pt;}
.x43_c00422{left:401.029232pt;}
.x12_c00422{left:402.960000pt;}
.x99_c00422{left:407.432465pt;}
.x23_c00422{left:411.132973pt;}
.x1b_c00422{left:413.040000pt;}
.x52_c00422{left:418.785707pt;}
.x1e_c00422{left:421.325333pt;}
.xe_c00422{left:423.360000pt;}
.x76_c00422{left:427.513333pt;}
.x61_c00422{left:428.608000pt;}
.x57_c00422{left:430.096213pt;}
.x17_c00422{left:431.760000pt;}
.x6_c00422{left:432.720000pt;}
.x92_c00422{left:437.728000pt;}
.x3d_c00422{left:439.744656pt;}
.x33_c00422{left:440.752312pt;}
.xb_c00422{left:442.800000pt;}
.x80_c00422{left:447.900000pt;}
.x5d_c00422{left:449.112000pt;}
.x4a_c00422{left:450.578667pt;}
.x18_c00422{left:452.400000pt;}
.xa0_c00422{left:456.395232pt;}
.x44_c00422{left:459.134565pt;}
.x13_c00422{left:461.760000pt;}
.xac_c00422{left:464.910005pt;}
.x93_c00422{left:466.322667pt;}
.x77_c00422{left:468.041333pt;}
.x34_c00422{left:469.793293pt;}
.x2a_c00422{left:470.697333pt;}
.xa7_c00422{left:475.666667pt;}
.x58_c00422{left:477.874293pt;}
.x3e_c00422{left:478.832656pt;}
.x81_c00422{left:486.253333pt;}
.x69_c00422{left:487.477205pt;}
.x4b_c00422{left:489.177333pt;}
.x1f_c00422{left:491.173333pt;}
.x88_c00422{left:496.011292pt;}
.x2b_c00422{left:499.304000pt;}
.x53_c00422{left:508.133707pt;}
.x9a_c00422{left:515.106760pt;}
.xad_c00422{left:516.148049pt;}
.x59_c00422{left:517.900693pt;}
.x35_c00422{left:520.247653pt;}
.x72_c00422{left:526.706283pt;}
.x62_c00422{left:527.849333pt;}
.x3f_c00422{left:529.485989pt;}
.x94_c00422{left:535.170667pt;}
.x2c_c00422{left:538.632000pt;}
.x73_c00422{left:546.347872pt;}
.x6a_c00422{left:547.713557pt;}
.x78_c00422{left:556.152000pt;}
.x89_c00422{left:565.404007pt;}
.x36_c00422{left:568.233701pt;}
.x82_c00422{left:576.081333pt;}
.x45_c00422{left:577.735899pt;}
.xa1_c00422{left:585.022476pt;}
.x79_c00422{left:586.426667pt;}
.x4c_c00422{left:587.365333pt;}
.x95_c00422{left:594.986667pt;}
.x63_c00422{left:596.697333pt;}
.x74_c00422{left:605.169909pt;}
.x6b_c00422{left:606.549781pt;}
.x8a_c00422{left:614.091316pt;}
.x54_c00422{left:616.649707pt;}
.x4d_c00422{left:617.609333pt;}
.x37_c00422{left:618.649395pt;}
.x64_c00422{left:626.472000pt;}
.x46_c00422{left:627.421232pt;}
.xa2_c00422{left:633.970812pt;}
.x6c_c00422{left:635.835893pt;}
.x2d_c00422{left:638.297333pt;}
.xae_c00422{left:642.985085pt;}
.x7a_c00422{left:645.733333pt;}
.x55_c00422{left:646.725707pt;}
.x38_c00422{left:648.173115pt;}
.x65_c00422{left:656.041333pt;}
.x47_c00422{left:656.958565pt;}
.x40_c00422{left:657.929989pt;}
.xaf_c00422{left:663.232817pt;}
.xa3_c00422{left:664.684068pt;}
.x4e_c00422{left:666.362667pt;}
.x2e_c00422{left:667.533333pt;}
.x6d_c00422{left:675.705440pt;}
.x8b_c00422{left:684.980144pt;}
.x7b_c00422{left:696.146667pt;}
.x2f_c00422{left:698.008000pt;}
.x8c_c00422{left:703.662747pt;}
.x5a_c00422{left:705.249200pt;}
.xb0_c00422{left:712.669997pt;}
.x9b_c00422{left:714.126847pt;}
.x96_c00422{left:723.916000pt;}
.x39_c00422{left:725.946907pt;}
.xa4_c00422{left:732.994356pt;}
.x83_c00422{left:734.280000pt;}
.x56_c00422{left:736.487040pt;}
.x6e_c00422{left:743.681003pt;}
.x7c_c00422{left:745.606667pt;}
}





/* 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_c00423 {
    display:none;
  }
  .loading-indicator_c00423.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00423 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_c00423 { 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_c00423" -> "#page-container .classname_c00423")
 */
.pf_c00423 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00423 { /* 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_c00423.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00423 { /* 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_c00423 { /* 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_c00423 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00423 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00423 {overflow:visible;}
  }
}
.c_c00423 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00423 { /* 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_c00423:after { /* webkit #35443 */
  content: '';
}
.t_c00423:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00423 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 */
}
.__c00423 { /* 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_c00423 { /* info for Javascript */
  display:none;
}
.l_c00423 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00423 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00423 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00423: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_c00423 {
    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_c00423.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00423.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_c00423 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00423{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00423;src:url('chunks/assets/font_7c6b9abe6ee2a268480c528b.woff2')format("woff");}.ff1_c00423{font-family:ff1_c00423;line-height:1.000000;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;}
.mb_c00423{transform:matrix(0.011589,0.000116,-0.002500,0.249988,0,0);-ms-transform:matrix(0.011589,0.000116,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.011589,0.000116,-0.002500,0.249988,0,0);}
.m55_c00423{transform:matrix(0.013495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.013495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.013495,0.000000,0.000000,0.250000,0,0);}
.m1_c00423{transform:matrix(0.015434,0.000154,-0.002500,0.249988,0,0);-ms-transform:matrix(0.015434,0.000154,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.015434,0.000154,-0.002500,0.249988,0,0);}
.mc_c00423{transform:matrix(0.020579,0.000206,-0.002500,0.249988,0,0);-ms-transform:matrix(0.020579,0.000206,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.020579,0.000206,-0.002500,0.249988,0,0);}
.m9_c00423{transform:matrix(0.068787,0.000688,-0.002500,0.249988,0,0);-ms-transform:matrix(0.068787,0.000688,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.068787,0.000688,-0.002500,0.249988,0,0);}
.m14_c00423{transform:matrix(0.120314,-0.003974,0.008254,0.249864,0,0);-ms-transform:matrix(0.120314,-0.003974,0.008254,0.249864,0,0);-webkit-transform:matrix(0.120314,-0.003974,0.008254,0.249864,0,0);}
.m33_c00423{transform:matrix(0.125425,-0.001129,0.002250,0.249990,0,0);-ms-transform:matrix(0.125425,-0.001129,0.002250,0.249990,0,0);-webkit-transform:matrix(0.125425,-0.001129,0.002250,0.249990,0,0);}
.m15_c00423{transform:matrix(0.127810,-0.004222,0.008254,0.249864,0,0);-ms-transform:matrix(0.127810,-0.004222,0.008254,0.249864,0,0);-webkit-transform:matrix(0.127810,-0.004222,0.008254,0.249864,0,0);}
.m21_c00423{transform:matrix(0.133903,-0.000670,0.001250,0.249997,0,0);-ms-transform:matrix(0.133903,-0.000670,0.001250,0.249997,0,0);-webkit-transform:matrix(0.133903,-0.000670,0.001250,0.249997,0,0);}
.m13_c00423{transform:matrix(0.134876,-0.004455,0.008254,0.249864,0,0);-ms-transform:matrix(0.134876,-0.004455,0.008254,0.249864,0,0);-webkit-transform:matrix(0.134876,-0.004455,0.008254,0.249864,0,0);}
.m17_c00423{transform:matrix(0.135296,-0.004469,0.008254,0.249864,0,0);-ms-transform:matrix(0.135296,-0.004469,0.008254,0.249864,0,0);-webkit-transform:matrix(0.135296,-0.004469,0.008254,0.249864,0,0);}
.m16_c00423{transform:matrix(0.136331,-0.004503,0.008254,0.249864,0,0);-ms-transform:matrix(0.136331,-0.004503,0.008254,0.249864,0,0);-webkit-transform:matrix(0.136331,-0.004503,0.008254,0.249864,0,0);}
.m5b_c00423{transform:matrix(0.138748,0.000832,-0.001500,0.249996,0,0);-ms-transform:matrix(0.138748,0.000832,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.138748,0.000832,-0.001500,0.249996,0,0);}
.m23_c00423{transform:matrix(0.143983,-0.000720,0.001250,0.249997,0,0);-ms-transform:matrix(0.143983,-0.000720,0.001250,0.249997,0,0);-webkit-transform:matrix(0.143983,-0.000720,0.001250,0.249997,0,0);}
.m24_c00423{transform:matrix(0.146318,-0.000732,0.001250,0.249997,0,0);-ms-transform:matrix(0.146318,-0.000732,0.001250,0.249997,0,0);-webkit-transform:matrix(0.146318,-0.000732,0.001250,0.249997,0,0);}
.m22_c00423{transform:matrix(0.150628,-0.000753,0.001250,0.249997,0,0);-ms-transform:matrix(0.150628,-0.000753,0.001250,0.249997,0,0);-webkit-transform:matrix(0.150628,-0.000753,0.001250,0.249997,0,0);}
.m59_c00423{transform:matrix(0.151212,0.000907,-0.001500,0.249996,0,0);-ms-transform:matrix(0.151212,0.000907,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.151212,0.000907,-0.001500,0.249996,0,0);}
.m5e_c00423{transform:matrix(0.151367,0.000908,-0.001500,0.249996,0,0);-ms-transform:matrix(0.151367,0.000908,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.151367,0.000908,-0.001500,0.249996,0,0);}
.m5d_c00423{transform:matrix(0.158497,0.000951,-0.001500,0.249996,0,0);-ms-transform:matrix(0.158497,0.000951,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.158497,0.000951,-0.001500,0.249996,0,0);}
.m18_c00423{transform:matrix(0.160687,-0.005308,0.008254,0.249864,0,0);-ms-transform:matrix(0.160687,-0.005308,0.008254,0.249864,0,0);-webkit-transform:matrix(0.160687,-0.005308,0.008254,0.249864,0,0);}
.m1b_c00423{transform:matrix(0.164973,-0.000825,0.001250,0.249997,0,0);-ms-transform:matrix(0.164973,-0.000825,0.001250,0.249997,0,0);-webkit-transform:matrix(0.164973,-0.000825,0.001250,0.249997,0,0);}
.m58_c00423{transform:matrix(0.167587,0.001006,-0.001500,0.249996,0,0);-ms-transform:matrix(0.167587,0.001006,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.167587,0.001006,-0.001500,0.249996,0,0);}
.m5c_c00423{transform:matrix(0.170667,0.001024,-0.001500,0.249996,0,0);-ms-transform:matrix(0.170667,0.001024,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.170667,0.001024,-0.001500,0.249996,0,0);}
.m1c_c00423{transform:matrix(0.170758,-0.000854,0.001250,0.249997,0,0);-ms-transform:matrix(0.170758,-0.000854,0.001250,0.249997,0,0);-webkit-transform:matrix(0.170758,-0.000854,0.001250,0.249997,0,0);}
.m1a_c00423{transform:matrix(0.172043,-0.000860,0.001250,0.249997,0,0);-ms-transform:matrix(0.172043,-0.000860,0.001250,0.249997,0,0);-webkit-transform:matrix(0.172043,-0.000860,0.001250,0.249997,0,0);}
.m5a_c00423{transform:matrix(0.177767,0.001067,-0.001500,0.249996,0,0);-ms-transform:matrix(0.177767,0.001067,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.177767,0.001067,-0.001500,0.249996,0,0);}
.m2f_c00423{transform:matrix(0.178183,-0.001604,0.002250,0.249990,0,0);-ms-transform:matrix(0.178183,-0.001604,0.002250,0.249990,0,0);-webkit-transform:matrix(0.178183,-0.001604,0.002250,0.249990,0,0);}
.m1e_c00423{transform:matrix(0.180878,-0.000904,0.001250,0.249997,0,0);-ms-transform:matrix(0.180878,-0.000904,0.001250,0.249997,0,0);-webkit-transform:matrix(0.180878,-0.000904,0.001250,0.249997,0,0);}
.m45_c00423{transform:matrix(0.181470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181470,0.000000,0.000000,0.250000,0,0);}
.m8_c00423{transform:matrix(0.182951,0.001830,-0.002500,0.249988,0,0);-ms-transform:matrix(0.182951,0.001830,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.182951,0.001830,-0.002500,0.249988,0,0);}
.m2_c00423{transform:matrix(0.192155,0.001922,-0.002500,0.249988,0,0);-ms-transform:matrix(0.192155,0.001922,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.192155,0.001922,-0.002500,0.249988,0,0);}
.m36_c00423{transform:matrix(0.192397,-0.001732,0.002250,0.249990,0,0);-ms-transform:matrix(0.192397,-0.001732,0.002250,0.249990,0,0);-webkit-transform:matrix(0.192397,-0.001732,0.002250,0.249990,0,0);}
.m39_c00423{transform:matrix(0.193582,-0.001742,0.002250,0.249990,0,0);-ms-transform:matrix(0.193582,-0.001742,0.002250,0.249990,0,0);-webkit-transform:matrix(0.193582,-0.001742,0.002250,0.249990,0,0);}
.m35_c00423{transform:matrix(0.193727,-0.001744,0.002250,0.249990,0,0);-ms-transform:matrix(0.193727,-0.001744,0.002250,0.249990,0,0);-webkit-transform:matrix(0.193727,-0.001744,0.002250,0.249990,0,0);}
.m19_c00423{transform:matrix(0.194293,-0.000971,0.001250,0.249997,0,0);-ms-transform:matrix(0.194293,-0.000971,0.001250,0.249997,0,0);-webkit-transform:matrix(0.194293,-0.000971,0.001250,0.249997,0,0);}
.m3c_c00423{transform:matrix(0.196460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196460,0.000000,0.000000,0.250000,0,0);}
.m1f_c00423{transform:matrix(0.197223,-0.000986,0.001250,0.249997,0,0);-ms-transform:matrix(0.197223,-0.000986,0.001250,0.249997,0,0);-webkit-transform:matrix(0.197223,-0.000986,0.001250,0.249997,0,0);}
.m2e_c00423{transform:matrix(0.200622,-0.001806,0.002250,0.249990,0,0);-ms-transform:matrix(0.200622,-0.001806,0.002250,0.249990,0,0);-webkit-transform:matrix(0.200622,-0.001806,0.002250,0.249990,0,0);}
.m4_c00423{transform:matrix(0.207230,0.002072,-0.002500,0.249988,0,0);-ms-transform:matrix(0.207230,0.002072,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.207230,0.002072,-0.002500,0.249988,0,0);}
.m1d_c00423{transform:matrix(0.210307,-0.001052,0.001250,0.249997,0,0);-ms-transform:matrix(0.210307,-0.001052,0.001250,0.249997,0,0);-webkit-transform:matrix(0.210307,-0.001052,0.001250,0.249997,0,0);}
.m32_c00423{transform:matrix(0.213546,-0.001922,0.002250,0.249990,0,0);-ms-transform:matrix(0.213546,-0.001922,0.002250,0.249990,0,0);-webkit-transform:matrix(0.213546,-0.001922,0.002250,0.249990,0,0);}
.m2d_c00423{transform:matrix(0.214706,-0.001932,0.002250,0.249990,0,0);-ms-transform:matrix(0.214706,-0.001932,0.002250,0.249990,0,0);-webkit-transform:matrix(0.214706,-0.001932,0.002250,0.249990,0,0);}
.m4d_c00423{transform:matrix(0.222940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222940,0.000000,0.000000,0.250000,0,0);}
.m31_c00423{transform:matrix(0.223086,-0.002008,0.002250,0.249990,0,0);-ms-transform:matrix(0.223086,-0.002008,0.002250,0.249990,0,0);-webkit-transform:matrix(0.223086,-0.002008,0.002250,0.249990,0,0);}
.m34_c00423{transform:matrix(0.224261,-0.002018,0.002250,0.249990,0,0);-ms-transform:matrix(0.224261,-0.002018,0.002250,0.249990,0,0);-webkit-transform:matrix(0.224261,-0.002018,0.002250,0.249990,0,0);}
.m28_c00423{transform:matrix(0.225246,-0.002027,0.002250,0.249990,0,0);-ms-transform:matrix(0.225246,-0.002027,0.002250,0.249990,0,0);-webkit-transform:matrix(0.225246,-0.002027,0.002250,0.249990,0,0);}
.m26_c00423{transform:matrix(0.225936,-0.002033,0.002250,0.249990,0,0);-ms-transform:matrix(0.225936,-0.002033,0.002250,0.249990,0,0);-webkit-transform:matrix(0.225936,-0.002033,0.002250,0.249990,0,0);}
.m38_c00423{transform:matrix(0.226716,-0.002040,0.002250,0.249990,0,0);-ms-transform:matrix(0.226716,-0.002040,0.002250,0.249990,0,0);-webkit-transform:matrix(0.226716,-0.002040,0.002250,0.249990,0,0);}
.m46_c00423{transform:matrix(0.226805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226805,0.000000,0.000000,0.250000,0,0);}
.m2a_c00423{transform:matrix(0.229016,-0.002061,0.002250,0.249990,0,0);-ms-transform:matrix(0.229016,-0.002061,0.002250,0.249990,0,0);-webkit-transform:matrix(0.229016,-0.002061,0.002250,0.249990,0,0);}
.m5_c00423{transform:matrix(0.229734,0.002297,-0.002500,0.249988,0,0);-ms-transform:matrix(0.229734,0.002297,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.229734,0.002297,-0.002500,0.249988,0,0);}
.mf_c00423{transform:matrix(0.231178,0.002312,-0.002500,0.249988,0,0);-ms-transform:matrix(0.231178,0.002312,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.231178,0.002312,-0.002500,0.249988,0,0);}
.m10_c00423{transform:matrix(0.234893,0.002349,-0.002500,0.249988,0,0);-ms-transform:matrix(0.234893,0.002349,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.234893,0.002349,-0.002500,0.249988,0,0);}
.m43_c00423{transform:matrix(0.236920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236920,0.000000,0.000000,0.250000,0,0);}
.m3e_c00423{transform:matrix(0.237165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237165,0.000000,0.000000,0.250000,0,0);}
.m37_c00423{transform:matrix(0.238775,-0.002149,0.002250,0.249990,0,0);-ms-transform:matrix(0.238775,-0.002149,0.002250,0.249990,0,0);-webkit-transform:matrix(0.238775,-0.002149,0.002250,0.249990,0,0);}
.m27_c00423{transform:matrix(0.239620,-0.002157,0.002250,0.249990,0,0);-ms-transform:matrix(0.239620,-0.002157,0.002250,0.249990,0,0);-webkit-transform:matrix(0.239620,-0.002157,0.002250,0.249990,0,0);}
.m57_c00423{transform:matrix(0.241786,0.001451,-0.001500,0.249996,0,0);-ms-transform:matrix(0.241786,0.001451,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.241786,0.001451,-0.001500,0.249996,0,0);}
.md_c00423{transform:matrix(0.244808,0.002448,-0.002500,0.249988,0,0);-ms-transform:matrix(0.244808,0.002448,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.244808,0.002448,-0.002500,0.249988,0,0);}
.m3d_c00423{transform:matrix(0.247985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247985,0.000000,0.000000,0.250000,0,0);}
.m20_c00423{transform:matrix(0.250192,-0.001251,0.001250,0.249997,0,0);-ms-transform:matrix(0.250192,-0.001251,0.001250,0.249997,0,0);-webkit-transform:matrix(0.250192,-0.001251,0.001250,0.249997,0,0);}
.m50_c00423{transform:matrix(0.253355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253355,0.000000,0.000000,0.250000,0,0);}
.m4f_c00423{transform:matrix(0.262640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262640,0.000000,0.000000,0.250000,0,0);}
.m60_c00423{transform:matrix(0.266175,0.001597,-0.001500,0.249996,0,0);-ms-transform:matrix(0.266175,0.001597,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.266175,0.001597,-0.001500,0.249996,0,0);}
.m61_c00423{transform:matrix(0.270880,0.001625,-0.001500,0.249996,0,0);-ms-transform:matrix(0.270880,0.001625,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.270880,0.001625,-0.001500,0.249996,0,0);}
.m41_c00423{transform:matrix(0.274075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274075,0.000000,0.000000,0.250000,0,0);}
.m30_c00423{transform:matrix(0.285258,-0.002567,0.002250,0.249990,0,0);-ms-transform:matrix(0.285258,-0.002567,0.002250,0.249990,0,0);-webkit-transform:matrix(0.285258,-0.002567,0.002250,0.249990,0,0);}
.m4e_c00423{transform:matrix(0.285785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285785,0.000000,0.000000,0.250000,0,0);}
.m51_c00423{transform:matrix(0.291115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291115,0.000000,0.000000,0.250000,0,0);}
.m11_c00423{transform:matrix(0.292900,0.002929,-0.002500,0.249988,0,0);-ms-transform:matrix(0.292900,0.002929,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.292900,0.002929,-0.002500,0.249988,0,0);}
.m48_c00423{transform:matrix(0.293465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293465,0.000000,0.000000,0.250000,0,0);}
.m52_c00423{transform:matrix(0.294375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294375,0.000000,0.000000,0.250000,0,0);}
.m4a_c00423{transform:matrix(0.296610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296610,0.000000,0.000000,0.250000,0,0);}
.m29_c00423{transform:matrix(0.296968,-0.002673,0.002250,0.249990,0,0);-ms-transform:matrix(0.296968,-0.002673,0.002250,0.249990,0,0);-webkit-transform:matrix(0.296968,-0.002673,0.002250,0.249990,0,0);}
.ma_c00423{transform:matrix(0.297110,0.002971,-0.002500,0.249988,0,0);-ms-transform:matrix(0.297110,0.002971,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.297110,0.002971,-0.002500,0.249988,0,0);}
.m4c_c00423{transform:matrix(0.298225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298225,0.000000,0.000000,0.250000,0,0);}
.m6_c00423{transform:matrix(0.298530,0.002985,-0.002500,0.249988,0,0);-ms-transform:matrix(0.298530,0.002985,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.298530,0.002985,-0.002500,0.249988,0,0);}
.m42_c00423{transform:matrix(0.298535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298535,0.000000,0.000000,0.250000,0,0);}
.m3f_c00423{transform:matrix(0.303005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303005,0.000000,0.000000,0.250000,0,0);}
.m3_c00423{transform:matrix(0.304340,0.003043,-0.002500,0.249988,0,0);-ms-transform:matrix(0.304340,0.003043,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.304340,0.003043,-0.002500,0.249988,0,0);}
.m12_c00423{transform:matrix(0.309885,0.003099,-0.002500,0.249988,0,0);-ms-transform:matrix(0.309885,0.003099,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.309885,0.003099,-0.002500,0.249988,0,0);}
.m47_c00423{transform:matrix(0.310655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310655,0.000000,0.000000,0.250000,0,0);}
.m7_c00423{transform:matrix(0.320324,0.003203,-0.002500,0.249988,0,0);-ms-transform:matrix(0.320324,0.003203,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.320324,0.003203,-0.002500,0.249988,0,0);}
.m63_c00423{transform:matrix(0.331824,0.001991,-0.001500,0.249996,0,0);-ms-transform:matrix(0.331824,0.001991,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.331824,0.001991,-0.001500,0.249996,0,0);}
.m62_c00423{transform:matrix(0.347879,0.002087,-0.001500,0.249996,0,0);-ms-transform:matrix(0.347879,0.002087,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.347879,0.002087,-0.001500,0.249996,0,0);}
.me_c00423{transform:matrix(0.350377,0.003504,-0.002500,0.249988,0,0);-ms-transform:matrix(0.350377,0.003504,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.350377,0.003504,-0.002500,0.249988,0,0);}
.m5f_c00423{transform:matrix(0.355219,0.002131,-0.001500,0.249996,0,0);-ms-transform:matrix(0.355219,0.002131,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.355219,0.002131,-0.001500,0.249996,0,0);}
.m4b_c00423{transform:matrix(0.360340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360340,0.000000,0.000000,0.250000,0,0);}
.m40_c00423{transform:matrix(0.360455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360455,0.000000,0.000000,0.250000,0,0);}
.m44_c00423{transform:matrix(0.361360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361360,0.000000,0.000000,0.250000,0,0);}
.m0_c00423{transform:matrix(0.363102,0.003631,-0.002500,0.249988,0,0);-ms-transform:matrix(0.363102,0.003631,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.363102,0.003631,-0.002500,0.249988,0,0);}
.m49_c00423{transform:matrix(0.365585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365585,0.000000,0.000000,0.250000,0,0);}
.m3b_c00423{transform:matrix(0.368195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368195,0.000000,0.000000,0.250000,0,0);}
.m2b_c00423{transform:matrix(0.370130,-0.003331,0.002250,0.249990,0,0);-ms-transform:matrix(0.370130,-0.003331,0.002250,0.249990,0,0);-webkit-transform:matrix(0.370130,-0.003331,0.002250,0.249990,0,0);}
.m56_c00423{transform:matrix(0.395580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395580,0.000000,0.000000,0.250000,0,0);}
.m3a_c00423{transform:matrix(0.453635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453635,0.000000,0.000000,0.250000,0,0);}
.m25_c00423{transform:matrix(0.477366,-0.004296,0.002250,0.249990,0,0);-ms-transform:matrix(0.477366,-0.004296,0.002250,0.249990,0,0);-webkit-transform:matrix(0.477366,-0.004296,0.002250,0.249990,0,0);}
.m2c_c00423{transform:matrix(0.501500,-0.004513,0.002250,0.249990,0,0);-ms-transform:matrix(0.501500,-0.004513,0.002250,0.249990,0,0);-webkit-transform:matrix(0.501500,-0.004513,0.002250,0.249990,0,0);}
.m54_c00423{transform:matrix(0.718355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.718355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.718355,0.000000,0.000000,0.250000,0,0);}
.m53_c00423{transform:matrix(1.158790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.158790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.158790,0.000000,0.000000,0.250000,0,0);}
.m64_c00423{transform:matrix(4.162700,0.024976,-0.001500,0.249996,0,0);-ms-transform:matrix(4.162700,0.024976,-0.001500,0.249996,0,0);-webkit-transform:matrix(4.162700,0.024976,-0.001500,0.249996,0,0);}
.v0_c00423{vertical-align:0.000000px;}
.ls0_c00423{letter-spacing:0.000000px;}
.sc__c00423{text-shadow:none;}
.sc0_c00423{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__c00423{-webkit-text-stroke:0px transparent;}
.sc0_c00423{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00423{word-spacing:0.000000px;}
.fc0_c00423{color:transparent;}
.fsa_c00423{font-size:18.000000px;}
.fs9_c00423{font-size:78.000000px;}
.fsf_c00423{font-size:78.001404px;}
.fs5_c00423{font-size:84.003402px;}
.fs1_c00423{font-size:84.004200px;}
.fs8_c00423{font-size:90.000000px;}
.fs6_c00423{font-size:90.003645px;}
.fsb_c00423{font-size:96.000000px;}
.fse_c00423{font-size:96.001728px;}
.fs7_c00423{font-size:96.003888px;}
.fsc_c00423{font-size:102.000000px;}
.fs0_c00423{font-size:102.005100px;}
.fs3_c00423{font-size:114.001425px;}
.fsd_c00423{font-size:132.002376px;}
.fs4_c00423{font-size:138.001725px;}
.fs2_c00423{font-size:149.931734px;}
.y0_c00423{bottom:0.000000px;}
.y4d_c00423{bottom:444.063297px;}
.y4c_c00423{bottom:477.684297px;}
.y4b_c00423{bottom:478.072383px;}
.y4a_c00423{bottom:479.020404px;}
.y49_c00423{bottom:480.080832px;}
.y48_c00423{bottom:513.867558px;}
.y47_c00423{bottom:514.248213px;}
.y46_c00423{bottom:514.763400px;}
.y45_c00423{bottom:515.101935px;}
.y44_c00423{bottom:515.359191px;}
.y43_c00423{bottom:515.696466px;}
.y42_c00423{bottom:516.232371px;}
.y41_c00423{bottom:516.629568px;}
.y40_c00423{bottom:516.801000px;}
.y3c_c00423{bottom:694.149000px;}
.y3f_c00423{bottom:695.790000px;}
.y3e_c00423{bottom:698.047500px;}
.y3d_c00423{bottom:712.648500px;}
.y3b_c00423{bottom:730.611000px;}
.y34_c00423{bottom:787.121470px;}
.y35_c00423{bottom:787.121681px;}
.y37_c00423{bottom:787.122210px;}
.y36_c00423{bottom:787.122314px;}
.y3a_c00423{bottom:787.122789px;}
.y38_c00423{bottom:787.122826px;}
.y39_c00423{bottom:787.123400px;}
.y2e_c00423{bottom:822.646686px;}
.y2f_c00423{bottom:822.647409px;}
.y30_c00423{bottom:822.647695px;}
.y31_c00423{bottom:822.648162px;}
.y32_c00423{bottom:822.648508px;}
.y33_c00423{bottom:822.648721px;}
.y26_c00423{bottom:854.821500px;}
.y27_c00423{bottom:857.134738px;}
.y28_c00423{bottom:857.800504px;}
.y29_c00423{bottom:858.488140px;}
.y2a_c00423{bottom:858.794510px;}
.y2b_c00423{bottom:859.895151px;}
.y2c_c00423{bottom:860.663584px;}
.y2d_c00423{bottom:862.319089px;}
.y21_c00423{bottom:909.620625px;}
.y22_c00423{bottom:911.825250px;}
.y23_c00423{bottom:912.861727px;}
.y24_c00423{bottom:913.661115px;}
.y25_c00423{bottom:914.289503px;}
.y1a_c00423{bottom:947.430000px;}
.y1b_c00423{bottom:948.905250px;}
.y1c_c00423{bottom:949.287255px;}
.y1d_c00423{bottom:949.412992px;}
.y1e_c00423{bottom:949.886962px;}
.y1f_c00423{bottom:950.286390px;}
.y20_c00423{bottom:950.735963px;}
.y14_c00423{bottom:970.681500px;}
.y15_c00423{bottom:973.977012px;}
.y16_c00423{bottom:975.434539px;}
.y17_c00423{bottom:977.332716px;}
.y18_c00423{bottom:979.934188px;}
.y19_c00423{bottom:982.649956px;}
.y13_c00423{bottom:1036.057500px;}
.y12_c00423{bottom:1036.770540px;}
.y11_c00423{bottom:1037.377185px;}
.y10_c00423{bottom:1039.238820px;}
.yf_c00423{bottom:1040.195505px;}
.ye_c00423{bottom:1042.031670px;}
.yd_c00423{bottom:1043.573100px;}
.yc_c00423{bottom:1046.903865px;}
.yb_c00423{bottom:1048.636260px;}
.ya_c00423{bottom:1049.704215px;}
.y9_c00423{bottom:1050.033090px;}
.y8_c00423{bottom:1074.033705px;}
.y7_c00423{bottom:1074.538530px;}
.y6_c00423{bottom:1075.029630px;}
.y5_c00423{bottom:1076.036565px;}
.y4_c00423{bottom:1076.417160px;}
.y3_c00423{bottom:1077.450645px;}
.y2_c00423{bottom:1078.514310px;}
.y1_c00423{bottom:1080.813000px;}
.hc_c00423{height:18.000000px;}
.hb_c00423{height:78.000000px;}
.h11_c00423{height:78.001404px;}
.h7_c00423{height:84.003402px;}
.h3_c00423{height:84.004200px;}
.ha_c00423{height:90.000000px;}
.h8_c00423{height:90.003645px;}
.hd_c00423{height:96.000000px;}
.h10_c00423{height:96.001728px;}
.h9_c00423{height:96.003888px;}
.he_c00423{height:102.000000px;}
.h2_c00423{height:102.005100px;}
.h5_c00423{height:114.001425px;}
.hf_c00423{height:132.002376px;}
.h6_c00423{height:138.001725px;}
.h4_c00423{height:149.931734px;}
.h1_c00423{height:1251.000000px;}
.h0_c00423{height:1251.150000px;}
.w0_c00423{width:915.000000px;}
.x0_c00423{left:0.000000px;}
.x1_c00423{left:1.906500px;}
.x9_c00423{left:15.425295px;}
.x36_c00423{left:38.610000px;}
.x24_c00423{left:41.791500px;}
.x19_c00423{left:44.137500px;}
.x1f_c00423{left:54.751807px;}
.x37_c00423{left:62.640000px;}
.xa_c00423{left:66.265200px;}
.x41_c00423{left:98.280000px;}
.x4c_c00423{left:106.263000px;}
.x4d_c00423{left:134.835000px;}
.x38_c00423{left:142.560000px;}
.xb_c00423{left:148.745625px;}
.x39_c00423{left:178.740000px;}
.x42_c00423{left:198.720000px;}
.x4e_c00423{left:201.034500px;}
.x3a_c00423{left:208.170000px;}
.x2_c00423{left:231.775500px;}
.x54_c00423{left:279.826935px;}
.x43_c00423{left:287.820000px;}
.x4f_c00423{left:290.352000px;}
.x25_c00423{left:298.818000px;}
.x13_c00423{left:305.530500px;}
.xc_c00423{left:307.354680px;}
.x3b_c00423{left:319.950000px;}
.x20_c00423{left:330.372675px;}
.x3_c00423{left:338.142000px;}
.x1a_c00423{left:339.187500px;}
.x44_c00423{left:344.250000px;}
.x50_c00423{left:346.564500px;}
.x55_c00423{left:355.561299px;}
.x31_c00423{left:363.701323px;}
.x26_c00423{left:372.792000px;}
.x32_c00423{left:376.392349px;}
.xd_c00423{left:380.789610px;}
.x2b_c00423{left:387.463047px;}
.x51_c00423{left:389.440500px;}
.x3c_c00423{left:396.090000px;}
.x45_c00423{left:397.710000px;}
.x14_c00423{left:405.294636px;}
.x1b_c00423{left:415.588500px;}
.x56_c00423{left:423.311550px;}
.x46_c00423{left:429.840000px;}
.x4_c00423{left:441.490500px;}
.x52_c00423{left:445.863000px;}
.x15_c00423{left:449.417969px;}
.x3d_c00423{left:451.710000px;}
.x21_c00423{left:459.966233px;}
.x2c_c00423{left:461.716054px;}
.xe_c00423{left:468.246495px;}
.x5_c00423{left:479.550000px;}
.x27_c00423{left:483.237000px;}
.x47_c00423{left:494.370000px;}
.x3e_c00423{left:497.340000px;}
.x2d_c00423{left:504.918051px;}
.x16_c00423{left:506.880948px;}
.x33_c00423{left:508.697055px;}
.xf_c00423{left:513.809985px;}
.x2e_c00423{left:528.138427px;}
.x3f_c00423{left:530.010000px;}
.x53_c00423{left:531.727500px;}
.x1c_c00423{left:535.530000px;}
.x2f_c00423{left:555.679155px;}
.x22_c00423{left:559.842232px;}
.x40_c00423{left:562.680000px;}
.x6_c00423{left:580.243500px;}
.x17_c00423{left:585.634616px;}
.x34_c00423{left:595.101048px;}
.x48_c00423{left:597.510000px;}
.x10_c00423{left:602.463735px;}
.x28_c00423{left:605.530500px;}
.x1d_c00423{left:615.415500px;}
.x30_c00423{left:628.042014px;}
.x7_c00423{left:629.353500px;}
.x11_c00423{left:631.325055px;}
.x23_c00423{left:638.418555px;}
.x49_c00423{left:643.410000px;}
.x12_c00423{left:665.275320px;}
.x18_c00423{left:667.848320px;}
.x4b_c00423{left:671.220000px;}
.x8_c00423{left:679.836000px;}
.x29_c00423{left:690.912000px;}
.x1e_c00423{left:705.330000px;}
.x4a_c00423{left:714.150000px;}
.x35_c00423{left:716.876416px;}
.x2a_c00423{left:874.857000px;}
@media print{
.v0_c00423{vertical-align:0.000000pt;}
.ls0_c00423{letter-spacing:0.000000pt;}
.ws0_c00423{word-spacing:0.000000pt;}
.fsa_c00423{font-size:16.000000pt;}
.fs9_c00423{font-size:69.333333pt;}
.fsf_c00423{font-size:69.334581pt;}
.fs5_c00423{font-size:74.669691pt;}
.fs1_c00423{font-size:74.670400pt;}
.fs8_c00423{font-size:80.000000pt;}
.fs6_c00423{font-size:80.003240pt;}
.fsb_c00423{font-size:85.333333pt;}
.fse_c00423{font-size:85.334869pt;}
.fs7_c00423{font-size:85.336789pt;}
.fsc_c00423{font-size:90.666667pt;}
.fs0_c00423{font-size:90.671200pt;}
.fs3_c00423{font-size:101.334600pt;}
.fsd_c00423{font-size:117.335445pt;}
.fs4_c00423{font-size:122.668200pt;}
.fs2_c00423{font-size:133.272653pt;}
.y0_c00423{bottom:0.000000pt;}
.y4d_c00423{bottom:394.722931pt;}
.y4c_c00423{bottom:424.608264pt;}
.y4b_c00423{bottom:424.953229pt;}
.y4a_c00423{bottom:425.795915pt;}
.y49_c00423{bottom:426.738517pt;}
.y48_c00423{bottom:456.771163pt;}
.y47_c00423{bottom:457.109523pt;}
.y46_c00423{bottom:457.567467pt;}
.y45_c00423{bottom:457.868387pt;}
.y44_c00423{bottom:458.097059pt;}
.y43_c00423{bottom:458.396859pt;}
.y42_c00423{bottom:458.873219pt;}
.y41_c00423{bottom:459.226283pt;}
.y40_c00423{bottom:459.378667pt;}
.y3c_c00423{bottom:617.021333pt;}
.y3f_c00423{bottom:618.480000pt;}
.y3e_c00423{bottom:620.486667pt;}
.y3d_c00423{bottom:633.465333pt;}
.y3b_c00423{bottom:649.432000pt;}
.y34_c00423{bottom:699.663529pt;}
.y35_c00423{bottom:699.663716pt;}
.y37_c00423{bottom:699.664187pt;}
.y36_c00423{bottom:699.664279pt;}
.y3a_c00423{bottom:699.664701pt;}
.y38_c00423{bottom:699.664735pt;}
.y39_c00423{bottom:699.665244pt;}
.y2e_c00423{bottom:731.241499pt;}
.y2f_c00423{bottom:731.242141pt;}
.y30_c00423{bottom:731.242396pt;}
.y31_c00423{bottom:731.242811pt;}
.y32_c00423{bottom:731.243119pt;}
.y33_c00423{bottom:731.243308pt;}
.y26_c00423{bottom:759.841333pt;}
.y27_c00423{bottom:761.897545pt;}
.y28_c00423{bottom:762.489337pt;}
.y29_c00423{bottom:763.100569pt;}
.y2a_c00423{bottom:763.372897pt;}
.y2b_c00423{bottom:764.351245pt;}
.y2c_c00423{bottom:765.034297pt;}
.y2d_c00423{bottom:766.505857pt;}
.y21_c00423{bottom:808.551667pt;}
.y22_c00423{bottom:810.511333pt;}
.y23_c00423{bottom:811.432647pt;}
.y24_c00423{bottom:812.143213pt;}
.y25_c00423{bottom:812.701780pt;}
.y1a_c00423{bottom:842.160000pt;}
.y1b_c00423{bottom:843.471333pt;}
.y1c_c00423{bottom:843.810893pt;}
.y1d_c00423{bottom:843.922660pt;}
.y1e_c00423{bottom:844.343967pt;}
.y1f_c00423{bottom:844.699013pt;}
.y20_c00423{bottom:845.098633pt;}
.y14_c00423{bottom:862.828000pt;}
.y15_c00423{bottom:865.757344pt;}
.y16_c00423{bottom:867.052924pt;}
.y17_c00423{bottom:868.740192pt;}
.y18_c00423{bottom:871.052612pt;}
.y19_c00423{bottom:873.466628pt;}
.y13_c00423{bottom:920.940000pt;}
.y12_c00423{bottom:921.573813pt;}
.y11_c00423{bottom:922.113053pt;}
.y10_c00423{bottom:923.767840pt;}
.yf_c00423{bottom:924.618227pt;}
.ye_c00423{bottom:926.250373pt;}
.yd_c00423{bottom:927.620533pt;}
.yc_c00423{bottom:930.581213pt;}
.yb_c00423{bottom:932.121120pt;}
.ya_c00423{bottom:933.070413pt;}
.y9_c00423{bottom:933.362747pt;}
.y8_c00423{bottom:954.696627pt;}
.y7_c00423{bottom:955.145360pt;}
.y6_c00423{bottom:955.581893pt;}
.y5_c00423{bottom:956.476947pt;}
.y4_c00423{bottom:956.815253pt;}
.y3_c00423{bottom:957.733907pt;}
.y2_c00423{bottom:958.679387pt;}
.y1_c00423{bottom:960.722667pt;}
.hc_c00423{height:16.000000pt;}
.hb_c00423{height:69.333333pt;}
.h11_c00423{height:69.334581pt;}
.h7_c00423{height:74.669691pt;}
.h3_c00423{height:74.670400pt;}
.ha_c00423{height:80.000000pt;}
.h8_c00423{height:80.003240pt;}
.hd_c00423{height:85.333333pt;}
.h10_c00423{height:85.334869pt;}
.h9_c00423{height:85.336789pt;}
.he_c00423{height:90.666667pt;}
.h2_c00423{height:90.671200pt;}
.h5_c00423{height:101.334600pt;}
.hf_c00423{height:117.335445pt;}
.h6_c00423{height:122.668200pt;}
.h4_c00423{height:133.272653pt;}
.h1_c00423{height:1112.000000pt;}
.h0_c00423{height:1112.133333pt;}
.w0_c00423{width:813.333333pt;}
.x0_c00423{left:0.000000pt;}
.x1_c00423{left:1.694667pt;}
.x9_c00423{left:13.711373pt;}
.x36_c00423{left:34.320000pt;}
.x24_c00423{left:37.148000pt;}
.x19_c00423{left:39.233333pt;}
.x1f_c00423{left:48.668273pt;}
.x37_c00423{left:55.680000pt;}
.xa_c00423{left:58.902400pt;}
.x41_c00423{left:87.360000pt;}
.x4c_c00423{left:94.456000pt;}
.x4d_c00423{left:119.853333pt;}
.x38_c00423{left:126.720000pt;}
.xb_c00423{left:132.218333pt;}
.x39_c00423{left:158.880000pt;}
.x42_c00423{left:176.640000pt;}
.x4e_c00423{left:178.697333pt;}
.x3a_c00423{left:185.040000pt;}
.x2_c00423{left:206.022667pt;}
.x54_c00423{left:248.735053pt;}
.x43_c00423{left:255.840000pt;}
.x4f_c00423{left:258.090667pt;}
.x25_c00423{left:265.616000pt;}
.x13_c00423{left:271.582667pt;}
.xc_c00423{left:273.204160pt;}
.x3b_c00423{left:284.400000pt;}
.x20_c00423{left:293.664600pt;}
.x3_c00423{left:300.570667pt;}
.x1a_c00423{left:301.500000pt;}
.x44_c00423{left:306.000000pt;}
.x50_c00423{left:308.057333pt;}
.x55_c00423{left:316.054488pt;}
.x31_c00423{left:323.290065pt;}
.x26_c00423{left:331.370667pt;}
.x32_c00423{left:334.570977pt;}
.xd_c00423{left:338.479653pt;}
.x2b_c00423{left:344.411597pt;}
.x51_c00423{left:346.169333pt;}
.x3c_c00423{left:352.080000pt;}
.x45_c00423{left:353.520000pt;}
.x14_c00423{left:360.261899pt;}
.x1b_c00423{left:369.412000pt;}
.x56_c00423{left:376.276933pt;}
.x46_c00423{left:382.080000pt;}
.x4_c00423{left:392.436000pt;}
.x52_c00423{left:396.322667pt;}
.x15_c00423{left:399.482639pt;}
.x3d_c00423{left:401.520000pt;}
.x21_c00423{left:408.858873pt;}
.x2c_c00423{left:410.414271pt;}
.xe_c00423{left:416.219107pt;}
.x5_c00423{left:426.266667pt;}
.x27_c00423{left:429.544000pt;}
.x47_c00423{left:439.440000pt;}
.x3e_c00423{left:442.080000pt;}
.x2d_c00423{left:448.816045pt;}
.x16_c00423{left:450.560843pt;}
.x33_c00423{left:452.175160pt;}
.xf_c00423{left:456.719987pt;}
.x2e_c00423{left:469.456380pt;}
.x3f_c00423{left:471.120000pt;}
.x53_c00423{left:472.646667pt;}
.x1c_c00423{left:476.026667pt;}
.x2f_c00423{left:493.937027pt;}
.x22_c00423{left:497.637540pt;}
.x40_c00423{left:500.160000pt;}
.x6_c00423{left:515.772000pt;}
.x17_c00423{left:520.564103pt;}
.x34_c00423{left:528.978709pt;}
.x48_c00423{left:531.120000pt;}
.x10_c00423{left:535.523320pt;}
.x28_c00423{left:538.249333pt;}
.x1d_c00423{left:547.036000pt;}
.x30_c00423{left:558.259568pt;}
.x7_c00423{left:559.425333pt;}
.x11_c00423{left:561.177827pt;}
.x23_c00423{left:567.483160pt;}
.x49_c00423{left:571.920000pt;}
.x12_c00423{left:591.355840pt;}
.x18_c00423{left:593.642951pt;}
.x4b_c00423{left:596.640000pt;}
.x8_c00423{left:604.298667pt;}
.x29_c00423{left:614.144000pt;}
.x1e_c00423{left:626.960000pt;}
.x4a_c00423{left:634.800000pt;}
.x35_c00423{left:637.223481pt;}
.x2a_c00423{left:777.650667pt;}
}





/* 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_c00424 {
    display:none;
  }
  .loading-indicator_c00424.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00424 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_c00424 { 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_c00424" -> "#page-container .classname_c00424")
 */
.pf_c00424 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00424 { /* 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_c00424.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00424 { /* 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_c00424 { /* 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_c00424 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00424 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00424 {overflow:visible;}
  }
}
.c_c00424 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00424 { /* 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_c00424:after { /* webkit #35443 */
  content: '';
}
.t_c00424:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00424 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 */
}
.__c00424 { /* 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_c00424 { /* info for Javascript */
  display:none;
}
.l_c00424 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00424 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00424 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00424: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_c00424 {
    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_c00424.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00424.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_c00424 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00424{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00424;src:url('chunks/assets/font_dbd529e162d5851c7bfb6d27.woff2')format("woff");}.ff1_c00424{font-family:ff1_c00424;line-height:1.000000;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;}
.m56_c00424{transform:matrix(0.047730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.047730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.047730,0.000000,0.000000,0.250000,0,0);}
.m3d_c00424{transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162500,0.000000,0.000000,0.250000,0,0);}
.ma_c00424{transform:matrix(0.188860,-0.001322,0.001750,0.249994,0,0);-ms-transform:matrix(0.188860,-0.001322,0.001750,0.249994,0,0);-webkit-transform:matrix(0.188860,-0.001322,0.001750,0.249994,0,0);}
.m0_c00424{transform:matrix(0.194330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194330,0.000000,0.000000,0.250000,0,0);}
.m26_c00424{transform:matrix(0.197430,-0.001382,0.001750,0.249994,0,0);-ms-transform:matrix(0.197430,-0.001382,0.001750,0.249994,0,0);-webkit-transform:matrix(0.197430,-0.001382,0.001750,0.249994,0,0);}
.m2f_c00424{transform:matrix(0.207395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207395,0.000000,0.000000,0.250000,0,0);}
.m49_c00424{transform:matrix(0.207535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207535,0.000000,0.000000,0.250000,0,0);}
.m3_c00424{transform:matrix(0.208010,-0.001456,0.001750,0.249994,0,0);-ms-transform:matrix(0.208010,-0.001456,0.001750,0.249994,0,0);-webkit-transform:matrix(0.208010,-0.001456,0.001750,0.249994,0,0);}
.m2b_c00424{transform:matrix(0.209300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209300,0.000000,0.000000,0.250000,0,0);}
.m8_c00424{transform:matrix(0.211210,-0.001478,0.001750,0.249994,0,0);-ms-transform:matrix(0.211210,-0.001478,0.001750,0.249994,0,0);-webkit-transform:matrix(0.211210,-0.001478,0.001750,0.249994,0,0);}
.m27_c00424{transform:matrix(0.213865,-0.001497,0.001750,0.249994,0,0);-ms-transform:matrix(0.213865,-0.001497,0.001750,0.249994,0,0);-webkit-transform:matrix(0.213865,-0.001497,0.001750,0.249994,0,0);}
.m24_c00424{transform:matrix(0.215680,-0.001510,0.001750,0.249994,0,0);-ms-transform:matrix(0.215680,-0.001510,0.001750,0.249994,0,0);-webkit-transform:matrix(0.215680,-0.001510,0.001750,0.249994,0,0);}
.m31_c00424{transform:matrix(0.216790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216790,0.000000,0.000000,0.250000,0,0);}
.mf_c00424{transform:matrix(0.221200,-0.001548,0.001750,0.249994,0,0);-ms-transform:matrix(0.221200,-0.001548,0.001750,0.249994,0,0);-webkit-transform:matrix(0.221200,-0.001548,0.001750,0.249994,0,0);}
.m34_c00424{transform:matrix(0.221880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221880,0.000000,0.000000,0.250000,0,0);}
.m5_c00424{transform:matrix(0.222210,-0.001555,0.001750,0.249994,0,0);-ms-transform:matrix(0.222210,-0.001555,0.001750,0.249994,0,0);-webkit-transform:matrix(0.222210,-0.001555,0.001750,0.249994,0,0);}
.m9_c00424{transform:matrix(0.222735,-0.001559,0.001750,0.249994,0,0);-ms-transform:matrix(0.222735,-0.001559,0.001750,0.249994,0,0);-webkit-transform:matrix(0.222735,-0.001559,0.001750,0.249994,0,0);}
.m1_c00424{transform:matrix(0.225309,-0.001577,0.001750,0.249994,0,0);-ms-transform:matrix(0.225309,-0.001577,0.001750,0.249994,0,0);-webkit-transform:matrix(0.225309,-0.001577,0.001750,0.249994,0,0);}
.m2d_c00424{transform:matrix(0.225315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225315,0.000000,0.000000,0.250000,0,0);}
.m16_c00424{transform:matrix(0.226999,-0.001589,0.001750,0.249994,0,0);-ms-transform:matrix(0.226999,-0.001589,0.001750,0.249994,0,0);-webkit-transform:matrix(0.226999,-0.001589,0.001750,0.249994,0,0);}
.mb_c00424{transform:matrix(0.227569,-0.001593,0.001750,0.249994,0,0);-ms-transform:matrix(0.227569,-0.001593,0.001750,0.249994,0,0);-webkit-transform:matrix(0.227569,-0.001593,0.001750,0.249994,0,0);}
.m2a_c00424{transform:matrix(0.228355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228355,0.000000,0.000000,0.250000,0,0);}
.m32_c00424{transform:matrix(0.228630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228630,0.000000,0.000000,0.250000,0,0);}
.m4b_c00424{transform:matrix(0.230340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230340,0.000000,0.000000,0.250000,0,0);}
.m20_c00424{transform:matrix(0.232589,-0.001628,0.001750,0.249994,0,0);-ms-transform:matrix(0.232589,-0.001628,0.001750,0.249994,0,0);-webkit-transform:matrix(0.232589,-0.001628,0.001750,0.249994,0,0);}
.m25_c00424{transform:matrix(0.234354,-0.001640,0.001750,0.249994,0,0);-ms-transform:matrix(0.234354,-0.001640,0.001750,0.249994,0,0);-webkit-transform:matrix(0.234354,-0.001640,0.001750,0.249994,0,0);}
.m48_c00424{transform:matrix(0.234360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234360,0.000000,0.000000,0.250000,0,0);}
.m44_c00424{transform:matrix(0.235080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235080,0.000000,0.000000,0.250000,0,0);}
.m29_c00424{transform:matrix(0.236805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236805,0.000000,0.000000,0.250000,0,0);}
.m28_c00424{transform:matrix(0.238720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238720,0.000000,0.000000,0.250000,0,0);}
.m2_c00424{transform:matrix(0.242074,-0.001695,0.001750,0.249994,0,0);-ms-transform:matrix(0.242074,-0.001695,0.001750,0.249994,0,0);-webkit-transform:matrix(0.242074,-0.001695,0.001750,0.249994,0,0);}
.md_c00424{transform:matrix(0.242079,-0.001695,0.001750,0.249994,0,0);-ms-transform:matrix(0.242079,-0.001695,0.001750,0.249994,0,0);-webkit-transform:matrix(0.242079,-0.001695,0.001750,0.249994,0,0);}
.m46_c00424{transform:matrix(0.242545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242545,0.000000,0.000000,0.250000,0,0);}
.m13_c00424{transform:matrix(0.242749,-0.001699,0.001750,0.249994,0,0);-ms-transform:matrix(0.242749,-0.001699,0.001750,0.249994,0,0);-webkit-transform:matrix(0.242749,-0.001699,0.001750,0.249994,0,0);}
.m1b_c00424{transform:matrix(0.243489,-0.001704,0.001750,0.249994,0,0);-ms-transform:matrix(0.243489,-0.001704,0.001750,0.249994,0,0);-webkit-transform:matrix(0.243489,-0.001704,0.001750,0.249994,0,0);}
.m41_c00424{transform:matrix(0.243495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243495,0.000000,0.000000,0.250000,0,0);}
.m7_c00424{transform:matrix(0.243934,-0.001708,0.001750,0.249994,0,0);-ms-transform:matrix(0.243934,-0.001708,0.001750,0.249994,0,0);-webkit-transform:matrix(0.243934,-0.001708,0.001750,0.249994,0,0);}
.m2e_c00424{transform:matrix(0.244600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244600,0.000000,0.000000,0.250000,0,0);}
.m37_c00424{transform:matrix(0.244770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244770,0.000000,0.000000,0.250000,0,0);}
.m52_c00424{transform:matrix(0.247345,-0.002226,0.002250,0.249990,0,0);-ms-transform:matrix(0.247345,-0.002226,0.002250,0.249990,0,0);-webkit-transform:matrix(0.247345,-0.002226,0.002250,0.249990,0,0);}
.m3c_c00424{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m4_c00424{transform:matrix(0.252384,-0.001767,0.001750,0.249994,0,0);-ms-transform:matrix(0.252384,-0.001767,0.001750,0.249994,0,0);-webkit-transform:matrix(0.252384,-0.001767,0.001750,0.249994,0,0);}
.m22_c00424{transform:matrix(0.252584,-0.001768,0.001750,0.249994,0,0);-ms-transform:matrix(0.252584,-0.001768,0.001750,0.249994,0,0);-webkit-transform:matrix(0.252584,-0.001768,0.001750,0.249994,0,0);}
.m6_c00424{transform:matrix(0.252964,-0.001771,0.001750,0.249994,0,0);-ms-transform:matrix(0.252964,-0.001771,0.001750,0.249994,0,0);-webkit-transform:matrix(0.252964,-0.001771,0.001750,0.249994,0,0);}
.m18_c00424{transform:matrix(0.253779,-0.001776,0.001750,0.249994,0,0);-ms-transform:matrix(0.253779,-0.001776,0.001750,0.249994,0,0);-webkit-transform:matrix(0.253779,-0.001776,0.001750,0.249994,0,0);}
.m2c_c00424{transform:matrix(0.254060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254060,0.000000,0.000000,0.250000,0,0);}
.mc_c00424{transform:matrix(0.254959,-0.001785,0.001750,0.249994,0,0);-ms-transform:matrix(0.254959,-0.001785,0.001750,0.249994,0,0);-webkit-transform:matrix(0.254959,-0.001785,0.001750,0.249994,0,0);}
.m39_c00424{transform:matrix(0.255210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255210,0.000000,0.000000,0.250000,0,0);}
.m19_c00424{transform:matrix(0.255574,-0.001789,0.001750,0.249994,0,0);-ms-transform:matrix(0.255574,-0.001789,0.001750,0.249994,0,0);-webkit-transform:matrix(0.255574,-0.001789,0.001750,0.249994,0,0);}
.m45_c00424{transform:matrix(0.255990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255990,0.000000,0.000000,0.250000,0,0);}
.m38_c00424{transform:matrix(0.256610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256610,0.000000,0.000000,0.250000,0,0);}
.m12_c00424{transform:matrix(0.258309,-0.001808,0.001750,0.249994,0,0);-ms-transform:matrix(0.258309,-0.001808,0.001750,0.249994,0,0);-webkit-transform:matrix(0.258309,-0.001808,0.001750,0.249994,0,0);}
.m35_c00424{transform:matrix(0.258730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258730,0.000000,0.000000,0.250000,0,0);}
.m17_c00424{transform:matrix(0.258974,-0.001813,0.001750,0.249994,0,0);-ms-transform:matrix(0.258974,-0.001813,0.001750,0.249994,0,0);-webkit-transform:matrix(0.258974,-0.001813,0.001750,0.249994,0,0);}
.m43_c00424{transform:matrix(0.260380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260380,0.000000,0.000000,0.250000,0,0);}
.me_c00424{transform:matrix(0.260914,-0.001826,0.001750,0.249994,0,0);-ms-transform:matrix(0.260914,-0.001826,0.001750,0.249994,0,0);-webkit-transform:matrix(0.260914,-0.001826,0.001750,0.249994,0,0);}
.m53_c00424{transform:matrix(0.261334,-0.002352,0.002250,0.249990,0,0);-ms-transform:matrix(0.261334,-0.002352,0.002250,0.249990,0,0);-webkit-transform:matrix(0.261334,-0.002352,0.002250,0.249990,0,0);}
.m1f_c00424{transform:matrix(0.261939,-0.001834,0.001750,0.249994,0,0);-ms-transform:matrix(0.261939,-0.001834,0.001750,0.249994,0,0);-webkit-transform:matrix(0.261939,-0.001834,0.001750,0.249994,0,0);}
.m11_c00424{transform:matrix(0.262544,-0.001838,0.001750,0.249994,0,0);-ms-transform:matrix(0.262544,-0.001838,0.001750,0.249994,0,0);-webkit-transform:matrix(0.262544,-0.001838,0.001750,0.249994,0,0);}
.m21_c00424{transform:matrix(0.262779,-0.001839,0.001750,0.249994,0,0);-ms-transform:matrix(0.262779,-0.001839,0.001750,0.249994,0,0);-webkit-transform:matrix(0.262779,-0.001839,0.001750,0.249994,0,0);}
.m14_c00424{transform:matrix(0.262974,-0.001841,0.001750,0.249994,0,0);-ms-transform:matrix(0.262974,-0.001841,0.001750,0.249994,0,0);-webkit-transform:matrix(0.262974,-0.001841,0.001750,0.249994,0,0);}
.m42_c00424{transform:matrix(0.263260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263260,0.000000,0.000000,0.250000,0,0);}
.m1e_c00424{transform:matrix(0.263754,-0.001846,0.001750,0.249994,0,0);-ms-transform:matrix(0.263754,-0.001846,0.001750,0.249994,0,0);-webkit-transform:matrix(0.263754,-0.001846,0.001750,0.249994,0,0);}
.m36_c00424{transform:matrix(0.263935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263935,0.000000,0.000000,0.250000,0,0);}
.m3f_c00424{transform:matrix(0.264105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264105,0.000000,0.000000,0.250000,0,0);}
.m30_c00424{transform:matrix(0.264285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264285,0.000000,0.000000,0.250000,0,0);}
.m4c_c00424{transform:matrix(0.264475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264475,0.000000,0.000000,0.250000,0,0);}
.m50_c00424{transform:matrix(0.264509,-0.002381,0.002250,0.249990,0,0);-ms-transform:matrix(0.264509,-0.002381,0.002250,0.249990,0,0);-webkit-transform:matrix(0.264509,-0.002381,0.002250,0.249990,0,0);}
.m15_c00424{transform:matrix(0.267773,-0.001874,0.001750,0.249994,0,0);-ms-transform:matrix(0.267773,-0.001874,0.001750,0.249994,0,0);-webkit-transform:matrix(0.267773,-0.001874,0.001750,0.249994,0,0);}
.m1a_c00424{transform:matrix(0.270123,-0.001891,0.001750,0.249994,0,0);-ms-transform:matrix(0.270123,-0.001891,0.001750,0.249994,0,0);-webkit-transform:matrix(0.270123,-0.001891,0.001750,0.249994,0,0);}
.m3a_c00424{transform:matrix(0.271605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271605,0.000000,0.000000,0.250000,0,0);}
.m3e_c00424{transform:matrix(0.271680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271680,0.000000,0.000000,0.250000,0,0);}
.m1d_c00424{transform:matrix(0.272048,-0.001904,0.001750,0.249994,0,0);-ms-transform:matrix(0.272048,-0.001904,0.001750,0.249994,0,0);-webkit-transform:matrix(0.272048,-0.001904,0.001750,0.249994,0,0);}
.m23_c00424{transform:matrix(0.272513,-0.001908,0.001750,0.249994,0,0);-ms-transform:matrix(0.272513,-0.001908,0.001750,0.249994,0,0);-webkit-transform:matrix(0.272513,-0.001908,0.001750,0.249994,0,0);}
.m40_c00424{transform:matrix(0.272860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272860,0.000000,0.000000,0.250000,0,0);}
.m1c_c00424{transform:matrix(0.274633,-0.001922,0.001750,0.249994,0,0);-ms-transform:matrix(0.274633,-0.001922,0.001750,0.249994,0,0);-webkit-transform:matrix(0.274633,-0.001922,0.001750,0.249994,0,0);}
.m3b_c00424{transform:matrix(0.275990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275990,0.000000,0.000000,0.250000,0,0);}
.m33_c00424{transform:matrix(0.276605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276605,0.000000,0.000000,0.250000,0,0);}
.m10_c00424{transform:matrix(0.277993,-0.001946,0.001750,0.249994,0,0);-ms-transform:matrix(0.277993,-0.001946,0.001750,0.249994,0,0);-webkit-transform:matrix(0.277993,-0.001946,0.001750,0.249994,0,0);}
.m47_c00424{transform:matrix(0.279040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279040,0.000000,0.000000,0.250000,0,0);}
.m4d_c00424{transform:matrix(0.279869,-0.002519,0.002250,0.249990,0,0);-ms-transform:matrix(0.279869,-0.002519,0.002250,0.249990,0,0);-webkit-transform:matrix(0.279869,-0.002519,0.002250,0.249990,0,0);}
.m54_c00424{transform:matrix(0.281209,-0.002531,0.002250,0.249990,0,0);-ms-transform:matrix(0.281209,-0.002531,0.002250,0.249990,0,0);-webkit-transform:matrix(0.281209,-0.002531,0.002250,0.249990,0,0);}
.m4f_c00424{transform:matrix(0.281444,-0.002533,0.002250,0.249990,0,0);-ms-transform:matrix(0.281444,-0.002533,0.002250,0.249990,0,0);-webkit-transform:matrix(0.281444,-0.002533,0.002250,0.249990,0,0);}
.m51_c00424{transform:matrix(0.284808,-0.002563,0.002250,0.249990,0,0);-ms-transform:matrix(0.284808,-0.002563,0.002250,0.249990,0,0);-webkit-transform:matrix(0.284808,-0.002563,0.002250,0.249990,0,0);}
.m4a_c00424{transform:matrix(0.286310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286310,0.000000,0.000000,0.250000,0,0);}
.m4e_c00424{transform:matrix(0.294173,-0.002648,0.002250,0.249990,0,0);-ms-transform:matrix(0.294173,-0.002648,0.002250,0.249990,0,0);-webkit-transform:matrix(0.294173,-0.002648,0.002250,0.249990,0,0);}
.m55_c00424{transform:matrix(0.295908,-0.002663,0.002250,0.249990,0,0);-ms-transform:matrix(0.295908,-0.002663,0.002250,0.249990,0,0);-webkit-transform:matrix(0.295908,-0.002663,0.002250,0.249990,0,0);}
.m57_c00424{transform:matrix(0.422735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422735,0.000000,0.000000,0.250000,0,0);}
.m58_c00424{transform:matrix(0.840065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.840065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.840065,0.000000,0.000000,0.250000,0,0);}
.v0_c00424{vertical-align:0.000000px;}
.ls0_c00424{letter-spacing:0.000000px;}
.sc__c00424{text-shadow:none;}
.sc0_c00424{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__c00424{-webkit-text-stroke:0px transparent;}
.sc0_c00424{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00424{word-spacing:0.000000px;}
.fc0_c00424{color:transparent;}
.fs7_c00424{font-size:24.000000px;}
.fs0_c00424{font-size:42.000000px;}
.fs6_c00424{font-size:66.002673px;}
.fs5_c00424{font-size:72.000000px;}
.fs2_c00424{font-size:72.001764px;}
.fs4_c00424{font-size:78.000000px;}
.fs1_c00424{font-size:78.001911px;}
.fs3_c00424{font-size:84.002058px;}
.y0_c00424{bottom:0.000000px;}
.y3d_c00424{bottom:464.400000px;}
.y34_c00424{bottom:862.381500px;}
.y35_c00424{bottom:863.156940px;}
.y36_c00424{bottom:864.158167px;}
.y37_c00424{bottom:864.741057px;}
.y38_c00424{bottom:864.935754px;}
.y39_c00424{bottom:865.642830px;}
.y3a_c00424{bottom:865.934200px;}
.y3b_c00424{bottom:866.345073px;}
.y3c_c00424{bottom:866.923413px;}
.y33_c00424{bottom:901.842000px;}
.y2d_c00424{bottom:932.043000px;}
.y2e_c00424{bottom:932.953500px;}
.y2f_c00424{bottom:933.741000px;}
.y30_c00424{bottom:934.816500px;}
.y31_c00424{bottom:935.341500px;}
.y32_c00424{bottom:936.126000px;}
.y2c_c00424{bottom:971.272500px;}
.y2b_c00424{bottom:1008.537000px;}
.y27_c00424{bottom:1039.772229px;}
.y28_c00424{bottom:1040.988589px;}
.y29_c00424{bottom:1042.865088px;}
.y2a_c00424{bottom:1043.492287px;}
.y1d_c00424{bottom:1078.862117px;}
.y26_c00424{bottom:1078.862382px;}
.y1c_c00424{bottom:1078.862607px;}
.y22_c00424{bottom:1078.862624px;}
.y20_c00424{bottom:1078.862775px;}
.y1e_c00424{bottom:1078.862796px;}
.y1f_c00424{bottom:1078.862846px;}
.y24_c00424{bottom:1078.862903px;}
.y23_c00424{bottom:1078.862943px;}
.y25_c00424{bottom:1078.862952px;}
.y21_c00424{bottom:1078.863084px;}
.yf_c00424{bottom:1114.288605px;}
.y10_c00424{bottom:1114.457449px;}
.y11_c00424{bottom:1114.834822px;}
.y12_c00424{bottom:1114.995275px;}
.y13_c00424{bottom:1115.544015px;}
.y14_c00424{bottom:1115.872670px;}
.y15_c00424{bottom:1115.984561px;}
.y16_c00424{bottom:1116.214350px;}
.y17_c00424{bottom:1116.591723px;}
.y18_c00424{bottom:1116.876408px;}
.y19_c00424{bottom:1117.039235px;}
.y1a_c00424{bottom:1117.374792px;}
.y1b_c00424{bottom:1117.650842px;}
.y2_c00424{bottom:1149.120000px;}
.y3_c00424{bottom:1149.343104px;}
.y4_c00424{bottom:1149.806354px;}
.y5_c00424{bottom:1150.038897px;}
.y6_c00424{bottom:1150.730511px;}
.y7_c00424{bottom:1151.033079px;}
.y8_c00424{bottom:1151.269308px;}
.y9_c00424{bottom:1151.898647px;}
.ya_c00424{bottom:1152.507174px;}
.yb_c00424{bottom:1152.737607px;}
.yc_c00424{bottom:1153.058875px;}
.yd_c00424{bottom:1153.282022px;}
.ye_c00424{bottom:1153.514502px;}
.y1_c00424{bottom:1243.213500px;}
.h9_c00424{height:24.000000px;}
.h2_c00424{height:42.000000px;}
.h8_c00424{height:66.002673px;}
.h7_c00424{height:72.000000px;}
.h4_c00424{height:72.001764px;}
.h6_c00424{height:78.000000px;}
.h3_c00424{height:78.001911px;}
.h5_c00424{height:84.002058px;}
.h1_c00424{height:1251.000000px;}
.h0_c00424{height:1251.150000px;}
.w0_c00424{width:915.000000px;}
.x0_c00424{left:0.000000px;}
.x1_c00424{left:137.758500px;}
.x19_c00424{left:139.051341px;}
.x2_c00424{left:169.630500px;}
.xe_c00424{left:171.781293px;}
.x24_c00424{left:203.317095px;}
.x35_c00424{left:214.579500px;}
.x1a_c00424{left:224.914052px;}
.x3d_c00424{left:226.144500px;}
.x3_c00424{left:235.809000px;}
.x27_c00424{left:245.970000px;}
.xf_c00424{left:247.121343px;}
.x1b_c00424{left:257.584148px;}
.x4_c00424{left:269.029500px;}
.x10_c00424{left:279.257795px;}
.x28_c00424{left:280.260000px;}
.x1c_c00424{left:299.164685px;}
.x25_c00424{left:302.094300px;}
.x26_c00424{left:335.120028px;}
.x29_c00424{left:336.150000px;}
.x3e_c00424{left:337.392000px;}
.x5_c00424{left:367.831500px;}
.x36_c00424{left:369.837000px;}
.x1d_c00424{left:379.087101px;}
.x2f_c00424{left:380.430000px;}
.x11_c00424{left:389.150838px;}
.x2a_c00424{left:390.690000px;}
.x3f_c00424{left:402.157500px;}
.x6_c00424{left:411.055500px;}
.x37_c00424{left:413.577000px;}
.x2b_c00424{left:423.630000px;}
.x7_c00424{left:444.802500px;}
.x12_c00424{left:454.745251px;}
.x30_c00424{left:456.030000px;}
.x13_c00424{left:477.158567px;}
.x38_c00424{left:478.908000px;}
.x1e_c00424{left:499.780013px;}
.x40_c00424{left:502.354500px;}
.x39_c00424{left:512.460000px;}
.x14_c00424{left:523.057707px;}
.x8_c00424{left:534.708000px;}
.x31_c00424{left:544.320000px;}
.x3a_c00424{left:546.210000px;}
.x2c_c00424{left:555.390000px;}
.x1f_c00424{left:565.931757px;}
.x41_c00424{left:580.381500px;}
.x15_c00424{left:598.397757px;}
.x32_c00424{left:600.750000px;}
.x9_c00424{left:621.640500px;}
.x20_c00424{left:632.623523px;}
.x2d_c00424{left:633.960000px;}
.x42_c00424{left:644.641500px;}
.xa_c00424{left:654.559500px;}
.x21_c00424{left:665.833650px;}
.x16_c00424{left:688.043517px;}
.xb_c00424{left:700.455000px;}
.x3b_c00424{left:711.990000px;}
.x22_c00424{left:720.914849px;}
.xc_c00424{left:732.333000px;}
.x23_c00424{left:744.406004px;}
.x3c_c00424{left:746.820000px;}
.x17_c00424{left:755.266962px;}
.xd_c00424{left:765.544500px;}
.x2e_c00424{left:777.330000px;}
.x33_c00424{left:778.410000px;}
.x18_c00424{left:810.346229px;}
.x34_c00424{left:822.960000px;}
.x44_c00424{left:910.710000px;}
.x43_c00424{left:913.680000px;}
@media print{
.v0_c00424{vertical-align:0.000000pt;}
.ls0_c00424{letter-spacing:0.000000pt;}
.ws0_c00424{word-spacing:0.000000pt;}
.fs7_c00424{font-size:21.333333pt;}
.fs0_c00424{font-size:37.333333pt;}
.fs6_c00424{font-size:58.669043pt;}
.fs5_c00424{font-size:64.000000pt;}
.fs2_c00424{font-size:64.001568pt;}
.fs4_c00424{font-size:69.333333pt;}
.fs1_c00424{font-size:69.335032pt;}
.fs3_c00424{font-size:74.668496pt;}
.y0_c00424{bottom:0.000000pt;}
.y3d_c00424{bottom:412.800000pt;}
.y34_c00424{bottom:766.561333pt;}
.y35_c00424{bottom:767.250613pt;}
.y36_c00424{bottom:768.140593pt;}
.y37_c00424{bottom:768.658717pt;}
.y38_c00424{bottom:768.831781pt;}
.y39_c00424{bottom:769.460293pt;}
.y3a_c00424{bottom:769.719289pt;}
.y3b_c00424{bottom:770.084509pt;}
.y3c_c00424{bottom:770.598589pt;}
.y33_c00424{bottom:801.637333pt;}
.y2d_c00424{bottom:828.482667pt;}
.y2e_c00424{bottom:829.292000pt;}
.y2f_c00424{bottom:829.992000pt;}
.y30_c00424{bottom:830.948000pt;}
.y31_c00424{bottom:831.414667pt;}
.y32_c00424{bottom:832.112000pt;}
.y2c_c00424{bottom:863.353333pt;}
.y2b_c00424{bottom:896.477333pt;}
.y27_c00424{bottom:924.241981pt;}
.y28_c00424{bottom:925.323191pt;}
.y29_c00424{bottom:926.991189pt;}
.y2a_c00424{bottom:927.548700pt;}
.y1d_c00424{bottom:958.988548pt;}
.y26_c00424{bottom:958.988784pt;}
.y1c_c00424{bottom:958.988984pt;}
.y22_c00424{bottom:958.988999pt;}
.y20_c00424{bottom:958.989133pt;}
.y1e_c00424{bottom:958.989152pt;}
.y1f_c00424{bottom:958.989196pt;}
.y24_c00424{bottom:958.989247pt;}
.y23_c00424{bottom:958.989283pt;}
.y25_c00424{bottom:958.989291pt;}
.y21_c00424{bottom:958.989408pt;}
.yf_c00424{bottom:990.478760pt;}
.y10_c00424{bottom:990.628844pt;}
.y11_c00424{bottom:990.964287pt;}
.y12_c00424{bottom:991.106911pt;}
.y13_c00424{bottom:991.594680pt;}
.y14_c00424{bottom:991.886817pt;}
.y15_c00424{bottom:991.986276pt;}
.y16_c00424{bottom:992.190533pt;}
.y17_c00424{bottom:992.525976pt;}
.y18_c00424{bottom:992.779029pt;}
.y19_c00424{bottom:992.923764pt;}
.y1a_c00424{bottom:993.222037pt;}
.y1b_c00424{bottom:993.467415pt;}
.y2_c00424{bottom:1021.440000pt;}
.y3_c00424{bottom:1021.638315pt;}
.y4_c00424{bottom:1022.050092pt;}
.y5_c00424{bottom:1022.256797pt;}
.y6_c00424{bottom:1022.871565pt;}
.y7_c00424{bottom:1023.140515pt;}
.y8_c00424{bottom:1023.350496pt;}
.y9_c00424{bottom:1023.909908pt;}
.ya_c00424{bottom:1024.450821pt;}
.yb_c00424{bottom:1024.655651pt;}
.yc_c00424{bottom:1024.941223pt;}
.yd_c00424{bottom:1025.139575pt;}
.ye_c00424{bottom:1025.346224pt;}
.y1_c00424{bottom:1105.078667pt;}
.h9_c00424{height:21.333333pt;}
.h2_c00424{height:37.333333pt;}
.h8_c00424{height:58.669043pt;}
.h7_c00424{height:64.000000pt;}
.h4_c00424{height:64.001568pt;}
.h6_c00424{height:69.333333pt;}
.h3_c00424{height:69.335032pt;}
.h5_c00424{height:74.668496pt;}
.h1_c00424{height:1112.000000pt;}
.h0_c00424{height:1112.133333pt;}
.w0_c00424{width:813.333333pt;}
.x0_c00424{left:0.000000pt;}
.x1_c00424{left:122.452000pt;}
.x19_c00424{left:123.601192pt;}
.x2_c00424{left:150.782667pt;}
.xe_c00424{left:152.694483pt;}
.x24_c00424{left:180.726307pt;}
.x35_c00424{left:190.737333pt;}
.x1a_c00424{left:199.923601pt;}
.x3d_c00424{left:201.017333pt;}
.x3_c00424{left:209.608000pt;}
.x27_c00424{left:218.640000pt;}
.xf_c00424{left:219.663416pt;}
.x1b_c00424{left:228.963687pt;}
.x4_c00424{left:239.137333pt;}
.x10_c00424{left:248.229151pt;}
.x28_c00424{left:249.120000pt;}
.x1c_c00424{left:265.924164pt;}
.x25_c00424{left:268.528267pt;}
.x26_c00424{left:297.884469pt;}
.x29_c00424{left:298.800000pt;}
.x3e_c00424{left:299.904000pt;}
.x5_c00424{left:326.961333pt;}
.x36_c00424{left:328.744000pt;}
.x1d_c00424{left:336.966312pt;}
.x2f_c00424{left:338.160000pt;}
.x11_c00424{left:345.911856pt;}
.x2a_c00424{left:347.280000pt;}
.x3f_c00424{left:357.473333pt;}
.x6_c00424{left:365.382667pt;}
.x37_c00424{left:367.624000pt;}
.x2b_c00424{left:376.560000pt;}
.x7_c00424{left:395.380000pt;}
.x12_c00424{left:404.218001pt;}
.x30_c00424{left:405.360000pt;}
.x13_c00424{left:424.140948pt;}
.x38_c00424{left:425.696000pt;}
.x1e_c00424{left:444.248900pt;}
.x40_c00424{left:446.537333pt;}
.x39_c00424{left:455.520000pt;}
.x14_c00424{left:464.940184pt;}
.x8_c00424{left:475.296000pt;}
.x31_c00424{left:483.840000pt;}
.x3a_c00424{left:485.520000pt;}
.x2c_c00424{left:493.680000pt;}
.x1f_c00424{left:503.050451pt;}
.x41_c00424{left:515.894667pt;}
.x15_c00424{left:531.909117pt;}
.x32_c00424{left:534.000000pt;}
.x9_c00424{left:552.569333pt;}
.x20_c00424{left:562.332020pt;}
.x2d_c00424{left:563.520000pt;}
.x42_c00424{left:573.014667pt;}
.xa_c00424{left:581.830667pt;}
.x21_c00424{left:591.852133pt;}
.x16_c00424{left:611.594237pt;}
.xb_c00424{left:622.626667pt;}
.x3b_c00424{left:632.880000pt;}
.x22_c00424{left:640.813199pt;}
.xc_c00424{left:650.962667pt;}
.x23_c00424{left:661.694225pt;}
.x3c_c00424{left:663.840000pt;}
.x17_c00424{left:671.348411pt;}
.xd_c00424{left:680.484000pt;}
.x2e_c00424{left:690.960000pt;}
.x33_c00424{left:691.920000pt;}
.x18_c00424{left:720.307759pt;}
.x34_c00424{left:731.520000pt;}
.x44_c00424{left:809.520000pt;}
.x43_c00424{left:812.160000pt;}
}





/* 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_c00425 {
    display:none;
  }
  .loading-indicator_c00425.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00425 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_c00425 { 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_c00425" -> "#page-container .classname_c00425")
 */
.pf_c00425 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00425 { /* 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_c00425.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00425 { /* 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_c00425 { /* 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_c00425 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00425 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00425 {overflow:visible;}
  }
}
.c_c00425 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00425 { /* 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_c00425:after { /* webkit #35443 */
  content: '';
}
.t_c00425:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00425 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 */
}
.__c00425 { /* 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_c00425 { /* info for Javascript */
  display:none;
}
.l_c00425 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00425 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00425 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00425: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_c00425 {
    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_c00425.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00425.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_c00425 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00425{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00425;src:url('chunks/assets/font_dbd529e162d5851c7bfb6d27.woff2')format("woff");}.ff1_c00425{font-family:ff1_c00425;line-height:1.000000;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;}
.m8_c00425{transform:matrix(0.100370,-0.001706,0.004249,0.249964,0,0);-ms-transform:matrix(0.100370,-0.001706,0.004249,0.249964,0,0);-webkit-transform:matrix(0.100370,-0.001706,0.004249,0.249964,0,0);}
.m11_c00425{transform:matrix(0.181369,-0.003083,0.004249,0.249964,0,0);-ms-transform:matrix(0.181369,-0.003083,0.004249,0.249964,0,0);-webkit-transform:matrix(0.181369,-0.003083,0.004249,0.249964,0,0);}
.m1_c00425{transform:matrix(0.192802,-0.003278,0.004249,0.249964,0,0);-ms-transform:matrix(0.192802,-0.003278,0.004249,0.249964,0,0);-webkit-transform:matrix(0.192802,-0.003278,0.004249,0.249964,0,0);}
.m3_c00425{transform:matrix(0.207140,-0.003521,0.004249,0.249964,0,0);-ms-transform:matrix(0.207140,-0.003521,0.004249,0.249964,0,0);-webkit-transform:matrix(0.207140,-0.003521,0.004249,0.249964,0,0);}
.m2_c00425{transform:matrix(0.225137,-0.003827,0.004249,0.249964,0,0);-ms-transform:matrix(0.225137,-0.003827,0.004249,0.249964,0,0);-webkit-transform:matrix(0.225137,-0.003827,0.004249,0.249964,0,0);}
.mc_c00425{transform:matrix(0.228102,-0.003878,0.004249,0.249964,0,0);-ms-transform:matrix(0.228102,-0.003878,0.004249,0.249964,0,0);-webkit-transform:matrix(0.228102,-0.003878,0.004249,0.249964,0,0);}
.m6_c00425{transform:matrix(0.252079,-0.004285,0.004249,0.249964,0,0);-ms-transform:matrix(0.252079,-0.004285,0.004249,0.249964,0,0);-webkit-transform:matrix(0.252079,-0.004285,0.004249,0.249964,0,0);}
.md_c00425{transform:matrix(0.252439,-0.004291,0.004249,0.249964,0,0);-ms-transform:matrix(0.252439,-0.004291,0.004249,0.249964,0,0);-webkit-transform:matrix(0.252439,-0.004291,0.004249,0.249964,0,0);}
.ma_c00425{transform:matrix(0.258443,-0.004394,0.004249,0.249964,0,0);-ms-transform:matrix(0.258443,-0.004394,0.004249,0.249964,0,0);-webkit-transform:matrix(0.258443,-0.004394,0.004249,0.249964,0,0);}
.m0_c00425{transform:matrix(0.260732,-0.004432,0.004249,0.249964,0,0);-ms-transform:matrix(0.260732,-0.004432,0.004249,0.249964,0,0);-webkit-transform:matrix(0.260732,-0.004432,0.004249,0.249964,0,0);}
.m10_c00425{transform:matrix(0.274100,-0.004660,0.004249,0.249964,0,0);-ms-transform:matrix(0.274100,-0.004660,0.004249,0.249964,0,0);-webkit-transform:matrix(0.274100,-0.004660,0.004249,0.249964,0,0);}
.m7_c00425{transform:matrix(0.314370,-0.005344,0.004249,0.249964,0,0);-ms-transform:matrix(0.314370,-0.005344,0.004249,0.249964,0,0);-webkit-transform:matrix(0.314370,-0.005344,0.004249,0.249964,0,0);}
.m5_c00425{transform:matrix(0.319214,-0.005427,0.004249,0.249964,0,0);-ms-transform:matrix(0.319214,-0.005427,0.004249,0.249964,0,0);-webkit-transform:matrix(0.319214,-0.005427,0.004249,0.249964,0,0);}
.mf_c00425{transform:matrix(0.351064,-0.005968,0.004249,0.249964,0,0);-ms-transform:matrix(0.351064,-0.005968,0.004249,0.249964,0,0);-webkit-transform:matrix(0.351064,-0.005968,0.004249,0.249964,0,0);}
.mb_c00425{transform:matrix(0.369652,-0.006284,0.004249,0.249964,0,0);-ms-transform:matrix(0.369652,-0.006284,0.004249,0.249964,0,0);-webkit-transform:matrix(0.369652,-0.006284,0.004249,0.249964,0,0);}
.m4_c00425{transform:matrix(0.581826,-0.009891,0.004249,0.249964,0,0);-ms-transform:matrix(0.581826,-0.009891,0.004249,0.249964,0,0);-webkit-transform:matrix(0.581826,-0.009891,0.004249,0.249964,0,0);}
.me_c00425{transform:matrix(0.710732,-0.012082,0.004249,0.249964,0,0);-ms-transform:matrix(0.710732,-0.012082,0.004249,0.249964,0,0);-webkit-transform:matrix(0.710732,-0.012082,0.004249,0.249964,0,0);}
.m9_c00425{transform:matrix(0.864620,-0.014699,0.004249,0.249964,0,0);-ms-transform:matrix(0.864620,-0.014699,0.004249,0.249964,0,0);-webkit-transform:matrix(0.864620,-0.014699,0.004249,0.249964,0,0);}
.v0_c00425{vertical-align:0.000000px;}
.ls0_c00425{letter-spacing:0.000000px;}
.sc__c00425{text-shadow:none;}
.sc0_c00425{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__c00425{-webkit-text-stroke:0px transparent;}
.sc0_c00425{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00425{word-spacing:0.000000px;}
.fc0_c00425{color:transparent;}
.fs1_c00425{font-size:78.011270px;}
.fs0_c00425{font-size:90.013004px;}
.y0_c00425{bottom:0.000000px;}
.y9_c00425{bottom:853.483380px;}
.ya_c00425{bottom:854.124245px;}
.yb_c00425{bottom:857.123852px;}
.yc_c00425{bottom:859.206292px;}
.yd_c00425{bottom:860.597472px;}
.ye_c00425{bottom:861.670563px;}
.yf_c00425{bottom:863.982652px;}
.y10_c00425{bottom:866.846095px;}
.y11_c00425{bottom:868.975954px;}
.y12_c00425{bottom:870.212025px;}
.y1_c00425{bottom:890.160000px;}
.y2_c00425{bottom:890.738263px;}
.y3_c00425{bottom:892.630159px;}
.y4_c00425{bottom:893.575164px;}
.y5_c00425{bottom:894.120456px;}
.y6_c00425{bottom:896.378404px;}
.y7_c00425{bottom:897.065782px;}
.y8_c00425{bottom:898.071859px;}
.h3_c00425{height:78.011270px;}
.h2_c00425{height:90.013004px;}
.h1_c00425{height:1251.000000px;}
.h0_c00425{height:1251.150000px;}
.w0_c00425{width:915.000000px;}
.x0_c00425{left:0.000000px;}
.x9_c00425{left:155.832630px;}
.x1_c00425{left:172.074000px;}
.xa_c00425{left:176.496209px;}
.x2_c00425{left:206.089500px;}
.xb_c00425{left:273.244182px;}
.x3_c00425{left:317.377500px;}
.xc_c00425{left:340.401194px;}
.x4_c00425{left:372.966000px;}
.xd_c00425{left:385.254009px;}
.x5_c00425{left:405.042000px;}
.xe_c00425{left:419.868773px;}
.xf_c00425{left:494.444525px;}
.x6_c00425{left:537.862500px;}
.x7_c00425{left:578.296500px;}
.x10_c00425{left:586.801544px;}
.x8_c00425{left:637.477500px;}
.x11_c00425{left:655.512198px;}
.x12_c00425{left:695.389212px;}
@media print{
.v0_c00425{vertical-align:0.000000pt;}
.ls0_c00425{letter-spacing:0.000000pt;}
.ws0_c00425{word-spacing:0.000000pt;}
.fs1_c00425{font-size:69.343351pt;}
.fs0_c00425{font-size:80.011559pt;}
.y0_c00425{bottom:0.000000pt;}
.y9_c00425{bottom:758.651893pt;}
.ya_c00425{bottom:759.221551pt;}
.yb_c00425{bottom:761.887868pt;}
.yc_c00425{bottom:763.738927pt;}
.yd_c00425{bottom:764.975531pt;}
.ye_c00425{bottom:765.929389pt;}
.yf_c00425{bottom:767.984580pt;}
.y10_c00425{bottom:770.529863pt;}
.y11_c00425{bottom:772.423071pt;}
.y12_c00425{bottom:773.521800pt;}
.y1_c00425{bottom:791.253333pt;}
.y2_c00425{bottom:791.767345pt;}
.y3_c00425{bottom:793.449031pt;}
.y4_c00425{bottom:794.289035pt;}
.y5_c00425{bottom:794.773739pt;}
.y6_c00425{bottom:796.780804pt;}
.y7_c00425{bottom:797.391807pt;}
.y8_c00425{bottom:798.286097pt;}
.h3_c00425{height:69.343351pt;}
.h2_c00425{height:80.011559pt;}
.h1_c00425{height:1112.000000pt;}
.h0_c00425{height:1112.133333pt;}
.w0_c00425{width:813.333333pt;}
.x0_c00425{left:0.000000pt;}
.x9_c00425{left:138.517893pt;}
.x1_c00425{left:152.954667pt;}
.xa_c00425{left:156.885519pt;}
.x2_c00425{left:183.190667pt;}
.xb_c00425{left:242.883717pt;}
.x3_c00425{left:282.113333pt;}
.xc_c00425{left:302.578839pt;}
.x4_c00425{left:331.525333pt;}
.xd_c00425{left:342.448008pt;}
.x5_c00425{left:360.037333pt;}
.xe_c00425{left:373.216687pt;}
.xf_c00425{left:439.506244pt;}
.x6_c00425{left:478.100000pt;}
.x7_c00425{left:514.041333pt;}
.x10_c00425{left:521.601372pt;}
.x8_c00425{left:566.646667pt;}
.x11_c00425{left:582.677509pt;}
.x12_c00425{left:618.123744pt;}
}





/* 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_c00426 {
    display:none;
  }
  .loading-indicator_c00426.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00426 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_c00426 { 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_c00426" -> "#page-container .classname_c00426")
 */
.pf_c00426 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00426 { /* 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_c00426.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00426 { /* 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_c00426 { /* 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_c00426 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00426 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00426 {overflow:visible;}
  }
}
.c_c00426 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00426 { /* 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_c00426:after { /* webkit #35443 */
  content: '';
}
.t_c00426:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00426 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 */
}
.__c00426 { /* 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_c00426 { /* info for Javascript */
  display:none;
}
.l_c00426 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00426 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00426 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00426: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_c00426 {
    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_c00426.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00426.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_c00426 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00426{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00426;src:url('chunks/assets/font_c605e72f209fc835e906f064.woff2')format("woff");}.ff1_c00426{font-family:ff1_c00426;line-height:1.000000;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;}
.m9a_c00426{transform:matrix(0.082555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.082555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.082555,0.000000,0.000000,0.250000,0,0);}
.mcd_c00426{transform:matrix(0.086914,-0.001391,0.003999,0.249968,0,0);-ms-transform:matrix(0.086914,-0.001391,0.003999,0.249968,0,0);-webkit-transform:matrix(0.086914,-0.001391,0.003999,0.249968,0,0);}
.m90_c00426{transform:matrix(0.087935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087935,0.000000,0.000000,0.250000,0,0);}
.m0_c00426{transform:matrix(0.099610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.099610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.099610,0.000000,0.000000,0.250000,0,0);}
.m9b_c00426{transform:matrix(0.106120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106120,0.000000,0.000000,0.250000,0,0);}
.m47_c00426{transform:matrix(0.119435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119435,0.000000,0.000000,0.250000,0,0);}
.mcc_c00426{transform:matrix(0.123019,-0.001968,0.003999,0.249968,0,0);-ms-transform:matrix(0.123019,-0.001968,0.003999,0.249968,0,0);-webkit-transform:matrix(0.123019,-0.001968,0.003999,0.249968,0,0);}
.m9d_c00426{transform:matrix(0.128530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128530,0.000000,0.000000,0.250000,0,0);}
.mb7_c00426{transform:matrix(0.129730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129730,0.000000,0.000000,0.250000,0,0);}
.m78_c00426{transform:matrix(0.134645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134645,0.000000,0.000000,0.250000,0,0);}
.m9e_c00426{transform:matrix(0.140660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140660,0.000000,0.000000,0.250000,0,0);}
.m9c_c00426{transform:matrix(0.144530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144530,0.000000,0.000000,0.250000,0,0);}
.m61_c00426{transform:matrix(0.148585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148585,0.000000,0.000000,0.250000,0,0);}
.m89_c00426{transform:matrix(0.149250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149250,0.000000,0.000000,0.250000,0,0);}
.ma3_c00426{transform:matrix(0.151955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151955,0.000000,0.000000,0.250000,0,0);}
.m3d_c00426{transform:matrix(0.152120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152120,0.000000,0.000000,0.250000,0,0);}
.mb6_c00426{transform:matrix(0.153795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153795,0.000000,0.000000,0.250000,0,0);}
.m33_c00426{transform:matrix(0.153915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153915,0.000000,0.000000,0.250000,0,0);}
.m42_c00426{transform:matrix(0.155050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155050,0.000000,0.000000,0.250000,0,0);}
.m2e_c00426{transform:matrix(0.155755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155755,0.000000,0.000000,0.250000,0,0);}
.m18_c00426{transform:matrix(0.159175,-0.001751,0.002750,0.249985,0,0);-ms-transform:matrix(0.159175,-0.001751,0.002750,0.249985,0,0);-webkit-transform:matrix(0.159175,-0.001751,0.002750,0.249985,0,0);}
.ma1_c00426{transform:matrix(0.160020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160020,0.000000,0.000000,0.250000,0,0);}
.ma0_c00426{transform:matrix(0.160755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160755,0.000000,0.000000,0.250000,0,0);}
.m85_c00426{transform:matrix(0.162170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162170,0.000000,0.000000,0.250000,0,0);}
.m91_c00426{transform:matrix(0.163895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163895,0.000000,0.000000,0.250000,0,0);}
.m48_c00426{transform:matrix(0.163980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163980,0.000000,0.000000,0.250000,0,0);}
.m3a_c00426{transform:matrix(0.164560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164560,0.000000,0.000000,0.250000,0,0);}
.m87_c00426{transform:matrix(0.168565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168565,0.000000,0.000000,0.250000,0,0);}
.mb8_c00426{transform:matrix(0.169625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169625,0.000000,0.000000,0.250000,0,0);}
.m83_c00426{transform:matrix(0.171120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171120,0.000000,0.000000,0.250000,0,0);}
.m4e_c00426{transform:matrix(0.175155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175155,0.000000,0.000000,0.250000,0,0);}
.m4a_c00426{transform:matrix(0.175975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175975,0.000000,0.000000,0.250000,0,0);}
.m88_c00426{transform:matrix(0.176390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176390,0.000000,0.000000,0.250000,0,0);}
.mac_c00426{transform:matrix(0.177595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177595,0.000000,0.000000,0.250000,0,0);}
.m50_c00426{transform:matrix(0.178705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178705,0.000000,0.000000,0.250000,0,0);}
.m36_c00426{transform:matrix(0.179745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179745,0.000000,0.000000,0.250000,0,0);}
.m8c_c00426{transform:matrix(0.180255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180255,0.000000,0.000000,0.250000,0,0);}
.m84_c00426{transform:matrix(0.180730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180730,0.000000,0.000000,0.250000,0,0);}
.m8d_c00426{transform:matrix(0.180755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180755,0.000000,0.000000,0.250000,0,0);}
.m12_c00426{transform:matrix(0.182044,-0.002002,0.002750,0.249985,0,0);-ms-transform:matrix(0.182044,-0.002002,0.002750,0.249985,0,0);-webkit-transform:matrix(0.182044,-0.002002,0.002750,0.249985,0,0);}
.m5c_c00426{transform:matrix(0.183050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183050,0.000000,0.000000,0.250000,0,0);}
.m80_c00426{transform:matrix(0.184640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184640,0.000000,0.000000,0.250000,0,0);}
.m30_c00426{transform:matrix(0.185145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185145,0.000000,0.000000,0.250000,0,0);}
.m3f_c00426{transform:matrix(0.185225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185225,0.000000,0.000000,0.250000,0,0);}
.m4b_c00426{transform:matrix(0.188535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188535,0.000000,0.000000,0.250000,0,0);}
.m62_c00426{transform:matrix(0.189425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189425,0.000000,0.000000,0.250000,0,0);}
.m97_c00426{transform:matrix(0.189605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189605,0.000000,0.000000,0.250000,0,0);}
.mc1_c00426{transform:matrix(0.191351,-0.003062,0.003999,0.249968,0,0);-ms-transform:matrix(0.191351,-0.003062,0.003999,0.249968,0,0);-webkit-transform:matrix(0.191351,-0.003062,0.003999,0.249968,0,0);}
.m93_c00426{transform:matrix(0.191375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191375,0.000000,0.000000,0.250000,0,0);}
.m21_c00426{transform:matrix(0.191395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191395,0.000000,0.000000,0.250000,0,0);}
.m6d_c00426{transform:matrix(0.191975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191975,0.000000,0.000000,0.250000,0,0);}
.m5b_c00426{transform:matrix(0.192850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192850,0.000000,0.000000,0.250000,0,0);}
.m10_c00426{transform:matrix(0.193653,-0.002130,0.002750,0.249985,0,0);-ms-transform:matrix(0.193653,-0.002130,0.002750,0.249985,0,0);-webkit-transform:matrix(0.193653,-0.002130,0.002750,0.249985,0,0);}
.m72_c00426{transform:matrix(0.194350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194350,0.000000,0.000000,0.250000,0,0);}
.m5f_c00426{transform:matrix(0.195405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195405,0.000000,0.000000,0.250000,0,0);}
.mbd_c00426{transform:matrix(0.195565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195565,0.000000,0.000000,0.250000,0,0);}
.m19_c00426{transform:matrix(0.195643,-0.002152,0.002750,0.249985,0,0);-ms-transform:matrix(0.195643,-0.002152,0.002750,0.249985,0,0);-webkit-transform:matrix(0.195643,-0.002152,0.002750,0.249985,0,0);}
.m15_c00426{transform:matrix(0.196113,-0.002157,0.002750,0.249985,0,0);-ms-transform:matrix(0.196113,-0.002157,0.002750,0.249985,0,0);-webkit-transform:matrix(0.196113,-0.002157,0.002750,0.249985,0,0);}
.ma5_c00426{transform:matrix(0.196125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196125,0.000000,0.000000,0.250000,0,0);}
.m6e_c00426{transform:matrix(0.196940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196940,0.000000,0.000000,0.250000,0,0);}
.mc8_c00426{transform:matrix(0.197305,-0.003157,0.003999,0.249968,0,0);-ms-transform:matrix(0.197305,-0.003157,0.003999,0.249968,0,0);-webkit-transform:matrix(0.197305,-0.003157,0.003999,0.249968,0,0);}
.m28_c00426{transform:matrix(0.197515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197515,0.000000,0.000000,0.250000,0,0);}
.m7f_c00426{transform:matrix(0.199390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199390,0.000000,0.000000,0.250000,0,0);}
.m81_c00426{transform:matrix(0.200450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200450,0.000000,0.000000,0.250000,0,0);}
.mce_c00426{transform:matrix(0.203189,-0.003251,0.003999,0.249968,0,0);-ms-transform:matrix(0.203189,-0.003251,0.003999,0.249968,0,0);-webkit-transform:matrix(0.203189,-0.003251,0.003999,0.249968,0,0);}
.mc5_c00426{transform:matrix(0.204129,-0.003266,0.003999,0.249968,0,0);-ms-transform:matrix(0.204129,-0.003266,0.003999,0.249968,0,0);-webkit-transform:matrix(0.204129,-0.003266,0.003999,0.249968,0,0);}
.m82_c00426{transform:matrix(0.204670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204670,0.000000,0.000000,0.250000,0,0);}
.m40_c00426{transform:matrix(0.205280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205280,0.000000,0.000000,0.250000,0,0);}
.m16_c00426{transform:matrix(0.206777,-0.002275,0.002750,0.249985,0,0);-ms-transform:matrix(0.206777,-0.002275,0.002750,0.249985,0,0);-webkit-transform:matrix(0.206777,-0.002275,0.002750,0.249985,0,0);}
.m73_c00426{transform:matrix(0.207240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207240,0.000000,0.000000,0.250000,0,0);}
.m98_c00426{transform:matrix(0.207635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207635,0.000000,0.000000,0.250000,0,0);}
.ma2_c00426{transform:matrix(0.208390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208390,0.000000,0.000000,0.250000,0,0);}
.ma4_c00426{transform:matrix(0.208395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208395,0.000000,0.000000,0.250000,0,0);}
.m45_c00426{transform:matrix(0.209145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209145,0.000000,0.000000,0.250000,0,0);}
.m44_c00426{transform:matrix(0.209185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209185,0.000000,0.000000,0.250000,0,0);}
.m37_c00426{transform:matrix(0.209190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209190,0.000000,0.000000,0.250000,0,0);}
.m13_c00426{transform:matrix(0.209867,-0.002309,0.002750,0.249985,0,0);-ms-transform:matrix(0.209867,-0.002309,0.002750,0.249985,0,0);-webkit-transform:matrix(0.209867,-0.002309,0.002750,0.249985,0,0);}
.m31_c00426{transform:matrix(0.211205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211205,0.000000,0.000000,0.250000,0,0);}
.me_c00426{transform:matrix(0.211322,-0.002325,0.002750,0.249985,0,0);-ms-transform:matrix(0.211322,-0.002325,0.002750,0.249985,0,0);-webkit-transform:matrix(0.211322,-0.002325,0.002750,0.249985,0,0);}
.m4c_c00426{transform:matrix(0.213005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213005,0.000000,0.000000,0.250000,0,0);}
.m49_c00426{transform:matrix(0.213845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213845,0.000000,0.000000,0.250000,0,0);}
.m2f_c00426{transform:matrix(0.213870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213870,0.000000,0.000000,0.250000,0,0);}
.m5a_c00426{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.mc6_c00426{transform:matrix(0.215047,-0.003441,0.003999,0.249968,0,0);-ms-transform:matrix(0.215047,-0.003441,0.003999,0.249968,0,0);-webkit-transform:matrix(0.215047,-0.003441,0.003999,0.249968,0,0);}
.m3b_c00426{transform:matrix(0.215075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215075,0.000000,0.000000,0.250000,0,0);}
.m7b_c00426{transform:matrix(0.215180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215180,0.000000,0.000000,0.250000,0,0);}
.m41_c00426{transform:matrix(0.215485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215485,0.000000,0.000000,0.250000,0,0);}
.m35_c00426{transform:matrix(0.216645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216645,0.000000,0.000000,0.250000,0,0);}
.m86_c00426{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.mad_c00426{transform:matrix(0.216790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216790,0.000000,0.000000,0.250000,0,0);}
.m92_c00426{transform:matrix(0.216995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216995,0.000000,0.000000,0.250000,0,0);}
.m71_c00426{transform:matrix(0.217985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217985,0.000000,0.000000,0.250000,0,0);}
.m34_c00426{transform:matrix(0.218075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218075,0.000000,0.000000,0.250000,0,0);}
.m32_c00426{transform:matrix(0.218100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218100,0.000000,0.000000,0.250000,0,0);}
.m5d_c00426{transform:matrix(0.218310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218310,0.000000,0.000000,0.250000,0,0);}
.m3e_c00426{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.mae_c00426{transform:matrix(0.218940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218940,0.000000,0.000000,0.250000,0,0);}
.m5e_c00426{transform:matrix(0.219080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219080,0.000000,0.000000,0.250000,0,0);}
.m8b_c00426{transform:matrix(0.219790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219790,0.000000,0.000000,0.250000,0,0);}
.m25_c00426{transform:matrix(0.219800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219800,0.000000,0.000000,0.250000,0,0);}
.mf_c00426{transform:matrix(0.220357,-0.002424,0.002750,0.249985,0,0);-ms-transform:matrix(0.220357,-0.002424,0.002750,0.249985,0,0);-webkit-transform:matrix(0.220357,-0.002424,0.002750,0.249985,0,0);}
.m94_c00426{transform:matrix(0.220380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220380,0.000000,0.000000,0.250000,0,0);}
.md2_c00426{transform:matrix(0.220607,-0.003530,0.003999,0.249968,0,0);-ms-transform:matrix(0.220607,-0.003530,0.003999,0.249968,0,0);-webkit-transform:matrix(0.220607,-0.003530,0.003999,0.249968,0,0);}
.ma9_c00426{transform:matrix(0.221375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221375,0.000000,0.000000,0.250000,0,0);}
.m4d_c00426{transform:matrix(0.221700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221700,0.000000,0.000000,0.250000,0,0);}
.ma_c00426{transform:matrix(0.221867,-0.002441,0.002750,0.249985,0,0);-ms-transform:matrix(0.221867,-0.002441,0.002750,0.249985,0,0);-webkit-transform:matrix(0.221867,-0.002441,0.002750,0.249985,0,0);}
.m74_c00426{transform:matrix(0.222310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222310,0.000000,0.000000,0.250000,0,0);}
.m60_c00426{transform:matrix(0.222335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222335,0.000000,0.000000,0.250000,0,0);}
.m4f_c00426{transform:matrix(0.222605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222605,0.000000,0.000000,0.250000,0,0);}
.mb2_c00426{transform:matrix(0.224080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224080,0.000000,0.000000,0.250000,0,0);}
.m95_c00426{transform:matrix(0.224415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224415,0.000000,0.000000,0.250000,0,0);}
.m17_c00426{transform:matrix(0.225161,-0.002477,0.002750,0.249985,0,0);-ms-transform:matrix(0.225161,-0.002477,0.002750,0.249985,0,0);-webkit-transform:matrix(0.225161,-0.002477,0.002750,0.249985,0,0);}
.mbb_c00426{transform:matrix(0.225200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225200,0.000000,0.000000,0.250000,0,0);}
.m75_c00426{transform:matrix(0.225325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225325,0.000000,0.000000,0.250000,0,0);}
.m2b_c00426{transform:matrix(0.225345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225345,0.000000,0.000000,0.250000,0,0);}
.mc7_c00426{transform:matrix(0.225531,-0.003608,0.003999,0.249968,0,0);-ms-transform:matrix(0.225531,-0.003608,0.003999,0.249968,0,0);-webkit-transform:matrix(0.225531,-0.003608,0.003999,0.249968,0,0);}
.m1d_c00426{transform:matrix(0.225776,-0.002484,0.002750,0.249985,0,0);-ms-transform:matrix(0.225776,-0.002484,0.002750,0.249985,0,0);-webkit-transform:matrix(0.225776,-0.002484,0.002750,0.249985,0,0);}
.m1f_c00426{transform:matrix(0.226096,-0.002487,0.002750,0.249985,0,0);-ms-transform:matrix(0.226096,-0.002487,0.002750,0.249985,0,0);-webkit-transform:matrix(0.226096,-0.002487,0.002750,0.249985,0,0);}
.m52_c00426{transform:matrix(0.226405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226405,0.000000,0.000000,0.250000,0,0);}
.mb4_c00426{transform:matrix(0.226745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226745,0.000000,0.000000,0.250000,0,0);}
.mc2_c00426{transform:matrix(0.226831,-0.003629,0.003999,0.249968,0,0);-ms-transform:matrix(0.226831,-0.003629,0.003999,0.249968,0,0);-webkit-transform:matrix(0.226831,-0.003629,0.003999,0.249968,0,0);}
.m69_c00426{transform:matrix(0.226970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226970,0.000000,0.000000,0.250000,0,0);}
.m8_c00426{transform:matrix(0.227326,-0.002501,0.002750,0.249985,0,0);-ms-transform:matrix(0.227326,-0.002501,0.002750,0.249985,0,0);-webkit-transform:matrix(0.227326,-0.002501,0.002750,0.249985,0,0);}
.m26_c00426{transform:matrix(0.227340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227340,0.000000,0.000000,0.250000,0,0);}
.ma6_c00426{transform:matrix(0.227655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227655,0.000000,0.000000,0.250000,0,0);}
.mbf_c00426{transform:matrix(0.227921,-0.003647,0.003999,0.249968,0,0);-ms-transform:matrix(0.227921,-0.003647,0.003999,0.249968,0,0);-webkit-transform:matrix(0.227921,-0.003647,0.003999,0.249968,0,0);}
.m23_c00426{transform:matrix(0.229760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229760,0.000000,0.000000,0.250000,0,0);}
.m99_c00426{transform:matrix(0.229785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229785,0.000000,0.000000,0.250000,0,0);}
.m70_c00426{transform:matrix(0.230175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230175,0.000000,0.000000,0.250000,0,0);}
.mc3_c00426{transform:matrix(0.230266,-0.003684,0.003999,0.249968,0,0);-ms-transform:matrix(0.230266,-0.003684,0.003999,0.249968,0,0);-webkit-transform:matrix(0.230266,-0.003684,0.003999,0.249968,0,0);}
.m29_c00426{transform:matrix(0.230340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230340,0.000000,0.000000,0.250000,0,0);}
.m11_c00426{transform:matrix(0.230416,-0.002535,0.002750,0.249985,0,0);-ms-transform:matrix(0.230416,-0.002535,0.002750,0.249985,0,0);-webkit-transform:matrix(0.230416,-0.002535,0.002750,0.249985,0,0);}
.m96_c00426{transform:matrix(0.231515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231515,0.000000,0.000000,0.250000,0,0);}
.m43_c00426{transform:matrix(0.231815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231815,0.000000,0.000000,0.250000,0,0);}
.m64_c00426{transform:matrix(0.232275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232275,0.000000,0.000000,0.250000,0,0);}
.m1b_c00426{transform:matrix(0.232311,-0.002555,0.002750,0.249985,0,0);-ms-transform:matrix(0.232311,-0.002555,0.002750,0.249985,0,0);-webkit-transform:matrix(0.232311,-0.002555,0.002750,0.249985,0,0);}
.m3c_c00426{transform:matrix(0.232860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232860,0.000000,0.000000,0.250000,0,0);}
.m38_c00426{transform:matrix(0.233125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233125,0.000000,0.000000,0.250000,0,0);}
.mbc_c00426{transform:matrix(0.233140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233140,0.000000,0.000000,0.250000,0,0);}
.m8f_c00426{transform:matrix(0.233540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233540,0.000000,0.000000,0.250000,0,0);}
.m6f_c00426{transform:matrix(0.233685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233685,0.000000,0.000000,0.250000,0,0);}
.m6b_c00426{transform:matrix(0.233790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233790,0.000000,0.000000,0.250000,0,0);}
.m53_c00426{transform:matrix(0.233835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233835,0.000000,0.000000,0.250000,0,0);}
.mc9_c00426{transform:matrix(0.234230,-0.003748,0.003999,0.249968,0,0);-ms-transform:matrix(0.234230,-0.003748,0.003999,0.249968,0,0);-webkit-transform:matrix(0.234230,-0.003748,0.003999,0.249968,0,0);}
.mc0_c00426{transform:matrix(0.235350,-0.003766,0.003999,0.249968,0,0);-ms-transform:matrix(0.235350,-0.003766,0.003999,0.249968,0,0);-webkit-transform:matrix(0.235350,-0.003766,0.003999,0.249968,0,0);}
.mba_c00426{transform:matrix(0.235770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235770,0.000000,0.000000,0.250000,0,0);}
.m6a_c00426{transform:matrix(0.236600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236600,0.000000,0.000000,0.250000,0,0);}
.m2c_c00426{transform:matrix(0.237185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237185,0.000000,0.000000,0.250000,0,0);}
.m6c_c00426{transform:matrix(0.237195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237195,0.000000,0.000000,0.250000,0,0);}
.m46_c00426{transform:matrix(0.238505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238505,0.000000,0.000000,0.250000,0,0);}
.mbe_c00426{transform:matrix(0.238540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238540,0.000000,0.000000,0.250000,0,0);}
.m59_c00426{transform:matrix(0.238850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238850,0.000000,0.000000,0.250000,0,0);}
.ma8_c00426{transform:matrix(0.239285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239285,0.000000,0.000000,0.250000,0,0);}
.md0_c00426{transform:matrix(0.239909,-0.003839,0.003999,0.249968,0,0);-ms-transform:matrix(0.239909,-0.003839,0.003999,0.249968,0,0);-webkit-transform:matrix(0.239909,-0.003839,0.003999,0.249968,0,0);}
.mb9_c00426{transform:matrix(0.240020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240020,0.000000,0.000000,0.250000,0,0);}
.md1_c00426{transform:matrix(0.241199,-0.003859,0.003999,0.249968,0,0);-ms-transform:matrix(0.241199,-0.003859,0.003999,0.249968,0,0);-webkit-transform:matrix(0.241199,-0.003859,0.003999,0.249968,0,0);}
.mc4_c00426{transform:matrix(0.241509,-0.003864,0.003999,0.249968,0,0);-ms-transform:matrix(0.241509,-0.003864,0.003999,0.249968,0,0);-webkit-transform:matrix(0.241509,-0.003864,0.003999,0.249968,0,0);}
.m76_c00426{transform:matrix(0.242080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242080,0.000000,0.000000,0.250000,0,0);}
.mb_c00426{transform:matrix(0.242225,-0.002664,0.002750,0.249985,0,0);-ms-transform:matrix(0.242225,-0.002664,0.002750,0.249985,0,0);-webkit-transform:matrix(0.242225,-0.002664,0.002750,0.249985,0,0);}
.m54_c00426{transform:matrix(0.242630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242630,0.000000,0.000000,0.250000,0,0);}
.maa_c00426{transform:matrix(0.243915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243915,0.000000,0.000000,0.250000,0,0);}
.m7c_c00426{transform:matrix(0.245350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245350,0.000000,0.000000,0.250000,0,0);}
.ma7_c00426{transform:matrix(0.245485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245485,0.000000,0.000000,0.250000,0,0);}
.m51_c00426{transform:matrix(0.245625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245625,0.000000,0.000000,0.250000,0,0);}
.md_c00426{transform:matrix(0.245695,-0.002703,0.002750,0.249985,0,0);-ms-transform:matrix(0.245695,-0.002703,0.002750,0.249985,0,0);-webkit-transform:matrix(0.245695,-0.002703,0.002750,0.249985,0,0);}
.m7a_c00426{transform:matrix(0.246875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246875,0.000000,0.000000,0.250000,0,0);}
.m39_c00426{transform:matrix(0.246960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246960,0.000000,0.000000,0.250000,0,0);}
.mb1_c00426{transform:matrix(0.247050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247050,0.000000,0.000000,0.250000,0,0);}
.mcb_c00426{transform:matrix(0.247298,-0.003957,0.003999,0.249968,0,0);-ms-transform:matrix(0.247298,-0.003957,0.003999,0.249968,0,0);-webkit-transform:matrix(0.247298,-0.003957,0.003999,0.249968,0,0);}
.m57_c00426{transform:matrix(0.247880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247880,0.000000,0.000000,0.250000,0,0);}
.m14_c00426{transform:matrix(0.249545,-0.002745,0.002750,0.249985,0,0);-ms-transform:matrix(0.249545,-0.002745,0.002750,0.249985,0,0);-webkit-transform:matrix(0.249545,-0.002745,0.002750,0.249985,0,0);}
.maf_c00426{transform:matrix(0.249580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249580,0.000000,0.000000,0.250000,0,0);}
.m24_c00426{transform:matrix(0.250470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250470,0.000000,0.000000,0.250000,0,0);}
.m22_c00426{transform:matrix(0.253915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253915,0.000000,0.000000,0.250000,0,0);}
.m5_c00426{transform:matrix(0.254290,-0.002797,0.002750,0.249985,0,0);-ms-transform:matrix(0.254290,-0.002797,0.002750,0.249985,0,0);-webkit-transform:matrix(0.254290,-0.002797,0.002750,0.249985,0,0);}
.m77_c00426{transform:matrix(0.255135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255135,0.000000,0.000000,0.250000,0,0);}
.m67_c00426{transform:matrix(0.256790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256790,0.000000,0.000000,0.250000,0,0);}
.mb0_c00426{transform:matrix(0.257125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257125,0.000000,0.000000,0.250000,0,0);}
.m7e_c00426{transform:matrix(0.257590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257590,0.000000,0.000000,0.250000,0,0);}
.m1a_c00426{transform:matrix(0.257659,-0.002834,0.002750,0.249985,0,0);-ms-transform:matrix(0.257659,-0.002834,0.002750,0.249985,0,0);-webkit-transform:matrix(0.257659,-0.002834,0.002750,0.249985,0,0);}
.m65_c00426{transform:matrix(0.257875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257875,0.000000,0.000000,0.250000,0,0);}
.m55_c00426{transform:matrix(0.258775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258775,0.000000,0.000000,0.250000,0,0);}
.m58_c00426{transform:matrix(0.259335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259335,0.000000,0.000000,0.250000,0,0);}
.m7d_c00426{transform:matrix(0.260525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260525,0.000000,0.000000,0.250000,0,0);}
.mca_c00426{transform:matrix(0.260927,-0.004175,0.003999,0.249968,0,0);-ms-transform:matrix(0.260927,-0.004175,0.003999,0.249968,0,0);-webkit-transform:matrix(0.260927,-0.004175,0.003999,0.249968,0,0);}
.mab_c00426{transform:matrix(0.261260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261260,0.000000,0.000000,0.250000,0,0);}
.m2a_c00426{transform:matrix(0.261945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261945,0.000000,0.000000,0.250000,0,0);}
.m56_c00426{transform:matrix(0.262145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262145,0.000000,0.000000,0.250000,0,0);}
.m1c_c00426{transform:matrix(0.263869,-0.002903,0.002750,0.249985,0,0);-ms-transform:matrix(0.263869,-0.002903,0.002750,0.249985,0,0);-webkit-transform:matrix(0.263869,-0.002903,0.002750,0.249985,0,0);}
.m4_c00426{transform:matrix(0.263999,-0.002904,0.002750,0.249985,0,0);-ms-transform:matrix(0.263999,-0.002904,0.002750,0.249985,0,0);-webkit-transform:matrix(0.263999,-0.002904,0.002750,0.249985,0,0);}
.m6_c00426{transform:matrix(0.265099,-0.002916,0.002750,0.249985,0,0);-ms-transform:matrix(0.265099,-0.002916,0.002750,0.249985,0,0);-webkit-transform:matrix(0.265099,-0.002916,0.002750,0.249985,0,0);}
.m66_c00426{transform:matrix(0.265495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265495,0.000000,0.000000,0.250000,0,0);}
.m27_c00426{transform:matrix(0.267910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267910,0.000000,0.000000,0.250000,0,0);}
.mc_c00426{transform:matrix(0.271474,-0.002986,0.002750,0.249985,0,0);-ms-transform:matrix(0.271474,-0.002986,0.002750,0.249985,0,0);-webkit-transform:matrix(0.271474,-0.002986,0.002750,0.249985,0,0);}
.mb3_c00426{transform:matrix(0.271490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271490,0.000000,0.000000,0.250000,0,0);}
.mb5_c00426{transform:matrix(0.273555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273555,0.000000,0.000000,0.250000,0,0);}
.m63_c00426{transform:matrix(0.274280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274280,0.000000,0.000000,0.250000,0,0);}
.m7_c00426{transform:matrix(0.276393,-0.003040,0.002750,0.249985,0,0);-ms-transform:matrix(0.276393,-0.003040,0.002750,0.249985,0,0);-webkit-transform:matrix(0.276393,-0.003040,0.002750,0.249985,0,0);}
.m20_c00426{transform:matrix(0.276493,-0.003041,0.002750,0.249985,0,0);-ms-transform:matrix(0.276493,-0.003041,0.002750,0.249985,0,0);-webkit-transform:matrix(0.276493,-0.003041,0.002750,0.249985,0,0);}
.m2d_c00426{transform:matrix(0.277570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277570,0.000000,0.000000,0.250000,0,0);}
.m9_c00426{transform:matrix(0.278198,-0.003060,0.002750,0.249985,0,0);-ms-transform:matrix(0.278198,-0.003060,0.002750,0.249985,0,0);-webkit-transform:matrix(0.278198,-0.003060,0.002750,0.249985,0,0);}
.m68_c00426{transform:matrix(0.278225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278225,0.000000,0.000000,0.250000,0,0);}
.m1e_c00426{transform:matrix(0.282093,-0.003103,0.002750,0.249985,0,0);-ms-transform:matrix(0.282093,-0.003103,0.002750,0.249985,0,0);-webkit-transform:matrix(0.282093,-0.003103,0.002750,0.249985,0,0);}
.m8e_c00426{transform:matrix(0.285490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285490,0.000000,0.000000,0.250000,0,0);}
.m79_c00426{transform:matrix(0.286845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286845,0.000000,0.000000,0.250000,0,0);}
.m1_c00426{transform:matrix(0.288125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288125,0.000000,0.000000,0.250000,0,0);}
.m2_c00426{transform:matrix(0.374945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374945,0.000000,0.000000,0.250000,0,0);}
.m3_c00426{transform:matrix(0.398915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398915,0.000000,0.000000,0.250000,0,0);}
.m9f_c00426{transform:matrix(0.589630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.589630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.589630,0.000000,0.000000,0.250000,0,0);}
.m8a_c00426{transform:matrix(0.687795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687795,0.000000,0.000000,0.250000,0,0);}
.mcf_c00426{transform:matrix(0.703985,-0.011264,0.003999,0.249968,0,0);-ms-transform:matrix(0.703985,-0.011264,0.003999,0.249968,0,0);-webkit-transform:matrix(0.703985,-0.011264,0.003999,0.249968,0,0);}
.v0_c00426{vertical-align:0.000000px;}
.ls0_c00426{letter-spacing:0.000000px;}
.sc__c00426{text-shadow:none;}
.sc0_c00426{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__c00426{-webkit-text-stroke:0px transparent;}
.sc0_c00426{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00426{word-spacing:0.000000px;}
._0_c00426{margin-left:-23.586560px;}
.fc0_c00426{color:transparent;}
.fs1_c00426{font-size:48.000000px;}
.fs4_c00426{font-size:72.000000px;}
.fs2_c00426{font-size:72.004356px;}
.fs7_c00426{font-size:78.000000px;}
.fsc_c00426{font-size:78.009983px;}
.fs6_c00426{font-size:84.000000px;}
.fs3_c00426{font-size:84.005082px;}
.fsb_c00426{font-size:84.010751px;}
.fs5_c00426{font-size:90.000000px;}
.fsd_c00426{font-size:90.011519px;}
.fs8_c00426{font-size:96.000000px;}
.fs9_c00426{font-size:114.000000px;}
.fs0_c00426{font-size:120.000000px;}
.fsa_c00426{font-size:132.000000px;}
.y0_c00426{bottom:0.000000px;}
.y79_c00426{bottom:55.938648px;}
.y7a_c00426{bottom:55.938696px;}
.y7b_c00426{bottom:55.939068px;}
.y7c_c00426{bottom:55.939464px;}
.y7d_c00426{bottom:55.939512px;}
.y7e_c00426{bottom:55.939980px;}
.y7f_c00426{bottom:55.940268px;}
.y76_c00426{bottom:97.207428px;}
.y77_c00426{bottom:98.509680px;}
.y78_c00426{bottom:101.709048px;}
.y6c_c00426{bottom:118.534500px;}
.y6d_c00426{bottom:119.733540px;}
.y6e_c00426{bottom:121.483188px;}
.y6f_c00426{bottom:122.014476px;}
.y70_c00426{bottom:123.422340px;}
.y71_c00426{bottom:125.024724px;}
.y72_c00426{bottom:127.135404px;}
.y73_c00426{bottom:127.671780px;}
.y74_c00426{bottom:128.371188px;}
.y75_c00426{bottom:129.451260px;}
.y6b_c00426{bottom:166.465500px;}
.y6a_c00426{bottom:204.958500px;}
.y69_c00426{bottom:239.133000px;}
.y68_c00426{bottom:276.636000px;}
.y67_c00426{bottom:302.749500px;}
.y66_c00426{bottom:344.799000px;}
.y65_c00426{bottom:382.068000px;}
.y64_c00426{bottom:410.664000px;}
.y63_c00426{bottom:450.066000px;}
.y5d_c00426{bottom:484.926000px;}
.y5e_c00426{bottom:485.547000px;}
.y5f_c00426{bottom:486.502500px;}
.y60_c00426{bottom:486.855000px;}
.y61_c00426{bottom:487.654500px;}
.y62_c00426{bottom:488.626500px;}
.y5c_c00426{bottom:526.113000px;}
.y51_c00426{bottom:557.826000px;}
.y52_c00426{bottom:558.433500px;}
.y53_c00426{bottom:559.308000px;}
.y54_c00426{bottom:560.193000px;}
.y55_c00426{bottom:561.082500px;}
.y56_c00426{bottom:561.346500px;}
.y57_c00426{bottom:561.706500px;}
.y58_c00426{bottom:562.492500px;}
.y59_c00426{bottom:562.678500px;}
.y5a_c00426{bottom:563.124000px;}
.y5b_c00426{bottom:563.392500px;}
.y49_c00426{bottom:593.466000px;}
.y4a_c00426{bottom:593.740500px;}
.y4b_c00426{bottom:593.979000px;}
.y4c_c00426{bottom:595.033500px;}
.y4d_c00426{bottom:595.386000px;}
.y4e_c00426{bottom:596.016000px;}
.y4f_c00426{bottom:596.718000px;}
.y50_c00426{bottom:597.249000px;}
.y42_c00426{bottom:622.359000px;}
.y43_c00426{bottom:623.577000px;}
.y44_c00426{bottom:624.985500px;}
.y45_c00426{bottom:625.500000px;}
.y46_c00426{bottom:627.271500px;}
.y47_c00426{bottom:629.241000px;}
.y48_c00426{bottom:629.928000px;}
.y39_c00426{bottom:662.044500px;}
.y3a_c00426{bottom:662.893500px;}
.y3b_c00426{bottom:663.487500px;}
.y3c_c00426{bottom:664.812000px;}
.y3d_c00426{bottom:665.422500px;}
.y3e_c00426{bottom:666.633000px;}
.y3f_c00426{bottom:667.972500px;}
.y40_c00426{bottom:668.223000px;}
.y41_c00426{bottom:669.319500px;}
.y38_c00426{bottom:735.919500px;}
.y37_c00426{bottom:736.092000px;}
.y36_c00426{bottom:736.303500px;}
.y35_c00426{bottom:737.086500px;}
.y34_c00426{bottom:737.259000px;}
.y33_c00426{bottom:737.418000px;}
.y32_c00426{bottom:737.631000px;}
.y31_c00426{bottom:738.028500px;}
.y30_c00426{bottom:738.187500px;}
.y2f_c00426{bottom:738.346500px;}
.y2e_c00426{bottom:738.825000px;}
.y2d_c00426{bottom:738.990000px;}
.y2c_c00426{bottom:780.703500px;}
.y2b_c00426{bottom:811.902000px;}
.y2a_c00426{bottom:851.143500px;}
.y21_c00426{bottom:885.060000px;}
.y22_c00426{bottom:885.213000px;}
.y23_c00426{bottom:885.649500px;}
.y24_c00426{bottom:886.089000px;}
.y25_c00426{bottom:886.591500px;}
.y26_c00426{bottom:887.040000px;}
.y27_c00426{bottom:887.251500px;}
.y28_c00426{bottom:887.863500px;}
.y29_c00426{bottom:888.304500px;}
.y20_c00426{bottom:955.930500px;}
.y1f_c00426{bottom:992.926532px;}
.y1d_c00426{bottom:992.926737px;}
.y1e_c00426{bottom:992.927268px;}
.y1c_c00426{bottom:992.927310px;}
.y1b_c00426{bottom:992.927989px;}
.y1a_c00426{bottom:992.928652px;}
.y17_c00426{bottom:992.929275px;}
.y19_c00426{bottom:992.929302px;}
.y18_c00426{bottom:992.929708px;}
.y13_c00426{bottom:1028.645620px;}
.y11_c00426{bottom:1028.645713px;}
.y16_c00426{bottom:1028.646222px;}
.y12_c00426{bottom:1028.646237px;}
.y14_c00426{bottom:1028.646241px;}
.y10_c00426{bottom:1028.646439px;}
.y15_c00426{bottom:1028.646735px;}
.yf_c00426{bottom:1028.647176px;}
.ye_c00426{bottom:1028.647449px;}
.y3_c00426{bottom:1057.321500px;}
.y4_c00426{bottom:1058.153348px;}
.y5_c00426{bottom:1058.872434px;}
.y6_c00426{bottom:1059.956451px;}
.y7_c00426{bottom:1061.171115px;}
.y8_c00426{bottom:1061.667105px;}
.y9_c00426{bottom:1062.875664px;}
.ya_c00426{bottom:1063.235018px;}
.yb_c00426{bottom:1063.600278px;}
.yc_c00426{bottom:1064.461067px;}
.yd_c00426{bottom:1064.957023px;}
.y2_c00426{bottom:1137.367500px;}
.y1_c00426{bottom:1216.623000px;}
.h3_c00426{height:48.000000px;}
.h6_c00426{height:72.000000px;}
.h4_c00426{height:72.004356px;}
.h9_c00426{height:78.000000px;}
.he_c00426{height:78.009983px;}
.h8_c00426{height:84.000000px;}
.h5_c00426{height:84.005082px;}
.hd_c00426{height:84.010751px;}
.h7_c00426{height:90.000000px;}
.hf_c00426{height:90.011519px;}
.ha_c00426{height:96.000000px;}
.hb_c00426{height:114.000000px;}
.h2_c00426{height:120.000000px;}
.hc_c00426{height:132.000000px;}
.h1_c00426{height:1251.000000px;}
.h0_c00426{height:1251.150000px;}
.w0_c00426{width:915.000000px;}
.x0_c00426{left:0.000000px;}
.x5_c00426{left:107.368500px;}
.x3c_c00426{left:117.298500px;}
.x48_c00426{left:119.143500px;}
.x52_c00426{left:120.505500px;}
.x5d_c00426{left:121.770000px;}
.x76_c00426{left:126.630000px;}
.x19_c00426{left:129.604419px;}
.x63_c00426{left:146.340000px;}
.x6d_c00426{left:147.420000px;}
.x83_c00426{left:151.470000px;}
.x1a_c00426{left:152.555691px;}
.x8d_c00426{left:153.633852px;}
.x42_c00426{left:164.724000px;}
.x64_c00426{left:169.830000px;}
.x84_c00426{left:173.880000px;}
.x6_c00426{left:182.991000px;}
.x34_c00426{left:185.919000px;}
.x3d_c00426{left:194.539500px;}
.x53_c00426{left:198.040500px;}
.x65_c00426{left:200.070000px;}
.x77_c00426{left:201.960000px;}
.x85_c00426{left:203.580000px;}
.x88_c00426{left:204.838500px;}
.x8e_c00426{left:206.829960px;}
.x10_c00426{left:247.059777px;}
.x7_c00426{left:248.362500px;}
.x58_c00426{left:252.715500px;}
.x20_c00426{left:259.200000px;}
.x50_c00426{left:262.165500px;}
.x66_c00426{left:265.680000px;}
.x73_c00426{left:267.030000px;}
.x1b_c00426{left:269.473848px;}
.x2a_c00426{left:270.621000px;}
.x2e_c00426{left:281.070000px;}
.x41_c00426{left:282.193500px;}
.x78_c00426{left:288.900000px;}
.x67_c00426{left:298.080000px;}
.x11_c00426{left:303.223575px;}
.x49_c00426{left:304.414500px;}
.x32_c00426{left:314.010000px;}
.x1c_c00426{left:315.646441px;}
.x54_c00426{left:317.386500px;}
.x74_c00426{left:321.570000px;}
.x43_c00426{left:326.281500px;}
.x79_c00426{left:332.640000px;}
.x12_c00426{left:336.706134px;}
.x6e_c00426{left:342.090000px;}
.x35_c00426{left:345.213000px;}
.x8_c00426{left:346.909500px;}
.x51_c00426{left:349.105500px;}
.x5e_c00426{left:352.350000px;}
.x75_c00426{left:354.240000px;}
.x21_c00426{left:358.830000px;}
.x55_c00426{left:361.402500px;}
.x3_c00426{left:367.740000px;}
.x3e_c00426{left:368.970000px;}
.x44_c00426{left:370.291500px;}
.x68_c00426{left:374.760000px;}
.x82_c00426{left:378.540000px;}
.x2f_c00426{left:380.160000px;}
.x7a_c00426{left:388.800000px;}
.x22_c00426{left:391.500000px;}
.x4_c00426{left:402.030000px;}
.x5f_c00426{left:407.430000px;}
.x1_c00426{left:409.590000px;}
.x4a_c00426{left:415.111500px;}
.x6f_c00426{left:420.930000px;}
.x13_c00426{left:423.650661px;}
.x36_c00426{left:424.861500px;}
.x2_c00426{left:432.000000px;}
.x86_c00426{left:433.620000px;}
.x89_c00426{left:435.388500px;}
.x23_c00426{left:436.590000px;}
.x59_c00426{left:439.285500px;}
.x14_c00426{left:445.791834px;}
.x1d_c00426{left:447.684930px;}
.x45_c00426{left:449.128500px;}
.x9_c00426{left:457.333500px;}
.x2b_c00426{left:459.102000px;}
.x56_c00426{left:461.293500px;}
.x69_c00426{left:464.670000px;}
.x37_c00426{left:467.520000px;}
.x5a_c00426{left:472.225500px;}
.x15_c00426{left:478.194261px;}
.x38_c00426{left:499.378500px;}
.xa_c00426{left:502.423500px;}
.x7b_c00426{left:512.190000px;}
.x87_c00426{left:523.530000px;}
.x24_c00426{left:526.230000px;}
.x60_c00426{left:527.580000px;}
.x5b_c00426{left:529.195500px;}
.x39_c00426{left:533.937000px;}
.x8a_c00426{left:535.537500px;}
.x46_c00426{left:536.868000px;}
.x30_c00426{left:538.110000px;}
.x70_c00426{left:540.540000px;}
.x2c_c00426{left:548.938500px;}
.x6a_c00426{left:552.690000px;}
.x7c_c00426{left:553.770000px;}
.x4b_c00426{left:559.282500px;}
.x25_c00426{left:567.810000px;}
.x31_c00426{left:579.960000px;}
.x57_c00426{left:582.783000px;}
.x6b_c00426{left:585.900000px;}
.x7d_c00426{left:587.520000px;}
.x1e_c00426{left:590.523205px;}
.x5c_c00426{left:593.995500px;}
.x26_c00426{left:600.210000px;}
.x47_c00426{left:603.286500px;}
.x4c_c00426{left:604.368000px;}
.xb_c00426{left:612.292500px;}
.x6c_c00426{left:618.030000px;}
.x7e_c00426{left:620.190000px;}
.x1f_c00426{left:624.005764px;}
.x16_c00426{left:633.724071px;}
.xc_c00426{left:644.961000px;}
.x3f_c00426{left:656.208000px;}
.x61_c00426{left:660.150000px;}
.x27_c00426{left:667.980000px;}
.x17_c00426{left:669.636910px;}
.xd_c00426{left:678.166500px;}
.x7f_c00426{left:686.610000px;}
.x3a_c00426{left:690.532500px;}
.x28_c00426{left:701.190000px;}
.x4d_c00426{left:702.612000px;}
.x71_c00426{left:706.320000px;}
.x2d_c00426{left:713.400000px;}
.x33_c00426{left:726.570000px;}
.x18_c00426{left:727.960972px;}
.x29_c00426{left:733.860000px;}
.x72_c00426{left:740.610000px;}
.x8b_c00426{left:744.691500px;}
.xe_c00426{left:756.420000px;}
.x3b_c00426{left:767.479500px;}
.x80_c00426{left:775.440000px;}
.x40_c00426{left:778.563000px;}
.x4e_c00426{left:781.473000px;}
.xf_c00426{left:801.507000px;}
.x81_c00426{left:809.460000px;}
.x8c_c00426{left:812.196000px;}
.x4f_c00426{left:814.957500px;}
.x62_c00426{left:824.850000px;}
@media print{
.v0_c00426{vertical-align:0.000000pt;}
.ls0_c00426{letter-spacing:0.000000pt;}
.ws0_c00426{word-spacing:0.000000pt;}
._0_c00426{margin-left:-20.965831pt;}
.fs1_c00426{font-size:42.666667pt;}
.fs4_c00426{font-size:64.000000pt;}
.fs2_c00426{font-size:64.003872pt;}
.fs7_c00426{font-size:69.333333pt;}
.fsc_c00426{font-size:69.342207pt;}
.fs6_c00426{font-size:74.666667pt;}
.fs3_c00426{font-size:74.671184pt;}
.fsb_c00426{font-size:74.676223pt;}
.fs5_c00426{font-size:80.000000pt;}
.fsd_c00426{font-size:80.010239pt;}
.fs8_c00426{font-size:85.333333pt;}
.fs9_c00426{font-size:101.333333pt;}
.fs0_c00426{font-size:106.666667pt;}
.fsa_c00426{font-size:117.333333pt;}
.y0_c00426{bottom:0.000000pt;}
.y79_c00426{bottom:49.723243pt;}
.y7a_c00426{bottom:49.723285pt;}
.y7b_c00426{bottom:49.723616pt;}
.y7c_c00426{bottom:49.723968pt;}
.y7d_c00426{bottom:49.724011pt;}
.y7e_c00426{bottom:49.724427pt;}
.y7f_c00426{bottom:49.724683pt;}
.y76_c00426{bottom:86.406603pt;}
.y77_c00426{bottom:87.564160pt;}
.y78_c00426{bottom:90.408043pt;}
.y6c_c00426{bottom:105.364000pt;}
.y6d_c00426{bottom:106.429813pt;}
.y6e_c00426{bottom:107.985056pt;}
.y6f_c00426{bottom:108.457312pt;}
.y70_c00426{bottom:109.708747pt;}
.y71_c00426{bottom:111.133088pt;}
.y72_c00426{bottom:113.009248pt;}
.y73_c00426{bottom:113.486027pt;}
.y74_c00426{bottom:114.107723pt;}
.y75_c00426{bottom:115.067787pt;}
.y6b_c00426{bottom:147.969333pt;}
.y6a_c00426{bottom:182.185333pt;}
.y69_c00426{bottom:212.562667pt;}
.y68_c00426{bottom:245.898667pt;}
.y67_c00426{bottom:269.110667pt;}
.y66_c00426{bottom:306.488000pt;}
.y65_c00426{bottom:339.616000pt;}
.y64_c00426{bottom:365.034667pt;}
.y63_c00426{bottom:400.058667pt;}
.y5d_c00426{bottom:431.045333pt;}
.y5e_c00426{bottom:431.597333pt;}
.y5f_c00426{bottom:432.446667pt;}
.y60_c00426{bottom:432.760000pt;}
.y61_c00426{bottom:433.470667pt;}
.y62_c00426{bottom:434.334667pt;}
.y5c_c00426{bottom:467.656000pt;}
.y51_c00426{bottom:495.845333pt;}
.y52_c00426{bottom:496.385333pt;}
.y53_c00426{bottom:497.162667pt;}
.y54_c00426{bottom:497.949333pt;}
.y55_c00426{bottom:498.740000pt;}
.y56_c00426{bottom:498.974667pt;}
.y57_c00426{bottom:499.294667pt;}
.y58_c00426{bottom:499.993333pt;}
.y59_c00426{bottom:500.158667pt;}
.y5a_c00426{bottom:500.554667pt;}
.y5b_c00426{bottom:500.793333pt;}
.y49_c00426{bottom:527.525333pt;}
.y4a_c00426{bottom:527.769333pt;}
.y4b_c00426{bottom:527.981333pt;}
.y4c_c00426{bottom:528.918667pt;}
.y4d_c00426{bottom:529.232000pt;}
.y4e_c00426{bottom:529.792000pt;}
.y4f_c00426{bottom:530.416000pt;}
.y50_c00426{bottom:530.888000pt;}
.y42_c00426{bottom:553.208000pt;}
.y43_c00426{bottom:554.290667pt;}
.y44_c00426{bottom:555.542667pt;}
.y45_c00426{bottom:556.000000pt;}
.y46_c00426{bottom:557.574667pt;}
.y47_c00426{bottom:559.325333pt;}
.y48_c00426{bottom:559.936000pt;}
.y39_c00426{bottom:588.484000pt;}
.y3a_c00426{bottom:589.238667pt;}
.y3b_c00426{bottom:589.766667pt;}
.y3c_c00426{bottom:590.944000pt;}
.y3d_c00426{bottom:591.486667pt;}
.y3e_c00426{bottom:592.562667pt;}
.y3f_c00426{bottom:593.753333pt;}
.y40_c00426{bottom:593.976000pt;}
.y41_c00426{bottom:594.950667pt;}
.y38_c00426{bottom:654.150667pt;}
.y37_c00426{bottom:654.304000pt;}
.y36_c00426{bottom:654.492000pt;}
.y35_c00426{bottom:655.188000pt;}
.y34_c00426{bottom:655.341333pt;}
.y33_c00426{bottom:655.482667pt;}
.y32_c00426{bottom:655.672000pt;}
.y31_c00426{bottom:656.025333pt;}
.y30_c00426{bottom:656.166667pt;}
.y2f_c00426{bottom:656.308000pt;}
.y2e_c00426{bottom:656.733333pt;}
.y2d_c00426{bottom:656.880000pt;}
.y2c_c00426{bottom:693.958667pt;}
.y2b_c00426{bottom:721.690667pt;}
.y2a_c00426{bottom:756.572000pt;}
.y21_c00426{bottom:786.720000pt;}
.y22_c00426{bottom:786.856000pt;}
.y23_c00426{bottom:787.244000pt;}
.y24_c00426{bottom:787.634667pt;}
.y25_c00426{bottom:788.081333pt;}
.y26_c00426{bottom:788.480000pt;}
.y27_c00426{bottom:788.668000pt;}
.y28_c00426{bottom:789.212000pt;}
.y29_c00426{bottom:789.604000pt;}
.y20_c00426{bottom:849.716000pt;}
.y1f_c00426{bottom:882.601361pt;}
.y1d_c00426{bottom:882.601544pt;}
.y1e_c00426{bottom:882.602016pt;}
.y1c_c00426{bottom:882.602053pt;}
.y1b_c00426{bottom:882.602657pt;}
.y1a_c00426{bottom:882.603247pt;}
.y17_c00426{bottom:882.603800pt;}
.y19_c00426{bottom:882.603824pt;}
.y18_c00426{bottom:882.604185pt;}
.y13_c00426{bottom:914.351663pt;}
.y11_c00426{bottom:914.351745pt;}
.y16_c00426{bottom:914.352197pt;}
.y12_c00426{bottom:914.352211pt;}
.y14_c00426{bottom:914.352215pt;}
.y10_c00426{bottom:914.352391pt;}
.y15_c00426{bottom:914.352653pt;}
.yf_c00426{bottom:914.353045pt;}
.ye_c00426{bottom:914.353288pt;}
.y3_c00426{bottom:939.841333pt;}
.y4_c00426{bottom:940.580753pt;}
.y5_c00426{bottom:941.219941pt;}
.y6_c00426{bottom:942.183512pt;}
.y7_c00426{bottom:943.263213pt;}
.y8_c00426{bottom:943.704093pt;}
.y9_c00426{bottom:944.778368pt;}
.ya_c00426{bottom:945.097793pt;}
.yb_c00426{bottom:945.422469pt;}
.yc_c00426{bottom:946.187615pt;}
.yd_c00426{bottom:946.628465pt;}
.y2_c00426{bottom:1010.993333pt;}
.y1_c00426{bottom:1081.442667pt;}
.h3_c00426{height:42.666667pt;}
.h6_c00426{height:64.000000pt;}
.h4_c00426{height:64.003872pt;}
.h9_c00426{height:69.333333pt;}
.he_c00426{height:69.342207pt;}
.h8_c00426{height:74.666667pt;}
.h5_c00426{height:74.671184pt;}
.hd_c00426{height:74.676223pt;}
.h7_c00426{height:80.000000pt;}
.hf_c00426{height:80.010239pt;}
.ha_c00426{height:85.333333pt;}
.hb_c00426{height:101.333333pt;}
.h2_c00426{height:106.666667pt;}
.hc_c00426{height:117.333333pt;}
.h1_c00426{height:1112.000000pt;}
.h0_c00426{height:1112.133333pt;}
.w0_c00426{width:813.333333pt;}
.x0_c00426{left:0.000000pt;}
.x5_c00426{left:95.438667pt;}
.x3c_c00426{left:104.265333pt;}
.x48_c00426{left:105.905333pt;}
.x52_c00426{left:107.116000pt;}
.x5d_c00426{left:108.240000pt;}
.x76_c00426{left:112.560000pt;}
.x19_c00426{left:115.203928pt;}
.x63_c00426{left:130.080000pt;}
.x6d_c00426{left:131.040000pt;}
.x83_c00426{left:134.640000pt;}
.x1a_c00426{left:135.605059pt;}
.x8d_c00426{left:136.563424pt;}
.x42_c00426{left:146.421333pt;}
.x64_c00426{left:150.960000pt;}
.x84_c00426{left:154.560000pt;}
.x6_c00426{left:162.658667pt;}
.x34_c00426{left:165.261333pt;}
.x3d_c00426{left:172.924000pt;}
.x53_c00426{left:176.036000pt;}
.x65_c00426{left:177.840000pt;}
.x77_c00426{left:179.520000pt;}
.x85_c00426{left:180.960000pt;}
.x88_c00426{left:182.078667pt;}
.x8e_c00426{left:183.848853pt;}
.x10_c00426{left:219.608691pt;}
.x7_c00426{left:220.766667pt;}
.x58_c00426{left:224.636000pt;}
.x20_c00426{left:230.400000pt;}
.x50_c00426{left:233.036000pt;}
.x66_c00426{left:236.160000pt;}
.x73_c00426{left:237.360000pt;}
.x1b_c00426{left:239.532309pt;}
.x2a_c00426{left:240.552000pt;}
.x2e_c00426{left:249.840000pt;}
.x41_c00426{left:250.838667pt;}
.x78_c00426{left:256.800000pt;}
.x67_c00426{left:264.960000pt;}
.x11_c00426{left:269.532067pt;}
.x49_c00426{left:270.590667pt;}
.x32_c00426{left:279.120000pt;}
.x1c_c00426{left:280.574615pt;}
.x54_c00426{left:282.121333pt;}
.x74_c00426{left:285.840000pt;}
.x43_c00426{left:290.028000pt;}
.x79_c00426{left:295.680000pt;}
.x12_c00426{left:299.294341pt;}
.x6e_c00426{left:304.080000pt;}
.x35_c00426{left:306.856000pt;}
.x8_c00426{left:308.364000pt;}
.x51_c00426{left:310.316000pt;}
.x5e_c00426{left:313.200000pt;}
.x75_c00426{left:314.880000pt;}
.x21_c00426{left:318.960000pt;}
.x55_c00426{left:321.246667pt;}
.x3_c00426{left:326.880000pt;}
.x3e_c00426{left:327.973333pt;}
.x44_c00426{left:329.148000pt;}
.x68_c00426{left:333.120000pt;}
.x82_c00426{left:336.480000pt;}
.x2f_c00426{left:337.920000pt;}
.x7a_c00426{left:345.600000pt;}
.x22_c00426{left:348.000000pt;}
.x4_c00426{left:357.360000pt;}
.x5f_c00426{left:362.160000pt;}
.x1_c00426{left:364.080000pt;}
.x4a_c00426{left:368.988000pt;}
.x6f_c00426{left:374.160000pt;}
.x13_c00426{left:376.578365pt;}
.x36_c00426{left:377.654667pt;}
.x2_c00426{left:384.000000pt;}
.x86_c00426{left:385.440000pt;}
.x89_c00426{left:387.012000pt;}
.x23_c00426{left:388.080000pt;}
.x59_c00426{left:390.476000pt;}
.x14_c00426{left:396.259408pt;}
.x1d_c00426{left:397.942160pt;}
.x45_c00426{left:399.225333pt;}
.x9_c00426{left:406.518667pt;}
.x2b_c00426{left:408.090667pt;}
.x56_c00426{left:410.038667pt;}
.x69_c00426{left:413.040000pt;}
.x37_c00426{left:415.573333pt;}
.x5a_c00426{left:419.756000pt;}
.x15_c00426{left:425.061565pt;}
.x38_c00426{left:443.892000pt;}
.xa_c00426{left:446.598667pt;}
.x7b_c00426{left:455.280000pt;}
.x87_c00426{left:465.360000pt;}
.x24_c00426{left:467.760000pt;}
.x60_c00426{left:468.960000pt;}
.x5b_c00426{left:470.396000pt;}
.x39_c00426{left:474.610667pt;}
.x8a_c00426{left:476.033333pt;}
.x46_c00426{left:477.216000pt;}
.x30_c00426{left:478.320000pt;}
.x70_c00426{left:480.480000pt;}
.x2c_c00426{left:487.945333pt;}
.x6a_c00426{left:491.280000pt;}
.x7c_c00426{left:492.240000pt;}
.x4b_c00426{left:497.140000pt;}
.x25_c00426{left:504.720000pt;}
.x31_c00426{left:515.520000pt;}
.x57_c00426{left:518.029333pt;}
.x6b_c00426{left:520.800000pt;}
.x7d_c00426{left:522.240000pt;}
.x1e_c00426{left:524.909516pt;}
.x5c_c00426{left:527.996000pt;}
.x26_c00426{left:533.520000pt;}
.x47_c00426{left:536.254667pt;}
.x4c_c00426{left:537.216000pt;}
.xb_c00426{left:544.260000pt;}
.x6c_c00426{left:549.360000pt;}
.x7e_c00426{left:551.280000pt;}
.x1f_c00426{left:554.671791pt;}
.x16_c00426{left:563.310285pt;}
.xc_c00426{left:573.298667pt;}
.x3f_c00426{left:583.296000pt;}
.x61_c00426{left:586.800000pt;}
.x27_c00426{left:593.760000pt;}
.x17_c00426{left:595.232809pt;}
.xd_c00426{left:602.814667pt;}
.x7f_c00426{left:610.320000pt;}
.x3a_c00426{left:613.806667pt;}
.x28_c00426{left:623.280000pt;}
.x4d_c00426{left:624.544000pt;}
.x71_c00426{left:627.840000pt;}
.x2d_c00426{left:634.133333pt;}
.x33_c00426{left:645.840000pt;}
.x18_c00426{left:647.076420pt;}
.x29_c00426{left:652.320000pt;}
.x72_c00426{left:658.320000pt;}
.x8b_c00426{left:661.948000pt;}
.xe_c00426{left:672.373333pt;}
.x3b_c00426{left:682.204000pt;}
.x80_c00426{left:689.280000pt;}
.x40_c00426{left:692.056000pt;}
.x4e_c00426{left:694.642667pt;}
.xf_c00426{left:712.450667pt;}
.x81_c00426{left:719.520000pt;}
.x8c_c00426{left:721.952000pt;}
.x4f_c00426{left:724.406667pt;}
.x62_c00426{left:733.200000pt;}
}





/* 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_c00427 {
    display:none;
  }
  .loading-indicator_c00427.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00427 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_c00427 { 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_c00427" -> "#page-container .classname_c00427")
 */
.pf_c00427 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00427 { /* 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_c00427.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00427 { /* 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_c00427 { /* 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_c00427 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00427 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00427 {overflow:visible;}
  }
}
.c_c00427 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00427 { /* 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_c00427:after { /* webkit #35443 */
  content: '';
}
.t_c00427:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00427 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 */
}
.__c00427 { /* 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_c00427 { /* info for Javascript */
  display:none;
}
.l_c00427 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00427 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00427 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00427: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_c00427 {
    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_c00427.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00427.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_c00427 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00427{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00427;src:url('chunks/assets/font_132af6d682320e9b248f68cf.woff2')format("woff");}.ff1_c00427{font-family:ff1_c00427;line-height:1.000000;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;}
.m7_c00427{transform:matrix(0.014139,0.000141,-0.002500,0.249988,0,0);-ms-transform:matrix(0.014139,0.000141,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.014139,0.000141,-0.002500,0.249988,0,0);}
.m2_c00427{transform:matrix(0.071709,0.001721,-0.005998,0.249928,0,0);-ms-transform:matrix(0.071709,0.001721,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.071709,0.001721,-0.005998,0.249928,0,0);}
.m0_c00427{transform:matrix(0.072874,0.001749,-0.005998,0.249928,0,0);-ms-transform:matrix(0.072874,0.001749,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.072874,0.001749,-0.005998,0.249928,0,0);}
.m4_c00427{transform:matrix(0.095018,0.002280,-0.005998,0.249928,0,0);-ms-transform:matrix(0.095018,0.002280,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.095018,0.002280,-0.005998,0.249928,0,0);}
.m18_c00427{transform:matrix(0.106300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106300,0.000000,0.000000,0.250000,0,0);}
.m1_c00427{transform:matrix(0.124769,0.002994,-0.005998,0.249928,0,0);-ms-transform:matrix(0.124769,0.002994,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.124769,0.002994,-0.005998,0.249928,0,0);}
.m8_c00427{transform:matrix(0.144868,0.001449,-0.002500,0.249988,0,0);-ms-transform:matrix(0.144868,0.001449,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.144868,0.001449,-0.002500,0.249988,0,0);}
.m17_c00427{transform:matrix(0.187950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187950,0.000000,0.000000,0.250000,0,0);}
.me_c00427{transform:matrix(0.190920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190920,0.000000,0.000000,0.250000,0,0);}
.m16_c00427{transform:matrix(0.192095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192095,0.000000,0.000000,0.250000,0,0);}
.m13_c00427{transform:matrix(0.246940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246940,0.000000,0.000000,0.250000,0,0);}
.m10_c00427{transform:matrix(0.248395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248395,0.000000,0.000000,0.250000,0,0);}
.ma_c00427{transform:matrix(0.290800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290800,0.000000,0.000000,0.250000,0,0);}
.m3_c00427{transform:matrix(0.291771,0.007003,-0.005998,0.249928,0,0);-ms-transform:matrix(0.291771,0.007003,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.291771,0.007003,-0.005998,0.249928,0,0);}
.mc_c00427{transform:matrix(0.293845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293845,0.000000,0.000000,0.250000,0,0);}
.m14_c00427{transform:matrix(0.313845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313845,0.000000,0.000000,0.250000,0,0);}
.m15_c00427{transform:matrix(0.422020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422020,0.000000,0.000000,0.250000,0,0);}
.m6_c00427{transform:matrix(0.480186,0.004802,-0.002500,0.249988,0,0);-ms-transform:matrix(0.480186,0.004802,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.480186,0.004802,-0.002500,0.249988,0,0);}
.m9_c00427{transform:matrix(0.518780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518780,0.000000,0.000000,0.250000,0,0);}
.m11_c00427{transform:matrix(0.569920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.569920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.569920,0.000000,0.000000,0.250000,0,0);}
.m12_c00427{transform:matrix(0.781500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.781500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.781500,0.000000,0.000000,0.250000,0,0);}
.md_c00427{transform:matrix(0.817875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.817875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.817875,0.000000,0.000000,0.250000,0,0);}
.mf_c00427{transform:matrix(1.164700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.164700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.164700,0.000000,0.000000,0.250000,0,0);}
.m5_c00427{transform:matrix(2.020109,0.020201,-0.002500,0.249988,0,0);-ms-transform:matrix(2.020109,0.020201,-0.002500,0.249988,0,0);-webkit-transform:matrix(2.020109,0.020201,-0.002500,0.249988,0,0);}
.mb_c00427{transform:matrix(2.572375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.572375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.572375,0.000000,0.000000,0.250000,0,0);}
.v0_c00427{vertical-align:0.000000px;}
.ls0_c00427{letter-spacing:0.000000px;}
.sc__c00427{text-shadow:none;}
.sc0_c00427{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__c00427{-webkit-text-stroke:0px transparent;}
.sc0_c00427{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00427{word-spacing:0.000000px;}
.fc0_c00427{color:transparent;}
.fs4_c00427{font-size:18.000000px;}
.fs2_c00427{font-size:24.000000px;}
.fs3_c00427{font-size:30.000000px;}
.fs5_c00427{font-size:54.000000px;}
.fs1_c00427{font-size:54.002700px;}
.fs0_c00427{font-size:150.043194px;}
.y0_c00427{bottom:0.000000px;}
.y11_c00427{bottom:37.530000px;}
.y10_c00427{bottom:38.070000px;}
.y13_c00427{bottom:44.010000px;}
.y12_c00427{bottom:46.170000px;}
.yf_c00427{bottom:51.030000px;}
.ye_c00427{bottom:130.410000px;}
.yd_c00427{bottom:180.360000px;}
.yc_c00427{bottom:183.330000px;}
.yb_c00427{bottom:202.230000px;}
.ya_c00427{bottom:407.160000px;}
.y9_c00427{bottom:1128.716175px;}
.y8_c00427{bottom:1129.050120px;}
.y7_c00427{bottom:1129.591275px;}
.y6_c00427{bottom:1132.380000px;}
.y5_c00427{bottom:1222.440108px;}
.y4_c00427{bottom:1225.083192px;}
.y3_c00427{bottom:1227.442848px;}
.y2_c00427{bottom:1228.192656px;}
.y1_c00427{bottom:1228.771500px;}
.h6_c00427{height:18.000000px;}
.h4_c00427{height:24.000000px;}
.h5_c00427{height:30.000000px;}
.h7_c00427{height:54.000000px;}
.h3_c00427{height:54.002700px;}
.h2_c00427{height:150.043194px;}
.h1_c00427{height:1251.000000px;}
.h0_c00427{height:1251.150000px;}
.w0_c00427{width:915.000000px;}
.x0_c00427{left:0.000000px;}
.x1_c00427{left:426.510000px;}
.x2_c00427{left:450.628500px;}
.x3_c00427{left:481.870500px;}
.x4_c00427{left:580.189500px;}
.x5_c00427{left:690.318000px;}
.x6_c00427{left:705.148500px;}
.x7_c00427{left:759.264000px;}
.x8_c00427{left:792.658500px;}
.xe_c00427{left:894.240000px;}
.x11_c00427{left:897.480000px;}
.x10_c00427{left:901.530000px;}
.xf_c00427{left:903.150000px;}
.xc_c00427{left:907.200000px;}
.xb_c00427{left:908.280000px;}
.xa_c00427{left:909.360000px;}
.x9_c00427{left:910.980000px;}
.xd_c00427{left:912.330000px;}
@media print{
.v0_c00427{vertical-align:0.000000pt;}
.ls0_c00427{letter-spacing:0.000000pt;}
.ws0_c00427{word-spacing:0.000000pt;}
.fs4_c00427{font-size:16.000000pt;}
.fs2_c00427{font-size:21.333333pt;}
.fs3_c00427{font-size:26.666667pt;}
.fs5_c00427{font-size:48.000000pt;}
.fs1_c00427{font-size:48.002400pt;}
.fs0_c00427{font-size:133.371728pt;}
.y0_c00427{bottom:0.000000pt;}
.y11_c00427{bottom:33.360000pt;}
.y10_c00427{bottom:33.840000pt;}
.y13_c00427{bottom:39.120000pt;}
.y12_c00427{bottom:41.040000pt;}
.yf_c00427{bottom:45.360000pt;}
.ye_c00427{bottom:115.920000pt;}
.yd_c00427{bottom:160.320000pt;}
.yc_c00427{bottom:162.960000pt;}
.yb_c00427{bottom:179.760000pt;}
.ya_c00427{bottom:361.920000pt;}
.y9_c00427{bottom:1003.303267pt;}
.y8_c00427{bottom:1003.600107pt;}
.y7_c00427{bottom:1004.081133pt;}
.y6_c00427{bottom:1006.560000pt;}
.y5_c00427{bottom:1086.613429pt;}
.y4_c00427{bottom:1088.962837pt;}
.y3_c00427{bottom:1091.060309pt;}
.y2_c00427{bottom:1091.726805pt;}
.y1_c00427{bottom:1092.241333pt;}
.h6_c00427{height:16.000000pt;}
.h4_c00427{height:21.333333pt;}
.h5_c00427{height:26.666667pt;}
.h7_c00427{height:48.000000pt;}
.h3_c00427{height:48.002400pt;}
.h2_c00427{height:133.371728pt;}
.h1_c00427{height:1112.000000pt;}
.h0_c00427{height:1112.133333pt;}
.w0_c00427{width:813.333333pt;}
.x0_c00427{left:0.000000pt;}
.x1_c00427{left:379.120000pt;}
.x2_c00427{left:400.558667pt;}
.x3_c00427{left:428.329333pt;}
.x4_c00427{left:515.724000pt;}
.x5_c00427{left:613.616000pt;}
.x6_c00427{left:626.798667pt;}
.x7_c00427{left:674.901333pt;}
.x8_c00427{left:704.585333pt;}
.xe_c00427{left:794.880000pt;}
.x11_c00427{left:797.760000pt;}
.x10_c00427{left:801.360000pt;}
.xf_c00427{left:802.800000pt;}
.xc_c00427{left:806.400000pt;}
.xb_c00427{left:807.360000pt;}
.xa_c00427{left:808.320000pt;}
.x9_c00427{left:809.760000pt;}
.xd_c00427{left:810.960000pt;}
}





/* 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_c00428 {
    display:none;
  }
  .loading-indicator_c00428.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00428 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_c00428 { 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_c00428" -> "#page-container .classname_c00428")
 */
.pf_c00428 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00428 { /* 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_c00428.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00428 { /* 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_c00428 { /* 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_c00428 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00428 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00428 {overflow:visible;}
  }
}
.c_c00428 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00428 { /* 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_c00428:after { /* webkit #35443 */
  content: '';
}
.t_c00428:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00428 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 */
}
.__c00428 { /* 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_c00428 { /* info for Javascript */
  display:none;
}
.l_c00428 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00428 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00428 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00428: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_c00428 {
    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_c00428.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00428.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_c00428 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00428{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00428;src:url('chunks/assets/font_c605e72f209fc835e906f064.woff2')format("woff");}.ff1_c00428{font-family:ff1_c00428;line-height:1.000000;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;}
.m99_c00428{transform:matrix(0.009484,0.000161,-0.004249,0.249964,0,0);-ms-transform:matrix(0.009484,0.000161,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.009484,0.000161,-0.004249,0.249964,0,0);}
.mcc_c00428{transform:matrix(0.010944,0.000164,-0.003750,0.249972,0,0);-ms-transform:matrix(0.010944,0.000164,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.010944,0.000164,-0.003750,0.249972,0,0);}
.m70_c00428{transform:matrix(0.083346,0.000833,-0.002500,0.249988,0,0);-ms-transform:matrix(0.083346,0.000833,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.083346,0.000833,-0.002500,0.249988,0,0);}
.m7c_c00428{transform:matrix(0.102955,0.001441,-0.003500,0.249976,0,0);-ms-transform:matrix(0.102955,0.001441,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.102955,0.001441,-0.003500,0.249976,0,0);}
.m8a_c00428{transform:matrix(0.113944,0.001937,-0.004249,0.249964,0,0);-ms-transform:matrix(0.113944,0.001937,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.113944,0.001937,-0.004249,0.249964,0,0);}
.m9a_c00428{transform:matrix(0.122795,0.002456,-0.004999,0.249950,0,0);-ms-transform:matrix(0.122795,0.002456,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.122795,0.002456,-0.004999,0.249950,0,0);}
.m40_c00428{transform:matrix(0.125019,0.001250,-0.002500,0.249988,0,0);-ms-transform:matrix(0.125019,0.001250,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.125019,0.001250,-0.002500,0.249988,0,0);}
.m4a_c00428{transform:matrix(0.127354,0.001274,-0.002500,0.249988,0,0);-ms-transform:matrix(0.127354,0.001274,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.127354,0.001274,-0.002500,0.249988,0,0);}
.m5f_c00428{transform:matrix(0.129724,0.001297,-0.002500,0.249988,0,0);-ms-transform:matrix(0.129724,0.001297,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.129724,0.001297,-0.002500,0.249988,0,0);}
.m32_c00428{transform:matrix(0.129750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129750,0.000000,0.000000,0.250000,0,0);}
.m18_c00428{transform:matrix(0.132265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132265,0.000000,0.000000,0.250000,0,0);}
.maf_c00428{transform:matrix(0.133835,0.002811,-0.005249,0.249945,0,0);-ms-transform:matrix(0.133835,0.002811,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.133835,0.002811,-0.005249,0.249945,0,0);}
.ma5_c00428{transform:matrix(0.134615,0.002827,-0.005249,0.249945,0,0);-ms-transform:matrix(0.134615,0.002827,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.134615,0.002827,-0.005249,0.249945,0,0);}
.m5e_c00428{transform:matrix(0.135148,0.001351,-0.002500,0.249988,0,0);-ms-transform:matrix(0.135148,0.001351,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.135148,0.001351,-0.002500,0.249988,0,0);}
.m7d_c00428{transform:matrix(0.136007,0.001904,-0.003500,0.249976,0,0);-ms-transform:matrix(0.136007,0.001904,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.136007,0.001904,-0.003500,0.249976,0,0);}
.ma6_c00428{transform:matrix(0.144068,0.003025,-0.005249,0.249945,0,0);-ms-transform:matrix(0.144068,0.003025,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.144068,0.003025,-0.005249,0.249945,0,0);}
.m41_c00428{transform:matrix(0.158402,0.001584,-0.002500,0.249988,0,0);-ms-transform:matrix(0.158402,0.001584,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.158402,0.001584,-0.002500,0.249988,0,0);}
.m89_c00428{transform:matrix(0.159102,0.002705,-0.004249,0.249964,0,0);-ms-transform:matrix(0.159102,0.002705,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.159102,0.002705,-0.004249,0.249964,0,0);}
.m82_c00428{transform:matrix(0.159824,0.002238,-0.003500,0.249976,0,0);-ms-transform:matrix(0.159824,0.002238,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.159824,0.002238,-0.003500,0.249976,0,0);}
.md6_c00428{transform:matrix(0.160032,0.002721,-0.004249,0.249964,0,0);-ms-transform:matrix(0.160032,0.002721,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.160032,0.002721,-0.004249,0.249964,0,0);}
.m60_c00428{transform:matrix(0.160377,0.001604,-0.002500,0.249988,0,0);-ms-transform:matrix(0.160377,0.001604,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.160377,0.001604,-0.002500,0.249988,0,0);}
.m71_c00428{transform:matrix(0.161037,0.001610,-0.002500,0.249988,0,0);-ms-transform:matrix(0.161037,0.001610,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.161037,0.001610,-0.002500,0.249988,0,0);}
.ma_c00428{transform:matrix(0.162643,0.000813,-0.001250,0.249997,0,0);-ms-transform:matrix(0.162643,0.000813,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.162643,0.000813,-0.001250,0.249997,0,0);}
.m80_c00428{transform:matrix(0.162759,0.002279,-0.003500,0.249976,0,0);-ms-transform:matrix(0.162759,0.002279,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.162759,0.002279,-0.003500,0.249976,0,0);}
.m50_c00428{transform:matrix(0.162982,0.001630,-0.002500,0.249988,0,0);-ms-transform:matrix(0.162982,0.001630,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.162982,0.001630,-0.002500,0.249988,0,0);}
.m9b_c00428{transform:matrix(0.165132,0.003303,-0.004999,0.249950,0,0);-ms-transform:matrix(0.165132,0.003303,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.165132,0.003303,-0.004999,0.249950,0,0);}
.m4b_c00428{transform:matrix(0.166872,0.001669,-0.002500,0.249988,0,0);-ms-transform:matrix(0.166872,0.001669,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.166872,0.001669,-0.002500,0.249988,0,0);}
.md4_c00428{transform:matrix(0.169321,0.002878,-0.004249,0.249964,0,0);-ms-transform:matrix(0.169321,0.002878,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.169321,0.002878,-0.004249,0.249964,0,0);}
.m7e_c00428{transform:matrix(0.171338,0.002399,-0.003500,0.249976,0,0);-ms-transform:matrix(0.171338,0.002399,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.171338,0.002399,-0.003500,0.249976,0,0);}
.m96_c00428{transform:matrix(0.171800,0.002921,-0.004249,0.249964,0,0);-ms-transform:matrix(0.171800,0.002921,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.171800,0.002921,-0.004249,0.249964,0,0);}
.m2d_c00428{transform:matrix(0.172725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172725,0.000000,0.000000,0.250000,0,0);}
.m4c_c00428{transform:matrix(0.173981,0.001740,-0.002500,0.249988,0,0);-ms-transform:matrix(0.173981,0.001740,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.173981,0.001740,-0.002500,0.249988,0,0);}
.m7f_c00428{transform:matrix(0.175768,0.002461,-0.003500,0.249976,0,0);-ms-transform:matrix(0.175768,0.002461,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.175768,0.002461,-0.003500,0.249976,0,0);}
.m19_c00428{transform:matrix(0.176125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176125,0.000000,0.000000,0.250000,0,0);}
.md5_c00428{transform:matrix(0.183473,0.003119,-0.004249,0.249964,0,0);-ms-transform:matrix(0.183473,0.003119,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.183473,0.003119,-0.004249,0.249964,0,0);}
.m28_c00428{transform:matrix(0.183725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183725,0.000000,0.000000,0.250000,0,0);}
.m69_c00428{transform:matrix(0.185821,0.001858,-0.002500,0.249988,0,0);-ms-transform:matrix(0.185821,0.001858,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.185821,0.001858,-0.002500,0.249988,0,0);}
.md2_c00428{transform:matrix(0.187283,0.003184,-0.004249,0.249964,0,0);-ms-transform:matrix(0.187283,0.003184,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.187283,0.003184,-0.004249,0.249964,0,0);}
.m79_c00428{transform:matrix(0.187831,0.001878,-0.002500,0.249988,0,0);-ms-transform:matrix(0.187831,0.001878,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.187831,0.001878,-0.002500,0.249988,0,0);}
.md1_c00428{transform:matrix(0.187913,0.003195,-0.004249,0.249964,0,0);-ms-transform:matrix(0.187913,0.003195,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.187913,0.003195,-0.004249,0.249964,0,0);}
.m90_c00428{transform:matrix(0.188058,0.003197,-0.004249,0.249964,0,0);-ms-transform:matrix(0.188058,0.003197,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.188058,0.003197,-0.004249,0.249964,0,0);}
.m2_c00428{transform:matrix(0.189858,0.000949,-0.001250,0.249997,0,0);-ms-transform:matrix(0.189858,0.000949,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.189858,0.000949,-0.001250,0.249997,0,0);}
.m83_c00428{transform:matrix(0.190116,0.002662,-0.003500,0.249976,0,0);-ms-transform:matrix(0.190116,0.002662,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.190116,0.002662,-0.003500,0.249976,0,0);}
.m51_c00428{transform:matrix(0.190125,0.001901,-0.002500,0.249988,0,0);-ms-transform:matrix(0.190125,0.001901,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.190125,0.001901,-0.002500,0.249988,0,0);}
.m46_c00428{transform:matrix(0.190175,0.001902,-0.002500,0.249988,0,0);-ms-transform:matrix(0.190175,0.001902,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.190175,0.001902,-0.002500,0.249988,0,0);}
.m6_c00428{transform:matrix(0.190183,0.000951,-0.001250,0.249997,0,0);-ms-transform:matrix(0.190183,0.000951,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.190183,0.000951,-0.001250,0.249997,0,0);}
.m84_c00428{transform:matrix(0.192411,0.002694,-0.003500,0.249976,0,0);-ms-transform:matrix(0.192411,0.002694,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.192411,0.002694,-0.003500,0.249976,0,0);}
.me4_c00428{transform:matrix(0.192504,0.005583,-0.007247,0.249895,0,0);-ms-transform:matrix(0.192504,0.005583,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.192504,0.005583,-0.007247,0.249895,0,0);}
.m9d_c00428{transform:matrix(0.192606,0.003852,-0.004999,0.249950,0,0);-ms-transform:matrix(0.192606,0.003852,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.192606,0.003852,-0.004999,0.249950,0,0);}
.m4_c00428{transform:matrix(0.192643,0.000963,-0.001250,0.249997,0,0);-ms-transform:matrix(0.192643,0.000963,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.192643,0.000963,-0.001250,0.249997,0,0);}
.m68_c00428{transform:matrix(0.192845,0.001928,-0.002500,0.249988,0,0);-ms-transform:matrix(0.192845,0.001928,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.192845,0.001928,-0.002500,0.249988,0,0);}
.m9_c00428{transform:matrix(0.193768,0.000969,-0.001250,0.249997,0,0);-ms-transform:matrix(0.193768,0.000969,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.193768,0.000969,-0.001250,0.249997,0,0);}
.m73_c00428{transform:matrix(0.193795,0.001938,-0.002500,0.249988,0,0);-ms-transform:matrix(0.193795,0.001938,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.193795,0.001938,-0.002500,0.249988,0,0);}
.mbb_c00428{transform:matrix(0.194832,0.003312,-0.004249,0.249964,0,0);-ms-transform:matrix(0.194832,0.003312,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.194832,0.003312,-0.004249,0.249964,0,0);}
.md7_c00428{transform:matrix(0.195032,0.003316,-0.004249,0.249964,0,0);-ms-transform:matrix(0.195032,0.003316,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.195032,0.003316,-0.004249,0.249964,0,0);}
.md3_c00428{transform:matrix(0.195277,0.003320,-0.004249,0.249964,0,0);-ms-transform:matrix(0.195277,0.003320,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.195277,0.003320,-0.004249,0.249964,0,0);}
.m81_c00428{transform:matrix(0.195396,0.002736,-0.003500,0.249976,0,0);-ms-transform:matrix(0.195396,0.002736,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.195396,0.002736,-0.003500,0.249976,0,0);}
.me7_c00428{transform:matrix(0.196043,0.005685,-0.007247,0.249895,0,0);-ms-transform:matrix(0.196043,0.005685,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.196043,0.005685,-0.007247,0.249895,0,0);}
.m62_c00428{transform:matrix(0.196990,0.001970,-0.002500,0.249988,0,0);-ms-transform:matrix(0.196990,0.001970,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.196990,0.001970,-0.002500,0.249988,0,0);}
.me1_c00428{transform:matrix(0.197567,0.005729,-0.007247,0.249895,0,0);-ms-transform:matrix(0.197567,0.005729,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.197567,0.005729,-0.007247,0.249895,0,0);}
.mb9_c00428{transform:matrix(0.198356,0.003372,-0.004249,0.249964,0,0);-ms-transform:matrix(0.198356,0.003372,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.198356,0.003372,-0.004249,0.249964,0,0);}
.mac_c00428{transform:matrix(0.198711,0.004173,-0.005249,0.249945,0,0);-ms-transform:matrix(0.198711,0.004173,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.198711,0.004173,-0.005249,0.249945,0,0);}
.m1b_c00428{transform:matrix(0.201615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201615,0.000000,0.000000,0.250000,0,0);}
.m85_c00428{transform:matrix(0.202215,0.002831,-0.003500,0.249976,0,0);-ms-transform:matrix(0.202215,0.002831,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.202215,0.002831,-0.003500,0.249976,0,0);}
.m67_c00428{transform:matrix(0.203290,0.002033,-0.002500,0.249988,0,0);-ms-transform:matrix(0.203290,0.002033,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.203290,0.002033,-0.002500,0.249988,0,0);}
.m29_c00428{transform:matrix(0.203405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203405,0.000000,0.000000,0.250000,0,0);}
.mb7_c00428{transform:matrix(0.204156,0.003471,-0.004249,0.249964,0,0);-ms-transform:matrix(0.204156,0.003471,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.204156,0.003471,-0.004249,0.249964,0,0);}
.m2f_c00428{transform:matrix(0.204190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204190,0.000000,0.000000,0.250000,0,0);}
.m47_c00428{transform:matrix(0.204450,0.002044,-0.002500,0.249988,0,0);-ms-transform:matrix(0.204450,0.002044,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.204450,0.002044,-0.002500,0.249988,0,0);}
.m11_c00428{transform:matrix(0.205258,0.000821,-0.001000,0.249998,0,0);-ms-transform:matrix(0.205258,0.000821,-0.001000,0.249998,0,0);-webkit-transform:matrix(0.205258,0.000821,-0.001000,0.249998,0,0);}
.m36_c00428{transform:matrix(0.205490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205490,0.000000,0.000000,0.250000,0,0);}
.m3e_c00428{transform:matrix(0.206095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206095,0.000000,0.000000,0.250000,0,0);}
.m1f_c00428{transform:matrix(0.206740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206740,0.000000,0.000000,0.250000,0,0);}
.mb_c00428{transform:matrix(0.206842,0.001034,-0.001250,0.249997,0,0);-ms-transform:matrix(0.206842,0.001034,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.206842,0.001034,-0.001250,0.249997,0,0);}
.ma9_c00428{transform:matrix(0.207414,0.004356,-0.005249,0.249945,0,0);-ms-transform:matrix(0.207414,0.004356,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.207414,0.004356,-0.005249,0.249945,0,0);}
.m7_c00428{transform:matrix(0.208072,0.001040,-0.001250,0.249997,0,0);-ms-transform:matrix(0.208072,0.001040,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.208072,0.001040,-0.001250,0.249997,0,0);}
.m1_c00428{transform:matrix(0.208727,0.001044,-0.001250,0.249997,0,0);-ms-transform:matrix(0.208727,0.001044,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.208727,0.001044,-0.001250,0.249997,0,0);}
.mbd_c00428{transform:matrix(0.208755,0.003549,-0.004249,0.249964,0,0);-ms-transform:matrix(0.208755,0.003549,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.208755,0.003549,-0.004249,0.249964,0,0);}
.m6c_c00428{transform:matrix(0.209425,0.002094,-0.002500,0.249988,0,0);-ms-transform:matrix(0.209425,0.002094,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.209425,0.002094,-0.002500,0.249988,0,0);}
.m16_c00428{transform:matrix(0.211868,0.000847,-0.001000,0.249998,0,0);-ms-transform:matrix(0.211868,0.000847,-0.001000,0.249998,0,0);-webkit-transform:matrix(0.211868,0.000847,-0.001000,0.249998,0,0);}
.m98_c00428{transform:matrix(0.212734,0.003616,-0.004249,0.249964,0,0);-ms-transform:matrix(0.212734,0.003616,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.212734,0.003616,-0.004249,0.249964,0,0);}
.m66_c00428{transform:matrix(0.213554,0.002136,-0.002500,0.249988,0,0);-ms-transform:matrix(0.213554,0.002136,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.213554,0.002136,-0.002500,0.249988,0,0);}
.m48_c00428{transform:matrix(0.213839,0.002138,-0.002500,0.249988,0,0);-ms-transform:matrix(0.213839,0.002138,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.213839,0.002138,-0.002500,0.249988,0,0);}
.m97_c00428{transform:matrix(0.213924,0.003637,-0.004249,0.249964,0,0);-ms-transform:matrix(0.213924,0.003637,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.213924,0.003637,-0.004249,0.249964,0,0);}
.m9c_c00428{transform:matrix(0.215177,0.004304,-0.004999,0.249950,0,0);-ms-transform:matrix(0.215177,0.004304,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.215177,0.004304,-0.004999,0.249950,0,0);}
.m72_c00428{transform:matrix(0.215414,0.002154,-0.002500,0.249988,0,0);-ms-transform:matrix(0.215414,0.002154,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.215414,0.002154,-0.002500,0.249988,0,0);}
.m3b_c00428{transform:matrix(0.215960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215960,0.000000,0.000000,0.250000,0,0);}
.mab_c00428{transform:matrix(0.217657,0.004571,-0.005249,0.249945,0,0);-ms-transform:matrix(0.217657,0.004571,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.217657,0.004571,-0.005249,0.249945,0,0);}
.me5_c00428{transform:matrix(0.218288,0.006330,-0.007247,0.249895,0,0);-ms-transform:matrix(0.218288,0.006330,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.218288,0.006330,-0.007247,0.249895,0,0);}
.me0_c00428{transform:matrix(0.219128,0.006355,-0.007247,0.249895,0,0);-ms-transform:matrix(0.219128,0.006355,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.219128,0.006355,-0.007247,0.249895,0,0);}
.m12_c00428{transform:matrix(0.219313,0.000877,-0.001000,0.249998,0,0);-ms-transform:matrix(0.219313,0.000877,-0.001000,0.249998,0,0);-webkit-transform:matrix(0.219313,0.000877,-0.001000,0.249998,0,0);}
.m74_c00428{transform:matrix(0.219484,0.002195,-0.002500,0.249988,0,0);-ms-transform:matrix(0.219484,0.002195,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.219484,0.002195,-0.002500,0.249988,0,0);}
.ma2_c00428{transform:matrix(0.220131,0.004403,-0.004999,0.249950,0,0);-ms-transform:matrix(0.220131,0.004403,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.220131,0.004403,-0.004999,0.249950,0,0);}
.me3_c00428{transform:matrix(0.220242,0.006387,-0.007247,0.249895,0,0);-ms-transform:matrix(0.220242,0.006387,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.220242,0.006387,-0.007247,0.249895,0,0);}
.md_c00428{transform:matrix(0.220632,0.001103,-0.001250,0.249997,0,0);-ms-transform:matrix(0.220632,0.001103,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.220632,0.001103,-0.001250,0.249997,0,0);}
.m44_c00428{transform:matrix(0.220939,0.002209,-0.002500,0.249988,0,0);-ms-transform:matrix(0.220939,0.002209,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.220939,0.002209,-0.002500,0.249988,0,0);}
.mba_c00428{transform:matrix(0.222788,0.003787,-0.004249,0.249964,0,0);-ms-transform:matrix(0.222788,0.003787,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.222788,0.003787,-0.004249,0.249964,0,0);}
.m58_c00428{transform:matrix(0.223049,0.002230,-0.002500,0.249988,0,0);-ms-transform:matrix(0.223049,0.002230,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.223049,0.002230,-0.002500,0.249988,0,0);}
.m0_c00428{transform:matrix(0.223197,0.001116,-0.001250,0.249997,0,0);-ms-transform:matrix(0.223197,0.001116,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.223197,0.001116,-0.001250,0.249997,0,0);}
.mdc_c00428{transform:matrix(0.223573,0.003801,-0.004249,0.249964,0,0);-ms-transform:matrix(0.223573,0.003801,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.223573,0.003801,-0.004249,0.249964,0,0);}
.mdf_c00428{transform:matrix(0.223946,0.006494,-0.007247,0.249895,0,0);-ms-transform:matrix(0.223946,0.006494,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.223946,0.006494,-0.007247,0.249895,0,0);}
.m75_c00428{transform:matrix(0.224094,0.002241,-0.002500,0.249988,0,0);-ms-transform:matrix(0.224094,0.002241,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.224094,0.002241,-0.002500,0.249988,0,0);}
.mc_c00428{transform:matrix(0.224257,0.001121,-0.001250,0.249997,0,0);-ms-transform:matrix(0.224257,0.001121,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.224257,0.001121,-0.001250,0.249997,0,0);}
.mc9_c00428{transform:matrix(0.224655,0.003370,-0.003750,0.249972,0,0);-ms-transform:matrix(0.224655,0.003370,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.224655,0.003370,-0.003750,0.249972,0,0);}
.m4e_c00428{transform:matrix(0.224989,0.002250,-0.002500,0.249988,0,0);-ms-transform:matrix(0.224989,0.002250,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.224989,0.002250,-0.002500,0.249988,0,0);}
.m26_c00428{transform:matrix(0.225070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225070,0.000000,0.000000,0.250000,0,0);}
.m61_c00428{transform:matrix(0.225664,0.002257,-0.002500,0.249988,0,0);-ms-transform:matrix(0.225664,0.002257,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.225664,0.002257,-0.002500,0.249988,0,0);}
.m37_c00428{transform:matrix(0.225670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225670,0.000000,0.000000,0.250000,0,0);}
.m4d_c00428{transform:matrix(0.226409,0.002264,-0.002500,0.249988,0,0);-ms-transform:matrix(0.226409,0.002264,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.226409,0.002264,-0.002500,0.249988,0,0);}
.mda_c00428{transform:matrix(0.226447,0.003850,-0.004249,0.249964,0,0);-ms-transform:matrix(0.226447,0.003850,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.226447,0.003850,-0.004249,0.249964,0,0);}
.m43_c00428{transform:matrix(0.226929,0.002269,-0.002500,0.249988,0,0);-ms-transform:matrix(0.226929,0.002269,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.226929,0.002269,-0.002500,0.249988,0,0);}
.mc7_c00428{transform:matrix(0.227219,0.003408,-0.003750,0.249972,0,0);-ms-transform:matrix(0.227219,0.003408,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.227219,0.003408,-0.003750,0.249972,0,0);}
.m5c_c00428{transform:matrix(0.227419,0.002274,-0.002500,0.249988,0,0);-ms-transform:matrix(0.227419,0.002274,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.227419,0.002274,-0.002500,0.249988,0,0);}
.mcf_c00428{transform:matrix(0.227919,0.003419,-0.003750,0.249972,0,0);-ms-transform:matrix(0.227919,0.003419,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.227919,0.003419,-0.003750,0.249972,0,0);}
.m1d_c00428{transform:matrix(0.228105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228105,0.000000,0.000000,0.250000,0,0);}
.m56_c00428{transform:matrix(0.228124,0.002281,-0.002500,0.249988,0,0);-ms-transform:matrix(0.228124,0.002281,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.228124,0.002281,-0.002500,0.249988,0,0);}
.mc3_c00428{transform:matrix(0.228789,0.003432,-0.003750,0.249972,0,0);-ms-transform:matrix(0.228789,0.003432,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.228789,0.003432,-0.003750,0.249972,0,0);}
.m63_c00428{transform:matrix(0.228854,0.002289,-0.002500,0.249988,0,0);-ms-transform:matrix(0.228854,0.002289,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.228854,0.002289,-0.002500,0.249988,0,0);}
.m6a_c00428{transform:matrix(0.229444,0.002294,-0.002500,0.249988,0,0);-ms-transform:matrix(0.229444,0.002294,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.229444,0.002294,-0.002500,0.249988,0,0);}
.m9e_c00428{transform:matrix(0.229524,0.004590,-0.004999,0.249950,0,0);-ms-transform:matrix(0.229524,0.004590,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.229524,0.004590,-0.004999,0.249950,0,0);}
.m52_c00428{transform:matrix(0.229639,0.002296,-0.002500,0.249988,0,0);-ms-transform:matrix(0.229639,0.002296,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.229639,0.002296,-0.002500,0.249988,0,0);}
.m9f_c00428{transform:matrix(0.229729,0.004595,-0.004999,0.249950,0,0);-ms-transform:matrix(0.229729,0.004595,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.229729,0.004595,-0.004999,0.249950,0,0);}
.mb8_c00428{transform:matrix(0.230077,0.003911,-0.004249,0.249964,0,0);-ms-transform:matrix(0.230077,0.003911,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.230077,0.003911,-0.004249,0.249964,0,0);}
.m5_c00428{transform:matrix(0.230242,0.001151,-0.001250,0.249997,0,0);-ms-transform:matrix(0.230242,0.001151,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.230242,0.001151,-0.001250,0.249997,0,0);}
.mbc_c00428{transform:matrix(0.231482,0.003935,-0.004249,0.249964,0,0);-ms-transform:matrix(0.231482,0.003935,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.231482,0.003935,-0.004249,0.249964,0,0);}
.m8_c00428{transform:matrix(0.231612,0.001158,-0.001250,0.249997,0,0);-ms-transform:matrix(0.231612,0.001158,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.231612,0.001158,-0.001250,0.249997,0,0);}
.m65_c00428{transform:matrix(0.231718,0.002317,-0.002500,0.249988,0,0);-ms-transform:matrix(0.231718,0.002317,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.231718,0.002317,-0.002500,0.249988,0,0);}
.m30_c00428{transform:matrix(0.231840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231840,0.000000,0.000000,0.250000,0,0);}
.m42_c00428{transform:matrix(0.231848,0.002318,-0.002500,0.249988,0,0);-ms-transform:matrix(0.231848,0.002318,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.231848,0.002318,-0.002500,0.249988,0,0);}
.ma7_c00428{transform:matrix(0.231914,0.004870,-0.005249,0.249945,0,0);-ms-transform:matrix(0.231914,0.004870,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.231914,0.004870,-0.005249,0.249945,0,0);}
.m53_c00428{transform:matrix(0.231968,0.002320,-0.002500,0.249988,0,0);-ms-transform:matrix(0.231968,0.002320,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.231968,0.002320,-0.002500,0.249988,0,0);}
.m64_c00428{transform:matrix(0.232128,0.002321,-0.002500,0.249988,0,0);-ms-transform:matrix(0.232128,0.002321,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.232128,0.002321,-0.002500,0.249988,0,0);}
.m45_c00428{transform:matrix(0.232353,0.002324,-0.002500,0.249988,0,0);-ms-transform:matrix(0.232353,0.002324,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.232353,0.002324,-0.002500,0.249988,0,0);}
.m76_c00428{transform:matrix(0.232443,0.002324,-0.002500,0.249988,0,0);-ms-transform:matrix(0.232443,0.002324,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.232443,0.002324,-0.002500,0.249988,0,0);}
.m86_c00428{transform:matrix(0.232469,0.003487,-0.003750,0.249972,0,0);-ms-transform:matrix(0.232469,0.003487,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.232469,0.003487,-0.003750,0.249972,0,0);}
.me6_c00428{transform:matrix(0.233837,0.006781,-0.007247,0.249895,0,0);-ms-transform:matrix(0.233837,0.006781,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.233837,0.006781,-0.007247,0.249895,0,0);}
.me2_c00428{transform:matrix(0.234152,0.006790,-0.007247,0.249895,0,0);-ms-transform:matrix(0.234152,0.006790,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.234152,0.006790,-0.007247,0.249895,0,0);}
.mce_c00428{transform:matrix(0.234524,0.003518,-0.003750,0.249972,0,0);-ms-transform:matrix(0.234524,0.003518,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.234524,0.003518,-0.003750,0.249972,0,0);}
.m77_c00428{transform:matrix(0.234608,0.002346,-0.002500,0.249988,0,0);-ms-transform:matrix(0.234608,0.002346,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.234608,0.002346,-0.002500,0.249988,0,0);}
.me8_c00428{transform:matrix(0.234871,0.006811,-0.007247,0.249895,0,0);-ms-transform:matrix(0.234871,0.006811,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.234871,0.006811,-0.007247,0.249895,0,0);}
.m2b_c00428{transform:matrix(0.235080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235080,0.000000,0.000000,0.250000,0,0);}
.m31_c00428{transform:matrix(0.235145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235145,0.000000,0.000000,0.250000,0,0);}
.ma0_c00428{transform:matrix(0.235728,0.004715,-0.004999,0.249950,0,0);-ms-transform:matrix(0.235728,0.004715,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.235728,0.004715,-0.004999,0.249950,0,0);}
.mcd_c00428{transform:matrix(0.235893,0.003538,-0.003750,0.249972,0,0);-ms-transform:matrix(0.235893,0.003538,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.235893,0.003538,-0.003750,0.249972,0,0);}
.m2a_c00428{transform:matrix(0.236070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236070,0.000000,0.000000,0.250000,0,0);}
.m49_c00428{transform:matrix(0.236408,0.002364,-0.002500,0.249988,0,0);-ms-transform:matrix(0.236408,0.002364,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.236408,0.002364,-0.002500,0.249988,0,0);}
.m3_c00428{transform:matrix(0.236832,0.001184,-0.001250,0.249997,0,0);-ms-transform:matrix(0.236832,0.001184,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.236832,0.001184,-0.001250,0.249997,0,0);}
.m3c_c00428{transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237075,0.000000,0.000000,0.250000,0,0);}
.ma8_c00428{transform:matrix(0.237273,0.004983,-0.005249,0.249945,0,0);-ms-transform:matrix(0.237273,0.004983,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.237273,0.004983,-0.005249,0.249945,0,0);}
.m4f_c00428{transform:matrix(0.238303,0.002383,-0.002500,0.249988,0,0);-ms-transform:matrix(0.238303,0.002383,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.238303,0.002383,-0.002500,0.249988,0,0);}
.mbe_c00428{transform:matrix(0.239035,0.004064,-0.004249,0.249964,0,0);-ms-transform:matrix(0.239035,0.004064,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.239035,0.004064,-0.004249,0.249964,0,0);}
.m2e_c00428{transform:matrix(0.239400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239400,0.000000,0.000000,0.250000,0,0);}
.mca_c00428{transform:matrix(0.240608,0.003609,-0.003750,0.249972,0,0);-ms-transform:matrix(0.240608,0.003609,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.240608,0.003609,-0.003750,0.249972,0,0);}
.m5d_c00428{transform:matrix(0.240823,0.002408,-0.002500,0.249988,0,0);-ms-transform:matrix(0.240823,0.002408,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.240823,0.002408,-0.002500,0.249988,0,0);}
.m10_c00428{transform:matrix(0.241508,0.000966,-0.001000,0.249998,0,0);-ms-transform:matrix(0.241508,0.000966,-0.001000,0.249998,0,0);-webkit-transform:matrix(0.241508,0.000966,-0.001000,0.249998,0,0);}
.mc4_c00428{transform:matrix(0.241753,0.003626,-0.003750,0.249972,0,0);-ms-transform:matrix(0.241753,0.003626,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.241753,0.003626,-0.003750,0.249972,0,0);}
.mf_c00428{transform:matrix(0.242128,0.000969,-0.001000,0.249998,0,0);-ms-transform:matrix(0.242128,0.000969,-0.001000,0.249998,0,0);-webkit-transform:matrix(0.242128,0.000969,-0.001000,0.249998,0,0);}
.ma1_c00428{transform:matrix(0.242257,0.004845,-0.004999,0.249950,0,0);-ms-transform:matrix(0.242257,0.004845,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.242257,0.004845,-0.004999,0.249950,0,0);}
.m3d_c00428{transform:matrix(0.243210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243210,0.000000,0.000000,0.250000,0,0);}
.me_c00428{transform:matrix(0.243468,0.000974,-0.001000,0.249998,0,0);-ms-transform:matrix(0.243468,0.000974,-0.001000,0.249998,0,0);-webkit-transform:matrix(0.243468,0.000974,-0.001000,0.249998,0,0);}
.m1c_c00428{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00428{transform:matrix(0.243515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243515,0.000000,0.000000,0.250000,0,0);}
.m25_c00428{transform:matrix(0.244045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244045,0.000000,0.000000,0.250000,0,0);}
.m24_c00428{transform:matrix(0.244400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244400,0.000000,0.000000,0.250000,0,0);}
.m7a_c00428{transform:matrix(0.244960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244960,0.000000,0.000000,0.250000,0,0);}
.m34_c00428{transform:matrix(0.245085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245085,0.000000,0.000000,0.250000,0,0);}
.m39_c00428{transform:matrix(0.245155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245155,0.000000,0.000000,0.250000,0,0);}
.mbf_c00428{transform:matrix(0.245220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245220,0.000000,0.000000,0.250000,0,0);}
.m1e_c00428{transform:matrix(0.245455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245455,0.000000,0.000000,0.250000,0,0);}
.m78_c00428{transform:matrix(0.245528,0.002455,-0.002500,0.249988,0,0);-ms-transform:matrix(0.245528,0.002455,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.245528,0.002455,-0.002500,0.249988,0,0);}
.mc0_c00428{transform:matrix(0.245840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245840,0.000000,0.000000,0.250000,0,0);}
.m35_c00428{transform:matrix(0.246140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246140,0.000000,0.000000,0.250000,0,0);}
.m21_c00428{transform:matrix(0.246175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246175,0.000000,0.000000,0.250000,0,0);}
.m88_c00428{transform:matrix(0.246382,0.003696,-0.003750,0.249972,0,0);-ms-transform:matrix(0.246382,0.003696,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.246382,0.003696,-0.003750,0.249972,0,0);}
.mb0_c00428{transform:matrix(0.246816,0.005183,-0.005249,0.249945,0,0);-ms-transform:matrix(0.246816,0.005183,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.246816,0.005183,-0.005249,0.249945,0,0);}
.m23_c00428{transform:matrix(0.247460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247460,0.000000,0.000000,0.250000,0,0);}
.m87_c00428{transform:matrix(0.248247,0.003724,-0.003750,0.249972,0,0);-ms-transform:matrix(0.248247,0.003724,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.248247,0.003724,-0.003750,0.249972,0,0);}
.maa_c00428{transform:matrix(0.248580,0.005220,-0.005249,0.249945,0,0);-ms-transform:matrix(0.248580,0.005220,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.248580,0.005220,-0.005249,0.249945,0,0);}
.m13_c00428{transform:matrix(0.249003,0.000996,-0.001000,0.249998,0,0);-ms-transform:matrix(0.249003,0.000996,-0.001000,0.249998,0,0);-webkit-transform:matrix(0.249003,0.000996,-0.001000,0.249998,0,0);}
.m14_c00428{transform:matrix(0.249853,0.000999,-0.001000,0.249998,0,0);-ms-transform:matrix(0.249853,0.000999,-0.001000,0.249998,0,0);-webkit-transform:matrix(0.249853,0.000999,-0.001000,0.249998,0,0);}
.m15_c00428{transform:matrix(0.249968,0.001000,-0.001000,0.249998,0,0);-ms-transform:matrix(0.249968,0.001000,-0.001000,0.249998,0,0);-webkit-transform:matrix(0.249968,0.001000,-0.001000,0.249998,0,0);}
.m22_c00428{transform:matrix(0.252230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252230,0.000000,0.000000,0.250000,0,0);}
.md0_c00428{transform:matrix(0.252637,0.003790,-0.003750,0.249972,0,0);-ms-transform:matrix(0.252637,0.003790,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.252637,0.003790,-0.003750,0.249972,0,0);}
.m27_c00428{transform:matrix(0.253575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253575,0.000000,0.000000,0.250000,0,0);}
.m7b_c00428{transform:matrix(0.254405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254405,0.000000,0.000000,0.250000,0,0);}
.ma3_c00428{transform:matrix(0.254885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254885,0.000000,0.000000,0.250000,0,0);}
.m38_c00428{transform:matrix(0.255060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255060,0.000000,0.000000,0.250000,0,0);}
.m8c_c00428{transform:matrix(0.256093,0.004354,-0.004249,0.249964,0,0);-ms-transform:matrix(0.256093,0.004354,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.256093,0.004354,-0.004249,0.249964,0,0);}
.m3f_c00428{transform:matrix(0.257150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257150,0.000000,0.000000,0.250000,0,0);}
.m33_c00428{transform:matrix(0.257215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257215,0.000000,0.000000,0.250000,0,0);}
.m3a_c00428{transform:matrix(0.257955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257955,0.000000,0.000000,0.250000,0,0);}
.m17_c00428{transform:matrix(0.259038,0.001036,-0.001000,0.249998,0,0);-ms-transform:matrix(0.259038,0.001036,-0.001000,0.249998,0,0);-webkit-transform:matrix(0.259038,0.001036,-0.001000,0.249998,0,0);}
.m20_c00428{transform:matrix(0.259535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259535,0.000000,0.000000,0.250000,0,0);}
.m55_c00428{transform:matrix(0.260127,0.002601,-0.002500,0.249988,0,0);-ms-transform:matrix(0.260127,0.002601,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.260127,0.002601,-0.002500,0.249988,0,0);}
.mdb_c00428{transform:matrix(0.261382,0.004443,-0.004249,0.249964,0,0);-ms-transform:matrix(0.261382,0.004443,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.261382,0.004443,-0.004249,0.249964,0,0);}
.mcb_c00428{transform:matrix(0.263625,0.003954,-0.003750,0.249972,0,0);-ms-transform:matrix(0.263625,0.003954,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.263625,0.003954,-0.003750,0.249972,0,0);}
.mad_c00428{transform:matrix(0.264112,0.005546,-0.005249,0.249945,0,0);-ms-transform:matrix(0.264112,0.005546,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.264112,0.005546,-0.005249,0.249945,0,0);}
.ma4_c00428{transform:matrix(0.265340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265340,0.000000,0.000000,0.250000,0,0);}
.m57_c00428{transform:matrix(0.265677,0.002657,-0.002500,0.249988,0,0);-ms-transform:matrix(0.265677,0.002657,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.265677,0.002657,-0.002500,0.249988,0,0);}
.mc6_c00428{transform:matrix(0.266815,0.004002,-0.003750,0.249972,0,0);-ms-transform:matrix(0.266815,0.004002,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.266815,0.004002,-0.003750,0.249972,0,0);}
.m54_c00428{transform:matrix(0.267427,0.002674,-0.002500,0.249988,0,0);-ms-transform:matrix(0.267427,0.002674,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.267427,0.002674,-0.002500,0.249988,0,0);}
.mc1_c00428{transform:matrix(0.267690,0.004015,-0.003750,0.249972,0,0);-ms-transform:matrix(0.267690,0.004015,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.267690,0.004015,-0.003750,0.249972,0,0);}
.m2c_c00428{transform:matrix(0.267865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267865,0.000000,0.000000,0.250000,0,0);}
.mdd_c00428{transform:matrix(0.269901,0.004588,-0.004249,0.249964,0,0);-ms-transform:matrix(0.269901,0.004588,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.269901,0.004588,-0.004249,0.249964,0,0);}
.m6d_c00428{transform:matrix(0.272061,0.002721,-0.002500,0.249988,0,0);-ms-transform:matrix(0.272061,0.002721,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.272061,0.002721,-0.002500,0.249988,0,0);}
.md9_c00428{transform:matrix(0.272341,0.004630,-0.004249,0.249964,0,0);-ms-transform:matrix(0.272341,0.004630,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.272341,0.004630,-0.004249,0.249964,0,0);}
.mc5_c00428{transform:matrix(0.272374,0.004086,-0.003750,0.249972,0,0);-ms-transform:matrix(0.272374,0.004086,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.272374,0.004086,-0.003750,0.249972,0,0);}
.mc8_c00428{transform:matrix(0.273439,0.004102,-0.003750,0.249972,0,0);-ms-transform:matrix(0.273439,0.004102,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.273439,0.004102,-0.003750,0.249972,0,0);}
.m5b_c00428{transform:matrix(0.274476,0.002745,-0.002500,0.249988,0,0);-ms-transform:matrix(0.274476,0.002745,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.274476,0.002745,-0.002500,0.249988,0,0);}
.m59_c00428{transform:matrix(0.275361,0.002754,-0.002500,0.249988,0,0);-ms-transform:matrix(0.275361,0.002754,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.275361,0.002754,-0.002500,0.249988,0,0);}
.mc2_c00428{transform:matrix(0.275844,0.004138,-0.003750,0.249972,0,0);-ms-transform:matrix(0.275844,0.004138,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.275844,0.004138,-0.003750,0.249972,0,0);}
.m5a_c00428{transform:matrix(0.281366,0.002814,-0.002500,0.249988,0,0);-ms-transform:matrix(0.281366,0.002814,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.281366,0.002814,-0.002500,0.249988,0,0);}
.m6e_c00428{transform:matrix(0.289056,0.002891,-0.002500,0.249988,0,0);-ms-transform:matrix(0.289056,0.002891,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.289056,0.002891,-0.002500,0.249988,0,0);}
.m6f_c00428{transform:matrix(0.290390,0.002904,-0.002500,0.249988,0,0);-ms-transform:matrix(0.290390,0.002904,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.290390,0.002904,-0.002500,0.249988,0,0);}
.m6b_c00428{transform:matrix(0.292020,0.002920,-0.002500,0.249988,0,0);-ms-transform:matrix(0.292020,0.002920,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.292020,0.002920,-0.002500,0.249988,0,0);}
.m8f_c00428{transform:matrix(0.292108,0.004966,-0.004249,0.249964,0,0);-ms-transform:matrix(0.292108,0.004966,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.292108,0.004966,-0.004249,0.249964,0,0);}
.mb6_c00428{transform:matrix(0.292180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292180,0.000000,0.000000,0.250000,0,0);}
.m8b_c00428{transform:matrix(0.296572,0.005042,-0.004249,0.249964,0,0);-ms-transform:matrix(0.296572,0.005042,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.296572,0.005042,-0.004249,0.249964,0,0);}
.m8e_c00428{transform:matrix(0.298197,0.005069,-0.004249,0.249964,0,0);-ms-transform:matrix(0.298197,0.005069,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.298197,0.005069,-0.004249,0.249964,0,0);}
.me9_c00428{transform:matrix(0.302578,0.008775,-0.007247,0.249895,0,0);-ms-transform:matrix(0.302578,0.008775,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.302578,0.008775,-0.007247,0.249895,0,0);}
.mb1_c00428{transform:matrix(0.303893,0.006382,-0.005249,0.249945,0,0);-ms-transform:matrix(0.303893,0.006382,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.303893,0.006382,-0.005249,0.249945,0,0);}
.md8_c00428{transform:matrix(0.306396,0.005209,-0.004249,0.249964,0,0);-ms-transform:matrix(0.306396,0.005209,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.306396,0.005209,-0.004249,0.249964,0,0);}
.mea_c00428{transform:matrix(0.311029,0.009020,-0.007247,0.249895,0,0);-ms-transform:matrix(0.311029,0.009020,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.311029,0.009020,-0.007247,0.249895,0,0);}
.m8d_c00428{transform:matrix(0.314780,0.005351,-0.004249,0.249964,0,0);-ms-transform:matrix(0.314780,0.005351,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.314780,0.005351,-0.004249,0.249964,0,0);}
.m91_c00428{transform:matrix(0.328523,0.005585,-0.004249,0.249964,0,0);-ms-transform:matrix(0.328523,0.005585,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.328523,0.005585,-0.004249,0.249964,0,0);}
.mae_c00428{transform:matrix(0.329992,0.006930,-0.005249,0.249945,0,0);-ms-transform:matrix(0.329992,0.006930,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.329992,0.006930,-0.005249,0.249945,0,0);}
.mde_c00428{transform:matrix(0.626500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.626500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.626500,0.000000,0.000000,0.250000,0,0);}
.mb4_c00428{transform:matrix(0.707589,0.014859,-0.005249,0.249945,0,0);-ms-transform:matrix(0.707589,0.014859,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.707589,0.014859,-0.005249,0.249945,0,0);}
.m95_c00428{transform:matrix(0.750362,0.012756,-0.004249,0.249964,0,0);-ms-transform:matrix(0.750362,0.012756,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.750362,0.012756,-0.004249,0.249964,0,0);}
.mb5_c00428{transform:matrix(1.419887,0.029818,-0.005249,0.249945,0,0);-ms-transform:matrix(1.419887,0.029818,-0.005249,0.249945,0,0);-webkit-transform:matrix(1.419887,0.029818,-0.005249,0.249945,0,0);}
.m92_c00428{transform:matrix(1.440517,0.024489,-0.004249,0.249964,0,0);-ms-transform:matrix(1.440517,0.024489,-0.004249,0.249964,0,0);-webkit-transform:matrix(1.440517,0.024489,-0.004249,0.249964,0,0);}
.m93_c00428{transform:matrix(1.898646,0.032277,-0.004249,0.249964,0,0);-ms-transform:matrix(1.898646,0.032277,-0.004249,0.249964,0,0);-webkit-transform:matrix(1.898646,0.032277,-0.004249,0.249964,0,0);}
.mb3_c00428{transform:matrix(2.450045,0.051451,-0.005249,0.249945,0,0);-ms-transform:matrix(2.450045,0.051451,-0.005249,0.249945,0,0);-webkit-transform:matrix(2.450045,0.051451,-0.005249,0.249945,0,0);}
.m94_c00428{transform:matrix(3.180126,0.054062,-0.004249,0.249964,0,0);-ms-transform:matrix(3.180126,0.054062,-0.004249,0.249964,0,0);-webkit-transform:matrix(3.180126,0.054062,-0.004249,0.249964,0,0);}
.mb2_c00428{transform:matrix(3.955668,0.083069,-0.005249,0.249945,0,0);-ms-transform:matrix(3.955668,0.083069,-0.005249,0.249945,0,0);-webkit-transform:matrix(3.955668,0.083069,-0.005249,0.249945,0,0);}
.v0_c00428{vertical-align:0.000000px;}
.ls0_c00428{letter-spacing:0.000000px;}
.sc__c00428{text-shadow:none;}
.sc0_c00428{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__c00428{-webkit-text-stroke:0px transparent;}
.sc0_c00428{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00428{word-spacing:0.000000px;}
.fc0_c00428{color:transparent;}
.fsa_c00428{font-size:24.003468px;}
.fse_c00428{font-size:24.005291px;}
.fs16_c00428{font-size:24.010090px;}
.fs14_c00428{font-size:54.000000px;}
.fsf_c00428{font-size:66.000000px;}
.fs6_c00428{font-size:66.003300px;}
.fs9_c00428{font-size:66.009536px;}
.fs3_c00428{font-size:72.000000px;}
.fs5_c00428{font-size:72.003600px;}
.fs11_c00428{font-size:72.008100px;}
.fs13_c00428{font-size:72.010403px;}
.fs2_c00428{font-size:78.000000px;}
.fs1_c00428{font-size:78.000624px;}
.fs8_c00428{font-size:78.008775px;}
.fsd_c00428{font-size:78.017197px;}
.fs0_c00428{font-size:84.001050px;}
.fs4_c00428{font-size:84.004200px;}
.fs10_c00428{font-size:84.012137px;}
.fsc_c00428{font-size:84.016798px;}
.fs15_c00428{font-size:84.035315px;}
.fsb_c00428{font-size:90.013004px;}
.fs7_c00428{font-size:102.009996px;}
.fs12_c00428{font-size:102.014738px;}
.y0_c00428{bottom:0.000000px;}
.yce_c00428{bottom:53.600911px;}
.ycd_c00428{bottom:54.596017px;}
.yd0_c00428{bottom:56.687993px;}
.ycf_c00428{bottom:56.688298px;}
.ycc_c00428{bottom:57.175089px;}
.ycb_c00428{bottom:58.764361px;}
.yca_c00428{bottom:59.727277px;}
.yc9_c00428{bottom:61.616221px;}
.yc8_c00428{bottom:65.188398px;}
.yc7_c00428{bottom:66.464166px;}
.yc6_c00428{bottom:68.958151px;}
.yc5_c00428{bottom:70.482000px;}
.yc3_c00428{bottom:96.025539px;}
.yc2_c00428{bottom:96.573459px;}
.yc1_c00428{bottom:97.775856px;}
.yc0_c00428{bottom:99.041430px;}
.ybf_c00428{bottom:100.963725px;}
.ybe_c00428{bottom:101.786942px;}
.ybd_c00428{bottom:128.081619px;}
.ybc_c00428{bottom:128.621454px;}
.ybb_c00428{bottom:129.751206px;}
.yba_c00428{bottom:130.320595px;}
.yb9_c00428{bottom:132.170952px;}
.yb8_c00428{bottom:133.700671px;}
.yb7_c00428{bottom:135.544500px;}
.yc4_c00428{bottom:135.948000px;}
.yb6_c00428{bottom:170.602523px;}
.yb5_c00428{bottom:171.434303px;}
.yb4_c00428{bottom:172.289910px;}
.yb3_c00428{bottom:173.522153px;}
.yb2_c00428{bottom:174.693690px;}
.yb1_c00428{bottom:200.598832px;}
.yb0_c00428{bottom:201.093112px;}
.yaf_c00428{bottom:201.587280px;}
.yae_c00428{bottom:203.074553px;}
.yad_c00428{bottom:203.751060px;}
.yac_c00428{bottom:204.767925px;}
.yab_c00428{bottom:206.416567px;}
.yaa_c00428{bottom:207.068843px;}
.ya9_c00428{bottom:207.558892px;}
.ya8_c00428{bottom:209.048820px;}
.ya7_c00428{bottom:210.331500px;}
.ya6_c00428{bottom:244.752000px;}
.ya5_c00428{bottom:271.401285px;}
.ya4_c00428{bottom:273.127660px;}
.ya3_c00428{bottom:274.776083px;}
.ya2_c00428{bottom:275.547177px;}
.ya1_c00428{bottom:276.493048px;}
.ya0_c00428{bottom:277.241117px;}
.y9f_c00428{bottom:279.095043px;}
.y9e_c00428{bottom:279.993000px;}
.y9d_c00428{bottom:314.836500px;}
.y9c_c00428{bottom:333.977653px;}
.y9b_c00428{bottom:334.672386px;}
.y9a_c00428{bottom:336.786402px;}
.y97_c00428{bottom:340.073088px;}
.y96_c00428{bottom:340.740321px;}
.y95_c00428{bottom:341.876526px;}
.y99_c00428{bottom:342.850055px;}
.y94_c00428{bottom:344.946579px;}
.y93_c00428{bottom:346.079697px;}
.y92_c00428{bottom:346.809458px;}
.y98_c00428{bottom:348.029102px;}
.y91_c00428{bottom:348.646978px;}
.y90_c00428{bottom:349.582434px;}
.y8f_c00428{bottom:350.971521px;}
.y8e_c00428{bottom:352.569170px;}
.y8d_c00428{bottom:353.262390px;}
.y8c_c00428{bottom:353.701500px;}
.y8b_c00428{bottom:384.736500px;}
.y8a_c00428{bottom:411.219210px;}
.y89_c00428{bottom:414.778710px;}
.y88_c00428{bottom:417.241380px;}
.y87_c00428{bottom:418.959540px;}
.y86_c00428{bottom:420.984240px;}
.y85_c00428{bottom:421.847970px;}
.y84_c00428{bottom:423.364530px;}
.y83_c00428{bottom:423.987120px;}
.y82_c00428{bottom:424.443000px;}
.y81_c00428{bottom:448.581745px;}
.y80_c00428{bottom:456.196842px;}
.y7f_c00428{bottom:457.611807px;}
.y7e_c00428{bottom:458.188191px;}
.y7d_c00428{bottom:480.082311px;}
.y7c_c00428{bottom:481.990836px;}
.y7b_c00428{bottom:483.113583px;}
.y78_c00428{bottom:483.387520px;}
.y7a_c00428{bottom:484.781593px;}
.y77_c00428{bottom:485.834271px;}
.y76_c00428{bottom:488.091123px;}
.y79_c00428{bottom:489.780351px;}
.y75_c00428{bottom:491.286247px;}
.y74_c00428{bottom:492.052905px;}
.y73_c00428{bottom:494.269390px;}
.y72_c00428{bottom:494.651941px;}
.y71_c00428{bottom:495.181500px;}
.y70_c00428{bottom:527.376405px;}
.y6f_c00428{bottom:528.559792px;}
.y6e_c00428{bottom:529.203000px;}
.y6d_c00428{bottom:558.718950px;}
.y6c_c00428{bottom:560.430807px;}
.y6b_c00428{bottom:561.659664px;}
.y6a_c00428{bottom:562.290819px;}
.y69_c00428{bottom:563.837049px;}
.y68_c00428{bottom:564.457011px;}
.y67_c00428{bottom:565.375257px;}
.y66_c00428{bottom:565.968444px;}
.y65_c00428{bottom:566.409024px;}
.y64_c00428{bottom:566.731500px;}
.y63_c00428{bottom:598.746000px;}
.y62_c00428{bottom:627.670485px;}
.y61_c00428{bottom:629.220645px;}
.y60_c00428{bottom:630.451695px;}
.y5f_c00428{bottom:631.323960px;}
.y5e_c00428{bottom:632.212380px;}
.y5d_c00428{bottom:632.981820px;}
.y5c_c00428{bottom:633.308505px;}
.y5b_c00428{bottom:633.961635px;}
.y5a_c00428{bottom:634.263285px;}
.y59_c00428{bottom:634.501500px;}
.y58_c00428{bottom:667.168785px;}
.y57_c00428{bottom:667.957200px;}
.y56_c00428{bottom:668.392020px;}
.y55_c00428{bottom:668.812335px;}
.y54_c00428{bottom:669.601500px;}
.y53_c00428{bottom:699.097980px;}
.y52_c00428{bottom:699.801435px;}
.y51_c00428{bottom:700.280895px;}
.y50_c00428{bottom:700.702440px;}
.y4f_c00428{bottom:701.281155px;}
.y4e_c00428{bottom:702.414570px;}
.y4d_c00428{bottom:703.563210px;}
.y4c_c00428{bottom:704.864895px;}
.y4b_c00428{bottom:705.441120px;}
.y4a_c00428{bottom:706.710645px;}
.y49_c00428{bottom:707.099265px;}
.y48_c00428{bottom:707.402790px;}
.y47_c00428{bottom:709.285530px;}
.y3d_c00428{bottom:774.615720px;}
.y41_c00428{bottom:774.616155px;}
.y3e_c00428{bottom:774.616365px;}
.y3f_c00428{bottom:774.616410px;}
.y42_c00428{bottom:774.616470px;}
.y44_c00428{bottom:774.616605px;}
.y40_c00428{bottom:774.616725px;}
.y43_c00428{bottom:774.617130px;}
.y45_c00428{bottom:774.617250px;}
.y46_c00428{bottom:774.617265px;}
.y3c_c00428{bottom:808.443540px;}
.y3b_c00428{bottom:809.465190px;}
.y3a_c00428{bottom:809.886375px;}
.y39_c00428{bottom:810.436650px;}
.y38_c00428{bottom:811.768620px;}
.y37_c00428{bottom:812.052840px;}
.y36_c00428{bottom:813.053655px;}
.y35_c00428{bottom:813.748560px;}
.y34_c00428{bottom:814.290405px;}
.y33_c00428{bottom:814.589730px;}
.y32_c00428{bottom:844.019130px;}
.y31_c00428{bottom:845.199105px;}
.y30_c00428{bottom:845.466450px;}
.y2f_c00428{bottom:845.793105px;}
.y2e_c00428{bottom:846.668100px;}
.y2d_c00428{bottom:847.553625px;}
.y2c_c00428{bottom:848.336580px;}
.y2b_c00428{bottom:849.419880px;}
.y2a_c00428{bottom:849.725985px;}
.y29_c00428{bottom:849.961500px;}
.y28_c00428{bottom:881.154000px;}
.y27_c00428{bottom:914.473500px;}
.y26_c00428{bottom:914.784000px;}
.y25_c00428{bottom:915.015000px;}
.y24_c00428{bottom:915.627000px;}
.y23_c00428{bottom:915.793500px;}
.y22_c00428{bottom:916.489500px;}
.y21_c00428{bottom:916.629000px;}
.y20_c00428{bottom:917.181000px;}
.y1f_c00428{bottom:917.637000px;}
.y1e_c00428{bottom:917.869500px;}
.y1d_c00428{bottom:918.327000px;}
.y1c_c00428{bottom:918.541500px;}
.y1b_c00428{bottom:953.344500px;}
.y1a_c00428{bottom:986.284500px;}
.y19_c00428{bottom:1022.430000px;}
.y18_c00428{bottom:1056.745470px;}
.y17_c00428{bottom:1056.880488px;}
.y16_c00428{bottom:1057.194738px;}
.y15_c00428{bottom:1057.542552px;}
.y14_c00428{bottom:1057.893552px;}
.y13_c00428{bottom:1058.068518px;}
.y12_c00428{bottom:1058.249952px;}
.y11_c00428{bottom:1058.517792px;}
.y10_c00428{bottom:1058.907630px;}
.yf_c00428{bottom:1059.210000px;}
.ye_c00428{bottom:1095.675525px;}
.yd_c00428{bottom:1127.565953px;}
.yc_c00428{bottom:1127.787300px;}
.yb_c00428{bottom:1127.999100px;}
.ya_c00428{bottom:1128.178875px;}
.y9_c00428{bottom:1128.567705px;}
.y8_c00428{bottom:1128.789113px;}
.y7_c00428{bottom:1128.951105px;}
.y6_c00428{bottom:1129.389900px;}
.y5_c00428{bottom:1129.613992px;}
.y4_c00428{bottom:1130.168827px;}
.y3_c00428{bottom:1130.332170px;}
.y2_c00428{bottom:1130.653433px;}
.y1_c00428{bottom:1131.030000px;}
.hc_c00428{height:24.003468px;}
.h10_c00428{height:24.005291px;}
.h18_c00428{height:24.010090px;}
.h16_c00428{height:54.000000px;}
.h11_c00428{height:66.000000px;}
.h8_c00428{height:66.003300px;}
.hb_c00428{height:66.009536px;}
.h5_c00428{height:72.000000px;}
.h7_c00428{height:72.003600px;}
.h13_c00428{height:72.008100px;}
.h15_c00428{height:72.010403px;}
.h4_c00428{height:78.000000px;}
.h3_c00428{height:78.000624px;}
.ha_c00428{height:78.008775px;}
.hf_c00428{height:78.017197px;}
.h2_c00428{height:84.001050px;}
.h6_c00428{height:84.004200px;}
.h12_c00428{height:84.012137px;}
.he_c00428{height:84.016798px;}
.h17_c00428{height:84.035315px;}
.hd_c00428{height:90.013004px;}
.h9_c00428{height:102.009996px;}
.h14_c00428{height:102.014738px;}
.h1_c00428{height:1251.000000px;}
.h0_c00428{height:1251.150000px;}
.w0_c00428{width:915.000000px;}
.x0_c00428{left:0.000000px;}
.xf_c00428{left:122.268000px;}
.x1_c00428{left:123.340500px;}
.x15_c00428{left:144.990000px;}
.x62_c00428{left:146.241782px;}
.x55_c00428{left:156.832817px;}
.x65_c00428{left:158.494914px;}
.x50_c00428{left:165.528000px;}
.x16_c00428{left:167.670000px;}
.x43_c00428{left:175.746000px;}
.x17_c00428{left:197.640000px;}
.x2_c00428{left:198.654000px;}
.x5e_c00428{left:202.112468px;}
.x5c_c00428{left:207.987000px;}
.x33_c00428{left:209.113380px;}
.x40_c00428{left:241.218000px;}
.x3_c00428{left:262.906500px;}
.xe_c00428{left:264.062250px;}
.x18_c00428{left:275.130000px;}
.x38_c00428{left:285.394725px;}
.x4_c00428{left:295.575000px;}
.x27_c00428{left:296.730000px;}
.x19_c00428{left:306.450000px;}
.x1e_c00428{left:307.530000px;}
.x66_c00428{left:316.241458px;}
.x4a_c00428{left:317.539500px;}
.x4f_c00428{left:319.410000px;}
.x39_c00428{left:328.867575px;}
.x34_c00428{left:339.531465px;}
.x1f_c00428{left:340.740000px;}
.x3c_c00428{left:342.304500px;}
.x41_c00428{left:351.090000px;}
.x10_c00428{left:362.280000px;}
.x3d_c00428{left:373.261500px;}
.x48_c00428{left:374.273310px;}
.x2d_c00428{left:383.670000px;}
.x2e_c00428{left:385.162500px;}
.x56_c00428{left:392.234871px;}
.x1a_c00428{left:395.010000px;}
.x60_c00428{left:396.624000px;}
.x5_c00428{left:406.542000px;}
.x11_c00428{left:407.638500px;}
.x5f_c00428{left:417.444052px;}
.x4b_c00428{left:418.774500px;}
.x20_c00428{left:428.760000px;}
.x28_c00428{left:440.803500px;}
.x6_c00428{left:451.360500px;}
.x29_c00428{left:460.759500px;}
.x1b_c00428{left:462.780000px;}
.x35_c00428{left:463.796730px;}
.x63_c00428{left:472.069815px;}
.x2f_c00428{left:473.715000px;}
.x45_c00428{left:480.010159px;}
.x5d_c00428{left:493.380000px;}
.x4c_c00428{left:504.682500px;}
.x36_c00428{left:506.072955px;}
.x51_c00428{left:507.561000px;}
.x64_c00428{left:517.333500px;}
.x21_c00428{left:528.660000px;}
.x7_c00428{left:539.119500px;}
.x5a_c00428{left:548.700000px;}
.x1c_c00428{left:549.990000px;}
.x2a_c00428{left:560.169000px;}
.x30_c00428{left:561.214500px;}
.x8_c00428{left:571.518000px;}
.x1d_c00428{left:583.470000px;}
.x31_c00428{left:593.880000px;}
.x22_c00428{left:605.610000px;}
.x9_c00428{left:615.799500px;}
.x37_c00428{left:617.053125px;}
.x32_c00428{left:620.614500px;}
.x12_c00428{left:626.083500px;}
.x4d_c00428{left:627.816000px;}
.x61_c00428{left:637.173000px;}
.x5b_c00428{left:650.251500px;}
.x46_c00428{left:654.410617px;}
.x3a_c00428{left:659.990115px;}
.x57_c00428{left:667.831575px;}
.x23_c00428{left:670.140000px;}
.x2b_c00428{left:671.391000px;}
.x3e_c00428{left:672.435000px;}
.x3b_c00428{left:692.393640px;}
.xa_c00428{left:693.565500px;}
.x13_c00428{left:704.646000px;}
.x52_c00428{left:707.712000px;}
.x42_c00428{left:716.668500px;}
.xb_c00428{left:729.520500px;}
.x14_c00428{left:738.400500px;}
.x2c_c00428{left:748.614000px;}
.x24_c00428{left:759.780000px;}
.x53_c00428{left:761.817000px;}
.x58_c00428{left:763.925559px;}
.xc_c00428{left:771.880500px;}
.x47_c00428{left:773.737658px;}
.x25_c00428{left:783.000000px;}
.x54_c00428{left:793.590000px;}
.x59_c00428{left:795.507398px;}
.x49_c00428{left:797.330619px;}
.x4e_c00428{left:805.791000px;}
.x26_c00428{left:815.130000px;}
.xd_c00428{left:816.150000px;}
.x3f_c00428{left:827.451000px;}
.x44_c00428{left:838.359000px;}
@media print{
.v0_c00428{vertical-align:0.000000pt;}
.ls0_c00428{letter-spacing:0.000000pt;}
.ws0_c00428{word-spacing:0.000000pt;}
.fsa_c00428{font-size:21.336416pt;}
.fse_c00428{font-size:21.338037pt;}
.fs16_c00428{font-size:21.342302pt;}
.fs14_c00428{font-size:48.000000pt;}
.fsf_c00428{font-size:58.666667pt;}
.fs6_c00428{font-size:58.669600pt;}
.fs9_c00428{font-size:58.675143pt;}
.fs3_c00428{font-size:64.000000pt;}
.fs5_c00428{font-size:64.003200pt;}
.fs11_c00428{font-size:64.007200pt;}
.fs13_c00428{font-size:64.009247pt;}
.fs2_c00428{font-size:69.333333pt;}
.fs1_c00428{font-size:69.333888pt;}
.fs8_c00428{font-size:69.341133pt;}
.fsd_c00428{font-size:69.348620pt;}
.fs0_c00428{font-size:74.667600pt;}
.fs4_c00428{font-size:74.670400pt;}
.fs10_c00428{font-size:74.677455pt;}
.fsc_c00428{font-size:74.681599pt;}
.fs15_c00428{font-size:74.698057pt;}
.fsb_c00428{font-size:80.011559pt;}
.fs7_c00428{font-size:90.675552pt;}
.fs12_c00428{font-size:90.679767pt;}
.y0_c00428{bottom:0.000000pt;}
.yce_c00428{bottom:47.645255pt;}
.ycd_c00428{bottom:48.529793pt;}
.yd0_c00428{bottom:50.389327pt;}
.ycf_c00428{bottom:50.389599pt;}
.ycc_c00428{bottom:50.822301pt;}
.ycb_c00428{bottom:52.234988pt;}
.yca_c00428{bottom:53.090913pt;}
.yc9_c00428{bottom:54.769975pt;}
.yc8_c00428{bottom:57.945243pt;}
.yc7_c00428{bottom:59.079259pt;}
.yc6_c00428{bottom:61.296135pt;}
.yc5_c00428{bottom:62.650667pt;}
.yc3_c00428{bottom:85.356035pt;}
.yc2_c00428{bottom:85.843075pt;}
.yc1_c00428{bottom:86.911872pt;}
.yc0_c00428{bottom:88.036827pt;}
.ybf_c00428{bottom:89.745533pt;}
.ybe_c00428{bottom:90.477281pt;}
.ybd_c00428{bottom:113.850328pt;}
.ybc_c00428{bottom:114.330181pt;}
.ybb_c00428{bottom:115.334405pt;}
.yba_c00428{bottom:115.840529pt;}
.yb9_c00428{bottom:117.485291pt;}
.yb8_c00428{bottom:118.845041pt;}
.yb7_c00428{bottom:120.484000pt;}
.yc4_c00428{bottom:120.842667pt;}
.yb6_c00428{bottom:151.646687pt;}
.yb5_c00428{bottom:152.386047pt;}
.yb4_c00428{bottom:153.146587pt;}
.yb3_c00428{bottom:154.241913pt;}
.yb2_c00428{bottom:155.283280pt;}
.yb1_c00428{bottom:178.310073pt;}
.yb0_c00428{bottom:178.749433pt;}
.yaf_c00428{bottom:179.188693pt;}
.yae_c00428{bottom:180.510713pt;}
.yad_c00428{bottom:181.112053pt;}
.yac_c00428{bottom:182.015933pt;}
.yab_c00428{bottom:183.481393pt;}
.yaa_c00428{bottom:184.061193pt;}
.ya9_c00428{bottom:184.496793pt;}
.ya8_c00428{bottom:185.821173pt;}
.ya7_c00428{bottom:186.961333pt;}
.ya6_c00428{bottom:217.557333pt;}
.ya5_c00428{bottom:241.245587pt;}
.ya4_c00428{bottom:242.780143pt;}
.ya3_c00428{bottom:244.245407pt;}
.ya2_c00428{bottom:244.930824pt;}
.ya1_c00428{bottom:245.771599pt;}
.ya0_c00428{bottom:246.436548pt;}
.y9f_c00428{bottom:248.084483pt;}
.y9e_c00428{bottom:248.882667pt;}
.y9d_c00428{bottom:279.854667pt;}
.y9c_c00428{bottom:296.869025pt;}
.y9b_c00428{bottom:297.486565pt;}
.y9a_c00428{bottom:299.365691pt;}
.y97_c00428{bottom:302.287189pt;}
.y96_c00428{bottom:302.880285pt;}
.y95_c00428{bottom:303.890245pt;}
.y99_c00428{bottom:304.755604pt;}
.y94_c00428{bottom:306.619181pt;}
.y93_c00428{bottom:307.626397pt;}
.y92_c00428{bottom:308.275073pt;}
.y98_c00428{bottom:309.359201pt;}
.y91_c00428{bottom:309.908425pt;}
.y90_c00428{bottom:310.739941pt;}
.y8f_c00428{bottom:311.974685pt;}
.y8e_c00428{bottom:313.394817pt;}
.y8d_c00428{bottom:314.011013pt;}
.y8c_c00428{bottom:314.401333pt;}
.y8b_c00428{bottom:341.988000pt;}
.y8a_c00428{bottom:365.528187pt;}
.y89_c00428{bottom:368.692187pt;}
.y88_c00428{bottom:370.881227pt;}
.y87_c00428{bottom:372.408480pt;}
.y86_c00428{bottom:374.208213pt;}
.y85_c00428{bottom:374.975973pt;}
.y84_c00428{bottom:376.324027pt;}
.y83_c00428{bottom:376.877440pt;}
.y82_c00428{bottom:377.282667pt;}
.y81_c00428{bottom:398.739329pt;}
.y80_c00428{bottom:405.508304pt;}
.y7f_c00428{bottom:406.766051pt;}
.y7e_c00428{bottom:407.278392pt;}
.y7d_c00428{bottom:426.739832pt;}
.y7c_c00428{bottom:428.436299pt;}
.y7b_c00428{bottom:429.434296pt;}
.y78_c00428{bottom:429.677796pt;}
.y7a_c00428{bottom:430.916972pt;}
.y77_c00428{bottom:431.852685pt;}
.y76_c00428{bottom:433.858776pt;}
.y79_c00428{bottom:435.360312pt;}
.y75_c00428{bottom:436.698887pt;}
.y74_c00428{bottom:437.380360pt;}
.y73_c00428{bottom:439.350569pt;}
.y72_c00428{bottom:439.690615pt;}
.y71_c00428{bottom:440.161333pt;}
.y70_c00428{bottom:468.779027pt;}
.y6f_c00428{bottom:469.830927pt;}
.y6e_c00428{bottom:470.402667pt;}
.y6d_c00428{bottom:496.639067pt;}
.y6c_c00428{bottom:498.160717pt;}
.y6b_c00428{bottom:499.253035pt;}
.y6a_c00428{bottom:499.814061pt;}
.y69_c00428{bottom:501.188488pt;}
.y68_c00428{bottom:501.739565pt;}
.y67_c00428{bottom:502.555784pt;}
.y66_c00428{bottom:503.083061pt;}
.y65_c00428{bottom:503.474688pt;}
.y64_c00428{bottom:503.761333pt;}
.y63_c00428{bottom:532.218667pt;}
.y62_c00428{bottom:557.929320pt;}
.y61_c00428{bottom:559.307240pt;}
.y60_c00428{bottom:560.401507pt;}
.y5f_c00428{bottom:561.176853pt;}
.y5e_c00428{bottom:561.966560pt;}
.y5d_c00428{bottom:562.650507pt;}
.y5c_c00428{bottom:562.940893pt;}
.y5b_c00428{bottom:563.521453pt;}
.y5a_c00428{bottom:563.789587pt;}
.y59_c00428{bottom:564.001333pt;}
.y58_c00428{bottom:593.038920pt;}
.y57_c00428{bottom:593.739733pt;}
.y56_c00428{bottom:594.126240pt;}
.y55_c00428{bottom:594.499853pt;}
.y54_c00428{bottom:595.201333pt;}
.y53_c00428{bottom:621.420427pt;}
.y52_c00428{bottom:622.045720pt;}
.y51_c00428{bottom:622.471907pt;}
.y50_c00428{bottom:622.846613pt;}
.y4f_c00428{bottom:623.361027pt;}
.y4e_c00428{bottom:624.368507pt;}
.y4d_c00428{bottom:625.389520pt;}
.y4c_c00428{bottom:626.546573pt;}
.y4b_c00428{bottom:627.058773pt;}
.y4a_c00428{bottom:628.187240pt;}
.y49_c00428{bottom:628.532680pt;}
.y48_c00428{bottom:628.802480pt;}
.y47_c00428{bottom:630.476027pt;}
.y3d_c00428{bottom:688.547307pt;}
.y41_c00428{bottom:688.547693pt;}
.y3e_c00428{bottom:688.547880pt;}
.y3f_c00428{bottom:688.547920pt;}
.y42_c00428{bottom:688.547973pt;}
.y44_c00428{bottom:688.548093pt;}
.y40_c00428{bottom:688.548200pt;}
.y43_c00428{bottom:688.548560pt;}
.y45_c00428{bottom:688.548667pt;}
.y46_c00428{bottom:688.548680pt;}
.y3c_c00428{bottom:718.616480pt;}
.y3b_c00428{bottom:719.524613pt;}
.y3a_c00428{bottom:719.899000pt;}
.y39_c00428{bottom:720.388133pt;}
.y38_c00428{bottom:721.572107pt;}
.y37_c00428{bottom:721.824747pt;}
.y36_c00428{bottom:722.714360pt;}
.y35_c00428{bottom:723.332053pt;}
.y34_c00428{bottom:723.813693pt;}
.y33_c00428{bottom:724.079760pt;}
.y32_c00428{bottom:750.239227pt;}
.y31_c00428{bottom:751.288093pt;}
.y30_c00428{bottom:751.525733pt;}
.y2f_c00428{bottom:751.816093pt;}
.y2e_c00428{bottom:752.593867pt;}
.y2d_c00428{bottom:753.381000pt;}
.y2c_c00428{bottom:754.076960pt;}
.y2b_c00428{bottom:755.039893pt;}
.y2a_c00428{bottom:755.311987pt;}
.y29_c00428{bottom:755.521333pt;}
.y28_c00428{bottom:783.248000pt;}
.y27_c00428{bottom:812.865333pt;}
.y26_c00428{bottom:813.141333pt;}
.y25_c00428{bottom:813.346667pt;}
.y24_c00428{bottom:813.890667pt;}
.y23_c00428{bottom:814.038667pt;}
.y22_c00428{bottom:814.657333pt;}
.y21_c00428{bottom:814.781333pt;}
.y20_c00428{bottom:815.272000pt;}
.y1f_c00428{bottom:815.677333pt;}
.y1e_c00428{bottom:815.884000pt;}
.y1d_c00428{bottom:816.290667pt;}
.y1c_c00428{bottom:816.481333pt;}
.y1b_c00428{bottom:847.417333pt;}
.y1a_c00428{bottom:876.697333pt;}
.y19_c00428{bottom:908.826667pt;}
.y18_c00428{bottom:939.329307pt;}
.y17_c00428{bottom:939.449323pt;}
.y16_c00428{bottom:939.728656pt;}
.y15_c00428{bottom:940.037824pt;}
.y14_c00428{bottom:940.349824pt;}
.y13_c00428{bottom:940.505349pt;}
.y12_c00428{bottom:940.666624pt;}
.y11_c00428{bottom:940.904704pt;}
.y10_c00428{bottom:941.251227pt;}
.yf_c00428{bottom:941.520000pt;}
.ye_c00428{bottom:973.933800pt;}
.yd_c00428{bottom:1002.280847pt;}
.yc_c00428{bottom:1002.477600pt;}
.yb_c00428{bottom:1002.665867pt;}
.ya_c00428{bottom:1002.825667pt;}
.y9_c00428{bottom:1003.171293pt;}
.y8_c00428{bottom:1003.368100pt;}
.y7_c00428{bottom:1003.512093pt;}
.y6_c00428{bottom:1003.902133pt;}
.y5_c00428{bottom:1004.101327pt;}
.y4_c00428{bottom:1004.594513pt;}
.y3_c00428{bottom:1004.739707pt;}
.y2_c00428{bottom:1005.025273pt;}
.y1_c00428{bottom:1005.360000pt;}
.hc_c00428{height:21.336416pt;}
.h10_c00428{height:21.338037pt;}
.h18_c00428{height:21.342302pt;}
.h16_c00428{height:48.000000pt;}
.h11_c00428{height:58.666667pt;}
.h8_c00428{height:58.669600pt;}
.hb_c00428{height:58.675143pt;}
.h5_c00428{height:64.000000pt;}
.h7_c00428{height:64.003200pt;}
.h13_c00428{height:64.007200pt;}
.h15_c00428{height:64.009247pt;}
.h4_c00428{height:69.333333pt;}
.h3_c00428{height:69.333888pt;}
.ha_c00428{height:69.341133pt;}
.hf_c00428{height:69.348620pt;}
.h2_c00428{height:74.667600pt;}
.h6_c00428{height:74.670400pt;}
.h12_c00428{height:74.677455pt;}
.he_c00428{height:74.681599pt;}
.h17_c00428{height:74.698057pt;}
.hd_c00428{height:80.011559pt;}
.h9_c00428{height:90.675552pt;}
.h14_c00428{height:90.679767pt;}
.h1_c00428{height:1112.000000pt;}
.h0_c00428{height:1112.133333pt;}
.w0_c00428{width:813.333333pt;}
.x0_c00428{left:0.000000pt;}
.xf_c00428{left:108.682667pt;}
.x1_c00428{left:109.636000pt;}
.x15_c00428{left:128.880000pt;}
.x62_c00428{left:129.992695pt;}
.x55_c00428{left:139.406948pt;}
.x65_c00428{left:140.884368pt;}
.x50_c00428{left:147.136000pt;}
.x16_c00428{left:149.040000pt;}
.x43_c00428{left:156.218667pt;}
.x17_c00428{left:175.680000pt;}
.x2_c00428{left:176.581333pt;}
.x5e_c00428{left:179.655527pt;}
.x5c_c00428{left:184.877333pt;}
.x33_c00428{left:185.878560pt;}
.x40_c00428{left:214.416000pt;}
.x3_c00428{left:233.694667pt;}
.xe_c00428{left:234.722000pt;}
.x18_c00428{left:244.560000pt;}
.x38_c00428{left:253.684200pt;}
.x4_c00428{left:262.733333pt;}
.x27_c00428{left:263.760000pt;}
.x19_c00428{left:272.400000pt;}
.x1e_c00428{left:273.360000pt;}
.x66_c00428{left:281.103519pt;}
.x4a_c00428{left:282.257333pt;}
.x4f_c00428{left:283.920000pt;}
.x39_c00428{left:292.326733pt;}
.x34_c00428{left:301.805747pt;}
.x1f_c00428{left:302.880000pt;}
.x3c_c00428{left:304.270667pt;}
.x41_c00428{left:312.080000pt;}
.x10_c00428{left:322.026667pt;}
.x3d_c00428{left:331.788000pt;}
.x48_c00428{left:332.687387pt;}
.x2d_c00428{left:341.040000pt;}
.x2e_c00428{left:342.366667pt;}
.x56_c00428{left:348.653219pt;}
.x1a_c00428{left:351.120000pt;}
.x60_c00428{left:352.554667pt;}
.x5_c00428{left:361.370667pt;}
.x11_c00428{left:362.345333pt;}
.x5f_c00428{left:371.061380pt;}
.x4b_c00428{left:372.244000pt;}
.x20_c00428{left:381.120000pt;}
.x28_c00428{left:391.825333pt;}
.x6_c00428{left:401.209333pt;}
.x29_c00428{left:409.564000pt;}
.x1b_c00428{left:411.360000pt;}
.x35_c00428{left:412.263760pt;}
.x63_c00428{left:419.617613pt;}
.x2f_c00428{left:421.080000pt;}
.x45_c00428{left:426.675697pt;}
.x5d_c00428{left:438.560000pt;}
.x4c_c00428{left:448.606667pt;}
.x36_c00428{left:449.842627pt;}
.x51_c00428{left:451.165333pt;}
.x64_c00428{left:459.852000pt;}
.x21_c00428{left:469.920000pt;}
.x7_c00428{left:479.217333pt;}
.x5a_c00428{left:487.733333pt;}
.x1c_c00428{left:488.880000pt;}
.x2a_c00428{left:497.928000pt;}
.x30_c00428{left:498.857333pt;}
.x8_c00428{left:508.016000pt;}
.x1d_c00428{left:518.640000pt;}
.x31_c00428{left:527.893333pt;}
.x22_c00428{left:538.320000pt;}
.x9_c00428{left:547.377333pt;}
.x37_c00428{left:548.491667pt;}
.x32_c00428{left:551.657333pt;}
.x12_c00428{left:556.518667pt;}
.x4d_c00428{left:558.058667pt;}
.x61_c00428{left:566.376000pt;}
.x5b_c00428{left:578.001333pt;}
.x46_c00428{left:581.698327pt;}
.x3a_c00428{left:586.657880pt;}
.x57_c00428{left:593.628067pt;}
.x23_c00428{left:595.680000pt;}
.x2b_c00428{left:596.792000pt;}
.x3e_c00428{left:597.720000pt;}
.x3b_c00428{left:615.461013pt;}
.xa_c00428{left:616.502667pt;}
.x13_c00428{left:626.352000pt;}
.x52_c00428{left:629.077333pt;}
.x42_c00428{left:637.038667pt;}
.xb_c00428{left:648.462667pt;}
.x14_c00428{left:656.356000pt;}
.x2c_c00428{left:665.434667pt;}
.x24_c00428{left:675.360000pt;}
.x53_c00428{left:677.170667pt;}
.x58_c00428{left:679.044941pt;}
.xc_c00428{left:686.116000pt;}
.x47_c00428{left:687.766807pt;}
.x25_c00428{left:696.000000pt;}
.x54_c00428{left:705.413333pt;}
.x59_c00428{left:707.117687pt;}
.x49_c00428{left:708.738328pt;}
.x4e_c00428{left:716.258667pt;}
.x26_c00428{left:724.560000pt;}
.xd_c00428{left:725.466667pt;}
.x3f_c00428{left:735.512000pt;}
.x44_c00428{left:745.208000pt;}
}





/* 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_c00429 {
    display:none;
  }
  .loading-indicator_c00429.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00429 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_c00429 { 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_c00429" -> "#page-container .classname_c00429")
 */
.pf_c00429 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00429 { /* 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_c00429.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00429 { /* 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_c00429 { /* 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_c00429 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00429 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00429 {overflow:visible;}
  }
}
.c_c00429 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00429 { /* 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_c00429:after { /* webkit #35443 */
  content: '';
}
.t_c00429:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00429 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 */
}
.__c00429 { /* 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_c00429 { /* info for Javascript */
  display:none;
}
.l_c00429 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00429 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00429 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00429: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_c00429 {
    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_c00429.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00429.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_c00429 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00429{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00429;src:url('chunks/assets/font_fe3cd3c6b9706b260f6e1774.woff2')format("woff");}.ff1_c00429{font-family:ff1_c00429;line-height:1.000000;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;}
.m1_c00429{transform:matrix(0.080775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080775,0.000000,0.000000,0.250000,0,0);}
.m0_c00429{transform:matrix(0.154435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154435,0.000000,0.000000,0.250000,0,0);}
.m2_c00429{transform:matrix(0.228035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228035,0.000000,0.000000,0.250000,0,0);}
.v0_c00429{vertical-align:0.000000px;}
.ls0_c00429{letter-spacing:0.000000px;}
.sc__c00429{text-shadow:none;}
.sc0_c00429{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__c00429{-webkit-text-stroke:0px transparent;}
.sc0_c00429{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00429{word-spacing:0.000000px;}
.fc0_c00429{color:transparent;}
.fs0_c00429{font-size:18.000000px;}
.y0_c00429{bottom:0.000000px;}
.y2_c00429{bottom:1117.530000px;}
.y1_c00429{bottom:1120.104000px;}
.h2_c00429{height:18.000000px;}
.h1_c00429{height:1251.000000px;}
.h0_c00429{height:1251.150000px;}
.w0_c00429{width:915.000000px;}
.x0_c00429{left:0.000000px;}
.x3_c00429{left:624.240000px;}
.x1_c00429{left:770.850000px;}
.x2_c00429{left:854.280000px;}
@media print{
.v0_c00429{vertical-align:0.000000pt;}
.ls0_c00429{letter-spacing:0.000000pt;}
.ws0_c00429{word-spacing:0.000000pt;}
.fs0_c00429{font-size:16.000000pt;}
.y0_c00429{bottom:0.000000pt;}
.y2_c00429{bottom:993.360000pt;}
.y1_c00429{bottom:995.648000pt;}
.h2_c00429{height:16.000000pt;}
.h1_c00429{height:1112.000000pt;}
.h0_c00429{height:1112.133333pt;}
.w0_c00429{width:813.333333pt;}
.x0_c00429{left:0.000000pt;}
.x3_c00429{left:554.880000pt;}
.x1_c00429{left:685.200000pt;}
.x2_c00429{left:759.360000pt;}
}





/* 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_c00430 {
    display:none;
  }
  .loading-indicator_c00430.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00430 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_c00430 { 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_c00430" -> "#page-container .classname_c00430")
 */
.pf_c00430 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00430 { /* 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_c00430.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00430 { /* 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_c00430 { /* 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_c00430 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00430 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00430 {overflow:visible;}
  }
}
.c_c00430 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00430 { /* 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_c00430:after { /* webkit #35443 */
  content: '';
}
.t_c00430:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00430 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 */
}
.__c00430 { /* 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_c00430 { /* info for Javascript */
  display:none;
}
.l_c00430 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00430 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00430 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00430: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_c00430 {
    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_c00430.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00430.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_c00430 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00430{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00430;src:url('chunks/assets/font_c605e72f209fc835e906f064.woff2')format("woff");}.ff1_c00430{font-family:ff1_c00430;line-height:1.000000;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;}
.mff_c00430{transform:matrix(0.017292,0.000796,-0.011499,0.249735,0,0);-ms-transform:matrix(0.017292,0.000796,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.017292,0.000796,-0.011499,0.249735,0,0);}
.m9b_c00430{transform:matrix(0.025153,0.000352,-0.003500,0.249976,0,0);-ms-transform:matrix(0.025153,0.000352,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.025153,0.000352,-0.003500,0.249976,0,0);}
.m72_c00430{transform:matrix(0.124076,0.003974,-0.008004,0.249872,0,0);-ms-transform:matrix(0.124076,0.003974,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.124076,0.003974,-0.008004,0.249872,0,0);}
.mcd_c00430{transform:matrix(0.127952,0.003839,-0.007497,0.249888,0,0);-ms-transform:matrix(0.127952,0.003839,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.127952,0.003839,-0.007497,0.249888,0,0);}
.mc3_c00430{transform:matrix(0.168663,0.006922,-0.010252,0.249790,0,0);-ms-transform:matrix(0.168663,0.006922,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.168663,0.006922,-0.010252,0.249790,0,0);}
.m44_c00430{transform:matrix(0.173082,0.003635,-0.005249,0.249945,0,0);-ms-transform:matrix(0.173082,0.003635,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.173082,0.003635,-0.005249,0.249945,0,0);}
.m33_c00430{transform:matrix(0.175643,0.002810,-0.003999,0.249968,0,0);-ms-transform:matrix(0.175643,0.002810,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.175643,0.002810,-0.003999,0.249968,0,0);}
.me3_c00430{transform:matrix(0.176965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176965,0.000000,0.000000,0.250000,0,0);}
.m4e_c00430{transform:matrix(0.177241,0.003722,-0.005249,0.249945,0,0);-ms-transform:matrix(0.177241,0.003722,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.177241,0.003722,-0.005249,0.249945,0,0);}
.me1_c00430{transform:matrix(0.178450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178450,0.000000,0.000000,0.250000,0,0);}
.m49_c00430{transform:matrix(0.178806,0.003755,-0.005249,0.249945,0,0);-ms-transform:matrix(0.178806,0.003755,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.178806,0.003755,-0.005249,0.249945,0,0);}
.mcc_c00430{transform:matrix(0.182978,0.005489,-0.007497,0.249888,0,0);-ms-transform:matrix(0.182978,0.005489,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.182978,0.005489,-0.007497,0.249888,0,0);}
.me4_c00430{transform:matrix(0.183135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183135,0.000000,0.000000,0.250000,0,0);}
.m94_c00430{transform:matrix(0.184252,0.002580,-0.003500,0.249976,0,0);-ms-transform:matrix(0.184252,0.002580,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.184252,0.002580,-0.003500,0.249976,0,0);}
.m8f_c00430{transform:matrix(0.185842,0.002602,-0.003500,0.249976,0,0);-ms-transform:matrix(0.185842,0.002602,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.185842,0.002602,-0.003500,0.249976,0,0);}
.me6_c00430{transform:matrix(0.186955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186955,0.000000,0.000000,0.250000,0,0);}
.m5a_c00430{transform:matrix(0.187185,0.003369,-0.004499,0.249960,0,0);-ms-transform:matrix(0.187185,0.003369,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.187185,0.003369,-0.004499,0.249960,0,0);}
.me_c00430{transform:matrix(0.187855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187855,0.000000,0.000000,0.250000,0,0);}
.m10_c00430{transform:matrix(0.188865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188865,0.000000,0.000000,0.250000,0,0);}
.mf_c00430{transform:matrix(0.189655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189655,0.000000,0.000000,0.250000,0,0);}
.m11_c00430{transform:matrix(0.190140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190140,0.000000,0.000000,0.250000,0,0);}
.m47_c00430{transform:matrix(0.193822,0.004070,-0.005249,0.249945,0,0);-ms-transform:matrix(0.193822,0.004070,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.193822,0.004070,-0.005249,0.249945,0,0);}
.mf3_c00430{transform:matrix(0.194144,0.008940,-0.011499,0.249735,0,0);-ms-transform:matrix(0.194144,0.008940,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.194144,0.008940,-0.011499,0.249735,0,0);}
.m95_c00430{transform:matrix(0.195386,0.002735,-0.003500,0.249976,0,0);-ms-transform:matrix(0.195386,0.002735,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.195386,0.002735,-0.003500,0.249976,0,0);}
.m5f_c00430{transform:matrix(0.196093,0.003530,-0.004499,0.249960,0,0);-ms-transform:matrix(0.196093,0.003530,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.196093,0.003530,-0.004499,0.249960,0,0);}
.m28_c00430{transform:matrix(0.196155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196155,0.000000,0.000000,0.250000,0,0);}
.m93_c00430{transform:matrix(0.196966,0.002758,-0.003500,0.249976,0,0);-ms-transform:matrix(0.196966,0.002758,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.196966,0.002758,-0.003500,0.249976,0,0);}
.m45_c00430{transform:matrix(0.197341,0.004144,-0.005249,0.249945,0,0);-ms-transform:matrix(0.197341,0.004144,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.197341,0.004144,-0.005249,0.249945,0,0);}
.m5d_c00430{transform:matrix(0.198503,0.003573,-0.004499,0.249960,0,0);-ms-transform:matrix(0.198503,0.003573,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.198503,0.003573,-0.004499,0.249960,0,0);}
.mcf_c00430{transform:matrix(0.199610,0.005988,-0.007497,0.249888,0,0);-ms-transform:matrix(0.199610,0.005988,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.199610,0.005988,-0.007497,0.249888,0,0);}
.m1f_c00430{transform:matrix(0.202261,0.003438,-0.004249,0.249964,0,0);-ms-transform:matrix(0.202261,0.003438,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.202261,0.003438,-0.004249,0.249964,0,0);}
.m27_c00430{transform:matrix(0.202810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202810,0.000000,0.000000,0.250000,0,0);}
.m98_c00430{transform:matrix(0.202990,0.002842,-0.003500,0.249976,0,0);-ms-transform:matrix(0.202990,0.002842,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.202990,0.002842,-0.003500,0.249976,0,0);}
.m43_c00430{transform:matrix(0.205385,0.004313,-0.005249,0.249945,0,0);-ms-transform:matrix(0.205385,0.004313,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.205385,0.004313,-0.005249,0.249945,0,0);}
.m52_c00430{transform:matrix(0.205580,0.004317,-0.005249,0.249945,0,0);-ms-transform:matrix(0.205580,0.004317,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.205580,0.004317,-0.005249,0.249945,0,0);}
.me0_c00430{transform:matrix(0.205815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205815,0.000000,0.000000,0.250000,0,0);}
.me2_c00430{transform:matrix(0.206055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206055,0.000000,0.000000,0.250000,0,0);}
.m24_c00430{transform:matrix(0.206710,0.003514,-0.004249,0.249964,0,0);-ms-transform:matrix(0.206710,0.003514,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.206710,0.003514,-0.004249,0.249964,0,0);}
.m54_c00430{transform:matrix(0.206714,0.003307,-0.003999,0.249968,0,0);-ms-transform:matrix(0.206714,0.003307,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.206714,0.003307,-0.003999,0.249968,0,0);}
.mce_c00430{transform:matrix(0.207002,0.006210,-0.007497,0.249888,0,0);-ms-transform:matrix(0.207002,0.006210,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.207002,0.006210,-0.007497,0.249888,0,0);}
.m1_c00430{transform:matrix(0.207490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207490,0.000000,0.000000,0.250000,0,0);}
.m0_c00430{transform:matrix(0.207715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207715,0.000000,0.000000,0.250000,0,0);}
.m8e_c00430{transform:matrix(0.208265,0.002916,-0.003500,0.249976,0,0);-ms-transform:matrix(0.208265,0.002916,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.208265,0.002916,-0.003500,0.249976,0,0);}
.mfb_c00430{transform:matrix(0.208494,0.009600,-0.011499,0.249735,0,0);-ms-transform:matrix(0.208494,0.009600,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.208494,0.009600,-0.011499,0.249735,0,0);}
.m51_c00430{transform:matrix(0.209869,0.004407,-0.005249,0.249945,0,0);-ms-transform:matrix(0.209869,0.004407,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.209869,0.004407,-0.005249,0.249945,0,0);}
.m6c_c00430{transform:matrix(0.209889,0.004408,-0.005249,0.249945,0,0);-ms-transform:matrix(0.209889,0.004408,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.209889,0.004408,-0.005249,0.249945,0,0);}
.m91_c00430{transform:matrix(0.212984,0.002982,-0.003500,0.249976,0,0);-ms-transform:matrix(0.212984,0.002982,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.212984,0.002982,-0.003500,0.249976,0,0);}
.m4d_c00430{transform:matrix(0.213313,0.004480,-0.005249,0.249945,0,0);-ms-transform:matrix(0.213313,0.004480,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.213313,0.004480,-0.005249,0.249945,0,0);}
.meb_c00430{transform:matrix(0.214035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214035,0.000000,0.000000,0.250000,0,0);}
.m48_c00430{transform:matrix(0.215063,0.004516,-0.005249,0.249945,0,0);-ms-transform:matrix(0.215063,0.004516,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.215063,0.004516,-0.005249,0.249945,0,0);}
.m92_c00430{transform:matrix(0.215479,0.003017,-0.003500,0.249976,0,0);-ms-transform:matrix(0.215479,0.003017,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.215479,0.003017,-0.003500,0.249976,0,0);}
.m90_c00430{transform:matrix(0.215799,0.003021,-0.003500,0.249976,0,0);-ms-transform:matrix(0.215799,0.003021,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.215799,0.003021,-0.003500,0.249976,0,0);}
.mec_c00430{transform:matrix(0.215925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215925,0.000000,0.000000,0.250000,0,0);}
.mf7_c00430{transform:matrix(0.216311,0.009960,-0.011499,0.249735,0,0);-ms-transform:matrix(0.216311,0.009960,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.216311,0.009960,-0.011499,0.249735,0,0);}
.me7_c00430{transform:matrix(0.216905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216905,0.000000,0.000000,0.250000,0,0);}
.m5e_c00430{transform:matrix(0.219574,0.003952,-0.004499,0.249960,0,0);-ms-transform:matrix(0.219574,0.003952,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.219574,0.003952,-0.004499,0.249960,0,0);}
.mef_c00430{transform:matrix(0.219710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219710,0.000000,0.000000,0.250000,0,0);}
.mee_c00430{transform:matrix(0.219820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219820,0.000000,0.000000,0.250000,0,0);}
.med_c00430{transform:matrix(0.219980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219980,0.000000,0.000000,0.250000,0,0);}
.m30_c00430{transform:matrix(0.220482,0.003528,-0.003999,0.249968,0,0);-ms-transform:matrix(0.220482,0.003528,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.220482,0.003528,-0.003999,0.249968,0,0);}
.m25_c00430{transform:matrix(0.220858,0.003755,-0.004249,0.249964,0,0);-ms-transform:matrix(0.220858,0.003755,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.220858,0.003755,-0.004249,0.249964,0,0);}
.m96_c00430{transform:matrix(0.221178,0.003096,-0.003500,0.249976,0,0);-ms-transform:matrix(0.221178,0.003096,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.221178,0.003096,-0.003500,0.249976,0,0);}
.mfc_c00430{transform:matrix(0.221221,0.010186,-0.011499,0.249735,0,0);-ms-transform:matrix(0.221221,0.010186,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.221221,0.010186,-0.011499,0.249735,0,0);}
.m2b_c00430{transform:matrix(0.222222,0.003556,-0.003999,0.249968,0,0);-ms-transform:matrix(0.222222,0.003556,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.222222,0.003556,-0.003999,0.249968,0,0);}
.m97_c00430{transform:matrix(0.222228,0.003111,-0.003500,0.249976,0,0);-ms-transform:matrix(0.222228,0.003111,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.222228,0.003111,-0.003500,0.249976,0,0);}
.m38_c00430{transform:matrix(0.222472,0.003560,-0.003999,0.249968,0,0);-ms-transform:matrix(0.222472,0.003560,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.222472,0.003560,-0.003999,0.249968,0,0);}
.mf9_c00430{transform:matrix(0.222794,0.010259,-0.011499,0.249735,0,0);-ms-transform:matrix(0.222794,0.010259,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.222794,0.010259,-0.011499,0.249735,0,0);}
.m2d_c00430{transform:matrix(0.223121,0.003570,-0.003999,0.249968,0,0);-ms-transform:matrix(0.223121,0.003570,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.223121,0.003570,-0.003999,0.249968,0,0);}
.md0_c00430{transform:matrix(0.223749,0.006712,-0.007497,0.249888,0,0);-ms-transform:matrix(0.223749,0.006712,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.223749,0.006712,-0.007497,0.249888,0,0);}
.m64_c00430{transform:matrix(0.223854,0.004029,-0.004499,0.249960,0,0);-ms-transform:matrix(0.223854,0.004029,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.223854,0.004029,-0.004499,0.249960,0,0);}
.m6d_c00430{transform:matrix(0.224021,0.004704,-0.005249,0.249945,0,0);-ms-transform:matrix(0.224021,0.004704,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.224021,0.004704,-0.005249,0.249945,0,0);}
.mc8_c00430{transform:matrix(0.224804,0.006744,-0.007497,0.249888,0,0);-ms-transform:matrix(0.224804,0.006744,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.224804,0.006744,-0.007497,0.249888,0,0);}
.m59_c00430{transform:matrix(0.226193,0.004071,-0.004499,0.249960,0,0);-ms-transform:matrix(0.226193,0.004071,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.226193,0.004071,-0.004499,0.249960,0,0);}
.mf2_c00430{transform:matrix(0.226540,0.010431,-0.011499,0.249735,0,0);-ms-transform:matrix(0.226540,0.010431,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.226540,0.010431,-0.011499,0.249735,0,0);}
.m1c_c00430{transform:matrix(0.226807,0.003856,-0.004249,0.249964,0,0);-ms-transform:matrix(0.226807,0.003856,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.226807,0.003856,-0.004249,0.249964,0,0);}
.me5_c00430{transform:matrix(0.227210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227210,0.000000,0.000000,0.250000,0,0);}
.m60_c00430{transform:matrix(0.228443,0.004112,-0.004499,0.249960,0,0);-ms-transform:matrix(0.228443,0.004112,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.228443,0.004112,-0.004499,0.249960,0,0);}
.mdd_c00430{transform:matrix(0.228923,0.009624,-0.010501,0.249779,0,0);-ms-transform:matrix(0.228923,0.009624,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.228923,0.009624,-0.010501,0.249779,0,0);}
.m62_c00430{transform:matrix(0.228938,0.004121,-0.004499,0.249960,0,0);-ms-transform:matrix(0.228938,0.004121,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.228938,0.004121,-0.004499,0.249960,0,0);}
.m3e_c00430{transform:matrix(0.229210,0.005043,-0.005499,0.249940,0,0);-ms-transform:matrix(0.229210,0.005043,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.229210,0.005043,-0.005499,0.249940,0,0);}
.mf4_c00430{transform:matrix(0.229512,0.010568,-0.011499,0.249735,0,0);-ms-transform:matrix(0.229512,0.010568,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.229512,0.010568,-0.011499,0.249735,0,0);}
.mb3_c00430{transform:matrix(0.230199,0.008065,-0.008753,0.249847,0,0);-ms-transform:matrix(0.230199,0.008065,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.230199,0.008065,-0.008753,0.249847,0,0);}
.m1a_c00430{transform:matrix(0.230602,0.003920,-0.004249,0.249964,0,0);-ms-transform:matrix(0.230602,0.003920,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.230602,0.003920,-0.004249,0.249964,0,0);}
.mdb_c00430{transform:matrix(0.230711,0.009700,-0.010501,0.249779,0,0);-ms-transform:matrix(0.230711,0.009700,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.230711,0.009700,-0.010501,0.249779,0,0);}
.m39_c00430{transform:matrix(0.231595,0.003706,-0.003999,0.249968,0,0);-ms-transform:matrix(0.231595,0.003706,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.231595,0.003706,-0.003999,0.249968,0,0);}
.m5c_c00430{transform:matrix(0.233577,0.004204,-0.004499,0.249960,0,0);-ms-transform:matrix(0.233577,0.004204,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.233577,0.004204,-0.004499,0.249960,0,0);}
.m9d_c00430{transform:matrix(0.233582,0.006774,-0.007247,0.249895,0,0);-ms-transform:matrix(0.233582,0.006774,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.233582,0.006774,-0.007247,0.249895,0,0);}
.mab_c00430{transform:matrix(0.234843,0.006576,-0.006997,0.249902,0,0);-ms-transform:matrix(0.234843,0.006576,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.234843,0.006576,-0.006997,0.249902,0,0);}
.mcb_c00430{transform:matrix(0.234864,0.007046,-0.007497,0.249888,0,0);-ms-transform:matrix(0.234864,0.007046,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.234864,0.007046,-0.007497,0.249888,0,0);}
.md7_c00430{transform:matrix(0.234888,0.009875,-0.010501,0.249779,0,0);-ms-transform:matrix(0.234888,0.009875,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.234888,0.009875,-0.010501,0.249779,0,0);}
.m68_c00430{transform:matrix(0.235383,0.004943,-0.005249,0.249945,0,0);-ms-transform:matrix(0.235383,0.004943,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.235383,0.004943,-0.005249,0.249945,0,0);}
.mf5_c00430{transform:matrix(0.235815,0.010858,-0.011499,0.249735,0,0);-ms-transform:matrix(0.235815,0.010858,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.235815,0.010858,-0.011499,0.249735,0,0);}
.m29_c00430{transform:matrix(0.236545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236545,0.000000,0.000000,0.250000,0,0);}
.md1_c00430{transform:matrix(0.237078,0.007112,-0.007497,0.249888,0,0);-ms-transform:matrix(0.237078,0.007112,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.237078,0.007112,-0.007497,0.249888,0,0);}
.mad_c00430{transform:matrix(0.237092,0.006639,-0.006997,0.249902,0,0);-ms-transform:matrix(0.237092,0.006639,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.237092,0.006639,-0.006997,0.249902,0,0);}
.m31_c00430{transform:matrix(0.237155,0.003794,-0.003999,0.249968,0,0);-ms-transform:matrix(0.237155,0.003794,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.237155,0.003794,-0.003999,0.249968,0,0);}
.m1e_c00430{transform:matrix(0.237516,0.004038,-0.004249,0.249964,0,0);-ms-transform:matrix(0.237516,0.004038,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.237516,0.004038,-0.004249,0.249964,0,0);}
.mfe_c00430{transform:matrix(0.238013,0.010960,-0.011499,0.249735,0,0);-ms-transform:matrix(0.238013,0.010960,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.238013,0.010960,-0.011499,0.249735,0,0);}
.m22_c00430{transform:matrix(0.238666,0.004057,-0.004249,0.249964,0,0);-ms-transform:matrix(0.238666,0.004057,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.238666,0.004057,-0.004249,0.249964,0,0);}
.m21_c00430{transform:matrix(0.238940,0.004062,-0.004249,0.249964,0,0);-ms-transform:matrix(0.238940,0.004062,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.238940,0.004062,-0.004249,0.249964,0,0);}
.m5b_c00430{transform:matrix(0.239306,0.004308,-0.004499,0.249960,0,0);-ms-transform:matrix(0.239306,0.004308,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.239306,0.004308,-0.004499,0.249960,0,0);}
.mc0_c00430{transform:matrix(0.239583,0.009833,-0.010252,0.249790,0,0);-ms-transform:matrix(0.239583,0.009833,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.239583,0.009833,-0.010252,0.249790,0,0);}
.mf6_c00430{transform:matrix(0.241394,0.011115,-0.011499,0.249735,0,0);-ms-transform:matrix(0.241394,0.011115,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.241394,0.011115,-0.011499,0.249735,0,0);}
.m36_c00430{transform:matrix(0.242209,0.003875,-0.003999,0.249968,0,0);-ms-transform:matrix(0.242209,0.003875,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.242209,0.003875,-0.003999,0.249968,0,0);}
.m17_c00430{transform:matrix(0.243715,0.004143,-0.004249,0.249964,0,0);-ms-transform:matrix(0.243715,0.004143,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.243715,0.004143,-0.004249,0.249964,0,0);}
.md8_c00430{transform:matrix(0.244344,0.010273,-0.010501,0.249779,0,0);-ms-transform:matrix(0.244344,0.010273,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.244344,0.010273,-0.010501,0.249779,0,0);}
.mf8_c00430{transform:matrix(0.244371,0.011252,-0.011499,0.249735,0,0);-ms-transform:matrix(0.244371,0.011252,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.244371,0.011252,-0.011499,0.249735,0,0);}
.mc7_c00430{transform:matrix(0.244974,0.010054,-0.010252,0.249790,0,0);-ms-transform:matrix(0.244974,0.010054,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.244974,0.010054,-0.010252,0.249790,0,0);}
.m55_c00430{transform:matrix(0.245934,0.003935,-0.003999,0.249968,0,0);-ms-transform:matrix(0.245934,0.003935,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.245934,0.003935,-0.003999,0.249968,0,0);}
.m53_c00430{transform:matrix(0.246418,0.003943,-0.003999,0.249968,0,0);-ms-transform:matrix(0.246418,0.003943,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.246418,0.003943,-0.003999,0.249968,0,0);}
.m67_c00430{transform:matrix(0.247205,0.005191,-0.005249,0.249945,0,0);-ms-transform:matrix(0.247205,0.005191,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.247205,0.005191,-0.005249,0.249945,0,0);}
.m35_c00430{transform:matrix(0.247333,0.003957,-0.003999,0.249968,0,0);-ms-transform:matrix(0.247333,0.003957,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.247333,0.003957,-0.003999,0.249968,0,0);}
.m69_c00430{transform:matrix(0.247580,0.005199,-0.005249,0.249945,0,0);-ms-transform:matrix(0.247580,0.005199,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.247580,0.005199,-0.005249,0.249945,0,0);}
.mda_c00430{transform:matrix(0.247771,0.010417,-0.010501,0.249779,0,0);-ms-transform:matrix(0.247771,0.010417,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.247771,0.010417,-0.010501,0.249779,0,0);}
.m6e_c00430{transform:matrix(0.247835,0.005205,-0.005249,0.249945,0,0);-ms-transform:matrix(0.247835,0.005205,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.247835,0.005205,-0.005249,0.249945,0,0);}
.mfa_c00430{transform:matrix(0.247852,0.011413,-0.011499,0.249735,0,0);-ms-transform:matrix(0.247852,0.011413,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.247852,0.011413,-0.011499,0.249735,0,0);}
.md_c00430{transform:matrix(0.249110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249110,0.000000,0.000000,0.250000,0,0);}
.m6b_c00430{transform:matrix(0.249490,0.005239,-0.005249,0.249945,0,0);-ms-transform:matrix(0.249490,0.005239,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.249490,0.005239,-0.005249,0.249945,0,0);}
.mdf_c00430{transform:matrix(0.251635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251635,0.000000,0.000000,0.250000,0,0);}
.md9_c00430{transform:matrix(0.251947,0.010592,-0.010501,0.249779,0,0);-ms-transform:matrix(0.251947,0.010592,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.251947,0.010592,-0.010501,0.249779,0,0);}
.m6a_c00430{transform:matrix(0.252929,0.005312,-0.005249,0.249945,0,0);-ms-transform:matrix(0.252929,0.005312,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.252929,0.005312,-0.005249,0.249945,0,0);}
.m56_c00430{transform:matrix(0.253038,0.004049,-0.003999,0.249968,0,0);-ms-transform:matrix(0.253038,0.004049,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.253038,0.004049,-0.003999,0.249968,0,0);}
.m23_c00430{transform:matrix(0.253348,0.004307,-0.004249,0.249964,0,0);-ms-transform:matrix(0.253348,0.004307,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.253348,0.004307,-0.004249,0.249964,0,0);}
.m2a_c00430{transform:matrix(0.254917,0.004079,-0.003999,0.249968,0,0);-ms-transform:matrix(0.254917,0.004079,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.254917,0.004079,-0.003999,0.249968,0,0);}
.m57_c00430{transform:matrix(0.255777,0.004092,-0.003999,0.249968,0,0);-ms-transform:matrix(0.255777,0.004092,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.255777,0.004092,-0.003999,0.249968,0,0);}
.m3a_c00430{transform:matrix(0.255862,0.004094,-0.003999,0.249968,0,0);-ms-transform:matrix(0.255862,0.004094,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.255862,0.004094,-0.003999,0.249968,0,0);}
.ma9_c00430{transform:matrix(0.255925,0.007166,-0.006997,0.249902,0,0);-ms-transform:matrix(0.255925,0.007166,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.255925,0.007166,-0.006997,0.249902,0,0);}
.mfd_c00430{transform:matrix(0.256204,0.011797,-0.011499,0.249735,0,0);-ms-transform:matrix(0.256204,0.011797,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.256204,0.011797,-0.011499,0.249735,0,0);}
.m19_c00430{transform:matrix(0.256253,0.004356,-0.004249,0.249964,0,0);-ms-transform:matrix(0.256253,0.004356,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.256253,0.004356,-0.004249,0.249964,0,0);}
.m63_c00430{transform:matrix(0.256498,0.004617,-0.004499,0.249960,0,0);-ms-transform:matrix(0.256498,0.004617,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.256498,0.004617,-0.004499,0.249960,0,0);}
.m37_c00430{transform:matrix(0.257662,0.004123,-0.003999,0.249968,0,0);-ms-transform:matrix(0.257662,0.004123,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.257662,0.004123,-0.003999,0.249968,0,0);}
.mc1_c00430{transform:matrix(0.257723,0.010577,-0.010252,0.249790,0,0);-ms-transform:matrix(0.257723,0.010577,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.257723,0.010577,-0.010252,0.249790,0,0);}
.mdc_c00430{transform:matrix(0.258427,0.010865,-0.010501,0.249779,0,0);-ms-transform:matrix(0.258427,0.010865,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.258427,0.010865,-0.010501,0.249779,0,0);}
.m58_c00430{transform:matrix(0.259652,0.004154,-0.003999,0.249968,0,0);-ms-transform:matrix(0.259652,0.004154,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.259652,0.004154,-0.003999,0.249968,0,0);}
.mc5_c00430{transform:matrix(0.259801,0.010663,-0.010252,0.249790,0,0);-ms-transform:matrix(0.259801,0.010663,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.259801,0.010663,-0.010252,0.249790,0,0);}
.m1b_c00430{transform:matrix(0.262327,0.004460,-0.004249,0.249964,0,0);-ms-transform:matrix(0.262327,0.004460,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.262327,0.004460,-0.004249,0.249964,0,0);}
.maf_c00430{transform:matrix(0.263467,0.007377,-0.006997,0.249902,0,0);-ms-transform:matrix(0.263467,0.007377,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.263467,0.007377,-0.006997,0.249902,0,0);}
.mae_c00430{transform:matrix(0.263547,0.007379,-0.006997,0.249902,0,0);-ms-transform:matrix(0.263547,0.007379,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.263547,0.007379,-0.006997,0.249902,0,0);}
.m1d_c00430{transform:matrix(0.264362,0.004494,-0.004249,0.249964,0,0);-ms-transform:matrix(0.264362,0.004494,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.264362,0.004494,-0.004249,0.249964,0,0);}
.md2_c00430{transform:matrix(0.264463,0.008198,-0.007746,0.249880,0,0);-ms-transform:matrix(0.264463,0.008198,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.264463,0.008198,-0.007746,0.249880,0,0);}
.m26_c00430{transform:matrix(0.265047,0.004506,-0.004249,0.249964,0,0);-ms-transform:matrix(0.265047,0.004506,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.265047,0.004506,-0.004249,0.249964,0,0);}
.md5_c00430{transform:matrix(0.266157,0.008251,-0.007746,0.249880,0,0);-ms-transform:matrix(0.266157,0.008251,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.266157,0.008251,-0.007746,0.249880,0,0);}
.m42_c00430{transform:matrix(0.266451,0.005595,-0.005249,0.249945,0,0);-ms-transform:matrix(0.266451,0.005595,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.266451,0.005595,-0.005249,0.249945,0,0);}
.m9a_c00430{transform:matrix(0.268039,0.003753,-0.003500,0.249976,0,0);-ms-transform:matrix(0.268039,0.003753,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.268039,0.003753,-0.003500,0.249976,0,0);}
.m3d_c00430{transform:matrix(0.269925,0.005938,-0.005499,0.249940,0,0);-ms-transform:matrix(0.269925,0.005938,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.269925,0.005938,-0.005499,0.249940,0,0);}
.m9e_c00430{transform:matrix(0.269986,0.007830,-0.007247,0.249895,0,0);-ms-transform:matrix(0.269986,0.007830,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.269986,0.007830,-0.007247,0.249895,0,0);}
.m20_c00430{transform:matrix(0.270571,0.004600,-0.004249,0.249964,0,0);-ms-transform:matrix(0.270571,0.004600,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.270571,0.004600,-0.004249,0.249964,0,0);}
.m16_c00430{transform:matrix(0.270646,0.004601,-0.004249,0.249964,0,0);-ms-transform:matrix(0.270646,0.004601,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.270646,0.004601,-0.004249,0.249964,0,0);}
.mb2_c00430{transform:matrix(0.270804,0.009488,-0.008753,0.249847,0,0);-ms-transform:matrix(0.270804,0.009488,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.270804,0.009488,-0.008753,0.249847,0,0);}
.m18_c00430{transform:matrix(0.271226,0.004611,-0.004249,0.249964,0,0);-ms-transform:matrix(0.271226,0.004611,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.271226,0.004611,-0.004249,0.249964,0,0);}
.m61_c00430{transform:matrix(0.271576,0.004888,-0.004499,0.249960,0,0);-ms-transform:matrix(0.271576,0.004888,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.271576,0.004888,-0.004499,0.249960,0,0);}
.m9c_c00430{transform:matrix(0.271896,0.007885,-0.007247,0.249895,0,0);-ms-transform:matrix(0.271896,0.007885,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.271896,0.007885,-0.007247,0.249895,0,0);}
.m2e_c00430{transform:matrix(0.273300,0.004373,-0.003999,0.249968,0,0);-ms-transform:matrix(0.273300,0.004373,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.273300,0.004373,-0.003999,0.249968,0,0);}
.m13_c00430{transform:matrix(0.273665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273665,0.000000,0.000000,0.250000,0,0);}
.m3f_c00430{transform:matrix(0.273704,0.006021,-0.005499,0.249940,0,0);-ms-transform:matrix(0.273704,0.006021,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.273704,0.006021,-0.005499,0.249940,0,0);}
.m34_c00430{transform:matrix(0.273845,0.004382,-0.003999,0.249968,0,0);-ms-transform:matrix(0.273845,0.004382,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.273845,0.004382,-0.003999,0.249968,0,0);}
.maa_c00430{transform:matrix(0.274123,0.007675,-0.006997,0.249902,0,0);-ms-transform:matrix(0.274123,0.007675,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.274123,0.007675,-0.006997,0.249902,0,0);}
.m99_c00430{transform:matrix(0.275593,0.003858,-0.003500,0.249976,0,0);-ms-transform:matrix(0.275593,0.003858,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.275593,0.003858,-0.003500,0.249976,0,0);}
.mb4_c00430{transform:matrix(0.275651,0.009657,-0.008753,0.249847,0,0);-ms-transform:matrix(0.275651,0.009657,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.275651,0.009657,-0.008753,0.249847,0,0);}
.mbd_c00430{transform:matrix(0.275732,0.006342,-0.005748,0.249934,0,0);-ms-transform:matrix(0.275732,0.006342,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.275732,0.006342,-0.005748,0.249934,0,0);}
.m2c_c00430{transform:matrix(0.276515,0.004424,-0.003999,0.249968,0,0);-ms-transform:matrix(0.276515,0.004424,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.276515,0.004424,-0.003999,0.249968,0,0);}
.m3b_c00430{transform:matrix(0.276610,0.004426,-0.003999,0.249968,0,0);-ms-transform:matrix(0.276610,0.004426,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.276610,0.004426,-0.003999,0.249968,0,0);}
.m2f_c00430{transform:matrix(0.277115,0.004434,-0.003999,0.249968,0,0);-ms-transform:matrix(0.277115,0.004434,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.277115,0.004434,-0.003999,0.249968,0,0);}
.mc2_c00430{transform:matrix(0.277566,0.011392,-0.010252,0.249790,0,0);-ms-transform:matrix(0.277566,0.011392,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.277566,0.011392,-0.010252,0.249790,0,0);}
.m65_c00430{transform:matrix(0.278205,0.005008,-0.004499,0.249960,0,0);-ms-transform:matrix(0.278205,0.005008,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.278205,0.005008,-0.004499,0.249960,0,0);}
.m70_c00430{transform:matrix(0.278972,0.008936,-0.008004,0.249872,0,0);-ms-transform:matrix(0.278972,0.008936,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.278972,0.008936,-0.008004,0.249872,0,0);}
.m32_c00430{transform:matrix(0.279369,0.004470,-0.003999,0.249968,0,0);-ms-transform:matrix(0.279369,0.004470,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.279369,0.004470,-0.003999,0.249968,0,0);}
.ma7_c00430{transform:matrix(0.281730,0.007325,-0.006498,0.249916,0,0);-ms-transform:matrix(0.281730,0.007325,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.281730,0.007325,-0.006498,0.249916,0,0);}
.m66_c00430{transform:matrix(0.282449,0.005084,-0.004499,0.249960,0,0);-ms-transform:matrix(0.282449,0.005084,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.282449,0.005084,-0.004499,0.249960,0,0);}
.mac_c00430{transform:matrix(0.283339,0.007933,-0.006997,0.249902,0,0);-ms-transform:matrix(0.283339,0.007933,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.283339,0.007933,-0.006997,0.249902,0,0);}
.ma4_c00430{transform:matrix(0.288517,0.007501,-0.006498,0.249916,0,0);-ms-transform:matrix(0.288517,0.007501,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.288517,0.007501,-0.006498,0.249916,0,0);}
.mc4_c00430{transform:matrix(0.289571,0.011884,-0.010252,0.249790,0,0);-ms-transform:matrix(0.289571,0.011884,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.289571,0.011884,-0.010252,0.249790,0,0);}
.mca_c00430{transform:matrix(0.290065,0.008702,-0.007497,0.249888,0,0);-ms-transform:matrix(0.290065,0.008702,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.290065,0.008702,-0.007497,0.249888,0,0);}
.mc9_c00430{transform:matrix(0.295777,0.008873,-0.007497,0.249888,0,0);-ms-transform:matrix(0.295777,0.008873,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.295777,0.008873,-0.007497,0.249888,0,0);}
.mbf_c00430{transform:matrix(0.297450,0.012208,-0.010252,0.249790,0,0);-ms-transform:matrix(0.297450,0.012208,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.297450,0.012208,-0.010252,0.249790,0,0);}
.md3_c00430{transform:matrix(0.297762,0.009231,-0.007746,0.249880,0,0);-ms-transform:matrix(0.297762,0.009231,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.297762,0.009231,-0.007746,0.249880,0,0);}
.md6_c00430{transform:matrix(0.300306,0.009309,-0.007746,0.249880,0,0);-ms-transform:matrix(0.300306,0.009309,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.300306,0.009309,-0.007746,0.249880,0,0);}
.mb1_c00430{transform:matrix(0.301520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301520,0.000000,0.000000,0.250000,0,0);}
.mb9_c00430{transform:matrix(0.303645,0.006984,-0.005748,0.249934,0,0);-ms-transform:matrix(0.303645,0.006984,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.303645,0.006984,-0.005748,0.249934,0,0);}
.mde_c00430{transform:matrix(0.304594,0.009757,-0.008004,0.249872,0,0);-ms-transform:matrix(0.304594,0.009757,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.304594,0.009757,-0.008004,0.249872,0,0);}
.mc6_c00430{transform:matrix(0.310034,0.012724,-0.010252,0.249790,0,0);-ms-transform:matrix(0.310034,0.012724,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.310034,0.012724,-0.010252,0.249790,0,0);}
.ma6_c00430{transform:matrix(0.310400,0.008070,-0.006498,0.249916,0,0);-ms-transform:matrix(0.310400,0.008070,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.310400,0.008070,-0.006498,0.249916,0,0);}
.m8c_c00430{transform:matrix(0.315193,0.010096,-0.008004,0.249872,0,0);-ms-transform:matrix(0.315193,0.010096,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.315193,0.010096,-0.008004,0.249872,0,0);}
.mb6_c00430{transform:matrix(0.315272,0.007251,-0.005748,0.249934,0,0);-ms-transform:matrix(0.315272,0.007251,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.315272,0.007251,-0.005748,0.249934,0,0);}
.m71_c00430{transform:matrix(0.315403,0.010103,-0.008004,0.249872,0,0);-ms-transform:matrix(0.315403,0.010103,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.315403,0.010103,-0.008004,0.249872,0,0);}
.mb7_c00430{transform:matrix(0.317761,0.007309,-0.005748,0.249934,0,0);-ms-transform:matrix(0.317761,0.007309,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.317761,0.007309,-0.005748,0.249934,0,0);}
.m7e_c00430{transform:matrix(0.321900,0.010311,-0.008004,0.249872,0,0);-ms-transform:matrix(0.321900,0.010311,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.321900,0.010311,-0.008004,0.249872,0,0);}
.m7d_c00430{transform:matrix(0.322944,0.010345,-0.008004,0.249872,0,0);-ms-transform:matrix(0.322944,0.010345,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.322944,0.010345,-0.008004,0.249872,0,0);}
.ma0_c00430{transform:matrix(0.323001,0.008398,-0.006498,0.249916,0,0);-ms-transform:matrix(0.323001,0.008398,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.323001,0.008398,-0.006498,0.249916,0,0);}
.mbb_c00430{transform:matrix(0.323025,0.007430,-0.005748,0.249934,0,0);-ms-transform:matrix(0.323025,0.007430,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.323025,0.007430,-0.005748,0.249934,0,0);}
.m6f_c00430{transform:matrix(0.324658,0.010399,-0.008004,0.249872,0,0);-ms-transform:matrix(0.324658,0.010399,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.324658,0.010399,-0.008004,0.249872,0,0);}
.ma_c00430{transform:matrix(0.325970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325970,0.000000,0.000000,0.250000,0,0);}
.m5_c00430{transform:matrix(0.328690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328690,0.000000,0.000000,0.250000,0,0);}
.m7f_c00430{transform:matrix(0.328806,0.010532,-0.008004,0.249872,0,0);-ms-transform:matrix(0.328806,0.010532,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.328806,0.010532,-0.008004,0.249872,0,0);}
.mc_c00430{transform:matrix(0.329075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329075,0.000000,0.000000,0.250000,0,0);}
.m78_c00430{transform:matrix(0.334988,0.010730,-0.008004,0.249872,0,0);-ms-transform:matrix(0.334988,0.010730,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.334988,0.010730,-0.008004,0.249872,0,0);}
.m76_c00430{transform:matrix(0.335238,0.010738,-0.008004,0.249872,0,0);-ms-transform:matrix(0.335238,0.010738,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.335238,0.010738,-0.008004,0.249872,0,0);}
.m14_c00430{transform:matrix(0.336075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336075,0.000000,0.000000,0.250000,0,0);}
.m74_c00430{transform:matrix(0.336912,0.010792,-0.008004,0.249872,0,0);-ms-transform:matrix(0.336912,0.010792,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.336912,0.010792,-0.008004,0.249872,0,0);}
.m7_c00430{transform:matrix(0.337675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337675,0.000000,0.000000,0.250000,0,0);}
.m50_c00430{transform:matrix(0.342634,0.007195,-0.005249,0.249945,0,0);-ms-transform:matrix(0.342634,0.007195,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.342634,0.007195,-0.005249,0.249945,0,0);}
.m4a_c00430{transform:matrix(0.346539,0.007277,-0.005249,0.249945,0,0);-ms-transform:matrix(0.346539,0.007277,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.346539,0.007277,-0.005249,0.249945,0,0);}
.m79_c00430{transform:matrix(0.348711,0.011170,-0.008004,0.249872,0,0);-ms-transform:matrix(0.348711,0.011170,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.348711,0.011170,-0.008004,0.249872,0,0);}
.m81_c00430{transform:matrix(0.353834,0.011334,-0.008004,0.249872,0,0);-ms-transform:matrix(0.353834,0.011334,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.353834,0.011334,-0.008004,0.249872,0,0);}
.m41_c00430{transform:matrix(0.362275,0.007608,-0.005249,0.249945,0,0);-ms-transform:matrix(0.362275,0.007608,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.362275,0.007608,-0.005249,0.249945,0,0);}
.m88_c00430{transform:matrix(0.365777,0.011717,-0.008004,0.249872,0,0);-ms-transform:matrix(0.365777,0.011717,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.365777,0.011717,-0.008004,0.249872,0,0);}
.ma8_c00430{transform:matrix(0.366616,0.009532,-0.006498,0.249916,0,0);-ms-transform:matrix(0.366616,0.009532,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.366616,0.009532,-0.006498,0.249916,0,0);}
.m4b_c00430{transform:matrix(0.371968,0.007811,-0.005249,0.249945,0,0);-ms-transform:matrix(0.371968,0.007811,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.371968,0.007811,-0.005249,0.249945,0,0);}
.m87_c00430{transform:matrix(0.376677,0.012066,-0.008004,0.249872,0,0);-ms-transform:matrix(0.376677,0.012066,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.376677,0.012066,-0.008004,0.249872,0,0);}
.m80_c00430{transform:matrix(0.388776,0.012453,-0.008004,0.249872,0,0);-ms-transform:matrix(0.388776,0.012453,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.388776,0.012453,-0.008004,0.249872,0,0);}
.m86_c00430{transform:matrix(0.389800,0.012486,-0.008004,0.249872,0,0);-ms-transform:matrix(0.389800,0.012486,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.389800,0.012486,-0.008004,0.249872,0,0);}
.m8b_c00430{transform:matrix(0.395807,0.012679,-0.008004,0.249872,0,0);-ms-transform:matrix(0.395807,0.012679,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.395807,0.012679,-0.008004,0.249872,0,0);}
.m3_c00430{transform:matrix(0.396820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396820,0.000000,0.000000,0.250000,0,0);}
.m84_c00430{transform:matrix(0.399420,0.012794,-0.008004,0.249872,0,0);-ms-transform:matrix(0.399420,0.012794,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.399420,0.012794,-0.008004,0.249872,0,0);}
.m46_c00430{transform:matrix(0.401017,0.008421,-0.005249,0.249945,0,0);-ms-transform:matrix(0.401017,0.008421,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.401017,0.008421,-0.005249,0.249945,0,0);}
.ma2_c00430{transform:matrix(0.402109,0.010455,-0.006498,0.249916,0,0);-ms-transform:matrix(0.402109,0.010455,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.402109,0.010455,-0.006498,0.249916,0,0);}
.mb_c00430{transform:matrix(0.404045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404045,0.000000,0.000000,0.250000,0,0);}
.mba_c00430{transform:matrix(0.405973,0.009337,-0.005748,0.249934,0,0);-ms-transform:matrix(0.405973,0.009337,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.405973,0.009337,-0.005748,0.249934,0,0);}
.m6_c00430{transform:matrix(0.413040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413040,0.000000,0.000000,0.250000,0,0);}
.ma5_c00430{transform:matrix(0.413865,0.010760,-0.006498,0.249916,0,0);-ms-transform:matrix(0.413865,0.010760,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.413865,0.010760,-0.006498,0.249916,0,0);}
.m89_c00430{transform:matrix(0.415962,0.013324,-0.008004,0.249872,0,0);-ms-transform:matrix(0.415962,0.013324,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.415962,0.013324,-0.008004,0.249872,0,0);}
.ma3_c00430{transform:matrix(0.419978,0.010919,-0.006498,0.249916,0,0);-ms-transform:matrix(0.419978,0.010919,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.419978,0.010919,-0.006498,0.249916,0,0);}
.m9_c00430{transform:matrix(0.421400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421400,0.000000,0.000000,0.250000,0,0);}
.mb5_c00430{transform:matrix(0.430701,0.009906,-0.005748,0.249934,0,0);-ms-transform:matrix(0.430701,0.009906,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.430701,0.009906,-0.005748,0.249934,0,0);}
.m4_c00430{transform:matrix(0.432795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432795,0.000000,0.000000,0.250000,0,0);}
.mbe_c00430{transform:matrix(0.438519,0.010086,-0.005748,0.249934,0,0);-ms-transform:matrix(0.438519,0.010086,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.438519,0.010086,-0.005748,0.249934,0,0);}
.m8a_c00430{transform:matrix(0.446651,0.014307,-0.008004,0.249872,0,0);-ms-transform:matrix(0.446651,0.014307,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.446651,0.014307,-0.008004,0.249872,0,0);}
.m2_c00430{transform:matrix(0.451275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451275,0.000000,0.000000,0.250000,0,0);}
.mb8_c00430{transform:matrix(0.452430,0.010406,-0.005748,0.249934,0,0);-ms-transform:matrix(0.452430,0.010406,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.452430,0.010406,-0.005748,0.249934,0,0);}
.m8_c00430{transform:matrix(0.454035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.454035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.454035,0.000000,0.000000,0.250000,0,0);}
.m40_c00430{transform:matrix(0.456844,0.009594,-0.005249,0.249945,0,0);-ms-transform:matrix(0.456844,0.009594,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.456844,0.009594,-0.005249,0.249945,0,0);}
.ma1_c00430{transform:matrix(0.466532,0.012130,-0.006498,0.249916,0,0);-ms-transform:matrix(0.466532,0.012130,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.466532,0.012130,-0.006498,0.249916,0,0);}
.m15_c00430{transform:matrix(0.471150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471150,0.000000,0.000000,0.250000,0,0);}
.m4f_c00430{transform:matrix(0.476470,0.010006,-0.005249,0.249945,0,0);-ms-transform:matrix(0.476470,0.010006,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.476470,0.010006,-0.005249,0.249945,0,0);}
.md4_c00430{transform:matrix(0.482968,0.014972,-0.007746,0.249880,0,0);-ms-transform:matrix(0.482968,0.014972,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.482968,0.014972,-0.007746,0.249880,0,0);}
.m75_c00430{transform:matrix(0.484706,0.015526,-0.008004,0.249872,0,0);-ms-transform:matrix(0.484706,0.015526,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.484706,0.015526,-0.008004,0.249872,0,0);}
.m85_c00430{transform:matrix(0.487705,0.015622,-0.008004,0.249872,0,0);-ms-transform:matrix(0.487705,0.015622,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.487705,0.015622,-0.008004,0.249872,0,0);}
.m7b_c00430{transform:matrix(0.494921,0.015853,-0.008004,0.249872,0,0);-ms-transform:matrix(0.494921,0.015853,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.494921,0.015853,-0.008004,0.249872,0,0);}
.m82_c00430{transform:matrix(0.524706,0.016807,-0.008004,0.249872,0,0);-ms-transform:matrix(0.524706,0.016807,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.524706,0.016807,-0.008004,0.249872,0,0);}
.m7c_c00430{transform:matrix(0.531327,0.017019,-0.008004,0.249872,0,0);-ms-transform:matrix(0.531327,0.017019,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.531327,0.017019,-0.008004,0.249872,0,0);}
.m9f_c00430{transform:matrix(0.541897,0.014089,-0.006498,0.249916,0,0);-ms-transform:matrix(0.541897,0.014089,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.541897,0.014089,-0.006498,0.249916,0,0);}
.m77_c00430{transform:matrix(0.547899,0.017550,-0.008004,0.249872,0,0);-ms-transform:matrix(0.547899,0.017550,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.547899,0.017550,-0.008004,0.249872,0,0);}
.m7a_c00430{transform:matrix(0.555775,0.017803,-0.008004,0.249872,0,0);-ms-transform:matrix(0.555775,0.017803,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.555775,0.017803,-0.008004,0.249872,0,0);}
.mbc_c00430{transform:matrix(0.563501,0.012961,-0.005748,0.249934,0,0);-ms-transform:matrix(0.563501,0.012961,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.563501,0.012961,-0.005748,0.249934,0,0);}
.m83_c00430{transform:matrix(0.589103,0.018870,-0.008004,0.249872,0,0);-ms-transform:matrix(0.589103,0.018870,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.589103,0.018870,-0.008004,0.249872,0,0);}
.m12_c00430{transform:matrix(0.613920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.613920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.613920,0.000000,0.000000,0.250000,0,0);}
.m4c_c00430{transform:matrix(0.691443,0.014520,-0.005249,0.249945,0,0);-ms-transform:matrix(0.691443,0.014520,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.691443,0.014520,-0.005249,0.249945,0,0);}
.mea_c00430{transform:matrix(0.748235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.748235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.748235,0.000000,0.000000,0.250000,0,0);}
.me9_c00430{transform:matrix(0.767970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.767970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.767970,0.000000,0.000000,0.250000,0,0);}
.m8d_c00430{transform:matrix(0.782224,0.025056,-0.008004,0.249872,0,0);-ms-transform:matrix(0.782224,0.025056,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.782224,0.025056,-0.008004,0.249872,0,0);}
.m73_c00430{transform:matrix(1.109126,0.035528,-0.008004,0.249872,0,0);-ms-transform:matrix(1.109126,0.035528,-0.008004,0.249872,0,0);-webkit-transform:matrix(1.109126,0.035528,-0.008004,0.249872,0,0);}
.mf1_c00430{transform:matrix(1.300940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.300940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.300940,0.000000,0.000000,0.250000,0,0);}
.mb0_c00430{transform:matrix(3.361578,0.094124,-0.006997,0.249902,0,0);-ms-transform:matrix(3.361578,0.094124,-0.006997,0.249902,0,0);-webkit-transform:matrix(3.361578,0.094124,-0.006997,0.249902,0,0);}
.mf0_c00430{transform:matrix(4.596570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.596570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.596570,0.000000,0.000000,0.250000,0,0);}
.m3c_c00430{transform:matrix(8.768943,0.140303,-0.003999,0.249968,0,0);-ms-transform:matrix(8.768943,0.140303,-0.003999,0.249968,0,0);-webkit-transform:matrix(8.768943,0.140303,-0.003999,0.249968,0,0);}
.me8_c00430{transform:matrix(9.417970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(9.417970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(9.417970,0.000000,0.000000,0.250000,0,0);}
.v0_c00430{vertical-align:0.000000px;}
.ls0_c00430{letter-spacing:0.000000px;}
.sc__c00430{text-shadow:none;}
.sc0_c00430{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__c00430{-webkit-text-stroke:0px transparent;}
.sc0_c00430{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00430{word-spacing:0.000000px;}
._0_c00430{width:26.104242px;}
.fc0_c00430{color:transparent;}
.fs13_c00430{font-size:17.991223px;}
.fs5_c00430{font-size:18.000000px;}
.fsb_c00430{font-size:18.002304px;}
.fs1b_c00430{font-size:18.004760px;}
.fs17_c00430{font-size:18.006083px;}
.fs19_c00430{font-size:18.007055px;}
.fs23_c00430{font-size:24.000000px;}
.fsd_c00430{font-size:30.006614px;}
.fs1_c00430{font-size:42.000000px;}
.fs2_c00430{font-size:48.000000px;}
.fs3_c00430{font-size:54.000000px;}
.fs12_c00430{font-size:59.970743px;}
.fs21_c00430{font-size:65.967817px;}
.fs1c_c00430{font-size:65.989505px;}
.fs6_c00430{font-size:66.000000px;}
.fs1d_c00430{font-size:66.029693px;}
.fs1f_c00430{font-size:66.031705px;}
.fs1a_c00430{font-size:71.972131px;}
.fs15_c00430{font-size:72.007056px;}
.fsa_c00430{font-size:72.009215px;}
.fs7_c00430{font-size:72.010403px;}
.fs10_c00430{font-size:72.011663px;}
.fsc_c00430{font-size:72.017422px;}
.fs18_c00430{font-size:72.028218px;}
.fs16_c00430{font-size:72.030270px;}
.fs20_c00430{font-size:77.990834px;}
.fs22_c00430{font-size:78.000000px;}
.fs25_c00430{font-size:78.004563px;}
.fse_c00430{font-size:78.009983px;}
.fs8_c00430{font-size:78.011270px;}
.fs11_c00430{font-size:78.017197px;}
.fs24_c00430{font-size:84.004914px;}
.fsf_c00430{font-size:84.013607px;}
.fs1e_c00430{font-size:84.037791px;}
.fs0_c00430{font-size:90.000000px;}
.fs14_c00430{font-size:90.008820px;}
.fs4_c00430{font-size:102.000000px;}
.fs9_c00430{font-size:144.000000px;}
.y0_c00430{bottom:0.000000px;}
.y102_c00430{bottom:90.133640px;}
.y101_c00430{bottom:93.301242px;}
.y100_c00430{bottom:95.803095px;}
.yff_c00430{bottom:96.833299px;}
.yfe_c00430{bottom:97.889535px;}
.yfd_c00430{bottom:100.034355px;}
.yfc_c00430{bottom:101.400982px;}
.yfb_c00430{bottom:119.384184px;}
.yfa_c00430{bottom:121.414509px;}
.yf9_c00430{bottom:127.459668px;}
.ye_c00430{bottom:128.371500px;}
.yf8_c00430{bottom:133.128018px;}
.yf7_c00430{bottom:138.135969px;}
.yf6_c00430{bottom:139.673841px;}
.yf5_c00430{bottom:143.649000px;}
.yf4_c00430{bottom:155.607000px;}
.yf3_c00430{bottom:158.491500px;}
.yf2_c00430{bottom:162.162000px;}
.yf1_c00430{bottom:163.926000px;}
.yf0_c00430{bottom:164.647500px;}
.yd_c00430{bottom:165.910500px;}
.yef_c00430{bottom:166.398000px;}
.yee_c00430{bottom:168.174000px;}
.yed_c00430{bottom:169.564500px;}
.yec_c00430{bottom:192.612000px;}
.yeb_c00430{bottom:192.754500px;}
.yea_c00430{bottom:192.903000px;}
.ye8_c00430{bottom:194.586000px;}
.ye7_c00430{bottom:195.462000px;}
.ye9_c00430{bottom:198.453000px;}
.ye6_c00430{bottom:199.152000px;}
.ye5_c00430{bottom:200.331000px;}
.yc_c00430{bottom:200.604000px;}
.ye4_c00430{bottom:201.180000px;}
.ye3_c00430{bottom:202.620000px;}
.ye2_c00430{bottom:203.749500px;}
.ye1_c00430{bottom:206.020500px;}
.ye0_c00430{bottom:224.217000px;}
.yde_c00430{bottom:227.551551px;}
.ydd_c00430{bottom:232.229994px;}
.ydc_c00430{bottom:234.090951px;}
.yb_c00430{bottom:236.931000px;}
.ydb_c00430{bottom:237.745896px;}
.yda_c00430{bottom:242.907738px;}
.yd9_c00430{bottom:247.044633px;}
.yd8_c00430{bottom:249.760500px;}
.yd7_c00430{bottom:272.468742px;}
.yd6_c00430{bottom:273.482303px;}
.yd5_c00430{bottom:275.851943px;}
.yd4_c00430{bottom:278.891368px;}
.yd3_c00430{bottom:280.272000px;}
.ydf_c00430{bottom:298.093500px;}
.yd2_c00430{bottom:304.239465px;}
.yd1_c00430{bottom:306.690240px;}
.ya_c00430{bottom:307.813500px;}
.yd0_c00430{bottom:307.855965px;}
.ycf_c00430{bottom:309.431835px;}
.yce_c00430{bottom:310.594050px;}
.ycd_c00430{bottom:314.176575px;}
.ycc_c00430{bottom:318.867765px;}
.ycb_c00430{bottom:348.592185px;}
.yca_c00430{bottom:350.559585px;}
.yc9_c00430{bottom:351.855000px;}
.yc8_c00430{bottom:365.965510px;}
.yc7_c00430{bottom:372.378361px;}
.yc6_c00430{bottom:374.159770px;}
.yc5_c00430{bottom:377.337844px;}
.yc4_c00430{bottom:379.074112px;}
.y9_c00430{bottom:379.629000px;}
.yc3_c00430{bottom:384.128059px;}
.yc2_c00430{bottom:385.480198px;}
.yc1_c00430{bottom:386.829632px;}
.yc0_c00430{bottom:391.246500px;}
.ybf_c00430{bottom:417.266319px;}
.ybe_c00430{bottom:417.582960px;}
.ybd_c00430{bottom:418.048572px;}
.ybc_c00430{bottom:418.344720px;}
.ybb_c00430{bottom:418.594914px;}
.yba_c00430{bottom:418.847902px;}
.yb9_c00430{bottom:419.104030px;}
.yb8_c00430{bottom:419.288985px;}
.yb7_c00430{bottom:419.550012px;}
.yb6_c00430{bottom:420.147000px;}
.yb5_c00430{bottom:432.840862px;}
.yb4_c00430{bottom:433.971187px;}
.yb3_c00430{bottom:437.416500px;}
.yb2_c00430{bottom:490.462500px;}
.yb1_c00430{bottom:512.753862px;}
.yb0_c00430{bottom:514.779888px;}
.yaf_c00430{bottom:518.828184px;}
.yae_c00430{bottom:519.788346px;}
.y8_c00430{bottom:523.270500px;}
.yad_c00430{bottom:523.803462px;}
.yac_c00430{bottom:525.000000px;}
.yab_c00430{bottom:528.432786px;}
.yaa_c00430{bottom:530.827500px;}
.ya9_c00430{bottom:559.448919px;}
.ya8_c00430{bottom:560.235627px;}
.ya7_c00430{bottom:560.586705px;}
.ya6_c00430{bottom:560.874798px;}
.ya5_c00430{bottom:561.165621px;}
.ya4_c00430{bottom:561.418263px;}
.ya3_c00430{bottom:561.670905px;}
.ya2_c00430{bottom:561.958647px;}
.ya1_c00430{bottom:562.286286px;}
.ya0_c00430{bottom:562.520052px;}
.y9f_c00430{bottom:562.884975px;}
.y9e_c00430{bottom:563.172717px;}
.y9d_c00430{bottom:563.445327px;}
.y9c_c00430{bottom:563.761500px;}
.y9b_c00430{bottom:575.907021px;}
.y9a_c00430{bottom:576.891165px;}
.y99_c00430{bottom:579.432000px;}
.y98_c00430{bottom:647.074329px;}
.y97_c00430{bottom:649.016595px;}
.y96_c00430{bottom:649.733349px;}
.y95_c00430{bottom:650.146413px;}
.y94_c00430{bottom:650.427645px;}
.y93_c00430{bottom:672.580665px;}
.y92_c00430{bottom:673.195629px;}
.y91_c00430{bottom:673.663824px;}
.y90_c00430{bottom:675.055683px;}
.y8f_c00430{bottom:676.424757px;}
.y8e_c00430{bottom:677.080377px;}
.y8d_c00430{bottom:678.281031px;}
.y8c_c00430{bottom:678.916176px;}
.y8b_c00430{bottom:680.133000px;}
.y7_c00430{bottom:682.839000px;}
.y8a_c00430{bottom:718.152693px;}
.y89_c00430{bottom:718.445142px;}
.y88_c00430{bottom:718.822578px;}
.y87_c00430{bottom:719.392356px;}
.y86_c00430{bottom:719.756784px;}
.y85_c00430{bottom:720.133404px;}
.y84_c00430{bottom:720.442450px;}
.y7b_c00430{bottom:720.651372px;}
.y83_c00430{bottom:720.869412px;}
.y7a_c00430{bottom:720.919068px;}
.y82_c00430{bottom:721.220112px;}
.y79_c00430{bottom:721.278444px;}
.y81_c00430{bottom:721.555078px;}
.y78_c00430{bottom:721.658940px;}
.y80_c00430{bottom:721.887597px;}
.y77_c00430{bottom:722.064828px;}
.y7f_c00430{bottom:722.240745px;}
.y76_c00430{bottom:722.428092px;}
.y7e_c00430{bottom:722.483668px;}
.y75_c00430{bottom:722.797164px;}
.y7d_c00430{bottom:723.167703px;}
.y74_c00430{bottom:723.410268px;}
.y7c_c00430{bottom:723.637950px;}
.y73_c00430{bottom:723.820332px;}
.y72_c00430{bottom:724.187436px;}
.y71_c00430{bottom:724.653756px;}
.y70_c00430{bottom:725.212044px;}
.y6f_c00430{bottom:725.785020px;}
.y6e_c00430{bottom:726.292044px;}
.y6d_c00430{bottom:727.381500px;}
.y6c_c00430{bottom:732.226620px;}
.y6b_c00430{bottom:735.165948px;}
.y6a_c00430{bottom:736.208940px;}
.y69_c00430{bottom:739.003500px;}
.y68_c00430{bottom:781.569429px;}
.y67_c00430{bottom:782.278746px;}
.y66_c00430{bottom:782.970581px;}
.y65_c00430{bottom:785.029893px;}
.y64_c00430{bottom:787.622059px;}
.y6_c00430{bottom:789.627000px;}
.y63_c00430{bottom:789.691987px;}
.y62_c00430{bottom:790.177844px;}
.y61_c00430{bottom:792.186000px;}
.y60_c00430{bottom:820.671768px;}
.y5f_c00430{bottom:823.423380px;}
.y5e_c00430{bottom:824.370135px;}
.y5d_c00430{bottom:825.743214px;}
.y5c_c00430{bottom:826.673889px;}
.y5b_c00430{bottom:829.439340px;}
.y5a_c00430{bottom:854.535573px;}
.y59_c00430{bottom:855.133434px;}
.y58_c00430{bottom:856.319436px;}
.y57_c00430{bottom:856.922427px;}
.y56_c00430{bottom:858.673755px;}
.y5_c00430{bottom:861.160500px;}
.y55_c00430{bottom:861.491934px;}
.y54_c00430{bottom:862.070004px;}
.y53_c00430{bottom:863.464500px;}
.y52_c00430{bottom:892.149168px;}
.y51_c00430{bottom:894.072288px;}
.y4_c00430{bottom:895.590000px;}
.y50_c00430{bottom:895.871448px;}
.y4f_c00430{bottom:897.446736px;}
.y4e_c00430{bottom:897.964992px;}
.y4d_c00430{bottom:899.373000px;}
.y4c_c00430{bottom:935.058817px;}
.y4b_c00430{bottom:935.059384px;}
.y45_c00430{bottom:935.059450px;}
.y48_c00430{bottom:935.059644px;}
.y49_c00430{bottom:935.059677px;}
.y4a_c00430{bottom:935.059981px;}
.y47_c00430{bottom:935.060091px;}
.y46_c00430{bottom:935.060178px;}
.y44_c00430{bottom:935.894139px;}
.y43_c00430{bottom:936.358984px;}
.y42_c00430{bottom:936.591391px;}
.y41_c00430{bottom:936.789810px;}
.y40_c00430{bottom:937.059544px;}
.y3f_c00430{bottom:937.402044px;}
.y3e_c00430{bottom:937.921794px;}
.y3d_c00430{bottom:938.154201px;}
.y3c_c00430{bottom:938.386860px;}
.y3b_c00430{bottom:938.637820px;}
.y3a_c00430{bottom:938.959625px;}
.y39_c00430{bottom:939.601500px;}
.y38_c00430{bottom:948.857082px;}
.y37_c00430{bottom:949.592025px;}
.y36_c00430{bottom:951.756000px;}
.y35_c00430{bottom:995.030772px;}
.y34_c00430{bottom:998.935908px;}
.y33_c00430{bottom:1000.107816px;}
.y32_c00430{bottom:1000.711212px;}
.y31_c00430{bottom:1001.307852px;}
.y30_c00430{bottom:1002.494772px;}
.y2f_c00430{bottom:1003.102584px;}
.y2e_c00430{bottom:1003.884456px;}
.y2d_c00430{bottom:1005.478872px;}
.y2c_c00430{bottom:1029.966840px;}
.y2b_c00430{bottom:1031.751936px;}
.y2a_c00430{bottom:1032.283848px;}
.y29_c00430{bottom:1032.815136px;}
.y28_c00430{bottom:1034.413944px;}
.y27_c00430{bottom:1035.978264px;}
.y26_c00430{bottom:1036.691040px;}
.y3_c00430{bottom:1037.076000px;}
.y25_c00430{bottom:1038.125448px;}
.y24_c00430{bottom:1038.803592px;}
.y23_c00430{bottom:1040.043000px;}
.y22_c00430{bottom:1070.557500px;}
.y21_c00430{bottom:1103.134385px;}
.y20_c00430{bottom:1103.750552px;}
.y1f_c00430{bottom:1104.371916px;}
.y2_c00430{bottom:1106.319000px;}
.y1e_c00430{bottom:1106.459148px;}
.y1d_c00430{bottom:1107.916779px;}
.y1c_c00430{bottom:1109.414661px;}
.y1b_c00430{bottom:1111.262010px;}
.y1a_c00430{bottom:1111.687904px;}
.y19_c00430{bottom:1112.939481px;}
.y18_c00430{bottom:1139.198952px;}
.y17_c00430{bottom:1139.754419px;}
.y16_c00430{bottom:1140.709470px;}
.y1_c00430{bottom:1140.897000px;}
.y15_c00430{bottom:1141.457921px;}
.y14_c00430{bottom:1143.721097px;}
.y13_c00430{bottom:1145.199638px;}
.y12_c00430{bottom:1145.952525px;}
.y11_c00430{bottom:1147.774500px;}
.y10_c00430{bottom:1198.551000px;}
.yf_c00430{bottom:1237.413000px;}
.h15_c00430{height:17.991223px;}
.h7_c00430{height:18.000000px;}
.hd_c00430{height:18.002304px;}
.h1d_c00430{height:18.004760px;}
.h19_c00430{height:18.006083px;}
.h1b_c00430{height:18.007055px;}
.h25_c00430{height:24.000000px;}
.hf_c00430{height:30.006614px;}
.h3_c00430{height:42.000000px;}
.h4_c00430{height:48.000000px;}
.h5_c00430{height:54.000000px;}
.h14_c00430{height:59.970743px;}
.h23_c00430{height:65.967817px;}
.h1e_c00430{height:65.989505px;}
.h8_c00430{height:66.000000px;}
.h1f_c00430{height:66.029693px;}
.h21_c00430{height:66.031705px;}
.h1c_c00430{height:71.972131px;}
.h17_c00430{height:72.007056px;}
.hc_c00430{height:72.009215px;}
.h9_c00430{height:72.010403px;}
.h12_c00430{height:72.011663px;}
.he_c00430{height:72.017422px;}
.h1a_c00430{height:72.028218px;}
.h18_c00430{height:72.030270px;}
.h22_c00430{height:77.990834px;}
.h24_c00430{height:78.000000px;}
.h27_c00430{height:78.004563px;}
.h10_c00430{height:78.009983px;}
.ha_c00430{height:78.011270px;}
.h13_c00430{height:78.017197px;}
.h26_c00430{height:84.004914px;}
.h11_c00430{height:84.013607px;}
.h20_c00430{height:84.037791px;}
.h2_c00430{height:90.000000px;}
.h16_c00430{height:90.008820px;}
.h6_c00430{height:102.000000px;}
.hb_c00430{height:144.000000px;}
.h1_c00430{height:1251.000000px;}
.h0_c00430{height:1251.150000px;}
.w0_c00430{width:915.000000px;}
.x0_c00430{left:0.000000px;}
.xc_c00430{left:98.550000px;}
.xa_c00430{left:100.440000px;}
.x8_c00430{left:102.060000px;}
.x7_c00430{left:104.490000px;}
.x6_c00430{left:106.110000px;}
.x4_c00430{left:107.730000px;}
.x3_c00430{left:110.430000px;}
.x2_c00430{left:112.590000px;}
.x1_c00430{left:113.670000px;}
.xb_c00430{left:145.800000px;}
.x9_c00430{left:148.230000px;}
.x5_c00430{left:153.090000px;}
.xa1_c00430{left:173.082000px;}
.x9a_c00430{left:174.441000px;}
.x96_c00430{left:176.499810px;}
.x90_c00430{left:177.813000px;}
.x83_c00430{left:179.278500px;}
.x6f_c00430{left:180.639000px;}
.x44_c00430{left:183.393000px;}
.x24_c00430{left:185.013000px;}
.x19_c00430{left:187.150431px;}
.x11_c00430{left:189.036000px;}
.xa5_c00430{left:237.417606px;}
.x9b_c00430{left:239.039837px;}
.x99_c00430{left:240.160500px;}
.x8a_c00430{left:242.460000px;}
.x78_c00430{left:245.868489px;}
.x21_c00430{left:248.670000px;}
.x23_c00430{left:249.750000px;}
.x1a_c00430{left:253.005687px;}
.x48_c00430{left:260.014500px;}
.x25_c00430{left:262.476000px;}
.x84_c00430{left:264.804000px;}
.x70_c00430{left:267.555000px;}
.x45_c00430{left:271.393500px;}
.x1b_c00430{left:275.410422px;}
.x54_c00430{left:278.932500px;}
.x79_c00430{left:280.959429px;}
.x22_c00430{left:284.850000px;}
.x49_c00430{left:292.129500px;}
.x12_c00430{left:296.211000px;}
.x55_c00430{left:302.068500px;}
.x46_c00430{left:303.784500px;}
.x26_c00430{left:304.860000px;}
.x97_c00430{left:306.799365px;}
.x71_c00430{left:312.922500px;}
.x4f_c00430{left:314.512728px;}
.x91_c00430{left:318.313858px;}
.x7a_c00430{left:332.539755px;}
.x2c_c00430{left:338.382864px;}
.x13_c00430{left:340.498500px;}
.xa6_c00430{left:346.974459px;}
.x92_c00430{left:351.259880px;}
.x8b_c00430{left:352.428000px;}
.x7c_c00430{left:354.373500px;}
.x69_c00430{left:356.022075px;}
.x5a_c00430{left:357.066000px;}
.x50_c00430{left:358.797825px;}
.x34_c00430{left:360.165000px;}
.x37_c00430{left:370.878000px;}
.x1c_c00430{left:372.604107px;}
.xe_c00430{left:373.680000px;}
.xa7_c00430{left:379.925179px;}
.x2d_c00430{left:381.810972px;}
.x7d_c00430{left:386.847000px;}
.x5e_c00430{left:390.612455px;}
.x6a_c00430{left:393.228033px;}
.x27_c00430{left:394.510500px;}
.x72_c00430{left:398.683500px;}
.x38_c00430{left:401.443500px;}
.x3e_c00430{left:406.627431px;}
.x7e_c00430{left:409.492500px;}
.x6b_c00430{left:412.445421px;}
.xf_c00430{left:413.640000px;}
.x2e_c00430{left:415.579392px;}
.x39_c00430{left:416.767500px;}
.x3f_c00430{left:420.940731px;}
.x6c_c00430{left:423.154038px;}
.x51_c00430{left:424.159788px;}
.x14_c00430{left:427.471500px;}
.x3a_c00430{left:428.718000px;}
.x85_c00430{left:430.137000px;}
.x6d_c00430{left:433.939078px;}
.x40_c00430{left:436.874755px;}
.x28_c00430{left:439.059000px;}
.x5f_c00430{left:441.757758px;}
.x8c_c00430{left:443.302500px;}
.x5b_c00430{left:444.308670px;}
.x73_c00430{left:445.513500px;}
.x4a_c00430{left:448.695000px;}
.x10_c00430{left:451.440000px;}
.xd_c00430{left:453.330000px;}
.x8d_c00430{left:454.651500px;}
.x60_c00430{left:456.315686px;}
.x35_c00430{left:458.527500px;}
.x41_c00430{left:460.370619px;}
.x8e_c00430{left:462.693000px;}
.x61_c00430{left:467.776213px;}
.x52_c00430{left:469.254858px;}
.x42_c00430{left:473.333321px;}
.x93_c00430{left:474.403612px;}
.x3b_c00430{left:475.614000px;}
.x5c_c00430{left:476.869576px;}
.xa2_c00430{left:480.354000px;}
.x2f_c00430{left:481.509780px;}
.x43_c00430{left:483.864951px;}
.x7f_c00430{left:486.688500px;}
.xa8_c00430{left:490.125303px;}
.x36_c00430{left:491.934000px;}
.x8f_c00430{left:495.706500px;}
.x80_c00430{left:497.874000px;}
.x62_c00430{left:499.718239px;}
.x3c_c00430{left:504.768000px;}
.x81_c00430{left:508.954500px;}
.x63_c00430{left:511.240206px;}
.x30_c00430{left:514.673724px;}
.x33_c00430{left:516.548340px;}
.x64_c00430{left:522.580854px;}
.x56_c00430{left:524.073000px;}
.x3d_c00430{left:525.283500px;}
.x1d_c00430{left:528.187829px;}
.x6e_c00430{left:532.790799px;}
.x65_c00430{left:535.252170px;}
.x29_c00430{left:536.829000px;}
.x74_c00430{left:543.304500px;}
.x4b_c00430{left:545.991000px;}
.x66_c00430{left:547.130780px;}
.x31_c00430{left:548.166144px;}
.x82_c00430{left:552.715500px;}
.x67_c00430{left:558.350049px;}
.x15_c00430{left:560.599500px;}
.x68_c00430{left:566.707183px;}
.x5d_c00430{left:568.631723px;}
.x86_c00430{left:573.534000px;}
.x4c_c00430{left:579.490500px;}
.x89_c00430{left:580.770858px;}
.x98_c00430{left:582.836730px;}
.xa9_c00430{left:588.953488px;}
.x9c_c00430{left:591.416607px;}
.x94_c00430{left:594.145751px;}
.x53_c00430{left:600.281784px;}
.x16_c00430{left:604.626000px;}
.x87_c00430{left:607.825500px;}
.x32_c00430{left:613.252056px;}
.x57_c00430{left:622.135500px;}
.x47_c00430{left:634.882500px;}
.x2a_c00430{left:636.754500px;}
.x1e_c00430{left:638.080106px;}
.x75_c00430{left:642.723000px;}
.x4d_c00430{left:645.379500px;}
.xa3_c00430{left:653.208000px;}
.x58_c00430{left:655.080000px;}
.x17_c00430{left:660.805500px;}
.x7b_c00430{left:664.997685px;}
.x1f_c00430{left:670.747484px;}
.x76_c00430{left:676.165500px;}
.x9f_c00430{left:677.173500px;}
.x4e_c00430{left:678.594000px;}
.xa0_c00430{left:683.380500px;}
.x59_c00430{left:688.857000px;}
.x18_c00430{left:693.480000px;}
.xa4_c00430{left:700.110504px;}
.x20_c00430{left:703.197387px;}
.x9d_c00430{left:715.330500px;}
.x77_c00430{left:720.091500px;}
.x9e_c00430{left:736.020000px;}
.x88_c00430{left:752.407500px;}
.x95_c00430{left:793.805891px;}
.x2b_c00430{left:814.773000px;}
@media print{
.v0_c00430{vertical-align:0.000000pt;}
.ls0_c00430{letter-spacing:0.000000pt;}
.ws0_c00430{word-spacing:0.000000pt;}
._0_c00430{width:23.203770pt;}
.fs13_c00430{font-size:15.992198pt;}
.fs5_c00430{font-size:16.000000pt;}
.fsb_c00430{font-size:16.002048pt;}
.fs1b_c00430{font-size:16.004231pt;}
.fs17_c00430{font-size:16.005407pt;}
.fs19_c00430{font-size:16.006271pt;}
.fs23_c00430{font-size:21.333333pt;}
.fsd_c00430{font-size:26.672546pt;}
.fs1_c00430{font-size:37.333333pt;}
.fs2_c00430{font-size:42.666667pt;}
.fs3_c00430{font-size:48.000000pt;}
.fs12_c00430{font-size:53.307327pt;}
.fs21_c00430{font-size:58.638060pt;}
.fs1c_c00430{font-size:58.657338pt;}
.fs6_c00430{font-size:58.666667pt;}
.fs1d_c00430{font-size:58.693061pt;}
.fs1f_c00430{font-size:58.694849pt;}
.fs1a_c00430{font-size:63.975227pt;}
.fs15_c00430{font-size:64.006272pt;}
.fsa_c00430{font-size:64.008191pt;}
.fs7_c00430{font-size:64.009247pt;}
.fs10_c00430{font-size:64.010367pt;}
.fsc_c00430{font-size:64.015486pt;}
.fs18_c00430{font-size:64.025083pt;}
.fs16_c00430{font-size:64.026906pt;}
.fs20_c00430{font-size:69.325186pt;}
.fs22_c00430{font-size:69.333333pt;}
.fs25_c00430{font-size:69.337389pt;}
.fse_c00430{font-size:69.342207pt;}
.fs8_c00430{font-size:69.343351pt;}
.fs11_c00430{font-size:69.348620pt;}
.fs24_c00430{font-size:74.671035pt;}
.fsf_c00430{font-size:74.678762pt;}
.fs1e_c00430{font-size:74.700259pt;}
.fs0_c00430{font-size:80.000000pt;}
.fs14_c00430{font-size:80.007840pt;}
.fs4_c00430{font-size:90.666667pt;}
.fs9_c00430{font-size:128.000000pt;}
.y0_c00430{bottom:0.000000pt;}
.y102_c00430{bottom:80.118791pt;}
.y101_c00430{bottom:82.934437pt;}
.y100_c00430{bottom:85.158307pt;}
.yff_c00430{bottom:86.074044pt;}
.yfe_c00430{bottom:87.012920pt;}
.yfd_c00430{bottom:88.919427pt;}
.yfc_c00430{bottom:90.134207pt;}
.yfb_c00430{bottom:106.119275pt;}
.yfa_c00430{bottom:107.924008pt;}
.yf9_c00430{bottom:113.297483pt;}
.ye_c00430{bottom:114.108000pt;}
.yf8_c00430{bottom:118.336016pt;}
.yf7_c00430{bottom:122.787528pt;}
.yf6_c00430{bottom:124.154525pt;}
.yf5_c00430{bottom:127.688000pt;}
.yf4_c00430{bottom:138.317333pt;}
.yf3_c00430{bottom:140.881333pt;}
.yf2_c00430{bottom:144.144000pt;}
.yf1_c00430{bottom:145.712000pt;}
.yf0_c00430{bottom:146.353333pt;}
.yd_c00430{bottom:147.476000pt;}
.yef_c00430{bottom:147.909333pt;}
.yee_c00430{bottom:149.488000pt;}
.yed_c00430{bottom:150.724000pt;}
.yec_c00430{bottom:171.210667pt;}
.yeb_c00430{bottom:171.337333pt;}
.yea_c00430{bottom:171.469333pt;}
.ye8_c00430{bottom:172.965333pt;}
.ye7_c00430{bottom:173.744000pt;}
.ye9_c00430{bottom:176.402667pt;}
.ye6_c00430{bottom:177.024000pt;}
.ye5_c00430{bottom:178.072000pt;}
.yc_c00430{bottom:178.314667pt;}
.ye4_c00430{bottom:178.826667pt;}
.ye3_c00430{bottom:180.106667pt;}
.ye2_c00430{bottom:181.110667pt;}
.ye1_c00430{bottom:183.129333pt;}
.ye0_c00430{bottom:199.304000pt;}
.yde_c00430{bottom:202.268045pt;}
.ydd_c00430{bottom:206.426661pt;}
.ydc_c00430{bottom:208.080845pt;}
.yb_c00430{bottom:210.605333pt;}
.ydb_c00430{bottom:211.329685pt;}
.yda_c00430{bottom:215.917989pt;}
.yd9_c00430{bottom:219.595229pt;}
.yd8_c00430{bottom:222.009333pt;}
.yd7_c00430{bottom:242.194437pt;}
.yd6_c00430{bottom:243.095380pt;}
.yd5_c00430{bottom:245.201727pt;}
.yd4_c00430{bottom:247.903439pt;}
.yd3_c00430{bottom:249.130667pt;}
.ydf_c00430{bottom:264.972000pt;}
.yd2_c00430{bottom:270.435080pt;}
.yd1_c00430{bottom:272.613547pt;}
.ya_c00430{bottom:273.612000pt;}
.yd0_c00430{bottom:273.649747pt;}
.ycf_c00430{bottom:275.050520pt;}
.yce_c00430{bottom:276.083600pt;}
.ycd_c00430{bottom:279.268067pt;}
.ycc_c00430{bottom:283.438013pt;}
.ycb_c00430{bottom:309.859720pt;}
.yca_c00430{bottom:311.608520pt;}
.yc9_c00430{bottom:312.760000pt;}
.yc8_c00430{bottom:325.302676pt;}
.yc7_c00430{bottom:331.002988pt;}
.yc6_c00430{bottom:332.586463pt;}
.yc5_c00430{bottom:335.411417pt;}
.yc4_c00430{bottom:336.954767pt;}
.y9_c00430{bottom:337.448000pt;}
.yc3_c00430{bottom:341.447164pt;}
.yc2_c00430{bottom:342.649065pt;}
.yc1_c00430{bottom:343.848561pt;}
.yc0_c00430{bottom:347.774667pt;}
.ybf_c00430{bottom:370.903395pt;}
.ybe_c00430{bottom:371.184853pt;}
.ybd_c00430{bottom:371.598731pt;}
.ybc_c00430{bottom:371.861973pt;}
.ybb_c00430{bottom:372.084368pt;}
.yba_c00430{bottom:372.309247pt;}
.yb9_c00430{bottom:372.536916pt;}
.yb8_c00430{bottom:372.701320pt;}
.yb7_c00430{bottom:372.933344pt;}
.yb6_c00430{bottom:373.464000pt;}
.yb5_c00430{bottom:384.747433pt;}
.yb4_c00430{bottom:385.752167pt;}
.yb3_c00430{bottom:388.814667pt;}
.yb2_c00430{bottom:435.966667pt;}
.yb1_c00430{bottom:455.781211pt;}
.yb0_c00430{bottom:457.582123pt;}
.yaf_c00430{bottom:461.180608pt;}
.yae_c00430{bottom:462.034085pt;}
.y8_c00430{bottom:465.129333pt;}
.yad_c00430{bottom:465.603077pt;}
.yac_c00430{bottom:466.666667pt;}
.yab_c00430{bottom:469.718032pt;}
.yaa_c00430{bottom:471.846667pt;}
.ya9_c00430{bottom:497.287928pt;}
.ya8_c00430{bottom:497.987224pt;}
.ya7_c00430{bottom:498.299293pt;}
.ya6_c00430{bottom:498.555376pt;}
.ya5_c00430{bottom:498.813885pt;}
.ya4_c00430{bottom:499.038456pt;}
.ya3_c00430{bottom:499.263027pt;}
.ya2_c00430{bottom:499.518797pt;}
.ya1_c00430{bottom:499.810032pt;}
.ya0_c00430{bottom:500.017824pt;}
.y9f_c00430{bottom:500.342200pt;}
.y9e_c00430{bottom:500.597971pt;}
.y9d_c00430{bottom:500.840291pt;}
.y9c_c00430{bottom:501.121333pt;}
.y9b_c00430{bottom:511.917352pt;}
.y9a_c00430{bottom:512.792147pt;}
.y99_c00430{bottom:515.050667pt;}
.y98_c00430{bottom:575.177181pt;}
.y97_c00430{bottom:576.903640pt;}
.y96_c00430{bottom:577.540755pt;}
.y95_c00430{bottom:577.907923pt;}
.y94_c00430{bottom:578.157907pt;}
.y93_c00430{bottom:597.849480pt;}
.y92_c00430{bottom:598.396115pt;}
.y91_c00430{bottom:598.812288pt;}
.y90_c00430{bottom:600.049496pt;}
.y8f_c00430{bottom:601.266451pt;}
.y8e_c00430{bottom:601.849224pt;}
.y8d_c00430{bottom:602.916472pt;}
.y8c_c00430{bottom:603.481045pt;}
.y8b_c00430{bottom:604.562667pt;}
.y7_c00430{bottom:606.968000pt;}
.y8a_c00430{bottom:638.357949pt;}
.y89_c00430{bottom:638.617904pt;}
.y88_c00430{bottom:638.953403pt;}
.y87_c00430{bottom:639.459872pt;}
.y86_c00430{bottom:639.783808pt;}
.y85_c00430{bottom:640.118581pt;}
.y84_c00430{bottom:640.393289pt;}
.y7b_c00430{bottom:640.578997pt;}
.y83_c00430{bottom:640.772811pt;}
.y7a_c00430{bottom:640.816949pt;}
.y82_c00430{bottom:641.084544pt;}
.y79_c00430{bottom:641.136395pt;}
.y81_c00430{bottom:641.382292pt;}
.y78_c00430{bottom:641.474613pt;}
.y80_c00430{bottom:641.677864pt;}
.y77_c00430{bottom:641.835403pt;}
.y7f_c00430{bottom:641.991773pt;}
.y76_c00430{bottom:642.158304pt;}
.y7e_c00430{bottom:642.207705pt;}
.y75_c00430{bottom:642.486368pt;}
.y7d_c00430{bottom:642.815736pt;}
.y74_c00430{bottom:643.031349pt;}
.y7c_c00430{bottom:643.233733pt;}
.y73_c00430{bottom:643.395851pt;}
.y72_c00430{bottom:643.722165pt;}
.y71_c00430{bottom:644.136672pt;}
.y70_c00430{bottom:644.632928pt;}
.y6f_c00430{bottom:645.142240pt;}
.y6e_c00430{bottom:645.592928pt;}
.y6d_c00430{bottom:646.561333pt;}
.y6c_c00430{bottom:650.868107pt;}
.y6b_c00430{bottom:653.480843pt;}
.y6a_c00430{bottom:654.407947pt;}
.y69_c00430{bottom:656.892000pt;}
.y68_c00430{bottom:694.728381pt;}
.y67_c00430{bottom:695.358885pt;}
.y66_c00430{bottom:695.973849pt;}
.y65_c00430{bottom:697.804349pt;}
.y64_c00430{bottom:700.108497pt;}
.y6_c00430{bottom:701.890667pt;}
.y63_c00430{bottom:701.948433pt;}
.y62_c00430{bottom:702.380305pt;}
.y61_c00430{bottom:704.165333pt;}
.y60_c00430{bottom:729.486016pt;}
.y5f_c00430{bottom:731.931893pt;}
.y5e_c00430{bottom:732.773453pt;}
.y5d_c00430{bottom:733.993968pt;}
.y5c_c00430{bottom:734.821235pt;}
.y5b_c00430{bottom:737.279413pt;}
.y5a_c00430{bottom:759.587176pt;}
.y59_c00430{bottom:760.118608pt;}
.y58_c00430{bottom:761.172832pt;}
.y57_c00430{bottom:761.708824pt;}
.y56_c00430{bottom:763.265560pt;}
.y5_c00430{bottom:765.476000pt;}
.y55_c00430{bottom:765.770608pt;}
.y54_c00430{bottom:766.284448pt;}
.y53_c00430{bottom:767.524000pt;}
.y52_c00430{bottom:793.021483pt;}
.y51_c00430{bottom:794.730923pt;}
.y4_c00430{bottom:796.080000pt;}
.y50_c00430{bottom:796.330176pt;}
.y4f_c00430{bottom:797.730432pt;}
.y4e_c00430{bottom:798.191104pt;}
.y4d_c00430{bottom:799.442667pt;}
.y4c_c00430{bottom:831.163393pt;}
.y4b_c00430{bottom:831.163897pt;}
.y45_c00430{bottom:831.163956pt;}
.y48_c00430{bottom:831.164128pt;}
.y49_c00430{bottom:831.164157pt;}
.y4a_c00430{bottom:831.164428pt;}
.y47_c00430{bottom:831.164525pt;}
.y46_c00430{bottom:831.164603pt;}
.y44_c00430{bottom:831.905901pt;}
.y43_c00430{bottom:832.319097pt;}
.y42_c00430{bottom:832.525681pt;}
.y41_c00430{bottom:832.702053pt;}
.y40_c00430{bottom:832.941817pt;}
.y3f_c00430{bottom:833.246261pt;}
.y3e_c00430{bottom:833.708261pt;}
.y3d_c00430{bottom:833.914845pt;}
.y3c_c00430{bottom:834.121653pt;}
.y3b_c00430{bottom:834.344729pt;}
.y3a_c00430{bottom:834.630777pt;}
.y39_c00430{bottom:835.201333pt;}
.y38_c00430{bottom:843.428517pt;}
.y37_c00430{bottom:844.081800pt;}
.y36_c00430{bottom:846.005333pt;}
.y35_c00430{bottom:884.471797pt;}
.y34_c00430{bottom:887.943029pt;}
.y33_c00430{bottom:888.984725pt;}
.y32_c00430{bottom:889.521077pt;}
.y31_c00430{bottom:890.051424pt;}
.y30_c00430{bottom:891.106464pt;}
.y2f_c00430{bottom:891.646741pt;}
.y2e_c00430{bottom:892.341739pt;}
.y2d_c00430{bottom:893.758997pt;}
.y2c_c00430{bottom:915.526080pt;}
.y2b_c00430{bottom:917.112832pt;}
.y2a_c00430{bottom:917.585643pt;}
.y29_c00430{bottom:918.057899pt;}
.y28_c00430{bottom:919.479061pt;}
.y27_c00430{bottom:920.869568pt;}
.y26_c00430{bottom:921.503147pt;}
.y3_c00430{bottom:921.845333pt;}
.y25_c00430{bottom:922.778176pt;}
.y24_c00430{bottom:923.380971pt;}
.y23_c00430{bottom:924.482667pt;}
.y22_c00430{bottom:951.606667pt;}
.y21_c00430{bottom:980.563897pt;}
.y20_c00430{bottom:981.111601pt;}
.y1f_c00430{bottom:981.663925pt;}
.y2_c00430{bottom:983.394667pt;}
.y1e_c00430{bottom:983.519243pt;}
.y1d_c00430{bottom:984.814915pt;}
.y1c_c00430{bottom:986.146365pt;}
.y1b_c00430{bottom:987.788453pt;}
.y1a_c00430{bottom:988.167025pt;}
.y19_c00430{bottom:989.279539pt;}
.y18_c00430{bottom:1012.621291pt;}
.y17_c00430{bottom:1013.115039pt;}
.y16_c00430{bottom:1013.963973pt;}
.y1_c00430{bottom:1014.130667pt;}
.y15_c00430{bottom:1014.629263pt;}
.y14_c00430{bottom:1016.640975pt;}
.y13_c00430{bottom:1017.955233pt;}
.y12_c00430{bottom:1018.624467pt;}
.y11_c00430{bottom:1020.244000pt;}
.y10_c00430{bottom:1065.378667pt;}
.yf_c00430{bottom:1099.922667pt;}
.h15_c00430{height:15.992198pt;}
.h7_c00430{height:16.000000pt;}
.hd_c00430{height:16.002048pt;}
.h1d_c00430{height:16.004231pt;}
.h19_c00430{height:16.005407pt;}
.h1b_c00430{height:16.006271pt;}
.h25_c00430{height:21.333333pt;}
.hf_c00430{height:26.672546pt;}
.h3_c00430{height:37.333333pt;}
.h4_c00430{height:42.666667pt;}
.h5_c00430{height:48.000000pt;}
.h14_c00430{height:53.307327pt;}
.h23_c00430{height:58.638060pt;}
.h1e_c00430{height:58.657338pt;}
.h8_c00430{height:58.666667pt;}
.h1f_c00430{height:58.693061pt;}
.h21_c00430{height:58.694849pt;}
.h1c_c00430{height:63.975227pt;}
.h17_c00430{height:64.006272pt;}
.hc_c00430{height:64.008191pt;}
.h9_c00430{height:64.009247pt;}
.h12_c00430{height:64.010367pt;}
.he_c00430{height:64.015486pt;}
.h1a_c00430{height:64.025083pt;}
.h18_c00430{height:64.026906pt;}
.h22_c00430{height:69.325186pt;}
.h24_c00430{height:69.333333pt;}
.h27_c00430{height:69.337389pt;}
.h10_c00430{height:69.342207pt;}
.ha_c00430{height:69.343351pt;}
.h13_c00430{height:69.348620pt;}
.h26_c00430{height:74.671035pt;}
.h11_c00430{height:74.678762pt;}
.h20_c00430{height:74.700259pt;}
.h2_c00430{height:80.000000pt;}
.h16_c00430{height:80.007840pt;}
.h6_c00430{height:90.666667pt;}
.hb_c00430{height:128.000000pt;}
.h1_c00430{height:1112.000000pt;}
.h0_c00430{height:1112.133333pt;}
.w0_c00430{width:813.333333pt;}
.x0_c00430{left:0.000000pt;}
.xc_c00430{left:87.600000pt;}
.xa_c00430{left:89.280000pt;}
.x8_c00430{left:90.720000pt;}
.x7_c00430{left:92.880000pt;}
.x6_c00430{left:94.320000pt;}
.x4_c00430{left:95.760000pt;}
.x3_c00430{left:98.160000pt;}
.x2_c00430{left:100.080000pt;}
.x1_c00430{left:101.040000pt;}
.xb_c00430{left:129.600000pt;}
.x9_c00430{left:131.760000pt;}
.x5_c00430{left:136.080000pt;}
.xa1_c00430{left:153.850667pt;}
.x9a_c00430{left:155.058667pt;}
.x96_c00430{left:156.888720pt;}
.x90_c00430{left:158.056000pt;}
.x83_c00430{left:159.358667pt;}
.x6f_c00430{left:160.568000pt;}
.x44_c00430{left:163.016000pt;}
.x24_c00430{left:164.456000pt;}
.x19_c00430{left:166.355939pt;}
.x11_c00430{left:168.032000pt;}
.xa5_c00430{left:211.037872pt;}
.x9b_c00430{left:212.479855pt;}
.x99_c00430{left:213.476000pt;}
.x8a_c00430{left:215.520000pt;}
.x78_c00430{left:218.549768pt;}
.x21_c00430{left:221.040000pt;}
.x23_c00430{left:222.000000pt;}
.x1a_c00430{left:224.893944pt;}
.x48_c00430{left:231.124000pt;}
.x25_c00430{left:233.312000pt;}
.x84_c00430{left:235.381333pt;}
.x70_c00430{left:237.826667pt;}
.x45_c00430{left:241.238667pt;}
.x1b_c00430{left:244.809264pt;}
.x54_c00430{left:247.940000pt;}
.x79_c00430{left:249.741715pt;}
.x22_c00430{left:253.200000pt;}
.x49_c00430{left:259.670667pt;}
.x12_c00430{left:263.298667pt;}
.x55_c00430{left:268.505333pt;}
.x46_c00430{left:270.030667pt;}
.x26_c00430{left:270.986667pt;}
.x97_c00430{left:272.710547pt;}
.x71_c00430{left:278.153333pt;}
.x4f_c00430{left:279.566869pt;}
.x91_c00430{left:282.945652pt;}
.x7a_c00430{left:295.590893pt;}
.x2c_c00430{left:300.784768pt;}
.x13_c00430{left:302.665333pt;}
.xa6_c00430{left:308.421741pt;}
.x92_c00430{left:312.231004pt;}
.x8b_c00430{left:313.269333pt;}
.x7c_c00430{left:314.998667pt;}
.x69_c00430{left:316.464067pt;}
.x5a_c00430{left:317.392000pt;}
.x50_c00430{left:318.931400pt;}
.x34_c00430{left:320.146667pt;}
.x37_c00430{left:329.669333pt;}
.x1c_c00430{left:331.203651pt;}
.xe_c00430{left:332.160000pt;}
.xa7_c00430{left:337.711271pt;}
.x2d_c00430{left:339.387531pt;}
.x7d_c00430{left:343.864000pt;}
.x5e_c00430{left:347.211071pt;}
.x6a_c00430{left:349.536029pt;}
.x27_c00430{left:350.676000pt;}
.x72_c00430{left:354.385333pt;}
.x38_c00430{left:356.838667pt;}
.x3e_c00430{left:361.446605pt;}
.x7e_c00430{left:363.993333pt;}
.x6b_c00430{left:366.618152pt;}
.xf_c00430{left:367.680000pt;}
.x2e_c00430{left:369.403904pt;}
.x39_c00430{left:370.460000pt;}
.x3f_c00430{left:374.169539pt;}
.x6c_c00430{left:376.136923pt;}
.x51_c00430{left:377.030923pt;}
.x14_c00430{left:379.974667pt;}
.x3a_c00430{left:381.082667pt;}
.x85_c00430{left:382.344000pt;}
.x6d_c00430{left:385.723625pt;}
.x40_c00430{left:388.333116pt;}
.x28_c00430{left:390.274667pt;}
.x5f_c00430{left:392.673563pt;}
.x8c_c00430{left:394.046667pt;}
.x5b_c00430{left:394.941040pt;}
.x73_c00430{left:396.012000pt;}
.x4a_c00430{left:398.840000pt;}
.x10_c00430{left:401.280000pt;}
.xd_c00430{left:402.960000pt;}
.x8d_c00430{left:404.134667pt;}
.x60_c00430{left:405.613943pt;}
.x35_c00430{left:407.580000pt;}
.x41_c00430{left:409.218328pt;}
.x8e_c00430{left:411.282667pt;}
.x61_c00430{left:415.801079pt;}
.x52_c00430{left:417.115429pt;}
.x42_c00430{left:420.740729pt;}
.x93_c00430{left:421.692100pt;}
.x3b_c00430{left:422.768000pt;}
.x5c_c00430{left:423.884068pt;}
.xa2_c00430{left:426.981333pt;}
.x2f_c00430{left:428.008693pt;}
.x43_c00430{left:430.102179pt;}
.x7f_c00430{left:432.612000pt;}
.xa8_c00430{left:435.666936pt;}
.x36_c00430{left:437.274667pt;}
.x8f_c00430{left:440.628000pt;}
.x80_c00430{left:442.554667pt;}
.x62_c00430{left:444.193991pt;}
.x3c_c00430{left:448.682667pt;}
.x81_c00430{left:452.404000pt;}
.x63_c00430{left:454.435739pt;}
.x30_c00430{left:457.487755pt;}
.x33_c00430{left:459.154080pt;}
.x64_c00430{left:464.516315pt;}
.x56_c00430{left:465.842667pt;}
.x3d_c00430{left:466.918667pt;}
.x1d_c00430{left:469.500292pt;}
.x6e_c00430{left:473.591821pt;}
.x65_c00430{left:475.779707pt;}
.x29_c00430{left:477.181333pt;}
.x74_c00430{left:482.937333pt;}
.x4b_c00430{left:485.325333pt;}
.x66_c00430{left:486.338471pt;}
.x31_c00430{left:487.258795pt;}
.x82_c00430{left:491.302667pt;}
.x67_c00430{left:496.311155pt;}
.x15_c00430{left:498.310667pt;}
.x68_c00430{left:503.739719pt;}
.x5d_c00430{left:505.450420pt;}
.x86_c00430{left:509.808000pt;}
.x4c_c00430{left:515.102667pt;}
.x89_c00430{left:516.240763pt;}
.x98_c00430{left:518.077093pt;}
.xa9_c00430{left:523.514212pt;}
.x9c_c00430{left:525.703651pt;}
.x94_c00430{left:528.129556pt;}
.x53_c00430{left:533.583808pt;}
.x16_c00430{left:537.445333pt;}
.x87_c00430{left:540.289333pt;}
.x32_c00430{left:545.112939pt;}
.x57_c00430{left:553.009333pt;}
.x47_c00430{left:564.340000pt;}
.x2a_c00430{left:566.004000pt;}
.x1e_c00430{left:567.182316pt;}
.x75_c00430{left:571.309333pt;}
.x4d_c00430{left:573.670667pt;}
.xa3_c00430{left:580.629333pt;}
.x58_c00430{left:582.293333pt;}
.x17_c00430{left:587.382667pt;}
.x7b_c00430{left:591.109053pt;}
.x1f_c00430{left:596.219985pt;}
.x76_c00430{left:601.036000pt;}
.x9f_c00430{left:601.932000pt;}
.x4e_c00430{left:603.194667pt;}
.xa0_c00430{left:607.449333pt;}
.x59_c00430{left:612.317333pt;}
.x18_c00430{left:616.426667pt;}
.xa4_c00430{left:622.320448pt;}
.x20_c00430{left:625.064344pt;}
.x9d_c00430{left:635.849333pt;}
.x77_c00430{left:640.081333pt;}
.x9e_c00430{left:654.240000pt;}
.x88_c00430{left:668.806667pt;}
.x95_c00430{left:705.605236pt;}
.x2b_c00430{left:724.242667pt;}
}





/* 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_c00431 {
    display:none;
  }
  .loading-indicator_c00431.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00431 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_c00431 { 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_c00431" -> "#page-container .classname_c00431")
 */
.pf_c00431 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00431 { /* 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_c00431.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00431 { /* 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_c00431 { /* 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_c00431 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00431 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00431 {overflow:visible;}
  }
}
.c_c00431 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00431 { /* 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_c00431:after { /* webkit #35443 */
  content: '';
}
.t_c00431:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00431 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 */
}
.__c00431 { /* 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_c00431 { /* info for Javascript */
  display:none;
}
.l_c00431 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00431 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00431 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00431: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_c00431 {
    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_c00431.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00431.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_c00431 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00431{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00431;src:url('chunks/assets/font_c605e72f209fc835e906f064.woff2')format("woff");}.ff1_c00431{font-family:ff1_c00431;line-height:1.000000;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;}
.m1b_c00431{transform:matrix(0.037500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.037500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.037500,0.000000,0.000000,0.250000,0,0);}
.m2_c00431{transform:matrix(0.127309,-0.003437,0.006748,0.249909,0,0);-ms-transform:matrix(0.127309,-0.003437,0.006748,0.249909,0,0);-webkit-transform:matrix(0.127309,-0.003437,0.006748,0.249909,0,0);}
.m24_c00431{transform:matrix(0.138815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138815,0.000000,0.000000,0.250000,0,0);}
.m1f_c00431{transform:matrix(0.141535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141535,0.000000,0.000000,0.250000,0,0);}
.m3_c00431{transform:matrix(0.142463,-0.003847,0.006748,0.249909,0,0);-ms-transform:matrix(0.142463,-0.003847,0.006748,0.249909,0,0);-webkit-transform:matrix(0.142463,-0.003847,0.006748,0.249909,0,0);}
.m1e_c00431{transform:matrix(0.146295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146295,0.000000,0.000000,0.250000,0,0);}
.m0_c00431{transform:matrix(0.155895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155895,0.000000,0.000000,0.250000,0,0);}
.mf_c00431{transform:matrix(0.160578,0.004817,-0.007497,0.249888,0,0);-ms-transform:matrix(0.160578,0.004817,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.160578,0.004817,-0.007497,0.249888,0,0);}
.m18_c00431{transform:matrix(0.161485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161485,0.000000,0.000000,0.250000,0,0);}
.m10_c00431{transform:matrix(0.163761,0.004913,-0.007497,0.249888,0,0);-ms-transform:matrix(0.163761,0.004913,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.163761,0.004913,-0.007497,0.249888,0,0);}
.m1_c00431{transform:matrix(0.164160,-0.004432,0.006748,0.249909,0,0);-ms-transform:matrix(0.164160,-0.004432,0.006748,0.249909,0,0);-webkit-transform:matrix(0.164160,-0.004432,0.006748,0.249909,0,0);}
.m20_c00431{transform:matrix(0.165655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165655,0.000000,0.000000,0.250000,0,0);}
.m12_c00431{transform:matrix(0.172957,0.005189,-0.007497,0.249888,0,0);-ms-transform:matrix(0.172957,0.005189,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.172957,0.005189,-0.007497,0.249888,0,0);}
.md_c00431{transform:matrix(0.191685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191685,0.000000,0.000000,0.250000,0,0);}
.m6_c00431{transform:matrix(0.193900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193900,0.000000,0.000000,0.250000,0,0);}
.m1d_c00431{transform:matrix(0.194940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194940,0.000000,0.000000,0.250000,0,0);}
.ma_c00431{transform:matrix(0.203685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203685,0.000000,0.000000,0.250000,0,0);}
.m23_c00431{transform:matrix(0.208755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208755,0.000000,0.000000,0.250000,0,0);}
.m22_c00431{transform:matrix(0.214765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214765,0.000000,0.000000,0.250000,0,0);}
.mb_c00431{transform:matrix(0.214875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214875,0.000000,0.000000,0.250000,0,0);}
.m5_c00431{transform:matrix(0.215420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215420,0.000000,0.000000,0.250000,0,0);}
.m11_c00431{transform:matrix(0.218652,0.006560,-0.007497,0.249888,0,0);-ms-transform:matrix(0.218652,0.006560,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.218652,0.006560,-0.007497,0.249888,0,0);}
.m13_c00431{transform:matrix(0.221425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221425,0.000000,0.000000,0.250000,0,0);}
.mc_c00431{transform:matrix(0.227030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227030,0.000000,0.000000,0.250000,0,0);}
.m1c_c00431{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m7_c00431{transform:matrix(0.234015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234015,0.000000,0.000000,0.250000,0,0);}
.m21_c00431{transform:matrix(0.242330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242330,0.000000,0.000000,0.250000,0,0);}
.m25_c00431{transform:matrix(0.268330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268330,0.000000,0.000000,0.250000,0,0);}
.m15_c00431{transform:matrix(0.279685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279685,0.000000,0.000000,0.250000,0,0);}
.m27_c00431{transform:matrix(0.332415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332415,0.000000,0.000000,0.250000,0,0);}
.me_c00431{transform:matrix(0.412595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412595,0.000000,0.000000,0.250000,0,0);}
.m14_c00431{transform:matrix(0.460070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460070,0.000000,0.000000,0.250000,0,0);}
.m2a_c00431{transform:matrix(0.460435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460435,0.000000,0.000000,0.250000,0,0);}
.m9_c00431{transform:matrix(0.468020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468020,0.000000,0.000000,0.250000,0,0);}
.m8_c00431{transform:matrix(0.517745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517745,0.000000,0.000000,0.250000,0,0);}
.m2b_c00431{transform:matrix(0.558645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558645,0.000000,0.000000,0.250000,0,0);}
.m17_c00431{transform:matrix(0.572930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572930,0.000000,0.000000,0.250000,0,0);}
.m1a_c00431{transform:matrix(0.614190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.614190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.614190,0.000000,0.000000,0.250000,0,0);}
.m19_c00431{transform:matrix(0.626360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.626360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.626360,0.000000,0.000000,0.250000,0,0);}
.m29_c00431{transform:matrix(0.804115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.804115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.804115,0.000000,0.000000,0.250000,0,0);}
.m26_c00431{transform:matrix(0.906105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.906105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.906105,0.000000,0.000000,0.250000,0,0);}
.m28_c00431{transform:matrix(1.044520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.044520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.044520,0.000000,0.000000,0.250000,0,0);}
.m4_c00431{transform:matrix(2.153345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.153345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.153345,0.000000,0.000000,0.250000,0,0);}
.m16_c00431{transform:matrix(4.328120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.328120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.328120,0.000000,0.000000,0.250000,0,0);}
.v0_c00431{vertical-align:0.000000px;}
.ls0_c00431{letter-spacing:0.000000px;}
.sc__c00431{text-shadow:none;}
.sc0_c00431{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__c00431{-webkit-text-stroke:0px transparent;}
.sc0_c00431{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00431{word-spacing:0.000000px;}
.fc0_c00431{color:transparent;}
.fsc_c00431{font-size:18.000000px;}
.fsb_c00431{font-size:30.000000px;}
.fs8_c00431{font-size:36.000000px;}
.fsa_c00431{font-size:42.000000px;}
.fs2_c00431{font-size:48.000000px;}
.fs6_c00431{font-size:54.000000px;}
.fs5_c00431{font-size:78.000000px;}
.fs9_c00431{font-size:90.000000px;}
.fs3_c00431{font-size:96.000000px;}
.fs7_c00431{font-size:108.000000px;}
.fs4_c00431{font-size:126.056687px;}
.fs0_c00431{font-size:138.000000px;}
.fs1_c00431{font-size:138.050292px;}
.y0_c00431{bottom:0.000000px;}
.y20_c00431{bottom:398.230500px;}
.y1f_c00431{bottom:464.130000px;}
.y1e_c00431{bottom:480.330000px;}
.y14_c00431{bottom:504.762000px;}
.y13_c00431{bottom:509.752500px;}
.y1d_c00431{bottom:513.810000px;}
.y1c_c00431{bottom:525.420000px;}
.y1b_c00431{bottom:531.900000px;}
.y1a_c00431{bottom:540.270000px;}
.y19_c00431{bottom:548.100000px;}
.y18_c00431{bottom:560.926500px;}
.y17_c00431{bottom:575.910000px;}
.y16_c00431{bottom:587.790000px;}
.y15_c00431{bottom:606.960000px;}
.y12_c00431{bottom:667.302000px;}
.y11_c00431{bottom:704.110500px;}
.y10_c00431{bottom:719.524500px;}
.yf_c00431{bottom:768.179130px;}
.ye_c00431{bottom:768.898005px;}
.yd_c00431{bottom:771.775935px;}
.yc_c00431{bottom:775.432500px;}
.yb_c00431{bottom:844.215000px;}
.ya_c00431{bottom:844.857000px;}
.y9_c00431{bottom:845.143500px;}
.y8_c00431{bottom:846.531000px;}
.y7_c00431{bottom:847.531500px;}
.y6_c00431{bottom:882.811500px;}
.y5_c00431{bottom:922.059000px;}
.y2_c00431{bottom:930.708000px;}
.y3_c00431{bottom:933.376140px;}
.y4_c00431{bottom:934.312459px;}
.y1_c00431{bottom:986.583000px;}
.he_c00431{height:18.000000px;}
.hd_c00431{height:30.000000px;}
.ha_c00431{height:36.000000px;}
.hc_c00431{height:42.000000px;}
.h4_c00431{height:48.000000px;}
.h8_c00431{height:54.000000px;}
.h7_c00431{height:78.000000px;}
.hb_c00431{height:90.000000px;}
.h5_c00431{height:96.000000px;}
.h9_c00431{height:108.000000px;}
.h6_c00431{height:126.056687px;}
.h2_c00431{height:138.000000px;}
.h3_c00431{height:138.050292px;}
.h1_c00431{height:1251.000000px;}
.h0_c00431{height:1251.150000px;}
.w0_c00431{width:915.000000px;}
.x0_c00431{left:0.000000px;}
.x19_c00431{left:241.920000px;}
.x1a_c00431{left:291.870000px;}
.x18_c00431{left:295.380000px;}
.x14_c00431{left:324.810000px;}
.x2_c00431{left:326.305500px;}
.x5_c00431{left:328.050000px;}
.xb_c00431{left:360.027000px;}
.x10_c00431{left:393.927000px;}
.x6_c00431{left:401.220000px;}
.x21_c00431{left:405.540000px;}
.x3_c00431{left:425.125500px;}
.x15_c00431{left:428.760000px;}
.x22_c00431{left:437.940000px;}
.x4_c00431{left:459.804000px;}
.x16_c00431{left:463.320000px;}
.xc_c00431{left:471.246000px;}
.x23_c00431{left:479.790000px;}
.x24_c00431{left:490.860000px;}
.x17_c00431{left:512.730000px;}
.x11_c00431{left:515.812500px;}
.x7_c00431{left:517.050000px;}
.x8_c00431{left:572.940000px;}
.x12_c00431{left:611.743500px;}
.x9_c00431{left:613.710000px;}
.xd_c00431{left:625.392000px;}
.x1_c00431{left:628.290000px;}
.x13_c00431{left:635.706000px;}
.xe_c00431{left:657.268500px;}
.xf_c00431{left:728.527500px;}
.xa_c00431{left:783.810000px;}
.x1d_c00431{left:892.620000px;}
.x1e_c00431{left:898.020000px;}
.x1c_c00431{left:899.910000px;}
.x20_c00431{left:902.340000px;}
.x1b_c00431{left:904.500000px;}
.x1f_c00431{left:905.580000px;}
@media print{
.v0_c00431{vertical-align:0.000000pt;}
.ls0_c00431{letter-spacing:0.000000pt;}
.ws0_c00431{word-spacing:0.000000pt;}
.fsc_c00431{font-size:16.000000pt;}
.fsb_c00431{font-size:26.666667pt;}
.fs8_c00431{font-size:32.000000pt;}
.fsa_c00431{font-size:37.333333pt;}
.fs2_c00431{font-size:42.666667pt;}
.fs6_c00431{font-size:48.000000pt;}
.fs5_c00431{font-size:69.333333pt;}
.fs9_c00431{font-size:80.000000pt;}
.fs3_c00431{font-size:85.333333pt;}
.fs7_c00431{font-size:96.000000pt;}
.fs4_c00431{font-size:112.050389pt;}
.fs0_c00431{font-size:122.666667pt;}
.fs1_c00431{font-size:122.711371pt;}
.y0_c00431{bottom:0.000000pt;}
.y20_c00431{bottom:353.982667pt;}
.y1f_c00431{bottom:412.560000pt;}
.y1e_c00431{bottom:426.960000pt;}
.y14_c00431{bottom:448.677333pt;}
.y13_c00431{bottom:453.113333pt;}
.y1d_c00431{bottom:456.720000pt;}
.y1c_c00431{bottom:467.040000pt;}
.y1b_c00431{bottom:472.800000pt;}
.y1a_c00431{bottom:480.240000pt;}
.y19_c00431{bottom:487.200000pt;}
.y18_c00431{bottom:498.601333pt;}
.y17_c00431{bottom:511.920000pt;}
.y16_c00431{bottom:522.480000pt;}
.y15_c00431{bottom:539.520000pt;}
.y12_c00431{bottom:593.157333pt;}
.y11_c00431{bottom:625.876000pt;}
.y10_c00431{bottom:639.577333pt;}
.yf_c00431{bottom:682.825893pt;}
.ye_c00431{bottom:683.464893pt;}
.yd_c00431{bottom:686.023053pt;}
.yc_c00431{bottom:689.273333pt;}
.yb_c00431{bottom:750.413333pt;}
.ya_c00431{bottom:750.984000pt;}
.y9_c00431{bottom:751.238667pt;}
.y8_c00431{bottom:752.472000pt;}
.y7_c00431{bottom:753.361333pt;}
.y6_c00431{bottom:784.721333pt;}
.y5_c00431{bottom:819.608000pt;}
.y2_c00431{bottom:827.296000pt;}
.y3_c00431{bottom:829.667680pt;}
.y4_c00431{bottom:830.499964pt;}
.y1_c00431{bottom:876.962667pt;}
.he_c00431{height:16.000000pt;}
.hd_c00431{height:26.666667pt;}
.ha_c00431{height:32.000000pt;}
.hc_c00431{height:37.333333pt;}
.h4_c00431{height:42.666667pt;}
.h8_c00431{height:48.000000pt;}
.h7_c00431{height:69.333333pt;}
.hb_c00431{height:80.000000pt;}
.h5_c00431{height:85.333333pt;}
.h9_c00431{height:96.000000pt;}
.h6_c00431{height:112.050389pt;}
.h2_c00431{height:122.666667pt;}
.h3_c00431{height:122.711371pt;}
.h1_c00431{height:1112.000000pt;}
.h0_c00431{height:1112.133333pt;}
.w0_c00431{width:813.333333pt;}
.x0_c00431{left:0.000000pt;}
.x19_c00431{left:215.040000pt;}
.x1a_c00431{left:259.440000pt;}
.x18_c00431{left:262.560000pt;}
.x14_c00431{left:288.720000pt;}
.x2_c00431{left:290.049333pt;}
.x5_c00431{left:291.600000pt;}
.xb_c00431{left:320.024000pt;}
.x10_c00431{left:350.157333pt;}
.x6_c00431{left:356.640000pt;}
.x21_c00431{left:360.480000pt;}
.x3_c00431{left:377.889333pt;}
.x15_c00431{left:381.120000pt;}
.x22_c00431{left:389.280000pt;}
.x4_c00431{left:408.714667pt;}
.x16_c00431{left:411.840000pt;}
.xc_c00431{left:418.885333pt;}
.x23_c00431{left:426.480000pt;}
.x24_c00431{left:436.320000pt;}
.x17_c00431{left:455.760000pt;}
.x11_c00431{left:458.500000pt;}
.x7_c00431{left:459.600000pt;}
.x8_c00431{left:509.280000pt;}
.x12_c00431{left:543.772000pt;}
.x9_c00431{left:545.520000pt;}
.xd_c00431{left:555.904000pt;}
.x1_c00431{left:558.480000pt;}
.x13_c00431{left:565.072000pt;}
.xe_c00431{left:584.238667pt;}
.xf_c00431{left:647.580000pt;}
.xa_c00431{left:696.720000pt;}
.x1d_c00431{left:793.440000pt;}
.x1e_c00431{left:798.240000pt;}
.x1c_c00431{left:799.920000pt;}
.x20_c00431{left:802.080000pt;}
.x1b_c00431{left:804.000000pt;}
.x1f_c00431{left:804.960000pt;}
}





/* 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_c00432 {
    display:none;
  }
  .loading-indicator_c00432.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00432 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_c00432 { 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_c00432" -> "#page-container .classname_c00432")
 */
.pf_c00432 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00432 { /* 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_c00432.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00432 { /* 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_c00432 { /* 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_c00432 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00432 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00432 {overflow:visible;}
  }
}
.c_c00432 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00432 { /* 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_c00432:after { /* webkit #35443 */
  content: '';
}
.t_c00432:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00432 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 */
}
.__c00432 { /* 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_c00432 { /* info for Javascript */
  display:none;
}
.l_c00432 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00432 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00432 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00432: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_c00432 {
    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_c00432.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00432.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_c00432 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00432{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00432;src:url('chunks/assets/font_c605e72f209fc835e906f064.woff2')format("woff");}.ff1_c00432{font-family:ff1_c00432;line-height:1.000000;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;}
.m1f_c00432{transform:matrix(0.027438,0.000631,-0.005748,0.249934,0,0);-ms-transform:matrix(0.027438,0.000631,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.027438,0.000631,-0.005748,0.249934,0,0);}
.m48_c00432{transform:matrix(0.053681,0.000966,-0.004499,0.249960,0,0);-ms-transform:matrix(0.053681,0.000966,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.053681,0.000966,-0.004499,0.249960,0,0);}
.m15_c00432{transform:matrix(0.113120,0.002602,-0.005748,0.249934,0,0);-ms-transform:matrix(0.113120,0.002602,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.113120,0.002602,-0.005748,0.249934,0,0);}
.mb_c00432{transform:matrix(0.145750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145750,0.000000,0.000000,0.250000,0,0);}
.m33_c00432{transform:matrix(0.156440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156440,0.000000,0.000000,0.250000,0,0);}
.m34_c00432{transform:matrix(0.160805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160805,0.000000,0.000000,0.250000,0,0);}
.m35_c00432{transform:matrix(0.169005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169005,0.000000,0.000000,0.250000,0,0);}
.m50_c00432{transform:matrix(0.189724,0.003415,-0.004499,0.249960,0,0);-ms-transform:matrix(0.189724,0.003415,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.189724,0.003415,-0.004499,0.249960,0,0);}
.m21_c00432{transform:matrix(0.190710,0.004386,-0.005748,0.249934,0,0);-ms-transform:matrix(0.190710,0.004386,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.190710,0.004386,-0.005748,0.249934,0,0);}
.m6e_c00432{transform:matrix(0.191244,0.007083,-0.009253,0.249829,0,0);-ms-transform:matrix(0.191244,0.007083,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.191244,0.007083,-0.009253,0.249829,0,0);}
.m23_c00432{transform:matrix(0.192679,0.004432,-0.005748,0.249934,0,0);-ms-transform:matrix(0.192679,0.004432,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.192679,0.004432,-0.005748,0.249934,0,0);}
.m1e_c00432{transform:matrix(0.193414,0.004449,-0.005748,0.249934,0,0);-ms-transform:matrix(0.193414,0.004449,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.193414,0.004449,-0.005748,0.249934,0,0);}
.m25_c00432{transform:matrix(0.193754,0.004456,-0.005748,0.249934,0,0);-ms-transform:matrix(0.193754,0.004456,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.193754,0.004456,-0.005748,0.249934,0,0);}
.m1_c00432{transform:matrix(0.195480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195480,0.000000,0.000000,0.250000,0,0);}
.m2_c00432{transform:matrix(0.196845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196845,0.000000,0.000000,0.250000,0,0);}
.m86_c00432{transform:matrix(0.198990,0.005970,-0.007497,0.249888,0,0);-ms-transform:matrix(0.198990,0.005970,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.198990,0.005970,-0.007497,0.249888,0,0);}
.m64_c00432{transform:matrix(0.204740,0.005528,-0.006748,0.249909,0,0);-ms-transform:matrix(0.204740,0.005528,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.204740,0.005528,-0.006748,0.249909,0,0);}
.m68_c00432{transform:matrix(0.206020,0.005563,-0.006748,0.249909,0,0);-ms-transform:matrix(0.206020,0.005563,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.206020,0.005563,-0.006748,0.249909,0,0);}
.m87_c00432{transform:matrix(0.206377,0.006191,-0.007497,0.249888,0,0);-ms-transform:matrix(0.206377,0.006191,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.206377,0.006191,-0.007497,0.249888,0,0);}
.m0_c00432{transform:matrix(0.207805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207805,0.000000,0.000000,0.250000,0,0);}
.m3c_c00432{transform:matrix(0.209511,0.003771,-0.004499,0.249960,0,0);-ms-transform:matrix(0.209511,0.003771,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.209511,0.003771,-0.004499,0.249960,0,0);}
.m38_c00432{transform:matrix(0.209816,0.003777,-0.004499,0.249960,0,0);-ms-transform:matrix(0.209816,0.003777,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.209816,0.003777,-0.004499,0.249960,0,0);}
.m3_c00432{transform:matrix(0.212395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212395,0.000000,0.000000,0.250000,0,0);}
.m8b_c00432{transform:matrix(0.212414,0.006372,-0.007497,0.249888,0,0);-ms-transform:matrix(0.212414,0.006372,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.212414,0.006372,-0.007497,0.249888,0,0);}
.m46_c00432{transform:matrix(0.214675,0.003864,-0.004499,0.249960,0,0);-ms-transform:matrix(0.214675,0.003864,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.214675,0.003864,-0.004499,0.249960,0,0);}
.m88_c00432{transform:matrix(0.216897,0.006507,-0.007497,0.249888,0,0);-ms-transform:matrix(0.216897,0.006507,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.216897,0.006507,-0.007497,0.249888,0,0);}
.m24_c00432{transform:matrix(0.217862,0.005011,-0.005748,0.249934,0,0);-ms-transform:matrix(0.217862,0.005011,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.217862,0.005011,-0.005748,0.249934,0,0);}
.m2b_c00432{transform:matrix(0.219610,0.004173,-0.004749,0.249955,0,0);-ms-transform:matrix(0.219610,0.004173,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.219610,0.004173,-0.004749,0.249955,0,0);}
.ma_c00432{transform:matrix(0.220365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220365,0.000000,0.000000,0.250000,0,0);}
.m77_c00432{transform:matrix(0.221106,0.006633,-0.007497,0.249888,0,0);-ms-transform:matrix(0.221106,0.006633,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.221106,0.006633,-0.007497,0.249888,0,0);}
.m70_c00432{transform:matrix(0.222812,0.008252,-0.009253,0.249829,0,0);-ms-transform:matrix(0.222812,0.008252,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.222812,0.008252,-0.009253,0.249829,0,0);}
.m2a_c00432{transform:matrix(0.224559,0.004267,-0.004749,0.249955,0,0);-ms-transform:matrix(0.224559,0.004267,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.224559,0.004267,-0.004749,0.249955,0,0);}
.m7d_c00432{transform:matrix(0.225244,0.006757,-0.007497,0.249888,0,0);-ms-transform:matrix(0.225244,0.006757,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.225244,0.006757,-0.007497,0.249888,0,0);}
.m27_c00432{transform:matrix(0.225630,0.005189,-0.005748,0.249934,0,0);-ms-transform:matrix(0.225630,0.005189,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.225630,0.005189,-0.005748,0.249934,0,0);}
.m4f_c00432{transform:matrix(0.225808,0.004065,-0.004499,0.249960,0,0);-ms-transform:matrix(0.225808,0.004065,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.225808,0.004065,-0.004499,0.249960,0,0);}
.m29_c00432{transform:matrix(0.225864,0.004291,-0.004749,0.249955,0,0);-ms-transform:matrix(0.225864,0.004291,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.225864,0.004291,-0.004749,0.249955,0,0);}
.m80_c00432{transform:matrix(0.225983,0.006102,-0.006748,0.249909,0,0);-ms-transform:matrix(0.225983,0.006102,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.225983,0.006102,-0.006748,0.249909,0,0);}
.m22_c00432{transform:matrix(0.226040,0.005199,-0.005748,0.249934,0,0);-ms-transform:matrix(0.226040,0.005199,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.226040,0.005199,-0.005748,0.249934,0,0);}
.m36_c00432{transform:matrix(0.227308,0.004092,-0.004499,0.249960,0,0);-ms-transform:matrix(0.227308,0.004092,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.227308,0.004092,-0.004499,0.249960,0,0);}
.m28_c00432{transform:matrix(0.227690,0.005237,-0.005748,0.249934,0,0);-ms-transform:matrix(0.227690,0.005237,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.227690,0.005237,-0.005748,0.249934,0,0);}
.m4b_c00432{transform:matrix(0.228043,0.004105,-0.004499,0.249960,0,0);-ms-transform:matrix(0.228043,0.004105,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.228043,0.004105,-0.004499,0.249960,0,0);}
.m20_c00432{transform:matrix(0.228220,0.005249,-0.005748,0.249934,0,0);-ms-transform:matrix(0.228220,0.005249,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.228220,0.005249,-0.005748,0.249934,0,0);}
.m3a_c00432{transform:matrix(0.229078,0.004123,-0.004499,0.249960,0,0);-ms-transform:matrix(0.229078,0.004123,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.229078,0.004123,-0.004499,0.249960,0,0);}
.m2e_c00432{transform:matrix(0.229264,0.004356,-0.004749,0.249955,0,0);-ms-transform:matrix(0.229264,0.004356,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.229264,0.004356,-0.004749,0.249955,0,0);}
.m26_c00432{transform:matrix(0.229714,0.005283,-0.005748,0.249934,0,0);-ms-transform:matrix(0.229714,0.005283,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.229714,0.005283,-0.005748,0.249934,0,0);}
.m6f_c00432{transform:matrix(0.229817,0.008512,-0.009253,0.249829,0,0);-ms-transform:matrix(0.229817,0.008512,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.229817,0.008512,-0.009253,0.249829,0,0);}
.m74_c00432{transform:matrix(0.230647,0.008542,-0.009253,0.249829,0,0);-ms-transform:matrix(0.230647,0.008542,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.230647,0.008542,-0.009253,0.249829,0,0);}
.m3b_c00432{transform:matrix(0.231592,0.004169,-0.004499,0.249960,0,0);-ms-transform:matrix(0.231592,0.004169,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.231592,0.004169,-0.004499,0.249960,0,0);}
.m6d_c00432{transform:matrix(0.232211,0.008600,-0.009253,0.249829,0,0);-ms-transform:matrix(0.232211,0.008600,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.232211,0.008600,-0.009253,0.249829,0,0);}
.m5b_c00432{transform:matrix(0.233197,0.005830,-0.006248,0.249922,0,0);-ms-transform:matrix(0.233197,0.005830,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.233197,0.005830,-0.006248,0.249922,0,0);}
.m2c_c00432{transform:matrix(0.233758,0.004441,-0.004749,0.249955,0,0);-ms-transform:matrix(0.233758,0.004441,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.233758,0.004441,-0.004749,0.249955,0,0);}
.m8d_c00432{transform:matrix(0.235054,0.007052,-0.007497,0.249888,0,0);-ms-transform:matrix(0.235054,0.007052,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.235054,0.007052,-0.007497,0.249888,0,0);}
.m2d_c00432{transform:matrix(0.235502,0.004475,-0.004749,0.249955,0,0);-ms-transform:matrix(0.235502,0.004475,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.235502,0.004475,-0.004749,0.249955,0,0);}
.m2f_c00432{transform:matrix(0.235767,0.004480,-0.004749,0.249955,0,0);-ms-transform:matrix(0.235767,0.004480,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.235767,0.004480,-0.004749,0.249955,0,0);}
.m5d_c00432{transform:matrix(0.235805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235805,0.000000,0.000000,0.250000,0,0);}
.m81_c00432{transform:matrix(0.236359,0.006382,-0.006748,0.249909,0,0);-ms-transform:matrix(0.236359,0.006382,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.236359,0.006382,-0.006748,0.249909,0,0);}
.m66_c00432{transform:matrix(0.238108,0.006429,-0.006748,0.249909,0,0);-ms-transform:matrix(0.238108,0.006429,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.238108,0.006429,-0.006748,0.249909,0,0);}
.m78_c00432{transform:matrix(0.238428,0.007153,-0.007497,0.249888,0,0);-ms-transform:matrix(0.238428,0.007153,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.238428,0.007153,-0.007497,0.249888,0,0);}
.m37_c00432{transform:matrix(0.240121,0.004322,-0.004499,0.249960,0,0);-ms-transform:matrix(0.240121,0.004322,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.240121,0.004322,-0.004499,0.249960,0,0);}
.m73_c00432{transform:matrix(0.240350,0.008902,-0.009253,0.249829,0,0);-ms-transform:matrix(0.240350,0.008902,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.240350,0.008902,-0.009253,0.249829,0,0);}
.m53_c00432{transform:matrix(0.241315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241315,0.000000,0.000000,0.250000,0,0);}
.m8_c00432{transform:matrix(0.245465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245465,0.000000,0.000000,0.250000,0,0);}
.m8c_c00432{transform:matrix(0.245575,0.007367,-0.007497,0.249888,0,0);-ms-transform:matrix(0.245575,0.007367,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.245575,0.007367,-0.007497,0.249888,0,0);}
.m67_c00432{transform:matrix(0.245665,0.006633,-0.006748,0.249909,0,0);-ms-transform:matrix(0.245665,0.006633,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.245665,0.006633,-0.006748,0.249909,0,0);}
.m69_c00432{transform:matrix(0.246230,0.006648,-0.006748,0.249909,0,0);-ms-transform:matrix(0.246230,0.006648,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.246230,0.006648,-0.006748,0.249909,0,0);}
.m39_c00432{transform:matrix(0.246960,0.004445,-0.004499,0.249960,0,0);-ms-transform:matrix(0.246960,0.004445,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.246960,0.004445,-0.004499,0.249960,0,0);}
.m65_c00432{transform:matrix(0.247720,0.006688,-0.006748,0.249909,0,0);-ms-transform:matrix(0.247720,0.006688,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.247720,0.006688,-0.006748,0.249909,0,0);}
.m5f_c00432{transform:matrix(0.247770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247770,0.000000,0.000000,0.250000,0,0);}
.m63_c00432{transform:matrix(0.248275,0.006703,-0.006748,0.249909,0,0);-ms-transform:matrix(0.248275,0.006703,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.248275,0.006703,-0.006748,0.249909,0,0);}
.m1b_c00432{transform:matrix(0.248849,0.005724,-0.005748,0.249934,0,0);-ms-transform:matrix(0.248849,0.005724,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.248849,0.005724,-0.005748,0.249934,0,0);}
.m4c_c00432{transform:matrix(0.250314,0.004506,-0.004499,0.249960,0,0);-ms-transform:matrix(0.250314,0.004506,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.250314,0.004506,-0.004499,0.249960,0,0);}
.m89_c00432{transform:matrix(0.251542,0.007546,-0.007497,0.249888,0,0);-ms-transform:matrix(0.251542,0.007546,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.251542,0.007546,-0.007497,0.249888,0,0);}
.m84_c00432{transform:matrix(0.251778,0.006798,-0.006748,0.249909,0,0);-ms-transform:matrix(0.251778,0.006798,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.251778,0.006798,-0.006748,0.249909,0,0);}
.m8a_c00432{transform:matrix(0.252391,0.007572,-0.007497,0.249888,0,0);-ms-transform:matrix(0.252391,0.007572,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.252391,0.007572,-0.007497,0.249888,0,0);}
.m18_c00432{transform:matrix(0.253438,0.005829,-0.005748,0.249934,0,0);-ms-transform:matrix(0.253438,0.005829,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.253438,0.005829,-0.005748,0.249934,0,0);}
.m6a_c00432{transform:matrix(0.253613,0.006848,-0.006748,0.249909,0,0);-ms-transform:matrix(0.253613,0.006848,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.253613,0.006848,-0.006748,0.249909,0,0);}
.m5a_c00432{transform:matrix(0.253616,0.006340,-0.006248,0.249922,0,0);-ms-transform:matrix(0.253616,0.006340,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.253616,0.006340,-0.006248,0.249922,0,0);}
.m49_c00432{transform:matrix(0.254644,0.004584,-0.004499,0.249960,0,0);-ms-transform:matrix(0.254644,0.004584,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.254644,0.004584,-0.004499,0.249960,0,0);}
.m42_c00432{transform:matrix(0.254979,0.005100,-0.004999,0.249950,0,0);-ms-transform:matrix(0.254979,0.005100,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.254979,0.005100,-0.004999,0.249950,0,0);}
.m3d_c00432{transform:matrix(0.255664,0.004602,-0.004499,0.249960,0,0);-ms-transform:matrix(0.255664,0.004602,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.255664,0.004602,-0.004499,0.249960,0,0);}
.m51_c00432{transform:matrix(0.259913,0.004678,-0.004499,0.249960,0,0);-ms-transform:matrix(0.259913,0.004678,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.259913,0.004678,-0.004499,0.249960,0,0);}
.m7e_c00432{transform:matrix(0.261437,0.007843,-0.007497,0.249888,0,0);-ms-transform:matrix(0.261437,0.007843,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.261437,0.007843,-0.007497,0.249888,0,0);}
.m83_c00432{transform:matrix(0.262194,0.007079,-0.006748,0.249909,0,0);-ms-transform:matrix(0.262194,0.007079,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.262194,0.007079,-0.006748,0.249909,0,0);}
.m7b_c00432{transform:matrix(0.262447,0.007873,-0.007497,0.249888,0,0);-ms-transform:matrix(0.262447,0.007873,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.262447,0.007873,-0.007497,0.249888,0,0);}
.m79_c00432{transform:matrix(0.263247,0.007897,-0.007497,0.249888,0,0);-ms-transform:matrix(0.263247,0.007897,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.263247,0.007897,-0.007497,0.249888,0,0);}
.m3e_c00432{transform:matrix(0.265512,0.005310,-0.004999,0.249950,0,0);-ms-transform:matrix(0.265512,0.005310,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.265512,0.005310,-0.004999,0.249950,0,0);}
.m44_c00432{transform:matrix(0.265847,0.005317,-0.004999,0.249950,0,0);-ms-transform:matrix(0.265847,0.005317,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.265847,0.005317,-0.004999,0.249950,0,0);}
.m4a_c00432{transform:matrix(0.266772,0.004802,-0.004499,0.249960,0,0);-ms-transform:matrix(0.266772,0.004802,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.266772,0.004802,-0.004499,0.249960,0,0);}
.m3f_c00432{transform:matrix(0.267791,0.005356,-0.004999,0.249950,0,0);-ms-transform:matrix(0.267791,0.005356,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.267791,0.005356,-0.004999,0.249950,0,0);}
.m7a_c00432{transform:matrix(0.268189,0.008046,-0.007497,0.249888,0,0);-ms-transform:matrix(0.268189,0.008046,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.268189,0.008046,-0.007497,0.249888,0,0);}
.m4d_c00432{transform:matrix(0.268222,0.004828,-0.004499,0.249960,0,0);-ms-transform:matrix(0.268222,0.004828,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.268222,0.004828,-0.004499,0.249960,0,0);}
.m5e_c00432{transform:matrix(0.268905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268905,0.000000,0.000000,0.250000,0,0);}
.m43_c00432{transform:matrix(0.269561,0.005391,-0.004999,0.249950,0,0);-ms-transform:matrix(0.269561,0.005391,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.269561,0.005391,-0.004999,0.249950,0,0);}
.m47_c00432{transform:matrix(0.269876,0.004858,-0.004499,0.249960,0,0);-ms-transform:matrix(0.269876,0.004858,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.269876,0.004858,-0.004499,0.249960,0,0);}
.m60_c00432{transform:matrix(0.270025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270025,0.000000,0.000000,0.250000,0,0);}
.m40_c00432{transform:matrix(0.271886,0.005438,-0.004999,0.249950,0,0);-ms-transform:matrix(0.271886,0.005438,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.271886,0.005438,-0.004999,0.249950,0,0);}
.m8e_c00432{transform:matrix(0.272090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272090,0.000000,0.000000,0.250000,0,0);}
.m7f_c00432{transform:matrix(0.273225,0.007377,-0.006748,0.249909,0,0);-ms-transform:matrix(0.273225,0.007377,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.273225,0.007377,-0.006748,0.249909,0,0);}
.m76_c00432{transform:matrix(0.274057,0.008222,-0.007497,0.249888,0,0);-ms-transform:matrix(0.274057,0.008222,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.274057,0.008222,-0.007497,0.249888,0,0);}
.m61_c00432{transform:matrix(0.274275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274275,0.000000,0.000000,0.250000,0,0);}
.m82_c00432{transform:matrix(0.274780,0.007419,-0.006748,0.249909,0,0);-ms-transform:matrix(0.274780,0.007419,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.274780,0.007419,-0.006748,0.249909,0,0);}
.m52_c00432{transform:matrix(0.275035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275035,0.000000,0.000000,0.250000,0,0);}
.m41_c00432{transform:matrix(0.275825,0.005516,-0.004999,0.249950,0,0);-ms-transform:matrix(0.275825,0.005516,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.275825,0.005516,-0.004999,0.249950,0,0);}
.m10_c00432{transform:matrix(0.276397,0.006357,-0.005748,0.249934,0,0);-ms-transform:matrix(0.276397,0.006357,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.276397,0.006357,-0.005748,0.249934,0,0);}
.m4e_c00432{transform:matrix(0.277275,0.004991,-0.004499,0.249960,0,0);-ms-transform:matrix(0.277275,0.004991,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.277275,0.004991,-0.004499,0.249960,0,0);}
.m85_c00432{transform:matrix(0.277624,0.007496,-0.006748,0.249909,0,0);-ms-transform:matrix(0.277624,0.007496,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.277624,0.007496,-0.006748,0.249909,0,0);}
.m55_c00432{transform:matrix(0.278433,0.006961,-0.006248,0.249922,0,0);-ms-transform:matrix(0.278433,0.006961,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.278433,0.006961,-0.006248,0.249922,0,0);}
.m45_c00432{transform:matrix(0.280290,0.005045,-0.004499,0.249960,0,0);-ms-transform:matrix(0.280290,0.005045,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.280290,0.005045,-0.004499,0.249960,0,0);}
.m11_c00432{transform:matrix(0.281456,0.006473,-0.005748,0.249934,0,0);-ms-transform:matrix(0.281456,0.006473,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.281456,0.006473,-0.005748,0.249934,0,0);}
.m72_c00432{transform:matrix(0.283351,0.010494,-0.009253,0.249829,0,0);-ms-transform:matrix(0.283351,0.010494,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.283351,0.010494,-0.009253,0.249829,0,0);}
.m57_c00432{transform:matrix(0.284931,0.007123,-0.006248,0.249922,0,0);-ms-transform:matrix(0.284931,0.007123,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.284931,0.007123,-0.006248,0.249922,0,0);}
.m12_c00432{transform:matrix(0.285679,0.006571,-0.005748,0.249934,0,0);-ms-transform:matrix(0.285679,0.006571,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.285679,0.006571,-0.005748,0.249934,0,0);}
.m8f_c00432{transform:matrix(0.286725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286725,0.000000,0.000000,0.250000,0,0);}
.m1a_c00432{transform:matrix(0.287984,0.006624,-0.005748,0.249934,0,0);-ms-transform:matrix(0.287984,0.006624,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.287984,0.006624,-0.005748,0.249934,0,0);}
.m56_c00432{transform:matrix(0.290179,0.007254,-0.006248,0.249922,0,0);-ms-transform:matrix(0.290179,0.007254,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.290179,0.007254,-0.006248,0.249922,0,0);}
.m7c_c00432{transform:matrix(0.290289,0.008709,-0.007497,0.249888,0,0);-ms-transform:matrix(0.290289,0.008709,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.290289,0.008709,-0.007497,0.249888,0,0);}
.m54_c00432{transform:matrix(0.291265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291265,0.000000,0.000000,0.250000,0,0);}
.m19_c00432{transform:matrix(0.292068,0.006718,-0.005748,0.249934,0,0);-ms-transform:matrix(0.292068,0.006718,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.292068,0.006718,-0.005748,0.249934,0,0);}
.m75_c00432{transform:matrix(0.296700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296700,0.000000,0.000000,0.250000,0,0);}
.m58_c00432{transform:matrix(0.297117,0.007428,-0.006248,0.249922,0,0);-ms-transform:matrix(0.297117,0.007428,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.297117,0.007428,-0.006248,0.249922,0,0);}
.m4_c00432{transform:matrix(0.297175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297175,0.000000,0.000000,0.250000,0,0);}
.m13_c00432{transform:matrix(0.297521,0.006843,-0.005748,0.249934,0,0);-ms-transform:matrix(0.297521,0.006843,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.297521,0.006843,-0.005748,0.249934,0,0);}
.m1c_c00432{transform:matrix(0.299751,0.006894,-0.005748,0.249934,0,0);-ms-transform:matrix(0.299751,0.006894,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.299751,0.006894,-0.005748,0.249934,0,0);}
.me_c00432{transform:matrix(0.303285,0.006976,-0.005748,0.249934,0,0);-ms-transform:matrix(0.303285,0.006976,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.303285,0.006976,-0.005748,0.249934,0,0);}
.m5c_c00432{transform:matrix(0.304695,0.007617,-0.006248,0.249922,0,0);-ms-transform:matrix(0.304695,0.007617,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.304695,0.007617,-0.006248,0.249922,0,0);}
.m14_c00432{transform:matrix(0.307264,0.007067,-0.005748,0.249934,0,0);-ms-transform:matrix(0.307264,0.007067,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.307264,0.007067,-0.005748,0.249934,0,0);}
.m59_c00432{transform:matrix(0.308294,0.007707,-0.006248,0.249922,0,0);-ms-transform:matrix(0.308294,0.007707,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.308294,0.007707,-0.006248,0.249922,0,0);}
.m71_c00432{transform:matrix(0.317692,0.011766,-0.009253,0.249829,0,0);-ms-transform:matrix(0.317692,0.011766,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.317692,0.011766,-0.009253,0.249829,0,0);}
.m7_c00432{transform:matrix(0.320665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320665,0.000000,0.000000,0.250000,0,0);}
.m6c_c00432{transform:matrix(0.326801,0.012104,-0.009253,0.249829,0,0);-ms-transform:matrix(0.326801,0.012104,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.326801,0.012104,-0.009253,0.249829,0,0);}
.mf_c00432{transform:matrix(0.328943,0.007566,-0.005748,0.249934,0,0);-ms-transform:matrix(0.328943,0.007566,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.328943,0.007566,-0.005748,0.249934,0,0);}
.m9_c00432{transform:matrix(0.345125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345125,0.000000,0.000000,0.250000,0,0);}
.m17_c00432{transform:matrix(0.383584,0.008822,-0.005748,0.249934,0,0);-ms-transform:matrix(0.383584,0.008822,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.383584,0.008822,-0.005748,0.249934,0,0);}
.m5_c00432{transform:matrix(0.396445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396445,0.000000,0.000000,0.250000,0,0);}
.mc_c00432{transform:matrix(0.455290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455290,0.000000,0.000000,0.250000,0,0);}
.m6_c00432{transform:matrix(0.457065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457065,0.000000,0.000000,0.250000,0,0);}
.md_c00432{transform:matrix(0.457530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457530,0.000000,0.000000,0.250000,0,0);}
.m1d_c00432{transform:matrix(0.580417,0.013350,-0.005748,0.249934,0,0);-ms-transform:matrix(0.580417,0.013350,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.580417,0.013350,-0.005748,0.249934,0,0);}
.m32_c00432{transform:matrix(0.948514,0.018022,-0.004749,0.249955,0,0);-ms-transform:matrix(0.948514,0.018022,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.948514,0.018022,-0.004749,0.249955,0,0);}
.m16_c00432{transform:matrix(2.073907,0.047700,-0.005748,0.249934,0,0);-ms-transform:matrix(2.073907,0.047700,-0.005748,0.249934,0,0);-webkit-transform:matrix(2.073907,0.047700,-0.005748,0.249934,0,0);}
.m6b_c00432{transform:matrix(3.934897,0.145737,-0.009253,0.249829,0,0);-ms-transform:matrix(3.934897,0.145737,-0.009253,0.249829,0,0);-webkit-transform:matrix(3.934897,0.145737,-0.009253,0.249829,0,0);}
.m31_c00432{transform:matrix(4.489455,0.085300,-0.004749,0.249955,0,0);-ms-transform:matrix(4.489455,0.085300,-0.004749,0.249955,0,0);-webkit-transform:matrix(4.489455,0.085300,-0.004749,0.249955,0,0);}
.m30_c00432{transform:matrix(4.548914,0.086429,-0.004749,0.249955,0,0);-ms-transform:matrix(4.548914,0.086429,-0.004749,0.249955,0,0);-webkit-transform:matrix(4.548914,0.086429,-0.004749,0.249955,0,0);}
.m62_c00432{transform:matrix(5.620600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.620600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.620600,0.000000,0.000000,0.250000,0,0);}
.v0_c00432{vertical-align:0.000000px;}
.ls0_c00432{letter-spacing:0.000000px;}
.sc__c00432{text-shadow:none;}
.sc0_c00432{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__c00432{-webkit-text-stroke:0px transparent;}
.sc0_c00432{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00432{word-spacing:0.000000px;}
.fc0_c00432{color:transparent;}
.fsb_c00432{font-size:18.003249px;}
.fs14_c00432{font-size:23.992439px;}
.fs6_c00432{font-size:24.000000px;}
.fs2_c00432{font-size:36.000000px;}
.fs4_c00432{font-size:42.000000px;}
.fs3_c00432{font-size:48.000000px;}
.fs16_c00432{font-size:60.000000px;}
.fs10_c00432{font-size:66.000000px;}
.fs7_c00432{font-size:66.017455px;}
.fs11_c00432{font-size:66.020622px;}
.fs12_c00432{font-size:72.000000px;}
.fsf_c00432{font-size:72.011663px;}
.fse_c00432{font-size:72.014399px;}
.fs8_c00432{font-size:72.019041px;}
.fs18_c00432{font-size:72.026239px;}
.fs17_c00432{font-size:72.032393px;}
.fs5_c00432{font-size:78.000000px;}
.fsd_c00432{font-size:78.012635px;}
.fs13_c00432{font-size:78.028426px;}
.fs19_c00432{font-size:78.035092px;}
.fs15_c00432{font-size:83.973536px;}
.fsa_c00432{font-size:84.015161px;}
.fs9_c00432{font-size:84.022215px;}
.fs0_c00432{font-size:90.000000px;}
.fs1_c00432{font-size:96.000000px;}
.fsc_c00432{font-size:120.000000px;}
.y0_c00432{bottom:0.000000px;}
.y89_c00432{bottom:462.771285px;}
.y88_c00432{bottom:464.781615px;}
.y87_c00432{bottom:465.786555px;}
.y86_c00432{bottom:467.795895px;}
.y85_c00432{bottom:470.389380px;}
.y84_c00432{bottom:471.394050px;}
.y83_c00432{bottom:472.378875px;}
.y82_c00432{bottom:473.320500px;}
.y8a_c00432{bottom:489.762000px;}
.y81_c00432{bottom:496.233211px;}
.y80_c00432{bottom:497.473443px;}
.y7f_c00432{bottom:499.515291px;}
.y7e_c00432{bottom:503.687965px;}
.y7d_c00432{bottom:504.600066px;}
.y7c_c00432{bottom:505.489122px;}
.yd_c00432{bottom:506.259000px;}
.y7b_c00432{bottom:508.149000px;}
.y7a_c00432{bottom:544.082520px;}
.y79_c00432{bottom:562.055160px;}
.y78_c00432{bottom:566.731380px;}
.y77_c00432{bottom:569.334450px;}
.y76_c00432{bottom:572.076120px;}
.y75_c00432{bottom:574.691475px;}
.y74_c00432{bottom:575.672115px;}
.y73_c00432{bottom:576.652260px;}
.yc_c00432{bottom:577.389000px;}
.y72_c00432{bottom:579.972000px;}
.y71_c00432{bottom:613.852500px;}
.y70_c00432{bottom:633.158697px;}
.y6f_c00432{bottom:637.657749px;}
.y6e_c00432{bottom:639.006177px;}
.y6d_c00432{bottom:642.520659px;}
.y6c_c00432{bottom:645.459051px;}
.yb_c00432{bottom:646.795500px;}
.y6b_c00432{bottom:649.475974px;}
.y6a_c00432{bottom:650.714623px;}
.y69_c00432{bottom:653.969532px;}
.y68_c00432{bottom:662.947157px;}
.y66_c00432{bottom:671.346600px;}
.y65_c00432{bottom:673.193846px;}
.y67_c00432{bottom:673.426500px;}
.y64_c00432{bottom:674.054552px;}
.y63_c00432{bottom:676.106808px;}
.y62_c00432{bottom:678.249299px;}
.y61_c00432{bottom:681.195350px;}
.y60_c00432{bottom:682.091898px;}
.y5f_c00432{bottom:684.460500px;}
.ya_c00432{bottom:686.206500px;}
.y9_c00432{bottom:690.120000px;}
.y5e_c00432{bottom:712.533000px;}
.y5d_c00432{bottom:713.857500px;}
.y5c_c00432{bottom:716.155500px;}
.y8_c00432{bottom:717.538500px;}
.y5b_c00432{bottom:717.579000px;}
.y5a_c00432{bottom:720.096000px;}
.y59_c00432{bottom:755.460000px;}
.y58_c00432{bottom:777.583163px;}
.y57_c00432{bottom:778.887375px;}
.y56_c00432{bottom:779.782500px;}
.y55_c00432{bottom:782.829187px;}
.y54_c00432{bottom:785.275650px;}
.y53_c00432{bottom:787.530637px;}
.y7_c00432{bottom:789.196500px;}
.y52_c00432{bottom:790.244287px;}
.y51_c00432{bottom:791.647500px;}
.y50_c00432{bottom:826.587000px;}
.y4f_c00432{bottom:851.282436px;}
.y4e_c00432{bottom:852.336825px;}
.y4d_c00432{bottom:853.225428px;}
.y4c_c00432{bottom:855.988815px;}
.y4b_c00432{bottom:858.176859px;}
.y4a_c00432{bottom:859.871151px;}
.y49_c00432{bottom:860.958219px;}
.y48_c00432{bottom:863.691708px;}
.y47_c00432{bottom:865.351755px;}
.y46_c00432{bottom:891.878142px;}
.y45_c00432{bottom:895.684872px;}
.y44_c00432{bottom:896.286702px;}
.y43_c00432{bottom:898.297500px;}
.y42_c00432{bottom:921.588990px;}
.y41_c00432{bottom:923.577090px;}
.y40_c00432{bottom:924.056520px;}
.y3f_c00432{bottom:926.451150px;}
.y3e_c00432{bottom:928.898040px;}
.y6_c00432{bottom:930.009000px;}
.y3d_c00432{bottom:931.085370px;}
.y3c_c00432{bottom:932.856000px;}
.y3b_c00432{bottom:960.624486px;}
.y3a_c00432{bottom:961.231176px;}
.y39_c00432{bottom:962.228799px;}
.y38_c00432{bottom:963.030213px;}
.y37_c00432{bottom:964.786050px;}
.y36_c00432{bottom:965.592756px;}
.y5_c00432{bottom:966.192000px;}
.y35_c00432{bottom:966.778569px;}
.y34_c00432{bottom:967.954500px;}
.y33_c00432{bottom:997.897500px;}
.y32_c00432{bottom:1022.419955px;}
.y31_c00432{bottom:1025.211456px;}
.y2f_c00432{bottom:1028.842679px;}
.y2e_c00432{bottom:1030.320432px;}
.y30_c00432{bottom:1030.591596px;}
.y2d_c00432{bottom:1032.646431px;}
.y2c_c00432{bottom:1034.498418px;}
.y4_c00432{bottom:1035.714000px;}
.y2b_c00432{bottom:1036.006268px;}
.y2a_c00432{bottom:1037.847995px;}
.y29_c00432{bottom:1039.504500px;}
.y28_c00432{bottom:1064.048614px;}
.y27_c00432{bottom:1064.484417px;}
.y26_c00432{bottom:1066.230058px;}
.y25_c00432{bottom:1066.910725px;}
.y24_c00432{bottom:1069.314969px;}
.y23_c00432{bottom:1070.221783px;}
.y3_c00432{bottom:1070.673000px;}
.y22_c00432{bottom:1071.561415px;}
.y21_c00432{bottom:1072.215291px;}
.y20_c00432{bottom:1074.585532px;}
.y1f_c00432{bottom:1102.355152px;}
.y1e_c00432{bottom:1103.338897px;}
.y1d_c00432{bottom:1105.568100px;}
.y2_c00432{bottom:1106.190000px;}
.y1c_c00432{bottom:1107.854576px;}
.y1b_c00432{bottom:1108.556943px;}
.y1a_c00432{bottom:1109.946186px;}
.y19_c00432{bottom:1111.050238px;}
.y18_c00432{bottom:1133.087491px;}
.y17_c00432{bottom:1134.517987px;}
.y15_c00432{bottom:1135.302045px;}
.y16_c00432{bottom:1137.780008px;}
.y14_c00432{bottom:1138.431126px;}
.y1_c00432{bottom:1140.403500px;}
.y13_c00432{bottom:1140.699466px;}
.y12_c00432{bottom:1141.730499px;}
.y11_c00432{bottom:1143.010138px;}
.y10_c00432{bottom:1144.544457px;}
.yf_c00432{bottom:1145.051986px;}
.ye_c00432{bottom:1148.046000px;}
.hd_c00432{height:18.003249px;}
.h16_c00432{height:23.992439px;}
.h8_c00432{height:24.000000px;}
.h4_c00432{height:36.000000px;}
.h6_c00432{height:42.000000px;}
.h5_c00432{height:48.000000px;}
.h18_c00432{height:60.000000px;}
.h12_c00432{height:66.000000px;}
.h9_c00432{height:66.017455px;}
.h13_c00432{height:66.020622px;}
.h14_c00432{height:72.000000px;}
.h11_c00432{height:72.011663px;}
.h10_c00432{height:72.014399px;}
.ha_c00432{height:72.019041px;}
.h1a_c00432{height:72.026239px;}
.h19_c00432{height:72.032393px;}
.h7_c00432{height:78.000000px;}
.hf_c00432{height:78.012635px;}
.h15_c00432{height:78.028426px;}
.h1b_c00432{height:78.035092px;}
.h17_c00432{height:83.973536px;}
.hc_c00432{height:84.015161px;}
.hb_c00432{height:84.022215px;}
.h2_c00432{height:90.000000px;}
.h3_c00432{height:96.000000px;}
.he_c00432{height:120.000000px;}
.h1_c00432{height:1251.000000px;}
.h0_c00432{height:1251.150000px;}
.w0_c00432{width:915.000000px;}
.x0_c00432{left:0.000000px;}
.xd_c00432{left:101.790000px;}
.xb_c00432{left:103.950000px;}
.x8_c00432{left:105.030000px;}
.x7_c00432{left:106.650000px;}
.x6_c00432{left:109.080000px;}
.x3_c00432{left:112.050000px;}
.x2_c00432{left:113.400000px;}
.x1_c00432{left:114.750000px;}
.x9_c00432{left:127.710000px;}
.xa_c00432{left:150.660000px;}
.xc_c00432{left:153.090000px;}
.x4_c00432{left:155.790000px;}
.x5_c00432{left:167.400000px;}
.x64_c00432{left:178.113000px;}
.xe_c00432{left:188.469000px;}
.x52_c00432{left:191.860500px;}
.x46_c00432{left:193.266000px;}
.x37_c00432{left:195.756000px;}
.x30_c00432{left:196.852500px;}
.x19_c00432{left:199.875078px;}
.x5e_c00432{left:212.490000px;}
.x43_c00432{left:215.190000px;}
.x2d_c00432{left:216.810000px;}
.x4d_c00432{left:225.990000px;}
.x6b_c00432{left:242.982000px;}
.x47_c00432{left:249.394500px;}
.x2e_c00432{left:251.100000px;}
.x1a_c00432{left:252.444993px;}
.x44_c00432{left:260.820000px;}
.x31_c00432{left:262.182000px;}
.x25_c00432{left:275.128500px;}
.x65_c00432{left:276.627000px;}
.x53_c00432{left:279.586500px;}
.x38_c00432{left:284.287500px;}
.x45_c00432{left:294.300000px;}
.x5f_c00432{left:300.087000px;}
.x1f_c00432{left:306.971470px;}
.x66_c00432{left:309.555000px;}
.x4e_c00432{left:312.604500px;}
.x2f_c00432{left:317.250000px;}
.xf_c00432{left:318.643500px;}
.x32_c00432{left:328.060500px;}
.x60_c00432{left:332.758500px;}
.x20_c00432{left:339.642213px;}
.x10_c00432{left:340.710000px;}
.x67_c00432{left:343.336500px;}
.x1b_c00432{left:352.063081px;}
.x48_c00432{left:357.940500px;}
.x3d_c00432{left:361.023000px;}
.x61_c00432{left:365.446500px;}
.x3e_c00432{left:370.659744px;}
.x26_c00432{left:372.061500px;}
.x4f_c00432{left:380.367000px;}
.x51_c00432{left:387.568500px;}
.x39_c00432{left:393.654000px;}
.x6c_c00432{left:395.748000px;}
.x11_c00432{left:407.419500px;}
.x3f_c00432{left:414.130263px;}
.x54_c00432{left:421.905000px;}
.x2a_c00432{left:436.780513px;}
.x49_c00432{left:448.140000px;}
.x21_c00432{left:451.995475px;}
.x1c_c00432{left:460.936584px;}
.x12_c00432{left:463.056000px;}
.x33_c00432{left:470.424000px;}
.x40_c00432{left:481.915731px;}
.x50_c00432{left:489.771000px;}
.x6d_c00432{left:496.224000px;}
.x68_c00432{left:497.880000px;}
.x55_c00432{left:501.256500px;}
.x59_c00432{left:506.862000px;}
.x13_c00432{left:507.883500px;}
.x34_c00432{left:514.947000px;}
.x16_c00432{left:516.253813px;}
.x62_c00432{left:544.014000px;}
.x4a_c00432{left:545.998500px;}
.x27_c00432{left:548.895000px;}
.x6e_c00432{left:563.235000px;}
.x1d_c00432{left:567.058948px;}
.x35_c00432{left:570.370500px;}
.x22_c00432{left:572.188255px;}
.x69_c00432{left:573.504000px;}
.x56_c00432{left:577.266000px;}
.x5b_c00432{left:595.200351px;}
.x36_c00432{left:604.075500px;}
.x14_c00432{left:606.507000px;}
.x57_c00432{left:609.144000px;}
.x1e_c00432{left:613.876088px;}
.x6a_c00432{left:619.438500px;}
.x17_c00432{left:621.474459px;}
.x5c_c00432{left:631.607907px;}
.x3a_c00432{left:635.730000px;}
.x3b_c00432{left:659.701500px;}
.x18_c00432{left:667.617972px;}
.x28_c00432{left:671.316000px;}
.x58_c00432{left:677.560500px;}
.x41_c00432{left:679.970283px;}
.x2b_c00432{left:681.326577px;}
.x23_c00432{left:693.536139px;}
.x4b_c00432{left:703.671000px;}
.x24_c00432{left:715.355157px;}
.x6f_c00432{left:731.160000px;}
.x15_c00432{left:742.554000px;}
.x29_c00432{left:749.092500px;}
.x5d_c00432{left:753.082311px;}
.x4c_c00432{left:755.839500px;}
.x42_c00432{left:757.654482px;}
.x3c_c00432{left:759.106500px;}
.x63_c00432{left:786.657000px;}
.x5a_c00432{left:789.804274px;}
.x2c_c00432{left:808.187838px;}
@media print{
.v0_c00432{vertical-align:0.000000pt;}
.ls0_c00432{letter-spacing:0.000000pt;}
.ws0_c00432{word-spacing:0.000000pt;}
.fsb_c00432{font-size:16.002888pt;}
.fs14_c00432{font-size:21.326612pt;}
.fs6_c00432{font-size:21.333333pt;}
.fs2_c00432{font-size:32.000000pt;}
.fs4_c00432{font-size:37.333333pt;}
.fs3_c00432{font-size:42.666667pt;}
.fs16_c00432{font-size:53.333333pt;}
.fs10_c00432{font-size:58.666667pt;}
.fs7_c00432{font-size:58.682182pt;}
.fs11_c00432{font-size:58.684997pt;}
.fs12_c00432{font-size:64.000000pt;}
.fsf_c00432{font-size:64.010367pt;}
.fse_c00432{font-size:64.012799pt;}
.fs8_c00432{font-size:64.016926pt;}
.fs18_c00432{font-size:64.023324pt;}
.fs17_c00432{font-size:64.028794pt;}
.fs5_c00432{font-size:69.333333pt;}
.fsd_c00432{font-size:69.344564pt;}
.fs13_c00432{font-size:69.358601pt;}
.fs19_c00432{font-size:69.364526pt;}
.fs15_c00432{font-size:74.643143pt;}
.fsa_c00432{font-size:74.680143pt;}
.fs9_c00432{font-size:74.686413pt;}
.fs0_c00432{font-size:80.000000pt;}
.fs1_c00432{font-size:85.333333pt;}
.fsc_c00432{font-size:106.666667pt;}
.y0_c00432{bottom:0.000000pt;}
.y89_c00432{bottom:411.352253pt;}
.y88_c00432{bottom:413.139213pt;}
.y87_c00432{bottom:414.032493pt;}
.y86_c00432{bottom:415.818573pt;}
.y85_c00432{bottom:418.123893pt;}
.y84_c00432{bottom:419.016933pt;}
.y83_c00432{bottom:419.892333pt;}
.y82_c00432{bottom:420.729333pt;}
.y8a_c00432{bottom:435.344000pt;}
.y81_c00432{bottom:441.096188pt;}
.y80_c00432{bottom:442.198616pt;}
.y7f_c00432{bottom:444.013592pt;}
.y7e_c00432{bottom:447.722636pt;}
.y7d_c00432{bottom:448.533392pt;}
.y7c_c00432{bottom:449.323664pt;}
.yd_c00432{bottom:450.008000pt;}
.y7b_c00432{bottom:451.688000pt;}
.y7a_c00432{bottom:483.628907pt;}
.y79_c00432{bottom:499.604587pt;}
.y78_c00432{bottom:503.761227pt;}
.y77_c00432{bottom:506.075067pt;}
.y76_c00432{bottom:508.512107pt;}
.y75_c00432{bottom:510.836867pt;}
.y74_c00432{bottom:511.708547pt;}
.y73_c00432{bottom:512.579787pt;}
.yc_c00432{bottom:513.234667pt;}
.y72_c00432{bottom:515.530667pt;}
.y71_c00432{bottom:545.646667pt;}
.y70_c00432{bottom:562.807731pt;}
.y6f_c00432{bottom:566.806888pt;}
.y6e_c00432{bottom:568.005491pt;}
.y6d_c00432{bottom:571.129475pt;}
.y6c_c00432{bottom:573.741379pt;}
.yb_c00432{bottom:574.929333pt;}
.y6b_c00432{bottom:577.311977pt;}
.y6a_c00432{bottom:578.412999pt;}
.y69_c00432{bottom:581.306251pt;}
.y68_c00432{bottom:589.286361pt;}
.y66_c00432{bottom:596.752533pt;}
.y65_c00432{bottom:598.394529pt;}
.y67_c00432{bottom:598.601333pt;}
.y64_c00432{bottom:599.159601pt;}
.y63_c00432{bottom:600.983829pt;}
.y62_c00432{bottom:602.888265pt;}
.y61_c00432{bottom:605.506977pt;}
.y60_c00432{bottom:606.303909pt;}
.y5f_c00432{bottom:608.409333pt;}
.ya_c00432{bottom:609.961333pt;}
.y9_c00432{bottom:613.440000pt;}
.y5e_c00432{bottom:633.362667pt;}
.y5d_c00432{bottom:634.540000pt;}
.y5c_c00432{bottom:636.582667pt;}
.y8_c00432{bottom:637.812000pt;}
.y5b_c00432{bottom:637.848000pt;}
.y5a_c00432{bottom:640.085333pt;}
.y59_c00432{bottom:671.520000pt;}
.y58_c00432{bottom:691.185033pt;}
.y57_c00432{bottom:692.344333pt;}
.y56_c00432{bottom:693.140000pt;}
.y55_c00432{bottom:695.848167pt;}
.y54_c00432{bottom:698.022800pt;}
.y53_c00432{bottom:700.027233pt;}
.y7_c00432{bottom:701.508000pt;}
.y52_c00432{bottom:702.439367pt;}
.y51_c00432{bottom:703.686667pt;}
.y50_c00432{bottom:734.744000pt;}
.y4f_c00432{bottom:756.695499pt;}
.y4e_c00432{bottom:757.632733pt;}
.y4d_c00432{bottom:758.422603pt;}
.y4c_c00432{bottom:760.878947pt;}
.y4b_c00432{bottom:762.823875pt;}
.y4a_c00432{bottom:764.329912pt;}
.y49_c00432{bottom:765.296195pt;}
.y48_c00432{bottom:767.725963pt;}
.y47_c00432{bottom:769.201560pt;}
.y46_c00432{bottom:792.780571pt;}
.y45_c00432{bottom:796.164331pt;}
.y44_c00432{bottom:796.699291pt;}
.y43_c00432{bottom:798.486667pt;}
.y42_c00432{bottom:819.190213pt;}
.y41_c00432{bottom:820.957413pt;}
.y40_c00432{bottom:821.383573pt;}
.y3f_c00432{bottom:823.512133pt;}
.y3e_c00432{bottom:825.687147pt;}
.y6_c00432{bottom:826.674667pt;}
.y3d_c00432{bottom:827.631440pt;}
.y3c_c00432{bottom:829.205333pt;}
.y3b_c00432{bottom:853.888432pt;}
.y3a_c00432{bottom:854.427712pt;}
.y39_c00432{bottom:855.314488pt;}
.y38_c00432{bottom:856.026856pt;}
.y37_c00432{bottom:857.587600pt;}
.y36_c00432{bottom:858.304672pt;}
.y5_c00432{bottom:858.837333pt;}
.y35_c00432{bottom:859.358728pt;}
.y34_c00432{bottom:860.404000pt;}
.y33_c00432{bottom:887.020000pt;}
.y32_c00432{bottom:908.817737pt;}
.y31_c00432{bottom:911.299072pt;}
.y2f_c00432{bottom:914.526825pt;}
.y2e_c00432{bottom:915.840384pt;}
.y30_c00432{bottom:916.081419pt;}
.y2d_c00432{bottom:917.907939pt;}
.y2c_c00432{bottom:919.554149pt;}
.y4_c00432{bottom:920.634667pt;}
.y2b_c00432{bottom:920.894460pt;}
.y2a_c00432{bottom:922.531551pt;}
.y29_c00432{bottom:924.004000pt;}
.y28_c00432{bottom:945.820991pt;}
.y27_c00432{bottom:946.208371pt;}
.y26_c00432{bottom:947.760052pt;}
.y25_c00432{bottom:948.365089pt;}
.y24_c00432{bottom:950.502195pt;}
.y23_c00432{bottom:951.308252pt;}
.y3_c00432{bottom:951.709333pt;}
.y22_c00432{bottom:952.499036pt;}
.y21_c00432{bottom:953.080259pt;}
.y20_c00432{bottom:955.187140pt;}
.y1f_c00432{bottom:979.871247pt;}
.y1e_c00432{bottom:980.745687pt;}
.y1d_c00432{bottom:982.727200pt;}
.y2_c00432{bottom:983.280000pt;}
.y1c_c00432{bottom:984.759623pt;}
.y1b_c00432{bottom:985.383949pt;}
.y1a_c00432{bottom:986.618832pt;}
.y19_c00432{bottom:987.600212pt;}
.y18_c00432{bottom:1007.188881pt;}
.y17_c00432{bottom:1008.460433pt;}
.y15_c00432{bottom:1009.157373pt;}
.y16_c00432{bottom:1011.360007pt;}
.y14_c00432{bottom:1011.938779pt;}
.y1_c00432{bottom:1013.692000pt;}
.y13_c00432{bottom:1013.955081pt;}
.y12_c00432{bottom:1014.871555pt;}
.y11_c00432{bottom:1016.009012pt;}
.y10_c00432{bottom:1017.372851pt;}
.yf_c00432{bottom:1017.823988pt;}
.ye_c00432{bottom:1020.485333pt;}
.hd_c00432{height:16.002888pt;}
.h16_c00432{height:21.326612pt;}
.h8_c00432{height:21.333333pt;}
.h4_c00432{height:32.000000pt;}
.h6_c00432{height:37.333333pt;}
.h5_c00432{height:42.666667pt;}
.h18_c00432{height:53.333333pt;}
.h12_c00432{height:58.666667pt;}
.h9_c00432{height:58.682182pt;}
.h13_c00432{height:58.684997pt;}
.h14_c00432{height:64.000000pt;}
.h11_c00432{height:64.010367pt;}
.h10_c00432{height:64.012799pt;}
.ha_c00432{height:64.016926pt;}
.h1a_c00432{height:64.023324pt;}
.h19_c00432{height:64.028794pt;}
.h7_c00432{height:69.333333pt;}
.hf_c00432{height:69.344564pt;}
.h15_c00432{height:69.358601pt;}
.h1b_c00432{height:69.364526pt;}
.h17_c00432{height:74.643143pt;}
.hc_c00432{height:74.680143pt;}
.hb_c00432{height:74.686413pt;}
.h2_c00432{height:80.000000pt;}
.h3_c00432{height:85.333333pt;}
.he_c00432{height:106.666667pt;}
.h1_c00432{height:1112.000000pt;}
.h0_c00432{height:1112.133333pt;}
.w0_c00432{width:813.333333pt;}
.x0_c00432{left:0.000000pt;}
.xd_c00432{left:90.480000pt;}
.xb_c00432{left:92.400000pt;}
.x8_c00432{left:93.360000pt;}
.x7_c00432{left:94.800000pt;}
.x6_c00432{left:96.960000pt;}
.x3_c00432{left:99.600000pt;}
.x2_c00432{left:100.800000pt;}
.x1_c00432{left:102.000000pt;}
.x9_c00432{left:113.520000pt;}
.xa_c00432{left:133.920000pt;}
.xc_c00432{left:136.080000pt;}
.x4_c00432{left:138.480000pt;}
.x5_c00432{left:148.800000pt;}
.x64_c00432{left:158.322667pt;}
.xe_c00432{left:167.528000pt;}
.x52_c00432{left:170.542667pt;}
.x46_c00432{left:171.792000pt;}
.x37_c00432{left:174.005333pt;}
.x30_c00432{left:174.980000pt;}
.x19_c00432{left:177.666736pt;}
.x5e_c00432{left:188.880000pt;}
.x43_c00432{left:191.280000pt;}
.x2d_c00432{left:192.720000pt;}
.x4d_c00432{left:200.880000pt;}
.x6b_c00432{left:215.984000pt;}
.x47_c00432{left:221.684000pt;}
.x2e_c00432{left:223.200000pt;}
.x1a_c00432{left:224.395549pt;}
.x44_c00432{left:231.840000pt;}
.x31_c00432{left:233.050667pt;}
.x25_c00432{left:244.558667pt;}
.x65_c00432{left:245.890667pt;}
.x53_c00432{left:248.521333pt;}
.x38_c00432{left:252.700000pt;}
.x45_c00432{left:261.600000pt;}
.x5f_c00432{left:266.744000pt;}
.x1f_c00432{left:272.863529pt;}
.x66_c00432{left:275.160000pt;}
.x4e_c00432{left:277.870667pt;}
.x2f_c00432{left:282.000000pt;}
.xf_c00432{left:283.238667pt;}
.x32_c00432{left:291.609333pt;}
.x60_c00432{left:295.785333pt;}
.x20_c00432{left:301.904189pt;}
.x10_c00432{left:302.853333pt;}
.x67_c00432{left:305.188000pt;}
.x1b_c00432{left:312.944961pt;}
.x48_c00432{left:318.169333pt;}
.x3d_c00432{left:320.909333pt;}
.x61_c00432{left:324.841333pt;}
.x3e_c00432{left:329.475328pt;}
.x26_c00432{left:330.721333pt;}
.x4f_c00432{left:338.104000pt;}
.x51_c00432{left:344.505333pt;}
.x39_c00432{left:349.914667pt;}
.x6c_c00432{left:351.776000pt;}
.x11_c00432{left:362.150667pt;}
.x3f_c00432{left:368.115789pt;}
.x54_c00432{left:375.026667pt;}
.x2a_c00432{left:388.249345pt;}
.x49_c00432{left:398.346667pt;}
.x21_c00432{left:401.773756pt;}
.x1c_c00432{left:409.721408pt;}
.x12_c00432{left:411.605333pt;}
.x33_c00432{left:418.154667pt;}
.x40_c00432{left:428.369539pt;}
.x50_c00432{left:435.352000pt;}
.x6d_c00432{left:441.088000pt;}
.x68_c00432{left:442.560000pt;}
.x55_c00432{left:445.561333pt;}
.x59_c00432{left:450.544000pt;}
.x13_c00432{left:451.452000pt;}
.x34_c00432{left:457.730667pt;}
.x16_c00432{left:458.892279pt;}
.x62_c00432{left:483.568000pt;}
.x4a_c00432{left:485.332000pt;}
.x27_c00432{left:487.906667pt;}
.x6e_c00432{left:500.653333pt;}
.x1d_c00432{left:504.052399pt;}
.x35_c00432{left:506.996000pt;}
.x22_c00432{left:508.611783pt;}
.x69_c00432{left:509.781333pt;}
.x56_c00432{left:513.125333pt;}
.x5b_c00432{left:529.066979pt;}
.x36_c00432{left:536.956000pt;}
.x14_c00432{left:539.117333pt;}
.x57_c00432{left:541.461333pt;}
.x1e_c00432{left:545.667633pt;}
.x6a_c00432{left:550.612000pt;}
.x17_c00432{left:552.421741pt;}
.x5c_c00432{left:561.429251pt;}
.x3a_c00432{left:565.093333pt;}
.x3b_c00432{left:586.401333pt;}
.x18_c00432{left:593.438197pt;}
.x28_c00432{left:596.725333pt;}
.x58_c00432{left:602.276000pt;}
.x41_c00432{left:604.418029pt;}
.x2b_c00432{left:605.623624pt;}
.x23_c00432{left:616.476568pt;}
.x4b_c00432{left:625.485333pt;}
.x24_c00432{left:635.871251pt;}
.x6f_c00432{left:649.920000pt;}
.x15_c00432{left:660.048000pt;}
.x29_c00432{left:665.860000pt;}
.x5d_c00432{left:669.406499pt;}
.x4c_c00432{left:671.857333pt;}
.x42_c00432{left:673.470651pt;}
.x3c_c00432{left:674.761333pt;}
.x63_c00432{left:699.250667pt;}
.x5a_c00432{left:702.048244pt;}
.x2c_c00432{left:718.389189pt;}
}





/* 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_c00433 {
    display:none;
  }
  .loading-indicator_c00433.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00433 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_c00433 { 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_c00433" -> "#page-container .classname_c00433")
 */
.pf_c00433 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00433 { /* 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_c00433.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00433 { /* 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_c00433 { /* 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_c00433 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00433 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00433 {overflow:visible;}
  }
}
.c_c00433 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00433 { /* 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_c00433:after { /* webkit #35443 */
  content: '';
}
.t_c00433:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00433 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 */
}
.__c00433 { /* 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_c00433 { /* info for Javascript */
  display:none;
}
.l_c00433 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00433 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00433 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00433: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_c00433 {
    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_c00433.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00433.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_c00433 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00433{font-family:sans-serif;visibility:hidden;}
.sc__c00433{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00433{-webkit-text-stroke:0px transparent;}
}
.y0_c00433{bottom:0.000000px;}
.h1_c00433{height:1251.000000px;}
.h0_c00433{height:1251.150000px;}
.w0_c00433{width:915.000000px;}
.x0_c00433{left:0.000000px;}
@media print{
.y0_c00433{bottom:0.000000pt;}
.h1_c00433{height:1112.000000pt;}
.h0_c00433{height:1112.133333pt;}
.w0_c00433{width:813.333333pt;}
.x0_c00433{left:0.000000pt;}
}





/* 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_c00434 {
    display:none;
  }
  .loading-indicator_c00434.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00434 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_c00434 { 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_c00434" -> "#page-container .classname_c00434")
 */
.pf_c00434 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00434 { /* 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_c00434.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00434 { /* 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_c00434 { /* 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_c00434 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00434 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00434 {overflow:visible;}
  }
}
.c_c00434 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00434 { /* 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_c00434:after { /* webkit #35443 */
  content: '';
}
.t_c00434:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00434 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 */
}
.__c00434 { /* 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_c00434 { /* info for Javascript */
  display:none;
}
.l_c00434 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00434 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00434 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00434: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_c00434 {
    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_c00434.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00434.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_c00434 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00434{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00434;src:url('chunks/assets/font_cfe63ee56e9e10a97d33a3db.woff2')format("woff");}.ff1_c00434{font-family:ff1_c00434;line-height:1.000000;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;}
.mc_c00434{transform:matrix(0.078100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.078100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.078100,0.000000,0.000000,0.250000,0,0);}
.ma6_c00434{transform:matrix(0.084605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084605,0.000000,0.000000,0.250000,0,0);}
.m3_c00434{transform:matrix(0.125780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125780,0.000000,0.000000,0.250000,0,0);}
.m5f_c00434{transform:matrix(0.135186,0.001081,-0.002000,0.249992,0,0);-ms-transform:matrix(0.135186,0.001081,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.135186,0.001081,-0.002000,0.249992,0,0);}
.m4_c00434{transform:matrix(0.153265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153265,0.000000,0.000000,0.250000,0,0);}
.m11a_c00434{transform:matrix(0.154673,0.002320,-0.003750,0.249972,0,0);-ms-transform:matrix(0.154673,0.002320,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.154673,0.002320,-0.003750,0.249972,0,0);}
.m11d_c00434{transform:matrix(0.157587,0.002364,-0.003750,0.249972,0,0);-ms-transform:matrix(0.157587,0.002364,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.157587,0.002364,-0.003750,0.249972,0,0);}
.m175_c00434{transform:matrix(0.159357,0.002390,-0.003750,0.249972,0,0);-ms-transform:matrix(0.159357,0.002390,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.159357,0.002390,-0.003750,0.249972,0,0);}
.m53_c00434{transform:matrix(0.160195,0.001282,-0.002000,0.249992,0,0);-ms-transform:matrix(0.160195,0.001282,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.160195,0.001282,-0.002000,0.249992,0,0);}
.m6c_c00434{transform:matrix(0.165460,0.001324,-0.002000,0.249992,0,0);-ms-transform:matrix(0.165460,0.001324,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.165460,0.001324,-0.002000,0.249992,0,0);}
.med_c00434{transform:matrix(0.165886,0.002488,-0.003750,0.249972,0,0);-ms-transform:matrix(0.165886,0.002488,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.165886,0.002488,-0.003750,0.249972,0,0);}
.m7b_c00434{transform:matrix(0.166965,0.001336,-0.002000,0.249992,0,0);-ms-transform:matrix(0.166965,0.001336,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.166965,0.001336,-0.002000,0.249992,0,0);}
.m120_c00434{transform:matrix(0.167361,0.002510,-0.003750,0.249972,0,0);-ms-transform:matrix(0.167361,0.002510,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.167361,0.002510,-0.003750,0.249972,0,0);}
.m179_c00434{transform:matrix(0.169145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169145,0.000000,0.000000,0.250000,0,0);}
.m0_c00434{transform:matrix(0.170245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170245,0.000000,0.000000,0.250000,0,0);}
.m7a_c00434{transform:matrix(0.170360,0.001363,-0.002000,0.249992,0,0);-ms-transform:matrix(0.170360,0.001363,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.170360,0.001363,-0.002000,0.249992,0,0);}
.m17e_c00434{transform:matrix(0.171120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171120,0.000000,0.000000,0.250000,0,0);}
.m122_c00434{transform:matrix(0.172966,0.002594,-0.003750,0.249972,0,0);-ms-transform:matrix(0.172966,0.002594,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.172966,0.002594,-0.003750,0.249972,0,0);}
.m181_c00434{transform:matrix(0.173605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173605,0.000000,0.000000,0.250000,0,0);}
.mf3_c00434{transform:matrix(0.175190,0.002628,-0.003750,0.249972,0,0);-ms-transform:matrix(0.175190,0.002628,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.175190,0.002628,-0.003750,0.249972,0,0);}
.m177_c00434{transform:matrix(0.175350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175350,0.000000,0.000000,0.250000,0,0);}
.mef_c00434{transform:matrix(0.176290,0.002644,-0.003750,0.249972,0,0);-ms-transform:matrix(0.176290,0.002644,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.176290,0.002644,-0.003750,0.249972,0,0);}
.m173_c00434{transform:matrix(0.176925,0.002654,-0.003750,0.249972,0,0);-ms-transform:matrix(0.176925,0.002654,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.176925,0.002654,-0.003750,0.249972,0,0);}
.mee_c00434{transform:matrix(0.178350,0.002675,-0.003750,0.249972,0,0);-ms-transform:matrix(0.178350,0.002675,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.178350,0.002675,-0.003750,0.249972,0,0);}
.me5_c00434{transform:matrix(0.178355,0.002675,-0.003750,0.249972,0,0);-ms-transform:matrix(0.178355,0.002675,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.178355,0.002675,-0.003750,0.249972,0,0);}
.m17c_c00434{transform:matrix(0.178370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178370,0.000000,0.000000,0.250000,0,0);}
.mf1_c00434{transform:matrix(0.178460,0.002677,-0.003750,0.249972,0,0);-ms-transform:matrix(0.178460,0.002677,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.178460,0.002677,-0.003750,0.249972,0,0);}
.ma7_c00434{transform:matrix(0.178615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178615,0.000000,0.000000,0.250000,0,0);}
.m121_c00434{transform:matrix(0.179680,0.002695,-0.003750,0.249972,0,0);-ms-transform:matrix(0.179680,0.002695,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.179680,0.002695,-0.003750,0.249972,0,0);}
.mca_c00434{transform:matrix(0.180260,0.002704,-0.003750,0.249972,0,0);-ms-transform:matrix(0.180260,0.002704,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.180260,0.002704,-0.003750,0.249972,0,0);}
.ma9_c00434{transform:matrix(0.180280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180280,0.000000,0.000000,0.250000,0,0);}
.m71_c00434{transform:matrix(0.180669,0.001445,-0.002000,0.249992,0,0);-ms-transform:matrix(0.180669,0.001445,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.180669,0.001445,-0.002000,0.249992,0,0);}
.m125_c00434{transform:matrix(0.180690,0.002710,-0.003750,0.249972,0,0);-ms-transform:matrix(0.180690,0.002710,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.180690,0.002710,-0.003750,0.249972,0,0);}
.mec_c00434{transform:matrix(0.180755,0.002711,-0.003750,0.249972,0,0);-ms-transform:matrix(0.180755,0.002711,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.180755,0.002711,-0.003750,0.249972,0,0);}
.m11b_c00434{transform:matrix(0.181365,0.002720,-0.003750,0.249972,0,0);-ms-transform:matrix(0.181365,0.002720,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.181365,0.002720,-0.003750,0.249972,0,0);}
.m119_c00434{transform:matrix(0.181460,0.002722,-0.003750,0.249972,0,0);-ms-transform:matrix(0.181460,0.002722,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.181460,0.002722,-0.003750,0.249972,0,0);}
.m42_c00434{transform:matrix(0.182139,0.001457,-0.002000,0.249992,0,0);-ms-transform:matrix(0.182139,0.001457,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.182139,0.001457,-0.002000,0.249992,0,0);}
.mcd_c00434{transform:matrix(0.182449,0.002737,-0.003750,0.249972,0,0);-ms-transform:matrix(0.182449,0.002737,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.182449,0.002737,-0.003750,0.249972,0,0);}
.m168_c00434{transform:matrix(0.183339,0.002750,-0.003750,0.249972,0,0);-ms-transform:matrix(0.183339,0.002750,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.183339,0.002750,-0.003750,0.249972,0,0);}
.m172_c00434{transform:matrix(0.183409,0.002751,-0.003750,0.249972,0,0);-ms-transform:matrix(0.183409,0.002751,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.183409,0.002751,-0.003750,0.249972,0,0);}
.m180_c00434{transform:matrix(0.183915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183915,0.000000,0.000000,0.250000,0,0);}
.m183_c00434{transform:matrix(0.183925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183925,0.000000,0.000000,0.250000,0,0);}
.m164_c00434{transform:matrix(0.184154,0.002762,-0.003750,0.249972,0,0);-ms-transform:matrix(0.184154,0.002762,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.184154,0.002762,-0.003750,0.249972,0,0);}
.m182_c00434{transform:matrix(0.184475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184475,0.000000,0.000000,0.250000,0,0);}
.m11f_c00434{transform:matrix(0.184559,0.002768,-0.003750,0.249972,0,0);-ms-transform:matrix(0.184559,0.002768,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.184559,0.002768,-0.003750,0.249972,0,0);}
.mf2_c00434{transform:matrix(0.185429,0.002781,-0.003750,0.249972,0,0);-ms-transform:matrix(0.185429,0.002781,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.185429,0.002781,-0.003750,0.249972,0,0);}
.m116_c00434{transform:matrix(0.185984,0.002790,-0.003750,0.249972,0,0);-ms-transform:matrix(0.185984,0.002790,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.185984,0.002790,-0.003750,0.249972,0,0);}
.m16c_c00434{transform:matrix(0.186764,0.002801,-0.003750,0.249972,0,0);-ms-transform:matrix(0.186764,0.002801,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.186764,0.002801,-0.003750,0.249972,0,0);}
.m124_c00434{transform:matrix(0.186924,0.002804,-0.003750,0.249972,0,0);-ms-transform:matrix(0.186924,0.002804,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.186924,0.002804,-0.003750,0.249972,0,0);}
.m15e_c00434{transform:matrix(0.186934,0.002804,-0.003750,0.249972,0,0);-ms-transform:matrix(0.186934,0.002804,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.186934,0.002804,-0.003750,0.249972,0,0);}
.m117_c00434{transform:matrix(0.187489,0.002812,-0.003750,0.249972,0,0);-ms-transform:matrix(0.187489,0.002812,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.187489,0.002812,-0.003750,0.249972,0,0);}
.m16e_c00434{transform:matrix(0.187594,0.002814,-0.003750,0.249972,0,0);-ms-transform:matrix(0.187594,0.002814,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.187594,0.002814,-0.003750,0.249972,0,0);}
.m79_c00434{transform:matrix(0.187609,0.001501,-0.002000,0.249992,0,0);-ms-transform:matrix(0.187609,0.001501,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.187609,0.001501,-0.002000,0.249992,0,0);}
.m171_c00434{transform:matrix(0.188564,0.002828,-0.003750,0.249972,0,0);-ms-transform:matrix(0.188564,0.002828,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.188564,0.002828,-0.003750,0.249972,0,0);}
.mf7_c00434{transform:matrix(0.188609,0.002829,-0.003750,0.249972,0,0);-ms-transform:matrix(0.188609,0.002829,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.188609,0.002829,-0.003750,0.249972,0,0);}
.m12d_c00434{transform:matrix(0.189134,0.002837,-0.003750,0.249972,0,0);-ms-transform:matrix(0.189134,0.002837,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.189134,0.002837,-0.003750,0.249972,0,0);}
.mab_c00434{transform:matrix(0.189620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189620,0.000000,0.000000,0.250000,0,0);}
.m12b_c00434{transform:matrix(0.189629,0.002844,-0.003750,0.249972,0,0);-ms-transform:matrix(0.189629,0.002844,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.189629,0.002844,-0.003750,0.249972,0,0);}
.m170_c00434{transform:matrix(0.189754,0.002846,-0.003750,0.249972,0,0);-ms-transform:matrix(0.189754,0.002846,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.189754,0.002846,-0.003750,0.249972,0,0);}
.m108_c00434{transform:matrix(0.190054,0.002851,-0.003750,0.249972,0,0);-ms-transform:matrix(0.190054,0.002851,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.190054,0.002851,-0.003750,0.249972,0,0);}
.m11c_c00434{transform:matrix(0.190299,0.002854,-0.003750,0.249972,0,0);-ms-transform:matrix(0.190299,0.002854,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.190299,0.002854,-0.003750,0.249972,0,0);}
.m167_c00434{transform:matrix(0.190494,0.002857,-0.003750,0.249972,0,0);-ms-transform:matrix(0.190494,0.002857,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.190494,0.002857,-0.003750,0.249972,0,0);}
.mb2_c00434{transform:matrix(0.190830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190830,0.000000,0.000000,0.250000,0,0);}
.meb_c00434{transform:matrix(0.191248,0.002869,-0.003750,0.249972,0,0);-ms-transform:matrix(0.191248,0.002869,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.191248,0.002869,-0.003750,0.249972,0,0);}
.m7_c00434{transform:matrix(0.191580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191580,0.000000,0.000000,0.250000,0,0);}
.m58_c00434{transform:matrix(0.191659,0.001533,-0.002000,0.249992,0,0);-ms-transform:matrix(0.191659,0.001533,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.191659,0.001533,-0.002000,0.249992,0,0);}
.mcf_c00434{transform:matrix(0.191903,0.002879,-0.003750,0.249972,0,0);-ms-transform:matrix(0.191903,0.002879,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.191903,0.002879,-0.003750,0.249972,0,0);}
.m17a_c00434{transform:matrix(0.192140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192140,0.000000,0.000000,0.250000,0,0);}
.mb0_c00434{transform:matrix(0.192210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192210,0.000000,0.000000,0.250000,0,0);}
.mac_c00434{transform:matrix(0.192510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192510,0.000000,0.000000,0.250000,0,0);}
.m131_c00434{transform:matrix(0.194518,0.002918,-0.003750,0.249972,0,0);-ms-transform:matrix(0.194518,0.002918,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.194518,0.002918,-0.003750,0.249972,0,0);}
.m56_c00434{transform:matrix(0.194534,0.001556,-0.002000,0.249992,0,0);-ms-transform:matrix(0.194534,0.001556,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.194534,0.001556,-0.002000,0.249992,0,0);}
.m7c_c00434{transform:matrix(0.195309,0.001562,-0.002000,0.249992,0,0);-ms-transform:matrix(0.195309,0.001562,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.195309,0.001562,-0.002000,0.249992,0,0);}
.m11e_c00434{transform:matrix(0.195463,0.002932,-0.003750,0.249972,0,0);-ms-transform:matrix(0.195463,0.002932,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.195463,0.002932,-0.003750,0.249972,0,0);}
.m174_c00434{transform:matrix(0.196053,0.002941,-0.003750,0.249972,0,0);-ms-transform:matrix(0.196053,0.002941,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.196053,0.002941,-0.003750,0.249972,0,0);}
.m40_c00434{transform:matrix(0.196119,0.001569,-0.002000,0.249992,0,0);-ms-transform:matrix(0.196119,0.001569,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.196119,0.001569,-0.002000,0.249992,0,0);}
.m16b_c00434{transform:matrix(0.196283,0.002944,-0.003750,0.249972,0,0);-ms-transform:matrix(0.196283,0.002944,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.196283,0.002944,-0.003750,0.249972,0,0);}
.m60_c00434{transform:matrix(0.196509,0.001572,-0.002000,0.249992,0,0);-ms-transform:matrix(0.196509,0.001572,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.196509,0.001572,-0.002000,0.249992,0,0);}
.m55_c00434{transform:matrix(0.196729,0.001574,-0.002000,0.249992,0,0);-ms-transform:matrix(0.196729,0.001574,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.196729,0.001574,-0.002000,0.249992,0,0);}
.m16a_c00434{transform:matrix(0.196753,0.002951,-0.003750,0.249972,0,0);-ms-transform:matrix(0.196753,0.002951,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.196753,0.002951,-0.003750,0.249972,0,0);}
.m6e_c00434{transform:matrix(0.197319,0.001579,-0.002000,0.249992,0,0);-ms-transform:matrix(0.197319,0.001579,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.197319,0.001579,-0.002000,0.249992,0,0);}
.m162_c00434{transform:matrix(0.197528,0.002963,-0.003750,0.249972,0,0);-ms-transform:matrix(0.197528,0.002963,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.197528,0.002963,-0.003750,0.249972,0,0);}
.mae_c00434{transform:matrix(0.197550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197550,0.000000,0.000000,0.250000,0,0);}
.m178_c00434{transform:matrix(0.197820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197820,0.000000,0.000000,0.250000,0,0);}
.mcc_c00434{transform:matrix(0.198068,0.002971,-0.003750,0.249972,0,0);-ms-transform:matrix(0.198068,0.002971,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.198068,0.002971,-0.003750,0.249972,0,0);}
.m13a_c00434{transform:matrix(0.198523,0.002978,-0.003750,0.249972,0,0);-ms-transform:matrix(0.198523,0.002978,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.198523,0.002978,-0.003750,0.249972,0,0);}
.m137_c00434{transform:matrix(0.199758,0.002996,-0.003750,0.249972,0,0);-ms-transform:matrix(0.199758,0.002996,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.199758,0.002996,-0.003750,0.249972,0,0);}
.m80_c00434{transform:matrix(0.199919,0.001599,-0.002000,0.249992,0,0);-ms-transform:matrix(0.199919,0.001599,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.199919,0.001599,-0.002000,0.249992,0,0);}
.m6d_c00434{transform:matrix(0.200019,0.001600,-0.002000,0.249992,0,0);-ms-transform:matrix(0.200019,0.001600,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.200019,0.001600,-0.002000,0.249992,0,0);}
.m128_c00434{transform:matrix(0.200102,0.003002,-0.003750,0.249972,0,0);-ms-transform:matrix(0.200102,0.003002,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.200102,0.003002,-0.003750,0.249972,0,0);}
.m106_c00434{transform:matrix(0.200287,0.003004,-0.003750,0.249972,0,0);-ms-transform:matrix(0.200287,0.003004,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.200287,0.003004,-0.003750,0.249972,0,0);}
.m7d_c00434{transform:matrix(0.200469,0.001604,-0.002000,0.249992,0,0);-ms-transform:matrix(0.200469,0.001604,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.200469,0.001604,-0.002000,0.249992,0,0);}
.mf_c00434{transform:matrix(0.200915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200915,0.000000,0.000000,0.250000,0,0);}
.m68_c00434{transform:matrix(0.201239,0.001610,-0.002000,0.249992,0,0);-ms-transform:matrix(0.201239,0.001610,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.201239,0.001610,-0.002000,0.249992,0,0);}
.m135_c00434{transform:matrix(0.202052,0.003031,-0.003750,0.249972,0,0);-ms-transform:matrix(0.202052,0.003031,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.202052,0.003031,-0.003750,0.249972,0,0);}
.m132_c00434{transform:matrix(0.202192,0.003033,-0.003750,0.249972,0,0);-ms-transform:matrix(0.202192,0.003033,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.202192,0.003033,-0.003750,0.249972,0,0);}
.m16d_c00434{transform:matrix(0.202412,0.003036,-0.003750,0.249972,0,0);-ms-transform:matrix(0.202412,0.003036,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.202412,0.003036,-0.003750,0.249972,0,0);}
.m161_c00434{transform:matrix(0.202502,0.003038,-0.003750,0.249972,0,0);-ms-transform:matrix(0.202502,0.003038,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.202502,0.003038,-0.003750,0.249972,0,0);}
.m7f_c00434{transform:matrix(0.202554,0.001620,-0.002000,0.249992,0,0);-ms-transform:matrix(0.202554,0.001620,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.202554,0.001620,-0.002000,0.249992,0,0);}
.m176_c00434{transform:matrix(0.202742,0.003041,-0.003750,0.249972,0,0);-ms-transform:matrix(0.202742,0.003041,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.202742,0.003041,-0.003750,0.249972,0,0);}
.m165_c00434{transform:matrix(0.203517,0.003053,-0.003750,0.249972,0,0);-ms-transform:matrix(0.203517,0.003053,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.203517,0.003053,-0.003750,0.249972,0,0);}
.m17b_c00434{transform:matrix(0.203555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203555,0.000000,0.000000,0.250000,0,0);}
.m78_c00434{transform:matrix(0.203578,0.001629,-0.002000,0.249992,0,0);-ms-transform:matrix(0.203578,0.001629,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.203578,0.001629,-0.002000,0.249992,0,0);}
.m77_c00434{transform:matrix(0.203648,0.001629,-0.002000,0.249992,0,0);-ms-transform:matrix(0.203648,0.001629,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.203648,0.001629,-0.002000,0.249992,0,0);}
.m73_c00434{transform:matrix(0.203798,0.001630,-0.002000,0.249992,0,0);-ms-transform:matrix(0.203798,0.001630,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.203798,0.001630,-0.002000,0.249992,0,0);}
.mf8_c00434{transform:matrix(0.204167,0.003063,-0.003750,0.249972,0,0);-ms-transform:matrix(0.204167,0.003063,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.204167,0.003063,-0.003750,0.249972,0,0);}
.m81_c00434{transform:matrix(0.204190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204190,0.000000,0.000000,0.250000,0,0);}
.m138_c00434{transform:matrix(0.204307,0.003065,-0.003750,0.249972,0,0);-ms-transform:matrix(0.204307,0.003065,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.204307,0.003065,-0.003750,0.249972,0,0);}
.m123_c00434{transform:matrix(0.204332,0.003065,-0.003750,0.249972,0,0);-ms-transform:matrix(0.204332,0.003065,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.204332,0.003065,-0.003750,0.249972,0,0);}
.m16f_c00434{transform:matrix(0.204617,0.003069,-0.003750,0.249972,0,0);-ms-transform:matrix(0.204617,0.003069,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.204617,0.003069,-0.003750,0.249972,0,0);}
.mb4_c00434{transform:matrix(0.204795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204795,0.000000,0.000000,0.250000,0,0);}
.m76_c00434{transform:matrix(0.205303,0.001642,-0.002000,0.249992,0,0);-ms-transform:matrix(0.205303,0.001642,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.205303,0.001642,-0.002000,0.249992,0,0);}
.m7e_c00434{transform:matrix(0.206048,0.001648,-0.002000,0.249992,0,0);-ms-transform:matrix(0.206048,0.001648,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.206048,0.001648,-0.002000,0.249992,0,0);}
.mf0_c00434{transform:matrix(0.206092,0.003091,-0.003750,0.249972,0,0);-ms-transform:matrix(0.206092,0.003091,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.206092,0.003091,-0.003750,0.249972,0,0);}
.me0_c00434{transform:matrix(0.206237,0.003094,-0.003750,0.249972,0,0);-ms-transform:matrix(0.206237,0.003094,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.206237,0.003094,-0.003750,0.249972,0,0);}
.mb3_c00434{transform:matrix(0.206455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206455,0.000000,0.000000,0.250000,0,0);}
.md_c00434{transform:matrix(0.206745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206745,0.000000,0.000000,0.250000,0,0);}
.me2_c00434{transform:matrix(0.207847,0.003118,-0.003750,0.249972,0,0);-ms-transform:matrix(0.207847,0.003118,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.207847,0.003118,-0.003750,0.249972,0,0);}
.m10e_c00434{transform:matrix(0.207992,0.003120,-0.003750,0.249972,0,0);-ms-transform:matrix(0.207992,0.003120,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.207992,0.003120,-0.003750,0.249972,0,0);}
.maa_c00434{transform:matrix(0.208020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208020,0.000000,0.000000,0.250000,0,0);}
.m54_c00434{transform:matrix(0.208168,0.001665,-0.002000,0.249992,0,0);-ms-transform:matrix(0.208168,0.001665,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.208168,0.001665,-0.002000,0.249992,0,0);}
.md0_c00434{transform:matrix(0.208312,0.003125,-0.003750,0.249972,0,0);-ms-transform:matrix(0.208312,0.003125,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.208312,0.003125,-0.003750,0.249972,0,0);}
.mc9_c00434{transform:matrix(0.208562,0.003128,-0.003750,0.249972,0,0);-ms-transform:matrix(0.208562,0.003128,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.208562,0.003128,-0.003750,0.249972,0,0);}
.m5c_c00434{transform:matrix(0.208743,0.001670,-0.002000,0.249992,0,0);-ms-transform:matrix(0.208743,0.001670,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.208743,0.001670,-0.002000,0.249992,0,0);}
.m118_c00434{transform:matrix(0.208812,0.003132,-0.003750,0.249972,0,0);-ms-transform:matrix(0.208812,0.003132,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.208812,0.003132,-0.003750,0.249972,0,0);}
.m10_c00434{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.mfa_c00434{transform:matrix(0.209276,0.003139,-0.003750,0.249972,0,0);-ms-transform:matrix(0.209276,0.003139,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.209276,0.003139,-0.003750,0.249972,0,0);}
.me9_c00434{transform:matrix(0.209376,0.003141,-0.003750,0.249972,0,0);-ms-transform:matrix(0.209376,0.003141,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.209376,0.003141,-0.003750,0.249972,0,0);}
.me_c00434{transform:matrix(0.209715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209715,0.000000,0.000000,0.250000,0,0);}
.m67_c00434{transform:matrix(0.209883,0.001679,-0.002000,0.249992,0,0);-ms-transform:matrix(0.209883,0.001679,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.209883,0.001679,-0.002000,0.249992,0,0);}
.m133_c00434{transform:matrix(0.209896,0.003148,-0.003750,0.249972,0,0);-ms-transform:matrix(0.209896,0.003148,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.209896,0.003148,-0.003750,0.249972,0,0);}
.m17d_c00434{transform:matrix(0.210025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210025,0.000000,0.000000,0.250000,0,0);}
.m188_c00434{transform:matrix(0.210106,-0.001891,0.002250,0.249990,0,0);-ms-transform:matrix(0.210106,-0.001891,0.002250,0.249990,0,0);-webkit-transform:matrix(0.210106,-0.001891,0.002250,0.249990,0,0);}
.mb6_c00434{transform:matrix(0.210195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210195,0.000000,0.000000,0.250000,0,0);}
.m86_c00434{transform:matrix(0.210610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210610,0.000000,0.000000,0.250000,0,0);}
.mdf_c00434{transform:matrix(0.210806,0.003162,-0.003750,0.249972,0,0);-ms-transform:matrix(0.210806,0.003162,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.210806,0.003162,-0.003750,0.249972,0,0);}
.m8a_c00434{transform:matrix(0.211215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211215,0.000000,0.000000,0.250000,0,0);}
.me3_c00434{transform:matrix(0.211416,0.003171,-0.003750,0.249972,0,0);-ms-transform:matrix(0.211416,0.003171,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.211416,0.003171,-0.003750,0.249972,0,0);}
.mf4_c00434{transform:matrix(0.211421,0.003171,-0.003750,0.249972,0,0);-ms-transform:matrix(0.211421,0.003171,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.211421,0.003171,-0.003750,0.249972,0,0);}
.m64_c00434{transform:matrix(0.211963,0.001696,-0.002000,0.249992,0,0);-ms-transform:matrix(0.211963,0.001696,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.211963,0.001696,-0.002000,0.249992,0,0);}
.m6f_c00434{transform:matrix(0.212158,0.001697,-0.002000,0.249992,0,0);-ms-transform:matrix(0.212158,0.001697,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.212158,0.001697,-0.002000,0.249992,0,0);}
.m15f_c00434{transform:matrix(0.212566,0.003188,-0.003750,0.249972,0,0);-ms-transform:matrix(0.212566,0.003188,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.212566,0.003188,-0.003750,0.249972,0,0);}
.m17f_c00434{transform:matrix(0.212780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212780,0.000000,0.000000,0.250000,0,0);}
.me7_c00434{transform:matrix(0.212926,0.003194,-0.003750,0.249972,0,0);-ms-transform:matrix(0.212926,0.003194,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.212926,0.003194,-0.003750,0.249972,0,0);}
.m109_c00434{transform:matrix(0.213531,0.003203,-0.003750,0.249972,0,0);-ms-transform:matrix(0.213531,0.003203,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.213531,0.003203,-0.003750,0.249972,0,0);}
.m169_c00434{transform:matrix(0.213641,0.003205,-0.003750,0.249972,0,0);-ms-transform:matrix(0.213641,0.003205,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.213641,0.003205,-0.003750,0.249972,0,0);}
.m187_c00434{transform:matrix(0.214416,-0.001930,0.002250,0.249990,0,0);-ms-transform:matrix(0.214416,-0.001930,0.002250,0.249990,0,0);-webkit-transform:matrix(0.214416,-0.001930,0.002250,0.249990,0,0);}
.mb1_c00434{transform:matrix(0.214815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214815,0.000000,0.000000,0.250000,0,0);}
.m74_c00434{transform:matrix(0.214828,0.001719,-0.002000,0.249992,0,0);-ms-transform:matrix(0.214828,0.001719,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.214828,0.001719,-0.002000,0.249992,0,0);}
.m100_c00434{transform:matrix(0.215691,0.003235,-0.003750,0.249972,0,0);-ms-transform:matrix(0.215691,0.003235,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.215691,0.003235,-0.003750,0.249972,0,0);}
.m126_c00434{transform:matrix(0.215796,0.003237,-0.003750,0.249972,0,0);-ms-transform:matrix(0.215796,0.003237,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.215796,0.003237,-0.003750,0.249972,0,0);}
.m12a_c00434{transform:matrix(0.215911,0.003239,-0.003750,0.249972,0,0);-ms-transform:matrix(0.215911,0.003239,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.215911,0.003239,-0.003750,0.249972,0,0);}
.maf_c00434{transform:matrix(0.216160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216160,0.000000,0.000000,0.250000,0,0);}
.m10c_c00434{transform:matrix(0.216411,0.003246,-0.003750,0.249972,0,0);-ms-transform:matrix(0.216411,0.003246,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.216411,0.003246,-0.003750,0.249972,0,0);}
.md1_c00434{transform:matrix(0.216436,0.003247,-0.003750,0.249972,0,0);-ms-transform:matrix(0.216436,0.003247,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.216436,0.003247,-0.003750,0.249972,0,0);}
.m163_c00434{transform:matrix(0.216596,0.003249,-0.003750,0.249972,0,0);-ms-transform:matrix(0.216596,0.003249,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.216596,0.003249,-0.003750,0.249972,0,0);}
.m10b_c00434{transform:matrix(0.216641,0.003250,-0.003750,0.249972,0,0);-ms-transform:matrix(0.216641,0.003250,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.216641,0.003250,-0.003750,0.249972,0,0);}
.ma8_c00434{transform:matrix(0.216675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216675,0.000000,0.000000,0.250000,0,0);}
.m105_c00434{transform:matrix(0.217076,0.003256,-0.003750,0.249972,0,0);-ms-transform:matrix(0.217076,0.003256,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.217076,0.003256,-0.003750,0.249972,0,0);}
.m70_c00434{transform:matrix(0.217683,0.001741,-0.002000,0.249992,0,0);-ms-transform:matrix(0.217683,0.001741,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.217683,0.001741,-0.002000,0.249992,0,0);}
.m72_c00434{transform:matrix(0.217688,0.001742,-0.002000,0.249992,0,0);-ms-transform:matrix(0.217688,0.001742,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.217688,0.001742,-0.002000,0.249992,0,0);}
.m134_c00434{transform:matrix(0.218180,0.003273,-0.003750,0.249972,0,0);-ms-transform:matrix(0.218180,0.003273,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.218180,0.003273,-0.003750,0.249972,0,0);}
.m127_c00434{transform:matrix(0.218485,0.003277,-0.003750,0.249972,0,0);-ms-transform:matrix(0.218485,0.003277,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.218485,0.003277,-0.003750,0.249972,0,0);}
.m129_c00434{transform:matrix(0.218845,0.003283,-0.003750,0.249972,0,0);-ms-transform:matrix(0.218845,0.003283,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.218845,0.003283,-0.003750,0.249972,0,0);}
.m130_c00434{transform:matrix(0.218925,0.003284,-0.003750,0.249972,0,0);-ms-transform:matrix(0.218925,0.003284,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.218925,0.003284,-0.003750,0.249972,0,0);}
.m155_c00434{transform:matrix(0.219250,0.003289,-0.003750,0.249972,0,0);-ms-transform:matrix(0.219250,0.003289,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.219250,0.003289,-0.003750,0.249972,0,0);}
.m10d_c00434{transform:matrix(0.219455,0.003292,-0.003750,0.249972,0,0);-ms-transform:matrix(0.219455,0.003292,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.219455,0.003292,-0.003750,0.249972,0,0);}
.m12c_c00434{transform:matrix(0.219505,0.003293,-0.003750,0.249972,0,0);-ms-transform:matrix(0.219505,0.003293,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.219505,0.003293,-0.003750,0.249972,0,0);}
.m75_c00434{transform:matrix(0.219738,0.001758,-0.002000,0.249992,0,0);-ms-transform:matrix(0.219738,0.001758,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.219738,0.001758,-0.002000,0.249992,0,0);}
.m114_c00434{transform:matrix(0.219800,0.003297,-0.003750,0.249972,0,0);-ms-transform:matrix(0.219800,0.003297,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.219800,0.003297,-0.003750,0.249972,0,0);}
.m5d_c00434{transform:matrix(0.219883,0.001759,-0.002000,0.249992,0,0);-ms-transform:matrix(0.219883,0.001759,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.219883,0.001759,-0.002000,0.249992,0,0);}
.mcb_c00434{transform:matrix(0.219895,0.003298,-0.003750,0.249972,0,0);-ms-transform:matrix(0.219895,0.003298,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.219895,0.003298,-0.003750,0.249972,0,0);}
.m62_c00434{transform:matrix(0.220623,0.001765,-0.002000,0.249992,0,0);-ms-transform:matrix(0.220623,0.001765,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.220623,0.001765,-0.002000,0.249992,0,0);}
.m45_c00434{transform:matrix(0.220638,0.001765,-0.002000,0.249992,0,0);-ms-transform:matrix(0.220638,0.001765,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.220638,0.001765,-0.002000,0.249992,0,0);}
.mce_c00434{transform:matrix(0.221165,0.003317,-0.003750,0.249972,0,0);-ms-transform:matrix(0.221165,0.003317,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.221165,0.003317,-0.003750,0.249972,0,0);}
.md2_c00434{transform:matrix(0.221425,0.003321,-0.003750,0.249972,0,0);-ms-transform:matrix(0.221425,0.003321,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.221425,0.003321,-0.003750,0.249972,0,0);}
.m9c_c00434{transform:matrix(0.222035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222035,0.000000,0.000000,0.250000,0,0);}
.m6b_c00434{transform:matrix(0.222803,0.001782,-0.002000,0.249992,0,0);-ms-transform:matrix(0.222803,0.001782,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.222803,0.001782,-0.002000,0.249992,0,0);}
.m139_c00434{transform:matrix(0.223005,0.003345,-0.003750,0.249972,0,0);-ms-transform:matrix(0.223005,0.003345,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.223005,0.003345,-0.003750,0.249972,0,0);}
.mc6_c00434{transform:matrix(0.223270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223270,0.000000,0.000000,0.250000,0,0);}
.m46_c00434{transform:matrix(0.223458,0.001788,-0.002000,0.249992,0,0);-ms-transform:matrix(0.223458,0.001788,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.223458,0.001788,-0.002000,0.249992,0,0);}
.m10a_c00434{transform:matrix(0.223670,0.003355,-0.003750,0.249972,0,0);-ms-transform:matrix(0.223670,0.003355,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.223670,0.003355,-0.003750,0.249972,0,0);}
.m61_c00434{transform:matrix(0.223993,0.001792,-0.002000,0.249992,0,0);-ms-transform:matrix(0.223993,0.001792,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.223993,0.001792,-0.002000,0.249992,0,0);}
.m9a_c00434{transform:matrix(0.224070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224070,0.000000,0.000000,0.250000,0,0);}
.mad_c00434{transform:matrix(0.224310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224310,0.000000,0.000000,0.250000,0,0);}
.m13d_c00434{transform:matrix(0.224655,0.003370,-0.003750,0.249972,0,0);-ms-transform:matrix(0.224655,0.003370,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.224655,0.003370,-0.003750,0.249972,0,0);}
.ma0_c00434{transform:matrix(0.224680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224680,0.000000,0.000000,0.250000,0,0);}
.mfd_c00434{transform:matrix(0.225290,0.003379,-0.003750,0.249972,0,0);-ms-transform:matrix(0.225290,0.003379,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.225290,0.003379,-0.003750,0.249972,0,0);}
.m3e_c00434{transform:matrix(0.226223,0.001810,-0.002000,0.249992,0,0);-ms-transform:matrix(0.226223,0.001810,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.226223,0.001810,-0.002000,0.249992,0,0);}
.m28_c00434{transform:matrix(0.226381,0.002943,-0.003250,0.249979,0,0);-ms-transform:matrix(0.226381,0.002943,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.226381,0.002943,-0.003250,0.249979,0,0);}
.m94_c00434{transform:matrix(0.226745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226745,0.000000,0.000000,0.250000,0,0);}
.m59_c00434{transform:matrix(0.226968,0.001816,-0.002000,0.249992,0,0);-ms-transform:matrix(0.226968,0.001816,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.226968,0.001816,-0.002000,0.249992,0,0);}
.m166_c00434{transform:matrix(0.227329,0.003410,-0.003750,0.249972,0,0);-ms-transform:matrix(0.227329,0.003410,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.227329,0.003410,-0.003750,0.249972,0,0);}
.m5b_c00434{transform:matrix(0.227483,0.001820,-0.002000,0.249992,0,0);-ms-transform:matrix(0.227483,0.001820,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.227483,0.001820,-0.002000,0.249992,0,0);}
.m8b_c00434{transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);}
.m48_c00434{transform:matrix(0.228083,0.001825,-0.002000,0.249992,0,0);-ms-transform:matrix(0.228083,0.001825,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.228083,0.001825,-0.002000,0.249992,0,0);}
.m136_c00434{transform:matrix(0.228419,0.003426,-0.003750,0.249972,0,0);-ms-transform:matrix(0.228419,0.003426,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.228419,0.003426,-0.003750,0.249972,0,0);}
.ma2_c00434{transform:matrix(0.228815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228815,0.000000,0.000000,0.250000,0,0);}
.m107_c00434{transform:matrix(0.229094,0.003436,-0.003750,0.249972,0,0);-ms-transform:matrix(0.229094,0.003436,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.229094,0.003436,-0.003750,0.249972,0,0);}
.m43_c00434{transform:matrix(0.229108,0.001833,-0.002000,0.249992,0,0);-ms-transform:matrix(0.229108,0.001833,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.229108,0.001833,-0.002000,0.249992,0,0);}
.m154_c00434{transform:matrix(0.229239,0.003439,-0.003750,0.249972,0,0);-ms-transform:matrix(0.229239,0.003439,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.229239,0.003439,-0.003750,0.249972,0,0);}
.mfc_c00434{transform:matrix(0.229434,0.003442,-0.003750,0.249972,0,0);-ms-transform:matrix(0.229434,0.003442,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.229434,0.003442,-0.003750,0.249972,0,0);}
.m5_c00434{transform:matrix(0.229455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229455,0.000000,0.000000,0.250000,0,0);}
.m160_c00434{transform:matrix(0.229589,0.003444,-0.003750,0.249972,0,0);-ms-transform:matrix(0.229589,0.003444,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.229589,0.003444,-0.003750,0.249972,0,0);}
.m12f_c00434{transform:matrix(0.229679,0.003445,-0.003750,0.249972,0,0);-ms-transform:matrix(0.229679,0.003445,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.229679,0.003445,-0.003750,0.249972,0,0);}
.m13b_c00434{transform:matrix(0.229884,0.003448,-0.003750,0.249972,0,0);-ms-transform:matrix(0.229884,0.003448,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.229884,0.003448,-0.003750,0.249972,0,0);}
.m184_c00434{transform:matrix(0.229905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229905,0.000000,0.000000,0.250000,0,0);}
.m15a_c00434{transform:matrix(0.231019,0.003465,-0.003750,0.249972,0,0);-ms-transform:matrix(0.231019,0.003465,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.231019,0.003465,-0.003750,0.249972,0,0);}
.m41_c00434{transform:matrix(0.231068,0.001849,-0.002000,0.249992,0,0);-ms-transform:matrix(0.231068,0.001849,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.231068,0.001849,-0.002000,0.249992,0,0);}
.m87_c00434{transform:matrix(0.231125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231125,0.000000,0.000000,0.250000,0,0);}
.me4_c00434{transform:matrix(0.231214,0.003468,-0.003750,0.249972,0,0);-ms-transform:matrix(0.231214,0.003468,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.231214,0.003468,-0.003750,0.249972,0,0);}
.m2b_c00434{transform:matrix(0.231630,0.003011,-0.003250,0.249979,0,0);-ms-transform:matrix(0.231630,0.003011,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.231630,0.003011,-0.003250,0.249979,0,0);}
.m57_c00434{transform:matrix(0.232298,0.001858,-0.002000,0.249992,0,0);-ms-transform:matrix(0.232298,0.001858,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.232298,0.001858,-0.002000,0.249992,0,0);}
.m189_c00434{transform:matrix(0.232486,-0.002092,0.002250,0.249990,0,0);-ms-transform:matrix(0.232486,-0.002092,0.002250,0.249990,0,0);-webkit-transform:matrix(0.232486,-0.002092,0.002250,0.249990,0,0);}
.m9e_c00434{transform:matrix(0.232555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232555,0.000000,0.000000,0.250000,0,0);}
.m3d_c00434{transform:matrix(0.232860,0.003027,-0.003250,0.249979,0,0);-ms-transform:matrix(0.232860,0.003027,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.232860,0.003027,-0.003250,0.249979,0,0);}
.m85_c00434{transform:matrix(0.233160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233160,0.000000,0.000000,0.250000,0,0);}
.mfb_c00434{transform:matrix(0.233339,0.003500,-0.003750,0.249972,0,0);-ms-transform:matrix(0.233339,0.003500,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.233339,0.003500,-0.003750,0.249972,0,0);}
.m63_c00434{transform:matrix(0.233498,0.001868,-0.002000,0.249992,0,0);-ms-transform:matrix(0.233498,0.001868,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.233498,0.001868,-0.002000,0.249992,0,0);}
.mde_c00434{transform:matrix(0.234334,0.003515,-0.003750,0.249972,0,0);-ms-transform:matrix(0.234334,0.003515,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.234334,0.003515,-0.003750,0.249972,0,0);}
.m5a_c00434{transform:matrix(0.234373,0.001875,-0.002000,0.249992,0,0);-ms-transform:matrix(0.234373,0.001875,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.234373,0.001875,-0.002000,0.249992,0,0);}
.m3f_c00434{transform:matrix(0.234787,0.001878,-0.002000,0.249992,0,0);-ms-transform:matrix(0.234787,0.001878,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.234787,0.001878,-0.002000,0.249992,0,0);}
.m50_c00434{transform:matrix(0.234847,0.001879,-0.002000,0.249992,0,0);-ms-transform:matrix(0.234847,0.001879,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.234847,0.001879,-0.002000,0.249992,0,0);}
.me1_c00434{transform:matrix(0.235454,0.003532,-0.003750,0.249972,0,0);-ms-transform:matrix(0.235454,0.003532,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.235454,0.003532,-0.003750,0.249972,0,0);}
.ma5_c00434{transform:matrix(0.235755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235755,0.000000,0.000000,0.250000,0,0);}
.me6_c00434{transform:matrix(0.236183,0.003543,-0.003750,0.249972,0,0);-ms-transform:matrix(0.236183,0.003543,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.236183,0.003543,-0.003750,0.249972,0,0);}
.mda_c00434{transform:matrix(0.236418,0.003546,-0.003750,0.249972,0,0);-ms-transform:matrix(0.236418,0.003546,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.236418,0.003546,-0.003750,0.249972,0,0);}
.m65_c00434{transform:matrix(0.237677,0.001901,-0.002000,0.249992,0,0);-ms-transform:matrix(0.237677,0.001901,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.237677,0.001901,-0.002000,0.249992,0,0);}
.me8_c00434{transform:matrix(0.237868,0.003568,-0.003750,0.249972,0,0);-ms-transform:matrix(0.237868,0.003568,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.237868,0.003568,-0.003750,0.249972,0,0);}
.m10f_c00434{transform:matrix(0.238023,0.003570,-0.003750,0.249972,0,0);-ms-transform:matrix(0.238023,0.003570,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.238023,0.003570,-0.003750,0.249972,0,0);}
.m44_c00434{transform:matrix(0.238507,0.001908,-0.002000,0.249992,0,0);-ms-transform:matrix(0.238507,0.001908,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.238507,0.001908,-0.002000,0.249992,0,0);}
.m66_c00434{transform:matrix(0.238677,0.001909,-0.002000,0.249992,0,0);-ms-transform:matrix(0.238677,0.001909,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.238677,0.001909,-0.002000,0.249992,0,0);}
.m12e_c00434{transform:matrix(0.239538,0.003593,-0.003750,0.249972,0,0);-ms-transform:matrix(0.239538,0.003593,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.239538,0.003593,-0.003750,0.249972,0,0);}
.m90_c00434{transform:matrix(0.239545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239545,0.000000,0.000000,0.250000,0,0);}
.m147_c00434{transform:matrix(0.239883,0.003598,-0.003750,0.249972,0,0);-ms-transform:matrix(0.239883,0.003598,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.239883,0.003598,-0.003750,0.249972,0,0);}
.m49_c00434{transform:matrix(0.240057,0.001920,-0.002000,0.249992,0,0);-ms-transform:matrix(0.240057,0.001920,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.240057,0.001920,-0.002000,0.249992,0,0);}
.mc2_c00434{transform:matrix(0.240065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240065,0.000000,0.000000,0.250000,0,0);}
.mbb_c00434{transform:matrix(0.240155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240155,0.000000,0.000000,0.250000,0,0);}
.mb7_c00434{transform:matrix(0.240295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240295,0.000000,0.000000,0.250000,0,0);}
.m98_c00434{transform:matrix(0.240650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240650,0.000000,0.000000,0.250000,0,0);}
.m5e_c00434{transform:matrix(0.240747,0.001926,-0.002000,0.249992,0,0);-ms-transform:matrix(0.240747,0.001926,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.240747,0.001926,-0.002000,0.249992,0,0);}
.md4_c00434{transform:matrix(0.241003,0.003615,-0.003750,0.249972,0,0);-ms-transform:matrix(0.241003,0.003615,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.241003,0.003615,-0.003750,0.249972,0,0);}
.m1c_c00434{transform:matrix(0.241530,0.003140,-0.003250,0.249979,0,0);-ms-transform:matrix(0.241530,0.003140,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.241530,0.003140,-0.003250,0.249979,0,0);}
.m111_c00434{transform:matrix(0.242843,0.003643,-0.003750,0.249972,0,0);-ms-transform:matrix(0.242843,0.003643,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.242843,0.003643,-0.003750,0.249972,0,0);}
.m51_c00434{transform:matrix(0.243027,0.001944,-0.002000,0.249992,0,0);-ms-transform:matrix(0.243027,0.001944,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.243027,0.001944,-0.002000,0.249992,0,0);}
.m29_c00434{transform:matrix(0.243354,0.003164,-0.003250,0.249979,0,0);-ms-transform:matrix(0.243354,0.003164,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.243354,0.003164,-0.003250,0.249979,0,0);}
.m32_c00434{transform:matrix(0.243419,0.003164,-0.003250,0.249979,0,0);-ms-transform:matrix(0.243419,0.003164,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.243419,0.003164,-0.003250,0.249979,0,0);}
.m141_c00434{transform:matrix(0.243468,0.003652,-0.003750,0.249972,0,0);-ms-transform:matrix(0.243468,0.003652,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.243468,0.003652,-0.003750,0.249972,0,0);}
.m9f_c00434{transform:matrix(0.243630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243630,0.000000,0.000000,0.250000,0,0);}
.m4c_c00434{transform:matrix(0.244087,0.001953,-0.002000,0.249992,0,0);-ms-transform:matrix(0.244087,0.001953,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.244087,0.001953,-0.002000,0.249992,0,0);}
.m102_c00434{transform:matrix(0.244308,0.003665,-0.003750,0.249972,0,0);-ms-transform:matrix(0.244308,0.003665,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.244308,0.003665,-0.003750,0.249972,0,0);}
.mb9_c00434{transform:matrix(0.244910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244910,0.000000,0.000000,0.250000,0,0);}
.m8f_c00434{transform:matrix(0.244985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244985,0.000000,0.000000,0.250000,0,0);}
.m157_c00434{transform:matrix(0.245432,0.003681,-0.003750,0.249972,0,0);-ms-transform:matrix(0.245432,0.003681,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.245432,0.003681,-0.003750,0.249972,0,0);}
.md3_c00434{transform:matrix(0.246177,0.003693,-0.003750,0.249972,0,0);-ms-transform:matrix(0.246177,0.003693,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.246177,0.003693,-0.003750,0.249972,0,0);}
.m15_c00434{transform:matrix(0.246709,0.003207,-0.003250,0.249979,0,0);-ms-transform:matrix(0.246709,0.003207,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.246709,0.003207,-0.003250,0.249979,0,0);}
.m25_c00434{transform:matrix(0.246969,0.003211,-0.003250,0.249979,0,0);-ms-transform:matrix(0.246969,0.003211,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.246969,0.003211,-0.003250,0.249979,0,0);}
.m110_c00434{transform:matrix(0.247272,0.003709,-0.003750,0.249972,0,0);-ms-transform:matrix(0.247272,0.003709,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.247272,0.003709,-0.003750,0.249972,0,0);}
.m115_c00434{transform:matrix(0.248527,0.003728,-0.003750,0.249972,0,0);-ms-transform:matrix(0.248527,0.003728,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.248527,0.003728,-0.003750,0.249972,0,0);}
.md7_c00434{transform:matrix(0.248632,0.003729,-0.003750,0.249972,0,0);-ms-transform:matrix(0.248632,0.003729,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.248632,0.003729,-0.003750,0.249972,0,0);}
.m18a_c00434{transform:matrix(0.248940,-0.002240,0.002250,0.249990,0,0);-ms-transform:matrix(0.248940,-0.002240,0.002250,0.249990,0,0);-webkit-transform:matrix(0.248940,-0.002240,0.002250,0.249990,0,0);}
.mba_c00434{transform:matrix(0.249040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249040,0.000000,0.000000,0.250000,0,0);}
.m84_c00434{transform:matrix(0.249320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249320,0.000000,0.000000,0.250000,0,0);}
.m9d_c00434{transform:matrix(0.249505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249505,0.000000,0.000000,0.250000,0,0);}
.m113_c00434{transform:matrix(0.250307,0.003755,-0.003750,0.249972,0,0);-ms-transform:matrix(0.250307,0.003755,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.250307,0.003755,-0.003750,0.249972,0,0);}
.m99_c00434{transform:matrix(0.250660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250660,0.000000,0.000000,0.250000,0,0);}
.m186_c00434{transform:matrix(0.251285,-0.002262,0.002250,0.249990,0,0);-ms-transform:matrix(0.251285,-0.002262,0.002250,0.249990,0,0);-webkit-transform:matrix(0.251285,-0.002262,0.002250,0.249990,0,0);}
.m83_c00434{transform:matrix(0.251325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251325,0.000000,0.000000,0.250000,0,0);}
.m15c_c00434{transform:matrix(0.251512,0.003773,-0.003750,0.249972,0,0);-ms-transform:matrix(0.251512,0.003773,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.251512,0.003773,-0.003750,0.249972,0,0);}
.m30_c00434{transform:matrix(0.251539,0.003270,-0.003250,0.249979,0,0);-ms-transform:matrix(0.251539,0.003270,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.251539,0.003270,-0.003250,0.249979,0,0);}
.m9_c00434{transform:matrix(0.251560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251560,0.000000,0.000000,0.250000,0,0);}
.m14e_c00434{transform:matrix(0.251667,0.003775,-0.003750,0.249972,0,0);-ms-transform:matrix(0.251667,0.003775,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.251667,0.003775,-0.003750,0.249972,0,0);}
.m89_c00434{transform:matrix(0.252105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252105,0.000000,0.000000,0.250000,0,0);}
.m101_c00434{transform:matrix(0.252562,0.003788,-0.003750,0.249972,0,0);-ms-transform:matrix(0.252562,0.003788,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.252562,0.003788,-0.003750,0.249972,0,0);}
.mf9_c00434{transform:matrix(0.253067,0.003796,-0.003750,0.249972,0,0);-ms-transform:matrix(0.253067,0.003796,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.253067,0.003796,-0.003750,0.249972,0,0);}
.m82_c00434{transform:matrix(0.253195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253195,0.000000,0.000000,0.250000,0,0);}
.mbf_c00434{transform:matrix(0.253285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253285,0.000000,0.000000,0.250000,0,0);}
.m4f_c00434{transform:matrix(0.253292,0.002026,-0.002000,0.249992,0,0);-ms-transform:matrix(0.253292,0.002026,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.253292,0.002026,-0.002000,0.249992,0,0);}
.m152_c00434{transform:matrix(0.253561,0.003803,-0.003750,0.249972,0,0);-ms-transform:matrix(0.253561,0.003803,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.253561,0.003803,-0.003750,0.249972,0,0);}
.mff_c00434{transform:matrix(0.254251,0.003814,-0.003750,0.249972,0,0);-ms-transform:matrix(0.254251,0.003814,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.254251,0.003814,-0.003750,0.249972,0,0);}
.m14d_c00434{transform:matrix(0.254541,0.003818,-0.003750,0.249972,0,0);-ms-transform:matrix(0.254541,0.003818,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.254541,0.003818,-0.003750,0.249972,0,0);}
.m35_c00434{transform:matrix(0.254663,0.003311,-0.003250,0.249979,0,0);-ms-transform:matrix(0.254663,0.003311,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.254663,0.003311,-0.003250,0.249979,0,0);}
.m13e_c00434{transform:matrix(0.254976,0.003825,-0.003750,0.249972,0,0);-ms-transform:matrix(0.254976,0.003825,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.254976,0.003825,-0.003750,0.249972,0,0);}
.m112_c00434{transform:matrix(0.254986,0.003825,-0.003750,0.249972,0,0);-ms-transform:matrix(0.254986,0.003825,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.254986,0.003825,-0.003750,0.249972,0,0);}
.m14b_c00434{transform:matrix(0.255411,0.003831,-0.003750,0.249972,0,0);-ms-transform:matrix(0.255411,0.003831,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.255411,0.003831,-0.003750,0.249972,0,0);}
.ma3_c00434{transform:matrix(0.255455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255455,0.000000,0.000000,0.250000,0,0);}
.m13f_c00434{transform:matrix(0.255551,0.003833,-0.003750,0.249972,0,0);-ms-transform:matrix(0.255551,0.003833,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.255551,0.003833,-0.003750,0.249972,0,0);}
.m88_c00434{transform:matrix(0.255575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255575,0.000000,0.000000,0.250000,0,0);}
.mfe_c00434{transform:matrix(0.255806,0.003837,-0.003750,0.249972,0,0);-ms-transform:matrix(0.255806,0.003837,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.255806,0.003837,-0.003750,0.249972,0,0);}
.m17_c00434{transform:matrix(0.256763,0.003338,-0.003250,0.249979,0,0);-ms-transform:matrix(0.256763,0.003338,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.256763,0.003338,-0.003250,0.249979,0,0);}
.m4b_c00434{transform:matrix(0.257092,0.002057,-0.002000,0.249992,0,0);-ms-transform:matrix(0.257092,0.002057,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.257092,0.002057,-0.002000,0.249992,0,0);}
.mc4_c00434{transform:matrix(0.257420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257420,0.000000,0.000000,0.250000,0,0);}
.mb5_c00434{transform:matrix(0.257745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257745,0.000000,0.000000,0.250000,0,0);}
.m159_c00434{transform:matrix(0.257846,0.003868,-0.003750,0.249972,0,0);-ms-transform:matrix(0.257846,0.003868,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.257846,0.003868,-0.003750,0.249972,0,0);}
.mdd_c00434{transform:matrix(0.258041,0.003871,-0.003750,0.249972,0,0);-ms-transform:matrix(0.258041,0.003871,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.258041,0.003871,-0.003750,0.249972,0,0);}
.m142_c00434{transform:matrix(0.258271,0.003874,-0.003750,0.249972,0,0);-ms-transform:matrix(0.258271,0.003874,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.258271,0.003874,-0.003750,0.249972,0,0);}
.m145_c00434{transform:matrix(0.258286,0.003874,-0.003750,0.249972,0,0);-ms-transform:matrix(0.258286,0.003874,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.258286,0.003874,-0.003750,0.249972,0,0);}
.mb8_c00434{transform:matrix(0.259970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259970,0.000000,0.000000,0.250000,0,0);}
.m151_c00434{transform:matrix(0.260111,0.003902,-0.003750,0.249972,0,0);-ms-transform:matrix(0.260111,0.003902,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.260111,0.003902,-0.003750,0.249972,0,0);}
.mdb_c00434{transform:matrix(0.260131,0.003902,-0.003750,0.249972,0,0);-ms-transform:matrix(0.260131,0.003902,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.260131,0.003902,-0.003750,0.249972,0,0);}
.m52_c00434{transform:matrix(0.260152,0.002081,-0.002000,0.249992,0,0);-ms-transform:matrix(0.260152,0.002081,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.260152,0.002081,-0.002000,0.249992,0,0);}
.m15d_c00434{transform:matrix(0.260456,0.003907,-0.003750,0.249972,0,0);-ms-transform:matrix(0.260456,0.003907,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.260456,0.003907,-0.003750,0.249972,0,0);}
.m9b_c00434{transform:matrix(0.260640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260640,0.000000,0.000000,0.250000,0,0);}
.m8d_c00434{transform:matrix(0.261845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261845,0.000000,0.000000,0.250000,0,0);}
.md9_c00434{transform:matrix(0.261911,0.003929,-0.003750,0.249972,0,0);-ms-transform:matrix(0.261911,0.003929,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.261911,0.003929,-0.003750,0.249972,0,0);}
.m12_c00434{transform:matrix(0.262373,0.003411,-0.003250,0.249979,0,0);-ms-transform:matrix(0.262373,0.003411,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.262373,0.003411,-0.003250,0.249979,0,0);}
.m47_c00434{transform:matrix(0.262692,0.002102,-0.002000,0.249992,0,0);-ms-transform:matrix(0.262692,0.002102,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.262692,0.002102,-0.002000,0.249992,0,0);}
.m6a_c00434{transform:matrix(0.263137,0.002105,-0.002000,0.249992,0,0);-ms-transform:matrix(0.263137,0.002105,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.263137,0.002105,-0.002000,0.249992,0,0);}
.mbd_c00434{transform:matrix(0.263405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263405,0.000000,0.000000,0.250000,0,0);}
.m143_c00434{transform:matrix(0.263540,0.003953,-0.003750,0.249972,0,0);-ms-transform:matrix(0.263540,0.003953,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.263540,0.003953,-0.003750,0.249972,0,0);}
.mdc_c00434{transform:matrix(0.263955,0.003959,-0.003750,0.249972,0,0);-ms-transform:matrix(0.263955,0.003959,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.263955,0.003959,-0.003750,0.249972,0,0);}
.m158_c00434{transform:matrix(0.264075,0.003961,-0.003750,0.249972,0,0);-ms-transform:matrix(0.264075,0.003961,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.264075,0.003961,-0.003750,0.249972,0,0);}
.m4e_c00434{transform:matrix(0.264357,0.002115,-0.002000,0.249992,0,0);-ms-transform:matrix(0.264357,0.002115,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.264357,0.002115,-0.002000,0.249992,0,0);}
.m14c_c00434{transform:matrix(0.265555,0.003983,-0.003750,0.249972,0,0);-ms-transform:matrix(0.265555,0.003983,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.265555,0.003983,-0.003750,0.249972,0,0);}
.m92_c00434{transform:matrix(0.265835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265835,0.000000,0.000000,0.250000,0,0);}
.md8_c00434{transform:matrix(0.265915,0.003989,-0.003750,0.249972,0,0);-ms-transform:matrix(0.265915,0.003989,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.265915,0.003989,-0.003750,0.249972,0,0);}
.md5_c00434{transform:matrix(0.266410,0.003996,-0.003750,0.249972,0,0);-ms-transform:matrix(0.266410,0.003996,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.266410,0.003996,-0.003750,0.249972,0,0);}
.m146_c00434{transform:matrix(0.267075,0.004006,-0.003750,0.249972,0,0);-ms-transform:matrix(0.267075,0.004006,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.267075,0.004006,-0.003750,0.249972,0,0);}
.m1e_c00434{transform:matrix(0.267387,0.003476,-0.003250,0.249979,0,0);-ms-transform:matrix(0.267387,0.003476,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.267387,0.003476,-0.003250,0.249979,0,0);}
.m93_c00434{transform:matrix(0.267730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267730,0.000000,0.000000,0.250000,0,0);}
.m13c_c00434{transform:matrix(0.268235,0.004024,-0.003750,0.249972,0,0);-ms-transform:matrix(0.268235,0.004024,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.268235,0.004024,-0.003750,0.249972,0,0);}
.m148_c00434{transform:matrix(0.268285,0.004024,-0.003750,0.249972,0,0);-ms-transform:matrix(0.268285,0.004024,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.268285,0.004024,-0.003750,0.249972,0,0);}
.m8e_c00434{transform:matrix(0.268685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268685,0.000000,0.000000,0.250000,0,0);}
.m4d_c00434{transform:matrix(0.268721,0.002150,-0.002000,0.249992,0,0);-ms-transform:matrix(0.268721,0.002150,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.268721,0.002150,-0.002000,0.249992,0,0);}
.m96_c00434{transform:matrix(0.268800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268800,0.000000,0.000000,0.250000,0,0);}
.mc0_c00434{transform:matrix(0.268990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268990,0.000000,0.000000,0.250000,0,0);}
.m14a_c00434{transform:matrix(0.269145,0.004037,-0.003750,0.249972,0,0);-ms-transform:matrix(0.269145,0.004037,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.269145,0.004037,-0.003750,0.249972,0,0);}
.m104_c00434{transform:matrix(0.269555,0.004043,-0.003750,0.249972,0,0);-ms-transform:matrix(0.269555,0.004043,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.269555,0.004043,-0.003750,0.249972,0,0);}
.mf6_c00434{transform:matrix(0.269880,0.004048,-0.003750,0.249972,0,0);-ms-transform:matrix(0.269880,0.004048,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.269880,0.004048,-0.003750,0.249972,0,0);}
.m14f_c00434{transform:matrix(0.269975,0.004050,-0.003750,0.249972,0,0);-ms-transform:matrix(0.269975,0.004050,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.269975,0.004050,-0.003750,0.249972,0,0);}
.mea_c00434{transform:matrix(0.270350,0.004055,-0.003750,0.249972,0,0);-ms-transform:matrix(0.270350,0.004055,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.270350,0.004055,-0.003750,0.249972,0,0);}
.m15b_c00434{transform:matrix(0.271015,0.004065,-0.003750,0.249972,0,0);-ms-transform:matrix(0.271015,0.004065,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.271015,0.004065,-0.003750,0.249972,0,0);}
.mc7_c00434{transform:matrix(0.271270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271270,0.000000,0.000000,0.250000,0,0);}
.m91_c00434{transform:matrix(0.271400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271400,0.000000,0.000000,0.250000,0,0);}
.m6_c00434{transform:matrix(0.272100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272100,0.000000,0.000000,0.250000,0,0);}
.m153_c00434{transform:matrix(0.272449,0.004087,-0.003750,0.249972,0,0);-ms-transform:matrix(0.272449,0.004087,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.272449,0.004087,-0.003750,0.249972,0,0);}
.m144_c00434{transform:matrix(0.272634,0.004090,-0.003750,0.249972,0,0);-ms-transform:matrix(0.272634,0.004090,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.272634,0.004090,-0.003750,0.249972,0,0);}
.m4a_c00434{transform:matrix(0.273251,0.002186,-0.002000,0.249992,0,0);-ms-transform:matrix(0.273251,0.002186,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.273251,0.002186,-0.002000,0.249992,0,0);}
.mbc_c00434{transform:matrix(0.273280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273280,0.000000,0.000000,0.250000,0,0);}
.ma1_c00434{transform:matrix(0.273785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273785,0.000000,0.000000,0.250000,0,0);}
.m3c_c00434{transform:matrix(0.273932,0.003561,-0.003250,0.249979,0,0);-ms-transform:matrix(0.273932,0.003561,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.273932,0.003561,-0.003250,0.249979,0,0);}
.mc5_c00434{transform:matrix(0.275410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275410,0.000000,0.000000,0.250000,0,0);}
.mc8_c00434{transform:matrix(0.275855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275855,0.000000,0.000000,0.250000,0,0);}
.mc3_c00434{transform:matrix(0.276410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276410,0.000000,0.000000,0.250000,0,0);}
.m95_c00434{transform:matrix(0.276755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276755,0.000000,0.000000,0.250000,0,0);}
.md6_c00434{transform:matrix(0.277479,0.004162,-0.003750,0.249972,0,0);-ms-transform:matrix(0.277479,0.004162,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.277479,0.004162,-0.003750,0.249972,0,0);}
.m140_c00434{transform:matrix(0.278709,0.004181,-0.003750,0.249972,0,0);-ms-transform:matrix(0.278709,0.004181,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.278709,0.004181,-0.003750,0.249972,0,0);}
.m37_c00434{transform:matrix(0.278851,0.003625,-0.003250,0.249979,0,0);-ms-transform:matrix(0.278851,0.003625,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.278851,0.003625,-0.003250,0.249979,0,0);}
.ma4_c00434{transform:matrix(0.280265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280265,0.000000,0.000000,0.250000,0,0);}
.m149_c00434{transform:matrix(0.280978,0.004215,-0.003750,0.249972,0,0);-ms-transform:matrix(0.280978,0.004215,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.280978,0.004215,-0.003750,0.249972,0,0);}
.m150_c00434{transform:matrix(0.283368,0.004251,-0.003750,0.249972,0,0);-ms-transform:matrix(0.283368,0.004251,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.283368,0.004251,-0.003750,0.249972,0,0);}
.m14_c00434{transform:matrix(0.286796,0.003728,-0.003250,0.249979,0,0);-ms-transform:matrix(0.286796,0.003728,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.286796,0.003728,-0.003250,0.249979,0,0);}
.mf5_c00434{transform:matrix(0.286858,0.004303,-0.003750,0.249972,0,0);-ms-transform:matrix(0.286858,0.004303,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.286858,0.004303,-0.003750,0.249972,0,0);}
.mbe_c00434{transform:matrix(0.286950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286950,0.000000,0.000000,0.250000,0,0);}
.m69_c00434{transform:matrix(0.289581,0.002317,-0.002000,0.249992,0,0);-ms-transform:matrix(0.289581,0.002317,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.289581,0.002317,-0.002000,0.249992,0,0);}
.m2f_c00434{transform:matrix(0.292475,0.003802,-0.003250,0.249979,0,0);-ms-transform:matrix(0.292475,0.003802,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.292475,0.003802,-0.003250,0.249979,0,0);}
.m103_c00434{transform:matrix(0.298271,0.004474,-0.003750,0.249972,0,0);-ms-transform:matrix(0.298271,0.004474,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.298271,0.004474,-0.003750,0.249972,0,0);}
.m1a_c00434{transform:matrix(0.302309,0.003930,-0.003250,0.249979,0,0);-ms-transform:matrix(0.302309,0.003930,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.302309,0.003930,-0.003250,0.249979,0,0);}
.m1f_c00434{transform:matrix(0.304534,0.003959,-0.003250,0.249979,0,0);-ms-transform:matrix(0.304534,0.003959,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.304534,0.003959,-0.003250,0.249979,0,0);}
.m3a_c00434{transform:matrix(0.310479,0.004036,-0.003250,0.249979,0,0);-ms-transform:matrix(0.310479,0.004036,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.310479,0.004036,-0.003250,0.249979,0,0);}
.m2a_c00434{transform:matrix(0.312554,0.004063,-0.003250,0.249979,0,0);-ms-transform:matrix(0.312554,0.004063,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.312554,0.004063,-0.003250,0.249979,0,0);}
.m156_c00434{transform:matrix(0.313140,0.004697,-0.003750,0.249972,0,0);-ms-transform:matrix(0.313140,0.004697,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.313140,0.004697,-0.003750,0.249972,0,0);}
.m20_c00434{transform:matrix(0.313988,0.004082,-0.003250,0.249979,0,0);-ms-transform:matrix(0.313988,0.004082,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.313988,0.004082,-0.003250,0.249979,0,0);}
.mc1_c00434{transform:matrix(0.323825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323825,0.000000,0.000000,0.250000,0,0);}
.m31_c00434{transform:matrix(0.324558,0.004219,-0.003250,0.249979,0,0);-ms-transform:matrix(0.324558,0.004219,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.324558,0.004219,-0.003250,0.249979,0,0);}
.m34_c00434{transform:matrix(0.329462,0.004283,-0.003250,0.249979,0,0);-ms-transform:matrix(0.329462,0.004283,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.329462,0.004283,-0.003250,0.249979,0,0);}
.m1b_c00434{transform:matrix(0.334457,0.004348,-0.003250,0.249979,0,0);-ms-transform:matrix(0.334457,0.004348,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.334457,0.004348,-0.003250,0.249979,0,0);}
.m2d_c00434{transform:matrix(0.337471,0.004387,-0.003250,0.249979,0,0);-ms-transform:matrix(0.337471,0.004387,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.337471,0.004387,-0.003250,0.249979,0,0);}
.m24_c00434{transform:matrix(0.339381,0.004412,-0.003250,0.249979,0,0);-ms-transform:matrix(0.339381,0.004412,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.339381,0.004412,-0.003250,0.249979,0,0);}
.m33_c00434{transform:matrix(0.339546,0.004414,-0.003250,0.249979,0,0);-ms-transform:matrix(0.339546,0.004414,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.339546,0.004414,-0.003250,0.249979,0,0);}
.m21_c00434{transform:matrix(0.344726,0.004481,-0.003250,0.249979,0,0);-ms-transform:matrix(0.344726,0.004481,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.344726,0.004481,-0.003250,0.249979,0,0);}
.m1_c00434{transform:matrix(0.346975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346975,0.000000,0.000000,0.250000,0,0);}
.m3b_c00434{transform:matrix(0.371804,0.004833,-0.003250,0.249979,0,0);-ms-transform:matrix(0.371804,0.004833,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.371804,0.004833,-0.003250,0.249979,0,0);}
.m2e_c00434{transform:matrix(0.381808,0.004964,-0.003250,0.249979,0,0);-ms-transform:matrix(0.381808,0.004964,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.381808,0.004964,-0.003250,0.249979,0,0);}
.ma_c00434{transform:matrix(0.383160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383160,0.000000,0.000000,0.250000,0,0);}
.m19_c00434{transform:matrix(0.383953,0.004991,-0.003250,0.249979,0,0);-ms-transform:matrix(0.383953,0.004991,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.383953,0.004991,-0.003250,0.249979,0,0);}
.m16_c00434{transform:matrix(0.396282,0.005152,-0.003250,0.249979,0,0);-ms-transform:matrix(0.396282,0.005152,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.396282,0.005152,-0.003250,0.249979,0,0);}
.m97_c00434{transform:matrix(0.398135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398135,0.000000,0.000000,0.250000,0,0);}
.m36_c00434{transform:matrix(0.403156,0.005241,-0.003250,0.249979,0,0);-ms-transform:matrix(0.403156,0.005241,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.403156,0.005241,-0.003250,0.249979,0,0);}
.m2_c00434{transform:matrix(0.410585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410585,0.000000,0.000000,0.250000,0,0);}
.m38_c00434{transform:matrix(0.417580,0.005429,-0.003250,0.249979,0,0);-ms-transform:matrix(0.417580,0.005429,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.417580,0.005429,-0.003250,0.249979,0,0);}
.m39_c00434{transform:matrix(0.442718,0.005755,-0.003250,0.249979,0,0);-ms-transform:matrix(0.442718,0.005755,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.442718,0.005755,-0.003250,0.249979,0,0);}
.m8c_c00434{transform:matrix(0.445880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445880,0.000000,0.000000,0.250000,0,0);}
.m8_c00434{transform:matrix(0.456255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456255,0.000000,0.000000,0.250000,0,0);}
.m11_c00434{transform:matrix(0.459011,0.005967,-0.003250,0.249979,0,0);-ms-transform:matrix(0.459011,0.005967,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.459011,0.005967,-0.003250,0.249979,0,0);}
.m26_c00434{transform:matrix(0.464841,0.006043,-0.003250,0.249979,0,0);-ms-transform:matrix(0.464841,0.006043,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.464841,0.006043,-0.003250,0.249979,0,0);}
.m22_c00434{transform:matrix(0.472190,0.006138,-0.003250,0.249979,0,0);-ms-transform:matrix(0.472190,0.006138,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.472190,0.006138,-0.003250,0.249979,0,0);}
.m23_c00434{transform:matrix(0.472220,0.006139,-0.003250,0.249979,0,0);-ms-transform:matrix(0.472220,0.006139,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.472220,0.006139,-0.003250,0.249979,0,0);}
.mb_c00434{transform:matrix(0.478540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478540,0.000000,0.000000,0.250000,0,0);}
.m1d_c00434{transform:matrix(0.505332,0.006569,-0.003250,0.249979,0,0);-ms-transform:matrix(0.505332,0.006569,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.505332,0.006569,-0.003250,0.249979,0,0);}
.m13_c00434{transform:matrix(0.546709,0.007107,-0.003250,0.249979,0,0);-ms-transform:matrix(0.546709,0.007107,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.546709,0.007107,-0.003250,0.249979,0,0);}
.m2c_c00434{transform:matrix(0.568472,0.007390,-0.003250,0.249979,0,0);-ms-transform:matrix(0.568472,0.007390,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.568472,0.007390,-0.003250,0.249979,0,0);}
.m27_c00434{transform:matrix(1.042282,0.013550,-0.003250,0.249979,0,0);-ms-transform:matrix(1.042282,0.013550,-0.003250,0.249979,0,0);-webkit-transform:matrix(1.042282,0.013550,-0.003250,0.249979,0,0);}
.m18_c00434{transform:matrix(2.693812,0.035020,-0.003250,0.249979,0,0);-ms-transform:matrix(2.693812,0.035020,-0.003250,0.249979,0,0);-webkit-transform:matrix(2.693812,0.035020,-0.003250,0.249979,0,0);}
.m185_c00434{transform:matrix(8.673800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(8.673800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(8.673800,0.000000,0.000000,0.250000,0,0);}
.v0_c00434{vertical-align:0.000000px;}
.ls0_c00434{letter-spacing:0.000000px;}
.sc__c00434{text-shadow:none;}
.sc0_c00434{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__c00434{-webkit-text-stroke:0px transparent;}
.sc0_c00434{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00434{word-spacing:0.000000px;}
._2_c00434{margin-left:-3.203777px;}
._0_c00434{margin-left:-2.202460px;}
._1_c00434{width:17.153178px;}
.fc0_c00434{color:transparent;}
.fs12_c00434{font-size:18.000000px;}
.fs0_c00434{font-size:24.000000px;}
.fs4_c00434{font-size:24.002028px;}
.fs1_c00434{font-size:30.000000px;}
.fs2_c00434{font-size:54.000000px;}
.fsa_c00434{font-size:72.000000px;}
.fs6_c00434{font-size:72.002304px;}
.fsd_c00434{font-size:72.008100px;}
.fs9_c00434{font-size:78.000000px;}
.fs13_c00434{font-size:78.003159px;}
.fs10_c00434{font-size:78.008775px;}
.fs5_c00434{font-size:84.002688px;}
.fse_c00434{font-size:84.009449px;}
.fsb_c00434{font-size:90.000000px;}
.fs7_c00434{font-size:90.002880px;}
.fsc_c00434{font-size:90.010124px;}
.fs3_c00434{font-size:96.000000px;}
.fs8_c00434{font-size:96.003072px;}
.fsf_c00434{font-size:96.010799px;}
.fs11_c00434{font-size:102.011474px;}
.y0_c00434{bottom:0.000000px;}
.y176_c00434{bottom:73.441500px;}
.y177_c00434{bottom:75.407100px;}
.y178_c00434{bottom:75.798181px;}
.y179_c00434{bottom:76.099353px;}
.y17a_c00434{bottom:76.485642px;}
.y175_c00434{bottom:110.439000px;}
.y174_c00434{bottom:120.960000px;}
.y173_c00434{bottom:157.680000px;}
.y172_c00434{bottom:159.461010px;}
.y171_c00434{bottom:159.934215px;}
.y170_c00434{bottom:160.724835px;}
.y16f_c00434{bottom:161.193473px;}
.y16e_c00434{bottom:161.949788px;}
.y16d_c00434{bottom:162.895080px;}
.y16c_c00434{bottom:163.216920px;}
.y16b_c00434{bottom:164.291475px;}
.y16a_c00434{bottom:164.604518px;}
.y169_c00434{bottom:165.814238px;}
.y168_c00434{bottom:166.421933px;}
.y167_c00434{bottom:167.336183px;}
.y166_c00434{bottom:194.913675px;}
.y165_c00434{bottom:196.323338px;}
.y164_c00434{bottom:196.900995px;}
.y163_c00434{bottom:197.519115px;}
.y162_c00434{bottom:199.915958px;}
.y161_c00434{bottom:201.107355px;}
.y160_c00434{bottom:201.710190px;}
.y15f_c00434{bottom:203.114820px;}
.y15e_c00434{bottom:203.891415px;}
.y15d_c00434{bottom:205.068510px;}
.y15c_c00434{bottom:205.467578px;}
.y15b_c00434{bottom:207.208463px;}
.y15a_c00434{bottom:207.839063px;}
.y159_c00434{bottom:233.398433px;}
.y158_c00434{bottom:234.317693px;}
.y157_c00434{bottom:235.663928px;}
.y156_c00434{bottom:236.233898px;}
.y155_c00434{bottom:237.537210px;}
.y154_c00434{bottom:238.675853px;}
.y153_c00434{bottom:239.249940px;}
.y152_c00434{bottom:240.558510px;}
.y151_c00434{bottom:240.911978px;}
.y150_c00434{bottom:241.485593px;}
.y14f_c00434{bottom:242.981955px;}
.y14e_c00434{bottom:243.361553px;}
.y14d_c00434{bottom:244.835558px;}
.y14c_c00434{bottom:269.604788px;}
.y14b_c00434{bottom:270.764055px;}
.y14a_c00434{bottom:271.436760px;}
.y149_c00434{bottom:272.108565px;}
.y148_c00434{bottom:273.255795px;}
.y147_c00434{bottom:273.607448px;}
.y146_c00434{bottom:274.757828px;}
.y145_c00434{bottom:275.244795px;}
.y144_c00434{bottom:276.905048px;}
.y143_c00434{bottom:278.204288px;}
.y142_c00434{bottom:278.858970px;}
.y141_c00434{bottom:310.881570px;}
.y140_c00434{bottom:311.014148px;}
.y13f_c00434{bottom:311.540370px;}
.y13e_c00434{bottom:312.013650px;}
.y13d_c00434{bottom:312.469470px;}
.y13c_c00434{bottom:312.745268px;}
.y13b_c00434{bottom:313.409970px;}
.y13a_c00434{bottom:313.797555px;}
.y139_c00434{bottom:313.940663px;}
.y138_c00434{bottom:314.324738px;}
.y137_c00434{bottom:314.524163px;}
.y136_c00434{bottom:315.043920px;}
.y135_c00434{bottom:341.519963px;}
.y134_c00434{bottom:341.783108px;}
.y133_c00434{bottom:342.401430px;}
.y132_c00434{bottom:342.757703px;}
.y131_c00434{bottom:343.030088px;}
.y130_c00434{bottom:343.567650px;}
.y12f_c00434{bottom:343.827263px;}
.y12e_c00434{bottom:344.188343px;}
.y12d_c00434{bottom:344.631615px;}
.y12c_c00434{bottom:344.893733px;}
.y12b_c00434{bottom:345.161933px;}
.y12a_c00434{bottom:345.340560px;}
.y129_c00434{bottom:345.951503px;}
.y128_c00434{bottom:346.908270px;}
.y127_c00434{bottom:373.070655px;}
.y126_c00434{bottom:374.458095px;}
.y125_c00434{bottom:374.937900px;}
.y124_c00434{bottom:375.888030px;}
.y123_c00434{bottom:377.570663px;}
.y122_c00434{bottom:377.902455px;}
.y121_c00434{bottom:379.116405px;}
.y120_c00434{bottom:380.364383px;}
.y11f_c00434{bottom:381.589223px;}
.y11e_c00434{bottom:382.026578px;}
.y11d_c00434{bottom:382.505933px;}
.y11c_c00434{bottom:382.823250px;}
.y11b_c00434{bottom:415.310820px;}
.y117_c00434{bottom:415.310843px;}
.y11a_c00434{bottom:415.311053px;}
.y116_c00434{bottom:415.311248px;}
.y118_c00434{bottom:415.311495px;}
.y119_c00434{bottom:415.311585px;}
.y115_c00434{bottom:415.311713px;}
.y111_c00434{bottom:415.311870px;}
.y114_c00434{bottom:415.312350px;}
.y112_c00434{bottom:415.312365px;}
.y110_c00434{bottom:415.312508px;}
.y10f_c00434{bottom:415.312823px;}
.y113_c00434{bottom:415.313055px;}
.y10e_c00434{bottom:446.438843px;}
.y10d_c00434{bottom:446.846670px;}
.y10c_c00434{bottom:447.912885px;}
.y10b_c00434{bottom:449.380710px;}
.y10a_c00434{bottom:449.769323px;}
.y109_c00434{bottom:450.690090px;}
.y108_c00434{bottom:451.098593px;}
.y107_c00434{bottom:451.491098px;}
.y106_c00434{bottom:452.430053px;}
.y105_c00434{bottom:453.466215px;}
.y104_c00434{bottom:453.858383px;}
.y103_c00434{bottom:454.383263px;}
.y102_c00434{bottom:485.033093px;}
.y101_c00434{bottom:485.634390px;}
.y100_c00434{bottom:486.302715px;}
.yff_c00434{bottom:486.771165px;}
.yfe_c00434{bottom:487.033973px;}
.yfd_c00434{bottom:487.231035px;}
.yfc_c00434{bottom:487.498868px;}
.yfb_c00434{bottom:488.158965px;}
.yfa_c00434{bottom:488.351018px;}
.yf9_c00434{bottom:488.949000px;}
.yf8_c00434{bottom:521.461170px;}
.yf7_c00434{bottom:522.165285px;}
.yf6_c00434{bottom:522.439703px;}
.yf5_c00434{bottom:523.154933px;}
.yf4_c00434{bottom:524.033783px;}
.yf3_c00434{bottom:524.303190px;}
.yf2_c00434{bottom:524.740223px;}
.yf1_c00434{bottom:525.268215px;}
.yf0_c00434{bottom:525.530040px;}
.yef_c00434{bottom:526.486965px;}
.yee_c00434{bottom:526.754693px;}
.yed_c00434{bottom:553.894207px;}
.yec_c00434{bottom:554.352998px;}
.yeb_c00434{bottom:555.622275px;}
.yea_c00434{bottom:557.081715px;}
.ye9_c00434{bottom:557.639850px;}
.ye8_c00434{bottom:558.366217px;}
.ye7_c00434{bottom:558.811838px;}
.ye6_c00434{bottom:560.513565px;}
.ye5_c00434{bottom:560.956478px;}
.ye4_c00434{bottom:561.377978px;}
.ye3_c00434{bottom:561.795112px;}
.ye2_c00434{bottom:562.376625px;}
.ye1_c00434{bottom:563.208998px;}
.ye0_c00434{bottom:592.542367px;}
.ydf_c00434{bottom:593.043953px;}
.yde_c00434{bottom:594.253748px;}
.ydd_c00434{bottom:594.746183px;}
.ydc_c00434{bottom:595.961790px;}
.ydb_c00434{bottom:596.318408px;}
.yda_c00434{bottom:597.046282px;}
.yd9_c00434{bottom:597.776205px;}
.yd8_c00434{bottom:598.272420px;}
.yd7_c00434{bottom:599.351318px;}
.yd6_c00434{bottom:599.717085px;}
.yd5_c00434{bottom:600.203610px;}
.yd4_c00434{bottom:626.558768px;}
.yd3_c00434{bottom:627.239362px;}
.yd2_c00434{bottom:628.292288px;}
.yd1_c00434{bottom:629.102738px;}
.yd0_c00434{bottom:629.508555px;}
.ycf_c00434{bottom:630.558345px;}
.yce_c00434{bottom:631.481595px;}
.ycd_c00434{bottom:632.022653px;}
.ycc_c00434{bottom:633.208380px;}
.ycb_c00434{bottom:633.998355px;}
.yca_c00434{bottom:634.525672px;}
.yc9_c00434{bottom:635.038207px;}
.yc8_c00434{bottom:662.674283px;}
.yc7_c00434{bottom:663.181635px;}
.yc6_c00434{bottom:664.027500px;}
.yc5_c00434{bottom:664.513635px;}
.yc4_c00434{bottom:665.821875px;}
.yc3_c00434{bottom:666.327337px;}
.yc2_c00434{bottom:667.158285px;}
.yc1_c00434{bottom:668.640787px;}
.yc0_c00434{bottom:669.138892px;}
.ybf_c00434{bottom:670.143000px;}
.ybe_c00434{bottom:699.946500px;}
.ybd_c00434{bottom:700.578000px;}
.ybc_c00434{bottom:700.803000px;}
.ybb_c00434{bottom:701.503500px;}
.yba_c00434{bottom:701.967000px;}
.yb9_c00434{bottom:702.739500px;}
.yb8_c00434{bottom:703.042500px;}
.yb7_c00434{bottom:703.267500px;}
.yb6_c00434{bottom:703.887000px;}
.yb5_c00434{bottom:734.509500px;}
.yb4_c00434{bottom:735.568500px;}
.yb3_c00434{bottom:736.111500px;}
.yb2_c00434{bottom:737.074500px;}
.yb1_c00434{bottom:737.427000px;}
.yb0_c00434{bottom:737.868000px;}
.yaf_c00434{bottom:738.319500px;}
.yae_c00434{bottom:738.922500px;}
.yad_c00434{bottom:739.270500px;}
.yac_c00434{bottom:739.537500px;}
.yab_c00434{bottom:740.067000px;}
.yaa_c00434{bottom:769.267500px;}
.ya9_c00434{bottom:770.052000px;}
.ya8_c00434{bottom:770.250000px;}
.ya7_c00434{bottom:770.590500px;}
.ya6_c00434{bottom:770.839500px;}
.ya5_c00434{bottom:771.511500px;}
.ya4_c00434{bottom:771.780000px;}
.ya3_c00434{bottom:772.446000px;}
.ya2_c00434{bottom:772.641000px;}
.ya1_c00434{bottom:772.840500px;}
.ya0_c00434{bottom:773.175000px;}
.y9f_c00434{bottom:773.367000px;}
.y9e_c00434{bottom:773.896500px;}
.y9d_c00434{bottom:774.087000px;}
.y9c_c00434{bottom:805.753500px;}
.y9b_c00434{bottom:806.430000px;}
.y9a_c00434{bottom:806.629500px;}
.y99_c00434{bottom:807.304500px;}
.y98_c00434{bottom:807.700500px;}
.y97_c00434{bottom:807.897000px;}
.y96_c00434{bottom:808.431000px;}
.y95_c00434{bottom:808.621500px;}
.y94_c00434{bottom:808.824000px;}
.y93_c00434{bottom:809.020500px;}
.y92_c00434{bottom:809.350500px;}
.y91_c00434{bottom:809.547000px;}
.y90_c00434{bottom:810.006000px;}
.y8f_c00434{bottom:810.205500px;}
.y8e_c00434{bottom:810.343500px;}
.y8d_c00434{bottom:810.538500px;}
.y8c_c00434{bottom:841.959000px;}
.y8b_c00434{bottom:843.040500px;}
.y8a_c00434{bottom:843.846000px;}
.y89_c00434{bottom:844.105500px;}
.y88_c00434{bottom:844.557000px;}
.y87_c00434{bottom:845.343000px;}
.y86_c00434{bottom:846.132000px;}
.y85_c00434{bottom:846.486000px;}
.y84_c00434{bottom:846.927000px;}
.y83_c00434{bottom:847.893000px;}
.y82_c00434{bottom:848.340000px;}
.y81_c00434{bottom:879.001500px;}
.y7a_c00434{bottom:914.383824px;}
.y79_c00434{bottom:914.384052px;}
.y7b_c00434{bottom:914.384076px;}
.y7c_c00434{bottom:914.384388px;}
.y80_c00434{bottom:914.384664px;}
.y7d_c00434{bottom:914.384700px;}
.y78_c00434{bottom:914.384736px;}
.y77_c00434{bottom:914.384772px;}
.y7e_c00434{bottom:914.385144px;}
.y7f_c00434{bottom:914.385180px;}
.y6c_c00434{bottom:949.321344px;}
.y76_c00434{bottom:949.321404px;}
.y75_c00434{bottom:949.321740px;}
.y6d_c00434{bottom:949.321884px;}
.y72_c00434{bottom:949.322220px;}
.y6e_c00434{bottom:949.322256px;}
.y71_c00434{bottom:949.322388px;}
.y74_c00434{bottom:949.322436px;}
.y70_c00434{bottom:949.322532px;}
.y73_c00434{bottom:949.322904px;}
.y6f_c00434{bottom:949.322928px;}
.y6b_c00434{bottom:984.342396px;}
.y6a_c00434{bottom:984.696108px;}
.y69_c00434{bottom:985.802664px;}
.y68_c00434{bottom:986.176572px;}
.y67_c00434{bottom:986.425452px;}
.y66_c00434{bottom:987.629436px;}
.y65_c00434{bottom:988.618452px;}
.y64_c00434{bottom:988.855428px;}
.y63_c00434{bottom:989.698704px;}
.y62_c00434{bottom:990.649236px;}
.y61_c00434{bottom:991.628748px;}
.y60_c00434{bottom:991.981368px;}
.y54_c00434{bottom:1022.211348px;}
.y55_c00434{bottom:1022.211840px;}
.y56_c00434{bottom:1022.212512px;}
.y57_c00434{bottom:1022.212824px;}
.y59_c00434{bottom:1022.213040px;}
.y58_c00434{bottom:1022.213328px;}
.y5a_c00434{bottom:1022.213364px;}
.y5b_c00434{bottom:1022.213748px;}
.y5c_c00434{bottom:1022.213952px;}
.y5d_c00434{bottom:1022.213964px;}
.y5e_c00434{bottom:1022.214696px;}
.y5f_c00434{bottom:1022.215440px;}
.y4c_c00434{bottom:1055.698860px;}
.y4d_c00434{bottom:1055.699052px;}
.y4f_c00434{bottom:1055.699088px;}
.y4b_c00434{bottom:1055.699148px;}
.y52_c00434{bottom:1055.699424px;}
.y4e_c00434{bottom:1055.699436px;}
.y51_c00434{bottom:1055.699472px;}
.y4a_c00434{bottom:1055.699544px;}
.y50_c00434{bottom:1055.699640px;}
.y53_c00434{bottom:1055.699916px;}
.y48_c00434{bottom:1055.699940px;}
.y47_c00434{bottom:1055.699988px;}
.y49_c00434{bottom:1055.700252px;}
.y46_c00434{bottom:1092.047748px;}
.y45_c00434{bottom:1092.579108px;}
.y44_c00434{bottom:1093.389132px;}
.y43_c00434{bottom:1093.996176px;}
.y42_c00434{bottom:1094.266032px;}
.y41_c00434{bottom:1094.801868px;}
.y40_c00434{bottom:1095.061128px;}
.y3f_c00434{bottom:1095.849480px;}
.y3e_c00434{bottom:1096.471500px;}
.y4_c00434{bottom:1136.970000px;}
.y3_c00434{bottom:1148.850000px;}
.y3d_c00434{bottom:1167.244041px;}
.y3c_c00434{bottom:1167.365451px;}
.y3b_c00434{bottom:1167.486861px;}
.y3a_c00434{bottom:1167.584067px;}
.y39_c00434{bottom:1167.733172px;}
.y38_c00434{bottom:1167.836521px;}
.y37_c00434{bottom:1167.961441px;}
.y36_c00434{bottom:1168.073821px;}
.y35_c00434{bottom:1168.334292px;}
.y34_c00434{bottom:1168.456072px;}
.y33_c00434{bottom:1168.580992px;}
.y32_c00434{bottom:1168.767252px;}
.y31_c00434{bottom:1168.945183px;}
.y30_c00434{bottom:1169.070103px;}
.y2f_c00434{bottom:1169.191513px;}
.y2e_c00434{bottom:1169.289343px;}
.y2d_c00434{bottom:1169.434314px;}
.y2c_c00434{bottom:1169.540979px;}
.y2b_c00434{bottom:1169.683978px;}
.y2a_c00434{bottom:1169.800629px;}
.y29_c00434{bottom:1169.907489px;}
.y28_c00434{bottom:1170.041419px;}
.y20_c00434{bottom:1170.072592px;}
.y27_c00434{bottom:1170.148279px;}
.y1f_c00434{bottom:1170.220090px;}
.y26_c00434{bottom:1170.406467px;}
.y1e_c00434{bottom:1170.417313px;}
.y25_c00434{bottom:1170.495267px;}
.y24_c00434{bottom:1170.611801px;}
.y1d_c00434{bottom:1170.707981px;}
.y23_c00434{bottom:1170.763791px;}
.y22_c00434{bottom:1170.879018px;}
.y1c_c00434{bottom:1171.073040px;}
.y21_c00434{bottom:1171.259317px;}
.y1_c00434{bottom:1171.260000px;}
.y1b_c00434{bottom:1171.280715px;}
.y1a_c00434{bottom:1171.400036px;}
.y19_c00434{bottom:1171.691326px;}
.y18_c00434{bottom:1172.101645px;}
.y17_c00434{bottom:1172.280636px;}
.y16_c00434{bottom:1172.477313px;}
.y15_c00434{bottom:1172.719445px;}
.y14_c00434{bottom:1172.873923px;}
.y13_c00434{bottom:1173.137739px;}
.y12_c00434{bottom:1173.407989px;}
.y11_c00434{bottom:1173.733990px;}
.y10_c00434{bottom:1173.969180px;}
.yf_c00434{bottom:1174.113441px;}
.ye_c00434{bottom:1174.264001px;}
.yd_c00434{bottom:1174.418480px;}
.yc_c00434{bottom:1174.611842px;}
.yb_c00434{bottom:1174.976569px;}
.ya_c00434{bottom:1175.310000px;}
.y9_c00434{bottom:1183.473000px;}
.y8_c00434{bottom:1184.937000px;}
.y7_c00434{bottom:1186.260000px;}
.y6_c00434{bottom:1187.193000px;}
.y2_c00434{bottom:1218.780000px;}
.y5_c00434{bottom:1218.817500px;}
.h14_c00434{height:18.000000px;}
.h2_c00434{height:24.000000px;}
.h6_c00434{height:24.002028px;}
.h3_c00434{height:30.000000px;}
.h4_c00434{height:54.000000px;}
.hc_c00434{height:72.000000px;}
.h8_c00434{height:72.002304px;}
.hf_c00434{height:72.008100px;}
.hb_c00434{height:78.000000px;}
.h15_c00434{height:78.003159px;}
.h12_c00434{height:78.008775px;}
.h7_c00434{height:84.002688px;}
.h10_c00434{height:84.009449px;}
.hd_c00434{height:90.000000px;}
.h9_c00434{height:90.002880px;}
.he_c00434{height:90.010124px;}
.h5_c00434{height:96.000000px;}
.ha_c00434{height:96.003072px;}
.h11_c00434{height:96.010799px;}
.h13_c00434{height:102.011474px;}
.h1_c00434{height:1251.000000px;}
.h0_c00434{height:1251.150000px;}
.w0_c00434{width:915.000000px;}
.x0_c00434{left:0.000000px;}
.x2_c00434{left:2.970000px;}
.x1_c00434{left:6.210000px;}
.x4_c00434{left:37.260000px;}
.x3_c00434{left:38.610000px;}
.x5_c00434{left:40.230000px;}
.x6_c00434{left:42.660000px;}
.xae_c00434{left:106.920000px;}
.x89_c00434{left:108.427560px;}
.x64_c00434{left:109.542000px;}
.x3d_c00434{left:110.965392px;}
.x96_c00434{left:130.540748px;}
.x56_c00434{left:132.566304px;}
.x50_c00434{left:142.734888px;}
.x7a_c00434{left:152.709180px;}
.x48_c00434{left:164.969460px;}
.x81_c00434{left:174.268537px;}
.x3e_c00434{left:176.038056px;}
.x91_c00434{left:184.939973px;}
.x7e_c00434{left:186.146205px;}
.x57_c00434{left:187.648332px;}
.x7b_c00434{left:196.665660px;}
.x49_c00434{left:198.450108px;}
.xad_c00434{left:207.360000px;}
.x3f_c00434{left:208.438632px;}
.x75_c00434{left:217.969500px;}
.x38_c00434{left:219.672000px;}
.x9a_c00434{left:228.276540px;}
.x4a_c00434{left:230.850684px;}
.x8a_c00434{left:239.914290px;}
.x58_c00434{left:241.380276px;}
.x82_c00434{left:251.147355px;}
.x40_c00434{left:253.530012px;}
.x6e_c00434{left:262.330500px;}
.x74_c00434{left:273.118500px;}
.x6a_c00434{left:274.755000px;}
.x83_c00434{left:283.548322px;}
.x9_c00434{left:284.887500px;}
.xd_c00434{left:285.898500px;}
.x9f_c00434{left:293.967263px;}
.x87_c00434{left:295.233247px;}
.x39_c00434{left:297.424500px;}
.x9b_c00434{left:304.714073px;}
.xa6_c00434{left:306.221438px;}
.x6b_c00434{left:307.423500px;}
.xe_c00434{left:311.547000px;}
.x4b_c00434{left:317.793252px;}
.x59_c00434{left:318.872232px;}
.x22_c00434{left:320.460747px;}
.x9c_c00434{left:327.124935px;}
.x5d_c00434{left:328.590864px;}
.x23_c00434{left:330.940020px;}
.xf_c00434{left:339.603000px;}
.x65_c00434{left:341.175000px;}
.x24_c00434{left:344.708871px;}
.x8b_c00434{left:349.835618px;}
.x41_c00434{left:351.273264px;}
.x4c_c00434{left:352.893996px;}
.x10_c00434{left:354.477000px;}
.x92_c00434{left:360.189893px;}
.x7c_c00434{left:361.386585px;}
.xa_c00434{left:362.640000px;}
.x11_c00434{left:366.360000px;}
.x7_c00434{left:369.900000px;}
.xa9_c00434{left:371.212125px;}
.x97_c00434{left:372.612870px;}
.x12_c00434{left:377.941500px;}
.xa0_c00434{left:382.258665px;}
.x6f_c00434{left:383.568000px;}
.x66_c00434{left:385.428000px;}
.x25_c00434{left:386.826963px;}
.x13_c00434{left:389.038500px;}
.x9d_c00434{left:393.286365px;}
.x51_c00434{left:394.893840px;}
.x26_c00434{left:396.547217px;}
.xac_c00434{left:403.681095px;}
.xaf_c00434{left:405.180000px;}
.x14_c00434{left:407.130000px;}
.x27_c00434{left:408.696029px;}
.x52_c00434{left:416.452824px;}
.x28_c00434{left:418.416282px;}
.x8c_c00434{left:427.339080px;}
.x29_c00434{left:429.005055px;}
.x15_c00434{left:432.207000px;}
.xa7_c00434{left:437.660978px;}
.x4d_c00434{left:439.296528px;}
.x42_c00434{left:440.916000px;}
.x2a_c00434{left:441.966886px;}
.xb0_c00434{left:448.101000px;}
.x60_c00434{left:449.280000px;}
.x2b_c00434{left:451.672140px;}
.x16_c00434{left:452.995500px;}
.x98_c00434{left:459.344175px;}
.x6c_c00434{left:460.785000px;}
.x7f_c00434{left:461.856742px;}
.x2c_c00434{left:464.900991px;}
.x8d_c00434{left:471.065475px;}
.xb_c00434{left:472.875000px;}
.x84_c00434{left:482.838307px;}
.x67_c00434{left:483.981000px;}
.x17_c00434{left:485.172000px;}
.xa1_c00434{left:492.987105px;}
.x5e_c00434{left:494.645496px;}
.x2d_c00434{left:496.221810px;}
.x18_c00434{left:503.797500px;}
.x93_c00434{left:505.195995px;}
.x53_c00434{left:506.327664px;}
.x2e_c00434{left:512.447739px;}
.x19_c00434{left:518.926500px;}
.x8f_c00434{left:526.314172px;}
.x4e_c00434{left:528.129216px;}
.x2f_c00434{left:529.429688px;}
.x1a_c00434{left:532.695000px;}
.x94_c00434{left:537.330218px;}
.x70_c00434{left:539.355000px;}
.x30_c00434{left:540.769980px;}
.xaa_c00434{left:548.961638px;}
.x43_c00434{left:549.999984px;}
.x31_c00434{left:551.868773px;}
.xa4_c00434{left:559.006043px;}
.x8_c00434{left:560.250000px;}
.x1b_c00434{left:564.258000px;}
.x7d_c00434{left:570.902513px;}
.x5f_c00434{left:572.407476px;}
.x32_c00434{left:575.597897px;}
.x68_c00434{left:582.270000px;}
.x1c_c00434{left:586.665000px;}
.x76_c00434{left:593.260500px;}
.xc_c00434{left:594.910500px;}
.x33_c00434{left:597.198462px;}
.x99_c00434{left:603.241335px;}
.x3a_c00434{left:604.968000px;}
.x34_c00434{left:606.648716px;}
.x1d_c00434{left:611.818500px;}
.x5a_c00434{left:615.340704px;}
.x44_c00434{left:616.422732px;}
.x35_c00434{left:620.195567px;}
.x77_c00434{left:625.669500px;}
.x9e_c00434{left:627.438435px;}
.x36_c00434{left:629.057801px;}
.x54_c00434{left:638.432496px;}
.x1e_c00434{left:639.900000px;}
.x6d_c00434{left:648.442500px;}
.x4f_c00434{left:650.172528px;}
.x37_c00434{left:651.198386px;}
.x95_c00434{left:659.114123px;}
.x8e_c00434{left:660.376013px;}
.x1f_c00434{left:662.259000px;}
.x61_c00434{left:670.680000px;}
.x45_c00434{left:672.044796px;}
.x20_c00434{left:677.430000px;}
.x78_c00434{left:682.060500px;}
.x21_c00434{left:688.776000px;}
.x71_c00434{left:692.979000px;}
.x5b_c00434{left:694.182744px;}
.x3b_c00434{left:706.221000px;}
.x79_c00434{left:715.884000px;}
.xa5_c00434{left:725.924543px;}
.xa8_c00434{left:727.768770px;}
.x90_c00434{left:737.559690px;}
.xab_c00434{left:748.560660px;}
.x46_c00434{left:750.076788px;}
.x80_c00434{left:759.471585px;}
.x62_c00434{left:760.590000px;}
.x88_c00434{left:771.086198px;}
.x3c_c00434{left:772.641000px;}
.xa2_c00434{left:781.434030px;}
.x72_c00434{left:782.662500px;}
.x85_c00434{left:791.595577px;}
.x5c_c00434{left:794.356152px;}
.xa3_c00434{left:803.575523px;}
.x55_c00434{left:805.263000px;}
.x47_c00434{left:816.769560px;}
.x86_c00434{left:826.882635px;}
.x63_c00434{left:889.110000px;}
.x69_c00434{left:907.027500px;}
.x73_c00434{left:913.299000px;}
@media print{
.v0_c00434{vertical-align:0.000000pt;}
.ls0_c00434{letter-spacing:0.000000pt;}
.ws0_c00434{word-spacing:0.000000pt;}
._2_c00434{margin-left:-2.847802pt;}
._0_c00434{margin-left:-1.957742pt;}
._1_c00434{width:15.247269pt;}
.fs12_c00434{font-size:16.000000pt;}
.fs0_c00434{font-size:21.333333pt;}
.fs4_c00434{font-size:21.335136pt;}
.fs1_c00434{font-size:26.666667pt;}
.fs2_c00434{font-size:48.000000pt;}
.fsa_c00434{font-size:64.000000pt;}
.fs6_c00434{font-size:64.002048pt;}
.fsd_c00434{font-size:64.007200pt;}
.fs9_c00434{font-size:69.333333pt;}
.fs13_c00434{font-size:69.336141pt;}
.fs10_c00434{font-size:69.341133pt;}
.fs5_c00434{font-size:74.669056pt;}
.fse_c00434{font-size:74.675066pt;}
.fsb_c00434{font-size:80.000000pt;}
.fs7_c00434{font-size:80.002560pt;}
.fsc_c00434{font-size:80.008999pt;}
.fs3_c00434{font-size:85.333333pt;}
.fs8_c00434{font-size:85.336064pt;}
.fsf_c00434{font-size:85.342933pt;}
.fs11_c00434{font-size:90.676866pt;}
.y0_c00434{bottom:0.000000pt;}
.y176_c00434{bottom:65.281333pt;}
.y177_c00434{bottom:67.028533pt;}
.y178_c00434{bottom:67.376161pt;}
.y179_c00434{bottom:67.643869pt;}
.y17a_c00434{bottom:67.987237pt;}
.y175_c00434{bottom:98.168000pt;}
.y174_c00434{bottom:107.520000pt;}
.y173_c00434{bottom:140.160000pt;}
.y172_c00434{bottom:141.743120pt;}
.y171_c00434{bottom:142.163747pt;}
.y170_c00434{bottom:142.866520pt;}
.y16f_c00434{bottom:143.283087pt;}
.y16e_c00434{bottom:143.955367pt;}
.y16d_c00434{bottom:144.795627pt;}
.y16c_c00434{bottom:145.081707pt;}
.y16b_c00434{bottom:146.036867pt;}
.y16a_c00434{bottom:146.315127pt;}
.y169_c00434{bottom:147.390433pt;}
.y168_c00434{bottom:147.930607pt;}
.y167_c00434{bottom:148.743273pt;}
.y166_c00434{bottom:173.256600pt;}
.y165_c00434{bottom:174.509633pt;}
.y164_c00434{bottom:175.023107pt;}
.y163_c00434{bottom:175.572547pt;}
.y162_c00434{bottom:177.703073pt;}
.y161_c00434{bottom:178.762093pt;}
.y160_c00434{bottom:179.297947pt;}
.y15f_c00434{bottom:180.546507pt;}
.y15e_c00434{bottom:181.236813pt;}
.y15d_c00434{bottom:182.283120pt;}
.y15c_c00434{bottom:182.637847pt;}
.y15b_c00434{bottom:184.185300pt;}
.y15a_c00434{bottom:184.745833pt;}
.y159_c00434{bottom:207.465273pt;}
.y158_c00434{bottom:208.282393pt;}
.y157_c00434{bottom:209.479047pt;}
.y156_c00434{bottom:209.985687pt;}
.y155_c00434{bottom:211.144187pt;}
.y154_c00434{bottom:212.156313pt;}
.y153_c00434{bottom:212.666613pt;}
.y152_c00434{bottom:213.829787pt;}
.y151_c00434{bottom:214.143980pt;}
.y150_c00434{bottom:214.653860pt;}
.y14f_c00434{bottom:215.983960pt;}
.y14e_c00434{bottom:216.321380pt;}
.y14d_c00434{bottom:217.631607pt;}
.y14c_c00434{bottom:239.648700pt;}
.y14b_c00434{bottom:240.679160pt;}
.y14a_c00434{bottom:241.277120pt;}
.y149_c00434{bottom:241.874280pt;}
.y148_c00434{bottom:242.894040pt;}
.y147_c00434{bottom:243.206620pt;}
.y146_c00434{bottom:244.229180pt;}
.y145_c00434{bottom:244.662040pt;}
.y144_c00434{bottom:246.137820pt;}
.y143_c00434{bottom:247.292700pt;}
.y142_c00434{bottom:247.874640pt;}
.y141_c00434{bottom:276.339173pt;}
.y140_c00434{bottom:276.457020pt;}
.y13f_c00434{bottom:276.924773pt;}
.y13e_c00434{bottom:277.345467pt;}
.y13d_c00434{bottom:277.750640pt;}
.y13c_c00434{bottom:277.995793pt;}
.y13b_c00434{bottom:278.586640pt;}
.y13a_c00434{bottom:278.931160pt;}
.y139_c00434{bottom:279.058367pt;}
.y138_c00434{bottom:279.399767pt;}
.y137_c00434{bottom:279.577033pt;}
.y136_c00434{bottom:280.039040pt;}
.y135_c00434{bottom:303.573300pt;}
.y134_c00434{bottom:303.807207pt;}
.y133_c00434{bottom:304.356827pt;}
.y132_c00434{bottom:304.673513pt;}
.y131_c00434{bottom:304.915633pt;}
.y130_c00434{bottom:305.393467pt;}
.y12f_c00434{bottom:305.624233pt;}
.y12e_c00434{bottom:305.945193pt;}
.y12d_c00434{bottom:306.339213pt;}
.y12c_c00434{bottom:306.572207pt;}
.y12b_c00434{bottom:306.810607pt;}
.y12a_c00434{bottom:306.969387pt;}
.y129_c00434{bottom:307.512447pt;}
.y128_c00434{bottom:308.362907pt;}
.y127_c00434{bottom:331.618360pt;}
.y126_c00434{bottom:332.851640pt;}
.y125_c00434{bottom:333.278133pt;}
.y124_c00434{bottom:334.122693pt;}
.y123_c00434{bottom:335.618367pt;}
.y122_c00434{bottom:335.913293pt;}
.y121_c00434{bottom:336.992360pt;}
.y120_c00434{bottom:338.101673pt;}
.y11f_c00434{bottom:339.190420pt;}
.y11e_c00434{bottom:339.579180pt;}
.y11d_c00434{bottom:340.005273pt;}
.y11c_c00434{bottom:340.287333pt;}
.y11b_c00434{bottom:369.165173pt;}
.y117_c00434{bottom:369.165193pt;}
.y11a_c00434{bottom:369.165380pt;}
.y116_c00434{bottom:369.165553pt;}
.y118_c00434{bottom:369.165773pt;}
.y119_c00434{bottom:369.165853pt;}
.y115_c00434{bottom:369.165967pt;}
.y111_c00434{bottom:369.166107pt;}
.y114_c00434{bottom:369.166533pt;}
.y112_c00434{bottom:369.166547pt;}
.y110_c00434{bottom:369.166673pt;}
.y10f_c00434{bottom:369.166953pt;}
.y113_c00434{bottom:369.167160pt;}
.y10e_c00434{bottom:396.834527pt;}
.y10d_c00434{bottom:397.197040pt;}
.y10c_c00434{bottom:398.144787pt;}
.y10b_c00434{bottom:399.449520pt;}
.y10a_c00434{bottom:399.794953pt;}
.y109_c00434{bottom:400.613413pt;}
.y108_c00434{bottom:400.976527pt;}
.y107_c00434{bottom:401.325420pt;}
.y106_c00434{bottom:402.160047pt;}
.y105_c00434{bottom:403.081080pt;}
.y104_c00434{bottom:403.429673pt;}
.y103_c00434{bottom:403.896233pt;}
.y102_c00434{bottom:431.140527pt;}
.y101_c00434{bottom:431.675013pt;}
.y100_c00434{bottom:432.269080pt;}
.yff_c00434{bottom:432.685480pt;}
.yfe_c00434{bottom:432.919087pt;}
.yfd_c00434{bottom:433.094253pt;}
.yfc_c00434{bottom:433.332327pt;}
.yfb_c00434{bottom:433.919080pt;}
.yfa_c00434{bottom:434.089793pt;}
.yf9_c00434{bottom:434.621333pt;}
.yf8_c00434{bottom:463.521040pt;}
.yf7_c00434{bottom:464.146920pt;}
.yf6_c00434{bottom:464.390847pt;}
.yf5_c00434{bottom:465.026607pt;}
.yf4_c00434{bottom:465.807807pt;}
.yf3_c00434{bottom:466.047280pt;}
.yf2_c00434{bottom:466.435753pt;}
.yf1_c00434{bottom:466.905080pt;}
.yf0_c00434{bottom:467.137813pt;}
.yef_c00434{bottom:467.988413pt;}
.yee_c00434{bottom:468.226393pt;}
.yed_c00434{bottom:492.350407pt;}
.yec_c00434{bottom:492.758220pt;}
.yeb_c00434{bottom:493.886467pt;}
.yea_c00434{bottom:495.183747pt;}
.ye9_c00434{bottom:495.679867pt;}
.ye8_c00434{bottom:496.325527pt;}
.ye7_c00434{bottom:496.721633pt;}
.ye6_c00434{bottom:498.234280pt;}
.ye5_c00434{bottom:498.627980pt;}
.ye4_c00434{bottom:499.002647pt;}
.ye3_c00434{bottom:499.373433pt;}
.ye2_c00434{bottom:499.890333pt;}
.ye1_c00434{bottom:500.630220pt;}
.ye0_c00434{bottom:526.704327pt;}
.ydf_c00434{bottom:527.150180pt;}
.yde_c00434{bottom:528.225553pt;}
.ydd_c00434{bottom:528.663273pt;}
.ydc_c00434{bottom:529.743813pt;}
.ydb_c00434{bottom:530.060807pt;}
.yda_c00434{bottom:530.707807pt;}
.yd9_c00434{bottom:531.356627pt;}
.yd8_c00434{bottom:531.797707pt;}
.yd7_c00434{bottom:532.756727pt;}
.yd6_c00434{bottom:533.081853pt;}
.yd5_c00434{bottom:533.514320pt;}
.yd4_c00434{bottom:556.941127pt;}
.yd3_c00434{bottom:557.546100pt;}
.yd2_c00434{bottom:558.482033pt;}
.yd1_c00434{bottom:559.202433pt;}
.yd0_c00434{bottom:559.563160pt;}
.ycf_c00434{bottom:560.496307pt;}
.yce_c00434{bottom:561.316973pt;}
.ycd_c00434{bottom:561.797913pt;}
.ycc_c00434{bottom:562.851893pt;}
.ycb_c00434{bottom:563.554093pt;}
.yca_c00434{bottom:564.022820pt;}
.yc9_c00434{bottom:564.478407pt;}
.yc8_c00434{bottom:589.043807pt;}
.yc7_c00434{bottom:589.494787pt;}
.yc6_c00434{bottom:590.246667pt;}
.yc5_c00434{bottom:590.678787pt;}
.yc4_c00434{bottom:591.841667pt;}
.yc3_c00434{bottom:592.290967pt;}
.yc2_c00434{bottom:593.029587pt;}
.yc1_c00434{bottom:594.347367pt;}
.yc0_c00434{bottom:594.790127pt;}
.ybf_c00434{bottom:595.682667pt;}
.ybe_c00434{bottom:622.174667pt;}
.ybd_c00434{bottom:622.736000pt;}
.ybc_c00434{bottom:622.936000pt;}
.ybb_c00434{bottom:623.558667pt;}
.yba_c00434{bottom:623.970667pt;}
.yb9_c00434{bottom:624.657333pt;}
.yb8_c00434{bottom:624.926667pt;}
.yb7_c00434{bottom:625.126667pt;}
.yb6_c00434{bottom:625.677333pt;}
.yb5_c00434{bottom:652.897333pt;}
.yb4_c00434{bottom:653.838667pt;}
.yb3_c00434{bottom:654.321333pt;}
.yb2_c00434{bottom:655.177333pt;}
.yb1_c00434{bottom:655.490667pt;}
.yb0_c00434{bottom:655.882667pt;}
.yaf_c00434{bottom:656.284000pt;}
.yae_c00434{bottom:656.820000pt;}
.yad_c00434{bottom:657.129333pt;}
.yac_c00434{bottom:657.366667pt;}
.yab_c00434{bottom:657.837333pt;}
.yaa_c00434{bottom:683.793333pt;}
.ya9_c00434{bottom:684.490667pt;}
.ya8_c00434{bottom:684.666667pt;}
.ya7_c00434{bottom:684.969333pt;}
.ya6_c00434{bottom:685.190667pt;}
.ya5_c00434{bottom:685.788000pt;}
.ya4_c00434{bottom:686.026667pt;}
.ya3_c00434{bottom:686.618667pt;}
.ya2_c00434{bottom:686.792000pt;}
.ya1_c00434{bottom:686.969333pt;}
.ya0_c00434{bottom:687.266667pt;}
.y9f_c00434{bottom:687.437333pt;}
.y9e_c00434{bottom:687.908000pt;}
.y9d_c00434{bottom:688.077333pt;}
.y9c_c00434{bottom:716.225333pt;}
.y9b_c00434{bottom:716.826667pt;}
.y9a_c00434{bottom:717.004000pt;}
.y99_c00434{bottom:717.604000pt;}
.y98_c00434{bottom:717.956000pt;}
.y97_c00434{bottom:718.130667pt;}
.y96_c00434{bottom:718.605333pt;}
.y95_c00434{bottom:718.774667pt;}
.y94_c00434{bottom:718.954667pt;}
.y93_c00434{bottom:719.129333pt;}
.y92_c00434{bottom:719.422667pt;}
.y91_c00434{bottom:719.597333pt;}
.y90_c00434{bottom:720.005333pt;}
.y8f_c00434{bottom:720.182667pt;}
.y8e_c00434{bottom:720.305333pt;}
.y8d_c00434{bottom:720.478667pt;}
.y8c_c00434{bottom:748.408000pt;}
.y8b_c00434{bottom:749.369333pt;}
.y8a_c00434{bottom:750.085333pt;}
.y89_c00434{bottom:750.316000pt;}
.y88_c00434{bottom:750.717333pt;}
.y87_c00434{bottom:751.416000pt;}
.y86_c00434{bottom:752.117333pt;}
.y85_c00434{bottom:752.432000pt;}
.y84_c00434{bottom:752.824000pt;}
.y83_c00434{bottom:753.682667pt;}
.y82_c00434{bottom:754.080000pt;}
.y81_c00434{bottom:781.334667pt;}
.y7a_c00434{bottom:812.785621pt;}
.y79_c00434{bottom:812.785824pt;}
.y7b_c00434{bottom:812.785845pt;}
.y7c_c00434{bottom:812.786123pt;}
.y80_c00434{bottom:812.786368pt;}
.y7d_c00434{bottom:812.786400pt;}
.y78_c00434{bottom:812.786432pt;}
.y77_c00434{bottom:812.786464pt;}
.y7e_c00434{bottom:812.786795pt;}
.y7f_c00434{bottom:812.786827pt;}
.y6c_c00434{bottom:843.841195pt;}
.y76_c00434{bottom:843.841248pt;}
.y75_c00434{bottom:843.841547pt;}
.y6d_c00434{bottom:843.841675pt;}
.y72_c00434{bottom:843.841973pt;}
.y6e_c00434{bottom:843.842005pt;}
.y71_c00434{bottom:843.842123pt;}
.y74_c00434{bottom:843.842165pt;}
.y70_c00434{bottom:843.842251pt;}
.y73_c00434{bottom:843.842581pt;}
.y6f_c00434{bottom:843.842603pt;}
.y6b_c00434{bottom:874.971019pt;}
.y6a_c00434{bottom:875.285429pt;}
.y69_c00434{bottom:876.269035pt;}
.y68_c00434{bottom:876.601397pt;}
.y67_c00434{bottom:876.822624pt;}
.y66_c00434{bottom:877.892832pt;}
.y65_c00434{bottom:878.771957pt;}
.y64_c00434{bottom:878.982603pt;}
.y63_c00434{bottom:879.732181pt;}
.y62_c00434{bottom:880.577099pt;}
.y61_c00434{bottom:881.447776pt;}
.y60_c00434{bottom:881.761216pt;}
.y54_c00434{bottom:908.632309pt;}
.y55_c00434{bottom:908.632747pt;}
.y56_c00434{bottom:908.633344pt;}
.y57_c00434{bottom:908.633621pt;}
.y59_c00434{bottom:908.633813pt;}
.y58_c00434{bottom:908.634069pt;}
.y5a_c00434{bottom:908.634101pt;}
.y5b_c00434{bottom:908.634443pt;}
.y5c_c00434{bottom:908.634624pt;}
.y5d_c00434{bottom:908.634635pt;}
.y5e_c00434{bottom:908.635285pt;}
.y5f_c00434{bottom:908.635947pt;}
.y4c_c00434{bottom:938.398987pt;}
.y4d_c00434{bottom:938.399157pt;}
.y4f_c00434{bottom:938.399189pt;}
.y4b_c00434{bottom:938.399243pt;}
.y52_c00434{bottom:938.399488pt;}
.y4e_c00434{bottom:938.399499pt;}
.y51_c00434{bottom:938.399531pt;}
.y4a_c00434{bottom:938.399595pt;}
.y50_c00434{bottom:938.399680pt;}
.y53_c00434{bottom:938.399925pt;}
.y48_c00434{bottom:938.399947pt;}
.y47_c00434{bottom:938.399989pt;}
.y49_c00434{bottom:938.400224pt;}
.y46_c00434{bottom:970.709109pt;}
.y45_c00434{bottom:971.181429pt;}
.y44_c00434{bottom:971.901451pt;}
.y43_c00434{bottom:972.441045pt;}
.y42_c00434{bottom:972.680917pt;}
.y41_c00434{bottom:973.157216pt;}
.y40_c00434{bottom:973.387669pt;}
.y3f_c00434{bottom:974.088427pt;}
.y3e_c00434{bottom:974.641333pt;}
.y4_c00434{bottom:1010.640000pt;}
.y3_c00434{bottom:1021.200000pt;}
.y3d_c00434{bottom:1037.550259pt;}
.y3c_c00434{bottom:1037.658179pt;}
.y3b_c00434{bottom:1037.766099pt;}
.y3a_c00434{bottom:1037.852504pt;}
.y39_c00434{bottom:1037.985041pt;}
.y38_c00434{bottom:1038.076908pt;}
.y37_c00434{bottom:1038.187948pt;}
.y36_c00434{bottom:1038.287841pt;}
.y35_c00434{bottom:1038.519371pt;}
.y34_c00434{bottom:1038.627620pt;}
.y33_c00434{bottom:1038.738660pt;}
.y32_c00434{bottom:1038.904224pt;}
.y31_c00434{bottom:1039.062385pt;}
.y30_c00434{bottom:1039.173425pt;}
.y2f_c00434{bottom:1039.281345pt;}
.y2e_c00434{bottom:1039.368305pt;}
.y2d_c00434{bottom:1039.497168pt;}
.y2c_c00434{bottom:1039.591981pt;}
.y2b_c00434{bottom:1039.719092pt;}
.y2a_c00434{bottom:1039.822781pt;}
.y29_c00434{bottom:1039.917768pt;}
.y28_c00434{bottom:1040.036817pt;}
.y20_c00434{bottom:1040.064527pt;}
.y27_c00434{bottom:1040.131804pt;}
.y1f_c00434{bottom:1040.195636pt;}
.y26_c00434{bottom:1040.361304pt;}
.y1e_c00434{bottom:1040.370945pt;}
.y25_c00434{bottom:1040.440237pt;}
.y24_c00434{bottom:1040.543823pt;}
.y1d_c00434{bottom:1040.629316pt;}
.y23_c00434{bottom:1040.678925pt;}
.y22_c00434{bottom:1040.781349pt;}
.y1c_c00434{bottom:1040.953813pt;}
.y21_c00434{bottom:1041.119393pt;}
.y1_c00434{bottom:1041.120000pt;}
.y1b_c00434{bottom:1041.138413pt;}
.y1a_c00434{bottom:1041.244476pt;}
.y19_c00434{bottom:1041.503401pt;}
.y18_c00434{bottom:1041.868129pt;}
.y17_c00434{bottom:1042.027232pt;}
.y16_c00434{bottom:1042.202056pt;}
.y15_c00434{bottom:1042.417284pt;}
.y14_c00434{bottom:1042.554599pt;}
.y13_c00434{bottom:1042.789101pt;}
.y12_c00434{bottom:1043.029324pt;}
.y11_c00434{bottom:1043.319103pt;}
.y10_c00434{bottom:1043.528160pt;}
.yf_c00434{bottom:1043.656392pt;}
.ye_c00434{bottom:1043.790223pt;}
.yd_c00434{bottom:1043.927537pt;}
.yc_c00434{bottom:1044.099415pt;}
.yb_c00434{bottom:1044.423617pt;}
.ya_c00434{bottom:1044.720000pt;}
.y9_c00434{bottom:1051.976000pt;}
.y8_c00434{bottom:1053.277333pt;}
.y7_c00434{bottom:1054.453333pt;}
.y6_c00434{bottom:1055.282667pt;}
.y2_c00434{bottom:1083.360000pt;}
.y5_c00434{bottom:1083.393333pt;}
.h14_c00434{height:16.000000pt;}
.h2_c00434{height:21.333333pt;}
.h6_c00434{height:21.335136pt;}
.h3_c00434{height:26.666667pt;}
.h4_c00434{height:48.000000pt;}
.hc_c00434{height:64.000000pt;}
.h8_c00434{height:64.002048pt;}
.hf_c00434{height:64.007200pt;}
.hb_c00434{height:69.333333pt;}
.h15_c00434{height:69.336141pt;}
.h12_c00434{height:69.341133pt;}
.h7_c00434{height:74.669056pt;}
.h10_c00434{height:74.675066pt;}
.hd_c00434{height:80.000000pt;}
.h9_c00434{height:80.002560pt;}
.he_c00434{height:80.008999pt;}
.h5_c00434{height:85.333333pt;}
.ha_c00434{height:85.336064pt;}
.h11_c00434{height:85.342933pt;}
.h13_c00434{height:90.676866pt;}
.h1_c00434{height:1112.000000pt;}
.h0_c00434{height:1112.133333pt;}
.w0_c00434{width:813.333333pt;}
.x0_c00434{left:0.000000pt;}
.x2_c00434{left:2.640000pt;}
.x1_c00434{left:5.520000pt;}
.x4_c00434{left:33.120000pt;}
.x3_c00434{left:34.320000pt;}
.x5_c00434{left:35.760000pt;}
.x6_c00434{left:37.920000pt;}
.xae_c00434{left:95.040000pt;}
.x89_c00434{left:96.380053pt;}
.x64_c00434{left:97.370667pt;}
.x3d_c00434{left:98.635904pt;}
.x96_c00434{left:116.036220pt;}
.x56_c00434{left:117.836715pt;}
.x50_c00434{left:126.875456pt;}
.x7a_c00434{left:135.741493pt;}
.x48_c00434{left:146.639520pt;}
.x81_c00434{left:154.905367pt;}
.x3e_c00434{left:156.478272pt;}
.x91_c00434{left:164.391087pt;}
.x7e_c00434{left:165.463293pt;}
.x57_c00434{left:166.798517pt;}
.x7b_c00434{left:174.813920pt;}
.x49_c00434{left:176.400096pt;}
.xad_c00434{left:184.320000pt;}
.x3f_c00434{left:185.278784pt;}
.x75_c00434{left:193.750667pt;}
.x38_c00434{left:195.264000pt;}
.x9a_c00434{left:202.912480pt;}
.x4a_c00434{left:205.200608pt;}
.x8a_c00434{left:213.257147pt;}
.x58_c00434{left:214.560245pt;}
.x82_c00434{left:223.242093pt;}
.x40_c00434{left:225.360011pt;}
.x6e_c00434{left:233.182667pt;}
.x74_c00434{left:242.772000pt;}
.x6a_c00434{left:244.226667pt;}
.x83_c00434{left:252.042953pt;}
.x9_c00434{left:253.233333pt;}
.xd_c00434{left:254.132000pt;}
.x9f_c00434{left:261.304233pt;}
.x87_c00434{left:262.429553pt;}
.x39_c00434{left:264.377333pt;}
.x9b_c00434{left:270.856953pt;}
.xa6_c00434{left:272.196833pt;}
.x6b_c00434{left:273.265333pt;}
.xe_c00434{left:276.930667pt;}
.x4b_c00434{left:282.482891pt;}
.x59_c00434{left:283.441984pt;}
.x22_c00434{left:284.853997pt;}
.x9c_c00434{left:290.777720pt;}
.x5d_c00434{left:292.080768pt;}
.x23_c00434{left:294.168907pt;}
.xf_c00434{left:301.869333pt;}
.x65_c00434{left:303.266667pt;}
.x24_c00434{left:306.407885pt;}
.x8b_c00434{left:310.964993pt;}
.x41_c00434{left:312.242901pt;}
.x4c_c00434{left:313.683552pt;}
.x10_c00434{left:315.090667pt;}
.x92_c00434{left:320.168793pt;}
.x7c_c00434{left:321.232520pt;}
.xa_c00434{left:322.346667pt;}
.x11_c00434{left:325.653333pt;}
.x7_c00434{left:328.800000pt;}
.xa9_c00434{left:329.966333pt;}
.x97_c00434{left:331.211440pt;}
.x12_c00434{left:335.948000pt;}
.xa0_c00434{left:339.785480pt;}
.x6f_c00434{left:340.949333pt;}
.x66_c00434{left:342.602667pt;}
.x25_c00434{left:343.846189pt;}
.x13_c00434{left:345.812000pt;}
.x9d_c00434{left:349.587880pt;}
.x51_c00434{left:351.016747pt;}
.x26_c00434{left:352.486415pt;}
.xac_c00434{left:358.827640pt;}
.xaf_c00434{left:360.160000pt;}
.x14_c00434{left:361.893333pt;}
.x27_c00434{left:363.285359pt;}
.x52_c00434{left:370.180288pt;}
.x28_c00434{left:371.925584pt;}
.x8c_c00434{left:379.856960pt;}
.x29_c00434{left:381.337827pt;}
.x15_c00434{left:384.184000pt;}
.xa7_c00434{left:389.031980pt;}
.x4d_c00434{left:390.485803pt;}
.x42_c00434{left:391.925333pt;}
.x2a_c00434{left:392.859455pt;}
.xb0_c00434{left:398.312000pt;}
.x60_c00434{left:399.360000pt;}
.x2b_c00434{left:401.486347pt;}
.x16_c00434{left:402.662667pt;}
.x98_c00434{left:408.305933pt;}
.x6c_c00434{left:409.586667pt;}
.x7f_c00434{left:410.539327pt;}
.x2c_c00434{left:413.245325pt;}
.x8d_c00434{left:418.724867pt;}
.xb_c00434{left:420.333333pt;}
.x84_c00434{left:429.189607pt;}
.x67_c00434{left:430.205333pt;}
.x17_c00434{left:431.264000pt;}
.xa1_c00434{left:438.210760pt;}
.x5e_c00434{left:439.684885pt;}
.x2d_c00434{left:441.086053pt;}
.x18_c00434{left:447.820000pt;}
.x93_c00434{left:449.063107pt;}
.x53_c00434{left:450.069035pt;}
.x2e_c00434{left:455.509101pt;}
.x19_c00434{left:461.268000pt;}
.x8f_c00434{left:467.834820pt;}
.x4e_c00434{left:469.448192pt;}
.x2f_c00434{left:470.604167pt;}
.x1a_c00434{left:473.506667pt;}
.x94_c00434{left:477.626860pt;}
.x70_c00434{left:479.426667pt;}
.x30_c00434{left:480.684427pt;}
.xaa_c00434{left:487.965900pt;}
.x43_c00434{left:488.888875pt;}
.x31_c00434{left:490.550020pt;}
.xa4_c00434{left:496.894260pt;}
.x8_c00434{left:498.000000pt;}
.x1b_c00434{left:501.562667pt;}
.x7d_c00434{left:507.468900pt;}
.x5f_c00434{left:508.806645pt;}
.x32_c00434{left:511.642575pt;}
.x68_c00434{left:517.573333pt;}
.x1c_c00434{left:521.480000pt;}
.x76_c00434{left:527.342667pt;}
.xc_c00434{left:528.809333pt;}
.x33_c00434{left:530.843077pt;}
.x99_c00434{left:536.214520pt;}
.x3a_c00434{left:537.749333pt;}
.x34_c00434{left:539.243303pt;}
.x1d_c00434{left:543.838667pt;}
.x5a_c00434{left:546.969515pt;}
.x44_c00434{left:547.931317pt;}
.x35_c00434{left:551.284948pt;}
.x77_c00434{left:556.150667pt;}
.x9e_c00434{left:557.723053pt;}
.x36_c00434{left:559.162489pt;}
.x54_c00434{left:567.495552pt;}
.x1e_c00434{left:568.800000pt;}
.x6d_c00434{left:576.393333pt;}
.x4f_c00434{left:577.931136pt;}
.x37_c00434{left:578.843009pt;}
.x95_c00434{left:585.879220pt;}
.x8e_c00434{left:587.000900pt;}
.x1f_c00434{left:588.674667pt;}
.x61_c00434{left:596.160000pt;}
.x45_c00434{left:597.373152pt;}
.x20_c00434{left:602.160000pt;}
.x78_c00434{left:606.276000pt;}
.x21_c00434{left:612.245333pt;}
.x71_c00434{left:615.981333pt;}
.x5b_c00434{left:617.051328pt;}
.x3b_c00434{left:627.752000pt;}
.x79_c00434{left:636.341333pt;}
.xa5_c00434{left:645.266260pt;}
.xa8_c00434{left:646.905573pt;}
.x90_c00434{left:655.608613pt;}
.xab_c00434{left:665.387253pt;}
.x46_c00434{left:666.734923pt;}
.x80_c00434{left:675.085853pt;}
.x62_c00434{left:676.080000pt;}
.x88_c00434{left:685.409953pt;}
.x3c_c00434{left:686.792000pt;}
.xa2_c00434{left:694.608027pt;}
.x72_c00434{left:695.700000pt;}
.x85_c00434{left:703.640513pt;}
.x5c_c00434{left:706.094357pt;}
.xa3_c00434{left:714.289353pt;}
.x55_c00434{left:715.789333pt;}
.x47_c00434{left:726.017387pt;}
.x86_c00434{left:735.006787pt;}
.x63_c00434{left:790.320000pt;}
.x69_c00434{left:806.246667pt;}
.x73_c00434{left:811.821333pt;}
}





/* 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_c00435 {
    display:none;
  }
  .loading-indicator_c00435.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00435 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_c00435 { 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_c00435" -> "#page-container .classname_c00435")
 */
.pf_c00435 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00435 { /* 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_c00435.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00435 { /* 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_c00435 { /* 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_c00435 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00435 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00435 {overflow:visible;}
  }
}
.c_c00435 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00435 { /* 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_c00435:after { /* webkit #35443 */
  content: '';
}
.t_c00435:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00435 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 */
}
.__c00435 { /* 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_c00435 { /* info for Javascript */
  display:none;
}
.l_c00435 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00435 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00435 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00435: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_c00435 {
    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_c00435.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00435.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_c00435 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00435{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00435;src:url('chunks/assets/font_fabf4b590f7fb32aea93ffb2.woff2')format("woff");}.ff1_c00435{font-family:ff1_c00435;line-height:1.000000;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;}
.m31_c00435{transform:matrix(0.009089,-0.000118,0.003250,0.249979,0,0);-ms-transform:matrix(0.009089,-0.000118,0.003250,0.249979,0,0);-webkit-transform:matrix(0.009089,-0.000118,0.003250,0.249979,0,0);}
.m8_c00435{transform:matrix(0.020615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.020615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.020615,0.000000,0.000000,0.250000,0,0);}
.m47_c00435{transform:matrix(0.035575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.035575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.035575,0.000000,0.000000,0.250000,0,0);}
.m4a_c00435{transform:matrix(0.085675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.085675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.085675,0.000000,0.000000,0.250000,0,0);}
.mc_c00435{transform:matrix(0.141090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141090,0.000000,0.000000,0.250000,0,0);}
.m4e_c00435{transform:matrix(0.166245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166245,0.000000,0.000000,0.250000,0,0);}
.m46_c00435{transform:matrix(0.167245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167245,0.000000,0.000000,0.250000,0,0);}
.m20_c00435{transform:matrix(0.178004,-0.001424,0.002000,0.249992,0,0);-ms-transform:matrix(0.178004,-0.001424,0.002000,0.249992,0,0);-webkit-transform:matrix(0.178004,-0.001424,0.002000,0.249992,0,0);}
.m10_c00435{transform:matrix(0.181969,-0.003093,0.004249,0.249964,0,0);-ms-transform:matrix(0.181969,-0.003093,0.004249,0.249964,0,0);-webkit-transform:matrix(0.181969,-0.003093,0.004249,0.249964,0,0);}
.m51_c00435{transform:matrix(0.182140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182140,0.000000,0.000000,0.250000,0,0);}
.m2d_c00435{transform:matrix(0.182695,-0.002375,0.003250,0.249979,0,0);-ms-transform:matrix(0.182695,-0.002375,0.003250,0.249979,0,0);-webkit-transform:matrix(0.182695,-0.002375,0.003250,0.249979,0,0);}
.m50_c00435{transform:matrix(0.184570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184570,0.000000,0.000000,0.250000,0,0);}
.m2f_c00435{transform:matrix(0.191649,-0.002491,0.003250,0.249979,0,0);-ms-transform:matrix(0.191649,-0.002491,0.003250,0.249979,0,0);-webkit-transform:matrix(0.191649,-0.002491,0.003250,0.249979,0,0);}
.m5_c00435{transform:matrix(0.192175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192175,0.000000,0.000000,0.250000,0,0);}
.m49_c00435{transform:matrix(0.193550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193550,0.000000,0.000000,0.250000,0,0);}
.m4_c00435{transform:matrix(0.195620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195620,0.000000,0.000000,0.250000,0,0);}
.m52_c00435{transform:matrix(0.197460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197460,0.000000,0.000000,0.250000,0,0);}
.m37_c00435{transform:matrix(0.204173,-0.002654,0.003250,0.249979,0,0);-ms-transform:matrix(0.204173,-0.002654,0.003250,0.249979,0,0);-webkit-transform:matrix(0.204173,-0.002654,0.003250,0.249979,0,0);}
.mf_c00435{transform:matrix(0.211030,-0.003588,0.004249,0.249964,0,0);-ms-transform:matrix(0.211030,-0.003588,0.004249,0.249964,0,0);-webkit-transform:matrix(0.211030,-0.003588,0.004249,0.249964,0,0);}
.m2e_c00435{transform:matrix(0.212992,-0.002769,0.003250,0.249979,0,0);-ms-transform:matrix(0.212992,-0.002769,0.003250,0.249979,0,0);-webkit-transform:matrix(0.212992,-0.002769,0.003250,0.249979,0,0);}
.m2_c00435{transform:matrix(0.214395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214395,0.000000,0.000000,0.250000,0,0);}
.m34_c00435{transform:matrix(0.214757,-0.002792,0.003250,0.249979,0,0);-ms-transform:matrix(0.214757,-0.002792,0.003250,0.249979,0,0);-webkit-transform:matrix(0.214757,-0.002792,0.003250,0.249979,0,0);}
.m4d_c00435{transform:matrix(0.215040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215040,0.000000,0.000000,0.250000,0,0);}
.m40_c00435{transform:matrix(0.221186,-0.002875,0.003250,0.249979,0,0);-ms-transform:matrix(0.221186,-0.002875,0.003250,0.249979,0,0);-webkit-transform:matrix(0.221186,-0.002875,0.003250,0.249979,0,0);}
.m30_c00435{transform:matrix(0.228521,-0.002971,0.003250,0.249979,0,0);-ms-transform:matrix(0.228521,-0.002971,0.003250,0.249979,0,0);-webkit-transform:matrix(0.228521,-0.002971,0.003250,0.249979,0,0);}
.m39_c00435{transform:matrix(0.231360,-0.003008,0.003250,0.249979,0,0);-ms-transform:matrix(0.231360,-0.003008,0.003250,0.249979,0,0);-webkit-transform:matrix(0.231360,-0.003008,0.003250,0.249979,0,0);}
.m19_c00435{transform:matrix(0.233091,-0.003963,0.004249,0.249964,0,0);-ms-transform:matrix(0.233091,-0.003963,0.004249,0.249964,0,0);-webkit-transform:matrix(0.233091,-0.003963,0.004249,0.249964,0,0);}
.m14_c00435{transform:matrix(0.233581,-0.003971,0.004249,0.249964,0,0);-ms-transform:matrix(0.233581,-0.003971,0.004249,0.249964,0,0);-webkit-transform:matrix(0.233581,-0.003971,0.004249,0.249964,0,0);}
.m17_c00435{transform:matrix(0.235821,-0.004009,0.004249,0.249964,0,0);-ms-transform:matrix(0.235821,-0.004009,0.004249,0.249964,0,0);-webkit-transform:matrix(0.235821,-0.004009,0.004249,0.249964,0,0);}
.m2c_c00435{transform:matrix(0.242480,-0.003152,0.003250,0.249979,0,0);-ms-transform:matrix(0.242480,-0.003152,0.003250,0.249979,0,0);-webkit-transform:matrix(0.242480,-0.003152,0.003250,0.249979,0,0);}
.m1c_c00435{transform:matrix(0.243502,-0.001948,0.002000,0.249992,0,0);-ms-transform:matrix(0.243502,-0.001948,0.002000,0.249992,0,0);-webkit-transform:matrix(0.243502,-0.001948,0.002000,0.249992,0,0);}
.m11_c00435{transform:matrix(0.245665,-0.004176,0.004249,0.249964,0,0);-ms-transform:matrix(0.245665,-0.004176,0.004249,0.249964,0,0);-webkit-transform:matrix(0.245665,-0.004176,0.004249,0.249964,0,0);}
.m35_c00435{transform:matrix(0.245959,-0.003197,0.003250,0.249979,0,0);-ms-transform:matrix(0.245959,-0.003197,0.003250,0.249979,0,0);-webkit-transform:matrix(0.245959,-0.003197,0.003250,0.249979,0,0);}
.m41_c00435{transform:matrix(0.255913,-0.003327,0.003250,0.249979,0,0);-ms-transform:matrix(0.255913,-0.003327,0.003250,0.249979,0,0);-webkit-transform:matrix(0.255913,-0.003327,0.003250,0.249979,0,0);}
.m1f_c00435{transform:matrix(0.258522,-0.002068,0.002000,0.249992,0,0);-ms-transform:matrix(0.258522,-0.002068,0.002000,0.249992,0,0);-webkit-transform:matrix(0.258522,-0.002068,0.002000,0.249992,0,0);}
.m23_c00435{transform:matrix(0.258808,-0.003365,0.003250,0.249979,0,0);-ms-transform:matrix(0.258808,-0.003365,0.003250,0.249979,0,0);-webkit-transform:matrix(0.258808,-0.003365,0.003250,0.249979,0,0);}
.m36_c00435{transform:matrix(0.258843,-0.003365,0.003250,0.249979,0,0);-ms-transform:matrix(0.258843,-0.003365,0.003250,0.249979,0,0);-webkit-transform:matrix(0.258843,-0.003365,0.003250,0.249979,0,0);}
.m29_c00435{transform:matrix(0.262063,-0.003407,0.003250,0.249979,0,0);-ms-transform:matrix(0.262063,-0.003407,0.003250,0.249979,0,0);-webkit-transform:matrix(0.262063,-0.003407,0.003250,0.249979,0,0);}
.m12_c00435{transform:matrix(0.262567,-0.004464,0.004249,0.249964,0,0);-ms-transform:matrix(0.262567,-0.004464,0.004249,0.249964,0,0);-webkit-transform:matrix(0.262567,-0.004464,0.004249,0.249964,0,0);}
.m3f_c00435{transform:matrix(0.262598,-0.003414,0.003250,0.249979,0,0);-ms-transform:matrix(0.262598,-0.003414,0.003250,0.249979,0,0);-webkit-transform:matrix(0.262598,-0.003414,0.003250,0.249979,0,0);}
.m22_c00435{transform:matrix(0.264308,-0.003436,0.003250,0.249979,0,0);-ms-transform:matrix(0.264308,-0.003436,0.003250,0.249979,0,0);-webkit-transform:matrix(0.264308,-0.003436,0.003250,0.249979,0,0);}
.m1_c00435{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m25_c00435{transform:matrix(0.267607,-0.003479,0.003250,0.249979,0,0);-ms-transform:matrix(0.267607,-0.003479,0.003250,0.249979,0,0);-webkit-transform:matrix(0.267607,-0.003479,0.003250,0.249979,0,0);}
.m28_c00435{transform:matrix(0.271587,-0.003531,0.003250,0.249979,0,0);-ms-transform:matrix(0.271587,-0.003531,0.003250,0.249979,0,0);-webkit-transform:matrix(0.271587,-0.003531,0.003250,0.249979,0,0);}
.m18_c00435{transform:matrix(0.272191,-0.004627,0.004249,0.249964,0,0);-ms-transform:matrix(0.272191,-0.004627,0.004249,0.249964,0,0);-webkit-transform:matrix(0.272191,-0.004627,0.004249,0.249964,0,0);}
.m1a_c00435{transform:matrix(0.277390,-0.004716,0.004249,0.249964,0,0);-ms-transform:matrix(0.277390,-0.004716,0.004249,0.249964,0,0);-webkit-transform:matrix(0.277390,-0.004716,0.004249,0.249964,0,0);}
.m2b_c00435{transform:matrix(0.278002,-0.003614,0.003250,0.249979,0,0);-ms-transform:matrix(0.278002,-0.003614,0.003250,0.249979,0,0);-webkit-transform:matrix(0.278002,-0.003614,0.003250,0.249979,0,0);}
.m3e_c00435{transform:matrix(0.279746,-0.003637,0.003250,0.249979,0,0);-ms-transform:matrix(0.279746,-0.003637,0.003250,0.249979,0,0);-webkit-transform:matrix(0.279746,-0.003637,0.003250,0.249979,0,0);}
.m13_c00435{transform:matrix(0.282494,-0.004802,0.004249,0.249964,0,0);-ms-transform:matrix(0.282494,-0.004802,0.004249,0.249964,0,0);-webkit-transform:matrix(0.282494,-0.004802,0.004249,0.249964,0,0);}
.m3d_c00435{transform:matrix(0.283416,-0.003684,0.003250,0.249979,0,0);-ms-transform:matrix(0.283416,-0.003684,0.003250,0.249979,0,0);-webkit-transform:matrix(0.283416,-0.003684,0.003250,0.249979,0,0);}
.m27_c00435{transform:matrix(0.294105,-0.003823,0.003250,0.249979,0,0);-ms-transform:matrix(0.294105,-0.003823,0.003250,0.249979,0,0);-webkit-transform:matrix(0.294105,-0.003823,0.003250,0.249979,0,0);}
.m26_c00435{transform:matrix(0.303749,-0.003949,0.003250,0.249979,0,0);-ms-transform:matrix(0.303749,-0.003949,0.003250,0.249979,0,0);-webkit-transform:matrix(0.303749,-0.003949,0.003250,0.249979,0,0);}
.m4b_c00435{transform:matrix(0.307030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307030,0.000000,0.000000,0.250000,0,0);}
.m24_c00435{transform:matrix(0.308129,-0.004006,0.003250,0.249979,0,0);-ms-transform:matrix(0.308129,-0.004006,0.003250,0.249979,0,0);-webkit-transform:matrix(0.308129,-0.004006,0.003250,0.249979,0,0);}
.m45_c00435{transform:matrix(0.321228,-0.004176,0.003250,0.249979,0,0);-ms-transform:matrix(0.321228,-0.004176,0.003250,0.249979,0,0);-webkit-transform:matrix(0.321228,-0.004176,0.003250,0.249979,0,0);}
.m21_c00435{transform:matrix(0.323258,-0.004202,0.003250,0.249979,0,0);-ms-transform:matrix(0.323258,-0.004202,0.003250,0.249979,0,0);-webkit-transform:matrix(0.323258,-0.004202,0.003250,0.249979,0,0);}
.m4f_c00435{transform:matrix(0.338400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338400,0.000000,0.000000,0.250000,0,0);}
.m33_c00435{transform:matrix(0.340056,-0.004421,0.003250,0.249979,0,0);-ms-transform:matrix(0.340056,-0.004421,0.003250,0.249979,0,0);-webkit-transform:matrix(0.340056,-0.004421,0.003250,0.249979,0,0);}
.m16_c00435{transform:matrix(0.354734,-0.006030,0.004249,0.249964,0,0);-ms-transform:matrix(0.354734,-0.006030,0.004249,0.249964,0,0);-webkit-transform:matrix(0.354734,-0.006030,0.004249,0.249964,0,0);}
.m53_c00435{transform:matrix(0.359535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359535,0.000000,0.000000,0.250000,0,0);}
.m43_c00435{transform:matrix(0.359875,-0.004678,0.003250,0.249979,0,0);-ms-transform:matrix(0.359875,-0.004678,0.003250,0.249979,0,0);-webkit-transform:matrix(0.359875,-0.004678,0.003250,0.249979,0,0);}
.m42_c00435{transform:matrix(0.362284,-0.004710,0.003250,0.249979,0,0);-ms-transform:matrix(0.362284,-0.004710,0.003250,0.249979,0,0);-webkit-transform:matrix(0.362284,-0.004710,0.003250,0.249979,0,0);}
.m44_c00435{transform:matrix(0.372144,-0.004838,0.003250,0.249979,0,0);-ms-transform:matrix(0.372144,-0.004838,0.003250,0.249979,0,0);-webkit-transform:matrix(0.372144,-0.004838,0.003250,0.249979,0,0);}
.m38_c00435{transform:matrix(0.378748,-0.004924,0.003250,0.249979,0,0);-ms-transform:matrix(0.378748,-0.004924,0.003250,0.249979,0,0);-webkit-transform:matrix(0.378748,-0.004924,0.003250,0.249979,0,0);}
.m3c_c00435{transform:matrix(0.381848,-0.004964,0.003250,0.249979,0,0);-ms-transform:matrix(0.381848,-0.004964,0.003250,0.249979,0,0);-webkit-transform:matrix(0.381848,-0.004964,0.003250,0.249979,0,0);}
.m15_c00435{transform:matrix(0.403752,-0.006864,0.004249,0.249964,0,0);-ms-transform:matrix(0.403752,-0.006864,0.004249,0.249964,0,0);-webkit-transform:matrix(0.403752,-0.006864,0.004249,0.249964,0,0);}
.md_c00435{transform:matrix(0.430913,-0.007326,0.004249,0.249964,0,0);-ms-transform:matrix(0.430913,-0.007326,0.004249,0.249964,0,0);-webkit-transform:matrix(0.430913,-0.007326,0.004249,0.249964,0,0);}
.me_c00435{transform:matrix(0.463653,-0.007882,0.004249,0.249964,0,0);-ms-transform:matrix(0.463653,-0.007882,0.004249,0.249964,0,0);-webkit-transform:matrix(0.463653,-0.007882,0.004249,0.249964,0,0);}
.m1d_c00435{transform:matrix(0.489279,-0.003914,0.002000,0.249992,0,0);-ms-transform:matrix(0.489279,-0.003914,0.002000,0.249992,0,0);-webkit-transform:matrix(0.489279,-0.003914,0.002000,0.249992,0,0);}
.m2a_c00435{transform:matrix(0.495623,-0.006443,0.003250,0.249979,0,0);-ms-transform:matrix(0.495623,-0.006443,0.003250,0.249979,0,0);-webkit-transform:matrix(0.495623,-0.006443,0.003250,0.249979,0,0);}
.m7_c00435{transform:matrix(0.548130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548130,0.000000,0.000000,0.250000,0,0);}
.m6_c00435{transform:matrix(0.568000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568000,0.000000,0.000000,0.250000,0,0);}
.m3_c00435{transform:matrix(0.572810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572810,0.000000,0.000000,0.250000,0,0);}
.m3b_c00435{transform:matrix(0.831050,-0.010804,0.003250,0.249979,0,0);-ms-transform:matrix(0.831050,-0.010804,0.003250,0.249979,0,0);-webkit-transform:matrix(0.831050,-0.010804,0.003250,0.249979,0,0);}
.m1b_c00435{transform:matrix(0.861992,-0.006896,0.002000,0.249992,0,0);-ms-transform:matrix(0.861992,-0.006896,0.002000,0.249992,0,0);-webkit-transform:matrix(0.861992,-0.006896,0.002000,0.249992,0,0);}
.m0_c00435{transform:matrix(0.907165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.907165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.907165,0.000000,0.000000,0.250000,0,0);}
.m48_c00435{transform:matrix(0.938135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.938135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.938135,0.000000,0.000000,0.250000,0,0);}
.m1e_c00435{transform:matrix(0.972684,-0.007781,0.002000,0.249992,0,0);-ms-transform:matrix(0.972684,-0.007781,0.002000,0.249992,0,0);-webkit-transform:matrix(0.972684,-0.007781,0.002000,0.249992,0,0);}
.ma_c00435{transform:matrix(0.972930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.972930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.972930,0.000000,0.000000,0.250000,0,0);}
.m32_c00435{transform:matrix(1.020459,-0.013266,0.003250,0.249979,0,0);-ms-transform:matrix(1.020459,-0.013266,0.003250,0.249979,0,0);-webkit-transform:matrix(1.020459,-0.013266,0.003250,0.249979,0,0);}
.mb_c00435{transform:matrix(1.253845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.253845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.253845,0.000000,0.000000,0.250000,0,0);}
.m3a_c00435{transform:matrix(1.256284,-0.016332,0.003250,0.249979,0,0);-ms-transform:matrix(1.256284,-0.016332,0.003250,0.249979,0,0);-webkit-transform:matrix(1.256284,-0.016332,0.003250,0.249979,0,0);}
.m4c_c00435{transform:matrix(1.258405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.258405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.258405,0.000000,0.000000,0.250000,0,0);}
.m9_c00435{transform:matrix(1.790405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.790405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.790405,0.000000,0.000000,0.250000,0,0);}
.v0_c00435{vertical-align:0.000000px;}
.ls0_c00435{letter-spacing:0.000000px;}
.sc__c00435{text-shadow:none;}
.sc0_c00435{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__c00435{-webkit-text-stroke:0px transparent;}
.sc0_c00435{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00435{word-spacing:0.000000px;}
.fc0_c00435{color:transparent;}
.fs9_c00435{font-size:18.000000px;}
.fs8_c00435{font-size:24.000000px;}
.fs1_c00435{font-size:54.000000px;}
.fs7_c00435{font-size:72.006084px;}
.fs5_c00435{font-size:78.006591px;}
.fs6_c00435{font-size:84.007098px;}
.fs3_c00435{font-size:84.012137px;}
.fs4_c00435{font-size:90.002880px;}
.fs0_c00435{font-size:102.000000px;}
.fs2_c00435{font-size:102.014738px;}
.fsa_c00435{font-size:114.000000px;}
.y0_c00435{bottom:0.000000px;}
.y3f_c00435{bottom:822.960000px;}
.y3e_c00435{bottom:837.540000px;}
.y3d_c00435{bottom:842.530500px;}
.y31_c00435{bottom:853.131870px;}
.y3c_c00435{bottom:853.200000px;}
.y32_c00435{bottom:854.220038px;}
.y33_c00435{bottom:854.932806px;}
.y34_c00435{bottom:856.779239px;}
.y35_c00435{bottom:859.154502px;}
.y36_c00435{bottom:860.071442px;}
.y37_c00435{bottom:860.713274px;}
.y38_c00435{bottom:861.150311px;}
.y39_c00435{bottom:862.908752px;}
.y3a_c00435{bottom:864.314190px;}
.y3b_c00435{bottom:865.342553px;}
.y28_c00435{bottom:889.728177px;}
.y29_c00435{bottom:891.396579px;}
.y2a_c00435{bottom:893.410946px;}
.y2b_c00435{bottom:895.807749px;}
.y2c_c00435{bottom:897.362973px;}
.y2d_c00435{bottom:898.712563px;}
.y2e_c00435{bottom:899.273538px;}
.y2f_c00435{bottom:900.233889px;}
.y30_c00435{bottom:900.250126px;}
.y20_c00435{bottom:926.629058px;}
.y21_c00435{bottom:927.312773px;}
.y22_c00435{bottom:928.978787px;}
.y23_c00435{bottom:930.140384px;}
.y24_c00435{bottom:930.962336px;}
.y25_c00435{bottom:932.293365px;}
.y26_c00435{bottom:932.841827px;}
.y27_c00435{bottom:935.089214px;}
.y17_c00435{bottom:961.627500px;}
.y18_c00435{bottom:962.165583px;}
.y19_c00435{bottom:963.434955px;}
.y1a_c00435{bottom:963.872398px;}
.y1b_c00435{bottom:964.144287px;}
.y1c_c00435{bottom:965.598071px;}
.y1d_c00435{bottom:966.765652px;}
.y1e_c00435{bottom:967.048207px;}
.y1f_c00435{bottom:967.647677px;}
.y11_c00435{bottom:1001.038500px;}
.y12_c00435{bottom:1001.596632px;}
.y13_c00435{bottom:1001.894100px;}
.y14_c00435{bottom:1002.574272px;}
.y15_c00435{bottom:1003.288068px;}
.y16_c00435{bottom:1004.000220px;}
.yf_c00435{bottom:1042.004049px;}
.yd_c00435{bottom:1042.004176px;}
.y10_c00435{bottom:1042.004397px;}
.ye_c00435{bottom:1042.004760px;}
.y3_c00435{bottom:1066.282500px;}
.y4_c00435{bottom:1067.469270px;}
.y5_c00435{bottom:1068.617764px;}
.y6_c00435{bottom:1070.388867px;}
.y7_c00435{bottom:1071.661138px;}
.y8_c00435{bottom:1072.231777px;}
.y9_c00435{bottom:1073.415207px;}
.ya_c00435{bottom:1073.902231px;}
.yb_c00435{bottom:1074.616308px;}
.yc_c00435{bottom:1075.664307px;}
.y2_c00435{bottom:1150.200000px;}
.y1_c00435{bottom:1165.632000px;}
.hb_c00435{height:18.000000px;}
.ha_c00435{height:24.000000px;}
.h3_c00435{height:54.000000px;}
.h9_c00435{height:72.006084px;}
.h7_c00435{height:78.006591px;}
.h8_c00435{height:84.007098px;}
.h5_c00435{height:84.012137px;}
.h6_c00435{height:90.002880px;}
.h2_c00435{height:102.000000px;}
.h4_c00435{height:102.014738px;}
.hc_c00435{height:114.000000px;}
.h1_c00435{height:1251.000000px;}
.h0_c00435{height:1251.150000px;}
.w0_c00435{width:915.000000px;}
.x0_c00435{left:0.000000px;}
.x46_c00435{left:28.620000px;}
.x2f_c00435{left:34.595813px;}
.x47_c00435{left:45.900000px;}
.xc_c00435{left:60.736500px;}
.x1_c00435{left:74.250000px;}
.x1f_c00435{left:98.043000px;}
.x28_c00435{left:105.472772px;}
.x7_c00435{left:110.970000px;}
.x37_c00435{left:114.329313px;}
.x30_c00435{left:118.042227px;}
.xd_c00435{left:130.546500px;}
.x20_c00435{left:139.434000px;}
.x38_c00435{left:150.000576px;}
.x8_c00435{left:169.830000px;}
.x9_c00435{left:188.730000px;}
.xe_c00435{left:198.105000px;}
.x2_c00435{left:204.390000px;}
.x29_c00435{left:216.547886px;}
.x31_c00435{left:218.753562px;}
.x21_c00435{left:237.078000px;}
.x48_c00435{left:240.570000px;}
.x39_c00435{left:242.294671px;}
.x3_c00435{left:248.940000px;}
.x1a_c00435{left:258.013500px;}
.x22_c00435{left:270.727500px;}
.x49_c00435{left:272.970000px;}
.x23_c00435{left:291.642000px;}
.x2a_c00435{left:294.014877px;}
.x1b_c00435{left:295.197000px;}
.xf_c00435{left:302.287500px;}
.x4a_c00435{left:331.560000px;}
.x4_c00435{left:335.610000px;}
.x32_c00435{left:338.612162px;}
.x2b_c00435{left:348.817453px;}
.x3a_c00435{left:361.073368px;}
.x10_c00435{left:377.127000px;}
.x1c_c00435{left:380.218500px;}
.xa_c00435{left:382.590000px;}
.x24_c00435{left:403.471500px;}
.x3b_c00435{left:406.910695px;}
.x11_c00435{left:410.694000px;}
.x33_c00435{left:416.353083px;}
.x4b_c00435{left:427.140000px;}
.x5_c00435{left:436.050000px;}
.x2c_c00435{left:437.586652px;}
.x3c_c00435{left:438.971770px;}
.x3d_c00435{left:460.818782px;}
.x1d_c00435{left:469.443000px;}
.x2d_c00435{left:474.121197px;}
.x12_c00435{left:480.307500px;}
.x34_c00435{left:483.815441px;}
.x25_c00435{left:493.285500px;}
.x4c_c00435{left:496.800000px;}
.x13_c00435{left:508.956000px;}
.x35_c00435{left:511.849386px;}
.x26_c00435{left:515.020500px;}
.x6_c00435{left:545.400000px;}
.x3e_c00435{left:548.767787px;}
.x14_c00435{left:550.960500px;}
.x1e_c00435{left:558.462000px;}
.x36_c00435{left:559.872018px;}
.x27_c00435{left:561.133500px;}
.x4d_c00435{left:569.970000px;}
.x16_c00435{left:604.610747px;}
.x15_c00435{left:612.607500px;}
.x4e_c00435{left:613.710000px;}
.x3f_c00435{left:619.025891px;}
.x2e_c00435{left:623.916297px;}
.x17_c00435{left:638.095911px;}
.x18_c00435{left:658.618853px;}
.x40_c00435{left:670.433711px;}
.x44_c00435{left:674.190000px;}
.x45_c00435{left:685.800000px;}
.xb_c00435{left:690.120000px;}
.x43_c00435{left:693.900000px;}
.x41_c00435{left:697.680000px;}
.x19_c00435{left:700.474940px;}
.x42_c00435{left:734.940000px;}
@media print{
.v0_c00435{vertical-align:0.000000pt;}
.ls0_c00435{letter-spacing:0.000000pt;}
.ws0_c00435{word-spacing:0.000000pt;}
.fs9_c00435{font-size:16.000000pt;}
.fs8_c00435{font-size:21.333333pt;}
.fs1_c00435{font-size:48.000000pt;}
.fs7_c00435{font-size:64.005408pt;}
.fs5_c00435{font-size:69.339192pt;}
.fs6_c00435{font-size:74.672976pt;}
.fs3_c00435{font-size:74.677455pt;}
.fs4_c00435{font-size:80.002560pt;}
.fs0_c00435{font-size:90.666667pt;}
.fs2_c00435{font-size:90.679767pt;}
.fsa_c00435{font-size:101.333333pt;}
.y0_c00435{bottom:0.000000pt;}
.y3f_c00435{bottom:731.520000pt;}
.y3e_c00435{bottom:744.480000pt;}
.y3d_c00435{bottom:748.916000pt;}
.y31_c00435{bottom:758.339440pt;}
.y3c_c00435{bottom:758.400000pt;}
.y32_c00435{bottom:759.306700pt;}
.y33_c00435{bottom:759.940272pt;}
.y34_c00435{bottom:761.581545pt;}
.y35_c00435{bottom:763.692891pt;}
.y36_c00435{bottom:764.507948pt;}
.y37_c00435{bottom:765.078465pt;}
.y38_c00435{bottom:765.466943pt;}
.y39_c00435{bottom:767.030001pt;}
.y3a_c00435{bottom:768.279280pt;}
.y3b_c00435{bottom:769.193380pt;}
.y28_c00435{bottom:790.869491pt;}
.y29_c00435{bottom:792.352515pt;}
.y2a_c00435{bottom:794.143063pt;}
.y2b_c00435{bottom:796.273555pt;}
.y2c_c00435{bottom:797.655976pt;}
.y2d_c00435{bottom:798.855612pt;}
.y2e_c00435{bottom:799.354256pt;}
.y2f_c00435{bottom:800.207901pt;}
.y30_c00435{bottom:800.222335pt;}
.y20_c00435{bottom:823.670273pt;}
.y21_c00435{bottom:824.278020pt;}
.y22_c00435{bottom:825.758921pt;}
.y23_c00435{bottom:826.791452pt;}
.y24_c00435{bottom:827.522076pt;}
.y25_c00435{bottom:828.705213pt;}
.y26_c00435{bottom:829.192735pt;}
.y27_c00435{bottom:831.190412pt;}
.y17_c00435{bottom:854.780000pt;}
.y18_c00435{bottom:855.258296pt;}
.y19_c00435{bottom:856.386627pt;}
.y1a_c00435{bottom:856.775465pt;}
.y1b_c00435{bottom:857.017144pt;}
.y1c_c00435{bottom:858.309396pt;}
.y1d_c00435{bottom:859.347247pt;}
.y1e_c00435{bottom:859.598407pt;}
.y1f_c00435{bottom:860.131268pt;}
.y11_c00435{bottom:889.812000pt;}
.y12_c00435{bottom:890.308117pt;}
.y13_c00435{bottom:890.572533pt;}
.y14_c00435{bottom:891.177131pt;}
.y15_c00435{bottom:891.811616pt;}
.y16_c00435{bottom:892.444640pt;}
.yf_c00435{bottom:926.225821pt;}
.yd_c00435{bottom:926.225935pt;}
.y10_c00435{bottom:926.226131pt;}
.ye_c00435{bottom:926.226453pt;}
.y3_c00435{bottom:947.806667pt;}
.y4_c00435{bottom:948.861573pt;}
.y5_c00435{bottom:949.882457pt;}
.y6_c00435{bottom:951.456771pt;}
.y7_c00435{bottom:952.587679pt;}
.y8_c00435{bottom:953.094913pt;}
.y9_c00435{bottom:954.146851pt;}
.ya_c00435{bottom:954.579761pt;}
.yb_c00435{bottom:955.214496pt;}
.yc_c00435{bottom:956.146051pt;}
.y2_c00435{bottom:1022.400000pt;}
.y1_c00435{bottom:1036.117333pt;}
.hb_c00435{height:16.000000pt;}
.ha_c00435{height:21.333333pt;}
.h3_c00435{height:48.000000pt;}
.h9_c00435{height:64.005408pt;}
.h7_c00435{height:69.339192pt;}
.h8_c00435{height:74.672976pt;}
.h5_c00435{height:74.677455pt;}
.h6_c00435{height:80.002560pt;}
.h2_c00435{height:90.666667pt;}
.h4_c00435{height:90.679767pt;}
.hc_c00435{height:101.333333pt;}
.h1_c00435{height:1112.000000pt;}
.h0_c00435{height:1112.133333pt;}
.w0_c00435{width:813.333333pt;}
.x0_c00435{left:0.000000pt;}
.x46_c00435{left:25.440000pt;}
.x2f_c00435{left:30.751833pt;}
.x47_c00435{left:40.800000pt;}
.xc_c00435{left:53.988000pt;}
.x1_c00435{left:66.000000pt;}
.x1f_c00435{left:87.149333pt;}
.x28_c00435{left:93.753575pt;}
.x7_c00435{left:98.640000pt;}
.x37_c00435{left:101.626056pt;}
.x30_c00435{left:104.926424pt;}
.xd_c00435{left:116.041333pt;}
.x20_c00435{left:123.941333pt;}
.x38_c00435{left:133.333845pt;}
.x8_c00435{left:150.960000pt;}
.x9_c00435{left:167.760000pt;}
.xe_c00435{left:176.093333pt;}
.x2_c00435{left:181.680000pt;}
.x29_c00435{left:192.487009pt;}
.x31_c00435{left:194.447611pt;}
.x21_c00435{left:210.736000pt;}
.x48_c00435{left:213.840000pt;}
.x39_c00435{left:215.373041pt;}
.x3_c00435{left:221.280000pt;}
.x1a_c00435{left:229.345333pt;}
.x22_c00435{left:240.646667pt;}
.x49_c00435{left:242.640000pt;}
.x23_c00435{left:259.237333pt;}
.x2a_c00435{left:261.346557pt;}
.x1b_c00435{left:262.397333pt;}
.xf_c00435{left:268.700000pt;}
.x4a_c00435{left:294.720000pt;}
.x4_c00435{left:298.320000pt;}
.x32_c00435{left:300.988588pt;}
.x2b_c00435{left:310.059959pt;}
.x3a_c00435{left:320.954105pt;}
.x10_c00435{left:335.224000pt;}
.x1c_c00435{left:337.972000pt;}
.xa_c00435{left:340.080000pt;}
.x24_c00435{left:358.641333pt;}
.x3b_c00435{left:361.698396pt;}
.x11_c00435{left:365.061333pt;}
.x33_c00435{left:370.091629pt;}
.x4b_c00435{left:379.680000pt;}
.x5_c00435{left:387.600000pt;}
.x2c_c00435{left:388.965913pt;}
.x3c_c00435{left:390.197129pt;}
.x3d_c00435{left:409.616695pt;}
.x1d_c00435{left:417.282667pt;}
.x2d_c00435{left:421.441064pt;}
.x12_c00435{left:426.940000pt;}
.x34_c00435{left:430.058169pt;}
.x25_c00435{left:438.476000pt;}
.x4c_c00435{left:441.600000pt;}
.x13_c00435{left:452.405333pt;}
.x35_c00435{left:454.977232pt;}
.x26_c00435{left:457.796000pt;}
.x6_c00435{left:484.800000pt;}
.x3e_c00435{left:487.793588pt;}
.x14_c00435{left:489.742667pt;}
.x1e_c00435{left:496.410667pt;}
.x36_c00435{left:497.664016pt;}
.x27_c00435{left:498.785333pt;}
.x4d_c00435{left:506.640000pt;}
.x16_c00435{left:537.431775pt;}
.x15_c00435{left:544.540000pt;}
.x4e_c00435{left:545.520000pt;}
.x3f_c00435{left:550.245236pt;}
.x2e_c00435{left:554.592264pt;}
.x17_c00435{left:567.196365pt;}
.x18_c00435{left:585.438980pt;}
.x40_c00435{left:595.941076pt;}
.x44_c00435{left:599.280000pt;}
.x45_c00435{left:609.600000pt;}
.xb_c00435{left:613.440000pt;}
.x43_c00435{left:616.800000pt;}
.x41_c00435{left:620.160000pt;}
.x19_c00435{left:622.644391pt;}
.x42_c00435{left:653.280000pt;}
}





/* 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_c00436 {
    display:none;
  }
  .loading-indicator_c00436.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00436 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_c00436 { 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_c00436" -> "#page-container .classname_c00436")
 */
.pf_c00436 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00436 { /* 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_c00436.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00436 { /* 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_c00436 { /* 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_c00436 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00436 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00436 {overflow:visible;}
  }
}
.c_c00436 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00436 { /* 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_c00436:after { /* webkit #35443 */
  content: '';
}
.t_c00436:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00436 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 */
}
.__c00436 { /* 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_c00436 { /* info for Javascript */
  display:none;
}
.l_c00436 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00436 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00436 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00436: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_c00436 {
    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_c00436.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00436.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_c00436 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00436{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00436;src:url('chunks/assets/font_cfe63ee56e9e10a97d33a3db.woff2')format("woff");}.ff1_c00436{font-family:ff1_c00436;line-height:1.000000;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;}
.me9_c00436{transform:matrix(0.034571,0.000519,-0.003750,0.249972,0,0);-ms-transform:matrix(0.034571,0.000519,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.034571,0.000519,-0.003750,0.249972,0,0);}
.m67_c00436{transform:matrix(0.067080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.067080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.067080,0.000000,0.000000,0.250000,0,0);}
.m105_c00436{transform:matrix(0.110848,0.001663,-0.003750,0.249972,0,0);-ms-transform:matrix(0.110848,0.001663,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.110848,0.001663,-0.003750,0.249972,0,0);}
.m12f_c00436{transform:matrix(0.129240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129240,0.000000,0.000000,0.250000,0,0);}
.m129_c00436{transform:matrix(0.144515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144515,0.000000,0.000000,0.250000,0,0);}
.m12a_c00436{transform:matrix(0.148975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148975,0.000000,0.000000,0.250000,0,0);}
.mff_c00436{transform:matrix(0.153468,0.002302,-0.003750,0.249972,0,0);-ms-transform:matrix(0.153468,0.002302,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.153468,0.002302,-0.003750,0.249972,0,0);}
.mfe_c00436{transform:matrix(0.158582,0.002379,-0.003750,0.249972,0,0);-ms-transform:matrix(0.158582,0.002379,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.158582,0.002379,-0.003750,0.249972,0,0);}
.m11f_c00436{transform:matrix(0.164755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164755,0.000000,0.000000,0.250000,0,0);}
.m120_c00436{transform:matrix(0.165110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165110,0.000000,0.000000,0.250000,0,0);}
.m108_c00436{transform:matrix(0.165316,0.002480,-0.003750,0.249972,0,0);-ms-transform:matrix(0.165316,0.002480,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.165316,0.002480,-0.003750,0.249972,0,0);}
.m68_c00436{transform:matrix(0.165431,0.001158,-0.001750,0.249994,0,0);-ms-transform:matrix(0.165431,0.001158,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.165431,0.001158,-0.001750,0.249994,0,0);}
.m128_c00436{transform:matrix(0.165900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165900,0.000000,0.000000,0.250000,0,0);}
.m6f_c00436{transform:matrix(0.169381,0.001186,-0.001750,0.249994,0,0);-ms-transform:matrix(0.169381,0.001186,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.169381,0.001186,-0.001750,0.249994,0,0);}
.mb7_c00436{transform:matrix(0.171151,0.002567,-0.003750,0.249972,0,0);-ms-transform:matrix(0.171151,0.002567,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.171151,0.002567,-0.003750,0.249972,0,0);}
.m106_c00436{transform:matrix(0.171336,0.002570,-0.003750,0.249972,0,0);-ms-transform:matrix(0.171336,0.002570,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.171336,0.002570,-0.003750,0.249972,0,0);}
.me_c00436{transform:matrix(0.171941,0.001204,-0.001750,0.249994,0,0);-ms-transform:matrix(0.171941,0.001204,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.171941,0.001204,-0.001750,0.249994,0,0);}
.m102_c00436{transform:matrix(0.172336,0.002585,-0.003750,0.249972,0,0);-ms-transform:matrix(0.172336,0.002585,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.172336,0.002585,-0.003750,0.249972,0,0);}
.m131_c00436{transform:matrix(0.175840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175840,0.000000,0.000000,0.250000,0,0);}
.m118_c00436{transform:matrix(0.177340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177340,0.000000,0.000000,0.250000,0,0);}
.m36_c00436{transform:matrix(0.178611,0.001250,-0.001750,0.249994,0,0);-ms-transform:matrix(0.178611,0.001250,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.178611,0.001250,-0.001750,0.249994,0,0);}
.m6e_c00436{transform:matrix(0.178781,0.001251,-0.001750,0.249994,0,0);-ms-transform:matrix(0.178781,0.001251,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.178781,0.001251,-0.001750,0.249994,0,0);}
.m100_c00436{transform:matrix(0.181205,0.002718,-0.003750,0.249972,0,0);-ms-transform:matrix(0.181205,0.002718,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.181205,0.002718,-0.003750,0.249972,0,0);}
.mc6_c00436{transform:matrix(0.181265,0.002719,-0.003750,0.249972,0,0);-ms-transform:matrix(0.181265,0.002719,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.181265,0.002719,-0.003750,0.249972,0,0);}
.m38_c00436{transform:matrix(0.181601,0.001271,-0.001750,0.249994,0,0);-ms-transform:matrix(0.181601,0.001271,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.181601,0.001271,-0.001750,0.249994,0,0);}
.mf0_c00436{transform:matrix(0.181865,0.002728,-0.003750,0.249972,0,0);-ms-transform:matrix(0.181865,0.002728,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.181865,0.002728,-0.003750,0.249972,0,0);}
.m3c_c00436{transform:matrix(0.181941,0.001274,-0.001750,0.249994,0,0);-ms-transform:matrix(0.181941,0.001274,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.181941,0.001274,-0.001750,0.249994,0,0);}
.m30_c00436{transform:matrix(0.182521,0.001278,-0.001750,0.249994,0,0);-ms-transform:matrix(0.182521,0.001278,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.182521,0.001278,-0.001750,0.249994,0,0);}
.m3a_c00436{transform:matrix(0.184050,0.001288,-0.001750,0.249994,0,0);-ms-transform:matrix(0.184050,0.001288,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.184050,0.001288,-0.001750,0.249994,0,0);}
.m101_c00436{transform:matrix(0.184074,0.002761,-0.003750,0.249972,0,0);-ms-transform:matrix(0.184074,0.002761,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.184074,0.002761,-0.003750,0.249972,0,0);}
.mad_c00436{transform:matrix(0.184154,0.002762,-0.003750,0.249972,0,0);-ms-transform:matrix(0.184154,0.002762,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.184154,0.002762,-0.003750,0.249972,0,0);}
.m109_c00436{transform:matrix(0.184324,0.002765,-0.003750,0.249972,0,0);-ms-transform:matrix(0.184324,0.002765,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.184324,0.002765,-0.003750,0.249972,0,0);}
.m64_c00436{transform:matrix(0.184987,0.002220,-0.003000,0.249982,0,0);-ms-transform:matrix(0.184987,0.002220,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.184987,0.002220,-0.003000,0.249982,0,0);}
.m43_c00436{transform:matrix(0.185295,0.001297,-0.001750,0.249994,0,0);-ms-transform:matrix(0.185295,0.001297,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.185295,0.001297,-0.001750,0.249994,0,0);}
.mb5_c00436{transform:matrix(0.186924,0.002804,-0.003750,0.249972,0,0);-ms-transform:matrix(0.186924,0.002804,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.186924,0.002804,-0.003750,0.249972,0,0);}
.m76_c00436{transform:matrix(0.186940,0.001309,-0.001750,0.249994,0,0);-ms-transform:matrix(0.186940,0.001309,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.186940,0.001309,-0.001750,0.249994,0,0);}
.m10_c00436{transform:matrix(0.187485,0.001312,-0.001750,0.249994,0,0);-ms-transform:matrix(0.187485,0.001312,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.187485,0.001312,-0.001750,0.249994,0,0);}
.m77_c00436{transform:matrix(0.189150,0.001324,-0.001750,0.249994,0,0);-ms-transform:matrix(0.189150,0.001324,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.189150,0.001324,-0.001750,0.249994,0,0);}
.m12_c00436{transform:matrix(0.189615,0.001327,-0.001750,0.249994,0,0);-ms-transform:matrix(0.189615,0.001327,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.189615,0.001327,-0.001750,0.249994,0,0);}
.m69_c00436{transform:matrix(0.190015,0.001330,-0.001750,0.249994,0,0);-ms-transform:matrix(0.190015,0.001330,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.190015,0.001330,-0.001750,0.249994,0,0);}
.ma3_c00436{transform:matrix(0.190804,0.002862,-0.003750,0.249972,0,0);-ms-transform:matrix(0.190804,0.002862,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.190804,0.002862,-0.003750,0.249972,0,0);}
.m103_c00436{transform:matrix(0.190814,0.002862,-0.003750,0.249972,0,0);-ms-transform:matrix(0.190814,0.002862,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.190814,0.002862,-0.003750,0.249972,0,0);}
.m94_c00436{transform:matrix(0.191353,0.002870,-0.003750,0.249972,0,0);-ms-transform:matrix(0.191353,0.002870,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.191353,0.002870,-0.003750,0.249972,0,0);}
.mb1_c00436{transform:matrix(0.191413,0.002871,-0.003750,0.249972,0,0);-ms-transform:matrix(0.191413,0.002871,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.191413,0.002871,-0.003750,0.249972,0,0);}
.m104_c00436{transform:matrix(0.192443,0.002887,-0.003750,0.249972,0,0);-ms-transform:matrix(0.192443,0.002887,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.192443,0.002887,-0.003750,0.249972,0,0);}
.mb6_c00436{transform:matrix(0.193018,0.002895,-0.003750,0.249972,0,0);-ms-transform:matrix(0.193018,0.002895,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.193018,0.002895,-0.003750,0.249972,0,0);}
.mb3_c00436{transform:matrix(0.193578,0.002904,-0.003750,0.249972,0,0);-ms-transform:matrix(0.193578,0.002904,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.193578,0.002904,-0.003750,0.249972,0,0);}
.m107_c00436{transform:matrix(0.194138,0.002912,-0.003750,0.249972,0,0);-ms-transform:matrix(0.194138,0.002912,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.194138,0.002912,-0.003750,0.249972,0,0);}
.m39_c00436{transform:matrix(0.194190,0.001359,-0.001750,0.249994,0,0);-ms-transform:matrix(0.194190,0.001359,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.194190,0.001359,-0.001750,0.249994,0,0);}
.mb2_c00436{transform:matrix(0.194698,0.002920,-0.003750,0.249972,0,0);-ms-transform:matrix(0.194698,0.002920,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.194698,0.002920,-0.003750,0.249972,0,0);}
.ma8_c00436{transform:matrix(0.194918,0.002924,-0.003750,0.249972,0,0);-ms-transform:matrix(0.194918,0.002924,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.194918,0.002924,-0.003750,0.249972,0,0);}
.m31_c00436{transform:matrix(0.195275,0.001367,-0.001750,0.249994,0,0);-ms-transform:matrix(0.195275,0.001367,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.195275,0.001367,-0.001750,0.249994,0,0);}
.m15_c00436{transform:matrix(0.195575,0.001369,-0.001750,0.249994,0,0);-ms-transform:matrix(0.195575,0.001369,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.195575,0.001369,-0.001750,0.249994,0,0);}
.m133_c00436{transform:matrix(0.195905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195905,0.000000,0.000000,0.250000,0,0);}
.mc0_c00436{transform:matrix(0.196103,0.002942,-0.003750,0.249972,0,0);-ms-transform:matrix(0.196103,0.002942,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.196103,0.002942,-0.003750,0.249972,0,0);}
.mf_c00436{transform:matrix(0.196380,0.001375,-0.001750,0.249994,0,0);-ms-transform:matrix(0.196380,0.001375,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.196380,0.001375,-0.001750,0.249994,0,0);}
.m11b_c00436{transform:matrix(0.197330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197330,0.000000,0.000000,0.250000,0,0);}
.m74_c00436{transform:matrix(0.197380,0.001382,-0.001750,0.249994,0,0);-ms-transform:matrix(0.197380,0.001382,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.197380,0.001382,-0.001750,0.249994,0,0);}
.m12c_c00436{transform:matrix(0.197510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197510,0.000000,0.000000,0.250000,0,0);}
.m9e_c00436{transform:matrix(0.198388,0.002976,-0.003750,0.249972,0,0);-ms-transform:matrix(0.198388,0.002976,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.198388,0.002976,-0.003750,0.249972,0,0);}
.m99_c00436{transform:matrix(0.199308,0.002990,-0.003750,0.249972,0,0);-ms-transform:matrix(0.199308,0.002990,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.199308,0.002990,-0.003750,0.249972,0,0);}
.m70_c00436{transform:matrix(0.199815,0.001399,-0.001750,0.249994,0,0);-ms-transform:matrix(0.199815,0.001399,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.199815,0.001399,-0.001750,0.249994,0,0);}
.m3f_c00436{transform:matrix(0.200120,0.001401,-0.001750,0.249994,0,0);-ms-transform:matrix(0.200120,0.001401,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.200120,0.001401,-0.001750,0.249994,0,0);}
.m72_c00436{transform:matrix(0.202990,0.001421,-0.001750,0.249994,0,0);-ms-transform:matrix(0.202990,0.001421,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.202990,0.001421,-0.001750,0.249994,0,0);}
.ma0_c00436{transform:matrix(0.203142,0.003047,-0.003750,0.249972,0,0);-ms-transform:matrix(0.203142,0.003047,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.203142,0.003047,-0.003750,0.249972,0,0);}
.m13_c00436{transform:matrix(0.204165,0.001429,-0.001750,0.249994,0,0);-ms-transform:matrix(0.204165,0.001429,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.204165,0.001429,-0.001750,0.249994,0,0);}
.md9_c00436{transform:matrix(0.204322,0.003065,-0.003750,0.249972,0,0);-ms-transform:matrix(0.204322,0.003065,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.204322,0.003065,-0.003750,0.249972,0,0);}
.maf_c00436{transform:matrix(0.204547,0.003068,-0.003750,0.249972,0,0);-ms-transform:matrix(0.204547,0.003068,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.204547,0.003068,-0.003750,0.249972,0,0);}
.m4d_c00436{transform:matrix(0.204810,0.001434,-0.001750,0.249994,0,0);-ms-transform:matrix(0.204810,0.001434,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.204810,0.001434,-0.001750,0.249994,0,0);}
.mbb_c00436{transform:matrix(0.205032,0.003075,-0.003750,0.249972,0,0);-ms-transform:matrix(0.205032,0.003075,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.205032,0.003075,-0.003750,0.249972,0,0);}
.m11a_c00436{transform:matrix(0.205110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205110,0.000000,0.000000,0.250000,0,0);}
.m6d_c00436{transform:matrix(0.205555,0.001439,-0.001750,0.249994,0,0);-ms-transform:matrix(0.205555,0.001439,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.205555,0.001439,-0.001750,0.249994,0,0);}
.m97_c00436{transform:matrix(0.205612,0.003084,-0.003750,0.249972,0,0);-ms-transform:matrix(0.205612,0.003084,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.205612,0.003084,-0.003750,0.249972,0,0);}
.mb9_c00436{transform:matrix(0.205657,0.003085,-0.003750,0.249972,0,0);-ms-transform:matrix(0.205657,0.003085,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.205657,0.003085,-0.003750,0.249972,0,0);}
.m34_c00436{transform:matrix(0.205820,0.001441,-0.001750,0.249994,0,0);-ms-transform:matrix(0.205820,0.001441,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.205820,0.001441,-0.001750,0.249994,0,0);}
.ma4_c00436{transform:matrix(0.206237,0.003094,-0.003750,0.249972,0,0);-ms-transform:matrix(0.206237,0.003094,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.206237,0.003094,-0.003750,0.249972,0,0);}
.m95_c00436{transform:matrix(0.206407,0.003096,-0.003750,0.249972,0,0);-ms-transform:matrix(0.206407,0.003096,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.206407,0.003096,-0.003750,0.249972,0,0);}
.m8d_c00436{transform:matrix(0.207090,0.002071,-0.002500,0.249988,0,0);-ms-transform:matrix(0.207090,0.002071,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.207090,0.002071,-0.002500,0.249988,0,0);}
.m12b_c00436{transform:matrix(0.207225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207225,0.000000,0.000000,0.250000,0,0);}
.m6a_c00436{transform:matrix(0.207300,0.001451,-0.001750,0.249994,0,0);-ms-transform:matrix(0.207300,0.001451,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.207300,0.001451,-0.001750,0.249994,0,0);}
.mbd_c00436{transform:matrix(0.207402,0.003111,-0.003750,0.249972,0,0);-ms-transform:matrix(0.207402,0.003111,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.207402,0.003111,-0.003750,0.249972,0,0);}
.mdb_c00436{transform:matrix(0.207427,0.003111,-0.003750,0.249972,0,0);-ms-transform:matrix(0.207427,0.003111,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.207427,0.003111,-0.003750,0.249972,0,0);}
.mb_c00436{transform:matrix(0.208010,0.001456,-0.001750,0.249994,0,0);-ms-transform:matrix(0.208010,0.001456,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.208010,0.001456,-0.001750,0.249994,0,0);}
.m3d_c00436{transform:matrix(0.208335,0.001458,-0.001750,0.249994,0,0);-ms-transform:matrix(0.208335,0.001458,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.208335,0.001458,-0.001750,0.249994,0,0);}
.m14_c00436{transform:matrix(0.208625,0.001460,-0.001750,0.249994,0,0);-ms-transform:matrix(0.208625,0.001460,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.208625,0.001460,-0.001750,0.249994,0,0);}
.m53_c00436{transform:matrix(0.208660,0.002504,-0.003000,0.249982,0,0);-ms-transform:matrix(0.208660,0.002504,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.208660,0.002504,-0.003000,0.249982,0,0);}
.m1d_c00436{transform:matrix(0.208670,0.001461,-0.001750,0.249994,0,0);-ms-transform:matrix(0.208670,0.001461,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.208670,0.001461,-0.001750,0.249994,0,0);}
.m6c_c00436{transform:matrix(0.209025,0.001463,-0.001750,0.249994,0,0);-ms-transform:matrix(0.209025,0.001463,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.209025,0.001463,-0.001750,0.249994,0,0);}
.meb_c00436{transform:matrix(0.209196,0.003138,-0.003750,0.249972,0,0);-ms-transform:matrix(0.209196,0.003138,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.209196,0.003138,-0.003750,0.249972,0,0);}
.m130_c00436{transform:matrix(0.209260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209260,0.000000,0.000000,0.250000,0,0);}
.md3_c00436{transform:matrix(0.209276,0.003139,-0.003750,0.249972,0,0);-ms-transform:matrix(0.209276,0.003139,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.209276,0.003139,-0.003750,0.249972,0,0);}
.m41_c00436{transform:matrix(0.209685,0.001468,-0.001750,0.249994,0,0);-ms-transform:matrix(0.209685,0.001468,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.209685,0.001468,-0.001750,0.249994,0,0);}
.ma1_c00436{transform:matrix(0.209781,0.003147,-0.003750,0.249972,0,0);-ms-transform:matrix(0.209781,0.003147,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.209781,0.003147,-0.003750,0.249972,0,0);}
.m5_c00436{transform:matrix(0.209930,0.001470,-0.001750,0.249994,0,0);-ms-transform:matrix(0.209930,0.001470,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.209930,0.001470,-0.001750,0.249994,0,0);}
.m40_c00436{transform:matrix(0.210245,0.001472,-0.001750,0.249994,0,0);-ms-transform:matrix(0.210245,0.001472,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.210245,0.001472,-0.001750,0.249994,0,0);}
.m4a_c00436{transform:matrix(0.210615,0.001474,-0.001750,0.249994,0,0);-ms-transform:matrix(0.210615,0.001474,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.210615,0.001474,-0.001750,0.249994,0,0);}
.m16_c00436{transform:matrix(0.210665,0.001475,-0.001750,0.249994,0,0);-ms-transform:matrix(0.210665,0.001475,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.210665,0.001475,-0.001750,0.249994,0,0);}
.m3e_c00436{transform:matrix(0.211965,0.001484,-0.001750,0.249994,0,0);-ms-transform:matrix(0.211965,0.001484,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.211965,0.001484,-0.001750,0.249994,0,0);}
.m112_c00436{transform:matrix(0.212371,0.003186,-0.003750,0.249972,0,0);-ms-transform:matrix(0.212371,0.003186,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.212371,0.003186,-0.003750,0.249972,0,0);}
.m37_c00436{transform:matrix(0.212515,0.001488,-0.001750,0.249994,0,0);-ms-transform:matrix(0.212515,0.001488,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.212515,0.001488,-0.001750,0.249994,0,0);}
.mb0_c00436{transform:matrix(0.212796,0.003192,-0.003750,0.249972,0,0);-ms-transform:matrix(0.212796,0.003192,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.212796,0.003192,-0.003750,0.249972,0,0);}
.m44_c00436{transform:matrix(0.213175,0.001492,-0.001750,0.249994,0,0);-ms-transform:matrix(0.213175,0.001492,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.213175,0.001492,-0.001750,0.249994,0,0);}
.m6b_c00436{transform:matrix(0.213190,0.001492,-0.001750,0.249994,0,0);-ms-transform:matrix(0.213190,0.001492,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.213190,0.001492,-0.001750,0.249994,0,0);}
.m75_c00436{transform:matrix(0.213220,0.001493,-0.001750,0.249994,0,0);-ms-transform:matrix(0.213220,0.001493,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.213220,0.001493,-0.001750,0.249994,0,0);}
.mab_c00436{transform:matrix(0.213586,0.003204,-0.003750,0.249972,0,0);-ms-transform:matrix(0.213586,0.003204,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.213586,0.003204,-0.003750,0.249972,0,0);}
.m3_c00436{transform:matrix(0.213715,0.001496,-0.001750,0.249994,0,0);-ms-transform:matrix(0.213715,0.001496,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.213715,0.001496,-0.001750,0.249994,0,0);}
.mb8_c00436{transform:matrix(0.213761,0.003206,-0.003750,0.249972,0,0);-ms-transform:matrix(0.213761,0.003206,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.213761,0.003206,-0.003750,0.249972,0,0);}
.mb4_c00436{transform:matrix(0.213931,0.003209,-0.003750,0.249972,0,0);-ms-transform:matrix(0.213931,0.003209,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.213931,0.003209,-0.003750,0.249972,0,0);}
.m24_c00436{transform:matrix(0.214410,0.001501,-0.001750,0.249994,0,0);-ms-transform:matrix(0.214410,0.001501,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.214410,0.001501,-0.001750,0.249994,0,0);}
.m82_c00436{transform:matrix(0.214925,0.001504,-0.001750,0.249994,0,0);-ms-transform:matrix(0.214925,0.001504,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.214925,0.001504,-0.001750,0.249994,0,0);}
.m45_c00436{transform:matrix(0.215800,0.001511,-0.001750,0.249994,0,0);-ms-transform:matrix(0.215800,0.001511,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.215800,0.001511,-0.001750,0.249994,0,0);}
.m32_c00436{transform:matrix(0.215840,0.001511,-0.001750,0.249994,0,0);-ms-transform:matrix(0.215840,0.001511,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.215840,0.001511,-0.001750,0.249994,0,0);}
.ma2_c00436{transform:matrix(0.216321,0.003245,-0.003750,0.249972,0,0);-ms-transform:matrix(0.216321,0.003245,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.216321,0.003245,-0.003750,0.249972,0,0);}
.m46_c00436{transform:matrix(0.216785,0.001517,-0.001750,0.249994,0,0);-ms-transform:matrix(0.216785,0.001517,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.216785,0.001517,-0.001750,0.249994,0,0);}
.mae_c00436{transform:matrix(0.216876,0.003253,-0.003750,0.249972,0,0);-ms-transform:matrix(0.216876,0.003253,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.216876,0.003253,-0.003750,0.249972,0,0);}
.m9b_c00436{transform:matrix(0.217091,0.003256,-0.003750,0.249972,0,0);-ms-transform:matrix(0.217091,0.003256,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.217091,0.003256,-0.003750,0.249972,0,0);}
.m71_c00436{transform:matrix(0.218285,0.001528,-0.001750,0.249994,0,0);-ms-transform:matrix(0.218285,0.001528,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.218285,0.001528,-0.001750,0.249994,0,0);}
.mc3_c00436{transform:matrix(0.219185,0.003288,-0.003750,0.249972,0,0);-ms-transform:matrix(0.219185,0.003288,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.219185,0.003288,-0.003750,0.249972,0,0);}
.mee_c00436{transform:matrix(0.219585,0.003294,-0.003750,0.249972,0,0);-ms-transform:matrix(0.219585,0.003294,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.219585,0.003294,-0.003750,0.249972,0,0);}
.m73_c00436{transform:matrix(0.219765,0.001538,-0.001750,0.249994,0,0);-ms-transform:matrix(0.219765,0.001538,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.219765,0.001538,-0.001750,0.249994,0,0);}
.mc5_c00436{transform:matrix(0.219865,0.003298,-0.003750,0.249972,0,0);-ms-transform:matrix(0.219865,0.003298,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.219865,0.003298,-0.003750,0.249972,0,0);}
.mf2_c00436{transform:matrix(0.219950,0.003299,-0.003750,0.249972,0,0);-ms-transform:matrix(0.219950,0.003299,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.219950,0.003299,-0.003750,0.249972,0,0);}
.m35_c00436{transform:matrix(0.220040,0.001540,-0.001750,0.249994,0,0);-ms-transform:matrix(0.220040,0.001540,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.220040,0.001540,-0.001750,0.249994,0,0);}
.m20_c00436{transform:matrix(0.220185,0.001541,-0.001750,0.249994,0,0);-ms-transform:matrix(0.220185,0.001541,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.220185,0.001541,-0.001750,0.249994,0,0);}
.md_c00436{transform:matrix(0.220375,0.001543,-0.001750,0.249994,0,0);-ms-transform:matrix(0.220375,0.001543,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.220375,0.001543,-0.001750,0.249994,0,0);}
.m42_c00436{transform:matrix(0.220445,0.001543,-0.001750,0.249994,0,0);-ms-transform:matrix(0.220445,0.001543,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.220445,0.001543,-0.001750,0.249994,0,0);}
.m3b_c00436{transform:matrix(0.220645,0.001545,-0.001750,0.249994,0,0);-ms-transform:matrix(0.220645,0.001545,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.220645,0.001545,-0.001750,0.249994,0,0);}
.m50_c00436{transform:matrix(0.220874,0.002650,-0.003000,0.249982,0,0);-ms-transform:matrix(0.220874,0.002650,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.220874,0.002650,-0.003000,0.249982,0,0);}
.m4f_c00436{transform:matrix(0.221055,0.001547,-0.001750,0.249994,0,0);-ms-transform:matrix(0.221055,0.001547,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.221055,0.001547,-0.001750,0.249994,0,0);}
.mc4_c00436{transform:matrix(0.221185,0.003318,-0.003750,0.249972,0,0);-ms-transform:matrix(0.221185,0.003318,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.221185,0.003318,-0.003750,0.249972,0,0);}
.m26_c00436{transform:matrix(0.221200,0.001548,-0.001750,0.249994,0,0);-ms-transform:matrix(0.221200,0.001548,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.221200,0.001548,-0.001750,0.249994,0,0);}
.m115_c00436{transform:matrix(0.221545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221545,0.000000,0.000000,0.250000,0,0);}
.m11_c00436{transform:matrix(0.221760,0.001552,-0.001750,0.249994,0,0);-ms-transform:matrix(0.221760,0.001552,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.221760,0.001552,-0.001750,0.249994,0,0);}
.m1c_c00436{transform:matrix(0.221805,0.001553,-0.001750,0.249994,0,0);-ms-transform:matrix(0.221805,0.001553,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.221805,0.001553,-0.001750,0.249994,0,0);}
.m6_c00436{transform:matrix(0.222120,0.001555,-0.001750,0.249994,0,0);-ms-transform:matrix(0.222120,0.001555,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.222120,0.001555,-0.001750,0.249994,0,0);}
.m33_c00436{transform:matrix(0.222335,0.001556,-0.001750,0.249994,0,0);-ms-transform:matrix(0.222335,0.001556,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.222335,0.001556,-0.001750,0.249994,0,0);}
.m10b_c00436{transform:matrix(0.222490,0.003337,-0.003750,0.249972,0,0);-ms-transform:matrix(0.222490,0.003337,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.222490,0.003337,-0.003750,0.249972,0,0);}
.m59_c00436{transform:matrix(0.222724,0.002673,-0.003000,0.249982,0,0);-ms-transform:matrix(0.222724,0.002673,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.222724,0.002673,-0.003000,0.249982,0,0);}
.mea_c00436{transform:matrix(0.222795,0.003342,-0.003750,0.249972,0,0);-ms-transform:matrix(0.222795,0.003342,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.222795,0.003342,-0.003750,0.249972,0,0);}
.m8_c00436{transform:matrix(0.223400,0.001564,-0.001750,0.249994,0,0);-ms-transform:matrix(0.223400,0.001564,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.223400,0.001564,-0.001750,0.249994,0,0);}
.m9a_c00436{transform:matrix(0.223920,0.003359,-0.003750,0.249972,0,0);-ms-transform:matrix(0.223920,0.003359,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.223920,0.003359,-0.003750,0.249972,0,0);}
.ma5_c00436{transform:matrix(0.224020,0.003360,-0.003750,0.249972,0,0);-ms-transform:matrix(0.224020,0.003360,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.224020,0.003360,-0.003750,0.249972,0,0);}
.m4b_c00436{transform:matrix(0.224065,0.001568,-0.001750,0.249994,0,0);-ms-transform:matrix(0.224065,0.001568,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.224065,0.001568,-0.001750,0.249994,0,0);}
.m78_c00436{transform:matrix(0.224085,0.001569,-0.001750,0.249994,0,0);-ms-transform:matrix(0.224085,0.001569,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.224085,0.001569,-0.001750,0.249994,0,0);}
.m51_c00436{transform:matrix(0.224324,0.002692,-0.003000,0.249982,0,0);-ms-transform:matrix(0.224324,0.002692,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.224324,0.002692,-0.003000,0.249982,0,0);}
.mc9_c00436{transform:matrix(0.224415,0.003366,-0.003750,0.249972,0,0);-ms-transform:matrix(0.224415,0.003366,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.224415,0.003366,-0.003750,0.249972,0,0);}
.m55_c00436{transform:matrix(0.224604,0.002695,-0.003000,0.249982,0,0);-ms-transform:matrix(0.224604,0.002695,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.224604,0.002695,-0.003000,0.249982,0,0);}
.m122_c00436{transform:matrix(0.224680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224680,0.000000,0.000000,0.250000,0,0);}
.m21_c00436{transform:matrix(0.224759,0.001573,-0.001750,0.249994,0,0);-ms-transform:matrix(0.224759,0.001573,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.224759,0.001573,-0.001750,0.249994,0,0);}
.mef_c00436{transform:matrix(0.224885,0.003373,-0.003750,0.249972,0,0);-ms-transform:matrix(0.224885,0.003373,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.224885,0.003373,-0.003750,0.249972,0,0);}
.md5_c00436{transform:matrix(0.225005,0.003375,-0.003750,0.249972,0,0);-ms-transform:matrix(0.225005,0.003375,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.225005,0.003375,-0.003750,0.249972,0,0);}
.m9c_c00436{transform:matrix(0.225275,0.003379,-0.003750,0.249972,0,0);-ms-transform:matrix(0.225275,0.003379,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.225275,0.003379,-0.003750,0.249972,0,0);}
.m1a_c00436{transform:matrix(0.225309,0.001577,-0.001750,0.249994,0,0);-ms-transform:matrix(0.225309,0.001577,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.225309,0.001577,-0.001750,0.249994,0,0);}
.m2e_c00436{transform:matrix(0.225339,0.001577,-0.001750,0.249994,0,0);-ms-transform:matrix(0.225339,0.001577,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.225339,0.001577,-0.001750,0.249994,0,0);}
.m11d_c00436{transform:matrix(0.225755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225755,0.000000,0.000000,0.250000,0,0);}
.m17_c00436{transform:matrix(0.225779,0.001580,-0.001750,0.249994,0,0);-ms-transform:matrix(0.225779,0.001580,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.225779,0.001580,-0.001750,0.249994,0,0);}
.md0_c00436{transform:matrix(0.225965,0.003389,-0.003750,0.249972,0,0);-ms-transform:matrix(0.225965,0.003389,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.225965,0.003389,-0.003750,0.249972,0,0);}
.me3_c00436{transform:matrix(0.226085,0.003391,-0.003750,0.249972,0,0);-ms-transform:matrix(0.226085,0.003391,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.226085,0.003391,-0.003750,0.249972,0,0);}
.mc2_c00436{transform:matrix(0.226135,0.003392,-0.003750,0.249972,0,0);-ms-transform:matrix(0.226135,0.003392,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.226135,0.003392,-0.003750,0.249972,0,0);}
.ma7_c00436{transform:matrix(0.226490,0.003397,-0.003750,0.249972,0,0);-ms-transform:matrix(0.226490,0.003397,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.226490,0.003397,-0.003750,0.249972,0,0);}
.m136_c00436{transform:matrix(0.227070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227070,0.000000,0.000000,0.250000,0,0);}
.m9d_c00436{transform:matrix(0.227199,0.003408,-0.003750,0.249972,0,0);-ms-transform:matrix(0.227199,0.003408,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.227199,0.003408,-0.003750,0.249972,0,0);}
.m7f_c00436{transform:matrix(0.227424,0.001592,-0.001750,0.249994,0,0);-ms-transform:matrix(0.227424,0.001592,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.227424,0.001592,-0.001750,0.249994,0,0);}
.m57_c00436{transform:matrix(0.227559,0.002731,-0.003000,0.249982,0,0);-ms-transform:matrix(0.227559,0.002731,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.227559,0.002731,-0.003000,0.249982,0,0);}
.m98_c00436{transform:matrix(0.227769,0.003417,-0.003750,0.249972,0,0);-ms-transform:matrix(0.227769,0.003417,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.227769,0.003417,-0.003750,0.249972,0,0);}
.mbc_c00436{transform:matrix(0.228649,0.003430,-0.003750,0.249972,0,0);-ms-transform:matrix(0.228649,0.003430,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.228649,0.003430,-0.003750,0.249972,0,0);}
.m11c_c00436{transform:matrix(0.229010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229010,0.000000,0.000000,0.250000,0,0);}
.m96_c00436{transform:matrix(0.229089,0.003436,-0.003750,0.249972,0,0);-ms-transform:matrix(0.229089,0.003436,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.229089,0.003436,-0.003750,0.249972,0,0);}
.m10d_c00436{transform:matrix(0.229499,0.003442,-0.003750,0.249972,0,0);-ms-transform:matrix(0.229499,0.003442,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.229499,0.003442,-0.003750,0.249972,0,0);}
.mdf_c00436{transform:matrix(0.230189,0.003453,-0.003750,0.249972,0,0);-ms-transform:matrix(0.230189,0.003453,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.230189,0.003453,-0.003750,0.249972,0,0);}
.m9f_c00436{transform:matrix(0.230514,0.003458,-0.003750,0.249972,0,0);-ms-transform:matrix(0.230514,0.003458,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.230514,0.003458,-0.003750,0.249972,0,0);}
.mf3_c00436{transform:matrix(0.230779,0.003462,-0.003750,0.249972,0,0);-ms-transform:matrix(0.230779,0.003462,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.230779,0.003462,-0.003750,0.249972,0,0);}
.ma9_c00436{transform:matrix(0.230924,0.003464,-0.003750,0.249972,0,0);-ms-transform:matrix(0.230924,0.003464,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.230924,0.003464,-0.003750,0.249972,0,0);}
.mc7_c00436{transform:matrix(0.231194,0.003468,-0.003750,0.249972,0,0);-ms-transform:matrix(0.231194,0.003468,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.231194,0.003468,-0.003750,0.249972,0,0);}
.mec_c00436{transform:matrix(0.231314,0.003470,-0.003750,0.249972,0,0);-ms-transform:matrix(0.231314,0.003470,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.231314,0.003470,-0.003750,0.249972,0,0);}
.mfb_c00436{transform:matrix(0.231599,0.003474,-0.003750,0.249972,0,0);-ms-transform:matrix(0.231599,0.003474,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.231599,0.003474,-0.003750,0.249972,0,0);}
.mcd_c00436{transform:matrix(0.232049,0.003481,-0.003750,0.249972,0,0);-ms-transform:matrix(0.232049,0.003481,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.232049,0.003481,-0.003750,0.249972,0,0);}
.m117_c00436{transform:matrix(0.232370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232370,0.000000,0.000000,0.250000,0,0);}
.mbe_c00436{transform:matrix(0.232514,0.003488,-0.003750,0.249972,0,0);-ms-transform:matrix(0.232514,0.003488,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.232514,0.003488,-0.003750,0.249972,0,0);}
.mc8_c00436{transform:matrix(0.233144,0.003497,-0.003750,0.249972,0,0);-ms-transform:matrix(0.233144,0.003497,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.233144,0.003497,-0.003750,0.249972,0,0);}
.mbf_c00436{transform:matrix(0.233774,0.003507,-0.003750,0.249972,0,0);-ms-transform:matrix(0.233774,0.003507,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.233774,0.003507,-0.003750,0.249972,0,0);}
.mac_c00436{transform:matrix(0.234059,0.003511,-0.003750,0.249972,0,0);-ms-transform:matrix(0.234059,0.003511,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.234059,0.003511,-0.003750,0.249972,0,0);}
.maa_c00436{transform:matrix(0.234069,0.003511,-0.003750,0.249972,0,0);-ms-transform:matrix(0.234069,0.003511,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.234069,0.003511,-0.003750,0.249972,0,0);}
.mc1_c00436{transform:matrix(0.234474,0.003517,-0.003750,0.249972,0,0);-ms-transform:matrix(0.234474,0.003517,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.234474,0.003517,-0.003750,0.249972,0,0);}
.m29_c00436{transform:matrix(0.234799,0.001644,-0.001750,0.249994,0,0);-ms-transform:matrix(0.234799,0.001644,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.234799,0.001644,-0.001750,0.249994,0,0);}
.m47_c00436{transform:matrix(0.235154,0.001646,-0.001750,0.249994,0,0);-ms-transform:matrix(0.235154,0.001646,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.235154,0.001646,-0.001750,0.249994,0,0);}
.m116_c00436{transform:matrix(0.235225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235225,0.000000,0.000000,0.250000,0,0);}
.me5_c00436{transform:matrix(0.235903,0.003539,-0.003750,0.249972,0,0);-ms-transform:matrix(0.235903,0.003539,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.235903,0.003539,-0.003750,0.249972,0,0);}
.m9_c00436{transform:matrix(0.235914,0.001651,-0.001750,0.249994,0,0);-ms-transform:matrix(0.235914,0.001651,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.235914,0.001651,-0.001750,0.249994,0,0);}
.m1e_c00436{transform:matrix(0.236204,0.001653,-0.001750,0.249994,0,0);-ms-transform:matrix(0.236204,0.001653,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.236204,0.001653,-0.001750,0.249994,0,0);}
.ma6_c00436{transform:matrix(0.236823,0.003552,-0.003750,0.249972,0,0);-ms-transform:matrix(0.236823,0.003552,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.236823,0.003552,-0.003750,0.249972,0,0);}
.mba_c00436{transform:matrix(0.236978,0.003555,-0.003750,0.249972,0,0);-ms-transform:matrix(0.236978,0.003555,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.236978,0.003555,-0.003750,0.249972,0,0);}
.me7_c00436{transform:matrix(0.237093,0.003556,-0.003750,0.249972,0,0);-ms-transform:matrix(0.237093,0.003556,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.237093,0.003556,-0.003750,0.249972,0,0);}
.mcc_c00436{transform:matrix(0.237298,0.003559,-0.003750,0.249972,0,0);-ms-transform:matrix(0.237298,0.003559,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.237298,0.003559,-0.003750,0.249972,0,0);}
.md8_c00436{transform:matrix(0.237443,0.003562,-0.003750,0.249972,0,0);-ms-transform:matrix(0.237443,0.003562,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.237443,0.003562,-0.003750,0.249972,0,0);}
.med_c00436{transform:matrix(0.237523,0.003563,-0.003750,0.249972,0,0);-ms-transform:matrix(0.237523,0.003563,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.237523,0.003563,-0.003750,0.249972,0,0);}
.m11e_c00436{transform:matrix(0.237860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237860,0.000000,0.000000,0.250000,0,0);}
.mcb_c00436{transform:matrix(0.238403,0.003576,-0.003750,0.249972,0,0);-ms-transform:matrix(0.238403,0.003576,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.238403,0.003576,-0.003750,0.249972,0,0);}
.m7a_c00436{transform:matrix(0.238529,0.001670,-0.001750,0.249994,0,0);-ms-transform:matrix(0.238529,0.001670,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.238529,0.001670,-0.001750,0.249994,0,0);}
.m124_c00436{transform:matrix(0.238570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238570,0.000000,0.000000,0.250000,0,0);}
.mf1_c00436{transform:matrix(0.238848,0.003583,-0.003750,0.249972,0,0);-ms-transform:matrix(0.238848,0.003583,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.238848,0.003583,-0.003750,0.249972,0,0);}
.m48_c00436{transform:matrix(0.238939,0.001673,-0.001750,0.249994,0,0);-ms-transform:matrix(0.238939,0.001673,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.238939,0.001673,-0.001750,0.249994,0,0);}
.mde_c00436{transform:matrix(0.239353,0.003590,-0.003750,0.249972,0,0);-ms-transform:matrix(0.239353,0.003590,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.239353,0.003590,-0.003750,0.249972,0,0);}
.m56_c00436{transform:matrix(0.239368,0.002872,-0.003000,0.249982,0,0);-ms-transform:matrix(0.239368,0.002872,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.239368,0.002872,-0.003000,0.249982,0,0);}
.md7_c00436{transform:matrix(0.239823,0.003597,-0.003750,0.249972,0,0);-ms-transform:matrix(0.239823,0.003597,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.239823,0.003597,-0.003750,0.249972,0,0);}
.m119_c00436{transform:matrix(0.240020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240020,0.000000,0.000000,0.250000,0,0);}
.m18_c00436{transform:matrix(0.240114,0.001681,-0.001750,0.249994,0,0);-ms-transform:matrix(0.240114,0.001681,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.240114,0.001681,-0.001750,0.249994,0,0);}
.m88_c00436{transform:matrix(0.240143,0.002401,-0.002500,0.249988,0,0);-ms-transform:matrix(0.240143,0.002401,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.240143,0.002401,-0.002500,0.249988,0,0);}
.m1b_c00436{transform:matrix(0.240154,0.001681,-0.001750,0.249994,0,0);-ms-transform:matrix(0.240154,0.001681,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.240154,0.001681,-0.001750,0.249994,0,0);}
.md6_c00436{transform:matrix(0.240688,0.003610,-0.003750,0.249972,0,0);-ms-transform:matrix(0.240688,0.003610,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.240688,0.003610,-0.003750,0.249972,0,0);}
.m28_c00436{transform:matrix(0.240969,0.001687,-0.001750,0.249994,0,0);-ms-transform:matrix(0.240969,0.001687,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.240969,0.001687,-0.001750,0.249994,0,0);}
.mdc_c00436{transform:matrix(0.241268,0.003619,-0.003750,0.249972,0,0);-ms-transform:matrix(0.241268,0.003619,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.241268,0.003619,-0.003750,0.249972,0,0);}
.m1f_c00436{transform:matrix(0.241554,0.001691,-0.001750,0.249994,0,0);-ms-transform:matrix(0.241554,0.001691,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.241554,0.001691,-0.001750,0.249994,0,0);}
.m2c_c00436{transform:matrix(0.242324,0.001696,-0.001750,0.249994,0,0);-ms-transform:matrix(0.242324,0.001696,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.242324,0.001696,-0.001750,0.249994,0,0);}
.mfa_c00436{transform:matrix(0.242728,0.003641,-0.003750,0.249972,0,0);-ms-transform:matrix(0.242728,0.003641,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.242728,0.003641,-0.003750,0.249972,0,0);}
.m7c_c00436{transform:matrix(0.242739,0.001699,-0.001750,0.249994,0,0);-ms-transform:matrix(0.242739,0.001699,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.242739,0.001699,-0.001750,0.249994,0,0);}
.m4c_c00436{transform:matrix(0.242864,0.001700,-0.001750,0.249994,0,0);-ms-transform:matrix(0.242864,0.001700,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.242864,0.001700,-0.001750,0.249994,0,0);}
.mda_c00436{transform:matrix(0.243053,0.003646,-0.003750,0.249972,0,0);-ms-transform:matrix(0.243053,0.003646,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.243053,0.003646,-0.003750,0.249972,0,0);}
.m10e_c00436{transform:matrix(0.243468,0.003652,-0.003750,0.249972,0,0);-ms-transform:matrix(0.243468,0.003652,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.243468,0.003652,-0.003750,0.249972,0,0);}
.ma_c00436{transform:matrix(0.243624,0.001705,-0.001750,0.249994,0,0);-ms-transform:matrix(0.243624,0.001705,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.243624,0.001705,-0.001750,0.249994,0,0);}
.m4_c00436{transform:matrix(0.244024,0.001708,-0.001750,0.249994,0,0);-ms-transform:matrix(0.244024,0.001708,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.244024,0.001708,-0.001750,0.249994,0,0);}
.m49_c00436{transform:matrix(0.245159,0.001716,-0.001750,0.249994,0,0);-ms-transform:matrix(0.245159,0.001716,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.245159,0.001716,-0.001750,0.249994,0,0);}
.m8a_c00436{transform:matrix(0.245203,0.002452,-0.002500,0.249988,0,0);-ms-transform:matrix(0.245203,0.002452,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.245203,0.002452,-0.002500,0.249988,0,0);}
.mca_c00436{transform:matrix(0.245907,0.003689,-0.003750,0.249972,0,0);-ms-transform:matrix(0.245907,0.003689,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.245907,0.003689,-0.003750,0.249972,0,0);}
.m81_c00436{transform:matrix(0.245964,0.001722,-0.001750,0.249994,0,0);-ms-transform:matrix(0.245964,0.001722,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.245964,0.001722,-0.001750,0.249994,0,0);}
.m27_c00436{transform:matrix(0.246179,0.001723,-0.001750,0.249994,0,0);-ms-transform:matrix(0.246179,0.001723,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.246179,0.001723,-0.001750,0.249994,0,0);}
.m58_c00436{transform:matrix(0.246467,0.002958,-0.003000,0.249982,0,0);-ms-transform:matrix(0.246467,0.002958,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.246467,0.002958,-0.003000,0.249982,0,0);}
.m83_c00436{transform:matrix(0.247499,0.001732,-0.001750,0.249994,0,0);-ms-transform:matrix(0.247499,0.001732,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.247499,0.001732,-0.001750,0.249994,0,0);}
.me6_c00436{transform:matrix(0.247522,0.003713,-0.003750,0.249972,0,0);-ms-transform:matrix(0.247522,0.003713,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.247522,0.003713,-0.003750,0.249972,0,0);}
.mc_c00436{transform:matrix(0.247669,0.001734,-0.001750,0.249994,0,0);-ms-transform:matrix(0.247669,0.001734,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.247669,0.001734,-0.001750,0.249994,0,0);}
.m2_c00436{transform:matrix(0.248294,0.001738,-0.001750,0.249994,0,0);-ms-transform:matrix(0.248294,0.001738,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.248294,0.001738,-0.001750,0.249994,0,0);}
.m5c_c00436{transform:matrix(0.248807,0.002986,-0.003000,0.249982,0,0);-ms-transform:matrix(0.248807,0.002986,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.248807,0.002986,-0.003000,0.249982,0,0);}
.md2_c00436{transform:matrix(0.248937,0.003734,-0.003750,0.249972,0,0);-ms-transform:matrix(0.248937,0.003734,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.248937,0.003734,-0.003750,0.249972,0,0);}
.mf8_c00436{transform:matrix(0.249187,0.003738,-0.003750,0.249972,0,0);-ms-transform:matrix(0.249187,0.003738,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.249187,0.003738,-0.003750,0.249972,0,0);}
.m85_c00436{transform:matrix(0.249493,0.002495,-0.002500,0.249988,0,0);-ms-transform:matrix(0.249493,0.002495,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.249493,0.002495,-0.002500,0.249988,0,0);}
.mf6_c00436{transform:matrix(0.249507,0.003743,-0.003750,0.249972,0,0);-ms-transform:matrix(0.249507,0.003743,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.249507,0.003743,-0.003750,0.249972,0,0);}
.mce_c00436{transform:matrix(0.249627,0.003744,-0.003750,0.249972,0,0);-ms-transform:matrix(0.249627,0.003744,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.249627,0.003744,-0.003750,0.249972,0,0);}
.mf4_c00436{transform:matrix(0.250432,0.003756,-0.003750,0.249972,0,0);-ms-transform:matrix(0.250432,0.003756,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.250432,0.003756,-0.003750,0.249972,0,0);}
.mfd_c00436{transform:matrix(0.251267,0.003769,-0.003750,0.249972,0,0);-ms-transform:matrix(0.251267,0.003769,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.251267,0.003769,-0.003750,0.249972,0,0);}
.m132_c00436{transform:matrix(0.251435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251435,0.000000,0.000000,0.250000,0,0);}
.m52_c00436{transform:matrix(0.251967,0.003024,-0.003000,0.249982,0,0);-ms-transform:matrix(0.251967,0.003024,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.251967,0.003024,-0.003000,0.249982,0,0);}
.m23_c00436{transform:matrix(0.251984,0.001764,-0.001750,0.249994,0,0);-ms-transform:matrix(0.251984,0.001764,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.251984,0.001764,-0.001750,0.249994,0,0);}
.m54_c00436{transform:matrix(0.252222,0.003027,-0.003000,0.249982,0,0);-ms-transform:matrix(0.252222,0.003027,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.252222,0.003027,-0.003000,0.249982,0,0);}
.m7_c00436{transform:matrix(0.252249,0.001766,-0.001750,0.249994,0,0);-ms-transform:matrix(0.252249,0.001766,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.252249,0.001766,-0.001750,0.249994,0,0);}
.m127_c00436{transform:matrix(0.252630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252630,0.000000,0.000000,0.250000,0,0);}
.m62_c00436{transform:matrix(0.253517,0.003042,-0.003000,0.249982,0,0);-ms-transform:matrix(0.253517,0.003042,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.253517,0.003042,-0.003000,0.249982,0,0);}
.mcf_c00436{transform:matrix(0.254406,0.003816,-0.003750,0.249972,0,0);-ms-transform:matrix(0.254406,0.003816,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.254406,0.003816,-0.003750,0.249972,0,0);}
.md4_c00436{transform:matrix(0.254711,0.003821,-0.003750,0.249972,0,0);-ms-transform:matrix(0.254711,0.003821,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.254711,0.003821,-0.003750,0.249972,0,0);}
.m25_c00436{transform:matrix(0.255114,0.001786,-0.001750,0.249994,0,0);-ms-transform:matrix(0.255114,0.001786,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.255114,0.001786,-0.001750,0.249994,0,0);}
.m87_c00436{transform:matrix(0.255922,0.002559,-0.002500,0.249988,0,0);-ms-transform:matrix(0.255922,0.002559,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.255922,0.002559,-0.002500,0.249988,0,0);}
.me1_c00436{transform:matrix(0.255956,0.003839,-0.003750,0.249972,0,0);-ms-transform:matrix(0.255956,0.003839,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.255956,0.003839,-0.003750,0.249972,0,0);}
.m8e_c00436{transform:matrix(0.256177,0.002562,-0.002500,0.249988,0,0);-ms-transform:matrix(0.256177,0.002562,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.256177,0.002562,-0.002500,0.249988,0,0);}
.m79_c00436{transform:matrix(0.256814,0.001798,-0.001750,0.249994,0,0);-ms-transform:matrix(0.256814,0.001798,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.256814,0.001798,-0.001750,0.249994,0,0);}
.m4e_c00436{transform:matrix(0.259384,0.001816,-0.001750,0.249994,0,0);-ms-transform:matrix(0.259384,0.001816,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.259384,0.001816,-0.001750,0.249994,0,0);}
.m19_c00436{transform:matrix(0.260234,0.001822,-0.001750,0.249994,0,0);-ms-transform:matrix(0.260234,0.001822,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.260234,0.001822,-0.001750,0.249994,0,0);}
.m8f_c00436{transform:matrix(0.261812,0.002618,-0.002500,0.249988,0,0);-ms-transform:matrix(0.261812,0.002618,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.261812,0.002618,-0.002500,0.249988,0,0);}
.me4_c00436{transform:matrix(0.262285,0.003934,-0.003750,0.249972,0,0);-ms-transform:matrix(0.262285,0.003934,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.262285,0.003934,-0.003750,0.249972,0,0);}
.m5f_c00436{transform:matrix(0.262496,0.003150,-0.003000,0.249982,0,0);-ms-transform:matrix(0.262496,0.003150,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.262496,0.003150,-0.003000,0.249982,0,0);}
.m113_c00436{transform:matrix(0.262545,0.003938,-0.003750,0.249972,0,0);-ms-transform:matrix(0.262545,0.003938,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.262545,0.003938,-0.003750,0.249972,0,0);}
.m121_c00436{transform:matrix(0.263525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263525,0.000000,0.000000,0.250000,0,0);}
.m10c_c00436{transform:matrix(0.263990,0.003960,-0.003750,0.249972,0,0);-ms-transform:matrix(0.263990,0.003960,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.263990,0.003960,-0.003750,0.249972,0,0);}
.m89_c00436{transform:matrix(0.265192,0.002652,-0.002500,0.249988,0,0);-ms-transform:matrix(0.265192,0.002652,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.265192,0.002652,-0.002500,0.249988,0,0);}
.mf5_c00436{transform:matrix(0.265610,0.003984,-0.003750,0.249972,0,0);-ms-transform:matrix(0.265610,0.003984,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.265610,0.003984,-0.003750,0.249972,0,0);}
.m84_c00436{transform:matrix(0.265627,0.002656,-0.002500,0.249988,0,0);-ms-transform:matrix(0.265627,0.002656,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.265627,0.002656,-0.002500,0.249988,0,0);}
.me2_c00436{transform:matrix(0.265805,0.003987,-0.003750,0.249972,0,0);-ms-transform:matrix(0.265805,0.003987,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.265805,0.003987,-0.003750,0.249972,0,0);}
.m10a_c00436{transform:matrix(0.265940,0.003989,-0.003750,0.249972,0,0);-ms-transform:matrix(0.265940,0.003989,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.265940,0.003989,-0.003750,0.249972,0,0);}
.m126_c00436{transform:matrix(0.266355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266355,0.000000,0.000000,0.250000,0,0);}
.m7b_c00436{transform:matrix(0.266983,0.001869,-0.001750,0.249994,0,0);-ms-transform:matrix(0.266983,0.001869,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.266983,0.001869,-0.001750,0.249994,0,0);}
.m10f_c00436{transform:matrix(0.267880,0.004018,-0.003750,0.249972,0,0);-ms-transform:matrix(0.267880,0.004018,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.267880,0.004018,-0.003750,0.249972,0,0);}
.m86_c00436{transform:matrix(0.270151,0.002702,-0.002500,0.249988,0,0);-ms-transform:matrix(0.270151,0.002702,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.270151,0.002702,-0.002500,0.249988,0,0);}
.m8b_c00436{transform:matrix(0.272506,0.002725,-0.002500,0.249988,0,0);-ms-transform:matrix(0.272506,0.002725,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.272506,0.002725,-0.002500,0.249988,0,0);}
.me8_c00436{transform:matrix(0.273409,0.004101,-0.003750,0.249972,0,0);-ms-transform:matrix(0.273409,0.004101,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.273409,0.004101,-0.003750,0.249972,0,0);}
.me0_c00436{transform:matrix(0.273919,0.004109,-0.003750,0.249972,0,0);-ms-transform:matrix(0.273919,0.004109,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.273919,0.004109,-0.003750,0.249972,0,0);}
.m2b_c00436{transform:matrix(0.274548,0.001922,-0.001750,0.249994,0,0);-ms-transform:matrix(0.274548,0.001922,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.274548,0.001922,-0.001750,0.249994,0,0);}
.mf7_c00436{transform:matrix(0.275904,0.004139,-0.003750,0.249972,0,0);-ms-transform:matrix(0.275904,0.004139,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.275904,0.004139,-0.003750,0.249972,0,0);}
.m2a_c00436{transform:matrix(0.276298,0.001934,-0.001750,0.249994,0,0);-ms-transform:matrix(0.276298,0.001934,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.276298,0.001934,-0.001750,0.249994,0,0);}
.m22_c00436{transform:matrix(0.277503,0.001943,-0.001750,0.249994,0,0);-ms-transform:matrix(0.277503,0.001943,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.277503,0.001943,-0.001750,0.249994,0,0);}
.m7d_c00436{transform:matrix(0.278083,0.001947,-0.001750,0.249994,0,0);-ms-transform:matrix(0.278083,0.001947,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.278083,0.001947,-0.001750,0.249994,0,0);}
.m61_c00436{transform:matrix(0.278795,0.003346,-0.003000,0.249982,0,0);-ms-transform:matrix(0.278795,0.003346,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.278795,0.003346,-0.003000,0.249982,0,0);}
.m110_c00436{transform:matrix(0.279019,0.004185,-0.003750,0.249972,0,0);-ms-transform:matrix(0.279019,0.004185,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.279019,0.004185,-0.003750,0.249972,0,0);}
.mfc_c00436{transform:matrix(0.280578,0.004209,-0.003750,0.249972,0,0);-ms-transform:matrix(0.280578,0.004209,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.280578,0.004209,-0.003750,0.249972,0,0);}
.mf9_c00436{transform:matrix(0.281143,0.004217,-0.003750,0.249972,0,0);-ms-transform:matrix(0.281143,0.004217,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.281143,0.004217,-0.003750,0.249972,0,0);}
.m111_c00436{transform:matrix(0.281343,0.004220,-0.003750,0.249972,0,0);-ms-transform:matrix(0.281343,0.004220,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.281343,0.004220,-0.003750,0.249972,0,0);}
.m80_c00436{transform:matrix(0.281718,0.001972,-0.001750,0.249994,0,0);-ms-transform:matrix(0.281718,0.001972,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.281718,0.001972,-0.001750,0.249994,0,0);}
.m2f_c00436{transform:matrix(0.281803,0.001973,-0.001750,0.249994,0,0);-ms-transform:matrix(0.281803,0.001973,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.281803,0.001973,-0.001750,0.249994,0,0);}
.m7e_c00436{transform:matrix(0.281923,0.001973,-0.001750,0.249994,0,0);-ms-transform:matrix(0.281923,0.001973,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.281923,0.001973,-0.001750,0.249994,0,0);}
.m8c_c00436{transform:matrix(0.282036,0.002820,-0.002500,0.249988,0,0);-ms-transform:matrix(0.282036,0.002820,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.282036,0.002820,-0.002500,0.249988,0,0);}
.m5e_c00436{transform:matrix(0.282105,0.003385,-0.003000,0.249982,0,0);-ms-transform:matrix(0.282105,0.003385,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.282105,0.003385,-0.003000,0.249982,0,0);}
.m114_c00436{transform:matrix(0.284573,0.004269,-0.003750,0.249972,0,0);-ms-transform:matrix(0.284573,0.004269,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.284573,0.004269,-0.003750,0.249972,0,0);}
.m2d_c00436{transform:matrix(0.286853,0.002008,-0.001750,0.249994,0,0);-ms-transform:matrix(0.286853,0.002008,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.286853,0.002008,-0.001750,0.249994,0,0);}
.m5d_c00436{transform:matrix(0.292819,0.003514,-0.003000,0.249982,0,0);-ms-transform:matrix(0.292819,0.003514,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.292819,0.003514,-0.003000,0.249982,0,0);}
.m5a_c00436{transform:matrix(0.293059,0.003517,-0.003000,0.249982,0,0);-ms-transform:matrix(0.293059,0.003517,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.293059,0.003517,-0.003000,0.249982,0,0);}
.m5b_c00436{transform:matrix(0.293719,0.003525,-0.003000,0.249982,0,0);-ms-transform:matrix(0.293719,0.003525,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.293719,0.003525,-0.003000,0.249982,0,0);}
.m0_c00436{transform:matrix(0.295465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295465,0.000000,0.000000,0.250000,0,0);}
.m63_c00436{transform:matrix(0.301988,0.003624,-0.003000,0.249982,0,0);-ms-transform:matrix(0.301988,0.003624,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.301988,0.003624,-0.003000,0.249982,0,0);}
.m125_c00436{transform:matrix(0.304560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304560,0.000000,0.000000,0.250000,0,0);}
.m60_c00436{transform:matrix(0.305558,0.003667,-0.003000,0.249982,0,0);-ms-transform:matrix(0.305558,0.003667,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.305558,0.003667,-0.003000,0.249982,0,0);}
.m134_c00436{transform:matrix(0.315970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315970,0.000000,0.000000,0.250000,0,0);}
.md1_c00436{transform:matrix(0.320054,0.004801,-0.003750,0.249972,0,0);-ms-transform:matrix(0.320054,0.004801,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.320054,0.004801,-0.003750,0.249972,0,0);}
.mdd_c00436{transform:matrix(0.320864,0.004813,-0.003750,0.249972,0,0);-ms-transform:matrix(0.320864,0.004813,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.320864,0.004813,-0.003750,0.249972,0,0);}
.m123_c00436{transform:matrix(0.322570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322570,0.000000,0.000000,0.250000,0,0);}
.m138_c00436{transform:matrix(0.324670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324670,0.000000,0.000000,0.250000,0,0);}
.m13e_c00436{transform:matrix(0.367253,0.005876,-0.003999,0.249968,0,0);-ms-transform:matrix(0.367253,0.005876,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.367253,0.005876,-0.003999,0.249968,0,0);}
.m13f_c00436{transform:matrix(0.388655,0.006218,-0.003999,0.249968,0,0);-ms-transform:matrix(0.388655,0.006218,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.388655,0.006218,-0.003999,0.249968,0,0);}
.m13d_c00436{transform:matrix(0.396819,0.006349,-0.003999,0.249968,0,0);-ms-transform:matrix(0.396819,0.006349,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.396819,0.006349,-0.003999,0.249968,0,0);}
.m13c_c00436{transform:matrix(0.402438,0.006439,-0.003999,0.249968,0,0);-ms-transform:matrix(0.402438,0.006439,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.402438,0.006439,-0.003999,0.249968,0,0);}
.m137_c00436{transform:matrix(0.410705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410705,0.000000,0.000000,0.250000,0,0);}
.m141_c00436{transform:matrix(0.424451,0.006791,-0.003999,0.249968,0,0);-ms-transform:matrix(0.424451,0.006791,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.424451,0.006791,-0.003999,0.249968,0,0);}
.m1_c00436{transform:matrix(0.432795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432795,0.000000,0.000000,0.250000,0,0);}
.m142_c00436{transform:matrix(0.434064,0.006945,-0.003999,0.249968,0,0);-ms-transform:matrix(0.434064,0.006945,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.434064,0.006945,-0.003999,0.249968,0,0);}
.m139_c00436{transform:matrix(0.442388,0.007078,-0.003999,0.249968,0,0);-ms-transform:matrix(0.442388,0.007078,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.442388,0.007078,-0.003999,0.249968,0,0);}
.m140_c00436{transform:matrix(0.445213,0.007123,-0.003999,0.249968,0,0);-ms-transform:matrix(0.445213,0.007123,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.445213,0.007123,-0.003999,0.249968,0,0);}
.m93_c00436{transform:matrix(0.445980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445980,0.000000,0.000000,0.250000,0,0);}
.m13a_c00436{transform:matrix(0.447778,0.007164,-0.003999,0.249968,0,0);-ms-transform:matrix(0.447778,0.007164,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.447778,0.007164,-0.003999,0.249968,0,0);}
.m12e_c00436{transform:matrix(0.451465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451465,0.000000,0.000000,0.250000,0,0);}
.m13b_c00436{transform:matrix(0.459711,0.007355,-0.003999,0.249968,0,0);-ms-transform:matrix(0.459711,0.007355,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.459711,0.007355,-0.003999,0.249968,0,0);}
.m91_c00436{transform:matrix(0.562250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562250,0.000000,0.000000,0.250000,0,0);}
.m12d_c00436{transform:matrix(0.902820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.902820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.902820,0.000000,0.000000,0.250000,0,0);}
.m65_c00436{transform:matrix(1.017930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.017930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.017930,0.000000,0.000000,0.250000,0,0);}
.m66_c00436{transform:matrix(1.034845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.034845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.034845,0.000000,0.000000,0.250000,0,0);}
.m135_c00436{transform:matrix(1.666905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.666905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.666905,0.000000,0.000000,0.250000,0,0);}
.m90_c00436{transform:matrix(1.996410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.996410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.996410,0.000000,0.000000,0.250000,0,0);}
.m92_c00436{transform:matrix(3.422105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.422105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.422105,0.000000,0.000000,0.250000,0,0);}
.v0_c00436{vertical-align:0.000000px;}
.ls0_c00436{letter-spacing:0.000000px;}
.sc__c00436{text-shadow:none;}
.sc0_c00436{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__c00436{-webkit-text-stroke:0px transparent;}
.sc0_c00436{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00436{word-spacing:0.000000px;}
.fc0_c00436{color:transparent;}
.fs6_c00436{font-size:18.000000px;}
.fs0_c00436{font-size:36.000000px;}
.fs13_c00436{font-size:42.005376px;}
.fs5_c00436{font-size:66.004752px;}
.fs10_c00436{font-size:72.000000px;}
.fs3_c00436{font-size:72.001764px;}
.fs8_c00436{font-size:72.003600px;}
.fsc_c00436{font-size:72.008100px;}
.fs1_c00436{font-size:78.001911px;}
.fs4_c00436{font-size:78.005616px;}
.fsb_c00436{font-size:78.008775px;}
.fse_c00436{font-size:84.000000px;}
.fs9_c00436{font-size:84.009449px;}
.fs12_c00436{font-size:90.000000px;}
.fs2_c00436{font-size:90.002205px;}
.fsa_c00436{font-size:90.010124px;}
.fs7_c00436{font-size:96.002352px;}
.fsd_c00436{font-size:102.011474px;}
.fsf_c00436{font-size:108.000000px;}
.fs11_c00436{font-size:114.000000px;}
.y0_c00436{bottom:0.000000px;}
.y136_c00436{bottom:83.618544px;}
.y135_c00436{bottom:84.500328px;}
.y134_c00436{bottom:85.568136px;}
.y133_c00436{bottom:86.082216px;}
.y132_c00436{bottom:86.600760px;}
.y131_c00436{bottom:87.318408px;}
.y130_c00436{bottom:88.026936px;}
.y12f_c00436{bottom:89.257968px;}
.y12e_c00436{bottom:90.470688px;}
.y12d_c00436{bottom:90.993000px;}
.y12c_c00436{bottom:123.405000px;}
.y12b_c00436{bottom:143.770500px;}
.y12a_c00436{bottom:144.315000px;}
.y129_c00436{bottom:144.622500px;}
.y128_c00436{bottom:144.921000px;}
.y127_c00436{bottom:145.146000px;}
.y126_c00436{bottom:145.531500px;}
.y125_c00436{bottom:175.431000px;}
.y124_c00436{bottom:176.434500px;}
.y123_c00436{bottom:177.829500px;}
.y122_c00436{bottom:178.519500px;}
.y121_c00436{bottom:178.923000px;}
.y120_c00436{bottom:179.302500px;}
.y11f_c00436{bottom:179.601000px;}
.y11e_c00436{bottom:180.091500px;}
.y11d_c00436{bottom:212.958000px;}
.y11c_c00436{bottom:213.162000px;}
.y11b_c00436{bottom:216.042000px;}
.y11a_c00436{bottom:216.438000px;}
.y119_c00436{bottom:216.841500px;}
.y118_c00436{bottom:217.126500px;}
.y117_c00436{bottom:217.621500px;}
.y116_c00436{bottom:247.065000px;}
.y115_c00436{bottom:283.141500px;}
.y114_c00436{bottom:309.944377px;}
.y113_c00436{bottom:311.424660px;}
.y112_c00436{bottom:311.916270px;}
.y111_c00436{bottom:314.609422px;}
.y110_c00436{bottom:317.271997px;}
.y10f_c00436{bottom:318.993952px;}
.y10e_c00436{bottom:319.938352px;}
.y10d_c00436{bottom:320.674507px;}
.y10c_c00436{bottom:322.609357px;}
.y10b_c00436{bottom:323.296335px;}
.y10a_c00436{bottom:324.768915px;}
.y109_c00436{bottom:347.157007px;}
.y108_c00436{bottom:347.608470px;}
.y107_c00436{bottom:348.600810px;}
.y106_c00436{bottom:349.059517px;}
.y105_c00436{bottom:349.259385px;}
.y104_c00436{bottom:350.154870px;}
.y103_c00436{bottom:351.045262px;}
.y102_c00436{bottom:351.580275px;}
.y101_c00436{bottom:352.461390px;}
.y100_c00436{bottom:353.126325px;}
.yff_c00436{bottom:353.346232px;}
.yfe_c00436{bottom:353.662785px;}
.yfd_c00436{bottom:381.933592px;}
.yfc_c00436{bottom:384.375030px;}
.yfb_c00436{bottom:385.057275px;}
.yfa_c00436{bottom:385.941435px;}
.yf9_c00436{bottom:388.367280px;}
.yf8_c00436{bottom:389.242560px;}
.yf7_c00436{bottom:391.218450px;}
.yf6_c00436{bottom:392.320470px;}
.yf5_c00436{bottom:393.641775px;}
.yf4_c00436{bottom:394.710022px;}
.yf3_c00436{bottom:419.580720px;}
.yf2_c00436{bottom:420.633285px;}
.yf1_c00436{bottom:421.895467px;}
.yf0_c00436{bottom:422.321685px;}
.yef_c00436{bottom:423.369757px;}
.yee_c00436{bottom:424.626052px;}
.yed_c00436{bottom:426.509505px;}
.yec_c00436{bottom:428.376187px;}
.yeb_c00436{bottom:429.027105px;}
.yea_c00436{bottom:430.082865px;}
.ye9_c00436{bottom:454.556445px;}
.ye8_c00436{bottom:457.374067px;}
.ye7_c00436{bottom:457.994137px;}
.ye6_c00436{bottom:458.460142px;}
.ye5_c00436{bottom:458.924617px;}
.ye4_c00436{bottom:460.009867px;}
.ye3_c00436{bottom:460.460317px;}
.ye2_c00436{bottom:461.099812px;}
.ye1_c00436{bottom:462.774120px;}
.ye0_c00436{bottom:464.478810px;}
.ydf_c00436{bottom:464.916502px;}
.yde_c00436{bottom:490.417957px;}
.ydd_c00436{bottom:491.174790px;}
.ydc_c00436{bottom:491.624415px;}
.ydb_c00436{bottom:492.028035px;}
.yda_c00436{bottom:493.043385px;}
.yd9_c00436{bottom:493.475130px;}
.yd8_c00436{bottom:494.485687px;}
.yd7_c00436{bottom:495.329340px;}
.yd6_c00436{bottom:496.052932px;}
.yd5_c00436{bottom:496.754437px;}
.yd4_c00436{bottom:498.345217px;}
.yd3_c00436{bottom:498.762262px;}
.yd2_c00436{bottom:499.752705px;}
.yd1_c00436{bottom:534.673065px;}
.yd0_c00436{bottom:534.673297px;}
.ycf_c00436{bottom:534.673402px;}
.ycd_c00436{bottom:534.673455px;}
.yce_c00436{bottom:534.673522px;}
.yc5_c00436{bottom:534.673890px;}
.ycc_c00436{bottom:534.674010px;}
.ycb_c00436{bottom:534.674025px;}
.yc7_c00436{bottom:534.674175px;}
.yc6_c00436{bottom:534.674280px;}
.yc8_c00436{bottom:534.674482px;}
.yca_c00436{bottom:534.674557px;}
.yc9_c00436{bottom:534.674662px;}
.yc4_c00436{bottom:563.091352px;}
.yc3_c00436{bottom:563.765482px;}
.yc2_c00436{bottom:564.443872px;}
.yc1_c00436{bottom:565.493077px;}
.yc0_c00436{bottom:565.888245px;}
.ybf_c00436{bottom:567.080235px;}
.ybe_c00436{bottom:568.012927px;}
.ybd_c00436{bottom:568.405680px;}
.ybc_c00436{bottom:569.202300px;}
.ybb_c00436{bottom:569.588160px;}
.yba_c00436{bottom:570.771337px;}
.yb9_c00436{bottom:598.185765px;}
.yb8_c00436{bottom:599.436630px;}
.yb7_c00436{bottom:599.893342px;}
.yb6_c00436{bottom:600.532950px;}
.yb5_c00436{bottom:600.990000px;}
.yb4_c00436{bottom:602.049742px;}
.yb3_c00436{bottom:602.533867px;}
.yb2_c00436{bottom:603.299977px;}
.yb1_c00436{bottom:604.083030px;}
.yb0_c00436{bottom:605.006782px;}
.yaf_c00436{bottom:606.219022px;}
.yae_c00436{bottom:607.315005px;}
.yad_c00436{bottom:607.764960px;}
.yac_c00436{bottom:633.010005px;}
.yab_c00436{bottom:633.506130px;}
.yaa_c00436{bottom:634.720552px;}
.ya9_c00436{bottom:635.932110px;}
.ya8_c00436{bottom:636.309960px;}
.ya7_c00436{bottom:636.802485px;}
.ya6_c00436{bottom:637.892902px;}
.ya5_c00436{bottom:638.742247px;}
.ya4_c00436{bottom:639.094995px;}
.ya3_c00436{bottom:639.447742px;}
.ya2_c00436{bottom:640.166685px;}
.ya1_c00436{bottom:668.908793px;}
.ya0_c00436{bottom:669.414367px;}
.y9f_c00436{bottom:670.561597px;}
.y9e_c00436{bottom:671.063325px;}
.y9d_c00436{bottom:672.230445px;}
.y9c_c00436{bottom:673.246995px;}
.y9b_c00436{bottom:674.061450px;}
.y9a_c00436{bottom:675.389940px;}
.y99_c00436{bottom:675.879630px;}
.y98_c00436{bottom:676.553370px;}
.y97_c00436{bottom:677.042565px;}
.y96_c00436{bottom:678.192338px;}
.y95_c00436{bottom:678.851453px;}
.y94_c00436{bottom:679.321500px;}
.y93_c00436{bottom:696.600000px;}
.y92_c00436{bottom:703.680210px;}
.y91_c00436{bottom:704.244810px;}
.y90_c00436{bottom:704.460585px;}
.y8f_c00436{bottom:705.689625px;}
.y8e_c00436{bottom:706.567215px;}
.y8d_c00436{bottom:707.007480px;}
.y8c_c00436{bottom:707.785155px;}
.y8b_c00436{bottom:708.214275px;}
.y8a_c00436{bottom:708.449130px;}
.y89_c00436{bottom:709.429500px;}
.y88_c00436{bottom:709.974765px;}
.y87_c00436{bottom:710.641500px;}
.y86_c00436{bottom:740.736364px;}
.y85_c00436{bottom:741.038068px;}
.y84_c00436{bottom:741.603694px;}
.y83_c00436{bottom:742.639954px;}
.y82_c00436{bottom:743.198454px;}
.y81_c00436{bottom:743.630403px;}
.y80_c00436{bottom:745.203459px;}
.y7f_c00436{bottom:746.779485px;}
.y7e_c00436{bottom:747.221677px;}
.y7d_c00436{bottom:747.638514px;}
.y7c_c00436{bottom:748.772368px;}
.y7b_c00436{bottom:749.210992px;}
.y7a_c00436{bottom:749.789423px;}
.y79_c00436{bottom:777.697586px;}
.y78_c00436{bottom:778.200613px;}
.y77_c00436{bottom:778.884282px;}
.y76_c00436{bottom:779.365660px;}
.y75_c00436{bottom:780.678909px;}
.y74_c00436{bottom:781.359555px;}
.y73_c00436{bottom:782.991204px;}
.y72_c00436{bottom:783.830001px;}
.y71_c00436{bottom:785.162664px;}
.y70_c00436{bottom:815.760699px;}
.y6f_c00436{bottom:815.981734px;}
.y6e_c00436{bottom:816.291736px;}
.y6d_c00436{bottom:816.991215px;}
.y6c_c00436{bottom:817.919237px;}
.y6b_c00436{bottom:818.074489px;}
.y6a_c00436{bottom:818.839667px;}
.y69_c00436{bottom:819.225216px;}
.y68_c00436{bottom:819.450000px;}
.y67_c00436{bottom:822.960000px;}
.y66_c00436{bottom:848.512248px;}
.y65_c00436{bottom:850.715244px;}
.y64_c00436{bottom:851.153298px;}
.y63_c00436{bottom:852.016482px;}
.y62_c00436{bottom:853.589754px;}
.y61_c00436{bottom:854.035788px;}
.y60_c00436{bottom:854.758242px;}
.y5f_c00436{bottom:855.882708px;}
.y5e_c00436{bottom:856.324944px;}
.y5d_c00436{bottom:857.465106px;}
.y5c_c00436{bottom:858.598248px;}
.y5b_c00436{bottom:885.443262px;}
.y5a_c00436{bottom:886.509348px;}
.y59_c00436{bottom:886.930170px;}
.y58_c00436{bottom:887.847648px;}
.y57_c00436{bottom:888.511956px;}
.y56_c00436{bottom:889.694664px;}
.y55_c00436{bottom:890.096478px;}
.y54_c00436{bottom:891.411972px;}
.y53_c00436{bottom:891.949776px;}
.y52_c00436{bottom:892.351500px;}
.y51_c00436{bottom:924.609733px;}
.y4c_c00436{bottom:924.610030px;}
.y4d_c00436{bottom:924.610071px;}
.y4f_c00436{bottom:924.610302px;}
.y4a_c00436{bottom:924.610320px;}
.y50_c00436{bottom:924.610402px;}
.y4e_c00436{bottom:924.610441px;}
.y4b_c00436{bottom:924.610560px;}
.y49_c00436{bottom:924.610729px;}
.y47_c00436{bottom:924.610739px;}
.y48_c00436{bottom:924.611169px;}
.y46_c00436{bottom:956.161560px;}
.y45_c00436{bottom:956.549954px;}
.y44_c00436{bottom:956.714544px;}
.y43_c00436{bottom:957.212085px;}
.y42_c00436{bottom:957.606518px;}
.y41_c00436{bottom:957.880719px;}
.y40_c00436{bottom:957.992094px;}
.y3f_c00436{bottom:958.376496px;}
.y3e_c00436{bottom:958.701349px;}
.y3d_c00436{bottom:958.865898px;}
.y3c_c00436{bottom:959.302473px;}
.y3b_c00436{bottom:991.380102px;}
.y3a_c00436{bottom:991.587690px;}
.y39_c00436{bottom:991.785144px;}
.y38_c00436{bottom:992.379974px;}
.y37_c00436{bottom:992.583234px;}
.y36_c00436{bottom:993.181697px;}
.y35_c00436{bottom:993.646147px;}
.y34_c00436{bottom:994.314006px;}
.y33_c00436{bottom:995.028849px;}
.y32_c00436{bottom:995.291466px;}
.y31_c00436{bottom:995.485161px;}
.y30_c00436{bottom:1027.987470px;}
.y2f_c00436{bottom:1028.258314px;}
.y2e_c00436{bottom:1029.001527px;}
.y2d_c00436{bottom:1029.405852px;}
.y2c_c00436{bottom:1030.123553px;}
.y2b_c00436{bottom:1031.000382px;}
.y2a_c00436{bottom:1031.622744px;}
.y29_c00436{bottom:1032.061830px;}
.y28_c00436{bottom:1032.493778px;}
.y27_c00436{bottom:1032.748171px;}
.y26_c00436{bottom:1062.816633px;}
.y25_c00436{bottom:1063.146297px;}
.y24_c00436{bottom:1063.931850px;}
.y23_c00436{bottom:1064.253600px;}
.y22_c00436{bottom:1064.692882px;}
.y21_c00436{bottom:1065.031195px;}
.y20_c00436{bottom:1065.811447px;}
.y1f_c00436{bottom:1066.461969px;}
.y1e_c00436{bottom:1066.793428px;}
.y1d_c00436{bottom:1067.242001px;}
.y1c_c00436{bottom:1067.897876px;}
.y1b_c00436{bottom:1068.227466px;}
.y1a_c00436{bottom:1068.438107px;}
.y19_c00436{bottom:1069.198656px;}
.y18_c00436{bottom:1099.551888px;}
.y17_c00436{bottom:1100.169033px;}
.y16_c00436{bottom:1100.529726px;}
.y15_c00436{bottom:1101.137326px;}
.y14_c00436{bottom:1101.585999px;}
.y13_c00436{bottom:1101.855134px;}
.y12_c00436{bottom:1102.475952px;}
.y11_c00436{bottom:1102.737453px;}
.y10_c00436{bottom:1103.094114px;}
.yf_c00436{bottom:1103.266282px;}
.ye_c00436{bottom:1104.298839px;}
.yd_c00436{bottom:1135.003818px;}
.yc_c00436{bottom:1135.232518px;}
.yb_c00436{bottom:1135.776870px;}
.ya_c00436{bottom:1136.245653px;}
.y9_c00436{bottom:1136.708756px;}
.y8_c00436{bottom:1137.024302px;}
.y7_c00436{bottom:1137.640484px;}
.y6_c00436{bottom:1137.869352px;}
.y5_c00436{bottom:1138.099901px;}
.y4_c00436{bottom:1138.564840px;}
.y3_c00436{bottom:1138.791410px;}
.y2_c00436{bottom:1139.400000px;}
.y1_c00436{bottom:1201.071000px;}
.h8_c00436{height:18.000000px;}
.h2_c00436{height:36.000000px;}
.h15_c00436{height:42.005376px;}
.h7_c00436{height:66.004752px;}
.h12_c00436{height:72.000000px;}
.h5_c00436{height:72.001764px;}
.ha_c00436{height:72.003600px;}
.he_c00436{height:72.008100px;}
.h3_c00436{height:78.001911px;}
.h6_c00436{height:78.005616px;}
.hd_c00436{height:78.008775px;}
.h10_c00436{height:84.000000px;}
.hb_c00436{height:84.009449px;}
.h14_c00436{height:90.000000px;}
.h4_c00436{height:90.002205px;}
.hc_c00436{height:90.010124px;}
.h9_c00436{height:96.002352px;}
.hf_c00436{height:102.011474px;}
.h11_c00436{height:108.000000px;}
.h13_c00436{height:114.000000px;}
.h1_c00436{height:1251.000000px;}
.h0_c00436{height:1251.150000px;}
.w0_c00436{width:915.000000px;}
.x0_c00436{left:0.000000px;}
.xc6_c00436{left:105.565500px;}
.xb1_c00436{left:107.532922px;}
.xbd_c00436{left:108.540000px;}
.x81_c00436{left:109.661108px;}
.x52_c00436{left:110.867806px;}
.x67_c00436{left:111.912000px;}
.x2c_c00436{left:113.574786px;}
.x3_c00436{left:115.474500px;}
.x9a_c00436{left:140.742570px;}
.x68_c00436{left:143.248500px;}
.xc7_c00436{left:144.445500px;}
.x34_c00436{left:145.805538px;}
.x20_c00436{left:147.045240px;}
.x53_c00436{left:155.355937px;}
.xa8_c00436{left:162.554160px;}
.x87_c00436{left:164.702655px;}
.xb2_c00436{left:174.497902px;}
.x5d_c00436{left:176.955000px;}
.x90_c00436{left:186.103410px;}
.x69_c00436{left:187.189500px;}
.x54_c00436{left:189.086520px;}
.x17_c00436{left:191.252004px;}
.xbe_c00436{left:195.373500px;}
.x88_c00436{left:197.917125px;}
.x41_c00436{left:199.907814px;}
.x21_c00436{left:201.037362px;}
.x4_c00436{left:202.416000px;}
.xb3_c00436{left:205.693117px;}
.x73_c00436{left:208.797532px;}
.x18_c00436{left:212.343063px;}
.xc8_c00436{left:215.743500px;}
.xa3_c00436{left:217.106925px;}
.x91_c00436{left:218.207378px;}
.x3a_c00436{left:221.505000px;}
.xbf_c00436{left:226.968000px;}
.xa9_c00436{left:228.636210px;}
.x5e_c00436{left:231.481500px;}
.x2d_c00436{left:233.736966px;}
.x5_c00436{left:234.783000px;}
.x74_c00436{left:240.915967px;}
.xf_c00436{left:245.330439px;}
.x22_c00436{left:255.834974px;}
.x9b_c00436{left:262.490393px;}
.x6a_c00436{left:263.841000px;}
.x10_c00436{left:266.925792px;}
.xc3_c00436{left:270.412500px;}
.xa4_c00436{left:272.687595px;}
.x35_c00436{left:276.218922px;}
.xaa_c00436{left:283.700070px;}
.x42_c00436{left:287.670270px;}
.xb4_c00436{left:293.673892px;}
.x6b_c00436{left:296.454000px;}
.x2e_c00436{left:298.788380px;}
.x3b_c00436{left:299.799000px;}
.x6_c00436{left:301.203000px;}
.xb9_c00436{left:305.100000px;}
.x7a_c00436{left:307.255973px;}
.x55_c00436{left:308.394512px;}
.x26_c00436{left:310.110485px;}
.x11_c00436{left:311.448477px;}
.xc5_c00436{left:314.458500px;}
.xc0_c00436{left:315.790500px;}
.x75_c00436{left:318.143602px;}
.x43_c00436{left:321.647856px;}
.xb5_c00436{left:327.147382px;}
.x5f_c00436{left:329.518500px;}
.x4b_c00436{left:331.453500px;}
.x7_c00436{left:334.138500px;}
.xc9_c00436{left:336.966000px;}
.x82_c00436{left:339.465435px;}
.x6c_c00436{left:341.370000px;}
.x56_c00436{left:342.420583px;}
.x12_c00436{left:344.091246px;}
.x60_c00436{left:353.004000px;}
.x19_c00436{left:355.702550px;}
.x4f_c00436{left:365.358177px;}
.x8_c00436{left:366.834000px;}
.xad_c00436{left:370.829708px;}
.x6d_c00436{left:374.016000px;}
.x2f_c00436{left:375.775461px;}
.x9c_c00436{left:382.112693px;}
.x1a_c00436{left:388.910357px;}
.xc4_c00436{left:391.957500px;}
.xba_c00436{left:393.120000px;}
.x92_c00436{left:394.531665px;}
.x61_c00436{left:395.916000px;}
.x30_c00436{left:397.900766px;}
.x89_c00436{left:405.031223px;}
.x44_c00436{left:408.102312px;}
.x36_c00436{left:409.332443px;}
.xca_c00436{left:414.228000px;}
.xbb_c00436{left:415.800000px;}
.x76_c00436{left:417.244042px;}
.x13_c00436{left:421.636200px;}
.xab_c00436{left:426.267382px;}
.x1_c00436{left:427.410000px;}
.x7b_c00436{left:429.144795px;}
.x8a_c00436{left:435.545085px;}
.x23_c00436{left:443.218161px;}
.xcb_c00436{left:446.358000px;}
.xb6_c00436{left:448.391670px;}
.x93_c00436{left:450.172830px;}
.x2_c00436{left:451.980000px;}
.x9_c00436{left:454.860000px;}
.x9d_c00436{left:459.876840px;}
.x6e_c00436{left:462.582000px;}
.x45_c00436{left:463.681146px;}
.x8b_c00436{left:471.188595px;}
.x50_c00436{left:474.159087px;}
.x7c_c00436{left:483.919628px;}
.x77_c00436{left:496.373790px;}
.x27_c00436{left:498.870308px;}
.xa_c00436{left:499.938000px;}
.xa5_c00436{left:504.377213px;}
.x14_c00436{left:511.536581px;}
.xcc_c00436{left:513.096000px;}
.x94_c00436{left:515.018265px;}
.x83_c00436{left:516.618923px;}
.x62_c00436{left:517.710000px;}
.x37_c00436{left:520.304882px;}
.x1b_c00436{left:532.017854px;}
.x9e_c00436{left:537.428010px;}
.x3c_c00436{left:541.467000px;}
.x8c_c00436{left:547.606785px;}
.x84_c00436{left:549.564908px;}
.x38_c00436{left:552.434957px;}
.x4c_c00436{left:563.953500px;}
.xb_c00436{left:566.095500px;}
.xcd_c00436{left:568.207500px;}
.xae_c00436{left:569.327580px;}
.x9f_c00436{left:570.593505px;}
.x8d_c00436{left:580.551188px;}
.x24_c00436{left:583.363674px;}
.x57_c00436{left:584.636409px;}
.x15_c00436{left:587.407545px;}
.x95_c00436{left:592.791105px;}
.x7d_c00436{left:594.145770px;}
.x3d_c00436{left:596.826000px;}
.x28_c00436{left:598.508501px;}
.xa0_c00436{left:603.861000px;}
.x63_c00436{left:605.469000px;}
.x51_c00436{left:607.065142px;}
.x4d_c00436{left:608.239500px;}
.x1c_c00436{left:609.672716px;}
.xaf_c00436{left:615.211523px;}
.x58_c00436{left:617.842013px;}
.x46_c00436{left:618.954774px;}
.x8e_c00436{left:623.756408px;}
.xa6_c00436{left:625.694445px;}
.x7e_c00436{left:626.816265px;}
.x31_c00436{left:630.929021px;}
.xc_c00436{left:633.064500px;}
.xc1_c00436{left:635.770500px;}
.x85_c00436{left:637.015845px;}
.x4e_c00436{left:639.816000px;}
.x1d_c00436{left:641.922044px;}
.xa1_c00436{left:648.099653px;}
.xc2_c00436{left:658.462500px;}
.x59_c00436{left:660.768707px;}
.x6f_c00436{left:662.457000px;}
.x32_c00436{left:663.870983px;}
.x39_c00436{left:666.107522px;}
.x3e_c00436{left:673.282500px;}
.x25_c00436{left:676.250523px;}
.x47_c00436{left:685.385982px;}
.xb7_c00436{left:691.814610px;}
.x86_c00436{left:693.544388px;}
.x70_c00436{left:695.905500px;}
.xbc_c00436{left:702.270000px;}
.x96_c00436{left:704.067435px;}
.x7f_c00436{left:705.105435px;}
.x3f_c00436{left:708.351000px;}
.x16_c00436{left:709.740695px;}
.xd_c00436{left:710.829000px;}
.xa7_c00436{left:714.549113px;}
.x78_c00436{left:717.019043px;}
.x48_c00436{left:719.140086px;}
.x1e_c00436{left:720.499395px;}
.x64_c00436{left:728.373000px;}
.x29_c00436{left:731.379425px;}
.x97_c00436{left:735.076358px;}
.x5a_c00436{left:740.445357px;}
.x33_c00436{left:741.642575px;}
.xe_c00436{left:743.500500px;}
.xac_c00436{left:747.955762px;}
.x65_c00436{left:749.950500px;}
.x1f_c00436{left:753.450702px;}
.xb0_c00436{left:759.475822px;}
.x79_c00436{left:762.096743px;}
.x2a_c00436{left:764.301656px;}
.x98_c00436{left:769.652393px;}
.x71_c00436{left:772.387500px;}
.xb8_c00436{left:781.464705px;}
.x5b_c00436{left:783.961530px;}
.x8f_c00436{left:792.524865px;}
.x80_c00436{left:794.497785px;}
.x40_c00436{left:797.191500px;}
.x2b_c00436{left:798.885897px;}
.x72_c00436{left:806.092500px;}
.x5c_c00436{left:807.132553px;}
.x99_c00436{left:827.909648px;}
.xa2_c00436{left:849.344168px;}
.x49_c00436{left:888.596052px;}
.x66_c00436{left:903.420000px;}
.x4a_c00436{left:906.660000px;}
@media print{
.v0_c00436{vertical-align:0.000000pt;}
.ls0_c00436{letter-spacing:0.000000pt;}
.ws0_c00436{word-spacing:0.000000pt;}
.fs6_c00436{font-size:16.000000pt;}
.fs0_c00436{font-size:32.000000pt;}
.fs13_c00436{font-size:37.338112pt;}
.fs5_c00436{font-size:58.670891pt;}
.fs10_c00436{font-size:64.000000pt;}
.fs3_c00436{font-size:64.001568pt;}
.fs8_c00436{font-size:64.003200pt;}
.fsc_c00436{font-size:64.007200pt;}
.fs1_c00436{font-size:69.335032pt;}
.fs4_c00436{font-size:69.338325pt;}
.fsb_c00436{font-size:69.341133pt;}
.fse_c00436{font-size:74.666667pt;}
.fs9_c00436{font-size:74.675066pt;}
.fs12_c00436{font-size:80.000000pt;}
.fs2_c00436{font-size:80.001960pt;}
.fsa_c00436{font-size:80.008999pt;}
.fs7_c00436{font-size:85.335424pt;}
.fsd_c00436{font-size:90.676866pt;}
.fsf_c00436{font-size:96.000000pt;}
.fs11_c00436{font-size:101.333333pt;}
.y0_c00436{bottom:0.000000pt;}
.y136_c00436{bottom:74.327595pt;}
.y135_c00436{bottom:75.111403pt;}
.y134_c00436{bottom:76.060565pt;}
.y133_c00436{bottom:76.517525pt;}
.y132_c00436{bottom:76.978453pt;}
.y131_c00436{bottom:77.616363pt;}
.y130_c00436{bottom:78.246165pt;}
.y12f_c00436{bottom:79.340416pt;}
.y12e_c00436{bottom:80.418389pt;}
.y12d_c00436{bottom:80.882667pt;}
.y12c_c00436{bottom:109.693333pt;}
.y12b_c00436{bottom:127.796000pt;}
.y12a_c00436{bottom:128.280000pt;}
.y129_c00436{bottom:128.553333pt;}
.y128_c00436{bottom:128.818667pt;}
.y127_c00436{bottom:129.018667pt;}
.y126_c00436{bottom:129.361333pt;}
.y125_c00436{bottom:155.938667pt;}
.y124_c00436{bottom:156.830667pt;}
.y123_c00436{bottom:158.070667pt;}
.y122_c00436{bottom:158.684000pt;}
.y121_c00436{bottom:159.042667pt;}
.y120_c00436{bottom:159.380000pt;}
.y11f_c00436{bottom:159.645333pt;}
.y11e_c00436{bottom:160.081333pt;}
.y11d_c00436{bottom:189.296000pt;}
.y11c_c00436{bottom:189.477333pt;}
.y11b_c00436{bottom:192.037333pt;}
.y11a_c00436{bottom:192.389333pt;}
.y119_c00436{bottom:192.748000pt;}
.y118_c00436{bottom:193.001333pt;}
.y117_c00436{bottom:193.441333pt;}
.y116_c00436{bottom:219.613333pt;}
.y115_c00436{bottom:251.681333pt;}
.y114_c00436{bottom:275.506113pt;}
.y113_c00436{bottom:276.821920pt;}
.y112_c00436{bottom:277.258907pt;}
.y111_c00436{bottom:279.652820pt;}
.y110_c00436{bottom:282.019553pt;}
.y10f_c00436{bottom:283.550180pt;}
.y10e_c00436{bottom:284.389647pt;}
.y10d_c00436{bottom:285.044007pt;}
.y10c_c00436{bottom:286.763873pt;}
.y10b_c00436{bottom:287.374520pt;}
.y10a_c00436{bottom:288.683480pt;}
.y109_c00436{bottom:308.584007pt;}
.y108_c00436{bottom:308.985307pt;}
.y107_c00436{bottom:309.867387pt;}
.y106_c00436{bottom:310.275127pt;}
.y105_c00436{bottom:310.452787pt;}
.y104_c00436{bottom:311.248773pt;}
.y103_c00436{bottom:312.040233pt;}
.y102_c00436{bottom:312.515800pt;}
.y101_c00436{bottom:313.299013pt;}
.y100_c00436{bottom:313.890067pt;}
.yff_c00436{bottom:314.085540pt;}
.yfe_c00436{bottom:314.366920pt;}
.yfd_c00436{bottom:339.496527pt;}
.yfc_c00436{bottom:341.666693pt;}
.yfb_c00436{bottom:342.273133pt;}
.yfa_c00436{bottom:343.059053pt;}
.yf9_c00436{bottom:345.215360pt;}
.yf8_c00436{bottom:345.993387pt;}
.yf7_c00436{bottom:347.749733pt;}
.yf6_c00436{bottom:348.729307pt;}
.yf5_c00436{bottom:349.903800pt;}
.yf4_c00436{bottom:350.853353pt;}
.yf3_c00436{bottom:372.960640pt;}
.yf2_c00436{bottom:373.896253pt;}
.yf1_c00436{bottom:375.018193pt;}
.yf0_c00436{bottom:375.397053pt;}
.yef_c00436{bottom:376.328673pt;}
.yee_c00436{bottom:377.445380pt;}
.yed_c00436{bottom:379.119560pt;}
.yec_c00436{bottom:380.778833pt;}
.yeb_c00436{bottom:381.357427pt;}
.yea_c00436{bottom:382.295880pt;}
.ye9_c00436{bottom:404.050173pt;}
.ye8_c00436{bottom:406.554727pt;}
.ye7_c00436{bottom:407.105900pt;}
.ye6_c00436{bottom:407.520127pt;}
.ye5_c00436{bottom:407.932993pt;}
.ye4_c00436{bottom:408.897660pt;}
.ye3_c00436{bottom:409.298060pt;}
.ye2_c00436{bottom:409.866500pt;}
.ye1_c00436{bottom:411.354773pt;}
.ye0_c00436{bottom:412.870053pt;}
.ydf_c00436{bottom:413.259113pt;}
.yde_c00436{bottom:435.927073pt;}
.ydd_c00436{bottom:436.599813pt;}
.ydc_c00436{bottom:436.999480pt;}
.ydb_c00436{bottom:437.358253pt;}
.yda_c00436{bottom:438.260787pt;}
.yd9_c00436{bottom:438.644560pt;}
.yd8_c00436{bottom:439.542833pt;}
.yd7_c00436{bottom:440.292747pt;}
.yd6_c00436{bottom:440.935940pt;}
.yd5_c00436{bottom:441.559500pt;}
.yd4_c00436{bottom:442.973527pt;}
.yd3_c00436{bottom:443.344233pt;}
.yd2_c00436{bottom:444.224627pt;}
.yd1_c00436{bottom:475.264947pt;}
.yd0_c00436{bottom:475.265153pt;}
.ycf_c00436{bottom:475.265247pt;}
.ycd_c00436{bottom:475.265293pt;}
.yce_c00436{bottom:475.265353pt;}
.yc5_c00436{bottom:475.265680pt;}
.ycc_c00436{bottom:475.265787pt;}
.ycb_c00436{bottom:475.265800pt;}
.yc7_c00436{bottom:475.265933pt;}
.yc6_c00436{bottom:475.266027pt;}
.yc8_c00436{bottom:475.266207pt;}
.yca_c00436{bottom:475.266273pt;}
.yc9_c00436{bottom:475.266367pt;}
.yc4_c00436{bottom:500.525647pt;}
.yc3_c00436{bottom:501.124873pt;}
.yc2_c00436{bottom:501.727887pt;}
.yc1_c00436{bottom:502.660513pt;}
.yc0_c00436{bottom:503.011773pt;}
.ybf_c00436{bottom:504.071320pt;}
.ybe_c00436{bottom:504.900380pt;}
.ybd_c00436{bottom:505.249493pt;}
.ybc_c00436{bottom:505.957600pt;}
.ybb_c00436{bottom:506.300587pt;}
.yba_c00436{bottom:507.352300pt;}
.yb9_c00436{bottom:531.720680pt;}
.yb8_c00436{bottom:532.832560pt;}
.yb7_c00436{bottom:533.238527pt;}
.yb6_c00436{bottom:533.807067pt;}
.yb5_c00436{bottom:534.213333pt;}
.yb4_c00436{bottom:535.155327pt;}
.yb3_c00436{bottom:535.585660pt;}
.yb2_c00436{bottom:536.266647pt;}
.yb1_c00436{bottom:536.962693pt;}
.yb0_c00436{bottom:537.783807pt;}
.yaf_c00436{bottom:538.861353pt;}
.yae_c00436{bottom:539.835560pt;}
.yad_c00436{bottom:540.235520pt;}
.yac_c00436{bottom:562.675560pt;}
.yab_c00436{bottom:563.116560pt;}
.yaa_c00436{bottom:564.196047pt;}
.ya9_c00436{bottom:565.272987pt;}
.ya8_c00436{bottom:565.608853pt;}
.ya7_c00436{bottom:566.046653pt;}
.ya6_c00436{bottom:567.015913pt;}
.ya5_c00436{bottom:567.770887pt;}
.ya4_c00436{bottom:568.084440pt;}
.ya3_c00436{bottom:568.397993pt;}
.ya2_c00436{bottom:569.037053pt;}
.ya1_c00436{bottom:594.585593pt;}
.ya0_c00436{bottom:595.034993pt;}
.y9f_c00436{bottom:596.054753pt;}
.y9e_c00436{bottom:596.500733pt;}
.y9d_c00436{bottom:597.538173pt;}
.y9c_c00436{bottom:598.441773pt;}
.y9b_c00436{bottom:599.165733pt;}
.y9a_c00436{bottom:600.346613pt;}
.y99_c00436{bottom:600.781893pt;}
.y98_c00436{bottom:601.380773pt;}
.y97_c00436{bottom:601.815613pt;}
.y96_c00436{bottom:602.837633pt;}
.y95_c00436{bottom:603.423513pt;}
.y94_c00436{bottom:603.841333pt;}
.y93_c00436{bottom:619.200000pt;}
.y92_c00436{bottom:625.493520pt;}
.y91_c00436{bottom:625.995387pt;}
.y90_c00436{bottom:626.187187pt;}
.y8f_c00436{bottom:627.279667pt;}
.y8e_c00436{bottom:628.059747pt;}
.y8d_c00436{bottom:628.451093pt;}
.y8c_c00436{bottom:629.142360pt;}
.y8b_c00436{bottom:629.523800pt;}
.y8a_c00436{bottom:629.732560pt;}
.y89_c00436{bottom:630.604000pt;}
.y88_c00436{bottom:631.088680pt;}
.y87_c00436{bottom:631.681333pt;}
.y86_c00436{bottom:658.432324pt;}
.y85_c00436{bottom:658.700505pt;}
.y84_c00436{bottom:659.203284pt;}
.y83_c00436{bottom:660.124404pt;}
.y82_c00436{bottom:660.620848pt;}
.y81_c00436{bottom:661.004803pt;}
.y80_c00436{bottom:662.403075pt;}
.y7f_c00436{bottom:663.803987pt;}
.y7e_c00436{bottom:664.197047pt;}
.y7d_c00436{bottom:664.567568pt;}
.y7c_c00436{bottom:665.575439pt;}
.y7b_c00436{bottom:665.965327pt;}
.y7a_c00436{bottom:666.479487pt;}
.y79_c00436{bottom:691.286743pt;}
.y78_c00436{bottom:691.733879pt;}
.y77_c00436{bottom:692.341584pt;}
.y76_c00436{bottom:692.769476pt;}
.y75_c00436{bottom:693.936808pt;}
.y74_c00436{bottom:694.541827pt;}
.y73_c00436{bottom:695.992181pt;}
.y72_c00436{bottom:696.737779pt;}
.y71_c00436{bottom:697.922368pt;}
.y70_c00436{bottom:725.120621pt;}
.y6f_c00436{bottom:725.317097pt;}
.y6e_c00436{bottom:725.592655pt;}
.y6d_c00436{bottom:726.214413pt;}
.y6c_c00436{bottom:727.039321pt;}
.y6b_c00436{bottom:727.177324pt;}
.y6a_c00436{bottom:727.857481pt;}
.y69_c00436{bottom:728.200192pt;}
.y68_c00436{bottom:728.400000pt;}
.y67_c00436{bottom:731.520000pt;}
.y66_c00436{bottom:754.233109pt;}
.y65_c00436{bottom:756.191328pt;}
.y64_c00436{bottom:756.580709pt;}
.y63_c00436{bottom:757.347984pt;}
.y62_c00436{bottom:758.746448pt;}
.y61_c00436{bottom:759.142923pt;}
.y60_c00436{bottom:759.785104pt;}
.y5f_c00436{bottom:760.784629pt;}
.y5e_c00436{bottom:761.177728pt;}
.y5d_c00436{bottom:762.191205pt;}
.y5c_c00436{bottom:763.198443pt;}
.y5b_c00436{bottom:787.060677pt;}
.y5a_c00436{bottom:788.008309pt;}
.y59_c00436{bottom:788.382373pt;}
.y58_c00436{bottom:789.197909pt;}
.y57_c00436{bottom:789.788405pt;}
.y56_c00436{bottom:790.839701pt;}
.y55_c00436{bottom:791.196869pt;}
.y54_c00436{bottom:792.366197pt;}
.y53_c00436{bottom:792.844245pt;}
.y52_c00436{bottom:793.201333pt;}
.y51_c00436{bottom:821.875319pt;}
.y4c_c00436{bottom:821.875583pt;}
.y4d_c00436{bottom:821.875619pt;}
.y4f_c00436{bottom:821.875824pt;}
.y4a_c00436{bottom:821.875840pt;}
.y50_c00436{bottom:821.875913pt;}
.y4e_c00436{bottom:821.875948pt;}
.y4b_c00436{bottom:821.876053pt;}
.y49_c00436{bottom:821.876204pt;}
.y47_c00436{bottom:821.876212pt;}
.y48_c00436{bottom:821.876595pt;}
.y46_c00436{bottom:849.921387pt;}
.y45_c00436{bottom:850.266625pt;}
.y44_c00436{bottom:850.412928pt;}
.y43_c00436{bottom:850.855187pt;}
.y42_c00436{bottom:851.205793pt;}
.y41_c00436{bottom:851.449528pt;}
.y40_c00436{bottom:851.548528pt;}
.y3f_c00436{bottom:851.890219pt;}
.y3e_c00436{bottom:852.178977pt;}
.y3d_c00436{bottom:852.325243pt;}
.y3c_c00436{bottom:852.713309pt;}
.y3b_c00436{bottom:881.226757pt;}
.y3a_c00436{bottom:881.411280pt;}
.y39_c00436{bottom:881.586795pt;}
.y38_c00436{bottom:882.115532pt;}
.y37_c00436{bottom:882.296208pt;}
.y36_c00436{bottom:882.828175pt;}
.y35_c00436{bottom:883.241020pt;}
.y34_c00436{bottom:883.834672pt;}
.y33_c00436{bottom:884.470088pt;}
.y32_c00436{bottom:884.703525pt;}
.y31_c00436{bottom:884.875699pt;}
.y30_c00436{bottom:913.766640pt;}
.y2f_c00436{bottom:914.007391pt;}
.y2e_c00436{bottom:914.668024pt;}
.y2d_c00436{bottom:915.027424pt;}
.y2c_c00436{bottom:915.665380pt;}
.y2b_c00436{bottom:916.444784pt;}
.y2a_c00436{bottom:916.997995pt;}
.y29_c00436{bottom:917.388293pt;}
.y28_c00436{bottom:917.772247pt;}
.y27_c00436{bottom:917.998375pt;}
.y26_c00436{bottom:944.725896pt;}
.y25_c00436{bottom:945.018931pt;}
.y24_c00436{bottom:945.717200pt;}
.y23_c00436{bottom:946.003200pt;}
.y22_c00436{bottom:946.393673pt;}
.y21_c00436{bottom:946.694396pt;}
.y20_c00436{bottom:947.387953pt;}
.y1f_c00436{bottom:947.966195pt;}
.y1e_c00436{bottom:948.260825pt;}
.y1d_c00436{bottom:948.659556pt;}
.y1c_c00436{bottom:949.242556pt;}
.y1b_c00436{bottom:949.535525pt;}
.y1a_c00436{bottom:949.722761pt;}
.y19_c00436{bottom:950.398805pt;}
.y18_c00436{bottom:977.379456pt;}
.y17_c00436{bottom:977.928029pt;}
.y16_c00436{bottom:978.248645pt;}
.y15_c00436{bottom:978.788735pt;}
.y14_c00436{bottom:979.187555pt;}
.y13_c00436{bottom:979.426785pt;}
.y12_c00436{bottom:979.978624pt;}
.y11_c00436{bottom:980.211069pt;}
.y10_c00436{bottom:980.528101pt;}
.yf_c00436{bottom:980.681140pt;}
.ye_c00436{bottom:981.598968pt;}
.yd_c00436{bottom:1008.892283pt;}
.yc_c00436{bottom:1009.095572pt;}
.yb_c00436{bottom:1009.579440pt;}
.ya_c00436{bottom:1009.996136pt;}
.y9_c00436{bottom:1010.407783pt;}
.y8_c00436{bottom:1010.688268pt;}
.y7_c00436{bottom:1011.235985pt;}
.y6_c00436{bottom:1011.439424pt;}
.y5_c00436{bottom:1011.644356pt;}
.y4_c00436{bottom:1012.057636pt;}
.y3_c00436{bottom:1012.259031pt;}
.y2_c00436{bottom:1012.800000pt;}
.y1_c00436{bottom:1067.618667pt;}
.h8_c00436{height:16.000000pt;}
.h2_c00436{height:32.000000pt;}
.h15_c00436{height:37.338112pt;}
.h7_c00436{height:58.670891pt;}
.h12_c00436{height:64.000000pt;}
.h5_c00436{height:64.001568pt;}
.ha_c00436{height:64.003200pt;}
.he_c00436{height:64.007200pt;}
.h3_c00436{height:69.335032pt;}
.h6_c00436{height:69.338325pt;}
.hd_c00436{height:69.341133pt;}
.h10_c00436{height:74.666667pt;}
.hb_c00436{height:74.675066pt;}
.h14_c00436{height:80.000000pt;}
.h4_c00436{height:80.001960pt;}
.hc_c00436{height:80.008999pt;}
.h9_c00436{height:85.335424pt;}
.hf_c00436{height:90.676866pt;}
.h11_c00436{height:96.000000pt;}
.h13_c00436{height:101.333333pt;}
.h1_c00436{height:1112.000000pt;}
.h0_c00436{height:1112.133333pt;}
.w0_c00436{width:813.333333pt;}
.x0_c00436{left:0.000000pt;}
.xc6_c00436{left:93.836000pt;}
.xb1_c00436{left:95.584820pt;}
.xbd_c00436{left:96.480000pt;}
.x81_c00436{left:97.476540pt;}
.x52_c00436{left:98.549161pt;}
.x67_c00436{left:99.477333pt;}
.x2c_c00436{left:100.955365pt;}
.x3_c00436{left:102.644000pt;}
.x9a_c00436{left:125.104507pt;}
.x68_c00436{left:127.332000pt;}
.xc7_c00436{left:128.396000pt;}
.x34_c00436{left:129.604923pt;}
.x20_c00436{left:130.706880pt;}
.x53_c00436{left:138.094167pt;}
.xa8_c00436{left:144.492587pt;}
.x87_c00436{left:146.402360pt;}
.xb2_c00436{left:155.109247pt;}
.x5d_c00436{left:157.293333pt;}
.x90_c00436{left:165.425253pt;}
.x69_c00436{left:166.390667pt;}
.x54_c00436{left:168.076907pt;}
.x17_c00436{left:170.001781pt;}
.xbe_c00436{left:173.665333pt;}
.x88_c00436{left:175.926333pt;}
.x41_c00436{left:177.695835pt;}
.x21_c00436{left:178.699877pt;}
.x4_c00436{left:179.925333pt;}
.xb3_c00436{left:182.838327pt;}
.x73_c00436{left:185.597807pt;}
.x18_c00436{left:188.749389pt;}
.xc8_c00436{left:191.772000pt;}
.xa3_c00436{left:192.983933pt;}
.x91_c00436{left:193.962113pt;}
.x3a_c00436{left:196.893333pt;}
.xbf_c00436{left:201.749333pt;}
.xa9_c00436{left:203.232187pt;}
.x5e_c00436{left:205.761333pt;}
.x2d_c00436{left:207.766192pt;}
.x5_c00436{left:208.696000pt;}
.x74_c00436{left:214.147527pt;}
.xf_c00436{left:218.071501pt;}
.x22_c00436{left:227.408865pt;}
.x9b_c00436{left:233.324793pt;}
.x6a_c00436{left:234.525333pt;}
.x10_c00436{left:237.267371pt;}
.xc3_c00436{left:240.366667pt;}
.xa4_c00436{left:242.388973pt;}
.x35_c00436{left:245.527931pt;}
.xaa_c00436{left:252.177840pt;}
.x42_c00436{left:255.706907pt;}
.xb4_c00436{left:261.043460pt;}
.x6b_c00436{left:263.514667pt;}
.x2e_c00436{left:265.589671pt;}
.x3b_c00436{left:266.488000pt;}
.x6_c00436{left:267.736000pt;}
.xb9_c00436{left:271.200000pt;}
.x7a_c00436{left:273.116420pt;}
.x55_c00436{left:274.128455pt;}
.x26_c00436{left:275.653764pt;}
.x11_c00436{left:276.843091pt;}
.xc5_c00436{left:279.518667pt;}
.xc0_c00436{left:280.702667pt;}
.x75_c00436{left:282.794313pt;}
.x43_c00436{left:285.909205pt;}
.xb5_c00436{left:290.797673pt;}
.x5f_c00436{left:292.905333pt;}
.x4b_c00436{left:294.625333pt;}
.x7_c00436{left:297.012000pt;}
.xc9_c00436{left:299.525333pt;}
.x82_c00436{left:301.747053pt;}
.x6c_c00436{left:303.440000pt;}
.x56_c00436{left:304.373852pt;}
.x12_c00436{left:305.858885pt;}
.x60_c00436{left:313.781333pt;}
.x19_c00436{left:316.180044pt;}
.x4f_c00436{left:324.762824pt;}
.x8_c00436{left:326.074667pt;}
.xad_c00436{left:329.626407pt;}
.x6d_c00436{left:332.458667pt;}
.x2f_c00436{left:334.022632pt;}
.x9c_c00436{left:339.655727pt;}
.x1a_c00436{left:345.698095pt;}
.xc4_c00436{left:348.406667pt;}
.xba_c00436{left:349.440000pt;}
.x92_c00436{left:350.694813pt;}
.x61_c00436{left:351.925333pt;}
.x30_c00436{left:353.689569pt;}
.x89_c00436{left:360.027753pt;}
.x44_c00436{left:362.757611pt;}
.x36_c00436{left:363.851060pt;}
.xca_c00436{left:368.202667pt;}
.xbb_c00436{left:369.600000pt;}
.x76_c00436{left:370.883593pt;}
.x13_c00436{left:374.787733pt;}
.xab_c00436{left:378.904340pt;}
.x1_c00436{left:379.920000pt;}
.x7b_c00436{left:381.462040pt;}
.x8a_c00436{left:387.151187pt;}
.x23_c00436{left:393.971699pt;}
.xcb_c00436{left:396.762667pt;}
.xb6_c00436{left:398.570373pt;}
.x93_c00436{left:400.153627pt;}
.x2_c00436{left:401.760000pt;}
.x9_c00436{left:404.320000pt;}
.x9d_c00436{left:408.779413pt;}
.x6e_c00436{left:411.184000pt;}
.x45_c00436{left:412.161019pt;}
.x8b_c00436{left:418.834307pt;}
.x50_c00436{left:421.474744pt;}
.x7c_c00436{left:430.150780pt;}
.x77_c00436{left:441.221147pt;}
.x27_c00436{left:443.440273pt;}
.xa_c00436{left:444.389333pt;}
.xa5_c00436{left:448.335300pt;}
.x14_c00436{left:454.699183pt;}
.xcc_c00436{left:456.085333pt;}
.x94_c00436{left:457.794013pt;}
.x83_c00436{left:459.216820pt;}
.x62_c00436{left:460.186667pt;}
.x37_c00436{left:462.493228pt;}
.x1b_c00436{left:472.904759pt;}
.x9e_c00436{left:477.713787pt;}
.x3c_c00436{left:481.304000pt;}
.x8c_c00436{left:486.761587pt;}
.x84_c00436{left:488.502140pt;}
.x38_c00436{left:491.053295pt;}
.x4c_c00436{left:501.292000pt;}
.xb_c00436{left:503.196000pt;}
.xcd_c00436{left:505.073333pt;}
.xae_c00436{left:506.068960pt;}
.x9f_c00436{left:507.194227pt;}
.x8d_c00436{left:516.045500pt;}
.x24_c00436{left:518.545488pt;}
.x57_c00436{left:519.676808pt;}
.x15_c00436{left:522.140040pt;}
.x95_c00436{left:526.925427pt;}
.x7d_c00436{left:528.129573pt;}
.x3d_c00436{left:530.512000pt;}
.x28_c00436{left:532.007556pt;}
.xa0_c00436{left:536.765333pt;}
.x63_c00436{left:538.194667pt;}
.x51_c00436{left:539.613460pt;}
.x4d_c00436{left:540.657333pt;}
.x1c_c00436{left:541.931303pt;}
.xaf_c00436{left:546.854687pt;}
.x58_c00436{left:549.192900pt;}
.x46_c00436{left:550.182021pt;}
.x8e_c00436{left:554.450140pt;}
.xa6_c00436{left:556.172840pt;}
.x7e_c00436{left:557.170013pt;}
.x31_c00436{left:560.825796pt;}
.xc_c00436{left:562.724000pt;}
.xc1_c00436{left:565.129333pt;}
.x85_c00436{left:566.236307pt;}
.x4e_c00436{left:568.725333pt;}
.x1d_c00436{left:570.597372pt;}
.xa1_c00436{left:576.088580pt;}
.xc2_c00436{left:585.300000pt;}
.x59_c00436{left:587.349961pt;}
.x6f_c00436{left:588.850667pt;}
.x32_c00436{left:590.107540pt;}
.x39_c00436{left:592.095575pt;}
.x3e_c00436{left:598.473333pt;}
.x25_c00436{left:601.111576pt;}
.x47_c00436{left:609.231984pt;}
.xb7_c00436{left:614.946320pt;}
.x86_c00436{left:616.483900pt;}
.x70_c00436{left:618.582667pt;}
.xbc_c00436{left:624.240000pt;}
.x96_c00436{left:625.837720pt;}
.x7f_c00436{left:626.760387pt;}
.x3f_c00436{left:629.645333pt;}
.x16_c00436{left:630.880617pt;}
.xd_c00436{left:631.848000pt;}
.xa7_c00436{left:635.154767pt;}
.x78_c00436{left:637.350260pt;}
.x48_c00436{left:639.235632pt;}
.x1e_c00436{left:640.443907pt;}
.x64_c00436{left:647.442667pt;}
.x29_c00436{left:650.115044pt;}
.x97_c00436{left:653.401207pt;}
.x5a_c00436{left:658.173651pt;}
.x33_c00436{left:659.237844pt;}
.xe_c00436{left:660.889333pt;}
.xac_c00436{left:664.849567pt;}
.x65_c00436{left:666.622667pt;}
.x1f_c00436{left:669.733957pt;}
.xb0_c00436{left:675.089620pt;}
.x79_c00436{left:677.419327pt;}
.x2a_c00436{left:679.379249pt;}
.x98_c00436{left:684.135460pt;}
.x71_c00436{left:686.566667pt;}
.xb8_c00436{left:694.635293pt;}
.x5b_c00436{left:696.854693pt;}
.x8f_c00436{left:704.466547pt;}
.x80_c00436{left:706.220253pt;}
.x40_c00436{left:708.614667pt;}
.x2b_c00436{left:710.120797pt;}
.x72_c00436{left:716.526667pt;}
.x5c_c00436{left:717.451159pt;}
.x99_c00436{left:735.919687pt;}
.xa2_c00436{left:754.972593pt;}
.x49_c00436{left:789.863157pt;}
.x66_c00436{left:803.040000pt;}
.x4a_c00436{left:805.920000pt;}
}





/* 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_c00437 {
    display:none;
  }
  .loading-indicator_c00437.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00437 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_c00437 { 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_c00437" -> "#page-container .classname_c00437")
 */
.pf_c00437 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00437 { /* 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_c00437.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00437 { /* 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_c00437 { /* 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_c00437 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00437 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00437 {overflow:visible;}
  }
}
.c_c00437 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00437 { /* 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_c00437:after { /* webkit #35443 */
  content: '';
}
.t_c00437:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00437 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 */
}
.__c00437 { /* 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_c00437 { /* info for Javascript */
  display:none;
}
.l_c00437 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00437 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00437 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00437: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_c00437 {
    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_c00437.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00437.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_c00437 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00437{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00437;src:url('chunks/assets/font_b11a17f404e7258299fdf971.woff2')format("woff");}.ff1_c00437{font-family:ff1_c00437;line-height:1.000000;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;}
.m55_c00437{transform:matrix(0.149105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149105,0.000000,0.000000,0.250000,0,0);}
.m2b_c00437{transform:matrix(0.164846,0.001154,-0.001750,0.249994,0,0);-ms-transform:matrix(0.164846,0.001154,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.164846,0.001154,-0.001750,0.249994,0,0);}
.m1_c00437{transform:matrix(0.168866,-0.001182,0.001750,0.249994,0,0);-ms-transform:matrix(0.168866,-0.001182,0.001750,0.249994,0,0);-webkit-transform:matrix(0.168866,-0.001182,0.001750,0.249994,0,0);}
.m2e_c00437{transform:matrix(0.173166,0.001212,-0.001750,0.249994,0,0);-ms-transform:matrix(0.173166,0.001212,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.173166,0.001212,-0.001750,0.249994,0,0);}
.m9_c00437{transform:matrix(0.174161,-0.001219,0.001750,0.249994,0,0);-ms-transform:matrix(0.174161,-0.001219,0.001750,0.249994,0,0);-webkit-transform:matrix(0.174161,-0.001219,0.001750,0.249994,0,0);}
.m5_c00437{transform:matrix(0.175226,-0.001227,0.001750,0.249994,0,0);-ms-transform:matrix(0.175226,-0.001227,0.001750,0.249994,0,0);-webkit-transform:matrix(0.175226,-0.001227,0.001750,0.249994,0,0);}
.m2d_c00437{transform:matrix(0.179926,0.001259,-0.001750,0.249994,0,0);-ms-transform:matrix(0.179926,0.001259,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.179926,0.001259,-0.001750,0.249994,0,0);}
.m4_c00437{transform:matrix(0.181166,-0.001268,0.001750,0.249994,0,0);-ms-transform:matrix(0.181166,-0.001268,0.001750,0.249994,0,0);-webkit-transform:matrix(0.181166,-0.001268,0.001750,0.249994,0,0);}
.m49_c00437{transform:matrix(0.182800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182800,0.000000,0.000000,0.250000,0,0);}
.m29_c00437{transform:matrix(0.184650,0.001293,-0.001750,0.249994,0,0);-ms-transform:matrix(0.184650,0.001293,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.184650,0.001293,-0.001750,0.249994,0,0);}
.m7_c00437{transform:matrix(0.185080,-0.001296,0.001750,0.249994,0,0);-ms-transform:matrix(0.185080,-0.001296,0.001750,0.249994,0,0);-webkit-transform:matrix(0.185080,-0.001296,0.001750,0.249994,0,0);}
.m3_c00437{transform:matrix(0.188720,-0.001321,0.001750,0.249994,0,0);-ms-transform:matrix(0.188720,-0.001321,0.001750,0.249994,0,0);-webkit-transform:matrix(0.188720,-0.001321,0.001750,0.249994,0,0);}
.m4b_c00437{transform:matrix(0.188775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188775,0.000000,0.000000,0.250000,0,0);}
.m47_c00437{transform:matrix(0.191625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191625,0.000000,0.000000,0.250000,0,0);}
.m21_c00437{transform:matrix(0.194730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194730,0.000000,0.000000,0.250000,0,0);}
.m56_c00437{transform:matrix(0.194835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194835,0.000000,0.000000,0.250000,0,0);}
.m2c_c00437{transform:matrix(0.197500,0.001383,-0.001750,0.249994,0,0);-ms-transform:matrix(0.197500,0.001383,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.197500,0.001383,-0.001750,0.249994,0,0);}
.m4e_c00437{transform:matrix(0.199275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199275,0.000000,0.000000,0.250000,0,0);}
.m4a_c00437{transform:matrix(0.200120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200120,0.000000,0.000000,0.250000,0,0);}
.m4d_c00437{transform:matrix(0.200445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200445,0.000000,0.000000,0.250000,0,0);}
.m53_c00437{transform:matrix(0.202720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202720,0.000000,0.000000,0.250000,0,0);}
.m2f_c00437{transform:matrix(0.203275,0.001423,-0.001750,0.249994,0,0);-ms-transform:matrix(0.203275,0.001423,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.203275,0.001423,-0.001750,0.249994,0,0);}
.m3e_c00437{transform:matrix(0.206470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206470,0.000000,0.000000,0.250000,0,0);}
.m2a_c00437{transform:matrix(0.209640,0.001467,-0.001750,0.249994,0,0);-ms-transform:matrix(0.209640,0.001467,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.209640,0.001467,-0.001750,0.249994,0,0);}
.m20_c00437{transform:matrix(0.211015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211015,0.000000,0.000000,0.250000,0,0);}
.m39_c00437{transform:matrix(0.212125,0.001485,-0.001750,0.249994,0,0);-ms-transform:matrix(0.212125,0.001485,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.212125,0.001485,-0.001750,0.249994,0,0);}
.m8_c00437{transform:matrix(0.216910,-0.001518,0.001750,0.249994,0,0);-ms-transform:matrix(0.216910,-0.001518,0.001750,0.249994,0,0);-webkit-transform:matrix(0.216910,-0.001518,0.001750,0.249994,0,0);}
.m2_c00437{transform:matrix(0.217875,-0.001525,0.001750,0.249994,0,0);-ms-transform:matrix(0.217875,-0.001525,0.001750,0.249994,0,0);-webkit-transform:matrix(0.217875,-0.001525,0.001750,0.249994,0,0);}
.m46_c00437{transform:matrix(0.218290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218290,0.000000,0.000000,0.250000,0,0);}
.m4c_c00437{transform:matrix(0.223605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223605,0.000000,0.000000,0.250000,0,0);}
.m3f_c00437{transform:matrix(0.223760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223760,0.000000,0.000000,0.250000,0,0);}
.m22_c00437{transform:matrix(0.226820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226820,0.000000,0.000000,0.250000,0,0);}
.m23_c00437{transform:matrix(0.227290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227290,0.000000,0.000000,0.250000,0,0);}
.m38_c00437{transform:matrix(0.228114,0.001597,-0.001750,0.249994,0,0);-ms-transform:matrix(0.228114,0.001597,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.228114,0.001597,-0.001750,0.249994,0,0);}
.m4f_c00437{transform:matrix(0.228585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228585,0.000000,0.000000,0.250000,0,0);}
.m10_c00437{transform:matrix(0.229519,-0.001607,0.001750,0.249994,0,0);-ms-transform:matrix(0.229519,-0.001607,0.001750,0.249994,0,0);-webkit-transform:matrix(0.229519,-0.001607,0.001750,0.249994,0,0);}
.md_c00437{transform:matrix(0.234164,-0.001639,0.001750,0.249994,0,0);-ms-transform:matrix(0.234164,-0.001639,0.001750,0.249994,0,0);-webkit-transform:matrix(0.234164,-0.001639,0.001750,0.249994,0,0);}
.m35_c00437{transform:matrix(0.235084,0.001646,-0.001750,0.249994,0,0);-ms-transform:matrix(0.235084,0.001646,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.235084,0.001646,-0.001750,0.249994,0,0);}
.m34_c00437{transform:matrix(0.238579,0.001670,-0.001750,0.249994,0,0);-ms-transform:matrix(0.238579,0.001670,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.238579,0.001670,-0.001750,0.249994,0,0);}
.m50_c00437{transform:matrix(0.239275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239275,0.000000,0.000000,0.250000,0,0);}
.m31_c00437{transform:matrix(0.240469,0.001683,-0.001750,0.249994,0,0);-ms-transform:matrix(0.240469,0.001683,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.240469,0.001683,-0.001750,0.249994,0,0);}
.m26_c00437{transform:matrix(0.240580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240580,0.000000,0.000000,0.250000,0,0);}
.m1f_c00437{transform:matrix(0.240990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240990,0.000000,0.000000,0.250000,0,0);}
.m32_c00437{transform:matrix(0.244214,0.001709,-0.001750,0.249994,0,0);-ms-transform:matrix(0.244214,0.001709,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.244214,0.001709,-0.001750,0.249994,0,0);}
.m59_c00437{transform:matrix(0.244760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244760,0.000000,0.000000,0.250000,0,0);}
.m48_c00437{transform:matrix(0.246205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246205,0.000000,0.000000,0.250000,0,0);}
.m58_c00437{transform:matrix(0.254665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254665,0.000000,0.000000,0.250000,0,0);}
.m43_c00437{transform:matrix(0.257645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257645,0.000000,0.000000,0.250000,0,0);}
.m1e_c00437{transform:matrix(0.262890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262890,0.000000,0.000000,0.250000,0,0);}
.m15_c00437{transform:matrix(0.263539,-0.001845,0.001750,0.249994,0,0);-ms-transform:matrix(0.263539,-0.001845,0.001750,0.249994,0,0);-webkit-transform:matrix(0.263539,-0.001845,0.001750,0.249994,0,0);}
.m42_c00437{transform:matrix(0.264200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264200,0.000000,0.000000,0.250000,0,0);}
.m16_c00437{transform:matrix(0.265224,-0.001857,0.001750,0.249994,0,0);-ms-transform:matrix(0.265224,-0.001857,0.001750,0.249994,0,0);-webkit-transform:matrix(0.265224,-0.001857,0.001750,0.249994,0,0);}
.m12_c00437{transform:matrix(0.274083,-0.001919,0.001750,0.249994,0,0);-ms-transform:matrix(0.274083,-0.001919,0.001750,0.249994,0,0);-webkit-transform:matrix(0.274083,-0.001919,0.001750,0.249994,0,0);}
.m24_c00437{transform:matrix(0.274590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274590,0.000000,0.000000,0.250000,0,0);}
.m30_c00437{transform:matrix(0.275473,0.001928,-0.001750,0.249994,0,0);-ms-transform:matrix(0.275473,0.001928,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.275473,0.001928,-0.001750,0.249994,0,0);}
.m36_c00437{transform:matrix(0.277198,0.001940,-0.001750,0.249994,0,0);-ms-transform:matrix(0.277198,0.001940,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.277198,0.001940,-0.001750,0.249994,0,0);}
.m41_c00437{transform:matrix(0.283510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283510,0.000000,0.000000,0.250000,0,0);}
.m5a_c00437{transform:matrix(0.294985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294985,0.000000,0.000000,0.250000,0,0);}
.m3b_c00437{transform:matrix(0.301168,0.002108,-0.001750,0.249994,0,0);-ms-transform:matrix(0.301168,0.002108,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.301168,0.002108,-0.001750,0.249994,0,0);}
.m17_c00437{transform:matrix(0.307137,-0.002150,0.001750,0.249994,0,0);-ms-transform:matrix(0.307137,-0.002150,0.001750,0.249994,0,0);-webkit-transform:matrix(0.307137,-0.002150,0.001750,0.249994,0,0);}
.m14_c00437{transform:matrix(0.312952,-0.002191,0.001750,0.249994,0,0);-ms-transform:matrix(0.312952,-0.002191,0.001750,0.249994,0,0);-webkit-transform:matrix(0.312952,-0.002191,0.001750,0.249994,0,0);}
.m1b_c00437{transform:matrix(0.313052,-0.002191,0.001750,0.249994,0,0);-ms-transform:matrix(0.313052,-0.002191,0.001750,0.249994,0,0);-webkit-transform:matrix(0.313052,-0.002191,0.001750,0.249994,0,0);}
.m27_c00437{transform:matrix(0.316685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316685,0.000000,0.000000,0.250000,0,0);}
.m37_c00437{transform:matrix(0.318192,0.002227,-0.001750,0.249994,0,0);-ms-transform:matrix(0.318192,0.002227,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.318192,0.002227,-0.001750,0.249994,0,0);}
.m13_c00437{transform:matrix(0.319097,-0.002234,0.001750,0.249994,0,0);-ms-transform:matrix(0.319097,-0.002234,0.001750,0.249994,0,0);-webkit-transform:matrix(0.319097,-0.002234,0.001750,0.249994,0,0);}
.mf_c00437{transform:matrix(0.320327,-0.002242,0.001750,0.249994,0,0);-ms-transform:matrix(0.320327,-0.002242,0.001750,0.249994,0,0);-webkit-transform:matrix(0.320327,-0.002242,0.001750,0.249994,0,0);}
.mb_c00437{transform:matrix(0.323322,-0.002263,0.001750,0.249994,0,0);-ms-transform:matrix(0.323322,-0.002263,0.001750,0.249994,0,0);-webkit-transform:matrix(0.323322,-0.002263,0.001750,0.249994,0,0);}
.m18_c00437{transform:matrix(0.339697,-0.002378,0.001750,0.249994,0,0);-ms-transform:matrix(0.339697,-0.002378,0.001750,0.249994,0,0);-webkit-transform:matrix(0.339697,-0.002378,0.001750,0.249994,0,0);}
.m19_c00437{transform:matrix(0.340107,-0.002381,0.001750,0.249994,0,0);-ms-transform:matrix(0.340107,-0.002381,0.001750,0.249994,0,0);-webkit-transform:matrix(0.340107,-0.002381,0.001750,0.249994,0,0);}
.m3d_c00437{transform:matrix(0.347355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347355,0.000000,0.000000,0.250000,0,0);}
.m44_c00437{transform:matrix(0.352535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352535,0.000000,0.000000,0.250000,0,0);}
.m6_c00437{transform:matrix(0.359351,-0.002515,0.001750,0.249994,0,0);-ms-transform:matrix(0.359351,-0.002515,0.001750,0.249994,0,0);-webkit-transform:matrix(0.359351,-0.002515,0.001750,0.249994,0,0);}
.m1a_c00437{transform:matrix(0.363801,-0.002547,0.001750,0.249994,0,0);-ms-transform:matrix(0.363801,-0.002547,0.001750,0.249994,0,0);-webkit-transform:matrix(0.363801,-0.002547,0.001750,0.249994,0,0);}
.m11_c00437{transform:matrix(0.368811,-0.002582,0.001750,0.249994,0,0);-ms-transform:matrix(0.368811,-0.002582,0.001750,0.249994,0,0);-webkit-transform:matrix(0.368811,-0.002582,0.001750,0.249994,0,0);}
.m1c_c00437{transform:matrix(0.378011,-0.002646,0.001750,0.249994,0,0);-ms-transform:matrix(0.378011,-0.002646,0.001750,0.249994,0,0);-webkit-transform:matrix(0.378011,-0.002646,0.001750,0.249994,0,0);}
.m52_c00437{transform:matrix(0.383310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383310,0.000000,0.000000,0.250000,0,0);}
.m1d_c00437{transform:matrix(0.387621,-0.002713,0.001750,0.249994,0,0);-ms-transform:matrix(0.387621,-0.002713,0.001750,0.249994,0,0);-webkit-transform:matrix(0.387621,-0.002713,0.001750,0.249994,0,0);}
.m28_c00437{transform:matrix(0.393970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393970,0.000000,0.000000,0.250000,0,0);}
.m45_c00437{transform:matrix(0.396590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396590,0.000000,0.000000,0.250000,0,0);}
.m3c_c00437{transform:matrix(0.400420,0.002803,-0.001750,0.249994,0,0);-ms-transform:matrix(0.400420,0.002803,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.400420,0.002803,-0.001750,0.249994,0,0);}
.m0_c00437{transform:matrix(0.403545,-0.002825,0.001750,0.249994,0,0);-ms-transform:matrix(0.403545,-0.002825,0.001750,0.249994,0,0);-webkit-transform:matrix(0.403545,-0.002825,0.001750,0.249994,0,0);}
.m25_c00437{transform:matrix(0.443540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443540,0.000000,0.000000,0.250000,0,0);}
.mc_c00437{transform:matrix(0.498453,-0.003489,0.001750,0.249994,0,0);-ms-transform:matrix(0.498453,-0.003489,0.001750,0.249994,0,0);-webkit-transform:matrix(0.498453,-0.003489,0.001750,0.249994,0,0);}
.m33_c00437{transform:matrix(0.534102,0.003739,-0.001750,0.249994,0,0);-ms-transform:matrix(0.534102,0.003739,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.534102,0.003739,-0.001750,0.249994,0,0);}
.m5b_c00437{transform:matrix(0.534155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534155,0.000000,0.000000,0.250000,0,0);}
.ma_c00437{transform:matrix(0.539897,-0.003779,0.001750,0.249994,0,0);-ms-transform:matrix(0.539897,-0.003779,0.001750,0.249994,0,0);-webkit-transform:matrix(0.539897,-0.003779,0.001750,0.249994,0,0);}
.m5c_c00437{transform:matrix(0.718280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.718280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.718280,0.000000,0.000000,0.250000,0,0);}
.m54_c00437{transform:matrix(0.738205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.738205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.738205,0.000000,0.000000,0.250000,0,0);}
.me_c00437{transform:matrix(0.761381,-0.005330,0.001750,0.249994,0,0);-ms-transform:matrix(0.761381,-0.005330,0.001750,0.249994,0,0);-webkit-transform:matrix(0.761381,-0.005330,0.001750,0.249994,0,0);}
.m57_c00437{transform:matrix(0.873185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.873185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.873185,0.000000,0.000000,0.250000,0,0);}
.m3a_c00437{transform:matrix(0.883763,0.006186,-0.001750,0.249994,0,0);-ms-transform:matrix(0.883763,0.006186,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.883763,0.006186,-0.001750,0.249994,0,0);}
.m51_c00437{transform:matrix(0.906555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.906555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.906555,0.000000,0.000000,0.250000,0,0);}
.m40_c00437{transform:matrix(0.937775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.937775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.937775,0.000000,0.000000,0.250000,0,0);}
.v0_c00437{vertical-align:0.000000px;}
.ls0_c00437{letter-spacing:0.000000px;}
.sc__c00437{text-shadow:none;}
.sc0_c00437{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__c00437{-webkit-text-stroke:0px transparent;}
.sc0_c00437{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00437{word-spacing:0.000000px;}
.fc0_c00437{color:transparent;}
.fs8_c00437{font-size:18.000000px;}
.fs1_c00437{font-size:72.001764px;}
.fs5_c00437{font-size:78.000000px;}
.fs4_c00437{font-size:78.001911px;}
.fs2_c00437{font-size:84.000000px;}
.fs7_c00437{font-size:90.000000px;}
.fs6_c00437{font-size:96.000000px;}
.fs3_c00437{font-size:96.002352px;}
.fs0_c00437{font-size:102.002499px;}
.y0_c00437{bottom:0.000000px;}
.y37_c00437{bottom:726.703500px;}
.y36_c00437{bottom:741.955500px;}
.y35_c00437{bottom:778.117500px;}
.y34_c00437{bottom:815.407500px;}
.y32_c00437{bottom:886.190532px;}
.y31_c00437{bottom:886.190631px;}
.y33_c00437{bottom:886.190752px;}
.y2f_c00437{bottom:886.191259px;}
.y30_c00437{bottom:886.191370px;}
.y2e_c00437{bottom:886.191969px;}
.y2d_c00437{bottom:886.192438px;}
.y2c_c00437{bottom:886.192638px;}
.y2b_c00437{bottom:886.192777px;}
.y2a_c00437{bottom:886.193337px;}
.y29_c00437{bottom:920.855304px;}
.y28_c00437{bottom:921.403446px;}
.y27_c00437{bottom:921.545973px;}
.y26_c00437{bottom:922.092445px;}
.y25_c00437{bottom:922.319130px;}
.y24_c00437{bottom:922.559181px;}
.y23_c00437{bottom:923.099752px;}
.y22_c00437{bottom:923.320861px;}
.y21_c00437{bottom:924.107112px;}
.y20_c00437{bottom:924.481500px;}
.y1f_c00437{bottom:958.068000px;}
.yf_c00437{bottom:1028.562402px;}
.y10_c00437{bottom:1028.694755px;}
.y11_c00437{bottom:1029.652019px;}
.y12_c00437{bottom:1029.897750px;}
.y13_c00437{bottom:1030.128320px;}
.y14_c00437{bottom:1030.502508px;}
.y15_c00437{bottom:1030.888058px;}
.y16_c00437{bottom:1031.292612px;}
.y17_c00437{bottom:1031.504628px;}
.y18_c00437{bottom:1031.908521px;}
.y19_c00437{bottom:1032.252806px;}
.y1a_c00437{bottom:1032.842706px;}
.y1b_c00437{bottom:1033.160268px;}
.y1c_c00437{bottom:1033.195937px;}
.y1d_c00437{bottom:1033.419125px;}
.y1e_c00437{bottom:1033.587471px;}
.y1_c00437{bottom:1065.294000px;}
.y2_c00437{bottom:1066.062642px;}
.y3_c00437{bottom:1066.271067px;}
.y4_c00437{bottom:1066.811113px;}
.y5_c00437{bottom:1067.066379px;}
.y6_c00437{bottom:1067.378145px;}
.y7_c00437{bottom:1067.634135px;}
.y8_c00437{bottom:1068.158694px;}
.y9_c00437{bottom:1068.622196px;}
.ya_c00437{bottom:1068.857742px;}
.yb_c00437{bottom:1069.166904px;}
.yc_c00437{bottom:1069.605268px;}
.yd_c00437{bottom:1069.837917px;}
.ye_c00437{bottom:1069.998441px;}
.ha_c00437{height:18.000000px;}
.h3_c00437{height:72.001764px;}
.h7_c00437{height:78.000000px;}
.h6_c00437{height:78.001911px;}
.h4_c00437{height:84.000000px;}
.h9_c00437{height:90.000000px;}
.h8_c00437{height:96.000000px;}
.h5_c00437{height:96.002352px;}
.h2_c00437{height:102.002499px;}
.h1_c00437{height:1251.000000px;}
.h0_c00437{height:1251.150000px;}
.w0_c00437{width:915.000000px;}
.x0_c00437{left:0.000000px;}
.x41_c00437{left:41.580000px;}
.x1_c00437{left:49.341000px;}
.x2e_c00437{left:55.888163px;}
.xf_c00437{left:67.491572px;}
.x3b_c00437{left:70.200000px;}
.x42_c00437{left:103.950000px;}
.x2f_c00437{left:113.399477px;}
.x43_c00437{left:126.900000px;}
.x2_c00437{left:159.147000px;}
.x44_c00437{left:160.650000px;}
.x1e_c00437{left:170.370000px;}
.x34_c00437{left:185.220000px;}
.x3_c00437{left:188.922000px;}
.x3c_c00437{left:193.860000px;}
.x26_c00437{left:195.354000px;}
.x10_c00437{left:204.243572px;}
.x3d_c00437{left:228.420000px;}
.x11_c00437{left:239.348072px;}
.x30_c00437{left:241.382745px;}
.x1f_c00437{left:248.670000px;}
.x45_c00437{left:261.090000px;}
.x4_c00437{left:266.071500px;}
.x35_c00437{left:270.540000px;}
.x12_c00437{left:272.286572px;}
.x20_c00437{left:281.070000px;}
.x46_c00437{left:294.840000px;}
.x5_c00437{left:302.538000px;}
.x36_c00437{left:305.100000px;}
.x31_c00437{left:317.524973px;}
.x13_c00437{left:325.742072px;}
.x47_c00437{left:326.970000px;}
.x6_c00437{left:347.076000px;}
.x37_c00437{left:349.380000px;}
.x27_c00437{left:361.159500px;}
.x32_c00437{left:370.986087px;}
.x14_c00437{left:380.820572px;}
.x7_c00437{left:383.646000px;}
.x28_c00437{left:392.746500px;}
.x15_c00437{left:438.614072px;}
.x38_c00437{left:449.550000px;}
.x8_c00437{left:458.583000px;}
.x16_c00437{left:468.902072px;}
.x29_c00437{left:469.971000px;}
.x3e_c00437{left:483.570000px;}
.x2a_c00437{left:504.264000px;}
.x21_c00437{left:510.840000px;}
.x39_c00437{left:514.890000px;}
.x9_c00437{left:524.797500px;}
.x17_c00437{left:526.601072px;}
.x2b_c00437{left:536.647500px;}
.x22_c00437{left:538.920000px;}
.x3f_c00437{left:549.450000px;}
.xa_c00437{left:558.447000px;}
.x48_c00437{left:569.700000px;}
.x18_c00437{left:575.784572px;}
.x3a_c00437{left:581.580000px;}
.xb_c00437{left:602.613000px;}
.x49_c00437{left:605.340000px;}
.x23_c00437{left:613.980000px;}
.x2c_c00437{left:635.076000px;}
.x4a_c00437{left:640.440000px;}
.x33_c00437{left:658.001147px;}
.x19_c00437{left:660.056072px;}
.x40_c00437{left:662.850000px;}
.xc_c00437{left:665.236500px;}
.x24_c00437{left:680.400000px;}
.x4b_c00437{left:681.480000px;}
.xd_c00437{left:698.472000px;}
.x1a_c00437{left:705.422072px;}
.x25_c00437{left:708.480000px;}
.x1b_c00437{left:710.517572px;}
.x2d_c00437{left:713.382000px;}
.xe_c00437{left:721.404000px;}
.x1c_c00437{left:742.401572px;}
.x1d_c00437{left:766.451072px;}
@media print{
.v0_c00437{vertical-align:0.000000pt;}
.ls0_c00437{letter-spacing:0.000000pt;}
.ws0_c00437{word-spacing:0.000000pt;}
.fs8_c00437{font-size:16.000000pt;}
.fs1_c00437{font-size:64.001568pt;}
.fs5_c00437{font-size:69.333333pt;}
.fs4_c00437{font-size:69.335032pt;}
.fs2_c00437{font-size:74.666667pt;}
.fs7_c00437{font-size:80.000000pt;}
.fs6_c00437{font-size:85.333333pt;}
.fs3_c00437{font-size:85.335424pt;}
.fs0_c00437{font-size:90.668888pt;}
.y0_c00437{bottom:0.000000pt;}
.y37_c00437{bottom:645.958667pt;}
.y36_c00437{bottom:659.516000pt;}
.y35_c00437{bottom:691.660000pt;}
.y34_c00437{bottom:724.806667pt;}
.y32_c00437{bottom:787.724917pt;}
.y31_c00437{bottom:787.725005pt;}
.y33_c00437{bottom:787.725113pt;}
.y2f_c00437{bottom:787.725564pt;}
.y30_c00437{bottom:787.725663pt;}
.y2e_c00437{bottom:787.726195pt;}
.y2d_c00437{bottom:787.726612pt;}
.y2c_c00437{bottom:787.726789pt;}
.y2b_c00437{bottom:787.726913pt;}
.y2a_c00437{bottom:787.727411pt;}
.y29_c00437{bottom:818.538048pt;}
.y28_c00437{bottom:819.025285pt;}
.y27_c00437{bottom:819.151976pt;}
.y26_c00437{bottom:819.637729pt;}
.y25_c00437{bottom:819.839227pt;}
.y24_c00437{bottom:820.052605pt;}
.y23_c00437{bottom:820.533113pt;}
.y22_c00437{bottom:820.729655pt;}
.y21_c00437{bottom:821.428544pt;}
.y20_c00437{bottom:821.761333pt;}
.y1f_c00437{bottom:851.616000pt;}
.yf_c00437{bottom:914.277691pt;}
.y10_c00437{bottom:914.395337pt;}
.y11_c00437{bottom:915.246239pt;}
.y12_c00437{bottom:915.464667pt;}
.y13_c00437{bottom:915.669617pt;}
.y14_c00437{bottom:916.002229pt;}
.y15_c00437{bottom:916.344940pt;}
.y16_c00437{bottom:916.704544pt;}
.y17_c00437{bottom:916.893003pt;}
.y18_c00437{bottom:917.252019pt;}
.y19_c00437{bottom:917.558049pt;}
.y1a_c00437{bottom:918.082405pt;}
.y1b_c00437{bottom:918.364683pt;}
.y1c_c00437{bottom:918.396388pt;}
.y1d_c00437{bottom:918.594777pt;}
.y1e_c00437{bottom:918.744419pt;}
.y1_c00437{bottom:946.928000pt;}
.y2_c00437{bottom:947.611237pt;}
.y3_c00437{bottom:947.796504pt;}
.y4_c00437{bottom:948.276545pt;}
.y5_c00437{bottom:948.503448pt;}
.y6_c00437{bottom:948.780573pt;}
.y7_c00437{bottom:949.008120pt;}
.y8_c00437{bottom:949.474395pt;}
.y9_c00437{bottom:949.886396pt;}
.ya_c00437{bottom:950.095771pt;}
.yb_c00437{bottom:950.370581pt;}
.yc_c00437{bottom:950.760239pt;}
.yd_c00437{bottom:950.967037pt;}
.ye_c00437{bottom:951.109725pt;}
.ha_c00437{height:16.000000pt;}
.h3_c00437{height:64.001568pt;}
.h7_c00437{height:69.333333pt;}
.h6_c00437{height:69.335032pt;}
.h4_c00437{height:74.666667pt;}
.h9_c00437{height:80.000000pt;}
.h8_c00437{height:85.333333pt;}
.h5_c00437{height:85.335424pt;}
.h2_c00437{height:90.668888pt;}
.h1_c00437{height:1112.000000pt;}
.h0_c00437{height:1112.133333pt;}
.w0_c00437{width:813.333333pt;}
.x0_c00437{left:0.000000pt;}
.x41_c00437{left:36.960000pt;}
.x1_c00437{left:43.858667pt;}
.x2e_c00437{left:49.678367pt;}
.xf_c00437{left:59.992508pt;}
.x3b_c00437{left:62.400000pt;}
.x42_c00437{left:92.400000pt;}
.x2f_c00437{left:100.799535pt;}
.x43_c00437{left:112.800000pt;}
.x2_c00437{left:141.464000pt;}
.x44_c00437{left:142.800000pt;}
.x1e_c00437{left:151.440000pt;}
.x34_c00437{left:164.640000pt;}
.x3_c00437{left:167.930667pt;}
.x3c_c00437{left:172.320000pt;}
.x26_c00437{left:173.648000pt;}
.x10_c00437{left:181.549841pt;}
.x3d_c00437{left:203.040000pt;}
.x11_c00437{left:212.753841pt;}
.x30_c00437{left:214.562440pt;}
.x1f_c00437{left:221.040000pt;}
.x45_c00437{left:232.080000pt;}
.x4_c00437{left:236.508000pt;}
.x35_c00437{left:240.480000pt;}
.x12_c00437{left:242.032508pt;}
.x20_c00437{left:249.840000pt;}
.x46_c00437{left:262.080000pt;}
.x5_c00437{left:268.922667pt;}
.x36_c00437{left:271.200000pt;}
.x31_c00437{left:282.244420pt;}
.x13_c00437{left:289.548508pt;}
.x47_c00437{left:290.640000pt;}
.x6_c00437{left:308.512000pt;}
.x37_c00437{left:310.560000pt;}
.x27_c00437{left:321.030667pt;}
.x32_c00437{left:329.765411pt;}
.x14_c00437{left:338.507175pt;}
.x7_c00437{left:341.018667pt;}
.x28_c00437{left:349.108000pt;}
.x15_c00437{left:389.879175pt;}
.x38_c00437{left:399.600000pt;}
.x8_c00437{left:407.629333pt;}
.x16_c00437{left:416.801841pt;}
.x29_c00437{left:417.752000pt;}
.x3e_c00437{left:429.840000pt;}
.x2a_c00437{left:448.234667pt;}
.x21_c00437{left:454.080000pt;}
.x39_c00437{left:457.680000pt;}
.x9_c00437{left:466.486667pt;}
.x17_c00437{left:468.089841pt;}
.x2b_c00437{left:477.020000pt;}
.x22_c00437{left:479.040000pt;}
.x3f_c00437{left:488.400000pt;}
.xa_c00437{left:496.397333pt;}
.x48_c00437{left:506.400000pt;}
.x18_c00437{left:511.808508pt;}
.x3a_c00437{left:516.960000pt;}
.xb_c00437{left:535.656000pt;}
.x49_c00437{left:538.080000pt;}
.x23_c00437{left:545.760000pt;}
.x2c_c00437{left:564.512000pt;}
.x4a_c00437{left:569.280000pt;}
.x33_c00437{left:584.889908pt;}
.x19_c00437{left:586.716508pt;}
.x40_c00437{left:589.200000pt;}
.xc_c00437{left:591.321333pt;}
.x24_c00437{left:604.800000pt;}
.x4b_c00437{left:605.760000pt;}
.xd_c00437{left:620.864000pt;}
.x1a_c00437{left:627.041841pt;}
.x25_c00437{left:629.760000pt;}
.x1b_c00437{left:631.571175pt;}
.x2d_c00437{left:634.117333pt;}
.xe_c00437{left:641.248000pt;}
.x1c_c00437{left:659.912508pt;}
.x1d_c00437{left:681.289841pt;}
}





/* 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_c00438 {
    display:none;
  }
  .loading-indicator_c00438.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00438 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_c00438 { 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_c00438" -> "#page-container .classname_c00438")
 */
.pf_c00438 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00438 { /* 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_c00438.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00438 { /* 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_c00438 { /* 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_c00438 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00438 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00438 {overflow:visible;}
  }
}
.c_c00438 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00438 { /* 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_c00438:after { /* webkit #35443 */
  content: '';
}
.t_c00438:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00438 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 */
}
.__c00438 { /* 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_c00438 { /* info for Javascript */
  display:none;
}
.l_c00438 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00438 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00438 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00438: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_c00438 {
    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_c00438.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00438.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_c00438 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00438{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00438;src:url('chunks/assets/font_c605e72f209fc835e906f064.woff2')format("woff");}.ff1_c00438{font-family:ff1_c00438;line-height:1.000000;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;}
.mc9_c00438{transform:matrix(0.013635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.013635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.013635,0.000000,0.000000,0.250000,0,0);}
.me8_c00438{transform:matrix(0.111114,0.001556,-0.003500,0.249976,0,0);-ms-transform:matrix(0.111114,0.001556,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.111114,0.001556,-0.003500,0.249976,0,0);}
.mcb_c00438{transform:matrix(0.115318,0.004733,-0.010252,0.249790,0,0);-ms-transform:matrix(0.115318,0.004733,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.115318,0.004733,-0.010252,0.249790,0,0);}
.mee_c00438{transform:matrix(0.124438,0.001742,-0.003500,0.249976,0,0);-ms-transform:matrix(0.124438,0.001742,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.124438,0.001742,-0.003500,0.249976,0,0);}
.m0_c00438{transform:matrix(0.126405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126405,0.000000,0.000000,0.250000,0,0);}
.mec_c00438{transform:matrix(0.129362,0.001811,-0.003500,0.249976,0,0);-ms-transform:matrix(0.129362,0.001811,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.129362,0.001811,-0.003500,0.249976,0,0);}
.me7_c00438{transform:matrix(0.130117,0.001822,-0.003500,0.249976,0,0);-ms-transform:matrix(0.130117,0.001822,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.130117,0.001822,-0.003500,0.249976,0,0);}
.me9_c00438{transform:matrix(0.137372,0.001923,-0.003500,0.249976,0,0);-ms-transform:matrix(0.137372,0.001923,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.137372,0.001923,-0.003500,0.249976,0,0);}
.meb_c00438{transform:matrix(0.137762,0.001929,-0.003500,0.249976,0,0);-ms-transform:matrix(0.137762,0.001929,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.137762,0.001929,-0.003500,0.249976,0,0);}
.mea_c00438{transform:matrix(0.139006,0.001946,-0.003500,0.249976,0,0);-ms-transform:matrix(0.139006,0.001946,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.139006,0.001946,-0.003500,0.249976,0,0);}
.m37_c00438{transform:matrix(0.141752,0.000992,-0.001750,0.249994,0,0);-ms-transform:matrix(0.141752,0.000992,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.141752,0.000992,-0.001750,0.249994,0,0);}
.me5_c00438{transform:matrix(0.149760,0.002097,-0.003500,0.249976,0,0);-ms-transform:matrix(0.149760,0.002097,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.149760,0.002097,-0.003500,0.249976,0,0);}
.med_c00438{transform:matrix(0.152305,0.002132,-0.003500,0.249976,0,0);-ms-transform:matrix(0.152305,0.002132,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.152305,0.002132,-0.003500,0.249976,0,0);}
.me6_c00438{transform:matrix(0.152905,0.002141,-0.003500,0.249976,0,0);-ms-transform:matrix(0.152905,0.002141,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.152905,0.002141,-0.003500,0.249976,0,0);}
.md9_c00438{transform:matrix(0.159052,0.005572,-0.008753,0.249847,0,0);-ms-transform:matrix(0.159052,0.005572,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.159052,0.005572,-0.008753,0.249847,0,0);}
.m2d_c00438{transform:matrix(0.160431,0.001123,-0.001750,0.249994,0,0);-ms-transform:matrix(0.160431,0.001123,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.160431,0.001123,-0.001750,0.249994,0,0);}
.mca_c00438{transform:matrix(0.163200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163200,0.000000,0.000000,0.250000,0,0);}
.m5f_c00438{transform:matrix(0.168484,0.004718,-0.006997,0.249902,0,0);-ms-transform:matrix(0.168484,0.004718,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.168484,0.004718,-0.006997,0.249902,0,0);}
.m64_c00438{transform:matrix(0.171053,0.004789,-0.006997,0.249902,0,0);-ms-transform:matrix(0.171053,0.004789,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.171053,0.004789,-0.006997,0.249902,0,0);}
.mcf_c00438{transform:matrix(0.175752,0.007213,-0.010252,0.249790,0,0);-ms-transform:matrix(0.175752,0.007213,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.175752,0.007213,-0.010252,0.249790,0,0);}
.md2_c00438{transform:matrix(0.176192,0.007231,-0.010252,0.249790,0,0);-ms-transform:matrix(0.176192,0.007231,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.176192,0.007231,-0.010252,0.249790,0,0);}
.ma0_c00438{transform:matrix(0.176276,0.005288,-0.007497,0.249888,0,0);-ms-transform:matrix(0.176276,0.005288,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.176276,0.005288,-0.007497,0.249888,0,0);}
.mda_c00438{transform:matrix(0.181099,0.006345,-0.008753,0.249847,0,0);-ms-transform:matrix(0.181099,0.006345,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.181099,0.006345,-0.008753,0.249847,0,0);}
.m33_c00438{transform:matrix(0.181881,0.001273,-0.001750,0.249994,0,0);-ms-transform:matrix(0.181881,0.001273,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.181881,0.001273,-0.001750,0.249994,0,0);}
.m69_c00438{transform:matrix(0.186027,0.005209,-0.006997,0.249902,0,0);-ms-transform:matrix(0.186027,0.005209,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.186027,0.005209,-0.006997,0.249902,0,0);}
.me0_c00438{transform:matrix(0.187015,0.006552,-0.008753,0.249847,0,0);-ms-transform:matrix(0.187015,0.006552,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.187015,0.006552,-0.008753,0.249847,0,0);}
.md6_c00438{transform:matrix(0.187060,0.006554,-0.008753,0.249847,0,0);-ms-transform:matrix(0.187060,0.006554,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.187060,0.006554,-0.008753,0.249847,0,0);}
.md3_c00438{transform:matrix(0.188102,0.007720,-0.010252,0.249790,0,0);-ms-transform:matrix(0.188102,0.007720,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.188102,0.007720,-0.010252,0.249790,0,0);}
.m67_c00438{transform:matrix(0.188701,0.005284,-0.006997,0.249902,0,0);-ms-transform:matrix(0.188701,0.005284,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.188701,0.005284,-0.006997,0.249902,0,0);}
.mb_c00438{transform:matrix(0.189285,0.001325,-0.001750,0.249994,0,0);-ms-transform:matrix(0.189285,0.001325,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.189285,0.001325,-0.001750,0.249994,0,0);}
.m61_c00438{transform:matrix(0.189701,0.005312,-0.006997,0.249902,0,0);-ms-transform:matrix(0.189701,0.005312,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.189701,0.005312,-0.006997,0.249902,0,0);}
.mdf_c00438{transform:matrix(0.191463,0.006708,-0.008753,0.249847,0,0);-ms-transform:matrix(0.191463,0.006708,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.191463,0.006708,-0.008753,0.249847,0,0);}
.md5_c00438{transform:matrix(0.191729,0.007869,-0.010252,0.249790,0,0);-ms-transform:matrix(0.191729,0.007869,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.191729,0.007869,-0.010252,0.249790,0,0);}
.mcc_c00438{transform:matrix(0.192243,0.007890,-0.010252,0.249790,0,0);-ms-transform:matrix(0.192243,0.007890,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.192243,0.007890,-0.010252,0.249790,0,0);}
.md7_c00438{transform:matrix(0.192287,0.006737,-0.008753,0.249847,0,0);-ms-transform:matrix(0.192287,0.006737,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.192287,0.006737,-0.008753,0.249847,0,0);}
.ma5_c00438{transform:matrix(0.192948,0.005788,-0.007497,0.249888,0,0);-ms-transform:matrix(0.192948,0.005788,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.192948,0.005788,-0.007497,0.249888,0,0);}
.m6a_c00438{transform:matrix(0.193659,0.005422,-0.006997,0.249902,0,0);-ms-transform:matrix(0.193659,0.005422,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.193659,0.005422,-0.006997,0.249902,0,0);}
.m60_c00438{transform:matrix(0.194524,0.005447,-0.006997,0.249902,0,0);-ms-transform:matrix(0.194524,0.005447,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.194524,0.005447,-0.006997,0.249902,0,0);}
.ma_c00438{transform:matrix(0.194665,0.001363,-0.001750,0.249994,0,0);-ms-transform:matrix(0.194665,0.001363,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.194665,0.001363,-0.001750,0.249994,0,0);}
.m3e_c00438{transform:matrix(0.194864,0.005456,-0.006997,0.249902,0,0);-ms-transform:matrix(0.194864,0.005456,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.194864,0.005456,-0.006997,0.249902,0,0);}
.m3_c00438{transform:matrix(0.194935,0.001365,-0.001750,0.249994,0,0);-ms-transform:matrix(0.194935,0.001365,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.194935,0.001365,-0.001750,0.249994,0,0);}
.mbd_c00438{transform:matrix(0.195688,0.007052,-0.009003,0.249838,0,0);-ms-transform:matrix(0.195688,0.007052,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.195688,0.007052,-0.009003,0.249838,0,0);}
.m83_c00438{transform:matrix(0.195823,0.004504,-0.005748,0.249934,0,0);-ms-transform:matrix(0.195823,0.004504,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.195823,0.004504,-0.005748,0.249934,0,0);}
.mcd_c00438{transform:matrix(0.196220,0.008053,-0.010252,0.249790,0,0);-ms-transform:matrix(0.196220,0.008053,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.196220,0.008053,-0.010252,0.249790,0,0);}
.m66_c00438{transform:matrix(0.196363,0.005498,-0.006997,0.249902,0,0);-ms-transform:matrix(0.196363,0.005498,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.196363,0.005498,-0.006997,0.249902,0,0);}
.md4_c00438{transform:matrix(0.196585,0.008068,-0.010252,0.249790,0,0);-ms-transform:matrix(0.196585,0.008068,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.196585,0.008068,-0.010252,0.249790,0,0);}
.m18_c00438{transform:matrix(0.200895,0.001406,-0.001750,0.249994,0,0);-ms-transform:matrix(0.200895,0.001406,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.200895,0.001406,-0.001750,0.249994,0,0);}
.mde_c00438{transform:matrix(0.202011,0.007077,-0.008753,0.249847,0,0);-ms-transform:matrix(0.202011,0.007077,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.202011,0.007077,-0.008753,0.249847,0,0);}
.m22_c00438{transform:matrix(0.202230,0.001416,-0.001750,0.249994,0,0);-ms-transform:matrix(0.202230,0.001416,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.202230,0.001416,-0.001750,0.249994,0,0);}
.md8_c00438{transform:matrix(0.202761,0.007104,-0.008753,0.249847,0,0);-ms-transform:matrix(0.202761,0.007104,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.202761,0.007104,-0.008753,0.249847,0,0);}
.m63_c00438{transform:matrix(0.203720,0.005704,-0.006997,0.249902,0,0);-ms-transform:matrix(0.203720,0.005704,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.203720,0.005704,-0.006997,0.249902,0,0);}
.mdc_c00438{transform:matrix(0.203885,0.007143,-0.008753,0.249847,0,0);-ms-transform:matrix(0.203885,0.007143,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.203885,0.007143,-0.008753,0.249847,0,0);}
.ma1_c00438{transform:matrix(0.204098,0.006123,-0.007497,0.249888,0,0);-ms-transform:matrix(0.204098,0.006123,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.204098,0.006123,-0.007497,0.249888,0,0);}
.md0_c00438{transform:matrix(0.205647,0.008440,-0.010252,0.249790,0,0);-ms-transform:matrix(0.205647,0.008440,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.205647,0.008440,-0.010252,0.249790,0,0);}
.m68_c00438{transform:matrix(0.205739,0.005761,-0.006997,0.249902,0,0);-ms-transform:matrix(0.205739,0.005761,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.205739,0.005761,-0.006997,0.249902,0,0);}
.m4_c00438{transform:matrix(0.205960,0.001442,-0.001750,0.249994,0,0);-ms-transform:matrix(0.205960,0.001442,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.205960,0.001442,-0.001750,0.249994,0,0);}
.m44_c00438{transform:matrix(0.206519,0.005783,-0.006997,0.249902,0,0);-ms-transform:matrix(0.206519,0.005783,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.206519,0.005783,-0.006997,0.249902,0,0);}
.mf2_c00438{transform:matrix(0.207375,0.002903,-0.003500,0.249976,0,0);-ms-transform:matrix(0.207375,0.002903,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.207375,0.002903,-0.003500,0.249976,0,0);}
.mce_c00438{transform:matrix(0.207725,0.008525,-0.010252,0.249790,0,0);-ms-transform:matrix(0.207725,0.008525,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.207725,0.008525,-0.010252,0.249790,0,0);}
.m62_c00438{transform:matrix(0.208268,0.005832,-0.006997,0.249902,0,0);-ms-transform:matrix(0.208268,0.005832,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.208268,0.005832,-0.006997,0.249902,0,0);}
.mdb_c00438{transform:matrix(0.208372,0.007300,-0.008753,0.249847,0,0);-ms-transform:matrix(0.208372,0.007300,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.208372,0.007300,-0.008753,0.249847,0,0);}
.m85_c00438{transform:matrix(0.209245,0.004813,-0.005748,0.249934,0,0);-ms-transform:matrix(0.209245,0.004813,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.209245,0.004813,-0.005748,0.249934,0,0);}
.m5_c00438{transform:matrix(0.210400,0.001473,-0.001750,0.249994,0,0);-ms-transform:matrix(0.210400,0.001473,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.210400,0.001473,-0.001750,0.249994,0,0);}
.me_c00438{transform:matrix(0.210985,0.001477,-0.001750,0.249994,0,0);-ms-transform:matrix(0.210985,0.001477,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.210985,0.001477,-0.001750,0.249994,0,0);}
.mdd_c00438{transform:matrix(0.211021,0.007393,-0.008753,0.249847,0,0);-ms-transform:matrix(0.211021,0.007393,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.211021,0.007393,-0.008753,0.249847,0,0);}
.md1_c00438{transform:matrix(0.211222,0.008669,-0.010252,0.249790,0,0);-ms-transform:matrix(0.211222,0.008669,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.211222,0.008669,-0.010252,0.249790,0,0);}
.ma6_c00438{transform:matrix(0.211835,0.006355,-0.007497,0.249888,0,0);-ms-transform:matrix(0.211835,0.006355,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.211835,0.006355,-0.007497,0.249888,0,0);}
.m41_c00438{transform:matrix(0.212752,0.005957,-0.006997,0.249902,0,0);-ms-transform:matrix(0.212752,0.005957,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.212752,0.005957,-0.006997,0.249902,0,0);}
.m8e_c00438{transform:matrix(0.213214,0.004904,-0.005748,0.249934,0,0);-ms-transform:matrix(0.213214,0.004904,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.213214,0.004904,-0.005748,0.249934,0,0);}
.m34_c00438{transform:matrix(0.213330,0.001493,-0.001750,0.249994,0,0);-ms-transform:matrix(0.213330,0.001493,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.213330,0.001493,-0.001750,0.249994,0,0);}
.m9_c00438{transform:matrix(0.213505,0.001495,-0.001750,0.249994,0,0);-ms-transform:matrix(0.213505,0.001495,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.213505,0.001495,-0.001750,0.249994,0,0);}
.m7c_c00438{transform:matrix(0.213579,0.004912,-0.005748,0.249934,0,0);-ms-transform:matrix(0.213579,0.004912,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.213579,0.004912,-0.005748,0.249934,0,0);}
.mad_c00438{transform:matrix(0.214276,0.007722,-0.009003,0.249838,0,0);-ms-transform:matrix(0.214276,0.007722,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.214276,0.007722,-0.009003,0.249838,0,0);}
.m65_c00438{transform:matrix(0.214306,0.006001,-0.006997,0.249902,0,0);-ms-transform:matrix(0.214306,0.006001,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.214306,0.006001,-0.006997,0.249902,0,0);}
.m87_c00438{transform:matrix(0.214358,0.004930,-0.005748,0.249934,0,0);-ms-transform:matrix(0.214358,0.004930,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.214358,0.004930,-0.005748,0.249934,0,0);}
.m57_c00438{transform:matrix(0.215800,0.006042,-0.006997,0.249902,0,0);-ms-transform:matrix(0.215800,0.006042,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.215800,0.006042,-0.006997,0.249902,0,0);}
.mc_c00438{transform:matrix(0.217010,0.001519,-0.001750,0.249994,0,0);-ms-transform:matrix(0.217010,0.001519,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.217010,0.001519,-0.001750,0.249994,0,0);}
.m81_c00438{transform:matrix(0.217712,0.005007,-0.005748,0.249934,0,0);-ms-transform:matrix(0.217712,0.005007,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.217712,0.005007,-0.005748,0.249934,0,0);}
.m16_c00438{transform:matrix(0.217855,0.001525,-0.001750,0.249994,0,0);-ms-transform:matrix(0.217855,0.001525,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.217855,0.001525,-0.001750,0.249994,0,0);}
.mb1_c00438{transform:matrix(0.218783,0.007884,-0.009003,0.249838,0,0);-ms-transform:matrix(0.218783,0.007884,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.218783,0.007884,-0.009003,0.249838,0,0);}
.m2_c00438{transform:matrix(0.219145,0.001534,-0.001750,0.249994,0,0);-ms-transform:matrix(0.219145,0.001534,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.219145,0.001534,-0.001750,0.249994,0,0);}
.mb8_c00438{transform:matrix(0.219682,0.007916,-0.009003,0.249838,0,0);-ms-transform:matrix(0.219682,0.007916,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.219682,0.007916,-0.009003,0.249838,0,0);}
.mc2_c00438{transform:matrix(0.220067,0.007930,-0.009003,0.249838,0,0);-ms-transform:matrix(0.220067,0.007930,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.220067,0.007930,-0.009003,0.249838,0,0);}
.me3_c00438{transform:matrix(0.221108,0.003096,-0.003500,0.249976,0,0);-ms-transform:matrix(0.221108,0.003096,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.221108,0.003096,-0.003500,0.249976,0,0);}
.m90_c00438{transform:matrix(0.221316,0.005090,-0.005748,0.249934,0,0);-ms-transform:matrix(0.221316,0.005090,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.221316,0.005090,-0.005748,0.249934,0,0);}
.m7b_c00438{transform:matrix(0.221496,0.005094,-0.005748,0.249934,0,0);-ms-transform:matrix(0.221496,0.005094,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.221496,0.005094,-0.005748,0.249934,0,0);}
.m9f_c00438{transform:matrix(0.221545,0.006646,-0.007497,0.249888,0,0);-ms-transform:matrix(0.221545,0.006646,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.221545,0.006646,-0.007497,0.249888,0,0);}
.m9d_c00438{transform:matrix(0.221580,0.006647,-0.007497,0.249888,0,0);-ms-transform:matrix(0.221580,0.006647,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.221580,0.006647,-0.007497,0.249888,0,0);}
.m3c_c00438{transform:matrix(0.221908,0.006213,-0.006997,0.249902,0,0);-ms-transform:matrix(0.221908,0.006213,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.221908,0.006213,-0.006997,0.249902,0,0);}
.mc0_c00438{transform:matrix(0.222021,0.008001,-0.009003,0.249838,0,0);-ms-transform:matrix(0.222021,0.008001,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.222021,0.008001,-0.009003,0.249838,0,0);}
.ma9_c00438{transform:matrix(0.223740,0.008063,-0.009003,0.249838,0,0);-ms-transform:matrix(0.223740,0.008063,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.223740,0.008063,-0.009003,0.249838,0,0);}
.ma4_c00438{transform:matrix(0.223979,0.006719,-0.007497,0.249888,0,0);-ms-transform:matrix(0.223979,0.006719,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.223979,0.006719,-0.007497,0.249888,0,0);}
.mc6_c00438{transform:matrix(0.224454,0.008088,-0.009003,0.249838,0,0);-ms-transform:matrix(0.224454,0.008088,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.224454,0.008088,-0.009003,0.249838,0,0);}
.m42_c00438{transform:matrix(0.225367,0.006310,-0.006997,0.249902,0,0);-ms-transform:matrix(0.225367,0.006310,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.225367,0.006310,-0.006997,0.249902,0,0);}
.mbb_c00438{transform:matrix(0.225524,0.008127,-0.009003,0.249838,0,0);-ms-transform:matrix(0.225524,0.008127,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.225524,0.008127,-0.009003,0.249838,0,0);}
.m19_c00438{transform:matrix(0.225719,0.001580,-0.001750,0.249994,0,0);-ms-transform:matrix(0.225719,0.001580,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.225719,0.001580,-0.001750,0.249994,0,0);}
.m9a_c00438{transform:matrix(0.225923,0.006778,-0.007497,0.249888,0,0);-ms-transform:matrix(0.225923,0.006778,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.225923,0.006778,-0.007497,0.249888,0,0);}
.m5d_c00438{transform:matrix(0.227341,0.006366,-0.006997,0.249902,0,0);-ms-transform:matrix(0.227341,0.006366,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.227341,0.006366,-0.006997,0.249902,0,0);}
.mb9_c00438{transform:matrix(0.227707,0.008206,-0.009003,0.249838,0,0);-ms-transform:matrix(0.227707,0.008206,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.227707,0.008206,-0.009003,0.249838,0,0);}
.m6e_c00438{transform:matrix(0.228071,0.006386,-0.006997,0.249902,0,0);-ms-transform:matrix(0.228071,0.006386,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.228071,0.006386,-0.006997,0.249902,0,0);}
.maf_c00438{transform:matrix(0.228322,0.008228,-0.009003,0.249838,0,0);-ms-transform:matrix(0.228322,0.008228,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.228322,0.008228,-0.009003,0.249838,0,0);}
.mc8_c00438{transform:matrix(0.228347,0.008229,-0.009003,0.249838,0,0);-ms-transform:matrix(0.228347,0.008229,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.228347,0.008229,-0.009003,0.249838,0,0);}
.ma2_c00438{transform:matrix(0.228527,0.006856,-0.007497,0.249888,0,0);-ms-transform:matrix(0.228527,0.006856,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.228527,0.006856,-0.007497,0.249888,0,0);}
.m17_c00438{transform:matrix(0.228554,0.001600,-0.001750,0.249994,0,0);-ms-transform:matrix(0.228554,0.001600,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.228554,0.001600,-0.001750,0.249994,0,0);}
.mbf_c00438{transform:matrix(0.228956,0.008251,-0.009003,0.249838,0,0);-ms-transform:matrix(0.228956,0.008251,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.228956,0.008251,-0.009003,0.249838,0,0);}
.m28_c00438{transform:matrix(0.229119,0.001604,-0.001750,0.249994,0,0);-ms-transform:matrix(0.229119,0.001604,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.229119,0.001604,-0.001750,0.249994,0,0);}
.m25_c00438{transform:matrix(0.229324,0.001605,-0.001750,0.249994,0,0);-ms-transform:matrix(0.229324,0.001605,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.229324,0.001605,-0.001750,0.249994,0,0);}
.me1_c00438{transform:matrix(0.229639,0.008045,-0.008753,0.249847,0,0);-ms-transform:matrix(0.229639,0.008045,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.229639,0.008045,-0.008753,0.249847,0,0);}
.mb2_c00438{transform:matrix(0.229736,0.008279,-0.009003,0.249838,0,0);-ms-transform:matrix(0.229736,0.008279,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.229736,0.008279,-0.009003,0.249838,0,0);}
.m58_c00438{transform:matrix(0.230125,0.006443,-0.006997,0.249902,0,0);-ms-transform:matrix(0.230125,0.006443,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.230125,0.006443,-0.006997,0.249902,0,0);}
.m94_c00438{transform:matrix(0.230826,0.006925,-0.007497,0.249888,0,0);-ms-transform:matrix(0.230826,0.006925,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.230826,0.006925,-0.007497,0.249888,0,0);}
.m3d_c00438{transform:matrix(0.231129,0.006472,-0.006997,0.249902,0,0);-ms-transform:matrix(0.231129,0.006472,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.231129,0.006472,-0.006997,0.249902,0,0);}
.m8a_c00438{transform:matrix(0.231499,0.005324,-0.005748,0.249934,0,0);-ms-transform:matrix(0.231499,0.005324,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.231499,0.005324,-0.005748,0.249934,0,0);}
.m6b_c00438{transform:matrix(0.231534,0.006483,-0.006997,0.249902,0,0);-ms-transform:matrix(0.231534,0.006483,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.231534,0.006483,-0.006997,0.249902,0,0);}
.m93_c00438{transform:matrix(0.231646,0.006949,-0.007497,0.249888,0,0);-ms-transform:matrix(0.231646,0.006949,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.231646,0.006949,-0.007497,0.249888,0,0);}
.m1b_c00438{transform:matrix(0.231724,0.001622,-0.001750,0.249994,0,0);-ms-transform:matrix(0.231724,0.001622,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.231724,0.001622,-0.001750,0.249994,0,0);}
.m3f_c00438{transform:matrix(0.232334,0.006505,-0.006997,0.249902,0,0);-ms-transform:matrix(0.232334,0.006505,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.232334,0.006505,-0.006997,0.249902,0,0);}
.m77_c00438{transform:matrix(0.232364,0.006506,-0.006997,0.249902,0,0);-ms-transform:matrix(0.232364,0.006506,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.232364,0.006506,-0.006997,0.249902,0,0);}
.mbe_c00438{transform:matrix(0.232369,0.008374,-0.009003,0.249838,0,0);-ms-transform:matrix(0.232369,0.008374,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.232369,0.008374,-0.009003,0.249838,0,0);}
.m8f_c00438{transform:matrix(0.232374,0.005345,-0.005748,0.249934,0,0);-ms-transform:matrix(0.232374,0.005345,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.232374,0.005345,-0.005748,0.249934,0,0);}
.m95_c00438{transform:matrix(0.232415,0.006972,-0.007497,0.249888,0,0);-ms-transform:matrix(0.232415,0.006972,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.232415,0.006972,-0.007497,0.249888,0,0);}
.m35_c00438{transform:matrix(0.233389,0.001634,-0.001750,0.249994,0,0);-ms-transform:matrix(0.233389,0.001634,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.233389,0.001634,-0.001750,0.249994,0,0);}
.m97_c00438{transform:matrix(0.233465,0.007004,-0.007497,0.249888,0,0);-ms-transform:matrix(0.233465,0.007004,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.233465,0.007004,-0.007497,0.249888,0,0);}
.m72_c00438{transform:matrix(0.233603,0.006541,-0.006997,0.249902,0,0);-ms-transform:matrix(0.233603,0.006541,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.233603,0.006541,-0.006997,0.249902,0,0);}
.mc5_c00438{transform:matrix(0.233933,0.008430,-0.009003,0.249838,0,0);-ms-transform:matrix(0.233933,0.008430,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.233933,0.008430,-0.009003,0.249838,0,0);}
.m48_c00438{transform:matrix(0.234233,0.006559,-0.006997,0.249902,0,0);-ms-transform:matrix(0.234233,0.006559,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.234233,0.006559,-0.006997,0.249902,0,0);}
.m9e_c00438{transform:matrix(0.234674,0.007040,-0.007497,0.249888,0,0);-ms-transform:matrix(0.234674,0.007040,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.234674,0.007040,-0.007497,0.249888,0,0);}
.m84_c00438{transform:matrix(0.234928,0.005403,-0.005748,0.249934,0,0);-ms-transform:matrix(0.234928,0.005403,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.234928,0.005403,-0.005748,0.249934,0,0);}
.mbc_c00438{transform:matrix(0.234977,0.008468,-0.009003,0.249838,0,0);-ms-transform:matrix(0.234977,0.008468,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.234977,0.008468,-0.009003,0.249838,0,0);}
.m3a_c00438{transform:matrix(0.236244,0.001654,-0.001750,0.249994,0,0);-ms-transform:matrix(0.236244,0.001654,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.236244,0.001654,-0.001750,0.249994,0,0);}
.mef_c00438{transform:matrix(0.236592,0.003312,-0.003500,0.249976,0,0);-ms-transform:matrix(0.236592,0.003312,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.236592,0.003312,-0.003500,0.249976,0,0);}
.m80_c00438{transform:matrix(0.236622,0.005442,-0.005748,0.249934,0,0);-ms-transform:matrix(0.236622,0.005442,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.236622,0.005442,-0.005748,0.249934,0,0);}
.m7f_c00438{transform:matrix(0.236837,0.005447,-0.005748,0.249934,0,0);-ms-transform:matrix(0.236837,0.005447,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.236837,0.005447,-0.005748,0.249934,0,0);}
.m89_c00438{transform:matrix(0.237197,0.005456,-0.005748,0.249934,0,0);-ms-transform:matrix(0.237197,0.005456,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.237197,0.005456,-0.005748,0.249934,0,0);}
.mb3_c00438{transform:matrix(0.237631,0.008563,-0.009003,0.249838,0,0);-ms-transform:matrix(0.237631,0.008563,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.237631,0.008563,-0.009003,0.249838,0,0);}
.m32_c00438{transform:matrix(0.238244,0.001668,-0.001750,0.249994,0,0);-ms-transform:matrix(0.238244,0.001668,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.238244,0.001668,-0.001750,0.249994,0,0);}
.mf0_c00438{transform:matrix(0.239482,0.003353,-0.003500,0.249976,0,0);-ms-transform:matrix(0.239482,0.003353,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.239482,0.003353,-0.003500,0.249976,0,0);}
.m8d_c00438{transform:matrix(0.240032,0.005521,-0.005748,0.249934,0,0);-ms-transform:matrix(0.240032,0.005521,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.240032,0.005521,-0.005748,0.249934,0,0);}
.ma3_c00438{transform:matrix(0.240212,0.007206,-0.007497,0.249888,0,0);-ms-transform:matrix(0.240212,0.007206,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.240212,0.007206,-0.007497,0.249888,0,0);}
.mab_c00438{transform:matrix(0.240244,0.008657,-0.009003,0.249838,0,0);-ms-transform:matrix(0.240244,0.008657,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.240244,0.008657,-0.009003,0.249838,0,0);}
.m40_c00438{transform:matrix(0.240471,0.006733,-0.006997,0.249902,0,0);-ms-transform:matrix(0.240471,0.006733,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.240471,0.006733,-0.006997,0.249902,0,0);}
.m56_c00438{transform:matrix(0.240666,0.006739,-0.006997,0.249902,0,0);-ms-transform:matrix(0.240666,0.006739,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.240666,0.006739,-0.006997,0.249902,0,0);}
.m8c_c00438{transform:matrix(0.240756,0.005537,-0.005748,0.249934,0,0);-ms-transform:matrix(0.240756,0.005537,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.240756,0.005537,-0.005748,0.249934,0,0);}
.m91_c00438{transform:matrix(0.241152,0.007235,-0.007497,0.249888,0,0);-ms-transform:matrix(0.241152,0.007235,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.241152,0.007235,-0.007497,0.249888,0,0);}
.m1d_c00438{transform:matrix(0.241294,0.001689,-0.001750,0.249994,0,0);-ms-transform:matrix(0.241294,0.001689,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.241294,0.001689,-0.001750,0.249994,0,0);}
.m5b_c00438{transform:matrix(0.241900,0.006773,-0.006997,0.249902,0,0);-ms-transform:matrix(0.241900,0.006773,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.241900,0.006773,-0.006997,0.249902,0,0);}
.mf1_c00438{transform:matrix(0.242501,0.003395,-0.003500,0.249976,0,0);-ms-transform:matrix(0.242501,0.003395,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.242501,0.003395,-0.003500,0.249976,0,0);}
.m26_c00438{transform:matrix(0.242574,0.001698,-0.001750,0.249994,0,0);-ms-transform:matrix(0.242574,0.001698,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.242574,0.001698,-0.001750,0.249994,0,0);}
.m3b_c00438{transform:matrix(0.242624,0.001698,-0.001750,0.249994,0,0);-ms-transform:matrix(0.242624,0.001698,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.242624,0.001698,-0.001750,0.249994,0,0);}
.mc3_c00438{transform:matrix(0.243932,0.008790,-0.009003,0.249838,0,0);-ms-transform:matrix(0.243932,0.008790,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.243932,0.008790,-0.009003,0.249838,0,0);}
.mc4_c00438{transform:matrix(0.244386,0.008807,-0.009003,0.249838,0,0);-ms-transform:matrix(0.244386,0.008807,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.244386,0.008807,-0.009003,0.249838,0,0);}
.m38_c00438{transform:matrix(0.244709,0.001713,-0.001750,0.249994,0,0);-ms-transform:matrix(0.244709,0.001713,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.244709,0.001713,-0.001750,0.249994,0,0);}
.m86_c00438{transform:matrix(0.245445,0.005645,-0.005748,0.249934,0,0);-ms-transform:matrix(0.245445,0.005645,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.245445,0.005645,-0.005748,0.249934,0,0);}
.m1_c00438{transform:matrix(0.245690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245690,0.000000,0.000000,0.250000,0,0);}
.mf3_c00438{transform:matrix(0.247076,0.003459,-0.003500,0.249976,0,0);-ms-transform:matrix(0.247076,0.003459,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.247076,0.003459,-0.003500,0.249976,0,0);}
.m45_c00438{transform:matrix(0.247498,0.006930,-0.006997,0.249902,0,0);-ms-transform:matrix(0.247498,0.006930,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.247498,0.006930,-0.006997,0.249902,0,0);}
.m2b_c00438{transform:matrix(0.248019,0.001736,-0.001750,0.249994,0,0);-ms-transform:matrix(0.248019,0.001736,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.248019,0.001736,-0.001750,0.249994,0,0);}
.mb0_c00438{transform:matrix(0.248179,0.008943,-0.009003,0.249838,0,0);-ms-transform:matrix(0.248179,0.008943,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.248179,0.008943,-0.009003,0.249838,0,0);}
.m99_c00438{transform:matrix(0.249593,0.007488,-0.007497,0.249888,0,0);-ms-transform:matrix(0.249593,0.007488,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.249593,0.007488,-0.007497,0.249888,0,0);}
.m1c_c00438{transform:matrix(0.249659,0.001748,-0.001750,0.249994,0,0);-ms-transform:matrix(0.249659,0.001748,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.249659,0.001748,-0.001750,0.249994,0,0);}
.m82_c00438{transform:matrix(0.249929,0.005748,-0.005748,0.249934,0,0);-ms-transform:matrix(0.249929,0.005748,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.249929,0.005748,-0.005748,0.249934,0,0);}
.mae_c00438{transform:matrix(0.250417,0.009024,-0.009003,0.249838,0,0);-ms-transform:matrix(0.250417,0.009024,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.250417,0.009024,-0.009003,0.249838,0,0);}
.mc1_c00438{transform:matrix(0.251032,0.009046,-0.009003,0.249838,0,0);-ms-transform:matrix(0.251032,0.009046,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.251032,0.009046,-0.009003,0.249838,0,0);}
.m5e_c00438{transform:matrix(0.252016,0.007056,-0.006997,0.249902,0,0);-ms-transform:matrix(0.252016,0.007056,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.252016,0.007056,-0.006997,0.249902,0,0);}
.m15_c00438{transform:matrix(0.252204,0.004287,-0.004249,0.249964,0,0);-ms-transform:matrix(0.252204,0.004287,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.252204,0.004287,-0.004249,0.249964,0,0);}
.m9b_c00438{transform:matrix(0.252291,0.007569,-0.007497,0.249888,0,0);-ms-transform:matrix(0.252291,0.007569,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.252291,0.007569,-0.007497,0.249888,0,0);}
.m43_c00438{transform:matrix(0.252326,0.007065,-0.006997,0.249902,0,0);-ms-transform:matrix(0.252326,0.007065,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.252326,0.007065,-0.006997,0.249902,0,0);}
.m53_c00438{transform:matrix(0.252491,0.007070,-0.006997,0.249902,0,0);-ms-transform:matrix(0.252491,0.007070,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.252491,0.007070,-0.006997,0.249902,0,0);}
.m6c_c00438{transform:matrix(0.252726,0.007076,-0.006997,0.249902,0,0);-ms-transform:matrix(0.252726,0.007076,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.252726,0.007076,-0.006997,0.249902,0,0);}
.m36_c00438{transform:matrix(0.253024,0.001771,-0.001750,0.249994,0,0);-ms-transform:matrix(0.253024,0.001771,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.253024,0.001771,-0.001750,0.249994,0,0);}
.m39_c00438{transform:matrix(0.253074,0.001772,-0.001750,0.249994,0,0);-ms-transform:matrix(0.253074,0.001772,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.253074,0.001772,-0.001750,0.249994,0,0);}
.m92_c00438{transform:matrix(0.253446,0.007603,-0.007497,0.249888,0,0);-ms-transform:matrix(0.253446,0.007603,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.253446,0.007603,-0.007497,0.249888,0,0);}
.m75_c00438{transform:matrix(0.253746,0.007105,-0.006997,0.249902,0,0);-ms-transform:matrix(0.253746,0.007105,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.253746,0.007105,-0.006997,0.249902,0,0);}
.m59_c00438{transform:matrix(0.255210,0.007146,-0.006997,0.249902,0,0);-ms-transform:matrix(0.255210,0.007146,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.255210,0.007146,-0.006997,0.249902,0,0);}
.ma7_c00438{transform:matrix(0.255260,0.007658,-0.007497,0.249888,0,0);-ms-transform:matrix(0.255260,0.007658,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.255260,0.007658,-0.007497,0.249888,0,0);}
.m98_c00438{transform:matrix(0.255575,0.007667,-0.007497,0.249888,0,0);-ms-transform:matrix(0.255575,0.007667,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.255575,0.007667,-0.007497,0.249888,0,0);}
.mb5_c00438{transform:matrix(0.255804,0.009218,-0.009003,0.249838,0,0);-ms-transform:matrix(0.255804,0.009218,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.255804,0.009218,-0.009003,0.249838,0,0);}
.mb4_c00438{transform:matrix(0.255874,0.009221,-0.009003,0.249838,0,0);-ms-transform:matrix(0.255874,0.009221,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.255874,0.009221,-0.009003,0.249838,0,0);}
.m47_c00438{transform:matrix(0.256639,0.007186,-0.006997,0.249902,0,0);-ms-transform:matrix(0.256639,0.007186,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.256639,0.007186,-0.006997,0.249902,0,0);}
.mac_c00438{transform:matrix(0.257618,0.009284,-0.009003,0.249838,0,0);-ms-transform:matrix(0.257618,0.009284,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.257618,0.009284,-0.009003,0.249838,0,0);}
.mb6_c00438{transform:matrix(0.257918,0.009294,-0.009003,0.249838,0,0);-ms-transform:matrix(0.257918,0.009294,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.257918,0.009294,-0.009003,0.249838,0,0);}
.m23_c00438{transform:matrix(0.258039,0.001806,-0.001750,0.249994,0,0);-ms-transform:matrix(0.258039,0.001806,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.258039,0.001806,-0.001750,0.249994,0,0);}
.mba_c00438{transform:matrix(0.258117,0.009302,-0.009003,0.249838,0,0);-ms-transform:matrix(0.258117,0.009302,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.258117,0.009302,-0.009003,0.249838,0,0);}
.m5a_c00438{transform:matrix(0.258249,0.007231,-0.006997,0.249902,0,0);-ms-transform:matrix(0.258249,0.007231,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.258249,0.007231,-0.006997,0.249902,0,0);}
.mb7_c00438{transform:matrix(0.258317,0.009309,-0.009003,0.249838,0,0);-ms-transform:matrix(0.258317,0.009309,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.258317,0.009309,-0.009003,0.249838,0,0);}
.m8b_c00438{transform:matrix(0.258587,0.005947,-0.005748,0.249934,0,0);-ms-transform:matrix(0.258587,0.005947,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.258587,0.005947,-0.005748,0.249934,0,0);}
.m73_c00438{transform:matrix(0.259178,0.007257,-0.006997,0.249902,0,0);-ms-transform:matrix(0.259178,0.007257,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.259178,0.007257,-0.006997,0.249902,0,0);}
.mc7_c00438{transform:matrix(0.259646,0.009357,-0.009003,0.249838,0,0);-ms-transform:matrix(0.259646,0.009357,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.259646,0.009357,-0.009003,0.249838,0,0);}
.m76_c00438{transform:matrix(0.260828,0.007303,-0.006997,0.249902,0,0);-ms-transform:matrix(0.260828,0.007303,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.260828,0.007303,-0.006997,0.249902,0,0);}
.m11_c00438{transform:matrix(0.262117,0.004456,-0.004249,0.249964,0,0);-ms-transform:matrix(0.262117,0.004456,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.262117,0.004456,-0.004249,0.249964,0,0);}
.m24_c00438{transform:matrix(0.262424,0.001837,-0.001750,0.249994,0,0);-ms-transform:matrix(0.262424,0.001837,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.262424,0.001837,-0.001750,0.249994,0,0);}
.m71_c00438{transform:matrix(0.262947,0.007363,-0.006997,0.249902,0,0);-ms-transform:matrix(0.262947,0.007363,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.262947,0.007363,-0.006997,0.249902,0,0);}
.m78_c00438{transform:matrix(0.263067,0.007366,-0.006997,0.249902,0,0);-ms-transform:matrix(0.263067,0.007366,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.263067,0.007366,-0.006997,0.249902,0,0);}
.m10_c00438{transform:matrix(0.263982,0.004488,-0.004249,0.249964,0,0);-ms-transform:matrix(0.263982,0.004488,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.263982,0.004488,-0.004249,0.249964,0,0);}
.m20_c00438{transform:matrix(0.264584,0.001852,-0.001750,0.249994,0,0);-ms-transform:matrix(0.264584,0.001852,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.264584,0.001852,-0.001750,0.249994,0,0);}
.m1e_c00438{transform:matrix(0.264799,0.001854,-0.001750,0.249994,0,0);-ms-transform:matrix(0.264799,0.001854,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.264799,0.001854,-0.001750,0.249994,0,0);}
.m52_c00438{transform:matrix(0.265391,0.007431,-0.006997,0.249902,0,0);-ms-transform:matrix(0.265391,0.007431,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.265391,0.007431,-0.006997,0.249902,0,0);}
.m6_c00438{transform:matrix(0.267778,0.001874,-0.001750,0.249994,0,0);-ms-transform:matrix(0.267778,0.001874,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.267778,0.001874,-0.001750,0.249994,0,0);}
.m1f_c00438{transform:matrix(0.268218,0.001878,-0.001750,0.249994,0,0);-ms-transform:matrix(0.268218,0.001878,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.268218,0.001878,-0.001750,0.249994,0,0);}
.m2a_c00438{transform:matrix(0.269078,0.001884,-0.001750,0.249994,0,0);-ms-transform:matrix(0.269078,0.001884,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.269078,0.001884,-0.001750,0.249994,0,0);}
.m4b_c00438{transform:matrix(0.272418,0.007628,-0.006997,0.249902,0,0);-ms-transform:matrix(0.272418,0.007628,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.272418,0.007628,-0.006997,0.249902,0,0);}
.m74_c00438{transform:matrix(0.273133,0.007648,-0.006997,0.249902,0,0);-ms-transform:matrix(0.273133,0.007648,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.273133,0.007648,-0.006997,0.249902,0,0);}
.m54_c00438{transform:matrix(0.273228,0.007650,-0.006997,0.249902,0,0);-ms-transform:matrix(0.273228,0.007650,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.273228,0.007650,-0.006997,0.249902,0,0);}
.mf_c00438{transform:matrix(0.273271,0.004646,-0.004249,0.249964,0,0);-ms-transform:matrix(0.273271,0.004646,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.273271,0.004646,-0.004249,0.249964,0,0);}
.m9c_c00438{transform:matrix(0.275336,0.008260,-0.007497,0.249888,0,0);-ms-transform:matrix(0.275336,0.008260,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.275336,0.008260,-0.007497,0.249888,0,0);}
.m6d_c00438{transform:matrix(0.275517,0.007714,-0.006997,0.249902,0,0);-ms-transform:matrix(0.275517,0.007714,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.275517,0.007714,-0.006997,0.249902,0,0);}
.m4e_c00438{transform:matrix(0.275702,0.007720,-0.006997,0.249902,0,0);-ms-transform:matrix(0.275702,0.007720,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.275702,0.007720,-0.006997,0.249902,0,0);}
.m4d_c00438{transform:matrix(0.278131,0.007788,-0.006997,0.249902,0,0);-ms-transform:matrix(0.278131,0.007788,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.278131,0.007788,-0.006997,0.249902,0,0);}
.m55_c00438{transform:matrix(0.278441,0.007796,-0.006997,0.249902,0,0);-ms-transform:matrix(0.278441,0.007796,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.278441,0.007796,-0.006997,0.249902,0,0);}
.m4f_c00438{transform:matrix(0.280595,0.007857,-0.006997,0.249902,0,0);-ms-transform:matrix(0.280595,0.007857,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.280595,0.007857,-0.006997,0.249902,0,0);}
.m46_c00438{transform:matrix(0.281690,0.007887,-0.006997,0.249902,0,0);-ms-transform:matrix(0.281690,0.007887,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.281690,0.007887,-0.006997,0.249902,0,0);}
.m51_c00438{transform:matrix(0.283349,0.007934,-0.006997,0.249902,0,0);-ms-transform:matrix(0.283349,0.007934,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.283349,0.007934,-0.006997,0.249902,0,0);}
.m31_c00438{transform:matrix(0.283433,0.001984,-0.001750,0.249994,0,0);-ms-transform:matrix(0.283433,0.001984,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.283433,0.001984,-0.001750,0.249994,0,0);}
.m7e_c00438{transform:matrix(0.286534,0.006590,-0.005748,0.249934,0,0);-ms-transform:matrix(0.286534,0.006590,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.286534,0.006590,-0.005748,0.249934,0,0);}
.m50_c00438{transform:matrix(0.286983,0.008036,-0.006997,0.249902,0,0);-ms-transform:matrix(0.286983,0.008036,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.286983,0.008036,-0.006997,0.249902,0,0);}
.m13_c00438{transform:matrix(0.287998,0.004896,-0.004249,0.249964,0,0);-ms-transform:matrix(0.287998,0.004896,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.287998,0.004896,-0.004249,0.249964,0,0);}
.m8_c00438{transform:matrix(0.290918,0.002036,-0.001750,0.249994,0,0);-ms-transform:matrix(0.290918,0.002036,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.290918,0.002036,-0.001750,0.249994,0,0);}
.m49_c00438{transform:matrix(0.291981,0.008175,-0.006997,0.249902,0,0);-ms-transform:matrix(0.291981,0.008175,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.291981,0.008175,-0.006997,0.249902,0,0);}
.m12_c00438{transform:matrix(0.292053,0.004965,-0.004249,0.249964,0,0);-ms-transform:matrix(0.292053,0.004965,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.292053,0.004965,-0.004249,0.249964,0,0);}
.m4c_c00438{transform:matrix(0.292760,0.008197,-0.006997,0.249902,0,0);-ms-transform:matrix(0.292760,0.008197,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.292760,0.008197,-0.006997,0.249902,0,0);}
.m14_c00438{transform:matrix(0.293798,0.004995,-0.004249,0.249964,0,0);-ms-transform:matrix(0.293798,0.004995,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.293798,0.004995,-0.004249,0.249964,0,0);}
.m88_c00438{transform:matrix(0.298056,0.006855,-0.005748,0.249934,0,0);-ms-transform:matrix(0.298056,0.006855,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.298056,0.006855,-0.005748,0.249934,0,0);}
.m29_c00438{transform:matrix(0.298523,0.002090,-0.001750,0.249994,0,0);-ms-transform:matrix(0.298523,0.002090,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.298523,0.002090,-0.001750,0.249994,0,0);}
.m4a_c00438{transform:matrix(0.301462,0.008441,-0.006997,0.249902,0,0);-ms-transform:matrix(0.301462,0.008441,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.301462,0.008441,-0.006997,0.249902,0,0);}
.m5c_c00438{transform:matrix(0.306625,0.008585,-0.006997,0.249902,0,0);-ms-transform:matrix(0.306625,0.008585,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.306625,0.008585,-0.006997,0.249902,0,0);}
.m6f_c00438{transform:matrix(0.312258,0.008743,-0.006997,0.249902,0,0);-ms-transform:matrix(0.312258,0.008743,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.312258,0.008743,-0.006997,0.249902,0,0);}
.me4_c00438{transform:matrix(0.316479,0.004431,-0.003500,0.249976,0,0);-ms-transform:matrix(0.316479,0.004431,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.316479,0.004431,-0.003500,0.249976,0,0);}
.m2c_c00438{transform:matrix(0.320157,0.002241,-0.001750,0.249994,0,0);-ms-transform:matrix(0.320157,0.002241,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.320157,0.002241,-0.001750,0.249994,0,0);}
.me2_c00438{transform:matrix(0.323383,0.004527,-0.003500,0.249976,0,0);-ms-transform:matrix(0.323383,0.004527,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.323383,0.004527,-0.003500,0.249976,0,0);}
.ma8_c00438{transform:matrix(0.333888,0.012032,-0.009003,0.249838,0,0);-ms-transform:matrix(0.333888,0.012032,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.333888,0.012032,-0.009003,0.249838,0,0);}
.maa_c00438{transform:matrix(0.338380,0.012194,-0.009003,0.249838,0,0);-ms-transform:matrix(0.338380,0.012194,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.338380,0.012194,-0.009003,0.249838,0,0);}
.m96_c00438{transform:matrix(0.344805,0.010344,-0.007497,0.249888,0,0);-ms-transform:matrix(0.344805,0.010344,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.344805,0.010344,-0.007497,0.249888,0,0);}
.m70_c00438{transform:matrix(0.345355,0.009670,-0.006997,0.249902,0,0);-ms-transform:matrix(0.345355,0.009670,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.345355,0.009670,-0.006997,0.249902,0,0);}
.m7d_c00438{transform:matrix(0.371247,0.008539,-0.005748,0.249934,0,0);-ms-transform:matrix(0.371247,0.008539,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.371247,0.008539,-0.005748,0.249934,0,0);}
.m2f_c00438{transform:matrix(0.379711,0.002658,-0.001750,0.249994,0,0);-ms-transform:matrix(0.379711,0.002658,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.379711,0.002658,-0.001750,0.249994,0,0);}
.md_c00438{transform:matrix(0.595360,0.004168,-0.001750,0.249994,0,0);-ms-transform:matrix(0.595360,0.004168,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.595360,0.004168,-0.001750,0.249994,0,0);}
.m21_c00438{transform:matrix(0.612385,0.004287,-0.001750,0.249994,0,0);-ms-transform:matrix(0.612385,0.004287,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.612385,0.004287,-0.001750,0.249994,0,0);}
.m30_c00438{transform:matrix(0.640009,0.004480,-0.001750,0.249994,0,0);-ms-transform:matrix(0.640009,0.004480,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.640009,0.004480,-0.001750,0.249994,0,0);}
.m1a_c00438{transform:matrix(0.700268,0.004902,-0.001750,0.249994,0,0);-ms-transform:matrix(0.700268,0.004902,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.700268,0.004902,-0.001750,0.249994,0,0);}
.m7_c00438{transform:matrix(1.114768,0.007803,-0.001750,0.249994,0,0);-ms-transform:matrix(1.114768,0.007803,-0.001750,0.249994,0,0);-webkit-transform:matrix(1.114768,0.007803,-0.001750,0.249994,0,0);}
.m2e_c00438{transform:matrix(1.128357,0.007899,-0.001750,0.249994,0,0);-ms-transform:matrix(1.128357,0.007899,-0.001750,0.249994,0,0);-webkit-transform:matrix(1.128357,0.007899,-0.001750,0.249994,0,0);}
.m27_c00438{transform:matrix(1.129402,0.007906,-0.001750,0.249994,0,0);-ms-transform:matrix(1.129402,0.007906,-0.001750,0.249994,0,0);-webkit-transform:matrix(1.129402,0.007906,-0.001750,0.249994,0,0);}
.m7a_c00438{transform:matrix(1.388795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.388795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.388795,0.000000,0.000000,0.250000,0,0);}
.m79_c00438{transform:matrix(1.903345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.903345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.903345,0.000000,0.000000,0.250000,0,0);}
.v0_c00438{vertical-align:0.000000px;}
.ls0_c00438{letter-spacing:0.000000px;}
.sc__c00438{text-shadow:none;}
.sc0_c00438{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__c00438{-webkit-text-stroke:0px transparent;}
.sc0_c00438{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00438{word-spacing:0.000000px;}
.fc0_c00438{color:transparent;}
.fsb_c00438{font-size:24.000000px;}
.fs6_c00438{font-size:66.001617px;}
.fs3_c00438{font-size:66.009536px;}
.fs8_c00438{font-size:66.025867px;}
.fs4_c00438{font-size:72.001764px;}
.fs9_c00438{font-size:72.028218px;}
.fse_c00438{font-size:77.972578px;}
.fs5_c00438{font-size:78.001911px;}
.fs13_c00438{font-size:78.007644px;}
.fsc_c00438{font-size:78.020628px;}
.fsd_c00438{font-size:78.035092px;}
.fsf_c00438{font-size:84.000000px;}
.fs1_c00438{font-size:84.002058px;}
.fs7_c00438{font-size:84.032922px;}
.fs2_c00438{font-size:90.002205px;}
.fs11_c00438{font-size:95.962841px;}
.fs10_c00438{font-size:95.984735px;}
.fs0_c00438{font-size:96.000000px;}
.fsa_c00438{font-size:96.037625px;}
.fs12_c00438{font-size:132.012935px;}
.y0_c00438{bottom:0.000000px;}
.yf1_c00438{bottom:122.973927px;}
.yef_c00438{bottom:122.973936px;}
.yf2_c00438{bottom:122.974149px;}
.yf0_c00438{bottom:122.974401px;}
.yee_c00438{bottom:122.974494px;}
.yed_c00438{bottom:137.273382px;}
.yec_c00438{bottom:138.536301px;}
.yeb_c00438{bottom:138.986499px;}
.yea_c00438{bottom:139.319433px;}
.ye9_c00438{bottom:139.935258px;}
.ye8_c00438{bottom:140.544846px;}
.ye7_c00438{bottom:140.994414px;}
.ye6_c00438{bottom:141.641256px;}
.ye5_c00438{bottom:143.191812px;}
.ye4_c00438{bottom:144.704820px;}
.ye3_c00438{bottom:145.011189px;}
.ye2_c00438{bottom:146.885082px;}
.ye1_c00438{bottom:146.901000px;}
.ye0_c00438{bottom:174.981360px;}
.ydf_c00438{bottom:176.858497px;}
.yde_c00438{bottom:177.697710px;}
.ydd_c00438{bottom:180.424928px;}
.ydc_c00438{bottom:183.924262px;}
.ydb_c00438{bottom:186.964432px;}
.yda_c00438{bottom:190.841872px;}
.yd9_c00438{bottom:192.411570px;}
.yd8_c00438{bottom:193.153343px;}
.yd7_c00438{bottom:195.836145px;}
.yd6_c00438{bottom:196.585740px;}
.yd5_c00438{bottom:198.456000px;}
.yd4_c00438{bottom:210.980125px;}
.yd3_c00438{bottom:213.343509px;}
.yd2_c00438{bottom:214.690482px;}
.yd1_c00438{bottom:216.042129px;}
.yd0_c00438{bottom:220.648848px;}
.ycf_c00438{bottom:224.654466px;}
.yce_c00438{bottom:226.038401px;}
.ycd_c00438{bottom:230.115543px;}
.ycc_c00438{bottom:232.383909px;}
.ycb_c00438{bottom:233.289496px;}
.yca_c00438{bottom:234.108000px;}
.yc9_c00438{bottom:265.945500px;}
.yc8_c00438{bottom:286.904334px;}
.yc7_c00438{bottom:290.290877px;}
.yc6_c00438{bottom:291.412781px;}
.yc5_c00438{bottom:291.967712px;}
.yc4_c00438{bottom:293.340635px;}
.yc3_c00438{bottom:295.015971px;}
.yc2_c00438{bottom:295.799862px;}
.yc1_c00438{bottom:298.024433px;}
.yc0_c00438{bottom:299.166722px;}
.ybf_c00438{bottom:300.524565px;}
.ybe_c00438{bottom:301.867991px;}
.ybd_c00438{bottom:302.419830px;}
.ybc_c00438{bottom:303.784842px;}
.ybb_c00438{bottom:316.517421px;}
.yba_c00438{bottom:320.109825px;}
.yb9_c00438{bottom:321.316401px;}
.yb8_c00438{bottom:322.528863px;}
.yb7_c00438{bottom:326.890065px;}
.yb6_c00438{bottom:330.935151px;}
.yb5_c00438{bottom:334.827255px;}
.yb4_c00438{bottom:339.568239px;}
.yb3_c00438{bottom:341.575473px;}
.yb2_c00438{bottom:356.025792px;}
.yb1_c00438{bottom:356.842812px;}
.yb0_c00438{bottom:359.692446px;}
.yaf_c00438{bottom:361.271676px;}
.yae_c00438{bottom:364.821744px;}
.yad_c00438{bottom:366.057858px;}
.yac_c00438{bottom:368.809374px;}
.yab_c00438{bottom:370.842960px;}
.yaa_c00438{bottom:372.419112px;}
.ya9_c00438{bottom:373.973934px;}
.ya8_c00438{bottom:375.595500px;}
.ya7_c00438{bottom:403.244310px;}
.ya6_c00438{bottom:404.267490px;}
.ya5_c00438{bottom:405.301425px;}
.ya4_c00438{bottom:406.762680px;}
.ya3_c00438{bottom:407.816295px;}
.ya2_c00438{bottom:409.219815px;}
.ya1_c00438{bottom:410.246415px;}
.ya0_c00438{bottom:411.115185px;}
.y9f_c00438{bottom:411.667635px;}
.y9e_c00438{bottom:413.065125px;}
.y9d_c00438{bottom:414.436815px;}
.y9c_c00438{bottom:426.344385px;}
.y9b_c00438{bottom:428.976975px;}
.y9a_c00438{bottom:430.014270px;}
.y99_c00438{bottom:432.366330px;}
.y98_c00438{bottom:435.025110px;}
.y97_c00438{bottom:435.694935px;}
.y96_c00438{bottom:436.986390px;}
.y95_c00438{bottom:438.614490px;}
.y94_c00438{bottom:440.309280px;}
.y93_c00438{bottom:442.244775px;}
.y92_c00438{bottom:444.916335px;}
.y91_c00438{bottom:446.857500px;}
.y90_c00438{bottom:475.861237px;}
.y8f_c00438{bottom:476.640119px;}
.y8e_c00438{bottom:477.086640px;}
.y8d_c00438{bottom:478.001943px;}
.y8c_c00438{bottom:478.796216px;}
.y8b_c00438{bottom:480.485879px;}
.y8a_c00438{bottom:481.404408px;}
.y89_c00438{bottom:497.817360px;}
.y88_c00438{bottom:499.600734px;}
.y87_c00438{bottom:500.364633px;}
.y86_c00438{bottom:501.906162px;}
.y85_c00438{bottom:502.658365px;}
.y84_c00438{bottom:503.441757px;}
.y83_c00438{bottom:503.943076px;}
.y82_c00438{bottom:505.957566px;}
.y81_c00438{bottom:506.738956px;}
.y80_c00438{bottom:507.771817px;}
.y7f_c00438{bottom:509.030826px;}
.y7e_c00438{bottom:509.765849px;}
.y7d_c00438{bottom:511.267703px;}
.y7c_c00438{bottom:512.029187px;}
.y7b_c00438{bottom:513.277500px;}
.y7a_c00438{bottom:522.720000px;}
.y79_c00438{bottom:536.915190px;}
.y78_c00438{bottom:537.757218px;}
.y77_c00438{bottom:538.892082px;}
.y76_c00438{bottom:539.788416px;}
.y75_c00438{bottom:541.568016px;}
.y74_c00438{bottom:542.876166px;}
.y73_c00438{bottom:543.551838px;}
.y72_c00438{bottom:544.879548px;}
.y71_c00438{bottom:545.314590px;}
.y70_c00438{bottom:546.868854px;}
.y6f_c00438{bottom:547.523328px;}
.y6e_c00438{bottom:549.300354px;}
.y6d_c00438{bottom:550.364208px;}
.y6c_c00438{bottom:551.012148px;}
.y6b_c00438{bottom:570.784374px;}
.y6a_c00438{bottom:572.001120px;}
.y69_c00438{bottom:573.772890px;}
.y68_c00438{bottom:574.731906px;}
.y67_c00438{bottom:575.954712px;}
.y66_c00438{bottom:578.410176px;}
.y65_c00438{bottom:579.095340px;}
.y64_c00438{bottom:581.050920px;}
.y63_c00438{bottom:583.706694px;}
.y62_c00438{bottom:584.204256px;}
.y61_c00438{bottom:585.405972px;}
.y60_c00438{bottom:586.128558px;}
.y5f_c00438{bottom:605.393676px;}
.y5e_c00438{bottom:606.101748px;}
.y5d_c00438{bottom:608.751966px;}
.y5c_c00438{bottom:609.300300px;}
.y5b_c00438{bottom:610.291476px;}
.y5a_c00438{bottom:611.256216px;}
.y59_c00438{bottom:611.987184px;}
.y58_c00438{bottom:612.711618px;}
.y57_c00438{bottom:613.204434px;}
.y56_c00438{bottom:615.647946px;}
.y55_c00438{bottom:618.017424px;}
.y54_c00438{bottom:618.543912px;}
.y53_c00438{bottom:620.434374px;}
.y52_c00438{bottom:644.102400px;}
.y51_c00438{bottom:644.701518px;}
.y50_c00438{bottom:645.817854px;}
.y4f_c00438{bottom:647.163012px;}
.y4e_c00438{bottom:647.761920px;}
.y4d_c00438{bottom:649.695222px;}
.y4c_c00438{bottom:652.187160px;}
.y4b_c00438{bottom:654.917382px;}
.y4a_c00438{bottom:656.862792px;}
.y49_c00438{bottom:657.400446px;}
.y48_c00438{bottom:659.318826px;}
.y47_c00438{bottom:659.875782px;}
.y46_c00438{bottom:660.678750px;}
.y45_c00438{bottom:678.277260px;}
.y44_c00438{bottom:680.117238px;}
.y43_c00438{bottom:681.769056px;}
.y42_c00438{bottom:682.687050px;}
.y41_c00438{bottom:683.586774px;}
.y40_c00438{bottom:686.724216px;}
.y3f_c00438{bottom:689.470596px;}
.y3e_c00438{bottom:690.394470px;}
.y3d_c00438{bottom:693.162018px;}
.y3c_c00438{bottom:694.719000px;}
.y3b_c00438{bottom:721.565394px;}
.y3a_c00438{bottom:724.939223px;}
.y39_c00438{bottom:773.007423px;}
.y38_c00438{bottom:808.514496px;}
.y37_c00438{bottom:846.059563px;}
.y36_c00438{bottom:847.586033px;}
.y35_c00438{bottom:848.837433px;}
.y34_c00438{bottom:848.982995px;}
.y33_c00438{bottom:849.143508px;}
.y32_c00438{bottom:880.192953px;}
.y31_c00438{bottom:921.775480px;}
.y30_c00438{bottom:922.391495px;}
.y2f_c00438{bottom:922.694367px;}
.y2e_c00438{bottom:923.253313px;}
.y2d_c00438{bottom:923.404524px;}
.y2c_c00438{bottom:923.471136px;}
.y2b_c00438{bottom:923.877286px;}
.y2a_c00438{bottom:924.185399px;}
.y29_c00438{bottom:925.015171px;}
.y28_c00438{bottom:956.600833px;}
.y27_c00438{bottom:958.001156px;}
.y26_c00438{bottom:958.464447px;}
.y25_c00438{bottom:958.778250px;}
.y24_c00438{bottom:959.846646px;}
.y23_c00438{bottom:990.793952px;}
.y22_c00438{bottom:991.053321px;}
.y21_c00438{bottom:991.765647px;}
.y20_c00438{bottom:992.384513px;}
.y1f_c00438{bottom:993.005121px;}
.y1e_c00438{bottom:993.698717px;}
.y1d_c00438{bottom:994.044753px;}
.y1c_c00438{bottom:994.409153px;}
.y1b_c00438{bottom:1028.234365px;}
.y1a_c00438{bottom:1029.549302px;}
.y19_c00438{bottom:1030.165735px;}
.y18_c00438{bottom:1030.472062px;}
.y17_c00438{bottom:1031.086176px;}
.y16_c00438{bottom:1031.400000px;}
.y15_c00438{bottom:1059.258738px;}
.y14_c00438{bottom:1060.314820px;}
.y13_c00438{bottom:1061.612821px;}
.y12_c00438{bottom:1062.931044px;}
.y11_c00438{bottom:1064.436258px;}
.y10_c00438{bottom:1065.157806px;}
.yf_c00438{bottom:1067.044500px;}
.ye_c00438{bottom:1099.242139px;}
.yd_c00438{bottom:1100.633001px;}
.yc_c00438{bottom:1101.721945px;}
.yb_c00438{bottom:1102.014937px;}
.ya_c00438{bottom:1102.410000px;}
.y9_c00438{bottom:1135.072686px;}
.y8_c00438{bottom:1135.454917px;}
.y7_c00438{bottom:1136.550561px;}
.y6_c00438{bottom:1137.091353px;}
.y5_c00438{bottom:1137.403245px;}
.y4_c00438{bottom:1137.705792px;}
.y3_c00438{bottom:1137.936361px;}
.y2_c00438{bottom:1138.320000px;}
.y1_c00438{bottom:1214.853000px;}
.hd_c00438{height:24.000000px;}
.h8_c00438{height:66.001617px;}
.h5_c00438{height:66.009536px;}
.ha_c00438{height:66.025867px;}
.h6_c00438{height:72.001764px;}
.hb_c00438{height:72.028218px;}
.h10_c00438{height:77.972578px;}
.h7_c00438{height:78.001911px;}
.h15_c00438{height:78.007644px;}
.he_c00438{height:78.020628px;}
.hf_c00438{height:78.035092px;}
.h11_c00438{height:84.000000px;}
.h3_c00438{height:84.002058px;}
.h9_c00438{height:84.032922px;}
.h4_c00438{height:90.002205px;}
.h13_c00438{height:95.962841px;}
.h12_c00438{height:95.984735px;}
.h2_c00438{height:96.000000px;}
.hc_c00438{height:96.037625px;}
.h14_c00438{height:132.012935px;}
.h1_c00438{height:1251.000000px;}
.h0_c00438{height:1251.150000px;}
.w0_c00438{width:915.000000px;}
.x0_c00438{left:0.000000px;}
.xa3_c00438{left:107.337000px;}
.xa4_c00438{left:108.474000px;}
.xaa_c00438{left:110.431701px;}
.x89_c00438{left:111.568738px;}
.x70_c00438{left:114.059892px;}
.x52_c00438{left:115.312650px;}
.x3b_c00438{left:117.285966px;}
.xab_c00438{left:142.835043px;}
.x53_c00438{left:148.142652px;}
.x3c_c00438{left:149.394654px;}
.x7b_c00438{left:157.001115px;}
.x9c_c00438{left:165.272064px;}
.x8a_c00438{left:167.269482px;}
.x67_c00438{left:170.064000px;}
.x3d_c00438{left:171.698544px;}
.x71_c00438{left:179.639951px;}
.x9d_c00438{left:186.667647px;}
.x17_c00438{left:187.811049px;}
.xb_c00438{left:189.183000px;}
.x3_c00438{left:190.530000px;}
.x7c_c00438{left:200.681505px;}
.x5b_c00438{left:201.893094px;}
.x47_c00438{left:203.007768px;}
.x7d_c00438{left:217.945470px;}
.x81_c00438{left:221.521500px;}
.x54_c00438{left:225.344088px;}
.x31_c00438{left:227.262000px;}
.x13_c00438{left:233.209500px;}
.x94_c00438{left:241.430537px;}
.x8e_c00438{left:242.607312px;}
.x4_c00438{left:245.335500px;}
.x3e_c00438{left:248.414970px;}
.x95_c00438{left:263.495949px;}
.x82_c00438{left:266.519957px;}
.x68_c00438{left:268.470000px;}
.x3f_c00438{left:269.922276px;}
.x18_c00438{left:276.658430px;}
.x5_c00438{left:278.274000px;}
.x32_c00438{left:282.868500px;}
.x9e_c00438{left:284.414802px;}
.xc_c00438{left:287.476500px;}
.x5c_c00438{left:290.717460px;}
.x8f_c00438{left:296.817507px;}
.xe_c00438{left:299.743500px;}
.x22_c00438{left:306.647330px;}
.x83_c00438{left:309.666267px;}
.x96_c00438{left:318.766623px;}
.x6_c00438{left:321.495000px;}
.x5d_c00438{left:323.420268px;}
.x9f_c00438{left:329.218454px;}
.x75_c00438{left:332.487000px;}
.x48_c00438{left:334.689402px;}
.x1e_c00438{left:340.126608px;}
.xf_c00438{left:342.187500px;}
.x55_c00438{left:346.034832px;}
.x40_c00438{left:347.711286px;}
.x23_c00438{left:350.663330px;}
.x7e_c00438{left:353.970825px;}
.x69_c00438{left:355.167000px;}
.x72_c00438{left:357.065159px;}
.x19_c00438{left:363.314321px;}
.x14_c00438{left:364.701000px;}
.x7_c00438{left:366.051000px;}
.xa5_c00438{left:372.279000px;}
.x93_c00438{left:376.110000px;}
.x33_c00438{left:381.709500px;}
.x1f_c00438{left:384.955608px;}
.x76_c00438{left:388.980000px;}
.x6a_c00438{left:400.074000px;}
.x5e_c00438{left:401.125656px;}
.x1_c00438{left:406.620000px;}
.x24_c00438{left:408.684830px;}
.x84_c00438{left:409.836497px;}
.x34_c00438{left:414.705000px;}
.x25_c00438{left:418.200830px;}
.x5f_c00438{left:422.882028px;}
.x2f_c00438{left:425.426495px;}
.x2_c00438{left:430.650000px;}
.x7f_c00438{left:431.939145px;}
.x56_c00438{left:434.909742px;}
.x26_c00438{left:439.802330px;}
.x1a_c00438{left:440.829274px;}
.x8_c00438{left:443.307000px;}
.x49_c00438{left:445.762050px;}
.x29_c00438{left:449.470560px;}
.x20_c00438{left:451.140108px;}
.x15_c00438{left:452.763000px;}
.x73_c00438{left:454.316772px;}
.x41_c00438{left:456.906942px;}
.x90_c00438{left:462.590244px;}
.x80_c00438{left:463.893210px;}
.x57_c00438{left:466.027950px;}
.x4a_c00438{left:468.187830px;}
.x2a_c00438{left:472.401060px;}
.xa6_c00438{left:483.033000px;}
.x77_c00438{left:486.298500px;}
.x60_c00438{left:489.279396px;}
.x2b_c00438{left:493.195560px;}
.x4b_c00438{left:501.083832px;}
.x10_c00438{left:508.272000px;}
.x74_c00438{left:509.975295px;}
.x35_c00438{left:512.790000px;}
.x1b_c00438{left:518.095228px;}
.x27_c00438{left:519.651830px;}
.x6b_c00438{left:521.634000px;}
.x61_c00438{left:523.060956px;}
.xa0_c00438{left:526.666808px;}
.x91_c00438{left:529.524783px;}
.x4c_c00438{left:534.320418px;}
.x6c_c00438{left:543.430500px;}
.x97_c00438{left:549.430728px;}
.x42_c00438{left:556.573800px;}
.xa7_c00438{left:561.348000px;}
.x28_c00438{left:562.919330px;}
.x4d_c00438{left:578.157768px;}
.x11_c00438{left:584.625000px;}
.x62_c00438{left:588.438072px;}
.x78_c00438{left:597.252000px;}
.x9_c00438{left:599.827500px;}
.xa8_c00438{left:604.890000px;}
.x1c_c00438{left:607.212609px;}
.x6d_c00438{left:610.195500px;}
.x85_c00438{left:619.007616px;}
.x4e_c00438{left:623.207328px;}
.x36_c00438{left:624.841500px;}
.x2e_c00438{left:626.410841px;}
.x43_c00438{left:633.876768px;}
.x1d_c00438{left:639.550878px;}
.x16_c00438{left:640.611000px;}
.xd_c00438{left:641.734500px;}
.x12_c00438{left:646.747500px;}
.x4f_c00438{left:648.152028px;}
.x21_c00438{left:651.186108px;}
.xa_c00438{left:654.432000px;}
.x37_c00438{left:656.974500px;}
.x98_c00438{left:661.677369px;}
.x86_c00438{left:662.831248px;}
.x2c_c00438{left:671.967060px;}
.x8b_c00438{left:673.757986px;}
.x79_c00438{left:675.654000px;}
.x58_c00438{left:676.787814px;}
.x38_c00438{left:689.760000px;}
.x99_c00438{left:694.611402px;}
.xa1_c00438{left:704.390406px;}
.x8c_c00438{left:707.240471px;}
.x6e_c00438{left:710.431500px;}
.x44_c00438{left:711.617778px;}
.x63_c00438{left:722.233518px;}
.x9a_c00438{left:727.431549px;}
.x87_c00438{left:741.908592px;}
.x39_c00438{left:748.753500px;}
.x45_c00438{left:756.258516px;}
.x59_c00438{left:757.328838px;}
.x88_c00438{left:764.580897px;}
.x50_c00438{left:768.590730px;}
.x64_c00438{left:779.009244px;}
.x46_c00438{left:780.229032px;}
.xa2_c00438{left:781.922796px;}
.x9b_c00438{left:785.017406px;}
.x92_c00438{left:786.535299px;}
.x6f_c00438{left:787.969500px;}
.xa9_c00438{left:795.024000px;}
.x7a_c00438{left:797.983500px;}
.x51_c00438{left:800.795148px;}
.x8d_c00438{left:806.929682px;}
.x5a_c00438{left:812.632620px;}
.x3a_c00438{left:814.467000px;}
.x65_c00438{left:821.144694px;}
.x2d_c00438{left:890.034060px;}
.x30_c00438{left:907.401995px;}
.x66_c00438{left:909.090000px;}
@media print{
.v0_c00438{vertical-align:0.000000pt;}
.ls0_c00438{letter-spacing:0.000000pt;}
.ws0_c00438{word-spacing:0.000000pt;}
.fsb_c00438{font-size:21.333333pt;}
.fs6_c00438{font-size:58.668104pt;}
.fs3_c00438{font-size:58.675143pt;}
.fs8_c00438{font-size:58.689659pt;}
.fs4_c00438{font-size:64.001568pt;}
.fs9_c00438{font-size:64.025083pt;}
.fse_c00438{font-size:69.308958pt;}
.fs5_c00438{font-size:69.335032pt;}
.fs13_c00438{font-size:69.340128pt;}
.fsc_c00438{font-size:69.351670pt;}
.fsd_c00438{font-size:69.364526pt;}
.fsf_c00438{font-size:74.666667pt;}
.fs1_c00438{font-size:74.668496pt;}
.fs7_c00438{font-size:74.695930pt;}
.fs2_c00438{font-size:80.001960pt;}
.fs11_c00438{font-size:85.300303pt;}
.fs10_c00438{font-size:85.319764pt;}
.fs0_c00438{font-size:85.333333pt;}
.fsa_c00438{font-size:85.366777pt;}
.fs12_c00438{font-size:117.344831pt;}
.y0_c00438{bottom:0.000000pt;}
.yf1_c00438{bottom:109.310157pt;}
.yef_c00438{bottom:109.310165pt;}
.yf2_c00438{bottom:109.310355pt;}
.yf0_c00438{bottom:109.310579pt;}
.yee_c00438{bottom:109.310661pt;}
.yed_c00438{bottom:122.020784pt;}
.yec_c00438{bottom:123.143379pt;}
.yeb_c00438{bottom:123.543555pt;}
.yea_c00438{bottom:123.839496pt;}
.ye9_c00438{bottom:124.386896pt;}
.ye8_c00438{bottom:124.928752pt;}
.ye7_c00438{bottom:125.328368pt;}
.ye6_c00438{bottom:125.903339pt;}
.ye5_c00438{bottom:127.281611pt;}
.ye4_c00438{bottom:128.626507pt;}
.ye3_c00438{bottom:128.898835pt;}
.ye2_c00438{bottom:130.564517pt;}
.ye1_c00438{bottom:130.578667pt;}
.ye0_c00438{bottom:155.538987pt;}
.ydf_c00438{bottom:157.207553pt;}
.yde_c00438{bottom:157.953520pt;}
.ydd_c00438{bottom:160.377713pt;}
.ydc_c00438{bottom:163.488233pt;}
.ydb_c00438{bottom:166.190607pt;}
.yda_c00438{bottom:169.637220pt;}
.yd9_c00438{bottom:171.032507pt;}
.yd8_c00438{bottom:171.691860pt;}
.yd7_c00438{bottom:174.076573pt;}
.yd6_c00438{bottom:174.742880pt;}
.yd5_c00438{bottom:176.405333pt;}
.yd4_c00438{bottom:187.537889pt;}
.yd3_c00438{bottom:189.638675pt;}
.yd2_c00438{bottom:190.835984pt;}
.yd1_c00438{bottom:192.037448pt;}
.yd0_c00438{bottom:196.132309pt;}
.ycf_c00438{bottom:199.692859pt;}
.yce_c00438{bottom:200.923023pt;}
.ycd_c00438{bottom:204.547149pt;}
.ycc_c00438{bottom:206.563475pt;}
.ycb_c00438{bottom:207.368441pt;}
.yca_c00438{bottom:208.096000pt;}
.yc9_c00438{bottom:236.396000pt;}
.yc8_c00438{bottom:255.026075pt;}
.yc7_c00438{bottom:258.036335pt;}
.yc6_c00438{bottom:259.033583pt;}
.yc5_c00438{bottom:259.526855pt;}
.yc4_c00438{bottom:260.747231pt;}
.yc3_c00438{bottom:262.236419pt;}
.yc2_c00438{bottom:262.933211pt;}
.yc1_c00438{bottom:264.910607pt;}
.yc0_c00438{bottom:265.925975pt;}
.ybf_c00438{bottom:267.132947pt;}
.ybe_c00438{bottom:268.327103pt;}
.ybd_c00438{bottom:268.817627pt;}
.ybc_c00438{bottom:270.030971pt;}
.ybb_c00438{bottom:281.348819pt;}
.yba_c00438{bottom:284.542067pt;}
.yb9_c00438{bottom:285.614579pt;}
.yb8_c00438{bottom:286.692323pt;}
.yb7_c00438{bottom:290.568947pt;}
.yb6_c00438{bottom:294.164579pt;}
.yb5_c00438{bottom:297.624227pt;}
.yb4_c00438{bottom:301.838435pt;}
.yb3_c00438{bottom:303.622643pt;}
.yb2_c00438{bottom:316.467371pt;}
.yb1_c00438{bottom:317.193611pt;}
.yb0_c00438{bottom:319.726619pt;}
.yaf_c00438{bottom:321.130379pt;}
.yae_c00438{bottom:324.285995pt;}
.yad_c00438{bottom:325.384763pt;}
.yac_c00438{bottom:327.830555pt;}
.yab_c00438{bottom:329.638187pt;}
.yaa_c00438{bottom:331.039211pt;}
.ya9_c00438{bottom:332.421275pt;}
.ya8_c00438{bottom:333.862667pt;}
.ya7_c00438{bottom:358.439387pt;}
.ya6_c00438{bottom:359.348880pt;}
.ya5_c00438{bottom:360.267933pt;}
.ya4_c00438{bottom:361.566827pt;}
.ya3_c00438{bottom:362.503373pt;}
.ya2_c00438{bottom:363.750947pt;}
.ya1_c00438{bottom:364.663480pt;}
.ya0_c00438{bottom:365.435720pt;}
.y9f_c00438{bottom:365.926787pt;}
.y9e_c00438{bottom:367.169000pt;}
.y9d_c00438{bottom:368.388280pt;}
.y9c_c00438{bottom:378.972787pt;}
.y9b_c00438{bottom:381.312867pt;}
.y9a_c00438{bottom:382.234907pt;}
.y99_c00438{bottom:384.325627pt;}
.y98_c00438{bottom:386.688987pt;}
.y97_c00438{bottom:387.284387pt;}
.y96_c00438{bottom:388.432347pt;}
.y95_c00438{bottom:389.879547pt;}
.y94_c00438{bottom:391.386027pt;}
.y93_c00438{bottom:393.106467pt;}
.y92_c00438{bottom:395.481187pt;}
.y91_c00438{bottom:397.206667pt;}
.y90_c00438{bottom:422.987767pt;}
.y8f_c00438{bottom:423.680105pt;}
.y8e_c00438{bottom:424.077013pt;}
.y8d_c00438{bottom:424.890616pt;}
.y8c_c00438{bottom:425.596636pt;}
.y8b_c00438{bottom:427.098559pt;}
.y8a_c00438{bottom:427.915029pt;}
.y89_c00438{bottom:442.504320pt;}
.y88_c00438{bottom:444.089541pt;}
.y87_c00438{bottom:444.768563pt;}
.y86_c00438{bottom:446.138811pt;}
.y85_c00438{bottom:446.807436pt;}
.y84_c00438{bottom:447.503784pt;}
.y83_c00438{bottom:447.949401pt;}
.y82_c00438{bottom:449.740059pt;}
.y81_c00438{bottom:450.434628pt;}
.y80_c00438{bottom:451.352727pt;}
.y7f_c00438{bottom:452.471845pt;}
.y7e_c00438{bottom:453.125199pt;}
.y7d_c00438{bottom:454.460180pt;}
.y7c_c00438{bottom:455.137055pt;}
.y7b_c00438{bottom:456.246667pt;}
.y7a_c00438{bottom:464.640000pt;}
.y79_c00438{bottom:477.257947pt;}
.y78_c00438{bottom:478.006416pt;}
.y77_c00438{bottom:479.015184pt;}
.y76_c00438{bottom:479.811925pt;}
.y75_c00438{bottom:481.393792pt;}
.y74_c00438{bottom:482.556592pt;}
.y73_c00438{bottom:483.157189pt;}
.y72_c00438{bottom:484.337376pt;}
.y71_c00438{bottom:484.724080pt;}
.y70_c00438{bottom:486.105648pt;}
.y6f_c00438{bottom:486.687403pt;}
.y6e_c00438{bottom:488.266981pt;}
.y6d_c00438{bottom:489.212629pt;}
.y6c_c00438{bottom:489.788576pt;}
.y6b_c00438{bottom:507.363888pt;}
.y6a_c00438{bottom:508.445440pt;}
.y69_c00438{bottom:510.020347pt;}
.y68_c00438{bottom:510.872805pt;}
.y67_c00438{bottom:511.959744pt;}
.y66_c00438{bottom:514.142379pt;}
.y65_c00438{bottom:514.751413pt;}
.y64_c00438{bottom:516.489707pt;}
.y63_c00438{bottom:518.850395pt;}
.y62_c00438{bottom:519.292672pt;}
.y61_c00438{bottom:520.360864pt;}
.y60_c00438{bottom:521.003163pt;}
.y5f_c00438{bottom:538.127712pt;}
.y5e_c00438{bottom:538.757109pt;}
.y5d_c00438{bottom:541.112859pt;}
.y5c_c00438{bottom:541.600267pt;}
.y5b_c00438{bottom:542.481312pt;}
.y5a_c00438{bottom:543.338859pt;}
.y59_c00438{bottom:543.988608pt;}
.y58_c00438{bottom:544.632549pt;}
.y57_c00438{bottom:545.070608pt;}
.y56_c00438{bottom:547.242619pt;}
.y55_c00438{bottom:549.348821pt;}
.y54_c00438{bottom:549.816811pt;}
.y53_c00438{bottom:551.497221pt;}
.y52_c00438{bottom:572.535467pt;}
.y51_c00438{bottom:573.068016pt;}
.y50_c00438{bottom:574.060315pt;}
.y4f_c00438{bottom:575.256011pt;}
.y4e_c00438{bottom:575.788373pt;}
.y4d_c00438{bottom:577.506864pt;}
.y4c_c00438{bottom:579.721920pt;}
.y4b_c00438{bottom:582.148784pt;}
.y4a_c00438{bottom:583.878037pt;}
.y49_c00438{bottom:584.355952pt;}
.y48_c00438{bottom:586.061179pt;}
.y47_c00438{bottom:586.556251pt;}
.y46_c00438{bottom:587.270000pt;}
.y45_c00438{bottom:602.913120pt;}
.y44_c00438{bottom:604.548656pt;}
.y43_c00438{bottom:606.016939pt;}
.y42_c00438{bottom:606.832933pt;}
.y41_c00438{bottom:607.632688pt;}
.y40_c00438{bottom:610.421525pt;}
.y3f_c00438{bottom:612.862752pt;}
.y3e_c00438{bottom:613.683973pt;}
.y3d_c00438{bottom:616.144016pt;}
.y3c_c00438{bottom:617.528000pt;}
.y3b_c00438{bottom:641.391461pt;}
.y3a_c00438{bottom:644.390420pt;}
.y39_c00438{bottom:687.117709pt;}
.y38_c00438{bottom:718.679552pt;}
.y37_c00438{bottom:752.052945pt;}
.y36_c00438{bottom:753.409807pt;}
.y35_c00438{bottom:754.522163pt;}
.y34_c00438{bottom:754.651551pt;}
.y33_c00438{bottom:754.794229pt;}
.y32_c00438{bottom:782.393736pt;}
.y31_c00438{bottom:819.355983pt;}
.y30_c00438{bottom:819.903551pt;}
.y2f_c00438{bottom:820.172771pt;}
.y2e_c00438{bottom:820.669612pt;}
.y2d_c00438{bottom:820.804021pt;}
.y2c_c00438{bottom:820.863232pt;}
.y2b_c00438{bottom:821.224255pt;}
.y2a_c00438{bottom:821.498132pt;}
.y29_c00438{bottom:822.235708pt;}
.y28_c00438{bottom:850.311852pt;}
.y27_c00438{bottom:851.556583pt;}
.y26_c00438{bottom:851.968397pt;}
.y25_c00438{bottom:852.247333pt;}
.y24_c00438{bottom:853.197019pt;}
.y23_c00438{bottom:880.705735pt;}
.y22_c00438{bottom:880.936285pt;}
.y21_c00438{bottom:881.569464pt;}
.y20_c00438{bottom:882.119567pt;}
.y1f_c00438{bottom:882.671219pt;}
.y1e_c00438{bottom:883.287748pt;}
.y1d_c00438{bottom:883.595336pt;}
.y1c_c00438{bottom:883.919247pt;}
.y1b_c00438{bottom:913.986103pt;}
.y1a_c00438{bottom:915.154935pt;}
.y19_c00438{bottom:915.702876pt;}
.y18_c00438{bottom:915.975167pt;}
.y17_c00438{bottom:916.521045pt;}
.y16_c00438{bottom:916.800000pt;}
.y15_c00438{bottom:941.563323pt;}
.y14_c00438{bottom:942.502063pt;}
.y13_c00438{bottom:943.655841pt;}
.y12_c00438{bottom:944.827595pt;}
.y11_c00438{bottom:946.165563pt;}
.y10_c00438{bottom:946.806939pt;}
.yf_c00438{bottom:948.484000pt;}
.ye_c00438{bottom:977.104124pt;}
.yd_c00438{bottom:978.340445pt;}
.yc_c00438{bottom:979.308396pt;}
.yb_c00438{bottom:979.568833pt;}
.ya_c00438{bottom:979.920000pt;}
.y9_c00438{bottom:1008.953499pt;}
.y8_c00438{bottom:1009.293260pt;}
.y7_c00438{bottom:1010.267165pt;}
.y6_c00438{bottom:1010.747869pt;}
.y5_c00438{bottom:1011.025107pt;}
.y4_c00438{bottom:1011.294037pt;}
.y3_c00438{bottom:1011.498988pt;}
.y2_c00438{bottom:1011.840000pt;}
.y1_c00438{bottom:1079.869333pt;}
.hd_c00438{height:21.333333pt;}
.h8_c00438{height:58.668104pt;}
.h5_c00438{height:58.675143pt;}
.ha_c00438{height:58.689659pt;}
.h6_c00438{height:64.001568pt;}
.hb_c00438{height:64.025083pt;}
.h10_c00438{height:69.308958pt;}
.h7_c00438{height:69.335032pt;}
.h15_c00438{height:69.340128pt;}
.he_c00438{height:69.351670pt;}
.hf_c00438{height:69.364526pt;}
.h11_c00438{height:74.666667pt;}
.h3_c00438{height:74.668496pt;}
.h9_c00438{height:74.695930pt;}
.h4_c00438{height:80.001960pt;}
.h13_c00438{height:85.300303pt;}
.h12_c00438{height:85.319764pt;}
.h2_c00438{height:85.333333pt;}
.hc_c00438{height:85.366777pt;}
.h14_c00438{height:117.344831pt;}
.h1_c00438{height:1112.000000pt;}
.h0_c00438{height:1112.133333pt;}
.w0_c00438{width:813.333333pt;}
.x0_c00438{left:0.000000pt;}
.xa3_c00438{left:95.410667pt;}
.xa4_c00438{left:96.421333pt;}
.xaa_c00438{left:98.161512pt;}
.x89_c00438{left:99.172212pt;}
.x70_c00438{left:101.386571pt;}
.x52_c00438{left:102.500133pt;}
.x3b_c00438{left:104.254192pt;}
.xab_c00438{left:126.964483pt;}
.x53_c00438{left:131.682357pt;}
.x3c_c00438{left:132.795248pt;}
.x7b_c00438{left:139.556547pt;}
.x9c_c00438{left:146.908501pt;}
.x8a_c00438{left:148.683984pt;}
.x67_c00438{left:151.168000pt;}
.x3d_c00438{left:152.620928pt;}
.x71_c00438{left:159.679956pt;}
.x9d_c00438{left:165.926797pt;}
.x17_c00438{left:166.943155pt;}
.xb_c00438{left:168.162667pt;}
.x3_c00438{left:169.360000pt;}
.x7c_c00438{left:178.383560pt;}
.x5b_c00438{left:179.460528pt;}
.x47_c00438{left:180.451349pt;}
.x7d_c00438{left:193.729307pt;}
.x81_c00438{left:196.908000pt;}
.x54_c00438{left:200.305856pt;}
.x31_c00438{left:202.010667pt;}
.x13_c00438{left:207.297333pt;}
.x94_c00438{left:214.604921pt;}
.x8e_c00438{left:215.650944pt;}
.x4_c00438{left:218.076000pt;}
.x3e_c00438{left:220.813307pt;}
.x95_c00438{left:234.218621pt;}
.x82_c00438{left:236.906628pt;}
.x68_c00438{left:238.640000pt;}
.x3f_c00438{left:239.930912pt;}
.x18_c00438{left:245.918604pt;}
.x5_c00438{left:247.354667pt;}
.x32_c00438{left:251.438667pt;}
.x9e_c00438{left:252.813157pt;}
.xc_c00438{left:255.534667pt;}
.x5c_c00438{left:258.415520pt;}
.x8f_c00438{left:263.837784pt;}
.xe_c00438{left:266.438667pt;}
.x22_c00438{left:272.575404pt;}
.x83_c00438{left:275.258904pt;}
.x96_c00438{left:283.348109pt;}
.x6_c00438{left:285.773333pt;}
.x5d_c00438{left:287.484683pt;}
.x9f_c00438{left:292.638625pt;}
.x75_c00438{left:295.544000pt;}
.x48_c00438{left:297.501691pt;}
.x1e_c00438{left:302.334763pt;}
.xf_c00438{left:304.166667pt;}
.x55_c00438{left:307.586517pt;}
.x40_c00438{left:309.076699pt;}
.x23_c00438{left:311.700737pt;}
.x7e_c00438{left:314.640733pt;}
.x69_c00438{left:315.704000pt;}
.x72_c00438{left:317.391252pt;}
.x19_c00438{left:322.946063pt;}
.x14_c00438{left:324.178667pt;}
.x7_c00438{left:325.378667pt;}
.xa5_c00438{left:330.914667pt;}
.x93_c00438{left:334.320000pt;}
.x33_c00438{left:339.297333pt;}
.x1f_c00438{left:342.182763pt;}
.x76_c00438{left:345.760000pt;}
.x6a_c00438{left:355.621333pt;}
.x5e_c00438{left:356.556139pt;}
.x1_c00438{left:361.440000pt;}
.x24_c00438{left:363.275404pt;}
.x84_c00438{left:364.299108pt;}
.x34_c00438{left:368.626667pt;}
.x25_c00438{left:371.734071pt;}
.x5f_c00438{left:375.895136pt;}
.x2f_c00438{left:378.156884pt;}
.x2_c00438{left:382.800000pt;}
.x7f_c00438{left:383.945907pt;}
.x56_c00438{left:386.586437pt;}
.x26_c00438{left:390.935404pt;}
.x1a_c00438{left:391.848244pt;}
.x8_c00438{left:394.050667pt;}
.x49_c00438{left:396.232933pt;}
.x29_c00438{left:399.529387pt;}
.x20_c00438{left:401.013429pt;}
.x15_c00438{left:402.456000pt;}
.x73_c00438{left:403.837131pt;}
.x41_c00438{left:406.139504pt;}
.x90_c00438{left:411.191328pt;}
.x80_c00438{left:412.349520pt;}
.x57_c00438{left:414.247067pt;}
.x4a_c00438{left:416.166960pt;}
.x2a_c00438{left:419.912053pt;}
.xa6_c00438{left:429.362667pt;}
.x77_c00438{left:432.265333pt;}
.x60_c00438{left:434.915019pt;}
.x2b_c00438{left:438.396053pt;}
.x4b_c00438{left:445.407851pt;}
.x10_c00438{left:451.797333pt;}
.x74_c00438{left:453.311373pt;}
.x35_c00438{left:455.813333pt;}
.x1b_c00438{left:460.529092pt;}
.x27_c00438{left:461.912737pt;}
.x6b_c00438{left:463.674667pt;}
.x61_c00438{left:464.943072pt;}
.xa0_c00438{left:468.148273pt;}
.x91_c00438{left:470.688696pt;}
.x4c_c00438{left:474.951483pt;}
.x6c_c00438{left:483.049333pt;}
.x97_c00438{left:488.382869pt;}
.x42_c00438{left:494.732267pt;}
.xa7_c00438{left:498.976000pt;}
.x28_c00438{left:500.372737pt;}
.x4d_c00438{left:513.918016pt;}
.x11_c00438{left:519.666667pt;}
.x62_c00438{left:523.056064pt;}
.x78_c00438{left:530.890667pt;}
.x9_c00438{left:533.180000pt;}
.xa8_c00438{left:537.680000pt;}
.x1c_c00438{left:539.744541pt;}
.x6d_c00438{left:542.396000pt;}
.x85_c00438{left:550.228992pt;}
.x4e_c00438{left:553.962069pt;}
.x36_c00438{left:555.414667pt;}
.x2e_c00438{left:556.809636pt;}
.x43_c00438{left:563.446016pt;}
.x1d_c00438{left:568.489669pt;}
.x16_c00438{left:569.432000pt;}
.xd_c00438{left:570.430667pt;}
.x12_c00438{left:574.886667pt;}
.x4f_c00438{left:576.135136pt;}
.x21_c00438{left:578.832096pt;}
.xa_c00438{left:581.717333pt;}
.x37_c00438{left:583.977333pt;}
.x98_c00438{left:588.157661pt;}
.x86_c00438{left:589.183332pt;}
.x2c_c00438{left:597.304053pt;}
.x8b_c00438{left:598.895988pt;}
.x79_c00438{left:600.581333pt;}
.x58_c00438{left:601.589168pt;}
.x38_c00438{left:613.120000pt;}
.x99_c00438{left:617.432357pt;}
.xa1_c00438{left:626.124805pt;}
.x8c_c00438{left:628.658196pt;}
.x6e_c00438{left:631.494667pt;}
.x44_c00438{left:632.549136pt;}
.x63_c00438{left:641.985349pt;}
.x9a_c00438{left:646.605821pt;}
.x87_c00438{left:659.474304pt;}
.x39_c00438{left:665.558667pt;}
.x45_c00438{left:672.229792pt;}
.x59_c00438{left:673.181189pt;}
.x88_c00438{left:679.627464pt;}
.x50_c00438{left:683.191760pt;}
.x64_c00438{left:692.452661pt;}
.x46_c00438{left:693.536917pt;}
.xa2_c00438{left:695.042485pt;}
.x9b_c00438{left:697.793249pt;}
.x92_c00438{left:699.142488pt;}
.x6f_c00438{left:700.417333pt;}
.xa9_c00438{left:706.688000pt;}
.x7a_c00438{left:709.318667pt;}
.x51_c00438{left:711.817909pt;}
.x8d_c00438{left:717.270828pt;}
.x5a_c00438{left:722.340107pt;}
.x3a_c00438{left:723.970667pt;}
.x65_c00438{left:729.906395pt;}
.x2d_c00438{left:791.141387pt;}
.x30_c00438{left:806.579551pt;}
.x66_c00438{left:808.080000pt;}
}





/* 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_c00439 {
    display:none;
  }
  .loading-indicator_c00439.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00439 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_c00439 { 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_c00439" -> "#page-container .classname_c00439")
 */
.pf_c00439 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00439 { /* 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_c00439.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00439 { /* 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_c00439 { /* 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_c00439 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00439 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00439 {overflow:visible;}
  }
}
.c_c00439 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00439 { /* 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_c00439:after { /* webkit #35443 */
  content: '';
}
.t_c00439:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00439 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 */
}
.__c00439 { /* 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_c00439 { /* info for Javascript */
  display:none;
}
.l_c00439 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00439 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00439 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00439: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_c00439 {
    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_c00439.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00439.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_c00439 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00439{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00439;src:url('chunks/assets/font_132af6d682320e9b248f68cf.woff2')format("woff");}.ff1_c00439{font-family:ff1_c00439;line-height:1.000000;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;}
.ma_c00439{transform:matrix(0.000382,0.047728,-0.249992,0.002000,0,0);-ms-transform:matrix(0.000382,0.047728,-0.249992,0.002000,0,0);-webkit-transform:matrix(0.000382,0.047728,-0.249992,0.002000,0,0);}
.m7_c00439{transform:matrix(0.000509,0.063638,-0.249992,0.002000,0,0);-ms-transform:matrix(0.000509,0.063638,-0.249992,0.002000,0,0);-webkit-transform:matrix(0.000509,0.063638,-0.249992,0.002000,0,0);}
.m5_c00439{transform:matrix(0.000577,0.036050,-0.249968,0.003999,0,0);-ms-transform:matrix(0.000577,0.036050,-0.249968,0.003999,0,0);-webkit-transform:matrix(0.000577,0.036050,-0.249968,0.003999,0,0);}
.md_c00439{transform:matrix(0.000649,0.081122,-0.249992,0.002000,0,0);-ms-transform:matrix(0.000649,0.081122,-0.249992,0.002000,0,0);-webkit-transform:matrix(0.000649,0.081122,-0.249992,0.002000,0,0);}
.m6_c00439{transform:matrix(0.000700,0.087462,-0.249992,0.002000,0,0);-ms-transform:matrix(0.000700,0.087462,-0.249992,0.002000,0,0);-webkit-transform:matrix(0.000700,0.087462,-0.249992,0.002000,0,0);}
.me_c00439{transform:matrix(0.001153,0.144065,-0.249992,0.002000,0,0);-ms-transform:matrix(0.001153,0.144065,-0.249992,0.002000,0,0);-webkit-transform:matrix(0.001153,0.144065,-0.249992,0.002000,0,0);}
.mb_c00439{transform:matrix(0.001273,0.159095,-0.249992,0.002000,0,0);-ms-transform:matrix(0.001273,0.159095,-0.249992,0.002000,0,0);-webkit-transform:matrix(0.001273,0.159095,-0.249992,0.002000,0,0);}
.m2_c00439{transform:matrix(0.001288,0.183975,-0.249994,0.001750,0,0);-ms-transform:matrix(0.001288,0.183975,-0.249994,0.001750,0,0);-webkit-transform:matrix(0.001288,0.183975,-0.249994,0.001750,0,0);}
.m12_c00439{transform:matrix(0.001298,0.162245,-0.249992,0.002000,0,0);-ms-transform:matrix(0.001298,0.162245,-0.249992,0.002000,0,0);-webkit-transform:matrix(0.001298,0.162245,-0.249992,0.002000,0,0);}
.mf_c00439{transform:matrix(0.001451,0.181394,-0.249992,0.002000,0,0);-ms-transform:matrix(0.001451,0.181394,-0.249992,0.002000,0,0);-webkit-transform:matrix(0.001451,0.181394,-0.249992,0.002000,0,0);}
.m11_c00439{transform:matrix(0.002565,0.320655,-0.249992,0.002000,0,0);-ms-transform:matrix(0.002565,0.320655,-0.249992,0.002000,0,0);-webkit-transform:matrix(0.002565,0.320655,-0.249992,0.002000,0,0);}
.m9_c00439{transform:matrix(0.003010,0.376188,-0.249992,0.002000,0,0);-ms-transform:matrix(0.003010,0.376188,-0.249992,0.002000,0,0);-webkit-transform:matrix(0.003010,0.376188,-0.249992,0.002000,0,0);}
.m13_c00439{transform:matrix(0.004034,0.504214,-0.249992,0.002000,0,0);-ms-transform:matrix(0.004034,0.504214,-0.249992,0.002000,0,0);-webkit-transform:matrix(0.004034,0.504214,-0.249992,0.002000,0,0);}
.m10_c00439{transform:matrix(0.004680,0.584981,-0.249992,0.002000,0,0);-ms-transform:matrix(0.004680,0.584981,-0.249992,0.002000,0,0);-webkit-transform:matrix(0.004680,0.584981,-0.249992,0.002000,0,0);}
.m4_c00439{transform:matrix(0.004730,0.295637,-0.249968,0.003999,0,0);-ms-transform:matrix(0.004730,0.295637,-0.249968,0.003999,0,0);-webkit-transform:matrix(0.004730,0.295637,-0.249968,0.003999,0,0);}
.m1_c00439{transform:matrix(0.004906,0.700858,-0.249994,0.001750,0,0);-ms-transform:matrix(0.004906,0.700858,-0.249994,0.001750,0,0);-webkit-transform:matrix(0.004906,0.700858,-0.249994,0.001750,0,0);}
.m14_c00439{transform:matrix(0.005257,0.657119,-0.249992,0.002000,0,0);-ms-transform:matrix(0.005257,0.657119,-0.249992,0.002000,0,0);-webkit-transform:matrix(0.005257,0.657119,-0.249992,0.002000,0,0);}
.mc_c00439{transform:matrix(0.005458,0.682273,-0.249992,0.002000,0,0);-ms-transform:matrix(0.005458,0.682273,-0.249992,0.002000,0,0);-webkit-transform:matrix(0.005458,0.682273,-0.249992,0.002000,0,0);}
.m0_c00439{transform:matrix(0.006713,-0.959042,0.249994,0.001750,0,0);-ms-transform:matrix(0.006713,-0.959042,0.249994,0.001750,0,0);-webkit-transform:matrix(0.006713,-0.959042,0.249994,0.001750,0,0);}
.m8_c00439{transform:matrix(0.007250,0.906201,-0.249992,0.002000,0,0);-ms-transform:matrix(0.007250,0.906201,-0.249992,0.002000,0,0);-webkit-transform:matrix(0.007250,0.906201,-0.249992,0.002000,0,0);}
.m3_c00439{transform:matrix(0.021702,0.528800,-0.249790,0.010252,0,0);-ms-transform:matrix(0.021702,0.528800,-0.249790,0.010252,0,0);-webkit-transform:matrix(0.021702,0.528800,-0.249790,0.010252,0,0);}
.m31_c00439{transform:matrix(0.178790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178790,0.000000,0.000000,0.250000,0,0);}
.m2e_c00439{transform:matrix(0.181715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181715,0.000000,0.000000,0.250000,0,0);}
.m2f_c00439{transform:matrix(0.184495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184495,0.000000,0.000000,0.250000,0,0);}
.m2d_c00439{transform:matrix(0.187685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187685,0.000000,0.000000,0.250000,0,0);}
.m15_c00439{transform:matrix(0.189430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189430,0.000000,0.000000,0.250000,0,0);}
.m1b_c00439{transform:matrix(0.194565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194565,0.000000,0.000000,0.250000,0,0);}
.m30_c00439{transform:matrix(0.197465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197465,0.000000,0.000000,0.250000,0,0);}
.m22_c00439{transform:matrix(0.205475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205475,0.000000,0.000000,0.250000,0,0);}
.m29_c00439{transform:matrix(0.205855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205855,0.000000,0.000000,0.250000,0,0);}
.m2a_c00439{transform:matrix(0.208280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208280,0.000000,0.000000,0.250000,0,0);}
.m1f_c00439{transform:matrix(0.217075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217075,0.000000,0.000000,0.250000,0,0);}
.m1d_c00439{transform:matrix(0.218950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218950,0.000000,0.000000,0.250000,0,0);}
.m28_c00439{transform:matrix(0.220080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220080,0.000000,0.000000,0.250000,0,0);}
.m2b_c00439{transform:matrix(0.226365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226365,0.000000,0.000000,0.250000,0,0);}
.m25_c00439{transform:matrix(0.228290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228290,0.000000,0.000000,0.250000,0,0);}
.m18_c00439{transform:matrix(0.246860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246860,0.000000,0.000000,0.250000,0,0);}
.m16_c00439{transform:matrix(0.247815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247815,0.000000,0.000000,0.250000,0,0);}
.m24_c00439{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m26_c00439{transform:matrix(0.268665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268665,0.000000,0.000000,0.250000,0,0);}
.m1e_c00439{transform:matrix(0.272855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272855,0.000000,0.000000,0.250000,0,0);}
.m23_c00439{transform:matrix(0.274880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274880,0.000000,0.000000,0.250000,0,0);}
.m2c_c00439{transform:matrix(0.277125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277125,0.000000,0.000000,0.250000,0,0);}
.m21_c00439{transform:matrix(0.309825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309825,0.000000,0.000000,0.250000,0,0);}
.m17_c00439{transform:matrix(0.335220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335220,0.000000,0.000000,0.250000,0,0);}
.m1a_c00439{transform:matrix(0.355685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355685,0.000000,0.000000,0.250000,0,0);}
.m1c_c00439{transform:matrix(0.357105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357105,0.000000,0.000000,0.250000,0,0);}
.m19_c00439{transform:matrix(0.361250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361250,0.000000,0.000000,0.250000,0,0);}
.m20_c00439{transform:matrix(0.369475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369475,0.000000,0.000000,0.250000,0,0);}
.m27_c00439{transform:matrix(0.452245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452245,0.000000,0.000000,0.250000,0,0);}
.v0_c00439{vertical-align:0.000000px;}
.ls0_c00439{letter-spacing:0.000000px;}
.sc__c00439{text-shadow:none;}
.sc0_c00439{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__c00439{-webkit-text-stroke:0px transparent;}
.sc0_c00439{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00439{word-spacing:0.000000px;}
.fc0_c00439{color:transparent;}
.fs5_c00439{font-size:12.000384px;}
.fs2_c00439{font-size:17.997138px;}
.fs4_c00439{font-size:18.000576px;}
.fs8_c00439{font-size:36.000000px;}
.fs0_c00439{font-size:42.001029px;}
.fs3_c00439{font-size:54.006912px;}
.fs1_c00439{font-size:60.001470px;}
.fsb_c00439{font-size:72.000000px;}
.fs7_c00439{font-size:78.000000px;}
.fs9_c00439{font-size:84.000000px;}
.fsa_c00439{font-size:90.000000px;}
.fsc_c00439{font-size:96.000000px;}
.fse_c00439{font-size:102.000000px;}
.fsd_c00439{font-size:108.000000px;}
.fs6_c00439{font-size:114.000000px;}
.y0_c00439{bottom:0.000000px;}
.y4_c00439{bottom:620.503500px;}
.y3_c00439{bottom:621.807000px;}
.y1_c00439{bottom:663.906000px;}
.y1d_c00439{bottom:667.440000px;}
.y1f_c00439{bottom:668.116500px;}
.y2_c00439{bottom:688.251000px;}
.yc_c00439{bottom:748.967496px;}
.ya_c00439{bottom:748.967736px;}
.yd_c00439{bottom:748.968156px;}
.yb_c00439{bottom:748.968216px;}
.y11_c00439{bottom:748.968276px;}
.y10_c00439{bottom:748.968456px;}
.yf_c00439{bottom:748.968936px;}
.ye_c00439{bottom:748.970196px;}
.y21_c00439{bottom:793.938000px;}
.y25_c00439{bottom:794.611500px;}
.y1c_c00439{bottom:832.792500px;}
.y6_c00439{bottom:858.285000px;}
.y14_c00439{bottom:937.699512px;}
.y12_c00439{bottom:937.699572px;}
.y15_c00439{bottom:937.699812px;}
.y13_c00439{bottom:937.701072px;}
.y16_c00439{bottom:972.270000px;}
.y24_c00439{bottom:975.507000px;}
.y19_c00439{bottom:976.744500px;}
.y9_c00439{bottom:976.864500px;}
.y1b_c00439{bottom:977.002500px;}
.y18_c00439{bottom:981.180000px;}
.y8_c00439{bottom:995.473500px;}
.y5_c00439{bottom:1010.571000px;}
.y20_c00439{bottom:1011.805500px;}
.y17_c00439{bottom:1012.809000px;}
.y7_c00439{bottom:1031.115000px;}
.y23_c00439{bottom:1047.997500px;}
.y1e_c00439{bottom:1048.680000px;}
.y1a_c00439{bottom:1048.956000px;}
.y22_c00439{bottom:1119.009000px;}
.h7_c00439{height:12.000384px;}
.h4_c00439{height:17.997138px;}
.h6_c00439{height:18.000576px;}
.ha_c00439{height:36.000000px;}
.h2_c00439{height:42.001029px;}
.h5_c00439{height:54.006912px;}
.h3_c00439{height:60.001470px;}
.hd_c00439{height:72.000000px;}
.h9_c00439{height:78.000000px;}
.hb_c00439{height:84.000000px;}
.hc_c00439{height:90.000000px;}
.he_c00439{height:96.000000px;}
.h10_c00439{height:102.000000px;}
.hf_c00439{height:108.000000px;}
.h8_c00439{height:114.000000px;}
.h1_c00439{height:1251.000000px;}
.h0_c00439{height:1251.150000px;}
.w0_c00439{width:915.000000px;}
.x0_c00439{left:0.000000px;}
.x25_c00439{left:203.580000px;}
.x23_c00439{left:205.470000px;}
.x26_c00439{left:208.710000px;}
.x20_c00439{left:210.330000px;}
.x24_c00439{left:242.190000px;}
.x21_c00439{left:245.160000px;}
.x1e_c00439{left:261.630000px;}
.x22_c00439{left:277.830000px;}
.x1f_c00439{left:310.500000px;}
.x1b_c00439{left:319.680000px;}
.x1d_c00439{left:343.980000px;}
.x1a_c00439{left:384.480000px;}
.x18_c00439{left:393.660000px;}
.x1c_c00439{left:408.780000px;}
.x19_c00439{left:426.600000px;}
.x17_c00439{left:429.030000px;}
.x10_c00439{left:460.890000px;}
.x11_c00439{left:539.190000px;}
.x12_c00439{left:577.800000px;}
.x13_c00439{left:584.010000px;}
.x14_c00439{left:593.460000px;}
.x15_c00439{left:607.770000px;}
.x16_c00439{left:626.940000px;}
.xf_c00439{left:640.170000px;}
.xb_c00439{left:675.567516px;}
.xd_c00439{left:677.997672px;}
.xe_c00439{left:679.347756px;}
.xc_c00439{left:682.317936px;}
.x8_c00439{left:687.506040px;}
.xa_c00439{left:689.936184px;}
.x7_c00439{left:691.286280px;}
.x9_c00439{left:692.906364px;}
.x6_c00439{left:695.250000px;}
.x4_c00439{left:698.760000px;}
.x5_c00439{left:701.196576px;}
.x1_c00439{left:895.320000px;}
.x3_c00439{left:897.208500px;}
.x2_c00439{left:904.770000px;}
@media print{
.v0_c00439{vertical-align:0.000000pt;}
.ls0_c00439{letter-spacing:0.000000pt;}
.ws0_c00439{word-spacing:0.000000pt;}
.fs5_c00439{font-size:10.667008pt;}
.fs2_c00439{font-size:15.997456pt;}
.fs4_c00439{font-size:16.000512pt;}
.fs8_c00439{font-size:32.000000pt;}
.fs0_c00439{font-size:37.334248pt;}
.fs3_c00439{font-size:48.006144pt;}
.fs1_c00439{font-size:53.334640pt;}
.fsb_c00439{font-size:64.000000pt;}
.fs7_c00439{font-size:69.333333pt;}
.fs9_c00439{font-size:74.666667pt;}
.fsa_c00439{font-size:80.000000pt;}
.fsc_c00439{font-size:85.333333pt;}
.fse_c00439{font-size:90.666667pt;}
.fsd_c00439{font-size:96.000000pt;}
.fs6_c00439{font-size:101.333333pt;}
.y0_c00439{bottom:0.000000pt;}
.y4_c00439{bottom:551.558667pt;}
.y3_c00439{bottom:552.717333pt;}
.y1_c00439{bottom:590.138667pt;}
.y1d_c00439{bottom:593.280000pt;}
.y1f_c00439{bottom:593.881333pt;}
.y2_c00439{bottom:611.778667pt;}
.yc_c00439{bottom:665.748885pt;}
.ya_c00439{bottom:665.749099pt;}
.yd_c00439{bottom:665.749472pt;}
.yb_c00439{bottom:665.749525pt;}
.y11_c00439{bottom:665.749579pt;}
.y10_c00439{bottom:665.749739pt;}
.yf_c00439{bottom:665.750165pt;}
.ye_c00439{bottom:665.751285pt;}
.y21_c00439{bottom:705.722667pt;}
.y25_c00439{bottom:706.321333pt;}
.y1c_c00439{bottom:740.260000pt;}
.y6_c00439{bottom:762.920000pt;}
.y14_c00439{bottom:833.510677pt;}
.y12_c00439{bottom:833.510731pt;}
.y15_c00439{bottom:833.510944pt;}
.y13_c00439{bottom:833.512064pt;}
.y16_c00439{bottom:864.240000pt;}
.y24_c00439{bottom:867.117333pt;}
.y19_c00439{bottom:868.217333pt;}
.y9_c00439{bottom:868.324000pt;}
.y1b_c00439{bottom:868.446667pt;}
.y18_c00439{bottom:872.160000pt;}
.y8_c00439{bottom:884.865333pt;}
.y5_c00439{bottom:898.285333pt;}
.y20_c00439{bottom:899.382667pt;}
.y17_c00439{bottom:900.274667pt;}
.y7_c00439{bottom:916.546667pt;}
.y23_c00439{bottom:931.553333pt;}
.y1e_c00439{bottom:932.160000pt;}
.y1a_c00439{bottom:932.405333pt;}
.y22_c00439{bottom:994.674667pt;}
.h7_c00439{height:10.667008pt;}
.h4_c00439{height:15.997456pt;}
.h6_c00439{height:16.000512pt;}
.ha_c00439{height:32.000000pt;}
.h2_c00439{height:37.334248pt;}
.h5_c00439{height:48.006144pt;}
.h3_c00439{height:53.334640pt;}
.hd_c00439{height:64.000000pt;}
.h9_c00439{height:69.333333pt;}
.hb_c00439{height:74.666667pt;}
.hc_c00439{height:80.000000pt;}
.he_c00439{height:85.333333pt;}
.h10_c00439{height:90.666667pt;}
.hf_c00439{height:96.000000pt;}
.h8_c00439{height:101.333333pt;}
.h1_c00439{height:1112.000000pt;}
.h0_c00439{height:1112.133333pt;}
.w0_c00439{width:813.333333pt;}
.x0_c00439{left:0.000000pt;}
.x25_c00439{left:180.960000pt;}
.x23_c00439{left:182.640000pt;}
.x26_c00439{left:185.520000pt;}
.x20_c00439{left:186.960000pt;}
.x24_c00439{left:215.280000pt;}
.x21_c00439{left:217.920000pt;}
.x1e_c00439{left:232.560000pt;}
.x22_c00439{left:246.960000pt;}
.x1f_c00439{left:276.000000pt;}
.x1b_c00439{left:284.160000pt;}
.x1d_c00439{left:305.760000pt;}
.x1a_c00439{left:341.760000pt;}
.x18_c00439{left:349.920000pt;}
.x1c_c00439{left:363.360000pt;}
.x19_c00439{left:379.200000pt;}
.x17_c00439{left:381.360000pt;}
.x10_c00439{left:409.680000pt;}
.x11_c00439{left:479.280000pt;}
.x12_c00439{left:513.600000pt;}
.x13_c00439{left:519.120000pt;}
.x14_c00439{left:527.520000pt;}
.x15_c00439{left:540.240000pt;}
.x16_c00439{left:557.280000pt;}
.xf_c00439{left:569.040000pt;}
.xb_c00439{left:600.504459pt;}
.xd_c00439{left:602.664597pt;}
.xe_c00439{left:603.864672pt;}
.xc_c00439{left:606.504832pt;}
.x8_c00439{left:611.116480pt;}
.xa_c00439{left:613.276608pt;}
.x7_c00439{left:614.476693pt;}
.x9_c00439{left:615.916768pt;}
.x6_c00439{left:618.000000pt;}
.x4_c00439{left:621.120000pt;}
.x5_c00439{left:623.285845pt;}
.x1_c00439{left:795.840000pt;}
.x3_c00439{left:797.518667pt;}
.x2_c00439{left:804.240000pt;}
}





/* 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_c00440 {
    display:none;
  }
  .loading-indicator_c00440.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00440 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_c00440 { 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_c00440" -> "#page-container .classname_c00440")
 */
.pf_c00440 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00440 { /* 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_c00440.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00440 { /* 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_c00440 { /* 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_c00440 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00440 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00440 {overflow:visible;}
  }
}
.c_c00440 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00440 { /* 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_c00440:after { /* webkit #35443 */
  content: '';
}
.t_c00440:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00440 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 */
}
.__c00440 { /* 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_c00440 { /* info for Javascript */
  display:none;
}
.l_c00440 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00440 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00440 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00440: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_c00440 {
    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_c00440.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00440.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_c00440 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00440{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00440;src:url('chunks/assets/font_c605e72f209fc835e906f064.woff2')format("woff");}.ff1_c00440{font-family:ff1_c00440;line-height:1.000000;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;}
.m6e_c00440{transform:matrix(0.020178,0.000525,-0.006498,0.249916,0,0);-ms-transform:matrix(0.020178,0.000525,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.020178,0.000525,-0.006498,0.249916,0,0);}
.m1_c00440{transform:matrix(0.135650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135650,0.000000,0.000000,0.250000,0,0);}
.m6f_c00440{transform:matrix(0.153816,0.004614,-0.007497,0.249888,0,0);-ms-transform:matrix(0.153816,0.004614,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.153816,0.004614,-0.007497,0.249888,0,0);}
.mdb_c00440{transform:matrix(0.155253,0.005906,-0.009503,0.249819,0,0);-ms-transform:matrix(0.155253,0.005906,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.155253,0.005906,-0.009503,0.249819,0,0);}
.mf6_c00440{transform:matrix(0.156122,0.005939,-0.009503,0.249819,0,0);-ms-transform:matrix(0.156122,0.005939,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.156122,0.005939,-0.009503,0.249819,0,0);}
.me9_c00440{transform:matrix(0.156872,0.005967,-0.009503,0.249819,0,0);-ms-transform:matrix(0.156872,0.005967,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.156872,0.005967,-0.009503,0.249819,0,0);}
.m9d_c00440{transform:matrix(0.156924,0.005498,-0.008753,0.249847,0,0);-ms-transform:matrix(0.156924,0.005498,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.156924,0.005498,-0.008753,0.249847,0,0);}
.mb6_c00440{transform:matrix(0.160292,0.006418,-0.010002,0.249800,0,0);-ms-transform:matrix(0.160292,0.006418,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.160292,0.006418,-0.010002,0.249800,0,0);}
.md4_c00440{transform:matrix(0.160509,0.006105,-0.009503,0.249819,0,0);-ms-transform:matrix(0.160509,0.006105,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.160509,0.006105,-0.009503,0.249819,0,0);}
.mf4_c00440{transform:matrix(0.160984,0.006123,-0.009503,0.249819,0,0);-ms-transform:matrix(0.160984,0.006123,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.160984,0.006123,-0.009503,0.249819,0,0);}
.mec_c00440{transform:matrix(0.162707,0.006189,-0.009503,0.249819,0,0);-ms-transform:matrix(0.162707,0.006189,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.162707,0.006189,-0.009503,0.249819,0,0);}
.me8_c00440{transform:matrix(0.163792,0.006230,-0.009503,0.249819,0,0);-ms-transform:matrix(0.163792,0.006230,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.163792,0.006230,-0.009503,0.249819,0,0);}
.ma8_c00440{transform:matrix(0.167520,0.005193,-0.007746,0.249880,0,0);-ms-transform:matrix(0.167520,0.005193,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.167520,0.005193,-0.007746,0.249880,0,0);}
.m6d_c00440{transform:matrix(0.169878,0.004417,-0.006498,0.249916,0,0);-ms-transform:matrix(0.169878,0.004417,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.169878,0.004417,-0.006498,0.249916,0,0);}
.m25_c00440{transform:matrix(0.171538,0.004975,-0.007247,0.249895,0,0);-ms-transform:matrix(0.171538,0.004975,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.171538,0.004975,-0.007247,0.249895,0,0);}
.mea_c00440{transform:matrix(0.172071,0.006545,-0.009503,0.249819,0,0);-ms-transform:matrix(0.172071,0.006545,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.172071,0.006545,-0.009503,0.249819,0,0);}
.mf1_c00440{transform:matrix(0.173160,0.006587,-0.009503,0.249819,0,0);-ms-transform:matrix(0.173160,0.006587,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.173160,0.006587,-0.009503,0.249819,0,0);}
.md5_c00440{transform:matrix(0.176562,0.006716,-0.009503,0.249819,0,0);-ms-transform:matrix(0.176562,0.006716,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.176562,0.006716,-0.009503,0.249819,0,0);}
.m76_c00440{transform:matrix(0.177235,0.005317,-0.007497,0.249888,0,0);-ms-transform:matrix(0.177235,0.005317,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.177235,0.005317,-0.007497,0.249888,0,0);}
.m6c_c00440{transform:matrix(0.178540,0.004821,-0.006748,0.249909,0,0);-ms-transform:matrix(0.178540,0.004821,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.178540,0.004821,-0.006748,0.249909,0,0);}
.mee_c00440{transform:matrix(0.179560,0.006830,-0.009503,0.249819,0,0);-ms-transform:matrix(0.179560,0.006830,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.179560,0.006830,-0.009503,0.249819,0,0);}
.md9_c00440{transform:matrix(0.180180,0.006854,-0.009503,0.249819,0,0);-ms-transform:matrix(0.180180,0.006854,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.180180,0.006854,-0.009503,0.249819,0,0);}
.mc_c00440{transform:matrix(0.181749,0.005271,-0.007247,0.249895,0,0);-ms-transform:matrix(0.181749,0.005271,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.181749,0.005271,-0.007247,0.249895,0,0);}
.mfb_c00440{transform:matrix(0.182525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182525,0.000000,0.000000,0.250000,0,0);}
.me_c00440{transform:matrix(0.182568,0.005294,-0.007247,0.249895,0,0);-ms-transform:matrix(0.182568,0.005294,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.182568,0.005294,-0.007247,0.249895,0,0);}
.md6_c00440{transform:matrix(0.182998,0.006961,-0.009503,0.249819,0,0);-ms-transform:matrix(0.182998,0.006961,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.182998,0.006961,-0.009503,0.249819,0,0);}
.md1_c00440{transform:matrix(0.183367,0.006975,-0.009503,0.249819,0,0);-ms-transform:matrix(0.183367,0.006975,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.183367,0.006975,-0.009503,0.249819,0,0);}
.med_c00440{transform:matrix(0.184746,0.007027,-0.009503,0.249819,0,0);-ms-transform:matrix(0.184746,0.007027,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.184746,0.007027,-0.009503,0.249819,0,0);}
.md8_c00440{transform:matrix(0.185136,0.007042,-0.009503,0.249819,0,0);-ms-transform:matrix(0.185136,0.007042,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.185136,0.007042,-0.009503,0.249819,0,0);}
.m69_c00440{transform:matrix(0.186277,0.005029,-0.006748,0.249909,0,0);-ms-transform:matrix(0.186277,0.005029,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.186277,0.005029,-0.006748,0.249909,0,0);}
.meb_c00440{transform:matrix(0.186360,0.007089,-0.009503,0.249819,0,0);-ms-transform:matrix(0.186360,0.007089,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.186360,0.007089,-0.009503,0.249819,0,0);}
.ma4_c00440{transform:matrix(0.188514,0.005844,-0.007746,0.249880,0,0);-ms-transform:matrix(0.188514,0.005844,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.188514,0.005844,-0.007746,0.249880,0,0);}
.md7_c00440{transform:matrix(0.189253,0.007199,-0.009503,0.249819,0,0);-ms-transform:matrix(0.189253,0.007199,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.189253,0.007199,-0.009503,0.249819,0,0);}
.md2_c00440{transform:matrix(0.191377,0.007280,-0.009503,0.249819,0,0);-ms-transform:matrix(0.191377,0.007280,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.191377,0.007280,-0.009503,0.249819,0,0);}
.mc5_c00440{transform:matrix(0.192563,0.002118,-0.002750,0.249985,0,0);-ms-transform:matrix(0.192563,0.002118,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.192563,0.002118,-0.002750,0.249985,0,0);}
.mef_c00440{transform:matrix(0.194814,0.007410,-0.009503,0.249819,0,0);-ms-transform:matrix(0.194814,0.007410,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.194814,0.007410,-0.009503,0.249819,0,0);}
.ma6_c00440{transform:matrix(0.195311,0.006055,-0.007746,0.249880,0,0);-ms-transform:matrix(0.195311,0.006055,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.195311,0.006055,-0.007746,0.249880,0,0);}
.mda_c00440{transform:matrix(0.195534,0.007438,-0.009503,0.249819,0,0);-ms-transform:matrix(0.195534,0.007438,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.195534,0.007438,-0.009503,0.249819,0,0);}
.md3_c00440{transform:matrix(0.195988,0.007455,-0.009503,0.249819,0,0);-ms-transform:matrix(0.195988,0.007455,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.195988,0.007455,-0.009503,0.249819,0,0);}
.m67_c00440{transform:matrix(0.196648,0.005310,-0.006748,0.249909,0,0);-ms-transform:matrix(0.196648,0.005310,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.196648,0.005310,-0.006748,0.249909,0,0);}
.m8_c00440{transform:matrix(0.197827,0.005737,-0.007247,0.249895,0,0);-ms-transform:matrix(0.197827,0.005737,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.197827,0.005737,-0.007247,0.249895,0,0);}
.m68_c00440{transform:matrix(0.199307,0.005381,-0.006748,0.249909,0,0);-ms-transform:matrix(0.199307,0.005381,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.199307,0.005381,-0.006748,0.249909,0,0);}
.mf5_c00440{transform:matrix(0.200105,0.007612,-0.009503,0.249819,0,0);-ms-transform:matrix(0.200105,0.007612,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.200105,0.007612,-0.009503,0.249819,0,0);}
.mc9_c00440{transform:matrix(0.203278,0.002236,-0.002750,0.249985,0,0);-ms-transform:matrix(0.203278,0.002236,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.203278,0.002236,-0.002750,0.249985,0,0);}
.m3_c00440{transform:matrix(0.203774,0.005909,-0.007247,0.249895,0,0);-ms-transform:matrix(0.203774,0.005909,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.203774,0.005909,-0.007247,0.249895,0,0);}
.m29_c00440{transform:matrix(0.204109,0.005919,-0.007247,0.249895,0,0);-ms-transform:matrix(0.204109,0.005919,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.204109,0.005919,-0.007247,0.249895,0,0);}
.m7d_c00440{transform:matrix(0.204238,0.006127,-0.007497,0.249888,0,0);-ms-transform:matrix(0.204238,0.006127,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.204238,0.006127,-0.007497,0.249888,0,0);}
.m4_c00440{transform:matrix(0.204399,0.005928,-0.007247,0.249895,0,0);-ms-transform:matrix(0.204399,0.005928,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.204399,0.005928,-0.007247,0.249895,0,0);}
.m6b_c00440{transform:matrix(0.205145,0.005539,-0.006748,0.249909,0,0);-ms-transform:matrix(0.205145,0.005539,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.205145,0.005539,-0.006748,0.249909,0,0);}
.ma5_c00440{transform:matrix(0.205956,0.006385,-0.007746,0.249880,0,0);-ms-transform:matrix(0.205956,0.006385,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.205956,0.006385,-0.007746,0.249880,0,0);}
.m50_c00440{transform:matrix(0.206020,0.005563,-0.006748,0.249909,0,0);-ms-transform:matrix(0.206020,0.005563,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.206020,0.005563,-0.006748,0.249909,0,0);}
.mf9_c00440{transform:matrix(0.207110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207110,0.000000,0.000000,0.250000,0,0);}
.ma1_c00440{transform:matrix(0.207405,0.006430,-0.007746,0.249880,0,0);-ms-transform:matrix(0.207405,0.006430,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.207405,0.006430,-0.007746,0.249880,0,0);}
.m13_c00440{transform:matrix(0.207408,0.006015,-0.007247,0.249895,0,0);-ms-transform:matrix(0.207408,0.006015,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.207408,0.006015,-0.007247,0.249895,0,0);}
.mf0_c00440{transform:matrix(0.207900,0.007908,-0.009503,0.249819,0,0);-ms-transform:matrix(0.207900,0.007908,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.207900,0.007908,-0.009503,0.249819,0,0);}
.m6a_c00440{transform:matrix(0.209988,0.005670,-0.006748,0.249909,0,0);-ms-transform:matrix(0.209988,0.005670,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.209988,0.005670,-0.006748,0.249909,0,0);}
.mfc_c00440{transform:matrix(0.210580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210580,0.000000,0.000000,0.250000,0,0);}
.ma2_c00440{transform:matrix(0.210774,0.006534,-0.007746,0.249880,0,0);-ms-transform:matrix(0.210774,0.006534,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.210774,0.006534,-0.007746,0.249880,0,0);}
.mb7_c00440{transform:matrix(0.211181,0.008456,-0.010002,0.249800,0,0);-ms-transform:matrix(0.211181,0.008456,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.211181,0.008456,-0.010002,0.249800,0,0);}
.m6_c00440{transform:matrix(0.211396,0.006130,-0.007247,0.249895,0,0);-ms-transform:matrix(0.211396,0.006130,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.211396,0.006130,-0.007247,0.249895,0,0);}
.m65_c00440{transform:matrix(0.212053,0.005725,-0.006748,0.249909,0,0);-ms-transform:matrix(0.212053,0.005725,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.212053,0.005725,-0.006748,0.249909,0,0);}
.mfa_c00440{transform:matrix(0.212115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212115,0.000000,0.000000,0.250000,0,0);}
.ma3_c00440{transform:matrix(0.212708,0.006594,-0.007746,0.249880,0,0);-ms-transform:matrix(0.212708,0.006594,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.212708,0.006594,-0.007746,0.249880,0,0);}
.mf8_c00440{transform:matrix(0.213775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213775,0.000000,0.000000,0.250000,0,0);}
.m4e_c00440{transform:matrix(0.213920,0.006204,-0.007247,0.249895,0,0);-ms-transform:matrix(0.213920,0.006204,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.213920,0.006204,-0.007247,0.249895,0,0);}
.mf2_c00440{transform:matrix(0.214020,0.008141,-0.009503,0.249819,0,0);-ms-transform:matrix(0.214020,0.008141,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.214020,0.008141,-0.009503,0.249819,0,0);}
.m62_c00440{transform:matrix(0.214822,0.005800,-0.006748,0.249909,0,0);-ms-transform:matrix(0.214822,0.005800,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.214822,0.005800,-0.006748,0.249909,0,0);}
.m17_c00440{transform:matrix(0.215434,0.006248,-0.007247,0.249895,0,0);-ms-transform:matrix(0.215434,0.006248,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.215434,0.006248,-0.007247,0.249895,0,0);}
.m24_c00440{transform:matrix(0.215619,0.006253,-0.007247,0.249895,0,0);-ms-transform:matrix(0.215619,0.006253,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.215619,0.006253,-0.007247,0.249895,0,0);}
.m8c_c00440{transform:matrix(0.215688,0.006471,-0.007497,0.249888,0,0);-ms-transform:matrix(0.215688,0.006471,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.215688,0.006471,-0.007497,0.249888,0,0);}
.m14_c00440{transform:matrix(0.216414,0.006276,-0.007247,0.249895,0,0);-ms-transform:matrix(0.216414,0.006276,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.216414,0.006276,-0.007247,0.249895,0,0);}
.m1e_c00440{transform:matrix(0.216429,0.006276,-0.007247,0.249895,0,0);-ms-transform:matrix(0.216429,0.006276,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.216429,0.006276,-0.007247,0.249895,0,0);}
.m19_c00440{transform:matrix(0.218858,0.006347,-0.007247,0.249895,0,0);-ms-transform:matrix(0.218858,0.006347,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.218858,0.006347,-0.007247,0.249895,0,0);}
.m5_c00440{transform:matrix(0.220347,0.006390,-0.007247,0.249895,0,0);-ms-transform:matrix(0.220347,0.006390,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.220347,0.006390,-0.007247,0.249895,0,0);}
.ma7_c00440{transform:matrix(0.220514,0.006836,-0.007746,0.249880,0,0);-ms-transform:matrix(0.220514,0.006836,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.220514,0.006836,-0.007746,0.249880,0,0);}
.mb_c00440{transform:matrix(0.220947,0.006407,-0.007247,0.249895,0,0);-ms-transform:matrix(0.220947,0.006407,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.220947,0.006407,-0.007247,0.249895,0,0);}
.m38_c00440{transform:matrix(0.221112,0.006412,-0.007247,0.249895,0,0);-ms-transform:matrix(0.221112,0.006412,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.221112,0.006412,-0.007247,0.249895,0,0);}
.m3d_c00440{transform:matrix(0.221787,0.006432,-0.007247,0.249895,0,0);-ms-transform:matrix(0.221787,0.006432,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.221787,0.006432,-0.007247,0.249895,0,0);}
.mb1_c00440{transform:matrix(0.222426,0.007570,-0.008504,0.249855,0,0);-ms-transform:matrix(0.222426,0.007570,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.222426,0.007570,-0.008504,0.249855,0,0);}
.m1c_c00440{transform:matrix(0.222531,0.006453,-0.007247,0.249895,0,0);-ms-transform:matrix(0.222531,0.006453,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.222531,0.006453,-0.007247,0.249895,0,0);}
.mc8_c00440{transform:matrix(0.223007,0.002453,-0.002750,0.249985,0,0);-ms-transform:matrix(0.223007,0.002453,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.223007,0.002453,-0.002750,0.249985,0,0);}
.m44_c00440{transform:matrix(0.223176,0.006472,-0.007247,0.249895,0,0);-ms-transform:matrix(0.223176,0.006472,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.223176,0.006472,-0.007247,0.249895,0,0);}
.ma9_c00440{transform:matrix(0.223782,0.006937,-0.007746,0.249880,0,0);-ms-transform:matrix(0.223782,0.006937,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.223782,0.006937,-0.007746,0.249880,0,0);}
.m4c_c00440{transform:matrix(0.223876,0.006492,-0.007247,0.249895,0,0);-ms-transform:matrix(0.223876,0.006492,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.223876,0.006492,-0.007247,0.249895,0,0);}
.m93_c00440{transform:matrix(0.223969,0.006719,-0.007497,0.249888,0,0);-ms-transform:matrix(0.223969,0.006719,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.223969,0.006719,-0.007497,0.249888,0,0);}
.mca_c00440{transform:matrix(0.224691,0.002472,-0.002750,0.249985,0,0);-ms-transform:matrix(0.224691,0.002472,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.224691,0.002472,-0.002750,0.249985,0,0);}
.m18_c00440{transform:matrix(0.225565,0.006541,-0.007247,0.249895,0,0);-ms-transform:matrix(0.225565,0.006541,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.225565,0.006541,-0.007247,0.249895,0,0);}
.m7_c00440{transform:matrix(0.226235,0.006561,-0.007247,0.249895,0,0);-ms-transform:matrix(0.226235,0.006561,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.226235,0.006561,-0.007247,0.249895,0,0);}
.m47_c00440{transform:matrix(0.226245,0.006561,-0.007247,0.249895,0,0);-ms-transform:matrix(0.226245,0.006561,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.226245,0.006561,-0.007247,0.249895,0,0);}
.m15_c00440{transform:matrix(0.226560,0.006570,-0.007247,0.249895,0,0);-ms-transform:matrix(0.226560,0.006570,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.226560,0.006570,-0.007247,0.249895,0,0);}
.m7a_c00440{transform:matrix(0.226643,0.006799,-0.007497,0.249888,0,0);-ms-transform:matrix(0.226643,0.006799,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.226643,0.006799,-0.007497,0.249888,0,0);}
.ma0_c00440{transform:matrix(0.226746,0.007029,-0.007746,0.249880,0,0);-ms-transform:matrix(0.226746,0.007029,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.226746,0.007029,-0.007746,0.249880,0,0);}
.m52_c00440{transform:matrix(0.226812,0.006124,-0.006748,0.249909,0,0);-ms-transform:matrix(0.226812,0.006124,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.226812,0.006124,-0.006748,0.249909,0,0);}
.m36_c00440{transform:matrix(0.228009,0.006612,-0.007247,0.249895,0,0);-ms-transform:matrix(0.228009,0.006612,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.228009,0.006612,-0.007247,0.249895,0,0);}
.m28_c00440{transform:matrix(0.228074,0.006614,-0.007247,0.249895,0,0);-ms-transform:matrix(0.228074,0.006614,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.228074,0.006614,-0.007247,0.249895,0,0);}
.me7_c00440{transform:matrix(0.228550,0.008694,-0.009503,0.249819,0,0);-ms-transform:matrix(0.228550,0.008694,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.228550,0.008694,-0.009503,0.249819,0,0);}
.m3f_c00440{transform:matrix(0.228719,0.006633,-0.007247,0.249895,0,0);-ms-transform:matrix(0.228719,0.006633,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.228719,0.006633,-0.007247,0.249895,0,0);}
.m10_c00440{transform:matrix(0.228904,0.006638,-0.007247,0.249895,0,0);-ms-transform:matrix(0.228904,0.006638,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.228904,0.006638,-0.007247,0.249895,0,0);}
.m53_c00440{transform:matrix(0.228967,0.006182,-0.006748,0.249909,0,0);-ms-transform:matrix(0.228967,0.006182,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.228967,0.006182,-0.006748,0.249909,0,0);}
.m82_c00440{transform:matrix(0.230111,0.006903,-0.007497,0.249888,0,0);-ms-transform:matrix(0.230111,0.006903,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.230111,0.006903,-0.007497,0.249888,0,0);}
.mdd_c00440{transform:matrix(0.230428,0.008765,-0.009503,0.249819,0,0);-ms-transform:matrix(0.230428,0.008765,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.230428,0.008765,-0.009503,0.249819,0,0);}
.m5d_c00440{transform:matrix(0.230811,0.006232,-0.006748,0.249909,0,0);-ms-transform:matrix(0.230811,0.006232,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.230811,0.006232,-0.006748,0.249909,0,0);}
.m72_c00440{transform:matrix(0.231536,0.006946,-0.007497,0.249888,0,0);-ms-transform:matrix(0.231536,0.006946,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.231536,0.006946,-0.007497,0.249888,0,0);}
.m3b_c00440{transform:matrix(0.232457,0.006741,-0.007247,0.249895,0,0);-ms-transform:matrix(0.232457,0.006741,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.232457,0.006741,-0.007247,0.249895,0,0);}
.m9c_c00440{transform:matrix(0.233557,0.008183,-0.008753,0.249847,0,0);-ms-transform:matrix(0.233557,0.008183,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.233557,0.008183,-0.008753,0.249847,0,0);}
.m95_c00440{transform:matrix(0.233590,0.007008,-0.007497,0.249888,0,0);-ms-transform:matrix(0.233590,0.007008,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.233590,0.007008,-0.007497,0.249888,0,0);}
.mf_c00440{transform:matrix(0.233907,0.006783,-0.007247,0.249895,0,0);-ms-transform:matrix(0.233907,0.006783,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.233907,0.006783,-0.007247,0.249895,0,0);}
.m5a_c00440{transform:matrix(0.234140,0.006322,-0.006748,0.249909,0,0);-ms-transform:matrix(0.234140,0.006322,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.234140,0.006322,-0.006748,0.249909,0,0);}
.m86_c00440{transform:matrix(0.234255,0.007028,-0.007497,0.249888,0,0);-ms-transform:matrix(0.234255,0.007028,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.234255,0.007028,-0.007497,0.249888,0,0);}
.m58_c00440{transform:matrix(0.235324,0.006354,-0.006748,0.249909,0,0);-ms-transform:matrix(0.235324,0.006354,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.235324,0.006354,-0.006748,0.249909,0,0);}
.m42_c00440{transform:matrix(0.235781,0.006838,-0.007247,0.249895,0,0);-ms-transform:matrix(0.235781,0.006838,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.235781,0.006838,-0.007247,0.249895,0,0);}
.mb0_c00440{transform:matrix(0.237607,0.008087,-0.008504,0.249855,0,0);-ms-transform:matrix(0.237607,0.008087,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.237607,0.008087,-0.008504,0.249855,0,0);}
.m35_c00440{transform:matrix(0.238025,0.006903,-0.007247,0.249895,0,0);-ms-transform:matrix(0.238025,0.006903,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.238025,0.006903,-0.007247,0.249895,0,0);}
.m1b_c00440{transform:matrix(0.238600,0.006919,-0.007247,0.249895,0,0);-ms-transform:matrix(0.238600,0.006919,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.238600,0.006919,-0.007247,0.249895,0,0);}
.m97_c00440{transform:matrix(0.238863,0.008369,-0.008753,0.249847,0,0);-ms-transform:matrix(0.238863,0.008369,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.238863,0.008369,-0.008753,0.249847,0,0);}
.m57_c00440{transform:matrix(0.238983,0.006453,-0.006748,0.249909,0,0);-ms-transform:matrix(0.238983,0.006453,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.238983,0.006453,-0.006748,0.249909,0,0);}
.m8d_c00440{transform:matrix(0.239122,0.007174,-0.007497,0.249888,0,0);-ms-transform:matrix(0.239122,0.007174,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.239122,0.007174,-0.007497,0.249888,0,0);}
.m30_c00440{transform:matrix(0.239194,0.006937,-0.007247,0.249895,0,0);-ms-transform:matrix(0.239194,0.006937,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.239194,0.006937,-0.007247,0.249895,0,0);}
.m2_c00440{transform:matrix(0.239819,0.006955,-0.007247,0.249895,0,0);-ms-transform:matrix(0.239819,0.006955,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.239819,0.006955,-0.007247,0.249895,0,0);}
.m23_c00440{transform:matrix(0.240929,0.006987,-0.007247,0.249895,0,0);-ms-transform:matrix(0.240929,0.006987,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.240929,0.006987,-0.007247,0.249895,0,0);}
.m16_c00440{transform:matrix(0.241164,0.006994,-0.007247,0.249895,0,0);-ms-transform:matrix(0.241164,0.006994,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.241164,0.006994,-0.007247,0.249895,0,0);}
.m8a_c00440{transform:matrix(0.241191,0.007236,-0.007497,0.249888,0,0);-ms-transform:matrix(0.241191,0.007236,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.241191,0.007236,-0.007497,0.249888,0,0);}
.mce_c00440{transform:matrix(0.241325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241325,0.000000,0.000000,0.250000,0,0);}
.m1f_c00440{transform:matrix(0.241419,0.007001,-0.007247,0.249895,0,0);-ms-transform:matrix(0.241419,0.007001,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.241419,0.007001,-0.007247,0.249895,0,0);}
.mf3_c00440{transform:matrix(0.241585,0.009189,-0.009503,0.249819,0,0);-ms-transform:matrix(0.241585,0.009189,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.241585,0.009189,-0.009503,0.249819,0,0);}
.m90_c00440{transform:matrix(0.241671,0.007250,-0.007497,0.249888,0,0);-ms-transform:matrix(0.241671,0.007250,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.241671,0.007250,-0.007497,0.249888,0,0);}
.m9f_c00440{transform:matrix(0.241812,0.008472,-0.008753,0.249847,0,0);-ms-transform:matrix(0.241812,0.008472,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.241812,0.008472,-0.008753,0.249847,0,0);}
.m80_c00440{transform:matrix(0.241886,0.007257,-0.007497,0.249888,0,0);-ms-transform:matrix(0.241886,0.007257,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.241886,0.007257,-0.007497,0.249888,0,0);}
.m78_c00440{transform:matrix(0.241986,0.007260,-0.007497,0.249888,0,0);-ms-transform:matrix(0.241986,0.007260,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.241986,0.007260,-0.007497,0.249888,0,0);}
.m4f_c00440{transform:matrix(0.242027,0.006535,-0.006748,0.249909,0,0);-ms-transform:matrix(0.242027,0.006535,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.242027,0.006535,-0.006748,0.249909,0,0);}
.mdc_c00440{transform:matrix(0.242230,0.009214,-0.009503,0.249819,0,0);-ms-transform:matrix(0.242230,0.009214,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.242230,0.009214,-0.009503,0.249819,0,0);}
.ma_c00440{transform:matrix(0.242563,0.007034,-0.007247,0.249895,0,0);-ms-transform:matrix(0.242563,0.007034,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.242563,0.007034,-0.007247,0.249895,0,0);}
.m56_c00440{transform:matrix(0.242727,0.006554,-0.006748,0.249909,0,0);-ms-transform:matrix(0.242727,0.006554,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.242727,0.006554,-0.006748,0.249909,0,0);}
.m4d_c00440{transform:matrix(0.242778,0.007041,-0.007247,0.249895,0,0);-ms-transform:matrix(0.242778,0.007041,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.242778,0.007041,-0.007247,0.249895,0,0);}
.m5b_c00440{transform:matrix(0.243661,0.006579,-0.006748,0.249909,0,0);-ms-transform:matrix(0.243661,0.006579,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.243661,0.006579,-0.006748,0.249909,0,0);}
.m54_c00440{transform:matrix(0.243701,0.006580,-0.006748,0.249909,0,0);-ms-transform:matrix(0.243701,0.006580,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.243701,0.006580,-0.006748,0.249909,0,0);}
.maa_c00440{transform:matrix(0.243964,0.008303,-0.008504,0.249855,0,0);-ms-transform:matrix(0.243964,0.008303,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.243964,0.008303,-0.008504,0.249855,0,0);}
.m73_c00440{transform:matrix(0.243985,0.007320,-0.007497,0.249888,0,0);-ms-transform:matrix(0.243985,0.007320,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.243985,0.007320,-0.007497,0.249888,0,0);}
.m59_c00440{transform:matrix(0.244166,0.006592,-0.006748,0.249909,0,0);-ms-transform:matrix(0.244166,0.006592,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.244166,0.006592,-0.006748,0.249909,0,0);}
.m3e_c00440{transform:matrix(0.244192,0.007082,-0.007247,0.249895,0,0);-ms-transform:matrix(0.244192,0.007082,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.244192,0.007082,-0.007247,0.249895,0,0);}
.m83_c00440{transform:matrix(0.244660,0.007340,-0.007497,0.249888,0,0);-ms-transform:matrix(0.244660,0.007340,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.244660,0.007340,-0.007497,0.249888,0,0);}
.m34_c00440{transform:matrix(0.244767,0.007098,-0.007247,0.249895,0,0);-ms-transform:matrix(0.244767,0.007098,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.244767,0.007098,-0.007247,0.249895,0,0);}
.m5f_c00440{transform:matrix(0.244936,0.006613,-0.006748,0.249909,0,0);-ms-transform:matrix(0.244936,0.006613,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.244936,0.006613,-0.006748,0.249909,0,0);}
.m31_c00440{transform:matrix(0.245697,0.007125,-0.007247,0.249895,0,0);-ms-transform:matrix(0.245697,0.007125,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.245697,0.007125,-0.007247,0.249895,0,0);}
.m66_c00440{transform:matrix(0.245880,0.006639,-0.006748,0.249909,0,0);-ms-transform:matrix(0.245880,0.006639,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.245880,0.006639,-0.006748,0.249909,0,0);}
.m99_c00440{transform:matrix(0.246054,0.008621,-0.008753,0.249847,0,0);-ms-transform:matrix(0.246054,0.008621,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.246054,0.008621,-0.008753,0.249847,0,0);}
.m51_c00440{transform:matrix(0.246360,0.006652,-0.006748,0.249909,0,0);-ms-transform:matrix(0.246360,0.006652,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.246360,0.006652,-0.006748,0.249909,0,0);}
.m20_c00440{transform:matrix(0.246401,0.007146,-0.007247,0.249895,0,0);-ms-transform:matrix(0.246401,0.007146,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.246401,0.007146,-0.007247,0.249895,0,0);}
.m74_c00440{transform:matrix(0.247104,0.007413,-0.007497,0.249888,0,0);-ms-transform:matrix(0.247104,0.007413,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.247104,0.007413,-0.007497,0.249888,0,0);}
.m75_c00440{transform:matrix(0.248193,0.007446,-0.007497,0.249888,0,0);-ms-transform:matrix(0.248193,0.007446,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.248193,0.007446,-0.007497,0.249888,0,0);}
.mcd_c00440{transform:matrix(0.249295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249295,0.000000,0.000000,0.250000,0,0);}
.m89_c00440{transform:matrix(0.249393,0.007482,-0.007497,0.249888,0,0);-ms-transform:matrix(0.249393,0.007482,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.249393,0.007482,-0.007497,0.249888,0,0);}
.mac_c00440{transform:matrix(0.250010,0.008509,-0.008504,0.249855,0,0);-ms-transform:matrix(0.250010,0.008509,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.250010,0.008509,-0.008504,0.249855,0,0);}
.m70_c00440{transform:matrix(0.250547,0.007516,-0.007497,0.249888,0,0);-ms-transform:matrix(0.250547,0.007516,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.250547,0.007516,-0.007497,0.249888,0,0);}
.m2d_c00440{transform:matrix(0.250555,0.007266,-0.007247,0.249895,0,0);-ms-transform:matrix(0.250555,0.007266,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.250555,0.007266,-0.007247,0.249895,0,0);}
.mb5_c00440{transform:matrix(0.250694,0.010038,-0.010002,0.249800,0,0);-ms-transform:matrix(0.250694,0.010038,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.250694,0.010038,-0.010002,0.249800,0,0);}
.m43_c00440{transform:matrix(0.250825,0.007274,-0.007247,0.249895,0,0);-ms-transform:matrix(0.250825,0.007274,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.250825,0.007274,-0.007247,0.249895,0,0);}
.md0_c00440{transform:matrix(0.251405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251405,0.000000,0.000000,0.250000,0,0);}
.m7b_c00440{transform:matrix(0.251582,0.007547,-0.007497,0.249888,0,0);-ms-transform:matrix(0.251582,0.007547,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.251582,0.007547,-0.007497,0.249888,0,0);}
.m3c_c00440{transform:matrix(0.251589,0.007296,-0.007247,0.249895,0,0);-ms-transform:matrix(0.251589,0.007296,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.251589,0.007296,-0.007247,0.249895,0,0);}
.m22_c00440{transform:matrix(0.252379,0.007319,-0.007247,0.249895,0,0);-ms-transform:matrix(0.252379,0.007319,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.252379,0.007319,-0.007247,0.249895,0,0);}
.m91_c00440{transform:matrix(0.253731,0.007612,-0.007497,0.249888,0,0);-ms-transform:matrix(0.253731,0.007612,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.253731,0.007612,-0.007497,0.249888,0,0);}
.m7c_c00440{transform:matrix(0.254196,0.007626,-0.007497,0.249888,0,0);-ms-transform:matrix(0.254196,0.007626,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.254196,0.007626,-0.007497,0.249888,0,0);}
.me1_c00440{transform:matrix(0.255125,0.009704,-0.009503,0.249819,0,0);-ms-transform:matrix(0.255125,0.009704,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.255125,0.009704,-0.009503,0.249819,0,0);}
.m2c_c00440{transform:matrix(0.255877,0.007420,-0.007247,0.249895,0,0);-ms-transform:matrix(0.255877,0.007420,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.255877,0.007420,-0.007247,0.249895,0,0);}
.mcc_c00440{transform:matrix(0.256473,0.003334,-0.003250,0.249979,0,0);-ms-transform:matrix(0.256473,0.003334,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.256473,0.003334,-0.003250,0.249979,0,0);}
.m8b_c00440{transform:matrix(0.256580,0.007697,-0.007497,0.249888,0,0);-ms-transform:matrix(0.256580,0.007697,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.256580,0.007697,-0.007497,0.249888,0,0);}
.m4b_c00440{transform:matrix(0.256827,0.007448,-0.007247,0.249895,0,0);-ms-transform:matrix(0.256827,0.007448,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.256827,0.007448,-0.007247,0.249895,0,0);}
.m46_c00440{transform:matrix(0.256922,0.007451,-0.007247,0.249895,0,0);-ms-transform:matrix(0.256922,0.007451,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.256922,0.007451,-0.007247,0.249895,0,0);}
.mc0_c00440{transform:matrix(0.257023,0.009262,-0.009003,0.249838,0,0);-ms-transform:matrix(0.257023,0.009262,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.257023,0.009262,-0.009003,0.249838,0,0);}
.m88_c00440{transform:matrix(0.257454,0.007724,-0.007497,0.249888,0,0);-ms-transform:matrix(0.257454,0.007724,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.257454,0.007724,-0.007497,0.249888,0,0);}
.m39_c00440{transform:matrix(0.257512,0.007468,-0.007247,0.249895,0,0);-ms-transform:matrix(0.257512,0.007468,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.257512,0.007468,-0.007247,0.249895,0,0);}
.me2_c00440{transform:matrix(0.258128,0.009819,-0.009503,0.249819,0,0);-ms-transform:matrix(0.258128,0.009819,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.258128,0.009819,-0.009503,0.249819,0,0);}
.m7f_c00440{transform:matrix(0.258499,0.007755,-0.007497,0.249888,0,0);-ms-transform:matrix(0.258499,0.007755,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.258499,0.007755,-0.007497,0.249888,0,0);}
.m40_c00440{transform:matrix(0.259021,0.007512,-0.007247,0.249895,0,0);-ms-transform:matrix(0.259021,0.007512,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.259021,0.007512,-0.007247,0.249895,0,0);}
.m37_c00440{transform:matrix(0.259101,0.007514,-0.007247,0.249895,0,0);-ms-transform:matrix(0.259101,0.007514,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.259101,0.007514,-0.007247,0.249895,0,0);}
.m5c_c00440{transform:matrix(0.259116,0.006996,-0.006748,0.249909,0,0);-ms-transform:matrix(0.259116,0.006996,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.259116,0.006996,-0.006748,0.249909,0,0);}
.m84_c00440{transform:matrix(0.259403,0.007782,-0.007497,0.249888,0,0);-ms-transform:matrix(0.259403,0.007782,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.259403,0.007782,-0.007497,0.249888,0,0);}
.m41_c00440{transform:matrix(0.259721,0.007532,-0.007247,0.249895,0,0);-ms-transform:matrix(0.259721,0.007532,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.259721,0.007532,-0.007247,0.249895,0,0);}
.m9_c00440{transform:matrix(0.260071,0.007542,-0.007247,0.249895,0,0);-ms-transform:matrix(0.260071,0.007542,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.260071,0.007542,-0.007247,0.249895,0,0);}
.me6_c00440{transform:matrix(0.260297,0.009901,-0.009503,0.249819,0,0);-ms-transform:matrix(0.260297,0.009901,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.260297,0.009901,-0.009503,0.249819,0,0);}
.maf_c00440{transform:matrix(0.260574,0.008868,-0.008504,0.249855,0,0);-ms-transform:matrix(0.260574,0.008868,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.260574,0.008868,-0.008504,0.249855,0,0);}
.m21_c00440{transform:matrix(0.260615,0.007558,-0.007247,0.249895,0,0);-ms-transform:matrix(0.260615,0.007558,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.260615,0.007558,-0.007247,0.249895,0,0);}
.m1d_c00440{transform:matrix(0.261855,0.007594,-0.007247,0.249895,0,0);-ms-transform:matrix(0.261855,0.007594,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.261855,0.007594,-0.007247,0.249895,0,0);}
.m55_c00440{transform:matrix(0.262539,0.007089,-0.006748,0.249909,0,0);-ms-transform:matrix(0.262539,0.007089,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.262539,0.007089,-0.006748,0.249909,0,0);}
.m9b_c00440{transform:matrix(0.263179,0.009220,-0.008753,0.249847,0,0);-ms-transform:matrix(0.263179,0.009220,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.263179,0.009220,-0.008753,0.249847,0,0);}
.me5_c00440{transform:matrix(0.263405,0.010019,-0.009503,0.249819,0,0);-ms-transform:matrix(0.263405,0.010019,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.263405,0.010019,-0.009503,0.249819,0,0);}
.m3a_c00440{transform:matrix(0.263454,0.007640,-0.007247,0.249895,0,0);-ms-transform:matrix(0.263454,0.007640,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.263454,0.007640,-0.007247,0.249895,0,0);}
.mbc_c00440{transform:matrix(0.263589,0.009499,-0.009003,0.249838,0,0);-ms-transform:matrix(0.263589,0.009499,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.263589,0.009499,-0.009003,0.249838,0,0);}
.m4a_c00440{transform:matrix(0.264099,0.007659,-0.007247,0.249895,0,0);-ms-transform:matrix(0.264099,0.007659,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.264099,0.007659,-0.007247,0.249895,0,0);}
.m9e_c00440{transform:matrix(0.265057,0.009286,-0.008753,0.249847,0,0);-ms-transform:matrix(0.265057,0.009286,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.265057,0.009286,-0.008753,0.249847,0,0);}
.mc2_c00440{transform:matrix(0.266684,0.002934,-0.002750,0.249985,0,0);-ms-transform:matrix(0.266684,0.002934,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.266684,0.002934,-0.002750,0.249985,0,0);}
.me0_c00440{transform:matrix(0.267202,0.010164,-0.009503,0.249819,0,0);-ms-transform:matrix(0.267202,0.010164,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.267202,0.010164,-0.009503,0.249819,0,0);}
.md_c00440{transform:matrix(0.267213,0.007749,-0.007247,0.249895,0,0);-ms-transform:matrix(0.267213,0.007749,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.267213,0.007749,-0.007247,0.249895,0,0);}
.m26_c00440{transform:matrix(0.267588,0.007760,-0.007247,0.249895,0,0);-ms-transform:matrix(0.267588,0.007760,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.267588,0.007760,-0.007247,0.249895,0,0);}
.m5e_c00440{transform:matrix(0.267602,0.007225,-0.006748,0.249909,0,0);-ms-transform:matrix(0.267602,0.007225,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.267602,0.007225,-0.006748,0.249909,0,0);}
.m63_c00440{transform:matrix(0.267632,0.007226,-0.006748,0.249909,0,0);-ms-transform:matrix(0.267632,0.007226,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.267632,0.007226,-0.006748,0.249909,0,0);}
.m2f_c00440{transform:matrix(0.267877,0.007768,-0.007247,0.249895,0,0);-ms-transform:matrix(0.267877,0.007768,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.267877,0.007768,-0.007247,0.249895,0,0);}
.mab_c00440{transform:matrix(0.268070,0.009123,-0.008504,0.249855,0,0);-ms-transform:matrix(0.268070,0.009123,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.268070,0.009123,-0.008504,0.249855,0,0);}
.mad_c00440{transform:matrix(0.268225,0.009129,-0.008504,0.249855,0,0);-ms-transform:matrix(0.268225,0.009129,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.268225,0.009129,-0.008504,0.249855,0,0);}
.me4_c00440{transform:matrix(0.268771,0.010224,-0.009503,0.249819,0,0);-ms-transform:matrix(0.268771,0.010224,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.268771,0.010224,-0.009503,0.249819,0,0);}
.mde_c00440{transform:matrix(0.269390,0.010247,-0.009503,0.249819,0,0);-ms-transform:matrix(0.269390,0.010247,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.269390,0.010247,-0.009503,0.249819,0,0);}
.m9a_c00440{transform:matrix(0.269420,0.009439,-0.008753,0.249847,0,0);-ms-transform:matrix(0.269420,0.009439,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.269420,0.009439,-0.008753,0.249847,0,0);}
.m33_c00440{transform:matrix(0.270171,0.007835,-0.007247,0.249895,0,0);-ms-transform:matrix(0.270171,0.007835,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.270171,0.007835,-0.007247,0.249895,0,0);}
.m2a_c00440{transform:matrix(0.270321,0.007839,-0.007247,0.249895,0,0);-ms-transform:matrix(0.270321,0.007839,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.270321,0.007839,-0.007247,0.249895,0,0);}
.m7e_c00440{transform:matrix(0.270688,0.008121,-0.007497,0.249888,0,0);-ms-transform:matrix(0.270688,0.008121,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.270688,0.008121,-0.007497,0.249888,0,0);}
.m2e_c00440{transform:matrix(0.271081,0.007861,-0.007247,0.249895,0,0);-ms-transform:matrix(0.271081,0.007861,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.271081,0.007861,-0.007247,0.249895,0,0);}
.m71_c00440{transform:matrix(0.271148,0.008134,-0.007497,0.249888,0,0);-ms-transform:matrix(0.271148,0.008134,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.271148,0.008134,-0.007497,0.249888,0,0);}
.mb8_c00440{transform:matrix(0.271409,0.009780,-0.009003,0.249838,0,0);-ms-transform:matrix(0.271409,0.009780,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.271409,0.009780,-0.009003,0.249838,0,0);}
.m45_c00440{transform:matrix(0.271766,0.007881,-0.007247,0.249895,0,0);-ms-transform:matrix(0.271766,0.007881,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.271766,0.007881,-0.007247,0.249895,0,0);}
.mb2_c00440{transform:matrix(0.271873,0.009253,-0.008504,0.249855,0,0);-ms-transform:matrix(0.271873,0.009253,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.271873,0.009253,-0.008504,0.249855,0,0);}
.m8e_c00440{transform:matrix(0.272372,0.008171,-0.007497,0.249888,0,0);-ms-transform:matrix(0.272372,0.008171,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.272372,0.008171,-0.007497,0.249888,0,0);}
.mb9_c00440{transform:matrix(0.272528,0.009821,-0.009003,0.249838,0,0);-ms-transform:matrix(0.272528,0.009821,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.272528,0.009821,-0.009003,0.249838,0,0);}
.m32_c00440{transform:matrix(0.272770,0.007910,-0.007247,0.249895,0,0);-ms-transform:matrix(0.272770,0.007910,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.272770,0.007910,-0.007247,0.249895,0,0);}
.m87_c00440{transform:matrix(0.272922,0.008188,-0.007497,0.249888,0,0);-ms-transform:matrix(0.272922,0.008188,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.272922,0.008188,-0.007497,0.249888,0,0);}
.m2b_c00440{transform:matrix(0.273750,0.007939,-0.007247,0.249895,0,0);-ms-transform:matrix(0.273750,0.007939,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.273750,0.007939,-0.007247,0.249895,0,0);}
.mba_c00440{transform:matrix(0.273777,0.009866,-0.009003,0.249838,0,0);-ms-transform:matrix(0.273777,0.009866,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.273777,0.009866,-0.009003,0.249838,0,0);}
.m94_c00440{transform:matrix(0.274272,0.008228,-0.007497,0.249888,0,0);-ms-transform:matrix(0.274272,0.008228,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.274272,0.008228,-0.007497,0.249888,0,0);}
.m98_c00440{transform:matrix(0.274537,0.009618,-0.008753,0.249847,0,0);-ms-transform:matrix(0.274537,0.009618,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.274537,0.009618,-0.008753,0.249847,0,0);}
.mc7_c00440{transform:matrix(0.274563,0.003020,-0.002750,0.249985,0,0);-ms-transform:matrix(0.274563,0.003020,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.274563,0.003020,-0.002750,0.249985,0,0);}
.mbe_c00440{transform:matrix(0.274677,0.009898,-0.009003,0.249838,0,0);-ms-transform:matrix(0.274677,0.009898,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.274677,0.009898,-0.009003,0.249838,0,0);}
.m92_c00440{transform:matrix(0.275476,0.008264,-0.007497,0.249888,0,0);-ms-transform:matrix(0.275476,0.008264,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.275476,0.008264,-0.007497,0.249888,0,0);}
.m27_c00440{transform:matrix(0.275859,0.008000,-0.007247,0.249895,0,0);-ms-transform:matrix(0.275859,0.008000,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.275859,0.008000,-0.007247,0.249895,0,0);}
.m60_c00440{transform:matrix(0.276344,0.007461,-0.006748,0.249909,0,0);-ms-transform:matrix(0.276344,0.007461,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.276344,0.007461,-0.006748,0.249909,0,0);}
.m77_c00440{transform:matrix(0.277000,0.008310,-0.007497,0.249888,0,0);-ms-transform:matrix(0.277000,0.008310,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.277000,0.008310,-0.007497,0.249888,0,0);}
.m48_c00440{transform:matrix(0.277583,0.008050,-0.007247,0.249895,0,0);-ms-transform:matrix(0.277583,0.008050,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.277583,0.008050,-0.007247,0.249895,0,0);}
.m12_c00440{transform:matrix(0.278098,0.008065,-0.007247,0.249895,0,0);-ms-transform:matrix(0.278098,0.008065,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.278098,0.008065,-0.007247,0.249895,0,0);}
.m81_c00440{transform:matrix(0.278660,0.008360,-0.007497,0.249888,0,0);-ms-transform:matrix(0.278660,0.008360,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.278660,0.008360,-0.007497,0.249888,0,0);}
.m64_c00440{transform:matrix(0.278828,0.007528,-0.006748,0.249909,0,0);-ms-transform:matrix(0.278828,0.007528,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.278828,0.007528,-0.006748,0.249909,0,0);}
.m85_c00440{transform:matrix(0.279009,0.008370,-0.007497,0.249888,0,0);-ms-transform:matrix(0.279009,0.008370,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.279009,0.008370,-0.007497,0.249888,0,0);}
.mdf_c00440{transform:matrix(0.280097,0.010654,-0.009503,0.249819,0,0);-ms-transform:matrix(0.280097,0.010654,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.280097,0.010654,-0.009503,0.249819,0,0);}
.mae_c00440{transform:matrix(0.280478,0.009546,-0.008504,0.249855,0,0);-ms-transform:matrix(0.280478,0.009546,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.280478,0.009546,-0.008504,0.249855,0,0);}
.m79_c00440{transform:matrix(0.280884,0.008427,-0.007497,0.249888,0,0);-ms-transform:matrix(0.280884,0.008427,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.280884,0.008427,-0.007497,0.249888,0,0);}
.m8f_c00440{transform:matrix(0.281673,0.008450,-0.007497,0.249888,0,0);-ms-transform:matrix(0.281673,0.008450,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.281673,0.008450,-0.007497,0.249888,0,0);}
.me3_c00440{transform:matrix(0.281861,0.010721,-0.009503,0.249819,0,0);-ms-transform:matrix(0.281861,0.010721,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.281861,0.010721,-0.009503,0.249819,0,0);}
.mcb_c00440{transform:matrix(0.285931,0.003717,-0.003250,0.249979,0,0);-ms-transform:matrix(0.285931,0.003717,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.285931,0.003717,-0.003250,0.249979,0,0);}
.m49_c00440{transform:matrix(0.288979,0.008380,-0.007247,0.249895,0,0);-ms-transform:matrix(0.288979,0.008380,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.288979,0.008380,-0.007247,0.249895,0,0);}
.mbf_c00440{transform:matrix(0.289327,0.010426,-0.009003,0.249838,0,0);-ms-transform:matrix(0.289327,0.010426,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.289327,0.010426,-0.009003,0.249838,0,0);}
.m61_c00440{transform:matrix(0.290099,0.007833,-0.006748,0.249909,0,0);-ms-transform:matrix(0.290099,0.007833,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.290099,0.007833,-0.006748,0.249909,0,0);}
.mb3_c00440{transform:matrix(0.294024,0.011773,-0.010002,0.249800,0,0);-ms-transform:matrix(0.294024,0.011773,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.294024,0.011773,-0.010002,0.249800,0,0);}
.mcf_c00440{transform:matrix(0.295745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295745,0.000000,0.000000,0.250000,0,0);}
.mbd_c00440{transform:matrix(0.295948,0.010665,-0.009003,0.249838,0,0);-ms-transform:matrix(0.295948,0.010665,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.295948,0.010665,-0.009003,0.249838,0,0);}
.mc3_c00440{transform:matrix(0.296272,0.003259,-0.002750,0.249985,0,0);-ms-transform:matrix(0.296272,0.003259,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.296272,0.003259,-0.002750,0.249985,0,0);}
.mbb_c00440{transform:matrix(0.299705,0.010800,-0.009003,0.249838,0,0);-ms-transform:matrix(0.299705,0.010800,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.299705,0.010800,-0.009003,0.249838,0,0);}
.m96_c00440{transform:matrix(0.299921,0.010508,-0.008753,0.249847,0,0);-ms-transform:matrix(0.299921,0.010508,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.299921,0.010508,-0.008753,0.249847,0,0);}
.m1a_c00440{transform:matrix(0.385618,0.011183,-0.007247,0.249895,0,0);-ms-transform:matrix(0.385618,0.011183,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.385618,0.011183,-0.007247,0.249895,0,0);}
.m0_c00440{transform:matrix(0.456345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456345,0.000000,0.000000,0.250000,0,0);}
.m11_c00440{transform:matrix(0.519946,0.015078,-0.007247,0.249895,0,0);-ms-transform:matrix(0.519946,0.015078,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.519946,0.015078,-0.007247,0.249895,0,0);}
.mc1_c00440{transform:matrix(0.601455,0.021674,-0.009003,0.249838,0,0);-ms-transform:matrix(0.601455,0.021674,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.601455,0.021674,-0.009003,0.249838,0,0);}
.mc6_c00440{transform:matrix(0.606143,0.006668,-0.002750,0.249985,0,0);-ms-transform:matrix(0.606143,0.006668,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.606143,0.006668,-0.002750,0.249985,0,0);}
.mb4_c00440{transform:matrix(1.469522,0.058840,-0.010002,0.249800,0,0);-ms-transform:matrix(1.469522,0.058840,-0.010002,0.249800,0,0);-webkit-transform:matrix(1.469522,0.058840,-0.010002,0.249800,0,0);}
.mc4_c00440{transform:matrix(1.881541,0.020697,-0.002750,0.249985,0,0);-ms-transform:matrix(1.881541,0.020697,-0.002750,0.249985,0,0);-webkit-transform:matrix(1.881541,0.020697,-0.002750,0.249985,0,0);}
.mf7_c00440{transform:matrix(2.253315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.253315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.253315,0.000000,0.000000,0.250000,0,0);}
.v0_c00440{vertical-align:0.000000px;}
.ls0_c00440{letter-spacing:0.000000px;}
.sc__c00440{text-shadow:none;}
.sc0_c00440{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__c00440{-webkit-text-stroke:0px transparent;}
.sc0_c00440{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00440{word-spacing:0.000000px;}
.fc0_c00440{color:transparent;}
.fs15_c00440{font-size:42.000000px;}
.fsc_c00440{font-size:65.976797px;}
.fs11_c00440{font-size:66.000000px;}
.fsd_c00440{font-size:66.003993px;}
.fsf_c00440{font-size:66.005577px;}
.fsa_c00440{font-size:71.969646px;}
.fs8_c00440{font-size:71.972131px;}
.fs13_c00440{font-size:71.980017px;}
.fs4_c00440{font-size:72.026239px;}
.fs2_c00440{font-size:72.030270px;}
.fs7_c00440{font-size:72.032393px;}
.fs10_c00440{font-size:78.000000px;}
.fs6_c00440{font-size:78.026360px;}
.fs3_c00440{font-size:78.028426px;}
.fs0_c00440{font-size:84.000000px;}
.fse_c00440{font-size:84.005082px;}
.fs1_c00440{font-size:84.035315px;}
.fs16_c00440{font-size:90.000000px;}
.fs9_c00440{font-size:90.043235px;}
.fs14_c00440{font-size:95.973356px;}
.fs5_c00440{font-size:96.034986px;}
.fs12_c00440{font-size:101.971691px;}
.fsb_c00440{font-size:119.976058px;}
.y0_c00440{bottom:0.000000px;}
.yfd_c00440{bottom:137.176500px;}
.yfc_c00440{bottom:138.051000px;}
.yfb_c00440{bottom:140.404500px;}
.yfa_c00440{bottom:142.473000px;}
.yf9_c00440{bottom:143.376000px;}
.yf8_c00440{bottom:162.837000px;}
.yf7_c00440{bottom:169.713645px;}
.yf6_c00440{bottom:172.002833px;}
.yf5_c00440{bottom:172.763037px;}
.yf4_c00440{bottom:173.551806px;}
.yf3_c00440{bottom:177.332919px;}
.yf2_c00440{bottom:178.411553px;}
.yf1_c00440{bottom:181.463322px;}
.yf0_c00440{bottom:182.935445px;}
.yef_c00440{bottom:183.631989px;}
.yee_c00440{bottom:184.424064px;}
.yed_c00440{bottom:185.566740px;}
.yec_c00440{bottom:187.040288px;}
.yeb_c00440{bottom:188.170001px;}
.yea_c00440{bottom:189.239303px;}
.ye9_c00440{bottom:190.383746px;}
.ye8_c00440{bottom:192.272564px;}
.ye7_c00440{bottom:208.080468px;}
.ye6_c00440{bottom:209.085237px;}
.ye5_c00440{bottom:212.344721px;}
.ye4_c00440{bottom:217.899935px;}
.ye3_c00440{bottom:218.894256px;}
.ye2_c00440{bottom:220.772603px;}
.ye1_c00440{bottom:223.972284px;}
.ye0_c00440{bottom:228.177191px;}
.ydf_c00440{bottom:231.794256px;}
.yde_c00440{bottom:233.604593px;}
.ydd_c00440{bottom:235.461263px;}
.ydc_c00440{bottom:244.339809px;}
.ydb_c00440{bottom:247.293207px;}
.yda_c00440{bottom:248.147010px;}
.yd9_c00440{bottom:250.238055px;}
.yd8_c00440{bottom:253.594443px;}
.yd7_c00440{bottom:255.759816px;}
.yd6_c00440{bottom:257.008173px;}
.yd5_c00440{bottom:258.239658px;}
.yd4_c00440{bottom:261.222240px;}
.yd3_c00440{bottom:264.913959px;}
.yd2_c00440{bottom:267.046500px;}
.yd1_c00440{bottom:277.969500px;}
.yd0_c00440{bottom:306.579000px;}
.ycf_c00440{bottom:325.186500px;}
.yce_c00440{bottom:362.692948px;}
.ycd_c00440{bottom:367.743000px;}
.yca_c00440{bottom:385.610631px;}
.ycb_c00440{bottom:385.610969px;}
.ycc_c00440{bottom:385.611675px;}
.yc9_c00440{bottom:436.423585px;}
.yc8_c00440{bottom:437.723324px;}
.yc7_c00440{bottom:438.603730px;}
.yc6_c00440{bottom:440.820027px;}
.yc5_c00440{bottom:441.797850px;}
.yc4_c00440{bottom:442.261500px;}
.yc3_c00440{bottom:461.235696px;}
.yc2_c00440{bottom:462.398100px;}
.yc1_c00440{bottom:465.206748px;}
.yc0_c00440{bottom:467.172780px;}
.ybf_c00440{bottom:469.627620px;}
.ybe_c00440{bottom:471.199830px;}
.ybd_c00440{bottom:474.383562px;}
.ybc_c00440{bottom:475.987740px;}
.ybb_c00440{bottom:477.913164px;}
.yba_c00440{bottom:479.535000px;}
.yb9_c00440{bottom:493.601580px;}
.yb8_c00440{bottom:498.904440px;}
.yb7_c00440{bottom:500.364720px;}
.yb6_c00440{bottom:513.516360px;}
.yb5_c00440{bottom:515.713500px;}
.yb4_c00440{bottom:535.629507px;}
.yb3_c00440{bottom:536.659146px;}
.yb2_c00440{bottom:538.220511px;}
.yb1_c00440{bottom:539.026311px;}
.yb0_c00440{bottom:543.502173px;}
.yaf_c00440{bottom:545.780955px;}
.yae_c00440{bottom:547.294482px;}
.yad_c00440{bottom:549.895278px;}
.yac_c00440{bottom:551.355000px;}
.yab_c00440{bottom:572.912776px;}
.yaa_c00440{bottom:573.576099px;}
.ya9_c00440{bottom:576.670163px;}
.ya8_c00440{bottom:578.057862px;}
.ya7_c00440{bottom:579.768411px;}
.ya6_c00440{bottom:580.781460px;}
.ya5_c00440{bottom:581.832918px;}
.ya4_c00440{bottom:582.520560px;}
.ya3_c00440{bottom:584.529686px;}
.ya2_c00440{bottom:585.922500px;}
.ya1_c00440{bottom:602.986582px;}
.ya0_c00440{bottom:603.766627px;}
.y9f_c00440{bottom:606.102825px;}
.y9e_c00440{bottom:609.219540px;}
.y9d_c00440{bottom:611.888430px;}
.y9c_c00440{bottom:614.272665px;}
.y9b_c00440{bottom:615.811072px;}
.y9a_c00440{bottom:618.930308px;}
.y99_c00440{bottom:620.395792px;}
.y98_c00440{bottom:622.360500px;}
.y97_c00440{bottom:641.658180px;}
.y96_c00440{bottom:644.947005px;}
.y95_c00440{bottom:645.954105px;}
.y94_c00440{bottom:648.653115px;}
.y93_c00440{bottom:649.981650px;}
.y92_c00440{bottom:651.262080px;}
.y91_c00440{bottom:655.572000px;}
.y90_c00440{bottom:685.233000px;}
.y8f_c00440{bottom:685.936980px;}
.y8e_c00440{bottom:686.627700px;}
.y8d_c00440{bottom:687.803370px;}
.y8c_c00440{bottom:688.477365px;}
.y8b_c00440{bottom:689.400990px;}
.y8a_c00440{bottom:690.563220px;}
.y89_c00440{bottom:691.712550px;}
.y88_c00440{bottom:709.639950px;}
.y87_c00440{bottom:710.428920px;}
.y86_c00440{bottom:712.498065px;}
.y85_c00440{bottom:713.982825px;}
.y84_c00440{bottom:714.766500px;}
.y83_c00440{bottom:715.530210px;}
.y82_c00440{bottom:718.294965px;}
.y81_c00440{bottom:719.084295px;}
.y80_c00440{bottom:720.368835px;}
.y7f_c00440{bottom:722.605410px;}
.y7e_c00440{bottom:723.125880px;}
.y7d_c00440{bottom:724.399830px;}
.y7c_c00440{bottom:744.753015px;}
.y7b_c00440{bottom:745.724835px;}
.y7a_c00440{bottom:749.072745px;}
.y79_c00440{bottom:751.752405px;}
.y78_c00440{bottom:755.053470px;}
.y77_c00440{bottom:756.739215px;}
.y76_c00440{bottom:757.741455px;}
.y75_c00440{bottom:759.070710px;}
.y74_c00440{bottom:760.045680px;}
.y73_c00440{bottom:761.025825px;}
.y72_c00440{bottom:763.656435px;}
.y71_c00440{bottom:764.319870px;}
.y70_c00440{bottom:764.919000px;}
.y6f_c00440{bottom:806.797989px;}
.y6e_c00440{bottom:809.994000px;}
.y6d_c00440{bottom:825.821103px;}
.y6c_c00440{bottom:827.278588px;}
.y6b_c00440{bottom:828.719608px;}
.y6a_c00440{bottom:829.446490px;}
.y69_c00440{bottom:830.854254px;}
.y68_c00440{bottom:831.844264px;}
.y67_c00440{bottom:856.786146px;}
.y66_c00440{bottom:857.134371px;}
.y65_c00440{bottom:858.645796px;}
.y64_c00440{bottom:859.635271px;}
.y63_c00440{bottom:860.120964px;}
.y62_c00440{bottom:860.470443px;}
.y61_c00440{bottom:862.114885px;}
.y60_c00440{bottom:862.784383px;}
.y5f_c00440{bottom:863.784298px;}
.y5e_c00440{bottom:864.274846px;}
.y5d_c00440{bottom:865.255905px;}
.y5c_c00440{bottom:865.927627px;}
.y5b_c00440{bottom:866.559043px;}
.y5a_c00440{bottom:867.228420px;}
.y59_c00440{bottom:889.813089px;}
.y58_c00440{bottom:891.288463px;}
.y57_c00440{bottom:893.131780px;}
.y56_c00440{bottom:895.510993px;}
.y55_c00440{bottom:897.291090px;}
.y54_c00440{bottom:898.812958px;}
.y53_c00440{bottom:899.975187px;}
.y52_c00440{bottom:902.322121px;}
.y51_c00440{bottom:903.241512px;}
.y50_c00440{bottom:905.319000px;}
.y4f_c00440{bottom:938.979292px;}
.y4e_c00440{bottom:941.135746px;}
.y4d_c00440{bottom:942.387168px;}
.y4c_c00440{bottom:944.921871px;}
.y4b_c00440{bottom:960.802924px;}
.y4a_c00440{bottom:964.422196px;}
.y49_c00440{bottom:967.413996px;}
.y48_c00440{bottom:968.258007px;}
.y47_c00440{bottom:969.905267px;}
.y46_c00440{bottom:971.033224px;}
.y45_c00440{bottom:973.739902px;}
.y44_c00440{bottom:974.583130px;}
.y43_c00440{bottom:975.967085px;}
.y42_c00440{bottom:977.060544px;}
.y41_c00440{bottom:997.544718px;}
.y40_c00440{bottom:998.431042px;}
.y3f_c00440{bottom:998.962045px;}
.y3e_c00440{bottom:999.683611px;}
.y3d_c00440{bottom:1000.203278px;}
.y3c_c00440{bottom:1000.557816px;}
.y3b_c00440{bottom:1001.092387px;}
.y3a_c00440{bottom:1002.156525px;}
.y39_c00440{bottom:1003.046526px;}
.y38_c00440{bottom:1003.553463px;}
.y37_c00440{bottom:1004.612269px;}
.y36_c00440{bottom:1005.147493px;}
.y35_c00440{bottom:1006.007446px;}
.y34_c00440{bottom:1006.395754px;}
.y33_c00440{bottom:1008.120903px;}
.y32_c00440{bottom:1032.194985px;}
.y31_c00440{bottom:1033.217721px;}
.y30_c00440{bottom:1033.880009px;}
.y2f_c00440{bottom:1035.358701px;}
.y2e_c00440{bottom:1037.031520px;}
.y2d_c00440{bottom:1037.461261px;}
.y2c_c00440{bottom:1039.531057px;}
.y2b_c00440{bottom:1041.419150px;}
.y2a_c00440{bottom:1043.281591px;}
.y29_c00440{bottom:1043.710288px;}
.y28_c00440{bottom:1044.317055px;}
.y27_c00440{bottom:1068.516116px;}
.y26_c00440{bottom:1070.044383px;}
.y25_c00440{bottom:1070.809495px;}
.y24_c00440{bottom:1071.559990px;}
.y23_c00440{bottom:1072.597035px;}
.y22_c00440{bottom:1073.599927px;}
.y21_c00440{bottom:1074.145902px;}
.y20_c00440{bottom:1074.612391px;}
.y1f_c00440{bottom:1075.370260px;}
.y1e_c00440{bottom:1076.115534px;}
.y1d_c00440{bottom:1077.686632px;}
.y1c_c00440{bottom:1078.426077px;}
.y1b_c00440{bottom:1079.724896px;}
.y1a_c00440{bottom:1083.213833px;}
.y19_c00440{bottom:1102.658784px;}
.y18_c00440{bottom:1103.824001px;}
.y17_c00440{bottom:1104.964939px;}
.y16_c00440{bottom:1107.529644px;}
.y15_c00440{bottom:1108.942967px;}
.y14_c00440{bottom:1109.417229px;}
.y13_c00440{bottom:1110.548292px;}
.y12_c00440{bottom:1111.252583px;}
.y11_c00440{bottom:1112.895085px;}
.y10_c00440{bottom:1114.501389px;}
.yf_c00440{bottom:1116.326670px;}
.ye_c00440{bottom:1116.976923px;}
.yd_c00440{bottom:1137.596902px;}
.yc_c00440{bottom:1138.284507px;}
.yb_c00440{bottom:1138.958061px;}
.ya_c00440{bottom:1142.144001px;}
.y9_c00440{bottom:1145.956167px;}
.y8_c00440{bottom:1146.661476px;}
.y7_c00440{bottom:1148.885849px;}
.y6_c00440{bottom:1150.194720px;}
.y5_c00440{bottom:1151.796912px;}
.y4_c00440{bottom:1153.052365px;}
.y3_c00440{bottom:1154.333919px;}
.y2_c00440{bottom:1157.497500px;}
.y1_c00440{bottom:1207.695000px;}
.h17_c00440{height:42.000000px;}
.he_c00440{height:65.976797px;}
.h13_c00440{height:66.000000px;}
.hf_c00440{height:66.003993px;}
.h11_c00440{height:66.005577px;}
.hc_c00440{height:71.969646px;}
.ha_c00440{height:71.972131px;}
.h15_c00440{height:71.980017px;}
.h6_c00440{height:72.026239px;}
.h4_c00440{height:72.030270px;}
.h9_c00440{height:72.032393px;}
.h12_c00440{height:78.000000px;}
.h8_c00440{height:78.026360px;}
.h5_c00440{height:78.028426px;}
.h2_c00440{height:84.000000px;}
.h10_c00440{height:84.005082px;}
.h3_c00440{height:84.035315px;}
.h18_c00440{height:90.000000px;}
.hb_c00440{height:90.043235px;}
.h16_c00440{height:95.973356px;}
.h7_c00440{height:96.034986px;}
.h14_c00440{height:101.971691px;}
.hd_c00440{height:119.976058px;}
.h1_c00440{height:1251.000000px;}
.h0_c00440{height:1251.150000px;}
.w0_c00440{width:915.000000px;}
.x0_c00440{left:0.000000px;}
.xc1_c00440{left:116.370000px;}
.xb9_c00440{left:118.012190px;}
.xb1_c00440{left:119.446410px;}
.x71_c00440{left:127.931400px;}
.x51_c00440{left:131.510123px;}
.x3d_c00440{left:133.404560px;}
.x2f_c00440{left:135.034923px;}
.x1b_c00440{left:136.076163px;}
.x3_c00440{left:137.172000px;}
.xf_c00440{left:138.311848px;}
.xc2_c00440{left:150.942000px;}
.x64_c00440{left:152.529000px;}
.xb2_c00440{left:163.601978px;}
.x27_c00440{left:167.994344px;}
.x10_c00440{left:169.276026px;}
.x65_c00440{left:172.500000px;}
.xba_c00440{left:173.507084px;}
.x52_c00440{left:176.094041px;}
.x3e_c00440{left:177.115106px;}
.x7d_c00440{left:182.253060px;}
.x72_c00440{left:183.308010px;}
.x28_c00440{left:190.593912px;}
.x66_c00440{left:194.614500px;}
.x44_c00440{left:198.898911px;}
.x73_c00440{left:205.911735px;}
.x5e_c00440{left:207.942414px;}
.x53_c00440{left:218.215689px;}
.xc3_c00440{left:227.536500px;}
.xa7_c00440{left:228.789000px;}
.x45_c00440{left:230.973102px;}
.x3f_c00440{left:232.447500px;}
.x8c_c00440{left:234.189000px;}
.x83_c00440{left:236.385000px;}
.x7e_c00440{left:237.609000px;}
.x47_c00440{left:241.578000px;}
.x30_c00440{left:242.822009px;}
.x4_c00440{left:246.261000px;}
.x11_c00440{left:256.185166px;}
.x54_c00440{left:262.997688px;}
.x31_c00440{left:267.083144px;}
.xbb_c00440{left:271.741200px;}
.x9f_c00440{left:275.554500px;}
.x95_c00440{left:277.890567px;}
.x8d_c00440{left:279.118500px;}
.x67_c00440{left:282.301500px;}
.xa8_c00440{left:284.852380px;}
.x46_c00440{left:286.283094px;}
.x1c_c00440{left:287.755524px;}
.x5_c00440{left:290.452500px;}
.x88_c00440{left:291.476366px;}
.xb3_c00440{left:292.714109px;}
.x74_c00440{left:303.184665px;}
.x7f_c00440{left:313.733565px;}
.x68_c00440{left:314.973000px;}
.x5f_c00440{left:316.233819px;}
.x48_c00440{left:318.522000px;}
.x32_c00440{left:320.860415px;}
.x55_c00440{left:328.354329px;}
.x9c_c00440{left:330.748965px;}
.x12_c00440{left:332.644371px;}
.x6_c00440{left:333.744000px;}
.x1d_c00440{left:344.241855px;}
.x69_c00440{left:347.472000px;}
.xbc_c00440{left:348.607953px;}
.x49_c00440{left:352.573500px;}
.x33_c00440{left:354.329030px;}
.x75_c00440{left:359.014365px;}
.x56_c00440{left:361.088940px;}
.xa5_c00440{left:362.340000px;}
.xa0_c00440{left:364.447500px;}
.x8e_c00440{left:366.111000px;}
.x80_c00440{left:369.737685px;}
.x60_c00440{left:372.120920px;}
.x40_c00440{left:374.477987px;}
.x1e_c00440{left:376.417967px;}
.x84_c00440{left:380.049000px;}
.xa9_c00440{left:381.905730px;}
.xa2_c00440{left:386.378924px;}
.x7_c00440{left:388.992000px;}
.x6a_c00440{left:391.780500px;}
.x76_c00440{left:393.332565px;}
.x96_c00440{left:398.779058px;}
.x8f_c00440{left:400.029000px;}
.x81_c00440{left:402.620550px;}
.x13_c00440{left:410.869510px;}
.x34_c00440{left:420.502455px;}
.x1_c00440{left:422.820000px;}
.x6b_c00440{left:425.188500px;}
.x57_c00440{left:427.755527px;}
.x90_c00440{left:432.708000px;}
.x8_c00440{left:434.125500px;}
.x82_c00440{left:436.145595px;}
.x4a_c00440{left:439.497000px;}
.x14_c00440{left:444.421797px;}
.x62_c00440{left:449.214000px;}
.x35_c00440{left:452.167374px;}
.xaa_c00440{left:460.316241px;}
.x9d_c00440{left:463.613468px;}
.x97_c00440{left:465.735034px;}
.x85_c00440{left:467.014500px;}
.xb4_c00440{left:468.834495px;}
.x58_c00440{left:472.343945px;}
.x1f_c00440{left:477.103454px;}
.x6c_c00440{left:481.380000px;}
.x4b_c00440{left:482.542500px;}
.x41_c00440{left:485.498363px;}
.x91_c00440{left:487.887000px;}
.xab_c00440{left:492.691334px;}
.x29_c00440{left:496.952696px;}
.x15_c00440{left:498.281281px;}
.x2_c00440{left:500.310000px;}
.x36_c00440{left:507.757298px;}
.x9_c00440{left:510.828000px;}
.x77_c00440{left:513.566310px;}
.x2a_c00440{left:519.588264px;}
.x16_c00440{left:520.899045px;}
.xac_c00440{left:525.509982px;}
.x20_c00440{left:530.349219px;}
.x92_c00440{left:532.651500px;}
.xa_c00440{left:535.149000px;}
.xb5_c00440{left:537.175201px;}
.x4c_c00440{left:538.908000px;}
.x78_c00440{left:546.780285px;}
.x21_c00440{left:554.093852px;}
.x86_c00440{left:556.981500px;}
.xa1_c00440{left:565.929000px;}
.x63_c00440{left:572.137500px;}
.x37_c00440{left:574.269854px;}
.x9e_c00440{left:575.364105px;}
.x79_c00440{left:580.859940px;}
.x59_c00440{left:582.006963px;}
.x17_c00440{left:588.167118px;}
.x6d_c00440{left:591.415500px;}
.x61_c00440{left:595.001579px;}
.x22_c00440{left:597.683921px;}
.x4d_c00440{left:604.837500px;}
.x2b_c00440{left:607.659299px;}
.x89_c00440{left:610.478544px;}
.x9a_c00440{left:617.070280px;}
.x98_c00440{left:620.922691px;}
.x38_c00440{left:629.880821px;}
.x93_c00440{left:632.460000px;}
.x5a_c00440{left:637.679486px;}
.x42_c00440{left:638.940654px;}
.x23_c00440{left:642.762251px;}
.x7a_c00440{left:645.415485px;}
.x94_c00440{left:653.857500px;}
.x39_c00440{left:662.347044px;}
.xb_c00440{left:666.603000px;}
.xbd_c00440{left:668.046807px;}
.xb6_c00440{left:669.331829px;}
.xad_c00440{left:670.674172px;}
.x24_c00440{left:675.422949px;}
.x6e_c00440{left:680.737500px;}
.x2c_c00440{left:685.464332px;}
.xbe_c00440{left:691.229139px;}
.x4e_c00440{left:692.956500px;}
.x99_c00440{left:697.052486px;}
.x87_c00440{left:700.179000px;}
.x5b_c00440{left:703.625829px;}
.x3a_c00440{left:707.418009px;}
.x25_c00440{left:708.691235px;}
.x18_c00440{left:710.305936px;}
.xbf_c00440{left:713.542170px;}
.x2d_c00440{left:720.311924px;}
.xae_c00440{left:725.646645px;}
.x7b_c00440{left:735.405885px;}
.x3b_c00440{left:740.637537px;}
.xb7_c00440{left:746.855417px;}
.xaf_c00440{left:748.092677px;}
.xa6_c00440{left:749.790000px;}
.xa3_c00440{left:751.710627px;}
.x4f_c00440{left:761.227500px;}
.x19_c00440{left:764.609508px;}
.x8a_c00440{left:766.120247px;}
.x7c_c00440{left:769.712085px;}
.xb8_c00440{left:770.745351px;}
.x2e_c00440{left:774.111497px;}
.x26_c00440{left:775.160306px;}
.xc_c00440{left:776.463000px;}
.xc0_c00440{left:780.785573px;}
.x43_c00440{left:783.725445px;}
.xa4_c00440{left:784.923153px;}
.x9b_c00440{left:785.979702px;}
.x8b_c00440{left:788.384959px;}
.x6f_c00440{left:792.334500px;}
.x3c_c00440{left:796.048917px;}
.xd_c00440{left:799.689000px;}
.x5c_c00440{left:804.414972px;}
.x50_c00440{left:815.871000px;}
.x1a_c00440{left:820.060841px;}
.xe_c00440{left:823.399500px;}
.x70_c00440{left:824.728500px;}
.xb0_c00440{left:825.735955px;}
.x5d_c00440{left:827.597465px;}
@media print{
.v0_c00440{vertical-align:0.000000pt;}
.ls0_c00440{letter-spacing:0.000000pt;}
.ws0_c00440{word-spacing:0.000000pt;}
.fs15_c00440{font-size:37.333333pt;}
.fsc_c00440{font-size:58.646042pt;}
.fs11_c00440{font-size:58.666667pt;}
.fsd_c00440{font-size:58.670216pt;}
.fsf_c00440{font-size:58.671624pt;}
.fsa_c00440{font-size:63.973018pt;}
.fs8_c00440{font-size:63.975227pt;}
.fs13_c00440{font-size:63.982238pt;}
.fs4_c00440{font-size:64.023324pt;}
.fs2_c00440{font-size:64.026906pt;}
.fs7_c00440{font-size:64.028794pt;}
.fs10_c00440{font-size:69.333333pt;}
.fs6_c00440{font-size:69.356764pt;}
.fs3_c00440{font-size:69.358601pt;}
.fs0_c00440{font-size:74.666667pt;}
.fse_c00440{font-size:74.671184pt;}
.fs1_c00440{font-size:74.698057pt;}
.fs16_c00440{font-size:80.000000pt;}
.fs9_c00440{font-size:80.038431pt;}
.fs14_c00440{font-size:85.309650pt;}
.fs5_c00440{font-size:85.364432pt;}
.fs12_c00440{font-size:90.641503pt;}
.fsb_c00440{font-size:106.645385pt;}
.y0_c00440{bottom:0.000000pt;}
.yfd_c00440{bottom:121.934667pt;}
.yfc_c00440{bottom:122.712000pt;}
.yfb_c00440{bottom:124.804000pt;}
.yfa_c00440{bottom:126.642667pt;}
.yf9_c00440{bottom:127.445333pt;}
.yf8_c00440{bottom:144.744000pt;}
.yf7_c00440{bottom:150.856573pt;}
.yf6_c00440{bottom:152.891407pt;}
.yf5_c00440{bottom:153.567144pt;}
.yf4_c00440{bottom:154.268272pt;}
.yf3_c00440{bottom:157.629261pt;}
.yf2_c00440{bottom:158.588047pt;}
.yf1_c00440{bottom:161.300731pt;}
.yf0_c00440{bottom:162.609284pt;}
.yef_c00440{bottom:163.228435pt;}
.yee_c00440{bottom:163.932501pt;}
.yed_c00440{bottom:164.948213pt;}
.yec_c00440{bottom:166.258033pt;}
.yeb_c00440{bottom:167.262223pt;}
.yea_c00440{bottom:168.212713pt;}
.ye9_c00440{bottom:169.229996pt;}
.ye8_c00440{bottom:170.908945pt;}
.ye7_c00440{bottom:184.960416pt;}
.ye6_c00440{bottom:185.853544pt;}
.ye5_c00440{bottom:188.750863pt;}
.ye4_c00440{bottom:193.688831pt;}
.ye3_c00440{bottom:194.572672pt;}
.ye2_c00440{bottom:196.242313pt;}
.ye1_c00440{bottom:199.086475pt;}
.ye0_c00440{bottom:202.824169pt;}
.ydf_c00440{bottom:206.039339pt;}
.yde_c00440{bottom:207.648527pt;}
.ydd_c00440{bottom:209.298900pt;}
.ydc_c00440{bottom:217.190941pt;}
.ydb_c00440{bottom:219.816184pt;}
.yda_c00440{bottom:220.575120pt;}
.yd9_c00440{bottom:222.433827pt;}
.yd8_c00440{bottom:225.417283pt;}
.yd7_c00440{bottom:227.342059pt;}
.yd6_c00440{bottom:228.451709pt;}
.yd5_c00440{bottom:229.546363pt;}
.yd4_c00440{bottom:232.197547pt;}
.yd3_c00440{bottom:235.479075pt;}
.yd2_c00440{bottom:237.374667pt;}
.yd1_c00440{bottom:247.084000pt;}
.yd0_c00440{bottom:272.514667pt;}
.ycf_c00440{bottom:289.054667pt;}
.yce_c00440{bottom:322.393732pt;}
.ycd_c00440{bottom:326.882667pt;}
.yca_c00440{bottom:342.765005pt;}
.ycb_c00440{bottom:342.765305pt;}
.ycc_c00440{bottom:342.765933pt;}
.yc9_c00440{bottom:387.932076pt;}
.yc8_c00440{bottom:389.087399pt;}
.yc7_c00440{bottom:389.869983pt;}
.yc6_c00440{bottom:391.840024pt;}
.yc5_c00440{bottom:392.709200pt;}
.yc4_c00440{bottom:393.121333pt;}
.yc3_c00440{bottom:409.987285pt;}
.yc2_c00440{bottom:411.020533pt;}
.yc1_c00440{bottom:413.517109pt;}
.yc0_c00440{bottom:415.264693pt;}
.ybf_c00440{bottom:417.446773pt;}
.ybe_c00440{bottom:418.844293pt;}
.ybd_c00440{bottom:421.674277pt;}
.ybc_c00440{bottom:423.100213pt;}
.ybb_c00440{bottom:424.811701pt;}
.yba_c00440{bottom:426.253333pt;}
.yb9_c00440{bottom:438.756960pt;}
.yb8_c00440{bottom:443.470613pt;}
.yb7_c00440{bottom:444.768640pt;}
.yb6_c00440{bottom:456.458987pt;}
.yb5_c00440{bottom:458.412000pt;}
.yb4_c00440{bottom:476.115117pt;}
.yb3_c00440{bottom:477.030352pt;}
.yb2_c00440{bottom:478.418232pt;}
.yb1_c00440{bottom:479.134499pt;}
.yb0_c00440{bottom:483.113043pt;}
.yaf_c00440{bottom:485.138627pt;}
.yae_c00440{bottom:486.483984pt;}
.yad_c00440{bottom:488.795803pt;}
.yac_c00440{bottom:490.093333pt;}
.yab_c00440{bottom:509.255801pt;}
.yaa_c00440{bottom:509.845421pt;}
.ya9_c00440{bottom:512.595700pt;}
.ya8_c00440{bottom:513.829211pt;}
.ya7_c00440{bottom:515.349699pt;}
.ya6_c00440{bottom:516.250187pt;}
.ya5_c00440{bottom:517.184816pt;}
.ya4_c00440{bottom:517.796053pt;}
.ya3_c00440{bottom:519.581943pt;}
.ya2_c00440{bottom:520.820000pt;}
.ya1_c00440{bottom:535.988073pt;}
.ya0_c00440{bottom:536.681447pt;}
.y9f_c00440{bottom:538.758067pt;}
.y9e_c00440{bottom:541.528480pt;}
.y9d_c00440{bottom:543.900827pt;}
.y9c_c00440{bottom:546.020147pt;}
.y9b_c00440{bottom:547.387620pt;}
.y9a_c00440{bottom:550.160273pt;}
.y99_c00440{bottom:551.462927pt;}
.y98_c00440{bottom:553.209333pt;}
.y97_c00440{bottom:570.362827pt;}
.y96_c00440{bottom:573.286227pt;}
.y95_c00440{bottom:574.181427pt;}
.y94_c00440{bottom:576.580547pt;}
.y93_c00440{bottom:577.761467pt;}
.y92_c00440{bottom:578.899627pt;}
.y91_c00440{bottom:582.730667pt;}
.y90_c00440{bottom:609.096000pt;}
.y8f_c00440{bottom:609.721760pt;}
.y8e_c00440{bottom:610.335733pt;}
.y8d_c00440{bottom:611.380773pt;}
.y8c_c00440{bottom:611.979880pt;}
.y8b_c00440{bottom:612.800880pt;}
.y8a_c00440{bottom:613.833973pt;}
.y89_c00440{bottom:614.855600pt;}
.y88_c00440{bottom:630.791067pt;}
.y87_c00440{bottom:631.492373pt;}
.y86_c00440{bottom:633.331613pt;}
.y85_c00440{bottom:634.651400pt;}
.y84_c00440{bottom:635.348000pt;}
.y83_c00440{bottom:636.026853pt;}
.y82_c00440{bottom:638.484413pt;}
.y81_c00440{bottom:639.186040pt;}
.y80_c00440{bottom:640.327853pt;}
.y7f_c00440{bottom:642.315920pt;}
.y7e_c00440{bottom:642.778560pt;}
.y7d_c00440{bottom:643.910960pt;}
.y7c_c00440{bottom:662.002680pt;}
.y7b_c00440{bottom:662.866520pt;}
.y7a_c00440{bottom:665.842440pt;}
.y79_c00440{bottom:668.224360pt;}
.y78_c00440{bottom:671.158640pt;}
.y77_c00440{bottom:672.657080pt;}
.y76_c00440{bottom:673.547960pt;}
.y75_c00440{bottom:674.729520pt;}
.y74_c00440{bottom:675.596160pt;}
.y73_c00440{bottom:676.467400pt;}
.y72_c00440{bottom:678.805720pt;}
.y71_c00440{bottom:679.395440pt;}
.y70_c00440{bottom:679.928000pt;}
.y6f_c00440{bottom:717.153768pt;}
.y6e_c00440{bottom:719.994667pt;}
.y6d_c00440{bottom:734.063203pt;}
.y6c_c00440{bottom:735.358745pt;}
.y6b_c00440{bottom:736.639652pt;}
.y6a_c00440{bottom:737.285769pt;}
.y69_c00440{bottom:738.537115pt;}
.y68_c00440{bottom:739.417124pt;}
.y67_c00440{bottom:761.587685pt;}
.y66_c00440{bottom:761.897219pt;}
.y65_c00440{bottom:763.240708pt;}
.y64_c00440{bottom:764.120241pt;}
.y63_c00440{bottom:764.551968pt;}
.y62_c00440{bottom:764.862616pt;}
.y61_c00440{bottom:766.324343pt;}
.y60_c00440{bottom:766.919452pt;}
.y5f_c00440{bottom:767.808265pt;}
.y5e_c00440{bottom:768.244308pt;}
.y5d_c00440{bottom:769.116360pt;}
.y5c_c00440{bottom:769.713447pt;}
.y5b_c00440{bottom:770.274705pt;}
.y5a_c00440{bottom:770.869707pt;}
.y59_c00440{bottom:790.944968pt;}
.y58_c00440{bottom:792.256412pt;}
.y57_c00440{bottom:793.894916pt;}
.y56_c00440{bottom:796.009772pt;}
.y55_c00440{bottom:797.592080pt;}
.y54_c00440{bottom:798.944852pt;}
.y53_c00440{bottom:799.977944pt;}
.y52_c00440{bottom:802.064108pt;}
.y51_c00440{bottom:802.881344pt;}
.y50_c00440{bottom:804.728000pt;}
.y4f_c00440{bottom:834.648260pt;}
.y4e_c00440{bottom:836.565108pt;}
.y4d_c00440{bottom:837.677483pt;}
.y4c_c00440{bottom:839.930552pt;}
.y4b_c00440{bottom:854.047044pt;}
.y4a_c00440{bottom:857.264175pt;}
.y49_c00440{bottom:859.923552pt;}
.y48_c00440{bottom:860.673784pt;}
.y47_c00440{bottom:862.138015pt;}
.y46_c00440{bottom:863.140644pt;}
.y45_c00440{bottom:865.546580pt;}
.y44_c00440{bottom:866.296116pt;}
.y43_c00440{bottom:867.526297pt;}
.y42_c00440{bottom:868.498261pt;}
.y41_c00440{bottom:886.706416pt;}
.y40_c00440{bottom:887.494260pt;}
.y3f_c00440{bottom:887.966263pt;}
.y3e_c00440{bottom:888.607655pt;}
.y3d_c00440{bottom:889.069580pt;}
.y3c_c00440{bottom:889.384725pt;}
.y3b_c00440{bottom:889.859900pt;}
.y3a_c00440{bottom:890.805800pt;}
.y39_c00440{bottom:891.596912pt;}
.y38_c00440{bottom:892.047523pt;}
.y37_c00440{bottom:892.988684pt;}
.y36_c00440{bottom:893.464439pt;}
.y35_c00440{bottom:894.228841pt;}
.y34_c00440{bottom:894.574004pt;}
.y33_c00440{bottom:896.107469pt;}
.y32_c00440{bottom:917.506653pt;}
.y31_c00440{bottom:918.415752pt;}
.y30_c00440{bottom:919.004452pt;}
.y2f_c00440{bottom:920.318845pt;}
.y2e_c00440{bottom:921.805796pt;}
.y2d_c00440{bottom:922.187788pt;}
.y2c_c00440{bottom:924.027607pt;}
.y2b_c00440{bottom:925.705911pt;}
.y2a_c00440{bottom:927.361415pt;}
.y29_c00440{bottom:927.742479pt;}
.y28_c00440{bottom:928.281827pt;}
.y27_c00440{bottom:949.792103pt;}
.y26_c00440{bottom:951.150563pt;}
.y25_c00440{bottom:951.830663pt;}
.y24_c00440{bottom:952.497769pt;}
.y23_c00440{bottom:953.419587pt;}
.y22_c00440{bottom:954.311047pt;}
.y21_c00440{bottom:954.796357pt;}
.y20_c00440{bottom:955.211015pt;}
.y1f_c00440{bottom:955.884676pt;}
.y1e_c00440{bottom:956.547141pt;}
.y1d_c00440{bottom:957.943673pt;}
.y1c_c00440{bottom:958.600957pt;}
.y1b_c00440{bottom:959.755463pt;}
.y1a_c00440{bottom:962.856740pt;}
.y19_c00440{bottom:980.141141pt;}
.y18_c00440{bottom:981.176889pt;}
.y17_c00440{bottom:982.191057pt;}
.y16_c00440{bottom:984.470795pt;}
.y15_c00440{bottom:985.727081pt;}
.y14_c00440{bottom:986.148648pt;}
.y13_c00440{bottom:987.154037pt;}
.y12_c00440{bottom:987.780073pt;}
.y11_c00440{bottom:989.240076pt;}
.y10_c00440{bottom:990.667901pt;}
.yf_c00440{bottom:992.290373pt;}
.ye_c00440{bottom:992.868376pt;}
.yd_c00440{bottom:1011.197247pt;}
.yc_c00440{bottom:1011.808451pt;}
.yb_c00440{bottom:1012.407165pt;}
.ya_c00440{bottom:1015.239112pt;}
.y9_c00440{bottom:1018.627704pt;}
.y8_c00440{bottom:1019.254645pt;}
.y7_c00440{bottom:1021.231865pt;}
.y6_c00440{bottom:1022.395307pt;}
.y5_c00440{bottom:1023.819477pt;}
.y4_c00440{bottom:1024.935436pt;}
.y3_c00440{bottom:1026.074595pt;}
.y2_c00440{bottom:1028.886667pt;}
.y1_c00440{bottom:1073.506667pt;}
.h17_c00440{height:37.333333pt;}
.he_c00440{height:58.646042pt;}
.h13_c00440{height:58.666667pt;}
.hf_c00440{height:58.670216pt;}
.h11_c00440{height:58.671624pt;}
.hc_c00440{height:63.973018pt;}
.ha_c00440{height:63.975227pt;}
.h15_c00440{height:63.982238pt;}
.h6_c00440{height:64.023324pt;}
.h4_c00440{height:64.026906pt;}
.h9_c00440{height:64.028794pt;}
.h12_c00440{height:69.333333pt;}
.h8_c00440{height:69.356764pt;}
.h5_c00440{height:69.358601pt;}
.h2_c00440{height:74.666667pt;}
.h10_c00440{height:74.671184pt;}
.h3_c00440{height:74.698057pt;}
.h18_c00440{height:80.000000pt;}
.hb_c00440{height:80.038431pt;}
.h16_c00440{height:85.309650pt;}
.h7_c00440{height:85.364432pt;}
.h14_c00440{height:90.641503pt;}
.hd_c00440{height:106.645385pt;}
.h1_c00440{height:1112.000000pt;}
.h0_c00440{height:1112.133333pt;}
.w0_c00440{width:813.333333pt;}
.x0_c00440{left:0.000000pt;}
.xc1_c00440{left:103.440000pt;}
.xb9_c00440{left:104.899724pt;}
.xb1_c00440{left:106.174587pt;}
.x71_c00440{left:113.716800pt;}
.x51_c00440{left:116.897887pt;}
.x3d_c00440{left:118.581831pt;}
.x2f_c00440{left:120.031043pt;}
.x1b_c00440{left:120.956589pt;}
.x3_c00440{left:121.930667pt;}
.xf_c00440{left:122.943865pt;}
.xc2_c00440{left:134.170667pt;}
.x64_c00440{left:135.581333pt;}
.xb2_c00440{left:145.423980pt;}
.x27_c00440{left:149.328305pt;}
.x10_c00440{left:150.467579pt;}
.x65_c00440{left:153.333333pt;}
.xba_c00440{left:154.228519pt;}
.x52_c00440{left:156.528036pt;}
.x3e_c00440{left:157.435649pt;}
.x7d_c00440{left:162.002720pt;}
.x72_c00440{left:162.940453pt;}
.x28_c00440{left:169.416811pt;}
.x66_c00440{left:172.990667pt;}
.x44_c00440{left:176.799032pt;}
.x73_c00440{left:183.032653pt;}
.x5e_c00440{left:184.837701pt;}
.x53_c00440{left:193.969501pt;}
.xc3_c00440{left:202.254667pt;}
.xa7_c00440{left:203.368000pt;}
.x45_c00440{left:205.309424pt;}
.x3f_c00440{left:206.620000pt;}
.x8c_c00440{left:208.168000pt;}
.x83_c00440{left:210.120000pt;}
.x7e_c00440{left:211.208000pt;}
.x47_c00440{left:214.736000pt;}
.x30_c00440{left:215.841785pt;}
.x4_c00440{left:218.898667pt;}
.x11_c00440{left:227.720148pt;}
.x54_c00440{left:233.775723pt;}
.x31_c00440{left:237.407239pt;}
.xbb_c00440{left:241.547733pt;}
.x9f_c00440{left:244.937333pt;}
.x95_c00440{left:247.013837pt;}
.x8d_c00440{left:248.105333pt;}
.x67_c00440{left:250.934667pt;}
.xa8_c00440{left:253.202116pt;}
.x46_c00440{left:254.473861pt;}
.x1c_c00440{left:255.782688pt;}
.x5_c00440{left:258.180000pt;}
.x88_c00440{left:259.090103pt;}
.xb3_c00440{left:260.190319pt;}
.x74_c00440{left:269.497480pt;}
.x7f_c00440{left:278.874280pt;}
.x68_c00440{left:279.976000pt;}
.x5f_c00440{left:281.096728pt;}
.x48_c00440{left:283.130667pt;}
.x32_c00440{left:285.209257pt;}
.x55_c00440{left:291.870515pt;}
.x9c_c00440{left:293.999080pt;}
.x12_c00440{left:295.683885pt;}
.x6_c00440{left:296.661333pt;}
.x1d_c00440{left:305.992760pt;}
.x69_c00440{left:308.864000pt;}
.xbc_c00440{left:309.873736pt;}
.x49_c00440{left:313.398667pt;}
.x33_c00440{left:314.959137pt;}
.x75_c00440{left:319.123880pt;}
.x56_c00440{left:320.967947pt;}
.xa5_c00440{left:322.080000pt;}
.xa0_c00440{left:323.953333pt;}
.x8e_c00440{left:325.432000pt;}
.x80_c00440{left:328.655720pt;}
.x60_c00440{left:330.774151pt;}
.x40_c00440{left:332.869321pt;}
.x1e_c00440{left:334.593748pt;}
.x84_c00440{left:337.821333pt;}
.xa9_c00440{left:339.471760pt;}
.xa2_c00440{left:343.447932pt;}
.x7_c00440{left:345.770667pt;}
.x6a_c00440{left:348.249333pt;}
.x76_c00440{left:349.628947pt;}
.x96_c00440{left:354.470273pt;}
.x8f_c00440{left:355.581333pt;}
.x81_c00440{left:357.884933pt;}
.x13_c00440{left:365.217343pt;}
.x34_c00440{left:373.779960pt;}
.x1_c00440{left:375.840000pt;}
.x6b_c00440{left:377.945333pt;}
.x57_c00440{left:380.227135pt;}
.x90_c00440{left:384.629333pt;}
.x8_c00440{left:385.889333pt;}
.x82_c00440{left:387.684973pt;}
.x4a_c00440{left:390.664000pt;}
.x14_c00440{left:395.041597pt;}
.x62_c00440{left:399.301333pt;}
.x35_c00440{left:401.926555pt;}
.xaa_c00440{left:409.169992pt;}
.x9d_c00440{left:412.100860pt;}
.x97_c00440{left:413.986697pt;}
.x85_c00440{left:415.124000pt;}
.xb4_c00440{left:416.741773pt;}
.x58_c00440{left:419.861284pt;}
.x1f_c00440{left:424.091959pt;}
.x6c_c00440{left:427.893333pt;}
.x4b_c00440{left:428.926667pt;}
.x41_c00440{left:431.554100pt;}
.x91_c00440{left:433.677333pt;}
.xab_c00440{left:437.947852pt;}
.x29_c00440{left:441.735729pt;}
.x15_c00440{left:442.916695pt;}
.x2_c00440{left:444.720000pt;}
.x36_c00440{left:451.339820pt;}
.x9_c00440{left:454.069333pt;}
.x77_c00440{left:456.503387pt;}
.x2a_c00440{left:461.856235pt;}
.x16_c00440{left:463.021373pt;}
.xac_c00440{left:467.119984pt;}
.x20_c00440{left:471.421528pt;}
.x92_c00440{left:473.468000pt;}
.xa_c00440{left:475.688000pt;}
.xb5_c00440{left:477.489068pt;}
.x4c_c00440{left:479.029333pt;}
.x78_c00440{left:486.026920pt;}
.x21_c00440{left:492.527868pt;}
.x86_c00440{left:495.094667pt;}
.xa1_c00440{left:503.048000pt;}
.x63_c00440{left:508.566667pt;}
.x37_c00440{left:510.462092pt;}
.x9e_c00440{left:511.434760pt;}
.x79_c00440{left:516.319947pt;}
.x59_c00440{left:517.339523pt;}
.x17_c00440{left:522.815216pt;}
.x6d_c00440{left:525.702667pt;}
.x61_c00440{left:528.890292pt;}
.x22_c00440{left:531.274596pt;}
.x4d_c00440{left:537.633333pt;}
.x2b_c00440{left:540.141599pt;}
.x89_c00440{left:542.647595pt;}
.x9a_c00440{left:548.506916pt;}
.x98_c00440{left:551.931281pt;}
.x38_c00440{left:559.894063pt;}
.x93_c00440{left:562.186667pt;}
.x5a_c00440{left:566.826209pt;}
.x42_c00440{left:567.947248pt;}
.x23_c00440{left:571.344223pt;}
.x7a_c00440{left:573.702653pt;}
.x94_c00440{left:581.206667pt;}
.x39_c00440{left:588.752928pt;}
.xb_c00440{left:592.536000pt;}
.xbd_c00440{left:593.819384pt;}
.xb6_c00440{left:594.961625pt;}
.xad_c00440{left:596.154820pt;}
.x24_c00440{left:600.375955pt;}
.x6e_c00440{left:605.100000pt;}
.x2c_c00440{left:609.301628pt;}
.xbe_c00440{left:614.425901pt;}
.x4e_c00440{left:615.961333pt;}
.x99_c00440{left:619.602209pt;}
.x87_c00440{left:622.381333pt;}
.x5b_c00440{left:625.445181pt;}
.x3a_c00440{left:628.816008pt;}
.x25_c00440{left:629.947764pt;}
.x18_c00440{left:631.383055pt;}
.xbf_c00440{left:634.259707pt;}
.x2d_c00440{left:640.277265pt;}
.xae_c00440{left:645.019240pt;}
.x7b_c00440{left:653.694120pt;}
.x3b_c00440{left:658.344477pt;}
.xb7_c00440{left:663.871481pt;}
.xaf_c00440{left:664.971268pt;}
.xa6_c00440{left:666.480000pt;}
.xa3_c00440{left:668.187224pt;}
.x4f_c00440{left:676.646667pt;}
.x19_c00440{left:679.652896pt;}
.x8a_c00440{left:680.995775pt;}
.x7c_c00440{left:684.188520pt;}
.xb8_c00440{left:685.106979pt;}
.x2e_c00440{left:688.099108pt;}
.x26_c00440{left:689.031383pt;}
.xc_c00440{left:690.189333pt;}
.xc0_c00440{left:694.031620pt;}
.x43_c00440{left:696.644840pt;}
.xa4_c00440{left:697.709469pt;}
.x9b_c00440{left:698.648624pt;}
.x8b_c00440{left:700.786631pt;}
.x6f_c00440{left:704.297333pt;}
.x3c_c00440{left:707.599037pt;}
.xd_c00440{left:710.834667pt;}
.x5c_c00440{left:715.035531pt;}
.x50_c00440{left:725.218667pt;}
.x1a_c00440{left:728.942969pt;}
.xe_c00440{left:731.910667pt;}
.x70_c00440{left:733.092000pt;}
.xb0_c00440{left:733.987516pt;}
.x5d_c00440{left:735.642191pt;}
}





/* 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_c00441 {
    display:none;
  }
  .loading-indicator_c00441.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00441 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_c00441 { 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_c00441" -> "#page-container .classname_c00441")
 */
.pf_c00441 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00441 { /* 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_c00441.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00441 { /* 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_c00441 { /* 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_c00441 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00441 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00441 {overflow:visible;}
  }
}
.c_c00441 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00441 { /* 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_c00441:after { /* webkit #35443 */
  content: '';
}
.t_c00441:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00441 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 */
}
.__c00441 { /* 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_c00441 { /* info for Javascript */
  display:none;
}
.l_c00441 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00441 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00441 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00441: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_c00441 {
    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_c00441.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00441.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_c00441 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00441{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00441;src:url('chunks/assets/font_cfe63ee56e9e10a97d33a3db.woff2')format("woff");}.ff1_c00441{font-family:ff1_c00441;line-height:1.000000;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;}
.mb_c00441{transform:matrix(0.008877,0.246345,-0.249838,0.009003,0,0);-ms-transform:matrix(0.008877,0.246345,-0.249838,0.009003,0,0);-webkit-transform:matrix(0.008877,0.246345,-0.249838,0.009003,0,0);}
.mc_c00441{transform:matrix(0.010615,0.294574,-0.249838,0.009003,0,0);-ms-transform:matrix(0.010615,0.294574,-0.249838,0.009003,0,0);-webkit-transform:matrix(0.010615,0.294574,-0.249838,0.009003,0,0);}
.me_c00441{transform:matrix(0.139635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139635,0.000000,0.000000,0.250000,0,0);}
.md_c00441{transform:matrix(0.146795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146795,0.000000,0.000000,0.250000,0,0);}
.m2_c00441{transform:matrix(0.150765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150765,0.000000,0.000000,0.250000,0,0);}
.m1b_c00441{transform:matrix(0.193085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193085,0.000000,0.000000,0.250000,0,0);}
.m11_c00441{transform:matrix(0.201525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201525,0.000000,0.000000,0.250000,0,0);}
.m17_c00441{transform:matrix(0.201805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201805,0.000000,0.000000,0.250000,0,0);}
.m3_c00441{transform:matrix(0.204285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204285,0.000000,0.000000,0.250000,0,0);}
.m15_c00441{transform:matrix(0.222305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222305,0.000000,0.000000,0.250000,0,0);}
.m6_c00441{transform:matrix(0.227330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227330,0.000000,0.000000,0.250000,0,0);}
.m4_c00441{transform:matrix(0.228300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228300,0.000000,0.000000,0.250000,0,0);}
.m13_c00441{transform:matrix(0.229270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229270,0.000000,0.000000,0.250000,0,0);}
.m1a_c00441{transform:matrix(0.234095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234095,0.000000,0.000000,0.250000,0,0);}
.m14_c00441{transform:matrix(0.236355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236355,0.000000,0.000000,0.250000,0,0);}
.m7_c00441{transform:matrix(0.242485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242485,0.000000,0.000000,0.250000,0,0);}
.m5_c00441{transform:matrix(0.258120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258120,0.000000,0.000000,0.250000,0,0);}
.m12_c00441{transform:matrix(0.262100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262100,0.000000,0.000000,0.250000,0,0);}
.mf_c00441{transform:matrix(0.263355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263355,0.000000,0.000000,0.250000,0,0);}
.m9_c00441{transform:matrix(0.278310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278310,0.000000,0.000000,0.250000,0,0);}
.m19_c00441{transform:matrix(0.278688,-0.014506,0.012995,0.249662,0,0);-ms-transform:matrix(0.278688,-0.014506,0.012995,0.249662,0,0);-webkit-transform:matrix(0.278688,-0.014506,0.012995,0.249662,0,0);}
.m10_c00441{transform:matrix(0.278925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278925,0.000000,0.000000,0.250000,0,0);}
.ma_c00441{transform:matrix(0.282325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282325,0.000000,0.000000,0.250000,0,0);}
.m16_c00441{transform:matrix(0.288910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288910,0.000000,0.000000,0.250000,0,0);}
.m1_c00441{transform:matrix(0.293065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293065,0.000000,0.000000,0.250000,0,0);}
.m18_c00441{transform:matrix(0.297023,-0.015461,0.012995,0.249662,0,0);-ms-transform:matrix(0.297023,-0.015461,0.012995,0.249662,0,0);-webkit-transform:matrix(0.297023,-0.015461,0.012995,0.249662,0,0);}
.m0_c00441{transform:matrix(0.313580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313580,0.000000,0.000000,0.250000,0,0);}
.m8_c00441{transform:matrix(0.579395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579395,0.000000,0.000000,0.250000,0,0);}
.v0_c00441{vertical-align:0.000000px;}
.ls0_c00441{letter-spacing:0.000000px;}
.sc__c00441{text-shadow:none;}
.sc0_c00441{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__c00441{-webkit-text-stroke:0px transparent;}
.sc0_c00441{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00441{word-spacing:0.000000px;}
.fc0_c00441{color:transparent;}
.fs4_c00441{font-size:18.000000px;}
.fs5_c00441{font-size:24.000000px;}
.fs6_c00441{font-size:47.983125px;}
.fsb_c00441{font-size:48.000000px;}
.fs2_c00441{font-size:54.000000px;}
.fs8_c00441{font-size:72.000000px;}
.fs9_c00441{font-size:78.000000px;}
.fs3_c00441{font-size:84.000000px;}
.fsa_c00441{font-size:84.029605px;}
.fs0_c00441{font-size:96.000000px;}
.fs1_c00441{font-size:120.000000px;}
.fs7_c00441{font-size:192.000000px;}
.y0_c00441{bottom:0.000000px;}
.y13_c00441{bottom:740.121000px;}
.y15_c00441{bottom:740.880000px;}
.y11_c00441{bottom:742.102500px;}
.y14_c00441{bottom:742.255860px;}
.y16_c00441{bottom:742.368000px;}
.y12_c00441{bottom:757.890000px;}
.y10_c00441{bottom:763.698000px;}
.yf_c00441{bottom:956.730000px;}
.yd_c00441{bottom:960.255000px;}
.ye_c00441{bottom:960.912000px;}
.yc_c00441{bottom:962.683500px;}
.y7_c00441{bottom:964.306500px;}
.y6_c00441{bottom:967.410000px;}
.yb_c00441{bottom:983.739000px;}
.ya_c00441{bottom:990.493500px;}
.y9_c00441{bottom:996.037782px;}
.y4_c00441{bottom:997.920000px;}
.y5_c00441{bottom:1003.860000px;}
.y8_c00441{bottom:1010.629500px;}
.y2_c00441{bottom:1060.959000px;}
.y3_c00441{bottom:1061.370000px;}
.y1_c00441{bottom:1065.561000px;}
.h6_c00441{height:18.000000px;}
.h7_c00441{height:24.000000px;}
.h8_c00441{height:47.983125px;}
.hd_c00441{height:48.000000px;}
.h4_c00441{height:54.000000px;}
.ha_c00441{height:72.000000px;}
.hb_c00441{height:78.000000px;}
.h5_c00441{height:84.000000px;}
.hc_c00441{height:84.029605px;}
.h2_c00441{height:96.000000px;}
.h3_c00441{height:120.000000px;}
.h9_c00441{height:192.000000px;}
.h1_c00441{height:1251.000000px;}
.h0_c00441{height:1251.150000px;}
.w0_c00441{width:915.000000px;}
.x0_c00441{left:0.000000px;}
.x6_c00441{left:190.080000px;}
.x3_c00441{left:200.340000px;}
.x4_c00441{left:225.720000px;}
.x5_c00441{left:253.260000px;}
.x14_c00441{left:260.550000px;}
.x1_c00441{left:298.620000px;}
.x2_c00441{left:343.440000px;}
.xf_c00441{left:383.130000px;}
.x10_c00441{left:384.210000px;}
.x11_c00441{left:387.720000px;}
.xe_c00441{left:391.230000px;}
.x1b_c00441{left:398.520000px;}
.x12_c00441{left:415.260000px;}
.xd_c00441{left:424.710000px;}
.x1a_c00441{left:426.330000px;}
.x18_c00441{left:435.949500px;}
.xc_c00441{left:447.659041px;}
.xb_c00441{left:458.190000px;}
.x19_c00441{left:476.963445px;}
.x13_c00441{left:480.330000px;}
.x9_c00441{left:512.730000px;}
.x7_c00441{left:524.610000px;}
.xa_c00441{left:526.230000px;}
.x17_c00441{left:533.250000px;}
.x16_c00441{left:535.680000px;}
.x8_c00441{left:541.890000px;}
.x15_c00441{left:562.410000px;}
@media print{
.v0_c00441{vertical-align:0.000000pt;}
.ls0_c00441{letter-spacing:0.000000pt;}
.ws0_c00441{word-spacing:0.000000pt;}
.fs4_c00441{font-size:16.000000pt;}
.fs5_c00441{font-size:21.333333pt;}
.fs6_c00441{font-size:42.651667pt;}
.fsb_c00441{font-size:42.666667pt;}
.fs2_c00441{font-size:48.000000pt;}
.fs8_c00441{font-size:64.000000pt;}
.fs9_c00441{font-size:69.333333pt;}
.fs3_c00441{font-size:74.666667pt;}
.fsa_c00441{font-size:74.692982pt;}
.fs0_c00441{font-size:85.333333pt;}
.fs1_c00441{font-size:106.666667pt;}
.fs7_c00441{font-size:170.666667pt;}
.y0_c00441{bottom:0.000000pt;}
.y13_c00441{bottom:657.885333pt;}
.y15_c00441{bottom:658.560000pt;}
.y11_c00441{bottom:659.646667pt;}
.y14_c00441{bottom:659.782987pt;}
.y16_c00441{bottom:659.882667pt;}
.y12_c00441{bottom:673.680000pt;}
.y10_c00441{bottom:678.842667pt;}
.yf_c00441{bottom:850.426667pt;}
.yd_c00441{bottom:853.560000pt;}
.ye_c00441{bottom:854.144000pt;}
.yc_c00441{bottom:855.718667pt;}
.y7_c00441{bottom:857.161333pt;}
.y6_c00441{bottom:859.920000pt;}
.yb_c00441{bottom:874.434667pt;}
.ya_c00441{bottom:880.438667pt;}
.y9_c00441{bottom:885.366917pt;}
.y4_c00441{bottom:887.040000pt;}
.y5_c00441{bottom:892.320000pt;}
.y8_c00441{bottom:898.337333pt;}
.y2_c00441{bottom:943.074667pt;}
.y3_c00441{bottom:943.440000pt;}
.y1_c00441{bottom:947.165333pt;}
.h6_c00441{height:16.000000pt;}
.h7_c00441{height:21.333333pt;}
.h8_c00441{height:42.651667pt;}
.hd_c00441{height:42.666667pt;}
.h4_c00441{height:48.000000pt;}
.ha_c00441{height:64.000000pt;}
.hb_c00441{height:69.333333pt;}
.h5_c00441{height:74.666667pt;}
.hc_c00441{height:74.692982pt;}
.h2_c00441{height:85.333333pt;}
.h3_c00441{height:106.666667pt;}
.h9_c00441{height:170.666667pt;}
.h1_c00441{height:1112.000000pt;}
.h0_c00441{height:1112.133333pt;}
.w0_c00441{width:813.333333pt;}
.x0_c00441{left:0.000000pt;}
.x6_c00441{left:168.960000pt;}
.x3_c00441{left:178.080000pt;}
.x4_c00441{left:200.640000pt;}
.x5_c00441{left:225.120000pt;}
.x14_c00441{left:231.600000pt;}
.x1_c00441{left:265.440000pt;}
.x2_c00441{left:305.280000pt;}
.xf_c00441{left:340.560000pt;}
.x10_c00441{left:341.520000pt;}
.x11_c00441{left:344.640000pt;}
.xe_c00441{left:347.760000pt;}
.x1b_c00441{left:354.240000pt;}
.x12_c00441{left:369.120000pt;}
.xd_c00441{left:377.520000pt;}
.x1a_c00441{left:378.960000pt;}
.x18_c00441{left:387.510667pt;}
.xc_c00441{left:397.919148pt;}
.xb_c00441{left:407.280000pt;}
.x19_c00441{left:423.967507pt;}
.x13_c00441{left:426.960000pt;}
.x9_c00441{left:455.760000pt;}
.x7_c00441{left:466.320000pt;}
.xa_c00441{left:467.760000pt;}
.x17_c00441{left:474.000000pt;}
.x16_c00441{left:476.160000pt;}
.x8_c00441{left:481.680000pt;}
.x15_c00441{left:499.920000pt;}
}





/* 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_c00442 {
    display:none;
  }
  .loading-indicator_c00442.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00442 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_c00442 { 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_c00442" -> "#page-container .classname_c00442")
 */
.pf_c00442 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00442 { /* 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_c00442.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00442 { /* 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_c00442 { /* 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_c00442 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00442 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00442 {overflow:visible;}
  }
}
.c_c00442 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00442 { /* 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_c00442:after { /* webkit #35443 */
  content: '';
}
.t_c00442:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00442 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 */
}
.__c00442 { /* 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_c00442 { /* info for Javascript */
  display:none;
}
.l_c00442 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00442 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00442 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00442: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_c00442 {
    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_c00442.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00442.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_c00442 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00442{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00442;src:url('chunks/assets/font_c605e72f209fc835e906f064.woff2')format("woff");}.ff1_c00442{font-family:ff1_c00442;line-height:1.000000;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;}
.m7a_c00442{transform:matrix(0.012476,0.000299,-0.005998,0.249928,0,0);-ms-transform:matrix(0.012476,0.000299,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.012476,0.000299,-0.005998,0.249928,0,0);}
.m9a_c00442{transform:matrix(0.014676,0.000514,-0.008753,0.249847,0,0);-ms-transform:matrix(0.014676,0.000514,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.014676,0.000514,-0.008753,0.249847,0,0);}
.m13e_c00442{transform:matrix(0.091480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.091480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.091480,0.000000,0.000000,0.250000,0,0);}
.m97_c00442{transform:matrix(0.097740,0.003424,-0.008753,0.249847,0,0);-ms-transform:matrix(0.097740,0.003424,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.097740,0.003424,-0.008753,0.249847,0,0);}
.m12a_c00442{transform:matrix(0.104231,0.004173,-0.010002,0.249800,0,0);-ms-transform:matrix(0.104231,0.004173,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.104231,0.004173,-0.010002,0.249800,0,0);}
.m13d_c00442{transform:matrix(0.115415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115415,0.000000,0.000000,0.250000,0,0);}
.m4d_c00442{transform:matrix(0.119141,0.002859,-0.005998,0.249928,0,0);-ms-transform:matrix(0.119141,0.002859,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.119141,0.002859,-0.005998,0.249928,0,0);}
.mfd_c00442{transform:matrix(0.127237,0.003308,-0.006498,0.249916,0,0);-ms-transform:matrix(0.127237,0.003308,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.127237,0.003308,-0.006498,0.249916,0,0);}
.m81_c00442{transform:matrix(0.130392,0.003129,-0.005998,0.249928,0,0);-ms-transform:matrix(0.130392,0.003129,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.130392,0.003129,-0.005998,0.249928,0,0);}
.m21_c00442{transform:matrix(0.162767,0.003744,-0.005748,0.249934,0,0);-ms-transform:matrix(0.162767,0.003744,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.162767,0.003744,-0.005748,0.249934,0,0);}
.m2f_c00442{transform:matrix(0.163335,0.003593,-0.005499,0.249940,0,0);-ms-transform:matrix(0.163335,0.003593,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.163335,0.003593,-0.005499,0.249940,0,0);}
.m139_c00442{transform:matrix(0.163510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163510,0.000000,0.000000,0.250000,0,0);}
.m2d_c00442{transform:matrix(0.171149,0.003765,-0.005499,0.249940,0,0);-ms-transform:matrix(0.171149,0.003765,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.171149,0.003765,-0.005499,0.249940,0,0);}
.m13f_c00442{transform:matrix(0.171610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171610,0.000000,0.000000,0.250000,0,0);}
.mc1_c00442{transform:matrix(0.174411,0.004535,-0.006498,0.249916,0,0);-ms-transform:matrix(0.174411,0.004535,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.174411,0.004535,-0.006498,0.249916,0,0);}
.m86_c00442{transform:matrix(0.176268,0.003349,-0.004749,0.249955,0,0);-ms-transform:matrix(0.176268,0.003349,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.176268,0.003349,-0.004749,0.249955,0,0);}
.m1b_c00442{transform:matrix(0.179523,0.004129,-0.005748,0.249934,0,0);-ms-transform:matrix(0.179523,0.004129,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.179523,0.004129,-0.005748,0.249934,0,0);}
.m137_c00442{transform:matrix(0.181815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181815,0.000000,0.000000,0.250000,0,0);}
.ma7_c00442{transform:matrix(0.181825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181825,0.000000,0.000000,0.250000,0,0);}
.m7c_c00442{transform:matrix(0.182472,0.004379,-0.005998,0.249928,0,0);-ms-transform:matrix(0.182472,0.004379,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.182472,0.004379,-0.005998,0.249928,0,0);}
.m140_c00442{transform:matrix(0.185130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185130,0.000000,0.000000,0.250000,0,0);}
.mc7_c00442{transform:matrix(0.186397,0.004846,-0.006498,0.249916,0,0);-ms-transform:matrix(0.186397,0.004846,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.186397,0.004846,-0.006498,0.249916,0,0);}
.mc2_c00442{transform:matrix(0.186892,0.004859,-0.006498,0.249916,0,0);-ms-transform:matrix(0.186892,0.004859,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.186892,0.004859,-0.006498,0.249916,0,0);}
.m8f_c00442{transform:matrix(0.186920,0.006549,-0.008753,0.249847,0,0);-ms-transform:matrix(0.186920,0.006549,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.186920,0.006549,-0.008753,0.249847,0,0);}
.m13a_c00442{transform:matrix(0.187005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187005,0.000000,0.000000,0.250000,0,0);}
.m138_c00442{transform:matrix(0.187160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187160,0.000000,0.000000,0.250000,0,0);}
.m92_c00442{transform:matrix(0.188075,0.006589,-0.008753,0.249847,0,0);-ms-transform:matrix(0.188075,0.006589,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.188075,0.006589,-0.008753,0.249847,0,0);}
.m136_c00442{transform:matrix(0.191200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191200,0.000000,0.000000,0.250000,0,0);}
.me2_c00442{transform:matrix(0.192520,0.005006,-0.006498,0.249916,0,0);-ms-transform:matrix(0.192520,0.005006,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.192520,0.005006,-0.006498,0.249916,0,0);}
.m104_c00442{transform:matrix(0.193150,0.005022,-0.006498,0.249916,0,0);-ms-transform:matrix(0.193150,0.005022,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.193150,0.005022,-0.006498,0.249916,0,0);}
.mc0_c00442{transform:matrix(0.193550,0.005032,-0.006498,0.249916,0,0);-ms-transform:matrix(0.193550,0.005032,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.193550,0.005032,-0.006498,0.249916,0,0);}
.m7d_c00442{transform:matrix(0.193979,0.004655,-0.005998,0.249928,0,0);-ms-transform:matrix(0.193979,0.004655,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.193979,0.004655,-0.005998,0.249928,0,0);}
.m141_c00442{transform:matrix(0.194285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194285,0.000000,0.000000,0.250000,0,0);}
.mbf_c00442{transform:matrix(0.194299,0.005052,-0.006498,0.249916,0,0);-ms-transform:matrix(0.194299,0.005052,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.194299,0.005052,-0.006498,0.249916,0,0);}
.mea_c00442{transform:matrix(0.194874,0.005067,-0.006498,0.249916,0,0);-ms-transform:matrix(0.194874,0.005067,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.194874,0.005067,-0.006498,0.249916,0,0);}
.m7e_c00442{transform:matrix(0.195754,0.004698,-0.005998,0.249928,0,0);-ms-transform:matrix(0.195754,0.004698,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.195754,0.004698,-0.005998,0.249928,0,0);}
.m143_c00442{transform:matrix(0.196075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196075,0.000000,0.000000,0.250000,0,0);}
.mac_c00442{transform:matrix(0.196125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196125,0.000000,0.000000,0.250000,0,0);}
.me8_c00442{transform:matrix(0.197263,0.005129,-0.006498,0.249916,0,0);-ms-transform:matrix(0.197263,0.005129,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.197263,0.005129,-0.006498,0.249916,0,0);}
.m144_c00442{transform:matrix(0.197375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197375,0.000000,0.000000,0.250000,0,0);}
.mc5_c00442{transform:matrix(0.197408,0.005133,-0.006498,0.249916,0,0);-ms-transform:matrix(0.197408,0.005133,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.197408,0.005133,-0.006498,0.249916,0,0);}
.mc8_c00442{transform:matrix(0.198023,0.005149,-0.006498,0.249916,0,0);-ms-transform:matrix(0.198023,0.005149,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.198023,0.005149,-0.006498,0.249916,0,0);}
.md6_c00442{transform:matrix(0.198333,0.005157,-0.006498,0.249916,0,0);-ms-transform:matrix(0.198333,0.005157,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.198333,0.005157,-0.006498,0.249916,0,0);}
.m57_c00442{transform:matrix(0.198978,0.004775,-0.005998,0.249928,0,0);-ms-transform:matrix(0.198978,0.004775,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.198978,0.004775,-0.005998,0.249928,0,0);}
.m91_c00442{transform:matrix(0.199088,0.006975,-0.008753,0.249847,0,0);-ms-transform:matrix(0.199088,0.006975,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.199088,0.006975,-0.008753,0.249847,0,0);}
.mc3_c00442{transform:matrix(0.199458,0.005186,-0.006498,0.249916,0,0);-ms-transform:matrix(0.199458,0.005186,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.199458,0.005186,-0.006498,0.249916,0,0);}
.m0_c00442{transform:matrix(0.200125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200125,0.000000,0.000000,0.250000,0,0);}
.mee_c00442{transform:matrix(0.200242,0.005206,-0.006498,0.249916,0,0);-ms-transform:matrix(0.200242,0.005206,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.200242,0.005206,-0.006498,0.249916,0,0);}
.m82_c00442{transform:matrix(0.201217,0.004829,-0.005998,0.249928,0,0);-ms-transform:matrix(0.201217,0.004829,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.201217,0.004829,-0.005998,0.249928,0,0);}
.me5_c00442{transform:matrix(0.202147,0.005256,-0.006498,0.249916,0,0);-ms-transform:matrix(0.202147,0.005256,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.202147,0.005256,-0.006498,0.249916,0,0);}
.mc4_c00442{transform:matrix(0.202437,0.005263,-0.006498,0.249916,0,0);-ms-transform:matrix(0.202437,0.005263,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.202437,0.005263,-0.006498,0.249916,0,0);}
.me7_c00442{transform:matrix(0.202457,0.005264,-0.006498,0.249916,0,0);-ms-transform:matrix(0.202457,0.005264,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.202457,0.005264,-0.006498,0.249916,0,0);}
.m4c_c00442{transform:matrix(0.204101,0.004490,-0.005499,0.249940,0,0);-ms-transform:matrix(0.204101,0.004490,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.204101,0.004490,-0.005499,0.249940,0,0);}
.mbd_c00442{transform:matrix(0.206580,0.005371,-0.006498,0.249916,0,0);-ms-transform:matrix(0.206580,0.005371,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.206580,0.005371,-0.006498,0.249916,0,0);}
.m6_c00442{transform:matrix(0.206775,0.004756,-0.005748,0.249934,0,0);-ms-transform:matrix(0.206775,0.004756,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.206775,0.004756,-0.005748,0.249934,0,0);}
.m145_c00442{transform:matrix(0.206970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206970,0.000000,0.000000,0.250000,0,0);}
.m89_c00442{transform:matrix(0.207413,0.003941,-0.004749,0.249955,0,0);-ms-transform:matrix(0.207413,0.003941,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.207413,0.003941,-0.004749,0.249955,0,0);}
.m7b_c00442{transform:matrix(0.207665,0.004984,-0.005998,0.249928,0,0);-ms-transform:matrix(0.207665,0.004984,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.207665,0.004984,-0.005998,0.249928,0,0);}
.me4_c00442{transform:matrix(0.207825,0.005403,-0.006498,0.249916,0,0);-ms-transform:matrix(0.207825,0.005403,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.207825,0.005403,-0.006498,0.249916,0,0);}
.m8a_c00442{transform:matrix(0.209262,0.003976,-0.004749,0.249955,0,0);-ms-transform:matrix(0.209262,0.003976,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.209262,0.003976,-0.004749,0.249955,0,0);}
.m45_c00442{transform:matrix(0.210244,0.004625,-0.005499,0.249940,0,0);-ms-transform:matrix(0.210244,0.004625,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.210244,0.004625,-0.005499,0.249940,0,0);}
.m106_c00442{transform:matrix(0.210539,0.005474,-0.006498,0.249916,0,0);-ms-transform:matrix(0.210539,0.005474,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.210539,0.005474,-0.006498,0.249916,0,0);}
.m142_c00442{transform:matrix(0.211025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211025,0.000000,0.000000,0.250000,0,0);}
.m7f_c00442{transform:matrix(0.211614,0.005079,-0.005998,0.249928,0,0);-ms-transform:matrix(0.211614,0.005079,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.211614,0.005079,-0.005998,0.249928,0,0);}
.mb8_c00442{transform:matrix(0.211787,0.005930,-0.006997,0.249902,0,0);-ms-transform:matrix(0.211787,0.005930,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.211787,0.005930,-0.006997,0.249902,0,0);}
.mbc_c00442{transform:matrix(0.212618,0.005528,-0.006498,0.249916,0,0);-ms-transform:matrix(0.212618,0.005528,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.212618,0.005528,-0.006498,0.249916,0,0);}
.mcd_c00442{transform:matrix(0.213063,0.005540,-0.006498,0.249916,0,0);-ms-transform:matrix(0.213063,0.005540,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.213063,0.005540,-0.006498,0.249916,0,0);}
.m74_c00442{transform:matrix(0.213758,0.005130,-0.005998,0.249928,0,0);-ms-transform:matrix(0.213758,0.005130,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.213758,0.005130,-0.005998,0.249928,0,0);}
.m123_c00442{transform:matrix(0.213794,0.008560,-0.010002,0.249800,0,0);-ms-transform:matrix(0.213794,0.008560,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.213794,0.008560,-0.010002,0.249800,0,0);}
.mb2_c00442{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.md2_c00442{transform:matrix(0.214343,0.005573,-0.006498,0.249916,0,0);-ms-transform:matrix(0.214343,0.005573,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.214343,0.005573,-0.006498,0.249916,0,0);}
.me0_c00442{transform:matrix(0.214592,0.005579,-0.006498,0.249916,0,0);-ms-transform:matrix(0.214592,0.005579,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.214592,0.005579,-0.006498,0.249916,0,0);}
.mae_c00442{transform:matrix(0.216315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216315,0.000000,0.000000,0.250000,0,0);}
.maf_c00442{transform:matrix(0.216505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216505,0.000000,0.000000,0.250000,0,0);}
.mb0_c00442{transform:matrix(0.216755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216755,0.000000,0.000000,0.250000,0,0);}
.m110_c00442{transform:matrix(0.216885,0.009552,-0.011000,0.249758,0,0);-ms-transform:matrix(0.216885,0.009552,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.216885,0.009552,-0.011000,0.249758,0,0);}
.m64_c00442{transform:matrix(0.217033,0.005209,-0.005998,0.249928,0,0);-ms-transform:matrix(0.217033,0.005209,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.217033,0.005209,-0.005998,0.249928,0,0);}
.m4a_c00442{transform:matrix(0.217452,0.004784,-0.005499,0.249940,0,0);-ms-transform:matrix(0.217452,0.004784,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.217452,0.004784,-0.005499,0.249940,0,0);}
.me3_c00442{transform:matrix(0.217496,0.005655,-0.006498,0.249916,0,0);-ms-transform:matrix(0.217496,0.005655,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.217496,0.005655,-0.006498,0.249916,0,0);}
.m49_c00442{transform:matrix(0.217812,0.004792,-0.005499,0.249940,0,0);-ms-transform:matrix(0.217812,0.004792,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.217812,0.004792,-0.005499,0.249940,0,0);}
.m105_c00442{transform:matrix(0.218756,0.005688,-0.006498,0.249916,0,0);-ms-transform:matrix(0.218756,0.005688,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.218756,0.005688,-0.006498,0.249916,0,0);}
.m84_c00442{transform:matrix(0.219440,0.004169,-0.004749,0.249955,0,0);-ms-transform:matrix(0.219440,0.004169,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.219440,0.004169,-0.004749,0.249955,0,0);}
.m11a_c00442{transform:matrix(0.219729,0.008798,-0.010002,0.249800,0,0);-ms-transform:matrix(0.219729,0.008798,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.219729,0.008798,-0.010002,0.249800,0,0);}
.m34_c00442{transform:matrix(0.220457,0.004850,-0.005499,0.249940,0,0);-ms-transform:matrix(0.220457,0.004850,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.220457,0.004850,-0.005499,0.249940,0,0);}
.m4e_c00442{transform:matrix(0.220551,0.005293,-0.005998,0.249928,0,0);-ms-transform:matrix(0.220551,0.005293,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.220551,0.005293,-0.005998,0.249928,0,0);}
.mbe_c00442{transform:matrix(0.220680,0.005738,-0.006498,0.249916,0,0);-ms-transform:matrix(0.220680,0.005738,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.220680,0.005738,-0.006498,0.249916,0,0);}
.me1_c00442{transform:matrix(0.221335,0.005755,-0.006498,0.249916,0,0);-ms-transform:matrix(0.221335,0.005755,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.221335,0.005755,-0.006498,0.249916,0,0);}
.m87_c00442{transform:matrix(0.221950,0.004217,-0.004749,0.249955,0,0);-ms-transform:matrix(0.221950,0.004217,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.221950,0.004217,-0.004749,0.249955,0,0);}
.m8b_c00442{transform:matrix(0.222450,0.004227,-0.004749,0.249955,0,0);-ms-transform:matrix(0.222450,0.004227,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.222450,0.004227,-0.004749,0.249955,0,0);}
.m16_c00442{transform:matrix(0.222566,0.005119,-0.005748,0.249934,0,0);-ms-transform:matrix(0.222566,0.005119,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.222566,0.005119,-0.005748,0.249934,0,0);}
.m50_c00442{transform:matrix(0.223206,0.005357,-0.005998,0.249928,0,0);-ms-transform:matrix(0.223206,0.005357,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.223206,0.005357,-0.005998,0.249928,0,0);}
.m14_c00442{transform:matrix(0.223211,0.005134,-0.005748,0.249934,0,0);-ms-transform:matrix(0.223211,0.005134,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.223211,0.005134,-0.005748,0.249934,0,0);}
.mec_c00442{transform:matrix(0.223644,0.005815,-0.006498,0.249916,0,0);-ms-transform:matrix(0.223644,0.005815,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.223644,0.005815,-0.006498,0.249916,0,0);}
.m9f_c00442{transform:matrix(0.223748,0.007839,-0.008753,0.249847,0,0);-ms-transform:matrix(0.223748,0.007839,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.223748,0.007839,-0.008753,0.249847,0,0);}
.mb1_c00442{transform:matrix(0.224435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224435,0.000000,0.000000,0.250000,0,0);}
.me6_c00442{transform:matrix(0.224589,0.005839,-0.006498,0.249916,0,0);-ms-transform:matrix(0.224589,0.005839,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.224589,0.005839,-0.006498,0.249916,0,0);}
.m6c_c00442{transform:matrix(0.224670,0.005392,-0.005998,0.249928,0,0);-ms-transform:matrix(0.224670,0.005392,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.224670,0.005392,-0.005998,0.249928,0,0);}
.me9_c00442{transform:matrix(0.225169,0.005854,-0.006498,0.249916,0,0);-ms-transform:matrix(0.225169,0.005854,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.225169,0.005854,-0.006498,0.249916,0,0);}
.m101_c00442{transform:matrix(0.225189,0.005855,-0.006498,0.249916,0,0);-ms-transform:matrix(0.225189,0.005855,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.225189,0.005855,-0.006498,0.249916,0,0);}
.m1e_c00442{transform:matrix(0.225285,0.005182,-0.005748,0.249934,0,0);-ms-transform:matrix(0.225285,0.005182,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.225285,0.005182,-0.005748,0.249934,0,0);}
.m66_c00442{transform:matrix(0.226045,0.005425,-0.005998,0.249928,0,0);-ms-transform:matrix(0.226045,0.005425,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.226045,0.005425,-0.005998,0.249928,0,0);}
.mdf_c00442{transform:matrix(0.226294,0.005884,-0.006498,0.249916,0,0);-ms-transform:matrix(0.226294,0.005884,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.226294,0.005884,-0.006498,0.249916,0,0);}
.m72_c00442{transform:matrix(0.226305,0.005431,-0.005998,0.249928,0,0);-ms-transform:matrix(0.226305,0.005431,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.226305,0.005431,-0.005998,0.249928,0,0);}
.mfe_c00442{transform:matrix(0.226498,0.005889,-0.006498,0.249916,0,0);-ms-transform:matrix(0.226498,0.005889,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.226498,0.005889,-0.006498,0.249916,0,0);}
.m31_c00442{transform:matrix(0.227375,0.005002,-0.005499,0.249940,0,0);-ms-transform:matrix(0.227375,0.005002,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.227375,0.005002,-0.005499,0.249940,0,0);}
.m12_c00442{transform:matrix(0.228030,0.005245,-0.005748,0.249934,0,0);-ms-transform:matrix(0.228030,0.005245,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.228030,0.005245,-0.005748,0.249934,0,0);}
.m83_c00442{transform:matrix(0.228084,0.004334,-0.004749,0.249955,0,0);-ms-transform:matrix(0.228084,0.004334,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.228084,0.004334,-0.004749,0.249955,0,0);}
.m95_c00442{transform:matrix(0.228090,0.007991,-0.008753,0.249847,0,0);-ms-transform:matrix(0.228090,0.007991,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.228090,0.007991,-0.008753,0.249847,0,0);}
.ma3_c00442{transform:matrix(0.228195,0.007995,-0.008753,0.249847,0,0);-ms-transform:matrix(0.228195,0.007995,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.228195,0.007995,-0.008753,0.249847,0,0);}
.ma8_c00442{transform:matrix(0.228410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228410,0.000000,0.000000,0.250000,0,0);}
.mb9_c00442{transform:matrix(0.228420,0.006396,-0.006997,0.249902,0,0);-ms-transform:matrix(0.228420,0.006396,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.228420,0.006396,-0.006997,0.249902,0,0);}
.m4b_c00442{transform:matrix(0.228455,0.005026,-0.005499,0.249940,0,0);-ms-transform:matrix(0.228455,0.005026,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.228455,0.005026,-0.005499,0.249940,0,0);}
.md3_c00442{transform:matrix(0.229118,0.005957,-0.006498,0.249916,0,0);-ms-transform:matrix(0.229118,0.005957,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.229118,0.005957,-0.006498,0.249916,0,0);}
.mdc_c00442{transform:matrix(0.229852,0.005976,-0.006498,0.249916,0,0);-ms-transform:matrix(0.229852,0.005976,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.229852,0.005976,-0.006498,0.249916,0,0);}
.m10d_c00442{transform:matrix(0.229862,0.010124,-0.011000,0.249758,0,0);-ms-transform:matrix(0.229862,0.010124,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.229862,0.010124,-0.011000,0.249758,0,0);}
.med_c00442{transform:matrix(0.230067,0.005982,-0.006498,0.249916,0,0);-ms-transform:matrix(0.230067,0.005982,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.230067,0.005982,-0.006498,0.249916,0,0);}
.mc6_c00442{transform:matrix(0.230257,0.005987,-0.006498,0.249916,0,0);-ms-transform:matrix(0.230257,0.005987,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.230257,0.005987,-0.006498,0.249916,0,0);}
.m11d_c00442{transform:matrix(0.230710,0.009238,-0.010002,0.249800,0,0);-ms-transform:matrix(0.230710,0.009238,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.230710,0.009238,-0.010002,0.249800,0,0);}
.mf_c00442{transform:matrix(0.230834,0.005309,-0.005748,0.249934,0,0);-ms-transform:matrix(0.230834,0.005309,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.230834,0.005309,-0.005748,0.249934,0,0);}
.m48_c00442{transform:matrix(0.230834,0.005078,-0.005499,0.249940,0,0);-ms-transform:matrix(0.230834,0.005078,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.230834,0.005078,-0.005499,0.249940,0,0);}
.mad_c00442{transform:matrix(0.231220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231220,0.000000,0.000000,0.250000,0,0);}
.mca_c00442{transform:matrix(0.231302,0.006014,-0.006498,0.249916,0,0);-ms-transform:matrix(0.231302,0.006014,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.231302,0.006014,-0.006498,0.249916,0,0);}
.md0_c00442{transform:matrix(0.231542,0.006020,-0.006498,0.249916,0,0);-ms-transform:matrix(0.231542,0.006020,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.231542,0.006020,-0.006498,0.249916,0,0);}
.mf4_c00442{transform:matrix(0.231562,0.006021,-0.006498,0.249916,0,0);-ms-transform:matrix(0.231562,0.006021,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.231562,0.006021,-0.006498,0.249916,0,0);}
.m9e_c00442{transform:matrix(0.231808,0.008121,-0.008753,0.249847,0,0);-ms-transform:matrix(0.231808,0.008121,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.231808,0.008121,-0.008753,0.249847,0,0);}
.m23_c00442{transform:matrix(0.232224,0.005341,-0.005748,0.249934,0,0);-ms-transform:matrix(0.232224,0.005341,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.232224,0.005341,-0.005748,0.249934,0,0);}
.m132_c00442{transform:matrix(0.232234,0.004877,-0.005249,0.249945,0,0);-ms-transform:matrix(0.232234,0.004877,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.232234,0.004877,-0.005249,0.249945,0,0);}
.m1f_c00442{transform:matrix(0.232264,0.005342,-0.005748,0.249934,0,0);-ms-transform:matrix(0.232264,0.005342,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.232264,0.005342,-0.005748,0.249934,0,0);}
.ma0_c00442{transform:matrix(0.232572,0.008148,-0.008753,0.249847,0,0);-ms-transform:matrix(0.232572,0.008148,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.232572,0.008148,-0.008753,0.249847,0,0);}
.m9_c00442{transform:matrix(0.232923,0.005357,-0.005748,0.249934,0,0);-ms-transform:matrix(0.232923,0.005357,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.232923,0.005357,-0.005748,0.249934,0,0);}
.m79_c00442{transform:matrix(0.232928,0.005590,-0.005998,0.249928,0,0);-ms-transform:matrix(0.232928,0.005590,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.232928,0.005590,-0.005998,0.249928,0,0);}
.mef_c00442{transform:matrix(0.233011,0.006058,-0.006498,0.249916,0,0);-ms-transform:matrix(0.233011,0.006058,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.233011,0.006058,-0.006498,0.249916,0,0);}
.mde_c00442{transform:matrix(0.233081,0.006060,-0.006498,0.249916,0,0);-ms-transform:matrix(0.233081,0.006060,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.233081,0.006060,-0.006498,0.249916,0,0);}
.md_c00442{transform:matrix(0.233633,0.005374,-0.005748,0.249934,0,0);-ms-transform:matrix(0.233633,0.005374,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.233633,0.005374,-0.005748,0.249934,0,0);}
.maa_c00442{transform:matrix(0.234100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234100,0.000000,0.000000,0.250000,0,0);}
.mb3_c00442{transform:matrix(0.234115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234115,0.000000,0.000000,0.250000,0,0);}
.m30_c00442{transform:matrix(0.234168,0.005152,-0.005499,0.249940,0,0);-ms-transform:matrix(0.234168,0.005152,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.234168,0.005152,-0.005499,0.249940,0,0);}
.m46_c00442{transform:matrix(0.234303,0.005155,-0.005499,0.249940,0,0);-ms-transform:matrix(0.234303,0.005155,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.234303,0.005155,-0.005499,0.249940,0,0);}
.meb_c00442{transform:matrix(0.234311,0.006092,-0.006498,0.249916,0,0);-ms-transform:matrix(0.234311,0.006092,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.234311,0.006092,-0.006498,0.249916,0,0);}
.mb4_c00442{transform:matrix(0.234603,0.006569,-0.006997,0.249902,0,0);-ms-transform:matrix(0.234603,0.006569,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.234603,0.006569,-0.006997,0.249902,0,0);}
.md9_c00442{transform:matrix(0.235081,0.006112,-0.006498,0.249916,0,0);-ms-transform:matrix(0.235081,0.006112,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.235081,0.006112,-0.006498,0.249916,0,0);}
.m47_c00442{transform:matrix(0.235338,0.005177,-0.005499,0.249940,0,0);-ms-transform:matrix(0.235338,0.005177,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.235338,0.005177,-0.005499,0.249940,0,0);}
.m10a_c00442{transform:matrix(0.235710,0.006128,-0.006498,0.249916,0,0);-ms-transform:matrix(0.235710,0.006128,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.235710,0.006128,-0.006498,0.249916,0,0);}
.ma9_c00442{transform:matrix(0.236105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236105,0.000000,0.000000,0.250000,0,0);}
.md7_c00442{transform:matrix(0.236130,0.006139,-0.006498,0.249916,0,0);-ms-transform:matrix(0.236130,0.006139,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.236130,0.006139,-0.006498,0.249916,0,0);}
.m38_c00442{transform:matrix(0.236508,0.005203,-0.005499,0.249940,0,0);-ms-transform:matrix(0.236508,0.005203,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.236508,0.005203,-0.005499,0.249940,0,0);}
.mc9_c00442{transform:matrix(0.236805,0.006157,-0.006498,0.249916,0,0);-ms-transform:matrix(0.236805,0.006157,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.236805,0.006157,-0.006498,0.249916,0,0);}
.mf8_c00442{transform:matrix(0.236945,0.006161,-0.006498,0.249916,0,0);-ms-transform:matrix(0.236945,0.006161,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.236945,0.006161,-0.006498,0.249916,0,0);}
.m126_c00442{transform:matrix(0.237055,0.009492,-0.010002,0.249800,0,0);-ms-transform:matrix(0.237055,0.009492,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.237055,0.009492,-0.010002,0.249800,0,0);}
.m93_c00442{transform:matrix(0.237894,0.008335,-0.008753,0.249847,0,0);-ms-transform:matrix(0.237894,0.008335,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.237894,0.008335,-0.008753,0.249847,0,0);}
.mcf_c00442{transform:matrix(0.238244,0.006194,-0.006498,0.249916,0,0);-ms-transform:matrix(0.238244,0.006194,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.238244,0.006194,-0.006498,0.249916,0,0);}
.m20_c00442{transform:matrix(0.238327,0.005482,-0.005748,0.249934,0,0);-ms-transform:matrix(0.238327,0.005482,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.238327,0.005482,-0.005748,0.249934,0,0);}
.m76_c00442{transform:matrix(0.238376,0.005721,-0.005998,0.249928,0,0);-ms-transform:matrix(0.238376,0.005721,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.238376,0.005721,-0.005998,0.249928,0,0);}
.m78_c00442{transform:matrix(0.238876,0.005733,-0.005998,0.249928,0,0);-ms-transform:matrix(0.238876,0.005733,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.238876,0.005733,-0.005998,0.249928,0,0);}
.m75_c00442{transform:matrix(0.239436,0.005746,-0.005998,0.249928,0,0);-ms-transform:matrix(0.239436,0.005746,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.239436,0.005746,-0.005998,0.249928,0,0);}
.mf6_c00442{transform:matrix(0.239744,0.006233,-0.006498,0.249916,0,0);-ms-transform:matrix(0.239744,0.006233,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.239744,0.006233,-0.006498,0.249916,0,0);}
.m102_c00442{transform:matrix(0.240064,0.006242,-0.006498,0.249916,0,0);-ms-transform:matrix(0.240064,0.006242,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.240064,0.006242,-0.006498,0.249916,0,0);}
.mab_c00442{transform:matrix(0.240145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240145,0.000000,0.000000,0.250000,0,0);}
.mba_c00442{transform:matrix(0.240366,0.006730,-0.006997,0.249902,0,0);-ms-transform:matrix(0.240366,0.006730,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.240366,0.006730,-0.006997,0.249902,0,0);}
.m133_c00442{transform:matrix(0.240597,0.005053,-0.005249,0.249945,0,0);-ms-transform:matrix(0.240597,0.005053,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.240597,0.005053,-0.005249,0.249945,0,0);}
.m2b_c00442{transform:matrix(0.240942,0.005301,-0.005499,0.249940,0,0);-ms-transform:matrix(0.240942,0.005301,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.240942,0.005301,-0.005499,0.249940,0,0);}
.m96_c00442{transform:matrix(0.241302,0.008454,-0.008753,0.249847,0,0);-ms-transform:matrix(0.241302,0.008454,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.241302,0.008454,-0.008753,0.249847,0,0);}
.m39_c00442{transform:matrix(0.241407,0.005311,-0.005499,0.249940,0,0);-ms-transform:matrix(0.241407,0.005311,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.241407,0.005311,-0.005499,0.249940,0,0);}
.m26_c00442{transform:matrix(0.241716,0.005559,-0.005748,0.249934,0,0);-ms-transform:matrix(0.241716,0.005559,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.241716,0.005559,-0.005748,0.249934,0,0);}
.m11b_c00442{transform:matrix(0.241766,0.009680,-0.010002,0.249800,0,0);-ms-transform:matrix(0.241766,0.009680,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.241766,0.009680,-0.010002,0.249800,0,0);}
.mb5_c00442{transform:matrix(0.242085,0.006778,-0.006997,0.249902,0,0);-ms-transform:matrix(0.242085,0.006778,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.242085,0.006778,-0.006997,0.249902,0,0);}
.m109_c00442{transform:matrix(0.242098,0.006295,-0.006498,0.249916,0,0);-ms-transform:matrix(0.242098,0.006295,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.242098,0.006295,-0.006498,0.249916,0,0);}
.m52_c00442{transform:matrix(0.242260,0.005814,-0.005998,0.249928,0,0);-ms-transform:matrix(0.242260,0.005814,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.242260,0.005814,-0.005998,0.249928,0,0);}
.mfa_c00442{transform:matrix(0.242463,0.006304,-0.006498,0.249916,0,0);-ms-transform:matrix(0.242463,0.006304,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.242463,0.006304,-0.006498,0.249916,0,0);}
.mff_c00442{transform:matrix(0.242498,0.006305,-0.006498,0.249916,0,0);-ms-transform:matrix(0.242498,0.006305,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.242498,0.006305,-0.006498,0.249916,0,0);}
.m10e_c00442{transform:matrix(0.242999,0.010703,-0.011000,0.249758,0,0);-ms-transform:matrix(0.242999,0.010703,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.242999,0.010703,-0.011000,0.249758,0,0);}
.m61_c00442{transform:matrix(0.243425,0.005842,-0.005998,0.249928,0,0);-ms-transform:matrix(0.243425,0.005842,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.243425,0.005842,-0.005998,0.249928,0,0);}
.m44_c00442{transform:matrix(0.243436,0.005356,-0.005499,0.249940,0,0);-ms-transform:matrix(0.243436,0.005356,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.243436,0.005356,-0.005499,0.249940,0,0);}
.m88_c00442{transform:matrix(0.244021,0.004636,-0.004749,0.249955,0,0);-ms-transform:matrix(0.244021,0.004636,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.244021,0.004636,-0.004749,0.249955,0,0);}
.m5e_c00442{transform:matrix(0.244035,0.005857,-0.005998,0.249928,0,0);-ms-transform:matrix(0.244035,0.005857,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.244035,0.005857,-0.005998,0.249928,0,0);}
.m54_c00442{transform:matrix(0.244185,0.005860,-0.005998,0.249928,0,0);-ms-transform:matrix(0.244185,0.005860,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.244185,0.005860,-0.005998,0.249928,0,0);}
.m122_c00442{transform:matrix(0.244279,0.009781,-0.010002,0.249800,0,0);-ms-transform:matrix(0.244279,0.009781,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.244279,0.009781,-0.010002,0.249800,0,0);}
.m2_c00442{transform:matrix(0.244410,0.005621,-0.005748,0.249934,0,0);-ms-transform:matrix(0.244410,0.005621,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.244410,0.005621,-0.005748,0.249934,0,0);}
.m114_c00442{transform:matrix(0.244673,0.010776,-0.011000,0.249758,0,0);-ms-transform:matrix(0.244673,0.010776,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.244673,0.010776,-0.011000,0.249758,0,0);}
.m120_c00442{transform:matrix(0.244674,0.009797,-0.010002,0.249800,0,0);-ms-transform:matrix(0.244674,0.009797,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.244674,0.009797,-0.010002,0.249800,0,0);}
.m53_c00442{transform:matrix(0.244790,0.005875,-0.005998,0.249928,0,0);-ms-transform:matrix(0.244790,0.005875,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.244790,0.005875,-0.005998,0.249928,0,0);}
.m3d_c00442{transform:matrix(0.244811,0.005386,-0.005499,0.249940,0,0);-ms-transform:matrix(0.244811,0.005386,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.244811,0.005386,-0.005499,0.249940,0,0);}
.m42_c00442{transform:matrix(0.244966,0.005389,-0.005499,0.249940,0,0);-ms-transform:matrix(0.244966,0.005389,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.244966,0.005389,-0.005499,0.249940,0,0);}
.m29_c00442{transform:matrix(0.245001,0.005390,-0.005499,0.249940,0,0);-ms-transform:matrix(0.245001,0.005390,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.245001,0.005390,-0.005499,0.249940,0,0);}
.m4_c00442{transform:matrix(0.245150,0.005638,-0.005748,0.249934,0,0);-ms-transform:matrix(0.245150,0.005638,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.245150,0.005638,-0.005748,0.249934,0,0);}
.m11e_c00442{transform:matrix(0.245608,0.009834,-0.010002,0.249800,0,0);-ms-transform:matrix(0.245608,0.009834,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.245608,0.009834,-0.010002,0.249800,0,0);}
.m41_c00442{transform:matrix(0.245651,0.005404,-0.005499,0.249940,0,0);-ms-transform:matrix(0.245651,0.005404,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.245651,0.005404,-0.005499,0.249940,0,0);}
.m6e_c00442{transform:matrix(0.245934,0.005902,-0.005998,0.249928,0,0);-ms-transform:matrix(0.245934,0.005902,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.245934,0.005902,-0.005998,0.249928,0,0);}
.m113_c00442{transform:matrix(0.245957,0.010833,-0.011000,0.249758,0,0);-ms-transform:matrix(0.245957,0.010833,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.245957,0.010833,-0.011000,0.249758,0,0);}
.m40_c00442{transform:matrix(0.245960,0.005411,-0.005499,0.249940,0,0);-ms-transform:matrix(0.245960,0.005411,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.245960,0.005411,-0.005499,0.249940,0,0);}
.mc_c00442{transform:matrix(0.247070,0.005683,-0.005748,0.249934,0,0);-ms-transform:matrix(0.247070,0.005683,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.247070,0.005683,-0.005748,0.249934,0,0);}
.m85_c00442{transform:matrix(0.247090,0.004695,-0.004749,0.249955,0,0);-ms-transform:matrix(0.247090,0.004695,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.247090,0.004695,-0.004749,0.249955,0,0);}
.m121_c00442{transform:matrix(0.247202,0.009898,-0.010002,0.249800,0,0);-ms-transform:matrix(0.247202,0.009898,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.247202,0.009898,-0.010002,0.249800,0,0);}
.mb6_c00442{transform:matrix(0.247353,0.006926,-0.006997,0.249902,0,0);-ms-transform:matrix(0.247353,0.006926,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.247353,0.006926,-0.006997,0.249902,0,0);}
.m22_c00442{transform:matrix(0.247460,0.005692,-0.005748,0.249934,0,0);-ms-transform:matrix(0.247460,0.005692,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.247460,0.005692,-0.005748,0.249934,0,0);}
.m107_c00442{transform:matrix(0.247461,0.006434,-0.006498,0.249916,0,0);-ms-transform:matrix(0.247461,0.006434,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.247461,0.006434,-0.006498,0.249916,0,0);}
.m6d_c00442{transform:matrix(0.247479,0.005939,-0.005998,0.249928,0,0);-ms-transform:matrix(0.247479,0.005939,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.247479,0.005939,-0.005998,0.249928,0,0);}
.m25_c00442{transform:matrix(0.247689,0.005697,-0.005748,0.249934,0,0);-ms-transform:matrix(0.247689,0.005697,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.247689,0.005697,-0.005748,0.249934,0,0);}
.m135_c00442{transform:matrix(0.248520,0.005219,-0.005249,0.249945,0,0);-ms-transform:matrix(0.248520,0.005219,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.248520,0.005219,-0.005249,0.249945,0,0);}
.m73_c00442{transform:matrix(0.249033,0.005977,-0.005998,0.249928,0,0);-ms-transform:matrix(0.249033,0.005977,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.249033,0.005977,-0.005998,0.249928,0,0);}
.m119_c00442{transform:matrix(0.249370,0.009985,-0.010002,0.249800,0,0);-ms-transform:matrix(0.249370,0.009985,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.249370,0.009985,-0.010002,0.249800,0,0);}
.ma1_c00442{transform:matrix(0.249522,0.008742,-0.008753,0.249847,0,0);-ms-transform:matrix(0.249522,0.008742,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.249522,0.008742,-0.008753,0.249847,0,0);}
.m2e_c00442{transform:matrix(0.249870,0.005497,-0.005499,0.249940,0,0);-ms-transform:matrix(0.249870,0.005497,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.249870,0.005497,-0.005499,0.249940,0,0);}
.m3b_c00442{transform:matrix(0.250094,0.005502,-0.005499,0.249940,0,0);-ms-transform:matrix(0.250094,0.005502,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.250094,0.005502,-0.005499,0.249940,0,0);}
.m108_c00442{transform:matrix(0.250185,0.006505,-0.006498,0.249916,0,0);-ms-transform:matrix(0.250185,0.006505,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.250185,0.006505,-0.006498,0.249916,0,0);}
.mda_c00442{transform:matrix(0.250430,0.006511,-0.006498,0.249916,0,0);-ms-transform:matrix(0.250430,0.006511,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.250430,0.006511,-0.006498,0.249916,0,0);}
.mf5_c00442{transform:matrix(0.250885,0.006523,-0.006498,0.249916,0,0);-ms-transform:matrix(0.250885,0.006523,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.250885,0.006523,-0.006498,0.249916,0,0);}
.m13_c00442{transform:matrix(0.250994,0.005773,-0.005748,0.249934,0,0);-ms-transform:matrix(0.250994,0.005773,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.250994,0.005773,-0.005748,0.249934,0,0);}
.m67_c00442{transform:matrix(0.251053,0.006025,-0.005998,0.249928,0,0);-ms-transform:matrix(0.251053,0.006025,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.251053,0.006025,-0.005998,0.249928,0,0);}
.m33_c00442{transform:matrix(0.251339,0.005529,-0.005499,0.249940,0,0);-ms-transform:matrix(0.251339,0.005529,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.251339,0.005529,-0.005499,0.249940,0,0);}
.m19_c00442{transform:matrix(0.251379,0.005782,-0.005748,0.249934,0,0);-ms-transform:matrix(0.251379,0.005782,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.251379,0.005782,-0.005748,0.249934,0,0);}
.md4_c00442{transform:matrix(0.251460,0.006538,-0.006498,0.249916,0,0);-ms-transform:matrix(0.251460,0.006538,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.251460,0.006538,-0.006498,0.249916,0,0);}
.m43_c00442{transform:matrix(0.251534,0.005534,-0.005499,0.249940,0,0);-ms-transform:matrix(0.251534,0.005534,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.251534,0.005534,-0.005499,0.249940,0,0);}
.m17_c00442{transform:matrix(0.251753,0.005790,-0.005748,0.249934,0,0);-ms-transform:matrix(0.251753,0.005790,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.251753,0.005790,-0.005748,0.249934,0,0);}
.mb_c00442{transform:matrix(0.252188,0.005800,-0.005748,0.249934,0,0);-ms-transform:matrix(0.252188,0.005800,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.252188,0.005800,-0.005748,0.249934,0,0);}
.m68_c00442{transform:matrix(0.252962,0.006071,-0.005998,0.249928,0,0);-ms-transform:matrix(0.252962,0.006071,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.252962,0.006071,-0.005998,0.249928,0,0);}
.mcc_c00442{transform:matrix(0.253074,0.006580,-0.006498,0.249916,0,0);-ms-transform:matrix(0.253074,0.006580,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.253074,0.006580,-0.006498,0.249916,0,0);}
.md1_c00442{transform:matrix(0.253174,0.006583,-0.006498,0.249916,0,0);-ms-transform:matrix(0.253174,0.006583,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.253174,0.006583,-0.006498,0.249916,0,0);}
.m12b_c00442{transform:matrix(0.253387,0.010146,-0.010002,0.249800,0,0);-ms-transform:matrix(0.253387,0.010146,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.253387,0.010146,-0.010002,0.249800,0,0);}
.md8_c00442{transform:matrix(0.253474,0.006590,-0.006498,0.249916,0,0);-ms-transform:matrix(0.253474,0.006590,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.253474,0.006590,-0.006498,0.249916,0,0);}
.mce_c00442{transform:matrix(0.253509,0.006591,-0.006498,0.249916,0,0);-ms-transform:matrix(0.253509,0.006591,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.253509,0.006591,-0.006498,0.249916,0,0);}
.mdb_c00442{transform:matrix(0.253834,0.006600,-0.006498,0.249916,0,0);-ms-transform:matrix(0.253834,0.006600,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.253834,0.006600,-0.006498,0.249916,0,0);}
.m134_c00442{transform:matrix(0.254199,0.005338,-0.005249,0.249945,0,0);-ms-transform:matrix(0.254199,0.005338,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.254199,0.005338,-0.005249,0.249945,0,0);}
.m8c_c00442{transform:matrix(0.254554,0.004837,-0.004749,0.249955,0,0);-ms-transform:matrix(0.254554,0.004837,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.254554,0.004837,-0.004749,0.249955,0,0);}
.m59_c00442{transform:matrix(0.254797,0.006115,-0.005998,0.249928,0,0);-ms-transform:matrix(0.254797,0.006115,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.254797,0.006115,-0.005998,0.249928,0,0);}
.m103_c00442{transform:matrix(0.254829,0.006626,-0.006498,0.249916,0,0);-ms-transform:matrix(0.254829,0.006626,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.254829,0.006626,-0.006498,0.249916,0,0);}
.m35_c00442{transform:matrix(0.254993,0.005610,-0.005499,0.249940,0,0);-ms-transform:matrix(0.254993,0.005610,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.254993,0.005610,-0.005499,0.249940,0,0);}
.m10c_c00442{transform:matrix(0.255193,0.011240,-0.011000,0.249758,0,0);-ms-transform:matrix(0.255193,0.011240,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.255193,0.011240,-0.011000,0.249758,0,0);}
.m6a_c00442{transform:matrix(0.255366,0.006129,-0.005998,0.249928,0,0);-ms-transform:matrix(0.255366,0.006129,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.255366,0.006129,-0.005998,0.249928,0,0);}
.mbb_c00442{transform:matrix(0.255380,0.007151,-0.006997,0.249902,0,0);-ms-transform:matrix(0.255380,0.007151,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.255380,0.007151,-0.006997,0.249902,0,0);}
.m94_c00442{transform:matrix(0.255708,0.008959,-0.008753,0.249847,0,0);-ms-transform:matrix(0.255708,0.008959,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.255708,0.008959,-0.008753,0.249847,0,0);}
.m3e_c00442{transform:matrix(0.255833,0.005628,-0.005499,0.249940,0,0);-ms-transform:matrix(0.255833,0.005628,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.255833,0.005628,-0.005499,0.249940,0,0);}
.m12f_c00442{transform:matrix(0.256273,0.005382,-0.005249,0.249945,0,0);-ms-transform:matrix(0.256273,0.005382,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.256273,0.005382,-0.005249,0.249945,0,0);}
.m130_c00442{transform:matrix(0.256483,0.005386,-0.005249,0.249945,0,0);-ms-transform:matrix(0.256483,0.005386,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.256483,0.005386,-0.005249,0.249945,0,0);}
.m11f_c00442{transform:matrix(0.257044,0.010292,-0.010002,0.249800,0,0);-ms-transform:matrix(0.257044,0.010292,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.257044,0.010292,-0.010002,0.249800,0,0);}
.mcb_c00442{transform:matrix(0.257588,0.006697,-0.006498,0.249916,0,0);-ms-transform:matrix(0.257588,0.006697,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.257588,0.006697,-0.006498,0.249916,0,0);}
.m7_c00442{transform:matrix(0.257627,0.005925,-0.005748,0.249934,0,0);-ms-transform:matrix(0.257627,0.005925,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.257627,0.005925,-0.005748,0.249934,0,0);}
.m18_c00442{transform:matrix(0.257962,0.005933,-0.005748,0.249934,0,0);-ms-transform:matrix(0.257962,0.005933,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.257962,0.005933,-0.005748,0.249934,0,0);}
.m3_c00442{transform:matrix(0.257977,0.005933,-0.005748,0.249934,0,0);-ms-transform:matrix(0.257977,0.005933,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.257977,0.005933,-0.005748,0.249934,0,0);}
.m10_c00442{transform:matrix(0.258187,0.005938,-0.005748,0.249934,0,0);-ms-transform:matrix(0.258187,0.005938,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.258187,0.005938,-0.005748,0.249934,0,0);}
.m12c_c00442{transform:matrix(0.258318,0.010343,-0.010002,0.249800,0,0);-ms-transform:matrix(0.258318,0.010343,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.258318,0.010343,-0.010002,0.249800,0,0);}
.m11_c00442{transform:matrix(0.258562,0.005947,-0.005748,0.249934,0,0);-ms-transform:matrix(0.258562,0.005947,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.258562,0.005947,-0.005748,0.249934,0,0);}
.mb7_c00442{transform:matrix(0.258714,0.007244,-0.006997,0.249902,0,0);-ms-transform:matrix(0.258714,0.007244,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.258714,0.007244,-0.006997,0.249902,0,0);}
.mf0_c00442{transform:matrix(0.258773,0.006728,-0.006498,0.249916,0,0);-ms-transform:matrix(0.258773,0.006728,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.258773,0.006728,-0.006498,0.249916,0,0);}
.m71_c00442{transform:matrix(0.259460,0.006227,-0.005998,0.249928,0,0);-ms-transform:matrix(0.259460,0.006227,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.259460,0.006227,-0.005998,0.249928,0,0);}
.m6b_c00442{transform:matrix(0.259540,0.006229,-0.005998,0.249928,0,0);-ms-transform:matrix(0.259540,0.006229,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.259540,0.006229,-0.005998,0.249928,0,0);}
.m60_c00442{transform:matrix(0.259975,0.006239,-0.005998,0.249928,0,0);-ms-transform:matrix(0.259975,0.006239,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.259975,0.006239,-0.005998,0.249928,0,0);}
.mf3_c00442{transform:matrix(0.260012,0.006760,-0.006498,0.249916,0,0);-ms-transform:matrix(0.260012,0.006760,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.260012,0.006760,-0.006498,0.249916,0,0);}
.m2c_c00442{transform:matrix(0.260112,0.005722,-0.005499,0.249940,0,0);-ms-transform:matrix(0.260112,0.005722,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.260112,0.005722,-0.005499,0.249940,0,0);}
.mfc_c00442{transform:matrix(0.260277,0.006767,-0.006498,0.249916,0,0);-ms-transform:matrix(0.260277,0.006767,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.260277,0.006767,-0.006498,0.249916,0,0);}
.mf2_c00442{transform:matrix(0.260327,0.006769,-0.006498,0.249916,0,0);-ms-transform:matrix(0.260327,0.006769,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.260327,0.006769,-0.006498,0.249916,0,0);}
.m5_c00442{transform:matrix(0.260496,0.005991,-0.005748,0.249934,0,0);-ms-transform:matrix(0.260496,0.005991,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.260496,0.005991,-0.005748,0.249934,0,0);}
.m3a_c00442{transform:matrix(0.260727,0.005736,-0.005499,0.249940,0,0);-ms-transform:matrix(0.260727,0.005736,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.260727,0.005736,-0.005499,0.249940,0,0);}
.m131_c00442{transform:matrix(0.261227,0.005486,-0.005249,0.249945,0,0);-ms-transform:matrix(0.261227,0.005486,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.261227,0.005486,-0.005249,0.249945,0,0);}
.me_c00442{transform:matrix(0.262481,0.006037,-0.005748,0.249934,0,0);-ms-transform:matrix(0.262481,0.006037,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.262481,0.006037,-0.005748,0.249934,0,0);}
.m15_c00442{transform:matrix(0.262506,0.006038,-0.005748,0.249934,0,0);-ms-transform:matrix(0.262506,0.006038,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.262506,0.006038,-0.005748,0.249934,0,0);}
.m65_c00442{transform:matrix(0.262724,0.006305,-0.005998,0.249928,0,0);-ms-transform:matrix(0.262724,0.006305,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.262724,0.006305,-0.005998,0.249928,0,0);}
.m9c_c00442{transform:matrix(0.263009,0.009215,-0.008753,0.249847,0,0);-ms-transform:matrix(0.263009,0.009215,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.263009,0.009215,-0.008753,0.249847,0,0);}
.m1d_c00442{transform:matrix(0.263190,0.006053,-0.005748,0.249934,0,0);-ms-transform:matrix(0.263190,0.006053,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.263190,0.006053,-0.005748,0.249934,0,0);}
.mdd_c00442{transform:matrix(0.263241,0.006844,-0.006498,0.249916,0,0);-ms-transform:matrix(0.263241,0.006844,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.263241,0.006844,-0.006498,0.249916,0,0);}
.m24_c00442{transform:matrix(0.264235,0.006077,-0.005748,0.249934,0,0);-ms-transform:matrix(0.264235,0.006077,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.264235,0.006077,-0.005748,0.249934,0,0);}
.m5b_c00442{transform:matrix(0.264729,0.006353,-0.005998,0.249928,0,0);-ms-transform:matrix(0.264729,0.006353,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.264729,0.006353,-0.005998,0.249928,0,0);}
.md5_c00442{transform:matrix(0.264761,0.006884,-0.006498,0.249916,0,0);-ms-transform:matrix(0.264761,0.006884,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.264761,0.006884,-0.006498,0.249916,0,0);}
.m1c_c00442{transform:matrix(0.265560,0.006108,-0.005748,0.249934,0,0);-ms-transform:matrix(0.265560,0.006108,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.265560,0.006108,-0.005748,0.249934,0,0);}
.m5d_c00442{transform:matrix(0.265893,0.006381,-0.005998,0.249928,0,0);-ms-transform:matrix(0.265893,0.006381,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.265893,0.006381,-0.005998,0.249928,0,0);}
.m10b_c00442{transform:matrix(0.265972,0.011714,-0.011000,0.249758,0,0);-ms-transform:matrix(0.265972,0.011714,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.265972,0.011714,-0.011000,0.249758,0,0);}
.m116_c00442{transform:matrix(0.267596,0.011786,-0.011000,0.249758,0,0);-ms-transform:matrix(0.267596,0.011786,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.267596,0.011786,-0.011000,0.249758,0,0);}
.m112_c00442{transform:matrix(0.267805,0.011795,-0.011000,0.249758,0,0);-ms-transform:matrix(0.267805,0.011795,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.267805,0.011795,-0.011000,0.249758,0,0);}
.m3c_c00442{transform:matrix(0.267865,0.005893,-0.005499,0.249940,0,0);-ms-transform:matrix(0.267865,0.005893,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.267865,0.005893,-0.005499,0.249940,0,0);}
.m62_c00442{transform:matrix(0.268048,0.006433,-0.005998,0.249928,0,0);-ms-transform:matrix(0.268048,0.006433,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.268048,0.006433,-0.005998,0.249928,0,0);}
.m77_c00442{transform:matrix(0.268463,0.006443,-0.005998,0.249928,0,0);-ms-transform:matrix(0.268463,0.006443,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.268463,0.006443,-0.005998,0.249928,0,0);}
.m36_c00442{transform:matrix(0.269195,0.005922,-0.005499,0.249940,0,0);-ms-transform:matrix(0.269195,0.005922,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.269195,0.005922,-0.005499,0.249940,0,0);}
.m111_c00442{transform:matrix(0.269314,0.011862,-0.011000,0.249758,0,0);-ms-transform:matrix(0.269314,0.011862,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.269314,0.011862,-0.011000,0.249758,0,0);}
.m28_c00442{transform:matrix(0.270079,0.006212,-0.005748,0.249934,0,0);-ms-transform:matrix(0.270079,0.006212,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.270079,0.006212,-0.005748,0.249934,0,0);}
.m115_c00442{transform:matrix(0.271227,0.011946,-0.011000,0.249758,0,0);-ms-transform:matrix(0.271227,0.011946,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.271227,0.011946,-0.011000,0.249758,0,0);}
.m32_c00442{transform:matrix(0.271294,0.005968,-0.005499,0.249940,0,0);-ms-transform:matrix(0.271294,0.005968,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.271294,0.005968,-0.005499,0.249940,0,0);}
.m56_c00442{transform:matrix(0.271297,0.006511,-0.005998,0.249928,0,0);-ms-transform:matrix(0.271297,0.006511,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.271297,0.006511,-0.005998,0.249928,0,0);}
.ma6_c00442{transform:matrix(0.271770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271770,0.000000,0.000000,0.250000,0,0);}
.m37_c00442{transform:matrix(0.271874,0.005981,-0.005499,0.249940,0,0);-ms-transform:matrix(0.271874,0.005981,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.271874,0.005981,-0.005499,0.249940,0,0);}
.m2a_c00442{transform:matrix(0.272414,0.005993,-0.005499,0.249940,0,0);-ms-transform:matrix(0.272414,0.005993,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.272414,0.005993,-0.005499,0.249940,0,0);}
.m12d_c00442{transform:matrix(0.272432,0.010908,-0.010002,0.249800,0,0);-ms-transform:matrix(0.272432,0.010908,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.272432,0.010908,-0.010002,0.249800,0,0);}
.m8_c00442{transform:matrix(0.273328,0.006287,-0.005748,0.249934,0,0);-ms-transform:matrix(0.273328,0.006287,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.273328,0.006287,-0.005748,0.249934,0,0);}
.m4f_c00442{transform:matrix(0.273801,0.006571,-0.005998,0.249928,0,0);-ms-transform:matrix(0.273801,0.006571,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.273801,0.006571,-0.005998,0.249928,0,0);}
.mf7_c00442{transform:matrix(0.274372,0.007134,-0.006498,0.249916,0,0);-ms-transform:matrix(0.274372,0.007134,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.274372,0.007134,-0.006498,0.249916,0,0);}
.m5f_c00442{transform:matrix(0.274676,0.006592,-0.005998,0.249928,0,0);-ms-transform:matrix(0.274676,0.006592,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.274676,0.006592,-0.005998,0.249928,0,0);}
.ma4_c00442{transform:matrix(0.274855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274855,0.000000,0.000000,0.250000,0,0);}
.ma_c00442{transform:matrix(0.274892,0.006323,-0.005748,0.249934,0,0);-ms-transform:matrix(0.274892,0.006323,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.274892,0.006323,-0.005748,0.249934,0,0);}
.mfb_c00442{transform:matrix(0.276297,0.007184,-0.006498,0.249916,0,0);-ms-transform:matrix(0.276297,0.007184,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.276297,0.007184,-0.006498,0.249916,0,0);}
.m27_c00442{transform:matrix(0.276377,0.006357,-0.005748,0.249934,0,0);-ms-transform:matrix(0.276377,0.006357,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.276377,0.006357,-0.005748,0.249934,0,0);}
.mf9_c00442{transform:matrix(0.276472,0.007188,-0.006498,0.249916,0,0);-ms-transform:matrix(0.276472,0.007188,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.276472,0.007188,-0.006498,0.249916,0,0);}
.m11c_c00442{transform:matrix(0.276678,0.011078,-0.010002,0.249800,0,0);-ms-transform:matrix(0.276678,0.011078,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.276678,0.011078,-0.010002,0.249800,0,0);}
.m55_c00442{transform:matrix(0.276905,0.006646,-0.005998,0.249928,0,0);-ms-transform:matrix(0.276905,0.006646,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.276905,0.006646,-0.005998,0.249928,0,0);}
.m5c_c00442{transform:matrix(0.276970,0.006647,-0.005998,0.249928,0,0);-ms-transform:matrix(0.276970,0.006647,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.276970,0.006647,-0.005998,0.249928,0,0);}
.m58_c00442{transform:matrix(0.277430,0.006658,-0.005998,0.249928,0,0);-ms-transform:matrix(0.277430,0.006658,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.277430,0.006658,-0.005998,0.249928,0,0);}
.m124_c00442{transform:matrix(0.278087,0.011135,-0.010002,0.249800,0,0);-ms-transform:matrix(0.278087,0.011135,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.278087,0.011135,-0.010002,0.249800,0,0);}
.m5a_c00442{transform:matrix(0.278140,0.006675,-0.005998,0.249928,0,0);-ms-transform:matrix(0.278140,0.006675,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.278140,0.006675,-0.005998,0.249928,0,0);}
.m125_c00442{transform:matrix(0.278707,0.011159,-0.010002,0.249800,0,0);-ms-transform:matrix(0.278707,0.011159,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.278707,0.011159,-0.010002,0.249800,0,0);}
.m1a_c00442{transform:matrix(0.278766,0.006412,-0.005748,0.249934,0,0);-ms-transform:matrix(0.278766,0.006412,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.278766,0.006412,-0.005748,0.249934,0,0);}
.m117_c00442{transform:matrix(0.279059,0.012291,-0.011000,0.249758,0,0);-ms-transform:matrix(0.279059,0.012291,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.279059,0.012291,-0.011000,0.249758,0,0);}
.mf1_c00442{transform:matrix(0.279416,0.007265,-0.006498,0.249916,0,0);-ms-transform:matrix(0.279416,0.007265,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.279416,0.007265,-0.006498,0.249916,0,0);}
.m69_c00442{transform:matrix(0.279859,0.006717,-0.005998,0.249928,0,0);-ms-transform:matrix(0.279859,0.006717,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.279859,0.006717,-0.005998,0.249928,0,0);}
.ma5_c00442{transform:matrix(0.284430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284430,0.000000,0.000000,0.250000,0,0);}
.m9d_c00442{transform:matrix(0.289312,0.010136,-0.008753,0.249847,0,0);-ms-transform:matrix(0.289312,0.010136,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.289312,0.010136,-0.008753,0.249847,0,0);}
.m63_c00442{transform:matrix(0.291161,0.006988,-0.005998,0.249928,0,0);-ms-transform:matrix(0.291161,0.006988,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.291161,0.006988,-0.005998,0.249928,0,0);}
.m9b_c00442{transform:matrix(0.291631,0.010217,-0.008753,0.249847,0,0);-ms-transform:matrix(0.291631,0.010217,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.291631,0.010217,-0.008753,0.249847,0,0);}
.m8d_c00442{transform:matrix(0.311489,0.005918,-0.004749,0.249955,0,0);-ms-transform:matrix(0.311489,0.005918,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.311489,0.005918,-0.004749,0.249955,0,0);}
.m51_c00442{transform:matrix(0.314245,0.007542,-0.005998,0.249928,0,0);-ms-transform:matrix(0.314245,0.007542,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.314245,0.007542,-0.005998,0.249928,0,0);}
.m118_c00442{transform:matrix(0.315924,0.013915,-0.011000,0.249758,0,0);-ms-transform:matrix(0.315924,0.013915,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.315924,0.013915,-0.011000,0.249758,0,0);}
.m10f_c00442{transform:matrix(0.323821,0.014262,-0.011000,0.249758,0,0);-ms-transform:matrix(0.323821,0.014262,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.323821,0.014262,-0.011000,0.249758,0,0);}
.m129_c00442{transform:matrix(0.327992,0.013133,-0.010002,0.249800,0,0);-ms-transform:matrix(0.327992,0.013133,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.327992,0.013133,-0.010002,0.249800,0,0);}
.m6f_c00442{transform:matrix(0.343301,0.008239,-0.005998,0.249928,0,0);-ms-transform:matrix(0.343301,0.008239,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.343301,0.008239,-0.005998,0.249928,0,0);}
.m100_c00442{transform:matrix(0.353501,0.009191,-0.006498,0.249916,0,0);-ms-transform:matrix(0.353501,0.009191,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.353501,0.009191,-0.006498,0.249916,0,0);}
.m128_c00442{transform:matrix(0.361655,0.014481,-0.010002,0.249800,0,0);-ms-transform:matrix(0.361655,0.014481,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.361655,0.014481,-0.010002,0.249800,0,0);}
.m13c_c00442{transform:matrix(0.361950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361950,0.000000,0.000000,0.250000,0,0);}
.m127_c00442{transform:matrix(0.383947,0.015373,-0.010002,0.249800,0,0);-ms-transform:matrix(0.383947,0.015373,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.383947,0.015373,-0.010002,0.249800,0,0);}
.m99_c00442{transform:matrix(0.397991,0.013944,-0.008753,0.249847,0,0);-ms-transform:matrix(0.397991,0.013944,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.397991,0.013944,-0.008753,0.249847,0,0);}
.m13b_c00442{transform:matrix(0.409215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409215,0.000000,0.000000,0.250000,0,0);}
.ma2_c00442{transform:matrix(0.440325,0.015427,-0.008753,0.249847,0,0);-ms-transform:matrix(0.440325,0.015427,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.440325,0.015427,-0.008753,0.249847,0,0);}
.m3f_c00442{transform:matrix(0.510661,0.011235,-0.005499,0.249940,0,0);-ms-transform:matrix(0.510661,0.011235,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.510661,0.011235,-0.005499,0.249940,0,0);}
.m70_c00442{transform:matrix(0.571066,0.013706,-0.005998,0.249928,0,0);-ms-transform:matrix(0.571066,0.013706,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.571066,0.013706,-0.005998,0.249928,0,0);}
.m1_c00442{transform:matrix(0.636255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636255,0.000000,0.000000,0.250000,0,0);}
.m8e_c00442{transform:matrix(0.906624,0.031764,-0.008753,0.249847,0,0);-ms-transform:matrix(0.906624,0.031764,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.906624,0.031764,-0.008753,0.249847,0,0);}
.m98_c00442{transform:matrix(1.207304,0.042298,-0.008753,0.249847,0,0);-ms-transform:matrix(1.207304,0.042298,-0.008753,0.249847,0,0);-webkit-transform:matrix(1.207304,0.042298,-0.008753,0.249847,0,0);}
.m12e_c00442{transform:matrix(1.986942,0.041726,-0.005249,0.249945,0,0);-ms-transform:matrix(1.986942,0.041726,-0.005249,0.249945,0,0);-webkit-transform:matrix(1.986942,0.041726,-0.005249,0.249945,0,0);}
.m80_c00442{transform:matrix(2.127377,0.051057,-0.005998,0.249928,0,0);-ms-transform:matrix(2.127377,0.051057,-0.005998,0.249928,0,0);-webkit-transform:matrix(2.127377,0.051057,-0.005998,0.249928,0,0);}
.m90_c00442{transform:matrix(2.381784,0.083446,-0.008753,0.249847,0,0);-ms-transform:matrix(2.381784,0.083446,-0.008753,0.249847,0,0);-webkit-transform:matrix(2.381784,0.083446,-0.008753,0.249847,0,0);}
.v0_c00442{vertical-align:0.000000px;}
.ls0_c00442{letter-spacing:0.000000px;}
.sc__c00442{text-shadow:none;}
.sc0_c00442{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__c00442{-webkit-text-stroke:0px transparent;}
.sc0_c00442{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00442{word-spacing:0.000000px;}
.fc0_c00442{color:transparent;}
.fs17_c00442{font-size:36.000000px;}
.fs14_c00442{font-size:42.009260px;}
.fs13_c00442{font-size:53.989226px;}
.fs0_c00442{font-size:60.000000px;}
.fsa_c00442{font-size:66.000000px;}
.fs12_c00442{font-size:71.985635px;}
.fs11_c00442{font-size:71.997732px;}
.fs15_c00442{font-size:72.015874px;}
.fs2_c00442{font-size:72.017422px;}
.fs1_c00442{font-size:72.019041px;}
.fs4_c00442{font-size:72.020733px;}
.fs10_c00442{font-size:72.024332px;}
.fs9_c00442{font-size:77.969808px;}
.fs7_c00442{font-size:78.014078px;}
.fs5_c00442{font-size:78.022461px;}
.fse_c00442{font-size:78.026360px;}
.fsc_c00442{font-size:78.030570px;}
.fsb_c00442{font-size:84.000000px;}
.fs3_c00442{font-size:84.020326px;}
.fsf_c00442{font-size:84.028387px;}
.fs6_c00442{font-size:90.025916px;}
.fsd_c00442{font-size:90.030415px;}
.fs8_c00442{font-size:95.962841px;}
.fs18_c00442{font-size:96.000000px;}
.fs16_c00442{font-size:102.000000px;}
.y0_c00442{bottom:0.000000px;}
.y138_c00442{bottom:74.464500px;}
.y137_c00442{bottom:108.120295px;}
.y136_c00442{bottom:108.726032px;}
.y135_c00442{bottom:109.637943px;}
.y134_c00442{bottom:110.527715px;}
.y133_c00442{bottom:112.859394px;}
.y132_c00442{bottom:114.950298px;}
.y131_c00442{bottom:115.830486px;}
.y130_c00442{bottom:136.894500px;}
.y142_c00442{bottom:145.363500px;}
.y141_c00442{bottom:146.452500px;}
.y140_c00442{bottom:149.079000px;}
.y13f_c00442{bottom:154.402500px;}
.y13e_c00442{bottom:157.108500px;}
.y13d_c00442{bottom:158.673000px;}
.y13c_c00442{bottom:160.266000px;}
.y13b_c00442{bottom:161.193000px;}
.y13a_c00442{bottom:162.289500px;}
.y12f_c00442{bottom:165.493911px;}
.y12e_c00442{bottom:165.496134px;}
.y12d_c00442{bottom:165.496278px;}
.y12c_c00442{bottom:165.496428px;}
.y139_c00442{bottom:180.100500px;}
.y12b_c00442{bottom:200.315029px;}
.y12a_c00442{bottom:202.225256px;}
.y129_c00442{bottom:203.073028px;}
.y128_c00442{bottom:216.533820px;}
.y127_c00442{bottom:220.585740px;}
.y126_c00442{bottom:223.714380px;}
.y125_c00442{bottom:224.997240px;}
.y124_c00442{bottom:226.814100px;}
.y123_c00442{bottom:228.548940px;}
.y122_c00442{bottom:229.434720px;}
.y121_c00442{bottom:230.334720px;}
.y120_c00442{bottom:232.116600px;}
.y11f_c00442{bottom:233.423220px;}
.y11e_c00442{bottom:237.400080px;}
.y11d_c00442{bottom:239.560080px;}
.y11c_c00442{bottom:242.192340px;}
.y11b_c00442{bottom:244.354500px;}
.y11a_c00442{bottom:250.462080px;}
.y119_c00442{bottom:251.985558px;}
.y118_c00442{bottom:255.351690px;}
.y117_c00442{bottom:258.819264px;}
.y116_c00442{bottom:261.192558px;}
.y115_c00442{bottom:262.750488px;}
.y114_c00442{bottom:265.208988px;}
.y113_c00442{bottom:269.053356px;}
.y112_c00442{bottom:270.509514px;}
.y111_c00442{bottom:272.481264px;}
.y110_c00442{bottom:274.237590px;}
.y10f_c00442{bottom:276.274680px;}
.y10e_c00442{bottom:277.300980px;}
.y10d_c00442{bottom:281.094000px;}
.y10c_c00442{bottom:289.988481px;}
.y10b_c00442{bottom:290.732775px;}
.y10a_c00442{bottom:292.571313px;}
.y109_c00442{bottom:295.138275px;}
.y108_c00442{bottom:297.655659px;}
.y107_c00442{bottom:298.771758px;}
.y106_c00442{bottom:299.891601px;}
.y105_c00442{bottom:300.944163px;}
.y104_c00442{bottom:303.914436px;}
.y103_c00442{bottom:306.054069px;}
.y102_c00442{bottom:307.872000px;}
.y101_c00442{bottom:308.594205px;}
.y100_c00442{bottom:311.529444px;}
.yff_c00442{bottom:312.598344px;}
.yfe_c00442{bottom:332.302389px;}
.yfd_c00442{bottom:333.893715px;}
.yfc_c00442{bottom:336.099807px;}
.yfb_c00442{bottom:336.997212px;}
.yfa_c00442{bottom:339.179643px;}
.yf9_c00442{bottom:339.865215px;}
.yf8_c00442{bottom:342.037464px;}
.yf7_c00442{bottom:370.684917px;}
.yf6_c00442{bottom:371.741934px;}
.yf5_c00442{bottom:372.358068px;}
.yf4_c00442{bottom:373.600110px;}
.yf3_c00442{bottom:374.667621px;}
.yf2_c00442{bottom:377.786586px;}
.yf1_c00442{bottom:378.225264px;}
.yf0_c00442{bottom:396.279054px;}
.yef_c00442{bottom:397.195332px;}
.yee_c00442{bottom:398.784897px;}
.yed_c00442{bottom:400.033023px;}
.yec_c00442{bottom:402.190563px;}
.yeb_c00442{bottom:403.112847px;}
.yea_c00442{bottom:404.698377px;}
.ye9_c00442{bottom:405.585525px;}
.ye8_c00442{bottom:406.221141px;}
.ye7_c00442{bottom:408.056643px;}
.ye6_c00442{bottom:409.007922px;}
.ye5_c00442{bottom:410.242983px;}
.ye4_c00442{bottom:411.164682px;}
.ye3_c00442{bottom:412.041300px;}
.ye2_c00442{bottom:413.884737px;}
.ye1_c00442{bottom:431.230518px;}
.ye0_c00442{bottom:433.105821px;}
.ydf_c00442{bottom:433.920066px;}
.yde_c00442{bottom:435.788994px;}
.ydd_c00442{bottom:437.314725px;}
.ydc_c00442{bottom:439.985499px;}
.ydb_c00442{bottom:442.614768px;}
.yda_c00442{bottom:444.450612px;}
.yd9_c00442{bottom:447.500397px;}
.yd8_c00442{bottom:449.683611px;}
.yd7_c00442{bottom:450.469335px;}
.yd6_c00442{bottom:451.591062px;}
.yd5_c00442{bottom:454.939887px;}
.yd4_c00442{bottom:472.916271px;}
.yd3_c00442{bottom:473.739438px;}
.yd2_c00442{bottom:475.994625px;}
.yd1_c00442{bottom:477.103869px;}
.yd0_c00442{bottom:478.492968px;}
.ycf_c00442{bottom:481.222863px;}
.yce_c00442{bottom:482.061318px;}
.ycd_c00442{bottom:484.295952px;}
.ycc_c00442{bottom:487.306404px;}
.ycb_c00442{bottom:487.863912px;}
.yca_c00442{bottom:489.235149px;}
.yc9_c00442{bottom:504.966402px;}
.yc8_c00442{bottom:505.851897px;}
.yc7_c00442{bottom:508.795383px;}
.yc6_c00442{bottom:509.625108px;}
.yc5_c00442{bottom:510.795771px;}
.yc4_c00442{bottom:511.921701px;}
.yc3_c00442{bottom:512.799981px;}
.yc2_c00442{bottom:513.647646px;}
.yc1_c00442{bottom:514.813473px;}
.yc0_c00442{bottom:516.259827px;}
.ybf_c00442{bottom:519.077382px;}
.ybe_c00442{bottom:519.692763px;}
.ybd_c00442{bottom:521.919000px;}
.yb4_c00442{bottom:539.202000px;}
.yb3_c00442{bottom:540.162000px;}
.yb2_c00442{bottom:541.182000px;}
.yb1_c00442{bottom:542.158500px;}
.yb0_c00442{bottom:542.586000px;}
.yaf_c00442{bottom:543.564000px;}
.yae_c00442{bottom:544.974000px;}
.yad_c00442{bottom:545.562000px;}
.yac_c00442{bottom:547.374000px;}
.yab_c00442{bottom:548.949000px;}
.yaa_c00442{bottom:550.923000px;}
.ya9_c00442{bottom:552.307500px;}
.ya8_c00442{bottom:552.694500px;}
.ya7_c00442{bottom:579.433500px;}
.ybc_c00442{bottom:583.656030px;}
.ybb_c00442{bottom:585.258498px;}
.yba_c00442{bottom:586.169142px;}
.yb9_c00442{bottom:587.091084px;}
.yb8_c00442{bottom:590.206056px;}
.yb7_c00442{bottom:592.635252px;}
.yb6_c00442{bottom:594.207312px;}
.yb5_c00442{bottom:594.819000px;}
.ya6_c00442{bottom:612.934706px;}
.ya5_c00442{bottom:614.136116px;}
.ya4_c00442{bottom:625.388283px;}
.ya3_c00442{bottom:629.243831px;}
.ya2_c00442{bottom:630.803448px;}
.ya1_c00442{bottom:631.567428px;}
.ya0_c00442{bottom:647.319051px;}
.y9f_c00442{bottom:647.536020px;}
.y9e_c00442{bottom:648.697409px;}
.y9d_c00442{bottom:649.330092px;}
.y9c_c00442{bottom:650.832126px;}
.y9b_c00442{bottom:654.266853px;}
.y9a_c00442{bottom:655.025910px;}
.y99_c00442{bottom:656.799969px;}
.y98_c00442{bottom:657.833204px;}
.y97_c00442{bottom:660.613139px;}
.y96_c00442{bottom:662.334242px;}
.y95_c00442{bottom:681.765098px;}
.y94_c00442{bottom:682.520940px;}
.y93_c00442{bottom:696.533663px;}
.y92_c00442{bottom:698.052803px;}
.y91_c00442{bottom:701.470500px;}
.y90_c00442{bottom:725.363447px;}
.y8f_c00442{bottom:727.046856px;}
.y8e_c00442{bottom:727.867998px;}
.y8d_c00442{bottom:728.499273px;}
.y8c_c00442{bottom:729.139811px;}
.y8b_c00442{bottom:730.612434px;}
.y8a_c00442{bottom:731.624327px;}
.y89_c00442{bottom:732.064737px;}
.y88_c00442{bottom:733.327088px;}
.y87_c00442{bottom:734.137001px;}
.y86_c00442{bottom:735.214500px;}
.y85_c00442{bottom:756.697560px;}
.y84_c00442{bottom:757.264524px;}
.y83_c00442{bottom:765.019680px;}
.y82_c00442{bottom:767.243160px;}
.y81_c00442{bottom:768.574092px;}
.y80_c00442{bottom:769.712232px;}
.y7f_c00442{bottom:770.515896px;}
.y7e_c00442{bottom:771.892272px;}
.y7d_c00442{bottom:789.186852px;}
.y7c_c00442{bottom:791.910072px;}
.y7b_c00442{bottom:792.385956px;}
.y7a_c00442{bottom:796.589196px;}
.y79_c00442{bottom:797.052324px;}
.y78_c00442{bottom:798.150816px;}
.y77_c00442{bottom:798.787920px;}
.y76_c00442{bottom:800.364288px;}
.y75_c00442{bottom:801.412956px;}
.y74_c00442{bottom:804.301536px;}
.y73_c00442{bottom:825.446988px;}
.y72_c00442{bottom:830.329380px;}
.y71_c00442{bottom:831.255336px;}
.y70_c00442{bottom:831.942516px;}
.y6f_c00442{bottom:832.606224px;}
.y6e_c00442{bottom:833.930196px;}
.y6d_c00442{bottom:834.388488px;}
.y6c_c00442{bottom:836.997876px;}
.y6b_c00442{bottom:837.472968px;}
.y6a_c00442{bottom:838.348704px;}
.y69_c00442{bottom:838.980432px;}
.y68_c00442{bottom:839.876856px;}
.y67_c00442{bottom:840.492180px;}
.y66_c00442{bottom:862.725684px;}
.y65_c00442{bottom:864.453972px;}
.y64_c00442{bottom:865.422720px;}
.y63_c00442{bottom:866.662920px;}
.y62_c00442{bottom:868.596192px;}
.y61_c00442{bottom:869.564688px;}
.y60_c00442{bottom:871.038552px;}
.y5f_c00442{bottom:873.688632px;}
.y5e_c00442{bottom:875.619744px;}
.y5d_c00442{bottom:876.600624px;}
.y5c_c00442{bottom:877.313112px;}
.y5b_c00442{bottom:878.309016px;}
.y5a_c00442{bottom:899.098788px;}
.y59_c00442{bottom:901.485840px;}
.y58_c00442{bottom:902.022420px;}
.y57_c00442{bottom:904.137240px;}
.y56_c00442{bottom:906.801636px;}
.y55_c00442{bottom:907.884264px;}
.y54_c00442{bottom:908.686164px;}
.y53_c00442{bottom:909.736248px;}
.y52_c00442{bottom:910.522632px;}
.y51_c00442{bottom:911.299476px;}
.y50_c00442{bottom:913.437408px;}
.y4f_c00442{bottom:913.897200px;}
.y4e_c00442{bottom:914.344500px;}
.y4d_c00442{bottom:962.620191px;}
.y4c_c00442{bottom:963.618234px;}
.y4b_c00442{bottom:964.325223px;}
.y4a_c00442{bottom:964.709148px;}
.y49_c00442{bottom:965.772942px;}
.y48_c00442{bottom:987.416832px;}
.y47_c00442{bottom:988.242423px;}
.y46_c00442{bottom:989.018370px;}
.y45_c00442{bottom:990.114291px;}
.y44_c00442{bottom:991.173024px;}
.y43_c00442{bottom:992.236113px;}
.y42_c00442{bottom:993.039975px;}
.y41_c00442{bottom:994.102767px;}
.y40_c00442{bottom:994.651248px;}
.y3f_c00442{bottom:995.694786px;}
.y3e_c00442{bottom:997.258773px;}
.y3d_c00442{bottom:997.820766px;}
.y3c_c00442{bottom:999.675888px;}
.y3b_c00442{bottom:1000.212489px;}
.y3a_c00442{bottom:1002.015327px;}
.y39_c00442{bottom:1003.324212px;}
.y38_c00442{bottom:1004.127777px;}
.y37_c00442{bottom:1024.739397px;}
.y36_c00442{bottom:1026.207270px;}
.y35_c00442{bottom:1026.704811px;}
.y34_c00442{bottom:1027.395501px;}
.y33_c00442{bottom:1028.619768px;}
.y32_c00442{bottom:1030.348407px;}
.y31_c00442{bottom:1031.067873px;}
.y30_c00442{bottom:1032.040878px;}
.y2f_c00442{bottom:1032.509115px;}
.y2e_c00442{bottom:1033.479843px;}
.y2d_c00442{bottom:1033.970652px;}
.y2c_c00442{bottom:1035.429252px;}
.y2b_c00442{bottom:1036.159575px;}
.y2a_c00442{bottom:1038.346518px;}
.y29_c00442{bottom:1039.236000px;}
.y28_c00442{bottom:1061.818488px;}
.y27_c00442{bottom:1063.586395px;}
.y26_c00442{bottom:1064.308914px;}
.y25_c00442{bottom:1064.663772px;}
.y24_c00442{bottom:1066.227930px;}
.y23_c00442{bottom:1066.777290px;}
.y22_c00442{bottom:1068.527444px;}
.y21_c00442{bottom:1068.897434px;}
.y20_c00442{bottom:1069.594675px;}
.y1f_c00442{bottom:1070.294351px;}
.y1e_c00442{bottom:1070.803113px;}
.y1d_c00442{bottom:1096.153463px;}
.y1c_c00442{bottom:1097.299466px;}
.y1b_c00442{bottom:1097.734267px;}
.y1a_c00442{bottom:1099.745889px;}
.y19_c00442{bottom:1100.852784px;}
.y18_c00442{bottom:1101.738380px;}
.y17_c00442{bottom:1103.051600px;}
.y16_c00442{bottom:1103.694452px;}
.y15_c00442{bottom:1105.040293px;}
.y14_c00442{bottom:1105.694169px;}
.y13_c00442{bottom:1106.359447px;}
.y12_c00442{bottom:1107.011598px;}
.y11_c00442{bottom:1108.340828px;}
.y10_c00442{bottom:1109.425416px;}
.yf_c00442{bottom:1130.392709px;}
.ye_c00442{bottom:1131.926475px;}
.yd_c00442{bottom:1132.696170px;}
.yc_c00442{bottom:1133.971014px;}
.yb_c00442{bottom:1134.528465px;}
.ya_c00442{bottom:1136.306768px;}
.y9_c00442{bottom:1137.039789px;}
.y8_c00442{bottom:1139.096196px;}
.y7_c00442{bottom:1140.586631px;}
.y6_c00442{bottom:1141.107132px;}
.y5_c00442{bottom:1142.859905px;}
.y4_c00442{bottom:1143.897285px;}
.y3_c00442{bottom:1145.155742px;}
.y2_c00442{bottom:1146.156000px;}
.y1_c00442{bottom:1194.487500px;}
.h19_c00442{height:36.000000px;}
.h16_c00442{height:42.009260px;}
.h15_c00442{height:53.989226px;}
.h2_c00442{height:60.000000px;}
.hc_c00442{height:66.000000px;}
.h14_c00442{height:71.985635px;}
.h13_c00442{height:71.997732px;}
.h17_c00442{height:72.015874px;}
.h4_c00442{height:72.017422px;}
.h3_c00442{height:72.019041px;}
.h6_c00442{height:72.020733px;}
.h12_c00442{height:72.024332px;}
.hb_c00442{height:77.969808px;}
.h9_c00442{height:78.014078px;}
.h7_c00442{height:78.022461px;}
.h10_c00442{height:78.026360px;}
.he_c00442{height:78.030570px;}
.hd_c00442{height:84.000000px;}
.h5_c00442{height:84.020326px;}
.h11_c00442{height:84.028387px;}
.h8_c00442{height:90.025916px;}
.hf_c00442{height:90.030415px;}
.ha_c00442{height:95.962841px;}
.h1a_c00442{height:96.000000px;}
.h18_c00442{height:102.000000px;}
.h1_c00442{height:1251.000000px;}
.h0_c00442{height:1251.150000px;}
.w0_c00442{width:915.000000px;}
.x0_c00442{left:0.000000px;}
.xcc_c00442{left:140.449500px;}
.xc9_c00442{left:142.335901px;}
.xae_c00442{left:144.816183px;}
.xa0_c00442{left:146.629215px;}
.x26_c00442{left:148.233000px;}
.x71_c00442{left:150.444000px;}
.x7d_c00442{left:151.714213px;}
.x4f_c00442{left:152.907852px;}
.x59_c00442{left:154.703304px;}
.x34_c00442{left:156.361425px;}
.x11_c00442{left:158.033595px;}
.x3_c00442{left:159.070500px;}
.xaf_c00442{left:167.923395px;}
.x8a_c00442{left:170.304000px;}
.xcd_c00442{left:174.966090px;}
.xb2_c00442{left:178.698825px;}
.x5a_c00442{left:185.469756px;}
.xca_c00442{left:186.824725px;}
.x27_c00442{left:188.664000px;}
.x1e_c00442{left:189.849378px;}
.x45_c00442{left:192.504000px;}
.x50_c00442{left:198.156012px;}
.xa1_c00442{left:201.505158px;}
.x4_c00442{left:202.560000px;}
.x6a_c00442{left:207.045972px;}
.xcb_c00442{left:208.425967px;}
.x46_c00442{left:211.141500px;}
.x12_c00442{left:212.236821px;}
.xa2_c00442{left:223.813743px;}
.x7e_c00442{left:226.405321px;}
.x47_c00442{left:230.299500px;}
.x1f_c00442{left:233.581416px;}
.x96_c00442{left:234.591000px;}
.x84_c00442{left:236.958321px;}
.x6b_c00442{left:239.218716px;}
.x35_c00442{left:244.332531px;}
.x8b_c00442{left:247.224000px;}
.x72_c00442{left:249.781500px;}
.xce_c00442{left:252.380325px;}
.x43_c00442{left:253.661205px;}
.x5_c00442{left:257.275500px;}
.x85_c00442{left:258.764493px;}
.x5b_c00442{left:261.837564px;}
.xc2_c00442{left:264.871640px;}
.x51_c00442{left:275.091684px;}
.x20_c00442{left:277.142420px;}
.x13_c00442{left:278.707910px;}
.x6c_c00442{left:284.765136px;}
.x28_c00442{left:288.070500px;}
.x64_c00442{left:296.398512px;}
.xb5_c00442{left:298.756227px;}
.x21_c00442{left:300.276146px;}
.x6_c00442{left:302.379000px;}
.x7a_c00442{left:304.339352px;}
.x5c_c00442{left:305.643276px;}
.x14_c00442{left:311.303652px;}
.x93_c00442{left:314.448000px;}
.x73_c00442{left:316.221000px;}
.x36_c00442{left:319.458231px;}
.x29_c00442{left:321.267000px;}
.x5d_c00442{left:329.378544px;}
.xb0_c00442{left:332.105769px;}
.x6d_c00442{left:338.031876px;}
.x74_c00442{left:339.400500px;}
.xbb_c00442{left:340.544256px;}
.x37_c00442{left:341.802741px;}
.x15_c00442{left:344.535429px;}
.x7b_c00442{left:347.699948px;}
.x65_c00442{left:348.848052px;}
.xd1_c00442{left:349.920000px;}
.x48_c00442{left:351.748500px;}
.x44_c00442{left:352.772163px;}
.xb6_c00442{left:353.839704px;}
.xaa_c00442{left:354.891690px;}
.x8c_c00442{left:356.886000px;}
.x52_c00442{left:362.871396px;}
.x1_c00442{left:365.040000px;}
.x97_c00442{left:366.627000px;}
.xcf_c00442{left:371.696300px;}
.x16_c00442{left:377.206172px;}
.x7_c00442{left:378.586500px;}
.xd2_c00442{left:382.320000px;}
.x49_c00442{left:384.514500px;}
.x2a_c00442{left:387.567000px;}
.x75_c00442{left:392.658000px;}
.x8_c00442{left:401.217000px;}
.xd0_c00442{left:405.473547px;}
.x22_c00442{left:409.648241px;}
.x86_c00442{left:413.328774px;}
.x38_c00442{left:419.100342px;}
.xab_c00442{left:420.465297px;}
.x98_c00442{left:422.256000px;}
.x6e_c00442{left:426.987252px;}
.x4a_c00442{left:428.268000px;}
.xb3_c00442{left:430.690098px;}
.x2_c00442{left:432.000000px;}
.xa3_c00442{left:433.630203px;}
.xd3_c00442{left:441.217500px;}
.x39_c00442{left:442.530819px;}
.x17_c00442{left:444.464795px;}
.xc3_c00442{left:450.772552px;}
.x2b_c00442{left:454.000500px;}
.xa8_c00442{left:455.098488px;}
.x5e_c00442{left:459.865572px;}
.x4b_c00442{left:461.680500px;}
.x9_c00442{left:466.018500px;}
.x99_c00442{left:467.095500px;}
.x7f_c00442{left:468.916467px;}
.x76_c00442{left:470.164500px;}
.x2c_c00442{left:475.284000px;}
.x18_c00442{left:476.591003px;}
.x53_c00442{left:483.297156px;}
.xb1_c00442{left:486.083271px;}
.xd4_c00442{left:493.692000px;}
.xc4_c00442{left:495.275006px;}
.x9a_c00442{left:499.698000px;}
.x80_c00442{left:501.844827px;}
.x77_c00442{left:503.877000px;}
.xbc_c00442{left:505.657977px;}
.x3a_c00442{left:507.686448px;}
.xa9_c00442{left:509.081256px;}
.x94_c00442{left:512.454000px;}
.x66_c00442{left:514.424928px;}
.xc5_c00442{left:517.752505px;}
.x2d_c00442{left:519.511500px;}
.xd5_c00442{left:526.276500px;}
.xac_c00442{left:531.528564px;}
.x9b_c00442{left:533.478000px;}
.x67_c00442{left:537.599160px;}
.xb7_c00442{left:540.573735px;}
.x19_c00442{left:542.235522px;}
.x8d_c00442{left:545.062500px;}
.x5f_c00442{left:549.010140px;}
.x3b_c00442{left:551.163534px;}
.x2e_c00442{left:552.214500px;}
.xa_c00442{left:555.427500px;}
.xbd_c00442{left:561.477102px;}
.x23_c00442{left:563.885046px;}
.x3c_c00442{left:574.048044px;}
.xa4_c00442{left:576.358908px;}
.x8e_c00442{left:577.737000px;}
.x78_c00442{left:580.320000px;}
.x60_c00442{left:582.167808px;}
.xc6_c00442{left:583.202490px;}
.xb4_c00442{left:585.848778px;}
.xb_c00442{left:587.298000px;}
.x54_c00442{left:594.317484px;}
.xbe_c00442{left:596.849194px;}
.x24_c00442{left:609.001791px;}
.x61_c00442{left:616.491084px;}
.x3d_c00442{left:618.332097px;}
.x9c_c00442{left:621.808500px;}
.xc7_c00442{left:628.578568px;}
.x2f_c00442{left:630.789000px;}
.xa5_c00442{left:631.921851px;}
.x95_c00442{left:635.134500px;}
.x1a_c00442{left:641.915922px;}
.xbf_c00442{left:650.733756px;}
.x3e_c00442{left:651.801612px;}
.x9d_c00442{left:653.721000px;}
.x8f_c00442{left:656.070000px;}
.xc8_c00442{left:660.617997px;}
.x62_c00442{left:662.764512px;}
.xc_c00442{left:664.615500px;}
.x79_c00442{left:668.920500px;}
.xa6_c00442{left:676.317021px;}
.x55_c00442{left:682.187196px;}
.xb8_c00442{left:684.598527px;}
.x30_c00442{left:686.437500px;}
.xd_c00442{left:688.852500px;}
.xd6_c00442{left:693.550500px;}
.x3f_c00442{left:696.099165px;}
.x88_c00442{left:700.650000px;}
.x4c_c00442{left:705.924000px;}
.x90_c00442{left:710.430000px;}
.x81_c00442{left:716.154378px;}
.x31_c00442{left:717.832500px;}
.x25_c00442{left:719.472059px;}
.x4d_c00442{left:728.281500px;}
.xc0_c00442{left:729.463447px;}
.x87_c00442{left:734.497784px;}
.x6f_c00442{left:737.173800px;}
.x56_c00442{left:738.552396px;}
.x32_c00442{left:740.448000px;}
.x1b_c00442{left:742.493357px;}
.xe_c00442{left:744.280500px;}
.x68_c00442{left:747.754320px;}
.x89_c00442{left:755.730000px;}
.x70_c00442{left:759.859260px;}
.xb9_c00442{left:762.371370px;}
.x1c_c00442{left:764.268875px;}
.x9e_c00442{left:766.932000px;}
.x7c_c00442{left:769.236989px;}
.x69_c00442{left:771.522588px;}
.xad_c00442{left:775.546350px;}
.xf_c00442{left:777.745500px;}
.x57_c00442{left:782.606520px;}
.x40_c00442{left:785.852205px;}
.x91_c00442{left:788.434500px;}
.x82_c00442{left:794.041653px;}
.xa7_c00442{left:799.449219px;}
.x9f_c00442{left:800.989500px;}
.x83_c00442{left:803.489190px;}
.xc1_c00442{left:805.889944px;}
.x33_c00442{left:807.169500px;}
.x41_c00442{left:818.189286px;}
.x1d_c00442{left:821.533807px;}
.x4e_c00442{left:827.742000px;}
.xba_c00442{left:840.639135px;}
.x10_c00442{left:844.431000px;}
.x42_c00442{left:852.578268px;}
.x58_c00442{left:861.184800px;}
.x92_c00442{left:898.471500px;}
.x63_c00442{left:906.908448px;}
@media print{
.v0_c00442{vertical-align:0.000000pt;}
.ls0_c00442{letter-spacing:0.000000pt;}
.ws0_c00442{word-spacing:0.000000pt;}
.fs17_c00442{font-size:32.000000pt;}
.fs14_c00442{font-size:37.341564pt;}
.fs13_c00442{font-size:47.990423pt;}
.fs0_c00442{font-size:53.333333pt;}
.fsa_c00442{font-size:58.666667pt;}
.fs12_c00442{font-size:63.987231pt;}
.fs11_c00442{font-size:63.997984pt;}
.fs15_c00442{font-size:64.014110pt;}
.fs2_c00442{font-size:64.015486pt;}
.fs1_c00442{font-size:64.016926pt;}
.fs4_c00442{font-size:64.018429pt;}
.fs10_c00442{font-size:64.021628pt;}
.fs9_c00442{font-size:69.306496pt;}
.fs7_c00442{font-size:69.345847pt;}
.fs5_c00442{font-size:69.353298pt;}
.fse_c00442{font-size:69.356764pt;}
.fsc_c00442{font-size:69.360507pt;}
.fsb_c00442{font-size:74.666667pt;}
.fs3_c00442{font-size:74.684734pt;}
.fsf_c00442{font-size:74.691900pt;}
.fs6_c00442{font-size:80.023037pt;}
.fsd_c00442{font-size:80.027035pt;}
.fs8_c00442{font-size:85.300303pt;}
.fs18_c00442{font-size:85.333333pt;}
.fs16_c00442{font-size:90.666667pt;}
.y0_c00442{bottom:0.000000pt;}
.y138_c00442{bottom:66.190667pt;}
.y137_c00442{bottom:96.106929pt;}
.y136_c00442{bottom:96.645361pt;}
.y135_c00442{bottom:97.455949pt;}
.y134_c00442{bottom:98.246857pt;}
.y133_c00442{bottom:100.319461pt;}
.y132_c00442{bottom:102.178043pt;}
.y131_c00442{bottom:102.960432pt;}
.y130_c00442{bottom:121.684000pt;}
.y142_c00442{bottom:129.212000pt;}
.y141_c00442{bottom:130.180000pt;}
.y140_c00442{bottom:132.514667pt;}
.y13f_c00442{bottom:137.246667pt;}
.y13e_c00442{bottom:139.652000pt;}
.y13d_c00442{bottom:141.042667pt;}
.y13c_c00442{bottom:142.458667pt;}
.y13b_c00442{bottom:143.282667pt;}
.y13a_c00442{bottom:144.257333pt;}
.y12f_c00442{bottom:147.105699pt;}
.y12e_c00442{bottom:147.107675pt;}
.y12d_c00442{bottom:147.107803pt;}
.y12c_c00442{bottom:147.107936pt;}
.y139_c00442{bottom:160.089333pt;}
.y12b_c00442{bottom:178.057804pt;}
.y12a_c00442{bottom:179.755783pt;}
.y129_c00442{bottom:180.509359pt;}
.y128_c00442{bottom:192.474507pt;}
.y127_c00442{bottom:196.076213pt;}
.y126_c00442{bottom:198.857227pt;}
.y125_c00442{bottom:199.997547pt;}
.y124_c00442{bottom:201.612533pt;}
.y123_c00442{bottom:203.154613pt;}
.y122_c00442{bottom:203.941973pt;}
.y121_c00442{bottom:204.741973pt;}
.y120_c00442{bottom:206.325867pt;}
.y11f_c00442{bottom:207.487307pt;}
.y11e_c00442{bottom:211.022293pt;}
.y11d_c00442{bottom:212.942293pt;}
.y11c_c00442{bottom:215.282080pt;}
.y11b_c00442{bottom:217.204000pt;}
.y11a_c00442{bottom:222.632960pt;}
.y119_c00442{bottom:223.987163pt;}
.y118_c00442{bottom:226.979280pt;}
.y117_c00442{bottom:230.061568pt;}
.y116_c00442{bottom:232.171163pt;}
.y115_c00442{bottom:233.555989pt;}
.y114_c00442{bottom:235.741323pt;}
.y113_c00442{bottom:239.158539pt;}
.y112_c00442{bottom:240.452901pt;}
.y111_c00442{bottom:242.205568pt;}
.y110_c00442{bottom:243.766747pt;}
.y10f_c00442{bottom:245.577493pt;}
.y10e_c00442{bottom:246.489760pt;}
.y10d_c00442{bottom:249.861333pt;}
.y10c_c00442{bottom:257.767539pt;}
.y10b_c00442{bottom:258.429133pt;}
.y10a_c00442{bottom:260.063389pt;}
.y109_c00442{bottom:262.345133pt;}
.y108_c00442{bottom:264.582808pt;}
.y107_c00442{bottom:265.574896pt;}
.y106_c00442{bottom:266.570312pt;}
.y105_c00442{bottom:267.505923pt;}
.y104_c00442{bottom:270.146165pt;}
.y103_c00442{bottom:272.048061pt;}
.y102_c00442{bottom:273.664000pt;}
.y101_c00442{bottom:274.305960pt;}
.y100_c00442{bottom:276.915061pt;}
.yff_c00442{bottom:277.865195pt;}
.yfe_c00442{bottom:295.379901pt;}
.yfd_c00442{bottom:296.794413pt;}
.yfc_c00442{bottom:298.755384pt;}
.yfb_c00442{bottom:299.553077pt;}
.yfa_c00442{bottom:301.493016pt;}
.yf9_c00442{bottom:302.102413pt;}
.yf8_c00442{bottom:304.033301pt;}
.yf7_c00442{bottom:329.497704pt;}
.yf6_c00442{bottom:330.437275pt;}
.yf5_c00442{bottom:330.984949pt;}
.yf4_c00442{bottom:332.088987pt;}
.yf3_c00442{bottom:333.037885pt;}
.yf2_c00442{bottom:335.810299pt;}
.yf1_c00442{bottom:336.200235pt;}
.yf0_c00442{bottom:352.248048pt;}
.yef_c00442{bottom:353.062517pt;}
.yee_c00442{bottom:354.475464pt;}
.yed_c00442{bottom:355.584909pt;}
.yec_c00442{bottom:357.502723pt;}
.yeb_c00442{bottom:358.322531pt;}
.yea_c00442{bottom:359.731891pt;}
.ye9_c00442{bottom:360.520467pt;}
.ye8_c00442{bottom:361.085459pt;}
.ye7_c00442{bottom:362.717016pt;}
.ye6_c00442{bottom:363.562597pt;}
.ye5_c00442{bottom:364.660429pt;}
.ye4_c00442{bottom:365.479717pt;}
.ye3_c00442{bottom:366.258933pt;}
.ye2_c00442{bottom:367.897544pt;}
.ye1_c00442{bottom:383.316016pt;}
.ye0_c00442{bottom:384.982952pt;}
.ydf_c00442{bottom:385.706725pt;}
.yde_c00442{bottom:387.367995pt;}
.ydd_c00442{bottom:388.724200pt;}
.ydc_c00442{bottom:391.098221pt;}
.ydb_c00442{bottom:393.435349pt;}
.yda_c00442{bottom:395.067211pt;}
.yd9_c00442{bottom:397.778131pt;}
.yd8_c00442{bottom:399.718765pt;}
.yd7_c00442{bottom:400.417187pt;}
.yd6_c00442{bottom:401.414277pt;}
.yd5_c00442{bottom:404.391011pt;}
.yd4_c00442{bottom:420.370019pt;}
.yd3_c00442{bottom:421.101723pt;}
.yd2_c00442{bottom:423.106333pt;}
.yd1_c00442{bottom:424.092328pt;}
.yd0_c00442{bottom:425.327083pt;}
.ycf_c00442{bottom:427.753656pt;}
.yce_c00442{bottom:428.498949pt;}
.ycd_c00442{bottom:430.485291pt;}
.ycc_c00442{bottom:433.161248pt;}
.ycb_c00442{bottom:433.656811pt;}
.yca_c00442{bottom:434.875688pt;}
.yc9_c00442{bottom:448.859024pt;}
.yc8_c00442{bottom:449.646131pt;}
.yc7_c00442{bottom:452.262563pt;}
.yc6_c00442{bottom:453.000096pt;}
.yc5_c00442{bottom:454.040685pt;}
.yc4_c00442{bottom:455.041512pt;}
.yc3_c00442{bottom:455.822205pt;}
.yc2_c00442{bottom:456.575685pt;}
.yc1_c00442{bottom:457.611976pt;}
.yc0_c00442{bottom:458.897624pt;}
.ybf_c00442{bottom:461.402117pt;}
.ybe_c00442{bottom:461.949123pt;}
.ybd_c00442{bottom:463.928000pt;}
.yb4_c00442{bottom:479.290667pt;}
.yb3_c00442{bottom:480.144000pt;}
.yb2_c00442{bottom:481.050667pt;}
.yb1_c00442{bottom:481.918667pt;}
.yb0_c00442{bottom:482.298667pt;}
.yaf_c00442{bottom:483.168000pt;}
.yae_c00442{bottom:484.421333pt;}
.yad_c00442{bottom:484.944000pt;}
.yac_c00442{bottom:486.554667pt;}
.yab_c00442{bottom:487.954667pt;}
.yaa_c00442{bottom:489.709333pt;}
.ya9_c00442{bottom:490.940000pt;}
.ya8_c00442{bottom:491.284000pt;}
.ya7_c00442{bottom:515.052000pt;}
.ybc_c00442{bottom:518.805360pt;}
.ybb_c00442{bottom:520.229776pt;}
.yba_c00442{bottom:521.039237pt;}
.yb9_c00442{bottom:521.858741pt;}
.yb8_c00442{bottom:524.627605pt;}
.yb7_c00442{bottom:526.786891pt;}
.yb6_c00442{bottom:528.184277pt;}
.yb5_c00442{bottom:528.728000pt;}
.ya6_c00442{bottom:544.830849pt;}
.ya5_c00442{bottom:545.898769pt;}
.ya4_c00442{bottom:555.900696pt;}
.ya3_c00442{bottom:559.327849pt;}
.ya2_c00442{bottom:560.714176pt;}
.ya1_c00442{bottom:561.393269pt;}
.ya0_c00442{bottom:575.394712pt;}
.y9f_c00442{bottom:575.587573pt;}
.y9e_c00442{bottom:576.619919pt;}
.y9d_c00442{bottom:577.182304pt;}
.y9c_c00442{bottom:578.517445pt;}
.y9b_c00442{bottom:581.570536pt;}
.y9a_c00442{bottom:582.245253pt;}
.y99_c00442{bottom:583.822195pt;}
.y98_c00442{bottom:584.740625pt;}
.y97_c00442{bottom:587.211679pt;}
.y96_c00442{bottom:588.741548pt;}
.y95_c00442{bottom:606.013420pt;}
.y94_c00442{bottom:606.685280pt;}
.y93_c00442{bottom:619.141033pt;}
.y92_c00442{bottom:620.491380pt;}
.y91_c00442{bottom:623.529333pt;}
.y90_c00442{bottom:644.767508pt;}
.y8f_c00442{bottom:646.263872pt;}
.y8e_c00442{bottom:646.993776pt;}
.y8d_c00442{bottom:647.554909pt;}
.y8c_c00442{bottom:648.124276pt;}
.y8b_c00442{bottom:649.433275pt;}
.y8a_c00442{bottom:650.332735pt;}
.y89_c00442{bottom:650.724211pt;}
.y88_c00442{bottom:651.846300pt;}
.y87_c00442{bottom:652.566223pt;}
.y86_c00442{bottom:653.524000pt;}
.y85_c00442{bottom:672.620053pt;}
.y84_c00442{bottom:673.124021pt;}
.y83_c00442{bottom:680.017493pt;}
.y82_c00442{bottom:681.993920pt;}
.y81_c00442{bottom:683.176971pt;}
.y80_c00442{bottom:684.188651pt;}
.y7f_c00442{bottom:684.903019pt;}
.y7e_c00442{bottom:686.126464pt;}
.y7d_c00442{bottom:701.499424pt;}
.y7c_c00442{bottom:703.920064pt;}
.y7b_c00442{bottom:704.343072pt;}
.y7a_c00442{bottom:708.079285pt;}
.y79_c00442{bottom:708.490955pt;}
.y78_c00442{bottom:709.467392pt;}
.y77_c00442{bottom:710.033707pt;}
.y76_c00442{bottom:711.434923pt;}
.y75_c00442{bottom:712.367072pt;}
.y74_c00442{bottom:714.934699pt;}
.y73_c00442{bottom:733.730656pt;}
.y72_c00442{bottom:738.070560pt;}
.y71_c00442{bottom:738.893632pt;}
.y70_c00442{bottom:739.504459pt;}
.y6f_c00442{bottom:740.094421pt;}
.y6e_c00442{bottom:741.271285pt;}
.y6d_c00442{bottom:741.678656pt;}
.y6c_c00442{bottom:743.998112pt;}
.y6b_c00442{bottom:744.420416pt;}
.y6a_c00442{bottom:745.198848pt;}
.y69_c00442{bottom:745.760384pt;}
.y68_c00442{bottom:746.557205pt;}
.y67_c00442{bottom:747.104160pt;}
.y66_c00442{bottom:766.867275pt;}
.y65_c00442{bottom:768.403531pt;}
.y64_c00442{bottom:769.264640pt;}
.y63_c00442{bottom:770.367040pt;}
.y62_c00442{bottom:772.085504pt;}
.y61_c00442{bottom:772.946389pt;}
.y60_c00442{bottom:774.256491pt;}
.y5f_c00442{bottom:776.612117pt;}
.y5e_c00442{bottom:778.328661pt;}
.y5d_c00442{bottom:779.200555pt;}
.y5c_c00442{bottom:779.833877pt;}
.y5b_c00442{bottom:780.719125pt;}
.y5a_c00442{bottom:799.198923pt;}
.y59_c00442{bottom:801.320747pt;}
.y58_c00442{bottom:801.797707pt;}
.y57_c00442{bottom:803.677547pt;}
.y56_c00442{bottom:806.045899pt;}
.y55_c00442{bottom:807.008235pt;}
.y54_c00442{bottom:807.721035pt;}
.y53_c00442{bottom:808.654443pt;}
.y52_c00442{bottom:809.353451pt;}
.y51_c00442{bottom:810.043979pt;}
.y50_c00442{bottom:811.944363pt;}
.y4f_c00442{bottom:812.353067pt;}
.y4e_c00442{bottom:812.750667pt;}
.y4d_c00442{bottom:855.662392pt;}
.y4c_c00442{bottom:856.549541pt;}
.y4b_c00442{bottom:857.177976pt;}
.y4a_c00442{bottom:857.519243pt;}
.y49_c00442{bottom:858.464837pt;}
.y48_c00442{bottom:877.703851pt;}
.y47_c00442{bottom:878.437709pt;}
.y46_c00442{bottom:879.127440pt;}
.y45_c00442{bottom:880.101592pt;}
.y44_c00442{bottom:881.042688pt;}
.y43_c00442{bottom:881.987656pt;}
.y42_c00442{bottom:882.702200pt;}
.y41_c00442{bottom:883.646904pt;}
.y40_c00442{bottom:884.134443pt;}
.y3f_c00442{bottom:885.062032pt;}
.y3e_c00442{bottom:886.452243pt;}
.y3d_c00442{bottom:886.951792pt;}
.y3c_c00442{bottom:888.600789pt;}
.y3b_c00442{bottom:889.077768pt;}
.y3a_c00442{bottom:890.680291pt;}
.y39_c00442{bottom:891.843744pt;}
.y38_c00442{bottom:892.558024pt;}
.y37_c00442{bottom:910.879464pt;}
.y36_c00442{bottom:912.184240pt;}
.y35_c00442{bottom:912.626499pt;}
.y34_c00442{bottom:913.240445pt;}
.y33_c00442{bottom:914.328683pt;}
.y32_c00442{bottom:915.865251pt;}
.y31_c00442{bottom:916.504776pt;}
.y30_c00442{bottom:917.369669pt;}
.y2f_c00442{bottom:917.785880pt;}
.y2e_c00442{bottom:918.648749pt;}
.y2d_c00442{bottom:919.085024pt;}
.y2c_c00442{bottom:920.381557pt;}
.y2b_c00442{bottom:921.030733pt;}
.y2a_c00442{bottom:922.974683pt;}
.y29_c00442{bottom:923.765333pt;}
.y28_c00442{bottom:943.838656pt;}
.y27_c00442{bottom:945.410129pt;}
.y26_c00442{bottom:946.052368pt;}
.y25_c00442{bottom:946.367797pt;}
.y24_c00442{bottom:947.758160pt;}
.y23_c00442{bottom:948.246480pt;}
.y22_c00442{bottom:949.802172pt;}
.y21_c00442{bottom:950.131052pt;}
.y20_c00442{bottom:950.750823pt;}
.y1f_c00442{bottom:951.372756pt;}
.y1e_c00442{bottom:951.824989pt;}
.y1d_c00442{bottom:974.358633pt;}
.y1c_c00442{bottom:975.377303pt;}
.y1b_c00442{bottom:975.763793pt;}
.y1a_c00442{bottom:977.551901pt;}
.y19_c00442{bottom:978.535808pt;}
.y18_c00442{bottom:979.323004pt;}
.y17_c00442{bottom:980.490311pt;}
.y16_c00442{bottom:981.061735pt;}
.y15_c00442{bottom:982.258039pt;}
.y14_c00442{bottom:982.839261pt;}
.y13_c00442{bottom:983.430620pt;}
.y12_c00442{bottom:984.010309pt;}
.y11_c00442{bottom:985.191847pt;}
.y10_c00442{bottom:986.155925pt;}
.yf_c00442{bottom:1004.793519pt;}
.ye_c00442{bottom:1006.156867pt;}
.yd_c00442{bottom:1006.841040pt;}
.yc_c00442{bottom:1007.974235pt;}
.yb_c00442{bottom:1008.469747pt;}
.ya_c00442{bottom:1010.050460pt;}
.y9_c00442{bottom:1010.702035pt;}
.y8_c00442{bottom:1012.529952pt;}
.y7_c00442{bottom:1013.854783pt;}
.y6_c00442{bottom:1014.317451pt;}
.y5_c00442{bottom:1015.875471pt;}
.y4_c00442{bottom:1016.797587pt;}
.y3_c00442{bottom:1017.916215pt;}
.y2_c00442{bottom:1018.805333pt;}
.y1_c00442{bottom:1061.766667pt;}
.h19_c00442{height:32.000000pt;}
.h16_c00442{height:37.341564pt;}
.h15_c00442{height:47.990423pt;}
.h2_c00442{height:53.333333pt;}
.hc_c00442{height:58.666667pt;}
.h14_c00442{height:63.987231pt;}
.h13_c00442{height:63.997984pt;}
.h17_c00442{height:64.014110pt;}
.h4_c00442{height:64.015486pt;}
.h3_c00442{height:64.016926pt;}
.h6_c00442{height:64.018429pt;}
.h12_c00442{height:64.021628pt;}
.hb_c00442{height:69.306496pt;}
.h9_c00442{height:69.345847pt;}
.h7_c00442{height:69.353298pt;}
.h10_c00442{height:69.356764pt;}
.he_c00442{height:69.360507pt;}
.hd_c00442{height:74.666667pt;}
.h5_c00442{height:74.684734pt;}
.h11_c00442{height:74.691900pt;}
.h8_c00442{height:80.023037pt;}
.hf_c00442{height:80.027035pt;}
.ha_c00442{height:85.300303pt;}
.h1a_c00442{height:85.333333pt;}
.h18_c00442{height:90.666667pt;}
.h1_c00442{height:1112.000000pt;}
.h0_c00442{height:1112.133333pt;}
.w0_c00442{width:813.333333pt;}
.x0_c00442{left:0.000000pt;}
.xcc_c00442{left:124.844000pt;}
.xc9_c00442{left:126.520801pt;}
.xae_c00442{left:128.725496pt;}
.xa0_c00442{left:130.337080pt;}
.x26_c00442{left:131.762667pt;}
.x71_c00442{left:133.728000pt;}
.x7d_c00442{left:134.857079pt;}
.x4f_c00442{left:135.918091pt;}
.x59_c00442{left:137.514048pt;}
.x34_c00442{left:138.987933pt;}
.x11_c00442{left:140.474307pt;}
.x3_c00442{left:141.396000pt;}
.xaf_c00442{left:149.265240pt;}
.x8a_c00442{left:151.381333pt;}
.xcd_c00442{left:155.525413pt;}
.xb2_c00442{left:158.843400pt;}
.x5a_c00442{left:164.862005pt;}
.xca_c00442{left:166.066423pt;}
.x27_c00442{left:167.701333pt;}
.x1e_c00442{left:168.755003pt;}
.x45_c00442{left:171.114667pt;}
.x50_c00442{left:176.138677pt;}
.xa1_c00442{left:179.115696pt;}
.x4_c00442{left:180.053333pt;}
.x6a_c00442{left:184.040864pt;}
.xcb_c00442{left:185.267527pt;}
.x46_c00442{left:187.681333pt;}
.x12_c00442{left:188.654952pt;}
.xa2_c00442{left:198.945549pt;}
.x7e_c00442{left:201.249175pt;}
.x47_c00442{left:204.710667pt;}
.x1f_c00442{left:207.627925pt;}
.x96_c00442{left:208.525333pt;}
.x84_c00442{left:210.629619pt;}
.x6b_c00442{left:212.638859pt;}
.x35_c00442{left:217.184472pt;}
.x8b_c00442{left:219.754667pt;}
.x72_c00442{left:222.028000pt;}
.xce_c00442{left:224.338067pt;}
.x43_c00442{left:225.476627pt;}
.x5_c00442{left:228.689333pt;}
.x85_c00442{left:230.012883pt;}
.x5b_c00442{left:232.744501pt;}
.xc2_c00442{left:235.441457pt;}
.x51_c00442{left:244.525941pt;}
.x20_c00442{left:246.348817pt;}
.x13_c00442{left:247.740364pt;}
.x6c_c00442{left:253.124565pt;}
.x28_c00442{left:256.062667pt;}
.x64_c00442{left:263.465344pt;}
.xb5_c00442{left:265.561091pt;}
.x21_c00442{left:266.912129pt;}
.x6_c00442{left:268.781333pt;}
.x7a_c00442{left:270.523868pt;}
.x5c_c00442{left:271.682912pt;}
.x14_c00442{left:276.714357pt;}
.x93_c00442{left:279.509333pt;}
.x73_c00442{left:281.085333pt;}
.x36_c00442{left:283.962872pt;}
.x29_c00442{left:285.570667pt;}
.x5d_c00442{left:292.780928pt;}
.xb0_c00442{left:295.205128pt;}
.x6d_c00442{left:300.472779pt;}
.x74_c00442{left:301.689333pt;}
.xbb_c00442{left:302.706005pt;}
.x37_c00442{left:303.824659pt;}
.x15_c00442{left:306.253715pt;}
.x7b_c00442{left:309.066620pt;}
.x65_c00442{left:310.087157pt;}
.xd1_c00442{left:311.040000pt;}
.x48_c00442{left:312.665333pt;}
.x44_c00442{left:313.575256pt;}
.xb6_c00442{left:314.524181pt;}
.xaa_c00442{left:315.459280pt;}
.x8c_c00442{left:317.232000pt;}
.x52_c00442{left:322.552352pt;}
.x1_c00442{left:324.480000pt;}
.x97_c00442{left:325.890667pt;}
.xcf_c00442{left:330.396711pt;}
.x16_c00442{left:335.294375pt;}
.x7_c00442{left:336.521333pt;}
.xd2_c00442{left:339.840000pt;}
.x49_c00442{left:341.790667pt;}
.x2a_c00442{left:344.504000pt;}
.x75_c00442{left:349.029333pt;}
.x8_c00442{left:356.637333pt;}
.xd0_c00442{left:360.420931pt;}
.x22_c00442{left:364.131769pt;}
.x86_c00442{left:367.403355pt;}
.x38_c00442{left:372.533637pt;}
.xab_c00442{left:373.746931pt;}
.x98_c00442{left:375.338667pt;}
.x6e_c00442{left:379.544224pt;}
.x4a_c00442{left:380.682667pt;}
.xb3_c00442{left:382.835643pt;}
.x2_c00442{left:384.000000pt;}
.xa3_c00442{left:385.449069pt;}
.xd3_c00442{left:392.193333pt;}
.x39_c00442{left:393.360728pt;}
.x17_c00442{left:395.079817pt;}
.xc3_c00442{left:400.686713pt;}
.x2b_c00442{left:403.556000pt;}
.xa8_c00442{left:404.531989pt;}
.x5e_c00442{left:408.769397pt;}
.x4b_c00442{left:410.382667pt;}
.x9_c00442{left:414.238667pt;}
.x99_c00442{left:415.196000pt;}
.x7f_c00442{left:416.814637pt;}
.x76_c00442{left:417.924000pt;}
.x2c_c00442{left:422.474667pt;}
.x18_c00442{left:423.636447pt;}
.x53_c00442{left:429.597472pt;}
.xb1_c00442{left:432.074019pt;}
.xd4_c00442{left:438.837333pt;}
.xc4_c00442{left:440.244449pt;}
.x9a_c00442{left:444.176000pt;}
.x80_c00442{left:446.084291pt;}
.x77_c00442{left:447.890667pt;}
.xbc_c00442{left:449.473757pt;}
.x3a_c00442{left:451.276843pt;}
.xa9_c00442{left:452.516672pt;}
.x94_c00442{left:455.514667pt;}
.x66_c00442{left:457.266603pt;}
.xc5_c00442{left:460.224449pt;}
.x2d_c00442{left:461.788000pt;}
.xd5_c00442{left:467.801333pt;}
.xac_c00442{left:472.469835pt;}
.x9b_c00442{left:474.202667pt;}
.x67_c00442{left:477.865920pt;}
.xb7_c00442{left:480.509987pt;}
.x19_c00442{left:481.987131pt;}
.x8d_c00442{left:484.500000pt;}
.x5f_c00442{left:488.009013pt;}
.x3b_c00442{left:489.923141pt;}
.x2e_c00442{left:490.857333pt;}
.xa_c00442{left:493.713333pt;}
.xbd_c00442{left:499.090757pt;}
.x23_c00442{left:501.231152pt;}
.x3c_c00442{left:510.264928pt;}
.xa4_c00442{left:512.319029pt;}
.x8e_c00442{left:513.544000pt;}
.x78_c00442{left:515.840000pt;}
.x60_c00442{left:517.482496pt;}
.xc6_c00442{left:518.402213pt;}
.xb4_c00442{left:520.754469pt;}
.xb_c00442{left:522.042667pt;}
.x54_c00442{left:528.282208pt;}
.xbe_c00442{left:530.532617pt;}
.x24_c00442{left:541.334925pt;}
.x61_c00442{left:547.992075pt;}
.x3d_c00442{left:549.628531pt;}
.x9c_c00442{left:552.718667pt;}
.xc7_c00442{left:558.736505pt;}
.x2f_c00442{left:560.701333pt;}
.xa5_c00442{left:561.708312pt;}
.x95_c00442{left:564.564000pt;}
.x1a_c00442{left:570.591931pt;}
.xbf_c00442{left:578.430005pt;}
.x3e_c00442{left:579.379211pt;}
.x9d_c00442{left:581.085333pt;}
.x8f_c00442{left:583.173333pt;}
.xc8_c00442{left:587.215997pt;}
.x62_c00442{left:589.124011pt;}
.xc_c00442{left:590.769333pt;}
.x79_c00442{left:594.596000pt;}
.xa6_c00442{left:601.170685pt;}
.x55_c00442{left:606.388619pt;}
.xb8_c00442{left:608.532024pt;}
.x30_c00442{left:610.166667pt;}
.xd_c00442{left:612.313333pt;}
.xd6_c00442{left:616.489333pt;}
.x3f_c00442{left:618.754813pt;}
.x88_c00442{left:622.800000pt;}
.x4c_c00442{left:627.488000pt;}
.x90_c00442{left:631.493333pt;}
.x81_c00442{left:636.581669pt;}
.x31_c00442{left:638.073333pt;}
.x25_c00442{left:639.530719pt;}
.x4d_c00442{left:647.361333pt;}
.xc0_c00442{left:648.411953pt;}
.x87_c00442{left:652.886919pt;}
.x6f_c00442{left:655.265600pt;}
.x56_c00442{left:656.491019pt;}
.x32_c00442{left:658.176000pt;}
.x1b_c00442{left:659.994095pt;}
.xe_c00442{left:661.582667pt;}
.x68_c00442{left:664.670507pt;}
.x89_c00442{left:671.760000pt;}
.x70_c00442{left:675.430453pt;}
.xb9_c00442{left:677.663440pt;}
.x1c_c00442{left:679.350111pt;}
.x9e_c00442{left:681.717333pt;}
.x7c_c00442{left:683.766212pt;}
.x69_c00442{left:685.797856pt;}
.xad_c00442{left:689.374533pt;}
.xf_c00442{left:691.329333pt;}
.x57_c00442{left:695.650240pt;}
.x40_c00442{left:698.535293pt;}
.x91_c00442{left:700.830667pt;}
.x82_c00442{left:705.814803pt;}
.xa7_c00442{left:710.621528pt;}
.x9f_c00442{left:711.990667pt;}
.x83_c00442{left:714.212613pt;}
.xc1_c00442{left:716.346617pt;}
.x33_c00442{left:717.484000pt;}
.x41_c00442{left:727.279365pt;}
.x1d_c00442{left:730.252273pt;}
.x4e_c00442{left:735.770667pt;}
.xba_c00442{left:747.234787pt;}
.x10_c00442{left:750.605333pt;}
.x42_c00442{left:757.847349pt;}
.x58_c00442{left:765.497600pt;}
.x92_c00442{left:798.641333pt;}
.x63_c00442{left:806.140843pt;}
}





/* 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_c00443 {
    display:none;
  }
  .loading-indicator_c00443.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00443 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_c00443 { 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_c00443" -> "#page-container .classname_c00443")
 */
.pf_c00443 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00443 { /* 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_c00443.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00443 { /* 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_c00443 { /* 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_c00443 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00443 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00443 {overflow:visible;}
  }
}
.c_c00443 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00443 { /* 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_c00443:after { /* webkit #35443 */
  content: '';
}
.t_c00443:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00443 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 */
}
.__c00443 { /* 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_c00443 { /* info for Javascript */
  display:none;
}
.l_c00443 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00443 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00443 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00443: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_c00443 {
    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_c00443.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00443.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_c00443 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00443{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00443;src:url('chunks/assets/font_cfe63ee56e9e10a97d33a3db.woff2')format("woff");}.ff1_c00443{font-family:ff1_c00443;line-height:1.000000;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;}
.m2e_c00443{transform:matrix(0.009086,-0.000282,0.007746,0.249880,0,0);-ms-transform:matrix(0.009086,-0.000282,0.007746,0.249880,0,0);-webkit-transform:matrix(0.009086,-0.000282,0.007746,0.249880,0,0);}
.m47_c00443{transform:matrix(0.011225,-0.000337,0.007497,0.249888,0,0);-ms-transform:matrix(0.011225,-0.000337,0.007497,0.249888,0,0);-webkit-transform:matrix(0.011225,-0.000337,0.007497,0.249888,0,0);}
.md_c00443{transform:matrix(0.012724,-0.000394,0.007746,0.249880,0,0);-ms-transform:matrix(0.012724,-0.000394,0.007746,0.249880,0,0);-webkit-transform:matrix(0.012724,-0.000394,0.007746,0.249880,0,0);}
.m48_c00443{transform:matrix(0.014249,-0.000427,0.007497,0.249888,0,0);-ms-transform:matrix(0.014249,-0.000427,0.007497,0.249888,0,0);-webkit-transform:matrix(0.014249,-0.000427,0.007497,0.249888,0,0);}
.mc_c00443{transform:matrix(0.081666,-0.002532,0.007746,0.249880,0,0);-ms-transform:matrix(0.081666,-0.002532,0.007746,0.249880,0,0);-webkit-transform:matrix(0.081666,-0.002532,0.007746,0.249880,0,0);}
.mf_c00443{transform:matrix(0.133071,-0.004125,0.007746,0.249880,0,0);-ms-transform:matrix(0.133071,-0.004125,0.007746,0.249880,0,0);-webkit-transform:matrix(0.133071,-0.004125,0.007746,0.249880,0,0);}
.m25_c00443{transform:matrix(0.145010,-0.004495,0.007746,0.249880,0,0);-ms-transform:matrix(0.145010,-0.004495,0.007746,0.249880,0,0);-webkit-transform:matrix(0.145010,-0.004495,0.007746,0.249880,0,0);}
.m4f_c00443{transform:matrix(0.146950,-0.003821,0.006498,0.249916,0,0);-ms-transform:matrix(0.146950,-0.003821,0.006498,0.249916,0,0);-webkit-transform:matrix(0.146950,-0.003821,0.006498,0.249916,0,0);}
.m1b_c00443{transform:matrix(0.147149,-0.004562,0.007746,0.249880,0,0);-ms-transform:matrix(0.147149,-0.004562,0.007746,0.249880,0,0);-webkit-transform:matrix(0.147149,-0.004562,0.007746,0.249880,0,0);}
.m12_c00443{transform:matrix(0.148459,-0.004602,0.007746,0.249880,0,0);-ms-transform:matrix(0.148459,-0.004602,0.007746,0.249880,0,0);-webkit-transform:matrix(0.148459,-0.004602,0.007746,0.249880,0,0);}
.mb_c00443{transform:matrix(0.153661,-0.004763,0.007746,0.249880,0,0);-ms-transform:matrix(0.153661,-0.004763,0.007746,0.249880,0,0);-webkit-transform:matrix(0.153661,-0.004763,0.007746,0.249880,0,0);}
.m6e_c00443{transform:matrix(0.167705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167705,0.000000,0.000000,0.250000,0,0);}
.m5d_c00443{transform:matrix(0.168438,-0.002358,0.003500,0.249976,0,0);-ms-transform:matrix(0.168438,-0.002358,0.003500,0.249976,0,0);-webkit-transform:matrix(0.168438,-0.002358,0.003500,0.249976,0,0);}
.m61_c00443{transform:matrix(0.170828,-0.002392,0.003500,0.249976,0,0);-ms-transform:matrix(0.170828,-0.002392,0.003500,0.249976,0,0);-webkit-transform:matrix(0.170828,-0.002392,0.003500,0.249976,0,0);}
.m49_c00443{transform:matrix(0.172862,-0.005186,0.007497,0.249888,0,0);-ms-transform:matrix(0.172862,-0.005186,0.007497,0.249888,0,0);-webkit-transform:matrix(0.172862,-0.005186,0.007497,0.249888,0,0);}
.m80_c00443{transform:matrix(0.172947,-0.003113,0.004499,0.249960,0,0);-ms-transform:matrix(0.172947,-0.003113,0.004499,0.249960,0,0);-webkit-transform:matrix(0.172947,-0.003113,0.004499,0.249960,0,0);}
.m6a_c00443{transform:matrix(0.173135,-0.003463,0.004999,0.249950,0,0);-ms-transform:matrix(0.173135,-0.003463,0.004999,0.249950,0,0);-webkit-transform:matrix(0.173135,-0.003463,0.004999,0.249950,0,0);}
.m62_c00443{transform:matrix(0.174228,-0.002439,0.003500,0.249976,0,0);-ms-transform:matrix(0.174228,-0.002439,0.003500,0.249976,0,0);-webkit-transform:matrix(0.174228,-0.002439,0.003500,0.249976,0,0);}
.m11_c00443{transform:matrix(0.177460,-0.005501,0.007746,0.249880,0,0);-ms-transform:matrix(0.177460,-0.005501,0.007746,0.249880,0,0);-webkit-transform:matrix(0.177460,-0.005501,0.007746,0.249880,0,0);}
.m22_c00443{transform:matrix(0.183952,-0.005703,0.007746,0.249880,0,0);-ms-transform:matrix(0.183952,-0.005703,0.007746,0.249880,0,0);-webkit-transform:matrix(0.183952,-0.005703,0.007746,0.249880,0,0);}
.m1f_c00443{transform:matrix(0.186121,-0.005770,0.007746,0.249880,0,0);-ms-transform:matrix(0.186121,-0.005770,0.007746,0.249880,0,0);-webkit-transform:matrix(0.186121,-0.005770,0.007746,0.249880,0,0);}
.m3a_c00443{transform:matrix(0.189460,-0.005684,0.007497,0.249888,0,0);-ms-transform:matrix(0.189460,-0.005684,0.007497,0.249888,0,0);-webkit-transform:matrix(0.189460,-0.005684,0.007497,0.249888,0,0);}
.m16_c00443{transform:matrix(0.189684,-0.005880,0.007746,0.249880,0,0);-ms-transform:matrix(0.189684,-0.005880,0.007746,0.249880,0,0);-webkit-transform:matrix(0.189684,-0.005880,0.007746,0.249880,0,0);}
.m10_c00443{transform:matrix(0.192538,-0.005969,0.007746,0.249880,0,0);-ms-transform:matrix(0.192538,-0.005969,0.007746,0.249880,0,0);-webkit-transform:matrix(0.192538,-0.005969,0.007746,0.249880,0,0);}
.m15_c00443{transform:matrix(0.193037,-0.005984,0.007746,0.249880,0,0);-ms-transform:matrix(0.193037,-0.005984,0.007746,0.249880,0,0);-webkit-transform:matrix(0.193037,-0.005984,0.007746,0.249880,0,0);}
.m68_c00443{transform:matrix(0.194591,-0.003892,0.004999,0.249950,0,0);-ms-transform:matrix(0.194591,-0.003892,0.004999,0.249950,0,0);-webkit-transform:matrix(0.194591,-0.003892,0.004999,0.249950,0,0);}
.m2_c00443{transform:matrix(0.194891,-0.006042,0.007746,0.249880,0,0);-ms-transform:matrix(0.194891,-0.006042,0.007746,0.249880,0,0);-webkit-transform:matrix(0.194891,-0.006042,0.007746,0.249880,0,0);}
.m6c_c00443{transform:matrix(0.195296,-0.003906,0.004999,0.249950,0,0);-ms-transform:matrix(0.195296,-0.003906,0.004999,0.249950,0,0);-webkit-transform:matrix(0.195296,-0.003906,0.004999,0.249950,0,0);}
.m5b_c00443{transform:matrix(0.195581,-0.002738,0.003500,0.249976,0,0);-ms-transform:matrix(0.195581,-0.002738,0.003500,0.249976,0,0);-webkit-transform:matrix(0.195581,-0.002738,0.003500,0.249976,0,0);}
.m1d_c00443{transform:matrix(0.196201,-0.006082,0.007746,0.249880,0,0);-ms-transform:matrix(0.196201,-0.006082,0.007746,0.249880,0,0);-webkit-transform:matrix(0.196201,-0.006082,0.007746,0.249880,0,0);}
.m4a_c00443{transform:matrix(0.198441,-0.005953,0.007497,0.249888,0,0);-ms-transform:matrix(0.198441,-0.005953,0.007497,0.249888,0,0);-webkit-transform:matrix(0.198441,-0.005953,0.007497,0.249888,0,0);}
.m5f_c00443{transform:matrix(0.198561,-0.002780,0.003500,0.249976,0,0);-ms-transform:matrix(0.198561,-0.002780,0.003500,0.249976,0,0);-webkit-transform:matrix(0.198561,-0.002780,0.003500,0.249976,0,0);}
.m5c_c00443{transform:matrix(0.199235,-0.002789,0.003500,0.249976,0,0);-ms-transform:matrix(0.199235,-0.002789,0.003500,0.249976,0,0);-webkit-transform:matrix(0.199235,-0.002789,0.003500,0.249976,0,0);}
.m13_c00443{transform:matrix(0.199529,-0.006185,0.007746,0.249880,0,0);-ms-transform:matrix(0.199529,-0.006185,0.007746,0.249880,0,0);-webkit-transform:matrix(0.199529,-0.006185,0.007746,0.249880,0,0);}
.m63_c00443{transform:matrix(0.201120,-0.002816,0.003500,0.249976,0,0);-ms-transform:matrix(0.201120,-0.002816,0.003500,0.249976,0,0);-webkit-transform:matrix(0.201120,-0.002816,0.003500,0.249976,0,0);}
.m0_c00443{transform:matrix(0.201148,-0.006236,0.007746,0.249880,0,0);-ms-transform:matrix(0.201148,-0.006236,0.007746,0.249880,0,0);-webkit-transform:matrix(0.201148,-0.006236,0.007746,0.249880,0,0);}
.me_c00443{transform:matrix(0.201453,-0.006245,0.007746,0.249880,0,0);-ms-transform:matrix(0.201453,-0.006245,0.007746,0.249880,0,0);-webkit-transform:matrix(0.201453,-0.006245,0.007746,0.249880,0,0);}
.m31_c00443{transform:matrix(0.201478,-0.006246,0.007746,0.249880,0,0);-ms-transform:matrix(0.201478,-0.006246,0.007746,0.249880,0,0);-webkit-transform:matrix(0.201478,-0.006246,0.007746,0.249880,0,0);}
.m7c_c00443{transform:matrix(0.202737,-0.003649,0.004499,0.249960,0,0);-ms-transform:matrix(0.202737,-0.003649,0.004499,0.249960,0,0);-webkit-transform:matrix(0.202737,-0.003649,0.004499,0.249960,0,0);}
.m28_c00443{transform:matrix(0.202763,-0.006286,0.007746,0.249880,0,0);-ms-transform:matrix(0.202763,-0.006286,0.007746,0.249880,0,0);-webkit-transform:matrix(0.202763,-0.006286,0.007746,0.249880,0,0);}
.m5a_c00443{transform:matrix(0.203945,-0.002855,0.003500,0.249976,0,0);-ms-transform:matrix(0.203945,-0.002855,0.003500,0.249976,0,0);-webkit-transform:matrix(0.203945,-0.002855,0.003500,0.249976,0,0);}
.m2b_c00443{transform:matrix(0.204417,-0.006337,0.007746,0.249880,0,0);-ms-transform:matrix(0.204417,-0.006337,0.007746,0.249880,0,0);-webkit-transform:matrix(0.204417,-0.006337,0.007746,0.249880,0,0);}
.m2d_c00443{transform:matrix(0.204507,-0.006340,0.007746,0.249880,0,0);-ms-transform:matrix(0.204507,-0.006340,0.007746,0.249880,0,0);-webkit-transform:matrix(0.204507,-0.006340,0.007746,0.249880,0,0);}
.m66_c00443{transform:matrix(0.206959,-0.004139,0.004999,0.249950,0,0);-ms-transform:matrix(0.206959,-0.004139,0.004999,0.249950,0,0);-webkit-transform:matrix(0.206959,-0.004139,0.004999,0.249950,0,0);}
.m69_c00443{transform:matrix(0.208473,-0.004169,0.004999,0.249950,0,0);-ms-transform:matrix(0.208473,-0.004169,0.004999,0.249950,0,0);-webkit-transform:matrix(0.208473,-0.004169,0.004999,0.249950,0,0);}
.m7b_c00443{transform:matrix(0.210151,-0.003783,0.004499,0.249960,0,0);-ms-transform:matrix(0.210151,-0.003783,0.004499,0.249960,0,0);-webkit-transform:matrix(0.210151,-0.003783,0.004499,0.249960,0,0);}
.m1c_c00443{transform:matrix(0.215042,-0.006666,0.007746,0.249880,0,0);-ms-transform:matrix(0.215042,-0.006666,0.007746,0.249880,0,0);-webkit-transform:matrix(0.215042,-0.006666,0.007746,0.249880,0,0);}
.m3b_c00443{transform:matrix(0.215618,-0.006469,0.007497,0.249888,0,0);-ms-transform:matrix(0.215618,-0.006469,0.007497,0.249888,0,0);-webkit-transform:matrix(0.215618,-0.006469,0.007497,0.249888,0,0);}
.m21_c00443{transform:matrix(0.216551,-0.006713,0.007746,0.249880,0,0);-ms-transform:matrix(0.216551,-0.006713,0.007746,0.249880,0,0);-webkit-transform:matrix(0.216551,-0.006713,0.007746,0.249880,0,0);}
.m7_c00443{transform:matrix(0.218480,-0.006773,0.007746,0.249880,0,0);-ms-transform:matrix(0.218480,-0.006773,0.007746,0.249880,0,0);-webkit-transform:matrix(0.218480,-0.006773,0.007746,0.249880,0,0);}
.m20_c00443{transform:matrix(0.220099,-0.006823,0.007746,0.249880,0,0);-ms-transform:matrix(0.220099,-0.006823,0.007746,0.249880,0,0);-webkit-transform:matrix(0.220099,-0.006823,0.007746,0.249880,0,0);}
.m30_c00443{transform:matrix(0.220394,-0.006832,0.007746,0.249880,0,0);-ms-transform:matrix(0.220394,-0.006832,0.007746,0.249880,0,0);-webkit-transform:matrix(0.220394,-0.006832,0.007746,0.249880,0,0);}
.m4_c00443{transform:matrix(0.221164,-0.006856,0.007746,0.249880,0,0);-ms-transform:matrix(0.221164,-0.006856,0.007746,0.249880,0,0);-webkit-transform:matrix(0.221164,-0.006856,0.007746,0.249880,0,0);}
.m27_c00443{transform:matrix(0.228310,-0.007078,0.007746,0.249880,0,0);-ms-transform:matrix(0.228310,-0.007078,0.007746,0.249880,0,0);-webkit-transform:matrix(0.228310,-0.007078,0.007746,0.249880,0,0);}
.m7d_c00443{transform:matrix(0.228538,-0.004114,0.004499,0.249960,0,0);-ms-transform:matrix(0.228538,-0.004114,0.004499,0.249960,0,0);-webkit-transform:matrix(0.228538,-0.004114,0.004499,0.249960,0,0);}
.m7e_c00443{transform:matrix(0.231837,-0.004173,0.004499,0.249960,0,0);-ms-transform:matrix(0.231837,-0.004173,0.004499,0.249960,0,0);-webkit-transform:matrix(0.231837,-0.004173,0.004499,0.249960,0,0);}
.m67_c00443{transform:matrix(0.232444,-0.004649,0.004999,0.249950,0,0);-ms-transform:matrix(0.232444,-0.004649,0.004999,0.249950,0,0);-webkit-transform:matrix(0.232444,-0.004649,0.004999,0.249950,0,0);}
.m33_c00443{transform:matrix(0.233458,-0.007237,0.007746,0.249880,0,0);-ms-transform:matrix(0.233458,-0.007237,0.007746,0.249880,0,0);-webkit-transform:matrix(0.233458,-0.007237,0.007746,0.249880,0,0);}
.m17_c00443{transform:matrix(0.235077,-0.007287,0.007746,0.249880,0,0);-ms-transform:matrix(0.235077,-0.007287,0.007746,0.249880,0,0);-webkit-transform:matrix(0.235077,-0.007287,0.007746,0.249880,0,0);}
.m2a_c00443{transform:matrix(0.236217,-0.007323,0.007746,0.249880,0,0);-ms-transform:matrix(0.236217,-0.007323,0.007746,0.249880,0,0);-webkit-transform:matrix(0.236217,-0.007323,0.007746,0.249880,0,0);}
.m54_c00443{transform:matrix(0.236705,-0.006154,0.006498,0.249916,0,0);-ms-transform:matrix(0.236705,-0.006154,0.006498,0.249916,0,0);-webkit-transform:matrix(0.236705,-0.006154,0.006498,0.249916,0,0);}
.m6b_c00443{transform:matrix(0.237702,-0.004754,0.004999,0.249950,0,0);-ms-transform:matrix(0.237702,-0.004754,0.004999,0.249950,0,0);-webkit-transform:matrix(0.237702,-0.004754,0.004999,0.249950,0,0);}
.m3d_c00443{transform:matrix(0.238838,-0.007165,0.007497,0.249888,0,0);-ms-transform:matrix(0.238838,-0.007165,0.007497,0.249888,0,0);-webkit-transform:matrix(0.238838,-0.007165,0.007497,0.249888,0,0);}
.m3c_c00443{transform:matrix(0.239127,-0.007174,0.007497,0.249888,0,0);-ms-transform:matrix(0.239127,-0.007174,0.007497,0.249888,0,0);-webkit-transform:matrix(0.239127,-0.007174,0.007497,0.249888,0,0);}
.m3f_c00443{transform:matrix(0.239742,-0.007192,0.007497,0.249888,0,0);-ms-transform:matrix(0.239742,-0.007192,0.007497,0.249888,0,0);-webkit-transform:matrix(0.239742,-0.007192,0.007497,0.249888,0,0);}
.m43_c00443{transform:matrix(0.241012,-0.007230,0.007497,0.249888,0,0);-ms-transform:matrix(0.241012,-0.007230,0.007497,0.249888,0,0);-webkit-transform:matrix(0.241012,-0.007230,0.007497,0.249888,0,0);}
.m1e_c00443{transform:matrix(0.241709,-0.007493,0.007746,0.249880,0,0);-ms-transform:matrix(0.241709,-0.007493,0.007746,0.249880,0,0);-webkit-transform:matrix(0.241709,-0.007493,0.007746,0.249880,0,0);}
.m4c_c00443{transform:matrix(0.243256,-0.007298,0.007497,0.249888,0,0);-ms-transform:matrix(0.243256,-0.007298,0.007497,0.249888,0,0);-webkit-transform:matrix(0.243256,-0.007298,0.007497,0.249888,0,0);}
.m39_c00443{transform:matrix(0.243740,-0.007312,0.007497,0.249888,0,0);-ms-transform:matrix(0.243740,-0.007312,0.007497,0.249888,0,0);-webkit-transform:matrix(0.243740,-0.007312,0.007497,0.249888,0,0);}
.m7a_c00443{transform:matrix(0.244120,-0.004394,0.004499,0.249960,0,0);-ms-transform:matrix(0.244120,-0.004394,0.004499,0.249960,0,0);-webkit-transform:matrix(0.244120,-0.004394,0.004499,0.249960,0,0);}
.m52_c00443{transform:matrix(0.244137,-0.006348,0.006498,0.249916,0,0);-ms-transform:matrix(0.244137,-0.006348,0.006498,0.249916,0,0);-webkit-transform:matrix(0.244137,-0.006348,0.006498,0.249916,0,0);}
.m5_c00443{transform:matrix(0.245132,-0.007599,0.007746,0.249880,0,0);-ms-transform:matrix(0.245132,-0.007599,0.007746,0.249880,0,0);-webkit-transform:matrix(0.245132,-0.007599,0.007746,0.249880,0,0);}
.m40_c00443{transform:matrix(0.245440,-0.007363,0.007497,0.249888,0,0);-ms-transform:matrix(0.245440,-0.007363,0.007497,0.249888,0,0);-webkit-transform:matrix(0.245440,-0.007363,0.007497,0.249888,0,0);}
.m4e_c00443{transform:matrix(0.247709,-0.007431,0.007497,0.249888,0,0);-ms-transform:matrix(0.247709,-0.007431,0.007497,0.249888,0,0);-webkit-transform:matrix(0.247709,-0.007431,0.007497,0.249888,0,0);}
.m2f_c00443{transform:matrix(0.248286,-0.007697,0.007746,0.249880,0,0);-ms-transform:matrix(0.248286,-0.007697,0.007746,0.249880,0,0);-webkit-transform:matrix(0.248286,-0.007697,0.007746,0.249880,0,0);}
.m18_c00443{transform:matrix(0.249350,-0.007730,0.007746,0.249880,0,0);-ms-transform:matrix(0.249350,-0.007730,0.007746,0.249880,0,0);-webkit-transform:matrix(0.249350,-0.007730,0.007746,0.249880,0,0);}
.m42_c00443{transform:matrix(0.250187,-0.007506,0.007497,0.249888,0,0);-ms-transform:matrix(0.250187,-0.007506,0.007497,0.249888,0,0);-webkit-transform:matrix(0.250187,-0.007506,0.007497,0.249888,0,0);}
.m5e_c00443{transform:matrix(0.250325,-0.003505,0.003500,0.249976,0,0);-ms-transform:matrix(0.250325,-0.003505,0.003500,0.249976,0,0);-webkit-transform:matrix(0.250325,-0.003505,0.003500,0.249976,0,0);}
.m55_c00443{transform:matrix(0.253959,-0.006603,0.006498,0.249916,0,0);-ms-transform:matrix(0.253959,-0.006603,0.006498,0.249916,0,0);-webkit-transform:matrix(0.253959,-0.006603,0.006498,0.249916,0,0);}
.m14_c00443{transform:matrix(0.255132,-0.007909,0.007746,0.249880,0,0);-ms-transform:matrix(0.255132,-0.007909,0.007746,0.249880,0,0);-webkit-transform:matrix(0.255132,-0.007909,0.007746,0.249880,0,0);}
.m34_c00443{transform:matrix(0.255572,-0.007923,0.007746,0.249880,0,0);-ms-transform:matrix(0.255572,-0.007923,0.007746,0.249880,0,0);-webkit-transform:matrix(0.255572,-0.007923,0.007746,0.249880,0,0);}
.m8_c00443{transform:matrix(0.257996,-0.007998,0.007746,0.249880,0,0);-ms-transform:matrix(0.257996,-0.007998,0.007746,0.249880,0,0);-webkit-transform:matrix(0.257996,-0.007998,0.007746,0.249880,0,0);}
.m29_c00443{transform:matrix(0.261379,-0.008103,0.007746,0.249880,0,0);-ms-transform:matrix(0.261379,-0.008103,0.007746,0.249880,0,0);-webkit-transform:matrix(0.261379,-0.008103,0.007746,0.249880,0,0);}
.m74_c00443{transform:matrix(0.261595,-0.006278,0.005998,0.249928,0,0);-ms-transform:matrix(0.261595,-0.006278,0.005998,0.249928,0,0);-webkit-transform:matrix(0.261595,-0.006278,0.005998,0.249928,0,0);}
.m1_c00443{transform:matrix(0.262129,-0.008126,0.007746,0.249880,0,0);-ms-transform:matrix(0.262129,-0.008126,0.007746,0.249880,0,0);-webkit-transform:matrix(0.262129,-0.008126,0.007746,0.249880,0,0);}
.m45_c00443{transform:matrix(0.262947,-0.007888,0.007497,0.249888,0,0);-ms-transform:matrix(0.262947,-0.007888,0.007497,0.249888,0,0);-webkit-transform:matrix(0.262947,-0.007888,0.007497,0.249888,0,0);}
.m37_c00443{transform:matrix(0.267115,-0.008013,0.007497,0.249888,0,0);-ms-transform:matrix(0.267115,-0.008013,0.007497,0.249888,0,0);-webkit-transform:matrix(0.267115,-0.008013,0.007497,0.249888,0,0);}
.m9_c00443{transform:matrix(0.275093,-0.008528,0.007746,0.249880,0,0);-ms-transform:matrix(0.275093,-0.008528,0.007746,0.249880,0,0);-webkit-transform:matrix(0.275093,-0.008528,0.007746,0.249880,0,0);}
.m38_c00443{transform:matrix(0.277365,-0.008321,0.007497,0.249888,0,0);-ms-transform:matrix(0.277365,-0.008321,0.007497,0.249888,0,0);-webkit-transform:matrix(0.277365,-0.008321,0.007497,0.249888,0,0);}
.m53_c00443{transform:matrix(0.278441,-0.007239,0.006498,0.249916,0,0);-ms-transform:matrix(0.278441,-0.007239,0.006498,0.249916,0,0);-webkit-transform:matrix(0.278441,-0.007239,0.006498,0.249916,0,0);}
.m56_c00443{transform:matrix(0.278786,-0.007248,0.006498,0.249916,0,0);-ms-transform:matrix(0.278786,-0.007248,0.006498,0.249916,0,0);-webkit-transform:matrix(0.278786,-0.007248,0.006498,0.249916,0,0);}
.m6_c00443{transform:matrix(0.279936,-0.008678,0.007746,0.249880,0,0);-ms-transform:matrix(0.279936,-0.008678,0.007746,0.249880,0,0);-webkit-transform:matrix(0.279936,-0.008678,0.007746,0.249880,0,0);}
.m75_c00443{transform:matrix(0.281169,-0.006748,0.005998,0.249928,0,0);-ms-transform:matrix(0.281169,-0.006748,0.005998,0.249928,0,0);-webkit-transform:matrix(0.281169,-0.006748,0.005998,0.249928,0,0);}
.m44_c00443{transform:matrix(0.288465,-0.008654,0.007497,0.249888,0,0);-ms-transform:matrix(0.288465,-0.008654,0.007497,0.249888,0,0);-webkit-transform:matrix(0.288465,-0.008654,0.007497,0.249888,0,0);}
.m4d_c00443{transform:matrix(0.295297,-0.008859,0.007497,0.249888,0,0);-ms-transform:matrix(0.295297,-0.008859,0.007497,0.249888,0,0);-webkit-transform:matrix(0.295297,-0.008859,0.007497,0.249888,0,0);}
.m81_c00443{transform:matrix(0.296952,-0.005345,0.004499,0.249960,0,0);-ms-transform:matrix(0.296952,-0.005345,0.004499,0.249960,0,0);-webkit-transform:matrix(0.296952,-0.005345,0.004499,0.249960,0,0);}
.m82_c00443{transform:matrix(0.298172,-0.005367,0.004499,0.249960,0,0);-ms-transform:matrix(0.298172,-0.005367,0.004499,0.249960,0,0);-webkit-transform:matrix(0.298172,-0.005367,0.004499,0.249960,0,0);}
.m51_c00443{transform:matrix(0.298984,-0.007774,0.006498,0.249916,0,0);-ms-transform:matrix(0.298984,-0.007774,0.006498,0.249916,0,0);-webkit-transform:matrix(0.298984,-0.007774,0.006498,0.249916,0,0);}
.m4b_c00443{transform:matrix(0.300795,-0.009024,0.007497,0.249888,0,0);-ms-transform:matrix(0.300795,-0.009024,0.007497,0.249888,0,0);-webkit-transform:matrix(0.300795,-0.009024,0.007497,0.249888,0,0);}
.m26_c00443{transform:matrix(0.305758,-0.009479,0.007746,0.249880,0,0);-ms-transform:matrix(0.305758,-0.009479,0.007746,0.249880,0,0);-webkit-transform:matrix(0.305758,-0.009479,0.007746,0.249880,0,0);}
.m50_c00443{transform:matrix(0.311370,-0.008096,0.006498,0.249916,0,0);-ms-transform:matrix(0.311370,-0.008096,0.006498,0.249916,0,0);-webkit-transform:matrix(0.311370,-0.008096,0.006498,0.249916,0,0);}
.m32_c00443{transform:matrix(0.312470,-0.009687,0.007746,0.249880,0,0);-ms-transform:matrix(0.312470,-0.009687,0.007746,0.249880,0,0);-webkit-transform:matrix(0.312470,-0.009687,0.007746,0.249880,0,0);}
.m60_c00443{transform:matrix(0.320539,-0.004488,0.003500,0.249976,0,0);-ms-transform:matrix(0.320539,-0.004488,0.003500,0.249976,0,0);-webkit-transform:matrix(0.320539,-0.004488,0.003500,0.249976,0,0);}
.m7f_c00443{transform:matrix(0.329657,-0.005934,0.004499,0.249960,0,0);-ms-transform:matrix(0.329657,-0.005934,0.004499,0.249960,0,0);-webkit-transform:matrix(0.329657,-0.005934,0.004499,0.249960,0,0);}
.m79_c00443{transform:matrix(0.329817,-0.005937,0.004499,0.249960,0,0);-ms-transform:matrix(0.329817,-0.005937,0.004499,0.249960,0,0);-webkit-transform:matrix(0.329817,-0.005937,0.004499,0.249960,0,0);}
.m2c_c00443{transform:matrix(0.332085,-0.010295,0.007746,0.249880,0,0);-ms-transform:matrix(0.332085,-0.010295,0.007746,0.249880,0,0);-webkit-transform:matrix(0.332085,-0.010295,0.007746,0.249880,0,0);}
.m57_c00443{transform:matrix(0.336296,-0.008744,0.006498,0.249916,0,0);-ms-transform:matrix(0.336296,-0.008744,0.006498,0.249916,0,0);-webkit-transform:matrix(0.336296,-0.008744,0.006498,0.249916,0,0);}
.m46_c00443{transform:matrix(0.337788,-0.010134,0.007497,0.249888,0,0);-ms-transform:matrix(0.337788,-0.010134,0.007497,0.249888,0,0);-webkit-transform:matrix(0.337788,-0.010134,0.007497,0.249888,0,0);}
.m73_c00443{transform:matrix(0.338732,-0.008130,0.005998,0.249928,0,0);-ms-transform:matrix(0.338732,-0.008130,0.005998,0.249928,0,0);-webkit-transform:matrix(0.338732,-0.008130,0.005998,0.249928,0,0);}
.m59_c00443{transform:matrix(0.353655,-0.004951,0.003500,0.249976,0,0);-ms-transform:matrix(0.353655,-0.004951,0.003500,0.249976,0,0);-webkit-transform:matrix(0.353655,-0.004951,0.003500,0.249976,0,0);}
.m35_c00443{transform:matrix(0.376439,-0.011670,0.007746,0.249880,0,0);-ms-transform:matrix(0.376439,-0.011670,0.007746,0.249880,0,0);-webkit-transform:matrix(0.376439,-0.011670,0.007746,0.249880,0,0);}
.m78_c00443{transform:matrix(0.388803,-0.009331,0.005998,0.249928,0,0);-ms-transform:matrix(0.388803,-0.009331,0.005998,0.249928,0,0);-webkit-transform:matrix(0.388803,-0.009331,0.005998,0.249928,0,0);}
.m3_c00443{transform:matrix(0.408339,-0.012659,0.007746,0.249880,0,0);-ms-transform:matrix(0.408339,-0.012659,0.007746,0.249880,0,0);-webkit-transform:matrix(0.408339,-0.012659,0.007746,0.249880,0,0);}
.m24_c00443{transform:matrix(0.416310,-0.012906,0.007746,0.249880,0,0);-ms-transform:matrix(0.416310,-0.012906,0.007746,0.249880,0,0);-webkit-transform:matrix(0.416310,-0.012906,0.007746,0.249880,0,0);}
.m58_c00443{transform:matrix(0.416369,-0.010826,0.006498,0.249916,0,0);-ms-transform:matrix(0.416369,-0.010826,0.006498,0.249916,0,0);-webkit-transform:matrix(0.416369,-0.010826,0.006498,0.249916,0,0);}
.m41_c00443{transform:matrix(0.426188,-0.012786,0.007497,0.249888,0,0);-ms-transform:matrix(0.426188,-0.012786,0.007497,0.249888,0,0);-webkit-transform:matrix(0.426188,-0.012786,0.007497,0.249888,0,0);}
.m64_c00443{transform:matrix(0.433333,-0.006067,0.003500,0.249976,0,0);-ms-transform:matrix(0.433333,-0.006067,0.003500,0.249976,0,0);-webkit-transform:matrix(0.433333,-0.006067,0.003500,0.249976,0,0);}
.ma_c00443{transform:matrix(0.445991,-0.013826,0.007746,0.249880,0,0);-ms-transform:matrix(0.445991,-0.013826,0.007746,0.249880,0,0);-webkit-transform:matrix(0.445991,-0.013826,0.007746,0.249880,0,0);}
.m65_c00443{transform:matrix(0.451280,-0.009026,0.004999,0.249950,0,0);-ms-transform:matrix(0.451280,-0.009026,0.004999,0.249950,0,0);-webkit-transform:matrix(0.451280,-0.009026,0.004999,0.249950,0,0);}
.m77_c00443{transform:matrix(0.491009,-0.011784,0.005998,0.249928,0,0);-ms-transform:matrix(0.491009,-0.011784,0.005998,0.249928,0,0);-webkit-transform:matrix(0.491009,-0.011784,0.005998,0.249928,0,0);}
.m76_c00443{transform:matrix(0.508099,-0.012194,0.005998,0.249928,0,0);-ms-transform:matrix(0.508099,-0.012194,0.005998,0.249928,0,0);-webkit-transform:matrix(0.508099,-0.012194,0.005998,0.249928,0,0);}
.m3e_c00443{transform:matrix(0.508631,-0.015259,0.007497,0.249888,0,0);-ms-transform:matrix(0.508631,-0.015259,0.007497,0.249888,0,0);-webkit-transform:matrix(0.508631,-0.015259,0.007497,0.249888,0,0);}
.m71_c00443{transform:matrix(0.612819,-0.014708,0.005998,0.249928,0,0);-ms-transform:matrix(0.612819,-0.014708,0.005998,0.249928,0,0);-webkit-transform:matrix(0.612819,-0.014708,0.005998,0.249928,0,0);}
.m6d_c00443{transform:matrix(0.662008,-0.013240,0.004999,0.249950,0,0);-ms-transform:matrix(0.662008,-0.013240,0.004999,0.249950,0,0);-webkit-transform:matrix(0.662008,-0.013240,0.004999,0.249950,0,0);}
.m36_c00443{transform:matrix(0.665810,-0.019974,0.007497,0.249888,0,0);-ms-transform:matrix(0.665810,-0.019974,0.007497,0.249888,0,0);-webkit-transform:matrix(0.665810,-0.019974,0.007497,0.249888,0,0);}
.m23_c00443{transform:matrix(0.699429,-0.021682,0.007746,0.249880,0,0);-ms-transform:matrix(0.699429,-0.021682,0.007746,0.249880,0,0);-webkit-transform:matrix(0.699429,-0.021682,0.007746,0.249880,0,0);}
.m84_c00443{transform:matrix(0.778780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.778780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.778780,0.000000,0.000000,0.250000,0,0);}
.m1a_c00443{transform:matrix(0.785303,-0.024344,0.007746,0.249880,0,0);-ms-transform:matrix(0.785303,-0.024344,0.007746,0.249880,0,0);-webkit-transform:matrix(0.785303,-0.024344,0.007746,0.249880,0,0);}
.m70_c00443{transform:matrix(0.823708,-0.019769,0.005998,0.249928,0,0);-ms-transform:matrix(0.823708,-0.019769,0.005998,0.249928,0,0);-webkit-transform:matrix(0.823708,-0.019769,0.005998,0.249928,0,0);}
.m6f_c00443{transform:matrix(0.837584,-0.020102,0.005998,0.249928,0,0);-ms-transform:matrix(0.837584,-0.020102,0.005998,0.249928,0,0);-webkit-transform:matrix(0.837584,-0.020102,0.005998,0.249928,0,0);}
.m83_c00443{transform:matrix(0.871829,-0.015693,0.004499,0.249960,0,0);-ms-transform:matrix(0.871829,-0.015693,0.004499,0.249960,0,0);-webkit-transform:matrix(0.871829,-0.015693,0.004499,0.249960,0,0);}
.m72_c00443{transform:matrix(1.090051,-0.026161,0.005998,0.249928,0,0);-ms-transform:matrix(1.090051,-0.026161,0.005998,0.249928,0,0);-webkit-transform:matrix(1.090051,-0.026161,0.005998,0.249928,0,0);}
.m19_c00443{transform:matrix(1.114065,-0.034536,0.007746,0.249880,0,0);-ms-transform:matrix(1.114065,-0.034536,0.007746,0.249880,0,0);-webkit-transform:matrix(1.114065,-0.034536,0.007746,0.249880,0,0);}
.v0_c00443{vertical-align:0.000000px;}
.ls0_c00443{letter-spacing:0.000000px;}
.sc__c00443{text-shadow:none;}
.sc0_c00443{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__c00443{-webkit-text-stroke:0px transparent;}
.sc0_c00443{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00443{word-spacing:0.000000px;}
.fc0_c00443{color:transparent;}
.fs9_c00443{font-size:18.000000px;}
.fsa_c00443{font-size:24.006911px;}
.fs4_c00443{font-size:78.035092px;}
.fsb_c00443{font-size:84.013607px;}
.fs6_c00443{font-size:84.028387px;}
.fs3_c00443{font-size:84.040352px;}
.fs0_c00443{font-size:90.043235px;}
.fs8_c00443{font-size:96.019198px;}
.fs2_c00443{font-size:96.046117px;}
.fs5_c00443{font-size:102.045890px;}
.fs1_c00443{font-size:108.051882px;}
.fs7_c00443{font-size:114.011171px;}
.y0_c00443{bottom:0.000000px;}
.y7c_c00443{bottom:712.806000px;}
.y7d_c00443{bottom:713.612976px;}
.y7e_c00443{bottom:715.206111px;}
.y7f_c00443{bottom:716.012925px;}
.y80_c00443{bottom:716.602038px;}
.y81_c00443{bottom:717.208053px;}
.y82_c00443{bottom:718.504188px;}
.y83_c00443{bottom:719.604168px;}
.y84_c00443{bottom:719.969964px;}
.y85_c00443{bottom:721.141116px;}
.y86_c00443{bottom:721.988025px;}
.y70_c00443{bottom:748.960500px;}
.y71_c00443{bottom:750.081540px;}
.y72_c00443{bottom:750.870768px;}
.y73_c00443{bottom:751.233540px;}
.y74_c00443{bottom:753.306528px;}
.y75_c00443{bottom:753.589848px;}
.y76_c00443{bottom:753.850668px;}
.y77_c00443{bottom:754.108716px;}
.y78_c00443{bottom:754.472568px;}
.y79_c00443{bottom:754.776408px;}
.y7a_c00443{bottom:755.230512px;}
.y7b_c00443{bottom:755.444280px;}
.y87_c00443{bottom:756.267000px;}
.y6f_c00443{bottom:764.370000px;}
.y66_c00443{bottom:783.552000px;}
.y67_c00443{bottom:785.428770px;}
.y68_c00443{bottom:786.305460px;}
.y69_c00443{bottom:790.099710px;}
.y6a_c00443{bottom:790.538850px;}
.y6b_c00443{bottom:791.650800px;}
.y6c_c00443{bottom:792.315420px;}
.y6d_c00443{bottom:793.859940px;}
.y6e_c00443{bottom:794.984100px;}
.y5a_c00443{bottom:821.476500px;}
.y5b_c00443{bottom:821.951205px;}
.y5c_c00443{bottom:822.657834px;}
.y5d_c00443{bottom:823.080732px;}
.y5e_c00443{bottom:823.633305px;}
.y5f_c00443{bottom:824.549724px;}
.y60_c00443{bottom:824.843682px;}
.y61_c00443{bottom:826.700691px;}
.y62_c00443{bottom:827.062374px;}
.y63_c00443{bottom:827.667699px;}
.y64_c00443{bottom:828.054708px;}
.y65_c00443{bottom:828.679353px;}
.y50_c00443{bottom:853.656000px;}
.y51_c00443{bottom:854.358507px;}
.y52_c00443{bottom:855.461739px;}
.y53_c00443{bottom:856.840467px;}
.y54_c00443{bottom:859.188657px;}
.y55_c00443{bottom:860.352924px;}
.y56_c00443{bottom:862.102425px;}
.y57_c00443{bottom:865.192200px;}
.y58_c00443{bottom:867.581496px;}
.y59_c00443{bottom:868.730748px;}
.y48_c00443{bottom:939.073605px;}
.y49_c00443{bottom:945.664320px;}
.y4a_c00443{bottom:950.242380px;}
.y4b_c00443{bottom:951.586425px;}
.y4c_c00443{bottom:954.442560px;}
.y4d_c00443{bottom:956.612460px;}
.y4e_c00443{bottom:957.885720px;}
.y4f_c00443{bottom:960.265950px;}
.y37_c00443{bottom:975.838500px;}
.y38_c00443{bottom:977.279580px;}
.y39_c00443{bottom:978.265080px;}
.y3a_c00443{bottom:979.637085px;}
.y3b_c00443{bottom:981.007065px;}
.y3c_c00443{bottom:982.367505px;}
.y3d_c00443{bottom:983.347875px;}
.y3e_c00443{bottom:984.665385px;}
.y3f_c00443{bottom:985.445955px;}
.y40_c00443{bottom:986.652900px;}
.y41_c00443{bottom:988.618860px;}
.y42_c00443{bottom:989.340570px;}
.y43_c00443{bottom:990.500310px;}
.y44_c00443{bottom:991.632645px;}
.y45_c00443{bottom:992.207880px;}
.y46_c00443{bottom:994.665690px;}
.y47_c00443{bottom:996.360255px;}
.y26_c00443{bottom:1012.985281px;}
.y27_c00443{bottom:1014.497691px;}
.y28_c00443{bottom:1016.600094px;}
.y29_c00443{bottom:1017.252408px;}
.y2a_c00443{bottom:1018.097589px;}
.y2b_c00443{bottom:1019.807469px;}
.y2c_c00443{bottom:1022.094660px;}
.y2d_c00443{bottom:1023.086139px;}
.y2e_c00443{bottom:1024.254036px;}
.y2f_c00443{bottom:1024.460934px;}
.y30_c00443{bottom:1024.958626px;}
.y31_c00443{bottom:1026.229519px;}
.y32_c00443{bottom:1026.898282px;}
.y33_c00443{bottom:1028.657521px;}
.y34_c00443{bottom:1029.875521px;}
.y35_c00443{bottom:1030.877788px;}
.y36_c00443{bottom:1032.349395px;}
.y1b_c00443{bottom:1050.459054px;}
.y1c_c00443{bottom:1054.221229px;}
.y1d_c00443{bottom:1054.250664px;}
.y1e_c00443{bottom:1057.661392px;}
.y1f_c00443{bottom:1059.014868px;}
.y20_c00443{bottom:1059.759100px;}
.y21_c00443{bottom:1062.801968px;}
.y22_c00443{bottom:1063.728991px;}
.y23_c00443{bottom:1067.285358px;}
.y24_c00443{bottom:1067.681863px;}
.y25_c00443{bottom:1069.249425px;}
.yf_c00443{bottom:1086.504195px;}
.y10_c00443{bottom:1088.346766px;}
.y11_c00443{bottom:1089.017883px;}
.y12_c00443{bottom:1091.836905px;}
.y13_c00443{bottom:1093.300674px;}
.y14_c00443{bottom:1094.665168px;}
.y15_c00443{bottom:1096.358967px;}
.y16_c00443{bottom:1097.358516px;}
.y17_c00443{bottom:1099.257292px;}
.y18_c00443{bottom:1099.989741px;}
.y19_c00443{bottom:1101.076208px;}
.y1a_c00443{bottom:1101.558051px;}
.y1_c00443{bottom:1120.570500px;}
.y2_c00443{bottom:1121.666644px;}
.y3_c00443{bottom:1123.702043px;}
.y4_c00443{bottom:1124.582241px;}
.y5_c00443{bottom:1126.533892px;}
.y6_c00443{bottom:1127.059854px;}
.y7_c00443{bottom:1129.470507px;}
.y8_c00443{bottom:1130.649096px;}
.y9_c00443{bottom:1133.184508px;}
.ya_c00443{bottom:1136.105778px;}
.yb_c00443{bottom:1137.443304px;}
.yc_c00443{bottom:1138.484625px;}
.yd_c00443{bottom:1140.395310px;}
.ye_c00443{bottom:1142.977548px;}
.hb_c00443{height:18.000000px;}
.hc_c00443{height:24.006911px;}
.h6_c00443{height:78.035092px;}
.hd_c00443{height:84.013607px;}
.h8_c00443{height:84.028387px;}
.h5_c00443{height:84.040352px;}
.h2_c00443{height:90.043235px;}
.ha_c00443{height:96.019198px;}
.h4_c00443{height:96.046117px;}
.h7_c00443{height:102.045890px;}
.h3_c00443{height:108.051882px;}
.h9_c00443{height:114.011171px;}
.h1_c00443{height:1251.000000px;}
.h0_c00443{height:1251.150000px;}
.w0_c00443{width:915.000000px;}
.x0_c00443{left:0.000000px;}
.x1_c00443{left:30.891000px;}
.x33_c00443{left:45.943500px;}
.x24_c00443{left:47.425314px;}
.x5a_c00443{left:53.022000px;}
.x2_c00443{left:66.250500px;}
.x1b_c00443{left:72.636447px;}
.xf_c00443{left:80.338515px;}
.x43_c00443{left:82.732035px;}
.x34_c00443{left:93.979500px;}
.x25_c00443{left:99.603069px;}
.x48_c00443{left:108.858000px;}
.x63_c00443{left:112.348500px;}
.x35_c00443{left:126.829500px;}
.x3_c00443{left:131.908500px;}
.x49_c00443{left:135.877500px;}
.x10_c00443{left:146.121106px;}
.x64_c00443{left:159.058500px;}
.x4_c00443{left:160.302000px;}
.x11_c00443{left:170.094838px;}
.x26_c00443{left:172.120579px;}
.x4a_c00443{left:178.309500px;}
.x5b_c00443{left:190.695000px;}
.x65_c00443{left:191.943000px;}
.x1c_c00443{left:193.996947px;}
.x6e_c00443{left:204.981000px;}
.x66_c00443{left:207.058500px;}
.x51_c00443{left:214.734000px;}
.x36_c00443{left:218.229000px;}
.x5_c00443{left:223.258500px;}
.x4b_c00443{left:231.337500px;}
.x6_c00443{left:240.225000px;}
.x52_c00443{left:248.641500px;}
.x6f_c00443{left:249.813000px;}
.x37_c00443{left:263.577000px;}
.x12_c00443{left:270.766185px;}
.x27_c00443{left:282.752461px;}
.x44_c00443{left:288.710205px;}
.x67_c00443{left:293.433000px;}
.x38_c00443{left:296.256000px;}
.x53_c00443{left:299.115000px;}
.x1d_c00443{left:304.969947px;}
.x68_c00443{left:316.105500px;}
.x7_c00443{left:317.988000px;}
.x4c_c00443{left:321.652500px;}
.x13_c00443{left:323.070067px;}
.x69_c00443{left:326.857500px;}
.x54_c00443{left:329.322000px;}
.x70_c00443{left:338.320500px;}
.x39_c00443{left:340.173000px;}
.x6a_c00443{left:342.018000px;}
.x1e_c00443{left:348.630447px;}
.x6b_c00443{left:354.678000px;}
.x8_c00443{left:356.007000px;}
.x62_c00443{left:357.210000px;}
.x28_c00443{left:361.618344px;}
.x3a_c00443{left:366.192000px;}
.x55_c00443{left:368.791500px;}
.x14_c00443{left:371.784078px;}
.x6c_c00443{left:373.599000px;}
.x5c_c00443{left:380.407500px;}
.x6d_c00443{left:382.506000px;}
.x29_c00443{left:395.829483px;}
.x5d_c00443{left:402.364500px;}
.x3b_c00443{left:406.423500px;}
.x71_c00443{left:415.872000px;}
.x15_c00443{left:432.283204px;}
.x4d_c00443{left:433.720500px;}
.x2a_c00443{left:436.118994px;}
.x9_c00443{left:437.794500px;}
.x2b_c00443{left:443.277459px;}
.x72_c00443{left:449.539500px;}
.x56_c00443{left:455.247000px;}
.x5e_c00443{left:457.962000px;}
.x77_c00443{left:459.000000px;}
.x2c_c00443{left:460.446028px;}
.x16_c00443{left:467.965506px;}
.x1f_c00443{left:470.794947px;}
.x3c_c00443{left:471.955500px;}
.x45_c00443{left:473.752590px;}
.x5f_c00443{left:491.193000px;}
.x3d_c00443{left:496.012500px;}
.x20_c00443{left:500.698947px;}
.x2d_c00443{left:504.251725px;}
.x73_c00443{left:521.547000px;}
.x2e_c00443{left:527.326167px;}
.xa_c00443{left:532.029000px;}
.x3e_c00443{left:534.670500px;}
.x17_c00443{left:535.803330px;}
.x4e_c00443{left:552.558000px;}
.x18_c00443{left:561.949248px;}
.x46_c00443{left:563.001735px;}
.x60_c00443{left:568.419000px;}
.x3f_c00443{left:572.415000px;}
.xb_c00443{left:575.175000px;}
.x74_c00443{left:582.657000px;}
.x2f_c00443{left:587.998934px;}
.x40_c00443{left:591.589500px;}
.x19_c00443{left:600.774375px;}
.x75_c00443{left:602.979000px;}
.xc_c00443{left:608.766000px;}
.x57_c00443{left:613.725000px;}
.x21_c00443{left:615.420447px;}
.x1a_c00443{left:617.964456px;}
.x61_c00443{left:624.627000px;}
.x22_c00443{left:628.210947px;}
.x30_c00443{left:630.001537px;}
.x4f_c00443{left:644.454000px;}
.x58_c00443{left:656.962500px;}
.x31_c00443{left:664.560676px;}
.x76_c00443{left:668.043000px;}
.xd_c00443{left:670.401000px;}
.x41_c00443{left:673.516500px;}
.x23_c00443{left:678.777447px;}
.x59_c00443{left:684.606000px;}
.x50_c00443{left:688.656000px;}
.x32_c00443{left:715.325339px;}
.x42_c00443{left:730.002000px;}
.x47_c00443{left:745.003845px;}
.xe_c00443{left:753.699000px;}
@media print{
.v0_c00443{vertical-align:0.000000pt;}
.ls0_c00443{letter-spacing:0.000000pt;}
.ws0_c00443{word-spacing:0.000000pt;}
.fs9_c00443{font-size:16.000000pt;}
.fsa_c00443{font-size:21.339476pt;}
.fs4_c00443{font-size:69.364526pt;}
.fsb_c00443{font-size:74.678762pt;}
.fs6_c00443{font-size:74.691900pt;}
.fs3_c00443{font-size:74.702535pt;}
.fs0_c00443{font-size:80.038431pt;}
.fs8_c00443{font-size:85.350398pt;}
.fs2_c00443{font-size:85.374326pt;}
.fs5_c00443{font-size:90.707457pt;}
.fs1_c00443{font-size:96.046117pt;}
.fs7_c00443{font-size:101.343264pt;}
.y0_c00443{bottom:0.000000pt;}
.y7c_c00443{bottom:633.605333pt;}
.y7d_c00443{bottom:634.322645pt;}
.y7e_c00443{bottom:635.738765pt;}
.y7f_c00443{bottom:636.455933pt;}
.y80_c00443{bottom:636.979589pt;}
.y81_c00443{bottom:637.518269pt;}
.y82_c00443{bottom:638.670389pt;}
.y83_c00443{bottom:639.648149pt;}
.y84_c00443{bottom:639.973301pt;}
.y85_c00443{bottom:641.014325pt;}
.y86_c00443{bottom:641.767133pt;}
.y70_c00443{bottom:665.742667pt;}
.y71_c00443{bottom:666.739147pt;}
.y72_c00443{bottom:667.440683pt;}
.y73_c00443{bottom:667.763147pt;}
.y74_c00443{bottom:669.605803pt;}
.y75_c00443{bottom:669.857643pt;}
.y76_c00443{bottom:670.089483pt;}
.y77_c00443{bottom:670.318859pt;}
.y78_c00443{bottom:670.642283pt;}
.y79_c00443{bottom:670.912363pt;}
.y7a_c00443{bottom:671.316011pt;}
.y7b_c00443{bottom:671.506027pt;}
.y87_c00443{bottom:672.237333pt;}
.y6f_c00443{bottom:679.440000pt;}
.y66_c00443{bottom:696.490667pt;}
.y67_c00443{bottom:698.158907pt;}
.y68_c00443{bottom:698.938187pt;}
.y69_c00443{bottom:702.310853pt;}
.y6a_c00443{bottom:702.701200pt;}
.y6b_c00443{bottom:703.689600pt;}
.y6c_c00443{bottom:704.280373pt;}
.y6d_c00443{bottom:705.653280pt;}
.y6e_c00443{bottom:706.652533pt;}
.y5a_c00443{bottom:730.201333pt;}
.y5b_c00443{bottom:730.623293pt;}
.y5c_c00443{bottom:731.251408pt;}
.y5d_c00443{bottom:731.627317pt;}
.y5e_c00443{bottom:732.118493pt;}
.y5f_c00443{bottom:732.933088pt;}
.y60_c00443{bottom:733.194384pt;}
.y61_c00443{bottom:734.845059pt;}
.y62_c00443{bottom:735.166555pt;}
.y63_c00443{bottom:735.704621pt;}
.y64_c00443{bottom:736.048629pt;}
.y65_c00443{bottom:736.603869pt;}
.y50_c00443{bottom:758.805333pt;}
.y51_c00443{bottom:759.429784pt;}
.y52_c00443{bottom:760.410435pt;}
.y53_c00443{bottom:761.635971pt;}
.y54_c00443{bottom:763.723251pt;}
.y55_c00443{bottom:764.758155pt;}
.y56_c00443{bottom:766.313267pt;}
.y57_c00443{bottom:769.059733pt;}
.y58_c00443{bottom:771.183552pt;}
.y59_c00443{bottom:772.205109pt;}
.y48_c00443{bottom:834.732093pt;}
.y49_c00443{bottom:840.590507pt;}
.y4a_c00443{bottom:844.659893pt;}
.y4b_c00443{bottom:845.854600pt;}
.y4c_c00443{bottom:848.393387pt;}
.y4d_c00443{bottom:850.322187pt;}
.y4e_c00443{bottom:851.453973pt;}
.y4f_c00443{bottom:853.569733pt;}
.y37_c00443{bottom:867.412000pt;}
.y38_c00443{bottom:868.692960pt;}
.y39_c00443{bottom:869.568960pt;}
.y3a_c00443{bottom:870.788520pt;}
.y3b_c00443{bottom:872.006280pt;}
.y3c_c00443{bottom:873.215560pt;}
.y3d_c00443{bottom:874.087000pt;}
.y3e_c00443{bottom:875.258120pt;}
.y3f_c00443{bottom:875.951960pt;}
.y40_c00443{bottom:877.024800pt;}
.y41_c00443{bottom:878.772320pt;}
.y42_c00443{bottom:879.413840pt;}
.y43_c00443{bottom:880.444720pt;}
.y44_c00443{bottom:881.451240pt;}
.y45_c00443{bottom:881.962560pt;}
.y46_c00443{bottom:884.147280pt;}
.y47_c00443{bottom:885.653560pt;}
.y26_c00443{bottom:900.431361pt;}
.y27_c00443{bottom:901.775725pt;}
.y28_c00443{bottom:903.644528pt;}
.y29_c00443{bottom:904.224363pt;}
.y2a_c00443{bottom:904.975635pt;}
.y2b_c00443{bottom:906.495528pt;}
.y2c_c00443{bottom:908.528587pt;}
.y2d_c00443{bottom:909.409901pt;}
.y2e_c00443{bottom:910.448032pt;}
.y2f_c00443{bottom:910.631941pt;}
.y30_c00443{bottom:911.074335pt;}
.y31_c00443{bottom:912.204017pt;}
.y32_c00443{bottom:912.798473pt;}
.y33_c00443{bottom:914.362241pt;}
.y34_c00443{bottom:915.444908pt;}
.y35_c00443{bottom:916.335812pt;}
.y36_c00443{bottom:917.643907pt;}
.y1b_c00443{bottom:933.741381pt;}
.y1c_c00443{bottom:937.085537pt;}
.y1d_c00443{bottom:937.111701pt;}
.y1e_c00443{bottom:940.143460pt;}
.y1f_c00443{bottom:941.346549pt;}
.y20_c00443{bottom:942.008089pt;}
.y21_c00443{bottom:944.712860pt;}
.y22_c00443{bottom:945.536881pt;}
.y23_c00443{bottom:948.698096pt;}
.y24_c00443{bottom:949.050545pt;}
.y25_c00443{bottom:950.443933pt;}
.yf_c00443{bottom:965.781507pt;}
.y10_c00443{bottom:967.419348pt;}
.y11_c00443{bottom:968.015896pt;}
.y12_c00443{bottom:970.521693pt;}
.y13_c00443{bottom:971.822821pt;}
.y14_c00443{bottom:973.035705pt;}
.y15_c00443{bottom:974.541304pt;}
.y16_c00443{bottom:975.429792pt;}
.y17_c00443{bottom:977.117593pt;}
.y18_c00443{bottom:977.768659pt;}
.y19_c00443{bottom:978.734407pt;}
.y1a_c00443{bottom:979.162712pt;}
.y1_c00443{bottom:996.062667pt;}
.y2_c00443{bottom:997.037017pt;}
.y3_c00443{bottom:998.846260pt;}
.y4_c00443{bottom:999.628659pt;}
.y5_c00443{bottom:1001.363460pt;}
.y6_c00443{bottom:1001.830981pt;}
.y7_c00443{bottom:1003.973784pt;}
.y8_c00443{bottom:1005.021419pt;}
.y9_c00443{bottom:1007.275119pt;}
.ya_c00443{bottom:1009.871803pt;}
.yb_c00443{bottom:1011.060715pt;}
.yc_c00443{bottom:1011.986333pt;}
.yd_c00443{bottom:1013.684720pt;}
.ye_c00443{bottom:1015.980043pt;}
.hb_c00443{height:16.000000pt;}
.hc_c00443{height:21.339476pt;}
.h6_c00443{height:69.364526pt;}
.hd_c00443{height:74.678762pt;}
.h8_c00443{height:74.691900pt;}
.h5_c00443{height:74.702535pt;}
.h2_c00443{height:80.038431pt;}
.ha_c00443{height:85.350398pt;}
.h4_c00443{height:85.374326pt;}
.h7_c00443{height:90.707457pt;}
.h3_c00443{height:96.046117pt;}
.h9_c00443{height:101.343264pt;}
.h1_c00443{height:1112.000000pt;}
.h0_c00443{height:1112.133333pt;}
.w0_c00443{width:813.333333pt;}
.x0_c00443{left:0.000000pt;}
.x1_c00443{left:27.458667pt;}
.x33_c00443{left:40.838667pt;}
.x24_c00443{left:42.155835pt;}
.x5a_c00443{left:47.130667pt;}
.x2_c00443{left:58.889333pt;}
.x1b_c00443{left:64.565731pt;}
.xf_c00443{left:71.412013pt;}
.x43_c00443{left:73.539587pt;}
.x34_c00443{left:83.537333pt;}
.x25_c00443{left:88.536061pt;}
.x48_c00443{left:96.762667pt;}
.x63_c00443{left:99.865333pt;}
.x35_c00443{left:112.737333pt;}
.x3_c00443{left:117.252000pt;}
.x49_c00443{left:120.780000pt;}
.x10_c00443{left:129.885428pt;}
.x64_c00443{left:141.385333pt;}
.x4_c00443{left:142.490667pt;}
.x11_c00443{left:151.195412pt;}
.x26_c00443{left:152.996071pt;}
.x4a_c00443{left:158.497333pt;}
.x5b_c00443{left:169.506667pt;}
.x65_c00443{left:170.616000pt;}
.x1c_c00443{left:172.441731pt;}
.x6e_c00443{left:182.205333pt;}
.x66_c00443{left:184.052000pt;}
.x51_c00443{left:190.874667pt;}
.x36_c00443{left:193.981333pt;}
.x5_c00443{left:198.452000pt;}
.x4b_c00443{left:205.633333pt;}
.x6_c00443{left:213.533333pt;}
.x52_c00443{left:221.014667pt;}
.x6f_c00443{left:222.056000pt;}
.x37_c00443{left:234.290667pt;}
.x12_c00443{left:240.681053pt;}
.x27_c00443{left:251.335521pt;}
.x44_c00443{left:256.631293pt;}
.x67_c00443{left:260.829333pt;}
.x38_c00443{left:263.338667pt;}
.x53_c00443{left:265.880000pt;}
.x1d_c00443{left:271.084397pt;}
.x68_c00443{left:280.982667pt;}
.x7_c00443{left:282.656000pt;}
.x4c_c00443{left:285.913333pt;}
.x13_c00443{left:287.173393pt;}
.x69_c00443{left:290.540000pt;}
.x54_c00443{left:292.730667pt;}
.x70_c00443{left:300.729333pt;}
.x39_c00443{left:302.376000pt;}
.x6a_c00443{left:304.016000pt;}
.x1e_c00443{left:309.893731pt;}
.x6b_c00443{left:315.269333pt;}
.x8_c00443{left:316.450667pt;}
.x62_c00443{left:317.520000pt;}
.x28_c00443{left:321.438528pt;}
.x3a_c00443{left:325.504000pt;}
.x55_c00443{left:327.814667pt;}
.x14_c00443{left:330.474736pt;}
.x6c_c00443{left:332.088000pt;}
.x5c_c00443{left:338.140000pt;}
.x6d_c00443{left:340.005333pt;}
.x29_c00443{left:351.848429pt;}
.x5d_c00443{left:357.657333pt;}
.x3b_c00443{left:361.265333pt;}
.x71_c00443{left:369.664000pt;}
.x15_c00443{left:384.251737pt;}
.x4d_c00443{left:385.529333pt;}
.x2a_c00443{left:387.661328pt;}
.x9_c00443{left:389.150667pt;}
.x2b_c00443{left:394.024408pt;}
.x72_c00443{left:399.590667pt;}
.x56_c00443{left:404.664000pt;}
.x5e_c00443{left:407.077333pt;}
.x77_c00443{left:408.000000pt;}
.x2c_c00443{left:409.285359pt;}
.x16_c00443{left:415.969339pt;}
.x1f_c00443{left:418.484397pt;}
.x3c_c00443{left:419.516000pt;}
.x45_c00443{left:421.113413pt;}
.x5f_c00443{left:436.616000pt;}
.x3d_c00443{left:440.900000pt;}
.x20_c00443{left:445.065731pt;}
.x2d_c00443{left:448.223756pt;}
.x73_c00443{left:463.597333pt;}
.x2e_c00443{left:468.734371pt;}
.xa_c00443{left:472.914667pt;}
.x3e_c00443{left:475.262667pt;}
.x17_c00443{left:476.269627pt;}
.x4e_c00443{left:491.162667pt;}
.x18_c00443{left:499.510443pt;}
.x46_c00443{left:500.445987pt;}
.x60_c00443{left:505.261333pt;}
.x3f_c00443{left:508.813333pt;}
.xb_c00443{left:511.266667pt;}
.x74_c00443{left:517.917333pt;}
.x2f_c00443{left:522.665719pt;}
.x40_c00443{left:525.857333pt;}
.x19_c00443{left:534.021667pt;}
.x75_c00443{left:535.981333pt;}
.xc_c00443{left:541.125333pt;}
.x57_c00443{left:545.533333pt;}
.x21_c00443{left:547.040397pt;}
.x1a_c00443{left:549.301739pt;}
.x61_c00443{left:555.224000pt;}
.x22_c00443{left:558.409731pt;}
.x30_c00443{left:560.001367pt;}
.x4f_c00443{left:572.848000pt;}
.x58_c00443{left:583.966667pt;}
.x31_c00443{left:590.720601pt;}
.x76_c00443{left:593.816000pt;}
.xd_c00443{left:595.912000pt;}
.x41_c00443{left:598.681333pt;}
.x23_c00443{left:603.357731pt;}
.x59_c00443{left:608.538667pt;}
.x50_c00443{left:612.138667pt;}
.x32_c00443{left:635.844745pt;}
.x42_c00443{left:648.890667pt;}
.x47_c00443{left:662.225640pt;}
.xe_c00443{left:669.954667pt;}
}





/* 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_c00444 {
    display:none;
  }
  .loading-indicator_c00444.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00444 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_c00444 { 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_c00444" -> "#page-container .classname_c00444")
 */
.pf_c00444 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00444 { /* 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_c00444.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00444 { /* 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_c00444 { /* 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_c00444 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00444 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00444 {overflow:visible;}
  }
}
.c_c00444 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00444 { /* 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_c00444:after { /* webkit #35443 */
  content: '';
}
.t_c00444:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00444 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 */
}
.__c00444 { /* 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_c00444 { /* info for Javascript */
  display:none;
}
.l_c00444 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00444 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00444 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00444: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_c00444 {
    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_c00444.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00444.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_c00444 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00444{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00444;src:url('chunks/assets/font_c605e72f209fc835e906f064.woff2')format("woff");}.ff1_c00444{font-family:ff1_c00444;line-height:1.000000;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;}
.m34_c00444{transform:matrix(0.154987,-0.002015,0.003250,0.249979,0,0);-ms-transform:matrix(0.154987,-0.002015,0.003250,0.249979,0,0);-webkit-transform:matrix(0.154987,-0.002015,0.003250,0.249979,0,0);}
.m4c_c00444{transform:matrix(0.159450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159450,0.000000,0.000000,0.250000,0,0);}
.m41_c00444{transform:matrix(0.160538,-0.000803,0.001250,0.249997,0,0);-ms-transform:matrix(0.160538,-0.000803,0.001250,0.249997,0,0);-webkit-transform:matrix(0.160538,-0.000803,0.001250,0.249997,0,0);}
.m3f_c00444{transform:matrix(0.170483,-0.000852,0.001250,0.249997,0,0);-ms-transform:matrix(0.170483,-0.000852,0.001250,0.249997,0,0);-webkit-transform:matrix(0.170483,-0.000852,0.001250,0.249997,0,0);}
.m48_c00444{transform:matrix(0.170833,-0.000854,0.001250,0.249997,0,0);-ms-transform:matrix(0.170833,-0.000854,0.001250,0.249997,0,0);-webkit-transform:matrix(0.170833,-0.000854,0.001250,0.249997,0,0);}
.m49_c00444{transform:matrix(0.173503,-0.000868,0.001250,0.249997,0,0);-ms-transform:matrix(0.173503,-0.000868,0.001250,0.249997,0,0);-webkit-transform:matrix(0.173503,-0.000868,0.001250,0.249997,0,0);}
.m43_c00444{transform:matrix(0.175523,-0.000878,0.001250,0.249997,0,0);-ms-transform:matrix(0.175523,-0.000878,0.001250,0.249997,0,0);-webkit-transform:matrix(0.175523,-0.000878,0.001250,0.249997,0,0);}
.m45_c00444{transform:matrix(0.176138,-0.000881,0.001250,0.249997,0,0);-ms-transform:matrix(0.176138,-0.000881,0.001250,0.249997,0,0);-webkit-transform:matrix(0.176138,-0.000881,0.001250,0.249997,0,0);}
.m47_c00444{transform:matrix(0.180833,-0.000904,0.001250,0.249997,0,0);-ms-transform:matrix(0.180833,-0.000904,0.001250,0.249997,0,0);-webkit-transform:matrix(0.180833,-0.000904,0.001250,0.249997,0,0);}
.m25_c00444{transform:matrix(0.181930,-0.002365,0.003250,0.249979,0,0);-ms-transform:matrix(0.181930,-0.002365,0.003250,0.249979,0,0);-webkit-transform:matrix(0.181930,-0.002365,0.003250,0.249979,0,0);}
.m42_c00444{transform:matrix(0.182193,-0.000911,0.001250,0.249997,0,0);-ms-transform:matrix(0.182193,-0.000911,0.001250,0.249997,0,0);-webkit-transform:matrix(0.182193,-0.000911,0.001250,0.249997,0,0);}
.m35_c00444{transform:matrix(0.183649,-0.002387,0.003250,0.249979,0,0);-ms-transform:matrix(0.183649,-0.002387,0.003250,0.249979,0,0);-webkit-transform:matrix(0.183649,-0.002387,0.003250,0.249979,0,0);}
.m46_c00444{transform:matrix(0.184343,-0.000922,0.001250,0.249997,0,0);-ms-transform:matrix(0.184343,-0.000922,0.001250,0.249997,0,0);-webkit-transform:matrix(0.184343,-0.000922,0.001250,0.249997,0,0);}
.m44_c00444{transform:matrix(0.185283,-0.000926,0.001250,0.249997,0,0);-ms-transform:matrix(0.185283,-0.000926,0.001250,0.249997,0,0);-webkit-transform:matrix(0.185283,-0.000926,0.001250,0.249997,0,0);}
.m23_c00444{transform:matrix(0.186929,-0.002430,0.003250,0.249979,0,0);-ms-transform:matrix(0.186929,-0.002430,0.003250,0.249979,0,0);-webkit-transform:matrix(0.186929,-0.002430,0.003250,0.249979,0,0);}
.m29_c00444{transform:matrix(0.188469,-0.002450,0.003250,0.249979,0,0);-ms-transform:matrix(0.188469,-0.002450,0.003250,0.249979,0,0);-webkit-transform:matrix(0.188469,-0.002450,0.003250,0.249979,0,0);}
.m73_c00444{transform:matrix(0.189010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189010,0.000000,0.000000,0.250000,0,0);}
.m1c_c00444{transform:matrix(0.190249,-0.002473,0.003250,0.249979,0,0);-ms-transform:matrix(0.190249,-0.002473,0.003250,0.249979,0,0);-webkit-transform:matrix(0.190249,-0.002473,0.003250,0.249979,0,0);}
.m1d_c00444{transform:matrix(0.191629,-0.002491,0.003250,0.249979,0,0);-ms-transform:matrix(0.191629,-0.002491,0.003250,0.249979,0,0);-webkit-transform:matrix(0.191629,-0.002491,0.003250,0.249979,0,0);}
.m40_c00444{transform:matrix(0.192608,-0.000963,0.001250,0.249997,0,0);-ms-transform:matrix(0.192608,-0.000963,0.001250,0.249997,0,0);-webkit-transform:matrix(0.192608,-0.000963,0.001250,0.249997,0,0);}
.m4a_c00444{transform:matrix(0.196003,-0.000980,0.001250,0.249997,0,0);-ms-transform:matrix(0.196003,-0.000980,0.001250,0.249997,0,0);-webkit-transform:matrix(0.196003,-0.000980,0.001250,0.249997,0,0);}
.m22_c00444{transform:matrix(0.196563,-0.002555,0.003250,0.249979,0,0);-ms-transform:matrix(0.196563,-0.002555,0.003250,0.249979,0,0);-webkit-transform:matrix(0.196563,-0.002555,0.003250,0.249979,0,0);}
.m1b_c00444{transform:matrix(0.197368,-0.002566,0.003250,0.249979,0,0);-ms-transform:matrix(0.197368,-0.002566,0.003250,0.249979,0,0);-webkit-transform:matrix(0.197368,-0.002566,0.003250,0.249979,0,0);}
.m4d_c00444{transform:matrix(0.197990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197990,0.000000,0.000000,0.250000,0,0);}
.m27_c00444{transform:matrix(0.200533,-0.002607,0.003250,0.249979,0,0);-ms-transform:matrix(0.200533,-0.002607,0.003250,0.249979,0,0);-webkit-transform:matrix(0.200533,-0.002607,0.003250,0.249979,0,0);}
.m82_c00444{transform:matrix(0.200836,-0.004218,0.005249,0.249945,0,0);-ms-transform:matrix(0.200836,-0.004218,0.005249,0.249945,0,0);-webkit-transform:matrix(0.200836,-0.004218,0.005249,0.249945,0,0);}
.m75_c00444{transform:matrix(0.201830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201830,0.000000,0.000000,0.250000,0,0);}
.m86_c00444{transform:matrix(0.202235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202235,0.000000,0.000000,0.250000,0,0);}
.m21_c00444{transform:matrix(0.202413,-0.002631,0.003250,0.249979,0,0);-ms-transform:matrix(0.202413,-0.002631,0.003250,0.249979,0,0);-webkit-transform:matrix(0.202413,-0.002631,0.003250,0.249979,0,0);}
.m3_c00444{transform:matrix(0.203273,-0.002643,0.003250,0.249979,0,0);-ms-transform:matrix(0.203273,-0.002643,0.003250,0.249979,0,0);-webkit-transform:matrix(0.203273,-0.002643,0.003250,0.249979,0,0);}
.m2f_c00444{transform:matrix(0.205473,-0.002671,0.003250,0.249979,0,0);-ms-transform:matrix(0.205473,-0.002671,0.003250,0.249979,0,0);-webkit-transform:matrix(0.205473,-0.002671,0.003250,0.249979,0,0);}
.m24_c00444{transform:matrix(0.206383,-0.002683,0.003250,0.249979,0,0);-ms-transform:matrix(0.206383,-0.002683,0.003250,0.249979,0,0);-webkit-transform:matrix(0.206383,-0.002683,0.003250,0.249979,0,0);}
.m26_c00444{transform:matrix(0.206438,-0.002684,0.003250,0.249979,0,0);-ms-transform:matrix(0.206438,-0.002684,0.003250,0.249979,0,0);-webkit-transform:matrix(0.206438,-0.002684,0.003250,0.249979,0,0);}
.m0_c00444{transform:matrix(0.207195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207195,0.000000,0.000000,0.250000,0,0);}
.m2d_c00444{transform:matrix(0.208657,-0.002713,0.003250,0.249979,0,0);-ms-transform:matrix(0.208657,-0.002713,0.003250,0.249979,0,0);-webkit-transform:matrix(0.208657,-0.002713,0.003250,0.249979,0,0);}
.m7d_c00444{transform:matrix(0.209897,-0.003988,0.004749,0.249955,0,0);-ms-transform:matrix(0.209897,-0.003988,0.004749,0.249955,0,0);-webkit-transform:matrix(0.209897,-0.003988,0.004749,0.249955,0,0);}
.m71_c00444{transform:matrix(0.211370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211370,0.000000,0.000000,0.250000,0,0);}
.m1a_c00444{transform:matrix(0.212737,-0.002766,0.003250,0.249979,0,0);-ms-transform:matrix(0.212737,-0.002766,0.003250,0.249979,0,0);-webkit-transform:matrix(0.212737,-0.002766,0.003250,0.249979,0,0);}
.m1e_c00444{transform:matrix(0.213497,-0.002775,0.003250,0.249979,0,0);-ms-transform:matrix(0.213497,-0.002775,0.003250,0.249979,0,0);-webkit-transform:matrix(0.213497,-0.002775,0.003250,0.249979,0,0);}
.m1f_c00444{transform:matrix(0.215852,-0.002806,0.003250,0.249979,0,0);-ms-transform:matrix(0.215852,-0.002806,0.003250,0.249979,0,0);-webkit-transform:matrix(0.215852,-0.002806,0.003250,0.249979,0,0);}
.m5d_c00444{transform:matrix(0.217085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217085,0.000000,0.000000,0.250000,0,0);}
.m7f_c00444{transform:matrix(0.218147,-0.004581,0.005249,0.249945,0,0);-ms-transform:matrix(0.218147,-0.004581,0.005249,0.249945,0,0);-webkit-transform:matrix(0.218147,-0.004581,0.005249,0.249945,0,0);}
.m83_c00444{transform:matrix(0.219117,-0.004601,0.005249,0.249945,0,0);-ms-transform:matrix(0.219117,-0.004601,0.005249,0.249945,0,0);-webkit-transform:matrix(0.219117,-0.004601,0.005249,0.249945,0,0);}
.m28_c00444{transform:matrix(0.219296,-0.002851,0.003250,0.249979,0,0);-ms-transform:matrix(0.219296,-0.002851,0.003250,0.249979,0,0);-webkit-transform:matrix(0.219296,-0.002851,0.003250,0.249979,0,0);}
.m3d_c00444{transform:matrix(0.220576,-0.002867,0.003250,0.249979,0,0);-ms-transform:matrix(0.220576,-0.002867,0.003250,0.249979,0,0);-webkit-transform:matrix(0.220576,-0.002867,0.003250,0.249979,0,0);}
.ma_c00444{transform:matrix(0.220956,-0.002872,0.003250,0.249979,0,0);-ms-transform:matrix(0.220956,-0.002872,0.003250,0.249979,0,0);-webkit-transform:matrix(0.220956,-0.002872,0.003250,0.249979,0,0);}
.m20_c00444{transform:matrix(0.221081,-0.002874,0.003250,0.249979,0,0);-ms-transform:matrix(0.221081,-0.002874,0.003250,0.249979,0,0);-webkit-transform:matrix(0.221081,-0.002874,0.003250,0.249979,0,0);}
.m80_c00444{transform:matrix(0.221801,-0.004658,0.005249,0.249945,0,0);-ms-transform:matrix(0.221801,-0.004658,0.005249,0.249945,0,0);-webkit-transform:matrix(0.221801,-0.004658,0.005249,0.249945,0,0);}
.m8_c00444{transform:matrix(0.222721,-0.002895,0.003250,0.249979,0,0);-ms-transform:matrix(0.222721,-0.002895,0.003250,0.249979,0,0);-webkit-transform:matrix(0.222721,-0.002895,0.003250,0.249979,0,0);}
.m3b_c00444{transform:matrix(0.225326,-0.002929,0.003250,0.249979,0,0);-ms-transform:matrix(0.225326,-0.002929,0.003250,0.249979,0,0);-webkit-transform:matrix(0.225326,-0.002929,0.003250,0.249979,0,0);}
.m2c_c00444{transform:matrix(0.225486,-0.002931,0.003250,0.249979,0,0);-ms-transform:matrix(0.225486,-0.002931,0.003250,0.249979,0,0);-webkit-transform:matrix(0.225486,-0.002931,0.003250,0.249979,0,0);}
.m31_c00444{transform:matrix(0.226016,-0.002938,0.003250,0.249979,0,0);-ms-transform:matrix(0.226016,-0.002938,0.003250,0.249979,0,0);-webkit-transform:matrix(0.226016,-0.002938,0.003250,0.249979,0,0);}
.m5b_c00444{transform:matrix(0.226065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226065,0.000000,0.000000,0.250000,0,0);}
.m59_c00444{transform:matrix(0.226745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226745,0.000000,0.000000,0.250000,0,0);}
.m6d_c00444{transform:matrix(0.227430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227430,0.000000,0.000000,0.250000,0,0);}
.m32_c00444{transform:matrix(0.227706,-0.002960,0.003250,0.249979,0,0);-ms-transform:matrix(0.227706,-0.002960,0.003250,0.249979,0,0);-webkit-transform:matrix(0.227706,-0.002960,0.003250,0.249979,0,0);}
.m81_c00444{transform:matrix(0.228155,-0.004791,0.005249,0.249945,0,0);-ms-transform:matrix(0.228155,-0.004791,0.005249,0.249945,0,0);-webkit-transform:matrix(0.228155,-0.004791,0.005249,0.249945,0,0);}
.m5e_c00444{transform:matrix(0.231640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231640,0.000000,0.000000,0.250000,0,0);}
.m74_c00444{transform:matrix(0.231865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231865,0.000000,0.000000,0.250000,0,0);}
.m33_c00444{transform:matrix(0.232030,-0.003016,0.003250,0.249979,0,0);-ms-transform:matrix(0.232030,-0.003016,0.003250,0.249979,0,0);-webkit-transform:matrix(0.232030,-0.003016,0.003250,0.249979,0,0);}
.m6a_c00444{transform:matrix(0.232285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232285,0.000000,0.000000,0.250000,0,0);}
.m85_c00444{transform:matrix(0.233450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233450,0.000000,0.000000,0.250000,0,0);}
.m36_c00444{transform:matrix(0.233640,-0.003037,0.003250,0.249979,0,0);-ms-transform:matrix(0.233640,-0.003037,0.003250,0.249979,0,0);-webkit-transform:matrix(0.233640,-0.003037,0.003250,0.249979,0,0);}
.m72_c00444{transform:matrix(0.235470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235470,0.000000,0.000000,0.250000,0,0);}
.mc_c00444{transform:matrix(0.235770,-0.003065,0.003250,0.249979,0,0);-ms-transform:matrix(0.235770,-0.003065,0.003250,0.249979,0,0);-webkit-transform:matrix(0.235770,-0.003065,0.003250,0.249979,0,0);}
.m2b_c00444{transform:matrix(0.236230,-0.003071,0.003250,0.249979,0,0);-ms-transform:matrix(0.236230,-0.003071,0.003250,0.249979,0,0);-webkit-transform:matrix(0.236230,-0.003071,0.003250,0.249979,0,0);}
.m7a_c00444{transform:matrix(0.236617,-0.004496,0.004749,0.249955,0,0);-ms-transform:matrix(0.236617,-0.004496,0.004749,0.249955,0,0);-webkit-transform:matrix(0.236617,-0.004496,0.004749,0.249955,0,0);}
.mb_c00444{transform:matrix(0.237375,-0.003086,0.003250,0.249979,0,0);-ms-transform:matrix(0.237375,-0.003086,0.003250,0.249979,0,0);-webkit-transform:matrix(0.237375,-0.003086,0.003250,0.249979,0,0);}
.m7b_c00444{transform:matrix(0.238162,-0.004525,0.004749,0.249955,0,0);-ms-transform:matrix(0.238162,-0.004525,0.004749,0.249955,0,0);-webkit-transform:matrix(0.238162,-0.004525,0.004749,0.249955,0,0);}
.m58_c00444{transform:matrix(0.238535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238535,0.000000,0.000000,0.250000,0,0);}
.m15_c00444{transform:matrix(0.239875,-0.003118,0.003250,0.249979,0,0);-ms-transform:matrix(0.239875,-0.003118,0.003250,0.249979,0,0);-webkit-transform:matrix(0.239875,-0.003118,0.003250,0.249979,0,0);}
.m7e_c00444{transform:matrix(0.239907,-0.004558,0.004749,0.249955,0,0);-ms-transform:matrix(0.239907,-0.004558,0.004749,0.249955,0,0);-webkit-transform:matrix(0.239907,-0.004558,0.004749,0.249955,0,0);}
.m2e_c00444{transform:matrix(0.240370,-0.003125,0.003250,0.249979,0,0);-ms-transform:matrix(0.240370,-0.003125,0.003250,0.249979,0,0);-webkit-transform:matrix(0.240370,-0.003125,0.003250,0.249979,0,0);}
.m4_c00444{transform:matrix(0.240605,-0.003128,0.003250,0.249979,0,0);-ms-transform:matrix(0.240605,-0.003128,0.003250,0.249979,0,0);-webkit-transform:matrix(0.240605,-0.003128,0.003250,0.249979,0,0);}
.m66_c00444{transform:matrix(0.241300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241300,0.000000,0.000000,0.250000,0,0);}
.m2a_c00444{transform:matrix(0.241570,-0.003140,0.003250,0.249979,0,0);-ms-transform:matrix(0.241570,-0.003140,0.003250,0.249979,0,0);-webkit-transform:matrix(0.241570,-0.003140,0.003250,0.249979,0,0);}
.m3c_c00444{transform:matrix(0.242445,-0.003152,0.003250,0.249979,0,0);-ms-transform:matrix(0.242445,-0.003152,0.003250,0.249979,0,0);-webkit-transform:matrix(0.242445,-0.003152,0.003250,0.249979,0,0);}
.m3e_c00444{transform:matrix(0.242585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242585,0.000000,0.000000,0.250000,0,0);}
.m7c_c00444{transform:matrix(0.244706,-0.004649,0.004749,0.249955,0,0);-ms-transform:matrix(0.244706,-0.004649,0.004749,0.249955,0,0);-webkit-transform:matrix(0.244706,-0.004649,0.004749,0.249955,0,0);}
.m18_c00444{transform:matrix(0.247664,-0.003220,0.003250,0.249979,0,0);-ms-transform:matrix(0.247664,-0.003220,0.003250,0.249979,0,0);-webkit-transform:matrix(0.247664,-0.003220,0.003250,0.249979,0,0);}
.m9_c00444{transform:matrix(0.248764,-0.003234,0.003250,0.249979,0,0);-ms-transform:matrix(0.248764,-0.003234,0.003250,0.249979,0,0);-webkit-transform:matrix(0.248764,-0.003234,0.003250,0.249979,0,0);}
.m7_c00444{transform:matrix(0.248829,-0.003235,0.003250,0.249979,0,0);-ms-transform:matrix(0.248829,-0.003235,0.003250,0.249979,0,0);-webkit-transform:matrix(0.248829,-0.003235,0.003250,0.249979,0,0);}
.m6f_c00444{transform:matrix(0.249405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249405,0.000000,0.000000,0.250000,0,0);}
.md_c00444{transform:matrix(0.249419,-0.003242,0.003250,0.249979,0,0);-ms-transform:matrix(0.249419,-0.003242,0.003250,0.249979,0,0);-webkit-transform:matrix(0.249419,-0.003242,0.003250,0.249979,0,0);}
.m10_c00444{transform:matrix(0.249959,-0.003249,0.003250,0.249979,0,0);-ms-transform:matrix(0.249959,-0.003249,0.003250,0.249979,0,0);-webkit-transform:matrix(0.249959,-0.003249,0.003250,0.249979,0,0);}
.m65_c00444{transform:matrix(0.249995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249995,0.000000,0.000000,0.250000,0,0);}
.m5c_c00444{transform:matrix(0.250030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250030,0.000000,0.000000,0.250000,0,0);}
.m62_c00444{transform:matrix(0.250155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250155,0.000000,0.000000,0.250000,0,0);}
.m5_c00444{transform:matrix(0.250479,-0.003256,0.003250,0.249979,0,0);-ms-transform:matrix(0.250479,-0.003256,0.003250,0.249979,0,0);-webkit-transform:matrix(0.250479,-0.003256,0.003250,0.249979,0,0);}
.mf_c00444{transform:matrix(0.252464,-0.003282,0.003250,0.249979,0,0);-ms-transform:matrix(0.252464,-0.003282,0.003250,0.249979,0,0);-webkit-transform:matrix(0.252464,-0.003282,0.003250,0.249979,0,0);}
.m57_c00444{transform:matrix(0.252472,0.001262,-0.001250,0.249997,0,0);-ms-transform:matrix(0.252472,0.001262,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.252472,0.001262,-0.001250,0.249997,0,0);}
.m3a_c00444{transform:matrix(0.252959,-0.003288,0.003250,0.249979,0,0);-ms-transform:matrix(0.252959,-0.003288,0.003250,0.249979,0,0);-webkit-transform:matrix(0.252959,-0.003288,0.003250,0.249979,0,0);}
.m68_c00444{transform:matrix(0.253035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253035,0.000000,0.000000,0.250000,0,0);}
.m12_c00444{transform:matrix(0.255913,-0.003327,0.003250,0.249979,0,0);-ms-transform:matrix(0.255913,-0.003327,0.003250,0.249979,0,0);-webkit-transform:matrix(0.255913,-0.003327,0.003250,0.249979,0,0);}
.m6_c00444{transform:matrix(0.256968,-0.003341,0.003250,0.249979,0,0);-ms-transform:matrix(0.256968,-0.003341,0.003250,0.249979,0,0);-webkit-transform:matrix(0.256968,-0.003341,0.003250,0.249979,0,0);}
.m39_c00444{transform:matrix(0.259033,-0.003367,0.003250,0.249979,0,0);-ms-transform:matrix(0.259033,-0.003367,0.003250,0.249979,0,0);-webkit-transform:matrix(0.259033,-0.003367,0.003250,0.249979,0,0);}
.m30_c00444{transform:matrix(0.259208,-0.003370,0.003250,0.249979,0,0);-ms-transform:matrix(0.259208,-0.003370,0.003250,0.249979,0,0);-webkit-transform:matrix(0.259208,-0.003370,0.003250,0.249979,0,0);}
.m5a_c00444{transform:matrix(0.259955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259955,0.000000,0.000000,0.250000,0,0);}
.m17_c00444{transform:matrix(0.261898,-0.003405,0.003250,0.249979,0,0);-ms-transform:matrix(0.261898,-0.003405,0.003250,0.249979,0,0);-webkit-transform:matrix(0.261898,-0.003405,0.003250,0.249979,0,0);}
.m63_c00444{transform:matrix(0.263110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263110,0.000000,0.000000,0.250000,0,0);}
.m14_c00444{transform:matrix(0.265183,-0.003447,0.003250,0.249979,0,0);-ms-transform:matrix(0.265183,-0.003447,0.003250,0.249979,0,0);-webkit-transform:matrix(0.265183,-0.003447,0.003250,0.249979,0,0);}
.m50_c00444{transform:matrix(0.265632,0.001328,-0.001250,0.249997,0,0);-ms-transform:matrix(0.265632,0.001328,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.265632,0.001328,-0.001250,0.249997,0,0);}
.m19_c00444{transform:matrix(0.265863,-0.003456,0.003250,0.249979,0,0);-ms-transform:matrix(0.265863,-0.003456,0.003250,0.249979,0,0);-webkit-transform:matrix(0.265863,-0.003456,0.003250,0.249979,0,0);}
.m6c_c00444{transform:matrix(0.266480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266480,0.000000,0.000000,0.250000,0,0);}
.m60_c00444{transform:matrix(0.266790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266790,0.000000,0.000000,0.250000,0,0);}
.m61_c00444{transform:matrix(0.266880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266880,0.000000,0.000000,0.250000,0,0);}
.m69_c00444{transform:matrix(0.267440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267440,0.000000,0.000000,0.250000,0,0);}
.m70_c00444{transform:matrix(0.268345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268345,0.000000,0.000000,0.250000,0,0);}
.m64_c00444{transform:matrix(0.269005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269005,0.000000,0.000000,0.250000,0,0);}
.m67_c00444{transform:matrix(0.269190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269190,0.000000,0.000000,0.250000,0,0);}
.m54_c00444{transform:matrix(0.269382,0.001347,-0.001250,0.249997,0,0);-ms-transform:matrix(0.269382,0.001347,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.269382,0.001347,-0.001250,0.249997,0,0);}
.m6e_c00444{transform:matrix(0.275370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275370,0.000000,0.000000,0.250000,0,0);}
.m13_c00444{transform:matrix(0.275857,-0.003586,0.003250,0.249979,0,0);-ms-transform:matrix(0.275857,-0.003586,0.003250,0.249979,0,0);-webkit-transform:matrix(0.275857,-0.003586,0.003250,0.249979,0,0);}
.m6b_c00444{transform:matrix(0.277140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277140,0.000000,0.000000,0.250000,0,0);}
.m16_c00444{transform:matrix(0.277847,-0.003612,0.003250,0.249979,0,0);-ms-transform:matrix(0.277847,-0.003612,0.003250,0.249979,0,0);-webkit-transform:matrix(0.277847,-0.003612,0.003250,0.249979,0,0);}
.m5f_c00444{transform:matrix(0.280040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280040,0.000000,0.000000,0.250000,0,0);}
.m56_c00444{transform:matrix(0.281796,0.001409,-0.001250,0.249997,0,0);-ms-transform:matrix(0.281796,0.001409,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.281796,0.001409,-0.001250,0.249997,0,0);}
.m38_c00444{transform:matrix(0.282996,-0.003679,0.003250,0.249979,0,0);-ms-transform:matrix(0.282996,-0.003679,0.003250,0.249979,0,0);-webkit-transform:matrix(0.282996,-0.003679,0.003250,0.249979,0,0);}
.m11_c00444{transform:matrix(0.283991,-0.003692,0.003250,0.249979,0,0);-ms-transform:matrix(0.283991,-0.003692,0.003250,0.249979,0,0);-webkit-transform:matrix(0.283991,-0.003692,0.003250,0.249979,0,0);}
.me_c00444{transform:matrix(0.285936,-0.003717,0.003250,0.249979,0,0);-ms-transform:matrix(0.285936,-0.003717,0.003250,0.249979,0,0);-webkit-transform:matrix(0.285936,-0.003717,0.003250,0.249979,0,0);}
.m4f_c00444{transform:matrix(0.294651,0.001473,-0.001250,0.249997,0,0);-ms-transform:matrix(0.294651,0.001473,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.294651,0.001473,-0.001250,0.249997,0,0);}
.m52_c00444{transform:matrix(0.296471,0.001482,-0.001250,0.249997,0,0);-ms-transform:matrix(0.296471,0.001482,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.296471,0.001482,-0.001250,0.249997,0,0);}
.m51_c00444{transform:matrix(0.300491,0.001502,-0.001250,0.249997,0,0);-ms-transform:matrix(0.300491,0.001502,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.300491,0.001502,-0.001250,0.249997,0,0);}
.m53_c00444{transform:matrix(0.300781,0.001504,-0.001250,0.249997,0,0);-ms-transform:matrix(0.300781,0.001504,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.300781,0.001504,-0.001250,0.249997,0,0);}
.m55_c00444{transform:matrix(0.308166,0.001541,-0.001250,0.249997,0,0);-ms-transform:matrix(0.308166,0.001541,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.308166,0.001541,-0.001250,0.249997,0,0);}
.m4e_c00444{transform:matrix(0.313410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313410,0.000000,0.000000,0.250000,0,0);}
.m4b_c00444{transform:matrix(0.340195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340195,0.000000,0.000000,0.250000,0,0);}
.m1_c00444{transform:matrix(0.463205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463205,0.000000,0.000000,0.250000,0,0);}
.m77_c00444{transform:matrix(0.551445,-0.010477,0.004749,0.249955,0,0);-ms-transform:matrix(0.551445,-0.010477,0.004749,0.249955,0,0);-webkit-transform:matrix(0.551445,-0.010477,0.004749,0.249955,0,0);}
.m2_c00444{transform:matrix(0.564925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.564925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.564925,0.000000,0.000000,0.250000,0,0);}
.m78_c00444{transform:matrix(0.724634,-0.013768,0.004749,0.249955,0,0);-ms-transform:matrix(0.724634,-0.013768,0.004749,0.249955,0,0);-webkit-transform:matrix(0.724634,-0.013768,0.004749,0.249955,0,0);}
.m37_c00444{transform:matrix(0.727524,-0.009458,0.003250,0.249979,0,0);-ms-transform:matrix(0.727524,-0.009458,0.003250,0.249979,0,0);-webkit-transform:matrix(0.727524,-0.009458,0.003250,0.249979,0,0);}
.m76_c00444{transform:matrix(0.739716,-0.014055,0.004749,0.249955,0,0);-ms-transform:matrix(0.739716,-0.014055,0.004749,0.249955,0,0);-webkit-transform:matrix(0.739716,-0.014055,0.004749,0.249955,0,0);}
.m79_c00444{transform:matrix(1.062553,-0.020189,0.004749,0.249955,0,0);-ms-transform:matrix(1.062553,-0.020189,0.004749,0.249955,0,0);-webkit-transform:matrix(1.062553,-0.020189,0.004749,0.249955,0,0);}
.m84_c00444{transform:matrix(2.704165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.704165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.704165,0.000000,0.000000,0.250000,0,0);}
.v0_c00444{vertical-align:0.000000px;}
.ls0_c00444{letter-spacing:0.000000px;}
.sc__c00444{text-shadow:none;}
.sc0_c00444{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__c00444{-webkit-text-stroke:0px transparent;}
.sc0_c00444{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00444{word-spacing:0.000000px;}
.fc0_c00444{color:transparent;}
.fsd_c00444{font-size:18.000000px;}
.fs0_c00444{font-size:30.000000px;}
.fsa_c00444{font-size:30.005415px;}
.fs6_c00444{font-size:54.000000px;}
.fs4_c00444{font-size:60.000000px;}
.fs7_c00444{font-size:66.000825px;}
.fs8_c00444{font-size:72.000000px;}
.fs2_c00444{font-size:72.006084px;}
.fs1_c00444{font-size:78.006591px;}
.fsb_c00444{font-size:78.014078px;}
.fs9_c00444{font-size:84.000000px;}
.fsc_c00444{font-size:84.018520px;}
.fs3_c00444{font-size:90.007605px;}
.fs5_c00444{font-size:102.001275px;}
.y0_c00444{bottom:0.000000px;}
.y64_c00444{bottom:617.497500px;}
.y65_c00444{bottom:618.172073px;}
.y66_c00444{bottom:619.811175px;}
.y67_c00444{bottom:621.631214px;}
.y68_c00444{bottom:622.328813px;}
.y5f_c00444{bottom:655.556913px;}
.y60_c00444{bottom:655.916586px;}
.y61_c00444{bottom:656.775355px;}
.y62_c00444{bottom:657.734874px;}
.y63_c00444{bottom:658.094832px;}
.y5b_c00444{bottom:682.543500px;}
.y5c_c00444{bottom:683.446209px;}
.y5d_c00444{bottom:684.230558px;}
.y5e_c00444{bottom:684.851173px;}
.y56_c00444{bottom:760.594500px;}
.y57_c00444{bottom:761.295000px;}
.y58_c00444{bottom:763.048500px;}
.y59_c00444{bottom:763.575000px;}
.y5a_c00444{bottom:765.018000px;}
.y55_c00444{bottom:799.282500px;}
.y54_c00444{bottom:832.575000px;}
.y69_c00444{bottom:834.840000px;}
.y53_c00444{bottom:868.253722px;}
.y52_c00444{bottom:868.369822px;}
.y51_c00444{bottom:868.926127px;}
.y50_c00444{bottom:869.144835px;}
.y4f_c00444{bottom:869.638957px;}
.y4e_c00444{bottom:870.083115px;}
.y4d_c00444{bottom:870.632565px;}
.y4c_c00444{bottom:870.858030px;}
.y4b_c00444{bottom:871.290000px;}
.y4a_c00444{bottom:938.514000px;}
.y3e_c00444{bottom:975.510000px;}
.y3f_c00444{bottom:975.620797px;}
.y40_c00444{bottom:976.166212px;}
.y41_c00444{bottom:976.333627px;}
.y42_c00444{bottom:976.715670px;}
.y43_c00444{bottom:976.938547px;}
.y44_c00444{bottom:977.101672px;}
.y45_c00444{bottom:977.429955px;}
.y46_c00444{bottom:977.763210px;}
.y47_c00444{bottom:978.092595px;}
.y48_c00444{bottom:978.204660px;}
.y49_c00444{bottom:978.486772px;}
.y3d_c00444{bottom:987.660000px;}
.y36_c00444{bottom:1009.524843px;}
.y37_c00444{bottom:1010.108039px;}
.y38_c00444{bottom:1011.560467px;}
.y39_c00444{bottom:1012.183606px;}
.y3a_c00444{bottom:1012.898880px;}
.y3b_c00444{bottom:1013.250041px;}
.y3c_c00444{bottom:1013.864033px;}
.y27_c00444{bottom:1043.543337px;}
.y28_c00444{bottom:1043.884761px;}
.y29_c00444{bottom:1044.054145px;}
.y2a_c00444{bottom:1044.660682px;}
.y2b_c00444{bottom:1044.851414px;}
.y2c_c00444{bottom:1045.283413px;}
.y2d_c00444{bottom:1045.544623px;}
.y2e_c00444{bottom:1046.080506px;}
.y2f_c00444{bottom:1046.347727px;}
.y30_c00444{bottom:1047.397560px;}
.y31_c00444{bottom:1047.584212px;}
.y32_c00444{bottom:1048.022126px;}
.y33_c00444{bottom:1048.555491px;}
.y34_c00444{bottom:1048.736858px;}
.y35_c00444{bottom:1049.182281px;}
.y19_c00444{bottom:1078.913284px;}
.y1a_c00444{bottom:1079.582824px;}
.y1b_c00444{bottom:1079.897355px;}
.y1c_c00444{bottom:1080.135615px;}
.y1d_c00444{bottom:1080.505516px;}
.y1e_c00444{bottom:1081.054306px;}
.y1f_c00444{bottom:1081.275508px;}
.y20_c00444{bottom:1081.895379px;}
.y21_c00444{bottom:1082.061993px;}
.y22_c00444{bottom:1082.445750px;}
.y23_c00444{bottom:1082.686176px;}
.y24_c00444{bottom:1083.146028px;}
.y25_c00444{bottom:1083.375936px;}
.y26_c00444{bottom:1083.764181px;}
.y15_c00444{bottom:1115.678805px;}
.y16_c00444{bottom:1115.678868px;}
.y17_c00444{bottom:1115.678899px;}
.y14_c00444{bottom:1115.679204px;}
.y13_c00444{bottom:1115.679432px;}
.y12_c00444{bottom:1115.679459px;}
.y18_c00444{bottom:1115.679490px;}
.y11_c00444{bottom:1115.679629px;}
.y10_c00444{bottom:1115.679995px;}
.ye_c00444{bottom:1115.680032px;}
.yf_c00444{bottom:1115.680623px;}
.y2_c00444{bottom:1151.821500px;}
.y3_c00444{bottom:1152.110217px;}
.y4_c00444{bottom:1153.089741px;}
.y5_c00444{bottom:1154.241509px;}
.y6_c00444{bottom:1155.371631px;}
.y7_c00444{bottom:1156.515208px;}
.y8_c00444{bottom:1157.087748px;}
.y9_c00444{bottom:1157.950447px;}
.ya_c00444{bottom:1158.382548px;}
.yb_c00444{bottom:1159.101396px;}
.yc_c00444{bottom:1159.386135px;}
.yd_c00444{bottom:1160.403352px;}
.y1_c00444{bottom:1218.157500px;}
.hf_c00444{height:18.000000px;}
.h2_c00444{height:30.000000px;}
.hc_c00444{height:30.005415px;}
.h8_c00444{height:54.000000px;}
.h6_c00444{height:60.000000px;}
.h9_c00444{height:66.000825px;}
.ha_c00444{height:72.000000px;}
.h4_c00444{height:72.006084px;}
.h3_c00444{height:78.006591px;}
.hd_c00444{height:78.014078px;}
.hb_c00444{height:84.000000px;}
.he_c00444{height:84.018520px;}
.h5_c00444{height:90.007605px;}
.h7_c00444{height:102.001275px;}
.h1_c00444{height:1251.000000px;}
.h0_c00444{height:1251.150000px;}
.w0_c00444{width:915.000000px;}
.x0_c00444{left:0.000000px;}
.x51_c00444{left:109.566000px;}
.x4_c00444{left:111.345000px;}
.x19_c00444{left:112.699376px;}
.x45_c00444{left:122.580000px;}
.x5_c00444{left:133.554000px;}
.x3d_c00444{left:144.720000px;}
.x10_c00444{left:155.793262px;}
.x52_c00444{left:157.077000px;}
.x2e_c00444{left:165.160557px;}
.x46_c00444{left:166.320000px;}
.x24_c00444{left:176.460242px;}
.x36_c00444{left:190.350000px;}
.x47_c00444{left:198.720000px;}
.x6_c00444{left:208.902000px;}
.x37_c00444{left:211.140000px;}
.x39_c00444{left:221.596500px;}
.x54_c00444{left:222.930828px;}
.x53_c00444{left:231.022500px;}
.x3e_c00444{left:243.270000px;}
.x38_c00444{left:244.620000px;}
.x1_c00444{left:252.720000px;}
.x32_c00444{left:264.679500px;}
.x4e_c00444{left:265.926000px;}
.x25_c00444{left:276.102716px;}
.x1a_c00444{left:287.161467px;}
.x7_c00444{left:297.499500px;}
.x4f_c00444{left:298.875000px;}
.x3a_c00444{left:307.990500px;}
.x55_c00444{left:310.155581px;}
.x26_c00444{left:330.106226px;}
.x1b_c00444{left:340.081101px;}
.x56_c00444{left:342.842539px;}
.x11_c00444{left:350.749717px;}
.x2f_c00444{left:353.901471px;}
.x27_c00444{left:362.778351px;}
.x3f_c00444{left:363.960000px;}
.x12_c00444{left:373.702098px;}
.x48_c00444{left:375.300000px;}
.x8_c00444{left:384.432000px;}
.x50_c00444{left:389.071500px;}
.x40_c00444{left:396.090000px;}
.x49_c00444{left:408.780000px;}
.x1c_c00444{left:418.417205px;}
.x2_c00444{left:426.870000px;}
.x28_c00444{left:429.735200px;}
.x1d_c00444{left:449.973662px;}
.x3_c00444{left:451.980000px;}
.x29_c00444{left:463.215884px;}
.x9_c00444{left:472.399500px;}
.x13_c00444{left:484.141759px;}
.x41_c00444{left:495.450000px;}
.x30_c00444{left:506.707449px;}
.xa_c00444{left:516.441000px;}
.x4a_c00444{left:529.470000px;}
.x1e_c00444{left:538.509065px;}
.x31_c00444{left:551.880000px;}
.x14_c00444{left:561.098766px;}
.x1f_c00444{left:562.288917px;}
.xb_c00444{left:582.802500px;}
.x33_c00444{left:584.079000px;}
.x2a_c00444{left:594.403905px;}
.x15_c00444{left:605.383254px;}
.x4b_c00444{left:607.230000px;}
.xc_c00444{left:616.041000px;}
.x20_c00444{left:617.082188px;}
.x42_c00444{left:639.090000px;}
.x4c_c00444{left:640.980000px;}
.x34_c00444{left:649.956000px;}
.x21_c00444{left:651.386859px;}
.x43_c00444{left:662.850000px;}
.xd_c00444{left:671.337000px;}
.x2b_c00444{left:672.452475px;}
.xe_c00444{left:693.240000px;}
.x3b_c00444{left:694.371000px;}
.x16_c00444{left:704.751044px;}
.x22_c00444{left:716.995968px;}
.x35_c00444{left:728.791500px;}
.x2c_c00444{left:739.100304px;}
.x44_c00444{left:740.610000px;}
.x23_c00444{left:749.914542px;}
.x17_c00444{left:761.186079px;}
.xf_c00444{left:771.487500px;}
.x4d_c00444{left:784.620000px;}
.x18_c00444{left:805.200509px;}
.x2d_c00444{left:817.435394px;}
.x3c_c00444{left:828.852000px;}
.x57_c00444{left:906.660000px;}
.x58_c00444{left:910.170000px;}
@media print{
.v0_c00444{vertical-align:0.000000pt;}
.ls0_c00444{letter-spacing:0.000000pt;}
.ws0_c00444{word-spacing:0.000000pt;}
.fsd_c00444{font-size:16.000000pt;}
.fs0_c00444{font-size:26.666667pt;}
.fsa_c00444{font-size:26.671480pt;}
.fs6_c00444{font-size:48.000000pt;}
.fs4_c00444{font-size:53.333333pt;}
.fs7_c00444{font-size:58.667400pt;}
.fs8_c00444{font-size:64.000000pt;}
.fs2_c00444{font-size:64.005408pt;}
.fs1_c00444{font-size:69.339192pt;}
.fsb_c00444{font-size:69.345847pt;}
.fs9_c00444{font-size:74.666667pt;}
.fsc_c00444{font-size:74.683129pt;}
.fs3_c00444{font-size:80.006760pt;}
.fs5_c00444{font-size:90.667800pt;}
.y0_c00444{bottom:0.000000pt;}
.y64_c00444{bottom:548.886667pt;}
.y65_c00444{bottom:549.486287pt;}
.y66_c00444{bottom:550.943267pt;}
.y67_c00444{bottom:552.561079pt;}
.y68_c00444{bottom:553.181167pt;}
.y5f_c00444{bottom:582.717256pt;}
.y60_c00444{bottom:583.036965pt;}
.y61_c00444{bottom:583.800316pt;}
.y62_c00444{bottom:584.653221pt;}
.y63_c00444{bottom:584.973184pt;}
.y5b_c00444{bottom:606.705333pt;}
.y5c_c00444{bottom:607.507741pt;}
.y5d_c00444{bottom:608.204940pt;}
.y5e_c00444{bottom:608.756599pt;}
.y56_c00444{bottom:676.084000pt;}
.y57_c00444{bottom:676.706667pt;}
.y58_c00444{bottom:678.265333pt;}
.y59_c00444{bottom:678.733333pt;}
.y5a_c00444{bottom:680.016000pt;}
.y55_c00444{bottom:710.473333pt;}
.y54_c00444{bottom:740.066667pt;}
.y69_c00444{bottom:742.080000pt;}
.y53_c00444{bottom:771.781087pt;}
.y52_c00444{bottom:771.884287pt;}
.y51_c00444{bottom:772.378780pt;}
.y50_c00444{bottom:772.573187pt;}
.y4f_c00444{bottom:773.012407pt;}
.y4e_c00444{bottom:773.407213pt;}
.y4d_c00444{bottom:773.895613pt;}
.y4c_c00444{bottom:774.096027pt;}
.y4b_c00444{bottom:774.480000pt;}
.y4a_c00444{bottom:834.234667pt;}
.y3e_c00444{bottom:867.120000pt;}
.y3f_c00444{bottom:867.218487pt;}
.y40_c00444{bottom:867.703300pt;}
.y41_c00444{bottom:867.852113pt;}
.y42_c00444{bottom:868.191707pt;}
.y43_c00444{bottom:868.389820pt;}
.y44_c00444{bottom:868.534820pt;}
.y45_c00444{bottom:868.826627pt;}
.y46_c00444{bottom:869.122853pt;}
.y47_c00444{bottom:869.415640pt;}
.y48_c00444{bottom:869.515253pt;}
.y49_c00444{bottom:869.766020pt;}
.y3d_c00444{bottom:877.920000pt;}
.y36_c00444{bottom:897.355416pt;}
.y37_c00444{bottom:897.873812pt;}
.y38_c00444{bottom:899.164860pt;}
.y39_c00444{bottom:899.718761pt;}
.y3a_c00444{bottom:900.354560pt;}
.y3b_c00444{bottom:900.666703pt;}
.y3c_c00444{bottom:901.212473pt;}
.y27_c00444{bottom:927.594077pt;}
.y28_c00444{bottom:927.897565pt;}
.y29_c00444{bottom:928.048129pt;}
.y2a_c00444{bottom:928.587273pt;}
.y2b_c00444{bottom:928.756812pt;}
.y2c_c00444{bottom:929.140812pt;}
.y2d_c00444{bottom:929.372999pt;}
.y2e_c00444{bottom:929.849339pt;}
.y2f_c00444{bottom:930.086868pt;}
.y30_c00444{bottom:931.020053pt;}
.y31_c00444{bottom:931.185967pt;}
.y32_c00444{bottom:931.575223pt;}
.y33_c00444{bottom:932.049325pt;}
.y34_c00444{bottom:932.210540pt;}
.y35_c00444{bottom:932.606472pt;}
.y19_c00444{bottom:959.034031pt;}
.y1a_c00444{bottom:959.629177pt;}
.y1b_c00444{bottom:959.908760pt;}
.y1c_c00444{bottom:960.120547pt;}
.y1d_c00444{bottom:960.449348pt;}
.y1e_c00444{bottom:960.937161pt;}
.y1f_c00444{bottom:961.133785pt;}
.y20_c00444{bottom:961.684781pt;}
.y21_c00444{bottom:961.832883pt;}
.y22_c00444{bottom:962.174000pt;}
.y23_c00444{bottom:962.387712pt;}
.y24_c00444{bottom:962.796469pt;}
.y25_c00444{bottom:963.000832pt;}
.y26_c00444{bottom:963.345939pt;}
.y15_c00444{bottom:991.714493pt;}
.y16_c00444{bottom:991.714549pt;}
.y17_c00444{bottom:991.714577pt;}
.y14_c00444{bottom:991.714848pt;}
.y13_c00444{bottom:991.715051pt;}
.y12_c00444{bottom:991.715075pt;}
.y18_c00444{bottom:991.715103pt;}
.y11_c00444{bottom:991.715225pt;}
.y10_c00444{bottom:991.715551pt;}
.ye_c00444{bottom:991.715584pt;}
.yf_c00444{bottom:991.716109pt;}
.y2_c00444{bottom:1023.841333pt;}
.y3_c00444{bottom:1024.097971pt;}
.y4_c00444{bottom:1024.968659pt;}
.y5_c00444{bottom:1025.992452pt;}
.y6_c00444{bottom:1026.997005pt;}
.y7_c00444{bottom:1028.013519pt;}
.y8_c00444{bottom:1028.522443pt;}
.y9_c00444{bottom:1029.289287pt;}
.ya_c00444{bottom:1029.673376pt;}
.yb_c00444{bottom:1030.312352pt;}
.yc_c00444{bottom:1030.565453pt;}
.yd_c00444{bottom:1031.469647pt;}
.y1_c00444{bottom:1082.806667pt;}
.hf_c00444{height:16.000000pt;}
.h2_c00444{height:26.666667pt;}
.hc_c00444{height:26.671480pt;}
.h8_c00444{height:48.000000pt;}
.h6_c00444{height:53.333333pt;}
.h9_c00444{height:58.667400pt;}
.ha_c00444{height:64.000000pt;}
.h4_c00444{height:64.005408pt;}
.h3_c00444{height:69.339192pt;}
.hd_c00444{height:69.345847pt;}
.hb_c00444{height:74.666667pt;}
.he_c00444{height:74.683129pt;}
.h5_c00444{height:80.006760pt;}
.h7_c00444{height:90.667800pt;}
.h1_c00444{height:1112.000000pt;}
.h0_c00444{height:1112.133333pt;}
.w0_c00444{width:813.333333pt;}
.x0_c00444{left:0.000000pt;}
.x51_c00444{left:97.392000pt;}
.x4_c00444{left:98.973333pt;}
.x19_c00444{left:100.177223pt;}
.x45_c00444{left:108.960000pt;}
.x5_c00444{left:118.714667pt;}
.x3d_c00444{left:128.640000pt;}
.x10_c00444{left:138.482900pt;}
.x52_c00444{left:139.624000pt;}
.x2e_c00444{left:146.809384pt;}
.x46_c00444{left:147.840000pt;}
.x24_c00444{left:156.853548pt;}
.x36_c00444{left:169.200000pt;}
.x47_c00444{left:176.640000pt;}
.x6_c00444{left:185.690667pt;}
.x37_c00444{left:187.680000pt;}
.x39_c00444{left:196.974667pt;}
.x54_c00444{left:198.160736pt;}
.x53_c00444{left:205.353333pt;}
.x3e_c00444{left:216.240000pt;}
.x38_c00444{left:217.440000pt;}
.x1_c00444{left:224.640000pt;}
.x32_c00444{left:235.270667pt;}
.x4e_c00444{left:236.378667pt;}
.x25_c00444{left:245.424636pt;}
.x1a_c00444{left:255.254637pt;}
.x7_c00444{left:264.444000pt;}
.x4f_c00444{left:265.666667pt;}
.x3a_c00444{left:273.769333pt;}
.x55_c00444{left:275.693849pt;}
.x26_c00444{left:293.427756pt;}
.x1b_c00444{left:302.294312pt;}
.x56_c00444{left:304.748924pt;}
.x11_c00444{left:311.777527pt;}
.x2f_c00444{left:314.579085pt;}
.x27_c00444{left:322.469645pt;}
.x3f_c00444{left:323.520000pt;}
.x12_c00444{left:332.179643pt;}
.x48_c00444{left:333.600000pt;}
.x8_c00444{left:341.717333pt;}
.x50_c00444{left:345.841333pt;}
.x40_c00444{left:352.080000pt;}
.x49_c00444{left:363.360000pt;}
.x1c_c00444{left:371.926404pt;}
.x2_c00444{left:379.440000pt;}
.x28_c00444{left:381.986844pt;}
.x1d_c00444{left:399.976588pt;}
.x3_c00444{left:401.760000pt;}
.x29_c00444{left:411.747452pt;}
.x9_c00444{left:419.910667pt;}
.x13_c00444{left:430.348231pt;}
.x41_c00444{left:440.400000pt;}
.x30_c00444{left:450.406621pt;}
.xa_c00444{left:459.058667pt;}
.x4a_c00444{left:470.640000pt;}
.x1e_c00444{left:478.674724pt;}
.x31_c00444{left:490.560000pt;}
.x14_c00444{left:498.754459pt;}
.x1f_c00444{left:499.812371pt;}
.xb_c00444{left:518.046667pt;}
.x33_c00444{left:519.181333pt;}
.x2a_c00444{left:528.359027pt;}
.x15_c00444{left:538.118448pt;}
.x4b_c00444{left:539.760000pt;}
.xc_c00444{left:547.592000pt;}
.x20_c00444{left:548.517500pt;}
.x42_c00444{left:568.080000pt;}
.x4c_c00444{left:569.760000pt;}
.x34_c00444{left:577.738667pt;}
.x21_c00444{left:579.010541pt;}
.x43_c00444{left:589.200000pt;}
.xd_c00444{left:596.744000pt;}
.x2b_c00444{left:597.735533pt;}
.xe_c00444{left:616.213333pt;}
.x3b_c00444{left:617.218667pt;}
.x16_c00444{left:626.445372pt;}
.x22_c00444{left:637.329749pt;}
.x35_c00444{left:647.814667pt;}
.x2c_c00444{left:656.978048pt;}
.x44_c00444{left:658.320000pt;}
.x23_c00444{left:666.590704pt;}
.x17_c00444{left:676.609848pt;}
.xf_c00444{left:685.766667pt;}
.x4d_c00444{left:697.440000pt;}
.x18_c00444{left:715.733785pt;}
.x2d_c00444{left:726.609239pt;}
.x3c_c00444{left:736.757333pt;}
.x57_c00444{left:805.920000pt;}
.x58_c00444{left:809.040000pt;}
}





/* 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_c00445 {
    display:none;
  }
  .loading-indicator_c00445.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00445 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_c00445 { 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_c00445" -> "#page-container .classname_c00445")
 */
.pf_c00445 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00445 { /* 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_c00445.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00445 { /* 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_c00445 { /* 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_c00445 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00445 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00445 {overflow:visible;}
  }
}
.c_c00445 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00445 { /* 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_c00445:after { /* webkit #35443 */
  content: '';
}
.t_c00445:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00445 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 */
}
.__c00445 { /* 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_c00445 { /* info for Javascript */
  display:none;
}
.l_c00445 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00445 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00445 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00445: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_c00445 {
    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_c00445.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00445.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_c00445 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00445{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00445;src:url('chunks/assets/font_c605e72f209fc835e906f064.woff2')format("woff");}.ff1_c00445{font-family:ff1_c00445;line-height:1.000000;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;}
.m2_c00445{transform:matrix(0.120935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120935,0.000000,0.000000,0.250000,0,0);}
.m3_c00445{transform:matrix(0.151455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151455,0.000000,0.000000,0.250000,0,0);}
.m4_c00445{transform:matrix(0.156190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156190,0.000000,0.000000,0.250000,0,0);}
.mc_c00445{transform:matrix(0.158590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158590,0.000000,0.000000,0.250000,0,0);}
.mb_c00445{transform:matrix(0.166270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166270,0.000000,0.000000,0.250000,0,0);}
.m1_c00445{transform:matrix(0.172145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172145,0.000000,0.000000,0.250000,0,0);}
.m6_c00445{transform:matrix(0.175900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175900,0.000000,0.000000,0.250000,0,0);}
.m5_c00445{transform:matrix(0.177995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177995,0.000000,0.000000,0.250000,0,0);}
.md_c00445{transform:matrix(0.203410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203410,0.000000,0.000000,0.250000,0,0);}
.ma_c00445{transform:matrix(0.209320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209320,0.000000,0.000000,0.250000,0,0);}
.mf_c00445{transform:matrix(0.219315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219315,0.000000,0.000000,0.250000,0,0);}
.me_c00445{transform:matrix(0.222670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222670,0.000000,0.000000,0.250000,0,0);}
.m9_c00445{transform:matrix(0.231075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231075,0.000000,0.000000,0.250000,0,0);}
.m15_c00445{transform:matrix(0.233390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233390,0.000000,0.000000,0.250000,0,0);}
.m7_c00445{transform:matrix(0.236025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236025,0.000000,0.000000,0.250000,0,0);}
.m10_c00445{transform:matrix(0.259830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259830,0.000000,0.000000,0.250000,0,0);}
.m11_c00445{transform:matrix(0.263595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263595,0.000000,0.000000,0.250000,0,0);}
.m12_c00445{transform:matrix(0.289020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289020,0.000000,0.000000,0.250000,0,0);}
.m13_c00445{transform:matrix(0.294120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294120,0.000000,0.000000,0.250000,0,0);}
.m14_c00445{transform:matrix(0.301870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301870,0.000000,0.000000,0.250000,0,0);}
.m0_c00445{transform:matrix(0.397750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397750,0.000000,0.000000,0.250000,0,0);}
.m8_c00445{transform:matrix(0.412795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412795,0.000000,0.000000,0.250000,0,0);}
.v0_c00445{vertical-align:0.000000px;}
.ls0_c00445{letter-spacing:0.000000px;}
.sc__c00445{text-shadow:none;}
.sc0_c00445{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__c00445{-webkit-text-stroke:0px transparent;}
.sc0_c00445{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00445{word-spacing:0.000000px;}
.fc0_c00445{color:transparent;}
.fs2_c00445{font-size:18.000000px;}
.fs0_c00445{font-size:24.000000px;}
.fs9_c00445{font-size:72.000000px;}
.fs4_c00445{font-size:78.000000px;}
.fs5_c00445{font-size:84.000000px;}
.fs6_c00445{font-size:102.000000px;}
.fs1_c00445{font-size:114.000000px;}
.fs7_c00445{font-size:126.000000px;}
.fs8_c00445{font-size:144.000000px;}
.fs3_c00445{font-size:162.000000px;}
.y0_c00445{bottom:0.000000px;}
.y6_c00445{bottom:910.848000px;}
.y5_c00445{bottom:979.146000px;}
.yd_c00445{bottom:985.117500px;}
.y9_c00445{bottom:999.270000px;}
.yb_c00445{bottom:1126.980000px;}
.ya_c00445{bottom:1128.474000px;}
.y4_c00445{bottom:1154.386500px;}
.y8_c00445{bottom:1156.680000px;}
.y3_c00445{bottom:1159.110000px;}
.y2_c00445{bottom:1160.190000px;}
.y7_c00445{bottom:1161.807000px;}
.yc_c00445{bottom:1162.755000px;}
.ye_c00445{bottom:1166.400000px;}
.y1_c00445{bottom:1169.100000px;}
.h4_c00445{height:18.000000px;}
.h2_c00445{height:24.000000px;}
.hb_c00445{height:72.000000px;}
.h6_c00445{height:78.000000px;}
.h7_c00445{height:84.000000px;}
.h8_c00445{height:102.000000px;}
.h3_c00445{height:114.000000px;}
.h9_c00445{height:126.000000px;}
.ha_c00445{height:144.000000px;}
.h5_c00445{height:162.000000px;}
.h0_c00445{height:1251.450000px;}
.h1_c00445{height:1251.750000px;}
.w0_c00445{width:915.000000px;}
.x0_c00445{left:0.000000px;}
.x13_c00445{left:145.260000px;}
.x10_c00445{left:188.190000px;}
.x14_c00445{left:224.910000px;}
.x11_c00445{left:241.920000px;}
.x15_c00445{left:245.160000px;}
.x12_c00445{left:264.330000px;}
.xf_c00445{left:302.400000px;}
.xe_c00445{left:332.640000px;}
.xd_c00445{left:345.330000px;}
.xc_c00445{left:361.530000px;}
.x9_c00445{left:409.050000px;}
.xb_c00445{left:421.470000px;}
.xa_c00445{left:440.910000px;}
.x5_c00445{left:456.840000px;}
.x4_c00445{left:476.820000px;}
.x3_c00445{left:482.220000px;}
.x6_c00445{left:495.450000px;}
.x2_c00445{left:531.630000px;}
.x7_c00445{left:541.080000px;}
.x1_c00445{left:601.830000px;}
.x8_c00445{left:618.300000px;}
@media print{
.v0_c00445{vertical-align:0.000000pt;}
.ls0_c00445{letter-spacing:0.000000pt;}
.ws0_c00445{word-spacing:0.000000pt;}
.fs2_c00445{font-size:16.000000pt;}
.fs0_c00445{font-size:21.333333pt;}
.fs9_c00445{font-size:64.000000pt;}
.fs4_c00445{font-size:69.333333pt;}
.fs5_c00445{font-size:74.666667pt;}
.fs6_c00445{font-size:90.666667pt;}
.fs1_c00445{font-size:101.333333pt;}
.fs7_c00445{font-size:112.000000pt;}
.fs8_c00445{font-size:128.000000pt;}
.fs3_c00445{font-size:144.000000pt;}
.y0_c00445{bottom:0.000000pt;}
.y6_c00445{bottom:809.642667pt;}
.y5_c00445{bottom:870.352000pt;}
.yd_c00445{bottom:875.660000pt;}
.y9_c00445{bottom:888.240000pt;}
.yb_c00445{bottom:1001.760000pt;}
.ya_c00445{bottom:1003.088000pt;}
.y4_c00445{bottom:1026.121333pt;}
.y8_c00445{bottom:1028.160000pt;}
.y3_c00445{bottom:1030.320000pt;}
.y2_c00445{bottom:1031.280000pt;}
.y7_c00445{bottom:1032.717333pt;}
.yc_c00445{bottom:1033.560000pt;}
.ye_c00445{bottom:1036.800000pt;}
.y1_c00445{bottom:1039.200000pt;}
.h4_c00445{height:16.000000pt;}
.h2_c00445{height:21.333333pt;}
.hb_c00445{height:64.000000pt;}
.h6_c00445{height:69.333333pt;}
.h7_c00445{height:74.666667pt;}
.h8_c00445{height:90.666667pt;}
.h3_c00445{height:101.333333pt;}
.h9_c00445{height:112.000000pt;}
.ha_c00445{height:128.000000pt;}
.h5_c00445{height:144.000000pt;}
.h0_c00445{height:1112.400000pt;}
.h1_c00445{height:1112.666667pt;}
.w0_c00445{width:813.333333pt;}
.x0_c00445{left:0.000000pt;}
.x13_c00445{left:129.120000pt;}
.x10_c00445{left:167.280000pt;}
.x14_c00445{left:199.920000pt;}
.x11_c00445{left:215.040000pt;}
.x15_c00445{left:217.920000pt;}
.x12_c00445{left:234.960000pt;}
.xf_c00445{left:268.800000pt;}
.xe_c00445{left:295.680000pt;}
.xd_c00445{left:306.960000pt;}
.xc_c00445{left:321.360000pt;}
.x9_c00445{left:363.600000pt;}
.xb_c00445{left:374.640000pt;}
.xa_c00445{left:391.920000pt;}
.x5_c00445{left:406.080000pt;}
.x4_c00445{left:423.840000pt;}
.x3_c00445{left:428.640000pt;}
.x6_c00445{left:440.400000pt;}
.x2_c00445{left:472.560000pt;}
.x7_c00445{left:480.960000pt;}
.x1_c00445{left:534.960000pt;}
.x8_c00445{left:549.600000pt;}
}





/* 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_c00446 {
    display:none;
  }
  .loading-indicator_c00446.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00446 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_c00446 { 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_c00446" -> "#page-container .classname_c00446")
 */
.pf_c00446 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00446 { /* 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_c00446.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00446 { /* 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_c00446 { /* 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_c00446 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00446 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00446 {overflow:visible;}
  }
}
.c_c00446 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00446 { /* 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_c00446:after { /* webkit #35443 */
  content: '';
}
.t_c00446:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00446 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 */
}
.__c00446 { /* 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_c00446 { /* info for Javascript */
  display:none;
}
.l_c00446 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00446 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00446 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00446: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_c00446 {
    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_c00446.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00446.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_c00446 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00446{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00446;src:url('chunks/assets/font_fabf4b590f7fb32aea93ffb2.woff2')format("woff");}.ff1_c00446{font-family:ff1_c00446;line-height:1.000000;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;}
.m136_c00446{transform:matrix(0.058763,0.001941,-0.008254,0.249864,0,0);-ms-transform:matrix(0.058763,0.001941,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.058763,0.001941,-0.008254,0.249864,0,0);}
.m7c_c00446{transform:matrix(0.118722,0.004159,-0.008753,0.249847,0,0);-ms-transform:matrix(0.118722,0.004159,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.118722,0.004159,-0.008753,0.249847,0,0);}
.mb_c00446{transform:matrix(0.119451,0.003584,-0.007497,0.249888,0,0);-ms-transform:matrix(0.119451,0.003584,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.119451,0.003584,-0.007497,0.249888,0,0);}
.m151_c00446{transform:matrix(0.148006,0.003996,-0.006748,0.249909,0,0);-ms-transform:matrix(0.148006,0.003996,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.148006,0.003996,-0.006748,0.249909,0,0);}
.m4_c00446{transform:matrix(0.148778,0.004463,-0.007497,0.249888,0,0);-ms-transform:matrix(0.148778,0.004463,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.148778,0.004463,-0.007497,0.249888,0,0);}
.m14a_c00446{transform:matrix(0.151105,0.004080,-0.006748,0.249909,0,0);-ms-transform:matrix(0.151105,0.004080,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.151105,0.004080,-0.006748,0.249909,0,0);}
.m2_c00446{transform:matrix(0.152776,0.004583,-0.007497,0.249888,0,0);-ms-transform:matrix(0.152776,0.004583,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.152776,0.004583,-0.007497,0.249888,0,0);}
.m14e_c00446{transform:matrix(0.154369,0.004168,-0.006748,0.249909,0,0);-ms-transform:matrix(0.154369,0.004168,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.154369,0.004168,-0.006748,0.249909,0,0);}
.m14c_c00446{transform:matrix(0.156298,0.004220,-0.006748,0.249909,0,0);-ms-transform:matrix(0.156298,0.004220,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.156298,0.004220,-0.006748,0.249909,0,0);}
.m1_c00446{transform:matrix(0.156854,0.004706,-0.007497,0.249888,0,0);-ms-transform:matrix(0.156854,0.004706,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.156854,0.004706,-0.007497,0.249888,0,0);}
.mf7_c00446{transform:matrix(0.157514,0.005361,-0.008504,0.249855,0,0);-ms-transform:matrix(0.157514,0.005361,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.157514,0.005361,-0.008504,0.249855,0,0);}
.m150_c00446{transform:matrix(0.161126,0.004350,-0.006748,0.249909,0,0);-ms-transform:matrix(0.161126,0.004350,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.161126,0.004350,-0.006748,0.249909,0,0);}
.m9_c00446{transform:matrix(0.162442,0.004873,-0.007497,0.249888,0,0);-ms-transform:matrix(0.162442,0.004873,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.162442,0.004873,-0.007497,0.249888,0,0);}
.m88_c00446{transform:matrix(0.163585,0.005731,-0.008753,0.249847,0,0);-ms-transform:matrix(0.163585,0.005731,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.163585,0.005731,-0.008753,0.249847,0,0);}
.m14f_c00446{transform:matrix(0.167669,0.004527,-0.006748,0.249909,0,0);-ms-transform:matrix(0.167669,0.004527,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.167669,0.004527,-0.006748,0.249909,0,0);}
.mfd_c00446{transform:matrix(0.168283,0.005727,-0.008504,0.249855,0,0);-ms-transform:matrix(0.168283,0.005727,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.168283,0.005727,-0.008504,0.249855,0,0);}
.m3_c00446{transform:matrix(0.168464,0.005054,-0.007497,0.249888,0,0);-ms-transform:matrix(0.168464,0.005054,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.168464,0.005054,-0.007497,0.249888,0,0);}
.m156_c00446{transform:matrix(0.169128,0.004566,-0.006748,0.249909,0,0);-ms-transform:matrix(0.169128,0.004566,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.169128,0.004566,-0.006748,0.249909,0,0);}
.m65_c00446{transform:matrix(0.169984,0.004930,-0.007247,0.249895,0,0);-ms-transform:matrix(0.169984,0.004930,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.169984,0.004930,-0.007247,0.249895,0,0);}
.m7_c00446{transform:matrix(0.170803,0.005124,-0.007497,0.249888,0,0);-ms-transform:matrix(0.170803,0.005124,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.170803,0.005124,-0.007497,0.249888,0,0);}
.mbc_c00446{transform:matrix(0.171511,0.005837,-0.008504,0.249855,0,0);-ms-transform:matrix(0.171511,0.005837,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.171511,0.005837,-0.008504,0.249855,0,0);}
.m86_c00446{transform:matrix(0.171815,0.006020,-0.008753,0.249847,0,0);-ms-transform:matrix(0.171815,0.006020,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.171815,0.006020,-0.008753,0.249847,0,0);}
.m6a_c00446{transform:matrix(0.172123,0.004992,-0.007247,0.249895,0,0);-ms-transform:matrix(0.172123,0.004992,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.172123,0.004992,-0.007247,0.249895,0,0);}
.m6c_c00446{transform:matrix(0.175196,0.005081,-0.007247,0.249895,0,0);-ms-transform:matrix(0.175196,0.005081,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.175196,0.005081,-0.007247,0.249895,0,0);}
.m154_c00446{transform:matrix(0.175371,0.004735,-0.006748,0.249909,0,0);-ms-transform:matrix(0.175371,0.004735,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.175371,0.004735,-0.006748,0.249909,0,0);}
.m14d_c00446{transform:matrix(0.175581,0.004741,-0.006748,0.249909,0,0);-ms-transform:matrix(0.175581,0.004741,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.175581,0.004741,-0.006748,0.249909,0,0);}
.m0_c00446{transform:matrix(0.176176,0.005285,-0.007497,0.249888,0,0);-ms-transform:matrix(0.176176,0.005285,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.176176,0.005285,-0.007497,0.249888,0,0);}
.m155_c00446{transform:matrix(0.177275,0.004786,-0.006748,0.249909,0,0);-ms-transform:matrix(0.177275,0.004786,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.177275,0.004786,-0.006748,0.249909,0,0);}
.mf3_c00446{transform:matrix(0.179726,0.006117,-0.008504,0.249855,0,0);-ms-transform:matrix(0.179726,0.006117,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.179726,0.006117,-0.008504,0.249855,0,0);}
.m7a_c00446{transform:matrix(0.180255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180255,0.000000,0.000000,0.250000,0,0);}
.m8_c00446{transform:matrix(0.180514,0.005415,-0.007497,0.249888,0,0);-ms-transform:matrix(0.180514,0.005415,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.180514,0.005415,-0.007497,0.249888,0,0);}
.ma_c00446{transform:matrix(0.181089,0.005433,-0.007497,0.249888,0,0);-ms-transform:matrix(0.181089,0.005433,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.181089,0.005433,-0.007497,0.249888,0,0);}
.m63_c00446{transform:matrix(0.181829,0.005273,-0.007247,0.249895,0,0);-ms-transform:matrix(0.181829,0.005273,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.181829,0.005273,-0.007247,0.249895,0,0);}
.m14b_c00446{transform:matrix(0.182419,0.004925,-0.006748,0.249909,0,0);-ms-transform:matrix(0.182419,0.004925,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.182419,0.004925,-0.006748,0.249909,0,0);}
.m6_c00446{transform:matrix(0.182773,0.005483,-0.007497,0.249888,0,0);-ms-transform:matrix(0.182773,0.005483,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.182773,0.005483,-0.007497,0.249888,0,0);}
.m61_c00446{transform:matrix(0.183158,0.005312,-0.007247,0.249895,0,0);-ms-transform:matrix(0.183158,0.005312,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.183158,0.005312,-0.007247,0.249895,0,0);}
.m5_c00446{transform:matrix(0.183797,0.005514,-0.007497,0.249888,0,0);-ms-transform:matrix(0.183797,0.005514,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.183797,0.005514,-0.007497,0.249888,0,0);}
.m152_c00446{transform:matrix(0.183813,0.004963,-0.006748,0.249909,0,0);-ms-transform:matrix(0.183813,0.004963,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.183813,0.004963,-0.006748,0.249909,0,0);}
.m38_c00446{transform:matrix(0.183923,0.005334,-0.007247,0.249895,0,0);-ms-transform:matrix(0.183923,0.005334,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.183923,0.005334,-0.007247,0.249895,0,0);}
.md7_c00446{transform:matrix(0.184118,0.006266,-0.008504,0.249855,0,0);-ms-transform:matrix(0.184118,0.006266,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.184118,0.006266,-0.008504,0.249855,0,0);}
.mf8_c00446{transform:matrix(0.184978,0.006296,-0.008504,0.249855,0,0);-ms-transform:matrix(0.184978,0.006296,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.184978,0.006296,-0.008504,0.249855,0,0);}
.mf4_c00446{transform:matrix(0.186327,0.006341,-0.008504,0.249855,0,0);-ms-transform:matrix(0.186327,0.006341,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.186327,0.006341,-0.008504,0.249855,0,0);}
.m12b_c00446{transform:matrix(0.186435,0.003356,-0.004499,0.249960,0,0);-ms-transform:matrix(0.186435,0.003356,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.186435,0.003356,-0.004499,0.249960,0,0);}
.mfc_c00446{transform:matrix(0.187876,0.006394,-0.008504,0.249855,0,0);-ms-transform:matrix(0.187876,0.006394,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.187876,0.006394,-0.008504,0.249855,0,0);}
.mbd_c00446{transform:matrix(0.188796,0.006425,-0.008504,0.249855,0,0);-ms-transform:matrix(0.188796,0.006425,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.188796,0.006425,-0.008504,0.249855,0,0);}
.m3b_c00446{transform:matrix(0.189670,0.005500,-0.007247,0.249895,0,0);-ms-transform:matrix(0.189670,0.005500,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.189670,0.005500,-0.007247,0.249895,0,0);}
.m1e_c00446{transform:matrix(0.190099,0.005703,-0.007497,0.249888,0,0);-ms-transform:matrix(0.190099,0.005703,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.190099,0.005703,-0.007497,0.249888,0,0);}
.mf6_c00446{transform:matrix(0.190305,0.006477,-0.008504,0.249855,0,0);-ms-transform:matrix(0.190305,0.006477,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.190305,0.006477,-0.008504,0.249855,0,0);}
.m68_c00446{transform:matrix(0.191210,0.005545,-0.007247,0.249895,0,0);-ms-transform:matrix(0.191210,0.005545,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.191210,0.005545,-0.007247,0.249895,0,0);}
.m6d_c00446{transform:matrix(0.191604,0.005557,-0.007247,0.249895,0,0);-ms-transform:matrix(0.191604,0.005557,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.191604,0.005557,-0.007247,0.249895,0,0);}
.mb9_c00446{transform:matrix(0.191934,0.006532,-0.008504,0.249855,0,0);-ms-transform:matrix(0.191934,0.006532,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.191934,0.006532,-0.008504,0.249855,0,0);}
.mb7_c00446{transform:matrix(0.194038,0.006604,-0.008504,0.249855,0,0);-ms-transform:matrix(0.194038,0.006604,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.194038,0.006604,-0.008504,0.249855,0,0);}
.m7e_c00446{transform:matrix(0.194361,0.006809,-0.008753,0.249847,0,0);-ms-transform:matrix(0.194361,0.006809,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.194361,0.006809,-0.008753,0.249847,0,0);}
.mf5_c00446{transform:matrix(0.194702,0.006627,-0.008504,0.249855,0,0);-ms-transform:matrix(0.194702,0.006627,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.194702,0.006627,-0.008504,0.249855,0,0);}
.m5f_c00446{transform:matrix(0.194858,0.005651,-0.007247,0.249895,0,0);-ms-transform:matrix(0.194858,0.005651,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.194858,0.005651,-0.007247,0.249895,0,0);}
.m125_c00446{transform:matrix(0.195452,0.006652,-0.008504,0.249855,0,0);-ms-transform:matrix(0.195452,0.006652,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.195452,0.006652,-0.008504,0.249855,0,0);}
.m12c_c00446{transform:matrix(0.195848,0.003525,-0.004499,0.249960,0,0);-ms-transform:matrix(0.195848,0.003525,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.195848,0.003525,-0.004499,0.249960,0,0);}
.m35_c00446{transform:matrix(0.196043,0.005685,-0.007247,0.249895,0,0);-ms-transform:matrix(0.196043,0.005685,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.196043,0.005685,-0.007247,0.249895,0,0);}
.m126_c00446{transform:matrix(0.196208,0.003532,-0.004499,0.249960,0,0);-ms-transform:matrix(0.196208,0.003532,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.196208,0.003532,-0.004499,0.249960,0,0);}
.m85_c00446{transform:matrix(0.196265,0.006876,-0.008753,0.249847,0,0);-ms-transform:matrix(0.196265,0.006876,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.196265,0.006876,-0.008753,0.249847,0,0);}
.m153_c00446{transform:matrix(0.196383,0.005302,-0.006748,0.249909,0,0);-ms-transform:matrix(0.196383,0.005302,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.196383,0.005302,-0.006748,0.249909,0,0);}
.m66_c00446{transform:matrix(0.196437,0.005697,-0.007247,0.249895,0,0);-ms-transform:matrix(0.196437,0.005697,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.196437,0.005697,-0.007247,0.249895,0,0);}
.mfb_c00446{transform:matrix(0.197391,0.006718,-0.008504,0.249855,0,0);-ms-transform:matrix(0.197391,0.006718,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.197391,0.006718,-0.008504,0.249855,0,0);}
.m12d_c00446{transform:matrix(0.197423,0.003554,-0.004499,0.249960,0,0);-ms-transform:matrix(0.197423,0.003554,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.197423,0.003554,-0.004499,0.249960,0,0);}
.m127_c00446{transform:matrix(0.197568,0.003556,-0.004499,0.249960,0,0);-ms-transform:matrix(0.197568,0.003556,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.197568,0.003556,-0.004499,0.249960,0,0);}
.ma3_c00446{transform:matrix(0.197647,0.005732,-0.007247,0.249895,0,0);-ms-transform:matrix(0.197647,0.005732,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.197647,0.005732,-0.007247,0.249895,0,0);}
.m83_c00446{transform:matrix(0.198543,0.006956,-0.008753,0.249847,0,0);-ms-transform:matrix(0.198543,0.006956,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.198543,0.006956,-0.008753,0.249847,0,0);}
.m67_c00446{transform:matrix(0.198661,0.005761,-0.007247,0.249895,0,0);-ms-transform:matrix(0.198661,0.005761,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.198661,0.005761,-0.007247,0.249895,0,0);}
.m128_c00446{transform:matrix(0.199553,0.003592,-0.004499,0.249960,0,0);-ms-transform:matrix(0.199553,0.003592,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.199553,0.003592,-0.004499,0.249960,0,0);}
.m3c_c00446{transform:matrix(0.199616,0.005789,-0.007247,0.249895,0,0);-ms-transform:matrix(0.199616,0.005789,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.199616,0.005789,-0.007247,0.249895,0,0);}
.ma4_c00446{transform:matrix(0.200211,0.005806,-0.007247,0.249895,0,0);-ms-transform:matrix(0.200211,0.005806,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.200211,0.005806,-0.007247,0.249895,0,0);}
.m1c_c00446{transform:matrix(0.201060,0.006032,-0.007497,0.249888,0,0);-ms-transform:matrix(0.201060,0.006032,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.201060,0.006032,-0.007497,0.249888,0,0);}
.ma1_c00446{transform:matrix(0.201160,0.005834,-0.007247,0.249895,0,0);-ms-transform:matrix(0.201160,0.005834,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.201160,0.005834,-0.007247,0.249895,0,0);}
.mf9_c00446{transform:matrix(0.201283,0.006850,-0.008504,0.249855,0,0);-ms-transform:matrix(0.201283,0.006850,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.201283,0.006850,-0.008504,0.249855,0,0);}
.m19_c00446{transform:matrix(0.201384,0.006042,-0.007497,0.249888,0,0);-ms-transform:matrix(0.201384,0.006042,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.201384,0.006042,-0.007497,0.249888,0,0);}
.md2_c00446{transform:matrix(0.201418,0.006855,-0.008504,0.249855,0,0);-ms-transform:matrix(0.201418,0.006855,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.201418,0.006855,-0.008504,0.249855,0,0);}
.m69_c00446{transform:matrix(0.201450,0.005842,-0.007247,0.249895,0,0);-ms-transform:matrix(0.201450,0.005842,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.201450,0.005842,-0.007247,0.249895,0,0);}
.m8a_c00446{transform:matrix(0.202281,0.007087,-0.008753,0.249847,0,0);-ms-transform:matrix(0.202281,0.007087,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.202281,0.007087,-0.008753,0.249847,0,0);}
.m131_c00446{transform:matrix(0.202295,0.006682,-0.008254,0.249864,0,0);-ms-transform:matrix(0.202295,0.006682,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.202295,0.006682,-0.008254,0.249864,0,0);}
.mdc_c00446{transform:matrix(0.203127,0.006913,-0.008504,0.249855,0,0);-ms-transform:matrix(0.203127,0.006913,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.203127,0.006913,-0.008504,0.249855,0,0);}
.m64_c00446{transform:matrix(0.203714,0.005908,-0.007247,0.249895,0,0);-ms-transform:matrix(0.203714,0.005908,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.203714,0.005908,-0.007247,0.249895,0,0);}
.md5_c00446{transform:matrix(0.203737,0.006934,-0.008504,0.249855,0,0);-ms-transform:matrix(0.203737,0.006934,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.203737,0.006934,-0.008504,0.249855,0,0);}
.m3a_c00446{transform:matrix(0.203774,0.005909,-0.007247,0.249895,0,0);-ms-transform:matrix(0.203774,0.005909,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.203774,0.005909,-0.007247,0.249895,0,0);}
.mdd_c00446{transform:matrix(0.204197,0.006950,-0.008504,0.249855,0,0);-ms-transform:matrix(0.204197,0.006950,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.204197,0.006950,-0.008504,0.249855,0,0);}
.m81_c00446{transform:matrix(0.204230,0.007155,-0.008753,0.249847,0,0);-ms-transform:matrix(0.204230,0.007155,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.204230,0.007155,-0.008753,0.249847,0,0);}
.m5a_c00446{transform:matrix(0.204374,0.005927,-0.007247,0.249895,0,0);-ms-transform:matrix(0.204374,0.005927,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.204374,0.005927,-0.007247,0.249895,0,0);}
.m80_c00446{transform:matrix(0.204584,0.007168,-0.008753,0.249847,0,0);-ms-transform:matrix(0.204584,0.007168,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.204584,0.007168,-0.008753,0.249847,0,0);}
.m148_c00446{transform:matrix(0.205465,0.005548,-0.006748,0.249909,0,0);-ms-transform:matrix(0.205465,0.005548,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.205465,0.005548,-0.006748,0.249909,0,0);}
.m11f_c00446{transform:matrix(0.205506,0.006994,-0.008504,0.249855,0,0);-ms-transform:matrix(0.205506,0.006994,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.205506,0.006994,-0.008504,0.249855,0,0);}
.mb6_c00446{transform:matrix(0.205511,0.006994,-0.008504,0.249855,0,0);-ms-transform:matrix(0.205511,0.006994,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.205511,0.006994,-0.008504,0.249855,0,0);}
.m1b_c00446{transform:matrix(0.205543,0.006166,-0.007497,0.249888,0,0);-ms-transform:matrix(0.205543,0.006166,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.205543,0.006166,-0.007497,0.249888,0,0);}
.m7d_c00446{transform:matrix(0.205554,0.007202,-0.008753,0.249847,0,0);-ms-transform:matrix(0.205554,0.007202,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.205554,0.007202,-0.008753,0.249847,0,0);}
.mb4_c00446{transform:matrix(0.206710,0.007035,-0.008504,0.249855,0,0);-ms-transform:matrix(0.206710,0.007035,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.206710,0.007035,-0.008504,0.249855,0,0);}
.mb8_c00446{transform:matrix(0.206910,0.007042,-0.008504,0.249855,0,0);-ms-transform:matrix(0.206910,0.007042,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.206910,0.007042,-0.008504,0.249855,0,0);}
.m58_c00446{transform:matrix(0.207153,0.006007,-0.007247,0.249895,0,0);-ms-transform:matrix(0.207153,0.006007,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.207153,0.006007,-0.007247,0.249895,0,0);}
.mff_c00446{transform:matrix(0.207275,0.007054,-0.008504,0.249855,0,0);-ms-transform:matrix(0.207275,0.007054,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.207275,0.007054,-0.008504,0.249855,0,0);}
.ma5_c00446{transform:matrix(0.207338,0.006013,-0.007247,0.249895,0,0);-ms-transform:matrix(0.207338,0.006013,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.207338,0.006013,-0.007247,0.249895,0,0);}
.mb5_c00446{transform:matrix(0.207530,0.007063,-0.008504,0.249855,0,0);-ms-transform:matrix(0.207530,0.007063,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.207530,0.007063,-0.008504,0.249855,0,0);}
.m6b_c00446{transform:matrix(0.207893,0.006029,-0.007247,0.249895,0,0);-ms-transform:matrix(0.207893,0.006029,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.207893,0.006029,-0.007247,0.249895,0,0);}
.m11e_c00446{transform:matrix(0.207955,0.007078,-0.008504,0.249855,0,0);-ms-transform:matrix(0.207955,0.007078,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.207955,0.007078,-0.008504,0.249855,0,0);}
.mbb_c00446{transform:matrix(0.208005,0.007079,-0.008504,0.249855,0,0);-ms-transform:matrix(0.208005,0.007079,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.208005,0.007079,-0.008504,0.249855,0,0);}
.m8e_c00446{transform:matrix(0.208547,0.007306,-0.008753,0.249847,0,0);-ms-transform:matrix(0.208547,0.007306,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.208547,0.007306,-0.008753,0.249847,0,0);}
.m62_c00446{transform:matrix(0.209007,0.006061,-0.007247,0.249895,0,0);-ms-transform:matrix(0.209007,0.006061,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.209007,0.006061,-0.007247,0.249895,0,0);}
.mba_c00446{transform:matrix(0.209154,0.007118,-0.008504,0.249855,0,0);-ms-transform:matrix(0.209154,0.007118,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.209154,0.007118,-0.008504,0.249855,0,0);}
.m18_c00446{transform:matrix(0.209296,0.006279,-0.007497,0.249888,0,0);-ms-transform:matrix(0.209296,0.006279,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.209296,0.006279,-0.007497,0.249888,0,0);}
.m129_c00446{transform:matrix(0.209986,0.003780,-0.004499,0.249960,0,0);-ms-transform:matrix(0.209986,0.003780,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.209986,0.003780,-0.004499,0.249960,0,0);}
.m22_c00446{transform:matrix(0.210300,0.006309,-0.007497,0.249888,0,0);-ms-transform:matrix(0.210300,0.006309,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.210300,0.006309,-0.007497,0.249888,0,0);}
.m12a_c00446{transform:matrix(0.211271,0.003803,-0.004499,0.249960,0,0);-ms-transform:matrix(0.211271,0.003803,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.211271,0.003803,-0.004499,0.249960,0,0);}
.m4a_c00446{transform:matrix(0.212111,0.006151,-0.007247,0.249895,0,0);-ms-transform:matrix(0.212111,0.006151,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.212111,0.006151,-0.007247,0.249895,0,0);}
.m118_c00446{transform:matrix(0.212387,0.007228,-0.008504,0.249855,0,0);-ms-transform:matrix(0.212387,0.007228,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.212387,0.007228,-0.008504,0.249855,0,0);}
.m2a_c00446{transform:matrix(0.212414,0.006372,-0.007497,0.249888,0,0);-ms-transform:matrix(0.212414,0.006372,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.212414,0.006372,-0.007497,0.249888,0,0);}
.m89_c00446{transform:matrix(0.212829,0.007456,-0.008753,0.249847,0,0);-ms-transform:matrix(0.212829,0.007456,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.212829,0.007456,-0.008753,0.249847,0,0);}
.m102_c00446{transform:matrix(0.213012,0.007250,-0.008504,0.249855,0,0);-ms-transform:matrix(0.213012,0.007250,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.213012,0.007250,-0.008504,0.249855,0,0);}
.ma8_c00446{transform:matrix(0.213240,0.006184,-0.007247,0.249895,0,0);-ms-transform:matrix(0.213240,0.006184,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.213240,0.006184,-0.007247,0.249895,0,0);}
.mfa_c00446{transform:matrix(0.213701,0.007273,-0.008504,0.249855,0,0);-ms-transform:matrix(0.213701,0.007273,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.213701,0.007273,-0.008504,0.249855,0,0);}
.mde_c00446{transform:matrix(0.214131,0.007288,-0.008504,0.249855,0,0);-ms-transform:matrix(0.214131,0.007288,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.214131,0.007288,-0.008504,0.249855,0,0);}
.md4_c00446{transform:matrix(0.214296,0.007293,-0.008504,0.249855,0,0);-ms-transform:matrix(0.214296,0.007293,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.214296,0.007293,-0.008504,0.249855,0,0);}
.m116_c00446{transform:matrix(0.215026,0.007318,-0.008504,0.249855,0,0);-ms-transform:matrix(0.215026,0.007318,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.215026,0.007318,-0.008504,0.249855,0,0);}
.m7b_c00446{transform:matrix(0.215270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215270,0.000000,0.000000,0.250000,0,0);}
.m1a_c00446{transform:matrix(0.215428,0.006463,-0.007497,0.249888,0,0);-ms-transform:matrix(0.215428,0.006463,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.215428,0.006463,-0.007497,0.249888,0,0);}
.m10a_c00446{transform:matrix(0.215590,0.007337,-0.008504,0.249855,0,0);-ms-transform:matrix(0.215590,0.007337,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.215590,0.007337,-0.008504,0.249855,0,0);}
.m7f_c00446{transform:matrix(0.215873,0.007563,-0.008753,0.249847,0,0);-ms-transform:matrix(0.215873,0.007563,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.215873,0.007563,-0.008753,0.249847,0,0);}
.m94_c00446{transform:matrix(0.216202,0.007575,-0.008753,0.249847,0,0);-ms-transform:matrix(0.216202,0.007575,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.216202,0.007575,-0.008753,0.249847,0,0);}
.ma2_c00446{transform:matrix(0.216214,0.006270,-0.007247,0.249895,0,0);-ms-transform:matrix(0.216214,0.006270,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.216214,0.006270,-0.007247,0.249895,0,0);}
.m87_c00446{transform:matrix(0.217362,0.007615,-0.008753,0.249847,0,0);-ms-transform:matrix(0.217362,0.007615,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.217362,0.007615,-0.008753,0.249847,0,0);}
.m111_c00446{transform:matrix(0.217399,0.007399,-0.008504,0.249855,0,0);-ms-transform:matrix(0.217399,0.007399,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.217399,0.007399,-0.008504,0.249855,0,0);}
.m1d_c00446{transform:matrix(0.217432,0.006523,-0.007497,0.249888,0,0);-ms-transform:matrix(0.217432,0.006523,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.217432,0.006523,-0.007497,0.249888,0,0);}
.m143_c00446{transform:matrix(0.217541,0.005874,-0.006748,0.249909,0,0);-ms-transform:matrix(0.217541,0.005874,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.217541,0.005874,-0.006748,0.249909,0,0);}
.m10c_c00446{transform:matrix(0.217644,0.007407,-0.008504,0.249855,0,0);-ms-transform:matrix(0.217644,0.007407,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.217644,0.007407,-0.008504,0.249855,0,0);}
.m122_c00446{transform:matrix(0.218334,0.007431,-0.008504,0.249855,0,0);-ms-transform:matrix(0.218334,0.007431,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.218334,0.007431,-0.008504,0.249855,0,0);}
.m36_c00446{transform:matrix(0.218603,0.006339,-0.007247,0.249895,0,0);-ms-transform:matrix(0.218603,0.006339,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.218603,0.006339,-0.007247,0.249895,0,0);}
.m142_c00446{transform:matrix(0.218860,0.005909,-0.006748,0.249909,0,0);-ms-transform:matrix(0.218860,0.005909,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.218860,0.005909,-0.006748,0.249909,0,0);}
.m121_c00446{transform:matrix(0.219463,0.007469,-0.008504,0.249855,0,0);-ms-transform:matrix(0.219463,0.007469,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.219463,0.007469,-0.008504,0.249855,0,0);}
.m124_c00446{transform:matrix(0.219483,0.007470,-0.008504,0.249855,0,0);-ms-transform:matrix(0.219483,0.007470,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.219483,0.007470,-0.008504,0.249855,0,0);}
.mfe_c00446{transform:matrix(0.219918,0.007485,-0.008504,0.249855,0,0);-ms-transform:matrix(0.219918,0.007485,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.219918,0.007485,-0.008504,0.249855,0,0);}
.m113_c00446{transform:matrix(0.220063,0.007490,-0.008504,0.249855,0,0);-ms-transform:matrix(0.220063,0.007490,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.220063,0.007490,-0.008504,0.249855,0,0);}
.m5d_c00446{transform:matrix(0.220082,0.006382,-0.007247,0.249895,0,0);-ms-transform:matrix(0.220082,0.006382,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.220082,0.006382,-0.007247,0.249895,0,0);}
.m2e_c00446{transform:matrix(0.220091,0.006603,-0.007497,0.249888,0,0);-ms-transform:matrix(0.220091,0.006603,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.220091,0.006603,-0.007497,0.249888,0,0);}
.m34_c00446{transform:matrix(0.221052,0.006411,-0.007247,0.249895,0,0);-ms-transform:matrix(0.221052,0.006411,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.221052,0.006411,-0.007247,0.249895,0,0);}
.m29_c00446{transform:matrix(0.221205,0.006636,-0.007497,0.249888,0,0);-ms-transform:matrix(0.221205,0.006636,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.221205,0.006636,-0.007497,0.249888,0,0);}
.m107_c00446{transform:matrix(0.222301,0.007566,-0.008504,0.249855,0,0);-ms-transform:matrix(0.222301,0.007566,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.222301,0.007566,-0.008504,0.249855,0,0);}
.m26_c00446{transform:matrix(0.222325,0.006670,-0.007497,0.249888,0,0);-ms-transform:matrix(0.222325,0.006670,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.222325,0.006670,-0.007497,0.249888,0,0);}
.m11_c00446{transform:matrix(0.222525,0.006676,-0.007497,0.249888,0,0);-ms-transform:matrix(0.222525,0.006676,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.222525,0.006676,-0.007497,0.249888,0,0);}
.m25_c00446{transform:matrix(0.223305,0.006699,-0.007497,0.249888,0,0);-ms-transform:matrix(0.223305,0.006699,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.223305,0.006699,-0.007497,0.249888,0,0);}
.m134_c00446{transform:matrix(0.223343,0.007378,-0.008254,0.249864,0,0);-ms-transform:matrix(0.223343,0.007378,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.223343,0.007378,-0.008254,0.249864,0,0);}
.m11c_c00446{transform:matrix(0.223765,0.007616,-0.008504,0.249855,0,0);-ms-transform:matrix(0.223765,0.007616,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.223765,0.007616,-0.008504,0.249855,0,0);}
.md1_c00446{transform:matrix(0.223900,0.007620,-0.008504,0.249855,0,0);-ms-transform:matrix(0.223900,0.007620,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.223900,0.007620,-0.008504,0.249855,0,0);}
.m60_c00446{transform:matrix(0.223951,0.006495,-0.007247,0.249895,0,0);-ms-transform:matrix(0.223951,0.006495,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.223951,0.006495,-0.007247,0.249895,0,0);}
.m2c_c00446{transform:matrix(0.223969,0.006719,-0.007497,0.249888,0,0);-ms-transform:matrix(0.223969,0.006719,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.223969,0.006719,-0.007497,0.249888,0,0);}
.m4c_c00446{transform:matrix(0.223976,0.006495,-0.007247,0.249895,0,0);-ms-transform:matrix(0.223976,0.006495,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.223976,0.006495,-0.007247,0.249895,0,0);}
.ma7_c00446{transform:matrix(0.224541,0.006512,-0.007247,0.249895,0,0);-ms-transform:matrix(0.224541,0.006512,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.224541,0.006512,-0.007247,0.249895,0,0);}
.mb0_c00446{transform:matrix(0.224605,0.007644,-0.008504,0.249855,0,0);-ms-transform:matrix(0.224605,0.007644,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.224605,0.007644,-0.008504,0.249855,0,0);}
.md6_c00446{transform:matrix(0.224860,0.007653,-0.008504,0.249855,0,0);-ms-transform:matrix(0.224860,0.007653,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.224860,0.007653,-0.008504,0.249855,0,0);}
.m147_c00446{transform:matrix(0.224918,0.006073,-0.006748,0.249909,0,0);-ms-transform:matrix(0.224918,0.006073,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.224918,0.006073,-0.006748,0.249909,0,0);}
.m39_c00446{transform:matrix(0.224970,0.006524,-0.007247,0.249895,0,0);-ms-transform:matrix(0.224970,0.006524,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.224970,0.006524,-0.007247,0.249895,0,0);}
.m10d_c00446{transform:matrix(0.225185,0.007664,-0.008504,0.249855,0,0);-ms-transform:matrix(0.225185,0.007664,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.225185,0.007664,-0.008504,0.249855,0,0);}
.m4f_c00446{transform:matrix(0.225250,0.006532,-0.007247,0.249895,0,0);-ms-transform:matrix(0.225250,0.006532,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.225250,0.006532,-0.007247,0.249895,0,0);}
.m123_c00446{transform:matrix(0.225340,0.007669,-0.008504,0.249855,0,0);-ms-transform:matrix(0.225340,0.007669,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.225340,0.007669,-0.008504,0.249855,0,0);}
.m82_c00446{transform:matrix(0.225342,0.007895,-0.008753,0.249847,0,0);-ms-transform:matrix(0.225342,0.007895,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.225342,0.007895,-0.008753,0.249847,0,0);}
.ma0_c00446{transform:matrix(0.225465,0.006538,-0.007247,0.249895,0,0);-ms-transform:matrix(0.225465,0.006538,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.225465,0.006538,-0.007247,0.249895,0,0);}
.mdb_c00446{transform:matrix(0.225604,0.007678,-0.008504,0.249855,0,0);-ms-transform:matrix(0.225604,0.007678,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.225604,0.007678,-0.008504,0.249855,0,0);}
.m57_c00446{transform:matrix(0.226910,0.006580,-0.007247,0.249895,0,0);-ms-transform:matrix(0.226910,0.006580,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.226910,0.006580,-0.007247,0.249895,0,0);}
.m106_c00446{transform:matrix(0.227153,0.007731,-0.008504,0.249855,0,0);-ms-transform:matrix(0.227153,0.007731,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.227153,0.007731,-0.008504,0.249855,0,0);}
.m3d_c00446{transform:matrix(0.227544,0.006599,-0.007247,0.249895,0,0);-ms-transform:matrix(0.227544,0.006599,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.227544,0.006599,-0.007247,0.249895,0,0);}
.m3e_c00446{transform:matrix(0.227694,0.006603,-0.007247,0.249895,0,0);-ms-transform:matrix(0.227694,0.006603,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.227694,0.006603,-0.007247,0.249895,0,0);}
.m46_c00446{transform:matrix(0.227994,0.006612,-0.007247,0.249895,0,0);-ms-transform:matrix(0.227994,0.006612,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.227994,0.006612,-0.007247,0.249895,0,0);}
.mc8_c00446{transform:matrix(0.228028,0.007761,-0.008504,0.249855,0,0);-ms-transform:matrix(0.228028,0.007761,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.228028,0.007761,-0.008504,0.249855,0,0);}
.m16_c00446{transform:matrix(0.228032,0.006841,-0.007497,0.249888,0,0);-ms-transform:matrix(0.228032,0.006841,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.228032,0.006841,-0.007497,0.249888,0,0);}
.m32_c00446{transform:matrix(0.228192,0.006846,-0.007497,0.249888,0,0);-ms-transform:matrix(0.228192,0.006846,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.228192,0.006846,-0.007497,0.249888,0,0);}
.m105_c00446{transform:matrix(0.228223,0.007767,-0.008504,0.249855,0,0);-ms-transform:matrix(0.228223,0.007767,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.228223,0.007767,-0.008504,0.249855,0,0);}
.m91_c00446{transform:matrix(0.228330,0.008000,-0.008753,0.249847,0,0);-ms-transform:matrix(0.228330,0.008000,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.228330,0.008000,-0.008753,0.249847,0,0);}
.m21_c00446{transform:matrix(0.228502,0.006855,-0.007497,0.249888,0,0);-ms-transform:matrix(0.228502,0.006855,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.228502,0.006855,-0.007497,0.249888,0,0);}
.mcf_c00446{transform:matrix(0.228683,0.007783,-0.008504,0.249855,0,0);-ms-transform:matrix(0.228683,0.007783,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.228683,0.007783,-0.008504,0.249855,0,0);}
.m11a_c00446{transform:matrix(0.230057,0.007830,-0.008504,0.249855,0,0);-ms-transform:matrix(0.230057,0.007830,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.230057,0.007830,-0.008504,0.249855,0,0);}
.mae_c00446{transform:matrix(0.230082,0.007831,-0.008504,0.249855,0,0);-ms-transform:matrix(0.230082,0.007831,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.230082,0.007831,-0.008504,0.249855,0,0);}
.m54_c00446{transform:matrix(0.230798,0.006693,-0.007247,0.249895,0,0);-ms-transform:matrix(0.230798,0.006693,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.230798,0.006693,-0.007247,0.249895,0,0);}
.md8_c00446{transform:matrix(0.231296,0.007872,-0.008504,0.249855,0,0);-ms-transform:matrix(0.231296,0.007872,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.231296,0.007872,-0.008504,0.249855,0,0);}
.mc9_c00446{transform:matrix(0.231301,0.007872,-0.008504,0.249855,0,0);-ms-transform:matrix(0.231301,0.007872,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.231301,0.007872,-0.008504,0.249855,0,0);}
.m20_c00446{transform:matrix(0.231336,0.006940,-0.007497,0.249888,0,0);-ms-transform:matrix(0.231336,0.006940,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.231336,0.006940,-0.007497,0.249888,0,0);}
.m15_c00446{transform:matrix(0.231536,0.006946,-0.007497,0.249888,0,0);-ms-transform:matrix(0.231536,0.006946,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.231536,0.006946,-0.007497,0.249888,0,0);}
.me6_c00446{transform:matrix(0.232151,0.007901,-0.008504,0.249855,0,0);-ms-transform:matrix(0.232151,0.007901,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.232151,0.007901,-0.008504,0.249855,0,0);}
.m23_c00446{transform:matrix(0.232530,0.006976,-0.007497,0.249888,0,0);-ms-transform:matrix(0.232530,0.006976,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.232530,0.006976,-0.007497,0.249888,0,0);}
.m5b_c00446{transform:matrix(0.232587,0.006745,-0.007247,0.249895,0,0);-ms-transform:matrix(0.232587,0.006745,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.232587,0.006745,-0.007247,0.249895,0,0);}
.m90_c00446{transform:matrix(0.233222,0.008171,-0.008753,0.249847,0,0);-ms-transform:matrix(0.233222,0.008171,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.233222,0.008171,-0.008753,0.249847,0,0);}
.m133_c00446{transform:matrix(0.234562,0.007748,-0.008254,0.249864,0,0);-ms-transform:matrix(0.234562,0.007748,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.234562,0.007748,-0.008254,0.249864,0,0);}
.m120_c00446{transform:matrix(0.234584,0.007984,-0.008504,0.249855,0,0);-ms-transform:matrix(0.234584,0.007984,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.234584,0.007984,-0.008504,0.249855,0,0);}
.m3f_c00446{transform:matrix(0.234981,0.006814,-0.007247,0.249895,0,0);-ms-transform:matrix(0.234981,0.006814,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.234981,0.006814,-0.007247,0.249895,0,0);}
.mda_c00446{transform:matrix(0.235194,0.008005,-0.008504,0.249855,0,0);-ms-transform:matrix(0.235194,0.008005,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.235194,0.008005,-0.008504,0.249855,0,0);}
.m30_c00446{transform:matrix(0.235649,0.007069,-0.007497,0.249888,0,0);-ms-transform:matrix(0.235649,0.007069,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.235649,0.007069,-0.007497,0.249888,0,0);}
.m112_c00446{transform:matrix(0.235714,0.008022,-0.008504,0.249855,0,0);-ms-transform:matrix(0.235714,0.008022,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.235714,0.008022,-0.008504,0.249855,0,0);}
.me1_c00446{transform:matrix(0.235778,0.008024,-0.008504,0.249855,0,0);-ms-transform:matrix(0.235778,0.008024,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.235778,0.008024,-0.008504,0.249855,0,0);}
.m13_c00446{transform:matrix(0.235904,0.007077,-0.007497,0.249888,0,0);-ms-transform:matrix(0.235904,0.007077,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.235904,0.007077,-0.007497,0.249888,0,0);}
.m37_c00446{transform:matrix(0.235971,0.006843,-0.007247,0.249895,0,0);-ms-transform:matrix(0.235971,0.006843,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.235971,0.006843,-0.007247,0.249895,0,0);}
.md3_c00446{transform:matrix(0.236258,0.008041,-0.008504,0.249855,0,0);-ms-transform:matrix(0.236258,0.008041,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.236258,0.008041,-0.008504,0.249855,0,0);}
.mcd_c00446{transform:matrix(0.236308,0.008043,-0.008504,0.249855,0,0);-ms-transform:matrix(0.236308,0.008043,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.236308,0.008043,-0.008504,0.249855,0,0);}
.m59_c00446{transform:matrix(0.236556,0.006860,-0.007247,0.249895,0,0);-ms-transform:matrix(0.236556,0.006860,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.236556,0.006860,-0.007247,0.249895,0,0);}
.m11d_c00446{transform:matrix(0.236613,0.008053,-0.008504,0.249855,0,0);-ms-transform:matrix(0.236613,0.008053,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.236613,0.008053,-0.008504,0.249855,0,0);}
.m12e_c00446{transform:matrix(0.236741,0.007820,-0.008254,0.249864,0,0);-ms-transform:matrix(0.236741,0.007820,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.236741,0.007820,-0.008254,0.249864,0,0);}
.ma6_c00446{transform:matrix(0.237085,0.006875,-0.007247,0.249895,0,0);-ms-transform:matrix(0.237085,0.006875,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.237085,0.006875,-0.007247,0.249895,0,0);}
.m5e_c00446{transform:matrix(0.237500,0.006888,-0.007247,0.249895,0,0);-ms-transform:matrix(0.237500,0.006888,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.237500,0.006888,-0.007247,0.249895,0,0);}
.m114_c00446{transform:matrix(0.237902,0.008097,-0.008504,0.249855,0,0);-ms-transform:matrix(0.237902,0.008097,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.237902,0.008097,-0.008504,0.249855,0,0);}
.me_c00446{transform:matrix(0.238428,0.007153,-0.007497,0.249888,0,0);-ms-transform:matrix(0.238428,0.007153,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.238428,0.007153,-0.007497,0.249888,0,0);}
.m11b_c00446{transform:matrix(0.238517,0.008118,-0.008504,0.249855,0,0);-ms-transform:matrix(0.238517,0.008118,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.238517,0.008118,-0.008504,0.249855,0,0);}
.m5c_c00446{transform:matrix(0.238540,0.006918,-0.007247,0.249895,0,0);-ms-transform:matrix(0.238540,0.006918,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.238540,0.006918,-0.007247,0.249895,0,0);}
.md9_c00446{transform:matrix(0.238662,0.008123,-0.008504,0.249855,0,0);-ms-transform:matrix(0.238662,0.008123,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.238662,0.008123,-0.008504,0.249855,0,0);}
.m104_c00446{transform:matrix(0.238987,0.008134,-0.008504,0.249855,0,0);-ms-transform:matrix(0.238987,0.008134,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.238987,0.008134,-0.008504,0.249855,0,0);}
.mac_c00446{transform:matrix(0.239771,0.008160,-0.008504,0.249855,0,0);-ms-transform:matrix(0.239771,0.008160,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.239771,0.008160,-0.008504,0.249855,0,0);}
.m97_c00446{transform:matrix(0.240194,0.006966,-0.007247,0.249895,0,0);-ms-transform:matrix(0.240194,0.006966,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.240194,0.006966,-0.007247,0.249895,0,0);}
.mab_c00446{transform:matrix(0.240236,0.008176,-0.008504,0.249855,0,0);-ms-transform:matrix(0.240236,0.008176,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.240236,0.008176,-0.008504,0.249855,0,0);}
.m27_c00446{transform:matrix(0.240282,0.007208,-0.007497,0.249888,0,0);-ms-transform:matrix(0.240282,0.007208,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.240282,0.007208,-0.007497,0.249888,0,0);}
.m9c_c00446{transform:matrix(0.240674,0.006980,-0.007247,0.249895,0,0);-ms-transform:matrix(0.240674,0.006980,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.240674,0.006980,-0.007247,0.249895,0,0);}
.m109_c00446{transform:matrix(0.240786,0.008195,-0.008504,0.249855,0,0);-ms-transform:matrix(0.240786,0.008195,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.240786,0.008195,-0.008504,0.249855,0,0);}
.m10b_c00446{transform:matrix(0.240980,0.008202,-0.008504,0.249855,0,0);-ms-transform:matrix(0.240980,0.008202,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.240980,0.008202,-0.008504,0.249855,0,0);}
.m28_c00446{transform:matrix(0.241401,0.007242,-0.007497,0.249888,0,0);-ms-transform:matrix(0.241401,0.007242,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.241401,0.007242,-0.007497,0.249888,0,0);}
.md0_c00446{transform:matrix(0.241480,0.008219,-0.008504,0.249855,0,0);-ms-transform:matrix(0.241480,0.008219,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.241480,0.008219,-0.008504,0.249855,0,0);}
.m141_c00446{transform:matrix(0.241502,0.006521,-0.006748,0.249909,0,0);-ms-transform:matrix(0.241502,0.006521,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.241502,0.006521,-0.006748,0.249909,0,0);}
.m1f_c00446{transform:matrix(0.241576,0.007247,-0.007497,0.249888,0,0);-ms-transform:matrix(0.241576,0.007247,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.241576,0.007247,-0.007497,0.249888,0,0);}
.m12f_c00446{transform:matrix(0.241663,0.007983,-0.008254,0.249864,0,0);-ms-transform:matrix(0.241663,0.007983,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.241663,0.007983,-0.008254,0.249864,0,0);}
.m110_c00446{transform:matrix(0.241675,0.008225,-0.008504,0.249855,0,0);-ms-transform:matrix(0.241675,0.008225,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.241675,0.008225,-0.008504,0.249855,0,0);}
.mad_c00446{transform:matrix(0.241800,0.008229,-0.008504,0.249855,0,0);-ms-transform:matrix(0.241800,0.008229,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.241800,0.008229,-0.008504,0.249855,0,0);}
.m10e_c00446{transform:matrix(0.242190,0.008243,-0.008504,0.249855,0,0);-ms-transform:matrix(0.242190,0.008243,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.242190,0.008243,-0.008504,0.249855,0,0);}
.m40_c00446{transform:matrix(0.242413,0.007030,-0.007247,0.249895,0,0);-ms-transform:matrix(0.242413,0.007030,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.242413,0.007030,-0.007247,0.249895,0,0);}
.m100_c00446{transform:matrix(0.243154,0.008276,-0.008504,0.249855,0,0);-ms-transform:matrix(0.243154,0.008276,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.243154,0.008276,-0.008504,0.249855,0,0);}
.m47_c00446{transform:matrix(0.243213,0.007053,-0.007247,0.249895,0,0);-ms-transform:matrix(0.243213,0.007053,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.243213,0.007053,-0.007247,0.249895,0,0);}
.mc6_c00446{transform:matrix(0.243234,0.008278,-0.008504,0.249855,0,0);-ms-transform:matrix(0.243234,0.008278,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.243234,0.008278,-0.008504,0.249855,0,0);}
.mec_c00446{transform:matrix(0.243429,0.008285,-0.008504,0.249855,0,0);-ms-transform:matrix(0.243429,0.008285,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.243429,0.008285,-0.008504,0.249855,0,0);}
.m9f_c00446{transform:matrix(0.243648,0.007066,-0.007247,0.249895,0,0);-ms-transform:matrix(0.243648,0.007066,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.243648,0.007066,-0.007247,0.249895,0,0);}
.mb3_c00446{transform:matrix(0.243954,0.008303,-0.008504,0.249855,0,0);-ms-transform:matrix(0.243954,0.008303,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.243954,0.008303,-0.008504,0.249855,0,0);}
.mc1_c00446{transform:matrix(0.243964,0.008303,-0.008504,0.249855,0,0);-ms-transform:matrix(0.243964,0.008303,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.243964,0.008303,-0.008504,0.249855,0,0);}
.m55_c00446{transform:matrix(0.243992,0.007076,-0.007247,0.249895,0,0);-ms-transform:matrix(0.243992,0.007076,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.243992,0.007076,-0.007247,0.249895,0,0);}
.m144_c00446{transform:matrix(0.244516,0.006602,-0.006748,0.249909,0,0);-ms-transform:matrix(0.244516,0.006602,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.244516,0.006602,-0.006748,0.249909,0,0);}
.m70_c00446{transform:matrix(0.245002,0.007105,-0.007247,0.249895,0,0);-ms-transform:matrix(0.245002,0.007105,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.245002,0.007105,-0.007247,0.249895,0,0);}
.m8f_c00446{transform:matrix(0.245005,0.008584,-0.008753,0.249847,0,0);-ms-transform:matrix(0.245005,0.008584,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.245005,0.008584,-0.008753,0.249847,0,0);}
.m2d_c00446{transform:matrix(0.245095,0.007353,-0.007497,0.249888,0,0);-ms-transform:matrix(0.245095,0.007353,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.245095,0.007353,-0.007497,0.249888,0,0);}
.m92_c00446{transform:matrix(0.245619,0.008605,-0.008753,0.249847,0,0);-ms-transform:matrix(0.245619,0.008605,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.245619,0.008605,-0.008753,0.249847,0,0);}
.m24_c00446{transform:matrix(0.246089,0.007383,-0.007497,0.249888,0,0);-ms-transform:matrix(0.246089,0.007383,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.246089,0.007383,-0.007497,0.249888,0,0);}
.m95_c00446{transform:matrix(0.246626,0.007152,-0.007247,0.249895,0,0);-ms-transform:matrix(0.246626,0.007152,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.246626,0.007152,-0.007247,0.249895,0,0);}
.m84_c00446{transform:matrix(0.247113,0.008658,-0.008753,0.249847,0,0);-ms-transform:matrix(0.247113,0.008658,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.247113,0.008658,-0.008753,0.249847,0,0);}
.m50_c00446{transform:matrix(0.247581,0.007180,-0.007247,0.249895,0,0);-ms-transform:matrix(0.247581,0.007180,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.247581,0.007180,-0.007247,0.249895,0,0);}
.m101_c00446{transform:matrix(0.248736,0.008465,-0.008504,0.249855,0,0);-ms-transform:matrix(0.248736,0.008465,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.248736,0.008465,-0.008504,0.249855,0,0);}
.mb2_c00446{transform:matrix(0.248896,0.008471,-0.008504,0.249855,0,0);-ms-transform:matrix(0.248896,0.008471,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.248896,0.008471,-0.008504,0.249855,0,0);}
.m10f_c00446{transform:matrix(0.249186,0.008481,-0.008504,0.249855,0,0);-ms-transform:matrix(0.249186,0.008481,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.249186,0.008481,-0.008504,0.249855,0,0);}
.m2f_c00446{transform:matrix(0.249528,0.007486,-0.007497,0.249888,0,0);-ms-transform:matrix(0.249528,0.007486,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.249528,0.007486,-0.007497,0.249888,0,0);}
.m145_c00446{transform:matrix(0.249604,0.006739,-0.006748,0.249909,0,0);-ms-transform:matrix(0.249604,0.006739,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.249604,0.006739,-0.006748,0.249909,0,0);}
.m130_c00446{transform:matrix(0.249879,0.008254,-0.008254,0.249864,0,0);-ms-transform:matrix(0.249879,0.008254,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.249879,0.008254,-0.008254,0.249864,0,0);}
.m9d_c00446{transform:matrix(0.250050,0.007251,-0.007247,0.249895,0,0);-ms-transform:matrix(0.250050,0.007251,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.250050,0.007251,-0.007247,0.249895,0,0);}
.m103_c00446{transform:matrix(0.250755,0.008534,-0.008504,0.249855,0,0);-ms-transform:matrix(0.250755,0.008534,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.250755,0.008534,-0.008504,0.249855,0,0);}
.m8c_c00446{transform:matrix(0.251031,0.008795,-0.008753,0.249847,0,0);-ms-transform:matrix(0.251031,0.008795,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.251031,0.008795,-0.008753,0.249847,0,0);}
.m93_c00446{transform:matrix(0.251711,0.008819,-0.008753,0.249847,0,0);-ms-transform:matrix(0.251711,0.008819,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.251711,0.008819,-0.008753,0.249847,0,0);}
.m52_c00446{transform:matrix(0.252484,0.007322,-0.007247,0.249895,0,0);-ms-transform:matrix(0.252484,0.007322,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.252484,0.007322,-0.007247,0.249895,0,0);}
.m42_c00446{transform:matrix(0.252739,0.007329,-0.007247,0.249895,0,0);-ms-transform:matrix(0.252739,0.007329,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.252739,0.007329,-0.007247,0.249895,0,0);}
.ma9_c00446{transform:matrix(0.254533,0.008663,-0.008504,0.249855,0,0);-ms-transform:matrix(0.254533,0.008663,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.254533,0.008663,-0.008504,0.249855,0,0);}
.me3_c00446{transform:matrix(0.255162,0.008684,-0.008504,0.249855,0,0);-ms-transform:matrix(0.255162,0.008684,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.255162,0.008684,-0.008504,0.249855,0,0);}
.maa_c00446{transform:matrix(0.255447,0.008694,-0.008504,0.249855,0,0);-ms-transform:matrix(0.255447,0.008694,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.255447,0.008694,-0.008504,0.249855,0,0);}
.m45_c00446{transform:matrix(0.255638,0.007413,-0.007247,0.249895,0,0);-ms-transform:matrix(0.255638,0.007413,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.255638,0.007413,-0.007247,0.249895,0,0);}
.mc_c00446{transform:matrix(0.256100,0.007683,-0.007497,0.249888,0,0);-ms-transform:matrix(0.256100,0.007683,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.256100,0.007683,-0.007497,0.249888,0,0);}
.m117_c00446{transform:matrix(0.256147,0.008718,-0.008504,0.249855,0,0);-ms-transform:matrix(0.256147,0.008718,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.256147,0.008718,-0.008504,0.249855,0,0);}
.m8b_c00446{transform:matrix(0.256203,0.008976,-0.008753,0.249847,0,0);-ms-transform:matrix(0.256203,0.008976,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.256203,0.008976,-0.008753,0.249847,0,0);}
.m108_c00446{transform:matrix(0.256342,0.008724,-0.008504,0.249855,0,0);-ms-transform:matrix(0.256342,0.008724,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.256342,0.008724,-0.008504,0.249855,0,0);}
.m8d_c00446{transform:matrix(0.256608,0.008990,-0.008753,0.249847,0,0);-ms-transform:matrix(0.256608,0.008990,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.256608,0.008990,-0.008753,0.249847,0,0);}
.m76_c00446{transform:matrix(0.256682,0.007444,-0.007247,0.249895,0,0);-ms-transform:matrix(0.256682,0.007444,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.256682,0.007444,-0.007247,0.249895,0,0);}
.m4e_c00446{transform:matrix(0.257072,0.007455,-0.007247,0.249895,0,0);-ms-transform:matrix(0.257072,0.007455,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.257072,0.007455,-0.007247,0.249895,0,0);}
.m4d_c00446{transform:matrix(0.257312,0.007462,-0.007247,0.249895,0,0);-ms-transform:matrix(0.257312,0.007462,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.257312,0.007462,-0.007247,0.249895,0,0);}
.mcb_c00446{transform:matrix(0.257471,0.008763,-0.008504,0.249855,0,0);-ms-transform:matrix(0.257471,0.008763,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.257471,0.008763,-0.008504,0.249855,0,0);}
.mbe_c00446{transform:matrix(0.257551,0.008765,-0.008504,0.249855,0,0);-ms-transform:matrix(0.257551,0.008765,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.257551,0.008765,-0.008504,0.249855,0,0);}
.m2b_c00446{transform:matrix(0.258004,0.007740,-0.007497,0.249888,0,0);-ms-transform:matrix(0.258004,0.007740,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.258004,0.007740,-0.007497,0.249888,0,0);}
.m115_c00446{transform:matrix(0.258111,0.008785,-0.008504,0.249855,0,0);-ms-transform:matrix(0.258111,0.008785,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.258111,0.008785,-0.008504,0.249855,0,0);}
.m73_c00446{transform:matrix(0.258706,0.007502,-0.007247,0.249895,0,0);-ms-transform:matrix(0.258706,0.007502,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.258706,0.007502,-0.007247,0.249895,0,0);}
.m135_c00446{transform:matrix(0.259359,0.008567,-0.008254,0.249864,0,0);-ms-transform:matrix(0.259359,0.008567,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.259359,0.008567,-0.008254,0.249864,0,0);}
.m146_c00446{transform:matrix(0.260200,0.007025,-0.006748,0.249909,0,0);-ms-transform:matrix(0.260200,0.007025,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.260200,0.007025,-0.006748,0.249909,0,0);}
.m9a_c00446{transform:matrix(0.260710,0.007561,-0.007247,0.249895,0,0);-ms-transform:matrix(0.260710,0.007561,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.260710,0.007561,-0.007247,0.249895,0,0);}
.m149_c00446{transform:matrix(0.260805,0.007042,-0.006748,0.249909,0,0);-ms-transform:matrix(0.260805,0.007042,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.260805,0.007042,-0.006748,0.249909,0,0);}
.me9_c00446{transform:matrix(0.260869,0.008878,-0.008504,0.249855,0,0);-ms-transform:matrix(0.260869,0.008878,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.260869,0.008878,-0.008504,0.249855,0,0);}
.m132_c00446{transform:matrix(0.261417,0.008635,-0.008254,0.249864,0,0);-ms-transform:matrix(0.261417,0.008635,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.261417,0.008635,-0.008254,0.249864,0,0);}
.m41_c00446{transform:matrix(0.261725,0.007590,-0.007247,0.249895,0,0);-ms-transform:matrix(0.261725,0.007590,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.261725,0.007590,-0.007247,0.249895,0,0);}
.me7_c00446{transform:matrix(0.261873,0.008913,-0.008504,0.249855,0,0);-ms-transform:matrix(0.261873,0.008913,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.261873,0.008913,-0.008504,0.249855,0,0);}
.m99_c00446{transform:matrix(0.262255,0.007605,-0.007247,0.249895,0,0);-ms-transform:matrix(0.262255,0.007605,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.262255,0.007605,-0.007247,0.249895,0,0);}
.mea_c00446{transform:matrix(0.263083,0.008954,-0.008504,0.249855,0,0);-ms-transform:matrix(0.263083,0.008954,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.263083,0.008954,-0.008504,0.249855,0,0);}
.m12_c00446{transform:matrix(0.264266,0.007928,-0.007497,0.249888,0,0);-ms-transform:matrix(0.264266,0.007928,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.264266,0.007928,-0.007497,0.249888,0,0);}
.m31_c00446{transform:matrix(0.265081,0.007952,-0.007497,0.249888,0,0);-ms-transform:matrix(0.265081,0.007952,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.265081,0.007952,-0.007497,0.249888,0,0);}
.m78_c00446{transform:matrix(0.265798,0.007708,-0.007247,0.249895,0,0);-ms-transform:matrix(0.265798,0.007708,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.265798,0.007708,-0.007247,0.249895,0,0);}
.mee_c00446{transform:matrix(0.267145,0.009092,-0.008504,0.249855,0,0);-ms-transform:matrix(0.267145,0.009092,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.267145,0.009092,-0.008504,0.249855,0,0);}
.m71_c00446{transform:matrix(0.267662,0.007762,-0.007247,0.249895,0,0);-ms-transform:matrix(0.267662,0.007762,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.267662,0.007762,-0.007247,0.249895,0,0);}
.mc2_c00446{transform:matrix(0.267930,0.009119,-0.008504,0.249855,0,0);-ms-transform:matrix(0.267930,0.009119,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.267930,0.009119,-0.008504,0.249855,0,0);}
.md_c00446{transform:matrix(0.269609,0.008088,-0.007497,0.249888,0,0);-ms-transform:matrix(0.269609,0.008088,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.269609,0.008088,-0.007497,0.249888,0,0);}
.m48_c00446{transform:matrix(0.269642,0.007820,-0.007247,0.249895,0,0);-ms-transform:matrix(0.269642,0.007820,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.269642,0.007820,-0.007247,0.249895,0,0);}
.m53_c00446{transform:matrix(0.270441,0.007843,-0.007247,0.249895,0,0);-ms-transform:matrix(0.270441,0.007843,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.270441,0.007843,-0.007247,0.249895,0,0);}
.m9b_c00446{transform:matrix(0.271841,0.007883,-0.007247,0.249895,0,0);-ms-transform:matrix(0.271841,0.007883,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.271841,0.007883,-0.007247,0.249895,0,0);}
.me5_c00446{transform:matrix(0.272562,0.009276,-0.008504,0.249855,0,0);-ms-transform:matrix(0.272562,0.009276,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.272562,0.009276,-0.008504,0.249855,0,0);}
.m79_c00446{transform:matrix(0.272605,0.007906,-0.007247,0.249895,0,0);-ms-transform:matrix(0.272605,0.007906,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.272605,0.007906,-0.007247,0.249895,0,0);}
.mdf_c00446{transform:matrix(0.273187,0.009298,-0.008504,0.249855,0,0);-ms-transform:matrix(0.273187,0.009298,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.273187,0.009298,-0.008504,0.249855,0,0);}
.m43_c00446{transform:matrix(0.273265,0.007925,-0.007247,0.249895,0,0);-ms-transform:matrix(0.273265,0.007925,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.273265,0.007925,-0.007247,0.249895,0,0);}
.me2_c00446{transform:matrix(0.273382,0.009304,-0.008504,0.249855,0,0);-ms-transform:matrix(0.273382,0.009304,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.273382,0.009304,-0.008504,0.249855,0,0);}
.m51_c00446{transform:matrix(0.274285,0.007954,-0.007247,0.249895,0,0);-ms-transform:matrix(0.274285,0.007954,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.274285,0.007954,-0.007247,0.249895,0,0);}
.mbf_c00446{transform:matrix(0.275416,0.009374,-0.008504,0.249855,0,0);-ms-transform:matrix(0.275416,0.009374,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.275416,0.009374,-0.008504,0.249855,0,0);}
.mf_c00446{transform:matrix(0.275666,0.008270,-0.007497,0.249888,0,0);-ms-transform:matrix(0.275666,0.008270,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.275666,0.008270,-0.007497,0.249888,0,0);}
.m98_c00446{transform:matrix(0.276654,0.008023,-0.007247,0.249895,0,0);-ms-transform:matrix(0.276654,0.008023,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.276654,0.008023,-0.007247,0.249895,0,0);}
.mc3_c00446{transform:matrix(0.276950,0.009426,-0.008504,0.249855,0,0);-ms-transform:matrix(0.276950,0.009426,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.276950,0.009426,-0.008504,0.249855,0,0);}
.mcc_c00446{transform:matrix(0.277020,0.009428,-0.008504,0.249855,0,0);-ms-transform:matrix(0.277020,0.009428,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.277020,0.009428,-0.008504,0.249855,0,0);}
.maf_c00446{transform:matrix(0.277469,0.009443,-0.008504,0.249855,0,0);-ms-transform:matrix(0.277469,0.009443,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.277469,0.009443,-0.008504,0.249855,0,0);}
.m44_c00446{transform:matrix(0.277723,0.008054,-0.007247,0.249895,0,0);-ms-transform:matrix(0.277723,0.008054,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.277723,0.008054,-0.007247,0.249895,0,0);}
.m56_c00446{transform:matrix(0.277928,0.008060,-0.007247,0.249895,0,0);-ms-transform:matrix(0.277928,0.008060,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.277928,0.008060,-0.007247,0.249895,0,0);}
.m96_c00446{transform:matrix(0.278098,0.008065,-0.007247,0.249895,0,0);-ms-transform:matrix(0.278098,0.008065,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.278098,0.008065,-0.007247,0.249895,0,0);}
.m33_c00446{transform:matrix(0.278340,0.008350,-0.007497,0.249888,0,0);-ms-transform:matrix(0.278340,0.008350,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.278340,0.008350,-0.007497,0.249888,0,0);}
.m49_c00446{transform:matrix(0.278538,0.008078,-0.007247,0.249895,0,0);-ms-transform:matrix(0.278538,0.008078,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.278538,0.008078,-0.007247,0.249895,0,0);}
.me0_c00446{transform:matrix(0.278759,0.009487,-0.008504,0.249855,0,0);-ms-transform:matrix(0.278759,0.009487,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.278759,0.009487,-0.008504,0.249855,0,0);}
.mc0_c00446{transform:matrix(0.278988,0.009495,-0.008504,0.249855,0,0);-ms-transform:matrix(0.278988,0.009495,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.278988,0.009495,-0.008504,0.249855,0,0);}
.mca_c00446{transform:matrix(0.279143,0.009500,-0.008504,0.249855,0,0);-ms-transform:matrix(0.279143,0.009500,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.279143,0.009500,-0.008504,0.249855,0,0);}
.m138_c00446{transform:matrix(0.279543,0.009234,-0.008254,0.249864,0,0);-ms-transform:matrix(0.279543,0.009234,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.279543,0.009234,-0.008254,0.249864,0,0);}
.mb1_c00446{transform:matrix(0.280658,0.009552,-0.008504,0.249855,0,0);-ms-transform:matrix(0.280658,0.009552,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.280658,0.009552,-0.008504,0.249855,0,0);}
.me4_c00446{transform:matrix(0.281352,0.009576,-0.008504,0.249855,0,0);-ms-transform:matrix(0.281352,0.009576,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.281352,0.009576,-0.008504,0.249855,0,0);}
.m4b_c00446{transform:matrix(0.281362,0.008159,-0.007247,0.249895,0,0);-ms-transform:matrix(0.281362,0.008159,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.281362,0.008159,-0.007247,0.249895,0,0);}
.mc7_c00446{transform:matrix(0.281422,0.009578,-0.008504,0.249855,0,0);-ms-transform:matrix(0.281422,0.009578,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.281422,0.009578,-0.008504,0.249855,0,0);}
.mc4_c00446{transform:matrix(0.281712,0.009588,-0.008504,0.249855,0,0);-ms-transform:matrix(0.281712,0.009588,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.281712,0.009588,-0.008504,0.249855,0,0);}
.m10_c00446{transform:matrix(0.282478,0.008474,-0.007497,0.249888,0,0);-ms-transform:matrix(0.282478,0.008474,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.282478,0.008474,-0.007497,0.249888,0,0);}
.m6e_c00446{transform:matrix(0.282521,0.008193,-0.007247,0.249895,0,0);-ms-transform:matrix(0.282521,0.008193,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.282521,0.008193,-0.007247,0.249895,0,0);}
.m13d_c00446{transform:matrix(0.282856,0.009344,-0.008254,0.249864,0,0);-ms-transform:matrix(0.282856,0.009344,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.282856,0.009344,-0.008254,0.249864,0,0);}
.m119_c00446{transform:matrix(0.282906,0.009628,-0.008504,0.249855,0,0);-ms-transform:matrix(0.282906,0.009628,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.282906,0.009628,-0.008504,0.249855,0,0);}
.meb_c00446{transform:matrix(0.283316,0.009642,-0.008504,0.249855,0,0);-ms-transform:matrix(0.283316,0.009642,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.283316,0.009642,-0.008504,0.249855,0,0);}
.me8_c00446{transform:matrix(0.284615,0.009687,-0.008504,0.249855,0,0);-ms-transform:matrix(0.284615,0.009687,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.284615,0.009687,-0.008504,0.249855,0,0);}
.mc5_c00446{transform:matrix(0.284655,0.009688,-0.008504,0.249855,0,0);-ms-transform:matrix(0.284655,0.009688,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.284655,0.009688,-0.008504,0.249855,0,0);}
.m14_c00446{transform:matrix(0.285447,0.008563,-0.007497,0.249888,0,0);-ms-transform:matrix(0.285447,0.008563,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.285447,0.008563,-0.007497,0.249888,0,0);}
.m75_c00446{transform:matrix(0.287359,0.008333,-0.007247,0.249895,0,0);-ms-transform:matrix(0.287359,0.008333,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.287359,0.008333,-0.007247,0.249895,0,0);}
.mce_c00446{transform:matrix(0.287638,0.009789,-0.008504,0.249855,0,0);-ms-transform:matrix(0.287638,0.009789,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.287638,0.009789,-0.008504,0.249855,0,0);}
.m13c_c00446{transform:matrix(0.288623,0.009534,-0.008254,0.249864,0,0);-ms-transform:matrix(0.288623,0.009534,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.288623,0.009534,-0.008254,0.249864,0,0);}
.m13e_c00446{transform:matrix(0.289122,0.009551,-0.008254,0.249864,0,0);-ms-transform:matrix(0.289122,0.009551,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.289122,0.009551,-0.008254,0.249864,0,0);}
.mef_c00446{transform:matrix(0.290582,0.009890,-0.008504,0.249855,0,0);-ms-transform:matrix(0.290582,0.009890,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.290582,0.009890,-0.008504,0.249855,0,0);}
.med_c00446{transform:matrix(0.290862,0.009899,-0.008504,0.249855,0,0);-ms-transform:matrix(0.290862,0.009899,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.290862,0.009899,-0.008504,0.249855,0,0);}
.m9e_c00446{transform:matrix(0.292287,0.008476,-0.007247,0.249895,0,0);-ms-transform:matrix(0.292287,0.008476,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.292287,0.008476,-0.007247,0.249895,0,0);}
.m6f_c00446{transform:matrix(0.295171,0.008560,-0.007247,0.249895,0,0);-ms-transform:matrix(0.295171,0.008560,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.295171,0.008560,-0.007247,0.249895,0,0);}
.m72_c00446{transform:matrix(0.295726,0.008576,-0.007247,0.249895,0,0);-ms-transform:matrix(0.295726,0.008576,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.295726,0.008576,-0.007247,0.249895,0,0);}
.mf0_c00446{transform:matrix(0.300121,0.010214,-0.008504,0.249855,0,0);-ms-transform:matrix(0.300121,0.010214,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.300121,0.010214,-0.008504,0.249855,0,0);}
.m77_c00446{transform:matrix(0.302758,0.008780,-0.007247,0.249895,0,0);-ms-transform:matrix(0.302758,0.008780,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.302758,0.008780,-0.007247,0.249895,0,0);}
.mf2_c00446{transform:matrix(0.304054,0.010348,-0.008504,0.249855,0,0);-ms-transform:matrix(0.304054,0.010348,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.304054,0.010348,-0.008504,0.249855,0,0);}
.m74_c00446{transform:matrix(0.306221,0.008880,-0.007247,0.249895,0,0);-ms-transform:matrix(0.306221,0.008880,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.306221,0.008880,-0.007247,0.249895,0,0);}
.mf1_c00446{transform:matrix(0.306468,0.010430,-0.008504,0.249855,0,0);-ms-transform:matrix(0.306468,0.010430,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.306468,0.010430,-0.008504,0.249855,0,0);}
.m137_c00446{transform:matrix(0.310965,0.010272,-0.008254,0.249864,0,0);-ms-transform:matrix(0.310965,0.010272,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.310965,0.010272,-0.008254,0.249864,0,0);}
.m13a_c00446{transform:matrix(0.315248,0.010414,-0.008254,0.249864,0,0);-ms-transform:matrix(0.315248,0.010414,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.315248,0.010414,-0.008254,0.249864,0,0);}
.m139_c00446{transform:matrix(0.327351,0.010813,-0.008254,0.249864,0,0);-ms-transform:matrix(0.327351,0.010813,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.327351,0.010813,-0.008254,0.249864,0,0);}
.m13b_c00446{transform:matrix(0.331784,0.010960,-0.008254,0.249864,0,0);-ms-transform:matrix(0.331784,0.010960,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.331784,0.010960,-0.008254,0.249864,0,0);}
.m17_c00446{transform:matrix(0.401824,0.012055,-0.007497,0.249888,0,0);-ms-transform:matrix(0.401824,0.012055,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.401824,0.012055,-0.007497,0.249888,0,0);}
.m13f_c00446{transform:matrix(0.641565,0.021193,-0.008254,0.249864,0,0);-ms-transform:matrix(0.641565,0.021193,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.641565,0.021193,-0.008254,0.249864,0,0);}
.m140_c00446{transform:matrix(1.208621,0.039924,-0.008254,0.249864,0,0);-ms-transform:matrix(1.208621,0.039924,-0.008254,0.249864,0,0);-webkit-transform:matrix(1.208621,0.039924,-0.008254,0.249864,0,0);}
.v0_c00446{vertical-align:0.000000px;}
.ls0_c00446{letter-spacing:0.000000px;}
.sc__c00446{text-shadow:none;}
.sc0_c00446{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__c00446{-webkit-text-stroke:0px transparent;}
.sc0_c00446{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00446{word-spacing:0.000000px;}
.fc0_c00446{color:transparent;}
.fs13_c00446{font-size:59.972694px;}
.fse_c00446{font-size:65.972175px;}
.fs7_c00446{font-size:66.027747px;}
.fsb_c00446{font-size:71.969646px;}
.fs5_c00446{font-size:72.030270px;}
.fs1_c00446{font-size:72.032393px;}
.fs12_c00446{font-size:77.964502px;}
.fs10_c00446{font-size:77.967116px;}
.fsa_c00446{font-size:77.969808px;}
.fs14_c00446{font-size:78.028426px;}
.fs3_c00446{font-size:78.035092px;}
.fsd_c00446{font-size:83.964587px;}
.fs8_c00446{font-size:84.000000px;}
.fs4_c00446{font-size:84.035315px;}
.fs2_c00446{font-size:84.037791px;}
.fs9_c00446{font-size:89.965163px;}
.fsc_c00446{font-size:95.959527px;}
.fs11_c00446{font-size:96.015551px;}
.fs6_c00446{font-size:96.040360px;}
.fsf_c00446{font-size:101.956998px;}
.fs15_c00446{font-size:108.039359px;}
.fs0_c00446{font-size:108.048589px;}
.y0_c00446{bottom:0.000000px;}
.y15a_c00446{bottom:36.659997px;}
.y159_c00446{bottom:36.918214px;}
.y158_c00446{bottom:37.278384px;}
.y157_c00446{bottom:38.381663px;}
.y156_c00446{bottom:39.372797px;}
.y155_c00446{bottom:39.729611px;}
.y154_c00446{bottom:40.228817px;}
.y153_c00446{bottom:40.713626px;}
.y152_c00446{bottom:41.069669px;}
.y151_c00446{bottom:41.813100px;}
.y150_c00446{bottom:42.170238px;}
.y14f_c00446{bottom:43.372959px;}
.y14e_c00446{bottom:43.735029px;}
.y14d_c00446{bottom:51.352514px;}
.y14c_c00446{bottom:52.221076px;}
.y14b_c00446{bottom:53.432350px;}
.y14a_c00446{bottom:56.425098px;}
.y149_c00446{bottom:57.918616px;}
.y148_c00446{bottom:59.699078px;}
.y147_c00446{bottom:60.587162px;}
.y146_c00446{bottom:61.461435px;}
.y145_c00446{bottom:62.382000px;}
.y144_c00446{bottom:92.011923px;}
.y143_c00446{bottom:93.303414px;}
.y142_c00446{bottom:93.751245px;}
.y141_c00446{bottom:94.321436px;}
.y140_c00446{bottom:94.757288px;}
.y13f_c00446{bottom:95.767745px;}
.y13e_c00446{bottom:96.791823px;}
.y13d_c00446{bottom:98.350592px;}
.y13c_c00446{bottom:98.789472px;}
.y13b_c00446{bottom:99.641057px;}
.y13a_c00446{bottom:102.297915px;}
.y139_c00446{bottom:106.474131px;}
.y138_c00446{bottom:107.548034px;}
.y137_c00446{bottom:109.401759px;}
.y136_c00446{bottom:113.050454px;}
.y135_c00446{bottom:114.136286px;}
.y134_c00446{bottom:117.023918px;}
.y133_c00446{bottom:119.240132px;}
.y132_c00446{bottom:120.703500px;}
.y131_c00446{bottom:142.252044px;}
.y130_c00446{bottom:143.045763px;}
.y12f_c00446{bottom:144.060801px;}
.y12e_c00446{bottom:146.425866px;}
.y12d_c00446{bottom:148.638030px;}
.y12c_c00446{bottom:150.227790px;}
.y12b_c00446{bottom:151.417167px;}
.y12a_c00446{bottom:152.016000px;}
.y129_c00446{bottom:188.197464px;}
.y128_c00446{bottom:190.465791px;}
.y127_c00446{bottom:192.793227px;}
.y126_c00446{bottom:194.324451px;}
.y125_c00446{bottom:196.175751px;}
.y124_c00446{bottom:199.226724px;}
.y123_c00446{bottom:200.703225px;}
.y122_c00446{bottom:202.256532px;}
.y121_c00446{bottom:205.278129px;}
.y120_c00446{bottom:206.040579px;}
.y11f_c00446{bottom:210.084930px;}
.y11e_c00446{bottom:212.382480px;}
.y11d_c00446{bottom:226.140874px;}
.y11c_c00446{bottom:227.593003px;}
.y11b_c00446{bottom:230.611629px;}
.y11a_c00446{bottom:232.029541px;}
.y119_c00446{bottom:237.378202px;}
.y118_c00446{bottom:238.454574px;}
.y117_c00446{bottom:239.899645px;}
.y116_c00446{bottom:242.771625px;}
.y115_c00446{bottom:243.761604px;}
.y114_c00446{bottom:246.680742px;}
.y113_c00446{bottom:249.652974px;}
.y112_c00446{bottom:253.034670px;}
.y111_c00446{bottom:254.480047px;}
.y110_c00446{bottom:255.909352px;}
.y10f_c00446{bottom:256.905165px;}
.y10e_c00446{bottom:266.562549px;}
.y10d_c00446{bottom:267.887767px;}
.y10c_c00446{bottom:270.633405px;}
.y10b_c00446{bottom:271.684450px;}
.y10a_c00446{bottom:272.742546px;}
.y109_c00446{bottom:274.105443px;}
.y108_c00446{bottom:275.435315px;}
.y107_c00446{bottom:277.533274px;}
.y106_c00446{bottom:278.349846px;}
.y105_c00446{bottom:280.237918px;}
.y104_c00446{bottom:282.053706px;}
.y103_c00446{bottom:282.838292px;}
.y102_c00446{bottom:283.900550px;}
.y101_c00446{bottom:298.654050px;}
.y100_c00446{bottom:301.031074px;}
.yff_c00446{bottom:304.364833px;}
.yfe_c00446{bottom:305.057632px;}
.yfd_c00446{bottom:307.056084px;}
.yfc_c00446{bottom:309.668013px;}
.yfb_c00446{bottom:310.688329px;}
.yfa_c00446{bottom:313.048308px;}
.yf9_c00446{bottom:316.337214px;}
.yf8_c00446{bottom:317.328672px;}
.yf7_c00446{bottom:318.991854px;}
.yf6_c00446{bottom:335.152236px;}
.yf5_c00446{bottom:339.390517px;}
.yf4_c00446{bottom:342.800142px;}
.yf3_c00446{bottom:345.366351px;}
.yf2_c00446{bottom:347.009569px;}
.yf1_c00446{bottom:350.353511px;}
.yf0_c00446{bottom:351.637814px;}
.yef_c00446{bottom:354.188091px;}
.yee_c00446{bottom:355.424498px;}
.yed_c00446{bottom:357.407436px;}
.yec_c00446{bottom:360.014912px;}
.yeb_c00446{bottom:372.288761px;}
.yea_c00446{bottom:373.380048px;}
.ye9_c00446{bottom:376.231637px;}
.ye8_c00446{bottom:380.506301px;}
.ye7_c00446{bottom:381.985010px;}
.ye6_c00446{bottom:385.140528px;}
.ye5_c00446{bottom:386.210600px;}
.ye4_c00446{bottom:389.364078px;}
.ye3_c00446{bottom:392.217197px;}
.ye2_c00446{bottom:393.209724px;}
.ye1_c00446{bottom:407.621494px;}
.ye0_c00446{bottom:409.199866px;}
.ydf_c00446{bottom:411.196441px;}
.yde_c00446{bottom:414.285642px;}
.ydd_c00446{bottom:418.181496px;}
.ydc_c00446{bottom:420.923862px;}
.ydb_c00446{bottom:421.685055px;}
.yda_c00446{bottom:423.980199px;}
.yd9_c00446{bottom:425.159646px;}
.yd8_c00446{bottom:425.967269px;}
.yd7_c00446{bottom:430.571888px;}
.yd6_c00446{bottom:432.072771px;}
.yd5_c00446{bottom:444.117148px;}
.yd4_c00446{bottom:445.061127px;}
.yd3_c00446{bottom:446.017377px;}
.yd2_c00446{bottom:449.772765px;}
.yd1_c00446{bottom:450.702911px;}
.yd0_c00446{bottom:453.480758px;}
.ycf_c00446{bottom:455.059869px;}
.yce_c00446{bottom:457.862118px;}
.ycd_c00446{bottom:458.760486px;}
.ycc_c00446{bottom:459.685245px;}
.ycb_c00446{bottom:463.108825px;}
.yca_c00446{bottom:480.756029px;}
.yc9_c00446{bottom:484.207913px;}
.yc8_c00446{bottom:485.007338px;}
.yc7_c00446{bottom:489.115592px;}
.yc6_c00446{bottom:492.094757px;}
.yc5_c00446{bottom:493.610477px;}
.yc4_c00446{bottom:497.037320px;}
.yc3_c00446{bottom:501.516140px;}
.yc2_c00446{bottom:504.130604px;}
.yc1_c00446{bottom:516.394726px;}
.yc0_c00446{bottom:517.332298px;}
.ybf_c00446{bottom:519.860826px;}
.ybe_c00446{bottom:522.360381px;}
.ybd_c00446{bottom:523.601330px;}
.ybc_c00446{bottom:526.092693px;}
.ybb_c00446{bottom:528.241221px;}
.yba_c00446{bottom:530.428188px;}
.yb9_c00446{bottom:532.913196px;}
.yb8_c00446{bottom:535.979006px;}
.yb7_c00446{bottom:552.362004px;}
.yb6_c00446{bottom:554.243445px;}
.yb5_c00446{bottom:558.463032px;}
.yb4_c00446{bottom:559.544079px;}
.yb3_c00446{bottom:564.092412px;}
.yb2_c00446{bottom:565.223694px;}
.yb1_c00446{bottom:566.763486px;}
.yb0_c00446{bottom:567.869778px;}
.yaf_c00446{bottom:569.015034px;}
.yae_c00446{bottom:571.259289px;}
.yad_c00446{bottom:572.415000px;}
.yac_c00446{bottom:597.313398px;}
.yab_c00446{bottom:599.239395px;}
.yaa_c00446{bottom:601.720092px;}
.ya9_c00446{bottom:602.636132px;}
.ya8_c00446{bottom:603.564090px;}
.ya7_c00446{bottom:604.765734px;}
.ya6_c00446{bottom:606.325433px;}
.ya5_c00446{bottom:607.274946px;}
.ya4_c00446{bottom:609.113071px;}
.ya3_c00446{bottom:623.414802px;}
.ya2_c00446{bottom:626.343353px;}
.ya1_c00446{bottom:627.633737px;}
.ya0_c00446{bottom:628.884405px;}
.y9f_c00446{bottom:631.456995px;}
.y9e_c00446{bottom:633.415278px;}
.y9d_c00446{bottom:635.057969px;}
.y9c_c00446{bottom:637.913700px;}
.y9b_c00446{bottom:639.210000px;}
.y9a_c00446{bottom:642.421909px;}
.y99_c00446{bottom:643.690500px;}
.y98_c00446{bottom:658.177552px;}
.y97_c00446{bottom:660.529936px;}
.y96_c00446{bottom:662.887122px;}
.y95_c00446{bottom:664.218661px;}
.y94_c00446{bottom:665.552563px;}
.y93_c00446{bottom:667.865949px;}
.y92_c00446{bottom:668.871416px;}
.y91_c00446{bottom:671.855374px;}
.y90_c00446{bottom:674.505805px;}
.y8f_c00446{bottom:677.820195px;}
.y8e_c00446{bottom:678.805243px;}
.y8d_c00446{bottom:694.081365px;}
.y8c_c00446{bottom:694.843035px;}
.y8b_c00446{bottom:696.826800px;}
.y8a_c00446{bottom:697.955812px;}
.y89_c00446{bottom:699.553860px;}
.y88_c00446{bottom:701.529697px;}
.y87_c00446{bottom:704.972332px;}
.y86_c00446{bottom:709.276702px;}
.y85_c00446{bottom:710.049135px;}
.y84_c00446{bottom:711.579247px;}
.y83_c00446{bottom:714.305310px;}
.y82_c00446{bottom:715.852170px;}
.y81_c00446{bottom:717.745005px;}
.y80_c00446{bottom:718.482000px;}
.y7f_c00446{bottom:749.373000px;}
.y7e_c00446{bottom:767.175771px;}
.y7d_c00446{bottom:768.489732px;}
.y7c_c00446{bottom:771.091815px;}
.y7b_c00446{bottom:772.336045px;}
.y7a_c00446{bottom:773.671365px;}
.y79_c00446{bottom:776.273143px;}
.y78_c00446{bottom:777.515416px;}
.y77_c00446{bottom:778.473460px;}
.y76_c00446{bottom:781.042440px;}
.y75_c00446{bottom:782.030412px;}
.y74_c00446{bottom:782.969620px;}
.y73_c00446{bottom:785.529639px;}
.y72_c00446{bottom:787.797816px;}
.y71_c00446{bottom:802.839759px;}
.y70_c00446{bottom:803.746663px;}
.y6f_c00446{bottom:805.956786px;}
.y6e_c00446{bottom:806.862342px;}
.y6d_c00446{bottom:809.048517px;}
.y6c_c00446{bottom:809.711295px;}
.y6b_c00446{bottom:811.551421px;}
.y6a_c00446{bottom:813.389329px;}
.y69_c00446{bottom:814.327510px;}
.y68_c00446{bottom:816.800377px;}
.y67_c00446{bottom:818.047458px;}
.y66_c00446{bottom:820.852062px;}
.y65_c00446{bottom:822.371283px;}
.y64_c00446{bottom:839.046349px;}
.y63_c00446{bottom:839.960866px;}
.y62_c00446{bottom:842.775475px;}
.y61_c00446{bottom:844.629043px;}
.y60_c00446{bottom:847.738000px;}
.y5f_c00446{bottom:850.505868px;}
.y5e_c00446{bottom:851.473869px;}
.y5d_c00446{bottom:852.411832px;}
.y5c_c00446{bottom:855.503781px;}
.y5b_c00446{bottom:856.721085px;}
.y5a_c00446{bottom:858.567910px;}
.y59_c00446{bottom:877.308769px;}
.y58_c00446{bottom:878.174445px;}
.y57_c00446{bottom:879.004122px;}
.y56_c00446{bottom:880.961365px;}
.y55_c00446{bottom:881.528085px;}
.y54_c00446{bottom:883.994928px;}
.y53_c00446{bottom:885.123495px;}
.y52_c00446{bottom:885.934182px;}
.y51_c00446{bottom:887.338083px;}
.y50_c00446{bottom:888.972900px;}
.y4f_c00446{bottom:889.796421px;}
.y4e_c00446{bottom:892.860001px;}
.y4d_c00446{bottom:893.404665px;}
.y4c_c00446{bottom:913.094521px;}
.y4b_c00446{bottom:915.202576px;}
.y4a_c00446{bottom:916.287231px;}
.y49_c00446{bottom:917.089084px;}
.y48_c00446{bottom:918.437659px;}
.y47_c00446{bottom:921.623104px;}
.y46_c00446{bottom:923.483401px;}
.y45_c00446{bottom:924.546064px;}
.y44_c00446{bottom:926.368404px;}
.y43_c00446{bottom:927.448752px;}
.y42_c00446{bottom:928.253238px;}
.y41_c00446{bottom:948.222795px;}
.y40_c00446{bottom:950.167897px;}
.y3f_c00446{bottom:951.147604px;}
.y3e_c00446{bottom:952.092816px;}
.y3d_c00446{bottom:953.377980px;}
.y3c_c00446{bottom:955.315252px;}
.y3b_c00446{bottom:956.236539px;}
.y3a_c00446{bottom:959.154867px;}
.y39_c00446{bottom:960.759582px;}
.y38_c00446{bottom:961.722280px;}
.y37_c00446{bottom:963.640500px;}
.y36_c00446{bottom:995.213280px;}
.y35_c00446{bottom:995.921235px;}
.y34_c00446{bottom:996.448785px;}
.y33_c00446{bottom:997.857660px;}
.y32_c00446{bottom:998.402670px;}
.y31_c00446{bottom:998.938710px;}
.y30_c00446{bottom:1018.121685px;}
.y2f_c00446{bottom:1018.928100px;}
.y2e_c00446{bottom:1020.522645px;}
.y2d_c00446{bottom:1021.339920px;}
.y2c_c00446{bottom:1024.250355px;}
.y2b_c00446{bottom:1025.061615px;}
.y2a_c00446{bottom:1026.368745px;}
.y29_c00446{bottom:1027.997820px;}
.y28_c00446{bottom:1029.592365px;}
.y27_c00446{bottom:1030.394835px;}
.y26_c00446{bottom:1031.451900px;}
.y25_c00446{bottom:1034.058225px;}
.y24_c00446{bottom:1054.884540px;}
.y23_c00446{bottom:1055.790615px;}
.y22_c00446{bottom:1057.805265px;}
.y21_c00446{bottom:1059.561660px;}
.y20_c00446{bottom:1063.023810px;}
.y1f_c00446{bottom:1063.867305px;}
.y1e_c00446{bottom:1065.328005px;}
.y1d_c00446{bottom:1066.470645px;}
.y1c_c00446{bottom:1067.336460px;}
.y1b_c00446{bottom:1068.766755px;}
.y1a_c00446{bottom:1069.859070px;}
.y19_c00446{bottom:1071.603600px;}
.y18_c00446{bottom:1088.070540px;}
.y17_c00446{bottom:1089.028920px;}
.y16_c00446{bottom:1089.786750px;}
.y15_c00446{bottom:1092.379155px;}
.y14_c00446{bottom:1093.377645px;}
.y13_c00446{bottom:1095.169365px;}
.y12_c00446{bottom:1095.933795px;}
.y11_c00446{bottom:1098.516150px;}
.y10_c00446{bottom:1100.781045px;}
.yf_c00446{bottom:1101.551535px;}
.ye_c00446{bottom:1103.305350px;}
.yd_c00446{bottom:1104.830715px;}
.yc_c00446{bottom:1124.211810px;}
.yb_c00446{bottom:1127.044785px;}
.ya_c00446{bottom:1128.047295px;}
.y9_c00446{bottom:1130.375100px;}
.y8_c00446{bottom:1132.045635px;}
.y7_c00446{bottom:1133.025195px;}
.y6_c00446{bottom:1136.356500px;}
.y5_c00446{bottom:1137.345240px;}
.y4_c00446{bottom:1138.025820px;}
.y3_c00446{bottom:1139.035935px;}
.y2_c00446{bottom:1140.364695px;}
.y1_c00446{bottom:1142.652000px;}
.h15_c00446{height:59.972694px;}
.h10_c00446{height:65.972175px;}
.h9_c00446{height:66.027747px;}
.hd_c00446{height:71.969646px;}
.h7_c00446{height:72.030270px;}
.h3_c00446{height:72.032393px;}
.h14_c00446{height:77.964502px;}
.h12_c00446{height:77.967116px;}
.hc_c00446{height:77.969808px;}
.h16_c00446{height:78.028426px;}
.h5_c00446{height:78.035092px;}
.hf_c00446{height:83.964587px;}
.ha_c00446{height:84.000000px;}
.h6_c00446{height:84.035315px;}
.h4_c00446{height:84.037791px;}
.hb_c00446{height:89.965163px;}
.he_c00446{height:95.959527px;}
.h13_c00446{height:96.015551px;}
.h8_c00446{height:96.040360px;}
.h11_c00446{height:101.956998px;}
.h17_c00446{height:108.039359px;}
.h2_c00446{height:108.048589px;}
.h0_c00446{height:1251.450000px;}
.h1_c00446{height:1251.750000px;}
.w0_c00446{width:915.000000px;}
.x0_c00446{left:0.000000px;}
.xe1_c00446{left:113.226000px;}
.xd5_c00446{left:115.249500px;}
.xc5_c00446{left:117.144266px;}
.xb8_c00446{left:118.703739px;}
.xb0_c00446{left:120.140426px;}
.x9f_c00446{left:121.706322px;}
.x94_c00446{left:124.153383px;}
.x83_c00446{left:126.255000px;}
.x7b_c00446{left:127.933814px;}
.x64_c00446{left:129.573797px;}
.x5a_c00446{left:131.354081px;}
.x3d_c00446{left:133.028484px;}
.x2f_c00446{left:135.003420px;}
.x23_c00446{left:137.307630px;}
.xd_c00446{left:138.947370px;}
.xe2_c00446{left:147.321000px;}
.xd6_c00446{left:148.518000px;}
.x72_c00446{left:150.845943px;}
.xab_c00446{left:153.252930px;}
.x46_c00446{left:154.339350px;}
.xda_c00446{left:158.658656px;}
.x7c_c00446{left:160.717725px;}
.x71_c00446{left:162.270000px;}
.xbe_c00446{left:163.294988px;}
.xa5_c00446{left:165.429003px;}
.x3e_c00446{left:166.567356px;}
.x30_c00446{left:168.485460px;}
.x84_c00446{left:169.999500px;}
.xc6_c00446{left:172.222397px;}
.xb9_c00446{left:174.095847px;}
.xe3_c00446{left:179.701500px;}
.xe8_c00446{left:180.745315px;}
.xcf_c00446{left:183.996039px;}
.x5b_c00446{left:185.604647px;}
.xb1_c00446{left:188.687468px;}
.x89_c00446{left:191.981065px;}
.xbf_c00446{left:195.913415px;}
.x51_c00446{left:198.567867px;}
.x9b_c00446{left:200.220110px;}
.x31_c00446{left:202.516725px;}
.xe_c00446{left:205.256775px;}
.x65_c00446{left:207.786797px;}
.x3f_c00446{left:211.585881px;}
.xe4_c00446{left:212.593500px;}
.xd7_c00446{left:214.594500px;}
.x8a_c00446{left:225.913566px;}
.x8e_c00446{left:233.920500px;}
.xb2_c00446{left:240.823683px;}
.x52_c00446{left:242.045129px;}
.xa0_c00446{left:243.854516px;}
.x24_c00446{left:245.904660px;}
.x19_c00446{left:247.295850px;}
.x73_c00446{left:249.024666px;}
.x1_c00446{left:250.171500px;}
.xdf_c00446{left:259.208230px;}
.x8f_c00446{left:267.878009px;}
.x7d_c00446{left:271.079093px;}
.xb3_c00446{left:273.317216px;}
.x47_c00446{left:276.908074px;}
.xe5_c00446{left:278.536500px;}
.xf_c00446{left:281.483250px;}
.x5c_c00446{left:285.783561px;}
.x40_c00446{left:287.522386px;}
.x25_c00446{left:289.948080px;}
.x66_c00446{left:296.063297px;}
.x1a_c00446{left:302.278920px;}
.x48_c00446{left:309.860903px;}
.x33_c00446{left:311.215500px;}
.xdb_c00446{left:313.165994px;}
.x10_c00446{left:314.973270px;}
.xba_c00446{left:316.613586px;}
.xa6_c00446{left:319.913106px;}
.x95_c00446{left:322.117103px;}
.x26_c00446{left:323.353065px;}
.x8b_c00446{left:324.548937px;}
.x2_c00446{left:326.415000px;}
.x67_c00446{left:328.449797px;}
.x5d_c00446{left:330.339366px;}
.x41_c00446{left:331.775781px;}
.x90_c00446{left:333.819501px;}
.x1b_c00446{left:335.593425px;}
.xac_c00446{left:340.760997px;}
.x34_c00446{left:344.412000px;}
.xdc_c00446{left:346.037089px;}
.xc0_c00446{left:349.968084px;}
.x53_c00446{left:352.494848px;}
.xa7_c00446{left:353.598264px;}
.x8c_c00446{left:357.686394px;}
.x7e_c00446{left:359.320214px;}
.x68_c00446{left:362.517797px;}
.x32_c00446{left:367.832115px;}
.x3_c00446{left:370.707000px;}
.xad_c00446{left:374.185836px;}
.x49_c00446{left:375.241471px;}
.x1c_c00446{left:379.536690px;}
.xc1_c00446{left:383.967140px;}
.x54_c00446{left:385.977305px;}
.x27_c00446{left:389.816535px;}
.x74_c00446{left:392.555492px;}
.xbb_c00446{left:395.168123px;}
.x35_c00446{left:399.747000px;}
.x4_c00446{left:404.377500px;}
.x42_c00446{left:409.280004px;}
.x11_c00446{left:413.440425px;}
.xc7_c00446{left:415.612907px;}
.x5e_c00446{left:418.664933px;}
.x55_c00446{left:420.547305px;}
.xe9_c00446{left:422.510184px;}
.x85_c00446{left:423.928500px;}
.xd8_c00446{left:425.812500px;}
.x5_c00446{left:427.063500px;}
.xbc_c00446{left:429.158744px;}
.x4a_c00446{left:431.416996px;}
.x9c_c00446{left:432.507090px;}
.x1d_c00446{left:435.733440px;}
.xc8_c00446{left:438.088751px;}
.xa8_c00446{left:440.843970px;}
.x91_c00446{left:445.217991px;}
.x69_c00446{left:451.103297px;}
.x5f_c00446{left:452.154890px;}
.xdd_c00446{left:456.493023px;}
.x28_c00446{left:457.681230px;}
.x6_c00446{left:460.021500px;}
.xb4_c00446{left:462.066599px;}
.x4b_c00446{left:463.823737px;}
.xa1_c00446{left:465.168161px;}
.xea_c00446{left:466.596219px;}
.x1e_c00446{left:468.153810px;}
.xc2_c00446{left:471.264966px;}
.xae_c00446{left:472.676934px;}
.x96_c00446{left:476.745869px;}
.x8d_c00446{left:479.008417px;}
.x86_c00446{left:480.573000px;}
.x6a_c00446{left:484.139297px;}
.xe6_c00446{left:489.556500px;}
.x7f_c00446{left:492.118011px;}
.x36_c00446{left:500.379000px;}
.xc9_c00446{left:503.299268px;}
.xb5_c00446{left:505.278972px;}
.x4c_c00446{left:508.951957px;}
.x29_c00446{left:512.162040px;}
.x75_c00446{left:515.414510px;}
.x60_c00446{left:517.808804px;}
.x56_c00446{left:519.407676px;}
.xe7_c00446{left:521.725500px;}
.x12_c00446{left:525.692460px;}
.x6b_c00446{left:526.976296px;}
.x37_c00446{left:532.147500px;}
.xe0_c00446{left:534.835372px;}
.xca_c00446{left:536.105249px;}
.x43_c00446{left:542.004231px;}
.xeb_c00446{left:544.389793px;}
.x2a_c00446{left:545.960115px;}
.x87_c00446{left:548.100000px;}
.xd9_c00446{left:557.205000px;}
.x13_c00446{left:558.930435px;}
.xcb_c00446{left:560.546462px;}
.x9d_c00446{left:564.577388px;}
.x97_c00446{left:565.596552px;}
.x80_c00446{left:569.154404px;}
.x7_c00446{left:571.065000px;}
.xb6_c00446{left:572.745749px;}
.x61_c00446{left:583.539218px;}
.xd0_c00446{left:592.680446px;}
.xa2_c00446{left:597.436266px;}
.x38_c00446{left:598.950000px;}
.x1f_c00446{left:601.324785px;}
.x8_c00446{left:603.717000px;}
.xbd_c00446{left:605.740530px;}
.x4d_c00446{left:607.630398px;}
.x98_c00446{left:609.860780px;}
.x92_c00446{left:612.098443px;}
.x76_c00446{left:613.677149px;}
.x6c_c00446{left:616.692797px;}
.xc3_c00446{left:627.317850px;}
.x4e_c00446{left:630.278508px;}
.x44_c00446{left:631.583694px;}
.xec_c00446{left:634.470673px;}
.x14_c00446{left:636.820770px;}
.x39_c00446{left:643.266000px;}
.xd1_c00446{left:647.075996px;}
.xaf_c00446{left:652.303880px;}
.x81_c00446{left:657.909615px;}
.x9_c00446{left:659.401500px;}
.x6d_c00446{left:662.738297px;}
.x2b_c00446{left:667.246440px;}
.x20_c00446{left:668.879385px;}
.x77_c00446{left:670.073196px;}
.xde_c00446{left:671.545755px;}
.x3a_c00446{left:675.859500px;}
.x15_c00446{left:680.212860px;}
.xcc_c00446{left:681.997538px;}
.x62_c00446{left:685.299176px;}
.xd2_c00446{left:692.066960px;}
.x57_c00446{left:696.637809px;}
.x99_c00446{left:698.996229px;}
.x2c_c00446{left:701.295060px;}
.x6e_c00446{left:705.642797px;}
.x4f_c00446{left:708.589099px;}
.x3b_c00446{left:709.642500px;}
.xcd_c00446{left:714.181845px;}
.x78_c00446{left:715.686037px;}
.x63_c00446{left:717.664133px;}
.x88_c00446{left:724.432500px;}
.xa3_c00446{left:731.405526px;}
.xed_c00446{left:734.709427px;}
.xa_c00446{left:736.995000px;}
.x50_c00446{left:741.805971px;}
.x21_c00446{left:746.393700px;}
.x79_c00446{left:747.911280px;}
.xd3_c00446{left:760.452506px;}
.x45_c00446{left:764.558421px;}
.x2d_c00446{left:767.758530px;}
.xb_c00446{left:770.412000px;}
.xb7_c00446{left:773.832098px;}
.xa9_c00446{left:775.492602px;}
.x3c_c00446{left:776.715000px;}
.x22_c00446{left:781.250385px;}
.xce_c00446{left:782.731397px;}
.xc4_c00446{left:785.245970px;}
.x9a_c00446{left:789.203361px;}
.xee_c00446{left:790.914687px;}
.x16_c00446{left:792.899985px;}
.x6f_c00446{left:795.369797px;}
.x58_c00446{left:797.161723px;}
.xa4_c00446{left:799.184514px;}
.x2e_c00446{left:801.345060px;}
.x7a_c00446{left:804.533601px;}
.x9e_c00446{left:810.201018px;}
.x82_c00446{left:814.731121px;}
.xaa_c00446{left:820.546472px;}
.x93_c00446{left:823.124706px;}
.x17_c00446{left:825.867915px;}
.xd4_c00446{left:827.101290px;}
.x59_c00446{left:829.835681px;}
.x70_c00446{left:840.678797px;}
.xc_c00446{left:864.844500px;}
.x18_c00446{left:867.522645px;}
@media print{
.v0_c00446{vertical-align:0.000000pt;}
.ls0_c00446{letter-spacing:0.000000pt;}
.ws0_c00446{word-spacing:0.000000pt;}
.fs13_c00446{font-size:53.309061pt;}
.fse_c00446{font-size:58.641933pt;}
.fs7_c00446{font-size:58.691331pt;}
.fsb_c00446{font-size:63.973018pt;}
.fs5_c00446{font-size:64.026906pt;}
.fs1_c00446{font-size:64.028794pt;}
.fs12_c00446{font-size:69.301779pt;}
.fs10_c00446{font-size:69.304103pt;}
.fsa_c00446{font-size:69.306496pt;}
.fs14_c00446{font-size:69.358601pt;}
.fs3_c00446{font-size:69.364526pt;}
.fsd_c00446{font-size:74.635188pt;}
.fs8_c00446{font-size:74.666667pt;}
.fs4_c00446{font-size:74.698057pt;}
.fs2_c00446{font-size:74.700259pt;}
.fs9_c00446{font-size:79.969034pt;}
.fsc_c00446{font-size:85.297358pt;}
.fs11_c00446{font-size:85.347156pt;}
.fs6_c00446{font-size:85.369208pt;}
.fsf_c00446{font-size:90.628443pt;}
.fs15_c00446{font-size:96.034986pt;}
.fs0_c00446{font-size:96.043190pt;}
.y0_c00446{bottom:0.000000pt;}
.y15a_c00446{bottom:32.586664pt;}
.y159_c00446{bottom:32.816191pt;}
.y158_c00446{bottom:33.136341pt;}
.y157_c00446{bottom:34.117033pt;}
.y156_c00446{bottom:34.998041pt;}
.y155_c00446{bottom:35.315209pt;}
.y154_c00446{bottom:35.758948pt;}
.y153_c00446{bottom:36.189889pt;}
.y152_c00446{bottom:36.506372pt;}
.y151_c00446{bottom:37.167200pt;}
.y150_c00446{bottom:37.484656pt;}
.y14f_c00446{bottom:38.553741pt;}
.y14e_c00446{bottom:38.875581pt;}
.y14d_c00446{bottom:45.646679pt;}
.y14c_c00446{bottom:46.418735pt;}
.y14b_c00446{bottom:47.495423pt;}
.y14a_c00446{bottom:50.155643pt;}
.y149_c00446{bottom:51.483215pt;}
.y148_c00446{bottom:53.065847pt;}
.y147_c00446{bottom:53.855255pt;}
.y146_c00446{bottom:54.632387pt;}
.y145_c00446{bottom:55.450667pt;}
.y144_c00446{bottom:81.788376pt;}
.y143_c00446{bottom:82.936368pt;}
.y142_c00446{bottom:83.334440pt;}
.y141_c00446{bottom:83.841276pt;}
.y140_c00446{bottom:84.228700pt;}
.y13f_c00446{bottom:85.126884pt;}
.y13e_c00446{bottom:86.037176pt;}
.y13d_c00446{bottom:87.422748pt;}
.y13c_c00446{bottom:87.812864pt;}
.y13b_c00446{bottom:88.569828pt;}
.y13a_c00446{bottom:90.931480pt;}
.y139_c00446{bottom:94.643672pt;}
.y138_c00446{bottom:95.598252pt;}
.y137_c00446{bottom:97.246008pt;}
.y136_c00446{bottom:100.489292pt;}
.y135_c00446{bottom:101.454476pt;}
.y134_c00446{bottom:104.021260pt;}
.y133_c00446{bottom:105.991228pt;}
.y132_c00446{bottom:107.292000pt;}
.y131_c00446{bottom:126.446261pt;}
.y130_c00446{bottom:127.151789pt;}
.y12f_c00446{bottom:128.054045pt;}
.y12e_c00446{bottom:130.156325pt;}
.y12d_c00446{bottom:132.122693pt;}
.y12c_c00446{bottom:133.535813pt;}
.y12b_c00446{bottom:134.593037pt;}
.y12a_c00446{bottom:135.125333pt;}
.y129_c00446{bottom:167.286635pt;}
.y128_c00446{bottom:169.302925pt;}
.y127_c00446{bottom:171.371757pt;}
.y126_c00446{bottom:172.732845pt;}
.y125_c00446{bottom:174.378445pt;}
.y124_c00446{bottom:177.090421pt;}
.y123_c00446{bottom:178.402867pt;}
.y122_c00446{bottom:179.783584pt;}
.y121_c00446{bottom:182.469448pt;}
.y120_c00446{bottom:183.147181pt;}
.y11f_c00446{bottom:186.742160pt;}
.y11e_c00446{bottom:188.784427pt;}
.y11d_c00446{bottom:201.014111pt;}
.y11c_c00446{bottom:202.304892pt;}
.y11b_c00446{bottom:204.988115pt;}
.y11a_c00446{bottom:206.248481pt;}
.y119_c00446{bottom:211.002847pt;}
.y118_c00446{bottom:211.959621pt;}
.y117_c00446{bottom:213.244129pt;}
.y116_c00446{bottom:215.797000pt;}
.y115_c00446{bottom:216.676981pt;}
.y114_c00446{bottom:219.271771pt;}
.y113_c00446{bottom:221.913755pt;}
.y112_c00446{bottom:224.919707pt;}
.y111_c00446{bottom:226.204487pt;}
.y110_c00446{bottom:227.474980pt;}
.y10f_c00446{bottom:228.360147pt;}
.y10e_c00446{bottom:236.944488pt;}
.y10d_c00446{bottom:238.122460pt;}
.y10c_c00446{bottom:240.563027pt;}
.y10b_c00446{bottom:241.497289pt;}
.y10a_c00446{bottom:242.437819pt;}
.y109_c00446{bottom:243.649283pt;}
.y108_c00446{bottom:244.831391pt;}
.y107_c00446{bottom:246.696244pt;}
.y106_c00446{bottom:247.422085pt;}
.y105_c00446{bottom:249.100372pt;}
.y104_c00446{bottom:250.714405pt;}
.y103_c00446{bottom:251.411815pt;}
.y102_c00446{bottom:252.356044pt;}
.y101_c00446{bottom:265.470267pt;}
.y100_c00446{bottom:267.583177pt;}
.yff_c00446{bottom:270.546519pt;}
.yfe_c00446{bottom:271.162340pt;}
.yfd_c00446{bottom:272.938741pt;}
.yfc_c00446{bottom:275.260456pt;}
.yfb_c00446{bottom:276.167404pt;}
.yfa_c00446{bottom:278.265163pt;}
.yf9_c00446{bottom:281.188635pt;}
.yf8_c00446{bottom:282.069931pt;}
.yf7_c00446{bottom:283.548315pt;}
.yf6_c00446{bottom:297.913099pt;}
.yf5_c00446{bottom:301.680460pt;}
.yf4_c00446{bottom:304.711237pt;}
.yf3_c00446{bottom:306.992312pt;}
.yf2_c00446{bottom:308.452951pt;}
.yf1_c00446{bottom:311.425343pt;}
.yf0_c00446{bottom:312.566945pt;}
.yef_c00446{bottom:314.833859pt;}
.yee_c00446{bottom:315.932887pt;}
.yed_c00446{bottom:317.695499pt;}
.yec_c00446{bottom:320.013255pt;}
.yeb_c00446{bottom:330.923343pt;}
.yea_c00446{bottom:331.893376pt;}
.ye9_c00446{bottom:334.428121pt;}
.ye8_c00446{bottom:338.227823pt;}
.ye7_c00446{bottom:339.542231pt;}
.ye6_c00446{bottom:342.347136pt;}
.ye5_c00446{bottom:343.298311pt;}
.ye4_c00446{bottom:346.101403pt;}
.ye3_c00446{bottom:348.637508pt;}
.ye2_c00446{bottom:349.519755pt;}
.ye1_c00446{bottom:362.330217pt;}
.ye0_c00446{bottom:363.733215pt;}
.ydf_c00446{bottom:365.507948pt;}
.yde_c00446{bottom:368.253904pt;}
.ydd_c00446{bottom:371.716885pt;}
.ydc_c00446{bottom:374.154544pt;}
.ydb_c00446{bottom:374.831160pt;}
.yda_c00446{bottom:376.871288pt;}
.yd9_c00446{bottom:377.919685pt;}
.yd8_c00446{bottom:378.637572pt;}
.yd7_c00446{bottom:382.730567pt;}
.yd6_c00446{bottom:384.064685pt;}
.yd5_c00446{bottom:394.770799pt;}
.yd4_c00446{bottom:395.609891pt;}
.yd3_c00446{bottom:396.459891pt;}
.yd2_c00446{bottom:399.798013pt;}
.yd1_c00446{bottom:400.624809pt;}
.yd0_c00446{bottom:403.094007pt;}
.ycf_c00446{bottom:404.497661pt;}
.yce_c00446{bottom:406.988549pt;}
.ycd_c00446{bottom:407.787099pt;}
.ycc_c00446{bottom:408.609107pt;}
.ycb_c00446{bottom:411.652289pt;}
.yca_c00446{bottom:427.338692pt;}
.yc9_c00446{bottom:430.407033pt;}
.yc8_c00446{bottom:431.117633pt;}
.yc7_c00446{bottom:434.769415pt;}
.yc6_c00446{bottom:437.417561pt;}
.yc5_c00446{bottom:438.764868pt;}
.yc4_c00446{bottom:441.810951pt;}
.yc3_c00446{bottom:445.792124pt;}
.yc2_c00446{bottom:448.116092pt;}
.yc1_c00446{bottom:459.017535pt;}
.yc0_c00446{bottom:459.850932pt;}
.ybf_c00446{bottom:462.098512pt;}
.ybe_c00446{bottom:464.320339pt;}
.ybd_c00446{bottom:465.423404pt;}
.ybc_c00446{bottom:467.637949pt;}
.ybb_c00446{bottom:469.547752pt;}
.yba_c00446{bottom:471.491723pt;}
.yb9_c00446{bottom:473.700619pt;}
.yb8_c00446{bottom:476.425783pt;}
.yb7_c00446{bottom:490.988448pt;}
.yb6_c00446{bottom:492.660840pt;}
.yb5_c00446{bottom:496.411584pt;}
.yb4_c00446{bottom:497.372515pt;}
.yb3_c00446{bottom:501.415477pt;}
.yb2_c00446{bottom:502.421061pt;}
.yb1_c00446{bottom:503.789765pt;}
.yb0_c00446{bottom:504.773136pt;}
.yaf_c00446{bottom:505.791141pt;}
.yae_c00446{bottom:507.786035pt;}
.yad_c00446{bottom:508.813333pt;}
.yac_c00446{bottom:530.945243pt;}
.yab_c00446{bottom:532.657240pt;}
.yaa_c00446{bottom:534.862304pt;}
.ya9_c00446{bottom:535.676561pt;}
.ya8_c00446{bottom:536.501413pt;}
.ya7_c00446{bottom:537.569541pt;}
.ya6_c00446{bottom:538.955940pt;}
.ya5_c00446{bottom:539.799952pt;}
.ya4_c00446{bottom:541.433841pt;}
.ya3_c00446{bottom:554.146491pt;}
.ya2_c00446{bottom:556.749647pt;}
.ya1_c00446{bottom:557.896655pt;}
.ya0_c00446{bottom:559.008360pt;}
.y9f_c00446{bottom:561.295107pt;}
.y9e_c00446{bottom:563.035803pt;}
.y9d_c00446{bottom:564.495972pt;}
.y9c_c00446{bottom:567.034400pt;}
.y9b_c00446{bottom:568.186667pt;}
.y9a_c00446{bottom:571.041697pt;}
.y99_c00446{bottom:572.169333pt;}
.y98_c00446{bottom:585.046713pt;}
.y97_c00446{bottom:587.137721pt;}
.y96_c00446{bottom:589.232997pt;}
.y95_c00446{bottom:590.416588pt;}
.y94_c00446{bottom:591.602279pt;}
.y93_c00446{bottom:593.658621pt;}
.y92_c00446{bottom:594.552369pt;}
.y91_c00446{bottom:597.204777pt;}
.y90_c00446{bottom:599.560716pt;}
.y8f_c00446{bottom:602.506840pt;}
.y8e_c00446{bottom:603.382439pt;}
.y8d_c00446{bottom:616.961213pt;}
.y8c_c00446{bottom:617.638253pt;}
.y8b_c00446{bottom:619.401600pt;}
.y8a_c00446{bottom:620.405167pt;}
.y89_c00446{bottom:621.825653pt;}
.y88_c00446{bottom:623.581953pt;}
.y87_c00446{bottom:626.642073pt;}
.y86_c00446{bottom:630.468180pt;}
.y85_c00446{bottom:631.154787pt;}
.y84_c00446{bottom:632.514887pt;}
.y83_c00446{bottom:634.938053pt;}
.y82_c00446{bottom:636.313040pt;}
.y81_c00446{bottom:637.995560pt;}
.y80_c00446{bottom:638.650667pt;}
.y7f_c00446{bottom:666.109333pt;}
.y7e_c00446{bottom:681.934019pt;}
.y7d_c00446{bottom:683.101984pt;}
.y7c_c00446{bottom:685.414947pt;}
.y7b_c00446{bottom:686.520929pt;}
.y7a_c00446{bottom:687.707880pt;}
.y79_c00446{bottom:690.020572pt;}
.y78_c00446{bottom:691.124815pt;}
.y77_c00446{bottom:691.976409pt;}
.y76_c00446{bottom:694.259947pt;}
.y75_c00446{bottom:695.138144pt;}
.y74_c00446{bottom:695.972996pt;}
.y73_c00446{bottom:698.248568pt;}
.y72_c00446{bottom:700.264725pt;}
.y71_c00446{bottom:713.635341pt;}
.y70_c00446{bottom:714.441479pt;}
.y6f_c00446{bottom:716.406032pt;}
.y6e_c00446{bottom:717.210971pt;}
.y6d_c00446{bottom:719.154237pt;}
.y6c_c00446{bottom:719.743373pt;}
.y6b_c00446{bottom:721.379041pt;}
.y6a_c00446{bottom:723.012737pt;}
.y69_c00446{bottom:723.846676pt;}
.y68_c00446{bottom:726.044780pt;}
.y67_c00446{bottom:727.153296pt;}
.y66_c00446{bottom:729.646277pt;}
.y65_c00446{bottom:730.996696pt;}
.y64_c00446{bottom:745.818977pt;}
.y63_c00446{bottom:746.631881pt;}
.y62_c00446{bottom:749.133756pt;}
.y61_c00446{bottom:750.781372pt;}
.y60_c00446{bottom:753.544889pt;}
.y5f_c00446{bottom:756.005216pt;}
.y5e_c00446{bottom:756.865661pt;}
.y5d_c00446{bottom:757.699407pt;}
.y5c_c00446{bottom:760.447805pt;}
.y5b_c00446{bottom:761.529853pt;}
.y5a_c00446{bottom:763.171476pt;}
.y59_c00446{bottom:779.830017pt;}
.y58_c00446{bottom:780.599507pt;}
.y57_c00446{bottom:781.336997pt;}
.y56_c00446{bottom:783.076769pt;}
.y55_c00446{bottom:783.580520pt;}
.y54_c00446{bottom:785.773269pt;}
.y53_c00446{bottom:786.776440pt;}
.y52_c00446{bottom:787.497051pt;}
.y51_c00446{bottom:788.744963pt;}
.y50_c00446{bottom:790.198133pt;}
.y4f_c00446{bottom:790.930152pt;}
.y4e_c00446{bottom:793.653335pt;}
.y4d_c00446{bottom:794.137480pt;}
.y4c_c00446{bottom:811.639575pt;}
.y4b_c00446{bottom:813.513401pt;}
.y4a_c00446{bottom:814.477539pt;}
.y49_c00446{bottom:815.190297pt;}
.y48_c00446{bottom:816.389031pt;}
.y47_c00446{bottom:819.220537pt;}
.y46_c00446{bottom:820.874135pt;}
.y45_c00446{bottom:821.818724pt;}
.y44_c00446{bottom:823.438581pt;}
.y43_c00446{bottom:824.398891pt;}
.y42_c00446{bottom:825.113989pt;}
.y41_c00446{bottom:842.864707pt;}
.y40_c00446{bottom:844.593687pt;}
.y3f_c00446{bottom:845.464537pt;}
.y3e_c00446{bottom:846.304725pt;}
.y3d_c00446{bottom:847.447093pt;}
.y3c_c00446{bottom:849.169113pt;}
.y3b_c00446{bottom:849.988035pt;}
.y3a_c00446{bottom:852.582104pt;}
.y39_c00446{bottom:854.008517pt;}
.y38_c00446{bottom:854.864249pt;}
.y37_c00446{bottom:856.569333pt;}
.y36_c00446{bottom:884.634027pt;}
.y35_c00446{bottom:885.263320pt;}
.y34_c00446{bottom:885.732253pt;}
.y33_c00446{bottom:886.984587pt;}
.y32_c00446{bottom:887.469040pt;}
.y31_c00446{bottom:887.945520pt;}
.y30_c00446{bottom:904.997053pt;}
.y2f_c00446{bottom:905.713867pt;}
.y2e_c00446{bottom:907.131240pt;}
.y2d_c00446{bottom:907.857707pt;}
.y2c_c00446{bottom:910.444760pt;}
.y2b_c00446{bottom:911.165880pt;}
.y2a_c00446{bottom:912.327773pt;}
.y29_c00446{bottom:913.775840pt;}
.y28_c00446{bottom:915.193213pt;}
.y27_c00446{bottom:915.906520pt;}
.y26_c00446{bottom:916.846133pt;}
.y25_c00446{bottom:919.162867pt;}
.y24_c00446{bottom:937.675147pt;}
.y23_c00446{bottom:938.480547pt;}
.y22_c00446{bottom:940.271347pt;}
.y21_c00446{bottom:941.832587pt;}
.y20_c00446{bottom:944.910053pt;}
.y1f_c00446{bottom:945.659827pt;}
.y1e_c00446{bottom:946.958227pt;}
.y1d_c00446{bottom:947.973907pt;}
.y1c_c00446{bottom:948.743520pt;}
.y1b_c00446{bottom:950.014893pt;}
.y1a_c00446{bottom:950.985840pt;}
.y19_c00446{bottom:952.536533pt;}
.y18_c00446{bottom:967.173813pt;}
.y17_c00446{bottom:968.025707pt;}
.y16_c00446{bottom:968.699333pt;}
.y15_c00446{bottom:971.003693pt;}
.y14_c00446{bottom:971.891240pt;}
.y13_c00446{bottom:973.483880pt;}
.y12_c00446{bottom:974.163373pt;}
.y11_c00446{bottom:976.458800pt;}
.y10_c00446{bottom:978.472040pt;}
.yf_c00446{bottom:979.156920pt;}
.ye_c00446{bottom:980.715867pt;}
.yd_c00446{bottom:982.071747pt;}
.yc_c00446{bottom:999.299387pt;}
.yb_c00446{bottom:1001.817587pt;}
.ya_c00446{bottom:1002.708707pt;}
.y9_c00446{bottom:1004.777867pt;}
.y8_c00446{bottom:1006.262787pt;}
.y7_c00446{bottom:1007.133507pt;}
.y6_c00446{bottom:1010.094667pt;}
.y5_c00446{bottom:1010.973547pt;}
.y4_c00446{bottom:1011.578507pt;}
.y3_c00446{bottom:1012.476387pt;}
.y2_c00446{bottom:1013.657507pt;}
.y1_c00446{bottom:1015.690667pt;}
.h15_c00446{height:53.309061pt;}
.h10_c00446{height:58.641933pt;}
.h9_c00446{height:58.691331pt;}
.hd_c00446{height:63.973018pt;}
.h7_c00446{height:64.026906pt;}
.h3_c00446{height:64.028794pt;}
.h14_c00446{height:69.301779pt;}
.h12_c00446{height:69.304103pt;}
.hc_c00446{height:69.306496pt;}
.h16_c00446{height:69.358601pt;}
.h5_c00446{height:69.364526pt;}
.hf_c00446{height:74.635188pt;}
.ha_c00446{height:74.666667pt;}
.h6_c00446{height:74.698057pt;}
.h4_c00446{height:74.700259pt;}
.hb_c00446{height:79.969034pt;}
.he_c00446{height:85.297358pt;}
.h13_c00446{height:85.347156pt;}
.h8_c00446{height:85.369208pt;}
.h11_c00446{height:90.628443pt;}
.h17_c00446{height:96.034986pt;}
.h2_c00446{height:96.043190pt;}
.h0_c00446{height:1112.400000pt;}
.h1_c00446{height:1112.666667pt;}
.w0_c00446{width:813.333333pt;}
.x0_c00446{left:0.000000pt;}
.xe1_c00446{left:100.645333pt;}
.xd5_c00446{left:102.444000pt;}
.xc5_c00446{left:104.128236pt;}
.xb8_c00446{left:105.514435pt;}
.xb0_c00446{left:106.791489pt;}
.x9f_c00446{left:108.183397pt;}
.x94_c00446{left:110.358563pt;}
.x83_c00446{left:112.226667pt;}
.x7b_c00446{left:113.718945pt;}
.x64_c00446{left:115.176708pt;}
.x5a_c00446{left:116.759183pt;}
.x3d_c00446{left:118.247541pt;}
.x2f_c00446{left:120.003040pt;}
.x23_c00446{left:122.051227pt;}
.xd_c00446{left:123.508773pt;}
.xe2_c00446{left:130.952000pt;}
.xd6_c00446{left:132.016000pt;}
.x72_c00446{left:134.085283pt;}
.xab_c00446{left:136.224827pt;}
.x46_c00446{left:137.190533pt;}
.xda_c00446{left:141.029916pt;}
.x7c_c00446{left:142.860200pt;}
.x71_c00446{left:144.240000pt;}
.xbe_c00446{left:145.151100pt;}
.xa5_c00446{left:147.048003pt;}
.x3e_c00446{left:148.059872pt;}
.x30_c00446{left:149.764853pt;}
.x84_c00446{left:151.110667pt;}
.xc6_c00446{left:153.086575pt;}
.xb9_c00446{left:154.751864pt;}
.xe3_c00446{left:159.734667pt;}
.xe8_c00446{left:160.662503pt;}
.xcf_c00446{left:163.552035pt;}
.x5b_c00446{left:164.981908pt;}
.xb1_c00446{left:167.722193pt;}
.x89_c00446{left:170.649836pt;}
.xbf_c00446{left:174.145257pt;}
.x51_c00446{left:176.504771pt;}
.x9b_c00446{left:177.973431pt;}
.x31_c00446{left:180.014867pt;}
.xe_c00446{left:182.450467pt;}
.x65_c00446{left:184.699375pt;}
.x3f_c00446{left:188.076339pt;}
.xe4_c00446{left:188.972000pt;}
.xd7_c00446{left:190.750667pt;}
.x8a_c00446{left:200.812059pt;}
.x8e_c00446{left:207.929333pt;}
.xb2_c00446{left:214.065496pt;}
.x52_c00446{left:215.151225pt;}
.xa0_c00446{left:216.759569pt;}
.x24_c00446{left:218.581920pt;}
.x19_c00446{left:219.818533pt;}
.x73_c00446{left:221.355259pt;}
.x1_c00446{left:222.374667pt;}
.xdf_c00446{left:230.407316pt;}
.x8f_c00446{left:238.113785pt;}
.x7d_c00446{left:240.959193pt;}
.xb3_c00446{left:242.948636pt;}
.x47_c00446{left:246.140511pt;}
.xe5_c00446{left:247.588000pt;}
.xf_c00446{left:250.207333pt;}
.x5c_c00446{left:254.029832pt;}
.x40_c00446{left:255.575455pt;}
.x25_c00446{left:257.731627pt;}
.x66_c00446{left:263.167375pt;}
.x1a_c00446{left:268.692373pt;}
.x48_c00446{left:275.431913pt;}
.x33_c00446{left:276.636000pt;}
.xdb_c00446{left:278.369772pt;}
.x10_c00446{left:279.976240pt;}
.xba_c00446{left:281.434299pt;}
.xa6_c00446{left:284.367205pt;}
.x95_c00446{left:286.326313pt;}
.x26_c00446{left:287.424947pt;}
.x8b_c00446{left:288.487944pt;}
.x2_c00446{left:290.146667pt;}
.x67_c00446{left:291.955375pt;}
.x5d_c00446{left:293.634992pt;}
.x41_c00446{left:294.911805pt;}
.x90_c00446{left:296.728445pt;}
.x1b_c00446{left:298.305267pt;}
.xac_c00446{left:302.898664pt;}
.x34_c00446{left:306.144000pt;}
.xdc_c00446{left:307.588524pt;}
.xc0_c00446{left:311.082741pt;}
.x53_c00446{left:313.328753pt;}
.xa7_c00446{left:314.309568pt;}
.x8c_c00446{left:317.943461pt;}
.x7e_c00446{left:319.395745pt;}
.x68_c00446{left:322.238041pt;}
.x32_c00446{left:326.961880pt;}
.x3_c00446{left:329.517333pt;}
.xad_c00446{left:332.609632pt;}
.x49_c00446{left:333.547975pt;}
.x1c_c00446{left:337.365947pt;}
.xc1_c00446{left:341.304124pt;}
.x54_c00446{left:343.090937pt;}
.x27_c00446{left:346.503587pt;}
.x74_c00446{left:348.938215pt;}
.xbb_c00446{left:351.260553pt;}
.x35_c00446{left:355.330667pt;}
.x4_c00446{left:359.446667pt;}
.x42_c00446{left:363.804448pt;}
.x11_c00446{left:367.502600pt;}
.xc7_c00446{left:369.433695pt;}
.x5e_c00446{left:372.146607pt;}
.x55_c00446{left:373.819827pt;}
.xe9_c00446{left:375.564608pt;}
.x85_c00446{left:376.825333pt;}
.xd8_c00446{left:378.500000pt;}
.x5_c00446{left:379.612000pt;}
.xbc_c00446{left:381.474439pt;}
.x4a_c00446{left:383.481775pt;}
.x9c_c00446{left:384.450747pt;}
.x1d_c00446{left:387.318613pt;}
.xc8_c00446{left:389.412223pt;}
.xa8_c00446{left:391.861307pt;}
.x91_c00446{left:395.749325pt;}
.x69_c00446{left:400.980708pt;}
.x5f_c00446{left:401.915457pt;}
.xdd_c00446{left:405.771576pt;}
.x28_c00446{left:406.827760pt;}
.x6_c00446{left:408.908000pt;}
.xb4_c00446{left:410.725865pt;}
.x4b_c00446{left:412.287767pt;}
.xa1_c00446{left:413.482809pt;}
.xea_c00446{left:414.752195pt;}
.x1e_c00446{left:416.136720pt;}
.xc2_c00446{left:418.902192pt;}
.xae_c00446{left:420.157275pt;}
.x96_c00446{left:423.774105pt;}
.x8d_c00446{left:425.785260pt;}
.x86_c00446{left:427.176000pt;}
.x6a_c00446{left:430.346041pt;}
.xe6_c00446{left:435.161333pt;}
.x7f_c00446{left:437.438232pt;}
.x36_c00446{left:444.781333pt;}
.xc9_c00446{left:447.377127pt;}
.xb5_c00446{left:449.136864pt;}
.x4c_c00446{left:452.401740pt;}
.x29_c00446{left:455.255147pt;}
.x75_c00446{left:458.146231pt;}
.x60_c00446{left:460.274492pt;}
.x56_c00446{left:461.695712pt;}
.xe7_c00446{left:463.756000pt;}
.x12_c00446{left:467.282187pt;}
.x6b_c00446{left:468.423375pt;}
.x37_c00446{left:473.020000pt;}
.xe0_c00446{left:475.409220pt;}
.xca_c00446{left:476.537999pt;}
.x43_c00446{left:481.781539pt;}
.xeb_c00446{left:483.902039pt;}
.x2a_c00446{left:485.297880pt;}
.x87_c00446{left:487.200000pt;}
.xd9_c00446{left:495.293333pt;}
.x13_c00446{left:496.827053pt;}
.xcb_c00446{left:498.263521pt;}
.x9d_c00446{left:501.846567pt;}
.x97_c00446{left:502.752491pt;}
.x80_c00446{left:505.915025pt;}
.x7_c00446{left:507.613333pt;}
.xb6_c00446{left:509.107332pt;}
.x61_c00446{left:518.701527pt;}
.xd0_c00446{left:526.827063pt;}
.xa2_c00446{left:531.054459pt;}
.x38_c00446{left:532.400000pt;}
.x1f_c00446{left:534.510920pt;}
.x8_c00446{left:536.637333pt;}
.xbd_c00446{left:538.436027pt;}
.x4d_c00446{left:540.115909pt;}
.x98_c00446{left:542.098471pt;}
.x92_c00446{left:544.087505pt;}
.x76_c00446{left:545.490799pt;}
.x6c_c00446{left:548.171375pt;}
.xc3_c00446{left:557.615867pt;}
.x4e_c00446{left:560.247563pt;}
.x44_c00446{left:561.407728pt;}
.xec_c00446{left:563.973932pt;}
.x14_c00446{left:566.062907pt;}
.x39_c00446{left:571.792000pt;}
.xd1_c00446{left:575.178663pt;}
.xaf_c00446{left:579.825671pt;}
.x81_c00446{left:584.808547pt;}
.x9_c00446{left:586.134667pt;}
.x6d_c00446{left:589.100708pt;}
.x2b_c00446{left:593.107947pt;}
.x20_c00446{left:594.559453pt;}
.x77_c00446{left:595.620619pt;}
.xde_c00446{left:596.929560pt;}
.x3a_c00446{left:600.764000pt;}
.x15_c00446{left:604.633653pt;}
.xcc_c00446{left:606.220033pt;}
.x62_c00446{left:609.154823pt;}
.xd2_c00446{left:615.170631pt;}
.x57_c00446{left:619.233608pt;}
.x99_c00446{left:621.329981pt;}
.x2c_c00446{left:623.373387pt;}
.x6e_c00446{left:627.238041pt;}
.x4f_c00446{left:629.856977pt;}
.x3b_c00446{left:630.793333pt;}
.xcd_c00446{left:634.828307pt;}
.x78_c00446{left:636.165367pt;}
.x63_c00446{left:637.923673pt;}
.x88_c00446{left:643.940000pt;}
.xa3_c00446{left:650.138245pt;}
.xed_c00446{left:653.075047pt;}
.xa_c00446{left:655.106667pt;}
.x50_c00446{left:659.383085pt;}
.x21_c00446{left:663.461067pt;}
.x79_c00446{left:664.810027pt;}
.xd3_c00446{left:675.957783pt;}
.x45_c00446{left:679.607485pt;}
.x2d_c00446{left:682.452027pt;}
.xb_c00446{left:684.810667pt;}
.xb7_c00446{left:687.850753pt;}
.xa9_c00446{left:689.326757pt;}
.x3c_c00446{left:690.413333pt;}
.x22_c00446{left:694.444787pt;}
.xce_c00446{left:695.761241pt;}
.xc4_c00446{left:697.996417pt;}
.x9a_c00446{left:701.514099pt;}
.xee_c00446{left:703.035277pt;}
.x16_c00446{left:704.799987pt;}
.x6f_c00446{left:706.995375pt;}
.x58_c00446{left:708.588199pt;}
.xa4_c00446{left:710.386235pt;}
.x2e_c00446{left:712.306720pt;}
.x7a_c00446{left:715.140979pt;}
.x9e_c00446{left:720.178683pt;}
.x82_c00446{left:724.205441pt;}
.xaa_c00446{left:729.374641pt;}
.x93_c00446{left:731.666405pt;}
.x17_c00446{left:734.104813pt;}
.xd4_c00446{left:735.201147pt;}
.x59_c00446{left:737.631716pt;}
.x70_c00446{left:747.270041pt;}
.xc_c00446{left:768.750667pt;}
.x18_c00446{left:771.131240pt;}
}





/* 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_c00447 {
    display:none;
  }
  .loading-indicator_c00447.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00447 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_c00447 { 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_c00447" -> "#page-container .classname_c00447")
 */
.pf_c00447 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00447 { /* 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_c00447.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00447 { /* 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_c00447 { /* 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_c00447 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00447 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00447 {overflow:visible;}
  }
}
.c_c00447 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00447 { /* 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_c00447:after { /* webkit #35443 */
  content: '';
}
.t_c00447:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00447 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 */
}
.__c00447 { /* 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_c00447 { /* info for Javascript */
  display:none;
}
.l_c00447 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00447 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00447 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00447: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_c00447 {
    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_c00447.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00447.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_c00447 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00447{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00447;src:url('chunks/assets/font_b11a17f404e7258299fdf971.woff2')format("woff");}.ff1_c00447{font-family:ff1_c00447;line-height:1.000000;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;}
.m33_c00447{transform:matrix(0.021559,-0.000194,0.002250,0.249990,0,0);-ms-transform:matrix(0.021559,-0.000194,0.002250,0.249990,0,0);-webkit-transform:matrix(0.021559,-0.000194,0.002250,0.249990,0,0);}
.m32_c00447{transform:matrix(0.064282,-0.000579,0.002250,0.249990,0,0);-ms-transform:matrix(0.064282,-0.000579,0.002250,0.249990,0,0);-webkit-transform:matrix(0.064282,-0.000579,0.002250,0.249990,0,0);}
.m2f_c00447{transform:matrix(0.156295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156295,0.000000,0.000000,0.250000,0,0);}
.m2b_c00447{transform:matrix(0.161055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161055,0.000000,0.000000,0.250000,0,0);}
.ma_c00447{transform:matrix(0.174993,-0.003325,0.004749,0.249955,0,0);-ms-transform:matrix(0.174993,-0.003325,0.004749,0.249955,0,0);-webkit-transform:matrix(0.174993,-0.003325,0.004749,0.249955,0,0);}
.m27_c00447{transform:matrix(0.176230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176230,0.000000,0.000000,0.250000,0,0);}
.m21_c00447{transform:matrix(0.178902,-0.002862,0.003999,0.249968,0,0);-ms-transform:matrix(0.178902,-0.002862,0.003999,0.249968,0,0);-webkit-transform:matrix(0.178902,-0.002862,0.003999,0.249968,0,0);}
.m1b_c00447{transform:matrix(0.184616,-0.002954,0.003999,0.249968,0,0);-ms-transform:matrix(0.184616,-0.002954,0.003999,0.249968,0,0);-webkit-transform:matrix(0.184616,-0.002954,0.003999,0.249968,0,0);}
.m12_c00447{transform:matrix(0.187822,-0.002630,0.003500,0.249976,0,0);-ms-transform:matrix(0.187822,-0.002630,0.003500,0.249976,0,0);-webkit-transform:matrix(0.187822,-0.002630,0.003500,0.249976,0,0);}
.m42_c00447{transform:matrix(0.193405,-0.003094,0.003999,0.249968,0,0);-ms-transform:matrix(0.193405,-0.003094,0.003999,0.249968,0,0);-webkit-transform:matrix(0.193405,-0.003094,0.003999,0.249968,0,0);}
.m2a_c00447{transform:matrix(0.194430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194430,0.000000,0.000000,0.250000,0,0);}
.m35_c00447{transform:matrix(0.197312,-0.001776,0.002250,0.249990,0,0);-ms-transform:matrix(0.197312,-0.001776,0.002250,0.249990,0,0);-webkit-transform:matrix(0.197312,-0.001776,0.002250,0.249990,0,0);}
.m2d_c00447{transform:matrix(0.197340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197340,0.000000,0.000000,0.250000,0,0);}
.m13_c00447{transform:matrix(0.199225,-0.002789,0.003500,0.249976,0,0);-ms-transform:matrix(0.199225,-0.002789,0.003500,0.249976,0,0);-webkit-transform:matrix(0.199225,-0.002789,0.003500,0.249976,0,0);}
.m2c_c00447{transform:matrix(0.199435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199435,0.000000,0.000000,0.250000,0,0);}
.m28_c00447{transform:matrix(0.199735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199735,0.000000,0.000000,0.250000,0,0);}
.m30_c00447{transform:matrix(0.201720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201720,0.000000,0.000000,0.250000,0,0);}
.m1d_c00447{transform:matrix(0.207029,-0.003312,0.003999,0.249968,0,0);-ms-transform:matrix(0.207029,-0.003312,0.003999,0.249968,0,0);-webkit-transform:matrix(0.207029,-0.003312,0.003999,0.249968,0,0);}
.m31_c00447{transform:matrix(0.207115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207115,0.000000,0.000000,0.250000,0,0);}
.m1c_c00447{transform:matrix(0.211438,-0.003383,0.003999,0.249968,0,0);-ms-transform:matrix(0.211438,-0.003383,0.003999,0.249968,0,0);-webkit-transform:matrix(0.211438,-0.003383,0.003999,0.249968,0,0);}
.m46_c00447{transform:matrix(0.213108,-0.003410,0.003999,0.249968,0,0);-ms-transform:matrix(0.213108,-0.003410,0.003999,0.249968,0,0);-webkit-transform:matrix(0.213108,-0.003410,0.003999,0.249968,0,0);}
.m44_c00447{transform:matrix(0.215032,-0.003441,0.003999,0.249968,0,0);-ms-transform:matrix(0.215032,-0.003441,0.003999,0.249968,0,0);-webkit-transform:matrix(0.215032,-0.003441,0.003999,0.249968,0,0);}
.m45_c00447{transform:matrix(0.216697,-0.003467,0.003999,0.249968,0,0);-ms-transform:matrix(0.216697,-0.003467,0.003999,0.249968,0,0);-webkit-transform:matrix(0.216697,-0.003467,0.003999,0.249968,0,0);}
.m1_c00447{transform:matrix(0.218081,-0.004144,0.004749,0.249955,0,0);-ms-transform:matrix(0.218081,-0.004144,0.004749,0.249955,0,0);-webkit-transform:matrix(0.218081,-0.004144,0.004749,0.249955,0,0);}
.m22_c00447{transform:matrix(0.218767,-0.003500,0.003999,0.249968,0,0);-ms-transform:matrix(0.218767,-0.003500,0.003999,0.249968,0,0);-webkit-transform:matrix(0.218767,-0.003500,0.003999,0.249968,0,0);}
.m1e_c00447{transform:matrix(0.219362,-0.003510,0.003999,0.249968,0,0);-ms-transform:matrix(0.219362,-0.003510,0.003999,0.249968,0,0);-webkit-transform:matrix(0.219362,-0.003510,0.003999,0.249968,0,0);}
.m36_c00447{transform:matrix(0.221031,-0.001989,0.002250,0.249990,0,0);-ms-transform:matrix(0.221031,-0.001989,0.002250,0.249990,0,0);-webkit-transform:matrix(0.221031,-0.001989,0.002250,0.249990,0,0);}
.m11_c00447{transform:matrix(0.226313,-0.003168,0.003500,0.249976,0,0);-ms-transform:matrix(0.226313,-0.003168,0.003500,0.249976,0,0);-webkit-transform:matrix(0.226313,-0.003168,0.003500,0.249976,0,0);}
.m3_c00447{transform:matrix(0.227659,-0.004326,0.004749,0.249955,0,0);-ms-transform:matrix(0.227659,-0.004326,0.004749,0.249955,0,0);-webkit-transform:matrix(0.227659,-0.004326,0.004749,0.249955,0,0);}
.m51_c00447{transform:matrix(0.227691,-0.001366,0.001500,0.249996,0,0);-ms-transform:matrix(0.227691,-0.001366,0.001500,0.249996,0,0);-webkit-transform:matrix(0.227691,-0.001366,0.001500,0.249996,0,0);}
.me_c00447{transform:matrix(0.229418,-0.003212,0.003500,0.249976,0,0);-ms-transform:matrix(0.229418,-0.003212,0.003500,0.249976,0,0);-webkit-transform:matrix(0.229418,-0.003212,0.003500,0.249976,0,0);}
.m53_c00447{transform:matrix(0.232511,-0.001395,0.001500,0.249996,0,0);-ms-transform:matrix(0.232511,-0.001395,0.001500,0.249996,0,0);-webkit-transform:matrix(0.232511,-0.001395,0.001500,0.249996,0,0);}
.m25_c00447{transform:matrix(0.232625,-0.003722,0.003999,0.249968,0,0);-ms-transform:matrix(0.232625,-0.003722,0.003999,0.249968,0,0);-webkit-transform:matrix(0.232625,-0.003722,0.003999,0.249968,0,0);}
.m29_c00447{transform:matrix(0.233295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233295,0.000000,0.000000,0.250000,0,0);}
.m1f_c00447{transform:matrix(0.236205,-0.003779,0.003999,0.249968,0,0);-ms-transform:matrix(0.236205,-0.003779,0.003999,0.249968,0,0);-webkit-transform:matrix(0.236205,-0.003779,0.003999,0.249968,0,0);}
.m2e_c00447{transform:matrix(0.236515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236515,0.000000,0.000000,0.250000,0,0);}
.m14_c00447{transform:matrix(0.239432,-0.003352,0.003500,0.249976,0,0);-ms-transform:matrix(0.239432,-0.003352,0.003500,0.249976,0,0);-webkit-transform:matrix(0.239432,-0.003352,0.003500,0.249976,0,0);}
.m34_c00447{transform:matrix(0.241740,-0.002176,0.002250,0.249990,0,0);-ms-transform:matrix(0.241740,-0.002176,0.002250,0.249990,0,0);-webkit-transform:matrix(0.241740,-0.002176,0.002250,0.249990,0,0);}
.m4_c00447{transform:matrix(0.242696,-0.004611,0.004749,0.249955,0,0);-ms-transform:matrix(0.242696,-0.004611,0.004749,0.249955,0,0);-webkit-transform:matrix(0.242696,-0.004611,0.004749,0.249955,0,0);}
.m4f_c00447{transform:matrix(0.244471,-0.001467,0.001500,0.249996,0,0);-ms-transform:matrix(0.244471,-0.001467,0.001500,0.249996,0,0);-webkit-transform:matrix(0.244471,-0.001467,0.001500,0.249996,0,0);}
.m4b_c00447{transform:matrix(0.245011,-0.001470,0.001500,0.249996,0,0);-ms-transform:matrix(0.245011,-0.001470,0.001500,0.249996,0,0);-webkit-transform:matrix(0.245011,-0.001470,0.001500,0.249996,0,0);}
.m49_c00447{transform:matrix(0.252298,-0.004037,0.003999,0.249968,0,0);-ms-transform:matrix(0.252298,-0.004037,0.003999,0.249968,0,0);-webkit-transform:matrix(0.252298,-0.004037,0.003999,0.249968,0,0);}
.m50_c00447{transform:matrix(0.257260,-0.001544,0.001500,0.249996,0,0);-ms-transform:matrix(0.257260,-0.001544,0.001500,0.249996,0,0);-webkit-transform:matrix(0.257260,-0.001544,0.001500,0.249996,0,0);}
.m37_c00447{transform:matrix(0.261749,-0.002356,0.002250,0.249990,0,0);-ms-transform:matrix(0.261749,-0.002356,0.002250,0.249990,0,0);-webkit-transform:matrix(0.261749,-0.002356,0.002250,0.249990,0,0);}
.m2_c00447{transform:matrix(0.262063,-0.004979,0.004749,0.249955,0,0);-ms-transform:matrix(0.262063,-0.004979,0.004749,0.249955,0,0);-webkit-transform:matrix(0.262063,-0.004979,0.004749,0.249955,0,0);}
.m41_c00447{transform:matrix(0.262706,-0.004203,0.003999,0.249968,0,0);-ms-transform:matrix(0.262706,-0.004203,0.003999,0.249968,0,0);-webkit-transform:matrix(0.262706,-0.004203,0.003999,0.249968,0,0);}
.m1a_c00447{transform:matrix(0.262726,-0.004204,0.003999,0.249968,0,0);-ms-transform:matrix(0.262726,-0.004204,0.003999,0.249968,0,0);-webkit-transform:matrix(0.262726,-0.004204,0.003999,0.249968,0,0);}
.m3f_c00447{transform:matrix(0.263971,-0.004224,0.003999,0.249968,0,0);-ms-transform:matrix(0.263971,-0.004224,0.003999,0.249968,0,0);-webkit-transform:matrix(0.263971,-0.004224,0.003999,0.249968,0,0);}
.m4a_c00447{transform:matrix(0.268455,-0.001611,0.001500,0.249996,0,0);-ms-transform:matrix(0.268455,-0.001611,0.001500,0.249996,0,0);-webkit-transform:matrix(0.268455,-0.001611,0.001500,0.249996,0,0);}
.m3a_c00447{transform:matrix(0.269260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269260,0.000000,0.000000,0.250000,0,0);}
.m3d_c00447{transform:matrix(0.270440,-0.004327,0.003999,0.249968,0,0);-ms-transform:matrix(0.270440,-0.004327,0.003999,0.249968,0,0);-webkit-transform:matrix(0.270440,-0.004327,0.003999,0.249968,0,0);}
.m5_c00447{transform:matrix(0.273116,-0.005189,0.004749,0.249955,0,0);-ms-transform:matrix(0.273116,-0.005189,0.004749,0.249955,0,0);-webkit-transform:matrix(0.273116,-0.005189,0.004749,0.249955,0,0);}
.mf_c00447{transform:matrix(0.275773,-0.003861,0.003500,0.249976,0,0);-ms-transform:matrix(0.275773,-0.003861,0.003500,0.249976,0,0);-webkit-transform:matrix(0.275773,-0.003861,0.003500,0.249976,0,0);}
.m19_c00447{transform:matrix(0.281472,-0.003941,0.003500,0.249976,0,0);-ms-transform:matrix(0.281472,-0.003941,0.003500,0.249976,0,0);-webkit-transform:matrix(0.281472,-0.003941,0.003500,0.249976,0,0);}
.m4c_c00447{transform:matrix(0.282985,-0.001698,0.001500,0.249996,0,0);-ms-transform:matrix(0.282985,-0.001698,0.001500,0.249996,0,0);-webkit-transform:matrix(0.282985,-0.001698,0.001500,0.249996,0,0);}
.m17_c00447{transform:matrix(0.286352,-0.004009,0.003500,0.249976,0,0);-ms-transform:matrix(0.286352,-0.004009,0.003500,0.249976,0,0);-webkit-transform:matrix(0.286352,-0.004009,0.003500,0.249976,0,0);}
.m4d_c00447{transform:matrix(0.286375,-0.001718,0.001500,0.249996,0,0);-ms-transform:matrix(0.286375,-0.001718,0.001500,0.249996,0,0);-webkit-transform:matrix(0.286375,-0.001718,0.001500,0.249996,0,0);}
.m10_c00447{transform:matrix(0.290012,-0.004060,0.003500,0.249976,0,0);-ms-transform:matrix(0.290012,-0.004060,0.003500,0.249976,0,0);-webkit-transform:matrix(0.290012,-0.004060,0.003500,0.249976,0,0);}
.mb_c00447{transform:matrix(0.291245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291245,0.000000,0.000000,0.250000,0,0);}
.m8_c00447{transform:matrix(0.299151,-0.005684,0.004749,0.249955,0,0);-ms-transform:matrix(0.299151,-0.005684,0.004749,0.249955,0,0);-webkit-transform:matrix(0.299151,-0.005684,0.004749,0.249955,0,0);}
.m47_c00447{transform:matrix(0.303066,-0.004849,0.003999,0.249968,0,0);-ms-transform:matrix(0.303066,-0.004849,0.003999,0.249968,0,0);-webkit-transform:matrix(0.303066,-0.004849,0.003999,0.249968,0,0);}
.m4e_c00447{transform:matrix(0.304690,-0.001828,0.001500,0.249996,0,0);-ms-transform:matrix(0.304690,-0.001828,0.001500,0.249996,0,0);-webkit-transform:matrix(0.304690,-0.001828,0.001500,0.249996,0,0);}
.m23_c00447{transform:matrix(0.305171,-0.004883,0.003999,0.249968,0,0);-ms-transform:matrix(0.305171,-0.004883,0.003999,0.249968,0,0);-webkit-transform:matrix(0.305171,-0.004883,0.003999,0.249968,0,0);}
.m15_c00447{transform:matrix(0.307015,-0.004298,0.003500,0.249976,0,0);-ms-transform:matrix(0.307015,-0.004298,0.003500,0.249976,0,0);-webkit-transform:matrix(0.307015,-0.004298,0.003500,0.249976,0,0);}
.m3e_c00447{transform:matrix(0.327658,-0.005243,0.003999,0.249968,0,0);-ms-transform:matrix(0.327658,-0.005243,0.003999,0.249968,0,0);-webkit-transform:matrix(0.327658,-0.005243,0.003999,0.249968,0,0);}
.m40_c00447{transform:matrix(0.333307,-0.005333,0.003999,0.249968,0,0);-ms-transform:matrix(0.333307,-0.005333,0.003999,0.249968,0,0);-webkit-transform:matrix(0.333307,-0.005333,0.003999,0.249968,0,0);}
.m9_c00447{transform:matrix(0.341028,-0.006480,0.004749,0.249955,0,0);-ms-transform:matrix(0.341028,-0.006480,0.004749,0.249955,0,0);-webkit-transform:matrix(0.341028,-0.006480,0.004749,0.249955,0,0);}
.m20_c00447{transform:matrix(0.348850,-0.005582,0.003999,0.249968,0,0);-ms-transform:matrix(0.348850,-0.005582,0.003999,0.249968,0,0);-webkit-transform:matrix(0.348850,-0.005582,0.003999,0.249968,0,0);}
.m3c_c00447{transform:matrix(0.358754,-0.005740,0.003999,0.249968,0,0);-ms-transform:matrix(0.358754,-0.005740,0.003999,0.249968,0,0);-webkit-transform:matrix(0.358754,-0.005740,0.003999,0.249968,0,0);}
.m16_c00447{transform:matrix(0.361670,-0.005063,0.003500,0.249976,0,0);-ms-transform:matrix(0.361670,-0.005063,0.003500,0.249976,0,0);-webkit-transform:matrix(0.361670,-0.005063,0.003500,0.249976,0,0);}
.m18_c00447{transform:matrix(0.378158,-0.005294,0.003500,0.249976,0,0);-ms-transform:matrix(0.378158,-0.005294,0.003500,0.249976,0,0);-webkit-transform:matrix(0.378158,-0.005294,0.003500,0.249976,0,0);}
.m39_c00447{transform:matrix(0.380145,-0.003421,0.002250,0.249990,0,0);-ms-transform:matrix(0.380145,-0.003421,0.002250,0.249990,0,0);-webkit-transform:matrix(0.380145,-0.003421,0.002250,0.249990,0,0);}
.m24_c00447{transform:matrix(0.384546,-0.006153,0.003999,0.249968,0,0);-ms-transform:matrix(0.384546,-0.006153,0.003999,0.249968,0,0);-webkit-transform:matrix(0.384546,-0.006153,0.003999,0.249968,0,0);}
.m6_c00447{transform:matrix(0.386935,-0.007352,0.004749,0.249955,0,0);-ms-transform:matrix(0.386935,-0.007352,0.004749,0.249955,0,0);-webkit-transform:matrix(0.386935,-0.007352,0.004749,0.249955,0,0);}
.m38_c00447{transform:matrix(0.402779,-0.003625,0.002250,0.249990,0,0);-ms-transform:matrix(0.402779,-0.003625,0.002250,0.249990,0,0);-webkit-transform:matrix(0.402779,-0.003625,0.002250,0.249990,0,0);}
.m52_c00447{transform:matrix(0.406258,-0.002438,0.001500,0.249996,0,0);-ms-transform:matrix(0.406258,-0.002438,0.001500,0.249996,0,0);-webkit-transform:matrix(0.406258,-0.002438,0.001500,0.249996,0,0);}
.mc_c00447{transform:matrix(0.416030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416030,0.000000,0.000000,0.250000,0,0);}
.m55_c00447{transform:matrix(0.476331,-0.002858,0.001500,0.249996,0,0);-ms-transform:matrix(0.476331,-0.002858,0.001500,0.249996,0,0);-webkit-transform:matrix(0.476331,-0.002858,0.001500,0.249996,0,0);}
.m7_c00447{transform:matrix(0.478614,-0.009094,0.004749,0.249955,0,0);-ms-transform:matrix(0.478614,-0.009094,0.004749,0.249955,0,0);-webkit-transform:matrix(0.478614,-0.009094,0.004749,0.249955,0,0);}
.m3b_c00447{transform:matrix(0.518260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518260,0.000000,0.000000,0.250000,0,0);}
.m43_c00447{transform:matrix(0.562173,-0.008995,0.003999,0.249968,0,0);-ms-transform:matrix(0.562173,-0.008995,0.003999,0.249968,0,0);-webkit-transform:matrix(0.562173,-0.008995,0.003999,0.249968,0,0);}
.md_c00447{transform:matrix(0.749512,-0.010493,0.003500,0.249976,0,0);-ms-transform:matrix(0.749512,-0.010493,0.003500,0.249976,0,0);-webkit-transform:matrix(0.749512,-0.010493,0.003500,0.249976,0,0);}
.m0_c00447{transform:matrix(0.778989,-0.014801,0.004749,0.249955,0,0);-ms-transform:matrix(0.778989,-0.014801,0.004749,0.249955,0,0);-webkit-transform:matrix(0.778989,-0.014801,0.004749,0.249955,0,0);}
.m54_c00447{transform:matrix(0.902894,-0.005417,0.001500,0.249996,0,0);-ms-transform:matrix(0.902894,-0.005417,0.001500,0.249996,0,0);-webkit-transform:matrix(0.902894,-0.005417,0.001500,0.249996,0,0);}
.m26_c00447{transform:matrix(0.943795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.943795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.943795,0.000000,0.000000,0.250000,0,0);}
.m48_c00447{transform:matrix(1.042732,-0.016684,0.003999,0.249968,0,0);-ms-transform:matrix(1.042732,-0.016684,0.003999,0.249968,0,0);-webkit-transform:matrix(1.042732,-0.016684,0.003999,0.249968,0,0);}
.v0_c00447{vertical-align:0.000000px;}
.ls0_c00447{letter-spacing:0.000000px;}
.sc__c00447{text-shadow:none;}
.sc0_c00447{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__c00447{-webkit-text-stroke:0px transparent;}
.sc0_c00447{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00447{word-spacing:0.000000px;}
.fc0_c00447{color:transparent;}
.fs6_c00447{font-size:18.000000px;}
.fs1_c00447{font-size:24.000000px;}
.fs7_c00447{font-size:30.000000px;}
.fs9_c00447{font-size:72.001296px;}
.fs8_c00447{font-size:78.009983px;}
.fs5_c00447{font-size:84.003402px;}
.fs2_c00447{font-size:84.008232px;}
.fs0_c00447{font-size:84.015161px;}
.fs3_c00447{font-size:96.012287px;}
.fs4_c00447{font-size:102.000000px;}
.y0_c00447{bottom:0.000000px;}
.y40_c00447{bottom:882.567000px;}
.y41_c00447{bottom:882.840798px;}
.y42_c00447{bottom:883.033569px;}
.y43_c00447{bottom:883.506510px;}
.y44_c00447{bottom:883.637847px;}
.y45_c00447{bottom:884.234016px;}
.y46_c00447{bottom:884.461230px;}
.y47_c00447{bottom:884.692548px;}
.y48_c00447{bottom:885.027762px;}
.y49_c00447{bottom:885.431187px;}
.y4a_c00447{bottom:885.607155px;}
.y4b_c00447{bottom:886.347090px;}
.y32_c00447{bottom:949.965000px;}
.y33_c00447{bottom:951.225312px;}
.y34_c00447{bottom:952.319376px;}
.y35_c00447{bottom:952.776696px;}
.y36_c00447{bottom:953.372160px;}
.y37_c00447{bottom:954.062064px;}
.y38_c00447{bottom:955.096248px;}
.y39_c00447{bottom:955.427352px;}
.y3a_c00447{bottom:956.693256px;}
.y3b_c00447{bottom:957.235128px;}
.y3c_c00447{bottom:958.127376px;}
.y3d_c00447{bottom:958.654560px;}
.y3e_c00447{bottom:959.848392px;}
.y3f_c00447{bottom:960.536016px;}
.y31_c00447{bottom:975.780000px;}
.y30_c00447{bottom:985.230000px;}
.y28_c00447{bottom:987.661500px;}
.y29_c00447{bottom:989.854561px;}
.y2a_c00447{bottom:990.934926px;}
.y2b_c00447{bottom:992.127880px;}
.y2c_c00447{bottom:992.532070px;}
.y2d_c00447{bottom:992.831676px;}
.y2e_c00447{bottom:993.562620px;}
.y2f_c00447{bottom:993.929536px;}
.y27_c00447{bottom:1027.401000px;}
.y1b_c00447{bottom:1055.742000px;}
.y1c_c00447{bottom:1057.433016px;}
.y1d_c00447{bottom:1057.977744px;}
.y1e_c00447{bottom:1059.209136px;}
.y1f_c00447{bottom:1060.288992px;}
.y20_c00447{bottom:1062.357864px;}
.y21_c00447{bottom:1062.926760px;}
.y22_c00447{bottom:1063.821552px;}
.y23_c00447{bottom:1064.500464px;}
.y24_c00447{bottom:1065.047760px;}
.y25_c00447{bottom:1065.829920px;}
.y26_c00447{bottom:1066.641912px;}
.ye_c00447{bottom:1092.742500px;}
.yf_c00447{bottom:1093.742541px;}
.y10_c00447{bottom:1094.213067px;}
.y11_c00447{bottom:1095.775929px;}
.y12_c00447{bottom:1096.412229px;}
.y13_c00447{bottom:1097.503914px;}
.y14_c00447{bottom:1097.949597px;}
.y15_c00447{bottom:1098.454836px;}
.y16_c00447{bottom:1099.441521px;}
.y17_c00447{bottom:1099.985001px;}
.y18_c00447{bottom:1100.843670px;}
.y19_c00447{bottom:1101.238806px;}
.y1a_c00447{bottom:1102.399056px;}
.yc_c00447{bottom:1120.230000px;}
.yd_c00447{bottom:1121.310000px;}
.y1_c00447{bottom:1128.558000px;}
.y2_c00447{bottom:1130.383425px;}
.y3_c00447{bottom:1131.011736px;}
.y4_c00447{bottom:1132.529617px;}
.y5_c00447{bottom:1133.573658px;}
.y6_c00447{bottom:1134.182190px;}
.y7_c00447{bottom:1136.233135px;}
.y8_c00447{bottom:1136.905137px;}
.y9_c00447{bottom:1137.247279px;}
.ya_c00447{bottom:1137.978618px;}
.yb_c00447{bottom:1138.790726px;}
.h8_c00447{height:18.000000px;}
.h3_c00447{height:24.000000px;}
.h9_c00447{height:30.000000px;}
.hb_c00447{height:72.001296px;}
.ha_c00447{height:78.009983px;}
.h7_c00447{height:84.003402px;}
.h4_c00447{height:84.008232px;}
.h2_c00447{height:84.015161px;}
.h5_c00447{height:96.012287px;}
.h6_c00447{height:102.000000px;}
.h0_c00447{height:1251.450000px;}
.h1_c00447{height:1251.750000px;}
.w0_c00447{width:915.000000px;}
.x0_c00447{left:0.000000px;}
.x26_c00447{left:27.540000px;}
.xe_c00447{left:33.574500px;}
.x1b_c00447{left:45.538500px;}
.x1_c00447{left:64.332000px;}
.x32_c00447{left:65.731500px;}
.x3a_c00447{left:74.655000px;}
.xf_c00447{left:105.006000px;}
.x27_c00447{left:129.330000px;}
.x10_c00447{left:138.615000px;}
.x44_c00447{left:142.380000px;}
.x1c_c00447{left:151.227000px;}
.x3b_c00447{left:153.424500px;}
.x2_c00447{left:160.407000px;}
.x28_c00447{left:162.540000px;}
.x1d_c00447{left:185.272500px;}
.x45_c00447{left:188.013000px;}
.x3_c00447{left:193.476000px;}
.x39_c00447{left:210.600000px;}
.x46_c00447{left:220.141500px;}
.x3c_c00447{left:221.803500px;}
.x29_c00447{left:229.500000px;}
.x11_c00447{left:250.248000px;}
.x1e_c00447{left:262.234500px;}
.x2a_c00447{left:263.520000px;}
.x4_c00447{left:273.364500px;}
.x3d_c00447{left:287.602500px;}
.x12_c00447{left:295.698000px;}
.x47_c00447{left:298.965000px;}
.x33_c00447{left:309.405000px;}
.x48_c00447{left:320.854500px;}
.x5_c00447{left:328.314000px;}
.x1f_c00447{left:329.725500px;}
.x6_c00447{left:360.342000px;}
.x13_c00447{left:373.675500px;}
.x2b_c00447{left:385.290000px;}
.x3e_c00447{left:395.358000px;}
.x14_c00447{left:405.510000px;}
.x2c_c00447{left:416.070000px;}
.x49_c00447{left:420.216000px;}
.x34_c00447{left:429.445500px;}
.x15_c00447{left:441.598500px;}
.x20_c00447{left:459.030000px;}
.x7_c00447{left:468.286500px;}
.x2d_c00447{left:472.770000px;}
.x21_c00447{left:494.586000px;}
.x4a_c00447{left:496.638000px;}
.x8_c00447{left:503.655000px;}
.x16_c00447{left:512.076000px;}
.x9_c00447{left:521.662500px;}
.x3f_c00447{left:529.038000px;}
.x2e_c00447{left:538.650000px;}
.x17_c00447{left:550.896000px;}
.x4b_c00447{left:552.507000px;}
.xa_c00447{left:560.154000px;}
.x35_c00447{left:561.996000px;}
.x40_c00447{left:584.803500px;}
.x22_c00447{left:592.942500px;}
.xb_c00447{left:602.896500px;}
.x2f_c00447{left:604.800000px;}
.x36_c00447{left:606.906000px;}
.x18_c00447{left:612.229500px;}
.x41_c00447{left:617.752500px;}
.x4c_c00447{left:619.744500px;}
.x23_c00447{left:627.148500px;}
.x30_c00447{left:638.820000px;}
.x19_c00447{left:640.453500px;}
.x4d_c00447{left:649.072500px;}
.x24_c00447{left:676.033500px;}
.x31_c00447{left:684.990000px;}
.x42_c00447{left:692.367000px;}
.x37_c00447{left:721.411500px;}
.x1a_c00447{left:723.328500px;}
.x25_c00447{left:726.783000px;}
.xc_c00447{left:731.970000px;}
.x43_c00447{left:735.343500px;}
.xd_c00447{left:738.720000px;}
.x38_c00447{left:762.180000px;}
.x4e_c00447{left:772.395000px;}
@media print{
.v0_c00447{vertical-align:0.000000pt;}
.ls0_c00447{letter-spacing:0.000000pt;}
.ws0_c00447{word-spacing:0.000000pt;}
.fs6_c00447{font-size:16.000000pt;}
.fs1_c00447{font-size:21.333333pt;}
.fs7_c00447{font-size:26.666667pt;}
.fs9_c00447{font-size:64.001152pt;}
.fs8_c00447{font-size:69.342207pt;}
.fs5_c00447{font-size:74.669691pt;}
.fs2_c00447{font-size:74.673984pt;}
.fs0_c00447{font-size:74.680143pt;}
.fs3_c00447{font-size:85.344255pt;}
.fs4_c00447{font-size:90.666667pt;}
.y0_c00447{bottom:0.000000pt;}
.y40_c00447{bottom:784.504000pt;}
.y41_c00447{bottom:784.747376pt;}
.y42_c00447{bottom:784.918728pt;}
.y43_c00447{bottom:785.339120pt;}
.y44_c00447{bottom:785.455864pt;}
.y45_c00447{bottom:785.985792pt;}
.y46_c00447{bottom:786.187760pt;}
.y47_c00447{bottom:786.393376pt;}
.y48_c00447{bottom:786.691344pt;}
.y49_c00447{bottom:787.049944pt;}
.y4a_c00447{bottom:787.206360pt;}
.y4b_c00447{bottom:787.864080pt;}
.y32_c00447{bottom:844.413333pt;}
.y33_c00447{bottom:845.533611pt;}
.y34_c00447{bottom:846.506112pt;}
.y35_c00447{bottom:846.912619pt;}
.y36_c00447{bottom:847.441920pt;}
.y37_c00447{bottom:848.055168pt;}
.y38_c00447{bottom:848.974443pt;}
.y39_c00447{bottom:849.268757pt;}
.y3a_c00447{bottom:850.394005pt;}
.y3b_c00447{bottom:850.875669pt;}
.y3c_c00447{bottom:851.668779pt;}
.y3d_c00447{bottom:852.137387pt;}
.y3e_c00447{bottom:853.198571pt;}
.y3f_c00447{bottom:853.809792pt;}
.y31_c00447{bottom:867.360000pt;}
.y30_c00447{bottom:875.760000pt;}
.y28_c00447{bottom:877.921333pt;}
.y29_c00447{bottom:879.870721pt;}
.y2a_c00447{bottom:880.831045pt;}
.y2b_c00447{bottom:881.891449pt;}
.y2c_c00447{bottom:882.250729pt;}
.y2d_c00447{bottom:882.517045pt;}
.y2e_c00447{bottom:883.166773pt;}
.y2f_c00447{bottom:883.492921pt;}
.y27_c00447{bottom:913.245333pt;}
.y1b_c00447{bottom:938.437333pt;}
.y1c_c00447{bottom:939.940459pt;}
.y1d_c00447{bottom:940.424661pt;}
.y1e_c00447{bottom:941.519232pt;}
.y1f_c00447{bottom:942.479104pt;}
.y20_c00447{bottom:944.318101pt;}
.y21_c00447{bottom:944.823787pt;}
.y22_c00447{bottom:945.619157pt;}
.y23_c00447{bottom:946.222635pt;}
.y24_c00447{bottom:946.709120pt;}
.y25_c00447{bottom:947.404373pt;}
.y26_c00447{bottom:948.126144pt;}
.ye_c00447{bottom:971.326667pt;}
.yf_c00447{bottom:972.215592pt;}
.y10_c00447{bottom:972.633837pt;}
.y11_c00447{bottom:974.023048pt;}
.y12_c00447{bottom:974.588648pt;}
.y13_c00447{bottom:975.559035pt;}
.y14_c00447{bottom:975.955197pt;}
.y15_c00447{bottom:976.404299pt;}
.y16_c00447{bottom:977.281352pt;}
.y17_c00447{bottom:977.764445pt;}
.y18_c00447{bottom:978.527707pt;}
.y19_c00447{bottom:978.878939pt;}
.y1a_c00447{bottom:979.910272pt;}
.yc_c00447{bottom:995.760000pt;}
.yd_c00447{bottom:996.720000pt;}
.y1_c00447{bottom:1003.162667pt;}
.y2_c00447{bottom:1004.785267pt;}
.y3_c00447{bottom:1005.343765pt;}
.y4_c00447{bottom:1006.692993pt;}
.y5_c00447{bottom:1007.621029pt;}
.y6_c00447{bottom:1008.161947pt;}
.y7_c00447{bottom:1009.985009pt;}
.y8_c00447{bottom:1010.582344pt;}
.y9_c00447{bottom:1010.886471pt;}
.ya_c00447{bottom:1011.536549pt;}
.yb_c00447{bottom:1012.258423pt;}
.h8_c00447{height:16.000000pt;}
.h3_c00447{height:21.333333pt;}
.h9_c00447{height:26.666667pt;}
.hb_c00447{height:64.001152pt;}
.ha_c00447{height:69.342207pt;}
.h7_c00447{height:74.669691pt;}
.h4_c00447{height:74.673984pt;}
.h2_c00447{height:74.680143pt;}
.h5_c00447{height:85.344255pt;}
.h6_c00447{height:90.666667pt;}
.h0_c00447{height:1112.400000pt;}
.h1_c00447{height:1112.666667pt;}
.w0_c00447{width:813.333333pt;}
.x0_c00447{left:0.000000pt;}
.x26_c00447{left:24.480000pt;}
.xe_c00447{left:29.844000pt;}
.x1b_c00447{left:40.478667pt;}
.x1_c00447{left:57.184000pt;}
.x32_c00447{left:58.428000pt;}
.x3a_c00447{left:66.360000pt;}
.xf_c00447{left:93.338667pt;}
.x27_c00447{left:114.960000pt;}
.x10_c00447{left:123.213333pt;}
.x44_c00447{left:126.560000pt;}
.x1c_c00447{left:134.424000pt;}
.x3b_c00447{left:136.377333pt;}
.x2_c00447{left:142.584000pt;}
.x28_c00447{left:144.480000pt;}
.x1d_c00447{left:164.686667pt;}
.x45_c00447{left:167.122667pt;}
.x3_c00447{left:171.978667pt;}
.x39_c00447{left:187.200000pt;}
.x46_c00447{left:195.681333pt;}
.x3c_c00447{left:197.158667pt;}
.x29_c00447{left:204.000000pt;}
.x11_c00447{left:222.442667pt;}
.x1e_c00447{left:233.097333pt;}
.x2a_c00447{left:234.240000pt;}
.x4_c00447{left:242.990667pt;}
.x3d_c00447{left:255.646667pt;}
.x12_c00447{left:262.842667pt;}
.x47_c00447{left:265.746667pt;}
.x33_c00447{left:275.026667pt;}
.x48_c00447{left:285.204000pt;}
.x5_c00447{left:291.834667pt;}
.x1f_c00447{left:293.089333pt;}
.x6_c00447{left:320.304000pt;}
.x13_c00447{left:332.156000pt;}
.x2b_c00447{left:342.480000pt;}
.x3e_c00447{left:351.429333pt;}
.x14_c00447{left:360.453333pt;}
.x2c_c00447{left:369.840000pt;}
.x49_c00447{left:373.525333pt;}
.x34_c00447{left:381.729333pt;}
.x15_c00447{left:392.532000pt;}
.x20_c00447{left:408.026667pt;}
.x7_c00447{left:416.254667pt;}
.x2d_c00447{left:420.240000pt;}
.x21_c00447{left:439.632000pt;}
.x4a_c00447{left:441.456000pt;}
.x8_c00447{left:447.693333pt;}
.x16_c00447{left:455.178667pt;}
.x9_c00447{left:463.700000pt;}
.x3f_c00447{left:470.256000pt;}
.x2e_c00447{left:478.800000pt;}
.x17_c00447{left:489.685333pt;}
.x4b_c00447{left:491.117333pt;}
.xa_c00447{left:497.914667pt;}
.x35_c00447{left:499.552000pt;}
.x40_c00447{left:519.825333pt;}
.x22_c00447{left:527.060000pt;}
.xb_c00447{left:535.908000pt;}
.x2f_c00447{left:537.600000pt;}
.x36_c00447{left:539.472000pt;}
.x18_c00447{left:544.204000pt;}
.x41_c00447{left:549.113333pt;}
.x4c_c00447{left:550.884000pt;}
.x23_c00447{left:557.465333pt;}
.x30_c00447{left:567.840000pt;}
.x19_c00447{left:569.292000pt;}
.x4d_c00447{left:576.953333pt;}
.x24_c00447{left:600.918667pt;}
.x31_c00447{left:608.880000pt;}
.x42_c00447{left:615.437333pt;}
.x37_c00447{left:641.254667pt;}
.x1a_c00447{left:642.958667pt;}
.x25_c00447{left:646.029333pt;}
.xc_c00447{left:650.640000pt;}
.x43_c00447{left:653.638667pt;}
.xd_c00447{left:656.640000pt;}
.x38_c00447{left:677.493333pt;}
.x4e_c00447{left:686.573333pt;}
}





/* 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_c00448 {
    display:none;
  }
  .loading-indicator_c00448.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00448 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_c00448 { 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_c00448" -> "#page-container .classname_c00448")
 */
.pf_c00448 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00448 { /* 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_c00448.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00448 { /* 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_c00448 { /* 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_c00448 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00448 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00448 {overflow:visible;}
  }
}
.c_c00448 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00448 { /* 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_c00448:after { /* webkit #35443 */
  content: '';
}
.t_c00448:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00448 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 */
}
.__c00448 { /* 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_c00448 { /* info for Javascript */
  display:none;
}
.l_c00448 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00448 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00448 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00448: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_c00448 {
    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_c00448.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00448.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_c00448 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00448{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00448;src:url('chunks/assets/font_cfe63ee56e9e10a97d33a3db.woff2')format("woff");}.ff1_c00448{font-family:ff1_c00448;line-height:1.000000;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;}
.m0_c00448{transform:matrix(0.023865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.023865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.023865,0.000000,0.000000,0.250000,0,0);}
.m75_c00448{transform:matrix(0.144126,0.001585,-0.002750,0.249985,0,0);-ms-transform:matrix(0.144126,0.001585,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.144126,0.001585,-0.002750,0.249985,0,0);}
.m9b_c00448{transform:matrix(0.147966,0.001628,-0.002750,0.249985,0,0);-ms-transform:matrix(0.147966,0.001628,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.147966,0.001628,-0.002750,0.249985,0,0);}
.m9d_c00448{transform:matrix(0.153521,0.001689,-0.002750,0.249985,0,0);-ms-transform:matrix(0.153521,0.001689,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.153521,0.001689,-0.002750,0.249985,0,0);}
.m7d_c00448{transform:matrix(0.158590,0.001744,-0.002750,0.249985,0,0);-ms-transform:matrix(0.158590,0.001744,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.158590,0.001744,-0.002750,0.249985,0,0);}
.mf8_c00448{transform:matrix(0.159540,0.003350,-0.005249,0.249945,0,0);-ms-transform:matrix(0.159540,0.003350,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.159540,0.003350,-0.005249,0.249945,0,0);}
.m7a_c00448{transform:matrix(0.160045,0.001760,-0.002750,0.249985,0,0);-ms-transform:matrix(0.160045,0.001760,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.160045,0.001760,-0.002750,0.249985,0,0);}
.mf6_c00448{transform:matrix(0.168858,0.003546,-0.005249,0.249945,0,0);-ms-transform:matrix(0.168858,0.003546,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.168858,0.003546,-0.005249,0.249945,0,0);}
.m78_c00448{transform:matrix(0.171195,0.001883,-0.002750,0.249985,0,0);-ms-transform:matrix(0.171195,0.001883,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.171195,0.001883,-0.002750,0.249985,0,0);}
.m76_c00448{transform:matrix(0.171340,0.001885,-0.002750,0.249985,0,0);-ms-transform:matrix(0.171340,0.001885,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.171340,0.001885,-0.002750,0.249985,0,0);}
.m7b_c00448{transform:matrix(0.173729,0.001911,-0.002750,0.249985,0,0);-ms-transform:matrix(0.173729,0.001911,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.173729,0.001911,-0.002750,0.249985,0,0);}
.m9f_c00448{transform:matrix(0.174824,0.001923,-0.002750,0.249985,0,0);-ms-transform:matrix(0.174824,0.001923,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.174824,0.001923,-0.002750,0.249985,0,0);}
.mef_c00448{transform:matrix(0.174971,0.003674,-0.005249,0.249945,0,0);-ms-transform:matrix(0.174971,0.003674,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.174971,0.003674,-0.005249,0.249945,0,0);}
.m74_c00448{transform:matrix(0.175264,0.001928,-0.002750,0.249985,0,0);-ms-transform:matrix(0.175264,0.001928,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.175264,0.001928,-0.002750,0.249985,0,0);}
.mf7_c00448{transform:matrix(0.177631,0.003730,-0.005249,0.249945,0,0);-ms-transform:matrix(0.177631,0.003730,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.177631,0.003730,-0.005249,0.249945,0,0);}
.mfa_c00448{transform:matrix(0.178966,0.003758,-0.005249,0.249945,0,0);-ms-transform:matrix(0.178966,0.003758,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.178966,0.003758,-0.005249,0.249945,0,0);}
.mf0_c00448{transform:matrix(0.179385,0.003767,-0.005249,0.249945,0,0);-ms-transform:matrix(0.179385,0.003767,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.179385,0.003767,-0.005249,0.249945,0,0);}
.ma4_c00448{transform:matrix(0.179499,0.001974,-0.002750,0.249985,0,0);-ms-transform:matrix(0.179499,0.001974,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.179499,0.001974,-0.002750,0.249985,0,0);}
.ma1_c00448{transform:matrix(0.179689,0.001977,-0.002750,0.249985,0,0);-ms-transform:matrix(0.179689,0.001977,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.179689,0.001977,-0.002750,0.249985,0,0);}
.ma2_c00448{transform:matrix(0.180829,0.001989,-0.002750,0.249985,0,0);-ms-transform:matrix(0.180829,0.001989,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.180829,0.001989,-0.002750,0.249985,0,0);}
.m94_c00448{transform:matrix(0.180864,0.001990,-0.002750,0.249985,0,0);-ms-transform:matrix(0.180864,0.001990,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.180864,0.001990,-0.002750,0.249985,0,0);}
.mb6_c00448{transform:matrix(0.181539,0.001997,-0.002750,0.249985,0,0);-ms-transform:matrix(0.181539,0.001997,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.181539,0.001997,-0.002750,0.249985,0,0);}
.m151_c00448{transform:matrix(0.182005,0.003822,-0.005249,0.249945,0,0);-ms-transform:matrix(0.182005,0.003822,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.182005,0.003822,-0.005249,0.249945,0,0);}
.m115_c00448{transform:matrix(0.182485,0.003832,-0.005249,0.249945,0,0);-ms-transform:matrix(0.182485,0.003832,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.182485,0.003832,-0.005249,0.249945,0,0);}
.m124_c00448{transform:matrix(0.184184,0.003868,-0.005249,0.249945,0,0);-ms-transform:matrix(0.184184,0.003868,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.184184,0.003868,-0.005249,0.249945,0,0);}
.mf4_c00448{transform:matrix(0.186029,0.003907,-0.005249,0.249945,0,0);-ms-transform:matrix(0.186029,0.003907,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.186029,0.003907,-0.005249,0.249945,0,0);}
.mcb_c00448{transform:matrix(0.186219,0.002048,-0.002750,0.249985,0,0);-ms-transform:matrix(0.186219,0.002048,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.186219,0.002048,-0.002750,0.249985,0,0);}
.ma3_c00448{transform:matrix(0.187134,0.002058,-0.002750,0.249985,0,0);-ms-transform:matrix(0.187134,0.002058,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.187134,0.002058,-0.002750,0.249985,0,0);}
.mf3_c00448{transform:matrix(0.187954,0.003947,-0.005249,0.249945,0,0);-ms-transform:matrix(0.187954,0.003947,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.187954,0.003947,-0.005249,0.249945,0,0);}
.m11c_c00448{transform:matrix(0.189693,0.003984,-0.005249,0.249945,0,0);-ms-transform:matrix(0.189693,0.003984,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.189693,0.003984,-0.005249,0.249945,0,0);}
.mcf_c00448{transform:matrix(0.190643,0.004004,-0.005249,0.249945,0,0);-ms-transform:matrix(0.190643,0.004004,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.190643,0.004004,-0.005249,0.249945,0,0);}
.m109_c00448{transform:matrix(0.191333,0.004018,-0.005249,0.249945,0,0);-ms-transform:matrix(0.191333,0.004018,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.191333,0.004018,-0.005249,0.249945,0,0);}
.mce_c00448{transform:matrix(0.191673,0.002108,-0.002750,0.249985,0,0);-ms-transform:matrix(0.191673,0.002108,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.191673,0.002108,-0.002750,0.249985,0,0);}
.m9a_c00448{transform:matrix(0.192193,0.002114,-0.002750,0.249985,0,0);-ms-transform:matrix(0.192193,0.002114,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.192193,0.002114,-0.002750,0.249985,0,0);}
.mc5_c00448{transform:matrix(0.192573,0.002118,-0.002750,0.249985,0,0);-ms-transform:matrix(0.192573,0.002118,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.192573,0.002118,-0.002750,0.249985,0,0);}
.m112_c00448{transform:matrix(0.192728,0.004047,-0.005249,0.249945,0,0);-ms-transform:matrix(0.192728,0.004047,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.192728,0.004047,-0.005249,0.249945,0,0);}
.mf5_c00448{transform:matrix(0.192777,0.004048,-0.005249,0.249945,0,0);-ms-transform:matrix(0.192777,0.004048,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.192777,0.004048,-0.005249,0.249945,0,0);}
.m79_c00448{transform:matrix(0.192823,0.002121,-0.002750,0.249985,0,0);-ms-transform:matrix(0.192823,0.002121,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.192823,0.002121,-0.002750,0.249985,0,0);}
.ma9_c00448{transform:matrix(0.193203,0.002125,-0.002750,0.249985,0,0);-ms-transform:matrix(0.193203,0.002125,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.193203,0.002125,-0.002750,0.249985,0,0);}
.ma0_c00448{transform:matrix(0.193378,0.002127,-0.002750,0.249985,0,0);-ms-transform:matrix(0.193378,0.002127,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.193378,0.002127,-0.002750,0.249985,0,0);}
.mf1_c00448{transform:matrix(0.193402,0.004061,-0.005249,0.249945,0,0);-ms-transform:matrix(0.193402,0.004061,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.193402,0.004061,-0.005249,0.249945,0,0);}
.m99_c00448{transform:matrix(0.193918,0.002133,-0.002750,0.249985,0,0);-ms-transform:matrix(0.193918,0.002133,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.193918,0.002133,-0.002750,0.249985,0,0);}
.m1_c00448{transform:matrix(0.193960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193960,0.000000,0.000000,0.250000,0,0);}
.m144_c00448{transform:matrix(0.195522,0.004106,-0.005249,0.249945,0,0);-ms-transform:matrix(0.195522,0.004106,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.195522,0.004106,-0.005249,0.249945,0,0);}
.m77_c00448{transform:matrix(0.195528,0.002151,-0.002750,0.249985,0,0);-ms-transform:matrix(0.195528,0.002151,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.195528,0.002151,-0.002750,0.249985,0,0);}
.mc3_c00448{transform:matrix(0.195553,0.002151,-0.002750,0.249985,0,0);-ms-transform:matrix(0.195553,0.002151,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.195553,0.002151,-0.002750,0.249985,0,0);}
.m9e_c00448{transform:matrix(0.195733,0.002153,-0.002750,0.249985,0,0);-ms-transform:matrix(0.195733,0.002153,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.195733,0.002153,-0.002750,0.249985,0,0);}
.mf2_c00448{transform:matrix(0.196067,0.004117,-0.005249,0.249945,0,0);-ms-transform:matrix(0.196067,0.004117,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.196067,0.004117,-0.005249,0.249945,0,0);}
.m146_c00448{transform:matrix(0.196082,0.004118,-0.005249,0.249945,0,0);-ms-transform:matrix(0.196082,0.004118,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.196082,0.004118,-0.005249,0.249945,0,0);}
.mb5_c00448{transform:matrix(0.196113,0.002157,-0.002750,0.249985,0,0);-ms-transform:matrix(0.196113,0.002157,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.196113,0.002157,-0.002750,0.249985,0,0);}
.m36_c00448{transform:matrix(0.196125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196125,0.000000,0.000000,0.250000,0,0);}
.m108_c00448{transform:matrix(0.196412,0.004125,-0.005249,0.249945,0,0);-ms-transform:matrix(0.196412,0.004125,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.196412,0.004125,-0.005249,0.249945,0,0);}
.m7c_c00448{transform:matrix(0.196418,0.002161,-0.002750,0.249985,0,0);-ms-transform:matrix(0.196418,0.002161,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.196418,0.002161,-0.002750,0.249985,0,0);}
.m9c_c00448{transform:matrix(0.196983,0.002167,-0.002750,0.249985,0,0);-ms-transform:matrix(0.196983,0.002167,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.196983,0.002167,-0.002750,0.249985,0,0);}
.mf9_c00448{transform:matrix(0.197102,0.004139,-0.005249,0.249945,0,0);-ms-transform:matrix(0.197102,0.004139,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.197102,0.004139,-0.005249,0.249945,0,0);}
.m14e_c00448{transform:matrix(0.197162,0.004140,-0.005249,0.249945,0,0);-ms-transform:matrix(0.197162,0.004140,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.197162,0.004140,-0.005249,0.249945,0,0);}
.me8_c00448{transform:matrix(0.197287,0.004143,-0.005249,0.249945,0,0);-ms-transform:matrix(0.197287,0.004143,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.197287,0.004143,-0.005249,0.249945,0,0);}
.m6f_c00448{transform:matrix(0.197423,0.002172,-0.002750,0.249985,0,0);-ms-transform:matrix(0.197423,0.002172,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.197423,0.002172,-0.002750,0.249985,0,0);}
.m6c_c00448{transform:matrix(0.197898,0.002177,-0.002750,0.249985,0,0);-ms-transform:matrix(0.197898,0.002177,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.197898,0.002177,-0.002750,0.249985,0,0);}
.m7e_c00448{transform:matrix(0.197963,0.002178,-0.002750,0.249985,0,0);-ms-transform:matrix(0.197963,0.002178,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.197963,0.002178,-0.002750,0.249985,0,0);}
.mfb_c00448{transform:matrix(0.198141,0.004161,-0.005249,0.249945,0,0);-ms-transform:matrix(0.198141,0.004161,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.198141,0.004161,-0.005249,0.249945,0,0);}
.m14f_c00448{transform:matrix(0.199411,0.004188,-0.005249,0.249945,0,0);-ms-transform:matrix(0.199411,0.004188,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.199411,0.004188,-0.005249,0.249945,0,0);}
.mfd_c00448{transform:matrix(0.200666,0.004214,-0.005249,0.249945,0,0);-ms-transform:matrix(0.200666,0.004214,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.200666,0.004214,-0.005249,0.249945,0,0);}
.mc1_c00448{transform:matrix(0.201233,0.002214,-0.002750,0.249985,0,0);-ms-transform:matrix(0.201233,0.002214,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.201233,0.002214,-0.002750,0.249985,0,0);}
.m12e_c00448{transform:matrix(0.201266,0.004227,-0.005249,0.249945,0,0);-ms-transform:matrix(0.201266,0.004227,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.201266,0.004227,-0.005249,0.249945,0,0);}
.m69_c00448{transform:matrix(0.201293,0.002214,-0.002750,0.249985,0,0);-ms-transform:matrix(0.201293,0.002214,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.201293,0.002214,-0.002750,0.249985,0,0);}
.md3_c00448{transform:matrix(0.201456,0.004231,-0.005249,0.249945,0,0);-ms-transform:matrix(0.201456,0.004231,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.201456,0.004231,-0.005249,0.249945,0,0);}
.m105_c00448{transform:matrix(0.201466,0.004231,-0.005249,0.249945,0,0);-ms-transform:matrix(0.201466,0.004231,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.201466,0.004231,-0.005249,0.249945,0,0);}
.m10e_c00448{transform:matrix(0.202030,0.004243,-0.005249,0.249945,0,0);-ms-transform:matrix(0.202030,0.004243,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.202030,0.004243,-0.005249,0.249945,0,0);}
.m118_c00448{transform:matrix(0.202385,0.004250,-0.005249,0.249945,0,0);-ms-transform:matrix(0.202385,0.004250,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.202385,0.004250,-0.005249,0.249945,0,0);}
.mb1_c00448{transform:matrix(0.202998,0.002233,-0.002750,0.249985,0,0);-ms-transform:matrix(0.202998,0.002233,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.202998,0.002233,-0.002750,0.249985,0,0);}
.m11b_c00448{transform:matrix(0.203355,0.004270,-0.005249,0.249945,0,0);-ms-transform:matrix(0.203355,0.004270,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.203355,0.004270,-0.005249,0.249945,0,0);}
.m111_c00448{transform:matrix(0.204135,0.004287,-0.005249,0.249945,0,0);-ms-transform:matrix(0.204135,0.004287,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.204135,0.004287,-0.005249,0.249945,0,0);}
.m120_c00448{transform:matrix(0.204260,0.004289,-0.005249,0.249945,0,0);-ms-transform:matrix(0.204260,0.004289,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.204260,0.004289,-0.005249,0.249945,0,0);}
.md5_c00448{transform:matrix(0.204520,0.004295,-0.005249,0.249945,0,0);-ms-transform:matrix(0.204520,0.004295,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.204520,0.004295,-0.005249,0.249945,0,0);}
.m72_c00448{transform:matrix(0.204723,0.002252,-0.002750,0.249985,0,0);-ms-transform:matrix(0.204723,0.002252,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.204723,0.002252,-0.002750,0.249985,0,0);}
.m3d_c00448{transform:matrix(0.205040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205040,0.000000,0.000000,0.250000,0,0);}
.m145_c00448{transform:matrix(0.205090,0.004307,-0.005249,0.249945,0,0);-ms-transform:matrix(0.205090,0.004307,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.205090,0.004307,-0.005249,0.249945,0,0);}
.m132_c00448{transform:matrix(0.205620,0.004318,-0.005249,0.249945,0,0);-ms-transform:matrix(0.205620,0.004318,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.205620,0.004318,-0.005249,0.249945,0,0);}
.m150_c00448{transform:matrix(0.205755,0.004321,-0.005249,0.249945,0,0);-ms-transform:matrix(0.205755,0.004321,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.205755,0.004321,-0.005249,0.249945,0,0);}
.m142_c00448{transform:matrix(0.206215,0.004331,-0.005249,0.249945,0,0);-ms-transform:matrix(0.206215,0.004331,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.206215,0.004331,-0.005249,0.249945,0,0);}
.m83_c00448{transform:matrix(0.206248,0.002269,-0.002750,0.249985,0,0);-ms-transform:matrix(0.206248,0.002269,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.206248,0.002269,-0.002750,0.249985,0,0);}
.mb2_c00448{transform:matrix(0.206558,0.002272,-0.002750,0.249985,0,0);-ms-transform:matrix(0.206558,0.002272,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.206558,0.002272,-0.002750,0.249985,0,0);}
.m11e_c00448{transform:matrix(0.206594,0.004338,-0.005249,0.249945,0,0);-ms-transform:matrix(0.206594,0.004338,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.206594,0.004338,-0.005249,0.249945,0,0);}
.m11a_c00448{transform:matrix(0.206604,0.004339,-0.005249,0.249945,0,0);-ms-transform:matrix(0.206604,0.004339,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.206604,0.004339,-0.005249,0.249945,0,0);}
.m113_c00448{transform:matrix(0.206779,0.004342,-0.005249,0.249945,0,0);-ms-transform:matrix(0.206779,0.004342,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.206779,0.004342,-0.005249,0.249945,0,0);}
.mbc_c00448{transform:matrix(0.206812,0.002275,-0.002750,0.249985,0,0);-ms-transform:matrix(0.206812,0.002275,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.206812,0.002275,-0.002750,0.249985,0,0);}
.mcd_c00448{transform:matrix(0.207232,0.002280,-0.002750,0.249985,0,0);-ms-transform:matrix(0.207232,0.002280,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.207232,0.002280,-0.002750,0.249985,0,0);}
.m90_c00448{transform:matrix(0.207382,0.002281,-0.002750,0.249985,0,0);-ms-transform:matrix(0.207382,0.002281,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.207382,0.002281,-0.002750,0.249985,0,0);}
.me4_c00448{transform:matrix(0.208029,0.004369,-0.005249,0.249945,0,0);-ms-transform:matrix(0.208029,0.004369,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.208029,0.004369,-0.005249,0.249945,0,0);}
.m70_c00448{transform:matrix(0.208052,0.002289,-0.002750,0.249985,0,0);-ms-transform:matrix(0.208052,0.002289,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.208052,0.002289,-0.002750,0.249985,0,0);}
.m14a_c00448{transform:matrix(0.208314,0.004375,-0.005249,0.249945,0,0);-ms-transform:matrix(0.208314,0.004375,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.208314,0.004375,-0.005249,0.249945,0,0);}
.m13c_c00448{transform:matrix(0.208669,0.004382,-0.005249,0.249945,0,0);-ms-transform:matrix(0.208669,0.004382,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.208669,0.004382,-0.005249,0.249945,0,0);}
.m6d_c00448{transform:matrix(0.209207,0.002301,-0.002750,0.249985,0,0);-ms-transform:matrix(0.209207,0.002301,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.209207,0.002301,-0.002750,0.249985,0,0);}
.m119_c00448{transform:matrix(0.209504,0.004400,-0.005249,0.249945,0,0);-ms-transform:matrix(0.209504,0.004400,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.209504,0.004400,-0.005249,0.249945,0,0);}
.m6a_c00448{transform:matrix(0.209867,0.002309,-0.002750,0.249985,0,0);-ms-transform:matrix(0.209867,0.002309,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.209867,0.002309,-0.002750,0.249985,0,0);}
.mbf_c00448{transform:matrix(0.210007,0.002310,-0.002750,0.249985,0,0);-ms-transform:matrix(0.210007,0.002310,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.210007,0.002310,-0.002750,0.249985,0,0);}
.mc2_c00448{transform:matrix(0.210477,0.002315,-0.002750,0.249985,0,0);-ms-transform:matrix(0.210477,0.002315,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.210477,0.002315,-0.002750,0.249985,0,0);}
.m158_c00448{transform:matrix(0.210564,0.004422,-0.005249,0.249945,0,0);-ms-transform:matrix(0.210564,0.004422,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.210564,0.004422,-0.005249,0.249945,0,0);}
.m67_c00448{transform:matrix(0.210817,0.002319,-0.002750,0.249985,0,0);-ms-transform:matrix(0.210817,0.002319,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.210817,0.002319,-0.002750,0.249985,0,0);}
.mee_c00448{transform:matrix(0.210884,0.004429,-0.005249,0.249945,0,0);-ms-transform:matrix(0.210884,0.004429,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.210884,0.004429,-0.005249,0.249945,0,0);}
.m39_c00448{transform:matrix(0.211485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211485,0.000000,0.000000,0.250000,0,0);}
.mc7_c00448{transform:matrix(0.212287,0.002335,-0.002750,0.249985,0,0);-ms-transform:matrix(0.212287,0.002335,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.212287,0.002335,-0.002750,0.249985,0,0);}
.m92_c00448{transform:matrix(0.212497,0.002337,-0.002750,0.249985,0,0);-ms-transform:matrix(0.212497,0.002337,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.212497,0.002337,-0.002750,0.249985,0,0);}
.m116_c00448{transform:matrix(0.212503,0.004463,-0.005249,0.249945,0,0);-ms-transform:matrix(0.212503,0.004463,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.212503,0.004463,-0.005249,0.249945,0,0);}
.mcc_c00448{transform:matrix(0.212562,0.002338,-0.002750,0.249985,0,0);-ms-transform:matrix(0.212562,0.002338,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.212562,0.002338,-0.002750,0.249985,0,0);}
.m14d_c00448{transform:matrix(0.212673,0.004466,-0.005249,0.249945,0,0);-ms-transform:matrix(0.212673,0.004466,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.212673,0.004466,-0.005249,0.249945,0,0);}
.mec_c00448{transform:matrix(0.212733,0.004467,-0.005249,0.249945,0,0);-ms-transform:matrix(0.212733,0.004467,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.212733,0.004467,-0.005249,0.249945,0,0);}
.m10c_c00448{transform:matrix(0.212903,0.004471,-0.005249,0.249945,0,0);-ms-transform:matrix(0.212903,0.004471,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.212903,0.004471,-0.005249,0.249945,0,0);}
.m148_c00448{transform:matrix(0.213398,0.004481,-0.005249,0.249945,0,0);-ms-transform:matrix(0.213398,0.004481,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.213398,0.004481,-0.005249,0.249945,0,0);}
.m11f_c00448{transform:matrix(0.213563,0.004485,-0.005249,0.249945,0,0);-ms-transform:matrix(0.213563,0.004485,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.213563,0.004485,-0.005249,0.249945,0,0);}
.m11d_c00448{transform:matrix(0.213723,0.004488,-0.005249,0.249945,0,0);-ms-transform:matrix(0.213723,0.004488,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.213723,0.004488,-0.005249,0.249945,0,0);}
.me9_c00448{transform:matrix(0.213938,0.004493,-0.005249,0.249945,0,0);-ms-transform:matrix(0.213938,0.004493,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.213938,0.004493,-0.005249,0.249945,0,0);}
.m117_c00448{transform:matrix(0.213973,0.004493,-0.005249,0.249945,0,0);-ms-transform:matrix(0.213973,0.004493,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.213973,0.004493,-0.005249,0.249945,0,0);}
.md6_c00448{transform:matrix(0.214738,0.004509,-0.005249,0.249945,0,0);-ms-transform:matrix(0.214738,0.004509,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.214738,0.004509,-0.005249,0.249945,0,0);}
.m82_c00448{transform:matrix(0.214842,0.002363,-0.002750,0.249985,0,0);-ms-transform:matrix(0.214842,0.002363,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.214842,0.002363,-0.002750,0.249985,0,0);}
.m96_c00448{transform:matrix(0.215047,0.002366,-0.002750,0.249985,0,0);-ms-transform:matrix(0.215047,0.002366,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.215047,0.002366,-0.002750,0.249985,0,0);}
.m15b_c00448{transform:matrix(0.215093,0.004517,-0.005249,0.249945,0,0);-ms-transform:matrix(0.215093,0.004517,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.215093,0.004517,-0.005249,0.249945,0,0);}
.m89_c00448{transform:matrix(0.215137,0.002367,-0.002750,0.249985,0,0);-ms-transform:matrix(0.215137,0.002367,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.215137,0.002367,-0.002750,0.249985,0,0);}
.m35_c00448{transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);}
.m8e_c00448{transform:matrix(0.215692,0.002373,-0.002750,0.249985,0,0);-ms-transform:matrix(0.215692,0.002373,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.215692,0.002373,-0.002750,0.249985,0,0);}
.mbb_c00448{transform:matrix(0.215897,0.002375,-0.002750,0.249985,0,0);-ms-transform:matrix(0.215897,0.002375,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.215897,0.002375,-0.002750,0.249985,0,0);}
.m80_c00448{transform:matrix(0.216082,0.002377,-0.002750,0.249985,0,0);-ms-transform:matrix(0.216082,0.002377,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.216082,0.002377,-0.002750,0.249985,0,0);}
.m156_c00448{transform:matrix(0.216712,0.004551,-0.005249,0.249945,0,0);-ms-transform:matrix(0.216712,0.004551,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.216712,0.004551,-0.005249,0.249945,0,0);}
.md1_c00448{transform:matrix(0.216912,0.004555,-0.005249,0.249945,0,0);-ms-transform:matrix(0.216912,0.004555,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.216912,0.004555,-0.005249,0.249945,0,0);}
.m86_c00448{transform:matrix(0.216957,0.002387,-0.002750,0.249985,0,0);-ms-transform:matrix(0.216957,0.002387,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.216957,0.002387,-0.002750,0.249985,0,0);}
.m88_c00448{transform:matrix(0.217122,0.002388,-0.002750,0.249985,0,0);-ms-transform:matrix(0.217122,0.002388,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.217122,0.002388,-0.002750,0.249985,0,0);}
.m114_c00448{transform:matrix(0.217337,0.004564,-0.005249,0.249945,0,0);-ms-transform:matrix(0.217337,0.004564,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.217337,0.004564,-0.005249,0.249945,0,0);}
.mb8_c00448{transform:matrix(0.218192,0.002400,-0.002750,0.249985,0,0);-ms-transform:matrix(0.218192,0.002400,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.218192,0.002400,-0.002750,0.249985,0,0);}
.mb9_c00448{transform:matrix(0.218352,0.002402,-0.002750,0.249985,0,0);-ms-transform:matrix(0.218352,0.002402,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.218352,0.002402,-0.002750,0.249985,0,0);}
.m6b_c00448{transform:matrix(0.218562,0.002404,-0.002750,0.249985,0,0);-ms-transform:matrix(0.218562,0.002404,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.218562,0.002404,-0.002750,0.249985,0,0);}
.md2_c00448{transform:matrix(0.218712,0.004593,-0.005249,0.249945,0,0);-ms-transform:matrix(0.218712,0.004593,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.218712,0.004593,-0.005249,0.249945,0,0);}
.md4_c00448{transform:matrix(0.219357,0.004606,-0.005249,0.249945,0,0);-ms-transform:matrix(0.219357,0.004606,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.219357,0.004606,-0.005249,0.249945,0,0);}
.meb_c00448{transform:matrix(0.219917,0.004618,-0.005249,0.249945,0,0);-ms-transform:matrix(0.219917,0.004618,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.219917,0.004618,-0.005249,0.249945,0,0);}
.m143_c00448{transform:matrix(0.220146,0.004623,-0.005249,0.249945,0,0);-ms-transform:matrix(0.220146,0.004623,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.220146,0.004623,-0.005249,0.249945,0,0);}
.mc6_c00448{transform:matrix(0.220322,0.002424,-0.002750,0.249985,0,0);-ms-transform:matrix(0.220322,0.002424,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.220322,0.002424,-0.002750,0.249985,0,0);}
.mb3_c00448{transform:matrix(0.220447,0.002425,-0.002750,0.249985,0,0);-ms-transform:matrix(0.220447,0.002425,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.220447,0.002425,-0.002750,0.249985,0,0);}
.m149_c00448{transform:matrix(0.220831,0.004637,-0.005249,0.249945,0,0);-ms-transform:matrix(0.220831,0.004637,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.220831,0.004637,-0.005249,0.249945,0,0);}
.mb4_c00448{transform:matrix(0.221402,0.002435,-0.002750,0.249985,0,0);-ms-transform:matrix(0.221402,0.002435,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.221402,0.002435,-0.002750,0.249985,0,0);}
.m8f_c00448{transform:matrix(0.221442,0.002436,-0.002750,0.249985,0,0);-ms-transform:matrix(0.221442,0.002436,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.221442,0.002436,-0.002750,0.249985,0,0);}
.m10a_c00448{transform:matrix(0.221551,0.004653,-0.005249,0.249945,0,0);-ms-transform:matrix(0.221551,0.004653,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.221551,0.004653,-0.005249,0.249945,0,0);}
.md0_c00448{transform:matrix(0.221701,0.004656,-0.005249,0.249945,0,0);-ms-transform:matrix(0.221701,0.004656,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.221701,0.004656,-0.005249,0.249945,0,0);}
.m110_c00448{transform:matrix(0.221741,0.004657,-0.005249,0.249945,0,0);-ms-transform:matrix(0.221741,0.004657,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.221741,0.004657,-0.005249,0.249945,0,0);}
.m49_c00448{transform:matrix(0.221867,0.002441,-0.002750,0.249985,0,0);-ms-transform:matrix(0.221867,0.002441,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.221867,0.002441,-0.002750,0.249985,0,0);}
.m147_c00448{transform:matrix(0.221991,0.004662,-0.005249,0.249945,0,0);-ms-transform:matrix(0.221991,0.004662,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.221991,0.004662,-0.005249,0.249945,0,0);}
.m12_c00448{transform:matrix(0.222515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222515,0.000000,0.000000,0.250000,0,0);}
.m3a_c00448{transform:matrix(0.222720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222720,0.000000,0.000000,0.250000,0,0);}
.m155_c00448{transform:matrix(0.222916,0.004681,-0.005249,0.249945,0,0);-ms-transform:matrix(0.222916,0.004681,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.222916,0.004681,-0.005249,0.249945,0,0);}
.me3_c00448{transform:matrix(0.223166,0.004686,-0.005249,0.249945,0,0);-ms-transform:matrix(0.223166,0.004686,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.223166,0.004686,-0.005249,0.249945,0,0);}
.ma7_c00448{transform:matrix(0.223366,0.002457,-0.002750,0.249985,0,0);-ms-transform:matrix(0.223366,0.002457,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.223366,0.002457,-0.002750,0.249985,0,0);}
.mfc_c00448{transform:matrix(0.223941,0.004703,-0.005249,0.249945,0,0);-ms-transform:matrix(0.223941,0.004703,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.223941,0.004703,-0.005249,0.249945,0,0);}
.m3b_c00448{transform:matrix(0.223950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223950,0.000000,0.000000,0.250000,0,0);}
.m1e_c00448{transform:matrix(0.223970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223970,0.000000,0.000000,0.250000,0,0);}
.m103_c00448{transform:matrix(0.223986,0.004704,-0.005249,0.249945,0,0);-ms-transform:matrix(0.223986,0.004704,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.223986,0.004704,-0.005249,0.249945,0,0);}
.m122_c00448{transform:matrix(0.224386,0.004712,-0.005249,0.249945,0,0);-ms-transform:matrix(0.224386,0.004712,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.224386,0.004712,-0.005249,0.249945,0,0);}
.m61_c00448{transform:matrix(0.224751,0.002472,-0.002750,0.249985,0,0);-ms-transform:matrix(0.224751,0.002472,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.224751,0.002472,-0.002750,0.249985,0,0);}
.m12a_c00448{transform:matrix(0.224830,0.004721,-0.005249,0.249945,0,0);-ms-transform:matrix(0.224830,0.004721,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.224830,0.004721,-0.005249,0.249945,0,0);}
.m141_c00448{transform:matrix(0.224970,0.004724,-0.005249,0.249945,0,0);-ms-transform:matrix(0.224970,0.004724,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.224970,0.004724,-0.005249,0.249945,0,0);}
.m5d_c00448{transform:matrix(0.224986,0.002475,-0.002750,0.249985,0,0);-ms-transform:matrix(0.224986,0.002475,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.224986,0.002475,-0.002750,0.249985,0,0);}
.m52_c00448{transform:matrix(0.225331,0.002479,-0.002750,0.249985,0,0);-ms-transform:matrix(0.225331,0.002479,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.225331,0.002479,-0.002750,0.249985,0,0);}
.mb_c00448{transform:matrix(0.225345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225345,0.000000,0.000000,0.250000,0,0);}
.m66_c00448{transform:matrix(0.225876,0.002485,-0.002750,0.249985,0,0);-ms-transform:matrix(0.225876,0.002485,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.225876,0.002485,-0.002750,0.249985,0,0);}
.m128_c00448{transform:matrix(0.225890,0.004744,-0.005249,0.249945,0,0);-ms-transform:matrix(0.225890,0.004744,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.225890,0.004744,-0.005249,0.249945,0,0);}
.m121_c00448{transform:matrix(0.225970,0.004745,-0.005249,0.249945,0,0);-ms-transform:matrix(0.225970,0.004745,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.225970,0.004745,-0.005249,0.249945,0,0);}
.mdb_c00448{transform:matrix(0.226060,0.004747,-0.005249,0.249945,0,0);-ms-transform:matrix(0.226060,0.004747,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.226060,0.004747,-0.005249,0.249945,0,0);}
.mf_c00448{transform:matrix(0.226065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226065,0.000000,0.000000,0.250000,0,0);}
.m102_c00448{transform:matrix(0.226305,0.004752,-0.005249,0.249945,0,0);-ms-transform:matrix(0.226305,0.004752,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.226305,0.004752,-0.005249,0.249945,0,0);}
.mad_c00448{transform:matrix(0.226341,0.002490,-0.002750,0.249985,0,0);-ms-transform:matrix(0.226341,0.002490,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.226341,0.002490,-0.002750,0.249985,0,0);}
.m97_c00448{transform:matrix(0.226561,0.002492,-0.002750,0.249985,0,0);-ms-transform:matrix(0.226561,0.002492,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.226561,0.002492,-0.002750,0.249985,0,0);}
.m152_c00448{transform:matrix(0.226585,0.004758,-0.005249,0.249945,0,0);-ms-transform:matrix(0.226585,0.004758,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.226585,0.004758,-0.005249,0.249945,0,0);}
.mc4_c00448{transform:matrix(0.226726,0.002494,-0.002750,0.249985,0,0);-ms-transform:matrix(0.226726,0.002494,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.226726,0.002494,-0.002750,0.249985,0,0);}
.m14_c00448{transform:matrix(0.226745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226745,0.000000,0.000000,0.250000,0,0);}
.m107_c00448{transform:matrix(0.226750,0.004762,-0.005249,0.249945,0,0);-ms-transform:matrix(0.226750,0.004762,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.226750,0.004762,-0.005249,0.249945,0,0);}
.m8c_c00448{transform:matrix(0.227036,0.002497,-0.002750,0.249985,0,0);-ms-transform:matrix(0.227036,0.002497,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.227036,0.002497,-0.002750,0.249985,0,0);}
.m37_c00448{transform:matrix(0.227360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227360,0.000000,0.000000,0.250000,0,0);}
.mca_c00448{transform:matrix(0.227706,0.002505,-0.002750,0.249985,0,0);-ms-transform:matrix(0.227706,0.002505,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.227706,0.002505,-0.002750,0.249985,0,0);}
.mea_c00448{transform:matrix(0.228150,0.004791,-0.005249,0.249945,0,0);-ms-transform:matrix(0.228150,0.004791,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.228150,0.004791,-0.005249,0.249945,0,0);}
.m1b_c00448{transform:matrix(0.228170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228170,0.000000,0.000000,0.250000,0,0);}
.ma5_c00448{transform:matrix(0.228271,0.002511,-0.002750,0.249985,0,0);-ms-transform:matrix(0.228271,0.002511,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.228271,0.002511,-0.002750,0.249985,0,0);}
.m13e_c00448{transform:matrix(0.228295,0.004794,-0.005249,0.249945,0,0);-ms-transform:matrix(0.228295,0.004794,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.228295,0.004794,-0.005249,0.249945,0,0);}
.m38_c00448{transform:matrix(0.228420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228420,0.000000,0.000000,0.250000,0,0);}
.m127_c00448{transform:matrix(0.228520,0.004799,-0.005249,0.249945,0,0);-ms-transform:matrix(0.228520,0.004799,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.228520,0.004799,-0.005249,0.249945,0,0);}
.m6e_c00448{transform:matrix(0.228576,0.002514,-0.002750,0.249985,0,0);-ms-transform:matrix(0.228576,0.002514,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.228576,0.002514,-0.002750,0.249985,0,0);}
.m55_c00448{transform:matrix(0.228801,0.002517,-0.002750,0.249985,0,0);-ms-transform:matrix(0.228801,0.002517,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.228801,0.002517,-0.002750,0.249985,0,0);}
.m130_c00448{transform:matrix(0.229099,0.004811,-0.005249,0.249945,0,0);-ms-transform:matrix(0.229099,0.004811,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.229099,0.004811,-0.005249,0.249945,0,0);}
.me1_c00448{transform:matrix(0.229539,0.004820,-0.005249,0.249945,0,0);-ms-transform:matrix(0.229539,0.004820,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.229539,0.004820,-0.005249,0.249945,0,0);}
.m123_c00448{transform:matrix(0.230194,0.004834,-0.005249,0.249945,0,0);-ms-transform:matrix(0.230194,0.004834,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.230194,0.004834,-0.005249,0.249945,0,0);}
.m125_c00448{transform:matrix(0.230489,0.004840,-0.005249,0.249945,0,0);-ms-transform:matrix(0.230489,0.004840,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.230489,0.004840,-0.005249,0.249945,0,0);}
.mbe_c00448{transform:matrix(0.230781,0.002539,-0.002750,0.249985,0,0);-ms-transform:matrix(0.230781,0.002539,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.230781,0.002539,-0.002750,0.249985,0,0);}
.med_c00448{transform:matrix(0.231199,0.004855,-0.005249,0.249945,0,0);-ms-transform:matrix(0.231199,0.004855,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.231199,0.004855,-0.005249,0.249945,0,0);}
.mbd_c00448{transform:matrix(0.231266,0.002544,-0.002750,0.249985,0,0);-ms-transform:matrix(0.231266,0.002544,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.231266,0.002544,-0.002750,0.249985,0,0);}
.m46_c00448{transform:matrix(0.231516,0.002547,-0.002750,0.249985,0,0);-ms-transform:matrix(0.231516,0.002547,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.231516,0.002547,-0.002750,0.249985,0,0);}
.md7_c00448{transform:matrix(0.231589,0.004863,-0.005249,0.249945,0,0);-ms-transform:matrix(0.231589,0.004863,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.231589,0.004863,-0.005249,0.249945,0,0);}
.mc0_c00448{transform:matrix(0.231631,0.002548,-0.002750,0.249985,0,0);-ms-transform:matrix(0.231631,0.002548,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.231631,0.002548,-0.002750,0.249985,0,0);}
.me7_c00448{transform:matrix(0.231929,0.004871,-0.005249,0.249945,0,0);-ms-transform:matrix(0.231929,0.004871,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.231929,0.004871,-0.005249,0.249945,0,0);}
.m85_c00448{transform:matrix(0.232026,0.002552,-0.002750,0.249985,0,0);-ms-transform:matrix(0.232026,0.002552,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.232026,0.002552,-0.002750,0.249985,0,0);}
.mac_c00448{transform:matrix(0.232046,0.002553,-0.002750,0.249985,0,0);-ms-transform:matrix(0.232046,0.002553,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.232046,0.002553,-0.002750,0.249985,0,0);}
.m10d_c00448{transform:matrix(0.232119,0.004874,-0.005249,0.249945,0,0);-ms-transform:matrix(0.232119,0.004874,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.232119,0.004874,-0.005249,0.249945,0,0);}
.me5_c00448{transform:matrix(0.232144,0.004875,-0.005249,0.249945,0,0);-ms-transform:matrix(0.232144,0.004875,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.232144,0.004875,-0.005249,0.249945,0,0);}
.m3c_c00448{transform:matrix(0.232305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232305,0.000000,0.000000,0.250000,0,0);}
.m98_c00448{transform:matrix(0.232481,0.002557,-0.002750,0.249985,0,0);-ms-transform:matrix(0.232481,0.002557,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.232481,0.002557,-0.002750,0.249985,0,0);}
.md9_c00448{transform:matrix(0.233628,0.004906,-0.005249,0.249945,0,0);-ms-transform:matrix(0.233628,0.004906,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.233628,0.004906,-0.005249,0.249945,0,0);}
.mc9_c00448{transform:matrix(0.233886,0.002573,-0.002750,0.249985,0,0);-ms-transform:matrix(0.233886,0.002573,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.233886,0.002573,-0.002750,0.249985,0,0);}
.maf_c00448{transform:matrix(0.233896,0.002573,-0.002750,0.249985,0,0);-ms-transform:matrix(0.233896,0.002573,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.233896,0.002573,-0.002750,0.249985,0,0);}
.m13f_c00448{transform:matrix(0.233948,0.004913,-0.005249,0.249945,0,0);-ms-transform:matrix(0.233948,0.004913,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.233948,0.004913,-0.005249,0.249945,0,0);}
.me6_c00448{transform:matrix(0.233988,0.004914,-0.005249,0.249945,0,0);-ms-transform:matrix(0.233988,0.004914,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.233988,0.004914,-0.005249,0.249945,0,0);}
.m140_c00448{transform:matrix(0.234198,0.004918,-0.005249,0.249945,0,0);-ms-transform:matrix(0.234198,0.004918,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.234198,0.004918,-0.005249,0.249945,0,0);}
.m68_c00448{transform:matrix(0.234376,0.002578,-0.002750,0.249985,0,0);-ms-transform:matrix(0.234376,0.002578,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.234376,0.002578,-0.002750,0.249985,0,0);}
.m157_c00448{transform:matrix(0.234438,0.004923,-0.005249,0.249945,0,0);-ms-transform:matrix(0.234438,0.004923,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.234438,0.004923,-0.005249,0.249945,0,0);}
.m5c_c00448{transform:matrix(0.234661,0.002581,-0.002750,0.249985,0,0);-ms-transform:matrix(0.234661,0.002581,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.234661,0.002581,-0.002750,0.249985,0,0);}
.m4c_c00448{transform:matrix(0.234841,0.002583,-0.002750,0.249985,0,0);-ms-transform:matrix(0.234841,0.002583,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.234841,0.002583,-0.002750,0.249985,0,0);}
.m137_c00448{transform:matrix(0.234923,0.004933,-0.005249,0.249945,0,0);-ms-transform:matrix(0.234923,0.004933,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.234923,0.004933,-0.005249,0.249945,0,0);}
.m71_c00448{transform:matrix(0.235246,0.002588,-0.002750,0.249985,0,0);-ms-transform:matrix(0.235246,0.002588,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.235246,0.002588,-0.002750,0.249985,0,0);}
.m50_c00448{transform:matrix(0.235381,0.002589,-0.002750,0.249985,0,0);-ms-transform:matrix(0.235381,0.002589,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.235381,0.002589,-0.002750,0.249985,0,0);}
.m7f_c00448{transform:matrix(0.235431,0.002590,-0.002750,0.249985,0,0);-ms-transform:matrix(0.235431,0.002590,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.235431,0.002590,-0.002750,0.249985,0,0);}
.mff_c00448{transform:matrix(0.236848,0.004974,-0.005249,0.249945,0,0);-ms-transform:matrix(0.236848,0.004974,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.236848,0.004974,-0.005249,0.249945,0,0);}
.m56_c00448{transform:matrix(0.237011,0.002607,-0.002750,0.249985,0,0);-ms-transform:matrix(0.237011,0.002607,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.237011,0.002607,-0.002750,0.249985,0,0);}
.m13a_c00448{transform:matrix(0.237413,0.004986,-0.005249,0.249945,0,0);-ms-transform:matrix(0.237413,0.004986,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.237413,0.004986,-0.005249,0.249945,0,0);}
.m84_c00448{transform:matrix(0.237721,0.002615,-0.002750,0.249985,0,0);-ms-transform:matrix(0.237721,0.002615,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.237721,0.002615,-0.002750,0.249985,0,0);}
.m93_c00448{transform:matrix(0.237741,0.002615,-0.002750,0.249985,0,0);-ms-transform:matrix(0.237741,0.002615,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.237741,0.002615,-0.002750,0.249985,0,0);}
.m5e_c00448{transform:matrix(0.238426,0.002623,-0.002750,0.249985,0,0);-ms-transform:matrix(0.238426,0.002623,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.238426,0.002623,-0.002750,0.249985,0,0);}
.m15a_c00448{transform:matrix(0.238552,0.005010,-0.005249,0.249945,0,0);-ms-transform:matrix(0.238552,0.005010,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.238552,0.005010,-0.005249,0.249945,0,0);}
.m13b_c00448{transform:matrix(0.238947,0.005018,-0.005249,0.249945,0,0);-ms-transform:matrix(0.238947,0.005018,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.238947,0.005018,-0.005249,0.249945,0,0);}
.m91_c00448{transform:matrix(0.239416,0.002634,-0.002750,0.249985,0,0);-ms-transform:matrix(0.239416,0.002634,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.239416,0.002634,-0.002750,0.249985,0,0);}
.m126_c00448{transform:matrix(0.239492,0.005029,-0.005249,0.249945,0,0);-ms-transform:matrix(0.239492,0.005029,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.239492,0.005029,-0.005249,0.249945,0,0);}
.m64_c00448{transform:matrix(0.239526,0.002635,-0.002750,0.249985,0,0);-ms-transform:matrix(0.239526,0.002635,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.239526,0.002635,-0.002750,0.249985,0,0);}
.m129_c00448{transform:matrix(0.239857,0.005037,-0.005249,0.249945,0,0);-ms-transform:matrix(0.239857,0.005037,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.239857,0.005037,-0.005249,0.249945,0,0);}
.mba_c00448{transform:matrix(0.240270,0.002643,-0.002750,0.249985,0,0);-ms-transform:matrix(0.240270,0.002643,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.240270,0.002643,-0.002750,0.249985,0,0);}
.m81_c00448{transform:matrix(0.241000,0.002651,-0.002750,0.249985,0,0);-ms-transform:matrix(0.241000,0.002651,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.241000,0.002651,-0.002750,0.249985,0,0);}
.m159_c00448{transform:matrix(0.241272,0.005067,-0.005249,0.249945,0,0);-ms-transform:matrix(0.241272,0.005067,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.241272,0.005067,-0.005249,0.249945,0,0);}
.m5_c00448{transform:matrix(0.241300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241300,0.000000,0.000000,0.250000,0,0);}
.m1f_c00448{transform:matrix(0.241415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241415,0.000000,0.000000,0.250000,0,0);}
.m10f_c00448{transform:matrix(0.241557,0.005073,-0.005249,0.249945,0,0);-ms-transform:matrix(0.241557,0.005073,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.241557,0.005073,-0.005249,0.249945,0,0);}
.m138_c00448{transform:matrix(0.241782,0.005077,-0.005249,0.249945,0,0);-ms-transform:matrix(0.241782,0.005077,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.241782,0.005077,-0.005249,0.249945,0,0);}
.m136_c00448{transform:matrix(0.241987,0.005082,-0.005249,0.249945,0,0);-ms-transform:matrix(0.241987,0.005082,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.241987,0.005082,-0.005249,0.249945,0,0);}
.m28_c00448{transform:matrix(0.241995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241995,0.000000,0.000000,0.250000,0,0);}
.m95_c00448{transform:matrix(0.242165,0.002664,-0.002750,0.249985,0,0);-ms-transform:matrix(0.242165,0.002664,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.242165,0.002664,-0.002750,0.249985,0,0);}
.mc_c00448{transform:matrix(0.242745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242745,0.000000,0.000000,0.250000,0,0);}
.m8b_c00448{transform:matrix(0.242895,0.002672,-0.002750,0.249985,0,0);-ms-transform:matrix(0.242895,0.002672,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.242895,0.002672,-0.002750,0.249985,0,0);}
.m87_c00448{transform:matrix(0.242905,0.002672,-0.002750,0.249985,0,0);-ms-transform:matrix(0.242905,0.002672,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.242905,0.002672,-0.002750,0.249985,0,0);}
.m154_c00448{transform:matrix(0.243026,0.005104,-0.005249,0.249945,0,0);-ms-transform:matrix(0.243026,0.005104,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.243026,0.005104,-0.005249,0.249945,0,0);}
.m139_c00448{transform:matrix(0.243461,0.005113,-0.005249,0.249945,0,0);-ms-transform:matrix(0.243461,0.005113,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.243461,0.005113,-0.005249,0.249945,0,0);}
.m4_c00448{transform:matrix(0.243960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243960,0.000000,0.000000,0.250000,0,0);}
.m47_c00448{transform:matrix(0.244080,0.002685,-0.002750,0.249985,0,0);-ms-transform:matrix(0.244080,0.002685,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.244080,0.002685,-0.002750,0.249985,0,0);}
.m10b_c00448{transform:matrix(0.244321,0.005131,-0.005249,0.249945,0,0);-ms-transform:matrix(0.244321,0.005131,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.244321,0.005131,-0.005249,0.249945,0,0);}
.m2d_c00448{transform:matrix(0.244330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244330,0.000000,0.000000,0.250000,0,0);}
.ma6_c00448{transform:matrix(0.244465,0.002689,-0.002750,0.249985,0,0);-ms-transform:matrix(0.244465,0.002689,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.244465,0.002689,-0.002750,0.249985,0,0);}
.m15_c00448{transform:matrix(0.245025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245025,0.000000,0.000000,0.250000,0,0);}
.m8d_c00448{transform:matrix(0.245470,0.002700,-0.002750,0.249985,0,0);-ms-transform:matrix(0.245470,0.002700,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.245470,0.002700,-0.002750,0.249985,0,0);}
.m62_c00448{transform:matrix(0.245745,0.002703,-0.002750,0.249985,0,0);-ms-transform:matrix(0.245745,0.002703,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.245745,0.002703,-0.002750,0.249985,0,0);}
.mc8_c00448{transform:matrix(0.245845,0.002704,-0.002750,0.249985,0,0);-ms-transform:matrix(0.245845,0.002704,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.245845,0.002704,-0.002750,0.249985,0,0);}
.m4e_c00448{transform:matrix(0.246190,0.002708,-0.002750,0.249985,0,0);-ms-transform:matrix(0.246190,0.002708,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.246190,0.002708,-0.002750,0.249985,0,0);}
.md_c00448{transform:matrix(0.246205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246205,0.000000,0.000000,0.250000,0,0);}
.m26_c00448{transform:matrix(0.246300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246300,0.000000,0.000000,0.250000,0,0);}
.mab_c00448{transform:matrix(0.246535,0.002712,-0.002750,0.249985,0,0);-ms-transform:matrix(0.246535,0.002712,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.246535,0.002712,-0.002750,0.249985,0,0);}
.m14c_c00448{transform:matrix(0.246756,0.005182,-0.005249,0.249945,0,0);-ms-transform:matrix(0.246756,0.005182,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.246756,0.005182,-0.005249,0.249945,0,0);}
.m1c_c00448{transform:matrix(0.246980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246980,0.000000,0.000000,0.250000,0,0);}
.m65_c00448{transform:matrix(0.247145,0.002719,-0.002750,0.249985,0,0);-ms-transform:matrix(0.247145,0.002719,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.247145,0.002719,-0.002750,0.249985,0,0);}
.m134_c00448{transform:matrix(0.247375,0.005195,-0.005249,0.249945,0,0);-ms-transform:matrix(0.247375,0.005195,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.247375,0.005195,-0.005249,0.249945,0,0);}
.m29_c00448{transform:matrix(0.247685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247685,0.000000,0.000000,0.250000,0,0);}
.m5f_c00448{transform:matrix(0.248660,0.002735,-0.002750,0.249985,0,0);-ms-transform:matrix(0.248660,0.002735,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.248660,0.002735,-0.002750,0.249985,0,0);}
.m18_c00448{transform:matrix(0.248660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248660,0.000000,0.000000,0.250000,0,0);}
.m133_c00448{transform:matrix(0.248795,0.005225,-0.005249,0.249945,0,0);-ms-transform:matrix(0.248795,0.005225,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.248795,0.005225,-0.005249,0.249945,0,0);}
.mdf_c00448{transform:matrix(0.248985,0.005229,-0.005249,0.249945,0,0);-ms-transform:matrix(0.248985,0.005229,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.248985,0.005229,-0.005249,0.249945,0,0);}
.maa_c00448{transform:matrix(0.249060,0.002740,-0.002750,0.249985,0,0);-ms-transform:matrix(0.249060,0.002740,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.249060,0.002740,-0.002750,0.249985,0,0);}
.m12c_c00448{transform:matrix(0.249090,0.005231,-0.005249,0.249945,0,0);-ms-transform:matrix(0.249090,0.005231,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.249090,0.005231,-0.005249,0.249945,0,0);}
.m12f_c00448{transform:matrix(0.249240,0.005234,-0.005249,0.249945,0,0);-ms-transform:matrix(0.249240,0.005234,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.249240,0.005234,-0.005249,0.249945,0,0);}
.m32_c00448{transform:matrix(0.249615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249615,0.000000,0.000000,0.250000,0,0);}
.m100_c00448{transform:matrix(0.249735,0.005244,-0.005249,0.249945,0,0);-ms-transform:matrix(0.249735,0.005244,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.249735,0.005244,-0.005249,0.249945,0,0);}
.m11_c00448{transform:matrix(0.250015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250015,0.000000,0.000000,0.250000,0,0);}
.m63_c00448{transform:matrix(0.250620,0.002757,-0.002750,0.249985,0,0);-ms-transform:matrix(0.250620,0.002757,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.250620,0.002757,-0.002750,0.249985,0,0);}
.m54_c00448{transform:matrix(0.250645,0.002757,-0.002750,0.249985,0,0);-ms-transform:matrix(0.250645,0.002757,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.250645,0.002757,-0.002750,0.249985,0,0);}
.m27_c00448{transform:matrix(0.251010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251010,0.000000,0.000000,0.250000,0,0);}
.m20_c00448{transform:matrix(0.251125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251125,0.000000,0.000000,0.250000,0,0);}
.m131_c00448{transform:matrix(0.251320,0.005278,-0.005249,0.249945,0,0);-ms-transform:matrix(0.251320,0.005278,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.251320,0.005278,-0.005249,0.249945,0,0);}
.mfe_c00448{transform:matrix(0.251420,0.005280,-0.005249,0.249945,0,0);-ms-transform:matrix(0.251420,0.005280,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.251420,0.005280,-0.005249,0.249945,0,0);}
.m4b_c00448{transform:matrix(0.252340,0.002776,-0.002750,0.249985,0,0);-ms-transform:matrix(0.252340,0.002776,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.252340,0.002776,-0.002750,0.249985,0,0);}
.m104_c00448{transform:matrix(0.253379,0.005321,-0.005249,0.249945,0,0);-ms-transform:matrix(0.253379,0.005321,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.253379,0.005321,-0.005249,0.249945,0,0);}
.m8a_c00448{transform:matrix(0.254745,0.002802,-0.002750,0.249985,0,0);-ms-transform:matrix(0.254745,0.002802,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.254745,0.002802,-0.002750,0.249985,0,0);}
.m12d_c00448{transform:matrix(0.255014,0.005355,-0.005249,0.249945,0,0);-ms-transform:matrix(0.255014,0.005355,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.255014,0.005355,-0.005249,0.249945,0,0);}
.mde_c00448{transform:matrix(0.255254,0.005360,-0.005249,0.249945,0,0);-ms-transform:matrix(0.255254,0.005360,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.255254,0.005360,-0.005249,0.249945,0,0);}
.m22_c00448{transform:matrix(0.255440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255440,0.000000,0.000000,0.250000,0,0);}
.m53_c00448{transform:matrix(0.255660,0.002812,-0.002750,0.249985,0,0);-ms-transform:matrix(0.255660,0.002812,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.255660,0.002812,-0.002750,0.249985,0,0);}
.mae_c00448{transform:matrix(0.256749,0.002824,-0.002750,0.249985,0,0);-ms-transform:matrix(0.256749,0.002824,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.256749,0.002824,-0.002750,0.249985,0,0);}
.m153_c00448{transform:matrix(0.257163,0.005400,-0.005249,0.249945,0,0);-ms-transform:matrix(0.257163,0.005400,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.257163,0.005400,-0.005249,0.249945,0,0);}
.m13d_c00448{transform:matrix(0.257788,0.005414,-0.005249,0.249945,0,0);-ms-transform:matrix(0.257788,0.005414,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.257788,0.005414,-0.005249,0.249945,0,0);}
.m60_c00448{transform:matrix(0.258844,0.002847,-0.002750,0.249985,0,0);-ms-transform:matrix(0.258844,0.002847,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.258844,0.002847,-0.002750,0.249985,0,0);}
.m19_c00448{transform:matrix(0.258905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258905,0.000000,0.000000,0.250000,0,0);}
.mdd_c00448{transform:matrix(0.259223,0.005444,-0.005249,0.249945,0,0);-ms-transform:matrix(0.259223,0.005444,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.259223,0.005444,-0.005249,0.249945,0,0);}
.m12b_c00448{transform:matrix(0.259313,0.005446,-0.005249,0.249945,0,0);-ms-transform:matrix(0.259313,0.005446,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.259313,0.005446,-0.005249,0.249945,0,0);}
.m101_c00448{transform:matrix(0.259933,0.005459,-0.005249,0.249945,0,0);-ms-transform:matrix(0.259933,0.005459,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.259933,0.005459,-0.005249,0.249945,0,0);}
.m7_c00448{transform:matrix(0.260440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260440,0.000000,0.000000,0.250000,0,0);}
.m25_c00448{transform:matrix(0.260725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260725,0.000000,0.000000,0.250000,0,0);}
.m57_c00448{transform:matrix(0.261284,0.002874,-0.002750,0.249985,0,0);-ms-transform:matrix(0.261284,0.002874,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.261284,0.002874,-0.002750,0.249985,0,0);}
.mb7_c00448{transform:matrix(0.261494,0.002876,-0.002750,0.249985,0,0);-ms-transform:matrix(0.261494,0.002876,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.261494,0.002876,-0.002750,0.249985,0,0);}
.m106_c00448{transform:matrix(0.262252,0.005507,-0.005249,0.249945,0,0);-ms-transform:matrix(0.262252,0.005507,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.262252,0.005507,-0.005249,0.249945,0,0);}
.m135_c00448{transform:matrix(0.262612,0.005515,-0.005249,0.249945,0,0);-ms-transform:matrix(0.262612,0.005515,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.262612,0.005515,-0.005249,0.249945,0,0);}
.m6_c00448{transform:matrix(0.264365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264365,0.000000,0.000000,0.250000,0,0);}
.ma8_c00448{transform:matrix(0.264514,0.002910,-0.002750,0.249985,0,0);-ms-transform:matrix(0.264514,0.002910,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.264514,0.002910,-0.002750,0.249985,0,0);}
.m24_c00448{transform:matrix(0.264675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264675,0.000000,0.000000,0.250000,0,0);}
.m43_c00448{transform:matrix(0.264804,0.002913,-0.002750,0.249985,0,0);-ms-transform:matrix(0.264804,0.002913,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.264804,0.002913,-0.002750,0.249985,0,0);}
.m58_c00448{transform:matrix(0.265259,0.002918,-0.002750,0.249985,0,0);-ms-transform:matrix(0.265259,0.002918,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.265259,0.002918,-0.002750,0.249985,0,0);}
.m21_c00448{transform:matrix(0.267300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267300,0.000000,0.000000,0.250000,0,0);}
.m16_c00448{transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);}
.m13_c00448{transform:matrix(0.268800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268800,0.000000,0.000000,0.250000,0,0);}
.m4f_c00448{transform:matrix(0.268949,0.002958,-0.002750,0.249985,0,0);-ms-transform:matrix(0.268949,0.002958,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.268949,0.002958,-0.002750,0.249985,0,0);}
.m34_c00448{transform:matrix(0.269195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269195,0.000000,0.000000,0.250000,0,0);}
.m73_c00448{transform:matrix(0.269254,0.002962,-0.002750,0.249985,0,0);-ms-transform:matrix(0.269254,0.002962,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.269254,0.002962,-0.002750,0.249985,0,0);}
.me_c00448{transform:matrix(0.269620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269620,0.000000,0.000000,0.250000,0,0);}
.ma_c00448{transform:matrix(0.270225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270225,0.000000,0.000000,0.250000,0,0);}
.m3e_c00448{transform:matrix(0.271169,0.002983,-0.002750,0.249985,0,0);-ms-transform:matrix(0.271169,0.002983,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.271169,0.002983,-0.002750,0.249985,0,0);}
.m9_c00448{transform:matrix(0.271715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271715,0.000000,0.000000,0.250000,0,0);}
.m1a_c00448{transform:matrix(0.271940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271940,0.000000,0.000000,0.250000,0,0);}
.m2a_c00448{transform:matrix(0.272710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272710,0.000000,0.000000,0.250000,0,0);}
.m2f_c00448{transform:matrix(0.272720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272720,0.000000,0.000000,0.250000,0,0);}
.md8_c00448{transform:matrix(0.273525,0.005744,-0.005249,0.249945,0,0);-ms-transform:matrix(0.273525,0.005744,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.273525,0.005744,-0.005249,0.249945,0,0);}
.m3f_c00448{transform:matrix(0.273803,0.003012,-0.002750,0.249985,0,0);-ms-transform:matrix(0.273803,0.003012,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.273803,0.003012,-0.002750,0.249985,0,0);}
.me2_c00448{transform:matrix(0.275059,0.005776,-0.005249,0.249945,0,0);-ms-transform:matrix(0.275059,0.005776,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.275059,0.005776,-0.005249,0.249945,0,0);}
.m51_c00448{transform:matrix(0.276313,0.003039,-0.002750,0.249985,0,0);-ms-transform:matrix(0.276313,0.003039,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.276313,0.003039,-0.002750,0.249985,0,0);}
.m4a_c00448{transform:matrix(0.276853,0.003045,-0.002750,0.249985,0,0);-ms-transform:matrix(0.276853,0.003045,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.276853,0.003045,-0.002750,0.249985,0,0);}
.m23_c00448{transform:matrix(0.278795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278795,0.000000,0.000000,0.250000,0,0);}
.m48_c00448{transform:matrix(0.278833,0.003067,-0.002750,0.249985,0,0);-ms-transform:matrix(0.278833,0.003067,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.278833,0.003067,-0.002750,0.249985,0,0);}
.m17_c00448{transform:matrix(0.278860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278860,0.000000,0.000000,0.250000,0,0);}
.m59_c00448{transform:matrix(0.279328,0.003073,-0.002750,0.249985,0,0);-ms-transform:matrix(0.279328,0.003073,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.279328,0.003073,-0.002750,0.249985,0,0);}
.m5a_c00448{transform:matrix(0.279458,0.003074,-0.002750,0.249985,0,0);-ms-transform:matrix(0.279458,0.003074,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.279458,0.003074,-0.002750,0.249985,0,0);}
.m33_c00448{transform:matrix(0.281530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281530,0.000000,0.000000,0.250000,0,0);}
.mdc_c00448{transform:matrix(0.282488,0.005932,-0.005249,0.249945,0,0);-ms-transform:matrix(0.282488,0.005932,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.282488,0.005932,-0.005249,0.249945,0,0);}
.me0_c00448{transform:matrix(0.284512,0.005975,-0.005249,0.249945,0,0);-ms-transform:matrix(0.284512,0.005975,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.284512,0.005975,-0.005249,0.249945,0,0);}
.m1d_c00448{transform:matrix(0.285645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285645,0.000000,0.000000,0.250000,0,0);}
.m4d_c00448{transform:matrix(0.286343,0.003150,-0.002750,0.249985,0,0);-ms-transform:matrix(0.286343,0.003150,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.286343,0.003150,-0.002750,0.249985,0,0);}
.mda_c00448{transform:matrix(0.288131,0.006051,-0.005249,0.249945,0,0);-ms-transform:matrix(0.288131,0.006051,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.288131,0.006051,-0.005249,0.249945,0,0);}
.m2e_c00448{transform:matrix(0.289795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289795,0.000000,0.000000,0.250000,0,0);}
.m30_c00448{transform:matrix(0.290285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290285,0.000000,0.000000,0.250000,0,0);}
.m14b_c00448{transform:matrix(0.293050,0.006154,-0.005249,0.249945,0,0);-ms-transform:matrix(0.293050,0.006154,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.293050,0.006154,-0.005249,0.249945,0,0);}
.m44_c00448{transform:matrix(0.293672,0.003230,-0.002750,0.249985,0,0);-ms-transform:matrix(0.293672,0.003230,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.293672,0.003230,-0.002750,0.249985,0,0);}
.m40_c00448{transform:matrix(0.296722,0.003264,-0.002750,0.249985,0,0);-ms-transform:matrix(0.296722,0.003264,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.296722,0.003264,-0.002750,0.249985,0,0);}
.m42_c00448{transform:matrix(0.298657,0.003285,-0.002750,0.249985,0,0);-ms-transform:matrix(0.298657,0.003285,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.298657,0.003285,-0.002750,0.249985,0,0);}
.m31_c00448{transform:matrix(0.299490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299490,0.000000,0.000000,0.250000,0,0);}
.m2c_c00448{transform:matrix(0.300135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300135,0.000000,0.000000,0.250000,0,0);}
.m2b_c00448{transform:matrix(0.301165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301165,0.000000,0.000000,0.250000,0,0);}
.m41_c00448{transform:matrix(0.302512,0.003328,-0.002750,0.249985,0,0);-ms-transform:matrix(0.302512,0.003328,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.302512,0.003328,-0.002750,0.249985,0,0);}
.m45_c00448{transform:matrix(0.303972,0.003344,-0.002750,0.249985,0,0);-ms-transform:matrix(0.303972,0.003344,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.303972,0.003344,-0.002750,0.249985,0,0);}
.m10_c00448{transform:matrix(0.313790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313790,0.000000,0.000000,0.250000,0,0);}
.mb0_c00448{transform:matrix(0.321481,0.003536,-0.002750,0.249985,0,0);-ms-transform:matrix(0.321481,0.003536,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.321481,0.003536,-0.002750,0.249985,0,0);}
.m3_c00448{transform:matrix(0.322555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322555,0.000000,0.000000,0.250000,0,0);}
.m5b_c00448{transform:matrix(0.376237,0.004139,-0.002750,0.249985,0,0);-ms-transform:matrix(0.376237,0.004139,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.376237,0.004139,-0.002750,0.249985,0,0);}
.m2_c00448{transform:matrix(0.402805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402805,0.000000,0.000000,0.250000,0,0);}
.m8_c00448{transform:matrix(0.641600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.641600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.641600,0.000000,0.000000,0.250000,0,0);}
.v0_c00448{vertical-align:0.000000px;}
.ls0_c00448{letter-spacing:0.000000px;}
.sc__c00448{text-shadow:none;}
.sc0_c00448{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__c00448{-webkit-text-stroke:0px transparent;}
.sc0_c00448{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00448{word-spacing:0.000000px;}
.fc0_c00448{color:transparent;}
.fs0_c00448{font-size:48.000000px;}
.fs2_c00448{font-size:66.000000px;}
.fs4_c00448{font-size:66.003993px;}
.fs1_c00448{font-size:72.000000px;}
.fs5_c00448{font-size:72.004356px;}
.fsb_c00448{font-size:72.015874px;}
.fs6_c00448{font-size:78.004719px;}
.fse_c00448{font-size:78.017197px;}
.fs3_c00448{font-size:84.000000px;}
.fs7_c00448{font-size:84.005082px;}
.fsc_c00448{font-size:84.018520px;}
.fsa_c00448{font-size:90.019843px;}
.fs9_c00448{font-size:96.005808px;}
.fs8_c00448{font-size:102.006171px;}
.fsd_c00448{font-size:102.022489px;}
.y0_c00448{bottom:0.000000px;}
.y14d_c00448{bottom:93.008544px;}
.y14c_c00448{bottom:93.833829px;}
.y14b_c00448{bottom:94.711095px;}
.y14a_c00448{bottom:95.233760px;}
.y149_c00448{bottom:95.571051px;}
.y148_c00448{bottom:96.301785px;}
.y147_c00448{bottom:97.014339px;}
.y146_c00448{bottom:98.236040px;}
.y145_c00448{bottom:100.352084px;}
.y142_c00448{bottom:132.075645px;}
.y141_c00448{bottom:132.076001px;}
.y144_c00448{bottom:132.076037px;}
.y13f_c00448{bottom:132.076197px;}
.y13e_c00448{bottom:132.076301px;}
.y140_c00448{bottom:132.076352px;}
.y143_c00448{bottom:132.076403px;}
.y13d_c00448{bottom:132.076715px;}
.y13b_c00448{bottom:132.077172px;}
.y13c_c00448{bottom:132.077244px;}
.y13a_c00448{bottom:159.644381px;}
.y139_c00448{bottom:160.093146px;}
.y138_c00448{bottom:160.626920px;}
.y137_c00448{bottom:160.891034px;}
.y136_c00448{bottom:161.072066px;}
.y135_c00448{bottom:161.333699px;}
.y134_c00448{bottom:161.510639px;}
.y133_c00448{bottom:161.781294px;}
.y132_c00448{bottom:162.386111px;}
.y131_c00448{bottom:163.274382px;}
.y130_c00448{bottom:195.332156px;}
.y12f_c00448{bottom:196.110270px;}
.y12e_c00448{bottom:197.035467px;}
.y12d_c00448{bottom:197.494463px;}
.y12c_c00448{bottom:198.405311px;}
.y12b_c00448{bottom:198.734010px;}
.y12a_c00448{bottom:199.806534px;}
.y129_c00448{bottom:200.898314px;}
.y128_c00448{bottom:201.352056px;}
.y127_c00448{bottom:220.203804px;}
.y126_c00448{bottom:223.150052px;}
.y125_c00448{bottom:224.755700px;}
.y124_c00448{bottom:226.351374px;}
.y123_c00448{bottom:226.901096px;}
.y122_c00448{bottom:229.035983px;}
.y121_c00448{bottom:229.827069px;}
.y120_c00448{bottom:231.674240px;}
.y11f_c00448{bottom:232.476528px;}
.y11e_c00448{bottom:234.842208px;}
.y11d_c00448{bottom:235.903805px;}
.y11c_c00448{bottom:237.812277px;}
.y11b_c00448{bottom:260.717316px;}
.y11a_c00448{bottom:262.038303px;}
.y119_c00448{bottom:262.330066px;}
.y118_c00448{bottom:263.346208px;}
.y117_c00448{bottom:264.771705px;}
.y116_c00448{bottom:265.790379px;}
.y115_c00448{bottom:266.077531px;}
.y114_c00448{bottom:267.215214px;}
.y113_c00448{bottom:267.946074px;}
.y112_c00448{bottom:268.785865px;}
.y111_c00448{bottom:269.374311px;}
.y110_c00448{bottom:269.950380px;}
.y10f_c00448{bottom:292.837753px;}
.y10e_c00448{bottom:294.168684px;}
.y10d_c00448{bottom:294.844623px;}
.y10c_c00448{bottom:295.957490px;}
.y10b_c00448{bottom:296.425898px;}
.y10a_c00448{bottom:298.171757px;}
.y109_c00448{bottom:298.651819px;}
.y108_c00448{bottom:300.197046px;}
.y107_c00448{bottom:301.521173px;}
.y106_c00448{bottom:302.173865px;}
.y105_c00448{bottom:303.935328px;}
.y104_c00448{bottom:304.845755px;}
.y103_c00448{bottom:305.708825px;}
.y102_c00448{bottom:307.221204px;}
.y101_c00448{bottom:329.151897px;}
.y100_c00448{bottom:330.996098px;}
.yff_c00448{bottom:331.498524px;}
.yfe_c00448{bottom:332.981653px;}
.yfd_c00448{bottom:333.654689px;}
.yfc_c00448{bottom:335.833932px;}
.yfb_c00448{bottom:336.511547px;}
.yfa_c00448{bottom:336.977250px;}
.yf9_c00448{bottom:338.155905px;}
.yf8_c00448{bottom:338.628752px;}
.yf7_c00448{bottom:339.628301px;}
.yf6_c00448{bottom:367.239990px;}
.yf5_c00448{bottom:367.803900px;}
.yf4_c00448{bottom:369.315090px;}
.yf3_c00448{bottom:369.893766px;}
.yf2_c00448{bottom:370.659742px;}
.yf1_c00448{bottom:372.730168px;}
.yf0_c00448{bottom:374.245245px;}
.yef_c00448{bottom:375.173116px;}
.yee_c00448{bottom:376.664489px;}
.yed_c00448{bottom:377.044614px;}
.yec_c00448{bottom:377.976939px;}
.yeb_c00448{bottom:401.635201px;}
.yea_c00448{bottom:402.116025px;}
.ye9_c00448{bottom:403.351434px;}
.ye8_c00448{bottom:403.708118px;}
.ye7_c00448{bottom:403.951247px;}
.ye6_c00448{bottom:404.321866px;}
.ye5_c00448{bottom:405.306306px;}
.ye4_c00448{bottom:405.554606px;}
.ye3_c00448{bottom:406.395601px;}
.ye2_c00448{bottom:407.372527px;}
.ye1_c00448{bottom:408.335076px;}
.ye0_c00448{bottom:408.823835px;}
.ydf_c00448{bottom:409.299192px;}
.yde_c00448{bottom:438.089351px;}
.ydd_c00448{bottom:439.183304px;}
.ydc_c00448{bottom:439.655432px;}
.ydb_c00448{bottom:440.589579px;}
.yda_c00448{bottom:441.660075px;}
.yd9_c00448{bottom:442.150451px;}
.yd8_c00448{bottom:442.611191px;}
.yd7_c00448{bottom:443.858543px;}
.yd6_c00448{bottom:445.544678px;}
.yd5_c00448{bottom:446.784623px;}
.yd4_c00448{bottom:447.415127px;}
.yd3_c00448{bottom:448.185676px;}
.yd2_c00448{bottom:476.400776px;}
.yd1_c00448{bottom:476.786561px;}
.yd0_c00448{bottom:478.012388px;}
.ycf_c00448{bottom:478.662995px;}
.yce_c00448{bottom:479.204444px;}
.ycd_c00448{bottom:480.001898px;}
.ycc_c00448{bottom:480.386844px;}
.ycb_c00448{bottom:481.056384px;}
.yca_c00448{bottom:481.452963px;}
.yc9_c00448{bottom:481.865534px;}
.yc8_c00448{bottom:482.259600px;}
.yc7_c00448{bottom:483.699872px;}
.yc6_c00448{bottom:484.104047px;}
.yc5_c00448{bottom:510.575586px;}
.yc4_c00448{bottom:512.918682px;}
.yc3_c00448{bottom:514.761621px;}
.yc2_c00448{bottom:515.719883px;}
.yc1_c00448{bottom:517.358733px;}
.yc0_c00448{bottom:519.190206px;}
.ybf_c00448{bottom:521.520671px;}
.ybe_c00448{bottom:522.456000px;}
.ybd_c00448{bottom:555.579263px;}
.ybb_c00448{bottom:555.579611px;}
.ybc_c00448{bottom:555.579917px;}
.yba_c00448{bottom:555.580344px;}
.yb9_c00448{bottom:582.640932px;}
.yb8_c00448{bottom:583.181609px;}
.yb7_c00448{bottom:584.109672px;}
.yb6_c00448{bottom:585.704626px;}
.yb5_c00448{bottom:586.245765px;}
.yb4_c00448{bottom:587.042550px;}
.yb3_c00448{bottom:587.427414px;}
.yb2_c00448{bottom:588.237117px;}
.yb1_c00448{bottom:588.626962px;}
.yb0_c00448{bottom:589.032894px;}
.yaf_c00448{bottom:589.427640px;}
.yae_c00448{bottom:590.478421px;}
.yad_c00448{bottom:591.007615px;}
.yac_c00448{bottom:618.017859px;}
.yab_c00448{bottom:618.895441px;}
.yaa_c00448{bottom:619.313536px;}
.ya9_c00448{bottom:620.043747px;}
.ya8_c00448{bottom:621.479175px;}
.ya7_c00448{bottom:622.194703px;}
.ya6_c00448{bottom:622.783383px;}
.ya5_c00448{bottom:623.937859px;}
.ya4_c00448{bottom:624.193504px;}
.ya3_c00448{bottom:624.640041px;}
.ya2_c00448{bottom:624.944452px;}
.ya1_c00448{bottom:625.644126px;}
.ya0_c00448{bottom:626.082463px;}
.y9f_c00448{bottom:626.647435px;}
.y9e_c00448{bottom:655.778478px;}
.y9d_c00448{bottom:656.084267px;}
.y9c_c00448{bottom:656.316043px;}
.y9b_c00448{bottom:656.736936px;}
.y9a_c00448{bottom:657.019032px;}
.y99_c00448{bottom:657.333354px;}
.y98_c00448{bottom:657.804664px;}
.y97_c00448{bottom:658.269867px;}
.y96_c00448{bottom:658.491192px;}
.y95_c00448{bottom:659.584116px;}
.y94_c00448{bottom:659.814505px;}
.y93_c00448{bottom:660.347430px;}
.y92_c00448{bottom:660.668967px;}
.y91_c00448{bottom:689.284329px;}
.y90_c00448{bottom:690.250074px;}
.y8f_c00448{bottom:690.879516px;}
.y8e_c00448{bottom:691.372536px;}
.y8d_c00448{bottom:692.109970px;}
.y8c_c00448{bottom:692.584906px;}
.y8b_c00448{bottom:693.316978px;}
.y8a_c00448{bottom:693.561772px;}
.y89_c00448{bottom:695.014565px;}
.y88_c00448{bottom:695.263632px;}
.y87_c00448{bottom:695.995093px;}
.y86_c00448{bottom:696.852351px;}
.y85_c00448{bottom:726.451956px;}
.y84_c00448{bottom:726.719802px;}
.y83_c00448{bottom:726.986079px;}
.y82_c00448{bottom:727.446040px;}
.y81_c00448{bottom:727.783954px;}
.y80_c00448{bottom:728.238006px;}
.y7f_c00448{bottom:728.505769px;}
.y7e_c00448{bottom:729.041115px;}
.y7d_c00448{bottom:729.303298px;}
.y7c_c00448{bottom:729.571161px;}
.y7b_c00448{bottom:729.838644px;}
.y7a_c00448{bottom:730.453003px;}
.y79_c00448{bottom:730.814026px;}
.y78_c00448{bottom:731.349537px;}
.y77_c00448{bottom:732.226725px;}
.y76_c00448{bottom:760.841415px;}
.y75_c00448{bottom:761.508652px;}
.y74_c00448{bottom:762.850815px;}
.y73_c00448{bottom:763.385683px;}
.y72_c00448{bottom:764.578139px;}
.y71_c00448{bottom:765.780640px;}
.y70_c00448{bottom:766.173159px;}
.y6f_c00448{bottom:766.455037px;}
.y6e_c00448{bottom:767.784216px;}
.y6d_c00448{bottom:768.418836px;}
.y6c_c00448{bottom:769.491658px;}
.y6b_c00448{bottom:798.685496px;}
.y6a_c00448{bottom:798.993487px;}
.y69_c00448{bottom:799.691559px;}
.y68_c00448{bottom:800.500602px;}
.y67_c00448{bottom:800.792518px;}
.y66_c00448{bottom:801.684657px;}
.y65_c00448{bottom:802.087677px;}
.y64_c00448{bottom:802.984041px;}
.y63_c00448{bottom:803.283252px;}
.y62_c00448{bottom:803.479876px;}
.y61_c00448{bottom:803.783907px;}
.y60_c00448{bottom:834.697140px;}
.y5f_c00448{bottom:835.008409px;}
.y5e_c00448{bottom:835.628899px;}
.y5d_c00448{bottom:835.871125px;}
.y5c_c00448{bottom:836.101218px;}
.y5b_c00448{bottom:836.641935px;}
.y5a_c00448{bottom:836.879705px;}
.y59_c00448{bottom:837.111531px;}
.y58_c00448{bottom:837.569304px;}
.y57_c00448{bottom:837.811497px;}
.y56_c00448{bottom:838.044559px;}
.y55_c00448{bottom:838.732854px;}
.y54_c00448{bottom:839.042884px;}
.y53_c00448{bottom:839.426976px;}
.y52_c00448{bottom:870.202138px;}
.y51_c00448{bottom:870.653401px;}
.y50_c00448{bottom:871.539717px;}
.y4f_c00448{bottom:872.245473px;}
.y4e_c00448{bottom:872.607933px;}
.y4d_c00448{bottom:873.585892px;}
.y4c_c00448{bottom:874.196985px;}
.y4b_c00448{bottom:874.731075px;}
.y4a_c00448{bottom:875.091718px;}
.y49_c00448{bottom:875.607900px;}
.y48_c00448{bottom:906.947031px;}
.y47_c00448{bottom:907.502758px;}
.y46_c00448{bottom:907.674448px;}
.y45_c00448{bottom:908.177791px;}
.y44_c00448{bottom:908.509411px;}
.y43_c00448{bottom:908.833711px;}
.y42_c00448{bottom:909.005286px;}
.y41_c00448{bottom:909.172731px;}
.y40_c00448{bottom:909.288469px;}
.y3f_c00448{bottom:909.560137px;}
.y3e_c00448{bottom:909.722974px;}
.y3d_c00448{bottom:910.223311px;}
.y3c_c00448{bottom:910.437261px;}
.y3b_c00448{bottom:941.882508px;}
.y3a_c00448{bottom:942.153531px;}
.y39_c00448{bottom:943.090191px;}
.y38_c00448{bottom:943.290372px;}
.y37_c00448{bottom:943.616057px;}
.y36_c00448{bottom:944.358366px;}
.y35_c00448{bottom:944.554285px;}
.y34_c00448{bottom:944.748636px;}
.y33_c00448{bottom:945.411349px;}
.y32_c00448{bottom:945.611530px;}
.y31_c00448{bottom:945.808573px;}
.y30_c00448{bottom:978.161016px;}
.y2f_c00448{bottom:979.001542px;}
.y2e_c00448{bottom:979.506244px;}
.y2d_c00448{bottom:980.474893px;}
.y2c_c00448{bottom:981.692643px;}
.y2b_c00448{bottom:982.669839px;}
.y2a_c00448{bottom:983.278590px;}
.y29_c00448{bottom:983.881500px;}
.y28_c00448{bottom:1016.979000px;}
.y27_c00448{bottom:1049.652000px;}
.y26_c00448{bottom:1049.979000px;}
.y25_c00448{bottom:1050.178500px;}
.y24_c00448{bottom:1050.721500px;}
.y23_c00448{bottom:1051.188000px;}
.y22_c00448{bottom:1051.447500px;}
.y21_c00448{bottom:1051.915500px;}
.y20_c00448{bottom:1052.112000px;}
.y1f_c00448{bottom:1052.649000px;}
.y1e_c00448{bottom:1053.307500px;}
.y1d_c00448{bottom:1053.810000px;}
.y1c_c00448{bottom:1084.608000px;}
.y1b_c00448{bottom:1084.912500px;}
.y1a_c00448{bottom:1085.223000px;}
.y19_c00448{bottom:1085.709000px;}
.y18_c00448{bottom:1086.018000px;}
.y17_c00448{bottom:1086.231000px;}
.y16_c00448{bottom:1086.817500px;}
.y15_c00448{bottom:1087.723500px;}
.y14_c00448{bottom:1087.924500px;}
.y13_c00448{bottom:1088.613000px;}
.y12_c00448{bottom:1089.013500px;}
.y11_c00448{bottom:1089.312000px;}
.y10_c00448{bottom:1089.603000px;}
.yf_c00448{bottom:1090.798500px;}
.ye_c00448{bottom:1121.071500px;}
.yd_c00448{bottom:1121.370000px;}
.yc_c00448{bottom:1122.172500px;}
.yb_c00448{bottom:1122.772500px;}
.ya_c00448{bottom:1123.179000px;}
.y9_c00448{bottom:1124.275500px;}
.y8_c00448{bottom:1125.072000px;}
.y7_c00448{bottom:1125.478500px;}
.y6_c00448{bottom:1125.772500px;}
.y5_c00448{bottom:1126.477500px;}
.y4_c00448{bottom:1126.767000px;}
.y3_c00448{bottom:1127.250000px;}
.y2_c00448{bottom:1157.377500px;}
.y1_c00448{bottom:1216.729500px;}
.h2_c00448{height:48.000000px;}
.h4_c00448{height:66.000000px;}
.h6_c00448{height:66.003993px;}
.h3_c00448{height:72.000000px;}
.h7_c00448{height:72.004356px;}
.hd_c00448{height:72.015874px;}
.h8_c00448{height:78.004719px;}
.h10_c00448{height:78.017197px;}
.h5_c00448{height:84.000000px;}
.h9_c00448{height:84.005082px;}
.he_c00448{height:84.018520px;}
.hc_c00448{height:90.019843px;}
.hb_c00448{height:96.005808px;}
.ha_c00448{height:102.006171px;}
.hf_c00448{height:102.022489px;}
.h0_c00448{height:1251.450000px;}
.h1_c00448{height:1251.750000px;}
.w0_c00448{width:915.000000px;}
.x0_c00448{left:0.000000px;}
.x22_c00448{left:131.355000px;}
.xaf_c00448{left:133.769733px;}
.x62_c00448{left:134.869877px;}
.x4e_c00448{left:135.950112px;}
.x1a_c00448{left:137.851500px;}
.x5_c00448{left:140.400000px;}
.xb9_c00448{left:166.671282px;}
.x85_c00448{left:168.205598px;}
.x34_c00448{left:170.275680px;}
.x98_c00448{left:178.039805px;}
.x76_c00448{left:179.359385px;}
.x3a_c00448{left:180.816732px;}
.x2a_c00448{left:182.248500px;}
.x91_c00448{left:189.102741px;}
.x45_c00448{left:192.392243px;}
.x6_c00448{left:194.130000px;}
.xa6_c00448{left:200.699346px;}
.x40_c00448{left:202.395942px;}
.x35_c00448{left:203.748528px;}
.xa1_c00448{left:211.705596px;}
.x63_c00448{left:212.802377px;}
.x23_c00448{left:215.098500px;}
.x99_c00448{left:222.537660px;}
.x12_c00448{left:225.318000px;}
.x7_c00448{left:226.800000px;}
.xa7_c00448{left:232.219815px;}
.x92_c00448{left:234.133356px;}
.x46_c00448{left:236.669690px;}
.xba_c00448{left:244.672248px;}
.x5a_c00448{left:245.836725px;}
.x2f_c00448{left:247.981500px;}
.xab_c00448{left:254.370875px;}
.xb5_c00448{left:255.618498px;}
.x6c_c00448{left:256.917776px;}
.x77_c00448{left:266.858454px;}
.x1b_c00448{left:270.673500px;}
.x52_c00448{left:278.452404px;}
.x2b_c00448{left:279.988500px;}
.x3b_c00448{left:280.990349px;}
.x8a_c00448{left:288.474456px;}
.x6d_c00448{left:289.863728px;}
.x8_c00448{left:293.760000px;}
.x7e_c00448{left:300.291020px;}
.x64_c00448{left:301.941377px;}
.x13_c00448{left:303.607500px;}
.x9a_c00448{left:310.034525px;}
.x5b_c00448{left:312.794436px;}
.x36_c00448{left:314.183100px;}
.x8b_c00448{left:321.317162px;}
.x93_c00448{left:322.691366px;}
.x24_c00448{left:324.729000px;}
.x47_c00448{left:334.973513px;}
.x14_c00448{left:336.270000px;}
.xa8_c00448{left:341.822112px;}
.xc0_c00448{left:343.190966px;}
.x78_c00448{left:344.319755px;}
.x2c_c00448{left:347.488500px;}
.x9_c00448{left:348.570000px;}
.xa2_c00448{left:353.991035px;}
.x8c_c00448{left:355.684151px;}
.x30_c00448{left:358.132500px;}
.xc1_c00448{left:365.336231px;}
.x7f_c00448{left:366.497277px;}
.x3c_c00448{left:367.951091px;}
.x4f_c00448{left:369.205244px;}
.xbd_c00448{left:376.248174px;}
.x1_c00448{left:379.350000px;}
.x15_c00448{left:381.370500px;}
.xa9_c00448{left:386.952282px;}
.xac_c00448{left:387.963678px;}
.x53_c00448{left:389.194683px;}
.x41_c00448{left:390.568146px;}
.x2d_c00448{left:392.038500px;}
.x9b_c00448{left:398.859173px;}
.x86_c00448{left:400.413000px;}
.x48_c00448{left:402.726983px;}
.xbe_c00448{left:408.930089px;}
.xbb_c00448{left:409.938066px;}
.x54_c00448{left:412.637919px;}
.x25_c00448{left:414.352500px;}
.x2_c00448{left:417.690000px;}
.xad_c00448{left:420.616371px;}
.x3d_c00448{left:424.653336px;}
.xb0_c00448{left:431.598224px;}
.x79_c00448{left:433.179308px;}
.x5c_c00448{left:434.605946px;}
.x3_c00448{left:436.320000px;}
.x94_c00448{left:443.144069px;}
.x55_c00448{left:445.321056px;}
.xa_c00448{left:446.850000px;}
.xb1_c00448{left:453.704441px;}
.x65_c00448{left:456.267377px;}
.x4_c00448{left:458.190000px;}
.xb6_c00448{left:464.564331px;}
.x80_c00448{left:466.093188px;}
.x49_c00448{left:468.072854px;}
.x16_c00448{left:469.926000px;}
.x9c_c00448{left:475.351238px;}
.x6e_c00448{left:477.530978px;}
.x1c_c00448{left:479.641500px;}
.xc3_c00448{left:486.331742px;}
.x87_c00448{left:487.626000px;}
.x9d_c00448{left:497.965494px;}
.x4a_c00448{left:501.285822px;}
.x37_c00448{left:502.927979px;}
.xbc_c00448{left:508.795088px;}
.x42_c00448{left:512.886689px;}
.x66_c00448{left:522.819377px;}
.xb_c00448{left:524.610000px;}
.xbf_c00448{left:531.292979px;}
.x81_c00448{left:532.527462px;}
.x5d_c00448{left:534.248229px;}
.x4b_c00448{left:535.311824px;}
.xc4_c00448{left:541.183506px;}
.x6f_c00448{left:543.961398px;}
.x56_c00448{left:545.501951px;}
.x31_c00448{left:557.673000px;}
.xa3_c00448{left:564.961269px;}
.x67_c00448{left:565.995377px;}
.x26_c00448{left:568.260000px;}
.xc2_c00448{left:575.443841px;}
.x82_c00448{left:577.630467px;}
.x1d_c00448{left:580.357500px;}
.xb7_c00448{left:586.460145px;}
.x8d_c00448{left:588.226593px;}
.x38_c00448{left:590.693313px;}
.x17_c00448{left:591.703500px;}
.xc5_c00448{left:592.773924px;}
.x5e_c00448{left:601.190940px;}
.xc_c00448{left:603.720000px;}
.xa4_c00448{left:610.011549px;}
.x70_c00448{left:611.219852px;}
.x4c_c00448{left:612.562223px;}
.x9e_c00448{left:621.160856px;}
.x68_c00448{left:633.034877px;}
.x5f_c00448{left:634.670546px;}
.xd_c00448{left:636.390000px;}
.x8e_c00448{left:642.503862px;}
.x7a_c00448{left:644.050688px;}
.x1e_c00448{left:645.459000px;}
.x43_c00448{left:646.547111px;}
.x71_c00448{left:656.023815px;}
.x50_c00448{left:668.136311px;}
.x1f_c00448{left:669.195000px;}
.xe_c00448{left:670.680000px;}
.x9f_c00448{left:675.734822px;}
.x95_c00448{left:676.771935px;}
.x69_c00448{left:677.854877px;}
.x4d_c00448{left:680.048693px;}
.x57_c00448{left:689.438867px;}
.x32_c00448{left:691.614000px;}
.x2e_c00448{left:693.088500px;}
.x72_c00448{left:696.261581px;}
.x88_c00448{left:699.057000px;}
.x7b_c00448{left:700.204950px;}
.x51_c00448{left:702.409070px;}
.x18_c00448{left:703.489500px;}
.xaa_c00448{left:709.437386px;}
.x83_c00448{left:710.488499px;}
.xf_c00448{left:714.960000px;}
.xb2_c00448{left:719.811608px;}
.x3e_c00448{left:725.175669px;}
.x7c_c00448{left:732.349241px;}
.x60_c00448{left:733.534296px;}
.x6a_c00448{left:735.076877px;}
.x27_c00448{left:736.474500px;}
.xb3_c00448{left:742.208856px;}
.x96_c00448{left:743.479232px;}
.x8f_c00448{left:744.610140px;}
.x39_c00448{left:746.761893px;}
.xae_c00448{left:754.482896px;}
.x73_c00448{left:756.481737px;}
.x20_c00448{left:757.512000px;}
.xa5_c00448{left:766.180685px;}
.x33_c00448{left:768.025500px;}
.x28_c00448{left:769.686000px;}
.x90_c00448{left:776.701188px;}
.x84_c00448{left:787.766141px;}
.x74_c00448{left:789.690206px;}
.x61_c00448{left:791.032694px;}
.x21_c00448{left:792.048000px;}
.x10_c00448{left:793.530000px;}
.x7d_c00448{left:799.855256px;}
.x58_c00448{left:801.225129px;}
.x89_c00448{left:810.633000px;}
.x44_c00448{left:813.696122px;}
.x6b_c00448{left:822.871877px;}
.x29_c00448{left:824.248500px;}
.x19_c00448{left:825.807000px;}
.x11_c00448{left:827.550000px;}
.xa0_c00448{left:831.850113px;}
.x75_c00448{left:833.445636px;}
.x3f_c00448{left:836.385512px;}
.xb4_c00448{left:843.772897px;}
.x97_c00448{left:855.356675px;}
.x59_c00448{left:856.837019px;}
.xb8_c00448{left:865.504068px;}
@media print{
.v0_c00448{vertical-align:0.000000pt;}
.ls0_c00448{letter-spacing:0.000000pt;}
.ws0_c00448{word-spacing:0.000000pt;}
.fs0_c00448{font-size:42.666667pt;}
.fs2_c00448{font-size:58.666667pt;}
.fs4_c00448{font-size:58.670216pt;}
.fs1_c00448{font-size:64.000000pt;}
.fs5_c00448{font-size:64.003872pt;}
.fsb_c00448{font-size:64.014110pt;}
.fs6_c00448{font-size:69.337528pt;}
.fse_c00448{font-size:69.348620pt;}
.fs3_c00448{font-size:74.666667pt;}
.fs7_c00448{font-size:74.671184pt;}
.fsc_c00448{font-size:74.683129pt;}
.fsa_c00448{font-size:80.017638pt;}
.fs9_c00448{font-size:85.338496pt;}
.fs8_c00448{font-size:90.672152pt;}
.fsd_c00448{font-size:90.686656pt;}
.y0_c00448{bottom:0.000000pt;}
.y14d_c00448{bottom:82.674261pt;}
.y14c_c00448{bottom:83.407848pt;}
.y14b_c00448{bottom:84.187640pt;}
.y14a_c00448{bottom:84.652231pt;}
.y149_c00448{bottom:84.952045pt;}
.y148_c00448{bottom:85.601587pt;}
.y147_c00448{bottom:86.234968pt;}
.y146_c00448{bottom:87.320924pt;}
.y145_c00448{bottom:89.201852pt;}
.y142_c00448{bottom:117.400573pt;}
.y141_c00448{bottom:117.400889pt;}
.y144_c00448{bottom:117.400921pt;}
.y13f_c00448{bottom:117.401064pt;}
.y13e_c00448{bottom:117.401156pt;}
.y140_c00448{bottom:117.401201pt;}
.y143_c00448{bottom:117.401247pt;}
.y13d_c00448{bottom:117.401524pt;}
.y13b_c00448{bottom:117.401931pt;}
.y13c_c00448{bottom:117.401995pt;}
.y13a_c00448{bottom:141.906116pt;}
.y139_c00448{bottom:142.305019pt;}
.y138_c00448{bottom:142.779484pt;}
.y137_c00448{bottom:143.014252pt;}
.y136_c00448{bottom:143.175169pt;}
.y135_c00448{bottom:143.407732pt;}
.y134_c00448{bottom:143.565012pt;}
.y133_c00448{bottom:143.805595pt;}
.y132_c00448{bottom:144.343209pt;}
.y131_c00448{bottom:145.132784pt;}
.y130_c00448{bottom:173.628583pt;}
.y12f_c00448{bottom:174.320240pt;}
.y12e_c00448{bottom:175.142637pt;}
.y12d_c00448{bottom:175.550633pt;}
.y12c_c00448{bottom:176.360276pt;}
.y12b_c00448{bottom:176.652453pt;}
.y12a_c00448{bottom:177.605808pt;}
.y129_c00448{bottom:178.576279pt;}
.y128_c00448{bottom:178.979605pt;}
.y127_c00448{bottom:195.736715pt;}
.y126_c00448{bottom:198.355601pt;}
.y125_c00448{bottom:199.782844pt;}
.y124_c00448{bottom:201.201221pt;}
.y123_c00448{bottom:201.689863pt;}
.y122_c00448{bottom:203.587540pt;}
.y121_c00448{bottom:204.290728pt;}
.y120_c00448{bottom:205.932657pt;}
.y11f_c00448{bottom:206.645803pt;}
.y11e_c00448{bottom:208.748629pt;}
.y11d_c00448{bottom:209.692271pt;}
.y11c_c00448{bottom:211.388691pt;}
.y11b_c00448{bottom:231.748725pt;}
.y11a_c00448{bottom:232.922936pt;}
.y119_c00448{bottom:233.182281pt;}
.y118_c00448{bottom:234.085519pt;}
.y117_c00448{bottom:235.352627pt;}
.y116_c00448{bottom:236.258115pt;}
.y115_c00448{bottom:236.513361pt;}
.y114_c00448{bottom:237.524635pt;}
.y113_c00448{bottom:238.174288pt;}
.y112_c00448{bottom:238.920769pt;}
.y111_c00448{bottom:239.443832pt;}
.y110_c00448{bottom:239.955893pt;}
.y10f_c00448{bottom:260.300225pt;}
.y10e_c00448{bottom:261.483275pt;}
.y10d_c00448{bottom:262.084109pt;}
.y10c_c00448{bottom:263.073324pt;}
.y10b_c00448{bottom:263.489687pt;}
.y10a_c00448{bottom:265.041561pt;}
.y109_c00448{bottom:265.468284pt;}
.y108_c00448{bottom:266.841819pt;}
.y107_c00448{bottom:268.018820pt;}
.y106_c00448{bottom:268.598991pt;}
.y105_c00448{bottom:270.164736pt;}
.y104_c00448{bottom:270.974004pt;}
.y103_c00448{bottom:271.741177pt;}
.y102_c00448{bottom:273.085515pt;}
.y101_c00448{bottom:292.579464pt;}
.y100_c00448{bottom:294.218753pt;}
.yff_c00448{bottom:294.665355pt;}
.yfe_c00448{bottom:295.983692pt;}
.yfd_c00448{bottom:296.581945pt;}
.yfc_c00448{bottom:298.519051pt;}
.yfb_c00448{bottom:299.121375pt;}
.yfa_c00448{bottom:299.535333pt;}
.yf9_c00448{bottom:300.583027pt;}
.yf8_c00448{bottom:301.003335pt;}
.yf7_c00448{bottom:301.891823pt;}
.yf6_c00448{bottom:326.435547pt;}
.yf5_c00448{bottom:326.936800pt;}
.yf4_c00448{bottom:328.280080pt;}
.yf3_c00448{bottom:328.794459pt;}
.yf2_c00448{bottom:329.475327pt;}
.yf1_c00448{bottom:331.315705pt;}
.yf0_c00448{bottom:332.662440pt;}
.yef_c00448{bottom:333.487215pt;}
.yee_c00448{bottom:334.812879pt;}
.yed_c00448{bottom:335.150768pt;}
.yec_c00448{bottom:335.979501pt;}
.yeb_c00448{bottom:357.009068pt;}
.yea_c00448{bottom:357.436467pt;}
.ye9_c00448{bottom:358.534608pt;}
.ye8_c00448{bottom:358.851660pt;}
.ye7_c00448{bottom:359.067775pt;}
.ye6_c00448{bottom:359.397215pt;}
.ye5_c00448{bottom:360.272272pt;}
.ye4_c00448{bottom:360.492983pt;}
.ye3_c00448{bottom:361.240535pt;}
.ye2_c00448{bottom:362.108913pt;}
.ye1_c00448{bottom:362.964512pt;}
.ye0_c00448{bottom:363.398964pt;}
.ydf_c00448{bottom:363.821504pt;}
.yde_c00448{bottom:389.412756pt;}
.ydd_c00448{bottom:390.385159pt;}
.ydc_c00448{bottom:390.804828pt;}
.ydb_c00448{bottom:391.635181pt;}
.yda_c00448{bottom:392.586733pt;}
.yd9_c00448{bottom:393.022623pt;}
.yd8_c00448{bottom:393.432169pt;}
.yd7_c00448{bottom:394.540927pt;}
.yd6_c00448{bottom:396.039713pt;}
.yd5_c00448{bottom:397.141887pt;}
.yd4_c00448{bottom:397.702335pt;}
.yd3_c00448{bottom:398.387268pt;}
.yd2_c00448{bottom:423.467356pt;}
.yd1_c00448{bottom:423.810276pt;}
.yd0_c00448{bottom:424.899900pt;}
.ycf_c00448{bottom:425.478217pt;}
.yce_c00448{bottom:425.959505pt;}
.ycd_c00448{bottom:426.668353pt;}
.ycc_c00448{bottom:427.010528pt;}
.ycb_c00448{bottom:427.605675pt;}
.yca_c00448{bottom:427.958189pt;}
.yc9_c00448{bottom:428.324919pt;}
.yc8_c00448{bottom:428.675200pt;}
.yc7_c00448{bottom:429.955441pt;}
.yc6_c00448{bottom:430.314708pt;}
.yc5_c00448{bottom:453.844965pt;}
.yc4_c00448{bottom:455.927717pt;}
.yc3_c00448{bottom:457.565885pt;}
.yc2_c00448{bottom:458.417673pt;}
.yc1_c00448{bottom:459.874429pt;}
.yc0_c00448{bottom:461.502405pt;}
.ybf_c00448{bottom:463.573929pt;}
.ybe_c00448{bottom:464.405333pt;}
.ybd_c00448{bottom:493.848233pt;}
.ybb_c00448{bottom:493.848543pt;}
.ybc_c00448{bottom:493.848815pt;}
.yba_c00448{bottom:493.849195pt;}
.yb9_c00448{bottom:517.903051pt;}
.yb8_c00448{bottom:518.383652pt;}
.yb7_c00448{bottom:519.208597pt;}
.yb6_c00448{bottom:520.626335pt;}
.yb5_c00448{bottom:521.107347pt;}
.yb4_c00448{bottom:521.815600pt;}
.yb3_c00448{bottom:522.157701pt;}
.yb2_c00448{bottom:522.877437pt;}
.yb1_c00448{bottom:523.223967pt;}
.yb0_c00448{bottom:523.584795pt;}
.yaf_c00448{bottom:523.935680pt;}
.yae_c00448{bottom:524.869708pt;}
.yad_c00448{bottom:525.340103pt;}
.yac_c00448{bottom:549.349208pt;}
.yab_c00448{bottom:550.129281pt;}
.yaa_c00448{bottom:550.500921pt;}
.ya9_c00448{bottom:551.149997pt;}
.ya8_c00448{bottom:552.425933pt;}
.ya7_c00448{bottom:553.061959pt;}
.ya6_c00448{bottom:553.585229pt;}
.ya5_c00448{bottom:554.611431pt;}
.ya4_c00448{bottom:554.838671pt;}
.ya3_c00448{bottom:555.235592pt;}
.ya2_c00448{bottom:555.506180pt;}
.ya1_c00448{bottom:556.128112pt;}
.ya0_c00448{bottom:556.517745pt;}
.y9f_c00448{bottom:557.019943pt;}
.y9e_c00448{bottom:582.914203pt;}
.y9d_c00448{bottom:583.186015pt;}
.y9c_c00448{bottom:583.392039pt;}
.y9b_c00448{bottom:583.766165pt;}
.y9a_c00448{bottom:584.016917pt;}
.y99_c00448{bottom:584.296315pt;}
.y98_c00448{bottom:584.715257pt;}
.y97_c00448{bottom:585.128771pt;}
.y96_c00448{bottom:585.325504pt;}
.y95_c00448{bottom:586.296992pt;}
.y94_c00448{bottom:586.501783pt;}
.y93_c00448{bottom:586.975493pt;}
.y92_c00448{bottom:587.261304pt;}
.y91_c00448{bottom:612.697181pt;}
.y90_c00448{bottom:613.555621pt;}
.y8f_c00448{bottom:614.115125pt;}
.y8e_c00448{bottom:614.553365pt;}
.y8d_c00448{bottom:615.208863pt;}
.y8c_c00448{bottom:615.631028pt;}
.y8b_c00448{bottom:616.281759pt;}
.y8a_c00448{bottom:616.499353pt;}
.y89_c00448{bottom:617.790724pt;}
.y88_c00448{bottom:618.012117pt;}
.y87_c00448{bottom:618.662305pt;}
.y86_c00448{bottom:619.424312pt;}
.y85_c00448{bottom:645.735072pt;}
.y84_c00448{bottom:645.973157pt;}
.y83_c00448{bottom:646.209848pt;}
.y82_c00448{bottom:646.618703pt;}
.y81_c00448{bottom:646.919071pt;}
.y80_c00448{bottom:647.322672pt;}
.y7f_c00448{bottom:647.560684pt;}
.y7e_c00448{bottom:648.036547pt;}
.y7d_c00448{bottom:648.269599pt;}
.y7c_c00448{bottom:648.507699pt;}
.y7b_c00448{bottom:648.745461pt;}
.y7a_c00448{bottom:649.291559pt;}
.y79_c00448{bottom:649.612468pt;}
.y78_c00448{bottom:650.088477pt;}
.y77_c00448{bottom:650.868200pt;}
.y76_c00448{bottom:676.303480pt;}
.y75_c00448{bottom:676.896580pt;}
.y74_c00448{bottom:678.089613pt;}
.y73_c00448{bottom:678.565052pt;}
.y72_c00448{bottom:679.625012pt;}
.y71_c00448{bottom:680.693903pt;}
.y70_c00448{bottom:681.042808pt;}
.y6f_c00448{bottom:681.293367pt;}
.y6e_c00448{bottom:682.474859pt;}
.y6d_c00448{bottom:683.038965pt;}
.y6c_c00448{bottom:683.992585pt;}
.y6b_c00448{bottom:709.942663pt;}
.y6a_c00448{bottom:710.216433pt;}
.y69_c00448{bottom:710.836941pt;}
.y68_c00448{bottom:711.556091pt;}
.y67_c00448{bottom:711.815572pt;}
.y66_c00448{bottom:712.608584pt;}
.y65_c00448{bottom:712.966824pt;}
.y64_c00448{bottom:713.763592pt;}
.y63_c00448{bottom:714.029557pt;}
.y62_c00448{bottom:714.204335pt;}
.y61_c00448{bottom:714.474584pt;}
.y60_c00448{bottom:741.953013pt;}
.y5f_c00448{bottom:742.229697pt;}
.y5e_c00448{bottom:742.781244pt;}
.y5d_c00448{bottom:742.996556pt;}
.y5c_c00448{bottom:743.201083pt;}
.y5b_c00448{bottom:743.681720pt;}
.y5a_c00448{bottom:743.893071pt;}
.y59_c00448{bottom:744.099139pt;}
.y58_c00448{bottom:744.506048pt;}
.y57_c00448{bottom:744.721331pt;}
.y56_c00448{bottom:744.928497pt;}
.y55_c00448{bottom:745.540315pt;}
.y54_c00448{bottom:745.815897pt;}
.y53_c00448{bottom:746.157312pt;}
.y52_c00448{bottom:773.513012pt;}
.y51_c00448{bottom:773.914135pt;}
.y50_c00448{bottom:774.701971pt;}
.y4f_c00448{bottom:775.329309pt;}
.y4e_c00448{bottom:775.651496pt;}
.y4d_c00448{bottom:776.520793pt;}
.y4c_c00448{bottom:777.063987pt;}
.y4b_c00448{bottom:777.538733pt;}
.y4a_c00448{bottom:777.859305pt;}
.y49_c00448{bottom:778.318133pt;}
.y48_c00448{bottom:806.175139pt;}
.y47_c00448{bottom:806.669119pt;}
.y46_c00448{bottom:806.821732pt;}
.y45_c00448{bottom:807.269148pt;}
.y44_c00448{bottom:807.563921pt;}
.y43_c00448{bottom:807.852188pt;}
.y42_c00448{bottom:808.004699pt;}
.y41_c00448{bottom:808.153539pt;}
.y40_c00448{bottom:808.256417pt;}
.y3f_c00448{bottom:808.497900pt;}
.y3e_c00448{bottom:808.642644pt;}
.y3d_c00448{bottom:809.087388pt;}
.y3c_c00448{bottom:809.277565pt;}
.y3b_c00448{bottom:837.228896pt;}
.y3a_c00448{bottom:837.469805pt;}
.y39_c00448{bottom:838.302392pt;}
.y38_c00448{bottom:838.480331pt;}
.y37_c00448{bottom:838.769828pt;}
.y36_c00448{bottom:839.429659pt;}
.y35_c00448{bottom:839.603809pt;}
.y34_c00448{bottom:839.776565pt;}
.y33_c00448{bottom:840.365644pt;}
.y32_c00448{bottom:840.543583pt;}
.y31_c00448{bottom:840.718732pt;}
.y30_c00448{bottom:869.476459pt;}
.y2f_c00448{bottom:870.223593pt;}
.y2e_c00448{bottom:870.672217pt;}
.y2d_c00448{bottom:871.533239pt;}
.y2c_c00448{bottom:872.615683pt;}
.y2b_c00448{bottom:873.484301pt;}
.y2a_c00448{bottom:874.025413pt;}
.y29_c00448{bottom:874.561333pt;}
.y28_c00448{bottom:903.981333pt;}
.y27_c00448{bottom:933.024000pt;}
.y26_c00448{bottom:933.314667pt;}
.y25_c00448{bottom:933.492000pt;}
.y24_c00448{bottom:933.974667pt;}
.y23_c00448{bottom:934.389333pt;}
.y22_c00448{bottom:934.620000pt;}
.y21_c00448{bottom:935.036000pt;}
.y20_c00448{bottom:935.210667pt;}
.y1f_c00448{bottom:935.688000pt;}
.y1e_c00448{bottom:936.273333pt;}
.y1d_c00448{bottom:936.720000pt;}
.y1c_c00448{bottom:964.096000pt;}
.y1b_c00448{bottom:964.366667pt;}
.y1a_c00448{bottom:964.642667pt;}
.y19_c00448{bottom:965.074667pt;}
.y18_c00448{bottom:965.349333pt;}
.y17_c00448{bottom:965.538667pt;}
.y16_c00448{bottom:966.060000pt;}
.y15_c00448{bottom:966.865333pt;}
.y14_c00448{bottom:967.044000pt;}
.y13_c00448{bottom:967.656000pt;}
.y12_c00448{bottom:968.012000pt;}
.y11_c00448{bottom:968.277333pt;}
.y10_c00448{bottom:968.536000pt;}
.yf_c00448{bottom:969.598667pt;}
.ye_c00448{bottom:996.508000pt;}
.yd_c00448{bottom:996.773333pt;}
.yc_c00448{bottom:997.486667pt;}
.yb_c00448{bottom:998.020000pt;}
.ya_c00448{bottom:998.381333pt;}
.y9_c00448{bottom:999.356000pt;}
.y8_c00448{bottom:1000.064000pt;}
.y7_c00448{bottom:1000.425333pt;}
.y6_c00448{bottom:1000.686667pt;}
.y5_c00448{bottom:1001.313333pt;}
.y4_c00448{bottom:1001.570667pt;}
.y3_c00448{bottom:1002.000000pt;}
.y2_c00448{bottom:1028.780000pt;}
.y1_c00448{bottom:1081.537333pt;}
.h2_c00448{height:42.666667pt;}
.h4_c00448{height:58.666667pt;}
.h6_c00448{height:58.670216pt;}
.h3_c00448{height:64.000000pt;}
.h7_c00448{height:64.003872pt;}
.hd_c00448{height:64.014110pt;}
.h8_c00448{height:69.337528pt;}
.h10_c00448{height:69.348620pt;}
.h5_c00448{height:74.666667pt;}
.h9_c00448{height:74.671184pt;}
.he_c00448{height:74.683129pt;}
.hc_c00448{height:80.017638pt;}
.hb_c00448{height:85.338496pt;}
.ha_c00448{height:90.672152pt;}
.hf_c00448{height:90.686656pt;}
.h0_c00448{height:1112.400000pt;}
.h1_c00448{height:1112.666667pt;}
.w0_c00448{width:813.333333pt;}
.x0_c00448{left:0.000000pt;}
.x22_c00448{left:116.760000pt;}
.xaf_c00448{left:118.906429pt;}
.x62_c00448{left:119.884335pt;}
.x4e_c00448{left:120.844544pt;}
.x1a_c00448{left:122.534667pt;}
.x5_c00448{left:124.800000pt;}
.xb9_c00448{left:148.152251pt;}
.x85_c00448{left:149.516087pt;}
.x34_c00448{left:151.356160pt;}
.x98_c00448{left:158.257604pt;}
.x76_c00448{left:159.430564pt;}
.x3a_c00448{left:160.725984pt;}
.x2a_c00448{left:161.998667pt;}
.x91_c00448{left:168.091325pt;}
.x45_c00448{left:171.015327pt;}
.x6_c00448{left:172.560000pt;}
.xa6_c00448{left:178.399419pt;}
.x40_c00448{left:179.907504pt;}
.x35_c00448{left:181.109803pt;}
.xa1_c00448{left:188.182752pt;}
.x63_c00448{left:189.157668pt;}
.x23_c00448{left:191.198667pt;}
.x99_c00448{left:197.811253pt;}
.x12_c00448{left:200.282667pt;}
.x7_c00448{left:201.600000pt;}
.xa7_c00448{left:206.417613pt;}
.x92_c00448{left:208.118539pt;}
.x46_c00448{left:210.373057pt;}
.xba_c00448{left:217.486443pt;}
.x5a_c00448{left:218.521533pt;}
.x2f_c00448{left:220.428000pt;}
.xab_c00448{left:226.107444pt;}
.xb5_c00448{left:227.216443pt;}
.x6c_c00448{left:228.371356pt;}
.x77_c00448{left:237.207515pt;}
.x1b_c00448{left:240.598667pt;}
.x52_c00448{left:247.513248pt;}
.x2b_c00448{left:248.878667pt;}
.x3b_c00448{left:249.769199pt;}
.x8a_c00448{left:256.421739pt;}
.x6d_c00448{left:257.656647pt;}
.x8_c00448{left:261.120000pt;}
.x7e_c00448{left:266.925351pt;}
.x64_c00448{left:268.392335pt;}
.x13_c00448{left:269.873333pt;}
.x9a_c00448{left:275.586244pt;}
.x5b_c00448{left:278.039499pt;}
.x36_c00448{left:279.273867pt;}
.x8b_c00448{left:285.615255pt;}
.x93_c00448{left:286.836769pt;}
.x24_c00448{left:288.648000pt;}
.x47_c00448{left:297.754233pt;}
.x14_c00448{left:298.906667pt;}
.xa8_c00448{left:303.841877pt;}
.xc0_c00448{left:305.058636pt;}
.x78_c00448{left:306.062004pt;}
.x2c_c00448{left:308.878667pt;}
.x9_c00448{left:309.840000pt;}
.xa2_c00448{left:314.658697pt;}
.x8c_c00448{left:316.163689pt;}
.x30_c00448{left:318.340000pt;}
.xc1_c00448{left:324.743316pt;}
.x7f_c00448{left:325.775357pt;}
.x3c_c00448{left:327.067636pt;}
.x4f_c00448{left:328.182439pt;}
.xbd_c00448{left:334.442821pt;}
.x1_c00448{left:337.200000pt;}
.x15_c00448{left:338.996000pt;}
.xa9_c00448{left:343.957584pt;}
.xac_c00448{left:344.856603pt;}
.x53_c00448{left:345.950829pt;}
.x41_c00448{left:347.171685pt;}
.x2d_c00448{left:348.478667pt;}
.x9b_c00448{left:354.541487pt;}
.x86_c00448{left:355.922667pt;}
.x48_c00448{left:357.979540pt;}
.xbe_c00448{left:363.493412pt;}
.xbb_c00448{left:364.389392pt;}
.x54_c00448{left:366.789261pt;}
.x25_c00448{left:368.313333pt;}
.x2_c00448{left:371.280000pt;}
.xad_c00448{left:373.881219pt;}
.x3d_c00448{left:377.469632pt;}
.xb0_c00448{left:383.642865pt;}
.x79_c00448{left:385.048273pt;}
.x5c_c00448{left:386.316396pt;}
.x3_c00448{left:387.840000pt;}
.x94_c00448{left:393.905839pt;}
.x55_c00448{left:395.840939pt;}
.xa_c00448{left:397.200000pt;}
.xb1_c00448{left:403.292836pt;}
.x65_c00448{left:405.571001pt;}
.x4_c00448{left:407.280000pt;}
.xb6_c00448{left:412.946072pt;}
.x80_c00448{left:414.305056pt;}
.x49_c00448{left:416.064759pt;}
.x16_c00448{left:417.712000pt;}
.x9c_c00448{left:422.534433pt;}
.x6e_c00448{left:424.471980pt;}
.x1c_c00448{left:426.348000pt;}
.xc3_c00448{left:432.294881pt;}
.x87_c00448{left:433.445333pt;}
.x9d_c00448{left:442.635995pt;}
.x4a_c00448{left:445.587397pt;}
.x37_c00448{left:447.047092pt;}
.xbc_c00448{left:452.262300pt;}
.x42_c00448{left:455.899279pt;}
.x66_c00448{left:464.728335pt;}
.xb_c00448{left:466.320000pt;}
.xbf_c00448{left:472.260425pt;}
.x81_c00448{left:473.357744pt;}
.x5d_c00448{left:474.887315pt;}
.x4b_c00448{left:475.832732pt;}
.xc4_c00448{left:481.052005pt;}
.x6f_c00448{left:483.521243pt;}
.x56_c00448{left:484.890623pt;}
.x31_c00448{left:495.709333pt;}
.xa3_c00448{left:502.187795pt;}
.x67_c00448{left:503.107001pt;}
.x26_c00448{left:505.120000pt;}
.xc2_c00448{left:511.505636pt;}
.x82_c00448{left:513.449304pt;}
.x1d_c00448{left:515.873333pt;}
.xb7_c00448{left:521.297907pt;}
.x8d_c00448{left:522.868083pt;}
.x38_c00448{left:525.060723pt;}
.x17_c00448{left:525.958667pt;}
.xc5_c00448{left:526.910155pt;}
.x5e_c00448{left:534.391947pt;}
.xc_c00448{left:536.640000pt;}
.xa4_c00448{left:542.232488pt;}
.x70_c00448{left:543.306535pt;}
.x4c_c00448{left:544.499753pt;}
.x9e_c00448{left:552.142983pt;}
.x68_c00448{left:562.697668pt;}
.x5f_c00448{left:564.151596pt;}
.xd_c00448{left:565.680000pt;}
.x8e_c00448{left:571.114544pt;}
.x7a_c00448{left:572.489500pt;}
.x1e_c00448{left:573.741333pt;}
.x43_c00448{left:574.708543pt;}
.x71_c00448{left:583.132280pt;}
.x50_c00448{left:593.898943pt;}
.x1f_c00448{left:594.840000pt;}
.xe_c00448{left:596.160000pt;}
.x9f_c00448{left:600.653175pt;}
.x95_c00448{left:601.575053pt;}
.x69_c00448{left:602.537668pt;}
.x4d_c00448{left:604.487727pt;}
.x57_c00448{left:612.834548pt;}
.x32_c00448{left:614.768000pt;}
.x2e_c00448{left:616.078667pt;}
.x72_c00448{left:618.899183pt;}
.x88_c00448{left:621.384000pt;}
.x7b_c00448{left:622.404400pt;}
.x51_c00448{left:624.363617pt;}
.x18_c00448{left:625.324000pt;}
.xaa_c00448{left:630.611009pt;}
.x83_c00448{left:631.545332pt;}
.xf_c00448{left:635.520000pt;}
.xb2_c00448{left:639.832540pt;}
.x3e_c00448{left:644.600595pt;}
.x7c_c00448{left:650.977103pt;}
.x60_c00448{left:652.030485pt;}
.x6a_c00448{left:653.401668pt;}
.x27_c00448{left:654.644000pt;}
.xb3_c00448{left:659.741205pt;}
.x96_c00448{left:660.870428pt;}
.x8f_c00448{left:661.875680pt;}
.x39_c00448{left:663.788349pt;}
.xae_c00448{left:670.651463pt;}
.x73_c00448{left:672.428211pt;}
.x20_c00448{left:673.344000pt;}
.xa5_c00448{left:681.049497pt;}
.x33_c00448{left:682.689333pt;}
.x28_c00448{left:684.165333pt;}
.x90_c00448{left:690.401056pt;}
.x84_c00448{left:700.236569pt;}
.x74_c00448{left:701.946849pt;}
.x61_c00448{left:703.140172pt;}
.x21_c00448{left:704.042667pt;}
.x10_c00448{left:705.360000pt;}
.x7d_c00448{left:710.982449pt;}
.x58_c00448{left:712.200115pt;}
.x89_c00448{left:720.562667pt;}
.x44_c00448{left:723.285441pt;}
.x6b_c00448{left:731.441668pt;}
.x29_c00448{left:732.665333pt;}
.x19_c00448{left:734.050667pt;}
.x11_c00448{left:735.600000pt;}
.xa0_c00448{left:739.422323pt;}
.x75_c00448{left:740.840565pt;}
.x3f_c00448{left:743.453788pt;}
.xb4_c00448{left:750.020353pt;}
.x97_c00448{left:760.317044pt;}
.x59_c00448{left:761.632905pt;}
.xb8_c00448{left:769.336949pt;}
}





/* 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_c00449 {
    display:none;
  }
  .loading-indicator_c00449.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00449 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_c00449 { 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_c00449" -> "#page-container .classname_c00449")
 */
.pf_c00449 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00449 { /* 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_c00449.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00449 { /* 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_c00449 { /* 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_c00449 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00449 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00449 {overflow:visible;}
  }
}
.c_c00449 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00449 { /* 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_c00449:after { /* webkit #35443 */
  content: '';
}
.t_c00449:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00449 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 */
}
.__c00449 { /* 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_c00449 { /* info for Javascript */
  display:none;
}
.l_c00449 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00449 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00449 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00449: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_c00449 {
    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_c00449.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00449.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_c00449 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00449{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00449;src:url('chunks/assets/font_7c6b9abe6ee2a268480c528b.woff2')format("woff");}.ff1_c00449{font-family:ff1_c00449;line-height:1.000000;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;}
.m38_c00449{transform:matrix(0.156092,-0.002654,0.004249,0.249964,0,0);-ms-transform:matrix(0.156092,-0.002654,0.004249,0.249964,0,0);-webkit-transform:matrix(0.156092,-0.002654,0.004249,0.249964,0,0);}
.m37_c00449{transform:matrix(0.165491,-0.002813,0.004249,0.249964,0,0);-ms-transform:matrix(0.165491,-0.002813,0.004249,0.249964,0,0);-webkit-transform:matrix(0.165491,-0.002813,0.004249,0.249964,0,0);}
.m3a_c00449{transform:matrix(0.168506,-0.002865,0.004249,0.249964,0,0);-ms-transform:matrix(0.168506,-0.002865,0.004249,0.249964,0,0);-webkit-transform:matrix(0.168506,-0.002865,0.004249,0.249964,0,0);}
.m3c_c00449{transform:matrix(0.173050,-0.002942,0.004249,0.249964,0,0);-ms-transform:matrix(0.173050,-0.002942,0.004249,0.249964,0,0);-webkit-transform:matrix(0.173050,-0.002942,0.004249,0.249964,0,0);}
.m3b_c00449{transform:matrix(0.174610,-0.002968,0.004249,0.249964,0,0);-ms-transform:matrix(0.174610,-0.002968,0.004249,0.249964,0,0);-webkit-transform:matrix(0.174610,-0.002968,0.004249,0.249964,0,0);}
.m44_c00449{transform:matrix(0.181640,-0.003814,0.005249,0.249945,0,0);-ms-transform:matrix(0.181640,-0.003814,0.005249,0.249945,0,0);-webkit-transform:matrix(0.181640,-0.003814,0.005249,0.249945,0,0);}
.m4b_c00449{transform:matrix(0.185109,-0.003887,0.005249,0.249945,0,0);-ms-transform:matrix(0.185109,-0.003887,0.005249,0.249945,0,0);-webkit-transform:matrix(0.185109,-0.003887,0.005249,0.249945,0,0);}
.m56_c00449{transform:matrix(0.186339,-0.003913,0.005249,0.249945,0,0);-ms-transform:matrix(0.186339,-0.003913,0.005249,0.249945,0,0);-webkit-transform:matrix(0.186339,-0.003913,0.005249,0.249945,0,0);}
.m41_c00449{transform:matrix(0.186779,-0.003922,0.005249,0.249945,0,0);-ms-transform:matrix(0.186779,-0.003922,0.005249,0.249945,0,0);-webkit-transform:matrix(0.186779,-0.003922,0.005249,0.249945,0,0);}
.m58_c00449{transform:matrix(0.186999,-0.003927,0.005249,0.249945,0,0);-ms-transform:matrix(0.186999,-0.003927,0.005249,0.249945,0,0);-webkit-transform:matrix(0.186999,-0.003927,0.005249,0.249945,0,0);}
.m28_c00449{transform:matrix(0.187886,-0.003570,0.004749,0.249955,0,0);-ms-transform:matrix(0.187886,-0.003570,0.004749,0.249955,0,0);-webkit-transform:matrix(0.187886,-0.003570,0.004749,0.249955,0,0);}
.m39_c00449{transform:matrix(0.189108,-0.003215,0.004249,0.249964,0,0);-ms-transform:matrix(0.189108,-0.003215,0.004249,0.249964,0,0);-webkit-transform:matrix(0.189108,-0.003215,0.004249,0.249964,0,0);}
.m35_c00449{transform:matrix(0.189668,-0.003224,0.004249,0.249964,0,0);-ms-transform:matrix(0.189668,-0.003224,0.004249,0.249964,0,0);-webkit-transform:matrix(0.189668,-0.003224,0.004249,0.249964,0,0);}
.m54_c00449{transform:matrix(0.193627,-0.004066,0.005249,0.249945,0,0);-ms-transform:matrix(0.193627,-0.004066,0.005249,0.249945,0,0);-webkit-transform:matrix(0.193627,-0.004066,0.005249,0.249945,0,0);}
.m5_c00449{transform:matrix(0.196692,-0.004131,0.005249,0.249945,0,0);-ms-transform:matrix(0.196692,-0.004131,0.005249,0.249945,0,0);-webkit-transform:matrix(0.196692,-0.004131,0.005249,0.249945,0,0);}
.m45_c00449{transform:matrix(0.198366,-0.004166,0.005249,0.249945,0,0);-ms-transform:matrix(0.198366,-0.004166,0.005249,0.249945,0,0);-webkit-transform:matrix(0.198366,-0.004166,0.005249,0.249945,0,0);}
.m55_c00449{transform:matrix(0.199216,-0.004184,0.005249,0.249945,0,0);-ms-transform:matrix(0.199216,-0.004184,0.005249,0.249945,0,0);-webkit-transform:matrix(0.199216,-0.004184,0.005249,0.249945,0,0);}
.m1_c00449{transform:matrix(0.200836,-0.004218,0.005249,0.249945,0,0);-ms-transform:matrix(0.200836,-0.004218,0.005249,0.249945,0,0);-webkit-transform:matrix(0.200836,-0.004218,0.005249,0.249945,0,0);}
.m4_c00449{transform:matrix(0.205590,-0.004317,0.005249,0.249945,0,0);-ms-transform:matrix(0.205590,-0.004317,0.005249,0.249945,0,0);-webkit-transform:matrix(0.205590,-0.004317,0.005249,0.249945,0,0);}
.m4d_c00449{transform:matrix(0.206594,-0.004338,0.005249,0.249945,0,0);-ms-transform:matrix(0.206594,-0.004338,0.005249,0.249945,0,0);-webkit-transform:matrix(0.206594,-0.004338,0.005249,0.249945,0,0);}
.m3e_c00449{transform:matrix(0.210130,-0.003572,0.004249,0.249964,0,0);-ms-transform:matrix(0.210130,-0.003572,0.004249,0.249964,0,0);-webkit-transform:matrix(0.210130,-0.003572,0.004249,0.249964,0,0);}
.m42_c00449{transform:matrix(0.210894,-0.004429,0.005249,0.249945,0,0);-ms-transform:matrix(0.210894,-0.004429,0.005249,0.249945,0,0);-webkit-transform:matrix(0.210894,-0.004429,0.005249,0.249945,0,0);}
.m3_c00449{transform:matrix(0.213093,-0.004475,0.005249,0.249945,0,0);-ms-transform:matrix(0.213093,-0.004475,0.005249,0.249945,0,0);-webkit-transform:matrix(0.213093,-0.004475,0.005249,0.249945,0,0);}
.m4e_c00449{transform:matrix(0.214038,-0.004495,0.005249,0.249945,0,0);-ms-transform:matrix(0.214038,-0.004495,0.005249,0.249945,0,0);-webkit-transform:matrix(0.214038,-0.004495,0.005249,0.249945,0,0);}
.mf_c00449{transform:matrix(0.224614,-0.004268,0.004749,0.249955,0,0);-ms-transform:matrix(0.224614,-0.004268,0.004749,0.249955,0,0);-webkit-transform:matrix(0.224614,-0.004268,0.004749,0.249955,0,0);}
.m2d_c00449{transform:matrix(0.225974,-0.004294,0.004749,0.249955,0,0);-ms-transform:matrix(0.225974,-0.004294,0.004749,0.249955,0,0);-webkit-transform:matrix(0.225974,-0.004294,0.004749,0.249955,0,0);}
.m33_c00449{transform:matrix(0.229072,-0.003894,0.004249,0.249964,0,0);-ms-transform:matrix(0.229072,-0.003894,0.004249,0.249964,0,0);-webkit-transform:matrix(0.229072,-0.003894,0.004249,0.249964,0,0);}
.m4c_c00449{transform:matrix(0.229194,-0.004813,0.005249,0.249945,0,0);-ms-transform:matrix(0.229194,-0.004813,0.005249,0.249945,0,0);-webkit-transform:matrix(0.229194,-0.004813,0.005249,0.249945,0,0);}
.m49_c00449{transform:matrix(0.230659,-0.004844,0.005249,0.249945,0,0);-ms-transform:matrix(0.230659,-0.004844,0.005249,0.249945,0,0);-webkit-transform:matrix(0.230659,-0.004844,0.005249,0.249945,0,0);}
.m2_c00449{transform:matrix(0.230754,-0.004846,0.005249,0.249945,0,0);-ms-transform:matrix(0.230754,-0.004846,0.005249,0.249945,0,0);-webkit-transform:matrix(0.230754,-0.004846,0.005249,0.249945,0,0);}
.m6_c00449{transform:matrix(0.231569,-0.004863,0.005249,0.249945,0,0);-ms-transform:matrix(0.231569,-0.004863,0.005249,0.249945,0,0);-webkit-transform:matrix(0.231569,-0.004863,0.005249,0.249945,0,0);}
.m43_c00449{transform:matrix(0.232479,-0.004882,0.005249,0.249945,0,0);-ms-transform:matrix(0.232479,-0.004882,0.005249,0.249945,0,0);-webkit-transform:matrix(0.232479,-0.004882,0.005249,0.249945,0,0);}
.ma_c00449{transform:matrix(0.232629,-0.004885,0.005249,0.249945,0,0);-ms-transform:matrix(0.232629,-0.004885,0.005249,0.249945,0,0);-webkit-transform:matrix(0.232629,-0.004885,0.005249,0.249945,0,0);}
.m50_c00449{transform:matrix(0.235413,-0.004944,0.005249,0.249945,0,0);-ms-transform:matrix(0.235413,-0.004944,0.005249,0.249945,0,0);-webkit-transform:matrix(0.235413,-0.004944,0.005249,0.249945,0,0);}
.m3d_c00449{transform:matrix(0.236896,-0.004027,0.004249,0.249964,0,0);-ms-transform:matrix(0.236896,-0.004027,0.004249,0.249964,0,0);-webkit-transform:matrix(0.236896,-0.004027,0.004249,0.249964,0,0);}
.m4a_c00449{transform:matrix(0.237303,-0.004983,0.005249,0.249945,0,0);-ms-transform:matrix(0.237303,-0.004983,0.005249,0.249945,0,0);-webkit-transform:matrix(0.237303,-0.004983,0.005249,0.249945,0,0);}
.m57_c00449{transform:matrix(0.238352,-0.005005,0.005249,0.249945,0,0);-ms-transform:matrix(0.238352,-0.005005,0.005249,0.249945,0,0);-webkit-transform:matrix(0.238352,-0.005005,0.005249,0.249945,0,0);}
.m2f_c00449{transform:matrix(0.238557,-0.004533,0.004749,0.249955,0,0);-ms-transform:matrix(0.238557,-0.004533,0.004749,0.249955,0,0);-webkit-transform:matrix(0.238557,-0.004533,0.004749,0.249955,0,0);}
.m46_c00449{transform:matrix(0.240122,-0.005043,0.005249,0.249945,0,0);-ms-transform:matrix(0.240122,-0.005043,0.005249,0.249945,0,0);-webkit-transform:matrix(0.240122,-0.005043,0.005249,0.249945,0,0);}
.m3f_c00449{transform:matrix(0.241437,-0.005070,0.005249,0.249945,0,0);-ms-transform:matrix(0.241437,-0.005070,0.005249,0.249945,0,0);-webkit-transform:matrix(0.241437,-0.005070,0.005249,0.249945,0,0);}
.m4f_c00449{transform:matrix(0.242022,-0.005082,0.005249,0.249945,0,0);-ms-transform:matrix(0.242022,-0.005082,0.005249,0.249945,0,0);-webkit-transform:matrix(0.242022,-0.005082,0.005249,0.249945,0,0);}
.m7_c00449{transform:matrix(0.243346,-0.005110,0.005249,0.249945,0,0);-ms-transform:matrix(0.243346,-0.005110,0.005249,0.249945,0,0);-webkit-transform:matrix(0.243346,-0.005110,0.005249,0.249945,0,0);}
.m5a_c00449{transform:matrix(0.243646,-0.005117,0.005249,0.249945,0,0);-ms-transform:matrix(0.243646,-0.005117,0.005249,0.249945,0,0);-webkit-transform:matrix(0.243646,-0.005117,0.005249,0.249945,0,0);}
.m40_c00449{transform:matrix(0.244746,-0.005140,0.005249,0.249945,0,0);-ms-transform:matrix(0.244746,-0.005140,0.005249,0.249945,0,0);-webkit-transform:matrix(0.244746,-0.005140,0.005249,0.249945,0,0);}
.m11_c00449{transform:matrix(0.246311,-0.004680,0.004749,0.249955,0,0);-ms-transform:matrix(0.246311,-0.004680,0.004749,0.249955,0,0);-webkit-transform:matrix(0.246311,-0.004680,0.004749,0.249955,0,0);}
.m12_c00449{transform:matrix(0.248130,-0.004714,0.004749,0.249955,0,0);-ms-transform:matrix(0.248130,-0.004714,0.004749,0.249955,0,0);-webkit-transform:matrix(0.248130,-0.004714,0.004749,0.249955,0,0);}
.m5c_c00449{transform:matrix(0.249835,-0.005247,0.005249,0.249945,0,0);-ms-transform:matrix(0.249835,-0.005247,0.005249,0.249945,0,0);-webkit-transform:matrix(0.249835,-0.005247,0.005249,0.249945,0,0);}
.m2e_c00449{transform:matrix(0.251425,-0.004777,0.004749,0.249955,0,0);-ms-transform:matrix(0.251425,-0.004777,0.004749,0.249955,0,0);-webkit-transform:matrix(0.251425,-0.004777,0.004749,0.249955,0,0);}
.m5b_c00449{transform:matrix(0.251739,-0.005287,0.005249,0.249945,0,0);-ms-transform:matrix(0.251739,-0.005287,0.005249,0.249945,0,0);-webkit-transform:matrix(0.251739,-0.005287,0.005249,0.249945,0,0);}
.m10_c00449{transform:matrix(0.254969,-0.004844,0.004749,0.249955,0,0);-ms-transform:matrix(0.254969,-0.004844,0.004749,0.249955,0,0);-webkit-transform:matrix(0.254969,-0.004844,0.004749,0.249955,0,0);}
.m25_c00449{transform:matrix(0.258878,-0.004919,0.004749,0.249955,0,0);-ms-transform:matrix(0.258878,-0.004919,0.004749,0.249955,0,0);-webkit-transform:matrix(0.258878,-0.004919,0.004749,0.249955,0,0);}
.m59_c00449{transform:matrix(0.260218,-0.005465,0.005249,0.249945,0,0);-ms-transform:matrix(0.260218,-0.005465,0.005249,0.249945,0,0);-webkit-transform:matrix(0.260218,-0.005465,0.005249,0.249945,0,0);}
.m13_c00449{transform:matrix(0.261013,-0.004959,0.004749,0.249955,0,0);-ms-transform:matrix(0.261013,-0.004959,0.004749,0.249955,0,0);-webkit-transform:matrix(0.261013,-0.004959,0.004749,0.249955,0,0);}
.m8_c00449{transform:matrix(0.265097,-0.005567,0.005249,0.249945,0,0);-ms-transform:matrix(0.265097,-0.005567,0.005249,0.249945,0,0);-webkit-transform:matrix(0.265097,-0.005567,0.005249,0.249945,0,0);}
.m1a_c00449{transform:matrix(0.266502,-0.005064,0.004749,0.249955,0,0);-ms-transform:matrix(0.266502,-0.005064,0.004749,0.249955,0,0);-webkit-transform:matrix(0.266502,-0.005064,0.004749,0.249955,0,0);}
.m15_c00449{transform:matrix(0.266767,-0.005069,0.004749,0.249955,0,0);-ms-transform:matrix(0.266767,-0.005069,0.004749,0.249955,0,0);-webkit-transform:matrix(0.266767,-0.005069,0.004749,0.249955,0,0);}
.m14_c00449{transform:matrix(0.270246,-0.005135,0.004749,0.249955,0,0);-ms-transform:matrix(0.270246,-0.005135,0.004749,0.249955,0,0);-webkit-transform:matrix(0.270246,-0.005135,0.004749,0.249955,0,0);}
.m30_c00449{transform:matrix(0.273146,-0.005190,0.004749,0.249955,0,0);-ms-transform:matrix(0.273146,-0.005190,0.004749,0.249955,0,0);-webkit-transform:matrix(0.273146,-0.005190,0.004749,0.249955,0,0);}
.m32_c00449{transform:matrix(0.275845,-0.005241,0.004749,0.249955,0,0);-ms-transform:matrix(0.275845,-0.005241,0.004749,0.249955,0,0);-webkit-transform:matrix(0.275845,-0.005241,0.004749,0.249955,0,0);}
.m18_c00449{transform:matrix(0.279889,-0.005318,0.004749,0.249955,0,0);-ms-transform:matrix(0.279889,-0.005318,0.004749,0.249955,0,0);-webkit-transform:matrix(0.279889,-0.005318,0.004749,0.249955,0,0);}
.mb_c00449{transform:matrix(0.283288,-0.005949,0.005249,0.249945,0,0);-ms-transform:matrix(0.283288,-0.005949,0.005249,0.249945,0,0);-webkit-transform:matrix(0.283288,-0.005949,0.005249,0.249945,0,0);}
.md_c00449{transform:matrix(0.289866,-0.006087,0.005249,0.249945,0,0);-ms-transform:matrix(0.289866,-0.006087,0.005249,0.249945,0,0);-webkit-transform:matrix(0.289866,-0.006087,0.005249,0.249945,0,0);}
.m29_c00449{transform:matrix(0.290103,-0.005512,0.004749,0.249955,0,0);-ms-transform:matrix(0.290103,-0.005512,0.004749,0.249955,0,0);-webkit-transform:matrix(0.290103,-0.005512,0.004749,0.249955,0,0);}
.m27_c00449{transform:matrix(0.294177,-0.005589,0.004749,0.249955,0,0);-ms-transform:matrix(0.294177,-0.005589,0.004749,0.249955,0,0);-webkit-transform:matrix(0.294177,-0.005589,0.004749,0.249955,0,0);}
.m26_c00449{transform:matrix(0.297391,-0.005650,0.004749,0.249955,0,0);-ms-transform:matrix(0.297391,-0.005650,0.004749,0.249955,0,0);-webkit-transform:matrix(0.297391,-0.005650,0.004749,0.249955,0,0);}
.m1c_c00449{transform:matrix(0.298211,-0.005666,0.004749,0.249955,0,0);-ms-transform:matrix(0.298211,-0.005666,0.004749,0.249955,0,0);-webkit-transform:matrix(0.298211,-0.005666,0.004749,0.249955,0,0);}
.mc_c00449{transform:matrix(0.299604,-0.006292,0.005249,0.249945,0,0);-ms-transform:matrix(0.299604,-0.006292,0.005249,0.249945,0,0);-webkit-transform:matrix(0.299604,-0.006292,0.005249,0.249945,0,0);}
.m2b_c00449{transform:matrix(0.311039,-0.005910,0.004749,0.249955,0,0);-ms-transform:matrix(0.311039,-0.005910,0.004749,0.249955,0,0);-webkit-transform:matrix(0.311039,-0.005910,0.004749,0.249955,0,0);}
.m22_c00449{transform:matrix(0.314198,-0.005970,0.004749,0.249955,0,0);-ms-transform:matrix(0.314198,-0.005970,0.004749,0.249955,0,0);-webkit-transform:matrix(0.314198,-0.005970,0.004749,0.249955,0,0);}
.m24_c00449{transform:matrix(0.316233,-0.006008,0.004749,0.249955,0,0);-ms-transform:matrix(0.316233,-0.006008,0.004749,0.249955,0,0);-webkit-transform:matrix(0.316233,-0.006008,0.004749,0.249955,0,0);}
.m2a_c00449{transform:matrix(0.316453,-0.006013,0.004749,0.249955,0,0);-ms-transform:matrix(0.316453,-0.006013,0.004749,0.249955,0,0);-webkit-transform:matrix(0.316453,-0.006013,0.004749,0.249955,0,0);}
.m48_c00449{transform:matrix(0.319814,-0.006716,0.005249,0.249945,0,0);-ms-transform:matrix(0.319814,-0.006716,0.005249,0.249945,0,0);-webkit-transform:matrix(0.319814,-0.006716,0.005249,0.249945,0,0);}
.m52_c00449{transform:matrix(0.329997,-0.006930,0.005249,0.249945,0,0);-ms-transform:matrix(0.329997,-0.006930,0.005249,0.249945,0,0);-webkit-transform:matrix(0.329997,-0.006930,0.005249,0.249945,0,0);}
.m5d_c00449{transform:matrix(0.330667,-0.006944,0.005249,0.249945,0,0);-ms-transform:matrix(0.330667,-0.006944,0.005249,0.249945,0,0);-webkit-transform:matrix(0.330667,-0.006944,0.005249,0.249945,0,0);}
.m36_c00449{transform:matrix(0.336876,-0.005727,0.004249,0.249964,0,0);-ms-transform:matrix(0.336876,-0.005727,0.004249,0.249964,0,0);-webkit-transform:matrix(0.336876,-0.005727,0.004249,0.249964,0,0);}
.m16_c00449{transform:matrix(0.340619,-0.006472,0.004749,0.249955,0,0);-ms-transform:matrix(0.340619,-0.006472,0.004749,0.249955,0,0);-webkit-transform:matrix(0.340619,-0.006472,0.004749,0.249955,0,0);}
.m0_c00449{transform:matrix(0.341610,-0.007174,0.005249,0.249945,0,0);-ms-transform:matrix(0.341610,-0.007174,0.005249,0.249945,0,0);-webkit-transform:matrix(0.341610,-0.007174,0.005249,0.249945,0,0);}
.me_c00449{transform:matrix(0.346427,-0.006582,0.004749,0.249955,0,0);-ms-transform:matrix(0.346427,-0.006582,0.004749,0.249955,0,0);-webkit-transform:matrix(0.346427,-0.006582,0.004749,0.249955,0,0);}
.m51_c00449{transform:matrix(0.347678,-0.007301,0.005249,0.249945,0,0);-ms-transform:matrix(0.347678,-0.007301,0.005249,0.249945,0,0);-webkit-transform:matrix(0.347678,-0.007301,0.005249,0.249945,0,0);}
.m17_c00449{transform:matrix(0.350602,-0.006661,0.004749,0.249955,0,0);-ms-transform:matrix(0.350602,-0.006661,0.004749,0.249955,0,0);-webkit-transform:matrix(0.350602,-0.006661,0.004749,0.249955,0,0);}
.m20_c00449{transform:matrix(0.356241,-0.006769,0.004749,0.249955,0,0);-ms-transform:matrix(0.356241,-0.006769,0.004749,0.249955,0,0);-webkit-transform:matrix(0.356241,-0.006769,0.004749,0.249955,0,0);}
.m2c_c00449{transform:matrix(0.360685,-0.006853,0.004749,0.249955,0,0);-ms-transform:matrix(0.360685,-0.006853,0.004749,0.249955,0,0);-webkit-transform:matrix(0.360685,-0.006853,0.004749,0.249955,0,0);}
.m19_c00449{transform:matrix(0.368773,-0.007007,0.004749,0.249955,0,0);-ms-transform:matrix(0.368773,-0.007007,0.004749,0.249955,0,0);-webkit-transform:matrix(0.368773,-0.007007,0.004749,0.249955,0,0);}
.m1f_c00449{transform:matrix(0.392614,-0.007460,0.004749,0.249955,0,0);-ms-transform:matrix(0.392614,-0.007460,0.004749,0.249955,0,0);-webkit-transform:matrix(0.392614,-0.007460,0.004749,0.249955,0,0);}
.m9_c00449{transform:matrix(0.398332,-0.008365,0.005249,0.249945,0,0);-ms-transform:matrix(0.398332,-0.008365,0.005249,0.249945,0,0);-webkit-transform:matrix(0.398332,-0.008365,0.005249,0.249945,0,0);}
.m53_c00449{transform:matrix(0.404056,-0.008485,0.005249,0.249945,0,0);-ms-transform:matrix(0.404056,-0.008485,0.005249,0.249945,0,0);-webkit-transform:matrix(0.404056,-0.008485,0.005249,0.249945,0,0);}
.m34_c00449{transform:matrix(0.433602,-0.007371,0.004249,0.249964,0,0);-ms-transform:matrix(0.433602,-0.007371,0.004249,0.249964,0,0);-webkit-transform:matrix(0.433602,-0.007371,0.004249,0.249964,0,0);}
.m47_c00449{transform:matrix(0.437034,-0.009178,0.005249,0.249945,0,0);-ms-transform:matrix(0.437034,-0.009178,0.005249,0.249945,0,0);-webkit-transform:matrix(0.437034,-0.009178,0.005249,0.249945,0,0);}
.m31_c00449{transform:matrix(0.447094,-0.008495,0.004749,0.249955,0,0);-ms-transform:matrix(0.447094,-0.008495,0.004749,0.249955,0,0);-webkit-transform:matrix(0.447094,-0.008495,0.004749,0.249955,0,0);}
.m1e_c00449{transform:matrix(0.489372,-0.009298,0.004749,0.249955,0,0);-ms-transform:matrix(0.489372,-0.009298,0.004749,0.249955,0,0);-webkit-transform:matrix(0.489372,-0.009298,0.004749,0.249955,0,0);}
.m1d_c00449{transform:matrix(0.565638,-0.010747,0.004749,0.249955,0,0);-ms-transform:matrix(0.565638,-0.010747,0.004749,0.249955,0,0);-webkit-transform:matrix(0.565638,-0.010747,0.004749,0.249955,0,0);}
.m1b_c00449{transform:matrix(0.662395,-0.012586,0.004749,0.249955,0,0);-ms-transform:matrix(0.662395,-0.012586,0.004749,0.249955,0,0);-webkit-transform:matrix(0.662395,-0.012586,0.004749,0.249955,0,0);}
.m21_c00449{transform:matrix(0.704568,-0.013387,0.004749,0.249955,0,0);-ms-transform:matrix(0.704568,-0.013387,0.004749,0.249955,0,0);-webkit-transform:matrix(0.704568,-0.013387,0.004749,0.249955,0,0);}
.m23_c00449{transform:matrix(1.209297,-0.022977,0.004749,0.249955,0,0);-ms-transform:matrix(1.209297,-0.022977,0.004749,0.249955,0,0);-webkit-transform:matrix(1.209297,-0.022977,0.004749,0.249955,0,0);}
.v0_c00449{vertical-align:0.000000px;}
.ls0_c00449{letter-spacing:0.000000px;}
.sc__c00449{text-shadow:none;}
.sc0_c00449{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__c00449{-webkit-text-stroke:0px transparent;}
.sc0_c00449{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00449{word-spacing:0.000000px;}
.fc0_c00449{color:transparent;}
.fs1_c00449{font-size:78.014078px;}
.fs0_c00449{font-size:84.018520px;}
.fs4_c00449{font-size:90.019843px;}
.fs3_c00449{font-size:96.021166px;}
.fs2_c00449{font-size:120.017339px;}
.y0_c00449{bottom:0.000000px;}
.y54_c00449{bottom:922.535902px;}
.y55_c00449{bottom:924.610984px;}
.y56_c00449{bottom:925.200153px;}
.y57_c00449{bottom:926.978247px;}
.y58_c00449{bottom:928.180623px;}
.y59_c00449{bottom:929.355180px;}
.y5a_c00449{bottom:930.006078px;}
.y5b_c00449{bottom:930.440724px;}
.y5c_c00449{bottom:931.982118px;}
.y5d_c00449{bottom:932.554107px;}
.y5e_c00449{bottom:934.385855px;}
.y49_c00449{bottom:957.959589px;}
.y4a_c00449{bottom:959.422392px;}
.y4b_c00449{bottom:960.120817px;}
.y4c_c00449{bottom:962.592786px;}
.y4d_c00449{bottom:963.046644px;}
.y4e_c00449{bottom:964.067016px;}
.y4f_c00449{bottom:965.907778px;}
.y50_c00449{bottom:966.516622px;}
.y51_c00449{bottom:967.033605px;}
.y52_c00449{bottom:968.765743px;}
.y53_c00449{bottom:969.258537px;}
.y40_c00449{bottom:990.234000px;}
.y41_c00449{bottom:992.752078px;}
.y42_c00449{bottom:994.407467px;}
.y43_c00449{bottom:995.305027px;}
.y44_c00449{bottom:997.183183px;}
.y45_c00449{bottom:999.506183px;}
.y46_c00449{bottom:1001.365785px;}
.y47_c00449{bottom:1002.528954px;}
.y48_c00449{bottom:1004.554971px;}
.y35_c00449{bottom:1030.504207px;}
.y34_c00449{bottom:1030.602000px;}
.y36_c00449{bottom:1031.256304px;}
.y37_c00449{bottom:1032.884989px;}
.y38_c00449{bottom:1033.970244px;}
.y39_c00449{bottom:1035.819988px;}
.y3a_c00449{bottom:1036.729140px;}
.y3b_c00449{bottom:1039.026843px;}
.y3c_c00449{bottom:1039.707234px;}
.y3d_c00449{bottom:1040.904357px;}
.y3e_c00449{bottom:1042.046553px;}
.y3f_c00449{bottom:1042.550994px;}
.y28_c00449{bottom:1065.082500px;}
.y29_c00449{bottom:1065.995098px;}
.y2a_c00449{bottom:1066.975527px;}
.y2b_c00449{bottom:1067.695950px;}
.y2c_c00449{bottom:1068.814090px;}
.y2d_c00449{bottom:1069.181370px;}
.y2e_c00449{bottom:1070.863582px;}
.y2f_c00449{bottom:1071.679680px;}
.y30_c00449{bottom:1073.178153px;}
.y31_c00449{bottom:1073.753767px;}
.y32_c00449{bottom:1075.496030px;}
.y33_c00449{bottom:1077.604773px;}
.y1c_c00449{bottom:1101.310500px;}
.y1d_c00449{bottom:1102.835393px;}
.y1e_c00449{bottom:1103.415368px;}
.y1f_c00449{bottom:1104.092414px;}
.y20_c00449{bottom:1105.436872px;}
.y21_c00449{bottom:1106.212129px;}
.y22_c00449{bottom:1108.148819px;}
.y23_c00449{bottom:1109.304379px;}
.y24_c00449{bottom:1109.788652px;}
.y25_c00449{bottom:1112.674020px;}
.y26_c00449{bottom:1113.271779px;}
.y27_c00449{bottom:1114.233340px;}
.yf_c00449{bottom:1137.927000px;}
.y10_c00449{bottom:1138.714826px;}
.y11_c00449{bottom:1139.352200px;}
.y12_c00449{bottom:1141.055445px;}
.y13_c00449{bottom:1142.323011px;}
.y14_c00449{bottom:1143.165557px;}
.y15_c00449{bottom:1145.466504px;}
.y16_c00449{bottom:1147.151538px;}
.y17_c00449{bottom:1147.937938px;}
.y18_c00449{bottom:1148.606862px;}
.y19_c00449{bottom:1149.109517px;}
.y1a_c00449{bottom:1150.068256px;}
.y1b_c00449{bottom:1150.723899px;}
.y1_c00449{bottom:1172.079000px;}
.y2_c00449{bottom:1173.266707px;}
.y3_c00449{bottom:1173.965157px;}
.y4_c00449{bottom:1175.598716px;}
.y5_c00449{bottom:1176.540313px;}
.y6_c00449{bottom:1177.254450px;}
.y7_c00449{bottom:1177.935165px;}
.y8_c00449{bottom:1179.551714px;}
.y9_c00449{bottom:1181.162529px;}
.ya_c00449{bottom:1183.259799px;}
.yb_c00449{bottom:1184.422968px;}
.yc_c00449{bottom:1185.823521px;}
.yd_c00449{bottom:1186.548084px;}
.ye_c00449{bottom:1187.620186px;}
.h3_c00449{height:78.014078px;}
.h2_c00449{height:84.018520px;}
.h6_c00449{height:90.019843px;}
.h5_c00449{height:96.021166px;}
.h4_c00449{height:120.017339px;}
.h0_c00449{height:1251.450000px;}
.h1_c00449{height:1251.750000px;}
.w0_c00449{width:915.000000px;}
.x0_c00449{left:0.000000px;}
.x17_c00449{left:29.392500px;}
.x30_c00449{left:38.611500px;}
.x2f_c00449{left:44.364000px;}
.x1_c00449{left:47.433000px;}
.x3f_c00449{left:51.691310px;}
.x23_c00449{left:58.395000px;}
.xf_c00449{left:63.016500px;}
.x31_c00449{left:82.852500px;}
.x49_c00449{left:95.397645px;}
.x2_c00449{left:103.990500px;}
.x24_c00449{left:106.426500px;}
.x18_c00449{left:109.650000px;}
.x3_c00449{left:137.250000px;}
.x19_c00449{left:140.175000px;}
.x40_c00449{left:143.143917px;}
.x25_c00449{left:158.028000px;}
.x38_c00449{left:164.010000px;}
.x1a_c00449{left:175.809000px;}
.x32_c00449{left:178.657500px;}
.x41_c00449{left:186.763985px;}
.x26_c00449{left:195.945000px;}
.x4a_c00449{left:210.646890px;}
.x4_c00449{left:215.038500px;}
.x10_c00449{left:227.671500px;}
.x33_c00449{left:242.496000px;}
.x1b_c00449{left:246.570000px;}
.x27_c00449{left:254.794500px;}
.x5_c00449{left:259.876500px;}
.x28_c00449{left:274.125000px;}
.x39_c00449{left:285.579000px;}
.x1c_c00449{left:287.373000px;}
.x6_c00449{left:293.883000px;}
.x7_c00449{left:326.298000px;}
.x11_c00449{left:338.730000px;}
.x42_c00449{left:341.278707px;}
.x34_c00449{left:351.304500px;}
.x29_c00449{left:362.662500px;}
.x43_c00449{left:369.679700px;}
.x3a_c00449{left:375.015000px;}
.x1d_c00449{left:389.304000px;}
.x8_c00449{left:403.276500px;}
.x2a_c00449{left:405.615000px;}
.x4b_c00449{left:408.927864px;}
.x44_c00449{left:433.418378px;}
.x1e_c00449{left:450.123000px;}
.x12_c00449{left:459.832500px;}
.x4c_c00449{left:474.148959px;}
.x1f_c00449{left:475.611000px;}
.x9_c00449{left:479.982000px;}
.x2b_c00449{left:484.482000px;}
.x3b_c00449{left:485.634000px;}
.x4d_c00449{left:510.289227px;}
.x2c_c00449{left:514.777500px;}
.x4e_c00449{left:534.416739px;}
.x35_c00449{left:539.943000px;}
.x13_c00449{left:548.518500px;}
.x3c_c00449{left:574.186500px;}
.xa_c00449{left:579.852000px;}
.x45_c00449{left:586.510943px;}
.x14_c00449{left:589.908000px;}
.x2d_c00449{left:606.475500px;}
.x46_c00449{left:618.846845px;}
.x4f_c00449{left:620.036125px;}
.x15_c00449{left:625.114500px;}
.x20_c00449{left:627.472500px;}
.x3d_c00449{left:629.575500px;}
.xb_c00449{left:635.241000px;}
.x36_c00449{left:650.385000px;}
.x16_c00449{left:651.570000px;}
.x21_c00449{left:658.933500px;}
.xc_c00449{left:701.934000px;}
.x22_c00449{left:709.542000px;}
.x2e_c00449{left:717.462000px;}
.x3e_c00449{left:726.052500px;}
.x47_c00449{left:727.126716px;}
.xd_c00449{left:736.437000px;}
.x37_c00449{left:747.246000px;}
.x50_c00449{left:753.651067px;}
.x48_c00449{left:757.953461px;}
.xe_c00449{left:787.489500px;}
@media print{
.v0_c00449{vertical-align:0.000000pt;}
.ls0_c00449{letter-spacing:0.000000pt;}
.ws0_c00449{word-spacing:0.000000pt;}
.fs1_c00449{font-size:69.345847pt;}
.fs0_c00449{font-size:74.683129pt;}
.fs4_c00449{font-size:80.017638pt;}
.fs3_c00449{font-size:85.352147pt;}
.fs2_c00449{font-size:106.682079pt;}
.y0_c00449{bottom:0.000000pt;}
.y54_c00449{bottom:820.031913pt;}
.y55_c00449{bottom:821.876431pt;}
.y56_c00449{bottom:822.400136pt;}
.y57_c00449{bottom:823.980664pt;}
.y58_c00449{bottom:825.049443pt;}
.y59_c00449{bottom:826.093493pt;}
.y5a_c00449{bottom:826.672069pt;}
.y5b_c00449{bottom:827.058421pt;}
.y5c_c00449{bottom:828.428549pt;}
.y5d_c00449{bottom:828.936984pt;}
.y5e_c00449{bottom:830.565204pt;}
.y49_c00449{bottom:851.519635pt;}
.y4a_c00449{bottom:852.819904pt;}
.y4b_c00449{bottom:853.440727pt;}
.y4c_c00449{bottom:855.638032pt;}
.y4d_c00449{bottom:856.041461pt;}
.y4e_c00449{bottom:856.948459pt;}
.y4f_c00449{bottom:858.584692pt;}
.y50_c00449{bottom:859.125887pt;}
.y51_c00449{bottom:859.585427pt;}
.y52_c00449{bottom:861.125105pt;}
.y53_c00449{bottom:861.563144pt;}
.y40_c00449{bottom:880.208000pt;}
.y41_c00449{bottom:882.446292pt;}
.y42_c00449{bottom:883.917748pt;}
.y43_c00449{bottom:884.715580pt;}
.y44_c00449{bottom:886.385052pt;}
.y45_c00449{bottom:888.449940pt;}
.y46_c00449{bottom:890.102920pt;}
.y47_c00449{bottom:891.136848pt;}
.y48_c00449{bottom:892.937752pt;}
.y35_c00449{bottom:916.003740pt;}
.y34_c00449{bottom:916.090667pt;}
.y36_c00449{bottom:916.672271pt;}
.y37_c00449{bottom:918.119991pt;}
.y38_c00449{bottom:919.084661pt;}
.y39_c00449{bottom:920.728879pt;}
.y3a_c00449{bottom:921.537013pt;}
.y3b_c00449{bottom:923.579416pt;}
.y3c_c00449{bottom:924.184208pt;}
.y3d_c00449{bottom:925.248317pt;}
.y3e_c00449{bottom:926.263603pt;}
.y3f_c00449{bottom:926.711995pt;}
.y28_c00449{bottom:946.740000pt;}
.y29_c00449{bottom:947.551199pt;}
.y2a_c00449{bottom:948.422691pt;}
.y2b_c00449{bottom:949.063067pt;}
.y2c_c00449{bottom:950.056969pt;}
.y2d_c00449{bottom:950.383440pt;}
.y2e_c00449{bottom:951.878740pt;}
.y2f_c00449{bottom:952.604160pt;}
.y30_c00449{bottom:953.936136pt;}
.y31_c00449{bottom:954.447793pt;}
.y32_c00449{bottom:955.996471pt;}
.y33_c00449{bottom:957.870909pt;}
.y1c_c00449{bottom:978.942667pt;}
.y1d_c00449{bottom:980.298127pt;}
.y1e_c00449{bottom:980.813660pt;}
.y1f_c00449{bottom:981.415479pt;}
.y20_c00449{bottom:982.610553pt;}
.y21_c00449{bottom:983.299671pt;}
.y22_c00449{bottom:985.021172pt;}
.y23_c00449{bottom:986.048337pt;}
.y24_c00449{bottom:986.478801pt;}
.y25_c00449{bottom:989.043573pt;}
.y26_c00449{bottom:989.574915pt;}
.y27_c00449{bottom:990.429636pt;}
.yf_c00449{bottom:1011.490667pt;}
.y10_c00449{bottom:1012.190956pt;}
.y11_c00449{bottom:1012.757511pt;}
.y12_c00449{bottom:1014.271507pt;}
.y13_c00449{bottom:1015.398232pt;}
.y14_c00449{bottom:1016.147161pt;}
.y15_c00449{bottom:1018.192448pt;}
.y16_c00449{bottom:1019.690256pt;}
.y17_c00449{bottom:1020.389279pt;}
.y18_c00449{bottom:1020.983877pt;}
.y19_c00449{bottom:1021.430681pt;}
.y1a_c00449{bottom:1022.282895pt;}
.y1b_c00449{bottom:1022.865688pt;}
.y1_c00449{bottom:1041.848000pt;}
.y2_c00449{bottom:1042.903740pt;}
.y3_c00449{bottom:1043.524584pt;}
.y4_c00449{bottom:1044.976636pt;}
.y5_c00449{bottom:1045.813612pt;}
.y6_c00449{bottom:1046.448400pt;}
.y7_c00449{bottom:1047.053480pt;}
.y8_c00449{bottom:1048.490412pt;}
.y9_c00449{bottom:1049.922248pt;}
.ya_c00449{bottom:1051.786488pt;}
.yb_c00449{bottom:1052.820416pt;}
.yc_c00449{bottom:1054.065352pt;}
.yd_c00449{bottom:1054.709408pt;}
.ye_c00449{bottom:1055.662388pt;}
.h3_c00449{height:69.345847pt;}
.h2_c00449{height:74.683129pt;}
.h6_c00449{height:80.017638pt;}
.h5_c00449{height:85.352147pt;}
.h4_c00449{height:106.682079pt;}
.h0_c00449{height:1112.400000pt;}
.h1_c00449{height:1112.666667pt;}
.w0_c00449{width:813.333333pt;}
.x0_c00449{left:0.000000pt;}
.x17_c00449{left:26.126667pt;}
.x30_c00449{left:34.321333pt;}
.x2f_c00449{left:39.434667pt;}
.x1_c00449{left:42.162667pt;}
.x3f_c00449{left:45.947831pt;}
.x23_c00449{left:51.906667pt;}
.xf_c00449{left:56.014667pt;}
.x31_c00449{left:73.646667pt;}
.x49_c00449{left:84.797907pt;}
.x2_c00449{left:92.436000pt;}
.x24_c00449{left:94.601333pt;}
.x18_c00449{left:97.466667pt;}
.x3_c00449{left:122.000000pt;}
.x19_c00449{left:124.600000pt;}
.x40_c00449{left:127.239037pt;}
.x25_c00449{left:140.469333pt;}
.x38_c00449{left:145.786667pt;}
.x1a_c00449{left:156.274667pt;}
.x32_c00449{left:158.806667pt;}
.x41_c00449{left:166.012431pt;}
.x26_c00449{left:174.173333pt;}
.x4a_c00449{left:187.241680pt;}
.x4_c00449{left:191.145333pt;}
.x10_c00449{left:202.374667pt;}
.x33_c00449{left:215.552000pt;}
.x1b_c00449{left:219.173333pt;}
.x27_c00449{left:226.484000pt;}
.x5_c00449{left:231.001333pt;}
.x28_c00449{left:243.666667pt;}
.x39_c00449{left:253.848000pt;}
.x1c_c00449{left:255.442667pt;}
.x6_c00449{left:261.229333pt;}
.x7_c00449{left:290.042667pt;}
.x11_c00449{left:301.093333pt;}
.x42_c00449{left:303.358851pt;}
.x34_c00449{left:312.270667pt;}
.x29_c00449{left:322.366667pt;}
.x43_c00449{left:328.604177pt;}
.x3a_c00449{left:333.346667pt;}
.x1d_c00449{left:346.048000pt;}
.x8_c00449{left:358.468000pt;}
.x2a_c00449{left:360.546667pt;}
.x4b_c00449{left:363.491435pt;}
.x44_c00449{left:385.260780pt;}
.x1e_c00449{left:400.109333pt;}
.x12_c00449{left:408.740000pt;}
.x4c_c00449{left:421.465741pt;}
.x1f_c00449{left:422.765333pt;}
.x9_c00449{left:426.650667pt;}
.x2b_c00449{left:430.650667pt;}
.x3b_c00449{left:431.674667pt;}
.x4d_c00449{left:453.590424pt;}
.x2c_c00449{left:457.580000pt;}
.x4e_c00449{left:475.037101pt;}
.x35_c00449{left:479.949333pt;}
.x13_c00449{left:487.572000pt;}
.x3c_c00449{left:510.388000pt;}
.xa_c00449{left:515.424000pt;}
.x45_c00449{left:521.343060pt;}
.x14_c00449{left:524.362667pt;}
.x2d_c00449{left:539.089333pt;}
.x46_c00449{left:550.086084pt;}
.x4f_c00449{left:551.143223pt;}
.x15_c00449{left:555.657333pt;}
.x20_c00449{left:557.753333pt;}
.x3d_c00449{left:559.622667pt;}
.xb_c00449{left:564.658667pt;}
.x36_c00449{left:578.120000pt;}
.x16_c00449{left:579.173333pt;}
.x21_c00449{left:585.718667pt;}
.xc_c00449{left:623.941333pt;}
.x22_c00449{left:630.704000pt;}
.x2e_c00449{left:637.744000pt;}
.x3e_c00449{left:645.380000pt;}
.x47_c00449{left:646.334859pt;}
.xd_c00449{left:654.610667pt;}
.x37_c00449{left:664.218667pt;}
.x50_c00449{left:669.912060pt;}
.x48_c00449{left:673.736409pt;}
.xe_c00449{left:699.990667pt;}
}





/* 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_c00450 {
    display:none;
  }
  .loading-indicator_c00450.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00450 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_c00450 { 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_c00450" -> "#page-container .classname_c00450")
 */
.pf_c00450 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00450 { /* 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_c00450.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00450 { /* 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_c00450 { /* 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_c00450 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00450 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00450 {overflow:visible;}
  }
}
.c_c00450 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00450 { /* 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_c00450:after { /* webkit #35443 */
  content: '';
}
.t_c00450:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00450 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 */
}
.__c00450 { /* 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_c00450 { /* info for Javascript */
  display:none;
}
.l_c00450 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00450 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00450 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00450: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_c00450 {
    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_c00450.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00450.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_c00450 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00450{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00450;src:url('chunks/assets/font_fabf4b590f7fb32aea93ffb2.woff2')format("woff");}.ff1_c00450{font-family:ff1_c00450;line-height:1.000000;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;}
.m127_c00450{transform:matrix(0.111280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111280,0.000000,0.000000,0.250000,0,0);}
.m0_c00450{transform:matrix(0.115595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115595,0.000000,0.000000,0.250000,0,0);}
.m3_c00450{transform:matrix(0.153468,-0.002302,0.003750,0.249972,0,0);-ms-transform:matrix(0.153468,-0.002302,0.003750,0.249972,0,0);-webkit-transform:matrix(0.153468,-0.002302,0.003750,0.249972,0,0);}
.m16_c00450{transform:matrix(0.159150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159150,0.000000,0.000000,0.250000,0,0);}
.m12a_c00450{transform:matrix(0.161515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161515,0.000000,0.000000,0.250000,0,0);}
.m5_c00450{transform:matrix(0.168556,-0.002528,0.003750,0.249972,0,0);-ms-transform:matrix(0.168556,-0.002528,0.003750,0.249972,0,0);-webkit-transform:matrix(0.168556,-0.002528,0.003750,0.249972,0,0);}
.m126_c00450{transform:matrix(0.168900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168900,0.000000,0.000000,0.250000,0,0);}
.m12_c00450{transform:matrix(0.169580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169580,0.000000,0.000000,0.250000,0,0);}
.m99_c00450{transform:matrix(0.170575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170575,0.000000,0.000000,0.250000,0,0);}
.m9f_c00450{transform:matrix(0.172145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172145,0.000000,0.000000,0.250000,0,0);}
.m1_c00450{transform:matrix(0.173765,-0.002606,0.003750,0.249972,0,0);-ms-transform:matrix(0.173765,-0.002606,0.003750,0.249972,0,0);-webkit-transform:matrix(0.173765,-0.002606,0.003750,0.249972,0,0);}
.m7d_c00450{transform:matrix(0.176080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176080,0.000000,0.000000,0.250000,0,0);}
.m12c_c00450{transform:matrix(0.176745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176745,0.000000,0.000000,0.250000,0,0);}
.m11b_c00450{transform:matrix(0.177355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177355,0.000000,0.000000,0.250000,0,0);}
.m2b_c00450{transform:matrix(0.178135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178135,0.000000,0.000000,0.250000,0,0);}
.m63_c00450{transform:matrix(0.179570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179570,0.000000,0.000000,0.250000,0,0);}
.m9b_c00450{transform:matrix(0.179615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179615,0.000000,0.000000,0.250000,0,0);}
.m3e_c00450{transform:matrix(0.181945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181945,0.000000,0.000000,0.250000,0,0);}
.md8_c00450{transform:matrix(0.182470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182470,0.000000,0.000000,0.250000,0,0);}
.m129_c00450{transform:matrix(0.182790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182790,0.000000,0.000000,0.250000,0,0);}
.m13e_c00450{transform:matrix(0.183035,0.002379,-0.003250,0.249979,0,0);-ms-transform:matrix(0.183035,0.002379,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.183035,0.002379,-0.003250,0.249979,0,0);}
.m4a_c00450{transform:matrix(0.183235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183235,0.000000,0.000000,0.250000,0,0);}
.m37_c00450{transform:matrix(0.184055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184055,0.000000,0.000000,0.250000,0,0);}
.ma3_c00450{transform:matrix(0.184110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184110,0.000000,0.000000,0.250000,0,0);}
.md4_c00450{transform:matrix(0.184175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184175,0.000000,0.000000,0.250000,0,0);}
.m2f_c00450{transform:matrix(0.184260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184260,0.000000,0.000000,0.250000,0,0);}
.m12b_c00450{transform:matrix(0.184495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184495,0.000000,0.000000,0.250000,0,0);}
.mab_c00450{transform:matrix(0.184645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184645,0.000000,0.000000,0.250000,0,0);}
.ma1_c00450{transform:matrix(0.184655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184655,0.000000,0.000000,0.250000,0,0);}
.m124_c00450{transform:matrix(0.185410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185410,0.000000,0.000000,0.250000,0,0);}
.m13c_c00450{transform:matrix(0.186079,0.002419,-0.003250,0.249979,0,0);-ms-transform:matrix(0.186079,0.002419,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.186079,0.002419,-0.003250,0.249979,0,0);}
.m43_c00450{transform:matrix(0.186385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186385,0.000000,0.000000,0.250000,0,0);}
.ma0_c00450{transform:matrix(0.187130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187130,0.000000,0.000000,0.250000,0,0);}
.ma6_c00450{transform:matrix(0.187485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187485,0.000000,0.000000,0.250000,0,0);}
.mad_c00450{transform:matrix(0.187615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187615,0.000000,0.000000,0.250000,0,0);}
.mf_c00450{transform:matrix(0.188015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188015,0.000000,0.000000,0.250000,0,0);}
.m128_c00450{transform:matrix(0.188070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188070,0.000000,0.000000,0.250000,0,0);}
.m2_c00450{transform:matrix(0.188229,-0.002823,0.003750,0.249972,0,0);-ms-transform:matrix(0.188229,-0.002823,0.003750,0.249972,0,0);-webkit-transform:matrix(0.188229,-0.002823,0.003750,0.249972,0,0);}
.md5_c00450{transform:matrix(0.188800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188800,0.000000,0.000000,0.250000,0,0);}
.m7f_c00450{transform:matrix(0.189155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189155,0.000000,0.000000,0.250000,0,0);}
.ma9_c00450{transform:matrix(0.189925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189925,0.000000,0.000000,0.250000,0,0);}
.m36_c00450{transform:matrix(0.190345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190345,0.000000,0.000000,0.250000,0,0);}
.maa_c00450{transform:matrix(0.191485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191485,0.000000,0.000000,0.250000,0,0);}
.m11d_c00450{transform:matrix(0.191725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191725,0.000000,0.000000,0.250000,0,0);}
.m33_c00450{transform:matrix(0.192510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192510,0.000000,0.000000,0.250000,0,0);}
.md7_c00450{transform:matrix(0.193040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193040,0.000000,0.000000,0.250000,0,0);}
.m143_c00450{transform:matrix(0.193319,0.002513,-0.003250,0.249979,0,0);-ms-transform:matrix(0.193319,0.002513,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.193319,0.002513,-0.003250,0.249979,0,0);}
.m7a_c00450{transform:matrix(0.193425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193425,0.000000,0.000000,0.250000,0,0);}
.m13b_c00450{transform:matrix(0.193584,0.002517,-0.003250,0.249979,0,0);-ms-transform:matrix(0.193584,0.002517,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.193584,0.002517,-0.003250,0.249979,0,0);}
.m9c_c00450{transform:matrix(0.193590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193590,0.000000,0.000000,0.250000,0,0);}
.m4c_c00450{transform:matrix(0.193665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193665,0.000000,0.000000,0.250000,0,0);}
.m9d_c00450{transform:matrix(0.194715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194715,0.000000,0.000000,0.250000,0,0);}
.m4_c00450{transform:matrix(0.194873,-0.002923,0.003750,0.249972,0,0);-ms-transform:matrix(0.194873,-0.002923,0.003750,0.249972,0,0);-webkit-transform:matrix(0.194873,-0.002923,0.003750,0.249972,0,0);}
.m46_c00450{transform:matrix(0.195260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195260,0.000000,0.000000,0.250000,0,0);}
.md2_c00450{transform:matrix(0.195275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195275,0.000000,0.000000,0.250000,0,0);}
.mfe_c00450{transform:matrix(0.195875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195875,0.000000,0.000000,0.250000,0,0);}
.m56_c00450{transform:matrix(0.196125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196125,0.000000,0.000000,0.250000,0,0);}
.md0_c00450{transform:matrix(0.196460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196460,0.000000,0.000000,0.250000,0,0);}
.mcf_c00450{transform:matrix(0.196775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196775,0.000000,0.000000,0.250000,0,0);}
.m3b_c00450{transform:matrix(0.196950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196950,0.000000,0.000000,0.250000,0,0);}
.m120_c00450{transform:matrix(0.197330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197330,0.000000,0.000000,0.250000,0,0);}
.m4f_c00450{transform:matrix(0.197525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197525,0.000000,0.000000,0.250000,0,0);}
.m7c_c00450{transform:matrix(0.197550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197550,0.000000,0.000000,0.250000,0,0);}
.m13d_c00450{transform:matrix(0.197573,0.002568,-0.003250,0.249979,0,0);-ms-transform:matrix(0.197573,0.002568,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.197573,0.002568,-0.003250,0.249979,0,0);}
.m98_c00450{transform:matrix(0.197850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197850,0.000000,0.000000,0.250000,0,0);}
.m58_c00450{transform:matrix(0.197910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197910,0.000000,0.000000,0.250000,0,0);}
.m122_c00450{transform:matrix(0.198545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198545,0.000000,0.000000,0.250000,0,0);}
.mc6_c00450{transform:matrix(0.198560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198560,0.000000,0.000000,0.250000,0,0);}
.ma4_c00450{transform:matrix(0.198595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198595,0.000000,0.000000,0.250000,0,0);}
.m3f_c00450{transform:matrix(0.198755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198755,0.000000,0.000000,0.250000,0,0);}
.mdf_c00450{transform:matrix(0.199140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199140,0.000000,0.000000,0.250000,0,0);}
.m15_c00450{transform:matrix(0.199860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199860,0.000000,0.000000,0.250000,0,0);}
.m69_c00450{transform:matrix(0.200295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200295,0.000000,0.000000,0.250000,0,0);}
.mbd_c00450{transform:matrix(0.200345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200345,0.000000,0.000000,0.250000,0,0);}
.m45_c00450{transform:matrix(0.200860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200860,0.000000,0.000000,0.250000,0,0);}
.mbf_c00450{transform:matrix(0.200880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200880,0.000000,0.000000,0.250000,0,0);}
.ma8_c00450{transform:matrix(0.201205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201205,0.000000,0.000000,0.250000,0,0);}
.md9_c00450{transform:matrix(0.201695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201695,0.000000,0.000000,0.250000,0,0);}
.m140_c00450{transform:matrix(0.202103,0.002627,-0.003250,0.249979,0,0);-ms-transform:matrix(0.202103,0.002627,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.202103,0.002627,-0.003250,0.249979,0,0);}
.m13_c00450{transform:matrix(0.202375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202375,0.000000,0.000000,0.250000,0,0);}
.m141_c00450{transform:matrix(0.203478,0.002645,-0.003250,0.249979,0,0);-ms-transform:matrix(0.203478,0.002645,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.203478,0.002645,-0.003250,0.249979,0,0);}
.m9a_c00450{transform:matrix(0.203575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203575,0.000000,0.000000,0.250000,0,0);}
.m11e_c00450{transform:matrix(0.203855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203855,0.000000,0.000000,0.250000,0,0);}
.m34_c00450{transform:matrix(0.203895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203895,0.000000,0.000000,0.250000,0,0);}
.ma5_c00450{transform:matrix(0.203970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203970,0.000000,0.000000,0.250000,0,0);}
.m11_c00450{transform:matrix(0.204090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204090,0.000000,0.000000,0.250000,0,0);}
.m83_c00450{transform:matrix(0.204540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204540,0.000000,0.000000,0.250000,0,0);}
.mae_c00450{transform:matrix(0.205035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205035,0.000000,0.000000,0.250000,0,0);}
.m19_c00450{transform:matrix(0.205055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205055,0.000000,0.000000,0.250000,0,0);}
.m74_c00450{transform:matrix(0.205110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205110,0.000000,0.000000,0.250000,0,0);}
.m14_c00450{transform:matrix(0.205155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205155,0.000000,0.000000,0.250000,0,0);}
.m121_c00450{transform:matrix(0.205235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205235,0.000000,0.000000,0.250000,0,0);}
.m139_c00450{transform:matrix(0.205438,0.002671,-0.003250,0.249979,0,0);-ms-transform:matrix(0.205438,0.002671,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.205438,0.002671,-0.003250,0.249979,0,0);}
.m6e_c00450{transform:matrix(0.205940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205940,0.000000,0.000000,0.250000,0,0);}
.m13f_c00450{transform:matrix(0.206418,0.002683,-0.003250,0.249979,0,0);-ms-transform:matrix(0.206418,0.002683,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.206418,0.002683,-0.003250,0.249979,0,0);}
.mac_c00450{transform:matrix(0.206430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206430,0.000000,0.000000,0.250000,0,0);}
.m66_c00450{transform:matrix(0.207445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207445,0.000000,0.000000,0.250000,0,0);}
.mda_c00450{transform:matrix(0.208350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208350,0.000000,0.000000,0.250000,0,0);}
.mb5_c00450{transform:matrix(0.208710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208710,0.000000,0.000000,0.250000,0,0);}
.m40_c00450{transform:matrix(0.208765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208765,0.000000,0.000000,0.250000,0,0);}
.m10_c00450{transform:matrix(0.208915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208915,0.000000,0.000000,0.250000,0,0);}
.m47_c00450{transform:matrix(0.209065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209065,0.000000,0.000000,0.250000,0,0);}
.mdc_c00450{transform:matrix(0.209095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209095,0.000000,0.000000,0.250000,0,0);}
.m5b_c00450{transform:matrix(0.209220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209220,0.000000,0.000000,0.250000,0,0);}
.mb_c00450{transform:matrix(0.209300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209300,0.000000,0.000000,0.250000,0,0);}
.m53_c00450{transform:matrix(0.209315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209315,0.000000,0.000000,0.250000,0,0);}
.mb9_c00450{transform:matrix(0.209360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209360,0.000000,0.000000,0.250000,0,0);}
.m82_c00450{transform:matrix(0.209555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209555,0.000000,0.000000,0.250000,0,0);}
.m9e_c00450{transform:matrix(0.209615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209615,0.000000,0.000000,0.250000,0,0);}
.m70_c00450{transform:matrix(0.210175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210175,0.000000,0.000000,0.250000,0,0);}
.m17_c00450{transform:matrix(0.210565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210565,0.000000,0.000000,0.250000,0,0);}
.mfb_c00450{transform:matrix(0.210610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210610,0.000000,0.000000,0.250000,0,0);}
.m41_c00450{transform:matrix(0.210615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210615,0.000000,0.000000,0.250000,0,0);}
.ma2_c00450{transform:matrix(0.210660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210660,0.000000,0.000000,0.250000,0,0);}
.m20_c00450{transform:matrix(0.210830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210830,0.000000,0.000000,0.250000,0,0);}
.m72_c00450{transform:matrix(0.211460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211460,0.000000,0.000000,0.250000,0,0);}
.m38_c00450{transform:matrix(0.211740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211740,0.000000,0.000000,0.250000,0,0);}
.mdd_c00450{transform:matrix(0.212165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212165,0.000000,0.000000,0.250000,0,0);}
.m55_c00450{transform:matrix(0.212185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212185,0.000000,0.000000,0.250000,0,0);}
.m123_c00450{transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);}
.m7e_c00450{transform:matrix(0.212460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212460,0.000000,0.000000,0.250000,0,0);}
.m78_c00450{transform:matrix(0.212515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212515,0.000000,0.000000,0.250000,0,0);}
.m44_c00450{transform:matrix(0.213045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213045,0.000000,0.000000,0.250000,0,0);}
.m50_c00450{transform:matrix(0.213985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213985,0.000000,0.000000,0.250000,0,0);}
.m59_c00450{transform:matrix(0.214200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214200,0.000000,0.000000,0.250000,0,0);}
.m5a_c00450{transform:matrix(0.214265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214265,0.000000,0.000000,0.250000,0,0);}
.m2c_c00450{transform:matrix(0.214310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214310,0.000000,0.000000,0.250000,0,0);}
.m49_c00450{transform:matrix(0.214410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214410,0.000000,0.000000,0.250000,0,0);}
.m1d_c00450{transform:matrix(0.214620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214620,0.000000,0.000000,0.250000,0,0);}
.mfd_c00450{transform:matrix(0.215060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215060,0.000000,0.000000,0.250000,0,0);}
.m35_c00450{transform:matrix(0.215130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215130,0.000000,0.000000,0.250000,0,0);}
.m114_c00450{transform:matrix(0.215230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215230,0.000000,0.000000,0.250000,0,0);}
.m30_c00450{transform:matrix(0.215365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215365,0.000000,0.000000,0.250000,0,0);}
.m31_c00450{transform:matrix(0.215370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215370,0.000000,0.000000,0.250000,0,0);}
.m5f_c00450{transform:matrix(0.215485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215485,0.000000,0.000000,0.250000,0,0);}
.mbc_c00450{transform:matrix(0.215790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215790,0.000000,0.000000,0.250000,0,0);}
.m79_c00450{transform:matrix(0.215820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215820,0.000000,0.000000,0.250000,0,0);}
.m73_c00450{transform:matrix(0.215910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215910,0.000000,0.000000,0.250000,0,0);}
.mdb_c00450{transform:matrix(0.216285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216285,0.000000,0.000000,0.250000,0,0);}
.mc3_c00450{transform:matrix(0.216540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216540,0.000000,0.000000,0.250000,0,0);}
.md1_c00450{transform:matrix(0.216640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216640,0.000000,0.000000,0.250000,0,0);}
.m4e_c00450{transform:matrix(0.216885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216885,0.000000,0.000000,0.250000,0,0);}
.ma7_c00450{transform:matrix(0.217055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217055,0.000000,0.000000,0.250000,0,0);}
.mc1_c00450{transform:matrix(0.217530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217530,0.000000,0.000000,0.250000,0,0);}
.m118_c00450{transform:matrix(0.217570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217570,0.000000,0.000000,0.250000,0,0);}
.m3a_c00450{transform:matrix(0.217720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217720,0.000000,0.000000,0.250000,0,0);}
.m134_c00450{transform:matrix(0.218280,0.003274,-0.003750,0.249972,0,0);-ms-transform:matrix(0.218280,0.003274,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.218280,0.003274,-0.003750,0.249972,0,0);}
.m7b_c00450{transform:matrix(0.218870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218870,0.000000,0.000000,0.250000,0,0);}
.m2e_c00450{transform:matrix(0.218925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218925,0.000000,0.000000,0.250000,0,0);}
.m6f_c00450{transform:matrix(0.218950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218950,0.000000,0.000000,0.250000,0,0);}
.mde_c00450{transform:matrix(0.219370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219370,0.000000,0.000000,0.250000,0,0);}
.m51_c00450{transform:matrix(0.219590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219590,0.000000,0.000000,0.250000,0,0);}
.mcc_c00450{transform:matrix(0.219685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219685,0.000000,0.000000,0.250000,0,0);}
.m9_c00450{transform:matrix(0.219860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219860,0.000000,0.000000,0.250000,0,0);}
.m11c_c00450{transform:matrix(0.220280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220280,0.000000,0.000000,0.250000,0,0);}
.mca_c00450{transform:matrix(0.220380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220380,0.000000,0.000000,0.250000,0,0);}
.m39_c00450{transform:matrix(0.220480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220480,0.000000,0.000000,0.250000,0,0);}
.m65_c00450{transform:matrix(0.221205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221205,0.000000,0.000000,0.250000,0,0);}
.m42_c00450{transform:matrix(0.221505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221505,0.000000,0.000000,0.250000,0,0);}
.m32_c00450{transform:matrix(0.221720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221720,0.000000,0.000000,0.250000,0,0);}
.mb2_c00450{transform:matrix(0.222045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222045,0.000000,0.000000,0.250000,0,0);}
.m135_c00450{transform:matrix(0.222600,0.003339,-0.003750,0.249972,0,0);-ms-transform:matrix(0.222600,0.003339,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.222600,0.003339,-0.003750,0.249972,0,0);}
.mb6_c00450{transform:matrix(0.222650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222650,0.000000,0.000000,0.250000,0,0);}
.md6_c00450{transform:matrix(0.222665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222665,0.000000,0.000000,0.250000,0,0);}
.m52_c00450{transform:matrix(0.222695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222695,0.000000,0.000000,0.250000,0,0);}
.mbb_c00450{transform:matrix(0.222735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222735,0.000000,0.000000,0.250000,0,0);}
.m10a_c00450{transform:matrix(0.222800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222800,0.000000,0.000000,0.250000,0,0);}
.m11a_c00450{transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);}
.m77_c00450{transform:matrix(0.223220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223220,0.000000,0.000000,0.250000,0,0);}
.mef_c00450{transform:matrix(0.223270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223270,0.000000,0.000000,0.250000,0,0);}
.me5_c00450{transform:matrix(0.223405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223405,0.000000,0.000000,0.250000,0,0);}
.m3d_c00450{transform:matrix(0.223585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223585,0.000000,0.000000,0.250000,0,0);}
.m81_c00450{transform:matrix(0.223730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223730,0.000000,0.000000,0.250000,0,0);}
.m1b_c00450{transform:matrix(0.224045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224045,0.000000,0.000000,0.250000,0,0);}
.m142_c00450{transform:matrix(0.224336,0.002916,-0.003250,0.249979,0,0);-ms-transform:matrix(0.224336,0.002916,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.224336,0.002916,-0.003250,0.249979,0,0);}
.mb0_c00450{transform:matrix(0.224400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224400,0.000000,0.000000,0.250000,0,0);}
.m71_c00450{transform:matrix(0.224520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224520,0.000000,0.000000,0.250000,0,0);}
.m119_c00450{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.mc0_c00450{transform:matrix(0.225145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225145,0.000000,0.000000,0.250000,0,0);}
.me2_c00450{transform:matrix(0.225315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225315,0.000000,0.000000,0.250000,0,0);}
.m86_c00450{transform:matrix(0.225345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225345,0.000000,0.000000,0.250000,0,0);}
.m48_c00450{transform:matrix(0.225460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225460,0.000000,0.000000,0.250000,0,0);}
.m6d_c00450{transform:matrix(0.225890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225890,0.000000,0.000000,0.250000,0,0);}
.me7_c00450{transform:matrix(0.225940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225940,0.000000,0.000000,0.250000,0,0);}
.maf_c00450{transform:matrix(0.226010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226010,0.000000,0.000000,0.250000,0,0);}
.mc7_c00450{transform:matrix(0.226120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226120,0.000000,0.000000,0.250000,0,0);}
.m3c_c00450{transform:matrix(0.226305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226305,0.000000,0.000000,0.250000,0,0);}
.m13a_c00450{transform:matrix(0.226471,0.002944,-0.003250,0.249979,0,0);-ms-transform:matrix(0.226471,0.002944,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.226471,0.002944,-0.003250,0.249979,0,0);}
.md3_c00450{transform:matrix(0.226970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226970,0.000000,0.000000,0.250000,0,0);}
.mb3_c00450{transform:matrix(0.228420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228420,0.000000,0.000000,0.250000,0,0);}
.mf9_c00450{transform:matrix(0.228470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228470,0.000000,0.000000,0.250000,0,0);}
.m8f_c00450{transform:matrix(0.228815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228815,0.000000,0.000000,0.250000,0,0);}
.m80_c00450{transform:matrix(0.229225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229225,0.000000,0.000000,0.250000,0,0);}
.m115_c00450{transform:matrix(0.229300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229300,0.000000,0.000000,0.250000,0,0);}
.mbe_c00450{transform:matrix(0.229635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229635,0.000000,0.000000,0.250000,0,0);}
.m125_c00450{transform:matrix(0.229670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229670,0.000000,0.000000,0.250000,0,0);}
.m54_c00450{transform:matrix(0.229715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229715,0.000000,0.000000,0.250000,0,0);}
.m62_c00450{transform:matrix(0.229725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229725,0.000000,0.000000,0.250000,0,0);}
.me0_c00450{transform:matrix(0.230235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230235,0.000000,0.000000,0.250000,0,0);}
.md_c00450{transform:matrix(0.230445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230445,0.000000,0.000000,0.250000,0,0);}
.me6_c00450{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m6c_c00450{transform:matrix(0.230775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230775,0.000000,0.000000,0.250000,0,0);}
.m117_c00450{transform:matrix(0.230815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230815,0.000000,0.000000,0.250000,0,0);}
.m23_c00450{transform:matrix(0.230895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230895,0.000000,0.000000,0.250000,0,0);}
.m4b_c00450{transform:matrix(0.231075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231075,0.000000,0.000000,0.250000,0,0);}
.mc2_c00450{transform:matrix(0.231280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231280,0.000000,0.000000,0.250000,0,0);}
.m24_c00450{transform:matrix(0.231435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231435,0.000000,0.000000,0.250000,0,0);}
.m8_c00450{transform:matrix(0.231725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231725,0.000000,0.000000,0.250000,0,0);}
.m6a_c00450{transform:matrix(0.231810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231810,0.000000,0.000000,0.250000,0,0);}
.mc4_c00450{transform:matrix(0.232135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232135,0.000000,0.000000,0.250000,0,0);}
.m64_c00450{transform:matrix(0.232195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232195,0.000000,0.000000,0.250000,0,0);}
.m4d_c00450{transform:matrix(0.232455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232455,0.000000,0.000000,0.250000,0,0);}
.meb_c00450{transform:matrix(0.232670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232670,0.000000,0.000000,0.250000,0,0);}
.mf1_c00450{transform:matrix(0.232985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232985,0.000000,0.000000,0.250000,0,0);}
.m18_c00450{transform:matrix(0.232995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232995,0.000000,0.000000,0.250000,0,0);}
.m5e_c00450{transform:matrix(0.233135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233135,0.000000,0.000000,0.250000,0,0);}
.m89_c00450{transform:matrix(0.233695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233695,0.000000,0.000000,0.250000,0,0);}
.m116_c00450{transform:matrix(0.233900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233900,0.000000,0.000000,0.250000,0,0);}
.m68_c00450{transform:matrix(0.234380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234380,0.000000,0.000000,0.250000,0,0);}
.m61_c00450{transform:matrix(0.234525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234525,0.000000,0.000000,0.250000,0,0);}
.mc9_c00450{transform:matrix(0.235170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235170,0.000000,0.000000,0.250000,0,0);}
.m2d_c00450{transform:matrix(0.235650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235650,0.000000,0.000000,0.250000,0,0);}
.m133_c00450{transform:matrix(0.235673,0.003535,-0.003750,0.249972,0,0);-ms-transform:matrix(0.235673,0.003535,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.235673,0.003535,-0.003750,0.249972,0,0);}
.m8c_c00450{transform:matrix(0.235930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235930,0.000000,0.000000,0.250000,0,0);}
.m67_c00450{transform:matrix(0.235945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235945,0.000000,0.000000,0.250000,0,0);}
.m57_c00450{transform:matrix(0.236465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236465,0.000000,0.000000,0.250000,0,0);}
.m21_c00450{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.mb1_c00450{transform:matrix(0.237095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237095,0.000000,0.000000,0.250000,0,0);}
.m5c_c00450{transform:matrix(0.237105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237105,0.000000,0.000000,0.250000,0,0);}
.mc8_c00450{transform:matrix(0.237160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237160,0.000000,0.000000,0.250000,0,0);}
.m96_c00450{transform:matrix(0.237830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237830,0.000000,0.000000,0.250000,0,0);}
.mc5_c00450{transform:matrix(0.238260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238260,0.000000,0.000000,0.250000,0,0);}
.m132_c00450{transform:matrix(0.238363,0.003575,-0.003750,0.249972,0,0);-ms-transform:matrix(0.238363,0.003575,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.238363,0.003575,-0.003750,0.249972,0,0);}
.m76_c00450{transform:matrix(0.238470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238470,0.000000,0.000000,0.250000,0,0);}
.m1c_c00450{transform:matrix(0.238570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238570,0.000000,0.000000,0.250000,0,0);}
.m12e_c00450{transform:matrix(0.239563,0.003593,-0.003750,0.249972,0,0);-ms-transform:matrix(0.239563,0.003593,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.239563,0.003593,-0.003750,0.249972,0,0);}
.m75_c00450{transform:matrix(0.239945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239945,0.000000,0.000000,0.250000,0,0);}
.m60_c00450{transform:matrix(0.240015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240015,0.000000,0.000000,0.250000,0,0);}
.m6b_c00450{transform:matrix(0.240040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240040,0.000000,0.000000,0.250000,0,0);}
.m100_c00450{transform:matrix(0.240320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240320,0.000000,0.000000,0.250000,0,0);}
.m1e_c00450{transform:matrix(0.240485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240485,0.000000,0.000000,0.250000,0,0);}
.m5d_c00450{transform:matrix(0.240740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240740,0.000000,0.000000,0.250000,0,0);}
.mc_c00450{transform:matrix(0.241180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241180,0.000000,0.000000,0.250000,0,0);}
.mcb_c00450{transform:matrix(0.241470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241470,0.000000,0.000000,0.250000,0,0);}
.mb8_c00450{transform:matrix(0.241690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241690,0.000000,0.000000,0.250000,0,0);}
.m1a_c00450{transform:matrix(0.241860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241860,0.000000,0.000000,0.250000,0,0);}
.m7_c00450{transform:matrix(0.241870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241870,0.000000,0.000000,0.250000,0,0);}
.m1f_c00450{transform:matrix(0.242025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242025,0.000000,0.000000,0.250000,0,0);}
.mb7_c00450{transform:matrix(0.242145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242145,0.000000,0.000000,0.250000,0,0);}
.m103_c00450{transform:matrix(0.243080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243080,0.000000,0.000000,0.250000,0,0);}
.mcd_c00450{transform:matrix(0.243205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243205,0.000000,0.000000,0.250000,0,0);}
.m138_c00450{transform:matrix(0.243288,0.003649,-0.003750,0.249972,0,0);-ms-transform:matrix(0.243288,0.003649,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.243288,0.003649,-0.003750,0.249972,0,0);}
.m27_c00450{transform:matrix(0.243375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243375,0.000000,0.000000,0.250000,0,0);}
.m11f_c00450{transform:matrix(0.243455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243455,0.000000,0.000000,0.250000,0,0);}
.mf8_c00450{transform:matrix(0.243490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243490,0.000000,0.000000,0.250000,0,0);}
.mba_c00450{transform:matrix(0.243895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243895,0.000000,0.000000,0.250000,0,0);}
.mb4_c00450{transform:matrix(0.244085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244085,0.000000,0.000000,0.250000,0,0);}
.m94_c00450{transform:matrix(0.244095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244095,0.000000,0.000000,0.250000,0,0);}
.m105_c00450{transform:matrix(0.244255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244255,0.000000,0.000000,0.250000,0,0);}
.m101_c00450{transform:matrix(0.244805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244805,0.000000,0.000000,0.250000,0,0);}
.me8_c00450{transform:matrix(0.244910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244910,0.000000,0.000000,0.250000,0,0);}
.med_c00450{transform:matrix(0.245460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245460,0.000000,0.000000,0.250000,0,0);}
.mfa_c00450{transform:matrix(0.247375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247375,0.000000,0.000000,0.250000,0,0);}
.mee_c00450{transform:matrix(0.248425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248425,0.000000,0.000000,0.250000,0,0);}
.me4_c00450{transform:matrix(0.249130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249130,0.000000,0.000000,0.250000,0,0);}
.mce_c00450{transform:matrix(0.249400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249400,0.000000,0.000000,0.250000,0,0);}
.mff_c00450{transform:matrix(0.250010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250010,0.000000,0.000000,0.250000,0,0);}
.m28_c00450{transform:matrix(0.250690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250690,0.000000,0.000000,0.250000,0,0);}
.mea_c00450{transform:matrix(0.250950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250950,0.000000,0.000000,0.250000,0,0);}
.mfc_c00450{transform:matrix(0.251445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251445,0.000000,0.000000,0.250000,0,0);}
.mf4_c00450{transform:matrix(0.251755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251755,0.000000,0.000000,0.250000,0,0);}
.m97_c00450{transform:matrix(0.252845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252845,0.000000,0.000000,0.250000,0,0);}
.mf7_c00450{transform:matrix(0.254010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254010,0.000000,0.000000,0.250000,0,0);}
.m10c_c00450{transform:matrix(0.255055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255055,0.000000,0.000000,0.250000,0,0);}
.m107_c00450{transform:matrix(0.255765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255765,0.000000,0.000000,0.250000,0,0);}
.ma_c00450{transform:matrix(0.256815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256815,0.000000,0.000000,0.250000,0,0);}
.m12d_c00450{transform:matrix(0.258091,0.003871,-0.003750,0.249972,0,0);-ms-transform:matrix(0.258091,0.003871,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.258091,0.003871,-0.003750,0.249972,0,0);}
.m136_c00450{transform:matrix(0.258796,0.003882,-0.003750,0.249972,0,0);-ms-transform:matrix(0.258796,0.003882,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.258796,0.003882,-0.003750,0.249972,0,0);}
.m91_c00450{transform:matrix(0.259760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259760,0.000000,0.000000,0.250000,0,0);}
.m109_c00450{transform:matrix(0.260725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260725,0.000000,0.000000,0.250000,0,0);}
.me3_c00450{transform:matrix(0.260825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260825,0.000000,0.000000,0.250000,0,0);}
.m10e_c00450{transform:matrix(0.260930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260930,0.000000,0.000000,0.250000,0,0);}
.m106_c00450{transform:matrix(0.262475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262475,0.000000,0.000000,0.250000,0,0);}
.m102_c00450{transform:matrix(0.262785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262785,0.000000,0.000000,0.250000,0,0);}
.mf0_c00450{transform:matrix(0.262900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262900,0.000000,0.000000,0.250000,0,0);}
.m29_c00450{transform:matrix(0.262980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262980,0.000000,0.000000,0.250000,0,0);}
.me_c00450{transform:matrix(0.263655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263655,0.000000,0.000000,0.250000,0,0);}
.me9_c00450{transform:matrix(0.264090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264090,0.000000,0.000000,0.250000,0,0);}
.m108_c00450{transform:matrix(0.264365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264365,0.000000,0.000000,0.250000,0,0);}
.m84_c00450{transform:matrix(0.264595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264595,0.000000,0.000000,0.250000,0,0);}
.m112_c00450{transform:matrix(0.264920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264920,0.000000,0.000000,0.250000,0,0);}
.m87_c00450{transform:matrix(0.265135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265135,0.000000,0.000000,0.250000,0,0);}
.m131_c00450{transform:matrix(0.265400,0.003981,-0.003750,0.249972,0,0);-ms-transform:matrix(0.265400,0.003981,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.265400,0.003981,-0.003750,0.249972,0,0);}
.m25_c00450{transform:matrix(0.267235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267235,0.000000,0.000000,0.250000,0,0);}
.mf3_c00450{transform:matrix(0.270080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270080,0.000000,0.000000,0.250000,0,0);}
.m10d_c00450{transform:matrix(0.270895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270895,0.000000,0.000000,0.250000,0,0);}
.m8b_c00450{transform:matrix(0.271770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271770,0.000000,0.000000,0.250000,0,0);}
.m88_c00450{transform:matrix(0.272170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272170,0.000000,0.000000,0.250000,0,0);}
.m95_c00450{transform:matrix(0.272330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272330,0.000000,0.000000,0.250000,0,0);}
.mf5_c00450{transform:matrix(0.272855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272855,0.000000,0.000000,0.250000,0,0);}
.mf2_c00450{transform:matrix(0.272860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272860,0.000000,0.000000,0.250000,0,0);}
.m8a_c00450{transform:matrix(0.272985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272985,0.000000,0.000000,0.250000,0,0);}
.mf6_c00450{transform:matrix(0.273215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273215,0.000000,0.000000,0.250000,0,0);}
.m85_c00450{transform:matrix(0.273770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273770,0.000000,0.000000,0.250000,0,0);}
.m113_c00450{transform:matrix(0.275695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275695,0.000000,0.000000,0.250000,0,0);}
.m104_c00450{transform:matrix(0.276125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276125,0.000000,0.000000,0.250000,0,0);}
.m26_c00450{transform:matrix(0.276415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276415,0.000000,0.000000,0.250000,0,0);}
.m137_c00450{transform:matrix(0.276819,0.004152,-0.003750,0.249972,0,0);-ms-transform:matrix(0.276819,0.004152,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.276819,0.004152,-0.003750,0.249972,0,0);}
.m8d_c00450{transform:matrix(0.279645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279645,0.000000,0.000000,0.250000,0,0);}
.m90_c00450{transform:matrix(0.280855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280855,0.000000,0.000000,0.250000,0,0);}
.m2a_c00450{transform:matrix(0.281805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281805,0.000000,0.000000,0.250000,0,0);}
.m93_c00450{transform:matrix(0.282180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282180,0.000000,0.000000,0.250000,0,0);}
.m10b_c00450{transform:matrix(0.283305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283305,0.000000,0.000000,0.250000,0,0);}
.m92_c00450{transform:matrix(0.285035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285035,0.000000,0.000000,0.250000,0,0);}
.m6_c00450{transform:matrix(0.286100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286100,0.000000,0.000000,0.250000,0,0);}
.m8e_c00450{transform:matrix(0.286985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286985,0.000000,0.000000,0.250000,0,0);}
.m22_c00450{transform:matrix(0.287145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287145,0.000000,0.000000,0.250000,0,0);}
.m130_c00450{transform:matrix(0.290967,0.004365,-0.003750,0.249972,0,0);-ms-transform:matrix(0.290967,0.004365,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.290967,0.004365,-0.003750,0.249972,0,0);}
.me1_c00450{transform:matrix(0.320360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320360,0.000000,0.000000,0.250000,0,0);}
.mec_c00450{transform:matrix(0.346930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346930,0.000000,0.000000,0.250000,0,0);}
.m111_c00450{transform:matrix(0.355605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355605,0.000000,0.000000,0.250000,0,0);}
.m10f_c00450{transform:matrix(0.433915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433915,0.000000,0.000000,0.250000,0,0);}
.m110_c00450{transform:matrix(0.464500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.464500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.464500,0.000000,0.000000,0.250000,0,0);}
.m12f_c00450{transform:matrix(0.489755,0.007346,-0.003750,0.249972,0,0);-ms-transform:matrix(0.489755,0.007346,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.489755,0.007346,-0.003750,0.249972,0,0);}
.v0_c00450{vertical-align:0.000000px;}
.ls0_c00450{letter-spacing:0.000000px;}
.sc__c00450{text-shadow:none;}
.sc0_c00450{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__c00450{-webkit-text-stroke:0px transparent;}
.sc0_c00450{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00450{word-spacing:0.000000px;}
.fc0_c00450{color:transparent;}
.fs0_c00450{font-size:72.000000px;}
.fs7_c00450{font-size:72.008100px;}
.fs2_c00450{font-size:78.000000px;}
.fs4_c00450{font-size:84.000000px;}
.fs5_c00450{font-size:90.000000px;}
.fs8_c00450{font-size:90.007605px;}
.fs3_c00450{font-size:96.000000px;}
.fs6_c00450{font-size:102.000000px;}
.fs1_c00450{font-size:102.011474px;}
.y0_c00450{bottom:0.000000px;}
.yb7_c00450{bottom:48.818329px;}
.yb6_c00450{bottom:50.131420px;}
.yb5_c00450{bottom:50.858108px;}
.yb4_c00450{bottom:51.581343px;}
.yb3_c00450{bottom:52.297598px;}
.yb2_c00450{bottom:52.725779px;}
.yb1_c00450{bottom:53.006696px;}
.yb0_c00450{bottom:53.708871px;}
.yaf_c00450{bottom:54.168740px;}
.yae_c00450{bottom:56.021688px;}
.yad_c00450{bottom:56.431500px;}
.yac_c00450{bottom:87.233752px;}
.yab_c00450{bottom:88.728450px;}
.yaa_c00450{bottom:89.741377px;}
.ya9_c00450{bottom:90.235365px;}
.ya8_c00450{bottom:90.725550px;}
.ya7_c00450{bottom:91.398075px;}
.ya6_c00450{bottom:92.066437px;}
.ya5_c00450{bottom:93.220305px;}
.ya4_c00450{bottom:93.670282px;}
.ya3_c00450{bottom:94.168072px;}
.ya2_c00450{bottom:94.373025px;}
.ya1_c00450{bottom:95.041500px;}
.ya0_c00450{bottom:131.760000px;}
.y9f_c00450{bottom:137.379000px;}
.y9e_c00450{bottom:170.530500px;}
.y90_c00450{bottom:211.680000px;}
.y91_c00450{bottom:211.996500px;}
.y92_c00450{bottom:212.527500px;}
.y93_c00450{bottom:212.913000px;}
.y94_c00450{bottom:213.141000px;}
.y95_c00450{bottom:213.601500px;}
.y96_c00450{bottom:213.763500px;}
.y97_c00450{bottom:213.925500px;}
.y98_c00450{bottom:214.921500px;}
.y99_c00450{bottom:215.082000px;}
.y9a_c00450{bottom:215.628000px;}
.y9b_c00450{bottom:216.022500px;}
.y9c_c00450{bottom:216.259500px;}
.y9d_c00450{bottom:216.730500px;}
.y8f_c00450{bottom:248.320500px;}
.y8e_c00450{bottom:248.815500px;}
.y8d_c00450{bottom:249.843000px;}
.y8c_c00450{bottom:250.525500px;}
.y8b_c00450{bottom:250.744500px;}
.y8a_c00450{bottom:251.527500px;}
.y89_c00450{bottom:251.734500px;}
.y88_c00450{bottom:252.031500px;}
.y87_c00450{bottom:252.639000px;}
.y86_c00450{bottom:252.930000px;}
.y85_c00450{bottom:253.627500px;}
.y84_c00450{bottom:254.016000px;}
.y83_c00450{bottom:254.611500px;}
.y82_c00450{bottom:287.221500px;}
.y81_c00450{bottom:319.474500px;}
.y80_c00450{bottom:319.929000px;}
.y7f_c00450{bottom:320.322000px;}
.y7e_c00450{bottom:321.181500px;}
.y7d_c00450{bottom:321.648000px;}
.y7c_c00450{bottom:321.876000px;}
.y7b_c00450{bottom:322.261500px;}
.y7a_c00450{bottom:322.573500px;}
.y79_c00450{bottom:323.269500px;}
.y78_c00450{bottom:324.046500px;}
.y77_c00450{bottom:324.271500px;}
.y76_c00450{bottom:355.135500px;}
.y75_c00450{bottom:391.849500px;}
.y74_c00450{bottom:429.106500px;}
.y73_c00450{bottom:467.838000px;}
.y70_c00450{bottom:500.320500px;}
.y71_c00450{bottom:502.108500px;}
.y72_c00450{bottom:502.800000px;}
.y6f_c00450{bottom:540.433500px;}
.y6e_c00450{bottom:575.547000px;}
.y6d_c00450{bottom:608.029500px;}
.y6c_c00450{bottom:643.957500px;}
.y6b_c00450{bottom:679.321500px;}
.y6a_c00450{bottom:716.602500px;}
.y69_c00450{bottom:753.126000px;}
.y5e_c00450{bottom:785.437500px;}
.y5f_c00450{bottom:786.102000px;}
.y60_c00450{bottom:786.331500px;}
.y61_c00450{bottom:787.198500px;}
.y62_c00450{bottom:787.752000px;}
.y63_c00450{bottom:788.200500px;}
.y64_c00450{bottom:789.078000px;}
.y65_c00450{bottom:789.976500px;}
.y66_c00450{bottom:790.303500px;}
.y67_c00450{bottom:791.083500px;}
.y68_c00450{bottom:791.988000px;}
.y54_c00450{bottom:821.077500px;}
.y55_c00450{bottom:821.607000px;}
.y56_c00450{bottom:822.043500px;}
.y57_c00450{bottom:822.315000px;}
.y58_c00450{bottom:823.189500px;}
.y59_c00450{bottom:823.995000px;}
.y5a_c00450{bottom:824.254500px;}
.y5b_c00450{bottom:824.971500px;}
.y5c_c00450{bottom:825.331500px;}
.y5d_c00450{bottom:826.224000px;}
.y46_c00450{bottom:859.144500px;}
.y47_c00450{bottom:859.588500px;}
.y48_c00450{bottom:859.755000px;}
.y49_c00450{bottom:860.190000px;}
.y4a_c00450{bottom:860.304000px;}
.y4b_c00450{bottom:860.472000px;}
.y4c_c00450{bottom:860.641500px;}
.y4d_c00450{bottom:860.916000px;}
.y4e_c00450{bottom:861.262500px;}
.y4f_c00450{bottom:861.577500px;}
.y50_c00450{bottom:861.748500px;}
.y51_c00450{bottom:861.916500px;}
.y52_c00450{bottom:862.084500px;}
.y53_c00450{bottom:862.644000px;}
.y3b_c00450{bottom:892.353000px;}
.y3c_c00450{bottom:893.053500px;}
.y3d_c00450{bottom:893.550000px;}
.y3e_c00450{bottom:894.444000px;}
.y3f_c00450{bottom:894.748500px;}
.y40_c00450{bottom:895.353000px;}
.y41_c00450{bottom:895.933500px;}
.y42_c00450{bottom:896.347500px;}
.y43_c00450{bottom:896.950500px;}
.y44_c00450{bottom:897.949500px;}
.y45_c00450{bottom:898.552500px;}
.y30_c00450{bottom:930.150000px;}
.y31_c00450{bottom:930.486000px;}
.y32_c00450{bottom:930.738000px;}
.y33_c00450{bottom:931.141500px;}
.y34_c00450{bottom:931.668000px;}
.y35_c00450{bottom:932.334000px;}
.y36_c00450{bottom:932.661000px;}
.y37_c00450{bottom:932.863500px;}
.y38_c00450{bottom:933.528000px;}
.y39_c00450{bottom:934.069500px;}
.y3a_c00450{bottom:934.270500px;}
.y25_c00450{bottom:964.980000px;}
.y26_c00450{bottom:965.247000px;}
.y27_c00450{bottom:965.776500px;}
.y28_c00450{bottom:965.958000px;}
.y29_c00450{bottom:967.009500px;}
.y2a_c00450{bottom:967.285500px;}
.y2b_c00450{bottom:968.070000px;}
.y2c_c00450{bottom:968.610000px;}
.y2d_c00450{bottom:969.495000px;}
.y2e_c00450{bottom:969.763500px;}
.y2f_c00450{bottom:970.117500px;}
.y1b_c00450{bottom:1003.050000px;}
.y1c_c00450{bottom:1003.447500px;}
.y1d_c00450{bottom:1003.615500px;}
.y1e_c00450{bottom:1003.780500px;}
.y1f_c00450{bottom:1004.217000px;}
.y20_c00450{bottom:1004.826000px;}
.y21_c00450{bottom:1005.103500px;}
.y22_c00450{bottom:1005.328500px;}
.y23_c00450{bottom:1005.714000px;}
.y24_c00450{bottom:1005.939000px;}
.y12_c00450{bottom:1035.990000px;}
.y13_c00450{bottom:1036.213500px;}
.y14_c00450{bottom:1037.059500px;}
.y15_c00450{bottom:1037.454000px;}
.y16_c00450{bottom:1038.144000px;}
.y17_c00450{bottom:1038.463500px;}
.y18_c00450{bottom:1039.386000px;}
.y19_c00450{bottom:1040.176500px;}
.y1a_c00450{bottom:1040.482500px;}
.y8_c00450{bottom:1072.980000px;}
.y9_c00450{bottom:1073.197500px;}
.ya_c00450{bottom:1073.637000px;}
.yb_c00450{bottom:1074.084000px;}
.yc_c00450{bottom:1074.246000px;}
.yd_c00450{bottom:1074.741000px;}
.ye_c00450{bottom:1075.081500px;}
.yf_c00450{bottom:1075.465500px;}
.y10_c00450{bottom:1075.579500px;}
.y11_c00450{bottom:1076.137500px;}
.y7_c00450{bottom:1110.900000px;}
.y2_c00450{bottom:1143.453000px;}
.y3_c00450{bottom:1143.964402px;}
.y4_c00450{bottom:1145.101778px;}
.y5_c00450{bottom:1145.442967px;}
.y6_c00450{bottom:1147.124370px;}
.y1_c00450{bottom:1204.200000px;}
.h2_c00450{height:72.000000px;}
.h9_c00450{height:72.008100px;}
.h4_c00450{height:78.000000px;}
.h6_c00450{height:84.000000px;}
.h7_c00450{height:90.000000px;}
.ha_c00450{height:90.007605px;}
.h5_c00450{height:96.000000px;}
.h8_c00450{height:102.000000px;}
.h3_c00450{height:102.011474px;}
.h0_c00450{height:1251.450000px;}
.h1_c00450{height:1251.750000px;}
.w0_c00450{width:915.000000px;}
.x0_c00450{left:0.000000px;}
.x2_c00450{left:148.392000px;}
.x18_c00450{left:149.937000px;}
.x3c_c00450{left:150.987000px;}
.x2d_c00450{left:152.076000px;}
.x53_c00450{left:153.357000px;}
.x70_c00450{left:154.707000px;}
.x92_c00450{left:156.060000px;}
.xac_c00450{left:157.885500px;}
.xba_c00450{left:158.953500px;}
.xd0_c00450{left:160.380000px;}
.xd6_c00450{left:162.949500px;}
.x3_c00450{left:182.485500px;}
.x93_c00450{left:189.810000px;}
.x10_c00450{left:192.582000px;}
.xd7_c00450{left:194.473500px;}
.x9a_c00450{left:200.340000px;}
.xc4_c00450{left:204.520500px;}
.x2e_c00450{left:207.963000px;}
.x54_c00450{left:209.787000px;}
.x46_c00450{left:218.022000px;}
.x79_c00450{left:219.777000px;}
.xbb_c00450{left:225.054000px;}
.x1f_c00450{left:227.127000px;}
.x3d_c00450{left:239.818500px;}
.x4c_c00450{left:241.549500px;}
.x83_c00450{left:242.727000px;}
.x9b_c00450{left:244.620000px;}
.x7_c00450{left:247.320000px;}
.x26_c00450{left:249.628500px;}
.x55_c00450{left:250.827000px;}
.xd4_c00450{left:251.959500px;}
.x64_c00450{left:253.527000px;}
.xa4_c00450{left:256.230000px;}
.x4_c00450{left:258.310500px;}
.x20_c00450{left:260.599500px;}
.x6b_c00450{left:264.057000px;}
.x88_c00450{left:265.941000px;}
.xb3_c00450{left:268.917000px;}
.x27_c00450{left:272.286000px;}
.x56_c00450{left:273.507000px;}
.x5_c00450{left:281.056500px;}
.x34_c00450{left:283.119000px;}
.x60_c00450{left:285.117000px;}
.x7a_c00450{left:287.007000px;}
.xa5_c00450{left:289.980000px;}
.x21_c00450{left:293.557500px;}
.x6c_c00450{left:295.917000px;}
.x89_c00450{left:298.620000px;}
.xad_c00450{left:300.951000px;}
.x19_c00450{left:302.760000px;}
.x47_c00450{left:306.592500px;}
.x57_c00450{left:308.337000px;}
.x2f_c00450{left:317.098500px;}
.x9c_c00450{left:322.110000px;}
.x8_c00450{left:324.540000px;}
.x4d_c00450{left:328.183500px;}
.x71_c00450{left:332.367000px;}
.xb4_c00450{left:335.337000px;}
.xcc_c00450{left:336.420000px;}
.x58_c00450{left:339.657000px;}
.x7b_c00450{left:341.817000px;}
.xbc_c00450{left:345.717000px;}
.x65_c00450{left:352.347000px;}
.x9d_c00450{left:355.320000px;}
.x1a_c00450{left:359.215500px;}
.x7c_c00450{left:364.227000px;}
.x8a_c00450{left:365.580000px;}
.xc5_c00450{left:368.146500px;}
.x11_c00450{left:369.979500px;}
.x59_c00450{left:373.137000px;}
.x94_c00450{left:376.380000px;}
.xbd_c00450{left:378.112500px;}
.x22_c00450{left:380.772000px;}
.x35_c00450{left:382.476000px;}
.x4e_c00450{left:383.533500px;}
.x66_c00450{left:385.017000px;}
.x9_c00450{left:390.960000px;}
.x6_c00450{left:393.150000px;}
.x6d_c00450{left:396.897000px;}
.xa6_c00450{left:399.600000px;}
.x1_c00450{left:400.680000px;}
.x12_c00450{left:402.381000px;}
.x28_c00450{left:403.755000px;}
.x30_c00450{left:404.824500px;}
.x36_c00450{left:416.241000px;}
.x72_c00450{left:418.497000px;}
.xc9_c00450{left:425.247000px;}
.xd8_c00450{left:426.396000px;}
.x4f_c00450{left:428.379000px;}
.xb5_c00450{left:434.427000px;}
.x29_c00450{left:438.334500px;}
.xa7_c00450{left:444.420000px;}
.xa_c00450{left:446.310000px;}
.xd5_c00450{left:448.275000px;}
.x3e_c00450{left:449.899500px;}
.x8b_c00450{left:453.870000px;}
.x1b_c00450{left:457.764000px;}
.x7d_c00450{left:463.587000px;}
.x95_c00450{left:466.020000px;}
.x67_c00450{left:472.497000px;}
.x73_c00450{left:474.657000px;}
.x9e_c00450{left:477.360000px;}
.xbe_c00450{left:478.584000px;}
.xb_c00450{left:480.060000px;}
.x37_c00450{left:483.456000px;}
.x8c_c00450{left:487.080000px;}
.x5a_c00450{left:494.907000px;}
.x84_c00450{left:497.607000px;}
.xae_c00450{left:499.914000px;}
.x13_c00450{left:501.492000px;}
.x1c_c00450{left:503.392500px;}
.x3f_c00450{left:504.708000px;}
.x7e_c00450{left:508.137000px;}
.x9f_c00450{left:511.380000px;}
.xcd_c00450{left:513.540000px;}
.x31_c00450{left:515.790000px;}
.x61_c00450{left:517.587000px;}
.x96_c00450{left:520.560000px;}
.xb6_c00450{left:523.257000px;}
.xaf_c00450{left:532.591500px;}
.x2a_c00450{left:536.340000px;}
.x8d_c00450{left:542.430000px;}
.xca_c00450{left:546.747000px;}
.x38_c00450{left:547.951500px;}
.x48_c00450{left:549.073500px;}
.x5b_c00450{left:550.257000px;}
.x68_c00450{left:551.607000px;}
.xa0_c00450{left:555.120000px;}
.x23_c00450{left:558.144000px;}
.x14_c00450{left:569.509500px;}
.x40_c00450{left:574.113000px;}
.xce_c00450{left:580.500000px;}
.x5c_c00450{left:582.927000px;}
.x74_c00450{left:585.627000px;}
.xa8_c00450{left:587.250000px;}
.xbf_c00450{left:588.480000px;}
.xd9_c00450{left:591.672000px;}
.x39_c00450{left:593.874000px;}
.x7f_c00450{left:596.157000px;}
.x8e_c00450{left:597.240000px;}
.xb0_c00450{left:599.280000px;}
.xb7_c00450{left:600.747000px;}
.xc_c00450{left:602.640000px;}
.x2b_c00450{left:603.840000px;}
.x50_c00450{left:605.991000px;}
.x85_c00450{left:608.577000px;}
.xc0_c00450{left:612.766500px;}
.xcf_c00450{left:614.520000px;}
.x75_c00450{left:619.107000px;}
.xc6_c00450{left:622.698000px;}
.x97_c00450{left:630.990000px;}
.xd_c00450{left:634.770000px;}
.x41_c00450{left:637.009500px;}
.x49_c00450{left:638.673000px;}
.x80_c00450{left:641.247000px;}
.x15_c00450{left:646.441500px;}
.xda_c00450{left:647.571000px;}
.x5d_c00450{left:650.427000px;}
.xa1_c00450{left:654.480000px;}
.xd1_c00450{left:658.260000px;}
.x3a_c00450{left:660.865500px;}
.x69_c00450{left:662.307000px;}
.x8f_c00450{left:665.010000px;}
.xa9_c00450{left:666.090000px;}
.x16_c00450{left:669.136500px;}
.x42_c00450{left:671.298000px;}
.x76_c00450{left:673.917000px;}
.x81_c00450{left:674.997000px;}
.x98_c00450{left:676.620000px;}
.x24_c00450{left:680.452500px;}
.x4a_c00450{left:683.760000px;}
.x86_c00450{left:685.257000px;}
.xc1_c00450{left:688.654500px;}
.xe_c00450{left:690.120000px;}
.xa2_c00450{left:698.760000px;}
.xaa_c00450{left:700.110000px;}
.x43_c00450{left:705.045000px;}
.x6e_c00450{left:707.667000px;}
.x90_c00450{left:710.370000px;}
.x2c_c00450{left:714.535500px;}
.x51_c00450{left:716.707500px;}
.x77_c00450{left:719.547000px;}
.xb1_c00450{left:722.145000px;}
.xf_c00450{left:723.600000px;}
.x25_c00450{left:725.554500px;}
.x87_c00450{left:731.427000px;}
.xa3_c00450{left:734.130000px;}
.x44_c00450{left:738.525000px;}
.x6f_c00450{left:740.337000px;}
.x1d_c00450{left:748.006500px;}
.x62_c00450{left:752.757000px;}
.xb8_c00450{left:757.077000px;}
.xd2_c00450{left:759.240000px;}
.x3b_c00450{left:771.829500px;}
.x5e_c00450{left:774.357000px;}
.xb2_c00450{left:778.309500px;}
.x17_c00450{left:780.670500px;}
.x6a_c00450{left:786.507000px;}
.x91_c00450{left:787.860000px;}
.x1e_c00450{left:791.742000px;}
.x4b_c00450{left:795.262500px;}
.x82_c00450{left:797.577000px;}
.xc2_c00450{left:802.855500px;}
.x32_c00450{left:804.954000px;}
.x52_c00450{left:807.145500px;}
.x99_c00450{left:809.730000px;}
.xc7_c00450{left:813.960000px;}
.x63_c00450{left:818.367000px;}
.xd3_c00450{left:825.660000px;}
.x78_c00450{left:831.327000px;}
.xb9_c00450{left:835.647000px;}
.x33_c00450{left:838.435500px;}
.x5f_c00450{left:840.507000px;}
.xab_c00450{left:844.020000px;}
.x45_c00450{left:850.300500px;}
.xc3_c00450{left:857.787000px;}
.xc8_c00450{left:881.181000px;}
.xcb_c00450{left:900.717000px;}
@media print{
.v0_c00450{vertical-align:0.000000pt;}
.ls0_c00450{letter-spacing:0.000000pt;}
.ws0_c00450{word-spacing:0.000000pt;}
.fs0_c00450{font-size:64.000000pt;}
.fs7_c00450{font-size:64.007200pt;}
.fs2_c00450{font-size:69.333333pt;}
.fs4_c00450{font-size:74.666667pt;}
.fs5_c00450{font-size:80.000000pt;}
.fs8_c00450{font-size:80.006760pt;}
.fs3_c00450{font-size:85.333333pt;}
.fs6_c00450{font-size:90.666667pt;}
.fs1_c00450{font-size:90.676866pt;}
.y0_c00450{bottom:0.000000pt;}
.yb7_c00450{bottom:43.394071pt;}
.yb6_c00450{bottom:44.561263pt;}
.yb5_c00450{bottom:45.207207pt;}
.yb4_c00450{bottom:45.850083pt;}
.yb3_c00450{bottom:46.486753pt;}
.yb2_c00450{bottom:46.867359pt;}
.yb1_c00450{bottom:47.117063pt;}
.yb0_c00450{bottom:47.741219pt;}
.yaf_c00450{bottom:48.149991pt;}
.yae_c00450{bottom:49.797056pt;}
.yad_c00450{bottom:50.161333pt;}
.yac_c00450{bottom:77.541113pt;}
.yab_c00450{bottom:78.869733pt;}
.yaa_c00450{bottom:79.770113pt;}
.ya9_c00450{bottom:80.209213pt;}
.ya8_c00450{bottom:80.644933pt;}
.ya7_c00450{bottom:81.242733pt;}
.ya6_c00450{bottom:81.836833pt;}
.ya5_c00450{bottom:82.862493pt;}
.ya4_c00450{bottom:83.262473pt;}
.ya3_c00450{bottom:83.704953pt;}
.ya2_c00450{bottom:83.887133pt;}
.ya1_c00450{bottom:84.481333pt;}
.ya0_c00450{bottom:117.120000pt;}
.y9f_c00450{bottom:122.114667pt;}
.y9e_c00450{bottom:151.582667pt;}
.y90_c00450{bottom:188.160000pt;}
.y91_c00450{bottom:188.441333pt;}
.y92_c00450{bottom:188.913333pt;}
.y93_c00450{bottom:189.256000pt;}
.y94_c00450{bottom:189.458667pt;}
.y95_c00450{bottom:189.868000pt;}
.y96_c00450{bottom:190.012000pt;}
.y97_c00450{bottom:190.156000pt;}
.y98_c00450{bottom:191.041333pt;}
.y99_c00450{bottom:191.184000pt;}
.y9a_c00450{bottom:191.669333pt;}
.y9b_c00450{bottom:192.020000pt;}
.y9c_c00450{bottom:192.230667pt;}
.y9d_c00450{bottom:192.649333pt;}
.y8f_c00450{bottom:220.729333pt;}
.y8e_c00450{bottom:221.169333pt;}
.y8d_c00450{bottom:222.082667pt;}
.y8c_c00450{bottom:222.689333pt;}
.y8b_c00450{bottom:222.884000pt;}
.y8a_c00450{bottom:223.580000pt;}
.y89_c00450{bottom:223.764000pt;}
.y88_c00450{bottom:224.028000pt;}
.y87_c00450{bottom:224.568000pt;}
.y86_c00450{bottom:224.826667pt;}
.y85_c00450{bottom:225.446667pt;}
.y84_c00450{bottom:225.792000pt;}
.y83_c00450{bottom:226.321333pt;}
.y82_c00450{bottom:255.308000pt;}
.y81_c00450{bottom:283.977333pt;}
.y80_c00450{bottom:284.381333pt;}
.y7f_c00450{bottom:284.730667pt;}
.y7e_c00450{bottom:285.494667pt;}
.y7d_c00450{bottom:285.909333pt;}
.y7c_c00450{bottom:286.112000pt;}
.y7b_c00450{bottom:286.454667pt;}
.y7a_c00450{bottom:286.732000pt;}
.y79_c00450{bottom:287.350667pt;}
.y78_c00450{bottom:288.041333pt;}
.y77_c00450{bottom:288.241333pt;}
.y76_c00450{bottom:315.676000pt;}
.y75_c00450{bottom:348.310667pt;}
.y74_c00450{bottom:381.428000pt;}
.y73_c00450{bottom:415.856000pt;}
.y70_c00450{bottom:444.729333pt;}
.y71_c00450{bottom:446.318667pt;}
.y72_c00450{bottom:446.933333pt;}
.y6f_c00450{bottom:480.385333pt;}
.y6e_c00450{bottom:511.597333pt;}
.y6d_c00450{bottom:540.470667pt;}
.y6c_c00450{bottom:572.406667pt;}
.y6b_c00450{bottom:603.841333pt;}
.y6a_c00450{bottom:636.980000pt;}
.y69_c00450{bottom:669.445333pt;}
.y5e_c00450{bottom:698.166667pt;}
.y5f_c00450{bottom:698.757333pt;}
.y60_c00450{bottom:698.961333pt;}
.y61_c00450{bottom:699.732000pt;}
.y62_c00450{bottom:700.224000pt;}
.y63_c00450{bottom:700.622667pt;}
.y64_c00450{bottom:701.402667pt;}
.y65_c00450{bottom:702.201333pt;}
.y66_c00450{bottom:702.492000pt;}
.y67_c00450{bottom:703.185333pt;}
.y68_c00450{bottom:703.989333pt;}
.y54_c00450{bottom:729.846667pt;}
.y55_c00450{bottom:730.317333pt;}
.y56_c00450{bottom:730.705333pt;}
.y57_c00450{bottom:730.946667pt;}
.y58_c00450{bottom:731.724000pt;}
.y59_c00450{bottom:732.440000pt;}
.y5a_c00450{bottom:732.670667pt;}
.y5b_c00450{bottom:733.308000pt;}
.y5c_c00450{bottom:733.628000pt;}
.y5d_c00450{bottom:734.421333pt;}
.y46_c00450{bottom:763.684000pt;}
.y47_c00450{bottom:764.078667pt;}
.y48_c00450{bottom:764.226667pt;}
.y49_c00450{bottom:764.613333pt;}
.y4a_c00450{bottom:764.714667pt;}
.y4b_c00450{bottom:764.864000pt;}
.y4c_c00450{bottom:765.014667pt;}
.y4d_c00450{bottom:765.258667pt;}
.y4e_c00450{bottom:765.566667pt;}
.y4f_c00450{bottom:765.846667pt;}
.y50_c00450{bottom:765.998667pt;}
.y51_c00450{bottom:766.148000pt;}
.y52_c00450{bottom:766.297333pt;}
.y53_c00450{bottom:766.794667pt;}
.y3b_c00450{bottom:793.202667pt;}
.y3c_c00450{bottom:793.825333pt;}
.y3d_c00450{bottom:794.266667pt;}
.y3e_c00450{bottom:795.061333pt;}
.y3f_c00450{bottom:795.332000pt;}
.y40_c00450{bottom:795.869333pt;}
.y41_c00450{bottom:796.385333pt;}
.y42_c00450{bottom:796.753333pt;}
.y43_c00450{bottom:797.289333pt;}
.y44_c00450{bottom:798.177333pt;}
.y45_c00450{bottom:798.713333pt;}
.y30_c00450{bottom:826.800000pt;}
.y31_c00450{bottom:827.098667pt;}
.y32_c00450{bottom:827.322667pt;}
.y33_c00450{bottom:827.681333pt;}
.y34_c00450{bottom:828.149333pt;}
.y35_c00450{bottom:828.741333pt;}
.y36_c00450{bottom:829.032000pt;}
.y37_c00450{bottom:829.212000pt;}
.y38_c00450{bottom:829.802667pt;}
.y39_c00450{bottom:830.284000pt;}
.y3a_c00450{bottom:830.462667pt;}
.y25_c00450{bottom:857.760000pt;}
.y26_c00450{bottom:857.997333pt;}
.y27_c00450{bottom:858.468000pt;}
.y28_c00450{bottom:858.629333pt;}
.y29_c00450{bottom:859.564000pt;}
.y2a_c00450{bottom:859.809333pt;}
.y2b_c00450{bottom:860.506667pt;}
.y2c_c00450{bottom:860.986667pt;}
.y2d_c00450{bottom:861.773333pt;}
.y2e_c00450{bottom:862.012000pt;}
.y2f_c00450{bottom:862.326667pt;}
.y1b_c00450{bottom:891.600000pt;}
.y1c_c00450{bottom:891.953333pt;}
.y1d_c00450{bottom:892.102667pt;}
.y1e_c00450{bottom:892.249333pt;}
.y1f_c00450{bottom:892.637333pt;}
.y20_c00450{bottom:893.178667pt;}
.y21_c00450{bottom:893.425333pt;}
.y22_c00450{bottom:893.625333pt;}
.y23_c00450{bottom:893.968000pt;}
.y24_c00450{bottom:894.168000pt;}
.y12_c00450{bottom:920.880000pt;}
.y13_c00450{bottom:921.078667pt;}
.y14_c00450{bottom:921.830667pt;}
.y15_c00450{bottom:922.181333pt;}
.y16_c00450{bottom:922.794667pt;}
.y17_c00450{bottom:923.078667pt;}
.y18_c00450{bottom:923.898667pt;}
.y19_c00450{bottom:924.601333pt;}
.y1a_c00450{bottom:924.873333pt;}
.y8_c00450{bottom:953.760000pt;}
.y9_c00450{bottom:953.953333pt;}
.ya_c00450{bottom:954.344000pt;}
.yb_c00450{bottom:954.741333pt;}
.yc_c00450{bottom:954.885333pt;}
.yd_c00450{bottom:955.325333pt;}
.ye_c00450{bottom:955.628000pt;}
.yf_c00450{bottom:955.969333pt;}
.y10_c00450{bottom:956.070667pt;}
.y11_c00450{bottom:956.566667pt;}
.y7_c00450{bottom:987.466667pt;}
.y2_c00450{bottom:1016.402667pt;}
.y3_c00450{bottom:1016.857247pt;}
.y4_c00450{bottom:1017.868247pt;}
.y5_c00450{bottom:1018.171527pt;}
.y6_c00450{bottom:1019.666107pt;}
.y1_c00450{bottom:1070.400000pt;}
.h2_c00450{height:64.000000pt;}
.h9_c00450{height:64.007200pt;}
.h4_c00450{height:69.333333pt;}
.h6_c00450{height:74.666667pt;}
.h7_c00450{height:80.000000pt;}
.ha_c00450{height:80.006760pt;}
.h5_c00450{height:85.333333pt;}
.h8_c00450{height:90.666667pt;}
.h3_c00450{height:90.676866pt;}
.h0_c00450{height:1112.400000pt;}
.h1_c00450{height:1112.666667pt;}
.w0_c00450{width:813.333333pt;}
.x0_c00450{left:0.000000pt;}
.x2_c00450{left:131.904000pt;}
.x18_c00450{left:133.277333pt;}
.x3c_c00450{left:134.210667pt;}
.x2d_c00450{left:135.178667pt;}
.x53_c00450{left:136.317333pt;}
.x70_c00450{left:137.517333pt;}
.x92_c00450{left:138.720000pt;}
.xac_c00450{left:140.342667pt;}
.xba_c00450{left:141.292000pt;}
.xd0_c00450{left:142.560000pt;}
.xd6_c00450{left:144.844000pt;}
.x3_c00450{left:162.209333pt;}
.x93_c00450{left:168.720000pt;}
.x10_c00450{left:171.184000pt;}
.xd7_c00450{left:172.865333pt;}
.x9a_c00450{left:178.080000pt;}
.xc4_c00450{left:181.796000pt;}
.x2e_c00450{left:184.856000pt;}
.x54_c00450{left:186.477333pt;}
.x46_c00450{left:193.797333pt;}
.x79_c00450{left:195.357333pt;}
.xbb_c00450{left:200.048000pt;}
.x1f_c00450{left:201.890667pt;}
.x3d_c00450{left:213.172000pt;}
.x4c_c00450{left:214.710667pt;}
.x83_c00450{left:215.757333pt;}
.x9b_c00450{left:217.440000pt;}
.x7_c00450{left:219.840000pt;}
.x26_c00450{left:221.892000pt;}
.x55_c00450{left:222.957333pt;}
.xd4_c00450{left:223.964000pt;}
.x64_c00450{left:225.357333pt;}
.xa4_c00450{left:227.760000pt;}
.x4_c00450{left:229.609333pt;}
.x20_c00450{left:231.644000pt;}
.x6b_c00450{left:234.717333pt;}
.x88_c00450{left:236.392000pt;}
.xb3_c00450{left:239.037333pt;}
.x27_c00450{left:242.032000pt;}
.x56_c00450{left:243.117333pt;}
.x5_c00450{left:249.828000pt;}
.x34_c00450{left:251.661333pt;}
.x60_c00450{left:253.437333pt;}
.x7a_c00450{left:255.117333pt;}
.xa5_c00450{left:257.760000pt;}
.x21_c00450{left:260.940000pt;}
.x6c_c00450{left:263.037333pt;}
.x89_c00450{left:265.440000pt;}
.xad_c00450{left:267.512000pt;}
.x19_c00450{left:269.120000pt;}
.x47_c00450{left:272.526667pt;}
.x57_c00450{left:274.077333pt;}
.x2f_c00450{left:281.865333pt;}
.x9c_c00450{left:286.320000pt;}
.x8_c00450{left:288.480000pt;}
.x4d_c00450{left:291.718667pt;}
.x71_c00450{left:295.437333pt;}
.xb4_c00450{left:298.077333pt;}
.xcc_c00450{left:299.040000pt;}
.x58_c00450{left:301.917333pt;}
.x7b_c00450{left:303.837333pt;}
.xbc_c00450{left:307.304000pt;}
.x65_c00450{left:313.197333pt;}
.x9d_c00450{left:315.840000pt;}
.x1a_c00450{left:319.302667pt;}
.x7c_c00450{left:323.757333pt;}
.x8a_c00450{left:324.960000pt;}
.xc5_c00450{left:327.241333pt;}
.x11_c00450{left:328.870667pt;}
.x59_c00450{left:331.677333pt;}
.x94_c00450{left:334.560000pt;}
.xbd_c00450{left:336.100000pt;}
.x22_c00450{left:338.464000pt;}
.x35_c00450{left:339.978667pt;}
.x4e_c00450{left:340.918667pt;}
.x66_c00450{left:342.237333pt;}
.x9_c00450{left:347.520000pt;}
.x6_c00450{left:349.466667pt;}
.x6d_c00450{left:352.797333pt;}
.xa6_c00450{left:355.200000pt;}
.x1_c00450{left:356.160000pt;}
.x12_c00450{left:357.672000pt;}
.x28_c00450{left:358.893333pt;}
.x30_c00450{left:359.844000pt;}
.x36_c00450{left:369.992000pt;}
.x72_c00450{left:371.997333pt;}
.xc9_c00450{left:377.997333pt;}
.xd8_c00450{left:379.018667pt;}
.x4f_c00450{left:380.781333pt;}
.xb5_c00450{left:386.157333pt;}
.x29_c00450{left:389.630667pt;}
.xa7_c00450{left:395.040000pt;}
.xa_c00450{left:396.720000pt;}
.xd5_c00450{left:398.466667pt;}
.x3e_c00450{left:399.910667pt;}
.x8b_c00450{left:403.440000pt;}
.x1b_c00450{left:406.901333pt;}
.x7d_c00450{left:412.077333pt;}
.x95_c00450{left:414.240000pt;}
.x67_c00450{left:419.997333pt;}
.x73_c00450{left:421.917333pt;}
.x9e_c00450{left:424.320000pt;}
.xbe_c00450{left:425.408000pt;}
.xb_c00450{left:426.720000pt;}
.x37_c00450{left:429.738667pt;}
.x8c_c00450{left:432.960000pt;}
.x5a_c00450{left:439.917333pt;}
.x84_c00450{left:442.317333pt;}
.xae_c00450{left:444.368000pt;}
.x13_c00450{left:445.770667pt;}
.x1c_c00450{left:447.460000pt;}
.x3f_c00450{left:448.629333pt;}
.x7e_c00450{left:451.677333pt;}
.x9f_c00450{left:454.560000pt;}
.xcd_c00450{left:456.480000pt;}
.x31_c00450{left:458.480000pt;}
.x61_c00450{left:460.077333pt;}
.x96_c00450{left:462.720000pt;}
.xb6_c00450{left:465.117333pt;}
.xaf_c00450{left:473.414667pt;}
.x2a_c00450{left:476.746667pt;}
.x8d_c00450{left:482.160000pt;}
.xca_c00450{left:485.997333pt;}
.x38_c00450{left:487.068000pt;}
.x48_c00450{left:488.065333pt;}
.x5b_c00450{left:489.117333pt;}
.x68_c00450{left:490.317333pt;}
.xa0_c00450{left:493.440000pt;}
.x23_c00450{left:496.128000pt;}
.x14_c00450{left:506.230667pt;}
.x40_c00450{left:510.322667pt;}
.xce_c00450{left:516.000000pt;}
.x5c_c00450{left:518.157333pt;}
.x74_c00450{left:520.557333pt;}
.xa8_c00450{left:522.000000pt;}
.xbf_c00450{left:523.093333pt;}
.xd9_c00450{left:525.930667pt;}
.x39_c00450{left:527.888000pt;}
.x7f_c00450{left:529.917333pt;}
.x8e_c00450{left:530.880000pt;}
.xb0_c00450{left:532.693333pt;}
.xb7_c00450{left:533.997333pt;}
.xc_c00450{left:535.680000pt;}
.x2b_c00450{left:536.746667pt;}
.x50_c00450{left:538.658667pt;}
.x85_c00450{left:540.957333pt;}
.xc0_c00450{left:544.681333pt;}
.xcf_c00450{left:546.240000pt;}
.x75_c00450{left:550.317333pt;}
.xc6_c00450{left:553.509333pt;}
.x97_c00450{left:560.880000pt;}
.xd_c00450{left:564.240000pt;}
.x41_c00450{left:566.230667pt;}
.x49_c00450{left:567.709333pt;}
.x80_c00450{left:569.997333pt;}
.x15_c00450{left:574.614667pt;}
.xda_c00450{left:575.618667pt;}
.x5d_c00450{left:578.157333pt;}
.xa1_c00450{left:581.760000pt;}
.xd1_c00450{left:585.120000pt;}
.x3a_c00450{left:587.436000pt;}
.x69_c00450{left:588.717333pt;}
.x8f_c00450{left:591.120000pt;}
.xa9_c00450{left:592.080000pt;}
.x16_c00450{left:594.788000pt;}
.x42_c00450{left:596.709333pt;}
.x76_c00450{left:599.037333pt;}
.x81_c00450{left:599.997333pt;}
.x98_c00450{left:601.440000pt;}
.x24_c00450{left:604.846667pt;}
.x4a_c00450{left:607.786667pt;}
.x86_c00450{left:609.117333pt;}
.xc1_c00450{left:612.137333pt;}
.xe_c00450{left:613.440000pt;}
.xa2_c00450{left:621.120000pt;}
.xaa_c00450{left:622.320000pt;}
.x43_c00450{left:626.706667pt;}
.x6e_c00450{left:629.037333pt;}
.x90_c00450{left:631.440000pt;}
.x2c_c00450{left:635.142667pt;}
.x51_c00450{left:637.073333pt;}
.x77_c00450{left:639.597333pt;}
.xb1_c00450{left:641.906667pt;}
.xf_c00450{left:643.200000pt;}
.x25_c00450{left:644.937333pt;}
.x87_c00450{left:650.157333pt;}
.xa3_c00450{left:652.560000pt;}
.x44_c00450{left:656.466667pt;}
.x6f_c00450{left:658.077333pt;}
.x1d_c00450{left:664.894667pt;}
.x62_c00450{left:669.117333pt;}
.xb8_c00450{left:672.957333pt;}
.xd2_c00450{left:674.880000pt;}
.x3b_c00450{left:686.070667pt;}
.x5e_c00450{left:688.317333pt;}
.xb2_c00450{left:691.830667pt;}
.x17_c00450{left:693.929333pt;}
.x6a_c00450{left:699.117333pt;}
.x91_c00450{left:700.320000pt;}
.x1e_c00450{left:703.770667pt;}
.x4b_c00450{left:706.900000pt;}
.x82_c00450{left:708.957333pt;}
.xc2_c00450{left:713.649333pt;}
.x32_c00450{left:715.514667pt;}
.x52_c00450{left:717.462667pt;}
.x99_c00450{left:719.760000pt;}
.xc7_c00450{left:723.520000pt;}
.x63_c00450{left:727.437333pt;}
.xd3_c00450{left:733.920000pt;}
.x78_c00450{left:738.957333pt;}
.xb9_c00450{left:742.797333pt;}
.x33_c00450{left:745.276000pt;}
.x5f_c00450{left:747.117333pt;}
.xab_c00450{left:750.240000pt;}
.x45_c00450{left:755.822667pt;}
.xc3_c00450{left:762.477333pt;}
.xc8_c00450{left:783.272000pt;}
.xcb_c00450{left:800.637333pt;}
}





/* 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_c00451 {
    display:none;
  }
  .loading-indicator_c00451.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00451 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_c00451 { 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_c00451" -> "#page-container .classname_c00451")
 */
.pf_c00451 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00451 { /* 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_c00451.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00451 { /* 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_c00451 { /* 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_c00451 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00451 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00451 {overflow:visible;}
  }
}
.c_c00451 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00451 { /* 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_c00451:after { /* webkit #35443 */
  content: '';
}
.t_c00451:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00451 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 */
}
.__c00451 { /* 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_c00451 { /* info for Javascript */
  display:none;
}
.l_c00451 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00451 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00451 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00451: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_c00451 {
    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_c00451.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00451.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_c00451 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00451{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00451;src:url('chunks/assets/font_cfe63ee56e9e10a97d33a3db.woff2')format("woff");}.ff1_c00451{font-family:ff1_c00451;line-height:1.000000;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;}
.m10_c00451{transform:matrix(0.010137,-0.000243,0.005998,0.249928,0,0);-ms-transform:matrix(0.010137,-0.000243,0.005998,0.249928,0,0);-webkit-transform:matrix(0.010137,-0.000243,0.005998,0.249928,0,0);}
.m2b_c00451{transform:matrix(0.013415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.013415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.013415,0.000000,0.000000,0.250000,0,0);}
.m15_c00451{transform:matrix(0.022668,-0.000544,0.005998,0.249928,0,0);-ms-transform:matrix(0.022668,-0.000544,0.005998,0.249928,0,0);-webkit-transform:matrix(0.022668,-0.000544,0.005998,0.249928,0,0);}
.m6a_c00451{transform:matrix(0.067080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.067080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.067080,0.000000,0.000000,0.250000,0,0);}
.m66_c00451{transform:matrix(0.113135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113135,0.000000,0.000000,0.250000,0,0);}
.m6f_c00451{transform:matrix(0.137380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137380,0.000000,0.000000,0.250000,0,0);}
.me_c00451{transform:matrix(0.174960,-0.004199,0.005998,0.249928,0,0);-ms-transform:matrix(0.174960,-0.004199,0.005998,0.249928,0,0);-webkit-transform:matrix(0.174960,-0.004199,0.005998,0.249928,0,0);}
.m67_c00451{transform:matrix(0.180345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180345,0.000000,0.000000,0.250000,0,0);}
.m31_c00451{transform:matrix(0.182465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182465,0.000000,0.000000,0.250000,0,0);}
.m48_c00451{transform:matrix(0.193420,0.001354,-0.001750,0.249994,0,0);-ms-transform:matrix(0.193420,0.001354,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.193420,0.001354,-0.001750,0.249994,0,0);}
.m2d_c00451{transform:matrix(0.201790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201790,0.000000,0.000000,0.250000,0,0);}
.m55_c00451{transform:matrix(0.203340,0.001423,-0.001750,0.249994,0,0);-ms-transform:matrix(0.203340,0.001423,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.203340,0.001423,-0.001750,0.249994,0,0);}
.m26_c00451{transform:matrix(0.204345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204345,0.000000,0.000000,0.250000,0,0);}
.m4f_c00451{transform:matrix(0.205105,0.001436,-0.001750,0.249994,0,0);-ms-transform:matrix(0.205105,0.001436,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.205105,0.001436,-0.001750,0.249994,0,0);}
.m9_c00451{transform:matrix(0.206491,-0.004956,0.005998,0.249928,0,0);-ms-transform:matrix(0.206491,-0.004956,0.005998,0.249928,0,0);-webkit-transform:matrix(0.206491,-0.004956,0.005998,0.249928,0,0);}
.m54_c00451{transform:matrix(0.207865,0.001455,-0.001750,0.249994,0,0);-ms-transform:matrix(0.207865,0.001455,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.207865,0.001455,-0.001750,0.249994,0,0);}
.m60_c00451{transform:matrix(0.210200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210200,0.000000,0.000000,0.250000,0,0);}
.m5a_c00451{transform:matrix(0.214890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214890,0.000000,0.000000,0.250000,0,0);}
.m0_c00451{transform:matrix(0.217462,-0.005219,0.005998,0.249928,0,0);-ms-transform:matrix(0.217462,-0.005219,0.005998,0.249928,0,0);-webkit-transform:matrix(0.217462,-0.005219,0.005998,0.249928,0,0);}
.m3c_c00451{transform:matrix(0.218880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218880,0.000000,0.000000,0.250000,0,0);}
.m27_c00451{transform:matrix(0.219175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219175,0.000000,0.000000,0.250000,0,0);}
.m32_c00451{transform:matrix(0.220650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220650,0.000000,0.000000,0.250000,0,0);}
.m5f_c00451{transform:matrix(0.220800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220800,0.000000,0.000000,0.250000,0,0);}
.m34_c00451{transform:matrix(0.222470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222470,0.000000,0.000000,0.250000,0,0);}
.m51_c00451{transform:matrix(0.222485,0.001557,-0.001750,0.249994,0,0);-ms-transform:matrix(0.222485,0.001557,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.222485,0.001557,-0.001750,0.249994,0,0);}
.m5e_c00451{transform:matrix(0.222970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222970,0.000000,0.000000,0.250000,0,0);}
.m3f_c00451{transform:matrix(0.223860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223860,0.000000,0.000000,0.250000,0,0);}
.m33_c00451{transform:matrix(0.227025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227025,0.000000,0.000000,0.250000,0,0);}
.m13_c00451{transform:matrix(0.227559,-0.005461,0.005998,0.249928,0,0);-ms-transform:matrix(0.227559,-0.005461,0.005998,0.249928,0,0);-webkit-transform:matrix(0.227559,-0.005461,0.005998,0.249928,0,0);}
.m22_c00451{transform:matrix(0.228030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228030,0.000000,0.000000,0.250000,0,0);}
.m61_c00451{transform:matrix(0.228530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228530,0.000000,0.000000,0.250000,0,0);}
.m5c_c00451{transform:matrix(0.230910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230910,0.000000,0.000000,0.250000,0,0);}
.m71_c00451{transform:matrix(0.231045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231045,0.000000,0.000000,0.250000,0,0);}
.m52_c00451{transform:matrix(0.234829,0.001644,-0.001750,0.249994,0,0);-ms-transform:matrix(0.234829,0.001644,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.234829,0.001644,-0.001750,0.249994,0,0);}
.m39_c00451{transform:matrix(0.237290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237290,0.000000,0.000000,0.250000,0,0);}
.m4e_c00451{transform:matrix(0.238184,0.001667,-0.001750,0.249994,0,0);-ms-transform:matrix(0.238184,0.001667,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.238184,0.001667,-0.001750,0.249994,0,0);}
.m62_c00451{transform:matrix(0.238235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238235,0.000000,0.000000,0.250000,0,0);}
.m2e_c00451{transform:matrix(0.240245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240245,0.000000,0.000000,0.250000,0,0);}
.m18_c00451{transform:matrix(0.241095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241095,0.000000,0.000000,0.250000,0,0);}
.m21_c00451{transform:matrix(0.243210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243210,0.000000,0.000000,0.250000,0,0);}
.m3b_c00451{transform:matrix(0.243635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243635,0.000000,0.000000,0.250000,0,0);}
.m6_c00451{transform:matrix(0.244545,-0.005869,0.005998,0.249928,0,0);-ms-transform:matrix(0.244545,-0.005869,0.005998,0.249928,0,0);-webkit-transform:matrix(0.244545,-0.005869,0.005998,0.249928,0,0);}
.m4d_c00451{transform:matrix(0.247979,0.001736,-0.001750,0.249994,0,0);-ms-transform:matrix(0.247979,0.001736,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.247979,0.001736,-0.001750,0.249994,0,0);}
.m4_c00451{transform:matrix(0.248124,-0.005955,0.005998,0.249928,0,0);-ms-transform:matrix(0.248124,-0.005955,0.005998,0.249928,0,0);-webkit-transform:matrix(0.248124,-0.005955,0.005998,0.249928,0,0);}
.m2f_c00451{transform:matrix(0.251140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251140,0.000000,0.000000,0.250000,0,0);}
.m1b_c00451{transform:matrix(0.252170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252170,0.000000,0.000000,0.250000,0,0);}
.m7_c00451{transform:matrix(0.252552,-0.006061,0.005998,0.249928,0,0);-ms-transform:matrix(0.252552,-0.006061,0.005998,0.249928,0,0);-webkit-transform:matrix(0.252552,-0.006061,0.005998,0.249928,0,0);}
.m64_c00451{transform:matrix(0.254950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254950,0.000000,0.000000,0.250000,0,0);}
.m41_c00451{transform:matrix(0.255090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255090,0.000000,0.000000,0.250000,0,0);}
.m6e_c00451{transform:matrix(0.255265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255265,0.000000,0.000000,0.250000,0,0);}
.mf_c00451{transform:matrix(0.255286,-0.006127,0.005998,0.249928,0,0);-ms-transform:matrix(0.255286,-0.006127,0.005998,0.249928,0,0);-webkit-transform:matrix(0.255286,-0.006127,0.005998,0.249928,0,0);}
.m42_c00451{transform:matrix(0.256480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256480,0.000000,0.000000,0.250000,0,0);}
.m25_c00451{transform:matrix(0.256655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256655,0.000000,0.000000,0.250000,0,0);}
.m40_c00451{transform:matrix(0.257910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257910,0.000000,0.000000,0.250000,0,0);}
.m49_c00451{transform:matrix(0.260584,0.001824,-0.001750,0.249994,0,0);-ms-transform:matrix(0.260584,0.001824,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.260584,0.001824,-0.001750,0.249994,0,0);}
.m5d_c00451{transform:matrix(0.264010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264010,0.000000,0.000000,0.250000,0,0);}
.m1a_c00451{transform:matrix(0.264210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264210,0.000000,0.000000,0.250000,0,0);}
.m50_c00451{transform:matrix(0.265304,0.001857,-0.001750,0.249994,0,0);-ms-transform:matrix(0.265304,0.001857,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.265304,0.001857,-0.001750,0.249994,0,0);}
.m24_c00451{transform:matrix(0.270645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270645,0.000000,0.000000,0.250000,0,0);}
.m47_c00451{transform:matrix(0.272713,0.001909,-0.001750,0.249994,0,0);-ms-transform:matrix(0.272713,0.001909,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.272713,0.001909,-0.001750,0.249994,0,0);}
.m28_c00451{transform:matrix(0.277465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277465,0.000000,0.000000,0.250000,0,0);}
.m3a_c00451{transform:matrix(0.279895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279895,0.000000,0.000000,0.250000,0,0);}
.m8_c00451{transform:matrix(0.281059,-0.006745,0.005998,0.249928,0,0);-ms-transform:matrix(0.281059,-0.006745,0.005998,0.249928,0,0);-webkit-transform:matrix(0.281059,-0.006745,0.005998,0.249928,0,0);}
.m53_c00451{transform:matrix(0.281563,0.001971,-0.001750,0.249994,0,0);-ms-transform:matrix(0.281563,0.001971,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.281563,0.001971,-0.001750,0.249994,0,0);}
.m3d_c00451{transform:matrix(0.282585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282585,0.000000,0.000000,0.250000,0,0);}
.m23_c00451{transform:matrix(0.288065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288065,0.000000,0.000000,0.250000,0,0);}
.m1d_c00451{transform:matrix(0.289415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289415,0.000000,0.000000,0.250000,0,0);}
.m3e_c00451{transform:matrix(0.289475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289475,0.000000,0.000000,0.250000,0,0);}
.m6d_c00451{transform:matrix(0.289820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289820,0.000000,0.000000,0.250000,0,0);}
.m11_c00451{transform:matrix(0.291691,-0.007001,0.005998,0.249928,0,0);-ms-transform:matrix(0.291691,-0.007001,0.005998,0.249928,0,0);-webkit-transform:matrix(0.291691,-0.007001,0.005998,0.249928,0,0);}
.m5_c00451{transform:matrix(0.292046,-0.007009,0.005998,0.249928,0,0);-ms-transform:matrix(0.292046,-0.007009,0.005998,0.249928,0,0);-webkit-transform:matrix(0.292046,-0.007009,0.005998,0.249928,0,0);}
.m57_c00451{transform:matrix(0.292073,0.002045,-0.001750,0.249994,0,0);-ms-transform:matrix(0.292073,0.002045,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.292073,0.002045,-0.001750,0.249994,0,0);}
.m30_c00451{transform:matrix(0.297525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297525,0.000000,0.000000,0.250000,0,0);}
.m35_c00451{transform:matrix(0.298245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298245,0.000000,0.000000,0.250000,0,0);}
.m2_c00451{transform:matrix(0.298644,-0.007167,0.005998,0.249928,0,0);-ms-transform:matrix(0.298644,-0.007167,0.005998,0.249928,0,0);-webkit-transform:matrix(0.298644,-0.007167,0.005998,0.249928,0,0);}
.m4a_c00451{transform:matrix(0.307127,0.002150,-0.001750,0.249994,0,0);-ms-transform:matrix(0.307127,0.002150,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.307127,0.002150,-0.001750,0.249994,0,0);}
.m56_c00451{transform:matrix(0.310967,0.002177,-0.001750,0.249994,0,0);-ms-transform:matrix(0.310967,0.002177,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.310967,0.002177,-0.001750,0.249994,0,0);}
.m44_c00451{transform:matrix(0.312372,0.002187,-0.001750,0.249994,0,0);-ms-transform:matrix(0.312372,0.002187,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.312372,0.002187,-0.001750,0.249994,0,0);}
.m36_c00451{transform:matrix(0.314870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314870,0.000000,0.000000,0.250000,0,0);}
.m1_c00451{transform:matrix(0.315259,-0.007566,0.005998,0.249928,0,0);-ms-transform:matrix(0.315259,-0.007566,0.005998,0.249928,0,0);-webkit-transform:matrix(0.315259,-0.007566,0.005998,0.249928,0,0);}
.m19_c00451{transform:matrix(0.316585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316585,0.000000,0.000000,0.250000,0,0);}
.m2a_c00451{transform:matrix(0.317565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317565,0.000000,0.000000,0.250000,0,0);}
.m5b_c00451{transform:matrix(0.321755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321755,0.000000,0.000000,0.250000,0,0);}
.m17_c00451{transform:matrix(0.322840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322840,0.000000,0.000000,0.250000,0,0);}
.m6b_c00451{transform:matrix(0.327605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327605,0.000000,0.000000,0.250000,0,0);}
.m3_c00451{transform:matrix(0.328061,-0.007873,0.005998,0.249928,0,0);-ms-transform:matrix(0.328061,-0.007873,0.005998,0.249928,0,0);-webkit-transform:matrix(0.328061,-0.007873,0.005998,0.249928,0,0);}
.m45_c00451{transform:matrix(0.355531,0.002489,-0.001750,0.249994,0,0);-ms-transform:matrix(0.355531,0.002489,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.355531,0.002489,-0.001750,0.249994,0,0);}
.m68_c00451{transform:matrix(0.355755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355755,0.000000,0.000000,0.250000,0,0);}
.m43_c00451{transform:matrix(0.355826,0.002491,-0.001750,0.249994,0,0);-ms-transform:matrix(0.355826,0.002491,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.355826,0.002491,-0.001750,0.249994,0,0);}
.m70_c00451{transform:matrix(0.367310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367310,0.000000,0.000000,0.250000,0,0);}
.m59_c00451{transform:matrix(0.404420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404420,0.000000,0.000000,0.250000,0,0);}
.m29_c00451{transform:matrix(0.408430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408430,0.000000,0.000000,0.250000,0,0);}
.m1e_c00451{transform:matrix(0.468005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468005,0.000000,0.000000,0.250000,0,0);}
.m4b_c00451{transform:matrix(0.492098,0.003445,-0.001750,0.249994,0,0);-ms-transform:matrix(0.492098,0.003445,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.492098,0.003445,-0.001750,0.249994,0,0);}
.m12_c00451{transform:matrix(0.533801,-0.012811,0.005998,0.249928,0,0);-ms-transform:matrix(0.533801,-0.012811,0.005998,0.249928,0,0);-webkit-transform:matrix(0.533801,-0.012811,0.005998,0.249928,0,0);}
.m4c_c00451{transform:matrix(0.541197,0.003788,-0.001750,0.249994,0,0);-ms-transform:matrix(0.541197,0.003788,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.541197,0.003788,-0.001750,0.249994,0,0);}
.md_c00451{transform:matrix(0.544053,-0.013057,0.005998,0.249928,0,0);-ms-transform:matrix(0.544053,-0.013057,0.005998,0.249928,0,0);-webkit-transform:matrix(0.544053,-0.013057,0.005998,0.249928,0,0);}
.m63_c00451{transform:matrix(0.567610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567610,0.000000,0.000000,0.250000,0,0);}
.m20_c00451{transform:matrix(0.575525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575525,0.000000,0.000000,0.250000,0,0);}
.m1f_c00451{transform:matrix(0.589405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.589405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.589405,0.000000,0.000000,0.250000,0,0);}
.m6c_c00451{transform:matrix(0.620440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620440,0.000000,0.000000,0.250000,0,0);}
.m38_c00451{transform:matrix(0.633140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.633140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.633140,0.000000,0.000000,0.250000,0,0);}
.m58_c00451{transform:matrix(0.660964,0.004627,-0.001750,0.249994,0,0);-ms-transform:matrix(0.660964,0.004627,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.660964,0.004627,-0.001750,0.249994,0,0);}
.m1c_c00451{transform:matrix(0.710190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.710190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.710190,0.000000,0.000000,0.250000,0,0);}
.ma_c00451{transform:matrix(0.719543,-0.017269,0.005998,0.249928,0,0);-ms-transform:matrix(0.719543,-0.017269,0.005998,0.249928,0,0);-webkit-transform:matrix(0.719543,-0.017269,0.005998,0.249928,0,0);}
.m46_c00451{transform:matrix(0.749052,0.005243,-0.001750,0.249994,0,0);-ms-transform:matrix(0.749052,0.005243,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.749052,0.005243,-0.001750,0.249994,0,0);}
.m2c_c00451{transform:matrix(0.784005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.784005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.784005,0.000000,0.000000,0.250000,0,0);}
.m37_c00451{transform:matrix(0.816285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.816285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.816285,0.000000,0.000000,0.250000,0,0);}
.mb_c00451{transform:matrix(0.826347,-0.019832,0.005998,0.249928,0,0);-ms-transform:matrix(0.826347,-0.019832,0.005998,0.249928,0,0);-webkit-transform:matrix(0.826347,-0.019832,0.005998,0.249928,0,0);}
.m14_c00451{transform:matrix(0.988355,-0.023721,0.005998,0.249928,0,0);-ms-transform:matrix(0.988355,-0.023721,0.005998,0.249928,0,0);-webkit-transform:matrix(0.988355,-0.023721,0.005998,0.249928,0,0);}
.m65_c00451{transform:matrix(0.989545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.989545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.989545,0.000000,0.000000,0.250000,0,0);}
.mc_c00451{transform:matrix(1.061634,-0.025479,0.005998,0.249928,0,0);-ms-transform:matrix(1.061634,-0.025479,0.005998,0.249928,0,0);-webkit-transform:matrix(1.061634,-0.025479,0.005998,0.249928,0,0);}
.m16_c00451{transform:matrix(1.357065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.357065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.357065,0.000000,0.000000,0.250000,0,0);}
.m69_c00451{transform:matrix(1.502550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.502550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.502550,0.000000,0.000000,0.250000,0,0);}
.v0_c00451{vertical-align:0.000000px;}
.ls0_c00451{letter-spacing:0.000000px;}
.sc__c00451{text-shadow:none;}
.sc0_c00451{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__c00451{-webkit-text-stroke:0px transparent;}
.sc0_c00451{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00451{word-spacing:0.000000px;}
.fc0_c00451{color:transparent;}
.fs9_c00451{font-size:12.000000px;}
.fs7_c00451{font-size:18.000000px;}
.fsb_c00451{font-size:24.000000px;}
.fsa_c00451{font-size:30.000000px;}
.fs8_c00451{font-size:36.000000px;}
.fs5_c00451{font-size:72.001764px;}
.fs3_c00451{font-size:78.000000px;}
.fs0_c00451{font-size:78.022461px;}
.fs2_c00451{font-size:84.000000px;}
.fs6_c00451{font-size:84.002058px;}
.fs4_c00451{font-size:90.000000px;}
.fs1_c00451{font-size:96.027644px;}
.y0_c00451{bottom:0.000000px;}
.y46_c00451{bottom:336.420000px;}
.y47_c00451{bottom:338.040000px;}
.y45_c00451{bottom:362.070000px;}
.y44_c00451{bottom:362.340000px;}
.y43_c00451{bottom:376.380000px;}
.y42_c00451{bottom:376.920000px;}
.y41_c00451{bottom:408.510000px;}
.y40_c00451{bottom:420.390000px;}
.y3f_c00451{bottom:428.760000px;}
.y3e_c00451{bottom:430.110000px;}
.y3d_c00451{bottom:433.080000px;}
.y3c_c00451{bottom:727.924500px;}
.y30_c00451{bottom:761.657678px;}
.y31_c00451{bottom:761.657819px;}
.y2f_c00451{bottom:761.658057px;}
.y32_c00451{bottom:761.658279px;}
.y38_c00451{bottom:761.658312px;}
.y3b_c00451{bottom:761.658333px;}
.y39_c00451{bottom:761.658353px;}
.y36_c00451{bottom:761.658621px;}
.y33_c00451{bottom:761.658650px;}
.y37_c00451{bottom:761.658722px;}
.y34_c00451{bottom:761.658870px;}
.y3a_c00451{bottom:761.659042px;}
.y35_c00451{bottom:761.659271px;}
.y2e_c00451{bottom:799.059180px;}
.y2d_c00451{bottom:799.650824px;}
.y2c_c00451{bottom:800.028110px;}
.y2b_c00451{bottom:800.339980px;}
.y2a_c00451{bottom:800.967618px;}
.y29_c00451{bottom:801.576933px;}
.y28_c00451{bottom:801.823788px;}
.y27_c00451{bottom:802.355025px;}
.y26_c00451{bottom:803.068500px;}
.y25_c00451{bottom:904.170000px;}
.y24_c00451{bottom:904.765500px;}
.y23_c00451{bottom:905.859000px;}
.y22_c00451{bottom:906.079500px;}
.y21_c00451{bottom:906.760500px;}
.y20_c00451{bottom:907.380000px;}
.y1f_c00451{bottom:907.843500px;}
.y1e_c00451{bottom:908.514000px;}
.y1d_c00451{bottom:909.349500px;}
.y1c_c00451{bottom:909.627000px;}
.y1b_c00451{bottom:910.272000px;}
.y1a_c00451{bottom:910.983000px;}
.y19_c00451{bottom:942.399000px;}
.y18_c00451{bottom:979.020000px;}
.y17_c00451{bottom:1014.099000px;}
.yd_c00451{bottom:1084.863576px;}
.ye_c00451{bottom:1087.643664px;}
.yf_c00451{bottom:1090.732104px;}
.y10_c00451{bottom:1091.374944px;}
.y11_c00451{bottom:1092.944268px;}
.y12_c00451{bottom:1093.620228px;}
.y13_c00451{bottom:1095.451080px;}
.y14_c00451{bottom:1098.011460px;}
.y15_c00451{bottom:1099.114716px;}
.y16_c00451{bottom:1103.433528px;}
.y1_c00451{bottom:1126.717500px;}
.y2_c00451{bottom:1128.608400px;}
.y3_c00451{bottom:1131.743352px;}
.y4_c00451{bottom:1132.564260px;}
.y5_c00451{bottom:1133.804748px;}
.y6_c00451{bottom:1134.678216px;}
.y7_c00451{bottom:1136.096472px;}
.y8_c00451{bottom:1136.582184px;}
.y9_c00451{bottom:1137.487404px;}
.ya_c00451{bottom:1138.374912px;}
.yb_c00451{bottom:1139.313108px;}
.yc_c00451{bottom:1140.781584px;}
.hb_c00451{height:12.000000px;}
.h9_c00451{height:18.000000px;}
.hd_c00451{height:24.000000px;}
.hc_c00451{height:30.000000px;}
.ha_c00451{height:36.000000px;}
.h7_c00451{height:72.001764px;}
.h5_c00451{height:78.000000px;}
.h2_c00451{height:78.022461px;}
.h4_c00451{height:84.000000px;}
.h8_c00451{height:84.002058px;}
.h6_c00451{height:90.000000px;}
.h3_c00451{height:96.027644px;}
.h0_c00451{height:1251.450000px;}
.h1_c00451{height:1251.750000px;}
.w0_c00451{width:915.000000px;}
.x0_c00451{left:0.000000px;}
.x33_c00451{left:29.665500px;}
.x29_c00451{left:35.100000px;}
.x15_c00451{left:37.530000px;}
.xc_c00451{left:55.358112px;}
.x1e_c00451{left:58.050000px;}
.x1_c00451{left:79.086000px;}
.x45_c00451{left:86.938052px;}
.x4e_c00451{left:88.020000px;}
.x2a_c00451{left:98.550000px;}
.x34_c00451{left:100.792500px;}
.x3e_c00451{left:119.380500px;}
.x2b_c00451{left:131.490000px;}
.x1f_c00451{left:143.370000px;}
.xd_c00451{left:154.623072px;}
.x35_c00451{left:165.331500px;}
.x46_c00451{left:168.210531px;}
.x4f_c00451{left:185.490000px;}
.x20_c00451{left:187.920000px;}
.x36_c00451{left:193.057500px;}
.x2_c00451{left:209.709000px;}
.x2c_c00451{left:215.460000px;}
.x21_c00451{left:220.860000px;}
.x3_c00451{left:243.913500px;}
.x16_c00451{left:254.610000px;}
.xe_c00451{left:264.922488px;}
.x37_c00451{left:276.565500px;}
.xf_c00451{left:287.892792px;}
.x4_c00451{left:295.600500px;}
.x3f_c00451{left:297.196500px;}
.x17_c00451{left:324.000000px;}
.x22_c00451{left:326.970000px;}
.x5_c00451{left:331.995000px;}
.x10_c00451{left:343.963428px;}
.x47_c00451{left:353.705124px;}
.x11_c00451{left:368.126124px;}
.x2d_c00451{left:370.980000px;}
.x18_c00451{left:378.270000px;}
.x50_c00451{left:386.370000px;}
.x48_c00451{left:387.725294px;}
.x38_c00451{left:389.956500px;}
.x6_c00451{left:391.089000px;}
.x23_c00451{left:398.520000px;}
.x7_c00451{left:411.327000px;}
.x40_c00451{left:419.506500px;}
.x2e_c00451{left:422.010000px;}
.x19_c00451{left:426.060000px;}
.x12_c00451{left:433.530360px;}
.x49_c00451{left:444.696587px;}
.x8_c00451{left:449.044500px;}
.x39_c00451{left:451.845000px;}
.x51_c00451{left:484.650000px;}
.x9_c00451{left:486.024000px;}
.x24_c00451{left:496.800000px;}
.x4a_c00451{left:498.427722px;}
.x41_c00451{left:509.169000px;}
.x3a_c00451{left:519.886500px;}
.xa_c00451{left:525.115500px;}
.x2f_c00451{left:528.660000px;}
.x25_c00451{left:532.980000px;}
.x3b_c00451{left:542.011500px;}
.x1a_c00451{left:550.800000px;}
.x52_c00451{left:552.690000px;}
.x42_c00451{left:553.722000px;}
.x13_c00451{left:564.356796px;}
.xb_c00451{left:586.302000px;}
.x4b_c00451{left:596.439521px;}
.x43_c00451{left:607.620000px;}
.x30_c00451{left:618.570000px;}
.x4c_c00451{left:630.999711px;}
.x1b_c00451{left:639.090000px;}
.x3c_c00451{left:651.301500px;}
.x53_c00451{left:653.130000px;}
.x26_c00451{left:662.580000px;}
.x4d_c00451{left:664.209839px;}
.x1c_c00451{left:673.380000px;}
.x54_c00451{left:680.130000px;}
.x31_c00451{left:684.450000px;}
.x27_c00451{left:686.070000px;}
.x44_c00451{left:692.140500px;}
.x1d_c00451{left:696.330000px;}
.x3d_c00451{left:710.901000px;}
.x14_c00451{left:718.605000px;}
.x32_c00451{left:725.490000px;}
.x28_c00451{left:752.760000px;}
.x58_c00451{left:902.880000px;}
.x5b_c00451{left:904.500000px;}
.x55_c00451{left:906.120000px;}
.x56_c00451{left:907.200000px;}
.x59_c00451{left:909.090000px;}
.x5a_c00451{left:910.440000px;}
.x5c_c00451{left:911.520000px;}
.x57_c00451{left:912.870000px;}
@media print{
.v0_c00451{vertical-align:0.000000pt;}
.ls0_c00451{letter-spacing:0.000000pt;}
.ws0_c00451{word-spacing:0.000000pt;}
.fs9_c00451{font-size:10.666667pt;}
.fs7_c00451{font-size:16.000000pt;}
.fsb_c00451{font-size:21.333333pt;}
.fsa_c00451{font-size:26.666667pt;}
.fs8_c00451{font-size:32.000000pt;}
.fs5_c00451{font-size:64.001568pt;}
.fs3_c00451{font-size:69.333333pt;}
.fs0_c00451{font-size:69.353298pt;}
.fs2_c00451{font-size:74.666667pt;}
.fs6_c00451{font-size:74.668496pt;}
.fs4_c00451{font-size:80.000000pt;}
.fs1_c00451{font-size:85.357906pt;}
.y0_c00451{bottom:0.000000pt;}
.y46_c00451{bottom:299.040000pt;}
.y47_c00451{bottom:300.480000pt;}
.y45_c00451{bottom:321.840000pt;}
.y44_c00451{bottom:322.080000pt;}
.y43_c00451{bottom:334.560000pt;}
.y42_c00451{bottom:335.040000pt;}
.y41_c00451{bottom:363.120000pt;}
.y40_c00451{bottom:373.680000pt;}
.y3f_c00451{bottom:381.120000pt;}
.y3e_c00451{bottom:382.320000pt;}
.y3d_c00451{bottom:384.960000pt;}
.y3c_c00451{bottom:647.044000pt;}
.y30_c00451{bottom:677.029047pt;}
.y31_c00451{bottom:677.029172pt;}
.y2f_c00451{bottom:677.029384pt;}
.y32_c00451{bottom:677.029581pt;}
.y38_c00451{bottom:677.029611pt;}
.y3b_c00451{bottom:677.029629pt;}
.y39_c00451{bottom:677.029647pt;}
.y36_c00451{bottom:677.029885pt;}
.y33_c00451{bottom:677.029911pt;}
.y37_c00451{bottom:677.029975pt;}
.y34_c00451{bottom:677.030107pt;}
.y3a_c00451{bottom:677.030260pt;}
.y35_c00451{bottom:677.030463pt;}
.y2e_c00451{bottom:710.274827pt;}
.y2d_c00451{bottom:710.800732pt;}
.y2c_c00451{bottom:711.136097pt;}
.y2b_c00451{bottom:711.413316pt;}
.y2a_c00451{bottom:711.971216pt;}
.y29_c00451{bottom:712.512829pt;}
.y28_c00451{bottom:712.732256pt;}
.y27_c00451{bottom:713.204467pt;}
.y26_c00451{bottom:713.838667pt;}
.y25_c00451{bottom:803.706667pt;}
.y24_c00451{bottom:804.236000pt;}
.y23_c00451{bottom:805.208000pt;}
.y22_c00451{bottom:805.404000pt;}
.y21_c00451{bottom:806.009333pt;}
.y20_c00451{bottom:806.560000pt;}
.y1f_c00451{bottom:806.972000pt;}
.y1e_c00451{bottom:807.568000pt;}
.y1d_c00451{bottom:808.310667pt;}
.y1c_c00451{bottom:808.557333pt;}
.y1b_c00451{bottom:809.130667pt;}
.y1a_c00451{bottom:809.762667pt;}
.y19_c00451{bottom:837.688000pt;}
.y18_c00451{bottom:870.240000pt;}
.y17_c00451{bottom:901.421333pt;}
.yd_c00451{bottom:964.323179pt;}
.ye_c00451{bottom:966.794368pt;}
.yf_c00451{bottom:969.539648pt;}
.y10_c00451{bottom:970.111061pt;}
.y11_c00451{bottom:971.506016pt;}
.y12_c00451{bottom:972.106869pt;}
.y13_c00451{bottom:973.734293pt;}
.y14_c00451{bottom:976.010187pt;}
.y15_c00451{bottom:976.990859pt;}
.y16_c00451{bottom:980.829803pt;}
.y1_c00451{bottom:1001.526667pt;}
.y2_c00451{bottom:1003.207467pt;}
.y3_c00451{bottom:1005.994091pt;}
.y4_c00451{bottom:1006.723787pt;}
.y5_c00451{bottom:1007.826443pt;}
.y6_c00451{bottom:1008.602859pt;}
.y7_c00451{bottom:1009.863531pt;}
.y8_c00451{bottom:1010.295275pt;}
.y9_c00451{bottom:1011.099915pt;}
.ya_c00451{bottom:1011.888811pt;}
.yb_c00451{bottom:1012.722763pt;}
.yc_c00451{bottom:1014.028075pt;}
.hb_c00451{height:10.666667pt;}
.h9_c00451{height:16.000000pt;}
.hd_c00451{height:21.333333pt;}
.hc_c00451{height:26.666667pt;}
.ha_c00451{height:32.000000pt;}
.h7_c00451{height:64.001568pt;}
.h5_c00451{height:69.333333pt;}
.h2_c00451{height:69.353298pt;}
.h4_c00451{height:74.666667pt;}
.h8_c00451{height:74.668496pt;}
.h6_c00451{height:80.000000pt;}
.h3_c00451{height:85.357906pt;}
.h0_c00451{height:1112.400000pt;}
.h1_c00451{height:1112.666667pt;}
.w0_c00451{width:813.333333pt;}
.x0_c00451{left:0.000000pt;}
.x33_c00451{left:26.369333pt;}
.x29_c00451{left:31.200000pt;}
.x15_c00451{left:33.360000pt;}
.xc_c00451{left:49.207211pt;}
.x1e_c00451{left:51.600000pt;}
.x1_c00451{left:70.298667pt;}
.x45_c00451{left:77.278268pt;}
.x4e_c00451{left:78.240000pt;}
.x2a_c00451{left:87.600000pt;}
.x34_c00451{left:89.593333pt;}
.x3e_c00451{left:106.116000pt;}
.x2b_c00451{left:116.880000pt;}
.x1f_c00451{left:127.440000pt;}
.xd_c00451{left:137.442731pt;}
.x35_c00451{left:146.961333pt;}
.x46_c00451{left:149.520472pt;}
.x4f_c00451{left:164.880000pt;}
.x20_c00451{left:167.040000pt;}
.x36_c00451{left:171.606667pt;}
.x2_c00451{left:186.408000pt;}
.x2c_c00451{left:191.520000pt;}
.x21_c00451{left:196.320000pt;}
.x3_c00451{left:216.812000pt;}
.x16_c00451{left:226.320000pt;}
.xe_c00451{left:235.486656pt;}
.x37_c00451{left:245.836000pt;}
.xf_c00451{left:255.904704pt;}
.x4_c00451{left:262.756000pt;}
.x3f_c00451{left:264.174667pt;}
.x17_c00451{left:288.000000pt;}
.x22_c00451{left:290.640000pt;}
.x5_c00451{left:295.106667pt;}
.x10_c00451{left:305.745269pt;}
.x47_c00451{left:314.404555pt;}
.x11_c00451{left:327.223221pt;}
.x2d_c00451{left:329.760000pt;}
.x18_c00451{left:336.240000pt;}
.x50_c00451{left:343.440000pt;}
.x48_c00451{left:344.644705pt;}
.x38_c00451{left:346.628000pt;}
.x6_c00451{left:347.634667pt;}
.x23_c00451{left:354.240000pt;}
.x7_c00451{left:365.624000pt;}
.x40_c00451{left:372.894667pt;}
.x2e_c00451{left:375.120000pt;}
.x19_c00451{left:378.720000pt;}
.x12_c00451{left:385.360320pt;}
.x49_c00451{left:395.285855pt;}
.x8_c00451{left:399.150667pt;}
.x39_c00451{left:401.640000pt;}
.x51_c00451{left:430.800000pt;}
.x9_c00451{left:432.021333pt;}
.x24_c00451{left:441.600000pt;}
.x4a_c00451{left:443.046864pt;}
.x41_c00451{left:452.594667pt;}
.x3a_c00451{left:462.121333pt;}
.xa_c00451{left:466.769333pt;}
.x2f_c00451{left:469.920000pt;}
.x25_c00451{left:473.760000pt;}
.x3b_c00451{left:481.788000pt;}
.x1a_c00451{left:489.600000pt;}
.x52_c00451{left:491.280000pt;}
.x42_c00451{left:492.197333pt;}
.x13_c00451{left:501.650485pt;}
.xb_c00451{left:521.157333pt;}
.x4b_c00451{left:530.168463pt;}
.x43_c00451{left:540.106667pt;}
.x30_c00451{left:549.840000pt;}
.x4c_c00451{left:560.888632pt;}
.x1b_c00451{left:568.080000pt;}
.x3c_c00451{left:578.934667pt;}
.x53_c00451{left:580.560000pt;}
.x26_c00451{left:588.960000pt;}
.x4d_c00451{left:590.408745pt;}
.x1c_c00451{left:598.560000pt;}
.x54_c00451{left:604.560000pt;}
.x31_c00451{left:608.400000pt;}
.x27_c00451{left:609.840000pt;}
.x44_c00451{left:615.236000pt;}
.x1d_c00451{left:618.960000pt;}
.x3d_c00451{left:631.912000pt;}
.x14_c00451{left:638.760000pt;}
.x32_c00451{left:644.880000pt;}
.x28_c00451{left:669.120000pt;}
.x58_c00451{left:802.560000pt;}
.x5b_c00451{left:804.000000pt;}
.x55_c00451{left:805.440000pt;}
.x56_c00451{left:806.400000pt;}
.x59_c00451{left:808.080000pt;}
.x5a_c00451{left:809.280000pt;}
.x5c_c00451{left:810.240000pt;}
.x57_c00451{left:811.440000pt;}
}





/* 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_c00452 {
    display:none;
  }
  .loading-indicator_c00452.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00452 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_c00452 { 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_c00452" -> "#page-container .classname_c00452")
 */
.pf_c00452 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00452 { /* 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_c00452.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00452 { /* 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_c00452 { /* 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_c00452 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00452 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00452 {overflow:visible;}
  }
}
.c_c00452 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00452 { /* 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_c00452:after { /* webkit #35443 */
  content: '';
}
.t_c00452:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00452 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 */
}
.__c00452 { /* 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_c00452 { /* info for Javascript */
  display:none;
}
.l_c00452 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00452 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00452 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00452: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_c00452 {
    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_c00452.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00452.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_c00452 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00452{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00452;src:url('chunks/assets/font_c605e72f209fc835e906f064.woff2')format("woff");}.ff1_c00452{font-family:ff1_c00452;line-height:1.000000;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;}
.m15e_c00452{transform:matrix(0.083683,0.001088,-0.003250,0.249979,0,0);-ms-transform:matrix(0.083683,0.001088,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.083683,0.001088,-0.003250,0.249979,0,0);}
.m9f_c00452{transform:matrix(0.102777,0.002158,-0.005249,0.249945,0,0);-ms-transform:matrix(0.102777,0.002158,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.102777,0.002158,-0.005249,0.249945,0,0);}
.m0_c00452{transform:matrix(0.133155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133155,0.000000,0.000000,0.250000,0,0);}
.m4d_c00452{transform:matrix(0.159115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159115,0.000000,0.000000,0.250000,0,0);}
.m135_c00452{transform:matrix(0.160026,0.003040,-0.004749,0.249955,0,0);-ms-transform:matrix(0.160026,0.003040,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.160026,0.003040,-0.004749,0.249955,0,0);}
.m52_c00452{transform:matrix(0.161445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161445,0.000000,0.000000,0.250000,0,0);}
.m161_c00452{transform:matrix(0.162051,0.002107,-0.003250,0.249979,0,0);-ms-transform:matrix(0.162051,0.002107,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.162051,0.002107,-0.003250,0.249979,0,0);}
.m1c_c00452{transform:matrix(0.163770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163770,0.000000,0.000000,0.250000,0,0);}
.m13b_c00452{transform:matrix(0.166385,0.003161,-0.004749,0.249955,0,0);-ms-transform:matrix(0.166385,0.003161,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.166385,0.003161,-0.004749,0.249955,0,0);}
.m15f_c00452{transform:matrix(0.166581,0.002166,-0.003250,0.249979,0,0);-ms-transform:matrix(0.166581,0.002166,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.166581,0.002166,-0.003250,0.249979,0,0);}
.m80_c00452{transform:matrix(0.167689,0.002348,-0.003500,0.249976,0,0);-ms-transform:matrix(0.167689,0.002348,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.167689,0.002348,-0.003500,0.249976,0,0);}
.m4b_c00452{transform:matrix(0.168155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168155,0.000000,0.000000,0.250000,0,0);}
.m10_c00452{transform:matrix(0.169580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169580,0.000000,0.000000,0.250000,0,0);}
.m138_c00452{transform:matrix(0.174678,0.003319,-0.004749,0.249955,0,0);-ms-transform:matrix(0.174678,0.003319,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.174678,0.003319,-0.004749,0.249955,0,0);}
.me_c00452{transform:matrix(0.176205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176205,0.000000,0.000000,0.250000,0,0);}
.m1a_c00452{transform:matrix(0.176965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176965,0.000000,0.000000,0.250000,0,0);}
.m13c_c00452{transform:matrix(0.177153,0.003366,-0.004749,0.249955,0,0);-ms-transform:matrix(0.177153,0.003366,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.177153,0.003366,-0.004749,0.249955,0,0);}
.m2d_c00452{transform:matrix(0.177340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177340,0.000000,0.000000,0.250000,0,0);}
.m57_c00452{transform:matrix(0.179175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179175,0.000000,0.000000,0.250000,0,0);}
.m29_c00452{transform:matrix(0.179245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179245,0.000000,0.000000,0.250000,0,0);}
.m163_c00452{transform:matrix(0.179500,0.002333,-0.003250,0.249979,0,0);-ms-transform:matrix(0.179500,0.002333,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.179500,0.002333,-0.003250,0.249979,0,0);}
.m136_c00452{transform:matrix(0.179563,0.003412,-0.004749,0.249955,0,0);-ms-transform:matrix(0.179563,0.003412,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.179563,0.003412,-0.004749,0.249955,0,0);}
.m2b_c00452{transform:matrix(0.179570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179570,0.000000,0.000000,0.250000,0,0);}
.mfd_c00452{transform:matrix(0.180235,0.002704,-0.003750,0.249972,0,0);-ms-transform:matrix(0.180235,0.002704,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.180235,0.002704,-0.003750,0.249972,0,0);}
.ma8_c00452{transform:matrix(0.181155,0.003804,-0.005249,0.249945,0,0);-ms-transform:matrix(0.181155,0.003804,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.181155,0.003804,-0.005249,0.249945,0,0);}
.m13_c00452{transform:matrix(0.181335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181335,0.000000,0.000000,0.250000,0,0);}
.m100_c00452{transform:matrix(0.181865,0.002728,-0.003750,0.249972,0,0);-ms-transform:matrix(0.181865,0.002728,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.181865,0.002728,-0.003750,0.249972,0,0);}
.m15d_c00452{transform:matrix(0.182095,0.002367,-0.003250,0.249979,0,0);-ms-transform:matrix(0.182095,0.002367,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.182095,0.002367,-0.003250,0.249979,0,0);}
.m15b_c00452{transform:matrix(0.182930,0.002378,-0.003250,0.249979,0,0);-ms-transform:matrix(0.182930,0.002378,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.182930,0.002378,-0.003250,0.249979,0,0);}
.m20_c00452{transform:matrix(0.183050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183050,0.000000,0.000000,0.250000,0,0);}
.m7c_c00452{transform:matrix(0.183117,0.002564,-0.003500,0.249976,0,0);-ms-transform:matrix(0.183117,0.002564,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.183117,0.002564,-0.003500,0.249976,0,0);}
.mc3_c00452{transform:matrix(0.183685,0.003857,-0.005249,0.249945,0,0);-ms-transform:matrix(0.183685,0.003857,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.183685,0.003857,-0.005249,0.249945,0,0);}
.m162_c00452{transform:matrix(0.183824,0.002390,-0.003250,0.249979,0,0);-ms-transform:matrix(0.183824,0.002390,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.183824,0.002390,-0.003250,0.249979,0,0);}
.m7d_c00452{transform:matrix(0.184157,0.002578,-0.003500,0.249976,0,0);-ms-transform:matrix(0.184157,0.002578,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.184157,0.002578,-0.003500,0.249976,0,0);}
.m139_c00452{transform:matrix(0.184207,0.003500,-0.004749,0.249955,0,0);-ms-transform:matrix(0.184207,0.003500,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.184207,0.003500,-0.004749,0.249955,0,0);}
.m90_c00452{transform:matrix(0.184252,0.002580,-0.003500,0.249976,0,0);-ms-transform:matrix(0.184252,0.002580,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.184252,0.002580,-0.003500,0.249976,0,0);}
.m14_c00452{transform:matrix(0.184475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184475,0.000000,0.000000,0.250000,0,0);}
.m134_c00452{transform:matrix(0.184652,0.003508,-0.004749,0.249955,0,0);-ms-transform:matrix(0.184652,0.003508,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.184652,0.003508,-0.004749,0.249955,0,0);}
.m15a_c00452{transform:matrix(0.184659,0.002401,-0.003250,0.249979,0,0);-ms-transform:matrix(0.184659,0.002401,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.184659,0.002401,-0.003250,0.249979,0,0);}
.m11e_c00452{transform:matrix(0.184922,0.003514,-0.004749,0.249955,0,0);-ms-transform:matrix(0.184922,0.003514,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.184922,0.003514,-0.004749,0.249955,0,0);}
.m15_c00452{transform:matrix(0.185525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185525,0.000000,0.000000,0.250000,0,0);}
.m7e_c00452{transform:matrix(0.185552,0.002598,-0.003500,0.249976,0,0);-ms-transform:matrix(0.185552,0.002598,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.185552,0.002598,-0.003500,0.249976,0,0);}
.m15c_c00452{transform:matrix(0.186034,0.002418,-0.003250,0.249979,0,0);-ms-transform:matrix(0.186034,0.002418,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.186034,0.002418,-0.003250,0.249979,0,0);}
.m160_c00452{transform:matrix(0.186579,0.002426,-0.003250,0.249979,0,0);-ms-transform:matrix(0.186579,0.002426,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.186579,0.002426,-0.003250,0.249979,0,0);}
.m164_c00452{transform:matrix(0.187159,0.002433,-0.003250,0.249979,0,0);-ms-transform:matrix(0.187159,0.002433,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.187159,0.002433,-0.003250,0.249979,0,0);}
.m11_c00452{transform:matrix(0.187725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187725,0.000000,0.000000,0.250000,0,0);}
.m18_c00452{transform:matrix(0.188550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188550,0.000000,0.000000,0.250000,0,0);}
.mc9_c00452{transform:matrix(0.188573,0.003960,-0.005249,0.249945,0,0);-ms-transform:matrix(0.188573,0.003960,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.188573,0.003960,-0.005249,0.249945,0,0);}
.m10d_c00452{transform:matrix(0.188666,0.003585,-0.004749,0.249955,0,0);-ms-transform:matrix(0.188666,0.003585,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.188666,0.003585,-0.004749,0.249955,0,0);}
.m79_c00452{transform:matrix(0.188727,0.002642,-0.003500,0.249976,0,0);-ms-transform:matrix(0.188727,0.002642,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.188727,0.002642,-0.003500,0.249976,0,0);}
.m13d_c00452{transform:matrix(0.188806,0.003587,-0.004749,0.249955,0,0);-ms-transform:matrix(0.188806,0.003587,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.188806,0.003587,-0.004749,0.249955,0,0);}
.m5e_c00452{transform:matrix(0.188965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188965,0.000000,0.000000,0.250000,0,0);}
.m13a_c00452{transform:matrix(0.189281,0.003596,-0.004749,0.249955,0,0);-ms-transform:matrix(0.189281,0.003596,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.189281,0.003596,-0.004749,0.249955,0,0);}
.m22_c00452{transform:matrix(0.189695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189695,0.000000,0.000000,0.250000,0,0);}
.m75_c00452{transform:matrix(0.190806,0.002671,-0.003500,0.249976,0,0);-ms-transform:matrix(0.190806,0.002671,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.190806,0.002671,-0.003500,0.249976,0,0);}
.m91_c00452{transform:matrix(0.190811,0.002671,-0.003500,0.249976,0,0);-ms-transform:matrix(0.190811,0.002671,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.190811,0.002671,-0.003500,0.249976,0,0);}
.m63_c00452{transform:matrix(0.191356,0.002679,-0.003500,0.249976,0,0);-ms-transform:matrix(0.191356,0.002679,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.191356,0.002679,-0.003500,0.249976,0,0);}
.m133_c00452{transform:matrix(0.191645,0.003641,-0.004749,0.249955,0,0);-ms-transform:matrix(0.191645,0.003641,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.191645,0.003641,-0.004749,0.249955,0,0);}
.m132_c00452{transform:matrix(0.191680,0.003642,-0.004749,0.249955,0,0);-ms-transform:matrix(0.191680,0.003642,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.191680,0.003642,-0.004749,0.249955,0,0);}
.m12_c00452{transform:matrix(0.193520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193520,0.000000,0.000000,0.250000,0,0);}
.m51_c00452{transform:matrix(0.194540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194540,0.000000,0.000000,0.250000,0,0);}
.m72_c00452{transform:matrix(0.194921,0.002729,-0.003500,0.249976,0,0);-ms-transform:matrix(0.194921,0.002729,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.194921,0.002729,-0.003500,0.249976,0,0);}
.m156_c00452{transform:matrix(0.195070,0.003706,-0.004749,0.249955,0,0);-ms-transform:matrix(0.195070,0.003706,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.195070,0.003706,-0.004749,0.249955,0,0);}
.m1d_c00452{transform:matrix(0.195405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195405,0.000000,0.000000,0.250000,0,0);}
.m6e_c00452{transform:matrix(0.195496,0.002737,-0.003500,0.249976,0,0);-ms-transform:matrix(0.195496,0.002737,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.195496,0.002737,-0.003500,0.249976,0,0);}
.m155_c00452{transform:matrix(0.195530,0.003715,-0.004749,0.249955,0,0);-ms-transform:matrix(0.195530,0.003715,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.195530,0.003715,-0.004749,0.249955,0,0);}
.m54_c00452{transform:matrix(0.195580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195580,0.000000,0.000000,0.250000,0,0);}
.m157_c00452{transform:matrix(0.196090,0.003726,-0.004749,0.249955,0,0);-ms-transform:matrix(0.196090,0.003726,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.196090,0.003726,-0.004749,0.249955,0,0);}
.m32_c00452{transform:matrix(0.196125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196125,0.000000,0.000000,0.250000,0,0);}
.m19_c00452{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m113_c00452{transform:matrix(0.196330,0.003730,-0.004749,0.249955,0,0);-ms-transform:matrix(0.196330,0.003730,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.196330,0.003730,-0.004749,0.249955,0,0);}
.m101_c00452{transform:matrix(0.197413,0.002961,-0.003750,0.249972,0,0);-ms-transform:matrix(0.197413,0.002961,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.197413,0.002961,-0.003750,0.249972,0,0);}
.m56_c00452{transform:matrix(0.197550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197550,0.000000,0.000000,0.250000,0,0);}
.m137_c00452{transform:matrix(0.197949,0.003761,-0.004749,0.249955,0,0);-ms-transform:matrix(0.197949,0.003761,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.197949,0.003761,-0.004749,0.249955,0,0);}
.mf2_c00452{transform:matrix(0.198488,0.002977,-0.003750,0.249972,0,0);-ms-transform:matrix(0.198488,0.002977,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.198488,0.002977,-0.003750,0.249972,0,0);}
.m118_c00452{transform:matrix(0.198509,0.003772,-0.004749,0.249955,0,0);-ms-transform:matrix(0.198509,0.003772,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.198509,0.003772,-0.004749,0.249955,0,0);}
.m25_c00452{transform:matrix(0.198755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198755,0.000000,0.000000,0.250000,0,0);}
.m11f_c00452{transform:matrix(0.199064,0.003782,-0.004749,0.249955,0,0);-ms-transform:matrix(0.199064,0.003782,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.199064,0.003782,-0.004749,0.249955,0,0);}
.m121_c00452{transform:matrix(0.199664,0.003794,-0.004749,0.249955,0,0);-ms-transform:matrix(0.199664,0.003794,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.199664,0.003794,-0.004749,0.249955,0,0);}
.m65_c00452{transform:matrix(0.199680,0.002796,-0.003500,0.249976,0,0);-ms-transform:matrix(0.199680,0.002796,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.199680,0.002796,-0.003500,0.249976,0,0);}
.mf_c00452{transform:matrix(0.199860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199860,0.000000,0.000000,0.250000,0,0);}
.m16_c00452{transform:matrix(0.200475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200475,0.000000,0.000000,0.250000,0,0);}
.m112_c00452{transform:matrix(0.201469,0.003828,-0.004749,0.249955,0,0);-ms-transform:matrix(0.201469,0.003828,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.201469,0.003828,-0.004749,0.249955,0,0);}
.m68_c00452{transform:matrix(0.201475,0.002821,-0.003500,0.249976,0,0);-ms-transform:matrix(0.201475,0.002821,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.201475,0.002821,-0.003500,0.249976,0,0);}
.m28_c00452{transform:matrix(0.201535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201535,0.000000,0.000000,0.250000,0,0);}
.m116_c00452{transform:matrix(0.203038,0.003858,-0.004749,0.249955,0,0);-ms-transform:matrix(0.203038,0.003858,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.203038,0.003858,-0.004749,0.249955,0,0);}
.m70_c00452{transform:matrix(0.203280,0.002846,-0.003500,0.249976,0,0);-ms-transform:matrix(0.203280,0.002846,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.203280,0.002846,-0.003500,0.249976,0,0);}
.m4f_c00452{transform:matrix(0.203805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203805,0.000000,0.000000,0.250000,0,0);}
.m1f_c00452{transform:matrix(0.204170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204170,0.000000,0.000000,0.250000,0,0);}
.m62_c00452{transform:matrix(0.204495,0.002863,-0.003500,0.249976,0,0);-ms-transform:matrix(0.204495,0.002863,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.204495,0.002863,-0.003500,0.249976,0,0);}
.m110_c00452{transform:matrix(0.204678,0.003889,-0.004749,0.249955,0,0);-ms-transform:matrix(0.204678,0.003889,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.204678,0.003889,-0.004749,0.249955,0,0);}
.m26_c00452{transform:matrix(0.205745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205745,0.000000,0.000000,0.250000,0,0);}
.m1b_c00452{transform:matrix(0.206195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206195,0.000000,0.000000,0.250000,0,0);}
.m24_c00452{transform:matrix(0.206305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206305,0.000000,0.000000,0.250000,0,0);}
.mc7_c00452{transform:matrix(0.206784,0.004342,-0.005249,0.249945,0,0);-ms-transform:matrix(0.206784,0.004342,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.206784,0.004342,-0.005249,0.249945,0,0);}
.mfe_c00452{transform:matrix(0.206802,0.003102,-0.003750,0.249972,0,0);-ms-transform:matrix(0.206802,0.003102,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.206802,0.003102,-0.003750,0.249972,0,0);}
.m104_c00452{transform:matrix(0.206992,0.003105,-0.003750,0.249972,0,0);-ms-transform:matrix(0.206992,0.003105,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.206992,0.003105,-0.003750,0.249972,0,0);}
.m123_c00452{transform:matrix(0.207388,0.003940,-0.004749,0.249955,0,0);-ms-transform:matrix(0.207388,0.003940,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.207388,0.003940,-0.004749,0.249955,0,0);}
.m11d_c00452{transform:matrix(0.207408,0.003941,-0.004749,0.249955,0,0);-ms-transform:matrix(0.207408,0.003941,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.207408,0.003941,-0.004749,0.249955,0,0);}
.m17_c00452{transform:matrix(0.207565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207565,0.000000,0.000000,0.250000,0,0);}
.m96_c00452{transform:matrix(0.207920,0.002911,-0.003500,0.249976,0,0);-ms-transform:matrix(0.207920,0.002911,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.207920,0.002911,-0.003500,0.249976,0,0);}
.m7a_c00452{transform:matrix(0.208680,0.002922,-0.003500,0.249976,0,0);-ms-transform:matrix(0.208680,0.002922,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.208680,0.002922,-0.003500,0.249976,0,0);}
.m11b_c00452{transform:matrix(0.209182,0.003974,-0.004749,0.249955,0,0);-ms-transform:matrix(0.209182,0.003974,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.209182,0.003974,-0.004749,0.249955,0,0);}
.m3a_c00452{transform:matrix(0.209315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209315,0.000000,0.000000,0.250000,0,0);}
.m5a_c00452{transform:matrix(0.209545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209545,0.000000,0.000000,0.250000,0,0);}
.m154_c00452{transform:matrix(0.210797,0.004005,-0.004749,0.249955,0,0);-ms-transform:matrix(0.210797,0.004005,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.210797,0.004005,-0.004749,0.249955,0,0);}
.m120_c00452{transform:matrix(0.210837,0.004006,-0.004749,0.249955,0,0);-ms-transform:matrix(0.210837,0.004006,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.210837,0.004006,-0.004749,0.249955,0,0);}
.m111_c00452{transform:matrix(0.210987,0.004009,-0.004749,0.249955,0,0);-ms-transform:matrix(0.210987,0.004009,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.210987,0.004009,-0.004749,0.249955,0,0);}
.mae_c00452{transform:matrix(0.211168,0.004435,-0.005249,0.249945,0,0);-ms-transform:matrix(0.211168,0.004435,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.211168,0.004435,-0.005249,0.249945,0,0);}
.m12e_c00452{transform:matrix(0.211177,0.004012,-0.004749,0.249955,0,0);-ms-transform:matrix(0.211177,0.004012,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.211177,0.004012,-0.004749,0.249955,0,0);}
.mb3_c00452{transform:matrix(0.211298,0.004437,-0.005249,0.249945,0,0);-ms-transform:matrix(0.211298,0.004437,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.211298,0.004437,-0.005249,0.249945,0,0);}
.m9c_c00452{transform:matrix(0.211345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211345,0.000000,0.000000,0.250000,0,0);}
.m94_c00452{transform:matrix(0.211794,0.002965,-0.003500,0.249976,0,0);-ms-transform:matrix(0.211794,0.002965,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.211794,0.002965,-0.003500,0.249976,0,0);}
.m8f_c00452{transform:matrix(0.212449,0.002974,-0.003500,0.249976,0,0);-ms-transform:matrix(0.212449,0.002974,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.212449,0.002974,-0.003500,0.249976,0,0);}
.m4e_c00452{transform:matrix(0.212460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212460,0.000000,0.000000,0.250000,0,0);}
.ma6_c00452{transform:matrix(0.212463,0.004462,-0.005249,0.249945,0,0);-ms-transform:matrix(0.212463,0.004462,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.212463,0.004462,-0.005249,0.249945,0,0);}
.m12b_c00452{transform:matrix(0.213097,0.004049,-0.004749,0.249955,0,0);-ms-transform:matrix(0.213097,0.004049,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.213097,0.004049,-0.004749,0.249955,0,0);}
.m55_c00452{transform:matrix(0.213555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213555,0.000000,0.000000,0.250000,0,0);}
.mac_c00452{transform:matrix(0.213588,0.004485,-0.005249,0.249945,0,0);-ms-transform:matrix(0.213588,0.004485,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.213588,0.004485,-0.005249,0.249945,0,0);}
.m50_c00452{transform:matrix(0.213665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213665,0.000000,0.000000,0.250000,0,0);}
.m159_c00452{transform:matrix(0.213691,0.004060,-0.004749,0.249955,0,0);-ms-transform:matrix(0.213691,0.004060,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.213691,0.004060,-0.004749,0.249955,0,0);}
.m23_c00452{transform:matrix(0.213840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213840,0.000000,0.000000,0.250000,0,0);}
.m9a_c00452{transform:matrix(0.214140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214140,0.000000,0.000000,0.250000,0,0);}
.m21_c00452{transform:matrix(0.215065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215065,0.000000,0.000000,0.250000,0,0);}
.m11a_c00452{transform:matrix(0.215446,0.004093,-0.004749,0.249955,0,0);-ms-transform:matrix(0.215446,0.004093,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.215446,0.004093,-0.004749,0.249955,0,0);}
.m67_c00452{transform:matrix(0.215504,0.003017,-0.003500,0.249976,0,0);-ms-transform:matrix(0.215504,0.003017,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.215504,0.003017,-0.003500,0.249976,0,0);}
.mf3_c00452{transform:matrix(0.215691,0.003235,-0.003750,0.249972,0,0);-ms-transform:matrix(0.215691,0.003235,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.215691,0.003235,-0.003750,0.249972,0,0);}
.m60_c00452{transform:matrix(0.216015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216015,0.000000,0.000000,0.250000,0,0);}
.m81_c00452{transform:matrix(0.216044,0.003025,-0.003500,0.249976,0,0);-ms-transform:matrix(0.216044,0.003025,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.216044,0.003025,-0.003500,0.249976,0,0);}
.md6_c00452{transform:matrix(0.216701,0.003251,-0.003750,0.249972,0,0);-ms-transform:matrix(0.216701,0.003251,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.216701,0.003251,-0.003750,0.249972,0,0);}
.m1e_c00452{transform:matrix(0.216935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216935,0.000000,0.000000,0.250000,0,0);}
.m2f_c00452{transform:matrix(0.216950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216950,0.000000,0.000000,0.250000,0,0);}
.mfb_c00452{transform:matrix(0.217011,0.003255,-0.003750,0.249972,0,0);-ms-transform:matrix(0.217011,0.003255,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.217011,0.003255,-0.003750,0.249972,0,0);}
.m4c_c00452{transform:matrix(0.217115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217115,0.000000,0.000000,0.250000,0,0);}
.m97_c00452{transform:matrix(0.217529,0.003045,-0.003500,0.249976,0,0);-ms-transform:matrix(0.217529,0.003045,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.217529,0.003045,-0.003500,0.249976,0,0);}
.m148_c00452{transform:matrix(0.217806,0.004138,-0.004749,0.249955,0,0);-ms-transform:matrix(0.217806,0.004138,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.217806,0.004138,-0.004749,0.249955,0,0);}
.m77_c00452{transform:matrix(0.217859,0.003050,-0.003500,0.249976,0,0);-ms-transform:matrix(0.217859,0.003050,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.217859,0.003050,-0.003500,0.249976,0,0);}
.m76_c00452{transform:matrix(0.217989,0.003052,-0.003500,0.249976,0,0);-ms-transform:matrix(0.217989,0.003052,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.217989,0.003052,-0.003500,0.249976,0,0);}
.m131_c00452{transform:matrix(0.218326,0.004148,-0.004749,0.249955,0,0);-ms-transform:matrix(0.218326,0.004148,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.218326,0.004148,-0.004749,0.249955,0,0);}
.m53_c00452{transform:matrix(0.218505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218505,0.000000,0.000000,0.250000,0,0);}
.m92_c00452{transform:matrix(0.218569,0.003060,-0.003500,0.249976,0,0);-ms-transform:matrix(0.218569,0.003060,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.218569,0.003060,-0.003500,0.249976,0,0);}
.m95_c00452{transform:matrix(0.218984,0.003066,-0.003500,0.249976,0,0);-ms-transform:matrix(0.218984,0.003066,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.218984,0.003066,-0.003500,0.249976,0,0);}
.m12c_c00452{transform:matrix(0.219440,0.004169,-0.004749,0.249955,0,0);-ms-transform:matrix(0.219440,0.004169,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.219440,0.004169,-0.004749,0.249955,0,0);}
.m142_c00452{transform:matrix(0.219785,0.004176,-0.004749,0.249955,0,0);-ms-transform:matrix(0.219785,0.004176,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.219785,0.004176,-0.004749,0.249955,0,0);}
.md0_c00452{transform:matrix(0.219995,0.003300,-0.003750,0.249972,0,0);-ms-transform:matrix(0.219995,0.003300,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.219995,0.003300,-0.003750,0.249972,0,0);}
.m61_c00452{transform:matrix(0.220108,0.003082,-0.003500,0.249976,0,0);-ms-transform:matrix(0.220108,0.003082,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.220108,0.003082,-0.003500,0.249976,0,0);}
.mce_c00452{transform:matrix(0.220165,0.003302,-0.003750,0.249972,0,0);-ms-transform:matrix(0.220165,0.003302,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.220165,0.003302,-0.003750,0.249972,0,0);}
.m27_c00452{transform:matrix(0.220230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220230,0.000000,0.000000,0.250000,0,0);}
.m66_c00452{transform:matrix(0.220443,0.003086,-0.003500,0.249976,0,0);-ms-transform:matrix(0.220443,0.003086,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.220443,0.003086,-0.003500,0.249976,0,0);}
.m7f_c00452{transform:matrix(0.220493,0.003087,-0.003500,0.249976,0,0);-ms-transform:matrix(0.220493,0.003087,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.220493,0.003087,-0.003500,0.249976,0,0);}
.m146_c00452{transform:matrix(0.220825,0.004196,-0.004749,0.249955,0,0);-ms-transform:matrix(0.220825,0.004196,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.220825,0.004196,-0.004749,0.249955,0,0);}
.m93_c00452{transform:matrix(0.221068,0.003095,-0.003500,0.249976,0,0);-ms-transform:matrix(0.221068,0.003095,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.221068,0.003095,-0.003500,0.249976,0,0);}
.ma1_c00452{transform:matrix(0.221071,0.004642,-0.005249,0.249945,0,0);-ms-transform:matrix(0.221071,0.004642,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.221071,0.004642,-0.005249,0.249945,0,0);}
.m10f_c00452{transform:matrix(0.221505,0.004209,-0.004749,0.249955,0,0);-ms-transform:matrix(0.221505,0.004209,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.221505,0.004209,-0.004749,0.249955,0,0);}
.mcc_c00452{transform:matrix(0.222100,0.003332,-0.003750,0.249972,0,0);-ms-transform:matrix(0.222100,0.003332,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.222100,0.003332,-0.003750,0.249972,0,0);}
.m59_c00452{transform:matrix(0.222215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222215,0.000000,0.000000,0.250000,0,0);}
.m122_c00452{transform:matrix(0.222415,0.004226,-0.004749,0.249955,0,0);-ms-transform:matrix(0.222415,0.004226,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.222415,0.004226,-0.004749,0.249955,0,0);}
.mcf_c00452{transform:matrix(0.222465,0.003337,-0.003750,0.249972,0,0);-ms-transform:matrix(0.222465,0.003337,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.222465,0.003337,-0.003750,0.249972,0,0);}
.m10e_c00452{transform:matrix(0.222585,0.004229,-0.004749,0.249955,0,0);-ms-transform:matrix(0.222585,0.004229,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.222585,0.004229,-0.004749,0.249955,0,0);}
.m82_c00452{transform:matrix(0.223013,0.003122,-0.003500,0.249976,0,0);-ms-transform:matrix(0.223013,0.003122,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.223013,0.003122,-0.003500,0.249976,0,0);}
.m78_c00452{transform:matrix(0.223143,0.003124,-0.003500,0.249976,0,0);-ms-transform:matrix(0.223143,0.003124,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.223143,0.003124,-0.003500,0.249976,0,0);}
.mf8_c00452{transform:matrix(0.223380,0.003351,-0.003750,0.249972,0,0);-ms-transform:matrix(0.223380,0.003351,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.223380,0.003351,-0.003750,0.249972,0,0);}
.m130_c00452{transform:matrix(0.224040,0.004257,-0.004749,0.249955,0,0);-ms-transform:matrix(0.224040,0.004257,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.224040,0.004257,-0.004749,0.249955,0,0);}
.m114_c00452{transform:matrix(0.224170,0.004259,-0.004749,0.249955,0,0);-ms-transform:matrix(0.224170,0.004259,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.224170,0.004259,-0.004749,0.249955,0,0);}
.m5b_c00452{transform:matrix(0.224340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224340,0.000000,0.000000,0.250000,0,0);}
.mc6_c00452{transform:matrix(0.224715,0.004719,-0.005249,0.249945,0,0);-ms-transform:matrix(0.224715,0.004719,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.224715,0.004719,-0.005249,0.249945,0,0);}
.m5c_c00452{transform:matrix(0.224810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224810,0.000000,0.000000,0.250000,0,0);}
.mcd_c00452{transform:matrix(0.224975,0.003375,-0.003750,0.249972,0,0);-ms-transform:matrix(0.224975,0.003375,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.224975,0.003375,-0.003750,0.249972,0,0);}
.m115_c00452{transform:matrix(0.224994,0.004275,-0.004749,0.249955,0,0);-ms-transform:matrix(0.224994,0.004275,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.224994,0.004275,-0.004749,0.249955,0,0);}
.m119_c00452{transform:matrix(0.225079,0.004277,-0.004749,0.249955,0,0);-ms-transform:matrix(0.225079,0.004277,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.225079,0.004277,-0.004749,0.249955,0,0);}
.m2e_c00452{transform:matrix(0.225560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225560,0.000000,0.000000,0.250000,0,0);}
.md9_c00452{transform:matrix(0.226020,0.003390,-0.003750,0.249972,0,0);-ms-transform:matrix(0.226020,0.003390,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.226020,0.003390,-0.003750,0.249972,0,0);}
.m10a_c00452{transform:matrix(0.226054,0.004295,-0.004749,0.249955,0,0);-ms-transform:matrix(0.226054,0.004295,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.226054,0.004295,-0.004749,0.249955,0,0);}
.mff_c00452{transform:matrix(0.226095,0.003391,-0.003750,0.249972,0,0);-ms-transform:matrix(0.226095,0.003391,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.226095,0.003391,-0.003750,0.249972,0,0);}
.mda_c00452{transform:matrix(0.226575,0.003399,-0.003750,0.249972,0,0);-ms-transform:matrix(0.226575,0.003399,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.226575,0.003399,-0.003750,0.249972,0,0);}
.m14f_c00452{transform:matrix(0.226704,0.004307,-0.004749,0.249955,0,0);-ms-transform:matrix(0.226704,0.004307,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.226704,0.004307,-0.004749,0.249955,0,0);}
.ma2_c00452{transform:matrix(0.226845,0.004764,-0.005249,0.249945,0,0);-ms-transform:matrix(0.226845,0.004764,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.226845,0.004764,-0.005249,0.249945,0,0);}
.m7b_c00452{transform:matrix(0.227193,0.003181,-0.003500,0.249976,0,0);-ms-transform:matrix(0.227193,0.003181,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.227193,0.003181,-0.003500,0.249976,0,0);}
.mc0_c00452{transform:matrix(0.227805,0.004784,-0.005249,0.249945,0,0);-ms-transform:matrix(0.227805,0.004784,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.227805,0.004784,-0.005249,0.249945,0,0);}
.m6c_c00452{transform:matrix(0.228458,0.003198,-0.003500,0.249976,0,0);-ms-transform:matrix(0.228458,0.003198,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.228458,0.003198,-0.003500,0.249976,0,0);}
.m147_c00452{transform:matrix(0.228469,0.004341,-0.004749,0.249955,0,0);-ms-transform:matrix(0.228469,0.004341,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.228469,0.004341,-0.004749,0.249955,0,0);}
.m129_c00452{transform:matrix(0.228589,0.004343,-0.004749,0.249955,0,0);-ms-transform:matrix(0.228589,0.004343,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.228589,0.004343,-0.004749,0.249955,0,0);}
.me2_c00452{transform:matrix(0.228834,0.003433,-0.003750,0.249972,0,0);-ms-transform:matrix(0.228834,0.003433,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.228834,0.003433,-0.003750,0.249972,0,0);}
.me1_c00452{transform:matrix(0.229124,0.003437,-0.003750,0.249972,0,0);-ms-transform:matrix(0.229124,0.003437,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.229124,0.003437,-0.003750,0.249972,0,0);}
.m102_c00452{transform:matrix(0.229184,0.003438,-0.003750,0.249972,0,0);-ms-transform:matrix(0.229184,0.003438,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.229184,0.003438,-0.003750,0.249972,0,0);}
.mbe_c00452{transform:matrix(0.229279,0.004815,-0.005249,0.249945,0,0);-ms-transform:matrix(0.229279,0.004815,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.229279,0.004815,-0.005249,0.249945,0,0);}
.md7_c00452{transform:matrix(0.229509,0.003443,-0.003750,0.249972,0,0);-ms-transform:matrix(0.229509,0.003443,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.229509,0.003443,-0.003750,0.249972,0,0);}
.m2a_c00452{transform:matrix(0.230010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230010,0.000000,0.000000,0.250000,0,0);}
.mc8_c00452{transform:matrix(0.230264,0.004836,-0.005249,0.249945,0,0);-ms-transform:matrix(0.230264,0.004836,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.230264,0.004836,-0.005249,0.249945,0,0);}
.m31_c00452{transform:matrix(0.230355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230355,0.000000,0.000000,0.250000,0,0);}
.mc4_c00452{transform:matrix(0.230409,0.004839,-0.005249,0.249945,0,0);-ms-transform:matrix(0.230409,0.004839,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.230409,0.004839,-0.005249,0.249945,0,0);}
.mdd_c00452{transform:matrix(0.230889,0.003463,-0.003750,0.249972,0,0);-ms-transform:matrix(0.230889,0.003463,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.230889,0.003463,-0.003750,0.249972,0,0);}
.mdb_c00452{transform:matrix(0.231174,0.003468,-0.003750,0.249972,0,0);-ms-transform:matrix(0.231174,0.003468,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.231174,0.003468,-0.003750,0.249972,0,0);}
.maf_c00452{transform:matrix(0.231284,0.004857,-0.005249,0.249945,0,0);-ms-transform:matrix(0.231284,0.004857,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.231284,0.004857,-0.005249,0.249945,0,0);}
.m6d_c00452{transform:matrix(0.231452,0.003240,-0.003500,0.249976,0,0);-ms-transform:matrix(0.231452,0.003240,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.231452,0.003240,-0.003500,0.249976,0,0);}
.m143_c00452{transform:matrix(0.231453,0.004398,-0.004749,0.249955,0,0);-ms-transform:matrix(0.231453,0.004398,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.231453,0.004398,-0.004749,0.249955,0,0);}
.m11c_c00452{transform:matrix(0.231458,0.004398,-0.004749,0.249955,0,0);-ms-transform:matrix(0.231458,0.004398,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.231458,0.004398,-0.004749,0.249955,0,0);}
.m30_c00452{transform:matrix(0.232610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232610,0.000000,0.000000,0.250000,0,0);}
.m153_c00452{transform:matrix(0.232653,0.004420,-0.004749,0.249955,0,0);-ms-transform:matrix(0.232653,0.004420,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.232653,0.004420,-0.004749,0.249955,0,0);}
.mf5_c00452{transform:matrix(0.233369,0.003501,-0.003750,0.249972,0,0);-ms-transform:matrix(0.233369,0.003501,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.233369,0.003501,-0.003750,0.249972,0,0);}
.m71_c00452{transform:matrix(0.233372,0.003267,-0.003500,0.249976,0,0);-ms-transform:matrix(0.233372,0.003267,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.233372,0.003267,-0.003500,0.249976,0,0);}
.m109_c00452{transform:matrix(0.233528,0.004437,-0.004749,0.249955,0,0);-ms-transform:matrix(0.233528,0.004437,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.233528,0.004437,-0.004749,0.249955,0,0);}
.m45_c00452{transform:matrix(0.233680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233680,0.000000,0.000000,0.250000,0,0);}
.m8_c00452{transform:matrix(0.233695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233695,0.000000,0.000000,0.250000,0,0);}
.meb_c00452{transform:matrix(0.233709,0.003506,-0.003750,0.249972,0,0);-ms-transform:matrix(0.233709,0.003506,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.233709,0.003506,-0.003750,0.249972,0,0);}
.m10c_c00452{transform:matrix(0.233773,0.004442,-0.004749,0.249955,0,0);-ms-transform:matrix(0.233773,0.004442,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.233773,0.004442,-0.004749,0.249955,0,0);}
.mf6_c00452{transform:matrix(0.233979,0.003510,-0.003750,0.249972,0,0);-ms-transform:matrix(0.233979,0.003510,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.233979,0.003510,-0.003750,0.249972,0,0);}
.m64_c00452{transform:matrix(0.234152,0.003278,-0.003500,0.249976,0,0);-ms-transform:matrix(0.234152,0.003278,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.234152,0.003278,-0.003500,0.249976,0,0);}
.m107_c00452{transform:matrix(0.234218,0.004450,-0.004749,0.249955,0,0);-ms-transform:matrix(0.234218,0.004450,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.234218,0.004450,-0.004749,0.249955,0,0);}
.m73_c00452{transform:matrix(0.234637,0.003285,-0.003500,0.249976,0,0);-ms-transform:matrix(0.234637,0.003285,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.234637,0.003285,-0.003500,0.249976,0,0);}
.m14d_c00452{transform:matrix(0.234783,0.004461,-0.004749,0.249955,0,0);-ms-transform:matrix(0.234783,0.004461,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.234783,0.004461,-0.004749,0.249955,0,0);}
.ma_c00452{transform:matrix(0.234800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234800,0.000000,0.000000,0.250000,0,0);}
.mc2_c00452{transform:matrix(0.235738,0.004950,-0.005249,0.249945,0,0);-ms-transform:matrix(0.235738,0.004950,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.235738,0.004950,-0.005249,0.249945,0,0);}
.m33_c00452{transform:matrix(0.235920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235920,0.000000,0.000000,0.250000,0,0);}
.mf9_c00452{transform:matrix(0.235978,0.003540,-0.003750,0.249972,0,0);-ms-transform:matrix(0.235978,0.003540,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.235978,0.003540,-0.003750,0.249972,0,0);}
.m158_c00452{transform:matrix(0.236357,0.004491,-0.004749,0.249955,0,0);-ms-transform:matrix(0.236357,0.004491,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.236357,0.004491,-0.004749,0.249955,0,0);}
.mef_c00452{transform:matrix(0.236538,0.003548,-0.003750,0.249972,0,0);-ms-transform:matrix(0.236538,0.003548,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.236538,0.003548,-0.003750,0.249972,0,0);}
.m128_c00452{transform:matrix(0.236857,0.004500,-0.004749,0.249955,0,0);-ms-transform:matrix(0.236857,0.004500,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.236857,0.004500,-0.004749,0.249955,0,0);}
.m2c_c00452{transform:matrix(0.237165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237165,0.000000,0.000000,0.250000,0,0);}
.m74_c00452{transform:matrix(0.237317,0.003322,-0.003500,0.249976,0,0);-ms-transform:matrix(0.237317,0.003322,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.237317,0.003322,-0.003500,0.249976,0,0);}
.md1_c00452{transform:matrix(0.237438,0.003562,-0.003750,0.249972,0,0);-ms-transform:matrix(0.237438,0.003562,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.237438,0.003562,-0.003750,0.249972,0,0);}
.me0_c00452{transform:matrix(0.237493,0.003562,-0.003750,0.249972,0,0);-ms-transform:matrix(0.237493,0.003562,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.237493,0.003562,-0.003750,0.249972,0,0);}
.m6f_c00452{transform:matrix(0.237757,0.003329,-0.003500,0.249976,0,0);-ms-transform:matrix(0.237757,0.003329,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.237757,0.003329,-0.003500,0.249976,0,0);}
.md4_c00452{transform:matrix(0.238013,0.003570,-0.003750,0.249972,0,0);-ms-transform:matrix(0.238013,0.003570,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.238013,0.003570,-0.003750,0.249972,0,0);}
.mcb_c00452{transform:matrix(0.238127,0.005001,-0.005249,0.249945,0,0);-ms-transform:matrix(0.238127,0.005001,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.238127,0.005001,-0.005249,0.249945,0,0);}
.m117_c00452{transform:matrix(0.238382,0.004529,-0.004749,0.249955,0,0);-ms-transform:matrix(0.238382,0.004529,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.238382,0.004529,-0.004749,0.249955,0,0);}
.med_c00452{transform:matrix(0.238543,0.003578,-0.003750,0.249972,0,0);-ms-transform:matrix(0.238543,0.003578,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.238543,0.003578,-0.003750,0.249972,0,0);}
.m126_c00452{transform:matrix(0.238807,0.004537,-0.004749,0.249955,0,0);-ms-transform:matrix(0.238807,0.004537,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.238807,0.004537,-0.004749,0.249955,0,0);}
.m8b_c00452{transform:matrix(0.238832,0.003344,-0.003500,0.249976,0,0);-ms-transform:matrix(0.238832,0.003344,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.238832,0.003344,-0.003500,0.249976,0,0);}
.m69_c00452{transform:matrix(0.238897,0.003345,-0.003500,0.249976,0,0);-ms-transform:matrix(0.238897,0.003345,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.238897,0.003345,-0.003500,0.249976,0,0);}
.m84_c00452{transform:matrix(0.238927,0.003345,-0.003500,0.249976,0,0);-ms-transform:matrix(0.238927,0.003345,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.238927,0.003345,-0.003500,0.249976,0,0);}
.mbd_c00452{transform:matrix(0.238947,0.005018,-0.005249,0.249945,0,0);-ms-transform:matrix(0.238947,0.005018,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.238947,0.005018,-0.005249,0.249945,0,0);}
.m3c_c00452{transform:matrix(0.239545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239545,0.000000,0.000000,0.250000,0,0);}
.m42_c00452{transform:matrix(0.239565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239565,0.000000,0.000000,0.250000,0,0);}
.m10b_c00452{transform:matrix(0.239807,0.004556,-0.004749,0.249955,0,0);-ms-transform:matrix(0.239807,0.004556,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.239807,0.004556,-0.004749,0.249955,0,0);}
.m124_c00452{transform:matrix(0.239902,0.004558,-0.004749,0.249955,0,0);-ms-transform:matrix(0.239902,0.004558,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.239902,0.004558,-0.004749,0.249955,0,0);}
.m35_c00452{transform:matrix(0.239910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239910,0.000000,0.000000,0.250000,0,0);}
.m7_c00452{transform:matrix(0.240295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240295,0.000000,0.000000,0.250000,0,0);}
.maa_c00452{transform:matrix(0.240622,0.005053,-0.005249,0.249945,0,0);-ms-transform:matrix(0.240622,0.005053,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.240622,0.005053,-0.005249,0.249945,0,0);}
.m103_c00452{transform:matrix(0.240633,0.003609,-0.003750,0.249972,0,0);-ms-transform:matrix(0.240633,0.003609,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.240633,0.003609,-0.003750,0.249972,0,0);}
.m38_c00452{transform:matrix(0.240635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240635,0.000000,0.000000,0.250000,0,0);}
.mab_c00452{transform:matrix(0.240687,0.005054,-0.005249,0.249945,0,0);-ms-transform:matrix(0.240687,0.005054,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.240687,0.005054,-0.005249,0.249945,0,0);}
.m6a_c00452{transform:matrix(0.241661,0.003383,-0.003500,0.249976,0,0);-ms-transform:matrix(0.241661,0.003383,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.241661,0.003383,-0.003500,0.249976,0,0);}
.m105_c00452{transform:matrix(0.242071,0.004599,-0.004749,0.249955,0,0);-ms-transform:matrix(0.242071,0.004599,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.242071,0.004599,-0.004749,0.249955,0,0);}
.mc5_c00452{transform:matrix(0.242542,0.005093,-0.005249,0.249945,0,0);-ms-transform:matrix(0.242542,0.005093,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.242542,0.005093,-0.005249,0.249945,0,0);}
.m46_c00452{transform:matrix(0.242745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242745,0.000000,0.000000,0.250000,0,0);}
.mfa_c00452{transform:matrix(0.242748,0.003641,-0.003750,0.249972,0,0);-ms-transform:matrix(0.242748,0.003641,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.242748,0.003641,-0.003750,0.249972,0,0);}
.ma7_c00452{transform:matrix(0.242816,0.005099,-0.005249,0.249945,0,0);-ms-transform:matrix(0.242816,0.005099,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.242816,0.005099,-0.005249,0.249945,0,0);}
.mca_c00452{transform:matrix(0.242856,0.005100,-0.005249,0.249945,0,0);-ms-transform:matrix(0.242856,0.005100,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.242856,0.005100,-0.005249,0.249945,0,0);}
.mc_c00452{transform:matrix(0.243100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243100,0.000000,0.000000,0.250000,0,0);}
.mdf_c00452{transform:matrix(0.243913,0.003659,-0.003750,0.249972,0,0);-ms-transform:matrix(0.243913,0.003659,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.243913,0.003659,-0.003750,0.249972,0,0);}
.m8a_c00452{transform:matrix(0.244231,0.003419,-0.003500,0.249976,0,0);-ms-transform:matrix(0.244231,0.003419,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.244231,0.003419,-0.003500,0.249976,0,0);}
.m14e_c00452{transform:matrix(0.244511,0.004646,-0.004749,0.249955,0,0);-ms-transform:matrix(0.244511,0.004646,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.244511,0.004646,-0.004749,0.249955,0,0);}
.mee_c00452{transform:matrix(0.244832,0.003672,-0.003750,0.249972,0,0);-ms-transform:matrix(0.244832,0.003672,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.244832,0.003672,-0.003750,0.249972,0,0);}
.m4a_c00452{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m58_c00452{transform:matrix(0.245760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245760,0.000000,0.000000,0.250000,0,0);}
.md8_c00452{transform:matrix(0.245952,0.003689,-0.003750,0.249972,0,0);-ms-transform:matrix(0.245952,0.003689,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.245952,0.003689,-0.003750,0.249972,0,0);}
.me4_c00452{transform:matrix(0.245962,0.003689,-0.003750,0.249972,0,0);-ms-transform:matrix(0.245962,0.003689,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.245962,0.003689,-0.003750,0.249972,0,0);}
.m3e_c00452{transform:matrix(0.246205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246205,0.000000,0.000000,0.250000,0,0);}
.mad_c00452{transform:matrix(0.246266,0.005172,-0.005249,0.249945,0,0);-ms-transform:matrix(0.246266,0.005172,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.246266,0.005172,-0.005249,0.249945,0,0);}
.md3_c00452{transform:matrix(0.246747,0.003701,-0.003750,0.249972,0,0);-ms-transform:matrix(0.246747,0.003701,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.246747,0.003701,-0.003750,0.249972,0,0);}
.m144_c00452{transform:matrix(0.246780,0.004689,-0.004749,0.249955,0,0);-ms-transform:matrix(0.246780,0.004689,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.246780,0.004689,-0.004749,0.249955,0,0);}
.m12a_c00452{transform:matrix(0.247285,0.004698,-0.004749,0.249955,0,0);-ms-transform:matrix(0.247285,0.004698,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.247285,0.004698,-0.004749,0.249955,0,0);}
.me5_c00452{transform:matrix(0.248097,0.003721,-0.003750,0.249972,0,0);-ms-transform:matrix(0.248097,0.003721,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.248097,0.003721,-0.003750,0.249972,0,0);}
.mb1_c00452{transform:matrix(0.248845,0.005226,-0.005249,0.249945,0,0);-ms-transform:matrix(0.248845,0.005226,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.248845,0.005226,-0.005249,0.249945,0,0);}
.ma9_c00452{transform:matrix(0.248990,0.005229,-0.005249,0.249945,0,0);-ms-transform:matrix(0.248990,0.005229,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.248990,0.005229,-0.005249,0.249945,0,0);}
.me3_c00452{transform:matrix(0.249207,0.003738,-0.003750,0.249972,0,0);-ms-transform:matrix(0.249207,0.003738,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.249207,0.003738,-0.003750,0.249972,0,0);}
.m40_c00452{transform:matrix(0.249405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249405,0.000000,0.000000,0.250000,0,0);}
.m12f_c00452{transform:matrix(0.249660,0.004744,-0.004749,0.249955,0,0);-ms-transform:matrix(0.249660,0.004744,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.249660,0.004744,-0.004749,0.249955,0,0);}
.mbb_c00452{transform:matrix(0.251210,0.005275,-0.005249,0.249945,0,0);-ms-transform:matrix(0.251210,0.005275,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.251210,0.005275,-0.005249,0.249945,0,0);}
.m152_c00452{transform:matrix(0.251275,0.004774,-0.004749,0.249955,0,0);-ms-transform:matrix(0.251275,0.004774,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.251275,0.004774,-0.004749,0.249955,0,0);}
.m14c_c00452{transform:matrix(0.251650,0.004781,-0.004749,0.249955,0,0);-ms-transform:matrix(0.251650,0.004781,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.251650,0.004781,-0.004749,0.249955,0,0);}
.mf4_c00452{transform:matrix(0.251867,0.003778,-0.003750,0.249972,0,0);-ms-transform:matrix(0.251867,0.003778,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.251867,0.003778,-0.003750,0.249972,0,0);}
.m34_c00452{transform:matrix(0.251870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251870,0.000000,0.000000,0.250000,0,0);}
.m125_c00452{transform:matrix(0.252209,0.004792,-0.004749,0.249955,0,0);-ms-transform:matrix(0.252209,0.004792,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.252209,0.004792,-0.004749,0.249955,0,0);}
.m89_c00452{transform:matrix(0.252565,0.003536,-0.003500,0.249976,0,0);-ms-transform:matrix(0.252565,0.003536,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.252565,0.003536,-0.003500,0.249976,0,0);}
.m48_c00452{transform:matrix(0.252590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252590,0.000000,0.000000,0.250000,0,0);}
.m43_c00452{transform:matrix(0.252880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252880,0.000000,0.000000,0.250000,0,0);}
.md2_c00452{transform:matrix(0.252932,0.003794,-0.003750,0.249972,0,0);-ms-transform:matrix(0.252932,0.003794,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.252932,0.003794,-0.003750,0.249972,0,0);}
.m4_c00452{transform:matrix(0.253160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253160,0.000000,0.000000,0.250000,0,0);}
.m5f_c00452{transform:matrix(0.254225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254225,0.000000,0.000000,0.250000,0,0);}
.md5_c00452{transform:matrix(0.254801,0.003822,-0.003750,0.249972,0,0);-ms-transform:matrix(0.254801,0.003822,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.254801,0.003822,-0.003750,0.249972,0,0);}
.mea_c00452{transform:matrix(0.255026,0.003825,-0.003750,0.249972,0,0);-ms-transform:matrix(0.255026,0.003825,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.255026,0.003825,-0.003750,0.249972,0,0);}
.m8c_c00452{transform:matrix(0.255185,0.003573,-0.003500,0.249976,0,0);-ms-transform:matrix(0.255185,0.003573,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.255185,0.003573,-0.003500,0.249976,0,0);}
.mc1_c00452{transform:matrix(0.255284,0.005361,-0.005249,0.249945,0,0);-ms-transform:matrix(0.255284,0.005361,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.255284,0.005361,-0.005249,0.249945,0,0);}
.me8_c00452{transform:matrix(0.255411,0.003831,-0.003750,0.249972,0,0);-ms-transform:matrix(0.255411,0.003831,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.255411,0.003831,-0.003750,0.249972,0,0);}
.m3_c00452{transform:matrix(0.255935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255935,0.000000,0.000000,0.250000,0,0);}
.ma0_c00452{transform:matrix(0.256149,0.005379,-0.005249,0.249945,0,0);-ms-transform:matrix(0.256149,0.005379,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.256149,0.005379,-0.005249,0.249945,0,0);}
.m141_c00452{transform:matrix(0.256174,0.004867,-0.004749,0.249955,0,0);-ms-transform:matrix(0.256174,0.004867,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.256174,0.004867,-0.004749,0.249955,0,0);}
.m5d_c00452{transform:matrix(0.256615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256615,0.000000,0.000000,0.250000,0,0);}
.m12d_c00452{transform:matrix(0.256774,0.004879,-0.004749,0.249955,0,0);-ms-transform:matrix(0.256774,0.004879,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.256774,0.004879,-0.004749,0.249955,0,0);}
.m36_c00452{transform:matrix(0.257420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257420,0.000000,0.000000,0.250000,0,0);}
.m14a_c00452{transform:matrix(0.257529,0.004893,-0.004749,0.249955,0,0);-ms-transform:matrix(0.257529,0.004893,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.257529,0.004893,-0.004749,0.249955,0,0);}
.mb0_c00452{transform:matrix(0.257933,0.005417,-0.005249,0.249945,0,0);-ms-transform:matrix(0.257933,0.005417,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.257933,0.005417,-0.005249,0.249945,0,0);}
.m127_c00452{transform:matrix(0.257963,0.004901,-0.004749,0.249955,0,0);-ms-transform:matrix(0.257963,0.004901,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.257963,0.004901,-0.004749,0.249955,0,0);}
.m3b_c00452{transform:matrix(0.258070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258070,0.000000,0.000000,0.250000,0,0);}
.mde_c00452{transform:matrix(0.258451,0.003877,-0.003750,0.249972,0,0);-ms-transform:matrix(0.258451,0.003877,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.258451,0.003877,-0.003750,0.249972,0,0);}
.mf1_c00452{transform:matrix(0.258566,0.003878,-0.003750,0.249972,0,0);-ms-transform:matrix(0.258566,0.003878,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.258566,0.003878,-0.003750,0.249972,0,0);}
.m150_c00452{transform:matrix(0.258778,0.004917,-0.004749,0.249955,0,0);-ms-transform:matrix(0.258778,0.004917,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.258778,0.004917,-0.004749,0.249955,0,0);}
.mf7_c00452{transform:matrix(0.259231,0.003888,-0.003750,0.249972,0,0);-ms-transform:matrix(0.259231,0.003888,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.259231,0.003888,-0.003750,0.249972,0,0);}
.ma3_c00452{transform:matrix(0.259278,0.005445,-0.005249,0.249945,0,0);-ms-transform:matrix(0.259278,0.005445,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.259278,0.005445,-0.005249,0.249945,0,0);}
.m151_c00452{transform:matrix(0.259283,0.004926,-0.004749,0.249955,0,0);-ms-transform:matrix(0.259283,0.004926,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.259283,0.004926,-0.004749,0.249955,0,0);}
.m108_c00452{transform:matrix(0.259478,0.004930,-0.004749,0.249955,0,0);-ms-transform:matrix(0.259478,0.004930,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.259478,0.004930,-0.004749,0.249955,0,0);}
.m13f_c00452{transform:matrix(0.259853,0.004937,-0.004749,0.249955,0,0);-ms-transform:matrix(0.259853,0.004937,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.259853,0.004937,-0.004749,0.249955,0,0);}
.m13e_c00452{transform:matrix(0.260273,0.004945,-0.004749,0.249955,0,0);-ms-transform:matrix(0.260273,0.004945,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.260273,0.004945,-0.004749,0.249955,0,0);}
.m14b_c00452{transform:matrix(0.260388,0.004947,-0.004749,0.249955,0,0);-ms-transform:matrix(0.260388,0.004947,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.260388,0.004947,-0.004749,0.249955,0,0);}
.me7_c00452{transform:matrix(0.260406,0.003906,-0.003750,0.249972,0,0);-ms-transform:matrix(0.260406,0.003906,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.260406,0.003906,-0.003750,0.249972,0,0);}
.mfc_c00452{transform:matrix(0.260506,0.003908,-0.003750,0.249972,0,0);-ms-transform:matrix(0.260506,0.003908,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.260506,0.003908,-0.003750,0.249972,0,0);}
.mf0_c00452{transform:matrix(0.260946,0.003914,-0.003750,0.249972,0,0);-ms-transform:matrix(0.260946,0.003914,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.260946,0.003914,-0.003750,0.249972,0,0);}
.ma4_c00452{transform:matrix(0.261062,0.005482,-0.005249,0.249945,0,0);-ms-transform:matrix(0.261062,0.005482,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.261062,0.005482,-0.005249,0.249945,0,0);}
.m98_c00452{transform:matrix(0.261345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261345,0.000000,0.000000,0.250000,0,0);}
.m149_c00452{transform:matrix(0.261608,0.004971,-0.004749,0.249955,0,0);-ms-transform:matrix(0.261608,0.004971,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.261608,0.004971,-0.004749,0.249955,0,0);}
.m37_c00452{transform:matrix(0.261710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261710,0.000000,0.000000,0.250000,0,0);}
.m87_c00452{transform:matrix(0.262639,0.003677,-0.003500,0.249976,0,0);-ms-transform:matrix(0.262639,0.003677,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.262639,0.003677,-0.003500,0.249976,0,0);}
.m41_c00452{transform:matrix(0.262965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262965,0.000000,0.000000,0.250000,0,0);}
.ma5_c00452{transform:matrix(0.263467,0.005533,-0.005249,0.249945,0,0);-ms-transform:matrix(0.263467,0.005533,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.263467,0.005533,-0.005249,0.249945,0,0);}
.m39_c00452{transform:matrix(0.264400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264400,0.000000,0.000000,0.250000,0,0);}
.mb6_c00452{transform:matrix(0.264762,0.005560,-0.005249,0.249945,0,0);-ms-transform:matrix(0.264762,0.005560,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.264762,0.005560,-0.005249,0.249945,0,0);}
.mdc_c00452{transform:matrix(0.266110,0.003992,-0.003750,0.249972,0,0);-ms-transform:matrix(0.266110,0.003992,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.266110,0.003992,-0.003750,0.249972,0,0);}
.me6_c00452{transform:matrix(0.266140,0.003992,-0.003750,0.249972,0,0);-ms-transform:matrix(0.266140,0.003992,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.266140,0.003992,-0.003750,0.249972,0,0);}
.m88_c00452{transform:matrix(0.266624,0.003733,-0.003500,0.249976,0,0);-ms-transform:matrix(0.266624,0.003733,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.266624,0.003733,-0.003500,0.249976,0,0);}
.m1_c00452{transform:matrix(0.266660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266660,0.000000,0.000000,0.250000,0,0);}
.m85_c00452{transform:matrix(0.267829,0.003750,-0.003500,0.249976,0,0);-ms-transform:matrix(0.267829,0.003750,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.267829,0.003750,-0.003500,0.249976,0,0);}
.m8d_c00452{transform:matrix(0.267894,0.003751,-0.003500,0.249976,0,0);-ms-transform:matrix(0.267894,0.003751,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.267894,0.003751,-0.003500,0.249976,0,0);}
.m86_c00452{transform:matrix(0.268284,0.003756,-0.003500,0.249976,0,0);-ms-transform:matrix(0.268284,0.003756,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.268284,0.003756,-0.003500,0.249976,0,0);}
.m2_c00452{transform:matrix(0.268460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268460,0.000000,0.000000,0.250000,0,0);}
.m9_c00452{transform:matrix(0.269035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269035,0.000000,0.000000,0.250000,0,0);}
.m140_c00452{transform:matrix(0.270031,0.005131,-0.004749,0.249955,0,0);-ms-transform:matrix(0.270031,0.005131,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.270031,0.005131,-0.004749,0.249955,0,0);}
.m83_c00452{transform:matrix(0.271083,0.003795,-0.003500,0.249976,0,0);-ms-transform:matrix(0.271083,0.003795,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.271083,0.003795,-0.003500,0.249976,0,0);}
.mb_c00452{transform:matrix(0.271900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271900,0.000000,0.000000,0.250000,0,0);}
.m106_c00452{transform:matrix(0.272276,0.005173,-0.004749,0.249955,0,0);-ms-transform:matrix(0.272276,0.005173,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.272276,0.005173,-0.004749,0.249955,0,0);}
.m3f_c00452{transform:matrix(0.272985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272985,0.000000,0.000000,0.250000,0,0);}
.m8e_c00452{transform:matrix(0.276008,0.003864,-0.003500,0.249976,0,0);-ms-transform:matrix(0.276008,0.003864,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.276008,0.003864,-0.003500,0.249976,0,0);}
.mb4_c00452{transform:matrix(0.276759,0.005812,-0.005249,0.249945,0,0);-ms-transform:matrix(0.276759,0.005812,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.276759,0.005812,-0.005249,0.249945,0,0);}
.m3d_c00452{transform:matrix(0.277430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277430,0.000000,0.000000,0.250000,0,0);}
.md_c00452{transform:matrix(0.277925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277925,0.000000,0.000000,0.250000,0,0);}
.m49_c00452{transform:matrix(0.278795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278795,0.000000,0.000000,0.250000,0,0);}
.m145_c00452{transform:matrix(0.278960,0.005300,-0.004749,0.249955,0,0);-ms-transform:matrix(0.278960,0.005300,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.278960,0.005300,-0.004749,0.249955,0,0);}
.me9_c00452{transform:matrix(0.281148,0.004217,-0.003750,0.249972,0,0);-ms-transform:matrix(0.281148,0.004217,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.281148,0.004217,-0.003750,0.249972,0,0);}
.mba_c00452{transform:matrix(0.281263,0.005907,-0.005249,0.249945,0,0);-ms-transform:matrix(0.281263,0.005907,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.281263,0.005907,-0.005249,0.249945,0,0);}
.m47_c00452{transform:matrix(0.281610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281610,0.000000,0.000000,0.250000,0,0);}
.mec_c00452{transform:matrix(0.281623,0.004224,-0.003750,0.249972,0,0);-ms-transform:matrix(0.281623,0.004224,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.281623,0.004224,-0.003750,0.249972,0,0);}
.m44_c00452{transform:matrix(0.283550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283550,0.000000,0.000000,0.250000,0,0);}
.m9b_c00452{transform:matrix(0.284255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284255,0.000000,0.000000,0.250000,0,0);}
.mb5_c00452{transform:matrix(0.286072,0.006008,-0.005249,0.249945,0,0);-ms-transform:matrix(0.286072,0.006008,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.286072,0.006008,-0.005249,0.249945,0,0);}
.mb2_c00452{transform:matrix(0.287217,0.006032,-0.005249,0.249945,0,0);-ms-transform:matrix(0.287217,0.006032,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.287217,0.006032,-0.005249,0.249945,0,0);}
.m9d_c00452{transform:matrix(0.287240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287240,0.000000,0.000000,0.250000,0,0);}
.mb7_c00452{transform:matrix(0.292016,0.006132,-0.005249,0.249945,0,0);-ms-transform:matrix(0.292016,0.006132,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.292016,0.006132,-0.005249,0.249945,0,0);}
.mb8_c00452{transform:matrix(0.292286,0.006138,-0.005249,0.249945,0,0);-ms-transform:matrix(0.292286,0.006138,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.292286,0.006138,-0.005249,0.249945,0,0);}
.mbc_c00452{transform:matrix(0.295455,0.006205,-0.005249,0.249945,0,0);-ms-transform:matrix(0.295455,0.006205,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.295455,0.006205,-0.005249,0.249945,0,0);}
.m6b_c00452{transform:matrix(0.297776,0.004169,-0.003500,0.249976,0,0);-ms-transform:matrix(0.297776,0.004169,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.297776,0.004169,-0.003500,0.249976,0,0);}
.m6_c00452{transform:matrix(0.298015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298015,0.000000,0.000000,0.250000,0,0);}
.mb9_c00452{transform:matrix(0.302893,0.006361,-0.005249,0.249945,0,0);-ms-transform:matrix(0.302893,0.006361,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.302893,0.006361,-0.005249,0.249945,0,0);}
.mbf_c00452{transform:matrix(0.310721,0.006525,-0.005249,0.249945,0,0);-ms-transform:matrix(0.310721,0.006525,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.310721,0.006525,-0.005249,0.249945,0,0);}
.m99_c00452{transform:matrix(0.336640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336640,0.000000,0.000000,0.250000,0,0);}
.m9e_c00452{transform:matrix(0.384630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384630,0.000000,0.000000,0.250000,0,0);}
.m5_c00452{transform:matrix(0.391180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391180,0.000000,0.000000,0.250000,0,0);}
.v0_c00452{vertical-align:0.000000px;}
.ls0_c00452{letter-spacing:0.000000px;}
.sc__c00452{text-shadow:none;}
.sc0_c00452{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__c00452{-webkit-text-stroke:0px transparent;}
.sc0_c00452{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00452{word-spacing:0.000000px;}
.fc0_c00452{color:transparent;}
.fs8_c00452{font-size:66.000000px;}
.fsa_c00452{font-size:66.014551px;}
.fs1_c00452{font-size:72.000000px;}
.fs7_c00452{font-size:72.007056px;}
.fsc_c00452{font-size:72.008100px;}
.fs12_c00452{font-size:72.012995px;}
.fs4_c00452{font-size:78.000000px;}
.fsb_c00452{font-size:78.008775px;}
.fse_c00452{font-size:78.014078px;}
.fs9_c00452{font-size:78.017197px;}
.fs3_c00452{font-size:84.000000px;}
.fs5_c00452{font-size:84.008232px;}
.fsd_c00452{font-size:84.009449px;}
.fs10_c00452{font-size:84.015161px;}
.fs0_c00452{font-size:90.000000px;}
.fs6_c00452{font-size:90.008820px;}
.fsf_c00452{font-size:90.016244px;}
.fs2_c00452{font-size:96.000000px;}
.fs13_c00452{font-size:102.008619px;}
.fs11_c00452{font-size:102.018409px;}
.y0_c00452{bottom:0.000000px;}
.y153_c00452{bottom:73.229694px;}
.y152_c00452{bottom:73.960027px;}
.y151_c00452{bottom:74.673006px;}
.y150_c00452{bottom:75.097775px;}
.y14f_c00452{bottom:75.378633px;}
.y14e_c00452{bottom:75.824774px;}
.y14d_c00452{bottom:76.114934px;}
.y14c_c00452{bottom:76.393433px;}
.y14b_c00452{bottom:77.393705px;}
.y14a_c00452{bottom:78.397116px;}
.y149_c00452{bottom:79.113000px;}
.y148_c00452{bottom:109.719613px;}
.y147_c00452{bottom:111.732244px;}
.y146_c00452{bottom:112.314844px;}
.y145_c00452{bottom:112.922050px;}
.y144_c00452{bottom:113.515167px;}
.y143_c00452{bottom:114.521776px;}
.y142_c00452{bottom:117.679693px;}
.y13b_c00452{bottom:148.393440px;}
.y13c_c00452{bottom:148.393495px;}
.y138_c00452{bottom:148.393533px;}
.y141_c00452{bottom:148.393665px;}
.y13d_c00452{bottom:148.393818px;}
.y13a_c00452{bottom:148.393844px;}
.y13e_c00452{bottom:148.394113px;}
.y139_c00452{bottom:148.394157px;}
.y140_c00452{bottom:148.394245px;}
.y13f_c00452{bottom:148.394497px;}
.y137_c00452{bottom:175.002765px;}
.y136_c00452{bottom:175.798887px;}
.y135_c00452{bottom:176.567167px;}
.y134_c00452{bottom:178.316931px;}
.y133_c00452{bottom:180.148566px;}
.y132_c00452{bottom:181.192847px;}
.y131_c00452{bottom:181.967729px;}
.y130_c00452{bottom:184.273653px;}
.y12f_c00452{bottom:185.013437px;}
.y12e_c00452{bottom:187.609505px;}
.y12d_c00452{bottom:190.601866px;}
.y12c_c00452{bottom:191.398616px;}
.y12b_c00452{bottom:206.689997px;}
.y12a_c00452{bottom:207.302332px;}
.y129_c00452{bottom:207.900493px;}
.y128_c00452{bottom:209.301358px;}
.y127_c00452{bottom:210.512140px;}
.y126_c00452{bottom:211.319034px;}
.y125_c00452{bottom:213.127692px;}
.y124_c00452{bottom:214.303608px;}
.y123_c00452{bottom:214.901683px;}
.y122_c00452{bottom:216.106224px;}
.y121_c00452{bottom:217.480915px;}
.y120_c00452{bottom:218.676981px;}
.y11f_c00452{bottom:242.171337px;}
.y11e_c00452{bottom:243.468178px;}
.y11d_c00452{bottom:245.735127px;}
.y11c_c00452{bottom:246.697902px;}
.y11b_c00452{bottom:249.321180px;}
.y11a_c00452{bottom:250.557635px;}
.y119_c00452{bottom:251.546595px;}
.y118_c00452{bottom:254.106646px;}
.y117_c00452{bottom:255.398938px;}
.y116_c00452{bottom:257.009037px;}
.y115_c00452{bottom:257.965723px;}
.y114_c00452{bottom:259.836452px;}
.y113_c00452{bottom:262.422147px;}
.y112_c00452{bottom:283.731276px;}
.y111_c00452{bottom:284.334767px;}
.y110_c00452{bottom:285.730216px;}
.y10f_c00452{bottom:286.357743px;}
.y10e_c00452{bottom:286.961690px;}
.y10d_c00452{bottom:287.554436px;}
.y10c_c00452{bottom:288.151684px;}
.y10b_c00452{bottom:288.963622px;}
.y10a_c00452{bottom:290.753831px;}
.y109_c00452{bottom:291.347147px;}
.y108_c00452{bottom:292.153584px;}
.y107_c00452{bottom:293.704668px;}
.y106_c00452{bottom:294.311351px;}
.y105_c00452{bottom:295.100335px;}
.y104_c00452{bottom:313.764976px;}
.y103_c00452{bottom:315.905685px;}
.y102_c00452{bottom:318.568231px;}
.y101_c00452{bottom:319.380520px;}
.y100_c00452{bottom:320.707971px;}
.yff_c00452{bottom:322.322424px;}
.yfe_c00452{bottom:323.877738px;}
.yfd_c00452{bottom:326.548026px;}
.yfc_c00452{bottom:329.462715px;}
.yfb_c00452{bottom:330.477773px;}
.yfa_c00452{bottom:353.177423px;}
.yf9_c00452{bottom:354.459979px;}
.yf8_c00452{bottom:355.300957px;}
.yf7_c00452{bottom:355.757641px;}
.yf6_c00452{bottom:357.639069px;}
.yf5_c00452{bottom:358.720330px;}
.yf4_c00452{bottom:363.345823px;}
.yf3_c00452{bottom:364.774500px;}
.yee_c00452{bottom:395.774212px;}
.yf1_c00452{bottom:395.774265px;}
.yef_c00452{bottom:395.774558px;}
.yed_c00452{bottom:395.774677px;}
.yf0_c00452{bottom:395.774752px;}
.yec_c00452{bottom:395.774910px;}
.yf2_c00452{bottom:395.774985px;}
.yeb_c00452{bottom:395.775315px;}
.yea_c00452{bottom:423.322043px;}
.ye9_c00452{bottom:424.397438px;}
.ye8_c00452{bottom:425.994375px;}
.ye7_c00452{bottom:426.805508px;}
.ye6_c00452{bottom:428.653050px;}
.ye5_c00452{bottom:430.006523px;}
.ye4_c00452{bottom:431.081625px;}
.ye3_c00452{bottom:433.745895px;}
.ye2_c00452{bottom:434.783250px;}
.ye1_c00452{bottom:436.336552px;}
.ye0_c00452{bottom:438.218167px;}
.ydf_c00452{bottom:439.015133px;}
.yde_c00452{bottom:457.454445px;}
.ydd_c00452{bottom:459.313110px;}
.ydc_c00452{bottom:460.331670px;}
.ydb_c00452{bottom:461.121308px;}
.yda_c00452{bottom:461.914627px;}
.yd9_c00452{bottom:462.920768px;}
.yd8_c00452{bottom:465.741413px;}
.yd7_c00452{bottom:466.487228px;}
.yd6_c00452{bottom:467.019082px;}
.yd5_c00452{bottom:469.572825px;}
.yd4_c00452{bottom:470.073930px;}
.yd3_c00452{bottom:471.795068px;}
.yd2_c00452{bottom:473.847728px;}
.yd1_c00452{bottom:496.236742px;}
.yd0_c00452{bottom:496.805062px;}
.ycf_c00452{bottom:498.673808px;}
.yce_c00452{bottom:499.761690px;}
.ycd_c00452{bottom:500.554275px;}
.ycc_c00452{bottom:501.615075px;}
.ycb_c00452{bottom:502.696492px;}
.yca_c00452{bottom:504.797520px;}
.yc9_c00452{bottom:507.208912px;}
.yc8_c00452{bottom:507.744690px;}
.yc7_c00452{bottom:509.068695px;}
.yc6_c00452{bottom:510.356970px;}
.yc5_c00452{bottom:511.437802px;}
.yc4_c00452{bottom:512.460915px;}
.yc3_c00452{bottom:533.669520px;}
.yc2_c00452{bottom:534.828473px;}
.yc1_c00452{bottom:535.516950px;}
.yc0_c00452{bottom:536.007068px;}
.ybf_c00452{bottom:537.677062px;}
.ybe_c00452{bottom:538.036860px;}
.ybd_c00452{bottom:539.341837px;}
.ybc_c00452{bottom:540.677820px;}
.ybb_c00452{bottom:541.340153px;}
.yba_c00452{bottom:542.003183px;}
.yb9_c00452{bottom:542.655030px;}
.yb8_c00452{bottom:543.161213px;}
.yb7_c00452{bottom:543.824423px;}
.yb6_c00452{bottom:544.323000px;}
.yb5_c00452{bottom:568.570654px;}
.yb4_c00452{bottom:570.044850px;}
.yb3_c00452{bottom:570.538212px;}
.yb2_c00452{bottom:571.757763px;}
.yb1_c00452{bottom:572.477652px;}
.yb0_c00452{bottom:573.480157px;}
.yaf_c00452{bottom:574.699236px;}
.yae_c00452{bottom:575.665717px;}
.yad_c00452{bottom:576.158827px;}
.yac_c00452{bottom:576.663278px;}
.yab_c00452{bottom:579.059236px;}
.yaa_c00452{bottom:579.824379px;}
.ya9_c00452{bottom:581.030164px;}
.ya8_c00452{bottom:581.976391px;}
.ya7_c00452{bottom:583.454871px;}
.ya6_c00452{bottom:603.704511px;}
.ya5_c00452{bottom:604.354940px;}
.ya4_c00452{bottom:604.790295px;}
.ya3_c00452{bottom:606.266550px;}
.ya2_c00452{bottom:607.723011px;}
.ya1_c00452{bottom:609.405960px;}
.ya0_c00452{bottom:610.271965px;}
.y9f_c00452{bottom:610.883361px;}
.y9e_c00452{bottom:612.359471px;}
.y9d_c00452{bottom:613.607505px;}
.y9c_c00452{bottom:614.047459px;}
.y9b_c00452{bottom:615.505527px;}
.y9a_c00452{bottom:616.130606px;}
.y99_c00452{bottom:640.095069px;}
.y98_c00452{bottom:641.251533px;}
.y97_c00452{bottom:641.854396px;}
.y96_c00452{bottom:643.060124px;}
.y95_c00452{bottom:643.661884px;}
.y94_c00452{bottom:645.247533px;}
.y93_c00452{bottom:646.448712px;}
.y92_c00452{bottom:647.872959px;}
.y91_c00452{bottom:648.261460px;}
.y90_c00452{bottom:649.647482px;}
.y8f_c00452{bottom:650.240095px;}
.y8e_c00452{bottom:652.049536px;}
.y8d_c00452{bottom:675.633738px;}
.y8c_c00452{bottom:677.982346px;}
.y8b_c00452{bottom:678.935537px;}
.y8a_c00452{bottom:679.835901px;}
.y89_c00452{bottom:682.399717px;}
.y88_c00452{bottom:682.833000px;}
.y87_c00452{bottom:685.336500px;}
.y86_c00452{bottom:713.685420px;}
.y85_c00452{bottom:714.540438px;}
.y84_c00452{bottom:715.897650px;}
.y83_c00452{bottom:716.634111px;}
.y82_c00452{bottom:716.996439px;}
.y81_c00452{bottom:718.087266px;}
.y80_c00452{bottom:719.299107px;}
.y7f_c00452{bottom:719.671149px;}
.y7e_c00452{bottom:720.038718px;}
.y7d_c00452{bottom:720.885291px;}
.y7c_c00452{bottom:747.859782px;}
.y7b_c00452{bottom:748.269570px;}
.y7a_c00452{bottom:748.952499px;}
.y79_c00452{bottom:749.483604px;}
.y78_c00452{bottom:750.001992px;}
.y77_c00452{bottom:750.286107px;}
.y76_c00452{bottom:751.329813px;}
.y75_c00452{bottom:752.260362px;}
.y74_c00452{bottom:753.080412px;}
.y73_c00452{bottom:753.868389px;}
.y72_c00452{bottom:754.383363px;}
.y71_c00452{bottom:755.450025px;}
.y70_c00452{bottom:784.130733px;}
.y6f_c00452{bottom:785.001567px;}
.y6e_c00452{bottom:785.247366px;}
.y6d_c00452{bottom:786.344421px;}
.y6c_c00452{bottom:786.825945px;}
.y6b_c00452{bottom:787.194585px;}
.y6a_c00452{bottom:787.669965px;}
.y69_c00452{bottom:788.178336px;}
.y68_c00452{bottom:788.537985px;}
.y67_c00452{bottom:788.908956px;}
.y66_c00452{bottom:790.127613px;}
.y65_c00452{bottom:791.095179px;}
.y64_c00452{bottom:819.667599px;}
.y63_c00452{bottom:820.113639px;}
.y62_c00452{bottom:821.387793px;}
.y61_c00452{bottom:822.616692px;}
.y60_c00452{bottom:823.085307px;}
.y5f_c00452{bottom:824.332959px;}
.y5e_c00452{bottom:824.801679px;}
.y5d_c00452{bottom:826.483926px;}
.y5c_c00452{bottom:826.955901px;}
.y5b_c00452{bottom:828.038199px;}
.y5a_c00452{bottom:829.439235px;}
.y59_c00452{bottom:857.835276px;}
.y58_c00452{bottom:859.102563px;}
.y57_c00452{bottom:860.651796px;}
.y56_c00452{bottom:861.109386px;}
.y55_c00452{bottom:861.891825px;}
.y54_c00452{bottom:862.818303px;}
.y53_c00452{bottom:863.283138px;}
.y52_c00452{bottom:864.214614px;}
.y51_c00452{bottom:864.670419px;}
.y50_c00452{bottom:865.135422px;}
.y4f_c00452{bottom:865.623000px;}
.y4e_c00452{bottom:897.267000px;}
.y4d_c00452{bottom:927.597000px;}
.y4c_c00452{bottom:928.087500px;}
.y4b_c00452{bottom:928.945500px;}
.y4a_c00452{bottom:929.442000px;}
.y49_c00452{bottom:930.303000px;}
.y48_c00452{bottom:930.543000px;}
.y47_c00452{bottom:931.042500px;}
.y46_c00452{bottom:931.636500px;}
.y45_c00452{bottom:932.497500px;}
.y44_c00452{bottom:933.091500px;}
.y43_c00452{bottom:933.834000px;}
.y42_c00452{bottom:934.068000px;}
.y41_c00452{bottom:934.915500px;}
.y40_c00452{bottom:935.280000px;}
.y3f_c00452{bottom:964.440000px;}
.y3e_c00452{bottom:965.329500px;}
.y3d_c00452{bottom:965.515500px;}
.y3c_c00452{bottom:966.402000px;}
.y3b_c00452{bottom:966.666000px;}
.y3a_c00452{bottom:966.933000px;}
.y39_c00452{bottom:967.989000px;}
.y38_c00452{bottom:968.430000px;}
.y37_c00452{bottom:968.788500px;}
.y36_c00452{bottom:969.570000px;}
.y35_c00452{bottom:999.526500px;}
.y34_c00452{bottom:1000.306500px;}
.y33_c00452{bottom:1000.752000px;}
.y32_c00452{bottom:1001.757000px;}
.y31_c00452{bottom:1002.189000px;}
.y30_c00452{bottom:1002.765000px;}
.y2f_c00452{bottom:1003.080000px;}
.y2e_c00452{bottom:1003.758000px;}
.y2d_c00452{bottom:1004.085000px;}
.y2c_c00452{bottom:1004.865000px;}
.y2b_c00452{bottom:1005.513000px;}
.y2a_c00452{bottom:1005.850500px;}
.y29_c00452{bottom:1006.290000px;}
.y28_c00452{bottom:1035.624000px;}
.y27_c00452{bottom:1035.958500px;}
.y26_c00452{bottom:1036.749000px;}
.y25_c00452{bottom:1037.629500px;}
.y24_c00452{bottom:1038.297000px;}
.y23_c00452{bottom:1038.969000px;}
.y22_c00452{bottom:1039.182000px;}
.y21_c00452{bottom:1040.187000px;}
.y20_c00452{bottom:1040.400000px;}
.y1f_c00452{bottom:1041.165000px;}
.y1e_c00452{bottom:1041.493500px;}
.y1d_c00452{bottom:1041.931500px;}
.y1c_c00452{bottom:1073.002500px;}
.y1b_c00452{bottom:1073.385000px;}
.y1a_c00452{bottom:1073.706000px;}
.y19_c00452{bottom:1073.869500px;}
.y18_c00452{bottom:1074.405000px;}
.y17_c00452{bottom:1074.643500px;}
.y16_c00452{bottom:1075.255500px;}
.y15_c00452{bottom:1075.492500px;}
.y14_c00452{bottom:1075.879500px;}
.y13_c00452{bottom:1076.350500px;}
.y12_c00452{bottom:1076.656500px;}
.y11_c00452{bottom:1076.875500px;}
.y10_c00452{bottom:1077.342000px;}
.yf_c00452{bottom:1077.570000px;}
.ye_c00452{bottom:1106.668500px;}
.yd_c00452{bottom:1107.072000px;}
.yc_c00452{bottom:1108.177500px;}
.yb_c00452{bottom:1108.879500px;}
.ya_c00452{bottom:1109.266500px;}
.y9_c00452{bottom:1109.677500px;}
.y8_c00452{bottom:1110.081000px;}
.y7_c00452{bottom:1110.484500px;}
.y6_c00452{bottom:1111.566000px;}
.y5_c00452{bottom:1111.864500px;}
.y4_c00452{bottom:1112.562000px;}
.y3_c00452{bottom:1112.941500px;}
.y2_c00452{bottom:1145.341500px;}
.y1_c00452{bottom:1205.410500px;}
.ha_c00452{height:66.000000px;}
.hc_c00452{height:66.014551px;}
.h3_c00452{height:72.000000px;}
.h9_c00452{height:72.007056px;}
.he_c00452{height:72.008100px;}
.h14_c00452{height:72.012995px;}
.h6_c00452{height:78.000000px;}
.hd_c00452{height:78.008775px;}
.h10_c00452{height:78.014078px;}
.hb_c00452{height:78.017197px;}
.h5_c00452{height:84.000000px;}
.h7_c00452{height:84.008232px;}
.hf_c00452{height:84.009449px;}
.h12_c00452{height:84.015161px;}
.h2_c00452{height:90.000000px;}
.h8_c00452{height:90.008820px;}
.h11_c00452{height:90.016244px;}
.h4_c00452{height:96.000000px;}
.h15_c00452{height:102.008619px;}
.h13_c00452{height:102.018409px;}
.h0_c00452{height:1251.450000px;}
.h1_c00452{height:1251.750000px;}
.w0_c00452{width:915.000000px;}
.x0_c00452{left:0.000000px;}
.xd2_c00452{left:127.362594px;}
.xdd_c00452{left:128.800959px;}
.xc3_c00452{left:129.973997px;}
.x73_c00452{left:131.380776px;}
.x6e_c00452{left:132.840000px;}
.x52_c00452{left:134.287602px;}
.x2c_c00452{left:135.985500px;}
.x1a_c00452{left:137.887500px;}
.x3_c00452{left:139.050000px;}
.xd3_c00452{left:162.030972px;}
.x90_c00452{left:164.547000px;}
.x7c_c00452{left:165.748340px;}
.x3c_c00452{left:169.087500px;}
.x1b_c00452{left:170.541000px;}
.x99_c00452{left:175.271723px;}
.x6f_c00452{left:176.310000px;}
.x2d_c00452{left:179.950500px;}
.xf_c00452{left:181.035000px;}
.xe3_c00452{left:183.942000px;}
.xcc_c00452{left:195.682633px;}
.x85_c00452{left:198.684557px;}
.x91_c00452{left:208.761000px;}
.x67_c00452{left:210.736776px;}
.x25_c00452{left:214.183500px;}
.xc4_c00452{left:219.151568px;}
.x9a_c00452{left:220.321147px;}
.x58_c00452{left:221.477433px;}
.x45_c00452{left:222.756000px;}
.x4_c00452{left:224.910000px;}
.x74_c00452{left:231.908107px;}
.x70_c00452{left:233.550000px;}
.x34_c00452{left:234.798000px;}
.x1c_c00452{left:237.243000px;}
.xda_c00452{left:240.574653px;}
.x7d_c00452{left:242.469053px;}
.x4b_c00452{left:243.618000px;}
.x3d_c00452{left:246.114000px;}
.x5_c00452{left:248.670000px;}
.x10_c00452{left:258.504000px;}
.xe4_c00452{left:261.127500px;}
.x60_c00452{left:265.744578px;}
.x3e_c00452{left:267.432000px;}
.x1d_c00452{left:268.537500px;}
.xcd_c00452{left:272.062587px;}
.x9b_c00452{left:273.998902px;}
.x2e_c00452{left:278.485500px;}
.x35_c00452{left:279.591000px;}
.xc5_c00452{left:283.651313px;}
.x92_c00452{left:285.963000px;}
.x26_c00452{left:290.659500px;}
.x11_c00452{left:291.678000px;}
.xa4_c00452{left:295.369920px;}
.x86_c00452{left:296.444977px;}
.x46_c00452{left:300.246000px;}
.xde_c00452{left:304.247294px;}
.xac_c00452{left:307.155330px;}
.x71_c00452{left:309.420000px;}
.x1e_c00452{left:312.244500px;}
.x6_c00452{left:313.740000px;}
.xa5_c00452{left:317.174310px;}
.x9c_c00452{left:329.158455px;}
.x93_c00452{left:330.165000px;}
.x59_c00452{left:332.207574px;}
.x36_c00452{left:334.668000px;}
.xe5_c00452{left:338.071500px;}
.xbe_c00452{left:339.388444px;}
.x75_c00452{left:341.850037px;}
.x47_c00452{left:344.256000px;}
.x53_c00452{left:345.381102px;}
.xad_c00452{left:350.406502px;}
.x9d_c00452{left:351.473940px;}
.x2f_c00452{left:356.502000px;}
.xdf_c00452{left:360.148848px;}
.x76_c00452{left:363.422892px;}
.x5a_c00452{left:365.885481px;}
.xbf_c00452{left:372.353071px;}
.x94_c00452{left:374.320500px;}
.x1f_c00452{left:379.504500px;}
.xe6_c00452{left:381.814500px;}
.xdb_c00452{left:382.890510px;}
.x68_c00452{left:388.062210px;}
.x30_c00452{left:389.190000px;}
.xe0_c00452{left:393.102975px;}
.xb4_c00452{left:396.389400px;}
.x72_c00452{left:397.440000px;}
.x5b_c00452{left:398.540346px;}
.x61_c00452{left:399.678816px;}
.x7_c00452{left:403.920000px;}
.xd4_c00452{left:404.982504px;}
.xba_c00452{left:407.052220px;}
.x7e_c00452{left:409.004545px;}
.x4c_c00452{left:410.751000px;}
.x12_c00452{left:411.888000px;}
.xc6_c00452{left:416.709033px;}
.x1_c00452{left:424.440000px;}
.xe1_c00452{left:426.877631px;}
.xa6_c00452{left:428.210490px;}
.x27_c00452{left:433.726500px;}
.x8_c00452{left:435.240000px;}
.xce_c00452{left:437.593750px;}
.x87_c00452{left:440.113453px;}
.x7f_c00452{left:441.191400px;}
.x77_c00452{left:442.534869px;}
.x4d_c00452{left:443.953500px;}
.x2_c00452{left:447.660000px;}
.x9e_c00452{left:451.919872px;}
.x13_c00452{left:456.706500px;}
.xe2_c00452{left:459.278258px;}
.xae_c00452{left:461.409518px;}
.x88_c00452{left:463.062981px;}
.x54_c00452{left:465.541602px;}
.x37_c00452{left:466.726500px;}
.x20_c00452{left:468.613500px;}
.xe7_c00452{left:470.412000px;}
.xbb_c00452{left:471.852064px;}
.x62_c00452{left:477.184479px;}
.x9_c00452{left:479.520000px;}
.xa7_c00452{left:483.781830px;}
.x89_c00452{left:485.472509px;}
.x69_c00452{left:487.196868px;}
.x31_c00452{left:488.542500px;}
.x48_c00452{left:489.786000px;}
.x55_c00452{left:499.021602px;}
.x38_c00452{left:500.182500px;}
.x14_c00452{left:501.504000px;}
.xc7_c00452{left:505.010775px;}
.xaf_c00452{left:506.176965px;}
.x4e_c00452{left:510.130500px;}
.xa_c00452{left:513.540000px;}
.xc0_c00452{left:516.889807px;}
.x6a_c00452{left:520.150254px;}
.x3f_c00452{left:521.235000px;}
.x49_c00452{left:522.996000px;}
.xe8_c00452{left:525.256500px;}
.x8a_c00452{left:529.423095px;}
.x39_c00452{left:533.136000px;}
.xcf_c00452{left:538.077660px;}
.x9f_c00452{left:539.476560px;}
.x32_c00452{left:546.082500px;}
.x15_c00452{left:547.140000px;}
.x95_c00452{left:550.384500px;}
.xb5_c00452{left:553.276703px;}
.x21_c00452{left:556.117500px;}
.xdc_c00452{left:560.041436px;}
.xb0_c00452{left:562.600860px;}
.x63_c00452{left:564.165915px;}
.x5c_c00452{left:565.219839px;}
.x40_c00452{left:566.598000px;}
.x28_c00452{left:567.649500px;}
.xd5_c00452{left:571.079878px;}
.x80_c00452{left:575.361539px;}
.xc8_c00452{left:581.781212px;}
.xc1_c00452{left:582.996061px;}
.x8b_c00452{left:584.830430px;}
.x6b_c00452{left:587.114568px;}
.x41_c00452{left:588.444000px;}
.x16_c00452{left:590.079000px;}
.xb_c00452{left:592.110000px;}
.xbc_c00452{left:594.466936px;}
.xb6_c00452{left:595.612500px;}
.x78_c00452{left:597.322102px;}
.x4f_c00452{left:598.704000px;}
.xa8_c00452{left:606.410115px;}
.xc2_c00452{left:616.520189px;}
.x56_c00452{left:621.612102px;}
.x4a_c00452{left:624.516000px;}
.xa0_c00452{left:628.779022px;}
.x64_c00452{left:631.132305px;}
.xc_c00452{left:634.770000px;}
.xb1_c00452{left:639.559965px;}
.x3a_c00452{left:643.861500px;}
.xa9_c00452{left:650.180872px;}
.x81_c00452{left:652.005751px;}
.x29_c00452{left:655.693500px;}
.xa1_c00452{left:661.813567px;}
.x8c_c00452{left:663.133292px;}
.x5d_c00452{left:664.906518px;}
.x22_c00452{left:666.559500px;}
.x17_c00452{left:668.124000px;}
.xc9_c00452{left:672.226026px;}
.xb2_c00452{left:673.330897px;}
.x65_c00452{left:675.391044px;}
.xaa_c00452{left:684.664733px;}
.x96_c00452{left:685.704000px;}
.x5e_c00452{left:687.285963px;}
.x23_c00452{left:690.024000px;}
.xb7_c00452{left:694.635000px;}
.xd6_c00452{left:696.144888px;}
.x79_c00452{left:697.756434px;}
.xca_c00452{left:705.444727px;}
.xa2_c00452{left:707.132948px;}
.x50_c00452{left:709.363500px;}
.x6c_c00452{left:710.527755px;}
.x42_c00452{left:711.828000px;}
.xd_c00452{left:714.420000px;}
.x8d_c00452{left:718.563126px;}
.xd0_c00452{left:728.030779px;}
.x82_c00452{left:729.663996px;}
.x7a_c00452{left:731.252045px;}
.x66_c00452{left:732.316140px;}
.x2a_c00452{left:734.799000px;}
.x24_c00452{left:735.937500px;}
.xb3_c00452{left:739.884420px;}
.x8e_c00452{left:740.984654px;}
.x83_c00452{left:752.610473px;}
.xe_c00452{left:759.510000px;}
.xd1_c00452{left:761.250407px;}
.xb8_c00452{left:762.933000px;}
.x97_c00452{left:764.277000px;}
.x5f_c00452{left:766.420281px;}
.x2b_c00452{left:768.279000px;}
.xd7_c00452{left:772.205603px;}
.x3b_c00452{left:778.306500px;}
.xcb_c00452{left:783.611379px;}
.xa3_c00452{left:785.005440px;}
.x84_c00452{left:786.870422px;}
.x6d_c00452{left:788.318031px;}
.x43_c00452{left:789.870000px;}
.x18_c00452{left:790.974000px;}
.x7b_c00452{left:795.540108px;}
.x51_c00452{left:799.884000px;}
.xd8_c00452{left:805.612566px;}
.x8f_c00452{left:807.968736px;}
.x33_c00452{left:812.301000px;}
.xbd_c00452{left:828.420707px;}
.xb9_c00452{left:830.436000px;}
.x57_c00452{left:832.261602px;}
.x44_c00452{left:834.429000px;}
.x19_c00452{left:835.791000px;}
.xd9_c00452{left:840.247944px;}
.x98_c00452{left:841.540500px;}
.xab_c00452{left:844.103108px;}
@media print{
.v0_c00452{vertical-align:0.000000pt;}
.ls0_c00452{letter-spacing:0.000000pt;}
.ws0_c00452{word-spacing:0.000000pt;}
.fs8_c00452{font-size:58.666667pt;}
.fsa_c00452{font-size:58.679601pt;}
.fs1_c00452{font-size:64.000000pt;}
.fs7_c00452{font-size:64.006272pt;}
.fsc_c00452{font-size:64.007200pt;}
.fs12_c00452{font-size:64.011551pt;}
.fs4_c00452{font-size:69.333333pt;}
.fsb_c00452{font-size:69.341133pt;}
.fse_c00452{font-size:69.345847pt;}
.fs9_c00452{font-size:69.348620pt;}
.fs3_c00452{font-size:74.666667pt;}
.fs5_c00452{font-size:74.673984pt;}
.fsd_c00452{font-size:74.675066pt;}
.fs10_c00452{font-size:74.680143pt;}
.fs0_c00452{font-size:80.000000pt;}
.fs6_c00452{font-size:80.007840pt;}
.fsf_c00452{font-size:80.014439pt;}
.fs2_c00452{font-size:85.333333pt;}
.fs13_c00452{font-size:90.674328pt;}
.fs11_c00452{font-size:90.683031pt;}
.y0_c00452{bottom:0.000000pt;}
.y153_c00452{bottom:65.093061pt;}
.y152_c00452{bottom:65.742247pt;}
.y151_c00452{bottom:66.376005pt;}
.y150_c00452{bottom:66.753577pt;}
.y14f_c00452{bottom:67.003229pt;}
.y14e_c00452{bottom:67.399799pt;}
.y14d_c00452{bottom:67.657719pt;}
.y14c_c00452{bottom:67.905273pt;}
.y14b_c00452{bottom:68.794404pt;}
.y14a_c00452{bottom:69.686325pt;}
.y149_c00452{bottom:70.322667pt;}
.y148_c00452{bottom:97.528545pt;}
.y147_c00452{bottom:99.317551pt;}
.y146_c00452{bottom:99.835417pt;}
.y145_c00452{bottom:100.375156pt;}
.y144_c00452{bottom:100.902371pt;}
.y143_c00452{bottom:101.797135pt;}
.y142_c00452{bottom:104.604172pt;}
.y13b_c00452{bottom:131.905280pt;}
.y13c_c00452{bottom:131.905329pt;}
.y138_c00452{bottom:131.905363pt;}
.y141_c00452{bottom:131.905480pt;}
.y13d_c00452{bottom:131.905616pt;}
.y13a_c00452{bottom:131.905639pt;}
.y13e_c00452{bottom:131.905879pt;}
.y139_c00452{bottom:131.905917pt;}
.y140_c00452{bottom:131.905996pt;}
.y13f_c00452{bottom:131.906220pt;}
.y137_c00452{bottom:155.558013pt;}
.y136_c00452{bottom:156.265677pt;}
.y135_c00452{bottom:156.948593pt;}
.y134_c00452{bottom:158.503939pt;}
.y133_c00452{bottom:160.132059pt;}
.y132_c00452{bottom:161.060308pt;}
.y131_c00452{bottom:161.749092pt;}
.y130_c00452{bottom:163.798803pt;}
.y12f_c00452{bottom:164.456388pt;}
.y12e_c00452{bottom:166.764004pt;}
.y12d_c00452{bottom:169.423881pt;}
.y12c_c00452{bottom:170.132103pt;}
.y12b_c00452{bottom:183.724441pt;}
.y12a_c00452{bottom:184.268740pt;}
.y129_c00452{bottom:184.800439pt;}
.y128_c00452{bottom:186.045652pt;}
.y127_c00452{bottom:187.121903pt;}
.y126_c00452{bottom:187.839141pt;}
.y125_c00452{bottom:189.446837pt;}
.y124_c00452{bottom:190.492096pt;}
.y123_c00452{bottom:191.023719pt;}
.y122_c00452{bottom:192.094421pt;}
.y121_c00452{bottom:193.316369pt;}
.y120_c00452{bottom:194.379539pt;}
.y11f_c00452{bottom:215.263411pt;}
.y11e_c00452{bottom:216.416159pt;}
.y11d_c00452{bottom:218.431224pt;}
.y11c_c00452{bottom:219.287024pt;}
.y11b_c00452{bottom:221.618827pt;}
.y11a_c00452{bottom:222.717897pt;}
.y119_c00452{bottom:223.596973pt;}
.y118_c00452{bottom:225.872575pt;}
.y117_c00452{bottom:227.021279pt;}
.y116_c00452{bottom:228.452477pt;}
.y115_c00452{bottom:229.302865pt;}
.y114_c00452{bottom:230.965735pt;}
.y113_c00452{bottom:233.264131pt;}
.y112_c00452{bottom:252.205579pt;}
.y111_c00452{bottom:252.742015pt;}
.y110_c00452{bottom:253.982415pt;}
.y10f_c00452{bottom:254.540216pt;}
.y10e_c00452{bottom:255.077057pt;}
.y10d_c00452{bottom:255.603943pt;}
.y10c_c00452{bottom:256.134831pt;}
.y10b_c00452{bottom:256.856553pt;}
.y10a_c00452{bottom:258.447849pt;}
.y109_c00452{bottom:258.975241pt;}
.y108_c00452{bottom:259.692075pt;}
.y107_c00452{bottom:261.070816pt;}
.y106_c00452{bottom:261.610089pt;}
.y105_c00452{bottom:262.311409pt;}
.y104_c00452{bottom:278.902201pt;}
.y103_c00452{bottom:280.805053pt;}
.y102_c00452{bottom:283.171761pt;}
.y101_c00452{bottom:283.893796pt;}
.y100_c00452{bottom:285.073752pt;}
.yff_c00452{bottom:286.508821pt;}
.yfe_c00452{bottom:287.891323pt;}
.yfd_c00452{bottom:290.264912pt;}
.yfc_c00452{bottom:292.855747pt;}
.yfb_c00452{bottom:293.758020pt;}
.yfa_c00452{bottom:313.935487pt;}
.yf9_c00452{bottom:315.075537pt;}
.yf8_c00452{bottom:315.823073pt;}
.yf7_c00452{bottom:316.229015pt;}
.yf6_c00452{bottom:317.901395pt;}
.yf5_c00452{bottom:318.862516pt;}
.yf4_c00452{bottom:322.974065pt;}
.yf3_c00452{bottom:324.244000pt;}
.yee_c00452{bottom:351.799300pt;}
.yf1_c00452{bottom:351.799347pt;}
.yef_c00452{bottom:351.799607pt;}
.yed_c00452{bottom:351.799713pt;}
.yf0_c00452{bottom:351.799780pt;}
.yec_c00452{bottom:351.799920pt;}
.yf2_c00452{bottom:351.799987pt;}
.yeb_c00452{bottom:351.800280pt;}
.yea_c00452{bottom:376.286260pt;}
.ye9_c00452{bottom:377.242167pt;}
.ye8_c00452{bottom:378.661667pt;}
.ye7_c00452{bottom:379.382673pt;}
.ye6_c00452{bottom:381.024933pt;}
.ye5_c00452{bottom:382.228020pt;}
.ye4_c00452{bottom:383.183667pt;}
.ye3_c00452{bottom:385.551907pt;}
.ye2_c00452{bottom:386.474000pt;}
.ye1_c00452{bottom:387.854713pt;}
.ye0_c00452{bottom:389.527260pt;}
.ydf_c00452{bottom:390.235673pt;}
.yde_c00452{bottom:406.626173pt;}
.ydd_c00452{bottom:408.278320pt;}
.ydc_c00452{bottom:409.183707pt;}
.ydb_c00452{bottom:409.885607pt;}
.yda_c00452{bottom:410.590780pt;}
.yd9_c00452{bottom:411.485127pt;}
.yd8_c00452{bottom:413.992367pt;}
.yd7_c00452{bottom:414.655313pt;}
.yd6_c00452{bottom:415.128073pt;}
.yd5_c00452{bottom:417.398067pt;}
.yd4_c00452{bottom:417.843493pt;}
.yd3_c00452{bottom:419.373393pt;}
.yd2_c00452{bottom:421.197980pt;}
.yd1_c00452{bottom:441.099327pt;}
.yd0_c00452{bottom:441.604500pt;}
.ycf_c00452{bottom:443.265607pt;}
.yce_c00452{bottom:444.232613pt;}
.ycd_c00452{bottom:444.937133pt;}
.ycc_c00452{bottom:445.880067pt;}
.ycb_c00452{bottom:446.841327pt;}
.yca_c00452{bottom:448.708907pt;}
.yc9_c00452{bottom:450.852367pt;}
.yc8_c00452{bottom:451.328613pt;}
.yc7_c00452{bottom:452.505507pt;}
.yc6_c00452{bottom:453.650640pt;}
.yc5_c00452{bottom:454.611380pt;}
.yc4_c00452{bottom:455.520813pt;}
.yc3_c00452{bottom:474.372907pt;}
.yc2_c00452{bottom:475.403087pt;}
.yc1_c00452{bottom:476.015067pt;}
.yc0_c00452{bottom:476.450727pt;}
.ybf_c00452{bottom:477.935167pt;}
.ybe_c00452{bottom:478.254987pt;}
.ybd_c00452{bottom:479.414967pt;}
.ybc_c00452{bottom:480.602507pt;}
.ybb_c00452{bottom:481.191247pt;}
.yba_c00452{bottom:481.780607pt;}
.yb9_c00452{bottom:482.360027pt;}
.yb8_c00452{bottom:482.809967pt;}
.yb7_c00452{bottom:483.399487pt;}
.yb6_c00452{bottom:483.842667pt;}
.yb5_c00452{bottom:505.396137pt;}
.yb4_c00452{bottom:506.706533pt;}
.yb3_c00452{bottom:507.145077pt;}
.yb2_c00452{bottom:508.229123pt;}
.yb1_c00452{bottom:508.869024pt;}
.yb0_c00452{bottom:509.760140pt;}
.yaf_c00452{bottom:510.843765pt;}
.yae_c00452{bottom:511.702860pt;}
.yad_c00452{bottom:512.141180pt;}
.yac_c00452{bottom:512.589580pt;}
.yab_c00452{bottom:514.719321pt;}
.yaa_c00452{bottom:515.399448pt;}
.ya9_c00452{bottom:516.471257pt;}
.ya8_c00452{bottom:517.312348pt;}
.ya7_c00452{bottom:518.626552pt;}
.ya6_c00452{bottom:536.626232pt;}
.ya5_c00452{bottom:537.204391pt;}
.ya4_c00452{bottom:537.591373pt;}
.ya3_c00452{bottom:538.903600pt;}
.ya2_c00452{bottom:540.198232pt;}
.ya1_c00452{bottom:541.694187pt;}
.ya0_c00452{bottom:542.463969pt;}
.y9f_c00452{bottom:543.007432pt;}
.y9e_c00452{bottom:544.319529pt;}
.y9d_c00452{bottom:545.428893pt;}
.y9c_c00452{bottom:545.819964pt;}
.y9b_c00452{bottom:547.116024pt;}
.y9a_c00452{bottom:547.671649pt;}
.y99_c00452{bottom:568.973395pt;}
.y98_c00452{bottom:570.001363pt;}
.y97_c00452{bottom:570.537241pt;}
.y96_c00452{bottom:571.608999pt;}
.y95_c00452{bottom:572.143897pt;}
.y94_c00452{bottom:573.553363pt;}
.y93_c00452{bottom:574.621077pt;}
.y92_c00452{bottom:575.887075pt;}
.y91_c00452{bottom:576.232409pt;}
.y90_c00452{bottom:577.464428pt;}
.y8f_c00452{bottom:577.991196pt;}
.y8e_c00452{bottom:579.599588pt;}
.y8d_c00452{bottom:600.563323pt;}
.y8c_c00452{bottom:602.650975pt;}
.y8b_c00452{bottom:603.498255pt;}
.y8a_c00452{bottom:604.298579pt;}
.y89_c00452{bottom:606.577527pt;}
.y88_c00452{bottom:606.962667pt;}
.y87_c00452{bottom:609.188000pt;}
.y86_c00452{bottom:634.387040pt;}
.y85_c00452{bottom:635.147056pt;}
.y84_c00452{bottom:636.353467pt;}
.y83_c00452{bottom:637.008099pt;}
.y82_c00452{bottom:637.330168pt;}
.y81_c00452{bottom:638.299792pt;}
.y80_c00452{bottom:639.376984pt;}
.y7f_c00452{bottom:639.707688pt;}
.y7e_c00452{bottom:640.034416pt;}
.y7d_c00452{bottom:640.786925pt;}
.y7c_c00452{bottom:664.764251pt;}
.y7b_c00452{bottom:665.128507pt;}
.y7a_c00452{bottom:665.735555pt;}
.y79_c00452{bottom:666.207648pt;}
.y78_c00452{bottom:666.668437pt;}
.y77_c00452{bottom:666.920984pt;}
.y76_c00452{bottom:667.848723pt;}
.y75_c00452{bottom:668.675877pt;}
.y74_c00452{bottom:669.404811pt;}
.y73_c00452{bottom:670.105235pt;}
.y72_c00452{bottom:670.562989pt;}
.y71_c00452{bottom:671.511133pt;}
.y70_c00452{bottom:697.005096pt;}
.y6f_c00452{bottom:697.779171pt;}
.y6e_c00452{bottom:697.997659pt;}
.y6d_c00452{bottom:698.972819pt;}
.y6c_c00452{bottom:699.400840pt;}
.y6b_c00452{bottom:699.728520pt;}
.y6a_c00452{bottom:700.151080pt;}
.y69_c00452{bottom:700.602965pt;}
.y68_c00452{bottom:700.922653pt;}
.y67_c00452{bottom:701.252405pt;}
.y66_c00452{bottom:702.335656pt;}
.y65_c00452{bottom:703.195715pt;}
.y64_c00452{bottom:728.593421pt;}
.y63_c00452{bottom:728.989901pt;}
.y62_c00452{bottom:730.122483pt;}
.y61_c00452{bottom:731.214837pt;}
.y60_c00452{bottom:731.631384pt;}
.y5f_c00452{bottom:732.740408pt;}
.y5e_c00452{bottom:733.157048pt;}
.y5d_c00452{bottom:734.652379pt;}
.y5c_c00452{bottom:735.071912pt;}
.y5b_c00452{bottom:736.033955pt;}
.y5a_c00452{bottom:737.279320pt;}
.y59_c00452{bottom:762.520245pt;}
.y58_c00452{bottom:763.646723pt;}
.y57_c00452{bottom:765.023819pt;}
.y56_c00452{bottom:765.430565pt;}
.y55_c00452{bottom:766.126067pt;}
.y54_c00452{bottom:766.949603pt;}
.y53_c00452{bottom:767.362789pt;}
.y52_c00452{bottom:768.190768pt;}
.y51_c00452{bottom:768.595928pt;}
.y50_c00452{bottom:769.009264pt;}
.y4f_c00452{bottom:769.442667pt;}
.y4e_c00452{bottom:797.570667pt;}
.y4d_c00452{bottom:824.530667pt;}
.y4c_c00452{bottom:824.966667pt;}
.y4b_c00452{bottom:825.729333pt;}
.y4a_c00452{bottom:826.170667pt;}
.y49_c00452{bottom:826.936000pt;}
.y48_c00452{bottom:827.149333pt;}
.y47_c00452{bottom:827.593333pt;}
.y46_c00452{bottom:828.121333pt;}
.y45_c00452{bottom:828.886667pt;}
.y44_c00452{bottom:829.414667pt;}
.y43_c00452{bottom:830.074667pt;}
.y42_c00452{bottom:830.282667pt;}
.y41_c00452{bottom:831.036000pt;}
.y40_c00452{bottom:831.360000pt;}
.y3f_c00452{bottom:857.280000pt;}
.y3e_c00452{bottom:858.070667pt;}
.y3d_c00452{bottom:858.236000pt;}
.y3c_c00452{bottom:859.024000pt;}
.y3b_c00452{bottom:859.258667pt;}
.y3a_c00452{bottom:859.496000pt;}
.y39_c00452{bottom:860.434667pt;}
.y38_c00452{bottom:860.826667pt;}
.y37_c00452{bottom:861.145333pt;}
.y36_c00452{bottom:861.840000pt;}
.y35_c00452{bottom:888.468000pt;}
.y34_c00452{bottom:889.161333pt;}
.y33_c00452{bottom:889.557333pt;}
.y32_c00452{bottom:890.450667pt;}
.y31_c00452{bottom:890.834667pt;}
.y30_c00452{bottom:891.346667pt;}
.y2f_c00452{bottom:891.626667pt;}
.y2e_c00452{bottom:892.229333pt;}
.y2d_c00452{bottom:892.520000pt;}
.y2c_c00452{bottom:893.213333pt;}
.y2b_c00452{bottom:893.789333pt;}
.y2a_c00452{bottom:894.089333pt;}
.y29_c00452{bottom:894.480000pt;}
.y28_c00452{bottom:920.554667pt;}
.y27_c00452{bottom:920.852000pt;}
.y26_c00452{bottom:921.554667pt;}
.y25_c00452{bottom:922.337333pt;}
.y24_c00452{bottom:922.930667pt;}
.y23_c00452{bottom:923.528000pt;}
.y22_c00452{bottom:923.717333pt;}
.y21_c00452{bottom:924.610667pt;}
.y20_c00452{bottom:924.800000pt;}
.y1f_c00452{bottom:925.480000pt;}
.y1e_c00452{bottom:925.772000pt;}
.y1d_c00452{bottom:926.161333pt;}
.y1c_c00452{bottom:953.780000pt;}
.y1b_c00452{bottom:954.120000pt;}
.y1a_c00452{bottom:954.405333pt;}
.y19_c00452{bottom:954.550667pt;}
.y18_c00452{bottom:955.026667pt;}
.y17_c00452{bottom:955.238667pt;}
.y16_c00452{bottom:955.782667pt;}
.y15_c00452{bottom:955.993333pt;}
.y14_c00452{bottom:956.337333pt;}
.y13_c00452{bottom:956.756000pt;}
.y12_c00452{bottom:957.028000pt;}
.y11_c00452{bottom:957.222667pt;}
.y10_c00452{bottom:957.637333pt;}
.yf_c00452{bottom:957.840000pt;}
.ye_c00452{bottom:983.705333pt;}
.yd_c00452{bottom:984.064000pt;}
.yc_c00452{bottom:985.046667pt;}
.yb_c00452{bottom:985.670667pt;}
.ya_c00452{bottom:986.014667pt;}
.y9_c00452{bottom:986.380000pt;}
.y8_c00452{bottom:986.738667pt;}
.y7_c00452{bottom:987.097333pt;}
.y6_c00452{bottom:988.058667pt;}
.y5_c00452{bottom:988.324000pt;}
.y4_c00452{bottom:988.944000pt;}
.y3_c00452{bottom:989.281333pt;}
.y2_c00452{bottom:1018.081333pt;}
.y1_c00452{bottom:1071.476000pt;}
.ha_c00452{height:58.666667pt;}
.hc_c00452{height:58.679601pt;}
.h3_c00452{height:64.000000pt;}
.h9_c00452{height:64.006272pt;}
.he_c00452{height:64.007200pt;}
.h14_c00452{height:64.011551pt;}
.h6_c00452{height:69.333333pt;}
.hd_c00452{height:69.341133pt;}
.h10_c00452{height:69.345847pt;}
.hb_c00452{height:69.348620pt;}
.h5_c00452{height:74.666667pt;}
.h7_c00452{height:74.673984pt;}
.hf_c00452{height:74.675066pt;}
.h12_c00452{height:74.680143pt;}
.h2_c00452{height:80.000000pt;}
.h8_c00452{height:80.007840pt;}
.h11_c00452{height:80.014439pt;}
.h4_c00452{height:85.333333pt;}
.h15_c00452{height:90.674328pt;}
.h13_c00452{height:90.683031pt;}
.h0_c00452{height:1112.400000pt;}
.h1_c00452{height:1112.666667pt;}
.w0_c00452{width:813.333333pt;}
.x0_c00452{left:0.000000pt;}
.xd2_c00452{left:113.211195pt;}
.xdd_c00452{left:114.489741pt;}
.xc3_c00452{left:115.532441pt;}
.x73_c00452{left:116.782912pt;}
.x6e_c00452{left:118.080000pt;}
.x52_c00452{left:119.366757pt;}
.x2c_c00452{left:120.876000pt;}
.x1a_c00452{left:122.566667pt;}
.x3_c00452{left:123.600000pt;}
.xd3_c00452{left:144.027531pt;}
.x90_c00452{left:146.264000pt;}
.x7c_c00452{left:147.331857pt;}
.x3c_c00452{left:150.300000pt;}
.x1b_c00452{left:151.592000pt;}
.x99_c00452{left:155.797087pt;}
.x6f_c00452{left:156.720000pt;}
.x2d_c00452{left:159.956000pt;}
.xf_c00452{left:160.920000pt;}
.xe3_c00452{left:163.504000pt;}
.xcc_c00452{left:173.940119pt;}
.x85_c00452{left:176.608495pt;}
.x91_c00452{left:185.565333pt;}
.x67_c00452{left:187.321579pt;}
.x25_c00452{left:190.385333pt;}
.xc4_c00452{left:194.801393pt;}
.x9a_c00452{left:195.841020pt;}
.x58_c00452{left:196.868829pt;}
.x45_c00452{left:198.005333pt;}
.x4_c00452{left:199.920000pt;}
.x74_c00452{left:206.140540pt;}
.x70_c00452{left:207.600000pt;}
.x34_c00452{left:208.709333pt;}
.x1c_c00452{left:210.882667pt;}
.xda_c00452{left:213.844136pt;}
.x7d_c00452{left:215.528047pt;}
.x4b_c00452{left:216.549333pt;}
.x3d_c00452{left:218.768000pt;}
.x5_c00452{left:221.040000pt;}
.x10_c00452{left:229.781333pt;}
.xe4_c00452{left:232.113333pt;}
.x60_c00452{left:236.217403pt;}
.x3e_c00452{left:237.717333pt;}
.x1d_c00452{left:238.700000pt;}
.xcd_c00452{left:241.833411pt;}
.x9b_c00452{left:243.554580pt;}
.x2e_c00452{left:247.542667pt;}
.x35_c00452{left:248.525333pt;}
.xc5_c00452{left:252.134500pt;}
.x92_c00452{left:254.189333pt;}
.x26_c00452{left:258.364000pt;}
.x11_c00452{left:259.269333pt;}
.xa4_c00452{left:262.551040pt;}
.x86_c00452{left:263.506647pt;}
.x46_c00452{left:266.885333pt;}
.xde_c00452{left:270.442039pt;}
.xac_c00452{left:273.026960pt;}
.x71_c00452{left:275.040000pt;}
.x1e_c00452{left:277.550667pt;}
.x6_c00452{left:278.880000pt;}
.xa5_c00452{left:281.932720pt;}
.x9c_c00452{left:292.585293pt;}
.x93_c00452{left:293.480000pt;}
.x59_c00452{left:295.295621pt;}
.x36_c00452{left:297.482667pt;}
.xe5_c00452{left:300.508000pt;}
.xbe_c00452{left:301.678617pt;}
.x75_c00452{left:303.866700pt;}
.x47_c00452{left:306.005333pt;}
.x53_c00452{left:307.005424pt;}
.xad_c00452{left:311.472447pt;}
.x9d_c00452{left:312.421280pt;}
.x2f_c00452{left:316.890667pt;}
.xdf_c00452{left:320.132309pt;}
.x76_c00452{left:323.042571pt;}
.x5a_c00452{left:325.231539pt;}
.xbf_c00452{left:330.980508pt;}
.x94_c00452{left:332.729333pt;}
.x1f_c00452{left:337.337333pt;}
.xe6_c00452{left:339.390667pt;}
.xdb_c00452{left:340.347120pt;}
.x68_c00452{left:344.944187pt;}
.x30_c00452{left:345.946667pt;}
.xe0_c00452{left:349.424867pt;}
.xb4_c00452{left:352.346133pt;}
.x72_c00452{left:353.280000pt;}
.x5b_c00452{left:354.258085pt;}
.x61_c00452{left:355.270059pt;}
.x7_c00452{left:359.040000pt;}
.xd4_c00452{left:359.984448pt;}
.xba_c00452{left:361.824196pt;}
.x7e_c00452{left:363.559596pt;}
.x4c_c00452{left:365.112000pt;}
.x12_c00452{left:366.122667pt;}
.xc6_c00452{left:370.408029pt;}
.x1_c00452{left:377.280000pt;}
.xe1_c00452{left:379.446783pt;}
.xa6_c00452{left:380.631547pt;}
.x27_c00452{left:385.534667pt;}
.x8_c00452{left:386.880000pt;}
.xce_c00452{left:388.972223pt;}
.x87_c00452{left:391.211959pt;}
.x7f_c00452{left:392.170133pt;}
.x77_c00452{left:393.364328pt;}
.x4d_c00452{left:394.625333pt;}
.x2_c00452{left:397.920000pt;}
.x9e_c00452{left:401.706553pt;}
.x13_c00452{left:405.961333pt;}
.xe2_c00452{left:408.247340pt;}
.xae_c00452{left:410.141793pt;}
.x88_c00452{left:411.611539pt;}
.x54_c00452{left:413.814757pt;}
.x37_c00452{left:414.868000pt;}
.x20_c00452{left:416.545333pt;}
.xe7_c00452{left:418.144000pt;}
.xbb_c00452{left:419.424057pt;}
.x62_c00452{left:424.163981pt;}
.x9_c00452{left:426.240000pt;}
.xa7_c00452{left:430.028293pt;}
.x89_c00452{left:431.531119pt;}
.x69_c00452{left:433.063883pt;}
.x31_c00452{left:434.260000pt;}
.x48_c00452{left:435.365333pt;}
.x55_c00452{left:443.574757pt;}
.x38_c00452{left:444.606667pt;}
.x14_c00452{left:445.781333pt;}
.xc7_c00452{left:448.898467pt;}
.xaf_c00452{left:449.935080pt;}
.x4e_c00452{left:453.449333pt;}
.xa_c00452{left:456.480000pt;}
.xc0_c00452{left:459.457607pt;}
.x6a_c00452{left:462.355781pt;}
.x3f_c00452{left:463.320000pt;}
.x49_c00452{left:464.885333pt;}
.xe8_c00452{left:466.894667pt;}
.x8a_c00452{left:470.598307pt;}
.x39_c00452{left:473.898667pt;}
.xcf_c00452{left:478.291253pt;}
.x9f_c00452{left:479.534720pt;}
.x32_c00452{left:485.406667pt;}
.x15_c00452{left:486.346667pt;}
.x95_c00452{left:489.230667pt;}
.xb5_c00452{left:491.801513pt;}
.x21_c00452{left:494.326667pt;}
.xdc_c00452{left:497.814609pt;}
.xb0_c00452{left:500.089653pt;}
.x63_c00452{left:501.480813pt;}
.x5c_c00452{left:502.417635pt;}
.x40_c00452{left:503.642667pt;}
.x28_c00452{left:504.577333pt;}
.xd5_c00452{left:507.626559pt;}
.x80_c00452{left:511.432479pt;}
.xc8_c00452{left:517.138855pt;}
.xc1_c00452{left:518.218721pt;}
.x8b_c00452{left:519.849271pt;}
.x6b_c00452{left:521.879616pt;}
.x41_c00452{left:523.061333pt;}
.x16_c00452{left:524.514667pt;}
.xb_c00452{left:526.320000pt;}
.xbc_c00452{left:528.415055pt;}
.xb6_c00452{left:529.433333pt;}
.x78_c00452{left:530.952980pt;}
.x4f_c00452{left:532.181333pt;}
.xa8_c00452{left:539.031213pt;}
.xc2_c00452{left:548.017945pt;}
.x56_c00452{left:552.544091pt;}
.x4a_c00452{left:555.125333pt;}
.xa0_c00452{left:558.914687pt;}
.x64_c00452{left:561.006493pt;}
.xc_c00452{left:564.240000pt;}
.xb1_c00452{left:568.497747pt;}
.x3a_c00452{left:572.321333pt;}
.xa9_c00452{left:577.938553pt;}
.x81_c00452{left:579.560668pt;}
.x29_c00452{left:582.838667pt;}
.xa1_c00452{left:588.278727pt;}
.x8c_c00452{left:589.451815pt;}
.x5d_c00452{left:591.028016pt;}
.x22_c00452{left:592.497333pt;}
.x17_c00452{left:593.888000pt;}
.xc9_c00452{left:597.534245pt;}
.xb2_c00452{left:598.516353pt;}
.x65_c00452{left:600.347595pt;}
.xaa_c00452{left:608.590873pt;}
.x96_c00452{left:609.514667pt;}
.x5e_c00452{left:610.920856pt;}
.x23_c00452{left:613.354667pt;}
.xb7_c00452{left:617.453333pt;}
.xd6_c00452{left:618.795456pt;}
.x79_c00452{left:620.227941pt;}
.xca_c00452{left:627.061980pt;}
.xa2_c00452{left:628.562620pt;}
.x50_c00452{left:630.545333pt;}
.x6c_c00452{left:631.580227pt;}
.x42_c00452{left:632.736000pt;}
.xd_c00452{left:635.040000pt;}
.x8d_c00452{left:638.722779pt;}
.xd0_c00452{left:647.138471pt;}
.x82_c00452{left:648.590219pt;}
.x7a_c00452{left:650.001817pt;}
.x66_c00452{left:650.947680pt;}
.x2a_c00452{left:653.154667pt;}
.x24_c00452{left:654.166667pt;}
.xb3_c00452{left:657.675040pt;}
.x8e_c00452{left:658.653025pt;}
.x83_c00452{left:668.987087pt;}
.xe_c00452{left:675.120000pt;}
.xd1_c00452{left:676.667028pt;}
.xb8_c00452{left:678.162667pt;}
.x97_c00452{left:679.357333pt;}
.x5f_c00452{left:681.262472pt;}
.x2b_c00452{left:682.914667pt;}
.xd7_c00452{left:686.404980pt;}
.x3b_c00452{left:691.828000pt;}
.xcb_c00452{left:696.543448pt;}
.xa3_c00452{left:697.782613pt;}
.x84_c00452{left:699.440375pt;}
.x6d_c00452{left:700.727139pt;}
.x43_c00452{left:702.106667pt;}
.x18_c00452{left:703.088000pt;}
.x7b_c00452{left:707.146763pt;}
.x51_c00452{left:711.008000pt;}
.xd8_c00452{left:716.100059pt;}
.x8f_c00452{left:718.194432pt;}
.x33_c00452{left:722.045333pt;}
.xbd_c00452{left:736.373961pt;}
.xb9_c00452{left:738.165333pt;}
.x57_c00452{left:739.788091pt;}
.x44_c00452{left:741.714667pt;}
.x19_c00452{left:742.925333pt;}
.xd9_c00452{left:746.887061pt;}
.x98_c00452{left:748.036000pt;}
.xab_c00452{left:750.313873pt;}
}





/* 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_c00453 {
    display:none;
  }
  .loading-indicator_c00453.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00453 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_c00453 { 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_c00453" -> "#page-container .classname_c00453")
 */
.pf_c00453 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00453 { /* 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_c00453.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00453 { /* 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_c00453 { /* 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_c00453 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00453 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00453 {overflow:visible;}
  }
}
.c_c00453 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00453 { /* 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_c00453:after { /* webkit #35443 */
  content: '';
}
.t_c00453:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00453 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 */
}
.__c00453 { /* 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_c00453 { /* info for Javascript */
  display:none;
}
.l_c00453 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00453 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00453 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00453: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_c00453 {
    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_c00453.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00453.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_c00453 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00453{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00453;src:url('chunks/assets/font_91338875028c1bc55e42d757.woff2')format("woff");}.ff1_c00453{font-family:ff1_c00453;line-height:1.000000;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;}
.m3b_c00453{transform:matrix(0.011855,-0.000332,0.006997,0.249902,0,0);-ms-transform:matrix(0.011855,-0.000332,0.006997,0.249902,0,0);-webkit-transform:matrix(0.011855,-0.000332,0.006997,0.249902,0,0);}
.m87_c00453{transform:matrix(0.014375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.014375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.014375,0.000000,0.000000,0.250000,0,0);}
.me_c00453{transform:matrix(0.020328,-0.000264,0.003250,0.249979,0,0);-ms-transform:matrix(0.020328,-0.000264,0.003250,0.249979,0,0);-webkit-transform:matrix(0.020328,-0.000264,0.003250,0.249979,0,0);}
.m37_c00453{transform:matrix(0.022163,-0.000266,0.003000,0.249982,0,0);-ms-transform:matrix(0.022163,-0.000266,0.003000,0.249982,0,0);-webkit-transform:matrix(0.022163,-0.000266,0.003000,0.249982,0,0);}
.m52_c00453{transform:matrix(0.041894,-0.001173,0.006997,0.249902,0,0);-ms-transform:matrix(0.041894,-0.001173,0.006997,0.249902,0,0);-webkit-transform:matrix(0.041894,-0.001173,0.006997,0.249902,0,0);}
.m95_c00453{transform:matrix(0.054085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054085,0.000000,0.000000,0.250000,0,0);}
.m90_c00453{transform:matrix(0.063451,-0.000698,0.002750,0.249985,0,0);-ms-transform:matrix(0.063451,-0.000698,0.002750,0.249985,0,0);-webkit-transform:matrix(0.063451,-0.000698,0.002750,0.249985,0,0);}
.m96_c00453{transform:matrix(0.155565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155565,0.000000,0.000000,0.250000,0,0);}
.m6d_c00453{transform:matrix(0.157829,-0.001894,0.003000,0.249982,0,0);-ms-transform:matrix(0.157829,-0.001894,0.003000,0.249982,0,0);-webkit-transform:matrix(0.157829,-0.001894,0.003000,0.249982,0,0);}
.m94_c00453{transform:matrix(0.159450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159450,0.000000,0.000000,0.250000,0,0);}
.m5f_c00453{transform:matrix(0.162973,-0.001956,0.003000,0.249982,0,0);-ms-transform:matrix(0.162973,-0.001956,0.003000,0.249982,0,0);-webkit-transform:matrix(0.162973,-0.001956,0.003000,0.249982,0,0);}
.m10_c00453{transform:matrix(0.167131,-0.002173,0.003250,0.249979,0,0);-ms-transform:matrix(0.167131,-0.002173,0.003250,0.249979,0,0);-webkit-transform:matrix(0.167131,-0.002173,0.003250,0.249979,0,0);}
.m0_c00453{transform:matrix(0.168226,-0.002860,0.004249,0.249964,0,0);-ms-transform:matrix(0.168226,-0.002860,0.004249,0.249964,0,0);-webkit-transform:matrix(0.168226,-0.002860,0.004249,0.249964,0,0);}
.m58_c00453{transform:matrix(0.169508,-0.002034,0.003000,0.249982,0,0);-ms-transform:matrix(0.169508,-0.002034,0.003000,0.249982,0,0);-webkit-transform:matrix(0.169508,-0.002034,0.003000,0.249982,0,0);}
.m93_c00453{transform:matrix(0.171435,-0.001886,0.002750,0.249985,0,0);-ms-transform:matrix(0.171435,-0.001886,0.002750,0.249985,0,0);-webkit-transform:matrix(0.171435,-0.001886,0.002750,0.249985,0,0);}
.m4a_c00453{transform:matrix(0.172667,-0.004835,0.006997,0.249902,0,0);-ms-transform:matrix(0.172667,-0.004835,0.006997,0.249902,0,0);-webkit-transform:matrix(0.172667,-0.004835,0.006997,0.249902,0,0);}
.m28_c00453{transform:matrix(0.181130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181130,0.000000,0.000000,0.250000,0,0);}
.m1f_c00453{transform:matrix(0.183954,-0.002391,0.003250,0.249979,0,0);-ms-transform:matrix(0.183954,-0.002391,0.003250,0.249979,0,0);-webkit-transform:matrix(0.183954,-0.002391,0.003250,0.249979,0,0);}
.m7c_c00453{transform:matrix(0.186825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186825,0.000000,0.000000,0.250000,0,0);}
.m3_c00453{transform:matrix(0.187058,-0.003180,0.004249,0.249964,0,0);-ms-transform:matrix(0.187058,-0.003180,0.004249,0.249964,0,0);-webkit-transform:matrix(0.187058,-0.003180,0.004249,0.249964,0,0);}
.m5d_c00453{transform:matrix(0.191821,-0.002302,0.003000,0.249982,0,0);-ms-transform:matrix(0.191821,-0.002302,0.003000,0.249982,0,0);-webkit-transform:matrix(0.191821,-0.002302,0.003000,0.249982,0,0);}
.m4_c00453{transform:matrix(0.195202,-0.003318,0.004249,0.249964,0,0);-ms-transform:matrix(0.195202,-0.003318,0.004249,0.249964,0,0);-webkit-transform:matrix(0.195202,-0.003318,0.004249,0.249964,0,0);}
.m11_c00453{transform:matrix(0.195498,-0.002541,0.003250,0.249979,0,0);-ms-transform:matrix(0.195498,-0.002541,0.003250,0.249979,0,0);-webkit-transform:matrix(0.195498,-0.002541,0.003250,0.249979,0,0);}
.m69_c00453{transform:matrix(0.196911,-0.002363,0.003000,0.249982,0,0);-ms-transform:matrix(0.196911,-0.002363,0.003000,0.249982,0,0);-webkit-transform:matrix(0.196911,-0.002363,0.003000,0.249982,0,0);}
.m26_c00453{transform:matrix(0.197365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197365,0.000000,0.000000,0.250000,0,0);}
.m4f_c00453{transform:matrix(0.198297,-0.005552,0.006997,0.249902,0,0);-ms-transform:matrix(0.198297,-0.005552,0.006997,0.249902,0,0);-webkit-transform:matrix(0.198297,-0.005552,0.006997,0.249902,0,0);}
.m6_c00453{transform:matrix(0.198706,-0.003378,0.004249,0.249964,0,0);-ms-transform:matrix(0.198706,-0.003378,0.004249,0.249964,0,0);-webkit-transform:matrix(0.198706,-0.003378,0.004249,0.249964,0,0);}
.m5b_c00453{transform:matrix(0.199151,-0.002390,0.003000,0.249982,0,0);-ms-transform:matrix(0.199151,-0.002390,0.003000,0.249982,0,0);-webkit-transform:matrix(0.199151,-0.002390,0.003000,0.249982,0,0);}
.m67_c00453{transform:matrix(0.201830,-0.002422,0.003000,0.249982,0,0);-ms-transform:matrix(0.201830,-0.002422,0.003000,0.249982,0,0);-webkit-transform:matrix(0.201830,-0.002422,0.003000,0.249982,0,0);}
.m4b_c00453{transform:matrix(0.202706,-0.005676,0.006997,0.249902,0,0);-ms-transform:matrix(0.202706,-0.005676,0.006997,0.249902,0,0);-webkit-transform:matrix(0.202706,-0.005676,0.006997,0.249902,0,0);}
.m82_c00453{transform:matrix(0.203165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203165,0.000000,0.000000,0.250000,0,0);}
.m66_c00453{transform:matrix(0.206245,-0.002475,0.003000,0.249982,0,0);-ms-transform:matrix(0.206245,-0.002475,0.003000,0.249982,0,0);-webkit-transform:matrix(0.206245,-0.002475,0.003000,0.249982,0,0);}
.ma_c00453{transform:matrix(0.206535,-0.003511,0.004249,0.249964,0,0);-ms-transform:matrix(0.206535,-0.003511,0.004249,0.249964,0,0);-webkit-transform:matrix(0.206535,-0.003511,0.004249,0.249964,0,0);}
.m65_c00453{transform:matrix(0.207500,-0.002490,0.003000,0.249982,0,0);-ms-transform:matrix(0.207500,-0.002490,0.003000,0.249982,0,0);-webkit-transform:matrix(0.207500,-0.002490,0.003000,0.249982,0,0);}
.m5c_c00453{transform:matrix(0.210155,-0.002522,0.003000,0.249982,0,0);-ms-transform:matrix(0.210155,-0.002522,0.003000,0.249982,0,0);-webkit-transform:matrix(0.210155,-0.002522,0.003000,0.249982,0,0);}
.m1b_c00453{transform:matrix(0.210687,-0.002739,0.003250,0.249979,0,0);-ms-transform:matrix(0.210687,-0.002739,0.003250,0.249979,0,0);-webkit-transform:matrix(0.210687,-0.002739,0.003250,0.249979,0,0);}
.m68_c00453{transform:matrix(0.210820,-0.002530,0.003000,0.249982,0,0);-ms-transform:matrix(0.210820,-0.002530,0.003000,0.249982,0,0);-webkit-transform:matrix(0.210820,-0.002530,0.003000,0.249982,0,0);}
.m1a_c00453{transform:matrix(0.210917,-0.002742,0.003250,0.249979,0,0);-ms-transform:matrix(0.210917,-0.002742,0.003250,0.249979,0,0);-webkit-transform:matrix(0.210917,-0.002742,0.003250,0.249979,0,0);}
.m32_c00453{transform:matrix(0.211915,-0.002543,0.003000,0.249982,0,0);-ms-transform:matrix(0.211915,-0.002543,0.003000,0.249982,0,0);-webkit-transform:matrix(0.211915,-0.002543,0.003000,0.249982,0,0);}
.md_c00453{transform:matrix(0.211979,-0.003604,0.004249,0.249964,0,0);-ms-transform:matrix(0.211979,-0.003604,0.004249,0.249964,0,0);-webkit-transform:matrix(0.211979,-0.003604,0.004249,0.249964,0,0);}
.m5a_c00453{transform:matrix(0.214550,-0.002575,0.003000,0.249982,0,0);-ms-transform:matrix(0.214550,-0.002575,0.003000,0.249982,0,0);-webkit-transform:matrix(0.214550,-0.002575,0.003000,0.249982,0,0);}
.m60_c00453{transform:matrix(0.216529,-0.002598,0.003000,0.249982,0,0);-ms-transform:matrix(0.216529,-0.002598,0.003000,0.249982,0,0);-webkit-transform:matrix(0.216529,-0.002598,0.003000,0.249982,0,0);}
.m4e_c00453{transform:matrix(0.217445,-0.006088,0.006997,0.249902,0,0);-ms-transform:matrix(0.217445,-0.006088,0.006997,0.249902,0,0);-webkit-transform:matrix(0.217445,-0.006088,0.006997,0.249902,0,0);}
.m23_c00453{transform:matrix(0.218882,-0.002845,0.003250,0.249979,0,0);-ms-transform:matrix(0.218882,-0.002845,0.003250,0.249979,0,0);-webkit-transform:matrix(0.218882,-0.002845,0.003250,0.249979,0,0);}
.m24_c00453{transform:matrix(0.219186,-0.002849,0.003250,0.249979,0,0);-ms-transform:matrix(0.219186,-0.002849,0.003250,0.249979,0,0);-webkit-transform:matrix(0.219186,-0.002849,0.003250,0.249979,0,0);}
.m61_c00453{transform:matrix(0.221134,-0.002654,0.003000,0.249982,0,0);-ms-transform:matrix(0.221134,-0.002654,0.003000,0.249982,0,0);-webkit-transform:matrix(0.221134,-0.002654,0.003000,0.249982,0,0);}
.m83_c00453{transform:matrix(0.225395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225395,0.000000,0.000000,0.250000,0,0);}
.m59_c00453{transform:matrix(0.228484,-0.002742,0.003000,0.249982,0,0);-ms-transform:matrix(0.228484,-0.002742,0.003000,0.249982,0,0);-webkit-transform:matrix(0.228484,-0.002742,0.003000,0.249982,0,0);}
.m30_c00453{transform:matrix(0.230208,-0.002763,0.003000,0.249982,0,0);-ms-transform:matrix(0.230208,-0.002763,0.003000,0.249982,0,0);-webkit-transform:matrix(0.230208,-0.002763,0.003000,0.249982,0,0);}
.m47_c00453{transform:matrix(0.230919,-0.006466,0.006997,0.249902,0,0);-ms-transform:matrix(0.230919,-0.006466,0.006997,0.249902,0,0);-webkit-transform:matrix(0.230919,-0.006466,0.006997,0.249902,0,0);}
.m91_c00453{transform:matrix(0.233696,-0.002571,0.002750,0.249985,0,0);-ms-transform:matrix(0.233696,-0.002571,0.002750,0.249985,0,0);-webkit-transform:matrix(0.233696,-0.002571,0.002750,0.249985,0,0);}
.m2_c00453{transform:matrix(0.234811,-0.003992,0.004249,0.249964,0,0);-ms-transform:matrix(0.234811,-0.003992,0.004249,0.249964,0,0);-webkit-transform:matrix(0.234811,-0.003992,0.004249,0.249964,0,0);}
.m2d_c00453{transform:matrix(0.235348,-0.002824,0.003000,0.249982,0,0);-ms-transform:matrix(0.235348,-0.002824,0.003000,0.249982,0,0);-webkit-transform:matrix(0.235348,-0.002824,0.003000,0.249982,0,0);}
.m9_c00453{transform:matrix(0.237106,-0.004031,0.004249,0.249964,0,0);-ms-transform:matrix(0.237106,-0.004031,0.004249,0.249964,0,0);-webkit-transform:matrix(0.237106,-0.004031,0.004249,0.249964,0,0);}
.m6b_c00453{transform:matrix(0.237518,-0.002850,0.003000,0.249982,0,0);-ms-transform:matrix(0.237518,-0.002850,0.003000,0.249982,0,0);-webkit-transform:matrix(0.237518,-0.002850,0.003000,0.249982,0,0);}
.mb_c00453{transform:matrix(0.238301,-0.004051,0.004249,0.249964,0,0);-ms-transform:matrix(0.238301,-0.004051,0.004249,0.249964,0,0);-webkit-transform:matrix(0.238301,-0.004051,0.004249,0.249964,0,0);}
.m4d_c00453{transform:matrix(0.238327,-0.006673,0.006997,0.249902,0,0);-ms-transform:matrix(0.238327,-0.006673,0.006997,0.249902,0,0);-webkit-transform:matrix(0.238327,-0.006673,0.006997,0.249902,0,0);}
.m5e_c00453{transform:matrix(0.239463,-0.002874,0.003000,0.249982,0,0);-ms-transform:matrix(0.239463,-0.002874,0.003000,0.249982,0,0);-webkit-transform:matrix(0.239463,-0.002874,0.003000,0.249982,0,0);}
.m5_c00453{transform:matrix(0.242500,-0.004122,0.004249,0.249964,0,0);-ms-transform:matrix(0.242500,-0.004122,0.004249,0.249964,0,0);-webkit-transform:matrix(0.242500,-0.004122,0.004249,0.249964,0,0);}
.m29_c00453{transform:matrix(0.243145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243145,0.000000,0.000000,0.250000,0,0);}
.m3f_c00453{transform:matrix(0.246933,-0.006914,0.006997,0.249902,0,0);-ms-transform:matrix(0.246933,-0.006914,0.006997,0.249902,0,0);-webkit-transform:matrix(0.246933,-0.006914,0.006997,0.249902,0,0);}
.m7_c00453{transform:matrix(0.251029,-0.004267,0.004249,0.249964,0,0);-ms-transform:matrix(0.251029,-0.004267,0.004249,0.249964,0,0);-webkit-transform:matrix(0.251029,-0.004267,0.004249,0.249964,0,0);}
.m6a_c00453{transform:matrix(0.253277,-0.003039,0.003000,0.249982,0,0);-ms-transform:matrix(0.253277,-0.003039,0.003000,0.249982,0,0);-webkit-transform:matrix(0.253277,-0.003039,0.003000,0.249982,0,0);}
.m84_c00453{transform:matrix(0.258580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258580,0.000000,0.000000,0.250000,0,0);}
.m17_c00453{transform:matrix(0.260313,-0.003384,0.003250,0.249979,0,0);-ms-transform:matrix(0.260313,-0.003384,0.003250,0.249979,0,0);-webkit-transform:matrix(0.260313,-0.003384,0.003250,0.249979,0,0);}
.m72_c00453{transform:matrix(0.261460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261460,0.000000,0.000000,0.250000,0,0);}
.m4c_c00453{transform:matrix(0.264296,-0.007400,0.006997,0.249902,0,0);-ms-transform:matrix(0.264296,-0.007400,0.006997,0.249902,0,0);-webkit-transform:matrix(0.264296,-0.007400,0.006997,0.249902,0,0);}
.mf_c00453{transform:matrix(0.264723,-0.003441,0.003250,0.249979,0,0);-ms-transform:matrix(0.264723,-0.003441,0.003250,0.249979,0,0);-webkit-transform:matrix(0.264723,-0.003441,0.003250,0.249979,0,0);}
.m19_c00453{transform:matrix(0.265553,-0.003452,0.003250,0.249979,0,0);-ms-transform:matrix(0.265553,-0.003452,0.003250,0.249979,0,0);-webkit-transform:matrix(0.265553,-0.003452,0.003250,0.249979,0,0);}
.m80_c00453{transform:matrix(0.268200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268200,0.000000,0.000000,0.250000,0,0);}
.m1e_c00453{transform:matrix(0.269862,-0.003508,0.003250,0.249979,0,0);-ms-transform:matrix(0.269862,-0.003508,0.003250,0.249979,0,0);-webkit-transform:matrix(0.269862,-0.003508,0.003250,0.249979,0,0);}
.m2e_c00453{transform:matrix(0.271950,-0.003263,0.003000,0.249982,0,0);-ms-transform:matrix(0.271950,-0.003263,0.003000,0.249982,0,0);-webkit-transform:matrix(0.271950,-0.003263,0.003000,0.249982,0,0);}
.m8c_c00453{transform:matrix(0.274098,-0.003015,0.002750,0.249985,0,0);-ms-transform:matrix(0.274098,-0.003015,0.002750,0.249985,0,0);-webkit-transform:matrix(0.274098,-0.003015,0.002750,0.249985,0,0);}
.m62_c00453{transform:matrix(0.274760,-0.003297,0.003000,0.249982,0,0);-ms-transform:matrix(0.274760,-0.003297,0.003000,0.249982,0,0);-webkit-transform:matrix(0.274760,-0.003297,0.003000,0.249982,0,0);}
.mc_c00453{transform:matrix(0.277395,-0.004716,0.004249,0.249964,0,0);-ms-transform:matrix(0.277395,-0.004716,0.004249,0.249964,0,0);-webkit-transform:matrix(0.277395,-0.004716,0.004249,0.249964,0,0);}
.m25_c00453{transform:matrix(0.277600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277600,0.000000,0.000000,0.250000,0,0);}
.m31_c00453{transform:matrix(0.278955,-0.003347,0.003000,0.249982,0,0);-ms-transform:matrix(0.278955,-0.003347,0.003000,0.249982,0,0);-webkit-transform:matrix(0.278955,-0.003347,0.003000,0.249982,0,0);}
.m8_c00453{transform:matrix(0.283974,-0.004828,0.004249,0.249964,0,0);-ms-transform:matrix(0.283974,-0.004828,0.004249,0.249964,0,0);-webkit-transform:matrix(0.283974,-0.004828,0.004249,0.249964,0,0);}
.m33_c00453{transform:matrix(0.285239,-0.003423,0.003000,0.249982,0,0);-ms-transform:matrix(0.285239,-0.003423,0.003000,0.249982,0,0);-webkit-transform:matrix(0.285239,-0.003423,0.003000,0.249982,0,0);}
.m1d_c00453{transform:matrix(0.285501,-0.003712,0.003250,0.249979,0,0);-ms-transform:matrix(0.285501,-0.003712,0.003250,0.249979,0,0);-webkit-transform:matrix(0.285501,-0.003712,0.003250,0.249979,0,0);}
.m78_c00453{transform:matrix(0.287355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287355,0.000000,0.000000,0.250000,0,0);}
.m48_c00453{transform:matrix(0.287742,-0.008057,0.006997,0.249902,0,0);-ms-transform:matrix(0.287742,-0.008057,0.006997,0.249902,0,0);-webkit-transform:matrix(0.287742,-0.008057,0.006997,0.249902,0,0);}
.m51_c00453{transform:matrix(0.291821,-0.008171,0.006997,0.249902,0,0);-ms-transform:matrix(0.291821,-0.008171,0.006997,0.249902,0,0);-webkit-transform:matrix(0.291821,-0.008171,0.006997,0.249902,0,0);}
.m13_c00453{transform:matrix(0.293570,-0.003816,0.003250,0.249979,0,0);-ms-transform:matrix(0.293570,-0.003816,0.003250,0.249979,0,0);-webkit-transform:matrix(0.293570,-0.003816,0.003250,0.249979,0,0);}
.m3e_c00453{transform:matrix(0.294595,-0.008249,0.006997,0.249902,0,0);-ms-transform:matrix(0.294595,-0.008249,0.006997,0.249902,0,0);-webkit-transform:matrix(0.294595,-0.008249,0.006997,0.249902,0,0);}
.m2f_c00453{transform:matrix(0.295144,-0.003542,0.003000,0.249982,0,0);-ms-transform:matrix(0.295144,-0.003542,0.003000,0.249982,0,0);-webkit-transform:matrix(0.295144,-0.003542,0.003000,0.249982,0,0);}
.m36_c00453{transform:matrix(0.296984,-0.003564,0.003000,0.249982,0,0);-ms-transform:matrix(0.296984,-0.003564,0.003000,0.249982,0,0);-webkit-transform:matrix(0.296984,-0.003564,0.003000,0.249982,0,0);}
.m1_c00453{transform:matrix(0.297572,-0.005059,0.004249,0.249964,0,0);-ms-transform:matrix(0.297572,-0.005059,0.004249,0.249964,0,0);-webkit-transform:matrix(0.297572,-0.005059,0.004249,0.249964,0,0);}
.m2b_c00453{transform:matrix(0.298079,-0.003577,0.003000,0.249982,0,0);-ms-transform:matrix(0.298079,-0.003577,0.003000,0.249982,0,0);-webkit-transform:matrix(0.298079,-0.003577,0.003000,0.249982,0,0);}
.m22_c00453{transform:matrix(0.300425,-0.003906,0.003250,0.249979,0,0);-ms-transform:matrix(0.300425,-0.003906,0.003250,0.249979,0,0);-webkit-transform:matrix(0.300425,-0.003906,0.003250,0.249979,0,0);}
.m57_c00453{transform:matrix(0.300892,-0.008425,0.006997,0.249902,0,0);-ms-transform:matrix(0.300892,-0.008425,0.006997,0.249902,0,0);-webkit-transform:matrix(0.300892,-0.008425,0.006997,0.249902,0,0);}
.m40_c00453{transform:matrix(0.301422,-0.008440,0.006997,0.249902,0,0);-ms-transform:matrix(0.301422,-0.008440,0.006997,0.249902,0,0);-webkit-transform:matrix(0.301422,-0.008440,0.006997,0.249902,0,0);}
.m75_c00453{transform:matrix(0.305675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305675,0.000000,0.000000,0.250000,0,0);}
.m76_c00453{transform:matrix(0.305780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305780,0.000000,0.000000,0.250000,0,0);}
.m70_c00453{transform:matrix(0.308705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308705,0.000000,0.000000,0.250000,0,0);}
.m49_c00453{transform:matrix(0.309609,-0.008669,0.006997,0.249902,0,0);-ms-transform:matrix(0.309609,-0.008669,0.006997,0.249902,0,0);-webkit-transform:matrix(0.309609,-0.008669,0.006997,0.249902,0,0);}
.m1c_c00453{transform:matrix(0.312754,-0.004066,0.003250,0.249979,0,0);-ms-transform:matrix(0.312754,-0.004066,0.003250,0.249979,0,0);-webkit-transform:matrix(0.312754,-0.004066,0.003250,0.249979,0,0);}
.m27_c00453{transform:matrix(0.312780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312780,0.000000,0.000000,0.250000,0,0);}
.m79_c00453{transform:matrix(0.315200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315200,0.000000,0.000000,0.250000,0,0);}
.m20_c00453{transform:matrix(0.321803,-0.004183,0.003250,0.249979,0,0);-ms-transform:matrix(0.321803,-0.004183,0.003250,0.249979,0,0);-webkit-transform:matrix(0.321803,-0.004183,0.003250,0.249979,0,0);}
.m3d_c00453{transform:matrix(0.328581,-0.009200,0.006997,0.249902,0,0);-ms-transform:matrix(0.328581,-0.009200,0.006997,0.249902,0,0);-webkit-transform:matrix(0.328581,-0.009200,0.006997,0.249902,0,0);}
.m21_c00453{transform:matrix(0.330127,-0.004292,0.003250,0.249979,0,0);-ms-transform:matrix(0.330127,-0.004292,0.003250,0.249979,0,0);-webkit-transform:matrix(0.330127,-0.004292,0.003250,0.249979,0,0);}
.m86_c00453{transform:matrix(0.330935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330935,0.000000,0.000000,0.250000,0,0);}
.m42_c00453{transform:matrix(0.332060,-0.009298,0.006997,0.249902,0,0);-ms-transform:matrix(0.332060,-0.009298,0.006997,0.249902,0,0);-webkit-transform:matrix(0.332060,-0.009298,0.006997,0.249902,0,0);}
.m56_c00453{transform:matrix(0.334664,-0.009371,0.006997,0.249902,0,0);-ms-transform:matrix(0.334664,-0.009371,0.006997,0.249902,0,0);-webkit-transform:matrix(0.334664,-0.009371,0.006997,0.249902,0,0);}
.m2c_c00453{transform:matrix(0.336601,-0.004039,0.003000,0.249982,0,0);-ms-transform:matrix(0.336601,-0.004039,0.003000,0.249982,0,0);-webkit-transform:matrix(0.336601,-0.004039,0.003000,0.249982,0,0);}
.m7a_c00453{transform:matrix(0.343040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343040,0.000000,0.000000,0.250000,0,0);}
.m38_c00453{transform:matrix(0.352450,-0.004229,0.003000,0.249982,0,0);-ms-transform:matrix(0.352450,-0.004229,0.003000,0.249982,0,0);-webkit-transform:matrix(0.352450,-0.004229,0.003000,0.249982,0,0);}
.m12_c00453{transform:matrix(0.358130,-0.004656,0.003250,0.249979,0,0);-ms-transform:matrix(0.358130,-0.004656,0.003250,0.249979,0,0);-webkit-transform:matrix(0.358130,-0.004656,0.003250,0.249979,0,0);}
.m8b_c00453{transform:matrix(0.358463,-0.003943,0.002750,0.249985,0,0);-ms-transform:matrix(0.358463,-0.003943,0.002750,0.249985,0,0);-webkit-transform:matrix(0.358463,-0.003943,0.002750,0.249985,0,0);}
.m7f_c00453{transform:matrix(0.358780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358780,0.000000,0.000000,0.250000,0,0);}
.m8e_c00453{transform:matrix(0.371238,-0.004084,0.002750,0.249985,0,0);-ms-transform:matrix(0.371238,-0.004084,0.002750,0.249985,0,0);-webkit-transform:matrix(0.371238,-0.004084,0.002750,0.249985,0,0);}
.m2a_c00453{transform:matrix(0.373365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373365,0.000000,0.000000,0.250000,0,0);}
.m88_c00453{transform:matrix(0.374682,-0.004122,0.002750,0.249985,0,0);-ms-transform:matrix(0.374682,-0.004122,0.002750,0.249985,0,0);-webkit-transform:matrix(0.374682,-0.004122,0.002750,0.249985,0,0);}
.m46_c00453{transform:matrix(0.377147,-0.010560,0.006997,0.249902,0,0);-ms-transform:matrix(0.377147,-0.010560,0.006997,0.249902,0,0);-webkit-transform:matrix(0.377147,-0.010560,0.006997,0.249902,0,0);}
.m63_c00453{transform:matrix(0.391787,-0.004701,0.003000,0.249982,0,0);-ms-transform:matrix(0.391787,-0.004701,0.003000,0.249982,0,0);-webkit-transform:matrix(0.391787,-0.004701,0.003000,0.249982,0,0);}
.m6c_c00453{transform:matrix(0.395871,-0.004750,0.003000,0.249982,0,0);-ms-transform:matrix(0.395871,-0.004750,0.003000,0.249982,0,0);-webkit-transform:matrix(0.395871,-0.004750,0.003000,0.249982,0,0);}
.m55_c00453{transform:matrix(0.396080,-0.011090,0.006997,0.249902,0,0);-ms-transform:matrix(0.396080,-0.011090,0.006997,0.249902,0,0);-webkit-transform:matrix(0.396080,-0.011090,0.006997,0.249902,0,0);}
.m77_c00453{transform:matrix(0.399195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399195,0.000000,0.000000,0.250000,0,0);}
.m7e_c00453{transform:matrix(0.410135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410135,0.000000,0.000000,0.250000,0,0);}
.m35_c00453{transform:matrix(0.413970,-0.004968,0.003000,0.249982,0,0);-ms-transform:matrix(0.413970,-0.004968,0.003000,0.249982,0,0);-webkit-transform:matrix(0.413970,-0.004968,0.003000,0.249982,0,0);}
.m39_c00453{transform:matrix(0.415925,-0.004991,0.003000,0.249982,0,0);-ms-transform:matrix(0.415925,-0.004991,0.003000,0.249982,0,0);-webkit-transform:matrix(0.415925,-0.004991,0.003000,0.249982,0,0);}
.m7b_c00453{transform:matrix(0.417990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417990,0.000000,0.000000,0.250000,0,0);}
.m64_c00453{transform:matrix(0.432304,-0.005188,0.003000,0.249982,0,0);-ms-transform:matrix(0.432304,-0.005188,0.003000,0.249982,0,0);-webkit-transform:matrix(0.432304,-0.005188,0.003000,0.249982,0,0);}
.m73_c00453{transform:matrix(0.435325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435325,0.000000,0.000000,0.250000,0,0);}
.m3c_c00453{transform:matrix(0.435679,-0.012199,0.006997,0.249902,0,0);-ms-transform:matrix(0.435679,-0.012199,0.006997,0.249902,0,0);-webkit-transform:matrix(0.435679,-0.012199,0.006997,0.249902,0,0);}
.m53_c00453{transform:matrix(0.440402,-0.012331,0.006997,0.249902,0,0);-ms-transform:matrix(0.440402,-0.012331,0.006997,0.249902,0,0);-webkit-transform:matrix(0.440402,-0.012331,0.006997,0.249902,0,0);}
.m85_c00453{transform:matrix(0.448350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448350,0.000000,0.000000,0.250000,0,0);}
.m74_c00453{transform:matrix(0.448530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448530,0.000000,0.000000,0.250000,0,0);}
.m54_c00453{transform:matrix(0.457421,-0.012808,0.006997,0.249902,0,0);-ms-transform:matrix(0.457421,-0.012808,0.006997,0.249902,0,0);-webkit-transform:matrix(0.457421,-0.012808,0.006997,0.249902,0,0);}
.m16_c00453{transform:matrix(0.467965,-0.006084,0.003250,0.249979,0,0);-ms-transform:matrix(0.467965,-0.006084,0.003250,0.249979,0,0);-webkit-transform:matrix(0.467965,-0.006084,0.003250,0.249979,0,0);}
.m8f_c00453{transform:matrix(0.485581,-0.005341,0.002750,0.249985,0,0);-ms-transform:matrix(0.485581,-0.005341,0.002750,0.249985,0,0);-webkit-transform:matrix(0.485581,-0.005341,0.002750,0.249985,0,0);}
.m18_c00453{transform:matrix(0.503967,-0.006552,0.003250,0.249979,0,0);-ms-transform:matrix(0.503967,-0.006552,0.003250,0.249979,0,0);-webkit-transform:matrix(0.503967,-0.006552,0.003250,0.249979,0,0);}
.m89_c00453{transform:matrix(0.517689,-0.005695,0.002750,0.249985,0,0);-ms-transform:matrix(0.517689,-0.005695,0.002750,0.249985,0,0);-webkit-transform:matrix(0.517689,-0.005695,0.002750,0.249985,0,0);}
.m71_c00453{transform:matrix(0.542505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542505,0.000000,0.000000,0.250000,0,0);}
.m8a_c00453{transform:matrix(0.564801,-0.006213,0.002750,0.249985,0,0);-ms-transform:matrix(0.564801,-0.006213,0.002750,0.249985,0,0);-webkit-transform:matrix(0.564801,-0.006213,0.002750,0.249985,0,0);}
.m7d_c00453{transform:matrix(0.571340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571340,0.000000,0.000000,0.250000,0,0);}
.m43_c00453{transform:matrix(0.586845,-0.016432,0.006997,0.249902,0,0);-ms-transform:matrix(0.586845,-0.016432,0.006997,0.249902,0,0);-webkit-transform:matrix(0.586845,-0.016432,0.006997,0.249902,0,0);}
.m97_c00453{transform:matrix(0.612945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612945,0.000000,0.000000,0.250000,0,0);}
.m41_c00453{transform:matrix(0.630928,-0.017666,0.006997,0.249902,0,0);-ms-transform:matrix(0.630928,-0.017666,0.006997,0.249902,0,0);-webkit-transform:matrix(0.630928,-0.017666,0.006997,0.249902,0,0);}
.m50_c00453{transform:matrix(0.634361,-0.017762,0.006997,0.249902,0,0);-ms-transform:matrix(0.634361,-0.017762,0.006997,0.249902,0,0);-webkit-transform:matrix(0.634361,-0.017762,0.006997,0.249902,0,0);}
.m14_c00453{transform:matrix(0.638676,-0.008303,0.003250,0.249979,0,0);-ms-transform:matrix(0.638676,-0.008303,0.003250,0.249979,0,0);-webkit-transform:matrix(0.638676,-0.008303,0.003250,0.249979,0,0);}
.m15_c00453{transform:matrix(0.645690,-0.008394,0.003250,0.249979,0,0);-ms-transform:matrix(0.645690,-0.008394,0.003250,0.249979,0,0);-webkit-transform:matrix(0.645690,-0.008394,0.003250,0.249979,0,0);}
.m8d_c00453{transform:matrix(0.654765,-0.007202,0.002750,0.249985,0,0);-ms-transform:matrix(0.654765,-0.007202,0.002750,0.249985,0,0);-webkit-transform:matrix(0.654765,-0.007202,0.002750,0.249985,0,0);}
.m34_c00453{transform:matrix(0.655878,-0.007871,0.003000,0.249982,0,0);-ms-transform:matrix(0.655878,-0.007871,0.003000,0.249982,0,0);-webkit-transform:matrix(0.655878,-0.007871,0.003000,0.249982,0,0);}
.m92_c00453{transform:matrix(0.694508,-0.007640,0.002750,0.249985,0,0);-ms-transform:matrix(0.694508,-0.007640,0.002750,0.249985,0,0);-webkit-transform:matrix(0.694508,-0.007640,0.002750,0.249985,0,0);}
.m6f_c00453{transform:matrix(0.705360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.705360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.705360,0.000000,0.000000,0.250000,0,0);}
.m6e_c00453{transform:matrix(0.753796,-0.009046,0.003000,0.249982,0,0);-ms-transform:matrix(0.753796,-0.009046,0.003000,0.249982,0,0);-webkit-transform:matrix(0.753796,-0.009046,0.003000,0.249982,0,0);}
.m44_c00453{transform:matrix(0.774956,-0.021699,0.006997,0.249902,0,0);-ms-transform:matrix(0.774956,-0.021699,0.006997,0.249902,0,0);-webkit-transform:matrix(0.774956,-0.021699,0.006997,0.249902,0,0);}
.m81_c00453{transform:matrix(0.837900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.837900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.837900,0.000000,0.000000,0.250000,0,0);}
.m3a_c00453{transform:matrix(0.937697,-0.026256,0.006997,0.249902,0,0);-ms-transform:matrix(0.937697,-0.026256,0.006997,0.249902,0,0);-webkit-transform:matrix(0.937697,-0.026256,0.006997,0.249902,0,0);}
.m45_c00453{transform:matrix(0.997969,-0.027943,0.006997,0.249902,0,0);-ms-transform:matrix(0.997969,-0.027943,0.006997,0.249902,0,0);-webkit-transform:matrix(0.997969,-0.027943,0.006997,0.249902,0,0);}
.v0_c00453{vertical-align:0.000000px;}
.ls0_c00453{letter-spacing:0.000000px;}
.sc__c00453{text-shadow:none;}
.sc0_c00453{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__c00453{-webkit-text-stroke:0px transparent;}
.sc0_c00453{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00453{word-spacing:0.000000px;}
.fc0_c00453{color:transparent;}
.fs5_c00453{font-size:18.000000px;}
.fs3_c00453{font-size:24.000000px;}
.fs1_c00453{font-size:42.003549px;}
.fs4_c00453{font-size:48.000000px;}
.fsa_c00453{font-size:72.000000px;}
.fs7_c00453{font-size:72.028218px;}
.fs6_c00453{font-size:78.005616px;}
.fsb_c00453{font-size:84.000000px;}
.fs8_c00453{font-size:84.032922px;}
.fsc_c00453{font-size:96.005808px;}
.fs2_c00453{font-size:96.008112px;}
.fs9_c00453{font-size:102.007344px;}
.fs0_c00453{font-size:102.014738px;}
.y0_c00453{bottom:0.000000px;}
.y87_c00453{bottom:550.542000px;}
.y7b_c00453{bottom:553.504500px;}
.y7c_c00453{bottom:554.502321px;}
.y7d_c00453{bottom:555.110412px;}
.y7e_c00453{bottom:555.455246px;}
.y7f_c00453{bottom:555.995389px;}
.y80_c00453{bottom:556.547546px;}
.y81_c00453{bottom:557.058253px;}
.y82_c00453{bottom:557.290062px;}
.y83_c00453{bottom:557.432935px;}
.y84_c00453{bottom:557.637849px;}
.y85_c00453{bottom:558.757704px;}
.y86_c00453{bottom:559.195053px;}
.y71_c00453{bottom:698.940000px;}
.y72_c00453{bottom:699.337500px;}
.y73_c00453{bottom:699.544500px;}
.y74_c00453{bottom:700.369500px;}
.y75_c00453{bottom:700.879500px;}
.y76_c00453{bottom:701.094000px;}
.y77_c00453{bottom:701.757000px;}
.y78_c00453{bottom:702.576000px;}
.y79_c00453{bottom:702.760500px;}
.y7a_c00453{bottom:703.054500px;}
.y70_c00453{bottom:735.835500px;}
.y6f_c00453{bottom:803.199000px;}
.y64_c00453{bottom:803.986794px;}
.y65_c00453{bottom:804.537792px;}
.y66_c00453{bottom:804.936168px;}
.y67_c00453{bottom:805.868532px;}
.y68_c00453{bottom:806.896032px;}
.y69_c00453{bottom:807.250146px;}
.y6a_c00453{bottom:808.227606px;}
.y6b_c00453{bottom:808.548972px;}
.y6c_c00453{bottom:808.962336px;}
.y6d_c00453{bottom:809.914278px;}
.y6e_c00453{bottom:810.293436px;}
.y58_c00453{bottom:839.908500px;}
.y59_c00453{bottom:840.292962px;}
.y5a_c00453{bottom:840.941574px;}
.y5b_c00453{bottom:842.021898px;}
.y5c_c00453{bottom:843.344772px;}
.y5d_c00453{bottom:843.748188px;}
.y5e_c00453{bottom:844.422252px;}
.y5f_c00453{bottom:845.199600px;}
.y60_c00453{bottom:845.573496px;}
.y61_c00453{bottom:846.338046px;}
.y62_c00453{bottom:846.700944px;}
.y63_c00453{bottom:847.133466px;}
.y39_c00453{bottom:927.828000px;}
.y3a_c00453{bottom:930.397938px;}
.y3b_c00453{bottom:931.026006px;}
.y3c_c00453{bottom:933.957186px;}
.y3d_c00453{bottom:934.599786px;}
.y46_c00453{bottom:936.517398px;}
.y45_c00453{bottom:936.517512px;}
.y52_c00453{bottom:936.517698px;}
.y4f_c00453{bottom:936.517716px;}
.y53_c00453{bottom:936.517866px;}
.y50_c00453{bottom:936.517920px;}
.y4e_c00453{bottom:936.517986px;}
.y57_c00453{bottom:936.517992px;}
.y47_c00453{bottom:936.518034px;}
.y4c_c00453{bottom:936.518076px;}
.y48_c00453{bottom:936.518094px;}
.y51_c00453{bottom:936.518220px;}
.y54_c00453{bottom:936.518250px;}
.y4a_c00453{bottom:936.518310px;}
.y4d_c00453{bottom:936.518346px;}
.y4b_c00453{bottom:936.518478px;}
.y56_c00453{bottom:936.518604px;}
.y49_c00453{bottom:936.518754px;}
.y55_c00453{bottom:936.518850px;}
.y3e_c00453{bottom:937.692246px;}
.y3f_c00453{bottom:938.568240px;}
.y40_c00453{bottom:939.223902px;}
.y41_c00453{bottom:943.262706px;}
.y42_c00453{bottom:944.692470px;}
.y43_c00453{bottom:945.953394px;}
.y44_c00453{bottom:949.089828px;}
.y2a_c00453{bottom:1056.732000px;}
.y2b_c00453{bottom:1057.315434px;}
.y2c_c00453{bottom:1057.996176px;}
.y2d_c00453{bottom:1058.520660px;}
.y2e_c00453{bottom:1058.785134px;}
.y2f_c00453{bottom:1059.703206px;}
.y30_c00453{bottom:1060.119690px;}
.y31_c00453{bottom:1061.180934px;}
.y32_c00453{bottom:1061.563812px;}
.y33_c00453{bottom:1062.147444px;}
.y34_c00453{bottom:1063.042746px;}
.y35_c00453{bottom:1063.573836px;}
.y36_c00453{bottom:1063.791582px;}
.y37_c00453{bottom:1064.017950px;}
.y38_c00453{bottom:1064.756220px;}
.y29_c00453{bottom:1080.000000px;}
.y28_c00453{bottom:1083.378000px;}
.y27_c00453{bottom:1083.510000px;}
.y1a_c00453{bottom:1092.496911px;}
.y1b_c00453{bottom:1093.153302px;}
.y1c_c00453{bottom:1093.636539px;}
.y1d_c00453{bottom:1094.833125px;}
.y1e_c00453{bottom:1095.597033px;}
.y1f_c00453{bottom:1096.040869px;}
.y20_c00453{bottom:1096.488178px;}
.y21_c00453{bottom:1096.906170px;}
.y22_c00453{bottom:1097.397814px;}
.y23_c00453{bottom:1097.745682px;}
.y24_c00453{bottom:1098.555975px;}
.y25_c00453{bottom:1098.928283px;}
.y26_c00453{bottom:1099.695525px;}
.yf_c00453{bottom:1113.480000px;}
.y10_c00453{bottom:1114.390611px;}
.y11_c00453{bottom:1115.248884px;}
.y12_c00453{bottom:1116.330549px;}
.y13_c00453{bottom:1116.684669px;}
.y14_c00453{bottom:1117.492262px;}
.y15_c00453{bottom:1117.782344px;}
.y16_c00453{bottom:1118.000217px;}
.y17_c00453{bottom:1118.301550px;}
.y18_c00453{bottom:1118.606433px;}
.y19_c00453{bottom:1118.816331px;}
.y1_c00453{bottom:1124.776500px;}
.y2_c00453{bottom:1125.313453px;}
.y3_c00453{bottom:1125.681622px;}
.y4_c00453{bottom:1126.993699px;}
.y5_c00453{bottom:1127.769613px;}
.y6_c00453{bottom:1129.082328px;}
.y7_c00453{bottom:1129.831492px;}
.y8_c00453{bottom:1131.093564px;}
.y9_c00453{bottom:1131.651988px;}
.ya_c00453{bottom:1132.406253px;}
.yb_c00453{bottom:1132.937622px;}
.yc_c00453{bottom:1134.479709px;}
.yd_c00453{bottom:1135.597246px;}
.ye_c00453{bottom:1136.040385px;}
.h7_c00453{height:18.000000px;}
.h5_c00453{height:24.000000px;}
.h3_c00453{height:42.003549px;}
.h6_c00453{height:48.000000px;}
.hc_c00453{height:72.000000px;}
.h9_c00453{height:72.028218px;}
.h8_c00453{height:78.005616px;}
.hd_c00453{height:84.000000px;}
.ha_c00453{height:84.032922px;}
.he_c00453{height:96.005808px;}
.h4_c00453{height:96.008112px;}
.hb_c00453{height:102.007344px;}
.h2_c00453{height:102.014738px;}
.h0_c00453{height:1251.450000px;}
.h1_c00453{height:1251.750000px;}
.w1_c00453{width:924.750000px;}
.w0_c00453{width:925.020000px;}
.x0_c00453{left:0.000000px;}
.x1a_c00453{left:38.020077px;}
.x40_c00453{left:42.383622px;}
.x1_c00453{left:50.221500px;}
.x35_c00453{left:54.207000px;}
.x4f_c00453{left:55.536000px;}
.x2_c00453{left:81.807000px;}
.x50_c00453{left:87.574500px;}
.x61_c00453{left:92.340000px;}
.x28_c00453{left:100.056000px;}
.x3_c00453{left:103.464000px;}
.x41_c00453{left:105.857850px;}
.x71_c00453{left:129.493500px;}
.x79_c00453{left:132.570000px;}
.x51_c00453{left:141.625500px;}
.x6a_c00453{left:144.885000px;}
.x36_c00453{left:145.990500px;}
.x29_c00453{left:148.675500px;}
.x1b_c00453{left:151.880504px;}
.x37_c00453{left:168.421500px;}
.x62_c00453{left:174.690000px;}
.x4_c00453{left:180.645000px;}
.x6b_c00453{left:201.574500px;}
.x63_c00453{left:203.580000px;}
.x2a_c00453{left:205.404000px;}
.x7a_c00453{left:211.140000px;}
.x7b_c00453{left:218.430000px;}
.x72_c00453{left:220.204500px;}
.x5_c00453{left:226.287000px;}
.x58_c00453{left:227.305152px;}
.x42_c00453{left:229.836954px;}
.x52_c00453{left:231.652500px;}
.x2b_c00453{left:249.111000px;}
.x64_c00453{left:259.470000px;}
.x43_c00453{left:268.462194px;}
.x1c_c00453{left:271.507164px;}
.x38_c00453{left:273.106500px;}
.x73_c00453{left:275.485500px;}
.x39_c00453{left:296.056500px;}
.x6_c00453{left:303.505500px;}
.x74_c00453{left:306.834000px;}
.x65_c00453{left:308.610000px;}
.x59_c00453{left:320.681268px;}
.x53_c00453{left:341.892000px;}
.x7_c00453{left:347.574000px;}
.xf_c00453{left:349.653000px;}
.x44_c00453{left:351.654378px;}
.x5a_c00453{left:352.816146px;}
.x75_c00453{left:355.938000px;}
.x45_c00453{left:373.802724px;}
.x54_c00453{left:375.510000px;}
.x2c_c00453{left:382.363500px;}
.x1d_c00453{left:392.338383px;}
.x3a_c00453{left:406.501500px;}
.x46_c00453{left:414.588186px;}
.x10_c00453{left:419.700000px;}
.x8_c00453{left:421.813500px;}
.x55_c00453{left:431.682000px;}
.x1e_c00453{left:437.133138px;}
.x5b_c00453{left:441.647208px;}
.x6c_c00453{left:452.382000px;}
.x9_c00453{left:454.662000px;}
.x3b_c00453{left:461.203500px;}
.x66_c00453{left:464.130000px;}
.x2d_c00453{left:470.800500px;}
.x47_c00453{left:472.661172px;}
.x1f_c00453{left:478.980276px;}
.x11_c00453{left:485.721000px;}
.x56_c00453{left:496.461000px;}
.xa_c00453{left:499.030500px;}
.x2e_c00453{left:502.707000px;}
.x76_c00453{left:505.252500px;}
.x5c_c00453{left:508.375500px;}
.x20_c00453{left:528.108687px;}
.xb_c00453{left:530.287500px;}
.x67_c00453{left:541.080000px;}
.x6d_c00453{left:547.161000px;}
.x48_c00453{left:549.101064px;}
.x2f_c00453{left:551.343000px;}
.x21_c00453{left:562.946052px;}
.x12_c00453{left:568.926000px;}
.x57_c00453{left:591.331500px;}
.x5d_c00453{left:594.955044px;}
.x13_c00453{left:596.166000px;}
.x3c_c00453{left:605.446500px;}
.x77_c00453{left:607.057500px;}
.xc_c00453{left:620.998500px;}
.x30_c00453{left:625.951500px;}
.x24_c00453{left:628.020000px;}
.x5e_c00453{left:629.426958px;}
.x49_c00453{left:634.183218px;}
.x25_c00453{left:636.390000px;}
.x22_c00453{left:643.971711px;}
.x78_c00453{left:646.816500px;}
.x5f_c00453{left:655.290000px;}
.x3d_c00453{left:656.509500px;}
.x14_c00453{left:658.288500px;}
.x6e_c00453{left:664.114500px;}
.x68_c00453{left:668.250000px;}
.x31_c00453{left:670.209000px;}
.x4a_c00453{left:675.779310px;}
.x60_c00453{left:677.970000px;}
.x15_c00453{left:680.602500px;}
.x26_c00453{left:683.640000px;}
.xd_c00453{left:686.736000px;}
.x32_c00453{left:688.354500px;}
.x6f_c00453{left:690.565500px;}
.x69_c00453{left:694.710000px;}
.x16_c00453{left:697.362000px;}
.x3e_c00453{left:701.542500px;}
.x27_c00453{left:705.510000px;}
.x33_c00453{left:707.218500px;}
.xe_c00453{left:712.803000px;}
.x17_c00453{left:720.541500px;}
.x4b_c00453{left:728.179344px;}
.x70_c00453{left:732.469500px;}
.x18_c00453{left:743.994000px;}
.x23_c00453{left:757.826138px;}
.x19_c00453{left:760.140000px;}
.x4c_c00453{left:766.534374px;}
.x34_c00453{left:768.741000px;}
.x3f_c00453{left:813.558000px;}
.x4d_c00453{left:815.152968px;}
.x4e_c00453{left:876.196806px;}
@media print{
.v0_c00453{vertical-align:0.000000pt;}
.ls0_c00453{letter-spacing:0.000000pt;}
.ws0_c00453{word-spacing:0.000000pt;}
.fs5_c00453{font-size:16.000000pt;}
.fs3_c00453{font-size:21.333333pt;}
.fs1_c00453{font-size:37.336488pt;}
.fs4_c00453{font-size:42.666667pt;}
.fsa_c00453{font-size:64.000000pt;}
.fs7_c00453{font-size:64.025083pt;}
.fs6_c00453{font-size:69.338325pt;}
.fsb_c00453{font-size:74.666667pt;}
.fs8_c00453{font-size:74.695930pt;}
.fsc_c00453{font-size:85.338496pt;}
.fs2_c00453{font-size:85.340544pt;}
.fs9_c00453{font-size:90.673194pt;}
.fs0_c00453{font-size:90.679767pt;}
.y0_c00453{bottom:0.000000pt;}
.y87_c00453{bottom:489.370667pt;}
.y7b_c00453{bottom:492.004000pt;}
.y7c_c00453{bottom:492.890952pt;}
.y7d_c00453{bottom:493.431477pt;}
.y7e_c00453{bottom:493.737996pt;}
.y7f_c00453{bottom:494.218124pt;}
.y80_c00453{bottom:494.708929pt;}
.y81_c00453{bottom:495.162892pt;}
.y82_c00453{bottom:495.368944pt;}
.y83_c00453{bottom:495.495943pt;}
.y84_c00453{bottom:495.678088pt;}
.y85_c00453{bottom:496.673515pt;}
.y86_c00453{bottom:497.062269pt;}
.y71_c00453{bottom:621.280000pt;}
.y72_c00453{bottom:621.633333pt;}
.y73_c00453{bottom:621.817333pt;}
.y74_c00453{bottom:622.550667pt;}
.y75_c00453{bottom:623.004000pt;}
.y76_c00453{bottom:623.194667pt;}
.y77_c00453{bottom:623.784000pt;}
.y78_c00453{bottom:624.512000pt;}
.y79_c00453{bottom:624.676000pt;}
.y7a_c00453{bottom:624.937333pt;}
.y70_c00453{bottom:654.076000pt;}
.y6f_c00453{bottom:713.954667pt;}
.y64_c00453{bottom:714.654928pt;}
.y65_c00453{bottom:715.144704pt;}
.y66_c00453{bottom:715.498816pt;}
.y67_c00453{bottom:716.327584pt;}
.y68_c00453{bottom:717.240917pt;}
.y69_c00453{bottom:717.555685pt;}
.y6a_c00453{bottom:718.424539pt;}
.y6b_c00453{bottom:718.710197pt;}
.y6c_c00453{bottom:719.077632pt;}
.y6d_c00453{bottom:719.923803pt;}
.y6e_c00453{bottom:720.260832pt;}
.y58_c00453{bottom:746.585333pt;}
.y59_c00453{bottom:746.927077pt;}
.y5a_c00453{bottom:747.503621pt;}
.y5b_c00453{bottom:748.463909pt;}
.y5c_c00453{bottom:749.639797pt;}
.y5d_c00453{bottom:749.998389pt;}
.y5e_c00453{bottom:750.597557pt;}
.y5f_c00453{bottom:751.288533pt;}
.y60_c00453{bottom:751.620885pt;}
.y61_c00453{bottom:752.300485pt;}
.y62_c00453{bottom:752.623061pt;}
.y63_c00453{bottom:753.007525pt;}
.y39_c00453{bottom:824.736000pt;}
.y3a_c00453{bottom:827.020389pt;}
.y3b_c00453{bottom:827.578672pt;}
.y3c_c00453{bottom:830.184165pt;}
.y3d_c00453{bottom:830.755365pt;}
.y46_c00453{bottom:832.459909pt;}
.y45_c00453{bottom:832.460011pt;}
.y52_c00453{bottom:832.460176pt;}
.y4f_c00453{bottom:832.460192pt;}
.y53_c00453{bottom:832.460325pt;}
.y50_c00453{bottom:832.460373pt;}
.y4e_c00453{bottom:832.460432pt;}
.y57_c00453{bottom:832.460437pt;}
.y47_c00453{bottom:832.460475pt;}
.y4c_c00453{bottom:832.460512pt;}
.y48_c00453{bottom:832.460528pt;}
.y51_c00453{bottom:832.460640pt;}
.y54_c00453{bottom:832.460667pt;}
.y4a_c00453{bottom:832.460720pt;}
.y4d_c00453{bottom:832.460752pt;}
.y4b_c00453{bottom:832.460869pt;}
.y56_c00453{bottom:832.460981pt;}
.y49_c00453{bottom:832.461115pt;}
.y55_c00453{bottom:832.461200pt;}
.y3e_c00453{bottom:833.504219pt;}
.y3f_c00453{bottom:834.282880pt;}
.y40_c00453{bottom:834.865691pt;}
.y41_c00453{bottom:838.455739pt;}
.y42_c00453{bottom:839.726640pt;}
.y43_c00453{bottom:840.847461pt;}
.y44_c00453{bottom:843.635403pt;}
.y2a_c00453{bottom:939.317333pt;}
.y2b_c00453{bottom:939.835941pt;}
.y2c_c00453{bottom:940.441045pt;}
.y2d_c00453{bottom:940.907253pt;}
.y2e_c00453{bottom:941.142341pt;}
.y2f_c00453{bottom:941.958405pt;}
.y30_c00453{bottom:942.328613pt;}
.y31_c00453{bottom:943.271941pt;}
.y32_c00453{bottom:943.612277pt;}
.y33_c00453{bottom:944.131061pt;}
.y34_c00453{bottom:944.926885pt;}
.y35_c00453{bottom:945.398965pt;}
.y36_c00453{bottom:945.592517pt;}
.y37_c00453{bottom:945.793733pt;}
.y38_c00453{bottom:946.449973pt;}
.y29_c00453{bottom:960.000000pt;}
.y28_c00453{bottom:963.002667pt;}
.y27_c00453{bottom:963.120000pt;}
.y1a_c00453{bottom:971.108365pt;}
.y1b_c00453{bottom:971.691824pt;}
.y1c_c00453{bottom:972.121368pt;}
.y1d_c00453{bottom:973.185000pt;}
.y1e_c00453{bottom:973.864029pt;}
.y1f_c00453{bottom:974.258551pt;}
.y20_c00453{bottom:974.656159pt;}
.y21_c00453{bottom:975.027707pt;}
.y22_c00453{bottom:975.464724pt;}
.y23_c00453{bottom:975.773940pt;}
.y24_c00453{bottom:976.494200pt;}
.y25_c00453{bottom:976.825140pt;}
.y26_c00453{bottom:977.507133pt;}
.yf_c00453{bottom:989.760000pt;}
.y10_c00453{bottom:990.569432pt;}
.y11_c00453{bottom:991.332341pt;}
.y12_c00453{bottom:992.293821pt;}
.y13_c00453{bottom:992.608595pt;}
.y14_c00453{bottom:993.326455pt;}
.y15_c00453{bottom:993.584305pt;}
.y16_c00453{bottom:993.777971pt;}
.y17_c00453{bottom:994.045823pt;}
.y18_c00453{bottom:994.316829pt;}
.y19_c00453{bottom:994.503405pt;}
.y1_c00453{bottom:999.801333pt;}
.y2_c00453{bottom:1000.278625pt;}
.y3_c00453{bottom:1000.605887pt;}
.y4_c00453{bottom:1001.772177pt;}
.y5_c00453{bottom:1002.461879pt;}
.y6_c00453{bottom:1003.628736pt;}
.y7_c00453{bottom:1004.294660pt;}
.y8_c00453{bottom:1005.416501pt;}
.y9_c00453{bottom:1005.912879pt;}
.ya_c00453{bottom:1006.583336pt;}
.yb_c00453{bottom:1007.055664pt;}
.yc_c00453{bottom:1008.426408pt;}
.yd_c00453{bottom:1009.419775pt;}
.ye_c00453{bottom:1009.813676pt;}
.h7_c00453{height:16.000000pt;}
.h5_c00453{height:21.333333pt;}
.h3_c00453{height:37.336488pt;}
.h6_c00453{height:42.666667pt;}
.hc_c00453{height:64.000000pt;}
.h9_c00453{height:64.025083pt;}
.h8_c00453{height:69.338325pt;}
.hd_c00453{height:74.666667pt;}
.ha_c00453{height:74.695930pt;}
.he_c00453{height:85.338496pt;}
.h4_c00453{height:85.340544pt;}
.hb_c00453{height:90.673194pt;}
.h2_c00453{height:90.679767pt;}
.h0_c00453{height:1112.400000pt;}
.h1_c00453{height:1112.666667pt;}
.w1_c00453{width:822.000000pt;}
.w0_c00453{width:822.240000pt;}
.x0_c00453{left:0.000000pt;}
.x1a_c00453{left:33.795624pt;}
.x40_c00453{left:37.674331pt;}
.x1_c00453{left:44.641333pt;}
.x35_c00453{left:48.184000pt;}
.x4f_c00453{left:49.365333pt;}
.x2_c00453{left:72.717333pt;}
.x50_c00453{left:77.844000pt;}
.x61_c00453{left:82.080000pt;}
.x28_c00453{left:88.938667pt;}
.x3_c00453{left:91.968000pt;}
.x41_c00453{left:94.095867pt;}
.x71_c00453{left:115.105333pt;}
.x79_c00453{left:117.840000pt;}
.x51_c00453{left:125.889333pt;}
.x6a_c00453{left:128.786667pt;}
.x36_c00453{left:129.769333pt;}
.x29_c00453{left:132.156000pt;}
.x1b_c00453{left:135.004892pt;}
.x37_c00453{left:149.708000pt;}
.x62_c00453{left:155.280000pt;}
.x4_c00453{left:160.573333pt;}
.x6b_c00453{left:179.177333pt;}
.x63_c00453{left:180.960000pt;}
.x2a_c00453{left:182.581333pt;}
.x7a_c00453{left:187.680000pt;}
.x7b_c00453{left:194.160000pt;}
.x72_c00453{left:195.737333pt;}
.x5_c00453{left:201.144000pt;}
.x58_c00453{left:202.049024pt;}
.x42_c00453{left:204.299515pt;}
.x52_c00453{left:205.913333pt;}
.x2b_c00453{left:221.432000pt;}
.x64_c00453{left:230.640000pt;}
.x43_c00453{left:238.633061pt;}
.x1c_c00453{left:241.339701pt;}
.x38_c00453{left:242.761333pt;}
.x73_c00453{left:244.876000pt;}
.x39_c00453{left:263.161333pt;}
.x6_c00453{left:269.782667pt;}
.x74_c00453{left:272.741333pt;}
.x65_c00453{left:274.320000pt;}
.x59_c00453{left:285.050016pt;}
.x53_c00453{left:303.904000pt;}
.x7_c00453{left:308.954667pt;}
.xf_c00453{left:310.802667pt;}
.x44_c00453{left:312.581669pt;}
.x5a_c00453{left:313.614352pt;}
.x75_c00453{left:316.389333pt;}
.x45_c00453{left:332.269088pt;}
.x54_c00453{left:333.786667pt;}
.x2c_c00453{left:339.878667pt;}
.x1d_c00453{left:348.745229pt;}
.x3a_c00453{left:361.334667pt;}
.x46_c00453{left:368.522832pt;}
.x10_c00453{left:373.066667pt;}
.x8_c00453{left:374.945333pt;}
.x55_c00453{left:383.717333pt;}
.x1e_c00453{left:388.562789pt;}
.x5b_c00453{left:392.575296pt;}
.x6c_c00453{left:402.117333pt;}
.x9_c00453{left:404.144000pt;}
.x3b_c00453{left:409.958667pt;}
.x66_c00453{left:412.560000pt;}
.x2d_c00453{left:418.489333pt;}
.x47_c00453{left:420.143264pt;}
.x1f_c00453{left:425.760245pt;}
.x11_c00453{left:431.752000pt;}
.x56_c00453{left:441.298667pt;}
.xa_c00453{left:443.582667pt;}
.x2e_c00453{left:446.850667pt;}
.x76_c00453{left:449.113333pt;}
.x5c_c00453{left:451.889333pt;}
.x20_c00453{left:469.429944pt;}
.xb_c00453{left:471.366667pt;}
.x67_c00453{left:480.960000pt;}
.x6d_c00453{left:486.365333pt;}
.x48_c00453{left:488.089835pt;}
.x2f_c00453{left:490.082667pt;}
.x21_c00453{left:500.396491pt;}
.x12_c00453{left:505.712000pt;}
.x57_c00453{left:525.628000pt;}
.x5d_c00453{left:528.848928pt;}
.x13_c00453{left:529.925333pt;}
.x3c_c00453{left:538.174667pt;}
.x77_c00453{left:539.606667pt;}
.xc_c00453{left:551.998667pt;}
.x30_c00453{left:556.401333pt;}
.x24_c00453{left:558.240000pt;}
.x5e_c00453{left:559.490629pt;}
.x49_c00453{left:563.718416pt;}
.x25_c00453{left:565.680000pt;}
.x22_c00453{left:572.419299pt;}
.x78_c00453{left:574.948000pt;}
.x5f_c00453{left:582.480000pt;}
.x3d_c00453{left:583.564000pt;}
.x14_c00453{left:585.145333pt;}
.x6e_c00453{left:590.324000pt;}
.x68_c00453{left:594.000000pt;}
.x31_c00453{left:595.741333pt;}
.x4a_c00453{left:600.692720pt;}
.x60_c00453{left:602.640000pt;}
.x15_c00453{left:604.980000pt;}
.x26_c00453{left:607.680000pt;}
.xd_c00453{left:610.432000pt;}
.x32_c00453{left:611.870667pt;}
.x6f_c00453{left:613.836000pt;}
.x69_c00453{left:617.520000pt;}
.x16_c00453{left:619.877333pt;}
.x3e_c00453{left:623.593333pt;}
.x27_c00453{left:627.120000pt;}
.x33_c00453{left:628.638667pt;}
.xe_c00453{left:633.602667pt;}
.x17_c00453{left:640.481333pt;}
.x4b_c00453{left:647.270528pt;}
.x70_c00453{left:651.084000pt;}
.x18_c00453{left:661.328000pt;}
.x23_c00453{left:673.623233pt;}
.x19_c00453{left:675.680000pt;}
.x4c_c00453{left:681.363888pt;}
.x34_c00453{left:683.325333pt;}
.x3f_c00453{left:723.162667pt;}
.x4d_c00453{left:724.580416pt;}
.x4e_c00453{left:778.841605pt;}
}





/* 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_c00454 {
    display:none;
  }
  .loading-indicator_c00454.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00454 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_c00454 { 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_c00454" -> "#page-container .classname_c00454")
 */
.pf_c00454 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00454 { /* 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_c00454.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00454 { /* 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_c00454 { /* 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_c00454 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00454 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00454 {overflow:visible;}
  }
}
.c_c00454 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00454 { /* 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_c00454:after { /* webkit #35443 */
  content: '';
}
.t_c00454:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00454 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 */
}
.__c00454 { /* 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_c00454 { /* info for Javascript */
  display:none;
}
.l_c00454 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00454 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00454 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00454: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_c00454 {
    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_c00454.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00454.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_c00454 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00454{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00454;src:url('chunks/assets/font_fabf4b590f7fb32aea93ffb2.woff2')format("woff");}.ff1_c00454{font-family:ff1_c00454;line-height:1.000000;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;}
.m164_c00454{transform:matrix(0.100385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100385,0.000000,0.000000,0.250000,0,0);}
.m14b_c00454{transform:matrix(0.103350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103350,0.000000,0.000000,0.250000,0,0);}
.m13e_c00454{transform:matrix(0.144091,0.001585,-0.002750,0.249985,0,0);-ms-transform:matrix(0.144091,0.001585,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.144091,0.001585,-0.002750,0.249985,0,0);}
.m15a_c00454{transform:matrix(0.147635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147635,0.000000,0.000000,0.250000,0,0);}
.m1_c00454{transform:matrix(0.147875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147875,0.000000,0.000000,0.250000,0,0);}
.m13c_c00454{transform:matrix(0.149401,0.001643,-0.002750,0.249985,0,0);-ms-transform:matrix(0.149401,0.001643,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.149401,0.001643,-0.002750,0.249985,0,0);}
.m146_c00454{transform:matrix(0.150710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150710,0.000000,0.000000,0.250000,0,0);}
.m147_c00454{transform:matrix(0.151160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151160,0.000000,0.000000,0.250000,0,0);}
.m149_c00454{transform:matrix(0.152105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152105,0.000000,0.000000,0.250000,0,0);}
.m13b_c00454{transform:matrix(0.156776,0.001725,-0.002750,0.249985,0,0);-ms-transform:matrix(0.156776,0.001725,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.156776,0.001725,-0.002750,0.249985,0,0);}
.m140_c00454{transform:matrix(0.157450,0.001732,-0.002750,0.249985,0,0);-ms-transform:matrix(0.157450,0.001732,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.157450,0.001732,-0.002750,0.249985,0,0);}
.m3_c00454{transform:matrix(0.157645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157645,0.000000,0.000000,0.250000,0,0);}
.m142_c00454{transform:matrix(0.160660,0.001767,-0.002750,0.249985,0,0);-ms-transform:matrix(0.160660,0.001767,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.160660,0.001767,-0.002750,0.249985,0,0);}
.m13f_c00454{transform:matrix(0.163460,0.001798,-0.002750,0.249985,0,0);-ms-transform:matrix(0.163460,0.001798,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.163460,0.001798,-0.002750,0.249985,0,0);}
.m141_c00454{transform:matrix(0.164700,0.001812,-0.002750,0.249985,0,0);-ms-transform:matrix(0.164700,0.001812,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.164700,0.001812,-0.002750,0.249985,0,0);}
.m14e_c00454{transform:matrix(0.165290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165290,0.000000,0.000000,0.250000,0,0);}
.m16e_c00454{transform:matrix(0.167725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167725,0.000000,0.000000,0.250000,0,0);}
.m47_c00454{transform:matrix(0.168538,-0.000843,0.001250,0.249997,0,0);-ms-transform:matrix(0.168538,-0.000843,0.001250,0.249997,0,0);-webkit-transform:matrix(0.168538,-0.000843,0.001250,0.249997,0,0);}
.m14c_c00454{transform:matrix(0.169010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169010,0.000000,0.000000,0.250000,0,0);}
.m88_c00454{transform:matrix(0.170052,-0.001020,0.001500,0.249996,0,0);-ms-transform:matrix(0.170052,-0.001020,0.001500,0.249996,0,0);-webkit-transform:matrix(0.170052,-0.001020,0.001500,0.249996,0,0);}
.m14d_c00454{transform:matrix(0.171635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171635,0.000000,0.000000,0.250000,0,0);}
.m143_c00454{transform:matrix(0.172305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172305,0.000000,0.000000,0.250000,0,0);}
.m14a_c00454{transform:matrix(0.172885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172885,0.000000,0.000000,0.250000,0,0);}
.m144_c00454{transform:matrix(0.172975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172975,0.000000,0.000000,0.250000,0,0);}
.m43_c00454{transform:matrix(0.173603,-0.000868,0.001250,0.249997,0,0);-ms-transform:matrix(0.173603,-0.000868,0.001250,0.249997,0,0);-webkit-transform:matrix(0.173603,-0.000868,0.001250,0.249997,0,0);}
.m8c_c00454{transform:matrix(0.173717,-0.001042,0.001500,0.249996,0,0);-ms-transform:matrix(0.173717,-0.001042,0.001500,0.249996,0,0);-webkit-transform:matrix(0.173717,-0.001042,0.001500,0.249996,0,0);}
.m85_c00454{transform:matrix(0.174442,-0.001047,0.001500,0.249996,0,0);-ms-transform:matrix(0.174442,-0.001047,0.001500,0.249996,0,0);-webkit-transform:matrix(0.174442,-0.001047,0.001500,0.249996,0,0);}
.m145_c00454{transform:matrix(0.175560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175560,0.000000,0.000000,0.250000,0,0);}
.m148_c00454{transform:matrix(0.177075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177075,0.000000,0.000000,0.250000,0,0);}
.mfc_c00454{transform:matrix(0.178049,-0.004273,0.005998,0.249928,0,0);-ms-transform:matrix(0.178049,-0.004273,0.005998,0.249928,0,0);-webkit-transform:matrix(0.178049,-0.004273,0.005998,0.249928,0,0);}
.m4d_c00454{transform:matrix(0.178783,-0.000894,0.001250,0.249997,0,0);-ms-transform:matrix(0.178783,-0.000894,0.001250,0.249997,0,0);-webkit-transform:matrix(0.178783,-0.000894,0.001250,0.249997,0,0);}
.m83_c00454{transform:matrix(0.180622,-0.001084,0.001500,0.249996,0,0);-ms-transform:matrix(0.180622,-0.001084,0.001500,0.249996,0,0);-webkit-transform:matrix(0.180622,-0.001084,0.001500,0.249996,0,0);}
.m7b_c00454{transform:matrix(0.180707,-0.001084,0.001500,0.249996,0,0);-ms-transform:matrix(0.180707,-0.001084,0.001500,0.249996,0,0);-webkit-transform:matrix(0.180707,-0.001084,0.001500,0.249996,0,0);}
.m168_c00454{transform:matrix(0.181395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181395,0.000000,0.000000,0.250000,0,0);}
.m2e_c00454{transform:matrix(0.181599,-0.001453,0.002000,0.249992,0,0);-ms-transform:matrix(0.181599,-0.001453,0.002000,0.249992,0,0);-webkit-transform:matrix(0.181599,-0.001453,0.002000,0.249992,0,0);}
.m7c_c00454{transform:matrix(0.181602,-0.001090,0.001500,0.249996,0,0);-ms-transform:matrix(0.181602,-0.001090,0.001500,0.249996,0,0);-webkit-transform:matrix(0.181602,-0.001090,0.001500,0.249996,0,0);}
.m7f_c00454{transform:matrix(0.181942,-0.001092,0.001500,0.249996,0,0);-ms-transform:matrix(0.181942,-0.001092,0.001500,0.249996,0,0);-webkit-transform:matrix(0.181942,-0.001092,0.001500,0.249996,0,0);}
.m86_c00454{transform:matrix(0.182057,-0.001092,0.001500,0.249996,0,0);-ms-transform:matrix(0.182057,-0.001092,0.001500,0.249996,0,0);-webkit-transform:matrix(0.182057,-0.001092,0.001500,0.249996,0,0);}
.m154_c00454{transform:matrix(0.182100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182100,0.000000,0.000000,0.250000,0,0);}
.m30_c00454{transform:matrix(0.183044,-0.001464,0.002000,0.249992,0,0);-ms-transform:matrix(0.183044,-0.001464,0.002000,0.249992,0,0);-webkit-transform:matrix(0.183044,-0.001464,0.002000,0.249992,0,0);}
.m89_c00454{transform:matrix(0.183067,-0.001098,0.001500,0.249996,0,0);-ms-transform:matrix(0.183067,-0.001098,0.001500,0.249996,0,0);-webkit-transform:matrix(0.183067,-0.001098,0.001500,0.249996,0,0);}
.m8d_c00454{transform:matrix(0.183642,-0.001102,0.001500,0.249996,0,0);-ms-transform:matrix(0.183642,-0.001102,0.001500,0.249996,0,0);-webkit-transform:matrix(0.183642,-0.001102,0.001500,0.249996,0,0);}
.m153_c00454{transform:matrix(0.184600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184600,0.000000,0.000000,0.250000,0,0);}
.m156_c00454{transform:matrix(0.184715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184715,0.000000,0.000000,0.250000,0,0);}
.m139_c00454{transform:matrix(0.185484,0.002040,-0.002750,0.249985,0,0);-ms-transform:matrix(0.185484,0.002040,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.185484,0.002040,-0.002750,0.249985,0,0);}
.m2d_c00454{transform:matrix(0.186069,-0.001489,0.002000,0.249992,0,0);-ms-transform:matrix(0.186069,-0.001489,0.002000,0.249992,0,0);-webkit-transform:matrix(0.186069,-0.001489,0.002000,0.249992,0,0);}
.mc7_c00454{transform:matrix(0.187115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187115,0.000000,0.000000,0.250000,0,0);}
.mc2_c00454{transform:matrix(0.187325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187325,0.000000,0.000000,0.250000,0,0);}
.m49_c00454{transform:matrix(0.188248,-0.000941,0.001250,0.249997,0,0);-ms-transform:matrix(0.188248,-0.000941,0.001250,0.249997,0,0);-webkit-transform:matrix(0.188248,-0.000941,0.001250,0.249997,0,0);}
.m82_c00454{transform:matrix(0.188732,-0.001132,0.001500,0.249996,0,0);-ms-transform:matrix(0.188732,-0.001132,0.001500,0.249996,0,0);-webkit-transform:matrix(0.188732,-0.001132,0.001500,0.249996,0,0);}
.m155_c00454{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m45_c00454{transform:matrix(0.190188,-0.000951,0.001250,0.249997,0,0);-ms-transform:matrix(0.190188,-0.000951,0.001250,0.249997,0,0);-webkit-transform:matrix(0.190188,-0.000951,0.001250,0.249997,0,0);}
.m13d_c00454{transform:matrix(0.190938,0.002100,-0.002750,0.249985,0,0);-ms-transform:matrix(0.190938,0.002100,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.190938,0.002100,-0.002750,0.249985,0,0);}
.m2a_c00454{transform:matrix(0.191649,-0.001533,0.002000,0.249992,0,0);-ms-transform:matrix(0.191649,-0.001533,0.002000,0.249992,0,0);-webkit-transform:matrix(0.191649,-0.001533,0.002000,0.249992,0,0);}
.m8b_c00454{transform:matrix(0.191917,-0.001151,0.001500,0.249996,0,0);-ms-transform:matrix(0.191917,-0.001151,0.001500,0.249996,0,0);-webkit-transform:matrix(0.191917,-0.001151,0.001500,0.249996,0,0);}
.m13a_c00454{transform:matrix(0.192983,0.002123,-0.002750,0.249985,0,0);-ms-transform:matrix(0.192983,0.002123,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.192983,0.002123,-0.002750,0.249985,0,0);}
.md4_c00454{transform:matrix(0.193155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193155,0.000000,0.000000,0.250000,0,0);}
.mce_c00454{transform:matrix(0.193770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193770,0.000000,0.000000,0.250000,0,0);}
.m80_c00454{transform:matrix(0.194192,-0.001165,0.001500,0.249996,0,0);-ms-transform:matrix(0.194192,-0.001165,0.001500,0.249996,0,0);-webkit-transform:matrix(0.194192,-0.001165,0.001500,0.249996,0,0);}
.m29_c00454{transform:matrix(0.194694,-0.001558,0.002000,0.249992,0,0);-ms-transform:matrix(0.194694,-0.001558,0.002000,0.249992,0,0);-webkit-transform:matrix(0.194694,-0.001558,0.002000,0.249992,0,0);}
.m17_c00454{transform:matrix(0.194934,-0.001559,0.002000,0.249992,0,0);-ms-transform:matrix(0.194934,-0.001559,0.002000,0.249992,0,0);-webkit-transform:matrix(0.194934,-0.001559,0.002000,0.249992,0,0);}
.mfa_c00454{transform:matrix(0.194940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194940,0.000000,0.000000,0.250000,0,0);}
.m9b_c00454{transform:matrix(0.195376,-0.001172,0.001500,0.249996,0,0);-ms-transform:matrix(0.195376,-0.001172,0.001500,0.249996,0,0);-webkit-transform:matrix(0.195376,-0.001172,0.001500,0.249996,0,0);}
.m167_c00454{transform:matrix(0.195600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195600,0.000000,0.000000,0.250000,0,0);}
.m150_c00454{transform:matrix(0.196055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196055,0.000000,0.000000,0.250000,0,0);}
.m11c_c00454{transform:matrix(0.196113,0.002157,-0.002750,0.249985,0,0);-ms-transform:matrix(0.196113,0.002157,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.196113,0.002157,-0.002750,0.249985,0,0);}
.m162_c00454{transform:matrix(0.196355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196355,0.000000,0.000000,0.250000,0,0);}
.m79_c00454{transform:matrix(0.196361,-0.001178,0.001500,0.249996,0,0);-ms-transform:matrix(0.196361,-0.001178,0.001500,0.249996,0,0);-webkit-transform:matrix(0.196361,-0.001178,0.001500,0.249996,0,0);}
.m116_c00454{transform:matrix(0.197318,0.002170,-0.002750,0.249985,0,0);-ms-transform:matrix(0.197318,0.002170,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.197318,0.002170,-0.002750,0.249985,0,0);}
.m165_c00454{transform:matrix(0.197410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197410,0.000000,0.000000,0.250000,0,0);}
.m4b_c00454{transform:matrix(0.197513,-0.000988,0.001250,0.249997,0,0);-ms-transform:matrix(0.197513,-0.000988,0.001250,0.249997,0,0);-webkit-transform:matrix(0.197513,-0.000988,0.001250,0.249997,0,0);}
.m16c_c00454{transform:matrix(0.197775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197775,0.000000,0.000000,0.250000,0,0);}
.m48_c00454{transform:matrix(0.197783,-0.000989,0.001250,0.249997,0,0);-ms-transform:matrix(0.197783,-0.000989,0.001250,0.249997,0,0);-webkit-transform:matrix(0.197783,-0.000989,0.001250,0.249997,0,0);}
.md0_c00454{transform:matrix(0.197910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197910,0.000000,0.000000,0.250000,0,0);}
.m159_c00454{transform:matrix(0.198235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198235,0.000000,0.000000,0.250000,0,0);}
.mca_c00454{transform:matrix(0.198410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198410,0.000000,0.000000,0.250000,0,0);}
.m8f_c00454{transform:matrix(0.198731,-0.001192,0.001500,0.249996,0,0);-ms-transform:matrix(0.198731,-0.001192,0.001500,0.249996,0,0);-webkit-transform:matrix(0.198731,-0.001192,0.001500,0.249996,0,0);}
.m78_c00454{transform:matrix(0.199076,-0.001194,0.001500,0.249996,0,0);-ms-transform:matrix(0.199076,-0.001194,0.001500,0.249996,0,0);-webkit-transform:matrix(0.199076,-0.001194,0.001500,0.249996,0,0);}
.mfe_c00454{transform:matrix(0.199173,-0.004780,0.005998,0.249928,0,0);-ms-transform:matrix(0.199173,-0.004780,0.005998,0.249928,0,0);-webkit-transform:matrix(0.199173,-0.004780,0.005998,0.249928,0,0);}
.m81_c00454{transform:matrix(0.199361,-0.001196,0.001500,0.249996,0,0);-ms-transform:matrix(0.199361,-0.001196,0.001500,0.249996,0,0);-webkit-transform:matrix(0.199361,-0.001196,0.001500,0.249996,0,0);}
.m16d_c00454{transform:matrix(0.199525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199525,0.000000,0.000000,0.250000,0,0);}
.m46_c00454{transform:matrix(0.199568,-0.000998,0.001250,0.249997,0,0);-ms-transform:matrix(0.199568,-0.000998,0.001250,0.249997,0,0);-webkit-transform:matrix(0.199568,-0.000998,0.001250,0.249997,0,0);}
.m77_c00454{transform:matrix(0.199981,-0.001200,0.001500,0.249996,0,0);-ms-transform:matrix(0.199981,-0.001200,0.001500,0.249996,0,0);-webkit-transform:matrix(0.199981,-0.001200,0.001500,0.249996,0,0);}
.m131_c00454{transform:matrix(0.200758,0.002208,-0.002750,0.249985,0,0);-ms-transform:matrix(0.200758,0.002208,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.200758,0.002208,-0.002750,0.249985,0,0);}
.m18_c00454{transform:matrix(0.200874,-0.001607,0.002000,0.249992,0,0);-ms-transform:matrix(0.200874,-0.001607,0.002000,0.249992,0,0);-webkit-transform:matrix(0.200874,-0.001607,0.002000,0.249992,0,0);}
.me2_c00454{transform:matrix(0.201245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201245,0.000000,0.000000,0.250000,0,0);}
.m16b_c00454{transform:matrix(0.201505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201505,0.000000,0.000000,0.250000,0,0);}
.m158_c00454{transform:matrix(0.201690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201690,0.000000,0.000000,0.250000,0,0);}
.m33_c00454{transform:matrix(0.202274,-0.001618,0.002000,0.249992,0,0);-ms-transform:matrix(0.202274,-0.001618,0.002000,0.249992,0,0);-webkit-transform:matrix(0.202274,-0.001618,0.002000,0.249992,0,0);}
.m8e_c00454{transform:matrix(0.202431,-0.001215,0.001500,0.249996,0,0);-ms-transform:matrix(0.202431,-0.001215,0.001500,0.249996,0,0);-webkit-transform:matrix(0.202431,-0.001215,0.001500,0.249996,0,0);}
.mc3_c00454{transform:matrix(0.203650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203650,0.000000,0.000000,0.250000,0,0);}
.m4c_c00454{transform:matrix(0.203697,-0.001018,0.001250,0.249997,0,0);-ms-transform:matrix(0.203697,-0.001018,0.001250,0.249997,0,0);-webkit-transform:matrix(0.203697,-0.001018,0.001250,0.249997,0,0);}
.m1d_c00454{transform:matrix(0.203798,-0.001630,0.002000,0.249992,0,0);-ms-transform:matrix(0.203798,-0.001630,0.002000,0.249992,0,0);-webkit-transform:matrix(0.203798,-0.001630,0.002000,0.249992,0,0);}
.m84_c00454{transform:matrix(0.204856,-0.001229,0.001500,0.249996,0,0);-ms-transform:matrix(0.204856,-0.001229,0.001500,0.249996,0,0);-webkit-transform:matrix(0.204856,-0.001229,0.001500,0.249996,0,0);}
.m151_c00454{transform:matrix(0.205010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205010,0.000000,0.000000,0.250000,0,0);}
.m44_c00454{transform:matrix(0.205817,-0.001029,0.001250,0.249997,0,0);-ms-transform:matrix(0.205817,-0.001029,0.001250,0.249997,0,0);-webkit-transform:matrix(0.205817,-0.001029,0.001250,0.249997,0,0);}
.m19_c00454{transform:matrix(0.205838,-0.001647,0.002000,0.249992,0,0);-ms-transform:matrix(0.205838,-0.001647,0.002000,0.249992,0,0);-webkit-transform:matrix(0.205838,-0.001647,0.002000,0.249992,0,0);}
.m36_c00454{transform:matrix(0.206092,-0.001030,0.001250,0.249997,0,0);-ms-transform:matrix(0.206092,-0.001030,0.001250,0.249997,0,0);-webkit-transform:matrix(0.206092,-0.001030,0.001250,0.249997,0,0);}
.m7d_c00454{transform:matrix(0.206316,-0.001238,0.001500,0.249996,0,0);-ms-transform:matrix(0.206316,-0.001238,0.001500,0.249996,0,0);-webkit-transform:matrix(0.206316,-0.001238,0.001500,0.249996,0,0);}
.m13_c00454{transform:matrix(0.206563,-0.001653,0.002000,0.249992,0,0);-ms-transform:matrix(0.206563,-0.001653,0.002000,0.249992,0,0);-webkit-transform:matrix(0.206563,-0.001653,0.002000,0.249992,0,0);}
.m152_c00454{transform:matrix(0.207195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207195,0.000000,0.000000,0.250000,0,0);}
.m2f_c00454{transform:matrix(0.207293,-0.001658,0.002000,0.249992,0,0);-ms-transform:matrix(0.207293,-0.001658,0.002000,0.249992,0,0);-webkit-transform:matrix(0.207293,-0.001658,0.002000,0.249992,0,0);}
.m157_c00454{transform:matrix(0.207465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207465,0.000000,0.000000,0.250000,0,0);}
.m14f_c00454{transform:matrix(0.207770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207770,0.000000,0.000000,0.250000,0,0);}
.m8a_c00454{transform:matrix(0.207811,-0.001247,0.001500,0.249996,0,0);-ms-transform:matrix(0.207811,-0.001247,0.001500,0.249996,0,0);-webkit-transform:matrix(0.207811,-0.001247,0.001500,0.249996,0,0);}
.m54_c00454{transform:matrix(0.208012,-0.001040,0.001250,0.249997,0,0);-ms-transform:matrix(0.208012,-0.001040,0.001250,0.249997,0,0);-webkit-transform:matrix(0.208012,-0.001040,0.001250,0.249997,0,0);}
.m31_c00454{transform:matrix(0.208578,-0.001669,0.002000,0.249992,0,0);-ms-transform:matrix(0.208578,-0.001669,0.002000,0.249992,0,0);-webkit-transform:matrix(0.208578,-0.001669,0.002000,0.249992,0,0);}
.m34_c00454{transform:matrix(0.208823,-0.001671,0.002000,0.249992,0,0);-ms-transform:matrix(0.208823,-0.001671,0.002000,0.249992,0,0);-webkit-transform:matrix(0.208823,-0.001671,0.002000,0.249992,0,0);}
.m9d_c00454{transform:matrix(0.209931,-0.001260,0.001500,0.249996,0,0);-ms-transform:matrix(0.209931,-0.001260,0.001500,0.249996,0,0);-webkit-transform:matrix(0.209931,-0.001260,0.001500,0.249996,0,0);}
.mde_c00454{transform:matrix(0.210200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210200,0.000000,0.000000,0.250000,0,0);}
.m87_c00454{transform:matrix(0.210951,-0.001266,0.001500,0.249996,0,0);-ms-transform:matrix(0.210951,-0.001266,0.001500,0.249996,0,0);-webkit-transform:matrix(0.210951,-0.001266,0.001500,0.249996,0,0);}
.m12_c00454{transform:matrix(0.211478,-0.001692,0.002000,0.249992,0,0);-ms-transform:matrix(0.211478,-0.001692,0.002000,0.249992,0,0);-webkit-transform:matrix(0.211478,-0.001692,0.002000,0.249992,0,0);}
.m35_c00454{transform:matrix(0.211803,-0.001694,0.002000,0.249992,0,0);-ms-transform:matrix(0.211803,-0.001694,0.002000,0.249992,0,0);-webkit-transform:matrix(0.211803,-0.001694,0.002000,0.249992,0,0);}
.md9_c00454{transform:matrix(0.213120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213120,0.000000,0.000000,0.250000,0,0);}
.ma3_c00454{transform:matrix(0.213131,-0.001279,0.001500,0.249996,0,0);-ms-transform:matrix(0.213131,-0.001279,0.001500,0.249996,0,0);-webkit-transform:matrix(0.213131,-0.001279,0.001500,0.249996,0,0);}
.ma1_c00454{transform:matrix(0.213801,-0.001283,0.001500,0.249996,0,0);-ms-transform:matrix(0.213801,-0.001283,0.001500,0.249996,0,0);-webkit-transform:matrix(0.213801,-0.001283,0.001500,0.249996,0,0);}
.m7a_c00454{transform:matrix(0.213836,-0.001283,0.001500,0.249996,0,0);-ms-transform:matrix(0.213836,-0.001283,0.001500,0.249996,0,0);-webkit-transform:matrix(0.213836,-0.001283,0.001500,0.249996,0,0);}
.m119_c00454{transform:matrix(0.213972,0.002354,-0.002750,0.249985,0,0);-ms-transform:matrix(0.213972,0.002354,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.213972,0.002354,-0.002750,0.249985,0,0);}
.mc5_c00454{transform:matrix(0.213985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213985,0.000000,0.000000,0.250000,0,0);}
.m135_c00454{transform:matrix(0.214402,0.002358,-0.002750,0.249985,0,0);-ms-transform:matrix(0.214402,0.002358,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.214402,0.002358,-0.002750,0.249985,0,0);}
.m4e_c00454{transform:matrix(0.214552,-0.001073,0.001250,0.249997,0,0);-ms-transform:matrix(0.214552,-0.001073,0.001250,0.249997,0,0);-webkit-transform:matrix(0.214552,-0.001073,0.001250,0.249997,0,0);}
.mcb_c00454{transform:matrix(0.214620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214620,0.000000,0.000000,0.250000,0,0);}
.m3c_c00454{transform:matrix(0.214697,-0.001073,0.001250,0.249997,0,0);-ms-transform:matrix(0.214697,-0.001073,0.001250,0.249997,0,0);-webkit-transform:matrix(0.214697,-0.001073,0.001250,0.249997,0,0);}
.m32_c00454{transform:matrix(0.215128,-0.001721,0.002000,0.249992,0,0);-ms-transform:matrix(0.215128,-0.001721,0.002000,0.249992,0,0);-webkit-transform:matrix(0.215128,-0.001721,0.002000,0.249992,0,0);}
.m160_c00454{transform:matrix(0.215150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215150,0.000000,0.000000,0.250000,0,0);}
.m76_c00454{transform:matrix(0.215481,-0.001293,0.001500,0.249996,0,0);-ms-transform:matrix(0.215481,-0.001293,0.001500,0.249996,0,0);-webkit-transform:matrix(0.215481,-0.001293,0.001500,0.249996,0,0);}
.mcd_c00454{transform:matrix(0.216005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216005,0.000000,0.000000,0.250000,0,0);}
.m11b_c00454{transform:matrix(0.216087,0.002377,-0.002750,0.249985,0,0);-ms-transform:matrix(0.216087,0.002377,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.216087,0.002377,-0.002750,0.249985,0,0);}
.m4a_c00454{transform:matrix(0.216137,-0.001081,0.001250,0.249997,0,0);-ms-transform:matrix(0.216137,-0.001081,0.001250,0.249997,0,0);-webkit-transform:matrix(0.216137,-0.001081,0.001250,0.249997,0,0);}
.m15b_c00454{transform:matrix(0.216335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216335,0.000000,0.000000,0.250000,0,0);}
.m102_c00454{transform:matrix(0.216957,0.002387,-0.002750,0.249985,0,0);-ms-transform:matrix(0.216957,0.002387,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.216957,0.002387,-0.002750,0.249985,0,0);}
.me3_c00454{transform:matrix(0.217200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217200,0.000000,0.000000,0.250000,0,0);}
.m61_c00454{transform:matrix(0.217497,-0.001087,0.001250,0.249997,0,0);-ms-transform:matrix(0.217497,-0.001087,0.001250,0.249997,0,0);-webkit-transform:matrix(0.217497,-0.001087,0.001250,0.249997,0,0);}
.m2c_c00454{transform:matrix(0.217603,-0.001741,0.002000,0.249992,0,0);-ms-transform:matrix(0.217603,-0.001741,0.002000,0.249992,0,0);-webkit-transform:matrix(0.217603,-0.001741,0.002000,0.249992,0,0);}
.mfb_c00454{transform:matrix(0.218430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218430,0.000000,0.000000,0.250000,0,0);}
.m118_c00454{transform:matrix(0.218447,0.002403,-0.002750,0.249985,0,0);-ms-transform:matrix(0.218447,0.002403,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.218447,0.002403,-0.002750,0.249985,0,0);}
.md1_c00454{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00454{transform:matrix(0.218833,-0.001751,0.002000,0.249992,0,0);-ms-transform:matrix(0.218833,-0.001751,0.002000,0.249992,0,0);-webkit-transform:matrix(0.218833,-0.001751,0.002000,0.249992,0,0);}
.mb0_c00454{transform:matrix(0.218936,-0.001314,0.001500,0.249996,0,0);-ms-transform:matrix(0.218936,-0.001314,0.001500,0.249996,0,0);-webkit-transform:matrix(0.218936,-0.001314,0.001500,0.249996,0,0);}
.m15_c00454{transform:matrix(0.219473,-0.001756,0.002000,0.249992,0,0);-ms-transform:matrix(0.219473,-0.001756,0.002000,0.249992,0,0);-webkit-transform:matrix(0.219473,-0.001756,0.002000,0.249992,0,0);}
.ma5_c00454{transform:matrix(0.219531,-0.001317,0.001500,0.249996,0,0);-ms-transform:matrix(0.219531,-0.001317,0.001500,0.249996,0,0);-webkit-transform:matrix(0.219531,-0.001317,0.001500,0.249996,0,0);}
.mfd_c00454{transform:matrix(0.219607,-0.005271,0.005998,0.249928,0,0);-ms-transform:matrix(0.219607,-0.005271,0.005998,0.249928,0,0);-webkit-transform:matrix(0.219607,-0.005271,0.005998,0.249928,0,0);}
.mcc_c00454{transform:matrix(0.219610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219610,0.000000,0.000000,0.250000,0,0);}
.mcf_c00454{transform:matrix(0.219645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219645,0.000000,0.000000,0.250000,0,0);}
.m15c_c00454{transform:matrix(0.219670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219670,0.000000,0.000000,0.250000,0,0);}
.md2_c00454{transform:matrix(0.219685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219685,0.000000,0.000000,0.250000,0,0);}
.md_c00454{transform:matrix(0.220223,-0.001762,0.002000,0.249992,0,0);-ms-transform:matrix(0.220223,-0.001762,0.002000,0.249992,0,0);-webkit-transform:matrix(0.220223,-0.001762,0.002000,0.249992,0,0);}
.m117_c00454{transform:matrix(0.220242,0.002423,-0.002750,0.249985,0,0);-ms-transform:matrix(0.220242,0.002423,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.220242,0.002423,-0.002750,0.249985,0,0);}
.m50_c00454{transform:matrix(0.220827,-0.001104,0.001250,0.249997,0,0);-ms-transform:matrix(0.220827,-0.001104,0.001250,0.249997,0,0);-webkit-transform:matrix(0.220827,-0.001104,0.001250,0.249997,0,0);}
.me5_c00454{transform:matrix(0.220880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220880,0.000000,0.000000,0.250000,0,0);}
.m37_c00454{transform:matrix(0.220887,-0.001104,0.001250,0.249997,0,0);-ms-transform:matrix(0.220887,-0.001104,0.001250,0.249997,0,0);-webkit-transform:matrix(0.220887,-0.001104,0.001250,0.249997,0,0);}
.m90_c00454{transform:matrix(0.221201,-0.001327,0.001500,0.249996,0,0);-ms-transform:matrix(0.221201,-0.001327,0.001500,0.249996,0,0);-webkit-transform:matrix(0.221201,-0.001327,0.001500,0.249996,0,0);}
.mf4_c00454{transform:matrix(0.221415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221415,0.000000,0.000000,0.250000,0,0);}
.md7_c00454{transform:matrix(0.221670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221670,0.000000,0.000000,0.250000,0,0);}
.m42_c00454{transform:matrix(0.221677,-0.001108,0.001250,0.249997,0,0);-ms-transform:matrix(0.221677,-0.001108,0.001250,0.249997,0,0);-webkit-transform:matrix(0.221677,-0.001108,0.001250,0.249997,0,0);}
.mc9_c00454{transform:matrix(0.222040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222040,0.000000,0.000000,0.250000,0,0);}
.m114_c00454{transform:matrix(0.222182,0.002444,-0.002750,0.249985,0,0);-ms-transform:matrix(0.222182,0.002444,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.222182,0.002444,-0.002750,0.249985,0,0);}
.mf8_c00454{transform:matrix(0.222240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222240,0.000000,0.000000,0.250000,0,0);}
.ma8_c00454{transform:matrix(0.222486,-0.001335,0.001500,0.249996,0,0);-ms-transform:matrix(0.222486,-0.001335,0.001500,0.249996,0,0);-webkit-transform:matrix(0.222486,-0.001335,0.001500,0.249996,0,0);}
.m40_c00454{transform:matrix(0.222842,-0.001114,0.001250,0.249997,0,0);-ms-transform:matrix(0.222842,-0.001114,0.001250,0.249997,0,0);-webkit-transform:matrix(0.222842,-0.001114,0.001250,0.249997,0,0);}
.m11f_c00454{transform:matrix(0.223256,0.002456,-0.002750,0.249985,0,0);-ms-transform:matrix(0.223256,0.002456,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.223256,0.002456,-0.002750,0.249985,0,0);}
.md5_c00454{transform:matrix(0.223275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223275,0.000000,0.000000,0.250000,0,0);}
.m9f_c00454{transform:matrix(0.223311,-0.001340,0.001500,0.249996,0,0);-ms-transform:matrix(0.223311,-0.001340,0.001500,0.249996,0,0);-webkit-transform:matrix(0.223311,-0.001340,0.001500,0.249996,0,0);}
.m3a_c00454{transform:matrix(0.224187,-0.001121,0.001250,0.249997,0,0);-ms-transform:matrix(0.224187,-0.001121,0.001250,0.249997,0,0);-webkit-transform:matrix(0.224187,-0.001121,0.001250,0.249997,0,0);}
.m11d_c00454{transform:matrix(0.224966,0.002475,-0.002750,0.249985,0,0);-ms-transform:matrix(0.224966,0.002475,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.224966,0.002475,-0.002750,0.249985,0,0);}
.m105_c00454{transform:matrix(0.224986,0.002475,-0.002750,0.249985,0,0);-ms-transform:matrix(0.224986,0.002475,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.224986,0.002475,-0.002750,0.249985,0,0);}
.mad_c00454{transform:matrix(0.226021,-0.001356,0.001500,0.249996,0,0);-ms-transform:matrix(0.226021,-0.001356,0.001500,0.249996,0,0);-webkit-transform:matrix(0.226021,-0.001356,0.001500,0.249996,0,0);}
.mb2_c00454{transform:matrix(0.226041,-0.001356,0.001500,0.249996,0,0);-ms-transform:matrix(0.226041,-0.001356,0.001500,0.249996,0,0);-webkit-transform:matrix(0.226041,-0.001356,0.001500,0.249996,0,0);}
.m12d_c00454{transform:matrix(0.226051,0.002487,-0.002750,0.249985,0,0);-ms-transform:matrix(0.226051,0.002487,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.226051,0.002487,-0.002750,0.249985,0,0);}
.mf2_c00454{transform:matrix(0.226625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226625,0.000000,0.000000,0.250000,0,0);}
.m1a_c00454{transform:matrix(0.226958,-0.001816,0.002000,0.249992,0,0);-ms-transform:matrix(0.226958,-0.001816,0.002000,0.249992,0,0);-webkit-transform:matrix(0.226958,-0.001816,0.002000,0.249992,0,0);}
.m94_c00454{transform:matrix(0.227426,-0.001365,0.001500,0.249996,0,0);-ms-transform:matrix(0.227426,-0.001365,0.001500,0.249996,0,0);-webkit-transform:matrix(0.227426,-0.001365,0.001500,0.249996,0,0);}
.mc1_c00454{transform:matrix(0.227575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227575,0.000000,0.000000,0.250000,0,0);}
.mdb_c00454{transform:matrix(0.228040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228040,0.000000,0.000000,0.250000,0,0);}
.m5_c00454{transform:matrix(0.228153,-0.001825,0.002000,0.249992,0,0);-ms-transform:matrix(0.228153,-0.001825,0.002000,0.249992,0,0);-webkit-transform:matrix(0.228153,-0.001825,0.002000,0.249992,0,0);}
.me4_c00454{transform:matrix(0.228215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228215,0.000000,0.000000,0.250000,0,0);}
.mb4_c00454{transform:matrix(0.228626,-0.001372,0.001500,0.249996,0,0);-ms-transform:matrix(0.228626,-0.001372,0.001500,0.249996,0,0);-webkit-transform:matrix(0.228626,-0.001372,0.001500,0.249996,0,0);}
.m115_c00454{transform:matrix(0.228686,0.002516,-0.002750,0.249985,0,0);-ms-transform:matrix(0.228686,0.002516,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.228686,0.002516,-0.002750,0.249985,0,0);}
.mb_c00454{transform:matrix(0.228808,-0.001830,0.002000,0.249992,0,0);-ms-transform:matrix(0.228808,-0.001830,0.002000,0.249992,0,0);-webkit-transform:matrix(0.228808,-0.001830,0.002000,0.249992,0,0);}
.m67_c00454{transform:matrix(0.228812,-0.001144,0.001250,0.249997,0,0);-ms-transform:matrix(0.228812,-0.001144,0.001250,0.249997,0,0);-webkit-transform:matrix(0.228812,-0.001144,0.001250,0.249997,0,0);}
.m1b_c00454{transform:matrix(0.228888,-0.001831,0.002000,0.249992,0,0);-ms-transform:matrix(0.228888,-0.001831,0.002000,0.249992,0,0);-webkit-transform:matrix(0.228888,-0.001831,0.002000,0.249992,0,0);}
.m7e_c00454{transform:matrix(0.229081,-0.001374,0.001500,0.249996,0,0);-ms-transform:matrix(0.229081,-0.001374,0.001500,0.249996,0,0);-webkit-transform:matrix(0.229081,-0.001374,0.001500,0.249996,0,0);}
.mdc_c00454{transform:matrix(0.229220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229220,0.000000,0.000000,0.250000,0,0);}
.m161_c00454{transform:matrix(0.229535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229535,0.000000,0.000000,0.250000,0,0);}
.m3d_c00454{transform:matrix(0.229742,-0.001149,0.001250,0.249997,0,0);-ms-transform:matrix(0.229742,-0.001149,0.001250,0.249997,0,0);-webkit-transform:matrix(0.229742,-0.001149,0.001250,0.249997,0,0);}
.m12f_c00454{transform:matrix(0.230206,0.002532,-0.002750,0.249985,0,0);-ms-transform:matrix(0.230206,0.002532,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.230206,0.002532,-0.002750,0.249985,0,0);}
.m1c_c00454{transform:matrix(0.230563,-0.001845,0.002000,0.249992,0,0);-ms-transform:matrix(0.230563,-0.001845,0.002000,0.249992,0,0);-webkit-transform:matrix(0.230563,-0.001845,0.002000,0.249992,0,0);}
.m10b_c00454{transform:matrix(0.230881,0.002540,-0.002750,0.249985,0,0);-ms-transform:matrix(0.230881,0.002540,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.230881,0.002540,-0.002750,0.249985,0,0);}
.m7_c00454{transform:matrix(0.230888,-0.001847,0.002000,0.249992,0,0);-ms-transform:matrix(0.230888,-0.001847,0.002000,0.249992,0,0);-webkit-transform:matrix(0.230888,-0.001847,0.002000,0.249992,0,0);}
.mb8_c00454{transform:matrix(0.230891,-0.001385,0.001500,0.249996,0,0);-ms-transform:matrix(0.230891,-0.001385,0.001500,0.249996,0,0);-webkit-transform:matrix(0.230891,-0.001385,0.001500,0.249996,0,0);}
.mc4_c00454{transform:matrix(0.231285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231285,0.000000,0.000000,0.250000,0,0);}
.ma6_c00454{transform:matrix(0.231616,-0.001390,0.001500,0.249996,0,0);-ms-transform:matrix(0.231616,-0.001390,0.001500,0.249996,0,0);-webkit-transform:matrix(0.231616,-0.001390,0.001500,0.249996,0,0);}
.ma0_c00454{transform:matrix(0.231721,-0.001390,0.001500,0.249996,0,0);-ms-transform:matrix(0.231721,-0.001390,0.001500,0.249996,0,0);-webkit-transform:matrix(0.231721,-0.001390,0.001500,0.249996,0,0);}
.md6_c00454{transform:matrix(0.231810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231810,0.000000,0.000000,0.250000,0,0);}
.m11a_c00454{transform:matrix(0.232266,0.002555,-0.002750,0.249985,0,0);-ms-transform:matrix(0.232266,0.002555,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.232266,0.002555,-0.002750,0.249985,0,0);}
.mf_c00454{transform:matrix(0.232278,-0.001858,0.002000,0.249992,0,0);-ms-transform:matrix(0.232278,-0.001858,0.002000,0.249992,0,0);-webkit-transform:matrix(0.232278,-0.001858,0.002000,0.249992,0,0);}
.med_c00454{transform:matrix(0.232285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232285,0.000000,0.000000,0.250000,0,0);}
.m163_c00454{transform:matrix(0.232390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232390,0.000000,0.000000,0.250000,0,0);}
.m62_c00454{transform:matrix(0.232552,-0.001163,0.001250,0.249997,0,0);-ms-transform:matrix(0.232552,-0.001163,0.001250,0.249997,0,0);-webkit-transform:matrix(0.232552,-0.001163,0.001250,0.249997,0,0);}
.mb1_c00454{transform:matrix(0.232721,-0.001396,0.001500,0.249996,0,0);-ms-transform:matrix(0.232721,-0.001396,0.001500,0.249996,0,0);-webkit-transform:matrix(0.232721,-0.001396,0.001500,0.249996,0,0);}
.m3f_c00454{transform:matrix(0.232722,-0.001164,0.001250,0.249997,0,0);-ms-transform:matrix(0.232722,-0.001164,0.001250,0.249997,0,0);-webkit-transform:matrix(0.232722,-0.001164,0.001250,0.249997,0,0);}
.m14_c00454{transform:matrix(0.232728,-0.001862,0.002000,0.249992,0,0);-ms-transform:matrix(0.232728,-0.001862,0.002000,0.249992,0,0);-webkit-transform:matrix(0.232728,-0.001862,0.002000,0.249992,0,0);}
.m2_c00454{transform:matrix(0.232975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232975,0.000000,0.000000,0.250000,0,0);}
.mbc_c00454{transform:matrix(0.232981,-0.001398,0.001500,0.249996,0,0);-ms-transform:matrix(0.232981,-0.001398,0.001500,0.249996,0,0);-webkit-transform:matrix(0.232981,-0.001398,0.001500,0.249996,0,0);}
.md3_c00454{transform:matrix(0.232985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232985,0.000000,0.000000,0.250000,0,0);}
.mae_c00454{transform:matrix(0.233161,-0.001399,0.001500,0.249996,0,0);-ms-transform:matrix(0.233161,-0.001399,0.001500,0.249996,0,0);-webkit-transform:matrix(0.233161,-0.001399,0.001500,0.249996,0,0);}
.mdf_c00454{transform:matrix(0.233490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233490,0.000000,0.000000,0.250000,0,0);}
.mf9_c00454{transform:matrix(0.233625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233625,0.000000,0.000000,0.250000,0,0);}
.mf5_c00454{transform:matrix(0.233905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233905,0.000000,0.000000,0.250000,0,0);}
.maf_c00454{transform:matrix(0.234091,-0.001405,0.001500,0.249996,0,0);-ms-transform:matrix(0.234091,-0.001405,0.001500,0.249996,0,0);-webkit-transform:matrix(0.234091,-0.001405,0.001500,0.249996,0,0);}
.mda_c00454{transform:matrix(0.234240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234240,0.000000,0.000000,0.250000,0,0);}
.m74_c00454{transform:matrix(0.234356,-0.001406,0.001500,0.249996,0,0);-ms-transform:matrix(0.234356,-0.001406,0.001500,0.249996,0,0);-webkit-transform:matrix(0.234356,-0.001406,0.001500,0.249996,0,0);}
.m38_c00454{transform:matrix(0.234502,-0.001173,0.001250,0.249997,0,0);-ms-transform:matrix(0.234502,-0.001173,0.001250,0.249997,0,0);-webkit-transform:matrix(0.234502,-0.001173,0.001250,0.249997,0,0);}
.m55_c00454{transform:matrix(0.235077,-0.001175,0.001250,0.249997,0,0);-ms-transform:matrix(0.235077,-0.001175,0.001250,0.249997,0,0);-webkit-transform:matrix(0.235077,-0.001175,0.001250,0.249997,0,0);}
.m108_c00454{transform:matrix(0.235106,0.002586,-0.002750,0.249985,0,0);-ms-transform:matrix(0.235106,0.002586,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.235106,0.002586,-0.002750,0.249985,0,0);}
.m59_c00454{transform:matrix(0.235127,-0.001176,0.001250,0.249997,0,0);-ms-transform:matrix(0.235127,-0.001176,0.001250,0.249997,0,0);-webkit-transform:matrix(0.235127,-0.001176,0.001250,0.249997,0,0);}
.m9e_c00454{transform:matrix(0.235156,-0.001411,0.001500,0.249996,0,0);-ms-transform:matrix(0.235156,-0.001411,0.001500,0.249996,0,0);-webkit-transform:matrix(0.235156,-0.001411,0.001500,0.249996,0,0);}
.m16_c00454{transform:matrix(0.235162,-0.001881,0.002000,0.249992,0,0);-ms-transform:matrix(0.235162,-0.001881,0.002000,0.249992,0,0);-webkit-transform:matrix(0.235162,-0.001881,0.002000,0.249992,0,0);}
.mf3_c00454{transform:matrix(0.235315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235315,0.000000,0.000000,0.250000,0,0);}
.mab_c00454{transform:matrix(0.235666,-0.001414,0.001500,0.249996,0,0);-ms-transform:matrix(0.235666,-0.001414,0.001500,0.249996,0,0);-webkit-transform:matrix(0.235666,-0.001414,0.001500,0.249996,0,0);}
.mff_c00454{transform:matrix(0.235706,0.002593,-0.002750,0.249985,0,0);-ms-transform:matrix(0.235706,0.002593,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.235706,0.002593,-0.002750,0.249985,0,0);}
.maa_c00454{transform:matrix(0.235786,-0.001415,0.001500,0.249996,0,0);-ms-transform:matrix(0.235786,-0.001415,0.001500,0.249996,0,0);-webkit-transform:matrix(0.235786,-0.001415,0.001500,0.249996,0,0);}
.m52_c00454{transform:matrix(0.236247,-0.001181,0.001250,0.249997,0,0);-ms-transform:matrix(0.236247,-0.001181,0.001250,0.249997,0,0);-webkit-transform:matrix(0.236247,-0.001181,0.001250,0.249997,0,0);}
.m129_c00454{transform:matrix(0.236431,0.002601,-0.002750,0.249985,0,0);-ms-transform:matrix(0.236431,0.002601,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.236431,0.002601,-0.002750,0.249985,0,0);}
.m99_c00454{transform:matrix(0.236441,-0.001419,0.001500,0.249996,0,0);-ms-transform:matrix(0.236441,-0.001419,0.001500,0.249996,0,0);-webkit-transform:matrix(0.236441,-0.001419,0.001500,0.249996,0,0);}
.m53_c00454{transform:matrix(0.236502,-0.001183,0.001250,0.249997,0,0);-ms-transform:matrix(0.236502,-0.001183,0.001250,0.249997,0,0);-webkit-transform:matrix(0.236502,-0.001183,0.001250,0.249997,0,0);}
.m104_c00454{transform:matrix(0.236651,0.002603,-0.002750,0.249985,0,0);-ms-transform:matrix(0.236651,0.002603,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.236651,0.002603,-0.002750,0.249985,0,0);}
.m125_c00454{transform:matrix(0.237156,0.002609,-0.002750,0.249985,0,0);-ms-transform:matrix(0.237156,0.002609,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.237156,0.002609,-0.002750,0.249985,0,0);}
.mc8_c00454{transform:matrix(0.237915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237915,0.000000,0.000000,0.250000,0,0);}
.m171_c00454{transform:matrix(0.238125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238125,0.000000,0.000000,0.250000,0,0);}
.m11e_c00454{transform:matrix(0.238131,0.002619,-0.002750,0.249985,0,0);-ms-transform:matrix(0.238131,0.002619,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.238131,0.002619,-0.002750,0.249985,0,0);}
.m15e_c00454{transform:matrix(0.238220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238220,0.000000,0.000000,0.250000,0,0);}
.m101_c00454{transform:matrix(0.239256,0.002632,-0.002750,0.249985,0,0);-ms-transform:matrix(0.239256,0.002632,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.239256,0.002632,-0.002750,0.249985,0,0);}
.m100_c00454{transform:matrix(0.239720,0.002637,-0.002750,0.249985,0,0);-ms-transform:matrix(0.239720,0.002637,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.239720,0.002637,-0.002750,0.249985,0,0);}
.md8_c00454{transform:matrix(0.240370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240370,0.000000,0.000000,0.250000,0,0);}
.me1_c00454{transform:matrix(0.240645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240645,0.000000,0.000000,0.250000,0,0);}
.m57_c00454{transform:matrix(0.240857,-0.001204,0.001250,0.249997,0,0);-ms-transform:matrix(0.240857,-0.001204,0.001250,0.249997,0,0);-webkit-transform:matrix(0.240857,-0.001204,0.001250,0.249997,0,0);}
.m9_c00454{transform:matrix(0.241407,-0.001931,0.002000,0.249992,0,0);-ms-transform:matrix(0.241407,-0.001931,0.002000,0.249992,0,0);-webkit-transform:matrix(0.241407,-0.001931,0.002000,0.249992,0,0);}
.mbe_c00454{transform:matrix(0.241516,-0.001449,0.001500,0.249996,0,0);-ms-transform:matrix(0.241516,-0.001449,0.001500,0.249996,0,0);-webkit-transform:matrix(0.241516,-0.001449,0.001500,0.249996,0,0);}
.mf7_c00454{transform:matrix(0.241560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241560,0.000000,0.000000,0.250000,0,0);}
.mdd_c00454{transform:matrix(0.241755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241755,0.000000,0.000000,0.250000,0,0);}
.m12e_c00454{transform:matrix(0.242085,0.002663,-0.002750,0.249985,0,0);-ms-transform:matrix(0.242085,0.002663,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.242085,0.002663,-0.002750,0.249985,0,0);}
.m103_c00454{transform:matrix(0.242440,0.002667,-0.002750,0.249985,0,0);-ms-transform:matrix(0.242440,0.002667,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.242440,0.002667,-0.002750,0.249985,0,0);}
.meb_c00454{transform:matrix(0.242615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242615,0.000000,0.000000,0.250000,0,0);}
.ma7_c00454{transform:matrix(0.243016,-0.001458,0.001500,0.249996,0,0);-ms-transform:matrix(0.243016,-0.001458,0.001500,0.249996,0,0);-webkit-transform:matrix(0.243016,-0.001458,0.001500,0.249996,0,0);}
.m56_c00454{transform:matrix(0.243312,-0.001217,0.001250,0.249997,0,0);-ms-transform:matrix(0.243312,-0.001217,0.001250,0.249997,0,0);-webkit-transform:matrix(0.243312,-0.001217,0.001250,0.249997,0,0);}
.m72_c00454{transform:matrix(0.243746,-0.001462,0.001500,0.249996,0,0);-ms-transform:matrix(0.243746,-0.001462,0.001500,0.249996,0,0);-webkit-transform:matrix(0.243746,-0.001462,0.001500,0.249996,0,0);}
.m3b_c00454{transform:matrix(0.244597,-0.001223,0.001250,0.249997,0,0);-ms-transform:matrix(0.244597,-0.001223,0.001250,0.249997,0,0);-webkit-transform:matrix(0.244597,-0.001223,0.001250,0.249997,0,0);}
.m6_c00454{transform:matrix(0.244862,-0.001959,0.002000,0.249992,0,0);-ms-transform:matrix(0.244862,-0.001959,0.002000,0.249992,0,0);-webkit-transform:matrix(0.244862,-0.001959,0.002000,0.249992,0,0);}
.m3e_c00454{transform:matrix(0.244987,-0.001225,0.001250,0.249997,0,0);-ms-transform:matrix(0.244987,-0.001225,0.001250,0.249997,0,0);-webkit-transform:matrix(0.244987,-0.001225,0.001250,0.249997,0,0);}
.m106_c00454{transform:matrix(0.244990,0.002695,-0.002750,0.249985,0,0);-ms-transform:matrix(0.244990,0.002695,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.244990,0.002695,-0.002750,0.249985,0,0);}
.m6f_c00454{transform:matrix(0.245471,-0.001473,0.001500,0.249996,0,0);-ms-transform:matrix(0.245471,-0.001473,0.001500,0.249996,0,0);-webkit-transform:matrix(0.245471,-0.001473,0.001500,0.249996,0,0);}
.mc6_c00454{transform:matrix(0.245865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245865,0.000000,0.000000,0.250000,0,0);}
.m51_c00454{transform:matrix(0.245977,-0.001230,0.001250,0.249997,0,0);-ms-transform:matrix(0.245977,-0.001230,0.001250,0.249997,0,0);-webkit-transform:matrix(0.245977,-0.001230,0.001250,0.249997,0,0);}
.m95_c00454{transform:matrix(0.246081,-0.001476,0.001500,0.249996,0,0);-ms-transform:matrix(0.246081,-0.001476,0.001500,0.249996,0,0);-webkit-transform:matrix(0.246081,-0.001476,0.001500,0.249996,0,0);}
.mbf_c00454{transform:matrix(0.246191,-0.001477,0.001500,0.249996,0,0);-ms-transform:matrix(0.246191,-0.001477,0.001500,0.249996,0,0);-webkit-transform:matrix(0.246191,-0.001477,0.001500,0.249996,0,0);}
.m5d_c00454{transform:matrix(0.246297,-0.001231,0.001250,0.249997,0,0);-ms-transform:matrix(0.246297,-0.001231,0.001250,0.249997,0,0);-webkit-transform:matrix(0.246297,-0.001231,0.001250,0.249997,0,0);}
.m58_c00454{transform:matrix(0.246407,-0.001232,0.001250,0.249997,0,0);-ms-transform:matrix(0.246407,-0.001232,0.001250,0.249997,0,0);-webkit-transform:matrix(0.246407,-0.001232,0.001250,0.249997,0,0);}
.m92_c00454{transform:matrix(0.246506,-0.001479,0.001500,0.249996,0,0);-ms-transform:matrix(0.246506,-0.001479,0.001500,0.249996,0,0);-webkit-transform:matrix(0.246506,-0.001479,0.001500,0.249996,0,0);}
.mb9_c00454{transform:matrix(0.246726,-0.001480,0.001500,0.249996,0,0);-ms-transform:matrix(0.246726,-0.001480,0.001500,0.249996,0,0);-webkit-transform:matrix(0.246726,-0.001480,0.001500,0.249996,0,0);}
.m97_c00454{transform:matrix(0.247246,-0.001483,0.001500,0.249996,0,0);-ms-transform:matrix(0.247246,-0.001483,0.001500,0.249996,0,0);-webkit-transform:matrix(0.247246,-0.001483,0.001500,0.249996,0,0);}
.m170_c00454{transform:matrix(0.247535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247535,0.000000,0.000000,0.250000,0,0);}
.m41_c00454{transform:matrix(0.247567,-0.001238,0.001250,0.249997,0,0);-ms-transform:matrix(0.247567,-0.001238,0.001250,0.249997,0,0);-webkit-transform:matrix(0.247567,-0.001238,0.001250,0.249997,0,0);}
.m133_c00454{transform:matrix(0.247720,0.002725,-0.002750,0.249985,0,0);-ms-transform:matrix(0.247720,0.002725,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.247720,0.002725,-0.002750,0.249985,0,0);}
.m73_c00454{transform:matrix(0.247811,-0.001487,0.001500,0.249996,0,0);-ms-transform:matrix(0.247811,-0.001487,0.001500,0.249996,0,0);-webkit-transform:matrix(0.247811,-0.001487,0.001500,0.249996,0,0);}
.m15d_c00454{transform:matrix(0.248145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248145,0.000000,0.000000,0.250000,0,0);}
.m130_c00454{transform:matrix(0.248325,0.002732,-0.002750,0.249985,0,0);-ms-transform:matrix(0.248325,0.002732,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.248325,0.002732,-0.002750,0.249985,0,0);}
.me0_c00454{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.mac_c00454{transform:matrix(0.249156,-0.001495,0.001500,0.249996,0,0);-ms-transform:matrix(0.249156,-0.001495,0.001500,0.249996,0,0);-webkit-transform:matrix(0.249156,-0.001495,0.001500,0.249996,0,0);}
.m10e_c00454{transform:matrix(0.249200,0.002741,-0.002750,0.249985,0,0);-ms-transform:matrix(0.249200,0.002741,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.249200,0.002741,-0.002750,0.249985,0,0);}
.ma2_c00454{transform:matrix(0.249436,-0.001497,0.001500,0.249996,0,0);-ms-transform:matrix(0.249436,-0.001497,0.001500,0.249996,0,0);-webkit-transform:matrix(0.249436,-0.001497,0.001500,0.249996,0,0);}
.m107_c00454{transform:matrix(0.250015,0.002750,-0.002750,0.249985,0,0);-ms-transform:matrix(0.250015,0.002750,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.250015,0.002750,-0.002750,0.249985,0,0);}
.m126_c00454{transform:matrix(0.250140,0.002752,-0.002750,0.249985,0,0);-ms-transform:matrix(0.250140,0.002752,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.250140,0.002752,-0.002750,0.249985,0,0);}
.m5e_c00454{transform:matrix(0.250152,-0.001251,0.001250,0.249997,0,0);-ms-transform:matrix(0.250152,-0.001251,0.001250,0.249997,0,0);-webkit-transform:matrix(0.250152,-0.001251,0.001250,0.249997,0,0);}
.m27_c00454{transform:matrix(0.250382,-0.002003,0.002000,0.249992,0,0);-ms-transform:matrix(0.250382,-0.002003,0.002000,0.249992,0,0);-webkit-transform:matrix(0.250382,-0.002003,0.002000,0.249992,0,0);}
.m5f_c00454{transform:matrix(0.250657,-0.001253,0.001250,0.249997,0,0);-ms-transform:matrix(0.250657,-0.001253,0.001250,0.249997,0,0);-webkit-transform:matrix(0.250657,-0.001253,0.001250,0.249997,0,0);}
.m9c_c00454{transform:matrix(0.251185,-0.001507,0.001500,0.249996,0,0);-ms-transform:matrix(0.251185,-0.001507,0.001500,0.249996,0,0);-webkit-transform:matrix(0.251185,-0.001507,0.001500,0.249996,0,0);}
.m134_c00454{transform:matrix(0.251360,0.002765,-0.002750,0.249985,0,0);-ms-transform:matrix(0.251360,0.002765,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.251360,0.002765,-0.002750,0.249985,0,0);}
.m121_c00454{transform:matrix(0.251680,0.002768,-0.002750,0.249985,0,0);-ms-transform:matrix(0.251680,0.002768,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.251680,0.002768,-0.002750,0.249985,0,0);}
.m12a_c00454{transform:matrix(0.251740,0.002769,-0.002750,0.249985,0,0);-ms-transform:matrix(0.251740,0.002769,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.251740,0.002769,-0.002750,0.249985,0,0);}
.m110_c00454{transform:matrix(0.251865,0.002771,-0.002750,0.249985,0,0);-ms-transform:matrix(0.251865,0.002771,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.251865,0.002771,-0.002750,0.249985,0,0);}
.m6d_c00454{transform:matrix(0.251865,-0.001511,0.001500,0.249996,0,0);-ms-transform:matrix(0.251865,-0.001511,0.001500,0.249996,0,0);-webkit-transform:matrix(0.251865,-0.001511,0.001500,0.249996,0,0);}
.m98_c00454{transform:matrix(0.252110,-0.001513,0.001500,0.249996,0,0);-ms-transform:matrix(0.252110,-0.001513,0.001500,0.249996,0,0);-webkit-transform:matrix(0.252110,-0.001513,0.001500,0.249996,0,0);}
.m6b_c00454{transform:matrix(0.252875,-0.001517,0.001500,0.249996,0,0);-ms-transform:matrix(0.252875,-0.001517,0.001500,0.249996,0,0);-webkit-transform:matrix(0.252875,-0.001517,0.001500,0.249996,0,0);}
.m25_c00454{transform:matrix(0.253392,-0.002027,0.002000,0.249992,0,0);-ms-transform:matrix(0.253392,-0.002027,0.002000,0.249992,0,0);-webkit-transform:matrix(0.253392,-0.002027,0.002000,0.249992,0,0);}
.m111_c00454{transform:matrix(0.253770,0.002791,-0.002750,0.249985,0,0);-ms-transform:matrix(0.253770,0.002791,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.253770,0.002791,-0.002750,0.249985,0,0);}
.m12b_c00454{transform:matrix(0.253925,0.002793,-0.002750,0.249985,0,0);-ms-transform:matrix(0.253925,0.002793,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.253925,0.002793,-0.002750,0.249985,0,0);}
.m4f_c00454{transform:matrix(0.254262,-0.001271,0.001250,0.249997,0,0);-ms-transform:matrix(0.254262,-0.001271,0.001250,0.249997,0,0);-webkit-transform:matrix(0.254262,-0.001271,0.001250,0.249997,0,0);}
.m113_c00454{transform:matrix(0.254330,0.002798,-0.002750,0.249985,0,0);-ms-transform:matrix(0.254330,0.002798,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.254330,0.002798,-0.002750,0.249985,0,0);}
.mb3_c00454{transform:matrix(0.254980,-0.001530,0.001500,0.249996,0,0);-ms-transform:matrix(0.254980,-0.001530,0.001500,0.249996,0,0);-webkit-transform:matrix(0.254980,-0.001530,0.001500,0.249996,0,0);}
.me6_c00454{transform:matrix(0.255335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255335,0.000000,0.000000,0.250000,0,0);}
.m132_c00454{transform:matrix(0.255690,0.002813,-0.002750,0.249985,0,0);-ms-transform:matrix(0.255690,0.002813,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.255690,0.002813,-0.002750,0.249985,0,0);}
.m39_c00454{transform:matrix(0.256192,-0.001281,0.001250,0.249997,0,0);-ms-transform:matrix(0.256192,-0.001281,0.001250,0.249997,0,0);-webkit-transform:matrix(0.256192,-0.001281,0.001250,0.249997,0,0);}
.m70_c00454{transform:matrix(0.257095,-0.001543,0.001500,0.249996,0,0);-ms-transform:matrix(0.257095,-0.001543,0.001500,0.249996,0,0);-webkit-transform:matrix(0.257095,-0.001543,0.001500,0.249996,0,0);}
.m136_c00454{transform:matrix(0.257644,0.002834,-0.002750,0.249985,0,0);-ms-transform:matrix(0.257644,0.002834,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.257644,0.002834,-0.002750,0.249985,0,0);}
.m60_c00454{transform:matrix(0.257877,-0.001289,0.001250,0.249997,0,0);-ms-transform:matrix(0.257877,-0.001289,0.001250,0.249997,0,0);-webkit-transform:matrix(0.257877,-0.001289,0.001250,0.249997,0,0);}
.m71_c00454{transform:matrix(0.258180,-0.001549,0.001500,0.249996,0,0);-ms-transform:matrix(0.258180,-0.001549,0.001500,0.249996,0,0);-webkit-transform:matrix(0.258180,-0.001549,0.001500,0.249996,0,0);}
.m69_c00454{transform:matrix(0.258305,-0.001550,0.001500,0.249996,0,0);-ms-transform:matrix(0.258305,-0.001550,0.001500,0.249996,0,0);-webkit-transform:matrix(0.258305,-0.001550,0.001500,0.249996,0,0);}
.m15f_c00454{transform:matrix(0.258385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258385,0.000000,0.000000,0.250000,0,0);}
.m8_c00454{transform:matrix(0.258912,-0.002071,0.002000,0.249992,0,0);-ms-transform:matrix(0.258912,-0.002071,0.002000,0.249992,0,0);-webkit-transform:matrix(0.258912,-0.002071,0.002000,0.249992,0,0);}
.m75_c00454{transform:matrix(0.259045,-0.001554,0.001500,0.249996,0,0);-ms-transform:matrix(0.259045,-0.001554,0.001500,0.249996,0,0);-webkit-transform:matrix(0.259045,-0.001554,0.001500,0.249996,0,0);}
.mc_c00454{transform:matrix(0.259947,-0.002080,0.002000,0.249992,0,0);-ms-transform:matrix(0.259947,-0.002080,0.002000,0.249992,0,0);-webkit-transform:matrix(0.259947,-0.002080,0.002000,0.249992,0,0);}
.m65_c00454{transform:matrix(0.260117,-0.001301,0.001250,0.249997,0,0);-ms-transform:matrix(0.260117,-0.001301,0.001250,0.249997,0,0);-webkit-transform:matrix(0.260117,-0.001301,0.001250,0.249997,0,0);}
.mec_c00454{transform:matrix(0.260485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260485,0.000000,0.000000,0.250000,0,0);}
.m64_c00454{transform:matrix(0.261037,-0.001305,0.001250,0.249997,0,0);-ms-transform:matrix(0.261037,-0.001305,0.001250,0.249997,0,0);-webkit-transform:matrix(0.261037,-0.001305,0.001250,0.249997,0,0);}
.mb6_c00454{transform:matrix(0.261380,-0.001568,0.001500,0.249996,0,0);-ms-transform:matrix(0.261380,-0.001568,0.001500,0.249996,0,0);-webkit-transform:matrix(0.261380,-0.001568,0.001500,0.249996,0,0);}
.ma9_c00454{transform:matrix(0.261560,-0.001569,0.001500,0.249996,0,0);-ms-transform:matrix(0.261560,-0.001569,0.001500,0.249996,0,0);-webkit-transform:matrix(0.261560,-0.001569,0.001500,0.249996,0,0);}
.m10d_c00454{transform:matrix(0.261789,0.002880,-0.002750,0.249985,0,0);-ms-transform:matrix(0.261789,0.002880,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.261789,0.002880,-0.002750,0.249985,0,0);}
.me7_c00454{transform:matrix(0.261965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261965,0.000000,0.000000,0.250000,0,0);}
.m96_c00454{transform:matrix(0.262200,-0.001573,0.001500,0.249996,0,0);-ms-transform:matrix(0.262200,-0.001573,0.001500,0.249996,0,0);-webkit-transform:matrix(0.262200,-0.001573,0.001500,0.249996,0,0);}
.m10f_c00454{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);}
.mba_c00454{transform:matrix(0.263140,-0.001579,0.001500,0.249996,0,0);-ms-transform:matrix(0.263140,-0.001579,0.001500,0.249996,0,0);-webkit-transform:matrix(0.263140,-0.001579,0.001500,0.249996,0,0);}
.m123_c00454{transform:matrix(0.263254,0.002896,-0.002750,0.249985,0,0);-ms-transform:matrix(0.263254,0.002896,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.263254,0.002896,-0.002750,0.249985,0,0);}
.m127_c00454{transform:matrix(0.263639,0.002900,-0.002750,0.249985,0,0);-ms-transform:matrix(0.263639,0.002900,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.263639,0.002900,-0.002750,0.249985,0,0);}
.mea_c00454{transform:matrix(0.264130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264130,0.000000,0.000000,0.250000,0,0);}
.mf1_c00454{transform:matrix(0.264275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264275,0.000000,0.000000,0.250000,0,0);}
.ma_c00454{transform:matrix(0.265567,-0.002125,0.002000,0.249992,0,0);-ms-transform:matrix(0.265567,-0.002125,0.002000,0.249992,0,0);-webkit-transform:matrix(0.265567,-0.002125,0.002000,0.249992,0,0);}
.m9a_c00454{transform:matrix(0.265880,-0.001595,0.001500,0.249996,0,0);-ms-transform:matrix(0.265880,-0.001595,0.001500,0.249996,0,0);-webkit-transform:matrix(0.265880,-0.001595,0.001500,0.249996,0,0);}
.m68_c00454{transform:matrix(0.265882,-0.001329,0.001250,0.249997,0,0);-ms-transform:matrix(0.265882,-0.001329,0.001250,0.249997,0,0);-webkit-transform:matrix(0.265882,-0.001329,0.001250,0.249997,0,0);}
.me_c00454{transform:matrix(0.266221,-0.002130,0.002000,0.249992,0,0);-ms-transform:matrix(0.266221,-0.002130,0.002000,0.249992,0,0);-webkit-transform:matrix(0.266221,-0.002130,0.002000,0.249992,0,0);}
.me9_c00454{transform:matrix(0.267095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267095,0.000000,0.000000,0.250000,0,0);}
.m120_c00454{transform:matrix(0.267119,0.002938,-0.002750,0.249985,0,0);-ms-transform:matrix(0.267119,0.002938,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.267119,0.002938,-0.002750,0.249985,0,0);}
.m6a_c00454{transform:matrix(0.267695,-0.001606,0.001500,0.249996,0,0);-ms-transform:matrix(0.267695,-0.001606,0.001500,0.249996,0,0);-webkit-transform:matrix(0.267695,-0.001606,0.001500,0.249996,0,0);}
.m6c_c00454{transform:matrix(0.268565,-0.001611,0.001500,0.249996,0,0);-ms-transform:matrix(0.268565,-0.001611,0.001500,0.249996,0,0);-webkit-transform:matrix(0.268565,-0.001611,0.001500,0.249996,0,0);}
.mef_c00454{transform:matrix(0.268800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268800,0.000000,0.000000,0.250000,0,0);}
.m112_c00454{transform:matrix(0.268919,0.002958,-0.002750,0.249985,0,0);-ms-transform:matrix(0.268919,0.002958,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.268919,0.002958,-0.002750,0.249985,0,0);}
.m4_c00454{transform:matrix(0.269231,-0.002154,0.002000,0.249992,0,0);-ms-transform:matrix(0.269231,-0.002154,0.002000,0.249992,0,0);-webkit-transform:matrix(0.269231,-0.002154,0.002000,0.249992,0,0);}
.m22_c00454{transform:matrix(0.269681,-0.002157,0.002000,0.249992,0,0);-ms-transform:matrix(0.269681,-0.002157,0.002000,0.249992,0,0);-webkit-transform:matrix(0.269681,-0.002157,0.002000,0.249992,0,0);}
.ma4_c00454{transform:matrix(0.270810,-0.001625,0.001500,0.249996,0,0);-ms-transform:matrix(0.270810,-0.001625,0.001500,0.249996,0,0);-webkit-transform:matrix(0.270810,-0.001625,0.001500,0.249996,0,0);}
.mf0_c00454{transform:matrix(0.270845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270845,0.000000,0.000000,0.250000,0,0);}
.mee_c00454{transform:matrix(0.271045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271045,0.000000,0.000000,0.250000,0,0);}
.mb7_c00454{transform:matrix(0.271270,-0.001628,0.001500,0.249996,0,0);-ms-transform:matrix(0.271270,-0.001628,0.001500,0.249996,0,0);-webkit-transform:matrix(0.271270,-0.001628,0.001500,0.249996,0,0);}
.m66_c00454{transform:matrix(0.271342,-0.001357,0.001250,0.249997,0,0);-ms-transform:matrix(0.271342,-0.001357,0.001250,0.249997,0,0);-webkit-transform:matrix(0.271342,-0.001357,0.001250,0.249997,0,0);}
.mbb_c00454{transform:matrix(0.271895,-0.001631,0.001500,0.249996,0,0);-ms-transform:matrix(0.271895,-0.001631,0.001500,0.249996,0,0);-webkit-transform:matrix(0.271895,-0.001631,0.001500,0.249996,0,0);}
.m5c_c00454{transform:matrix(0.272007,-0.001360,0.001250,0.249997,0,0);-ms-transform:matrix(0.272007,-0.001360,0.001250,0.249997,0,0);-webkit-transform:matrix(0.272007,-0.001360,0.001250,0.249997,0,0);}
.m10c_c00454{transform:matrix(0.272743,0.003000,-0.002750,0.249985,0,0);-ms-transform:matrix(0.272743,0.003000,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.272743,0.003000,-0.002750,0.249985,0,0);}
.m6e_c00454{transform:matrix(0.272755,-0.001637,0.001500,0.249996,0,0);-ms-transform:matrix(0.272755,-0.001637,0.001500,0.249996,0,0);-webkit-transform:matrix(0.272755,-0.001637,0.001500,0.249996,0,0);}
.m1f_c00454{transform:matrix(0.272931,-0.002183,0.002000,0.249992,0,0);-ms-transform:matrix(0.272931,-0.002183,0.002000,0.249992,0,0);-webkit-transform:matrix(0.272931,-0.002183,0.002000,0.249992,0,0);}
.m10_c00454{transform:matrix(0.273426,-0.002187,0.002000,0.249992,0,0);-ms-transform:matrix(0.273426,-0.002187,0.002000,0.249992,0,0);-webkit-transform:matrix(0.273426,-0.002187,0.002000,0.249992,0,0);}
.me8_c00454{transform:matrix(0.273590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273590,0.000000,0.000000,0.250000,0,0);}
.m169_c00454{transform:matrix(0.275355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275355,0.000000,0.000000,0.250000,0,0);}
.m124_c00454{transform:matrix(0.275523,0.003031,-0.002750,0.249985,0,0);-ms-transform:matrix(0.275523,0.003031,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.275523,0.003031,-0.002750,0.249985,0,0);}
.m21_c00454{transform:matrix(0.276031,-0.002208,0.002000,0.249992,0,0);-ms-transform:matrix(0.276031,-0.002208,0.002000,0.249992,0,0);-webkit-transform:matrix(0.276031,-0.002208,0.002000,0.249992,0,0);}
.m11_c00454{transform:matrix(0.276036,-0.002208,0.002000,0.249992,0,0);-ms-transform:matrix(0.276036,-0.002208,0.002000,0.249992,0,0);-webkit-transform:matrix(0.276036,-0.002208,0.002000,0.249992,0,0);}
.m109_c00454{transform:matrix(0.276308,0.003039,-0.002750,0.249985,0,0);-ms-transform:matrix(0.276308,0.003039,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.276308,0.003039,-0.002750,0.249985,0,0);}
.m91_c00454{transform:matrix(0.276800,-0.001661,0.001500,0.249996,0,0);-ms-transform:matrix(0.276800,-0.001661,0.001500,0.249996,0,0);-webkit-transform:matrix(0.276800,-0.001661,0.001500,0.249996,0,0);}
.m138_c00454{transform:matrix(0.277213,0.003049,-0.002750,0.249985,0,0);-ms-transform:matrix(0.277213,0.003049,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.277213,0.003049,-0.002750,0.249985,0,0);}
.m122_c00454{transform:matrix(0.277888,0.003057,-0.002750,0.249985,0,0);-ms-transform:matrix(0.277888,0.003057,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.277888,0.003057,-0.002750,0.249985,0,0);}
.m26_c00454{transform:matrix(0.278406,-0.002227,0.002000,0.249992,0,0);-ms-transform:matrix(0.278406,-0.002227,0.002000,0.249992,0,0);-webkit-transform:matrix(0.278406,-0.002227,0.002000,0.249992,0,0);}
.mbd_c00454{transform:matrix(0.278545,-0.001671,0.001500,0.249996,0,0);-ms-transform:matrix(0.278545,-0.001671,0.001500,0.249996,0,0);-webkit-transform:matrix(0.278545,-0.001671,0.001500,0.249996,0,0);}
.m93_c00454{transform:matrix(0.280165,-0.001681,0.001500,0.249996,0,0);-ms-transform:matrix(0.280165,-0.001681,0.001500,0.249996,0,0);-webkit-transform:matrix(0.280165,-0.001681,0.001500,0.249996,0,0);}
.mb5_c00454{transform:matrix(0.280595,-0.001684,0.001500,0.249996,0,0);-ms-transform:matrix(0.280595,-0.001684,0.001500,0.249996,0,0);-webkit-transform:matrix(0.280595,-0.001684,0.001500,0.249996,0,0);}
.m28_c00454{transform:matrix(0.284486,-0.002276,0.002000,0.249992,0,0);-ms-transform:matrix(0.284486,-0.002276,0.002000,0.249992,0,0);-webkit-transform:matrix(0.284486,-0.002276,0.002000,0.249992,0,0);}
.mf6_c00454{transform:matrix(0.286185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286185,0.000000,0.000000,0.250000,0,0);}
.m23_c00454{transform:matrix(0.290796,-0.002326,0.002000,0.249992,0,0);-ms-transform:matrix(0.290796,-0.002326,0.002000,0.249992,0,0);-webkit-transform:matrix(0.290796,-0.002326,0.002000,0.249992,0,0);}
.m128_c00454{transform:matrix(0.295982,0.003256,-0.002750,0.249985,0,0);-ms-transform:matrix(0.295982,0.003256,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.295982,0.003256,-0.002750,0.249985,0,0);}
.m24_c00454{transform:matrix(0.299635,-0.002397,0.002000,0.249992,0,0);-ms-transform:matrix(0.299635,-0.002397,0.002000,0.249992,0,0);-webkit-transform:matrix(0.299635,-0.002397,0.002000,0.249992,0,0);}
.m20_c00454{transform:matrix(0.305580,-0.002445,0.002000,0.249992,0,0);-ms-transform:matrix(0.305580,-0.002445,0.002000,0.249992,0,0);-webkit-transform:matrix(0.305580,-0.002445,0.002000,0.249992,0,0);}
.m16a_c00454{transform:matrix(0.310410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310410,0.000000,0.000000,0.250000,0,0);}
.mc0_c00454{transform:matrix(0.312644,-0.001876,0.001500,0.249996,0,0);-ms-transform:matrix(0.312644,-0.001876,0.001500,0.249996,0,0);-webkit-transform:matrix(0.312644,-0.001876,0.001500,0.249996,0,0);}
.m16f_c00454{transform:matrix(0.312985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312985,0.000000,0.000000,0.250000,0,0);}
.m63_c00454{transform:matrix(0.313596,-0.001568,0.001250,0.249997,0,0);-ms-transform:matrix(0.313596,-0.001568,0.001250,0.249997,0,0);-webkit-transform:matrix(0.313596,-0.001568,0.001250,0.249997,0,0);}
.m172_c00454{transform:matrix(0.318310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318310,0.000000,0.000000,0.250000,0,0);}
.m10a_c00454{transform:matrix(0.323040,0.003553,-0.002750,0.249985,0,0);-ms-transform:matrix(0.323040,0.003553,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.323040,0.003553,-0.002750,0.249985,0,0);}
.m166_c00454{transform:matrix(0.333665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333665,0.000000,0.000000,0.250000,0,0);}
.m12c_c00454{transform:matrix(0.370528,0.004076,-0.002750,0.249985,0,0);-ms-transform:matrix(0.370528,0.004076,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.370528,0.004076,-0.002750,0.249985,0,0);}
.m137_c00454{transform:matrix(0.385192,0.004237,-0.002750,0.249985,0,0);-ms-transform:matrix(0.385192,0.004237,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.385192,0.004237,-0.002750,0.249985,0,0);}
.m5b_c00454{transform:matrix(0.387410,-0.001937,0.001250,0.249997,0,0);-ms-transform:matrix(0.387410,-0.001937,0.001250,0.249997,0,0);-webkit-transform:matrix(0.387410,-0.001937,0.001250,0.249997,0,0);}
.m5a_c00454{transform:matrix(0.402250,-0.002011,0.001250,0.249997,0,0);-ms-transform:matrix(0.402250,-0.002011,0.001250,0.249997,0,0);-webkit-transform:matrix(0.402250,-0.002011,0.001250,0.249997,0,0);}
.m1e_c00454{transform:matrix(0.434106,-0.003473,0.002000,0.249992,0,0);-ms-transform:matrix(0.434106,-0.003473,0.002000,0.249992,0,0);-webkit-transform:matrix(0.434106,-0.003473,0.002000,0.249992,0,0);}
.m173_c00454{transform:matrix(0.461105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461105,0.000000,0.000000,0.250000,0,0);}
.m0_c00454{transform:matrix(0.700055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.700055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.700055,0.000000,0.000000,0.250000,0,0);}
.v0_c00454{vertical-align:0.000000px;}
.ls0_c00454{letter-spacing:0.000000px;}
.sc__c00454{text-shadow:none;}
.sc0_c00454{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__c00454{-webkit-text-stroke:0px transparent;}
.sc0_c00454{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00454{word-spacing:0.000000px;}
.fc0_c00454{color:transparent;}
.fs3_c00454{font-size:66.002112px;}
.fsd_c00454{font-size:72.000000px;}
.fs7_c00454{font-size:72.000900px;}
.fs8_c00454{font-size:72.001296px;}
.fs1_c00454{font-size:72.002304px;}
.fs10_c00454{font-size:72.004356px;}
.fs0_c00454{font-size:78.000000px;}
.fs5_c00454{font-size:78.000975px;}
.fsb_c00454{font-size:78.001404px;}
.fs11_c00454{font-size:78.004719px;}
.fsc_c00454{font-size:84.000000px;}
.fs2_c00454{font-size:84.002688px;}
.fsf_c00454{font-size:84.005082px;}
.fs14_c00454{font-size:90.000000px;}
.fs9_c00454{font-size:90.001620px;}
.fs4_c00454{font-size:90.002880px;}
.fse_c00454{font-size:90.025916px;}
.fs6_c00454{font-size:96.001200px;}
.fsa_c00454{font-size:96.001728px;}
.fs13_c00454{font-size:108.000000px;}
.fs12_c00454{font-size:114.006897px;}
.y0_c00454{bottom:0.000000px;}
.y130_c00454{bottom:61.524000px;}
.y12f_c00454{bottom:61.831500px;}
.y12e_c00454{bottom:62.571000px;}
.y12d_c00454{bottom:62.878500px;}
.y12c_c00454{bottom:63.544500px;}
.y12b_c00454{bottom:63.879000px;}
.y12a_c00454{bottom:64.344000px;}
.y129_c00454{bottom:64.782000px;}
.y128_c00454{bottom:65.335500px;}
.y127_c00454{bottom:65.662500px;}
.y126_c00454{bottom:65.884500px;}
.y125_c00454{bottom:66.772500px;}
.y124_c00454{bottom:67.096500px;}
.y123_c00454{bottom:67.431000px;}
.y122_c00454{bottom:67.843500px;}
.y121_c00454{bottom:68.313000px;}
.y120_c00454{bottom:89.640000px;}
.y11f_c00454{bottom:121.678500px;}
.y11e_c00454{bottom:122.077500px;}
.y11d_c00454{bottom:122.463000px;}
.y11c_c00454{bottom:122.691000px;}
.y11b_c00454{bottom:122.928000px;}
.y11a_c00454{bottom:123.159000px;}
.y119_c00454{bottom:123.465000px;}
.y118_c00454{bottom:123.622500px;}
.y117_c00454{bottom:124.144500px;}
.y116_c00454{bottom:124.597500px;}
.y115_c00454{bottom:125.010000px;}
.y114_c00454{bottom:159.568500px;}
.y113_c00454{bottom:188.680209px;}
.y112_c00454{bottom:189.028077px;}
.y111_c00454{bottom:189.477936px;}
.y110_c00454{bottom:190.007751px;}
.y10f_c00454{bottom:190.358342px;}
.y10e_c00454{bottom:190.537583px;}
.y10d_c00454{bottom:190.809720px;}
.y10c_c00454{bottom:191.072994px;}
.y10b_c00454{bottom:191.698529px;}
.y10a_c00454{bottom:192.300626px;}
.y109_c00454{bottom:192.774039px;}
.y108_c00454{bottom:229.868864px;}
.y107_c00454{bottom:231.342035px;}
.y106_c00454{bottom:231.878364px;}
.y105_c00454{bottom:233.144640px;}
.y104_c00454{bottom:234.199782px;}
.y103_c00454{bottom:235.802586px;}
.y102_c00454{bottom:236.147674px;}
.y101_c00454{bottom:237.396599px;}
.y100_c00454{bottom:238.087634px;}
.yff_c00454{bottom:239.330801px;}
.yfe_c00454{bottom:240.020796px;}
.yf2_c00454{bottom:268.148072px;}
.yf6_c00454{bottom:268.148360px;}
.yf4_c00454{bottom:268.148547px;}
.yf3_c00454{bottom:268.148555px;}
.yf1_c00454{bottom:268.148562px;}
.yf5_c00454{bottom:268.148670px;}
.yf7_c00454{bottom:268.149096px;}
.yf9_c00454{bottom:268.149329px;}
.yfa_c00454{bottom:268.149348px;}
.yfc_c00454{bottom:268.149381px;}
.yfd_c00454{bottom:268.149504px;}
.yf8_c00454{bottom:268.149609px;}
.yfb_c00454{bottom:268.150055px;}
.yf0_c00454{bottom:301.991076px;}
.yef_c00454{bottom:302.499983px;}
.yee_c00454{bottom:303.197378px;}
.yed_c00454{bottom:303.497067px;}
.yec_c00454{bottom:303.694319px;}
.yeb_c00454{bottom:303.995115px;}
.yea_c00454{bottom:304.901991px;}
.ye9_c00454{bottom:305.201450px;}
.ye8_c00454{bottom:305.604420px;}
.ye7_c00454{bottom:306.195779px;}
.ye6_c00454{bottom:306.491970px;}
.ye5_c00454{bottom:307.278470px;}
.ye4_c00454{bottom:308.064936px;}
.ye3_c00454{bottom:340.663712px;}
.ye2_c00454{bottom:341.067242px;}
.ye1_c00454{bottom:341.401562px;}
.ye0_c00454{bottom:341.730120px;}
.ydf_c00454{bottom:342.135219px;}
.yde_c00454{bottom:342.406325px;}
.ydd_c00454{bottom:342.541590px;}
.ydc_c00454{bottom:343.007211px;}
.ydb_c00454{bottom:343.203065px;}
.yda_c00454{bottom:343.606595px;}
.yd9_c00454{bottom:344.260409px;}
.yd8_c00454{bottom:344.454627px;}
.yd7_c00454{bottom:344.787279px;}
.yd6_c00454{bottom:374.999210px;}
.yd5_c00454{bottom:375.363711px;}
.yd4_c00454{bottom:376.587566px;}
.yd3_c00454{bottom:376.959014px;}
.yd2_c00454{bottom:377.454707px;}
.yd1_c00454{bottom:378.666846px;}
.yd0_c00454{bottom:380.137013px;}
.ycf_c00454{bottom:380.971500px;}
.ycc_c00454{bottom:411.217500px;}
.ycd_c00454{bottom:411.997368px;}
.yce_c00454{bottom:414.701688px;}
.ycb_c00454{bottom:446.323500px;}
.yc0_c00454{bottom:483.030000px;}
.yc1_c00454{bottom:483.349500px;}
.yc2_c00454{bottom:483.685500px;}
.yc3_c00454{bottom:484.179000px;}
.yc4_c00454{bottom:484.512000px;}
.yc5_c00454{bottom:484.896000px;}
.yc6_c00454{bottom:485.064000px;}
.yc7_c00454{bottom:485.287500px;}
.yc8_c00454{bottom:485.454000px;}
.yc9_c00454{bottom:485.848500px;}
.yca_c00454{bottom:486.240000px;}
.ybf_c00454{bottom:520.762500px;}
.ybe_c00454{bottom:558.379500px;}
.ybd_c00454{bottom:593.205000px;}
.yb7_c00454{bottom:626.930436px;}
.yb2_c00454{bottom:626.930652px;}
.yb9_c00454{bottom:626.930727px;}
.yb5_c00454{bottom:626.930814px;}
.yb6_c00454{bottom:626.930865px;}
.yb1_c00454{bottom:626.930901px;}
.yb8_c00454{bottom:626.931087px;}
.yb3_c00454{bottom:626.931243px;}
.yb4_c00454{bottom:626.931294px;}
.yba_c00454{bottom:626.931438px;}
.ybb_c00454{bottom:626.931558px;}
.ybc_c00454{bottom:626.931678px;}
.ya8_c00454{bottom:664.363413px;}
.ya9_c00454{bottom:664.363944px;}
.ya7_c00454{bottom:664.364073px;}
.ya6_c00454{bottom:664.364082px;}
.yaa_c00454{bottom:664.364295px;}
.ya5_c00454{bottom:664.364511px;}
.yab_c00454{bottom:664.364535px;}
.yad_c00454{bottom:664.364937px;}
.yac_c00454{bottom:664.364946px;}
.yae_c00454{bottom:664.365168px;}
.yaf_c00454{bottom:664.365579px;}
.yb0_c00454{bottom:664.366110px;}
.y9b_c00454{bottom:698.415066px;}
.y9a_c00454{bottom:698.415186px;}
.ya3_c00454{bottom:698.415192px;}
.y99_c00454{bottom:698.415255px;}
.ya4_c00454{bottom:698.415363px;}
.ya1_c00454{bottom:698.415390px;}
.ya2_c00454{bottom:698.415432px;}
.y9c_c00454{bottom:698.415537px;}
.y9f_c00454{bottom:698.415579px;}
.y9d_c00454{bottom:698.415708px;}
.ya0_c00454{bottom:698.415750px;}
.y9e_c00454{bottom:698.416059px;}
.y98_c00454{bottom:736.204077px;}
.y97_c00454{bottom:736.366677px;}
.y96_c00454{bottom:736.705557px;}
.y95_c00454{bottom:736.873686px;}
.y94_c00454{bottom:737.147925px;}
.y93_c00454{bottom:737.372514px;}
.y92_c00454{bottom:737.705838px;}
.y91_c00454{bottom:737.929137px;}
.y90_c00454{bottom:738.091665px;}
.y8f_c00454{bottom:738.593172px;}
.y8e_c00454{bottom:738.817878px;}
.y8d_c00454{bottom:739.361991px;}
.y8c_c00454{bottom:739.525986px;}
.y8a_c00454{bottom:771.747078px;}
.y87_c00454{bottom:771.747147px;}
.y86_c00454{bottom:771.747576px;}
.y8b_c00454{bottom:771.747609px;}
.y89_c00454{bottom:771.747678px;}
.y88_c00454{bottom:771.747798px;}
.y85_c00454{bottom:771.748176px;}
.y84_c00454{bottom:771.748776px;}
.y83_c00454{bottom:771.749085px;}
.y82_c00454{bottom:771.749445px;}
.y81_c00454{bottom:771.749694px;}
.y80_c00454{bottom:771.749763px;}
.y73_c00454{bottom:804.869769px;}
.y74_c00454{bottom:805.096857px;}
.y75_c00454{bottom:805.378470px;}
.y76_c00454{bottom:805.699449px;}
.y77_c00454{bottom:805.869060px;}
.y78_c00454{bottom:806.250939px;}
.y79_c00454{bottom:806.422152px;}
.y7a_c00454{bottom:806.583570px;}
.y7b_c00454{bottom:806.916162px;}
.y7c_c00454{bottom:807.694875px;}
.y7d_c00454{bottom:807.862764px;}
.y7e_c00454{bottom:808.035516px;}
.y7f_c00454{bottom:808.307136px;}
.y66_c00454{bottom:841.050000px;}
.y67_c00454{bottom:841.443768px;}
.y68_c00454{bottom:842.043195px;}
.y69_c00454{bottom:842.368851px;}
.y6a_c00454{bottom:842.833665px;}
.y6b_c00454{bottom:843.096204px;}
.y6c_c00454{bottom:843.559407px;}
.y6d_c00454{bottom:843.834879px;}
.y6e_c00454{bottom:844.233390px;}
.y6f_c00454{bottom:844.562160px;}
.y70_c00454{bottom:844.827804px;}
.y71_c00454{bottom:845.033670px;}
.y72_c00454{bottom:845.229663px;}
.y5a_c00454{bottom:880.197855px;}
.y5b_c00454{bottom:880.197997px;}
.y5c_c00454{bottom:880.198297px;}
.y59_c00454{bottom:880.198455px;}
.y65_c00454{bottom:880.198567px;}
.y64_c00454{bottom:880.198717px;}
.y5d_c00454{bottom:880.198747px;}
.y5e_c00454{bottom:880.198897px;}
.y5f_c00454{bottom:880.199048px;}
.y60_c00454{bottom:880.199197px;}
.y63_c00454{bottom:880.199325px;}
.y62_c00454{bottom:880.199633px;}
.y61_c00454{bottom:880.199640px;}
.y4d_c00454{bottom:912.059857px;}
.y4e_c00454{bottom:912.352552px;}
.y4f_c00454{bottom:913.344360px;}
.y50_c00454{bottom:913.645252px;}
.y51_c00454{bottom:914.330303px;}
.y52_c00454{bottom:914.539545px;}
.y53_c00454{bottom:915.139958px;}
.y54_c00454{bottom:915.437887px;}
.y55_c00454{bottom:916.123177px;}
.y56_c00454{bottom:916.829385px;}
.y57_c00454{bottom:917.335320px;}
.y58_c00454{bottom:918.144810px;}
.y41_c00454{bottom:946.889723px;}
.y42_c00454{bottom:947.093137px;}
.y43_c00454{bottom:947.683485px;}
.y44_c00454{bottom:947.955367px;}
.y45_c00454{bottom:948.416610px;}
.y46_c00454{bottom:948.617017px;}
.y47_c00454{bottom:949.078245px;}
.y48_c00454{bottom:949.410630px;}
.y49_c00454{bottom:949.542360px;}
.y4a_c00454{bottom:949.878660px;}
.y4b_c00454{bottom:950.419463px;}
.y4c_c00454{bottom:950.686020px;}
.y34_c00454{bottom:983.880000px;}
.y35_c00454{bottom:984.043395px;}
.y36_c00454{bottom:984.201330px;}
.y37_c00454{bottom:984.484920px;}
.y38_c00454{bottom:985.045252px;}
.y39_c00454{bottom:985.308427px;}
.y3a_c00454{bottom:985.698503px;}
.y3b_c00454{bottom:985.868677px;}
.y3c_c00454{bottom:985.973962px;}
.y3d_c00454{bottom:986.416695px;}
.y3e_c00454{bottom:986.642220px;}
.y3f_c00454{bottom:986.812305px;}
.y40_c00454{bottom:987.314430px;}
.y27_c00454{bottom:1020.867108px;}
.y28_c00454{bottom:1021.028736px;}
.y29_c00454{bottom:1021.247028px;}
.y2a_c00454{bottom:1021.580928px;}
.y2b_c00454{bottom:1022.021628px;}
.y2c_c00454{bottom:1022.192448px;}
.y2d_c00454{bottom:1022.356980px;}
.y2e_c00454{bottom:1022.686104px;}
.y2f_c00454{bottom:1022.855616px;}
.y30_c00454{bottom:1023.178980px;}
.y31_c00454{bottom:1023.516372px;}
.y32_c00454{bottom:1023.744984px;}
.y33_c00454{bottom:1024.073892px;}
.y21_c00454{bottom:1057.714308px;}
.y22_c00454{bottom:1057.714344px;}
.y23_c00454{bottom:1057.714380px;}
.y26_c00454{bottom:1057.714464px;}
.y25_c00454{bottom:1057.714476px;}
.y1c_c00454{bottom:1057.714716px;}
.y20_c00454{bottom:1057.714740px;}
.y1d_c00454{bottom:1057.714932px;}
.y24_c00454{bottom:1057.715028px;}
.y1e_c00454{bottom:1057.715076px;}
.y1f_c00454{bottom:1057.715172px;}
.y10_c00454{bottom:1092.690324px;}
.y11_c00454{bottom:1092.992520px;}
.y12_c00454{bottom:1093.218960px;}
.y13_c00454{bottom:1093.988412px;}
.y14_c00454{bottom:1094.304288px;}
.y15_c00454{bottom:1094.926416px;}
.y16_c00454{bottom:1095.159108px;}
.y17_c00454{bottom:1095.393744px;}
.y18_c00454{bottom:1095.693852px;}
.y19_c00454{bottom:1096.094736px;}
.y1a_c00454{bottom:1096.788420px;}
.y1b_c00454{bottom:1097.424660px;}
.y2_c00454{bottom:1127.521500px;}
.y3_c00454{bottom:1128.050784px;}
.y4_c00454{bottom:1128.320892px;}
.y5_c00454{bottom:1128.573624px;}
.y6_c00454{bottom:1128.850176px;}
.y7_c00454{bottom:1129.368576px;}
.y8_c00454{bottom:1129.634232px;}
.y9_c00454{bottom:1130.167716px;}
.ya_c00454{bottom:1130.426736px;}
.yb_c00454{bottom:1130.873820px;}
.yc_c00454{bottom:1131.051108px;}
.yd_c00454{bottom:1131.500388px;}
.ye_c00454{bottom:1131.757404px;}
.yf_c00454{bottom:1132.573812px;}
.y1_c00454{bottom:1200.093000px;}
.h5_c00454{height:66.002112px;}
.hf_c00454{height:72.000000px;}
.h9_c00454{height:72.000900px;}
.ha_c00454{height:72.001296px;}
.h3_c00454{height:72.002304px;}
.h12_c00454{height:72.004356px;}
.h2_c00454{height:78.000000px;}
.h7_c00454{height:78.000975px;}
.hd_c00454{height:78.001404px;}
.h13_c00454{height:78.004719px;}
.he_c00454{height:84.000000px;}
.h4_c00454{height:84.002688px;}
.h11_c00454{height:84.005082px;}
.h16_c00454{height:90.000000px;}
.hb_c00454{height:90.001620px;}
.h6_c00454{height:90.002880px;}
.h10_c00454{height:90.025916px;}
.h8_c00454{height:96.001200px;}
.hc_c00454{height:96.001728px;}
.h15_c00454{height:108.000000px;}
.h14_c00454{height:114.006897px;}
.h0_c00454{height:1251.450000px;}
.h1_c00454{height:1251.750000px;}
.w1_c00454{width:924.750000px;}
.w0_c00454{width:925.020000px;}
.x0_c00454{left:0.000000px;}
.x1_c00454{left:57.510000px;}
.x5_c00454{left:134.836500px;}
.x2d_c00454{left:136.140000px;}
.x60_c00454{left:137.664147px;}
.x79_c00454{left:139.320000px;}
.x95_c00454{left:140.472000px;}
.xb2_c00454{left:142.460499px;}
.xe2_c00454{left:143.620500px;}
.xda_c00454{left:157.950000px;}
.x83_c00454{left:160.920000px;}
.x24_c00454{left:167.719992px;}
.x2e_c00454{left:168.819000px;}
.x61_c00454{left:170.583816px;}
.xa2_c00454{left:173.752500px;}
.x13_c00454{left:178.555512px;}
.x40_c00454{left:180.630510px;}
.x9d_c00454{left:183.598500px;}
.xc4_c00454{left:185.040167px;}
.xe3_c00454{left:190.536000px;}
.x84_c00454{left:194.130000px;}
.x7a_c00454{left:195.210000px;}
.xaa_c00454{left:196.486274px;}
.xc8_c00454{left:197.949459px;}
.x6_c00454{left:200.997000px;}
.x41_c00454{left:202.231050px;}
.x96_c00454{left:204.468000px;}
.x14_c00454{left:210.985776px;}
.xba_c00454{left:218.700191px;}
.x8c_c00454{left:226.530000px;}
.x7b_c00454{left:228.960000px;}
.xe4_c00454{left:231.733500px;}
.x7_c00454{left:234.760500px;}
.x4f_c00454{left:237.436638px;}
.xdb_c00454{left:241.920000px;}
.x56_c00454{left:247.051251px;}
.x9e_c00454{left:250.018500px;}
.x2f_c00454{left:257.124000px;}
.x73_c00454{left:259.205070px;}
.x85_c00454{left:260.280000px;}
.xbb_c00454{left:263.252586px;}
.xe5_c00454{left:265.210500px;}
.x8_c00454{left:266.352000px;}
.x7c_c00454{left:270.270000px;}
.x97_c00454{left:271.714500px;}
.xc9_c00454{left:273.278951px;}
.xcf_c00454{left:275.400000px;}
.x25_c00454{left:278.184144px;}
.x57_c00454{left:279.992439px;}
.x66_c00454{left:281.345976px;}
.xa3_c00454{left:286.432500px;}
.x42_c00454{left:291.061770px;}
.x86_c00454{left:292.950000px;}
.xe6_c00454{left:297.583500px;}
.x9_c00454{left:300.921000px;}
.x4a_c00454{left:302.506500px;}
.x8d_c00454{left:304.020000px;}
.xc5_c00454{left:305.915517px;}
.x35_c00454{left:312.497528px;}
.x58_c00454{left:313.743654px;}
.xb3_c00454{left:317.370360px;}
.x15_c00454{left:320.855652px;}
.x62_c00454{left:324.207459px;}
.xa4_c00454{left:326.814000px;}
.x1d_c00454{left:332.917092px;}
.x50_c00454{left:335.702232px;}
.xab_c00454{left:337.951562px;}
.xd4_c00454{left:341.415000px;}
.x43_c00454{left:344.523105px;}
.x87_c00454{left:347.760000px;}
.xb4_c00454{left:350.297586px;}
.xca_c00454{left:351.421025px;}
.x4b_c00454{left:356.782500px;}
.xd5_c00454{left:363.822000px;}
.xa_c00454{left:365.721000px;}
.x44_c00454{left:368.013690px;}
.x30_c00454{left:369.190500px;}
.x98_c00454{left:370.515000px;}
.x67_c00454{left:380.706549px;}
.xbc_c00454{left:383.949689px;}
.xd0_c00454{left:385.560000px;}
.x36_c00454{left:389.445645px;}
.x74_c00454{left:392.316858px;}
.xdc_c00454{left:397.170000px;}
.xb_c00454{left:398.928000px;}
.x26_c00454{left:400.752096px;}
.x7d_c00454{left:402.840000px;}
.xac_c00454{left:405.185258px;}
.xd6_c00454{left:407.565000px;}
.x3c_c00454{left:411.902588px;}
.x2_c00454{left:415.800000px;}
.xcb_c00454{left:418.369736px;}
.xd1_c00454{left:419.850000px;}
.x31_c00454{left:421.825500px;}
.x37_c00454{left:422.926980px;}
.x59_c00454{left:424.446141px;}
.x8e_c00454{left:426.870000px;}
.x27_c00454{left:433.694388px;}
.x68_c00454{left:435.517020px;}
.x3_c00454{left:437.940000px;}
.xcc_c00454{left:440.801478px;}
.x1e_c00454{left:442.811124px;}
.x45_c00454{left:444.425603px;}
.x51_c00454{left:446.384898px;}
.x16_c00454{left:454.794720px;}
.x5a_c00454{left:456.847311px;}
.x6d_c00454{left:457.928130px;}
.xa5_c00454{left:460.465500px;}
.xc_c00454{left:465.613500px;}
.x46_c00454{left:467.376173px;}
.x75_c00454{left:468.998121px;}
.x4_c00454{left:470.880000px;}
.xd2_c00454{left:473.850000px;}
.x3d_c00454{left:478.583753px;}
.x8f_c00454{left:480.870000px;}
.xcd_c00454{left:484.538414px;}
.x17_c00454{left:488.006484px;}
.x5b_c00454{left:489.248481px;}
.x6e_c00454{left:492.219363px;}
.xb5_c00454{left:493.963238px;}
.xe7_c00454{left:496.600500px;}
.xd_c00454{left:497.991000px;}
.x28_c00454{left:499.586472px;}
.x63_c00454{left:501.330159px;}
.x88_c00454{left:503.280000px;}
.xc6_c00454{left:505.706028px;}
.xd7_c00454{left:506.934000px;}
.xdd_c00454{left:508.410000px;}
.x1f_c00454{left:510.582468px;}
.x3e_c00454{left:511.769093px;}
.x99_c00454{left:514.149000px;}
.xad_c00454{left:515.370813px;}
.xbd_c00454{left:516.528227px;}
.x18_c00454{left:521.461248px;}
.xd3_c00454{left:531.090000px;}
.x29_c00454{left:533.338776px;}
.xae_c00454{left:538.032567px;}
.xde_c00454{left:541.080000px;}
.x52_c00454{left:545.220492px;}
.x9a_c00454{left:547.642500px;}
.xbe_c00454{left:550.010786px;}
.xe_c00454{left:553.876500px;}
.x32_c00454{left:554.932500px;}
.x6f_c00454{left:557.290203px;}
.x7e_c00454{left:558.900000px;}
.xd8_c00454{left:562.029000px;}
.x19_c00454{left:564.412596px;}
.x47_c00454{left:566.197140px;}
.x64_c00454{left:568.030560px;}
.xa6_c00454{left:570.660000px;}
.xdf_c00454{left:574.020000px;}
.xf_c00454{left:576.037500px;}
.x38_c00454{left:577.094708px;}
.x69_c00454{left:579.160695px;}
.x90_c00454{left:581.580000px;}
.xaf_c00454{left:583.135542px;}
.xe8_c00454{left:586.821000px;}
.x3f_c00454{left:587.925570px;}
.x7f_c00454{left:591.570000px;}
.xb6_c00454{left:594.681449px;}
.x2a_c00454{left:598.135836px;}
.x4c_c00454{left:601.120500px;}
.xce_c00454{left:606.876440px;}
.x20_c00454{left:609.405792px;}
.x5c_c00454{left:613.181445px;}
.xa7_c00454{left:615.723000px;}
.xd9_c00454{left:618.997500px;}
.xe0_c00454{left:620.190000px;}
.x1a_c00454{left:621.648552px;}
.x70_c00454{left:624.791133px;}
.xb7_c00454{left:628.163691px;}
.x10_c00454{left:632.197500px;}
.x39_c00454{left:633.254430px;}
.x89_c00454{left:636.660000px;}
.x33_c00454{left:643.479000px;}
.xa8_c00454{left:649.491000px;}
.xb0_c00454{left:650.648255px;}
.xe1_c00454{left:652.050000px;}
.x71_c00454{left:658.542348px;}
.x11_c00454{left:664.324500px;}
.x2b_c00454{left:665.623956px;}
.x4d_c00454{left:667.539000px;}
.x9f_c00454{left:671.758500px;}
.xbf_c00454{left:672.868152px;}
.x5d_c00454{left:678.792303px;}
.xb8_c00454{left:683.295896px;}
.xe9_c00454{left:686.817000px;}
.x21_c00454{left:687.977820px;}
.x80_c00454{left:690.930000px;}
.x91_c00454{left:692.280000px;}
.x48_c00454{left:699.037463px;}
.x53_c00454{left:701.006928px;}
.x9b_c00454{left:704.485500px;}
.x2c_c00454{left:711.264048px;}
.x5e_c00454{left:712.273509px;}
.xea_c00454{left:717.610500px;}
.x1b_c00454{left:720.734844px;}
.x22_c00454{left:721.998492px;}
.x3a_c00454{left:723.414480px;}
.x92_c00454{left:725.760000px;}
.x54_c00454{left:734.488626px;}
.x81_c00454{left:737.370000px;}
.xc0_c00454{left:740.101787px;}
.x5f_c00454{left:744.674679px;}
.x76_c00454{left:747.103629px;}
.x8a_c00454{left:748.710000px;}
.x6a_c00454{left:758.174139px;}
.xa9_c00454{left:760.750500px;}
.x12_c00454{left:766.375500px;}
.x3b_c00454{left:767.725755px;}
.x55_c00454{left:769.030833px;}
.x82_c00454{left:770.310000px;}
.x93_c00454{left:771.930000px;}
.xc1_c00454{left:773.314313px;}
.xc7_c00454{left:776.274629px;}
.x23_c00454{left:777.620556px;}
.x77_c00454{left:781.124853px;}
.x9c_c00454{left:782.779500px;}
.x6b_c00454{left:791.385336px;}
.x8b_c00454{left:793.530000px;}
.x49_c00454{left:800.288498px;}
.x65_c00454{left:801.306468px;}
.xa0_c00454{left:805.408500px;}
.xc2_c00454{left:807.606954px;}
.x1c_c00454{left:811.703076px;}
.x78_c00454{left:815.146077px;}
.xb9_c00454{left:817.235333px;}
.x34_c00454{left:823.026000px;}
.xb1_c00454{left:828.331522px;}
.x4e_c00454{left:833.584500px;}
.x6c_c00454{left:835.665429px;}
.x72_c00454{left:836.744256px;}
.xa1_c00454{left:838.888500px;}
.x94_c00454{left:849.690000px;}
.xc3_c00454{left:862.420587px;}
@media print{
.v0_c00454{vertical-align:0.000000pt;}
.ls0_c00454{letter-spacing:0.000000pt;}
.ws0_c00454{word-spacing:0.000000pt;}
.fs3_c00454{font-size:58.668544pt;}
.fsd_c00454{font-size:64.000000pt;}
.fs7_c00454{font-size:64.000800pt;}
.fs8_c00454{font-size:64.001152pt;}
.fs1_c00454{font-size:64.002048pt;}
.fs10_c00454{font-size:64.003872pt;}
.fs0_c00454{font-size:69.333333pt;}
.fs5_c00454{font-size:69.334200pt;}
.fsb_c00454{font-size:69.334581pt;}
.fs11_c00454{font-size:69.337528pt;}
.fsc_c00454{font-size:74.666667pt;}
.fs2_c00454{font-size:74.669056pt;}
.fsf_c00454{font-size:74.671184pt;}
.fs14_c00454{font-size:80.000000pt;}
.fs9_c00454{font-size:80.001440pt;}
.fs4_c00454{font-size:80.002560pt;}
.fse_c00454{font-size:80.023037pt;}
.fs6_c00454{font-size:85.334400pt;}
.fsa_c00454{font-size:85.334869pt;}
.fs13_c00454{font-size:96.000000pt;}
.fs12_c00454{font-size:101.339464pt;}
.y0_c00454{bottom:0.000000pt;}
.y130_c00454{bottom:54.688000pt;}
.y12f_c00454{bottom:54.961333pt;}
.y12e_c00454{bottom:55.618667pt;}
.y12d_c00454{bottom:55.892000pt;}
.y12c_c00454{bottom:56.484000pt;}
.y12b_c00454{bottom:56.781333pt;}
.y12a_c00454{bottom:57.194667pt;}
.y129_c00454{bottom:57.584000pt;}
.y128_c00454{bottom:58.076000pt;}
.y127_c00454{bottom:58.366667pt;}
.y126_c00454{bottom:58.564000pt;}
.y125_c00454{bottom:59.353333pt;}
.y124_c00454{bottom:59.641333pt;}
.y123_c00454{bottom:59.938667pt;}
.y122_c00454{bottom:60.305333pt;}
.y121_c00454{bottom:60.722667pt;}
.y120_c00454{bottom:79.680000pt;}
.y11f_c00454{bottom:108.158667pt;}
.y11e_c00454{bottom:108.513333pt;}
.y11d_c00454{bottom:108.856000pt;}
.y11c_c00454{bottom:109.058667pt;}
.y11b_c00454{bottom:109.269333pt;}
.y11a_c00454{bottom:109.474667pt;}
.y119_c00454{bottom:109.746667pt;}
.y118_c00454{bottom:109.886667pt;}
.y117_c00454{bottom:110.350667pt;}
.y116_c00454{bottom:110.753333pt;}
.y115_c00454{bottom:111.120000pt;}
.y114_c00454{bottom:141.838667pt;}
.y113_c00454{bottom:167.715741pt;}
.y112_c00454{bottom:168.024957pt;}
.y111_c00454{bottom:168.424832pt;}
.y110_c00454{bottom:168.895779pt;}
.y10f_c00454{bottom:169.207415pt;}
.y10e_c00454{bottom:169.366740pt;}
.y10d_c00454{bottom:169.608640pt;}
.y10c_c00454{bottom:169.842661pt;}
.y10b_c00454{bottom:170.398692pt;}
.y10a_c00454{bottom:170.933889pt;}
.y109_c00454{bottom:171.354701pt;}
.y108_c00454{bottom:204.327879pt;}
.y107_c00454{bottom:205.637364pt;}
.y106_c00454{bottom:206.114101pt;}
.y105_c00454{bottom:207.239680pt;}
.y104_c00454{bottom:208.177584pt;}
.y103_c00454{bottom:209.602299pt;}
.y102_c00454{bottom:209.909044pt;}
.y101_c00454{bottom:211.019199pt;}
.y100_c00454{bottom:211.633452pt;}
.yff_c00454{bottom:212.738489pt;}
.yfe_c00454{bottom:213.351819pt;}
.yf2_c00454{bottom:238.353841pt;}
.yf6_c00454{bottom:238.354097pt;}
.yf4_c00454{bottom:238.354264pt;}
.yf3_c00454{bottom:238.354271pt;}
.yf1_c00454{bottom:238.354277pt;}
.yf5_c00454{bottom:238.354373pt;}
.yf7_c00454{bottom:238.354752pt;}
.yf9_c00454{bottom:238.354959pt;}
.yfa_c00454{bottom:238.354976pt;}
.yfc_c00454{bottom:238.355005pt;}
.yfd_c00454{bottom:238.355115pt;}
.yf8_c00454{bottom:238.355208pt;}
.yfb_c00454{bottom:238.355604pt;}
.yf0_c00454{bottom:268.436512pt;}
.yef_c00454{bottom:268.888873pt;}
.yee_c00454{bottom:269.508780pt;}
.yed_c00454{bottom:269.775171pt;}
.yec_c00454{bottom:269.950505pt;}
.yeb_c00454{bottom:270.217880pt;}
.yea_c00454{bottom:271.023992pt;}
.ye9_c00454{bottom:271.290177pt;}
.ye8_c00454{bottom:271.648373pt;}
.ye7_c00454{bottom:272.174025pt;}
.ye6_c00454{bottom:272.437307pt;}
.ye5_c00454{bottom:273.136417pt;}
.ye4_c00454{bottom:273.835499pt;}
.ye3_c00454{bottom:302.812188pt;}
.ye2_c00454{bottom:303.170881pt;}
.ye1_c00454{bottom:303.468055pt;}
.ye0_c00454{bottom:303.760107pt;}
.ydf_c00454{bottom:304.120195pt;}
.yde_c00454{bottom:304.361177pt;}
.ydd_c00454{bottom:304.481413pt;}
.ydc_c00454{bottom:304.895299pt;}
.ydb_c00454{bottom:305.069391pt;}
.yda_c00454{bottom:305.428084pt;}
.yd9_c00454{bottom:306.009252pt;}
.yd8_c00454{bottom:306.181891pt;}
.yd7_c00454{bottom:306.477581pt;}
.yd6_c00454{bottom:333.332631pt;}
.yd5_c00454{bottom:333.656632pt;}
.yd4_c00454{bottom:334.744503pt;}
.yd3_c00454{bottom:335.074679pt;}
.yd2_c00454{bottom:335.515295pt;}
.yd1_c00454{bottom:336.592752pt;}
.yd0_c00454{bottom:337.899567pt;}
.ycf_c00454{bottom:338.641333pt;}
.ycc_c00454{bottom:365.526667pt;}
.ycd_c00454{bottom:366.219883pt;}
.yce_c00454{bottom:368.623723pt;}
.ycb_c00454{bottom:396.732000pt;}
.yc0_c00454{bottom:429.360000pt;}
.yc1_c00454{bottom:429.644000pt;}
.yc2_c00454{bottom:429.942667pt;}
.yc3_c00454{bottom:430.381333pt;}
.yc4_c00454{bottom:430.677333pt;}
.yc5_c00454{bottom:431.018667pt;}
.yc6_c00454{bottom:431.168000pt;}
.yc7_c00454{bottom:431.366667pt;}
.yc8_c00454{bottom:431.514667pt;}
.yc9_c00454{bottom:431.865333pt;}
.yca_c00454{bottom:432.213333pt;}
.ybf_c00454{bottom:462.900000pt;}
.ybe_c00454{bottom:496.337333pt;}
.ybd_c00454{bottom:527.293333pt;}
.yb7_c00454{bottom:557.271499pt;}
.yb2_c00454{bottom:557.271691pt;}
.yb9_c00454{bottom:557.271757pt;}
.yb5_c00454{bottom:557.271835pt;}
.yb6_c00454{bottom:557.271880pt;}
.yb1_c00454{bottom:557.271912pt;}
.yb8_c00454{bottom:557.272077pt;}
.yb3_c00454{bottom:557.272216pt;}
.yb4_c00454{bottom:557.272261pt;}
.yba_c00454{bottom:557.272389pt;}
.ybb_c00454{bottom:557.272496pt;}
.ybc_c00454{bottom:557.272603pt;}
.ya8_c00454{bottom:590.545256pt;}
.ya9_c00454{bottom:590.545728pt;}
.ya7_c00454{bottom:590.545843pt;}
.ya6_c00454{bottom:590.545851pt;}
.yaa_c00454{bottom:590.546040pt;}
.ya5_c00454{bottom:590.546232pt;}
.yab_c00454{bottom:590.546253pt;}
.yad_c00454{bottom:590.546611pt;}
.yac_c00454{bottom:590.546619pt;}
.yae_c00454{bottom:590.546816pt;}
.yaf_c00454{bottom:590.547181pt;}
.yb0_c00454{bottom:590.547653pt;}
.y9b_c00454{bottom:620.813392pt;}
.y9a_c00454{bottom:620.813499pt;}
.ya3_c00454{bottom:620.813504pt;}
.y99_c00454{bottom:620.813560pt;}
.ya4_c00454{bottom:620.813656pt;}
.ya1_c00454{bottom:620.813680pt;}
.ya2_c00454{bottom:620.813717pt;}
.y9c_c00454{bottom:620.813811pt;}
.y9f_c00454{bottom:620.813848pt;}
.y9d_c00454{bottom:620.813963pt;}
.ya0_c00454{bottom:620.814000pt;}
.y9e_c00454{bottom:620.814275pt;}
.y98_c00454{bottom:654.403624pt;}
.y97_c00454{bottom:654.548157pt;}
.y96_c00454{bottom:654.849384pt;}
.y95_c00454{bottom:654.998832pt;}
.y94_c00454{bottom:655.242600pt;}
.y93_c00454{bottom:655.442235pt;}
.y92_c00454{bottom:655.738523pt;}
.y91_c00454{bottom:655.937011pt;}
.y90_c00454{bottom:656.081480pt;}
.y8f_c00454{bottom:656.527264pt;}
.y8e_c00454{bottom:656.727003pt;}
.y8d_c00454{bottom:657.210659pt;}
.y8c_c00454{bottom:657.356432pt;}
.y8a_c00454{bottom:685.997403pt;}
.y87_c00454{bottom:685.997464pt;}
.y86_c00454{bottom:685.997845pt;}
.y8b_c00454{bottom:685.997875pt;}
.y89_c00454{bottom:685.997936pt;}
.y88_c00454{bottom:685.998043pt;}
.y85_c00454{bottom:685.998379pt;}
.y84_c00454{bottom:685.998912pt;}
.y83_c00454{bottom:685.999187pt;}
.y82_c00454{bottom:685.999507pt;}
.y81_c00454{bottom:685.999728pt;}
.y80_c00454{bottom:685.999789pt;}
.y73_c00454{bottom:715.439795pt;}
.y74_c00454{bottom:715.641651pt;}
.y75_c00454{bottom:715.891973pt;}
.y76_c00454{bottom:716.177288pt;}
.y77_c00454{bottom:716.328053pt;}
.y78_c00454{bottom:716.667501pt;}
.y79_c00454{bottom:716.819691pt;}
.y7a_c00454{bottom:716.963173pt;}
.y7b_c00454{bottom:717.258811pt;}
.y7c_c00454{bottom:717.951000pt;}
.y7d_c00454{bottom:718.100235pt;}
.y7e_c00454{bottom:718.253792pt;}
.y7f_c00454{bottom:718.495232pt;}
.y66_c00454{bottom:747.600000pt;}
.y67_c00454{bottom:747.950016pt;}
.y68_c00454{bottom:748.482840pt;}
.y69_c00454{bottom:748.772312pt;}
.y6a_c00454{bottom:749.185480pt;}
.y6b_c00454{bottom:749.418848pt;}
.y6c_c00454{bottom:749.830584pt;}
.y6d_c00454{bottom:750.075448pt;}
.y6e_c00454{bottom:750.429680pt;}
.y6f_c00454{bottom:750.721920pt;}
.y70_c00454{bottom:750.958048pt;}
.y71_c00454{bottom:751.141040pt;}
.y72_c00454{bottom:751.315256pt;}
.y5a_c00454{bottom:782.398093pt;}
.y5b_c00454{bottom:782.398220pt;}
.y5c_c00454{bottom:782.398487pt;}
.y59_c00454{bottom:782.398627pt;}
.y65_c00454{bottom:782.398727pt;}
.y64_c00454{bottom:782.398860pt;}
.y5d_c00454{bottom:782.398887pt;}
.y5e_c00454{bottom:782.399020pt;}
.y5f_c00454{bottom:782.399153pt;}
.y60_c00454{bottom:782.399287pt;}
.y63_c00454{bottom:782.399400pt;}
.y62_c00454{bottom:782.399673pt;}
.y61_c00454{bottom:782.399680pt;}
.y4d_c00454{bottom:810.719873pt;}
.y4e_c00454{bottom:810.980047pt;}
.y4f_c00454{bottom:811.861653pt;}
.y50_c00454{bottom:812.129113pt;}
.y51_c00454{bottom:812.738047pt;}
.y52_c00454{bottom:812.924040pt;}
.y53_c00454{bottom:813.457740pt;}
.y54_c00454{bottom:813.722567pt;}
.y55_c00454{bottom:814.331713pt;}
.y56_c00454{bottom:814.959453pt;}
.y57_c00454{bottom:815.409173pt;}
.y58_c00454{bottom:816.128720pt;}
.y41_c00454{bottom:841.679753pt;}
.y42_c00454{bottom:841.860567pt;}
.y43_c00454{bottom:842.385320pt;}
.y44_c00454{bottom:842.626993pt;}
.y45_c00454{bottom:843.036987pt;}
.y46_c00454{bottom:843.215127pt;}
.y47_c00454{bottom:843.625107pt;}
.y48_c00454{bottom:843.920560pt;}
.y49_c00454{bottom:844.037653pt;}
.y4a_c00454{bottom:844.336587pt;}
.y4b_c00454{bottom:844.817300pt;}
.y4c_c00454{bottom:845.054240pt;}
.y34_c00454{bottom:874.560000pt;}
.y35_c00454{bottom:874.705240pt;}
.y36_c00454{bottom:874.845627pt;}
.y37_c00454{bottom:875.097707pt;}
.y38_c00454{bottom:875.595780pt;}
.y39_c00454{bottom:875.829713pt;}
.y3a_c00454{bottom:876.176447pt;}
.y3b_c00454{bottom:876.327713pt;}
.y3c_c00454{bottom:876.421300pt;}
.y3d_c00454{bottom:876.814840pt;}
.y3e_c00454{bottom:877.015307pt;}
.y3f_c00454{bottom:877.166493pt;}
.y40_c00454{bottom:877.612827pt;}
.y27_c00454{bottom:907.437429pt;}
.y28_c00454{bottom:907.581099pt;}
.y29_c00454{bottom:907.775136pt;}
.y2a_c00454{bottom:908.071936pt;}
.y2b_c00454{bottom:908.463669pt;}
.y2c_c00454{bottom:908.615509pt;}
.y2d_c00454{bottom:908.761760pt;}
.y2e_c00454{bottom:909.054315pt;}
.y2f_c00454{bottom:909.204992pt;}
.y30_c00454{bottom:909.492427pt;}
.y31_c00454{bottom:909.792331pt;}
.y32_c00454{bottom:909.995541pt;}
.y33_c00454{bottom:910.287904pt;}
.y21_c00454{bottom:940.190496pt;}
.y22_c00454{bottom:940.190528pt;}
.y23_c00454{bottom:940.190560pt;}
.y26_c00454{bottom:940.190635pt;}
.y25_c00454{bottom:940.190645pt;}
.y1c_c00454{bottom:940.190859pt;}
.y20_c00454{bottom:940.190880pt;}
.y1d_c00454{bottom:940.191051pt;}
.y24_c00454{bottom:940.191136pt;}
.y1e_c00454{bottom:940.191179pt;}
.y1f_c00454{bottom:940.191264pt;}
.y10_c00454{bottom:971.280288pt;}
.y11_c00454{bottom:971.548907pt;}
.y12_c00454{bottom:971.750187pt;}
.y13_c00454{bottom:972.434144pt;}
.y14_c00454{bottom:972.714923pt;}
.y15_c00454{bottom:973.267925pt;}
.y16_c00454{bottom:973.474763pt;}
.y17_c00454{bottom:973.683328pt;}
.y18_c00454{bottom:973.950091pt;}
.y19_c00454{bottom:974.306432pt;}
.y1a_c00454{bottom:974.923040pt;}
.y1b_c00454{bottom:975.488587pt;}
.y2_c00454{bottom:1002.241333pt;}
.y3_c00454{bottom:1002.711808pt;}
.y4_c00454{bottom:1002.951904pt;}
.y5_c00454{bottom:1003.176555pt;}
.y6_c00454{bottom:1003.422379pt;}
.y7_c00454{bottom:1003.883179pt;}
.y8_c00454{bottom:1004.119317pt;}
.y9_c00454{bottom:1004.593525pt;}
.ya_c00454{bottom:1004.823765pt;}
.yb_c00454{bottom:1005.221173pt;}
.yc_c00454{bottom:1005.378763pt;}
.yd_c00454{bottom:1005.778123pt;}
.ye_c00454{bottom:1006.006581pt;}
.yf_c00454{bottom:1006.732277pt;}
.y1_c00454{bottom:1066.749333pt;}
.h5_c00454{height:58.668544pt;}
.hf_c00454{height:64.000000pt;}
.h9_c00454{height:64.000800pt;}
.ha_c00454{height:64.001152pt;}
.h3_c00454{height:64.002048pt;}
.h12_c00454{height:64.003872pt;}
.h2_c00454{height:69.333333pt;}
.h7_c00454{height:69.334200pt;}
.hd_c00454{height:69.334581pt;}
.h13_c00454{height:69.337528pt;}
.he_c00454{height:74.666667pt;}
.h4_c00454{height:74.669056pt;}
.h11_c00454{height:74.671184pt;}
.h16_c00454{height:80.000000pt;}
.hb_c00454{height:80.001440pt;}
.h6_c00454{height:80.002560pt;}
.h10_c00454{height:80.023037pt;}
.h8_c00454{height:85.334400pt;}
.hc_c00454{height:85.334869pt;}
.h15_c00454{height:96.000000pt;}
.h14_c00454{height:101.339464pt;}
.h0_c00454{height:1112.400000pt;}
.h1_c00454{height:1112.666667pt;}
.w1_c00454{width:822.000000pt;}
.w0_c00454{width:822.240000pt;}
.x0_c00454{left:0.000000pt;}
.x1_c00454{left:51.120000pt;}
.x5_c00454{left:119.854667pt;}
.x2d_c00454{left:121.013333pt;}
.x60_c00454{left:122.368131pt;}
.x79_c00454{left:123.840000pt;}
.x95_c00454{left:124.864000pt;}
.xb2_c00454{left:126.631555pt;}
.xe2_c00454{left:127.662667pt;}
.xda_c00454{left:140.400000pt;}
.x83_c00454{left:143.040000pt;}
.x24_c00454{left:149.084437pt;}
.x2e_c00454{left:150.061333pt;}
.x61_c00454{left:151.630059pt;}
.xa2_c00454{left:154.446667pt;}
.x13_c00454{left:158.716011pt;}
.x40_c00454{left:160.560453pt;}
.x9d_c00454{left:163.198667pt;}
.xc4_c00454{left:164.480148pt;}
.xe3_c00454{left:169.365333pt;}
.x84_c00454{left:172.560000pt;}
.x7a_c00454{left:173.520000pt;}
.xaa_c00454{left:174.654465pt;}
.xc8_c00454{left:175.955075pt;}
.x6_c00454{left:178.664000pt;}
.x41_c00454{left:179.760933pt;}
.x96_c00454{left:181.749333pt;}
.x14_c00454{left:187.542912pt;}
.xba_c00454{left:194.400169pt;}
.x8c_c00454{left:201.360000pt;}
.x7b_c00454{left:203.520000pt;}
.xe4_c00454{left:205.985333pt;}
.x7_c00454{left:208.676000pt;}
.x4f_c00454{left:211.054789pt;}
.xdb_c00454{left:215.040000pt;}
.x56_c00454{left:219.601112pt;}
.x9e_c00454{left:222.238667pt;}
.x2f_c00454{left:228.554667pt;}
.x73_c00454{left:230.404507pt;}
.x85_c00454{left:231.360000pt;}
.xbb_c00454{left:234.002299pt;}
.xe5_c00454{left:235.742667pt;}
.x8_c00454{left:236.757333pt;}
.x7c_c00454{left:240.240000pt;}
.x97_c00454{left:241.524000pt;}
.xc9_c00454{left:242.914623pt;}
.xcf_c00454{left:244.800000pt;}
.x25_c00454{left:247.274795pt;}
.x57_c00454{left:248.882168pt;}
.x66_c00454{left:250.085312pt;}
.xa3_c00454{left:254.606667pt;}
.x42_c00454{left:258.721573pt;}
.x86_c00454{left:260.400000pt;}
.xe6_c00454{left:264.518667pt;}
.x9_c00454{left:267.485333pt;}
.x4a_c00454{left:268.894667pt;}
.x8d_c00454{left:270.240000pt;}
.xc5_c00454{left:271.924904pt;}
.x35_c00454{left:277.775580pt;}
.x58_c00454{left:278.883248pt;}
.xb3_c00454{left:282.106987pt;}
.x15_c00454{left:285.205024pt;}
.x62_c00454{left:288.184408pt;}
.xa4_c00454{left:290.501333pt;}
.x1d_c00454{left:295.926304pt;}
.x50_c00454{left:298.401984pt;}
.xab_c00454{left:300.401388pt;}
.xd4_c00454{left:303.480000pt;}
.x43_c00454{left:306.242760pt;}
.x87_c00454{left:309.120000pt;}
.xb4_c00454{left:311.375632pt;}
.xca_c00454{left:312.374244pt;}
.x4b_c00454{left:317.140000pt;}
.xd5_c00454{left:323.397333pt;}
.xa_c00454{left:325.085333pt;}
.x44_c00454{left:327.123280pt;}
.x30_c00454{left:328.169333pt;}
.x98_c00454{left:329.346667pt;}
.x67_c00454{left:338.405821pt;}
.xbc_c00454{left:341.288612pt;}
.xd0_c00454{left:342.720000pt;}
.x36_c00454{left:346.173907pt;}
.x74_c00454{left:348.726096pt;}
.xdc_c00454{left:353.040000pt;}
.xb_c00454{left:354.602667pt;}
.x26_c00454{left:356.224085pt;}
.x7d_c00454{left:358.080000pt;}
.xac_c00454{left:360.164673pt;}
.xd6_c00454{left:362.280000pt;}
.x3c_c00454{left:366.135633pt;}
.x2_c00454{left:369.600000pt;}
.xcb_c00454{left:371.884209pt;}
.xd1_c00454{left:373.200000pt;}
.x31_c00454{left:374.956000pt;}
.x37_c00454{left:375.935093pt;}
.x59_c00454{left:377.285459pt;}
.x8e_c00454{left:379.440000pt;}
.x27_c00454{left:385.506123pt;}
.x68_c00454{left:387.126240pt;}
.x3_c00454{left:389.280000pt;}
.xcc_c00454{left:391.823536pt;}
.x1e_c00454{left:393.609888pt;}
.x45_c00454{left:395.044980pt;}
.x51_c00454{left:396.786576pt;}
.x16_c00454{left:404.261973pt;}
.x5a_c00454{left:406.086499pt;}
.x6d_c00454{left:407.047227pt;}
.xa5_c00454{left:409.302667pt;}
.xc_c00454{left:413.878667pt;}
.x46_c00454{left:415.445487pt;}
.x75_c00454{left:416.887219pt;}
.x4_c00454{left:418.560000pt;}
.xd2_c00454{left:421.200000pt;}
.x3d_c00454{left:425.407780pt;}
.x8f_c00454{left:427.440000pt;}
.xcd_c00454{left:430.700812pt;}
.x17_c00454{left:433.783541pt;}
.x5b_c00454{left:434.887539pt;}
.x6e_c00454{left:437.528323pt;}
.xb5_c00454{left:439.078433pt;}
.xe7_c00454{left:441.422667pt;}
.xd_c00454{left:442.658667pt;}
.x28_c00454{left:444.076864pt;}
.x63_c00454{left:445.626808pt;}
.x88_c00454{left:447.360000pt;}
.xc6_c00454{left:449.516469pt;}
.xd7_c00454{left:450.608000pt;}
.xdd_c00454{left:451.920000pt;}
.x1f_c00454{left:453.851083pt;}
.x3e_c00454{left:454.905860pt;}
.x99_c00454{left:457.021333pt;}
.xad_c00454{left:458.107389pt;}
.xbd_c00454{left:459.136201pt;}
.x18_c00454{left:463.521109pt;}
.xd3_c00454{left:472.080000pt;}
.x29_c00454{left:474.078912pt;}
.xae_c00454{left:478.251171pt;}
.xde_c00454{left:480.960000pt;}
.x52_c00454{left:484.640437pt;}
.x9a_c00454{left:486.793333pt;}
.xbe_c00454{left:488.898476pt;}
.xe_c00454{left:492.334667pt;}
.x32_c00454{left:493.273333pt;}
.x6f_c00454{left:495.369069pt;}
.x7e_c00454{left:496.800000pt;}
.xd8_c00454{left:499.581333pt;}
.x19_c00454{left:501.700085pt;}
.x47_c00454{left:503.286347pt;}
.x64_c00454{left:504.916053pt;}
.xa6_c00454{left:507.253333pt;}
.xdf_c00454{left:510.240000pt;}
.xf_c00454{left:512.033333pt;}
.x38_c00454{left:512.973073pt;}
.x69_c00454{left:514.809507pt;}
.x90_c00454{left:516.960000pt;}
.xaf_c00454{left:518.342704pt;}
.xe8_c00454{left:521.618667pt;}
.x3f_c00454{left:522.600507pt;}
.x7f_c00454{left:525.840000pt;}
.xb6_c00454{left:528.605732pt;}
.x2a_c00454{left:531.676299pt;}
.x4c_c00454{left:534.329333pt;}
.xce_c00454{left:539.445724pt;}
.x20_c00454{left:541.694037pt;}
.x5c_c00454{left:545.050173pt;}
.xa7_c00454{left:547.309333pt;}
.xd9_c00454{left:550.220000pt;}
.xe0_c00454{left:551.280000pt;}
.x1a_c00454{left:552.576491pt;}
.x70_c00454{left:555.369896pt;}
.xb7_c00454{left:558.367725pt;}
.x10_c00454{left:561.953333pt;}
.x39_c00454{left:562.892827pt;}
.x89_c00454{left:565.920000pt;}
.x33_c00454{left:571.981333pt;}
.xa8_c00454{left:577.325333pt;}
.xb0_c00454{left:578.354004pt;}
.xe1_c00454{left:579.600000pt;}
.x71_c00454{left:585.370976pt;}
.x11_c00454{left:590.510667pt;}
.x2b_c00454{left:591.665739pt;}
.x4d_c00454{left:593.368000pt;}
.x9f_c00454{left:597.118667pt;}
.xbf_c00454{left:598.105024pt;}
.x5d_c00454{left:603.370936pt;}
.xb8_c00454{left:607.374129pt;}
.xe9_c00454{left:610.504000pt;}
.x21_c00454{left:611.535840pt;}
.x80_c00454{left:614.160000pt;}
.x91_c00454{left:615.360000pt;}
.x48_c00454{left:621.366633pt;}
.x53_c00454{left:623.117269pt;}
.x9b_c00454{left:626.209333pt;}
.x2c_c00454{left:632.234709pt;}
.x5e_c00454{left:633.132008pt;}
.xea_c00454{left:637.876000pt;}
.x1b_c00454{left:640.653195pt;}
.x22_c00454{left:641.776437pt;}
.x3a_c00454{left:643.035093pt;}
.x92_c00454{left:645.120000pt;}
.x54_c00454{left:652.878779pt;}
.x81_c00454{left:655.440000pt;}
.xc0_c00454{left:657.868255pt;}
.x5f_c00454{left:661.933048pt;}
.x76_c00454{left:664.092115pt;}
.x8a_c00454{left:665.520000pt;}
.x6a_c00454{left:673.932568pt;}
.xa9_c00454{left:676.222667pt;}
.x12_c00454{left:681.222667pt;}
.x3b_c00454{left:682.422893pt;}
.x55_c00454{left:683.582963pt;}
.x82_c00454{left:684.720000pt;}
.x93_c00454{left:686.160000pt;}
.xc1_c00454{left:687.390500pt;}
.xc7_c00454{left:690.021892pt;}
.x23_c00454{left:691.218272pt;}
.x77_c00454{left:694.333203pt;}
.x9c_c00454{left:695.804000pt;}
.x6b_c00454{left:703.453632pt;}
.x8b_c00454{left:705.360000pt;}
.x49_c00454{left:711.367553pt;}
.x65_c00454{left:712.272416pt;}
.xa0_c00454{left:715.918667pt;}
.xc2_c00454{left:717.872848pt;}
.x1c_c00454{left:721.513845pt;}
.x78_c00454{left:724.574291pt;}
.xb9_c00454{left:726.431407pt;}
.x34_c00454{left:731.578667pt;}
.xb1_c00454{left:736.294687pt;}
.x4e_c00454{left:740.964000pt;}
.x6c_c00454{left:742.813715pt;}
.x72_c00454{left:743.772672pt;}
.xa1_c00454{left:745.678667pt;}
.x94_c00454{left:755.280000pt;}
.xc3_c00454{left:766.596077pt;}
}





/* 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_c00455 {
    display:none;
  }
  .loading-indicator_c00455.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00455 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_c00455 { 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_c00455" -> "#page-container .classname_c00455")
 */
.pf_c00455 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00455 { /* 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_c00455.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00455 { /* 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_c00455 { /* 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_c00455 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00455 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00455 {overflow:visible;}
  }
}
.c_c00455 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00455 { /* 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_c00455:after { /* webkit #35443 */
  content: '';
}
.t_c00455:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00455 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 */
}
.__c00455 { /* 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_c00455 { /* info for Javascript */
  display:none;
}
.l_c00455 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00455 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00455 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00455: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_c00455 {
    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_c00455.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00455.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_c00455 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00455{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00455;src:url('chunks/assets/font_dbd529e162d5851c7bfb6d27.woff2')format("woff");}.ff1_c00455{font-family:ff1_c00455;line-height:1.000000;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;}
.m1_c00455{transform:matrix(0.010935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.010935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.010935,0.000000,0.000000,0.250000,0,0);}
.m2a_c00455{transform:matrix(0.099515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.099515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.099515,0.000000,0.000000,0.250000,0,0);}
.m11_c00455{transform:matrix(0.123545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123545,0.000000,0.000000,0.250000,0,0);}
.m63_c00455{transform:matrix(0.134735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134735,0.000000,0.000000,0.250000,0,0);}
.m66_c00455{transform:matrix(0.150540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150540,0.000000,0.000000,0.250000,0,0);}
.m68_c00455{transform:matrix(0.159530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159530,0.000000,0.000000,0.250000,0,0);}
.ma_c00455{transform:matrix(0.161513,0.000808,-0.001250,0.249997,0,0);-ms-transform:matrix(0.161513,0.000808,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.161513,0.000808,-0.001250,0.249997,0,0);}
.m91_c00455{transform:matrix(0.165010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165010,0.000000,0.000000,0.250000,0,0);}
.m72_c00455{transform:matrix(0.170450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170450,0.000000,0.000000,0.250000,0,0);}
.m16_c00455{transform:matrix(0.170600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170600,0.000000,0.000000,0.250000,0,0);}
.m32_c00455{transform:matrix(0.171130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171130,0.000000,0.000000,0.250000,0,0);}
.m6d_c00455{transform:matrix(0.171815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171815,0.000000,0.000000,0.250000,0,0);}
.m81_c00455{transform:matrix(0.173755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173755,0.000000,0.000000,0.250000,0,0);}
.m47_c00455{transform:matrix(0.174675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174675,0.000000,0.000000,0.250000,0,0);}
.m4a_c00455{transform:matrix(0.179440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179440,0.000000,0.000000,0.250000,0,0);}
.m75_c00455{transform:matrix(0.179625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179625,0.000000,0.000000,0.250000,0,0);}
.m15_c00455{transform:matrix(0.179970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179970,0.000000,0.000000,0.250000,0,0);}
.m74_c00455{transform:matrix(0.182910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182910,0.000000,0.000000,0.250000,0,0);}
.m94_c00455{transform:matrix(0.183055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183055,0.000000,0.000000,0.250000,0,0);}
.m57_c00455{transform:matrix(0.187840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187840,0.000000,0.000000,0.250000,0,0);}
.m13_c00455{transform:matrix(0.189685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189685,0.000000,0.000000,0.250000,0,0);}
.m8c_c00455{transform:matrix(0.190405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190405,0.000000,0.000000,0.250000,0,0);}
.m8e_c00455{transform:matrix(0.190465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190465,0.000000,0.000000,0.250000,0,0);}
.m3e_c00455{transform:matrix(0.191760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191760,0.000000,0.000000,0.250000,0,0);}
.m40_c00455{transform:matrix(0.194270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194270,0.000000,0.000000,0.250000,0,0);}
.m4d_c00455{transform:matrix(0.194940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194940,0.000000,0.000000,0.250000,0,0);}
.m71_c00455{transform:matrix(0.195405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195405,0.000000,0.000000,0.250000,0,0);}
.m2d_c00455{transform:matrix(0.195590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195590,0.000000,0.000000,0.250000,0,0);}
.m18_c00455{transform:matrix(0.196360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196360,0.000000,0.000000,0.250000,0,0);}
.m3a_c00455{transform:matrix(0.196365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196365,0.000000,0.000000,0.250000,0,0);}
.m6b_c00455{transform:matrix(0.197895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197895,0.000000,0.000000,0.250000,0,0);}
.m2c_c00455{transform:matrix(0.199865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199865,0.000000,0.000000,0.250000,0,0);}
.m3d_c00455{transform:matrix(0.201360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201360,0.000000,0.000000,0.250000,0,0);}
.m61_c00455{transform:matrix(0.203670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203670,0.000000,0.000000,0.250000,0,0);}
.mc_c00455{transform:matrix(0.203852,0.001019,-0.001250,0.249997,0,0);-ms-transform:matrix(0.203852,0.001019,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.203852,0.001019,-0.001250,0.249997,0,0);}
.m30_c00455{transform:matrix(0.204195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204195,0.000000,0.000000,0.250000,0,0);}
.m79_c00455{transform:matrix(0.204915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204915,0.000000,0.000000,0.250000,0,0);}
.m34_c00455{transform:matrix(0.206220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206220,0.000000,0.000000,0.250000,0,0);}
.m2f_c00455{transform:matrix(0.207545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207545,0.000000,0.000000,0.250000,0,0);}
.m8_c00455{transform:matrix(0.207837,0.001039,-0.001250,0.249997,0,0);-ms-transform:matrix(0.207837,0.001039,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.207837,0.001039,-0.001250,0.249997,0,0);}
.m12_c00455{transform:matrix(0.208665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208665,0.000000,0.000000,0.250000,0,0);}
.m60_c00455{transform:matrix(0.209050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209050,0.000000,0.000000,0.250000,0,0);}
.m76_c00455{transform:matrix(0.209570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209570,0.000000,0.000000,0.250000,0,0);}
.m84_c00455{transform:matrix(0.209595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209595,0.000000,0.000000,0.250000,0,0);}
.m5_c00455{transform:matrix(0.210297,0.001051,-0.001250,0.249997,0,0);-ms-transform:matrix(0.210297,0.001051,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.210297,0.001051,-0.001250,0.249997,0,0);}
.m8f_c00455{transform:matrix(0.210615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210615,0.000000,0.000000,0.250000,0,0);}
.m8b_c00455{transform:matrix(0.210830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210830,0.000000,0.000000,0.250000,0,0);}
.m9e_c00455{transform:matrix(0.210930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210930,0.000000,0.000000,0.250000,0,0);}
.m92_c00455{transform:matrix(0.211265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211265,0.000000,0.000000,0.250000,0,0);}
.m5a_c00455{transform:matrix(0.211365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211365,0.000000,0.000000,0.250000,0,0);}
.m69_c00455{transform:matrix(0.211455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211455,0.000000,0.000000,0.250000,0,0);}
.ma1_c00455{transform:matrix(0.212515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212515,0.000000,0.000000,0.250000,0,0);}
.m78_c00455{transform:matrix(0.212530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212530,0.000000,0.000000,0.250000,0,0);}
.m5b_c00455{transform:matrix(0.213360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213360,0.000000,0.000000,0.250000,0,0);}
.m9c_c00455{transform:matrix(0.213510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213510,0.000000,0.000000,0.250000,0,0);}
.m65_c00455{transform:matrix(0.213730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213730,0.000000,0.000000,0.250000,0,0);}
.m14_c00455{transform:matrix(0.215465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215465,0.000000,0.000000,0.250000,0,0);}
.m45_c00455{transform:matrix(0.215790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215790,0.000000,0.000000,0.250000,0,0);}
.m9f_c00455{transform:matrix(0.216335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216335,0.000000,0.000000,0.250000,0,0);}
.m6f_c00455{transform:matrix(0.216600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216600,0.000000,0.000000,0.250000,0,0);}
.m90_c00455{transform:matrix(0.218015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218015,0.000000,0.000000,0.250000,0,0);}
.m98_c00455{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00455{transform:matrix(0.219345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219345,0.000000,0.000000,0.250000,0,0);}
.m9d_c00455{transform:matrix(0.220960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220960,0.000000,0.000000,0.250000,0,0);}
.m3f_c00455{transform:matrix(0.222405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222405,0.000000,0.000000,0.250000,0,0);}
.m93_c00455{transform:matrix(0.222755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222755,0.000000,0.000000,0.250000,0,0);}
.m7d_c00455{transform:matrix(0.224860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224860,0.000000,0.000000,0.250000,0,0);}
.m54_c00455{transform:matrix(0.224880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224880,0.000000,0.000000,0.250000,0,0);}
.m41_c00455{transform:matrix(0.225130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225130,0.000000,0.000000,0.250000,0,0);}
.m7a_c00455{transform:matrix(0.225245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225245,0.000000,0.000000,0.250000,0,0);}
.md_c00455{transform:matrix(0.225662,0.001128,-0.001250,0.249997,0,0);-ms-transform:matrix(0.225662,0.001128,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.225662,0.001128,-0.001250,0.249997,0,0);}
.m42_c00455{transform:matrix(0.225940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225940,0.000000,0.000000,0.250000,0,0);}
.m4c_c00455{transform:matrix(0.226040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226040,0.000000,0.000000,0.250000,0,0);}
.m2e_c00455{transform:matrix(0.226915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226915,0.000000,0.000000,0.250000,0,0);}
.m1d_c00455{transform:matrix(0.226955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226955,0.000000,0.000000,0.250000,0,0);}
.me_c00455{transform:matrix(0.228267,0.001141,-0.001250,0.249997,0,0);-ms-transform:matrix(0.228267,0.001141,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.228267,0.001141,-0.001250,0.249997,0,0);}
.m3c_c00455{transform:matrix(0.228455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228455,0.000000,0.000000,0.250000,0,0);}
.m4b_c00455{transform:matrix(0.230295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230295,0.000000,0.000000,0.250000,0,0);}
.m7_c00455{transform:matrix(0.230447,0.001152,-0.001250,0.249997,0,0);-ms-transform:matrix(0.230447,0.001152,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.230447,0.001152,-0.001250,0.249997,0,0);}
.m7e_c00455{transform:matrix(0.230455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230455,0.000000,0.000000,0.250000,0,0);}
.m53_c00455{transform:matrix(0.233915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233915,0.000000,0.000000,0.250000,0,0);}
.m2_c00455{transform:matrix(0.234285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234285,0.000000,0.000000,0.250000,0,0);}
.m31_c00455{transform:matrix(0.234780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234780,0.000000,0.000000,0.250000,0,0);}
.m55_c00455{transform:matrix(0.235275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235275,0.000000,0.000000,0.250000,0,0);}
.mb_c00455{transform:matrix(0.235932,0.001180,-0.001250,0.249997,0,0);-ms-transform:matrix(0.235932,0.001180,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.235932,0.001180,-0.001250,0.249997,0,0);}
.m21_c00455{transform:matrix(0.236010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236010,0.000000,0.000000,0.250000,0,0);}
.m10_c00455{transform:matrix(0.238207,0.001191,-0.001250,0.249997,0,0);-ms-transform:matrix(0.238207,0.001191,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.238207,0.001191,-0.001250,0.249997,0,0);}
.m88_c00455{transform:matrix(0.238850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238850,0.000000,0.000000,0.250000,0,0);}
.m39_c00455{transform:matrix(0.239550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239550,0.000000,0.000000,0.250000,0,0);}
.m17_c00455{transform:matrix(0.239790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239790,0.000000,0.000000,0.250000,0,0);}
.m3b_c00455{transform:matrix(0.241235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241235,0.000000,0.000000,0.250000,0,0);}
.m95_c00455{transform:matrix(0.241515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241515,0.000000,0.000000,0.250000,0,0);}
.m35_c00455{transform:matrix(0.241660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241660,0.000000,0.000000,0.250000,0,0);}
.m4e_c00455{transform:matrix(0.242160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242160,0.000000,0.000000,0.250000,0,0);}
.m58_c00455{transform:matrix(0.242165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242165,0.000000,0.000000,0.250000,0,0);}
.m7b_c00455{transform:matrix(0.245175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245175,0.000000,0.000000,0.250000,0,0);}
.m19_c00455{transform:matrix(0.245525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245525,0.000000,0.000000,0.250000,0,0);}
.m73_c00455{transform:matrix(0.246820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246820,0.000000,0.000000,0.250000,0,0);}
.m85_c00455{transform:matrix(0.247080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247080,0.000000,0.000000,0.250000,0,0);}
.m8d_c00455{transform:matrix(0.248530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248530,0.000000,0.000000,0.250000,0,0);}
.m49_c00455{transform:matrix(0.248995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248995,0.000000,0.000000,0.250000,0,0);}
.m43_c00455{transform:matrix(0.250505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250505,0.000000,0.000000,0.250000,0,0);}
.m99_c00455{transform:matrix(0.250715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250715,0.000000,0.000000,0.250000,0,0);}
.m5f_c00455{transform:matrix(0.250760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250760,0.000000,0.000000,0.250000,0,0);}
.m46_c00455{transform:matrix(0.250780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250780,0.000000,0.000000,0.250000,0,0);}
.ma0_c00455{transform:matrix(0.250940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250940,0.000000,0.000000,0.250000,0,0);}
.m5c_c00455{transform:matrix(0.251050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251050,0.000000,0.000000,0.250000,0,0);}
.m6c_c00455{transform:matrix(0.252475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252475,0.000000,0.000000,0.250000,0,0);}
.m67_c00455{transform:matrix(0.252800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252800,0.000000,0.000000,0.250000,0,0);}
.m9_c00455{transform:matrix(0.252892,0.001264,-0.001250,0.249997,0,0);-ms-transform:matrix(0.252892,0.001264,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.252892,0.001264,-0.001250,0.249997,0,0);}
.m1c_c00455{transform:matrix(0.254565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254565,0.000000,0.000000,0.250000,0,0);}
.m20_c00455{transform:matrix(0.254775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254775,0.000000,0.000000,0.250000,0,0);}
.m50_c00455{transform:matrix(0.256015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256015,0.000000,0.000000,0.250000,0,0);}
.m56_c00455{transform:matrix(0.257840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257840,0.000000,0.000000,0.250000,0,0);}
.m82_c00455{transform:matrix(0.259195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259195,0.000000,0.000000,0.250000,0,0);}
.ma2_c00455{transform:matrix(0.260700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260700,0.000000,0.000000,0.250000,0,0);}
.m7f_c00455{transform:matrix(0.261410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261410,0.000000,0.000000,0.250000,0,0);}
.m59_c00455{transform:matrix(0.262175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262175,0.000000,0.000000,0.250000,0,0);}
.m6_c00455{transform:matrix(0.264852,0.001324,-0.001250,0.249997,0,0);-ms-transform:matrix(0.264852,0.001324,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.264852,0.001324,-0.001250,0.249997,0,0);}
.m2b_c00455{transform:matrix(0.266150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266150,0.000000,0.000000,0.250000,0,0);}
.m51_c00455{transform:matrix(0.267010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267010,0.000000,0.000000,0.250000,0,0);}
.m70_c00455{transform:matrix(0.267380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267380,0.000000,0.000000,0.250000,0,0);}
.m3_c00455{transform:matrix(0.267415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267415,0.000000,0.000000,0.250000,0,0);}
.m27_c00455{transform:matrix(0.267555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267555,0.000000,0.000000,0.250000,0,0);}
.m80_c00455{transform:matrix(0.270075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270075,0.000000,0.000000,0.250000,0,0);}
.m1b_c00455{transform:matrix(0.270670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270670,0.000000,0.000000,0.250000,0,0);}
.m22_c00455{transform:matrix(0.271310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271310,0.000000,0.000000,0.250000,0,0);}
.m89_c00455{transform:matrix(0.272670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272670,0.000000,0.000000,0.250000,0,0);}
.mf_c00455{transform:matrix(0.275192,0.001376,-0.001250,0.249997,0,0);-ms-transform:matrix(0.275192,0.001376,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.275192,0.001376,-0.001250,0.249997,0,0);}
.m37_c00455{transform:matrix(0.278740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278740,0.000000,0.000000,0.250000,0,0);}
.m48_c00455{transform:matrix(0.279145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279145,0.000000,0.000000,0.250000,0,0);}
.m28_c00455{transform:matrix(0.281840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281840,0.000000,0.000000,0.250000,0,0);}
.m26_c00455{transform:matrix(0.290220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290220,0.000000,0.000000,0.250000,0,0);}
.m9a_c00455{transform:matrix(0.291320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291320,0.000000,0.000000,0.250000,0,0);}
.m33_c00455{transform:matrix(0.293390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293390,0.000000,0.000000,0.250000,0,0);}
.m0_c00455{transform:matrix(0.295755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295755,0.000000,0.000000,0.250000,0,0);}
.m4f_c00455{transform:matrix(0.296565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296565,0.000000,0.000000,0.250000,0,0);}
.m86_c00455{transform:matrix(0.300410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300410,0.000000,0.000000,0.250000,0,0);}
.m24_c00455{transform:matrix(0.307695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307695,0.000000,0.000000,0.250000,0,0);}
.m64_c00455{transform:matrix(0.308415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308415,0.000000,0.000000,0.250000,0,0);}
.m44_c00455{transform:matrix(0.310105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310105,0.000000,0.000000,0.250000,0,0);}
.m36_c00455{transform:matrix(0.311950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311950,0.000000,0.000000,0.250000,0,0);}
.m62_c00455{transform:matrix(0.312870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312870,0.000000,0.000000,0.250000,0,0);}
.m6a_c00455{transform:matrix(0.322965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322965,0.000000,0.000000,0.250000,0,0);}
.m1f_c00455{transform:matrix(0.341185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341185,0.000000,0.000000,0.250000,0,0);}
.m97_c00455{transform:matrix(0.346375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346375,0.000000,0.000000,0.250000,0,0);}
.m25_c00455{transform:matrix(0.352580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352580,0.000000,0.000000,0.250000,0,0);}
.m23_c00455{transform:matrix(0.365420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365420,0.000000,0.000000,0.250000,0,0);}
.m5e_c00455{transform:matrix(0.373775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373775,0.000000,0.000000,0.250000,0,0);}
.ma3_c00455{transform:matrix(0.392590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392590,0.000000,0.000000,0.250000,0,0);}
.m1a_c00455{transform:matrix(0.398820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398820,0.000000,0.000000,0.250000,0,0);}
.m5d_c00455{transform:matrix(0.400205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400205,0.000000,0.000000,0.250000,0,0);}
.m8a_c00455{transform:matrix(0.401410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401410,0.000000,0.000000,0.250000,0,0);}
.m1e_c00455{transform:matrix(0.413980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413980,0.000000,0.000000,0.250000,0,0);}
.m52_c00455{transform:matrix(0.427030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427030,0.000000,0.000000,0.250000,0,0);}
.m83_c00455{transform:matrix(0.429915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429915,0.000000,0.000000,0.250000,0,0);}
.m38_c00455{transform:matrix(0.466965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466965,0.000000,0.000000,0.250000,0,0);}
.m87_c00455{transform:matrix(0.470285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470285,0.000000,0.000000,0.250000,0,0);}
.m7c_c00455{transform:matrix(0.475030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475030,0.000000,0.000000,0.250000,0,0);}
.m77_c00455{transform:matrix(0.491055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491055,0.000000,0.000000,0.250000,0,0);}
.m6e_c00455{transform:matrix(0.493735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493735,0.000000,0.000000,0.250000,0,0);}
.m96_c00455{transform:matrix(0.591865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591865,0.000000,0.000000,0.250000,0,0);}
.m4_c00455{transform:matrix(0.735441,0.003677,-0.001250,0.249997,0,0);-ms-transform:matrix(0.735441,0.003677,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.735441,0.003677,-0.001250,0.249997,0,0);}
.m29_c00455{transform:matrix(0.922800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.922800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.922800,0.000000,0.000000,0.250000,0,0);}
.v0_c00455{vertical-align:0.000000px;}
.ls0_c00455{letter-spacing:0.000000px;}
.sc__c00455{text-shadow:none;}
.sc0_c00455{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__c00455{-webkit-text-stroke:0px transparent;}
.sc0_c00455{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00455{word-spacing:0.000000px;}
.fc0_c00455{color:transparent;}
.fs3_c00455{font-size:72.000000px;}
.fs8_c00455{font-size:78.000000px;}
.fs6_c00455{font-size:84.000000px;}
.fs1_c00455{font-size:84.001050px;}
.fs5_c00455{font-size:90.000000px;}
.fs4_c00455{font-size:96.000000px;}
.fs2_c00455{font-size:102.000000px;}
.fs7_c00455{font-size:108.000000px;}
.fs0_c00455{font-size:144.000000px;}
.y0_c00455{bottom:0.000000px;}
.y19_c00455{bottom:750.058500px;}
.y18_c00455{bottom:785.068500px;}
.y17_c00455{bottom:822.690000px;}
.y16_c00455{bottom:858.643500px;}
.y15_c00455{bottom:894.786000px;}
.y14_c00455{bottom:929.346000px;}
.y13_c00455{bottom:964.710000px;}
.y12_c00455{bottom:1000.789500px;}
.y11_c00455{bottom:1038.123000px;}
.y10_c00455{bottom:1073.152500px;}
.yf_c00455{bottom:1108.291500px;}
.ye_c00455{bottom:1143.845490px;}
.yd_c00455{bottom:1144.014285px;}
.yc_c00455{bottom:1144.178932px;}
.yb_c00455{bottom:1144.515075px;}
.ya_c00455{bottom:1144.682467px;}
.y9_c00455{bottom:1144.995772px;}
.y8_c00455{bottom:1145.173868px;}
.y7_c00455{bottom:1145.453415px;}
.y6_c00455{bottom:1145.555940px;}
.y5_c00455{bottom:1145.835382px;}
.y4_c00455{bottom:1146.000097px;}
.y3_c00455{bottom:1146.490207px;}
.y2_c00455{bottom:1146.960000px;}
.y1_c00455{bottom:1212.855000px;}
.h5_c00455{height:72.000000px;}
.ha_c00455{height:78.000000px;}
.h8_c00455{height:84.000000px;}
.h3_c00455{height:84.001050px;}
.h7_c00455{height:90.000000px;}
.h6_c00455{height:96.000000px;}
.h4_c00455{height:102.000000px;}
.h9_c00455{height:108.000000px;}
.h2_c00455{height:144.000000px;}
.h0_c00455{height:1251.450000px;}
.h1_c00455{height:1251.750000px;}
.w1_c00455{width:924.750000px;}
.w0_c00455{width:925.020000px;}
.x0_c00455{left:0.000000px;}
.x1d_c00455{left:37.530000px;}
.x59_c00455{left:40.500000px;}
.x5a_c00455{left:48.060000px;}
.x4f_c00455{left:52.650000px;}
.x33_c00455{left:53.730000px;}
.x71_c00455{left:54.810000px;}
.x69_c00455{left:58.590000px;}
.x60_c00455{left:67.500000px;}
.x28_c00455{left:77.220000px;}
.x4_c00455{left:78.483000px;}
.x11_c00455{left:87.480000px;}
.x29_c00455{left:93.690000px;}
.x5b_c00455{left:104.490000px;}
.x61_c00455{left:109.620000px;}
.x34_c00455{left:112.320000px;}
.x6a_c00455{left:117.990000px;}
.x12_c00455{left:120.960000px;}
.x47_c00455{left:127.980000px;}
.x3d_c00455{left:135.810000px;}
.x50_c00455{left:136.890000px;}
.x2a_c00455{left:157.680000px;}
.x1e_c00455{left:158.760000px;}
.x3e_c00455{left:169.560000px;}
.x51_c00455{left:170.640000px;}
.x5_c00455{left:172.441500px;}
.x6b_c00455{left:192.240000px;}
.x62_c00455{left:205.200000px;}
.x3f_c00455{left:210.600000px;}
.x35_c00455{left:214.380000px;}
.x1f_c00455{left:215.460000px;}
.x13_c00455{left:216.810000px;}
.x2b_c00455{left:225.720000px;}
.x72_c00455{left:235.440000px;}
.x40_c00455{left:236.790000px;}
.x1_c00455{left:238.950000px;}
.x20_c00455{left:247.860000px;}
.x6c_c00455{left:260.820000px;}
.x6_c00455{left:270.463500px;}
.x36_c00455{left:295.380000px;}
.x41_c00455{left:302.400000px;}
.x7_c00455{left:303.406500px;}
.x14_c00455{left:314.010000px;}
.x73_c00455{left:325.890000px;}
.x21_c00455{left:328.050000px;}
.x52_c00455{left:329.670000px;}
.x2c_c00455{left:336.690000px;}
.x48_c00455{left:351.270000px;}
.x8_c00455{left:359.295000px;}
.x63_c00455{left:362.880000px;}
.x15_c00455{left:368.550000px;}
.x74_c00455{left:372.060000px;}
.x53_c00455{left:373.950000px;}
.x42_c00455{left:377.460000px;}
.x9_c00455{left:379.800000px;}
.x64_c00455{left:392.580000px;}
.x37_c00455{left:402.030000px;}
.x2d_c00455{left:403.110000px;}
.x16_c00455{left:413.910000px;}
.x22_c00455{left:423.630000px;}
.x49_c00455{left:426.600000px;}
.x38_c00455{left:432.810000px;}
.xa_c00455{left:435.709500px;}
.x2_c00455{left:439.290000px;}
.x17_c00455{left:446.580000px;}
.x6d_c00455{left:447.660000px;}
.x65_c00455{left:457.650000px;}
.x4a_c00455{left:459.000000px;}
.x23_c00455{left:467.910000px;}
.x54_c00455{left:469.260000px;}
.xb_c00455{left:471.328500px;}
.x18_c00455{left:477.630000px;}
.x6e_c00455{left:481.950000px;}
.x24_c00455{left:489.780000px;}
.x3_c00455{left:492.750000px;}
.x2e_c00455{left:501.120000px;}
.x5c_c00455{left:503.010000px;}
.x75_c00455{left:509.490000px;}
.x6f_c00455{left:512.730000px;}
.x43_c00455{left:513.810000px;}
.x39_c00455{left:515.700000px;}
.x4b_c00455{left:524.340000px;}
.x2f_c00455{left:532.170000px;}
.xc_c00455{left:533.989500px;}
.x4c_c00455{left:542.430000px;}
.x44_c00455{left:546.480000px;}
.x25_c00455{left:549.990000px;}
.xd_c00455{left:567.468000px;}
.x30_c00455{left:568.620000px;}
.x5d_c00455{left:579.420000px;}
.x55_c00455{left:601.020000px;}
.x66_c00455{left:602.370000px;}
.x26_c00455{left:604.260000px;}
.x76_c00455{left:614.250000px;}
.x19_c00455{left:615.600000px;}
.x45_c00455{left:623.970000px;}
.x4d_c00455{left:625.050000px;}
.xe_c00455{left:634.696500px;}
.x5e_c00455{left:638.280000px;}
.x56_c00455{left:646.920000px;}
.x70_c00455{left:655.290000px;}
.x31_c00455{left:656.640000px;}
.x4e_c00455{left:657.720000px;}
.xf_c00455{left:667.626000px;}
.x3a_c00455{left:679.860000px;}
.x1a_c00455{left:691.740000px;}
.x67_c00455{left:699.570000px;}
.x10_c00455{left:701.385000px;}
.x1b_c00455{left:719.010000px;}
.x27_c00455{left:724.680000px;}
.x3b_c00455{left:733.050000px;}
.x5f_c00455{left:734.400000px;}
.x57_c00455{left:737.370000px;}
.x58_c00455{left:755.730000px;}
.x1c_c00455{left:758.970000px;}
.x77_c00455{left:761.670000px;}
.x3c_c00455{left:763.020000px;}
.x32_c00455{left:764.370000px;}
.x46_c00455{left:766.530000px;}
.x68_c00455{left:778.140000px;}
@media print{
.v0_c00455{vertical-align:0.000000pt;}
.ls0_c00455{letter-spacing:0.000000pt;}
.ws0_c00455{word-spacing:0.000000pt;}
.fs3_c00455{font-size:64.000000pt;}
.fs8_c00455{font-size:69.333333pt;}
.fs6_c00455{font-size:74.666667pt;}
.fs1_c00455{font-size:74.667600pt;}
.fs5_c00455{font-size:80.000000pt;}
.fs4_c00455{font-size:85.333333pt;}
.fs2_c00455{font-size:90.666667pt;}
.fs7_c00455{font-size:96.000000pt;}
.fs0_c00455{font-size:128.000000pt;}
.y0_c00455{bottom:0.000000pt;}
.y19_c00455{bottom:666.718667pt;}
.y18_c00455{bottom:697.838667pt;}
.y17_c00455{bottom:731.280000pt;}
.y16_c00455{bottom:763.238667pt;}
.y15_c00455{bottom:795.365333pt;}
.y14_c00455{bottom:826.085333pt;}
.y13_c00455{bottom:857.520000pt;}
.y12_c00455{bottom:889.590667pt;}
.y11_c00455{bottom:922.776000pt;}
.y10_c00455{bottom:953.913333pt;}
.yf_c00455{bottom:985.148000pt;}
.ye_c00455{bottom:1016.751547pt;}
.yd_c00455{bottom:1016.901587pt;}
.yc_c00455{bottom:1017.047940pt;}
.yb_c00455{bottom:1017.346733pt;}
.ya_c00455{bottom:1017.495527pt;}
.y9_c00455{bottom:1017.774020pt;}
.y8_c00455{bottom:1017.932327pt;}
.y7_c00455{bottom:1018.180813pt;}
.y6_c00455{bottom:1018.271947pt;}
.y5_c00455{bottom:1018.520340pt;}
.y4_c00455{bottom:1018.666753pt;}
.y3_c00455{bottom:1019.102407pt;}
.y2_c00455{bottom:1019.520000pt;}
.y1_c00455{bottom:1078.093333pt;}
.h5_c00455{height:64.000000pt;}
.ha_c00455{height:69.333333pt;}
.h8_c00455{height:74.666667pt;}
.h3_c00455{height:74.667600pt;}
.h7_c00455{height:80.000000pt;}
.h6_c00455{height:85.333333pt;}
.h4_c00455{height:90.666667pt;}
.h9_c00455{height:96.000000pt;}
.h2_c00455{height:128.000000pt;}
.h0_c00455{height:1112.400000pt;}
.h1_c00455{height:1112.666667pt;}
.w1_c00455{width:822.000000pt;}
.w0_c00455{width:822.240000pt;}
.x0_c00455{left:0.000000pt;}
.x1d_c00455{left:33.360000pt;}
.x59_c00455{left:36.000000pt;}
.x5a_c00455{left:42.720000pt;}
.x4f_c00455{left:46.800000pt;}
.x33_c00455{left:47.760000pt;}
.x71_c00455{left:48.720000pt;}
.x69_c00455{left:52.080000pt;}
.x60_c00455{left:60.000000pt;}
.x28_c00455{left:68.640000pt;}
.x4_c00455{left:69.762667pt;}
.x11_c00455{left:77.760000pt;}
.x29_c00455{left:83.280000pt;}
.x5b_c00455{left:92.880000pt;}
.x61_c00455{left:97.440000pt;}
.x34_c00455{left:99.840000pt;}
.x6a_c00455{left:104.880000pt;}
.x12_c00455{left:107.520000pt;}
.x47_c00455{left:113.760000pt;}
.x3d_c00455{left:120.720000pt;}
.x50_c00455{left:121.680000pt;}
.x2a_c00455{left:140.160000pt;}
.x1e_c00455{left:141.120000pt;}
.x3e_c00455{left:150.720000pt;}
.x51_c00455{left:151.680000pt;}
.x5_c00455{left:153.281333pt;}
.x6b_c00455{left:170.880000pt;}
.x62_c00455{left:182.400000pt;}
.x3f_c00455{left:187.200000pt;}
.x35_c00455{left:190.560000pt;}
.x1f_c00455{left:191.520000pt;}
.x13_c00455{left:192.720000pt;}
.x2b_c00455{left:200.640000pt;}
.x72_c00455{left:209.280000pt;}
.x40_c00455{left:210.480000pt;}
.x1_c00455{left:212.400000pt;}
.x20_c00455{left:220.320000pt;}
.x6c_c00455{left:231.840000pt;}
.x6_c00455{left:240.412000pt;}
.x36_c00455{left:262.560000pt;}
.x41_c00455{left:268.800000pt;}
.x7_c00455{left:269.694667pt;}
.x14_c00455{left:279.120000pt;}
.x73_c00455{left:289.680000pt;}
.x21_c00455{left:291.600000pt;}
.x52_c00455{left:293.040000pt;}
.x2c_c00455{left:299.280000pt;}
.x48_c00455{left:312.240000pt;}
.x8_c00455{left:319.373333pt;}
.x63_c00455{left:322.560000pt;}
.x15_c00455{left:327.600000pt;}
.x74_c00455{left:330.720000pt;}
.x53_c00455{left:332.400000pt;}
.x42_c00455{left:335.520000pt;}
.x9_c00455{left:337.600000pt;}
.x64_c00455{left:348.960000pt;}
.x37_c00455{left:357.360000pt;}
.x2d_c00455{left:358.320000pt;}
.x16_c00455{left:367.920000pt;}
.x22_c00455{left:376.560000pt;}
.x49_c00455{left:379.200000pt;}
.x38_c00455{left:384.720000pt;}
.xa_c00455{left:387.297333pt;}
.x2_c00455{left:390.480000pt;}
.x17_c00455{left:396.960000pt;}
.x6d_c00455{left:397.920000pt;}
.x65_c00455{left:406.800000pt;}
.x4a_c00455{left:408.000000pt;}
.x23_c00455{left:415.920000pt;}
.x54_c00455{left:417.120000pt;}
.xb_c00455{left:418.958667pt;}
.x18_c00455{left:424.560000pt;}
.x6e_c00455{left:428.400000pt;}
.x24_c00455{left:435.360000pt;}
.x3_c00455{left:438.000000pt;}
.x2e_c00455{left:445.440000pt;}
.x5c_c00455{left:447.120000pt;}
.x75_c00455{left:452.880000pt;}
.x6f_c00455{left:455.760000pt;}
.x43_c00455{left:456.720000pt;}
.x39_c00455{left:458.400000pt;}
.x4b_c00455{left:466.080000pt;}
.x2f_c00455{left:473.040000pt;}
.xc_c00455{left:474.657333pt;}
.x4c_c00455{left:482.160000pt;}
.x44_c00455{left:485.760000pt;}
.x25_c00455{left:488.880000pt;}
.xd_c00455{left:504.416000pt;}
.x30_c00455{left:505.440000pt;}
.x5d_c00455{left:515.040000pt;}
.x55_c00455{left:534.240000pt;}
.x66_c00455{left:535.440000pt;}
.x26_c00455{left:537.120000pt;}
.x76_c00455{left:546.000000pt;}
.x19_c00455{left:547.200000pt;}
.x45_c00455{left:554.640000pt;}
.x4d_c00455{left:555.600000pt;}
.xe_c00455{left:564.174667pt;}
.x5e_c00455{left:567.360000pt;}
.x56_c00455{left:575.040000pt;}
.x70_c00455{left:582.480000pt;}
.x31_c00455{left:583.680000pt;}
.x4e_c00455{left:584.640000pt;}
.xf_c00455{left:593.445333pt;}
.x3a_c00455{left:604.320000pt;}
.x1a_c00455{left:614.880000pt;}
.x67_c00455{left:621.840000pt;}
.x10_c00455{left:623.453333pt;}
.x1b_c00455{left:639.120000pt;}
.x27_c00455{left:644.160000pt;}
.x3b_c00455{left:651.600000pt;}
.x5f_c00455{left:652.800000pt;}
.x57_c00455{left:655.440000pt;}
.x58_c00455{left:671.760000pt;}
.x1c_c00455{left:674.640000pt;}
.x77_c00455{left:677.040000pt;}
.x3c_c00455{left:678.240000pt;}
.x32_c00455{left:679.440000pt;}
.x46_c00455{left:681.360000pt;}
.x68_c00455{left:691.680000pt;}
}





/* 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_c00456 {
    display:none;
  }
  .loading-indicator_c00456.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00456 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_c00456 { 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_c00456" -> "#page-container .classname_c00456")
 */
.pf_c00456 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00456 { /* 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_c00456.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00456 { /* 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_c00456 { /* 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_c00456 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00456 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00456 {overflow:visible;}
  }
}
.c_c00456 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00456 { /* 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_c00456:after { /* webkit #35443 */
  content: '';
}
.t_c00456:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00456 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 */
}
.__c00456 { /* 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_c00456 { /* info for Javascript */
  display:none;
}
.l_c00456 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00456 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00456 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00456: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_c00456 {
    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_c00456.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00456.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_c00456 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00456{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00456;src:url('chunks/assets/font_fabf4b590f7fb32aea93ffb2.woff2')format("woff");}.ff1_c00456{font-family:ff1_c00456;line-height:1.000000;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;}
.mf6_c00456{transform:matrix(0.009790,-0.000049,0.001250,0.249997,0,0);-ms-transform:matrix(0.009790,-0.000049,0.001250,0.249997,0,0);-webkit-transform:matrix(0.009790,-0.000049,0.001250,0.249997,0,0);}
.ma1_c00456{transform:matrix(0.010165,-0.000051,0.001250,0.249997,0,0);-ms-transform:matrix(0.010165,-0.000051,0.001250,0.249997,0,0);-webkit-transform:matrix(0.010165,-0.000051,0.001250,0.249997,0,0);}
.m96_c00456{transform:matrix(0.016770,-0.000084,0.001250,0.249997,0,0);-ms-transform:matrix(0.016770,-0.000084,0.001250,0.249997,0,0);-webkit-transform:matrix(0.016770,-0.000084,0.001250,0.249997,0,0);}
.m0_c00456{transform:matrix(0.129035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129035,0.000000,0.000000,0.250000,0,0);}
.m13f_c00456{transform:matrix(0.138358,0.001384,-0.002500,0.249988,0,0);-ms-transform:matrix(0.138358,0.001384,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.138358,0.001384,-0.002500,0.249988,0,0);}
.m34_c00456{transform:matrix(0.145153,-0.000726,0.001250,0.249997,0,0);-ms-transform:matrix(0.145153,-0.000726,0.001250,0.249997,0,0);-webkit-transform:matrix(0.145153,-0.000726,0.001250,0.249997,0,0);}
.m35_c00456{transform:matrix(0.150708,-0.000754,0.001250,0.249997,0,0);-ms-transform:matrix(0.150708,-0.000754,0.001250,0.249997,0,0);-webkit-transform:matrix(0.150708,-0.000754,0.001250,0.249997,0,0);}
.m13a_c00456{transform:matrix(0.151612,0.001516,-0.002500,0.249988,0,0);-ms-transform:matrix(0.151612,0.001516,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.151612,0.001516,-0.002500,0.249988,0,0);}
.m131_c00456{transform:matrix(0.153248,0.000766,-0.001250,0.249997,0,0);-ms-transform:matrix(0.153248,0.000766,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.153248,0.000766,-0.001250,0.249997,0,0);}
.m39_c00456{transform:matrix(0.153558,-0.000768,0.001250,0.249997,0,0);-ms-transform:matrix(0.153558,-0.000768,0.001250,0.249997,0,0);-webkit-transform:matrix(0.153558,-0.000768,0.001250,0.249997,0,0);}
.mf_c00456{transform:matrix(0.157423,-0.000787,0.001250,0.249997,0,0);-ms-transform:matrix(0.157423,-0.000787,0.001250,0.249997,0,0);-webkit-transform:matrix(0.157423,-0.000787,0.001250,0.249997,0,0);}
.m38_c00456{transform:matrix(0.159238,-0.000796,0.001250,0.249997,0,0);-ms-transform:matrix(0.159238,-0.000796,0.001250,0.249997,0,0);-webkit-transform:matrix(0.159238,-0.000796,0.001250,0.249997,0,0);}
.m3d_c00456{transform:matrix(0.160068,-0.000800,0.001250,0.249997,0,0);-ms-transform:matrix(0.160068,-0.000800,0.001250,0.249997,0,0);-webkit-transform:matrix(0.160068,-0.000800,0.001250,0.249997,0,0);}
.m3b_c00456{transform:matrix(0.162753,-0.000814,0.001250,0.249997,0,0);-ms-transform:matrix(0.162753,-0.000814,0.001250,0.249997,0,0);-webkit-transform:matrix(0.162753,-0.000814,0.001250,0.249997,0,0);}
.m40_c00456{transform:matrix(0.167598,-0.000838,0.001250,0.249997,0,0);-ms-transform:matrix(0.167598,-0.000838,0.001250,0.249997,0,0);-webkit-transform:matrix(0.167598,-0.000838,0.001250,0.249997,0,0);}
.m26_c00456{transform:matrix(0.167973,-0.000840,0.001250,0.249997,0,0);-ms-transform:matrix(0.167973,-0.000840,0.001250,0.249997,0,0);-webkit-transform:matrix(0.167973,-0.000840,0.001250,0.249997,0,0);}
.m3a_c00456{transform:matrix(0.168003,-0.000840,0.001250,0.249997,0,0);-ms-transform:matrix(0.168003,-0.000840,0.001250,0.249997,0,0);-webkit-transform:matrix(0.168003,-0.000840,0.001250,0.249997,0,0);}
.m9_c00456{transform:matrix(0.168508,-0.000843,0.001250,0.249997,0,0);-ms-transform:matrix(0.168508,-0.000843,0.001250,0.249997,0,0);-webkit-transform:matrix(0.168508,-0.000843,0.001250,0.249997,0,0);}
.mb_c00456{transform:matrix(0.169008,-0.000845,0.001250,0.249997,0,0);-ms-transform:matrix(0.169008,-0.000845,0.001250,0.249997,0,0);-webkit-transform:matrix(0.169008,-0.000845,0.001250,0.249997,0,0);}
.mb2_c00456{transform:matrix(0.171118,-0.000856,0.001250,0.249997,0,0);-ms-transform:matrix(0.171118,-0.000856,0.001250,0.249997,0,0);-webkit-transform:matrix(0.171118,-0.000856,0.001250,0.249997,0,0);}
.mb5_c00456{transform:matrix(0.172143,-0.000861,0.001250,0.249997,0,0);-ms-transform:matrix(0.172143,-0.000861,0.001250,0.249997,0,0);-webkit-transform:matrix(0.172143,-0.000861,0.001250,0.249997,0,0);}
.m29_c00456{transform:matrix(0.173718,-0.000869,0.001250,0.249997,0,0);-ms-transform:matrix(0.173718,-0.000869,0.001250,0.249997,0,0);-webkit-transform:matrix(0.173718,-0.000869,0.001250,0.249997,0,0);}
.me6_c00456{transform:matrix(0.174413,-0.000872,0.001250,0.249997,0,0);-ms-transform:matrix(0.174413,-0.000872,0.001250,0.249997,0,0);-webkit-transform:matrix(0.174413,-0.000872,0.001250,0.249997,0,0);}
.m3c_c00456{transform:matrix(0.175433,-0.000877,0.001250,0.249997,0,0);-ms-transform:matrix(0.175433,-0.000877,0.001250,0.249997,0,0);-webkit-transform:matrix(0.175433,-0.000877,0.001250,0.249997,0,0);}
.md_c00456{transform:matrix(0.176308,-0.000882,0.001250,0.249997,0,0);-ms-transform:matrix(0.176308,-0.000882,0.001250,0.249997,0,0);-webkit-transform:matrix(0.176308,-0.000882,0.001250,0.249997,0,0);}
.m36_c00456{transform:matrix(0.176703,-0.000884,0.001250,0.249997,0,0);-ms-transform:matrix(0.176703,-0.000884,0.001250,0.249997,0,0);-webkit-transform:matrix(0.176703,-0.000884,0.001250,0.249997,0,0);}
.m7f_c00456{transform:matrix(0.177503,-0.000888,0.001250,0.249997,0,0);-ms-transform:matrix(0.177503,-0.000888,0.001250,0.249997,0,0);-webkit-transform:matrix(0.177503,-0.000888,0.001250,0.249997,0,0);}
.mba_c00456{transform:matrix(0.177768,-0.000889,0.001250,0.249997,0,0);-ms-transform:matrix(0.177768,-0.000889,0.001250,0.249997,0,0);-webkit-transform:matrix(0.177768,-0.000889,0.001250,0.249997,0,0);}
.m62_c00456{transform:matrix(0.178613,-0.000893,0.001250,0.249997,0,0);-ms-transform:matrix(0.178613,-0.000893,0.001250,0.249997,0,0);-webkit-transform:matrix(0.178613,-0.000893,0.001250,0.249997,0,0);}
.m43_c00456{transform:matrix(0.180278,-0.000901,0.001250,0.249997,0,0);-ms-transform:matrix(0.180278,-0.000901,0.001250,0.249997,0,0);-webkit-transform:matrix(0.180278,-0.000901,0.001250,0.249997,0,0);}
.m6a_c00456{transform:matrix(0.180423,-0.000902,0.001250,0.249997,0,0);-ms-transform:matrix(0.180423,-0.000902,0.001250,0.249997,0,0);-webkit-transform:matrix(0.180423,-0.000902,0.001250,0.249997,0,0);}
.me0_c00456{transform:matrix(0.181393,-0.000907,0.001250,0.249997,0,0);-ms-transform:matrix(0.181393,-0.000907,0.001250,0.249997,0,0);-webkit-transform:matrix(0.181393,-0.000907,0.001250,0.249997,0,0);}
.ma_c00456{transform:matrix(0.181498,-0.000907,0.001250,0.249997,0,0);-ms-transform:matrix(0.181498,-0.000907,0.001250,0.249997,0,0);-webkit-transform:matrix(0.181498,-0.000907,0.001250,0.249997,0,0);}
.m12_c00456{transform:matrix(0.182808,-0.000914,0.001250,0.249997,0,0);-ms-transform:matrix(0.182808,-0.000914,0.001250,0.249997,0,0);-webkit-transform:matrix(0.182808,-0.000914,0.001250,0.249997,0,0);}
.mbb_c00456{transform:matrix(0.183358,-0.000917,0.001250,0.249997,0,0);-ms-transform:matrix(0.183358,-0.000917,0.001250,0.249997,0,0);-webkit-transform:matrix(0.183358,-0.000917,0.001250,0.249997,0,0);}
.m3f_c00456{transform:matrix(0.184208,-0.000921,0.001250,0.249997,0,0);-ms-transform:matrix(0.184208,-0.000921,0.001250,0.249997,0,0);-webkit-transform:matrix(0.184208,-0.000921,0.001250,0.249997,0,0);}
.m9f_c00456{transform:matrix(0.184233,-0.000921,0.001250,0.249997,0,0);-ms-transform:matrix(0.184233,-0.000921,0.001250,0.249997,0,0);-webkit-transform:matrix(0.184233,-0.000921,0.001250,0.249997,0,0);}
.m37_c00456{transform:matrix(0.184498,-0.000922,0.001250,0.249997,0,0);-ms-transform:matrix(0.184498,-0.000922,0.001250,0.249997,0,0);-webkit-transform:matrix(0.184498,-0.000922,0.001250,0.249997,0,0);}
.mb3_c00456{transform:matrix(0.184643,-0.000923,0.001250,0.249997,0,0);-ms-transform:matrix(0.184643,-0.000923,0.001250,0.249997,0,0);-webkit-transform:matrix(0.184643,-0.000923,0.001250,0.249997,0,0);}
.me8_c00456{transform:matrix(0.184713,-0.000924,0.001250,0.249997,0,0);-ms-transform:matrix(0.184713,-0.000924,0.001250,0.249997,0,0);-webkit-transform:matrix(0.184713,-0.000924,0.001250,0.249997,0,0);}
.m7a_c00456{transform:matrix(0.185148,-0.000926,0.001250,0.249997,0,0);-ms-transform:matrix(0.185148,-0.000926,0.001250,0.249997,0,0);-webkit-transform:matrix(0.185148,-0.000926,0.001250,0.249997,0,0);}
.mb6_c00456{transform:matrix(0.185663,-0.000928,0.001250,0.249997,0,0);-ms-transform:matrix(0.185663,-0.000928,0.001250,0.249997,0,0);-webkit-transform:matrix(0.185663,-0.000928,0.001250,0.249997,0,0);}
.mb0_c00456{transform:matrix(0.186818,-0.000934,0.001250,0.249997,0,0);-ms-transform:matrix(0.186818,-0.000934,0.001250,0.249997,0,0);-webkit-transform:matrix(0.186818,-0.000934,0.001250,0.249997,0,0);}
.m67_c00456{transform:matrix(0.186943,-0.000935,0.001250,0.249997,0,0);-ms-transform:matrix(0.186943,-0.000935,0.001250,0.249997,0,0);-webkit-transform:matrix(0.186943,-0.000935,0.001250,0.249997,0,0);}
.mb4_c00456{transform:matrix(0.186983,-0.000935,0.001250,0.249997,0,0);-ms-transform:matrix(0.186983,-0.000935,0.001250,0.249997,0,0);-webkit-transform:matrix(0.186983,-0.000935,0.001250,0.249997,0,0);}
.m7_c00456{transform:matrix(0.187468,-0.000937,0.001250,0.249997,0,0);-ms-transform:matrix(0.187468,-0.000937,0.001250,0.249997,0,0);-webkit-transform:matrix(0.187468,-0.000937,0.001250,0.249997,0,0);}
.m8_c00456{transform:matrix(0.187848,-0.000939,0.001250,0.249997,0,0);-ms-transform:matrix(0.187848,-0.000939,0.001250,0.249997,0,0);-webkit-transform:matrix(0.187848,-0.000939,0.001250,0.249997,0,0);}
.maf_c00456{transform:matrix(0.188548,-0.000943,0.001250,0.249997,0,0);-ms-transform:matrix(0.188548,-0.000943,0.001250,0.249997,0,0);-webkit-transform:matrix(0.188548,-0.000943,0.001250,0.249997,0,0);}
.mb8_c00456{transform:matrix(0.190403,-0.000952,0.001250,0.249997,0,0);-ms-transform:matrix(0.190403,-0.000952,0.001250,0.249997,0,0);-webkit-transform:matrix(0.190403,-0.000952,0.001250,0.249997,0,0);}
.md6_c00456{transform:matrix(0.191373,-0.000957,0.001250,0.249997,0,0);-ms-transform:matrix(0.191373,-0.000957,0.001250,0.249997,0,0);-webkit-transform:matrix(0.191373,-0.000957,0.001250,0.249997,0,0);}
.mb7_c00456{transform:matrix(0.192158,-0.000961,0.001250,0.249997,0,0);-ms-transform:matrix(0.192158,-0.000961,0.001250,0.249997,0,0);-webkit-transform:matrix(0.192158,-0.000961,0.001250,0.249997,0,0);}
.m97_c00456{transform:matrix(0.192583,-0.000963,0.001250,0.249997,0,0);-ms-transform:matrix(0.192583,-0.000963,0.001250,0.249997,0,0);-webkit-transform:matrix(0.192583,-0.000963,0.001250,0.249997,0,0);}
.me3_c00456{transform:matrix(0.192823,-0.000964,0.001250,0.249997,0,0);-ms-transform:matrix(0.192823,-0.000964,0.001250,0.249997,0,0);-webkit-transform:matrix(0.192823,-0.000964,0.001250,0.249997,0,0);}
.m1e_c00456{transform:matrix(0.193503,-0.000968,0.001250,0.249997,0,0);-ms-transform:matrix(0.193503,-0.000968,0.001250,0.249997,0,0);-webkit-transform:matrix(0.193503,-0.000968,0.001250,0.249997,0,0);}
.m68_c00456{transform:matrix(0.194008,-0.000970,0.001250,0.249997,0,0);-ms-transform:matrix(0.194008,-0.000970,0.001250,0.249997,0,0);-webkit-transform:matrix(0.194008,-0.000970,0.001250,0.249997,0,0);}
.m13d_c00456{transform:matrix(0.194340,0.001943,-0.002500,0.249988,0,0);-ms-transform:matrix(0.194340,0.001943,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.194340,0.001943,-0.002500,0.249988,0,0);}
.m9c_c00456{transform:matrix(0.194348,-0.000972,0.001250,0.249997,0,0);-ms-transform:matrix(0.194348,-0.000972,0.001250,0.249997,0,0);-webkit-transform:matrix(0.194348,-0.000972,0.001250,0.249997,0,0);}
.m21_c00456{transform:matrix(0.194598,-0.000973,0.001250,0.249997,0,0);-ms-transform:matrix(0.194598,-0.000973,0.001250,0.249997,0,0);-webkit-transform:matrix(0.194598,-0.000973,0.001250,0.249997,0,0);}
.m10a_c00456{transform:matrix(0.195513,-0.000978,0.001250,0.249997,0,0);-ms-transform:matrix(0.195513,-0.000978,0.001250,0.249997,0,0);-webkit-transform:matrix(0.195513,-0.000978,0.001250,0.249997,0,0);}
.mc_c00456{transform:matrix(0.195993,-0.000980,0.001250,0.249997,0,0);-ms-transform:matrix(0.195993,-0.000980,0.001250,0.249997,0,0);-webkit-transform:matrix(0.195993,-0.000980,0.001250,0.249997,0,0);}
.m86_c00456{transform:matrix(0.196123,-0.000981,0.001250,0.249997,0,0);-ms-transform:matrix(0.196123,-0.000981,0.001250,0.249997,0,0);-webkit-transform:matrix(0.196123,-0.000981,0.001250,0.249997,0,0);}
.m7c_c00456{transform:matrix(0.196643,-0.000983,0.001250,0.249997,0,0);-ms-transform:matrix(0.196643,-0.000983,0.001250,0.249997,0,0);-webkit-transform:matrix(0.196643,-0.000983,0.001250,0.249997,0,0);}
.m9d_c00456{transform:matrix(0.197328,-0.000987,0.001250,0.249997,0,0);-ms-transform:matrix(0.197328,-0.000987,0.001250,0.249997,0,0);-webkit-transform:matrix(0.197328,-0.000987,0.001250,0.249997,0,0);}
.m61_c00456{transform:matrix(0.198048,-0.000990,0.001250,0.249997,0,0);-ms-transform:matrix(0.198048,-0.000990,0.001250,0.249997,0,0);-webkit-transform:matrix(0.198048,-0.000990,0.001250,0.249997,0,0);}
.me2_c00456{transform:matrix(0.198148,-0.000991,0.001250,0.249997,0,0);-ms-transform:matrix(0.198148,-0.000991,0.001250,0.249997,0,0);-webkit-transform:matrix(0.198148,-0.000991,0.001250,0.249997,0,0);}
.m22_c00456{transform:matrix(0.198568,-0.000993,0.001250,0.249997,0,0);-ms-transform:matrix(0.198568,-0.000993,0.001250,0.249997,0,0);-webkit-transform:matrix(0.198568,-0.000993,0.001250,0.249997,0,0);}
.md4_c00456{transform:matrix(0.199363,-0.000997,0.001250,0.249997,0,0);-ms-transform:matrix(0.199363,-0.000997,0.001250,0.249997,0,0);-webkit-transform:matrix(0.199363,-0.000997,0.001250,0.249997,0,0);}
.m41_c00456{transform:matrix(0.199993,-0.001000,0.001250,0.249997,0,0);-ms-transform:matrix(0.199993,-0.001000,0.001250,0.249997,0,0);-webkit-transform:matrix(0.199993,-0.001000,0.001250,0.249997,0,0);}
.m45_c00456{transform:matrix(0.200527,-0.001003,0.001250,0.249997,0,0);-ms-transform:matrix(0.200527,-0.001003,0.001250,0.249997,0,0);-webkit-transform:matrix(0.200527,-0.001003,0.001250,0.249997,0,0);}
.m63_c00456{transform:matrix(0.201152,-0.001006,0.001250,0.249997,0,0);-ms-transform:matrix(0.201152,-0.001006,0.001250,0.249997,0,0);-webkit-transform:matrix(0.201152,-0.001006,0.001250,0.249997,0,0);}
.m3e_c00456{transform:matrix(0.201202,-0.001006,0.001250,0.249997,0,0);-ms-transform:matrix(0.201202,-0.001006,0.001250,0.249997,0,0);-webkit-transform:matrix(0.201202,-0.001006,0.001250,0.249997,0,0);}
.maa_c00456{transform:matrix(0.202297,-0.001011,0.001250,0.249997,0,0);-ms-transform:matrix(0.202297,-0.001011,0.001250,0.249997,0,0);-webkit-transform:matrix(0.202297,-0.001011,0.001250,0.249997,0,0);}
.me_c00456{transform:matrix(0.202577,-0.001013,0.001250,0.249997,0,0);-ms-transform:matrix(0.202577,-0.001013,0.001250,0.249997,0,0);-webkit-transform:matrix(0.202577,-0.001013,0.001250,0.249997,0,0);}
.m13b_c00456{transform:matrix(0.202695,0.002027,-0.002500,0.249988,0,0);-ms-transform:matrix(0.202695,0.002027,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.202695,0.002027,-0.002500,0.249988,0,0);}
.m23_c00456{transform:matrix(0.202807,-0.001014,0.001250,0.249997,0,0);-ms-transform:matrix(0.202807,-0.001014,0.001250,0.249997,0,0);-webkit-transform:matrix(0.202807,-0.001014,0.001250,0.249997,0,0);}
.m27_c00456{transform:matrix(0.202857,-0.001014,0.001250,0.249997,0,0);-ms-transform:matrix(0.202857,-0.001014,0.001250,0.249997,0,0);-webkit-transform:matrix(0.202857,-0.001014,0.001250,0.249997,0,0);}
.mb9_c00456{transform:matrix(0.204187,-0.001021,0.001250,0.249997,0,0);-ms-transform:matrix(0.204187,-0.001021,0.001250,0.249997,0,0);-webkit-transform:matrix(0.204187,-0.001021,0.001250,0.249997,0,0);}
.m7e_c00456{transform:matrix(0.204592,-0.001023,0.001250,0.249997,0,0);-ms-transform:matrix(0.204592,-0.001023,0.001250,0.249997,0,0);-webkit-transform:matrix(0.204592,-0.001023,0.001250,0.249997,0,0);}
.m87_c00456{transform:matrix(0.205107,-0.001026,0.001250,0.249997,0,0);-ms-transform:matrix(0.205107,-0.001026,0.001250,0.249997,0,0);-webkit-transform:matrix(0.205107,-0.001026,0.001250,0.249997,0,0);}
.m10_c00456{transform:matrix(0.205467,-0.001027,0.001250,0.249997,0,0);-ms-transform:matrix(0.205467,-0.001027,0.001250,0.249997,0,0);-webkit-transform:matrix(0.205467,-0.001027,0.001250,0.249997,0,0);}
.m25_c00456{transform:matrix(0.206217,-0.001031,0.001250,0.249997,0,0);-ms-transform:matrix(0.206217,-0.001031,0.001250,0.249997,0,0);-webkit-transform:matrix(0.206217,-0.001031,0.001250,0.249997,0,0);}
.m16_c00456{transform:matrix(0.206737,-0.001034,0.001250,0.249997,0,0);-ms-transform:matrix(0.206737,-0.001034,0.001250,0.249997,0,0);-webkit-transform:matrix(0.206737,-0.001034,0.001250,0.249997,0,0);}
.m56_c00456{transform:matrix(0.206827,-0.001034,0.001250,0.249997,0,0);-ms-transform:matrix(0.206827,-0.001034,0.001250,0.249997,0,0);-webkit-transform:matrix(0.206827,-0.001034,0.001250,0.249997,0,0);}
.m20_c00456{transform:matrix(0.206847,-0.001034,0.001250,0.249997,0,0);-ms-transform:matrix(0.206847,-0.001034,0.001250,0.249997,0,0);-webkit-transform:matrix(0.206847,-0.001034,0.001250,0.249997,0,0);}
.m11_c00456{transform:matrix(0.207222,-0.001036,0.001250,0.249997,0,0);-ms-transform:matrix(0.207222,-0.001036,0.001250,0.249997,0,0);-webkit-transform:matrix(0.207222,-0.001036,0.001250,0.249997,0,0);}
.m14_c00456{transform:matrix(0.207392,-0.001037,0.001250,0.249997,0,0);-ms-transform:matrix(0.207392,-0.001037,0.001250,0.249997,0,0);-webkit-transform:matrix(0.207392,-0.001037,0.001250,0.249997,0,0);}
.m24_c00456{transform:matrix(0.208417,-0.001042,0.001250,0.249997,0,0);-ms-transform:matrix(0.208417,-0.001042,0.001250,0.249997,0,0);-webkit-transform:matrix(0.208417,-0.001042,0.001250,0.249997,0,0);}
.mec_c00456{transform:matrix(0.208557,-0.001043,0.001250,0.249997,0,0);-ms-transform:matrix(0.208557,-0.001043,0.001250,0.249997,0,0);-webkit-transform:matrix(0.208557,-0.001043,0.001250,0.249997,0,0);}
.me9_c00456{transform:matrix(0.208742,-0.001044,0.001250,0.249997,0,0);-ms-transform:matrix(0.208742,-0.001044,0.001250,0.249997,0,0);-webkit-transform:matrix(0.208742,-0.001044,0.001250,0.249997,0,0);}
.m83_c00456{transform:matrix(0.209217,-0.001046,0.001250,0.249997,0,0);-ms-transform:matrix(0.209217,-0.001046,0.001250,0.249997,0,0);-webkit-transform:matrix(0.209217,-0.001046,0.001250,0.249997,0,0);}
.ma8_c00456{transform:matrix(0.209932,-0.001050,0.001250,0.249997,0,0);-ms-transform:matrix(0.209932,-0.001050,0.001250,0.249997,0,0);-webkit-transform:matrix(0.209932,-0.001050,0.001250,0.249997,0,0);}
.m11c_c00456{transform:matrix(0.210047,0.001050,-0.001250,0.249997,0,0);-ms-transform:matrix(0.210047,0.001050,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.210047,0.001050,-0.001250,0.249997,0,0);}
.mdd_c00456{transform:matrix(0.210182,-0.001051,0.001250,0.249997,0,0);-ms-transform:matrix(0.210182,-0.001051,0.001250,0.249997,0,0);-webkit-transform:matrix(0.210182,-0.001051,0.001250,0.249997,0,0);}
.mde_c00456{transform:matrix(0.210402,-0.001052,0.001250,0.249997,0,0);-ms-transform:matrix(0.210402,-0.001052,0.001250,0.249997,0,0);-webkit-transform:matrix(0.210402,-0.001052,0.001250,0.249997,0,0);}
.m120_c00456{transform:matrix(0.210607,0.001053,-0.001250,0.249997,0,0);-ms-transform:matrix(0.210607,0.001053,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.210607,0.001053,-0.001250,0.249997,0,0);}
.ma6_c00456{transform:matrix(0.211212,-0.001056,0.001250,0.249997,0,0);-ms-transform:matrix(0.211212,-0.001056,0.001250,0.249997,0,0);-webkit-transform:matrix(0.211212,-0.001056,0.001250,0.249997,0,0);}
.m5f_c00456{transform:matrix(0.211867,-0.001059,0.001250,0.249997,0,0);-ms-transform:matrix(0.211867,-0.001059,0.001250,0.249997,0,0);-webkit-transform:matrix(0.211867,-0.001059,0.001250,0.249997,0,0);}
.md8_c00456{transform:matrix(0.212042,-0.001060,0.001250,0.249997,0,0);-ms-transform:matrix(0.212042,-0.001060,0.001250,0.249997,0,0);-webkit-transform:matrix(0.212042,-0.001060,0.001250,0.249997,0,0);}
.mf8_c00456{transform:matrix(0.212127,-0.001061,0.001250,0.249997,0,0);-ms-transform:matrix(0.212127,-0.001061,0.001250,0.249997,0,0);-webkit-transform:matrix(0.212127,-0.001061,0.001250,0.249997,0,0);}
.m99_c00456{transform:matrix(0.212147,-0.001061,0.001250,0.249997,0,0);-ms-transform:matrix(0.212147,-0.001061,0.001250,0.249997,0,0);-webkit-transform:matrix(0.212147,-0.001061,0.001250,0.249997,0,0);}
.m49_c00456{transform:matrix(0.212182,-0.001061,0.001250,0.249997,0,0);-ms-transform:matrix(0.212182,-0.001061,0.001250,0.249997,0,0);-webkit-transform:matrix(0.212182,-0.001061,0.001250,0.249997,0,0);}
.m28_c00456{transform:matrix(0.212402,-0.001062,0.001250,0.249997,0,0);-ms-transform:matrix(0.212402,-0.001062,0.001250,0.249997,0,0);-webkit-transform:matrix(0.212402,-0.001062,0.001250,0.249997,0,0);}
.m78_c00456{transform:matrix(0.212467,-0.001062,0.001250,0.249997,0,0);-ms-transform:matrix(0.212467,-0.001062,0.001250,0.249997,0,0);-webkit-transform:matrix(0.212467,-0.001062,0.001250,0.249997,0,0);}
.m46_c00456{transform:matrix(0.212737,-0.001064,0.001250,0.249997,0,0);-ms-transform:matrix(0.212737,-0.001064,0.001250,0.249997,0,0);-webkit-transform:matrix(0.212737,-0.001064,0.001250,0.249997,0,0);}
.mdb_c00456{transform:matrix(0.212847,-0.001064,0.001250,0.249997,0,0);-ms-transform:matrix(0.212847,-0.001064,0.001250,0.249997,0,0);-webkit-transform:matrix(0.212847,-0.001064,0.001250,0.249997,0,0);}
.m64_c00456{transform:matrix(0.213177,-0.001066,0.001250,0.249997,0,0);-ms-transform:matrix(0.213177,-0.001066,0.001250,0.249997,0,0);-webkit-transform:matrix(0.213177,-0.001066,0.001250,0.249997,0,0);}
.ma0_c00456{transform:matrix(0.213982,-0.001070,0.001250,0.249997,0,0);-ms-transform:matrix(0.213982,-0.001070,0.001250,0.249997,0,0);-webkit-transform:matrix(0.213982,-0.001070,0.001250,0.249997,0,0);}
.m80_c00456{transform:matrix(0.214327,-0.001072,0.001250,0.249997,0,0);-ms-transform:matrix(0.214327,-0.001072,0.001250,0.249997,0,0);-webkit-transform:matrix(0.214327,-0.001072,0.001250,0.249997,0,0);}
.m140_c00456{transform:matrix(0.214424,0.002144,-0.002500,0.249988,0,0);-ms-transform:matrix(0.214424,0.002144,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.214424,0.002144,-0.002500,0.249988,0,0);}
.m10d_c00456{transform:matrix(0.214572,-0.001073,0.001250,0.249997,0,0);-ms-transform:matrix(0.214572,-0.001073,0.001250,0.249997,0,0);-webkit-transform:matrix(0.214572,-0.001073,0.001250,0.249997,0,0);}
.m92_c00456{transform:matrix(0.214707,-0.001074,0.001250,0.249997,0,0);-ms-transform:matrix(0.214707,-0.001074,0.001250,0.249997,0,0);-webkit-transform:matrix(0.214707,-0.001074,0.001250,0.249997,0,0);}
.mc5_c00456{transform:matrix(0.215057,-0.001075,0.001250,0.249997,0,0);-ms-transform:matrix(0.215057,-0.001075,0.001250,0.249997,0,0);-webkit-transform:matrix(0.215057,-0.001075,0.001250,0.249997,0,0);}
.me4_c00456{transform:matrix(0.215337,-0.001077,0.001250,0.249997,0,0);-ms-transform:matrix(0.215337,-0.001077,0.001250,0.249997,0,0);-webkit-transform:matrix(0.215337,-0.001077,0.001250,0.249997,0,0);}
.m48_c00456{transform:matrix(0.215367,-0.001077,0.001250,0.249997,0,0);-ms-transform:matrix(0.215367,-0.001077,0.001250,0.249997,0,0);-webkit-transform:matrix(0.215367,-0.001077,0.001250,0.249997,0,0);}
.m69_c00456{transform:matrix(0.215512,-0.001078,0.001250,0.249997,0,0);-ms-transform:matrix(0.215512,-0.001078,0.001250,0.249997,0,0);-webkit-transform:matrix(0.215512,-0.001078,0.001250,0.249997,0,0);}
.m13c_c00456{transform:matrix(0.215514,0.002155,-0.002500,0.249988,0,0);-ms-transform:matrix(0.215514,0.002155,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.215514,0.002155,-0.002500,0.249988,0,0);}
.m124_c00456{transform:matrix(0.215702,0.001079,-0.001250,0.249997,0,0);-ms-transform:matrix(0.215702,0.001079,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.215702,0.001079,-0.001250,0.249997,0,0);}
.m147_c00456{transform:matrix(0.216324,0.002163,-0.002500,0.249988,0,0);-ms-transform:matrix(0.216324,0.002163,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.216324,0.002163,-0.002500,0.249988,0,0);}
.mdf_c00456{transform:matrix(0.216657,-0.001083,0.001250,0.249997,0,0);-ms-transform:matrix(0.216657,-0.001083,0.001250,0.249997,0,0);-webkit-transform:matrix(0.216657,-0.001083,0.001250,0.249997,0,0);}
.m1c_c00456{transform:matrix(0.216722,-0.001084,0.001250,0.249997,0,0);-ms-transform:matrix(0.216722,-0.001084,0.001250,0.249997,0,0);-webkit-transform:matrix(0.216722,-0.001084,0.001250,0.249997,0,0);}
.m145_c00456{transform:matrix(0.216749,0.002167,-0.002500,0.249988,0,0);-ms-transform:matrix(0.216749,0.002167,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.216749,0.002167,-0.002500,0.249988,0,0);}
.m6b_c00456{transform:matrix(0.216962,-0.001085,0.001250,0.249997,0,0);-ms-transform:matrix(0.216962,-0.001085,0.001250,0.249997,0,0);-webkit-transform:matrix(0.216962,-0.001085,0.001250,0.249997,0,0);}
.m60_c00456{transform:matrix(0.217097,-0.001085,0.001250,0.249997,0,0);-ms-transform:matrix(0.217097,-0.001085,0.001250,0.249997,0,0);-webkit-transform:matrix(0.217097,-0.001085,0.001250,0.249997,0,0);}
.m130_c00456{transform:matrix(0.217617,0.001088,-0.001250,0.249997,0,0);-ms-transform:matrix(0.217617,0.001088,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.217617,0.001088,-0.001250,0.249997,0,0);}
.mdc_c00456{transform:matrix(0.217872,-0.001089,0.001250,0.249997,0,0);-ms-transform:matrix(0.217872,-0.001089,0.001250,0.249997,0,0);-webkit-transform:matrix(0.217872,-0.001089,0.001250,0.249997,0,0);}
.m141_c00456{transform:matrix(0.217909,0.002179,-0.002500,0.249988,0,0);-ms-transform:matrix(0.217909,0.002179,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.217909,0.002179,-0.002500,0.249988,0,0);}
.m65_c00456{transform:matrix(0.218047,-0.001090,0.001250,0.249997,0,0);-ms-transform:matrix(0.218047,-0.001090,0.001250,0.249997,0,0);-webkit-transform:matrix(0.218047,-0.001090,0.001250,0.249997,0,0);}
.m136_c00456{transform:matrix(0.218204,0.002182,-0.002500,0.249988,0,0);-ms-transform:matrix(0.218204,0.002182,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.218204,0.002182,-0.002500,0.249988,0,0);}
.m7d_c00456{transform:matrix(0.218522,-0.001093,0.001250,0.249997,0,0);-ms-transform:matrix(0.218522,-0.001093,0.001250,0.249997,0,0);-webkit-transform:matrix(0.218522,-0.001093,0.001250,0.249997,0,0);}
.m1b_c00456{transform:matrix(0.218877,-0.001094,0.001250,0.249997,0,0);-ms-transform:matrix(0.218877,-0.001094,0.001250,0.249997,0,0);-webkit-transform:matrix(0.218877,-0.001094,0.001250,0.249997,0,0);}
.m104_c00456{transform:matrix(0.219142,-0.001096,0.001250,0.249997,0,0);-ms-transform:matrix(0.219142,-0.001096,0.001250,0.249997,0,0);-webkit-transform:matrix(0.219142,-0.001096,0.001250,0.249997,0,0);}
.m44_c00456{transform:matrix(0.219357,-0.001097,0.001250,0.249997,0,0);-ms-transform:matrix(0.219357,-0.001097,0.001250,0.249997,0,0);-webkit-transform:matrix(0.219357,-0.001097,0.001250,0.249997,0,0);}
.me1_c00456{transform:matrix(0.219387,-0.001097,0.001250,0.249997,0,0);-ms-transform:matrix(0.219387,-0.001097,0.001250,0.249997,0,0);-webkit-transform:matrix(0.219387,-0.001097,0.001250,0.249997,0,0);}
.md5_c00456{transform:matrix(0.220007,-0.001100,0.001250,0.249997,0,0);-ms-transform:matrix(0.220007,-0.001100,0.001250,0.249997,0,0);-webkit-transform:matrix(0.220007,-0.001100,0.001250,0.249997,0,0);}
.m66_c00456{transform:matrix(0.220077,-0.001100,0.001250,0.249997,0,0);-ms-transform:matrix(0.220077,-0.001100,0.001250,0.249997,0,0);-webkit-transform:matrix(0.220077,-0.001100,0.001250,0.249997,0,0);}
.m115_c00456{transform:matrix(0.220227,0.001101,-0.001250,0.249997,0,0);-ms-transform:matrix(0.220227,0.001101,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.220227,0.001101,-0.001250,0.249997,0,0);}
.m42_c00456{transform:matrix(0.220282,-0.001101,0.001250,0.249997,0,0);-ms-transform:matrix(0.220282,-0.001101,0.001250,0.249997,0,0);-webkit-transform:matrix(0.220282,-0.001101,0.001250,0.249997,0,0);}
.m13e_c00456{transform:matrix(0.221074,0.002211,-0.002500,0.249988,0,0);-ms-transform:matrix(0.221074,0.002211,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.221074,0.002211,-0.002500,0.249988,0,0);}
.m10c_c00456{transform:matrix(0.221117,-0.001106,0.001250,0.249997,0,0);-ms-transform:matrix(0.221117,-0.001106,0.001250,0.249997,0,0);-webkit-transform:matrix(0.221117,-0.001106,0.001250,0.249997,0,0);}
.m59_c00456{transform:matrix(0.221137,-0.001106,0.001250,0.249997,0,0);-ms-transform:matrix(0.221137,-0.001106,0.001250,0.249997,0,0);-webkit-transform:matrix(0.221137,-0.001106,0.001250,0.249997,0,0);}
.m139_c00456{transform:matrix(0.221984,0.002220,-0.002500,0.249988,0,0);-ms-transform:matrix(0.221984,0.002220,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.221984,0.002220,-0.002500,0.249988,0,0);}
.m84_c00456{transform:matrix(0.222177,-0.001111,0.001250,0.249997,0,0);-ms-transform:matrix(0.222177,-0.001111,0.001250,0.249997,0,0);-webkit-transform:matrix(0.222177,-0.001111,0.001250,0.249997,0,0);}
.ma3_c00456{transform:matrix(0.222487,-0.001112,0.001250,0.249997,0,0);-ms-transform:matrix(0.222487,-0.001112,0.001250,0.249997,0,0);-webkit-transform:matrix(0.222487,-0.001112,0.001250,0.249997,0,0);}
.m47_c00456{transform:matrix(0.222522,-0.001113,0.001250,0.249997,0,0);-ms-transform:matrix(0.222522,-0.001113,0.001250,0.249997,0,0);-webkit-transform:matrix(0.222522,-0.001113,0.001250,0.249997,0,0);}
.m5a_c00456{transform:matrix(0.222842,-0.001114,0.001250,0.249997,0,0);-ms-transform:matrix(0.222842,-0.001114,0.001250,0.249997,0,0);-webkit-transform:matrix(0.222842,-0.001114,0.001250,0.249997,0,0);}
.m9e_c00456{transform:matrix(0.223217,-0.001116,0.001250,0.249997,0,0);-ms-transform:matrix(0.223217,-0.001116,0.001250,0.249997,0,0);-webkit-transform:matrix(0.223217,-0.001116,0.001250,0.249997,0,0);}
.m2c_c00456{transform:matrix(0.223267,-0.001116,0.001250,0.249997,0,0);-ms-transform:matrix(0.223267,-0.001116,0.001250,0.249997,0,0);-webkit-transform:matrix(0.223267,-0.001116,0.001250,0.249997,0,0);}
.meb_c00456{transform:matrix(0.223452,-0.001117,0.001250,0.249997,0,0);-ms-transform:matrix(0.223452,-0.001117,0.001250,0.249997,0,0);-webkit-transform:matrix(0.223452,-0.001117,0.001250,0.249997,0,0);}
.m17_c00456{transform:matrix(0.224067,-0.001120,0.001250,0.249997,0,0);-ms-transform:matrix(0.224067,-0.001120,0.001250,0.249997,0,0);-webkit-transform:matrix(0.224067,-0.001120,0.001250,0.249997,0,0);}
.m82_c00456{transform:matrix(0.224427,-0.001122,0.001250,0.249997,0,0);-ms-transform:matrix(0.224427,-0.001122,0.001250,0.249997,0,0);-webkit-transform:matrix(0.224427,-0.001122,0.001250,0.249997,0,0);}
.me7_c00456{transform:matrix(0.224517,-0.001123,0.001250,0.249997,0,0);-ms-transform:matrix(0.224517,-0.001123,0.001250,0.249997,0,0);-webkit-transform:matrix(0.224517,-0.001123,0.001250,0.249997,0,0);}
.m4e_c00456{transform:matrix(0.224677,-0.001123,0.001250,0.249997,0,0);-ms-transform:matrix(0.224677,-0.001123,0.001250,0.249997,0,0);-webkit-transform:matrix(0.224677,-0.001123,0.001250,0.249997,0,0);}
.md1_c00456{transform:matrix(0.225312,-0.001127,0.001250,0.249997,0,0);-ms-transform:matrix(0.225312,-0.001127,0.001250,0.249997,0,0);-webkit-transform:matrix(0.225312,-0.001127,0.001250,0.249997,0,0);}
.mfa_c00456{transform:matrix(0.225342,-0.001127,0.001250,0.249997,0,0);-ms-transform:matrix(0.225342,-0.001127,0.001250,0.249997,0,0);-webkit-transform:matrix(0.225342,-0.001127,0.001250,0.249997,0,0);}
.m119_c00456{transform:matrix(0.225462,0.001127,-0.001250,0.249997,0,0);-ms-transform:matrix(0.225462,0.001127,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.225462,0.001127,-0.001250,0.249997,0,0);}
.m7b_c00456{transform:matrix(0.225722,-0.001129,0.001250,0.249997,0,0);-ms-transform:matrix(0.225722,-0.001129,0.001250,0.249997,0,0);-webkit-transform:matrix(0.225722,-0.001129,0.001250,0.249997,0,0);}
.m137_c00456{transform:matrix(0.225924,0.002259,-0.002500,0.249988,0,0);-ms-transform:matrix(0.225924,0.002259,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.225924,0.002259,-0.002500,0.249988,0,0);}
.ma7_c00456{transform:matrix(0.226162,-0.001131,0.001250,0.249997,0,0);-ms-transform:matrix(0.226162,-0.001131,0.001250,0.249997,0,0);-webkit-transform:matrix(0.226162,-0.001131,0.001250,0.249997,0,0);}
.m138_c00456{transform:matrix(0.226604,0.002266,-0.002500,0.249988,0,0);-ms-transform:matrix(0.226604,0.002266,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.226604,0.002266,-0.002500,0.249988,0,0);}
.med_c00456{transform:matrix(0.226822,-0.001134,0.001250,0.249997,0,0);-ms-transform:matrix(0.226822,-0.001134,0.001250,0.249997,0,0);-webkit-transform:matrix(0.226822,-0.001134,0.001250,0.249997,0,0);}
.me5_c00456{transform:matrix(0.226962,-0.001135,0.001250,0.249997,0,0);-ms-transform:matrix(0.226962,-0.001135,0.001250,0.249997,0,0);-webkit-transform:matrix(0.226962,-0.001135,0.001250,0.249997,0,0);}
.mc7_c00456{transform:matrix(0.227242,-0.001136,0.001250,0.249997,0,0);-ms-transform:matrix(0.227242,-0.001136,0.001250,0.249997,0,0);-webkit-transform:matrix(0.227242,-0.001136,0.001250,0.249997,0,0);}
.mcd_c00456{transform:matrix(0.227262,-0.001136,0.001250,0.249997,0,0);-ms-transform:matrix(0.227262,-0.001136,0.001250,0.249997,0,0);-webkit-transform:matrix(0.227262,-0.001136,0.001250,0.249997,0,0);}
.m11e_c00456{transform:matrix(0.227942,0.001140,-0.001250,0.249997,0,0);-ms-transform:matrix(0.227942,0.001140,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.227942,0.001140,-0.001250,0.249997,0,0);}
.mc1_c00456{transform:matrix(0.228157,-0.001141,0.001250,0.249997,0,0);-ms-transform:matrix(0.228157,-0.001141,0.001250,0.249997,0,0);-webkit-transform:matrix(0.228157,-0.001141,0.001250,0.249997,0,0);}
.m5d_c00456{transform:matrix(0.228627,-0.001143,0.001250,0.249997,0,0);-ms-transform:matrix(0.228627,-0.001143,0.001250,0.249997,0,0);-webkit-transform:matrix(0.228627,-0.001143,0.001250,0.249997,0,0);}
.md7_c00456{transform:matrix(0.228752,-0.001144,0.001250,0.249997,0,0);-ms-transform:matrix(0.228752,-0.001144,0.001250,0.249997,0,0);-webkit-transform:matrix(0.228752,-0.001144,0.001250,0.249997,0,0);}
.m101_c00456{transform:matrix(0.228812,-0.001144,0.001250,0.249997,0,0);-ms-transform:matrix(0.228812,-0.001144,0.001250,0.249997,0,0);-webkit-transform:matrix(0.228812,-0.001144,0.001250,0.249997,0,0);}
.mb1_c00456{transform:matrix(0.229792,-0.001149,0.001250,0.249997,0,0);-ms-transform:matrix(0.229792,-0.001149,0.001250,0.249997,0,0);-webkit-transform:matrix(0.229792,-0.001149,0.001250,0.249997,0,0);}
.m81_c00456{transform:matrix(0.229917,-0.001150,0.001250,0.249997,0,0);-ms-transform:matrix(0.229917,-0.001150,0.001250,0.249997,0,0);-webkit-transform:matrix(0.229917,-0.001150,0.001250,0.249997,0,0);}
.mf3_c00456{transform:matrix(0.230217,-0.001151,0.001250,0.249997,0,0);-ms-transform:matrix(0.230217,-0.001151,0.001250,0.249997,0,0);-webkit-transform:matrix(0.230217,-0.001151,0.001250,0.249997,0,0);}
.mbd_c00456{transform:matrix(0.230337,-0.001152,0.001250,0.249997,0,0);-ms-transform:matrix(0.230337,-0.001152,0.001250,0.249997,0,0);-webkit-transform:matrix(0.230337,-0.001152,0.001250,0.249997,0,0);}
.m8a_c00456{transform:matrix(0.230392,-0.001152,0.001250,0.249997,0,0);-ms-transform:matrix(0.230392,-0.001152,0.001250,0.249997,0,0);-webkit-transform:matrix(0.230392,-0.001152,0.001250,0.249997,0,0);}
.m12c_c00456{transform:matrix(0.230912,0.001155,-0.001250,0.249997,0,0);-ms-transform:matrix(0.230912,0.001155,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.230912,0.001155,-0.001250,0.249997,0,0);}
.m9a_c00456{transform:matrix(0.231097,-0.001155,0.001250,0.249997,0,0);-ms-transform:matrix(0.231097,-0.001155,0.001250,0.249997,0,0);-webkit-transform:matrix(0.231097,-0.001155,0.001250,0.249997,0,0);}
.m128_c00456{transform:matrix(0.231627,0.001158,-0.001250,0.249997,0,0);-ms-transform:matrix(0.231627,0.001158,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.231627,0.001158,-0.001250,0.249997,0,0);}
.mcc_c00456{transform:matrix(0.231802,-0.001159,0.001250,0.249997,0,0);-ms-transform:matrix(0.231802,-0.001159,0.001250,0.249997,0,0);-webkit-transform:matrix(0.231802,-0.001159,0.001250,0.249997,0,0);}
.m89_c00456{transform:matrix(0.232242,-0.001161,0.001250,0.249997,0,0);-ms-transform:matrix(0.232242,-0.001161,0.001250,0.249997,0,0);-webkit-transform:matrix(0.232242,-0.001161,0.001250,0.249997,0,0);}
.mca_c00456{transform:matrix(0.232332,-0.001162,0.001250,0.249997,0,0);-ms-transform:matrix(0.232332,-0.001162,0.001250,0.249997,0,0);-webkit-transform:matrix(0.232332,-0.001162,0.001250,0.249997,0,0);}
.m85_c00456{transform:matrix(0.232372,-0.001162,0.001250,0.249997,0,0);-ms-transform:matrix(0.232372,-0.001162,0.001250,0.249997,0,0);-webkit-transform:matrix(0.232372,-0.001162,0.001250,0.249997,0,0);}
.m112_c00456{transform:matrix(0.232402,0.001162,-0.001250,0.249997,0,0);-ms-transform:matrix(0.232402,0.001162,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.232402,0.001162,-0.001250,0.249997,0,0);}
.m14a_c00456{transform:matrix(0.232938,0.002329,-0.002500,0.249988,0,0);-ms-transform:matrix(0.232938,0.002329,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.232938,0.002329,-0.002500,0.249988,0,0);}
.m79_c00456{transform:matrix(0.233092,-0.001165,0.001250,0.249997,0,0);-ms-transform:matrix(0.233092,-0.001165,0.001250,0.249997,0,0);-webkit-transform:matrix(0.233092,-0.001165,0.001250,0.249997,0,0);}
.m1a_c00456{transform:matrix(0.233157,-0.001166,0.001250,0.249997,0,0);-ms-transform:matrix(0.233157,-0.001166,0.001250,0.249997,0,0);-webkit-transform:matrix(0.233157,-0.001166,0.001250,0.249997,0,0);}
.md9_c00456{transform:matrix(0.233242,-0.001166,0.001250,0.249997,0,0);-ms-transform:matrix(0.233242,-0.001166,0.001250,0.249997,0,0);-webkit-transform:matrix(0.233242,-0.001166,0.001250,0.249997,0,0);}
.md0_c00456{transform:matrix(0.233392,-0.001167,0.001250,0.249997,0,0);-ms-transform:matrix(0.233392,-0.001167,0.001250,0.249997,0,0);-webkit-transform:matrix(0.233392,-0.001167,0.001250,0.249997,0,0);}
.m52_c00456{transform:matrix(0.233797,-0.001169,0.001250,0.249997,0,0);-ms-transform:matrix(0.233797,-0.001169,0.001250,0.249997,0,0);-webkit-transform:matrix(0.233797,-0.001169,0.001250,0.249997,0,0);}
.m10f_c00456{transform:matrix(0.234032,-0.001170,0.001250,0.249997,0,0);-ms-transform:matrix(0.234032,-0.001170,0.001250,0.249997,0,0);-webkit-transform:matrix(0.234032,-0.001170,0.001250,0.249997,0,0);}
.mae_c00456{transform:matrix(0.234257,-0.001171,0.001250,0.249997,0,0);-ms-transform:matrix(0.234257,-0.001171,0.001250,0.249997,0,0);-webkit-transform:matrix(0.234257,-0.001171,0.001250,0.249997,0,0);}
.m149_c00456{transform:matrix(0.234493,0.002345,-0.002500,0.249988,0,0);-ms-transform:matrix(0.234493,0.002345,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.234493,0.002345,-0.002500,0.249988,0,0);}
.m71_c00456{transform:matrix(0.235752,-0.001179,0.001250,0.249997,0,0);-ms-transform:matrix(0.235752,-0.001179,0.001250,0.249997,0,0);-webkit-transform:matrix(0.235752,-0.001179,0.001250,0.249997,0,0);}
.m11a_c00456{transform:matrix(0.236032,0.001180,-0.001250,0.249997,0,0);-ms-transform:matrix(0.236032,0.001180,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.236032,0.001180,-0.001250,0.249997,0,0);}
.mad_c00456{transform:matrix(0.236582,-0.001183,0.001250,0.249997,0,0);-ms-transform:matrix(0.236582,-0.001183,0.001250,0.249997,0,0);-webkit-transform:matrix(0.236582,-0.001183,0.001250,0.249997,0,0);}
.m12e_c00456{transform:matrix(0.236712,0.001184,-0.001250,0.249997,0,0);-ms-transform:matrix(0.236712,0.001184,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.236712,0.001184,-0.001250,0.249997,0,0);}
.m144_c00456{transform:matrix(0.237123,0.002371,-0.002500,0.249988,0,0);-ms-transform:matrix(0.237123,0.002371,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.237123,0.002371,-0.002500,0.249988,0,0);}
.m148_c00456{transform:matrix(0.237413,0.002374,-0.002500,0.249988,0,0);-ms-transform:matrix(0.237413,0.002374,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.237413,0.002374,-0.002500,0.249988,0,0);}
.m98_c00456{transform:matrix(0.238022,-0.001190,0.001250,0.249997,0,0);-ms-transform:matrix(0.238022,-0.001190,0.001250,0.249997,0,0);-webkit-transform:matrix(0.238022,-0.001190,0.001250,0.249997,0,0);}
.mda_c00456{transform:matrix(0.238377,-0.001192,0.001250,0.249997,0,0);-ms-transform:matrix(0.238377,-0.001192,0.001250,0.249997,0,0);-webkit-transform:matrix(0.238377,-0.001192,0.001250,0.249997,0,0);}
.m88_c00456{transform:matrix(0.239077,-0.001195,0.001250,0.249997,0,0);-ms-transform:matrix(0.239077,-0.001195,0.001250,0.249997,0,0);-webkit-transform:matrix(0.239077,-0.001195,0.001250,0.249997,0,0);}
.mab_c00456{transform:matrix(0.239122,-0.001196,0.001250,0.249997,0,0);-ms-transform:matrix(0.239122,-0.001196,0.001250,0.249997,0,0);-webkit-transform:matrix(0.239122,-0.001196,0.001250,0.249997,0,0);}
.m9b_c00456{transform:matrix(0.239437,-0.001197,0.001250,0.249997,0,0);-ms-transform:matrix(0.239437,-0.001197,0.001250,0.249997,0,0);-webkit-transform:matrix(0.239437,-0.001197,0.001250,0.249997,0,0);}
.m6f_c00456{transform:matrix(0.240292,-0.001201,0.001250,0.249997,0,0);-ms-transform:matrix(0.240292,-0.001201,0.001250,0.249997,0,0);-webkit-transform:matrix(0.240292,-0.001201,0.001250,0.249997,0,0);}
.md3_c00456{transform:matrix(0.240327,-0.001202,0.001250,0.249997,0,0);-ms-transform:matrix(0.240327,-0.001202,0.001250,0.249997,0,0);-webkit-transform:matrix(0.240327,-0.001202,0.001250,0.249997,0,0);}
.m57_c00456{transform:matrix(0.240447,-0.001202,0.001250,0.249997,0,0);-ms-transform:matrix(0.240447,-0.001202,0.001250,0.249997,0,0);-webkit-transform:matrix(0.240447,-0.001202,0.001250,0.249997,0,0);}
.m8f_c00456{transform:matrix(0.240632,-0.001203,0.001250,0.249997,0,0);-ms-transform:matrix(0.240632,-0.001203,0.001250,0.249997,0,0);-webkit-transform:matrix(0.240632,-0.001203,0.001250,0.249997,0,0);}
.ma2_c00456{transform:matrix(0.240752,-0.001204,0.001250,0.249997,0,0);-ms-transform:matrix(0.240752,-0.001204,0.001250,0.249997,0,0);-webkit-transform:matrix(0.240752,-0.001204,0.001250,0.249997,0,0);}
.mf2_c00456{transform:matrix(0.240777,-0.001204,0.001250,0.249997,0,0);-ms-transform:matrix(0.240777,-0.001204,0.001250,0.249997,0,0);-webkit-transform:matrix(0.240777,-0.001204,0.001250,0.249997,0,0);}
.m11b_c00456{transform:matrix(0.240857,0.001204,-0.001250,0.249997,0,0);-ms-transform:matrix(0.240857,0.001204,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.240857,0.001204,-0.001250,0.249997,0,0);}
.m19_c00456{transform:matrix(0.240882,-0.001204,0.001250,0.249997,0,0);-ms-transform:matrix(0.240882,-0.001204,0.001250,0.249997,0,0);-webkit-transform:matrix(0.240882,-0.001204,0.001250,0.249997,0,0);}
.mf0_c00456{transform:matrix(0.241102,-0.001206,0.001250,0.249997,0,0);-ms-transform:matrix(0.241102,-0.001206,0.001250,0.249997,0,0);-webkit-transform:matrix(0.241102,-0.001206,0.001250,0.249997,0,0);}
.m94_c00456{transform:matrix(0.241517,-0.001208,0.001250,0.249997,0,0);-ms-transform:matrix(0.241517,-0.001208,0.001250,0.249997,0,0);-webkit-transform:matrix(0.241517,-0.001208,0.001250,0.249997,0,0);}
.m122_c00456{transform:matrix(0.241867,0.001209,-0.001250,0.249997,0,0);-ms-transform:matrix(0.241867,0.001209,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.241867,0.001209,-0.001250,0.249997,0,0);}
.m109_c00456{transform:matrix(0.242052,-0.001210,0.001250,0.249997,0,0);-ms-transform:matrix(0.242052,-0.001210,0.001250,0.249997,0,0);-webkit-transform:matrix(0.242052,-0.001210,0.001250,0.249997,0,0);}
.m15_c00456{transform:matrix(0.242327,-0.001212,0.001250,0.249997,0,0);-ms-transform:matrix(0.242327,-0.001212,0.001250,0.249997,0,0);-webkit-transform:matrix(0.242327,-0.001212,0.001250,0.249997,0,0);}
.m121_c00456{transform:matrix(0.242557,0.001213,-0.001250,0.249997,0,0);-ms-transform:matrix(0.242557,0.001213,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.242557,0.001213,-0.001250,0.249997,0,0);}
.mbe_c00456{transform:matrix(0.242702,-0.001214,0.001250,0.249997,0,0);-ms-transform:matrix(0.242702,-0.001214,0.001250,0.249997,0,0);-webkit-transform:matrix(0.242702,-0.001214,0.001250,0.249997,0,0);}
.m8e_c00456{transform:matrix(0.243032,-0.001215,0.001250,0.249997,0,0);-ms-transform:matrix(0.243032,-0.001215,0.001250,0.249997,0,0);-webkit-transform:matrix(0.243032,-0.001215,0.001250,0.249997,0,0);}
.ma4_c00456{transform:matrix(0.243197,-0.001216,0.001250,0.249997,0,0);-ms-transform:matrix(0.243197,-0.001216,0.001250,0.249997,0,0);-webkit-transform:matrix(0.243197,-0.001216,0.001250,0.249997,0,0);}
.mef_c00456{transform:matrix(0.243317,-0.001217,0.001250,0.249997,0,0);-ms-transform:matrix(0.243317,-0.001217,0.001250,0.249997,0,0);-webkit-transform:matrix(0.243317,-0.001217,0.001250,0.249997,0,0);}
.mcb_c00456{transform:matrix(0.243467,-0.001217,0.001250,0.249997,0,0);-ms-transform:matrix(0.243467,-0.001217,0.001250,0.249997,0,0);-webkit-transform:matrix(0.243467,-0.001217,0.001250,0.249997,0,0);}
.m107_c00456{transform:matrix(0.243492,-0.001217,0.001250,0.249997,0,0);-ms-transform:matrix(0.243492,-0.001217,0.001250,0.249997,0,0);-webkit-transform:matrix(0.243492,-0.001217,0.001250,0.249997,0,0);}
.m5b_c00456{transform:matrix(0.243747,-0.001219,0.001250,0.249997,0,0);-ms-transform:matrix(0.243747,-0.001219,0.001250,0.249997,0,0);-webkit-transform:matrix(0.243747,-0.001219,0.001250,0.249997,0,0);}
.m18_c00456{transform:matrix(0.244042,-0.001220,0.001250,0.249997,0,0);-ms-transform:matrix(0.244042,-0.001220,0.001250,0.249997,0,0);-webkit-transform:matrix(0.244042,-0.001220,0.001250,0.249997,0,0);}
.m143_c00456{transform:matrix(0.244248,0.002442,-0.002500,0.249988,0,0);-ms-transform:matrix(0.244248,0.002442,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.244248,0.002442,-0.002500,0.249988,0,0);}
.m8b_c00456{transform:matrix(0.244652,-0.001223,0.001250,0.249997,0,0);-ms-transform:matrix(0.244652,-0.001223,0.001250,0.249997,0,0);-webkit-transform:matrix(0.244652,-0.001223,0.001250,0.249997,0,0);}
.m53_c00456{transform:matrix(0.244857,-0.001224,0.001250,0.249997,0,0);-ms-transform:matrix(0.244857,-0.001224,0.001250,0.249997,0,0);-webkit-transform:matrix(0.244857,-0.001224,0.001250,0.249997,0,0);}
.m2e_c00456{transform:matrix(0.245212,-0.001226,0.001250,0.249997,0,0);-ms-transform:matrix(0.245212,-0.001226,0.001250,0.249997,0,0);-webkit-transform:matrix(0.245212,-0.001226,0.001250,0.249997,0,0);}
.md2_c00456{transform:matrix(0.245722,-0.001229,0.001250,0.249997,0,0);-ms-transform:matrix(0.245722,-0.001229,0.001250,0.249997,0,0);-webkit-transform:matrix(0.245722,-0.001229,0.001250,0.249997,0,0);}
.m12d_c00456{transform:matrix(0.246192,0.001231,-0.001250,0.249997,0,0);-ms-transform:matrix(0.246192,0.001231,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.246192,0.001231,-0.001250,0.249997,0,0);}
.m129_c00456{transform:matrix(0.246522,0.001233,-0.001250,0.249997,0,0);-ms-transform:matrix(0.246522,0.001233,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.246522,0.001233,-0.001250,0.249997,0,0);}
.m10e_c00456{transform:matrix(0.246737,-0.001234,0.001250,0.249997,0,0);-ms-transform:matrix(0.246737,-0.001234,0.001250,0.249997,0,0);-webkit-transform:matrix(0.246737,-0.001234,0.001250,0.249997,0,0);}
.m4b_c00456{transform:matrix(0.247547,-0.001238,0.001250,0.249997,0,0);-ms-transform:matrix(0.247547,-0.001238,0.001250,0.249997,0,0);-webkit-transform:matrix(0.247547,-0.001238,0.001250,0.249997,0,0);}
.ma5_c00456{transform:matrix(0.247952,-0.001240,0.001250,0.249997,0,0);-ms-transform:matrix(0.247952,-0.001240,0.001250,0.249997,0,0);-webkit-transform:matrix(0.247952,-0.001240,0.001250,0.249997,0,0);}
.m11d_c00456{transform:matrix(0.248467,0.001242,-0.001250,0.249997,0,0);-ms-transform:matrix(0.248467,0.001242,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.248467,0.001242,-0.001250,0.249997,0,0);}
.m55_c00456{transform:matrix(0.248687,-0.001243,0.001250,0.249997,0,0);-ms-transform:matrix(0.248687,-0.001243,0.001250,0.249997,0,0);-webkit-transform:matrix(0.248687,-0.001243,0.001250,0.249997,0,0);}
.m5e_c00456{transform:matrix(0.248877,-0.001244,0.001250,0.249997,0,0);-ms-transform:matrix(0.248877,-0.001244,0.001250,0.249997,0,0);-webkit-transform:matrix(0.248877,-0.001244,0.001250,0.249997,0,0);}
.m6c_c00456{transform:matrix(0.248922,-0.001245,0.001250,0.249997,0,0);-ms-transform:matrix(0.248922,-0.001245,0.001250,0.249997,0,0);-webkit-transform:matrix(0.248922,-0.001245,0.001250,0.249997,0,0);}
.m31_c00456{transform:matrix(0.249037,-0.001245,0.001250,0.249997,0,0);-ms-transform:matrix(0.249037,-0.001245,0.001250,0.249997,0,0);-webkit-transform:matrix(0.249037,-0.001245,0.001250,0.249997,0,0);}
.m76_c00456{transform:matrix(0.249212,-0.001246,0.001250,0.249997,0,0);-ms-transform:matrix(0.249212,-0.001246,0.001250,0.249997,0,0);-webkit-transform:matrix(0.249212,-0.001246,0.001250,0.249997,0,0);}
.m105_c00456{transform:matrix(0.249307,-0.001247,0.001250,0.249997,0,0);-ms-transform:matrix(0.249307,-0.001247,0.001250,0.249997,0,0);-webkit-transform:matrix(0.249307,-0.001247,0.001250,0.249997,0,0);}
.m146_c00456{transform:matrix(0.249458,0.002495,-0.002500,0.249988,0,0);-ms-transform:matrix(0.249458,0.002495,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.249458,0.002495,-0.002500,0.249988,0,0);}
.m12b_c00456{transform:matrix(0.249657,0.001248,-0.001250,0.249997,0,0);-ms-transform:matrix(0.249657,0.001248,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.249657,0.001248,-0.001250,0.249997,0,0);}
.mfd_c00456{transform:matrix(0.250152,-0.001251,0.001250,0.249997,0,0);-ms-transform:matrix(0.250152,-0.001251,0.001250,0.249997,0,0);-webkit-transform:matrix(0.250152,-0.001251,0.001250,0.249997,0,0);}
.mff_c00456{transform:matrix(0.250657,-0.001253,0.001250,0.249997,0,0);-ms-transform:matrix(0.250657,-0.001253,0.001250,0.249997,0,0);-webkit-transform:matrix(0.250657,-0.001253,0.001250,0.249997,0,0);}
.mce_c00456{transform:matrix(0.250692,-0.001253,0.001250,0.249997,0,0);-ms-transform:matrix(0.250692,-0.001253,0.001250,0.249997,0,0);-webkit-transform:matrix(0.250692,-0.001253,0.001250,0.249997,0,0);}
.mcf_c00456{transform:matrix(0.250902,-0.001255,0.001250,0.249997,0,0);-ms-transform:matrix(0.250902,-0.001255,0.001250,0.249997,0,0);-webkit-transform:matrix(0.250902,-0.001255,0.001250,0.249997,0,0);}
.mf1_c00456{transform:matrix(0.251032,-0.001255,0.001250,0.249997,0,0);-ms-transform:matrix(0.251032,-0.001255,0.001250,0.249997,0,0);-webkit-transform:matrix(0.251032,-0.001255,0.001250,0.249997,0,0);}
.m150_c00456{transform:matrix(0.251145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251145,0.000000,0.000000,0.250000,0,0);}
.m126_c00456{transform:matrix(0.251197,0.001256,-0.001250,0.249997,0,0);-ms-transform:matrix(0.251197,0.001256,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.251197,0.001256,-0.001250,0.249997,0,0);}
.m1f_c00456{transform:matrix(0.251787,-0.001259,0.001250,0.249997,0,0);-ms-transform:matrix(0.251787,-0.001259,0.001250,0.249997,0,0);-webkit-transform:matrix(0.251787,-0.001259,0.001250,0.249997,0,0);}
.m73_c00456{transform:matrix(0.251892,-0.001259,0.001250,0.249997,0,0);-ms-transform:matrix(0.251892,-0.001259,0.001250,0.249997,0,0);-webkit-transform:matrix(0.251892,-0.001259,0.001250,0.249997,0,0);}
.m142_c00456{transform:matrix(0.252442,0.002524,-0.002500,0.249988,0,0);-ms-transform:matrix(0.252442,0.002524,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.252442,0.002524,-0.002500,0.249988,0,0);}
.m4a_c00456{transform:matrix(0.252532,-0.001263,0.001250,0.249997,0,0);-ms-transform:matrix(0.252532,-0.001263,0.001250,0.249997,0,0);-webkit-transform:matrix(0.252532,-0.001263,0.001250,0.249997,0,0);}
.m118_c00456{transform:matrix(0.252627,0.001263,-0.001250,0.249997,0,0);-ms-transform:matrix(0.252627,0.001263,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.252627,0.001263,-0.001250,0.249997,0,0);}
.m2b_c00456{transform:matrix(0.253032,-0.001265,0.001250,0.249997,0,0);-ms-transform:matrix(0.253032,-0.001265,0.001250,0.249997,0,0);-webkit-transform:matrix(0.253032,-0.001265,0.001250,0.249997,0,0);}
.m77_c00456{transform:matrix(0.253357,-0.001267,0.001250,0.249997,0,0);-ms-transform:matrix(0.253357,-0.001267,0.001250,0.249997,0,0);-webkit-transform:matrix(0.253357,-0.001267,0.001250,0.249997,0,0);}
.mf4_c00456{transform:matrix(0.253637,-0.001268,0.001250,0.249997,0,0);-ms-transform:matrix(0.253637,-0.001268,0.001250,0.249997,0,0);-webkit-transform:matrix(0.253637,-0.001268,0.001250,0.249997,0,0);}
.m116_c00456{transform:matrix(0.253782,0.001269,-0.001250,0.249997,0,0);-ms-transform:matrix(0.253782,0.001269,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.253782,0.001269,-0.001250,0.249997,0,0);}
.m10b_c00456{transform:matrix(0.254032,-0.001270,0.001250,0.249997,0,0);-ms-transform:matrix(0.254032,-0.001270,0.001250,0.249997,0,0);-webkit-transform:matrix(0.254032,-0.001270,0.001250,0.249997,0,0);}
.m70_c00456{transform:matrix(0.254247,-0.001271,0.001250,0.249997,0,0);-ms-transform:matrix(0.254247,-0.001271,0.001250,0.249997,0,0);-webkit-transform:matrix(0.254247,-0.001271,0.001250,0.249997,0,0);}
.m127_c00456{transform:matrix(0.254377,0.001272,-0.001250,0.249997,0,0);-ms-transform:matrix(0.254377,0.001272,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.254377,0.001272,-0.001250,0.249997,0,0);}
.m12f_c00456{transform:matrix(0.254412,0.001272,-0.001250,0.249997,0,0);-ms-transform:matrix(0.254412,0.001272,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.254412,0.001272,-0.001250,0.249997,0,0);}
.mc8_c00456{transform:matrix(0.254507,-0.001273,0.001250,0.249997,0,0);-ms-transform:matrix(0.254507,-0.001273,0.001250,0.249997,0,0);-webkit-transform:matrix(0.254507,-0.001273,0.001250,0.249997,0,0);}
.m5c_c00456{transform:matrix(0.254652,-0.001273,0.001250,0.249997,0,0);-ms-transform:matrix(0.254652,-0.001273,0.001250,0.249997,0,0);-webkit-transform:matrix(0.254652,-0.001273,0.001250,0.249997,0,0);}
.m11f_c00456{transform:matrix(0.255182,0.001276,-0.001250,0.249997,0,0);-ms-transform:matrix(0.255182,0.001276,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.255182,0.001276,-0.001250,0.249997,0,0);}
.mee_c00456{transform:matrix(0.255262,-0.001276,0.001250,0.249997,0,0);-ms-transform:matrix(0.255262,-0.001276,0.001250,0.249997,0,0);-webkit-transform:matrix(0.255262,-0.001276,0.001250,0.249997,0,0);}
.ma9_c00456{transform:matrix(0.255337,-0.001277,0.001250,0.249997,0,0);-ms-transform:matrix(0.255337,-0.001277,0.001250,0.249997,0,0);-webkit-transform:matrix(0.255337,-0.001277,0.001250,0.249997,0,0);}
.m14d_c00456{transform:matrix(0.255985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255985,0.000000,0.000000,0.250000,0,0);}
.mea_c00456{transform:matrix(0.256842,-0.001284,0.001250,0.249997,0,0);-ms-transform:matrix(0.256842,-0.001284,0.001250,0.249997,0,0);-webkit-transform:matrix(0.256842,-0.001284,0.001250,0.249997,0,0);}
.mf7_c00456{transform:matrix(0.256867,-0.001284,0.001250,0.249997,0,0);-ms-transform:matrix(0.256867,-0.001284,0.001250,0.249997,0,0);-webkit-transform:matrix(0.256867,-0.001284,0.001250,0.249997,0,0);}
.m6e_c00456{transform:matrix(0.257107,-0.001286,0.001250,0.249997,0,0);-ms-transform:matrix(0.257107,-0.001286,0.001250,0.249997,0,0);-webkit-transform:matrix(0.257107,-0.001286,0.001250,0.249997,0,0);}
.m58_c00456{transform:matrix(0.257887,-0.001289,0.001250,0.249997,0,0);-ms-transform:matrix(0.257887,-0.001289,0.001250,0.249997,0,0);-webkit-transform:matrix(0.257887,-0.001289,0.001250,0.249997,0,0);}
.m1d_c00456{transform:matrix(0.258377,-0.001292,0.001250,0.249997,0,0);-ms-transform:matrix(0.258377,-0.001292,0.001250,0.249997,0,0);-webkit-transform:matrix(0.258377,-0.001292,0.001250,0.249997,0,0);}
.mac_c00456{transform:matrix(0.258737,-0.001294,0.001250,0.249997,0,0);-ms-transform:matrix(0.258737,-0.001294,0.001250,0.249997,0,0);-webkit-transform:matrix(0.258737,-0.001294,0.001250,0.249997,0,0);}
.mc9_c00456{transform:matrix(0.258937,-0.001295,0.001250,0.249997,0,0);-ms-transform:matrix(0.258937,-0.001295,0.001250,0.249997,0,0);-webkit-transform:matrix(0.258937,-0.001295,0.001250,0.249997,0,0);}
.m4c_c00456{transform:matrix(0.260422,-0.001302,0.001250,0.249997,0,0);-ms-transform:matrix(0.260422,-0.001302,0.001250,0.249997,0,0);-webkit-transform:matrix(0.260422,-0.001302,0.001250,0.249997,0,0);}
.m12a_c00456{transform:matrix(0.260892,0.001304,-0.001250,0.249997,0,0);-ms-transform:matrix(0.260892,0.001304,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.260892,0.001304,-0.001250,0.249997,0,0);}
.mbf_c00456{transform:matrix(0.261037,-0.001305,0.001250,0.249997,0,0);-ms-transform:matrix(0.261037,-0.001305,0.001250,0.249997,0,0);-webkit-transform:matrix(0.261037,-0.001305,0.001250,0.249997,0,0);}
.m14e_c00456{transform:matrix(0.261700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261700,0.000000,0.000000,0.250000,0,0);}
.m72_c00456{transform:matrix(0.261942,-0.001310,0.001250,0.249997,0,0);-ms-transform:matrix(0.261942,-0.001310,0.001250,0.249997,0,0);-webkit-transform:matrix(0.261942,-0.001310,0.001250,0.249997,0,0);}
.m13_c00456{transform:matrix(0.263757,-0.001319,0.001250,0.249997,0,0);-ms-transform:matrix(0.263757,-0.001319,0.001250,0.249997,0,0);-webkit-transform:matrix(0.263757,-0.001319,0.001250,0.249997,0,0);}
.m2a_c00456{transform:matrix(0.265427,-0.001327,0.001250,0.249997,0,0);-ms-transform:matrix(0.265427,-0.001327,0.001250,0.249997,0,0);-webkit-transform:matrix(0.265427,-0.001327,0.001250,0.249997,0,0);}
.mf9_c00456{transform:matrix(0.266132,-0.001331,0.001250,0.249997,0,0);-ms-transform:matrix(0.266132,-0.001331,0.001250,0.249997,0,0);-webkit-transform:matrix(0.266132,-0.001331,0.001250,0.249997,0,0);}
.m90_c00456{transform:matrix(0.266477,-0.001332,0.001250,0.249997,0,0);-ms-transform:matrix(0.266477,-0.001332,0.001250,0.249997,0,0);-webkit-transform:matrix(0.266477,-0.001332,0.001250,0.249997,0,0);}
.mbc_c00456{transform:matrix(0.266647,-0.001333,0.001250,0.249997,0,0);-ms-transform:matrix(0.266647,-0.001333,0.001250,0.249997,0,0);-webkit-transform:matrix(0.266647,-0.001333,0.001250,0.249997,0,0);}
.m4f_c00456{transform:matrix(0.266857,-0.001334,0.001250,0.249997,0,0);-ms-transform:matrix(0.266857,-0.001334,0.001250,0.249997,0,0);-webkit-transform:matrix(0.266857,-0.001334,0.001250,0.249997,0,0);}
.m2f_c00456{transform:matrix(0.267122,-0.001336,0.001250,0.249997,0,0);-ms-transform:matrix(0.267122,-0.001336,0.001250,0.249997,0,0);-webkit-transform:matrix(0.267122,-0.001336,0.001250,0.249997,0,0);}
.m103_c00456{transform:matrix(0.268462,-0.001342,0.001250,0.249997,0,0);-ms-transform:matrix(0.268462,-0.001342,0.001250,0.249997,0,0);-webkit-transform:matrix(0.268462,-0.001342,0.001250,0.249997,0,0);}
.m153_c00456{transform:matrix(0.268625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268625,0.000000,0.000000,0.250000,0,0);}
.m33_c00456{transform:matrix(0.269212,-0.001346,0.001250,0.249997,0,0);-ms-transform:matrix(0.269212,-0.001346,0.001250,0.249997,0,0);-webkit-transform:matrix(0.269212,-0.001346,0.001250,0.249997,0,0);}
.m75_c00456{transform:matrix(0.269267,-0.001346,0.001250,0.249997,0,0);-ms-transform:matrix(0.269267,-0.001346,0.001250,0.249997,0,0);-webkit-transform:matrix(0.269267,-0.001346,0.001250,0.249997,0,0);}
.m32_c00456{transform:matrix(0.269417,-0.001347,0.001250,0.249997,0,0);-ms-transform:matrix(0.269417,-0.001347,0.001250,0.249997,0,0);-webkit-transform:matrix(0.269417,-0.001347,0.001250,0.249997,0,0);}
.mc3_c00456{transform:matrix(0.269617,-0.001348,0.001250,0.249997,0,0);-ms-transform:matrix(0.269617,-0.001348,0.001250,0.249997,0,0);-webkit-transform:matrix(0.269617,-0.001348,0.001250,0.249997,0,0);}
.m54_c00456{transform:matrix(0.270832,-0.001354,0.001250,0.249997,0,0);-ms-transform:matrix(0.270832,-0.001354,0.001250,0.249997,0,0);-webkit-transform:matrix(0.270832,-0.001354,0.001250,0.249997,0,0);}
.mc0_c00456{transform:matrix(0.271037,-0.001355,0.001250,0.249997,0,0);-ms-transform:matrix(0.271037,-0.001355,0.001250,0.249997,0,0);-webkit-transform:matrix(0.271037,-0.001355,0.001250,0.249997,0,0);}
.m74_c00456{transform:matrix(0.271402,-0.001357,0.001250,0.249997,0,0);-ms-transform:matrix(0.271402,-0.001357,0.001250,0.249997,0,0);-webkit-transform:matrix(0.271402,-0.001357,0.001250,0.249997,0,0);}
.m4d_c00456{transform:matrix(0.271682,-0.001358,0.001250,0.249997,0,0);-ms-transform:matrix(0.271682,-0.001358,0.001250,0.249997,0,0);-webkit-transform:matrix(0.271682,-0.001358,0.001250,0.249997,0,0);}
.m95_c00456{transform:matrix(0.272027,-0.001360,0.001250,0.249997,0,0);-ms-transform:matrix(0.272027,-0.001360,0.001250,0.249997,0,0);-webkit-transform:matrix(0.272027,-0.001360,0.001250,0.249997,0,0);}
.m6d_c00456{transform:matrix(0.272447,-0.001362,0.001250,0.249997,0,0);-ms-transform:matrix(0.272447,-0.001362,0.001250,0.249997,0,0);-webkit-transform:matrix(0.272447,-0.001362,0.001250,0.249997,0,0);}
.mfc_c00456{transform:matrix(0.272517,-0.001363,0.001250,0.249997,0,0);-ms-transform:matrix(0.272517,-0.001363,0.001250,0.249997,0,0);-webkit-transform:matrix(0.272517,-0.001363,0.001250,0.249997,0,0);}
.m8c_c00456{transform:matrix(0.272612,-0.001363,0.001250,0.249997,0,0);-ms-transform:matrix(0.272612,-0.001363,0.001250,0.249997,0,0);-webkit-transform:matrix(0.272612,-0.001363,0.001250,0.249997,0,0);}
.m110_c00456{transform:matrix(0.272852,0.001364,-0.001250,0.249997,0,0);-ms-transform:matrix(0.272852,0.001364,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.272852,0.001364,-0.001250,0.249997,0,0);}
.mfe_c00456{transform:matrix(0.272857,-0.001364,0.001250,0.249997,0,0);-ms-transform:matrix(0.272857,-0.001364,0.001250,0.249997,0,0);-webkit-transform:matrix(0.272857,-0.001364,0.001250,0.249997,0,0);}
.m113_c00456{transform:matrix(0.274702,0.001374,-0.001250,0.249997,0,0);-ms-transform:matrix(0.274702,0.001374,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.274702,0.001374,-0.001250,0.249997,0,0);}
.m111_c00456{transform:matrix(0.276042,0.001380,-0.001250,0.249997,0,0);-ms-transform:matrix(0.276042,0.001380,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.276042,0.001380,-0.001250,0.249997,0,0);}
.m8d_c00456{transform:matrix(0.276097,-0.001380,0.001250,0.249997,0,0);-ms-transform:matrix(0.276097,-0.001380,0.001250,0.249997,0,0);-webkit-transform:matrix(0.276097,-0.001380,0.001250,0.249997,0,0);}
.m30_c00456{transform:matrix(0.276107,-0.001381,0.001250,0.249997,0,0);-ms-transform:matrix(0.276107,-0.001381,0.001250,0.249997,0,0);-webkit-transform:matrix(0.276107,-0.001381,0.001250,0.249997,0,0);}
.m2d_c00456{transform:matrix(0.276407,-0.001382,0.001250,0.249997,0,0);-ms-transform:matrix(0.276407,-0.001382,0.001250,0.249997,0,0);-webkit-transform:matrix(0.276407,-0.001382,0.001250,0.249997,0,0);}
.m50_c00456{transform:matrix(0.277012,-0.001385,0.001250,0.249997,0,0);-ms-transform:matrix(0.277012,-0.001385,0.001250,0.249997,0,0);-webkit-transform:matrix(0.277012,-0.001385,0.001250,0.249997,0,0);}
.m114_c00456{transform:matrix(0.277147,0.001386,-0.001250,0.249997,0,0);-ms-transform:matrix(0.277147,0.001386,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.277147,0.001386,-0.001250,0.249997,0,0);}
.m152_c00456{transform:matrix(0.277740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277740,0.000000,0.000000,0.250000,0,0);}
.m91_c00456{transform:matrix(0.279962,-0.001400,0.001250,0.249997,0,0);-ms-transform:matrix(0.279962,-0.001400,0.001250,0.249997,0,0);-webkit-transform:matrix(0.279962,-0.001400,0.001250,0.249997,0,0);}
.mfb_c00456{transform:matrix(0.280201,-0.001401,0.001250,0.249997,0,0);-ms-transform:matrix(0.280201,-0.001401,0.001250,0.249997,0,0);-webkit-transform:matrix(0.280201,-0.001401,0.001250,0.249997,0,0);}
.m14b_c00456{transform:matrix(0.280295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280295,0.000000,0.000000,0.250000,0,0);}
.mc4_c00456{transform:matrix(0.280331,-0.001402,0.001250,0.249997,0,0);-ms-transform:matrix(0.280331,-0.001402,0.001250,0.249997,0,0);-webkit-transform:matrix(0.280331,-0.001402,0.001250,0.249997,0,0);}
.m108_c00456{transform:matrix(0.280546,-0.001403,0.001250,0.249997,0,0);-ms-transform:matrix(0.280546,-0.001403,0.001250,0.249997,0,0);-webkit-transform:matrix(0.280546,-0.001403,0.001250,0.249997,0,0);}
.m106_c00456{transform:matrix(0.281106,-0.001406,0.001250,0.249997,0,0);-ms-transform:matrix(0.281106,-0.001406,0.001250,0.249997,0,0);-webkit-transform:matrix(0.281106,-0.001406,0.001250,0.249997,0,0);}
.m51_c00456{transform:matrix(0.281476,-0.001407,0.001250,0.249997,0,0);-ms-transform:matrix(0.281476,-0.001407,0.001250,0.249997,0,0);-webkit-transform:matrix(0.281476,-0.001407,0.001250,0.249997,0,0);}
.m117_c00456{transform:matrix(0.282076,0.001410,-0.001250,0.249997,0,0);-ms-transform:matrix(0.282076,0.001410,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.282076,0.001410,-0.001250,0.249997,0,0);}
.m14f_c00456{transform:matrix(0.282125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282125,0.000000,0.000000,0.250000,0,0);}
.m151_c00456{transform:matrix(0.284620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284620,0.000000,0.000000,0.250000,0,0);}
.m100_c00456{transform:matrix(0.285021,-0.001425,0.001250,0.249997,0,0);-ms-transform:matrix(0.285021,-0.001425,0.001250,0.249997,0,0);-webkit-transform:matrix(0.285021,-0.001425,0.001250,0.249997,0,0);}
.mc6_c00456{transform:matrix(0.286296,-0.001431,0.001250,0.249997,0,0);-ms-transform:matrix(0.286296,-0.001431,0.001250,0.249997,0,0);-webkit-transform:matrix(0.286296,-0.001431,0.001250,0.249997,0,0);}
.m5_c00456{transform:matrix(0.290040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290040,0.000000,0.000000,0.250000,0,0);}
.m132_c00456{transform:matrix(0.293020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293020,0.000000,0.000000,0.250000,0,0);}
.mf5_c00456{transform:matrix(0.299561,-0.001498,0.001250,0.249997,0,0);-ms-transform:matrix(0.299561,-0.001498,0.001250,0.249997,0,0);-webkit-transform:matrix(0.299561,-0.001498,0.001250,0.249997,0,0);}
.m125_c00456{transform:matrix(0.302121,0.001511,-0.001250,0.249997,0,0);-ms-transform:matrix(0.302121,0.001511,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.302121,0.001511,-0.001250,0.249997,0,0);}
.m133_c00456{transform:matrix(0.305470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305470,0.000000,0.000000,0.250000,0,0);}
.m14c_c00456{transform:matrix(0.311080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311080,0.000000,0.000000,0.250000,0,0);}
.m6_c00456{transform:matrix(0.311570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311570,0.000000,0.000000,0.250000,0,0);}
.m3_c00456{transform:matrix(0.316160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316160,0.000000,0.000000,0.250000,0,0);}
.m2_c00456{transform:matrix(0.324500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324500,0.000000,0.000000,0.250000,0,0);}
.m123_c00456{transform:matrix(0.335681,0.001678,-0.001250,0.249997,0,0);-ms-transform:matrix(0.335681,0.001678,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.335681,0.001678,-0.001250,0.249997,0,0);}
.mc2_c00456{transform:matrix(0.382625,-0.001913,0.001250,0.249997,0,0);-ms-transform:matrix(0.382625,-0.001913,0.001250,0.249997,0,0);-webkit-transform:matrix(0.382625,-0.001913,0.001250,0.249997,0,0);}
.m4_c00456{transform:matrix(0.480305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480305,0.000000,0.000000,0.250000,0,0);}
.m102_c00456{transform:matrix(0.494419,-0.002472,0.001250,0.249997,0,0);-ms-transform:matrix(0.494419,-0.002472,0.001250,0.249997,0,0);-webkit-transform:matrix(0.494419,-0.002472,0.001250,0.249997,0,0);}
.m134_c00456{transform:matrix(0.569210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.569210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.569210,0.000000,0.000000,0.250000,0,0);}
.m1_c00456{transform:matrix(0.697780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697780,0.000000,0.000000,0.250000,0,0);}
.m93_c00456{transform:matrix(0.795365,-0.003977,0.001250,0.249997,0,0);-ms-transform:matrix(0.795365,-0.003977,0.001250,0.249997,0,0);-webkit-transform:matrix(0.795365,-0.003977,0.001250,0.249997,0,0);}
.m135_c00456{transform:matrix(1.398805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.398805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.398805,0.000000,0.000000,0.250000,0,0);}
.v0_c00456{vertical-align:0.000000px;}
.ls0_c00456{letter-spacing:0.000000px;}
.sc__c00456{text-shadow:none;}
.sc0_c00456{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__c00456{-webkit-text-stroke:0px transparent;}
.sc0_c00456{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00456{word-spacing:0.000000px;}
.fc0_c00456{color:transparent;}
.fs0_c00456{font-size:18.000000px;}
.fs8_c00456{font-size:30.000000px;}
.fs1_c00456{font-size:42.000000px;}
.fsb_c00456{font-size:66.000000px;}
.fs4_c00456{font-size:72.000900px;}
.fs3_c00456{font-size:78.000975px;}
.fsa_c00456{font-size:78.003900px;}
.fs7_c00456{font-size:84.001050px;}
.fs9_c00456{font-size:84.004200px;}
.fs6_c00456{font-size:90.001125px;}
.fs2_c00456{font-size:96.001200px;}
.fs5_c00456{font-size:108.001350px;}
.y0_c00456{bottom:0.000000px;}
.y14b_c00456{bottom:80.032500px;}
.y14a_c00456{bottom:113.354805px;}
.y149_c00456{bottom:113.748450px;}
.y148_c00456{bottom:114.209340px;}
.y147_c00456{bottom:114.439710px;}
.y146_c00456{bottom:114.596385px;}
.y145_c00456{bottom:114.904470px;}
.y144_c00456{bottom:115.059885px;}
.y143_c00456{bottom:115.594410px;}
.y142_c00456{bottom:116.369745px;}
.y141_c00456{bottom:149.727540px;}
.y140_c00456{bottom:150.297270px;}
.y13f_c00456{bottom:150.496200px;}
.y13e_c00456{bottom:151.072410px;}
.y13d_c00456{bottom:151.401735px;}
.y13c_c00456{bottom:151.958040px;}
.y13b_c00456{bottom:152.398170px;}
.y13a_c00456{bottom:152.629635px;}
.y139_c00456{bottom:152.840955px;}
.y138_c00456{bottom:153.604935px;}
.y137_c00456{bottom:154.385010px;}
.y136_c00456{bottom:154.711500px;}
.y135_c00456{bottom:181.339500px;}
.y133_c00456{bottom:199.165087px;}
.y134_c00456{bottom:199.165388px;}
.y132_c00456{bottom:199.165688px;}
.y12b_c00456{bottom:199.166115px;}
.y131_c00456{bottom:199.166438px;}
.y12a_c00456{bottom:199.166708px;}
.y12c_c00456{bottom:199.166715px;}
.y12d_c00456{bottom:199.167015px;}
.y130_c00456{bottom:199.167030px;}
.y12e_c00456{bottom:199.167173px;}
.y129_c00456{bottom:199.167450px;}
.y12f_c00456{bottom:199.167480px;}
.y127_c00456{bottom:237.959662px;}
.y126_c00456{bottom:237.959955px;}
.y122_c00456{bottom:237.960082px;}
.y123_c00456{bottom:237.960090px;}
.y128_c00456{bottom:237.960262px;}
.y125_c00456{bottom:237.960397px;}
.y120_c00456{bottom:237.960525px;}
.y124_c00456{bottom:237.960540px;}
.y11e_c00456{bottom:237.960825px;}
.y121_c00456{bottom:237.960833px;}
.y11f_c00456{bottom:237.961275px;}
.y11d_c00456{bottom:272.722868px;}
.y11c_c00456{bottom:273.229140px;}
.y11b_c00456{bottom:273.511290px;}
.y11a_c00456{bottom:273.623295px;}
.y119_c00456{bottom:274.179585px;}
.y118_c00456{bottom:274.623787px;}
.y117_c00456{bottom:274.789823px;}
.y116_c00456{bottom:275.232622px;}
.y115_c00456{bottom:275.670000px;}
.y10f_c00456{bottom:305.637397px;}
.y110_c00456{bottom:306.136927px;}
.y111_c00456{bottom:307.946242px;}
.y112_c00456{bottom:308.605740px;}
.y113_c00456{bottom:309.258277px;}
.y114_c00456{bottom:310.448812px;}
.y105_c00456{bottom:340.468020px;}
.y106_c00456{bottom:341.170245px;}
.y107_c00456{bottom:341.461357px;}
.y108_c00456{bottom:342.352770px;}
.y109_c00456{bottom:343.460340px;}
.y10a_c00456{bottom:344.247082px;}
.y10b_c00456{bottom:344.651242px;}
.y10c_c00456{bottom:345.161182px;}
.y10d_c00456{bottom:345.755835px;}
.y10e_c00456{bottom:346.771462px;}
.y104_c00456{bottom:378.170865px;}
.y102_c00456{bottom:378.171022px;}
.y100_c00456{bottom:378.171330px;}
.yfd_c00456{bottom:378.171345px;}
.y103_c00456{bottom:378.171465px;}
.yfe_c00456{bottom:378.171487px;}
.y101_c00456{bottom:378.171622px;}
.yfc_c00456{bottom:378.171795px;}
.yff_c00456{bottom:378.171930px;}
.yfb_c00456{bottom:378.172402px;}
.yfa_c00456{bottom:378.173002px;}
.yf9_c00456{bottom:378.173310px;}
.yee_c00456{bottom:416.165947px;}
.yed_c00456{bottom:416.166247px;}
.yef_c00456{bottom:416.166397px;}
.yf0_c00456{bottom:416.166547px;}
.yec_c00456{bottom:416.166847px;}
.yf1_c00456{bottom:416.166990px;}
.yf8_c00456{bottom:416.167267px;}
.yf2_c00456{bottom:416.167290px;}
.yf5_c00456{bottom:416.167425px;}
.yf4_c00456{bottom:416.167582px;}
.yf7_c00456{bottom:416.167717px;}
.yf6_c00456{bottom:416.168025px;}
.yf3_c00456{bottom:416.168040px;}
.ye0_c00456{bottom:451.170120px;}
.ye1_c00456{bottom:451.606200px;}
.ye2_c00456{bottom:451.765522px;}
.ye3_c00456{bottom:452.263695px;}
.ye4_c00456{bottom:452.486362px;}
.ye5_c00456{bottom:452.710530px;}
.ye6_c00456{bottom:453.097972px;}
.ye7_c00456{bottom:453.762060px;}
.ye8_c00456{bottom:453.867517px;}
.ye9_c00456{bottom:454.210312px;}
.yea_c00456{bottom:454.380390px;}
.yeb_c00456{bottom:454.657050px;}
.yd3_c00456{bottom:485.460967px;}
.yd4_c00456{bottom:486.058057px;}
.yd5_c00456{bottom:486.255795px;}
.yd6_c00456{bottom:486.659520px;}
.yd7_c00456{bottom:486.855877px;}
.yd8_c00456{bottom:487.252590px;}
.yd9_c00456{bottom:487.591882px;}
.yda_c00456{bottom:487.981612px;}
.ydb_c00456{bottom:488.381055px;}
.ydc_c00456{bottom:488.982240px;}
.ydd_c00456{bottom:489.123802px;}
.yde_c00456{bottom:489.387232px;}
.ydf_c00456{bottom:489.657652px;}
.yc7_c00456{bottom:524.396947px;}
.yd2_c00456{bottom:524.397360px;}
.ycd_c00456{bottom:524.397675px;}
.ycb_c00456{bottom:524.397682px;}
.yc8_c00456{bottom:524.397697px;}
.yd1_c00456{bottom:524.397810px;}
.ycc_c00456{bottom:524.397825px;}
.yca_c00456{bottom:524.397832px;}
.yd0_c00456{bottom:524.398410px;}
.yce_c00456{bottom:524.398425px;}
.yc9_c00456{bottom:524.398440px;}
.ycf_c00456{bottom:524.398717px;}
.ybf_c00456{bottom:559.556467px;}
.ybe_c00456{bottom:559.556767px;}
.ybd_c00456{bottom:559.556917px;}
.ybc_c00456{bottom:559.557075px;}
.yc1_c00456{bottom:559.557202px;}
.yc0_c00456{bottom:559.557210px;}
.yc2_c00456{bottom:559.557502px;}
.yc5_c00456{bottom:559.557937px;}
.yc3_c00456{bottom:559.558102px;}
.yc6_c00456{bottom:559.558237px;}
.yc4_c00456{bottom:559.558395px;}
.ybb_c00456{bottom:594.586507px;}
.yb7_c00456{bottom:594.586522px;}
.yb5_c00456{bottom:594.586672px;}
.yb4_c00456{bottom:594.586822px;}
.yba_c00456{bottom:594.586957px;}
.yb9_c00456{bottom:594.587115px;}
.yb6_c00456{bottom:594.587122px;}
.yb3_c00456{bottom:594.587130px;}
.yb1_c00456{bottom:594.587280px;}
.yb8_c00456{bottom:594.587715px;}
.yb2_c00456{bottom:594.587730px;}
.yb0_c00456{bottom:631.644015px;}
.yaf_c00456{bottom:631.644165px;}
.yae_c00456{bottom:631.644472px;}
.yad_c00456{bottom:631.645072px;}
.ya6_c00456{bottom:631.645095px;}
.yaa_c00456{bottom:631.645230px;}
.ya5_c00456{bottom:631.645252px;}
.ya9_c00456{bottom:631.645380px;}
.ya8_c00456{bottom:631.645537px;}
.yac_c00456{bottom:631.645672px;}
.ya7_c00456{bottom:631.645845px;}
.yab_c00456{bottom:631.645980px;}
.y99_c00456{bottom:663.392828px;}
.y9a_c00456{bottom:663.622268px;}
.y9b_c00456{bottom:664.397850px;}
.y9c_c00456{bottom:664.709085px;}
.y9d_c00456{bottom:665.471993px;}
.y9e_c00456{bottom:666.179370px;}
.y9f_c00456{bottom:666.404513px;}
.ya0_c00456{bottom:666.877012px;}
.ya1_c00456{bottom:667.117448px;}
.ya2_c00456{bottom:667.591365px;}
.ya3_c00456{bottom:668.047110px;}
.ya4_c00456{bottom:668.531107px;}
.y8e_c00456{bottom:699.034088px;}
.y8f_c00456{bottom:699.883327px;}
.y90_c00456{bottom:700.650308px;}
.y91_c00456{bottom:700.965863px;}
.y92_c00456{bottom:701.202128px;}
.y93_c00456{bottom:701.738535px;}
.y94_c00456{bottom:702.441608px;}
.y95_c00456{bottom:702.677093px;}
.y96_c00456{bottom:703.528305px;}
.y97_c00456{bottom:703.763295px;}
.y98_c00456{bottom:704.284755px;}
.y84_c00456{bottom:734.942130px;}
.y85_c00456{bottom:735.703980px;}
.y86_c00456{bottom:736.030830px;}
.y87_c00456{bottom:736.696178px;}
.y88_c00456{bottom:737.478953px;}
.y89_c00456{bottom:737.808653px;}
.y8a_c00456{bottom:738.149955px;}
.y8b_c00456{bottom:739.253880px;}
.y8c_c00456{bottom:740.357993px;}
.y8d_c00456{bottom:740.684835px;}
.y7a_c00456{bottom:770.312130px;}
.y7b_c00456{bottom:771.010305px;}
.y7c_c00456{bottom:771.209235px;}
.y7d_c00456{bottom:771.513158px;}
.y7e_c00456{bottom:772.798830px;}
.y7f_c00456{bottom:773.187480px;}
.y80_c00456{bottom:773.794785px;}
.y81_c00456{bottom:774.297720px;}
.y82_c00456{bottom:774.601485px;}
.y83_c00456{bottom:775.388325px;}
.y6e_c00456{bottom:808.921695px;}
.y6f_c00456{bottom:809.094660px;}
.y70_c00456{bottom:809.586030px;}
.y71_c00456{bottom:809.861430px;}
.y72_c00456{bottom:810.086963px;}
.y73_c00456{bottom:810.361013px;}
.y74_c00456{bottom:810.528412px;}
.y75_c00456{bottom:810.860505px;}
.y76_c00456{bottom:811.138620px;}
.y77_c00456{bottom:811.575945px;}
.y78_c00456{bottom:811.971570px;}
.y79_c00456{bottom:812.195647px;}
.y62_c00456{bottom:842.672782px;}
.y63_c00456{bottom:843.555150px;}
.y64_c00456{bottom:844.004423px;}
.y65_c00456{bottom:844.339838px;}
.y66_c00456{bottom:844.879890px;}
.y67_c00456{bottom:845.660220px;}
.y68_c00456{bottom:846.329325px;}
.y69_c00456{bottom:847.316775px;}
.y6a_c00456{bottom:847.646438px;}
.y6b_c00456{bottom:848.105588px;}
.y6c_c00456{bottom:848.871330px;}
.y6d_c00456{bottom:849.098888px;}
.y57_c00456{bottom:879.122093px;}
.y58_c00456{bottom:880.125225px;}
.y59_c00456{bottom:880.404982px;}
.y5a_c00456{bottom:880.907955px;}
.y5b_c00456{bottom:881.899627px;}
.y5c_c00456{bottom:882.303863px;}
.y5d_c00456{bottom:882.600555px;}
.y5e_c00456{bottom:883.205235px;}
.y5f_c00456{bottom:884.102363px;}
.y60_c00456{bottom:884.507805px;}
.y61_c00456{bottom:885.205725px;}
.y4c_c00456{bottom:915.301643px;}
.y4d_c00456{bottom:915.572415px;}
.y4e_c00456{bottom:916.104158px;}
.y4f_c00456{bottom:916.895242px;}
.y50_c00456{bottom:917.156123px;}
.y51_c00456{bottom:917.505300px;}
.y52_c00456{bottom:918.120968px;}
.y53_c00456{bottom:918.926115px;}
.y54_c00456{bottom:919.905038px;}
.y55_c00456{bottom:920.173072px;}
.y56_c00456{bottom:920.440943px;}
.y40_c00456{bottom:949.591065px;}
.y41_c00456{bottom:949.853633px;}
.y42_c00456{bottom:950.385720px;}
.y43_c00456{bottom:951.704685px;}
.y44_c00456{bottom:952.100415px;}
.y45_c00456{bottom:953.159663px;}
.y46_c00456{bottom:953.442315px;}
.y47_c00456{bottom:954.609592px;}
.y48_c00456{bottom:955.564028px;}
.y49_c00456{bottom:955.949678px;}
.y4a_c00456{bottom:956.752252px;}
.y4b_c00456{bottom:957.443452px;}
.y32_c00456{bottom:984.420285px;}
.y33_c00456{bottom:984.770160px;}
.y34_c00456{bottom:985.135815px;}
.y35_c00456{bottom:985.971255px;}
.y36_c00456{bottom:987.103770px;}
.y37_c00456{bottom:987.681690px;}
.y38_c00456{bottom:988.058790px;}
.y39_c00456{bottom:988.661348px;}
.y3a_c00456{bottom:989.024122px;}
.y3b_c00456{bottom:989.398118px;}
.y3c_c00456{bottom:989.757997px;}
.y3d_c00456{bottom:990.494760px;}
.y3e_c00456{bottom:990.870923px;}
.y3f_c00456{bottom:991.475873px;}
.y28_c00456{bottom:1019.789002px;}
.y29_c00456{bottom:1020.625628px;}
.y2a_c00456{bottom:1020.884303px;}
.y2b_c00456{bottom:1021.241363px;}
.y2c_c00456{bottom:1022.459408px;}
.y2d_c00456{bottom:1022.962088px;}
.y2e_c00456{bottom:1024.147193px;}
.y2f_c00456{bottom:1025.398012px;}
.y30_c00456{bottom:1026.003375px;}
.y31_c00456{bottom:1026.990023px;}
.y1e_c00456{bottom:1055.427675px;}
.y1f_c00456{bottom:1056.487005px;}
.y20_c00456{bottom:1057.165373px;}
.y21_c00456{bottom:1058.170410px;}
.y22_c00456{bottom:1058.614875px;}
.y23_c00456{bottom:1059.944100px;}
.y24_c00456{bottom:1060.882822px;}
.y25_c00456{bottom:1061.271338px;}
.y26_c00456{bottom:1062.466942px;}
.y27_c00456{bottom:1063.691190px;}
.y10_c00456{bottom:1092.691440px;}
.y11_c00456{bottom:1093.465545px;}
.y12_c00456{bottom:1093.792493px;}
.y13_c00456{bottom:1094.564093px;}
.y14_c00456{bottom:1094.893838px;}
.y15_c00456{bottom:1095.233438px;}
.y16_c00456{bottom:1096.004985px;}
.y17_c00456{bottom:1096.328985px;}
.y18_c00456{bottom:1097.100428px;}
.y19_c00456{bottom:1097.330700px;}
.y1a_c00456{bottom:1097.670315px;}
.y1b_c00456{bottom:1097.994428px;}
.y1c_c00456{bottom:1099.003148px;}
.y1d_c00456{bottom:1099.222342px;}
.y4_c00456{bottom:1132.110000px;}
.y5_c00456{bottom:1132.285515px;}
.y6_c00456{bottom:1132.559587px;}
.y7_c00456{bottom:1132.722960px;}
.y8_c00456{bottom:1132.891687px;}
.y9_c00456{bottom:1133.052285px;}
.ya_c00456{bottom:1133.391202px;}
.yb_c00456{bottom:1133.555903px;}
.yc_c00456{bottom:1133.889263px;}
.yd_c00456{bottom:1133.998703px;}
.ye_c00456{bottom:1134.441615px;}
.yf_c00456{bottom:1134.953138px;}
.y3_c00456{bottom:1212.840000px;}
.y2_c00456{bottom:1232.416500px;}
.y1_c00456{bottom:1240.246500px;}
.h2_c00456{height:18.000000px;}
.ha_c00456{height:30.000000px;}
.h3_c00456{height:42.000000px;}
.hd_c00456{height:66.000000px;}
.h6_c00456{height:72.000900px;}
.h5_c00456{height:78.000975px;}
.hc_c00456{height:78.003900px;}
.h9_c00456{height:84.001050px;}
.hb_c00456{height:84.004200px;}
.h8_c00456{height:90.001125px;}
.h4_c00456{height:96.001200px;}
.h7_c00456{height:108.001350px;}
.h0_c00456{height:1251.450000px;}
.h1_c00456{height:1251.750000px;}
.w1_c00456{width:924.750000px;}
.w0_c00456{width:925.020000px;}
.x0_c00456{left:0.000000px;}
.x4_c00456{left:93.690000px;}
.x1_c00456{left:106.650000px;}
.x2_c00456{left:112.050000px;}
.x3_c00456{left:133.650000px;}
.x14_c00456{left:150.071385px;}
.x2d_c00456{left:151.881773px;}
.x63_c00456{left:153.498173px;}
.x8e_c00456{left:154.714403px;}
.xa1_c00456{left:157.215090px;}
.xc2_c00456{left:159.198285px;}
.xe8_c00456{left:160.280175px;}
.x39_c00456{left:173.224635px;}
.x2e_c00456{left:183.755820px;}
.x3f_c00456{left:185.052833px;}
.x71_c00456{left:186.683093px;}
.x8f_c00456{left:188.465243px;}
.xc3_c00456{left:192.502620px;}
.x80_c00456{left:198.721058px;}
.xce_c00456{left:202.767323px;}
.xa8_c00456{left:211.416960px;}
.xea_c00456{left:215.460000px;}
.x2f_c00456{left:216.985823px;}
.x7a_c00456{left:219.509295px;}
.xb1_c00456{left:222.758205px;}
.x15_c00456{left:227.490450px;}
.x5f_c00456{left:229.954748px;}
.x81_c00456{left:232.201898px;}
.xb9_c00456{left:234.792015px;}
.x20_c00456{left:237.767595px;}
.x4e_c00456{left:240.161288px;}
.xa2_c00456{left:244.431090px;}
.xb2_c00456{left:245.438775px;}
.x26_c00456{left:250.205415px;}
.x40_c00456{left:251.500335px;}
.x97_c00456{left:254.430585px;}
.xcf_c00456{left:256.768673px;}
.x8_c00456{left:258.189000px;}
.x16_c00456{left:260.179133px;}
.x64_c00456{left:262.335450px;}
.x47_c00456{left:263.394023px;}
.x88_c00456{left:264.605355px;}
.xde_c00456{left:265.680000px;}
.xba_c00456{left:267.213870px;}
.xc8_c00456{left:268.312500px;}
.xdf_c00456{left:270.394500px;}
.x6a_c00456{left:274.715993px;}
.xa3_c00456{left:276.295590px;}
.x27_c00456{left:282.616440px;}
.x4f_c00456{left:285.014663px;}
.x90_c00456{left:287.016203px;}
.xa9_c00456{left:289.448910px;}
.x9_c00456{left:293.292000px;}
.x48_c00456{left:294.444900px;}
.x72_c00456{left:297.398483px;}
.xc4_c00456{left:313.159590px;}
.x50_c00456{left:318.496823px;}
.xb3_c00456{left:322.119195px;}
.x3a_c00456{left:327.429735px;}
.x65_c00456{left:328.803285px;}
.x17_c00456{left:337.397205px;}
.x59_c00456{left:339.188228px;}
.x73_c00456{left:341.945040px;}
.xaa_c00456{left:343.180253px;}
.xd0_c00456{left:344.520863px;}
.xe0_c00456{left:346.792500px;}
.xa_c00456{left:348.106500px;}
.x41_c00456{left:350.315850px;}
.x98_c00456{left:354.622583px;}
.xc9_c00456{left:355.788000px;}
.xc5_c00456{left:357.156893px;}
.xeb_c00456{left:359.100000px;}
.x3b_c00456{left:360.374580px;}
.x89_c00456{left:363.696330px;}
.xbb_c00456{left:366.294390px;}
.xd7_c00456{left:368.009483px;}
.x18_c00456{left:370.345380px;}
.x51_c00456{left:372.505973px;}
.xa4_c00456{left:375.930090px;}
.x21_c00456{left:377.943683px;}
.xb_c00456{left:380.781000px;}
.x42_c00456{left:382.991363px;}
.x5a_c00456{left:384.294728px;}
.x99_c00456{left:387.293918px;}
.xe1_c00456{left:391.071000px;}
.xec_c00456{left:392.310000px;}
.x28_c00456{left:393.322118px;}
.x30_c00456{left:395.771453px;}
.x7b_c00456{left:397.170735px;}
.xc6_c00456{left:400.662218px;}
.x19_c00456{left:404.364533px;}
.x66_c00456{left:407.056328px;}
.x91_c00456{left:409.597770px;}
.x5_c00456{left:413.100000px;}
.xc_c00456{left:414.526500px;}
.xa5_c00456{left:420.463590px;}
.xd1_c00456{left:423.361335px;}
.x43_c00456{left:426.726210px;}
.x60_c00456{left:428.655773px;}
.x7c_c00456{left:429.841553px;}
.xe2_c00456{left:435.084000px;}
.xed_c00456{left:437.130000px;}
.x29_c00456{left:438.956745px;}
.x67_c00456{left:439.995503px;}
.x8a_c00456{left:441.996788px;}
.x6_c00456{left:443.610000px;}
.xd_c00456{left:446.646000px;}
.x31_c00456{left:448.353878px;}
.x52_c00456{left:450.570023px;}
.x92_c00456{left:453.068858px;}
.xd8_c00456{left:456.031688px;}
.xee_c00456{left:458.730000px;}
.x49_c00456{left:460.470578px;}
.x6b_c00456{left:463.174110px;}
.x82_c00456{left:464.406203px;}
.xab_c00456{left:466.031820px;}
.x7_c00456{left:468.450000px;}
.x3c_c00456{left:472.150665px;}
.x68_c00456{left:474.055148px;}
.xca_c00456{left:477.555000px;}
.xc7_c00456{left:480.065250px;}
.x1a_c00456{left:481.572105px;}
.x32_c00456{left:482.672850px;}
.x8b_c00456{left:487.357920px;}
.xbc_c00456{left:489.405930px;}
.xe3_c00456{left:490.714500px;}
.x7d_c00456{left:495.993203px;}
.x44_c00456{left:503.658555px;}
.x4a_c00456{left:505.316678px;}
.x9a_c00456{left:509.894303px;}
.xe_c00456{left:514.429500px;}
.x53_c00456{left:517.489350px;}
.x83_c00456{left:518.947568px;}
.xac_c00456{left:521.383200px;}
.xe4_c00456{left:523.647000px;}
.x22_c00456{left:525.676508px;}
.x8c_c00456{left:529.478970px;}
.xe9_c00456{left:534.770910px;}
.x33_c00456{left:537.482708px;}
.x5b_c00456{left:539.003228px;}
.x93_c00456{left:541.899578px;}
.xf_c00456{left:547.369500px;}
.x74_c00456{left:551.999940px;}
.xb4_c00456{left:554.051993px;}
.xef_c00456{left:557.820000px;}
.xcb_c00456{left:566.395500px;}
.x3d_c00456{left:569.402760px;}
.x34_c00456{left:570.436718px;}
.x9b_c00456{left:574.939980px;}
.xbd_c00456{left:576.852683px;}
.xd2_c00456{left:578.613713px;}
.xe5_c00456{left:581.268000px;}
.x69_c00456{left:584.437388px;}
.x84_c00456{left:585.909240px;}
.x1b_c00456{left:591.157868px;}
.x5c_c00456{left:594.626228px;}
.xb5_c00456{left:598.333103px;}
.xe6_c00456{left:601.161000px;}
.x23_c00456{left:603.918270px;}
.x4b_c00456{left:605.489175px;}
.x7e_c00456{left:607.234485px;}
.xad_c00456{left:608.593883px;}
.xd3_c00456{left:611.824545px;}
.x10_c00456{left:614.041500px;}
.xf0_c00456{left:615.060000px;}
.x54_c00456{left:616.276883px;}
.xbe_c00456{left:621.683783px;}
.x61_c00456{left:628.982768px;}
.x11_c00456{left:635.929500px;}
.x35_c00456{left:637.109715px;}
.x6c_c00456{left:640.268340px;}
.x9c_c00456{left:641.628150px;}
.xd9_c00456{left:645.843435px;}
.x1c_c00456{left:648.133942px;}
.x55_c00456{left:649.208558px;}
.x75_c00456{left:651.627443px;}
.xe7_c00456{left:658.134000px;}
.x2a_c00456{left:660.335100px;}
.x6d_c00456{left:673.865003px;}
.xa6_c00456{left:675.603090px;}
.xbf_c00456{left:678.370650px;}
.x1d_c00456{left:680.555633px;}
.x5d_c00456{left:682.091228px;}
.x85_c00456{left:684.730208px;}
.x76_c00456{left:685.914098px;}
.xda_c00456{left:690.934560px;}
.x56_c00456{left:695.137410px;}
.x94_c00456{left:696.881948px;}
.xcc_c00456{left:700.054500px;}
.x36_c00456{left:704.060205px;}
.x4c_c00456{left:705.112680px;}
.xb6_c00456{left:709.574385px;}
.x2b_c00456{left:715.405950px;}
.x62_c00456{left:716.449020px;}
.x86_c00456{left:718.211048px;}
.xae_c00456{left:721.185195px;}
.x12_c00456{left:724.512000px;}
.x45_c00456{left:726.669210px;}
.x24_c00456{left:735.937650px;}
.x37_c00456{left:738.191678px;}
.x9d_c00456{left:741.764648px;}
.xc0_c00456{left:744.499830px;}
.xd4_c00456{left:745.744890px;}
.x3e_c00456{left:748.028513px;}
.x4d_c00456{left:750.200280px;}
.x77_c00456{left:753.696923px;}
.xcd_c00456{left:756.484500px;}
.x46_c00456{left:760.175708px;}
.x5e_c00456{left:761.216228px;}
.x9e_c00456{left:765.277028px;}
.x57_c00456{left:771.783998px;}
.x8d_c00456{left:774.912105px;}
.xdb_c00456{left:778.955258px;}
.x1e_c00456{left:781.497113px;}
.x87_c00456{left:785.981243px;}
.x38_c00456{left:793.180028px;}
.x58_c00456{left:794.494928px;}
.x6e_c00456{left:795.506288px;}
.xa7_c00456{left:799.269090px;}
.x1f_c00456{left:803.435565px;}
.x2c_c00456{left:805.032758px;}
.x9f_c00456{left:809.262810px;}
.xb7_c00456{left:811.365428px;}
.xd5_c00456{left:812.705063px;}
.x78_c00456{left:818.745270px;}
.x95_c00456{left:820.003530px;}
.x13_c00456{left:826.816500px;}
.x6f_c00456{left:829.003950px;}
.xaf_c00456{left:832.426478px;}
.xdc_c00456{left:835.926675px;}
.x25_c00456{left:837.983580px;}
.x7f_c00456{left:842.408873px;}
.xb8_c00456{left:844.846268px;}
.xd6_c00456{left:846.185903px;}
.x96_c00456{left:853.214363px;}
.xa0_c00456{left:854.346585px;}
.xc1_c00456{left:857.323073px;}
.xdd_c00456{left:868.867500px;}
.x79_c00456{left:887.944080px;}
.xb0_c00456{left:889.937918px;}
.x70_c00456{left:903.595208px;}
@media print{
.v0_c00456{vertical-align:0.000000pt;}
.ls0_c00456{letter-spacing:0.000000pt;}
.ws0_c00456{word-spacing:0.000000pt;}
.fs0_c00456{font-size:16.000000pt;}
.fs8_c00456{font-size:26.666667pt;}
.fs1_c00456{font-size:37.333333pt;}
.fsb_c00456{font-size:58.666667pt;}
.fs4_c00456{font-size:64.000800pt;}
.fs3_c00456{font-size:69.334200pt;}
.fsa_c00456{font-size:69.336800pt;}
.fs7_c00456{font-size:74.667600pt;}
.fs9_c00456{font-size:74.670400pt;}
.fs6_c00456{font-size:80.001000pt;}
.fs2_c00456{font-size:85.334400pt;}
.fs5_c00456{font-size:96.001200pt;}
.y0_c00456{bottom:0.000000pt;}
.y14b_c00456{bottom:71.140000pt;}
.y14a_c00456{bottom:100.759827pt;}
.y149_c00456{bottom:101.109733pt;}
.y148_c00456{bottom:101.519413pt;}
.y147_c00456{bottom:101.724187pt;}
.y146_c00456{bottom:101.863453pt;}
.y145_c00456{bottom:102.137307pt;}
.y144_c00456{bottom:102.275453pt;}
.y143_c00456{bottom:102.750587pt;}
.y142_c00456{bottom:103.439773pt;}
.y141_c00456{bottom:133.091147pt;}
.y140_c00456{bottom:133.597573pt;}
.y13f_c00456{bottom:133.774400pt;}
.y13e_c00456{bottom:134.286587pt;}
.y13d_c00456{bottom:134.579320pt;}
.y13c_c00456{bottom:135.073813pt;}
.y13b_c00456{bottom:135.465040pt;}
.y13a_c00456{bottom:135.670787pt;}
.y139_c00456{bottom:135.858627pt;}
.y138_c00456{bottom:136.537720pt;}
.y137_c00456{bottom:137.231120pt;}
.y136_c00456{bottom:137.521333pt;}
.y135_c00456{bottom:161.190667pt;}
.y133_c00456{bottom:177.035633pt;}
.y134_c00456{bottom:177.035900pt;}
.y132_c00456{bottom:177.036167pt;}
.y12b_c00456{bottom:177.036547pt;}
.y131_c00456{bottom:177.036833pt;}
.y12a_c00456{bottom:177.037073pt;}
.y12c_c00456{bottom:177.037080pt;}
.y12d_c00456{bottom:177.037347pt;}
.y130_c00456{bottom:177.037360pt;}
.y12e_c00456{bottom:177.037487pt;}
.y129_c00456{bottom:177.037733pt;}
.y12f_c00456{bottom:177.037760pt;}
.y127_c00456{bottom:211.519700pt;}
.y126_c00456{bottom:211.519960pt;}
.y122_c00456{bottom:211.520073pt;}
.y123_c00456{bottom:211.520080pt;}
.y128_c00456{bottom:211.520233pt;}
.y125_c00456{bottom:211.520353pt;}
.y120_c00456{bottom:211.520467pt;}
.y124_c00456{bottom:211.520480pt;}
.y11e_c00456{bottom:211.520733pt;}
.y121_c00456{bottom:211.520740pt;}
.y11f_c00456{bottom:211.521133pt;}
.y11d_c00456{bottom:242.420327pt;}
.y11c_c00456{bottom:242.870347pt;}
.y11b_c00456{bottom:243.121147pt;}
.y11a_c00456{bottom:243.220707pt;}
.y119_c00456{bottom:243.715187pt;}
.y118_c00456{bottom:244.110033pt;}
.y117_c00456{bottom:244.257620pt;}
.y116_c00456{bottom:244.651220pt;}
.y115_c00456{bottom:245.040000pt;}
.y10f_c00456{bottom:271.677687pt;}
.y110_c00456{bottom:272.121713pt;}
.y111_c00456{bottom:273.729993pt;}
.y112_c00456{bottom:274.316213pt;}
.y113_c00456{bottom:274.896247pt;}
.y114_c00456{bottom:275.954500pt;}
.y105_c00456{bottom:302.638240pt;}
.y106_c00456{bottom:303.262440pt;}
.y107_c00456{bottom:303.521207pt;}
.y108_c00456{bottom:304.313573pt;}
.y109_c00456{bottom:305.298080pt;}
.y10a_c00456{bottom:305.997407pt;}
.y10b_c00456{bottom:306.356660pt;}
.y10c_c00456{bottom:306.809940pt;}
.y10d_c00456{bottom:307.338520pt;}
.y10e_c00456{bottom:308.241300pt;}
.y104_c00456{bottom:336.151880pt;}
.y102_c00456{bottom:336.152020pt;}
.y100_c00456{bottom:336.152293pt;}
.yfd_c00456{bottom:336.152307pt;}
.y103_c00456{bottom:336.152413pt;}
.yfe_c00456{bottom:336.152433pt;}
.y101_c00456{bottom:336.152553pt;}
.yfc_c00456{bottom:336.152707pt;}
.yff_c00456{bottom:336.152827pt;}
.yfb_c00456{bottom:336.153247pt;}
.yfa_c00456{bottom:336.153780pt;}
.yf9_c00456{bottom:336.154053pt;}
.yee_c00456{bottom:369.925287pt;}
.yed_c00456{bottom:369.925553pt;}
.yef_c00456{bottom:369.925687pt;}
.yf0_c00456{bottom:369.925820pt;}
.yec_c00456{bottom:369.926087pt;}
.yf1_c00456{bottom:369.926213pt;}
.yf8_c00456{bottom:369.926460pt;}
.yf2_c00456{bottom:369.926480pt;}
.yf5_c00456{bottom:369.926600pt;}
.yf4_c00456{bottom:369.926740pt;}
.yf7_c00456{bottom:369.926860pt;}
.yf6_c00456{bottom:369.927133pt;}
.yf3_c00456{bottom:369.927147pt;}
.ye0_c00456{bottom:401.040107pt;}
.ye1_c00456{bottom:401.427733pt;}
.ye2_c00456{bottom:401.569353pt;}
.ye3_c00456{bottom:402.012173pt;}
.ye4_c00456{bottom:402.210100pt;}
.ye5_c00456{bottom:402.409360pt;}
.ye6_c00456{bottom:402.753753pt;}
.ye7_c00456{bottom:403.344053pt;}
.ye8_c00456{bottom:403.437793pt;}
.ye9_c00456{bottom:403.742500pt;}
.yea_c00456{bottom:403.893680pt;}
.yeb_c00456{bottom:404.139600pt;}
.yd3_c00456{bottom:431.520860pt;}
.yd4_c00456{bottom:432.051607pt;}
.yd5_c00456{bottom:432.227373pt;}
.yd6_c00456{bottom:432.586240pt;}
.yd7_c00456{bottom:432.760780pt;}
.yd8_c00456{bottom:433.113413pt;}
.yd9_c00456{bottom:433.415007pt;}
.yda_c00456{bottom:433.761433pt;}
.ydb_c00456{bottom:434.116493pt;}
.ydc_c00456{bottom:434.650880pt;}
.ydd_c00456{bottom:434.776713pt;}
.yde_c00456{bottom:435.010873pt;}
.ydf_c00456{bottom:435.251247pt;}
.yc7_c00456{bottom:466.130620pt;}
.yd2_c00456{bottom:466.130987pt;}
.ycd_c00456{bottom:466.131267pt;}
.ycb_c00456{bottom:466.131273pt;}
.yc8_c00456{bottom:466.131287pt;}
.yd1_c00456{bottom:466.131387pt;}
.ycc_c00456{bottom:466.131400pt;}
.yca_c00456{bottom:466.131407pt;}
.yd0_c00456{bottom:466.131920pt;}
.yce_c00456{bottom:466.131933pt;}
.yc9_c00456{bottom:466.131947pt;}
.ycf_c00456{bottom:466.132193pt;}
.ybf_c00456{bottom:497.383527pt;}
.ybe_c00456{bottom:497.383793pt;}
.ybd_c00456{bottom:497.383927pt;}
.ybc_c00456{bottom:497.384067pt;}
.yc1_c00456{bottom:497.384180pt;}
.yc0_c00456{bottom:497.384187pt;}
.yc2_c00456{bottom:497.384447pt;}
.yc5_c00456{bottom:497.384833pt;}
.yc3_c00456{bottom:497.384980pt;}
.yc6_c00456{bottom:497.385100pt;}
.yc4_c00456{bottom:497.385240pt;}
.ybb_c00456{bottom:528.521340pt;}
.yb7_c00456{bottom:528.521353pt;}
.yb5_c00456{bottom:528.521487pt;}
.yb4_c00456{bottom:528.521620pt;}
.yba_c00456{bottom:528.521740pt;}
.yb9_c00456{bottom:528.521880pt;}
.yb6_c00456{bottom:528.521887pt;}
.yb3_c00456{bottom:528.521893pt;}
.yb1_c00456{bottom:528.522027pt;}
.yb8_c00456{bottom:528.522413pt;}
.yb2_c00456{bottom:528.522427pt;}
.yb0_c00456{bottom:561.461347pt;}
.yaf_c00456{bottom:561.461480pt;}
.yae_c00456{bottom:561.461753pt;}
.yad_c00456{bottom:561.462287pt;}
.ya6_c00456{bottom:561.462307pt;}
.yaa_c00456{bottom:561.462427pt;}
.ya5_c00456{bottom:561.462447pt;}
.ya9_c00456{bottom:561.462560pt;}
.ya8_c00456{bottom:561.462700pt;}
.yac_c00456{bottom:561.462820pt;}
.ya7_c00456{bottom:561.462973pt;}
.yab_c00456{bottom:561.463093pt;}
.y99_c00456{bottom:589.682513pt;}
.y9a_c00456{bottom:589.886460pt;}
.y9b_c00456{bottom:590.575867pt;}
.y9c_c00456{bottom:590.852520pt;}
.y9d_c00456{bottom:591.530660pt;}
.y9e_c00456{bottom:592.159440pt;}
.y9f_c00456{bottom:592.359567pt;}
.ya0_c00456{bottom:592.779567pt;}
.ya1_c00456{bottom:592.993287pt;}
.ya2_c00456{bottom:593.414547pt;}
.ya3_c00456{bottom:593.819653pt;}
.ya4_c00456{bottom:594.249873pt;}
.y8e_c00456{bottom:621.363633pt;}
.y8f_c00456{bottom:622.118513pt;}
.y90_c00456{bottom:622.800273pt;}
.y91_c00456{bottom:623.080767pt;}
.y92_c00456{bottom:623.290780pt;}
.y93_c00456{bottom:623.767587pt;}
.y94_c00456{bottom:624.392540pt;}
.y95_c00456{bottom:624.601860pt;}
.y96_c00456{bottom:625.358493pt;}
.y97_c00456{bottom:625.567373pt;}
.y98_c00456{bottom:626.030893pt;}
.y84_c00456{bottom:653.281893pt;}
.y85_c00456{bottom:653.959093pt;}
.y86_c00456{bottom:654.249627pt;}
.y87_c00456{bottom:654.841047pt;}
.y88_c00456{bottom:655.536847pt;}
.y89_c00456{bottom:655.829913pt;}
.y8a_c00456{bottom:656.133293pt;}
.y8b_c00456{bottom:657.114560pt;}
.y8c_c00456{bottom:658.095993pt;}
.y8d_c00456{bottom:658.386520pt;}
.y7a_c00456{bottom:684.721893pt;}
.y7b_c00456{bottom:685.342493pt;}
.y7c_c00456{bottom:685.519320pt;}
.y7d_c00456{bottom:685.789473pt;}
.y7e_c00456{bottom:686.932293pt;}
.y7f_c00456{bottom:687.277760pt;}
.y80_c00456{bottom:687.817587pt;}
.y81_c00456{bottom:688.264640pt;}
.y82_c00456{bottom:688.534653pt;}
.y83_c00456{bottom:689.234067pt;}
.y6e_c00456{bottom:719.041507pt;}
.y6f_c00456{bottom:719.195253pt;}
.y70_c00456{bottom:719.632027pt;}
.y71_c00456{bottom:719.876827pt;}
.y72_c00456{bottom:720.077300pt;}
.y73_c00456{bottom:720.320900pt;}
.y74_c00456{bottom:720.469700pt;}
.y75_c00456{bottom:720.764893pt;}
.y76_c00456{bottom:721.012107pt;}
.y77_c00456{bottom:721.400840pt;}
.y78_c00456{bottom:721.752507pt;}
.y79_c00456{bottom:721.951687pt;}
.y62_c00456{bottom:749.042473pt;}
.y63_c00456{bottom:749.826800pt;}
.y64_c00456{bottom:750.226153pt;}
.y65_c00456{bottom:750.524300pt;}
.y66_c00456{bottom:751.004347pt;}
.y67_c00456{bottom:751.697973pt;}
.y68_c00456{bottom:752.292733pt;}
.y69_c00456{bottom:753.170467pt;}
.y6a_c00456{bottom:753.463500pt;}
.y6b_c00456{bottom:753.871633pt;}
.y6c_c00456{bottom:754.552293pt;}
.y6d_c00456{bottom:754.754567pt;}
.y57_c00456{bottom:781.441860pt;}
.y58_c00456{bottom:782.333533pt;}
.y59_c00456{bottom:782.582207pt;}
.y5a_c00456{bottom:783.029293pt;}
.y5b_c00456{bottom:783.910780pt;}
.y5c_c00456{bottom:784.270100pt;}
.y5d_c00456{bottom:784.533827pt;}
.y5e_c00456{bottom:785.071320pt;}
.y5f_c00456{bottom:785.868767pt;}
.y60_c00456{bottom:786.229160pt;}
.y61_c00456{bottom:786.849533pt;}
.y4c_c00456{bottom:813.601460pt;}
.y4d_c00456{bottom:813.842147pt;}
.y4e_c00456{bottom:814.314807pt;}
.y4f_c00456{bottom:815.017993pt;}
.y50_c00456{bottom:815.249887pt;}
.y51_c00456{bottom:815.560267pt;}
.y52_c00456{bottom:816.107527pt;}
.y53_c00456{bottom:816.823213pt;}
.y54_c00456{bottom:817.693367pt;}
.y55_c00456{bottom:817.931620pt;}
.y56_c00456{bottom:818.169727pt;}
.y40_c00456{bottom:844.080947pt;}
.y41_c00456{bottom:844.314340pt;}
.y42_c00456{bottom:844.787307pt;}
.y43_c00456{bottom:845.959720pt;}
.y44_c00456{bottom:846.311480pt;}
.y45_c00456{bottom:847.253033pt;}
.y46_c00456{bottom:847.504280pt;}
.y47_c00456{bottom:848.541860pt;}
.y48_c00456{bottom:849.390247pt;}
.y49_c00456{bottom:849.733047pt;}
.y4a_c00456{bottom:850.446447pt;}
.y4b_c00456{bottom:851.060847pt;}
.y32_c00456{bottom:875.040253pt;}
.y33_c00456{bottom:875.351253pt;}
.y34_c00456{bottom:875.676280pt;}
.y35_c00456{bottom:876.418893pt;}
.y36_c00456{bottom:877.425573pt;}
.y37_c00456{bottom:877.939280pt;}
.y38_c00456{bottom:878.274480pt;}
.y39_c00456{bottom:878.810087pt;}
.y3a_c00456{bottom:879.132553pt;}
.y3b_c00456{bottom:879.464993pt;}
.y3c_c00456{bottom:879.784887pt;}
.y3d_c00456{bottom:880.439787pt;}
.y3e_c00456{bottom:880.774153pt;}
.y3f_c00456{bottom:881.311887pt;}
.y28_c00456{bottom:906.479113pt;}
.y29_c00456{bottom:907.222780pt;}
.y2a_c00456{bottom:907.452713pt;}
.y2b_c00456{bottom:907.770100pt;}
.y2c_c00456{bottom:908.852807pt;}
.y2d_c00456{bottom:909.299633pt;}
.y2e_c00456{bottom:910.353060pt;}
.y2f_c00456{bottom:911.464900pt;}
.y30_c00456{bottom:912.003000pt;}
.y31_c00456{bottom:912.880020pt;}
.y1e_c00456{bottom:938.157933pt;}
.y1f_c00456{bottom:939.099560pt;}
.y20_c00456{bottom:939.702553pt;}
.y21_c00456{bottom:940.595920pt;}
.y22_c00456{bottom:940.991000pt;}
.y23_c00456{bottom:942.172533pt;}
.y24_c00456{bottom:943.006953pt;}
.y25_c00456{bottom:943.352300pt;}
.y26_c00456{bottom:944.415060pt;}
.y27_c00456{bottom:945.503280pt;}
.y10_c00456{bottom:971.281280pt;}
.y11_c00456{bottom:971.969373pt;}
.y12_c00456{bottom:972.259993pt;}
.y13_c00456{bottom:972.945860pt;}
.y14_c00456{bottom:973.238967pt;}
.y15_c00456{bottom:973.540833pt;}
.y16_c00456{bottom:974.226653pt;}
.y17_c00456{bottom:974.514653pt;}
.y18_c00456{bottom:975.200380pt;}
.y19_c00456{bottom:975.405067pt;}
.y1a_c00456{bottom:975.706947pt;}
.y1b_c00456{bottom:975.995047pt;}
.y1c_c00456{bottom:976.891687pt;}
.y1d_c00456{bottom:977.086527pt;}
.y4_c00456{bottom:1006.320000pt;}
.y5_c00456{bottom:1006.476013pt;}
.y6_c00456{bottom:1006.719633pt;}
.y7_c00456{bottom:1006.864853pt;}
.y8_c00456{bottom:1007.014833pt;}
.y9_c00456{bottom:1007.157587pt;}
.ya_c00456{bottom:1007.458847pt;}
.yb_c00456{bottom:1007.605247pt;}
.yc_c00456{bottom:1007.901567pt;}
.yd_c00456{bottom:1007.998847pt;}
.ye_c00456{bottom:1008.392547pt;}
.yf_c00456{bottom:1008.847233pt;}
.y3_c00456{bottom:1078.080000pt;}
.y2_c00456{bottom:1095.481333pt;}
.y1_c00456{bottom:1102.441333pt;}
.h2_c00456{height:16.000000pt;}
.ha_c00456{height:26.666667pt;}
.h3_c00456{height:37.333333pt;}
.hd_c00456{height:58.666667pt;}
.h6_c00456{height:64.000800pt;}
.h5_c00456{height:69.334200pt;}
.hc_c00456{height:69.336800pt;}
.h9_c00456{height:74.667600pt;}
.hb_c00456{height:74.670400pt;}
.h8_c00456{height:80.001000pt;}
.h4_c00456{height:85.334400pt;}
.h7_c00456{height:96.001200pt;}
.h0_c00456{height:1112.400000pt;}
.h1_c00456{height:1112.666667pt;}
.w1_c00456{width:822.000000pt;}
.w0_c00456{width:822.240000pt;}
.x0_c00456{left:0.000000pt;}
.x4_c00456{left:83.280000pt;}
.x1_c00456{left:94.800000pt;}
.x2_c00456{left:99.600000pt;}
.x3_c00456{left:118.800000pt;}
.x14_c00456{left:133.396787pt;}
.x2d_c00456{left:135.006020pt;}
.x63_c00456{left:136.442820pt;}
.x8e_c00456{left:137.523913pt;}
.xa1_c00456{left:139.746747pt;}
.xc2_c00456{left:141.509587pt;}
.xe8_c00456{left:142.471267pt;}
.x39_c00456{left:153.977453pt;}
.x2e_c00456{left:163.338507pt;}
.x3f_c00456{left:164.491407pt;}
.x71_c00456{left:165.940527pt;}
.x8f_c00456{left:167.524660pt;}
.xc3_c00456{left:171.113440pt;}
.x80_c00456{left:176.640940pt;}
.xce_c00456{left:180.237620pt;}
.xa8_c00456{left:187.926187pt;}
.xea_c00456{left:191.520000pt;}
.x2f_c00456{left:192.876287pt;}
.x7a_c00456{left:195.119373pt;}
.xb1_c00456{left:198.007293pt;}
.x15_c00456{left:202.213733pt;}
.x5f_c00456{left:204.404220pt;}
.x81_c00456{left:206.401687pt;}
.xb9_c00456{left:208.704013pt;}
.x20_c00456{left:211.348973pt;}
.x4e_c00456{left:213.476700pt;}
.xa2_c00456{left:217.272080pt;}
.xb2_c00456{left:218.167800pt;}
.x26_c00456{left:222.404813pt;}
.x40_c00456{left:223.555853pt;}
.x97_c00456{left:226.160520pt;}
.xcf_c00456{left:228.238820pt;}
.x8_c00456{left:229.501333pt;}
.x16_c00456{left:231.270340pt;}
.x64_c00456{left:233.187067pt;}
.x47_c00456{left:234.128020pt;}
.x88_c00456{left:235.204760pt;}
.xde_c00456{left:236.160000pt;}
.xba_c00456{left:237.523440pt;}
.xc8_c00456{left:238.500000pt;}
.xdf_c00456{left:240.350667pt;}
.x6a_c00456{left:244.191993pt;}
.xa3_c00456{left:245.596080pt;}
.x27_c00456{left:251.214613pt;}
.x4f_c00456{left:253.346367pt;}
.x90_c00456{left:255.125513pt;}
.xa9_c00456{left:257.287920pt;}
.x9_c00456{left:260.704000pt;}
.x48_c00456{left:261.728800pt;}
.x72_c00456{left:264.354207pt;}
.xc4_c00456{left:278.364080pt;}
.x50_c00456{left:283.108287pt;}
.xb3_c00456{left:286.328173pt;}
.x3a_c00456{left:291.048653pt;}
.x65_c00456{left:292.269587pt;}
.x17_c00456{left:299.908627pt;}
.x59_c00456{left:301.500647pt;}
.x73_c00456{left:303.951147pt;}
.xaa_c00456{left:305.049113pt;}
.xd0_c00456{left:306.240767pt;}
.xe0_c00456{left:308.260000pt;}
.xa_c00456{left:309.428000pt;}
.x41_c00456{left:311.391867pt;}
.x98_c00456{left:315.220073pt;}
.xc9_c00456{left:316.256000pt;}
.xc5_c00456{left:317.472793pt;}
.xeb_c00456{left:319.200000pt;}
.x3b_c00456{left:320.332960pt;}
.x89_c00456{left:323.285627pt;}
.xbb_c00456{left:325.595013pt;}
.xd7_c00456{left:327.119540pt;}
.x18_c00456{left:329.195893pt;}
.x51_c00456{left:331.116420pt;}
.xa4_c00456{left:334.160080pt;}
.x21_c00456{left:335.949940pt;}
.xb_c00456{left:338.472000pt;}
.x42_c00456{left:340.436767pt;}
.x5a_c00456{left:341.595313pt;}
.x99_c00456{left:344.261260pt;}
.xe1_c00456{left:347.618667pt;}
.xec_c00456{left:348.720000pt;}
.x28_c00456{left:349.619660pt;}
.x30_c00456{left:351.796847pt;}
.x7b_c00456{left:353.040653pt;}
.xc6_c00456{left:356.144193pt;}
.x19_c00456{left:359.435140pt;}
.x66_c00456{left:361.827847pt;}
.x91_c00456{left:364.086907pt;}
.x5_c00456{left:367.200000pt;}
.xc_c00456{left:368.468000pt;}
.xa5_c00456{left:373.745413pt;}
.xd1_c00456{left:376.321187pt;}
.x43_c00456{left:379.312187pt;}
.x60_c00456{left:381.027353pt;}
.x7c_c00456{left:382.081380pt;}
.xe2_c00456{left:386.741333pt;}
.xed_c00456{left:388.560000pt;}
.x29_c00456{left:390.183773pt;}
.x67_c00456{left:391.107113pt;}
.x8a_c00456{left:392.886033pt;}
.x6_c00456{left:394.320000pt;}
.xd_c00456{left:397.018667pt;}
.x31_c00456{left:398.536780pt;}
.x52_c00456{left:400.506687pt;}
.x92_c00456{left:402.727873pt;}
.xd8_c00456{left:405.361500pt;}
.xee_c00456{left:407.760000pt;}
.x49_c00456{left:409.307180pt;}
.x6b_c00456{left:411.710320pt;}
.x82_c00456{left:412.805513pt;}
.xab_c00456{left:414.250507pt;}
.x7_c00456{left:416.400000pt;}
.x3c_c00456{left:419.689480pt;}
.x68_c00456{left:421.382353pt;}
.xca_c00456{left:424.493333pt;}
.xc7_c00456{left:426.724667pt;}
.x1a_c00456{left:428.064093pt;}
.x32_c00456{left:429.042533pt;}
.x8b_c00456{left:433.207040pt;}
.xbc_c00456{left:435.027493pt;}
.xe3_c00456{left:436.190667pt;}
.x7d_c00456{left:440.882847pt;}
.x44_c00456{left:447.696493pt;}
.x4a_c00456{left:449.170380pt;}
.x9a_c00456{left:453.239380pt;}
.xe_c00456{left:457.270667pt;}
.x53_c00456{left:459.990533pt;}
.x83_c00456{left:461.286727pt;}
.xac_c00456{left:463.451733pt;}
.xe4_c00456{left:465.464000pt;}
.x22_c00456{left:467.268007pt;}
.x8c_c00456{left:470.647973pt;}
.xe9_c00456{left:475.351920pt;}
.x33_c00456{left:477.762407pt;}
.x5b_c00456{left:479.113980pt;}
.x93_c00456{left:481.688513pt;}
.xf_c00456{left:486.550667pt;}
.x74_c00456{left:490.666613pt;}
.xb4_c00456{left:492.490660pt;}
.xef_c00456{left:495.840000pt;}
.xcb_c00456{left:503.462667pt;}
.x3d_c00456{left:506.135787pt;}
.x34_c00456{left:507.054860pt;}
.x9b_c00456{left:511.057760pt;}
.xbd_c00456{left:512.757940pt;}
.xd2_c00456{left:514.323300pt;}
.xe5_c00456{left:516.682667pt;}
.x69_c00456{left:519.499900pt;}
.x84_c00456{left:520.808213pt;}
.x1b_c00456{left:525.473660pt;}
.x5c_c00456{left:528.556647pt;}
.xb5_c00456{left:531.851647pt;}
.xe6_c00456{left:534.365333pt;}
.x23_c00456{left:536.816240pt;}
.x4b_c00456{left:538.212600pt;}
.x7e_c00456{left:539.763987pt;}
.xad_c00456{left:540.972340pt;}
.xd3_c00456{left:543.844040pt;}
.x10_c00456{left:545.814667pt;}
.xf0_c00456{left:546.720000pt;}
.x54_c00456{left:547.801673pt;}
.xbe_c00456{left:552.607807pt;}
.x61_c00456{left:559.095793pt;}
.x11_c00456{left:565.270667pt;}
.x35_c00456{left:566.319747pt;}
.x6c_c00456{left:569.127413pt;}
.x9c_c00456{left:570.336133pt;}
.xd9_c00456{left:574.083053pt;}
.x1c_c00456{left:576.119060pt;}
.x55_c00456{left:577.074273pt;}
.x75_c00456{left:579.224393pt;}
.xe7_c00456{left:585.008000pt;}
.x2a_c00456{left:586.964533pt;}
.x6d_c00456{left:598.991113pt;}
.xa6_c00456{left:600.536080pt;}
.xbf_c00456{left:602.996133pt;}
.x1d_c00456{left:604.938340pt;}
.x5d_c00456{left:606.303313pt;}
.x85_c00456{left:608.649073pt;}
.x76_c00456{left:609.701420pt;}
.xda_c00456{left:614.164053pt;}
.x56_c00456{left:617.899920pt;}
.x94_c00456{left:619.450620pt;}
.xcc_c00456{left:622.270667pt;}
.x36_c00456{left:625.831293pt;}
.x4c_c00456{left:626.766827pt;}
.xb6_c00456{left:630.732787pt;}
.x2b_c00456{left:635.916400pt;}
.x62_c00456{left:636.843573pt;}
.x86_c00456{left:638.409820pt;}
.xae_c00456{left:641.053507pt;}
.x12_c00456{left:644.010667pt;}
.x45_c00456{left:645.928187pt;}
.x24_c00456{left:654.166800pt;}
.x37_c00456{left:656.170380pt;}
.x9d_c00456{left:659.346353pt;}
.xc0_c00456{left:661.777627pt;}
.xd4_c00456{left:662.884347pt;}
.x3e_c00456{left:664.914233pt;}
.x4d_c00456{left:666.844693pt;}
.x77_c00456{left:669.952820pt;}
.xcd_c00456{left:672.430667pt;}
.x46_c00456{left:675.711740pt;}
.x5e_c00456{left:676.636647pt;}
.x9e_c00456{left:680.246247pt;}
.x57_c00456{left:686.030220pt;}
.x8d_c00456{left:688.810760pt;}
.xdb_c00456{left:692.404673pt;}
.x1e_c00456{left:694.664100pt;}
.x87_c00456{left:698.649993pt;}
.x38_c00456{left:705.048913pt;}
.x58_c00456{left:706.217713pt;}
.x6e_c00456{left:707.116700pt;}
.xa7_c00456{left:710.461413pt;}
.x1f_c00456{left:714.164947pt;}
.x2c_c00456{left:715.584673pt;}
.x9f_c00456{left:719.344720pt;}
.xb7_c00456{left:721.213713pt;}
.xd5_c00456{left:722.404500pt;}
.x78_c00456{left:727.773573pt;}
.x95_c00456{left:728.892027pt;}
.x13_c00456{left:734.948000pt;}
.x6f_c00456{left:736.892400pt;}
.xaf_c00456{left:739.934647pt;}
.xdc_c00456{left:743.045933pt;}
.x25_c00456{left:744.874293pt;}
.x7f_c00456{left:748.807887pt;}
.xb8_c00456{left:750.974460pt;}
.xd6_c00456{left:752.165247pt;}
.x96_c00456{left:758.412767pt;}
.xa0_c00456{left:759.419187pt;}
.xc1_c00456{left:762.064953pt;}
.xdd_c00456{left:772.326667pt;}
.x79_c00456{left:789.283627pt;}
.xb0_c00456{left:791.055927pt;}
.x70_c00456{left:803.195740pt;}
}





/* 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_c00457 {
    display:none;
  }
  .loading-indicator_c00457.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00457 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_c00457 { 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_c00457" -> "#page-container .classname_c00457")
 */
.pf_c00457 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00457 { /* 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_c00457.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00457 { /* 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_c00457 { /* 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_c00457 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00457 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00457 {overflow:visible;}
  }
}
.c_c00457 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00457 { /* 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_c00457:after { /* webkit #35443 */
  content: '';
}
.t_c00457:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00457 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 */
}
.__c00457 { /* 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_c00457 { /* info for Javascript */
  display:none;
}
.l_c00457 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00457 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00457 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00457: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_c00457 {
    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_c00457.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00457.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_c00457 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00457{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00457;src:url('chunks/assets/font_bfe6362fd3009c591583128f.woff2')format("woff");}.ff1_c00457{font-family:ff1_c00457;line-height:1.000000;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;}
.m6_c00457{transform:matrix(0.056570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.056570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.056570,0.000000,0.000000,0.250000,0,0);}
.m2_c00457{transform:matrix(0.225045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225045,0.000000,0.000000,0.250000,0,0);}
.m1_c00457{transform:matrix(0.251180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251180,0.000000,0.000000,0.250000,0,0);}
.m0_c00457{transform:matrix(0.460325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460325,0.000000,0.000000,0.250000,0,0);}
.m3_c00457{transform:matrix(0.568860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568860,0.000000,0.000000,0.250000,0,0);}
.m5_c00457{transform:matrix(1.016070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.016070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.016070,0.000000,0.000000,0.250000,0,0);}
.m4_c00457{transform:matrix(1.566270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.566270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.566270,0.000000,0.000000,0.250000,0,0);}
.v0_c00457{vertical-align:0.000000px;}
.ls0_c00457{letter-spacing:0.000000px;}
.sc__c00457{text-shadow:none;}
.sc0_c00457{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__c00457{-webkit-text-stroke:0px transparent;}
.sc0_c00457{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00457{word-spacing:0.000000px;}
.fc0_c00457{color:transparent;}
.fs2_c00457{font-size:18.000000px;}
.fs0_c00457{font-size:48.000000px;}
.fs1_c00457{font-size:60.000000px;}
.y0_c00457{bottom:0.000000px;}
.y6_c00457{bottom:614.520000px;}
.y3_c00457{bottom:643.680000px;}
.y2_c00457{bottom:656.640000px;}
.y1_c00457{bottom:674.322000px;}
.y5_c00457{bottom:1122.660000px;}
.y4_c00457{bottom:1167.480000px;}
.h4_c00457{height:18.000000px;}
.h2_c00457{height:48.000000px;}
.h3_c00457{height:60.000000px;}
.h0_c00457{height:1251.450000px;}
.h1_c00457{height:1251.750000px;}
.w1_c00457{width:924.750000px;}
.w0_c00457{width:925.020000px;}
.x0_c00457{left:0.000000px;}
.x1_c00457{left:1.080000px;}
.x3_c00457{left:5.670000px;}
.x2_c00457{left:8.370000px;}
@media print{
.v0_c00457{vertical-align:0.000000pt;}
.ls0_c00457{letter-spacing:0.000000pt;}
.ws0_c00457{word-spacing:0.000000pt;}
.fs2_c00457{font-size:16.000000pt;}
.fs0_c00457{font-size:42.666667pt;}
.fs1_c00457{font-size:53.333333pt;}
.y0_c00457{bottom:0.000000pt;}
.y6_c00457{bottom:546.240000pt;}
.y3_c00457{bottom:572.160000pt;}
.y2_c00457{bottom:583.680000pt;}
.y1_c00457{bottom:599.397333pt;}
.y5_c00457{bottom:997.920000pt;}
.y4_c00457{bottom:1037.760000pt;}
.h4_c00457{height:16.000000pt;}
.h2_c00457{height:42.666667pt;}
.h3_c00457{height:53.333333pt;}
.h0_c00457{height:1112.400000pt;}
.h1_c00457{height:1112.666667pt;}
.w1_c00457{width:822.000000pt;}
.w0_c00457{width:822.240000pt;}
.x0_c00457{left:0.000000pt;}
.x1_c00457{left:0.960000pt;}
.x3_c00457{left:5.040000pt;}
.x2_c00457{left:7.440000pt;}
}





/* 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_c00458 {
    display:none;
  }
  .loading-indicator_c00458.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00458 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_c00458 { 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_c00458" -> "#page-container .classname_c00458")
 */
.pf_c00458 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00458 { /* 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_c00458.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00458 { /* 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_c00458 { /* 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_c00458 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00458 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00458 {overflow:visible;}
  }
}
.c_c00458 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00458 { /* 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_c00458:after { /* webkit #35443 */
  content: '';
}
.t_c00458:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00458 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 */
}
.__c00458 { /* 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_c00458 { /* info for Javascript */
  display:none;
}
.l_c00458 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00458 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00458 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00458: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_c00458 {
    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_c00458.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00458.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_c00458 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00458{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00458;src:url('chunks/assets/font_53ec0c54e60da7c2d414b553.woff2')format("woff");}.ff1_c00458{font-family:ff1_c00458;line-height:1.000000;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;}
.m9_c00458{transform:matrix(0.127246,0.004331,-0.008504,0.249855,0,0);-ms-transform:matrix(0.127246,0.004331,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.127246,0.004331,-0.008504,0.249855,0,0);}
.mf1_c00458{transform:matrix(0.161189,0.007422,-0.011499,0.249735,0,0);-ms-transform:matrix(0.161189,0.007422,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.161189,0.007422,-0.011499,0.249735,0,0);}
.m21_c00458{transform:matrix(0.163415,0.005562,-0.008504,0.249855,0,0);-ms-transform:matrix(0.163415,0.005562,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.163415,0.005562,-0.008504,0.249855,0,0);}
.me6_c00458{transform:matrix(0.164341,0.006251,-0.009503,0.249819,0,0);-ms-transform:matrix(0.164341,0.006251,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.164341,0.006251,-0.009503,0.249819,0,0);}
.me8_c00458{transform:matrix(0.165310,0.006288,-0.009503,0.249819,0,0);-ms-transform:matrix(0.165310,0.006288,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.165310,0.006288,-0.009503,0.249819,0,0);}
.mf0_c00458{transform:matrix(0.166823,0.007682,-0.011499,0.249735,0,0);-ms-transform:matrix(0.166823,0.007682,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.166823,0.007682,-0.011499,0.249735,0,0);}
.m20_c00458{transform:matrix(0.169957,0.005784,-0.008504,0.249855,0,0);-ms-transform:matrix(0.169957,0.005784,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.169957,0.005784,-0.008504,0.249855,0,0);}
.m1b_c00458{transform:matrix(0.172000,0.005854,-0.008504,0.249855,0,0);-ms-transform:matrix(0.172000,0.005854,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.172000,0.005854,-0.008504,0.249855,0,0);}
.m6a_c00458{transform:matrix(0.173185,0.005894,-0.008504,0.249855,0,0);-ms-transform:matrix(0.173185,0.005894,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.173185,0.005894,-0.008504,0.249855,0,0);}
.me2_c00458{transform:matrix(0.174589,0.006641,-0.009503,0.249819,0,0);-ms-transform:matrix(0.174589,0.006641,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.174589,0.006641,-0.009503,0.249819,0,0);}
.m68_c00458{transform:matrix(0.176833,0.006018,-0.008504,0.249855,0,0);-ms-transform:matrix(0.176833,0.006018,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.176833,0.006018,-0.008504,0.249855,0,0);}
.mdc_c00458{transform:matrix(0.176837,0.006727,-0.009503,0.249819,0,0);-ms-transform:matrix(0.176837,0.006727,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.176837,0.006727,-0.009503,0.249819,0,0);}
.mea_c00458{transform:matrix(0.177227,0.006741,-0.009503,0.249819,0,0);-ms-transform:matrix(0.177227,0.006741,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.177227,0.006741,-0.009503,0.249819,0,0);}
.m0_c00458{transform:matrix(0.177235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177235,0.000000,0.000000,0.250000,0,0);}
.m60_c00458{transform:matrix(0.177442,0.006039,-0.008504,0.249855,0,0);-ms-transform:matrix(0.177442,0.006039,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.177442,0.006039,-0.008504,0.249855,0,0);}
.mf4_c00458{transform:matrix(0.177557,0.008176,-0.011499,0.249735,0,0);-ms-transform:matrix(0.177557,0.008176,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.177557,0.008176,-0.011499,0.249735,0,0);}
.m8e_c00458{transform:matrix(0.179097,0.007530,-0.010501,0.249779,0,0);-ms-transform:matrix(0.179097,0.007530,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.179097,0.007530,-0.010501,0.249779,0,0);}
.m67_c00458{transform:matrix(0.179106,0.006096,-0.008504,0.249855,0,0);-ms-transform:matrix(0.179106,0.006096,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.179106,0.006096,-0.008504,0.249855,0,0);}
.mec_c00458{transform:matrix(0.179515,0.008266,-0.011499,0.249735,0,0);-ms-transform:matrix(0.179515,0.008266,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.179515,0.008266,-0.011499,0.249735,0,0);}
.mef_c00458{transform:matrix(0.179695,0.008274,-0.011499,0.249735,0,0);-ms-transform:matrix(0.179695,0.008274,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.179695,0.008274,-0.011499,0.249735,0,0);}
.m92_c00458{transform:matrix(0.181235,0.007619,-0.010501,0.249779,0,0);-ms-transform:matrix(0.181235,0.007619,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.181235,0.007619,-0.010501,0.249779,0,0);}
.m15_c00458{transform:matrix(0.181290,0.006170,-0.008504,0.249855,0,0);-ms-transform:matrix(0.181290,0.006170,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.181290,0.006170,-0.008504,0.249855,0,0);}
.me3_c00458{transform:matrix(0.181834,0.006917,-0.009503,0.249819,0,0);-ms-transform:matrix(0.181834,0.006917,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.181834,0.006917,-0.009503,0.249819,0,0);}
.mf5_c00458{transform:matrix(0.182027,0.008382,-0.011499,0.249735,0,0);-ms-transform:matrix(0.182027,0.008382,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.182027,0.008382,-0.011499,0.249735,0,0);}
.m66_c00458{transform:matrix(0.182170,0.006200,-0.008504,0.249855,0,0);-ms-transform:matrix(0.182170,0.006200,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.182170,0.006200,-0.008504,0.249855,0,0);}
.mf3_c00458{transform:matrix(0.182507,0.008404,-0.011499,0.249735,0,0);-ms-transform:matrix(0.182507,0.008404,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.182507,0.008404,-0.011499,0.249735,0,0);}
.me5_c00458{transform:matrix(0.182688,0.006949,-0.009503,0.249819,0,0);-ms-transform:matrix(0.182688,0.006949,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.182688,0.006949,-0.009503,0.249819,0,0);}
.mca_c00458{transform:matrix(0.182888,0.007689,-0.010501,0.249779,0,0);-ms-transform:matrix(0.182888,0.007689,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.182888,0.007689,-0.010501,0.249779,0,0);}
.m18_c00458{transform:matrix(0.182944,0.006226,-0.008504,0.249855,0,0);-ms-transform:matrix(0.182944,0.006226,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.182944,0.006226,-0.008504,0.249855,0,0);}
.m25_c00458{transform:matrix(0.183119,0.006232,-0.008504,0.249855,0,0);-ms-transform:matrix(0.183119,0.006232,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.183119,0.006232,-0.008504,0.249855,0,0);}
.med_c00458{transform:matrix(0.183251,0.008438,-0.011499,0.249735,0,0);-ms-transform:matrix(0.183251,0.008438,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.183251,0.008438,-0.011499,0.249735,0,0);}
.mde_c00458{transform:matrix(0.183542,0.006982,-0.009503,0.249819,0,0);-ms-transform:matrix(0.183542,0.006982,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.183542,0.006982,-0.009503,0.249819,0,0);}
.m1e_c00458{transform:matrix(0.183988,0.006262,-0.008504,0.249855,0,0);-ms-transform:matrix(0.183988,0.006262,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.183988,0.006262,-0.008504,0.249855,0,0);}
.m23_c00458{transform:matrix(0.185188,0.006303,-0.008504,0.249855,0,0);-ms-transform:matrix(0.185188,0.006303,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.185188,0.006303,-0.008504,0.249855,0,0);}
.me9_c00458{transform:matrix(0.185486,0.007056,-0.009503,0.249819,0,0);-ms-transform:matrix(0.185486,0.007056,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.185486,0.007056,-0.009503,0.249819,0,0);}
.m24_c00458{transform:matrix(0.186372,0.006343,-0.008504,0.249855,0,0);-ms-transform:matrix(0.186372,0.006343,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.186372,0.006343,-0.008504,0.249855,0,0);}
.me4_c00458{transform:matrix(0.187514,0.007133,-0.009503,0.249819,0,0);-ms-transform:matrix(0.187514,0.007133,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.187514,0.007133,-0.009503,0.249819,0,0);}
.m6d_c00458{transform:matrix(0.187656,0.006387,-0.008504,0.249855,0,0);-ms-transform:matrix(0.187656,0.006387,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.187656,0.006387,-0.008504,0.249855,0,0);}
.mee_c00458{transform:matrix(0.187836,0.008649,-0.011499,0.249735,0,0);-ms-transform:matrix(0.187836,0.008649,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.187836,0.008649,-0.011499,0.249735,0,0);}
.m1d_c00458{transform:matrix(0.187906,0.006395,-0.008504,0.249855,0,0);-ms-transform:matrix(0.187906,0.006395,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.187906,0.006395,-0.008504,0.249855,0,0);}
.mf2_c00458{transform:matrix(0.188226,0.008667,-0.011499,0.249735,0,0);-ms-transform:matrix(0.188226,0.008667,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.188226,0.008667,-0.011499,0.249735,0,0);}
.me7_c00458{transform:matrix(0.188714,0.007178,-0.009503,0.249819,0,0);-ms-transform:matrix(0.188714,0.007178,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.188714,0.007178,-0.009503,0.249819,0,0);}
.m69_c00458{transform:matrix(0.190580,0.006486,-0.008504,0.249855,0,0);-ms-transform:matrix(0.190580,0.006486,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.190580,0.006486,-0.008504,0.249855,0,0);}
.mcd_c00458{transform:matrix(0.190886,0.008025,-0.010501,0.249779,0,0);-ms-transform:matrix(0.190886,0.008025,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.190886,0.008025,-0.010501,0.249779,0,0);}
.mdb_c00458{transform:matrix(0.191162,0.007271,-0.009503,0.249819,0,0);-ms-transform:matrix(0.191162,0.007271,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.191162,0.007271,-0.009503,0.249819,0,0);}
.m26_c00458{transform:matrix(0.192129,0.006539,-0.008504,0.249855,0,0);-ms-transform:matrix(0.192129,0.006539,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.192129,0.006539,-0.008504,0.249855,0,0);}
.me_c00458{transform:matrix(0.192159,0.006540,-0.008504,0.249855,0,0);-ms-transform:matrix(0.192159,0.006540,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.192159,0.006540,-0.008504,0.249855,0,0);}
.m71_c00458{transform:matrix(0.192713,0.006559,-0.008504,0.249855,0,0);-ms-transform:matrix(0.192713,0.006559,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.192713,0.006559,-0.008504,0.249855,0,0);}
.m28_c00458{transform:matrix(0.192923,0.006566,-0.008504,0.249855,0,0);-ms-transform:matrix(0.192923,0.006566,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.192923,0.006566,-0.008504,0.249855,0,0);}
.m6f_c00458{transform:matrix(0.194173,0.006608,-0.008504,0.249855,0,0);-ms-transform:matrix(0.194173,0.006608,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.194173,0.006608,-0.008504,0.249855,0,0);}
.m64_c00458{transform:matrix(0.194827,0.006631,-0.008504,0.249855,0,0);-ms-transform:matrix(0.194827,0.006631,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.194827,0.006631,-0.008504,0.249855,0,0);}
.mbd_c00458{transform:matrix(0.195058,0.008201,-0.010501,0.249779,0,0);-ms-transform:matrix(0.195058,0.008201,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.195058,0.008201,-0.010501,0.249779,0,0);}
.m86_c00458{transform:matrix(0.195392,0.008215,-0.010501,0.249779,0,0);-ms-transform:matrix(0.195392,0.008215,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.195392,0.008215,-0.010501,0.249779,0,0);}
.m65_c00458{transform:matrix(0.196466,0.006687,-0.008504,0.249855,0,0);-ms-transform:matrix(0.196466,0.006687,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.196466,0.006687,-0.008504,0.249855,0,0);}
.meb_c00458{transform:matrix(0.196633,0.007480,-0.009503,0.249819,0,0);-ms-transform:matrix(0.196633,0.007480,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.196633,0.007480,-0.009503,0.249819,0,0);}
.md4_c00458{transform:matrix(0.197187,0.007501,-0.009503,0.249819,0,0);-ms-transform:matrix(0.197187,0.007501,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.197187,0.007501,-0.009503,0.249819,0,0);}
.m3f_c00458{transform:matrix(0.197306,0.006715,-0.008504,0.249855,0,0);-ms-transform:matrix(0.197306,0.006715,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.197306,0.006715,-0.008504,0.249855,0,0);}
.m12_c00458{transform:matrix(0.197975,0.006738,-0.008504,0.249855,0,0);-ms-transform:matrix(0.197975,0.006738,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.197975,0.006738,-0.008504,0.249855,0,0);}
.m5d_c00458{transform:matrix(0.198430,0.006753,-0.008504,0.249855,0,0);-ms-transform:matrix(0.198430,0.006753,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.198430,0.006753,-0.008504,0.249855,0,0);}
.m6e_c00458{transform:matrix(0.198705,0.006763,-0.008504,0.249855,0,0);-ms-transform:matrix(0.198705,0.006763,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.198705,0.006763,-0.008504,0.249855,0,0);}
.m70_c00458{transform:matrix(0.198960,0.006771,-0.008504,0.249855,0,0);-ms-transform:matrix(0.198960,0.006771,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.198960,0.006771,-0.008504,0.249855,0,0);}
.m96_c00458{transform:matrix(0.199194,0.008375,-0.010501,0.249779,0,0);-ms-transform:matrix(0.199194,0.008375,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.199194,0.008375,-0.010501,0.249779,0,0);}
.m6c_c00458{transform:matrix(0.199574,0.006792,-0.008504,0.249855,0,0);-ms-transform:matrix(0.199574,0.006792,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.199574,0.006792,-0.008504,0.249855,0,0);}
.me0_c00458{transform:matrix(0.199741,0.007598,-0.009503,0.249819,0,0);-ms-transform:matrix(0.199741,0.007598,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.199741,0.007598,-0.009503,0.249819,0,0);}
.m93_c00458{transform:matrix(0.199818,0.008401,-0.010501,0.249779,0,0);-ms-transform:matrix(0.199818,0.008401,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.199818,0.008401,-0.010501,0.249779,0,0);}
.m1f_c00458{transform:matrix(0.200979,0.006840,-0.008504,0.249855,0,0);-ms-transform:matrix(0.200979,0.006840,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.200979,0.006840,-0.008504,0.249855,0,0);}
.mdd_c00458{transform:matrix(0.201214,0.007654,-0.009503,0.249819,0,0);-ms-transform:matrix(0.201214,0.007654,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.201214,0.007654,-0.009503,0.249819,0,0);}
.md2_c00458{transform:matrix(0.201229,0.007654,-0.009503,0.249819,0,0);-ms-transform:matrix(0.201229,0.007654,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.201229,0.007654,-0.009503,0.249819,0,0);}
.m72_c00458{transform:matrix(0.201347,0.008465,-0.010501,0.249779,0,0);-ms-transform:matrix(0.201347,0.008465,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.201347,0.008465,-0.010501,0.249779,0,0);}
.m14_c00458{transform:matrix(0.201388,0.006854,-0.008504,0.249855,0,0);-ms-transform:matrix(0.201388,0.006854,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.201388,0.006854,-0.008504,0.249855,0,0);}
.m6b_c00458{transform:matrix(0.201658,0.006863,-0.008504,0.249855,0,0);-ms-transform:matrix(0.201658,0.006863,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.201658,0.006863,-0.008504,0.249855,0,0);}
.md3_c00458{transform:matrix(0.203143,0.007727,-0.009503,0.249819,0,0);-ms-transform:matrix(0.203143,0.007727,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.203143,0.007727,-0.009503,0.249819,0,0);}
.m10_c00458{transform:matrix(0.203157,0.006914,-0.008504,0.249855,0,0);-ms-transform:matrix(0.203157,0.006914,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.203157,0.006914,-0.008504,0.249855,0,0);}
.mc8_c00458{transform:matrix(0.203430,0.008553,-0.010501,0.249779,0,0);-ms-transform:matrix(0.203430,0.008553,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.203430,0.008553,-0.010501,0.249779,0,0);}
.mcb_c00458{transform:matrix(0.203625,0.008561,-0.010501,0.249779,0,0);-ms-transform:matrix(0.203625,0.008561,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.203625,0.008561,-0.010501,0.249779,0,0);}
.mdf_c00458{transform:matrix(0.205047,0.007800,-0.009503,0.249819,0,0);-ms-transform:matrix(0.205047,0.007800,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.205047,0.007800,-0.009503,0.249819,0,0);}
.ma5_c00458{transform:matrix(0.205913,0.008657,-0.010501,0.249779,0,0);-ms-transform:matrix(0.205913,0.008657,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.205913,0.008657,-0.010501,0.249779,0,0);}
.m31_c00458{transform:matrix(0.205976,0.007010,-0.008504,0.249855,0,0);-ms-transform:matrix(0.205976,0.007010,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.205976,0.007010,-0.008504,0.249855,0,0);}
.m85_c00458{transform:matrix(0.206198,0.008669,-0.010501,0.249779,0,0);-ms-transform:matrix(0.206198,0.008669,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.206198,0.008669,-0.010501,0.249779,0,0);}
.mf_c00458{transform:matrix(0.206336,0.007022,-0.008504,0.249855,0,0);-ms-transform:matrix(0.206336,0.007022,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.206336,0.007022,-0.008504,0.249855,0,0);}
.m82_c00458{transform:matrix(0.206662,0.008689,-0.010501,0.249779,0,0);-ms-transform:matrix(0.206662,0.008689,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.206662,0.008689,-0.010501,0.249779,0,0);}
.m94_c00458{transform:matrix(0.206707,0.008690,-0.010501,0.249779,0,0);-ms-transform:matrix(0.206707,0.008690,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.206707,0.008690,-0.010501,0.249779,0,0);}
.m80_c00458{transform:matrix(0.206977,0.008702,-0.010501,0.249779,0,0);-ms-transform:matrix(0.206977,0.008702,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.206977,0.008702,-0.010501,0.249779,0,0);}
.m8c_c00458{transform:matrix(0.207187,0.008711,-0.010501,0.249779,0,0);-ms-transform:matrix(0.207187,0.008711,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.207187,0.008711,-0.010501,0.249779,0,0);}
.m22_c00458{transform:matrix(0.207560,0.007064,-0.008504,0.249855,0,0);-ms-transform:matrix(0.207560,0.007064,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.207560,0.007064,-0.008504,0.249855,0,0);}
.md9_c00458{transform:matrix(0.208569,0.007934,-0.009503,0.249819,0,0);-ms-transform:matrix(0.208569,0.007934,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.208569,0.007934,-0.009503,0.249819,0,0);}
.m5f_c00458{transform:matrix(0.208589,0.007099,-0.008504,0.249855,0,0);-ms-transform:matrix(0.208589,0.007099,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.208589,0.007099,-0.008504,0.249855,0,0);}
.m2c_c00458{transform:matrix(0.208594,0.007099,-0.008504,0.249855,0,0);-ms-transform:matrix(0.208594,0.007099,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.208594,0.007099,-0.008504,0.249855,0,0);}
.m90_c00458{transform:matrix(0.208910,0.008783,-0.010501,0.249779,0,0);-ms-transform:matrix(0.208910,0.008783,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.208910,0.008783,-0.010501,0.249779,0,0);}
.mb5_c00458{transform:matrix(0.209115,0.008792,-0.010501,0.249779,0,0);-ms-transform:matrix(0.209115,0.008792,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.209115,0.008792,-0.010501,0.249779,0,0);}
.m43_c00458{transform:matrix(0.209179,0.007119,-0.008504,0.249855,0,0);-ms-transform:matrix(0.209179,0.007119,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.209179,0.007119,-0.008504,0.249855,0,0);}
.m8a_c00458{transform:matrix(0.209620,0.008813,-0.010501,0.249779,0,0);-ms-transform:matrix(0.209620,0.008813,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.209620,0.008813,-0.010501,0.249779,0,0);}
.m11_c00458{transform:matrix(0.209918,0.007144,-0.008504,0.249855,0,0);-ms-transform:matrix(0.209918,0.007144,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.209918,0.007144,-0.008504,0.249855,0,0);}
.m7e_c00458{transform:matrix(0.210014,0.008829,-0.010501,0.249779,0,0);-ms-transform:matrix(0.210014,0.008829,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.210014,0.008829,-0.010501,0.249779,0,0);}
.m17_c00458{transform:matrix(0.210108,0.007151,-0.008504,0.249855,0,0);-ms-transform:matrix(0.210108,0.007151,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.210108,0.007151,-0.008504,0.249855,0,0);}
.mb9_c00458{transform:matrix(0.210424,0.008847,-0.010501,0.249779,0,0);-ms-transform:matrix(0.210424,0.008847,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.210424,0.008847,-0.010501,0.249779,0,0);}
.mda_c00458{transform:matrix(0.211922,0.008061,-0.009503,0.249819,0,0);-ms-transform:matrix(0.211922,0.008061,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.211922,0.008061,-0.009503,0.249819,0,0);}
.mc7_c00458{transform:matrix(0.211963,0.008911,-0.010501,0.249779,0,0);-ms-transform:matrix(0.211963,0.008911,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.211963,0.008911,-0.010501,0.249779,0,0);}
.m91_c00458{transform:matrix(0.212322,0.008926,-0.010501,0.249779,0,0);-ms-transform:matrix(0.212322,0.008926,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.212322,0.008926,-0.010501,0.249779,0,0);}
.m3a_c00458{transform:matrix(0.212387,0.007228,-0.008504,0.249855,0,0);-ms-transform:matrix(0.212387,0.007228,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.212387,0.007228,-0.008504,0.249855,0,0);}
.m8d_c00458{transform:matrix(0.212812,0.008947,-0.010501,0.249779,0,0);-ms-transform:matrix(0.212812,0.008947,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.212812,0.008947,-0.010501,0.249779,0,0);}
.m19_c00458{transform:matrix(0.213207,0.007256,-0.008504,0.249855,0,0);-ms-transform:matrix(0.213207,0.007256,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.213207,0.007256,-0.008504,0.249855,0,0);}
.me1_c00458{transform:matrix(0.213426,0.008118,-0.009503,0.249819,0,0);-ms-transform:matrix(0.213426,0.008118,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.213426,0.008118,-0.009503,0.249819,0,0);}
.maa_c00458{transform:matrix(0.213631,0.008981,-0.010501,0.249779,0,0);-ms-transform:matrix(0.213631,0.008981,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.213631,0.008981,-0.010501,0.249779,0,0);}
.m1c_c00458{transform:matrix(0.213721,0.007274,-0.008504,0.249855,0,0);-ms-transform:matrix(0.213721,0.007274,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.213721,0.007274,-0.008504,0.249855,0,0);}
.md6_c00458{transform:matrix(0.213775,0.008132,-0.009503,0.249819,0,0);-ms-transform:matrix(0.213775,0.008132,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.213775,0.008132,-0.009503,0.249819,0,0);}
.m7f_c00458{transform:matrix(0.214111,0.009002,-0.010501,0.249779,0,0);-ms-transform:matrix(0.214111,0.009002,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.214111,0.009002,-0.010501,0.249779,0,0);}
.m87_c00458{transform:matrix(0.215390,0.009055,-0.010501,0.249779,0,0);-ms-transform:matrix(0.215390,0.009055,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.215390,0.009055,-0.010501,0.249779,0,0);}
.m45_c00458{transform:matrix(0.215520,0.007335,-0.008504,0.249855,0,0);-ms-transform:matrix(0.215520,0.007335,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.215520,0.007335,-0.008504,0.249855,0,0);}
.mc_c00458{transform:matrix(0.215590,0.007337,-0.008504,0.249855,0,0);-ms-transform:matrix(0.215590,0.007337,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.215590,0.007337,-0.008504,0.249855,0,0);}
.m95_c00458{transform:matrix(0.215615,0.009065,-0.010501,0.249779,0,0);-ms-transform:matrix(0.215615,0.009065,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.215615,0.009065,-0.010501,0.249779,0,0);}
.m48_c00458{transform:matrix(0.215620,0.007338,-0.008504,0.249855,0,0);-ms-transform:matrix(0.215620,0.007338,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.215620,0.007338,-0.008504,0.249855,0,0);}
.m1a_c00458{transform:matrix(0.215680,0.007340,-0.008504,0.249855,0,0);-ms-transform:matrix(0.215680,0.007340,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.215680,0.007340,-0.008504,0.249855,0,0);}
.md7_c00458{transform:matrix(0.215769,0.008207,-0.009503,0.249819,0,0);-ms-transform:matrix(0.215769,0.008207,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.215769,0.008207,-0.009503,0.249819,0,0);}
.m16_c00458{transform:matrix(0.215895,0.007348,-0.008504,0.249855,0,0);-ms-transform:matrix(0.215895,0.007348,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.215895,0.007348,-0.008504,0.249855,0,0);}
.ma8_c00458{transform:matrix(0.216144,0.009087,-0.010501,0.249779,0,0);-ms-transform:matrix(0.216144,0.009087,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.216144,0.009087,-0.010501,0.249779,0,0);}
.m2f_c00458{transform:matrix(0.216600,0.007372,-0.008504,0.249855,0,0);-ms-transform:matrix(0.216600,0.007372,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.216600,0.007372,-0.008504,0.249855,0,0);}
.mbe_c00458{transform:matrix(0.216843,0.009117,-0.010501,0.249779,0,0);-ms-transform:matrix(0.216843,0.009117,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.216843,0.009117,-0.010501,0.249779,0,0);}
.m5b_c00458{transform:matrix(0.216844,0.007380,-0.008504,0.249855,0,0);-ms-transform:matrix(0.216844,0.007380,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.216844,0.007380,-0.008504,0.249855,0,0);}
.m84_c00458{transform:matrix(0.217388,0.009139,-0.010501,0.249779,0,0);-ms-transform:matrix(0.217388,0.009139,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.217388,0.009139,-0.010501,0.249779,0,0);}
.m5a_c00458{transform:matrix(0.217424,0.007400,-0.008504,0.249855,0,0);-ms-transform:matrix(0.217424,0.007400,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.217424,0.007400,-0.008504,0.249855,0,0);}
.m2a_c00458{transform:matrix(0.218129,0.007424,-0.008504,0.249855,0,0);-ms-transform:matrix(0.218129,0.007424,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.218129,0.007424,-0.008504,0.249855,0,0);}
.mc2_c00458{transform:matrix(0.218267,0.009176,-0.010501,0.249779,0,0);-ms-transform:matrix(0.218267,0.009176,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.218267,0.009176,-0.010501,0.249779,0,0);}
.m30_c00458{transform:matrix(0.218798,0.007447,-0.008504,0.249855,0,0);-ms-transform:matrix(0.218798,0.007447,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.218798,0.007447,-0.008504,0.249855,0,0);}
.m81_c00458{transform:matrix(0.218957,0.009205,-0.010501,0.249779,0,0);-ms-transform:matrix(0.218957,0.009205,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.218957,0.009205,-0.010501,0.249779,0,0);}
.m13_c00458{transform:matrix(0.219658,0.007476,-0.008504,0.249855,0,0);-ms-transform:matrix(0.219658,0.007476,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.219658,0.007476,-0.008504,0.249855,0,0);}
.md8_c00458{transform:matrix(0.219816,0.008361,-0.009503,0.249819,0,0);-ms-transform:matrix(0.219816,0.008361,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.219816,0.008361,-0.009503,0.249819,0,0);}
.m62_c00458{transform:matrix(0.219943,0.007486,-0.008504,0.249855,0,0);-ms-transform:matrix(0.219943,0.007486,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.219943,0.007486,-0.008504,0.249855,0,0);}
.md1_c00458{transform:matrix(0.220036,0.008370,-0.009503,0.249819,0,0);-ms-transform:matrix(0.220036,0.008370,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.220036,0.008370,-0.009503,0.249819,0,0);}
.md5_c00458{transform:matrix(0.220091,0.008372,-0.009503,0.249819,0,0);-ms-transform:matrix(0.220091,0.008372,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.220091,0.008372,-0.009503,0.249819,0,0);}
.m8b_c00458{transform:matrix(0.220280,0.009261,-0.010501,0.249779,0,0);-ms-transform:matrix(0.220280,0.009261,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.220280,0.009261,-0.010501,0.249779,0,0);}
.m8f_c00458{transform:matrix(0.220340,0.009264,-0.010501,0.249779,0,0);-ms-transform:matrix(0.220340,0.009264,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.220340,0.009264,-0.010501,0.249779,0,0);}
.m83_c00458{transform:matrix(0.220565,0.009273,-0.010501,0.249779,0,0);-ms-transform:matrix(0.220565,0.009273,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.220565,0.009273,-0.010501,0.249779,0,0);}
.m47_c00458{transform:matrix(0.222126,0.007560,-0.008504,0.249855,0,0);-ms-transform:matrix(0.222126,0.007560,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.222126,0.007560,-0.008504,0.249855,0,0);}
.mcf_c00458{transform:matrix(0.222354,0.008458,-0.009503,0.249819,0,0);-ms-transform:matrix(0.222354,0.008458,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.222354,0.008458,-0.009503,0.249819,0,0);}
.mce_c00458{transform:matrix(0.222624,0.008468,-0.009503,0.249819,0,0);-ms-transform:matrix(0.222624,0.008468,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.222624,0.008468,-0.009503,0.249819,0,0);}
.ma7_c00458{transform:matrix(0.222833,0.009368,-0.010501,0.249779,0,0);-ms-transform:matrix(0.222833,0.009368,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.222833,0.009368,-0.010501,0.249779,0,0);}
.m2e_c00458{transform:matrix(0.222981,0.007589,-0.008504,0.249855,0,0);-ms-transform:matrix(0.222981,0.007589,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.222981,0.007589,-0.008504,0.249855,0,0);}
.mc9_c00458{transform:matrix(0.223717,0.009406,-0.010501,0.249779,0,0);-ms-transform:matrix(0.223717,0.009406,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.223717,0.009406,-0.010501,0.249779,0,0);}
.m35_c00458{transform:matrix(0.223940,0.007622,-0.008504,0.249855,0,0);-ms-transform:matrix(0.223940,0.007622,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.223940,0.007622,-0.008504,0.249855,0,0);}
.m63_c00458{transform:matrix(0.224410,0.007638,-0.008504,0.249855,0,0);-ms-transform:matrix(0.224410,0.007638,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.224410,0.007638,-0.008504,0.249855,0,0);}
.m97_c00458{transform:matrix(0.224487,0.009438,-0.010501,0.249779,0,0);-ms-transform:matrix(0.224487,0.009438,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.224487,0.009438,-0.010501,0.249779,0,0);}
.md_c00458{transform:matrix(0.224635,0.007645,-0.008504,0.249855,0,0);-ms-transform:matrix(0.224635,0.007645,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.224635,0.007645,-0.008504,0.249855,0,0);}
.m99_c00458{transform:matrix(0.225146,0.009466,-0.010501,0.249779,0,0);-ms-transform:matrix(0.225146,0.009466,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.225146,0.009466,-0.010501,0.249779,0,0);}
.md0_c00458{transform:matrix(0.225697,0.008585,-0.009503,0.249819,0,0);-ms-transform:matrix(0.225697,0.008585,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.225697,0.008585,-0.009503,0.249819,0,0);}
.m7_c00458{transform:matrix(0.226044,0.007693,-0.008504,0.249855,0,0);-ms-transform:matrix(0.226044,0.007693,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.226044,0.007693,-0.008504,0.249855,0,0);}
.m4a_c00458{transform:matrix(0.226224,0.007699,-0.008504,0.249855,0,0);-ms-transform:matrix(0.226224,0.007699,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.226224,0.007699,-0.008504,0.249855,0,0);}
.m58_c00458{transform:matrix(0.226539,0.007710,-0.008504,0.249855,0,0);-ms-transform:matrix(0.226539,0.007710,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.226539,0.007710,-0.008504,0.249855,0,0);}
.m7a_c00458{transform:matrix(0.226545,0.009524,-0.010501,0.249779,0,0);-ms-transform:matrix(0.226545,0.009524,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.226545,0.009524,-0.010501,0.249779,0,0);}
.m3_c00458{transform:matrix(0.226919,0.007723,-0.008504,0.249855,0,0);-ms-transform:matrix(0.226919,0.007723,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.226919,0.007723,-0.008504,0.249855,0,0);}
.mc5_c00458{transform:matrix(0.226994,0.009543,-0.010501,0.249779,0,0);-ms-transform:matrix(0.226994,0.009543,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.226994,0.009543,-0.010501,0.249779,0,0);}
.mad_c00458{transform:matrix(0.227059,0.009546,-0.010501,0.249779,0,0);-ms-transform:matrix(0.227059,0.009546,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.227059,0.009546,-0.010501,0.249779,0,0);}
.mbc_c00458{transform:matrix(0.227349,0.009558,-0.010501,0.249779,0,0);-ms-transform:matrix(0.227349,0.009558,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.227349,0.009558,-0.010501,0.249779,0,0);}
.mb4_c00458{transform:matrix(0.227549,0.009567,-0.010501,0.249779,0,0);-ms-transform:matrix(0.227549,0.009567,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.227549,0.009567,-0.010501,0.249779,0,0);}
.m98_c00458{transform:matrix(0.227889,0.009581,-0.010501,0.249779,0,0);-ms-transform:matrix(0.227889,0.009581,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.227889,0.009581,-0.010501,0.249779,0,0);}
.m9d_c00458{transform:matrix(0.228613,0.009611,-0.010501,0.249779,0,0);-ms-transform:matrix(0.228613,0.009611,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.228613,0.009611,-0.010501,0.249779,0,0);}
.ma4_c00458{transform:matrix(0.228658,0.009613,-0.010501,0.249779,0,0);-ms-transform:matrix(0.228658,0.009613,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.228658,0.009613,-0.010501,0.249779,0,0);}
.mc6_c00458{transform:matrix(0.228733,0.009616,-0.010501,0.249779,0,0);-ms-transform:matrix(0.228733,0.009616,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.228733,0.009616,-0.010501,0.249779,0,0);}
.mcc_c00458{transform:matrix(0.228808,0.009620,-0.010501,0.249779,0,0);-ms-transform:matrix(0.228808,0.009620,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.228808,0.009620,-0.010501,0.249779,0,0);}
.ma_c00458{transform:matrix(0.230312,0.007838,-0.008504,0.249855,0,0);-ms-transform:matrix(0.230312,0.007838,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.230312,0.007838,-0.008504,0.249855,0,0);}
.mc1_c00458{transform:matrix(0.230551,0.009693,-0.010501,0.249779,0,0);-ms-transform:matrix(0.230551,0.009693,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.230551,0.009693,-0.010501,0.249779,0,0);}
.m4c_c00458{transform:matrix(0.230781,0.007854,-0.008504,0.249855,0,0);-ms-transform:matrix(0.230781,0.007854,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.230781,0.007854,-0.008504,0.249855,0,0);}
.mb6_c00458{transform:matrix(0.230856,0.009706,-0.010501,0.249779,0,0);-ms-transform:matrix(0.230856,0.009706,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.230856,0.009706,-0.010501,0.249779,0,0);}
.m34_c00458{transform:matrix(0.231066,0.007864,-0.008504,0.249855,0,0);-ms-transform:matrix(0.231066,0.007864,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.231066,0.007864,-0.008504,0.249855,0,0);}
.m3c_c00458{transform:matrix(0.231491,0.007879,-0.008504,0.249855,0,0);-ms-transform:matrix(0.231491,0.007879,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.231491,0.007879,-0.008504,0.249855,0,0);}
.m5c_c00458{transform:matrix(0.232665,0.007919,-0.008504,0.249855,0,0);-ms-transform:matrix(0.232665,0.007919,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.232665,0.007919,-0.008504,0.249855,0,0);}
.mab_c00458{transform:matrix(0.232859,0.009790,-0.010501,0.249779,0,0);-ms-transform:matrix(0.232859,0.009790,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.232859,0.009790,-0.010501,0.249779,0,0);}
.m5e_c00458{transform:matrix(0.232955,0.007928,-0.008504,0.249855,0,0);-ms-transform:matrix(0.232955,0.007928,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.232955,0.007928,-0.008504,0.249855,0,0);}
.ma9_c00458{transform:matrix(0.233429,0.009814,-0.010501,0.249779,0,0);-ms-transform:matrix(0.233429,0.009814,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.233429,0.009814,-0.010501,0.249779,0,0);}
.m61_c00458{transform:matrix(0.234499,0.007981,-0.008504,0.249855,0,0);-ms-transform:matrix(0.234499,0.007981,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.234499,0.007981,-0.008504,0.249855,0,0);}
.m89_c00458{transform:matrix(0.234922,0.009877,-0.010501,0.249779,0,0);-ms-transform:matrix(0.234922,0.009877,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.234922,0.009877,-0.010501,0.249779,0,0);}
.m27_c00458{transform:matrix(0.234944,0.007996,-0.008504,0.249855,0,0);-ms-transform:matrix(0.234944,0.007996,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.234944,0.007996,-0.008504,0.249855,0,0);}
.mc0_c00458{transform:matrix(0.235252,0.009890,-0.010501,0.249779,0,0);-ms-transform:matrix(0.235252,0.009890,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.235252,0.009890,-0.010501,0.249779,0,0);}
.mb2_c00458{transform:matrix(0.235712,0.009910,-0.010501,0.249779,0,0);-ms-transform:matrix(0.235712,0.009910,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.235712,0.009910,-0.010501,0.249779,0,0);}
.mb7_c00458{transform:matrix(0.235997,0.009922,-0.010501,0.249779,0,0);-ms-transform:matrix(0.235997,0.009922,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.235997,0.009922,-0.010501,0.249779,0,0);}
.m33_c00458{transform:matrix(0.236093,0.008035,-0.008504,0.249855,0,0);-ms-transform:matrix(0.236093,0.008035,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.236093,0.008035,-0.008504,0.249855,0,0);}
.m9f_c00458{transform:matrix(0.236236,0.009932,-0.010501,0.249779,0,0);-ms-transform:matrix(0.236236,0.009932,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.236236,0.009932,-0.010501,0.249779,0,0);}
.m7c_c00458{transform:matrix(0.236356,0.009937,-0.010501,0.249779,0,0);-ms-transform:matrix(0.236356,0.009937,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.236356,0.009937,-0.010501,0.249779,0,0);}
.mbf_c00458{transform:matrix(0.236836,0.009957,-0.010501,0.249779,0,0);-ms-transform:matrix(0.236836,0.009957,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.236836,0.009957,-0.010501,0.249779,0,0);}
.m88_c00458{transform:matrix(0.236951,0.009962,-0.010501,0.249779,0,0);-ms-transform:matrix(0.236951,0.009962,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.236951,0.009962,-0.010501,0.249779,0,0);}
.m73_c00458{transform:matrix(0.236961,0.009962,-0.010501,0.249779,0,0);-ms-transform:matrix(0.236961,0.009962,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.236961,0.009962,-0.010501,0.249779,0,0);}
.m32_c00458{transform:matrix(0.237577,0.008086,-0.008504,0.249855,0,0);-ms-transform:matrix(0.237577,0.008086,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.237577,0.008086,-0.008504,0.249855,0,0);}
.mb8_c00458{transform:matrix(0.238639,0.010033,-0.010501,0.249779,0,0);-ms-transform:matrix(0.238639,0.010033,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.238639,0.010033,-0.010501,0.249779,0,0);}
.m42_c00458{transform:matrix(0.239401,0.008148,-0.008504,0.249855,0,0);-ms-transform:matrix(0.239401,0.008148,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.239401,0.008148,-0.008504,0.249855,0,0);}
.m29_c00458{transform:matrix(0.240266,0.008177,-0.008504,0.249855,0,0);-ms-transform:matrix(0.240266,0.008177,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.240266,0.008177,-0.008504,0.249855,0,0);}
.ma6_c00458{transform:matrix(0.240548,0.010113,-0.010501,0.249779,0,0);-ms-transform:matrix(0.240548,0.010113,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.240548,0.010113,-0.010501,0.249779,0,0);}
.m4b_c00458{transform:matrix(0.241060,0.008204,-0.008504,0.249855,0,0);-ms-transform:matrix(0.241060,0.008204,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.241060,0.008204,-0.008504,0.249855,0,0);}
.m2_c00458{transform:matrix(0.241420,0.008217,-0.008504,0.249855,0,0);-ms-transform:matrix(0.241420,0.008217,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.241420,0.008217,-0.008504,0.249855,0,0);}
.mac_c00458{transform:matrix(0.241497,0.010153,-0.010501,0.249779,0,0);-ms-transform:matrix(0.241497,0.010153,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.241497,0.010153,-0.010501,0.249779,0,0);}
.m38_c00458{transform:matrix(0.241560,0.008221,-0.008504,0.249855,0,0);-ms-transform:matrix(0.241560,0.008221,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.241560,0.008221,-0.008504,0.249855,0,0);}
.m40_c00458{transform:matrix(0.241775,0.008229,-0.008504,0.249855,0,0);-ms-transform:matrix(0.241775,0.008229,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.241775,0.008229,-0.008504,0.249855,0,0);}
.m56_c00458{transform:matrix(0.241880,0.008232,-0.008504,0.249855,0,0);-ms-transform:matrix(0.241880,0.008232,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.241880,0.008232,-0.008504,0.249855,0,0);}
.m9a_c00458{transform:matrix(0.242531,0.010196,-0.010501,0.249779,0,0);-ms-transform:matrix(0.242531,0.010196,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.242531,0.010196,-0.010501,0.249779,0,0);}
.mb1_c00458{transform:matrix(0.242711,0.010204,-0.010501,0.249779,0,0);-ms-transform:matrix(0.242711,0.010204,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.242711,0.010204,-0.010501,0.249779,0,0);}
.mba_c00458{transform:matrix(0.242835,0.010209,-0.010501,0.249779,0,0);-ms-transform:matrix(0.242835,0.010209,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.242835,0.010209,-0.010501,0.249779,0,0);}
.ma0_c00458{transform:matrix(0.243160,0.010223,-0.010501,0.249779,0,0);-ms-transform:matrix(0.243160,0.010223,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.243160,0.010223,-0.010501,0.249779,0,0);}
.mc3_c00458{transform:matrix(0.243665,0.010244,-0.010501,0.249779,0,0);-ms-transform:matrix(0.243665,0.010244,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.243665,0.010244,-0.010501,0.249779,0,0);}
.m3b_c00458{transform:matrix(0.243784,0.008297,-0.008504,0.249855,0,0);-ms-transform:matrix(0.243784,0.008297,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.243784,0.008297,-0.008504,0.249855,0,0);}
.m4d_c00458{transform:matrix(0.244209,0.008311,-0.008504,0.249855,0,0);-ms-transform:matrix(0.244209,0.008311,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.244209,0.008311,-0.008504,0.249855,0,0);}
.m75_c00458{transform:matrix(0.245753,0.010332,-0.010501,0.249779,0,0);-ms-transform:matrix(0.245753,0.010332,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.245753,0.010332,-0.010501,0.249779,0,0);}
.maf_c00458{transform:matrix(0.246133,0.010348,-0.010501,0.249779,0,0);-ms-transform:matrix(0.246133,0.010348,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.246133,0.010348,-0.010501,0.249779,0,0);}
.mb_c00458{transform:matrix(0.246427,0.008387,-0.008504,0.249855,0,0);-ms-transform:matrix(0.246427,0.008387,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.246427,0.008387,-0.008504,0.249855,0,0);}
.m2b_c00458{transform:matrix(0.246937,0.008404,-0.008504,0.249855,0,0);-ms-transform:matrix(0.246937,0.008404,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.246937,0.008404,-0.008504,0.249855,0,0);}
.mc4_c00458{transform:matrix(0.247252,0.010395,-0.010501,0.249779,0,0);-ms-transform:matrix(0.247252,0.010395,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.247252,0.010395,-0.010501,0.249779,0,0);}
.m59_c00458{transform:matrix(0.247921,0.008438,-0.008504,0.249855,0,0);-ms-transform:matrix(0.247921,0.008438,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.247921,0.008438,-0.008504,0.249855,0,0);}
.mae_c00458{transform:matrix(0.248630,0.010453,-0.010501,0.249779,0,0);-ms-transform:matrix(0.248630,0.010453,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.248630,0.010453,-0.010501,0.249779,0,0);}
.m46_c00458{transform:matrix(0.248901,0.008471,-0.008504,0.249855,0,0);-ms-transform:matrix(0.248901,0.008471,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.248901,0.008471,-0.008504,0.249855,0,0);}
.mb3_c00458{transform:matrix(0.249070,0.010471,-0.010501,0.249779,0,0);-ms-transform:matrix(0.249070,0.010471,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.249070,0.010471,-0.010501,0.249779,0,0);}
.m49_c00458{transform:matrix(0.250090,0.008512,-0.008504,0.249855,0,0);-ms-transform:matrix(0.250090,0.008512,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.250090,0.008512,-0.008504,0.249855,0,0);}
.m2d_c00458{transform:matrix(0.250165,0.008514,-0.008504,0.249855,0,0);-ms-transform:matrix(0.250165,0.008514,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.250165,0.008514,-0.008504,0.249855,0,0);}
.mb0_c00458{transform:matrix(0.251338,0.010567,-0.010501,0.249779,0,0);-ms-transform:matrix(0.251338,0.010567,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.251338,0.010567,-0.010501,0.249779,0,0);}
.m6_c00458{transform:matrix(0.251524,0.008560,-0.008504,0.249855,0,0);-ms-transform:matrix(0.251524,0.008560,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.251524,0.008560,-0.008504,0.249855,0,0);}
.m5_c00458{transform:matrix(0.251894,0.008573,-0.008504,0.249855,0,0);-ms-transform:matrix(0.251894,0.008573,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.251894,0.008573,-0.008504,0.249855,0,0);}
.m39_c00458{transform:matrix(0.252174,0.008582,-0.008504,0.249855,0,0);-ms-transform:matrix(0.252174,0.008582,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.252174,0.008582,-0.008504,0.249855,0,0);}
.m44_c00458{transform:matrix(0.252354,0.008589,-0.008504,0.249855,0,0);-ms-transform:matrix(0.252354,0.008589,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.252354,0.008589,-0.008504,0.249855,0,0);}
.m36_c00458{transform:matrix(0.252359,0.008589,-0.008504,0.249855,0,0);-ms-transform:matrix(0.252359,0.008589,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.252359,0.008589,-0.008504,0.249855,0,0);}
.m3d_c00458{transform:matrix(0.253413,0.008625,-0.008504,0.249855,0,0);-ms-transform:matrix(0.253413,0.008625,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.253413,0.008625,-0.008504,0.249855,0,0);}
.m53_c00458{transform:matrix(0.254907,0.008676,-0.008504,0.249855,0,0);-ms-transform:matrix(0.254907,0.008676,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.254907,0.008676,-0.008504,0.249855,0,0);}
.m4_c00458{transform:matrix(0.255037,0.008680,-0.008504,0.249855,0,0);-ms-transform:matrix(0.255037,0.008680,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.255037,0.008680,-0.008504,0.249855,0,0);}
.m37_c00458{transform:matrix(0.256851,0.008742,-0.008504,0.249855,0,0);-ms-transform:matrix(0.256851,0.008742,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.256851,0.008742,-0.008504,0.249855,0,0);}
.m4f_c00458{transform:matrix(0.257471,0.008763,-0.008504,0.249855,0,0);-ms-transform:matrix(0.257471,0.008763,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.257471,0.008763,-0.008504,0.249855,0,0);}
.m51_c00458{transform:matrix(0.257731,0.008772,-0.008504,0.249855,0,0);-ms-transform:matrix(0.257731,0.008772,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.257731,0.008772,-0.008504,0.249855,0,0);}
.m8_c00458{transform:matrix(0.257746,0.008772,-0.008504,0.249855,0,0);-ms-transform:matrix(0.257746,0.008772,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.257746,0.008772,-0.008504,0.249855,0,0);}
.mbb_c00458{transform:matrix(0.258567,0.010871,-0.010501,0.249779,0,0);-ms-transform:matrix(0.258567,0.010871,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.258567,0.010871,-0.010501,0.249779,0,0);}
.m3e_c00458{transform:matrix(0.261489,0.008900,-0.008504,0.249855,0,0);-ms-transform:matrix(0.261489,0.008900,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.261489,0.008900,-0.008504,0.249855,0,0);}
.m77_c00458{transform:matrix(0.261619,0.010999,-0.010501,0.249779,0,0);-ms-transform:matrix(0.261619,0.010999,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.261619,0.010999,-0.010501,0.249779,0,0);}
.m74_c00458{transform:matrix(0.263837,0.011092,-0.010501,0.249779,0,0);-ms-transform:matrix(0.263837,0.011092,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.263837,0.011092,-0.010501,0.249779,0,0);}
.ma3_c00458{transform:matrix(0.264202,0.011108,-0.010501,0.249779,0,0);-ms-transform:matrix(0.264202,0.011108,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.264202,0.011108,-0.010501,0.249779,0,0);}
.m9e_c00458{transform:matrix(0.264871,0.011136,-0.010501,0.249779,0,0);-ms-transform:matrix(0.264871,0.011136,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.264871,0.011136,-0.010501,0.249779,0,0);}
.m41_c00458{transform:matrix(0.265866,0.009048,-0.008504,0.249855,0,0);-ms-transform:matrix(0.265866,0.009048,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.265866,0.009048,-0.008504,0.249855,0,0);}
.m57_c00458{transform:matrix(0.266496,0.009070,-0.008504,0.249855,0,0);-ms-transform:matrix(0.266496,0.009070,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.266496,0.009070,-0.008504,0.249855,0,0);}
.m4e_c00458{transform:matrix(0.267370,0.009100,-0.008504,0.249855,0,0);-ms-transform:matrix(0.267370,0.009100,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.267370,0.009100,-0.008504,0.249855,0,0);}
.m54_c00458{transform:matrix(0.267970,0.009120,-0.008504,0.249855,0,0);-ms-transform:matrix(0.267970,0.009120,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.267970,0.009120,-0.008504,0.249855,0,0);}
.m7d_c00458{transform:matrix(0.268198,0.011276,-0.010501,0.249779,0,0);-ms-transform:matrix(0.268198,0.011276,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.268198,0.011276,-0.010501,0.249779,0,0);}
.m55_c00458{transform:matrix(0.268809,0.009149,-0.008504,0.249855,0,0);-ms-transform:matrix(0.268809,0.009149,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.268809,0.009149,-0.008504,0.249855,0,0);}
.m7b_c00458{transform:matrix(0.269612,0.011335,-0.010501,0.249779,0,0);-ms-transform:matrix(0.269612,0.011335,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.269612,0.011335,-0.010501,0.249779,0,0);}
.m9b_c00458{transform:matrix(0.270251,0.011362,-0.010501,0.249779,0,0);-ms-transform:matrix(0.270251,0.011362,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.270251,0.011362,-0.010501,0.249779,0,0);}
.m79_c00458{transform:matrix(0.270656,0.011379,-0.010501,0.249779,0,0);-ms-transform:matrix(0.270656,0.011379,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.270656,0.011379,-0.010501,0.249779,0,0);}
.m76_c00458{transform:matrix(0.275017,0.011562,-0.010501,0.249779,0,0);-ms-transform:matrix(0.275017,0.011562,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.275017,0.011562,-0.010501,0.249779,0,0);}
.m52_c00458{transform:matrix(0.275386,0.009372,-0.008504,0.249855,0,0);-ms-transform:matrix(0.275386,0.009372,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.275386,0.009372,-0.008504,0.249855,0,0);}
.m78_c00458{transform:matrix(0.277055,0.011648,-0.010501,0.249779,0,0);-ms-transform:matrix(0.277055,0.011648,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.277055,0.011648,-0.010501,0.249779,0,0);}
.m9c_c00458{transform:matrix(0.277895,0.011683,-0.010501,0.249779,0,0);-ms-transform:matrix(0.277895,0.011683,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.277895,0.011683,-0.010501,0.249779,0,0);}
.ma2_c00458{transform:matrix(0.278004,0.011688,-0.010501,0.249779,0,0);-ms-transform:matrix(0.278004,0.011688,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.278004,0.011688,-0.010501,0.249779,0,0);}
.m50_c00458{transform:matrix(0.280343,0.009541,-0.008504,0.249855,0,0);-ms-transform:matrix(0.280343,0.009541,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.280343,0.009541,-0.008504,0.249855,0,0);}
.ma1_c00458{transform:matrix(0.280532,0.011794,-0.010501,0.249779,0,0);-ms-transform:matrix(0.280532,0.011794,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.280532,0.011794,-0.010501,0.249779,0,0);}
.m1_c00458{transform:matrix(0.468305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468305,0.000000,0.000000,0.250000,0,0);}
.v0_c00458{vertical-align:0.000000px;}
.ls0_c00458{letter-spacing:0.000000px;}
.sc__c00458{text-shadow:none;}
.sc0_c00458{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__c00458{-webkit-text-stroke:0px transparent;}
.sc0_c00458{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00458{word-spacing:0.000000px;}
.fc0_c00458{color:transparent;}
.fs0_c00458{font-size:66.000000px;}
.fs4_c00458{font-size:71.969646px;}
.fs6_c00458{font-size:71.991540px;}
.fs1_c00458{font-size:77.967116px;}
.fs9_c00458{font-size:77.990834px;}
.fs5_c00458{font-size:83.964587px;}
.fsa_c00458{font-size:83.976687px;}
.fs7_c00458{font-size:83.990129px;}
.fs2_c00458{font-size:89.962057px;}
.fsb_c00458{font-size:89.975022px;}
.fs8_c00458{font-size:89.989424px;}
.fs3_c00458{font-size:95.959527px;}
.fsc_c00458{font-size:101.971691px;}
.fsd_c00458{font-size:102.005967px;}
.y0_c00458{bottom:0.000000px;}
.yfb_c00458{bottom:379.575516px;}
.yfa_c00458{bottom:382.148871px;}
.yf9_c00458{bottom:385.208400px;}
.yf8_c00458{bottom:386.700249px;}
.yf7_c00458{bottom:388.217145px;}
.yf6_c00458{bottom:390.281280px;}
.yf5_c00458{bottom:391.276122px;}
.yf4_c00458{bottom:394.816098px;}
.yf3_c00458{bottom:398.415207px;}
.yf2_c00458{bottom:399.898500px;}
.yf1_c00458{bottom:419.412223px;}
.yf0_c00458{bottom:421.343678px;}
.yef_c00458{bottom:423.274562px;}
.yee_c00458{bottom:424.418904px;}
.yed_c00458{bottom:425.166319px;}
.yec_c00458{bottom:426.378597px;}
.yeb_c00458{bottom:427.143951px;}
.yea_c00458{bottom:429.819685px;}
.ye9_c00458{bottom:432.540816px;}
.ye8_c00458{bottom:433.658784px;}
.ye7_c00458{bottom:454.856916px;}
.ye6_c00458{bottom:456.647767px;}
.ye5_c00458{bottom:458.759382px;}
.ye4_c00458{bottom:459.797618px;}
.ye3_c00458{bottom:460.506768px;}
.ye2_c00458{bottom:461.570759px;}
.ye1_c00458{bottom:463.008081px;}
.ye0_c00458{bottom:465.463779px;}
.ydf_c00458{bottom:467.969579px;}
.yde_c00458{bottom:469.018326px;}
.ydd_c00458{bottom:490.154772px;}
.ydc_c00458{bottom:492.290049px;}
.ydb_c00458{bottom:494.786079px;}
.yda_c00458{bottom:496.038084px;}
.yd9_c00458{bottom:496.892172px;}
.yd8_c00458{bottom:498.575952px;}
.yd7_c00458{bottom:499.418241px;}
.yd6_c00458{bottom:502.312587px;}
.yd5_c00458{bottom:505.317741px;}
.yd4_c00458{bottom:506.542500px;}
.yd3_c00458{bottom:562.966329px;}
.yd2_c00458{bottom:568.118176px;}
.yd1_c00458{bottom:570.212580px;}
.yd0_c00458{bottom:571.436067px;}
.ycf_c00458{bottom:575.265108px;}
.yce_c00458{bottom:578.117802px;}
.ycd_c00458{bottom:583.404123px;}
.ycc_c00458{bottom:585.800454px;}
.ycb_c00458{bottom:587.686485px;}
.yca_c00458{bottom:594.669657px;}
.yc9_c00458{bottom:600.295998px;}
.yc8_c00458{bottom:602.144229px;}
.yc7_c00458{bottom:604.935696px;}
.yc6_c00458{bottom:608.649168px;}
.yc5_c00458{bottom:611.875902px;}
.yc4_c00458{bottom:618.470044px;}
.yc3_c00458{bottom:619.803628px;}
.yc2_c00458{bottom:621.757132px;}
.yc1_c00458{bottom:626.919541px;}
.yc0_c00458{bottom:629.676988px;}
.ybf_c00458{bottom:631.084786px;}
.ybe_c00458{bottom:633.877198px;}
.ybd_c00458{bottom:635.738659px;}
.ybc_c00458{bottom:637.134172px;}
.ybb_c00458{bottom:638.554696px;}
.yba_c00458{bottom:639.926584px;}
.yb9_c00458{bottom:641.787541px;}
.yb8_c00458{bottom:644.984980px;}
.yb7_c00458{bottom:647.773108px;}
.yb6_c00458{bottom:654.264462px;}
.yb5_c00458{bottom:658.001280px;}
.yb4_c00458{bottom:661.383426px;}
.yb3_c00458{bottom:664.336371px;}
.yb2_c00458{bottom:665.745069px;}
.yb1_c00458{bottom:667.162209px;}
.yb0_c00458{bottom:669.545062px;}
.yaf_c00458{bottom:671.427300px;}
.yae_c00458{bottom:672.855276px;}
.yad_c00458{bottom:674.332946px;}
.yac_c00458{bottom:675.726901px;}
.yab_c00458{bottom:677.608635px;}
.yaa_c00458{bottom:681.381048px;}
.ya9_c00458{bottom:682.819356px;}
.ya8_c00458{bottom:684.751980px;}
.ya7_c00458{bottom:690.655917px;}
.ya6_c00458{bottom:695.062798px;}
.ya5_c00458{bottom:699.518604px;}
.ya4_c00458{bottom:700.957812px;}
.ya3_c00458{bottom:702.432034px;}
.ya2_c00458{bottom:705.369153px;}
.ya1_c00458{bottom:706.805917px;}
.ya0_c00458{bottom:711.195096px;}
.y9f_c00458{bottom:712.644195px;}
.y9e_c00458{bottom:716.506406px;}
.y9d_c00458{bottom:718.002804px;}
.y9c_c00458{bottom:719.438056px;}
.y9b_c00458{bottom:720.927966px;}
.y9a_c00458{bottom:728.836482px;}
.y99_c00458{bottom:730.680996px;}
.y98_c00458{bottom:733.949751px;}
.y97_c00458{bottom:736.318677px;}
.y96_c00458{bottom:738.141456px;}
.y95_c00458{bottom:739.547805px;}
.y94_c00458{bottom:742.384569px;}
.y93_c00458{bottom:744.677517px;}
.y92_c00458{bottom:748.401825px;}
.y91_c00458{bottom:749.751033px;}
.y90_c00458{bottom:753.038184px;}
.y8f_c00458{bottom:755.758335px;}
.y8e_c00458{bottom:763.005072px;}
.y8d_c00458{bottom:764.406840px;}
.y8c_c00458{bottom:768.249736px;}
.y8b_c00458{bottom:773.049464px;}
.y8a_c00458{bottom:774.459169px;}
.y89_c00458{bottom:775.911715px;}
.y88_c00458{bottom:777.317011px;}
.y87_c00458{bottom:779.204730px;}
.y86_c00458{bottom:781.145607px;}
.y85_c00458{bottom:782.132551px;}
.y84_c00458{bottom:783.910726px;}
.y83_c00458{bottom:786.367591px;}
.y82_c00458{bottom:787.788133px;}
.y81_c00458{bottom:790.151898px;}
.y80_c00458{bottom:792.472206px;}
.y7f_c00458{bottom:801.187230px;}
.y7e_c00458{bottom:802.607313px;}
.y7d_c00458{bottom:806.820249px;}
.y7c_c00458{bottom:808.226094px;}
.y7b_c00458{bottom:811.549596px;}
.y7a_c00458{bottom:815.229552px;}
.y79_c00458{bottom:817.556016px;}
.y78_c00458{bottom:821.694801px;}
.y77_c00458{bottom:823.570437px;}
.y76_c00458{bottom:825.916683px;}
.y75_c00458{bottom:827.712939px;}
.y74_c00458{bottom:828.642000px;}
.y73_c00458{bottom:837.457449px;}
.y72_c00458{bottom:840.612832px;}
.y71_c00458{bottom:842.515621px;}
.y70_c00458{bottom:845.620653px;}
.y6f_c00458{bottom:847.909248px;}
.y6e_c00458{bottom:851.122123px;}
.y6d_c00458{bottom:854.288542px;}
.y6c_c00458{bottom:855.632877px;}
.y6b_c00458{bottom:856.585368px;}
.y6a_c00458{bottom:857.930620px;}
.y69_c00458{bottom:860.086527px;}
.y68_c00458{bottom:861.984420px;}
.y67_c00458{bottom:864.672885px;}
.y66_c00458{bottom:870.981333px;}
.y65_c00458{bottom:872.635636px;}
.y64_c00458{bottom:874.615860px;}
.y63_c00458{bottom:877.443562px;}
.y62_c00458{bottom:878.585711px;}
.y61_c00458{bottom:880.239657px;}
.y60_c00458{bottom:883.061271px;}
.y5f_c00458{bottom:885.017760px;}
.y5e_c00458{bottom:886.194729px;}
.y5d_c00458{bottom:889.032223px;}
.y5c_c00458{bottom:890.596810px;}
.y5b_c00458{bottom:893.311807px;}
.y5a_c00458{bottom:894.152535px;}
.y59_c00458{bottom:896.522844px;}
.y58_c00458{bottom:909.552777px;}
.y57_c00458{bottom:911.246105px;}
.y56_c00458{bottom:914.208058px;}
.y55_c00458{bottom:917.172562px;}
.y54_c00458{bottom:918.023137px;}
.y53_c00458{bottom:921.793003px;}
.y52_c00458{bottom:922.663080px;}
.y51_c00458{bottom:926.866081px;}
.y50_c00458{bottom:928.945291px;}
.y4f_c00458{bottom:931.894170px;}
.y4e_c00458{bottom:934.302421px;}
.y4d_c00458{bottom:942.238378px;}
.y4c_c00458{bottom:943.534056px;}
.y4b_c00458{bottom:946.113948px;}
.y4a_c00458{bottom:947.906929px;}
.y49_c00458{bottom:952.223625px;}
.y48_c00458{bottom:953.930586px;}
.y47_c00458{bottom:955.658853px;}
.y46_c00458{bottom:958.734691px;}
.y45_c00458{bottom:960.388974px;}
.y44_c00458{bottom:963.069562px;}
.y43_c00458{bottom:964.300863px;}
.y42_c00458{bottom:966.469114px;}
.y41_c00458{bottom:967.337914px;}
.y40_c00458{bottom:969.926190px;}
.y3f_c00458{bottom:978.426514px;}
.y3e_c00458{bottom:982.359108px;}
.y3d_c00458{bottom:985.113357px;}
.y3c_c00458{bottom:987.381553px;}
.y3b_c00458{bottom:989.727768px;}
.y3a_c00458{bottom:990.899667px;}
.y39_c00458{bottom:994.010950px;}
.y38_c00458{bottom:995.958240px;}
.y37_c00458{bottom:999.063862px;}
.y36_c00458{bottom:1002.855689px;}
.y35_c00458{bottom:1013.147709px;}
.y34_c00458{bottom:1015.260924px;}
.y33_c00458{bottom:1016.973039px;}
.y32_c00458{bottom:1019.883150px;}
.y31_c00458{bottom:1021.177111px;}
.y30_c00458{bottom:1022.462129px;}
.y2f_c00458{bottom:1023.729837px;}
.y2e_c00458{bottom:1025.759856px;}
.y2d_c00458{bottom:1028.384283px;}
.y2c_c00458{bottom:1029.595865px;}
.y2b_c00458{bottom:1032.531616px;}
.y2a_c00458{bottom:1033.825221px;}
.y29_c00458{bottom:1035.902952px;}
.y28_c00458{bottom:1037.134494px;}
.y27_c00458{bottom:1040.097264px;}
.y26_c00458{bottom:1051.040451px;}
.y25_c00458{bottom:1052.755014px;}
.y24_c00458{bottom:1055.239863px;}
.y23_c00458{bottom:1057.787233px;}
.y22_c00458{bottom:1061.230149px;}
.y21_c00458{bottom:1062.405156px;}
.y20_c00458{bottom:1063.703605px;}
.y1f_c00458{bottom:1066.698646px;}
.y1e_c00458{bottom:1067.934696px;}
.y1d_c00458{bottom:1069.613520px;}
.y1c_c00458{bottom:1075.447277px;}
.y1b_c00458{bottom:1077.069004px;}
.y1a_c00458{bottom:1085.954268px;}
.y19_c00458{bottom:1089.314346px;}
.y18_c00458{bottom:1090.663570px;}
.y17_c00458{bottom:1093.035330px;}
.y16_c00458{bottom:1097.212008px;}
.y15_c00458{bottom:1098.606485px;}
.y14_c00458{bottom:1100.908607px;}
.y13_c00458{bottom:1103.784474px;}
.y12_c00458{bottom:1105.142031px;}
.y11_c00458{bottom:1107.939775px;}
.y10_c00458{bottom:1109.776290px;}
.yf_c00458{bottom:1112.083684px;}
.ye_c00458{bottom:1114.317648px;}
.yd_c00458{bottom:1121.304231px;}
.yc_c00458{bottom:1122.471264px;}
.yb_c00458{bottom:1124.756370px;}
.ya_c00458{bottom:1125.917691px;}
.y9_c00458{bottom:1126.657701px;}
.y8_c00458{bottom:1130.448786px;}
.y7_c00458{bottom:1131.945024px;}
.y6_c00458{bottom:1134.618597px;}
.y5_c00458{bottom:1137.595569px;}
.y4_c00458{bottom:1141.360338px;}
.y3_c00458{bottom:1142.875395px;}
.y2_c00458{bottom:1145.086500px;}
.y1_c00458{bottom:1210.801500px;}
.h2_c00458{height:66.000000px;}
.h6_c00458{height:71.969646px;}
.h8_c00458{height:71.991540px;}
.h3_c00458{height:77.967116px;}
.hb_c00458{height:77.990834px;}
.h7_c00458{height:83.964587px;}
.hc_c00458{height:83.976687px;}
.h9_c00458{height:83.990129px;}
.h4_c00458{height:89.962057px;}
.hd_c00458{height:89.975022px;}
.ha_c00458{height:89.989424px;}
.h5_c00458{height:95.959527px;}
.he_c00458{height:101.971691px;}
.hf_c00458{height:102.005967px;}
.h0_c00458{height:1251.450000px;}
.h1_c00458{height:1251.750000px;}
.w1_c00458{width:924.750000px;}
.w0_c00458{width:925.020000px;}
.x0_c00458{left:0.000000px;}
.xc1_c00458{left:123.850500px;}
.xb4_c00458{left:125.564210px;}
.xab_c00458{left:126.867000px;}
.xa3_c00458{left:129.662631px;}
.x97_c00458{left:132.299186px;}
.x82_c00458{left:133.313688px;}
.x7c_c00458{left:136.153080px;}
.x67_c00458{left:138.226500px;}
.x50_c00458{left:140.040369px;}
.x39_c00458{left:141.720953px;}
.x46_c00458{left:142.974920px;}
.x24_c00458{left:144.658244px;}
.x3_c00458{left:148.545000px;}
.xc2_c00458{left:156.063755px;}
.xbb_c00458{left:157.737620px;}
.xac_c00458{left:159.065269px;}
.x68_c00458{left:160.324880px;}
.x83_c00458{left:167.145485px;}
.x8d_c00458{left:177.385473px;}
.x1a_c00458{left:190.326834px;}
.x71_c00458{left:191.443757px;}
.x98_c00458{left:198.616802px;}
.x84_c00458{left:199.748637px;}
.xf_c00458{left:201.592293px;}
.x69_c00458{left:203.050111px;}
.x5c_c00458{left:204.662226px;}
.x47_c00458{left:206.285418px;}
.x3a_c00458{left:208.028796px;}
.x8e_c00458{left:210.811127px;}
.x4_c00458{left:213.512468px;}
.x25_c00458{left:222.542663px;}
.x51_c00458{left:229.142603px;}
.x3b_c00458{left:230.294231px;}
.x85_c00458{left:233.734779px;}
.xbc_c00458{left:235.389734px;}
.xb5_c00458{left:236.527968px;}
.xad_c00458{left:238.069186px;}
.x72_c00458{left:246.346466px;}
.x5d_c00458{left:250.905410px;}
.x30_c00458{left:252.492375px;}
.x26_c00458{left:254.937345px;}
.x10_c00458{left:256.473399px;}
.x5_c00458{left:258.028407px;}
.x99_c00458{left:274.670172px;}
.x73_c00458{left:279.349542px;}
.x48_c00458{left:283.805753px;}
.x3c_c00458{left:285.847677px;}
.xa4_c00458{left:294.740388px;}
.x8f_c00458{left:298.469723px;}
.x11_c00458{left:300.163770px;}
.x5e_c00458{left:303.451304px;}
.x52_c00458{left:304.507557px;}
.xa9_c00458{left:306.094761px;}
.x27_c00458{left:309.550224px;}
.x7d_c00458{left:311.132925px;}
.xb6_c00458{left:313.159220px;}
.xae_c00458{left:314.160019px;}
.x3d_c00458{left:317.397735px;}
.x9a_c00458{left:318.934364px;}
.x86_c00458{left:321.422625px;}
.xbd_c00458{left:333.626139px;}
.x5f_c00458{left:336.233678px;}
.x49_c00458{left:338.462088px;}
.x31_c00458{left:341.142125px;}
.x90_c00458{left:342.192627px;}
.x1b_c00458{left:343.707420px;}
.x53_c00458{left:347.922138px;}
.x9b_c00458{left:351.565700px;}
.x87_c00458{left:354.319421px;}
.xb7_c00458{left:358.007540px;}
.x60_c00458{left:359.459415px;}
.xa5_c00458{left:361.137425px;}
.x12_c00458{left:366.719524px;}
.x6_c00458{left:368.646179px;}
.x91_c00458{left:374.563337px;}
.x74_c00458{left:377.726405px;}
.xaf_c00458{left:380.569044px;}
.x3e_c00458{left:386.065308px;}
.x1c_c00458{left:387.833725px;}
.xbe_c00458{left:389.564036px;}
.x61_c00458{left:392.214816px;}
.xaa_c00458{left:393.332630px;}
.x32_c00458{left:396.727095px;}
.x13_c00458{left:399.025905px;}
.x75_c00458{left:400.665996px;}
.x6a_c00458{left:401.914548px;}
.xb0_c00458{left:403.022568px;}
.xa6_c00458{left:405.098919px;}
.x92_c00458{left:408.889526px;}
.xc3_c00458{left:410.482081px;}
.xb8_c00458{left:413.380778px;}
.x9c_c00458{left:418.547151px;}
.x1d_c00458{left:420.316768px;}
.xbf_c00458{left:422.212563px;}
.x1_c00458{left:426.330000px;}
.x3f_c00458{left:428.456676px;}
.xb1_c00458{left:435.937120px;}
.x93_c00458{left:442.069425px;}
.x76_c00458{left:445.759965px;}
.x2_c00458{left:448.740000px;}
.x28_c00458{left:452.579051px;}
.x7e_c00458{left:454.257657px;}
.x7_c00458{left:456.116620px;}
.x6b_c00458{left:457.251156px;}
.x54_c00458{left:459.308534px;}
.x9d_c00458{left:462.823331px;}
.x14_c00458{left:467.436292px;}
.x62_c00458{left:469.382693px;}
.x4a_c00458{left:471.828414px;}
.xc0_c00458{left:477.314183px;}
.x33_c00458{left:485.543178px;}
.x88_c00458{left:486.609399px;}
.x77_c00458{left:489.625227px;}
.x1e_c00458{left:499.061224px;}
.xb2_c00458{left:501.556435px;}
.x40_c00458{left:507.238889px;}
.xc4_c00458{left:509.326138px;}
.xb9_c00458{left:511.653773px;}
.x55_c00458{left:513.620991px;}
.x34_c00458{left:519.006558px;}
.x15_c00458{left:522.206560px;}
.x9e_c00458{left:529.242845px;}
.x1f_c00458{left:533.201404px;}
.x8_c00458{left:534.672486px;}
.xa7_c00458{left:538.925459px;}
.x94_c00458{left:541.161072px;}
.x6c_c00458{left:544.781538px;}
.x63_c00458{left:547.695168px;}
.x41_c00458{left:551.495532px;}
.x89_c00458{left:553.293036px;}
.x16_c00458{left:555.377320px;}
.xb3_c00458{left:557.691744px;}
.x9f_c00458{left:562.728326px;}
.x20_c00458{left:564.111277px;}
.xc5_c00458{left:565.212696px;}
.xba_c00458{left:567.532062px;}
.x4b_c00458{left:570.958707px;}
.x29_c00458{left:574.967397px;}
.x9_c00458{left:578.635479px;}
.x35_c00458{left:585.960240px;}
.x78_c00458{left:588.775316px;}
.x56_c00458{left:591.942282px;}
.x4c_c00458{left:593.305775px;}
.x42_c00458{left:595.214316px;}
.x7f_c00458{left:598.539231px;}
.x64_c00458{left:603.478556px;}
.x95_c00458{left:606.804588px;}
.x2a_c00458{left:608.292495px;}
.x8a_c00458{left:619.413237px;}
.x6d_c00458{left:623.833407px;}
.xa0_c00458{left:628.316172px;}
.x57_c00458{left:637.850214px;}
.x2b_c00458{left:642.082077px;}
.x36_c00458{left:650.709731px;}
.x17_c00458{left:654.735306px;}
.x6e_c00458{left:657.272435px;}
.x58_c00458{left:669.557831px;}
.x4d_c00458{left:671.241143px;}
.x2c_c00458{left:676.090389px;}
.x65_c00458{left:679.151286px;}
.xa_c00458{left:690.026476px;}
.x79_c00458{left:700.298015px;}
.x43_c00458{left:705.783299px;}
.xb_c00458{left:711.769712px;}
.x8b_c00458{left:720.577458px;}
.x21_c00458{left:721.606183px;}
.x66_c00458{left:725.538326px;}
.x37_c00458{left:729.343863px;}
.x80_c00458{left:732.635501px;}
.x18_c00458{left:743.260596px;}
.xc_c00458{left:745.892055px;}
.x59_c00458{left:748.013936px;}
.x4e_c00458{left:749.101586px;}
.xa1_c00458{left:751.107758px;}
.x2d_c00458{left:752.603885px;}
.x96_c00458{left:753.990075px;}
.x6f_c00458{left:757.480127px;}
.x81_c00458{left:776.508584px;}
.x22_c00458{left:786.946894px;}
.x7a_c00458{left:789.597405px;}
.x70_c00458{left:791.257815px;}
.x4f_c00458{left:793.609958px;}
.x2e_c00458{left:797.620197px;}
.x5a_c00458{left:802.979688px;}
.xa8_c00458{left:806.884232px;}
.xd_c00458{left:813.033846px;}
.x44_c00458{left:817.826601px;}
.x8c_c00458{left:820.649399px;}
.x7b_c00458{left:822.153929px;}
.x19_c00458{left:823.209319px;}
.xa2_c00458{left:829.293494px;}
.x23_c00458{left:832.035135px;}
.x38_c00458{left:841.586679px;}
.xe_c00458{left:847.324021px;}
.x5b_c00458{left:848.898110px;}
.x45_c00458{left:851.003724px;}
.x2f_c00458{left:853.187519px;}
@media print{
.v0_c00458{vertical-align:0.000000pt;}
.ls0_c00458{letter-spacing:0.000000pt;}
.ws0_c00458{word-spacing:0.000000pt;}
.fs0_c00458{font-size:58.666667pt;}
.fs4_c00458{font-size:63.973018pt;}
.fs6_c00458{font-size:63.992480pt;}
.fs1_c00458{font-size:69.304103pt;}
.fs9_c00458{font-size:69.325186pt;}
.fs5_c00458{font-size:74.635188pt;}
.fsa_c00458{font-size:74.645944pt;}
.fs7_c00458{font-size:74.657893pt;}
.fs2_c00458{font-size:79.966273pt;}
.fsb_c00458{font-size:79.977797pt;}
.fs8_c00458{font-size:79.990599pt;}
.fs3_c00458{font-size:85.297358pt;}
.fsc_c00458{font-size:90.641503pt;}
.fsd_c00458{font-size:90.671971pt;}
.y0_c00458{bottom:0.000000pt;}
.yfb_c00458{bottom:337.400459pt;}
.yfa_c00458{bottom:339.687885pt;}
.yf9_c00458{bottom:342.407467pt;}
.yf8_c00458{bottom:343.733555pt;}
.yf7_c00458{bottom:345.081907pt;}
.yf6_c00458{bottom:346.916693pt;}
.yf5_c00458{bottom:347.800997pt;}
.yf4_c00458{bottom:350.947643pt;}
.yf3_c00458{bottom:354.146851pt;}
.yf2_c00458{bottom:355.465333pt;}
.yf1_c00458{bottom:372.810865pt;}
.yf0_c00458{bottom:374.527713pt;}
.yef_c00458{bottom:376.244055pt;}
.yee_c00458{bottom:377.261248pt;}
.yed_c00458{bottom:377.925617pt;}
.yec_c00458{bottom:379.003197pt;}
.yeb_c00458{bottom:379.683512pt;}
.yea_c00458{bottom:382.061943pt;}
.ye9_c00458{bottom:384.480725pt;}
.ye8_c00458{bottom:385.474475pt;}
.ye7_c00458{bottom:404.317259pt;}
.ye6_c00458{bottom:405.909127pt;}
.ye5_c00458{bottom:407.786117pt;}
.ye4_c00458{bottom:408.708993pt;}
.ye3_c00458{bottom:409.339349pt;}
.ye2_c00458{bottom:410.285119pt;}
.ye1_c00458{bottom:411.562739pt;}
.ye0_c00458{bottom:413.745581pt;}
.ydf_c00458{bottom:415.972959pt;}
.yde_c00458{bottom:416.905179pt;}
.ydd_c00458{bottom:435.693131pt;}
.ydc_c00458{bottom:437.591155pt;}
.ydb_c00458{bottom:439.809848pt;}
.yda_c00458{bottom:440.922741pt;}
.yd9_c00458{bottom:441.681931pt;}
.yd8_c00458{bottom:443.178624pt;}
.yd7_c00458{bottom:443.927325pt;}
.yd6_c00458{bottom:446.500077pt;}
.yd5_c00458{bottom:449.171325pt;}
.yd4_c00458{bottom:450.260000pt;}
.yd3_c00458{bottom:500.414515pt;}
.yd2_c00458{bottom:504.993935pt;}
.yd1_c00458{bottom:506.855627pt;}
.yd0_c00458{bottom:507.943171pt;}
.ycf_c00458{bottom:511.346763pt;}
.yce_c00458{bottom:513.882491pt;}
.ycd_c00458{bottom:518.581443pt;}
.ycc_c00458{bottom:520.711515pt;}
.ycb_c00458{bottom:522.387987pt;}
.yca_c00458{bottom:528.595251pt;}
.yc9_c00458{bottom:533.596443pt;}
.yc8_c00458{bottom:535.239315pt;}
.yc7_c00458{bottom:537.720619pt;}
.yc6_c00458{bottom:541.021483pt;}
.yc5_c00458{bottom:543.889691pt;}
.yc4_c00458{bottom:549.751151pt;}
.yc3_c00458{bottom:550.936559pt;}
.yc2_c00458{bottom:552.673007pt;}
.yc1_c00458{bottom:557.261815pt;}
.yc0_c00458{bottom:559.712879pt;}
.ybf_c00458{bottom:560.964255pt;}
.ybe_c00458{bottom:563.446399pt;}
.ybd_c00458{bottom:565.101031pt;}
.ybc_c00458{bottom:566.341487pt;}
.ybb_c00458{bottom:567.604175pt;}
.yba_c00458{bottom:568.823631pt;}
.yb9_c00458{bottom:570.477815pt;}
.yb8_c00458{bottom:573.319983pt;}
.yb7_c00458{bottom:575.798319pt;}
.yb6_c00458{bottom:581.568411pt;}
.yb5_c00458{bottom:584.890027pt;}
.yb4_c00458{bottom:587.896379pt;}
.yb3_c00458{bottom:590.521219pt;}
.yb2_c00458{bottom:591.773395pt;}
.yb1_c00458{bottom:593.033075pt;}
.yb0_c00458{bottom:595.151167pt;}
.yaf_c00458{bottom:596.824267pt;}
.yae_c00458{bottom:598.093579pt;}
.yad_c00458{bottom:599.407063pt;}
.yac_c00458{bottom:600.646135pt;}
.yab_c00458{bottom:602.318787pt;}
.yaa_c00458{bottom:605.672043pt;}
.ya9_c00458{bottom:606.950539pt;}
.ya8_c00458{bottom:608.668427pt;}
.ya7_c00458{bottom:613.916371pt;}
.ya6_c00458{bottom:617.833599pt;}
.ya5_c00458{bottom:621.794315pt;}
.ya4_c00458{bottom:623.073611pt;}
.ya3_c00458{bottom:624.384031pt;}
.ya2_c00458{bottom:626.994803pt;}
.ya1_c00458{bottom:628.271927pt;}
.ya0_c00458{bottom:632.173419pt;}
.y9f_c00458{bottom:633.461507pt;}
.y9e_c00458{bottom:636.894583pt;}
.y9d_c00458{bottom:638.224715pt;}
.y9c_c00458{bottom:639.500495pt;}
.y9b_c00458{bottom:640.824859pt;}
.y9a_c00458{bottom:647.854651pt;}
.y99_c00458{bottom:649.494219pt;}
.y98_c00458{bottom:652.399779pt;}
.y97_c00458{bottom:654.505491pt;}
.y96_c00458{bottom:656.125739pt;}
.y95_c00458{bottom:657.375827pt;}
.y94_c00458{bottom:659.897395pt;}
.y93_c00458{bottom:661.935571pt;}
.y92_c00458{bottom:665.246067pt;}
.y91_c00458{bottom:666.445363pt;}
.y90_c00458{bottom:669.367275pt;}
.y8f_c00458{bottom:671.785187pt;}
.y8e_c00458{bottom:678.226731pt;}
.y8d_c00458{bottom:679.472747pt;}
.y8c_c00458{bottom:682.888655pt;}
.y8b_c00458{bottom:687.155079pt;}
.y8a_c00458{bottom:688.408151pt;}
.y89_c00458{bottom:689.699303pt;}
.y88_c00458{bottom:690.948455pt;}
.y87_c00458{bottom:692.626427pt;}
.y86_c00458{bottom:694.351651pt;}
.y85_c00458{bottom:695.228935pt;}
.y84_c00458{bottom:696.809535pt;}
.y83_c00458{bottom:698.993415pt;}
.y82_c00458{bottom:700.256119pt;}
.y81_c00458{bottom:702.357243pt;}
.y80_c00458{bottom:704.419739pt;}
.y7f_c00458{bottom:712.166427pt;}
.y7e_c00458{bottom:713.428723pt;}
.y7d_c00458{bottom:717.173555pt;}
.y7c_c00458{bottom:718.423195pt;}
.y7b_c00458{bottom:721.377419pt;}
.y7a_c00458{bottom:724.648491pt;}
.y79_c00458{bottom:726.716459pt;}
.y78_c00458{bottom:730.395379pt;}
.y77_c00458{bottom:732.062611pt;}
.y76_c00458{bottom:734.148163pt;}
.y75_c00458{bottom:735.744835pt;}
.y74_c00458{bottom:736.570667pt;}
.y73_c00458{bottom:744.406621pt;}
.y72_c00458{bottom:747.211407pt;}
.y71_c00458{bottom:748.902775pt;}
.y70_c00458{bottom:751.662803pt;}
.y6f_c00458{bottom:753.697109pt;}
.y6e_c00458{bottom:756.552999pt;}
.y6d_c00458{bottom:759.367593pt;}
.y6c_c00458{bottom:760.562557pt;}
.y6b_c00458{bottom:761.409216pt;}
.y6a_c00458{bottom:762.604996pt;}
.y69_c00458{bottom:764.521357pt;}
.y68_c00458{bottom:766.208373pt;}
.y67_c00458{bottom:768.598120pt;}
.y66_c00458{bottom:774.205629pt;}
.y65_c00458{bottom:775.676121pt;}
.y64_c00458{bottom:777.436320pt;}
.y63_c00458{bottom:779.949833pt;}
.y62_c00458{bottom:780.965076pt;}
.y61_c00458{bottom:782.435251pt;}
.y60_c00458{bottom:784.943352pt;}
.y5f_c00458{bottom:786.682453pt;}
.y5e_c00458{bottom:787.728648pt;}
.y5d_c00458{bottom:790.250865pt;}
.y5c_c00458{bottom:791.641609pt;}
.y5b_c00458{bottom:794.054940pt;}
.y5a_c00458{bottom:794.802253pt;}
.y59_c00458{bottom:796.909195pt;}
.y58_c00458{bottom:808.491357pt;}
.y57_c00458{bottom:809.996537pt;}
.y56_c00458{bottom:812.629385pt;}
.y55_c00458{bottom:815.264500pt;}
.y54_c00458{bottom:816.020567pt;}
.y53_c00458{bottom:819.371559pt;}
.y52_c00458{bottom:820.144960pt;}
.y51_c00458{bottom:823.880961pt;}
.y50_c00458{bottom:825.729148pt;}
.y4f_c00458{bottom:828.350373pt;}
.y4e_c00458{bottom:830.491041pt;}
.y4d_c00458{bottom:837.545225pt;}
.y4c_c00458{bottom:838.696939pt;}
.y4b_c00458{bottom:840.990176pt;}
.y4a_c00458{bottom:842.583937pt;}
.y49_c00458{bottom:846.421000pt;}
.y48_c00458{bottom:847.938299pt;}
.y47_c00458{bottom:849.474536pt;}
.y46_c00458{bottom:852.208615pt;}
.y45_c00458{bottom:853.679088pt;}
.y44_c00458{bottom:856.061833pt;}
.y43_c00458{bottom:857.156323pt;}
.y42_c00458{bottom:859.083657pt;}
.y41_c00458{bottom:859.855924pt;}
.y40_c00458{bottom:862.156613pt;}
.y3f_c00458{bottom:869.712457pt;}
.y3e_c00458{bottom:873.208096pt;}
.y3d_c00458{bottom:875.656317pt;}
.y3c_c00458{bottom:877.672492pt;}
.y3b_c00458{bottom:879.758016pt;}
.y3a_c00458{bottom:880.799704pt;}
.y39_c00458{bottom:883.565289pt;}
.y38_c00458{bottom:885.296213pt;}
.y37_c00458{bottom:888.056767pt;}
.y36_c00458{bottom:891.427279pt;}
.y35_c00458{bottom:900.575741pt;}
.y34_c00458{bottom:902.454155pt;}
.y33_c00458{bottom:903.976035pt;}
.y32_c00458{bottom:906.562800pt;}
.y31_c00458{bottom:907.712988pt;}
.y30_c00458{bottom:908.855225pt;}
.y2f_c00458{bottom:909.982077pt;}
.y2e_c00458{bottom:911.786539pt;}
.y2d_c00458{bottom:914.119363pt;}
.y2c_c00458{bottom:915.196324pt;}
.y2b_c00458{bottom:917.805881pt;}
.y2a_c00458{bottom:918.955752pt;}
.y29_c00458{bottom:920.802624pt;}
.y28_c00458{bottom:921.897328pt;}
.y27_c00458{bottom:924.530901pt;}
.y26_c00458{bottom:934.258179pt;}
.y25_c00458{bottom:935.782235pt;}
.y24_c00458{bottom:937.990989pt;}
.y23_c00458{bottom:940.255319pt;}
.y22_c00458{bottom:943.315688pt;}
.y21_c00458{bottom:944.360139pt;}
.y20_c00458{bottom:945.514316pt;}
.y1f_c00458{bottom:948.176575pt;}
.y1e_c00458{bottom:949.275285pt;}
.y1d_c00458{bottom:950.767573pt;}
.y1c_c00458{bottom:955.953135pt;}
.y1b_c00458{bottom:957.394671pt;}
.y1a_c00458{bottom:965.292683pt;}
.y19_c00458{bottom:968.279419pt;}
.y18_c00458{bottom:969.478729pt;}
.y17_c00458{bottom:971.586960pt;}
.y16_c00458{bottom:975.299563pt;}
.y15_c00458{bottom:976.539097pt;}
.y14_c00458{bottom:978.585428pt;}
.y13_c00458{bottom:981.141755pt;}
.y12_c00458{bottom:982.348472pt;}
.y11_c00458{bottom:984.835356pt;}
.y10_c00458{bottom:986.467813pt;}
.yf_c00458{bottom:988.518831pt;}
.ye_c00458{bottom:990.504576pt;}
.yd_c00458{bottom:996.714872pt;}
.yc_c00458{bottom:997.752235pt;}
.yb_c00458{bottom:999.783440pt;}
.ya_c00458{bottom:1000.815725pt;}
.y9_c00458{bottom:1001.473512pt;}
.y8_c00458{bottom:1004.843365pt;}
.y7_c00458{bottom:1006.173355pt;}
.y6_c00458{bottom:1008.549864pt;}
.y5_c00458{bottom:1011.196061pt;}
.y4_c00458{bottom:1014.542523pt;}
.y3_c00458{bottom:1015.889240pt;}
.y2_c00458{bottom:1017.854667pt;}
.y1_c00458{bottom:1076.268000pt;}
.h2_c00458{height:58.666667pt;}
.h6_c00458{height:63.973018pt;}
.h8_c00458{height:63.992480pt;}
.h3_c00458{height:69.304103pt;}
.hb_c00458{height:69.325186pt;}
.h7_c00458{height:74.635188pt;}
.hc_c00458{height:74.645944pt;}
.h9_c00458{height:74.657893pt;}
.h4_c00458{height:79.966273pt;}
.hd_c00458{height:79.977797pt;}
.ha_c00458{height:79.990599pt;}
.h5_c00458{height:85.297358pt;}
.he_c00458{height:90.641503pt;}
.hf_c00458{height:90.671971pt;}
.h0_c00458{height:1112.400000pt;}
.h1_c00458{height:1112.666667pt;}
.w1_c00458{width:822.000000pt;}
.w0_c00458{width:822.240000pt;}
.x0_c00458{left:0.000000pt;}
.xc1_c00458{left:110.089333pt;}
.xb4_c00458{left:111.612631pt;}
.xab_c00458{left:112.770667pt;}
.xa3_c00458{left:115.255672pt;}
.x97_c00458{left:117.599276pt;}
.x82_c00458{left:118.501056pt;}
.x7c_c00458{left:121.024960pt;}
.x67_c00458{left:122.868000pt;}
.x50_c00458{left:124.480328pt;}
.x39_c00458{left:125.974180pt;}
.x46_c00458{left:127.088817pt;}
.x24_c00458{left:128.585105pt;}
.x3_c00458{left:132.040000pt;}
.xc2_c00458{left:138.723337pt;}
.xbb_c00458{left:140.211217pt;}
.xac_c00458{left:141.391351pt;}
.x68_c00458{left:142.511004pt;}
.x83_c00458{left:148.573764pt;}
.x8d_c00458{left:157.675976pt;}
.x1a_c00458{left:169.179408pt;}
.x71_c00458{left:170.172228pt;}
.x98_c00458{left:176.548268pt;}
.x84_c00458{left:177.554344pt;}
.xf_c00458{left:179.193149pt;}
.x69_c00458{left:180.488988pt;}
.x5c_c00458{left:181.921979pt;}
.x47_c00458{left:183.364816pt;}
.x3a_c00458{left:184.914485pt;}
.x8e_c00458{left:187.387668pt;}
.x4_c00458{left:189.788860pt;}
.x25_c00458{left:197.815700pt;}
.x51_c00458{left:203.682313pt;}
.x3b_c00458{left:204.705983pt;}
.x85_c00458{left:207.764248pt;}
.xbc_c00458{left:209.235319pt;}
.xb5_c00458{left:210.247083pt;}
.xad_c00458{left:211.617055pt;}
.x72_c00458{left:218.974636pt;}
.x5d_c00458{left:223.027031pt;}
.x30_c00458{left:224.437667pt;}
.x26_c00458{left:226.610973pt;}
.x10_c00458{left:227.976355pt;}
.x5_c00458{left:229.358584pt;}
.x99_c00458{left:244.151264pt;}
.x73_c00458{left:248.310704pt;}
.x48_c00458{left:252.271780pt;}
.x3c_c00458{left:254.086824pt;}
.xa4_c00458{left:261.991456pt;}
.x8f_c00458{left:265.306420pt;}
.x11_c00458{left:266.812240pt;}
.x5e_c00458{left:269.734492pt;}
.x52_c00458{left:270.673384pt;}
.xa9_c00458{left:272.084232pt;}
.x27_c00458{left:275.155755pt;}
.x7d_c00458{left:276.562600pt;}
.xb6_c00458{left:278.363751pt;}
.xae_c00458{left:279.253351pt;}
.x3d_c00458{left:282.131320pt;}
.x9a_c00458{left:283.497212pt;}
.x86_c00458{left:285.709000pt;}
.xbd_c00458{left:296.556568pt;}
.x5f_c00458{left:298.874380pt;}
.x49_c00458{left:300.855189pt;}
.x31_c00458{left:303.237444pt;}
.x90_c00458{left:304.171224pt;}
.x1b_c00458{left:305.517707pt;}
.x53_c00458{left:309.264123pt;}
.x9b_c00458{left:312.502844pt;}
.x87_c00458{left:314.950596pt;}
.xb7_c00458{left:318.228924pt;}
.x60_c00458{left:319.519480pt;}
.xa5_c00458{left:321.011044pt;}
.x12_c00458{left:325.972911pt;}
.x6_c00458{left:327.685492pt;}
.x91_c00458{left:332.945188pt;}
.x74_c00458{left:335.756804pt;}
.xaf_c00458{left:338.283595pt;}
.x3e_c00458{left:343.169163pt;}
.x1c_c00458{left:344.741089pt;}
.xbe_c00458{left:346.279143pt;}
.x61_c00458{left:348.635392pt;}
.xaa_c00458{left:349.629004pt;}
.x32_c00458{left:352.646307pt;}
.x13_c00458{left:354.689693pt;}
.x75_c00458{left:356.147552pt;}
.x6a_c00458{left:357.257376pt;}
.xb0_c00458{left:358.242283pt;}
.xa6_c00458{left:360.087928pt;}
.x92_c00458{left:363.457356pt;}
.xc3_c00458{left:364.872961pt;}
.xb8_c00458{left:367.449580pt;}
.x9c_c00458{left:372.041912pt;}
.x1d_c00458{left:373.614905pt;}
.xbf_c00458{left:375.300056pt;}
.x1_c00458{left:378.960000pt;}
.x3f_c00458{left:380.850379pt;}
.xb1_c00458{left:387.499663pt;}
.x93_c00458{left:392.950600pt;}
.x76_c00458{left:396.231080pt;}
.x2_c00458{left:398.880000pt;}
.x28_c00458{left:402.292489pt;}
.x7e_c00458{left:403.784584pt;}
.x7_c00458{left:405.436996pt;}
.x6b_c00458{left:406.445472pt;}
.x54_c00458{left:408.274252pt;}
.x9d_c00458{left:411.398516pt;}
.x14_c00458{left:415.498927pt;}
.x62_c00458{left:417.229060pt;}
.x4a_c00458{left:419.403035pt;}
.xc0_c00458{left:424.279273pt;}
.x33_c00458{left:431.593936pt;}
.x88_c00458{left:432.541688pt;}
.x77_c00458{left:435.222424pt;}
.x1e_c00458{left:443.609977pt;}
.xb2_c00458{left:445.827943pt;}
.x40_c00458{left:450.879012pt;}
.xc4_c00458{left:452.734345pt;}
.xb9_c00458{left:454.803353pt;}
.x55_c00458{left:456.551992pt;}
.x34_c00458{left:461.339163pt;}
.x15_c00458{left:464.183609pt;}
.x9e_c00458{left:470.438084pt;}
.x1f_c00458{left:473.956804pt;}
.x8_c00458{left:475.264432pt;}
.xa7_c00458{left:479.044852pt;}
.x94_c00458{left:481.032064pt;}
.x6c_c00458{left:484.250256pt;}
.x63_c00458{left:486.840149pt;}
.x41_c00458{left:490.218251pt;}
.x89_c00458{left:491.816032pt;}
.x16_c00458{left:493.668729pt;}
.xb3_c00458{left:495.725995pt;}
.x9f_c00458{left:500.202956pt;}
.x20_c00458{left:501.432247pt;}
.xc5_c00458{left:502.411285pt;}
.xba_c00458{left:504.472944pt;}
.x4b_c00458{left:507.518851pt;}
.x29_c00458{left:511.082131pt;}
.x9_c00458{left:514.342648pt;}
.x35_c00458{left:520.853547pt;}
.x78_c00458{left:523.355836pt;}
.x56_c00458{left:526.170917pt;}
.x4c_c00458{left:527.382911pt;}
.x42_c00458{left:529.079392pt;}
.x7f_c00458{left:532.034872pt;}
.x64_c00458{left:536.425383pt;}
.x95_c00458{left:539.381856pt;}
.x2a_c00458{left:540.704440pt;}
.x8a_c00458{left:550.589544pt;}
.x6d_c00458{left:554.518584pt;}
.xa0_c00458{left:558.503264pt;}
.x57_c00458{left:566.977968pt;}
.x2b_c00458{left:570.739624pt;}
.x36_c00458{left:578.408649pt;}
.x17_c00458{left:581.986939pt;}
.x6e_c00458{left:584.242164pt;}
.x58_c00458{left:595.162516pt;}
.x4d_c00458{left:596.658793pt;}
.x2c_c00458{left:600.969235pt;}
.x65_c00458{left:603.690032pt;}
.xa_c00458{left:613.356868pt;}
.x79_c00458{left:622.487124pt;}
.x43_c00458{left:627.362932pt;}
.xb_c00458{left:632.684188pt;}
.x8b_c00458{left:640.513296pt;}
.x21_c00458{left:641.427719pt;}
.x66_c00458{left:644.922956pt;}
.x37_c00458{left:648.305656pt;}
.x80_c00458{left:651.231556pt;}
.x18_c00458{left:660.676085pt;}
.xc_c00458{left:663.015160pt;}
.x59_c00458{left:664.901276pt;}
.x4e_c00458{left:665.868076pt;}
.xa1_c00458{left:667.651340pt;}
.x2d_c00458{left:668.981231pt;}
.x96_c00458{left:670.213400pt;}
.x6f_c00458{left:673.315668pt;}
.x81_c00458{left:690.229852pt;}
.x22_c00458{left:699.508351pt;}
.x7a_c00458{left:701.864360pt;}
.x70_c00458{left:703.340280pt;}
.x4f_c00458{left:705.431073pt;}
.x2e_c00458{left:708.995731pt;}
.x5a_c00458{left:713.759723pt;}
.xa8_c00458{left:717.230428pt;}
.xd_c00458{left:722.696752pt;}
.x44_c00458{left:726.956979pt;}
.x8c_c00458{left:729.466132pt;}
.x7b_c00458{left:730.803492pt;}
.x19_c00458{left:731.741617pt;}
.xa2_c00458{left:737.149772pt;}
.x23_c00458{left:739.586787pt;}
.x38_c00458{left:748.077048pt;}
.xe_c00458{left:753.176908pt;}
.x5b_c00458{left:754.576097pt;}
.x45_c00458{left:756.447755pt;}
.x2f_c00458{left:758.388905pt;}
}





/* 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_c00459 {
    display:none;
  }
  .loading-indicator_c00459.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00459 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_c00459 { 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_c00459" -> "#page-container .classname_c00459")
 */
.pf_c00459 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00459 { /* 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_c00459.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00459 { /* 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_c00459 { /* 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_c00459 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00459 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00459 {overflow:visible;}
  }
}
.c_c00459 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00459 { /* 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_c00459:after { /* webkit #35443 */
  content: '';
}
.t_c00459:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00459 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 */
}
.__c00459 { /* 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_c00459 { /* info for Javascript */
  display:none;
}
.l_c00459 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00459 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00459 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00459: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_c00459 {
    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_c00459.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00459.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_c00459 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00459{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00459;src:url('chunks/assets/font_b11a17f404e7258299fdf971.woff2')format("woff");}.ff1_c00459{font-family:ff1_c00459;line-height:1.000000;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;}
.m3d_c00459{transform:matrix(0.022600,-0.000814,0.009003,0.249838,0,0);-ms-transform:matrix(0.022600,-0.000814,0.009003,0.249838,0,0);-webkit-transform:matrix(0.022600,-0.000814,0.009003,0.249838,0,0);}
.m58_c00459{transform:matrix(0.117983,-0.004252,0.009003,0.249838,0,0);-ms-transform:matrix(0.117983,-0.004252,0.009003,0.249838,0,0);-webkit-transform:matrix(0.117983,-0.004252,0.009003,0.249838,0,0);}
.m5d_c00459{transform:matrix(0.119487,-0.004306,0.009003,0.249838,0,0);-ms-transform:matrix(0.119487,-0.004306,0.009003,0.249838,0,0);-webkit-transform:matrix(0.119487,-0.004306,0.009003,0.249838,0,0);}
.m54_c00459{transform:matrix(0.122875,-0.004428,0.009003,0.249838,0,0);-ms-transform:matrix(0.122875,-0.004428,0.009003,0.249838,0,0);-webkit-transform:matrix(0.122875,-0.004428,0.009003,0.249838,0,0);}
.m59_c00459{transform:matrix(0.125284,-0.004515,0.009003,0.249838,0,0);-ms-transform:matrix(0.125284,-0.004515,0.009003,0.249838,0,0);-webkit-transform:matrix(0.125284,-0.004515,0.009003,0.249838,0,0);}
.m5c_c00459{transform:matrix(0.126868,-0.004572,0.009003,0.249838,0,0);-ms-transform:matrix(0.126868,-0.004572,0.009003,0.249838,0,0);-webkit-transform:matrix(0.126868,-0.004572,0.009003,0.249838,0,0);}
.m5b_c00459{transform:matrix(0.129076,-0.004651,0.009003,0.249838,0,0);-ms-transform:matrix(0.129076,-0.004651,0.009003,0.249838,0,0);-webkit-transform:matrix(0.129076,-0.004651,0.009003,0.249838,0,0);}
.m55_c00459{transform:matrix(0.131894,-0.004753,0.009003,0.249838,0,0);-ms-transform:matrix(0.131894,-0.004753,0.009003,0.249838,0,0);-webkit-transform:matrix(0.131894,-0.004753,0.009003,0.249838,0,0);}
.m0_c00459{transform:matrix(0.136213,-0.001362,0.002500,0.249988,0,0);-ms-transform:matrix(0.136213,-0.001362,0.002500,0.249988,0,0);-webkit-transform:matrix(0.136213,-0.001362,0.002500,0.249988,0,0);}
.m5a_c00459{transform:matrix(0.136556,-0.004921,0.009003,0.249838,0,0);-ms-transform:matrix(0.136556,-0.004921,0.009003,0.249838,0,0);-webkit-transform:matrix(0.136556,-0.004921,0.009003,0.249838,0,0);}
.m50_c00459{transform:matrix(0.140629,-0.005068,0.009003,0.249838,0,0);-ms-transform:matrix(0.140629,-0.005068,0.009003,0.249838,0,0);-webkit-transform:matrix(0.140629,-0.005068,0.009003,0.249838,0,0);}
.m57_c00459{transform:matrix(0.147249,-0.005306,0.009003,0.249838,0,0);-ms-transform:matrix(0.147249,-0.005306,0.009003,0.249838,0,0);-webkit-transform:matrix(0.147249,-0.005306,0.009003,0.249838,0,0);}
.m40_c00459{transform:matrix(0.155384,-0.005599,0.009003,0.249838,0,0);-ms-transform:matrix(0.155384,-0.005599,0.009003,0.249838,0,0);-webkit-transform:matrix(0.155384,-0.005599,0.009003,0.249838,0,0);}
.m49_c00459{transform:matrix(0.155599,-0.005607,0.009003,0.249838,0,0);-ms-transform:matrix(0.155599,-0.005607,0.009003,0.249838,0,0);-webkit-transform:matrix(0.155599,-0.005607,0.009003,0.249838,0,0);}
.m4d_c00459{transform:matrix(0.157158,-0.005663,0.009003,0.249838,0,0);-ms-transform:matrix(0.157158,-0.005663,0.009003,0.249838,0,0);-webkit-transform:matrix(0.157158,-0.005663,0.009003,0.249838,0,0);}
.m51_c00459{transform:matrix(0.158932,-0.005727,0.009003,0.249838,0,0);-ms-transform:matrix(0.158932,-0.005727,0.009003,0.249838,0,0);-webkit-transform:matrix(0.158932,-0.005727,0.009003,0.249838,0,0);}
.m56_c00459{transform:matrix(0.159746,-0.005757,0.009003,0.249838,0,0);-ms-transform:matrix(0.159746,-0.005757,0.009003,0.249838,0,0);-webkit-transform:matrix(0.159746,-0.005757,0.009003,0.249838,0,0);}
.m4c_c00459{transform:matrix(0.164683,-0.005935,0.009003,0.249838,0,0);-ms-transform:matrix(0.164683,-0.005935,0.009003,0.249838,0,0);-webkit-transform:matrix(0.164683,-0.005935,0.009003,0.249838,0,0);}
.m33_c00459{transform:matrix(0.164850,-0.001319,0.002000,0.249992,0,0);-ms-transform:matrix(0.164850,-0.001319,0.002000,0.249992,0,0);-webkit-transform:matrix(0.164850,-0.001319,0.002000,0.249992,0,0);}
.m47_c00459{transform:matrix(0.165997,-0.005982,0.009003,0.249838,0,0);-ms-transform:matrix(0.165997,-0.005982,0.009003,0.249838,0,0);-webkit-transform:matrix(0.165997,-0.005982,0.009003,0.249838,0,0);}
.m1d_c00459{transform:matrix(0.166765,-0.001334,0.002000,0.249992,0,0);-ms-transform:matrix(0.166765,-0.001334,0.002000,0.249992,0,0);-webkit-transform:matrix(0.166765,-0.001334,0.002000,0.249992,0,0);}
.m6_c00459{transform:matrix(0.172718,-0.002418,0.003500,0.249976,0,0);-ms-transform:matrix(0.172718,-0.002418,0.003500,0.249976,0,0);-webkit-transform:matrix(0.172718,-0.002418,0.003500,0.249976,0,0);}
.m3e_c00459{transform:matrix(0.173293,-0.006245,0.009003,0.249838,0,0);-ms-transform:matrix(0.173293,-0.006245,0.009003,0.249838,0,0);-webkit-transform:matrix(0.173293,-0.006245,0.009003,0.249838,0,0);}
.m32_c00459{transform:matrix(0.173304,-0.001386,0.002000,0.249992,0,0);-ms-transform:matrix(0.173304,-0.001386,0.002000,0.249992,0,0);-webkit-transform:matrix(0.173304,-0.001386,0.002000,0.249992,0,0);}
.m7_c00459{transform:matrix(0.177658,-0.002487,0.003500,0.249976,0,0);-ms-transform:matrix(0.177658,-0.002487,0.003500,0.249976,0,0);-webkit-transform:matrix(0.177658,-0.002487,0.003500,0.249976,0,0);}
.m5e_c00459{transform:matrix(0.179269,-0.006460,0.009003,0.249838,0,0);-ms-transform:matrix(0.179269,-0.006460,0.009003,0.249838,0,0);-webkit-transform:matrix(0.179269,-0.006460,0.009003,0.249838,0,0);}
.m13_c00459{transform:matrix(0.183032,-0.002562,0.003500,0.249976,0,0);-ms-transform:matrix(0.183032,-0.002562,0.003500,0.249976,0,0);-webkit-transform:matrix(0.183032,-0.002562,0.003500,0.249976,0,0);}
.m10_c00459{transform:matrix(0.183602,-0.002570,0.003500,0.249976,0,0);-ms-transform:matrix(0.183602,-0.002570,0.003500,0.249976,0,0);-webkit-transform:matrix(0.183602,-0.002570,0.003500,0.249976,0,0);}
.m2e_c00459{transform:matrix(0.183914,-0.001471,0.002000,0.249992,0,0);-ms-transform:matrix(0.183914,-0.001471,0.002000,0.249992,0,0);-webkit-transform:matrix(0.183914,-0.001471,0.002000,0.249992,0,0);}
.m4b_c00459{transform:matrix(0.184480,-0.006648,0.009003,0.249838,0,0);-ms-transform:matrix(0.184480,-0.006648,0.009003,0.249838,0,0);-webkit-transform:matrix(0.184480,-0.006648,0.009003,0.249838,0,0);}
.m37_c00459{transform:matrix(0.185289,-0.001482,0.002000,0.249992,0,0);-ms-transform:matrix(0.185289,-0.001482,0.002000,0.249992,0,0);-webkit-transform:matrix(0.185289,-0.001482,0.002000,0.249992,0,0);}
.m23_c00459{transform:matrix(0.185929,-0.001487,0.002000,0.249992,0,0);-ms-transform:matrix(0.185929,-0.001487,0.002000,0.249992,0,0);-webkit-transform:matrix(0.185929,-0.001487,0.002000,0.249992,0,0);}
.m4e_c00459{transform:matrix(0.191601,-0.006905,0.009003,0.249838,0,0);-ms-transform:matrix(0.191601,-0.006905,0.009003,0.249838,0,0);-webkit-transform:matrix(0.191601,-0.006905,0.009003,0.249838,0,0);}
.m3_c00459{transform:matrix(0.193136,-0.002704,0.003500,0.249976,0,0);-ms-transform:matrix(0.193136,-0.002704,0.003500,0.249976,0,0);-webkit-transform:matrix(0.193136,-0.002704,0.003500,0.249976,0,0);}
.m4f_c00459{transform:matrix(0.195248,-0.007036,0.009003,0.249838,0,0);-ms-transform:matrix(0.195248,-0.007036,0.009003,0.249838,0,0);-webkit-transform:matrix(0.195248,-0.007036,0.009003,0.249838,0,0);}
.m31_c00459{transform:matrix(0.196224,-0.001570,0.002000,0.249992,0,0);-ms-transform:matrix(0.196224,-0.001570,0.002000,0.249992,0,0);-webkit-transform:matrix(0.196224,-0.001570,0.002000,0.249992,0,0);}
.m43_c00459{transform:matrix(0.196418,-0.007078,0.009003,0.249838,0,0);-ms-transform:matrix(0.196418,-0.007078,0.009003,0.249838,0,0);-webkit-transform:matrix(0.196418,-0.007078,0.009003,0.249838,0,0);}
.m36_c00459{transform:matrix(0.198204,-0.001586,0.002000,0.249992,0,0);-ms-transform:matrix(0.198204,-0.001586,0.002000,0.249992,0,0);-webkit-transform:matrix(0.198204,-0.001586,0.002000,0.249992,0,0);}
.m52_c00459{transform:matrix(0.199441,-0.007187,0.009003,0.249838,0,0);-ms-transform:matrix(0.199441,-0.007187,0.009003,0.249838,0,0);-webkit-transform:matrix(0.199441,-0.007187,0.009003,0.249838,0,0);}
.m4a_c00459{transform:matrix(0.199970,-0.007206,0.009003,0.249838,0,0);-ms-transform:matrix(0.199970,-0.007206,0.009003,0.249838,0,0);-webkit-transform:matrix(0.199970,-0.007206,0.009003,0.249838,0,0);}
.m5_c00459{transform:matrix(0.204440,-0.002862,0.003500,0.249976,0,0);-ms-transform:matrix(0.204440,-0.002862,0.003500,0.249976,0,0);-webkit-transform:matrix(0.204440,-0.002862,0.003500,0.249976,0,0);}
.m3f_c00459{transform:matrix(0.205057,-0.007389,0.009003,0.249838,0,0);-ms-transform:matrix(0.205057,-0.007389,0.009003,0.249838,0,0);-webkit-transform:matrix(0.205057,-0.007389,0.009003,0.249838,0,0);}
.m14_c00459{transform:matrix(0.205290,-0.002874,0.003500,0.249976,0,0);-ms-transform:matrix(0.205290,-0.002874,0.003500,0.249976,0,0);-webkit-transform:matrix(0.205290,-0.002874,0.003500,0.249976,0,0);}
.m24_c00459{transform:matrix(0.207498,-0.001660,0.002000,0.249992,0,0);-ms-transform:matrix(0.207498,-0.001660,0.002000,0.249992,0,0);-webkit-transform:matrix(0.207498,-0.001660,0.002000,0.249992,0,0);}
.m11_c00459{transform:matrix(0.207935,-0.002911,0.003500,0.249976,0,0);-ms-transform:matrix(0.207935,-0.002911,0.003500,0.249976,0,0);-webkit-transform:matrix(0.207935,-0.002911,0.003500,0.249976,0,0);}
.m16_c00459{transform:matrix(0.208000,-0.002912,0.003500,0.249976,0,0);-ms-transform:matrix(0.208000,-0.002912,0.003500,0.249976,0,0);-webkit-transform:matrix(0.208000,-0.002912,0.003500,0.249976,0,0);}
.m35_c00459{transform:matrix(0.208558,-0.001668,0.002000,0.249992,0,0);-ms-transform:matrix(0.208558,-0.001668,0.002000,0.249992,0,0);-webkit-transform:matrix(0.208558,-0.001668,0.002000,0.249992,0,0);}
.m8_c00459{transform:matrix(0.208690,-0.002922,0.003500,0.249976,0,0);-ms-transform:matrix(0.208690,-0.002922,0.003500,0.249976,0,0);-webkit-transform:matrix(0.208690,-0.002922,0.003500,0.249976,0,0);}
.m1f_c00459{transform:matrix(0.209393,-0.001675,0.002000,0.249992,0,0);-ms-transform:matrix(0.209393,-0.001675,0.002000,0.249992,0,0);-webkit-transform:matrix(0.209393,-0.001675,0.002000,0.249992,0,0);}
.mc_c00459{transform:matrix(0.212279,-0.002972,0.003500,0.249976,0,0);-ms-transform:matrix(0.212279,-0.002972,0.003500,0.249976,0,0);-webkit-transform:matrix(0.212279,-0.002972,0.003500,0.249976,0,0);}
.m18_c00459{transform:matrix(0.213319,-0.002986,0.003500,0.249976,0,0);-ms-transform:matrix(0.213319,-0.002986,0.003500,0.249976,0,0);-webkit-transform:matrix(0.213319,-0.002986,0.003500,0.249976,0,0);}
.m20_c00459{transform:matrix(0.215148,-0.001721,0.002000,0.249992,0,0);-ms-transform:matrix(0.215148,-0.001721,0.002000,0.249992,0,0);-webkit-transform:matrix(0.215148,-0.001721,0.002000,0.249992,0,0);}
.m1a_c00459{transform:matrix(0.218989,-0.003066,0.003500,0.249976,0,0);-ms-transform:matrix(0.218989,-0.003066,0.003500,0.249976,0,0);-webkit-transform:matrix(0.218989,-0.003066,0.003500,0.249976,0,0);}
.m41_c00459{transform:matrix(0.225284,-0.008118,0.009003,0.249838,0,0);-ms-transform:matrix(0.225284,-0.008118,0.009003,0.249838,0,0);-webkit-transform:matrix(0.225284,-0.008118,0.009003,0.249838,0,0);}
.m4_c00459{transform:matrix(0.225318,-0.003154,0.003500,0.249976,0,0);-ms-transform:matrix(0.225318,-0.003154,0.003500,0.249976,0,0);-webkit-transform:matrix(0.225318,-0.003154,0.003500,0.249976,0,0);}
.m27_c00459{transform:matrix(0.225733,-0.001806,0.002000,0.249992,0,0);-ms-transform:matrix(0.225733,-0.001806,0.002000,0.249992,0,0);-webkit-transform:matrix(0.225733,-0.001806,0.002000,0.249992,0,0);}
.m26_c00459{transform:matrix(0.225838,-0.001807,0.002000,0.249992,0,0);-ms-transform:matrix(0.225838,-0.001807,0.002000,0.249992,0,0);-webkit-transform:matrix(0.225838,-0.001807,0.002000,0.249992,0,0);}
.m15_c00459{transform:matrix(0.226713,-0.003174,0.003500,0.249976,0,0);-ms-transform:matrix(0.226713,-0.003174,0.003500,0.249976,0,0);-webkit-transform:matrix(0.226713,-0.003174,0.003500,0.249976,0,0);}
.m17_c00459{transform:matrix(0.228628,-0.003201,0.003500,0.249976,0,0);-ms-transform:matrix(0.228628,-0.003201,0.003500,0.249976,0,0);-webkit-transform:matrix(0.228628,-0.003201,0.003500,0.249976,0,0);}
.m19_c00459{transform:matrix(0.228938,-0.003205,0.003500,0.249976,0,0);-ms-transform:matrix(0.228938,-0.003205,0.003500,0.249976,0,0);-webkit-transform:matrix(0.228938,-0.003205,0.003500,0.249976,0,0);}
.m9_c00459{transform:matrix(0.229802,-0.003217,0.003500,0.249976,0,0);-ms-transform:matrix(0.229802,-0.003217,0.003500,0.249976,0,0);-webkit-transform:matrix(0.229802,-0.003217,0.003500,0.249976,0,0);}
.md_c00459{transform:matrix(0.231192,-0.003237,0.003500,0.249976,0,0);-ms-transform:matrix(0.231192,-0.003237,0.003500,0.249976,0,0);-webkit-transform:matrix(0.231192,-0.003237,0.003500,0.249976,0,0);}
.m29_c00459{transform:matrix(0.232038,-0.001856,0.002000,0.249992,0,0);-ms-transform:matrix(0.232038,-0.001856,0.002000,0.249992,0,0);-webkit-transform:matrix(0.232038,-0.001856,0.002000,0.249992,0,0);}
.m1e_c00459{transform:matrix(0.232148,-0.001857,0.002000,0.249992,0,0);-ms-transform:matrix(0.232148,-0.001857,0.002000,0.249992,0,0);-webkit-transform:matrix(0.232148,-0.001857,0.002000,0.249992,0,0);}
.m25_c00459{transform:matrix(0.236672,-0.001893,0.002000,0.249992,0,0);-ms-transform:matrix(0.236672,-0.001893,0.002000,0.249992,0,0);-webkit-transform:matrix(0.236672,-0.001893,0.002000,0.249992,0,0);}
.m22_c00459{transform:matrix(0.236742,-0.001894,0.002000,0.249992,0,0);-ms-transform:matrix(0.236742,-0.001894,0.002000,0.249992,0,0);-webkit-transform:matrix(0.236742,-0.001894,0.002000,0.249992,0,0);}
.m30_c00459{transform:matrix(0.238847,-0.001911,0.002000,0.249992,0,0);-ms-transform:matrix(0.238847,-0.001911,0.002000,0.249992,0,0);-webkit-transform:matrix(0.238847,-0.001911,0.002000,0.249992,0,0);}
.m12_c00459{transform:matrix(0.240691,-0.003370,0.003500,0.249976,0,0);-ms-transform:matrix(0.240691,-0.003370,0.003500,0.249976,0,0);-webkit-transform:matrix(0.240691,-0.003370,0.003500,0.249976,0,0);}
.ma_c00459{transform:matrix(0.242846,-0.003400,0.003500,0.249976,0,0);-ms-transform:matrix(0.242846,-0.003400,0.003500,0.249976,0,0);-webkit-transform:matrix(0.242846,-0.003400,0.003500,0.249976,0,0);}
.m34_c00459{transform:matrix(0.245997,-0.001968,0.002000,0.249992,0,0);-ms-transform:matrix(0.245997,-0.001968,0.002000,0.249992,0,0);-webkit-transform:matrix(0.245997,-0.001968,0.002000,0.249992,0,0);}
.mf_c00459{transform:matrix(0.246051,-0.003445,0.003500,0.249976,0,0);-ms-transform:matrix(0.246051,-0.003445,0.003500,0.249976,0,0);-webkit-transform:matrix(0.246051,-0.003445,0.003500,0.249976,0,0);}
.m2a_c00459{transform:matrix(0.249782,-0.001998,0.002000,0.249992,0,0);-ms-transform:matrix(0.249782,-0.001998,0.002000,0.249992,0,0);-webkit-transform:matrix(0.249782,-0.001998,0.002000,0.249992,0,0);}
.m1_c00459{transform:matrix(0.254912,-0.002549,0.002500,0.249988,0,0);-ms-transform:matrix(0.254912,-0.002549,0.002500,0.249988,0,0);-webkit-transform:matrix(0.254912,-0.002549,0.002500,0.249988,0,0);}
.m21_c00459{transform:matrix(0.255732,-0.002046,0.002000,0.249992,0,0);-ms-transform:matrix(0.255732,-0.002046,0.002000,0.249992,0,0);-webkit-transform:matrix(0.255732,-0.002046,0.002000,0.249992,0,0);}
.m2d_c00459{transform:matrix(0.258027,-0.002064,0.002000,0.249992,0,0);-ms-transform:matrix(0.258027,-0.002064,0.002000,0.249992,0,0);-webkit-transform:matrix(0.258027,-0.002064,0.002000,0.249992,0,0);}
.mb_c00459{transform:matrix(0.265874,-0.003722,0.003500,0.249976,0,0);-ms-transform:matrix(0.265874,-0.003722,0.003500,0.249976,0,0);-webkit-transform:matrix(0.265874,-0.003722,0.003500,0.249976,0,0);}
.me_c00459{transform:matrix(0.269689,-0.003776,0.003500,0.249976,0,0);-ms-transform:matrix(0.269689,-0.003776,0.003500,0.249976,0,0);-webkit-transform:matrix(0.269689,-0.003776,0.003500,0.249976,0,0);}
.m42_c00459{transform:matrix(0.273852,-0.009869,0.009003,0.249838,0,0);-ms-transform:matrix(0.273852,-0.009869,0.009003,0.249838,0,0);-webkit-transform:matrix(0.273852,-0.009869,0.009003,0.249838,0,0);}
.m2_c00459{transform:matrix(0.281952,-0.003947,0.003500,0.249976,0,0);-ms-transform:matrix(0.281952,-0.003947,0.003500,0.249976,0,0);-webkit-transform:matrix(0.281952,-0.003947,0.003500,0.249976,0,0);}
.m48_c00459{transform:matrix(0.294454,-0.010611,0.009003,0.249838,0,0);-ms-transform:matrix(0.294454,-0.010611,0.009003,0.249838,0,0);-webkit-transform:matrix(0.294454,-0.010611,0.009003,0.249838,0,0);}
.m28_c00459{transform:matrix(0.295731,-0.002366,0.002000,0.249992,0,0);-ms-transform:matrix(0.295731,-0.002366,0.002000,0.249992,0,0);-webkit-transform:matrix(0.295731,-0.002366,0.002000,0.249992,0,0);}
.m2b_c00459{transform:matrix(0.296990,-0.002376,0.002000,0.249992,0,0);-ms-transform:matrix(0.296990,-0.002376,0.002000,0.249992,0,0);-webkit-transform:matrix(0.296990,-0.002376,0.002000,0.249992,0,0);}
.m1c_c00459{transform:matrix(0.324010,-0.002592,0.002000,0.249992,0,0);-ms-transform:matrix(0.324010,-0.002592,0.002000,0.249992,0,0);-webkit-transform:matrix(0.324010,-0.002592,0.002000,0.249992,0,0);}
.m45_c00459{transform:matrix(0.340294,-0.012263,0.009003,0.249838,0,0);-ms-transform:matrix(0.340294,-0.012263,0.009003,0.249838,0,0);-webkit-transform:matrix(0.340294,-0.012263,0.009003,0.249838,0,0);}
.m44_c00459{transform:matrix(0.354225,-0.012765,0.009003,0.249838,0,0);-ms-transform:matrix(0.354225,-0.012765,0.009003,0.249838,0,0);-webkit-transform:matrix(0.354225,-0.012765,0.009003,0.249838,0,0);}
.m2c_c00459{transform:matrix(0.355779,-0.002846,0.002000,0.249992,0,0);-ms-transform:matrix(0.355779,-0.002846,0.002000,0.249992,0,0);-webkit-transform:matrix(0.355779,-0.002846,0.002000,0.249992,0,0);}
.m46_c00459{transform:matrix(0.358542,-0.012920,0.009003,0.249838,0,0);-ms-transform:matrix(0.358542,-0.012920,0.009003,0.249838,0,0);-webkit-transform:matrix(0.358542,-0.012920,0.009003,0.249838,0,0);}
.m53_c00459{transform:matrix(0.360756,-0.013000,0.009003,0.249838,0,0);-ms-transform:matrix(0.360756,-0.013000,0.009003,0.249838,0,0);-webkit-transform:matrix(0.360756,-0.013000,0.009003,0.249838,0,0);}
.m3a_c00459{transform:matrix(0.503134,-0.004025,0.002000,0.249992,0,0);-ms-transform:matrix(0.503134,-0.004025,0.002000,0.249992,0,0);-webkit-transform:matrix(0.503134,-0.004025,0.002000,0.249992,0,0);}
.m2f_c00459{transform:matrix(0.589911,-0.004719,0.002000,0.249992,0,0);-ms-transform:matrix(0.589911,-0.004719,0.002000,0.249992,0,0);-webkit-transform:matrix(0.589911,-0.004719,0.002000,0.249992,0,0);}
.m39_c00459{transform:matrix(0.616680,-0.004933,0.002000,0.249992,0,0);-ms-transform:matrix(0.616680,-0.004933,0.002000,0.249992,0,0);-webkit-transform:matrix(0.616680,-0.004933,0.002000,0.249992,0,0);}
.m1b_c00459{transform:matrix(0.640360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.640360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.640360,0.000000,0.000000,0.250000,0,0);}
.m3b_c00459{transform:matrix(0.765596,-0.006125,0.002000,0.249992,0,0);-ms-transform:matrix(0.765596,-0.006125,0.002000,0.249992,0,0);-webkit-transform:matrix(0.765596,-0.006125,0.002000,0.249992,0,0);}
.m38_c00459{transform:matrix(0.933550,-0.007468,0.002000,0.249992,0,0);-ms-transform:matrix(0.933550,-0.007468,0.002000,0.249992,0,0);-webkit-transform:matrix(0.933550,-0.007468,0.002000,0.249992,0,0);}
.m3c_c00459{transform:matrix(2.057214,-0.016458,0.002000,0.249992,0,0);-ms-transform:matrix(2.057214,-0.016458,0.002000,0.249992,0,0);-webkit-transform:matrix(2.057214,-0.016458,0.002000,0.249992,0,0);}
.v0_c00459{vertical-align:0.000000px;}
.ls0_c00459{letter-spacing:0.000000px;}
.sc__c00459{text-shadow:none;}
.sc0_c00459{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__c00459{-webkit-text-stroke:0px transparent;}
.sc0_c00459{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00459{word-spacing:0.000000px;}
.fc0_c00459{color:transparent;}
.fs3_c00459{font-size:24.000000px;}
.fs4_c00459{font-size:84.002688px;}
.fs0_c00459{font-size:84.004200px;}
.fs1_c00459{font-size:84.008232px;}
.fs2_c00459{font-size:90.008820px;}
.fs6_c00459{font-size:101.964141px;}
.fs5_c00459{font-size:102.003264px;}
.fs7_c00459{font-size:119.957813px;}
.fs8_c00459{font-size:155.945156px;}
.y0_c00459{bottom:0.000000px;}
.y57_c00459{bottom:830.700763px;}
.y58_c00459{bottom:833.226721px;}
.y59_c00459{bottom:836.517117px;}
.y5a_c00459{bottom:838.100221px;}
.y5b_c00459{bottom:841.225309px;}
.y5c_c00459{bottom:843.513991px;}
.y5d_c00459{bottom:846.526044px;}
.y5e_c00459{bottom:849.533898px;}
.y5f_c00459{bottom:850.945107px;}
.y60_c00459{bottom:851.652250px;}
.y61_c00459{bottom:853.238797px;}
.y62_c00459{bottom:855.395071px;}
.y49_c00459{bottom:891.281082px;}
.y4a_c00459{bottom:891.486511px;}
.y4b_c00459{bottom:892.460172px;}
.y4c_c00459{bottom:893.264002px;}
.y4d_c00459{bottom:894.257292px;}
.y4e_c00459{bottom:895.623600px;}
.y4f_c00459{bottom:896.241846px;}
.y50_c00459{bottom:897.050577px;}
.y51_c00459{bottom:898.477041px;}
.y52_c00459{bottom:899.414305px;}
.y53_c00459{bottom:900.030297px;}
.y54_c00459{bottom:901.394499px;}
.y55_c00459{bottom:902.287038px;}
.y56_c00459{bottom:903.669654px;}
.y3f_c00459{bottom:918.660000px;}
.y40_c00459{bottom:919.233264px;}
.y41_c00459{bottom:920.420076px;}
.y42_c00459{bottom:921.514926px;}
.y43_c00459{bottom:923.280780px;}
.y44_c00459{bottom:925.969008px;}
.y45_c00459{bottom:928.809894px;}
.y46_c00459{bottom:929.737128px;}
.y47_c00459{bottom:933.629178px;}
.y48_c00459{bottom:939.872118px;}
.y3a_c00459{bottom:990.946524px;}
.y3b_c00459{bottom:993.220404px;}
.y3c_c00459{bottom:994.265712px;}
.y3d_c00459{bottom:995.407872px;}
.y3e_c00459{bottom:997.416084px;}
.y2c_c00459{bottom:1025.732076px;}
.y2d_c00459{bottom:1026.208980px;}
.y2e_c00459{bottom:1027.028196px;}
.y2f_c00459{bottom:1027.546812px;}
.y30_c00459{bottom:1028.533296px;}
.y31_c00459{bottom:1028.958576px;}
.y32_c00459{bottom:1029.386616px;}
.y33_c00459{bottom:1029.854004px;}
.y34_c00459{bottom:1030.567248px;}
.y35_c00459{bottom:1031.385480px;}
.y36_c00459{bottom:1031.813976px;}
.y37_c00459{bottom:1032.859596px;}
.y38_c00459{bottom:1033.288092px;}
.y39_c00459{bottom:1033.975416px;}
.y1d_c00459{bottom:1062.991500px;}
.y1e_c00459{bottom:1063.073652px;}
.y1f_c00459{bottom:1063.465908px;}
.y20_c00459{bottom:1063.837488px;}
.y21_c00459{bottom:1064.219988px;}
.y22_c00459{bottom:1064.757912px;}
.y23_c00459{bottom:1065.263496px;}
.y24_c00459{bottom:1065.967440px;}
.y25_c00459{bottom:1066.237668px;}
.y26_c00459{bottom:1066.494660px;}
.y27_c00459{bottom:1067.101692px;}
.y28_c00459{bottom:1067.371524px;}
.y29_c00459{bottom:1067.730924px;}
.y2a_c00459{bottom:1068.311940px;}
.y2b_c00459{bottom:1068.964176px;}
.y1c_c00459{bottom:1088.778000px;}
.yf_c00459{bottom:1100.248173px;}
.y10_c00459{bottom:1101.113151px;}
.y11_c00459{bottom:1101.872373px;}
.y12_c00459{bottom:1102.197204px;}
.y13_c00459{bottom:1102.779747px;}
.y14_c00459{bottom:1103.749536px;}
.y15_c00459{bottom:1104.061995px;}
.y16_c00459{bottom:1104.613203px;}
.y17_c00459{bottom:1105.277079px;}
.y18_c00459{bottom:1105.597689px;}
.y19_c00459{bottom:1106.283330px;}
.y1a_c00459{bottom:1106.713161px;}
.y1b_c00459{bottom:1107.283329px;}
.y3_c00459{bottom:1133.733000px;}
.y4_c00459{bottom:1134.383202px;}
.y5_c00459{bottom:1134.836865px;}
.y6_c00459{bottom:1135.782453px;}
.y7_c00459{bottom:1136.254323px;}
.y8_c00459{bottom:1136.602797px;}
.y9_c00459{bottom:1138.111038px;}
.ya_c00459{bottom:1138.719555px;}
.yb_c00459{bottom:1139.793180px;}
.yc_c00459{bottom:1141.040412px;}
.yd_c00459{bottom:1142.609112px;}
.ye_c00459{bottom:1143.221787px;}
.y1_c00459{bottom:1215.540000px;}
.y2_c00459{bottom:1216.040265px;}
.h5_c00459{height:24.000000px;}
.h6_c00459{height:84.002688px;}
.h2_c00459{height:84.004200px;}
.h3_c00459{height:84.008232px;}
.h4_c00459{height:90.008820px;}
.h8_c00459{height:101.964141px;}
.h7_c00459{height:102.003264px;}
.h9_c00459{height:119.957813px;}
.ha_c00459{height:155.945156px;}
.h0_c00459{height:1264.140000px;}
.h1_c00459{height:1264.500000px;}
.w1_c00459{width:924.750000px;}
.w0_c00459{width:925.020000px;}
.x0_c00459{left:0.000000px;}
.x1c_c00459{left:14.497500px;}
.x1d_c00459{left:24.766500px;}
.x43_c00459{left:35.837365px;}
.x1b_c00459{left:45.900000px;}
.xf_c00459{left:48.186822px;}
.x3_c00459{left:62.851500px;}
.x1e_c00459{left:73.798500px;}
.x39_c00459{left:76.108500px;}
.x4e_c00459{left:82.892776px;}
.x3a_c00459{left:92.016576px;}
.x2a_c00459{left:99.044652px;}
.x44_c00459{left:101.200815px;}
.x4_c00459{left:109.294500px;}
.x1f_c00459{left:120.246000px;}
.x3b_c00459{left:124.950609px;}
.x10_c00459{left:134.618652px;}
.x5_c00459{left:141.699000px;}
.x45_c00459{left:145.783107px;}
.x3c_c00459{left:155.332696px;}
.x2b_c00459{left:162.069132px;}
.x20_c00459{left:168.058500px;}
.x46_c00459{left:200.869196px;}
.x2c_c00459{left:201.957036px;}
.x3d_c00459{left:204.335145px;}
.x6_c00459{left:209.241000px;}
.x11_c00459{left:210.495894px;}
.x36_c00459{left:221.681892px;}
.x4f_c00459{left:228.182922px;}
.x21_c00459{left:235.299000px;}
.x7_c00459{left:242.946000px;}
.x8_c00459{left:267.837000px;}
.x47_c00459{left:276.590979px;}
.x2d_c00459{left:277.827000px;}
.x3e_c00459{left:278.933472px;}
.x22_c00459{left:298.497000px;}
.x12_c00459{left:301.241976px;}
.x2e_c00459{left:310.548192px;}
.x2f_c00459{left:343.426872px;}
.x50_c00459{left:345.802765px;}
.x48_c00459{left:355.745097px;}
.x3f_c00459{left:357.768059px;}
.x9_c00459{left:375.568500px;}
.x30_c00459{left:379.348932px;}
.x40_c00459{left:383.498802px;}
.x23_c00459{left:386.490000px;}
.x37_c00459{left:389.921160px;}
.x13_c00459{left:398.160894px;}
.x51_c00459{left:402.984810px;}
.xa_c00459{left:419.034000px;}
.x24_c00459{left:420.268500px;}
.x14_c00459{left:429.481158px;}
.x31_c00459{left:434.189736px;}
.x1_c00459{left:451.477500px;}
.x52_c00459{left:478.200155px;}
.x15_c00459{left:484.606245px;}
.x49_c00459{left:486.750879px;}
.x41_c00459{left:491.503190px;}
.xb_c00459{left:495.721500px;}
.x32_c00459{left:497.091216px;}
.x2_c00459{left:501.504000px;}
.x4a_c00459{left:520.874329px;}
.x25_c00459{left:528.271500px;}
.x33_c00459{left:530.026896px;}
.x38_c00459{left:544.378980px;}
.x16_c00459{left:550.993962px;}
.x53_c00459{left:553.340628px;}
.x26_c00459{left:562.000500px;}
.x17_c00459{left:583.110768px;}
.xc_c00459{left:584.809500px;}
.x54_c00459{left:588.587765px;}
.x4b_c00459{left:596.537671px;}
.x27_c00459{left:606.925500px;}
.x34_c00459{left:610.476180px;}
.x35_c00459{left:643.411860px;}
.x4c_c00459{left:646.038229px;}
.x18_c00459{left:651.696111px;}
.x42_c00459{left:664.744774px;}
.x28_c00459{left:679.552500px;}
.x19_c00459{left:694.615005px;}
.xd_c00459{left:696.859500px;}
.x55_c00459{left:699.707979px;}
.x4d_c00459{left:722.712208px;}
.xe_c00459{left:740.622000px;}
.x1a_c00459{left:751.630197px;}
.x29_c00459{left:761.082000px;}
@media print{
.v0_c00459{vertical-align:0.000000pt;}
.ls0_c00459{letter-spacing:0.000000pt;}
.ws0_c00459{word-spacing:0.000000pt;}
.fs3_c00459{font-size:21.333333pt;}
.fs4_c00459{font-size:74.669056pt;}
.fs0_c00459{font-size:74.670400pt;}
.fs1_c00459{font-size:74.673984pt;}
.fs2_c00459{font-size:80.007840pt;}
.fs6_c00459{font-size:90.634792pt;}
.fs5_c00459{font-size:90.669568pt;}
.fs7_c00459{font-size:106.629167pt;}
.fs8_c00459{font-size:138.617917pt;}
.y0_c00459{bottom:0.000000pt;}
.y57_c00459{bottom:738.400679pt;}
.y58_c00459{bottom:740.645975pt;}
.y59_c00459{bottom:743.570771pt;}
.y5a_c00459{bottom:744.977975pt;}
.y5b_c00459{bottom:747.755831pt;}
.y5c_c00459{bottom:749.790215pt;}
.y5d_c00459{bottom:752.467595pt;}
.y5e_c00459{bottom:755.141243pt;}
.y5f_c00459{bottom:756.395651pt;}
.y60_c00459{bottom:757.024223pt;}
.y61_c00459{bottom:758.434487pt;}
.y62_c00459{bottom:760.351175pt;}
.y49_c00459{bottom:792.249851pt;}
.y4a_c00459{bottom:792.432455pt;}
.y4b_c00459{bottom:793.297931pt;}
.y4c_c00459{bottom:794.012447pt;}
.y4d_c00459{bottom:794.895371pt;}
.y4e_c00459{bottom:796.109867pt;}
.y4f_c00459{bottom:796.659419pt;}
.y50_c00459{bottom:797.378291pt;}
.y51_c00459{bottom:798.646259pt;}
.y52_c00459{bottom:799.479383pt;}
.y53_c00459{bottom:800.026931pt;}
.y54_c00459{bottom:801.239555pt;}
.y55_c00459{bottom:802.032923pt;}
.y56_c00459{bottom:803.261915pt;}
.y3f_c00459{bottom:816.586667pt;}
.y40_c00459{bottom:817.096235pt;}
.y41_c00459{bottom:818.151179pt;}
.y42_c00459{bottom:819.124379pt;}
.y43_c00459{bottom:820.694027pt;}
.y44_c00459{bottom:823.083563pt;}
.y45_c00459{bottom:825.608795pt;}
.y46_c00459{bottom:826.433003pt;}
.y47_c00459{bottom:829.892603pt;}
.y48_c00459{bottom:835.441883pt;}
.y3a_c00459{bottom:880.841355pt;}
.y3b_c00459{bottom:882.862581pt;}
.y3c_c00459{bottom:883.791744pt;}
.y3d_c00459{bottom:884.806997pt;}
.y3e_c00459{bottom:886.592075pt;}
.y2c_c00459{bottom:911.761845pt;}
.y2d_c00459{bottom:912.185760pt;}
.y2e_c00459{bottom:912.913952pt;}
.y2f_c00459{bottom:913.374944pt;}
.y30_c00459{bottom:914.251819pt;}
.y31_c00459{bottom:914.629845pt;}
.y32_c00459{bottom:915.010325pt;}
.y33_c00459{bottom:915.425781pt;}
.y34_c00459{bottom:916.059776pt;}
.y35_c00459{bottom:916.787093pt;}
.y36_c00459{bottom:917.167979pt;}
.y37_c00459{bottom:918.097419pt;}
.y38_c00459{bottom:918.478304pt;}
.y39_c00459{bottom:919.089259pt;}
.y1d_c00459{bottom:944.881333pt;}
.y1e_c00459{bottom:944.954357pt;}
.y1f_c00459{bottom:945.303029pt;}
.y20_c00459{bottom:945.633323pt;}
.y21_c00459{bottom:945.973323pt;}
.y22_c00459{bottom:946.451477pt;}
.y23_c00459{bottom:946.900885pt;}
.y24_c00459{bottom:947.526613pt;}
.y25_c00459{bottom:947.766816pt;}
.y26_c00459{bottom:947.995253pt;}
.y27_c00459{bottom:948.534837pt;}
.y28_c00459{bottom:948.774688pt;}
.y29_c00459{bottom:949.094155pt;}
.y2a_c00459{bottom:949.610613pt;}
.y2b_c00459{bottom:950.190379pt;}
.y1c_c00459{bottom:967.802667pt;}
.yf_c00459{bottom:977.998376pt;}
.y10_c00459{bottom:978.767245pt;}
.y11_c00459{bottom:979.442109pt;}
.y12_c00459{bottom:979.730848pt;}
.y13_c00459{bottom:980.248664pt;}
.y14_c00459{bottom:981.110699pt;}
.y15_c00459{bottom:981.388440pt;}
.y16_c00459{bottom:981.878403pt;}
.y17_c00459{bottom:982.468515pt;}
.y18_c00459{bottom:982.753501pt;}
.y19_c00459{bottom:983.362960pt;}
.y1a_c00459{bottom:983.745032pt;}
.y1b_c00459{bottom:984.251848pt;}
.y3_c00459{bottom:1007.762667pt;}
.y4_c00459{bottom:1008.340624pt;}
.y5_c00459{bottom:1008.743880pt;}
.y6_c00459{bottom:1009.584403pt;}
.y7_c00459{bottom:1010.003843pt;}
.y8_c00459{bottom:1010.313597pt;}
.y9_c00459{bottom:1011.654256pt;}
.ya_c00459{bottom:1012.195160pt;}
.yb_c00459{bottom:1013.149493pt;}
.yc_c00459{bottom:1014.258144pt;}
.yd_c00459{bottom:1015.652544pt;}
.ye_c00459{bottom:1016.197144pt;}
.y1_c00459{bottom:1080.480000pt;}
.y2_c00459{bottom:1080.924680pt;}
.h5_c00459{height:21.333333pt;}
.h6_c00459{height:74.669056pt;}
.h2_c00459{height:74.670400pt;}
.h3_c00459{height:74.673984pt;}
.h4_c00459{height:80.007840pt;}
.h8_c00459{height:90.634792pt;}
.h7_c00459{height:90.669568pt;}
.h9_c00459{height:106.629167pt;}
.ha_c00459{height:138.617917pt;}
.h0_c00459{height:1123.680000pt;}
.h1_c00459{height:1124.000000pt;}
.w1_c00459{width:822.000000pt;}
.w0_c00459{width:822.240000pt;}
.x0_c00459{left:0.000000pt;}
.x1c_c00459{left:12.886667pt;}
.x1d_c00459{left:22.014667pt;}
.x43_c00459{left:31.855436pt;}
.x1b_c00459{left:40.800000pt;}
.xf_c00459{left:42.832731pt;}
.x3_c00459{left:55.868000pt;}
.x1e_c00459{left:65.598667pt;}
.x39_c00459{left:67.652000pt;}
.x4e_c00459{left:73.682468pt;}
.x3a_c00459{left:81.792512pt;}
.x2a_c00459{left:88.039691pt;}
.x44_c00459{left:89.956280pt;}
.x4_c00459{left:97.150667pt;}
.x1f_c00459{left:106.885333pt;}
.x3b_c00459{left:111.067208pt;}
.x10_c00459{left:119.661024pt;}
.x5_c00459{left:125.954667pt;}
.x45_c00459{left:129.584984pt;}
.x3c_c00459{left:138.073508pt;}
.x2b_c00459{left:144.061451pt;}
.x20_c00459{left:149.385333pt;}
.x46_c00459{left:178.550396pt;}
.x2c_c00459{left:179.517365pt;}
.x3d_c00459{left:181.631240pt;}
.x6_c00459{left:185.992000pt;}
.x11_c00459{left:187.107461pt;}
.x36_c00459{left:197.050571pt;}
.x4f_c00459{left:202.829264pt;}
.x21_c00459{left:209.154667pt;}
.x7_c00459{left:215.952000pt;}
.x8_c00459{left:238.077333pt;}
.x47_c00459{left:245.858648pt;}
.x2d_c00459{left:246.957333pt;}
.x3e_c00459{left:247.940864pt;}
.x22_c00459{left:265.330667pt;}
.x12_c00459{left:267.770645pt;}
.x2e_c00459{left:276.042837pt;}
.x2f_c00459{left:305.268331pt;}
.x50_c00459{left:307.380236pt;}
.x48_c00459{left:316.217864pt;}
.x3f_c00459{left:318.016052pt;}
.x9_c00459{left:333.838667pt;}
.x30_c00459{left:337.199051pt;}
.x40_c00459{left:340.887824pt;}
.x23_c00459{left:343.546667pt;}
.x37_c00459{left:346.596587pt;}
.x13_c00459{left:353.920795pt;}
.x51_c00459{left:358.208720pt;}
.xa_c00459{left:372.474667pt;}
.x24_c00459{left:373.572000pt;}
.x14_c00459{left:381.761029pt;}
.x31_c00459{left:385.946432pt;}
.x1_c00459{left:401.313333pt;}
.x52_c00459{left:425.066804pt;}
.x15_c00459{left:430.761107pt;}
.x49_c00459{left:432.667448pt;}
.x41_c00459{left:436.891724pt;}
.xb_c00459{left:440.641333pt;}
.x32_c00459{left:441.858859pt;}
.x2_c00459{left:445.781333pt;}
.x4a_c00459{left:462.999404pt;}
.x25_c00459{left:469.574667pt;}
.x33_c00459{left:471.135019pt;}
.x38_c00459{left:483.892427pt;}
.x16_c00459{left:489.772411pt;}
.x53_c00459{left:491.858336pt;}
.x26_c00459{left:499.556000pt;}
.x17_c00459{left:518.320683pt;}
.xc_c00459{left:519.830667pt;}
.x54_c00459{left:523.189124pt;}
.x4b_c00459{left:530.255708pt;}
.x27_c00459{left:539.489333pt;}
.x34_c00459{left:542.645493pt;}
.x35_c00459{left:571.921653pt;}
.x4c_c00459{left:574.256204pt;}
.x18_c00459{left:579.285432pt;}
.x42_c00459{left:590.884244pt;}
.x28_c00459{left:604.046667pt;}
.x19_c00459{left:617.435560pt;}
.xd_c00459{left:619.430667pt;}
.x55_c00459{left:621.962648pt;}
.x4d_c00459{left:642.410852pt;}
.xe_c00459{left:658.330667pt;}
.x1a_c00459{left:668.115731pt;}
.x29_c00459{left:676.517333pt;}
}





/* 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_c00460 {
    display:none;
  }
  .loading-indicator_c00460.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00460 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_c00460 { 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_c00460" -> "#page-container .classname_c00460")
 */
.pf_c00460 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00460 { /* 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_c00460.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00460 { /* 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_c00460 { /* 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_c00460 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00460 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00460 {overflow:visible;}
  }
}
.c_c00460 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00460 { /* 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_c00460:after { /* webkit #35443 */
  content: '';
}
.t_c00460:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00460 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 */
}
.__c00460 { /* 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_c00460 { /* info for Javascript */
  display:none;
}
.l_c00460 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00460 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00460 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00460: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_c00460 {
    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_c00460.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00460.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_c00460 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00460{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00460;src:url('chunks/assets/font_fabf4b590f7fb32aea93ffb2.woff2')format("woff");}.ff1_c00460{font-family:ff1_c00460;line-height:1.000000;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;}
.m0_c00460{transform:matrix(0.137315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137315,0.000000,0.000000,0.250000,0,0);}
.m10c_c00460{transform:matrix(0.147015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147015,0.000000,0.000000,0.250000,0,0);}
.m86_c00460{transform:matrix(0.159142,0.000955,-0.001500,0.249996,0,0);-ms-transform:matrix(0.159142,0.000955,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.159142,0.000955,-0.001500,0.249996,0,0);}
.m89_c00460{transform:matrix(0.162692,0.000976,-0.001500,0.249996,0,0);-ms-transform:matrix(0.162692,0.000976,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.162692,0.000976,-0.001500,0.249996,0,0);}
.mc_c00460{transform:matrix(0.166057,0.000996,-0.001500,0.249996,0,0);-ms-transform:matrix(0.166057,0.000996,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.166057,0.000996,-0.001500,0.249996,0,0);}
.m8b_c00460{transform:matrix(0.166407,0.000998,-0.001500,0.249996,0,0);-ms-transform:matrix(0.166407,0.000998,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.166407,0.000998,-0.001500,0.249996,0,0);}
.m13_c00460{transform:matrix(0.169007,0.001014,-0.001500,0.249996,0,0);-ms-transform:matrix(0.169007,0.001014,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.169007,0.001014,-0.001500,0.249996,0,0);}
.m8f_c00460{transform:matrix(0.170052,0.001020,-0.001500,0.249996,0,0);-ms-transform:matrix(0.170052,0.001020,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.170052,0.001020,-0.001500,0.249996,0,0);}
.m88_c00460{transform:matrix(0.170252,0.001022,-0.001500,0.249996,0,0);-ms-transform:matrix(0.170252,0.001022,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.170252,0.001022,-0.001500,0.249996,0,0);}
.m92_c00460{transform:matrix(0.171117,0.001027,-0.001500,0.249996,0,0);-ms-transform:matrix(0.171117,0.001027,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.171117,0.001027,-0.001500,0.249996,0,0);}
.m10_c00460{transform:matrix(0.174212,0.001045,-0.001500,0.249996,0,0);-ms-transform:matrix(0.174212,0.001045,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.174212,0.001045,-0.001500,0.249996,0,0);}
.m5d_c00460{transform:matrix(0.176407,0.001058,-0.001500,0.249996,0,0);-ms-transform:matrix(0.176407,0.001058,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.176407,0.001058,-0.001500,0.249996,0,0);}
.ma8_c00460{transform:matrix(0.176962,0.001062,-0.001500,0.249996,0,0);-ms-transform:matrix(0.176962,0.001062,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.176962,0.001062,-0.001500,0.249996,0,0);}
.m5a_c00460{transform:matrix(0.177017,0.001062,-0.001500,0.249996,0,0);-ms-transform:matrix(0.177017,0.001062,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.177017,0.001062,-0.001500,0.249996,0,0);}
.m9f_c00460{transform:matrix(0.177512,0.001065,-0.001500,0.249996,0,0);-ms-transform:matrix(0.177512,0.001065,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.177512,0.001065,-0.001500,0.249996,0,0);}
.mad_c00460{transform:matrix(0.179742,0.001078,-0.001500,0.249996,0,0);-ms-transform:matrix(0.179742,0.001078,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.179742,0.001078,-0.001500,0.249996,0,0);}
.md0_c00460{transform:matrix(0.180882,0.001085,-0.001500,0.249996,0,0);-ms-transform:matrix(0.180882,0.001085,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.180882,0.001085,-0.001500,0.249996,0,0);}
.m6e_c00460{transform:matrix(0.181882,0.001091,-0.001500,0.249996,0,0);-ms-transform:matrix(0.181882,0.001091,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.181882,0.001091,-0.001500,0.249996,0,0);}
.m90_c00460{transform:matrix(0.182527,0.001095,-0.001500,0.249996,0,0);-ms-transform:matrix(0.182527,0.001095,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.182527,0.001095,-0.001500,0.249996,0,0);}
.m61_c00460{transform:matrix(0.183047,0.001098,-0.001500,0.249996,0,0);-ms-transform:matrix(0.183047,0.001098,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.183047,0.001098,-0.001500,0.249996,0,0);}
.mbc_c00460{transform:matrix(0.183997,0.001104,-0.001500,0.249996,0,0);-ms-transform:matrix(0.183997,0.001104,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.183997,0.001104,-0.001500,0.249996,0,0);}
.mb3_c00460{transform:matrix(0.184172,0.001105,-0.001500,0.249996,0,0);-ms-transform:matrix(0.184172,0.001105,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.184172,0.001105,-0.001500,0.249996,0,0);}
.m5f_c00460{transform:matrix(0.185222,0.001111,-0.001500,0.249996,0,0);-ms-transform:matrix(0.185222,0.001111,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.185222,0.001111,-0.001500,0.249996,0,0);}
.mf_c00460{transform:matrix(0.186437,0.001119,-0.001500,0.249996,0,0);-ms-transform:matrix(0.186437,0.001119,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.186437,0.001119,-0.001500,0.249996,0,0);}
.m70_c00460{transform:matrix(0.187212,0.001123,-0.001500,0.249996,0,0);-ms-transform:matrix(0.187212,0.001123,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.187212,0.001123,-0.001500,0.249996,0,0);}
.m68_c00460{transform:matrix(0.187847,0.001127,-0.001500,0.249996,0,0);-ms-transform:matrix(0.187847,0.001127,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.187847,0.001127,-0.001500,0.249996,0,0);}
.m8d_c00460{transform:matrix(0.187987,0.001128,-0.001500,0.249996,0,0);-ms-transform:matrix(0.187987,0.001128,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.187987,0.001128,-0.001500,0.249996,0,0);}
.m73_c00460{transform:matrix(0.188397,0.001130,-0.001500,0.249996,0,0);-ms-transform:matrix(0.188397,0.001130,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.188397,0.001130,-0.001500,0.249996,0,0);}
.m66_c00460{transform:matrix(0.189007,0.001134,-0.001500,0.249996,0,0);-ms-transform:matrix(0.189007,0.001134,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.189007,0.001134,-0.001500,0.249996,0,0);}
.m2_c00460{transform:matrix(0.189315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189315,0.000000,0.000000,0.250000,0,0);}
.m6b_c00460{transform:matrix(0.190182,0.001141,-0.001500,0.249996,0,0);-ms-transform:matrix(0.190182,0.001141,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.190182,0.001141,-0.001500,0.249996,0,0);}
.m3a_c00460{transform:matrix(0.191972,0.001152,-0.001500,0.249996,0,0);-ms-transform:matrix(0.191972,0.001152,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.191972,0.001152,-0.001500,0.249996,0,0);}
.m75_c00460{transform:matrix(0.192057,0.001152,-0.001500,0.249996,0,0);-ms-transform:matrix(0.192057,0.001152,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.192057,0.001152,-0.001500,0.249996,0,0);}
.mba_c00460{transform:matrix(0.192582,0.001155,-0.001500,0.249996,0,0);-ms-transform:matrix(0.192582,0.001155,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.192582,0.001155,-0.001500,0.249996,0,0);}
.mbd_c00460{transform:matrix(0.192642,0.001156,-0.001500,0.249996,0,0);-ms-transform:matrix(0.192642,0.001156,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.192642,0.001156,-0.001500,0.249996,0,0);}
.m54_c00460{transform:matrix(0.193032,0.001158,-0.001500,0.249996,0,0);-ms-transform:matrix(0.193032,0.001158,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.193032,0.001158,-0.001500,0.249996,0,0);}
.m28_c00460{transform:matrix(0.193377,0.001160,-0.001500,0.249996,0,0);-ms-transform:matrix(0.193377,0.001160,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.193377,0.001160,-0.001500,0.249996,0,0);}
.mb2_c00460{transform:matrix(0.193612,0.001162,-0.001500,0.249996,0,0);-ms-transform:matrix(0.193612,0.001162,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.193612,0.001162,-0.001500,0.249996,0,0);}
.m8c_c00460{transform:matrix(0.193732,0.001162,-0.001500,0.249996,0,0);-ms-transform:matrix(0.193732,0.001162,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.193732,0.001162,-0.001500,0.249996,0,0);}
.m15_c00460{transform:matrix(0.194621,0.001168,-0.001500,0.249996,0,0);-ms-transform:matrix(0.194621,0.001168,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.194621,0.001168,-0.001500,0.249996,0,0);}
.mc9_c00460{transform:matrix(0.195276,0.001172,-0.001500,0.249996,0,0);-ms-transform:matrix(0.195276,0.001172,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.195276,0.001172,-0.001500,0.249996,0,0);}
.ma3_c00460{transform:matrix(0.196171,0.001177,-0.001500,0.249996,0,0);-ms-transform:matrix(0.196171,0.001177,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.196171,0.001177,-0.001500,0.249996,0,0);}
.mce_c00460{transform:matrix(0.196306,0.001178,-0.001500,0.249996,0,0);-ms-transform:matrix(0.196306,0.001178,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.196306,0.001178,-0.001500,0.249996,0,0);}
.m47_c00460{transform:matrix(0.196451,0.001179,-0.001500,0.249996,0,0);-ms-transform:matrix(0.196451,0.001179,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.196451,0.001179,-0.001500,0.249996,0,0);}
.m78_c00460{transform:matrix(0.196731,0.001180,-0.001500,0.249996,0,0);-ms-transform:matrix(0.196731,0.001180,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.196731,0.001180,-0.001500,0.249996,0,0);}
.m87_c00460{transform:matrix(0.197766,0.001187,-0.001500,0.249996,0,0);-ms-transform:matrix(0.197766,0.001187,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.197766,0.001187,-0.001500,0.249996,0,0);}
.maf_c00460{transform:matrix(0.198201,0.001189,-0.001500,0.249996,0,0);-ms-transform:matrix(0.198201,0.001189,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.198201,0.001189,-0.001500,0.249996,0,0);}
.m49_c00460{transform:matrix(0.198541,0.001191,-0.001500,0.249996,0,0);-ms-transform:matrix(0.198541,0.001191,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.198541,0.001191,-0.001500,0.249996,0,0);}
.maa_c00460{transform:matrix(0.198751,0.001193,-0.001500,0.249996,0,0);-ms-transform:matrix(0.198751,0.001193,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.198751,0.001193,-0.001500,0.249996,0,0);}
.m91_c00460{transform:matrix(0.199856,0.001199,-0.001500,0.249996,0,0);-ms-transform:matrix(0.199856,0.001199,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.199856,0.001199,-0.001500,0.249996,0,0);}
.mee_c00460{transform:matrix(0.200356,0.004207,-0.005249,0.249945,0,0);-ms-transform:matrix(0.200356,0.004207,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.200356,0.004207,-0.005249,0.249945,0,0);}
.ma9_c00460{transform:matrix(0.200371,0.001202,-0.001500,0.249996,0,0);-ms-transform:matrix(0.200371,0.001202,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.200371,0.001202,-0.001500,0.249996,0,0);}
.md5_c00460{transform:matrix(0.200396,0.001202,-0.001500,0.249996,0,0);-ms-transform:matrix(0.200396,0.001202,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.200396,0.001202,-0.001500,0.249996,0,0);}
.med_c00460{transform:matrix(0.200856,0.001205,-0.001500,0.249996,0,0);-ms-transform:matrix(0.200856,0.001205,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.200856,0.001205,-0.001500,0.249996,0,0);}
.m8e_c00460{transform:matrix(0.200931,0.001206,-0.001500,0.249996,0,0);-ms-transform:matrix(0.200931,0.001206,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.200931,0.001206,-0.001500,0.249996,0,0);}
.m50_c00460{transform:matrix(0.200976,0.001206,-0.001500,0.249996,0,0);-ms-transform:matrix(0.200976,0.001206,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.200976,0.001206,-0.001500,0.249996,0,0);}
.m14_c00460{transform:matrix(0.202441,0.001215,-0.001500,0.249996,0,0);-ms-transform:matrix(0.202441,0.001215,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.202441,0.001215,-0.001500,0.249996,0,0);}
.mb4_c00460{transform:matrix(0.202501,0.001215,-0.001500,0.249996,0,0);-ms-transform:matrix(0.202501,0.001215,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.202501,0.001215,-0.001500,0.249996,0,0);}
.mb0_c00460{transform:matrix(0.202521,0.001215,-0.001500,0.249996,0,0);-ms-transform:matrix(0.202521,0.001215,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.202521,0.001215,-0.001500,0.249996,0,0);}
.m6_c00460{transform:matrix(0.202891,0.001217,-0.001500,0.249996,0,0);-ms-transform:matrix(0.202891,0.001217,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.202891,0.001217,-0.001500,0.249996,0,0);}
.m35_c00460{transform:matrix(0.203546,0.001221,-0.001500,0.249996,0,0);-ms-transform:matrix(0.203546,0.001221,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.203546,0.001221,-0.001500,0.249996,0,0);}
.mf0_c00460{transform:matrix(0.204340,0.004291,-0.005249,0.249945,0,0);-ms-transform:matrix(0.204340,0.004291,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.204340,0.004291,-0.005249,0.249945,0,0);}
.m4c_c00460{transform:matrix(0.204456,0.001227,-0.001500,0.249996,0,0);-ms-transform:matrix(0.204456,0.001227,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.204456,0.001227,-0.001500,0.249996,0,0);}
.mcb_c00460{transform:matrix(0.204591,0.001228,-0.001500,0.249996,0,0);-ms-transform:matrix(0.204591,0.001228,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.204591,0.001228,-0.001500,0.249996,0,0);}
.m19_c00460{transform:matrix(0.204811,0.001229,-0.001500,0.249996,0,0);-ms-transform:matrix(0.204811,0.001229,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.204811,0.001229,-0.001500,0.249996,0,0);}
.md_c00460{transform:matrix(0.204931,0.001230,-0.001500,0.249996,0,0);-ms-transform:matrix(0.204931,0.001230,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.204931,0.001230,-0.001500,0.249996,0,0);}
.m1c_c00460{transform:matrix(0.205381,0.001232,-0.001500,0.249996,0,0);-ms-transform:matrix(0.205381,0.001232,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.205381,0.001232,-0.001500,0.249996,0,0);}
.m4e_c00460{transform:matrix(0.205496,0.001233,-0.001500,0.249996,0,0);-ms-transform:matrix(0.205496,0.001233,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.205496,0.001233,-0.001500,0.249996,0,0);}
.me_c00460{transform:matrix(0.206031,0.001236,-0.001500,0.249996,0,0);-ms-transform:matrix(0.206031,0.001236,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.206031,0.001236,-0.001500,0.249996,0,0);}
.m16_c00460{transform:matrix(0.206091,0.001237,-0.001500,0.249996,0,0);-ms-transform:matrix(0.206091,0.001237,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.206091,0.001237,-0.001500,0.249996,0,0);}
.mb7_c00460{transform:matrix(0.206256,0.001238,-0.001500,0.249996,0,0);-ms-transform:matrix(0.206256,0.001238,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.206256,0.001238,-0.001500,0.249996,0,0);}
.mae_c00460{transform:matrix(0.206951,0.001242,-0.001500,0.249996,0,0);-ms-transform:matrix(0.206951,0.001242,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.206951,0.001242,-0.001500,0.249996,0,0);}
.m11_c00460{transform:matrix(0.207226,0.001243,-0.001500,0.249996,0,0);-ms-transform:matrix(0.207226,0.001243,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.207226,0.001243,-0.001500,0.249996,0,0);}
.m12_c00460{transform:matrix(0.207891,0.001247,-0.001500,0.249996,0,0);-ms-transform:matrix(0.207891,0.001247,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.207891,0.001247,-0.001500,0.249996,0,0);}
.m24_c00460{transform:matrix(0.208011,0.001248,-0.001500,0.249996,0,0);-ms-transform:matrix(0.208011,0.001248,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.208011,0.001248,-0.001500,0.249996,0,0);}
.m3c_c00460{transform:matrix(0.208301,0.001250,-0.001500,0.249996,0,0);-ms-transform:matrix(0.208301,0.001250,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.208301,0.001250,-0.001500,0.249996,0,0);}
.md1_c00460{transform:matrix(0.208706,0.001252,-0.001500,0.249996,0,0);-ms-transform:matrix(0.208706,0.001252,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.208706,0.001252,-0.001500,0.249996,0,0);}
.m1e_c00460{transform:matrix(0.209296,0.001256,-0.001500,0.249996,0,0);-ms-transform:matrix(0.209296,0.001256,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.209296,0.001256,-0.001500,0.249996,0,0);}
.m46_c00460{transform:matrix(0.209546,0.001257,-0.001500,0.249996,0,0);-ms-transform:matrix(0.209546,0.001257,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.209546,0.001257,-0.001500,0.249996,0,0);}
.mdb_c00460{transform:matrix(0.209591,0.001258,-0.001500,0.249996,0,0);-ms-transform:matrix(0.209591,0.001258,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.209591,0.001258,-0.001500,0.249996,0,0);}
.mb9_c00460{transform:matrix(0.209876,0.001259,-0.001500,0.249996,0,0);-ms-transform:matrix(0.209876,0.001259,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.209876,0.001259,-0.001500,0.249996,0,0);}
.m31_c00460{transform:matrix(0.209931,0.001260,-0.001500,0.249996,0,0);-ms-transform:matrix(0.209931,0.001260,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.209931,0.001260,-0.001500,0.249996,0,0);}
.ma6_c00460{transform:matrix(0.210016,0.001260,-0.001500,0.249996,0,0);-ms-transform:matrix(0.210016,0.001260,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.210016,0.001260,-0.001500,0.249996,0,0);}
.mde_c00460{transform:matrix(0.210606,0.001264,-0.001500,0.249996,0,0);-ms-transform:matrix(0.210606,0.001264,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.210606,0.001264,-0.001500,0.249996,0,0);}
.mca_c00460{transform:matrix(0.211011,0.001266,-0.001500,0.249996,0,0);-ms-transform:matrix(0.211011,0.001266,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.211011,0.001266,-0.001500,0.249996,0,0);}
.m81_c00460{transform:matrix(0.211211,0.001267,-0.001500,0.249996,0,0);-ms-transform:matrix(0.211211,0.001267,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.211211,0.001267,-0.001500,0.249996,0,0);}
.m60_c00460{transform:matrix(0.211806,0.001271,-0.001500,0.249996,0,0);-ms-transform:matrix(0.211806,0.001271,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.211806,0.001271,-0.001500,0.249996,0,0);}
.m5b_c00460{transform:matrix(0.211816,0.001271,-0.001500,0.249996,0,0);-ms-transform:matrix(0.211816,0.001271,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.211816,0.001271,-0.001500,0.249996,0,0);}
.m2e_c00460{transform:matrix(0.211891,0.001271,-0.001500,0.249996,0,0);-ms-transform:matrix(0.211891,0.001271,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.211891,0.001271,-0.001500,0.249996,0,0);}
.mcc_c00460{transform:matrix(0.211961,0.001272,-0.001500,0.249996,0,0);-ms-transform:matrix(0.211961,0.001272,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.211961,0.001272,-0.001500,0.249996,0,0);}
.m5c_c00460{transform:matrix(0.212306,0.001274,-0.001500,0.249996,0,0);-ms-transform:matrix(0.212306,0.001274,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.212306,0.001274,-0.001500,0.249996,0,0);}
.mac_c00460{transform:matrix(0.213551,0.001281,-0.001500,0.249996,0,0);-ms-transform:matrix(0.213551,0.001281,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.213551,0.001281,-0.001500,0.249996,0,0);}
.md4_c00460{transform:matrix(0.214571,0.001287,-0.001500,0.249996,0,0);-ms-transform:matrix(0.214571,0.001287,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.214571,0.001287,-0.001500,0.249996,0,0);}
.mcd_c00460{transform:matrix(0.214836,0.001289,-0.001500,0.249996,0,0);-ms-transform:matrix(0.214836,0.001289,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.214836,0.001289,-0.001500,0.249996,0,0);}
.mcf_c00460{transform:matrix(0.214866,0.001289,-0.001500,0.249996,0,0);-ms-transform:matrix(0.214866,0.001289,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.214866,0.001289,-0.001500,0.249996,0,0);}
.m59_c00460{transform:matrix(0.215341,0.001292,-0.001500,0.249996,0,0);-ms-transform:matrix(0.215341,0.001292,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.215341,0.001292,-0.001500,0.249996,0,0);}
.m7a_c00460{transform:matrix(0.215751,0.001295,-0.001500,0.249996,0,0);-ms-transform:matrix(0.215751,0.001295,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.215751,0.001295,-0.001500,0.249996,0,0);}
.m63_c00460{transform:matrix(0.215906,0.001295,-0.001500,0.249996,0,0);-ms-transform:matrix(0.215906,0.001295,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.215906,0.001295,-0.001500,0.249996,0,0);}
.m5e_c00460{transform:matrix(0.215936,0.001296,-0.001500,0.249996,0,0);-ms-transform:matrix(0.215936,0.001296,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.215936,0.001296,-0.001500,0.249996,0,0);}
.m4b_c00460{transform:matrix(0.216096,0.001297,-0.001500,0.249996,0,0);-ms-transform:matrix(0.216096,0.001297,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.216096,0.001297,-0.001500,0.249996,0,0);}
.m20_c00460{transform:matrix(0.216621,0.001300,-0.001500,0.249996,0,0);-ms-transform:matrix(0.216621,0.001300,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.216621,0.001300,-0.001500,0.249996,0,0);}
.m3e_c00460{transform:matrix(0.216881,0.001301,-0.001500,0.249996,0,0);-ms-transform:matrix(0.216881,0.001301,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.216881,0.001301,-0.001500,0.249996,0,0);}
.me1_c00460{transform:matrix(0.217091,0.001303,-0.001500,0.249996,0,0);-ms-transform:matrix(0.217091,0.001303,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.217091,0.001303,-0.001500,0.249996,0,0);}
.mab_c00460{transform:matrix(0.217201,0.001303,-0.001500,0.249996,0,0);-ms-transform:matrix(0.217201,0.001303,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.217201,0.001303,-0.001500,0.249996,0,0);}
.mec_c00460{transform:matrix(0.218211,0.001309,-0.001500,0.249996,0,0);-ms-transform:matrix(0.218211,0.001309,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.218211,0.001309,-0.001500,0.249996,0,0);}
.m6c_c00460{transform:matrix(0.218751,0.001313,-0.001500,0.249996,0,0);-ms-transform:matrix(0.218751,0.001313,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.218751,0.001313,-0.001500,0.249996,0,0);}
.md2_c00460{transform:matrix(0.218831,0.001313,-0.001500,0.249996,0,0);-ms-transform:matrix(0.218831,0.001313,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.218831,0.001313,-0.001500,0.249996,0,0);}
.m33_c00460{transform:matrix(0.218876,0.001313,-0.001500,0.249996,0,0);-ms-transform:matrix(0.218876,0.001313,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.218876,0.001313,-0.001500,0.249996,0,0);}
.m57_c00460{transform:matrix(0.218936,0.001314,-0.001500,0.249996,0,0);-ms-transform:matrix(0.218936,0.001314,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.218936,0.001314,-0.001500,0.249996,0,0);}
.m6d_c00460{transform:matrix(0.219146,0.001315,-0.001500,0.249996,0,0);-ms-transform:matrix(0.219146,0.001315,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.219146,0.001315,-0.001500,0.249996,0,0);}
.m6a_c00460{transform:matrix(0.219326,0.001316,-0.001500,0.249996,0,0);-ms-transform:matrix(0.219326,0.001316,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.219326,0.001316,-0.001500,0.249996,0,0);}
.m23_c00460{transform:matrix(0.219666,0.001318,-0.001500,0.249996,0,0);-ms-transform:matrix(0.219666,0.001318,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.219666,0.001318,-0.001500,0.249996,0,0);}
.m38_c00460{transform:matrix(0.219726,0.001318,-0.001500,0.249996,0,0);-ms-transform:matrix(0.219726,0.001318,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.219726,0.001318,-0.001500,0.249996,0,0);}
.meb_c00460{transform:matrix(0.219791,0.001319,-0.001500,0.249996,0,0);-ms-transform:matrix(0.219791,0.001319,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.219791,0.001319,-0.001500,0.249996,0,0);}
.mc2_c00460{transform:matrix(0.219796,0.001319,-0.001500,0.249996,0,0);-ms-transform:matrix(0.219796,0.001319,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.219796,0.001319,-0.001500,0.249996,0,0);}
.m3_c00460{transform:matrix(0.220050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220050,0.000000,0.000000,0.250000,0,0);}
.m7c_c00460{transform:matrix(0.220186,0.001321,-0.001500,0.249996,0,0);-ms-transform:matrix(0.220186,0.001321,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.220186,0.001321,-0.001500,0.249996,0,0);}
.m18_c00460{transform:matrix(0.220211,0.001321,-0.001500,0.249996,0,0);-ms-transform:matrix(0.220211,0.001321,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.220211,0.001321,-0.001500,0.249996,0,0);}
.m3b_c00460{transform:matrix(0.220226,0.001321,-0.001500,0.249996,0,0);-ms-transform:matrix(0.220226,0.001321,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.220226,0.001321,-0.001500,0.249996,0,0);}
.mbb_c00460{transform:matrix(0.220521,0.001323,-0.001500,0.249996,0,0);-ms-transform:matrix(0.220521,0.001323,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.220521,0.001323,-0.001500,0.249996,0,0);}
.ma4_c00460{transform:matrix(0.220876,0.001325,-0.001500,0.249996,0,0);-ms-transform:matrix(0.220876,0.001325,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.220876,0.001325,-0.001500,0.249996,0,0);}
.m4_c00460{transform:matrix(0.220886,0.001325,-0.001500,0.249996,0,0);-ms-transform:matrix(0.220886,0.001325,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.220886,0.001325,-0.001500,0.249996,0,0);}
.m7b_c00460{transform:matrix(0.221136,0.001327,-0.001500,0.249996,0,0);-ms-transform:matrix(0.221136,0.001327,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.221136,0.001327,-0.001500,0.249996,0,0);}
.m76_c00460{transform:matrix(0.221176,0.001327,-0.001500,0.249996,0,0);-ms-transform:matrix(0.221176,0.001327,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.221176,0.001327,-0.001500,0.249996,0,0);}
.m10a_c00460{transform:matrix(0.221205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221205,0.000000,0.000000,0.250000,0,0);}
.m5_c00460{transform:matrix(0.222486,0.001335,-0.001500,0.249996,0,0);-ms-transform:matrix(0.222486,0.001335,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.222486,0.001335,-0.001500,0.249996,0,0);}
.m62_c00460{transform:matrix(0.222661,0.001336,-0.001500,0.249996,0,0);-ms-transform:matrix(0.222661,0.001336,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.222661,0.001336,-0.001500,0.249996,0,0);}
.m84_c00460{transform:matrix(0.222736,0.001336,-0.001500,0.249996,0,0);-ms-transform:matrix(0.222736,0.001336,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.222736,0.001336,-0.001500,0.249996,0,0);}
.m108_c00460{transform:matrix(0.223270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223270,0.000000,0.000000,0.250000,0,0);}
.m1a_c00460{transform:matrix(0.223856,0.001343,-0.001500,0.249996,0,0);-ms-transform:matrix(0.223856,0.001343,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.223856,0.001343,-0.001500,0.249996,0,0);}
.m52_c00460{transform:matrix(0.224066,0.001344,-0.001500,0.249996,0,0);-ms-transform:matrix(0.224066,0.001344,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.224066,0.001344,-0.001500,0.249996,0,0);}
.m45_c00460{transform:matrix(0.225326,0.001352,-0.001500,0.249996,0,0);-ms-transform:matrix(0.225326,0.001352,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.225326,0.001352,-0.001500,0.249996,0,0);}
.m82_c00460{transform:matrix(0.225461,0.001353,-0.001500,0.249996,0,0);-ms-transform:matrix(0.225461,0.001353,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.225461,0.001353,-0.001500,0.249996,0,0);}
.m9_c00460{transform:matrix(0.225501,0.001353,-0.001500,0.249996,0,0);-ms-transform:matrix(0.225501,0.001353,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.225501,0.001353,-0.001500,0.249996,0,0);}
.m74_c00460{transform:matrix(0.225841,0.001355,-0.001500,0.249996,0,0);-ms-transform:matrix(0.225841,0.001355,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.225841,0.001355,-0.001500,0.249996,0,0);}
.m79_c00460{transform:matrix(0.225876,0.001355,-0.001500,0.249996,0,0);-ms-transform:matrix(0.225876,0.001355,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.225876,0.001355,-0.001500,0.249996,0,0);}
.m2a_c00460{transform:matrix(0.226031,0.001356,-0.001500,0.249996,0,0);-ms-transform:matrix(0.226031,0.001356,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.226031,0.001356,-0.001500,0.249996,0,0);}
.m110_c00460{transform:matrix(0.226434,0.001585,-0.001750,0.249994,0,0);-ms-transform:matrix(0.226434,0.001585,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.226434,0.001585,-0.001750,0.249994,0,0);}
.mb5_c00460{transform:matrix(0.226511,0.001359,-0.001500,0.249996,0,0);-ms-transform:matrix(0.226511,0.001359,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.226511,0.001359,-0.001500,0.249996,0,0);}
.m39_c00460{transform:matrix(0.226936,0.001362,-0.001500,0.249996,0,0);-ms-transform:matrix(0.226936,0.001362,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.226936,0.001362,-0.001500,0.249996,0,0);}
.m3f_c00460{transform:matrix(0.226981,0.001362,-0.001500,0.249996,0,0);-ms-transform:matrix(0.226981,0.001362,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.226981,0.001362,-0.001500,0.249996,0,0);}
.m8a_c00460{transform:matrix(0.227711,0.001366,-0.001500,0.249996,0,0);-ms-transform:matrix(0.227711,0.001366,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.227711,0.001366,-0.001500,0.249996,0,0);}
.m72_c00460{transform:matrix(0.227836,0.001367,-0.001500,0.249996,0,0);-ms-transform:matrix(0.227836,0.001367,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.227836,0.001367,-0.001500,0.249996,0,0);}
.mf9_c00460{transform:matrix(0.227935,0.004787,-0.005249,0.249945,0,0);-ms-transform:matrix(0.227935,0.004787,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.227935,0.004787,-0.005249,0.249945,0,0);}
.m112_c00460{transform:matrix(0.228154,0.001597,-0.001750,0.249994,0,0);-ms-transform:matrix(0.228154,0.001597,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.228154,0.001597,-0.001750,0.249994,0,0);}
.m77_c00460{transform:matrix(0.228211,0.001369,-0.001500,0.249996,0,0);-ms-transform:matrix(0.228211,0.001369,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.228211,0.001369,-0.001500,0.249996,0,0);}
.mb1_c00460{transform:matrix(0.228321,0.001370,-0.001500,0.249996,0,0);-ms-transform:matrix(0.228321,0.001370,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.228321,0.001370,-0.001500,0.249996,0,0);}
.m40_c00460{transform:matrix(0.228416,0.001370,-0.001500,0.249996,0,0);-ms-transform:matrix(0.228416,0.001370,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.228416,0.001370,-0.001500,0.249996,0,0);}
.ma7_c00460{transform:matrix(0.228441,0.001371,-0.001500,0.249996,0,0);-ms-transform:matrix(0.228441,0.001371,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.228441,0.001371,-0.001500,0.249996,0,0);}
.m2c_c00460{transform:matrix(0.228626,0.001372,-0.001500,0.249996,0,0);-ms-transform:matrix(0.228626,0.001372,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.228626,0.001372,-0.001500,0.249996,0,0);}
.m2d_c00460{transform:matrix(0.228996,0.001374,-0.001500,0.249996,0,0);-ms-transform:matrix(0.228996,0.001374,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.228996,0.001374,-0.001500,0.249996,0,0);}
.mbe_c00460{transform:matrix(0.229291,0.001376,-0.001500,0.249996,0,0);-ms-transform:matrix(0.229291,0.001376,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.229291,0.001376,-0.001500,0.249996,0,0);}
.m43_c00460{transform:matrix(0.229721,0.001378,-0.001500,0.249996,0,0);-ms-transform:matrix(0.229721,0.001378,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.229721,0.001378,-0.001500,0.249996,0,0);}
.m56_c00460{transform:matrix(0.229796,0.001379,-0.001500,0.249996,0,0);-ms-transform:matrix(0.229796,0.001379,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.229796,0.001379,-0.001500,0.249996,0,0);}
.m48_c00460{transform:matrix(0.229821,0.001379,-0.001500,0.249996,0,0);-ms-transform:matrix(0.229821,0.001379,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.229821,0.001379,-0.001500,0.249996,0,0);}
.m44_c00460{transform:matrix(0.230006,0.001380,-0.001500,0.249996,0,0);-ms-transform:matrix(0.230006,0.001380,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.230006,0.001380,-0.001500,0.249996,0,0);}
.m2f_c00460{transform:matrix(0.230216,0.001381,-0.001500,0.249996,0,0);-ms-transform:matrix(0.230216,0.001381,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.230216,0.001381,-0.001500,0.249996,0,0);}
.ma2_c00460{transform:matrix(0.230236,0.001381,-0.001500,0.249996,0,0);-ms-transform:matrix(0.230236,0.001381,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.230236,0.001381,-0.001500,0.249996,0,0);}
.mf7_c00460{transform:matrix(0.230824,0.004847,-0.005249,0.249945,0,0);-ms-transform:matrix(0.230824,0.004847,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.230824,0.004847,-0.005249,0.249945,0,0);}
.mc5_c00460{transform:matrix(0.230891,0.001385,-0.001500,0.249996,0,0);-ms-transform:matrix(0.230891,0.001385,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.230891,0.001385,-0.001500,0.249996,0,0);}
.md7_c00460{transform:matrix(0.230911,0.001385,-0.001500,0.249996,0,0);-ms-transform:matrix(0.230911,0.001385,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.230911,0.001385,-0.001500,0.249996,0,0);}
.m7_c00460{transform:matrix(0.231266,0.001388,-0.001500,0.249996,0,0);-ms-transform:matrix(0.231266,0.001388,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.231266,0.001388,-0.001500,0.249996,0,0);}
.m107_c00460{transform:matrix(0.231505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231505,0.000000,0.000000,0.250000,0,0);}
.m4a_c00460{transform:matrix(0.231891,0.001391,-0.001500,0.249996,0,0);-ms-transform:matrix(0.231891,0.001391,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.231891,0.001391,-0.001500,0.249996,0,0);}
.ma1_c00460{transform:matrix(0.232006,0.001392,-0.001500,0.249996,0,0);-ms-transform:matrix(0.232006,0.001392,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.232006,0.001392,-0.001500,0.249996,0,0);}
.m67_c00460{transform:matrix(0.232151,0.001393,-0.001500,0.249996,0,0);-ms-transform:matrix(0.232151,0.001393,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.232151,0.001393,-0.001500,0.249996,0,0);}
.m1b_c00460{transform:matrix(0.233151,0.001399,-0.001500,0.249996,0,0);-ms-transform:matrix(0.233151,0.001399,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.233151,0.001399,-0.001500,0.249996,0,0);}
.mfc_c00460{transform:matrix(0.233344,0.004900,-0.005249,0.249945,0,0);-ms-transform:matrix(0.233344,0.004900,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.233344,0.004900,-0.005249,0.249945,0,0);}
.m25_c00460{transform:matrix(0.233371,0.001400,-0.001500,0.249996,0,0);-ms-transform:matrix(0.233371,0.001400,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.233371,0.001400,-0.001500,0.249996,0,0);}
.m69_c00460{transform:matrix(0.233691,0.001402,-0.001500,0.249996,0,0);-ms-transform:matrix(0.233691,0.001402,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.233691,0.001402,-0.001500,0.249996,0,0);}
.m85_c00460{transform:matrix(0.233751,0.001403,-0.001500,0.249996,0,0);-ms-transform:matrix(0.233751,0.001403,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.233751,0.001403,-0.001500,0.249996,0,0);}
.m10f_c00460{transform:matrix(0.233954,0.001638,-0.001750,0.249994,0,0);-ms-transform:matrix(0.233954,0.001638,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.233954,0.001638,-0.001750,0.249994,0,0);}
.ma5_c00460{transform:matrix(0.233986,0.001404,-0.001500,0.249996,0,0);-ms-transform:matrix(0.233986,0.001404,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.233986,0.001404,-0.001500,0.249996,0,0);}
.m71_c00460{transform:matrix(0.234386,0.001406,-0.001500,0.249996,0,0);-ms-transform:matrix(0.234386,0.001406,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.234386,0.001406,-0.001500,0.249996,0,0);}
.mea_c00460{transform:matrix(0.234531,0.001407,-0.001500,0.249996,0,0);-ms-transform:matrix(0.234531,0.001407,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.234531,0.001407,-0.001500,0.249996,0,0);}
.mf4_c00460{transform:matrix(0.234768,0.004930,-0.005249,0.249945,0,0);-ms-transform:matrix(0.234768,0.004930,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.234768,0.004930,-0.005249,0.249945,0,0);}
.mb8_c00460{transform:matrix(0.234846,0.001409,-0.001500,0.249996,0,0);-ms-transform:matrix(0.234846,0.001409,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.234846,0.001409,-0.001500,0.249996,0,0);}
.m6f_c00460{transform:matrix(0.235011,0.001410,-0.001500,0.249996,0,0);-ms-transform:matrix(0.235011,0.001410,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.235011,0.001410,-0.001500,0.249996,0,0);}
.ma0_c00460{transform:matrix(0.235576,0.001413,-0.001500,0.249996,0,0);-ms-transform:matrix(0.235576,0.001413,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.235576,0.001413,-0.001500,0.249996,0,0);}
.m32_c00460{transform:matrix(0.235641,0.001414,-0.001500,0.249996,0,0);-ms-transform:matrix(0.235641,0.001414,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.235641,0.001414,-0.001500,0.249996,0,0);}
.m55_c00460{transform:matrix(0.236066,0.001416,-0.001500,0.249996,0,0);-ms-transform:matrix(0.236066,0.001416,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.236066,0.001416,-0.001500,0.249996,0,0);}
.m4d_c00460{transform:matrix(0.236501,0.001419,-0.001500,0.249996,0,0);-ms-transform:matrix(0.236501,0.001419,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.236501,0.001419,-0.001500,0.249996,0,0);}
.m51_c00460{transform:matrix(0.236541,0.001419,-0.001500,0.249996,0,0);-ms-transform:matrix(0.236541,0.001419,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.236541,0.001419,-0.001500,0.249996,0,0);}
.m1f_c00460{transform:matrix(0.236896,0.001421,-0.001500,0.249996,0,0);-ms-transform:matrix(0.236896,0.001421,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.236896,0.001421,-0.001500,0.249996,0,0);}
.m4f_c00460{transform:matrix(0.237166,0.001423,-0.001500,0.249996,0,0);-ms-transform:matrix(0.237166,0.001423,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.237166,0.001423,-0.001500,0.249996,0,0);}
.mb6_c00460{transform:matrix(0.237986,0.001428,-0.001500,0.249996,0,0);-ms-transform:matrix(0.237986,0.001428,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.237986,0.001428,-0.001500,0.249996,0,0);}
.mdf_c00460{transform:matrix(0.238531,0.001431,-0.001500,0.249996,0,0);-ms-transform:matrix(0.238531,0.001431,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.238531,0.001431,-0.001500,0.249996,0,0);}
.me7_c00460{transform:matrix(0.238851,0.001433,-0.001500,0.249996,0,0);-ms-transform:matrix(0.238851,0.001433,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.238851,0.001433,-0.001500,0.249996,0,0);}
.m34_c00460{transform:matrix(0.239121,0.001435,-0.001500,0.249996,0,0);-ms-transform:matrix(0.239121,0.001435,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.239121,0.001435,-0.001500,0.249996,0,0);}
.m3d_c00460{transform:matrix(0.239486,0.001437,-0.001500,0.249996,0,0);-ms-transform:matrix(0.239486,0.001437,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.239486,0.001437,-0.001500,0.249996,0,0);}
.md3_c00460{transform:matrix(0.239741,0.001438,-0.001500,0.249996,0,0);-ms-transform:matrix(0.239741,0.001438,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.239741,0.001438,-0.001500,0.249996,0,0);}
.m36_c00460{transform:matrix(0.239776,0.001439,-0.001500,0.249996,0,0);-ms-transform:matrix(0.239776,0.001439,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.239776,0.001439,-0.001500,0.249996,0,0);}
.mf1_c00460{transform:matrix(0.240092,0.005042,-0.005249,0.249945,0,0);-ms-transform:matrix(0.240092,0.005042,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.240092,0.005042,-0.005249,0.249945,0,0);}
.m17_c00460{transform:matrix(0.240556,0.001443,-0.001500,0.249996,0,0);-ms-transform:matrix(0.240556,0.001443,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.240556,0.001443,-0.001500,0.249996,0,0);}
.md6_c00460{transform:matrix(0.240726,0.001444,-0.001500,0.249996,0,0);-ms-transform:matrix(0.240726,0.001444,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.240726,0.001444,-0.001500,0.249996,0,0);}
.m1d_c00460{transform:matrix(0.241226,0.001447,-0.001500,0.249996,0,0);-ms-transform:matrix(0.241226,0.001447,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.241226,0.001447,-0.001500,0.249996,0,0);}
.m41_c00460{transform:matrix(0.241551,0.001449,-0.001500,0.249996,0,0);-ms-transform:matrix(0.241551,0.001449,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.241551,0.001449,-0.001500,0.249996,0,0);}
.m80_c00460{transform:matrix(0.242076,0.001452,-0.001500,0.249996,0,0);-ms-transform:matrix(0.242076,0.001452,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.242076,0.001452,-0.001500,0.249996,0,0);}
.m9e_c00460{transform:matrix(0.242381,0.001454,-0.001500,0.249996,0,0);-ms-transform:matrix(0.242381,0.001454,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.242381,0.001454,-0.001500,0.249996,0,0);}
.mfb_c00460{transform:matrix(0.243001,0.005103,-0.005249,0.249945,0,0);-ms-transform:matrix(0.243001,0.005103,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.243001,0.005103,-0.005249,0.249945,0,0);}
.m30_c00460{transform:matrix(0.243031,0.001458,-0.001500,0.249996,0,0);-ms-transform:matrix(0.243031,0.001458,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.243031,0.001458,-0.001500,0.249996,0,0);}
.md9_c00460{transform:matrix(0.243466,0.001461,-0.001500,0.249996,0,0);-ms-transform:matrix(0.243466,0.001461,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.243466,0.001461,-0.001500,0.249996,0,0);}
.me3_c00460{transform:matrix(0.243491,0.001461,-0.001500,0.249996,0,0);-ms-transform:matrix(0.243491,0.001461,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.243491,0.001461,-0.001500,0.249996,0,0);}
.m11a_c00460{transform:matrix(0.243564,0.001705,-0.001750,0.249994,0,0);-ms-transform:matrix(0.243564,0.001705,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.243564,0.001705,-0.001750,0.249994,0,0);}
.m99_c00460{transform:matrix(0.243566,0.001461,-0.001500,0.249996,0,0);-ms-transform:matrix(0.243566,0.001461,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.243566,0.001461,-0.001500,0.249996,0,0);}
.mf6_c00460{transform:matrix(0.243691,0.005118,-0.005249,0.249945,0,0);-ms-transform:matrix(0.243691,0.005118,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.243691,0.005118,-0.005249,0.249945,0,0);}
.m114_c00460{transform:matrix(0.243719,0.001706,-0.001750,0.249994,0,0);-ms-transform:matrix(0.243719,0.001706,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.243719,0.001706,-0.001750,0.249994,0,0);}
.md8_c00460{transform:matrix(0.243741,0.001462,-0.001500,0.249996,0,0);-ms-transform:matrix(0.243741,0.001462,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.243741,0.001462,-0.001500,0.249996,0,0);}
.m26_c00460{transform:matrix(0.243831,0.001463,-0.001500,0.249996,0,0);-ms-transform:matrix(0.243831,0.001463,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.243831,0.001463,-0.001500,0.249996,0,0);}
.m7f_c00460{transform:matrix(0.245181,0.001471,-0.001500,0.249996,0,0);-ms-transform:matrix(0.245181,0.001471,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.245181,0.001471,-0.001500,0.249996,0,0);}
.mdc_c00460{transform:matrix(0.245381,0.001472,-0.001500,0.249996,0,0);-ms-transform:matrix(0.245381,0.001472,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.245381,0.001472,-0.001500,0.249996,0,0);}
.m27_c00460{transform:matrix(0.245681,0.001474,-0.001500,0.249996,0,0);-ms-transform:matrix(0.245681,0.001474,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.245681,0.001474,-0.001500,0.249996,0,0);}
.mfa_c00460{transform:matrix(0.246066,0.005167,-0.005249,0.249945,0,0);-ms-transform:matrix(0.246066,0.005167,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.246066,0.005167,-0.005249,0.249945,0,0);}
.m29_c00460{transform:matrix(0.246841,0.001481,-0.001500,0.249996,0,0);-ms-transform:matrix(0.246841,0.001481,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.246841,0.001481,-0.001500,0.249996,0,0);}
.m115_c00460{transform:matrix(0.247394,0.001732,-0.001750,0.249994,0,0);-ms-transform:matrix(0.247394,0.001732,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.247394,0.001732,-0.001750,0.249994,0,0);}
.m22_c00460{transform:matrix(0.247401,0.001484,-0.001500,0.249996,0,0);-ms-transform:matrix(0.247401,0.001484,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.247401,0.001484,-0.001500,0.249996,0,0);}
.m7d_c00460{transform:matrix(0.248376,0.001490,-0.001500,0.249996,0,0);-ms-transform:matrix(0.248376,0.001490,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.248376,0.001490,-0.001500,0.249996,0,0);}
.m94_c00460{transform:matrix(0.248821,0.001493,-0.001500,0.249996,0,0);-ms-transform:matrix(0.248821,0.001493,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.248821,0.001493,-0.001500,0.249996,0,0);}
.m83_c00460{transform:matrix(0.249301,0.001496,-0.001500,0.249996,0,0);-ms-transform:matrix(0.249301,0.001496,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.249301,0.001496,-0.001500,0.249996,0,0);}
.m109_c00460{transform:matrix(0.249790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249790,0.000000,0.000000,0.250000,0,0);}
.mfd_c00460{transform:matrix(0.250215,0.005255,-0.005249,0.249945,0,0);-ms-transform:matrix(0.250215,0.005255,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.250215,0.005255,-0.005249,0.249945,0,0);}
.mff_c00460{transform:matrix(0.250615,0.005263,-0.005249,0.249945,0,0);-ms-transform:matrix(0.250615,0.005263,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.250615,0.005263,-0.005249,0.249945,0,0);}
.m104_c00460{transform:matrix(0.251050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251050,0.000000,0.000000,0.250000,0,0);}
.m118_c00460{transform:matrix(0.252474,0.001767,-0.001750,0.249994,0,0);-ms-transform:matrix(0.252474,0.001767,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.252474,0.001767,-0.001750,0.249994,0,0);}
.m111_c00460{transform:matrix(0.252834,0.001770,-0.001750,0.249994,0,0);-ms-transform:matrix(0.252834,0.001770,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.252834,0.001770,-0.001750,0.249994,0,0);}
.m53_c00460{transform:matrix(0.253060,0.001518,-0.001500,0.249996,0,0);-ms-transform:matrix(0.253060,0.001518,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.253060,0.001518,-0.001500,0.249996,0,0);}
.mdd_c00460{transform:matrix(0.253105,0.001519,-0.001500,0.249996,0,0);-ms-transform:matrix(0.253105,0.001519,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.253105,0.001519,-0.001500,0.249996,0,0);}
.mf5_c00460{transform:matrix(0.253554,0.005325,-0.005249,0.249945,0,0);-ms-transform:matrix(0.253554,0.005325,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.253554,0.005325,-0.005249,0.249945,0,0);}
.m58_c00460{transform:matrix(0.253810,0.001523,-0.001500,0.249996,0,0);-ms-transform:matrix(0.253810,0.001523,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.253810,0.001523,-0.001500,0.249996,0,0);}
.m7e_c00460{transform:matrix(0.253965,0.001524,-0.001500,0.249996,0,0);-ms-transform:matrix(0.253965,0.001524,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.253965,0.001524,-0.001500,0.249996,0,0);}
.ma_c00460{transform:matrix(0.254455,0.001527,-0.001500,0.249996,0,0);-ms-transform:matrix(0.254455,0.001527,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.254455,0.001527,-0.001500,0.249996,0,0);}
.m37_c00460{transform:matrix(0.254505,0.001527,-0.001500,0.249996,0,0);-ms-transform:matrix(0.254505,0.001527,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.254505,0.001527,-0.001500,0.249996,0,0);}
.m10b_c00460{transform:matrix(0.254775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254775,0.000000,0.000000,0.250000,0,0);}
.mda_c00460{transform:matrix(0.255575,0.001533,-0.001500,0.249996,0,0);-ms-transform:matrix(0.255575,0.001533,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.255575,0.001533,-0.001500,0.249996,0,0);}
.mef_c00460{transform:matrix(0.255779,0.005371,-0.005249,0.249945,0,0);-ms-transform:matrix(0.255779,0.005371,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.255779,0.005371,-0.005249,0.249945,0,0);}
.me4_c00460{transform:matrix(0.255790,0.001535,-0.001500,0.249996,0,0);-ms-transform:matrix(0.255790,0.001535,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.255790,0.001535,-0.001500,0.249996,0,0);}
.mb_c00460{transform:matrix(0.256985,0.001542,-0.001500,0.249996,0,0);-ms-transform:matrix(0.256985,0.001542,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.256985,0.001542,-0.001500,0.249996,0,0);}
.mf8_c00460{transform:matrix(0.257348,0.005404,-0.005249,0.249945,0,0);-ms-transform:matrix(0.257348,0.005404,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.257348,0.005404,-0.005249,0.249945,0,0);}
.m21_c00460{transform:matrix(0.257830,0.001547,-0.001500,0.249996,0,0);-ms-transform:matrix(0.257830,0.001547,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.257830,0.001547,-0.001500,0.249996,0,0);}
.mfe_c00460{transform:matrix(0.257853,0.005415,-0.005249,0.249945,0,0);-ms-transform:matrix(0.257853,0.005415,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.257853,0.005415,-0.005249,0.249945,0,0);}
.m113_c00460{transform:matrix(0.258574,0.001810,-0.001750,0.249994,0,0);-ms-transform:matrix(0.258574,0.001810,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.258574,0.001810,-0.001750,0.249994,0,0);}
.mc1_c00460{transform:matrix(0.258625,0.001552,-0.001500,0.249996,0,0);-ms-transform:matrix(0.258625,0.001552,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.258625,0.001552,-0.001500,0.249996,0,0);}
.me2_c00460{transform:matrix(0.258655,0.001552,-0.001500,0.249996,0,0);-ms-transform:matrix(0.258655,0.001552,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.258655,0.001552,-0.001500,0.249996,0,0);}
.m9d_c00460{transform:matrix(0.259455,0.001557,-0.001500,0.249996,0,0);-ms-transform:matrix(0.259455,0.001557,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.259455,0.001557,-0.001500,0.249996,0,0);}
.m95_c00460{transform:matrix(0.260215,0.001561,-0.001500,0.249996,0,0);-ms-transform:matrix(0.260215,0.001561,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.260215,0.001561,-0.001500,0.249996,0,0);}
.m10e_c00460{transform:matrix(0.260429,0.001823,-0.001750,0.249994,0,0);-ms-transform:matrix(0.260429,0.001823,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.260429,0.001823,-0.001750,0.249994,0,0);}
.me0_c00460{transform:matrix(0.260635,0.001564,-0.001500,0.249996,0,0);-ms-transform:matrix(0.260635,0.001564,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.260635,0.001564,-0.001500,0.249996,0,0);}
.m97_c00460{transform:matrix(0.261200,0.001567,-0.001500,0.249996,0,0);-ms-transform:matrix(0.261200,0.001567,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.261200,0.001567,-0.001500,0.249996,0,0);}
.m106_c00460{transform:matrix(0.261245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261245,0.000000,0.000000,0.250000,0,0);}
.m8_c00460{transform:matrix(0.261835,0.001571,-0.001500,0.249996,0,0);-ms-transform:matrix(0.261835,0.001571,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.261835,0.001571,-0.001500,0.249996,0,0);}
.mc7_c00460{transform:matrix(0.261840,0.001571,-0.001500,0.249996,0,0);-ms-transform:matrix(0.261840,0.001571,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.261840,0.001571,-0.001500,0.249996,0,0);}
.me8_c00460{transform:matrix(0.262570,0.001575,-0.001500,0.249996,0,0);-ms-transform:matrix(0.262570,0.001575,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.262570,0.001575,-0.001500,0.249996,0,0);}
.me5_c00460{transform:matrix(0.263565,0.001581,-0.001500,0.249996,0,0);-ms-transform:matrix(0.263565,0.001581,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.263565,0.001581,-0.001500,0.249996,0,0);}
.m117_c00460{transform:matrix(0.263864,0.001847,-0.001750,0.249994,0,0);-ms-transform:matrix(0.263864,0.001847,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.263864,0.001847,-0.001750,0.249994,0,0);}
.me9_c00460{transform:matrix(0.264360,0.001586,-0.001500,0.249996,0,0);-ms-transform:matrix(0.264360,0.001586,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.264360,0.001586,-0.001500,0.249996,0,0);}
.m11d_c00460{transform:matrix(0.266263,0.001864,-0.001750,0.249994,0,0);-ms-transform:matrix(0.266263,0.001864,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.266263,0.001864,-0.001750,0.249994,0,0);}
.me6_c00460{transform:matrix(0.266880,0.001601,-0.001500,0.249996,0,0);-ms-transform:matrix(0.266880,0.001601,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.266880,0.001601,-0.001500,0.249996,0,0);}
.mc4_c00460{transform:matrix(0.267905,0.001607,-0.001500,0.249996,0,0);-ms-transform:matrix(0.267905,0.001607,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.267905,0.001607,-0.001500,0.249996,0,0);}
.m10d_c00460{transform:matrix(0.268143,0.001877,-0.001750,0.249994,0,0);-ms-transform:matrix(0.268143,0.001877,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.268143,0.001877,-0.001750,0.249994,0,0);}
.mc6_c00460{transform:matrix(0.269370,0.001616,-0.001500,0.249996,0,0);-ms-transform:matrix(0.269370,0.001616,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.269370,0.001616,-0.001500,0.249996,0,0);}
.m119_c00460{transform:matrix(0.270888,0.001896,-0.001750,0.249994,0,0);-ms-transform:matrix(0.270888,0.001896,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.270888,0.001896,-0.001750,0.249994,0,0);}
.m65_c00460{transform:matrix(0.272170,0.001633,-0.001500,0.249996,0,0);-ms-transform:matrix(0.272170,0.001633,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.272170,0.001633,-0.001500,0.249996,0,0);}
.m11c_c00460{transform:matrix(0.273168,0.001912,-0.001750,0.249994,0,0);-ms-transform:matrix(0.273168,0.001912,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.273168,0.001912,-0.001750,0.249994,0,0);}
.mf3_c00460{transform:matrix(0.279208,0.005863,-0.005249,0.249945,0,0);-ms-transform:matrix(0.279208,0.005863,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.279208,0.005863,-0.005249,0.249945,0,0);}
.mc8_c00460{transform:matrix(0.280145,0.001681,-0.001500,0.249996,0,0);-ms-transform:matrix(0.280145,0.001681,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.280145,0.001681,-0.001500,0.249996,0,0);}
.m2b_c00460{transform:matrix(0.280380,0.001682,-0.001500,0.249996,0,0);-ms-transform:matrix(0.280380,0.001682,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.280380,0.001682,-0.001500,0.249996,0,0);}
.m11b_c00460{transform:matrix(0.281578,0.001971,-0.001750,0.249994,0,0);-ms-transform:matrix(0.281578,0.001971,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.281578,0.001971,-0.001750,0.249994,0,0);}
.m1_c00460{transform:matrix(0.283080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283080,0.000000,0.000000,0.250000,0,0);}
.mc3_c00460{transform:matrix(0.286830,0.001721,-0.001500,0.249996,0,0);-ms-transform:matrix(0.286830,0.001721,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.286830,0.001721,-0.001500,0.249996,0,0);}
.m9b_c00460{transform:matrix(0.288110,0.001729,-0.001500,0.249996,0,0);-ms-transform:matrix(0.288110,0.001729,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.288110,0.001729,-0.001500,0.249996,0,0);}
.m93_c00460{transform:matrix(0.297600,0.001786,-0.001500,0.249996,0,0);-ms-transform:matrix(0.297600,0.001786,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.297600,0.001786,-0.001500,0.249996,0,0);}
.m98_c00460{transform:matrix(0.299065,0.001794,-0.001500,0.249996,0,0);-ms-transform:matrix(0.299065,0.001794,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.299065,0.001794,-0.001500,0.249996,0,0);}
.m105_c00460{transform:matrix(0.299295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299295,0.000000,0.000000,0.250000,0,0);}
.m9c_c00460{transform:matrix(0.301085,0.001807,-0.001500,0.249996,0,0);-ms-transform:matrix(0.301085,0.001807,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.301085,0.001807,-0.001500,0.249996,0,0);}
.m96_c00460{transform:matrix(0.302510,0.001815,-0.001500,0.249996,0,0);-ms-transform:matrix(0.302510,0.001815,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.302510,0.001815,-0.001500,0.249996,0,0);}
.m116_c00460{transform:matrix(0.311522,0.002181,-0.001750,0.249994,0,0);-ms-transform:matrix(0.311522,0.002181,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.311522,0.002181,-0.001750,0.249994,0,0);}
.mc0_c00460{transform:matrix(0.316974,0.001902,-0.001500,0.249996,0,0);-ms-transform:matrix(0.316974,0.001902,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.316974,0.001902,-0.001500,0.249996,0,0);}
.m42_c00460{transform:matrix(0.318239,0.001909,-0.001500,0.249996,0,0);-ms-transform:matrix(0.318239,0.001909,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.318239,0.001909,-0.001500,0.249996,0,0);}
.m9a_c00460{transform:matrix(0.321824,0.001931,-0.001500,0.249996,0,0);-ms-transform:matrix(0.321824,0.001931,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.321824,0.001931,-0.001500,0.249996,0,0);}
.mbf_c00460{transform:matrix(0.325894,0.001955,-0.001500,0.249996,0,0);-ms-transform:matrix(0.325894,0.001955,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.325894,0.001955,-0.001500,0.249996,0,0);}
.mf2_c00460{transform:matrix(0.336631,0.007069,-0.005249,0.249945,0,0);-ms-transform:matrix(0.336631,0.007069,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.336631,0.007069,-0.005249,0.249945,0,0);}
.m64_c00460{transform:matrix(0.463997,0.002784,-0.001500,0.249996,0,0);-ms-transform:matrix(0.463997,0.002784,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.463997,0.002784,-0.001500,0.249996,0,0);}
.m102_c00460{transform:matrix(0.509740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509740,0.000000,0.000000,0.250000,0,0);}
.m101_c00460{transform:matrix(0.852125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.852125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.852125,0.000000,0.000000,0.250000,0,0);}
.m100_c00460{transform:matrix(1.367975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.367975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.367975,0.000000,0.000000,0.250000,0,0);}
.m103_c00460{transform:matrix(2.532915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.532915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.532915,0.000000,0.000000,0.250000,0,0);}
.v0_c00460{vertical-align:0.000000px;}
.ls0_c00460{letter-spacing:0.000000px;}
.sc__c00460{text-shadow:none;}
.sc0_c00460{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__c00460{-webkit-text-stroke:0px transparent;}
.sc0_c00460{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00460{word-spacing:0.000000px;}
._0_c00460{width:44.606642px;}
.fc0_c00460{color:transparent;}
.fs9_c00460{font-size:24.000000px;}
.fs6_c00460{font-size:66.001188px;}
.fsc_c00460{font-size:66.001617px;}
.fsa_c00460{font-size:72.000000px;}
.fs7_c00460{font-size:72.001296px;}
.fsb_c00460{font-size:72.001764px;}
.fs2_c00460{font-size:78.001404px;}
.fs8_c00460{font-size:78.017197px;}
.fs0_c00460{font-size:84.000000px;}
.fs4_c00460{font-size:84.001512px;}
.fs1_c00460{font-size:90.000000px;}
.fs5_c00460{font-size:90.001620px;}
.fs3_c00460{font-size:96.001728px;}
.y0_c00460{bottom:0.000000px;}
.y114_c00460{bottom:94.773090px;}
.y115_c00460{bottom:97.916028px;}
.y116_c00460{bottom:98.668362px;}
.y117_c00460{bottom:99.406835px;}
.y118_c00460{bottom:99.796916px;}
.y119_c00460{bottom:100.347179px;}
.y11a_c00460{bottom:101.466075px;}
.y11b_c00460{bottom:102.420417px;}
.y113_c00460{bottom:127.257333px;}
.y112_c00460{bottom:127.648605px;}
.y111_c00460{bottom:128.113692px;}
.y110_c00460{bottom:128.344283px;}
.y10f_c00460{bottom:128.499315px;}
.y10e_c00460{bottom:128.801747px;}
.y10d_c00460{bottom:129.115529px;}
.y10c_c00460{bottom:129.644687px;}
.y10b_c00460{bottom:130.410000px;}
.y10a_c00460{bottom:165.721500px;}
.y109_c00460{bottom:193.491000px;}
.y108_c00460{bottom:209.587228px;}
.y107_c00460{bottom:212.157188px;}
.y106_c00460{bottom:213.807851px;}
.y105_c00460{bottom:214.743905px;}
.y104_c00460{bottom:216.581300px;}
.y103_c00460{bottom:218.197848px;}
.y102_c00460{bottom:218.884233px;}
.y101_c00460{bottom:221.400673px;}
.y100_c00460{bottom:222.753000px;}
.yff_c00460{bottom:248.099019px;}
.yfe_c00460{bottom:250.209110px;}
.yfd_c00460{bottom:251.395431px;}
.yfc_c00460{bottom:252.101441px;}
.yfb_c00460{bottom:254.406359px;}
.yfa_c00460{bottom:255.807983px;}
.yf9_c00460{bottom:256.481137px;}
.yf8_c00460{bottom:258.807098px;}
.yf7_c00460{bottom:259.476000px;}
.yf5_c00460{bottom:293.801256px;}
.yf4_c00460{bottom:293.801307px;}
.yf6_c00460{bottom:293.801505px;}
.yf3_c00460{bottom:318.667551px;}
.yf2_c00460{bottom:319.684635px;}
.yf1_c00460{bottom:320.685009px;}
.yf0_c00460{bottom:321.344907px;}
.yef_c00460{bottom:322.342377px;}
.yee_c00460{bottom:322.827840px;}
.yed_c00460{bottom:323.994972px;}
.yec_c00460{bottom:324.817359px;}
.yeb_c00460{bottom:325.472781px;}
.yea_c00460{bottom:326.450151px;}
.ye9_c00460{bottom:326.947326px;}
.ye8_c00460{bottom:328.084902px;}
.ye7_c00460{bottom:328.590051px;}
.ye6_c00460{bottom:352.211259px;}
.ye5_c00460{bottom:353.829210px;}
.ye4_c00460{bottom:355.419792px;}
.ye3_c00460{bottom:356.002503px;}
.ye2_c00460{bottom:357.825300px;}
.ye1_c00460{bottom:359.404971px;}
.ye0_c00460{bottom:360.775293px;}
.ydf_c00460{bottom:361.362822px;}
.yde_c00460{bottom:361.783875px;}
.ydd_c00460{bottom:363.140508px;}
.ydc_c00460{bottom:363.718509px;}
.ydb_c00460{bottom:364.499361px;}
.yda_c00460{bottom:390.716736px;}
.yd9_c00460{bottom:391.741389px;}
.yd8_c00460{bottom:392.226834px;}
.yd7_c00460{bottom:393.061698px;}
.yd6_c00460{bottom:393.551808px;}
.yd5_c00460{bottom:394.706535px;}
.yd4_c00460{bottom:395.061852px;}
.yd3_c00460{bottom:396.049866px;}
.yd2_c00460{bottom:397.029915px;}
.yd1_c00460{bottom:397.855125px;}
.yd0_c00460{bottom:399.470622px;}
.ycf_c00460{bottom:400.138215px;}
.yce_c00460{bottom:427.588977px;}
.ycd_c00460{bottom:428.044887px;}
.ycc_c00460{bottom:428.740680px;}
.ycb_c00460{bottom:429.015438px;}
.yca_c00460{bottom:429.639618px;}
.yc9_c00460{bottom:431.482032px;}
.yc8_c00460{bottom:431.736093px;}
.yc7_c00460{bottom:432.268059px;}
.yc6_c00460{bottom:461.233494px;}
.yc5_c00460{bottom:462.527418px;}
.yc4_c00460{bottom:464.139420px;}
.yc3_c00460{bottom:464.921661px;}
.yc2_c00460{bottom:465.731805px;}
.yc1_c00460{bottom:467.586120px;}
.yc0_c00460{bottom:468.370131px;}
.ybf_c00460{bottom:469.186278px;}
.ybe_c00460{bottom:471.792306px;}
.ybd_c00460{bottom:472.606449px;}
.ybc_c00460{bottom:476.274342px;}
.ybb_c00460{bottom:477.362142px;}
.yba_c00460{bottom:497.798322px;}
.yb9_c00460{bottom:498.288405px;}
.yb8_c00460{bottom:498.960591px;}
.yb7_c00460{bottom:500.970714px;}
.yb6_c00460{bottom:501.933738px;}
.yb5_c00460{bottom:502.293630px;}
.yb4_c00460{bottom:503.423880px;}
.yb3_c00460{bottom:503.926251px;}
.yb2_c00460{bottom:505.233957px;}
.yb1_c00460{bottom:505.906386px;}
.yb0_c00460{bottom:506.566140px;}
.yaf_c00460{bottom:507.376185px;}
.yae_c00460{bottom:507.869199px;}
.yad_c00460{bottom:534.040245px;}
.yac_c00460{bottom:534.475101px;}
.yab_c00460{bottom:535.266333px;}
.yaa_c00460{bottom:535.911585px;}
.ya9_c00460{bottom:536.351028px;}
.ya8_c00460{bottom:537.015498px;}
.ya7_c00460{bottom:537.900633px;}
.ya6_c00460{bottom:538.996344px;}
.ya5_c00460{bottom:539.222226px;}
.ya4_c00460{bottom:540.537783px;}
.ya3_c00460{bottom:570.829164px;}
.ya2_c00460{bottom:572.166570px;}
.ya1_c00460{bottom:573.281838px;}
.ya0_c00460{bottom:573.847170px;}
.y9f_c00460{bottom:574.407801px;}
.y9e_c00460{bottom:576.105165px;}
.y9d_c00460{bottom:576.647613px;}
.y9c_c00460{bottom:578.523252px;}
.y9b_c00460{bottom:579.083991px;}
.y9a_c00460{bottom:579.652002px;}
.y99_c00460{bottom:581.850099px;}
.y98_c00460{bottom:606.417105px;}
.y97_c00460{bottom:607.117719px;}
.y96_c00460{bottom:607.422354px;}
.y95_c00460{bottom:607.719003px;}
.y94_c00460{bottom:608.424312px;}
.y93_c00460{bottom:609.012924px;}
.y92_c00460{bottom:609.306417px;}
.y91_c00460{bottom:609.904464px;}
.y90_c00460{bottom:610.193217px;}
.y8f_c00460{bottom:610.994826px;}
.y8e_c00460{bottom:611.182431px;}
.y8d_c00460{bottom:611.485395px;}
.y8c_c00460{bottom:612.069528px;}
.y8b_c00460{bottom:612.361095px;}
.y8a_c00460{bottom:642.108903px;}
.y89_c00460{bottom:642.604119px;}
.y88_c00460{bottom:643.468863px;}
.y87_c00460{bottom:643.950375px;}
.y86_c00460{bottom:644.312997px;}
.y85_c00460{bottom:645.039708px;}
.y84_c00460{bottom:645.779268px;}
.y83_c00460{bottom:646.981395px;}
.y82_c00460{bottom:647.337813px;}
.y81_c00460{bottom:648.424170px;}
.y80_c00460{bottom:648.786792px;}
.y7f_c00460{bottom:649.271046px;}
.y7e_c00460{bottom:649.621314px;}
.y7d_c00460{bottom:679.264215px;}
.y7c_c00460{bottom:679.430493px;}
.y7b_c00460{bottom:679.819107px;}
.y7a_c00460{bottom:680.097408px;}
.y79_c00460{bottom:680.258799px;}
.y78_c00460{bottom:680.755977px;}
.y77_c00460{bottom:680.918970px;}
.y76_c00460{bottom:681.309150px;}
.y75_c00460{bottom:681.803106px;}
.y74_c00460{bottom:681.964359px;}
.y73_c00460{bottom:682.560498px;}
.y72_c00460{bottom:714.052821px;}
.y71_c00460{bottom:714.659580px;}
.y70_c00460{bottom:715.276887px;}
.y6f_c00460{bottom:715.639743px;}
.y6e_c00460{bottom:716.365032px;}
.y6d_c00460{bottom:717.334485px;}
.y6c_c00460{bottom:717.707628px;}
.y6b_c00460{bottom:718.681677px;}
.y6a_c00460{bottom:719.028672px;}
.y69_c00460{bottom:719.391654px;}
.y68_c00460{bottom:719.761875px;}
.y67_c00460{bottom:720.362070px;}
.y61_c00460{bottom:751.939389px;}
.y5f_c00460{bottom:751.939671px;}
.y60_c00460{bottom:751.939680px;}
.y62_c00460{bottom:751.939749px;}
.y5e_c00460{bottom:751.939782px;}
.y63_c00460{bottom:751.939998px;}
.y65_c00460{bottom:751.940067px;}
.y64_c00460{bottom:751.940478px;}
.y66_c00460{bottom:751.940787px;}
.y5d_c00460{bottom:787.178754px;}
.y52_c00460{bottom:787.178949px;}
.y5c_c00460{bottom:787.179165px;}
.y53_c00460{bottom:787.179189px;}
.y56_c00460{bottom:787.179498px;}
.y5b_c00460{bottom:787.179756px;}
.y54_c00460{bottom:787.179789px;}
.y55_c00460{bottom:787.180029px;}
.y57_c00460{bottom:787.180218px;}
.y5a_c00460{bottom:787.180416px;}
.y58_c00460{bottom:787.180527px;}
.y59_c00460{bottom:787.180887px;}
.y48_c00460{bottom:822.514107px;}
.y47_c00460{bottom:822.514458px;}
.y49_c00460{bottom:822.514476px;}
.y4c_c00460{bottom:822.514743px;}
.y4a_c00460{bottom:822.514785px;}
.y4b_c00460{bottom:822.515094px;}
.y4d_c00460{bottom:822.515343px;}
.y4e_c00460{bottom:822.515532px;}
.y50_c00460{bottom:822.515790px;}
.y51_c00460{bottom:822.515910px;}
.y4f_c00460{bottom:822.516201px;}
.y43_c00460{bottom:858.600108px;}
.y44_c00460{bottom:858.600648px;}
.y41_c00460{bottom:858.600690px;}
.y46_c00460{bottom:858.600726px;}
.y3d_c00460{bottom:858.600783px;}
.y42_c00460{bottom:858.600819px;}
.y45_c00460{bottom:858.600957px;}
.y40_c00460{bottom:858.601341px;}
.y3e_c00460{bottom:858.601392px;}
.y3f_c00460{bottom:858.601581px;}
.y39_c00460{bottom:895.590129px;}
.y32_c00460{bottom:895.590195px;}
.y34_c00460{bottom:895.590333px;}
.y30_c00460{bottom:895.590357px;}
.y31_c00460{bottom:895.590426px;}
.y3b_c00460{bottom:895.590558px;}
.y38_c00460{bottom:895.590840px;}
.y3a_c00460{bottom:895.590849px;}
.y33_c00460{bottom:895.590864px;}
.y35_c00460{bottom:895.590882px;}
.y37_c00460{bottom:895.590891px;}
.y36_c00460{bottom:895.591122px;}
.y3c_c00460{bottom:895.591167px;}
.y2f_c00460{bottom:930.715656px;}
.y2e_c00460{bottom:931.171002px;}
.y2d_c00460{bottom:931.313454px;}
.y2c_c00460{bottom:931.833591px;}
.y2b_c00460{bottom:931.971201px;}
.y2a_c00460{bottom:932.165700px;}
.y29_c00460{bottom:932.567469px;}
.y28_c00460{bottom:932.761869px;}
.y27_c00460{bottom:933.226827px;}
.y26_c00460{bottom:933.554058px;}
.y25_c00460{bottom:933.750024px;}
.y24_c00460{bottom:933.949248px;}
.y23_c00460{bottom:934.470771px;}
.y18_c00460{bottom:965.981535px;}
.y19_c00460{bottom:965.981844px;}
.y17_c00460{bottom:965.981886px;}
.y16_c00460{bottom:965.982006px;}
.y1a_c00460{bottom:965.982204px;}
.y1b_c00460{bottom:965.982684px;}
.y1c_c00460{bottom:965.983044px;}
.y1d_c00460{bottom:965.983593px;}
.y1e_c00460{bottom:965.983833px;}
.y1f_c00460{bottom:965.984202px;}
.y20_c00460{bottom:965.984922px;}
.y22_c00460{bottom:965.985180px;}
.y21_c00460{bottom:965.985471px;}
.y10_c00460{bottom:1000.183344px;}
.y14_c00460{bottom:1000.183902px;}
.y15_c00460{bottom:1000.183911px;}
.y13_c00460{bottom:1000.184022px;}
.yf_c00460{bottom:1000.184055px;}
.y11_c00460{bottom:1000.184064px;}
.y12_c00460{bottom:1000.184613px;}
.ye_c00460{bottom:1000.184646px;}
.yc_c00460{bottom:1000.184757px;}
.yd_c00460{bottom:1000.184997px;}
.yb_c00460{bottom:1036.986813px;}
.ya_c00460{bottom:1037.592729px;}
.y9_c00460{bottom:1037.913516px;}
.y8_c00460{bottom:1038.773727px;}
.y7_c00460{bottom:1039.107537px;}
.y6_c00460{bottom:1039.303476px;}
.y5_c00460{bottom:1039.569129px;}
.y4_c00460{bottom:1039.770000px;}
.y3_c00460{bottom:1110.510000px;}
.y2_c00460{bottom:1146.010500px;}
.y1_c00460{bottom:1202.856000px;}
.hc_c00460{height:24.000000px;}
.h9_c00460{height:66.001188px;}
.hf_c00460{height:66.001617px;}
.hd_c00460{height:72.000000px;}
.ha_c00460{height:72.001296px;}
.he_c00460{height:72.001764px;}
.h4_c00460{height:78.001404px;}
.hb_c00460{height:78.017197px;}
.h7_c00460{height:78.799418px;}
.h2_c00460{height:84.000000px;}
.h6_c00460{height:84.001512px;}
.h3_c00460{height:90.000000px;}
.h8_c00460{height:90.001620px;}
.h5_c00460{height:96.001728px;}
.h0_c00460{height:1264.140000px;}
.h1_c00460{height:1264.500000px;}
.w1_c00460{width:924.750000px;}
.w0_c00460{width:925.020000px;}
.x0_c00460{left:0.000000px;}
.x31_c00460{left:132.567570px;}
.xd_c00460{left:133.917102px;}
.x46_c00460{left:135.100227px;}
.x69_c00460{left:136.473000px;}
.x3f_c00460{left:165.681339px;}
.xe_c00460{left:167.128299px;}
.x61_c00460{left:168.278385px;}
.x26_c00460{left:177.929643px;}
.x5a_c00460{left:179.087073px;}
.x37_c00460{left:198.719451px;}
.x56_c00460{left:199.952910px;}
.x6b_c00460{left:203.310000px;}
.x32_c00460{left:207.628770px;}
.x40_c00460{left:209.639016px;}
.x5d_c00460{left:210.889245px;}
.x1d_c00460{left:220.524321px;}
.x27_c00460{left:232.470105px;}
.x5_c00460{left:242.118000px;}
.x62_c00460{left:244.120290px;}
.x6d_c00460{left:245.160000px;}
.x1e_c00460{left:253.728321px;}
.x6c_c00460{left:255.150000px;}
.x47_c00460{left:264.441195px;}
.x38_c00460{left:265.681863px;}
.x33_c00460{left:267.569430px;}
.x6_c00460{left:275.596500px;}
.x15_c00460{left:276.754032px;}
.x1f_c00460{left:286.389321px;}
.x4a_c00460{left:287.391096px;}
.x2d_c00460{left:297.269514px;}
.x4e_c00460{left:309.753834px;}
.x7_c00460{left:319.872000px;}
.x6e_c00460{left:321.300000px;}
.x2e_c00460{left:331.560747px;}
.x64_c00460{left:333.728148px;}
.x4_c00460{left:341.010000px;}
.x5e_c00460{left:342.332286px;}
.x8_c00460{left:352.528500px;}
.x39_c00460{left:363.153873px;}
.x52_c00460{left:364.663668px;}
.x73_c00460{left:365.734500px;}
.x3_c00460{left:374.490000px;}
.xf_c00460{left:385.293147px;}
.x65_c00460{left:387.241500px;}
.x28_c00460{left:396.361509px;}
.x6f_c00460{left:397.980000px;}
.x1_c00460{left:406.350000px;}
.x9_c00460{left:408.163500px;}
.x16_c00460{left:418.507644px;}
.x70_c00460{left:420.390000px;}
.x2_c00460{left:427.140000px;}
.x29_c00460{left:429.572706px;}
.x74_c00460{left:431.086500px;}
.x10_c00460{left:440.913645px;}
.x20_c00460{left:450.820821px;}
.x71_c00460{left:452.790000px;}
.x34_c00460{left:462.781959px;}
.x75_c00460{left:464.028000px;}
.x11_c00460{left:473.044806px;}
.x2a_c00460{left:484.113168px;}
.x4b_c00460{left:485.527344px;}
.x17_c00460{left:494.918898px;}
.x5b_c00460{left:496.834428px;}
.x42_c00460{left:506.639073px;}
.x72_c00460{left:508.680000px;}
.x21_c00460{left:517.782321px;}
.x18_c00460{left:528.130095px;}
.x4f_c00460{left:529.778454px;}
.x53_c00460{left:539.925741px;}
.x22_c00460{left:550.198821px;}
.xa_c00460{left:551.532000px;}
.x2f_c00460{left:560.524482px;}
.x3a_c00460{left:561.878028px;}
.x43_c00460{left:571.989894px;}
.x23_c00460{left:573.133821px;}
.x57_c00460{left:574.433919px;}
.x12_c00460{left:583.207275px;}
.x76_c00460{left:586.365000px;}
.x3b_c00460{left:593.739171px;}
.x19_c00460{left:594.820998px;}
.x4c_c00460{left:596.010198px;}
.xb_c00460{left:604.996500px;}
.x35_c00460{left:606.155625px;}
.x5f_c00460{left:607.528197px;}
.x2b_c00460{left:615.874911px;}
.x54_c00460{left:617.219898px;}
.x1a_c00460{left:626.952159px;}
.x66_c00460{left:629.418000px;}
.x48_c00460{left:639.110463px;}
.x6a_c00460{left:641.035500px;}
.x3c_c00460{left:649.089660px;}
.x44_c00460{left:650.289981px;}
.x24_c00460{left:659.823321px;}
.x58_c00460{left:661.398375px;}
.x13_c00460{left:672.308979px;}
.x1b_c00460{left:683.112684px;}
.x67_c00460{left:685.909500px;}
.x2c_c00460{left:694.176228px;}
.x3d_c00460{left:704.443230px;}
.xc_c00460{left:705.982500px;}
.x45_c00460{left:717.002775px;}
.x59_c00460{left:718.382691px;}
.x1c_c00460{left:727.662786px;}
.x4d_c00460{left:739.670751px;}
.x30_c00460{left:748.178241px;}
.x55_c00460{left:750.769980px;}
.x25_c00460{left:759.456321px;}
.x36_c00460{left:760.598187px;}
.x5c_c00460{left:762.786564px;}
.x41_c00460{left:771.817659px;}
.x50_c00460{left:772.820832px;}
.x49_c00460{left:783.379941px;}
.x68_c00460{left:786.390000px;}
.x14_c00460{left:794.081862px;}
.x63_c00460{left:796.052982px;}
.x51_c00460{left:805.499568px;}
.x3e_c00460{left:816.380940px;}
.x60_c00460{left:818.137032px;}
@media print{
.v0_c00460{vertical-align:0.000000pt;}
.ls0_c00460{letter-spacing:0.000000pt;}
.ws0_c00460{word-spacing:0.000000pt;}
._0_c00460{width:39.650349pt;}
.fs9_c00460{font-size:21.333333pt;}
.fs6_c00460{font-size:58.667723pt;}
.fsc_c00460{font-size:58.668104pt;}
.fsa_c00460{font-size:64.000000pt;}
.fs7_c00460{font-size:64.001152pt;}
.fsb_c00460{font-size:64.001568pt;}
.fs2_c00460{font-size:69.334581pt;}
.fs8_c00460{font-size:69.348620pt;}
.fs0_c00460{font-size:74.666667pt;}
.fs4_c00460{font-size:74.668011pt;}
.fs1_c00460{font-size:80.000000pt;}
.fs5_c00460{font-size:80.001440pt;}
.fs3_c00460{font-size:85.334869pt;}
.y0_c00460{bottom:0.000000pt;}
.y114_c00460{bottom:84.242747pt;}
.y115_c00460{bottom:87.036469pt;}
.y116_c00460{bottom:87.705211pt;}
.y117_c00460{bottom:88.361631pt;}
.y118_c00460{bottom:88.708369pt;}
.y119_c00460{bottom:89.197492pt;}
.y11a_c00460{bottom:90.192067pt;}
.y11b_c00460{bottom:91.040371pt;}
.y113_c00460{bottom:113.117629pt;}
.y112_c00460{bottom:113.465427pt;}
.y111_c00460{bottom:113.878837pt;}
.y110_c00460{bottom:114.083807pt;}
.y10f_c00460{bottom:114.221613pt;}
.y10e_c00460{bottom:114.490441pt;}
.y10d_c00460{bottom:114.769359pt;}
.y10c_c00460{bottom:115.239721pt;}
.y10b_c00460{bottom:115.920000pt;}
.y10a_c00460{bottom:147.308000pt;}
.y109_c00460{bottom:171.992000pt;}
.y108_c00460{bottom:186.299759pt;}
.y107_c00460{bottom:188.584167pt;}
.y106_c00460{bottom:190.051423pt;}
.y105_c00460{bottom:190.883471pt;}
.y104_c00460{bottom:192.516711pt;}
.y103_c00460{bottom:193.953643pt;}
.y102_c00460{bottom:194.563763pt;}
.y101_c00460{bottom:196.800599pt;}
.y100_c00460{bottom:198.002667pt;}
.yff_c00460{bottom:220.532461pt;}
.yfe_c00460{bottom:222.408097pt;}
.yfd_c00460{bottom:223.462605pt;}
.yfc_c00460{bottom:224.090169pt;}
.yfb_c00460{bottom:226.138985pt;}
.yfa_c00460{bottom:227.384873pt;}
.yf9_c00460{bottom:227.983233pt;}
.yf8_c00460{bottom:230.050753pt;}
.yf7_c00460{bottom:230.645333pt;}
.yf5_c00460{bottom:261.156672pt;}
.yf4_c00460{bottom:261.156717pt;}
.yf6_c00460{bottom:261.156893pt;}
.yf3_c00460{bottom:283.260045pt;}
.yf2_c00460{bottom:284.164120pt;}
.yf1_c00460{bottom:285.053341pt;}
.yf0_c00460{bottom:285.639917pt;}
.yef_c00460{bottom:286.526557pt;}
.yee_c00460{bottom:286.958080pt;}
.yed_c00460{bottom:287.995531pt;}
.yec_c00460{bottom:288.726541pt;}
.yeb_c00460{bottom:289.309139pt;}
.yea_c00460{bottom:290.177912pt;}
.ye9_c00460{bottom:290.619845pt;}
.ye8_c00460{bottom:291.631024pt;}
.ye7_c00460{bottom:292.080045pt;}
.ye6_c00460{bottom:313.076675pt;}
.ye5_c00460{bottom:314.514853pt;}
.ye4_c00460{bottom:315.928704pt;}
.ye3_c00460{bottom:316.446669pt;}
.ye2_c00460{bottom:318.066933pt;}
.ye1_c00460{bottom:319.471085pt;}
.ye0_c00460{bottom:320.689149pt;}
.ydf_c00460{bottom:321.211397pt;}
.yde_c00460{bottom:321.585667pt;}
.ydd_c00460{bottom:322.791563pt;}
.ydc_c00460{bottom:323.305341pt;}
.ydb_c00460{bottom:323.999432pt;}
.yda_c00460{bottom:347.303765pt;}
.yd9_c00460{bottom:348.214568pt;}
.yd8_c00460{bottom:348.646075pt;}
.yd7_c00460{bottom:349.388176pt;}
.yd6_c00460{bottom:349.823829pt;}
.yd5_c00460{bottom:350.850253pt;}
.yd4_c00460{bottom:351.166091pt;}
.yd3_c00460{bottom:352.044325pt;}
.yd2_c00460{bottom:352.915480pt;}
.yd1_c00460{bottom:353.649000pt;}
.yd0_c00460{bottom:355.084997pt;}
.ycf_c00460{bottom:355.678413pt;}
.yce_c00460{bottom:380.079091pt;}
.ycd_c00460{bottom:380.484344pt;}
.ycc_c00460{bottom:381.102827pt;}
.ycb_c00460{bottom:381.347056pt;}
.yca_c00460{bottom:381.901883pt;}
.yc9_c00460{bottom:383.539584pt;}
.yc8_c00460{bottom:383.765416pt;}
.yc7_c00460{bottom:384.238275pt;}
.yc6_c00460{bottom:409.985328pt;}
.yc5_c00460{bottom:411.135483pt;}
.yc4_c00460{bottom:412.568373pt;}
.yc3_c00460{bottom:413.263699pt;}
.yc2_c00460{bottom:413.983827pt;}
.yc1_c00460{bottom:415.632107pt;}
.yc0_c00460{bottom:416.329005pt;}
.ybf_c00460{bottom:417.054469pt;}
.ybe_c00460{bottom:419.370939pt;}
.ybd_c00460{bottom:420.094621pt;}
.ybc_c00460{bottom:423.354971pt;}
.ybb_c00460{bottom:424.321904pt;}
.yba_c00460{bottom:442.487397pt;}
.yb9_c00460{bottom:442.923027pt;}
.yb8_c00460{bottom:443.520525pt;}
.yb7_c00460{bottom:445.307301pt;}
.yb6_c00460{bottom:446.163323pt;}
.yb5_c00460{bottom:446.483227pt;}
.yb4_c00460{bottom:447.487893pt;}
.yb3_c00460{bottom:447.934445pt;}
.yb2_c00460{bottom:449.096851pt;}
.yb1_c00460{bottom:449.694565pt;}
.yb0_c00460{bottom:450.281013pt;}
.yaf_c00460{bottom:451.001053pt;}
.yae_c00460{bottom:451.439288pt;}
.yad_c00460{bottom:474.702440pt;}
.yac_c00460{bottom:475.088979pt;}
.yab_c00460{bottom:475.792296pt;}
.yaa_c00460{bottom:476.365853pt;}
.ya9_c00460{bottom:476.756469pt;}
.ya8_c00460{bottom:477.347109pt;}
.ya7_c00460{bottom:478.133896pt;}
.ya6_c00460{bottom:479.107861pt;}
.ya5_c00460{bottom:479.308645pt;}
.ya4_c00460{bottom:480.478029pt;}
.ya3_c00460{bottom:507.403701pt;}
.ya2_c00460{bottom:508.592507pt;}
.ya1_c00460{bottom:509.583856pt;}
.ya0_c00460{bottom:510.086373pt;}
.y9f_c00460{bottom:510.584712pt;}
.y9e_c00460{bottom:512.093480pt;}
.y9d_c00460{bottom:512.575656pt;}
.y9c_c00460{bottom:514.242891pt;}
.y9b_c00460{bottom:514.741325pt;}
.y9a_c00460{bottom:515.246224pt;}
.y99_c00460{bottom:517.200088pt;}
.y98_c00460{bottom:539.037427pt;}
.y97_c00460{bottom:539.660195pt;}
.y96_c00460{bottom:539.930981pt;}
.y95_c00460{bottom:540.194669pt;}
.y94_c00460{bottom:540.821611pt;}
.y93_c00460{bottom:541.344821pt;}
.y92_c00460{bottom:541.605704pt;}
.y91_c00460{bottom:542.137301pt;}
.y90_c00460{bottom:542.393971pt;}
.y8f_c00460{bottom:543.106512pt;}
.y8e_c00460{bottom:543.273272pt;}
.y8d_c00460{bottom:543.542573pt;}
.y8c_c00460{bottom:544.061803pt;}
.y8b_c00460{bottom:544.320973pt;}
.y8a_c00460{bottom:570.763469pt;}
.y89_c00460{bottom:571.203661pt;}
.y88_c00460{bottom:571.972323pt;}
.y87_c00460{bottom:572.400333pt;}
.y86_c00460{bottom:572.722664pt;}
.y85_c00460{bottom:573.368629pt;}
.y84_c00460{bottom:574.026016pt;}
.y83_c00460{bottom:575.094573pt;}
.y82_c00460{bottom:575.411389pt;}
.y81_c00460{bottom:576.377040pt;}
.y80_c00460{bottom:576.699371pt;}
.y7f_c00460{bottom:577.129819pt;}
.y7e_c00460{bottom:577.441168pt;}
.y7d_c00460{bottom:603.790413pt;}
.y7c_c00460{bottom:603.938216pt;}
.y7b_c00460{bottom:604.283651pt;}
.y7a_c00460{bottom:604.531029pt;}
.y79_c00460{bottom:604.674488pt;}
.y78_c00460{bottom:605.116424pt;}
.y77_c00460{bottom:605.261307pt;}
.y76_c00460{bottom:605.608133pt;}
.y75_c00460{bottom:606.047205pt;}
.y74_c00460{bottom:606.190541pt;}
.y73_c00460{bottom:606.720443pt;}
.y72_c00460{bottom:634.713619pt;}
.y71_c00460{bottom:635.252960pt;}
.y70_c00460{bottom:635.801677pt;}
.y6f_c00460{bottom:636.124216pt;}
.y6e_c00460{bottom:636.768917pt;}
.y6d_c00460{bottom:637.630653pt;}
.y6c_c00460{bottom:637.962336pt;}
.y6b_c00460{bottom:638.828157pt;}
.y6a_c00460{bottom:639.136597pt;}
.y69_c00460{bottom:639.459248pt;}
.y68_c00460{bottom:639.788333pt;}
.y67_c00460{bottom:640.321840pt;}
.y61_c00460{bottom:668.390568pt;}
.y5f_c00460{bottom:668.390819pt;}
.y60_c00460{bottom:668.390827pt;}
.y62_c00460{bottom:668.390888pt;}
.y5e_c00460{bottom:668.390917pt;}
.y63_c00460{bottom:668.391109pt;}
.y65_c00460{bottom:668.391171pt;}
.y64_c00460{bottom:668.391536pt;}
.y66_c00460{bottom:668.391811pt;}
.y5d_c00460{bottom:699.714448pt;}
.y52_c00460{bottom:699.714621pt;}
.y5c_c00460{bottom:699.714813pt;}
.y53_c00460{bottom:699.714835pt;}
.y56_c00460{bottom:699.715109pt;}
.y5b_c00460{bottom:699.715339pt;}
.y54_c00460{bottom:699.715368pt;}
.y55_c00460{bottom:699.715581pt;}
.y57_c00460{bottom:699.715749pt;}
.y5a_c00460{bottom:699.715925pt;}
.y58_c00460{bottom:699.716024pt;}
.y59_c00460{bottom:699.716344pt;}
.y48_c00460{bottom:731.123651pt;}
.y47_c00460{bottom:731.123963pt;}
.y49_c00460{bottom:731.123979pt;}
.y4c_c00460{bottom:731.124216pt;}
.y4a_c00460{bottom:731.124253pt;}
.y4b_c00460{bottom:731.124528pt;}
.y4d_c00460{bottom:731.124749pt;}
.y4e_c00460{bottom:731.124917pt;}
.y50_c00460{bottom:731.125147pt;}
.y51_c00460{bottom:731.125253pt;}
.y4f_c00460{bottom:731.125512pt;}
.y43_c00460{bottom:763.200096pt;}
.y44_c00460{bottom:763.200576pt;}
.y41_c00460{bottom:763.200613pt;}
.y46_c00460{bottom:763.200645pt;}
.y3d_c00460{bottom:763.200696pt;}
.y42_c00460{bottom:763.200728pt;}
.y45_c00460{bottom:763.200851pt;}
.y40_c00460{bottom:763.201192pt;}
.y3e_c00460{bottom:763.201237pt;}
.y3f_c00460{bottom:763.201405pt;}
.y39_c00460{bottom:796.080115pt;}
.y32_c00460{bottom:796.080173pt;}
.y34_c00460{bottom:796.080296pt;}
.y30_c00460{bottom:796.080317pt;}
.y31_c00460{bottom:796.080379pt;}
.y3b_c00460{bottom:796.080496pt;}
.y38_c00460{bottom:796.080747pt;}
.y3a_c00460{bottom:796.080755pt;}
.y33_c00460{bottom:796.080768pt;}
.y35_c00460{bottom:796.080784pt;}
.y37_c00460{bottom:796.080792pt;}
.y36_c00460{bottom:796.080997pt;}
.y3c_c00460{bottom:796.081037pt;}
.y2f_c00460{bottom:827.302805pt;}
.y2e_c00460{bottom:827.707557pt;}
.y2d_c00460{bottom:827.834181pt;}
.y2c_c00460{bottom:828.296525pt;}
.y2b_c00460{bottom:828.418845pt;}
.y2a_c00460{bottom:828.591733pt;}
.y29_c00460{bottom:828.948861pt;}
.y28_c00460{bottom:829.121661pt;}
.y27_c00460{bottom:829.534957pt;}
.y26_c00460{bottom:829.825829pt;}
.y25_c00460{bottom:830.000021pt;}
.y24_c00460{bottom:830.177109pt;}
.y23_c00460{bottom:830.640685pt;}
.y18_c00460{bottom:858.650253pt;}
.y19_c00460{bottom:858.650528pt;}
.y17_c00460{bottom:858.650565pt;}
.y16_c00460{bottom:858.650672pt;}
.y1a_c00460{bottom:858.650848pt;}
.y1b_c00460{bottom:858.651275pt;}
.y1c_c00460{bottom:858.651595pt;}
.y1d_c00460{bottom:858.652083pt;}
.y1e_c00460{bottom:858.652296pt;}
.y1f_c00460{bottom:858.652624pt;}
.y20_c00460{bottom:858.653264pt;}
.y22_c00460{bottom:858.653493pt;}
.y21_c00460{bottom:858.653752pt;}
.y10_c00460{bottom:889.051861pt;}
.y14_c00460{bottom:889.052357pt;}
.y15_c00460{bottom:889.052365pt;}
.y13_c00460{bottom:889.052464pt;}
.yf_c00460{bottom:889.052493pt;}
.y11_c00460{bottom:889.052501pt;}
.y12_c00460{bottom:889.052989pt;}
.ye_c00460{bottom:889.053019pt;}
.yc_c00460{bottom:889.053117pt;}
.yd_c00460{bottom:889.053331pt;}
.yb_c00460{bottom:921.766056pt;}
.ya_c00460{bottom:922.304648pt;}
.y9_c00460{bottom:922.589792pt;}
.y8_c00460{bottom:923.354424pt;}
.y7_c00460{bottom:923.651144pt;}
.y6_c00460{bottom:923.825312pt;}
.y5_c00460{bottom:924.061448pt;}
.y4_c00460{bottom:924.240000pt;}
.y3_c00460{bottom:987.120000pt;}
.y2_c00460{bottom:1018.676000pt;}
.y1_c00460{bottom:1069.205333pt;}
.hc_c00460{height:21.333333pt;}
.h9_c00460{height:58.667723pt;}
.hf_c00460{height:58.668104pt;}
.hd_c00460{height:64.000000pt;}
.ha_c00460{height:64.001152pt;}
.he_c00460{height:64.001568pt;}
.h4_c00460{height:69.334581pt;}
.hb_c00460{height:69.348620pt;}
.h7_c00460{height:70.043927pt;}
.h2_c00460{height:74.666667pt;}
.h6_c00460{height:74.668011pt;}
.h3_c00460{height:80.000000pt;}
.h8_c00460{height:80.001440pt;}
.h5_c00460{height:85.334869pt;}
.h0_c00460{height:1123.680000pt;}
.h1_c00460{height:1124.000000pt;}
.w1_c00460{width:822.000000pt;}
.w0_c00460{width:822.240000pt;}
.x0_c00460{left:0.000000pt;}
.x31_c00460{left:117.837840pt;}
.xd_c00460{left:119.037424pt;}
.x46_c00460{left:120.089091pt;}
.x69_c00460{left:121.309333pt;}
.x3f_c00460{left:147.272301pt;}
.xe_c00460{left:148.558488pt;}
.x61_c00460{left:149.580787pt;}
.x26_c00460{left:158.159683pt;}
.x5a_c00460{left:159.188509pt;}
.x37_c00460{left:176.639512pt;}
.x56_c00460{left:177.735920pt;}
.x6b_c00460{left:180.720000pt;}
.x32_c00460{left:184.558907pt;}
.x40_c00460{left:186.345792pt;}
.x5d_c00460{left:187.457107pt;}
.x1d_c00460{left:196.021619pt;}
.x27_c00460{left:206.640093pt;}
.x5_c00460{left:215.216000pt;}
.x62_c00460{left:216.995813pt;}
.x6d_c00460{left:217.920000pt;}
.x1e_c00460{left:225.536285pt;}
.x6c_c00460{left:226.800000pt;}
.x47_c00460{left:235.058840pt;}
.x38_c00460{left:236.161656pt;}
.x33_c00460{left:237.839493pt;}
.x6_c00460{left:244.974667pt;}
.x15_c00460{left:246.003584pt;}
.x1f_c00460{left:254.568285pt;}
.x4a_c00460{left:255.458752pt;}
.x2d_c00460{left:264.239568pt;}
.x4e_c00460{left:275.336741pt;}
.x7_c00460{left:284.330667pt;}
.x6e_c00460{left:285.600000pt;}
.x2e_c00460{left:294.720664pt;}
.x64_c00460{left:296.647243pt;}
.x4_c00460{left:303.120000pt;}
.x5e_c00460{left:304.295365pt;}
.x8_c00460{left:313.358667pt;}
.x39_c00460{left:322.803443pt;}
.x52_c00460{left:324.145483pt;}
.x73_c00460{left:325.097333pt;}
.x3_c00460{left:332.880000pt;}
.xf_c00460{left:342.482797pt;}
.x65_c00460{left:344.214667pt;}
.x28_c00460{left:352.321341pt;}
.x6f_c00460{left:353.760000pt;}
.x1_c00460{left:361.200000pt;}
.x9_c00460{left:362.812000pt;}
.x16_c00460{left:372.006795pt;}
.x70_c00460{left:373.680000pt;}
.x2_c00460{left:379.680000pt;}
.x29_c00460{left:381.842405pt;}
.x74_c00460{left:383.188000pt;}
.x10_c00460{left:391.923240pt;}
.x20_c00460{left:400.729619pt;}
.x71_c00460{left:402.480000pt;}
.x34_c00460{left:411.361741pt;}
.x75_c00460{left:412.469333pt;}
.x11_c00460{left:420.484272pt;}
.x2a_c00460{left:430.322816pt;}
.x4b_c00460{left:431.579861pt;}
.x17_c00460{left:439.927909pt;}
.x5b_c00460{left:441.630603pt;}
.x42_c00460{left:450.345843pt;}
.x72_c00460{left:452.160000pt;}
.x21_c00460{left:460.250952pt;}
.x18_c00460{left:469.448973pt;}
.x4f_c00460{left:470.914181pt;}
.x53_c00460{left:479.933992pt;}
.x22_c00460{left:489.065619pt;}
.xa_c00460{left:490.250667pt;}
.x2f_c00460{left:498.243984pt;}
.x3a_c00460{left:499.447136pt;}
.x43_c00460{left:508.435461pt;}
.x23_c00460{left:509.452285pt;}
.x57_c00460{left:510.607928pt;}
.x12_c00460{left:518.406467pt;}
.x76_c00460{left:521.213333pt;}
.x3b_c00460{left:527.768152pt;}
.x19_c00460{left:528.729776pt;}
.x4c_c00460{left:529.786843pt;}
.xb_c00460{left:537.774667pt;}
.x35_c00460{left:538.805000pt;}
.x5f_c00460{left:540.025064pt;}
.x2b_c00460{left:547.444365pt;}
.x54_c00460{left:548.639909pt;}
.x1a_c00460{left:557.290808pt;}
.x66_c00460{left:559.482667pt;}
.x48_c00460{left:568.098189pt;}
.x6a_c00460{left:569.809333pt;}
.x3c_c00460{left:576.968587pt;}
.x44_c00460{left:578.035539pt;}
.x24_c00460{left:586.509619pt;}
.x58_c00460{left:587.909667pt;}
.x13_c00460{left:597.607981pt;}
.x1b_c00460{left:607.211275pt;}
.x67_c00460{left:609.697333pt;}
.x2c_c00460{left:617.045536pt;}
.x3d_c00460{left:626.171760pt;}
.xc_c00460{left:627.540000pt;}
.x45_c00460{left:637.335800pt;}
.x59_c00460{left:638.562392pt;}
.x1c_c00460{left:646.811365pt;}
.x4d_c00460{left:657.485112pt;}
.x30_c00460{left:665.047325pt;}
.x55_c00460{left:667.351093pt;}
.x25_c00460{left:675.072285pt;}
.x36_c00460{left:676.087277pt;}
.x5c_c00460{left:678.032501pt;}
.x41_c00460{left:686.060141pt;}
.x50_c00460{left:686.951851pt;}
.x49_c00460{left:696.337725pt;}
.x68_c00460{left:699.013333pt;}
.x14_c00460{left:705.850544pt;}
.x63_c00460{left:707.602651pt;}
.x51_c00460{left:715.999616pt;}
.x3e_c00460{left:725.671947pt;}
.x60_c00460{left:727.232917pt;}
}





/* 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_c00461 {
    display:none;
  }
  .loading-indicator_c00461.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00461 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_c00461 { 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_c00461" -> "#page-container .classname_c00461")
 */
.pf_c00461 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00461 { /* 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_c00461.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00461 { /* 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_c00461 { /* 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_c00461 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00461 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00461 {overflow:visible;}
  }
}
.c_c00461 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00461 { /* 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_c00461:after { /* webkit #35443 */
  content: '';
}
.t_c00461:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00461 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 */
}
.__c00461 { /* 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_c00461 { /* info for Javascript */
  display:none;
}
.l_c00461 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00461 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00461 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00461: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_c00461 {
    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_c00461.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00461.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_c00461 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00461{font-family:sans-serif;visibility:hidden;}
.sc__c00461{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00461{-webkit-text-stroke:0px transparent;}
}
.y0_c00461{bottom:0.000000px;}
.h0_c00461{height:1264.140000px;}
.h1_c00461{height:1264.500000px;}
.w1_c00461{width:924.750000px;}
.w0_c00461{width:925.020000px;}
.x0_c00461{left:0.000000px;}
@media print{
.y0_c00461{bottom:0.000000pt;}
.h0_c00461{height:1123.680000pt;}
.h1_c00461{height:1124.000000pt;}
.w1_c00461{width:822.000000pt;}
.w0_c00461{width:822.240000pt;}
.x0_c00461{left:0.000000pt;}
}





/* 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_c00462 {
    display:none;
  }
  .loading-indicator_c00462.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00462 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_c00462 { 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_c00462" -> "#page-container .classname_c00462")
 */
.pf_c00462 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00462 { /* 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_c00462.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00462 { /* 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_c00462 { /* 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_c00462 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00462 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00462 {overflow:visible;}
  }
}
.c_c00462 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00462 { /* 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_c00462:after { /* webkit #35443 */
  content: '';
}
.t_c00462:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00462 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 */
}
.__c00462 { /* 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_c00462 { /* info for Javascript */
  display:none;
}
.l_c00462 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00462 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00462 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00462: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_c00462 {
    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_c00462.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00462.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_c00462 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00462{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00462;src:url('chunks/assets/font_c605e72f209fc835e906f064.woff2')format("woff");}.ff1_c00462{font-family:ff1_c00462;line-height:1.000000;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;}
.m0_c00462{transform:matrix(0.121850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121850,0.000000,0.000000,0.250000,0,0);}
.m15_c00462{transform:matrix(0.147153,0.003090,-0.005249,0.249945,0,0);-ms-transform:matrix(0.147153,0.003090,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.147153,0.003090,-0.005249,0.249945,0,0);}
.m8a_c00462{transform:matrix(0.169482,0.005768,-0.008504,0.249855,0,0);-ms-transform:matrix(0.169482,0.005768,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.169482,0.005768,-0.008504,0.249855,0,0);}
.meb_c00462{transform:matrix(0.181940,0.006192,-0.008504,0.249855,0,0);-ms-transform:matrix(0.181940,0.006192,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.181940,0.006192,-0.008504,0.249855,0,0);}
.me9_c00462{transform:matrix(0.182364,0.006207,-0.008504,0.249855,0,0);-ms-transform:matrix(0.182364,0.006207,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.182364,0.006207,-0.008504,0.249855,0,0);}
.m117_c00462{transform:matrix(0.182944,0.006226,-0.008504,0.249855,0,0);-ms-transform:matrix(0.182944,0.006226,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.182944,0.006226,-0.008504,0.249855,0,0);}
.med_c00462{transform:matrix(0.183109,0.006232,-0.008504,0.249855,0,0);-ms-transform:matrix(0.183109,0.006232,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.183109,0.006232,-0.008504,0.249855,0,0);}
.me6_c00462{transform:matrix(0.186837,0.006359,-0.008504,0.249855,0,0);-ms-transform:matrix(0.186837,0.006359,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.186837,0.006359,-0.008504,0.249855,0,0);}
.mf0_c00462{transform:matrix(0.189140,0.006437,-0.008504,0.249855,0,0);-ms-transform:matrix(0.189140,0.006437,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.189140,0.006437,-0.008504,0.249855,0,0);}
.mce_c00462{transform:matrix(0.189495,0.006449,-0.008504,0.249855,0,0);-ms-transform:matrix(0.189495,0.006449,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.189495,0.006449,-0.008504,0.249855,0,0);}
.me8_c00462{transform:matrix(0.190160,0.006472,-0.008504,0.249855,0,0);-ms-transform:matrix(0.190160,0.006472,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.190160,0.006472,-0.008504,0.249855,0,0);}
.m63_c00462{transform:matrix(0.190750,0.005341,-0.006997,0.249902,0,0);-ms-transform:matrix(0.190750,0.005341,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.190750,0.005341,-0.006997,0.249902,0,0);}
.me2_c00462{transform:matrix(0.191949,0.006533,-0.008504,0.249855,0,0);-ms-transform:matrix(0.191949,0.006533,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.191949,0.006533,-0.008504,0.249855,0,0);}
.me0_c00462{transform:matrix(0.192474,0.006551,-0.008504,0.249855,0,0);-ms-transform:matrix(0.192474,0.006551,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.192474,0.006551,-0.008504,0.249855,0,0);}
.m1b_c00462{transform:matrix(0.192555,0.005392,-0.006997,0.249902,0,0);-ms-transform:matrix(0.192555,0.005392,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.192555,0.005392,-0.006997,0.249902,0,0);}
.m67_c00462{transform:matrix(0.193079,0.005406,-0.006997,0.249902,0,0);-ms-transform:matrix(0.193079,0.005406,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.193079,0.005406,-0.006997,0.249902,0,0);}
.m11a_c00462{transform:matrix(0.193508,0.006586,-0.008504,0.249855,0,0);-ms-transform:matrix(0.193508,0.006586,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.193508,0.006586,-0.008504,0.249855,0,0);}
.mea_c00462{transform:matrix(0.194507,0.006620,-0.008504,0.249855,0,0);-ms-transform:matrix(0.194507,0.006620,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.194507,0.006620,-0.008504,0.249855,0,0);}
.m4_c00462{transform:matrix(0.194748,0.004479,-0.005748,0.249934,0,0);-ms-transform:matrix(0.194748,0.004479,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.194748,0.004479,-0.005748,0.249934,0,0);}
.mdd_c00462{transform:matrix(0.195392,0.006650,-0.008504,0.249855,0,0);-ms-transform:matrix(0.195392,0.006650,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.195392,0.006650,-0.008504,0.249855,0,0);}
.m81_c00462{transform:matrix(0.195421,0.006058,-0.007746,0.249880,0,0);-ms-transform:matrix(0.195421,0.006058,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.195421,0.006058,-0.007746,0.249880,0,0);}
.m2d_c00462{transform:matrix(0.195983,0.005488,-0.006997,0.249902,0,0);-ms-transform:matrix(0.195983,0.005488,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.195983,0.005488,-0.006997,0.249902,0,0);}
.m33_c00462{transform:matrix(0.196438,0.005500,-0.006997,0.249902,0,0);-ms-transform:matrix(0.196438,0.005500,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.196438,0.005500,-0.006997,0.249902,0,0);}
.mef_c00462{transform:matrix(0.196661,0.006693,-0.008504,0.249855,0,0);-ms-transform:matrix(0.196661,0.006693,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.196661,0.006693,-0.008504,0.249855,0,0);}
.m11c_c00462{transform:matrix(0.196681,0.006694,-0.008504,0.249855,0,0);-ms-transform:matrix(0.196681,0.006694,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.196681,0.006694,-0.008504,0.249855,0,0);}
.m6_c00462{transform:matrix(0.197333,0.004539,-0.005748,0.249934,0,0);-ms-transform:matrix(0.197333,0.004539,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.197333,0.004539,-0.005748,0.249934,0,0);}
.mf1_c00462{transform:matrix(0.199015,0.006773,-0.008504,0.249855,0,0);-ms-transform:matrix(0.199015,0.006773,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.199015,0.006773,-0.008504,0.249855,0,0);}
.m128_c00462{transform:matrix(0.199967,0.005399,-0.006748,0.249909,0,0);-ms-transform:matrix(0.199967,0.005399,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.199967,0.005399,-0.006748,0.249909,0,0);}
.m3_c00462{transform:matrix(0.200322,0.004607,-0.005748,0.249934,0,0);-ms-transform:matrix(0.200322,0.004607,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.200322,0.004607,-0.005748,0.249934,0,0);}
.m1d_c00462{transform:matrix(0.201456,0.005641,-0.006997,0.249902,0,0);-ms-transform:matrix(0.201456,0.005641,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.201456,0.005641,-0.006997,0.249902,0,0);}
.mdc_c00462{transform:matrix(0.202168,0.006881,-0.008504,0.249855,0,0);-ms-transform:matrix(0.202168,0.006881,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.202168,0.006881,-0.008504,0.249855,0,0);}
.m28_c00462{transform:matrix(0.202366,0.005666,-0.006997,0.249902,0,0);-ms-transform:matrix(0.202366,0.005666,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.202366,0.005666,-0.006997,0.249902,0,0);}
.m83_c00462{transform:matrix(0.203147,0.006298,-0.007746,0.249880,0,0);-ms-transform:matrix(0.203147,0.006298,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.203147,0.006298,-0.007746,0.249880,0,0);}
.me4_c00462{transform:matrix(0.203267,0.006918,-0.008504,0.249855,0,0);-ms-transform:matrix(0.203267,0.006918,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.203267,0.006918,-0.008504,0.249855,0,0);}
.m44_c00462{transform:matrix(0.203450,0.005697,-0.006997,0.249902,0,0);-ms-transform:matrix(0.203450,0.005697,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.203450,0.005697,-0.006997,0.249902,0,0);}
.md0_c00462{transform:matrix(0.204002,0.006943,-0.008504,0.249855,0,0);-ms-transform:matrix(0.204002,0.006943,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.204002,0.006943,-0.008504,0.249855,0,0);}
.m129_c00462{transform:matrix(0.204116,0.005511,-0.006748,0.249909,0,0);-ms-transform:matrix(0.204116,0.005511,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.204116,0.005511,-0.006748,0.249909,0,0);}
.m7c_c00462{transform:matrix(0.204362,0.006335,-0.007746,0.249880,0,0);-ms-transform:matrix(0.204362,0.006335,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.204362,0.006335,-0.007746,0.249880,0,0);}
.mec_c00462{transform:matrix(0.204881,0.006973,-0.008504,0.249855,0,0);-ms-transform:matrix(0.204881,0.006973,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.204881,0.006973,-0.008504,0.249855,0,0);}
.md8_c00462{transform:matrix(0.205726,0.007002,-0.008504,0.249855,0,0);-ms-transform:matrix(0.205726,0.007002,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.205726,0.007002,-0.008504,0.249855,0,0);}
.mda_c00462{transform:matrix(0.206311,0.007022,-0.008504,0.249855,0,0);-ms-transform:matrix(0.206311,0.007022,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.206311,0.007022,-0.008504,0.249855,0,0);}
.maf_c00462{transform:matrix(0.206710,0.007035,-0.008504,0.249855,0,0);-ms-transform:matrix(0.206710,0.007035,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.206710,0.007035,-0.008504,0.249855,0,0);}
.m1c_c00462{transform:matrix(0.207304,0.005805,-0.006997,0.249902,0,0);-ms-transform:matrix(0.207304,0.005805,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.207304,0.005805,-0.006997,0.249902,0,0);}
.ma2_c00462{transform:matrix(0.207895,0.007075,-0.008504,0.249855,0,0);-ms-transform:matrix(0.207895,0.007075,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.207895,0.007075,-0.008504,0.249855,0,0);}
.m65_c00462{transform:matrix(0.208668,0.005843,-0.006997,0.249902,0,0);-ms-transform:matrix(0.208668,0.005843,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.208668,0.005843,-0.006997,0.249902,0,0);}
.md6_c00462{transform:matrix(0.208809,0.007107,-0.008504,0.249855,0,0);-ms-transform:matrix(0.208809,0.007107,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.208809,0.007107,-0.008504,0.249855,0,0);}
.m4f_c00462{transform:matrix(0.209038,0.005853,-0.006997,0.249902,0,0);-ms-transform:matrix(0.209038,0.005853,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.209038,0.005853,-0.006997,0.249902,0,0);}
.m106_c00462{transform:matrix(0.209059,0.010045,-0.011998,0.249712,0,0);-ms-transform:matrix(0.209059,0.010045,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.209059,0.010045,-0.011998,0.249712,0,0);}
.mee_c00462{transform:matrix(0.209234,0.007121,-0.008504,0.249855,0,0);-ms-transform:matrix(0.209234,0.007121,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.209234,0.007121,-0.008504,0.249855,0,0);}
.mf3_c00462{transform:matrix(0.210423,0.007162,-0.008504,0.249855,0,0);-ms-transform:matrix(0.210423,0.007162,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.210423,0.007162,-0.008504,0.249855,0,0);}
.m77_c00462{transform:matrix(0.210463,0.005893,-0.006997,0.249902,0,0);-ms-transform:matrix(0.210463,0.005893,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.210463,0.005893,-0.006997,0.249902,0,0);}
.mfa_c00462{transform:matrix(0.210488,0.007164,-0.008504,0.249855,0,0);-ms-transform:matrix(0.210488,0.007164,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.210488,0.007164,-0.008504,0.249855,0,0);}
.m22_c00462{transform:matrix(0.210537,0.005895,-0.006997,0.249902,0,0);-ms-transform:matrix(0.210537,0.005895,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.210537,0.005895,-0.006997,0.249902,0,0);}
.m36_c00462{transform:matrix(0.211212,0.005914,-0.006997,0.249902,0,0);-ms-transform:matrix(0.211212,0.005914,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.211212,0.005914,-0.006997,0.249902,0,0);}
.m62_c00462{transform:matrix(0.211357,0.005918,-0.006997,0.249902,0,0);-ms-transform:matrix(0.211357,0.005918,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.211357,0.005918,-0.006997,0.249902,0,0);}
.m30_c00462{transform:matrix(0.211787,0.005930,-0.006997,0.249902,0,0);-ms-transform:matrix(0.211787,0.005930,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.211787,0.005930,-0.006997,0.249902,0,0);}
.m12b_c00462{transform:matrix(0.211853,0.005720,-0.006748,0.249909,0,0);-ms-transform:matrix(0.211853,0.005720,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.211853,0.005720,-0.006748,0.249909,0,0);}
.me5_c00462{transform:matrix(0.212192,0.007222,-0.008504,0.249855,0,0);-ms-transform:matrix(0.212192,0.007222,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.212192,0.007222,-0.008504,0.249855,0,0);}
.maa_c00462{transform:matrix(0.212387,0.007228,-0.008504,0.249855,0,0);-ms-transform:matrix(0.212387,0.007228,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.212387,0.007228,-0.008504,0.249855,0,0);}
.me7_c00462{transform:matrix(0.212652,0.007237,-0.008504,0.249855,0,0);-ms-transform:matrix(0.212652,0.007237,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.212652,0.007237,-0.008504,0.249855,0,0);}
.m108_c00462{transform:matrix(0.212889,0.010229,-0.011998,0.249712,0,0);-ms-transform:matrix(0.212889,0.010229,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.212889,0.010229,-0.011998,0.249712,0,0);}
.m2f_c00462{transform:matrix(0.213371,0.005974,-0.006997,0.249902,0,0);-ms-transform:matrix(0.213371,0.005974,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.213371,0.005974,-0.006997,0.249902,0,0);}
.mbc_c00462{transform:matrix(0.213566,0.007269,-0.008504,0.249855,0,0);-ms-transform:matrix(0.213566,0.007269,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.213566,0.007269,-0.008504,0.249855,0,0);}
.me3_c00462{transform:matrix(0.213651,0.007271,-0.008504,0.249855,0,0);-ms-transform:matrix(0.213651,0.007271,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.213651,0.007271,-0.008504,0.249855,0,0);}
.mcd_c00462{transform:matrix(0.213866,0.007279,-0.008504,0.249855,0,0);-ms-transform:matrix(0.213866,0.007279,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.213866,0.007279,-0.008504,0.249855,0,0);}
.m64_c00462{transform:matrix(0.214101,0.005995,-0.006997,0.249902,0,0);-ms-transform:matrix(0.214101,0.005995,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.214101,0.005995,-0.006997,0.249902,0,0);}
.mde_c00462{transform:matrix(0.215835,0.007346,-0.008504,0.249855,0,0);-ms-transform:matrix(0.215835,0.007346,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.215835,0.007346,-0.008504,0.249855,0,0);}
.m23_c00462{transform:matrix(0.216620,0.006065,-0.006997,0.249902,0,0);-ms-transform:matrix(0.216620,0.006065,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.216620,0.006065,-0.006997,0.249902,0,0);}
.m2_c00462{transform:matrix(0.217313,0.004998,-0.005748,0.249934,0,0);-ms-transform:matrix(0.217313,0.004998,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.217313,0.004998,-0.005748,0.249934,0,0);}
.md1_c00462{transform:matrix(0.217404,0.007399,-0.008504,0.249855,0,0);-ms-transform:matrix(0.217404,0.007399,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.217404,0.007399,-0.008504,0.249855,0,0);}
.mb8_c00462{transform:matrix(0.217604,0.007406,-0.008504,0.249855,0,0);-ms-transform:matrix(0.217604,0.007406,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.217604,0.007406,-0.008504,0.249855,0,0);}
.m2a_c00462{transform:matrix(0.218854,0.006128,-0.006997,0.249902,0,0);-ms-transform:matrix(0.218854,0.006128,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.218854,0.006128,-0.006997,0.249902,0,0);}
.m12_c00462{transform:matrix(0.218947,0.004598,-0.005249,0.249945,0,0);-ms-transform:matrix(0.218947,0.004598,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.218947,0.004598,-0.005249,0.249945,0,0);}
.m95_c00462{transform:matrix(0.219018,0.007454,-0.008504,0.249855,0,0);-ms-transform:matrix(0.219018,0.007454,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.219018,0.007454,-0.008504,0.249855,0,0);}
.m31_c00462{transform:matrix(0.220289,0.006168,-0.006997,0.249902,0,0);-ms-transform:matrix(0.220289,0.006168,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.220289,0.006168,-0.006997,0.249902,0,0);}
.m2c_c00462{transform:matrix(0.220394,0.006171,-0.006997,0.249902,0,0);-ms-transform:matrix(0.220394,0.006171,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.220394,0.006171,-0.006997,0.249902,0,0);}
.mb2_c00462{transform:matrix(0.221077,0.007524,-0.008504,0.249855,0,0);-ms-transform:matrix(0.221077,0.007524,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.221077,0.007524,-0.008504,0.249855,0,0);}
.m60_c00462{transform:matrix(0.221953,0.006215,-0.006997,0.249902,0,0);-ms-transform:matrix(0.221953,0.006215,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.221953,0.006215,-0.006997,0.249902,0,0);}
.m7_c00462{transform:matrix(0.221976,0.005105,-0.005748,0.249934,0,0);-ms-transform:matrix(0.221976,0.005105,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.221976,0.005105,-0.005748,0.249934,0,0);}
.ma1_c00462{transform:matrix(0.222081,0.007558,-0.008504,0.249855,0,0);-ms-transform:matrix(0.222081,0.007558,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.222081,0.007558,-0.008504,0.249855,0,0);}
.m10e_c00462{transform:matrix(0.222778,0.010704,-0.011998,0.249712,0,0);-ms-transform:matrix(0.222778,0.010704,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.222778,0.010704,-0.011998,0.249712,0,0);}
.m111_c00462{transform:matrix(0.223013,0.010715,-0.011998,0.249712,0,0);-ms-transform:matrix(0.223013,0.010715,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.223013,0.010715,-0.011998,0.249712,0,0);}
.md7_c00462{transform:matrix(0.223431,0.007604,-0.008504,0.249855,0,0);-ms-transform:matrix(0.223431,0.007604,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.223431,0.007604,-0.008504,0.249855,0,0);}
.m34_c00462{transform:matrix(0.223942,0.006270,-0.006997,0.249902,0,0);-ms-transform:matrix(0.223942,0.006270,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.223942,0.006270,-0.006997,0.249902,0,0);}
.m68_c00462{transform:matrix(0.224432,0.006284,-0.006997,0.249902,0,0);-ms-transform:matrix(0.224432,0.006284,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.224432,0.006284,-0.006997,0.249902,0,0);}
.m10d_c00462{transform:matrix(0.224551,0.010789,-0.011998,0.249712,0,0);-ms-transform:matrix(0.224551,0.010789,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.224551,0.010789,-0.011998,0.249712,0,0);}
.m5_c00462{transform:matrix(0.224911,0.005173,-0.005748,0.249934,0,0);-ms-transform:matrix(0.224911,0.005173,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.224911,0.005173,-0.005748,0.249934,0,0);}
.mcc_c00462{transform:matrix(0.225200,0.007664,-0.008504,0.249855,0,0);-ms-transform:matrix(0.225200,0.007664,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.225200,0.007664,-0.008504,0.249855,0,0);}
.m11b_c00462{transform:matrix(0.225210,0.007665,-0.008504,0.249855,0,0);-ms-transform:matrix(0.225210,0.007665,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.225210,0.007665,-0.008504,0.249855,0,0);}
.mf7_c00462{transform:matrix(0.225335,0.007669,-0.008504,0.249855,0,0);-ms-transform:matrix(0.225335,0.007669,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.225335,0.007669,-0.008504,0.249855,0,0);}
.m84_c00462{transform:matrix(0.225517,0.006991,-0.007746,0.249880,0,0);-ms-transform:matrix(0.225517,0.006991,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.225517,0.006991,-0.007746,0.249880,0,0);}
.mfc_c00462{transform:matrix(0.225714,0.007682,-0.008504,0.249855,0,0);-ms-transform:matrix(0.225714,0.007682,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.225714,0.007682,-0.008504,0.249855,0,0);}
.ma5_c00462{transform:matrix(0.226044,0.007693,-0.008504,0.249855,0,0);-ms-transform:matrix(0.226044,0.007693,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.226044,0.007693,-0.008504,0.249855,0,0);}
.m7d_c00462{transform:matrix(0.226271,0.007014,-0.007746,0.249880,0,0);-ms-transform:matrix(0.226271,0.007014,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.226271,0.007014,-0.007746,0.249880,0,0);}
.m119_c00462{transform:matrix(0.226469,0.007708,-0.008504,0.249855,0,0);-ms-transform:matrix(0.226469,0.007708,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.226469,0.007708,-0.008504,0.249855,0,0);}
.m66_c00462{transform:matrix(0.226526,0.006343,-0.006997,0.249902,0,0);-ms-transform:matrix(0.226526,0.006343,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.226526,0.006343,-0.006997,0.249902,0,0);}
.md_c00462{transform:matrix(0.226960,0.005220,-0.005748,0.249934,0,0);-ms-transform:matrix(0.226960,0.005220,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.226960,0.005220,-0.005748,0.249934,0,0);}
.m8_c00462{transform:matrix(0.227135,0.005224,-0.005748,0.249934,0,0);-ms-transform:matrix(0.227135,0.005224,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.227135,0.005224,-0.005748,0.249934,0,0);}
.m101_c00462{transform:matrix(0.227298,0.007736,-0.008504,0.249855,0,0);-ms-transform:matrix(0.227298,0.007736,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.227298,0.007736,-0.008504,0.249855,0,0);}
.m46_c00462{transform:matrix(0.227341,0.006366,-0.006997,0.249902,0,0);-ms-transform:matrix(0.227341,0.006366,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.227341,0.006366,-0.006997,0.249902,0,0);}
.m79_c00462{transform:matrix(0.227876,0.006381,-0.006997,0.249902,0,0);-ms-transform:matrix(0.227876,0.006381,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.227876,0.006381,-0.006997,0.249902,0,0);}
.m122_c00462{transform:matrix(0.228122,0.006159,-0.006748,0.249909,0,0);-ms-transform:matrix(0.228122,0.006159,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.228122,0.006159,-0.006748,0.249909,0,0);}
.md5_c00462{transform:matrix(0.228563,0.007779,-0.008504,0.249855,0,0);-ms-transform:matrix(0.228563,0.007779,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.228563,0.007779,-0.008504,0.249855,0,0);}
.mdb_c00462{transform:matrix(0.228583,0.007780,-0.008504,0.249855,0,0);-ms-transform:matrix(0.228583,0.007780,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.228583,0.007780,-0.008504,0.249855,0,0);}
.m9e_c00462{transform:matrix(0.228833,0.007788,-0.008504,0.249855,0,0);-ms-transform:matrix(0.228833,0.007788,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.228833,0.007788,-0.008504,0.249855,0,0);}
.m78_c00462{transform:matrix(0.229130,0.006416,-0.006997,0.249902,0,0);-ms-transform:matrix(0.229130,0.006416,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.229130,0.006416,-0.006997,0.249902,0,0);}
.ma4_c00462{transform:matrix(0.229302,0.007804,-0.008504,0.249855,0,0);-ms-transform:matrix(0.229302,0.007804,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.229302,0.007804,-0.008504,0.249855,0,0);}
.mcf_c00462{transform:matrix(0.229467,0.007810,-0.008504,0.249855,0,0);-ms-transform:matrix(0.229467,0.007810,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.229467,0.007810,-0.008504,0.249855,0,0);}
.m105_c00462{transform:matrix(0.229670,0.011035,-0.011998,0.249712,0,0);-ms-transform:matrix(0.229670,0.011035,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.229670,0.011035,-0.011998,0.249712,0,0);}
.mf5_c00462{transform:matrix(0.229752,0.007819,-0.008504,0.249855,0,0);-ms-transform:matrix(0.229752,0.007819,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.229752,0.007819,-0.008504,0.249855,0,0);}
.mdf_c00462{transform:matrix(0.230072,0.007830,-0.008504,0.249855,0,0);-ms-transform:matrix(0.230072,0.007830,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.230072,0.007830,-0.008504,0.249855,0,0);}
.m11e_c00462{transform:matrix(0.230347,0.007840,-0.008504,0.249855,0,0);-ms-transform:matrix(0.230347,0.007840,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.230347,0.007840,-0.008504,0.249855,0,0);}
.m10c_c00462{transform:matrix(0.230484,0.011074,-0.011998,0.249712,0,0);-ms-transform:matrix(0.230484,0.011074,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.230484,0.011074,-0.011998,0.249712,0,0);}
.m12f_c00462{transform:matrix(0.230551,0.006225,-0.006748,0.249909,0,0);-ms-transform:matrix(0.230551,0.006225,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.230551,0.006225,-0.006748,0.249909,0,0);}
.m20_c00462{transform:matrix(0.230715,0.006460,-0.006997,0.249902,0,0);-ms-transform:matrix(0.230715,0.006460,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.230715,0.006460,-0.006997,0.249902,0,0);}
.md4_c00462{transform:matrix(0.231146,0.007867,-0.008504,0.249855,0,0);-ms-transform:matrix(0.231146,0.007867,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.231146,0.007867,-0.008504,0.249855,0,0);}
.mbf_c00462{transform:matrix(0.231341,0.007873,-0.008504,0.249855,0,0);-ms-transform:matrix(0.231341,0.007873,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.231341,0.007873,-0.008504,0.249855,0,0);}
.m4b_c00462{transform:matrix(0.231534,0.006483,-0.006997,0.249902,0,0);-ms-transform:matrix(0.231534,0.006483,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.231534,0.006483,-0.006997,0.249902,0,0);}
.m2e_c00462{transform:matrix(0.231604,0.006485,-0.006997,0.249902,0,0);-ms-transform:matrix(0.231604,0.006485,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.231604,0.006485,-0.006997,0.249902,0,0);}
.m11d_c00462{transform:matrix(0.231761,0.007888,-0.008504,0.249855,0,0);-ms-transform:matrix(0.231761,0.007888,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.231761,0.007888,-0.008504,0.249855,0,0);}
.m10a_c00462{transform:matrix(0.231793,0.011137,-0.011998,0.249712,0,0);-ms-transform:matrix(0.231793,0.011137,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.231793,0.011137,-0.011998,0.249712,0,0);}
.m123_c00462{transform:matrix(0.231870,0.006261,-0.006748,0.249909,0,0);-ms-transform:matrix(0.231870,0.006261,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.231870,0.006261,-0.006748,0.249909,0,0);}
.md2_c00462{transform:matrix(0.232001,0.007896,-0.008504,0.249855,0,0);-ms-transform:matrix(0.232001,0.007896,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.232001,0.007896,-0.008504,0.249855,0,0);}
.m12d_c00462{transform:matrix(0.232120,0.006267,-0.006748,0.249909,0,0);-ms-transform:matrix(0.232120,0.006267,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.232120,0.006267,-0.006748,0.249909,0,0);}
.m92_c00462{transform:matrix(0.232151,0.007901,-0.008504,0.249855,0,0);-ms-transform:matrix(0.232151,0.007901,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.232151,0.007901,-0.008504,0.249855,0,0);}
.m35_c00462{transform:matrix(0.233034,0.006525,-0.006997,0.249902,0,0);-ms-transform:matrix(0.233034,0.006525,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.233034,0.006525,-0.006997,0.249902,0,0);}
.m125_c00462{transform:matrix(0.233265,0.006298,-0.006748,0.249909,0,0);-ms-transform:matrix(0.233265,0.006298,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.233265,0.006298,-0.006748,0.249909,0,0);}
.m12a_c00462{transform:matrix(0.233305,0.006299,-0.006748,0.249909,0,0);-ms-transform:matrix(0.233305,0.006299,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.233305,0.006299,-0.006748,0.249909,0,0);}
.m107_c00462{transform:matrix(0.233516,0.011220,-0.011998,0.249712,0,0);-ms-transform:matrix(0.233516,0.011220,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.233516,0.011220,-0.011998,0.249712,0,0);}
.md9_c00462{transform:matrix(0.233545,0.007948,-0.008504,0.249855,0,0);-ms-transform:matrix(0.233545,0.007948,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.233545,0.007948,-0.008504,0.249855,0,0);}
.m104_c00462{transform:matrix(0.234070,0.011247,-0.011998,0.249712,0,0);-ms-transform:matrix(0.234070,0.011247,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.234070,0.011247,-0.011998,0.249712,0,0);}
.m86_c00462{transform:matrix(0.234118,0.007258,-0.007746,0.249880,0,0);-ms-transform:matrix(0.234118,0.007258,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.234118,0.007258,-0.007746,0.249880,0,0);}
.m7e_c00462{transform:matrix(0.234412,0.007267,-0.007746,0.249880,0,0);-ms-transform:matrix(0.234412,0.007267,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.234412,0.007267,-0.007746,0.249880,0,0);}
.me1_c00462{transform:matrix(0.234424,0.007978,-0.008504,0.249855,0,0);-ms-transform:matrix(0.234424,0.007978,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.234424,0.007978,-0.008504,0.249855,0,0);}
.m25_c00462{transform:matrix(0.234628,0.006570,-0.006997,0.249902,0,0);-ms-transform:matrix(0.234628,0.006570,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.234628,0.006570,-0.006997,0.249902,0,0);}
.m109_c00462{transform:matrix(0.235373,0.011309,-0.011998,0.249712,0,0);-ms-transform:matrix(0.235373,0.011309,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.235373,0.011309,-0.011998,0.249712,0,0);}
.m21_c00462{transform:matrix(0.235433,0.006592,-0.006997,0.249902,0,0);-ms-transform:matrix(0.235433,0.006592,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.235433,0.006592,-0.006997,0.249902,0,0);}
.ma8_c00462{transform:matrix(0.235499,0.008015,-0.008504,0.249855,0,0);-ms-transform:matrix(0.235499,0.008015,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.235499,0.008015,-0.008504,0.249855,0,0);}
.m61_c00462{transform:matrix(0.235648,0.006598,-0.006997,0.249902,0,0);-ms-transform:matrix(0.235648,0.006598,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.235648,0.006598,-0.006997,0.249902,0,0);}
.m126_c00462{transform:matrix(0.235709,0.006364,-0.006748,0.249909,0,0);-ms-transform:matrix(0.235709,0.006364,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.235709,0.006364,-0.006748,0.249909,0,0);}
.m118_c00462{transform:matrix(0.235763,0.008024,-0.008504,0.249855,0,0);-ms-transform:matrix(0.235763,0.008024,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.235763,0.008024,-0.008504,0.249855,0,0);}
.m18_c00462{transform:matrix(0.235953,0.004955,-0.005249,0.249945,0,0);-ms-transform:matrix(0.235953,0.004955,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.235953,0.004955,-0.005249,0.249945,0,0);}
.m82_c00462{transform:matrix(0.236122,0.007320,-0.007746,0.249880,0,0);-ms-transform:matrix(0.236122,0.007320,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.236122,0.007320,-0.007746,0.249880,0,0);}
.mc5_c00462{transform:matrix(0.236278,0.008042,-0.008504,0.249855,0,0);-ms-transform:matrix(0.236278,0.008042,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.236278,0.008042,-0.008504,0.249855,0,0);}
.m9d_c00462{transform:matrix(0.236308,0.008043,-0.008504,0.249855,0,0);-ms-transform:matrix(0.236308,0.008043,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.236308,0.008043,-0.008504,0.249855,0,0);}
.m73_c00462{transform:matrix(0.236537,0.006623,-0.006997,0.249902,0,0);-ms-transform:matrix(0.236537,0.006623,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.236537,0.006623,-0.006997,0.249902,0,0);}
.m1a_c00462{transform:matrix(0.236553,0.004968,-0.005249,0.249945,0,0);-ms-transform:matrix(0.236553,0.004968,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.236553,0.004968,-0.005249,0.249945,0,0);}
.m32_c00462{transform:matrix(0.236597,0.006625,-0.006997,0.249902,0,0);-ms-transform:matrix(0.236597,0.006625,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.236597,0.006625,-0.006997,0.249902,0,0);}
.m12e_c00462{transform:matrix(0.236829,0.006394,-0.006748,0.249909,0,0);-ms-transform:matrix(0.236829,0.006394,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.236829,0.006394,-0.006748,0.249909,0,0);}
.m37_c00462{transform:matrix(0.236927,0.006634,-0.006997,0.249902,0,0);-ms-transform:matrix(0.236927,0.006634,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.236927,0.006634,-0.006997,0.249902,0,0);}
.m1e_c00462{transform:matrix(0.237347,0.006646,-0.006997,0.249902,0,0);-ms-transform:matrix(0.237347,0.006646,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.237347,0.006646,-0.006997,0.249902,0,0);}
.m26_c00462{transform:matrix(0.237532,0.006651,-0.006997,0.249902,0,0);-ms-transform:matrix(0.237532,0.006651,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.237532,0.006651,-0.006997,0.249902,0,0);}
.md3_c00462{transform:matrix(0.238022,0.008101,-0.008504,0.249855,0,0);-ms-transform:matrix(0.238022,0.008101,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.238022,0.008101,-0.008504,0.249855,0,0);}
.mff_c00462{transform:matrix(0.238397,0.008114,-0.008504,0.249855,0,0);-ms-transform:matrix(0.238397,0.008114,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.238397,0.008114,-0.008504,0.249855,0,0);}
.m50_c00462{transform:matrix(0.238537,0.006679,-0.006997,0.249902,0,0);-ms-transform:matrix(0.238537,0.006679,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.238537,0.006679,-0.006997,0.249902,0,0);}
.m2b_c00462{transform:matrix(0.238756,0.006685,-0.006997,0.249902,0,0);-ms-transform:matrix(0.238756,0.006685,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.238756,0.006685,-0.006997,0.249902,0,0);}
.m12c_c00462{transform:matrix(0.238848,0.006449,-0.006748,0.249909,0,0);-ms-transform:matrix(0.238848,0.006449,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.238848,0.006449,-0.006748,0.249909,0,0);}
.m69_c00462{transform:matrix(0.238956,0.006691,-0.006997,0.249902,0,0);-ms-transform:matrix(0.238956,0.006691,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.238956,0.006691,-0.006997,0.249902,0,0);}
.mf2_c00462{transform:matrix(0.239132,0.008139,-0.008504,0.249855,0,0);-ms-transform:matrix(0.239132,0.008139,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.239132,0.008139,-0.008504,0.249855,0,0);}
.mfd_c00462{transform:matrix(0.239296,0.008144,-0.008504,0.249855,0,0);-ms-transform:matrix(0.239296,0.008144,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.239296,0.008144,-0.008504,0.249855,0,0);}
.mb6_c00462{transform:matrix(0.239406,0.008148,-0.008504,0.249855,0,0);-ms-transform:matrix(0.239406,0.008148,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.239406,0.008148,-0.008504,0.249855,0,0);}
.m58_c00462{transform:matrix(0.239471,0.006705,-0.006997,0.249902,0,0);-ms-transform:matrix(0.239471,0.006705,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.239471,0.006705,-0.006997,0.249902,0,0);}
.m94_c00462{transform:matrix(0.240156,0.008173,-0.008504,0.249855,0,0);-ms-transform:matrix(0.240156,0.008173,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.240156,0.008173,-0.008504,0.249855,0,0);}
.m9c_c00462{transform:matrix(0.240496,0.008185,-0.008504,0.249855,0,0);-ms-transform:matrix(0.240496,0.008185,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.240496,0.008185,-0.008504,0.249855,0,0);}
.mf8_c00462{transform:matrix(0.240696,0.008192,-0.008504,0.249855,0,0);-ms-transform:matrix(0.240696,0.008192,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.240696,0.008192,-0.008504,0.249855,0,0);}
.m1f_c00462{transform:matrix(0.240806,0.006743,-0.006997,0.249902,0,0);-ms-transform:matrix(0.240806,0.006743,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.240806,0.006743,-0.006997,0.249902,0,0);}
.m4d_c00462{transform:matrix(0.240936,0.006746,-0.006997,0.249902,0,0);-ms-transform:matrix(0.240936,0.006746,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.240936,0.006746,-0.006997,0.249902,0,0);}
.m11f_c00462{transform:matrix(0.241070,0.008205,-0.008504,0.249855,0,0);-ms-transform:matrix(0.241070,0.008205,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.241070,0.008205,-0.008504,0.249855,0,0);}
.mbe_c00462{transform:matrix(0.241640,0.008224,-0.008504,0.249855,0,0);-ms-transform:matrix(0.241640,0.008224,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.241640,0.008224,-0.008504,0.249855,0,0);}
.ma7_c00462{transform:matrix(0.241655,0.008224,-0.008504,0.249855,0,0);-ms-transform:matrix(0.241655,0.008224,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.241655,0.008224,-0.008504,0.249855,0,0);}
.mf4_c00462{transform:matrix(0.241675,0.008225,-0.008504,0.249855,0,0);-ms-transform:matrix(0.241675,0.008225,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.241675,0.008225,-0.008504,0.249855,0,0);}
.mf6_c00462{transform:matrix(0.241730,0.008227,-0.008504,0.249855,0,0);-ms-transform:matrix(0.241730,0.008227,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.241730,0.008227,-0.008504,0.249855,0,0);}
.m91_c00462{transform:matrix(0.241800,0.008229,-0.008504,0.249855,0,0);-ms-transform:matrix(0.241800,0.008229,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.241800,0.008229,-0.008504,0.249855,0,0);}
.m4a_c00462{transform:matrix(0.242940,0.006802,-0.006997,0.249902,0,0);-ms-transform:matrix(0.242940,0.006802,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.242940,0.006802,-0.006997,0.249902,0,0);}
.m59_c00462{transform:matrix(0.243220,0.006810,-0.006997,0.249902,0,0);-ms-transform:matrix(0.243220,0.006810,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.243220,0.006810,-0.006997,0.249902,0,0);}
.mca_c00462{transform:matrix(0.243234,0.008278,-0.008504,0.249855,0,0);-ms-transform:matrix(0.243234,0.008278,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.243234,0.008278,-0.008504,0.249855,0,0);}
.m127_c00462{transform:matrix(0.243426,0.006573,-0.006748,0.249909,0,0);-ms-transform:matrix(0.243426,0.006573,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.243426,0.006573,-0.006748,0.249909,0,0);}
.m6d_c00462{transform:matrix(0.243839,0.006828,-0.006997,0.249902,0,0);-ms-transform:matrix(0.243839,0.006828,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.243839,0.006828,-0.006997,0.249902,0,0);}
.m72_c00462{transform:matrix(0.243914,0.006830,-0.006997,0.249902,0,0);-ms-transform:matrix(0.243914,0.006830,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.243914,0.006830,-0.006997,0.249902,0,0);}
.mf9_c00462{transform:matrix(0.244259,0.008313,-0.008504,0.249855,0,0);-ms-transform:matrix(0.244259,0.008313,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.244259,0.008313,-0.008504,0.249855,0,0);}
.mc2_c00462{transform:matrix(0.244334,0.008316,-0.008504,0.249855,0,0);-ms-transform:matrix(0.244334,0.008316,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.244334,0.008316,-0.008504,0.249855,0,0);}
.mc8_c00462{transform:matrix(0.244628,0.008326,-0.008504,0.249855,0,0);-ms-transform:matrix(0.244628,0.008326,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.244628,0.008326,-0.008504,0.249855,0,0);}
.m8d_c00462{transform:matrix(0.244728,0.008329,-0.008504,0.249855,0,0);-ms-transform:matrix(0.244728,0.008329,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.244728,0.008329,-0.008504,0.249855,0,0);}
.m90_c00462{transform:matrix(0.244883,0.008334,-0.008504,0.249855,0,0);-ms-transform:matrix(0.244883,0.008334,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.244883,0.008334,-0.008504,0.249855,0,0);}
.ma3_c00462{transform:matrix(0.246927,0.008404,-0.008504,0.249855,0,0);-ms-transform:matrix(0.246927,0.008404,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.246927,0.008404,-0.008504,0.249855,0,0);}
.m49_c00462{transform:matrix(0.247203,0.006922,-0.006997,0.249902,0,0);-ms-transform:matrix(0.247203,0.006922,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.247203,0.006922,-0.006997,0.249902,0,0);}
.ma_c00462{transform:matrix(0.247575,0.005694,-0.005748,0.249934,0,0);-ms-transform:matrix(0.247575,0.005694,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.247575,0.005694,-0.005748,0.249934,0,0);}
.m99_c00462{transform:matrix(0.247612,0.008427,-0.008504,0.249855,0,0);-ms-transform:matrix(0.247612,0.008427,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.247612,0.008427,-0.008504,0.249855,0,0);}
.m27_c00462{transform:matrix(0.247618,0.006933,-0.006997,0.249902,0,0);-ms-transform:matrix(0.247618,0.006933,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.247618,0.006933,-0.006997,0.249902,0,0);}
.m10f_c00462{transform:matrix(0.247849,0.011909,-0.011998,0.249712,0,0);-ms-transform:matrix(0.247849,0.011909,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.247849,0.011909,-0.011998,0.249712,0,0);}
.mc1_c00462{transform:matrix(0.248301,0.008451,-0.008504,0.249855,0,0);-ms-transform:matrix(0.248301,0.008451,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.248301,0.008451,-0.008504,0.249855,0,0);}
.m43_c00462{transform:matrix(0.248488,0.006958,-0.006997,0.249902,0,0);-ms-transform:matrix(0.248488,0.006958,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.248488,0.006958,-0.006997,0.249902,0,0);}
.mab_c00462{transform:matrix(0.248491,0.008457,-0.008504,0.249855,0,0);-ms-transform:matrix(0.248491,0.008457,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.248491,0.008457,-0.008504,0.249855,0,0);}
.m14_c00462{transform:matrix(0.248580,0.005220,-0.005249,0.249945,0,0);-ms-transform:matrix(0.248580,0.005220,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.248580,0.005220,-0.005249,0.249945,0,0);}
.ma6_c00462{transform:matrix(0.248731,0.008465,-0.008504,0.249855,0,0);-ms-transform:matrix(0.248731,0.008465,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.248731,0.008465,-0.008504,0.249855,0,0);}
.m8b_c00462{transform:matrix(0.248966,0.008473,-0.008504,0.249855,0,0);-ms-transform:matrix(0.248966,0.008473,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.248966,0.008473,-0.008504,0.249855,0,0);}
.m97_c00462{transform:matrix(0.249615,0.008495,-0.008504,0.249855,0,0);-ms-transform:matrix(0.249615,0.008495,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.249615,0.008495,-0.008504,0.249855,0,0);}
.m8f_c00462{transform:matrix(0.249835,0.008503,-0.008504,0.249855,0,0);-ms-transform:matrix(0.249835,0.008503,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.249835,0.008503,-0.008504,0.249855,0,0);}
.m102_c00462{transform:matrix(0.249870,0.008504,-0.008504,0.249855,0,0);-ms-transform:matrix(0.249870,0.008504,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.249870,0.008504,-0.008504,0.249855,0,0);}
.m39_c00462{transform:matrix(0.250007,0.007000,-0.006997,0.249902,0,0);-ms-transform:matrix(0.250007,0.007000,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.250007,0.007000,-0.006997,0.249902,0,0);}
.mad_c00462{transform:matrix(0.250010,0.008509,-0.008504,0.249855,0,0);-ms-transform:matrix(0.250010,0.008509,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.250010,0.008509,-0.008504,0.249855,0,0);}
.m8e_c00462{transform:matrix(0.250035,0.008510,-0.008504,0.249855,0,0);-ms-transform:matrix(0.250035,0.008510,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.250035,0.008510,-0.008504,0.249855,0,0);}
.m5c_c00462{transform:matrix(0.250057,0.007002,-0.006997,0.249902,0,0);-ms-transform:matrix(0.250057,0.007002,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.250057,0.007002,-0.006997,0.249902,0,0);}
.ma0_c00462{transform:matrix(0.250775,0.008535,-0.008504,0.249855,0,0);-ms-transform:matrix(0.250775,0.008535,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.250775,0.008535,-0.008504,0.249855,0,0);}
.mb9_c00462{transform:matrix(0.250785,0.008535,-0.008504,0.249855,0,0);-ms-transform:matrix(0.250785,0.008535,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.250785,0.008535,-0.008504,0.249855,0,0);}
.m1_c00462{transform:matrix(0.250810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250810,0.000000,0.000000,0.250000,0,0);}
.m13_c00462{transform:matrix(0.252094,0.005294,-0.005249,0.249945,0,0);-ms-transform:matrix(0.252094,0.005294,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.252094,0.005294,-0.005249,0.249945,0,0);}
.mb7_c00462{transform:matrix(0.252444,0.008592,-0.008504,0.249855,0,0);-ms-transform:matrix(0.252444,0.008592,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.252444,0.008592,-0.008504,0.249855,0,0);}
.mfb_c00462{transform:matrix(0.252734,0.008602,-0.008504,0.249855,0,0);-ms-transform:matrix(0.252734,0.008602,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.252734,0.008602,-0.008504,0.249855,0,0);}
.m76_c00462{transform:matrix(0.253041,0.007085,-0.006997,0.249902,0,0);-ms-transform:matrix(0.253041,0.007085,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.253041,0.007085,-0.006997,0.249902,0,0);}
.m38_c00462{transform:matrix(0.253081,0.007086,-0.006997,0.249902,0,0);-ms-transform:matrix(0.253081,0.007086,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.253081,0.007086,-0.006997,0.249902,0,0);}
.m93_c00462{transform:matrix(0.253638,0.008632,-0.008504,0.249855,0,0);-ms-transform:matrix(0.253638,0.008632,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.253638,0.008632,-0.008504,0.249855,0,0);}
.m7b_c00462{transform:matrix(0.253821,0.007107,-0.006997,0.249902,0,0);-ms-transform:matrix(0.253821,0.007107,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.253821,0.007107,-0.006997,0.249902,0,0);}
.m3b_c00462{transform:matrix(0.255910,0.007165,-0.006997,0.249902,0,0);-ms-transform:matrix(0.255910,0.007165,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.255910,0.007165,-0.006997,0.249902,0,0);}
.mbd_c00462{transform:matrix(0.256641,0.008735,-0.008504,0.249855,0,0);-ms-transform:matrix(0.256641,0.008735,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.256641,0.008735,-0.008504,0.249855,0,0);}
.ma9_c00462{transform:matrix(0.257176,0.008753,-0.008504,0.249855,0,0);-ms-transform:matrix(0.257176,0.008753,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.257176,0.008753,-0.008504,0.249855,0,0);}
.m10b_c00462{transform:matrix(0.257268,0.012361,-0.011998,0.249712,0,0);-ms-transform:matrix(0.257268,0.012361,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.257268,0.012361,-0.011998,0.249712,0,0);}
.mc6_c00462{transform:matrix(0.257596,0.008767,-0.008504,0.249855,0,0);-ms-transform:matrix(0.257596,0.008767,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.257596,0.008767,-0.008504,0.249855,0,0);}
.m96_c00462{transform:matrix(0.257921,0.008778,-0.008504,0.249855,0,0);-ms-transform:matrix(0.257921,0.008778,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.257921,0.008778,-0.008504,0.249855,0,0);}
.m29_c00462{transform:matrix(0.258639,0.007242,-0.006997,0.249902,0,0);-ms-transform:matrix(0.258639,0.007242,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.258639,0.007242,-0.006997,0.249902,0,0);}
.m47_c00462{transform:matrix(0.259418,0.007264,-0.006997,0.249902,0,0);-ms-transform:matrix(0.259418,0.007264,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.259418,0.007264,-0.006997,0.249902,0,0);}
.m57_c00462{transform:matrix(0.259923,0.007278,-0.006997,0.249902,0,0);-ms-transform:matrix(0.259923,0.007278,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.259923,0.007278,-0.006997,0.249902,0,0);}
.m19_c00462{transform:matrix(0.259968,0.005459,-0.005249,0.249945,0,0);-ms-transform:matrix(0.259968,0.005459,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.259968,0.005459,-0.005249,0.249945,0,0);}
.m5d_c00462{transform:matrix(0.260688,0.007299,-0.006997,0.249902,0,0);-ms-transform:matrix(0.260688,0.007299,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.260688,0.007299,-0.006997,0.249902,0,0);}
.m42_c00462{transform:matrix(0.260948,0.007307,-0.006997,0.249902,0,0);-ms-transform:matrix(0.260948,0.007307,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.260948,0.007307,-0.006997,0.249902,0,0);}
.m55_c00462{transform:matrix(0.261198,0.007314,-0.006997,0.249902,0,0);-ms-transform:matrix(0.261198,0.007314,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.261198,0.007314,-0.006997,0.249902,0,0);}
.m4c_c00462{transform:matrix(0.261587,0.007324,-0.006997,0.249902,0,0);-ms-transform:matrix(0.261587,0.007324,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.261587,0.007324,-0.006997,0.249902,0,0);}
.m71_c00462{transform:matrix(0.262362,0.007346,-0.006997,0.249902,0,0);-ms-transform:matrix(0.262362,0.007346,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.262362,0.007346,-0.006997,0.249902,0,0);}
.m70_c00462{transform:matrix(0.262412,0.007348,-0.006997,0.249902,0,0);-ms-transform:matrix(0.262412,0.007348,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.262412,0.007348,-0.006997,0.249902,0,0);}
.m41_c00462{transform:matrix(0.263132,0.007368,-0.006997,0.249902,0,0);-ms-transform:matrix(0.263132,0.007368,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.263132,0.007368,-0.006997,0.249902,0,0);}
.m45_c00462{transform:matrix(0.263197,0.007370,-0.006997,0.249902,0,0);-ms-transform:matrix(0.263197,0.007370,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.263197,0.007370,-0.006997,0.249902,0,0);}
.m7a_c00462{transform:matrix(0.263397,0.007375,-0.006997,0.249902,0,0);-ms-transform:matrix(0.263397,0.007375,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.263397,0.007375,-0.006997,0.249902,0,0);}
.m3f_c00462{transform:matrix(0.263532,0.007379,-0.006997,0.249902,0,0);-ms-transform:matrix(0.263532,0.007379,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.263532,0.007379,-0.006997,0.249902,0,0);}
.m9a_c00462{transform:matrix(0.263782,0.008978,-0.008504,0.249855,0,0);-ms-transform:matrix(0.263782,0.008978,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.263782,0.008978,-0.008504,0.249855,0,0);}
.m5a_c00462{transform:matrix(0.264191,0.007397,-0.006997,0.249902,0,0);-ms-transform:matrix(0.264191,0.007397,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.264191,0.007397,-0.006997,0.249902,0,0);}
.m116_c00462{transform:matrix(0.264563,0.010328,-0.009752,0.249810,0,0);-ms-transform:matrix(0.264563,0.010328,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.264563,0.010328,-0.009752,0.249810,0,0);}
.mbb_c00462{transform:matrix(0.264612,0.009006,-0.008504,0.249855,0,0);-ms-transform:matrix(0.264612,0.009006,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.264612,0.009006,-0.008504,0.249855,0,0);}
.m56_c00462{transform:matrix(0.264951,0.007419,-0.006997,0.249902,0,0);-ms-transform:matrix(0.264951,0.007419,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.264951,0.007419,-0.006997,0.249902,0,0);}
.me_c00462{transform:matrix(0.265000,0.006095,-0.005748,0.249934,0,0);-ms-transform:matrix(0.265000,0.006095,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.265000,0.006095,-0.005748,0.249934,0,0);}
.mb1_c00462{transform:matrix(0.265311,0.009030,-0.008504,0.249855,0,0);-ms-transform:matrix(0.265311,0.009030,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.265311,0.009030,-0.008504,0.249855,0,0);}
.mb5_c00462{transform:matrix(0.265486,0.009036,-0.008504,0.249855,0,0);-ms-transform:matrix(0.265486,0.009036,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.265486,0.009036,-0.008504,0.249855,0,0);}
.m48_c00462{transform:matrix(0.266031,0.007449,-0.006997,0.249902,0,0);-ms-transform:matrix(0.266031,0.007449,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.266031,0.007449,-0.006997,0.249902,0,0);}
.m24_c00462{transform:matrix(0.266146,0.007452,-0.006997,0.249902,0,0);-ms-transform:matrix(0.266146,0.007452,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.266146,0.007452,-0.006997,0.249902,0,0);}
.m6e_c00462{transform:matrix(0.266181,0.007453,-0.006997,0.249902,0,0);-ms-transform:matrix(0.266181,0.007453,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.266181,0.007453,-0.006997,0.249902,0,0);}
.mc3_c00462{transform:matrix(0.266671,0.009076,-0.008504,0.249855,0,0);-ms-transform:matrix(0.266671,0.009076,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.266671,0.009076,-0.008504,0.249855,0,0);}
.m5b_c00462{transform:matrix(0.266675,0.007467,-0.006997,0.249902,0,0);-ms-transform:matrix(0.266675,0.007467,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.266675,0.007467,-0.006997,0.249902,0,0);}
.m124_c00462{transform:matrix(0.267313,0.007217,-0.006748,0.249909,0,0);-ms-transform:matrix(0.267313,0.007217,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.267313,0.007217,-0.006748,0.249909,0,0);}
.m103_c00462{transform:matrix(0.267395,0.009101,-0.008504,0.249855,0,0);-ms-transform:matrix(0.267395,0.009101,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.267395,0.009101,-0.008504,0.249855,0,0);}
.mfe_c00462{transform:matrix(0.267795,0.009114,-0.008504,0.249855,0,0);-ms-transform:matrix(0.267795,0.009114,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.267795,0.009114,-0.008504,0.249855,0,0);}
.mb3_c00462{transform:matrix(0.268415,0.009135,-0.008504,0.249855,0,0);-ms-transform:matrix(0.268415,0.009135,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.268415,0.009135,-0.008504,0.249855,0,0);}
.mc4_c00462{transform:matrix(0.268674,0.009144,-0.008504,0.249855,0,0);-ms-transform:matrix(0.268674,0.009144,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.268674,0.009144,-0.008504,0.249855,0,0);}
.m5f_c00462{transform:matrix(0.269249,0.007539,-0.006997,0.249902,0,0);-ms-transform:matrix(0.269249,0.007539,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.269249,0.007539,-0.006997,0.249902,0,0);}
.m112_c00462{transform:matrix(0.269264,0.012938,-0.011998,0.249712,0,0);-ms-transform:matrix(0.269264,0.012938,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.269264,0.012938,-0.011998,0.249712,0,0);}
.m9f_c00462{transform:matrix(0.269579,0.009175,-0.008504,0.249855,0,0);-ms-transform:matrix(0.269579,0.009175,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.269579,0.009175,-0.008504,0.249855,0,0);}
.m75_c00462{transform:matrix(0.270019,0.007561,-0.006997,0.249902,0,0);-ms-transform:matrix(0.270019,0.007561,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.270019,0.007561,-0.006997,0.249902,0,0);}
.mba_c00462{transform:matrix(0.270099,0.009193,-0.008504,0.249855,0,0);-ms-transform:matrix(0.270099,0.009193,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.270099,0.009193,-0.008504,0.249855,0,0);}
.m100_c00462{transform:matrix(0.270643,0.009211,-0.008504,0.249855,0,0);-ms-transform:matrix(0.270643,0.009211,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.270643,0.009211,-0.008504,0.249855,0,0);}
.m3c_c00462{transform:matrix(0.270789,0.007582,-0.006997,0.249902,0,0);-ms-transform:matrix(0.270789,0.007582,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.270789,0.007582,-0.006997,0.249902,0,0);}
.mc0_c00462{transform:matrix(0.271403,0.009237,-0.008504,0.249855,0,0);-ms-transform:matrix(0.271403,0.009237,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.271403,0.009237,-0.008504,0.249855,0,0);}
.m4e_c00462{transform:matrix(0.271454,0.007601,-0.006997,0.249902,0,0);-ms-transform:matrix(0.271454,0.007601,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.271454,0.007601,-0.006997,0.249902,0,0);}
.m121_c00462{transform:matrix(0.272791,0.007365,-0.006748,0.249909,0,0);-ms-transform:matrix(0.272791,0.007365,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.272791,0.007365,-0.006748,0.249909,0,0);}
.m6b_c00462{transform:matrix(0.273133,0.007648,-0.006997,0.249902,0,0);-ms-transform:matrix(0.273133,0.007648,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.273133,0.007648,-0.006997,0.249902,0,0);}
.m120_c00462{transform:matrix(0.273520,0.007385,-0.006748,0.249909,0,0);-ms-transform:matrix(0.273520,0.007385,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.273520,0.007385,-0.006748,0.249909,0,0);}
.mac_c00462{transform:matrix(0.273707,0.009315,-0.008504,0.249855,0,0);-ms-transform:matrix(0.273707,0.009315,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.273707,0.009315,-0.008504,0.249855,0,0);}
.mb0_c00462{transform:matrix(0.274366,0.009338,-0.008504,0.249855,0,0);-ms-transform:matrix(0.274366,0.009338,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.274366,0.009338,-0.008504,0.249855,0,0);}
.mcb_c00462{transform:matrix(0.274376,0.009338,-0.008504,0.249855,0,0);-ms-transform:matrix(0.274376,0.009338,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.274376,0.009338,-0.008504,0.249855,0,0);}
.m54_c00462{transform:matrix(0.274747,0.007693,-0.006997,0.249902,0,0);-ms-transform:matrix(0.274747,0.007693,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.274747,0.007693,-0.006997,0.249902,0,0);}
.m17_c00462{transform:matrix(0.275029,0.005776,-0.005249,0.249945,0,0);-ms-transform:matrix(0.275029,0.005776,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.275029,0.005776,-0.005249,0.249945,0,0);}
.m52_c00462{transform:matrix(0.275097,0.007703,-0.006997,0.249902,0,0);-ms-transform:matrix(0.275097,0.007703,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.275097,0.007703,-0.006997,0.249902,0,0);}
.mae_c00462{transform:matrix(0.275905,0.009390,-0.008504,0.249855,0,0);-ms-transform:matrix(0.275905,0.009390,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.275905,0.009390,-0.008504,0.249855,0,0);}
.m51_c00462{transform:matrix(0.276247,0.007735,-0.006997,0.249902,0,0);-ms-transform:matrix(0.276247,0.007735,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.276247,0.007735,-0.006997,0.249902,0,0);}
.m5e_c00462{transform:matrix(0.276477,0.007741,-0.006997,0.249902,0,0);-ms-transform:matrix(0.276477,0.007741,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.276477,0.007741,-0.006997,0.249902,0,0);}
.m53_c00462{transform:matrix(0.276567,0.007744,-0.006997,0.249902,0,0);-ms-transform:matrix(0.276567,0.007744,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.276567,0.007744,-0.006997,0.249902,0,0);}
.mb_c00462{transform:matrix(0.276782,0.006366,-0.005748,0.249934,0,0);-ms-transform:matrix(0.276782,0.006366,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.276782,0.006366,-0.005748,0.249934,0,0);}
.mb4_c00462{transform:matrix(0.276965,0.009426,-0.008504,0.249855,0,0);-ms-transform:matrix(0.276965,0.009426,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.276965,0.009426,-0.008504,0.249855,0,0);}
.m114_c00462{transform:matrix(0.277540,0.013335,-0.011998,0.249712,0,0);-ms-transform:matrix(0.277540,0.013335,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.277540,0.013335,-0.011998,0.249712,0,0);}
.mc9_c00462{transform:matrix(0.277929,0.009459,-0.008504,0.249855,0,0);-ms-transform:matrix(0.277929,0.009459,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.277929,0.009459,-0.008504,0.249855,0,0);}
.m113_c00462{transform:matrix(0.278474,0.013380,-0.011998,0.249712,0,0);-ms-transform:matrix(0.278474,0.013380,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.278474,0.013380,-0.011998,0.249712,0,0);}
.m87_c00462{transform:matrix(0.279951,0.008678,-0.007746,0.249880,0,0);-ms-transform:matrix(0.279951,0.008678,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.279951,0.008678,-0.007746,0.249880,0,0);}
.m98_c00462{transform:matrix(0.280088,0.009533,-0.008504,0.249855,0,0);-ms-transform:matrix(0.280088,0.009533,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.280088,0.009533,-0.008504,0.249855,0,0);}
.m115_c00462{transform:matrix(0.280861,0.010965,-0.009752,0.249810,0,0);-ms-transform:matrix(0.280861,0.010965,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.280861,0.010965,-0.009752,0.249810,0,0);}
.m110_c00462{transform:matrix(0.281236,0.013513,-0.011998,0.249712,0,0);-ms-transform:matrix(0.281236,0.013513,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.281236,0.013513,-0.011998,0.249712,0,0);}
.m3a_c00462{transform:matrix(0.283904,0.007949,-0.006997,0.249902,0,0);-ms-transform:matrix(0.283904,0.007949,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.283904,0.007949,-0.006997,0.249902,0,0);}
.m6a_c00462{transform:matrix(0.284568,0.007968,-0.006997,0.249902,0,0);-ms-transform:matrix(0.284568,0.007968,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.284568,0.007968,-0.006997,0.249902,0,0);}
.m88_c00462{transform:matrix(0.288766,0.008952,-0.007746,0.249880,0,0);-ms-transform:matrix(0.288766,0.008952,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.288766,0.008952,-0.007746,0.249880,0,0);}
.m6c_c00462{transform:matrix(0.289956,0.008119,-0.006997,0.249902,0,0);-ms-transform:matrix(0.289956,0.008119,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.289956,0.008119,-0.006997,0.249902,0,0);}
.mf_c00462{transform:matrix(0.291463,0.006704,-0.005748,0.249934,0,0);-ms-transform:matrix(0.291463,0.006704,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.291463,0.006704,-0.005748,0.249934,0,0);}
.m7f_c00462{transform:matrix(0.292694,0.009074,-0.007746,0.249880,0,0);-ms-transform:matrix(0.292694,0.009074,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.292694,0.009074,-0.007746,0.249880,0,0);}
.m10_c00462{transform:matrix(0.293217,0.006744,-0.005748,0.249934,0,0);-ms-transform:matrix(0.293217,0.006744,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.293217,0.006744,-0.005748,0.249934,0,0);}
.m3d_c00462{transform:matrix(0.295214,0.008266,-0.006997,0.249902,0,0);-ms-transform:matrix(0.295214,0.008266,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.295214,0.008266,-0.006997,0.249902,0,0);}
.m74_c00462{transform:matrix(0.296399,0.008299,-0.006997,0.249902,0,0);-ms-transform:matrix(0.296399,0.008299,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.296399,0.008299,-0.006997,0.249902,0,0);}
.m9_c00462{transform:matrix(0.297296,0.006838,-0.005748,0.249934,0,0);-ms-transform:matrix(0.297296,0.006838,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.297296,0.006838,-0.005748,0.249934,0,0);}
.m6f_c00462{transform:matrix(0.298138,0.008348,-0.006997,0.249902,0,0);-ms-transform:matrix(0.298138,0.008348,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.298138,0.008348,-0.006997,0.249902,0,0);}
.mc_c00462{transform:matrix(0.299376,0.006886,-0.005748,0.249934,0,0);-ms-transform:matrix(0.299376,0.006886,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.299376,0.006886,-0.005748,0.249934,0,0);}
.m85_c00462{transform:matrix(0.299691,0.009290,-0.007746,0.249880,0,0);-ms-transform:matrix(0.299691,0.009290,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.299691,0.009290,-0.007746,0.249880,0,0);}
.m40_c00462{transform:matrix(0.302117,0.008459,-0.006997,0.249902,0,0);-ms-transform:matrix(0.302117,0.008459,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.302117,0.008459,-0.006997,0.249902,0,0);}
.m89_c00462{transform:matrix(0.302270,0.010287,-0.008504,0.249855,0,0);-ms-transform:matrix(0.302270,0.010287,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.302270,0.010287,-0.008504,0.249855,0,0);}
.mc7_c00462{transform:matrix(0.304834,0.010375,-0.008504,0.249855,0,0);-ms-transform:matrix(0.304834,0.010375,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.304834,0.010375,-0.008504,0.249855,0,0);}
.m3e_c00462{transform:matrix(0.305360,0.008550,-0.006997,0.249902,0,0);-ms-transform:matrix(0.305360,0.008550,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.305360,0.008550,-0.006997,0.249902,0,0);}
.m11_c00462{transform:matrix(0.306879,0.007058,-0.005748,0.249934,0,0);-ms-transform:matrix(0.306879,0.007058,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.306879,0.007058,-0.005748,0.249934,0,0);}
.m9b_c00462{transform:matrix(0.308092,0.010486,-0.008504,0.249855,0,0);-ms-transform:matrix(0.308092,0.010486,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.308092,0.010486,-0.008504,0.249855,0,0);}
.m8c_c00462{transform:matrix(0.316372,0.010767,-0.008504,0.249855,0,0);-ms-transform:matrix(0.316372,0.010767,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.316372,0.010767,-0.008504,0.249855,0,0);}
.m16_c00462{transform:matrix(0.335126,0.007038,-0.005249,0.249945,0,0);-ms-transform:matrix(0.335126,0.007038,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.335126,0.007038,-0.005249,0.249945,0,0);}
.m80_c00462{transform:matrix(0.362796,0.011247,-0.007746,0.249880,0,0);-ms-transform:matrix(0.362796,0.011247,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.362796,0.011247,-0.007746,0.249880,0,0);}
.v0_c00462{vertical-align:0.000000px;}
.ls0_c00462{letter-spacing:0.000000px;}
.sc__c00462{text-shadow:none;}
.sc0_c00462{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__c00462{-webkit-text-stroke:0px transparent;}
.sc0_c00462{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00462{word-spacing:0.000000px;}
.fc0_c00462{color:transparent;}
.fs2_c00462{font-size:66.017455px;}
.fs6_c00462{font-size:66.025867px;}
.fs9_c00462{font-size:66.031705px;}
.fsa_c00462{font-size:71.969646px;}
.fs10_c00462{font-size:71.982790px;}
.fsf_c00462{font-size:72.010979px;}
.fs11_c00462{font-size:72.026239px;}
.fs7_c00462{font-size:72.028218px;}
.fsb_c00462{font-size:77.967116px;}
.fse_c00462{font-size:78.011894px;}
.fs3_c00462{font-size:78.017197px;}
.fs12_c00462{font-size:78.028426px;}
.fs5_c00462{font-size:78.030570px;}
.fsc_c00462{font-size:83.964587px;}
.fs4_c00462{font-size:84.032922px;}
.fs8_c00462{font-size:84.040352px;}
.fsd_c00462{font-size:89.962057px;}
.fs1_c00462{font-size:90.023802px;}
.fs0_c00462{font-size:96.000000px;}
.y0_c00462{bottom:0.000000px;}
.y132_c00462{bottom:74.001249px;}
.y131_c00462{bottom:75.235206px;}
.y130_c00462{bottom:76.763244px;}
.y12f_c00462{bottom:78.632830px;}
.y12e_c00462{bottom:79.548406px;}
.y12d_c00462{bottom:80.184441px;}
.y12c_c00462{bottom:81.092929px;}
.y12b_c00462{bottom:82.008910px;}
.y12a_c00462{bottom:84.156580px;}
.y129_c00462{bottom:86.316400px;}
.y128_c00462{bottom:87.208404px;}
.y127_c00462{bottom:116.413992px;}
.y126_c00462{bottom:117.559494px;}
.y125_c00462{bottom:118.785348px;}
.y124_c00462{bottom:121.776313px;}
.y123_c00462{bottom:125.289000px;}
.y122_c00462{bottom:157.911924px;}
.y121_c00462{bottom:161.249823px;}
.y120_c00462{bottom:163.944561px;}
.y11f_c00462{bottom:165.046161px;}
.y11e_c00462{bottom:167.277462px;}
.y11d_c00462{bottom:168.405327px;}
.y11c_c00462{bottom:171.761892px;}
.y11b_c00462{bottom:175.482648px;}
.y11a_c00462{bottom:176.592000px;}
.y119_c00462{bottom:192.170828px;}
.y118_c00462{bottom:197.394000px;}
.y117_c00462{bottom:204.419465px;}
.y116_c00462{bottom:207.857833px;}
.y115_c00462{bottom:210.558315px;}
.y114_c00462{bottom:211.588743px;}
.y113_c00462{bottom:214.338283px;}
.y112_c00462{bottom:216.008985px;}
.y111_c00462{bottom:227.191008px;}
.y110_c00462{bottom:228.801144px;}
.y10f_c00462{bottom:231.459888px;}
.y10e_c00462{bottom:236.779824px;}
.y10d_c00462{bottom:238.957680px;}
.y10c_c00462{bottom:241.573296px;}
.y10b_c00462{bottom:243.154488px;}
.y10a_c00462{bottom:246.311832px;}
.y109_c00462{bottom:247.901664px;}
.y108_c00462{bottom:249.511224px;}
.y107_c00462{bottom:251.130000px;}
.y106_c00462{bottom:276.921169px;}
.y105_c00462{bottom:278.213431px;}
.y104_c00462{bottom:278.971876px;}
.y103_c00462{bottom:280.757275px;}
.y102_c00462{bottom:281.497803px;}
.y101_c00462{bottom:283.528776px;}
.y100_c00462{bottom:284.739231px;}
.yff_c00462{bottom:305.884146px;}
.yfe_c00462{bottom:307.696948px;}
.yfd_c00462{bottom:308.534145px;}
.yfc_c00462{bottom:310.004113px;}
.yfb_c00462{bottom:312.267013px;}
.yfa_c00462{bottom:313.425937px;}
.yf9_c00462{bottom:315.175581px;}
.yf8_c00462{bottom:316.587745px;}
.yf7_c00462{bottom:319.124392px;}
.yf6_c00462{bottom:320.006529px;}
.yf5_c00462{bottom:321.713865px;}
.yf4_c00462{bottom:335.324332px;}
.yf3_c00462{bottom:336.693090px;}
.yf2_c00462{bottom:338.464099px;}
.yf1_c00462{bottom:341.132730px;}
.yf0_c00462{bottom:342.466117px;}
.yef_c00462{bottom:345.118542px;}
.yee_c00462{bottom:346.421016px;}
.yed_c00462{bottom:347.750731px;}
.yec_c00462{bottom:349.083762px;}
.yeb_c00462{bottom:350.844807px;}
.yea_c00462{bottom:353.494324px;}
.ye9_c00462{bottom:354.808548px;}
.ye8_c00462{bottom:357.398431px;}
.ye7_c00462{bottom:360.041299px;}
.ye6_c00462{bottom:373.167060px;}
.ye5_c00462{bottom:374.067244px;}
.ye4_c00462{bottom:376.279296px;}
.ye3_c00462{bottom:377.193823px;}
.ye2_c00462{bottom:379.403580px;}
.ye1_c00462{bottom:380.926951px;}
.ye0_c00462{bottom:381.847599px;}
.ydf_c00462{bottom:383.065758px;}
.yde_c00462{bottom:386.147319px;}
.ydd_c00462{bottom:387.373414px;}
.ydc_c00462{bottom:389.860953px;}
.ydb_c00462{bottom:391.075765px;}
.yda_c00462{bottom:407.453667px;}
.yd9_c00462{bottom:408.923827px;}
.yd8_c00462{bottom:410.353717px;}
.yd7_c00462{bottom:412.481047px;}
.yd6_c00462{bottom:413.178060px;}
.yd5_c00462{bottom:415.639575px;}
.yd4_c00462{bottom:417.446572px;}
.yd3_c00462{bottom:419.100330px;}
.yd2_c00462{bottom:421.994841px;}
.yd1_c00462{bottom:423.023131px;}
.yd0_c00462{bottom:424.815288px;}
.ycf_c00462{bottom:427.246987px;}
.yce_c00462{bottom:445.454952px;}
.ycd_c00462{bottom:446.603136px;}
.ycc_c00462{bottom:449.675691px;}
.ycb_c00462{bottom:451.245393px;}
.yca_c00462{bottom:452.807649px;}
.yc9_c00462{bottom:455.858988px;}
.yc8_c00462{bottom:458.167494px;}
.yc7_c00462{bottom:459.745866px;}
.yc6_c00462{bottom:462.799296px;}
.yc5_c00462{bottom:465.840690px;}
.yc4_c00462{bottom:481.810108px;}
.yc3_c00462{bottom:483.150853px;}
.yc2_c00462{bottom:485.706105px;}
.yc1_c00462{bottom:486.637726px;}
.yc0_c00462{bottom:487.965250px;}
.ybf_c00462{bottom:489.827422px;}
.ybe_c00462{bottom:490.760625px;}
.ybd_c00462{bottom:492.758674px;}
.ybc_c00462{bottom:493.694274px;}
.ybb_c00462{bottom:495.966079px;}
.yba_c00462{bottom:497.510631px;}
.yb9_c00462{bottom:498.457615px;}
.yb8_c00462{bottom:499.143810px;}
.yb7_c00462{bottom:500.381922px;}
.yb6_c00462{bottom:517.630543px;}
.yb5_c00462{bottom:520.828941px;}
.yb4_c00462{bottom:523.107102px;}
.yb3_c00462{bottom:524.042956px;}
.yb2_c00462{bottom:525.672942px;}
.yb1_c00462{bottom:527.903025px;}
.yb0_c00462{bottom:528.530655px;}
.yaf_c00462{bottom:531.698154px;}
.yae_c00462{bottom:532.377177px;}
.yad_c00462{bottom:535.204706px;}
.yac_c00462{bottom:554.200098px;}
.yab_c00462{bottom:555.248017px;}
.yaa_c00462{bottom:557.934219px;}
.ya9_c00462{bottom:559.852227px;}
.ya8_c00462{bottom:561.871498px;}
.ya7_c00462{bottom:564.811761px;}
.ya6_c00462{bottom:566.152117px;}
.ya5_c00462{bottom:567.772588px;}
.ya4_c00462{bottom:570.130374px;}
.ya3_c00462{bottom:571.093413px;}
.ya2_c00462{bottom:586.500423px;}
.ya1_c00462{bottom:587.663800px;}
.ya0_c00462{bottom:590.069202px;}
.y9f_c00462{bottom:591.123984px;}
.y9e_c00462{bottom:592.121979px;}
.y9d_c00462{bottom:593.183646px;}
.y9c_c00462{bottom:594.509977px;}
.y9b_c00462{bottom:596.929945px;}
.y9a_c00462{bottom:597.614120px;}
.y99_c00462{bottom:601.652737px;}
.y98_c00462{bottom:602.380356px;}
.y97_c00462{bottom:604.099543px;}
.y96_c00462{bottom:605.054145px;}
.y95_c00462{bottom:606.451575px;}
.y94_c00462{bottom:623.396199px;}
.y93_c00462{bottom:624.554715px;}
.y92_c00462{bottom:626.112867px;}
.y91_c00462{bottom:627.568407px;}
.y90_c00462{bottom:629.452041px;}
.y8f_c00462{bottom:631.683699px;}
.y8e_c00462{bottom:632.479401px;}
.y8d_c00462{bottom:636.238917px;}
.y8c_c00462{bottom:637.340619px;}
.y8b_c00462{bottom:638.040186px;}
.y8a_c00462{bottom:641.004000px;}
.y89_c00462{bottom:672.517512px;}
.y88_c00462{bottom:673.680792px;}
.y87_c00462{bottom:674.355031px;}
.y86_c00462{bottom:676.879298px;}
.y85_c00462{bottom:695.638510px;}
.y84_c00462{bottom:696.992265px;}
.y83_c00462{bottom:699.759759px;}
.y82_c00462{bottom:700.762392px;}
.y81_c00462{bottom:701.485421px;}
.y80_c00462{bottom:704.902194px;}
.y7f_c00462{bottom:707.620863px;}
.y7e_c00462{bottom:709.605948px;}
.y7d_c00462{bottom:710.653500px;}
.y7c_c00462{bottom:738.817716px;}
.y7b_c00462{bottom:742.519236px;}
.y7a_c00462{bottom:743.054700px;}
.y79_c00462{bottom:744.600042px;}
.y78_c00462{bottom:745.415880px;}
.y77_c00462{bottom:747.519432px;}
.y76_c00462{bottom:766.766538px;}
.y75_c00462{bottom:769.263312px;}
.y74_c00462{bottom:770.206674px;}
.y73_c00462{bottom:771.159486px;}
.y72_c00462{bottom:772.385214px;}
.y71_c00462{bottom:773.302578px;}
.y70_c00462{bottom:775.781922px;}
.y6f_c00462{bottom:776.690466px;}
.y6e_c00462{bottom:777.587838px;}
.y6d_c00462{bottom:780.068652px;}
.y6c_c00462{bottom:781.598124px;}
.y6b_c00462{bottom:783.714084px;}
.y6a_c00462{bottom:805.376070px;}
.y69_c00462{bottom:807.058056px;}
.y68_c00462{bottom:807.868596px;}
.y67_c00462{bottom:809.825748px;}
.y66_c00462{bottom:810.657258px;}
.y65_c00462{bottom:812.277582px;}
.y64_c00462{bottom:813.094926px;}
.y63_c00462{bottom:814.443498px;}
.y62_c00462{bottom:817.192266px;}
.y61_c00462{bottom:818.558616px;}
.y60_c00462{bottom:839.952786px;}
.y5f_c00462{bottom:842.119086px;}
.y5e_c00462{bottom:843.174774px;}
.y5d_c00462{bottom:844.990296px;}
.y5c_c00462{bottom:845.559984px;}
.y5b_c00462{bottom:847.629732px;}
.y5a_c00462{bottom:849.497688px;}
.y59_c00462{bottom:850.560906px;}
.y58_c00462{bottom:851.621562px;}
.y57_c00462{bottom:853.670946px;}
.y56_c00462{bottom:875.535654px;}
.y55_c00462{bottom:877.230138px;}
.y54_c00462{bottom:879.720942px;}
.y53_c00462{bottom:882.458568px;}
.y52_c00462{bottom:885.206202px;}
.y51_c00462{bottom:888.197412px;}
.y50_c00462{bottom:889.601388px;}
.y4f_c00462{bottom:890.402466px;}
.y4e_c00462{bottom:911.818440px;}
.y4d_c00462{bottom:912.837666px;}
.y4c_c00462{bottom:914.385156px;}
.y4b_c00462{bottom:915.142728px;}
.y4a_c00462{bottom:916.166742px;}
.y49_c00462{bottom:916.681722px;}
.y48_c00462{bottom:918.435876px;}
.y47_c00462{bottom:920.186376px;}
.y46_c00462{bottom:920.962842px;}
.y45_c00462{bottom:922.962108px;}
.y44_c00462{bottom:923.713116px;}
.y43_c00462{bottom:924.974430px;}
.y42_c00462{bottom:945.095058px;}
.y41_c00462{bottom:946.258590px;}
.y40_c00462{bottom:949.405272px;}
.y3f_c00462{bottom:950.022426px;}
.y3e_c00462{bottom:953.430390px;}
.y3d_c00462{bottom:955.994298px;}
.y3c_c00462{bottom:957.693486px;}
.y3b_c00462{bottom:958.856262px;}
.y3a_c00462{bottom:960.823200px;}
.y39_c00462{bottom:961.705782px;}
.y38_c00462{bottom:981.658344px;}
.y37_c00462{bottom:983.610450px;}
.y36_c00462{bottom:984.529674px;}
.y35_c00462{bottom:987.077634px;}
.y34_c00462{bottom:988.472100px;}
.y33_c00462{bottom:989.167968px;}
.y32_c00462{bottom:991.908624px;}
.y31_c00462{bottom:993.309444px;}
.y30_c00462{bottom:1015.675728px;}
.y2f_c00462{bottom:1016.642538px;}
.y2e_c00462{bottom:1017.855546px;}
.y2d_c00462{bottom:1018.371426px;}
.y2c_c00462{bottom:1019.346270px;}
.y2b_c00462{bottom:1020.808710px;}
.y2a_c00462{bottom:1021.528230px;}
.y29_c00462{bottom:1024.190076px;}
.y28_c00462{bottom:1024.924962px;}
.y27_c00462{bottom:1026.835254px;}
.y26_c00462{bottom:1027.831692px;}
.y25_c00462{bottom:1029.500670px;}
.y24_c00462{bottom:1052.755878px;}
.y23_c00462{bottom:1054.284720px;}
.y22_c00462{bottom:1055.827422px;}
.y21_c00462{bottom:1058.620422px;}
.y20_c00462{bottom:1060.804842px;}
.y1f_c00462{bottom:1061.412582px;}
.y1e_c00462{bottom:1064.184960px;}
.y1d_c00462{bottom:1065.406866px;}
.y1c_c00462{bottom:1066.902948px;}
.y1b_c00462{bottom:1067.854500px;}
.y1a_c00462{bottom:1087.335342px;}
.y19_c00462{bottom:1090.343246px;}
.y18_c00462{bottom:1091.517629px;}
.y17_c00462{bottom:1092.201935px;}
.y16_c00462{bottom:1094.775075px;}
.y15_c00462{bottom:1095.238598px;}
.y14_c00462{bottom:1097.059109px;}
.y13_c00462{bottom:1099.354955px;}
.y12_c00462{bottom:1100.254500px;}
.y11_c00462{bottom:1121.661477px;}
.y10_c00462{bottom:1122.960022px;}
.yf_c00462{bottom:1125.458202px;}
.ye_c00462{bottom:1126.775101px;}
.yd_c00462{bottom:1127.506122px;}
.yc_c00462{bottom:1129.576087px;}
.yb_c00462{bottom:1130.811256px;}
.ya_c00462{bottom:1131.575155px;}
.y9_c00462{bottom:1134.817500px;}
.y8_c00462{bottom:1158.571729px;}
.y7_c00462{bottom:1161.131560px;}
.y6_c00462{bottom:1162.131957px;}
.y5_c00462{bottom:1164.942292px;}
.y4_c00462{bottom:1165.952832px;}
.y3_c00462{bottom:1167.201008px;}
.y2_c00462{bottom:1170.187500px;}
.y1_c00462{bottom:1224.192000px;}
.h4_c00462{height:66.017455px;}
.h8_c00462{height:66.025867px;}
.hb_c00462{height:66.031705px;}
.hc_c00462{height:71.969646px;}
.h12_c00462{height:71.982790px;}
.h11_c00462{height:72.010979px;}
.h13_c00462{height:72.026239px;}
.h9_c00462{height:72.028218px;}
.hd_c00462{height:77.967116px;}
.h10_c00462{height:78.011894px;}
.h5_c00462{height:78.017197px;}
.h14_c00462{height:78.028426px;}
.h7_c00462{height:78.030570px;}
.he_c00462{height:83.964587px;}
.h6_c00462{height:84.032922px;}
.ha_c00462{height:84.040352px;}
.hf_c00462{height:89.962057px;}
.h3_c00462{height:90.023802px;}
.h2_c00462{height:96.000000px;}
.h0_c00462{height:1264.140000px;}
.h1_c00462{height:1264.500000px;}
.w1_c00462{width:924.750000px;}
.w0_c00462{width:925.020000px;}
.x0_c00462{left:0.000000px;}
.xcb_c00462{left:161.118000px;}
.xc4_c00462{left:162.769673px;}
.xae_c00462{left:164.998451px;}
.x9e_c00462{left:166.199560px;}
.x92_c00462{left:167.699982px;}
.x7f_c00462{left:169.199129px;}
.x66_c00462{left:171.877122px;}
.x5d_c00462{left:174.082506px;}
.x48_c00462{left:175.537080px;}
.x2e_c00462{left:176.828730px;}
.x1b_c00462{left:178.288500px;}
.xa_c00462{left:180.859500px;}
.x3_c00462{left:182.191500px;}
.xce_c00462{left:192.908164px;}
.xc7_c00462{left:195.336372px;}
.x89_c00462{left:201.304210px;}
.x49_c00462{left:207.578268px;}
.xa7_c00462{left:208.830061px;}
.x35_c00462{left:210.043848px;}
.x1c_c00462{left:212.272500px;}
.x80_c00462{left:214.226151px;}
.xc5_c00462{left:216.578202px;}
.xba_c00462{left:217.865637px;}
.x13_c00462{left:223.284000px;}
.x56_c00462{left:229.180824px;}
.x3e_c00462{left:231.150114px;}
.x93_c00462{left:233.982415px;}
.x9f_c00462{left:242.100739px;}
.x2f_c00462{left:243.531792px;}
.x81_c00462{left:244.963497px;}
.x5e_c00462{left:249.652506px;}
.x24_c00462{left:253.238454px;}
.x98_c00462{left:254.412720px;}
.x67_c00462{left:259.495908px;}
.x4e_c00462{left:261.087084px;}
.x3f_c00462{left:263.815692px;}
.x1d_c00462{left:265.704000px;}
.xcf_c00462{left:270.066099px;}
.xbd_c00462{left:271.257000px;}
.x8a_c00462{left:279.794311px;}
.x6c_c00462{left:281.175000px;}
.x36_c00462{left:285.706590px;}
.x8d_c00462{left:289.264734px;}
.x74_c00462{left:291.624360px;}
.x68_c00462{left:293.458188px;}
.xaf_c00462{left:295.694924px;}
.x25_c00462{left:298.529556px;}
.x82_c00462{left:300.370202px;}
.x5f_c00462{left:304.276506px;}
.x4f_c00462{left:305.294040px;}
.x1e_c00462{left:309.343500px;}
.x4_c00462{left:312.039000px;}
.x6d_c00462{left:314.967000px;}
.x94_c00462{left:319.796616px;}
.xb_c00462{left:321.831000px;}
.x75_c00462{left:323.738811px;}
.xb0_c00462{left:328.535363px;}
.x37_c00462{left:330.451110px;}
.x14_c00462{left:332.610000px;}
.x8b_c00462{left:333.755148px;}
.xbb_c00462{left:338.133724px;}
.x57_c00462{left:339.146064px;}
.x99_c00462{left:341.573011px;}
.xd0_c00462{left:346.774034px;}
.x50_c00462{left:349.592496px;}
.x40_c00462{left:350.712330px;}
.xc_c00462{left:355.044000px;}
.x69_c00462{left:357.816870px;}
.xb5_c00462{left:361.354137px;}
.x5_c00462{left:366.307500px;}
.x76_c00462{left:368.276829px;}
.xbe_c00462{left:371.535122px;}
.x30_c00462{left:374.009328px;}
.x6e_c00462{left:379.002000px;}
.x6a_c00462{left:380.157390px;}
.x4a_c00462{left:383.367510px;}
.x26_c00462{left:385.358130px;}
.x9a_c00462{left:386.626881px;}
.x77_c00462{left:388.831754px;}
.x58_c00462{left:393.099600px;}
.xb1_c00462{left:394.703100px;}
.x38_c00462{left:395.800764px;}
.x8e_c00462{left:398.378593px;}
.xcc_c00462{left:401.994000px;}
.xc8_c00462{left:403.284715px;}
.x31_c00462{left:407.171838px;}
.xd_c00462{left:408.747000px;}
.x6_c00462{left:410.244000px;}
.xd1_c00462{left:411.900752px;}
.xb6_c00462{left:415.586105px;}
.x15_c00462{left:419.301000px;}
.x78_c00462{left:421.202350px;}
.x1_c00462{left:422.280000px;}
.x59_c00462{left:425.775330px;}
.x51_c00462{left:427.403190px;}
.x1f_c00462{left:430.062000px;}
.xd2_c00462{left:434.623644px;}
.xbf_c00462{left:437.247344px;}
.xb2_c00462{left:438.688586px;}
.x16_c00462{left:441.373500px;}
.x2_c00462{left:445.500000px;}
.xcd_c00462{left:447.396000px;}
.xbc_c00462{left:448.583016px;}
.xa8_c00462{left:451.246921px;}
.x9b_c00462{left:452.516679px;}
.x83_c00462{left:453.946145px;}
.x60_c00462{left:457.374006px;}
.x41_c00462{left:460.637244px;}
.x6f_c00462{left:466.701000px;}
.xc0_c00462{left:470.155902px;}
.xa0_c00462{left:472.143639px;}
.x32_c00462{left:473.594358px;}
.x84_c00462{left:475.988327px;}
.xb7_c00462{left:482.819631px;}
.x5a_c00462{left:490.613790px;}
.x4b_c00462{left:493.292250px;}
.x39_c00462{left:494.392266px;}
.x8f_c00462{left:496.803315px;}
.xe_c00462{left:498.745500px;}
.xc9_c00462{left:501.984916px;}
.xb3_c00462{left:505.200927px;}
.x20_c00462{left:508.077000px;}
.x52_c00462{left:513.653850px;}
.x5b_c00462{left:523.849062px;}
.xa9_c00462{left:527.534628px;}
.xa1_c00462{left:528.543511px;}
.xf_c00462{left:530.529000px;}
.x7_c00462{left:532.432500px;}
.x6b_c00462{left:534.389652px;}
.x42_c00462{left:536.903412px;}
.x27_c00462{left:539.803086px;}
.x8c_c00462{left:543.501729px;}
.x61_c00462{left:545.922006px;}
.x90_c00462{left:552.939169px;}
.x85_c00462{left:553.969232px;}
.x79_c00462{left:555.045374px;}
.x43_c00462{left:559.316562px;}
.x17_c00462{left:563.904000px;}
.xc1_c00462{left:569.920038px;}
.x28_c00462{left:572.523588px;}
.x8_c00462{left:575.928000px;}
.x62_c00462{left:578.685006px;}
.xaa_c00462{left:581.860326px;}
.x91_c00462{left:585.153385px;}
.x10_c00462{left:587.785500px;}
.x33_c00462{left:594.938130px;}
.x18_c00462{left:596.490000px;}
.x70_c00462{left:600.243000px;}
.x4c_c00462{left:602.805948px;}
.x44_c00462{left:603.823278px;}
.xa2_c00462{left:605.364820px;}
.x21_c00462{left:607.827000px;}
.x53_c00462{left:613.047480px;}
.xb8_c00462{left:614.305352px;}
.x7a_c00462{left:620.616737px;}
.x63_c00462{left:622.461006px;}
.x3a_c00462{left:625.487616px;}
.xa3_c00462{left:627.123021px;}
.x9c_c00462{left:628.995000px;}
.x86_c00462{left:630.878556px;}
.x71_c00462{left:632.586000px;}
.x5c_c00462{left:634.597386px;}
.x45_c00462{left:636.776898px;}
.x29_c00462{left:639.014760px;}
.x95_c00462{left:641.051664px;}
.xc6_c00462{left:646.039500px;}
.x3b_c00462{left:649.244460px;}
.x19_c00462{left:652.413000px;}
.x54_c00462{left:657.023394px;}
.xab_c00462{left:660.673515px;}
.x22_c00462{left:662.923500px;}
.xb9_c00462{left:670.764702px;}
.x96_c00462{left:673.141504px;}
.x7b_c00462{left:675.962336px;}
.xc2_c00462{left:680.641206px;}
.x2a_c00462{left:683.320194px;}
.x9_c00462{left:687.225000px;}
.x64_c00462{left:690.181506px;}
.xa4_c00462{left:693.508062px;}
.x11_c00462{left:696.402000px;}
.x4d_c00462{left:702.432306px;}
.x46_c00462{left:704.053806px;}
.x2b_c00462{left:706.784142px;}
.xca_c00462{left:711.605586px;}
.x23_c00462{left:717.525000px;}
.x7c_c00462{left:718.729525px;}
.x72_c00462{left:721.860000px;}
.x34_c00462{left:731.637384px;}
.xc3_c00462{left:735.976316px;}
.xa5_c00462{left:738.166422px;}
.x55_c00462{left:747.258474px;}
.x47_c00462{left:748.389522px;}
.x9d_c00462{left:749.483807px;}
.x12_c00462{left:752.860500px;}
.x2c_c00462{left:761.954424px;}
.x7d_c00462{left:764.511698px;}
.x73_c00462{left:765.529500px;}
.x3c_c00462{left:770.257722px;}
.xac_c00462{left:772.199646px;}
.x87_c00462{left:774.521421px;}
.x65_c00462{left:779.352006px;}
.xb4_c00462{left:782.362372px;}
.xa6_c00462{left:784.052104px;}
.x1a_c00462{left:795.646500px;}
.x7e_c00462{left:798.551624px;}
.xad_c00462{left:804.335564px;}
.x2d_c00462{left:805.919316px;}
.x97_c00462{left:807.319012px;}
.x88_c00462{left:812.010223px;}
.x3d_c00462{left:815.029242px;}
@media print{
.v0_c00462{vertical-align:0.000000pt;}
.ls0_c00462{letter-spacing:0.000000pt;}
.ws0_c00462{word-spacing:0.000000pt;}
.fs2_c00462{font-size:58.682182pt;}
.fs6_c00462{font-size:58.689659pt;}
.fs9_c00462{font-size:58.694849pt;}
.fsa_c00462{font-size:63.973018pt;}
.fs10_c00462{font-size:63.984702pt;}
.fsf_c00462{font-size:64.009759pt;}
.fs11_c00462{font-size:64.023324pt;}
.fs7_c00462{font-size:64.025083pt;}
.fsb_c00462{font-size:69.304103pt;}
.fse_c00462{font-size:69.343906pt;}
.fs3_c00462{font-size:69.348620pt;}
.fs12_c00462{font-size:69.358601pt;}
.fs5_c00462{font-size:69.360507pt;}
.fsc_c00462{font-size:74.635188pt;}
.fs4_c00462{font-size:74.695930pt;}
.fs8_c00462{font-size:74.702535pt;}
.fsd_c00462{font-size:79.966273pt;}
.fs1_c00462{font-size:80.021157pt;}
.fs0_c00462{font-size:85.333333pt;}
.y0_c00462{bottom:0.000000pt;}
.y132_c00462{bottom:65.778888pt;}
.y131_c00462{bottom:66.875739pt;}
.y130_c00462{bottom:68.233995pt;}
.y12f_c00462{bottom:69.895849pt;}
.y12e_c00462{bottom:70.709695pt;}
.y12d_c00462{bottom:71.275059pt;}
.y12c_c00462{bottom:72.082604pt;}
.y12b_c00462{bottom:72.896809pt;}
.y12a_c00462{bottom:74.805849pt;}
.y129_c00462{bottom:76.725689pt;}
.y128_c00462{bottom:77.518581pt;}
.y127_c00462{bottom:103.479104pt;}
.y126_c00462{bottom:104.497328pt;}
.y125_c00462{bottom:105.586976pt;}
.y124_c00462{bottom:108.245612pt;}
.y123_c00462{bottom:111.368000pt;}
.y122_c00462{bottom:140.366155pt;}
.y121_c00462{bottom:143.333176pt;}
.y120_c00462{bottom:145.728499pt;}
.y11f_c00462{bottom:146.707699pt;}
.y11e_c00462{bottom:148.691077pt;}
.y11d_c00462{bottom:149.693624pt;}
.y11c_c00462{bottom:152.677237pt;}
.y11b_c00462{bottom:155.984576pt;}
.y11a_c00462{bottom:156.970667pt;}
.y119_c00462{bottom:170.818513pt;}
.y118_c00462{bottom:175.461333pt;}
.y117_c00462{bottom:181.706191pt;}
.y116_c00462{bottom:184.762519pt;}
.y115_c00462{bottom:187.162947pt;}
.y114_c00462{bottom:188.078883pt;}
.y113_c00462{bottom:190.522919pt;}
.y112_c00462{bottom:192.007987pt;}
.y111_c00462{bottom:201.947563pt;}
.y110_c00462{bottom:203.378795pt;}
.y10f_c00462{bottom:205.742123pt;}
.y10e_c00462{bottom:210.470955pt;}
.y10d_c00462{bottom:212.406827pt;}
.y10c_c00462{bottom:214.731819pt;}
.y10b_c00462{bottom:216.137323pt;}
.y10a_c00462{bottom:218.943851pt;}
.y109_c00462{bottom:220.357035pt;}
.y108_c00462{bottom:221.787755pt;}
.y107_c00462{bottom:223.226667pt;}
.y106_c00462{bottom:246.152151pt;}
.y105_c00462{bottom:247.300828pt;}
.y104_c00462{bottom:247.975001pt;}
.y103_c00462{bottom:249.562023pt;}
.y102_c00462{bottom:250.220269pt;}
.y101_c00462{bottom:252.025579pt;}
.y100_c00462{bottom:253.101539pt;}
.yff_c00462{bottom:271.897019pt;}
.yfe_c00462{bottom:273.508399pt;}
.yfd_c00462{bottom:274.252573pt;}
.yfc_c00462{bottom:275.559212pt;}
.yfb_c00462{bottom:277.570679pt;}
.yfa_c00462{bottom:278.600833pt;}
.yf9_c00462{bottom:280.156072pt;}
.yf8_c00462{bottom:281.411329pt;}
.yf7_c00462{bottom:283.666127pt;}
.yf6_c00462{bottom:284.450248pt;}
.yf5_c00462{bottom:285.967880pt;}
.yf4_c00462{bottom:298.066073pt;}
.yf3_c00462{bottom:299.282747pt;}
.yf2_c00462{bottom:300.856977pt;}
.yf1_c00462{bottom:303.229093pt;}
.yf0_c00462{bottom:304.414327pt;}
.yef_c00462{bottom:306.772037pt;}
.yee_c00462{bottom:307.929792pt;}
.yed_c00462{bottom:309.111761pt;}
.yec_c00462{bottom:310.296677pt;}
.yeb_c00462{bottom:311.862051pt;}
.yea_c00462{bottom:314.217177pt;}
.ye9_c00462{bottom:315.385376pt;}
.ye8_c00462{bottom:317.687495pt;}
.ye7_c00462{bottom:320.036711pt;}
.ye6_c00462{bottom:331.704053pt;}
.ye5_c00462{bottom:332.504217pt;}
.ye4_c00462{bottom:334.470485pt;}
.ye3_c00462{bottom:335.283399pt;}
.ye2_c00462{bottom:337.247627pt;}
.ye1_c00462{bottom:338.601735pt;}
.ye0_c00462{bottom:339.420088pt;}
.ydf_c00462{bottom:340.502896pt;}
.yde_c00462{bottom:343.242061pt;}
.ydd_c00462{bottom:344.331924pt;}
.ydc_c00462{bottom:346.543069pt;}
.ydb_c00462{bottom:347.622903pt;}
.yda_c00462{bottom:362.181037pt;}
.yd9_c00462{bottom:363.487847pt;}
.yd8_c00462{bottom:364.758860pt;}
.yd7_c00462{bottom:366.649820pt;}
.yd6_c00462{bottom:367.269387pt;}
.yd5_c00462{bottom:369.457400pt;}
.yd4_c00462{bottom:371.063620pt;}
.yd3_c00462{bottom:372.533627pt;}
.yd2_c00462{bottom:375.106525pt;}
.yd1_c00462{bottom:376.020561pt;}
.yd0_c00462{bottom:377.613589pt;}
.ycf_c00462{bottom:379.775100pt;}
.yce_c00462{bottom:395.959957pt;}
.ycd_c00462{bottom:396.980565pt;}
.ycc_c00462{bottom:399.711725pt;}
.ycb_c00462{bottom:401.107016pt;}
.yca_c00462{bottom:402.495688pt;}
.yc9_c00462{bottom:405.207989pt;}
.yc8_c00462{bottom:407.259995pt;}
.yc7_c00462{bottom:408.662992pt;}
.yc6_c00462{bottom:411.377152pt;}
.yc5_c00462{bottom:414.080613pt;}
.yc4_c00462{bottom:428.275652pt;}
.yc3_c00462{bottom:429.467425pt;}
.yc2_c00462{bottom:431.738760pt;}
.yc1_c00462{bottom:432.566868pt;}
.yc0_c00462{bottom:433.746889pt;}
.ybf_c00462{bottom:435.402153pt;}
.ybe_c00462{bottom:436.231667pt;}
.ybd_c00462{bottom:438.007711pt;}
.ybc_c00462{bottom:438.839355pt;}
.ybb_c00462{bottom:440.858737pt;}
.yba_c00462{bottom:442.231672pt;}
.yb9_c00462{bottom:443.073436pt;}
.yb8_c00462{bottom:443.683387pt;}
.yb7_c00462{bottom:444.783931pt;}
.yb6_c00462{bottom:460.116039pt;}
.yb5_c00462{bottom:462.959059pt;}
.yb4_c00462{bottom:464.984091pt;}
.yb3_c00462{bottom:465.815961pt;}
.yb2_c00462{bottom:467.264837pt;}
.yb1_c00462{bottom:469.247133pt;}
.yb0_c00462{bottom:469.805027pt;}
.yaf_c00462{bottom:472.620581pt;}
.yae_c00462{bottom:473.224157pt;}
.yad_c00462{bottom:475.737516pt;}
.yac_c00462{bottom:492.622309pt;}
.yab_c00462{bottom:493.553793pt;}
.yaa_c00462{bottom:495.941528pt;}
.ya9_c00462{bottom:497.646424pt;}
.ya8_c00462{bottom:499.441332pt;}
.ya7_c00462{bottom:502.054899pt;}
.ya6_c00462{bottom:503.246327pt;}
.ya5_c00462{bottom:504.686745pt;}
.ya4_c00462{bottom:506.782555pt;}
.ya3_c00462{bottom:507.638589pt;}
.ya2_c00462{bottom:521.333709pt;}
.ya1_c00462{bottom:522.367823pt;}
.ya0_c00462{bottom:524.505957pt;}
.y9f_c00462{bottom:525.443541pt;}
.y9e_c00462{bottom:526.330648pt;}
.y9d_c00462{bottom:527.274352pt;}
.y9c_c00462{bottom:528.453313pt;}
.y9b_c00462{bottom:530.604396pt;}
.y9a_c00462{bottom:531.212551pt;}
.y99_c00462{bottom:534.802433pt;}
.y98_c00462{bottom:535.449205pt;}
.y97_c00462{bottom:536.977372pt;}
.y96_c00462{bottom:537.825907pt;}
.y95_c00462{bottom:539.068067pt;}
.y94_c00462{bottom:554.129955pt;}
.y93_c00462{bottom:555.159747pt;}
.y92_c00462{bottom:556.544771pt;}
.y91_c00462{bottom:557.838584pt;}
.y90_c00462{bottom:559.512925pt;}
.y8f_c00462{bottom:561.496621pt;}
.y8e_c00462{bottom:562.203912pt;}
.y8d_c00462{bottom:565.545704pt;}
.y8c_c00462{bottom:566.524995pt;}
.y8b_c00462{bottom:567.146832pt;}
.y8a_c00462{bottom:569.781333pt;}
.y89_c00462{bottom:597.793344pt;}
.y88_c00462{bottom:598.827371pt;}
.y87_c00462{bottom:599.426695pt;}
.y86_c00462{bottom:601.670487pt;}
.y85_c00462{bottom:618.345343pt;}
.y84_c00462{bottom:619.548680pt;}
.y83_c00462{bottom:622.008675pt;}
.y82_c00462{bottom:622.899904pt;}
.y81_c00462{bottom:623.542596pt;}
.y80_c00462{bottom:626.579728pt;}
.y7f_c00462{bottom:628.996323pt;}
.y7e_c00462{bottom:630.760843pt;}
.y7d_c00462{bottom:631.692000pt;}
.y7c_c00462{bottom:656.726859pt;}
.y7b_c00462{bottom:660.017099pt;}
.y7a_c00462{bottom:660.493067pt;}
.y79_c00462{bottom:661.866704pt;}
.y78_c00462{bottom:662.591893pt;}
.y77_c00462{bottom:664.461717pt;}
.y76_c00462{bottom:681.570256pt;}
.y75_c00462{bottom:683.789611pt;}
.y74_c00462{bottom:684.628155pt;}
.y73_c00462{bottom:685.475099pt;}
.y72_c00462{bottom:686.564635pt;}
.y71_c00462{bottom:687.380069pt;}
.y70_c00462{bottom:689.583931pt;}
.y6f_c00462{bottom:690.391525pt;}
.y6e_c00462{bottom:691.189189pt;}
.y6d_c00462{bottom:693.394357pt;}
.y6c_c00462{bottom:694.753888pt;}
.y6b_c00462{bottom:696.634741pt;}
.y6a_c00462{bottom:715.889840pt;}
.y69_c00462{bottom:717.384939pt;}
.y68_c00462{bottom:718.105419pt;}
.y67_c00462{bottom:719.845109pt;}
.y66_c00462{bottom:720.584229pt;}
.y65_c00462{bottom:722.024517pt;}
.y64_c00462{bottom:722.751045pt;}
.y63_c00462{bottom:723.949776pt;}
.y62_c00462{bottom:726.393125pt;}
.y61_c00462{bottom:727.607659pt;}
.y60_c00462{bottom:746.624699pt;}
.y5f_c00462{bottom:748.550299pt;}
.y5e_c00462{bottom:749.488688pt;}
.y5d_c00462{bottom:751.102485pt;}
.y5c_c00462{bottom:751.608875pt;}
.y5b_c00462{bottom:753.448651pt;}
.y5a_c00462{bottom:755.109056pt;}
.y59_c00462{bottom:756.054139pt;}
.y58_c00462{bottom:756.996944pt;}
.y57_c00462{bottom:758.818619pt;}
.y56_c00462{bottom:778.253915pt;}
.y55_c00462{bottom:779.760123pt;}
.y54_c00462{bottom:781.974171pt;}
.y53_c00462{bottom:784.407616pt;}
.y52_c00462{bottom:786.849957pt;}
.y51_c00462{bottom:789.508811pt;}
.y50_c00462{bottom:790.756789pt;}
.y4f_c00462{bottom:791.468859pt;}
.y4e_c00462{bottom:810.505280pt;}
.y4d_c00462{bottom:811.411259pt;}
.y4c_c00462{bottom:812.786805pt;}
.y4b_c00462{bottom:813.460203pt;}
.y4a_c00462{bottom:814.370437pt;}
.y49_c00462{bottom:814.828197pt;}
.y48_c00462{bottom:816.387445pt;}
.y47_c00462{bottom:817.943445pt;}
.y46_c00462{bottom:818.633637pt;}
.y45_c00462{bottom:820.410763pt;}
.y44_c00462{bottom:821.078325pt;}
.y43_c00462{bottom:822.199493pt;}
.y42_c00462{bottom:840.084496pt;}
.y41_c00462{bottom:841.118747pt;}
.y40_c00462{bottom:843.915797pt;}
.y3f_c00462{bottom:844.464379pt;}
.y3e_c00462{bottom:847.493680pt;}
.y3d_c00462{bottom:849.772709pt;}
.y3c_c00462{bottom:851.283099pt;}
.y3b_c00462{bottom:852.316677pt;}
.y3a_c00462{bottom:854.065067pt;}
.y39_c00462{bottom:854.849584pt;}
.y38_c00462{bottom:872.585195pt;}
.y37_c00462{bottom:874.320400pt;}
.y36_c00462{bottom:875.137488pt;}
.y35_c00462{bottom:877.402341pt;}
.y34_c00462{bottom:878.641867pt;}
.y33_c00462{bottom:879.260416pt;}
.y32_c00462{bottom:881.696555pt;}
.y31_c00462{bottom:882.941728pt;}
.y30_c00462{bottom:902.822869pt;}
.y2f_c00462{bottom:903.682256pt;}
.y2e_c00462{bottom:904.760485pt;}
.y2d_c00462{bottom:905.219045pt;}
.y2c_c00462{bottom:906.085573pt;}
.y2b_c00462{bottom:907.385520pt;}
.y2a_c00462{bottom:908.025093pt;}
.y29_c00462{bottom:910.391179pt;}
.y28_c00462{bottom:911.044411pt;}
.y27_c00462{bottom:912.742448pt;}
.y26_c00462{bottom:913.628171pt;}
.y25_c00462{bottom:915.111707pt;}
.y24_c00462{bottom:935.783003pt;}
.y23_c00462{bottom:937.141973pt;}
.y22_c00462{bottom:938.513264pt;}
.y21_c00462{bottom:940.995931pt;}
.y20_c00462{bottom:942.937637pt;}
.y1f_c00462{bottom:943.477851pt;}
.y1e_c00462{bottom:945.942187pt;}
.y1d_c00462{bottom:947.028325pt;}
.y1c_c00462{bottom:948.358176pt;}
.y1b_c00462{bottom:949.204000pt;}
.y1a_c00462{bottom:966.520304pt;}
.y19_c00462{bottom:969.193996pt;}
.y18_c00462{bottom:970.237892pt;}
.y17_c00462{bottom:970.846164pt;}
.y16_c00462{bottom:973.133400pt;}
.y15_c00462{bottom:973.545420pt;}
.y14_c00462{bottom:975.163652pt;}
.y13_c00462{bottom:977.204404pt;}
.y12_c00462{bottom:978.004000pt;}
.y11_c00462{bottom:997.032424pt;}
.y10_c00462{bottom:998.186687pt;}
.yf_c00462{bottom:1000.407291pt;}
.ye_c00462{bottom:1001.577868pt;}
.yd_c00462{bottom:1002.227664pt;}
.yc_c00462{bottom:1004.067633pt;}
.yb_c00462{bottom:1005.165561pt;}
.ya_c00462{bottom:1005.844583pt;}
.y9_c00462{bottom:1008.726667pt;}
.y8_c00462{bottom:1029.841537pt;}
.y7_c00462{bottom:1032.116943pt;}
.y6_c00462{bottom:1033.006184pt;}
.y5_c00462{bottom:1035.504260pt;}
.y4_c00462{bottom:1036.402517pt;}
.y3_c00462{bottom:1037.512007pt;}
.y2_c00462{bottom:1040.166667pt;}
.y1_c00462{bottom:1088.170667pt;}
.h4_c00462{height:58.682182pt;}
.h8_c00462{height:58.689659pt;}
.hb_c00462{height:58.694849pt;}
.hc_c00462{height:63.973018pt;}
.h12_c00462{height:63.984702pt;}
.h11_c00462{height:64.009759pt;}
.h13_c00462{height:64.023324pt;}
.h9_c00462{height:64.025083pt;}
.hd_c00462{height:69.304103pt;}
.h10_c00462{height:69.343906pt;}
.h5_c00462{height:69.348620pt;}
.h14_c00462{height:69.358601pt;}
.h7_c00462{height:69.360507pt;}
.he_c00462{height:74.635188pt;}
.h6_c00462{height:74.695930pt;}
.ha_c00462{height:74.702535pt;}
.hf_c00462{height:79.966273pt;}
.h3_c00462{height:80.021157pt;}
.h2_c00462{height:85.333333pt;}
.h0_c00462{height:1123.680000pt;}
.h1_c00462{height:1124.000000pt;}
.w1_c00462{width:822.000000pt;}
.w0_c00462{width:822.240000pt;}
.x0_c00462{left:0.000000pt;}
.xcb_c00462{left:143.216000pt;}
.xc4_c00462{left:144.684153pt;}
.xae_c00462{left:146.665289pt;}
.x9e_c00462{left:147.732943pt;}
.x92_c00462{left:149.066651pt;}
.x7f_c00462{left:150.399225pt;}
.x66_c00462{left:152.779664pt;}
.x5d_c00462{left:154.740005pt;}
.x48_c00462{left:156.032960pt;}
.x2e_c00462{left:157.181093pt;}
.x1b_c00462{left:158.478667pt;}
.xa_c00462{left:160.764000pt;}
.x3_c00462{left:161.948000pt;}
.xce_c00462{left:171.473924pt;}
.xc7_c00462{left:173.632331pt;}
.x89_c00462{left:178.937076pt;}
.x49_c00462{left:184.514016pt;}
.xa7_c00462{left:185.626721pt;}
.x35_c00462{left:186.705643pt;}
.x1c_c00462{left:188.686667pt;}
.x80_c00462{left:190.423245pt;}
.xc5_c00462{left:192.513957pt;}
.xba_c00462{left:193.658344pt;}
.x13_c00462{left:198.474667pt;}
.x56_c00462{left:203.716288pt;}
.x3e_c00462{left:205.466768pt;}
.x93_c00462{left:207.984369pt;}
.x9f_c00462{left:215.200657pt;}
.x2f_c00462{left:216.472704pt;}
.x81_c00462{left:217.745331pt;}
.x5e_c00462{left:221.913339pt;}
.x24_c00462{left:225.100848pt;}
.x98_c00462{left:226.144640pt;}
.x67_c00462{left:230.663029pt;}
.x4e_c00462{left:232.077408pt;}
.x3f_c00462{left:234.502837pt;}
.x1d_c00462{left:236.181333pt;}
.xcf_c00462{left:240.058755pt;}
.xbd_c00462{left:241.117333pt;}
.x8a_c00462{left:248.706055pt;}
.x6c_c00462{left:249.933333pt;}
.x36_c00462{left:253.961413pt;}
.x8d_c00462{left:257.124208pt;}
.x74_c00462{left:259.221653pt;}
.x68_c00462{left:260.851723pt;}
.xaf_c00462{left:262.839932pt;}
.x25_c00462{left:265.359605pt;}
.x82_c00462{left:266.995735pt;}
.x5f_c00462{left:270.468005pt;}
.x4f_c00462{left:271.372480pt;}
.x1e_c00462{left:274.972000pt;}
.x4_c00462{left:277.368000pt;}
.x6d_c00462{left:279.970667pt;}
.x94_c00462{left:284.263659pt;}
.xb_c00462{left:286.072000pt;}
.x75_c00462{left:287.767832pt;}
.xb0_c00462{left:292.031433pt;}
.x37_c00462{left:293.734320pt;}
.x14_c00462{left:295.653333pt;}
.x8b_c00462{left:296.671243pt;}
.xbb_c00462{left:300.563311pt;}
.x57_c00462{left:301.463168pt;}
.x99_c00462{left:303.620455pt;}
.xd0_c00462{left:308.243585pt;}
.x50_c00462{left:310.748885pt;}
.x40_c00462{left:311.744293pt;}
.xc_c00462{left:315.594667pt;}
.x69_c00462{left:318.059440pt;}
.xb5_c00462{left:321.203677pt;}
.x5_c00462{left:325.606667pt;}
.x76_c00462{left:327.357181pt;}
.xbe_c00462{left:330.253441pt;}
.x30_c00462{left:332.452736pt;}
.x6e_c00462{left:336.890667pt;}
.x6a_c00462{left:337.917680pt;}
.x4a_c00462{left:340.771120pt;}
.x26_c00462{left:342.540560pt;}
.x9a_c00462{left:343.668339pt;}
.x77_c00462{left:345.628225pt;}
.x58_c00462{left:349.421867pt;}
.xb1_c00462{left:350.847200pt;}
.x38_c00462{left:351.822901pt;}
.x8e_c00462{left:354.114305pt;}
.xcc_c00462{left:357.328000pt;}
.xc8_c00462{left:358.475303pt;}
.x31_c00462{left:361.930523pt;}
.xd_c00462{left:363.330667pt;}
.x6_c00462{left:364.661333pt;}
.xd1_c00462{left:366.134001pt;}
.xb6_c00462{left:369.409871pt;}
.x15_c00462{left:372.712000pt;}
.x78_c00462{left:374.402089pt;}
.x1_c00462{left:375.360000pt;}
.x59_c00462{left:378.466960pt;}
.x51_c00462{left:379.913947pt;}
.x1f_c00462{left:382.277333pt;}
.xd2_c00462{left:386.332128pt;}
.xbf_c00462{left:388.664305pt;}
.xb2_c00462{left:389.945409pt;}
.x16_c00462{left:392.332000pt;}
.x2_c00462{left:396.000000pt;}
.xcd_c00462{left:397.685333pt;}
.xbc_c00462{left:398.740459pt;}
.xa8_c00462{left:401.108375pt;}
.x9b_c00462{left:402.237048pt;}
.x83_c00462{left:403.507684pt;}
.x60_c00462{left:406.554672pt;}
.x41_c00462{left:409.455328pt;}
.x6f_c00462{left:414.845333pt;}
.xc0_c00462{left:417.916357pt;}
.xa0_c00462{left:419.683235pt;}
.x32_c00462{left:420.972763pt;}
.x84_c00462{left:423.100735pt;}
.xb7_c00462{left:429.173005pt;}
.x5a_c00462{left:436.101147pt;}
.x4b_c00462{left:438.482000pt;}
.x39_c00462{left:439.459792pt;}
.x8f_c00462{left:441.602947pt;}
.xe_c00462{left:443.329333pt;}
.xc9_c00462{left:446.208815pt;}
.xb3_c00462{left:449.067491pt;}
.x20_c00462{left:451.624000pt;}
.x52_c00462{left:456.581200pt;}
.x5b_c00462{left:465.643611pt;}
.xa9_c00462{left:468.919669pt;}
.xa1_c00462{left:469.816455pt;}
.xf_c00462{left:471.581333pt;}
.x7_c00462{left:473.273333pt;}
.x6b_c00462{left:475.013024pt;}
.x42_c00462{left:477.247477pt;}
.x27_c00462{left:479.824965pt;}
.x8c_c00462{left:483.112648pt;}
.x61_c00462{left:485.264005pt;}
.x90_c00462{left:491.501484pt;}
.x85_c00462{left:492.417095pt;}
.x79_c00462{left:493.373665pt;}
.x43_c00462{left:497.170277pt;}
.x17_c00462{left:501.248000pt;}
.xc1_c00462{left:506.595589pt;}
.x28_c00462{left:508.909856pt;}
.x8_c00462{left:511.936000pt;}
.x62_c00462{left:514.386672pt;}
.xaa_c00462{left:517.209179pt;}
.x91_c00462{left:520.136343pt;}
.x10_c00462{left:522.476000pt;}
.x33_c00462{left:528.833893pt;}
.x18_c00462{left:530.213333pt;}
.x70_c00462{left:533.549333pt;}
.x4c_c00462{left:535.827509pt;}
.x44_c00462{left:536.731803pt;}
.xa2_c00462{left:538.102063pt;}
.x21_c00462{left:540.290667pt;}
.x53_c00462{left:544.931093pt;}
.xb8_c00462{left:546.049201pt;}
.x7a_c00462{left:551.659321pt;}
.x63_c00462{left:553.298672pt;}
.x3a_c00462{left:555.988992pt;}
.xa3_c00462{left:557.442685pt;}
.x9c_c00462{left:559.106667pt;}
.x86_c00462{left:560.780939pt;}
.x71_c00462{left:562.298667pt;}
.x5c_c00462{left:564.086565pt;}
.x45_c00462{left:566.023909pt;}
.x29_c00462{left:568.013120pt;}
.x95_c00462{left:569.823701pt;}
.xc6_c00462{left:574.257333pt;}
.x3b_c00462{left:577.106187pt;}
.x19_c00462{left:579.922667pt;}
.x54_c00462{left:584.020795pt;}
.xab_c00462{left:587.265347pt;}
.x22_c00462{left:589.265333pt;}
.xb9_c00462{left:596.235291pt;}
.x96_c00462{left:598.348004pt;}
.x7b_c00462{left:600.855409pt;}
.xc2_c00462{left:605.014405pt;}
.x2a_c00462{left:607.395728pt;}
.x9_c00462{left:610.866667pt;}
.x64_c00462{left:613.494672pt;}
.xa4_c00462{left:616.451611pt;}
.x11_c00462{left:619.024000pt;}
.x4d_c00462{left:624.384272pt;}
.x46_c00462{left:625.825605pt;}
.x2b_c00462{left:628.252571pt;}
.xca_c00462{left:632.538299pt;}
.x23_c00462{left:637.800000pt;}
.x7c_c00462{left:638.870689pt;}
.x72_c00462{left:641.653333pt;}
.x34_c00462{left:650.344341pt;}
.xc3_c00462{left:654.201169pt;}
.xa5_c00462{left:656.147931pt;}
.x55_c00462{left:664.229755pt;}
.x47_c00462{left:665.235131pt;}
.x9d_c00462{left:666.207828pt;}
.x12_c00462{left:669.209333pt;}
.x2c_c00462{left:677.292821pt;}
.x7d_c00462{left:679.565953pt;}
.x73_c00462{left:680.470667pt;}
.x3c_c00462{left:684.673531pt;}
.xac_c00462{left:686.399685pt;}
.x87_c00462{left:688.463485pt;}
.x65_c00462{left:692.757339pt;}
.xb4_c00462{left:695.433220pt;}
.xa6_c00462{left:696.935204pt;}
.x1a_c00462{left:707.241333pt;}
.x7e_c00462{left:709.823665pt;}
.xad_c00462{left:714.964945pt;}
.x2d_c00462{left:716.372725pt;}
.x97_c00462{left:717.616900pt;}
.x88_c00462{left:721.786865pt;}
.x3d_c00462{left:724.470437pt;}
}





/* 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_c00463 {
    display:none;
  }
  .loading-indicator_c00463.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00463 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_c00463 { 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_c00463" -> "#page-container .classname_c00463")
 */
.pf_c00463 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00463 { /* 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_c00463.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00463 { /* 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_c00463 { /* 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_c00463 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00463 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00463 {overflow:visible;}
  }
}
.c_c00463 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00463 { /* 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_c00463:after { /* webkit #35443 */
  content: '';
}
.t_c00463:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00463 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 */
}
.__c00463 { /* 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_c00463 { /* info for Javascript */
  display:none;
}
.l_c00463 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00463 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00463 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00463: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_c00463 {
    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_c00463.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00463.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_c00463 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00463{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00463;src:url('chunks/assets/font_7c6b9abe6ee2a268480c528b.woff2')format("woff");}.ff1_c00463{font-family:ff1_c00463;line-height:1.000000;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;}
.m4_c00463{transform:matrix(0.123764,-0.001980,0.003999,0.249968,0,0);-ms-transform:matrix(0.123764,-0.001980,0.003999,0.249968,0,0);-webkit-transform:matrix(0.123764,-0.001980,0.003999,0.249968,0,0);}
.m2_c00463{transform:matrix(0.136293,-0.002181,0.003999,0.249968,0,0);-ms-transform:matrix(0.136293,-0.002181,0.003999,0.249968,0,0);-webkit-transform:matrix(0.136293,-0.002181,0.003999,0.249968,0,0);}
.m3_c00463{transform:matrix(0.137307,-0.002197,0.003999,0.249968,0,0);-ms-transform:matrix(0.137307,-0.002197,0.003999,0.249968,0,0);-webkit-transform:matrix(0.137307,-0.002197,0.003999,0.249968,0,0);}
.m1_c00463{transform:matrix(0.140892,-0.002254,0.003999,0.249968,0,0);-ms-transform:matrix(0.140892,-0.002254,0.003999,0.249968,0,0);-webkit-transform:matrix(0.140892,-0.002254,0.003999,0.249968,0,0);}
.m5_c00463{transform:matrix(0.149841,-0.002397,0.003999,0.249968,0,0);-ms-transform:matrix(0.149841,-0.002397,0.003999,0.249968,0,0);-webkit-transform:matrix(0.149841,-0.002397,0.003999,0.249968,0,0);}
.m6_c00463{transform:matrix(0.150591,-0.002409,0.003999,0.249968,0,0);-ms-transform:matrix(0.150591,-0.002409,0.003999,0.249968,0,0);-webkit-transform:matrix(0.150591,-0.002409,0.003999,0.249968,0,0);}
.m28_c00463{transform:matrix(0.191819,-0.002494,0.003250,0.249979,0,0);-ms-transform:matrix(0.191819,-0.002494,0.003250,0.249979,0,0);-webkit-transform:matrix(0.191819,-0.002494,0.003250,0.249979,0,0);}
.m27_c00463{transform:matrix(0.195453,-0.002541,0.003250,0.249979,0,0);-ms-transform:matrix(0.195453,-0.002541,0.003250,0.249979,0,0);-webkit-transform:matrix(0.195453,-0.002541,0.003250,0.249979,0,0);}
.m19_c00463{transform:matrix(0.198170,-0.003171,0.003999,0.249968,0,0);-ms-transform:matrix(0.198170,-0.003171,0.003999,0.249968,0,0);-webkit-transform:matrix(0.198170,-0.003171,0.003999,0.249968,0,0);}
.m7_c00463{transform:matrix(0.203674,-0.003259,0.003999,0.249968,0,0);-ms-transform:matrix(0.203674,-0.003259,0.003999,0.249968,0,0);-webkit-transform:matrix(0.203674,-0.003259,0.003999,0.249968,0,0);}
.me_c00463{transform:matrix(0.214877,-0.003438,0.003999,0.249968,0,0);-ms-transform:matrix(0.214877,-0.003438,0.003999,0.249968,0,0);-webkit-transform:matrix(0.214877,-0.003438,0.003999,0.249968,0,0);}
.m14_c00463{transform:matrix(0.215867,-0.003454,0.003999,0.249968,0,0);-ms-transform:matrix(0.215867,-0.003454,0.003999,0.249968,0,0);-webkit-transform:matrix(0.215867,-0.003454,0.003999,0.249968,0,0);}
.m1d_c00463{transform:matrix(0.217422,-0.003479,0.003999,0.249968,0,0);-ms-transform:matrix(0.217422,-0.003479,0.003999,0.249968,0,0);-webkit-transform:matrix(0.217422,-0.003479,0.003999,0.249968,0,0);}
.m9_c00463{transform:matrix(0.220357,-0.003526,0.003999,0.249968,0,0);-ms-transform:matrix(0.220357,-0.003526,0.003999,0.249968,0,0);-webkit-transform:matrix(0.220357,-0.003526,0.003999,0.249968,0,0);}
.m1e_c00463{transform:matrix(0.220907,-0.003535,0.003999,0.249968,0,0);-ms-transform:matrix(0.220907,-0.003535,0.003999,0.249968,0,0);-webkit-transform:matrix(0.220907,-0.003535,0.003999,0.249968,0,0);}
.m8_c00463{transform:matrix(0.221432,-0.003543,0.003999,0.249968,0,0);-ms-transform:matrix(0.221432,-0.003543,0.003999,0.249968,0,0);-webkit-transform:matrix(0.221432,-0.003543,0.003999,0.249968,0,0);}
.m18_c00463{transform:matrix(0.223861,-0.003582,0.003999,0.249968,0,0);-ms-transform:matrix(0.223861,-0.003582,0.003999,0.249968,0,0);-webkit-transform:matrix(0.223861,-0.003582,0.003999,0.249968,0,0);}
.m17_c00463{transform:matrix(0.225836,-0.003613,0.003999,0.249968,0,0);-ms-transform:matrix(0.225836,-0.003613,0.003999,0.249968,0,0);-webkit-transform:matrix(0.225836,-0.003613,0.003999,0.249968,0,0);}
.m12_c00463{transform:matrix(0.227256,-0.003636,0.003999,0.249968,0,0);-ms-transform:matrix(0.227256,-0.003636,0.003999,0.249968,0,0);-webkit-transform:matrix(0.227256,-0.003636,0.003999,0.249968,0,0);}
.m10_c00463{transform:matrix(0.227566,-0.003641,0.003999,0.249968,0,0);-ms-transform:matrix(0.227566,-0.003641,0.003999,0.249968,0,0);-webkit-transform:matrix(0.227566,-0.003641,0.003999,0.249968,0,0);}
.m1f_c00463{transform:matrix(0.235200,-0.003763,0.003999,0.249968,0,0);-ms-transform:matrix(0.235200,-0.003763,0.003999,0.249968,0,0);-webkit-transform:matrix(0.235200,-0.003763,0.003999,0.249968,0,0);}
.m24_c00463{transform:matrix(0.239090,-0.003108,0.003250,0.249979,0,0);-ms-transform:matrix(0.239090,-0.003108,0.003250,0.249979,0,0);-webkit-transform:matrix(0.239090,-0.003108,0.003250,0.249979,0,0);}
.m26_c00463{transform:matrix(0.244239,-0.003175,0.003250,0.249979,0,0);-ms-transform:matrix(0.244239,-0.003175,0.003250,0.249979,0,0);-webkit-transform:matrix(0.244239,-0.003175,0.003250,0.249979,0,0);}
.m1b_c00463{transform:matrix(0.251783,-0.004029,0.003999,0.249968,0,0);-ms-transform:matrix(0.251783,-0.004029,0.003999,0.249968,0,0);-webkit-transform:matrix(0.251783,-0.004029,0.003999,0.249968,0,0);}
.m25_c00463{transform:matrix(0.252259,-0.003279,0.003250,0.249979,0,0);-ms-transform:matrix(0.252259,-0.003279,0.003250,0.249979,0,0);-webkit-transform:matrix(0.252259,-0.003279,0.003250,0.249979,0,0);}
.m11_c00463{transform:matrix(0.258202,-0.004131,0.003999,0.249968,0,0);-ms-transform:matrix(0.258202,-0.004131,0.003999,0.249968,0,0);-webkit-transform:matrix(0.258202,-0.004131,0.003999,0.249968,0,0);}
.md_c00463{transform:matrix(0.261197,-0.004179,0.003999,0.249968,0,0);-ms-transform:matrix(0.261197,-0.004179,0.003999,0.249968,0,0);-webkit-transform:matrix(0.261197,-0.004179,0.003999,0.249968,0,0);}
.m13_c00463{transform:matrix(0.261846,-0.004190,0.003999,0.249968,0,0);-ms-transform:matrix(0.261846,-0.004190,0.003999,0.249968,0,0);-webkit-transform:matrix(0.261846,-0.004190,0.003999,0.249968,0,0);}
.m2a_c00463{transform:matrix(0.269707,-0.003506,0.003250,0.249979,0,0);-ms-transform:matrix(0.269707,-0.003506,0.003250,0.249979,0,0);-webkit-transform:matrix(0.269707,-0.003506,0.003250,0.249979,0,0);}
.m1c_c00463{transform:matrix(0.272660,-0.004363,0.003999,0.249968,0,0);-ms-transform:matrix(0.272660,-0.004363,0.003999,0.249968,0,0);-webkit-transform:matrix(0.272660,-0.004363,0.003999,0.249968,0,0);}
.m29_c00463{transform:matrix(0.274982,-0.003575,0.003250,0.249979,0,0);-ms-transform:matrix(0.274982,-0.003575,0.003250,0.249979,0,0);-webkit-transform:matrix(0.274982,-0.003575,0.003250,0.249979,0,0);}
.m21_c00463{transform:matrix(0.275007,-0.003575,0.003250,0.249979,0,0);-ms-transform:matrix(0.275007,-0.003575,0.003250,0.249979,0,0);-webkit-transform:matrix(0.275007,-0.003575,0.003250,0.249979,0,0);}
.m16_c00463{transform:matrix(0.302891,-0.004846,0.003999,0.249968,0,0);-ms-transform:matrix(0.302891,-0.004846,0.003999,0.249968,0,0);-webkit-transform:matrix(0.302891,-0.004846,0.003999,0.249968,0,0);}
.m23_c00463{transform:matrix(0.307824,-0.004002,0.003250,0.249979,0,0);-ms-transform:matrix(0.307824,-0.004002,0.003250,0.249979,0,0);-webkit-transform:matrix(0.307824,-0.004002,0.003250,0.249979,0,0);}
.mc_c00463{transform:matrix(0.324923,-0.005199,0.003999,0.249968,0,0);-ms-transform:matrix(0.324923,-0.005199,0.003999,0.249968,0,0);-webkit-transform:matrix(0.324923,-0.005199,0.003999,0.249968,0,0);}
.m1a_c00463{transform:matrix(0.328023,-0.005248,0.003999,0.249968,0,0);-ms-transform:matrix(0.328023,-0.005248,0.003999,0.249968,0,0);-webkit-transform:matrix(0.328023,-0.005248,0.003999,0.249968,0,0);}
.mf_c00463{transform:matrix(0.335537,-0.005369,0.003999,0.249968,0,0);-ms-transform:matrix(0.335537,-0.005369,0.003999,0.249968,0,0);-webkit-transform:matrix(0.335537,-0.005369,0.003999,0.249968,0,0);}
.m15_c00463{transform:matrix(0.393910,-0.006303,0.003999,0.249968,0,0);-ms-transform:matrix(0.393910,-0.006303,0.003999,0.249968,0,0);-webkit-transform:matrix(0.393910,-0.006303,0.003999,0.249968,0,0);}
.mb_c00463{transform:matrix(0.409033,-0.006545,0.003999,0.249968,0,0);-ms-transform:matrix(0.409033,-0.006545,0.003999,0.249968,0,0);-webkit-transform:matrix(0.409033,-0.006545,0.003999,0.249968,0,0);}
.ma_c00463{transform:matrix(0.423306,-0.006773,0.003999,0.249968,0,0);-ms-transform:matrix(0.423306,-0.006773,0.003999,0.249968,0,0);-webkit-transform:matrix(0.423306,-0.006773,0.003999,0.249968,0,0);}
.m20_c00463{transform:matrix(0.457721,-0.005950,0.003250,0.249979,0,0);-ms-transform:matrix(0.457721,-0.005950,0.003250,0.249979,0,0);-webkit-transform:matrix(0.457721,-0.005950,0.003250,0.249979,0,0);}
.m0_c00463{transform:matrix(0.571652,-0.009146,0.003999,0.249968,0,0);-ms-transform:matrix(0.571652,-0.009146,0.003999,0.249968,0,0);-webkit-transform:matrix(0.571652,-0.009146,0.003999,0.249968,0,0);}
.m22_c00463{transform:matrix(1.485130,-0.019307,0.003250,0.249979,0,0);-ms-transform:matrix(1.485130,-0.019307,0.003250,0.249979,0,0);-webkit-transform:matrix(1.485130,-0.019307,0.003250,0.249979,0,0);}
.v0_c00463{vertical-align:0.000000px;}
.ls0_c00463{letter-spacing:0.000000px;}
.sc__c00463{text-shadow:none;}
.sc0_c00463{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__c00463{-webkit-text-stroke:0px transparent;}
.sc0_c00463{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00463{word-spacing:0.000000px;}
.fc0_c00463{color:transparent;}
.fs3_c00463{font-size:84.007098px;}
.fs1_c00463{font-size:84.010751px;}
.fs2_c00463{font-size:96.012287px;}
.fs0_c00463{font-size:144.018431px;}
.y0_c00463{bottom:0.000000px;}
.y21_c00463{bottom:932.368500px;}
.y22_c00463{bottom:933.012273px;}
.y23_c00463{bottom:933.648851px;}
.y24_c00463{bottom:935.194889px;}
.y25_c00463{bottom:935.477814px;}
.y26_c00463{bottom:937.197753px;}
.y27_c00463{bottom:938.482160px;}
.y28_c00463{bottom:939.347102px;}
.y29_c00463{bottom:939.655865px;}
.y2a_c00463{bottom:939.907103px;}
.y2b_c00463{bottom:940.916715px;}
.y17_c00463{bottom:967.404576px;}
.y18_c00463{bottom:967.704072px;}
.y19_c00463{bottom:969.475536px;}
.y1a_c00463{bottom:970.860840px;}
.y1b_c00463{bottom:971.653728px;}
.y1c_c00463{bottom:973.523640px;}
.y1d_c00463{bottom:974.141040px;}
.y1e_c00463{bottom:974.573784px;}
.y1f_c00463{bottom:975.134448px;}
.y20_c00463{bottom:977.212656px;}
.yb_c00463{bottom:1003.634436px;}
.yc_c00463{bottom:1004.442060px;}
.yd_c00463{bottom:1005.145740px;}
.ye_c00463{bottom:1006.113108px;}
.yf_c00463{bottom:1006.529148px;}
.y10_c00463{bottom:1007.286780px;}
.y11_c00463{bottom:1008.375480px;}
.y12_c00463{bottom:1008.880680px;}
.y13_c00463{bottom:1010.944788px;}
.y14_c00463{bottom:1011.475440px;}
.y15_c00463{bottom:1013.078940px;}
.y16_c00463{bottom:1013.864784px;}
.y1_c00463{bottom:1037.502000px;}
.y2_c00463{bottom:1040.126088px;}
.y3_c00463{bottom:1041.033168px;}
.y4_c00463{bottom:1041.812592px;}
.y5_c00463{bottom:1043.489016px;}
.y6_c00463{bottom:1044.714840px;}
.y7_c00463{bottom:1045.065888px;}
.y8_c00463{bottom:1046.622000px;}
.y9_c00463{bottom:1047.335184px;}
.ya_c00463{bottom:1048.192896px;}
.h5_c00463{height:84.007098px;}
.h3_c00463{height:84.010751px;}
.h4_c00463{height:96.012287px;}
.h2_c00463{height:144.018431px;}
.h0_c00463{height:1246.320000px;}
.h1_c00463{height:1246.500000px;}
.w1_c00463{width:924.750000px;}
.w0_c00463{width:925.020000px;}
.x0_c00463{left:0.000000px;}
.x1_c00463{left:51.237000px;}
.x20_c00463{left:67.089000px;}
.x17_c00463{left:76.775808px;}
.xb_c00463{left:80.907336px;}
.x18_c00463{left:95.494308px;}
.x21_c00463{left:116.610000px;}
.xc_c00463{left:128.383068px;}
.x22_c00463{left:165.577500px;}
.xd_c00463{left:169.737396px;}
.x19_c00463{left:206.210808px;}
.x2_c00463{left:215.242500px;}
.xe_c00463{left:226.634484px;}
.xf_c00463{left:251.136600px;}
.x3_c00463{left:271.935000px;}
.x23_c00463{left:284.503500px;}
.x1a_c00463{left:292.792308px;}
.x10_c00463{left:295.675380px;}
.x24_c00463{left:306.267000px;}
.x4_c00463{left:320.649000px;}
.x1b_c00463{left:342.347808px;}
.x11_c00463{left:359.686848px;}
.x12_c00463{left:389.386368px;}
.x5_c00463{left:425.425500px;}
.x25_c00463{left:438.570000px;}
.x1c_c00463{left:459.217308px;}
.x1d_c00463{left:497.804808px;}
.x6_c00463{left:502.039500px;}
.x13_c00463{left:510.797424px;}
.x7_c00463{left:523.980000px;}
.x26_c00463{left:537.370500px;}
.x14_c00463{left:541.993920px;}
.x1e_c00463{left:559.892808px;}
.x27_c00463{left:603.904500px;}
.x8_c00463{left:621.237000px;}
.x28_c00463{left:627.655500px;}
.x15_c00463{left:636.304908px;}
.x29_c00463{left:646.981500px;}
.x9_c00463{left:665.811000px;}
.x16_c00463{left:682.513164px;}
.x1f_c00463{left:689.780808px;}
.xa_c00463{left:719.418000px;}
.x2a_c00463{left:724.644000px;}
@media print{
.v0_c00463{vertical-align:0.000000pt;}
.ls0_c00463{letter-spacing:0.000000pt;}
.ws0_c00463{word-spacing:0.000000pt;}
.fs3_c00463{font-size:74.672976pt;}
.fs1_c00463{font-size:74.676223pt;}
.fs2_c00463{font-size:85.344255pt;}
.fs0_c00463{font-size:128.016383pt;}
.y0_c00463{bottom:0.000000pt;}
.y21_c00463{bottom:828.772000pt;}
.y22_c00463{bottom:829.344243pt;}
.y23_c00463{bottom:829.910089pt;}
.y24_c00463{bottom:831.284345pt;}
.y25_c00463{bottom:831.535835pt;}
.y26_c00463{bottom:833.064669pt;}
.y27_c00463{bottom:834.206364pt;}
.y28_c00463{bottom:834.975201pt;}
.y29_c00463{bottom:835.249657pt;}
.y2a_c00463{bottom:835.472980pt;}
.y2b_c00463{bottom:836.370413pt;}
.y17_c00463{bottom:859.915179pt;}
.y18_c00463{bottom:860.181397pt;}
.y19_c00463{bottom:861.756032pt;}
.y1a_c00463{bottom:862.987413pt;}
.y1b_c00463{bottom:863.692203pt;}
.y1c_c00463{bottom:865.354347pt;}
.y1d_c00463{bottom:865.903147pt;}
.y1e_c00463{bottom:866.287808pt;}
.y1f_c00463{bottom:866.786176pt;}
.y20_c00463{bottom:868.633472pt;}
.yb_c00463{bottom:892.119499pt;}
.yc_c00463{bottom:892.837387pt;}
.yd_c00463{bottom:893.462880pt;}
.ye_c00463{bottom:894.322763pt;}
.yf_c00463{bottom:894.692576pt;}
.y10_c00463{bottom:895.366027pt;}
.y11_c00463{bottom:896.333760pt;}
.y12_c00463{bottom:896.782827pt;}
.y13_c00463{bottom:898.617589pt;}
.y14_c00463{bottom:899.089280pt;}
.y15_c00463{bottom:900.514613pt;}
.y16_c00463{bottom:901.213141pt;}
.y1_c00463{bottom:922.224000pt;}
.y2_c00463{bottom:924.556523pt;}
.y3_c00463{bottom:925.362816pt;}
.y4_c00463{bottom:926.055637pt;}
.y5_c00463{bottom:927.545792pt;}
.y6_c00463{bottom:928.635413pt;}
.y7_c00463{bottom:928.947456pt;}
.y8_c00463{bottom:930.330667pt;}
.y9_c00463{bottom:930.964608pt;}
.ya_c00463{bottom:931.727019pt;}
.h5_c00463{height:74.672976pt;}
.h3_c00463{height:74.676223pt;}
.h4_c00463{height:85.344255pt;}
.h2_c00463{height:128.016383pt;}
.h0_c00463{height:1107.840000pt;}
.h1_c00463{height:1108.000000pt;}
.w1_c00463{width:822.000000pt;}
.w0_c00463{width:822.240000pt;}
.x0_c00463{left:0.000000pt;}
.x1_c00463{left:45.544000pt;}
.x20_c00463{left:59.634667pt;}
.x17_c00463{left:68.245163pt;}
.xb_c00463{left:71.917632pt;}
.x18_c00463{left:84.883829pt;}
.x21_c00463{left:103.653333pt;}
.xc_c00463{left:114.118283pt;}
.x22_c00463{left:147.180000pt;}
.xd_c00463{left:150.877685pt;}
.x19_c00463{left:183.298496pt;}
.x2_c00463{left:191.326667pt;}
.xe_c00463{left:201.452875pt;}
.xf_c00463{left:223.232533pt;}
.x3_c00463{left:241.720000pt;}
.x23_c00463{left:252.892000pt;}
.x1a_c00463{left:260.259829pt;}
.x10_c00463{left:262.822560pt;}
.x24_c00463{left:272.237333pt;}
.x4_c00463{left:285.021333pt;}
.x1b_c00463{left:304.309163pt;}
.x11_c00463{left:319.721643pt;}
.x12_c00463{left:346.121216pt;}
.x5_c00463{left:378.156000pt;}
.x25_c00463{left:389.840000pt;}
.x1c_c00463{left:408.193163pt;}
.x1d_c00463{left:442.493163pt;}
.x6_c00463{left:446.257333pt;}
.x13_c00463{left:454.042155pt;}
.x7_c00463{left:465.760000pt;}
.x26_c00463{left:477.662667pt;}
.x14_c00463{left:481.772373pt;}
.x1e_c00463{left:497.682496pt;}
.x27_c00463{left:536.804000pt;}
.x8_c00463{left:552.210667pt;}
.x28_c00463{left:557.916000pt;}
.x15_c00463{left:565.604363pt;}
.x29_c00463{left:575.094667pt;}
.x9_c00463{left:591.832000pt;}
.x16_c00463{left:606.678368pt;}
.x1f_c00463{left:613.138496pt;}
.xa_c00463{left:639.482667pt;}
.x2a_c00463{left:644.128000pt;}
}





/* 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_c00464 {
    display:none;
  }
  .loading-indicator_c00464.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00464 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_c00464 { 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_c00464" -> "#page-container .classname_c00464")
 */
.pf_c00464 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00464 { /* 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_c00464.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00464 { /* 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_c00464 { /* 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_c00464 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00464 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00464 {overflow:visible;}
  }
}
.c_c00464 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00464 { /* 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_c00464:after { /* webkit #35443 */
  content: '';
}
.t_c00464:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00464 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 */
}
.__c00464 { /* 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_c00464 { /* info for Javascript */
  display:none;
}
.l_c00464 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00464 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00464 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00464: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_c00464 {
    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_c00464.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00464.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_c00464 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00464{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00464;src:url('chunks/assets/font_7c6b9abe6ee2a268480c528b.woff2')format("woff");}.ff1_c00464{font-family:ff1_c00464;line-height:1.000000;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;}
.m2_c00464{transform:matrix(0.010605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.010605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.010605,0.000000,0.000000,0.250000,0,0);}
.m1_c00464{transform:matrix(0.080100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080100,0.000000,0.000000,0.250000,0,0);}
.mbf_c00464{transform:matrix(0.105096,0.003366,-0.008004,0.249872,0,0);-ms-transform:matrix(0.105096,0.003366,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.105096,0.003366,-0.008004,0.249872,0,0);}
.mfa_c00464{transform:matrix(0.131525,0.004871,-0.009253,0.249829,0,0);-ms-transform:matrix(0.131525,0.004871,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.131525,0.004871,-0.009253,0.249829,0,0);}
.mfd_c00464{transform:matrix(0.133888,0.004959,-0.009253,0.249829,0,0);-ms-transform:matrix(0.133888,0.004959,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.133888,0.004959,-0.009253,0.249829,0,0);}
.mfe_c00464{transform:matrix(0.152001,0.005630,-0.009253,0.249829,0,0);-ms-transform:matrix(0.152001,0.005630,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.152001,0.005630,-0.009253,0.249829,0,0);}
.m120_c00464{transform:matrix(0.162586,0.006835,-0.010501,0.249779,0,0);-ms-transform:matrix(0.162586,0.006835,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.162586,0.006835,-0.010501,0.249779,0,0);}
.mf8_c00464{transform:matrix(0.162609,0.006023,-0.009253,0.249829,0,0);-ms-transform:matrix(0.162609,0.006023,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.162609,0.006023,-0.009253,0.249829,0,0);}
.mfb_c00464{transform:matrix(0.163143,0.006042,-0.009253,0.249829,0,0);-ms-transform:matrix(0.163143,0.006042,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.163143,0.006042,-0.009253,0.249829,0,0);}
.m0_c00464{transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);}
.m102_c00464{transform:matrix(0.164202,0.006082,-0.009253,0.249829,0,0);-ms-transform:matrix(0.164202,0.006082,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.164202,0.006082,-0.009253,0.249829,0,0);}
.m96_c00464{transform:matrix(0.167369,0.005361,-0.008004,0.249872,0,0);-ms-transform:matrix(0.167369,0.005361,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.167369,0.005361,-0.008004,0.249872,0,0);}
.mb0_c00464{transform:matrix(0.169673,0.005435,-0.008004,0.249872,0,0);-ms-transform:matrix(0.169673,0.005435,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.169673,0.005435,-0.008004,0.249872,0,0);}
.m99_c00464{transform:matrix(0.170488,0.005461,-0.008004,0.249872,0,0);-ms-transform:matrix(0.170488,0.005461,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.170488,0.005461,-0.008004,0.249872,0,0);}
.mff_c00464{transform:matrix(0.170648,0.006320,-0.009253,0.249829,0,0);-ms-transform:matrix(0.170648,0.006320,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.170648,0.006320,-0.009253,0.249829,0,0);}
.mfc_c00464{transform:matrix(0.173616,0.006430,-0.009253,0.249829,0,0);-ms-transform:matrix(0.173616,0.006430,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.173616,0.006430,-0.009253,0.249829,0,0);}
.m101_c00464{transform:matrix(0.176429,0.006534,-0.009253,0.249829,0,0);-ms-transform:matrix(0.176429,0.006534,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.176429,0.006534,-0.009253,0.249829,0,0);}
.m94_c00464{transform:matrix(0.178104,0.005705,-0.008004,0.249872,0,0);-ms-transform:matrix(0.178104,0.005705,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.178104,0.005705,-0.008004,0.249872,0,0);}
.mf9_c00464{transform:matrix(0.178263,0.006602,-0.009253,0.249829,0,0);-ms-transform:matrix(0.178263,0.006602,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.178263,0.006602,-0.009253,0.249829,0,0);}
.m87_c00464{transform:matrix(0.178523,0.005718,-0.008004,0.249872,0,0);-ms-transform:matrix(0.178523,0.005718,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.178523,0.005718,-0.008004,0.249872,0,0);}
.m16_c00464{transform:matrix(0.179175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179175,0.000000,0.000000,0.250000,0,0);}
.m100_c00464{transform:matrix(0.179632,0.006653,-0.009253,0.249829,0,0);-ms-transform:matrix(0.179632,0.006653,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.179632,0.006653,-0.009253,0.249829,0,0);}
.maa_c00464{transform:matrix(0.180188,0.005772,-0.008004,0.249872,0,0);-ms-transform:matrix(0.180188,0.005772,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.180188,0.005772,-0.008004,0.249872,0,0);}
.m85_c00464{transform:matrix(0.181302,0.005807,-0.008004,0.249872,0,0);-ms-transform:matrix(0.181302,0.005807,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.181302,0.005807,-0.008004,0.249872,0,0);}
.m119_c00464{transform:matrix(0.181382,0.007807,-0.010751,0.249769,0,0);-ms-transform:matrix(0.181382,0.007807,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.181382,0.007807,-0.010751,0.249769,0,0);}
.m80_c00464{transform:matrix(0.181852,0.005825,-0.008004,0.249872,0,0);-ms-transform:matrix(0.181852,0.005825,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.181852,0.005825,-0.008004,0.249872,0,0);}
.m3d_c00464{transform:matrix(0.181885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181885,0.000000,0.000000,0.250000,0,0);}
.m11_c00464{transform:matrix(0.181945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181945,0.000000,0.000000,0.250000,0,0);}
.m14_c00464{transform:matrix(0.183050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183050,0.000000,0.000000,0.250000,0,0);}
.m6a_c00464{transform:matrix(0.185830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185830,0.000000,0.000000,0.250000,0,0);}
.mb2_c00464{transform:matrix(0.186859,0.005985,-0.008004,0.249872,0,0);-ms-transform:matrix(0.186859,0.005985,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.186859,0.005985,-0.008004,0.249872,0,0);}
.m29_c00464{transform:matrix(0.188615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188615,0.000000,0.000000,0.250000,0,0);}
.m40_c00464{transform:matrix(0.189605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189605,0.000000,0.000000,0.250000,0,0);}
.mdc_c00464{transform:matrix(0.190849,0.007068,-0.009253,0.249829,0,0);-ms-transform:matrix(0.190849,0.007068,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.190849,0.007068,-0.009253,0.249829,0,0);}
.m37_c00464{transform:matrix(0.191375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191375,0.000000,0.000000,0.250000,0,0);}
.m9c_c00464{transform:matrix(0.191482,0.006134,-0.008004,0.249872,0,0);-ms-transform:matrix(0.191482,0.006134,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.191482,0.006134,-0.008004,0.249872,0,0);}
.m7d_c00464{transform:matrix(0.192095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192095,0.000000,0.000000,0.250000,0,0);}
.m3e_c00464{transform:matrix(0.192450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192450,0.000000,0.000000,0.250000,0,0);}
.m97_c00464{transform:matrix(0.193076,0.006185,-0.008004,0.249872,0,0);-ms-transform:matrix(0.193076,0.006185,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.193076,0.006185,-0.008004,0.249872,0,0);}
.m83_c00464{transform:matrix(0.193501,0.006198,-0.008004,0.249872,0,0);-ms-transform:matrix(0.193501,0.006198,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.193501,0.006198,-0.008004,0.249872,0,0);}
.m114_c00464{transform:matrix(0.193626,0.008334,-0.010751,0.249769,0,0);-ms-transform:matrix(0.193626,0.008334,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.193626,0.008334,-0.010751,0.249769,0,0);}
.m12_c00464{transform:matrix(0.194035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194035,0.000000,0.000000,0.250000,0,0);}
.m112_c00464{transform:matrix(0.194360,0.008366,-0.010751,0.249769,0,0);-ms-transform:matrix(0.194360,0.008366,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.194360,0.008366,-0.010751,0.249769,0,0);}
.m10f_c00464{transform:matrix(0.194395,0.008367,-0.010751,0.249769,0,0);-ms-transform:matrix(0.194395,0.008367,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.194395,0.008367,-0.010751,0.249769,0,0);}
.mad_c00464{transform:matrix(0.195445,0.006260,-0.008004,0.249872,0,0);-ms-transform:matrix(0.195445,0.006260,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.195445,0.006260,-0.008004,0.249872,0,0);}
.m107_c00464{transform:matrix(0.195991,0.007259,-0.009253,0.249829,0,0);-ms-transform:matrix(0.195991,0.007259,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.195991,0.007259,-0.009253,0.249829,0,0);}
.m98_c00464{transform:matrix(0.196009,0.006279,-0.008004,0.249872,0,0);-ms-transform:matrix(0.196009,0.006279,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.196009,0.006279,-0.008004,0.249872,0,0);}
.m3a_c00464{transform:matrix(0.196125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196125,0.000000,0.000000,0.250000,0,0);}
.m9d_c00464{transform:matrix(0.196634,0.006299,-0.008004,0.249872,0,0);-ms-transform:matrix(0.196634,0.006299,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.196634,0.006299,-0.008004,0.249872,0,0);}
.m95_c00464{transform:matrix(0.197054,0.006312,-0.008004,0.249872,0,0);-ms-transform:matrix(0.197054,0.006312,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.197054,0.006312,-0.008004,0.249872,0,0);}
.m128_c00464{transform:matrix(0.197640,0.008309,-0.010501,0.249779,0,0);-ms-transform:matrix(0.197640,0.008309,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.197640,0.008309,-0.010501,0.249779,0,0);}
.m9a_c00464{transform:matrix(0.197754,0.006334,-0.008004,0.249872,0,0);-ms-transform:matrix(0.197754,0.006334,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.197754,0.006334,-0.008004,0.249872,0,0);}
.m10e_c00464{transform:matrix(0.197890,0.008320,-0.010501,0.249779,0,0);-ms-transform:matrix(0.197890,0.008320,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.197890,0.008320,-0.010501,0.249779,0,0);}
.ma9_c00464{transform:matrix(0.197998,0.006342,-0.008004,0.249872,0,0);-ms-transform:matrix(0.197998,0.006342,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.197998,0.006342,-0.008004,0.249872,0,0);}
.m129_c00464{transform:matrix(0.198924,0.008363,-0.010501,0.249779,0,0);-ms-transform:matrix(0.198924,0.008363,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.198924,0.008363,-0.010501,0.249779,0,0);}
.m127_c00464{transform:matrix(0.199019,0.008367,-0.010501,0.249779,0,0);-ms-transform:matrix(0.199019,0.008367,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.199019,0.008367,-0.010501,0.249779,0,0);}
.m60_c00464{transform:matrix(0.199100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199100,0.000000,0.000000,0.250000,0,0);}
.m93_c00464{transform:matrix(0.199163,0.006380,-0.008004,0.249872,0,0);-ms-transform:matrix(0.199163,0.006380,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.199163,0.006380,-0.008004,0.249872,0,0);}
.m5b_c00464{transform:matrix(0.199330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199330,0.000000,0.000000,0.250000,0,0);}
.m9e_c00464{transform:matrix(0.199378,0.006386,-0.008004,0.249872,0,0);-ms-transform:matrix(0.199378,0.006386,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.199378,0.006386,-0.008004,0.249872,0,0);}
.md_c00464{transform:matrix(0.199880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199880,0.000000,0.000000,0.250000,0,0);}
.m110_c00464{transform:matrix(0.200694,0.008638,-0.010751,0.249769,0,0);-ms-transform:matrix(0.200694,0.008638,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.200694,0.008638,-0.010751,0.249769,0,0);}
.m9b_c00464{transform:matrix(0.201247,0.006446,-0.008004,0.249872,0,0);-ms-transform:matrix(0.201247,0.006446,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.201247,0.006446,-0.008004,0.249872,0,0);}
.mcd_c00464{transform:matrix(0.201512,0.006455,-0.008004,0.249872,0,0);-ms-transform:matrix(0.201512,0.006455,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.201512,0.006455,-0.008004,0.249872,0,0);}
.m88_c00464{transform:matrix(0.202186,0.006476,-0.008004,0.249872,0,0);-ms-transform:matrix(0.202186,0.006476,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.202186,0.006476,-0.008004,0.249872,0,0);}
.m62_c00464{transform:matrix(0.203340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203340,0.000000,0.000000,0.250000,0,0);}
.mae_c00464{transform:matrix(0.203676,0.006524,-0.008004,0.249872,0,0);-ms-transform:matrix(0.203676,0.006524,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.203676,0.006524,-0.008004,0.249872,0,0);}
.m64_c00464{transform:matrix(0.203805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203805,0.000000,0.000000,0.250000,0,0);}
.m5f_c00464{transform:matrix(0.204260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204260,0.000000,0.000000,0.250000,0,0);}
.m84_c00464{transform:matrix(0.205410,0.006580,-0.008004,0.249872,0,0);-ms-transform:matrix(0.205410,0.006580,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.205410,0.006580,-0.008004,0.249872,0,0);}
.mab_c00464{transform:matrix(0.205829,0.006593,-0.008004,0.249872,0,0);-ms-transform:matrix(0.205829,0.006593,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.205829,0.006593,-0.008004,0.249872,0,0);}
.m2c_c00464{transform:matrix(0.206095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206095,0.000000,0.000000,0.250000,0,0);}
.mc8_c00464{transform:matrix(0.206804,0.006624,-0.008004,0.249872,0,0);-ms-transform:matrix(0.206804,0.006624,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.206804,0.006624,-0.008004,0.249872,0,0);}
.m58_c00464{transform:matrix(0.207060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207060,0.000000,0.000000,0.250000,0,0);}
.m105_c00464{transform:matrix(0.207303,0.007678,-0.009253,0.249829,0,0);-ms-transform:matrix(0.207303,0.007678,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.207303,0.007678,-0.009253,0.249829,0,0);}
.m6c_c00464{transform:matrix(0.207460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207460,0.000000,0.000000,0.250000,0,0);}
.m65_c00464{transform:matrix(0.207690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207690,0.000000,0.000000,0.250000,0,0);}
.m34_c00464{transform:matrix(0.208015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208015,0.000000,0.000000,0.250000,0,0);}
.m81_c00464{transform:matrix(0.208093,0.006666,-0.008004,0.249872,0,0);-ms-transform:matrix(0.208093,0.006666,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.208093,0.006666,-0.008004,0.249872,0,0);}
.m59_c00464{transform:matrix(0.208605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208605,0.000000,0.000000,0.250000,0,0);}
.m31_c00464{transform:matrix(0.209300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209300,0.000000,0.000000,0.250000,0,0);}
.m38_c00464{transform:matrix(0.209360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209360,0.000000,0.000000,0.250000,0,0);}
.m66_c00464{transform:matrix(0.209620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209620,0.000000,0.000000,0.250000,0,0);}
.m73_c00464{transform:matrix(0.210545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210545,0.000000,0.000000,0.250000,0,0);}
.m108_c00464{transform:matrix(0.210870,0.007810,-0.009253,0.249829,0,0);-ms-transform:matrix(0.210870,0.007810,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.210870,0.007810,-0.009253,0.249829,0,0);}
.m10_c00464{transform:matrix(0.211145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211145,0.000000,0.000000,0.250000,0,0);}
.m12c_c00464{transform:matrix(0.211858,0.008907,-0.010501,0.249779,0,0);-ms-transform:matrix(0.211858,0.008907,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.211858,0.008907,-0.010501,0.249779,0,0);}
.mb3_c00464{transform:matrix(0.212161,0.006796,-0.008004,0.249872,0,0);-ms-transform:matrix(0.212161,0.006796,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.212161,0.006796,-0.008004,0.249872,0,0);}
.m12b_c00464{transform:matrix(0.212552,0.008936,-0.010501,0.249779,0,0);-ms-transform:matrix(0.212552,0.008936,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.212552,0.008936,-0.010501,0.249779,0,0);}
.m115_c00464{transform:matrix(0.212628,0.009152,-0.010751,0.249769,0,0);-ms-transform:matrix(0.212628,0.009152,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.212628,0.009152,-0.010751,0.249769,0,0);}
.mb1_c00464{transform:matrix(0.212666,0.006812,-0.008004,0.249872,0,0);-ms-transform:matrix(0.212666,0.006812,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.212666,0.006812,-0.008004,0.249872,0,0);}
.m61_c00464{transform:matrix(0.213140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213140,0.000000,0.000000,0.250000,0,0);}
.m68_c00464{transform:matrix(0.213475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213475,0.000000,0.000000,0.250000,0,0);}
.m132_c00464{transform:matrix(0.214226,0.009006,-0.010501,0.249779,0,0);-ms-transform:matrix(0.214226,0.009006,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.214226,0.009006,-0.010501,0.249779,0,0);}
.m82_c00464{transform:matrix(0.214310,0.006865,-0.008004,0.249872,0,0);-ms-transform:matrix(0.214310,0.006865,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.214310,0.006865,-0.008004,0.249872,0,0);}
.m7a_c00464{transform:matrix(0.214415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214415,0.000000,0.000000,0.250000,0,0);}
.m15_c00464{transform:matrix(0.214580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214580,0.000000,0.000000,0.250000,0,0);}
.mf7_c00464{transform:matrix(0.215003,0.007963,-0.009253,0.249829,0,0);-ms-transform:matrix(0.215003,0.007963,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.215003,0.007963,-0.009253,0.249829,0,0);}
.maf_c00464{transform:matrix(0.215295,0.006896,-0.008004,0.249872,0,0);-ms-transform:matrix(0.215295,0.006896,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.215295,0.006896,-0.008004,0.249872,0,0);}
.m6b_c00464{transform:matrix(0.215805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215805,0.000000,0.000000,0.250000,0,0);}
.m5e_c00464{transform:matrix(0.216505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216505,0.000000,0.000000,0.250000,0,0);}
.m10c_c00464{transform:matrix(0.216654,0.009109,-0.010501,0.249779,0,0);-ms-transform:matrix(0.216654,0.009109,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.216654,0.009109,-0.010501,0.249779,0,0);}
.m86_c00464{transform:matrix(0.216704,0.006941,-0.008004,0.249872,0,0);-ms-transform:matrix(0.216704,0.006941,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.216704,0.006941,-0.008004,0.249872,0,0);}
.m11a_c00464{transform:matrix(0.216843,0.009117,-0.010501,0.249779,0,0);-ms-transform:matrix(0.216843,0.009117,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.216843,0.009117,-0.010501,0.249779,0,0);}
.m106_c00464{transform:matrix(0.217006,0.008037,-0.009253,0.249829,0,0);-ms-transform:matrix(0.217006,0.008037,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.217006,0.008037,-0.009253,0.249829,0,0);}
.mac_c00464{transform:matrix(0.217458,0.006966,-0.008004,0.249872,0,0);-ms-transform:matrix(0.217458,0.006966,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.217458,0.006966,-0.008004,0.249872,0,0);}
.mf4_c00464{transform:matrix(0.217731,0.008064,-0.009253,0.249829,0,0);-ms-transform:matrix(0.217731,0.008064,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.217731,0.008064,-0.009253,0.249829,0,0);}
.mec_c00464{transform:matrix(0.217796,0.008067,-0.009253,0.249829,0,0);-ms-transform:matrix(0.217796,0.008067,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.217796,0.008067,-0.009253,0.249829,0,0);}
.m69_c00464{transform:matrix(0.218115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218115,0.000000,0.000000,0.250000,0,0);}
.m7f_c00464{transform:matrix(0.218585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218585,0.000000,0.000000,0.250000,0,0);}
.md2_c00464{transform:matrix(0.218813,0.007009,-0.008004,0.249872,0,0);-ms-transform:matrix(0.218813,0.007009,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.218813,0.007009,-0.008004,0.249872,0,0);}
.m131_c00464{transform:matrix(0.219022,0.009208,-0.010501,0.249779,0,0);-ms-transform:matrix(0.219022,0.009208,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.219022,0.009208,-0.010501,0.249779,0,0);}
.m4_c00464{transform:matrix(0.219145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219145,0.000000,0.000000,0.250000,0,0);}
.mee_c00464{transform:matrix(0.219170,0.008117,-0.009253,0.249829,0,0);-ms-transform:matrix(0.219170,0.008117,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.219170,0.008117,-0.009253,0.249829,0,0);}
.m124_c00464{transform:matrix(0.219206,0.009216,-0.010501,0.249779,0,0);-ms-transform:matrix(0.219206,0.009216,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.219206,0.009216,-0.010501,0.249779,0,0);}
.mcf_c00464{transform:matrix(0.219422,0.007029,-0.008004,0.249872,0,0);-ms-transform:matrix(0.219422,0.007029,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.219422,0.007029,-0.008004,0.249872,0,0);}
.m126_c00464{transform:matrix(0.219426,0.009225,-0.010501,0.249779,0,0);-ms-transform:matrix(0.219426,0.009225,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.219426,0.009225,-0.010501,0.249779,0,0);}
.m123_c00464{transform:matrix(0.219521,0.009229,-0.010501,0.249779,0,0);-ms-transform:matrix(0.219521,0.009229,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.219521,0.009229,-0.010501,0.249779,0,0);}
.m89_c00464{transform:matrix(0.219712,0.007038,-0.008004,0.249872,0,0);-ms-transform:matrix(0.219712,0.007038,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.219712,0.007038,-0.008004,0.249872,0,0);}
.med_c00464{transform:matrix(0.220039,0.008150,-0.009253,0.249829,0,0);-ms-transform:matrix(0.220039,0.008150,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.220039,0.008150,-0.009253,0.249829,0,0);}
.ma1_c00464{transform:matrix(0.220187,0.007053,-0.008004,0.249872,0,0);-ms-transform:matrix(0.220187,0.007053,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.220187,0.007053,-0.008004,0.249872,0,0);}
.m78_c00464{transform:matrix(0.220480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220480,0.000000,0.000000,0.250000,0,0);}
.m3c_c00464{transform:matrix(0.220760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220760,0.000000,0.000000,0.250000,0,0);}
.mcc_c00464{transform:matrix(0.220777,0.007072,-0.008004,0.249872,0,0);-ms-transform:matrix(0.220777,0.007072,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.220777,0.007072,-0.008004,0.249872,0,0);}
.m12a_c00464{transform:matrix(0.220855,0.009285,-0.010501,0.249779,0,0);-ms-transform:matrix(0.220855,0.009285,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.220855,0.009285,-0.010501,0.249779,0,0);}
.m25_c00464{transform:matrix(0.221120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221120,0.000000,0.000000,0.250000,0,0);}
.mb5_c00464{transform:matrix(0.221262,0.007087,-0.008004,0.249872,0,0);-ms-transform:matrix(0.221262,0.007087,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.221262,0.007087,-0.008004,0.249872,0,0);}
.mef_c00464{transform:matrix(0.221303,0.008196,-0.009253,0.249829,0,0);-ms-transform:matrix(0.221303,0.008196,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.221303,0.008196,-0.009253,0.249829,0,0);}
.mca_c00464{transform:matrix(0.221336,0.007090,-0.008004,0.249872,0,0);-ms-transform:matrix(0.221336,0.007090,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.221336,0.007090,-0.008004,0.249872,0,0);}
.mf1_c00464{transform:matrix(0.221528,0.008205,-0.009253,0.249829,0,0);-ms-transform:matrix(0.221528,0.008205,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.221528,0.008205,-0.009253,0.249829,0,0);}
.m36_c00464{transform:matrix(0.221835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221835,0.000000,0.000000,0.250000,0,0);}
.m35_c00464{transform:matrix(0.222125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222125,0.000000,0.000000,0.250000,0,0);}
.m41_c00464{transform:matrix(0.222485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222485,0.000000,0.000000,0.250000,0,0);}
.m13_c00464{transform:matrix(0.222575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222575,0.000000,0.000000,0.250000,0,0);}
.mda_c00464{transform:matrix(0.222582,0.008244,-0.009253,0.249829,0,0);-ms-transform:matrix(0.222582,0.008244,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.222582,0.008244,-0.009253,0.249829,0,0);}
.m6e_c00464{transform:matrix(0.222760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222760,0.000000,0.000000,0.250000,0,0);}
.mb4_c00464{transform:matrix(0.222796,0.007137,-0.008004,0.249872,0,0);-ms-transform:matrix(0.222796,0.007137,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.222796,0.007137,-0.008004,0.249872,0,0);}
.m76_c00464{transform:matrix(0.223180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223180,0.000000,0.000000,0.250000,0,0);}
.m1c_c00464{transform:matrix(0.223270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223270,0.000000,0.000000,0.250000,0,0);}
.m117_c00464{transform:matrix(0.223278,0.009611,-0.010751,0.249769,0,0);-ms-transform:matrix(0.223278,0.009611,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.223278,0.009611,-0.010751,0.249769,0,0);}
.m32_c00464{transform:matrix(0.223380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223380,0.000000,0.000000,0.250000,0,0);}
.m4a_c00464{transform:matrix(0.223605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223605,0.000000,0.000000,0.250000,0,0);}
.md4_c00464{transform:matrix(0.223665,0.007164,-0.008004,0.249872,0,0);-ms-transform:matrix(0.223665,0.007164,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.223665,0.007164,-0.008004,0.249872,0,0);}
.m111_c00464{transform:matrix(0.224122,0.009647,-0.010751,0.249769,0,0);-ms-transform:matrix(0.224122,0.009647,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.224122,0.009647,-0.010751,0.249769,0,0);}
.mb9_c00464{transform:matrix(0.224565,0.007193,-0.008004,0.249872,0,0);-ms-transform:matrix(0.224565,0.007193,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.224565,0.007193,-0.008004,0.249872,0,0);}
.mf0_c00464{transform:matrix(0.224846,0.008328,-0.009253,0.249829,0,0);-ms-transform:matrix(0.224846,0.008328,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.224846,0.008328,-0.009253,0.249829,0,0);}
.md1_c00464{transform:matrix(0.224885,0.007204,-0.008004,0.249872,0,0);-ms-transform:matrix(0.224885,0.007204,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.224885,0.007204,-0.008004,0.249872,0,0);}
.m39_c00464{transform:matrix(0.225020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225020,0.000000,0.000000,0.250000,0,0);}
.mb_c00464{transform:matrix(0.225345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225345,0.000000,0.000000,0.250000,0,0);}
.m54_c00464{transform:matrix(0.225845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225845,0.000000,0.000000,0.250000,0,0);}
.m63_c00464{transform:matrix(0.225870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225870,0.000000,0.000000,0.250000,0,0);}
.m125_c00464{transform:matrix(0.226340,0.009516,-0.010501,0.249779,0,0);-ms-transform:matrix(0.226340,0.009516,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.226340,0.009516,-0.010501,0.249779,0,0);}
.m42_c00464{transform:matrix(0.226870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226870,0.000000,0.000000,0.250000,0,0);}
.m20_c00464{transform:matrix(0.226965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226965,0.000000,0.000000,0.250000,0,0);}
.m12d_c00464{transform:matrix(0.227479,0.009564,-0.010501,0.249779,0,0);-ms-transform:matrix(0.227479,0.009564,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.227479,0.009564,-0.010501,0.249779,0,0);}
.mc5_c00464{transform:matrix(0.228043,0.007305,-0.008004,0.249872,0,0);-ms-transform:matrix(0.228043,0.007305,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.228043,0.007305,-0.008004,0.249872,0,0);}
.mc1_c00464{transform:matrix(0.229147,0.007340,-0.008004,0.249872,0,0);-ms-transform:matrix(0.229147,0.007340,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.229147,0.007340,-0.008004,0.249872,0,0);}
.m103_c00464{transform:matrix(0.229752,0.008509,-0.009253,0.249829,0,0);-ms-transform:matrix(0.229752,0.008509,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.229752,0.008509,-0.009253,0.249829,0,0);}
.mde_c00464{transform:matrix(0.230082,0.008522,-0.009253,0.249829,0,0);-ms-transform:matrix(0.230082,0.008522,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.230082,0.008522,-0.009253,0.249829,0,0);}
.md6_c00464{transform:matrix(0.231012,0.007400,-0.008004,0.249872,0,0);-ms-transform:matrix(0.231012,0.007400,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.231012,0.007400,-0.008004,0.249872,0,0);}
.m133_c00464{transform:matrix(0.231066,0.009714,-0.010501,0.249779,0,0);-ms-transform:matrix(0.231066,0.009714,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.231066,0.009714,-0.010501,0.249779,0,0);}
.md5_c00464{transform:matrix(0.231076,0.007402,-0.008004,0.249872,0,0);-ms-transform:matrix(0.231076,0.007402,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.231076,0.007402,-0.008004,0.249872,0,0);}
.m6d_c00464{transform:matrix(0.231125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231125,0.000000,0.000000,0.250000,0,0);}
.ma0_c00464{transform:matrix(0.231321,0.007410,-0.008004,0.249872,0,0);-ms-transform:matrix(0.231321,0.007410,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.231321,0.007410,-0.008004,0.249872,0,0);}
.m3b_c00464{transform:matrix(0.231515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231515,0.000000,0.000000,0.250000,0,0);}
.m121_c00464{transform:matrix(0.231600,0.009737,-0.010501,0.249779,0,0);-ms-transform:matrix(0.231600,0.009737,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.231600,0.009737,-0.010501,0.249779,0,0);}
.m4d_c00464{transform:matrix(0.231625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231625,0.000000,0.000000,0.250000,0,0);}
.m79_c00464{transform:matrix(0.231695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231695,0.000000,0.000000,0.250000,0,0);}
.m113_c00464{transform:matrix(0.231735,0.009975,-0.010751,0.249769,0,0);-ms-transform:matrix(0.231735,0.009975,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.231735,0.009975,-0.010751,0.249769,0,0);}
.m104_c00464{transform:matrix(0.232211,0.008600,-0.009253,0.249829,0,0);-ms-transform:matrix(0.232211,0.008600,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.232211,0.008600,-0.009253,0.249829,0,0);}
.m33_c00464{transform:matrix(0.232505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232505,0.000000,0.000000,0.250000,0,0);}
.md7_c00464{transform:matrix(0.232511,0.008612,-0.009253,0.249829,0,0);-ms-transform:matrix(0.232511,0.008612,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.232511,0.008612,-0.009253,0.249829,0,0);}
.m45_c00464{transform:matrix(0.232555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232555,0.000000,0.000000,0.250000,0,0);}
.m10d_c00464{transform:matrix(0.232889,0.009791,-0.010501,0.249779,0,0);-ms-transform:matrix(0.232889,0.009791,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.232889,0.009791,-0.010501,0.249779,0,0);}
.me8_c00464{transform:matrix(0.232915,0.008626,-0.009253,0.249829,0,0);-ms-transform:matrix(0.232915,0.008626,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.232915,0.008626,-0.009253,0.249829,0,0);}
.m118_c00464{transform:matrix(0.232954,0.010027,-0.010751,0.249769,0,0);-ms-transform:matrix(0.232954,0.010027,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.232954,0.010027,-0.010751,0.249769,0,0);}
.m57_c00464{transform:matrix(0.233155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233155,0.000000,0.000000,0.250000,0,0);}
.m26_c00464{transform:matrix(0.233160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233160,0.000000,0.000000,0.250000,0,0);}
.m2f_c00464{transform:matrix(0.233375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233375,0.000000,0.000000,0.250000,0,0);}
.m5a_c00464{transform:matrix(0.233485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233485,0.000000,0.000000,0.250000,0,0);}
.m109_c00464{transform:matrix(0.233605,0.008652,-0.009253,0.249829,0,0);-ms-transform:matrix(0.233605,0.008652,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.233605,0.008652,-0.009253,0.249829,0,0);}
.m130_c00464{transform:matrix(0.234053,0.009840,-0.010501,0.249779,0,0);-ms-transform:matrix(0.234053,0.009840,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.234053,0.009840,-0.010501,0.249779,0,0);}
.m2a_c00464{transform:matrix(0.234085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234085,0.000000,0.000000,0.250000,0,0);}
.m67_c00464{transform:matrix(0.234690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234690,0.000000,0.000000,0.250000,0,0);}
.m5c_c00464{transform:matrix(0.234730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234730,0.000000,0.000000,0.250000,0,0);}
.mea_c00464{transform:matrix(0.234959,0.008702,-0.009253,0.249829,0,0);-ms-transform:matrix(0.234959,0.008702,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.234959,0.008702,-0.009253,0.249829,0,0);}
.m71_c00464{transform:matrix(0.235435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235435,0.000000,0.000000,0.250000,0,0);}
.m4f_c00464{transform:matrix(0.235850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235850,0.000000,0.000000,0.250000,0,0);}
.m12e_c00464{transform:matrix(0.236446,0.009941,-0.010501,0.249779,0,0);-ms-transform:matrix(0.236446,0.009941,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.236446,0.009941,-0.010501,0.249779,0,0);}
.m70_c00464{transform:matrix(0.236955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236955,0.000000,0.000000,0.250000,0,0);}
.m3f_c00464{transform:matrix(0.237470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237470,0.000000,0.000000,0.250000,0,0);}
.ma6_c00464{transform:matrix(0.237708,0.007614,-0.008004,0.249872,0,0);-ms-transform:matrix(0.237708,0.007614,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.237708,0.007614,-0.008004,0.249872,0,0);}
.md0_c00464{transform:matrix(0.238103,0.007627,-0.008004,0.249872,0,0);-ms-transform:matrix(0.238103,0.007627,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.238103,0.007627,-0.008004,0.249872,0,0);}
.mf3_c00464{transform:matrix(0.238162,0.008821,-0.009253,0.249829,0,0);-ms-transform:matrix(0.238162,0.008821,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.238162,0.008821,-0.009253,0.249829,0,0);}
.m4b_c00464{transform:matrix(0.238535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238535,0.000000,0.000000,0.250000,0,0);}
.m7b_c00464{transform:matrix(0.238735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238735,0.000000,0.000000,0.250000,0,0);}
.m1e_c00464{transform:matrix(0.238855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238855,0.000000,0.000000,0.250000,0,0);}
.m116_c00464{transform:matrix(0.239303,0.010300,-0.010751,0.249769,0,0);-ms-transform:matrix(0.239303,0.010300,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.239303,0.010300,-0.010751,0.249769,0,0);}
.m122_c00464{transform:matrix(0.239344,0.010062,-0.010501,0.249779,0,0);-ms-transform:matrix(0.239344,0.010062,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.239344,0.010062,-0.010501,0.249779,0,0);}
.mce_c00464{transform:matrix(0.240022,0.007688,-0.008004,0.249872,0,0);-ms-transform:matrix(0.240022,0.007688,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.240022,0.007688,-0.008004,0.249872,0,0);}
.mcb_c00464{transform:matrix(0.240267,0.007696,-0.008004,0.249872,0,0);-ms-transform:matrix(0.240267,0.007696,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.240267,0.007696,-0.008004,0.249872,0,0);}
.m5d_c00464{transform:matrix(0.240780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240780,0.000000,0.000000,0.250000,0,0);}
.mf6_c00464{transform:matrix(0.240955,0.008924,-0.009253,0.249829,0,0);-ms-transform:matrix(0.240955,0.008924,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.240955,0.008924,-0.009253,0.249829,0,0);}
.m48_c00464{transform:matrix(0.242020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242020,0.000000,0.000000,0.250000,0,0);}
.mb6_c00464{transform:matrix(0.242631,0.007772,-0.008004,0.249872,0,0);-ms-transform:matrix(0.242631,0.007772,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.242631,0.007772,-0.008004,0.249872,0,0);}
.m1d_c00464{transform:matrix(0.242745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242745,0.000000,0.000000,0.250000,0,0);}
.mbd_c00464{transform:matrix(0.243250,0.007792,-0.008004,0.249872,0,0);-ms-transform:matrix(0.243250,0.007792,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.243250,0.007792,-0.008004,0.249872,0,0);}
.mc2_c00464{transform:matrix(0.243370,0.007796,-0.008004,0.249872,0,0);-ms-transform:matrix(0.243370,0.007796,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.243370,0.007796,-0.008004,0.249872,0,0);}
.m11c_c00464{transform:matrix(0.243750,0.010248,-0.010501,0.249779,0,0);-ms-transform:matrix(0.243750,0.010248,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.243750,0.010248,-0.010501,0.249779,0,0);}
.mc6_c00464{transform:matrix(0.243970,0.007815,-0.008004,0.249872,0,0);-ms-transform:matrix(0.243970,0.007815,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.243970,0.007815,-0.008004,0.249872,0,0);}
.m23_c00464{transform:matrix(0.245030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245030,0.000000,0.000000,0.250000,0,0);}
.m12f_c00464{transform:matrix(0.245173,0.010308,-0.010501,0.249779,0,0);-ms-transform:matrix(0.245173,0.010308,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.245173,0.010308,-0.010501,0.249779,0,0);}
.mdb_c00464{transform:matrix(0.246131,0.009116,-0.009253,0.249829,0,0);-ms-transform:matrix(0.246131,0.009116,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.246131,0.009116,-0.009253,0.249829,0,0);}
.m27_c00464{transform:matrix(0.246320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246320,0.000000,0.000000,0.250000,0,0);}
.m2d_c00464{transform:matrix(0.246790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246790,0.000000,0.000000,0.250000,0,0);}
.md9_c00464{transform:matrix(0.247545,0.009168,-0.009253,0.249829,0,0);-ms-transform:matrix(0.247545,0.009168,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.247545,0.009168,-0.009253,0.249829,0,0);}
.meb_c00464{transform:matrix(0.247675,0.009173,-0.009253,0.249829,0,0);-ms-transform:matrix(0.247675,0.009173,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.247675,0.009173,-0.009253,0.249829,0,0);}
.md3_c00464{transform:matrix(0.247868,0.007940,-0.008004,0.249872,0,0);-ms-transform:matrix(0.247868,0.007940,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.247868,0.007940,-0.008004,0.249872,0,0);}
.me9_c00464{transform:matrix(0.248290,0.009196,-0.009253,0.249829,0,0);-ms-transform:matrix(0.248290,0.009196,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.248290,0.009196,-0.009253,0.249829,0,0);}
.mb8_c00464{transform:matrix(0.248428,0.007958,-0.008004,0.249872,0,0);-ms-transform:matrix(0.248428,0.007958,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.248428,0.007958,-0.008004,0.249872,0,0);}
.m74_c00464{transform:matrix(0.248545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248545,0.000000,0.000000,0.250000,0,0);}
.m30_c00464{transform:matrix(0.248835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248835,0.000000,0.000000,0.250000,0,0);}
.me6_c00464{transform:matrix(0.249494,0.009241,-0.009253,0.249829,0,0);-ms-transform:matrix(0.249494,0.009241,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.249494,0.009241,-0.009253,0.249829,0,0);}
.m9f_c00464{transform:matrix(0.249537,0.007993,-0.008004,0.249872,0,0);-ms-transform:matrix(0.249537,0.007993,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.249537,0.007993,-0.008004,0.249872,0,0);}
.m77_c00464{transform:matrix(0.249760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249760,0.000000,0.000000,0.250000,0,0);}
.me4_c00464{transform:matrix(0.249984,0.009259,-0.009253,0.249829,0,0);-ms-transform:matrix(0.249984,0.009259,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.249984,0.009259,-0.009253,0.249829,0,0);}
.m11f_c00464{transform:matrix(0.250114,0.010515,-0.010501,0.249779,0,0);-ms-transform:matrix(0.250114,0.010515,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.250114,0.010515,-0.010501,0.249779,0,0);}
.m56_c00464{transform:matrix(0.250155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250155,0.000000,0.000000,0.250000,0,0);}
.m10b_c00464{transform:matrix(0.250504,0.010532,-0.010501,0.249779,0,0);-ms-transform:matrix(0.250504,0.010532,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.250504,0.010532,-0.010501,0.249779,0,0);}
.m2e_c00464{transform:matrix(0.250650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250650,0.000000,0.000000,0.250000,0,0);}
.ma5_c00464{transform:matrix(0.250801,0.008034,-0.008004,0.249872,0,0);-ms-transform:matrix(0.250801,0.008034,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.250801,0.008034,-0.008004,0.249872,0,0);}
.m7c_c00464{transform:matrix(0.250880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250880,0.000000,0.000000,0.250000,0,0);}
.m92_c00464{transform:matrix(0.251136,0.008044,-0.008004,0.249872,0,0);-ms-transform:matrix(0.251136,0.008044,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.251136,0.008044,-0.008004,0.249872,0,0);}
.ma3_c00464{transform:matrix(0.251986,0.008072,-0.008004,0.249872,0,0);-ms-transform:matrix(0.251986,0.008072,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.251986,0.008072,-0.008004,0.249872,0,0);}
.mf2_c00464{transform:matrix(0.252067,0.009336,-0.009253,0.249829,0,0);-ms-transform:matrix(0.252067,0.009336,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.252067,0.009336,-0.009253,0.249829,0,0);}
.m6f_c00464{transform:matrix(0.252105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252105,0.000000,0.000000,0.250000,0,0);}
.mc0_c00464{transform:matrix(0.252226,0.008079,-0.008004,0.249872,0,0);-ms-transform:matrix(0.252226,0.008079,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.252226,0.008079,-0.008004,0.249872,0,0);}
.m9_c00464{transform:matrix(0.252255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252255,0.000000,0.000000,0.250000,0,0);}
.mf5_c00464{transform:matrix(0.253022,0.009371,-0.009253,0.249829,0,0);-ms-transform:matrix(0.253022,0.009371,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.253022,0.009371,-0.009253,0.249829,0,0);}
.md8_c00464{transform:matrix(0.253941,0.009405,-0.009253,0.249829,0,0);-ms-transform:matrix(0.253941,0.009405,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.253941,0.009405,-0.009253,0.249829,0,0);}
.mf_c00464{transform:matrix(0.254030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254030,0.000000,0.000000,0.250000,0,0);}
.m22_c00464{transform:matrix(0.254170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254170,0.000000,0.000000,0.250000,0,0);}
.m28_c00464{transform:matrix(0.254830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254830,0.000000,0.000000,0.250000,0,0);}
.m46_c00464{transform:matrix(0.254835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254835,0.000000,0.000000,0.250000,0,0);}
.m11e_c00464{transform:matrix(0.254880,0.010716,-0.010501,0.249779,0,0);-ms-transform:matrix(0.254880,0.010716,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.254880,0.010716,-0.010501,0.249779,0,0);}
.m72_c00464{transform:matrix(0.254900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254900,0.000000,0.000000,0.250000,0,0);}
.m8c_c00464{transform:matrix(0.255534,0.008185,-0.008004,0.249872,0,0);-ms-transform:matrix(0.255534,0.008185,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.255534,0.008185,-0.008004,0.249872,0,0);}
.m11b_c00464{transform:matrix(0.256059,0.010765,-0.010501,0.249779,0,0);-ms-transform:matrix(0.256059,0.010765,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.256059,0.010765,-0.010501,0.249779,0,0);}
.m2b_c00464{transform:matrix(0.256310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256310,0.000000,0.000000,0.250000,0,0);}
.me3_c00464{transform:matrix(0.256464,0.009499,-0.009253,0.249829,0,0);-ms-transform:matrix(0.256464,0.009499,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.256464,0.009499,-0.009253,0.249829,0,0);}
.m44_c00464{transform:matrix(0.257100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257100,0.000000,0.000000,0.250000,0,0);}
.m51_c00464{transform:matrix(0.257620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257620,0.000000,0.000000,0.250000,0,0);}
.m43_c00464{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.mbb_c00464{transform:matrix(0.258278,0.008273,-0.008004,0.249872,0,0);-ms-transform:matrix(0.258278,0.008273,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.258278,0.008273,-0.008004,0.249872,0,0);}
.m47_c00464{transform:matrix(0.258615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258615,0.000000,0.000000,0.250000,0,0);}
.mdf_c00464{transform:matrix(0.259012,0.009593,-0.009253,0.249829,0,0);-ms-transform:matrix(0.259012,0.009593,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.259012,0.009593,-0.009253,0.249829,0,0);}
.mba_c00464{transform:matrix(0.259147,0.008301,-0.008004,0.249872,0,0);-ms-transform:matrix(0.259147,0.008301,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.259147,0.008301,-0.008004,0.249872,0,0);}
.me2_c00464{transform:matrix(0.259872,0.009625,-0.009253,0.249829,0,0);-ms-transform:matrix(0.259872,0.009625,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.259872,0.009625,-0.009253,0.249829,0,0);}
.m7_c00464{transform:matrix(0.260160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260160,0.000000,0.000000,0.250000,0,0);}
.m75_c00464{transform:matrix(0.260440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260440,0.000000,0.000000,0.250000,0,0);}
.m11d_c00464{transform:matrix(0.260800,0.010965,-0.010501,0.249779,0,0);-ms-transform:matrix(0.260800,0.010965,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.260800,0.010965,-0.010501,0.249779,0,0);}
.m3_c00464{transform:matrix(0.261285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261285,0.000000,0.000000,0.250000,0,0);}
.m7e_c00464{transform:matrix(0.262365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262365,0.000000,0.000000,0.250000,0,0);}
.mc3_c00464{transform:matrix(0.262765,0.008417,-0.008004,0.249872,0,0);-ms-transform:matrix(0.262765,0.008417,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.262765,0.008417,-0.008004,0.249872,0,0);}
.mdd_c00464{transform:matrix(0.263100,0.009744,-0.009253,0.249829,0,0);-ms-transform:matrix(0.263100,0.009744,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.263100,0.009744,-0.009253,0.249829,0,0);}
.mc_c00464{transform:matrix(0.263975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263975,0.000000,0.000000,0.250000,0,0);}
.m24_c00464{transform:matrix(0.264675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264675,0.000000,0.000000,0.250000,0,0);}
.m17_c00464{transform:matrix(0.265145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265145,0.000000,0.000000,0.250000,0,0);}
.m52_c00464{transform:matrix(0.266320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266320,0.000000,0.000000,0.250000,0,0);}
.ma8_c00464{transform:matrix(0.267393,0.008565,-0.008004,0.249872,0,0);-ms-transform:matrix(0.267393,0.008565,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.267393,0.008565,-0.008004,0.249872,0,0);}
.m4e_c00464{transform:matrix(0.268385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268385,0.000000,0.000000,0.250000,0,0);}
.m6_c00464{transform:matrix(0.270295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270295,0.000000,0.000000,0.250000,0,0);}
.m19_c00464{transform:matrix(0.270985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270985,0.000000,0.000000,0.250000,0,0);}
.me0_c00464{transform:matrix(0.271084,0.010040,-0.009253,0.249829,0,0);-ms-transform:matrix(0.271084,0.010040,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.271084,0.010040,-0.009253,0.249829,0,0);}
.m5_c00464{transform:matrix(0.271240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271240,0.000000,0.000000,0.250000,0,0);}
.me7_c00464{transform:matrix(0.271529,0.010057,-0.009253,0.249829,0,0);-ms-transform:matrix(0.271529,0.010057,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.271529,0.010057,-0.009253,0.249829,0,0);}
.mc7_c00464{transform:matrix(0.271811,0.008707,-0.008004,0.249872,0,0);-ms-transform:matrix(0.271811,0.008707,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.271811,0.008707,-0.008004,0.249872,0,0);}
.me5_c00464{transform:matrix(0.271824,0.010068,-0.009253,0.249829,0,0);-ms-transform:matrix(0.271824,0.010068,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.271824,0.010068,-0.009253,0.249829,0,0);}
.ma_c00464{transform:matrix(0.272640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272640,0.000000,0.000000,0.250000,0,0);}
.me1_c00464{transform:matrix(0.274052,0.010150,-0.009253,0.249829,0,0);-ms-transform:matrix(0.274052,0.010150,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.274052,0.010150,-0.009253,0.249829,0,0);}
.mb7_c00464{transform:matrix(0.274604,0.008796,-0.008004,0.249872,0,0);-ms-transform:matrix(0.274604,0.008796,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.274604,0.008796,-0.008004,0.249872,0,0);}
.m1f_c00464{transform:matrix(0.275215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275215,0.000000,0.000000,0.250000,0,0);}
.m90_c00464{transform:matrix(0.276188,0.008847,-0.008004,0.249872,0,0);-ms-transform:matrix(0.276188,0.008847,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.276188,0.008847,-0.008004,0.249872,0,0);}
.mc9_c00464{transform:matrix(0.276298,0.008850,-0.008004,0.249872,0,0);-ms-transform:matrix(0.276298,0.008850,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.276298,0.008850,-0.008004,0.249872,0,0);}
.m8e_c00464{transform:matrix(0.276783,0.008866,-0.008004,0.249872,0,0);-ms-transform:matrix(0.276783,0.008866,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.276783,0.008866,-0.008004,0.249872,0,0);}
.m55_c00464{transform:matrix(0.277255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277255,0.000000,0.000000,0.250000,0,0);}
.ma7_c00464{transform:matrix(0.277783,0.008898,-0.008004,0.249872,0,0);-ms-transform:matrix(0.277783,0.008898,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.277783,0.008898,-0.008004,0.249872,0,0);}
.m8_c00464{transform:matrix(0.277830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277830,0.000000,0.000000,0.250000,0,0);}
.mbc_c00464{transform:matrix(0.278507,0.008921,-0.008004,0.249872,0,0);-ms-transform:matrix(0.278507,0.008921,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.278507,0.008921,-0.008004,0.249872,0,0);}
.mc4_c00464{transform:matrix(0.278647,0.008926,-0.008004,0.249872,0,0);-ms-transform:matrix(0.278647,0.008926,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.278647,0.008926,-0.008004,0.249872,0,0);}
.mbe_c00464{transform:matrix(0.278882,0.008933,-0.008004,0.249872,0,0);-ms-transform:matrix(0.278882,0.008933,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.278882,0.008933,-0.008004,0.249872,0,0);}
.m50_c00464{transform:matrix(0.283015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283015,0.000000,0.000000,0.250000,0,0);}
.m49_c00464{transform:matrix(0.284275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284275,0.000000,0.000000,0.250000,0,0);}
.ma4_c00464{transform:matrix(0.284914,0.009126,-0.008004,0.249872,0,0);-ms-transform:matrix(0.284914,0.009126,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.284914,0.009126,-0.008004,0.249872,0,0);}
.me_c00464{transform:matrix(0.286380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286380,0.000000,0.000000,0.250000,0,0);}
.m4c_c00464{transform:matrix(0.287065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287065,0.000000,0.000000,0.250000,0,0);}
.m18_c00464{transform:matrix(0.288220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288220,0.000000,0.000000,0.250000,0,0);}
.m21_c00464{transform:matrix(0.288985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288985,0.000000,0.000000,0.250000,0,0);}
.ma2_c00464{transform:matrix(0.292260,0.009362,-0.008004,0.249872,0,0);-ms-transform:matrix(0.292260,0.009362,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.292260,0.009362,-0.008004,0.249872,0,0);}
.m8d_c00464{transform:matrix(0.297283,0.009523,-0.008004,0.249872,0,0);-ms-transform:matrix(0.297283,0.009523,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.297283,0.009523,-0.008004,0.249872,0,0);}
.m8b_c00464{transform:matrix(0.297507,0.009530,-0.008004,0.249872,0,0);-ms-transform:matrix(0.297507,0.009530,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.297507,0.009530,-0.008004,0.249872,0,0);}
.m91_c00464{transform:matrix(0.298362,0.009557,-0.008004,0.249872,0,0);-ms-transform:matrix(0.298362,0.009557,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.298362,0.009557,-0.008004,0.249872,0,0);}
.m8a_c00464{transform:matrix(0.298727,0.009569,-0.008004,0.249872,0,0);-ms-transform:matrix(0.298727,0.009569,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.298727,0.009569,-0.008004,0.249872,0,0);}
.m8f_c00464{transform:matrix(0.300766,0.009634,-0.008004,0.249872,0,0);-ms-transform:matrix(0.300766,0.009634,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.300766,0.009634,-0.008004,0.249872,0,0);}
.m53_c00464{transform:matrix(0.322975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322975,0.000000,0.000000,0.250000,0,0);}
.m10a_c00464{transform:matrix(0.323864,0.013616,-0.010501,0.249779,0,0);-ms-transform:matrix(0.323864,0.013616,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.323864,0.013616,-0.010501,0.249779,0,0);}
.m1b_c00464{transform:matrix(0.371270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371270,0.000000,0.000000,0.250000,0,0);}
.m1a_c00464{transform:matrix(0.379815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379815,0.000000,0.000000,0.250000,0,0);}
.m138_c00464{transform:matrix(0.414895,0.022865,-0.013757,0.249621,0,0);-ms-transform:matrix(0.414895,0.022865,-0.013757,0.249621,0,0);-webkit-transform:matrix(0.414895,0.022865,-0.013757,0.249621,0,0);}
.m139_c00464{transform:matrix(0.424830,0.023412,-0.013757,0.249621,0,0);-ms-transform:matrix(0.424830,0.023412,-0.013757,0.249621,0,0);-webkit-transform:matrix(0.424830,0.023412,-0.013757,0.249621,0,0);}
.m135_c00464{transform:matrix(0.440626,0.024283,-0.013757,0.249621,0,0);-ms-transform:matrix(0.440626,0.024283,-0.013757,0.249621,0,0);-webkit-transform:matrix(0.440626,0.024283,-0.013757,0.249621,0,0);}
.m137_c00464{transform:matrix(0.445634,0.024559,-0.013757,0.249621,0,0);-ms-transform:matrix(0.445634,0.024559,-0.013757,0.249621,0,0);-webkit-transform:matrix(0.445634,0.024559,-0.013757,0.249621,0,0);}
.m13a_c00464{transform:matrix(0.457596,0.025218,-0.013757,0.249621,0,0);-ms-transform:matrix(0.457596,0.025218,-0.013757,0.249621,0,0);-webkit-transform:matrix(0.457596,0.025218,-0.013757,0.249621,0,0);}
.m134_c00464{transform:matrix(0.463991,0.025571,-0.013757,0.249621,0,0);-ms-transform:matrix(0.463991,0.025571,-0.013757,0.249621,0,0);-webkit-transform:matrix(0.463991,0.025571,-0.013757,0.249621,0,0);}
.m136_c00464{transform:matrix(0.475289,0.026193,-0.013757,0.249621,0,0);-ms-transform:matrix(0.475289,0.026193,-0.013757,0.249621,0,0);-webkit-transform:matrix(0.475289,0.026193,-0.013757,0.249621,0,0);}
.v0_c00464{vertical-align:0.000000px;}
.ls0_c00464{letter-spacing:0.000000px;}
.sc__c00464{text-shadow:none;}
.sc0_c00464{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__c00464{-webkit-text-stroke:0px transparent;}
.sc0_c00464{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00464{word-spacing:0.000000px;}
.fc0_c00464{color:transparent;}
.fs11_c00464{font-size:41.979604px;}
.fs6_c00464{font-size:65.967817px;}
.fs8_c00464{font-size:71.964891px;}
.fsb_c00464{font-size:71.977316px;}
.fs1_c00464{font-size:72.000000px;}
.fs9_c00464{font-size:77.961966px;}
.fsa_c00464{font-size:77.975426px;}
.fs10_c00464{font-size:77.990834px;}
.fs3_c00464{font-size:78.000000px;}
.fsd_c00464{font-size:83.973536px;}
.fse_c00464{font-size:83.990129px;}
.fsf_c00464{font-size:83.993700px;}
.fs4_c00464{font-size:84.000000px;}
.fs5_c00464{font-size:89.956114px;}
.fs2_c00464{font-size:90.000000px;}
.fs7_c00464{font-size:95.953189px;}
.fsc_c00464{font-size:113.964084px;}
.fs0_c00464{font-size:144.000000px;}
.y0_c00464{bottom:0.000000px;}
.y13c_c00464{bottom:83.014170px;}
.y13b_c00464{bottom:86.088368px;}
.y13a_c00464{bottom:88.482930px;}
.y139_c00464{bottom:91.612238px;}
.y138_c00464{bottom:99.375900px;}
.y137_c00464{bottom:103.055565px;}
.y136_c00464{bottom:109.645500px;}
.y135_c00464{bottom:130.441776px;}
.y134_c00464{bottom:131.648271px;}
.y133_c00464{bottom:133.235790px;}
.y132_c00464{bottom:134.548539px;}
.y131_c00464{bottom:137.185453px;}
.y130_c00464{bottom:139.945331px;}
.y12f_c00464{bottom:141.500931px;}
.y12e_c00464{bottom:157.196346px;}
.y12d_c00464{bottom:159.558720px;}
.y12c_c00464{bottom:162.319506px;}
.y12b_c00464{bottom:163.715019px;}
.y12a_c00464{bottom:165.101586px;}
.y129_c00464{bottom:166.940367px;}
.y128_c00464{bottom:168.756531px;}
.y127_c00464{bottom:172.001661px;}
.y126_c00464{bottom:175.241562px;}
.y125_c00464{bottom:176.604000px;}
.y124_c00464{bottom:200.980521px;}
.y123_c00464{bottom:202.852377px;}
.y122_c00464{bottom:203.689395px;}
.y121_c00464{bottom:208.467063px;}
.y120_c00464{bottom:212.646042px;}
.y11f_c00464{bottom:218.220030px;}
.y11e_c00464{bottom:221.442984px;}
.y11d_c00464{bottom:226.498041px;}
.y11c_c00464{bottom:227.902500px;}
.y11b_c00464{bottom:240.818024px;}
.y11a_c00464{bottom:245.620500px;}
.y119_c00464{bottom:248.529773px;}
.y118_c00464{bottom:253.741243px;}
.y117_c00464{bottom:255.672180px;}
.y116_c00464{bottom:257.065574px;}
.y115_c00464{bottom:260.853401px;}
.y114_c00464{bottom:262.265048px;}
.y113_c00464{bottom:265.585959px;}
.y112_c00464{bottom:266.970258px;}
.y111_c00464{bottom:268.389000px;}
.y110_c00464{bottom:275.570061px;}
.y10f_c00464{bottom:279.289140px;}
.y10e_c00464{bottom:281.635008px;}
.y10d_c00464{bottom:282.905970px;}
.y10c_c00464{bottom:284.343000px;}
.y10b_c00464{bottom:289.974653px;}
.y10a_c00464{bottom:290.946957px;}
.y109_c00464{bottom:291.895063px;}
.y108_c00464{bottom:293.199702px;}
.y107_c00464{bottom:294.472317px;}
.y106_c00464{bottom:297.013662px;}
.y105_c00464{bottom:299.220064px;}
.y104_c00464{bottom:309.750412px;}
.y103_c00464{bottom:313.735645px;}
.y102_c00464{bottom:315.153005px;}
.y101_c00464{bottom:318.136240px;}
.y100_c00464{bottom:320.051157px;}
.yff_c00464{bottom:321.020354px;}
.yfe_c00464{bottom:325.836200px;}
.yfd_c00464{bottom:328.273981px;}
.yfc_c00464{bottom:329.696114px;}
.yfb_c00464{bottom:336.042150px;}
.yfa_c00464{bottom:338.372762px;}
.yf9_c00464{bottom:346.973208px;}
.yf8_c00464{bottom:347.895008px;}
.yf7_c00464{bottom:351.754921px;}
.yf6_c00464{bottom:353.062890px;}
.yf5_c00464{bottom:355.264686px;}
.yf4_c00464{bottom:359.080145px;}
.yf3_c00464{bottom:360.870130px;}
.yf2_c00464{bottom:362.577699px;}
.yf1_c00464{bottom:363.845874px;}
.yf0_c00464{bottom:365.968250px;}
.yef_c00464{bottom:367.268615px;}
.yee_c00464{bottom:368.979180px;}
.yed_c00464{bottom:372.371229px;}
.yec_c00464{bottom:383.399301px;}
.yeb_c00464{bottom:385.546430px;}
.yea_c00464{bottom:386.768484px;}
.ye9_c00464{bottom:389.795121px;}
.ye8_c00464{bottom:391.447689px;}
.ye7_c00464{bottom:394.768531px;}
.ye6_c00464{bottom:396.463279px;}
.ye5_c00464{bottom:398.566341px;}
.ye4_c00464{bottom:400.667515px;}
.ye3_c00464{bottom:404.387403px;}
.ye2_c00464{bottom:407.730224px;}
.ye1_c00464{bottom:424.471355px;}
.ye0_c00464{bottom:426.942381px;}
.ydf_c00464{bottom:428.638017px;}
.yde_c00464{bottom:429.437439px;}
.ydd_c00464{bottom:432.651666px;}
.ydc_c00464{bottom:433.940987px;}
.ydb_c00464{bottom:437.161485px;}
.yda_c00464{bottom:438.810890px;}
.yd9_c00464{bottom:441.198000px;}
.yd8_c00464{bottom:459.857290px;}
.yd7_c00464{bottom:461.727945px;}
.yd6_c00464{bottom:463.213146px;}
.yd5_c00464{bottom:466.235265px;}
.yd4_c00464{bottom:467.359071px;}
.yd3_c00464{bottom:468.872267px;}
.yd2_c00464{bottom:471.104172px;}
.yd1_c00464{bottom:472.208911px;}
.yd0_c00464{bottom:474.474534px;}
.ycf_c00464{bottom:475.575770px;}
.yce_c00464{bottom:476.311770px;}
.ycd_c00464{bottom:478.577105px;}
.ycc_c00464{bottom:490.841289px;}
.ycb_c00464{bottom:494.889106px;}
.yca_c00464{bottom:496.014658px;}
.yc9_c00464{bottom:499.507836px;}
.yc8_c00464{bottom:500.709665px;}
.yc7_c00464{bottom:501.844155px;}
.yc6_c00464{bottom:506.438058px;}
.yc5_c00464{bottom:508.801459px;}
.yc4_c00464{bottom:510.323541px;}
.yc3_c00464{bottom:511.472250px;}
.yc2_c00464{bottom:513.388738px;}
.yc1_c00464{bottom:528.011437px;}
.yc0_c00464{bottom:531.548317px;}
.ybf_c00464{bottom:532.655630px;}
.ybe_c00464{bottom:535.837933px;}
.ybd_c00464{bottom:537.929965px;}
.ybc_c00464{bottom:540.056269px;}
.ybb_c00464{bottom:541.110637px;}
.yba_c00464{bottom:542.865853px;}
.yb9_c00464{bottom:546.054590px;}
.yb8_c00464{bottom:547.454653px;}
.yb7_c00464{bottom:548.470333px;}
.yb6_c00464{bottom:564.877851px;}
.yb5_c00464{bottom:567.203398px;}
.yb4_c00464{bottom:568.309626px;}
.yb3_c00464{bottom:570.598107px;}
.yb2_c00464{bottom:571.330028px;}
.yb1_c00464{bottom:574.706246px;}
.yb0_c00464{bottom:576.586703px;}
.yaf_c00464{bottom:578.738464px;}
.yae_c00464{bottom:581.100849px;}
.yad_c00464{bottom:583.272637px;}
.yac_c00464{bottom:584.410806px;}
.yab_c00464{bottom:586.254906px;}
.yaa_c00464{bottom:602.725292px;}
.ya9_c00464{bottom:605.937771px;}
.ya8_c00464{bottom:606.903403px;}
.ya7_c00464{bottom:608.517390px;}
.ya6_c00464{bottom:611.709336px;}
.ya5_c00464{bottom:612.996098px;}
.ya4_c00464{bottom:616.094277px;}
.ya3_c00464{bottom:616.766322px;}
.ya2_c00464{bottom:618.736734px;}
.ya1_c00464{bottom:619.986423px;}
.ya0_c00464{bottom:638.077011px;}
.y9f_c00464{bottom:639.643415px;}
.y9e_c00464{bottom:640.277536px;}
.y9d_c00464{bottom:642.451827px;}
.y9c_c00464{bottom:644.578410px;}
.y9b_c00464{bottom:645.508051px;}
.y9a_c00464{bottom:647.647958px;}
.y99_c00464{bottom:649.214361px;}
.y98_c00464{bottom:650.122866px;}
.y97_c00464{bottom:651.971034px;}
.y96_c00464{bottom:653.214627px;}
.y95_c00464{bottom:655.069755px;}
.y94_c00464{bottom:670.746393px;}
.y93_c00464{bottom:673.497758px;}
.y92_c00464{bottom:675.231801px;}
.y91_c00464{bottom:678.642010px;}
.y90_c00464{bottom:680.031152px;}
.y8f_c00464{bottom:682.725791px;}
.y8e_c00464{bottom:683.773197px;}
.y8d_c00464{bottom:686.503297px;}
.y8c_c00464{bottom:689.883075px;}
.y8b_c00464{bottom:710.054796px;}
.y8a_c00464{bottom:711.871020px;}
.y89_c00464{bottom:712.916220px;}
.y88_c00464{bottom:715.769820px;}
.y87_c00464{bottom:716.806620px;}
.y86_c00464{bottom:717.523932px;}
.y85_c00464{bottom:718.587468px;}
.y84_c00464{bottom:721.726620px;}
.y83_c00464{bottom:723.164268px;}
.y82_c00464{bottom:724.153500px;}
.y81_c00464{bottom:744.432000px;}
.y80_c00464{bottom:747.841500px;}
.y7f_c00464{bottom:748.801500px;}
.y7e_c00464{bottom:751.120500px;}
.y7d_c00464{bottom:753.097500px;}
.y7c_c00464{bottom:754.102500px;}
.y7b_c00464{bottom:755.743500px;}
.y7a_c00464{bottom:757.080000px;}
.y79_c00464{bottom:760.329000px;}
.y78_c00464{bottom:761.673000px;}
.y77_c00464{bottom:781.728000px;}
.y76_c00464{bottom:783.889500px;}
.y75_c00464{bottom:784.941000px;}
.y74_c00464{bottom:789.142500px;}
.y73_c00464{bottom:789.900000px;}
.y72_c00464{bottom:791.943000px;}
.y71_c00464{bottom:794.808000px;}
.y70_c00464{bottom:796.191000px;}
.y6f_c00464{bottom:797.614500px;}
.y6e_c00464{bottom:798.658500px;}
.y6d_c00464{bottom:815.874000px;}
.y6c_c00464{bottom:816.895500px;}
.y6b_c00464{bottom:819.315000px;}
.y6a_c00464{bottom:821.391000px;}
.y69_c00464{bottom:822.057000px;}
.y68_c00464{bottom:824.076000px;}
.y67_c00464{bottom:826.120500px;}
.y66_c00464{bottom:827.841000px;}
.y65_c00464{bottom:831.934500px;}
.y64_c00464{bottom:834.300000px;}
.y63_c00464{bottom:851.298000px;}
.y62_c00464{bottom:852.121500px;}
.y61_c00464{bottom:854.059500px;}
.y60_c00464{bottom:854.637000px;}
.y5f_c00464{bottom:857.650500px;}
.y5e_c00464{bottom:860.668500px;}
.y5d_c00464{bottom:861.496500px;}
.y5c_c00464{bottom:863.173500px;}
.y5b_c00464{bottom:863.982000px;}
.y5a_c00464{bottom:865.309500px;}
.y59_c00464{bottom:866.707500px;}
.y58_c00464{bottom:886.432500px;}
.y57_c00464{bottom:887.347500px;}
.y56_c00464{bottom:890.439000px;}
.y55_c00464{bottom:891.367500px;}
.y54_c00464{bottom:892.386000px;}
.y53_c00464{bottom:894.766500px;}
.y52_c00464{bottom:896.335500px;}
.y51_c00464{bottom:900.343500px;}
.y50_c00464{bottom:901.258500px;}
.y4f_c00464{bottom:903.963000px;}
.y4e_c00464{bottom:921.484500px;}
.y4d_c00464{bottom:923.745000px;}
.y4c_c00464{bottom:924.529500px;}
.y4b_c00464{bottom:925.357500px;}
.y4a_c00464{bottom:928.680000px;}
.y49_c00464{bottom:929.793000px;}
.y48_c00464{bottom:931.170000px;}
.y47_c00464{bottom:933.048000px;}
.y46_c00464{bottom:933.903000px;}
.y45_c00464{bottom:935.544000px;}
.y44_c00464{bottom:937.438500px;}
.y43_c00464{bottom:956.959500px;}
.y42_c00464{bottom:958.815000px;}
.y41_c00464{bottom:959.599500px;}
.y40_c00464{bottom:962.017500px;}
.y3f_c00464{bottom:962.802000px;}
.y3e_c00464{bottom:963.331500px;}
.y3d_c00464{bottom:963.876000px;}
.y3c_c00464{bottom:965.952000px;}
.y3b_c00464{bottom:966.756000px;}
.y3a_c00464{bottom:968.596500px;}
.y39_c00464{bottom:969.672000px;}
.y38_c00464{bottom:970.443000px;}
.y37_c00464{bottom:971.734500px;}
.y36_c00464{bottom:994.399500px;}
.y35_c00464{bottom:995.340000px;}
.y34_c00464{bottom:996.222000px;}
.y33_c00464{bottom:997.710000px;}
.y32_c00464{bottom:998.622000px;}
.y31_c00464{bottom:999.504000px;}
.y30_c00464{bottom:1001.889000px;}
.y2f_c00464{bottom:1003.390500px;}
.y2e_c00464{bottom:1006.029000px;}
.y2d_c00464{bottom:1009.264500px;}
.y2c_c00464{bottom:1026.942000px;}
.y2b_c00464{bottom:1029.835500px;}
.y2a_c00464{bottom:1030.987500px;}
.y29_c00464{bottom:1031.575500px;}
.y28_c00464{bottom:1034.442000px;}
.y27_c00464{bottom:1036.999500px;}
.y26_c00464{bottom:1037.620500px;}
.y25_c00464{bottom:1038.751500px;}
.y24_c00464{bottom:1041.609000px;}
.y23_c00464{bottom:1043.286000px;}
.y22_c00464{bottom:1061.482500px;}
.y21_c00464{bottom:1065.094500px;}
.y20_c00464{bottom:1066.089000px;}
.y1f_c00464{bottom:1068.598500px;}
.y1e_c00464{bottom:1070.004000px;}
.y1d_c00464{bottom:1071.061500px;}
.y1c_c00464{bottom:1072.107000px;}
.y1b_c00464{bottom:1072.812000px;}
.y1a_c00464{bottom:1074.601500px;}
.y19_c00464{bottom:1077.748500px;}
.y18_c00464{bottom:1079.158500px;}
.y17_c00464{bottom:1081.900500px;}
.y16_c00464{bottom:1097.542500px;}
.y15_c00464{bottom:1100.322000px;}
.y14_c00464{bottom:1101.351000px;}
.y13_c00464{bottom:1105.126500px;}
.y12_c00464{bottom:1106.508000px;}
.y11_c00464{bottom:1107.528000px;}
.y10_c00464{bottom:1109.937000px;}
.yf_c00464{bottom:1110.957000px;}
.ye_c00464{bottom:1114.995000px;}
.yd_c00464{bottom:1116.997500px;}
.yc_c00464{bottom:1133.359500px;}
.yb_c00464{bottom:1134.526500px;}
.ya_c00464{bottom:1137.375000px;}
.y9_c00464{bottom:1138.188000px;}
.y8_c00464{bottom:1141.750500px;}
.y7_c00464{bottom:1144.111500px;}
.y6_c00464{bottom:1147.290000px;}
.y5_c00464{bottom:1151.263500px;}
.y4_c00464{bottom:1152.397500px;}
.y3_c00464{bottom:1154.751000px;}
.y2_c00464{bottom:1155.336000px;}
.y1_c00464{bottom:1198.126500px;}
.h13_c00464{height:41.979604px;}
.h8_c00464{height:65.967817px;}
.ha_c00464{height:71.964891px;}
.hd_c00464{height:71.977316px;}
.h3_c00464{height:72.000000px;}
.hb_c00464{height:77.961966px;}
.hc_c00464{height:77.975426px;}
.h12_c00464{height:77.990834px;}
.h5_c00464{height:78.000000px;}
.hf_c00464{height:83.973536px;}
.h10_c00464{height:83.990129px;}
.h11_c00464{height:83.993700px;}
.h6_c00464{height:84.000000px;}
.h7_c00464{height:89.956114px;}
.h4_c00464{height:90.000000px;}
.h9_c00464{height:95.953189px;}
.he_c00464{height:113.964084px;}
.h2_c00464{height:144.000000px;}
.h0_c00464{height:1246.320000px;}
.h1_c00464{height:1246.500000px;}
.w1_c00464{width:924.750000px;}
.w0_c00464{width:925.020000px;}
.x0_c00464{left:0.000000px;}
.xcc_c00464{left:176.646000px;}
.xc1_c00464{left:178.467000px;}
.xb7_c00464{left:180.068594px;}
.x3_c00464{left:182.076000px;}
.x96_c00464{left:183.566043px;}
.x8f_c00464{left:185.198291px;}
.x7c_c00464{left:186.251828px;}
.x74_c00464{left:188.110988px;}
.x5e_c00464{left:189.570000px;}
.x4d_c00464{left:191.109000px;}
.x3d_c00464{left:193.534500px;}
.x1f_c00464{left:195.159000px;}
.x16_c00464{left:197.059500px;}
.x4_c00464{left:198.321000px;}
.xc4_c00464{left:210.321561px;}
.xbd_c00464{left:212.572506px;}
.x90_c00464{left:216.906551px;}
.xcb_c00464{left:220.669689px;}
.x5f_c00464{left:222.198000px;}
.x84_c00464{left:228.745100px;}
.x66_c00464{left:233.958000px;}
.x97_c00464{left:238.292025px;}
.x89_c00464{left:240.142383px;}
.xbe_c00464{left:244.733313px;}
.x4e_c00464{left:247.018500px;}
.x31_c00464{left:248.565000px;}
.x7d_c00464{left:252.408561px;}
.xb8_c00464{left:256.050036px;}
.x20_c00464{left:259.635000px;}
.x5_c00464{left:263.683500px;}
.x58_c00464{left:266.682000px;}
.x3e_c00464{left:269.343000px;}
.x98_c00464{left:271.062551px;}
.x8a_c00464{left:273.567263px;}
.x32_c00464{left:280.663500px;}
.x17_c00464{left:282.739500px;}
.xc5_c00464{left:287.384921px;}
.x46_c00464{left:290.112000px;}
.x9f_c00464{left:293.271000px;}
.x6_c00464{left:295.203000px;}
.x75_c00464{left:297.041955px;}
.x4f_c00464{left:300.100500px;}
.x9d_c00464{left:303.503075px;}
.x60_c00464{left:309.901500px;}
.xac_c00464{left:312.313439px;}
.x99_c00464{left:314.505884px;}
.x29_c00464{left:315.507000px;}
.x85_c00464{left:319.762236px;}
.x47_c00464{left:322.794000px;}
.x33_c00464{left:325.489500px;}
.x18_c00464{left:326.823000px;}
.x6d_c00464{left:330.429587px;}
.x50_c00464{left:332.440500px;}
.x3f_c00464{left:335.007000px;}
.x8b_c00464{left:337.387295px;}
.x67_c00464{left:342.268500px;}
.xb9_c00464{left:343.546341px;}
.xad_c00464{left:345.640634px;}
.xbf_c00464{left:354.682753px;}
.xa0_c00464{left:357.722983px;}
.x91_c00464{left:360.163151px;}
.x7e_c00464{left:362.697288px;}
.xc6_c00464{left:364.572655px;}
.xa6_c00464{left:367.264322px;}
.x21_c00464{left:369.546000px;}
.x6e_c00464{left:375.311160px;}
.xb1_c00464{left:378.760481px;}
.x9a_c00464{left:381.966369px;}
.x76_c00464{left:385.035209px;}
.x68_c00464{left:386.842500px;}
.xe_c00464{left:393.021000px;}
.x7f_c00464{left:395.086998px;}
.x51_c00464{left:399.541500px;}
.x34_c00464{left:402.163500px;}
.x7_c00464{left:405.597000px;}
.x8c_c00464{left:406.782861px;}
.xc2_c00464{left:408.771465px;}
.xb2_c00464{left:411.040280px;}
.x22_c00464{left:413.035500px;}
.x92_c00464{left:414.958800px;}
.x77_c00464{left:418.811004px;}
.xa7_c00464{left:422.496978px;}
.xf_c00464{left:425.919000px;}
.x52_c00464{left:432.676500px;}
.x35_c00464{left:435.637500px;}
.x23_c00464{left:436.923000px;}
.x1_c00464{left:439.560000px;}
.x69_c00464{left:441.546000px;}
.xc0_c00464{left:442.683664px;}
.x40_c00464{left:444.370500px;}
.x93_c00464{left:447.874851px;}
.x80_c00464{left:450.965723px;}
.x59_c00464{left:454.243500px;}
.x61_c00464{left:463.260000px;}
.xba_c00464{left:464.944266px;}
.x48_c00464{left:465.963000px;}
.x2a_c00464{left:468.841500px;}
.x86_c00464{left:470.797061px;}
.x2_c00464{left:473.040000px;}
.x6a_c00464{left:475.036500px;}
.xae_c00464{left:476.280752px;}
.xa8_c00464{left:477.780584px;}
.x19_c00464{left:481.071000px;}
.xc7_c00464{left:484.488620px;}
.x62_c00464{left:486.918000px;}
.xa1_c00464{left:489.210364px;}
.x8_c00464{left:493.879500px;}
.x41_c00464{left:499.437000px;}
.x10_c00464{left:503.646000px;}
.x6f_c00464{left:506.513826px;}
.x9b_c00464{left:513.113003px;}
.x94_c00464{left:514.255404px;}
.xc8_c00464{left:517.681893px;}
.x5a_c00464{left:520.210500px;}
.x36_c00464{left:522.136500px;}
.xa2_c00464{left:524.022018px;}
.x8d_c00464{left:525.264669px;}
.x81_c00464{left:527.324090px;}
.x70_c00464{left:528.907410px;}
.x24_c00464{left:535.297500px;}
.x11_c00464{left:536.571000px;}
.x6b_c00464{left:540.933000px;}
.x37_c00464{left:544.816500px;}
.x78_c00464{left:550.422489px;}
.x53_c00464{left:553.378500px;}
.x2b_c00464{left:557.154000px;}
.x9_c00464{left:559.482000px;}
.x71_c00464{left:561.275010px;}
.x38_c00464{left:566.886000px;}
.x1a_c00464{left:568.798500px;}
.xb3_c00464{left:575.772716px;}
.x95_c00464{left:579.566028px;}
.x12_c00464{left:581.145000px;}
.xc9_c00464{left:583.349160px;}
.x5b_c00464{left:585.328500px;}
.x2c_c00464{left:589.815000px;}
.xb4_c00464{left:597.767976px;}
.x39_c00464{left:599.556000px;}
.xcd_c00464{left:604.100877px;}
.x49_c00464{left:607.008000px;}
.xa9_c00464{left:609.636207px;}
.xa3_c00464{left:610.806147px;}
.x1b_c00464{left:612.703500px;}
.x63_c00464{left:618.211500px;}
.xaf_c00464{left:619.889388px;}
.x2d_c00464{left:623.569500px;}
.xa4_c00464{left:632.390541px;}
.x9e_c00464{left:634.464641px;}
.x82_c00464{left:636.362924px;}
.xca_c00464{left:639.539913px;}
.xb5_c00464{left:641.246177px;}
.x4a_c00464{left:643.366500px;}
.x25_c00464{left:645.537000px;}
.x64_c00464{left:651.084000px;}
.xaa_c00464{left:653.080608px;}
.xa_c00464{left:658.426500px;}
.x79_c00464{left:660.303506px;}
.x26_c00464{left:668.139000px;}
.x87_c00464{left:669.616166px;}
.x54_c00464{left:673.912500px;}
.xbb_c00464{left:674.922024px;}
.x42_c00464{left:676.870500px;}
.x2e_c00464{left:678.675000px;}
.xb_c00464{left:680.989500px;}
.x72_c00464{left:682.990672px;}
.x1c_c00464{left:691.113000px;}
.x55_c00464{left:697.009500px;}
.x3a_c00464{left:700.299000px;}
.x13_c00464{left:702.924000px;}
.xb6_c00464{left:708.990809px;}
.x43_c00464{left:709.999500px;}
.x2f_c00464{left:711.336000px;}
.x27_c00464{left:712.423500px;}
.x83_c00464{left:713.935220px;}
.x7a_c00464{left:716.170860px;}
.x65_c00464{left:718.653000px;}
.x1d_c00464{left:722.170500px;}
.xbc_c00464{left:730.720170px;}
.x3b_c00464{left:732.957000px;}
.x14_c00464{left:736.135500px;}
.x73_c00464{left:739.690916px;}
.x44_c00464{left:741.381000px;}
.xa5_c00464{left:744.890428px;}
.x30_c00464{left:746.176500px;}
.x5c_c00464{left:751.798500px;}
.xc3_c00464{left:754.392998px;}
.xc_c00464{left:760.093500px;}
.x6c_c00464{left:763.879500px;}
.x56_c00464{left:774.552000px;}
.x88_c00464{left:780.255035px;}
.x5d_c00464{left:784.732500px;}
.x4b_c00464{left:786.940500px;}
.xd_c00464{left:792.490500px;}
.x7b_c00464{left:804.827949px;}
.x57_c00464{left:807.511500px;}
.xb0_c00464{left:808.660928px;}
.x3c_c00464{left:810.249000px;}
.x8e_c00464{left:814.065581px;}
.x4c_c00464{left:819.607500px;}
.xab_c00464{left:821.230068px;}
.x28_c00464{left:823.693500px;}
.x15_c00464{left:825.807000px;}
.x9c_c00464{left:827.199927px;}
.x45_c00464{left:831.808500px;}
.x1e_c00464{left:835.048500px;}
@media print{
.v0_c00464{vertical-align:0.000000pt;}
.ls0_c00464{letter-spacing:0.000000pt;}
.ws0_c00464{word-spacing:0.000000pt;}
.fs11_c00464{font-size:37.315204pt;}
.fs6_c00464{font-size:58.638060pt;}
.fs8_c00464{font-size:63.968792pt;}
.fsb_c00464{font-size:63.979837pt;}
.fs1_c00464{font-size:64.000000pt;}
.fs9_c00464{font-size:69.299525pt;}
.fsa_c00464{font-size:69.311490pt;}
.fs10_c00464{font-size:69.325186pt;}
.fs3_c00464{font-size:69.333333pt;}
.fsd_c00464{font-size:74.643143pt;}
.fse_c00464{font-size:74.657893pt;}
.fsf_c00464{font-size:74.661066pt;}
.fs4_c00464{font-size:74.666667pt;}
.fs5_c00464{font-size:79.960990pt;}
.fs2_c00464{font-size:80.000000pt;}
.fs7_c00464{font-size:85.291723pt;}
.fsc_c00464{font-size:101.301408pt;}
.fs0_c00464{font-size:128.000000pt;}
.y0_c00464{bottom:0.000000pt;}
.y13c_c00464{bottom:73.790373pt;}
.y13b_c00464{bottom:76.522993pt;}
.y13a_c00464{bottom:78.651493pt;}
.y139_c00464{bottom:81.433100pt;}
.y138_c00464{bottom:88.334133pt;}
.y137_c00464{bottom:91.604947pt;}
.y136_c00464{bottom:97.462667pt;}
.y135_c00464{bottom:115.948245pt;}
.y134_c00464{bottom:117.020685pt;}
.y133_c00464{bottom:118.431813pt;}
.y132_c00464{bottom:119.598701pt;}
.y131_c00464{bottom:121.942625pt;}
.y130_c00464{bottom:124.395849pt;}
.y12f_c00464{bottom:125.778605pt;}
.y12e_c00464{bottom:139.730085pt;}
.y12d_c00464{bottom:141.829973pt;}
.y12c_c00464{bottom:144.284005pt;}
.y12b_c00464{bottom:145.524461pt;}
.y12a_c00464{bottom:146.756965pt;}
.y129_c00464{bottom:148.391437pt;}
.y128_c00464{bottom:150.005805pt;}
.y127_c00464{bottom:152.890365pt;}
.y126_c00464{bottom:155.770277pt;}
.y125_c00464{bottom:156.981333pt;}
.y124_c00464{bottom:178.649352pt;}
.y123_c00464{bottom:180.313224pt;}
.y122_c00464{bottom:181.057240pt;}
.y121_c00464{bottom:185.304056pt;}
.y120_c00464{bottom:189.018704pt;}
.y11f_c00464{bottom:193.973360pt;}
.y11e_c00464{bottom:196.838208pt;}
.y11d_c00464{bottom:201.331592pt;}
.y11c_c00464{bottom:202.580000pt;}
.y11b_c00464{bottom:214.060465pt;}
.y11a_c00464{bottom:218.329333pt;}
.y119_c00464{bottom:220.915353pt;}
.y118_c00464{bottom:225.547772pt;}
.y117_c00464{bottom:227.264160pt;}
.y116_c00464{bottom:228.502732pt;}
.y115_c00464{bottom:231.869689pt;}
.y114_c00464{bottom:233.124487pt;}
.y113_c00464{bottom:236.076408pt;}
.y112_c00464{bottom:237.306896pt;}
.y111_c00464{bottom:238.568000pt;}
.y110_c00464{bottom:244.951165pt;}
.y10f_c00464{bottom:248.257013pt;}
.y10e_c00464{bottom:250.342229pt;}
.y10d_c00464{bottom:251.471973pt;}
.y10c_c00464{bottom:252.749333pt;}
.y10b_c00464{bottom:257.755247pt;}
.y10a_c00464{bottom:258.619517pt;}
.y109_c00464{bottom:259.462279pt;}
.y108_c00464{bottom:260.621957pt;}
.y107_c00464{bottom:261.753171pt;}
.y106_c00464{bottom:264.012144pt;}
.y105_c00464{bottom:265.973391pt;}
.y104_c00464{bottom:275.333700pt;}
.y103_c00464{bottom:278.876129pt;}
.y102_c00464{bottom:280.136004pt;}
.y101_c00464{bottom:282.787769pt;}
.y100_c00464{bottom:284.489917pt;}
.yff_c00464{bottom:285.351425pt;}
.yfe_c00464{bottom:289.632177pt;}
.yfd_c00464{bottom:291.799095pt;}
.yfc_c00464{bottom:293.063212pt;}
.yfb_c00464{bottom:298.704133pt;}
.yfa_c00464{bottom:300.775788pt;}
.yf9_c00464{bottom:308.420629pt;}
.yf8_c00464{bottom:309.240007pt;}
.yf7_c00464{bottom:312.671041pt;}
.yf6_c00464{bottom:313.833680pt;}
.yf5_c00464{bottom:315.790832pt;}
.yf4_c00464{bottom:319.182351pt;}
.yf3_c00464{bottom:320.773449pt;}
.yf2_c00464{bottom:322.291288pt;}
.yf1_c00464{bottom:323.418555pt;}
.yf0_c00464{bottom:325.305111pt;}
.yef_c00464{bottom:326.460991pt;}
.yee_c00464{bottom:327.981493pt;}
.yed_c00464{bottom:330.996648pt;}
.yec_c00464{bottom:340.799379pt;}
.yeb_c00464{bottom:342.707937pt;}
.yea_c00464{bottom:343.794208pt;}
.ye9_c00464{bottom:346.484552pt;}
.ye8_c00464{bottom:347.953501pt;}
.ye7_c00464{bottom:350.905361pt;}
.ye6_c00464{bottom:352.411804pt;}
.ye5_c00464{bottom:354.281192pt;}
.ye4_c00464{bottom:356.148903pt;}
.ye3_c00464{bottom:359.455469pt;}
.ye2_c00464{bottom:362.426865pt;}
.ye1_c00464{bottom:377.307871pt;}
.ye0_c00464{bottom:379.504339pt;}
.ydf_c00464{bottom:381.011571pt;}
.yde_c00464{bottom:381.722168pt;}
.ydd_c00464{bottom:384.579259pt;}
.ydc_c00464{bottom:385.725321pt;}
.ydb_c00464{bottom:388.587987pt;}
.yda_c00464{bottom:390.054124pt;}
.yd9_c00464{bottom:392.176000pt;}
.yd8_c00464{bottom:408.762036pt;}
.yd7_c00464{bottom:410.424840pt;}
.yd6_c00464{bottom:411.745019pt;}
.yd5_c00464{bottom:414.431347pt;}
.yd4_c00464{bottom:415.430285pt;}
.yd3_c00464{bottom:416.775348pt;}
.yd2_c00464{bottom:418.759264pt;}
.yd1_c00464{bottom:419.741255pt;}
.yd0_c00464{bottom:421.755141pt;}
.ycf_c00464{bottom:422.734017pt;}
.yce_c00464{bottom:423.388240pt;}
.ycd_c00464{bottom:425.401871pt;}
.ycc_c00464{bottom:436.303368pt;}
.ycb_c00464{bottom:439.901428pt;}
.yca_c00464{bottom:440.901919pt;}
.yc9_c00464{bottom:444.006965pt;}
.yc8_c00464{bottom:445.075257pt;}
.yc7_c00464{bottom:446.083693pt;}
.yc6_c00464{bottom:450.167163pt;}
.yc5_c00464{bottom:452.267964pt;}
.yc4_c00464{bottom:453.620925pt;}
.yc3_c00464{bottom:454.642000pt;}
.yc2_c00464{bottom:456.345545pt;}
.yc1_c00464{bottom:469.343500pt;}
.yc0_c00464{bottom:472.487393pt;}
.ybf_c00464{bottom:473.471671pt;}
.ybe_c00464{bottom:476.300385pt;}
.ybd_c00464{bottom:478.159969pt;}
.ybc_c00464{bottom:480.050017pt;}
.ybb_c00464{bottom:480.987233pt;}
.yba_c00464{bottom:482.547425pt;}
.yb9_c00464{bottom:485.381857pt;}
.yb8_c00464{bottom:486.626359pt;}
.yb7_c00464{bottom:487.529185pt;}
.yb6_c00464{bottom:502.113645pt;}
.yb5_c00464{bottom:504.180799pt;}
.yb4_c00464{bottom:505.164112pt;}
.yb3_c00464{bottom:507.198317pt;}
.yb2_c00464{bottom:507.848913pt;}
.yb1_c00464{bottom:510.849996pt;}
.yb0_c00464{bottom:512.521513pt;}
.yaf_c00464{bottom:514.434191pt;}
.yae_c00464{bottom:516.534088pt;}
.yad_c00464{bottom:518.464567pt;}
.yac_c00464{bottom:519.476272pt;}
.yab_c00464{bottom:521.115472pt;}
.yaa_c00464{bottom:535.755815pt;}
.ya9_c00464{bottom:538.611352pt;}
.ya8_c00464{bottom:539.469692pt;}
.ya7_c00464{bottom:540.904347pt;}
.ya6_c00464{bottom:543.741632pt;}
.ya5_c00464{bottom:544.885420pt;}
.ya4_c00464{bottom:547.639357pt;}
.ya3_c00464{bottom:548.236731pt;}
.ya2_c00464{bottom:549.988208pt;}
.ya1_c00464{bottom:551.099043pt;}
.ya0_c00464{bottom:567.179565pt;}
.y9f_c00464{bottom:568.571924pt;}
.y9e_c00464{bottom:569.135588pt;}
.y9d_c00464{bottom:571.068291pt;}
.y9c_c00464{bottom:572.958587pt;}
.y9b_c00464{bottom:573.784935pt;}
.y9a_c00464{bottom:575.687073pt;}
.y99_c00464{bottom:577.079432pt;}
.y98_c00464{bottom:577.886992pt;}
.y97_c00464{bottom:579.529808pt;}
.y96_c00464{bottom:580.635224pt;}
.y95_c00464{bottom:582.284227pt;}
.y94_c00464{bottom:596.219016pt;}
.y93_c00464{bottom:598.664673pt;}
.y92_c00464{bottom:600.206045pt;}
.y91_c00464{bottom:603.237343pt;}
.y90_c00464{bottom:604.472135pt;}
.y8f_c00464{bottom:606.867369pt;}
.y8e_c00464{bottom:607.798397pt;}
.y8d_c00464{bottom:610.225153pt;}
.y8c_c00464{bottom:613.229400pt;}
.y8b_c00464{bottom:631.159819pt;}
.y8a_c00464{bottom:632.774240pt;}
.y89_c00464{bottom:633.703307pt;}
.y88_c00464{bottom:636.239840pt;}
.y87_c00464{bottom:637.161440pt;}
.y86_c00464{bottom:637.799051pt;}
.y85_c00464{bottom:638.744416pt;}
.y84_c00464{bottom:641.534773pt;}
.y83_c00464{bottom:642.812683pt;}
.y82_c00464{bottom:643.692000pt;}
.y81_c00464{bottom:661.717333pt;}
.y80_c00464{bottom:664.748000pt;}
.y7f_c00464{bottom:665.601333pt;}
.y7e_c00464{bottom:667.662667pt;}
.y7d_c00464{bottom:669.420000pt;}
.y7c_c00464{bottom:670.313333pt;}
.y7b_c00464{bottom:671.772000pt;}
.y7a_c00464{bottom:672.960000pt;}
.y79_c00464{bottom:675.848000pt;}
.y78_c00464{bottom:677.042667pt;}
.y77_c00464{bottom:694.869333pt;}
.y76_c00464{bottom:696.790667pt;}
.y75_c00464{bottom:697.725333pt;}
.y74_c00464{bottom:701.460000pt;}
.y73_c00464{bottom:702.133333pt;}
.y72_c00464{bottom:703.949333pt;}
.y71_c00464{bottom:706.496000pt;}
.y70_c00464{bottom:707.725333pt;}
.y6f_c00464{bottom:708.990667pt;}
.y6e_c00464{bottom:709.918667pt;}
.y6d_c00464{bottom:725.221333pt;}
.y6c_c00464{bottom:726.129333pt;}
.y6b_c00464{bottom:728.280000pt;}
.y6a_c00464{bottom:730.125333pt;}
.y69_c00464{bottom:730.717333pt;}
.y68_c00464{bottom:732.512000pt;}
.y67_c00464{bottom:734.329333pt;}
.y66_c00464{bottom:735.858667pt;}
.y65_c00464{bottom:739.497333pt;}
.y64_c00464{bottom:741.600000pt;}
.y63_c00464{bottom:756.709333pt;}
.y62_c00464{bottom:757.441333pt;}
.y61_c00464{bottom:759.164000pt;}
.y60_c00464{bottom:759.677333pt;}
.y5f_c00464{bottom:762.356000pt;}
.y5e_c00464{bottom:765.038667pt;}
.y5d_c00464{bottom:765.774667pt;}
.y5c_c00464{bottom:767.265333pt;}
.y5b_c00464{bottom:767.984000pt;}
.y5a_c00464{bottom:769.164000pt;}
.y59_c00464{bottom:770.406667pt;}
.y58_c00464{bottom:787.940000pt;}
.y57_c00464{bottom:788.753333pt;}
.y56_c00464{bottom:791.501333pt;}
.y55_c00464{bottom:792.326667pt;}
.y54_c00464{bottom:793.232000pt;}
.y53_c00464{bottom:795.348000pt;}
.y52_c00464{bottom:796.742667pt;}
.y51_c00464{bottom:800.305333pt;}
.y50_c00464{bottom:801.118667pt;}
.y4f_c00464{bottom:803.522667pt;}
.y4e_c00464{bottom:819.097333pt;}
.y4d_c00464{bottom:821.106667pt;}
.y4c_c00464{bottom:821.804000pt;}
.y4b_c00464{bottom:822.540000pt;}
.y4a_c00464{bottom:825.493333pt;}
.y49_c00464{bottom:826.482667pt;}
.y48_c00464{bottom:827.706667pt;}
.y47_c00464{bottom:829.376000pt;}
.y46_c00464{bottom:830.136000pt;}
.y45_c00464{bottom:831.594667pt;}
.y44_c00464{bottom:833.278667pt;}
.y43_c00464{bottom:850.630667pt;}
.y42_c00464{bottom:852.280000pt;}
.y41_c00464{bottom:852.977333pt;}
.y40_c00464{bottom:855.126667pt;}
.y3f_c00464{bottom:855.824000pt;}
.y3e_c00464{bottom:856.294667pt;}
.y3d_c00464{bottom:856.778667pt;}
.y3c_c00464{bottom:858.624000pt;}
.y3b_c00464{bottom:859.338667pt;}
.y3a_c00464{bottom:860.974667pt;}
.y39_c00464{bottom:861.930667pt;}
.y38_c00464{bottom:862.616000pt;}
.y37_c00464{bottom:863.764000pt;}
.y36_c00464{bottom:883.910667pt;}
.y35_c00464{bottom:884.746667pt;}
.y34_c00464{bottom:885.530667pt;}
.y33_c00464{bottom:886.853333pt;}
.y32_c00464{bottom:887.664000pt;}
.y31_c00464{bottom:888.448000pt;}
.y30_c00464{bottom:890.568000pt;}
.y2f_c00464{bottom:891.902667pt;}
.y2e_c00464{bottom:894.248000pt;}
.y2d_c00464{bottom:897.124000pt;}
.y2c_c00464{bottom:912.837333pt;}
.y2b_c00464{bottom:915.409333pt;}
.y2a_c00464{bottom:916.433333pt;}
.y29_c00464{bottom:916.956000pt;}
.y28_c00464{bottom:919.504000pt;}
.y27_c00464{bottom:921.777333pt;}
.y26_c00464{bottom:922.329333pt;}
.y25_c00464{bottom:923.334667pt;}
.y24_c00464{bottom:925.874667pt;}
.y23_c00464{bottom:927.365333pt;}
.y22_c00464{bottom:943.540000pt;}
.y21_c00464{bottom:946.750667pt;}
.y20_c00464{bottom:947.634667pt;}
.y1f_c00464{bottom:949.865333pt;}
.y1e_c00464{bottom:951.114667pt;}
.y1d_c00464{bottom:952.054667pt;}
.y1c_c00464{bottom:952.984000pt;}
.y1b_c00464{bottom:953.610667pt;}
.y1a_c00464{bottom:955.201333pt;}
.y19_c00464{bottom:957.998667pt;}
.y18_c00464{bottom:959.252000pt;}
.y17_c00464{bottom:961.689333pt;}
.y16_c00464{bottom:975.593333pt;}
.y15_c00464{bottom:978.064000pt;}
.y14_c00464{bottom:978.978667pt;}
.y13_c00464{bottom:982.334667pt;}
.y12_c00464{bottom:983.562667pt;}
.y11_c00464{bottom:984.469333pt;}
.y10_c00464{bottom:986.610667pt;}
.yf_c00464{bottom:987.517333pt;}
.ye_c00464{bottom:991.106667pt;}
.yd_c00464{bottom:992.886667pt;}
.yc_c00464{bottom:1007.430667pt;}
.yb_c00464{bottom:1008.468000pt;}
.ya_c00464{bottom:1011.000000pt;}
.y9_c00464{bottom:1011.722667pt;}
.y8_c00464{bottom:1014.889333pt;}
.y7_c00464{bottom:1016.988000pt;}
.y6_c00464{bottom:1019.813333pt;}
.y5_c00464{bottom:1023.345333pt;}
.y4_c00464{bottom:1024.353333pt;}
.y3_c00464{bottom:1026.445333pt;}
.y2_c00464{bottom:1026.965333pt;}
.y1_c00464{bottom:1065.001333pt;}
.h13_c00464{height:37.315204pt;}
.h8_c00464{height:58.638060pt;}
.ha_c00464{height:63.968792pt;}
.hd_c00464{height:63.979837pt;}
.h3_c00464{height:64.000000pt;}
.hb_c00464{height:69.299525pt;}
.hc_c00464{height:69.311490pt;}
.h12_c00464{height:69.325186pt;}
.h5_c00464{height:69.333333pt;}
.hf_c00464{height:74.643143pt;}
.h10_c00464{height:74.657893pt;}
.h11_c00464{height:74.661066pt;}
.h6_c00464{height:74.666667pt;}
.h7_c00464{height:79.960990pt;}
.h4_c00464{height:80.000000pt;}
.h9_c00464{height:85.291723pt;}
.he_c00464{height:101.301408pt;}
.h2_c00464{height:128.000000pt;}
.h0_c00464{height:1107.840000pt;}
.h1_c00464{height:1108.000000pt;}
.w1_c00464{width:822.000000pt;}
.w0_c00464{width:822.240000pt;}
.x0_c00464{left:0.000000pt;}
.xcc_c00464{left:157.018667pt;}
.xc1_c00464{left:158.637333pt;}
.xb7_c00464{left:160.060972pt;}
.x3_c00464{left:161.845333pt;}
.x96_c00464{left:163.169816pt;}
.x8f_c00464{left:164.620703pt;}
.x7c_c00464{left:165.557180pt;}
.x74_c00464{left:167.209767pt;}
.x5e_c00464{left:168.506667pt;}
.x4d_c00464{left:169.874667pt;}
.x3d_c00464{left:172.030667pt;}
.x1f_c00464{left:173.474667pt;}
.x16_c00464{left:175.164000pt;}
.x4_c00464{left:176.285333pt;}
.xc4_c00464{left:186.952499pt;}
.xbd_c00464{left:188.953339pt;}
.x90_c00464{left:192.805823pt;}
.xcb_c00464{left:196.150835pt;}
.x5f_c00464{left:197.509333pt;}
.x84_c00464{left:203.328977pt;}
.x66_c00464{left:207.962667pt;}
.x97_c00464{left:211.815133pt;}
.x89_c00464{left:213.459896pt;}
.xbe_c00464{left:217.540723pt;}
.x4e_c00464{left:219.572000pt;}
.x31_c00464{left:220.946667pt;}
.x7d_c00464{left:224.363165pt;}
.xb8_c00464{left:227.600032pt;}
.x20_c00464{left:230.786667pt;}
.x5_c00464{left:234.385333pt;}
.x58_c00464{left:237.050667pt;}
.x3e_c00464{left:239.416000pt;}
.x98_c00464{left:240.944489pt;}
.x8a_c00464{left:243.170900pt;}
.x32_c00464{left:249.478667pt;}
.x17_c00464{left:251.324000pt;}
.xc5_c00464{left:255.453263pt;}
.x46_c00464{left:257.877333pt;}
.x9f_c00464{left:260.685333pt;}
.x6_c00464{left:262.402667pt;}
.x75_c00464{left:264.037293pt;}
.x4f_c00464{left:266.756000pt;}
.x9d_c00464{left:269.780511pt;}
.x60_c00464{left:275.468000pt;}
.xac_c00464{left:277.611945pt;}
.x99_c00464{left:279.560785pt;}
.x29_c00464{left:280.450667pt;}
.x85_c00464{left:284.233099pt;}
.x47_c00464{left:286.928000pt;}
.x33_c00464{left:289.324000pt;}
.x18_c00464{left:290.509333pt;}
.x6d_c00464{left:293.715188pt;}
.x50_c00464{left:295.502667pt;}
.x3f_c00464{left:297.784000pt;}
.x8b_c00464{left:299.899817pt;}
.x67_c00464{left:304.238667pt;}
.xb9_c00464{left:305.374525pt;}
.xad_c00464{left:307.236119pt;}
.xbf_c00464{left:315.273559pt;}
.xa0_c00464{left:317.975985pt;}
.x91_c00464{left:320.145023pt;}
.x7e_c00464{left:322.397589pt;}
.xc6_c00464{left:324.064583pt;}
.xa6_c00464{left:326.457175pt;}
.x21_c00464{left:328.485333pt;}
.x6e_c00464{left:333.609920pt;}
.xb1_c00464{left:336.675983pt;}
.x9a_c00464{left:339.525661pt;}
.x76_c00464{left:342.253519pt;}
.x68_c00464{left:343.860000pt;}
.xe_c00464{left:349.352000pt;}
.x7f_c00464{left:351.188443pt;}
.x51_c00464{left:355.148000pt;}
.x34_c00464{left:357.478667pt;}
.x7_c00464{left:360.530667pt;}
.x8c_c00464{left:361.584765pt;}
.xc2_c00464{left:363.352413pt;}
.xb2_c00464{left:365.369137pt;}
.x22_c00464{left:367.142667pt;}
.x92_c00464{left:368.852267pt;}
.x77_c00464{left:372.276448pt;}
.xa7_c00464{left:375.552869pt;}
.xf_c00464{left:378.594667pt;}
.x52_c00464{left:384.601333pt;}
.x35_c00464{left:387.233333pt;}
.x23_c00464{left:388.376000pt;}
.x1_c00464{left:390.720000pt;}
.x69_c00464{left:392.485333pt;}
.xc0_c00464{left:393.496591pt;}
.x40_c00464{left:394.996000pt;}
.x93_c00464{left:398.110979pt;}
.x80_c00464{left:400.858420pt;}
.x59_c00464{left:403.772000pt;}
.x61_c00464{left:411.786667pt;}
.xba_c00464{left:413.283792pt;}
.x48_c00464{left:414.189333pt;}
.x2a_c00464{left:416.748000pt;}
.x86_c00464{left:418.486276pt;}
.x2_c00464{left:420.480000pt;}
.x6a_c00464{left:422.254667pt;}
.xae_c00464{left:423.360668pt;}
.xa8_c00464{left:424.693852pt;}
.x19_c00464{left:427.618667pt;}
.xc7_c00464{left:430.656551pt;}
.x62_c00464{left:432.816000pt;}
.xa1_c00464{left:434.853657pt;}
.x8_c00464{left:439.004000pt;}
.x41_c00464{left:443.944000pt;}
.x10_c00464{left:447.685333pt;}
.x6f_c00464{left:450.234512pt;}
.x9b_c00464{left:456.100447pt;}
.x94_c00464{left:457.115915pt;}
.xc8_c00464{left:460.161683pt;}
.x5a_c00464{left:462.409333pt;}
.x36_c00464{left:464.121333pt;}
.xa2_c00464{left:465.797349pt;}
.x8d_c00464{left:466.901928pt;}
.x81_c00464{left:468.732524pt;}
.x70_c00464{left:470.139920pt;}
.x24_c00464{left:475.820000pt;}
.x11_c00464{left:476.952000pt;}
.x6b_c00464{left:480.829333pt;}
.x37_c00464{left:484.281333pt;}
.x78_c00464{left:489.264435pt;}
.x53_c00464{left:491.892000pt;}
.x2b_c00464{left:495.248000pt;}
.x9_c00464{left:497.317333pt;}
.x71_c00464{left:498.911120pt;}
.x38_c00464{left:503.898667pt;}
.x1a_c00464{left:505.598667pt;}
.xb3_c00464{left:511.797969pt;}
.x95_c00464{left:515.169803pt;}
.x12_c00464{left:516.573333pt;}
.xc9_c00464{left:518.532587pt;}
.x5b_c00464{left:520.292000pt;}
.x2c_c00464{left:524.280000pt;}
.xb4_c00464{left:531.349312pt;}
.x39_c00464{left:532.938667pt;}
.xcd_c00464{left:536.978557pt;}
.x49_c00464{left:539.562667pt;}
.xa9_c00464{left:541.898851pt;}
.xa3_c00464{left:542.938797pt;}
.x1b_c00464{left:544.625333pt;}
.x63_c00464{left:549.521333pt;}
.xaf_c00464{left:551.012789pt;}
.x2d_c00464{left:554.284000pt;}
.xa4_c00464{left:562.124925pt;}
.x9e_c00464{left:563.968569pt;}
.x82_c00464{left:565.655932pt;}
.xca_c00464{left:568.479923pt;}
.xb5_c00464{left:569.996601pt;}
.x4a_c00464{left:571.881333pt;}
.x25_c00464{left:573.810667pt;}
.x64_c00464{left:578.741333pt;}
.xaa_c00464{left:580.516096pt;}
.xa_c00464{left:585.268000pt;}
.x79_c00464{left:586.936449pt;}
.x26_c00464{left:593.901333pt;}
.x87_c00464{left:595.214369pt;}
.x54_c00464{left:599.033333pt;}
.xbb_c00464{left:599.930688pt;}
.x42_c00464{left:601.662667pt;}
.x2e_c00464{left:603.266667pt;}
.xb_c00464{left:605.324000pt;}
.x72_c00464{left:607.102820pt;}
.x1c_c00464{left:614.322667pt;}
.x55_c00464{left:619.564000pt;}
.x3a_c00464{left:622.488000pt;}
.x13_c00464{left:624.821333pt;}
.xb6_c00464{left:630.214052pt;}
.x43_c00464{left:631.110667pt;}
.x2f_c00464{left:632.298667pt;}
.x27_c00464{left:633.265333pt;}
.x83_c00464{left:634.609084pt;}
.x7a_c00464{left:636.596320pt;}
.x65_c00464{left:638.802667pt;}
.x1d_c00464{left:641.929333pt;}
.xbc_c00464{left:649.529040pt;}
.x3b_c00464{left:651.517333pt;}
.x14_c00464{left:654.342667pt;}
.x73_c00464{left:657.503036pt;}
.x44_c00464{left:659.005333pt;}
.xa5_c00464{left:662.124825pt;}
.x30_c00464{left:663.268000pt;}
.x5c_c00464{left:668.265333pt;}
.xc3_c00464{left:670.571553pt;}
.xc_c00464{left:675.638667pt;}
.x6c_c00464{left:679.004000pt;}
.x56_c00464{left:688.490667pt;}
.x88_c00464{left:693.560031pt;}
.x5d_c00464{left:697.540000pt;}
.x4b_c00464{left:699.502667pt;}
.xd_c00464{left:704.436000pt;}
.x7b_c00464{left:715.402621pt;}
.x57_c00464{left:717.788000pt;}
.xb0_c00464{left:718.809713pt;}
.x3c_c00464{left:720.221333pt;}
.x8e_c00464{left:723.613849pt;}
.x4c_c00464{left:728.540000pt;}
.xab_c00464{left:729.982283pt;}
.x28_c00464{left:732.172000pt;}
.x15_c00464{left:734.050667pt;}
.x9c_c00464{left:735.288824pt;}
.x45_c00464{left:739.385333pt;}
.x1e_c00464{left:742.265333pt;}
}





/* 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_c00465 {
    display:none;
  }
  .loading-indicator_c00465.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00465 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_c00465 { 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_c00465" -> "#page-container .classname_c00465")
 */
.pf_c00465 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00465 { /* 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_c00465.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00465 { /* 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_c00465 { /* 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_c00465 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00465 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00465 {overflow:visible;}
  }
}
.c_c00465 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00465 { /* 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_c00465:after { /* webkit #35443 */
  content: '';
}
.t_c00465:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00465 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 */
}
.__c00465 { /* 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_c00465 { /* info for Javascript */
  display:none;
}
.l_c00465 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00465 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00465 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00465: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_c00465 {
    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_c00465.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00465.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_c00465 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00465{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00465;src:url('chunks/assets/font_c605e72f209fc835e906f064.woff2')format("woff");}.ff1_c00465{font-family:ff1_c00465;line-height:1.000000;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;}
.m50_c00465{transform:matrix(0.018748,-0.000262,0.003500,0.249976,0,0);-ms-transform:matrix(0.018748,-0.000262,0.003500,0.249976,0,0);-webkit-transform:matrix(0.018748,-0.000262,0.003500,0.249976,0,0);}
.m45_c00465{transform:matrix(0.083257,-0.001166,0.003500,0.249976,0,0);-ms-transform:matrix(0.083257,-0.001166,0.003500,0.249976,0,0);-webkit-transform:matrix(0.083257,-0.001166,0.003500,0.249976,0,0);}
.m51_c00465{transform:matrix(0.100790,-0.001411,0.003500,0.249976,0,0);-ms-transform:matrix(0.100790,-0.001411,0.003500,0.249976,0,0);-webkit-transform:matrix(0.100790,-0.001411,0.003500,0.249976,0,0);}
.m40_c00465{transform:matrix(0.142300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142300,0.000000,0.000000,0.250000,0,0);}
.m2f_c00465{transform:matrix(0.163308,-0.001470,0.002250,0.249990,0,0);-ms-transform:matrix(0.163308,-0.001470,0.002250,0.249990,0,0);-webkit-transform:matrix(0.163308,-0.001470,0.002250,0.249990,0,0);}
.m30_c00465{transform:matrix(0.173133,-0.001558,0.002250,0.249990,0,0);-ms-transform:matrix(0.173133,-0.001558,0.002250,0.249990,0,0);-webkit-transform:matrix(0.173133,-0.001558,0.002250,0.249990,0,0);}
.m13_c00465{transform:matrix(0.179268,-0.001613,0.002250,0.249990,0,0);-ms-transform:matrix(0.179268,-0.001613,0.002250,0.249990,0,0);-webkit-transform:matrix(0.179268,-0.001613,0.002250,0.249990,0,0);}
.m2d_c00465{transform:matrix(0.179353,-0.001614,0.002250,0.249990,0,0);-ms-transform:matrix(0.179353,-0.001614,0.002250,0.249990,0,0);-webkit-transform:matrix(0.179353,-0.001614,0.002250,0.249990,0,0);}
.m2c_c00465{transform:matrix(0.181313,-0.001632,0.002250,0.249990,0,0);-ms-transform:matrix(0.181313,-0.001632,0.002250,0.249990,0,0);-webkit-transform:matrix(0.181313,-0.001632,0.002250,0.249990,0,0);}
.m10_c00465{transform:matrix(0.186607,-0.001679,0.002250,0.249990,0,0);-ms-transform:matrix(0.186607,-0.001679,0.002250,0.249990,0,0);-webkit-transform:matrix(0.186607,-0.001679,0.002250,0.249990,0,0);}
.m3b_c00465{transform:matrix(0.190200,-0.001331,0.001750,0.249994,0,0);-ms-transform:matrix(0.190200,-0.001331,0.001750,0.249994,0,0);-webkit-transform:matrix(0.190200,-0.001331,0.001750,0.249994,0,0);}
.m14_c00465{transform:matrix(0.191762,-0.001726,0.002250,0.249990,0,0);-ms-transform:matrix(0.191762,-0.001726,0.002250,0.249990,0,0);-webkit-transform:matrix(0.191762,-0.001726,0.002250,0.249990,0,0);}
.m21_c00465{transform:matrix(0.196797,-0.001771,0.002250,0.249990,0,0);-ms-transform:matrix(0.196797,-0.001771,0.002250,0.249990,0,0);-webkit-transform:matrix(0.196797,-0.001771,0.002250,0.249990,0,0);}
.m29_c00465{transform:matrix(0.196807,-0.001771,0.002250,0.249990,0,0);-ms-transform:matrix(0.196807,-0.001771,0.002250,0.249990,0,0);-webkit-transform:matrix(0.196807,-0.001771,0.002250,0.249990,0,0);}
.m27_c00465{transform:matrix(0.198072,-0.001783,0.002250,0.249990,0,0);-ms-transform:matrix(0.198072,-0.001783,0.002250,0.249990,0,0);-webkit-transform:matrix(0.198072,-0.001783,0.002250,0.249990,0,0);}
.m31_c00465{transform:matrix(0.198442,-0.001786,0.002250,0.249990,0,0);-ms-transform:matrix(0.198442,-0.001786,0.002250,0.249990,0,0);-webkit-transform:matrix(0.198442,-0.001786,0.002250,0.249990,0,0);}
.m2a_c00465{transform:matrix(0.200412,-0.001804,0.002250,0.249990,0,0);-ms-transform:matrix(0.200412,-0.001804,0.002250,0.249990,0,0);-webkit-transform:matrix(0.200412,-0.001804,0.002250,0.249990,0,0);}
.m1f_c00465{transform:matrix(0.203067,-0.001828,0.002250,0.249990,0,0);-ms-transform:matrix(0.203067,-0.001828,0.002250,0.249990,0,0);-webkit-transform:matrix(0.203067,-0.001828,0.002250,0.249990,0,0);}
.md_c00465{transform:matrix(0.205532,-0.001850,0.002250,0.249990,0,0);-ms-transform:matrix(0.205532,-0.001850,0.002250,0.249990,0,0);-webkit-transform:matrix(0.205532,-0.001850,0.002250,0.249990,0,0);}
.m38_c00465{transform:matrix(0.205680,-0.001440,0.001750,0.249994,0,0);-ms-transform:matrix(0.205680,-0.001440,0.001750,0.249994,0,0);-webkit-transform:matrix(0.205680,-0.001440,0.001750,0.249994,0,0);}
.m28_c00465{transform:matrix(0.208617,-0.001878,0.002250,0.249990,0,0);-ms-transform:matrix(0.208617,-0.001878,0.002250,0.249990,0,0);-webkit-transform:matrix(0.208617,-0.001878,0.002250,0.249990,0,0);}
.m12_c00465{transform:matrix(0.210656,-0.001896,0.002250,0.249990,0,0);-ms-transform:matrix(0.210656,-0.001896,0.002250,0.249990,0,0);-webkit-transform:matrix(0.210656,-0.001896,0.002250,0.249990,0,0);}
.m34_c00465{transform:matrix(0.210970,-0.001477,0.001750,0.249994,0,0);-ms-transform:matrix(0.210970,-0.001477,0.001750,0.249994,0,0);-webkit-transform:matrix(0.210970,-0.001477,0.001750,0.249994,0,0);}
.m15_c00465{transform:matrix(0.212876,-0.001916,0.002250,0.249990,0,0);-ms-transform:matrix(0.212876,-0.001916,0.002250,0.249990,0,0);-webkit-transform:matrix(0.212876,-0.001916,0.002250,0.249990,0,0);}
.m1d_c00465{transform:matrix(0.214246,-0.001928,0.002250,0.249990,0,0);-ms-transform:matrix(0.214246,-0.001928,0.002250,0.249990,0,0);-webkit-transform:matrix(0.214246,-0.001928,0.002250,0.249990,0,0);}
.m2e_c00465{transform:matrix(0.218546,-0.001967,0.002250,0.249990,0,0);-ms-transform:matrix(0.218546,-0.001967,0.002250,0.249990,0,0);-webkit-transform:matrix(0.218546,-0.001967,0.002250,0.249990,0,0);}
.m1a_c00465{transform:matrix(0.220056,-0.001981,0.002250,0.249990,0,0);-ms-transform:matrix(0.220056,-0.001981,0.002250,0.249990,0,0);-webkit-transform:matrix(0.220056,-0.001981,0.002250,0.249990,0,0);}
.me_c00465{transform:matrix(0.225976,-0.002034,0.002250,0.249990,0,0);-ms-transform:matrix(0.225976,-0.002034,0.002250,0.249990,0,0);-webkit-transform:matrix(0.225976,-0.002034,0.002250,0.249990,0,0);}
.m3d_c00465{transform:matrix(0.227549,-0.001593,0.001750,0.249994,0,0);-ms-transform:matrix(0.227549,-0.001593,0.001750,0.249994,0,0);-webkit-transform:matrix(0.227549,-0.001593,0.001750,0.249994,0,0);}
.m2b_c00465{transform:matrix(0.228206,-0.002054,0.002250,0.249990,0,0);-ms-transform:matrix(0.228206,-0.002054,0.002250,0.249990,0,0);-webkit-transform:matrix(0.228206,-0.002054,0.002250,0.249990,0,0);}
.m36_c00465{transform:matrix(0.229609,-0.001607,0.001750,0.249994,0,0);-ms-transform:matrix(0.229609,-0.001607,0.001750,0.249994,0,0);-webkit-transform:matrix(0.229609,-0.001607,0.001750,0.249994,0,0);}
.m3a_c00465{transform:matrix(0.232169,-0.001625,0.001750,0.249994,0,0);-ms-transform:matrix(0.232169,-0.001625,0.001750,0.249994,0,0);-webkit-transform:matrix(0.232169,-0.001625,0.001750,0.249994,0,0);}
.m37_c00465{transform:matrix(0.232619,-0.001628,0.001750,0.249994,0,0);-ms-transform:matrix(0.232619,-0.001628,0.001750,0.249994,0,0);-webkit-transform:matrix(0.232619,-0.001628,0.001750,0.249994,0,0);}
.mf_c00465{transform:matrix(0.241155,-0.002170,0.002250,0.249990,0,0);-ms-transform:matrix(0.241155,-0.002170,0.002250,0.249990,0,0);-webkit-transform:matrix(0.241155,-0.002170,0.002250,0.249990,0,0);}
.m22_c00465{transform:matrix(0.243965,-0.002196,0.002250,0.249990,0,0);-ms-transform:matrix(0.243965,-0.002196,0.002250,0.249990,0,0);-webkit-transform:matrix(0.243965,-0.002196,0.002250,0.249990,0,0);}
.m20_c00465{transform:matrix(0.244120,-0.002197,0.002250,0.249990,0,0);-ms-transform:matrix(0.244120,-0.002197,0.002250,0.249990,0,0);-webkit-transform:matrix(0.244120,-0.002197,0.002250,0.249990,0,0);}
.m1c_c00465{transform:matrix(0.244410,-0.002200,0.002250,0.249990,0,0);-ms-transform:matrix(0.244410,-0.002200,0.002250,0.249990,0,0);-webkit-transform:matrix(0.244410,-0.002200,0.002250,0.249990,0,0);}
.m32_c00465{transform:matrix(0.247880,-0.002231,0.002250,0.249990,0,0);-ms-transform:matrix(0.247880,-0.002231,0.002250,0.249990,0,0);-webkit-transform:matrix(0.247880,-0.002231,0.002250,0.249990,0,0);}
.m25_c00465{transform:matrix(0.251175,-0.002261,0.002250,0.249990,0,0);-ms-transform:matrix(0.251175,-0.002261,0.002250,0.249990,0,0);-webkit-transform:matrix(0.251175,-0.002261,0.002250,0.249990,0,0);}
.m17_c00465{transform:matrix(0.253075,-0.002278,0.002250,0.249990,0,0);-ms-transform:matrix(0.253075,-0.002278,0.002250,0.249990,0,0);-webkit-transform:matrix(0.253075,-0.002278,0.002250,0.249990,0,0);}
.m1e_c00465{transform:matrix(0.256030,-0.002304,0.002250,0.249990,0,0);-ms-transform:matrix(0.256030,-0.002304,0.002250,0.249990,0,0);-webkit-transform:matrix(0.256030,-0.002304,0.002250,0.249990,0,0);}
.m3f_c00465{transform:matrix(0.260334,-0.001822,0.001750,0.249994,0,0);-ms-transform:matrix(0.260334,-0.001822,0.001750,0.249994,0,0);-webkit-transform:matrix(0.260334,-0.001822,0.001750,0.249994,0,0);}
.m19_c00465{transform:matrix(0.262019,-0.002358,0.002250,0.249990,0,0);-ms-transform:matrix(0.262019,-0.002358,0.002250,0.249990,0,0);-webkit-transform:matrix(0.262019,-0.002358,0.002250,0.249990,0,0);}
.m3c_c00465{transform:matrix(0.264299,-0.001850,0.001750,0.249994,0,0);-ms-transform:matrix(0.264299,-0.001850,0.001750,0.249994,0,0);-webkit-transform:matrix(0.264299,-0.001850,0.001750,0.249994,0,0);}
.m4a_c00465{transform:matrix(0.266959,-0.003737,0.003500,0.249976,0,0);-ms-transform:matrix(0.266959,-0.003737,0.003500,0.249976,0,0);-webkit-transform:matrix(0.266959,-0.003737,0.003500,0.249976,0,0);}
.m11_c00465{transform:matrix(0.267799,-0.002410,0.002250,0.249990,0,0);-ms-transform:matrix(0.267799,-0.002410,0.002250,0.249990,0,0);-webkit-transform:matrix(0.267799,-0.002410,0.002250,0.249990,0,0);}
.m23_c00465{transform:matrix(0.269869,-0.002429,0.002250,0.249990,0,0);-ms-transform:matrix(0.269869,-0.002429,0.002250,0.249990,0,0);-webkit-transform:matrix(0.269869,-0.002429,0.002250,0.249990,0,0);}
.m26_c00465{transform:matrix(0.270999,-0.002439,0.002250,0.249990,0,0);-ms-transform:matrix(0.270999,-0.002439,0.002250,0.249990,0,0);-webkit-transform:matrix(0.270999,-0.002439,0.002250,0.249990,0,0);}
.m3e_c00465{transform:matrix(0.274688,-0.001923,0.001750,0.249994,0,0);-ms-transform:matrix(0.274688,-0.001923,0.001750,0.249994,0,0);-webkit-transform:matrix(0.274688,-0.001923,0.001750,0.249994,0,0);}
.m18_c00465{transform:matrix(0.274964,-0.002475,0.002250,0.249990,0,0);-ms-transform:matrix(0.274964,-0.002475,0.002250,0.249990,0,0);-webkit-transform:matrix(0.274964,-0.002475,0.002250,0.249990,0,0);}
.m1b_c00465{transform:matrix(0.284323,-0.002559,0.002250,0.249990,0,0);-ms-transform:matrix(0.284323,-0.002559,0.002250,0.249990,0,0);-webkit-transform:matrix(0.284323,-0.002559,0.002250,0.249990,0,0);}
.m24_c00465{transform:matrix(0.291238,-0.002621,0.002250,0.249990,0,0);-ms-transform:matrix(0.291238,-0.002621,0.002250,0.249990,0,0);-webkit-transform:matrix(0.291238,-0.002621,0.002250,0.249990,0,0);}
.m46_c00465{transform:matrix(0.300751,-0.004211,0.003500,0.249976,0,0);-ms-transform:matrix(0.300751,-0.004211,0.003500,0.249976,0,0);-webkit-transform:matrix(0.300751,-0.004211,0.003500,0.249976,0,0);}
.m43_c00465{transform:matrix(0.317299,-0.004442,0.003500,0.249976,0,0);-ms-transform:matrix(0.317299,-0.004442,0.003500,0.249976,0,0);-webkit-transform:matrix(0.317299,-0.004442,0.003500,0.249976,0,0);}
.m35_c00465{transform:matrix(0.319387,-0.002236,0.001750,0.249994,0,0);-ms-transform:matrix(0.319387,-0.002236,0.001750,0.249994,0,0);-webkit-transform:matrix(0.319387,-0.002236,0.001750,0.249994,0,0);}
.m4e_c00465{transform:matrix(0.319714,-0.004476,0.003500,0.249976,0,0);-ms-transform:matrix(0.319714,-0.004476,0.003500,0.249976,0,0);-webkit-transform:matrix(0.319714,-0.004476,0.003500,0.249976,0,0);}
.mb_c00465{transform:matrix(0.322052,-0.002898,0.002250,0.249990,0,0);-ms-transform:matrix(0.322052,-0.002898,0.002250,0.249990,0,0);-webkit-transform:matrix(0.322052,-0.002898,0.002250,0.249990,0,0);}
.m49_c00465{transform:matrix(0.349766,-0.004897,0.003500,0.249976,0,0);-ms-transform:matrix(0.349766,-0.004897,0.003500,0.249976,0,0);-webkit-transform:matrix(0.349766,-0.004897,0.003500,0.249976,0,0);}
.m44_c00465{transform:matrix(0.352990,-0.004942,0.003500,0.249976,0,0);-ms-transform:matrix(0.352990,-0.004942,0.003500,0.249976,0,0);-webkit-transform:matrix(0.352990,-0.004942,0.003500,0.249976,0,0);}
.m16_c00465{transform:matrix(0.375155,-0.003376,0.002250,0.249990,0,0);-ms-transform:matrix(0.375155,-0.003376,0.002250,0.249990,0,0);-webkit-transform:matrix(0.375155,-0.003376,0.002250,0.249990,0,0);}
.m3_c00465{transform:matrix(0.382879,-0.003446,0.002250,0.249990,0,0);-ms-transform:matrix(0.382879,-0.003446,0.002250,0.249990,0,0);-webkit-transform:matrix(0.382879,-0.003446,0.002250,0.249990,0,0);}
.m47_c00465{transform:matrix(0.402981,-0.005642,0.003500,0.249976,0,0);-ms-transform:matrix(0.402981,-0.005642,0.003500,0.249976,0,0);-webkit-transform:matrix(0.402981,-0.005642,0.003500,0.249976,0,0);}
.m2_c00465{transform:matrix(0.419988,-0.003780,0.002250,0.249990,0,0);-ms-transform:matrix(0.419988,-0.003780,0.002250,0.249990,0,0);-webkit-transform:matrix(0.419988,-0.003780,0.002250,0.249990,0,0);}
.m4b_c00465{transform:matrix(0.423229,-0.005925,0.003500,0.249976,0,0);-ms-transform:matrix(0.423229,-0.005925,0.003500,0.249976,0,0);-webkit-transform:matrix(0.423229,-0.005925,0.003500,0.249976,0,0);}
.m42_c00465{transform:matrix(0.449351,-0.006291,0.003500,0.249976,0,0);-ms-transform:matrix(0.449351,-0.006291,0.003500,0.249976,0,0);-webkit-transform:matrix(0.449351,-0.006291,0.003500,0.249976,0,0);}
.m0_c00465{transform:matrix(0.461856,-0.004157,0.002250,0.249990,0,0);-ms-transform:matrix(0.461856,-0.004157,0.002250,0.249990,0,0);-webkit-transform:matrix(0.461856,-0.004157,0.002250,0.249990,0,0);}
.mc_c00465{transform:matrix(0.478546,-0.004307,0.002250,0.249990,0,0);-ms-transform:matrix(0.478546,-0.004307,0.002250,0.249990,0,0);-webkit-transform:matrix(0.478546,-0.004307,0.002250,0.249990,0,0);}
.m39_c00465{transform:matrix(0.483613,-0.003385,0.001750,0.249994,0,0);-ms-transform:matrix(0.483613,-0.003385,0.001750,0.249994,0,0);-webkit-transform:matrix(0.483613,-0.003385,0.001750,0.249994,0,0);}
.m4_c00465{transform:matrix(0.490175,-0.004412,0.002250,0.249990,0,0);-ms-transform:matrix(0.490175,-0.004412,0.002250,0.249990,0,0);-webkit-transform:matrix(0.490175,-0.004412,0.002250,0.249990,0,0);}
.m48_c00465{transform:matrix(0.494627,-0.006925,0.003500,0.249976,0,0);-ms-transform:matrix(0.494627,-0.006925,0.003500,0.249976,0,0);-webkit-transform:matrix(0.494627,-0.006925,0.003500,0.249976,0,0);}
.ma_c00465{transform:matrix(0.499580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.499580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.499580,0.000000,0.000000,0.250000,0,0);}
.m4d_c00465{transform:matrix(0.520219,-0.007283,0.003500,0.249976,0,0);-ms-transform:matrix(0.520219,-0.007283,0.003500,0.249976,0,0);-webkit-transform:matrix(0.520219,-0.007283,0.003500,0.249976,0,0);}
.m4f_c00465{transform:matrix(0.526743,-0.007374,0.003500,0.249976,0,0);-ms-transform:matrix(0.526743,-0.007374,0.003500,0.249976,0,0);-webkit-transform:matrix(0.526743,-0.007374,0.003500,0.249976,0,0);}
.m5_c00465{transform:matrix(0.590961,-0.005319,0.002250,0.249990,0,0);-ms-transform:matrix(0.590961,-0.005319,0.002250,0.249990,0,0);-webkit-transform:matrix(0.590961,-0.005319,0.002250,0.249990,0,0);}
.m8_c00465{transform:matrix(0.760404,-0.006844,0.002250,0.249990,0,0);-ms-transform:matrix(0.760404,-0.006844,0.002250,0.249990,0,0);-webkit-transform:matrix(0.760404,-0.006844,0.002250,0.249990,0,0);}
.m41_c00465{transform:matrix(0.807775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.807775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.807775,0.000000,0.000000,0.250000,0,0);}
.m9_c00465{transform:matrix(0.824522,-0.007421,0.002250,0.249990,0,0);-ms-transform:matrix(0.824522,-0.007421,0.002250,0.249990,0,0);-webkit-transform:matrix(0.824522,-0.007421,0.002250,0.249990,0,0);}
.m7_c00465{transform:matrix(0.824542,-0.007421,0.002250,0.249990,0,0);-ms-transform:matrix(0.824542,-0.007421,0.002250,0.249990,0,0);-webkit-transform:matrix(0.824542,-0.007421,0.002250,0.249990,0,0);}
.m4c_c00465{transform:matrix(0.861406,-0.012060,0.003500,0.249976,0,0);-ms-transform:matrix(0.861406,-0.012060,0.003500,0.249976,0,0);-webkit-transform:matrix(0.861406,-0.012060,0.003500,0.249976,0,0);}
.m33_c00465{transform:matrix(0.896648,-0.006277,0.001750,0.249994,0,0);-ms-transform:matrix(0.896648,-0.006277,0.001750,0.249994,0,0);-webkit-transform:matrix(0.896648,-0.006277,0.001750,0.249994,0,0);}
.m1_c00465{transform:matrix(1.236850,-0.011132,0.002250,0.249990,0,0);-ms-transform:matrix(1.236850,-0.011132,0.002250,0.249990,0,0);-webkit-transform:matrix(1.236850,-0.011132,0.002250,0.249990,0,0);}
.m6_c00465{transform:matrix(1.418058,-0.012763,0.002250,0.249990,0,0);-ms-transform:matrix(1.418058,-0.012763,0.002250,0.249990,0,0);-webkit-transform:matrix(1.418058,-0.012763,0.002250,0.249990,0,0);}
.v0_c00465{vertical-align:0.000000px;}
.ls0_c00465{letter-spacing:0.000000px;}
.sc__c00465{text-shadow:none;}
.sc0_c00465{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__c00465{-webkit-text-stroke:0px transparent;}
.sc0_c00465{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00465{word-spacing:0.000000px;}
.fc0_c00465{color:transparent;}
.fs1_c00465{font-size:12.000000px;}
.fs5_c00465{font-size:18.000000px;}
.fs6_c00465{font-size:72.007056px;}
.fs0_c00465{font-size:84.003402px;}
.fs4_c00465{font-size:102.002499px;}
.fs3_c00465{font-size:108.004374px;}
.fs2_c00465{font-size:114.004617px;}
.y0_c00465{bottom:0.000000px;}
.y42_c00465{bottom:734.940000px;}
.y43_c00465{bottom:741.559500px;}
.y44_c00465{bottom:742.391961px;}
.y45_c00465{bottom:743.997096px;}
.y46_c00465{bottom:744.217533px;}
.y47_c00465{bottom:744.480957px;}
.y48_c00465{bottom:744.983802px;}
.y49_c00465{bottom:745.486290px;}
.y4a_c00465{bottom:745.509810px;}
.y4b_c00465{bottom:746.060157px;}
.y4c_c00465{bottom:746.457918px;}
.y4d_c00465{bottom:746.927940px;}
.y4e_c00465{bottom:747.524382px;}
.y4f_c00465{bottom:748.315998px;}
.y50_c00465{bottom:749.823903px;}
.y51_c00465{bottom:750.446469px;}
.y52_c00465{bottom:751.386828px;}
.y41_c00465{bottom:760.860000px;}
.y34_c00465{bottom:886.588500px;}
.y35_c00465{bottom:886.992844px;}
.y36_c00465{bottom:887.217817px;}
.y37_c00465{bottom:887.982826px;}
.y38_c00465{bottom:888.232600px;}
.y39_c00465{bottom:888.463443px;}
.y3a_c00465{bottom:888.950685px;}
.y3b_c00465{bottom:889.467022px;}
.y3c_c00465{bottom:889.814772px;}
.y3d_c00465{bottom:890.462906px;}
.y3e_c00465{bottom:890.699365px;}
.y3f_c00465{bottom:891.656619px;}
.y40_c00465{bottom:892.118629px;}
.y26_c00465{bottom:918.660603px;}
.y27_c00465{bottom:919.230701px;}
.y28_c00465{bottom:919.735618px;}
.y29_c00465{bottom:920.733826px;}
.y2a_c00465{bottom:921.292782px;}
.y2b_c00465{bottom:921.797295px;}
.y2c_c00465{bottom:923.269141px;}
.y2d_c00465{bottom:923.962224px;}
.y2e_c00465{bottom:924.645379px;}
.y2f_c00465{bottom:925.517239px;}
.y30_c00465{bottom:926.740726px;}
.y31_c00465{bottom:927.292848px;}
.y32_c00465{bottom:928.321418px;}
.y33_c00465{bottom:930.518815px;}
.y1a_c00465{bottom:955.534451px;}
.y1b_c00465{bottom:956.486844px;}
.y1c_c00465{bottom:957.379617px;}
.y1d_c00465{bottom:957.895544px;}
.y1e_c00465{bottom:959.213292px;}
.y1f_c00465{bottom:959.847703px;}
.y20_c00465{bottom:960.165685px;}
.y21_c00465{bottom:961.316118px;}
.y22_c00465{bottom:961.736124px;}
.y23_c00465{bottom:962.698200px;}
.y24_c00465{bottom:963.322038px;}
.y25_c00465{bottom:963.726528px;}
.yc_c00465{bottom:993.873000px;}
.yd_c00465{bottom:994.067413px;}
.ye_c00465{bottom:995.076849px;}
.yf_c00465{bottom:995.381423px;}
.y10_c00465{bottom:995.673751px;}
.y11_c00465{bottom:996.165530px;}
.y12_c00465{bottom:996.438594px;}
.y13_c00465{bottom:996.711051px;}
.y14_c00465{bottom:997.545648px;}
.y15_c00465{bottom:998.047646px;}
.y16_c00465{bottom:998.553005px;}
.y17_c00465{bottom:998.935176px;}
.y18_c00465{bottom:999.585822px;}
.y19_c00465{bottom:1000.391718px;}
.yb_c00465{bottom:1059.750000px;}
.y1_c00465{bottom:1136.175000px;}
.y2_c00465{bottom:1136.694885px;}
.y3_c00465{bottom:1137.459404px;}
.y4_c00465{bottom:1137.751692px;}
.y5_c00465{bottom:1138.431970px;}
.y6_c00465{bottom:1138.434819px;}
.y7_c00465{bottom:1139.421466px;}
.y8_c00465{bottom:1140.903766px;}
.y9_c00465{bottom:1142.011738px;}
.ya_c00465{bottom:1142.196810px;}
.h3_c00465{height:12.000000px;}
.h7_c00465{height:18.000000px;}
.h8_c00465{height:72.007056px;}
.h2_c00465{height:84.003402px;}
.h6_c00465{height:102.002499px;}
.h5_c00465{height:108.004374px;}
.h4_c00465{height:114.004617px;}
.h0_c00465{height:1246.320000px;}
.h1_c00465{height:1246.500000px;}
.w0_c00465{width:914.700000px;}
.w1_c00465{width:915.000000px;}
.x0_c00465{left:0.000000px;}
.x1_c00465{left:4.852500px;}
.x3a_c00465{left:7.020000px;}
.xa_c00465{left:11.070000px;}
.x19_c00465{left:56.278263px;}
.xb_c00465{left:59.439000px;}
.x2_c00465{left:62.617500px;}
.xc_c00465{left:81.040500px;}
.x25_c00465{left:97.858338px;}
.x3c_c00465{left:110.026500px;}
.x30_c00465{left:116.530500px;}
.x1a_c00465{left:129.597131px;}
.x3_c00465{left:147.564000px;}
.x31_c00465{left:148.669500px;}
.x3d_c00465{left:169.488000px;}
.x4_c00465{left:180.040500px;}
.x26_c00465{left:191.866425px;}
.xd_c00465{left:193.200000px;}
.x1b_c00465{left:198.291660px;}
.xe_c00465{left:227.041500px;}
.x1c_c00465{left:237.948729px;}
.x5_c00465{left:255.627000px;}
.x27_c00465{left:258.358740px;}
.xf_c00465{left:259.522500px;}
.x3e_c00465{left:284.140500px;}
.x32_c00465{left:293.638500px;}
.x3f_c00465{left:299.886000px;}
.x10_c00465{left:314.164500px;}
.x40_c00465{left:318.702000px;}
.x33_c00465{left:326.616000px;}
.x1d_c00465{left:339.361584px;}
.x11_c00465{left:344.505000px;}
.x28_c00465{left:350.391449px;}
.x41_c00465{left:354.619500px;}
.x6_c00465{left:365.571000px;}
.x3b_c00465{left:371.250000px;}
.x12_c00465{left:374.778000px;}
.x1e_c00465{left:388.183329px;}
.x42_c00465{left:390.511500px;}
.x43_c00465{left:392.191500px;}
.x29_c00465{left:393.731222px;}
.x34_c00465{left:396.222000px;}
.x1f_c00465{left:412.680452px;}
.x44_c00465{left:431.502000px;}
.x2a_c00465{left:436.468035px;}
.x45_c00465{left:459.913500px;}
.x13_c00465{left:467.511000px;}
.x35_c00465{left:469.984500px;}
.x2b_c00465{left:491.004606px;}
.x46_c00465{left:493.486500px;}
.x20_c00465{left:501.169766px;}
.x36_c00465{left:519.663000px;}
.x14_c00465{left:523.288500px;}
.x7_c00465{left:530.271000px;}
.x21_c00465{left:533.502605px;}
.x47_c00465{left:536.089500px;}
.x2c_c00465{left:567.442787px;}
.x15_c00465{left:579.439500px;}
.x48_c00465{left:592.633500px;}
.x2d_c00465{left:601.954113px;}
.x22_c00465{left:607.563945px;}
.x37_c00465{left:612.253500px;}
.x16_c00465{left:621.903000px;}
.x38_c00465{left:646.033500px;}
.x8_c00465{left:653.379000px;}
.x23_c00465{left:655.544217px;}
.x2e_c00465{left:666.235563px;}
.x9_c00465{left:673.942500px;}
.x24_c00465{left:686.653097px;}
.x17_c00465{left:694.197000px;}
.x49_c00465{left:700.341000px;}
.x4a_c00465{left:744.810000px;}
.x18_c00465{left:783.741000px;}
.x2f_c00465{left:803.548910px;}
.x4b_c00465{left:811.978500px;}
.x39_c00465{left:848.785500px;}
@media print{
.v0_c00465{vertical-align:0.000000pt;}
.ls0_c00465{letter-spacing:0.000000pt;}
.ws0_c00465{word-spacing:0.000000pt;}
.fs1_c00465{font-size:10.666667pt;}
.fs5_c00465{font-size:16.000000pt;}
.fs6_c00465{font-size:64.006272pt;}
.fs0_c00465{font-size:74.669691pt;}
.fs4_c00465{font-size:90.668888pt;}
.fs3_c00465{font-size:96.003888pt;}
.fs2_c00465{font-size:101.337437pt;}
.y0_c00465{bottom:0.000000pt;}
.y42_c00465{bottom:653.280000pt;}
.y43_c00465{bottom:659.164000pt;}
.y44_c00465{bottom:659.903965pt;}
.y45_c00465{bottom:661.330752pt;}
.y46_c00465{bottom:661.526696pt;}
.y47_c00465{bottom:661.760851pt;}
.y48_c00465{bottom:662.207824pt;}
.y49_c00465{bottom:662.654480pt;}
.y4a_c00465{bottom:662.675387pt;}
.y4b_c00465{bottom:663.164584pt;}
.y4c_c00465{bottom:663.518149pt;}
.y4d_c00465{bottom:663.935947pt;}
.y4e_c00465{bottom:664.466117pt;}
.y4f_c00465{bottom:665.169776pt;}
.y50_c00465{bottom:666.510136pt;}
.y51_c00465{bottom:667.063528pt;}
.y52_c00465{bottom:667.899403pt;}
.y41_c00465{bottom:676.320000pt;}
.y34_c00465{bottom:788.078667pt;}
.y35_c00465{bottom:788.438084pt;}
.y36_c00465{bottom:788.638060pt;}
.y37_c00465{bottom:789.318068pt;}
.y38_c00465{bottom:789.540089pt;}
.y39_c00465{bottom:789.745283pt;}
.y3a_c00465{bottom:790.178387pt;}
.y3b_c00465{bottom:790.637353pt;}
.y3c_c00465{bottom:790.946464pt;}
.y3d_c00465{bottom:791.522583pt;}
.y3e_c00465{bottom:791.732769pt;}
.y3f_c00465{bottom:792.583661pt;}
.y40_c00465{bottom:792.994337pt;}
.y26_c00465{bottom:816.587203pt;}
.y27_c00465{bottom:817.093956pt;}
.y28_c00465{bottom:817.542772pt;}
.y29_c00465{bottom:818.430068pt;}
.y2a_c00465{bottom:818.926917pt;}
.y2b_c00465{bottom:819.375373pt;}
.y2c_c00465{bottom:820.683681pt;}
.y2d_c00465{bottom:821.299755pt;}
.y2e_c00465{bottom:821.907004pt;}
.y2f_c00465{bottom:822.681991pt;}
.y30_c00465{bottom:823.769535pt;}
.y31_c00465{bottom:824.260309pt;}
.y32_c00465{bottom:825.174593pt;}
.y33_c00465{bottom:827.127836pt;}
.y1a_c00465{bottom:849.363956pt;}
.y1b_c00465{bottom:850.210528pt;}
.y1c_c00465{bottom:851.004104pt;}
.y1d_c00465{bottom:851.462705pt;}
.y1e_c00465{bottom:852.634037pt;}
.y1f_c00465{bottom:853.197959pt;}
.y20_c00465{bottom:853.480609pt;}
.y21_c00465{bottom:854.503216pt;}
.y22_c00465{bottom:854.876555pt;}
.y23_c00465{bottom:855.731733pt;}
.y24_c00465{bottom:856.286256pt;}
.y25_c00465{bottom:856.645803pt;}
.yc_c00465{bottom:883.442667pt;}
.yd_c00465{bottom:883.615479pt;}
.ye_c00465{bottom:884.512755pt;}
.yf_c00465{bottom:884.783487pt;}
.y10_c00465{bottom:885.043335pt;}
.y11_c00465{bottom:885.480471pt;}
.y12_c00465{bottom:885.723195pt;}
.y13_c00465{bottom:885.965379pt;}
.y14_c00465{bottom:886.707243pt;}
.y15_c00465{bottom:887.153463pt;}
.y16_c00465{bottom:887.602671pt;}
.y17_c00465{bottom:887.942379pt;}
.y18_c00465{bottom:888.520731pt;}
.y19_c00465{bottom:889.237083pt;}
.yb_c00465{bottom:942.000000pt;}
.y1_c00465{bottom:1009.933333pt;}
.y2_c00465{bottom:1010.395453pt;}
.y3_c00465{bottom:1011.075025pt;}
.y4_c00465{bottom:1011.334837pt;}
.y5_c00465{bottom:1011.939529pt;}
.y6_c00465{bottom:1011.942061pt;}
.y7_c00465{bottom:1012.819081pt;}
.y8_c00465{bottom:1014.136681pt;}
.y9_c00465{bottom:1015.121545pt;}
.ya_c00465{bottom:1015.286053pt;}
.h3_c00465{height:10.666667pt;}
.h7_c00465{height:16.000000pt;}
.h8_c00465{height:64.006272pt;}
.h2_c00465{height:74.669691pt;}
.h6_c00465{height:90.668888pt;}
.h5_c00465{height:96.003888pt;}
.h4_c00465{height:101.337437pt;}
.h0_c00465{height:1107.840000pt;}
.h1_c00465{height:1108.000000pt;}
.w0_c00465{width:813.066667pt;}
.w1_c00465{width:813.333333pt;}
.x0_c00465{left:0.000000pt;}
.x1_c00465{left:4.313333pt;}
.x3a_c00465{left:6.240000pt;}
.xa_c00465{left:9.840000pt;}
.x19_c00465{left:50.025123pt;}
.xb_c00465{left:52.834667pt;}
.x2_c00465{left:55.660000pt;}
.xc_c00465{left:72.036000pt;}
.x25_c00465{left:86.985189pt;}
.x3c_c00465{left:97.801333pt;}
.x30_c00465{left:103.582667pt;}
.x1a_c00465{left:115.197449pt;}
.x3_c00465{left:131.168000pt;}
.x31_c00465{left:132.150667pt;}
.x3d_c00465{left:150.656000pt;}
.x4_c00465{left:160.036000pt;}
.x26_c00465{left:170.547933pt;}
.xd_c00465{left:171.733333pt;}
.x1b_c00465{left:176.259253pt;}
.xe_c00465{left:201.814667pt;}
.x1c_c00465{left:211.509981pt;}
.x5_c00465{left:227.224000pt;}
.x27_c00465{left:229.652213pt;}
.xf_c00465{left:230.686667pt;}
.x3e_c00465{left:252.569333pt;}
.x32_c00465{left:261.012000pt;}
.x3f_c00465{left:266.565333pt;}
.x10_c00465{left:279.257333pt;}
.x40_c00465{left:283.290667pt;}
.x33_c00465{left:290.325333pt;}
.x1d_c00465{left:301.654741pt;}
.x11_c00465{left:306.226667pt;}
.x28_c00465{left:311.459065pt;}
.x41_c00465{left:315.217333pt;}
.x6_c00465{left:324.952000pt;}
.x3b_c00465{left:330.000000pt;}
.x12_c00465{left:333.136000pt;}
.x1e_c00465{left:345.051848pt;}
.x42_c00465{left:347.121333pt;}
.x43_c00465{left:348.614667pt;}
.x29_c00465{left:349.983308pt;}
.x34_c00465{left:352.197333pt;}
.x1f_c00465{left:366.827068pt;}
.x44_c00465{left:383.557333pt;}
.x2a_c00465{left:387.971587pt;}
.x45_c00465{left:408.812000pt;}
.x13_c00465{left:415.565333pt;}
.x35_c00465{left:417.764000pt;}
.x2b_c00465{left:436.448539pt;}
.x46_c00465{left:438.654667pt;}
.x20_c00465{left:445.484236pt;}
.x36_c00465{left:461.922667pt;}
.x14_c00465{left:465.145333pt;}
.x7_c00465{left:471.352000pt;}
.x21_c00465{left:474.224537pt;}
.x47_c00465{left:476.524000pt;}
.x2c_c00465{left:504.393588pt;}
.x15_c00465{left:515.057333pt;}
.x48_c00465{left:526.785333pt;}
.x2d_c00465{left:535.070323pt;}
.x22_c00465{left:540.056840pt;}
.x37_c00465{left:544.225333pt;}
.x16_c00465{left:552.802667pt;}
.x38_c00465{left:574.252000pt;}
.x8_c00465{left:580.781333pt;}
.x23_c00465{left:582.705971pt;}
.x2e_c00465{left:592.209389pt;}
.x9_c00465{left:599.060000pt;}
.x24_c00465{left:610.358308pt;}
.x17_c00465{left:617.064000pt;}
.x49_c00465{left:622.525333pt;}
.x4a_c00465{left:662.053333pt;}
.x18_c00465{left:696.658667pt;}
.x2f_c00465{left:714.265697pt;}
.x4b_c00465{left:721.758667pt;}
.x39_c00465{left:754.476000pt;}
}





/* 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_c00466 {
    display:none;
  }
  .loading-indicator_c00466.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00466 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_c00466 { 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_c00466" -> "#page-container .classname_c00466")
 */
.pf_c00466 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00466 { /* 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_c00466.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00466 { /* 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_c00466 { /* 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_c00466 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00466 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00466 {overflow:visible;}
  }
}
.c_c00466 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00466 { /* 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_c00466:after { /* webkit #35443 */
  content: '';
}
.t_c00466:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00466 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 */
}
.__c00466 { /* 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_c00466 { /* info for Javascript */
  display:none;
}
.l_c00466 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00466 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00466 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00466: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_c00466 {
    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_c00466.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00466.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_c00466 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00466{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00466;src:url('chunks/assets/font_cfe63ee56e9e10a97d33a3db.woff2')format("woff");}.ff1_c00466{font-family:ff1_c00466;line-height:1.000000;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;}
.m1b_c00466{transform:matrix(0.015888,-0.000843,0.013245,0.249649,0,0);-ms-transform:matrix(0.015888,-0.000843,0.013245,0.249649,0,0);-webkit-transform:matrix(0.015888,-0.000843,0.013245,0.249649,0,0);}
.m30_c00466{transform:matrix(0.064594,-0.003427,0.013245,0.249649,0,0);-ms-transform:matrix(0.064594,-0.003427,0.013245,0.249649,0,0);-webkit-transform:matrix(0.064594,-0.003427,0.013245,0.249649,0,0);}
.m0_c00466{transform:matrix(0.095496,-0.005066,0.013245,0.249649,0,0);-ms-transform:matrix(0.095496,-0.005066,0.013245,0.249649,0,0);-webkit-transform:matrix(0.095496,-0.005066,0.013245,0.249649,0,0);}
.m60_c00466{transform:matrix(0.179547,-0.009526,0.013245,0.249649,0,0);-ms-transform:matrix(0.179547,-0.009526,0.013245,0.249649,0,0);-webkit-transform:matrix(0.179547,-0.009526,0.013245,0.249649,0,0);}
.ma_c00466{transform:matrix(0.182284,-0.009671,0.013245,0.249649,0,0);-ms-transform:matrix(0.182284,-0.009671,0.013245,0.249649,0,0);-webkit-transform:matrix(0.182284,-0.009671,0.013245,0.249649,0,0);}
.m4_c00466{transform:matrix(0.183152,-0.009717,0.013245,0.249649,0,0);-ms-transform:matrix(0.183152,-0.009717,0.013245,0.249649,0,0);-webkit-transform:matrix(0.183152,-0.009717,0.013245,0.249649,0,0);}
.m5f_c00466{transform:matrix(0.184965,-0.009813,0.013245,0.249649,0,0);-ms-transform:matrix(0.184965,-0.009813,0.013245,0.249649,0,0);-webkit-transform:matrix(0.184965,-0.009813,0.013245,0.249649,0,0);}
.m40_c00466{transform:matrix(0.188135,-0.009981,0.013245,0.249649,0,0);-ms-transform:matrix(0.188135,-0.009981,0.013245,0.249649,0,0);-webkit-transform:matrix(0.188135,-0.009981,0.013245,0.249649,0,0);}
.m65_c00466{transform:matrix(0.189998,-0.010080,0.013245,0.249649,0,0);-ms-transform:matrix(0.189998,-0.010080,0.013245,0.249649,0,0);-webkit-transform:matrix(0.189998,-0.010080,0.013245,0.249649,0,0);}
.m66_c00466{transform:matrix(0.191855,-0.010179,0.013245,0.249649,0,0);-ms-transform:matrix(0.191855,-0.010179,0.013245,0.249649,0,0);-webkit-transform:matrix(0.191855,-0.010179,0.013245,0.249649,0,0);}
.m48_c00466{transform:matrix(0.198176,-0.010514,0.013245,0.249649,0,0);-ms-transform:matrix(0.198176,-0.010514,0.013245,0.249649,0,0);-webkit-transform:matrix(0.198176,-0.010514,0.013245,0.249649,0,0);}
.m5e_c00466{transform:matrix(0.200248,-0.010624,0.013245,0.249649,0,0);-ms-transform:matrix(0.200248,-0.010624,0.013245,0.249649,0,0);-webkit-transform:matrix(0.200248,-0.010624,0.013245,0.249649,0,0);}
.m46_c00466{transform:matrix(0.200613,-0.010643,0.013245,0.249649,0,0);-ms-transform:matrix(0.200613,-0.010643,0.013245,0.249649,0,0);-webkit-transform:matrix(0.200613,-0.010643,0.013245,0.249649,0,0);}
.me_c00466{transform:matrix(0.201212,-0.010675,0.013245,0.249649,0,0);-ms-transform:matrix(0.201212,-0.010675,0.013245,0.249649,0,0);-webkit-transform:matrix(0.201212,-0.010675,0.013245,0.249649,0,0);}
.m5_c00466{transform:matrix(0.201836,-0.010708,0.013245,0.249649,0,0);-ms-transform:matrix(0.201836,-0.010708,0.013245,0.249649,0,0);-webkit-transform:matrix(0.201836,-0.010708,0.013245,0.249649,0,0);}
.m10_c00466{transform:matrix(0.207578,-0.011013,0.013245,0.249649,0,0);-ms-transform:matrix(0.207578,-0.011013,0.013245,0.249649,0,0);-webkit-transform:matrix(0.207578,-0.011013,0.013245,0.249649,0,0);}
.mc_c00466{transform:matrix(0.210040,-0.011143,0.013245,0.249649,0,0);-ms-transform:matrix(0.210040,-0.011143,0.013245,0.249649,0,0);-webkit-transform:matrix(0.210040,-0.011143,0.013245,0.249649,0,0);}
.m9_c00466{transform:matrix(0.213505,-0.011327,0.013245,0.249649,0,0);-ms-transform:matrix(0.213505,-0.011327,0.013245,0.249649,0,0);-webkit-transform:matrix(0.213505,-0.011327,0.013245,0.249649,0,0);}
.m41_c00466{transform:matrix(0.213839,-0.011345,0.013245,0.249649,0,0);-ms-transform:matrix(0.213839,-0.011345,0.013245,0.249649,0,0);-webkit-transform:matrix(0.213839,-0.011345,0.013245,0.249649,0,0);}
.m63_c00466{transform:matrix(0.215367,-0.011426,0.013245,0.249649,0,0);-ms-transform:matrix(0.215367,-0.011426,0.013245,0.249649,0,0);-webkit-transform:matrix(0.215367,-0.011426,0.013245,0.249649,0,0);}
.m2_c00466{transform:matrix(0.215502,-0.011433,0.013245,0.249649,0,0);-ms-transform:matrix(0.215502,-0.011433,0.013245,0.249649,0,0);-webkit-transform:matrix(0.215502,-0.011433,0.013245,0.249649,0,0);}
.m64_c00466{transform:matrix(0.215836,-0.011451,0.013245,0.249649,0,0);-ms-transform:matrix(0.215836,-0.011451,0.013245,0.249649,0,0);-webkit-transform:matrix(0.215836,-0.011451,0.013245,0.249649,0,0);}
.m3_c00466{transform:matrix(0.216341,-0.011478,0.013245,0.249649,0,0);-ms-transform:matrix(0.216341,-0.011478,0.013245,0.249649,0,0);-webkit-transform:matrix(0.216341,-0.011478,0.013245,0.249649,0,0);}
.m6_c00466{transform:matrix(0.216960,-0.011510,0.013245,0.249649,0,0);-ms-transform:matrix(0.216960,-0.011510,0.013245,0.249649,0,0);-webkit-transform:matrix(0.216960,-0.011510,0.013245,0.249649,0,0);}
.m43_c00466{transform:matrix(0.217489,-0.011538,0.013245,0.249649,0,0);-ms-transform:matrix(0.217489,-0.011538,0.013245,0.249649,0,0);-webkit-transform:matrix(0.217489,-0.011538,0.013245,0.249649,0,0);}
.m8_c00466{transform:matrix(0.217779,-0.011554,0.013245,0.249649,0,0);-ms-transform:matrix(0.217779,-0.011554,0.013245,0.249649,0,0);-webkit-transform:matrix(0.217779,-0.011554,0.013245,0.249649,0,0);}
.m61_c00466{transform:matrix(0.218937,-0.011615,0.013245,0.249649,0,0);-ms-transform:matrix(0.218937,-0.011615,0.013245,0.249649,0,0);-webkit-transform:matrix(0.218937,-0.011615,0.013245,0.249649,0,0);}
.m1_c00466{transform:matrix(0.219072,-0.011622,0.013245,0.249649,0,0);-ms-transform:matrix(0.219072,-0.011622,0.013245,0.249649,0,0);-webkit-transform:matrix(0.219072,-0.011622,0.013245,0.249649,0,0);}
.m42_c00466{transform:matrix(0.219282,-0.011634,0.013245,0.249649,0,0);-ms-transform:matrix(0.219282,-0.011634,0.013245,0.249649,0,0);-webkit-transform:matrix(0.219282,-0.011634,0.013245,0.249649,0,0);}
.m5d_c00466{transform:matrix(0.219456,-0.011643,0.013245,0.249649,0,0);-ms-transform:matrix(0.219456,-0.011643,0.013245,0.249649,0,0);-webkit-transform:matrix(0.219456,-0.011643,0.013245,0.249649,0,0);}
.m15_c00466{transform:matrix(0.219491,-0.011645,0.013245,0.249649,0,0);-ms-transform:matrix(0.219491,-0.011645,0.013245,0.249649,0,0);-webkit-transform:matrix(0.219491,-0.011645,0.013245,0.249649,0,0);}
.m62_c00466{transform:matrix(0.219756,-0.011659,0.013245,0.249649,0,0);-ms-transform:matrix(0.219756,-0.011659,0.013245,0.249649,0,0);-webkit-transform:matrix(0.219756,-0.011659,0.013245,0.249649,0,0);}
.m39_c00466{transform:matrix(0.221723,-0.011763,0.013245,0.249649,0,0);-ms-transform:matrix(0.221723,-0.011763,0.013245,0.249649,0,0);-webkit-transform:matrix(0.221723,-0.011763,0.013245,0.249649,0,0);}
.m3f_c00466{transform:matrix(0.222312,-0.011794,0.013245,0.249649,0,0);-ms-transform:matrix(0.222312,-0.011794,0.013245,0.249649,0,0);-webkit-transform:matrix(0.222312,-0.011794,0.013245,0.249649,0,0);}
.m12_c00466{transform:matrix(0.222647,-0.011812,0.013245,0.249649,0,0);-ms-transform:matrix(0.222647,-0.011812,0.013245,0.249649,0,0);-webkit-transform:matrix(0.222647,-0.011812,0.013245,0.249649,0,0);}
.m21_c00466{transform:matrix(0.224135,-0.011891,0.013245,0.249649,0,0);-ms-transform:matrix(0.224135,-0.011891,0.013245,0.249649,0,0);-webkit-transform:matrix(0.224135,-0.011891,0.013245,0.249649,0,0);}
.m58_c00466{transform:matrix(0.224364,-0.011903,0.013245,0.249649,0,0);-ms-transform:matrix(0.224364,-0.011903,0.013245,0.249649,0,0);-webkit-transform:matrix(0.224364,-0.011903,0.013245,0.249649,0,0);}
.md_c00466{transform:matrix(0.224434,-0.011907,0.013245,0.249649,0,0);-ms-transform:matrix(0.224434,-0.011907,0.013245,0.249649,0,0);-webkit-transform:matrix(0.224434,-0.011907,0.013245,0.249649,0,0);}
.m18_c00466{transform:matrix(0.225029,-0.011938,0.013245,0.249649,0,0);-ms-transform:matrix(0.225029,-0.011938,0.013245,0.249649,0,0);-webkit-transform:matrix(0.225029,-0.011938,0.013245,0.249649,0,0);}
.m44_c00466{transform:matrix(0.226392,-0.012011,0.013245,0.249649,0,0);-ms-transform:matrix(0.226392,-0.012011,0.013245,0.249649,0,0);-webkit-transform:matrix(0.226392,-0.012011,0.013245,0.249649,0,0);}
.m7_c00466{transform:matrix(0.227086,-0.012048,0.013245,0.249649,0,0);-ms-transform:matrix(0.227086,-0.012048,0.013245,0.249649,0,0);-webkit-transform:matrix(0.227086,-0.012048,0.013245,0.249649,0,0);}
.m67_c00466{transform:matrix(0.227377,-0.008877,0.009752,0.249810,0,0);-ms-transform:matrix(0.227377,-0.008877,0.009752,0.249810,0,0);-webkit-transform:matrix(0.227377,-0.008877,0.009752,0.249810,0,0);}
.m47_c00466{transform:matrix(0.228668,-0.012132,0.013245,0.249649,0,0);-ms-transform:matrix(0.228668,-0.012132,0.013245,0.249649,0,0);-webkit-transform:matrix(0.228668,-0.012132,0.013245,0.249649,0,0);}
.m14_c00466{transform:matrix(0.228883,-0.012143,0.013245,0.249649,0,0);-ms-transform:matrix(0.228883,-0.012143,0.013245,0.249649,0,0);-webkit-transform:matrix(0.228883,-0.012143,0.013245,0.249649,0,0);}
.m19_c00466{transform:matrix(0.230166,-0.012211,0.013245,0.249649,0,0);-ms-transform:matrix(0.230166,-0.012211,0.013245,0.249649,0,0);-webkit-transform:matrix(0.230166,-0.012211,0.013245,0.249649,0,0);}
.m50_c00466{transform:matrix(0.230721,-0.012240,0.013245,0.249649,0,0);-ms-transform:matrix(0.230721,-0.012240,0.013245,0.249649,0,0);-webkit-transform:matrix(0.230721,-0.012240,0.013245,0.249649,0,0);}
.mb_c00466{transform:matrix(0.230815,-0.012245,0.013245,0.249649,0,0);-ms-transform:matrix(0.230815,-0.012245,0.013245,0.249649,0,0);-webkit-transform:matrix(0.230815,-0.012245,0.013245,0.249649,0,0);}
.m11_c00466{transform:matrix(0.232658,-0.012343,0.013245,0.249649,0,0);-ms-transform:matrix(0.232658,-0.012343,0.013245,0.249649,0,0);-webkit-transform:matrix(0.232658,-0.012343,0.013245,0.249649,0,0);}
.m25_c00466{transform:matrix(0.233392,-0.012382,0.013245,0.249649,0,0);-ms-transform:matrix(0.233392,-0.012382,0.013245,0.249649,0,0);-webkit-transform:matrix(0.233392,-0.012382,0.013245,0.249649,0,0);}
.m2f_c00466{transform:matrix(0.234525,-0.012442,0.013245,0.249649,0,0);-ms-transform:matrix(0.234525,-0.012442,0.013245,0.249649,0,0);-webkit-transform:matrix(0.234525,-0.012442,0.013245,0.249649,0,0);}
.m49_c00466{transform:matrix(0.236213,-0.012532,0.013245,0.249649,0,0);-ms-transform:matrix(0.236213,-0.012532,0.013245,0.249649,0,0);-webkit-transform:matrix(0.236213,-0.012532,0.013245,0.249649,0,0);}
.m16_c00466{transform:matrix(0.237261,-0.012587,0.013245,0.249649,0,0);-ms-transform:matrix(0.237261,-0.012587,0.013245,0.249649,0,0);-webkit-transform:matrix(0.237261,-0.012587,0.013245,0.249649,0,0);}
.m2d_c00466{transform:matrix(0.238200,-0.012637,0.013245,0.249649,0,0);-ms-transform:matrix(0.238200,-0.012637,0.013245,0.249649,0,0);-webkit-transform:matrix(0.238200,-0.012637,0.013245,0.249649,0,0);}
.m69_c00466{transform:matrix(0.240597,-0.009393,0.009752,0.249810,0,0);-ms-transform:matrix(0.240597,-0.009393,0.009752,0.249810,0,0);-webkit-transform:matrix(0.240597,-0.009393,0.009752,0.249810,0,0);}
.m4b_c00466{transform:matrix(0.240961,-0.012784,0.013245,0.249649,0,0);-ms-transform:matrix(0.240961,-0.012784,0.013245,0.249649,0,0);-webkit-transform:matrix(0.240961,-0.012784,0.013245,0.249649,0,0);}
.m2a_c00466{transform:matrix(0.241655,-0.012821,0.013245,0.249649,0,0);-ms-transform:matrix(0.241655,-0.012821,0.013245,0.249649,0,0);-webkit-transform:matrix(0.241655,-0.012821,0.013245,0.249649,0,0);}
.m45_c00466{transform:matrix(0.242144,-0.012847,0.013245,0.249649,0,0);-ms-transform:matrix(0.242144,-0.012847,0.013245,0.249649,0,0);-webkit-transform:matrix(0.242144,-0.012847,0.013245,0.249649,0,0);}
.mf_c00466{transform:matrix(0.242918,-0.012888,0.013245,0.249649,0,0);-ms-transform:matrix(0.242918,-0.012888,0.013245,0.249649,0,0);-webkit-transform:matrix(0.242918,-0.012888,0.013245,0.249649,0,0);}
.m68_c00466{transform:matrix(0.243699,-0.009514,0.009752,0.249810,0,0);-ms-transform:matrix(0.243699,-0.009514,0.009752,0.249810,0,0);-webkit-transform:matrix(0.243699,-0.009514,0.009752,0.249810,0,0);}
.m13_c00466{transform:matrix(0.244975,-0.012997,0.013245,0.249649,0,0);-ms-transform:matrix(0.244975,-0.012997,0.013245,0.249649,0,0);-webkit-transform:matrix(0.244975,-0.012997,0.013245,0.249649,0,0);}
.m52_c00466{transform:matrix(0.245625,-0.013031,0.013245,0.249649,0,0);-ms-transform:matrix(0.245625,-0.013031,0.013245,0.249649,0,0);-webkit-transform:matrix(0.245625,-0.013031,0.013245,0.249649,0,0);}
.m6a_c00466{transform:matrix(0.248046,-0.009683,0.009752,0.249810,0,0);-ms-transform:matrix(0.248046,-0.009683,0.009752,0.249810,0,0);-webkit-transform:matrix(0.248046,-0.009683,0.009752,0.249810,0,0);}
.m59_c00466{transform:matrix(0.248286,-0.013172,0.013245,0.249649,0,0);-ms-transform:matrix(0.248286,-0.013172,0.013245,0.249649,0,0);-webkit-transform:matrix(0.248286,-0.013172,0.013245,0.249649,0,0);}
.m5b_c00466{transform:matrix(0.248760,-0.013197,0.013245,0.249649,0,0);-ms-transform:matrix(0.248760,-0.013197,0.013245,0.249649,0,0);-webkit-transform:matrix(0.248760,-0.013197,0.013245,0.249649,0,0);}
.m3c_c00466{transform:matrix(0.251087,-0.013321,0.013245,0.249649,0,0);-ms-transform:matrix(0.251087,-0.013321,0.013245,0.249649,0,0);-webkit-transform:matrix(0.251087,-0.013321,0.013245,0.249649,0,0);}
.m5c_c00466{transform:matrix(0.253489,-0.013448,0.013245,0.249649,0,0);-ms-transform:matrix(0.253489,-0.013448,0.013245,0.249649,0,0);-webkit-transform:matrix(0.253489,-0.013448,0.013245,0.249649,0,0);}
.m3d_c00466{transform:matrix(0.253573,-0.013453,0.013245,0.249649,0,0);-ms-transform:matrix(0.253573,-0.013453,0.013245,0.249649,0,0);-webkit-transform:matrix(0.253573,-0.013453,0.013245,0.249649,0,0);}
.m4f_c00466{transform:matrix(0.254327,-0.013493,0.013245,0.249649,0,0);-ms-transform:matrix(0.254327,-0.013493,0.013245,0.249649,0,0);-webkit-transform:matrix(0.254327,-0.013493,0.013245,0.249649,0,0);}
.m1d_c00466{transform:matrix(0.257578,-0.013665,0.013245,0.249649,0,0);-ms-transform:matrix(0.257578,-0.013665,0.013245,0.249649,0,0);-webkit-transform:matrix(0.257578,-0.013665,0.013245,0.249649,0,0);}
.m28_c00466{transform:matrix(0.259181,-0.013750,0.013245,0.249649,0,0);-ms-transform:matrix(0.259181,-0.013750,0.013245,0.249649,0,0);-webkit-transform:matrix(0.259181,-0.013750,0.013245,0.249649,0,0);}
.m2c_c00466{transform:matrix(0.261717,-0.013885,0.013245,0.249649,0,0);-ms-transform:matrix(0.261717,-0.013885,0.013245,0.249649,0,0);-webkit-transform:matrix(0.261717,-0.013885,0.013245,0.249649,0,0);}
.m37_c00466{transform:matrix(0.262096,-0.013905,0.013245,0.249649,0,0);-ms-transform:matrix(0.262096,-0.013905,0.013245,0.249649,0,0);-webkit-transform:matrix(0.262096,-0.013905,0.013245,0.249649,0,0);}
.m26_c00466{transform:matrix(0.262156,-0.013908,0.013245,0.249649,0,0);-ms-transform:matrix(0.262156,-0.013908,0.013245,0.249649,0,0);-webkit-transform:matrix(0.262156,-0.013908,0.013245,0.249649,0,0);}
.m17_c00466{transform:matrix(0.262561,-0.013930,0.013245,0.249649,0,0);-ms-transform:matrix(0.262561,-0.013930,0.013245,0.249649,0,0);-webkit-transform:matrix(0.262561,-0.013930,0.013245,0.249649,0,0);}
.m4a_c00466{transform:matrix(0.262860,-0.013946,0.013245,0.249649,0,0);-ms-transform:matrix(0.262860,-0.013946,0.013245,0.249649,0,0);-webkit-transform:matrix(0.262860,-0.013946,0.013245,0.249649,0,0);}
.m23_c00466{transform:matrix(0.262865,-0.013946,0.013245,0.249649,0,0);-ms-transform:matrix(0.262865,-0.013946,0.013245,0.249649,0,0);-webkit-transform:matrix(0.262865,-0.013946,0.013245,0.249649,0,0);}
.m27_c00466{transform:matrix(0.263355,-0.013972,0.013245,0.249649,0,0);-ms-transform:matrix(0.263355,-0.013972,0.013245,0.249649,0,0);-webkit-transform:matrix(0.263355,-0.013972,0.013245,0.249649,0,0);}
.m54_c00466{transform:matrix(0.263879,-0.014000,0.013245,0.249649,0,0);-ms-transform:matrix(0.263879,-0.014000,0.013245,0.249649,0,0);-webkit-transform:matrix(0.263879,-0.014000,0.013245,0.249649,0,0);}
.m2e_c00466{transform:matrix(0.264243,-0.014019,0.013245,0.249649,0,0);-ms-transform:matrix(0.264243,-0.014019,0.013245,0.249649,0,0);-webkit-transform:matrix(0.264243,-0.014019,0.013245,0.249649,0,0);}
.m3e_c00466{transform:matrix(0.264758,-0.014046,0.013245,0.249649,0,0);-ms-transform:matrix(0.264758,-0.014046,0.013245,0.249649,0,0);-webkit-transform:matrix(0.264758,-0.014046,0.013245,0.249649,0,0);}
.m34_c00466{transform:matrix(0.264907,-0.014054,0.013245,0.249649,0,0);-ms-transform:matrix(0.264907,-0.014054,0.013245,0.249649,0,0);-webkit-transform:matrix(0.264907,-0.014054,0.013245,0.249649,0,0);}
.m29_c00466{transform:matrix(0.268038,-0.014220,0.013245,0.249649,0,0);-ms-transform:matrix(0.268038,-0.014220,0.013245,0.249649,0,0);-webkit-transform:matrix(0.268038,-0.014220,0.013245,0.249649,0,0);}
.m2b_c00466{transform:matrix(0.268278,-0.014233,0.013245,0.249649,0,0);-ms-transform:matrix(0.268278,-0.014233,0.013245,0.249649,0,0);-webkit-transform:matrix(0.268278,-0.014233,0.013245,0.249649,0,0);}
.m56_c00466{transform:matrix(0.270260,-0.014338,0.013245,0.249649,0,0);-ms-transform:matrix(0.270260,-0.014338,0.013245,0.249649,0,0);-webkit-transform:matrix(0.270260,-0.014338,0.013245,0.249649,0,0);}
.m1c_c00466{transform:matrix(0.270924,-0.014373,0.013245,0.249649,0,0);-ms-transform:matrix(0.270924,-0.014373,0.013245,0.249649,0,0);-webkit-transform:matrix(0.270924,-0.014373,0.013245,0.249649,0,0);}
.m4d_c00466{transform:matrix(0.271069,-0.014381,0.013245,0.249649,0,0);-ms-transform:matrix(0.271069,-0.014381,0.013245,0.249649,0,0);-webkit-transform:matrix(0.271069,-0.014381,0.013245,0.249649,0,0);}
.m53_c00466{transform:matrix(0.271653,-0.014412,0.013245,0.249649,0,0);-ms-transform:matrix(0.271653,-0.014412,0.013245,0.249649,0,0);-webkit-transform:matrix(0.271653,-0.014412,0.013245,0.249649,0,0);}
.m55_c00466{transform:matrix(0.272222,-0.014442,0.013245,0.249649,0,0);-ms-transform:matrix(0.272222,-0.014442,0.013245,0.249649,0,0);-webkit-transform:matrix(0.272222,-0.014442,0.013245,0.249649,0,0);}
.m33_c00466{transform:matrix(0.273066,-0.014487,0.013245,0.249649,0,0);-ms-transform:matrix(0.273066,-0.014487,0.013245,0.249649,0,0);-webkit-transform:matrix(0.273066,-0.014487,0.013245,0.249649,0,0);}
.m5a_c00466{transform:matrix(0.274873,-0.014583,0.013245,0.249649,0,0);-ms-transform:matrix(0.274873,-0.014583,0.013245,0.249649,0,0);-webkit-transform:matrix(0.274873,-0.014583,0.013245,0.249649,0,0);}
.m51_c00466{transform:matrix(0.275178,-0.014599,0.013245,0.249649,0,0);-ms-transform:matrix(0.275178,-0.014599,0.013245,0.249649,0,0);-webkit-transform:matrix(0.275178,-0.014599,0.013245,0.249649,0,0);}
.m35_c00466{transform:matrix(0.275942,-0.014640,0.013245,0.249649,0,0);-ms-transform:matrix(0.275942,-0.014640,0.013245,0.249649,0,0);-webkit-transform:matrix(0.275942,-0.014640,0.013245,0.249649,0,0);}
.m36_c00466{transform:matrix(0.276052,-0.014645,0.013245,0.249649,0,0);-ms-transform:matrix(0.276052,-0.014645,0.013245,0.249649,0,0);-webkit-transform:matrix(0.276052,-0.014645,0.013245,0.249649,0,0);}
.m4c_c00466{transform:matrix(0.276481,-0.014668,0.013245,0.249649,0,0);-ms-transform:matrix(0.276481,-0.014668,0.013245,0.249649,0,0);-webkit-transform:matrix(0.276481,-0.014668,0.013245,0.249649,0,0);}
.m1e_c00466{transform:matrix(0.278024,-0.014750,0.013245,0.249649,0,0);-ms-transform:matrix(0.278024,-0.014750,0.013245,0.249649,0,0);-webkit-transform:matrix(0.278024,-0.014750,0.013245,0.249649,0,0);}
.m4e_c00466{transform:matrix(0.279172,-0.014811,0.013245,0.249649,0,0);-ms-transform:matrix(0.279172,-0.014811,0.013245,0.249649,0,0);-webkit-transform:matrix(0.279172,-0.014811,0.013245,0.249649,0,0);}
.m3b_c00466{transform:matrix(0.279597,-0.014833,0.013245,0.249649,0,0);-ms-transform:matrix(0.279597,-0.014833,0.013245,0.249649,0,0);-webkit-transform:matrix(0.279597,-0.014833,0.013245,0.249649,0,0);}
.m57_c00466{transform:matrix(0.279811,-0.014845,0.013245,0.249649,0,0);-ms-transform:matrix(0.279811,-0.014845,0.013245,0.249649,0,0);-webkit-transform:matrix(0.279811,-0.014845,0.013245,0.249649,0,0);}
.m22_c00466{transform:matrix(0.288659,-0.015314,0.013245,0.249649,0,0);-ms-transform:matrix(0.288659,-0.015314,0.013245,0.249649,0,0);-webkit-transform:matrix(0.288659,-0.015314,0.013245,0.249649,0,0);}
.m38_c00466{transform:matrix(0.290621,-0.015418,0.013245,0.249649,0,0);-ms-transform:matrix(0.290621,-0.015418,0.013245,0.249649,0,0);-webkit-transform:matrix(0.290621,-0.015418,0.013245,0.249649,0,0);}
.m3a_c00466{transform:matrix(0.292818,-0.015535,0.013245,0.249649,0,0);-ms-transform:matrix(0.292818,-0.015535,0.013245,0.249649,0,0);-webkit-transform:matrix(0.292818,-0.015535,0.013245,0.249649,0,0);}
.m1f_c00466{transform:matrix(0.299184,-0.015873,0.013245,0.249649,0,0);-ms-transform:matrix(0.299184,-0.015873,0.013245,0.249649,0,0);-webkit-transform:matrix(0.299184,-0.015873,0.013245,0.249649,0,0);}
.m20_c00466{transform:matrix(0.301161,-0.015978,0.013245,0.249649,0,0);-ms-transform:matrix(0.301161,-0.015978,0.013245,0.249649,0,0);-webkit-transform:matrix(0.301161,-0.015978,0.013245,0.249649,0,0);}
.m1a_c00466{transform:matrix(0.303598,-0.016107,0.013245,0.249649,0,0);-ms-transform:matrix(0.303598,-0.016107,0.013245,0.249649,0,0);-webkit-transform:matrix(0.303598,-0.016107,0.013245,0.249649,0,0);}
.m32_c00466{transform:matrix(0.306719,-0.016272,0.013245,0.249649,0,0);-ms-transform:matrix(0.306719,-0.016272,0.013245,0.249649,0,0);-webkit-transform:matrix(0.306719,-0.016272,0.013245,0.249649,0,0);}
.m31_c00466{transform:matrix(0.325917,-0.017291,0.013245,0.249649,0,0);-ms-transform:matrix(0.325917,-0.017291,0.013245,0.249649,0,0);-webkit-transform:matrix(0.325917,-0.017291,0.013245,0.249649,0,0);}
.m24_c00466{transform:matrix(0.329237,-0.017467,0.013245,0.249649,0,0);-ms-transform:matrix(0.329237,-0.017467,0.013245,0.249649,0,0);-webkit-transform:matrix(0.329237,-0.017467,0.013245,0.249649,0,0);}
.v0_c00466{vertical-align:0.000000px;}
.ls0_c00466{letter-spacing:0.000000px;}
.sc__c00466{text-shadow:none;}
.sc0_c00466{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__c00466{-webkit-text-stroke:0px transparent;}
.sc0_c00466{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00466{word-spacing:0.000000px;}
.fc0_c00466{color:transparent;}
.fs4_c00466{font-size:66.026725px;}
.fs3_c00466{font-size:72.029154px;}
.fs5_c00466{font-size:77.981356px;}
.fs2_c00466{font-size:84.034013px;}
.fs1_c00466{font-size:90.036443px;}
.fs0_c00466{font-size:138.055879px;}
.y0_c00466{bottom:0.000000px;}
.y69_c00466{bottom:786.801000px;}
.y6a_c00466{bottom:788.597125px;}
.y6b_c00466{bottom:791.931918px;}
.y6c_c00466{bottom:793.687854px;}
.y5f_c00466{bottom:823.618379px;}
.y60_c00466{bottom:828.072498px;}
.y61_c00466{bottom:828.835688px;}
.y62_c00466{bottom:830.003742px;}
.y63_c00466{bottom:831.125562px;}
.y64_c00466{bottom:834.110501px;}
.y65_c00466{bottom:837.856538px;}
.y66_c00466{bottom:840.088499px;}
.y67_c00466{bottom:843.452822px;}
.y68_c00466{bottom:844.607301px;}
.y56_c00466{bottom:857.382533px;}
.y57_c00466{bottom:859.812372px;}
.y58_c00466{bottom:863.386311px;}
.y59_c00466{bottom:867.286562px;}
.y5a_c00466{bottom:871.288797px;}
.y5b_c00466{bottom:872.467055px;}
.y5c_c00466{bottom:874.861226px;}
.y5d_c00466{bottom:878.401098px;}
.y5e_c00466{bottom:879.598985px;}
.y4b_c00466{bottom:894.107555px;}
.y4c_c00466{bottom:896.355567px;}
.y4d_c00466{bottom:897.472184px;}
.y4e_c00466{bottom:900.869099px;}
.y4f_c00466{bottom:904.925135px;}
.y50_c00466{bottom:906.079125px;}
.y51_c00466{bottom:907.235990px;}
.y52_c00466{bottom:909.473222px;}
.y53_c00466{bottom:910.614432px;}
.y54_c00466{bottom:913.990410px;}
.y55_c00466{bottom:915.535226px;}
.y40_c00466{bottom:929.491443px;}
.y41_c00466{bottom:931.671375px;}
.y42_c00466{bottom:932.745051px;}
.y43_c00466{bottom:934.902377px;}
.y44_c00466{bottom:936.707153px;}
.y45_c00466{bottom:938.183043px;}
.y46_c00466{bottom:940.362101px;}
.y47_c00466{bottom:943.294002px;}
.y48_c00466{bottom:944.750808px;}
.y49_c00466{bottom:947.657774px;}
.y4a_c00466{bottom:948.741264px;}
.y31_c00466{bottom:964.075491px;}
.y32_c00466{bottom:964.594988px;}
.y33_c00466{bottom:965.632140px;}
.y34_c00466{bottom:968.896290px;}
.y35_c00466{bottom:969.638354px;}
.y36_c00466{bottom:971.115608px;}
.y37_c00466{bottom:972.883725px;}
.y38_c00466{bottom:974.351868px;}
.y39_c00466{bottom:975.853251px;}
.y3a_c00466{bottom:978.779154px;}
.y3b_c00466{bottom:979.823100px;}
.y3c_c00466{bottom:982.036101px;}
.y3d_c00466{bottom:983.509289px;}
.y3e_c00466{bottom:984.588633px;}
.y3f_c00466{bottom:985.724460px;}
.y26_c00466{bottom:998.103092px;}
.y27_c00466{bottom:999.561890px;}
.y28_c00466{bottom:1002.164875px;}
.y29_c00466{bottom:1005.529437px;}
.y2a_c00466{bottom:1007.027939px;}
.y2b_c00466{bottom:1009.285380px;}
.y2c_c00466{bottom:1010.416299px;}
.y2d_c00466{bottom:1013.374247px;}
.y2e_c00466{bottom:1015.684398px;}
.y2f_c00466{bottom:1016.851499px;}
.y30_c00466{bottom:1019.448737px;}
.y1d_c00466{bottom:1040.514207px;}
.y1e_c00466{bottom:1041.512466px;}
.y1f_c00466{bottom:1042.446001px;}
.y20_c00466{bottom:1044.088007px;}
.y21_c00466{bottom:1047.282878px;}
.y22_c00466{bottom:1050.802098px;}
.y23_c00466{bottom:1051.746187px;}
.y24_c00466{bottom:1053.683754px;}
.y25_c00466{bottom:1054.386249px;}
.y16_c00466{bottom:1069.957056px;}
.y17_c00466{bottom:1071.246635px;}
.y18_c00466{bottom:1072.959768px;}
.y19_c00466{bottom:1075.621014px;}
.y1a_c00466{bottom:1076.936252px;}
.y1b_c00466{bottom:1078.258020px;}
.y1c_c00466{bottom:1095.917808px;}
.yc_c00466{bottom:1108.305848px;}
.yd_c00466{bottom:1111.097454px;}
.ye_c00466{bottom:1111.776738px;}
.yf_c00466{bottom:1113.996800px;}
.y10_c00466{bottom:1114.932176px;}
.y11_c00466{bottom:1119.126113px;}
.y12_c00466{bottom:1120.392075px;}
.y13_c00466{bottom:1122.672158px;}
.y14_c00466{bottom:1124.599238px;}
.y15_c00466{bottom:1125.224249px;}
.y2_c00466{bottom:1141.537446px;}
.y3_c00466{bottom:1145.010128px;}
.y4_c00466{bottom:1147.838679px;}
.y5_c00466{bottom:1150.634058px;}
.y6_c00466{bottom:1151.713278px;}
.y7_c00466{bottom:1153.441037px;}
.y8_c00466{bottom:1155.962541px;}
.y9_c00466{bottom:1156.634255px;}
.ya_c00466{bottom:1159.844252px;}
.yb_c00466{bottom:1162.032819px;}
.y1_c00466{bottom:1206.109500px;}
.h6_c00466{height:66.026725px;}
.h5_c00466{height:72.029154px;}
.h7_c00466{height:77.981356px;}
.h4_c00466{height:84.034013px;}
.h3_c00466{height:90.036443px;}
.h2_c00466{height:138.055879px;}
.h0_c00466{height:1246.320000px;}
.h1_c00466{height:1246.500000px;}
.w0_c00466{width:914.700000px;}
.w1_c00466{width:915.000000px;}
.x0_c00466{left:0.000000px;}
.x30_c00466{left:165.021873px;}
.x2_c00466{left:174.284253px;}
.xc_c00466{left:176.059312px;}
.x16_c00466{left:177.231273px;}
.x25_c00466{left:179.865214px;}
.x3e_c00466{left:182.035614px;}
.x51_c00466{left:183.829537px;}
.x57_c00466{left:185.735035px;}
.x17_c00466{left:209.441234px;}
.x31_c00466{left:212.094570px;}
.x26_c00466{left:222.685903px;}
.x60_c00466{left:232.563446px;}
.x3f_c00466{left:247.994460px;}
.x18_c00466{left:252.212364px;}
.xd_c00466{left:272.128722px;}
.x40_c00466{left:280.496883px;}
.x3_c00466{left:282.624787px;}
.x1d_c00466{left:285.741726px;}
.xe_c00466{left:295.526064px;}
.x27_c00466{left:299.139826px;}
.x32_c00466{left:310.867845px;}
.x58_c00466{left:316.540224px;}
.x19_c00466{left:318.661107px;}
.x1e_c00466{left:320.079963px;}
.x33_c00466{left:333.324160px;}
.x59_c00466{left:338.969872px;}
.x41_c00466{left:345.774694px;}
.x52_c00466{left:350.330718px;}
.x1a_c00466{left:351.496339px;}
.x61_c00466{left:362.964414px;}
.x4_c00466{left:370.893132px;}
.xf_c00466{left:371.956724px;}
.x5a_c00466{left:373.279566px;}
.x34_c00466{left:378.022267px;}
.x49_c00466{left:381.412450px;}
.x1b_c00466{left:384.483000px;}
.x28_c00466{left:397.936326px;}
.x42_c00466{left:400.356832px;}
.x10_c00466{left:404.174957px;}
.x5b_c00466{left:406.236261px;}
.x1f_c00466{left:408.734404px;}
.x1_c00466{left:419.950500px;}
.x35_c00466{left:431.516880px;}
.x29_c00466{left:441.958585px;}
.x43_c00466{left:445.000914px;}
.x5_c00466{left:458.111334px;}
.x36_c00466{left:475.929954px;}
.x6_c00466{left:491.794599px;}
.x5c_c00466{left:493.911751px;}
.x4a_c00466{left:500.522068px;}
.x2a_c00466{left:508.245420px;}
.x44_c00466{left:510.943276px;}
.x20_c00466{left:518.693077px;}
.x37_c00466{left:521.366118px;}
.x4b_c00466{left:534.396720px;}
.x2b_c00466{left:541.458597px;}
.x7_c00466{left:545.718124px;}
.x11_c00466{left:548.515403px;}
.x4c_c00466{left:568.353868px;}
.x53_c00466{left:569.530656px;}
.x12_c00466{left:592.091670px;}
.x45_c00466{left:599.658456px;}
.x54_c00466{left:602.219878px;}
.x5d_c00466{left:603.920827px;}
.x38_c00466{left:609.883257px;}
.x8_c00466{left:624.403398px;}
.x2c_c00466{left:628.342084px;}
.x4d_c00466{left:634.033174px;}
.x21_c00466{left:639.807249px;}
.x39_c00466{left:641.457075px;}
.x46_c00466{left:643.744539px;}
.x9_c00466{left:645.363733px;}
.x4e_c00466{left:667.525311px;}
.x55_c00466{left:668.619676px;}
.x13_c00466{left:670.588387px;}
.x22_c00466{left:672.303022px;}
.x2d_c00466{left:696.188949px;}
.x3a_c00466{left:708.407463px;}
.x2e_c00466{left:730.480660px;}
.x47_c00466{left:731.678125px;}
.x14_c00466{left:736.936328px;}
.x23_c00466{left:739.018572px;}
.xa_c00466{left:745.523885px;}
.x3b_c00466{left:753.000595px;}
.x15_c00466{left:758.432606px;}
.x24_c00466{left:763.221642px;}
.x48_c00466{left:764.450517px;}
.x4f_c00466{left:766.650300px;}
.x5e_c00466{left:768.236134px;}
.x3c_c00466{left:785.666514px;}
.x56_c00466{left:800.040958px;}
.x5f_c00466{left:802.148328px;}
.x2f_c00466{left:806.769589px;}
.x50_c00466{left:812.027056px;}
.xb_c00466{left:813.826512px;}
.x3d_c00466{left:820.048545px;}
.x1c_c00466{left:825.384174px;}
@media print{
.v0_c00466{vertical-align:0.000000pt;}
.ls0_c00466{letter-spacing:0.000000pt;}
.ws0_c00466{word-spacing:0.000000pt;}
.fs4_c00466{font-size:58.690422pt;}
.fs3_c00466{font-size:64.025915pt;}
.fs5_c00466{font-size:69.316761pt;}
.fs2_c00466{font-size:74.696901pt;}
.fs1_c00466{font-size:80.032393pt;}
.fs0_c00466{font-size:122.716337pt;}
.y0_c00466{bottom:0.000000pt;}
.y69_c00466{bottom:699.378667pt;}
.y6a_c00466{bottom:700.975223pt;}
.y6b_c00466{bottom:703.939483pt;}
.y6c_c00466{bottom:705.500315pt;}
.y5f_c00466{bottom:732.105225pt;}
.y60_c00466{bottom:736.064443pt;}
.y61_c00466{bottom:736.742833pt;}
.y62_c00466{bottom:737.781104pt;}
.y63_c00466{bottom:738.778277pt;}
.y64_c00466{bottom:741.431556pt;}
.y65_c00466{bottom:744.761367pt;}
.y66_c00466{bottom:746.745332pt;}
.y67_c00466{bottom:749.735841pt;}
.y68_c00466{bottom:750.762045pt;}
.y56_c00466{bottom:762.117807pt;}
.y57_c00466{bottom:764.277664pt;}
.y58_c00466{bottom:767.454499pt;}
.y59_c00466{bottom:770.921388pt;}
.y5a_c00466{bottom:774.478931pt;}
.y5b_c00466{bottom:775.526271pt;}
.y5c_c00466{bottom:777.654423pt;}
.y5d_c00466{bottom:780.800976pt;}
.y5e_c00466{bottom:781.865764pt;}
.y4b_c00466{bottom:794.762271pt;}
.y4c_c00466{bottom:796.760504pt;}
.y4d_c00466{bottom:797.753052pt;}
.y4e_c00466{bottom:800.772532pt;}
.y4f_c00466{bottom:804.377897pt;}
.y50_c00466{bottom:805.403667pt;}
.y51_c00466{bottom:806.431991pt;}
.y52_c00466{bottom:808.420641pt;}
.y53_c00466{bottom:809.435051pt;}
.y54_c00466{bottom:812.435920pt;}
.y55_c00466{bottom:813.809089pt;}
.y40_c00466{bottom:826.214616pt;}
.y41_c00466{bottom:828.152333pt;}
.y42_c00466{bottom:829.106712pt;}
.y43_c00466{bottom:831.024335pt;}
.y44_c00466{bottom:832.628580pt;}
.y45_c00466{bottom:833.940483pt;}
.y46_c00466{bottom:835.877423pt;}
.y47_c00466{bottom:838.483557pt;}
.y48_c00466{bottom:839.778496pt;}
.y49_c00466{bottom:842.362465pt;}
.y4a_c00466{bottom:843.325568pt;}
.y31_c00466{bottom:856.955992pt;}
.y32_c00466{bottom:857.417767pt;}
.y33_c00466{bottom:858.339680pt;}
.y34_c00466{bottom:861.241147pt;}
.y35_c00466{bottom:861.900759pt;}
.y36_c00466{bottom:863.213873pt;}
.y37_c00466{bottom:864.785533pt;}
.y38_c00466{bottom:866.090549pt;}
.y39_c00466{bottom:867.425112pt;}
.y3a_c00466{bottom:870.025915pt;}
.y3b_c00466{bottom:870.953867pt;}
.y3c_c00466{bottom:872.920979pt;}
.y3d_c00466{bottom:874.230479pt;}
.y3e_c00466{bottom:875.189896pt;}
.y3f_c00466{bottom:876.199520pt;}
.y26_c00466{bottom:887.202748pt;}
.y27_c00466{bottom:888.499457pt;}
.y28_c00466{bottom:890.813223pt;}
.y29_c00466{bottom:893.803944pt;}
.y2a_c00466{bottom:895.135945pt;}
.y2b_c00466{bottom:897.142560pt;}
.y2c_c00466{bottom:898.147821pt;}
.y2d_c00466{bottom:900.777108pt;}
.y2e_c00466{bottom:902.830576pt;}
.y2f_c00466{bottom:903.867999pt;}
.y30_c00466{bottom:906.176655pt;}
.y1d_c00466{bottom:924.901517pt;}
.y1e_c00466{bottom:925.788859pt;}
.y1f_c00466{bottom:926.618668pt;}
.y20_c00466{bottom:928.078228pt;}
.y21_c00466{bottom:930.918113pt;}
.y22_c00466{bottom:934.046309pt;}
.y23_c00466{bottom:934.885500pt;}
.y24_c00466{bottom:936.607781pt;}
.y25_c00466{bottom:937.232221pt;}
.y16_c00466{bottom:951.072939pt;}
.y17_c00466{bottom:952.219231pt;}
.y18_c00466{bottom:953.742016pt;}
.y19_c00466{bottom:956.107568pt;}
.y1a_c00466{bottom:957.276668pt;}
.y1b_c00466{bottom:958.451573pt;}
.y1c_c00466{bottom:974.149163pt;}
.yc_c00466{bottom:985.160753pt;}
.yd_c00466{bottom:987.642181pt;}
.ye_c00466{bottom:988.245989pt;}
.yf_c00466{bottom:990.219377pt;}
.y10_c00466{bottom:991.050823pt;}
.y11_c00466{bottom:994.778767pt;}
.y12_c00466{bottom:995.904067pt;}
.y13_c00466{bottom:997.930807pt;}
.y14_c00466{bottom:999.643767pt;}
.y15_c00466{bottom:1000.199332pt;}
.y2_c00466{bottom:1014.699952pt;}
.y3_c00466{bottom:1017.786780pt;}
.y4_c00466{bottom:1020.301048pt;}
.y5_c00466{bottom:1022.785829pt;}
.y6_c00466{bottom:1023.745136pt;}
.y7_c00466{bottom:1025.280921pt;}
.y8_c00466{bottom:1027.522259pt;}
.y9_c00466{bottom:1028.119337pt;}
.ya_c00466{bottom:1030.972668pt;}
.yb_c00466{bottom:1032.918061pt;}
.y1_c00466{bottom:1072.097333pt;}
.h6_c00466{height:58.690422pt;}
.h5_c00466{height:64.025915pt;}
.h7_c00466{height:69.316761pt;}
.h4_c00466{height:74.696901pt;}
.h3_c00466{height:80.032393pt;}
.h2_c00466{height:122.716337pt;}
.h0_c00466{height:1107.840000pt;}
.h1_c00466{height:1108.000000pt;}
.w0_c00466{width:813.066667pt;}
.w1_c00466{width:813.333333pt;}
.x0_c00466{left:0.000000pt;}
.x30_c00466{left:146.686109pt;}
.x2_c00466{left:154.919336pt;}
.xc_c00466{left:156.497167pt;}
.x16_c00466{left:157.538909pt;}
.x25_c00466{left:159.880191pt;}
.x3e_c00466{left:161.809435pt;}
.x51_c00466{left:163.404033pt;}
.x57_c00466{left:165.097809pt;}
.x17_c00466{left:186.169985pt;}
.x31_c00466{left:188.528507pt;}
.x26_c00466{left:197.943025pt;}
.x60_c00466{left:206.723063pt;}
.x3f_c00466{left:220.439520pt;}
.x18_c00466{left:224.188768pt;}
.xd_c00466{left:241.892197pt;}
.x40_c00466{left:249.330563pt;}
.x3_c00466{left:251.222033pt;}
.x1d_c00466{left:253.992645pt;}
.xe_c00466{left:262.689835pt;}
.x27_c00466{left:265.902068pt;}
.x32_c00466{left:276.326973pt;}
.x58_c00466{left:281.369088pt;}
.x19_c00466{left:283.254317pt;}
.x1e_c00466{left:284.515523pt;}
.x33_c00466{left:296.288143pt;}
.x59_c00466{left:301.306553pt;}
.x41_c00466{left:307.355284pt;}
.x52_c00466{left:311.405083pt;}
.x1a_c00466{left:312.441191pt;}
.x61_c00466{left:322.635035pt;}
.x4_c00466{left:329.682784pt;}
.xf_c00466{left:330.628199pt;}
.x5a_c00466{left:331.804059pt;}
.x34_c00466{left:336.019793pt;}
.x49_c00466{left:339.033289pt;}
.x1b_c00466{left:341.762667pt;}
.x28_c00466{left:353.721179pt;}
.x42_c00466{left:355.872740pt;}
.x10_c00466{left:359.266628pt;}
.x5b_c00466{left:361.098899pt;}
.x1f_c00466{left:363.319471pt;}
.x1_c00466{left:373.289333pt;}
.x35_c00466{left:383.570560pt;}
.x29_c00466{left:392.852076pt;}
.x43_c00466{left:395.556368pt;}
.x5_c00466{left:407.210075pt;}
.x36_c00466{left:423.048848pt;}
.x6_c00466{left:437.150755pt;}
.x5c_c00466{left:439.032668pt;}
.x4a_c00466{left:444.908505pt;}
.x2a_c00466{left:451.773707pt;}
.x44_c00466{left:454.171801pt;}
.x20_c00466{left:461.060513pt;}
.x37_c00466{left:463.436549pt;}
.x4b_c00466{left:475.019307pt;}
.x2b_c00466{left:481.296531pt;}
.x7_c00466{left:485.082777pt;}
.x11_c00466{left:487.569247pt;}
.x4c_c00466{left:505.203439pt;}
.x53_c00466{left:506.249472pt;}
.x12_c00466{left:526.303707pt;}
.x45_c00466{left:533.029739pt;}
.x54_c00466{left:535.306559pt;}
.x5d_c00466{left:536.818513pt;}
.x38_c00466{left:542.118451pt;}
.x8_c00466{left:555.025243pt;}
.x2c_c00466{left:558.526297pt;}
.x4d_c00466{left:563.585044pt;}
.x21_c00466{left:568.717555pt;}
.x39_c00466{left:570.184067pt;}
.x46_c00466{left:572.217368pt;}
.x9_c00466{left:573.656652pt;}
.x4e_c00466{left:593.355832pt;}
.x55_c00466{left:594.328601pt;}
.x13_c00466{left:596.078567pt;}
.x22_c00466{left:597.602687pt;}
.x2d_c00466{left:618.834621pt;}
.x3a_c00466{left:629.695523pt;}
.x2e_c00466{left:649.316143pt;}
.x47_c00466{left:650.380556pt;}
.x14_c00466{left:655.054513pt;}
.x23_c00466{left:656.905397pt;}
.xa_c00466{left:662.687897pt;}
.x3b_c00466{left:669.333863pt;}
.x15_c00466{left:674.162316pt;}
.x24_c00466{left:678.419237pt;}
.x48_c00466{left:679.511571pt;}
.x4f_c00466{left:681.466933pt;}
.x5e_c00466{left:682.876564pt;}
.x3c_c00466{left:698.370235pt;}
.x56_c00466{left:711.147519pt;}
.x5f_c00466{left:713.020736pt;}
.x2f_c00466{left:717.128524pt;}
.x50_c00466{left:721.801828pt;}
.xb_c00466{left:723.401344pt;}
.x3d_c00466{left:728.932040pt;}
.x1c_c00466{left:733.674821pt;}
}





/* 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_c00467 {
    display:none;
  }
  .loading-indicator_c00467.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00467 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_c00467 { 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_c00467" -> "#page-container .classname_c00467")
 */
.pf_c00467 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00467 { /* 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_c00467.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00467 { /* 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_c00467 { /* 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_c00467 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00467 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00467 {overflow:visible;}
  }
}
.c_c00467 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00467 { /* 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_c00467:after { /* webkit #35443 */
  content: '';
}
.t_c00467:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00467 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 */
}
.__c00467 { /* 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_c00467 { /* info for Javascript */
  display:none;
}
.l_c00467 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00467 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00467 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00467: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_c00467 {
    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_c00467.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00467.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_c00467 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00467{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00467;src:url('chunks/assets/font_dbd529e162d5851c7bfb6d27.woff2')format("woff");}.ff1_c00467{font-family:ff1_c00467;line-height:1.000000;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;}
.m7_c00467{transform:matrix(0.113631,0.007059,-0.015501,0.249519,0,0);-ms-transform:matrix(0.113631,0.007059,-0.015501,0.249519,0,0);-webkit-transform:matrix(0.113631,0.007059,-0.015501,0.249519,0,0);}
.m8_c00467{transform:matrix(0.155505,0.009661,-0.015501,0.249519,0,0);-ms-transform:matrix(0.155505,0.009661,-0.015501,0.249519,0,0);-webkit-transform:matrix(0.155505,0.009661,-0.015501,0.249519,0,0);}
.ma_c00467{transform:matrix(0.171684,0.010666,-0.015501,0.249519,0,0);-ms-transform:matrix(0.171684,0.010666,-0.015501,0.249519,0,0);-webkit-transform:matrix(0.171684,0.010666,-0.015501,0.249519,0,0);}
.m9_c00467{transform:matrix(0.199725,0.012408,-0.015501,0.249519,0,0);-ms-transform:matrix(0.199725,0.012408,-0.015501,0.249519,0,0);-webkit-transform:matrix(0.199725,0.012408,-0.015501,0.249519,0,0);}
.m5_c00467{transform:matrix(0.216084,0.003673,-0.004249,0.249964,0,0);-ms-transform:matrix(0.216084,0.003673,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.216084,0.003673,-0.004249,0.249964,0,0);}
.m2_c00467{transform:matrix(0.221933,0.003773,-0.004249,0.249964,0,0);-ms-transform:matrix(0.221933,0.003773,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.221933,0.003773,-0.004249,0.249964,0,0);}
.m4_c00467{transform:matrix(0.233621,0.003972,-0.004249,0.249964,0,0);-ms-transform:matrix(0.233621,0.003972,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.233621,0.003972,-0.004249,0.249964,0,0);}
.m1_c00467{transform:matrix(0.240205,0.004083,-0.004249,0.249964,0,0);-ms-transform:matrix(0.240205,0.004083,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.240205,0.004083,-0.004249,0.249964,0,0);}
.m3_c00467{transform:matrix(0.274100,0.004660,-0.004249,0.249964,0,0);-ms-transform:matrix(0.274100,0.004660,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.274100,0.004660,-0.004249,0.249964,0,0);}
.m6_c00467{transform:matrix(0.284624,0.004839,-0.004249,0.249964,0,0);-ms-transform:matrix(0.284624,0.004839,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.284624,0.004839,-0.004249,0.249964,0,0);}
.m0_c00467{transform:matrix(0.338446,0.005754,-0.004249,0.249964,0,0);-ms-transform:matrix(0.338446,0.005754,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.338446,0.005754,-0.004249,0.249964,0,0);}
.v0_c00467{vertical-align:0.000000px;}
.ls0_c00467{letter-spacing:0.000000px;}
.sc__c00467{text-shadow:none;}
.sc0_c00467{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__c00467{-webkit-text-stroke:0px transparent;}
.sc0_c00467{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00467{word-spacing:0.000000px;}
.fc0_c00467{color:transparent;}
.fs0_c00467{font-size:96.013871px;}
.fs1_c00467{font-size:137.989512px;}
.y0_c00467{bottom:0.000000px;}
.yb_c00467{bottom:775.126266px;}
.ya_c00467{bottom:777.869580px;}
.y9_c00467{bottom:784.382277px;}
.y8_c00467{bottom:785.769000px;}
.y7_c00467{bottom:890.456265px;}
.y6_c00467{bottom:890.986053px;}
.y5_c00467{bottom:892.163031px;}
.y4_c00467{bottom:892.810604px;}
.y3_c00467{bottom:894.443930px;}
.y2_c00467{bottom:895.083087px;}
.y1_c00467{bottom:895.326000px;}
.h2_c00467{height:96.013871px;}
.h3_c00467{height:137.989512px;}
.h0_c00467{height:1246.320000px;}
.h1_c00467{height:1246.500000px;}
.w0_c00467{width:914.700000px;}
.w1_c00467{width:915.000000px;}
.x0_c00467{left:0.000000px;}
.x1_c00467{left:97.615500px;}
.x2_c00467{left:111.904500px;}
.x3_c00467{left:149.502000px;}
.x4_c00467{left:245.580000px;}
.x5_c00467{left:283.672500px;}
.x6_c00467{left:352.906500px;}
.x7_c00467{left:384.070500px;}
.x8_c00467{left:429.616500px;}
.x9_c00467{left:451.938267px;}
.xa_c00467{left:556.771680px;}
.xb_c00467{left:600.930186px;}
@media print{
.v0_c00467{vertical-align:0.000000pt;}
.ls0_c00467{letter-spacing:0.000000pt;}
.ws0_c00467{word-spacing:0.000000pt;}
.fs0_c00467{font-size:85.345663pt;}
.fs1_c00467{font-size:122.657344pt;}
.y0_c00467{bottom:0.000000pt;}
.yb_c00467{bottom:689.001125pt;}
.ya_c00467{bottom:691.439627pt;}
.y9_c00467{bottom:697.228691pt;}
.y8_c00467{bottom:698.461333pt;}
.y7_c00467{bottom:791.516680pt;}
.y6_c00467{bottom:791.987603pt;}
.y5_c00467{bottom:793.033805pt;}
.y4_c00467{bottom:793.609425pt;}
.y3_c00467{bottom:795.061271pt;}
.y2_c00467{bottom:795.629411pt;}
.y1_c00467{bottom:795.845333pt;}
.h2_c00467{height:85.345663pt;}
.h3_c00467{height:122.657344pt;}
.h0_c00467{height:1107.840000pt;}
.h1_c00467{height:1108.000000pt;}
.w0_c00467{width:813.066667pt;}
.w1_c00467{width:813.333333pt;}
.x0_c00467{left:0.000000pt;}
.x1_c00467{left:86.769333pt;}
.x2_c00467{left:99.470667pt;}
.x3_c00467{left:132.890667pt;}
.x4_c00467{left:218.293333pt;}
.x5_c00467{left:252.153333pt;}
.x6_c00467{left:313.694667pt;}
.x7_c00467{left:341.396000pt;}
.x8_c00467{left:381.881333pt;}
.x9_c00467{left:401.722904pt;}
.xa_c00467{left:494.908160pt;}
.xb_c00467{left:534.160165pt;}
}





/* 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_c00468 {
    display:none;
  }
  .loading-indicator_c00468.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00468 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_c00468 { 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_c00468" -> "#page-container .classname_c00468")
 */
.pf_c00468 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00468 { /* 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_c00468.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00468 { /* 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_c00468 { /* 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_c00468 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00468 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00468 {overflow:visible;}
  }
}
.c_c00468 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00468 { /* 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_c00468:after { /* webkit #35443 */
  content: '';
}
.t_c00468:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00468 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 */
}
.__c00468 { /* 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_c00468 { /* info for Javascript */
  display:none;
}
.l_c00468 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00468 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00468 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00468: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_c00468 {
    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_c00468.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00468.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_c00468 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00468{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00468;src:url('chunks/assets/font_c605e72f209fc835e906f064.woff2')format("woff");}.ff1_c00468{font-family:ff1_c00468;line-height:1.000000;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;}
.mcd_c00468{transform:matrix(0.107375,0.004407,-0.010252,0.249790,0,0);-ms-transform:matrix(0.107375,0.004407,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.107375,0.004407,-0.010252,0.249790,0,0);}
.mc1_c00468{transform:matrix(0.109312,0.004377,-0.010002,0.249800,0,0);-ms-transform:matrix(0.109312,0.004377,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.109312,0.004377,-0.010002,0.249800,0,0);}
.mda_c00468{transform:matrix(0.111351,0.004458,-0.010002,0.249800,0,0);-ms-transform:matrix(0.111351,0.004458,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.111351,0.004458,-0.010002,0.249800,0,0);}
.md6_c00468{transform:matrix(0.114339,0.004693,-0.010252,0.249790,0,0);-ms-transform:matrix(0.114339,0.004693,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.114339,0.004693,-0.010252,0.249790,0,0);}
.mde_c00468{transform:matrix(0.124480,0.004984,-0.010002,0.249800,0,0);-ms-transform:matrix(0.124480,0.004984,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.124480,0.004984,-0.010002,0.249800,0,0);}
.m3a_c00468{transform:matrix(0.125000,0.002500,-0.004999,0.249950,0,0);-ms-transform:matrix(0.125000,0.002500,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.125000,0.002500,-0.004999,0.249950,0,0);}
.m87_c00468{transform:matrix(0.132107,0.004232,-0.008004,0.249872,0,0);-ms-transform:matrix(0.132107,0.004232,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.132107,0.004232,-0.008004,0.249872,0,0);}
.mc2_c00468{transform:matrix(0.139508,0.005586,-0.010002,0.249800,0,0);-ms-transform:matrix(0.139508,0.005586,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.139508,0.005586,-0.010002,0.249800,0,0);}
.mdb_c00468{transform:matrix(0.140223,0.005615,-0.010002,0.249800,0,0);-ms-transform:matrix(0.140223,0.005615,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.140223,0.005615,-0.010002,0.249800,0,0);}
.m9d_c00468{transform:matrix(0.140509,0.003794,-0.006748,0.249909,0,0);-ms-transform:matrix(0.140509,0.003794,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.140509,0.003794,-0.006748,0.249909,0,0);}
.mb4_c00468{transform:matrix(0.140986,0.004089,-0.007247,0.249895,0,0);-ms-transform:matrix(0.140986,0.004089,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.140986,0.004089,-0.007247,0.249895,0,0);}
.mce_c00468{transform:matrix(0.141241,0.005797,-0.010252,0.249790,0,0);-ms-transform:matrix(0.141241,0.005797,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.141241,0.005797,-0.010252,0.249790,0,0);}
.m58_c00468{transform:matrix(0.148460,0.002969,-0.004999,0.249950,0,0);-ms-transform:matrix(0.148460,0.002969,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.148460,0.002969,-0.004999,0.249950,0,0);}
.ma5_c00468{transform:matrix(0.154379,0.004168,-0.006748,0.249909,0,0);-ms-transform:matrix(0.154379,0.004168,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.154379,0.004168,-0.006748,0.249909,0,0);}
.m3b_c00468{transform:matrix(0.160353,0.003207,-0.004999,0.249950,0,0);-ms-transform:matrix(0.160353,0.003207,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.160353,0.003207,-0.004999,0.249950,0,0);}
.md0_c00468{transform:matrix(0.168368,0.006910,-0.010252,0.249790,0,0);-ms-transform:matrix(0.168368,0.006910,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.168368,0.006910,-0.010252,0.249790,0,0);}
.me5_c00468{transform:matrix(0.169414,0.006783,-0.010002,0.249800,0,0);-ms-transform:matrix(0.169414,0.006783,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.169414,0.006783,-0.010002,0.249800,0,0);}
.me3_c00468{transform:matrix(0.170089,0.006810,-0.010002,0.249800,0,0);-ms-transform:matrix(0.170089,0.006810,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.170089,0.006810,-0.010002,0.249800,0,0);}
.m88_c00468{transform:matrix(0.173891,0.005570,-0.008004,0.249872,0,0);-ms-transform:matrix(0.173891,0.005570,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.173891,0.005570,-0.008004,0.249872,0,0);}
.me4_c00468{transform:matrix(0.175130,0.007012,-0.010002,0.249800,0,0);-ms-transform:matrix(0.175130,0.007012,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.175130,0.007012,-0.010002,0.249800,0,0);}
.m23_c00468{transform:matrix(0.178579,0.003572,-0.004999,0.249950,0,0);-ms-transform:matrix(0.178579,0.003572,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.178579,0.003572,-0.004999,0.249950,0,0);}
.m26_c00468{transform:matrix(0.180244,0.003605,-0.004999,0.249950,0,0);-ms-transform:matrix(0.180244,0.003605,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.180244,0.003605,-0.004999,0.249950,0,0);}
.mf_c00468{transform:matrix(0.181975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181975,0.000000,0.000000,0.250000,0,0);}
.mdd_c00468{transform:matrix(0.181989,0.007287,-0.010002,0.249800,0,0);-ms-transform:matrix(0.181989,0.007287,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.181989,0.007287,-0.010002,0.249800,0,0);}
.m1c_c00468{transform:matrix(0.182474,0.003649,-0.004999,0.249950,0,0);-ms-transform:matrix(0.182474,0.003649,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.182474,0.003649,-0.004999,0.249950,0,0);}
.m20_c00468{transform:matrix(0.183583,0.003672,-0.004999,0.249950,0,0);-ms-transform:matrix(0.183583,0.003672,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.183583,0.003672,-0.004999,0.249950,0,0);}
.mc9_c00468{transform:matrix(0.184847,0.007401,-0.010002,0.249800,0,0);-ms-transform:matrix(0.184847,0.007401,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.184847,0.007401,-0.010002,0.249800,0,0);}
.mdf_c00468{transform:matrix(0.184982,0.007407,-0.010002,0.249800,0,0);-ms-transform:matrix(0.184982,0.007407,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.184982,0.007407,-0.010002,0.249800,0,0);}
.m9e_c00468{transform:matrix(0.186092,0.005024,-0.006748,0.249909,0,0);-ms-transform:matrix(0.186092,0.005024,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.186092,0.005024,-0.006748,0.249909,0,0);}
.me0_c00468{transform:matrix(0.186311,0.007460,-0.010002,0.249800,0,0);-ms-transform:matrix(0.186311,0.007460,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.186311,0.007460,-0.010002,0.249800,0,0);}
.me1_c00468{transform:matrix(0.186760,0.007478,-0.010002,0.249800,0,0);-ms-transform:matrix(0.186760,0.007478,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.186760,0.007478,-0.010002,0.249800,0,0);}
.m28_c00468{transform:matrix(0.187003,0.003740,-0.004999,0.249950,0,0);-ms-transform:matrix(0.187003,0.003740,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.187003,0.003740,-0.004999,0.249950,0,0);}
.md4_c00468{transform:matrix(0.187252,0.007685,-0.010252,0.249790,0,0);-ms-transform:matrix(0.187252,0.007685,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.187252,0.007685,-0.010252,0.249790,0,0);}
.md_c00468{transform:matrix(0.188680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188680,0.000000,0.000000,0.250000,0,0);}
.m24_c00468{transform:matrix(0.189117,0.003782,-0.004999,0.249950,0,0);-ms-transform:matrix(0.189117,0.003782,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.189117,0.003782,-0.004999,0.249950,0,0);}
.m59_c00468{transform:matrix(0.189862,0.003797,-0.004999,0.249950,0,0);-ms-transform:matrix(0.189862,0.003797,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.189862,0.003797,-0.004999,0.249950,0,0);}
.ma8_c00468{transform:matrix(0.192512,0.006745,-0.008753,0.249847,0,0);-ms-transform:matrix(0.192512,0.006745,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.192512,0.006745,-0.008753,0.249847,0,0);}
.m51_c00468{transform:matrix(0.192546,0.003851,-0.004999,0.249950,0,0);-ms-transform:matrix(0.192546,0.003851,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.192546,0.003851,-0.004999,0.249950,0,0);}
.mec_c00468{transform:matrix(0.194170,0.008358,-0.010751,0.249769,0,0);-ms-transform:matrix(0.194170,0.008358,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.194170,0.008358,-0.010751,0.249769,0,0);}
.md8_c00468{transform:matrix(0.194187,0.007970,-0.010252,0.249790,0,0);-ms-transform:matrix(0.194187,0.007970,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.194187,0.007970,-0.010252,0.249790,0,0);}
.m3f_c00468{transform:matrix(0.194311,0.003886,-0.004999,0.249950,0,0);-ms-transform:matrix(0.194311,0.003886,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.194311,0.003886,-0.004999,0.249950,0,0);}
.mcb_c00468{transform:matrix(0.194784,0.007799,-0.010002,0.249800,0,0);-ms-transform:matrix(0.194784,0.007799,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.194784,0.007799,-0.010002,0.249800,0,0);}
.mc4_c00468{transform:matrix(0.195333,0.007821,-0.010002,0.249800,0,0);-ms-transform:matrix(0.195333,0.007821,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.195333,0.007821,-0.010002,0.249800,0,0);}
.m40_c00468{transform:matrix(0.195461,0.003909,-0.004999,0.249950,0,0);-ms-transform:matrix(0.195461,0.003909,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.195461,0.003909,-0.004999,0.249950,0,0);}
.m29_c00468{transform:matrix(0.195851,0.003917,-0.004999,0.249950,0,0);-ms-transform:matrix(0.195851,0.003917,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.195851,0.003917,-0.004999,0.249950,0,0);}
.me6_c00468{transform:matrix(0.196942,0.007886,-0.010002,0.249800,0,0);-ms-transform:matrix(0.196942,0.007886,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.196942,0.007886,-0.010002,0.249800,0,0);}
.m55_c00468{transform:matrix(0.197291,0.003946,-0.004999,0.249950,0,0);-ms-transform:matrix(0.197291,0.003946,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.197291,0.003946,-0.004999,0.249950,0,0);}
.mc8_c00468{transform:matrix(0.197851,0.007922,-0.010002,0.249800,0,0);-ms-transform:matrix(0.197851,0.007922,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.197851,0.007922,-0.010002,0.249800,0,0);}
.me9_c00468{transform:matrix(0.198916,0.008562,-0.010751,0.249769,0,0);-ms-transform:matrix(0.198916,0.008562,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.198916,0.008562,-0.010751,0.249769,0,0);}
.mc5_c00468{transform:matrix(0.199640,0.007994,-0.010002,0.249800,0,0);-ms-transform:matrix(0.199640,0.007994,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.199640,0.007994,-0.010002,0.249800,0,0);}
.m3d_c00468{transform:matrix(0.199790,0.003996,-0.004999,0.249950,0,0);-ms-transform:matrix(0.199790,0.003996,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.199790,0.003996,-0.004999,0.249950,0,0);}
.md2_c00468{transform:matrix(0.199952,0.008206,-0.010252,0.249790,0,0);-ms-transform:matrix(0.199952,0.008206,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.199952,0.008206,-0.010252,0.249790,0,0);}
.mc3_c00468{transform:matrix(0.200060,0.008010,-0.010002,0.249800,0,0);-ms-transform:matrix(0.200060,0.008010,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.200060,0.008010,-0.010002,0.249800,0,0);}
.me2_c00468{transform:matrix(0.200215,0.008017,-0.010002,0.249800,0,0);-ms-transform:matrix(0.200215,0.008017,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.200215,0.008017,-0.010002,0.249800,0,0);}
.m77_c00468{transform:matrix(0.200251,0.004205,-0.005249,0.249945,0,0);-ms-transform:matrix(0.200251,0.004205,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.200251,0.004205,-0.005249,0.249945,0,0);}
.mc6_c00468{transform:matrix(0.200644,0.008034,-0.010002,0.249800,0,0);-ms-transform:matrix(0.200644,0.008034,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.200644,0.008034,-0.010002,0.249800,0,0);}
.m1e_c00468{transform:matrix(0.201845,0.004037,-0.004999,0.249950,0,0);-ms-transform:matrix(0.201845,0.004037,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.201845,0.004037,-0.004999,0.249950,0,0);}
.md1_c00468{transform:matrix(0.202210,0.008299,-0.010252,0.249790,0,0);-ms-transform:matrix(0.202210,0.008299,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.202210,0.008299,-0.010252,0.249790,0,0);}
.mdc_c00468{transform:matrix(0.203497,0.008148,-0.010002,0.249800,0,0);-ms-transform:matrix(0.203497,0.008148,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.203497,0.008148,-0.010002,0.249800,0,0);}
.mcf_c00468{transform:matrix(0.204513,0.008393,-0.010252,0.249790,0,0);-ms-transform:matrix(0.204513,0.008393,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.204513,0.008393,-0.010252,0.249790,0,0);}
.md3_c00468{transform:matrix(0.205362,0.008428,-0.010252,0.249790,0,0);-ms-transform:matrix(0.205362,0.008428,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.205362,0.008428,-0.010252,0.249790,0,0);}
.m74_c00468{transform:matrix(0.205590,0.004317,-0.005249,0.249945,0,0);-ms-transform:matrix(0.205590,0.004317,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.205590,0.004317,-0.005249,0.249945,0,0);}
.m27_c00468{transform:matrix(0.205894,0.004118,-0.004999,0.249950,0,0);-ms-transform:matrix(0.205894,0.004118,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.205894,0.004118,-0.004999,0.249950,0,0);}
.md5_c00468{transform:matrix(0.206686,0.008483,-0.010252,0.249790,0,0);-ms-transform:matrix(0.206686,0.008483,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.206686,0.008483,-0.010252,0.249790,0,0);}
.m8b_c00468{transform:matrix(0.206724,0.006622,-0.008004,0.249872,0,0);-ms-transform:matrix(0.206724,0.006622,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.206724,0.006622,-0.008004,0.249872,0,0);}
.m2a_c00468{transform:matrix(0.207239,0.004145,-0.004999,0.249950,0,0);-ms-transform:matrix(0.207239,0.004145,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.207239,0.004145,-0.004999,0.249950,0,0);}
.m75_c00468{transform:matrix(0.207349,0.004354,-0.005249,0.249945,0,0);-ms-transform:matrix(0.207349,0.004354,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.207349,0.004354,-0.005249,0.249945,0,0);}
.m47_c00468{transform:matrix(0.207973,0.004159,-0.004999,0.249950,0,0);-ms-transform:matrix(0.207973,0.004159,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.207973,0.004159,-0.004999,0.249950,0,0);}
.m95_c00468{transform:matrix(0.208608,0.006682,-0.008004,0.249872,0,0);-ms-transform:matrix(0.208608,0.006682,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.208608,0.006682,-0.008004,0.249872,0,0);}
.m4c_c00468{transform:matrix(0.209258,0.004185,-0.004999,0.249950,0,0);-ms-transform:matrix(0.209258,0.004185,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.209258,0.004185,-0.004999,0.249950,0,0);}
.mc7_c00468{transform:matrix(0.210212,0.008417,-0.010002,0.249800,0,0);-ms-transform:matrix(0.210212,0.008417,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.210212,0.008417,-0.010002,0.249800,0,0);}
.ma7_c00468{transform:matrix(0.210276,0.007367,-0.008753,0.249847,0,0);-ms-transform:matrix(0.210276,0.007367,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.210276,0.007367,-0.008753,0.249847,0,0);}
.m1b_c00468{transform:matrix(0.210598,0.004212,-0.004999,0.249950,0,0);-ms-transform:matrix(0.210598,0.004212,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.210598,0.004212,-0.004999,0.249950,0,0);}
.m49_c00468{transform:matrix(0.211173,0.004223,-0.004999,0.249950,0,0);-ms-transform:matrix(0.211173,0.004223,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.211173,0.004223,-0.004999,0.249950,0,0);}
.m42_c00468{transform:matrix(0.211278,0.004226,-0.004999,0.249950,0,0);-ms-transform:matrix(0.211278,0.004226,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.211278,0.004226,-0.004999,0.249950,0,0);}
.m19_c00468{transform:matrix(0.211393,0.004228,-0.004999,0.249950,0,0);-ms-transform:matrix(0.211393,0.004228,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.211393,0.004228,-0.004999,0.249950,0,0);}
.maa_c00468{transform:matrix(0.212020,0.007428,-0.008753,0.249847,0,0);-ms-transform:matrix(0.212020,0.007428,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.212020,0.007428,-0.008753,0.249847,0,0);}
.m1a_c00468{transform:matrix(0.212423,0.004248,-0.004999,0.249950,0,0);-ms-transform:matrix(0.212423,0.004248,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.212423,0.004248,-0.004999,0.249950,0,0);}
.m73_c00468{transform:matrix(0.213418,0.004482,-0.005249,0.249945,0,0);-ms-transform:matrix(0.213418,0.004482,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.213418,0.004482,-0.005249,0.249945,0,0);}
.mac_c00468{transform:matrix(0.213674,0.007486,-0.008753,0.249847,0,0);-ms-transform:matrix(0.213674,0.007486,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.213674,0.007486,-0.008753,0.249847,0,0);}
.mb_c00468{transform:matrix(0.213785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213785,0.000000,0.000000,0.250000,0,0);}
.m3e_c00468{transform:matrix(0.214222,0.004284,-0.004999,0.249950,0,0);-ms-transform:matrix(0.214222,0.004284,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.214222,0.004284,-0.004999,0.249950,0,0);}
.mb1_c00468{transform:matrix(0.215090,0.006238,-0.007247,0.249895,0,0);-ms-transform:matrix(0.215090,0.006238,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.215090,0.006238,-0.007247,0.249895,0,0);}
.med_c00468{transform:matrix(0.216135,0.009303,-0.010751,0.249769,0,0);-ms-transform:matrix(0.216135,0.009303,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.216135,0.009303,-0.010751,0.249769,0,0);}
.m54_c00468{transform:matrix(0.216267,0.004325,-0.004999,0.249950,0,0);-ms-transform:matrix(0.216267,0.004325,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.216267,0.004325,-0.004999,0.249950,0,0);}
.m99_c00468{transform:matrix(0.216614,0.006939,-0.008004,0.249872,0,0);-ms-transform:matrix(0.216614,0.006939,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.216614,0.006939,-0.008004,0.249872,0,0);}
.m22_c00468{transform:matrix(0.217072,0.004341,-0.004999,0.249950,0,0);-ms-transform:matrix(0.217072,0.004341,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.217072,0.004341,-0.004999,0.249950,0,0);}
.me_c00468{transform:matrix(0.217145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217145,0.000000,0.000000,0.250000,0,0);}
.m56_c00468{transform:matrix(0.217157,0.004343,-0.004999,0.249950,0,0);-ms-transform:matrix(0.217157,0.004343,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.217157,0.004343,-0.004999,0.249950,0,0);}
.m1f_c00468{transform:matrix(0.217581,0.004352,-0.004999,0.249950,0,0);-ms-transform:matrix(0.217581,0.004352,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.217581,0.004352,-0.004999,0.249950,0,0);}
.m8e_c00468{transform:matrix(0.218683,0.007005,-0.008004,0.249872,0,0);-ms-transform:matrix(0.218683,0.007005,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.218683,0.007005,-0.008004,0.249872,0,0);}
.m96_c00468{transform:matrix(0.218828,0.007009,-0.008004,0.249872,0,0);-ms-transform:matrix(0.218828,0.007009,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.218828,0.007009,-0.008004,0.249872,0,0);}
.m93_c00468{transform:matrix(0.219048,0.007017,-0.008004,0.249872,0,0);-ms-transform:matrix(0.219048,0.007017,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.219048,0.007017,-0.008004,0.249872,0,0);}
.mad_c00468{transform:matrix(0.219196,0.007680,-0.008753,0.249847,0,0);-ms-transform:matrix(0.219196,0.007680,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.219196,0.007680,-0.008753,0.249847,0,0);}
.m3c_c00468{transform:matrix(0.219336,0.004387,-0.004999,0.249950,0,0);-ms-transform:matrix(0.219336,0.004387,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.219336,0.004387,-0.004999,0.249950,0,0);}
.m21_c00468{transform:matrix(0.220241,0.004405,-0.004999,0.249950,0,0);-ms-transform:matrix(0.220241,0.004405,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.220241,0.004405,-0.004999,0.249950,0,0);}
.m37_c00468{transform:matrix(0.221556,0.004431,-0.004999,0.249950,0,0);-ms-transform:matrix(0.221556,0.004431,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.221556,0.004431,-0.004999,0.249950,0,0);}
.m25_c00468{transform:matrix(0.221806,0.004436,-0.004999,0.249950,0,0);-ms-transform:matrix(0.221806,0.004436,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.221806,0.004436,-0.004999,0.249950,0,0);}
.ma1_c00468{transform:matrix(0.222099,0.005997,-0.006748,0.249909,0,0);-ms-transform:matrix(0.222099,0.005997,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.222099,0.005997,-0.006748,0.249909,0,0);}
.m1d_c00468{transform:matrix(0.222745,0.004455,-0.004999,0.249950,0,0);-ms-transform:matrix(0.222745,0.004455,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.222745,0.004455,-0.004999,0.249950,0,0);}
.mee_c00468{transform:matrix(0.223014,0.009599,-0.010751,0.249769,0,0);-ms-transform:matrix(0.223014,0.009599,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.223014,0.009599,-0.010751,0.249769,0,0);}
.m52_c00468{transform:matrix(0.223115,0.004462,-0.004999,0.249950,0,0);-ms-transform:matrix(0.223115,0.004462,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.223115,0.004462,-0.004999,0.249950,0,0);}
.m60_c00468{transform:matrix(0.223225,0.004465,-0.004999,0.249950,0,0);-ms-transform:matrix(0.223225,0.004465,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.223225,0.004465,-0.004999,0.249950,0,0);}
.me8_c00468{transform:matrix(0.223763,0.009631,-0.010751,0.249769,0,0);-ms-transform:matrix(0.223763,0.009631,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.223763,0.009631,-0.010751,0.249769,0,0);}
.m44_c00468{transform:matrix(0.224295,0.004486,-0.004999,0.249950,0,0);-ms-transform:matrix(0.224295,0.004486,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.224295,0.004486,-0.004999,0.249950,0,0);}
.m71_c00468{transform:matrix(0.224396,0.004712,-0.005249,0.249945,0,0);-ms-transform:matrix(0.224396,0.004712,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.224396,0.004712,-0.005249,0.249945,0,0);}
.m8c_c00468{transform:matrix(0.224540,0.007192,-0.008004,0.249872,0,0);-ms-transform:matrix(0.224540,0.007192,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.224540,0.007192,-0.008004,0.249872,0,0);}
.m82_c00468{transform:matrix(0.224586,0.006513,-0.007247,0.249895,0,0);-ms-transform:matrix(0.224586,0.006513,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.224586,0.006513,-0.007247,0.249895,0,0);}
.m4d_c00468{transform:matrix(0.224610,0.004492,-0.004999,0.249950,0,0);-ms-transform:matrix(0.224610,0.004492,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.224610,0.004492,-0.004999,0.249950,0,0);}
.m85_c00468{transform:matrix(0.225250,0.006532,-0.007247,0.249895,0,0);-ms-transform:matrix(0.225250,0.006532,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.225250,0.006532,-0.007247,0.249895,0,0);}
.m4a_c00468{transform:matrix(0.225270,0.004505,-0.004999,0.249950,0,0);-ms-transform:matrix(0.225270,0.004505,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.225270,0.004505,-0.004999,0.249950,0,0);}
.m17_c00468{transform:matrix(0.225300,0.004506,-0.004999,0.249950,0,0);-ms-transform:matrix(0.225300,0.004506,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.225300,0.004506,-0.004999,0.249950,0,0);}
.mb6_c00468{transform:matrix(0.225845,0.006550,-0.007247,0.249895,0,0);-ms-transform:matrix(0.225845,0.006550,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.225845,0.006550,-0.007247,0.249895,0,0);}
.m57_c00468{transform:matrix(0.225965,0.004519,-0.004999,0.249950,0,0);-ms-transform:matrix(0.225965,0.004519,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.225965,0.004519,-0.004999,0.249950,0,0);}
.me7_c00468{transform:matrix(0.227205,0.009780,-0.010751,0.249769,0,0);-ms-transform:matrix(0.227205,0.009780,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.227205,0.009780,-0.010751,0.249769,0,0);}
.m53_c00468{transform:matrix(0.227450,0.004549,-0.004999,0.249950,0,0);-ms-transform:matrix(0.227450,0.004549,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.227450,0.004549,-0.004999,0.249950,0,0);}
.m4f_c00468{transform:matrix(0.228259,0.004565,-0.004999,0.249950,0,0);-ms-transform:matrix(0.228259,0.004565,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.228259,0.004565,-0.004999,0.249950,0,0);}
.m69_c00468{transform:matrix(0.228744,0.005719,-0.006248,0.249922,0,0);-ms-transform:matrix(0.228744,0.005719,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.228744,0.005719,-0.006248,0.249922,0,0);}
.m62_c00468{transform:matrix(0.228769,0.004575,-0.004999,0.249950,0,0);-ms-transform:matrix(0.228769,0.004575,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.228769,0.004575,-0.004999,0.249950,0,0);}
.mc_c00468{transform:matrix(0.228965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228965,0.000000,0.000000,0.250000,0,0);}
.m6c_c00468{transform:matrix(0.230143,0.005754,-0.006248,0.249922,0,0);-ms-transform:matrix(0.230143,0.005754,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.230143,0.005754,-0.006248,0.249922,0,0);}
.m76_c00468{transform:matrix(0.230724,0.004845,-0.005249,0.249945,0,0);-ms-transform:matrix(0.230724,0.004845,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.230724,0.004845,-0.005249,0.249945,0,0);}
.m45_c00468{transform:matrix(0.230829,0.004617,-0.004999,0.249950,0,0);-ms-transform:matrix(0.230829,0.004617,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.230829,0.004617,-0.004999,0.249950,0,0);}
.mef_c00468{transform:matrix(0.231406,0.009960,-0.010751,0.249769,0,0);-ms-transform:matrix(0.231406,0.009960,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.231406,0.009960,-0.010751,0.249769,0,0);}
.m41_c00468{transform:matrix(0.231774,0.004635,-0.004999,0.249950,0,0);-ms-transform:matrix(0.231774,0.004635,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.231774,0.004635,-0.004999,0.249950,0,0);}
.mae_c00468{transform:matrix(0.231903,0.008125,-0.008753,0.249847,0,0);-ms-transform:matrix(0.231903,0.008125,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.231903,0.008125,-0.008753,0.249847,0,0);}
.mcc_c00468{transform:matrix(0.232689,0.009317,-0.010002,0.249800,0,0);-ms-transform:matrix(0.232689,0.009317,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.232689,0.009317,-0.010002,0.249800,0,0);}
.md9_c00468{transform:matrix(0.233943,0.009601,-0.010252,0.249790,0,0);-ms-transform:matrix(0.233943,0.009601,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.233943,0.009601,-0.010252,0.249790,0,0);}
.m50_c00468{transform:matrix(0.236328,0.004727,-0.004999,0.249950,0,0);-ms-transform:matrix(0.236328,0.004727,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.236328,0.004727,-0.004999,0.249950,0,0);}
.m43_c00468{transform:matrix(0.237183,0.004744,-0.004999,0.249950,0,0);-ms-transform:matrix(0.237183,0.004744,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.237183,0.004744,-0.004999,0.249950,0,0);}
.m33_c00468{transform:matrix(0.237288,0.004746,-0.004999,0.249950,0,0);-ms-transform:matrix(0.237288,0.004746,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.237288,0.004746,-0.004999,0.249950,0,0);}
.mab_c00468{transform:matrix(0.237749,0.008330,-0.008753,0.249847,0,0);-ms-transform:matrix(0.237749,0.008330,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.237749,0.008330,-0.008753,0.249847,0,0);}
.m34_c00468{transform:matrix(0.238412,0.004768,-0.004999,0.249950,0,0);-ms-transform:matrix(0.238412,0.004768,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.238412,0.004768,-0.004999,0.249950,0,0);}
.m5d_c00468{transform:matrix(0.238487,0.004770,-0.004999,0.249950,0,0);-ms-transform:matrix(0.238487,0.004770,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.238487,0.004770,-0.004999,0.249950,0,0);}
.m7c_c00468{transform:matrix(0.239194,0.006937,-0.007247,0.249895,0,0);-ms-transform:matrix(0.239194,0.006937,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.239194,0.006937,-0.007247,0.249895,0,0);}
.mea_c00468{transform:matrix(0.239593,0.010313,-0.010751,0.249769,0,0);-ms-transform:matrix(0.239593,0.010313,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.239593,0.010313,-0.010751,0.249769,0,0);}
.ma0_c00468{transform:matrix(0.239978,0.006479,-0.006748,0.249909,0,0);-ms-transform:matrix(0.239978,0.006479,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.239978,0.006479,-0.006748,0.249909,0,0);}
.m78_c00468{transform:matrix(0.240487,0.005050,-0.005249,0.249945,0,0);-ms-transform:matrix(0.240487,0.005050,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.240487,0.005050,-0.005249,0.249945,0,0);}
.md7_c00468{transform:matrix(0.241187,0.009899,-0.010252,0.249790,0,0);-ms-transform:matrix(0.241187,0.009899,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.241187,0.009899,-0.010252,0.249790,0,0);}
.m2d_c00468{transform:matrix(0.241217,0.004824,-0.004999,0.249950,0,0);-ms-transform:matrix(0.241217,0.004824,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.241217,0.004824,-0.004999,0.249950,0,0);}
.m72_c00468{transform:matrix(0.241612,0.005074,-0.005249,0.249945,0,0);-ms-transform:matrix(0.241612,0.005074,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.241612,0.005074,-0.005249,0.249945,0,0);}
.meb_c00468{transform:matrix(0.242186,0.010424,-0.010751,0.249769,0,0);-ms-transform:matrix(0.242186,0.010424,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.242186,0.010424,-0.010751,0.249769,0,0);}
.m70_c00468{transform:matrix(0.242891,0.005101,-0.005249,0.249945,0,0);-ms-transform:matrix(0.242891,0.005101,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.242891,0.005101,-0.005249,0.249945,0,0);}
.mca_c00468{transform:matrix(0.243295,0.009742,-0.010002,0.249800,0,0);-ms-transform:matrix(0.243295,0.009742,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.243295,0.009742,-0.010002,0.249800,0,0);}
.m36_c00468{transform:matrix(0.243326,0.004867,-0.004999,0.249950,0,0);-ms-transform:matrix(0.243326,0.004867,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.243326,0.004867,-0.004999,0.249950,0,0);}
.maf_c00468{transform:matrix(0.243862,0.007072,-0.007247,0.249895,0,0);-ms-transform:matrix(0.243862,0.007072,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.243862,0.007072,-0.007247,0.249895,0,0);}
.m2b_c00468{transform:matrix(0.243916,0.004878,-0.004999,0.249950,0,0);-ms-transform:matrix(0.243916,0.004878,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.243916,0.004878,-0.004999,0.249950,0,0);}
.m32_c00468{transform:matrix(0.245106,0.004902,-0.004999,0.249950,0,0);-ms-transform:matrix(0.245106,0.004902,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.245106,0.004902,-0.004999,0.249950,0,0);}
.m46_c00468{transform:matrix(0.245316,0.004906,-0.004999,0.249950,0,0);-ms-transform:matrix(0.245316,0.004906,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.245316,0.004906,-0.004999,0.249950,0,0);}
.mb0_c00468{transform:matrix(0.245367,0.007116,-0.007247,0.249895,0,0);-ms-transform:matrix(0.245367,0.007116,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.245367,0.007116,-0.007247,0.249895,0,0);}
.mbc_c00468{transform:matrix(0.245709,0.007871,-0.008004,0.249872,0,0);-ms-transform:matrix(0.245709,0.007871,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.245709,0.007871,-0.008004,0.249872,0,0);}
.m80_c00468{transform:matrix(0.246102,0.007137,-0.007247,0.249895,0,0);-ms-transform:matrix(0.246102,0.007137,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.246102,0.007137,-0.007247,0.249895,0,0);}
.mb2_c00468{transform:matrix(0.246142,0.007138,-0.007247,0.249895,0,0);-ms-transform:matrix(0.246142,0.007138,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.246142,0.007138,-0.007247,0.249895,0,0);}
.m83_c00468{transform:matrix(0.246626,0.007152,-0.007247,0.249895,0,0);-ms-transform:matrix(0.246626,0.007152,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.246626,0.007152,-0.007247,0.249895,0,0);}
.mb7_c00468{transform:matrix(0.247196,0.007169,-0.007247,0.249895,0,0);-ms-transform:matrix(0.247196,0.007169,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.247196,0.007169,-0.007247,0.249895,0,0);}
.m2e_c00468{transform:matrix(0.247211,0.004944,-0.004999,0.249950,0,0);-ms-transform:matrix(0.247211,0.004944,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.247211,0.004944,-0.004999,0.249950,0,0);}
.mb3_c00468{transform:matrix(0.247711,0.007184,-0.007247,0.249895,0,0);-ms-transform:matrix(0.247711,0.007184,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.247711,0.007184,-0.007247,0.249895,0,0);}
.m2c_c00468{transform:matrix(0.247890,0.004958,-0.004999,0.249950,0,0);-ms-transform:matrix(0.247890,0.004958,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.247890,0.004958,-0.004999,0.249950,0,0);}
.m6a_c00468{transform:matrix(0.248367,0.006209,-0.006248,0.249922,0,0);-ms-transform:matrix(0.248367,0.006209,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.248367,0.006209,-0.006248,0.249922,0,0);}
.m5f_c00468{transform:matrix(0.248610,0.004972,-0.004999,0.249950,0,0);-ms-transform:matrix(0.248610,0.004972,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.248610,0.004972,-0.004999,0.249950,0,0);}
.m67_c00468{transform:matrix(0.248897,0.006222,-0.006248,0.249922,0,0);-ms-transform:matrix(0.248897,0.006222,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.248897,0.006222,-0.006248,0.249922,0,0);}
.ma3_c00468{transform:matrix(0.249629,0.006740,-0.006748,0.249909,0,0);-ms-transform:matrix(0.249629,0.006740,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.249629,0.006740,-0.006748,0.249909,0,0);}
.m35_c00468{transform:matrix(0.249715,0.004994,-0.004999,0.249950,0,0);-ms-transform:matrix(0.249715,0.004994,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.249715,0.004994,-0.004999,0.249950,0,0);}
.m9a_c00468{transform:matrix(0.249982,0.008007,-0.008004,0.249872,0,0);-ms-transform:matrix(0.249982,0.008007,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.249982,0.008007,-0.008004,0.249872,0,0);}
.m98_c00468{transform:matrix(0.250472,0.008023,-0.008004,0.249872,0,0);-ms-transform:matrix(0.250472,0.008023,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.250472,0.008023,-0.008004,0.249872,0,0);}
.m31_c00468{transform:matrix(0.250870,0.005017,-0.004999,0.249950,0,0);-ms-transform:matrix(0.250870,0.005017,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.250870,0.005017,-0.004999,0.249950,0,0);}
.m4e_c00468{transform:matrix(0.250925,0.005018,-0.004999,0.249950,0,0);-ms-transform:matrix(0.250925,0.005018,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.250925,0.005018,-0.004999,0.249950,0,0);}
.m4b_c00468{transform:matrix(0.251005,0.005020,-0.004999,0.249950,0,0);-ms-transform:matrix(0.251005,0.005020,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.251005,0.005020,-0.004999,0.249950,0,0);}
.m2_c00468{transform:matrix(0.251190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251190,0.000000,0.000000,0.250000,0,0);}
.mb5_c00468{transform:matrix(0.252024,0.007309,-0.007247,0.249895,0,0);-ms-transform:matrix(0.252024,0.007309,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.252024,0.007309,-0.007247,0.249895,0,0);}
.m64_c00468{transform:matrix(0.252036,0.006301,-0.006248,0.249922,0,0);-ms-transform:matrix(0.252036,0.006301,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.252036,0.006301,-0.006248,0.249922,0,0);}
.m15_c00468{transform:matrix(0.252065,0.005041,-0.004999,0.249950,0,0);-ms-transform:matrix(0.252065,0.005041,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.252065,0.005041,-0.004999,0.249950,0,0);}
.m94_c00468{transform:matrix(0.252540,0.008089,-0.008004,0.249872,0,0);-ms-transform:matrix(0.252540,0.008089,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.252540,0.008089,-0.008004,0.249872,0,0);}
.m38_c00468{transform:matrix(0.252834,0.005057,-0.004999,0.249950,0,0);-ms-transform:matrix(0.252834,0.005057,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.252834,0.005057,-0.004999,0.249950,0,0);}
.m8a_c00468{transform:matrix(0.253945,0.008134,-0.008004,0.249872,0,0);-ms-transform:matrix(0.253945,0.008134,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.253945,0.008134,-0.008004,0.249872,0,0);}
.m89_c00468{transform:matrix(0.254045,0.008138,-0.008004,0.249872,0,0);-ms-transform:matrix(0.254045,0.008138,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.254045,0.008138,-0.008004,0.249872,0,0);}
.m5a_c00468{transform:matrix(0.254149,0.005083,-0.004999,0.249950,0,0);-ms-transform:matrix(0.254149,0.005083,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.254149,0.005083,-0.004999,0.249950,0,0);}
.mba_c00468{transform:matrix(0.254175,0.008142,-0.008004,0.249872,0,0);-ms-transform:matrix(0.254175,0.008142,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.254175,0.008142,-0.008004,0.249872,0,0);}
.m30_c00468{transform:matrix(0.254389,0.005088,-0.004999,0.249950,0,0);-ms-transform:matrix(0.254389,0.005088,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.254389,0.005088,-0.004999,0.249950,0,0);}
.m8d_c00468{transform:matrix(0.254629,0.008156,-0.008004,0.249872,0,0);-ms-transform:matrix(0.254629,0.008156,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.254629,0.008156,-0.008004,0.249872,0,0);}
.m97_c00468{transform:matrix(0.256309,0.008210,-0.008004,0.249872,0,0);-ms-transform:matrix(0.256309,0.008210,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.256309,0.008210,-0.008004,0.249872,0,0);}
.m7a_c00468{transform:matrix(0.256587,0.007441,-0.007247,0.249895,0,0);-ms-transform:matrix(0.256587,0.007441,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.256587,0.007441,-0.007247,0.249895,0,0);}
.m39_c00468{transform:matrix(0.256794,0.005136,-0.004999,0.249950,0,0);-ms-transform:matrix(0.256794,0.005136,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.256794,0.005136,-0.004999,0.249950,0,0);}
.m2f_c00468{transform:matrix(0.257134,0.005143,-0.004999,0.249950,0,0);-ms-transform:matrix(0.257134,0.005143,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.257134,0.005143,-0.004999,0.249950,0,0);}
.m48_c00468{transform:matrix(0.257678,0.005154,-0.004999,0.249950,0,0);-ms-transform:matrix(0.257678,0.005154,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.257678,0.005154,-0.004999,0.249950,0,0);}
.m14_c00468{transform:matrix(0.258323,0.005166,-0.004999,0.249950,0,0);-ms-transform:matrix(0.258323,0.005166,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.258323,0.005166,-0.004999,0.249950,0,0);}
.m8f_c00468{transform:matrix(0.258707,0.008287,-0.008004,0.249872,0,0);-ms-transform:matrix(0.258707,0.008287,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.258707,0.008287,-0.008004,0.249872,0,0);}
.m5b_c00468{transform:matrix(0.258838,0.005177,-0.004999,0.249950,0,0);-ms-transform:matrix(0.258838,0.005177,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.258838,0.005177,-0.004999,0.249950,0,0);}
.m5c_c00468{transform:matrix(0.259463,0.005189,-0.004999,0.249950,0,0);-ms-transform:matrix(0.259463,0.005189,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.259463,0.005189,-0.004999,0.249950,0,0);}
.m10_c00468{transform:matrix(0.262712,0.005254,-0.004999,0.249950,0,0);-ms-transform:matrix(0.262712,0.005254,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.262712,0.005254,-0.004999,0.249950,0,0);}
.m7f_c00468{transform:matrix(0.264254,0.007663,-0.007247,0.249895,0,0);-ms-transform:matrix(0.264254,0.007663,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.264254,0.007663,-0.007247,0.249895,0,0);}
.m9_c00468{transform:matrix(0.264307,0.005550,-0.005249,0.249945,0,0);-ms-transform:matrix(0.264307,0.005550,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.264307,0.005550,-0.005249,0.249945,0,0);}
.m11_c00468{transform:matrix(0.264357,0.005287,-0.004999,0.249950,0,0);-ms-transform:matrix(0.264357,0.005287,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.264357,0.005287,-0.004999,0.249950,0,0);}
.m3_c00468{transform:matrix(0.264762,0.005560,-0.005249,0.249945,0,0);-ms-transform:matrix(0.264762,0.005560,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.264762,0.005560,-0.005249,0.249945,0,0);}
.mbd_c00468{transform:matrix(0.265364,0.008500,-0.008004,0.249872,0,0);-ms-transform:matrix(0.265364,0.008500,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.265364,0.008500,-0.008004,0.249872,0,0);}
.ma4_c00468{transform:matrix(0.265703,0.007174,-0.006748,0.249909,0,0);-ms-transform:matrix(0.265703,0.007174,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.265703,0.007174,-0.006748,0.249909,0,0);}
.m65_c00468{transform:matrix(0.266397,0.006660,-0.006248,0.249922,0,0);-ms-transform:matrix(0.266397,0.006660,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.266397,0.006660,-0.006248,0.249922,0,0);}
.ma9_c00468{transform:matrix(0.266427,0.009334,-0.008753,0.249847,0,0);-ms-transform:matrix(0.266427,0.009334,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.266427,0.009334,-0.008753,0.249847,0,0);}
.m18_c00468{transform:matrix(0.266572,0.005331,-0.004999,0.249950,0,0);-ms-transform:matrix(0.266572,0.005331,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.266572,0.005331,-0.004999,0.249950,0,0);}
.m16_c00468{transform:matrix(0.267936,0.005359,-0.004999,0.249950,0,0);-ms-transform:matrix(0.267936,0.005359,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.267936,0.005359,-0.004999,0.249950,0,0);}
.m1_c00468{transform:matrix(0.268010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268010,0.000000,0.000000,0.250000,0,0);}
.m84_c00468{transform:matrix(0.268592,0.007789,-0.007247,0.249895,0,0);-ms-transform:matrix(0.268592,0.007789,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.268592,0.007789,-0.007247,0.249895,0,0);}
.ma6_c00468{transform:matrix(0.268702,0.007255,-0.006748,0.249909,0,0);-ms-transform:matrix(0.268702,0.007255,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.268702,0.007255,-0.006748,0.249909,0,0);}
.m7d_c00468{transform:matrix(0.268952,0.007800,-0.007247,0.249895,0,0);-ms-transform:matrix(0.268952,0.007800,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.268952,0.007800,-0.007247,0.249895,0,0);}
.m6b_c00468{transform:matrix(0.269186,0.006730,-0.006248,0.249922,0,0);-ms-transform:matrix(0.269186,0.006730,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.269186,0.006730,-0.006248,0.249922,0,0);}
.m81_c00468{transform:matrix(0.269587,0.007818,-0.007247,0.249895,0,0);-ms-transform:matrix(0.269587,0.007818,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.269587,0.007818,-0.007247,0.249895,0,0);}
.m5e_c00468{transform:matrix(0.270341,0.005407,-0.004999,0.249950,0,0);-ms-transform:matrix(0.270341,0.005407,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.270341,0.005407,-0.004999,0.249950,0,0);}
.m61_c00468{transform:matrix(0.271306,0.005426,-0.004999,0.249950,0,0);-ms-transform:matrix(0.271306,0.005426,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.271306,0.005426,-0.004999,0.249950,0,0);}
.m68_c00468{transform:matrix(0.271745,0.006794,-0.006248,0.249922,0,0);-ms-transform:matrix(0.271745,0.006794,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.271745,0.006794,-0.006248,0.249922,0,0);}
.m63_c00468{transform:matrix(0.272711,0.009008,-0.008254,0.249864,0,0);-ms-transform:matrix(0.272711,0.009008,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.272711,0.009008,-0.008254,0.249864,0,0);}
.m6_c00468{transform:matrix(0.273420,0.005742,-0.005249,0.249945,0,0);-ms-transform:matrix(0.273420,0.005742,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.273420,0.005742,-0.005249,0.249945,0,0);}
.m12_c00468{transform:matrix(0.273555,0.005471,-0.004999,0.249950,0,0);-ms-transform:matrix(0.273555,0.005471,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.273555,0.005471,-0.004999,0.249950,0,0);}
.m66_c00468{transform:matrix(0.273919,0.006848,-0.006248,0.249922,0,0);-ms-transform:matrix(0.273919,0.006848,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.273919,0.006848,-0.006248,0.249922,0,0);}
.m9f_c00468{transform:matrix(0.274725,0.007418,-0.006748,0.249909,0,0);-ms-transform:matrix(0.274725,0.007418,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.274725,0.007418,-0.006748,0.249909,0,0);}
.m7e_c00468{transform:matrix(0.274939,0.007973,-0.007247,0.249895,0,0);-ms-transform:matrix(0.274939,0.007973,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.274939,0.007973,-0.007247,0.249895,0,0);}
.m86_c00468{transform:matrix(0.275849,0.008000,-0.007247,0.249895,0,0);-ms-transform:matrix(0.275849,0.008000,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.275849,0.008000,-0.007247,0.249895,0,0);}
.m7b_c00468{transform:matrix(0.276394,0.008015,-0.007247,0.249895,0,0);-ms-transform:matrix(0.276394,0.008015,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.276394,0.008015,-0.007247,0.249895,0,0);}
.m13_c00468{transform:matrix(0.278379,0.005568,-0.004999,0.249950,0,0);-ms-transform:matrix(0.278379,0.005568,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.278379,0.005568,-0.004999,0.249950,0,0);}
.mbe_c00468{transform:matrix(0.278587,0.008924,-0.008004,0.249872,0,0);-ms-transform:matrix(0.278587,0.008924,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.278587,0.008924,-0.008004,0.249872,0,0);}
.ma2_c00468{transform:matrix(0.280473,0.007573,-0.006748,0.249909,0,0);-ms-transform:matrix(0.280473,0.007573,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.280473,0.007573,-0.006748,0.249909,0,0);}
.ma_c00468{transform:matrix(0.281773,0.005917,-0.005249,0.249945,0,0);-ms-transform:matrix(0.281773,0.005917,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.281773,0.005917,-0.005249,0.249945,0,0);}
.m79_c00468{transform:matrix(0.284241,0.008243,-0.007247,0.249895,0,0);-ms-transform:matrix(0.284241,0.008243,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.284241,0.008243,-0.007247,0.249895,0,0);}
.m4_c00468{transform:matrix(0.286072,0.006008,-0.005249,0.249945,0,0);-ms-transform:matrix(0.286072,0.006008,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.286072,0.006008,-0.005249,0.249945,0,0);}
.mb9_c00468{transform:matrix(0.292125,0.009357,-0.008004,0.249872,0,0);-ms-transform:matrix(0.292125,0.009357,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.292125,0.009357,-0.008004,0.249872,0,0);}
.m6f_c00468{transform:matrix(0.294039,0.010596,-0.009003,0.249838,0,0);-ms-transform:matrix(0.294039,0.010596,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.294039,0.010596,-0.009003,0.249838,0,0);}
.m5_c00468{transform:matrix(0.297319,0.006244,-0.005249,0.249945,0,0);-ms-transform:matrix(0.297319,0.006244,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.297319,0.006244,-0.005249,0.249945,0,0);}
.m8_c00468{transform:matrix(0.297989,0.006258,-0.005249,0.249945,0,0);-ms-transform:matrix(0.297989,0.006258,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.297989,0.006258,-0.005249,0.249945,0,0);}
.m7_c00468{transform:matrix(0.299244,0.006284,-0.005249,0.249945,0,0);-ms-transform:matrix(0.299244,0.006284,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.299244,0.006284,-0.005249,0.249945,0,0);}
.mbb_c00468{transform:matrix(0.302490,0.009689,-0.008004,0.249872,0,0);-ms-transform:matrix(0.302490,0.009689,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.302490,0.009689,-0.008004,0.249872,0,0);}
.m6d_c00468{transform:matrix(0.314377,0.007859,-0.006248,0.249922,0,0);-ms-transform:matrix(0.314377,0.007859,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.314377,0.007859,-0.006248,0.249922,0,0);}
.mb8_c00468{transform:matrix(0.384273,0.012309,-0.008004,0.249872,0,0);-ms-transform:matrix(0.384273,0.012309,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.384273,0.012309,-0.008004,0.249872,0,0);}
.m91_c00468{transform:matrix(0.485011,0.015536,-0.008004,0.249872,0,0);-ms-transform:matrix(0.485011,0.015536,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.485011,0.015536,-0.008004,0.249872,0,0);}
.m92_c00468{transform:matrix(0.563086,0.018037,-0.008004,0.249872,0,0);-ms-transform:matrix(0.563086,0.018037,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.563086,0.018037,-0.008004,0.249872,0,0);}
.m0_c00468{transform:matrix(0.699970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699970,0.000000,0.000000,0.250000,0,0);}
.m9c_c00468{transform:matrix(0.834312,0.026725,-0.008004,0.249872,0,0);-ms-transform:matrix(0.834312,0.026725,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.834312,0.026725,-0.008004,0.249872,0,0);}
.mc0_c00468{transform:matrix(2.707142,0.086715,-0.008004,0.249872,0,0);-ms-transform:matrix(2.707142,0.086715,-0.008004,0.249872,0,0);-webkit-transform:matrix(2.707142,0.086715,-0.008004,0.249872,0,0);}
.mbf_c00468{transform:matrix(5.645794,0.180846,-0.008004,0.249872,0,0);-ms-transform:matrix(5.645794,0.180846,-0.008004,0.249872,0,0);-webkit-transform:matrix(5.645794,0.180846,-0.008004,0.249872,0,0);}
.m6e_c00468{transform:matrix(5.730095,0.143252,-0.006248,0.249922,0,0);-ms-transform:matrix(5.730095,0.143252,-0.006248,0.249922,0,0);-webkit-transform:matrix(5.730095,0.143252,-0.006248,0.249922,0,0);}
.m90_c00468{transform:matrix(11.098872,0.355519,-0.008004,0.249872,0,0);-ms-transform:matrix(11.098872,0.355519,-0.008004,0.249872,0,0);-webkit-transform:matrix(11.098872,0.355519,-0.008004,0.249872,0,0);}
.m9b_c00468{transform:matrix(13.607026,0.435861,-0.008004,0.249872,0,0);-ms-transform:matrix(13.607026,0.435861,-0.008004,0.249872,0,0);-webkit-transform:matrix(13.607026,0.435861,-0.008004,0.249872,0,0);}
.v0_c00468{vertical-align:0.000000px;}
.ls0_c00468{letter-spacing:0.000000px;}
.sc__c00468{text-shadow:none;}
.sc0_c00468{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__c00468{-webkit-text-stroke:0px transparent;}
.sc0_c00468{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00468{word-spacing:0.000000px;}
.fc0_c00468{color:transparent;}
.fs16_c00468{font-size:17.991223px;}
.fsb_c00468{font-size:18.005624px;}
.fs11_c00468{font-size:29.985371px;}
.fs10_c00468{font-size:35.982446px;}
.fs15_c00468{font-size:65.967817px;}
.fsc_c00468{font-size:65.976797px;}
.fs1_c00468{font-size:66.000000px;}
.fs3_c00468{font-size:66.014551px;}
.fs9_c00468{font-size:71.967233px;}
.fs5_c00468{font-size:72.014399px;}
.fsa_c00468{font-size:72.022496px;}
.fs12_c00468{font-size:72.026239px;}
.fse_c00468{font-size:72.030270px;}
.fsf_c00468{font-size:77.961966px;}
.fs2_c00468{font-size:78.000000px;}
.fs7_c00468{font-size:78.015598px;}
.fs14_c00468{font-size:78.032792px;}
.fs13_c00468{font-size:83.967486px;}
.fs18_c00468{font-size:83.983240px;}
.fs1a_c00468{font-size:83.986643px;}
.fs1b_c00468{font-size:83.993700px;}
.fs8_c00468{font-size:84.016798px;}
.fsd_c00468{font-size:84.018520px;}
.fs4_c00468{font-size:90.000000px;}
.fs6_c00468{font-size:90.017998px;}
.fs17_c00468{font-size:95.980846px;}
.fs19_c00468{font-size:95.984735px;}
.fs0_c00468{font-size:102.000000px;}
.y0_c00468{bottom:0.000000px;}
.yed_c00468{bottom:59.506214px;}
.yec_c00468{bottom:62.282938px;}
.yeb_c00468{bottom:63.788691px;}
.yea_c00468{bottom:65.182085px;}
.ye9_c00468{bottom:70.403617px;}
.ye8_c00468{bottom:77.069564px;}
.ye7_c00468{bottom:78.511397px;}
.ye6_c00468{bottom:81.338496px;}
.ye5_c00468{bottom:85.063500px;}
.ye4_c00468{bottom:94.635840px;}
.ye3_c00468{bottom:95.926080px;}
.ye2_c00468{bottom:97.289220px;}
.ye1_c00468{bottom:98.579460px;}
.ye0_c00468{bottom:101.700300px;}
.ydf_c00468{bottom:103.505940px;}
.yde_c00468{bottom:105.251580px;}
.ydd_c00468{bottom:108.391860px;}
.ydc_c00468{bottom:109.673880px;}
.ydb_c00468{bottom:114.065940px;}
.yda_c00468{bottom:117.655560px;}
.yd9_c00468{bottom:119.246640px;}
.yd8_c00468{bottom:120.163500px;}
.yd7_c00468{bottom:146.678206px;}
.yd6_c00468{bottom:148.060649px;}
.yd5_c00468{bottom:152.847141px;}
.yd4_c00468{bottom:166.758730px;}
.yd3_c00468{bottom:170.530526px;}
.yd2_c00468{bottom:172.387333px;}
.yd1_c00468{bottom:175.972660px;}
.yd0_c00468{bottom:179.682955px;}
.ycf_c00468{bottom:183.737097px;}
.yce_c00468{bottom:185.033456px;}
.ycd_c00468{bottom:189.515760px;}
.ycc_c00468{bottom:190.775034px;}
.ycb_c00468{bottom:191.715000px;}
.yca_c00468{bottom:216.450591px;}
.yc9_c00468{bottom:217.627742px;}
.yc8_c00468{bottom:221.637147px;}
.yc7_c00468{bottom:223.579563px;}
.yc6_c00468{bottom:242.391600px;}
.yc5_c00468{bottom:248.211180px;}
.yc4_c00468{bottom:251.684280px;}
.yc3_c00468{bottom:255.725460px;}
.yc2_c00468{bottom:259.215840px;}
.yc1_c00468{bottom:262.730400px;}
.yc0_c00468{bottom:263.931720px;}
.ybf_c00468{bottom:264.880500px;}
.ybe_c00468{bottom:280.863099px;}
.ybc_c00468{bottom:285.589908px;}
.ybb_c00468{bottom:286.662084px;}
.yba_c00468{bottom:287.707284px;}
.ybd_c00468{bottom:290.561781px;}
.yb9_c00468{bottom:291.260388px;}
.yb8_c00468{bottom:292.660740px;}
.yb7_c00468{bottom:293.629044px;}
.yb6_c00468{bottom:295.120500px;}
.yb5_c00468{bottom:316.184824px;}
.yb4_c00468{bottom:317.157398px;}
.yb3_c00468{bottom:320.395059px;}
.yb2_c00468{bottom:321.637898px;}
.yb1_c00468{bottom:324.210270px;}
.yb0_c00468{bottom:327.115809px;}
.yaf_c00468{bottom:328.385313px;}
.yae_c00468{bottom:331.250354px;}
.yad_c00468{bottom:333.457500px;}
.yac_c00468{bottom:349.448625px;}
.yab_c00468{bottom:351.010238px;}
.yaa_c00468{bottom:353.346278px;}
.ya9_c00468{bottom:357.584235px;}
.ya8_c00468{bottom:359.182597px;}
.ya7_c00468{bottom:363.037515px;}
.ya6_c00468{bottom:363.790732px;}
.ya5_c00468{bottom:365.322000px;}
.ya4_c00468{bottom:387.124441px;}
.ya3_c00468{bottom:387.997541px;}
.ya2_c00468{bottom:390.115771px;}
.ya1_c00468{bottom:392.215494px;}
.ya0_c00468{bottom:395.192649px;}
.y9f_c00468{bottom:397.306952px;}
.y9e_c00468{bottom:398.466831px;}
.y9d_c00468{bottom:401.135376px;}
.y9c_c00468{bottom:401.960442px;}
.y9b_c00468{bottom:402.577500px;}
.y9a_c00468{bottom:417.009390px;}
.y98_c00468{bottom:422.742612px;}
.y97_c00468{bottom:423.812052px;}
.y96_c00468{bottom:427.705236px;}
.y95_c00468{bottom:431.240772px;}
.y99_c00468{bottom:431.733864px;}
.y94_c00468{bottom:432.286500px;}
.y93_c00468{bottom:433.332228px;}
.y92_c00468{bottom:436.485588px;}
.y91_c00468{bottom:438.220500px;}
.y90_c00468{bottom:451.426103px;}
.y8f_c00468{bottom:452.591926px;}
.y8d_c00468{bottom:459.371796px;}
.y8c_c00468{bottom:460.457940px;}
.y8b_c00468{bottom:463.305972px;}
.y8a_c00468{bottom:464.343348px;}
.y89_c00468{bottom:465.388548px;}
.y8e_c00468{bottom:466.295494px;}
.y88_c00468{bottom:468.895716px;}
.y87_c00468{bottom:472.396164px;}
.y86_c00468{bottom:473.389860px;}
.y85_c00468{bottom:474.130500px;}
.y84_c00468{bottom:496.814089px;}
.y83_c00468{bottom:497.795041px;}
.y82_c00468{bottom:500.753992px;}
.y81_c00468{bottom:502.083460px;}
.y80_c00468{bottom:503.094514px;}
.y7f_c00468{bottom:505.711344px;}
.y7e_c00468{bottom:507.056472px;}
.y7d_c00468{bottom:528.872196px;}
.y7c_c00468{bottom:531.740412px;}
.y7b_c00468{bottom:534.318787px;}
.y7a_c00468{bottom:535.305411px;}
.y79_c00468{bottom:537.873694px;}
.y78_c00468{bottom:539.453092px;}
.y77_c00468{bottom:545.140500px;}
.y76_c00468{bottom:565.045368px;}
.y75_c00468{bottom:565.732194px;}
.y74_c00468{bottom:567.372840px;}
.y73_c00468{bottom:568.502461px;}
.y72_c00468{bottom:569.234207px;}
.y71_c00468{bottom:570.163299px;}
.y70_c00468{bottom:573.158886px;}
.y6f_c00468{bottom:574.325583px;}
.y6e_c00468{bottom:577.536000px;}
.y6d_c00468{bottom:614.266500px;}
.y6b_c00468{bottom:636.087412px;}
.y6a_c00468{bottom:636.933600px;}
.y69_c00468{bottom:638.912437px;}
.y68_c00468{bottom:640.006950px;}
.y6c_c00468{bottom:640.206450px;}
.y67_c00468{bottom:640.830525px;}
.y66_c00468{bottom:643.281862px;}
.y65_c00468{bottom:644.968987px;}
.y64_c00468{bottom:647.993887px;}
.y63_c00468{bottom:649.930875px;}
.y62_c00468{bottom:650.979000px;}
.y61_c00468{bottom:684.463500px;}
.y60_c00468{bottom:707.199750px;}
.y5f_c00468{bottom:709.007340px;}
.y5e_c00468{bottom:709.758450px;}
.y5d_c00468{bottom:710.790360px;}
.y5c_c00468{bottom:712.807890px;}
.y5b_c00468{bottom:713.591340px;}
.y5a_c00468{bottom:714.856410px;}
.y59_c00468{bottom:716.615820px;}
.y58_c00468{bottom:718.391430px;}
.y57_c00468{bottom:720.142440px;}
.y56_c00468{bottom:720.858060px;}
.y55_c00468{bottom:721.389300px;}
.y54_c00468{bottom:744.224040px;}
.y53_c00468{bottom:745.186710px;}
.y52_c00468{bottom:745.929270px;}
.y51_c00468{bottom:748.337580px;}
.y50_c00468{bottom:750.539160px;}
.y4f_c00468{bottom:752.469720px;}
.y4e_c00468{bottom:753.194820px;}
.y4d_c00468{bottom:755.630880px;}
.y4c_c00468{bottom:757.305060px;}
.y4b_c00468{bottom:781.601130px;}
.y4a_c00468{bottom:782.314080px;}
.y49_c00468{bottom:783.051240px;}
.y48_c00468{bottom:784.750350px;}
.y47_c00468{bottom:785.487870px;}
.y46_c00468{bottom:786.207120px;}
.y45_c00468{bottom:788.417250px;}
.y44_c00468{bottom:789.112020px;}
.y43_c00468{bottom:790.793070px;}
.y42_c00468{bottom:816.610020px;}
.y41_c00468{bottom:817.470060px;}
.y40_c00468{bottom:819.300930px;}
.y3f_c00468{bottom:820.184940px;}
.y3e_c00468{bottom:821.919840px;}
.y3d_c00468{bottom:822.821670px;}
.y3c_c00468{bottom:823.475160px;}
.y3b_c00468{bottom:824.576850px;}
.y3a_c00468{bottom:825.467880px;}
.y39_c00468{bottom:826.990710px;}
.y38_c00468{bottom:827.597760px;}
.y37_c00468{bottom:828.059490px;}
.y36_c00468{bottom:853.342920px;}
.y35_c00468{bottom:854.587500px;}
.y34_c00468{bottom:855.188310px;}
.y33_c00468{bottom:856.125510px;}
.y32_c00468{bottom:857.490360px;}
.y31_c00468{bottom:858.586920px;}
.y30_c00468{bottom:859.667790px;}
.y2f_c00468{bottom:860.734710px;}
.y2e_c00468{bottom:888.229110px;}
.y2d_c00468{bottom:890.205870px;}
.y2c_c00468{bottom:892.841850px;}
.y2b_c00468{bottom:894.856080px;}
.y2a_c00468{bottom:896.173860px;}
.y29_c00468{bottom:898.360860px;}
.y28_c00468{bottom:899.894370px;}
.y27_c00468{bottom:924.648150px;}
.y26_c00468{bottom:925.339650px;}
.y25_c00468{bottom:926.002650px;}
.y24_c00468{bottom:927.316410px;}
.y23_c00468{bottom:927.980700px;}
.y22_c00468{bottom:929.953260px;}
.y21_c00468{bottom:930.621870px;}
.y20_c00468{bottom:931.280640px;}
.y1f_c00468{bottom:932.841030px;}
.y1e_c00468{bottom:959.047230px;}
.y1d_c00468{bottom:959.448450px;}
.y1c_c00468{bottom:960.507690px;}
.y1b_c00468{bottom:961.166370px;}
.y1a_c00468{bottom:962.363220px;}
.y19_c00468{bottom:962.894340px;}
.y18_c00468{bottom:963.685560px;}
.y17_c00468{bottom:964.877610px;}
.y16_c00468{bottom:965.784960px;}
.y15_c00468{bottom:993.776550px;}
.y14_c00468{bottom:994.419120px;}
.y13_c00468{bottom:995.985660px;}
.y12_c00468{bottom:996.871410px;}
.y11_c00468{bottom:997.766670px;}
.y10_c00468{bottom:999.960900px;}
.yf_c00468{bottom:1001.732070px;}
.ye_c00468{bottom:1003.665330px;}
.yd_c00468{bottom:1005.214500px;}
.yc_c00468{bottom:1053.945000px;}
.yb_c00468{bottom:1080.942666px;}
.ya_c00468{bottom:1081.877523px;}
.y9_c00468{bottom:1083.733346px;}
.y8_c00468{bottom:1086.047399px;}
.y7_c00468{bottom:1086.998793px;}
.y6_c00468{bottom:1089.058578px;}
.y5_c00468{bottom:1090.686215px;}
.y4_c00468{bottom:1091.616000px;}
.y3_c00468{bottom:1142.773500px;}
.y2_c00468{bottom:1178.008500px;}
.y1_c00468{bottom:1224.463500px;}
.h18_c00468{height:17.991223px;}
.hd_c00468{height:18.005624px;}
.h13_c00468{height:29.985371px;}
.h12_c00468{height:35.982446px;}
.h17_c00468{height:65.967817px;}
.he_c00468{height:65.976797px;}
.h3_c00468{height:66.000000px;}
.h5_c00468{height:66.014551px;}
.hb_c00468{height:71.967233px;}
.h7_c00468{height:72.014399px;}
.hc_c00468{height:72.022496px;}
.h14_c00468{height:72.026239px;}
.h10_c00468{height:72.030270px;}
.h11_c00468{height:77.961966px;}
.h4_c00468{height:78.000000px;}
.h9_c00468{height:78.015598px;}
.h16_c00468{height:78.032792px;}
.h15_c00468{height:83.967486px;}
.h1a_c00468{height:83.983240px;}
.h1c_c00468{height:83.986643px;}
.h1d_c00468{height:83.993700px;}
.ha_c00468{height:84.016798px;}
.hf_c00468{height:84.018520px;}
.h6_c00468{height:90.000000px;}
.h8_c00468{height:90.017998px;}
.h19_c00468{height:95.980846px;}
.h1b_c00468{height:95.984735px;}
.h2_c00468{height:102.000000px;}
.h0_c00468{height:1246.320000px;}
.h1_c00468{height:1246.500000px;}
.w0_c00468{width:914.700000px;}
.w1_c00468{width:915.000000px;}
.x0_c00468{left:0.000000px;}
.x9d_c00468{left:183.006000px;}
.x81_c00468{left:184.128000px;}
.x55_c00468{left:185.442000px;}
.x40_c00468{left:186.844800px;}
.x24_c00468{left:188.230500px;}
.xc_c00468{left:190.080000px;}
.x89_c00468{left:206.539500px;}
.x69_c00468{left:208.120500px;}
.x45_c00468{left:209.523840px;}
.x30_c00468{left:210.647340px;}
.x4e_c00468{left:219.936000px;}
.x8a_c00468{left:230.235280px;}
.x6a_c00468{left:231.242355px;}
.x46_c00468{left:232.634460px;}
.x31_c00468{left:233.733840px;}
.x77_c00468{left:259.091014px;}
.x82_c00468{left:260.236500px;}
.x4f_c00468{left:261.861000px;}
.x41_c00468{left:262.975770px;}
.x17_c00468{left:264.698220px;}
.xf_c00468{left:266.788500px;}
.x97_c00468{left:269.131801px;}
.xd_c00468{left:277.020000px;}
.x70_c00468{left:281.183863px;}
.x4_c00468{left:298.876500px;}
.x88_c00468{left:311.448896px;}
.x95_c00468{left:312.881325px;}
.x7b_c00468{left:315.271500px;}
.x62_c00468{left:316.353924px;}
.x4d_c00468{left:317.632500px;}
.x1e_c00468{left:319.183530px;}
.xe_c00468{left:331.560000px;}
.x9e_c00468{left:335.228125px;}
.x56_c00468{left:338.319000px;}
.x47_c00468{left:339.909540px;}
.x2a_c00468{left:341.088300px;}
.x5_c00468{left:343.152000px;}
.x8b_c00468{left:348.014384px;}
.x7c_c00468{left:358.978250px;}
.x73_c00468{left:360.169741px;}
.x63_c00468{left:361.184619px;}
.x10_c00468{left:363.451500px;}
.x8d_c00468{left:368.233792px;}
.x90_c00468{left:369.537535px;}
.x6b_c00468{left:371.543913px;}
.x25_c00468{left:374.256000px;}
.x7d_c00468{left:380.477229px;}
.x32_c00468{left:384.779340px;}
.x84_c00468{left:391.561132px;}
.x74_c00468{left:392.816063px;}
.x57_c00468{left:393.876000px;}
.x38_c00468{left:395.566140px;}
.x1f_c00468{left:397.203030px;}
.x91_c00468{left:401.124417px;}
.x79_c00468{left:402.822000px;}
.x42_c00468{left:406.628010px;}
.x5d_c00468{left:415.561500px;}
.x48_c00468{left:417.135420px;}
.x2b_c00468{left:419.400690px;}
.x6_c00468{left:420.658500px;}
.x3_c00468{left:422.550000px;}
.x96_c00468{left:424.095389px;}
.x75_c00468{left:425.462383px;}
.x39_c00468{left:427.153380px;}
.x18_c00468{left:429.963150px;}
.x85_c00468{left:435.278372px;}
.x26_c00468{left:440.145000px;}
.x64_c00468{left:448.417596px;}
.x11_c00468{left:452.010000px;}
.x1_c00468{left:456.570000px;}
.x50_c00468{left:460.336500px;}
.x20_c00468{left:463.572030px;}
.x2_c00468{left:464.670000px;}
.x98_c00468{left:468.474260px;}
.x5e_c00468{left:470.023500px;}
.x33_c00468{left:472.538340px;}
.x19_c00468{left:474.226230px;}
.x8e_c00468{left:479.501751px;}
.x6c_c00468{left:481.033314px;}
.x65_c00468{left:482.142639px;}
.x7e_c00468{left:490.507588px;}
.x43_c00468{left:494.377500px;}
.x92_c00468{left:499.907036px;}
.x83_c00468{left:502.998000px;}
.x8f_c00468{left:512.162283px;}
.x6d_c00468{left:513.663151px;}
.x2c_c00468{left:516.904890px;}
.x7_c00468{left:518.743500px;}
.x9f_c00468{left:523.592572px;}
.x66_c00468{left:526.433334px;}
.x3a_c00468{left:527.605860px;}
.x54_c00468{left:534.545363px;}
.x58_c00468{left:536.523000px;}
.x27_c00468{left:540.856500px;}
.x6e_c00468{left:546.048733px;}
.x49_c00468{left:548.626530px;}
.x5f_c00468{left:558.585000px;}
.x3b_c00468{left:560.267040px;}
.x12_c00468{left:561.721500px;}
.x8_c00468{left:564.048000px;}
.x1a_c00468{left:573.909660px;}
.x86_c00468{left:578.831674px;}
.x59_c00468{left:580.765500px;}
.x4a_c00468{left:582.696990px;}
.x2d_c00468{left:583.872930px;}
.x93_c00468{left:590.311540px;}
.x7a_c00468{left:591.394500px;}
.x60_c00468{left:592.606500px;}
.x3c_c00468{left:593.766690px;}
.x21_c00468{left:595.414530px;}
.x34_c00468{left:604.374840px;}
.x13_c00468{left:606.484500px;}
.x87_c00468{left:612.303669px;}
.x5a_c00468{left:615.610500px;}
.x8c_c00468{left:622.855767px;}
.x67_c00468{left:625.049463px;}
.x2e_c00468{left:626.818590px;}
.x1b_c00468{left:628.752420px;}
.x6f_c00468{left:634.960732px;}
.xa0_c00468{left:644.902142px;}
.x35_c00468{left:648.575340px;}
.x14_c00468{left:650.772000px;}
.x68_c00468{left:657.736506px;}
.x51_c00468{left:658.818000px;}
.x22_c00468{left:661.102530px;}
.x99_c00468{left:667.614420px;}
.x5b_c00468{left:669.402000px;}
.x3d_c00468{left:670.994100px;}
.x28_c00468{left:672.655500px;}
.x9_c00468{left:674.241000px;}
.x94_c00468{left:677.671093px;}
.x61_c00468{left:681.516000px;}
.x76_c00468{left:690.764316px;}
.x23_c00468{left:694.252530px;}
.x52_c00468{left:702.598500px;}
.x3e_c00468{left:704.475750px;}
.x71_c00468{left:708.992127px;}
.xa1_c00468{left:712.256720px;}
.x2f_c00468{left:715.683240px;}
.x1c_c00468{left:717.053550px;}
.x7f_c00468{left:723.770092px;}
.x15_c00468{left:729.099000px;}
.x78_c00468{left:733.568745px;}
.x3f_c00468{left:736.896960px;}
.x36_c00468{left:740.118840px;}
.x72_c00468{left:745.387695px;}
.x4b_c00468{left:747.964590px;}
.x1d_c00468{left:750.544920px;}
.x16_c00468{left:761.227500px;}
.xa_c00468{left:762.613500px;}
.x80_c00468{left:768.342975px;}
.x29_c00468{left:771.493500px;}
.xa2_c00468{left:776.767145px;}
.x9a_c00468{left:777.781143px;}
.x5c_c00468{left:780.234000px;}
.x44_c00468{left:781.472040px;}
.x37_c00468{left:783.120840px;}
.xb_c00468{left:807.130500px;}
.x9b_c00468{left:811.825564px;}
.x53_c00468{left:815.599500px;}
.x4c_c00468{left:826.564380px;}
.x9c_c00468{left:844.049308px;}
@media print{
.v0_c00468{vertical-align:0.000000pt;}
.ls0_c00468{letter-spacing:0.000000pt;}
.ws0_c00468{word-spacing:0.000000pt;}
.fs16_c00468{font-size:15.992198pt;}
.fsb_c00468{font-size:16.004999pt;}
.fs11_c00468{font-size:26.653663pt;}
.fs10_c00468{font-size:31.984396pt;}
.fs15_c00468{font-size:58.638060pt;}
.fsc_c00468{font-size:58.646042pt;}
.fs1_c00468{font-size:58.666667pt;}
.fs3_c00468{font-size:58.679601pt;}
.fs9_c00468{font-size:63.970873pt;}
.fs5_c00468{font-size:64.012799pt;}
.fsa_c00468{font-size:64.019997pt;}
.fs12_c00468{font-size:64.023324pt;}
.fse_c00468{font-size:64.026906pt;}
.fsf_c00468{font-size:69.299525pt;}
.fs2_c00468{font-size:69.333333pt;}
.fs7_c00468{font-size:69.347199pt;}
.fs14_c00468{font-size:69.362482pt;}
.fs13_c00468{font-size:74.637765pt;}
.fs18_c00468{font-size:74.651769pt;}
.fs1a_c00468{font-size:74.654794pt;}
.fs1b_c00468{font-size:74.661066pt;}
.fs8_c00468{font-size:74.681599pt;}
.fsd_c00468{font-size:74.683129pt;}
.fs4_c00468{font-size:80.000000pt;}
.fs6_c00468{font-size:80.015998pt;}
.fs17_c00468{font-size:85.316308pt;}
.fs19_c00468{font-size:85.319764pt;}
.fs0_c00468{font-size:90.666667pt;}
.y0_c00468{bottom:0.000000pt;}
.yed_c00468{bottom:52.894412pt;}
.yec_c00468{bottom:55.362612pt;}
.yeb_c00468{bottom:56.701059pt;}
.yea_c00468{bottom:57.939631pt;}
.ye9_c00468{bottom:62.580993pt;}
.ye8_c00468{bottom:68.506279pt;}
.ye7_c00468{bottom:69.787908pt;}
.ye6_c00468{bottom:72.300885pt;}
.ye5_c00468{bottom:75.612000pt;}
.ye4_c00468{bottom:84.120747pt;}
.ye3_c00468{bottom:85.267627pt;}
.ye2_c00468{bottom:86.479307pt;}
.ye1_c00468{bottom:87.626187pt;}
.ye0_c00468{bottom:90.400267pt;}
.ydf_c00468{bottom:92.005280pt;}
.yde_c00468{bottom:93.556960pt;}
.ydd_c00468{bottom:96.348320pt;}
.ydc_c00468{bottom:97.487893pt;}
.ydb_c00468{bottom:101.391947pt;}
.yda_c00468{bottom:104.582720pt;}
.yd9_c00468{bottom:105.997013pt;}
.yd8_c00468{bottom:106.812000pt;}
.yd7_c00468{bottom:130.380628pt;}
.yd6_c00468{bottom:131.609465pt;}
.yd5_c00468{bottom:135.864125pt;}
.yd4_c00468{bottom:148.229983pt;}
.yd3_c00468{bottom:151.582689pt;}
.yd2_c00468{bottom:153.233185pt;}
.yd1_c00468{bottom:156.420143pt;}
.yd0_c00468{bottom:159.718183pt;}
.ycf_c00468{bottom:163.321864pt;}
.yce_c00468{bottom:164.474183pt;}
.ycd_c00468{bottom:168.458453pt;}
.ycc_c00468{bottom:169.577808pt;}
.ycb_c00468{bottom:170.413333pt;}
.yca_c00468{bottom:192.400525pt;}
.yc9_c00468{bottom:193.446881pt;}
.yc8_c00468{bottom:197.010797pt;}
.yc7_c00468{bottom:198.737389pt;}
.yc6_c00468{bottom:215.459200pt;}
.yc5_c00468{bottom:220.632160pt;}
.yc4_c00468{bottom:223.719360pt;}
.yc3_c00468{bottom:227.311520pt;}
.yc2_c00468{bottom:230.414080pt;}
.yc1_c00468{bottom:233.538133pt;}
.yc0_c00468{bottom:234.605973pt;}
.ybf_c00468{bottom:235.449333pt;}
.ybe_c00468{bottom:249.656088pt;}
.ybc_c00468{bottom:253.857696pt;}
.ybb_c00468{bottom:254.810741pt;}
.yba_c00468{bottom:255.739808pt;}
.ybd_c00468{bottom:258.277139pt;}
.yb9_c00468{bottom:258.898123pt;}
.yb8_c00468{bottom:260.142880pt;}
.yb7_c00468{bottom:261.003595pt;}
.yb6_c00468{bottom:262.329333pt;}
.yb5_c00468{bottom:281.053177pt;}
.yb4_c00468{bottom:281.917687pt;}
.yb3_c00468{bottom:284.795608pt;}
.yb2_c00468{bottom:285.900353pt;}
.yb1_c00468{bottom:288.186907pt;}
.yb0_c00468{bottom:290.769608pt;}
.yaf_c00468{bottom:291.898056pt;}
.yae_c00468{bottom:294.444759pt;}
.yad_c00468{bottom:296.406667pt;}
.yac_c00468{bottom:310.621000pt;}
.yab_c00468{bottom:312.009100pt;}
.yaa_c00468{bottom:314.085580pt;}
.ya9_c00468{bottom:317.852653pt;}
.ya8_c00468{bottom:319.273420pt;}
.ya7_c00468{bottom:322.700013pt;}
.ya6_c00468{bottom:323.369540pt;}
.ya5_c00468{bottom:324.730667pt;}
.ya4_c00468{bottom:344.110615pt;}
.ya3_c00468{bottom:344.886703pt;}
.ya2_c00468{bottom:346.769575pt;}
.ya1_c00468{bottom:348.635995pt;}
.ya0_c00468{bottom:351.282355pt;}
.y9f_c00468{bottom:353.161735pt;}
.y9e_c00468{bottom:354.192739pt;}
.y9d_c00468{bottom:356.564779pt;}
.y9c_c00468{bottom:357.298171pt;}
.y9b_c00468{bottom:357.846667pt;}
.y9a_c00468{bottom:370.675013pt;}
.y98_c00468{bottom:375.771211pt;}
.y97_c00468{bottom:376.721824pt;}
.y96_c00468{bottom:380.182432pt;}
.y95_c00468{bottom:383.325131pt;}
.y99_c00468{bottom:383.763435pt;}
.y94_c00468{bottom:384.254667pt;}
.y93_c00468{bottom:385.184203pt;}
.y92_c00468{bottom:387.987189pt;}
.y91_c00468{bottom:389.529333pt;}
.y90_c00468{bottom:401.267647pt;}
.y8f_c00468{bottom:402.303935pt;}
.y8d_c00468{bottom:408.330485pt;}
.y8c_c00468{bottom:409.295947pt;}
.y8b_c00468{bottom:411.827531pt;}
.y8a_c00468{bottom:412.749643pt;}
.y89_c00468{bottom:413.678709pt;}
.y8e_c00468{bottom:414.484884pt;}
.y88_c00468{bottom:416.796192pt;}
.y87_c00468{bottom:419.907701pt;}
.y86_c00468{bottom:420.790987pt;}
.y85_c00468{bottom:421.449333pt;}
.y84_c00468{bottom:441.612524pt;}
.y83_c00468{bottom:442.484481pt;}
.y82_c00468{bottom:445.114660pt;}
.y81_c00468{bottom:446.296409pt;}
.y80_c00468{bottom:447.195124pt;}
.y7f_c00468{bottom:449.521195pt;}
.y7e_c00468{bottom:450.716864pt;}
.y7d_c00468{bottom:470.108619pt;}
.y7c_c00468{bottom:472.658144pt;}
.y7b_c00468{bottom:474.950033pt;}
.y7a_c00468{bottom:475.827032pt;}
.y79_c00468{bottom:478.109951pt;}
.y78_c00468{bottom:479.513860pt;}
.y77_c00468{bottom:484.569333pt;}
.y76_c00468{bottom:502.262549pt;}
.y75_c00468{bottom:502.873061pt;}
.y74_c00468{bottom:504.331413pt;}
.y73_c00468{bottom:505.335521pt;}
.y72_c00468{bottom:505.985961pt;}
.y71_c00468{bottom:506.811821pt;}
.y70_c00468{bottom:509.474565pt;}
.y6f_c00468{bottom:510.511629pt;}
.y6e_c00468{bottom:513.365333pt;}
.y6d_c00468{bottom:546.014667pt;}
.y6b_c00468{bottom:565.411033pt;}
.y6a_c00468{bottom:566.163200pt;}
.y69_c00468{bottom:567.922167pt;}
.y68_c00468{bottom:568.895067pt;}
.y6c_c00468{bottom:569.072400pt;}
.y67_c00468{bottom:569.627133pt;}
.y66_c00468{bottom:571.806100pt;}
.y65_c00468{bottom:573.305767pt;}
.y64_c00468{bottom:575.994567pt;}
.y63_c00468{bottom:577.716333pt;}
.y62_c00468{bottom:578.648000pt;}
.y61_c00468{bottom:608.412000pt;}
.y60_c00468{bottom:628.622000pt;}
.y5f_c00468{bottom:630.228747pt;}
.y5e_c00468{bottom:630.896400pt;}
.y5d_c00468{bottom:631.813653pt;}
.y5c_c00468{bottom:633.607013pt;}
.y5b_c00468{bottom:634.303413pt;}
.y5a_c00468{bottom:635.427920pt;}
.y59_c00468{bottom:636.991840pt;}
.y58_c00468{bottom:638.570160pt;}
.y57_c00468{bottom:640.126613pt;}
.y56_c00468{bottom:640.762720pt;}
.y55_c00468{bottom:641.234933pt;}
.y54_c00468{bottom:661.532480pt;}
.y53_c00468{bottom:662.388187pt;}
.y52_c00468{bottom:663.048240pt;}
.y51_c00468{bottom:665.188960pt;}
.y50_c00468{bottom:667.145920pt;}
.y4f_c00468{bottom:668.861973pt;}
.y4e_c00468{bottom:669.506507pt;}
.y4d_c00468{bottom:671.671893pt;}
.y4c_c00468{bottom:673.160053pt;}
.y4b_c00468{bottom:694.756560pt;}
.y4a_c00468{bottom:695.390293pt;}
.y49_c00468{bottom:696.045547pt;}
.y48_c00468{bottom:697.555867pt;}
.y47_c00468{bottom:698.211440pt;}
.y46_c00468{bottom:698.850773pt;}
.y45_c00468{bottom:700.815333pt;}
.y44_c00468{bottom:701.432907pt;}
.y43_c00468{bottom:702.927173pt;}
.y42_c00468{bottom:725.875573pt;}
.y41_c00468{bottom:726.640053pt;}
.y40_c00468{bottom:728.267493pt;}
.y3f_c00468{bottom:729.053280pt;}
.y3e_c00468{bottom:730.595413pt;}
.y3d_c00468{bottom:731.397040pt;}
.y3c_c00468{bottom:731.977920pt;}
.y3b_c00468{bottom:732.957200pt;}
.y3a_c00468{bottom:733.749227pt;}
.y39_c00468{bottom:735.102853pt;}
.y38_c00468{bottom:735.642453pt;}
.y37_c00468{bottom:736.052880pt;}
.y36_c00468{bottom:758.527040pt;}
.y35_c00468{bottom:759.633333pt;}
.y34_c00468{bottom:760.167387pt;}
.y33_c00468{bottom:761.000453pt;}
.y32_c00468{bottom:762.213653pt;}
.y31_c00468{bottom:763.188373pt;}
.y30_c00468{bottom:764.149147pt;}
.y2f_c00468{bottom:765.097520pt;}
.y2e_c00468{bottom:789.536987pt;}
.y2d_c00468{bottom:791.294107pt;}
.y2c_c00468{bottom:793.637200pt;}
.y2b_c00468{bottom:795.427627pt;}
.y2a_c00468{bottom:796.598987pt;}
.y29_c00468{bottom:798.542987pt;}
.y28_c00468{bottom:799.906107pt;}
.y27_c00468{bottom:821.909467pt;}
.y26_c00468{bottom:822.524133pt;}
.y25_c00468{bottom:823.113467pt;}
.y24_c00468{bottom:824.281253pt;}
.y23_c00468{bottom:824.871733pt;}
.y22_c00468{bottom:826.625120pt;}
.y21_c00468{bottom:827.219440pt;}
.y20_c00468{bottom:827.805013pt;}
.y1f_c00468{bottom:829.192027pt;}
.y1e_c00468{bottom:852.486427pt;}
.y1d_c00468{bottom:852.843067pt;}
.y1c_c00468{bottom:853.784613pt;}
.y1b_c00468{bottom:854.370107pt;}
.y1a_c00468{bottom:855.433973pt;}
.y19_c00468{bottom:855.906080pt;}
.y18_c00468{bottom:856.609387pt;}
.y17_c00468{bottom:857.668987pt;}
.y16_c00468{bottom:858.475520pt;}
.y15_c00468{bottom:883.356933pt;}
.y14_c00468{bottom:883.928107pt;}
.y13_c00468{bottom:885.320587pt;}
.y12_c00468{bottom:886.107920pt;}
.y11_c00468{bottom:886.903707pt;}
.y10_c00468{bottom:888.854133pt;}
.yf_c00468{bottom:890.428507pt;}
.ye_c00468{bottom:892.146960pt;}
.yd_c00468{bottom:893.524000pt;}
.yc_c00468{bottom:936.840000pt;}
.yb_c00468{bottom:960.837925pt;}
.ya_c00468{bottom:961.668909pt;}
.y9_c00468{bottom:963.318529pt;}
.y8_c00468{bottom:965.375465pt;}
.y7_c00468{bottom:966.221149pt;}
.y6_c00468{bottom:968.052069pt;}
.y5_c00468{bottom:969.498857pt;}
.y4_c00468{bottom:970.325333pt;}
.y3_c00468{bottom:1015.798667pt;}
.y2_c00468{bottom:1047.118667pt;}
.y1_c00468{bottom:1088.412000pt;}
.h18_c00468{height:15.992198pt;}
.hd_c00468{height:16.004999pt;}
.h13_c00468{height:26.653663pt;}
.h12_c00468{height:31.984396pt;}
.h17_c00468{height:58.638060pt;}
.he_c00468{height:58.646042pt;}
.h3_c00468{height:58.666667pt;}
.h5_c00468{height:58.679601pt;}
.hb_c00468{height:63.970873pt;}
.h7_c00468{height:64.012799pt;}
.hc_c00468{height:64.019997pt;}
.h14_c00468{height:64.023324pt;}
.h10_c00468{height:64.026906pt;}
.h11_c00468{height:69.299525pt;}
.h4_c00468{height:69.333333pt;}
.h9_c00468{height:69.347199pt;}
.h16_c00468{height:69.362482pt;}
.h15_c00468{height:74.637765pt;}
.h1a_c00468{height:74.651769pt;}
.h1c_c00468{height:74.654794pt;}
.h1d_c00468{height:74.661066pt;}
.ha_c00468{height:74.681599pt;}
.hf_c00468{height:74.683129pt;}
.h6_c00468{height:80.000000pt;}
.h8_c00468{height:80.015998pt;}
.h19_c00468{height:85.316308pt;}
.h1b_c00468{height:85.319764pt;}
.h2_c00468{height:90.666667pt;}
.h0_c00468{height:1107.840000pt;}
.h1_c00468{height:1108.000000pt;}
.w0_c00468{width:813.066667pt;}
.w1_c00468{width:813.333333pt;}
.x0_c00468{left:0.000000pt;}
.x9d_c00468{left:162.672000pt;}
.x81_c00468{left:163.669333pt;}
.x55_c00468{left:164.837333pt;}
.x40_c00468{left:166.084267pt;}
.x24_c00468{left:167.316000pt;}
.xc_c00468{left:168.960000pt;}
.x89_c00468{left:183.590667pt;}
.x69_c00468{left:184.996000pt;}
.x45_c00468{left:186.243413pt;}
.x30_c00468{left:187.242080pt;}
.x4e_c00468{left:195.498667pt;}
.x8a_c00468{left:204.653583pt;}
.x6a_c00468{left:205.548760pt;}
.x46_c00468{left:206.786187pt;}
.x31_c00468{left:207.763413pt;}
.x77_c00468{left:230.303124pt;}
.x82_c00468{left:231.321333pt;}
.x4f_c00468{left:232.765333pt;}
.x41_c00468{left:233.756240pt;}
.x17_c00468{left:235.287307pt;}
.xf_c00468{left:237.145333pt;}
.x97_c00468{left:239.228268pt;}
.xd_c00468{left:246.240000pt;}
.x70_c00468{left:249.941212pt;}
.x4_c00468{left:265.668000pt;}
.x88_c00468{left:276.843463pt;}
.x95_c00468{left:278.116733pt;}
.x7b_c00468{left:280.241333pt;}
.x62_c00468{left:281.203488pt;}
.x4d_c00468{left:282.340000pt;}
.x1e_c00468{left:283.718693pt;}
.xe_c00468{left:294.720000pt;}
.x9e_c00468{left:297.980556pt;}
.x56_c00468{left:300.728000pt;}
.x47_c00468{left:302.141813pt;}
.x2a_c00468{left:303.189600pt;}
.x5_c00468{left:305.024000pt;}
.x8b_c00468{left:309.346119pt;}
.x7c_c00468{left:319.091777pt;}
.x73_c00468{left:320.150881pt;}
.x63_c00468{left:321.052995pt;}
.x10_c00468{left:323.068000pt;}
.x8d_c00468{left:327.318927pt;}
.x90_c00468{left:328.477809pt;}
.x6b_c00468{left:330.261256pt;}
.x25_c00468{left:332.672000pt;}
.x7d_c00468{left:338.201981pt;}
.x32_c00468{left:342.026080pt;}
.x84_c00468{left:348.054340pt;}
.x74_c00468{left:349.169833pt;}
.x57_c00468{left:350.112000pt;}
.x38_c00468{left:351.614347pt;}
.x1f_c00468{left:353.069360pt;}
.x91_c00468{left:356.555037pt;}
.x79_c00468{left:358.064000pt;}
.x42_c00468{left:361.447120pt;}
.x5d_c00468{left:369.388000pt;}
.x48_c00468{left:370.787040pt;}
.x2b_c00468{left:372.800613pt;}
.x6_c00468{left:373.918667pt;}
.x3_c00468{left:375.600000pt;}
.x96_c00468{left:376.973679pt;}
.x75_c00468{left:378.188785pt;}
.x39_c00468{left:379.691893pt;}
.x18_c00468{left:382.189467pt;}
.x85_c00468{left:386.914108pt;}
.x26_c00468{left:391.240000pt;}
.x64_c00468{left:398.593419pt;}
.x11_c00468{left:401.786667pt;}
.x1_c00468{left:405.840000pt;}
.x50_c00468{left:409.188000pt;}
.x20_c00468{left:412.064027pt;}
.x2_c00468{left:413.040000pt;}
.x98_c00468{left:416.421564pt;}
.x5e_c00468{left:417.798667pt;}
.x33_c00468{left:420.034080pt;}
.x19_c00468{left:421.534427pt;}
.x8e_c00468{left:426.223779pt;}
.x6c_c00468{left:427.585168pt;}
.x65_c00468{left:428.571235pt;}
.x7e_c00468{left:436.006745pt;}
.x43_c00468{left:439.446667pt;}
.x92_c00468{left:444.361809pt;}
.x83_c00468{left:447.109333pt;}
.x8f_c00468{left:455.255363pt;}
.x6d_c00468{left:456.589468pt;}
.x2c_c00468{left:459.471013pt;}
.x7_c00468{left:461.105333pt;}
.x9f_c00468{left:465.415620pt;}
.x66_c00468{left:467.940741pt;}
.x3a_c00468{left:468.982987pt;}
.x54_c00468{left:475.151433pt;}
.x58_c00468{left:476.909333pt;}
.x27_c00468{left:480.761333pt;}
.x6e_c00468{left:485.376652pt;}
.x49_c00468{left:487.668027pt;}
.x5f_c00468{left:496.520000pt;}
.x3b_c00468{left:498.015147pt;}
.x12_c00468{left:499.308000pt;}
.x8_c00468{left:501.376000pt;}
.x1a_c00468{left:510.141920pt;}
.x86_c00468{left:514.517044pt;}
.x59_c00468{left:516.236000pt;}
.x4a_c00468{left:517.952880pt;}
.x2d_c00468{left:518.998160pt;}
.x93_c00468{left:524.721369pt;}
.x7a_c00468{left:525.684000pt;}
.x60_c00468{left:526.761333pt;}
.x3c_c00468{left:527.792613pt;}
.x21_c00468{left:529.257360pt;}
.x34_c00468{left:537.222080pt;}
.x13_c00468{left:539.097333pt;}
.x87_c00468{left:544.269928pt;}
.x5a_c00468{left:547.209333pt;}
.x8c_c00468{left:553.649571pt;}
.x67_c00468{left:555.599523pt;}
.x2e_c00468{left:557.172080pt;}
.x1b_c00468{left:558.891040pt;}
.x6f_c00468{left:564.409540pt;}
.xa0_c00468{left:573.246348pt;}
.x35_c00468{left:576.511413pt;}
.x14_c00468{left:578.464000pt;}
.x68_c00468{left:584.654672pt;}
.x51_c00468{left:585.616000pt;}
.x22_c00468{left:587.646693pt;}
.x99_c00468{left:593.435040pt;}
.x5b_c00468{left:595.024000pt;}
.x3d_c00468{left:596.439200pt;}
.x28_c00468{left:597.916000pt;}
.x9_c00468{left:599.325333pt;}
.x94_c00468{left:602.374305pt;}
.x61_c00468{left:605.792000pt;}
.x76_c00468{left:614.012725pt;}
.x23_c00468{left:617.113360pt;}
.x52_c00468{left:624.532000pt;}
.x3e_c00468{left:626.200667pt;}
.x71_c00468{left:630.215224pt;}
.xa1_c00468{left:633.117084pt;}
.x2f_c00468{left:636.162880pt;}
.x1c_c00468{left:637.380933pt;}
.x7f_c00468{left:643.351193pt;}
.x15_c00468{left:648.088000pt;}
.x78_c00468{left:652.061107pt;}
.x3f_c00468{left:655.019520pt;}
.x36_c00468{left:657.883413pt;}
.x72_c00468{left:662.566840pt;}
.x4b_c00468{left:664.857413pt;}
.x1d_c00468{left:667.151040pt;}
.x16_c00468{left:676.646667pt;}
.xa_c00468{left:677.878667pt;}
.x80_c00468{left:682.971533pt;}
.x29_c00468{left:685.772000pt;}
.xa2_c00468{left:690.459684pt;}
.x9a_c00468{left:691.361016pt;}
.x5c_c00468{left:693.541333pt;}
.x44_c00468{left:694.641813pt;}
.x37_c00468{left:696.107413pt;}
.xb_c00468{left:717.449333pt;}
.x9b_c00468{left:721.622724pt;}
.x53_c00468{left:724.977333pt;}
.x4c_c00468{left:734.723893pt;}
.x9c_c00468{left:750.266052pt;}
}





/* 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_c00469 {
    display:none;
  }
  .loading-indicator_c00469.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00469 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_c00469 { 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_c00469" -> "#page-container .classname_c00469")
 */
.pf_c00469 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00469 { /* 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_c00469.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00469 { /* 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_c00469 { /* 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_c00469 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00469 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00469 {overflow:visible;}
  }
}
.c_c00469 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00469 { /* 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_c00469:after { /* webkit #35443 */
  content: '';
}
.t_c00469:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00469 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 */
}
.__c00469 { /* 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_c00469 { /* info for Javascript */
  display:none;
}
.l_c00469 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00469 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00469 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00469: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_c00469 {
    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_c00469.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00469.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_c00469 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00469{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00469;src:url('chunks/assets/font_74d7e987f08e4505b74f4479.woff2')format("woff");}.ff1_c00469{font-family:ff1_c00469;line-height:1.000000;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;}
.m12_c00469{transform:matrix(0.183396,-0.001284,0.001750,0.249994,0,0);-ms-transform:matrix(0.183396,-0.001284,0.001750,0.249994,0,0);-webkit-transform:matrix(0.183396,-0.001284,0.001750,0.249994,0,0);}
.mc_c00469{transform:matrix(0.216240,-0.001514,0.001750,0.249994,0,0);-ms-transform:matrix(0.216240,-0.001514,0.001750,0.249994,0,0);-webkit-transform:matrix(0.216240,-0.001514,0.001750,0.249994,0,0);}
.me_c00469{transform:matrix(0.222450,-0.001557,0.001750,0.249994,0,0);-ms-transform:matrix(0.222450,-0.001557,0.001750,0.249994,0,0);-webkit-transform:matrix(0.222450,-0.001557,0.001750,0.249994,0,0);}
.m7_c00469{transform:matrix(0.238699,-0.001671,0.001750,0.249994,0,0);-ms-transform:matrix(0.238699,-0.001671,0.001750,0.249994,0,0);-webkit-transform:matrix(0.238699,-0.001671,0.001750,0.249994,0,0);}
.md_c00469{transform:matrix(0.247024,-0.001729,0.001750,0.249994,0,0);-ms-transform:matrix(0.247024,-0.001729,0.001750,0.249994,0,0);-webkit-transform:matrix(0.247024,-0.001729,0.001750,0.249994,0,0);}
.m8_c00469{transform:matrix(0.247389,-0.001732,0.001750,0.249994,0,0);-ms-transform:matrix(0.247389,-0.001732,0.001750,0.249994,0,0);-webkit-transform:matrix(0.247389,-0.001732,0.001750,0.249994,0,0);}
.m2_c00469{transform:matrix(0.247514,-0.001733,0.001750,0.249994,0,0);-ms-transform:matrix(0.247514,-0.001733,0.001750,0.249994,0,0);-webkit-transform:matrix(0.247514,-0.001733,0.001750,0.249994,0,0);}
.m4_c00469{transform:matrix(0.248409,-0.001739,0.001750,0.249994,0,0);-ms-transform:matrix(0.248409,-0.001739,0.001750,0.249994,0,0);-webkit-transform:matrix(0.248409,-0.001739,0.001750,0.249994,0,0);}
.m13_c00469{transform:matrix(0.251224,-0.001759,0.001750,0.249994,0,0);-ms-transform:matrix(0.251224,-0.001759,0.001750,0.249994,0,0);-webkit-transform:matrix(0.251224,-0.001759,0.001750,0.249994,0,0);}
.m6_c00469{transform:matrix(0.252024,-0.001764,0.001750,0.249994,0,0);-ms-transform:matrix(0.252024,-0.001764,0.001750,0.249994,0,0);-webkit-transform:matrix(0.252024,-0.001764,0.001750,0.249994,0,0);}
.m3_c00469{transform:matrix(0.253219,-0.001773,0.001750,0.249994,0,0);-ms-transform:matrix(0.253219,-0.001773,0.001750,0.249994,0,0);-webkit-transform:matrix(0.253219,-0.001773,0.001750,0.249994,0,0);}
.m10_c00469{transform:matrix(0.256314,-0.001794,0.001750,0.249994,0,0);-ms-transform:matrix(0.256314,-0.001794,0.001750,0.249994,0,0);-webkit-transform:matrix(0.256314,-0.001794,0.001750,0.249994,0,0);}
.m9_c00469{transform:matrix(0.286138,-0.002003,0.001750,0.249994,0,0);-ms-transform:matrix(0.286138,-0.002003,0.001750,0.249994,0,0);-webkit-transform:matrix(0.286138,-0.002003,0.001750,0.249994,0,0);}
.m11_c00469{transform:matrix(0.342702,-0.002399,0.001750,0.249994,0,0);-ms-transform:matrix(0.342702,-0.002399,0.001750,0.249994,0,0);-webkit-transform:matrix(0.342702,-0.002399,0.001750,0.249994,0,0);}
.m5_c00469{transform:matrix(0.352601,-0.002468,0.001750,0.249994,0,0);-ms-transform:matrix(0.352601,-0.002468,0.001750,0.249994,0,0);-webkit-transform:matrix(0.352601,-0.002468,0.001750,0.249994,0,0);}
.m1_c00469{transform:matrix(0.365516,-0.002559,0.001750,0.249994,0,0);-ms-transform:matrix(0.365516,-0.002559,0.001750,0.249994,0,0);-webkit-transform:matrix(0.365516,-0.002559,0.001750,0.249994,0,0);}
.mf_c00469{transform:matrix(0.393580,-0.002755,0.001750,0.249994,0,0);-ms-transform:matrix(0.393580,-0.002755,0.001750,0.249994,0,0);-webkit-transform:matrix(0.393580,-0.002755,0.001750,0.249994,0,0);}
.m0_c00469{transform:matrix(0.557396,-0.003902,0.001750,0.249994,0,0);-ms-transform:matrix(0.557396,-0.003902,0.001750,0.249994,0,0);-webkit-transform:matrix(0.557396,-0.003902,0.001750,0.249994,0,0);}
.mb_c00469{transform:matrix(0.690638,-0.004834,0.001750,0.249994,0,0);-ms-transform:matrix(0.690638,-0.004834,0.001750,0.249994,0,0);-webkit-transform:matrix(0.690638,-0.004834,0.001750,0.249994,0,0);}
.ma_c00469{transform:matrix(0.790071,-0.005530,0.001750,0.249994,0,0);-ms-transform:matrix(0.790071,-0.005530,0.001750,0.249994,0,0);-webkit-transform:matrix(0.790071,-0.005530,0.001750,0.249994,0,0);}
.v0_c00469{vertical-align:0.000000px;}
.ls0_c00469{letter-spacing:0.000000px;}
.sc__c00469{text-shadow:none;}
.sc0_c00469{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__c00469{-webkit-text-stroke:0px transparent;}
.sc0_c00469{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00469{word-spacing:0.000000px;}
.fc0_c00469{color:transparent;}
.fs0_c00469{font-size:84.002058px;}
.y0_c00469{bottom:0.000000px;}
.yc_c00469{bottom:1048.517389px;}
.yd_c00469{bottom:1048.517407px;}
.y12_c00469{bottom:1048.517455px;}
.ye_c00469{bottom:1048.517487px;}
.yb_c00469{bottom:1048.517511px;}
.y14_c00469{bottom:1048.517835px;}
.y13_c00469{bottom:1048.517865px;}
.y11_c00469{bottom:1048.517886px;}
.yf_c00469{bottom:1048.518077px;}
.y10_c00469{bottom:1048.518096px;}
.y1_c00469{bottom:1080.823500px;}
.y2_c00469{bottom:1081.237609px;}
.y3_c00469{bottom:1081.657095px;}
.y4_c00469{bottom:1081.947997px;}
.y5_c00469{bottom:1082.592918px;}
.y6_c00469{bottom:1082.935050px;}
.y7_c00469{bottom:1083.348855px;}
.y8_c00469{bottom:1083.643579px;}
.y9_c00469{bottom:1084.352235px;}
.ya_c00469{bottom:1084.866651px;}
.h2_c00469{height:84.002058px;}
.h0_c00469{height:1246.320000px;}
.h1_c00469{height:1246.500000px;}
.w0_c00469{width:914.700000px;}
.w1_c00469{width:915.000000px;}
.x0_c00469{left:0.000000px;}
.xa_c00469{left:2.428244px;}
.x1_c00469{left:59.287500px;}
.x2_c00469{left:119.214000px;}
.x3_c00469{left:160.771500px;}
.xb_c00469{left:196.563257px;}
.x4_c00469{left:252.903000px;}
.x5_c00469{left:301.779000px;}
.x6_c00469{left:360.894000px;}
.x7_c00469{left:402.997500px;}
.xc_c00469{left:454.149878px;}
.xd_c00469{left:503.020772px;}
.x8_c00469{left:504.234000px;}
.x9_c00469{left:577.722000px;}
.xe_c00469{left:594.823766px;}
.xf_c00469{left:629.113945px;}
.x10_c00469{left:645.584754px;}
.x11_c00469{left:732.527517px;}
.x12_c00469{left:807.589692px;}
.x13_c00469{left:827.300658px;}
@media print{
.v0_c00469{vertical-align:0.000000pt;}
.ls0_c00469{letter-spacing:0.000000pt;}
.ws0_c00469{word-spacing:0.000000pt;}
.fs0_c00469{font-size:74.668496pt;}
.y0_c00469{bottom:0.000000pt;}
.yc_c00469{bottom:932.015457pt;}
.yd_c00469{bottom:932.015473pt;}
.y12_c00469{bottom:932.015516pt;}
.ye_c00469{bottom:932.015544pt;}
.yb_c00469{bottom:932.015565pt;}
.y14_c00469{bottom:932.015853pt;}
.y13_c00469{bottom:932.015880pt;}
.y11_c00469{bottom:932.015899pt;}
.yf_c00469{bottom:932.016068pt;}
.y10_c00469{bottom:932.016085pt;}
.y1_c00469{bottom:960.732000pt;}
.y2_c00469{bottom:961.100097pt;}
.y3_c00469{bottom:961.472973pt;}
.y4_c00469{bottom:961.731553pt;}
.y5_c00469{bottom:962.304816pt;}
.y6_c00469{bottom:962.608933pt;}
.y7_c00469{bottom:962.976760pt;}
.y8_c00469{bottom:963.238737pt;}
.y9_c00469{bottom:963.868653pt;}
.ya_c00469{bottom:964.325912pt;}
.h2_c00469{height:74.668496pt;}
.h0_c00469{height:1107.840000pt;}
.h1_c00469{height:1108.000000pt;}
.w0_c00469{width:813.066667pt;}
.w1_c00469{width:813.333333pt;}
.x0_c00469{left:0.000000pt;}
.xa_c00469{left:2.158439pt;}
.x1_c00469{left:52.700000pt;}
.x2_c00469{left:105.968000pt;}
.x3_c00469{left:142.908000pt;}
.xb_c00469{left:174.722895pt;}
.x4_c00469{left:224.802667pt;}
.x5_c00469{left:268.248000pt;}
.x6_c00469{left:320.794667pt;}
.x7_c00469{left:358.220000pt;}
.xc_c00469{left:403.688780pt;}
.xd_c00469{left:447.129575pt;}
.x8_c00469{left:448.208000pt;}
.x9_c00469{left:513.530667pt;}
.xe_c00469{left:528.732236pt;}
.xf_c00469{left:559.212396pt;}
.x10_c00469{left:573.853115pt;}
.x11_c00469{left:651.135571pt;}
.x12_c00469{left:717.857504pt;}
.x13_c00469{left:735.378363pt;}
}





/* 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_c00470 {
    display:none;
  }
  .loading-indicator_c00470.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00470 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_c00470 { 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_c00470" -> "#page-container .classname_c00470")
 */
.pf_c00470 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00470 { /* 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_c00470.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00470 { /* 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_c00470 { /* 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_c00470 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00470 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00470 {overflow:visible;}
  }
}
.c_c00470 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00470 { /* 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_c00470:after { /* webkit #35443 */
  content: '';
}
.t_c00470:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00470 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 */
}
.__c00470 { /* 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_c00470 { /* info for Javascript */
  display:none;
}
.l_c00470 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00470 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00470 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00470: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_c00470 {
    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_c00470.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00470.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_c00470 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00470{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00470;src:url('chunks/assets/font_c605e72f209fc835e906f064.woff2')format("woff");}.ff1_c00470{font-family:ff1_c00470;line-height:1.000000;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;}
.m3a_c00470{transform:matrix(0.025873,0.000336,-0.003250,0.249979,0,0);-ms-transform:matrix(0.025873,0.000336,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.025873,0.000336,-0.003250,0.249979,0,0);}
.m8_c00470{transform:matrix(0.027907,0.000419,-0.003750,0.249972,0,0);-ms-transform:matrix(0.027907,0.000419,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.027907,0.000419,-0.003750,0.249972,0,0);}
.m5c_c00470{transform:matrix(0.080405,0.001528,-0.004749,0.249955,0,0);-ms-transform:matrix(0.080405,0.001528,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.080405,0.001528,-0.004749,0.249955,0,0);}
.m7_c00470{transform:matrix(0.100909,0.001514,-0.003750,0.249972,0,0);-ms-transform:matrix(0.100909,0.001514,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.100909,0.001514,-0.003750,0.249972,0,0);}
.mf0_c00470{transform:matrix(0.116587,0.004902,-0.010501,0.249779,0,0);-ms-transform:matrix(0.116587,0.004902,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.116587,0.004902,-0.010501,0.249779,0,0);}
.mc4_c00470{transform:matrix(0.120436,0.003252,-0.006748,0.249909,0,0);-ms-transform:matrix(0.120436,0.003252,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.120436,0.003252,-0.006748,0.249909,0,0);}
.m5d_c00470{transform:matrix(0.120458,0.002289,-0.004749,0.249955,0,0);-ms-transform:matrix(0.120458,0.002289,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.120458,0.002289,-0.004749,0.249955,0,0);}
.ma9_c00470{transform:matrix(0.124961,0.004003,-0.008004,0.249872,0,0);-ms-transform:matrix(0.124961,0.004003,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.124961,0.004003,-0.008004,0.249872,0,0);}
.m15_c00470{transform:matrix(0.127266,0.001909,-0.003750,0.249972,0,0);-ms-transform:matrix(0.127266,0.001909,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.127266,0.001909,-0.003750,0.249972,0,0);}
.me0_c00470{transform:matrix(0.129836,0.005069,-0.009752,0.249810,0,0);-ms-transform:matrix(0.129836,0.005069,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.129836,0.005069,-0.009752,0.249810,0,0);}
.m9c_c00470{transform:matrix(0.132119,0.003831,-0.007247,0.249895,0,0);-ms-transform:matrix(0.132119,0.003831,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.132119,0.003831,-0.007247,0.249895,0,0);}
.m4d_c00470{transform:matrix(0.132246,0.002248,-0.004249,0.249964,0,0);-ms-transform:matrix(0.132246,0.002248,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.132246,0.002248,-0.004249,0.249964,0,0);}
.md3_c00470{transform:matrix(0.138628,0.004159,-0.007497,0.249888,0,0);-ms-transform:matrix(0.138628,0.004159,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.138628,0.004159,-0.007497,0.249888,0,0);}
.m79_c00470{transform:matrix(0.140395,0.002667,-0.004749,0.249955,0,0);-ms-transform:matrix(0.140395,0.002667,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.140395,0.002667,-0.004749,0.249955,0,0);}
.mb7_c00470{transform:matrix(0.140692,0.004361,-0.007746,0.249880,0,0);-ms-transform:matrix(0.140692,0.004361,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.140692,0.004361,-0.007746,0.249880,0,0);}
.mc3_c00470{transform:matrix(0.142073,0.003836,-0.006748,0.249909,0,0);-ms-transform:matrix(0.142073,0.003836,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.142073,0.003836,-0.006748,0.249909,0,0);}
.m2a_c00470{transform:matrix(0.143269,0.002149,-0.003750,0.249972,0,0);-ms-transform:matrix(0.143269,0.002149,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.143269,0.002149,-0.003750,0.249972,0,0);}
.me9_c00470{transform:matrix(0.143296,0.005594,-0.009752,0.249810,0,0);-ms-transform:matrix(0.143296,0.005594,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.143296,0.005594,-0.009752,0.249810,0,0);}
.m77_c00470{transform:matrix(0.143949,0.002735,-0.004749,0.249955,0,0);-ms-transform:matrix(0.143949,0.002735,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.143949,0.002735,-0.004749,0.249955,0,0);}
.m6a_c00470{transform:matrix(0.145839,0.002771,-0.004749,0.249955,0,0);-ms-transform:matrix(0.145839,0.002771,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.145839,0.002771,-0.004749,0.249955,0,0);}
.m1d_c00470{transform:matrix(0.145854,0.001750,-0.003000,0.249982,0,0);-ms-transform:matrix(0.145854,0.001750,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.145854,0.001750,-0.003000,0.249982,0,0);}
.m88_c00470{transform:matrix(0.149964,0.003299,-0.005499,0.249940,0,0);-ms-transform:matrix(0.149964,0.003299,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.149964,0.003299,-0.005499,0.249940,0,0);}
.m7e_c00470{transform:matrix(0.150749,0.003316,-0.005499,0.249940,0,0);-ms-transform:matrix(0.150749,0.003316,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.150749,0.003316,-0.005499,0.249940,0,0);}
.m8b_c00470{transform:matrix(0.154653,0.003402,-0.005499,0.249940,0,0);-ms-transform:matrix(0.154653,0.003402,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.154653,0.003402,-0.005499,0.249940,0,0);}
.mf1_c00470{transform:matrix(0.154808,0.006508,-0.010501,0.249779,0,0);-ms-transform:matrix(0.154808,0.006508,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.154808,0.006508,-0.010501,0.249779,0,0);}
.mb2_c00470{transform:matrix(0.157199,0.005035,-0.008004,0.249872,0,0);-ms-transform:matrix(0.157199,0.005035,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.157199,0.005035,-0.008004,0.249872,0,0);}
.maa_c00470{transform:matrix(0.160688,0.005147,-0.008004,0.249872,0,0);-ms-transform:matrix(0.160688,0.005147,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.160688,0.005147,-0.008004,0.249872,0,0);}
.m5e_c00470{transform:matrix(0.161526,0.003069,-0.004749,0.249955,0,0);-ms-transform:matrix(0.161526,0.003069,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.161526,0.003069,-0.004749,0.249955,0,0);}
.m16_c00470{transform:matrix(0.165146,0.002477,-0.003750,0.249972,0,0);-ms-transform:matrix(0.165146,0.002477,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.165146,0.002477,-0.003750,0.249972,0,0);}
.m89_c00470{transform:matrix(0.170289,0.003746,-0.005499,0.249940,0,0);-ms-transform:matrix(0.170289,0.003746,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.170289,0.003746,-0.005499,0.249940,0,0);}
.m9d_c00470{transform:matrix(0.171768,0.004981,-0.007247,0.249895,0,0);-ms-transform:matrix(0.171768,0.004981,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.171768,0.004981,-0.007247,0.249895,0,0);}
.m11_c00470{transform:matrix(0.173835,0.002608,-0.003750,0.249972,0,0);-ms-transform:matrix(0.173835,0.002608,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.173835,0.002608,-0.003750,0.249972,0,0);}
.me1_c00470{transform:matrix(0.174432,0.006810,-0.009752,0.249810,0,0);-ms-transform:matrix(0.174432,0.006810,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.174432,0.006810,-0.009752,0.249810,0,0);}
.m2_c00470{transform:matrix(0.175140,0.002627,-0.003750,0.249972,0,0);-ms-transform:matrix(0.175140,0.002627,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.175140,0.002627,-0.003750,0.249972,0,0);}
.m4e_c00470{transform:matrix(0.175270,0.002980,-0.004249,0.249964,0,0);-ms-transform:matrix(0.175270,0.002980,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.175270,0.002980,-0.004249,0.249964,0,0);}
.md0_c00470{transform:matrix(0.176376,0.005291,-0.007497,0.249888,0,0);-ms-transform:matrix(0.176376,0.005291,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.176376,0.005291,-0.007497,0.249888,0,0);}
.md2_c00470{transform:matrix(0.177135,0.005314,-0.007497,0.249888,0,0);-ms-transform:matrix(0.177135,0.005314,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.177135,0.005314,-0.007497,0.249888,0,0);}
.m83_c00470{transform:matrix(0.179132,0.003941,-0.005499,0.249940,0,0);-ms-transform:matrix(0.179132,0.003941,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.179132,0.003941,-0.005499,0.249940,0,0);}
.m9b_c00470{transform:matrix(0.181119,0.005252,-0.007247,0.249895,0,0);-ms-transform:matrix(0.181119,0.005252,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.181119,0.005252,-0.007247,0.249895,0,0);}
.ma4_c00470{transform:matrix(0.182873,0.005303,-0.007247,0.249895,0,0);-ms-transform:matrix(0.182873,0.005303,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.182873,0.005303,-0.007247,0.249895,0,0);}
.m81_c00470{transform:matrix(0.183191,0.004030,-0.005499,0.249940,0,0);-ms-transform:matrix(0.183191,0.004030,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.183191,0.004030,-0.005499,0.249940,0,0);}
.m8c_c00470{transform:matrix(0.185490,0.004081,-0.005499,0.249940,0,0);-ms-transform:matrix(0.185490,0.004081,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.185490,0.004081,-0.005499,0.249940,0,0);}
.mf8_c00470{transform:matrix(0.185666,0.007806,-0.010501,0.249779,0,0);-ms-transform:matrix(0.185666,0.007806,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.185666,0.007806,-0.010501,0.249779,0,0);}
.m8a_c00470{transform:matrix(0.186685,0.004107,-0.005499,0.249940,0,0);-ms-transform:matrix(0.186685,0.004107,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.186685,0.004107,-0.005499,0.249940,0,0);}
.m1e_c00470{transform:matrix(0.188466,0.002262,-0.003000,0.249982,0,0);-ms-transform:matrix(0.188466,0.002262,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.188466,0.002262,-0.003000,0.249982,0,0);}
.m2b_c00470{transform:matrix(0.189404,0.002841,-0.003750,0.249972,0,0);-ms-transform:matrix(0.189404,0.002841,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.189404,0.002841,-0.003750,0.249972,0,0);}
.mc7_c00470{transform:matrix(0.190755,0.005150,-0.006748,0.249909,0,0);-ms-transform:matrix(0.190755,0.005150,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.190755,0.005150,-0.006748,0.249909,0,0);}
.mb8_c00470{transform:matrix(0.191303,0.005930,-0.007746,0.249880,0,0);-ms-transform:matrix(0.191303,0.005930,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.191303,0.005930,-0.007746,0.249880,0,0);}
.m6b_c00470{transform:matrix(0.191340,0.003635,-0.004749,0.249955,0,0);-ms-transform:matrix(0.191340,0.003635,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.191340,0.003635,-0.004749,0.249955,0,0);}
.m8e_c00470{transform:matrix(0.192285,0.005192,-0.006748,0.249909,0,0);-ms-transform:matrix(0.192285,0.005192,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.192285,0.005192,-0.006748,0.249909,0,0);}
.mac_c00470{transform:matrix(0.193056,0.006184,-0.008004,0.249872,0,0);-ms-transform:matrix(0.193056,0.006184,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.193056,0.006184,-0.008004,0.249872,0,0);}
.m84_c00470{transform:matrix(0.193378,0.004254,-0.005499,0.249940,0,0);-ms-transform:matrix(0.193378,0.004254,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.193378,0.004254,-0.005499,0.249940,0,0);}
.m30_c00470{transform:matrix(0.193403,0.002901,-0.003750,0.249972,0,0);-ms-transform:matrix(0.193403,0.002901,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.193403,0.002901,-0.003750,0.249972,0,0);}
.m63_c00470{transform:matrix(0.194905,0.003703,-0.004749,0.249955,0,0);-ms-transform:matrix(0.194905,0.003703,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.194905,0.003703,-0.004749,0.249955,0,0);}
.m66_c00470{transform:matrix(0.196699,0.003737,-0.004749,0.249955,0,0);-ms-transform:matrix(0.196699,0.003737,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.196699,0.003737,-0.004749,0.249955,0,0);}
.mc8_c00470{transform:matrix(0.199657,0.005391,-0.006748,0.249909,0,0);-ms-transform:matrix(0.199657,0.005391,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.199657,0.005391,-0.006748,0.249909,0,0);}
.mf6_c00470{transform:matrix(0.200453,0.008427,-0.010501,0.249779,0,0);-ms-transform:matrix(0.200453,0.008427,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.200453,0.008427,-0.010501,0.249779,0,0);}
.m87_c00470{transform:matrix(0.200501,0.004411,-0.005499,0.249940,0,0);-ms-transform:matrix(0.200501,0.004411,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.200501,0.004411,-0.005499,0.249940,0,0);}
.m86_c00470{transform:matrix(0.201876,0.004441,-0.005499,0.249940,0,0);-ms-transform:matrix(0.201876,0.004441,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.201876,0.004441,-0.005499,0.249940,0,0);}
.mcd_c00470{transform:matrix(0.202516,0.005468,-0.006748,0.249909,0,0);-ms-transform:matrix(0.202516,0.005468,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.202516,0.005468,-0.006748,0.249909,0,0);}
.m61_c00470{transform:matrix(0.204118,0.003878,-0.004749,0.249955,0,0);-ms-transform:matrix(0.204118,0.003878,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.204118,0.003878,-0.004749,0.249955,0,0);}
.m50_c00470{transform:matrix(0.204785,0.003481,-0.004249,0.249964,0,0);-ms-transform:matrix(0.204785,0.003481,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.204785,0.003481,-0.004249,0.249964,0,0);}
.m5_c00470{transform:matrix(0.206072,0.003091,-0.003750,0.249972,0,0);-ms-transform:matrix(0.206072,0.003091,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.206072,0.003091,-0.003750,0.249972,0,0);}
.mf3_c00470{transform:matrix(0.206548,0.008684,-0.010501,0.249779,0,0);-ms-transform:matrix(0.206548,0.008684,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.206548,0.008684,-0.010501,0.249779,0,0);}
.m13_c00470{transform:matrix(0.206717,0.003101,-0.003750,0.249972,0,0);-ms-transform:matrix(0.206717,0.003101,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.206717,0.003101,-0.003750,0.249972,0,0);}
.m96_c00470{transform:matrix(0.207939,0.005614,-0.006748,0.249909,0,0);-ms-transform:matrix(0.207939,0.005614,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.207939,0.005614,-0.006748,0.249909,0,0);}
.m64_c00470{transform:matrix(0.208027,0.003953,-0.004749,0.249955,0,0);-ms-transform:matrix(0.208027,0.003953,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.208027,0.003953,-0.004749,0.249955,0,0);}
.mf9_c00470{transform:matrix(0.208856,0.008781,-0.010501,0.249779,0,0);-ms-transform:matrix(0.208856,0.008781,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.208856,0.008781,-0.010501,0.249779,0,0);}
.ma6_c00470{transform:matrix(0.209212,0.006067,-0.007247,0.249895,0,0);-ms-transform:matrix(0.209212,0.006067,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.209212,0.006067,-0.007247,0.249895,0,0);}
.me5_c00470{transform:matrix(0.209890,0.008194,-0.009752,0.249810,0,0);-ms-transform:matrix(0.209890,0.008194,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.209890,0.008194,-0.009752,0.249810,0,0);}
.mee_c00470{transform:matrix(0.210424,0.008847,-0.010501,0.249779,0,0);-ms-transform:matrix(0.210424,0.008847,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.210424,0.008847,-0.010501,0.249779,0,0);}
.m80_c00470{transform:matrix(0.210589,0.004633,-0.005499,0.249940,0,0);-ms-transform:matrix(0.210589,0.004633,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.210589,0.004633,-0.005499,0.249940,0,0);}
.m90_c00470{transform:matrix(0.211233,0.005703,-0.006748,0.249909,0,0);-ms-transform:matrix(0.211233,0.005703,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.211233,0.005703,-0.006748,0.249909,0,0);}
.mca_c00470{transform:matrix(0.211243,0.005704,-0.006748,0.249909,0,0);-ms-transform:matrix(0.211243,0.005704,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.211243,0.005704,-0.006748,0.249909,0,0);}
.ma2_c00470{transform:matrix(0.211476,0.006133,-0.007247,0.249895,0,0);-ms-transform:matrix(0.211476,0.006133,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.211476,0.006133,-0.007247,0.249895,0,0);}
.m48_c00470{transform:matrix(0.211527,0.004019,-0.004749,0.249955,0,0);-ms-transform:matrix(0.211527,0.004019,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.211527,0.004019,-0.004749,0.249955,0,0);}
.m1b_c00470{transform:matrix(0.211876,0.003178,-0.003750,0.249972,0,0);-ms-transform:matrix(0.211876,0.003178,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.211876,0.003178,-0.003750,0.249972,0,0);}
.mf_c00470{transform:matrix(0.212651,0.003190,-0.003750,0.249972,0,0);-ms-transform:matrix(0.212651,0.003190,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.212651,0.003190,-0.003750,0.249972,0,0);}
.m74_c00470{transform:matrix(0.212817,0.004044,-0.004749,0.249955,0,0);-ms-transform:matrix(0.212817,0.004044,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.212817,0.004044,-0.004749,0.249955,0,0);}
.md5_c00470{transform:matrix(0.212844,0.006385,-0.007497,0.249888,0,0);-ms-transform:matrix(0.212844,0.006385,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.212844,0.006385,-0.007497,0.249888,0,0);}
.m44_c00470{transform:matrix(0.214376,0.004073,-0.004749,0.249955,0,0);-ms-transform:matrix(0.214376,0.004073,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.214376,0.004073,-0.004749,0.249955,0,0);}
.m7f_c00470{transform:matrix(0.214718,0.004724,-0.005499,0.249940,0,0);-ms-transform:matrix(0.214718,0.004724,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.214718,0.004724,-0.005499,0.249940,0,0);}
.md6_c00470{transform:matrix(0.215053,0.006452,-0.007497,0.249888,0,0);-ms-transform:matrix(0.215053,0.006452,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.215053,0.006452,-0.007497,0.249888,0,0);}
.mb0_c00470{transform:matrix(0.215509,0.006903,-0.008004,0.249872,0,0);-ms-transform:matrix(0.215509,0.006903,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.215509,0.006903,-0.008004,0.249872,0,0);}
.me2_c00470{transform:matrix(0.215591,0.008416,-0.009752,0.249810,0,0);-ms-transform:matrix(0.215591,0.008416,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.215591,0.008416,-0.009752,0.249810,0,0);}
.mf5_c00470{transform:matrix(0.216349,0.009096,-0.010501,0.249779,0,0);-ms-transform:matrix(0.216349,0.009096,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.216349,0.009096,-0.010501,0.249779,0,0);}
.m17_c00470{transform:matrix(0.218255,0.003274,-0.003750,0.249972,0,0);-ms-transform:matrix(0.218255,0.003274,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.218255,0.003274,-0.003750,0.249972,0,0);}
.md4_c00470{transform:matrix(0.218367,0.006551,-0.007497,0.249888,0,0);-ms-transform:matrix(0.218367,0.006551,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.218367,0.006551,-0.007497,0.249888,0,0);}
.m78_c00470{transform:matrix(0.219095,0.004163,-0.004749,0.249955,0,0);-ms-transform:matrix(0.219095,0.004163,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.219095,0.004163,-0.004749,0.249955,0,0);}
.m49_c00470{transform:matrix(0.219495,0.004170,-0.004749,0.249955,0,0);-ms-transform:matrix(0.219495,0.004170,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.219495,0.004170,-0.004749,0.249955,0,0);}
.mf2_c00470{transform:matrix(0.220510,0.009271,-0.010501,0.249779,0,0);-ms-transform:matrix(0.220510,0.009271,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.220510,0.009271,-0.010501,0.249779,0,0);}
.m82_c00470{transform:matrix(0.220622,0.004854,-0.005499,0.249940,0,0);-ms-transform:matrix(0.220622,0.004854,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.220622,0.004854,-0.005499,0.249940,0,0);}
.m67_c00470{transform:matrix(0.222045,0.004219,-0.004749,0.249955,0,0);-ms-transform:matrix(0.222045,0.004219,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.222045,0.004219,-0.004749,0.249955,0,0);}
.m1c_c00470{transform:matrix(0.222490,0.003337,-0.003750,0.249972,0,0);-ms-transform:matrix(0.222490,0.003337,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.222490,0.003337,-0.003750,0.249972,0,0);}
.mc9_c00470{transform:matrix(0.223139,0.006025,-0.006748,0.249909,0,0);-ms-transform:matrix(0.223139,0.006025,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.223139,0.006025,-0.006748,0.249909,0,0);}
.m65_c00470{transform:matrix(0.224479,0.004265,-0.004749,0.249955,0,0);-ms-transform:matrix(0.224479,0.004265,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.224479,0.004265,-0.004749,0.249955,0,0);}
.md7_c00470{transform:matrix(0.224499,0.006735,-0.007497,0.249888,0,0);-ms-transform:matrix(0.224499,0.006735,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.224499,0.006735,-0.007497,0.249888,0,0);}
.mc6_c00470{transform:matrix(0.224573,0.006063,-0.006748,0.249909,0,0);-ms-transform:matrix(0.224573,0.006063,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.224573,0.006063,-0.006748,0.249909,0,0);}
.mcb_c00470{transform:matrix(0.224708,0.006067,-0.006748,0.249909,0,0);-ms-transform:matrix(0.224708,0.006067,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.224708,0.006067,-0.006748,0.249909,0,0);}
.mcc_c00470{transform:matrix(0.224798,0.006070,-0.006748,0.249909,0,0);-ms-transform:matrix(0.224798,0.006070,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.224798,0.006070,-0.006748,0.249909,0,0);}
.mec_c00470{transform:matrix(0.225266,0.009471,-0.010501,0.249779,0,0);-ms-transform:matrix(0.225266,0.009471,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.225266,0.009471,-0.010501,0.249779,0,0);}
.m6d_c00470{transform:matrix(0.225304,0.004281,-0.004749,0.249955,0,0);-ms-transform:matrix(0.225304,0.004281,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.225304,0.004281,-0.004749,0.249955,0,0);}
.m28_c00470{transform:matrix(0.225329,0.002704,-0.003000,0.249982,0,0);-ms-transform:matrix(0.225329,0.002704,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.225329,0.002704,-0.003000,0.249982,0,0);}
.mae_c00470{transform:matrix(0.225729,0.007231,-0.008004,0.249872,0,0);-ms-transform:matrix(0.225729,0.007231,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.225729,0.007231,-0.008004,0.249872,0,0);}
.ma3_c00470{transform:matrix(0.226480,0.006568,-0.007247,0.249895,0,0);-ms-transform:matrix(0.226480,0.006568,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.226480,0.006568,-0.007247,0.249895,0,0);}
.m18_c00470{transform:matrix(0.227064,0.003406,-0.003750,0.249972,0,0);-ms-transform:matrix(0.227064,0.003406,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.227064,0.003406,-0.003750,0.249972,0,0);}
.m85_c00470{transform:matrix(0.227220,0.004999,-0.005499,0.249940,0,0);-ms-transform:matrix(0.227220,0.004999,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.227220,0.004999,-0.005499,0.249940,0,0);}
.m2d_c00470{transform:matrix(0.227229,0.003408,-0.003750,0.249972,0,0);-ms-transform:matrix(0.227229,0.003408,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.227229,0.003408,-0.003750,0.249972,0,0);}
.m70_c00470{transform:matrix(0.227389,0.004320,-0.004749,0.249955,0,0);-ms-transform:matrix(0.227389,0.004320,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.227389,0.004320,-0.004749,0.249955,0,0);}
.me6_c00470{transform:matrix(0.227682,0.008888,-0.009752,0.249810,0,0);-ms-transform:matrix(0.227682,0.008888,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.227682,0.008888,-0.009752,0.249810,0,0);}
.m20_c00470{transform:matrix(0.228064,0.002737,-0.003000,0.249982,0,0);-ms-transform:matrix(0.228064,0.002737,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.228064,0.002737,-0.003000,0.249982,0,0);}
.m62_c00470{transform:matrix(0.228634,0.004344,-0.004749,0.249955,0,0);-ms-transform:matrix(0.228634,0.004344,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.228634,0.004344,-0.004749,0.249955,0,0);}
.mbb_c00470{transform:matrix(0.228830,0.007094,-0.007746,0.249880,0,0);-ms-transform:matrix(0.228830,0.007094,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.228830,0.007094,-0.007746,0.249880,0,0);}
.m93_c00470{transform:matrix(0.229032,0.006184,-0.006748,0.249909,0,0);-ms-transform:matrix(0.229032,0.006184,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.229032,0.006184,-0.006748,0.249909,0,0);}
.me7_c00470{transform:matrix(0.229260,0.008950,-0.009752,0.249810,0,0);-ms-transform:matrix(0.229260,0.008950,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.229260,0.008950,-0.009752,0.249810,0,0);}
.md_c00470{transform:matrix(0.229904,0.003449,-0.003750,0.249972,0,0);-ms-transform:matrix(0.229904,0.003449,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.229904,0.003449,-0.003750,0.249972,0,0);}
.mf7_c00470{transform:matrix(0.230107,0.009674,-0.010501,0.249779,0,0);-ms-transform:matrix(0.230107,0.009674,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.230107,0.009674,-0.010501,0.249779,0,0);}
.mad_c00470{transform:matrix(0.230372,0.007379,-0.008004,0.249872,0,0);-ms-transform:matrix(0.230372,0.007379,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.230372,0.007379,-0.008004,0.249872,0,0);}
.med_c00470{transform:matrix(0.230896,0.009707,-0.010501,0.249779,0,0);-ms-transform:matrix(0.230896,0.009707,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.230896,0.009707,-0.010501,0.249779,0,0);}
.m60_c00470{transform:matrix(0.230968,0.004388,-0.004749,0.249955,0,0);-ms-transform:matrix(0.230968,0.004388,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.230968,0.004388,-0.004749,0.249955,0,0);}
.mab_c00470{transform:matrix(0.231801,0.007425,-0.008004,0.249872,0,0);-ms-transform:matrix(0.231801,0.007425,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.231801,0.007425,-0.008004,0.249872,0,0);}
.m23_c00470{transform:matrix(0.232578,0.002791,-0.003000,0.249982,0,0);-ms-transform:matrix(0.232578,0.002791,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.232578,0.002791,-0.003000,0.249982,0,0);}
.m19_c00470{transform:matrix(0.232889,0.003493,-0.003750,0.249972,0,0);-ms-transform:matrix(0.232889,0.003493,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.232889,0.003493,-0.003750,0.249972,0,0);}
.maf_c00470{transform:matrix(0.233300,0.007473,-0.008004,0.249872,0,0);-ms-transform:matrix(0.233300,0.007473,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.233300,0.007473,-0.008004,0.249872,0,0);}
.m54_c00470{transform:matrix(0.234656,0.003989,-0.004249,0.249964,0,0);-ms-transform:matrix(0.234656,0.003989,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.234656,0.003989,-0.004249,0.249964,0,0);}
.m68_c00470{transform:matrix(0.235433,0.004473,-0.004749,0.249955,0,0);-ms-transform:matrix(0.235433,0.004473,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.235433,0.004473,-0.004749,0.249955,0,0);}
.m10_c00470{transform:matrix(0.236353,0.003545,-0.003750,0.249972,0,0);-ms-transform:matrix(0.236353,0.003545,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.236353,0.003545,-0.003750,0.249972,0,0);}
.m4f_c00470{transform:matrix(0.236821,0.004026,-0.004249,0.249964,0,0);-ms-transform:matrix(0.236821,0.004026,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.236821,0.004026,-0.004249,0.249964,0,0);}
.mb1_c00470{transform:matrix(0.237068,0.007594,-0.008004,0.249872,0,0);-ms-transform:matrix(0.237068,0.007594,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.237068,0.007594,-0.008004,0.249872,0,0);}
.m3_c00470{transform:matrix(0.237593,0.003564,-0.003750,0.249972,0,0);-ms-transform:matrix(0.237593,0.003564,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.237593,0.003564,-0.003750,0.249972,0,0);}
.m4a_c00470{transform:matrix(0.237912,0.004520,-0.004749,0.249955,0,0);-ms-transform:matrix(0.237912,0.004520,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.237912,0.004520,-0.004749,0.249955,0,0);}
.m47_c00470{transform:matrix(0.238257,0.004527,-0.004749,0.249955,0,0);-ms-transform:matrix(0.238257,0.004527,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.238257,0.004527,-0.004749,0.249955,0,0);}
.ma0_c00470{transform:matrix(0.238375,0.006913,-0.007247,0.249895,0,0);-ms-transform:matrix(0.238375,0.006913,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.238375,0.006913,-0.007247,0.249895,0,0);}
.m51_c00470{transform:matrix(0.238830,0.004060,-0.004249,0.249964,0,0);-ms-transform:matrix(0.238830,0.004060,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.238830,0.004060,-0.004249,0.249964,0,0);}
.meb_c00470{transform:matrix(0.238909,0.010044,-0.010501,0.249779,0,0);-ms-transform:matrix(0.238909,0.010044,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.238909,0.010044,-0.010501,0.249779,0,0);}
.m31_c00470{transform:matrix(0.239268,0.003589,-0.003750,0.249972,0,0);-ms-transform:matrix(0.239268,0.003589,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.239268,0.003589,-0.003750,0.249972,0,0);}
.m52_c00470{transform:matrix(0.239610,0.004073,-0.004249,0.249964,0,0);-ms-transform:matrix(0.239610,0.004073,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.239610,0.004073,-0.004249,0.249964,0,0);}
.m5f_c00470{transform:matrix(0.240182,0.004563,-0.004749,0.249955,0,0);-ms-transform:matrix(0.240182,0.004563,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.240182,0.004563,-0.004749,0.249955,0,0);}
.m8f_c00470{transform:matrix(0.241492,0.006520,-0.006748,0.249909,0,0);-ms-transform:matrix(0.241492,0.006520,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.241492,0.006520,-0.006748,0.249909,0,0);}
.ma_c00470{transform:matrix(0.241523,0.003623,-0.003750,0.249972,0,0);-ms-transform:matrix(0.241523,0.003623,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.241523,0.003623,-0.003750,0.249972,0,0);}
.m1a_c00470{transform:matrix(0.241553,0.003623,-0.003750,0.249972,0,0);-ms-transform:matrix(0.241553,0.003623,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.241553,0.003623,-0.003750,0.249972,0,0);}
.m24_c00470{transform:matrix(0.242528,0.002910,-0.003000,0.249982,0,0);-ms-transform:matrix(0.242528,0.002910,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.242528,0.002910,-0.003000,0.249982,0,0);}
.m9_c00470{transform:matrix(0.242723,0.003641,-0.003750,0.249972,0,0);-ms-transform:matrix(0.242723,0.003641,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.242723,0.003641,-0.003750,0.249972,0,0);}
.m9f_c00470{transform:matrix(0.243388,0.007058,-0.007247,0.249895,0,0);-ms-transform:matrix(0.243388,0.007058,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.243388,0.007058,-0.007247,0.249895,0,0);}
.m40_c00470{transform:matrix(0.243549,0.003166,-0.003250,0.249979,0,0);-ms-transform:matrix(0.243549,0.003166,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.243549,0.003166,-0.003250,0.249979,0,0);}
.m75_c00470{transform:matrix(0.244106,0.004638,-0.004749,0.249955,0,0);-ms-transform:matrix(0.244106,0.004638,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.244106,0.004638,-0.004749,0.249955,0,0);}
.m6e_c00470{transform:matrix(0.244211,0.004640,-0.004749,0.249955,0,0);-ms-transform:matrix(0.244211,0.004640,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.244211,0.004640,-0.004749,0.249955,0,0);}
.m99_c00470{transform:matrix(0.244276,0.005130,-0.005249,0.249945,0,0);-ms-transform:matrix(0.244276,0.005130,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.244276,0.005130,-0.005249,0.249945,0,0);}
.md8_c00470{transform:matrix(0.244760,0.007343,-0.007497,0.249888,0,0);-ms-transform:matrix(0.244760,0.007343,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.244760,0.007343,-0.007497,0.249888,0,0);}
.m72_c00470{transform:matrix(0.245111,0.004657,-0.004749,0.249955,0,0);-ms-transform:matrix(0.245111,0.004657,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.245111,0.004657,-0.004749,0.249955,0,0);}
.m8d_c00470{transform:matrix(0.245461,0.006627,-0.006748,0.249909,0,0);-ms-transform:matrix(0.245461,0.006627,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.245461,0.006627,-0.006748,0.249909,0,0);}
.mb_c00470{transform:matrix(0.246207,0.003693,-0.003750,0.249972,0,0);-ms-transform:matrix(0.246207,0.003693,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.246207,0.003693,-0.003750,0.249972,0,0);}
.mea_c00470{transform:matrix(0.246347,0.009617,-0.009752,0.249810,0,0);-ms-transform:matrix(0.246347,0.009617,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.246347,0.009617,-0.009752,0.249810,0,0);}
.mc5_c00470{transform:matrix(0.246425,0.006653,-0.006748,0.249909,0,0);-ms-transform:matrix(0.246425,0.006653,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.246425,0.006653,-0.006748,0.249909,0,0);}
.m9e_c00470{transform:matrix(0.246711,0.007155,-0.007247,0.249895,0,0);-ms-transform:matrix(0.246711,0.007155,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.246711,0.007155,-0.007247,0.249895,0,0);}
.mb5_c00470{transform:matrix(0.247236,0.007664,-0.007746,0.249880,0,0);-ms-transform:matrix(0.247236,0.007664,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.247236,0.007664,-0.007746,0.249880,0,0);}
.m7c_c00470{transform:matrix(0.247300,0.005193,-0.005249,0.249945,0,0);-ms-transform:matrix(0.247300,0.005193,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.247300,0.005193,-0.005249,0.249945,0,0);}
.ma1_c00470{transform:matrix(0.249040,0.007222,-0.007247,0.249895,0,0);-ms-transform:matrix(0.249040,0.007222,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.249040,0.007222,-0.007247,0.249895,0,0);}
.m1_c00470{transform:matrix(0.249587,0.003744,-0.003750,0.249972,0,0);-ms-transform:matrix(0.249587,0.003744,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.249587,0.003744,-0.003750,0.249972,0,0);}
.m53_c00470{transform:matrix(0.249974,0.004250,-0.004249,0.249964,0,0);-ms-transform:matrix(0.249974,0.004250,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.249974,0.004250,-0.004249,0.249964,0,0);}
.mef_c00470{transform:matrix(0.250154,0.010517,-0.010501,0.249779,0,0);-ms-transform:matrix(0.250154,0.010517,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.250154,0.010517,-0.010501,0.249779,0,0);}
.m92_c00470{transform:matrix(0.250244,0.006757,-0.006748,0.249909,0,0);-ms-transform:matrix(0.250244,0.006757,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.250244,0.006757,-0.006748,0.249909,0,0);}
.m14_c00470{transform:matrix(0.250257,0.003754,-0.003750,0.249972,0,0);-ms-transform:matrix(0.250257,0.003754,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.250257,0.003754,-0.003750,0.249972,0,0);}
.m95_c00470{transform:matrix(0.250614,0.006767,-0.006748,0.249909,0,0);-ms-transform:matrix(0.250614,0.006767,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.250614,0.006767,-0.006748,0.249909,0,0);}
.m3d_c00470{transform:matrix(0.250629,0.003258,-0.003250,0.249979,0,0);-ms-transform:matrix(0.250629,0.003258,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.250629,0.003258,-0.003250,0.249979,0,0);}
.m91_c00470{transform:matrix(0.250644,0.006767,-0.006748,0.249909,0,0);-ms-transform:matrix(0.250644,0.006767,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.250644,0.006767,-0.006748,0.249909,0,0);}
.m7a_c00470{transform:matrix(0.251120,0.004771,-0.004749,0.249955,0,0);-ms-transform:matrix(0.251120,0.004771,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.251120,0.004771,-0.004749,0.249955,0,0);}
.mc_c00470{transform:matrix(0.251252,0.003769,-0.003750,0.249972,0,0);-ms-transform:matrix(0.251252,0.003769,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.251252,0.003769,-0.003750,0.249972,0,0);}
.mdb_c00470{transform:matrix(0.251683,0.010077,-0.010002,0.249800,0,0);-ms-transform:matrix(0.251683,0.010077,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.251683,0.010077,-0.010002,0.249800,0,0);}
.m4_c00470{transform:matrix(0.253656,0.003805,-0.003750,0.249972,0,0);-ms-transform:matrix(0.253656,0.003805,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.253656,0.003805,-0.003750,0.249972,0,0);}
.m45_c00470{transform:matrix(0.253714,0.004821,-0.004749,0.249955,0,0);-ms-transform:matrix(0.253714,0.004821,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.253714,0.004821,-0.004749,0.249955,0,0);}
.md1_c00470{transform:matrix(0.255590,0.007668,-0.007497,0.249888,0,0);-ms-transform:matrix(0.255590,0.007668,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.255590,0.007668,-0.007497,0.249888,0,0);}
.m46_c00470{transform:matrix(0.255699,0.004858,-0.004749,0.249955,0,0);-ms-transform:matrix(0.255699,0.004858,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.255699,0.004858,-0.004749,0.249955,0,0);}
.ma5_c00470{transform:matrix(0.255757,0.007417,-0.007247,0.249895,0,0);-ms-transform:matrix(0.255757,0.007417,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.255757,0.007417,-0.007247,0.249895,0,0);}
.m6_c00470{transform:matrix(0.255851,0.003838,-0.003750,0.249972,0,0);-ms-transform:matrix(0.255851,0.003838,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.255851,0.003838,-0.003750,0.249972,0,0);}
.me_c00470{transform:matrix(0.255906,0.003839,-0.003750,0.249972,0,0);-ms-transform:matrix(0.255906,0.003839,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.255906,0.003839,-0.003750,0.249972,0,0);}
.me4_c00470{transform:matrix(0.256300,0.010006,-0.009752,0.249810,0,0);-ms-transform:matrix(0.256300,0.010006,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.256300,0.010006,-0.009752,0.249810,0,0);}
.me3_c00470{transform:matrix(0.256420,0.010010,-0.009752,0.249810,0,0);-ms-transform:matrix(0.256420,0.010010,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.256420,0.010010,-0.009752,0.249810,0,0);}
.m55_c00470{transform:matrix(0.256553,0.004361,-0.004249,0.249964,0,0);-ms-transform:matrix(0.256553,0.004361,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.256553,0.004361,-0.004249,0.249964,0,0);}
.m73_c00470{transform:matrix(0.256899,0.004881,-0.004749,0.249955,0,0);-ms-transform:matrix(0.256899,0.004881,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.256899,0.004881,-0.004749,0.249955,0,0);}
.m94_c00470{transform:matrix(0.257411,0.006950,-0.006748,0.249909,0,0);-ms-transform:matrix(0.257411,0.006950,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.257411,0.006950,-0.006748,0.249909,0,0);}
.m12_c00470{transform:matrix(0.258246,0.003874,-0.003750,0.249972,0,0);-ms-transform:matrix(0.258246,0.003874,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.258246,0.003874,-0.003750,0.249972,0,0);}
.mcf_c00470{transform:matrix(0.258364,0.007751,-0.007497,0.249888,0,0);-ms-transform:matrix(0.258364,0.007751,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.258364,0.007751,-0.007497,0.249888,0,0);}
.m76_c00470{transform:matrix(0.258518,0.004912,-0.004749,0.249955,0,0);-ms-transform:matrix(0.258518,0.004912,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.258518,0.004912,-0.004749,0.249955,0,0);}
.me8_c00470{transform:matrix(0.259432,0.010128,-0.009752,0.249810,0,0);-ms-transform:matrix(0.259432,0.010128,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.259432,0.010128,-0.009752,0.249810,0,0);}
.m1f_c00470{transform:matrix(0.259906,0.003119,-0.003000,0.249982,0,0);-ms-transform:matrix(0.259906,0.003119,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.259906,0.003119,-0.003000,0.249982,0,0);}
.m56_c00470{transform:matrix(0.260317,0.004425,-0.004249,0.249964,0,0);-ms-transform:matrix(0.260317,0.004425,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.260317,0.004425,-0.004249,0.249964,0,0);}
.mbc_c00470{transform:matrix(0.260550,0.008077,-0.007746,0.249880,0,0);-ms-transform:matrix(0.260550,0.008077,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.260550,0.008077,-0.007746,0.249880,0,0);}
.mb9_c00470{transform:matrix(0.261210,0.008097,-0.007746,0.249880,0,0);-ms-transform:matrix(0.261210,0.008097,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.261210,0.008097,-0.007746,0.249880,0,0);}
.m21_c00470{transform:matrix(0.261926,0.003143,-0.003000,0.249982,0,0);-ms-transform:matrix(0.261926,0.003143,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.261926,0.003143,-0.003000,0.249982,0,0);}
.m2c_c00470{transform:matrix(0.261951,0.003929,-0.003750,0.249972,0,0);-ms-transform:matrix(0.261951,0.003929,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.261951,0.003929,-0.003750,0.249972,0,0);}
.m37_c00470{transform:matrix(0.262739,0.006306,-0.005998,0.249928,0,0);-ms-transform:matrix(0.262739,0.006306,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.262739,0.006306,-0.005998,0.249928,0,0);}
.mba_c00470{transform:matrix(0.263144,0.008157,-0.007746,0.249880,0,0);-ms-transform:matrix(0.263144,0.008157,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.263144,0.008157,-0.007746,0.249880,0,0);}
.m27_c00470{transform:matrix(0.265356,0.003184,-0.003000,0.249982,0,0);-ms-transform:matrix(0.265356,0.003184,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.265356,0.003184,-0.003000,0.249982,0,0);}
.m71_c00470{transform:matrix(0.265602,0.005046,-0.004749,0.249955,0,0);-ms-transform:matrix(0.265602,0.005046,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.265602,0.005046,-0.004749,0.249955,0,0);}
.mbe_c00470{transform:matrix(0.266302,0.008255,-0.007746,0.249880,0,0);-ms-transform:matrix(0.266302,0.008255,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.266302,0.008255,-0.007746,0.249880,0,0);}
.m2e_c00470{transform:matrix(0.266585,0.003999,-0.003750,0.249972,0,0);-ms-transform:matrix(0.266585,0.003999,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.266585,0.003999,-0.003750,0.249972,0,0);}
.m26_c00470{transform:matrix(0.266921,0.003203,-0.003000,0.249982,0,0);-ms-transform:matrix(0.266921,0.003203,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.266921,0.003203,-0.003000,0.249982,0,0);}
.mc0_c00470{transform:matrix(0.268041,0.008309,-0.007746,0.249880,0,0);-ms-transform:matrix(0.268041,0.008309,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.268041,0.008309,-0.007746,0.249880,0,0);}
.m6f_c00470{transform:matrix(0.269306,0.005117,-0.004749,0.249955,0,0);-ms-transform:matrix(0.269306,0.005117,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.269306,0.005117,-0.004749,0.249955,0,0);}
.m29_c00470{transform:matrix(0.269521,0.003234,-0.003000,0.249982,0,0);-ms-transform:matrix(0.269521,0.003234,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.269521,0.003234,-0.003000,0.249982,0,0);}
.m7b_c00470{transform:matrix(0.270065,0.005671,-0.005249,0.249945,0,0);-ms-transform:matrix(0.270065,0.005671,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.270065,0.005671,-0.005249,0.249945,0,0);}
.mde_c00470{transform:matrix(0.270648,0.010837,-0.010002,0.249800,0,0);-ms-transform:matrix(0.270648,0.010837,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.270648,0.010837,-0.010002,0.249800,0,0);}
.m2f_c00470{transform:matrix(0.271164,0.004067,-0.003750,0.249972,0,0);-ms-transform:matrix(0.271164,0.004067,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.271164,0.004067,-0.003750,0.249972,0,0);}
.m25_c00470{transform:matrix(0.271240,0.003255,-0.003000,0.249982,0,0);-ms-transform:matrix(0.271240,0.003255,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.271240,0.003255,-0.003000,0.249982,0,0);}
.md9_c00470{transform:matrix(0.271487,0.010870,-0.010002,0.249800,0,0);-ms-transform:matrix(0.271487,0.010870,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.271487,0.010870,-0.010002,0.249800,0,0);}
.mbd_c00470{transform:matrix(0.271809,0.008426,-0.007746,0.249880,0,0);-ms-transform:matrix(0.271809,0.008426,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.271809,0.008426,-0.007746,0.249880,0,0);}
.m36_c00470{transform:matrix(0.272002,0.006528,-0.005998,0.249928,0,0);-ms-transform:matrix(0.272002,0.006528,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.272002,0.006528,-0.005998,0.249928,0,0);}
.m43_c00470{transform:matrix(0.273497,0.003555,-0.003250,0.249979,0,0);-ms-transform:matrix(0.273497,0.003555,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.273497,0.003555,-0.003250,0.249979,0,0);}
.mbf_c00470{transform:matrix(0.274623,0.008513,-0.007746,0.249880,0,0);-ms-transform:matrix(0.274623,0.008513,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.274623,0.008513,-0.007746,0.249880,0,0);}
.m32_c00470{transform:matrix(0.276044,0.004141,-0.003750,0.249972,0,0);-ms-transform:matrix(0.276044,0.004141,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.276044,0.004141,-0.003750,0.249972,0,0);}
.m33_c00470{transform:matrix(0.276099,0.004141,-0.003750,0.249972,0,0);-ms-transform:matrix(0.276099,0.004141,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.276099,0.004141,-0.003750,0.249972,0,0);}
.m97_c00470{transform:matrix(0.277299,0.005823,-0.005249,0.249945,0,0);-ms-transform:matrix(0.277299,0.005823,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.277299,0.005823,-0.005249,0.249945,0,0);}
.m6c_c00470{transform:matrix(0.277780,0.005278,-0.004749,0.249955,0,0);-ms-transform:matrix(0.277780,0.005278,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.277780,0.005278,-0.004749,0.249955,0,0);}
.m35_c00470{transform:matrix(0.278245,0.006678,-0.005998,0.249928,0,0);-ms-transform:matrix(0.278245,0.006678,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.278245,0.006678,-0.005998,0.249928,0,0);}
.m22_c00470{transform:matrix(0.278530,0.003342,-0.003000,0.249982,0,0);-ms-transform:matrix(0.278530,0.003342,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.278530,0.003342,-0.003000,0.249982,0,0);}
.m9a_c00470{transform:matrix(0.278894,0.005857,-0.005249,0.249945,0,0);-ms-transform:matrix(0.278894,0.005857,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.278894,0.005857,-0.005249,0.249945,0,0);}
.mce_c00470{transform:matrix(0.281753,0.008453,-0.007497,0.249888,0,0);-ms-transform:matrix(0.281753,0.008453,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.281753,0.008453,-0.007497,0.249888,0,0);}
.m98_c00470{transform:matrix(0.282788,0.005939,-0.005249,0.249945,0,0);-ms-transform:matrix(0.282788,0.005939,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.282788,0.005939,-0.005249,0.249945,0,0);}
.m3e_c00470{transform:matrix(0.284996,0.003705,-0.003250,0.249979,0,0);-ms-transform:matrix(0.284996,0.003705,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.284996,0.003705,-0.003250,0.249979,0,0);}
.m3b_c00470{transform:matrix(0.288571,0.003751,-0.003250,0.249979,0,0);-ms-transform:matrix(0.288571,0.003751,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.288571,0.003751,-0.003250,0.249979,0,0);}
.mdd_c00470{transform:matrix(0.294229,0.011781,-0.010002,0.249800,0,0);-ms-transform:matrix(0.294229,0.011781,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.294229,0.011781,-0.010002,0.249800,0,0);}
.m3c_c00470{transform:matrix(0.294570,0.003829,-0.003250,0.249979,0,0);-ms-transform:matrix(0.294570,0.003829,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.294570,0.003829,-0.003250,0.249979,0,0);}
.mc1_c00470{transform:matrix(0.294833,0.007960,-0.006748,0.249909,0,0);-ms-transform:matrix(0.294833,0.007960,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.294833,0.007960,-0.006748,0.249909,0,0);}
.mda_c00470{transform:matrix(0.295533,0.011833,-0.010002,0.249800,0,0);-ms-transform:matrix(0.295533,0.011833,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.295533,0.011833,-0.010002,0.249800,0,0);}
.mdc_c00470{transform:matrix(0.295928,0.011849,-0.010002,0.249800,0,0);-ms-transform:matrix(0.295928,0.011849,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.295928,0.011849,-0.010002,0.249800,0,0);}
.m42_c00470{transform:matrix(0.296640,0.003856,-0.003250,0.249979,0,0);-ms-transform:matrix(0.296640,0.003856,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.296640,0.003856,-0.003250,0.249979,0,0);}
.mb4_c00470{transform:matrix(0.296827,0.009202,-0.007746,0.249880,0,0);-ms-transform:matrix(0.296827,0.009202,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.296827,0.009202,-0.007746,0.249880,0,0);}
.m41_c00470{transform:matrix(0.298130,0.003876,-0.003250,0.249979,0,0);-ms-transform:matrix(0.298130,0.003876,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.298130,0.003876,-0.003250,0.249979,0,0);}
.m3f_c00470{transform:matrix(0.299000,0.003887,-0.003250,0.249979,0,0);-ms-transform:matrix(0.299000,0.003887,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.299000,0.003887,-0.003250,0.249979,0,0);}
.m7d_c00470{transform:matrix(0.300499,0.006310,-0.005249,0.249945,0,0);-ms-transform:matrix(0.300499,0.006310,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.300499,0.006310,-0.005249,0.249945,0,0);}
.ma7_c00470{transform:matrix(0.301365,0.008137,-0.006748,0.249909,0,0);-ms-transform:matrix(0.301365,0.008137,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.301365,0.008137,-0.006748,0.249909,0,0);}
.ma8_c00470{transform:matrix(0.301540,0.008142,-0.006748,0.249909,0,0);-ms-transform:matrix(0.301540,0.008142,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.301540,0.008142,-0.006748,0.249909,0,0);}
.mb6_c00470{transform:matrix(0.301695,0.009353,-0.007746,0.249880,0,0);-ms-transform:matrix(0.301695,0.009353,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.301695,0.009353,-0.007746,0.249880,0,0);}
.mb3_c00470{transform:matrix(0.302715,0.009384,-0.007746,0.249880,0,0);-ms-transform:matrix(0.302715,0.009384,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.302715,0.009384,-0.007746,0.249880,0,0);}
.mdf_c00470{transform:matrix(0.304896,0.012208,-0.010002,0.249800,0,0);-ms-transform:matrix(0.304896,0.012208,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.304896,0.012208,-0.010002,0.249800,0,0);}
.m5b_c00470{transform:matrix(0.308825,0.005250,-0.004249,0.249964,0,0);-ms-transform:matrix(0.308825,0.005250,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.308825,0.005250,-0.004249,0.249964,0,0);}
.m69_c00470{transform:matrix(0.326386,0.006201,-0.004749,0.249955,0,0);-ms-transform:matrix(0.326386,0.006201,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.326386,0.006201,-0.004749,0.249955,0,0);}
.m34_c00470{transform:matrix(0.341482,0.008196,-0.005998,0.249928,0,0);-ms-transform:matrix(0.341482,0.008196,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.341482,0.008196,-0.005998,0.249928,0,0);}
.mf4_c00470{transform:matrix(0.345165,0.014511,-0.010501,0.249779,0,0);-ms-transform:matrix(0.345165,0.014511,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.345165,0.014511,-0.010501,0.249779,0,0);}
.mc2_c00470{transform:matrix(0.351182,0.009482,-0.006748,0.249909,0,0);-ms-transform:matrix(0.351182,0.009482,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.351182,0.009482,-0.006748,0.249909,0,0);}
.m5a_c00470{transform:matrix(0.493084,0.008382,-0.004249,0.249964,0,0);-ms-transform:matrix(0.493084,0.008382,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.493084,0.008382,-0.004249,0.249964,0,0);}
.m59_c00470{transform:matrix(0.593219,0.010085,-0.004249,0.249964,0,0);-ms-transform:matrix(0.593219,0.010085,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.593219,0.010085,-0.004249,0.249964,0,0);}
.m0_c00470{transform:matrix(0.595805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.595805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.595805,0.000000,0.000000,0.250000,0,0);}
.m58_c00470{transform:matrix(0.857951,0.014585,-0.004249,0.249964,0,0);-ms-transform:matrix(0.857951,0.014585,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.857951,0.014585,-0.004249,0.249964,0,0);}
.m39_c00470{transform:matrix(1.051477,0.015772,-0.003750,0.249972,0,0);-ms-transform:matrix(1.051477,0.015772,-0.003750,0.249972,0,0);-webkit-transform:matrix(1.051477,0.015772,-0.003750,0.249972,0,0);}
.m4c_c00470{transform:matrix(3.809222,0.072375,-0.004749,0.249955,0,0);-ms-transform:matrix(3.809222,0.072375,-0.004749,0.249955,0,0);-webkit-transform:matrix(3.809222,0.072375,-0.004749,0.249955,0,0);}
.m57_c00470{transform:matrix(4.152000,0.070584,-0.004249,0.249964,0,0);-ms-transform:matrix(4.152000,0.070584,-0.004249,0.249964,0,0);-webkit-transform:matrix(4.152000,0.070584,-0.004249,0.249964,0,0);}
.m4b_c00470{transform:matrix(8.841969,0.167997,-0.004749,0.249955,0,0);-ms-transform:matrix(8.841969,0.167997,-0.004749,0.249955,0,0);-webkit-transform:matrix(8.841969,0.167997,-0.004749,0.249955,0,0);}
.m38_c00470{transform:matrix(10.005989,0.150090,-0.003750,0.249972,0,0);-ms-transform:matrix(10.005989,0.150090,-0.003750,0.249972,0,0);-webkit-transform:matrix(10.005989,0.150090,-0.003750,0.249972,0,0);}
.mfa_c00470{transform:matrix(11.859340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(11.859340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(11.859340,0.000000,0.000000,0.250000,0,0);}
.v0_c00470{vertical-align:0.000000px;}
.ls0_c00470{letter-spacing:0.000000px;}
.sc__c00470{text-shadow:none;}
.sc0_c00470{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__c00470{-webkit-text-stroke:0px transparent;}
.sc0_c00470{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00470{word-spacing:0.000000px;}
.fc0_c00470{color:transparent;}
.fs6_c00470{font-size:18.002025px;}
.fs9_c00470{font-size:18.003249px;}
.fs1e_c00470{font-size:30.000000px;}
.fsb_c00470{font-size:30.004335px;}
.fs17_c00470{font-size:54.019679px;}
.fs1a_c00470{font-size:65.986832px;}
.fs7_c00470{font-size:66.005577px;}
.fse_c00470{font-size:66.014551px;}
.fs13_c00470{font-size:66.024053px;}
.fs15_c00470{font-size:66.031705px;}
.fs3_c00470{font-size:72.005184px;}
.fs4_c00470{font-size:72.008100px;}
.fsd_c00470{font-size:72.012995px;}
.fs5_c00470{font-size:72.020733px;}
.fs16_c00470{font-size:72.034588px;}
.fs1b_c00470{font-size:77.981356px;}
.fs1c_c00470{font-size:77.990834px;}
.fs1_c00470{font-size:78.008775px;}
.fsa_c00470{font-size:78.011270px;}
.fs8_c00470{font-size:78.014078px;}
.fs11_c00470{font-size:78.028426px;}
.fs12_c00470{font-size:78.032792px;}
.fs19_c00470{font-size:78.035092px;}
.fs14_c00470{font-size:83.959040px;}
.fs2_c00470{font-size:84.009449px;}
.fsc_c00470{font-size:84.015161px;}
.fs18_c00470{font-size:84.030612px;}
.fs1d_c00470{font-size:89.989424px;}
.fsf_c00470{font-size:90.021777px;}
.fs10_c00470{font-size:102.024681px;}
.fs0_c00470{font-size:120.000000px;}
.y0_c00470{bottom:0.000000px;}
.yfb_c00470{bottom:0.916500px;}
.yfa_c00470{bottom:66.290063px;}
.yf9_c00470{bottom:67.475916px;}
.yf8_c00470{bottom:73.462194px;}
.yf7_c00470{bottom:75.069396px;}
.yf6_c00470{bottom:78.229602px;}
.yf5_c00470{bottom:79.040745px;}
.yf4_c00470{bottom:81.434983px;}
.yf3_c00470{bottom:84.947710px;}
.yf2_c00470{bottom:86.416110px;}
.yf1_c00470{bottom:87.230403px;}
.yf0_c00470{bottom:111.419154px;}
.yef_c00470{bottom:112.802382px;}
.yee_c00470{bottom:115.146738px;}
.yed_c00470{bottom:118.409886px;}
.yec_c00470{bottom:120.708000px;}
.yeb_c00470{bottom:137.861872px;}
.yea_c00470{bottom:139.145948px;}
.ye9_c00470{bottom:143.567377px;}
.ye8_c00470{bottom:146.961606px;}
.ye7_c00470{bottom:148.291077px;}
.ye6_c00470{bottom:149.565441px;}
.ye5_c00470{bottom:153.452590px;}
.ye4_c00470{bottom:157.748421px;}
.ye3_c00470{bottom:158.978267px;}
.ye2_c00470{bottom:160.564903px;}
.ye1_c00470{bottom:161.467500px;}
.ye0_c00470{bottom:176.854020px;}
.ydf_c00470{bottom:178.727400px;}
.yde_c00470{bottom:182.259180px;}
.ydd_c00470{bottom:187.148520px;}
.ydc_c00470{bottom:188.477580px;}
.ydb_c00470{bottom:191.566920px;}
.yda_c00470{bottom:193.335000px;}
.yd9_c00470{bottom:212.991060px;}
.yd8_c00470{bottom:214.307760px;}
.yd7_c00470{bottom:215.321520px;}
.yd6_c00470{bottom:216.631920px;}
.yd5_c00470{bottom:218.029350px;}
.yd4_c00470{bottom:218.959230px;}
.yd3_c00470{bottom:220.575090px;}
.yd2_c00470{bottom:223.637385px;}
.yd1_c00470{bottom:224.940180px;}
.yd0_c00470{bottom:229.194885px;}
.ycf_c00470{bottom:231.127500px;}
.yce_c00470{bottom:255.483388px;}
.ycd_c00470{bottom:257.232543px;}
.ycc_c00470{bottom:259.033295px;}
.ycb_c00470{bottom:260.235497px;}
.yca_c00470{bottom:261.986838px;}
.yc9_c00470{bottom:263.173893px;}
.yc8_c00470{bottom:264.072993px;}
.yc7_c00470{bottom:265.828830px;}
.yc6_c00470{bottom:266.959550px;}
.yc5_c00470{bottom:267.576000px;}
.yc4_c00470{bottom:296.385368px;}
.yc3_c00470{bottom:298.790582px;}
.yc2_c00470{bottom:299.709000px;}
.yc1_c00470{bottom:318.818811px;}
.yc0_c00470{bottom:321.850003px;}
.ybf_c00470{bottom:324.907028px;}
.ybe_c00470{bottom:327.885221px;}
.ybd_c00470{bottom:330.467237px;}
.ybc_c00470{bottom:331.999794px;}
.ybb_c00470{bottom:333.872692px;}
.yba_c00470{bottom:337.184996px;}
.yb9_c00470{bottom:338.597825px;}
.yb8_c00470{bottom:339.384413px;}
.yb7_c00470{bottom:362.813732px;}
.yb6_c00470{bottom:363.834360px;}
.yb5_c00470{bottom:366.579952px;}
.yb4_c00470{bottom:370.993500px;}
.yb3_c00470{bottom:389.763708px;}
.yb2_c00470{bottom:392.740380px;}
.yb1_c00470{bottom:394.181436px;}
.yb0_c00470{bottom:396.960108px;}
.yaf_c00470{bottom:399.828780px;}
.yae_c00470{bottom:403.008588px;}
.yad_c00470{bottom:404.028684px;}
.yac_c00470{bottom:407.509644px;}
.yab_c00470{bottom:408.847932px;}
.yaa_c00470{bottom:409.597500px;}
.ya9_c00470{bottom:438.192310px;}
.ya8_c00470{bottom:441.459000px;}
.ya7_c00470{bottom:460.731264px;}
.ya6_c00470{bottom:463.943609px;}
.ya5_c00470{bottom:465.832204px;}
.ya4_c00470{bottom:466.882251px;}
.ya3_c00470{bottom:467.827680px;}
.ya2_c00470{bottom:470.360468px;}
.ya1_c00470{bottom:472.654353px;}
.ya0_c00470{bottom:475.183965px;}
.y9f_c00470{bottom:478.057053px;}
.y9e_c00470{bottom:479.215980px;}
.y9d_c00470{bottom:479.902584px;}
.y9c_c00470{bottom:484.650000px;}
.y9b_c00470{bottom:508.699046px;}
.y9a_c00470{bottom:509.390880px;}
.y99_c00470{bottom:510.763555px;}
.y98_c00470{bottom:511.926000px;}
.y97_c00470{bottom:533.504657px;}
.y96_c00470{bottom:535.641639px;}
.y95_c00470{bottom:539.231923px;}
.y94_c00470{bottom:540.425297px;}
.y93_c00470{bottom:542.775147px;}
.y92_c00470{bottom:546.063302px;}
.y91_c00470{bottom:547.244241px;}
.y90_c00470{bottom:549.627585px;}
.y8f_c00470{bottom:550.731899px;}
.y8e_c00470{bottom:551.346000px;}
.y8d_c00470{bottom:580.763487px;}
.y8c_c00470{bottom:581.353692px;}
.y8b_c00470{bottom:582.564417px;}
.y8a_c00470{bottom:583.157493px;}
.y89_c00470{bottom:583.734264px;}
.y88_c00470{bottom:606.197850px;}
.y87_c00470{bottom:607.170987px;}
.y86_c00470{bottom:610.338591px;}
.y85_c00470{bottom:611.309055px;}
.y84_c00470{bottom:612.033702px;}
.y83_c00470{bottom:614.429172px;}
.y82_c00470{bottom:615.431613px;}
.y81_c00470{bottom:616.882854px;}
.y80_c00470{bottom:619.292745px;}
.y7f_c00470{bottom:620.191500px;}
.y7e_c00470{bottom:652.102935px;}
.y7d_c00470{bottom:652.794770px;}
.y7c_c00470{bottom:653.946000px;}
.y7b_c00470{bottom:678.461266px;}
.y7a_c00470{bottom:679.303375px;}
.y79_c00470{bottom:680.922976px;}
.y78_c00470{bottom:681.795940px;}
.y77_c00470{bottom:684.443407px;}
.y76_c00470{bottom:685.771245px;}
.y75_c00470{bottom:686.645947px;}
.y74_c00470{bottom:689.729820px;}
.y73_c00470{bottom:691.462923px;}
.y72_c00470{bottom:721.085379px;}
.y71_c00470{bottom:721.575609px;}
.y70_c00470{bottom:722.894662px;}
.y6f_c00470{bottom:723.551505px;}
.y6e_c00470{bottom:724.045279px;}
.y6d_c00470{bottom:725.527800px;}
.y6c_c00470{bottom:725.982541px;}
.y6b_c00470{bottom:726.323842px;}
.y6a_c00470{bottom:728.729593px;}
.y69_c00470{bottom:750.075871px;}
.y68_c00470{bottom:751.312458px;}
.y67_c00470{bottom:751.974114px;}
.y66_c00470{bottom:753.215830px;}
.y65_c00470{bottom:753.862581px;}
.y64_c00470{bottom:754.478067px;}
.y63_c00470{bottom:755.750364px;}
.y62_c00470{bottom:756.375141px;}
.y61_c00470{bottom:757.827843px;}
.y60_c00470{bottom:760.131384px;}
.y5f_c00470{bottom:760.897834px;}
.y5e_c00470{bottom:761.330920px;}
.y5d_c00470{bottom:764.371500px;}
.y5c_c00470{bottom:781.428036px;}
.y5b_c00470{bottom:782.075124px;}
.y5a_c00470{bottom:782.612077px;}
.y59_c00470{bottom:783.437844px;}
.y57_c00470{bottom:786.354861px;}
.y58_c00470{bottom:787.068330px;}
.y56_c00470{bottom:788.048953px;}
.y55_c00470{bottom:788.976541px;}
.y54_c00470{bottom:790.496010px;}
.y53_c00470{bottom:791.973939px;}
.y52_c00470{bottom:793.447660px;}
.y51_c00470{bottom:794.025924px;}
.y50_c00470{bottom:795.136398px;}
.y4f_c00470{bottom:795.845553px;}
.y4e_c00470{bottom:796.233000px;}
.y4d_c00470{bottom:818.373355px;}
.y4b_c00470{bottom:822.686013px;}
.y4a_c00470{bottom:823.322218px;}
.y49_c00470{bottom:823.947281px;}
.y48_c00470{bottom:825.204387px;}
.y4c_c00470{bottom:827.305902px;}
.y47_c00470{bottom:828.130966px;}
.y46_c00470{bottom:830.423279px;}
.y45_c00470{bottom:831.064500px;}
.y44_c00470{bottom:858.779732px;}
.y43_c00470{bottom:859.931694px;}
.y42_c00470{bottom:861.079639px;}
.y41_c00470{bottom:861.504349px;}
.y40_c00470{bottom:862.926192px;}
.y3f_c00470{bottom:864.091590px;}
.y3e_c00470{bottom:864.663759px;}
.y3d_c00470{bottom:866.348501px;}
.y3c_c00470{bottom:867.355558px;}
.y3b_c00470{bottom:869.130000px;}
.y3a_c00470{bottom:894.250207px;}
.y39_c00470{bottom:897.481500px;}
.y38_c00470{bottom:899.564616px;}
.y37_c00470{bottom:901.955808px;}
.y36_c00470{bottom:904.612608px;}
.y35_c00470{bottom:912.069000px;}
.y34_c00470{bottom:930.287715px;}
.y33_c00470{bottom:932.418262px;}
.y32_c00470{bottom:932.936843px;}
.y31_c00470{bottom:933.554602px;}
.y30_c00470{bottom:934.897380px;}
.y2f_c00470{bottom:936.404002px;}
.y2e_c00470{bottom:937.051980px;}
.y2d_c00470{bottom:938.525888px;}
.y2c_c00470{bottom:938.985900px;}
.y2b_c00470{bottom:939.331500px;}
.y2a_c00470{bottom:971.588454px;}
.y29_c00470{bottom:971.588718px;}
.y28_c00470{bottom:1000.365702px;}
.y27_c00470{bottom:1001.340708px;}
.y26_c00470{bottom:1002.662844px;}
.y25_c00470{bottom:1003.184646px;}
.y24_c00470{bottom:1003.585956px;}
.y23_c00470{bottom:1004.501238px;}
.y22_c00470{bottom:1005.689292px;}
.y21_c00470{bottom:1006.223928px;}
.y20_c00470{bottom:1007.279970px;}
.y1f_c00470{bottom:1007.635218px;}
.y1e_c00470{bottom:1007.911500px;}
.y1d_c00470{bottom:1036.358070px;}
.y1c_c00470{bottom:1037.026297px;}
.y1b_c00470{bottom:1038.995047px;}
.y1a_c00470{bottom:1040.817637px;}
.y19_c00470{bottom:1042.303875px;}
.y18_c00470{bottom:1043.283750px;}
.y17_c00470{bottom:1043.739577px;}
.y16_c00470{bottom:1044.081127px;}
.y15_c00470{bottom:1076.360002px;}
.y14_c00470{bottom:1076.873520px;}
.y13_c00470{bottom:1078.644997px;}
.y12_c00470{bottom:1105.349572px;}
.y11_c00470{bottom:1106.314920px;}
.y10_c00470{bottom:1107.225412px;}
.yf_c00470{bottom:1108.505445px;}
.ye_c00470{bottom:1109.127660px;}
.yd_c00470{bottom:1110.335460px;}
.yc_c00470{bottom:1111.888402px;}
.yb_c00470{bottom:1113.261030px;}
.ya_c00470{bottom:1114.322062px;}
.y9_c00470{bottom:1115.587642px;}
.y8_c00470{bottom:1116.182280px;}
.y7_c00470{bottom:1146.575437px;}
.y6_c00470{bottom:1147.049107px;}
.y5_c00470{bottom:1148.555955px;}
.y4_c00470{bottom:1149.548407px;}
.y3_c00470{bottom:1150.157955px;}
.y2_c00470{bottom:1154.793000px;}
.y1_c00470{bottom:1212.304500px;}
.h8_c00470{height:18.002025px;}
.hb_c00470{height:18.003249px;}
.h20_c00470{height:30.000000px;}
.hd_c00470{height:30.004335px;}
.h19_c00470{height:54.019679px;}
.h1c_c00470{height:65.986832px;}
.h9_c00470{height:66.005577px;}
.h10_c00470{height:66.014551px;}
.h15_c00470{height:66.024053px;}
.h17_c00470{height:66.031705px;}
.h5_c00470{height:72.005184px;}
.h6_c00470{height:72.008100px;}
.hf_c00470{height:72.012995px;}
.h7_c00470{height:72.020733px;}
.h18_c00470{height:72.034588px;}
.h1d_c00470{height:77.981356px;}
.h1e_c00470{height:77.990834px;}
.h3_c00470{height:78.008775px;}
.hc_c00470{height:78.011270px;}
.ha_c00470{height:78.014078px;}
.h13_c00470{height:78.028426px;}
.h14_c00470{height:78.032792px;}
.h1b_c00470{height:78.035092px;}
.h16_c00470{height:83.959040px;}
.h4_c00470{height:84.009449px;}
.he_c00470{height:84.015161px;}
.h1a_c00470{height:84.030612px;}
.h1f_c00470{height:89.989424px;}
.h11_c00470{height:90.021777px;}
.h12_c00470{height:102.024681px;}
.h2_c00470{height:120.000000px;}
.h0_c00470{height:1246.320000px;}
.h1_c00470{height:1246.500000px;}
.w0_c00470{width:914.700000px;}
.w1_c00470{width:915.000000px;}
.x0_c00470{left:0.000000px;}
.x46_c00470{left:6.403500px;}
.x29_c00470{left:7.731000px;}
.x2_c00470{left:14.422500px;}
.x9e_c00470{left:32.130000px;}
.x8_c00470{left:56.634548px;}
.x52_c00470{left:142.650904px;}
.x2e_c00470{left:144.304500px;}
.x9_c00470{left:147.007898px;}
.x70_c00470{left:163.378500px;}
.x64_c00470{left:164.473500px;}
.x39_c00470{left:166.672500px;}
.x23_c00470{left:167.790000px;}
.x13_c00470{left:168.888443px;}
.x82_c00470{left:185.707500px;}
.x71_c00470{left:186.779076px;}
.x5b_c00470{left:188.095500px;}
.x3a_c00470{left:189.463500px;}
.x14_c00470{left:191.658443px;}
.x4f_c00470{left:219.042471px;}
.x1a_c00470{left:220.978500px;}
.xa_c00470{left:222.844545px;}
.x8f_c00470{left:226.373174px;}
.x65_c00470{left:228.118500px;}
.x47_c00470{left:229.567500px;}
.x3b_c00470{left:231.178500px;}
.x90_c00470{left:257.876139px;}
.x15_c00470{left:287.371943px;}
.x83_c00470{left:292.617000px;}
.x3c_c00470{left:296.500500px;}
.x1b_c00470{left:308.982000px;}
.x8b_c00470{left:313.081500px;}
.x37_c00470{left:315.548410px;}
.x2c_c00470{left:316.882500px;}
.x2a_c00470{left:318.414000px;}
.x11_c00470{left:319.782728px;}
.xb_c00470{left:320.854508px;}
.x3_c00470{left:323.425500px;}
.x7c_c00470{left:325.404146px;}
.x6c_c00470{left:326.422500px;}
.x3d_c00470{left:330.516000px;}
.x72_c00470{left:337.229975px;}
.x5c_c00470{left:338.488500px;}
.x96_c00470{left:345.969000px;}
.x62_c00470{left:349.177572px;}
.x48_c00470{left:350.806500px;}
.x22_c00470{left:352.362180px;}
.x1c_c00470{left:353.535000px;}
.x8c_c00470{left:357.239298px;}
.x66_c00470{left:360.129000px;}
.x24_c00470{left:362.956500px;}
.x4_c00470{left:364.062000px;}
.x91_c00470{left:367.915490px;}
.x73_c00470{left:369.076097px;}
.x59_c00470{left:372.339000px;}
.x7d_c00470{left:380.492531px;}
.x63_c00470{left:382.138476px;}
.x53_c00470{left:383.460816px;}
.x16_c00470{left:386.454443px;}
.x9a_c00470{left:389.777085px;}
.x2f_c00470{left:395.379000px;}
.x97_c00470{left:400.631283px;}
.x5a_c00470{left:405.283500px;}
.x87_c00470{left:412.516500px;}
.x6d_c00470{left:413.650500px;}
.x3e_c00470{left:417.205500px;}
.x7e_c00470{left:425.570846px;}
.x49_c00470{left:427.264500px;}
.x2b_c00470{left:429.114000px;}
.x5_c00470{left:430.225500px;}
.xc_c00470{left:431.785673px;}
.x84_c00470{left:434.746500px;}
.x1_c00470{left:437.670000px;}
.x5d_c00470{left:450.019500px;}
.x1d_c00470{left:452.539500px;}
.x79_c00470{left:457.584000px;}
.x4a_c00470{left:460.147500px;}
.x12_c00470{left:462.613590px;}
.x74_c00470{left:468.345728px;}
.x6b_c00470{left:469.827000px;}
.x33_c00470{left:473.275500px;}
.x98_c00470{left:478.247589px;}
.x85_c00470{left:479.272500px;}
.x50_c00470{left:482.651535px;}
.x30_c00470{left:485.025000px;}
.x54_c00470{left:493.618735px;}
.x92_c00470{left:500.129643px;}
.x42_c00470{left:501.623518px;}
.x3f_c00470{left:504.142500px;}
.x17_c00470{left:507.960443px;}
.x51_c00470{left:515.324014px;}
.xd_c00470{left:518.006955px;}
.x4b_c00470{left:527.110500px;}
.x1e_c00470{left:528.813000px;}
.x6_c00470{left:530.682000px;}
.x2d_c00470{left:532.302000px;}
.x93_c00470{left:534.184554px;}
.x9b_c00470{left:544.533147px;}
.x7a_c00470{left:546.151500px;}
.x25_c00470{left:552.916500px;}
.x75_c00470{left:557.902081px;}
.x4c_c00470{left:559.504500px;}
.x7_c00470{left:562.260000px;}
.x99_c00470{left:566.910837px;}
.x67_c00470{left:568.944000px;}
.x7b_c00470{left:579.075000px;}
.x6e_c00470{left:580.087500px;}
.x7f_c00470{left:589.094640px;}
.x5e_c00470{left:591.843000px;}
.x26_c00470{left:594.100500px;}
.x88_c00470{left:599.451000px;}
.x1f_c00470{left:605.739000px;}
.x86_c00470{left:610.750500px;}
.x68_c00470{left:613.143000px;}
.x94_c00470{left:621.129023px;}
.x55_c00470{left:626.009227px;}
.x31_c00470{left:627.067500px;}
.x27_c00470{left:628.672500px;}
.x5f_c00470{left:635.955000px;}
.x18_c00470{left:639.210443px;}
.x76_c00470{left:644.648748px;}
.x89_c00470{left:646.032000px;}
.x40_c00470{left:648.087000px;}
.xe_c00470{left:653.925503px;}
.x4d_c00470{left:658.897500px;}
.x56_c00470{left:669.664401px;}
.x8d_c00470{left:677.906310px;}
.x80_c00470{left:678.990270px;}
.x19_c00470{left:683.758943px;}
.x77_c00470{left:689.636715px;}
.x34_c00470{left:693.469500px;}
.x38_c00470{left:703.942413px;}
.x9c_c00470{left:710.629758px;}
.x6f_c00470{left:714.021000px;}
.x20_c00470{left:715.917000px;}
.xf_c00470{left:718.925970px;}
.x8a_c00470{left:723.504000px;}
.x8e_c00470{left:724.693976px;}
.x35_c00470{left:726.367500px;}
.x95_c00470{left:734.385652px;}
.x9d_c00470{left:743.513603px;}
.x69_c00470{left:746.116500px;}
.x41_c00470{left:747.739500px;}
.x57_c00470{left:750.641862px;}
.x4e_c00470{left:758.805000px;}
.x36_c00470{left:759.852000px;}
.x43_c00470{left:763.756018px;}
.x81_c00470{left:768.149493px;}
.x28_c00470{left:770.709000px;}
.x60_c00470{left:779.937000px;}
.x78_c00470{left:782.564694px;}
.x10_c00470{left:787.883505px;}
.x58_c00470{left:792.752064px;}
.x44_c00470{left:795.341518px;}
.x21_c00470{left:797.167500px;}
.x32_c00470{left:803.983500px;}
.x61_c00470{left:824.170500px;}
.x6a_c00470{left:825.264000px;}
.x45_c00470{left:833.405518px;}
@media print{
.v0_c00470{vertical-align:0.000000pt;}
.ls0_c00470{letter-spacing:0.000000pt;}
.ws0_c00470{word-spacing:0.000000pt;}
.fs6_c00470{font-size:16.001800pt;}
.fs9_c00470{font-size:16.002888pt;}
.fs1e_c00470{font-size:26.666667pt;}
.fsb_c00470{font-size:26.670520pt;}
.fs17_c00470{font-size:48.017493pt;}
.fs1a_c00470{font-size:58.654961pt;}
.fs7_c00470{font-size:58.671624pt;}
.fse_c00470{font-size:58.679601pt;}
.fs13_c00470{font-size:58.688047pt;}
.fs15_c00470{font-size:58.694849pt;}
.fs3_c00470{font-size:64.004608pt;}
.fs4_c00470{font-size:64.007200pt;}
.fsd_c00470{font-size:64.011551pt;}
.fs5_c00470{font-size:64.018429pt;}
.fs16_c00470{font-size:64.030745pt;}
.fs1b_c00470{font-size:69.316761pt;}
.fs1c_c00470{font-size:69.325186pt;}
.fs1_c00470{font-size:69.341133pt;}
.fsa_c00470{font-size:69.343351pt;}
.fs8_c00470{font-size:69.345847pt;}
.fs11_c00470{font-size:69.358601pt;}
.fs12_c00470{font-size:69.362482pt;}
.fs19_c00470{font-size:69.364526pt;}
.fs14_c00470{font-size:74.630258pt;}
.fs2_c00470{font-size:74.675066pt;}
.fsc_c00470{font-size:74.680143pt;}
.fs18_c00470{font-size:74.693878pt;}
.fs1d_c00470{font-size:79.990599pt;}
.fsf_c00470{font-size:80.019358pt;}
.fs10_c00470{font-size:90.688605pt;}
.fs0_c00470{font-size:106.666667pt;}
.y0_c00470{bottom:0.000000pt;}
.yfb_c00470{bottom:0.814667pt;}
.yfa_c00470{bottom:58.924500pt;}
.yf9_c00470{bottom:59.978592pt;}
.yf8_c00470{bottom:65.299728pt;}
.yf7_c00470{bottom:66.728352pt;}
.yf6_c00470{bottom:69.537424pt;}
.yf5_c00470{bottom:70.258440pt;}
.yf4_c00470{bottom:72.386652pt;}
.yf3_c00470{bottom:75.509076pt;}
.yf2_c00470{bottom:76.814320pt;}
.yf1_c00470{bottom:77.538136pt;}
.yf0_c00470{bottom:99.039248pt;}
.yef_c00470{bottom:100.268784pt;}
.yee_c00470{bottom:102.352656pt;}
.yed_c00470{bottom:105.253232pt;}
.yec_c00470{bottom:107.296000pt;}
.yeb_c00470{bottom:122.543887pt;}
.yea_c00470{bottom:123.685287pt;}
.ye9_c00470{bottom:127.615447pt;}
.ye8_c00470{bottom:130.632539pt;}
.ye7_c00470{bottom:131.814291pt;}
.ye6_c00470{bottom:132.947059pt;}
.ye5_c00470{bottom:136.402303pt;}
.ye4_c00470{bottom:140.220819pt;}
.ye3_c00470{bottom:141.314015pt;}
.ye2_c00470{bottom:142.724359pt;}
.ye1_c00470{bottom:143.526667pt;}
.ye0_c00470{bottom:157.203573pt;}
.ydf_c00470{bottom:158.868800pt;}
.yde_c00470{bottom:162.008160pt;}
.ydd_c00470{bottom:166.354240pt;}
.ydc_c00470{bottom:167.535627pt;}
.ydb_c00470{bottom:170.281707pt;}
.yda_c00470{bottom:171.853333pt;}
.yd9_c00470{bottom:189.325387pt;}
.yd8_c00470{bottom:190.495787pt;}
.yd7_c00470{bottom:191.396907pt;}
.yd6_c00470{bottom:192.561707pt;}
.yd5_c00470{bottom:193.803867pt;}
.yd4_c00470{bottom:194.630427pt;}
.yd3_c00470{bottom:196.066747pt;}
.yd2_c00470{bottom:198.788787pt;}
.yd1_c00470{bottom:199.946827pt;}
.yd0_c00470{bottom:203.728787pt;}
.ycf_c00470{bottom:205.446667pt;}
.yce_c00470{bottom:227.096345pt;}
.ycd_c00470{bottom:228.651149pt;}
.ycc_c00470{bottom:230.251817pt;}
.ycb_c00470{bottom:231.320441pt;}
.yca_c00470{bottom:232.877189pt;}
.yc9_c00470{bottom:233.932349pt;}
.yc8_c00470{bottom:234.731549pt;}
.yc7_c00470{bottom:236.292293pt;}
.yc6_c00470{bottom:237.297377pt;}
.yc5_c00470{bottom:237.845333pt;}
.yc4_c00470{bottom:263.453660pt;}
.yc3_c00470{bottom:265.591628pt;}
.yc2_c00470{bottom:266.408000pt;}
.yc1_c00470{bottom:283.394499pt;}
.yc0_c00470{bottom:286.088892pt;}
.ybf_c00470{bottom:288.806247pt;}
.ybe_c00470{bottom:291.453529pt;}
.ybd_c00470{bottom:293.748655pt;}
.ybc_c00470{bottom:295.110928pt;}
.ybb_c00470{bottom:296.775727pt;}
.yba_c00470{bottom:299.719996pt;}
.yb9_c00470{bottom:300.975844pt;}
.yb8_c00470{bottom:301.675033pt;}
.yb7_c00470{bottom:322.501095pt;}
.yb6_c00470{bottom:323.408320pt;}
.yb5_c00470{bottom:325.848847pt;}
.yb4_c00470{bottom:329.772000pt;}
.yb3_c00470{bottom:346.456629pt;}
.yb2_c00470{bottom:349.102560pt;}
.yb1_c00470{bottom:350.383499pt;}
.yb0_c00470{bottom:352.853429pt;}
.yaf_c00470{bottom:355.403360pt;}
.yae_c00470{bottom:358.229856pt;}
.yad_c00470{bottom:359.136608pt;}
.yac_c00470{bottom:362.230795pt;}
.yab_c00470{bottom:363.420384pt;}
.yaa_c00470{bottom:364.086667pt;}
.ya9_c00470{bottom:389.504276pt;}
.ya8_c00470{bottom:392.408000pt;}
.ya7_c00470{bottom:409.538901pt;}
.ya6_c00470{bottom:412.394319pt;}
.ya5_c00470{bottom:414.073071pt;}
.ya4_c00470{bottom:415.006445pt;}
.ya3_c00470{bottom:415.846827pt;}
.ya2_c00470{bottom:418.098193pt;}
.ya1_c00470{bottom:420.137203pt;}
.ya0_c00470{bottom:422.385747pt;}
.y9f_c00470{bottom:424.939603pt;}
.y9e_c00470{bottom:425.969760pt;}
.y9d_c00470{bottom:426.580075pt;}
.y9c_c00470{bottom:430.800000pt;}
.y9b_c00470{bottom:452.176929pt;}
.y9a_c00470{bottom:452.791893pt;}
.y99_c00470{bottom:454.012049pt;}
.y98_c00470{bottom:455.045333pt;}
.y97_c00470{bottom:474.226361pt;}
.y96_c00470{bottom:476.125901pt;}
.y95_c00470{bottom:479.317265pt;}
.y94_c00470{bottom:480.378041pt;}
.y93_c00470{bottom:482.466797pt;}
.y92_c00470{bottom:485.389601pt;}
.y91_c00470{bottom:486.439325pt;}
.y90_c00470{bottom:488.557853pt;}
.y8f_c00470{bottom:489.539465pt;}
.y8e_c00470{bottom:490.085333pt;}
.y8d_c00470{bottom:516.234211pt;}
.y8c_c00470{bottom:516.758837pt;}
.y8b_c00470{bottom:517.835037pt;}
.y8a_c00470{bottom:518.362216pt;}
.y89_c00470{bottom:518.874901pt;}
.y88_c00470{bottom:538.842533pt;}
.y87_c00470{bottom:539.707544pt;}
.y86_c00470{bottom:542.523192pt;}
.y85_c00470{bottom:543.385827pt;}
.y84_c00470{bottom:544.029957pt;}
.y83_c00470{bottom:546.159264pt;}
.y82_c00470{bottom:547.050323pt;}
.y81_c00470{bottom:548.340315pt;}
.y80_c00470{bottom:550.482440pt;}
.y7f_c00470{bottom:551.281333pt;}
.y7e_c00470{bottom:579.647053pt;}
.y7d_c00470{bottom:580.262017pt;}
.y7c_c00470{bottom:581.285333pt;}
.y7b_c00470{bottom:603.076681pt;}
.y7a_c00470{bottom:603.825223pt;}
.y79_c00470{bottom:605.264868pt;}
.y78_c00470{bottom:606.040836pt;}
.y77_c00470{bottom:608.394140pt;}
.y76_c00470{bottom:609.574440pt;}
.y75_c00470{bottom:610.351953pt;}
.y74_c00470{bottom:613.093173pt;}
.y73_c00470{bottom:614.633709pt;}
.y72_c00470{bottom:640.964781pt;}
.y71_c00470{bottom:641.400541pt;}
.y70_c00470{bottom:642.573033pt;}
.y6f_c00470{bottom:643.156893pt;}
.y6e_c00470{bottom:643.595804pt;}
.y6d_c00470{bottom:644.913600pt;}
.y6c_c00470{bottom:645.317815pt;}
.y6b_c00470{bottom:645.621193pt;}
.y6a_c00470{bottom:647.759639pt;}
.y69_c00470{bottom:666.734108pt;}
.y68_c00470{bottom:667.833296pt;}
.y67_c00470{bottom:668.421435pt;}
.y66_c00470{bottom:669.525183pt;}
.y65_c00470{bottom:670.100072pt;}
.y64_c00470{bottom:670.647171pt;}
.y63_c00470{bottom:671.778101pt;}
.y62_c00470{bottom:672.333459pt;}
.y61_c00470{bottom:673.624749pt;}
.y60_c00470{bottom:675.672341pt;}
.y5f_c00470{bottom:676.353631pt;}
.y5e_c00470{bottom:676.738596pt;}
.y5d_c00470{bottom:679.441333pt;}
.y5c_c00470{bottom:694.602699pt;}
.y5b_c00470{bottom:695.177888pt;}
.y5a_c00470{bottom:695.655180pt;}
.y59_c00470{bottom:696.389195pt;}
.y57_c00470{bottom:698.982099pt;}
.y58_c00470{bottom:699.616293pt;}
.y56_c00470{bottom:700.487959pt;}
.y55_c00470{bottom:701.312481pt;}
.y54_c00470{bottom:702.663120pt;}
.y53_c00470{bottom:703.976835pt;}
.y52_c00470{bottom:705.286809pt;}
.y51_c00470{bottom:705.800821pt;}
.y50_c00470{bottom:706.787909pt;}
.y4f_c00470{bottom:707.418269pt;}
.y4e_c00470{bottom:707.762667pt;}
.y4d_c00470{bottom:727.442983pt;}
.y4b_c00470{bottom:731.276456pt;}
.y4a_c00470{bottom:731.841972pt;}
.y49_c00470{bottom:732.397583pt;}
.y48_c00470{bottom:733.515011pt;}
.y4c_c00470{bottom:735.383024pt;}
.y47_c00470{bottom:736.116415pt;}
.y46_c00470{bottom:738.154025pt;}
.y45_c00470{bottom:738.724000pt;}
.y44_c00470{bottom:763.359761pt;}
.y43_c00470{bottom:764.383728pt;}
.y42_c00470{bottom:765.404124pt;}
.y41_c00470{bottom:765.781644pt;}
.y40_c00470{bottom:767.045504pt;}
.y3f_c00470{bottom:768.081413pt;}
.y3e_c00470{bottom:768.590008pt;}
.y3d_c00470{bottom:770.087556pt;}
.y3c_c00470{bottom:770.982719pt;}
.y3b_c00470{bottom:772.560000pt;}
.y3a_c00470{bottom:794.889073pt;}
.y39_c00470{bottom:797.761333pt;}
.y38_c00470{bottom:799.612992pt;}
.y37_c00470{bottom:801.738496pt;}
.y36_c00470{bottom:804.100096pt;}
.y35_c00470{bottom:810.728000pt;}
.y34_c00470{bottom:826.922413pt;}
.y33_c00470{bottom:828.816233pt;}
.y32_c00470{bottom:829.277193pt;}
.y31_c00470{bottom:829.826313pt;}
.y30_c00470{bottom:831.019893pt;}
.y2f_c00470{bottom:832.359113pt;}
.y2e_c00470{bottom:832.935093pt;}
.y2d_c00470{bottom:834.245233pt;}
.y2c_c00470{bottom:834.654133pt;}
.y2b_c00470{bottom:834.961333pt;}
.y2a_c00470{bottom:863.634181pt;}
.y29_c00470{bottom:863.634416pt;}
.y28_c00470{bottom:889.213957pt;}
.y27_c00470{bottom:890.080629pt;}
.y26_c00470{bottom:891.255861pt;}
.y25_c00470{bottom:891.719685pt;}
.y24_c00470{bottom:892.076405pt;}
.y23_c00470{bottom:892.889989pt;}
.y22_c00470{bottom:893.946037pt;}
.y21_c00470{bottom:894.421269pt;}
.y20_c00470{bottom:895.359973pt;}
.y1f_c00470{bottom:895.675749pt;}
.y1e_c00470{bottom:895.921333pt;}
.y1d_c00470{bottom:921.207173pt;}
.y1c_c00470{bottom:921.801153pt;}
.y1b_c00470{bottom:923.551153pt;}
.y1a_c00470{bottom:925.171233pt;}
.y19_c00470{bottom:926.492333pt;}
.y18_c00470{bottom:927.363333pt;}
.y17_c00470{bottom:927.768513pt;}
.y16_c00470{bottom:928.072113pt;}
.y15_c00470{bottom:956.764447pt;}
.y14_c00470{bottom:957.220907pt;}
.y13_c00470{bottom:958.795553pt;}
.y12_c00470{bottom:982.532953pt;}
.y11_c00470{bottom:983.391040pt;}
.y10_c00470{bottom:984.200367pt;}
.yf_c00470{bottom:985.338173pt;}
.ye_c00470{bottom:985.891253pt;}
.yd_c00470{bottom:986.964853pt;}
.yc_c00470{bottom:988.345247pt;}
.yb_c00470{bottom:989.565360pt;}
.ya_c00470{bottom:990.508500pt;}
.y9_c00470{bottom:991.633460pt;}
.y8_c00470{bottom:992.162027pt;}
.y7_c00470{bottom:1019.178167pt;}
.y6_c00470{bottom:1019.599207pt;}
.y5_c00470{bottom:1020.938627pt;}
.y4_c00470{bottom:1021.820807pt;}
.y3_c00470{bottom:1022.362627pt;}
.y2_c00470{bottom:1026.482667pt;}
.y1_c00470{bottom:1077.604000pt;}
.h8_c00470{height:16.001800pt;}
.hb_c00470{height:16.002888pt;}
.h20_c00470{height:26.666667pt;}
.hd_c00470{height:26.670520pt;}
.h19_c00470{height:48.017493pt;}
.h1c_c00470{height:58.654961pt;}
.h9_c00470{height:58.671624pt;}
.h10_c00470{height:58.679601pt;}
.h15_c00470{height:58.688047pt;}
.h17_c00470{height:58.694849pt;}
.h5_c00470{height:64.004608pt;}
.h6_c00470{height:64.007200pt;}
.hf_c00470{height:64.011551pt;}
.h7_c00470{height:64.018429pt;}
.h18_c00470{height:64.030745pt;}
.h1d_c00470{height:69.316761pt;}
.h1e_c00470{height:69.325186pt;}
.h3_c00470{height:69.341133pt;}
.hc_c00470{height:69.343351pt;}
.ha_c00470{height:69.345847pt;}
.h13_c00470{height:69.358601pt;}
.h14_c00470{height:69.362482pt;}
.h1b_c00470{height:69.364526pt;}
.h16_c00470{height:74.630258pt;}
.h4_c00470{height:74.675066pt;}
.he_c00470{height:74.680143pt;}
.h1a_c00470{height:74.693878pt;}
.h1f_c00470{height:79.990599pt;}
.h11_c00470{height:80.019358pt;}
.h12_c00470{height:90.688605pt;}
.h2_c00470{height:106.666667pt;}
.h0_c00470{height:1107.840000pt;}
.h1_c00470{height:1108.000000pt;}
.w0_c00470{width:813.066667pt;}
.w1_c00470{width:813.333333pt;}
.x0_c00470{left:0.000000pt;}
.x46_c00470{left:5.692000pt;}
.x29_c00470{left:6.872000pt;}
.x2_c00470{left:12.820000pt;}
.x9e_c00470{left:28.560000pt;}
.x8_c00470{left:50.341820pt;}
.x52_c00470{left:126.800804pt;}
.x2e_c00470{left:128.270667pt;}
.x9_c00470{left:130.673687pt;}
.x70_c00470{left:145.225333pt;}
.x64_c00470{left:146.198667pt;}
.x39_c00470{left:148.153333pt;}
.x23_c00470{left:149.146667pt;}
.x13_c00470{left:150.123060pt;}
.x82_c00470{left:165.073333pt;}
.x71_c00470{left:166.025845pt;}
.x5b_c00470{left:167.196000pt;}
.x3a_c00470{left:168.412000pt;}
.x14_c00470{left:170.363060pt;}
.x4f_c00470{left:194.704419pt;}
.x1a_c00470{left:196.425333pt;}
.xa_c00470{left:198.084040pt;}
.x8f_c00470{left:201.220599pt;}
.x65_c00470{left:202.772000pt;}
.x47_c00470{left:204.060000pt;}
.x3b_c00470{left:205.492000pt;}
.x90_c00470{left:229.223235pt;}
.x15_c00470{left:255.441727pt;}
.x83_c00470{left:260.104000pt;}
.x3c_c00470{left:263.556000pt;}
.x1b_c00470{left:274.650667pt;}
.x8b_c00470{left:278.294667pt;}
.x37_c00470{left:280.487476pt;}
.x2c_c00470{left:281.673333pt;}
.x2a_c00470{left:283.034667pt;}
.x11_c00470{left:284.251313pt;}
.xb_c00470{left:285.204007pt;}
.x3_c00470{left:287.489333pt;}
.x7c_c00470{left:289.248129pt;}
.x6c_c00470{left:290.153333pt;}
.x3d_c00470{left:293.792000pt;}
.x72_c00470{left:299.759977pt;}
.x5c_c00470{left:300.878667pt;}
.x96_c00470{left:307.528000pt;}
.x62_c00470{left:310.380064pt;}
.x48_c00470{left:311.828000pt;}
.x22_c00470{left:313.210827pt;}
.x1c_c00470{left:314.253333pt;}
.x8c_c00470{left:317.546043pt;}
.x66_c00470{left:320.114667pt;}
.x24_c00470{left:322.628000pt;}
.x4_c00470{left:323.610667pt;}
.x91_c00470{left:327.035991pt;}
.x73_c00470{left:328.067641pt;}
.x59_c00470{left:330.968000pt;}
.x7d_c00470{left:338.215583pt;}
.x63_c00470{left:339.678645pt;}
.x53_c00470{left:340.854059pt;}
.x16_c00470{left:343.515060pt;}
.x9a_c00470{left:346.468520pt;}
.x2f_c00470{left:351.448000pt;}
.x97_c00470{left:356.116696pt;}
.x5a_c00470{left:360.252000pt;}
.x87_c00470{left:366.681333pt;}
.x6d_c00470{left:367.689333pt;}
.x3e_c00470{left:370.849333pt;}
.x7e_c00470{left:378.285196pt;}
.x49_c00470{left:379.790667pt;}
.x2b_c00470{left:381.434667pt;}
.x5_c00470{left:382.422667pt;}
.xc_c00470{left:383.809487pt;}
.x84_c00470{left:386.441333pt;}
.x1_c00470{left:389.040000pt;}
.x5d_c00470{left:400.017333pt;}
.x1d_c00470{left:402.257333pt;}
.x79_c00470{left:406.741333pt;}
.x4a_c00470{left:409.020000pt;}
.x12_c00470{left:411.212080pt;}
.x74_c00470{left:416.307313pt;}
.x6b_c00470{left:417.624000pt;}
.x33_c00470{left:420.689333pt;}
.x98_c00470{left:425.108968pt;}
.x85_c00470{left:426.020000pt;}
.x50_c00470{left:429.023587pt;}
.x30_c00470{left:431.133333pt;}
.x54_c00470{left:438.772209pt;}
.x92_c00470{left:444.559683pt;}
.x42_c00470{left:445.887572pt;}
.x3f_c00470{left:448.126667pt;}
.x17_c00470{left:451.520393pt;}
.x51_c00470{left:458.065791pt;}
.xd_c00470{left:460.450627pt;}
.x4b_c00470{left:468.542667pt;}
.x1e_c00470{left:470.056000pt;}
.x6_c00470{left:471.717333pt;}
.x2d_c00470{left:473.157333pt;}
.x93_c00470{left:474.830715pt;}
.x9b_c00470{left:484.029464pt;}
.x7a_c00470{left:485.468000pt;}
.x25_c00470{left:491.481333pt;}
.x75_c00470{left:495.912961pt;}
.x4c_c00470{left:497.337333pt;}
.x7_c00470{left:499.786667pt;}
.x99_c00470{left:503.920744pt;}
.x67_c00470{left:505.728000pt;}
.x7b_c00470{left:514.733333pt;}
.x6e_c00470{left:515.633333pt;}
.x7f_c00470{left:523.639680pt;}
.x5e_c00470{left:526.082667pt;}
.x26_c00470{left:528.089333pt;}
.x88_c00470{left:532.845333pt;}
.x1f_c00470{left:538.434667pt;}
.x86_c00470{left:542.889333pt;}
.x68_c00470{left:545.016000pt;}
.x94_c00470{left:552.114687pt;}
.x55_c00470{left:556.452647pt;}
.x31_c00470{left:557.393333pt;}
.x27_c00470{left:558.820000pt;}
.x5f_c00470{left:565.293333pt;}
.x18_c00470{left:568.187060pt;}
.x76_c00470{left:573.021109pt;}
.x89_c00470{left:574.250667pt;}
.x40_c00470{left:576.077333pt;}
.xe_c00470{left:581.267113pt;}
.x4d_c00470{left:585.686667pt;}
.x56_c00470{left:595.257245pt;}
.x8d_c00470{left:602.583387pt;}
.x80_c00470{left:603.546907pt;}
.x19_c00470{left:607.785727pt;}
.x77_c00470{left:613.010413pt;}
.x34_c00470{left:616.417333pt;}
.x38_c00470{left:625.726589pt;}
.x9c_c00470{left:631.670896pt;}
.x6f_c00470{left:634.685333pt;}
.x20_c00470{left:636.370667pt;}
.xf_c00470{left:639.045307pt;}
.x8a_c00470{left:643.114667pt;}
.x8e_c00470{left:644.172423pt;}
.x35_c00470{left:645.660000pt;}
.x95_c00470{left:652.787247pt;}
.x9d_c00470{left:660.900980pt;}
.x69_c00470{left:663.214667pt;}
.x41_c00470{left:664.657333pt;}
.x57_c00470{left:667.237211pt;}
.x4e_c00470{left:674.493333pt;}
.x36_c00470{left:675.424000pt;}
.x43_c00470{left:678.894239pt;}
.x81_c00470{left:682.799549pt;}
.x28_c00470{left:685.074667pt;}
.x60_c00470{left:693.277333pt;}
.x78_c00470{left:695.613061pt;}
.x10_c00470{left:700.340893pt;}
.x58_c00470{left:704.668501pt;}
.x44_c00470{left:706.970239pt;}
.x21_c00470{left:708.593333pt;}
.x32_c00470{left:714.652000pt;}
.x61_c00470{left:732.596000pt;}
.x6a_c00470{left:733.568000pt;}
.x45_c00470{left:740.804905pt;}
}





/* 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_c00471 {
    display:none;
  }
  .loading-indicator_c00471.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00471 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_c00471 { 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_c00471" -> "#page-container .classname_c00471")
 */
.pf_c00471 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00471 { /* 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_c00471.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00471 { /* 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_c00471 { /* 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_c00471 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00471 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00471 {overflow:visible;}
  }
}
.c_c00471 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00471 { /* 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_c00471:after { /* webkit #35443 */
  content: '';
}
.t_c00471:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00471 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 */
}
.__c00471 { /* 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_c00471 { /* info for Javascript */
  display:none;
}
.l_c00471 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00471 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00471 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00471: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_c00471 {
    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_c00471.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00471.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_c00471 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00471{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00471;src:url('chunks/assets/font_92d6bb63cbc780ceff7db400.woff2')format("woff");}.ff1_c00471{font-family:ff1_c00471;line-height:1.000000;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;}
.m9_c00471{transform:matrix(0.020280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.020280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.020280,0.000000,0.000000,0.250000,0,0);}
.m2_c00471{transform:matrix(0.027040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.027040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.027040,0.000000,0.000000,0.250000,0,0);}
.m3_c00471{transform:matrix(0.031820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.031820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.031820,0.000000,0.000000,0.250000,0,0);}
.m1b_c00471{transform:matrix(0.033540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.033540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.033540,0.000000,0.000000,0.250000,0,0);}
.me_c00471{transform:matrix(0.048025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.048025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.048025,0.000000,0.000000,0.250000,0,0);}
.m11_c00471{transform:matrix(0.053035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.053035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.053035,0.000000,0.000000,0.250000,0,0);}
.m4_c00471{transform:matrix(0.057365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.057365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.057365,0.000000,0.000000,0.250000,0,0);}
.m13_c00471{transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);}
.m0_c00471{transform:matrix(0.087465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087465,0.000000,0.000000,0.250000,0,0);}
.m1c_c00471{transform:matrix(0.095460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.095460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.095460,0.000000,0.000000,0.250000,0,0);}
.m17_c00471{transform:matrix(0.131195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131195,0.000000,0.000000,0.250000,0,0);}
.mc_c00471{transform:matrix(0.144070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144070,0.000000,0.000000,0.250000,0,0);}
.m18_c00471{transform:matrix(0.162250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162250,0.000000,0.000000,0.250000,0,0);}
.m12_c00471{transform:matrix(0.173395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173395,0.000000,0.000000,0.250000,0,0);}
.m22_c00471{transform:matrix(0.173725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173725,0.000000,0.000000,0.250000,0,0);}
.m23_c00471{transform:matrix(0.176620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176620,0.000000,0.000000,0.250000,0,0);}
.m26_c00471{transform:matrix(0.178885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178885,0.000000,0.000000,0.250000,0,0);}
.m25_c00471{transform:matrix(0.181650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181650,0.000000,0.000000,0.250000,0,0);}
.m8_c00471{transform:matrix(0.189290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189290,0.000000,0.000000,0.250000,0,0);}
.m1a_c00471{transform:matrix(0.190920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190920,0.000000,0.000000,0.250000,0,0);}
.m5_c00471{transform:matrix(0.201945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201945,0.000000,0.000000,0.250000,0,0);}
.m1d_c00471{transform:matrix(0.207270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207270,0.000000,0.000000,0.250000,0,0);}
.ma_c00471{transform:matrix(0.221470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221470,0.000000,0.000000,0.250000,0,0);}
.m21_c00471{transform:matrix(0.236470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236470,0.000000,0.000000,0.250000,0,0);}
.m24_c00471{transform:matrix(0.238145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238145,0.000000,0.000000,0.250000,0,0);}
.m1e_c00471{transform:matrix(0.248815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248815,0.000000,0.000000,0.250000,0,0);}
.m15_c00471{transform:matrix(0.256540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256540,0.000000,0.000000,0.250000,0,0);}
.m20_c00471{transform:matrix(0.260310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260310,0.000000,0.000000,0.250000,0,0);}
.m6_c00471{transform:matrix(0.275055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275055,0.000000,0.000000,0.250000,0,0);}
.m1_c00471{transform:matrix(0.286820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286820,0.000000,0.000000,0.250000,0,0);}
.mb_c00471{transform:matrix(0.302705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302705,0.000000,0.000000,0.250000,0,0);}
.m14_c00471{transform:matrix(0.307775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307775,0.000000,0.000000,0.250000,0,0);}
.m16_c00471{transform:matrix(0.329315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329315,0.000000,0.000000,0.250000,0,0);}
.m1f_c00471{transform:matrix(0.377850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377850,0.000000,0.000000,0.250000,0,0);}
.m27_c00471{transform:matrix(0.445115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445115,0.000000,0.000000,0.250000,0,0);}
.md_c00471{transform:matrix(0.503115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.503115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.503115,0.000000,0.000000,0.250000,0,0);}
.m10_c00471{transform:matrix(0.532660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532660,0.000000,0.000000,0.250000,0,0);}
.mf_c00471{transform:matrix(0.536920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536920,0.000000,0.000000,0.250000,0,0);}
.m19_c00471{transform:matrix(0.798035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.798035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.798035,0.000000,0.000000,0.250000,0,0);}
.m7_c00471{transform:matrix(2.628095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.628095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.628095,0.000000,0.000000,0.250000,0,0);}
.v0_c00471{vertical-align:0.000000px;}
.ls0_c00471{letter-spacing:0.000000px;}
.sc__c00471{text-shadow:none;}
.sc0_c00471{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__c00471{-webkit-text-stroke:0px transparent;}
.sc0_c00471{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00471{word-spacing:0.000000px;}
.fc0_c00471{color:transparent;}
.fs1_c00471{font-size:12.000000px;}
.fs5_c00471{font-size:18.000000px;}
.fs0_c00471{font-size:24.000000px;}
.fs2_c00471{font-size:36.000000px;}
.fs3_c00471{font-size:78.000000px;}
.fs4_c00471{font-size:108.000000px;}
.y0_c00471{bottom:0.000000px;}
.yd_c00471{bottom:502.740000px;}
.yc_c00471{bottom:543.780000px;}
.yb_c00471{bottom:992.929500px;}
.ya_c00471{bottom:1031.604000px;}
.y9_c00471{bottom:1175.040000px;}
.y8_c00471{bottom:1187.868000px;}
.y6_c00471{bottom:1190.952000px;}
.y7_c00471{bottom:1192.590000px;}
.y5_c00471{bottom:1194.550500px;}
.y4_c00471{bottom:1206.817500px;}
.y3_c00471{bottom:1213.717500px;}
.y2_c00471{bottom:1228.492500px;}
.y1_c00471{bottom:1243.138500px;}
.h3_c00471{height:12.000000px;}
.h7_c00471{height:18.000000px;}
.h2_c00471{height:24.000000px;}
.h4_c00471{height:36.000000px;}
.h5_c00471{height:78.000000px;}
.h6_c00471{height:108.000000px;}
.h0_c00471{height:1246.320000px;}
.h1_c00471{height:1246.500000px;}
.w0_c00471{width:914.700000px;}
.w1_c00471{width:915.000000px;}
.x0_c00471{left:0.000000px;}
.x1_c00471{left:7.560000px;}
.x2_c00471{left:13.500000px;}
.x28_c00471{left:15.930000px;}
.x3_c00471{left:22.140000px;}
.xc_c00471{left:69.660000px;}
.x1d_c00471{left:101.572500px;}
.xf_c00471{left:185.760000px;}
.x4_c00471{left:234.900000px;}
.x17_c00471{left:305.370000px;}
.x1f_c00471{left:353.431500px;}
.x20_c00471{left:367.740000px;}
.x5_c00471{left:380.160000px;}
.x1a_c00471{left:396.900000px;}
.x13_c00471{left:402.840000px;}
.x6_c00471{left:407.970000px;}
.x21_c00471{left:414.450000px;}
.x1b_c00471{left:416.070000px;}
.x18_c00471{left:417.690000px;}
.x25_c00471{left:430.380000px;}
.x10_c00471{left:431.460000px;}
.x14_c00471{left:432.810000px;}
.xd_c00471{left:443.070000px;}
.x15_c00471{left:458.190000px;}
.x26_c00471{left:470.070000px;}
.x7_c00471{left:504.090000px;}
.x8_c00471{left:525.960000px;}
.x22_c00471{left:535.140000px;}
.x11_c00471{left:550.260000px;}
.x27_c00471{left:569.700000px;}
.x12_c00471{left:589.410000px;}
.x23_c00471{left:602.910000px;}
.x16_c00471{left:613.170000px;}
.x1c_c00471{left:615.060000px;}
.xe_c00471{left:622.890000px;}
.x19_c00471{left:624.510000px;}
.x24_c00471{left:633.690000px;}
.x9_c00471{left:648.540000px;}
.xa_c00471{left:665.010000px;}
.xb_c00471{left:675.810000px;}
.x1e_c00471{left:691.735500px;}
@media print{
.v0_c00471{vertical-align:0.000000pt;}
.ls0_c00471{letter-spacing:0.000000pt;}
.ws0_c00471{word-spacing:0.000000pt;}
.fs1_c00471{font-size:10.666667pt;}
.fs5_c00471{font-size:16.000000pt;}
.fs0_c00471{font-size:21.333333pt;}
.fs2_c00471{font-size:32.000000pt;}
.fs3_c00471{font-size:69.333333pt;}
.fs4_c00471{font-size:96.000000pt;}
.y0_c00471{bottom:0.000000pt;}
.yd_c00471{bottom:446.880000pt;}
.yc_c00471{bottom:483.360000pt;}
.yb_c00471{bottom:882.604000pt;}
.ya_c00471{bottom:916.981333pt;}
.y9_c00471{bottom:1044.480000pt;}
.y8_c00471{bottom:1055.882667pt;}
.y6_c00471{bottom:1058.624000pt;}
.y7_c00471{bottom:1060.080000pt;}
.y5_c00471{bottom:1061.822667pt;}
.y4_c00471{bottom:1072.726667pt;}
.y3_c00471{bottom:1078.860000pt;}
.y2_c00471{bottom:1091.993333pt;}
.y1_c00471{bottom:1105.012000pt;}
.h3_c00471{height:10.666667pt;}
.h7_c00471{height:16.000000pt;}
.h2_c00471{height:21.333333pt;}
.h4_c00471{height:32.000000pt;}
.h5_c00471{height:69.333333pt;}
.h6_c00471{height:96.000000pt;}
.h0_c00471{height:1107.840000pt;}
.h1_c00471{height:1108.000000pt;}
.w0_c00471{width:813.066667pt;}
.w1_c00471{width:813.333333pt;}
.x0_c00471{left:0.000000pt;}
.x1_c00471{left:6.720000pt;}
.x2_c00471{left:12.000000pt;}
.x28_c00471{left:14.160000pt;}
.x3_c00471{left:19.680000pt;}
.xc_c00471{left:61.920000pt;}
.x1d_c00471{left:90.286667pt;}
.xf_c00471{left:165.120000pt;}
.x4_c00471{left:208.800000pt;}
.x17_c00471{left:271.440000pt;}
.x1f_c00471{left:314.161333pt;}
.x20_c00471{left:326.880000pt;}
.x5_c00471{left:337.920000pt;}
.x1a_c00471{left:352.800000pt;}
.x13_c00471{left:358.080000pt;}
.x6_c00471{left:362.640000pt;}
.x21_c00471{left:368.400000pt;}
.x1b_c00471{left:369.840000pt;}
.x18_c00471{left:371.280000pt;}
.x25_c00471{left:382.560000pt;}
.x10_c00471{left:383.520000pt;}
.x14_c00471{left:384.720000pt;}
.xd_c00471{left:393.840000pt;}
.x15_c00471{left:407.280000pt;}
.x26_c00471{left:417.840000pt;}
.x7_c00471{left:448.080000pt;}
.x8_c00471{left:467.520000pt;}
.x22_c00471{left:475.680000pt;}
.x11_c00471{left:489.120000pt;}
.x27_c00471{left:506.400000pt;}
.x12_c00471{left:523.920000pt;}
.x23_c00471{left:535.920000pt;}
.x16_c00471{left:545.040000pt;}
.x1c_c00471{left:546.720000pt;}
.xe_c00471{left:553.680000pt;}
.x19_c00471{left:555.120000pt;}
.x24_c00471{left:563.280000pt;}
.x9_c00471{left:576.480000pt;}
.xa_c00471{left:591.120000pt;}
.xb_c00471{left:600.720000pt;}
.x1e_c00471{left:614.876000pt;}
}





/* 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_c00472 {
    display:none;
  }
  .loading-indicator_c00472.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00472 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_c00472 { 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_c00472" -> "#page-container .classname_c00472")
 */
.pf_c00472 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00472 { /* 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_c00472.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00472 { /* 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_c00472 { /* 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_c00472 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00472 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00472 {overflow:visible;}
  }
}
.c_c00472 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00472 { /* 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_c00472:after { /* webkit #35443 */
  content: '';
}
.t_c00472:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00472 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 */
}
.__c00472 { /* 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_c00472 { /* info for Javascript */
  display:none;
}
.l_c00472 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00472 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00472 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00472: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_c00472 {
    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_c00472.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00472.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_c00472 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00472{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00472;src:url('chunks/assets/font_c605e72f209fc835e906f064.woff2')format("woff");}.ff1_c00472{font-family:ff1_c00472;line-height:1.000000;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;}
.m26_c00472{transform:matrix(0.010811,-0.000292,0.006748,0.249909,0,0);-ms-transform:matrix(0.010811,-0.000292,0.006748,0.249909,0,0);-webkit-transform:matrix(0.010811,-0.000292,0.006748,0.249909,0,0);}
.m8b_c00472{transform:matrix(0.010814,-0.000162,0.003750,0.249972,0,0);-ms-transform:matrix(0.010814,-0.000162,0.003750,0.249972,0,0);-webkit-transform:matrix(0.010814,-0.000162,0.003750,0.249972,0,0);}
.m44_c00472{transform:matrix(0.055806,-0.001005,0.004499,0.249960,0,0);-ms-transform:matrix(0.055806,-0.001005,0.004499,0.249960,0,0);-webkit-transform:matrix(0.055806,-0.001005,0.004499,0.249960,0,0);}
.mdd_c00472{transform:matrix(0.111730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111730,0.000000,0.000000,0.250000,0,0);}
.mf_c00472{transform:matrix(0.112500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112500,0.000000,0.000000,0.250000,0,0);}
.mdb_c00472{transform:matrix(0.126900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126900,0.000000,0.000000,0.250000,0,0);}
.m3d_c00472{transform:matrix(0.140122,-0.002522,0.004499,0.249960,0,0);-ms-transform:matrix(0.140122,-0.002522,0.004499,0.249960,0,0);-webkit-transform:matrix(0.140122,-0.002522,0.004499,0.249960,0,0);}
.m5c_c00472{transform:matrix(0.141344,-0.002120,0.003750,0.249972,0,0);-ms-transform:matrix(0.141344,-0.002120,0.003750,0.249972,0,0);-webkit-transform:matrix(0.141344,-0.002120,0.003750,0.249972,0,0);}
.me7_c00472{transform:matrix(0.141620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141620,0.000000,0.000000,0.250000,0,0);}
.m1d_c00472{transform:matrix(0.150425,-0.004061,0.006748,0.249909,0,0);-ms-transform:matrix(0.150425,-0.004061,0.006748,0.249909,0,0);-webkit-transform:matrix(0.150425,-0.004061,0.006748,0.249909,0,0);}
.mba_c00472{transform:matrix(0.153010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153010,0.000000,0.000000,0.250000,0,0);}
.mac_c00472{transform:matrix(0.153266,-0.001073,0.001750,0.249994,0,0);-ms-transform:matrix(0.153266,-0.001073,0.001750,0.249994,0,0);-webkit-transform:matrix(0.153266,-0.001073,0.001750,0.249994,0,0);}
.m8c_c00472{transform:matrix(0.161212,-0.002418,0.003750,0.249972,0,0);-ms-transform:matrix(0.161212,-0.002418,0.003750,0.249972,0,0);-webkit-transform:matrix(0.161212,-0.002418,0.003750,0.249972,0,0);}
.m27_c00472{transform:matrix(0.162059,-0.003403,0.005249,0.249945,0,0);-ms-transform:matrix(0.162059,-0.003403,0.005249,0.249945,0,0);-webkit-transform:matrix(0.162059,-0.003403,0.005249,0.249945,0,0);}
.mc3_c00472{transform:matrix(0.162645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162645,0.000000,0.000000,0.250000,0,0);}
.mbb_c00472{transform:matrix(0.162985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162985,0.000000,0.000000,0.250000,0,0);}
.m31_c00472{transform:matrix(0.163159,-0.003426,0.005249,0.249945,0,0);-ms-transform:matrix(0.163159,-0.003426,0.005249,0.249945,0,0);-webkit-transform:matrix(0.163159,-0.003426,0.005249,0.249945,0,0);}
.m50_c00472{transform:matrix(0.166705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166705,0.000000,0.000000,0.250000,0,0);}
.m5f_c00472{transform:matrix(0.166756,-0.002501,0.003750,0.249972,0,0);-ms-transform:matrix(0.166756,-0.002501,0.003750,0.249972,0,0);-webkit-transform:matrix(0.166756,-0.002501,0.003750,0.249972,0,0);}
.m61_c00472{transform:matrix(0.168991,-0.002535,0.003750,0.249972,0,0);-ms-transform:matrix(0.168991,-0.002535,0.003750,0.249972,0,0);-webkit-transform:matrix(0.168991,-0.002535,0.003750,0.249972,0,0);}
.m11_c00472{transform:matrix(0.169705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169705,0.000000,0.000000,0.250000,0,0);}
.md_c00472{transform:matrix(0.169815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169815,0.000000,0.000000,0.250000,0,0);}
.m9d_c00472{transform:matrix(0.171496,-0.002572,0.003750,0.249972,0,0);-ms-transform:matrix(0.171496,-0.002572,0.003750,0.249972,0,0);-webkit-transform:matrix(0.171496,-0.002572,0.003750,0.249972,0,0);}
.m95_c00472{transform:matrix(0.173610,-0.002604,0.003750,0.249972,0,0);-ms-transform:matrix(0.173610,-0.002604,0.003750,0.249972,0,0);-webkit-transform:matrix(0.173610,-0.002604,0.003750,0.249972,0,0);}
.m3a_c00472{transform:matrix(0.175722,-0.003163,0.004499,0.249960,0,0);-ms-transform:matrix(0.175722,-0.003163,0.004499,0.249960,0,0);-webkit-transform:matrix(0.175722,-0.003163,0.004499,0.249960,0,0);}
.m3e_c00472{transform:matrix(0.178106,-0.003206,0.004499,0.249960,0,0);-ms-transform:matrix(0.178106,-0.003206,0.004499,0.249960,0,0);-webkit-transform:matrix(0.178106,-0.003206,0.004499,0.249960,0,0);}
.m24_c00472{transform:matrix(0.178550,-0.004821,0.006748,0.249909,0,0);-ms-transform:matrix(0.178550,-0.004821,0.006748,0.249909,0,0);-webkit-transform:matrix(0.178550,-0.004821,0.006748,0.249909,0,0);}
.m1f_c00472{transform:matrix(0.180214,-0.004866,0.006748,0.249909,0,0);-ms-transform:matrix(0.180214,-0.004866,0.006748,0.249909,0,0);-webkit-transform:matrix(0.180214,-0.004866,0.006748,0.249909,0,0);}
.m4e_c00472{transform:matrix(0.181888,-0.004547,0.006248,0.249922,0,0);-ms-transform:matrix(0.181888,-0.004547,0.006248,0.249922,0,0);-webkit-transform:matrix(0.181888,-0.004547,0.006248,0.249922,0,0);}
.me8_c00472{transform:matrix(0.182145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182145,0.000000,0.000000,0.250000,0,0);}
.me0_c00472{transform:matrix(0.183050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183050,0.000000,0.000000,0.250000,0,0);}
.m4c_c00472{transform:matrix(0.184332,-0.004608,0.006248,0.249922,0,0);-ms-transform:matrix(0.184332,-0.004608,0.006248,0.249922,0,0);-webkit-transform:matrix(0.184332,-0.004608,0.006248,0.249922,0,0);}
.m47_c00472{transform:matrix(0.184447,-0.004611,0.006248,0.249922,0,0);-ms-transform:matrix(0.184447,-0.004611,0.006248,0.249922,0,0);-webkit-transform:matrix(0.184447,-0.004611,0.006248,0.249922,0,0);}
.m12_c00472{transform:matrix(0.188031,-0.005077,0.006748,0.249909,0,0);-ms-transform:matrix(0.188031,-0.005077,0.006748,0.249909,0,0);-webkit-transform:matrix(0.188031,-0.005077,0.006748,0.249909,0,0);}
.m53_c00472{transform:matrix(0.188079,-0.002821,0.003750,0.249972,0,0);-ms-transform:matrix(0.188079,-0.002821,0.003750,0.249972,0,0);-webkit-transform:matrix(0.188079,-0.002821,0.003750,0.249972,0,0);}
.mbd_c00472{transform:matrix(0.188400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188400,0.000000,0.000000,0.250000,0,0);}
.m77_c00472{transform:matrix(0.189089,-0.002836,0.003750,0.249972,0,0);-ms-transform:matrix(0.189089,-0.002836,0.003750,0.249972,0,0);-webkit-transform:matrix(0.189089,-0.002836,0.003750,0.249972,0,0);}
.mb3_c00472{transform:matrix(0.190150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190150,0.000000,0.000000,0.250000,0,0);}
.m20_c00472{transform:matrix(0.191380,-0.005167,0.006748,0.249909,0,0);-ms-transform:matrix(0.191380,-0.005167,0.006748,0.249909,0,0);-webkit-transform:matrix(0.191380,-0.005167,0.006748,0.249909,0,0);}
.m2f_c00472{transform:matrix(0.191933,-0.004031,0.005249,0.249945,0,0);-ms-transform:matrix(0.191933,-0.004031,0.005249,0.249945,0,0);-webkit-transform:matrix(0.191933,-0.004031,0.005249,0.249945,0,0);}
.m72_c00472{transform:matrix(0.191953,-0.002879,0.003750,0.249972,0,0);-ms-transform:matrix(0.191953,-0.002879,0.003750,0.249972,0,0);-webkit-transform:matrix(0.191953,-0.002879,0.003750,0.249972,0,0);}
.mee_c00472{transform:matrix(0.192095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192095,0.000000,0.000000,0.250000,0,0);}
.m5d_c00472{transform:matrix(0.192853,-0.002893,0.003750,0.249972,0,0);-ms-transform:matrix(0.192853,-0.002893,0.003750,0.249972,0,0);-webkit-transform:matrix(0.192853,-0.002893,0.003750,0.249972,0,0);}
.mae_c00472{transform:matrix(0.193420,-0.001354,0.001750,0.249994,0,0);-ms-transform:matrix(0.193420,-0.001354,0.001750,0.249994,0,0);-webkit-transform:matrix(0.193420,-0.001354,0.001750,0.249994,0,0);}
.mf1_c00472{transform:matrix(0.194350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194350,0.000000,0.000000,0.250000,0,0);}
.me1_c00472{transform:matrix(0.194800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194800,0.000000,0.000000,0.250000,0,0);}
.m4f_c00472{transform:matrix(0.195214,-0.004880,0.006248,0.249922,0,0);-ms-transform:matrix(0.195214,-0.004880,0.006248,0.249922,0,0);-webkit-transform:matrix(0.195214,-0.004880,0.006248,0.249922,0,0);}
.me4_c00472{transform:matrix(0.195575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195575,0.000000,0.000000,0.250000,0,0);}
.m9a_c00472{transform:matrix(0.195853,-0.002938,0.003750,0.249972,0,0);-ms-transform:matrix(0.195853,-0.002938,0.003750,0.249972,0,0);-webkit-transform:matrix(0.195853,-0.002938,0.003750,0.249972,0,0);}
.m2c_c00472{transform:matrix(0.196472,-0.004126,0.005249,0.249945,0,0);-ms-transform:matrix(0.196472,-0.004126,0.005249,0.249945,0,0);-webkit-transform:matrix(0.196472,-0.004126,0.005249,0.249945,0,0);}
.m34_c00472{transform:matrix(0.197661,-0.004151,0.005249,0.249945,0,0);-ms-transform:matrix(0.197661,-0.004151,0.005249,0.249945,0,0);-webkit-transform:matrix(0.197661,-0.004151,0.005249,0.249945,0,0);}
.md0_c00472{transform:matrix(0.197908,0.000990,-0.001250,0.249997,0,0);-ms-transform:matrix(0.197908,0.000990,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.197908,0.000990,-0.001250,0.249997,0,0);}
.med_c00472{transform:matrix(0.197910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197910,0.000000,0.000000,0.250000,0,0);}
.m65_c00472{transform:matrix(0.198023,-0.002970,0.003750,0.249972,0,0);-ms-transform:matrix(0.198023,-0.002970,0.003750,0.249972,0,0);-webkit-transform:matrix(0.198023,-0.002970,0.003750,0.249972,0,0);}
.m36_c00472{transform:matrix(0.198411,-0.004167,0.005249,0.249945,0,0);-ms-transform:matrix(0.198411,-0.004167,0.005249,0.249945,0,0);-webkit-transform:matrix(0.198411,-0.004167,0.005249,0.249945,0,0);}
.mc4_c00472{transform:matrix(0.199365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199365,0.000000,0.000000,0.250000,0,0);}
.mea_c00472{transform:matrix(0.201245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201245,0.000000,0.000000,0.250000,0,0);}
.m8a_c00472{transform:matrix(0.201782,-0.003027,0.003750,0.249972,0,0);-ms-transform:matrix(0.201782,-0.003027,0.003750,0.249972,0,0);-webkit-transform:matrix(0.201782,-0.003027,0.003750,0.249972,0,0);}
.m22_c00472{transform:matrix(0.201811,-0.005449,0.006748,0.249909,0,0);-ms-transform:matrix(0.201811,-0.005449,0.006748,0.249909,0,0);-webkit-transform:matrix(0.201811,-0.005449,0.006748,0.249909,0,0);}
.m2d_c00472{transform:matrix(0.203255,-0.004268,0.005249,0.249945,0,0);-ms-transform:matrix(0.203255,-0.004268,0.005249,0.249945,0,0);-webkit-transform:matrix(0.203255,-0.004268,0.005249,0.249945,0,0);}
.m62_c00472{transform:matrix(0.203592,-0.003054,0.003750,0.249972,0,0);-ms-transform:matrix(0.203592,-0.003054,0.003750,0.249972,0,0);-webkit-transform:matrix(0.203592,-0.003054,0.003750,0.249972,0,0);}
.m41_c00472{transform:matrix(0.204782,-0.003686,0.004499,0.249960,0,0);-ms-transform:matrix(0.204782,-0.003686,0.004499,0.249960,0,0);-webkit-transform:matrix(0.204782,-0.003686,0.004499,0.249960,0,0);}
.m93_c00472{transform:matrix(0.205322,-0.003080,0.003750,0.249972,0,0);-ms-transform:matrix(0.205322,-0.003080,0.003750,0.249972,0,0);-webkit-transform:matrix(0.205322,-0.003080,0.003750,0.249972,0,0);}
.m91_c00472{transform:matrix(0.205942,-0.003089,0.003750,0.249972,0,0);-ms-transform:matrix(0.205942,-0.003089,0.003750,0.249972,0,0);-webkit-transform:matrix(0.205942,-0.003089,0.003750,0.249972,0,0);}
.ma0_c00472{transform:matrix(0.206642,-0.003100,0.003750,0.249972,0,0);-ms-transform:matrix(0.206642,-0.003100,0.003750,0.249972,0,0);-webkit-transform:matrix(0.206642,-0.003100,0.003750,0.249972,0,0);}
.m23_c00472{transform:matrix(0.207050,-0.005590,0.006748,0.249909,0,0);-ms-transform:matrix(0.207050,-0.005590,0.006748,0.249909,0,0);-webkit-transform:matrix(0.207050,-0.005590,0.006748,0.249909,0,0);}
.meb_c00472{transform:matrix(0.207425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207425,0.000000,0.000000,0.250000,0,0);}
.mb5_c00472{transform:matrix(0.207515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207515,0.000000,0.000000,0.250000,0,0);}
.m5e_c00472{transform:matrix(0.207737,-0.003116,0.003750,0.249972,0,0);-ms-transform:matrix(0.207737,-0.003116,0.003750,0.249972,0,0);-webkit-transform:matrix(0.207737,-0.003116,0.003750,0.249972,0,0);}
.me5_c00472{transform:matrix(0.208065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208065,0.000000,0.000000,0.250000,0,0);}
.m4a_c00472{transform:matrix(0.208150,-0.005204,0.006248,0.249922,0,0);-ms-transform:matrix(0.208150,-0.005204,0.006248,0.249922,0,0);-webkit-transform:matrix(0.208150,-0.005204,0.006248,0.249922,0,0);}
.m60_c00472{transform:matrix(0.208372,-0.003126,0.003750,0.249972,0,0);-ms-transform:matrix(0.208372,-0.003126,0.003750,0.249972,0,0);-webkit-transform:matrix(0.208372,-0.003126,0.003750,0.249972,0,0);}
.m32_c00472{transform:matrix(0.208509,-0.004379,0.005249,0.249945,0,0);-ms-transform:matrix(0.208509,-0.004379,0.005249,0.249945,0,0);-webkit-transform:matrix(0.208509,-0.004379,0.005249,0.249945,0,0);}
.m75_c00472{transform:matrix(0.208727,-0.003131,0.003750,0.249972,0,0);-ms-transform:matrix(0.208727,-0.003131,0.003750,0.249972,0,0);-webkit-transform:matrix(0.208727,-0.003131,0.003750,0.249972,0,0);}
.m17_c00472{transform:matrix(0.209419,-0.005654,0.006748,0.249909,0,0);-ms-transform:matrix(0.209419,-0.005654,0.006748,0.249909,0,0);-webkit-transform:matrix(0.209419,-0.005654,0.006748,0.249909,0,0);}
.m46_c00472{transform:matrix(0.210564,-0.005264,0.006248,0.249922,0,0);-ms-transform:matrix(0.210564,-0.005264,0.006248,0.249922,0,0);-webkit-transform:matrix(0.210564,-0.005264,0.006248,0.249922,0,0);}
.m48_c00472{transform:matrix(0.211694,-0.005292,0.006248,0.249922,0,0);-ms-transform:matrix(0.211694,-0.005292,0.006248,0.249922,0,0);-webkit-transform:matrix(0.211694,-0.005292,0.006248,0.249922,0,0);}
.md7_c00472{transform:matrix(0.211870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211870,0.000000,0.000000,0.250000,0,0);}
.m63_c00472{transform:matrix(0.212451,-0.003187,0.003750,0.249972,0,0);-ms-transform:matrix(0.212451,-0.003187,0.003750,0.249972,0,0);-webkit-transform:matrix(0.212451,-0.003187,0.003750,0.249972,0,0);}
.mc1_c00472{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.mda_c00472{transform:matrix(0.212875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212875,0.000000,0.000000,0.250000,0,0);}
.m45_c00472{transform:matrix(0.213018,-0.005325,0.006248,0.249922,0,0);-ms-transform:matrix(0.213018,-0.005325,0.006248,0.249922,0,0);-webkit-transform:matrix(0.213018,-0.005325,0.006248,0.249922,0,0);}
.m3_c00472{transform:matrix(0.213223,-0.004478,0.005249,0.249945,0,0);-ms-transform:matrix(0.213223,-0.004478,0.005249,0.249945,0,0);-webkit-transform:matrix(0.213223,-0.004478,0.005249,0.249945,0,0);}
.m4b_c00472{transform:matrix(0.213398,-0.005335,0.006248,0.249922,0,0);-ms-transform:matrix(0.213398,-0.005335,0.006248,0.249922,0,0);-webkit-transform:matrix(0.213398,-0.005335,0.006248,0.249922,0,0);}
.mde_c00472{transform:matrix(0.213730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213730,0.000000,0.000000,0.250000,0,0);}
.m29_c00472{transform:matrix(0.215438,-0.004524,0.005249,0.249945,0,0);-ms-transform:matrix(0.215438,-0.004524,0.005249,0.249945,0,0);-webkit-transform:matrix(0.215438,-0.004524,0.005249,0.249945,0,0);}
.m2a_c00472{transform:matrix(0.215572,-0.004527,0.005249,0.249945,0,0);-ms-transform:matrix(0.215572,-0.004527,0.005249,0.249945,0,0);-webkit-transform:matrix(0.215572,-0.004527,0.005249,0.249945,0,0);}
.m21_c00472{transform:matrix(0.215581,-0.005821,0.006748,0.249909,0,0);-ms-transform:matrix(0.215581,-0.005821,0.006748,0.249909,0,0);-webkit-transform:matrix(0.215581,-0.005821,0.006748,0.249909,0,0);}
.m2e_c00472{transform:matrix(0.215862,-0.004533,0.005249,0.249945,0,0);-ms-transform:matrix(0.215862,-0.004533,0.005249,0.249945,0,0);-webkit-transform:matrix(0.215862,-0.004533,0.005249,0.249945,0,0);}
.me9_c00472{transform:matrix(0.215910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215910,0.000000,0.000000,0.250000,0,0);}
.mcc_c00472{transform:matrix(0.217007,0.001085,-0.001250,0.249997,0,0);-ms-transform:matrix(0.217007,0.001085,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.217007,0.001085,-0.001250,0.249997,0,0);}
.m49_c00472{transform:matrix(0.217377,-0.005434,0.006248,0.249922,0,0);-ms-transform:matrix(0.217377,-0.005434,0.006248,0.249922,0,0);-webkit-transform:matrix(0.217377,-0.005434,0.006248,0.249922,0,0);}
.m58_c00472{transform:matrix(0.217476,-0.003262,0.003750,0.249972,0,0);-ms-transform:matrix(0.217476,-0.003262,0.003750,0.249972,0,0);-webkit-transform:matrix(0.217476,-0.003262,0.003750,0.249972,0,0);}
.m98_c00472{transform:matrix(0.217711,-0.003266,0.003750,0.249972,0,0);-ms-transform:matrix(0.217711,-0.003266,0.003750,0.249972,0,0);-webkit-transform:matrix(0.217711,-0.003266,0.003750,0.249972,0,0);}
.mca_c00472{transform:matrix(0.218332,0.001092,-0.001250,0.249997,0,0);-ms-transform:matrix(0.218332,0.001092,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.218332,0.001092,-0.001250,0.249997,0,0);}
.m87_c00472{transform:matrix(0.219120,-0.003287,0.003750,0.249972,0,0);-ms-transform:matrix(0.219120,-0.003287,0.003750,0.249972,0,0);-webkit-transform:matrix(0.219120,-0.003287,0.003750,0.249972,0,0);}
.ma8_c00472{transform:matrix(0.219495,-0.001536,0.001750,0.249994,0,0);-ms-transform:matrix(0.219495,-0.001536,0.001750,0.249994,0,0);-webkit-transform:matrix(0.219495,-0.001536,0.001750,0.249994,0,0);}
.m70_c00472{transform:matrix(0.219815,-0.003297,0.003750,0.249972,0,0);-ms-transform:matrix(0.219815,-0.003297,0.003750,0.249972,0,0);-webkit-transform:matrix(0.219815,-0.003297,0.003750,0.249972,0,0);}
.m35_c00472{transform:matrix(0.220021,-0.004620,0.005249,0.249945,0,0);-ms-transform:matrix(0.220021,-0.004620,0.005249,0.249945,0,0);-webkit-transform:matrix(0.220021,-0.004620,0.005249,0.249945,0,0);}
.mdf_c00472{transform:matrix(0.220405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220405,0.000000,0.000000,0.250000,0,0);}
.m14_c00472{transform:matrix(0.220430,-0.005952,0.006748,0.249909,0,0);-ms-transform:matrix(0.220430,-0.005952,0.006748,0.249909,0,0);-webkit-transform:matrix(0.220430,-0.005952,0.006748,0.249909,0,0);}
.m25_c00472{transform:matrix(0.220535,-0.005954,0.006748,0.249909,0,0);-ms-transform:matrix(0.220535,-0.005954,0.006748,0.249909,0,0);-webkit-transform:matrix(0.220535,-0.005954,0.006748,0.249909,0,0);}
.mcb_c00472{transform:matrix(0.220542,0.001103,-0.001250,0.249997,0,0);-ms-transform:matrix(0.220542,0.001103,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.220542,0.001103,-0.001250,0.249997,0,0);}
.m42_c00472{transform:matrix(0.220854,-0.003975,0.004499,0.249960,0,0);-ms-transform:matrix(0.220854,-0.003975,0.004499,0.249960,0,0);-webkit-transform:matrix(0.220854,-0.003975,0.004499,0.249960,0,0);}
.md3_c00472{transform:matrix(0.221662,0.001108,-0.001250,0.249997,0,0);-ms-transform:matrix(0.221662,0.001108,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.221662,0.001108,-0.001250,0.249997,0,0);}
.m4d_c00472{transform:matrix(0.222216,-0.005555,0.006248,0.249922,0,0);-ms-transform:matrix(0.222216,-0.005555,0.006248,0.249922,0,0);-webkit-transform:matrix(0.222216,-0.005555,0.006248,0.249922,0,0);}
.m1e_c00472{transform:matrix(0.222414,-0.006005,0.006748,0.249909,0,0);-ms-transform:matrix(0.222414,-0.006005,0.006748,0.249909,0,0);-webkit-transform:matrix(0.222414,-0.006005,0.006748,0.249909,0,0);}
.maa_c00472{transform:matrix(0.223145,-0.001562,0.001750,0.249994,0,0);-ms-transform:matrix(0.223145,-0.001562,0.001750,0.249994,0,0);-webkit-transform:matrix(0.223145,-0.001562,0.001750,0.249994,0,0);}
.m9b_c00472{transform:matrix(0.223355,-0.003350,0.003750,0.249972,0,0);-ms-transform:matrix(0.223355,-0.003350,0.003750,0.249972,0,0);-webkit-transform:matrix(0.223355,-0.003350,0.003750,0.249972,0,0);}
.me2_c00472{transform:matrix(0.223475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223475,0.000000,0.000000,0.250000,0,0);}
.md2_c00472{transform:matrix(0.223482,0.001117,-0.001250,0.249997,0,0);-ms-transform:matrix(0.223482,0.001117,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.223482,0.001117,-0.001250,0.249997,0,0);}
.m1b_c00472{transform:matrix(0.223888,-0.006045,0.006748,0.249909,0,0);-ms-transform:matrix(0.223888,-0.006045,0.006748,0.249909,0,0);-webkit-transform:matrix(0.223888,-0.006045,0.006748,0.249909,0,0);}
.mdc_c00472{transform:matrix(0.223945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223945,0.000000,0.000000,0.250000,0,0);}
.mb7_c00472{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.mf0_c00472{transform:matrix(0.224790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224790,0.000000,0.000000,0.250000,0,0);}
.m8e_c00472{transform:matrix(0.225155,-0.003377,0.003750,0.249972,0,0);-ms-transform:matrix(0.225155,-0.003377,0.003750,0.249972,0,0);-webkit-transform:matrix(0.225155,-0.003377,0.003750,0.249972,0,0);}
.mbf_c00472{transform:matrix(0.225200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225200,0.000000,0.000000,0.250000,0,0);}
.m71_c00472{transform:matrix(0.225305,-0.003380,0.003750,0.249972,0,0);-ms-transform:matrix(0.225305,-0.003380,0.003750,0.249972,0,0);-webkit-transform:matrix(0.225305,-0.003380,0.003750,0.249972,0,0);}
.m94_c00472{transform:matrix(0.226120,-0.003392,0.003750,0.249972,0,0);-ms-transform:matrix(0.226120,-0.003392,0.003750,0.249972,0,0);-webkit-transform:matrix(0.226120,-0.003392,0.003750,0.249972,0,0);}
.me6_c00472{transform:matrix(0.226375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226375,0.000000,0.000000,0.250000,0,0);}
.m37_c00472{transform:matrix(0.226415,-0.004755,0.005249,0.249945,0,0);-ms-transform:matrix(0.226415,-0.004755,0.005249,0.249945,0,0);-webkit-transform:matrix(0.226415,-0.004755,0.005249,0.249945,0,0);}
.md1_c00472{transform:matrix(0.226652,0.001133,-0.001250,0.249997,0,0);-ms-transform:matrix(0.226652,0.001133,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.226652,0.001133,-0.001250,0.249997,0,0);}
.md4_c00472{transform:matrix(0.227117,0.001136,-0.001250,0.249997,0,0);-ms-transform:matrix(0.227117,0.001136,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.227117,0.001136,-0.001250,0.249997,0,0);}
.m30_c00472{transform:matrix(0.227365,-0.004775,0.005249,0.249945,0,0);-ms-transform:matrix(0.227365,-0.004775,0.005249,0.249945,0,0);-webkit-transform:matrix(0.227365,-0.004775,0.005249,0.249945,0,0);}
.mbe_c00472{transform:matrix(0.227495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227495,0.000000,0.000000,0.250000,0,0);}
.mce_c00472{transform:matrix(0.228302,0.001142,-0.001250,0.249997,0,0);-ms-transform:matrix(0.228302,0.001142,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.228302,0.001142,-0.001250,0.249997,0,0);}
.mf2_c00472{transform:matrix(0.228535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228535,0.000000,0.000000,0.250000,0,0);}
.m2b_c00472{transform:matrix(0.228795,-0.004805,0.005249,0.249945,0,0);-ms-transform:matrix(0.228795,-0.004805,0.005249,0.249945,0,0);-webkit-transform:matrix(0.228795,-0.004805,0.005249,0.249945,0,0);}
.mc0_c00472{transform:matrix(0.229115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229115,0.000000,0.000000,0.250000,0,0);}
.m92_c00472{transform:matrix(0.229279,-0.003439,0.003750,0.249972,0,0);-ms-transform:matrix(0.229279,-0.003439,0.003750,0.249972,0,0);-webkit-transform:matrix(0.229279,-0.003439,0.003750,0.249972,0,0);}
.mb_c00472{transform:matrix(0.230019,-0.004830,0.005249,0.249945,0,0);-ms-transform:matrix(0.230019,-0.004830,0.005249,0.249945,0,0);-webkit-transform:matrix(0.230019,-0.004830,0.005249,0.249945,0,0);}
.m7a_c00472{transform:matrix(0.230314,-0.003455,0.003750,0.249972,0,0);-ms-transform:matrix(0.230314,-0.003455,0.003750,0.249972,0,0);-webkit-transform:matrix(0.230314,-0.003455,0.003750,0.249972,0,0);}
.mef_c00472{transform:matrix(0.231015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231015,0.000000,0.000000,0.250000,0,0);}
.m73_c00472{transform:matrix(0.231194,-0.003468,0.003750,0.249972,0,0);-ms-transform:matrix(0.231194,-0.003468,0.003750,0.249972,0,0);-webkit-transform:matrix(0.231194,-0.003468,0.003750,0.249972,0,0);}
.m67_c00472{transform:matrix(0.231504,-0.003473,0.003750,0.249972,0,0);-ms-transform:matrix(0.231504,-0.003473,0.003750,0.249972,0,0);-webkit-transform:matrix(0.231504,-0.003473,0.003750,0.249972,0,0);}
.md5_c00472{transform:matrix(0.231575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231575,0.000000,0.000000,0.250000,0,0);}
.md9_c00472{transform:matrix(0.232165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232165,0.000000,0.000000,0.250000,0,0);}
.mbc_c00472{transform:matrix(0.232300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232300,0.000000,0.000000,0.250000,0,0);}
.m56_c00472{transform:matrix(0.232544,-0.003488,0.003750,0.249972,0,0);-ms-transform:matrix(0.232544,-0.003488,0.003750,0.249972,0,0);-webkit-transform:matrix(0.232544,-0.003488,0.003750,0.249972,0,0);}
.m9_c00472{transform:matrix(0.232934,-0.004892,0.005249,0.249945,0,0);-ms-transform:matrix(0.232934,-0.004892,0.005249,0.249945,0,0);-webkit-transform:matrix(0.232934,-0.004892,0.005249,0.249945,0,0);}
.mcd_c00472{transform:matrix(0.232977,0.001165,-0.001250,0.249997,0,0);-ms-transform:matrix(0.232977,0.001165,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.232977,0.001165,-0.001250,0.249997,0,0);}
.m8f_c00472{transform:matrix(0.233464,-0.003502,0.003750,0.249972,0,0);-ms-transform:matrix(0.233464,-0.003502,0.003750,0.249972,0,0);-webkit-transform:matrix(0.233464,-0.003502,0.003750,0.249972,0,0);}
.m8d_c00472{transform:matrix(0.233854,-0.003508,0.003750,0.249972,0,0);-ms-transform:matrix(0.233854,-0.003508,0.003750,0.249972,0,0);-webkit-transform:matrix(0.233854,-0.003508,0.003750,0.249972,0,0);}
.m7d_c00472{transform:matrix(0.234334,-0.003515,0.003750,0.249972,0,0);-ms-transform:matrix(0.234334,-0.003515,0.003750,0.249972,0,0);-webkit-transform:matrix(0.234334,-0.003515,0.003750,0.249972,0,0);}
.m7e_c00472{transform:matrix(0.235054,-0.003526,0.003750,0.249972,0,0);-ms-transform:matrix(0.235054,-0.003526,0.003750,0.249972,0,0);-webkit-transform:matrix(0.235054,-0.003526,0.003750,0.249972,0,0);}
.me3_c00472{transform:matrix(0.235200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235200,0.000000,0.000000,0.250000,0,0);}
.m15_c00472{transform:matrix(0.235764,-0.006366,0.006748,0.249909,0,0);-ms-transform:matrix(0.235764,-0.006366,0.006748,0.249909,0,0);-webkit-transform:matrix(0.235764,-0.006366,0.006748,0.249909,0,0);}
.m85_c00472{transform:matrix(0.236418,-0.003546,0.003750,0.249972,0,0);-ms-transform:matrix(0.236418,-0.003546,0.003750,0.249972,0,0);-webkit-transform:matrix(0.236418,-0.003546,0.003750,0.249972,0,0);}
.m28_c00472{transform:matrix(0.236963,-0.004976,0.005249,0.249945,0,0);-ms-transform:matrix(0.236963,-0.004976,0.005249,0.249945,0,0);-webkit-transform:matrix(0.236963,-0.004976,0.005249,0.249945,0,0);}
.m76_c00472{transform:matrix(0.237473,-0.003562,0.003750,0.249972,0,0);-ms-transform:matrix(0.237473,-0.003562,0.003750,0.249972,0,0);-webkit-transform:matrix(0.237473,-0.003562,0.003750,0.249972,0,0);}
.mb4_c00472{transform:matrix(0.237595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237595,0.000000,0.000000,0.250000,0,0);}
.m64_c00472{transform:matrix(0.238258,-0.003574,0.003750,0.249972,0,0);-ms-transform:matrix(0.238258,-0.003574,0.003750,0.249972,0,0);-webkit-transform:matrix(0.238258,-0.003574,0.003750,0.249972,0,0);}
.mc2_c00472{transform:matrix(0.238780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238780,0.000000,0.000000,0.250000,0,0);}
.mec_c00472{transform:matrix(0.239205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239205,0.000000,0.000000,0.250000,0,0);}
.m6e_c00472{transform:matrix(0.239268,-0.003589,0.003750,0.249972,0,0);-ms-transform:matrix(0.239268,-0.003589,0.003750,0.249972,0,0);-webkit-transform:matrix(0.239268,-0.003589,0.003750,0.249972,0,0);}
.m66_c00472{transform:matrix(0.239283,-0.003589,0.003750,0.249972,0,0);-ms-transform:matrix(0.239283,-0.003589,0.003750,0.249972,0,0);-webkit-transform:matrix(0.239283,-0.003589,0.003750,0.249972,0,0);}
.ma3_c00472{transform:matrix(0.240373,-0.003606,0.003750,0.249972,0,0);-ms-transform:matrix(0.240373,-0.003606,0.003750,0.249972,0,0);-webkit-transform:matrix(0.240373,-0.003606,0.003750,0.249972,0,0);}
.m59_c00472{transform:matrix(0.240608,-0.003609,0.003750,0.249972,0,0);-ms-transform:matrix(0.240608,-0.003609,0.003750,0.249972,0,0);-webkit-transform:matrix(0.240608,-0.003609,0.003750,0.249972,0,0);}
.m9e_c00472{transform:matrix(0.240748,-0.003611,0.003750,0.249972,0,0);-ms-transform:matrix(0.240748,-0.003611,0.003750,0.249972,0,0);-webkit-transform:matrix(0.240748,-0.003611,0.003750,0.249972,0,0);}
.m80_c00472{transform:matrix(0.240808,-0.003612,0.003750,0.249972,0,0);-ms-transform:matrix(0.240808,-0.003612,0.003750,0.249972,0,0);-webkit-transform:matrix(0.240808,-0.003612,0.003750,0.249972,0,0);}
.mcf_c00472{transform:matrix(0.240867,0.001204,-0.001250,0.249997,0,0);-ms-transform:matrix(0.240867,0.001204,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.240867,0.001204,-0.001250,0.249997,0,0);}
.m97_c00472{transform:matrix(0.241483,-0.003622,0.003750,0.249972,0,0);-ms-transform:matrix(0.241483,-0.003622,0.003750,0.249972,0,0);-webkit-transform:matrix(0.241483,-0.003622,0.003750,0.249972,0,0);}
.m78_c00472{transform:matrix(0.241728,-0.003626,0.003750,0.249972,0,0);-ms-transform:matrix(0.241728,-0.003626,0.003750,0.249972,0,0);-webkit-transform:matrix(0.241728,-0.003626,0.003750,0.249972,0,0);}
.ma1_c00472{transform:matrix(0.242433,-0.003636,0.003750,0.249972,0,0);-ms-transform:matrix(0.242433,-0.003636,0.003750,0.249972,0,0);-webkit-transform:matrix(0.242433,-0.003636,0.003750,0.249972,0,0);}
.m19_c00472{transform:matrix(0.242946,-0.006560,0.006748,0.249909,0,0);-ms-transform:matrix(0.242946,-0.006560,0.006748,0.249909,0,0);-webkit-transform:matrix(0.242946,-0.006560,0.006748,0.249909,0,0);}
.ma4_c00472{transform:matrix(0.243023,-0.003645,0.003750,0.249972,0,0);-ms-transform:matrix(0.243023,-0.003645,0.003750,0.249972,0,0);-webkit-transform:matrix(0.243023,-0.003645,0.003750,0.249972,0,0);}
.m6c_c00472{transform:matrix(0.244358,-0.003665,0.003750,0.249972,0,0);-ms-transform:matrix(0.244358,-0.003665,0.003750,0.249972,0,0);-webkit-transform:matrix(0.244358,-0.003665,0.003750,0.249972,0,0);}
.md6_c00472{transform:matrix(0.244600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244600,0.000000,0.000000,0.250000,0,0);}
.mc5_c00472{transform:matrix(0.245480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245480,0.000000,0.000000,0.250000,0,0);}
.m7_c00472{transform:matrix(0.245636,-0.005158,0.005249,0.249945,0,0);-ms-transform:matrix(0.245636,-0.005158,0.005249,0.249945,0,0);-webkit-transform:matrix(0.245636,-0.005158,0.005249,0.249945,0,0);}
.m82_c00472{transform:matrix(0.245662,-0.003685,0.003750,0.249972,0,0);-ms-transform:matrix(0.245662,-0.003685,0.003750,0.249972,0,0);-webkit-transform:matrix(0.245662,-0.003685,0.003750,0.249972,0,0);}
.m74_c00472{transform:matrix(0.246382,-0.003696,0.003750,0.249972,0,0);-ms-transform:matrix(0.246382,-0.003696,0.003750,0.249972,0,0);-webkit-transform:matrix(0.246382,-0.003696,0.003750,0.249972,0,0);}
.m7c_c00472{transform:matrix(0.247337,-0.003710,0.003750,0.249972,0,0);-ms-transform:matrix(0.247337,-0.003710,0.003750,0.249972,0,0);-webkit-transform:matrix(0.247337,-0.003710,0.003750,0.249972,0,0);}
.m9f_c00472{transform:matrix(0.248147,-0.003722,0.003750,0.249972,0,0);-ms-transform:matrix(0.248147,-0.003722,0.003750,0.249972,0,0);-webkit-transform:matrix(0.248147,-0.003722,0.003750,0.249972,0,0);}
.m6b_c00472{transform:matrix(0.248187,-0.003723,0.003750,0.249972,0,0);-ms-transform:matrix(0.248187,-0.003723,0.003750,0.249972,0,0);-webkit-transform:matrix(0.248187,-0.003723,0.003750,0.249972,0,0);}
.mb8_c00472{transform:matrix(0.248555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248555,0.000000,0.000000,0.250000,0,0);}
.m33_c00472{transform:matrix(0.248615,-0.005221,0.005249,0.249945,0,0);-ms-transform:matrix(0.248615,-0.005221,0.005249,0.249945,0,0);-webkit-transform:matrix(0.248615,-0.005221,0.005249,0.249945,0,0);}
.m6f_c00472{transform:matrix(0.248632,-0.003729,0.003750,0.249972,0,0);-ms-transform:matrix(0.248632,-0.003729,0.003750,0.249972,0,0);-webkit-transform:matrix(0.248632,-0.003729,0.003750,0.249972,0,0);}
.m96_c00472{transform:matrix(0.249022,-0.003735,0.003750,0.249972,0,0);-ms-transform:matrix(0.249022,-0.003735,0.003750,0.249972,0,0);-webkit-transform:matrix(0.249022,-0.003735,0.003750,0.249972,0,0);}
.m43_c00472{transform:matrix(0.249595,-0.004493,0.004499,0.249960,0,0);-ms-transform:matrix(0.249595,-0.004493,0.004499,0.249960,0,0);-webkit-transform:matrix(0.249595,-0.004493,0.004499,0.249960,0,0);}
.m40_c00472{transform:matrix(0.251014,-0.004518,0.004499,0.249960,0,0);-ms-transform:matrix(0.251014,-0.004518,0.004499,0.249960,0,0);-webkit-transform:matrix(0.251014,-0.004518,0.004499,0.249960,0,0);}
.ma5_c00472{transform:matrix(0.252527,-0.003788,0.003750,0.249972,0,0);-ms-transform:matrix(0.252527,-0.003788,0.003750,0.249972,0,0);-webkit-transform:matrix(0.252527,-0.003788,0.003750,0.249972,0,0);}
.m84_c00472{transform:matrix(0.252817,-0.003792,0.003750,0.249972,0,0);-ms-transform:matrix(0.252817,-0.003792,0.003750,0.249972,0,0);-webkit-transform:matrix(0.252817,-0.003792,0.003750,0.249972,0,0);}
.m99_c00472{transform:matrix(0.253821,-0.003807,0.003750,0.249972,0,0);-ms-transform:matrix(0.253821,-0.003807,0.003750,0.249972,0,0);-webkit-transform:matrix(0.253821,-0.003807,0.003750,0.249972,0,0);}
.m10_c00472{transform:matrix(0.254720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254720,0.000000,0.000000,0.250000,0,0);}
.md8_c00472{transform:matrix(0.255515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255515,0.000000,0.000000,0.250000,0,0);}
.m8_c00472{transform:matrix(0.255689,-0.005369,0.005249,0.249945,0,0);-ms-transform:matrix(0.255689,-0.005369,0.005249,0.249945,0,0);-webkit-transform:matrix(0.255689,-0.005369,0.005249,0.249945,0,0);}
.m3b_c00472{transform:matrix(0.256528,-0.004618,0.004499,0.249960,0,0);-ms-transform:matrix(0.256528,-0.004618,0.004499,0.249960,0,0);-webkit-transform:matrix(0.256528,-0.004618,0.004499,0.249960,0,0);}
.m51_c00472{transform:matrix(0.256581,-0.003849,0.003750,0.249972,0,0);-ms-transform:matrix(0.256581,-0.003849,0.003750,0.249972,0,0);-webkit-transform:matrix(0.256581,-0.003849,0.003750,0.249972,0,0);}
.m3f_c00472{transform:matrix(0.257073,-0.004627,0.004499,0.249960,0,0);-ms-transform:matrix(0.257073,-0.004627,0.004499,0.249960,0,0);-webkit-transform:matrix(0.257073,-0.004627,0.004499,0.249960,0,0);}
.m5_c00472{transform:matrix(0.257513,-0.005408,0.005249,0.249945,0,0);-ms-transform:matrix(0.257513,-0.005408,0.005249,0.249945,0,0);-webkit-transform:matrix(0.257513,-0.005408,0.005249,0.249945,0,0);}
.m9c_c00472{transform:matrix(0.257786,-0.003867,0.003750,0.249972,0,0);-ms-transform:matrix(0.257786,-0.003867,0.003750,0.249972,0,0);-webkit-transform:matrix(0.257786,-0.003867,0.003750,0.249972,0,0);}
.ma2_c00472{transform:matrix(0.258136,-0.003872,0.003750,0.249972,0,0);-ms-transform:matrix(0.258136,-0.003872,0.003750,0.249972,0,0);-webkit-transform:matrix(0.258136,-0.003872,0.003750,0.249972,0,0);}
.m90_c00472{transform:matrix(0.258266,-0.003874,0.003750,0.249972,0,0);-ms-transform:matrix(0.258266,-0.003874,0.003750,0.249972,0,0);-webkit-transform:matrix(0.258266,-0.003874,0.003750,0.249972,0,0);}
.ma9_c00472{transform:matrix(0.259049,-0.001813,0.001750,0.249994,0,0);-ms-transform:matrix(0.259049,-0.001813,0.001750,0.249994,0,0);-webkit-transform:matrix(0.259049,-0.001813,0.001750,0.249994,0,0);}
.mc8_c00472{transform:matrix(0.260165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260165,0.000000,0.000000,0.250000,0,0);}
.m1c_c00472{transform:matrix(0.261905,-0.007071,0.006748,0.249909,0,0);-ms-transform:matrix(0.261905,-0.007071,0.006748,0.249909,0,0);-webkit-transform:matrix(0.261905,-0.007071,0.006748,0.249909,0,0);}
.m52_c00472{transform:matrix(0.262146,-0.003932,0.003750,0.249972,0,0);-ms-transform:matrix(0.262146,-0.003932,0.003750,0.249972,0,0);-webkit-transform:matrix(0.262146,-0.003932,0.003750,0.249972,0,0);}
.ma7_c00472{transform:matrix(0.262759,-0.001839,0.001750,0.249994,0,0);-ms-transform:matrix(0.262759,-0.001839,0.001750,0.249994,0,0);-webkit-transform:matrix(0.262759,-0.001839,0.001750,0.249994,0,0);}
.m83_c00472{transform:matrix(0.263495,-0.003952,0.003750,0.249972,0,0);-ms-transform:matrix(0.263495,-0.003952,0.003750,0.249972,0,0);-webkit-transform:matrix(0.263495,-0.003952,0.003750,0.249972,0,0);}
.m54_c00472{transform:matrix(0.264400,-0.003966,0.003750,0.249972,0,0);-ms-transform:matrix(0.264400,-0.003966,0.003750,0.249972,0,0);-webkit-transform:matrix(0.264400,-0.003966,0.003750,0.249972,0,0);}
.m6d_c00472{transform:matrix(0.265245,-0.003979,0.003750,0.249972,0,0);-ms-transform:matrix(0.265245,-0.003979,0.003750,0.249972,0,0);-webkit-transform:matrix(0.265245,-0.003979,0.003750,0.249972,0,0);}
.m55_c00472{transform:matrix(0.265400,-0.003981,0.003750,0.249972,0,0);-ms-transform:matrix(0.265400,-0.003981,0.003750,0.249972,0,0);-webkit-transform:matrix(0.265400,-0.003981,0.003750,0.249972,0,0);}
.m57_c00472{transform:matrix(0.266960,-0.004004,0.003750,0.249972,0,0);-ms-transform:matrix(0.266960,-0.004004,0.003750,0.249972,0,0);-webkit-transform:matrix(0.266960,-0.004004,0.003750,0.249972,0,0);}
.m81_c00472{transform:matrix(0.267050,-0.004006,0.003750,0.249972,0,0);-ms-transform:matrix(0.267050,-0.004006,0.003750,0.249972,0,0);-webkit-transform:matrix(0.267050,-0.004006,0.003750,0.249972,0,0);}
.m1a_c00472{transform:matrix(0.267812,-0.007231,0.006748,0.249909,0,0);-ms-transform:matrix(0.267812,-0.007231,0.006748,0.249909,0,0);-webkit-transform:matrix(0.267812,-0.007231,0.006748,0.249909,0,0);}
.m7f_c00472{transform:matrix(0.268130,-0.004022,0.003750,0.249972,0,0);-ms-transform:matrix(0.268130,-0.004022,0.003750,0.249972,0,0);-webkit-transform:matrix(0.268130,-0.004022,0.003750,0.249972,0,0);}
.m16_c00472{transform:matrix(0.268247,-0.007243,0.006748,0.249909,0,0);-ms-transform:matrix(0.268247,-0.007243,0.006748,0.249909,0,0);-webkit-transform:matrix(0.268247,-0.007243,0.006748,0.249909,0,0);}
.m6_c00472{transform:matrix(0.268561,-0.005640,0.005249,0.249945,0,0);-ms-transform:matrix(0.268561,-0.005640,0.005249,0.249945,0,0);-webkit-transform:matrix(0.268561,-0.005640,0.005249,0.249945,0,0);}
.mab_c00472{transform:matrix(0.271008,-0.001897,0.001750,0.249994,0,0);-ms-transform:matrix(0.271008,-0.001897,0.001750,0.249994,0,0);-webkit-transform:matrix(0.271008,-0.001897,0.001750,0.249994,0,0);}
.m4_c00472{transform:matrix(0.271825,-0.005708,0.005249,0.249945,0,0);-ms-transform:matrix(0.271825,-0.005708,0.005249,0.249945,0,0);-webkit-transform:matrix(0.271825,-0.005708,0.005249,0.249945,0,0);}
.m86_c00472{transform:matrix(0.271944,-0.004079,0.003750,0.249972,0,0);-ms-transform:matrix(0.271944,-0.004079,0.003750,0.249972,0,0);-webkit-transform:matrix(0.271944,-0.004079,0.003750,0.249972,0,0);}
.m89_c00472{transform:matrix(0.272594,-0.004089,0.003750,0.249972,0,0);-ms-transform:matrix(0.272594,-0.004089,0.003750,0.249972,0,0);-webkit-transform:matrix(0.272594,-0.004089,0.003750,0.249972,0,0);}
.m69_c00472{transform:matrix(0.273744,-0.004106,0.003750,0.249972,0,0);-ms-transform:matrix(0.273744,-0.004106,0.003750,0.249972,0,0);-webkit-transform:matrix(0.273744,-0.004106,0.003750,0.249972,0,0);}
.m13_c00472{transform:matrix(0.273765,-0.007392,0.006748,0.249909,0,0);-ms-transform:matrix(0.273765,-0.007392,0.006748,0.249909,0,0);-webkit-transform:matrix(0.273765,-0.007392,0.006748,0.249909,0,0);}
.m1_c00472{transform:matrix(0.273955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273955,0.000000,0.000000,0.250000,0,0);}
.mb6_c00472{transform:matrix(0.274210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274210,0.000000,0.000000,0.250000,0,0);}
.m68_c00472{transform:matrix(0.274364,-0.004115,0.003750,0.249972,0,0);-ms-transform:matrix(0.274364,-0.004115,0.003750,0.249972,0,0);-webkit-transform:matrix(0.274364,-0.004115,0.003750,0.249972,0,0);}
.ma_c00472{transform:matrix(0.274554,-0.005766,0.005249,0.249945,0,0);-ms-transform:matrix(0.274554,-0.005766,0.005249,0.249945,0,0);-webkit-transform:matrix(0.274554,-0.005766,0.005249,0.249945,0,0);}
.mad_c00472{transform:matrix(0.275023,-0.001925,0.001750,0.249994,0,0);-ms-transform:matrix(0.275023,-0.001925,0.001750,0.249994,0,0);-webkit-transform:matrix(0.275023,-0.001925,0.001750,0.249994,0,0);}
.m7b_c00472{transform:matrix(0.276714,-0.004151,0.003750,0.249972,0,0);-ms-transform:matrix(0.276714,-0.004151,0.003750,0.249972,0,0);-webkit-transform:matrix(0.276714,-0.004151,0.003750,0.249972,0,0);}
.maf_c00472{transform:matrix(0.277398,-0.001942,0.001750,0.249994,0,0);-ms-transform:matrix(0.277398,-0.001942,0.001750,0.249994,0,0);-webkit-transform:matrix(0.277398,-0.001942,0.001750,0.249994,0,0);}
.mc9_c00472{transform:matrix(0.277630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277630,0.000000,0.000000,0.250000,0,0);}
.m79_c00472{transform:matrix(0.277654,-0.004165,0.003750,0.249972,0,0);-ms-transform:matrix(0.277654,-0.004165,0.003750,0.249972,0,0);-webkit-transform:matrix(0.277654,-0.004165,0.003750,0.249972,0,0);}
.m5a_c00472{transform:matrix(0.277964,-0.004169,0.003750,0.249972,0,0);-ms-transform:matrix(0.277964,-0.004169,0.003750,0.249972,0,0);-webkit-transform:matrix(0.277964,-0.004169,0.003750,0.249972,0,0);}
.m18_c00472{transform:matrix(0.278638,-0.007523,0.006748,0.249909,0,0);-ms-transform:matrix(0.278638,-0.007523,0.006748,0.249909,0,0);-webkit-transform:matrix(0.278638,-0.007523,0.006748,0.249909,0,0);}
.m6a_c00472{transform:matrix(0.280198,-0.004203,0.003750,0.249972,0,0);-ms-transform:matrix(0.280198,-0.004203,0.003750,0.249972,0,0);-webkit-transform:matrix(0.280198,-0.004203,0.003750,0.249972,0,0);}
.mb9_c00472{transform:matrix(0.280240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280240,0.000000,0.000000,0.250000,0,0);}
.mc_c00472{transform:matrix(0.280403,-0.005888,0.005249,0.249945,0,0);-ms-transform:matrix(0.280403,-0.005888,0.005249,0.249945,0,0);-webkit-transform:matrix(0.280403,-0.005888,0.005249,0.249945,0,0);}
.m3c_c00472{transform:matrix(0.282644,-0.005088,0.004499,0.249960,0,0);-ms-transform:matrix(0.282644,-0.005088,0.004499,0.249960,0,0);-webkit-transform:matrix(0.282644,-0.005088,0.004499,0.249960,0,0);}
.m2_c00472{transform:matrix(0.286820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286820,0.000000,0.000000,0.250000,0,0);}
.m5b_c00472{transform:matrix(0.286948,-0.004304,0.003750,0.249972,0,0);-ms-transform:matrix(0.286948,-0.004304,0.003750,0.249972,0,0);-webkit-transform:matrix(0.286948,-0.004304,0.003750,0.249972,0,0);}
.m39_c00472{transform:matrix(0.291615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291615,0.000000,0.000000,0.250000,0,0);}
.mb0_c00472{transform:matrix(0.293368,-0.002054,0.001750,0.249994,0,0);-ms-transform:matrix(0.293368,-0.002054,0.001750,0.249994,0,0);-webkit-transform:matrix(0.293368,-0.002054,0.001750,0.249994,0,0);}
.m0_c00472{transform:matrix(0.298945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298945,0.000000,0.000000,0.250000,0,0);}
.ma6_c00472{transform:matrix(0.301025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301025,0.000000,0.000000,0.250000,0,0);}
.m38_c00472{transform:matrix(0.304108,-0.006386,0.005249,0.249945,0,0);-ms-transform:matrix(0.304108,-0.006386,0.005249,0.249945,0,0);-webkit-transform:matrix(0.304108,-0.006386,0.005249,0.249945,0,0);}
.mb2_c00472{transform:matrix(0.306547,-0.002146,0.001750,0.249994,0,0);-ms-transform:matrix(0.306547,-0.002146,0.001750,0.249994,0,0);-webkit-transform:matrix(0.306547,-0.002146,0.001750,0.249994,0,0);}
.m88_c00472{transform:matrix(0.307890,-0.004618,0.003750,0.249972,0,0);-ms-transform:matrix(0.307890,-0.004618,0.003750,0.249972,0,0);-webkit-transform:matrix(0.307890,-0.004618,0.003750,0.249972,0,0);}
.mb1_c00472{transform:matrix(0.322592,-0.002258,0.001750,0.249994,0,0);-ms-transform:matrix(0.322592,-0.002258,0.001750,0.249994,0,0);-webkit-transform:matrix(0.322592,-0.002258,0.001750,0.249994,0,0);}
.mc7_c00472{transform:matrix(0.341250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341250,0.000000,0.000000,0.250000,0,0);}
.mc6_c00472{transform:matrix(0.612620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612620,0.000000,0.000000,0.250000,0,0);}
.me_c00472{transform:matrix(0.973270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.973270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.973270,0.000000,0.000000,0.250000,0,0);}
.v0_c00472{vertical-align:0.000000px;}
.ls0_c00472{letter-spacing:0.000000px;}
.sc__c00472{text-shadow:none;}
.sc0_c00472{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__c00472{-webkit-text-stroke:0px transparent;}
.sc0_c00472{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00472{word-spacing:0.000000px;}
.fc0_c00472{color:transparent;}
.fs4_c00472{font-size:12.000000px;}
.fs1_c00472{font-size:24.000000px;}
.fs3_c00472{font-size:42.000000px;}
.fs11_c00472{font-size:60.001470px;}
.fs8_c00472{font-size:66.000000px;}
.fs12_c00472{font-size:72.000000px;}
.fs10_c00472{font-size:72.001764px;}
.fsc_c00472{font-size:72.008100px;}
.fs2_c00472{font-size:72.015874px;}
.fs5_c00472{font-size:72.026239px;}
.fs15_c00472{font-size:78.000000px;}
.fsb_c00472{font-size:78.008775px;}
.fs9_c00472{font-size:78.012635px;}
.fs13_c00472{font-size:84.000000px;}
.fs14_c00472{font-size:84.001050px;}
.fse_c00472{font-size:84.009449px;}
.fs7_c00472{font-size:84.018520px;}
.fs16_c00472{font-size:90.000000px;}
.fsf_c00472{font-size:90.010124px;}
.fsa_c00472{font-size:90.028121px;}
.fs6_c00472{font-size:90.032799px;}
.fsd_c00472{font-size:96.010799px;}
.fs0_c00472{font-size:120.000000px;}
.y0_c00472{bottom:0.000000px;}
.yca_c00472{bottom:67.585500px;}
.yc9_c00472{bottom:68.233500px;}
.yc8_c00472{bottom:69.573000px;}
.yc7_c00472{bottom:70.203000px;}
.yc6_c00472{bottom:101.236500px;}
.yc5_c00472{bottom:135.823500px;}
.yc4_c00472{bottom:176.430000px;}
.yc2_c00472{bottom:211.529888px;}
.yc3_c00472{bottom:211.530045px;}
.yc1_c00472{bottom:243.972015px;}
.yc0_c00472{bottom:244.305510px;}
.ybf_c00472{bottom:244.474267px;}
.ybe_c00472{bottom:244.977855px;}
.ybd_c00472{bottom:245.085765px;}
.ybc_c00472{bottom:245.574547px;}
.ybb_c00472{bottom:245.957955px;}
.yba_c00472{bottom:246.352140px;}
.yb9_c00472{bottom:246.780000px;}
.yb8_c00472{bottom:282.526500px;}
.yb7_c00472{bottom:315.777000px;}
.yb6_c00472{bottom:353.074500px;}
.yb5_c00472{bottom:389.339299px;}
.yb4_c00472{bottom:389.339670px;}
.yb3_c00472{bottom:389.339950px;}
.yaa_c00472{bottom:419.851500px;}
.yab_c00472{bottom:420.463923px;}
.yac_c00472{bottom:420.698304px;}
.yad_c00472{bottom:421.085754px;}
.yae_c00472{bottom:421.397751px;}
.yaf_c00472{bottom:422.026606px;}
.yb0_c00472{bottom:422.319945px;}
.yb1_c00472{bottom:423.109471px;}
.yb2_c00472{bottom:423.410370px;}
.ya9_c00472{bottom:460.732500px;}
.y9e_c00472{bottom:491.087242px;}
.y9f_c00472{bottom:491.409217px;}
.ya0_c00472{bottom:492.381427px;}
.ya1_c00472{bottom:493.349227px;}
.ya2_c00472{bottom:493.829827px;}
.ya3_c00472{bottom:494.674207px;}
.ya4_c00472{bottom:495.884955px;}
.ya5_c00472{bottom:496.131622px;}
.ya6_c00472{bottom:496.492980px;}
.ya7_c00472{bottom:497.105100px;}
.ya8_c00472{bottom:497.358412px;}
.y96_c00472{bottom:526.732192px;}
.y97_c00472{bottom:527.080500px;}
.y98_c00472{bottom:528.399075px;}
.y99_c00472{bottom:529.180057px;}
.y9a_c00472{bottom:529.737585px;}
.y9b_c00472{bottom:531.174975px;}
.y9c_c00472{bottom:531.437722px;}
.y9d_c00472{bottom:531.843337px;}
.y8d_c00472{bottom:562.917840px;}
.y8e_c00472{bottom:563.221537px;}
.y8f_c00472{bottom:564.321472px;}
.y90_c00472{bottom:565.192808px;}
.y91_c00472{bottom:566.413087px;}
.y92_c00472{bottom:567.509707px;}
.y93_c00472{bottom:567.951817px;}
.y94_c00472{bottom:568.734592px;}
.y95_c00472{bottom:569.179545px;}
.y8b_c00472{bottom:602.344957px;}
.y8c_c00472{bottom:607.616512px;}
.y82_c00472{bottom:637.176840px;}
.y83_c00472{bottom:637.655385px;}
.y84_c00472{bottom:638.154240px;}
.y85_c00472{bottom:638.873497px;}
.y86_c00472{bottom:639.230587px;}
.y87_c00472{bottom:640.091633px;}
.y88_c00472{bottom:640.448678px;}
.y89_c00472{bottom:640.822387px;}
.y8a_c00472{bottom:642.170318px;}
.y77_c00472{bottom:667.150875px;}
.y78_c00472{bottom:667.582853px;}
.y79_c00472{bottom:668.505863px;}
.y7a_c00472{bottom:670.330860px;}
.y7b_c00472{bottom:670.788653px;}
.y7c_c00472{bottom:672.171458px;}
.y7d_c00472{bottom:672.807578px;}
.y7e_c00472{bottom:673.260578px;}
.y7f_c00472{bottom:673.740315px;}
.y80_c00472{bottom:674.822048px;}
.y81_c00472{bottom:675.434422px;}
.y70_c00472{bottom:707.655825px;}
.y71_c00472{bottom:708.276248px;}
.y72_c00472{bottom:709.120448px;}
.y73_c00472{bottom:709.489463px;}
.y74_c00472{bottom:710.448788px;}
.y75_c00472{bottom:710.682585px;}
.y76_c00472{bottom:711.060480px;}
.y66_c00472{bottom:742.217228px;}
.y67_c00472{bottom:742.692368px;}
.y68_c00472{bottom:743.061698px;}
.y69_c00472{bottom:744.255825px;}
.y6a_c00472{bottom:744.500123px;}
.y6b_c00472{bottom:745.833555px;}
.y6c_c00472{bottom:746.318700px;}
.y6d_c00472{bottom:746.687355px;}
.y6e_c00472{bottom:747.429788px;}
.y6f_c00472{bottom:747.791888px;}
.y5c_c00472{bottom:774.619793px;}
.y5d_c00472{bottom:775.091910px;}
.y5e_c00472{bottom:776.376278px;}
.y50_c00472{bottom:776.655000px;}
.y5f_c00472{bottom:777.878850px;}
.y60_c00472{bottom:778.548360px;}
.y61_c00472{bottom:780.187688px;}
.y62_c00472{bottom:780.677805px;}
.y63_c00472{bottom:781.998015px;}
.y64_c00472{bottom:783.982470px;}
.y65_c00472{bottom:784.326675px;}
.y53_c00472{bottom:808.915770px;}
.y54_c00472{bottom:809.389763px;}
.y55_c00472{bottom:810.971648px;}
.y56_c00472{bottom:812.207078px;}
.y57_c00472{bottom:812.914305px;}
.y58_c00472{bottom:814.308712px;}
.y59_c00472{bottom:814.668285px;}
.y5a_c00472{bottom:815.203688px;}
.y5b_c00472{bottom:817.141365px;}
.y51_c00472{bottom:849.423000px;}
.y52_c00472{bottom:851.233935px;}
.y45_c00472{bottom:875.080500px;}
.y46_c00472{bottom:876.986287px;}
.y47_c00472{bottom:879.443887px;}
.y48_c00472{bottom:880.531650px;}
.y49_c00472{bottom:882.775312px;}
.y4a_c00472{bottom:885.200175px;}
.y4b_c00472{bottom:885.776287px;}
.y4c_c00472{bottom:887.691187px;}
.y4d_c00472{bottom:888.530475px;}
.y4e_c00472{bottom:891.014025px;}
.y4f_c00472{bottom:891.844537px;}
.y3a_c00472{bottom:915.301500px;}
.y3b_c00472{bottom:915.850626px;}
.y3c_c00472{bottom:917.833020px;}
.y3d_c00472{bottom:919.837176px;}
.y3e_c00472{bottom:920.235885px;}
.y3f_c00472{bottom:921.351957px;}
.y40_c00472{bottom:923.952084px;}
.y41_c00472{bottom:925.366290px;}
.y42_c00472{bottom:925.954512px;}
.y43_c00472{bottom:926.533014px;}
.y44_c00472{bottom:929.084136px;}
.y39_c00472{bottom:956.868000px;}
.y30_c00472{bottom:984.955134px;}
.y31_c00472{bottom:985.508545px;}
.y32_c00472{bottom:987.277575px;}
.y10_c00472{bottom:987.390000px;}
.y33_c00472{bottom:988.060701px;}
.y34_c00472{bottom:992.016195px;}
.y35_c00472{bottom:992.803806px;}
.y36_c00472{bottom:993.798553px;}
.y37_c00472{bottom:994.401322px;}
.y38_c00472{bottom:996.005328px;}
.y26_c00472{bottom:1020.603000px;}
.y27_c00472{bottom:1021.250482px;}
.yf_c00472{bottom:1022.220000px;}
.y28_c00472{bottom:1023.307527px;}
.y29_c00472{bottom:1024.434880px;}
.y2a_c00472{bottom:1025.394685px;}
.y2b_c00472{bottom:1027.230285px;}
.y2c_c00472{bottom:1027.923537px;}
.y2d_c00472{bottom:1028.632476px;}
.y2e_c00472{bottom:1029.777438px;}
.y2f_c00472{bottom:1030.447065px;}
.ye_c00472{bottom:1052.314500px;}
.y1c_c00472{bottom:1055.152146px;}
.y1d_c00472{bottom:1056.010736px;}
.y1e_c00472{bottom:1058.744138px;}
.y1f_c00472{bottom:1059.667206px;}
.y20_c00472{bottom:1060.890390px;}
.y21_c00472{bottom:1063.364826px;}
.y22_c00472{bottom:1064.921661px;}
.y23_c00472{bottom:1066.759050px;}
.y24_c00472{bottom:1067.667741px;}
.y25_c00472{bottom:1073.413519px;}
.y11_c00472{bottom:1088.106000px;}
.y12_c00472{bottom:1088.934387px;}
.y13_c00472{bottom:1091.563161px;}
.yd_c00472{bottom:1091.880000px;}
.y14_c00472{bottom:1092.445899px;}
.y15_c00472{bottom:1093.314259px;}
.y16_c00472{bottom:1095.411066px;}
.y17_c00472{bottom:1096.004310px;}
.y18_c00472{bottom:1098.978144px;}
.y19_c00472{bottom:1100.151591px;}
.y1a_c00472{bottom:1102.272616px;}
.y1b_c00472{bottom:1103.176819px;}
.y3_c00472{bottom:1124.554500px;}
.y4_c00472{bottom:1126.213353px;}
.y5_c00472{bottom:1128.453822px;}
.y6_c00472{bottom:1129.628079px;}
.y7_c00472{bottom:1131.446543px;}
.y8_c00472{bottom:1132.366311px;}
.y9_c00472{bottom:1133.557106px;}
.ya_c00472{bottom:1134.229693px;}
.yb_c00472{bottom:1135.177403px;}
.yc_c00472{bottom:1136.080287px;}
.y2_c00472{bottom:1149.390000px;}
.y1_c00472{bottom:1209.867000px;}
.h6_c00472{height:12.000000px;}
.h3_c00472{height:24.000000px;}
.h5_c00472{height:42.000000px;}
.h13_c00472{height:60.001470px;}
.ha_c00472{height:66.000000px;}
.h14_c00472{height:72.000000px;}
.h12_c00472{height:72.001764px;}
.he_c00472{height:72.008100px;}
.h4_c00472{height:72.015874px;}
.h7_c00472{height:72.026239px;}
.h17_c00472{height:78.000000px;}
.hd_c00472{height:78.008775px;}
.hb_c00472{height:78.012635px;}
.h15_c00472{height:84.000000px;}
.h16_c00472{height:84.001050px;}
.h10_c00472{height:84.009449px;}
.h9_c00472{height:84.018520px;}
.h18_c00472{height:90.000000px;}
.h11_c00472{height:90.010124px;}
.hc_c00472{height:90.028121px;}
.h8_c00472{height:90.032799px;}
.hf_c00472{height:96.010799px;}
.h2_c00472{height:120.000000px;}
.h0_c00472{height:1246.320000px;}
.h1_c00472{height:1246.500000px;}
.w0_c00472{width:914.700000px;}
.w1_c00472{width:915.000000px;}
.x0_c00472{left:0.000000px;}
.x4_c00472{left:96.363000px;}
.x3a_c00472{left:102.748500px;}
.xe_c00472{left:110.970000px;}
.x10_c00472{left:112.320000px;}
.x43_c00472{left:116.370000px;}
.xf_c00472{left:127.710000px;}
.x11_c00472{left:144.661500px;}
.x28_c00472{left:146.176629px;}
.x31_c00472{left:147.522000px;}
.x45_c00472{left:150.190658px;}
.x65_c00472{left:153.424380px;}
.x75_c00472{left:166.621493px;}
.x7c_c00472{left:167.987963px;}
.x8e_c00472{left:172.260000px;}
.x5_c00472{left:175.356000px;}
.x29_c00472{left:176.960082px;}
.x32_c00472{left:178.029000px;}
.x46_c00472{left:179.789708px;}
.x4d_c00472{left:182.181098px;}
.x66_c00472{left:184.323353px;}
.x76_c00472{left:196.970265px;}
.x80_c00472{left:198.059453px;}
.x86_c00472{left:199.641000px;}
.x8f_c00472{left:202.230000px;}
.x93_c00472{left:203.850000px;}
.x9b_c00472{left:205.681500px;}
.xa0_c00472{left:207.630000px;}
.xa6_c00472{left:208.980000px;}
.x67_c00472{left:250.258343px;}
.x90_c00472{left:256.500000px;}
.x4e_c00472{left:267.805598px;}
.x12_c00472{left:272.704500px;}
.x21_c00472{left:274.161000px;}
.x2a_c00472{left:275.205756px;}
.x3b_c00472{left:277.284000px;}
.x47_c00472{left:278.647223px;}
.x55_c00472{left:280.950825px;}
.x6_c00472{left:282.045000px;}
.x81_c00472{left:286.378740px;}
.x30_c00472{left:287.550000px;}
.x44_c00472{left:289.396500px;}
.x5f_c00472{left:291.177930px;}
.x6d_c00472{left:293.336363px;}
.x74_c00472{left:295.333673px;}
.x85_c00472{left:298.890000px;}
.x8b_c00472{left:300.781026px;}
.x98_c00472{left:303.210000px;}
.x13_c00472{left:305.398500px;}
.x1a_c00472{left:306.424627px;}
.xab_c00472{left:307.594500px;}
.x94_c00472{left:312.930000px;}
.x2b_c00472{left:318.714496px;}
.x3c_c00472{left:320.794500px;}
.x56_c00472{left:324.129413px;}
.x22_c00472{left:327.844500px;}
.x6e_c00472{left:336.841973px;}
.x7_c00472{left:337.962000px;}
.xa7_c00472{left:339.660000px;}
.x8c_c00472{left:343.171605px;}
.x95_c00472{left:344.790000px;}
.x99_c00472{left:345.870000px;}
.x60_c00472{left:347.642828px;}
.x1b_c00472{left:350.115453px;}
.x48_c00472{left:355.908075px;}
.x57_c00472{left:357.653415px;}
.x91_c00472{left:366.660000px;}
.x4f_c00472{left:367.977098px;}
.x9c_c00472{left:370.090500px;}
.x7d_c00472{left:371.988143px;}
.x23_c00472{left:373.549500px;}
.x87_c00472{left:375.963000px;}
.x68_c00472{left:380.626800px;}
.x6f_c00472{left:382.201695px;}
.x77_c00472{left:394.103048px;}
.x1_c00472{left:400.140000px;}
.x9f_c00472{left:404.190000px;}
.xac_c00472{left:406.062000px;}
.x3d_c00472{left:410.541000px;}
.x50_c00472{left:412.611098px;}
.x14_c00472{left:415.219500px;}
.x7e_c00472{left:418.458735px;}
.x88_c00472{left:420.534000px;}
.x33_c00472{left:421.654500px;}
.x8_c00472{left:424.555500px;}
.x8d_c00472{left:431.194420px;}
.x15_c00472{left:437.191500px;}
.x1c_c00472{left:438.481064px;}
.x96_c00472{left:443.610000px;}
.x70_c00472{left:447.556110px;}
.xa1_c00472{left:449.010000px;}
.x2_c00472{left:455.760000px;}
.x61_c00472{left:457.830420px;}
.x24_c00472{left:460.959000px;}
.x58_c00472{left:466.168418px;}
.x9_c00472{left:468.354000px;}
.xa2_c00472{left:471.150000px;}
.x9a_c00472{left:476.010000px;}
.x71_c00472{left:479.964045px;}
.x34_c00472{left:483.658500px;}
.x49_c00472{left:487.315118px;}
.x59_c00472{left:488.356245px;}
.x1d_c00472{left:494.084565px;}
.x3e_c00472{left:507.535500px;}
.x4a_c00472{left:509.786280px;}
.x69_c00472{left:512.135280px;}
.x78_c00472{left:516.164205px;}
.x51_c00472{left:521.899598px;}
.xa_c00472{left:525.058500px;}
.x25_c00472{left:527.730000px;}
.x3f_c00472{left:530.580000px;}
.x97_c00472{left:533.250000px;}
.x2c_c00472{left:538.442325px;}
.x4b_c00472{left:543.279285px;}
.x62_c00472{left:545.090663px;}
.x16_c00472{left:547.333500px;}
.x89_c00472{left:552.276000px;}
.x52_c00472{left:554.574098px;}
.xb_c00472{left:557.086500px;}
.x72_c00472{left:558.271748px;}
.x1e_c00472{left:559.689783px;}
.x63_c00472{left:566.378445px;}
.xa8_c00472{left:570.780000px;}
.x26_c00472{left:582.252000px;}
.x17_c00472{left:590.794500px;}
.x1f_c00472{left:592.121892px;}
.x7f_c00472{left:593.950133px;}
.x64_c00472{left:600.673493px;}
.xc_c00472{left:602.215500px;}
.x82_c00472{left:604.966365px;}
.x40_c00472{left:607.176000px;}
.x5a_c00472{left:609.559013px;}
.x27_c00472{left:614.139000px;}
.x3_c00472{left:616.950000px;}
.x6a_c00472{left:624.227468px;}
.x79_c00472{left:625.780418px;}
.x35_c00472{left:628.110000px;}
.x2d_c00472{left:637.537094px;}
.x41_c00472{left:640.747500px;}
.x53_c00472{left:642.588098px;}
.xd_c00472{left:645.210000px;}
.x5b_c00472{left:653.604645px;}
.xa3_c00472{left:659.070000px;}
.x83_c00472{left:660.304695px;}
.x4c_c00472{left:664.355963px;}
.x9d_c00472{left:666.828000px;}
.x18_c00472{left:669.351000px;}
.x2e_c00472{left:671.028204px;}
.x5c_c00472{left:687.083648px;}
.xa4_c00472{left:692.550000px;}
.x6b_c00472{left:701.444115px;}
.x19_c00472{left:702.840000px;}
.x36_c00472{left:706.677000px;}
.x8a_c00472{left:708.051000px;}
.x84_c00472{left:715.916025px;}
.xa5_c00472{left:736.560000px;}
.xa9_c00472{left:737.640000px;}
.x37_c00472{left:739.356000px;}
.x6c_c00472{left:745.169768px;}
.x73_c00472{left:747.262088px;}
.x7a_c00472{left:748.348620px;}
.x5d_c00472{left:754.583198px;}
.x2f_c00472{left:760.129311px;}
.x9e_c00472{left:767.278500px;}
.x38_c00472{left:771.495000px;}
.x42_c00472{left:773.310000px;}
.x54_c00472{left:774.885098px;}
.x5e_c00472{left:787.525178px;}
.x7b_c00472{left:792.915473px;}
.x20_c00472{left:797.311844px;}
.xaa_c00472{left:804.060000px;}
.x92_c00472{left:818.370000px;}
.x39_c00472{left:913.224000px;}
@media print{
.v0_c00472{vertical-align:0.000000pt;}
.ls0_c00472{letter-spacing:0.000000pt;}
.ws0_c00472{word-spacing:0.000000pt;}
.fs4_c00472{font-size:10.666667pt;}
.fs1_c00472{font-size:21.333333pt;}
.fs3_c00472{font-size:37.333333pt;}
.fs11_c00472{font-size:53.334640pt;}
.fs8_c00472{font-size:58.666667pt;}
.fs12_c00472{font-size:64.000000pt;}
.fs10_c00472{font-size:64.001568pt;}
.fsc_c00472{font-size:64.007200pt;}
.fs2_c00472{font-size:64.014110pt;}
.fs5_c00472{font-size:64.023324pt;}
.fs15_c00472{font-size:69.333333pt;}
.fsb_c00472{font-size:69.341133pt;}
.fs9_c00472{font-size:69.344564pt;}
.fs13_c00472{font-size:74.666667pt;}
.fs14_c00472{font-size:74.667600pt;}
.fse_c00472{font-size:74.675066pt;}
.fs7_c00472{font-size:74.683129pt;}
.fs16_c00472{font-size:80.000000pt;}
.fsf_c00472{font-size:80.008999pt;}
.fsa_c00472{font-size:80.024996pt;}
.fs6_c00472{font-size:80.029155pt;}
.fsd_c00472{font-size:85.342933pt;}
.fs0_c00472{font-size:106.666667pt;}
.y0_c00472{bottom:0.000000pt;}
.yca_c00472{bottom:60.076000pt;}
.yc9_c00472{bottom:60.652000pt;}
.yc8_c00472{bottom:61.842667pt;}
.yc7_c00472{bottom:62.402667pt;}
.yc6_c00472{bottom:89.988000pt;}
.yc5_c00472{bottom:120.732000pt;}
.yc4_c00472{bottom:156.826667pt;}
.yc2_c00472{bottom:188.026567pt;}
.yc3_c00472{bottom:188.026707pt;}
.yc1_c00472{bottom:216.864013pt;}
.yc0_c00472{bottom:217.160453pt;}
.ybf_c00472{bottom:217.310460pt;}
.ybe_c00472{bottom:217.758093pt;}
.ybd_c00472{bottom:217.854013pt;}
.ybc_c00472{bottom:218.288487pt;}
.ybb_c00472{bottom:218.629293pt;}
.yba_c00472{bottom:218.979680pt;}
.yb9_c00472{bottom:219.360000pt;}
.yb8_c00472{bottom:251.134667pt;}
.yb7_c00472{bottom:280.690667pt;}
.yb6_c00472{bottom:313.844000pt;}
.yb5_c00472{bottom:346.079377pt;}
.yb4_c00472{bottom:346.079707pt;}
.yb3_c00472{bottom:346.079956pt;}
.yaa_c00472{bottom:373.201333pt;}
.yab_c00472{bottom:373.745709pt;}
.yac_c00472{bottom:373.954048pt;}
.yad_c00472{bottom:374.298448pt;}
.yae_c00472{bottom:374.575779pt;}
.yaf_c00472{bottom:375.134761pt;}
.yb0_c00472{bottom:375.395507pt;}
.yb1_c00472{bottom:376.097308pt;}
.yb2_c00472{bottom:376.364773pt;}
.ya9_c00472{bottom:409.540000pt;}
.y9e_c00472{bottom:436.521993pt;}
.y9f_c00472{bottom:436.808193pt;}
.ya0_c00472{bottom:437.672380pt;}
.ya1_c00472{bottom:438.532647pt;}
.ya2_c00472{bottom:438.959847pt;}
.ya3_c00472{bottom:439.710407pt;}
.ya4_c00472{bottom:440.786627pt;}
.ya5_c00472{bottom:441.005887pt;}
.ya6_c00472{bottom:441.327093pt;}
.ya7_c00472{bottom:441.871200pt;}
.ya8_c00472{bottom:442.096367pt;}
.y96_c00472{bottom:468.206393pt;}
.y97_c00472{bottom:468.516000pt;}
.y98_c00472{bottom:469.688067pt;}
.y99_c00472{bottom:470.382273pt;}
.y9a_c00472{bottom:470.877853pt;}
.y9b_c00472{bottom:472.155533pt;}
.y9c_c00472{bottom:472.389087pt;}
.y9d_c00472{bottom:472.749633pt;}
.y8d_c00472{bottom:500.371413pt;}
.y8e_c00472{bottom:500.641367pt;}
.y8f_c00472{bottom:501.619087pt;}
.y90_c00472{bottom:502.393607pt;}
.y91_c00472{bottom:503.478300pt;}
.y92_c00472{bottom:504.453073pt;}
.y93_c00472{bottom:504.846060pt;}
.y94_c00472{bottom:505.541860pt;}
.y95_c00472{bottom:505.937373pt;}
.y8b_c00472{bottom:535.417740pt;}
.y8c_c00472{bottom:540.103567pt;}
.y82_c00472{bottom:566.379413pt;}
.y83_c00472{bottom:566.804787pt;}
.y84_c00472{bottom:567.248213pt;}
.y85_c00472{bottom:567.887553pt;}
.y86_c00472{bottom:568.204967pt;}
.y87_c00472{bottom:568.970340pt;}
.y88_c00472{bottom:569.287713pt;}
.y89_c00472{bottom:569.619900pt;}
.y8a_c00472{bottom:570.818060pt;}
.y77_c00472{bottom:593.023000pt;}
.y78_c00472{bottom:593.406980pt;}
.y79_c00472{bottom:594.227433pt;}
.y7a_c00472{bottom:595.849653pt;}
.y7b_c00472{bottom:596.256580pt;}
.y7c_c00472{bottom:597.485740pt;}
.y7d_c00472{bottom:598.051180pt;}
.y7e_c00472{bottom:598.453847pt;}
.y7f_c00472{bottom:598.880280pt;}
.y80_c00472{bottom:599.841820pt;}
.y81_c00472{bottom:600.386153pt;}
.y70_c00472{bottom:629.027400pt;}
.y71_c00472{bottom:629.578887pt;}
.y72_c00472{bottom:630.329287pt;}
.y73_c00472{bottom:630.657300pt;}
.y74_c00472{bottom:631.510033pt;}
.y75_c00472{bottom:631.717853pt;}
.y76_c00472{bottom:632.053760pt;}
.y66_c00472{bottom:659.748647pt;}
.y67_c00472{bottom:660.170993pt;}
.y68_c00472{bottom:660.499287pt;}
.y69_c00472{bottom:661.560733pt;}
.y6a_c00472{bottom:661.777887pt;}
.y6b_c00472{bottom:662.963160pt;}
.y6c_c00472{bottom:663.394400pt;}
.y6d_c00472{bottom:663.722093pt;}
.y6e_c00472{bottom:664.382033pt;}
.y6f_c00472{bottom:664.703900pt;}
.y5c_c00472{bottom:688.550927pt;}
.y5d_c00472{bottom:688.970587pt;}
.y5e_c00472{bottom:690.112247pt;}
.y50_c00472{bottom:690.360000pt;}
.y5f_c00472{bottom:691.447867pt;}
.y60_c00472{bottom:692.042987pt;}
.y61_c00472{bottom:693.500167pt;}
.y62_c00472{bottom:693.935827pt;}
.y63_c00472{bottom:695.109347pt;}
.y64_c00472{bottom:696.873307pt;}
.y65_c00472{bottom:697.179267pt;}
.y53_c00472{bottom:719.036240pt;}
.y54_c00472{bottom:719.457567pt;}
.y55_c00472{bottom:720.863687pt;}
.y56_c00472{bottom:721.961847pt;}
.y57_c00472{bottom:722.590493pt;}
.y58_c00472{bottom:723.829967pt;}
.y59_c00472{bottom:724.149587pt;}
.y5a_c00472{bottom:724.625500pt;}
.y5b_c00472{bottom:726.347880pt;}
.y51_c00472{bottom:755.042667pt;}
.y52_c00472{bottom:756.652387pt;}
.y45_c00472{bottom:777.849333pt;}
.y46_c00472{bottom:779.543367pt;}
.y47_c00472{bottom:781.727900pt;}
.y48_c00472{bottom:782.694800pt;}
.y49_c00472{bottom:784.689167pt;}
.y4a_c00472{bottom:786.844600pt;}
.y4b_c00472{bottom:787.356700pt;}
.y4c_c00472{bottom:789.058833pt;}
.y4d_c00472{bottom:789.804867pt;}
.y4e_c00472{bottom:792.012467pt;}
.y4f_c00472{bottom:792.750700pt;}
.y3a_c00472{bottom:813.601333pt;}
.y3b_c00472{bottom:814.089445pt;}
.y3c_c00472{bottom:815.851573pt;}
.y3d_c00472{bottom:817.633045pt;}
.y3e_c00472{bottom:817.987453pt;}
.y3f_c00472{bottom:818.979517pt;}
.y40_c00472{bottom:821.290741pt;}
.y41_c00472{bottom:822.547813pt;}
.y42_c00472{bottom:823.070677pt;}
.y43_c00472{bottom:823.584901pt;}
.y44_c00472{bottom:825.852565pt;}
.y39_c00472{bottom:850.549333pt;}
.y30_c00472{bottom:875.515675pt;}
.y31_c00472{bottom:876.007596pt;}
.y32_c00472{bottom:877.580067pt;}
.y10_c00472{bottom:877.680000pt;}
.y33_c00472{bottom:878.276179pt;}
.y34_c00472{bottom:881.792173pt;}
.y35_c00472{bottom:882.492272pt;}
.y36_c00472{bottom:883.376492pt;}
.y37_c00472{bottom:883.912287pt;}
.y38_c00472{bottom:885.338069pt;}
.y26_c00472{bottom:907.202667pt;}
.y27_c00472{bottom:907.778207pt;}
.yf_c00472{bottom:908.640000pt;}
.y28_c00472{bottom:909.606691pt;}
.y29_c00472{bottom:910.608783pt;}
.y2a_c00472{bottom:911.461943pt;}
.y2b_c00472{bottom:913.093587pt;}
.y2c_c00472{bottom:913.709811pt;}
.y2d_c00472{bottom:914.339979pt;}
.y2e_c00472{bottom:915.357723pt;}
.y2f_c00472{bottom:915.952947pt;}
.ye_c00472{bottom:935.390667pt;}
.y1c_c00472{bottom:937.913019pt;}
.y1d_c00472{bottom:938.676209pt;}
.y1e_c00472{bottom:941.105900pt;}
.y1f_c00472{bottom:941.926405pt;}
.y20_c00472{bottom:943.013680pt;}
.y21_c00472{bottom:945.213179pt;}
.y22_c00472{bottom:946.597032pt;}
.y23_c00472{bottom:948.230267pt;}
.y24_c00472{bottom:949.037992pt;}
.y25_c00472{bottom:954.145351pt;}
.y11_c00472{bottom:967.205333pt;}
.y12_c00472{bottom:967.941677pt;}
.y13_c00472{bottom:970.278365pt;}
.yd_c00472{bottom:970.560000pt;}
.y14_c00472{bottom:971.063021pt;}
.y15_c00472{bottom:971.834897pt;}
.y16_c00472{bottom:973.698725pt;}
.y17_c00472{bottom:974.226053pt;}
.y18_c00472{bottom:976.869461pt;}
.y19_c00472{bottom:977.912525pt;}
.y1a_c00472{bottom:979.797881pt;}
.y1b_c00472{bottom:980.601617pt;}
.y3_c00472{bottom:999.604000pt;}
.y4_c00472{bottom:1001.078536pt;}
.y5_c00472{bottom:1003.070064pt;}
.y6_c00472{bottom:1004.113848pt;}
.y7_c00472{bottom:1005.730260pt;}
.y8_c00472{bottom:1006.547832pt;}
.y9_c00472{bottom:1007.606316pt;}
.ya_c00472{bottom:1008.204172pt;}
.yb_c00472{bottom:1009.046580pt;}
.yc_c00472{bottom:1009.849144pt;}
.y2_c00472{bottom:1021.680000pt;}
.y1_c00472{bottom:1075.437333pt;}
.h6_c00472{height:10.666667pt;}
.h3_c00472{height:21.333333pt;}
.h5_c00472{height:37.333333pt;}
.h13_c00472{height:53.334640pt;}
.ha_c00472{height:58.666667pt;}
.h14_c00472{height:64.000000pt;}
.h12_c00472{height:64.001568pt;}
.he_c00472{height:64.007200pt;}
.h4_c00472{height:64.014110pt;}
.h7_c00472{height:64.023324pt;}
.h17_c00472{height:69.333333pt;}
.hd_c00472{height:69.341133pt;}
.hb_c00472{height:69.344564pt;}
.h15_c00472{height:74.666667pt;}
.h16_c00472{height:74.667600pt;}
.h10_c00472{height:74.675066pt;}
.h9_c00472{height:74.683129pt;}
.h18_c00472{height:80.000000pt;}
.h11_c00472{height:80.008999pt;}
.hc_c00472{height:80.024996pt;}
.h8_c00472{height:80.029155pt;}
.hf_c00472{height:85.342933pt;}
.h2_c00472{height:106.666667pt;}
.h0_c00472{height:1107.840000pt;}
.h1_c00472{height:1108.000000pt;}
.w0_c00472{width:813.066667pt;}
.w1_c00472{width:813.333333pt;}
.x0_c00472{left:0.000000pt;}
.x4_c00472{left:85.656000pt;}
.x3a_c00472{left:91.332000pt;}
.xe_c00472{left:98.640000pt;}
.x10_c00472{left:99.840000pt;}
.x43_c00472{left:103.440000pt;}
.xf_c00472{left:113.520000pt;}
.x11_c00472{left:128.588000pt;}
.x28_c00472{left:129.934781pt;}
.x31_c00472{left:131.130667pt;}
.x45_c00472{left:133.502807pt;}
.x65_c00472{left:136.377227pt;}
.x75_c00472{left:148.107993pt;}
.x7c_c00472{left:149.322633pt;}
.x8e_c00472{left:153.120000pt;}
.x5_c00472{left:155.872000pt;}
.x29_c00472{left:157.297851pt;}
.x32_c00472{left:158.248000pt;}
.x46_c00472{left:159.813073pt;}
.x4d_c00472{left:161.938753pt;}
.x66_c00472{left:163.842980pt;}
.x76_c00472{left:175.084680pt;}
.x80_c00472{left:176.052847pt;}
.x86_c00472{left:177.458667pt;}
.x8f_c00472{left:179.760000pt;}
.x93_c00472{left:181.200000pt;}
.x9b_c00472{left:182.828000pt;}
.xa0_c00472{left:184.560000pt;}
.xa6_c00472{left:185.760000pt;}
.x67_c00472{left:222.451860pt;}
.x90_c00472{left:228.000000pt;}
.x4e_c00472{left:238.049420pt;}
.x12_c00472{left:242.404000pt;}
.x21_c00472{left:243.698667pt;}
.x2a_c00472{left:244.627339pt;}
.x3b_c00472{left:246.474667pt;}
.x47_c00472{left:247.686420pt;}
.x55_c00472{left:249.734067pt;}
.x6_c00472{left:250.706667pt;}
.x81_c00472{left:254.558880pt;}
.x30_c00472{left:255.600000pt;}
.x44_c00472{left:257.241333pt;}
.x5f_c00472{left:258.824827pt;}
.x6d_c00472{left:260.743433pt;}
.x74_c00472{left:262.518820pt;}
.x85_c00472{left:265.680000pt;}
.x8b_c00472{left:267.360912pt;}
.x98_c00472{left:269.520000pt;}
.x13_c00472{left:271.465333pt;}
.x1a_c00472{left:272.377447pt;}
.xab_c00472{left:273.417333pt;}
.x94_c00472{left:278.160000pt;}
.x2b_c00472{left:283.301775pt;}
.x3c_c00472{left:285.150667pt;}
.x56_c00472{left:288.115033pt;}
.x22_c00472{left:291.417333pt;}
.x6e_c00472{left:299.415087pt;}
.x7_c00472{left:300.410667pt;}
.xa7_c00472{left:301.920000pt;}
.x8c_c00472{left:305.041427pt;}
.x95_c00472{left:306.480000pt;}
.x99_c00472{left:307.440000pt;}
.x60_c00472{left:309.015847pt;}
.x1b_c00472{left:311.213736pt;}
.x48_c00472{left:316.362733pt;}
.x57_c00472{left:317.914147pt;}
.x91_c00472{left:325.920000pt;}
.x4f_c00472{left:327.090753pt;}
.x9c_c00472{left:328.969333pt;}
.x7d_c00472{left:330.656127pt;}
.x23_c00472{left:332.044000pt;}
.x87_c00472{left:334.189333pt;}
.x68_c00472{left:338.334933pt;}
.x6f_c00472{left:339.734840pt;}
.x77_c00472{left:350.313820pt;}
.x1_c00472{left:355.680000pt;}
.x9f_c00472{left:359.280000pt;}
.xac_c00472{left:360.944000pt;}
.x3d_c00472{left:364.925333pt;}
.x50_c00472{left:366.765420pt;}
.x14_c00472{left:369.084000pt;}
.x7e_c00472{left:371.963320pt;}
.x88_c00472{left:373.808000pt;}
.x33_c00472{left:374.804000pt;}
.x8_c00472{left:377.382667pt;}
.x8d_c00472{left:383.283929pt;}
.x15_c00472{left:388.614667pt;}
.x1c_c00472{left:389.760945pt;}
.x96_c00472{left:394.320000pt;}
.x70_c00472{left:397.827653pt;}
.xa1_c00472{left:399.120000pt;}
.x2_c00472{left:405.120000pt;}
.x61_c00472{left:406.960373pt;}
.x24_c00472{left:409.741333pt;}
.x58_c00472{left:414.371927pt;}
.x9_c00472{left:416.314667pt;}
.xa2_c00472{left:418.800000pt;}
.x9a_c00472{left:423.120000pt;}
.x71_c00472{left:426.634707pt;}
.x34_c00472{left:429.918667pt;}
.x49_c00472{left:433.168993pt;}
.x59_c00472{left:434.094440pt;}
.x1d_c00472{left:439.186280pt;}
.x3e_c00472{left:451.142667pt;}
.x4a_c00472{left:453.143360pt;}
.x69_c00472{left:455.231360pt;}
.x78_c00472{left:458.812627pt;}
.x51_c00472{left:463.910753pt;}
.xa_c00472{left:466.718667pt;}
.x25_c00472{left:469.093333pt;}
.x3f_c00472{left:471.626667pt;}
.x97_c00472{left:474.000000pt;}
.x2c_c00472{left:478.615400pt;}
.x4b_c00472{left:482.914920pt;}
.x62_c00472{left:484.525033pt;}
.x16_c00472{left:486.518667pt;}
.x89_c00472{left:490.912000pt;}
.x52_c00472{left:492.954753pt;}
.xb_c00472{left:495.188000pt;}
.x72_c00472{left:496.241553pt;}
.x1e_c00472{left:497.502029pt;}
.x63_c00472{left:503.447507pt;}
.xa8_c00472{left:507.360000pt;}
.x26_c00472{left:517.557333pt;}
.x17_c00472{left:525.150667pt;}
.x1f_c00472{left:526.330571pt;}
.x7f_c00472{left:527.955673pt;}
.x64_c00472{left:533.931993pt;}
.xc_c00472{left:535.302667pt;}
.x82_c00472{left:537.747880pt;}
.x40_c00472{left:539.712000pt;}
.x5a_c00472{left:541.830233pt;}
.x27_c00472{left:545.901333pt;}
.x3_c00472{left:548.400000pt;}
.x6a_c00472{left:554.868860pt;}
.x79_c00472{left:556.249260pt;}
.x35_c00472{left:558.320000pt;}
.x2d_c00472{left:566.699639pt;}
.x41_c00472{left:569.553333pt;}
.x53_c00472{left:571.189420pt;}
.xd_c00472{left:573.520000pt;}
.x5b_c00472{left:580.981907pt;}
.xa3_c00472{left:585.840000pt;}
.x83_c00472{left:586.937507pt;}
.x4c_c00472{left:590.538633pt;}
.x9d_c00472{left:592.736000pt;}
.x18_c00472{left:594.978667pt;}
.x2e_c00472{left:596.469515pt;}
.x5c_c00472{left:610.741020pt;}
.xa4_c00472{left:615.600000pt;}
.x6b_c00472{left:623.505880pt;}
.x19_c00472{left:624.746667pt;}
.x36_c00472{left:628.157333pt;}
.x8a_c00472{left:629.378667pt;}
.x84_c00472{left:636.369800pt;}
.xa5_c00472{left:654.720000pt;}
.xa9_c00472{left:655.680000pt;}
.x37_c00472{left:657.205333pt;}
.x6c_c00472{left:662.373127pt;}
.x73_c00472{left:664.232967pt;}
.x7a_c00472{left:665.198773pt;}
.x5d_c00472{left:670.740620pt;}
.x2f_c00472{left:675.670499pt;}
.x9e_c00472{left:682.025333pt;}
.x38_c00472{left:685.773333pt;}
.x42_c00472{left:687.386667pt;}
.x54_c00472{left:688.786753pt;}
.x5e_c00472{left:700.022380pt;}
.x7b_c00472{left:704.813753pt;}
.x20_c00472{left:708.721639pt;}
.xaa_c00472{left:714.720000pt;}
.x92_c00472{left:727.440000pt;}
.x39_c00472{left:811.754667pt;}
}





/* 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_c00473 {
    display:none;
  }
  .loading-indicator_c00473.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00473 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_c00473 { 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_c00473" -> "#page-container .classname_c00473")
 */
.pf_c00473 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00473 { /* 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_c00473.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00473 { /* 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_c00473 { /* 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_c00473 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00473 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00473 {overflow:visible;}
  }
}
.c_c00473 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00473 { /* 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_c00473:after { /* webkit #35443 */
  content: '';
}
.t_c00473:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00473 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 */
}
.__c00473 { /* 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_c00473 { /* info for Javascript */
  display:none;
}
.l_c00473 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00473 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00473 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00473: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_c00473 {
    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_c00473.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00473.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_c00473 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00473{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00473;src:url('chunks/assets/font_c605e72f209fc835e906f064.woff2')format("woff");}.ff1_c00473{font-family:ff1_c00473;line-height:1.000000;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;}
.m6_c00473{transform:matrix(0.031820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.031820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.031820,0.000000,0.000000,0.250000,0,0);}
.m5_c00473{transform:matrix(0.035575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.035575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.035575,0.000000,0.000000,0.250000,0,0);}
.m9_c00473{transform:matrix(0.040560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.040560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.040560,0.000000,0.000000,0.250000,0,0);}
.m12_c00473{transform:matrix(0.042425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.042425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.042425,0.000000,0.000000,0.250000,0,0);}
.mf_c00473{transform:matrix(0.047435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.047435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.047435,0.000000,0.000000,0.250000,0,0);}
.m11_c00473{transform:matrix(0.054085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054085,0.000000,0.000000,0.250000,0,0);}
.ma_c00473{transform:matrix(0.056250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.056250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.056250,0.000000,0.000000,0.250000,0,0);}
.m10_c00473{transform:matrix(0.063640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.063640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.063640,0.000000,0.000000,0.250000,0,0);}
.m8_c00473{transform:matrix(0.075465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.075465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.075465,0.000000,0.000000,0.250000,0,0);}
.md_c00473{transform:matrix(0.108165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108165,0.000000,0.000000,0.250000,0,0);}
.m7_c00473{transform:matrix(0.111370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111370,0.000000,0.000000,0.250000,0,0);}
.m13_c00473{transform:matrix(0.117155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117155,0.000000,0.000000,0.250000,0,0);}
.m15_c00473{transform:matrix(0.120935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120935,0.000000,0.000000,0.250000,0,0);}
.m17_c00473{transform:matrix(0.162250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162250,0.000000,0.000000,0.250000,0,0);}
.m3_c00473{transform:matrix(0.245965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245965,0.000000,0.000000,0.250000,0,0);}
.m18_c00473{transform:matrix(0.281835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281835,0.000000,0.000000,0.250000,0,0);}
.m14_c00473{transform:matrix(0.291205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291205,0.000000,0.000000,0.250000,0,0);}
.me_c00473{transform:matrix(0.294110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294110,0.000000,0.000000,0.250000,0,0);}
.m16_c00473{transform:matrix(0.302335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302335,0.000000,0.000000,0.250000,0,0);}
.m2_c00473{transform:matrix(0.343630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343630,0.000000,0.000000,0.250000,0,0);}
.mc_c00473{transform:matrix(0.518600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518600,0.000000,0.000000,0.250000,0,0);}
.m4_c00473{transform:matrix(0.660680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.660680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.660680,0.000000,0.000000,0.250000,0,0);}
.m0_c00473{transform:matrix(0.870515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.870515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.870515,0.000000,0.000000,0.250000,0,0);}
.m1_c00473{transform:matrix(1.590635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.590635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.590635,0.000000,0.000000,0.250000,0,0);}
.mb_c00473{transform:matrix(5.538705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.538705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.538705,0.000000,0.000000,0.250000,0,0);}
.v0_c00473{vertical-align:0.000000px;}
.v1_c00473{vertical-align:5.166000px;}
.ls0_c00473{letter-spacing:0.000000px;}
.sc__c00473{text-shadow:none;}
.sc0_c00473{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__c00473{-webkit-text-stroke:0px transparent;}
.sc0_c00473{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00473{word-spacing:0.000000px;}
._0_c00473{width:2425.371302px;}
.fc0_c00473{color:transparent;}
.fs0_c00473{font-size:18.000000px;}
.fs1_c00473{font-size:24.000000px;}
.fs2_c00473{font-size:42.000000px;}
.y0_c00473{bottom:0.000000px;}
.ya_c00473{bottom:758.970000px;}
.y3_c00473{bottom:1222.831500px;}
.y9_c00473{bottom:1223.100000px;}
.y4_c00473{bottom:1225.618500px;}
.y8_c00473{bottom:1226.338500px;}
.y5_c00473{bottom:1227.124500px;}
.y6_c00473{bottom:1227.370500px;}
.y7_c00473{bottom:1227.612000px;}
.y2_c00473{bottom:1237.159500px;}
.y1_c00473{bottom:1241.482500px;}
.h2_c00473{height:18.000000px;}
.h3_c00473{height:24.000000px;}
.h4_c00473{height:29.166000px;}
.h5_c00473{height:42.000000px;}
.h0_c00473{height:1246.320000px;}
.h1_c00473{height:1246.500000px;}
.w0_c00473{width:896.100000px;}
.w1_c00473{width:896.250000px;}
.x0_c00473{left:0.000000px;}
.x9_c00473{left:61.924500px;}
.xf_c00473{left:78.840000px;}
.x10_c00473{left:106.920000px;}
.x11_c00473{left:133.650000px;}
.x12_c00473{left:153.360000px;}
.x13_c00473{left:171.990000px;}
.x5_c00473{left:193.590000px;}
.x6_c00473{left:241.380000px;}
.x14_c00473{left:248.940000px;}
.xa_c00473{left:276.286500px;}
.x15_c00473{left:282.690000px;}
.x7_c00473{left:290.250000px;}
.x8_c00473{left:328.590000px;}
.xb_c00473{left:392.100000px;}
.xc_c00473{left:410.997000px;}
.xd_c00473{left:429.621000px;}
.x1_c00473{left:441.990000px;}
.x16_c00473{left:471.420000px;}
.x17_c00473{left:508.140000px;}
.xe_c00473{left:516.241500px;}
.x18_c00473{left:533.250000px;}
.x2_c00473{left:549.990000px;}
.x19_c00473{left:565.380000px;}
.x3_c00473{left:589.950000px;}
.x4_c00473{left:605.610000px;}
.x1a_c00473{left:757.620000px;}
@media print{
.v0_c00473{vertical-align:0.000000pt;}
.v1_c00473{vertical-align:4.592000pt;}
.ls0_c00473{letter-spacing:0.000000pt;}
.ws0_c00473{word-spacing:0.000000pt;}
._0_c00473{width:2155.885602pt;}
.fs0_c00473{font-size:16.000000pt;}
.fs1_c00473{font-size:21.333333pt;}
.fs2_c00473{font-size:37.333333pt;}
.y0_c00473{bottom:0.000000pt;}
.ya_c00473{bottom:674.640000pt;}
.y3_c00473{bottom:1086.961333pt;}
.y9_c00473{bottom:1087.200000pt;}
.y4_c00473{bottom:1089.438667pt;}
.y8_c00473{bottom:1090.078667pt;}
.y5_c00473{bottom:1090.777333pt;}
.y6_c00473{bottom:1090.996000pt;}
.y7_c00473{bottom:1091.210667pt;}
.y2_c00473{bottom:1099.697333pt;}
.y1_c00473{bottom:1103.540000pt;}
.h2_c00473{height:16.000000pt;}
.h3_c00473{height:21.333333pt;}
.h4_c00473{height:25.925333pt;}
.h5_c00473{height:37.333333pt;}
.h0_c00473{height:1107.840000pt;}
.h1_c00473{height:1108.000000pt;}
.w0_c00473{width:796.533333pt;}
.w1_c00473{width:796.666667pt;}
.x0_c00473{left:0.000000pt;}
.x9_c00473{left:55.044000pt;}
.xf_c00473{left:70.080000pt;}
.x10_c00473{left:95.040000pt;}
.x11_c00473{left:118.800000pt;}
.x12_c00473{left:136.320000pt;}
.x13_c00473{left:152.880000pt;}
.x5_c00473{left:172.080000pt;}
.x6_c00473{left:214.560000pt;}
.x14_c00473{left:221.280000pt;}
.xa_c00473{left:245.588000pt;}
.x15_c00473{left:251.280000pt;}
.x7_c00473{left:258.000000pt;}
.x8_c00473{left:292.080000pt;}
.xb_c00473{left:348.533333pt;}
.xc_c00473{left:365.330667pt;}
.xd_c00473{left:381.885333pt;}
.x1_c00473{left:392.880000pt;}
.x16_c00473{left:419.040000pt;}
.x17_c00473{left:451.680000pt;}
.xe_c00473{left:458.881333pt;}
.x18_c00473{left:474.000000pt;}
.x2_c00473{left:488.880000pt;}
.x19_c00473{left:502.560000pt;}
.x3_c00473{left:524.400000pt;}
.x4_c00473{left:538.320000pt;}
.x1a_c00473{left:673.440000pt;}
}





/* 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_c00474 {
    display:none;
  }
  .loading-indicator_c00474.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00474 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_c00474 { 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_c00474" -> "#page-container .classname_c00474")
 */
.pf_c00474 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00474 { /* 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_c00474.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00474 { /* 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_c00474 { /* 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_c00474 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00474 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00474 {overflow:visible;}
  }
}
.c_c00474 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00474 { /* 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_c00474:after { /* webkit #35443 */
  content: '';
}
.t_c00474:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00474 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 */
}
.__c00474 { /* 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_c00474 { /* info for Javascript */
  display:none;
}
.l_c00474 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00474 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00474 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00474: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_c00474 {
    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_c00474.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00474.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_c00474 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00474{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00474;src:url('chunks/assets/font_53ec0c54e60da7c2d414b553.woff2')format("woff");}.ff1_c00474{font-family:ff1_c00474;line-height:1.000000;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;}
.m65_c00474{transform:matrix(0.018742,0.000544,-0.007247,0.249895,0,0);-ms-transform:matrix(0.018742,0.000544,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.018742,0.000544,-0.007247,0.249895,0,0);}
.m0_c00474{transform:matrix(0.050990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.050990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.050990,0.000000,0.000000,0.250000,0,0);}
.m1b_c00474{transform:matrix(0.112111,0.000897,-0.002000,0.249992,0,0);-ms-transform:matrix(0.112111,0.000897,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.112111,0.000897,-0.002000,0.249992,0,0);}
.mdf_c00474{transform:matrix(0.122710,0.002454,-0.004999,0.249950,0,0);-ms-transform:matrix(0.122710,0.002454,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.122710,0.002454,-0.004999,0.249950,0,0);}
.m1_c00474{transform:matrix(0.128160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128160,0.000000,0.000000,0.250000,0,0);}
.m3c_c00474{transform:matrix(0.143285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143285,0.000000,0.000000,0.250000,0,0);}
.m88_c00474{transform:matrix(0.162417,0.002436,-0.003750,0.249972,0,0);-ms-transform:matrix(0.162417,0.002436,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.162417,0.002436,-0.003750,0.249972,0,0);}
.md5_c00474{transform:matrix(0.167929,0.006388,-0.009503,0.249819,0,0);-ms-transform:matrix(0.167929,0.006388,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.167929,0.006388,-0.009503,0.249819,0,0);}
.md6_c00474{transform:matrix(0.172200,0.006550,-0.009503,0.249819,0,0);-ms-transform:matrix(0.172200,0.006550,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.172200,0.006550,-0.009503,0.249819,0,0);}
.me_c00474{transform:matrix(0.174414,0.001395,-0.002000,0.249992,0,0);-ms-transform:matrix(0.174414,0.001395,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.174414,0.001395,-0.002000,0.249992,0,0);}
.md1_c00474{transform:matrix(0.175451,0.005088,-0.007247,0.249895,0,0);-ms-transform:matrix(0.175451,0.005088,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.175451,0.005088,-0.007247,0.249895,0,0);}
.mbe_c00474{transform:matrix(0.177289,0.004255,-0.005998,0.249928,0,0);-ms-transform:matrix(0.177289,0.004255,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.177289,0.004255,-0.005998,0.249928,0,0);}
.m68_c00474{transform:matrix(0.184113,0.005339,-0.007247,0.249895,0,0);-ms-transform:matrix(0.184113,0.005339,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.184113,0.005339,-0.007247,0.249895,0,0);}
.m98_c00474{transform:matrix(0.185247,0.004446,-0.005998,0.249928,0,0);-ms-transform:matrix(0.185247,0.004446,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.185247,0.004446,-0.005998,0.249928,0,0);}
.md3_c00474{transform:matrix(0.186945,0.007111,-0.009503,0.249819,0,0);-ms-transform:matrix(0.186945,0.007111,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.186945,0.007111,-0.009503,0.249819,0,0);}
.m6a_c00474{transform:matrix(0.187091,0.005426,-0.007247,0.249895,0,0);-ms-transform:matrix(0.187091,0.005426,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.187091,0.005426,-0.007247,0.249895,0,0);}
.mc5_c00474{transform:matrix(0.187646,0.006386,-0.008504,0.249855,0,0);-ms-transform:matrix(0.187646,0.006386,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.187646,0.006386,-0.008504,0.249855,0,0);}
.m5c_c00474{transform:matrix(0.188325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188325,0.000000,0.000000,0.250000,0,0);}
.m83_c00474{transform:matrix(0.188989,0.002835,-0.003750,0.249972,0,0);-ms-transform:matrix(0.188989,0.002835,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.188989,0.002835,-0.003750,0.249972,0,0);}
.md9_c00474{transform:matrix(0.190567,0.007249,-0.009503,0.249819,0,0);-ms-transform:matrix(0.190567,0.007249,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.190567,0.007249,-0.009503,0.249819,0,0);}
.m22_c00474{transform:matrix(0.191375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191375,0.000000,0.000000,0.250000,0,0);}
.mcc_c00474{transform:matrix(0.192474,0.006551,-0.008504,0.249855,0,0);-ms-transform:matrix(0.192474,0.006551,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.192474,0.006551,-0.008504,0.249855,0,0);}
.m20_c00474{transform:matrix(0.192730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192730,0.000000,0.000000,0.250000,0,0);}
.mdc_c00474{transform:matrix(0.193116,0.003862,-0.004999,0.249950,0,0);-ms-transform:matrix(0.193116,0.003862,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.193116,0.003862,-0.004999,0.249950,0,0);}
.mc7_c00474{transform:matrix(0.193233,0.006577,-0.008504,0.249855,0,0);-ms-transform:matrix(0.193233,0.006577,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.193233,0.006577,-0.008504,0.249855,0,0);}
.md8_c00474{transform:matrix(0.193830,0.007373,-0.009503,0.249819,0,0);-ms-transform:matrix(0.193830,0.007373,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.193830,0.007373,-0.009503,0.249819,0,0);}
.mbc_c00474{transform:matrix(0.194034,0.004657,-0.005998,0.249928,0,0);-ms-transform:matrix(0.194034,0.004657,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.194034,0.004657,-0.005998,0.249928,0,0);}
.m99_c00474{transform:matrix(0.195249,0.004686,-0.005998,0.249928,0,0);-ms-transform:matrix(0.195249,0.004686,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.195249,0.004686,-0.005998,0.249928,0,0);}
.m26_c00474{transform:matrix(0.198455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198455,0.000000,0.000000,0.250000,0,0);}
.me5_c00474{transform:matrix(0.199595,0.008591,-0.010751,0.249769,0,0);-ms-transform:matrix(0.199595,0.008591,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.199595,0.008591,-0.010751,0.249769,0,0);}
.mca_c00474{transform:matrix(0.200179,0.006813,-0.008504,0.249855,0,0);-ms-transform:matrix(0.200179,0.006813,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.200179,0.006813,-0.008504,0.249855,0,0);}
.mf_c00474{transform:matrix(0.201609,0.001613,-0.002000,0.249992,0,0);-ms-transform:matrix(0.201609,0.001613,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.201609,0.001613,-0.002000,0.249992,0,0);}
.m94_c00474{transform:matrix(0.202717,0.004865,-0.005998,0.249928,0,0);-ms-transform:matrix(0.202717,0.004865,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.202717,0.004865,-0.005998,0.249928,0,0);}
.mbf_c00474{transform:matrix(0.204996,0.004920,-0.005998,0.249928,0,0);-ms-transform:matrix(0.204996,0.004920,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.204996,0.004920,-0.005998,0.249928,0,0);}
.m8e_c00474{transform:matrix(0.206031,0.005151,-0.006248,0.249922,0,0);-ms-transform:matrix(0.206031,0.005151,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.206031,0.005151,-0.006248,0.249922,0,0);}
.m71_c00474{transform:matrix(0.206069,0.003297,-0.003999,0.249968,0,0);-ms-transform:matrix(0.206069,0.003297,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.206069,0.003297,-0.003999,0.249968,0,0);}
.md4_c00474{transform:matrix(0.207395,0.007889,-0.009503,0.249819,0,0);-ms-transform:matrix(0.207395,0.007889,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.207395,0.007889,-0.009503,0.249819,0,0);}
.md7_c00474{transform:matrix(0.208264,0.007922,-0.009503,0.249819,0,0);-ms-transform:matrix(0.208264,0.007922,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.208264,0.007922,-0.009503,0.249819,0,0);}
.me6_c00474{transform:matrix(0.208412,0.008971,-0.010751,0.249769,0,0);-ms-transform:matrix(0.208412,0.008971,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.208412,0.008971,-0.010751,0.249769,0,0);}
.mda_c00474{transform:matrix(0.208649,0.007937,-0.009503,0.249819,0,0);-ms-transform:matrix(0.208649,0.007937,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.208649,0.007937,-0.009503,0.249819,0,0);}
.m37_c00474{transform:matrix(0.209345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209345,0.000000,0.000000,0.250000,0,0);}
.m8b_c00474{transform:matrix(0.209869,0.005247,-0.006248,0.249922,0,0);-ms-transform:matrix(0.209869,0.005247,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.209869,0.005247,-0.006248,0.249922,0,0);}
.m89_c00474{transform:matrix(0.210371,0.003156,-0.003750,0.249972,0,0);-ms-transform:matrix(0.210371,0.003156,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.210371,0.003156,-0.003750,0.249972,0,0);}
.maf_c00474{transform:matrix(0.210934,0.005062,-0.005998,0.249928,0,0);-ms-transform:matrix(0.210934,0.005062,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.210934,0.005062,-0.005998,0.249928,0,0);}
.m76_c00474{transform:matrix(0.211188,0.003379,-0.003999,0.249968,0,0);-ms-transform:matrix(0.211188,0.003379,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.211188,0.003379,-0.003999,0.249968,0,0);}
.m7f_c00474{transform:matrix(0.211306,0.003170,-0.003750,0.249972,0,0);-ms-transform:matrix(0.211306,0.003170,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.211306,0.003170,-0.003750,0.249972,0,0);}
.m9b_c00474{transform:matrix(0.211449,0.005075,-0.005998,0.249928,0,0);-ms-transform:matrix(0.211449,0.005075,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.211449,0.005075,-0.005998,0.249928,0,0);}
.m95_c00474{transform:matrix(0.211519,0.005076,-0.005998,0.249928,0,0);-ms-transform:matrix(0.211519,0.005076,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.211519,0.005076,-0.005998,0.249928,0,0);}
.m6d_c00474{transform:matrix(0.212111,0.006151,-0.007247,0.249895,0,0);-ms-transform:matrix(0.212111,0.006151,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.212111,0.006151,-0.007247,0.249895,0,0);}
.m53_c00474{transform:matrix(0.212610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212610,0.000000,0.000000,0.250000,0,0);}
.m25_c00474{transform:matrix(0.213510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213510,0.000000,0.000000,0.250000,0,0);}
.m91_c00474{transform:matrix(0.213753,0.005344,-0.006248,0.249922,0,0);-ms-transform:matrix(0.213753,0.005344,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.213753,0.005344,-0.006248,0.249922,0,0);}
.m85_c00474{transform:matrix(0.213966,0.003209,-0.003750,0.249972,0,0);-ms-transform:matrix(0.213966,0.003209,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.213966,0.003209,-0.003750,0.249972,0,0);}
.m23_c00474{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.mc4_c00474{transform:matrix(0.216095,0.007355,-0.008504,0.249855,0,0);-ms-transform:matrix(0.216095,0.007355,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.216095,0.007355,-0.008504,0.249855,0,0);}
.me4_c00474{transform:matrix(0.217728,0.009372,-0.010751,0.249769,0,0);-ms-transform:matrix(0.217728,0.009372,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.217728,0.009372,-0.010751,0.249769,0,0);}
.mb8_c00474{transform:matrix(0.218255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218255,0.000000,0.000000,0.250000,0,0);}
.m39_c00474{transform:matrix(0.218420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218420,0.000000,0.000000,0.250000,0,0);}
.m96_c00474{transform:matrix(0.218627,0.005247,-0.005998,0.249928,0,0);-ms-transform:matrix(0.218627,0.005247,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.218627,0.005247,-0.005998,0.249928,0,0);}
.m9a_c00474{transform:matrix(0.218842,0.005252,-0.005998,0.249928,0,0);-ms-transform:matrix(0.218842,0.005252,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.218842,0.005252,-0.005998,0.249928,0,0);}
.m8c_c00474{transform:matrix(0.219466,0.005487,-0.006248,0.249922,0,0);-ms-transform:matrix(0.219466,0.005487,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.219466,0.005487,-0.006248,0.249922,0,0);}
.ma2_c00474{transform:matrix(0.219747,0.004834,-0.005499,0.249940,0,0);-ms-transform:matrix(0.219747,0.004834,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.219747,0.004834,-0.005499,0.249940,0,0);}
.m5e_c00474{transform:matrix(0.221205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221205,0.000000,0.000000,0.250000,0,0);}
.m82_c00474{transform:matrix(0.221255,0.003319,-0.003750,0.249972,0,0);-ms-transform:matrix(0.221255,0.003319,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.221255,0.003319,-0.003750,0.249972,0,0);}
.m7c_c00474{transform:matrix(0.221430,0.003321,-0.003750,0.249972,0,0);-ms-transform:matrix(0.221430,0.003321,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.221430,0.003321,-0.003750,0.249972,0,0);}
.m97_c00474{transform:matrix(0.221896,0.005326,-0.005998,0.249928,0,0);-ms-transform:matrix(0.221896,0.005326,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.221896,0.005326,-0.005998,0.249928,0,0);}
.md0_c00474{transform:matrix(0.222032,0.006439,-0.007247,0.249895,0,0);-ms-transform:matrix(0.222032,0.006439,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.222032,0.006439,-0.007247,0.249895,0,0);}
.m1f_c00474{transform:matrix(0.222720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222720,0.000000,0.000000,0.250000,0,0);}
.mbb_c00474{transform:matrix(0.223691,0.005369,-0.005998,0.249928,0,0);-ms-transform:matrix(0.223691,0.005369,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.223691,0.005369,-0.005998,0.249928,0,0);}
.m2a_c00474{transform:matrix(0.224431,0.002918,-0.003250,0.249979,0,0);-ms-transform:matrix(0.224431,0.002918,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.224431,0.002918,-0.003250,0.249979,0,0);}
.mc6_c00474{transform:matrix(0.224935,0.007655,-0.008504,0.249855,0,0);-ms-transform:matrix(0.224935,0.007655,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.224935,0.007655,-0.008504,0.249855,0,0);}
.m3f_c00474{transform:matrix(0.225345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225345,0.000000,0.000000,0.250000,0,0);}
.m87_c00474{transform:matrix(0.226305,0.003395,-0.003750,0.249972,0,0);-ms-transform:matrix(0.226305,0.003395,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.226305,0.003395,-0.003750,0.249972,0,0);}
.mdb_c00474{transform:matrix(0.226495,0.004530,-0.004999,0.249950,0,0);-ms-transform:matrix(0.226495,0.004530,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.226495,0.004530,-0.004999,0.249950,0,0);}
.mde_c00474{transform:matrix(0.226585,0.004532,-0.004999,0.249950,0,0);-ms-transform:matrix(0.226585,0.004532,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.226585,0.004532,-0.004999,0.249950,0,0);}
.m1d_c00474{transform:matrix(0.227190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227190,0.000000,0.000000,0.250000,0,0);}
.m7a_c00474{transform:matrix(0.227721,0.003644,-0.003999,0.249968,0,0);-ms-transform:matrix(0.227721,0.003644,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.227721,0.003644,-0.003999,0.249968,0,0);}
.m69_c00474{transform:matrix(0.228159,0.006617,-0.007247,0.249895,0,0);-ms-transform:matrix(0.228159,0.006617,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.228159,0.006617,-0.007247,0.249895,0,0);}
.m58_c00474{transform:matrix(0.228170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228170,0.000000,0.000000,0.250000,0,0);}
.m2_c00474{transform:matrix(0.229455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229455,0.000000,0.000000,0.250000,0,0);}
.m92_c00474{transform:matrix(0.229703,0.005743,-0.006248,0.249922,0,0);-ms-transform:matrix(0.229703,0.005743,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.229703,0.005743,-0.006248,0.249922,0,0);}
.m77_c00474{transform:matrix(0.229746,0.003676,-0.003999,0.249968,0,0);-ms-transform:matrix(0.229746,0.003676,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.229746,0.003676,-0.003999,0.249968,0,0);}
.mba_c00474{transform:matrix(0.230284,0.005527,-0.005998,0.249928,0,0);-ms-transform:matrix(0.230284,0.005527,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.230284,0.005527,-0.005998,0.249928,0,0);}
.m2c_c00474{transform:matrix(0.231470,0.003009,-0.003250,0.249979,0,0);-ms-transform:matrix(0.231470,0.003009,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.231470,0.003009,-0.003250,0.249979,0,0);}
.m24_c00474{transform:matrix(0.231725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231725,0.000000,0.000000,0.250000,0,0);}
.m1e_c00474{transform:matrix(0.232700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232700,0.000000,0.000000,0.250000,0,0);}
.m84_c00474{transform:matrix(0.233369,0.003501,-0.003750,0.249972,0,0);-ms-transform:matrix(0.233369,0.003501,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.233369,0.003501,-0.003750,0.249972,0,0);}
.ma7_c00474{transform:matrix(0.233638,0.005607,-0.005998,0.249928,0,0);-ms-transform:matrix(0.233638,0.005607,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.233638,0.005607,-0.005998,0.249928,0,0);}
.m27_c00474{transform:matrix(0.233880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233880,0.000000,0.000000,0.250000,0,0);}
.m7d_c00474{transform:matrix(0.234454,0.003517,-0.003750,0.249972,0,0);-ms-transform:matrix(0.234454,0.003517,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.234454,0.003517,-0.003750,0.249972,0,0);}
.mcb_c00474{transform:matrix(0.234839,0.007993,-0.008504,0.249855,0,0);-ms-transform:matrix(0.234839,0.007993,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.234839,0.007993,-0.008504,0.249855,0,0);}
.mdd_c00474{transform:matrix(0.234868,0.004697,-0.004999,0.249950,0,0);-ms-transform:matrix(0.234868,0.004697,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.234868,0.004697,-0.004999,0.249950,0,0);}
.m86_c00474{transform:matrix(0.235229,0.003528,-0.003750,0.249972,0,0);-ms-transform:matrix(0.235229,0.003528,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.235229,0.003528,-0.003750,0.249972,0,0);}
.m21_c00474{transform:matrix(0.235800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235800,0.000000,0.000000,0.250000,0,0);}
.m43_c00474{transform:matrix(0.235850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235850,0.000000,0.000000,0.250000,0,0);}
.m1c_c00474{transform:matrix(0.236180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236180,0.000000,0.000000,0.250000,0,0);}
.m40_c00474{transform:matrix(0.237185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237185,0.000000,0.000000,0.250000,0,0);}
.mb7_c00474{transform:matrix(0.237910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237910,0.000000,0.000000,0.250000,0,0);}
.mb9_c00474{transform:matrix(0.237965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237965,0.000000,0.000000,0.250000,0,0);}
.me7_c00474{transform:matrix(0.238384,0.010261,-0.010751,0.249769,0,0);-ms-transform:matrix(0.238384,0.010261,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.238384,0.010261,-0.010751,0.249769,0,0);}
.mb6_c00474{transform:matrix(0.238795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238795,0.000000,0.000000,0.250000,0,0);}
.m7b_c00474{transform:matrix(0.239634,0.003834,-0.003999,0.249968,0,0);-ms-transform:matrix(0.239634,0.003834,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.239634,0.003834,-0.003999,0.249968,0,0);}
.mbd_c00474{transform:matrix(0.241071,0.005786,-0.005998,0.249928,0,0);-ms-transform:matrix(0.241071,0.005786,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.241071,0.005786,-0.005998,0.249928,0,0);}
.mc0_c00474{transform:matrix(0.241620,0.005799,-0.005998,0.249928,0,0);-ms-transform:matrix(0.241620,0.005799,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.241620,0.005799,-0.005998,0.249928,0,0);}
.mab_c00474{transform:matrix(0.241925,0.005806,-0.005998,0.249928,0,0);-ms-transform:matrix(0.241925,0.005806,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.241925,0.005806,-0.005998,0.249928,0,0);}
.m5f_c00474{transform:matrix(0.241995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241995,0.000000,0.000000,0.250000,0,0);}
.m75_c00474{transform:matrix(0.242949,0.003887,-0.003999,0.249968,0,0);-ms-transform:matrix(0.242949,0.003887,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.242949,0.003887,-0.003999,0.249968,0,0);}
.mc8_c00474{transform:matrix(0.243019,0.008271,-0.008504,0.249855,0,0);-ms-transform:matrix(0.243019,0.008271,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.243019,0.008271,-0.008504,0.249855,0,0);}
.m5d_c00474{transform:matrix(0.245215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245215,0.000000,0.000000,0.250000,0,0);}
.m6e_c00474{transform:matrix(0.245357,0.007115,-0.007247,0.249895,0,0);-ms-transform:matrix(0.245357,0.007115,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.245357,0.007115,-0.007247,0.249895,0,0);}
.m8a_c00474{transform:matrix(0.245572,0.003684,-0.003750,0.249972,0,0);-ms-transform:matrix(0.245572,0.003684,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.245572,0.003684,-0.003750,0.249972,0,0);}
.mc9_c00474{transform:matrix(0.245603,0.008359,-0.008504,0.249855,0,0);-ms-transform:matrix(0.245603,0.008359,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.245603,0.008359,-0.008504,0.249855,0,0);}
.m34_c00474{transform:matrix(0.245814,0.003196,-0.003250,0.249979,0,0);-ms-transform:matrix(0.245814,0.003196,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.245814,0.003196,-0.003250,0.249979,0,0);}
.m11_c00474{transform:matrix(0.245827,0.001967,-0.002000,0.249992,0,0);-ms-transform:matrix(0.245827,0.001967,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.245827,0.001967,-0.002000,0.249992,0,0);}
.m46_c00474{transform:matrix(0.245835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245835,0.000000,0.000000,0.250000,0,0);}
.m6b_c00474{transform:matrix(0.246102,0.007137,-0.007247,0.249895,0,0);-ms-transform:matrix(0.246102,0.007137,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.246102,0.007137,-0.007247,0.249895,0,0);}
.m66_c00474{transform:matrix(0.246132,0.007138,-0.007247,0.249895,0,0);-ms-transform:matrix(0.246132,0.007138,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.246132,0.007138,-0.007247,0.249895,0,0);}
.m70_c00474{transform:matrix(0.247113,0.003954,-0.003999,0.249968,0,0);-ms-transform:matrix(0.247113,0.003954,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.247113,0.003954,-0.003999,0.249968,0,0);}
.mb0_c00474{transform:matrix(0.247295,0.005440,-0.005499,0.249940,0,0);-ms-transform:matrix(0.247295,0.005440,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.247295,0.005440,-0.005499,0.249940,0,0);}
.mb5_c00474{transform:matrix(0.247385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247385,0.000000,0.000000,0.250000,0,0);}
.m72_c00474{transform:matrix(0.247633,0.003962,-0.003999,0.249968,0,0);-ms-transform:matrix(0.247633,0.003962,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.247633,0.003962,-0.003999,0.249968,0,0);}
.m4c_c00474{transform:matrix(0.248105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248105,0.000000,0.000000,0.250000,0,0);}
.m78_c00474{transform:matrix(0.248168,0.003971,-0.003999,0.249968,0,0);-ms-transform:matrix(0.248168,0.003971,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.248168,0.003971,-0.003999,0.249968,0,0);}
.m90_c00474{transform:matrix(0.248432,0.006211,-0.006248,0.249922,0,0);-ms-transform:matrix(0.248432,0.006211,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.248432,0.006211,-0.006248,0.249922,0,0);}
.m52_c00474{transform:matrix(0.248825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248825,0.000000,0.000000,0.250000,0,0);}
.m73_c00474{transform:matrix(0.248843,0.003981,-0.003999,0.249968,0,0);-ms-transform:matrix(0.248843,0.003981,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.248843,0.003981,-0.003999,0.249968,0,0);}
.mad_c00474{transform:matrix(0.248973,0.005975,-0.005998,0.249928,0,0);-ms-transform:matrix(0.248973,0.005975,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.248973,0.005975,-0.005998,0.249928,0,0);}
.m41_c00474{transform:matrix(0.249405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249405,0.000000,0.000000,0.250000,0,0);}
.m7_c00474{transform:matrix(0.249603,0.002496,-0.002500,0.249988,0,0);-ms-transform:matrix(0.249603,0.002496,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.249603,0.002496,-0.002500,0.249988,0,0);}
.m1a_c00474{transform:matrix(0.249607,0.001997,-0.002000,0.249992,0,0);-ms-transform:matrix(0.249607,0.001997,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.249607,0.001997,-0.002000,0.249992,0,0);}
.m93_c00474{transform:matrix(0.249652,0.006241,-0.006248,0.249922,0,0);-ms-transform:matrix(0.249652,0.006241,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.249652,0.006241,-0.006248,0.249922,0,0);}
.m74_c00474{transform:matrix(0.249653,0.003994,-0.003999,0.249968,0,0);-ms-transform:matrix(0.249653,0.003994,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.249653,0.003994,-0.003999,0.249968,0,0);}
.mb3_c00474{transform:matrix(0.249975,0.005499,-0.005499,0.249940,0,0);-ms-transform:matrix(0.249975,0.005499,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.249975,0.005499,-0.005499,0.249940,0,0);}
.m8d_c00474{transform:matrix(0.250022,0.006251,-0.006248,0.249922,0,0);-ms-transform:matrix(0.250022,0.006251,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.250022,0.006251,-0.006248,0.249922,0,0);}
.m7e_c00474{transform:matrix(0.250472,0.003757,-0.003750,0.249972,0,0);-ms-transform:matrix(0.250472,0.003757,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.250472,0.003757,-0.003750,0.249972,0,0);}
.ma8_c00474{transform:matrix(0.251373,0.006033,-0.005998,0.249928,0,0);-ms-transform:matrix(0.251373,0.006033,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.251373,0.006033,-0.005998,0.249928,0,0);}
.m4e_c00474{transform:matrix(0.252480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252480,0.000000,0.000000,0.250000,0,0);}
.ma3_c00474{transform:matrix(0.252569,0.005557,-0.005499,0.249940,0,0);-ms-transform:matrix(0.252569,0.005557,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.252569,0.005557,-0.005499,0.249940,0,0);}
.maa_c00474{transform:matrix(0.252852,0.006068,-0.005998,0.249928,0,0);-ms-transform:matrix(0.252852,0.006068,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.252852,0.006068,-0.005998,0.249928,0,0);}
.m8f_c00474{transform:matrix(0.252881,0.006322,-0.006248,0.249922,0,0);-ms-transform:matrix(0.252881,0.006322,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.252881,0.006322,-0.006248,0.249922,0,0);}
.m80_c00474{transform:matrix(0.254411,0.003816,-0.003750,0.249972,0,0);-ms-transform:matrix(0.254411,0.003816,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.254411,0.003816,-0.003750,0.249972,0,0);}
.m18_c00474{transform:matrix(0.254972,0.002040,-0.002000,0.249992,0,0);-ms-transform:matrix(0.254972,0.002040,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.254972,0.002040,-0.002000,0.249992,0,0);}
.m6c_c00474{transform:matrix(0.255073,0.007397,-0.007247,0.249895,0,0);-ms-transform:matrix(0.255073,0.007397,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.255073,0.007397,-0.007247,0.249895,0,0);}
.ma1_c00474{transform:matrix(0.255163,0.005614,-0.005499,0.249940,0,0);-ms-transform:matrix(0.255163,0.005614,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.255163,0.005614,-0.005499,0.249940,0,0);}
.m3b_c00474{transform:matrix(0.255215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255215,0.000000,0.000000,0.250000,0,0);}
.m42_c00474{transform:matrix(0.256190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256190,0.000000,0.000000,0.250000,0,0);}
.m12_c00474{transform:matrix(0.256197,0.002050,-0.002000,0.249992,0,0);-ms-transform:matrix(0.256197,0.002050,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.256197,0.002050,-0.002000,0.249992,0,0);}
.md2_c00474{transform:matrix(0.256437,0.007437,-0.007247,0.249895,0,0);-ms-transform:matrix(0.256437,0.007437,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.256437,0.007437,-0.007247,0.249895,0,0);}
.m57_c00474{transform:matrix(0.256870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256870,0.000000,0.000000,0.250000,0,0);}
.m81_c00474{transform:matrix(0.257401,0.003861,-0.003750,0.249972,0,0);-ms-transform:matrix(0.257401,0.003861,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.257401,0.003861,-0.003750,0.249972,0,0);}
.m59_c00474{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m79_c00474{transform:matrix(0.258447,0.004135,-0.003999,0.249968,0,0);-ms-transform:matrix(0.258447,0.004135,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.258447,0.004135,-0.003999,0.249968,0,0);}
.m48_c00474{transform:matrix(0.261225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261225,0.000000,0.000000,0.250000,0,0);}
.m5a_c00474{transform:matrix(0.261265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261265,0.000000,0.000000,0.250000,0,0);}
.m3d_c00474{transform:matrix(0.261615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261615,0.000000,0.000000,0.250000,0,0);}
.mb1_c00474{transform:matrix(0.261657,0.005756,-0.005499,0.249940,0,0);-ms-transform:matrix(0.261657,0.005756,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.261657,0.005756,-0.005499,0.249940,0,0);}
.m36_c00474{transform:matrix(0.261875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261875,0.000000,0.000000,0.250000,0,0);}
.m14_c00474{transform:matrix(0.264812,0.002118,-0.002000,0.249992,0,0);-ms-transform:matrix(0.264812,0.002118,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.264812,0.002118,-0.002000,0.249992,0,0);}
.ma4_c00474{transform:matrix(0.264926,0.005828,-0.005499,0.249940,0,0);-ms-transform:matrix(0.264926,0.005828,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.264926,0.005828,-0.005499,0.249940,0,0);}
.m56_c00474{transform:matrix(0.264980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264980,0.000000,0.000000,0.250000,0,0);}
.m35_c00474{transform:matrix(0.265413,0.003450,-0.003250,0.249979,0,0);-ms-transform:matrix(0.265413,0.003450,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.265413,0.003450,-0.003250,0.249979,0,0);}
.m8_c00474{transform:matrix(0.265422,0.002654,-0.002500,0.249988,0,0);-ms-transform:matrix(0.265422,0.002654,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.265422,0.002654,-0.002500,0.249988,0,0);}
.m44_c00474{transform:matrix(0.266280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266280,0.000000,0.000000,0.250000,0,0);}
.m3a_c00474{transform:matrix(0.266740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266740,0.000000,0.000000,0.250000,0,0);}
.mac_c00474{transform:matrix(0.268338,0.006440,-0.005998,0.249928,0,0);-ms-transform:matrix(0.268338,0.006440,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.268338,0.006440,-0.005998,0.249928,0,0);}
.m5b_c00474{transform:matrix(0.268830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268830,0.000000,0.000000,0.250000,0,0);}
.m31_c00474{transform:matrix(0.269602,0.003505,-0.003250,0.249979,0,0);-ms-transform:matrix(0.269602,0.003505,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.269602,0.003505,-0.003250,0.249979,0,0);}
.m67_c00474{transform:matrix(0.269812,0.007825,-0.007247,0.249895,0,0);-ms-transform:matrix(0.269812,0.007825,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.269812,0.007825,-0.007247,0.249895,0,0);}
.ma9_c00474{transform:matrix(0.270137,0.006483,-0.005998,0.249928,0,0);-ms-transform:matrix(0.270137,0.006483,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.270137,0.006483,-0.005998,0.249928,0,0);}
.ma_c00474{transform:matrix(0.270186,0.002702,-0.002500,0.249988,0,0);-ms-transform:matrix(0.270186,0.002702,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.270186,0.002702,-0.002500,0.249988,0,0);}
.m54_c00474{transform:matrix(0.271030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271030,0.000000,0.000000,0.250000,0,0);}
.m51_c00474{transform:matrix(0.271170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271170,0.000000,0.000000,0.250000,0,0);}
.m2d_c00474{transform:matrix(0.271657,0.003532,-0.003250,0.249979,0,0);-ms-transform:matrix(0.271657,0.003532,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.271657,0.003532,-0.003250,0.249979,0,0);}
.m38_c00474{transform:matrix(0.272170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272170,0.000000,0.000000,0.250000,0,0);}
.ma6_c00474{transform:matrix(0.272192,0.006533,-0.005998,0.249928,0,0);-ms-transform:matrix(0.272192,0.006533,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.272192,0.006533,-0.005998,0.249928,0,0);}
.m16_c00474{transform:matrix(0.272351,0.002179,-0.002000,0.249992,0,0);-ms-transform:matrix(0.272351,0.002179,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.272351,0.002179,-0.002000,0.249992,0,0);}
.m2f_c00474{transform:matrix(0.272722,0.003545,-0.003250,0.249979,0,0);-ms-transform:matrix(0.272722,0.003545,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.272722,0.003545,-0.003250,0.249979,0,0);}
.mae_c00474{transform:matrix(0.274196,0.006581,-0.005998,0.249928,0,0);-ms-transform:matrix(0.274196,0.006581,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.274196,0.006581,-0.005998,0.249928,0,0);}
.m60_c00474{transform:matrix(0.275240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275240,0.000000,0.000000,0.250000,0,0);}
.m61_c00474{transform:matrix(0.276440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276440,0.000000,0.000000,0.250000,0,0);}
.m4b_c00474{transform:matrix(0.276820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276820,0.000000,0.000000,0.250000,0,0);}
.mc_c00474{transform:matrix(0.276911,0.002769,-0.002500,0.249988,0,0);-ms-transform:matrix(0.276911,0.002769,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.276911,0.002769,-0.002500,0.249988,0,0);}
.m55_c00474{transform:matrix(0.277070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277070,0.000000,0.000000,0.250000,0,0);}
.m3e_c00474{transform:matrix(0.277365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277365,0.000000,0.000000,0.250000,0,0);}
.m6f_c00474{transform:matrix(0.280062,0.008122,-0.007247,0.249895,0,0);-ms-transform:matrix(0.280062,0.008122,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.280062,0.008122,-0.007247,0.249895,0,0);}
.m63_c00474{transform:matrix(0.280695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280695,0.000000,0.000000,0.250000,0,0);}
.m4f_c00474{transform:matrix(0.281070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281070,0.000000,0.000000,0.250000,0,0);}
.m15_c00474{transform:matrix(0.282116,0.002257,-0.002000,0.249992,0,0);-ms-transform:matrix(0.282116,0.002257,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.282116,0.002257,-0.002000,0.249992,0,0);}
.m47_c00474{transform:matrix(0.282775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282775,0.000000,0.000000,0.250000,0,0);}
.m4_c00474{transform:matrix(0.283186,0.002832,-0.002500,0.249988,0,0);-ms-transform:matrix(0.283186,0.002832,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.283186,0.002832,-0.002500,0.249988,0,0);}
.m30_c00474{transform:matrix(0.283906,0.003691,-0.003250,0.249979,0,0);-ms-transform:matrix(0.283906,0.003691,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.283906,0.003691,-0.003250,0.249979,0,0);}
.m28_c00474{transform:matrix(0.284605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284605,0.000000,0.000000,0.250000,0,0);}
.m17_c00474{transform:matrix(0.284641,0.002277,-0.002000,0.249992,0,0);-ms-transform:matrix(0.284641,0.002277,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.284641,0.002277,-0.002000,0.249992,0,0);}
.m3_c00474{transform:matrix(0.284920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284920,0.000000,0.000000,0.250000,0,0);}
.mb2_c00474{transform:matrix(0.286346,0.006300,-0.005499,0.249940,0,0);-ms-transform:matrix(0.286346,0.006300,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.286346,0.006300,-0.005499,0.249940,0,0);}
.ma5_c00474{transform:matrix(0.286416,0.006301,-0.005499,0.249940,0,0);-ms-transform:matrix(0.286416,0.006301,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.286416,0.006301,-0.005499,0.249940,0,0);}
.m33_c00474{transform:matrix(0.287731,0.003740,-0.003250,0.249979,0,0);-ms-transform:matrix(0.287731,0.003740,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.287731,0.003740,-0.003250,0.249979,0,0);}
.m2e_c00474{transform:matrix(0.289621,0.003765,-0.003250,0.249979,0,0);-ms-transform:matrix(0.289621,0.003765,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.289621,0.003765,-0.003250,0.249979,0,0);}
.m5_c00474{transform:matrix(0.290690,0.002907,-0.002500,0.249988,0,0);-ms-transform:matrix(0.290690,0.002907,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.290690,0.002907,-0.002500,0.249988,0,0);}
.m4d_c00474{transform:matrix(0.292195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292195,0.000000,0.000000,0.250000,0,0);}
.m50_c00474{transform:matrix(0.293460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293460,0.000000,0.000000,0.250000,0,0);}
.m10_c00474{transform:matrix(0.294271,0.002354,-0.002000,0.249992,0,0);-ms-transform:matrix(0.294271,0.002354,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.294271,0.002354,-0.002000,0.249992,0,0);}
.m62_c00474{transform:matrix(0.294465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294465,0.000000,0.000000,0.250000,0,0);}
.m32_c00474{transform:matrix(0.295345,0.003839,-0.003250,0.249979,0,0);-ms-transform:matrix(0.295345,0.003839,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.295345,0.003839,-0.003250,0.249979,0,0);}
.mb4_c00474{transform:matrix(0.296068,0.006514,-0.005499,0.249940,0,0);-ms-transform:matrix(0.296068,0.006514,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.296068,0.006514,-0.005499,0.249940,0,0);}
.m45_c00474{transform:matrix(0.298530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298530,0.000000,0.000000,0.250000,0,0);}
.m4a_c00474{transform:matrix(0.298745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298745,0.000000,0.000000,0.250000,0,0);}
.m19_c00474{transform:matrix(0.298950,0.002392,-0.002000,0.249992,0,0);-ms-transform:matrix(0.298950,0.002392,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.298950,0.002392,-0.002000,0.249992,0,0);}
.md_c00474{transform:matrix(0.301190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301190,0.000000,0.000000,0.250000,0,0);}
.m2b_c00474{transform:matrix(0.302779,0.003936,-0.003250,0.249979,0,0);-ms-transform:matrix(0.302779,0.003936,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.302779,0.003936,-0.003250,0.249979,0,0);}
.m49_c00474{transform:matrix(0.304240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304240,0.000000,0.000000,0.250000,0,0);}
.mb_c00474{transform:matrix(0.305265,0.003053,-0.002500,0.249988,0,0);-ms-transform:matrix(0.305265,0.003053,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.305265,0.003053,-0.002500,0.249988,0,0);}
.m6_c00474{transform:matrix(0.305625,0.003056,-0.002500,0.249988,0,0);-ms-transform:matrix(0.305625,0.003056,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.305625,0.003056,-0.002500,0.249988,0,0);}
.m9_c00474{transform:matrix(0.306655,0.003067,-0.002500,0.249988,0,0);-ms-transform:matrix(0.306655,0.003067,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.306655,0.003067,-0.002500,0.249988,0,0);}
.m13_c00474{transform:matrix(0.307050,0.002456,-0.002000,0.249992,0,0);-ms-transform:matrix(0.307050,0.002456,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.307050,0.002456,-0.002000,0.249992,0,0);}
.me0_c00474{transform:matrix(0.328266,0.014130,-0.010751,0.249769,0,0);-ms-transform:matrix(0.328266,0.014130,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.328266,0.014130,-0.010751,0.249769,0,0);}
.me1_c00474{transform:matrix(0.329954,0.014202,-0.010751,0.249769,0,0);-ms-transform:matrix(0.329954,0.014202,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.329954,0.014202,-0.010751,0.249769,0,0);}
.me2_c00474{transform:matrix(0.360316,0.015509,-0.010751,0.249769,0,0);-ms-transform:matrix(0.360316,0.015509,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.360316,0.015509,-0.010751,0.249769,0,0);}
.me3_c00474{transform:matrix(0.368779,0.015873,-0.010751,0.249769,0,0);-ms-transform:matrix(0.368779,0.015873,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.368779,0.015873,-0.010751,0.249769,0,0);}
.m64_c00474{transform:matrix(0.441165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441165,0.000000,0.000000,0.250000,0,0);}
.mc3_c00474{transform:matrix(0.455044,0.010921,-0.005998,0.249928,0,0);-ms-transform:matrix(0.455044,0.010921,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.455044,0.010921,-0.005998,0.249928,0,0);}
.m9e_c00474{transform:matrix(0.520815,0.012500,-0.005998,0.249928,0,0);-ms-transform:matrix(0.520815,0.012500,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.520815,0.012500,-0.005998,0.249928,0,0);}
.ma0_c00474{transform:matrix(0.571021,0.013704,-0.005998,0.249928,0,0);-ms-transform:matrix(0.571021,0.013704,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.571021,0.013704,-0.005998,0.249928,0,0);}
.m9f_c00474{transform:matrix(0.582927,0.013990,-0.005998,0.249928,0,0);-ms-transform:matrix(0.582927,0.013990,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.582927,0.013990,-0.005998,0.249928,0,0);}
.mcf_c00474{transform:matrix(0.732796,0.024940,-0.008504,0.249855,0,0);-ms-transform:matrix(0.732796,0.024940,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.732796,0.024940,-0.008504,0.249855,0,0);}
.m29_c00474{transform:matrix(0.865885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.865885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.865885,0.000000,0.000000,0.250000,0,0);}
.m9d_c00474{transform:matrix(0.874393,0.020985,-0.005998,0.249928,0,0);-ms-transform:matrix(0.874393,0.020985,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.874393,0.020985,-0.005998,0.249928,0,0);}
.mce_c00474{transform:matrix(1.090679,0.037120,-0.008504,0.249855,0,0);-ms-transform:matrix(1.090679,0.037120,-0.008504,0.249855,0,0);-webkit-transform:matrix(1.090679,0.037120,-0.008504,0.249855,0,0);}
.mc2_c00474{transform:matrix(1.887611,0.045303,-0.005998,0.249928,0,0);-ms-transform:matrix(1.887611,0.045303,-0.005998,0.249928,0,0);-webkit-transform:matrix(1.887611,0.045303,-0.005998,0.249928,0,0);}
.m9c_c00474{transform:matrix(4.784537,0.114829,-0.005998,0.249928,0,0);-ms-transform:matrix(4.784537,0.114829,-0.005998,0.249928,0,0);-webkit-transform:matrix(4.784537,0.114829,-0.005998,0.249928,0,0);}
.mc1_c00474{transform:matrix(5.980453,0.143531,-0.005998,0.249928,0,0);-ms-transform:matrix(5.980453,0.143531,-0.005998,0.249928,0,0);-webkit-transform:matrix(5.980453,0.143531,-0.005998,0.249928,0,0);}
.mcd_c00474{transform:matrix(7.196528,0.244927,-0.008504,0.249855,0,0);-ms-transform:matrix(7.196528,0.244927,-0.008504,0.249855,0,0);-webkit-transform:matrix(7.196528,0.244927,-0.008504,0.249855,0,0);}
.v0_c00474{vertical-align:0.000000px;}
.ls0_c00474{letter-spacing:0.000000px;}
.sc__c00474{text-shadow:none;}
.sc0_c00474{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__c00474{-webkit-text-stroke:0px transparent;}
.sc0_c00474{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00474{word-spacing:0.000000px;}
.fc0_c00474{color:transparent;}
.fs0_c00474{font-size:18.000000px;}
.fs18_c00474{font-size:23.989882px;}
.fs7_c00474{font-size:24.000000px;}
.fs16_c00474{font-size:24.006911px;}
.fs6_c00474{font-size:30.000000px;}
.fs10_c00474{font-size:36.010367px;}
.fs1c_c00474{font-size:59.995500px;}
.fs3_c00474{font-size:66.000000px;}
.fs4_c00474{font-size:66.002112px;}
.fs2_c00474{font-size:66.003300px;}
.fs8_c00474{font-size:66.005577px;}
.fs13_c00474{font-size:66.015970px;}
.fs9_c00474{font-size:72.000000px;}
.fs11_c00474{font-size:72.017422px;}
.fs12_c00474{font-size:72.020733px;}
.fsa_c00474{font-size:72.030270px;}
.fs14_c00474{font-size:78.000000px;}
.fsc_c00474{font-size:78.008775px;}
.fsb_c00474{font-size:78.009983px;}
.fse_c00474{font-size:78.024371px;}
.fs19_c00474{font-size:78.032792px;}
.fs17_c00474{font-size:83.964587px;}
.fs1d_c00474{font-size:83.993700px;}
.fs5_c00474{font-size:84.000000px;}
.fsd_c00474{font-size:84.009449px;}
.fs1b_c00474{font-size:84.016798px;}
.fs15_c00474{font-size:84.024189px;}
.fsf_c00474{font-size:90.025916px;}
.fs1a_c00474{font-size:95.973356px;}
.fs1_c00474{font-size:126.000000px;}
.y0_c00474{bottom:0.000000px;}
.yd4_c00474{bottom:63.780605px;}
.yd3_c00474{bottom:65.120103px;}
.yd2_c00474{bottom:66.438783px;}
.yd1_c00474{bottom:68.610555px;}
.yd0_c00474{bottom:87.904140px;}
.ycf_c00474{bottom:89.431500px;}
.yce_c00474{bottom:93.670376px;}
.ycd_c00474{bottom:97.494000px;}
.ycc_c00474{bottom:97.497660px;}
.ycb_c00474{bottom:99.311580px;}
.yca_c00474{bottom:101.510550px;}
.yc9_c00474{bottom:102.147630px;}
.yc8_c00474{bottom:103.686000px;}
.yc7_c00474{bottom:125.236497px;}
.yc6_c00474{bottom:127.306338px;}
.yc5_c00474{bottom:129.861990px;}
.yc4_c00474{bottom:134.011419px;}
.yc3_c00474{bottom:135.725922px;}
.yc2_c00474{bottom:136.977528px;}
.yc1_c00474{bottom:141.173583px;}
.yc0_c00474{bottom:143.652000px;}
.ybf_c00474{bottom:172.980783px;}
.ybe_c00474{bottom:174.200480px;}
.ybd_c00474{bottom:175.242000px;}
.ybc_c00474{bottom:192.861217px;}
.yb9_c00474{bottom:193.525290px;}
.ybb_c00474{bottom:193.801212px;}
.yb8_c00474{bottom:196.564278px;}
.yb7_c00474{bottom:197.709228px;}
.yba_c00474{bottom:202.264553px;}
.yb6_c00474{bottom:202.628943px;}
.yb5_c00474{bottom:207.452217px;}
.yb4_c00474{bottom:208.975842px;}
.yb3_c00474{bottom:211.253043px;}
.yb2_c00474{bottom:212.372340px;}
.yb1_c00474{bottom:214.930500px;}
.yb0_c00474{bottom:235.425072px;}
.yae_c00474{bottom:235.425168px;}
.yaf_c00474{bottom:235.425240px;}
.yad_c00474{bottom:236.179080px;}
.yac_c00474{bottom:236.976984px;}
.yab_c00474{bottom:237.512952px;}
.yaa_c00474{bottom:240.678792px;}
.ya9_c00474{bottom:241.741368px;}
.ya8_c00474{bottom:243.348732px;}
.ya7_c00474{bottom:245.979000px;}
.ya6_c00474{bottom:280.564500px;}
.ya5_c00474{bottom:313.379166px;}
.ya4_c00474{bottom:314.091405px;}
.ya3_c00474{bottom:315.571686px;}
.ya2_c00474{bottom:316.273233px;}
.ya1_c00474{bottom:316.986000px;}
.ya0_c00474{bottom:336.934056px;}
.y9f_c00474{bottom:338.555028px;}
.y9e_c00474{bottom:339.628008px;}
.y9d_c00474{bottom:341.211468px;}
.y9c_c00474{bottom:342.035904px;}
.y9b_c00474{bottom:343.617492px;}
.y9a_c00474{bottom:345.484740px;}
.y99_c00474{bottom:347.034720px;}
.y98_c00474{bottom:349.191768px;}
.y97_c00474{bottom:352.087500px;}
.y1e_c00474{bottom:352.620000px;}
.y96_c00474{bottom:382.368264px;}
.y95_c00474{bottom:383.835873px;}
.y94_c00474{bottom:384.774690px;}
.y93_c00474{bottom:385.498941px;}
.y92_c00474{bottom:387.186000px;}
.y91_c00474{bottom:404.828004px;}
.y90_c00474{bottom:405.941880px;}
.y8f_c00474{bottom:406.347072px;}
.y8e_c00474{bottom:407.527212px;}
.y8c_c00474{bottom:411.197928px;}
.y8d_c00474{bottom:412.290504px;}
.y8b_c00474{bottom:414.167712px;}
.y8a_c00474{bottom:414.965616px;}
.y89_c00474{bottom:415.769064px;}
.y88_c00474{bottom:418.382700px;}
.y1d_c00474{bottom:419.850000px;}
.y87_c00474{bottom:421.323612px;}
.y86_c00474{bottom:423.688740px;}
.y85_c00474{bottom:425.256000px;}
.y84_c00474{bottom:448.246612px;}
.y83_c00474{bottom:449.104613px;}
.y82_c00474{bottom:449.921625px;}
.y81_c00474{bottom:451.860300px;}
.y80_c00474{bottom:454.094025px;}
.y7f_c00474{bottom:454.891275px;}
.y7e_c00474{bottom:456.814763px;}
.y7d_c00474{bottom:457.645762px;}
.y7c_c00474{bottom:458.469000px;}
.y7b_c00474{bottom:485.920050px;}
.y7a_c00474{bottom:486.480015px;}
.y79_c00474{bottom:486.858240px;}
.y78_c00474{bottom:488.174640px;}
.y77_c00474{bottom:490.038593px;}
.y76_c00474{bottom:491.181817px;}
.y75_c00474{bottom:493.233892px;}
.y74_c00474{bottom:493.789808px;}
.y73_c00474{bottom:494.909648px;}
.y72_c00474{bottom:525.819630px;}
.y71_c00474{bottom:527.452207px;}
.y70_c00474{bottom:528.132540px;}
.y6f_c00474{bottom:529.461210px;}
.y6e_c00474{bottom:530.599080px;}
.y6d_c00474{bottom:531.093000px;}
.y6c_c00474{bottom:563.769432px;}
.y6b_c00474{bottom:564.552000px;}
.y6a_c00474{bottom:566.728932px;}
.y69_c00474{bottom:591.567312px;}
.y68_c00474{bottom:592.107864px;}
.y67_c00474{bottom:592.630584px;}
.y66_c00474{bottom:593.711064px;}
.y65_c00474{bottom:595.275528px;}
.y64_c00474{bottom:597.050880px;}
.y63_c00474{bottom:598.805136px;}
.y62_c00474{bottom:599.340744px;}
.y61_c00474{bottom:600.753000px;}
.y60_c00474{bottom:630.202546px;}
.y5f_c00474{bottom:631.190301px;}
.y5e_c00474{bottom:631.837407px;}
.y5d_c00474{bottom:634.056212px;}
.y5c_c00474{bottom:635.316537px;}
.y5b_c00474{bottom:636.522183px;}
.y5a_c00474{bottom:637.553394px;}
.y59_c00474{bottom:638.738290px;}
.y58_c00474{bottom:641.368648px;}
.y57_c00474{bottom:643.293132px;}
.y56_c00474{bottom:643.681500px;}
.y54_c00474{bottom:670.399500px;}
.y55_c00474{bottom:697.003500px;}
.y53_c00474{bottom:698.682000px;}
.y52_c00474{bottom:699.159000px;}
.y51_c00474{bottom:699.619500px;}
.y50_c00474{bottom:700.243500px;}
.y4f_c00474{bottom:700.824000px;}
.y4e_c00474{bottom:702.076500px;}
.y4d_c00474{bottom:703.327500px;}
.y4c_c00474{bottom:704.404500px;}
.y4b_c00474{bottom:704.869500px;}
.y4a_c00474{bottom:705.784500px;}
.y49_c00474{bottom:740.478000px;}
.y48_c00474{bottom:740.953500px;}
.y47_c00474{bottom:742.503000px;}
.y46_c00474{bottom:769.845000px;}
.y45_c00474{bottom:770.322000px;}
.y44_c00474{bottom:770.709000px;}
.y43_c00474{bottom:771.817500px;}
.y42_c00474{bottom:772.893000px;}
.y41_c00474{bottom:773.757000px;}
.y40_c00474{bottom:774.241500px;}
.y3f_c00474{bottom:775.444500px;}
.y3e_c00474{bottom:775.809000px;}
.y3d_c00474{bottom:776.521500px;}
.y3c_c00474{bottom:809.278500px;}
.y3b_c00474{bottom:810.112500px;}
.y3a_c00474{bottom:810.816000px;}
.y39_c00474{bottom:811.426500px;}
.y38_c00474{bottom:811.663500px;}
.y37_c00474{bottom:812.433000px;}
.y36_c00474{bottom:847.942500px;}
.y35_c00474{bottom:878.359500px;}
.y34_c00474{bottom:878.658000px;}
.y33_c00474{bottom:878.956500px;}
.y32_c00474{bottom:879.955500px;}
.y31_c00474{bottom:880.650000px;}
.y30_c00474{bottom:880.834500px;}
.y2f_c00474{bottom:881.544000px;}
.y2e_c00474{bottom:882.433500px;}
.y2d_c00474{bottom:882.724500px;}
.y2c_c00474{bottom:883.711500px;}
.y2b_c00474{bottom:918.942000px;}
.y2a_c00474{bottom:948.936694px;}
.y29_c00474{bottom:949.382386px;}
.y28_c00474{bottom:950.259438px;}
.y27_c00474{bottom:950.550826px;}
.y26_c00474{bottom:951.253353px;}
.y25_c00474{bottom:951.551176px;}
.y24_c00474{bottom:952.257271px;}
.y23_c00474{bottom:952.558702px;}
.y22_c00474{bottom:953.261229px;}
.y21_c00474{bottom:953.559150px;}
.y20_c00474{bottom:954.847807px;}
.y1f_c00474{bottom:955.261500px;}
.y1c_c00474{bottom:984.222000px;}
.y1b_c00474{bottom:1024.782000px;}
.y1a_c00474{bottom:1054.868016px;}
.y19_c00474{bottom:1055.134200px;}
.y18_c00474{bottom:1055.847012px;}
.y17_c00474{bottom:1056.112764px;}
.y16_c00474{bottom:1056.559920px;}
.y15_c00474{bottom:1056.914196px;}
.y14_c00474{bottom:1057.264140px;}
.y13_c00474{bottom:1057.616256px;}
.y12_c00474{bottom:1058.588280px;}
.y11_c00474{bottom:1058.858100px;}
.y10_c00474{bottom:1059.113160px;}
.yf_c00474{bottom:1059.897192px;}
.ye_c00474{bottom:1060.229220px;}
.yd_c00474{bottom:1060.560000px;}
.yc_c00474{bottom:1095.951000px;}
.yb_c00474{bottom:1125.520980px;}
.ya_c00474{bottom:1126.528185px;}
.y9_c00474{bottom:1126.962915px;}
.y8_c00474{bottom:1128.596415px;}
.y7_c00474{bottom:1129.063845px;}
.y6_c00474{bottom:1129.390530px;}
.y5_c00474{bottom:1130.394930px;}
.y4_c00474{bottom:1131.347715px;}
.y3_c00474{bottom:1132.111500px;}
.y1_c00474{bottom:1176.930000px;}
.y2_c00474{bottom:1204.336500px;}
.h2_c00474{height:18.000000px;}
.h1a_c00474{height:23.989882px;}
.h9_c00474{height:24.000000px;}
.h18_c00474{height:24.006911px;}
.h8_c00474{height:30.000000px;}
.h12_c00474{height:36.010367px;}
.h1e_c00474{height:59.995500px;}
.h5_c00474{height:66.000000px;}
.h6_c00474{height:66.002112px;}
.h4_c00474{height:66.003300px;}
.ha_c00474{height:66.005577px;}
.h15_c00474{height:66.015970px;}
.hb_c00474{height:72.000000px;}
.h13_c00474{height:72.017422px;}
.h14_c00474{height:72.020733px;}
.hc_c00474{height:72.030270px;}
.h16_c00474{height:78.000000px;}
.he_c00474{height:78.008775px;}
.hd_c00474{height:78.009983px;}
.h10_c00474{height:78.024371px;}
.h1b_c00474{height:78.032792px;}
.h19_c00474{height:83.964587px;}
.h1f_c00474{height:83.993700px;}
.h7_c00474{height:84.000000px;}
.hf_c00474{height:84.009449px;}
.h1d_c00474{height:84.016798px;}
.h17_c00474{height:84.024189px;}
.h11_c00474{height:90.025916px;}
.h1c_c00474{height:95.973356px;}
.h3_c00474{height:126.000000px;}
.h0_c00474{height:1246.320000px;}
.h1_c00474{height:1246.500000px;}
.w0_c00474{width:896.100000px;}
.w1_c00474{width:896.250000px;}
.x0_c00474{left:0.000000px;}
.x1_c00474{left:2.160000px;}
.x1a_c00474{left:127.710000px;}
.x3_c00474{left:129.243000px;}
.xd_c00474{left:132.498000px;}
.xe_c00474{left:173.845500px;}
.x20_c00474{left:183.870000px;}
.x4_c00474{left:205.621500px;}
.x58_c00474{left:208.980000px;}
.x3e_c00474{left:211.887000px;}
.x53_c00474{left:212.976000px;}
.x31_c00474{left:214.279500px;}
.xf_c00474{left:215.349000px;}
.x43_c00474{left:224.419500px;}
.x2a_c00474{left:226.134000px;}
.x48_c00474{left:247.126500px;}
.x34_c00474{left:279.820500px;}
.x5b_c00474{left:289.790760px;}
.x3f_c00474{left:291.640500px;}
.x5_c00474{left:300.900000px;}
.x10_c00474{left:313.353000px;}
.x59_c00474{left:322.545000px;}
.xc_c00474{left:323.730000px;}
.x28_c00474{left:325.620000px;}
.x54_c00474{left:333.631500px;}
.x1b_c00474{left:335.340000px;}
.x11_c00474{left:345.235500px;}
.x21_c00474{left:356.502000px;}
.x32_c00474{left:357.913500px;}
.x5e_c00474{left:358.975500px;}
.x2b_c00474{left:368.145000px;}
.x12_c00474{left:378.963000px;}
.x40_c00474{left:382.342500px;}
.x57_c00474{left:388.260000px;}
.x3a_c00474{left:389.652000px;}
.x6_c00474{left:401.340000px;}
.x63_c00474{left:411.208446px;}
.x30_c00474{left:412.290000px;}
.x29_c00474{left:413.640000px;}
.x35_c00474{left:422.371500px;}
.x55_c00474{left:423.508500px;}
.x5f_c00474{left:432.567000px;}
.x7_c00474{left:434.008500px;}
.x5c_c00474{left:441.183594px;}
.x2_c00474{left:444.960000px;}
.x22_c00474{left:455.629500px;}
.x49_c00474{left:456.918000px;}
.x41_c00474{left:458.760000px;}
.x2c_c00474{left:466.959000px;}
.x5a_c00474{left:474.465900px;}
.x51_c00474{left:476.257500px;}
.x23_c00474{left:478.546500px;}
.x8_c00474{left:480.751500px;}
.x47_c00474{left:487.680792px;}
.x4a_c00474{left:498.661500px;}
.x13_c00474{left:500.466000px;}
.x4d_c00474{left:508.616376px;}
.x60_c00474{left:523.263000px;}
.x24_c00474{left:532.587000px;}
.x52_c00474{left:542.967000px;}
.x14_c00474{left:544.480500px;}
.x2d_c00474{left:545.805000px;}
.x25_c00474{left:555.774000px;}
.x2e_c00474{left:566.328000px;}
.x3b_c00474{left:568.512000px;}
.x1c_c00474{left:575.910000px;}
.x15_c00474{left:588.223500px;}
.x26_c00474{left:610.089000px;}
.x1d_c00474{left:621.270000px;}
.x16_c00474{left:632.508000px;}
.x36_c00474{left:642.700500px;}
.x9_c00474{left:644.101500px;}
.x3c_c00474{left:654.522000px;}
.x33_c00474{left:664.642500px;}
.x56_c00474{left:666.144000px;}
.x42_c00474{left:676.678500px;}
.xa_c00474{left:687.574500px;}
.x4b_c00474{left:698.238000px;}
.x1e_c00474{left:709.560000px;}
.x61_c00474{left:719.994000px;}
.x17_c00474{left:721.621500px;}
.x5d_c00474{left:722.960874px;}
.x44_c00474{left:732.070500px;}
.x37_c00474{left:743.449500px;}
.x4e_c00474{left:746.378688px;}
.x1f_c00474{left:754.380000px;}
.x62_c00474{left:755.478480px;}
.x4f_c00474{left:762.573792px;}
.x45_c00474{left:764.740500px;}
.x27_c00474{left:776.919000px;}
.x38_c00474{left:778.623000px;}
.xb_c00474{left:788.295000px;}
.x46_c00474{left:798.525000px;}
.x4c_c00474{left:800.157000px;}
.x50_c00474{left:807.109212px;}
.x18_c00474{left:810.723000px;}
.x2f_c00474{left:820.947000px;}
.x39_c00474{left:821.992500px;}
.x19_c00474{left:843.996000px;}
.x3d_c00474{left:846.450000px;}
@media print{
.v0_c00474{vertical-align:0.000000pt;}
.ls0_c00474{letter-spacing:0.000000pt;}
.ws0_c00474{word-spacing:0.000000pt;}
.fs0_c00474{font-size:16.000000pt;}
.fs18_c00474{font-size:21.324339pt;}
.fs7_c00474{font-size:21.333333pt;}
.fs16_c00474{font-size:21.339476pt;}
.fs6_c00474{font-size:26.666667pt;}
.fs10_c00474{font-size:32.009215pt;}
.fs1c_c00474{font-size:53.329333pt;}
.fs3_c00474{font-size:58.666667pt;}
.fs4_c00474{font-size:58.668544pt;}
.fs2_c00474{font-size:58.669600pt;}
.fs8_c00474{font-size:58.671624pt;}
.fs13_c00474{font-size:58.680862pt;}
.fs9_c00474{font-size:64.000000pt;}
.fs11_c00474{font-size:64.015486pt;}
.fs12_c00474{font-size:64.018429pt;}
.fsa_c00474{font-size:64.026906pt;}
.fs14_c00474{font-size:69.333333pt;}
.fsc_c00474{font-size:69.341133pt;}
.fsb_c00474{font-size:69.342207pt;}
.fse_c00474{font-size:69.354997pt;}
.fs19_c00474{font-size:69.362482pt;}
.fs17_c00474{font-size:74.635188pt;}
.fs1d_c00474{font-size:74.661066pt;}
.fs5_c00474{font-size:74.666667pt;}
.fsd_c00474{font-size:74.675066pt;}
.fs1b_c00474{font-size:74.681599pt;}
.fs15_c00474{font-size:74.688168pt;}
.fsf_c00474{font-size:80.023037pt;}
.fs1a_c00474{font-size:85.309650pt;}
.fs1_c00474{font-size:112.000000pt;}
.y0_c00474{bottom:0.000000pt;}
.yd4_c00474{bottom:56.693871pt;}
.yd3_c00474{bottom:57.884536pt;}
.yd2_c00474{bottom:59.056696pt;}
.yd1_c00474{bottom:60.987160pt;}
.yd0_c00474{bottom:78.137013pt;}
.ycf_c00474{bottom:79.494667pt;}
.yce_c00474{bottom:83.262556pt;}
.ycd_c00474{bottom:86.661333pt;}
.ycc_c00474{bottom:86.664587pt;}
.ycb_c00474{bottom:88.276960pt;}
.yca_c00474{bottom:90.231600pt;}
.yc9_c00474{bottom:90.797893pt;}
.yc8_c00474{bottom:92.165333pt;}
.yc7_c00474{bottom:111.321331pt;}
.yc6_c00474{bottom:113.161189pt;}
.yc5_c00474{bottom:115.432880pt;}
.yc4_c00474{bottom:119.121261pt;}
.yc3_c00474{bottom:120.645264pt;}
.yc2_c00474{bottom:121.757803pt;}
.yc1_c00474{bottom:125.487629pt;}
.yc0_c00474{bottom:127.690667pt;}
.ybf_c00474{bottom:153.760696pt;}
.ybe_c00474{bottom:154.844871pt;}
.ybd_c00474{bottom:155.770667pt;}
.ybc_c00474{bottom:171.432193pt;}
.yb9_c00474{bottom:172.022480pt;}
.ybb_c00474{bottom:172.267744pt;}
.yb8_c00474{bottom:174.723803pt;}
.yb7_c00474{bottom:175.741536pt;}
.yba_c00474{bottom:179.790713pt;}
.yb6_c00474{bottom:180.114616pt;}
.yb5_c00474{bottom:184.401971pt;}
.yb4_c00474{bottom:185.756304pt;}
.yb3_c00474{bottom:187.780483pt;}
.yb2_c00474{bottom:188.775413pt;}
.yb1_c00474{bottom:191.049333pt;}
.yb0_c00474{bottom:209.266731pt;}
.yae_c00474{bottom:209.266816pt;}
.yaf_c00474{bottom:209.266880pt;}
.yad_c00474{bottom:209.936960pt;}
.yac_c00474{bottom:210.646208pt;}
.yab_c00474{bottom:211.122624pt;}
.yaa_c00474{bottom:213.936704pt;}
.ya9_c00474{bottom:214.881216pt;}
.ya8_c00474{bottom:216.309984pt;}
.ya7_c00474{bottom:218.648000pt;}
.ya6_c00474{bottom:249.390667pt;}
.ya5_c00474{bottom:278.559259pt;}
.ya4_c00474{bottom:279.192360pt;}
.ya3_c00474{bottom:280.508165pt;}
.ya2_c00474{bottom:281.131763pt;}
.ya1_c00474{bottom:281.765333pt;}
.ya0_c00474{bottom:299.496939pt;}
.y9f_c00474{bottom:300.937803pt;}
.y9e_c00474{bottom:301.891563pt;}
.y9d_c00474{bottom:303.299083pt;}
.y9c_c00474{bottom:304.031915pt;}
.y9b_c00474{bottom:305.437771pt;}
.y9a_c00474{bottom:307.097547pt;}
.y99_c00474{bottom:308.475307pt;}
.y98_c00474{bottom:310.392683pt;}
.y97_c00474{bottom:312.966667pt;}
.y1e_c00474{bottom:313.440000pt;}
.y96_c00474{bottom:339.882901pt;}
.y95_c00474{bottom:341.187443pt;}
.y94_c00474{bottom:342.021947pt;}
.y93_c00474{bottom:342.665725pt;}
.y92_c00474{bottom:344.165333pt;}
.y91_c00474{bottom:359.847115pt;}
.y90_c00474{bottom:360.837227pt;}
.y8f_c00474{bottom:361.197397pt;}
.y8e_c00474{bottom:362.246411pt;}
.y8c_c00474{bottom:365.509269pt;}
.y8d_c00474{bottom:366.480448pt;}
.y8b_c00474{bottom:368.149077pt;}
.y8a_c00474{bottom:368.858325pt;}
.y89_c00474{bottom:369.572501pt;}
.y88_c00474{bottom:371.895733pt;}
.y1d_c00474{bottom:373.200000pt;}
.y87_c00474{bottom:374.509877pt;}
.y86_c00474{bottom:376.612213pt;}
.y85_c00474{bottom:378.005333pt;}
.y84_c00474{bottom:398.441433pt;}
.y83_c00474{bottom:399.204100pt;}
.y82_c00474{bottom:399.930333pt;}
.y81_c00474{bottom:401.653600pt;}
.y80_c00474{bottom:403.639133pt;}
.y7f_c00474{bottom:404.347800pt;}
.y7e_c00474{bottom:406.057567pt;}
.y7d_c00474{bottom:406.796233pt;}
.y7c_c00474{bottom:407.528000pt;}
.y7b_c00474{bottom:431.928933pt;}
.y7a_c00474{bottom:432.426680pt;}
.y79_c00474{bottom:432.762880pt;}
.y78_c00474{bottom:433.933013pt;}
.y77_c00474{bottom:435.589860pt;}
.y76_c00474{bottom:436.606060pt;}
.y75_c00474{bottom:438.430127pt;}
.y74_c00474{bottom:438.924273pt;}
.y73_c00474{bottom:439.919687pt;}
.y72_c00474{bottom:467.395227pt;}
.y71_c00474{bottom:468.846407pt;}
.y70_c00474{bottom:469.451147pt;}
.y6f_c00474{bottom:470.632187pt;}
.y6e_c00474{bottom:471.643627pt;}
.y6d_c00474{bottom:472.082667pt;}
.y6c_c00474{bottom:501.128384pt;}
.y6b_c00474{bottom:501.824000pt;}
.y6a_c00474{bottom:503.759051pt;}
.y69_c00474{bottom:525.837611pt;}
.y68_c00474{bottom:526.318101pt;}
.y67_c00474{bottom:526.782741pt;}
.y66_c00474{bottom:527.743168pt;}
.y65_c00474{bottom:529.133803pt;}
.y64_c00474{bottom:530.711893pt;}
.y63_c00474{bottom:532.271232pt;}
.y62_c00474{bottom:532.747328pt;}
.y61_c00474{bottom:534.002667pt;}
.y60_c00474{bottom:560.180041pt;}
.y5f_c00474{bottom:561.058045pt;}
.y5e_c00474{bottom:561.633251pt;}
.y5d_c00474{bottom:563.605521pt;}
.y5c_c00474{bottom:564.725811pt;}
.y5b_c00474{bottom:565.797496pt;}
.y5a_c00474{bottom:566.714128pt;}
.y59_c00474{bottom:567.767369pt;}
.y58_c00474{bottom:570.105465pt;}
.y57_c00474{bottom:571.816117pt;}
.y56_c00474{bottom:572.161333pt;}
.y54_c00474{bottom:595.910667pt;}
.y55_c00474{bottom:619.558667pt;}
.y53_c00474{bottom:621.050667pt;}
.y52_c00474{bottom:621.474667pt;}
.y51_c00474{bottom:621.884000pt;}
.y50_c00474{bottom:622.438667pt;}
.y4f_c00474{bottom:622.954667pt;}
.y4e_c00474{bottom:624.068000pt;}
.y4d_c00474{bottom:625.180000pt;}
.y4c_c00474{bottom:626.137333pt;}
.y4b_c00474{bottom:626.550667pt;}
.y4a_c00474{bottom:627.364000pt;}
.y49_c00474{bottom:658.202667pt;}
.y48_c00474{bottom:658.625333pt;}
.y47_c00474{bottom:660.002667pt;}
.y46_c00474{bottom:684.306667pt;}
.y45_c00474{bottom:684.730667pt;}
.y44_c00474{bottom:685.074667pt;}
.y43_c00474{bottom:686.060000pt;}
.y42_c00474{bottom:687.016000pt;}
.y41_c00474{bottom:687.784000pt;}
.y40_c00474{bottom:688.214667pt;}
.y3f_c00474{bottom:689.284000pt;}
.y3e_c00474{bottom:689.608000pt;}
.y3d_c00474{bottom:690.241333pt;}
.y3c_c00474{bottom:719.358667pt;}
.y3b_c00474{bottom:720.100000pt;}
.y3a_c00474{bottom:720.725333pt;}
.y39_c00474{bottom:721.268000pt;}
.y38_c00474{bottom:721.478667pt;}
.y37_c00474{bottom:722.162667pt;}
.y36_c00474{bottom:753.726667pt;}
.y35_c00474{bottom:780.764000pt;}
.y34_c00474{bottom:781.029333pt;}
.y33_c00474{bottom:781.294667pt;}
.y32_c00474{bottom:782.182667pt;}
.y31_c00474{bottom:782.800000pt;}
.y30_c00474{bottom:782.964000pt;}
.y2f_c00474{bottom:783.594667pt;}
.y2e_c00474{bottom:784.385333pt;}
.y2d_c00474{bottom:784.644000pt;}
.y2c_c00474{bottom:785.521333pt;}
.y2b_c00474{bottom:816.837333pt;}
.y2a_c00474{bottom:843.499284pt;}
.y29_c00474{bottom:843.895455pt;}
.y28_c00474{bottom:844.675056pt;}
.y27_c00474{bottom:844.934068pt;}
.y26_c00474{bottom:845.558536pt;}
.y25_c00474{bottom:845.823268pt;}
.y24_c00474{bottom:846.450908pt;}
.y23_c00474{bottom:846.718847pt;}
.y22_c00474{bottom:847.343315pt;}
.y21_c00474{bottom:847.608133pt;}
.y20_c00474{bottom:848.753607pt;}
.y1f_c00474{bottom:849.121333pt;}
.y1c_c00474{bottom:874.864000pt;}
.y1b_c00474{bottom:910.917333pt;}
.y1a_c00474{bottom:937.660459pt;}
.y19_c00474{bottom:937.897067pt;}
.y18_c00474{bottom:938.530677pt;}
.y17_c00474{bottom:938.766901pt;}
.y16_c00474{bottom:939.164373pt;}
.y15_c00474{bottom:939.479285pt;}
.y14_c00474{bottom:939.790347pt;}
.y13_c00474{bottom:940.103339pt;}
.y12_c00474{bottom:940.967360pt;}
.y11_c00474{bottom:941.207200pt;}
.y10_c00474{bottom:941.433920pt;}
.yf_c00474{bottom:942.130837pt;}
.ye_c00474{bottom:942.425973pt;}
.yd_c00474{bottom:942.720000pt;}
.yc_c00474{bottom:974.178667pt;}
.yb_c00474{bottom:1000.463093pt;}
.ya_c00474{bottom:1001.358387pt;}
.y9_c00474{bottom:1001.744813pt;}
.y8_c00474{bottom:1003.196813pt;}
.y7_c00474{bottom:1003.612307pt;}
.y6_c00474{bottom:1003.902693pt;}
.y5_c00474{bottom:1004.795493pt;}
.y4_c00474{bottom:1005.642413pt;}
.y3_c00474{bottom:1006.321333pt;}
.y1_c00474{bottom:1046.160000pt;}
.y2_c00474{bottom:1070.521333pt;}
.h2_c00474{height:16.000000pt;}
.h1a_c00474{height:21.324339pt;}
.h9_c00474{height:21.333333pt;}
.h18_c00474{height:21.339476pt;}
.h8_c00474{height:26.666667pt;}
.h12_c00474{height:32.009215pt;}
.h1e_c00474{height:53.329333pt;}
.h5_c00474{height:58.666667pt;}
.h6_c00474{height:58.668544pt;}
.h4_c00474{height:58.669600pt;}
.ha_c00474{height:58.671624pt;}
.h15_c00474{height:58.680862pt;}
.hb_c00474{height:64.000000pt;}
.h13_c00474{height:64.015486pt;}
.h14_c00474{height:64.018429pt;}
.hc_c00474{height:64.026906pt;}
.h16_c00474{height:69.333333pt;}
.he_c00474{height:69.341133pt;}
.hd_c00474{height:69.342207pt;}
.h10_c00474{height:69.354997pt;}
.h1b_c00474{height:69.362482pt;}
.h19_c00474{height:74.635188pt;}
.h1f_c00474{height:74.661066pt;}
.h7_c00474{height:74.666667pt;}
.hf_c00474{height:74.675066pt;}
.h1d_c00474{height:74.681599pt;}
.h17_c00474{height:74.688168pt;}
.h11_c00474{height:80.023037pt;}
.h1c_c00474{height:85.309650pt;}
.h3_c00474{height:112.000000pt;}
.h0_c00474{height:1107.840000pt;}
.h1_c00474{height:1108.000000pt;}
.w0_c00474{width:796.533333pt;}
.w1_c00474{width:796.666667pt;}
.x0_c00474{left:0.000000pt;}
.x1_c00474{left:1.920000pt;}
.x1a_c00474{left:113.520000pt;}
.x3_c00474{left:114.882667pt;}
.xd_c00474{left:117.776000pt;}
.xe_c00474{left:154.529333pt;}
.x20_c00474{left:163.440000pt;}
.x4_c00474{left:182.774667pt;}
.x58_c00474{left:185.760000pt;}
.x3e_c00474{left:188.344000pt;}
.x53_c00474{left:189.312000pt;}
.x31_c00474{left:190.470667pt;}
.xf_c00474{left:191.421333pt;}
.x43_c00474{left:199.484000pt;}
.x2a_c00474{left:201.008000pt;}
.x48_c00474{left:219.668000pt;}
.x34_c00474{left:248.729333pt;}
.x5b_c00474{left:257.591787pt;}
.x3f_c00474{left:259.236000pt;}
.x5_c00474{left:267.466667pt;}
.x10_c00474{left:278.536000pt;}
.x59_c00474{left:286.706667pt;}
.xc_c00474{left:287.760000pt;}
.x28_c00474{left:289.440000pt;}
.x54_c00474{left:296.561333pt;}
.x1b_c00474{left:298.080000pt;}
.x11_c00474{left:306.876000pt;}
.x21_c00474{left:316.890667pt;}
.x32_c00474{left:318.145333pt;}
.x5e_c00474{left:319.089333pt;}
.x2b_c00474{left:327.240000pt;}
.x12_c00474{left:336.856000pt;}
.x40_c00474{left:339.860000pt;}
.x57_c00474{left:345.120000pt;}
.x3a_c00474{left:346.357333pt;}
.x6_c00474{left:356.746667pt;}
.x63_c00474{left:365.518619pt;}
.x30_c00474{left:366.480000pt;}
.x29_c00474{left:367.680000pt;}
.x35_c00474{left:375.441333pt;}
.x55_c00474{left:376.452000pt;}
.x5f_c00474{left:384.504000pt;}
.x7_c00474{left:385.785333pt;}
.x5c_c00474{left:392.163195pt;}
.x2_c00474{left:395.520000pt;}
.x22_c00474{left:405.004000pt;}
.x49_c00474{left:406.149333pt;}
.x41_c00474{left:407.786667pt;}
.x2c_c00474{left:415.074667pt;}
.x5a_c00474{left:421.747467pt;}
.x51_c00474{left:423.340000pt;}
.x23_c00474{left:425.374667pt;}
.x8_c00474{left:427.334667pt;}
.x47_c00474{left:433.494037pt;}
.x4a_c00474{left:443.254667pt;}
.x13_c00474{left:444.858667pt;}
.x4d_c00474{left:452.103445pt;}
.x60_c00474{left:465.122667pt;}
.x24_c00474{left:473.410667pt;}
.x52_c00474{left:482.637333pt;}
.x14_c00474{left:483.982667pt;}
.x2d_c00474{left:485.160000pt;}
.x25_c00474{left:494.021333pt;}
.x2e_c00474{left:503.402667pt;}
.x3b_c00474{left:505.344000pt;}
.x1c_c00474{left:511.920000pt;}
.x15_c00474{left:522.865333pt;}
.x26_c00474{left:542.301333pt;}
.x1d_c00474{left:552.240000pt;}
.x16_c00474{left:562.229333pt;}
.x36_c00474{left:571.289333pt;}
.x9_c00474{left:572.534667pt;}
.x3c_c00474{left:581.797333pt;}
.x33_c00474{left:590.793333pt;}
.x56_c00474{left:592.128000pt;}
.x42_c00474{left:601.492000pt;}
.xa_c00474{left:611.177333pt;}
.x4b_c00474{left:620.656000pt;}
.x1e_c00474{left:630.720000pt;}
.x61_c00474{left:639.994667pt;}
.x17_c00474{left:641.441333pt;}
.x5d_c00474{left:642.631888pt;}
.x44_c00474{left:650.729333pt;}
.x37_c00474{left:660.844000pt;}
.x4e_c00474{left:663.447723pt;}
.x1f_c00474{left:670.560000pt;}
.x62_c00474{left:671.536427pt;}
.x4f_c00474{left:677.843371pt;}
.x45_c00474{left:679.769333pt;}
.x27_c00474{left:690.594667pt;}
.x38_c00474{left:692.109333pt;}
.xb_c00474{left:700.706667pt;}
.x46_c00474{left:709.800000pt;}
.x4c_c00474{left:711.250667pt;}
.x50_c00474{left:717.430411pt;}
.x18_c00474{left:720.642667pt;}
.x2f_c00474{left:729.730667pt;}
.x39_c00474{left:730.660000pt;}
.x19_c00474{left:750.218667pt;}
.x3d_c00474{left:752.400000pt;}
}





/* 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_c00475 {
    display:none;
  }
  .loading-indicator_c00475.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00475 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_c00475 { 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_c00475" -> "#page-container .classname_c00475")
 */
.pf_c00475 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00475 { /* 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_c00475.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00475 { /* 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_c00475 { /* 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_c00475 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00475 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00475 {overflow:visible;}
  }
}
.c_c00475 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00475 { /* 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_c00475:after { /* webkit #35443 */
  content: '';
}
.t_c00475:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00475 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 */
}
.__c00475 { /* 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_c00475 { /* info for Javascript */
  display:none;
}
.l_c00475 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00475 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00475 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00475: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_c00475 {
    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_c00475.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00475.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_c00475 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00475{font-family:sans-serif;visibility:hidden;}
.sc__c00475{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00475{-webkit-text-stroke:0px transparent;}
}
.y0_c00475{bottom:0.000000px;}
.h0_c00475{height:1246.320000px;}
.h1_c00475{height:1246.500000px;}
.w0_c00475{width:896.100000px;}
.w1_c00475{width:896.250000px;}
.x0_c00475{left:0.000000px;}
@media print{
.y0_c00475{bottom:0.000000pt;}
.h0_c00475{height:1107.840000pt;}
.h1_c00475{height:1108.000000pt;}
.w0_c00475{width:796.533333pt;}
.w1_c00475{width:796.666667pt;}
.x0_c00475{left:0.000000pt;}
}





/* 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_c00476 {
    display:none;
  }
  .loading-indicator_c00476.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00476 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_c00476 { 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_c00476" -> "#page-container .classname_c00476")
 */
.pf_c00476 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00476 { /* 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_c00476.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00476 { /* 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_c00476 { /* 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_c00476 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00476 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00476 {overflow:visible;}
  }
}
.c_c00476 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00476 { /* 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_c00476:after { /* webkit #35443 */
  content: '';
}
.t_c00476:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00476 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 */
}
.__c00476 { /* 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_c00476 { /* info for Javascript */
  display:none;
}
.l_c00476 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00476 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00476 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00476: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_c00476 {
    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_c00476.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00476.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_c00476 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00476{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00476;src:url('chunks/assets/font_cfe63ee56e9e10a97d33a3db.woff2')format("woff");}.ff1_c00476{font-family:ff1_c00476;line-height:1.000000;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;}
.mab_c00476{transform:matrix(0.016041,0.000964,-0.015003,0.249549,0,0);-ms-transform:matrix(0.016041,0.000964,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.016041,0.000964,-0.015003,0.249549,0,0);}
.m54_c00476{transform:matrix(0.018724,0.000768,-0.010252,0.249790,0,0);-ms-transform:matrix(0.018724,0.000768,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.018724,0.000768,-0.010252,0.249790,0,0);}
.m75_c00476{transform:matrix(0.059059,0.002069,-0.008753,0.249847,0,0);-ms-transform:matrix(0.059059,0.002069,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.059059,0.002069,-0.008753,0.249847,0,0);}
.m78_c00476{transform:matrix(0.088616,0.003105,-0.008753,0.249847,0,0);-ms-transform:matrix(0.088616,0.003105,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.088616,0.003105,-0.008753,0.249847,0,0);}
.m56_c00476{transform:matrix(0.110151,0.004300,-0.009752,0.249810,0,0);-ms-transform:matrix(0.110151,0.004300,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.110151,0.004300,-0.009752,0.249810,0,0);}
.m2b_c00476{transform:matrix(0.110732,0.003880,-0.008753,0.249847,0,0);-ms-transform:matrix(0.110732,0.003880,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.110732,0.003880,-0.008753,0.249847,0,0);}
.m5a_c00476{transform:matrix(0.120683,0.004711,-0.009752,0.249810,0,0);-ms-transform:matrix(0.120683,0.004711,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.120683,0.004711,-0.009752,0.249810,0,0);}
.m1_c00476{transform:matrix(0.120830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120830,0.000000,0.000000,0.250000,0,0);}
.m5e_c00476{transform:matrix(0.122017,0.004763,-0.009752,0.249810,0,0);-ms-transform:matrix(0.122017,0.004763,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.122017,0.004763,-0.009752,0.249810,0,0);}
.m7f_c00476{transform:matrix(0.136467,0.006147,-0.011250,0.249747,0,0);-ms-transform:matrix(0.136467,0.006147,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.136467,0.006147,-0.011250,0.249747,0,0);}
.m8a_c00476{transform:matrix(0.145106,0.006682,-0.011499,0.249735,0,0);-ms-transform:matrix(0.145106,0.006682,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.145106,0.006682,-0.011499,0.249735,0,0);}
.m33_c00476{transform:matrix(0.146780,0.005289,-0.009003,0.249838,0,0);-ms-transform:matrix(0.146780,0.005289,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.146780,0.005289,-0.009003,0.249838,0,0);}
.m8e_c00476{transform:matrix(0.157743,0.007263,-0.011499,0.249735,0,0);-ms-transform:matrix(0.157743,0.007263,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.157743,0.007263,-0.011499,0.249735,0,0);}
.mc5_c00476{transform:matrix(0.158898,0.009553,-0.015003,0.249549,0,0);-ms-transform:matrix(0.158898,0.009553,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.158898,0.009553,-0.015003,0.249549,0,0);}
.m68_c00476{transform:matrix(0.165064,0.005783,-0.008753,0.249847,0,0);-ms-transform:matrix(0.165064,0.005783,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.165064,0.005783,-0.008753,0.249847,0,0);}
.m4a_c00476{transform:matrix(0.169577,0.006960,-0.010252,0.249790,0,0);-ms-transform:matrix(0.169577,0.006960,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.169577,0.006960,-0.010252,0.249790,0,0);}
.m79_c00476{transform:matrix(0.169778,0.007648,-0.011250,0.249747,0,0);-ms-transform:matrix(0.169778,0.007648,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.169778,0.007648,-0.011250,0.249747,0,0);}
.m14_c00476{transform:matrix(0.170613,0.005289,-0.007746,0.249880,0,0);-ms-transform:matrix(0.170613,0.005289,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.170613,0.005289,-0.007746,0.249880,0,0);}
.m2e_c00476{transform:matrix(0.173064,0.006063,-0.008753,0.249847,0,0);-ms-transform:matrix(0.173064,0.006063,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.173064,0.006063,-0.008753,0.249847,0,0);}
.m8c_c00476{transform:matrix(0.175084,0.008062,-0.011499,0.249735,0,0);-ms-transform:matrix(0.175084,0.008062,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.175084,0.008062,-0.011499,0.249735,0,0);}
.ma_c00476{transform:matrix(0.179024,0.004476,-0.006248,0.249922,0,0);-ms-transform:matrix(0.179024,0.004476,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.179024,0.004476,-0.006248,0.249922,0,0);}
.m77_c00476{transform:matrix(0.179720,0.006296,-0.008753,0.249847,0,0);-ms-transform:matrix(0.179720,0.006296,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.179720,0.006296,-0.008753,0.249847,0,0);}
.m30_c00476{transform:matrix(0.183467,0.006428,-0.008753,0.249847,0,0);-ms-transform:matrix(0.183467,0.006428,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.183467,0.006428,-0.008753,0.249847,0,0);}
.m58_c00476{transform:matrix(0.184215,0.007192,-0.009752,0.249810,0,0);-ms-transform:matrix(0.184215,0.007192,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.184215,0.007192,-0.009752,0.249810,0,0);}
.m8d_c00476{transform:matrix(0.184320,0.008487,-0.011499,0.249735,0,0);-ms-transform:matrix(0.184320,0.008487,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.184320,0.008487,-0.011499,0.249735,0,0);}
.m90_c00476{transform:matrix(0.185988,0.008564,-0.011499,0.249735,0,0);-ms-transform:matrix(0.185988,0.008564,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.185988,0.008564,-0.011499,0.249735,0,0);}
.m80_c00476{transform:matrix(0.186141,0.008385,-0.011250,0.249747,0,0);-ms-transform:matrix(0.186141,0.008385,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.186141,0.008385,-0.011250,0.249747,0,0);}
.m9d_c00476{transform:matrix(0.186283,0.007272,-0.009752,0.249810,0,0);-ms-transform:matrix(0.186283,0.007272,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.186283,0.007272,-0.009752,0.249810,0,0);}
.m93_c00476{transform:matrix(0.186622,0.008593,-0.011499,0.249735,0,0);-ms-transform:matrix(0.186622,0.008593,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.186622,0.008593,-0.011499,0.249735,0,0);}
.mc0_c00476{transform:matrix(0.186755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186755,0.000000,0.000000,0.250000,0,0);}
.m5d_c00476{transform:matrix(0.188671,0.007366,-0.009752,0.249810,0,0);-ms-transform:matrix(0.188671,0.007366,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.188671,0.007366,-0.009752,0.249810,0,0);}
.m61_c00476{transform:matrix(0.188766,0.007369,-0.009752,0.249810,0,0);-ms-transform:matrix(0.188766,0.007369,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.188766,0.007369,-0.009752,0.249810,0,0);}
.m2c_c00476{transform:matrix(0.188834,0.006616,-0.008753,0.249847,0,0);-ms-transform:matrix(0.188834,0.006616,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.188834,0.006616,-0.008753,0.249847,0,0);}
.m8b_c00476{transform:matrix(0.190658,0.008779,-0.011499,0.249735,0,0);-ms-transform:matrix(0.190658,0.008779,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.190658,0.008779,-0.011499,0.249735,0,0);}
.mac_c00476{transform:matrix(0.192917,0.011598,-0.015003,0.249549,0,0);-ms-transform:matrix(0.192917,0.011598,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.192917,0.011598,-0.015003,0.249549,0,0);}
.m59_c00476{transform:matrix(0.193068,0.007537,-0.009752,0.249810,0,0);-ms-transform:matrix(0.193068,0.007537,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.193068,0.007537,-0.009752,0.249810,0,0);}
.m8f_c00476{transform:matrix(0.194434,0.008953,-0.011499,0.249735,0,0);-ms-transform:matrix(0.194434,0.008953,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.194434,0.008953,-0.011499,0.249735,0,0);}
.ma9_c00476{transform:matrix(0.195213,0.011736,-0.015003,0.249549,0,0);-ms-transform:matrix(0.195213,0.011736,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.195213,0.011736,-0.015003,0.249549,0,0);}
.m73_c00476{transform:matrix(0.195445,0.006847,-0.008753,0.249847,0,0);-ms-transform:matrix(0.195445,0.006847,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.195445,0.006847,-0.008753,0.249847,0,0);}
.m2d_c00476{transform:matrix(0.195855,0.006862,-0.008753,0.249847,0,0);-ms-transform:matrix(0.195855,0.006862,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.195855,0.006862,-0.008753,0.249847,0,0);}
.md0_c00476{transform:matrix(0.196424,0.010224,-0.012995,0.249662,0,0);-ms-transform:matrix(0.196424,0.010224,-0.012995,0.249662,0,0);-webkit-transform:matrix(0.196424,0.010224,-0.012995,0.249662,0,0);}
.m3a_c00476{transform:matrix(0.197202,0.007106,-0.009003,0.249838,0,0);-ms-transform:matrix(0.197202,0.007106,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.197202,0.007106,-0.009003,0.249838,0,0);}
.m38_c00476{transform:matrix(0.197292,0.007110,-0.009003,0.249838,0,0);-ms-transform:matrix(0.197292,0.007110,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.197292,0.007110,-0.009003,0.249838,0,0);}
.m2f_c00476{transform:matrix(0.197299,0.006912,-0.008753,0.249847,0,0);-ms-transform:matrix(0.197299,0.006912,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.197299,0.006912,-0.008753,0.249847,0,0);}
.m7c_c00476{transform:matrix(0.198344,0.008934,-0.011250,0.249747,0,0);-ms-transform:matrix(0.198344,0.008934,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.198344,0.008934,-0.011250,0.249747,0,0);}
.m82_c00476{transform:matrix(0.199208,0.008973,-0.011250,0.249747,0,0);-ms-transform:matrix(0.199208,0.008973,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.199208,0.008973,-0.011250,0.249747,0,0);}
.mc1_c00476{transform:matrix(0.199919,0.012019,-0.015003,0.249549,0,0);-ms-transform:matrix(0.199919,0.012019,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.199919,0.012019,-0.015003,0.249549,0,0);}
.m51_c00476{transform:matrix(0.200711,0.008237,-0.010252,0.249790,0,0);-ms-transform:matrix(0.200711,0.008237,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.200711,0.008237,-0.010252,0.249790,0,0);}
.m91_c00476{transform:matrix(0.202605,0.009329,-0.011499,0.249735,0,0);-ms-transform:matrix(0.202605,0.009329,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.202605,0.009329,-0.011499,0.249735,0,0);}
.m57_c00476{transform:matrix(0.204444,0.007981,-0.009752,0.249810,0,0);-ms-transform:matrix(0.204444,0.007981,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.204444,0.007981,-0.009752,0.249810,0,0);}
.mb3_c00476{transform:matrix(0.206452,0.012412,-0.015003,0.249549,0,0);-ms-transform:matrix(0.206452,0.012412,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.206452,0.012412,-0.015003,0.249549,0,0);}
.m42_c00476{transform:matrix(0.207610,0.007481,-0.009003,0.249838,0,0);-ms-transform:matrix(0.207610,0.007481,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.207610,0.007481,-0.009003,0.249838,0,0);}
.mcf_c00476{transform:matrix(0.207754,0.010814,-0.012995,0.249662,0,0);-ms-transform:matrix(0.207754,0.010814,-0.012995,0.249662,0,0);-webkit-transform:matrix(0.207754,0.010814,-0.012995,0.249662,0,0);}
.m3b_c00476{transform:matrix(0.208470,0.007512,-0.009003,0.249838,0,0);-ms-transform:matrix(0.208470,0.007512,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.208470,0.007512,-0.009003,0.249838,0,0);}
.m32_c00476{transform:matrix(0.208722,0.007313,-0.008753,0.249847,0,0);-ms-transform:matrix(0.208722,0.007313,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.208722,0.007313,-0.008753,0.249847,0,0);}
.m7d_c00476{transform:matrix(0.209592,0.009441,-0.011250,0.249747,0,0);-ms-transform:matrix(0.209592,0.009441,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.209592,0.009441,-0.011250,0.249747,0,0);}
.m1c_c00476{transform:matrix(0.210473,0.007585,-0.009003,0.249838,0,0);-ms-transform:matrix(0.210473,0.007585,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.210473,0.007585,-0.009003,0.249838,0,0);}
.m31_c00476{transform:matrix(0.210586,0.007378,-0.008753,0.249847,0,0);-ms-transform:matrix(0.210586,0.007378,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.210586,0.007378,-0.008753,0.249847,0,0);}
.m92_c00476{transform:matrix(0.210632,0.009699,-0.011499,0.249735,0,0);-ms-transform:matrix(0.210632,0.009699,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.210632,0.009699,-0.011499,0.249735,0,0);}
.m1f_c00476{transform:matrix(0.211078,0.007606,-0.009003,0.249838,0,0);-ms-transform:matrix(0.211078,0.007606,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.211078,0.007606,-0.009003,0.249838,0,0);}
.m8_c00476{transform:matrix(0.211249,0.005281,-0.006248,0.249922,0,0);-ms-transform:matrix(0.211249,0.005281,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.211249,0.005281,-0.006248,0.249922,0,0);}
.ma4_c00476{transform:matrix(0.211769,0.008267,-0.009752,0.249810,0,0);-ms-transform:matrix(0.211769,0.008267,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.211769,0.008267,-0.009752,0.249810,0,0);}
.mae_c00476{transform:matrix(0.211977,0.012744,-0.015003,0.249549,0,0);-ms-transform:matrix(0.211977,0.012744,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.211977,0.012744,-0.015003,0.249549,0,0);}
.m5b_c00476{transform:matrix(0.212498,0.008296,-0.009752,0.249810,0,0);-ms-transform:matrix(0.212498,0.008296,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.212498,0.008296,-0.009752,0.249810,0,0);}
.m4f_c00476{transform:matrix(0.212601,0.008725,-0.010252,0.249790,0,0);-ms-transform:matrix(0.212601,0.008725,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.212601,0.008725,-0.010252,0.249790,0,0);}
.ma8_c00476{transform:matrix(0.213495,0.012835,-0.015003,0.249549,0,0);-ms-transform:matrix(0.213495,0.012835,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.213495,0.012835,-0.015003,0.249549,0,0);}
.m5f_c00476{transform:matrix(0.214492,0.008374,-0.009752,0.249810,0,0);-ms-transform:matrix(0.214492,0.008374,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.214492,0.008374,-0.009752,0.249810,0,0);}
.m36_c00476{transform:matrix(0.215175,0.007754,-0.009003,0.249838,0,0);-ms-transform:matrix(0.215175,0.007754,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.215175,0.007754,-0.009003,0.249838,0,0);}
.m4e_c00476{transform:matrix(0.215439,0.008842,-0.010252,0.249790,0,0);-ms-transform:matrix(0.215439,0.008842,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.215439,0.008842,-0.010252,0.249790,0,0);}
.m9b_c00476{transform:matrix(0.215487,0.009922,-0.011499,0.249735,0,0);-ms-transform:matrix(0.215487,0.009922,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.215487,0.009922,-0.011499,0.249735,0,0);}
.m74_c00476{transform:matrix(0.215628,0.007555,-0.008753,0.249847,0,0);-ms-transform:matrix(0.215628,0.007555,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.215628,0.007555,-0.008753,0.249847,0,0);}
.m34_c00476{transform:matrix(0.215805,0.007777,-0.009003,0.249838,0,0);-ms-transform:matrix(0.215805,0.007777,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.215805,0.007777,-0.009003,0.249838,0,0);}
.mb4_c00476{transform:matrix(0.215945,0.012983,-0.015003,0.249549,0,0);-ms-transform:matrix(0.215945,0.012983,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.215945,0.012983,-0.015003,0.249549,0,0);}
.mca_c00476{transform:matrix(0.216497,0.011269,-0.012995,0.249662,0,0);-ms-transform:matrix(0.216497,0.011269,-0.012995,0.249662,0,0);-webkit-transform:matrix(0.216497,0.011269,-0.012995,0.249662,0,0);}
.m96_c00476{transform:matrix(0.216765,0.009981,-0.011499,0.249735,0,0);-ms-transform:matrix(0.216765,0.009981,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.216765,0.009981,-0.011499,0.249735,0,0);}
.ma1_c00476{transform:matrix(0.218758,0.008540,-0.009752,0.249810,0,0);-ms-transform:matrix(0.218758,0.008540,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.218758,0.008540,-0.009752,0.249810,0,0);}
.m9f_c00476{transform:matrix(0.218933,0.008547,-0.009752,0.249810,0,0);-ms-transform:matrix(0.218933,0.008547,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.218933,0.008547,-0.009752,0.249810,0,0);}
.m76_c00476{transform:matrix(0.219121,0.007677,-0.008753,0.249847,0,0);-ms-transform:matrix(0.219121,0.007677,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.219121,0.007677,-0.008753,0.249847,0,0);}
.m6f_c00476{transform:matrix(0.219345,0.007685,-0.008753,0.249847,0,0);-ms-transform:matrix(0.219345,0.007685,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.219345,0.007685,-0.008753,0.249847,0,0);}
.m6c_c00476{transform:matrix(0.219455,0.007689,-0.008753,0.249847,0,0);-ms-transform:matrix(0.219455,0.007689,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.219455,0.007689,-0.008753,0.249847,0,0);}
.m1a_c00476{transform:matrix(0.220850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220850,0.000000,0.000000,0.250000,0,0);}
.m94_c00476{transform:matrix(0.221006,0.010176,-0.011499,0.249735,0,0);-ms-transform:matrix(0.221006,0.010176,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.221006,0.010176,-0.011499,0.249735,0,0);}
.mb6_c00476{transform:matrix(0.222603,0.013383,-0.015003,0.249549,0,0);-ms-transform:matrix(0.222603,0.013383,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.222603,0.013383,-0.015003,0.249549,0,0);}
.m4c_c00476{transform:matrix(0.224401,0.009210,-0.010252,0.249790,0,0);-ms-transform:matrix(0.224401,0.009210,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.224401,0.009210,-0.010252,0.249790,0,0);}
.m35_c00476{transform:matrix(0.224519,0.008091,-0.009003,0.249838,0,0);-ms-transform:matrix(0.224519,0.008091,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.224519,0.008091,-0.009003,0.249838,0,0);}
.m6a_c00476{transform:matrix(0.224827,0.007877,-0.008753,0.249847,0,0);-ms-transform:matrix(0.224827,0.007877,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.224827,0.007877,-0.008753,0.249847,0,0);}
.m5_c00476{transform:matrix(0.225110,0.005628,-0.006248,0.249922,0,0);-ms-transform:matrix(0.225110,0.005628,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.225110,0.005628,-0.006248,0.249922,0,0);}
.m81_c00476{transform:matrix(0.225506,0.010158,-0.011250,0.249747,0,0);-ms-transform:matrix(0.225506,0.010158,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.225506,0.010158,-0.011250,0.249747,0,0);}
.maf_c00476{transform:matrix(0.225762,0.013573,-0.015003,0.249549,0,0);-ms-transform:matrix(0.225762,0.013573,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.225762,0.013573,-0.015003,0.249549,0,0);}
.m50_c00476{transform:matrix(0.225890,0.009271,-0.010252,0.249790,0,0);-ms-transform:matrix(0.225890,0.009271,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.225890,0.009271,-0.010252,0.249790,0,0);}
.mcc_c00476{transform:matrix(0.226089,0.011768,-0.012995,0.249662,0,0);-ms-transform:matrix(0.226089,0.011768,-0.012995,0.249662,0,0);-webkit-transform:matrix(0.226089,0.011768,-0.012995,0.249662,0,0);}
.m6d_c00476{transform:matrix(0.226371,0.007931,-0.008753,0.249847,0,0);-ms-transform:matrix(0.226371,0.007931,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.226371,0.007931,-0.008753,0.249847,0,0);}
.m20_c00476{transform:matrix(0.226428,0.008160,-0.009003,0.249838,0,0);-ms-transform:matrix(0.226428,0.008160,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.226428,0.008160,-0.009003,0.249838,0,0);}
.m84_c00476{transform:matrix(0.227005,0.010225,-0.011250,0.249747,0,0);-ms-transform:matrix(0.227005,0.010225,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.227005,0.010225,-0.011250,0.249747,0,0);}
.m85_c00476{transform:matrix(0.227494,0.010247,-0.011250,0.249747,0,0);-ms-transform:matrix(0.227494,0.010247,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.227494,0.010247,-0.011250,0.249747,0,0);}
.ma2_c00476{transform:matrix(0.227652,0.008887,-0.009752,0.249810,0,0);-ms-transform:matrix(0.227652,0.008887,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.227652,0.008887,-0.009752,0.249810,0,0);}
.m6_c00476{transform:matrix(0.227844,0.005696,-0.006248,0.249922,0,0);-ms-transform:matrix(0.227844,0.005696,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.227844,0.005696,-0.006248,0.249922,0,0);}
.m4_c00476{transform:matrix(0.227854,0.005696,-0.006248,0.249922,0,0);-ms-transform:matrix(0.227854,0.005696,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.227854,0.005696,-0.006248,0.249922,0,0);}
.m1d_c00476{transform:matrix(0.228222,0.008224,-0.009003,0.249838,0,0);-ms-transform:matrix(0.228222,0.008224,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.228222,0.008224,-0.009003,0.249838,0,0);}
.m87_c00476{transform:matrix(0.229297,0.010329,-0.011250,0.249747,0,0);-ms-transform:matrix(0.229297,0.010329,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.229297,0.010329,-0.011250,0.249747,0,0);}
.m6e_c00476{transform:matrix(0.229329,0.008035,-0.008753,0.249847,0,0);-ms-transform:matrix(0.229329,0.008035,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.229329,0.008035,-0.008753,0.249847,0,0);}
.mad_c00476{transform:matrix(0.229645,0.013806,-0.015003,0.249549,0,0);-ms-transform:matrix(0.229645,0.013806,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.229645,0.013806,-0.015003,0.249549,0,0);}
.m52_c00476{transform:matrix(0.230541,0.009462,-0.010252,0.249790,0,0);-ms-transform:matrix(0.230541,0.009462,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.230541,0.009462,-0.010252,0.249790,0,0);}
.m24_c00476{transform:matrix(0.230753,0.008084,-0.008753,0.249847,0,0);-ms-transform:matrix(0.230753,0.008084,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.230753,0.008084,-0.008753,0.249847,0,0);}
.m7_c00476{transform:matrix(0.231778,0.005794,-0.006248,0.249922,0,0);-ms-transform:matrix(0.231778,0.005794,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.231778,0.005794,-0.006248,0.249922,0,0);}
.m95_c00476{transform:matrix(0.231914,0.010679,-0.011499,0.249735,0,0);-ms-transform:matrix(0.231914,0.010679,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.231914,0.010679,-0.011499,0.249735,0,0);}
.m27_c00476{transform:matrix(0.232143,0.008133,-0.008753,0.249847,0,0);-ms-transform:matrix(0.232143,0.008133,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.232143,0.008133,-0.008753,0.249847,0,0);}
.m55_c00476{transform:matrix(0.232909,0.009559,-0.010252,0.249790,0,0);-ms-transform:matrix(0.232909,0.009559,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.232909,0.009559,-0.010252,0.249790,0,0);}
.mcd_c00476{transform:matrix(0.232910,0.012123,-0.012995,0.249662,0,0);-ms-transform:matrix(0.232910,0.012123,-0.012995,0.249662,0,0);-webkit-transform:matrix(0.232910,0.012123,-0.012995,0.249662,0,0);}
.m4d_c00476{transform:matrix(0.233054,0.009565,-0.010252,0.249790,0,0);-ms-transform:matrix(0.233054,0.009565,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.233054,0.009565,-0.010252,0.249790,0,0);}
.m1b_c00476{transform:matrix(0.233224,0.008404,-0.009003,0.249838,0,0);-ms-transform:matrix(0.233224,0.008404,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.233224,0.008404,-0.009003,0.249838,0,0);}
.m37_c00476{transform:matrix(0.233843,0.008427,-0.009003,0.249838,0,0);-ms-transform:matrix(0.233843,0.008427,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.233843,0.008427,-0.009003,0.249838,0,0);}
.m7e_c00476{transform:matrix(0.234527,0.010564,-0.011250,0.249747,0,0);-ms-transform:matrix(0.234527,0.010564,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.234527,0.010564,-0.011250,0.249747,0,0);}
.mba_c00476{transform:matrix(0.234822,0.014588,-0.015501,0.249519,0,0);-ms-transform:matrix(0.234822,0.014588,-0.015501,0.249519,0,0);-webkit-transform:matrix(0.234822,0.014588,-0.015501,0.249519,0,0);}
.maa_c00476{transform:matrix(0.234906,0.014123,-0.015003,0.249549,0,0);-ms-transform:matrix(0.234906,0.014123,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.234906,0.014123,-0.015003,0.249549,0,0);}
.m83_c00476{transform:matrix(0.235206,0.010595,-0.011250,0.249747,0,0);-ms-transform:matrix(0.235206,0.010595,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.235206,0.010595,-0.011250,0.249747,0,0);}
.m9_c00476{transform:matrix(0.235361,0.005884,-0.006248,0.249922,0,0);-ms-transform:matrix(0.235361,0.005884,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.235361,0.005884,-0.006248,0.249922,0,0);}
.m69_c00476{transform:matrix(0.235540,0.008252,-0.008753,0.249847,0,0);-ms-transform:matrix(0.235540,0.008252,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.235540,0.008252,-0.008753,0.249847,0,0);}
.m7a_c00476{transform:matrix(0.235901,0.010626,-0.011250,0.249747,0,0);-ms-transform:matrix(0.235901,0.010626,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.235901,0.010626,-0.011250,0.249747,0,0);}
.m98_c00476{transform:matrix(0.236410,0.010886,-0.011499,0.249735,0,0);-ms-transform:matrix(0.236410,0.010886,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.236410,0.010886,-0.011499,0.249735,0,0);}
.mb_c00476{transform:matrix(0.236656,0.005916,-0.006248,0.249922,0,0);-ms-transform:matrix(0.236656,0.005916,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.236656,0.005916,-0.006248,0.249922,0,0);}
.m71_c00476{transform:matrix(0.236990,0.008303,-0.008753,0.249847,0,0);-ms-transform:matrix(0.236990,0.008303,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.236990,0.008303,-0.008753,0.249847,0,0);}
.m39_c00476{transform:matrix(0.237011,0.008541,-0.009003,0.249838,0,0);-ms-transform:matrix(0.237011,0.008541,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.237011,0.008541,-0.009003,0.249838,0,0);}
.m4b_c00476{transform:matrix(0.237030,0.009728,-0.010252,0.249790,0,0);-ms-transform:matrix(0.237030,0.009728,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.237030,0.009728,-0.010252,0.249790,0,0);}
.mc4_c00476{transform:matrix(0.237806,0.014297,-0.015003,0.249549,0,0);-ms-transform:matrix(0.237806,0.014297,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.237806,0.014297,-0.015003,0.249549,0,0);}
.m88_c00476{transform:matrix(0.239138,0.010772,-0.011250,0.249747,0,0);-ms-transform:matrix(0.239138,0.010772,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.239138,0.010772,-0.011250,0.249747,0,0);}
.m7b_c00476{transform:matrix(0.239467,0.010787,-0.011250,0.249747,0,0);-ms-transform:matrix(0.239467,0.010787,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.239467,0.010787,-0.011250,0.249747,0,0);}
.m9e_c00476{transform:matrix(0.239742,0.009359,-0.009752,0.249810,0,0);-ms-transform:matrix(0.239742,0.009359,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.239742,0.009359,-0.009752,0.249810,0,0);}
.m22_c00476{transform:matrix(0.239794,0.008641,-0.009003,0.249838,0,0);-ms-transform:matrix(0.239794,0.008641,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.239794,0.008641,-0.009003,0.249838,0,0);}
.m6b_c00476{transform:matrix(0.240078,0.008411,-0.008753,0.249847,0,0);-ms-transform:matrix(0.240078,0.008411,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.240078,0.008411,-0.008753,0.249847,0,0);}
.m3c_c00476{transform:matrix(0.241383,0.008698,-0.009003,0.249838,0,0);-ms-transform:matrix(0.241383,0.008698,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.241383,0.008698,-0.009003,0.249838,0,0);}
.m70_c00476{transform:matrix(0.241512,0.008461,-0.008753,0.249847,0,0);-ms-transform:matrix(0.241512,0.008461,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.241512,0.008461,-0.008753,0.249847,0,0);}
.m3_c00476{transform:matrix(0.241595,0.006040,-0.006248,0.249922,0,0);-ms-transform:matrix(0.241595,0.006040,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.241595,0.006040,-0.006248,0.249922,0,0);}
.m25_c00476{transform:matrix(0.241847,0.008473,-0.008753,0.249847,0,0);-ms-transform:matrix(0.241847,0.008473,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.241847,0.008473,-0.008753,0.249847,0,0);}
.m72_c00476{transform:matrix(0.242906,0.008510,-0.008753,0.249847,0,0);-ms-transform:matrix(0.242906,0.008510,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.242906,0.008510,-0.008753,0.249847,0,0);}
.mcb_c00476{transform:matrix(0.243166,0.012657,-0.012995,0.249662,0,0);-ms-transform:matrix(0.243166,0.012657,-0.012995,0.249662,0,0);-webkit-transform:matrix(0.243166,0.012657,-0.012995,0.249662,0,0);}
.mb5_c00476{transform:matrix(0.243935,0.014665,-0.015003,0.249549,0,0);-ms-transform:matrix(0.243935,0.014665,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.243935,0.014665,-0.015003,0.249549,0,0);}
.m63_c00476{transform:matrix(0.244584,0.009548,-0.009752,0.249810,0,0);-ms-transform:matrix(0.244584,0.009548,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.244584,0.009548,-0.009752,0.249810,0,0);}
.m3d_c00476{transform:matrix(0.244711,0.008818,-0.009003,0.249838,0,0);-ms-transform:matrix(0.244711,0.008818,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.244711,0.008818,-0.009003,0.249838,0,0);}
.m62_c00476{transform:matrix(0.244714,0.009553,-0.009752,0.249810,0,0);-ms-transform:matrix(0.244714,0.009553,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.244714,0.009553,-0.009752,0.249810,0,0);}
.m99_c00476{transform:matrix(0.245879,0.011322,-0.011499,0.249735,0,0);-ms-transform:matrix(0.245879,0.011322,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.245879,0.011322,-0.011499,0.249735,0,0);}
.m9a_c00476{transform:matrix(0.246564,0.011353,-0.011499,0.249735,0,0);-ms-transform:matrix(0.246564,0.011353,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.246564,0.011353,-0.011499,0.249735,0,0);}
.mbe_c00476{transform:matrix(0.247278,0.015362,-0.015501,0.249519,0,0);-ms-transform:matrix(0.247278,0.015362,-0.015501,0.249519,0,0);-webkit-transform:matrix(0.247278,0.015362,-0.015501,0.249519,0,0);}
.mc6_c00476{transform:matrix(0.248312,0.014929,-0.015003,0.249549,0,0);-ms-transform:matrix(0.248312,0.014929,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.248312,0.014929,-0.015003,0.249549,0,0);}
.m53_c00476{transform:matrix(0.248476,0.010198,-0.010252,0.249790,0,0);-ms-transform:matrix(0.248476,0.010198,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.248476,0.010198,-0.010252,0.249790,0,0);}
.m11_c00476{transform:matrix(0.248780,0.007712,-0.007746,0.249880,0,0);-ms-transform:matrix(0.248780,0.007712,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.248780,0.007712,-0.007746,0.249880,0,0);}
.m28_c00476{transform:matrix(0.249062,0.008726,-0.008753,0.249847,0,0);-ms-transform:matrix(0.249062,0.008726,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.249062,0.008726,-0.008753,0.249847,0,0);}
.m9c_c00476{transform:matrix(0.250430,0.011531,-0.011499,0.249735,0,0);-ms-transform:matrix(0.250430,0.011531,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.250430,0.011531,-0.011499,0.249735,0,0);}
.ma3_c00476{transform:matrix(0.250844,0.009793,-0.009752,0.249810,0,0);-ms-transform:matrix(0.250844,0.009793,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.250844,0.009793,-0.009752,0.249810,0,0);}
.m1e_c00476{transform:matrix(0.250852,0.009040,-0.009003,0.249838,0,0);-ms-transform:matrix(0.250852,0.009040,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.250852,0.009040,-0.009003,0.249838,0,0);}
.mc8_c00476{transform:matrix(0.251750,0.015135,-0.015003,0.249549,0,0);-ms-transform:matrix(0.251750,0.015135,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.251750,0.015135,-0.015003,0.249549,0,0);}
.ma7_c00476{transform:matrix(0.252260,0.015166,-0.015003,0.249549,0,0);-ms-transform:matrix(0.252260,0.015166,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.252260,0.015166,-0.015003,0.249549,0,0);}
.m86_c00476{transform:matrix(0.253263,0.011408,-0.011250,0.249747,0,0);-ms-transform:matrix(0.253263,0.011408,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.253263,0.011408,-0.011250,0.249747,0,0);}
.m97_c00476{transform:matrix(0.254196,0.011705,-0.011499,0.249735,0,0);-ms-transform:matrix(0.254196,0.011705,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.254196,0.011705,-0.011499,0.249735,0,0);}
.mb2_c00476{transform:matrix(0.254900,0.015325,-0.015003,0.249549,0,0);-ms-transform:matrix(0.254900,0.015325,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.254900,0.015325,-0.015003,0.249549,0,0);}
.m89_c00476{transform:matrix(0.255811,0.011523,-0.011250,0.249747,0,0);-ms-transform:matrix(0.255811,0.011523,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.255811,0.011523,-0.011250,0.249747,0,0);}
.ma0_c00476{transform:matrix(0.257654,0.010059,-0.009752,0.249810,0,0);-ms-transform:matrix(0.257654,0.010059,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.257654,0.010059,-0.009752,0.249810,0,0);}
.m21_c00476{transform:matrix(0.257893,0.009293,-0.009003,0.249838,0,0);-ms-transform:matrix(0.257893,0.009293,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.257893,0.009293,-0.009003,0.249838,0,0);}
.m19_c00476{transform:matrix(0.259260,0.008037,-0.007746,0.249880,0,0);-ms-transform:matrix(0.259260,0.008037,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.259260,0.008037,-0.007746,0.249880,0,0);}
.mbb_c00476{transform:matrix(0.259794,0.016140,-0.015501,0.249519,0,0);-ms-transform:matrix(0.259794,0.016140,-0.015501,0.249519,0,0);-webkit-transform:matrix(0.259794,0.016140,-0.015501,0.249519,0,0);}
.md_c00476{transform:matrix(0.260938,0.008620,-0.008254,0.249864,0,0);-ms-transform:matrix(0.260938,0.008620,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.260938,0.008620,-0.008254,0.249864,0,0);}
.mc9_c00476{transform:matrix(0.262020,0.013639,-0.012995,0.249662,0,0);-ms-transform:matrix(0.262020,0.013639,-0.012995,0.249662,0,0);-webkit-transform:matrix(0.262020,0.013639,-0.012995,0.249662,0,0);}
.m64_c00476{transform:matrix(0.262160,0.010234,-0.009752,0.249810,0,0);-ms-transform:matrix(0.262160,0.010234,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.262160,0.010234,-0.009752,0.249810,0,0);}
.m47_c00476{transform:matrix(0.264473,0.010590,-0.010002,0.249800,0,0);-ms-transform:matrix(0.264473,0.010590,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.264473,0.010590,-0.010002,0.249800,0,0);}
.m29_c00476{transform:matrix(0.269620,0.009446,-0.008753,0.249847,0,0);-ms-transform:matrix(0.269620,0.009446,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.269620,0.009446,-0.008753,0.249847,0,0);}
.m48_c00476{transform:matrix(0.270593,0.010835,-0.010002,0.249800,0,0);-ms-transform:matrix(0.270593,0.010835,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.270593,0.010835,-0.010002,0.249800,0,0);}
.mc7_c00476{transform:matrix(0.271904,0.016347,-0.015003,0.249549,0,0);-ms-transform:matrix(0.271904,0.016347,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.271904,0.016347,-0.015003,0.249549,0,0);}
.m16_c00476{transform:matrix(0.272469,0.008447,-0.007746,0.249880,0,0);-ms-transform:matrix(0.272469,0.008447,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.272469,0.008447,-0.007746,0.249880,0,0);}
.m15_c00476{transform:matrix(0.273479,0.008478,-0.007746,0.249880,0,0);-ms-transform:matrix(0.273479,0.008478,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.273479,0.008478,-0.007746,0.249880,0,0);}
.mb8_c00476{transform:matrix(0.273937,0.017018,-0.015501,0.249519,0,0);-ms-transform:matrix(0.273937,0.017018,-0.015501,0.249519,0,0);-webkit-transform:matrix(0.273937,0.017018,-0.015501,0.249519,0,0);}
.m26_c00476{transform:matrix(0.274187,0.009606,-0.008753,0.249847,0,0);-ms-transform:matrix(0.274187,0.009606,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.274187,0.009606,-0.008753,0.249847,0,0);}
.m66_c00476{transform:matrix(0.274291,0.010708,-0.009752,0.249810,0,0);-ms-transform:matrix(0.274291,0.010708,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.274291,0.010708,-0.009752,0.249810,0,0);}
.m18_c00476{transform:matrix(0.274638,0.008514,-0.007746,0.249880,0,0);-ms-transform:matrix(0.274638,0.008514,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.274638,0.008514,-0.007746,0.249880,0,0);}
.m23_c00476{transform:matrix(0.275146,0.009640,-0.008753,0.249847,0,0);-ms-transform:matrix(0.275146,0.009640,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.275146,0.009640,-0.008753,0.249847,0,0);}
.me_c00476{transform:matrix(0.277239,0.009158,-0.008254,0.249864,0,0);-ms-transform:matrix(0.277239,0.009158,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.277239,0.009158,-0.008254,0.249864,0,0);}
.mc_c00476{transform:matrix(0.278518,0.009200,-0.008254,0.249864,0,0);-ms-transform:matrix(0.278518,0.009200,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.278518,0.009200,-0.008254,0.249864,0,0);}
.m65_c00476{transform:matrix(0.280197,0.010939,-0.009752,0.249810,0,0);-ms-transform:matrix(0.280197,0.010939,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.280197,0.010939,-0.009752,0.249810,0,0);}
.m60_c00476{transform:matrix(0.282190,0.011016,-0.009752,0.249810,0,0);-ms-transform:matrix(0.282190,0.011016,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.282190,0.011016,-0.009752,0.249810,0,0);}
.mbd_c00476{transform:matrix(0.283119,0.017589,-0.015501,0.249519,0,0);-ms-transform:matrix(0.283119,0.017589,-0.015501,0.249519,0,0);-webkit-transform:matrix(0.283119,0.017589,-0.015501,0.249519,0,0);}
.mbc_c00476{transform:matrix(0.284187,0.017655,-0.015501,0.249519,0,0);-ms-transform:matrix(0.284187,0.017655,-0.015501,0.249519,0,0);-webkit-transform:matrix(0.284187,0.017655,-0.015501,0.249519,0,0);}
.mb0_c00476{transform:matrix(0.284267,0.017090,-0.015003,0.249549,0,0);-ms-transform:matrix(0.284267,0.017090,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.284267,0.017090,-0.015003,0.249549,0,0);}
.mc3_c00476{transform:matrix(0.285919,0.017190,-0.015003,0.249549,0,0);-ms-transform:matrix(0.285919,0.017190,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.285919,0.017190,-0.015003,0.249549,0,0);}
.ma6_c00476{transform:matrix(0.286024,0.017196,-0.015003,0.249549,0,0);-ms-transform:matrix(0.286024,0.017196,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.286024,0.017196,-0.015003,0.249549,0,0);}
.mbf_c00476{transform:matrix(0.288335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288335,0.000000,0.000000,0.250000,0,0);}
.m13_c00476{transform:matrix(0.288946,0.008957,-0.007746,0.249880,0,0);-ms-transform:matrix(0.288946,0.008957,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.288946,0.008957,-0.007746,0.249880,0,0);}
.m44_c00476{transform:matrix(0.289158,0.011578,-0.010002,0.249800,0,0);-ms-transform:matrix(0.289158,0.011578,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.289158,0.011578,-0.010002,0.249800,0,0);}
.m2a_c00476{transform:matrix(0.289327,0.010137,-0.008753,0.249847,0,0);-ms-transform:matrix(0.289327,0.010137,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.289327,0.010137,-0.008753,0.249847,0,0);}
.m12_c00476{transform:matrix(0.294229,0.009121,-0.007746,0.249880,0,0);-ms-transform:matrix(0.294229,0.009121,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.294229,0.009121,-0.007746,0.249880,0,0);}
.m46_c00476{transform:matrix(0.296318,0.011865,-0.010002,0.249800,0,0);-ms-transform:matrix(0.296318,0.011865,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.296318,0.011865,-0.010002,0.249800,0,0);}
.m10_c00476{transform:matrix(0.296887,0.009204,-0.007746,0.249880,0,0);-ms-transform:matrix(0.296887,0.009204,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.296887,0.009204,-0.007746,0.249880,0,0);}
.m2_c00476{transform:matrix(0.298075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298075,0.000000,0.000000,0.250000,0,0);}
.mb9_c00476{transform:matrix(0.298500,0.018544,-0.015501,0.249519,0,0);-ms-transform:matrix(0.298500,0.018544,-0.015501,0.249519,0,0);-webkit-transform:matrix(0.298500,0.018544,-0.015501,0.249519,0,0);}
.m43_c00476{transform:matrix(0.301150,0.010852,-0.009003,0.249838,0,0);-ms-transform:matrix(0.301150,0.010852,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.301150,0.010852,-0.009003,0.249838,0,0);}
.m17_c00476{transform:matrix(0.303969,0.009423,-0.007746,0.249880,0,0);-ms-transform:matrix(0.303969,0.009423,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.303969,0.009423,-0.007746,0.249880,0,0);}
.m49_c00476{transform:matrix(0.308708,0.012361,-0.010002,0.249800,0,0);-ms-transform:matrix(0.308708,0.012361,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.308708,0.012361,-0.010002,0.249800,0,0);}
.m5c_c00476{transform:matrix(0.311088,0.012145,-0.009752,0.249810,0,0);-ms-transform:matrix(0.311088,0.012145,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.311088,0.012145,-0.009752,0.249810,0,0);}
.mb7_c00476{transform:matrix(0.328656,0.020418,-0.015501,0.249519,0,0);-ms-transform:matrix(0.328656,0.020418,-0.015501,0.249519,0,0);-webkit-transform:matrix(0.328656,0.020418,-0.015501,0.249519,0,0);}
.m45_c00476{transform:matrix(0.340722,0.013643,-0.010002,0.249800,0,0);-ms-transform:matrix(0.340722,0.013643,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.340722,0.013643,-0.010002,0.249800,0,0);}
.mb1_c00476{transform:matrix(0.342966,0.020619,-0.015003,0.249549,0,0);-ms-transform:matrix(0.342966,0.020619,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.342966,0.020619,-0.015003,0.249549,0,0);}
.m0_c00476{transform:matrix(0.384305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384305,0.000000,0.000000,0.250000,0,0);}
.m40_c00476{transform:matrix(0.473143,0.017050,-0.009003,0.249838,0,0);-ms-transform:matrix(0.473143,0.017050,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.473143,0.017050,-0.009003,0.249838,0,0);}
.m41_c00476{transform:matrix(0.558652,0.020132,-0.009003,0.249838,0,0);-ms-transform:matrix(0.558652,0.020132,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.558652,0.020132,-0.009003,0.249838,0,0);}
.md2_c00476{transform:matrix(0.631585,0.032875,-0.012995,0.249662,0,0);-ms-transform:matrix(0.631585,0.032875,-0.012995,0.249662,0,0);-webkit-transform:matrix(0.631585,0.032875,-0.012995,0.249662,0,0);}
.mc2_c00476{transform:matrix(0.659799,0.039667,-0.015003,0.249549,0,0);-ms-transform:matrix(0.659799,0.039667,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.659799,0.039667,-0.015003,0.249549,0,0);}
.mf_c00476{transform:matrix(0.731554,0.022678,-0.007746,0.249880,0,0);-ms-transform:matrix(0.731554,0.022678,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.731554,0.022678,-0.007746,0.249880,0,0);}
.mce_c00476{transform:matrix(0.762648,0.039697,-0.012995,0.249662,0,0);-ms-transform:matrix(0.762648,0.039697,-0.012995,0.249662,0,0);-webkit-transform:matrix(0.762648,0.039697,-0.012995,0.249662,0,0);}
.md1_c00476{transform:matrix(0.790809,0.041163,-0.012995,0.249662,0,0);-ms-transform:matrix(0.790809,0.041163,-0.012995,0.249662,0,0);-webkit-transform:matrix(0.790809,0.041163,-0.012995,0.249662,0,0);}
.m3e_c00476{transform:matrix(1.769506,0.063766,-0.009003,0.249838,0,0);-ms-transform:matrix(1.769506,0.063766,-0.009003,0.249838,0,0);-webkit-transform:matrix(1.769506,0.063766,-0.009003,0.249838,0,0);}
.ma5_c00476{transform:matrix(1.799261,0.108172,-0.015003,0.249549,0,0);-ms-transform:matrix(1.799261,0.108172,-0.015003,0.249549,0,0);-webkit-transform:matrix(1.799261,0.108172,-0.015003,0.249549,0,0);}
.m3f_c00476{transform:matrix(2.359344,0.085021,-0.009003,0.249838,0,0);-ms-transform:matrix(2.359344,0.085021,-0.009003,0.249838,0,0);-webkit-transform:matrix(2.359344,0.085021,-0.009003,0.249838,0,0);}
.m67_c00476{transform:matrix(3.553323,0.138718,-0.009752,0.249810,0,0);-ms-transform:matrix(3.553323,0.138718,-0.009752,0.249810,0,0);-webkit-transform:matrix(3.553323,0.138718,-0.009752,0.249810,0,0);}
.v0_c00476{vertical-align:0.000000px;}
.ls0_c00476{letter-spacing:0.000000px;}
.sc__c00476{text-shadow:none;}
.sc0_c00476{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__c00476{-webkit-text-stroke:0px transparent;}
.sc0_c00476{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00476{word-spacing:0.000000px;}
.fc0_c00476{color:transparent;}
.fs8_c00476{font-size:23.990710px;}
.fs11_c00476{font-size:23.994263px;}
.fsb_c00476{font-size:35.987344px;}
.fs3_c00476{font-size:65.969963px;}
.fsd_c00476{font-size:65.986832px;}
.fs1a_c00476{font-size:65.994984px;}
.fs1b_c00476{font-size:66.000000px;}
.fs4_c00476{font-size:66.031705px;}
.fs7_c00476{font-size:71.972131px;}
.fs10_c00476{font-size:71.982790px;}
.fs1c_c00476{font-size:71.985743px;}
.fs6_c00476{font-size:77.972578px;}
.fs17_c00476{font-size:77.981356px;}
.fs14_c00476{font-size:78.001014px;}
.fs16_c00476{font-size:78.004563px;}
.fs12_c00476{font-size:83.967486px;}
.fsa_c00476{font-size:83.970469px;}
.fs19_c00476{font-size:83.983366px;}
.fse_c00476{font-size:83.986643px;}
.fs5_c00476{font-size:84.000000px;}
.fs13_c00476{font-size:84.001092px;}
.fs2_c00476{font-size:84.026246px;}
.fs1d_c00476{font-size:84.029605px;}
.fs9_c00476{font-size:95.962841px;}
.fsf_c00476{font-size:95.977053px;}
.fs15_c00476{font-size:96.005616px;}
.fsc_c00476{font-size:101.964141px;}
.fs18_c00476{font-size:107.978614px;}
.fs1_c00476{font-size:108.000000px;}
.fs0_c00476{font-size:132.000000px;}
.y0_c00476{bottom:0.000000px;}
.yd1_c00476{bottom:21.662898px;}
.yd0_c00476{bottom:27.501744px;}
.ycf_c00476{bottom:29.168058px;}
.yce_c00476{bottom:30.977346px;}
.ycd_c00476{bottom:36.193752px;}
.ycc_c00476{bottom:40.130412px;}
.ycb_c00476{bottom:41.362968px;}
.yca_c00476{bottom:48.126426px;}
.yc9_c00476{bottom:51.640014px;}
.yc8_c00476{bottom:54.856500px;}
.yc7_c00476{bottom:62.037990px;}
.yc6_c00476{bottom:65.330370px;}
.yc5_c00476{bottom:69.393510px;}
.yc4_c00476{bottom:76.596660px;}
.yc3_c00476{bottom:79.320150px;}
.yc2_c00476{bottom:85.323780px;}
.yc1_c00476{bottom:91.505880px;}
.yc0_c00476{bottom:94.221000px;}
.ybf_c00476{bottom:120.543000px;}
.ybe_c00476{bottom:128.185749px;}
.ybd_c00476{bottom:131.690175px;}
.ybc_c00476{bottom:135.782454px;}
.ybb_c00476{bottom:137.915781px;}
.yba_c00476{bottom:140.498391px;}
.yb9_c00476{bottom:145.529133px;}
.yb8_c00476{bottom:148.179354px;}
.yb7_c00476{bottom:153.129000px;}
.yb6_c00476{bottom:168.526374px;}
.yb5_c00476{bottom:174.701514px;}
.yb4_c00476{bottom:176.407485px;}
.yb3_c00476{bottom:178.071498px;}
.yb2_c00476{bottom:182.183076px;}
.yb1_c00476{bottom:182.821101px;}
.yb0_c00476{bottom:186.907200px;}
.yaf_c00476{bottom:191.263734px;}
.yae_c00476{bottom:192.417183px;}
.yad_c00476{bottom:195.681102px;}
.yac_c00476{bottom:198.869361px;}
.yab_c00476{bottom:216.758628px;}
.yaa_c00476{bottom:225.355356px;}
.ya9_c00476{bottom:226.752027px;}
.ya8_c00476{bottom:228.201867px;}
.ya7_c00476{bottom:233.632410px;}
.ya6_c00476{bottom:238.920270px;}
.ya4_c00476{bottom:247.070387px;}
.ya5_c00476{bottom:247.344000px;}
.ya3_c00476{bottom:252.228800px;}
.ya2_c00476{bottom:254.443727px;}
.ya1_c00476{bottom:255.739151px;}
.ya0_c00476{bottom:260.039486px;}
.y9f_c00476{bottom:261.735576px;}
.y9e_c00476{bottom:265.136649px;}
.y9d_c00476{bottom:267.594000px;}
.y9c_c00476{bottom:281.089886px;}
.y9b_c00476{bottom:282.718240px;}
.y9a_c00476{bottom:286.455215px;}
.y99_c00476{bottom:289.805410px;}
.y98_c00476{bottom:291.355440px;}
.y97_c00476{bottom:295.691950px;}
.y96_c00476{bottom:297.297072px;}
.y95_c00476{bottom:298.906935px;}
.y94_c00476{bottom:308.212566px;}
.y93_c00476{bottom:310.253586px;}
.y92_c00476{bottom:315.813744px;}
.y91_c00476{bottom:319.443006px;}
.y90_c00476{bottom:320.991573px;}
.y8f_c00476{bottom:323.563203px;}
.y8e_c00476{bottom:325.011375px;}
.y8d_c00476{bottom:327.546918px;}
.y8c_c00476{bottom:329.093898px;}
.y1a_c00476{bottom:332.226000px;}
.y8b_c00476{bottom:335.056602px;}
.y8a_c00476{bottom:337.509000px;}
.y89_c00476{bottom:361.643637px;}
.y88_c00476{bottom:363.130514px;}
.y87_c00476{bottom:365.671416px;}
.y86_c00476{bottom:366.625029px;}
.y85_c00476{bottom:368.835479px;}
.y84_c00476{bottom:379.847010px;}
.y83_c00476{bottom:383.826405px;}
.y82_c00476{bottom:385.340902px;}
.y81_c00476{bottom:387.904013px;}
.y80_c00476{bottom:389.334068px;}
.y7f_c00476{bottom:390.817043px;}
.y7e_c00476{bottom:394.849897px;}
.y7d_c00476{bottom:396.309180px;}
.y7c_c00476{bottom:397.803225px;}
.y7b_c00476{bottom:402.264840px;}
.y7a_c00476{bottom:406.181798px;}
.y79_c00476{bottom:408.517500px;}
.y78_c00476{bottom:420.515438px;}
.y77_c00476{bottom:423.882412px;}
.y76_c00476{bottom:430.998884px;}
.y75_c00476{bottom:432.164563px;}
.y74_c00476{bottom:434.899053px;}
.y73_c00476{bottom:436.141053px;}
.y72_c00476{bottom:439.322333px;}
.y71_c00476{bottom:457.942200px;}
.y70_c00476{bottom:461.142443px;}
.y6f_c00476{bottom:462.700065px;}
.y6e_c00476{bottom:465.028283px;}
.y6d_c00476{bottom:466.948418px;}
.y6c_c00476{bottom:468.862778px;}
.y6b_c00476{bottom:472.746990px;}
.y6a_c00476{bottom:474.296528px;}
.y69_c00476{bottom:477.702413px;}
.y68_c00476{bottom:479.526000px;}
.y66_c00476{bottom:503.148243px;}
.y67_c00476{bottom:505.223139px;}
.y65_c00476{bottom:505.302271px;}
.y64_c00476{bottom:507.888907px;}
.y63_c00476{bottom:509.185151px;}
.y62_c00476{bottom:510.861000px;}
.y61_c00476{bottom:526.053934px;}
.y60_c00476{bottom:527.415288px;}
.y5f_c00476{bottom:530.832449px;}
.y5e_c00476{bottom:532.134542px;}
.y5d_c00476{bottom:536.871228px;}
.y5c_c00476{bottom:537.825188px;}
.y5b_c00476{bottom:539.927970px;}
.y5a_c00476{bottom:541.166708px;}
.y59_c00476{bottom:543.793650px;}
.y58_c00476{bottom:545.461075px;}
.y57_c00476{bottom:549.293937px;}
.y56_c00476{bottom:551.346000px;}
.y55_c00476{bottom:582.298680px;}
.y54_c00476{bottom:584.061877px;}
.y53_c00476{bottom:599.204149px;}
.y52_c00476{bottom:601.913839px;}
.y51_c00476{bottom:603.283567px;}
.y50_c00476{bottom:606.408567px;}
.y4f_c00476{bottom:607.805847px;}
.y4e_c00476{bottom:609.638301px;}
.y4d_c00476{bottom:613.243000px;}
.y4c_c00476{bottom:615.934855px;}
.y4b_c00476{bottom:619.960338px;}
.y4a_c00476{bottom:622.087500px;}
.y49_c00476{bottom:643.639500px;}
.y48_c00476{bottom:644.940480px;}
.y47_c00476{bottom:646.559640px;}
.y46_c00476{bottom:649.391280px;}
.y45_c00476{bottom:650.204940px;}
.y44_c00476{bottom:652.879500px;}
.y43_c00476{bottom:855.702446px;}
.y42_c00476{bottom:859.709961px;}
.y41_c00476{bottom:874.611491px;}
.y40_c00476{bottom:876.049457px;}
.y3f_c00476{bottom:882.063612px;}
.y3c_c00476{bottom:886.155948px;}
.y3b_c00476{bottom:887.371920px;}
.y3a_c00476{bottom:888.558408px;}
.y39_c00476{bottom:892.147680px;}
.y3e_c00476{bottom:893.161490px;}
.y38_c00476{bottom:893.329956px;}
.y37_c00476{bottom:897.226974px;}
.y36_c00476{bottom:899.674848px;}
.y35_c00476{bottom:902.040858px;}
.y3d_c00476{bottom:903.966944px;}
.y34_c00476{bottom:904.409244px;}
.y33_c00476{bottom:905.584500px;}
.y32_c00476{bottom:925.440263px;}
.y31_c00476{bottom:929.305636px;}
.y30_c00476{bottom:930.403598px;}
.y2f_c00476{bottom:932.504274px;}
.y2e_c00476{bottom:933.558273px;}
.y2a_c00476{bottom:934.837341px;}
.y2d_c00476{bottom:935.662257px;}
.y2c_c00476{bottom:937.768446px;}
.y2b_c00476{bottom:939.082232px;}
.y29_c00476{bottom:957.996000px;}
.y28_c00476{bottom:959.509733px;}
.y27_c00476{bottom:960.682163px;}
.y26_c00476{bottom:963.775043px;}
.y25_c00476{bottom:964.937340px;}
.y24_c00476{bottom:966.081105px;}
.y23_c00476{bottom:970.669500px;}
.y22_c00476{bottom:989.894172px;}
.y21_c00476{bottom:995.467836px;}
.y20_c00476{bottom:996.684132px;}
.y1f_c00476{bottom:997.860522px;}
.y1e_c00476{bottom:1001.051166px;}
.y1d_c00476{bottom:1002.617544px;}
.y1c_c00476{bottom:1003.793232px;}
.y1b_c00476{bottom:1005.766500px;}
.y19_c00476{bottom:1024.002021px;}
.y18_c00476{bottom:1025.386838px;}
.y17_c00476{bottom:1028.168747px;}
.y16_c00476{bottom:1029.547332px;}
.y15_c00476{bottom:1031.753292px;}
.y14_c00476{bottom:1032.230940px;}
.y13_c00476{bottom:1035.027264px;}
.y12_c00476{bottom:1038.092591px;}
.y11_c00476{bottom:1039.080576px;}
.y10_c00476{bottom:1042.461452px;}
.yf_c00476{bottom:1045.197000px;}
.ye_c00476{bottom:1072.799457px;}
.yd_c00476{bottom:1074.235551px;}
.yc_c00476{bottom:1076.775000px;}
.yb_c00476{bottom:1095.312487px;}
.ya_c00476{bottom:1096.374262px;}
.y9_c00476{bottom:1098.649838px;}
.y8_c00476{bottom:1099.768800px;}
.y7_c00476{bottom:1101.925425px;}
.y6_c00476{bottom:1104.437850px;}
.y5_c00476{bottom:1106.639362px;}
.y4_c00476{bottom:1108.819088px;}
.y3_c00476{bottom:1111.330500px;}
.y2_c00476{bottom:1181.526000px;}
.y1_c00476{bottom:1222.831500px;}
.ha_c00476{height:23.990710px;}
.h13_c00476{height:23.994263px;}
.hd_c00476{height:35.987344px;}
.h5_c00476{height:65.969963px;}
.hf_c00476{height:65.986832px;}
.h1c_c00476{height:65.994984px;}
.h1d_c00476{height:66.000000px;}
.h6_c00476{height:66.031705px;}
.h9_c00476{height:71.972131px;}
.h12_c00476{height:71.982790px;}
.h1e_c00476{height:71.985743px;}
.h8_c00476{height:77.972578px;}
.h19_c00476{height:77.981356px;}
.h16_c00476{height:78.001014px;}
.h18_c00476{height:78.004563px;}
.h14_c00476{height:83.967486px;}
.hc_c00476{height:83.970469px;}
.h1b_c00476{height:83.983366px;}
.h10_c00476{height:83.986643px;}
.h7_c00476{height:84.000000px;}
.h15_c00476{height:84.001092px;}
.h4_c00476{height:84.026246px;}
.h1f_c00476{height:84.029605px;}
.hb_c00476{height:95.962841px;}
.h11_c00476{height:95.977053px;}
.h17_c00476{height:96.005616px;}
.he_c00476{height:101.964141px;}
.h1a_c00476{height:107.978614px;}
.h3_c00476{height:108.000000px;}
.h2_c00476{height:132.000000px;}
.h0_c00476{height:1246.320000px;}
.h1_c00476{height:1246.500000px;}
.w0_c00476{width:896.100000px;}
.w1_c00476{width:896.250000px;}
.x0_c00476{left:0.000000px;}
.x1a_c00476{left:92.880000px;}
.x3_c00476{left:110.524500px;}
.xf_c00476{left:121.170000px;}
.x9d_c00476{left:153.558000px;}
.x8c_c00476{left:155.891499px;}
.x83_c00476{left:158.970000px;}
.x74_c00476{left:161.004000px;}
.x67_c00476{left:162.358500px;}
.x59_c00476{left:164.278500px;}
.x4b_c00476{left:165.882000px;}
.x44_c00476{left:167.752500px;}
.x29_c00476{left:175.962632px;}
.x31_c00476{left:183.213000px;}
.x99_c00476{left:200.573496px;}
.x10_c00476{left:209.413500px;}
.x4_c00476{left:210.981000px;}
.x68_c00476{left:214.211095px;}
.x32_c00476{left:215.826354px;}
.x2a_c00476{left:216.973389px;}
.x4c_c00476{left:218.446383px;}
.x45_c00476{left:219.582618px;}
.x84_c00476{left:221.915991px;}
.x4a_c00476{left:280.257707px;}
.x33_c00476{left:281.549065px;}
.x2b_c00476{left:282.699981px;}
.x8d_c00476{left:284.604252px;}
.x5_c00476{left:298.170000px;}
.x69_c00476{left:301.167552px;}
.x9a_c00476{left:303.402426px;}
.x89_c00476{left:308.190531px;}
.x7d_c00476{left:309.976896px;}
.x58_c00476{left:311.880063px;}
.x5a_c00476{left:313.542586px;}
.x56_c00476{left:315.624000px;}
.x4d_c00476{left:316.626604px;}
.x11_c00476{left:318.474000px;}
.x60_c00476{left:320.431100px;}
.x3f_c00476{left:321.446439px;}
.x1b_c00476{left:328.933500px;}
.xc_c00476{left:330.313500px;}
.x8a_c00476{left:341.802441px;}
.x75_c00476{left:343.758063px;}
.x34_c00476{left:347.205843px;}
.x2c_c00476{left:348.363636px;}
.x12_c00476{left:350.344500px;}
.x85_c00476{left:352.481794px;}
.x5b_c00476{left:357.770814px;}
.x4e_c00476{left:359.338350px;}
.x71_c00476{left:366.485817px;}
.x8b_c00476{left:374.205102px;}
.x7e_c00476{left:375.525734px;}
.x76_c00476{left:377.354433px;}
.x2d_c00476{left:381.274161px;}
.x1c_c00476{left:383.691687px;}
.x40_c00476{left:385.182636px;}
.x6_c00476{left:386.230500px;}
.x72_c00476{left:389.722746px;}
.x57_c00476{left:391.755293px;}
.x8e_c00476{left:394.521399px;}
.x6a_c00476{left:400.215405px;}
.x61_c00476{left:401.941104px;}
.x93_c00476{left:403.017000px;}
.x41_c00476{left:405.503795px;}
.xd_c00476{left:407.189547px;}
.x3b_c00476{left:409.826308px;}
.x9e_c00476{left:412.789509px;}
.x35_c00476{left:415.134346px;}
.x1d_c00476{left:416.317029px;}
.x4f_c00476{left:426.628492px;}
.x1_c00476{left:431.460000px;}
.x62_c00476{left:433.751295px;}
.x9f_c00476{left:436.468806px;}
.x2e_c00476{left:446.843411px;}
.x13_c00476{left:449.226000px;}
.xe_c00476{left:450.664029px;}
.x2_c00476{left:453.600000px;}
.x50_c00476{left:458.359230px;}
.x1e_c00476{left:459.784019px;}
.x86_c00476{left:462.636529px;}
.x77_c00476{left:463.870331px;}
.x6b_c00476{left:465.779276px;}
.x5c_c00476{left:468.637337px;}
.x46_c00476{left:471.087861px;}
.x42_c00476{left:476.224003px;}
.x2f_c00476{left:481.137209px;}
.x94_c00476{left:482.690334px;}
.x7_c00476{left:486.727500px;}
.x73_c00476{left:487.839666px;}
.x23_c00476{left:491.924724px;}
.x7f_c00476{left:495.539023px;}
.x63_c00476{left:503.793355px;}
.x51_c00476{left:512.222813px;}
.x43_c00476{left:516.662525px;}
.x78_c00476{left:519.719426px;}
.x36_c00476{left:523.276596px;}
.x24_c00476{left:525.100016px;}
.x64_c00476{left:533.639275px;}
.x52_c00476{left:536.658852px;}
.x14_c00476{left:539.430000px;}
.x1f_c00476{left:548.324389px;}
.x47_c00476{left:549.783087px;}
.x79_c00476{left:553.350261px;}
.x15_c00476{left:554.838000px;}
.x37_c00476{left:556.084755px;}
.x80_c00476{left:563.861240px;}
.x9b_c00476{left:568.375917px;}
.x8f_c00476{left:570.826953px;}
.x8_c00476{left:572.992500px;}
.x5d_c00476{left:578.084780px;}
.x20_c00476{left:580.969212px;}
.x6c_c00476{left:588.230702px;}
.x30_c00476{left:601.786603px;}
.x90_c00476{left:604.027848px;}
.x95_c00476{left:606.329061px;}
.xa0_c00476{left:612.313285px;}
.x25_c00476{left:613.379647px;}
.x21_c00476{left:614.721426px;}
.x9_c00476{left:617.751000px;}
.x6d_c00476{left:619.977922px;}
.x16_c00476{left:625.998000px;}
.x7a_c00476{left:632.168364px;}
.x9c_c00476{left:635.959479px;}
.x91_c00476{left:638.076585px;}
.x81_c00476{left:640.061465px;}
.x5e_c00476{left:644.538759px;}
.x26_c00476{left:646.844149px;}
.x96_c00476{left:647.900751px;}
.x3c_c00476{left:650.881147px;}
.x38_c00476{left:655.687053px;}
.x53_c00476{left:657.990899px;}
.x48_c00476{left:659.300959px;}
.x17_c00476{left:670.468500px;}
.x82_c00476{left:673.272662px;}
.x6e_c00476{left:676.878965px;}
.xa1_c00476{left:679.084947px;}
.x97_c00476{left:682.240434px;}
.x87_c00476{left:684.690254px;}
.x39_c00476{left:688.612095px;}
.x27_c00476{left:690.050400px;}
.x54_c00476{left:691.344511px;}
.x28_c00476{left:693.759558px;}
.xa_c00476{left:708.774000px;}
.x6f_c00476{left:710.500809px;}
.x65_c00476{left:715.951240px;}
.x3a_c00476{left:722.355318px;}
.x49_c00476{left:725.324869px;}
.x98_c00476{left:748.112925px;}
.xb_c00476{left:751.245000px;}
.x7b_c00476{left:752.920491px;}
.x18_c00476{left:760.207500px;}
.x92_c00476{left:761.281629px;}
.x22_c00476{left:769.390602px;}
.x88_c00476{left:777.115947px;}
.x55_c00476{left:778.876392px;}
.x5f_c00476{left:780.341820px;}
.x3d_c00476{left:781.507809px;}
.xa2_c00476{left:791.258162px;}
.x7c_c00476{left:797.246121px;}
.x70_c00476{left:798.843378px;}
.x66_c00476{left:802.204813px;}
.x19_c00476{left:804.879000px;}
.x3e_c00476{left:812.750791px;}
@media print{
.v0_c00476{vertical-align:0.000000pt;}
.ls0_c00476{letter-spacing:0.000000pt;}
.ws0_c00476{word-spacing:0.000000pt;}
.fs8_c00476{font-size:21.325076pt;}
.fs11_c00476{font-size:21.328234pt;}
.fsb_c00476{font-size:31.988750pt;}
.fs3_c00476{font-size:58.639967pt;}
.fsd_c00476{font-size:58.654961pt;}
.fs1a_c00476{font-size:58.662208pt;}
.fs1b_c00476{font-size:58.666667pt;}
.fs4_c00476{font-size:58.694849pt;}
.fs7_c00476{font-size:63.975227pt;}
.fs10_c00476{font-size:63.984702pt;}
.fs1c_c00476{font-size:63.987327pt;}
.fs6_c00476{font-size:69.308958pt;}
.fs17_c00476{font-size:69.316761pt;}
.fs14_c00476{font-size:69.334235pt;}
.fs16_c00476{font-size:69.337389pt;}
.fs12_c00476{font-size:74.637765pt;}
.fsa_c00476{font-size:74.640417pt;}
.fs19_c00476{font-size:74.651881pt;}
.fse_c00476{font-size:74.654794pt;}
.fs5_c00476{font-size:74.666667pt;}
.fs13_c00476{font-size:74.667637pt;}
.fs2_c00476{font-size:74.689996pt;}
.fs1d_c00476{font-size:74.692982pt;}
.fs9_c00476{font-size:85.300303pt;}
.fsf_c00476{font-size:85.312936pt;}
.fs15_c00476{font-size:85.338325pt;}
.fsc_c00476{font-size:90.634792pt;}
.fs18_c00476{font-size:95.980990pt;}
.fs1_c00476{font-size:96.000000pt;}
.fs0_c00476{font-size:117.333333pt;}
.y0_c00476{bottom:0.000000pt;}
.yd1_c00476{bottom:19.255909pt;}
.yd0_c00476{bottom:24.445995pt;}
.ycf_c00476{bottom:25.927163pt;}
.yce_c00476{bottom:27.535419pt;}
.ycd_c00476{bottom:32.172224pt;}
.ycc_c00476{bottom:35.671477pt;}
.ycb_c00476{bottom:36.767083pt;}
.yca_c00476{bottom:42.779045pt;}
.yc9_c00476{bottom:45.902235pt;}
.yc8_c00476{bottom:48.761333pt;}
.yc7_c00476{bottom:55.144880pt;}
.yc6_c00476{bottom:58.071440pt;}
.yc5_c00476{bottom:61.683120pt;}
.yc4_c00476{bottom:68.085920pt;}
.yc3_c00476{bottom:70.506800pt;}
.yc2_c00476{bottom:75.843360pt;}
.yc1_c00476{bottom:81.338560pt;}
.yc0_c00476{bottom:83.752000pt;}
.ybf_c00476{bottom:107.149333pt;}
.ybe_c00476{bottom:113.942888pt;}
.ybd_c00476{bottom:117.057933pt;}
.ybc_c00476{bottom:120.695515pt;}
.ybb_c00476{bottom:122.591805pt;}
.yba_c00476{bottom:124.887459pt;}
.yb9_c00476{bottom:129.359229pt;}
.yb8_c00476{bottom:131.714981pt;}
.yb7_c00476{bottom:136.114667pt;}
.yb6_c00476{bottom:149.801221pt;}
.yb5_c00476{bottom:155.290235pt;}
.yb4_c00476{bottom:156.806653pt;}
.yb3_c00476{bottom:158.285776pt;}
.yb2_c00476{bottom:161.940512pt;}
.yb1_c00476{bottom:162.507645pt;}
.yb0_c00476{bottom:166.139733pt;}
.yaf_c00476{bottom:170.012208pt;}
.yae_c00476{bottom:171.037496pt;}
.yad_c00476{bottom:173.938757pt;}
.yac_c00476{bottom:176.772765pt;}
.yab_c00476{bottom:192.674336pt;}
.yaa_c00476{bottom:200.315872pt;}
.ya9_c00476{bottom:201.557357pt;}
.ya8_c00476{bottom:202.846104pt;}
.ya7_c00476{bottom:207.673253pt;}
.ya6_c00476{bottom:212.373573pt;}
.ya4_c00476{bottom:219.618121pt;}
.ya5_c00476{bottom:219.861333pt;}
.ya3_c00476{bottom:224.203377pt;}
.ya2_c00476{bottom:226.172201pt;}
.ya1_c00476{bottom:227.323689pt;}
.ya0_c00476{bottom:231.146209pt;}
.y9f_c00476{bottom:232.653845pt;}
.y9e_c00476{bottom:235.677021pt;}
.y9d_c00476{bottom:237.861333pt;}
.y9c_c00476{bottom:249.857676pt;}
.y9b_c00476{bottom:251.305103pt;}
.y9a_c00476{bottom:254.626857pt;}
.y99_c00476{bottom:257.604809pt;}
.y98_c00476{bottom:258.982613pt;}
.y97_c00476{bottom:262.837289pt;}
.y96_c00476{bottom:264.264064pt;}
.y95_c00476{bottom:265.695053pt;}
.y94_c00476{bottom:273.966725pt;}
.y93_c00476{bottom:275.780965pt;}
.y92_c00476{bottom:280.723328pt;}
.y91_c00476{bottom:283.949339pt;}
.y90_c00476{bottom:285.325843pt;}
.y8f_c00476{bottom:287.611736pt;}
.y8e_c00476{bottom:288.899000pt;}
.y8d_c00476{bottom:291.152816pt;}
.y8c_c00476{bottom:292.527909pt;}
.y1a_c00476{bottom:295.312000pt;}
.y8b_c00476{bottom:297.828091pt;}
.y8a_c00476{bottom:300.008000pt;}
.y89_c00476{bottom:321.461011pt;}
.y88_c00476{bottom:322.782679pt;}
.y87_c00476{bottom:325.041259pt;}
.y86_c00476{bottom:325.888915pt;}
.y85_c00476{bottom:327.853759pt;}
.y84_c00476{bottom:337.641787pt;}
.y83_c00476{bottom:341.179027pt;}
.y82_c00476{bottom:342.525247pt;}
.y81_c00476{bottom:344.803567pt;}
.y80_c00476{bottom:346.074727pt;}
.y7f_c00476{bottom:347.392927pt;}
.y7e_c00476{bottom:350.977687pt;}
.y7d_c00476{bottom:352.274827pt;}
.y7c_c00476{bottom:353.602867pt;}
.y7b_c00476{bottom:357.568747pt;}
.y7a_c00476{bottom:361.050487pt;}
.y79_c00476{bottom:363.126667pt;}
.y78_c00476{bottom:373.791500pt;}
.y77_c00476{bottom:376.784367pt;}
.y76_c00476{bottom:383.110119pt;}
.y75_c00476{bottom:384.146279pt;}
.y74_c00476{bottom:386.576936pt;}
.y73_c00476{bottom:387.680936pt;}
.y72_c00476{bottom:390.508740pt;}
.y71_c00476{bottom:407.059733pt;}
.y70_c00476{bottom:409.904393pt;}
.y6f_c00476{bottom:411.288947pt;}
.y6e_c00476{bottom:413.358473pt;}
.y6d_c00476{bottom:415.065260pt;}
.y6c_c00476{bottom:416.766913pt;}
.y6b_c00476{bottom:420.219547pt;}
.y6a_c00476{bottom:421.596913pt;}
.y69_c00476{bottom:424.624367pt;}
.y68_c00476{bottom:426.245333pt;}
.y66_c00476{bottom:447.242883pt;}
.y67_c00476{bottom:449.087235pt;}
.y65_c00476{bottom:449.157575pt;}
.y64_c00476{bottom:451.456807pt;}
.y63_c00476{bottom:452.609023pt;}
.y62_c00476{bottom:454.098667pt;}
.y61_c00476{bottom:467.603497pt;}
.y60_c00476{bottom:468.813589pt;}
.y5f_c00476{bottom:471.851065pt;}
.y5e_c00476{bottom:473.008481pt;}
.y5d_c00476{bottom:477.218869pt;}
.y5c_c00476{bottom:478.066833pt;}
.y5b_c00476{bottom:479.935973pt;}
.y5a_c00476{bottom:481.037073pt;}
.y59_c00476{bottom:483.372133pt;}
.y58_c00476{bottom:484.854289pt;}
.y57_c00476{bottom:488.261277pt;}
.y56_c00476{bottom:490.085333pt;}
.y55_c00476{bottom:517.598827pt;}
.y54_c00476{bottom:519.166113pt;}
.y53_c00476{bottom:532.625911pt;}
.y52_c00476{bottom:535.034524pt;}
.y51_c00476{bottom:536.252060pt;}
.y50_c00476{bottom:539.029837pt;}
.y4f_c00476{bottom:540.271864pt;}
.y4e_c00476{bottom:541.900712pt;}
.y4d_c00476{bottom:545.104889pt;}
.y4c_c00476{bottom:547.497649pt;}
.y4b_c00476{bottom:551.075856pt;}
.y4a_c00476{bottom:552.966667pt;}
.y49_c00476{bottom:572.124000pt;}
.y48_c00476{bottom:573.280427pt;}
.y47_c00476{bottom:574.719680pt;}
.y46_c00476{bottom:577.236693pt;}
.y45_c00476{bottom:577.959947pt;}
.y44_c00476{bottom:580.337333pt;}
.y43_c00476{bottom:760.624396pt;}
.y42_c00476{bottom:764.186632pt;}
.y41_c00476{bottom:777.432436pt;}
.y40_c00476{bottom:778.710628pt;}
.y3f_c00476{bottom:784.056544pt;}
.y3c_c00476{bottom:787.694176pt;}
.y3b_c00476{bottom:788.775040pt;}
.y3a_c00476{bottom:789.829696pt;}
.y39_c00476{bottom:793.020160pt;}
.y3e_c00476{bottom:793.921324pt;}
.y38_c00476{bottom:794.071072pt;}
.y37_c00476{bottom:797.535088pt;}
.y36_c00476{bottom:799.710976pt;}
.y35_c00476{bottom:801.814096pt;}
.y3d_c00476{bottom:803.526172pt;}
.y34_c00476{bottom:803.919328pt;}
.y33_c00476{bottom:804.964000pt;}
.y32_c00476{bottom:822.613567pt;}
.y31_c00476{bottom:826.049455pt;}
.y30_c00476{bottom:827.025420pt;}
.y2f_c00476{bottom:828.892688pt;}
.y2e_c00476{bottom:829.829576pt;}
.y2a_c00476{bottom:830.966525pt;}
.y2d_c00476{bottom:831.699784pt;}
.y2c_c00476{bottom:833.571952pt;}
.y2b_c00476{bottom:834.739761pt;}
.y29_c00476{bottom:851.552000pt;}
.y28_c00476{bottom:852.897540pt;}
.y27_c00476{bottom:853.939700pt;}
.y26_c00476{bottom:856.688927pt;}
.y25_c00476{bottom:857.722080pt;}
.y24_c00476{bottom:858.738760pt;}
.y23_c00476{bottom:862.817333pt;}
.y22_c00476{bottom:879.905931pt;}
.y21_c00476{bottom:884.860299pt;}
.y20_c00476{bottom:885.941451pt;}
.y1f_c00476{bottom:886.987131pt;}
.y1e_c00476{bottom:889.823259pt;}
.y1d_c00476{bottom:891.215595pt;}
.y1c_c00476{bottom:892.260651pt;}
.y1b_c00476{bottom:894.014667pt;}
.y19_c00476{bottom:910.224019pt;}
.y18_c00476{bottom:911.454967pt;}
.y17_c00476{bottom:913.927775pt;}
.y16_c00476{bottom:915.153184pt;}
.y15_c00476{bottom:917.114037pt;}
.y14_c00476{bottom:917.538613pt;}
.y13_c00476{bottom:920.024235pt;}
.y12_c00476{bottom:922.748969pt;}
.y11_c00476{bottom:923.627179pt;}
.y10_c00476{bottom:926.632401pt;}
.yf_c00476{bottom:929.064000pt;}
.ye_c00476{bottom:953.599517pt;}
.yd_c00476{bottom:954.876045pt;}
.yc_c00476{bottom:957.133333pt;}
.yb_c00476{bottom:973.611100pt;}
.ya_c00476{bottom:974.554900pt;}
.y9_c00476{bottom:976.577633pt;}
.y8_c00476{bottom:977.572267pt;}
.y7_c00476{bottom:979.489267pt;}
.y6_c00476{bottom:981.722533pt;}
.y5_c00476{bottom:983.679433pt;}
.y4_c00476{bottom:985.616967pt;}
.y3_c00476{bottom:987.849333pt;}
.y2_c00476{bottom:1050.245333pt;}
.y1_c00476{bottom:1086.961333pt;}
.ha_c00476{height:21.325076pt;}
.h13_c00476{height:21.328234pt;}
.hd_c00476{height:31.988750pt;}
.h5_c00476{height:58.639967pt;}
.hf_c00476{height:58.654961pt;}
.h1c_c00476{height:58.662208pt;}
.h1d_c00476{height:58.666667pt;}
.h6_c00476{height:58.694849pt;}
.h9_c00476{height:63.975227pt;}
.h12_c00476{height:63.984702pt;}
.h1e_c00476{height:63.987327pt;}
.h8_c00476{height:69.308958pt;}
.h19_c00476{height:69.316761pt;}
.h16_c00476{height:69.334235pt;}
.h18_c00476{height:69.337389pt;}
.h14_c00476{height:74.637765pt;}
.hc_c00476{height:74.640417pt;}
.h1b_c00476{height:74.651881pt;}
.h10_c00476{height:74.654794pt;}
.h7_c00476{height:74.666667pt;}
.h15_c00476{height:74.667637pt;}
.h4_c00476{height:74.689996pt;}
.h1f_c00476{height:74.692982pt;}
.hb_c00476{height:85.300303pt;}
.h11_c00476{height:85.312936pt;}
.h17_c00476{height:85.338325pt;}
.he_c00476{height:90.634792pt;}
.h1a_c00476{height:95.980990pt;}
.h3_c00476{height:96.000000pt;}
.h2_c00476{height:117.333333pt;}
.h0_c00476{height:1107.840000pt;}
.h1_c00476{height:1108.000000pt;}
.w0_c00476{width:796.533333pt;}
.w1_c00476{width:796.666667pt;}
.x0_c00476{left:0.000000pt;}
.x1a_c00476{left:82.560000pt;}
.x3_c00476{left:98.244000pt;}
.xf_c00476{left:107.706667pt;}
.x9d_c00476{left:136.496000pt;}
.x8c_c00476{left:138.570221pt;}
.x83_c00476{left:141.306667pt;}
.x74_c00476{left:143.114667pt;}
.x67_c00476{left:144.318667pt;}
.x59_c00476{left:146.025333pt;}
.x4b_c00476{left:147.450667pt;}
.x44_c00476{left:149.113333pt;}
.x29_c00476{left:156.411228pt;}
.x31_c00476{left:162.856000pt;}
.x99_c00476{left:178.287552pt;}
.x10_c00476{left:186.145333pt;}
.x4_c00476{left:187.538667pt;}
.x68_c00476{left:190.409863pt;}
.x32_c00476{left:191.845648pt;}
.x2a_c00476{left:192.865235pt;}
.x4c_c00476{left:194.174563pt;}
.x45_c00476{left:195.184549pt;}
.x84_c00476{left:197.258659pt;}
.x4a_c00476{left:249.117961pt;}
.x33_c00476{left:250.265836pt;}
.x2b_c00476{left:251.288872pt;}
.x8d_c00476{left:252.981557pt;}
.x5_c00476{left:265.040000pt;}
.x69_c00476{left:267.704491pt;}
.x9a_c00476{left:269.691045pt;}
.x89_c00476{left:273.947139pt;}
.x7d_c00476{left:275.535019pt;}
.x58_c00476{left:277.226723pt;}
.x5a_c00476{left:278.704521pt;}
.x56_c00476{left:280.554667pt;}
.x4d_c00476{left:281.445871pt;}
.x11_c00476{left:283.088000pt;}
.x60_c00476{left:284.827644pt;}
.x3f_c00476{left:285.730168pt;}
.x1b_c00476{left:292.385333pt;}
.xc_c00476{left:293.612000pt;}
.x8a_c00476{left:303.824392pt;}
.x75_c00476{left:305.562723pt;}
.x34_c00476{left:308.627416pt;}
.x2c_c00476{left:309.656565pt;}
.x12_c00476{left:311.417333pt;}
.x85_c00476{left:313.317151pt;}
.x5b_c00476{left:318.018501pt;}
.x4e_c00476{left:319.411867pt;}
.x71_c00476{left:325.765171pt;}
.x8b_c00476{left:332.626757pt;}
.x7e_c00476{left:333.800652pt;}
.x76_c00476{left:335.426163pt;}
.x2d_c00476{left:338.910365pt;}
.x1c_c00476{left:341.059277pt;}
.x40_c00476{left:342.384565pt;}
.x6_c00476{left:343.316000pt;}
.x72_c00476{left:346.420219pt;}
.x57_c00476{left:348.226927pt;}
.x8e_c00476{left:350.685688pt;}
.x6a_c00476{left:355.747027pt;}
.x61_c00476{left:357.280981pt;}
.x93_c00476{left:358.237333pt;}
.x41_c00476{left:360.447817pt;}
.xd_c00476{left:361.946264pt;}
.x3b_c00476{left:364.290052pt;}
.x9e_c00476{left:366.924008pt;}
.x35_c00476{left:369.008308pt;}
.x1d_c00476{left:370.059581pt;}
.x4f_c00476{left:379.225327pt;}
.x1_c00476{left:383.520000pt;}
.x62_c00476{left:385.556707pt;}
.x9f_c00476{left:387.972272pt;}
.x2e_c00476{left:397.194143pt;}
.x13_c00476{left:399.312000pt;}
.xe_c00476{left:400.590248pt;}
.x2_c00476{left:403.200000pt;}
.x50_c00476{left:407.430427pt;}
.x1e_c00476{left:408.696905pt;}
.x86_c00476{left:411.232471pt;}
.x77_c00476{left:412.329183pt;}
.x6b_c00476{left:414.026023pt;}
.x5c_c00476{left:416.566521pt;}
.x46_c00476{left:418.744765pt;}
.x42_c00476{left:423.310225pt;}
.x2f_c00476{left:427.677519pt;}
.x94_c00476{left:429.058075pt;}
.x7_c00476{left:432.646667pt;}
.x73_c00476{left:433.635259pt;}
.x23_c00476{left:437.266421pt;}
.x7f_c00476{left:440.479132pt;}
.x63_c00476{left:447.816316pt;}
.x51_c00476{left:455.309167pt;}
.x43_c00476{left:459.255577pt;}
.x78_c00476{left:461.972823pt;}
.x36_c00476{left:465.134752pt;}
.x24_c00476{left:466.755569pt;}
.x64_c00476{left:474.346023pt;}
.x52_c00476{left:477.030091pt;}
.x14_c00476{left:479.493333pt;}
.x1f_c00476{left:487.399457pt;}
.x47_c00476{left:488.696077pt;}
.x79_c00476{left:491.866899pt;}
.x15_c00476{left:493.189333pt;}
.x37_c00476{left:494.297560pt;}
.x80_c00476{left:501.209991pt;}
.x9b_c00476{left:505.223037pt;}
.x8f_c00476{left:507.401736pt;}
.x8_c00476{left:509.326667pt;}
.x5d_c00476{left:513.853137pt;}
.x20_c00476{left:516.417077pt;}
.x6c_c00476{left:522.871735pt;}
.x30_c00476{left:534.921425pt;}
.x90_c00476{left:536.913643pt;}
.x95_c00476{left:538.959165pt;}
.xa0_c00476{left:544.278476pt;}
.x25_c00476{left:545.226353pt;}
.x21_c00476{left:546.419045pt;}
.x9_c00476{left:549.112000pt;}
.x6d_c00476{left:551.091487pt;}
.x16_c00476{left:556.442667pt;}
.x7a_c00476{left:561.927435pt;}
.x9c_c00476{left:565.297315pt;}
.x91_c00476{left:567.179187pt;}
.x81_c00476{left:568.943524pt;}
.x5e_c00476{left:572.923341pt;}
.x26_c00476{left:574.972577pt;}
.x96_c00476{left:575.911779pt;}
.x3c_c00476{left:578.561020pt;}
.x38_c00476{left:582.832936pt;}
.x53_c00476{left:584.880799pt;}
.x48_c00476{left:586.045297pt;}
.x17_c00476{left:595.972000pt;}
.x82_c00476{left:598.464588pt;}
.x6e_c00476{left:601.670191pt;}
.xa1_c00476{left:603.631064pt;}
.x97_c00476{left:606.435941pt;}
.x87_c00476{left:608.613559pt;}
.x39_c00476{left:612.099640pt;}
.x27_c00476{left:613.378133pt;}
.x54_c00476{left:614.528455pt;}
.x28_c00476{left:616.675163pt;}
.xa_c00476{left:630.021333pt;}
.x6f_c00476{left:631.556275pt;}
.x65_c00476{left:636.401103pt;}
.x3a_c00476{left:642.093616pt;}
.x49_c00476{left:644.733217pt;}
.x98_c00476{left:664.989267pt;}
.xb_c00476{left:667.773333pt;}
.x7b_c00476{left:669.262659pt;}
.x18_c00476{left:675.740000pt;}
.x92_c00476{left:676.694781pt;}
.x22_c00476{left:683.902757pt;}
.x88_c00476{left:690.769731pt;}
.x55_c00476{left:692.334571pt;}
.x5f_c00476{left:693.637173pt;}
.x3d_c00476{left:694.673608pt;}
.xa2_c00476{left:703.340588pt;}
.x7c_c00476{left:708.663219pt;}
.x70_c00476{left:710.083003pt;}
.x66_c00476{left:713.070945pt;}
.x19_c00476{left:715.448000pt;}
.x3e_c00476{left:722.445148pt;}
}





/* 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_c00477 {
    display:none;
  }
  .loading-indicator_c00477.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00477 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_c00477 { 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_c00477" -> "#page-container .classname_c00477")
 */
.pf_c00477 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00477 { /* 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_c00477.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00477 { /* 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_c00477 { /* 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_c00477 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00477 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00477 {overflow:visible;}
  }
}
.c_c00477 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00477 { /* 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_c00477:after { /* webkit #35443 */
  content: '';
}
.t_c00477:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00477 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 */
}
.__c00477 { /* 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_c00477 { /* info for Javascript */
  display:none;
}
.l_c00477 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00477 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00477 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00477: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_c00477 {
    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_c00477.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00477.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_c00477 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00477{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00477;src:url('chunks/assets/font_944db81570d4ec07251d83b9.woff2')format("woff");}.ff1_c00477{font-family:ff1_c00477;line-height:1.000000;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;}
.m1_c00477{transform:matrix(0.188660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188660,0.000000,0.000000,0.250000,0,0);}
.m2_c00477{transform:matrix(0.227795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227795,0.000000,0.000000,0.250000,0,0);}
.m3_c00477{transform:matrix(0.277270,-0.005545,0.004999,0.249950,0,0);-ms-transform:matrix(0.277270,-0.005545,0.004999,0.249950,0,0);-webkit-transform:matrix(0.277270,-0.005545,0.004999,0.249950,0,0);}
.m5_c00477{transform:matrix(0.291105,-0.009024,0.007746,0.249880,0,0);-ms-transform:matrix(0.291105,-0.009024,0.007746,0.249880,0,0);-webkit-transform:matrix(0.291105,-0.009024,0.007746,0.249880,0,0);}
.m7_c00477{transform:matrix(0.303994,-0.009424,0.007746,0.249880,0,0);-ms-transform:matrix(0.303994,-0.009424,0.007746,0.249880,0,0);-webkit-transform:matrix(0.303994,-0.009424,0.007746,0.249880,0,0);}
.m4_c00477{transform:matrix(0.326075,-0.006521,0.004999,0.249950,0,0);-ms-transform:matrix(0.326075,-0.006521,0.004999,0.249950,0,0);-webkit-transform:matrix(0.326075,-0.006521,0.004999,0.249950,0,0);}
.ma_c00477{transform:matrix(0.456726,-0.014158,0.007746,0.249880,0,0);-ms-transform:matrix(0.456726,-0.014158,0.007746,0.249880,0,0);-webkit-transform:matrix(0.456726,-0.014158,0.007746,0.249880,0,0);}
.m9_c00477{transform:matrix(0.462838,-0.014348,0.007746,0.249880,0,0);-ms-transform:matrix(0.462838,-0.014348,0.007746,0.249880,0,0);-webkit-transform:matrix(0.462838,-0.014348,0.007746,0.249880,0,0);}
.m0_c00477{transform:matrix(0.851310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.851310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.851310,0.000000,0.000000,0.250000,0,0);}
.m6_c00477{transform:matrix(0.917384,-0.028439,0.007746,0.249880,0,0);-ms-transform:matrix(0.917384,-0.028439,0.007746,0.249880,0,0);-webkit-transform:matrix(0.917384,-0.028439,0.007746,0.249880,0,0);}
.m8_c00477{transform:matrix(0.996766,-0.030900,0.007746,0.249880,0,0);-ms-transform:matrix(0.996766,-0.030900,0.007746,0.249880,0,0);-webkit-transform:matrix(0.996766,-0.030900,0.007746,0.249880,0,0);}
.v0_c00477{vertical-align:0.000000px;}
.ls0_c00477{letter-spacing:0.000000px;}
.sc__c00477{text-shadow:none;}
.sc0_c00477{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__c00477{-webkit-text-stroke:0px transparent;}
.sc0_c00477{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00477{word-spacing:0.000000px;}
.fc0_c00477{color:transparent;}
.fs0_c00477{font-size:18.000000px;}
.fs4_c00477{font-size:18.008647px;}
.fs3_c00477{font-size:24.011529px;}
.fs2_c00477{font-size:66.013199px;}
.fs1_c00477{font-size:84.000000px;}
.y0_c00477{bottom:0.000000px;}
.y8_c00477{bottom:80.724012px;}
.ya_c00477{bottom:80.724376px;}
.y9_c00477{bottom:80.724589px;}
.y7_c00477{bottom:84.641730px;}
.y6_c00477{bottom:84.642325px;}
.y5_c00477{bottom:88.026000px;}
.y3_c00477{bottom:902.077500px;}
.y4_c00477{bottom:904.733340px;}
.y2_c00477{bottom:941.493000px;}
.y1_c00477{bottom:1017.498000px;}
.h2_c00477{height:18.000000px;}
.h6_c00477{height:18.008647px;}
.h5_c00477{height:24.011529px;}
.h4_c00477{height:66.013199px;}
.h3_c00477{height:84.000000px;}
.h0_c00477{height:1246.320000px;}
.h1_c00477{height:1246.500000px;}
.w0_c00477{width:896.100000px;}
.w1_c00477{width:896.250000px;}
.x0_c00477{left:0.000000px;}
.x2_c00477{left:231.120000px;}
.x9_c00477{left:233.808693px;}
.x7_c00477{left:239.751547px;}
.x4_c00477{left:241.785000px;}
.xa_c00477{left:250.827515px;}
.x6_c00477{left:256.152000px;}
.xb_c00477{left:257.310745px;}
.x8_c00477{left:261.091554px;}
.x3_c00477{left:293.220000px;}
.x5_c00477{left:374.577000px;}
.x1_c00477{left:653.400000px;}
@media print{
.v0_c00477{vertical-align:0.000000pt;}
.ls0_c00477{letter-spacing:0.000000pt;}
.ws0_c00477{word-spacing:0.000000pt;}
.fs0_c00477{font-size:16.000000pt;}
.fs4_c00477{font-size:16.007686pt;}
.fs3_c00477{font-size:21.343582pt;}
.fs2_c00477{font-size:58.678399pt;}
.fs1_c00477{font-size:74.666667pt;}
.y0_c00477{bottom:0.000000pt;}
.y8_c00477{bottom:71.754677pt;}
.ya_c00477{bottom:71.755001pt;}
.y9_c00477{bottom:71.755191pt;}
.y7_c00477{bottom:75.237093pt;}
.y6_c00477{bottom:75.237623pt;}
.y5_c00477{bottom:78.245333pt;}
.y3_c00477{bottom:801.846667pt;}
.y4_c00477{bottom:804.207413pt;}
.y2_c00477{bottom:836.882667pt;}
.y1_c00477{bottom:904.442667pt;}
.h2_c00477{height:16.000000pt;}
.h6_c00477{height:16.007686pt;}
.h5_c00477{height:21.343582pt;}
.h4_c00477{height:58.678399pt;}
.h3_c00477{height:74.666667pt;}
.h0_c00477{height:1107.840000pt;}
.h1_c00477{height:1108.000000pt;}
.w0_c00477{width:796.533333pt;}
.w1_c00477{width:796.666667pt;}
.x0_c00477{left:0.000000pt;}
.x2_c00477{left:205.440000pt;}
.x9_c00477{left:207.829949pt;}
.x7_c00477{left:213.112487pt;}
.x4_c00477{left:214.920000pt;}
.xa_c00477{left:222.957791pt;}
.x6_c00477{left:227.690667pt;}
.xb_c00477{left:228.720663pt;}
.x8_c00477{left:232.081381pt;}
.x3_c00477{left:260.640000pt;}
.x5_c00477{left:332.957333pt;}
.x1_c00477{left:580.800000pt;}
}





/* 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_c00478 {
    display:none;
  }
  .loading-indicator_c00478.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00478 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_c00478 { 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_c00478" -> "#page-container .classname_c00478")
 */
.pf_c00478 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00478 { /* 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_c00478.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00478 { /* 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_c00478 { /* 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_c00478 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00478 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00478 {overflow:visible;}
  }
}
.c_c00478 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00478 { /* 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_c00478:after { /* webkit #35443 */
  content: '';
}
.t_c00478:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00478 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 */
}
.__c00478 { /* 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_c00478 { /* info for Javascript */
  display:none;
}
.l_c00478 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00478 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00478 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00478: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_c00478 {
    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_c00478.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00478.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_c00478 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00478{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00478;src:url('chunks/assets/font_c605e72f209fc835e906f064.woff2')format("woff");}.ff1_c00478{font-family:ff1_c00478;line-height:1.000000;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;}
.mf7_c00478{transform:matrix(0.016757,0.000671,-0.010002,0.249800,0,0);-ms-transform:matrix(0.016757,0.000671,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.016757,0.000671,-0.010002,0.249800,0,0);}
.m10c_c00478{transform:matrix(0.027016,0.001136,-0.010501,0.249779,0,0);-ms-transform:matrix(0.027016,0.001136,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.027016,0.001136,-0.010501,0.249779,0,0);}
.ma1_c00478{transform:matrix(0.107351,0.002898,-0.006748,0.249909,0,0);-ms-transform:matrix(0.107351,0.002898,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.107351,0.002898,-0.006748,0.249909,0,0);}
.mac_c00478{transform:matrix(0.118214,0.003787,-0.008004,0.249872,0,0);-ms-transform:matrix(0.118214,0.003787,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.118214,0.003787,-0.008004,0.249872,0,0);}
.m24_c00478{transform:matrix(0.118501,0.002844,-0.005998,0.249928,0,0);-ms-transform:matrix(0.118501,0.002844,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.118501,0.002844,-0.005998,0.249928,0,0);}
.mad_c00478{transform:matrix(0.120228,0.003851,-0.008004,0.249872,0,0);-ms-transform:matrix(0.120228,0.003851,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.120228,0.003851,-0.008004,0.249872,0,0);}
.m62_c00478{transform:matrix(0.121155,0.001575,-0.003250,0.249979,0,0);-ms-transform:matrix(0.121155,0.001575,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.121155,0.001575,-0.003250,0.249979,0,0);}
.m25_c00478{transform:matrix(0.122625,0.002943,-0.005998,0.249928,0,0);-ms-transform:matrix(0.122625,0.002943,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.122625,0.002943,-0.005998,0.249928,0,0);}
.mdc_c00478{transform:matrix(0.122627,0.005155,-0.010501,0.249779,0,0);-ms-transform:matrix(0.122627,0.005155,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.122627,0.005155,-0.010501,0.249779,0,0);}
.m93_c00478{transform:matrix(0.122676,0.003803,-0.007746,0.249880,0,0);-ms-transform:matrix(0.122676,0.003803,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.122676,0.003803,-0.007746,0.249880,0,0);}
.mf9_c00478{transform:matrix(0.124434,0.004360,-0.008753,0.249847,0,0);-ms-transform:matrix(0.124434,0.004360,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.124434,0.004360,-0.008753,0.249847,0,0);}
.m61_c00478{transform:matrix(0.127269,0.001655,-0.003250,0.249979,0,0);-ms-transform:matrix(0.127269,0.001655,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.127269,0.001655,-0.003250,0.249979,0,0);}
.mf8_c00478{transform:matrix(0.129491,0.004537,-0.008753,0.249847,0,0);-ms-transform:matrix(0.129491,0.004537,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.129491,0.004537,-0.008753,0.249847,0,0);}
.m30_c00478{transform:matrix(0.129719,0.002854,-0.005499,0.249940,0,0);-ms-transform:matrix(0.129719,0.002854,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.129719,0.002854,-0.005499,0.249940,0,0);}
.maf_c00478{transform:matrix(0.130033,0.004165,-0.008004,0.249872,0,0);-ms-transform:matrix(0.130033,0.004165,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.130033,0.004165,-0.008004,0.249872,0,0);}
.m6d_c00478{transform:matrix(0.132095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132095,0.000000,0.000000,0.250000,0,0);}
.m4d_c00478{transform:matrix(0.132224,0.003306,-0.006248,0.249922,0,0);-ms-transform:matrix(0.132224,0.003306,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.132224,0.003306,-0.006248,0.249922,0,0);}
.md3_c00478{transform:matrix(0.134058,0.002681,-0.004999,0.249950,0,0);-ms-transform:matrix(0.134058,0.002681,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.134058,0.002681,-0.004999,0.249950,0,0);}
.m101_c00478{transform:matrix(0.134701,0.005663,-0.010501,0.249779,0,0);-ms-transform:matrix(0.134701,0.005663,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.134701,0.005663,-0.010501,0.249779,0,0);}
.m16_c00478{transform:matrix(0.137045,0.002604,-0.004749,0.249955,0,0);-ms-transform:matrix(0.137045,0.002604,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.137045,0.002604,-0.004749,0.249955,0,0);}
.m71_c00478{transform:matrix(0.137133,0.002468,-0.004499,0.249960,0,0);-ms-transform:matrix(0.137133,0.002468,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.137133,0.002468,-0.004499,0.249960,0,0);}
.m6c_c00478{transform:matrix(0.137155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137155,0.000000,0.000000,0.250000,0,0);}
.ma3_c00478{transform:matrix(0.142018,0.003834,-0.006748,0.249909,0,0);-ms-transform:matrix(0.142018,0.003834,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.142018,0.003834,-0.006748,0.249909,0,0);}
.mbb_c00478{transform:matrix(0.142468,0.004991,-0.008753,0.249847,0,0);-ms-transform:matrix(0.142468,0.004991,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.142468,0.004991,-0.008753,0.249847,0,0);}
.m67_c00478{transform:matrix(0.143152,0.003292,-0.005748,0.249934,0,0);-ms-transform:matrix(0.143152,0.003292,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.143152,0.003292,-0.005748,0.249934,0,0);}
.md2_c00478{transform:matrix(0.144571,0.002891,-0.004999,0.249950,0,0);-ms-transform:matrix(0.144571,0.002891,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.144571,0.002891,-0.004999,0.249950,0,0);}
.md6_c00478{transform:matrix(0.145491,0.002910,-0.004999,0.249950,0,0);-ms-transform:matrix(0.145491,0.002910,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.145491,0.002910,-0.004999,0.249950,0,0);}
.m78_c00478{transform:matrix(0.146003,0.004088,-0.006997,0.249902,0,0);-ms-transform:matrix(0.146003,0.004088,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.146003,0.004088,-0.006997,0.249902,0,0);}
.m31_c00478{transform:matrix(0.147839,0.003252,-0.005499,0.249940,0,0);-ms-transform:matrix(0.147839,0.003252,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.147839,0.003252,-0.005499,0.249940,0,0);}
.mc4_c00478{transform:matrix(0.151300,0.004085,-0.006748,0.249909,0,0);-ms-transform:matrix(0.151300,0.004085,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.151300,0.004085,-0.006748,0.249909,0,0);}
.m9f_c00478{transform:matrix(0.152047,0.004713,-0.007746,0.249880,0,0);-ms-transform:matrix(0.152047,0.004713,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.152047,0.004713,-0.007746,0.249880,0,0);}
.mca_c00478{transform:matrix(0.155128,0.004188,-0.006748,0.249909,0,0);-ms-transform:matrix(0.155128,0.004188,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.155128,0.004188,-0.006748,0.249909,0,0);}
.mdd_c00478{transform:matrix(0.162222,0.006820,-0.010501,0.249779,0,0);-ms-transform:matrix(0.162222,0.006820,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.162222,0.006820,-0.010501,0.249779,0,0);}
.m94_c00478{transform:matrix(0.162287,0.005031,-0.007746,0.249880,0,0);-ms-transform:matrix(0.162287,0.005031,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.162287,0.005031,-0.007746,0.249880,0,0);}
.m84_c00478{transform:matrix(0.162341,0.004546,-0.006997,0.249902,0,0);-ms-transform:matrix(0.162341,0.004546,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.162341,0.004546,-0.006997,0.249902,0,0);}
.m15_c00478{transform:matrix(0.162884,0.003421,-0.005249,0.249945,0,0);-ms-transform:matrix(0.162884,0.003421,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.162884,0.003421,-0.005249,0.249945,0,0);}
.m14_c00478{transform:matrix(0.164849,0.003462,-0.005249,0.249945,0,0);-ms-transform:matrix(0.164849,0.003462,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.164849,0.003462,-0.005249,0.249945,0,0);}
.m0_c00478{transform:matrix(0.166445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166445,0.000000,0.000000,0.250000,0,0);}
.ma8_c00478{transform:matrix(0.169323,0.004572,-0.006748,0.249909,0,0);-ms-transform:matrix(0.169323,0.004572,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.169323,0.004572,-0.006748,0.249909,0,0);}
.m2_c00478{transform:matrix(0.173395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173395,0.000000,0.000000,0.250000,0,0);}
.maa_c00478{transform:matrix(0.173512,0.004685,-0.006748,0.249909,0,0);-ms-transform:matrix(0.173512,0.004685,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.173512,0.004685,-0.006748,0.249909,0,0);}
.m46_c00478{transform:matrix(0.174760,0.004194,-0.005998,0.249928,0,0);-ms-transform:matrix(0.174760,0.004194,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.174760,0.004194,-0.005998,0.249928,0,0);}
.m4f_c00478{transform:matrix(0.174795,0.004370,-0.006248,0.249922,0,0);-ms-transform:matrix(0.174795,0.004370,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.174795,0.004370,-0.006248,0.249922,0,0);}
.m17_c00478{transform:matrix(0.175718,0.003339,-0.004749,0.249955,0,0);-ms-transform:matrix(0.175718,0.003339,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.175718,0.003339,-0.004749,0.249955,0,0);}
.ma5_c00478{transform:matrix(0.176141,0.004756,-0.006748,0.249909,0,0);-ms-transform:matrix(0.176141,0.004756,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.176141,0.004756,-0.006748,0.249909,0,0);}
.m5c_c00478{transform:matrix(0.176795,0.004420,-0.006248,0.249922,0,0);-ms-transform:matrix(0.176795,0.004420,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.176795,0.004420,-0.006248,0.249922,0,0);}
.m1c_c00478{transform:matrix(0.176818,0.003360,-0.004749,0.249955,0,0);-ms-transform:matrix(0.176818,0.003360,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.176818,0.003360,-0.004749,0.249955,0,0);}
.mce_c00478{transform:matrix(0.179571,0.006112,-0.008504,0.249855,0,0);-ms-transform:matrix(0.179571,0.006112,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.179571,0.006112,-0.008504,0.249855,0,0);}
.m73_c00478{transform:matrix(0.180401,0.003247,-0.004499,0.249960,0,0);-ms-transform:matrix(0.180401,0.003247,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.180401,0.003247,-0.004499,0.249960,0,0);}
.m5a_c00478{transform:matrix(0.180544,0.004514,-0.006248,0.249922,0,0);-ms-transform:matrix(0.180544,0.004514,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.180544,0.004514,-0.006248,0.249922,0,0);}
.mef_c00478{transform:matrix(0.183033,0.007329,-0.010002,0.249800,0,0);-ms-transform:matrix(0.183033,0.007329,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.183033,0.007329,-0.010002,0.249800,0,0);}
.ma4_c00478{transform:matrix(0.183953,0.004967,-0.006748,0.249909,0,0);-ms-transform:matrix(0.183953,0.004967,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.183953,0.004967,-0.006748,0.249909,0,0);}
.m7f_c00478{transform:matrix(0.186017,0.005208,-0.006997,0.249902,0,0);-ms-transform:matrix(0.186017,0.005208,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.186017,0.005208,-0.006997,0.249902,0,0);}
.m7_c00478{transform:matrix(0.187170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187170,0.000000,0.000000,0.250000,0,0);}
.m79_c00478{transform:matrix(0.189351,0.005302,-0.006997,0.249902,0,0);-ms-transform:matrix(0.189351,0.005302,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.189351,0.005302,-0.006997,0.249902,0,0);}
.mb9_c00478{transform:matrix(0.190208,0.006664,-0.008753,0.249847,0,0);-ms-transform:matrix(0.190208,0.006664,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.190208,0.006664,-0.008753,0.249847,0,0);}
.m68_c00478{transform:matrix(0.190755,0.004387,-0.005748,0.249934,0,0);-ms-transform:matrix(0.190755,0.004387,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.190755,0.004387,-0.005748,0.249934,0,0);}
.m13_c00478{transform:matrix(0.191818,0.004028,-0.005249,0.249945,0,0);-ms-transform:matrix(0.191818,0.004028,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.191818,0.004028,-0.005249,0.249945,0,0);}
.mc5_c00478{transform:matrix(0.192350,0.005193,-0.006748,0.249909,0,0);-ms-transform:matrix(0.192350,0.005193,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.192350,0.005193,-0.006748,0.249909,0,0);}
.mf_c00478{transform:matrix(0.192353,0.004039,-0.005249,0.249945,0,0);-ms-transform:matrix(0.192353,0.004039,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.192353,0.004039,-0.005249,0.249945,0,0);}
.mb4_c00478{transform:matrix(0.193056,0.006184,-0.008004,0.249872,0,0);-ms-transform:matrix(0.193056,0.006184,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.193056,0.006184,-0.008004,0.249872,0,0);}
.mb8_c00478{transform:matrix(0.193706,0.006205,-0.008004,0.249872,0,0);-ms-transform:matrix(0.193706,0.006205,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.193706,0.006205,-0.008004,0.249872,0,0);}
.m9b_c00478{transform:matrix(0.194447,0.006028,-0.007746,0.249880,0,0);-ms-transform:matrix(0.194447,0.006028,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.194447,0.006028,-0.007746,0.249880,0,0);}
.mab_c00478{transform:matrix(0.195024,0.005266,-0.006748,0.249909,0,0);-ms-transform:matrix(0.195024,0.005266,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.195024,0.005266,-0.006748,0.249909,0,0);}
.m28_c00478{transform:matrix(0.195489,0.004692,-0.005998,0.249928,0,0);-ms-transform:matrix(0.195489,0.004692,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.195489,0.004692,-0.005998,0.249928,0,0);}
.m40_c00478{transform:matrix(0.196004,0.004704,-0.005998,0.249928,0,0);-ms-transform:matrix(0.196004,0.004704,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.196004,0.004704,-0.005998,0.249928,0,0);}
.mfe_c00478{transform:matrix(0.196674,0.006890,-0.008753,0.249847,0,0);-ms-transform:matrix(0.196674,0.006890,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.196674,0.006890,-0.008753,0.249847,0,0);}
.me0_c00478{transform:matrix(0.197735,0.008313,-0.010501,0.249779,0,0);-ms-transform:matrix(0.197735,0.008313,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.197735,0.008313,-0.010501,0.249779,0,0);}
.me5_c00478{transform:matrix(0.198370,0.008340,-0.010501,0.249779,0,0);-ms-transform:matrix(0.198370,0.008340,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.198370,0.008340,-0.010501,0.249779,0,0);}
.mdf_c00478{transform:matrix(0.199184,0.008374,-0.010501,0.249779,0,0);-ms-transform:matrix(0.199184,0.008374,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.199184,0.008374,-0.010501,0.249779,0,0);}
.mb6_c00478{transform:matrix(0.199228,0.006382,-0.008004,0.249872,0,0);-ms-transform:matrix(0.199228,0.006382,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.199228,0.006382,-0.008004,0.249872,0,0);}
.mfb_c00478{transform:matrix(0.199687,0.006996,-0.008753,0.249847,0,0);-ms-transform:matrix(0.199687,0.006996,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.199687,0.006996,-0.008753,0.249847,0,0);}
.m5f_c00478{transform:matrix(0.202832,0.005071,-0.006248,0.249922,0,0);-ms-transform:matrix(0.202832,0.005071,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.202832,0.005071,-0.006248,0.249922,0,0);}
.m50_c00478{transform:matrix(0.202902,0.005073,-0.006248,0.249922,0,0);-ms-transform:matrix(0.202902,0.005073,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.202902,0.005073,-0.006248,0.249922,0,0);}
.ma9_c00478{transform:matrix(0.203686,0.005500,-0.006748,0.249909,0,0);-ms-transform:matrix(0.203686,0.005500,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.203686,0.005500,-0.006748,0.249909,0,0);}
.m85_c00478{transform:matrix(0.205120,0.005743,-0.006997,0.249902,0,0);-ms-transform:matrix(0.205120,0.005743,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.205120,0.005743,-0.006997,0.249902,0,0);}
.m42_c00478{transform:matrix(0.205326,0.004928,-0.005998,0.249928,0,0);-ms-transform:matrix(0.205326,0.004928,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.205326,0.004928,-0.005998,0.249928,0,0);}
.m3a_c00478{transform:matrix(0.205335,0.004517,-0.005499,0.249940,0,0);-ms-transform:matrix(0.205335,0.004517,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.205335,0.004517,-0.005499,0.249940,0,0);}
.m55_c00478{transform:matrix(0.206031,0.005151,-0.006248,0.249922,0,0);-ms-transform:matrix(0.206031,0.005151,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.206031,0.005151,-0.006248,0.249922,0,0);}
.mb2_c00478{transform:matrix(0.206154,0.006604,-0.008004,0.249872,0,0);-ms-transform:matrix(0.206154,0.006604,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.206154,0.006604,-0.008004,0.249872,0,0);}
.me1_c00478{transform:matrix(0.206418,0.008678,-0.010501,0.249779,0,0);-ms-transform:matrix(0.206418,0.008678,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.206418,0.008678,-0.010501,0.249779,0,0);}
.ma6_c00478{transform:matrix(0.206585,0.005578,-0.006748,0.249909,0,0);-ms-transform:matrix(0.206585,0.005578,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.206585,0.005578,-0.006748,0.249909,0,0);}
.m2b_c00478{transform:matrix(0.207365,0.004977,-0.005998,0.249928,0,0);-ms-transform:matrix(0.207365,0.004977,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.207365,0.004977,-0.005998,0.249928,0,0);}
.m3c_c00478{transform:matrix(0.207390,0.004563,-0.005499,0.249940,0,0);-ms-transform:matrix(0.207390,0.004563,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.207390,0.004563,-0.005499,0.249940,0,0);}
.m105_c00478{transform:matrix(0.207996,0.008745,-0.010501,0.249779,0,0);-ms-transform:matrix(0.207996,0.008745,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.207996,0.008745,-0.010501,0.249779,0,0);}
.ma7_c00478{transform:matrix(0.209014,0.005643,-0.006748,0.249909,0,0);-ms-transform:matrix(0.209014,0.005643,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.209014,0.005643,-0.006748,0.249909,0,0);}
.me6_c00478{transform:matrix(0.209070,0.008790,-0.010501,0.249779,0,0);-ms-transform:matrix(0.209070,0.008790,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.209070,0.008790,-0.010501,0.249779,0,0);}
.mbf_c00478{transform:matrix(0.209172,0.007328,-0.008753,0.249847,0,0);-ms-transform:matrix(0.209172,0.007328,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.209172,0.007328,-0.008753,0.249847,0,0);}
.m98_c00478{transform:matrix(0.209719,0.006501,-0.007746,0.249880,0,0);-ms-transform:matrix(0.209719,0.006501,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.209719,0.006501,-0.007746,0.249880,0,0);}
.mf3_c00478{transform:matrix(0.209722,0.008397,-0.010002,0.249800,0,0);-ms-transform:matrix(0.209722,0.008397,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.209722,0.008397,-0.010002,0.249800,0,0);}
.md0_c00478{transform:matrix(0.209814,0.007141,-0.008504,0.249855,0,0);-ms-transform:matrix(0.209814,0.007141,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.209814,0.007141,-0.008504,0.249855,0,0);}
.m44_c00478{transform:matrix(0.209875,0.005037,-0.005998,0.249928,0,0);-ms-transform:matrix(0.209875,0.005037,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.209875,0.005037,-0.005998,0.249928,0,0);}
.mf0_c00478{transform:matrix(0.211511,0.008469,-0.010002,0.249800,0,0);-ms-transform:matrix(0.211511,0.008469,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.211511,0.008469,-0.010002,0.249800,0,0);}
.m9c_c00478{transform:matrix(0.211558,0.006558,-0.007746,0.249880,0,0);-ms-transform:matrix(0.211558,0.006558,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.211558,0.006558,-0.007746,0.249880,0,0);}
.m108_c00478{transform:matrix(0.212322,0.008926,-0.010501,0.249779,0,0);-ms-transform:matrix(0.212322,0.008926,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.212322,0.008926,-0.010501,0.249779,0,0);}
.md9_c00478{transform:matrix(0.212468,0.004249,-0.004999,0.249950,0,0);-ms-transform:matrix(0.212468,0.004249,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.212468,0.004249,-0.004999,0.249950,0,0);}
.m76_c00478{transform:matrix(0.212856,0.003831,-0.004499,0.249960,0,0);-ms-transform:matrix(0.212856,0.003831,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.212856,0.003831,-0.004499,0.249960,0,0);}
.m33_c00478{transform:matrix(0.213753,0.004703,-0.005499,0.249940,0,0);-ms-transform:matrix(0.213753,0.004703,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.213753,0.004703,-0.005499,0.249940,0,0);}
.mde_c00478{transform:matrix(0.214730,0.009028,-0.010501,0.249779,0,0);-ms-transform:matrix(0.214730,0.009028,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.214730,0.009028,-0.010501,0.249779,0,0);}
.m58_c00478{transform:matrix(0.215083,0.005377,-0.006248,0.249922,0,0);-ms-transform:matrix(0.215083,0.005377,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.215083,0.005377,-0.006248,0.249922,0,0);}
.me8_c00478{transform:matrix(0.216124,0.009086,-0.010501,0.249779,0,0);-ms-transform:matrix(0.216124,0.009086,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.216124,0.009086,-0.010501,0.249779,0,0);}
.m65_c00478{transform:matrix(0.216777,0.002818,-0.003250,0.249979,0,0);-ms-transform:matrix(0.216777,0.002818,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.216777,0.002818,-0.003250,0.249979,0,0);}
.mf1_c00478{transform:matrix(0.216871,0.008684,-0.010002,0.249800,0,0);-ms-transform:matrix(0.216871,0.008684,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.216871,0.008684,-0.010002,0.249800,0,0);}
.m39_c00478{transform:matrix(0.217232,0.004779,-0.005499,0.249940,0,0);-ms-transform:matrix(0.217232,0.004779,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.217232,0.004779,-0.005499,0.249940,0,0);}
.m56_c00478{transform:matrix(0.218187,0.005455,-0.006248,0.249922,0,0);-ms-transform:matrix(0.218187,0.005455,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.218187,0.005455,-0.006248,0.249922,0,0);}
.mfa_c00478{transform:matrix(0.218381,0.007651,-0.008753,0.249847,0,0);-ms-transform:matrix(0.218381,0.007651,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.218381,0.007651,-0.008753,0.249847,0,0);}
.m5e_c00478{transform:matrix(0.218872,0.005472,-0.006248,0.249922,0,0);-ms-transform:matrix(0.218872,0.005472,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.218872,0.005472,-0.006248,0.249922,0,0);}
.m45_c00478{transform:matrix(0.219472,0.005267,-0.005998,0.249928,0,0);-ms-transform:matrix(0.219472,0.005267,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.219472,0.005267,-0.005998,0.249928,0,0);}
.mee_c00478{transform:matrix(0.221283,0.008860,-0.010002,0.249800,0,0);-ms-transform:matrix(0.221283,0.008860,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.221283,0.008860,-0.010002,0.249800,0,0);}
.m26_c00478{transform:matrix(0.221946,0.005327,-0.005998,0.249928,0,0);-ms-transform:matrix(0.221946,0.005327,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.221946,0.005327,-0.005998,0.249928,0,0);}
.m35_c00478{transform:matrix(0.221991,0.004884,-0.005499,0.249940,0,0);-ms-transform:matrix(0.221991,0.004884,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.221991,0.004884,-0.005499,0.249940,0,0);}
.m27_c00478{transform:matrix(0.222366,0.005337,-0.005998,0.249928,0,0);-ms-transform:matrix(0.222366,0.005337,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.222366,0.005337,-0.005998,0.249928,0,0);}
.mb1_c00478{transform:matrix(0.223161,0.007148,-0.008004,0.249872,0,0);-ms-transform:matrix(0.223161,0.007148,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.223161,0.007148,-0.008004,0.249872,0,0);}
.m18_c00478{transform:matrix(0.223610,0.004249,-0.004749,0.249955,0,0);-ms-transform:matrix(0.223610,0.004249,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.223610,0.004249,-0.004749,0.249955,0,0);}
.m64_c00478{transform:matrix(0.223926,0.002911,-0.003250,0.249979,0,0);-ms-transform:matrix(0.223926,0.002911,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.223926,0.002911,-0.003250,0.249979,0,0);}
.m5_c00478{transform:matrix(0.224070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224070,0.000000,0.000000,0.250000,0,0);}
.m96_c00478{transform:matrix(0.225072,0.006977,-0.007746,0.249880,0,0);-ms-transform:matrix(0.225072,0.006977,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.225072,0.006977,-0.007746,0.249880,0,0);}
.mb_c00478{transform:matrix(0.225295,0.004731,-0.005249,0.249945,0,0);-ms-transform:matrix(0.225295,0.004731,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.225295,0.004731,-0.005249,0.249945,0,0);}
.mb3_c00478{transform:matrix(0.225404,0.007220,-0.008004,0.249872,0,0);-ms-transform:matrix(0.225404,0.007220,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.225404,0.007220,-0.008004,0.249872,0,0);}
.m2e_c00478{transform:matrix(0.225595,0.005414,-0.005998,0.249928,0,0);-ms-transform:matrix(0.225595,0.005414,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.225595,0.005414,-0.005998,0.249928,0,0);}
.mf2_c00478{transform:matrix(0.225664,0.009036,-0.010002,0.249800,0,0);-ms-transform:matrix(0.225664,0.009036,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.225664,0.009036,-0.010002,0.249800,0,0);}
.m6e_c00478{transform:matrix(0.225695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225695,0.000000,0.000000,0.250000,0,0);}
.mbd_c00478{transform:matrix(0.225801,0.007911,-0.008753,0.249847,0,0);-ms-transform:matrix(0.225801,0.007911,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.225801,0.007911,-0.008753,0.249847,0,0);}
.m37_c00478{transform:matrix(0.226300,0.004979,-0.005499,0.249940,0,0);-ms-transform:matrix(0.226300,0.004979,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.226300,0.004979,-0.005499,0.249940,0,0);}
.m109_c00478{transform:matrix(0.226390,0.009518,-0.010501,0.249779,0,0);-ms-transform:matrix(0.226390,0.009518,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.226390,0.009518,-0.010501,0.249779,0,0);}
.m59_c00478{transform:matrix(0.226504,0.005663,-0.006248,0.249922,0,0);-ms-transform:matrix(0.226504,0.005663,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.226504,0.005663,-0.006248,0.249922,0,0);}
.mf5_c00478{transform:matrix(0.227373,0.009104,-0.010002,0.249800,0,0);-ms-transform:matrix(0.227373,0.009104,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.227373,0.009104,-0.010002,0.249800,0,0);}
.m2d_c00478{transform:matrix(0.227514,0.005460,-0.005998,0.249928,0,0);-ms-transform:matrix(0.227514,0.005460,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.227514,0.005460,-0.005998,0.249928,0,0);}
.m97_c00478{transform:matrix(0.227531,0.007053,-0.007746,0.249880,0,0);-ms-transform:matrix(0.227531,0.007053,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.227531,0.007053,-0.007746,0.249880,0,0);}
.mfc_c00478{transform:matrix(0.228040,0.007989,-0.008753,0.249847,0,0);-ms-transform:matrix(0.228040,0.007989,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.228040,0.007989,-0.008753,0.249847,0,0);}
.mae_c00478{transform:matrix(0.228088,0.007306,-0.008004,0.249872,0,0);-ms-transform:matrix(0.228088,0.007306,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.228088,0.007306,-0.008004,0.249872,0,0);}
.m1a_c00478{transform:matrix(0.228294,0.004338,-0.004749,0.249955,0,0);-ms-transform:matrix(0.228294,0.004338,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.228294,0.004338,-0.004749,0.249955,0,0);}
.m66_c00478{transform:matrix(0.228376,0.002969,-0.003250,0.249979,0,0);-ms-transform:matrix(0.228376,0.002969,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.228376,0.002969,-0.003250,0.249979,0,0);}
.m7b_c00478{transform:matrix(0.228410,0.006395,-0.006997,0.249902,0,0);-ms-transform:matrix(0.228410,0.006395,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.228410,0.006395,-0.006997,0.249902,0,0);}
.m7d_c00478{transform:matrix(0.228830,0.006407,-0.006997,0.249902,0,0);-ms-transform:matrix(0.228830,0.006407,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.228830,0.006407,-0.006997,0.249902,0,0);}
.m29_c00478{transform:matrix(0.229424,0.005506,-0.005998,0.249928,0,0);-ms-transform:matrix(0.229424,0.005506,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.229424,0.005506,-0.005998,0.249928,0,0);}
.m95_c00478{transform:matrix(0.229490,0.007114,-0.007746,0.249880,0,0);-ms-transform:matrix(0.229490,0.007114,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.229490,0.007114,-0.007746,0.249880,0,0);}
.me2_c00478{transform:matrix(0.229732,0.009658,-0.010501,0.249779,0,0);-ms-transform:matrix(0.229732,0.009658,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.229732,0.009658,-0.010501,0.249779,0,0);}
.m21_c00478{transform:matrix(0.229759,0.004365,-0.004749,0.249955,0,0);-ms-transform:matrix(0.229759,0.004365,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.229759,0.004365,-0.004749,0.249955,0,0);}
.mb0_c00478{transform:matrix(0.229902,0.007364,-0.008004,0.249872,0,0);-ms-transform:matrix(0.229902,0.007364,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.229902,0.007364,-0.008004,0.249872,0,0);}
.mb5_c00478{transform:matrix(0.229992,0.007367,-0.008004,0.249872,0,0);-ms-transform:matrix(0.229992,0.007367,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.229992,0.007367,-0.008004,0.249872,0,0);}
.m6f_c00478{transform:matrix(0.230770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230770,0.000000,0.000000,0.250000,0,0);}
.me4_c00478{transform:matrix(0.230776,0.009702,-0.010501,0.249779,0,0);-ms-transform:matrix(0.230776,0.009702,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.230776,0.009702,-0.010501,0.249779,0,0);}
.mff_c00478{transform:matrix(0.231143,0.008098,-0.008753,0.249847,0,0);-ms-transform:matrix(0.231143,0.008098,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.231143,0.008098,-0.008753,0.249847,0,0);}
.m3f_c00478{transform:matrix(0.232213,0.005573,-0.005998,0.249928,0,0);-ms-transform:matrix(0.232213,0.005573,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.232213,0.005573,-0.005998,0.249928,0,0);}
.m47_c00478{transform:matrix(0.232288,0.005575,-0.005998,0.249928,0,0);-ms-transform:matrix(0.232288,0.005575,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.232288,0.005575,-0.005998,0.249928,0,0);}
.m3b_c00478{transform:matrix(0.232449,0.005114,-0.005499,0.249940,0,0);-ms-transform:matrix(0.232449,0.005114,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.232449,0.005114,-0.005499,0.249940,0,0);}
.me7_c00478{transform:matrix(0.233234,0.009806,-0.010501,0.249779,0,0);-ms-transform:matrix(0.233234,0.009806,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.233234,0.009806,-0.010501,0.249779,0,0);}
.m63_c00478{transform:matrix(0.233450,0.003035,-0.003250,0.249979,0,0);-ms-transform:matrix(0.233450,0.003035,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.233450,0.003035,-0.003250,0.249979,0,0);}
.mbc_c00478{transform:matrix(0.233717,0.008188,-0.008753,0.249847,0,0);-ms-transform:matrix(0.233717,0.008188,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.233717,0.008188,-0.008753,0.249847,0,0);}
.m53_c00478{transform:matrix(0.233767,0.005844,-0.006248,0.249922,0,0);-ms-transform:matrix(0.233767,0.005844,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.233767,0.005844,-0.006248,0.249922,0,0);}
.m20_c00478{transform:matrix(0.234043,0.004447,-0.004749,0.249955,0,0);-ms-transform:matrix(0.234043,0.004447,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.234043,0.004447,-0.004749,0.249955,0,0);}
.m99_c00478{transform:matrix(0.234402,0.007266,-0.007746,0.249880,0,0);-ms-transform:matrix(0.234402,0.007266,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.234402,0.007266,-0.007746,0.249880,0,0);}
.m2c_c00478{transform:matrix(0.234972,0.005639,-0.005998,0.249928,0,0);-ms-transform:matrix(0.234972,0.005639,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.234972,0.005639,-0.005998,0.249928,0,0);}
.mfd_c00478{transform:matrix(0.235535,0.008252,-0.008753,0.249847,0,0);-ms-transform:matrix(0.235535,0.008252,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.235535,0.008252,-0.008753,0.249847,0,0);}
.md7_c00478{transform:matrix(0.236268,0.004725,-0.004999,0.249950,0,0);-ms-transform:matrix(0.236268,0.004725,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.236268,0.004725,-0.004999,0.249950,0,0);}
.m48_c00478{transform:matrix(0.237837,0.005708,-0.005998,0.249928,0,0);-ms-transform:matrix(0.237837,0.005708,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.237837,0.005708,-0.005998,0.249928,0,0);}
.mcd_c00478{transform:matrix(0.238042,0.008102,-0.008504,0.249855,0,0);-ms-transform:matrix(0.238042,0.008102,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.238042,0.008102,-0.008504,0.249855,0,0);}
.m87_c00478{transform:matrix(0.238866,0.006688,-0.006997,0.249902,0,0);-ms-transform:matrix(0.238866,0.006688,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.238866,0.006688,-0.006997,0.249902,0,0);}
.mc1_c00478{transform:matrix(0.239123,0.008378,-0.008753,0.249847,0,0);-ms-transform:matrix(0.239123,0.008378,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.239123,0.008378,-0.008753,0.249847,0,0);}
.m107_c00478{transform:matrix(0.240158,0.010097,-0.010501,0.249779,0,0);-ms-transform:matrix(0.240158,0.010097,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.240158,0.010097,-0.010501,0.249779,0,0);}
.m2f_c00478{transform:matrix(0.240771,0.005778,-0.005998,0.249928,0,0);-ms-transform:matrix(0.240771,0.005778,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.240771,0.005778,-0.005998,0.249928,0,0);}
.m2a_c00478{transform:matrix(0.240831,0.005780,-0.005998,0.249928,0,0);-ms-transform:matrix(0.240831,0.005780,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.240831,0.005780,-0.005998,0.249928,0,0);}
.m32_c00478{transform:matrix(0.241427,0.005311,-0.005499,0.249940,0,0);-ms-transform:matrix(0.241427,0.005311,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.241427,0.005311,-0.005499,0.249940,0,0);}
.m9a_c00478{transform:matrix(0.241859,0.007498,-0.007746,0.249880,0,0);-ms-transform:matrix(0.241859,0.007498,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.241859,0.007498,-0.007746,0.249880,0,0);}
.m43_c00478{transform:matrix(0.242010,0.005808,-0.005998,0.249928,0,0);-ms-transform:matrix(0.242010,0.005808,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.242010,0.005808,-0.005998,0.249928,0,0);}
.mb7_c00478{transform:matrix(0.242041,0.007753,-0.008004,0.249872,0,0);-ms-transform:matrix(0.242041,0.007753,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.242041,0.007753,-0.008004,0.249872,0,0);}
.mcf_c00478{transform:matrix(0.242180,0.008242,-0.008504,0.249855,0,0);-ms-transform:matrix(0.242180,0.008242,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.242180,0.008242,-0.008504,0.249855,0,0);}
.m69_c00478{transform:matrix(0.242556,0.005579,-0.005748,0.249934,0,0);-ms-transform:matrix(0.242556,0.005579,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.242556,0.005579,-0.005748,0.249934,0,0);}
.m10b_c00478{transform:matrix(0.243415,0.010234,-0.010501,0.249779,0,0);-ms-transform:matrix(0.243415,0.010234,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.243415,0.010234,-0.010501,0.249779,0,0);}
.m74_c00478{transform:matrix(0.244500,0.004401,-0.004499,0.249960,0,0);-ms-transform:matrix(0.244500,0.004401,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.244500,0.004401,-0.004499,0.249960,0,0);}
.m52_c00478{transform:matrix(0.245193,0.006130,-0.006248,0.249922,0,0);-ms-transform:matrix(0.245193,0.006130,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.245193,0.006130,-0.006248,0.249922,0,0);}
.m5d_c00478{transform:matrix(0.245358,0.006134,-0.006248,0.249922,0,0);-ms-transform:matrix(0.245358,0.006134,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.245358,0.006134,-0.006248,0.249922,0,0);}
.m106_c00478{transform:matrix(0.245393,0.010317,-0.010501,0.249779,0,0);-ms-transform:matrix(0.245393,0.010317,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.245393,0.010317,-0.010501,0.249779,0,0);}
.m10_c00478{transform:matrix(0.245426,0.005154,-0.005249,0.249945,0,0);-ms-transform:matrix(0.245426,0.005154,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.245426,0.005154,-0.005249,0.249945,0,0);}
.me9_c00478{transform:matrix(0.246806,0.009141,-0.009253,0.249829,0,0);-ms-transform:matrix(0.246806,0.009141,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.246806,0.009141,-0.009253,0.249829,0,0);}
.m8b_c00478{transform:matrix(0.247258,0.006923,-0.006997,0.249902,0,0);-ms-transform:matrix(0.247258,0.006923,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.247258,0.006923,-0.006997,0.249902,0,0);}
.m10a_c00478{transform:matrix(0.247327,0.010398,-0.010501,0.249779,0,0);-ms-transform:matrix(0.247327,0.010398,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.247327,0.010398,-0.010501,0.249779,0,0);}
.m104_c00478{transform:matrix(0.247566,0.010408,-0.010501,0.249779,0,0);-ms-transform:matrix(0.247566,0.010408,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.247566,0.010408,-0.010501,0.249779,0,0);}
.m1f_c00478{transform:matrix(0.247675,0.004706,-0.004749,0.249955,0,0);-ms-transform:matrix(0.247675,0.004706,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.247675,0.004706,-0.004749,0.249955,0,0);}
.m70_c00478{transform:matrix(0.247765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247765,0.000000,0.000000,0.250000,0,0);}
.mcc_c00478{transform:matrix(0.248045,0.006697,-0.006748,0.249909,0,0);-ms-transform:matrix(0.248045,0.006697,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.248045,0.006697,-0.006748,0.249909,0,0);}
.m54_c00478{transform:matrix(0.249227,0.006231,-0.006248,0.249922,0,0);-ms-transform:matrix(0.249227,0.006231,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.249227,0.006231,-0.006248,0.249922,0,0);}
.m82_c00478{transform:matrix(0.249307,0.006981,-0.006997,0.249902,0,0);-ms-transform:matrix(0.249307,0.006981,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.249307,0.006981,-0.006997,0.249902,0,0);}
.m1_c00478{transform:matrix(0.249525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249525,0.000000,0.000000,0.250000,0,0);}
.m89_c00478{transform:matrix(0.249632,0.006990,-0.006997,0.249902,0,0);-ms-transform:matrix(0.249632,0.006990,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.249632,0.006990,-0.006997,0.249902,0,0);}
.m1d_c00478{transform:matrix(0.249945,0.004749,-0.004749,0.249955,0,0);-ms-transform:matrix(0.249945,0.004749,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.249945,0.004749,-0.004749,0.249955,0,0);}
.meb_c00478{transform:matrix(0.250089,0.009263,-0.009253,0.249829,0,0);-ms-transform:matrix(0.250089,0.009263,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.250089,0.009263,-0.009253,0.249829,0,0);}
.m103_c00478{transform:matrix(0.250973,0.010551,-0.010501,0.249779,0,0);-ms-transform:matrix(0.250973,0.010551,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.250973,0.010551,-0.010501,0.249779,0,0);}
.m51_c00478{transform:matrix(0.251072,0.006277,-0.006248,0.249922,0,0);-ms-transform:matrix(0.251072,0.006277,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.251072,0.006277,-0.006248,0.249922,0,0);}
.md8_c00478{transform:matrix(0.251110,0.005022,-0.004999,0.249950,0,0);-ms-transform:matrix(0.251110,0.005022,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.251110,0.005022,-0.004999,0.249950,0,0);}
.m38_c00478{transform:matrix(0.251124,0.005525,-0.005499,0.249940,0,0);-ms-transform:matrix(0.251124,0.005525,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.251124,0.005525,-0.005499,0.249940,0,0);}
.m4_c00478{transform:matrix(0.251400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251400,0.000000,0.000000,0.250000,0,0);}
.md4_c00478{transform:matrix(0.251860,0.005037,-0.004999,0.249950,0,0);-ms-transform:matrix(0.251860,0.005037,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.251860,0.005037,-0.004999,0.249950,0,0);}
.mba_c00478{transform:matrix(0.251995,0.008829,-0.008753,0.249847,0,0);-ms-transform:matrix(0.251995,0.008829,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.251995,0.008829,-0.008753,0.249847,0,0);}
.m1b_c00478{transform:matrix(0.252324,0.004794,-0.004749,0.249955,0,0);-ms-transform:matrix(0.252324,0.004794,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.252324,0.004794,-0.004749,0.249955,0,0);}
.m75_c00478{transform:matrix(0.252474,0.004545,-0.004499,0.249960,0,0);-ms-transform:matrix(0.252474,0.004545,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.252474,0.004545,-0.004499,0.249960,0,0);}
.m57_c00478{transform:matrix(0.252476,0.006312,-0.006248,0.249922,0,0);-ms-transform:matrix(0.252476,0.006312,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.252476,0.006312,-0.006248,0.249922,0,0);}
.m60_c00478{transform:matrix(0.252496,0.006312,-0.006248,0.249922,0,0);-ms-transform:matrix(0.252496,0.006312,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.252496,0.006312,-0.006248,0.249922,0,0);}
.mc7_c00478{transform:matrix(0.252733,0.006824,-0.006748,0.249909,0,0);-ms-transform:matrix(0.252733,0.006824,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.252733,0.006824,-0.006748,0.249909,0,0);}
.m41_c00478{transform:matrix(0.253117,0.006075,-0.005998,0.249928,0,0);-ms-transform:matrix(0.253117,0.006075,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.253117,0.006075,-0.005998,0.249928,0,0);}
.m1e_c00478{transform:matrix(0.253549,0.004817,-0.004749,0.249955,0,0);-ms-transform:matrix(0.253549,0.004817,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.253549,0.004817,-0.004749,0.249955,0,0);}
.m34_c00478{transform:matrix(0.253969,0.005587,-0.005499,0.249940,0,0);-ms-transform:matrix(0.253969,0.005587,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.253969,0.005587,-0.005499,0.249940,0,0);}
.mbe_c00478{transform:matrix(0.254039,0.008900,-0.008753,0.249847,0,0);-ms-transform:matrix(0.254039,0.008900,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.254039,0.008900,-0.008753,0.249847,0,0);}
.m36_c00478{transform:matrix(0.254089,0.005590,-0.005499,0.249940,0,0);-ms-transform:matrix(0.254089,0.005590,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.254089,0.005590,-0.005499,0.249940,0,0);}
.md1_c00478{transform:matrix(0.254133,0.008649,-0.008504,0.249855,0,0);-ms-transform:matrix(0.254133,0.008649,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.254133,0.008649,-0.008504,0.249855,0,0);}
.m9e_c00478{transform:matrix(0.255082,0.007908,-0.007746,0.249880,0,0);-ms-transform:matrix(0.255082,0.007908,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.255082,0.007908,-0.007746,0.249880,0,0);}
.m11_c00478{transform:matrix(0.255154,0.005358,-0.005249,0.249945,0,0);-ms-transform:matrix(0.255154,0.005358,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.255154,0.005358,-0.005249,0.249945,0,0);}
.mc_c00478{transform:matrix(0.256613,0.005389,-0.005249,0.249945,0,0);-ms-transform:matrix(0.256613,0.005389,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.256613,0.005389,-0.005249,0.249945,0,0);}
.md5_c00478{transform:matrix(0.256864,0.005137,-0.004999,0.249950,0,0);-ms-transform:matrix(0.256864,0.005137,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.256864,0.005137,-0.004999,0.249950,0,0);}
.mc0_c00478{transform:matrix(0.256972,0.009003,-0.008753,0.249847,0,0);-ms-transform:matrix(0.256972,0.009003,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.256972,0.009003,-0.008753,0.249847,0,0);}
.m7c_c00478{transform:matrix(0.256999,0.007196,-0.006997,0.249902,0,0);-ms-transform:matrix(0.256999,0.007196,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.256999,0.007196,-0.006997,0.249902,0,0);}
.mea_c00478{transform:matrix(0.258183,0.009562,-0.009253,0.249829,0,0);-ms-transform:matrix(0.258183,0.009562,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.258183,0.009562,-0.009253,0.249829,0,0);}
.m5b_c00478{transform:matrix(0.258414,0.006460,-0.006248,0.249922,0,0);-ms-transform:matrix(0.258414,0.006460,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.258414,0.006460,-0.006248,0.249922,0,0);}
.m7a_c00478{transform:matrix(0.258434,0.007236,-0.006997,0.249902,0,0);-ms-transform:matrix(0.258434,0.007236,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.258434,0.007236,-0.006997,0.249902,0,0);}
.ma_c00478{transform:matrix(0.258863,0.005436,-0.005249,0.249945,0,0);-ms-transform:matrix(0.258863,0.005436,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.258863,0.005436,-0.005249,0.249945,0,0);}
.m81_c00478{transform:matrix(0.259658,0.007270,-0.006997,0.249902,0,0);-ms-transform:matrix(0.259658,0.007270,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.259658,0.007270,-0.006997,0.249902,0,0);}
.mda_c00478{transform:matrix(0.260148,0.005203,-0.004999,0.249950,0,0);-ms-transform:matrix(0.260148,0.005203,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.260148,0.005203,-0.004999,0.249950,0,0);}
.m77_c00478{transform:matrix(0.260178,0.004683,-0.004499,0.249960,0,0);-ms-transform:matrix(0.260178,0.004683,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.260178,0.004683,-0.004499,0.249960,0,0);}
.m6a_c00478{transform:matrix(0.261176,0.006007,-0.005748,0.249934,0,0);-ms-transform:matrix(0.261176,0.006007,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.261176,0.006007,-0.005748,0.249934,0,0);}
.md_c00478{transform:matrix(0.261787,0.005498,-0.005249,0.249945,0,0);-ms-transform:matrix(0.261787,0.005498,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.261787,0.005498,-0.005249,0.249945,0,0);}
.m9d_c00478{transform:matrix(0.261899,0.008119,-0.007746,0.249880,0,0);-ms-transform:matrix(0.261899,0.008119,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.261899,0.008119,-0.007746,0.249880,0,0);}
.m9_c00478{transform:matrix(0.262662,0.005516,-0.005249,0.249945,0,0);-ms-transform:matrix(0.262662,0.005516,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.262662,0.005516,-0.005249,0.249945,0,0);}
.m102_c00478{transform:matrix(0.263048,0.011059,-0.010501,0.249779,0,0);-ms-transform:matrix(0.263048,0.011059,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.263048,0.011059,-0.010501,0.249779,0,0);}
.m86_c00478{transform:matrix(0.263577,0.007380,-0.006997,0.249902,0,0);-ms-transform:matrix(0.263577,0.007380,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.263577,0.007380,-0.006997,0.249902,0,0);}
.mc8_c00478{transform:matrix(0.267083,0.007211,-0.006748,0.249909,0,0);-ms-transform:matrix(0.267083,0.007211,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.267083,0.007211,-0.006748,0.249909,0,0);}
.m6_c00478{transform:matrix(0.267275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267275,0.000000,0.000000,0.250000,0,0);}
.m7e_c00478{transform:matrix(0.267780,0.007498,-0.006997,0.249902,0,0);-ms-transform:matrix(0.267780,0.007498,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.267780,0.007498,-0.006997,0.249902,0,0);}
.me_c00478{transform:matrix(0.268746,0.005644,-0.005249,0.249945,0,0);-ms-transform:matrix(0.268746,0.005644,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.268746,0.005644,-0.005249,0.249945,0,0);}
.m8c_c00478{transform:matrix(0.269055,0.007534,-0.006997,0.249902,0,0);-ms-transform:matrix(0.269055,0.007534,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.269055,0.007534,-0.006997,0.249902,0,0);}
.mf4_c00478{transform:matrix(0.270144,0.010817,-0.010002,0.249800,0,0);-ms-transform:matrix(0.270144,0.010817,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.270144,0.010817,-0.010002,0.249800,0,0);}
.m19_c00478{transform:matrix(0.270521,0.005140,-0.004749,0.249955,0,0);-ms-transform:matrix(0.270521,0.005140,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.270521,0.005140,-0.004749,0.249955,0,0);}
.mec_c00478{transform:matrix(0.270834,0.010031,-0.009253,0.249829,0,0);-ms-transform:matrix(0.270834,0.010031,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.270834,0.010031,-0.009253,0.249829,0,0);}
.mc6_c00478{transform:matrix(0.271021,0.007318,-0.006748,0.249909,0,0);-ms-transform:matrix(0.271021,0.007318,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.271021,0.007318,-0.006748,0.249909,0,0);}
.m80_c00478{transform:matrix(0.271474,0.007601,-0.006997,0.249902,0,0);-ms-transform:matrix(0.271474,0.007601,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.271474,0.007601,-0.006997,0.249902,0,0);}
.m23_c00478{transform:matrix(0.271805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271805,0.000000,0.000000,0.250000,0,0);}
.m91_c00478{transform:matrix(0.273668,0.007663,-0.006997,0.249902,0,0);-ms-transform:matrix(0.273668,0.007663,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.273668,0.007663,-0.006997,0.249902,0,0);}
.mf6_c00478{transform:matrix(0.274330,0.010984,-0.010002,0.249800,0,0);-ms-transform:matrix(0.274330,0.010984,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.274330,0.010984,-0.010002,0.249800,0,0);}
.mc9_c00478{transform:matrix(0.274780,0.007419,-0.006748,0.249909,0,0);-ms-transform:matrix(0.274780,0.007419,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.274780,0.007419,-0.006748,0.249909,0,0);}
.ma0_c00478{transform:matrix(0.274843,0.008520,-0.007746,0.249880,0,0);-ms-transform:matrix(0.274843,0.008520,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.274843,0.008520,-0.007746,0.249880,0,0);}
.mcb_c00478{transform:matrix(0.275115,0.007428,-0.006748,0.249909,0,0);-ms-transform:matrix(0.275115,0.007428,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.275115,0.007428,-0.006748,0.249909,0,0);}
.m8_c00478{transform:matrix(0.275550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275550,0.000000,0.000000,0.250000,0,0);}
.m6b_c00478{transform:matrix(0.275817,0.006344,-0.005748,0.249934,0,0);-ms-transform:matrix(0.275817,0.006344,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.275817,0.006344,-0.005748,0.249934,0,0);}
.m22_c00478{transform:matrix(0.277835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277835,0.000000,0.000000,0.250000,0,0);}
.m92_c00478{transform:matrix(0.277866,0.007780,-0.006997,0.249902,0,0);-ms-transform:matrix(0.277866,0.007780,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.277866,0.007780,-0.006997,0.249902,0,0);}
.m83_c00478{transform:matrix(0.279341,0.007822,-0.006997,0.249902,0,0);-ms-transform:matrix(0.279341,0.007822,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.279341,0.007822,-0.006997,0.249902,0,0);}
.m12_c00478{transform:matrix(0.281208,0.005905,-0.005249,0.249945,0,0);-ms-transform:matrix(0.281208,0.005905,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.281208,0.005905,-0.005249,0.249945,0,0);}
.m8a_c00478{transform:matrix(0.281795,0.007890,-0.006997,0.249902,0,0);-ms-transform:matrix(0.281795,0.007890,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.281795,0.007890,-0.006997,0.249902,0,0);}
.m8d_c00478{transform:matrix(0.285138,0.007984,-0.006997,0.249902,0,0);-ms-transform:matrix(0.285138,0.007984,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.285138,0.007984,-0.006997,0.249902,0,0);}
.mc3_c00478{transform:matrix(0.285590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285590,0.000000,0.000000,0.250000,0,0);}
.m110_c00478{transform:matrix(0.286812,0.012058,-0.010501,0.249779,0,0);-ms-transform:matrix(0.286812,0.012058,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.286812,0.012058,-0.010501,0.249779,0,0);}
.m88_c00478{transform:matrix(0.297204,0.008322,-0.006997,0.249902,0,0);-ms-transform:matrix(0.297204,0.008322,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.297204,0.008322,-0.006997,0.249902,0,0);}
.mdb_c00478{transform:matrix(0.299175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299175,0.000000,0.000000,0.250000,0,0);}
.m8e_c00478{transform:matrix(0.301392,0.008439,-0.006997,0.249902,0,0);-ms-transform:matrix(0.301392,0.008439,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.301392,0.008439,-0.006997,0.249902,0,0);}
.m8f_c00478{transform:matrix(0.305645,0.008558,-0.006997,0.249902,0,0);-ms-transform:matrix(0.305645,0.008558,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.305645,0.008558,-0.006997,0.249902,0,0);}
.m3_c00478{transform:matrix(0.308635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308635,0.000000,0.000000,0.250000,0,0);}
.m4e_c00478{transform:matrix(0.318455,0.007961,-0.006248,0.249922,0,0);-ms-transform:matrix(0.318455,0.007961,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.318455,0.007961,-0.006248,0.249922,0,0);}
.ma2_c00478{transform:matrix(0.320063,0.008642,-0.006748,0.249909,0,0);-ms-transform:matrix(0.320063,0.008642,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.320063,0.008642,-0.006748,0.249909,0,0);}
.m72_c00478{transform:matrix(0.343664,0.006186,-0.004499,0.249960,0,0);-ms-transform:matrix(0.343664,0.006186,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.343664,0.006186,-0.004499,0.249960,0,0);}
.me3_c00478{transform:matrix(0.345360,0.014520,-0.010501,0.249779,0,0);-ms-transform:matrix(0.345360,0.014520,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.345360,0.014520,-0.010501,0.249779,0,0);}
.mc2_c00478{transform:matrix(0.355360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355360,0.000000,0.000000,0.250000,0,0);}
.med_c00478{transform:matrix(0.387455,0.015514,-0.010002,0.249800,0,0);-ms-transform:matrix(0.387455,0.015514,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.387455,0.015514,-0.010002,0.249800,0,0);}
.m10f_c00478{transform:matrix(0.720933,0.030310,-0.010501,0.249779,0,0);-ms-transform:matrix(0.720933,0.030310,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.720933,0.030310,-0.010501,0.249779,0,0);}
.m3e_c00478{transform:matrix(0.757872,0.016673,-0.005499,0.249940,0,0);-ms-transform:matrix(0.757872,0.016673,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.757872,0.016673,-0.005499,0.249940,0,0);}
.m10e_c00478{transform:matrix(0.874862,0.036781,-0.010501,0.249779,0,0);-ms-transform:matrix(0.874862,0.036781,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.874862,0.036781,-0.010501,0.249779,0,0);}
.m4b_c00478{transform:matrix(1.110085,0.026642,-0.005998,0.249928,0,0);-ms-transform:matrix(1.110085,0.026642,-0.005998,0.249928,0,0);-webkit-transform:matrix(1.110085,0.026642,-0.005998,0.249928,0,0);}
.m4c_c00478{transform:matrix(1.557981,0.037392,-0.005998,0.249928,0,0);-ms-transform:matrix(1.557981,0.037392,-0.005998,0.249928,0,0);-webkit-transform:matrix(1.557981,0.037392,-0.005998,0.249928,0,0);}
.m10d_c00478{transform:matrix(1.787011,0.075130,-0.010501,0.249779,0,0);-ms-transform:matrix(1.787011,0.075130,-0.010501,0.249779,0,0);-webkit-transform:matrix(1.787011,0.075130,-0.010501,0.249779,0,0);}
.m3d_c00478{transform:matrix(1.818370,0.040004,-0.005499,0.249940,0,0);-ms-transform:matrix(1.818370,0.040004,-0.005499,0.249940,0,0);-webkit-transform:matrix(1.818370,0.040004,-0.005499,0.249940,0,0);}
.m49_c00478{transform:matrix(3.033501,0.072804,-0.005998,0.249928,0,0);-ms-transform:matrix(3.033501,0.072804,-0.005998,0.249928,0,0);-webkit-transform:matrix(3.033501,0.072804,-0.005998,0.249928,0,0);}
.m4a_c00478{transform:matrix(4.146601,0.099518,-0.005998,0.249928,0,0);-ms-transform:matrix(4.146601,0.099518,-0.005998,0.249928,0,0);-webkit-transform:matrix(4.146601,0.099518,-0.005998,0.249928,0,0);}
.m100_c00478{transform:matrix(4.728709,0.165670,-0.008753,0.249847,0,0);-ms-transform:matrix(4.728709,0.165670,-0.008753,0.249847,0,0);-webkit-transform:matrix(4.728709,0.165670,-0.008753,0.249847,0,0);}
.m90_c00478{transform:matrix(5.235378,0.146591,-0.006997,0.249902,0,0);-ms-transform:matrix(5.235378,0.146591,-0.006997,0.249902,0,0);-webkit-transform:matrix(5.235378,0.146591,-0.006997,0.249902,0,0);}
.v0_c00478{vertical-align:0.000000px;}
.ls0_c00478{letter-spacing:0.000000px;}
.sc__c00478{text-shadow:none;}
.sc0_c00478{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__c00478{-webkit-text-stroke:0px transparent;}
.sc0_c00478{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00478{word-spacing:0.000000px;}
.fc0_c00478{color:transparent;}
.fs9_c00478{font-size:18.005183px;}
.fs11_c00478{font-size:18.007055px;}
.fs17_c00478{font-size:24.000000px;}
.fs21_c00478{font-size:29.988388px;}
.fs23_c00478{font-size:35.995770px;}
.fs7_c00478{font-size:36.008711px;}
.fs1b_c00478{font-size:60.000000px;}
.fs4_c00478{font-size:66.000000px;}
.fs10_c00478{font-size:66.025867px;}
.fs1f_c00478{font-size:71.985635px;}
.fs0_c00478{font-size:72.000000px;}
.fs1_c00478{font-size:72.015874px;}
.fsc_c00478{font-size:72.019041px;}
.fs18_c00478{font-size:72.026239px;}
.fsf_c00478{font-size:72.028218px;}
.fs13_c00478{font-size:72.034588px;}
.fs19_c00478{font-size:77.967116px;}
.fs16_c00478{font-size:77.969808px;}
.fs1d_c00478{font-size:77.975426px;}
.fs22_c00478{font-size:77.990834px;}
.fsd_c00478{font-size:78.000000px;}
.fse_c00478{font-size:78.012635px;}
.fs3_c00478{font-size:78.014078px;}
.fs1a_c00478{font-size:78.015598px;}
.fs6_c00478{font-size:78.018874px;}
.fs8_c00478{font-size:78.022461px;}
.fsa_c00478{font-size:78.024371px;}
.fs15_c00478{font-size:83.959040px;}
.fs20_c00478{font-size:83.967486px;}
.fs1c_c00478{font-size:83.990129px;}
.fsb_c00478{font-size:84.007098px;}
.fs5_c00478{font-size:84.024189px;}
.fs12_c00478{font-size:84.040352px;}
.fs1e_c00478{font-size:89.982043px;}
.fs14_c00478{font-size:96.034986px;}
.fs2_c00478{font-size:126.027780px;}
.y0_c00478{bottom:0.000000px;}
.y104_c00478{bottom:34.802200px;}
.y103_c00478{bottom:37.099266px;}
.y102_c00478{bottom:40.039062px;}
.yff_c00478{bottom:41.126046px;}
.y101_c00478{bottom:44.885751px;}
.yfe_c00478{bottom:44.910330px;}
.yfd_c00478{bottom:49.133157px;}
.yfc_c00478{bottom:50.523504px;}
.yfb_c00478{bottom:53.805489px;}
.yfa_c00478{bottom:57.515181px;}
.y100_c00478{bottom:58.043017px;}
.yf9_c00478{bottom:58.845048px;}
.yf8_c00478{bottom:62.112354px;}
.yf7_c00478{bottom:65.782797px;}
.yf6_c00478{bottom:66.977025px;}
.yf5_c00478{bottom:68.856000px;}
.yf4_c00478{bottom:86.670551px;}
.yf3_c00478{bottom:87.054593px;}
.yf2_c00478{bottom:88.237418px;}
.yf1_c00478{bottom:92.446395px;}
.yf0_c00478{bottom:95.946045px;}
.yef_c00478{bottom:97.515428px;}
.yee_c00478{bottom:100.525148px;}
.yed_c00478{bottom:101.581763px;}
.yec_c00478{bottom:103.146000px;}
.yeb_c00478{bottom:123.318283px;}
.yea_c00478{bottom:131.570963px;}
.ye9_c00478{bottom:132.911869px;}
.ye8_c00478{bottom:136.100252px;}
.ye7_c00478{bottom:147.713820px;}
.ye6_c00478{bottom:153.538980px;}
.ye5_c00478{bottom:157.003860px;}
.ye4_c00478{bottom:161.003160px;}
.ye3_c00478{bottom:162.786300px;}
.ye2_c00478{bottom:168.102120px;}
.ye1_c00478{bottom:174.718500px;}
.ye0_c00478{bottom:197.376185px;}
.ydf_c00478{bottom:201.463759px;}
.yde_c00478{bottom:203.553945px;}
.ydd_c00478{bottom:207.106500px;}
.ydc_c00478{bottom:221.817762px;}
.ydb_c00478{bottom:225.145044px;}
.yda_c00478{bottom:226.541943px;}
.yd9_c00478{bottom:227.949741px;}
.yd8_c00478{bottom:232.111206px;}
.yd7_c00478{bottom:233.071578px;}
.yd6_c00478{bottom:237.176280px;}
.yd5_c00478{bottom:239.094378px;}
.yd4_c00478{bottom:240.467211px;}
.yd3_c00478{bottom:243.697221px;}
.yd2_c00478{bottom:246.835188px;}
.yd1_c00478{bottom:248.134689px;}
.yd0_c00478{bottom:250.024500px;}
.yce_c00478{bottom:268.863990px;}
.ycd_c00478{bottom:269.512410px;}
.ycc_c00478{bottom:271.084590px;}
.ycb_c00478{bottom:272.359800px;}
.yca_c00478{bottom:273.038970px;}
.yc9_c00478{bottom:275.470740px;}
.yc8_c00478{bottom:277.420080px;}
.yc7_c00478{bottom:278.021310px;}
.yc6_c00478{bottom:278.914500px;}
.yc5_c00478{bottom:306.796344px;}
.yc4_c00478{bottom:307.915947px;}
.yc3_c00478{bottom:310.165608px;}
.yc2_c00478{bottom:311.552349px;}
.yc1_c00478{bottom:313.215000px;}
.ycf_c00478{bottom:331.290000px;}
.yc0_c00478{bottom:336.226308px;}
.ybf_c00478{bottom:338.912390px;}
.ybe_c00478{bottom:339.806954px;}
.ybd_c00478{bottom:342.529080px;}
.ybc_c00478{bottom:344.578987px;}
.ybb_c00478{bottom:346.052013px;}
.yba_c00478{bottom:348.704601px;}
.yb9_c00478{bottom:349.521972px;}
.yb8_c00478{bottom:350.736000px;}
.yb7_c00478{bottom:363.289500px;}
.yb6_c00478{bottom:365.750723px;}
.yb5_c00478{bottom:368.105138px;}
.yb4_c00478{bottom:369.230842px;}
.yb3_c00478{bottom:372.712905px;}
.yb2_c00478{bottom:373.913948px;}
.yb1_c00478{bottom:375.439440px;}
.yb0_c00478{bottom:376.566458px;}
.yaf_c00478{bottom:380.057445px;}
.yae_c00478{bottom:382.335000px;}
.yad_c00478{bottom:400.998252px;}
.yac_c00478{bottom:404.948604px;}
.yab_c00478{bottom:406.002684px;}
.yaa_c00478{bottom:408.789996px;}
.ya9_c00478{bottom:409.887276px;}
.ya8_c00478{bottom:412.350060px;}
.ya7_c00478{bottom:413.422524px;}
.ya6_c00478{bottom:415.522332px;}
.ya5_c00478{bottom:416.225148px;}
.ya4_c00478{bottom:417.247548px;}
.ya3_c00478{bottom:420.429036px;}
.ya2_c00478{bottom:421.387932px;}
.ya1_c00478{bottom:422.827500px;}
.ya0_c00478{bottom:445.424284px;}
.y9f_c00478{bottom:446.304876px;}
.y9e_c00478{bottom:447.804469px;}
.y9d_c00478{bottom:448.697251px;}
.y9c_c00478{bottom:451.937738px;}
.y9b_c00478{bottom:454.030170px;}
.y9a_c00478{bottom:455.174659px;}
.y99_c00478{bottom:456.966744px;}
.y98_c00478{bottom:457.791972px;}
.y97_c00478{bottom:458.382260px;}
.y96_c00478{bottom:459.006000px;}
.y95_c00478{bottom:485.502067px;}
.y94_c00478{bottom:486.731448px;}
.y93_c00478{bottom:488.392214px;}
.y92_c00478{bottom:490.311700px;}
.y91_c00478{bottom:508.814404px;}
.y90_c00478{bottom:509.849959px;}
.y8f_c00478{bottom:513.957862px;}
.y8e_c00478{bottom:517.399932px;}
.y8d_c00478{bottom:519.091695px;}
.y8c_c00478{bottom:522.180550px;}
.y8b_c00478{bottom:524.902102px;}
.y8a_c00478{bottom:527.616075px;}
.y89_c00478{bottom:528.909751px;}
.y88_c00478{bottom:530.287500px;}
.y87_c00478{bottom:562.221546px;}
.y86_c00478{bottom:563.222238px;}
.y84_c00478{bottom:583.895940px;}
.y83_c00478{bottom:586.687680px;}
.y82_c00478{bottom:588.797592px;}
.y81_c00478{bottom:590.075778px;}
.y85_c00478{bottom:590.258400px;}
.y80_c00478{bottom:590.982852px;}
.y7f_c00478{bottom:592.798008px;}
.y7e_c00478{bottom:594.052884px;}
.y7d_c00478{bottom:596.245494px;}
.y7c_c00478{bottom:597.152568px;}
.y7b_c00478{bottom:598.663770px;}
.y7a_c00478{bottom:599.512002px;}
.y79_c00478{bottom:600.756000px;}
.y78_c00478{bottom:620.063232px;}
.y77_c00478{bottom:621.333648px;}
.y76_c00478{bottom:622.612044px;}
.y75_c00478{bottom:624.736614px;}
.y74_c00478{bottom:625.872420px;}
.y73_c00478{bottom:628.390236px;}
.y72_c00478{bottom:629.645112px;}
.y71_c00478{bottom:631.195164px;}
.y70_c00478{bottom:632.147766px;}
.y6f_c00478{bottom:634.565790px;}
.y6e_c00478{bottom:635.406252px;}
.y6d_c00478{bottom:636.666000px;}
.y6c_c00478{bottom:662.883591px;}
.y6b_c00478{bottom:663.666375px;}
.y6a_c00478{bottom:665.873058px;}
.y69_c00478{bottom:667.461846px;}
.y68_c00478{bottom:667.993989px;}
.y67_c00478{bottom:668.356464px;}
.y66_c00478{bottom:668.793000px;}
.y65_c00478{bottom:702.312000px;}
.y64_c00478{bottom:737.236657px;}
.y63_c00478{bottom:738.970213px;}
.y62_c00478{bottom:740.490973px;}
.y61_c00478{bottom:741.206986px;}
.y60_c00478{bottom:742.234500px;}
.y5f_c00478{bottom:770.233470px;}
.y5e_c00478{bottom:770.936133px;}
.y5d_c00478{bottom:772.090650px;}
.y5c_c00478{bottom:773.666562px;}
.y5b_c00478{bottom:774.047787px;}
.y5a_c00478{bottom:774.631500px;}
.y59_c00478{bottom:802.045800px;}
.y58_c00478{bottom:802.865325px;}
.y57_c00478{bottom:803.709488px;}
.y56_c00478{bottom:805.370325px;}
.y55_c00478{bottom:806.391113px;}
.y54_c00478{bottom:809.455163px;}
.y53_c00478{bottom:832.340325px;}
.y52_c00478{bottom:833.244375px;}
.y51_c00478{bottom:834.061388px;}
.y50_c00478{bottom:836.005800px;}
.y4f_c00478{bottom:836.836650px;}
.y4e_c00478{bottom:837.660075px;}
.y4d_c00478{bottom:839.618325px;}
.y4c_c00478{bottom:840.975150px;}
.y4b_c00478{bottom:843.170250px;}
.y4a_c00478{bottom:845.620238px;}
.y49_c00478{bottom:847.542863px;}
.y48_c00478{bottom:848.307225px;}
.y47_c00478{bottom:848.772150px;}
.y46_c00478{bottom:849.424500px;}
.y45_c00478{bottom:863.417280px;}
.y44_c00478{bottom:864.223728px;}
.y43_c00478{bottom:867.536244px;}
.y41_c00478{bottom:869.103696px;}
.y40_c00478{bottom:870.690540px;}
.y3f_c00478{bottom:871.716072px;}
.y3e_c00478{bottom:872.576940px;}
.y3d_c00478{bottom:873.374052px;}
.y3c_c00478{bottom:874.968600px;}
.y42_c00478{bottom:875.640588px;}
.y3b_c00478{bottom:875.744436px;}
.y3a_c00478{bottom:878.383524px;}
.y39_c00478{bottom:878.933532px;}
.y38_c00478{bottom:880.477500px;}
.y37_c00478{bottom:902.128404px;}
.y34_c00478{bottom:904.334853px;}
.y33_c00478{bottom:905.057916px;}
.y32_c00478{bottom:906.062172px;}
.y36_c00478{bottom:906.364089px;}
.y31_c00478{bottom:908.018577px;}
.y30_c00478{bottom:908.987226px;}
.y2f_c00478{bottom:911.370156px;}
.y2e_c00478{bottom:912.617523px;}
.y35_c00478{bottom:913.141572px;}
.y2d_c00478{bottom:915.272967px;}
.y2c_c00478{bottom:916.009362px;}
.y2b_c00478{bottom:917.430375px;}
.y2a_c00478{bottom:917.923593px;}
.y29_c00478{bottom:919.084500px;}
.y28_c00478{bottom:941.305356px;}
.y27_c00478{bottom:942.670548px;}
.y26_c00478{bottom:943.202052px;}
.y25_c00478{bottom:945.038628px;}
.y24_c00478{bottom:945.822960px;}
.y23_c00478{bottom:946.356336px;}
.y22_c00478{bottom:948.441996px;}
.y21_c00478{bottom:949.516884px;}
.y20_c00478{bottom:950.845356px;}
.y1f_c00478{bottom:952.937496px;}
.y1e_c00478{bottom:953.652204px;}
.y1d_c00478{bottom:954.724500px;}
.y1c_c00478{bottom:983.854500px;}
.y1b_c00478{bottom:1011.449044px;}
.y1a_c00478{bottom:1012.280731px;}
.y19_c00478{bottom:1013.216415px;}
.y18_c00478{bottom:1015.215718px;}
.y17_c00478{bottom:1016.903859px;}
.y16_c00478{bottom:1017.701460px;}
.y15_c00478{bottom:1019.414310px;}
.y14_c00478{bottom:1020.264180px;}
.y13_c00478{bottom:1021.801954px;}
.y12_c00478{bottom:1022.947455px;}
.y11_c00478{bottom:1023.739726px;}
.y10_c00478{bottom:1024.383000px;}
.yf_c00478{bottom:1048.596879px;}
.ye_c00478{bottom:1050.253942px;}
.yd_c00478{bottom:1051.130324px;}
.yc_c00478{bottom:1081.290879px;}
.yb_c00478{bottom:1082.459245px;}
.ya_c00478{bottom:1083.395174px;}
.y9_c00478{bottom:1084.270747px;}
.y8_c00478{bottom:1086.140650px;}
.y7_c00478{bottom:1088.035218px;}
.y6_c00478{bottom:1089.633812px;}
.y5_c00478{bottom:1090.325520px;}
.y4_c00478{bottom:1091.692998px;}
.y3_c00478{bottom:1093.504500px;}
.y2_c00478{bottom:1124.602500px;}
.y1_c00478{bottom:1181.515500px;}
.hb_c00478{height:18.005183px;}
.h13_c00478{height:18.007055px;}
.h19_c00478{height:24.000000px;}
.h23_c00478{height:29.988388px;}
.h25_c00478{height:35.995770px;}
.h9_c00478{height:36.008711px;}
.h1d_c00478{height:60.000000px;}
.h6_c00478{height:66.000000px;}
.h12_c00478{height:66.025867px;}
.h21_c00478{height:71.985635px;}
.h2_c00478{height:72.000000px;}
.h3_c00478{height:72.015874px;}
.he_c00478{height:72.019041px;}
.h1a_c00478{height:72.026239px;}
.h11_c00478{height:72.028218px;}
.h15_c00478{height:72.034588px;}
.h1b_c00478{height:77.967116px;}
.h18_c00478{height:77.969808px;}
.h1f_c00478{height:77.975426px;}
.h24_c00478{height:77.990834px;}
.hf_c00478{height:78.000000px;}
.h10_c00478{height:78.012635px;}
.h5_c00478{height:78.014078px;}
.h1c_c00478{height:78.015598px;}
.h8_c00478{height:78.018874px;}
.ha_c00478{height:78.022461px;}
.hc_c00478{height:78.024371px;}
.h17_c00478{height:83.959040px;}
.h22_c00478{height:83.967486px;}
.h1e_c00478{height:83.990129px;}
.hd_c00478{height:84.007098px;}
.h7_c00478{height:84.024189px;}
.h14_c00478{height:84.040352px;}
.h20_c00478{height:89.982043px;}
.h16_c00478{height:96.034986px;}
.h4_c00478{height:126.027780px;}
.h0_c00478{height:1246.320000px;}
.h1_c00478{height:1246.500000px;}
.w0_c00478{width:896.100000px;}
.w1_c00478{width:896.250000px;}
.x0_c00478{left:0.000000px;}
.xa2_c00478{left:117.009000px;}
.xa_c00478{left:120.762000px;}
.x4_c00478{left:121.770000px;}
.x79_c00478{left:124.003500px;}
.x6d_c00478{left:125.053500px;}
.x56_c00478{left:126.171000px;}
.x4e_c00478{left:127.566000px;}
.x2a_c00478{left:129.427500px;}
.x16_c00478{left:130.806000px;}
.xb4_c00478{left:144.927503px;}
.x7a_c00478{left:147.105000px;}
.x57_c00478{left:150.423000px;}
.x41_c00478{left:154.702500px;}
.x17_c00478{left:164.662500px;}
.xa8_c00478{left:165.717308px;}
.x8f_c00478{left:168.121500px;}
.x6e_c00478{left:169.497000px;}
.x58_c00478{left:170.560500px;}
.x52_c00478{left:171.946500px;}
.x42_c00478{left:173.299500px;}
.x21_c00478{left:174.913500px;}
.x2b_c00478{left:182.196000px;}
.xae_c00478{left:194.169329px;}
.xa9_c00478{left:195.876119px;}
.x95_c00478{left:197.371500px;}
.x7e_c00478{left:198.565548px;}
.x59_c00478{left:200.124000px;}
.x4f_c00478{left:201.792000px;}
.x53_c00478{left:203.077500px;}
.x22_c00478{left:204.693000px;}
.x5_c00478{left:207.360000px;}
.x6f_c00478{left:211.228500px;}
.x63_c00478{left:254.550000px;}
.x6_c00478{left:262.440000px;}
.x18_c00478{left:266.650500px;}
.x2c_c00478{left:269.206500px;}
.xb_c00478{left:272.142000px;}
.x43_c00478{left:280.779000px;}
.xa3_c00478{left:282.253090px;}
.x5c_c00478{left:287.229000px;}
.x5a_c00478{left:288.390000px;}
.x23_c00478{left:291.865500px;}
.x7_c00478{left:294.570000px;}
.x90_c00478{left:296.638500px;}
.x70_c00478{left:298.776000px;}
.x2d_c00478{left:302.679000px;}
.xa7_c00478{left:304.022593px;}
.xc_c00478{left:305.080500px;}
.x9f_c00478{left:306.280500px;}
.x6b_c00478{left:308.565510px;}
.x3d_c00478{left:310.096596px;}
.x13_c00478{left:311.703203px;}
.x4a_c00478{left:313.198688px;}
.x35_c00478{left:314.239500px;}
.x20_c00478{left:315.900000px;}
.x5d_c00478{left:321.250500px;}
.x50_c00478{left:323.016000px;}
.xaa_c00478{left:326.576787px;}
.x6c_c00478{left:330.793926px;}
.x55_c00478{left:333.450000px;}
.x86_c00478{left:341.656500px;}
.x54_c00478{left:344.569500px;}
.x19_c00478{left:347.586000px;}
.x99_c00478{left:349.546945px;}
.x7f_c00478{left:351.746714px;}
.x93_c00478{left:353.223598px;}
.x14_c00478{left:357.866156px;}
.xaf_c00478{left:359.188644px;}
.x64_c00478{left:365.253000px;}
.x77_c00478{left:375.037497px;}
.x5e_c00478{left:376.609500px;}
.x36_c00478{left:378.571500px;}
.xd_c00478{left:381.204000px;}
.x71_c00478{left:386.568000px;}
.xb0_c00478{left:390.820481px;}
.x1a_c00478{left:392.316000px;}
.x8_c00478{left:393.390000px;}
.x37_c00478{left:401.488500px;}
.x87_c00478{left:406.664427px;}
.x65_c00478{left:410.070000px;}
.x51_c00478{left:411.825000px;}
.xa4_c00478{left:415.015695px;}
.x6a_c00478{left:416.865270px;}
.x5f_c00478{left:421.426500px;}
.x2e_c00478{left:423.381000px;}
.x91_c00478{left:427.117500px;}
.x78_c00478{left:432.291531px;}
.xad_c00478{left:433.862158px;}
.x4b_c00478{left:435.760688px;}
.x9_c00478{left:438.480000px;}
.x15_c00478{left:445.063310px;}
.x80_c00478{left:450.781080px;}
.x5b_c00478{left:454.471500px;}
.xa0_c00478{left:458.634494px;}
.x1_c00478{left:459.810000px;}
.x44_c00478{left:466.582500px;}
.xe_c00478{left:471.421500px;}
.x66_c00478{left:474.897000px;}
.x4c_c00478{left:476.592188px;}
.x24_c00478{left:478.908000px;}
.x2f_c00478{left:480.079500px;}
.x2_c00478{left:481.950000px;}
.x72_c00478{left:486.208500px;}
.x94_c00478{left:492.966216px;}
.x33_c00478{left:496.775997px;}
.x25_c00478{left:501.132000px;}
.x7b_c00478{left:505.809000px;}
.x67_c00478{left:507.292500px;}
.x38_c00478{left:511.450500px;}
.x96_c00478{left:514.146000px;}
.x3_c00478{left:515.160000px;}
.x45_c00478{left:520.855500px;}
.x1b_c00478{left:524.445000px;}
.x9a_c00478{left:525.457359px;}
.x81_c00478{left:527.666118px;}
.x26_c00478{left:533.812500px;}
.x7c_c00478{left:538.875000px;}
.x73_c00478{left:540.781500px;}
.x39_c00478{left:543.777000px;}
.xab_c00478{left:546.603040px;}
.x9b_c00478{left:548.300493px;}
.x60_c00478{left:551.913000px;}
.x68_c00478{left:552.942000px;}
.xb1_c00478{left:557.122512px;}
.xa5_c00478{left:559.432134px;}
.xf_c00478{left:560.464500px;}
.x82_c00478{left:561.921828px;}
.xa1_c00478{left:568.999018px;}
.x4d_c00478{left:576.792188px;}
.xac_c00478{left:580.364245px;}
.x88_c00478{left:582.017399px;}
.x30_c00478{left:588.394500px;}
.xb2_c00478{left:590.192909px;}
.x97_c00478{left:592.755000px;}
.x7d_c00478{left:594.415500px;}
.x46_c00478{left:599.185500px;}
.x10_c00478{left:602.158500px;}
.x27_c00478{left:610.336500px;}
.x1c_c00478{left:613.294500px;}
.x89_c00478{left:616.298583px;}
.x3e_c00478{left:621.825156px;}
.x98_c00478{left:625.176000px;}
.x61_c00478{left:627.790500px;}
.x28_c00478{left:632.482500px;}
.x3a_c00478{left:643.429500px;}
.x11_c00478{left:646.726500px;}
.x83_c00478{left:648.938225px;}
.x74_c00478{left:651.816000px;}
.x92_c00478{left:660.553500px;}
.x47_c00478{left:665.356500px;}
.x62_c00478{left:673.447500px;}
.x3b_c00478{left:679.299000px;}
.x9c_c00478{left:680.769391px;}
.x84_c00478{left:681.845285px;}
.x29_c00478{left:689.365500px;}
.xb3_c00478{left:690.635865px;}
.x34_c00478{left:698.447919px;}
.x12_c00478{left:702.363000px;}
.x9d_c00478{left:713.995632px;}
.x8a_c00478{left:715.686595px;}
.x1d_c00478{left:718.521000px;}
.x31_c00478{left:721.351500px;}
.x69_c00478{left:728.001000px;}
.x48_c00478{left:743.133000px;}
.x8b_c00478{left:747.817432px;}
.x3f_c00478{left:749.215536px;}
.x1e_c00478{left:767.767500px;}
.x49_c00478{left:775.813500px;}
.xb5_c00478{left:778.807691px;}
.x40_c00478{left:780.253560px;}
.x75_c00478{left:784.329000px;}
.x3c_c00478{left:788.148000px;}
.xa6_c00478{left:791.450883px;}
.x9e_c00478{left:793.137411px;}
.x32_c00478{left:799.866000px;}
.x85_c00478{left:805.170336px;}
.x1f_c00478{left:811.540500px;}
.x8c_c00478{left:815.019163px;}
.x76_c00478{left:817.734000px;}
.x8d_c00478{left:829.710000px;}
.x8e_c00478{left:847.530000px;}
@media print{
.v0_c00478{vertical-align:0.000000pt;}
.ls0_c00478{letter-spacing:0.000000pt;}
.ws0_c00478{word-spacing:0.000000pt;}
.fs9_c00478{font-size:16.004607pt;}
.fs11_c00478{font-size:16.006271pt;}
.fs17_c00478{font-size:21.333333pt;}
.fs21_c00478{font-size:26.656345pt;}
.fs23_c00478{font-size:31.996240pt;}
.fs7_c00478{font-size:32.007743pt;}
.fs1b_c00478{font-size:53.333333pt;}
.fs4_c00478{font-size:58.666667pt;}
.fs10_c00478{font-size:58.689659pt;}
.fs1f_c00478{font-size:63.987231pt;}
.fs0_c00478{font-size:64.000000pt;}
.fs1_c00478{font-size:64.014110pt;}
.fsc_c00478{font-size:64.016926pt;}
.fs18_c00478{font-size:64.023324pt;}
.fsf_c00478{font-size:64.025083pt;}
.fs13_c00478{font-size:64.030745pt;}
.fs19_c00478{font-size:69.304103pt;}
.fs16_c00478{font-size:69.306496pt;}
.fs1d_c00478{font-size:69.311490pt;}
.fs22_c00478{font-size:69.325186pt;}
.fsd_c00478{font-size:69.333333pt;}
.fse_c00478{font-size:69.344564pt;}
.fs3_c00478{font-size:69.345847pt;}
.fs1a_c00478{font-size:69.347199pt;}
.fs6_c00478{font-size:69.350110pt;}
.fs8_c00478{font-size:69.353298pt;}
.fsa_c00478{font-size:69.354997pt;}
.fs15_c00478{font-size:74.630258pt;}
.fs20_c00478{font-size:74.637765pt;}
.fs1c_c00478{font-size:74.657893pt;}
.fsb_c00478{font-size:74.672976pt;}
.fs5_c00478{font-size:74.688168pt;}
.fs12_c00478{font-size:74.702535pt;}
.fs1e_c00478{font-size:79.984038pt;}
.fs14_c00478{font-size:85.364432pt;}
.fs2_c00478{font-size:112.024693pt;}
.y0_c00478{bottom:0.000000pt;}
.y104_c00478{bottom:30.935289pt;}
.y103_c00478{bottom:32.977125pt;}
.y102_c00478{bottom:35.590277pt;}
.yff_c00478{bottom:36.556485pt;}
.y101_c00478{bottom:39.898445pt;}
.yfe_c00478{bottom:39.920293pt;}
.yfd_c00478{bottom:43.673917pt;}
.yfc_c00478{bottom:44.909781pt;}
.yfb_c00478{bottom:47.827101pt;}
.yfa_c00478{bottom:51.124605pt;}
.y100_c00478{bottom:51.593793pt;}
.yf9_c00478{bottom:52.306709pt;}
.yf8_c00478{bottom:55.210981pt;}
.yf7_c00478{bottom:58.473597pt;}
.yf6_c00478{bottom:59.535133pt;}
.yf5_c00478{bottom:61.205333pt;}
.yf4_c00478{bottom:77.040489pt;}
.yf3_c00478{bottom:77.381860pt;}
.yf2_c00478{bottom:78.433260pt;}
.yf1_c00478{bottom:82.174573pt;}
.yf0_c00478{bottom:85.285373pt;}
.yef_c00478{bottom:86.680380pt;}
.yee_c00478{bottom:89.355687pt;}
.yed_c00478{bottom:90.294900pt;}
.yec_c00478{bottom:91.685333pt;}
.yeb_c00478{bottom:109.616252pt;}
.yea_c00478{bottom:116.951967pt;}
.ye9_c00478{bottom:118.143884pt;}
.ye8_c00478{bottom:120.978001pt;}
.ye7_c00478{bottom:131.301173pt;}
.ye6_c00478{bottom:136.479093pt;}
.ye5_c00478{bottom:139.558987pt;}
.ye4_c00478{bottom:143.113920pt;}
.ye3_c00478{bottom:144.698933pt;}
.ye2_c00478{bottom:149.424107pt;}
.ye1_c00478{bottom:155.305333pt;}
.ye0_c00478{bottom:175.445497pt;}
.ydf_c00478{bottom:179.078897pt;}
.yde_c00478{bottom:180.936840pt;}
.ydd_c00478{bottom:184.094667pt;}
.ydc_c00478{bottom:197.171344pt;}
.ydb_c00478{bottom:200.128928pt;}
.yda_c00478{bottom:201.370616pt;}
.yd9_c00478{bottom:202.621992pt;}
.yd8_c00478{bottom:206.321072pt;}
.yd7_c00478{bottom:207.174736pt;}
.yd6_c00478{bottom:210.823360pt;}
.yd5_c00478{bottom:212.528336pt;}
.yd4_c00478{bottom:213.748632pt;}
.yd3_c00478{bottom:216.619752pt;}
.yd2_c00478{bottom:219.409056pt;}
.yd1_c00478{bottom:220.564168pt;}
.yd0_c00478{bottom:222.244000pt;}
.yce_c00478{bottom:238.990213pt;}
.ycd_c00478{bottom:239.566587pt;}
.ycc_c00478{bottom:240.964080pt;}
.ycb_c00478{bottom:242.097600pt;}
.yca_c00478{bottom:242.701307pt;}
.yc9_c00478{bottom:244.862880pt;}
.yc8_c00478{bottom:246.595627pt;}
.yc7_c00478{bottom:247.130053pt;}
.yc6_c00478{bottom:247.924000pt;}
.yc5_c00478{bottom:272.707861pt;}
.yc4_c00478{bottom:273.703064pt;}
.yc3_c00478{bottom:275.702763pt;}
.yc2_c00478{bottom:276.935421pt;}
.yc1_c00478{bottom:278.413333pt;}
.ycf_c00478{bottom:294.480000pt;}
.yc0_c00478{bottom:298.867829pt;}
.ybf_c00478{bottom:301.255457pt;}
.ybe_c00478{bottom:302.050625pt;}
.ybd_c00478{bottom:304.470293pt;}
.ybc_c00478{bottom:306.292433pt;}
.ybb_c00478{bottom:307.601789pt;}
.yba_c00478{bottom:309.959645pt;}
.yb9_c00478{bottom:310.686197pt;}
.yb8_c00478{bottom:311.765333pt;}
.yb7_c00478{bottom:322.924000pt;}
.yb6_c00478{bottom:325.111753pt;}
.yb5_c00478{bottom:327.204567pt;}
.yb4_c00478{bottom:328.205193pt;}
.yb3_c00478{bottom:331.300360pt;}
.yb2_c00478{bottom:332.367953pt;}
.yb1_c00478{bottom:333.723947pt;}
.yb0_c00478{bottom:334.725740pt;}
.yaf_c00478{bottom:337.828840pt;}
.yae_c00478{bottom:339.853333pt;}
.yad_c00478{bottom:356.442891pt;}
.yac_c00478{bottom:359.954315pt;}
.yab_c00478{bottom:360.891275pt;}
.yaa_c00478{bottom:363.368885pt;}
.ya9_c00478{bottom:364.344245pt;}
.ya8_c00478{bottom:366.533387pt;}
.ya7_c00478{bottom:367.486688pt;}
.ya6_c00478{bottom:369.353184pt;}
.ya5_c00478{bottom:369.977909pt;}
.ya4_c00478{bottom:370.886709pt;}
.ya3_c00478{bottom:373.714699pt;}
.ya2_c00478{bottom:374.567051pt;}
.ya1_c00478{bottom:375.846667pt;}
.ya0_c00478{bottom:395.932697pt;}
.y9f_c00478{bottom:396.715445pt;}
.y9e_c00478{bottom:398.048417pt;}
.y9d_c00478{bottom:398.842001pt;}
.y9c_c00478{bottom:401.722433pt;}
.y9b_c00478{bottom:403.582373pt;}
.y9a_c00478{bottom:404.599697pt;}
.y99_c00478{bottom:406.192661pt;}
.y98_c00478{bottom:406.926197pt;}
.y97_c00478{bottom:407.450897pt;}
.y96_c00478{bottom:408.005333pt;}
.y95_c00478{bottom:431.557393pt;}
.y94_c00478{bottom:432.650176pt;}
.y93_c00478{bottom:434.126412pt;}
.y92_c00478{bottom:435.832623pt;}
.y91_c00478{bottom:452.279471pt;}
.y90_c00478{bottom:453.199964pt;}
.y8f_c00478{bottom:456.851433pt;}
.y8e_c00478{bottom:459.911051pt;}
.y8d_c00478{bottom:461.414840pt;}
.y8c_c00478{bottom:464.160489pt;}
.y8b_c00478{bottom:466.579647pt;}
.y8a_c00478{bottom:468.992067pt;}
.y89_c00478{bottom:470.142001pt;}
.y88_c00478{bottom:471.366667pt;}
.y87_c00478{bottom:499.752485pt;}
.y86_c00478{bottom:500.641989pt;}
.y84_c00478{bottom:519.018613pt;}
.y83_c00478{bottom:521.500160pt;}
.y82_c00478{bottom:523.375637pt;}
.y81_c00478{bottom:524.511803pt;}
.y85_c00478{bottom:524.674133pt;}
.y80_c00478{bottom:525.318091pt;}
.y7f_c00478{bottom:526.931563pt;}
.y7e_c00478{bottom:528.047008pt;}
.y7d_c00478{bottom:529.995995pt;}
.y7c_c00478{bottom:530.802283pt;}
.y7b_c00478{bottom:532.145573pt;}
.y7a_c00478{bottom:532.899557pt;}
.y79_c00478{bottom:534.005333pt;}
.y78_c00478{bottom:551.167317pt;}
.y77_c00478{bottom:552.296576pt;}
.y76_c00478{bottom:553.432928pt;}
.y75_c00478{bottom:555.321435pt;}
.y74_c00478{bottom:556.331040pt;}
.y73_c00478{bottom:558.569099pt;}
.y72_c00478{bottom:559.684544pt;}
.y71_c00478{bottom:561.062368pt;}
.y70_c00478{bottom:561.909125pt;}
.y6f_c00478{bottom:564.058480pt;}
.y6e_c00478{bottom:564.805557pt;}
.y6d_c00478{bottom:565.925333pt;}
.y6c_c00478{bottom:589.229859pt;}
.y6b_c00478{bottom:589.925667pt;}
.y6a_c00478{bottom:591.887163pt;}
.y69_c00478{bottom:593.299419pt;}
.y68_c00478{bottom:593.772435pt;}
.y67_c00478{bottom:594.094635pt;}
.y66_c00478{bottom:594.482667pt;}
.y65_c00478{bottom:624.277333pt;}
.y64_c00478{bottom:655.321473pt;}
.y63_c00478{bottom:656.862412pt;}
.y62_c00478{bottom:658.214199pt;}
.y61_c00478{bottom:658.850655pt;}
.y60_c00478{bottom:659.764000pt;}
.y5f_c00478{bottom:684.651973pt;}
.y5e_c00478{bottom:685.276563pt;}
.y5d_c00478{bottom:686.302800pt;}
.y5c_c00478{bottom:687.703611pt;}
.y5b_c00478{bottom:688.042477pt;}
.y5a_c00478{bottom:688.561333pt;}
.y59_c00478{bottom:712.929600pt;}
.y58_c00478{bottom:713.658067pt;}
.y57_c00478{bottom:714.408433pt;}
.y56_c00478{bottom:715.884733pt;}
.y55_c00478{bottom:716.792100pt;}
.y54_c00478{bottom:719.515700pt;}
.y53_c00478{bottom:739.858067pt;}
.y52_c00478{bottom:740.661667pt;}
.y51_c00478{bottom:741.387900pt;}
.y50_c00478{bottom:743.116267pt;}
.y4f_c00478{bottom:743.854800pt;}
.y4e_c00478{bottom:744.586733pt;}
.y4d_c00478{bottom:746.327400pt;}
.y4c_c00478{bottom:747.533467pt;}
.y4b_c00478{bottom:749.484667pt;}
.y4a_c00478{bottom:751.662433pt;}
.y49_c00478{bottom:753.371433pt;}
.y48_c00478{bottom:754.050867pt;}
.y47_c00478{bottom:754.464133pt;}
.y46_c00478{bottom:755.044000pt;}
.y45_c00478{bottom:767.482027pt;}
.y44_c00478{bottom:768.198869pt;}
.y43_c00478{bottom:771.143328pt;}
.y41_c00478{bottom:772.536619pt;}
.y40_c00478{bottom:773.947147pt;}
.y3f_c00478{bottom:774.858731pt;}
.y3e_c00478{bottom:775.623947pt;}
.y3d_c00478{bottom:776.332491pt;}
.y3c_c00478{bottom:777.749867pt;}
.y42_c00478{bottom:778.347189pt;}
.y3b_c00478{bottom:778.439499pt;}
.y3a_c00478{bottom:780.785355pt;}
.y39_c00478{bottom:781.274251pt;}
.y38_c00478{bottom:782.646667pt;}
.y37_c00478{bottom:801.891915pt;}
.y34_c00478{bottom:803.853203pt;}
.y33_c00478{bottom:804.495925pt;}
.y32_c00478{bottom:805.388597pt;}
.y36_c00478{bottom:805.656968pt;}
.y31_c00478{bottom:807.127624pt;}
.y30_c00478{bottom:807.988645pt;}
.y2f_c00478{bottom:810.106805pt;}
.y2e_c00478{bottom:811.215576pt;}
.y35_c00478{bottom:811.681397pt;}
.y2d_c00478{bottom:813.575971pt;}
.y2c_c00478{bottom:814.230544pt;}
.y2b_c00478{bottom:815.493667pt;}
.y2a_c00478{bottom:815.932083pt;}
.y29_c00478{bottom:816.964000pt;}
.y28_c00478{bottom:836.715872pt;}
.y27_c00478{bottom:837.929376pt;}
.y26_c00478{bottom:838.401824pt;}
.y25_c00478{bottom:840.034336pt;}
.y24_c00478{bottom:840.731520pt;}
.y23_c00478{bottom:841.205632pt;}
.y22_c00478{bottom:843.059552pt;}
.y21_c00478{bottom:844.015008pt;}
.y20_c00478{bottom:845.195872pt;}
.y1f_c00478{bottom:847.055552pt;}
.y1e_c00478{bottom:847.690848pt;}
.y1d_c00478{bottom:848.644000pt;}
.y1c_c00478{bottom:874.537333pt;}
.y1b_c00478{bottom:899.065817pt;}
.y1a_c00478{bottom:899.805095pt;}
.y19_c00478{bottom:900.636813pt;}
.y18_c00478{bottom:902.413972pt;}
.y17_c00478{bottom:903.914541pt;}
.y16_c00478{bottom:904.623520pt;}
.y15_c00478{bottom:906.146053pt;}
.y14_c00478{bottom:906.901493pt;}
.y13_c00478{bottom:908.268404pt;}
.y12_c00478{bottom:909.286627pt;}
.y11_c00478{bottom:909.990868pt;}
.y10_c00478{bottom:910.562667pt;}
.yf_c00478{bottom:932.086115pt;}
.ye_c00478{bottom:933.559060pt;}
.yd_c00478{bottom:934.338065pt;}
.yc_c00478{bottom:961.147448pt;}
.yb_c00478{bottom:962.185996pt;}
.ya_c00478{bottom:963.017932pt;}
.y9_c00478{bottom:963.796220pt;}
.y8_c00478{bottom:965.458356pt;}
.y7_c00478{bottom:967.142416pt;}
.y6_c00478{bottom:968.563388pt;}
.y5_c00478{bottom:969.178240pt;}
.y4_c00478{bottom:970.393776pt;}
.y3_c00478{bottom:972.004000pt;}
.y2_c00478{bottom:999.646667pt;}
.y1_c00478{bottom:1050.236000pt;}
.hb_c00478{height:16.004607pt;}
.h13_c00478{height:16.006271pt;}
.h19_c00478{height:21.333333pt;}
.h23_c00478{height:26.656345pt;}
.h25_c00478{height:31.996240pt;}
.h9_c00478{height:32.007743pt;}
.h1d_c00478{height:53.333333pt;}
.h6_c00478{height:58.666667pt;}
.h12_c00478{height:58.689659pt;}
.h21_c00478{height:63.987231pt;}
.h2_c00478{height:64.000000pt;}
.h3_c00478{height:64.014110pt;}
.he_c00478{height:64.016926pt;}
.h1a_c00478{height:64.023324pt;}
.h11_c00478{height:64.025083pt;}
.h15_c00478{height:64.030745pt;}
.h1b_c00478{height:69.304103pt;}
.h18_c00478{height:69.306496pt;}
.h1f_c00478{height:69.311490pt;}
.h24_c00478{height:69.325186pt;}
.hf_c00478{height:69.333333pt;}
.h10_c00478{height:69.344564pt;}
.h5_c00478{height:69.345847pt;}
.h1c_c00478{height:69.347199pt;}
.h8_c00478{height:69.350110pt;}
.ha_c00478{height:69.353298pt;}
.hc_c00478{height:69.354997pt;}
.h17_c00478{height:74.630258pt;}
.h22_c00478{height:74.637765pt;}
.h1e_c00478{height:74.657893pt;}
.hd_c00478{height:74.672976pt;}
.h7_c00478{height:74.688168pt;}
.h14_c00478{height:74.702535pt;}
.h20_c00478{height:79.984038pt;}
.h16_c00478{height:85.364432pt;}
.h4_c00478{height:112.024693pt;}
.h0_c00478{height:1107.840000pt;}
.h1_c00478{height:1108.000000pt;}
.w0_c00478{width:796.533333pt;}
.w1_c00478{width:796.666667pt;}
.x0_c00478{left:0.000000pt;}
.xa2_c00478{left:104.008000pt;}
.xa_c00478{left:107.344000pt;}
.x4_c00478{left:108.240000pt;}
.x79_c00478{left:110.225333pt;}
.x6d_c00478{left:111.158667pt;}
.x56_c00478{left:112.152000pt;}
.x4e_c00478{left:113.392000pt;}
.x2a_c00478{left:115.046667pt;}
.x16_c00478{left:116.272000pt;}
.xb4_c00478{left:128.824447pt;}
.x7a_c00478{left:130.760000pt;}
.x57_c00478{left:133.709333pt;}
.x41_c00478{left:137.513333pt;}
.x17_c00478{left:146.366667pt;}
.xa8_c00478{left:147.304273pt;}
.x8f_c00478{left:149.441333pt;}
.x6e_c00478{left:150.664000pt;}
.x58_c00478{left:151.609333pt;}
.x52_c00478{left:152.841333pt;}
.x42_c00478{left:154.044000pt;}
.x21_c00478{left:155.478667pt;}
.x2b_c00478{left:161.952000pt;}
.xae_c00478{left:172.594959pt;}
.xa9_c00478{left:174.112105pt;}
.x95_c00478{left:175.441333pt;}
.x7e_c00478{left:176.502709pt;}
.x59_c00478{left:177.888000pt;}
.x4f_c00478{left:179.370667pt;}
.x53_c00478{left:180.513333pt;}
.x22_c00478{left:181.949333pt;}
.x5_c00478{left:184.320000pt;}
.x6f_c00478{left:187.758667pt;}
.x63_c00478{left:226.266667pt;}
.x6_c00478{left:233.280000pt;}
.x18_c00478{left:237.022667pt;}
.x2c_c00478{left:239.294667pt;}
.xb_c00478{left:241.904000pt;}
.x43_c00478{left:249.581333pt;}
.xa3_c00478{left:250.891636pt;}
.x5c_c00478{left:255.314667pt;}
.x5a_c00478{left:256.346667pt;}
.x23_c00478{left:259.436000pt;}
.x7_c00478{left:261.840000pt;}
.x90_c00478{left:263.678667pt;}
.x70_c00478{left:265.578667pt;}
.x2d_c00478{left:269.048000pt;}
.xa7_c00478{left:270.242305pt;}
.xc_c00478{left:271.182667pt;}
.x9f_c00478{left:272.249333pt;}
.x6b_c00478{left:274.280453pt;}
.x3d_c00478{left:275.641419pt;}
.x13_c00478{left:277.069513pt;}
.x4a_c00478{left:278.398833pt;}
.x35_c00478{left:279.324000pt;}
.x20_c00478{left:280.800000pt;}
.x5d_c00478{left:285.556000pt;}
.x50_c00478{left:287.125333pt;}
.xaa_c00478{left:290.290477pt;}
.x6c_c00478{left:294.039045pt;}
.x55_c00478{left:296.400000pt;}
.x86_c00478{left:303.694667pt;}
.x54_c00478{left:306.284000pt;}
.x19_c00478{left:308.965333pt;}
.x99_c00478{left:310.708396pt;}
.x7f_c00478{left:312.663745pt;}
.x93_c00478{left:313.976532pt;}
.x14_c00478{left:318.103249pt;}
.xaf_c00478{left:319.278795pt;}
.x64_c00478{left:324.669333pt;}
.x77_c00478{left:333.366664pt;}
.x5e_c00478{left:334.764000pt;}
.x36_c00478{left:336.508000pt;}
.xd_c00478{left:338.848000pt;}
.x71_c00478{left:343.616000pt;}
.xb0_c00478{left:347.395983pt;}
.x1a_c00478{left:348.725333pt;}
.x8_c00478{left:349.680000pt;}
.x37_c00478{left:356.878667pt;}
.x87_c00478{left:361.479491pt;}
.x65_c00478{left:364.506667pt;}
.x51_c00478{left:366.066667pt;}
.xa4_c00478{left:368.902840pt;}
.x6a_c00478{left:370.546907pt;}
.x5f_c00478{left:374.601333pt;}
.x2e_c00478{left:376.338667pt;}
.x91_c00478{left:379.660000pt;}
.x78_c00478{left:384.259139pt;}
.xad_c00478{left:385.655252pt;}
.x4b_c00478{left:387.342833pt;}
.x9_c00478{left:389.760000pt;}
.x15_c00478{left:395.611831pt;}
.x80_c00478{left:400.694293pt;}
.x5b_c00478{left:403.974667pt;}
.xa0_c00478{left:407.675105pt;}
.x1_c00478{left:408.720000pt;}
.x44_c00478{left:414.740000pt;}
.xe_c00478{left:419.041333pt;}
.x66_c00478{left:422.130667pt;}
.x4c_c00478{left:423.637500pt;}
.x24_c00478{left:425.696000pt;}
.x2f_c00478{left:426.737333pt;}
.x2_c00478{left:428.400000pt;}
.x72_c00478{left:432.185333pt;}
.x94_c00478{left:438.192192pt;}
.x33_c00478{left:441.578664pt;}
.x25_c00478{left:445.450667pt;}
.x7b_c00478{left:449.608000pt;}
.x67_c00478{left:450.926667pt;}
.x38_c00478{left:454.622667pt;}
.x96_c00478{left:457.018667pt;}
.x3_c00478{left:457.920000pt;}
.x45_c00478{left:462.982667pt;}
.x1b_c00478{left:466.173333pt;}
.x9a_c00478{left:467.073208pt;}
.x81_c00478{left:469.036549pt;}
.x26_c00478{left:474.500000pt;}
.x7c_c00478{left:479.000000pt;}
.x73_c00478{left:480.694667pt;}
.x39_c00478{left:483.357333pt;}
.xab_c00478{left:485.869369pt;}
.x9b_c00478{left:487.378216pt;}
.x60_c00478{left:490.589333pt;}
.x68_c00478{left:491.504000pt;}
.xb1_c00478{left:495.220011pt;}
.xa5_c00478{left:497.273008pt;}
.xf_c00478{left:498.190667pt;}
.x82_c00478{left:499.486069pt;}
.xa1_c00478{left:505.776905pt;}
.x4d_c00478{left:512.704167pt;}
.xac_c00478{left:515.879329pt;}
.x88_c00478{left:517.348799pt;}
.x30_c00478{left:523.017333pt;}
.xb2_c00478{left:524.615919pt;}
.x97_c00478{left:526.893333pt;}
.x7d_c00478{left:528.369333pt;}
.x46_c00478{left:532.609333pt;}
.x10_c00478{left:535.252000pt;}
.x27_c00478{left:542.521333pt;}
.x1c_c00478{left:545.150667pt;}
.x89_c00478{left:547.820963pt;}
.x3e_c00478{left:552.733472pt;}
.x98_c00478{left:555.712000pt;}
.x61_c00478{left:558.036000pt;}
.x28_c00478{left:562.206667pt;}
.x3a_c00478{left:571.937333pt;}
.x11_c00478{left:574.868000pt;}
.x83_c00478{left:576.833977pt;}
.x74_c00478{left:579.392000pt;}
.x92_c00478{left:587.158667pt;}
.x47_c00478{left:591.428000pt;}
.x62_c00478{left:598.620000pt;}
.x3b_c00478{left:603.821333pt;}
.x9c_c00478{left:605.128348pt;}
.x84_c00478{left:606.084697pt;}
.x29_c00478{left:612.769333pt;}
.xb3_c00478{left:613.898547pt;}
.x34_c00478{left:620.842595pt;}
.x12_c00478{left:624.322667pt;}
.x9d_c00478{left:634.662784pt;}
.x8a_c00478{left:636.165863pt;}
.x1d_c00478{left:638.685333pt;}
.x31_c00478{left:641.201333pt;}
.x69_c00478{left:647.112000pt;}
.x48_c00478{left:660.562667pt;}
.x8b_c00478{left:664.726607pt;}
.x3f_c00478{left:665.969365pt;}
.x1e_c00478{left:682.460000pt;}
.x49_c00478{left:689.612000pt;}
.xb5_c00478{left:692.273503pt;}
.x40_c00478{left:693.558720pt;}
.x75_c00478{left:697.181333pt;}
.x3c_c00478{left:700.576000pt;}
.xa6_c00478{left:703.511896pt;}
.x9e_c00478{left:705.011032pt;}
.x32_c00478{left:710.992000pt;}
.x85_c00478{left:715.706965pt;}
.x1f_c00478{left:721.369333pt;}
.x8c_c00478{left:724.461479pt;}
.x76_c00478{left:726.874667pt;}
.x8d_c00478{left:737.520000pt;}
.x8e_c00478{left:753.360000pt;}
}





/* 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_c00479 {
    display:none;
  }
  .loading-indicator_c00479.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00479 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_c00479 { 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_c00479" -> "#page-container .classname_c00479")
 */
.pf_c00479 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00479 { /* 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_c00479.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00479 { /* 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_c00479 { /* 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_c00479 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00479 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00479 {overflow:visible;}
  }
}
.c_c00479 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00479 { /* 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_c00479:after { /* webkit #35443 */
  content: '';
}
.t_c00479:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00479 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 */
}
.__c00479 { /* 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_c00479 { /* info for Javascript */
  display:none;
}
.l_c00479 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00479 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00479 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00479: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_c00479 {
    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_c00479.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00479.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_c00479 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00479{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00479;src:url('chunks/assets/font_170a54771682c73350741ec9.woff2')format("woff");}.ff1_c00479{font-family:ff1_c00479;line-height:1.000000;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;}
.m2_c00479{transform:matrix(0.187400,-0.010515,0.014006,0.249607,0,0);-ms-transform:matrix(0.187400,-0.010515,0.014006,0.249607,0,0);-webkit-transform:matrix(0.187400,-0.010515,0.014006,0.249607,0,0);}
.m1_c00479{transform:matrix(0.195373,-0.010963,0.014006,0.249607,0,0);-ms-transform:matrix(0.195373,-0.010963,0.014006,0.249607,0,0);-webkit-transform:matrix(0.195373,-0.010963,0.014006,0.249607,0,0);}
.m3_c00479{transform:matrix(0.206330,-0.011578,0.014006,0.249607,0,0);-ms-transform:matrix(0.206330,-0.011578,0.014006,0.249607,0,0);-webkit-transform:matrix(0.206330,-0.011578,0.014006,0.249607,0,0);}
.m0_c00479{transform:matrix(0.268837,-0.015085,0.014006,0.249607,0,0);-ms-transform:matrix(0.268837,-0.015085,0.014006,0.249607,0,0);-webkit-transform:matrix(0.268837,-0.015085,0.014006,0.249607,0,0);}
.v0_c00479{vertical-align:0.000000px;}
.ls0_c00479{letter-spacing:0.000000px;}
.sc__c00479{text-shadow:none;}
.sc0_c00479{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__c00479{-webkit-text-stroke:0px transparent;}
.sc0_c00479{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00479{word-spacing:0.000000px;}
.fc0_c00479{color:transparent;}
.fs0_c00479{font-size:107.953550px;}
.y0_c00479{bottom:0.000000px;}
.y1_c00479{bottom:1100.661000px;}
.y2_c00479{bottom:1101.978624px;}
.y3_c00479{bottom:1106.823744px;}
.y4_c00479{bottom:1110.782328px;}
.h2_c00479{height:107.953550px;}
.h0_c00479{height:1246.320000px;}
.h1_c00479{height:1246.500000px;}
.w0_c00479{width:896.100000px;}
.w1_c00479{width:896.250000px;}
.x0_c00479{left:0.000000px;}
.x1_c00479{left:424.432500px;}
.x2_c00479{left:447.914442px;}
.x3_c00479{left:534.261402px;}
.x4_c00479{left:604.809024px;}
@media print{
.v0_c00479{vertical-align:0.000000pt;}
.ls0_c00479{letter-spacing:0.000000pt;}
.ws0_c00479{word-spacing:0.000000pt;}
.fs0_c00479{font-size:95.958711pt;}
.y0_c00479{bottom:0.000000pt;}
.y1_c00479{bottom:978.365333pt;}
.y2_c00479{bottom:979.536555pt;}
.y3_c00479{bottom:983.843328pt;}
.y4_c00479{bottom:987.362069pt;}
.h2_c00479{height:95.958711pt;}
.h0_c00479{height:1107.840000pt;}
.h1_c00479{height:1108.000000pt;}
.w0_c00479{width:796.533333pt;}
.w1_c00479{width:796.666667pt;}
.x0_c00479{left:0.000000pt;}
.x1_c00479{left:377.273333pt;}
.x2_c00479{left:398.146171pt;}
.x3_c00479{left:474.899024pt;}
.x4_c00479{left:537.608021pt;}
}





/* 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_c00480 {
    display:none;
  }
  .loading-indicator_c00480.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00480 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_c00480 { 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_c00480" -> "#page-container .classname_c00480")
 */
.pf_c00480 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00480 { /* 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_c00480.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00480 { /* 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_c00480 { /* 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_c00480 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00480 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00480 {overflow:visible;}
  }
}
.c_c00480 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00480 { /* 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_c00480:after { /* webkit #35443 */
  content: '';
}
.t_c00480:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00480 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 */
}
.__c00480 { /* 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_c00480 { /* info for Javascript */
  display:none;
}
.l_c00480 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00480 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00480 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00480: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_c00480 {
    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_c00480.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00480.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_c00480 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00480{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00480;src:url('chunks/assets/font_c605e72f209fc835e906f064.woff2')format("woff");}.ff1_c00480{font-family:ff1_c00480;line-height:1.000000;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;}
.mb_c00480{transform:matrix(0.009090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.009090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.009090,0.000000,0.000000,0.250000,0,0);}
.m14_c00480{transform:matrix(0.015910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.015910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.015910,0.000000,0.000000,0.250000,0,0);}
.m9f_c00480{transform:matrix(0.029770,0.000566,-0.004749,0.249955,0,0);-ms-transform:matrix(0.029770,0.000566,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.029770,0.000566,-0.004749,0.249955,0,0);}
.m72_c00480{transform:matrix(0.075575,0.001209,-0.003999,0.249968,0,0);-ms-transform:matrix(0.075575,0.001209,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.075575,0.001209,-0.003999,0.249968,0,0);}
.md9_c00480{transform:matrix(0.088286,0.003358,-0.009503,0.249819,0,0);-ms-transform:matrix(0.088286,0.003358,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.088286,0.003358,-0.009503,0.249819,0,0);}
.m51_c00480{transform:matrix(0.114224,0.001599,-0.003500,0.249976,0,0);-ms-transform:matrix(0.114224,0.001599,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.114224,0.001599,-0.003500,0.249976,0,0);}
.mc1_c00480{transform:matrix(0.115707,0.002314,-0.004999,0.249950,0,0);-ms-transform:matrix(0.115707,0.002314,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.115707,0.002314,-0.004999,0.249950,0,0);}
.m50_c00480{transform:matrix(0.116679,0.001633,-0.003500,0.249976,0,0);-ms-transform:matrix(0.116679,0.001633,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.116679,0.001633,-0.003500,0.249976,0,0);}
.m2_c00480{transform:matrix(0.117525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117525,0.000000,0.000000,0.250000,0,0);}
.md8_c00480{transform:matrix(0.120393,0.004580,-0.009503,0.249819,0,0);-ms-transform:matrix(0.120393,0.004580,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.120393,0.004580,-0.009503,0.249819,0,0);}
.mf7_c00480{transform:matrix(0.122202,0.003055,-0.006248,0.249922,0,0);-ms-transform:matrix(0.122202,0.003055,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.122202,0.003055,-0.006248,0.249922,0,0);}
.m7a_c00480{transform:matrix(0.123244,0.001972,-0.003999,0.249968,0,0);-ms-transform:matrix(0.123244,0.001972,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.123244,0.001972,-0.003999,0.249968,0,0);}
.m79_c00480{transform:matrix(0.125009,0.002000,-0.003999,0.249968,0,0);-ms-transform:matrix(0.125009,0.002000,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.125009,0.002000,-0.003999,0.249968,0,0);}
.m66_c00480{transform:matrix(0.127339,0.002292,-0.004499,0.249960,0,0);-ms-transform:matrix(0.127339,0.002292,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.127339,0.002292,-0.004499,0.249960,0,0);}
.md1_c00480{transform:matrix(0.129683,0.003501,-0.006748,0.249909,0,0);-ms-transform:matrix(0.129683,0.003501,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.129683,0.003501,-0.006748,0.249909,0,0);}
.mf6_c00480{transform:matrix(0.129689,0.003242,-0.006248,0.249922,0,0);-ms-transform:matrix(0.129689,0.003242,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.129689,0.003242,-0.006248,0.249922,0,0);}
.me6_c00480{transform:matrix(0.139515,0.002651,-0.004749,0.249955,0,0);-ms-transform:matrix(0.139515,0.002651,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.139515,0.002651,-0.004749,0.249955,0,0);}
.m1c_c00480{transform:matrix(0.139532,0.001535,-0.002750,0.249985,0,0);-ms-transform:matrix(0.139532,0.001535,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.139532,0.001535,-0.002750,0.249985,0,0);}
.m46_c00480{transform:matrix(0.140321,0.001964,-0.003500,0.249976,0,0);-ms-transform:matrix(0.140321,0.001964,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.140321,0.001964,-0.003500,0.249976,0,0);}
.m60_c00480{transform:matrix(0.140560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140560,0.000000,0.000000,0.250000,0,0);}
.m2a_c00480{transform:matrix(0.143096,0.001574,-0.002750,0.249985,0,0);-ms-transform:matrix(0.143096,0.001574,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.143096,0.001574,-0.002750,0.249985,0,0);}
.m45_c00480{transform:matrix(0.143176,0.002004,-0.003500,0.249976,0,0);-ms-transform:matrix(0.143176,0.002004,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.143176,0.002004,-0.003500,0.249976,0,0);}
.ma5_c00480{transform:matrix(0.145839,0.002771,-0.004749,0.249955,0,0);-ms-transform:matrix(0.145839,0.002771,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.145839,0.002771,-0.004749,0.249955,0,0);}
.m5b_c00480{transform:matrix(0.145865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145865,0.000000,0.000000,0.250000,0,0);}
.mc4_c00480{transform:matrix(0.148380,0.002968,-0.004999,0.249950,0,0);-ms-transform:matrix(0.148380,0.002968,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.148380,0.002968,-0.004999,0.249950,0,0);}
.m29_c00480{transform:matrix(0.148576,0.001634,-0.002750,0.249985,0,0);-ms-transform:matrix(0.148576,0.001634,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.148576,0.001634,-0.002750,0.249985,0,0);}
.m0_c00480{transform:matrix(0.154295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154295,0.000000,0.000000,0.250000,0,0);}
.m1_c00480{transform:matrix(0.160295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160295,0.000000,0.000000,0.250000,0,0);}
.m67_c00480{transform:matrix(0.160359,0.002886,-0.004499,0.249960,0,0);-ms-transform:matrix(0.160359,0.002886,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.160359,0.002886,-0.004499,0.249960,0,0);}
.m6a_c00480{transform:matrix(0.162964,0.002933,-0.004499,0.249960,0,0);-ms-transform:matrix(0.162964,0.002933,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.162964,0.002933,-0.004499,0.249960,0,0);}
.m81_c00480{transform:matrix(0.164889,0.002638,-0.003999,0.249968,0,0);-ms-transform:matrix(0.164889,0.002638,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.164889,0.002638,-0.003999,0.249968,0,0);}
.md2_c00480{transform:matrix(0.165955,0.004481,-0.006748,0.249909,0,0);-ms-transform:matrix(0.165955,0.004481,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.165955,0.004481,-0.006748,0.249909,0,0);}
.mf2_c00480{transform:matrix(0.167903,0.004198,-0.006248,0.249922,0,0);-ms-transform:matrix(0.167903,0.004198,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.167903,0.004198,-0.006248,0.249922,0,0);}
.mdf_c00480{transform:matrix(0.167924,0.006387,-0.009503,0.249819,0,0);-ms-transform:matrix(0.167924,0.006387,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.167924,0.006387,-0.009503,0.249819,0,0);}
.mbe_c00480{transform:matrix(0.168046,0.003361,-0.004999,0.249950,0,0);-ms-transform:matrix(0.168046,0.003361,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.168046,0.003361,-0.004999,0.249950,0,0);}
.mc5_c00480{transform:matrix(0.173575,0.003472,-0.004999,0.249950,0,0);-ms-transform:matrix(0.173575,0.003472,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.173575,0.003472,-0.004999,0.249950,0,0);}
.m36_c00480{transform:matrix(0.174803,0.001573,-0.002250,0.249990,0,0);-ms-transform:matrix(0.174803,0.001573,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.174803,0.001573,-0.002250,0.249990,0,0);}
.mcf_c00480{transform:matrix(0.175461,0.004737,-0.006748,0.249909,0,0);-ms-transform:matrix(0.175461,0.004737,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.175461,0.004737,-0.006748,0.249909,0,0);}
.mc2_c00480{transform:matrix(0.177390,0.003548,-0.004999,0.249950,0,0);-ms-transform:matrix(0.177390,0.003548,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.177390,0.003548,-0.004999,0.249950,0,0);}
.ma6_c00480{transform:matrix(0.186126,0.003536,-0.004749,0.249955,0,0);-ms-transform:matrix(0.186126,0.003536,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.186126,0.003536,-0.004749,0.249955,0,0);}
.mae_c00480{transform:matrix(0.186796,0.003549,-0.004749,0.249955,0,0);-ms-transform:matrix(0.186796,0.003549,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.186796,0.003549,-0.004749,0.249955,0,0);}
.mdb_c00480{transform:matrix(0.187619,0.007137,-0.009503,0.249819,0,0);-ms-transform:matrix(0.187619,0.007137,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.187619,0.007137,-0.009503,0.249819,0,0);}
.m61_c00480{transform:matrix(0.188480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188480,0.000000,0.000000,0.250000,0,0);}
.mf9_c00480{transform:matrix(0.189546,0.004739,-0.006248,0.249922,0,0);-ms-transform:matrix(0.189546,0.004739,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.189546,0.004739,-0.006248,0.249922,0,0);}
.m82_c00480{transform:matrix(0.190816,0.003053,-0.003999,0.249968,0,0);-ms-transform:matrix(0.190816,0.003053,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.190816,0.003053,-0.003999,0.249968,0,0);}
.m57_c00480{transform:matrix(0.191031,0.002674,-0.003500,0.249976,0,0);-ms-transform:matrix(0.191031,0.002674,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.191031,0.002674,-0.003500,0.249976,0,0);}
.m73_c00480{transform:matrix(0.191371,0.003062,-0.003999,0.249968,0,0);-ms-transform:matrix(0.191371,0.003062,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.191371,0.003062,-0.003999,0.249968,0,0);}
.mec_c00480{transform:matrix(0.192385,0.003655,-0.004749,0.249955,0,0);-ms-transform:matrix(0.192385,0.003655,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.192385,0.003655,-0.004749,0.249955,0,0);}
.mdd_c00480{transform:matrix(0.192506,0.007323,-0.009503,0.249819,0,0);-ms-transform:matrix(0.192506,0.007323,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.192506,0.007323,-0.009503,0.249819,0,0);}
.m5c_c00480{transform:matrix(0.192695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192695,0.000000,0.000000,0.250000,0,0);}
.md6_c00480{transform:matrix(0.194734,0.005258,-0.006748,0.249909,0,0);-ms-transform:matrix(0.194734,0.005258,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.194734,0.005258,-0.006748,0.249909,0,0);}
.m1a_c00480{transform:matrix(0.194926,0.002339,-0.003000,0.249982,0,0);-ms-transform:matrix(0.194926,0.002339,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.194926,0.002339,-0.003000,0.249982,0,0);}
.mfc_c00480{transform:matrix(0.195504,0.004888,-0.006248,0.249922,0,0);-ms-transform:matrix(0.195504,0.004888,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.195504,0.004888,-0.006248,0.249922,0,0);}
.mc7_c00480{transform:matrix(0.197363,0.005329,-0.006748,0.249909,0,0);-ms-transform:matrix(0.197363,0.005329,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.197363,0.005329,-0.006748,0.249909,0,0);}
.m18_c00480{transform:matrix(0.199686,0.002396,-0.003000,0.249982,0,0);-ms-transform:matrix(0.199686,0.002396,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.199686,0.002396,-0.003000,0.249982,0,0);}
.ma_c00480{transform:matrix(0.200585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200585,0.000000,0.000000,0.250000,0,0);}
.mbc_c00480{transform:matrix(0.200715,0.004014,-0.004999,0.249950,0,0);-ms-transform:matrix(0.200715,0.004014,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.200715,0.004014,-0.004999,0.249950,0,0);}
.mbd_c00480{transform:matrix(0.201725,0.004034,-0.004999,0.249950,0,0);-ms-transform:matrix(0.201725,0.004034,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.201725,0.004034,-0.004999,0.249950,0,0);}
.mbf_c00480{transform:matrix(0.202065,0.004041,-0.004999,0.249950,0,0);-ms-transform:matrix(0.202065,0.004041,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.202065,0.004041,-0.004999,0.249950,0,0);}
.mc0_c00480{transform:matrix(0.203079,0.004062,-0.004999,0.249950,0,0);-ms-transform:matrix(0.203079,0.004062,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.203079,0.004062,-0.004999,0.249950,0,0);}
.m53_c00480{transform:matrix(0.204020,0.002856,-0.003500,0.249976,0,0);-ms-transform:matrix(0.204020,0.002856,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.204020,0.002856,-0.003500,0.249976,0,0);}
.ma1_c00480{transform:matrix(0.204153,0.003879,-0.004749,0.249955,0,0);-ms-transform:matrix(0.204153,0.003879,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.204153,0.003879,-0.004749,0.249955,0,0);}
.m6c_c00480{transform:matrix(0.205077,0.003691,-0.004499,0.249960,0,0);-ms-transform:matrix(0.205077,0.003691,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.205077,0.003691,-0.004499,0.249960,0,0);}
.me0_c00480{transform:matrix(0.205212,0.007806,-0.009503,0.249819,0,0);-ms-transform:matrix(0.205212,0.007806,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.205212,0.007806,-0.009503,0.249819,0,0);}
.m39_c00480{transform:matrix(0.205482,0.001849,-0.002250,0.249990,0,0);-ms-transform:matrix(0.205482,0.001849,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.205482,0.001849,-0.002250,0.249990,0,0);}
.md0_c00480{transform:matrix(0.205905,0.005559,-0.006748,0.249909,0,0);-ms-transform:matrix(0.205905,0.005559,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.205905,0.005559,-0.006748,0.249909,0,0);}
.m54_c00480{transform:matrix(0.206140,0.002886,-0.003500,0.249976,0,0);-ms-transform:matrix(0.206140,0.002886,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.206140,0.002886,-0.003500,0.249976,0,0);}
.mf4_c00480{transform:matrix(0.206760,0.005169,-0.006248,0.249922,0,0);-ms-transform:matrix(0.206760,0.005169,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.206760,0.005169,-0.006248,0.249922,0,0);}
.m98_c00480{transform:matrix(0.206968,0.003932,-0.004749,0.249955,0,0);-ms-transform:matrix(0.206968,0.003932,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.206968,0.003932,-0.004749,0.249955,0,0);}
.m68_c00480{transform:matrix(0.207641,0.003738,-0.004499,0.249960,0,0);-ms-transform:matrix(0.207641,0.003738,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.207641,0.003738,-0.004499,0.249960,0,0);}
.mc8_c00480{transform:matrix(0.207819,0.005611,-0.006748,0.249909,0,0);-ms-transform:matrix(0.207819,0.005611,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.207819,0.005611,-0.006748,0.249909,0,0);}
.mfa_c00480{transform:matrix(0.208000,0.005200,-0.006248,0.249922,0,0);-ms-transform:matrix(0.208000,0.005200,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.208000,0.005200,-0.006248,0.249922,0,0);}
.me4_c00480{transform:matrix(0.208454,0.007929,-0.009503,0.249819,0,0);-ms-transform:matrix(0.208454,0.007929,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.208454,0.007929,-0.009503,0.249819,0,0);}
.m7b_c00480{transform:matrix(0.208518,0.003336,-0.003999,0.249968,0,0);-ms-transform:matrix(0.208518,0.003336,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.208518,0.003336,-0.003999,0.249968,0,0);}
.m7d_c00480{transform:matrix(0.209383,0.003350,-0.003999,0.249968,0,0);-ms-transform:matrix(0.209383,0.003350,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.209383,0.003350,-0.003999,0.249968,0,0);}
.mfd_c00480{transform:matrix(0.209739,0.005243,-0.006248,0.249922,0,0);-ms-transform:matrix(0.209739,0.005243,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.209739,0.005243,-0.006248,0.249922,0,0);}
.m90_c00480{transform:matrix(0.209897,0.003988,-0.004749,0.249955,0,0);-ms-transform:matrix(0.209897,0.003988,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.209897,0.003988,-0.004749,0.249955,0,0);}
.mcb_c00480{transform:matrix(0.210608,0.005686,-0.006748,0.249909,0,0);-ms-transform:matrix(0.210608,0.005686,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.210608,0.005686,-0.006748,0.249909,0,0);}
.m58_c00480{transform:matrix(0.211004,0.002954,-0.003500,0.249976,0,0);-ms-transform:matrix(0.211004,0.002954,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.211004,0.002954,-0.003500,0.249976,0,0);}
.m27_c00480{transform:matrix(0.211202,0.002323,-0.002750,0.249985,0,0);-ms-transform:matrix(0.211202,0.002323,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.211202,0.002323,-0.002750,0.249985,0,0);}
.m94_c00480{transform:matrix(0.211657,0.004021,-0.004749,0.249955,0,0);-ms-transform:matrix(0.211657,0.004021,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.211657,0.004021,-0.004749,0.249955,0,0);}
.m106_c00480{transform:matrix(0.211864,0.005297,-0.006248,0.249922,0,0);-ms-transform:matrix(0.211864,0.005297,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.211864,0.005297,-0.006248,0.249922,0,0);}
.me1_c00480{transform:matrix(0.211997,0.008064,-0.009503,0.249819,0,0);-ms-transform:matrix(0.211997,0.008064,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.211997,0.008064,-0.009503,0.249819,0,0);}
.me2_c00480{transform:matrix(0.212406,0.008080,-0.009503,0.249819,0,0);-ms-transform:matrix(0.212406,0.008080,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.212406,0.008080,-0.009503,0.249819,0,0);}
.m16_c00480{transform:matrix(0.213885,0.002567,-0.003000,0.249982,0,0);-ms-transform:matrix(0.213885,0.002567,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.213885,0.002567,-0.003000,0.249982,0,0);}
.md5_c00480{transform:matrix(0.216431,0.005844,-0.006748,0.249909,0,0);-ms-transform:matrix(0.216431,0.005844,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.216431,0.005844,-0.006748,0.249909,0,0);}
.mc3_c00480{transform:matrix(0.217012,0.004340,-0.004999,0.249950,0,0);-ms-transform:matrix(0.217012,0.004340,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.217012,0.004340,-0.004999,0.249950,0,0);}
.m52_c00480{transform:matrix(0.217084,0.003039,-0.003500,0.249976,0,0);-ms-transform:matrix(0.217084,0.003039,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.217084,0.003039,-0.003500,0.249976,0,0);}
.m91_c00480{transform:matrix(0.218216,0.004146,-0.004749,0.249955,0,0);-ms-transform:matrix(0.218216,0.004146,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.218216,0.004146,-0.004749,0.249955,0,0);}
.m55_c00480{transform:matrix(0.218839,0.003064,-0.003500,0.249976,0,0);-ms-transform:matrix(0.218839,0.003064,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.218839,0.003064,-0.003500,0.249976,0,0);}
.m4e_c00480{transform:matrix(0.220203,0.003083,-0.003500,0.249976,0,0);-ms-transform:matrix(0.220203,0.003083,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.220203,0.003083,-0.003500,0.249976,0,0);}
.md4_c00480{transform:matrix(0.220210,0.005946,-0.006748,0.249909,0,0);-ms-transform:matrix(0.220210,0.005946,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.220210,0.005946,-0.006748,0.249909,0,0);}
.mf8_c00480{transform:matrix(0.220891,0.005522,-0.006248,0.249922,0,0);-ms-transform:matrix(0.220891,0.005522,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.220891,0.005522,-0.006248,0.249922,0,0);}
.m15_c00480{transform:matrix(0.220934,0.002651,-0.003000,0.249982,0,0);-ms-transform:matrix(0.220934,0.002651,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.220934,0.002651,-0.003000,0.249982,0,0);}
.ma2_c00480{transform:matrix(0.221345,0.004206,-0.004749,0.249955,0,0);-ms-transform:matrix(0.221345,0.004206,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.221345,0.004206,-0.004749,0.249955,0,0);}
.mb2_c00480{transform:matrix(0.221410,0.004207,-0.004749,0.249955,0,0);-ms-transform:matrix(0.221410,0.004207,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.221410,0.004207,-0.004749,0.249955,0,0);}
.mda_c00480{transform:matrix(0.221735,0.008434,-0.009503,0.249819,0,0);-ms-transform:matrix(0.221735,0.008434,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.221735,0.008434,-0.009503,0.249819,0,0);}
.m3a_c00480{transform:matrix(0.222836,0.002006,-0.002250,0.249990,0,0);-ms-transform:matrix(0.222836,0.002006,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.222836,0.002006,-0.002250,0.249990,0,0);}
.m102_c00480{transform:matrix(0.222870,0.005572,-0.006248,0.249922,0,0);-ms-transform:matrix(0.222870,0.005572,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.222870,0.005572,-0.006248,0.249922,0,0);}
.mf1_c00480{transform:matrix(0.223045,0.005576,-0.006248,0.249922,0,0);-ms-transform:matrix(0.223045,0.005576,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.223045,0.005576,-0.006248,0.249922,0,0);}
.m7e_c00480{transform:matrix(0.223126,0.003570,-0.003999,0.249968,0,0);-ms-transform:matrix(0.223126,0.003570,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.223126,0.003570,-0.003999,0.249968,0,0);}
.me9_c00480{transform:matrix(0.223140,0.004240,-0.004749,0.249955,0,0);-ms-transform:matrix(0.223140,0.004240,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.223140,0.004240,-0.004749,0.249955,0,0);}
.m30_c00480{transform:matrix(0.223256,0.002456,-0.002750,0.249985,0,0);-ms-transform:matrix(0.223256,0.002456,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.223256,0.002456,-0.002750,0.249985,0,0);}
.m56_c00480{transform:matrix(0.223333,0.003127,-0.003500,0.249976,0,0);-ms-transform:matrix(0.223333,0.003127,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.223333,0.003127,-0.003500,0.249976,0,0);}
.m23_c00480{transform:matrix(0.224066,0.002465,-0.002750,0.249985,0,0);-ms-transform:matrix(0.224066,0.002465,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.224066,0.002465,-0.002750,0.249985,0,0);}
.m107_c00480{transform:matrix(0.224585,0.005615,-0.006248,0.249922,0,0);-ms-transform:matrix(0.224585,0.005615,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.224585,0.005615,-0.006248,0.249922,0,0);}
.m25_c00480{transform:matrix(0.224751,0.002472,-0.002750,0.249985,0,0);-ms-transform:matrix(0.224751,0.002472,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.224751,0.002472,-0.002750,0.249985,0,0);}
.mdc_c00480{transform:matrix(0.224902,0.008555,-0.009503,0.249819,0,0);-ms-transform:matrix(0.224902,0.008555,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.224902,0.008555,-0.009503,0.249819,0,0);}
.mff_c00480{transform:matrix(0.225600,0.005640,-0.006248,0.249922,0,0);-ms-transform:matrix(0.225600,0.005640,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.225600,0.005640,-0.006248,0.249922,0,0);}
.m80_c00480{transform:matrix(0.225691,0.003611,-0.003999,0.249968,0,0);-ms-transform:matrix(0.225691,0.003611,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.225691,0.003611,-0.003999,0.249968,0,0);}
.md3_c00480{transform:matrix(0.225998,0.006102,-0.006748,0.249909,0,0);-ms-transform:matrix(0.225998,0.006102,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.225998,0.006102,-0.006748,0.249909,0,0);}
.mb0_c00480{transform:matrix(0.226184,0.004297,-0.004749,0.249955,0,0);-ms-transform:matrix(0.226184,0.004297,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.226184,0.004297,-0.004749,0.249955,0,0);}
.m37_c00480{transform:matrix(0.226346,0.002037,-0.002250,0.249990,0,0);-ms-transform:matrix(0.226346,0.002037,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.226346,0.002037,-0.002250,0.249990,0,0);}
.mb7_c00480{transform:matrix(0.227364,0.004320,-0.004749,0.249955,0,0);-ms-transform:matrix(0.227364,0.004320,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.227364,0.004320,-0.004749,0.249955,0,0);}
.mb4_c00480{transform:matrix(0.227389,0.004320,-0.004749,0.249955,0,0);-ms-transform:matrix(0.227389,0.004320,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.227389,0.004320,-0.004749,0.249955,0,0);}
.mf3_c00480{transform:matrix(0.227599,0.005690,-0.006248,0.249922,0,0);-ms-transform:matrix(0.227599,0.005690,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.227599,0.005690,-0.006248,0.249922,0,0);}
.m11_c00480{transform:matrix(0.228135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228135,0.000000,0.000000,0.250000,0,0);}
.m20_c00480{transform:matrix(0.228356,0.002512,-0.002750,0.249985,0,0);-ms-transform:matrix(0.228356,0.002512,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.228356,0.002512,-0.002750,0.249985,0,0);}
.m6d_c00480{transform:matrix(0.228703,0.004117,-0.004499,0.249960,0,0);-ms-transform:matrix(0.228703,0.004117,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.228703,0.004117,-0.004499,0.249960,0,0);}
.mea_c00480{transform:matrix(0.229489,0.004360,-0.004749,0.249955,0,0);-ms-transform:matrix(0.229489,0.004360,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.229489,0.004360,-0.004749,0.249955,0,0);}
.m48_c00480{transform:matrix(0.229807,0.003217,-0.003500,0.249976,0,0);-ms-transform:matrix(0.229807,0.003217,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.229807,0.003217,-0.003500,0.249976,0,0);}
.md7_c00480{transform:matrix(0.230026,0.006211,-0.006748,0.249909,0,0);-ms-transform:matrix(0.230026,0.006211,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.230026,0.006211,-0.006748,0.249909,0,0);}
.m103_c00480{transform:matrix(0.230243,0.005756,-0.006248,0.249922,0,0);-ms-transform:matrix(0.230243,0.005756,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.230243,0.005756,-0.006248,0.249922,0,0);}
.m6b_c00480{transform:matrix(0.230563,0.004150,-0.004499,0.249960,0,0);-ms-transform:matrix(0.230563,0.004150,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.230563,0.004150,-0.004499,0.249960,0,0);}
.mca_c00480{transform:matrix(0.230671,0.006228,-0.006748,0.249909,0,0);-ms-transform:matrix(0.230671,0.006228,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.230671,0.006228,-0.006748,0.249909,0,0);}
.m76_c00480{transform:matrix(0.231500,0.003704,-0.003999,0.249968,0,0);-ms-transform:matrix(0.231500,0.003704,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.231500,0.003704,-0.003999,0.249968,0,0);}
.mf5_c00480{transform:matrix(0.231823,0.005796,-0.006248,0.249922,0,0);-ms-transform:matrix(0.231823,0.005796,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.231823,0.005796,-0.006248,0.249922,0,0);}
.mc6_c00480{transform:matrix(0.232250,0.006271,-0.006748,0.249909,0,0);-ms-transform:matrix(0.232250,0.006271,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.232250,0.006271,-0.006748,0.249909,0,0);}
.mde_c00480{transform:matrix(0.232297,0.008836,-0.009503,0.249819,0,0);-ms-transform:matrix(0.232297,0.008836,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.232297,0.008836,-0.009503,0.249819,0,0);}
.m1f_c00480{transform:matrix(0.232506,0.002558,-0.002750,0.249985,0,0);-ms-transform:matrix(0.232506,0.002558,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.232506,0.002558,-0.002750,0.249985,0,0);}
.m93_c00480{transform:matrix(0.232633,0.004420,-0.004749,0.249955,0,0);-ms-transform:matrix(0.232633,0.004420,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.232633,0.004420,-0.004749,0.249955,0,0);}
.m4d_c00480{transform:matrix(0.232962,0.003261,-0.003500,0.249976,0,0);-ms-transform:matrix(0.232962,0.003261,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.232962,0.003261,-0.003500,0.249976,0,0);}
.mc9_c00480{transform:matrix(0.233075,0.006293,-0.006748,0.249909,0,0);-ms-transform:matrix(0.233075,0.006293,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.233075,0.006293,-0.006748,0.249909,0,0);}
.m6e_c00480{transform:matrix(0.233407,0.004201,-0.004499,0.249960,0,0);-ms-transform:matrix(0.233407,0.004201,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.233407,0.004201,-0.004499,0.249960,0,0);}
.m9e_c00480{transform:matrix(0.233478,0.004436,-0.004749,0.249955,0,0);-ms-transform:matrix(0.233478,0.004436,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.233478,0.004436,-0.004749,0.249955,0,0);}
.m17_c00480{transform:matrix(0.233813,0.002806,-0.003000,0.249982,0,0);-ms-transform:matrix(0.233813,0.002806,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.233813,0.002806,-0.003000,0.249982,0,0);}
.me3_c00480{transform:matrix(0.233931,0.008898,-0.009503,0.249819,0,0);-ms-transform:matrix(0.233931,0.008898,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.233931,0.008898,-0.009503,0.249819,0,0);}
.m4f_c00480{transform:matrix(0.235482,0.003297,-0.003500,0.249976,0,0);-ms-transform:matrix(0.235482,0.003297,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.235482,0.003297,-0.003500,0.249976,0,0);}
.ma4_c00480{transform:matrix(0.235557,0.004476,-0.004749,0.249955,0,0);-ms-transform:matrix(0.235557,0.004476,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.235557,0.004476,-0.004749,0.249955,0,0);}
.m33_c00480{transform:matrix(0.235580,0.002120,-0.002250,0.249990,0,0);-ms-transform:matrix(0.235580,0.002120,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.235580,0.002120,-0.002250,0.249990,0,0);}
.mba_c00480{transform:matrix(0.237185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237185,0.000000,0.000000,0.250000,0,0);}
.m19_c00480{transform:matrix(0.237373,0.002848,-0.003000,0.249982,0,0);-ms-transform:matrix(0.237373,0.002848,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.237373,0.002848,-0.003000,0.249982,0,0);}
.mfb_c00480{transform:matrix(0.239415,0.005985,-0.006248,0.249922,0,0);-ms-transform:matrix(0.239415,0.005985,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.239415,0.005985,-0.006248,0.249922,0,0);}
.m108_c00480{transform:matrix(0.239420,0.005986,-0.006248,0.249922,0,0);-ms-transform:matrix(0.239420,0.005986,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.239420,0.005986,-0.006248,0.249922,0,0);}
.m74_c00480{transform:matrix(0.239844,0.003838,-0.003999,0.249968,0,0);-ms-transform:matrix(0.239844,0.003838,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.239844,0.003838,-0.003999,0.249968,0,0);}
.m100_c00480{transform:matrix(0.240035,0.006001,-0.006248,0.249922,0,0);-ms-transform:matrix(0.240035,0.006001,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.240035,0.006001,-0.006248,0.249922,0,0);}
.m92_c00480{transform:matrix(0.240102,0.004562,-0.004749,0.249955,0,0);-ms-transform:matrix(0.240102,0.004562,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.240102,0.004562,-0.004749,0.249955,0,0);}
.m69_c00480{transform:matrix(0.240161,0.004323,-0.004499,0.249960,0,0);-ms-transform:matrix(0.240161,0.004323,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.240161,0.004323,-0.004499,0.249960,0,0);}
.m28_c00480{transform:matrix(0.240485,0.002645,-0.002750,0.249985,0,0);-ms-transform:matrix(0.240485,0.002645,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.240485,0.002645,-0.002750,0.249985,0,0);}
.m101_c00480{transform:matrix(0.240855,0.006021,-0.006248,0.249922,0,0);-ms-transform:matrix(0.240855,0.006021,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.240855,0.006021,-0.006248,0.249922,0,0);}
.m5d_c00480{transform:matrix(0.241080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241080,0.000000,0.000000,0.250000,0,0);}
.mb5_c00480{transform:matrix(0.241256,0.004584,-0.004749,0.249955,0,0);-ms-transform:matrix(0.241256,0.004584,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.241256,0.004584,-0.004749,0.249955,0,0);}
.m38_c00480{transform:matrix(0.241280,0.002172,-0.002250,0.249990,0,0);-ms-transform:matrix(0.241280,0.002172,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.241280,0.002172,-0.002250,0.249990,0,0);}
.mb8_c00480{transform:matrix(0.241421,0.004587,-0.004749,0.249955,0,0);-ms-transform:matrix(0.241421,0.004587,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.241421,0.004587,-0.004749,0.249955,0,0);}
.m2d_c00480{transform:matrix(0.241505,0.002657,-0.002750,0.249985,0,0);-ms-transform:matrix(0.241505,0.002657,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.241505,0.002657,-0.002750,0.249985,0,0);}
.m7c_c00480{transform:matrix(0.241549,0.003865,-0.003999,0.249968,0,0);-ms-transform:matrix(0.241549,0.003865,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.241549,0.003865,-0.003999,0.249968,0,0);}
.m62_c00480{transform:matrix(0.242285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242285,0.000000,0.000000,0.250000,0,0);}
.m87_c00480{transform:matrix(0.242424,0.003879,-0.003999,0.249968,0,0);-ms-transform:matrix(0.242424,0.003879,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.242424,0.003879,-0.003999,0.249968,0,0);}
.m7f_c00480{transform:matrix(0.242779,0.003884,-0.003999,0.249968,0,0);-ms-transform:matrix(0.242779,0.003884,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.242779,0.003884,-0.003999,0.249968,0,0);}
.m26_c00480{transform:matrix(0.243010,0.002673,-0.002750,0.249985,0,0);-ms-transform:matrix(0.243010,0.002673,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.243010,0.002673,-0.002750,0.249985,0,0);}
.me_c00480{transform:matrix(0.243055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243055,0.000000,0.000000,0.250000,0,0);}
.m21_c00480{transform:matrix(0.243725,0.002681,-0.002750,0.249985,0,0);-ms-transform:matrix(0.243725,0.002681,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.243725,0.002681,-0.002750,0.249985,0,0);}
.m1b_c00480{transform:matrix(0.244267,0.002931,-0.003000,0.249982,0,0);-ms-transform:matrix(0.244267,0.002931,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.244267,0.002931,-0.003000,0.249982,0,0);}
.mfe_c00480{transform:matrix(0.244484,0.006112,-0.006248,0.249922,0,0);-ms-transform:matrix(0.244484,0.006112,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.244484,0.006112,-0.006248,0.249922,0,0);}
.m6f_c00480{transform:matrix(0.244760,0.004406,-0.004499,0.249960,0,0);-ms-transform:matrix(0.244760,0.004406,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.244760,0.004406,-0.004499,0.249960,0,0);}
.m4b_c00480{transform:matrix(0.245191,0.003433,-0.003500,0.249976,0,0);-ms-transform:matrix(0.245191,0.003433,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.245191,0.003433,-0.003500,0.249976,0,0);}
.m105_c00480{transform:matrix(0.245378,0.006134,-0.006248,0.249922,0,0);-ms-transform:matrix(0.245378,0.006134,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.245378,0.006134,-0.006248,0.249922,0,0);}
.me8_c00480{transform:matrix(0.245441,0.004663,-0.004749,0.249955,0,0);-ms-transform:matrix(0.245441,0.004663,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.245441,0.004663,-0.004749,0.249955,0,0);}
.m99_c00480{transform:matrix(0.246441,0.004682,-0.004749,0.249955,0,0);-ms-transform:matrix(0.246441,0.004682,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.246441,0.004682,-0.004749,0.249955,0,0);}
.ma9_c00480{transform:matrix(0.246521,0.004684,-0.004749,0.249955,0,0);-ms-transform:matrix(0.246521,0.004684,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.246521,0.004684,-0.004749,0.249955,0,0);}
.m32_c00480{transform:matrix(0.246575,0.002219,-0.002250,0.249990,0,0);-ms-transform:matrix(0.246575,0.002219,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.246575,0.002219,-0.002250,0.249990,0,0);}
.m35_c00480{transform:matrix(0.246930,0.002222,-0.002250,0.249990,0,0);-ms-transform:matrix(0.246930,0.002222,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.246930,0.002222,-0.002250,0.249990,0,0);}
.m9b_c00480{transform:matrix(0.248060,0.004713,-0.004749,0.249955,0,0);-ms-transform:matrix(0.248060,0.004713,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.248060,0.004713,-0.004749,0.249955,0,0);}
.ma0_c00480{transform:matrix(0.248690,0.004725,-0.004749,0.249955,0,0);-ms-transform:matrix(0.248690,0.004725,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.248690,0.004725,-0.004749,0.249955,0,0);}
.meb_c00480{transform:matrix(0.249265,0.004736,-0.004749,0.249955,0,0);-ms-transform:matrix(0.249265,0.004736,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.249265,0.004736,-0.004749,0.249955,0,0);}
.m34_c00480{transform:matrix(0.249405,0.002245,-0.002250,0.249990,0,0);-ms-transform:matrix(0.249405,0.002245,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.249405,0.002245,-0.002250,0.249990,0,0);}
.m8d_c00480{transform:matrix(0.249583,0.003993,-0.003999,0.249968,0,0);-ms-transform:matrix(0.249583,0.003993,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.249583,0.003993,-0.003999,0.249968,0,0);}
.m1e_c00480{transform:matrix(0.250250,0.002753,-0.002750,0.249985,0,0);-ms-transform:matrix(0.250250,0.002753,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.250250,0.002753,-0.002750,0.249985,0,0);}
.m47_c00480{transform:matrix(0.250505,0.003507,-0.003500,0.249976,0,0);-ms-transform:matrix(0.250505,0.003507,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.250505,0.003507,-0.003500,0.249976,0,0);}
.m109_c00480{transform:matrix(0.251851,0.006296,-0.006248,0.249922,0,0);-ms-transform:matrix(0.251851,0.006296,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.251851,0.006296,-0.006248,0.249922,0,0);}
.m24_c00480{transform:matrix(0.251860,0.002770,-0.002750,0.249985,0,0);-ms-transform:matrix(0.251860,0.002770,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.251860,0.002770,-0.002750,0.249985,0,0);}
.me7_c00480{transform:matrix(0.252884,0.004805,-0.004749,0.249955,0,0);-ms-transform:matrix(0.252884,0.004805,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.252884,0.004805,-0.004749,0.249955,0,0);}
.m8f_c00480{transform:matrix(0.254234,0.004830,-0.004749,0.249955,0,0);-ms-transform:matrix(0.254234,0.004830,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.254234,0.004830,-0.004749,0.249955,0,0);}
.m85_c00480{transform:matrix(0.254327,0.004069,-0.003999,0.249968,0,0);-ms-transform:matrix(0.254327,0.004069,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.254327,0.004069,-0.003999,0.249968,0,0);}
.mb3_c00480{transform:matrix(0.254959,0.004844,-0.004749,0.249955,0,0);-ms-transform:matrix(0.254959,0.004844,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.254959,0.004844,-0.004749,0.249955,0,0);}
.m2e_c00480{transform:matrix(0.255565,0.002811,-0.002750,0.249985,0,0);-ms-transform:matrix(0.255565,0.002811,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.255565,0.002811,-0.002750,0.249985,0,0);}
.m3b_c00480{transform:matrix(0.257310,0.002316,-0.002250,0.249990,0,0);-ms-transform:matrix(0.257310,0.002316,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.257310,0.002316,-0.002250,0.249990,0,0);}
.mac_c00480{transform:matrix(0.257374,0.004890,-0.004749,0.249955,0,0);-ms-transform:matrix(0.257374,0.004890,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.257374,0.004890,-0.004749,0.249955,0,0);}
.mef_c00480{transform:matrix(0.257524,0.004893,-0.004749,0.249955,0,0);-ms-transform:matrix(0.257524,0.004893,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.257524,0.004893,-0.004749,0.249955,0,0);}
.m5f_c00480{transform:matrix(0.257545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257545,0.000000,0.000000,0.250000,0,0);}
.mad_c00480{transform:matrix(0.258568,0.004913,-0.004749,0.249955,0,0);-ms-transform:matrix(0.258568,0.004913,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.258568,0.004913,-0.004749,0.249955,0,0);}
.m9c_c00480{transform:matrix(0.258698,0.004915,-0.004749,0.249955,0,0);-ms-transform:matrix(0.258698,0.004915,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.258698,0.004915,-0.004749,0.249955,0,0);}
.m10a_c00480{transform:matrix(0.259549,0.006489,-0.006248,0.249922,0,0);-ms-transform:matrix(0.259549,0.006489,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.259549,0.006489,-0.006248,0.249922,0,0);}
.maf_c00480{transform:matrix(0.259923,0.004939,-0.004749,0.249955,0,0);-ms-transform:matrix(0.259923,0.004939,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.259923,0.004939,-0.004749,0.249955,0,0);}
.mb6_c00480{transform:matrix(0.261803,0.004974,-0.004749,0.249955,0,0);-ms-transform:matrix(0.261803,0.004974,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.261803,0.004974,-0.004749,0.249955,0,0);}
.m59_c00480{transform:matrix(0.262720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262720,0.000000,0.000000,0.250000,0,0);}
.mf0_c00480{transform:matrix(0.263517,0.005007,-0.004749,0.249955,0,0);-ms-transform:matrix(0.263517,0.005007,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.263517,0.005007,-0.004749,0.249955,0,0);}
.m22_c00480{transform:matrix(0.264174,0.002906,-0.002750,0.249985,0,0);-ms-transform:matrix(0.264174,0.002906,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.264174,0.002906,-0.002750,0.249985,0,0);}
.ma7_c00480{transform:matrix(0.264527,0.005026,-0.004749,0.249955,0,0);-ms-transform:matrix(0.264527,0.005026,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.264527,0.005026,-0.004749,0.249955,0,0);}
.mee_c00480{transform:matrix(0.265077,0.005036,-0.004749,0.249955,0,0);-ms-transform:matrix(0.265077,0.005036,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.265077,0.005036,-0.004749,0.249955,0,0);}
.ma8_c00480{transform:matrix(0.266917,0.005071,-0.004749,0.249955,0,0);-ms-transform:matrix(0.266917,0.005071,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.266917,0.005071,-0.004749,0.249955,0,0);}
.m42_c00480{transform:matrix(0.267487,0.003477,-0.003250,0.249979,0,0);-ms-transform:matrix(0.267487,0.003477,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.267487,0.003477,-0.003250,0.249979,0,0);}
.mab_c00480{transform:matrix(0.267592,0.005084,-0.004749,0.249955,0,0);-ms-transform:matrix(0.267592,0.005084,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.267592,0.005084,-0.004749,0.249955,0,0);}
.m8e_c00480{transform:matrix(0.267741,0.004284,-0.003999,0.249968,0,0);-ms-transform:matrix(0.267741,0.004284,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.267741,0.004284,-0.003999,0.249968,0,0);}
.m89_c00480{transform:matrix(0.268296,0.004293,-0.003999,0.249968,0,0);-ms-transform:matrix(0.268296,0.004293,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.268296,0.004293,-0.003999,0.249968,0,0);}
.mbb_c00480{transform:matrix(0.268835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268835,0.000000,0.000000,0.250000,0,0);}
.m4a_c00480{transform:matrix(0.269329,0.003771,-0.003500,0.249976,0,0);-ms-transform:matrix(0.269329,0.003771,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.269329,0.003771,-0.003500,0.249976,0,0);}
.m4c_c00480{transform:matrix(0.269589,0.003774,-0.003500,0.249976,0,0);-ms-transform:matrix(0.269589,0.003774,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.269589,0.003774,-0.003500,0.249976,0,0);}
.med_c00480{transform:matrix(0.270081,0.005132,-0.004749,0.249955,0,0);-ms-transform:matrix(0.270081,0.005132,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.270081,0.005132,-0.004749,0.249955,0,0);}
.me5_c00480{transform:matrix(0.270275,0.010281,-0.009503,0.249819,0,0);-ms-transform:matrix(0.270275,0.010281,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.270275,0.010281,-0.009503,0.249819,0,0);}
.m2b_c00480{transform:matrix(0.271244,0.002984,-0.002750,0.249985,0,0);-ms-transform:matrix(0.271244,0.002984,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.271244,0.002984,-0.002750,0.249985,0,0);}
.m2f_c00480{transform:matrix(0.271664,0.002988,-0.002750,0.249985,0,0);-ms-transform:matrix(0.271664,0.002988,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.271664,0.002988,-0.002750,0.249985,0,0);}
.m64_c00480{transform:matrix(0.272445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272445,0.000000,0.000000,0.250000,0,0);}
.m5a_c00480{transform:matrix(0.272450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272450,0.000000,0.000000,0.250000,0,0);}
.m75_c00480{transform:matrix(0.272470,0.004360,-0.003999,0.249968,0,0);-ms-transform:matrix(0.272470,0.004360,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.272470,0.004360,-0.003999,0.249968,0,0);}
.m5e_c00480{transform:matrix(0.272645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272645,0.000000,0.000000,0.250000,0,0);}
.m8a_c00480{transform:matrix(0.274735,0.004396,-0.003999,0.249968,0,0);-ms-transform:matrix(0.274735,0.004396,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.274735,0.004396,-0.003999,0.249968,0,0);}
.m49_c00480{transform:matrix(0.275173,0.003852,-0.003500,0.249976,0,0);-ms-transform:matrix(0.275173,0.003852,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.275173,0.003852,-0.003500,0.249976,0,0);}
.m10_c00480{transform:matrix(0.275355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275355,0.000000,0.000000,0.250000,0,0);}
.mb1_c00480{transform:matrix(0.275600,0.005236,-0.004749,0.249955,0,0);-ms-transform:matrix(0.275600,0.005236,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.275600,0.005236,-0.004749,0.249955,0,0);}
.m65_c00480{transform:matrix(0.275685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275685,0.000000,0.000000,0.250000,0,0);}
.mc_c00480{transform:matrix(0.275890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275890,0.000000,0.000000,0.250000,0,0);}
.m12_c00480{transform:matrix(0.276085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276085,0.000000,0.000000,0.250000,0,0);}
.m13_c00480{transform:matrix(0.276330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276330,0.000000,0.000000,0.250000,0,0);}
.m83_c00480{transform:matrix(0.276485,0.004424,-0.003999,0.249968,0,0);-ms-transform:matrix(0.276485,0.004424,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.276485,0.004424,-0.003999,0.249968,0,0);}
.md_c00480{transform:matrix(0.277380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277380,0.000000,0.000000,0.250000,0,0);}
.m96_c00480{transform:matrix(0.277595,0.005274,-0.004749,0.249955,0,0);-ms-transform:matrix(0.277595,0.005274,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.277595,0.005274,-0.004749,0.249955,0,0);}
.mf_c00480{transform:matrix(0.277740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277740,0.000000,0.000000,0.250000,0,0);}
.maa_c00480{transform:matrix(0.278115,0.005284,-0.004749,0.249955,0,0);-ms-transform:matrix(0.278115,0.005284,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.278115,0.005284,-0.004749,0.249955,0,0);}
.m2c_c00480{transform:matrix(0.278518,0.003064,-0.002750,0.249985,0,0);-ms-transform:matrix(0.278518,0.003064,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.278518,0.003064,-0.002750,0.249985,0,0);}
.m4_c00480{transform:matrix(0.278885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278885,0.000000,0.000000,0.250000,0,0);}
.m31_c00480{transform:matrix(0.279283,0.003072,-0.002750,0.249985,0,0);-ms-transform:matrix(0.279283,0.003072,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.279283,0.003072,-0.002750,0.249985,0,0);}
.m78_c00480{transform:matrix(0.282204,0.004515,-0.003999,0.249968,0,0);-ms-transform:matrix(0.282204,0.004515,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.282204,0.004515,-0.003999,0.249968,0,0);}
.m3f_c00480{transform:matrix(0.282784,0.002545,-0.002250,0.249990,0,0);-ms-transform:matrix(0.282784,0.002545,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.282784,0.002545,-0.002250,0.249990,0,0);}
.m84_c00480{transform:matrix(0.284269,0.004548,-0.003999,0.249968,0,0);-ms-transform:matrix(0.284269,0.004548,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.284269,0.004548,-0.003999,0.249968,0,0);}
.m9_c00480{transform:matrix(0.284960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284960,0.000000,0.000000,0.250000,0,0);}
.ma3_c00480{transform:matrix(0.285274,0.005420,-0.004749,0.249955,0,0);-ms-transform:matrix(0.285274,0.005420,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.285274,0.005420,-0.004749,0.249955,0,0);}
.m88_c00480{transform:matrix(0.285848,0.004574,-0.003999,0.249968,0,0);-ms-transform:matrix(0.285848,0.004574,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.285848,0.004574,-0.003999,0.249968,0,0);}
.m77_c00480{transform:matrix(0.288143,0.004610,-0.003999,0.249968,0,0);-ms-transform:matrix(0.288143,0.004610,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.288143,0.004610,-0.003999,0.249968,0,0);}
.m9a_c00480{transform:matrix(0.290653,0.005522,-0.004749,0.249955,0,0);-ms-transform:matrix(0.290653,0.005522,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.290653,0.005522,-0.004749,0.249955,0,0);}
.m97_c00480{transform:matrix(0.292787,0.005563,-0.004749,0.249955,0,0);-ms-transform:matrix(0.292787,0.005563,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.292787,0.005563,-0.004749,0.249955,0,0);}
.m95_c00480{transform:matrix(0.293222,0.005571,-0.004749,0.249955,0,0);-ms-transform:matrix(0.293222,0.005571,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.293222,0.005571,-0.004749,0.249955,0,0);}
.m86_c00480{transform:matrix(0.295707,0.004731,-0.003999,0.249968,0,0);-ms-transform:matrix(0.295707,0.004731,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.295707,0.004731,-0.003999,0.249968,0,0);}
.m8c_c00480{transform:matrix(0.297067,0.004753,-0.003999,0.249968,0,0);-ms-transform:matrix(0.297067,0.004753,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.297067,0.004753,-0.003999,0.249968,0,0);}
.m8b_c00480{transform:matrix(0.297252,0.004756,-0.003999,0.249968,0,0);-ms-transform:matrix(0.297252,0.004756,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.297252,0.004756,-0.003999,0.249968,0,0);}
.m43_c00480{transform:matrix(0.297460,0.003867,-0.003250,0.249979,0,0);-ms-transform:matrix(0.297460,0.003867,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.297460,0.003867,-0.003250,0.249979,0,0);}
.m44_c00480{transform:matrix(0.298100,0.003875,-0.003250,0.249979,0,0);-ms-transform:matrix(0.298100,0.003875,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.298100,0.003875,-0.003250,0.249979,0,0);}
.m7_c00480{transform:matrix(0.302935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302935,0.000000,0.000000,0.250000,0,0);}
.m8_c00480{transform:matrix(0.304210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304210,0.000000,0.000000,0.250000,0,0);}
.m9d_c00480{transform:matrix(0.315343,0.005992,-0.004749,0.249955,0,0);-ms-transform:matrix(0.315343,0.005992,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.315343,0.005992,-0.004749,0.249955,0,0);}
.m6_c00480{transform:matrix(0.321175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321175,0.000000,0.000000,0.250000,0,0);}
.m63_c00480{transform:matrix(0.327395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327395,0.000000,0.000000,0.250000,0,0);}
.m5_c00480{transform:matrix(0.328385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328385,0.000000,0.000000,0.250000,0,0);}
.mce_c00480{transform:matrix(0.333209,0.008997,-0.006748,0.249909,0,0);-ms-transform:matrix(0.333209,0.008997,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.333209,0.008997,-0.006748,0.249909,0,0);}
.mb9_c00480{transform:matrix(0.335130,0.006367,-0.004749,0.249955,0,0);-ms-transform:matrix(0.335130,0.006367,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.335130,0.006367,-0.004749,0.249955,0,0);}
.m3c_c00480{transform:matrix(0.335606,0.003020,-0.002250,0.249990,0,0);-ms-transform:matrix(0.335606,0.003020,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.335606,0.003020,-0.002250,0.249990,0,0);}
.m3_c00480{transform:matrix(0.339960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339960,0.000000,0.000000,0.250000,0,0);}
.m104_c00480{transform:matrix(0.358053,0.008951,-0.006248,0.249922,0,0);-ms-transform:matrix(0.358053,0.008951,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.358053,0.008951,-0.006248,0.249922,0,0);}
.m70_c00480{transform:matrix(0.407190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407190,0.000000,0.000000,0.250000,0,0);}
.m71_c00480{transform:matrix(0.436845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436845,0.000000,0.000000,0.250000,0,0);}
.mcd_c00480{transform:matrix(0.459038,0.012394,-0.006748,0.249909,0,0);-ms-transform:matrix(0.459038,0.012394,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.459038,0.012394,-0.006748,0.249909,0,0);}
.m41_c00480{transform:matrix(0.461641,0.004155,-0.002250,0.249990,0,0);-ms-transform:matrix(0.461641,0.004155,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.461641,0.004155,-0.002250,0.249990,0,0);}
.m1d_c00480{transform:matrix(0.477326,0.005251,-0.002750,0.249985,0,0);-ms-transform:matrix(0.477326,0.005251,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.477326,0.005251,-0.002750,0.249985,0,0);}
.m40_c00480{transform:matrix(0.531058,0.004780,-0.002250,0.249990,0,0);-ms-transform:matrix(0.531058,0.004780,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.531058,0.004780,-0.002250,0.249990,0,0);}
.mcc_c00480{transform:matrix(0.699415,0.018884,-0.006748,0.249909,0,0);-ms-transform:matrix(0.699415,0.018884,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.699415,0.018884,-0.006748,0.249909,0,0);}
.m3e_c00480{transform:matrix(2.409872,0.021689,-0.002250,0.249990,0,0);-ms-transform:matrix(2.409872,0.021689,-0.002250,0.249990,0,0);-webkit-transform:matrix(2.409872,0.021689,-0.002250,0.249990,0,0);}
.m3d_c00480{transform:matrix(5.468264,0.049214,-0.002250,0.249990,0,0);-ms-transform:matrix(5.468264,0.049214,-0.002250,0.249990,0,0);-webkit-transform:matrix(5.468264,0.049214,-0.002250,0.249990,0,0);}
.v0_c00480{vertical-align:0.000000px;}
.ls0_c00480{letter-spacing:0.000000px;}
.sc__c00480{text-shadow:none;}
.sc0_c00480{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__c00480{-webkit-text-stroke:0px transparent;}
.sc0_c00480{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00480{word-spacing:0.000000px;}
.fc0_c00480{color:transparent;}
.fs18_c00480{font-size:23.993339px;}
.fs8_c00480{font-size:24.000972px;}
.fsd_c00480{font-size:48.000000px;}
.fs1_c00480{font-size:60.000000px;}
.fs9_c00480{font-size:66.005577px;}
.fs10_c00480{font-size:66.008447px;}
.fs12_c00480{font-size:66.011912px;}
.fs3_c00480{font-size:72.000000px;}
.fs6_c00480{font-size:72.004356px;}
.fsa_c00480{font-size:72.007056px;}
.fse_c00480{font-size:72.009215px;}
.fs13_c00480{font-size:72.012995px;}
.fs7_c00480{font-size:78.003159px;}
.fs5_c00480{font-size:78.004719px;}
.fs11_c00480{font-size:78.014078px;}
.fs1a_c00480{font-size:78.024371px;}
.fs17_c00480{font-size:83.976687px;}
.fs2_c00480{font-size:84.000000px;}
.fs4_c00480{font-size:84.006048px;}
.fsf_c00480{font-size:84.010751px;}
.fsc_c00480{font-size:84.013607px;}
.fs19_c00480{font-size:84.026246px;}
.fs15_c00480{font-size:84.030612px;}
.fsb_c00480{font-size:90.008820px;}
.fs14_c00480{font-size:96.019198px;}
.fs16_c00480{font-size:102.037172px;}
.fs0_c00480{font-size:108.000000px;}
.y0_c00480{bottom:0.000000px;}
.yff_c00480{bottom:29.755237px;}
.yfe_c00480{bottom:31.937850px;}
.yfd_c00480{bottom:33.579787px;}
.yfc_c00480{bottom:34.437600px;}
.yfb_c00480{bottom:35.261362px;}
.yfa_c00480{bottom:37.442962px;}
.yf9_c00480{bottom:38.018550px;}
.yf8_c00480{bottom:39.374212px;}
.yf7_c00480{bottom:40.467187px;}
.yf6_c00480{bottom:42.098475px;}
.yf5_c00480{bottom:43.740900px;}
.yf4_c00480{bottom:44.806237px;}
.yf3_c00480{bottom:69.805162px;}
.yf2_c00480{bottom:70.713675px;}
.yf1_c00480{bottom:71.627962px;}
.yf0_c00480{bottom:74.728875px;}
.yef_c00480{bottom:75.643162px;}
.yee_c00480{bottom:76.541512px;}
.yed_c00480{bottom:78.618262px;}
.yec_c00480{bottom:79.492950px;}
.yeb_c00480{bottom:80.456775px;}
.yea_c00480{bottom:95.404425px;}
.ye9_c00480{bottom:96.255487px;}
.ye8_c00480{bottom:97.936050px;}
.ye7_c00480{bottom:99.051150px;}
.ye6_c00480{bottom:100.992000px;}
.ye5_c00480{bottom:108.695889px;}
.ye4_c00480{bottom:109.525710px;}
.ye3_c00480{bottom:111.000572px;}
.ye2_c00480{bottom:112.637418px;}
.ye1_c00480{bottom:113.074914px;}
.ye0_c00480{bottom:113.934541px;}
.ydf_c00480{bottom:149.176028px;}
.yde_c00480{bottom:150.011762px;}
.ydd_c00480{bottom:151.847475px;}
.ydc_c00480{bottom:152.484364px;}
.ydb_c00480{bottom:153.091500px;}
.yd9_c00480{bottom:166.272864px;}
.yd8_c00480{bottom:169.290615px;}
.yda_c00480{bottom:170.084181px;}
.yd7_c00480{bottom:173.534664px;}
.yd6_c00480{bottom:175.208184px;}
.yd5_c00480{bottom:176.038275px;}
.yd4_c00480{bottom:177.627948px;}
.yd3_c00480{bottom:181.018194px;}
.yd2_c00480{bottom:182.731557px;}
.yd1_c00480{bottom:185.256030px;}
.yd0_c00480{bottom:186.506838px;}
.ycf_c00480{bottom:190.163901px;}
.yce_c00480{bottom:191.432208px;}
.ycd_c00480{bottom:193.048500px;}
.ycc_c00480{bottom:215.245979px;}
.ycb_c00480{bottom:215.936177px;}
.yca_c00480{bottom:216.624111px;}
.yc9_c00480{bottom:217.330961px;}
.yc8_c00480{bottom:218.009115px;}
.yc7_c00480{bottom:218.382305px;}
.yc6_c00480{bottom:218.687107px;}
.yc1_c00480{bottom:242.772818px;}
.yc5_c00480{bottom:242.772995px;}
.yc3_c00480{bottom:242.773261px;}
.yc4_c00480{bottom:242.773275px;}
.yc2_c00480{bottom:242.773308px;}
.yc0_c00480{bottom:244.993650px;}
.ybf_c00480{bottom:247.131402px;}
.ybe_c00480{bottom:250.114470px;}
.ybd_c00480{bottom:251.281640px;}
.ybc_c00480{bottom:252.176203px;}
.ybb_c00480{bottom:255.430500px;}
.yba_c00480{bottom:278.298450px;}
.yb9_c00480{bottom:279.153960px;}
.yb8_c00480{bottom:279.645360px;}
.yb7_c00480{bottom:281.195280px;}
.yb6_c00480{bottom:282.057480px;}
.yb5_c00480{bottom:284.035980px;}
.yb4_c00480{bottom:286.256880px;}
.yb3_c00480{bottom:286.920090px;}
.yb2_c00480{bottom:289.317090px;}
.yb1_c00480{bottom:291.064500px;}
.yb0_c00480{bottom:326.277000px;}
.yaf_c00480{bottom:351.256485px;}
.yae_c00480{bottom:352.143598px;}
.yad_c00480{bottom:353.314347px;}
.yac_c00480{bottom:354.454027px;}
.yab_c00480{bottom:355.019188px;}
.yaa_c00480{bottom:355.584093px;}
.ya9_c00480{bottom:356.681505px;}
.ya8_c00480{bottom:357.453402px;}
.ya7_c00480{bottom:359.308736px;}
.ya6_c00480{bottom:360.033661px;}
.ya5_c00480{bottom:361.354446px;}
.ya4_c00480{bottom:361.874887px;}
.ya3_c00480{bottom:362.854015px;}
.ya0_c00480{bottom:393.936457px;}
.ya2_c00480{bottom:393.936877px;}
.ya1_c00480{bottom:393.936884px;}
.y9f_c00480{bottom:393.937099px;}
.y9c_c00480{bottom:393.937261px;}
.y9b_c00480{bottom:393.937658px;}
.y9e_c00480{bottom:393.937749px;}
.y9d_c00480{bottom:393.937945px;}
.y9a_c00480{bottom:427.876507px;}
.y99_c00480{bottom:430.359195px;}
.y98_c00480{bottom:430.887901px;}
.y97_c00480{bottom:431.456350px;}
.y96_c00480{bottom:432.943341px;}
.y95_c00480{bottom:433.341270px;}
.y94_c00480{bottom:456.202915px;}
.y93_c00480{bottom:459.358241px;}
.y92_c00480{bottom:460.098024px;}
.y91_c00480{bottom:460.855941px;}
.y90_c00480{bottom:462.632435px;}
.y8f_c00480{bottom:463.388955px;}
.y8e_c00480{bottom:464.336394px;}
.y8d_c00480{bottom:466.397171px;}
.y8c_c00480{bottom:468.191342px;}
.y8b_c00480{bottom:469.941932px;}
.y8a_c00480{bottom:470.657522px;}
.y89_c00480{bottom:499.772808px;}
.y88_c00480{bottom:501.034959px;}
.y87_c00480{bottom:501.671050px;}
.y86_c00480{bottom:502.301927px;}
.y85_c00480{bottom:504.364500px;}
.y84_c00480{bottom:531.191940px;}
.y83_c00480{bottom:531.756300px;}
.y82_c00480{bottom:533.083764px;}
.y81_c00480{bottom:533.463672px;}
.y80_c00480{bottom:534.218376px;}
.y7f_c00480{bottom:534.966300px;}
.y7e_c00480{bottom:536.251020px;}
.y7d_c00480{bottom:537.021828px;}
.y7c_c00480{bottom:538.512924px;}
.y7b_c00480{bottom:539.256456px;}
.y7a_c00480{bottom:540.565164px;}
.y79_c00480{bottom:541.673712px;}
.y78_c00480{bottom:542.382864px;}
.y77_c00480{bottom:542.963364px;}
.y76_c00480{bottom:568.399380px;}
.y75_c00480{bottom:570.255816px;}
.y74_c00480{bottom:571.318044px;}
.y73_c00480{bottom:571.930572px;}
.y72_c00480{bottom:573.924516px;}
.y71_c00480{bottom:574.844868px;}
.y70_c00480{bottom:575.437044px;}
.y6f_c00480{bottom:575.907216px;}
.y6e_c00480{bottom:607.245084px;}
.y6d_c00480{bottom:609.547836px;}
.y6c_c00480{bottom:610.065540px;}
.y6b_c00480{bottom:611.807532px;}
.y6a_c00480{bottom:612.856812px;}
.y69_c00480{bottom:613.705740px;}
.y68_c00480{bottom:614.251500px;}
.y67_c00480{bottom:644.757000px;}
.y66_c00480{bottom:672.995037px;}
.y65_c00480{bottom:674.584608px;}
.y64_c00480{bottom:675.979806px;}
.y63_c00480{bottom:676.548777px;}
.y62_c00480{bottom:677.953452px;}
.y61_c00480{bottom:678.684396px;}
.y60_c00480{bottom:680.888865px;}
.y5f_c00480{bottom:682.083885px;}
.y5e_c00480{bottom:683.028723px;}
.y5d_c00480{bottom:683.643000px;}
.y5c_c00480{bottom:714.408000px;}
.y5b_c00480{bottom:714.657000px;}
.y5a_c00480{bottom:715.626000px;}
.y59_c00480{bottom:716.155500px;}
.y58_c00480{bottom:716.578500px;}
.y57_c00480{bottom:716.851500px;}
.y56_c00480{bottom:749.259000px;}
.y55_c00480{bottom:750.574500px;}
.y54_c00480{bottom:752.352000px;}
.y53_c00480{bottom:753.343500px;}
.y52_c00480{bottom:754.140000px;}
.y51_c00480{bottom:754.651500px;}
.y50_c00480{bottom:786.132000px;}
.y4f_c00480{bottom:816.017373px;}
.y4e_c00480{bottom:817.264710px;}
.y4d_c00480{bottom:818.825808px;}
.y4c_c00480{bottom:820.796532px;}
.y4b_c00480{bottom:821.874042px;}
.y4a_c00480{bottom:822.969444px;}
.y49_c00480{bottom:824.496207px;}
.y48_c00480{bottom:824.925489px;}
.y47_c00480{bottom:825.391500px;}
.y46_c00480{bottom:852.846207px;}
.y45_c00480{bottom:853.314927px;}
.y44_c00480{bottom:853.791312px;}
.y43_c00480{bottom:855.159756px;}
.y42_c00480{bottom:855.794943px;}
.y41_c00480{bottom:857.008407px;}
.y40_c00480{bottom:858.716967px;}
.y3f_c00480{bottom:859.329222px;}
.y3e_c00480{bottom:860.394657px;}
.y3d_c00480{bottom:860.824149px;}
.y3c_c00480{bottom:861.301500px;}
.y3b_c00480{bottom:892.498162px;}
.y3a_c00480{bottom:893.933713px;}
.y39_c00480{bottom:894.513000px;}
.y38_c00480{bottom:917.721684px;}
.y37_c00480{bottom:918.188084px;}
.y36_c00480{bottom:919.147462px;}
.y35_c00480{bottom:920.508143px;}
.y32_c00480{bottom:924.268038px;}
.y31_c00480{bottom:924.576675px;}
.y34_c00480{bottom:924.667530px;}
.y30_c00480{bottom:924.870692px;}
.y2f_c00480{bottom:925.560825px;}
.y2e_c00480{bottom:925.961896px;}
.y2d_c00480{bottom:926.335401px;}
.y2c_c00480{bottom:927.138097px;}
.y2b_c00480{bottom:928.233987px;}
.y33_c00480{bottom:928.261371px;}
.y2a_c00480{bottom:928.931235px;}
.y29_c00480{bottom:929.611500px;}
.y21_c00480{bottom:961.304527px;}
.y22_c00480{bottom:961.304994px;}
.y20_c00480{bottom:961.305261px;}
.y23_c00480{bottom:961.305330px;}
.y27_c00480{bottom:961.305618px;}
.y24_c00480{bottom:961.305636px;}
.y26_c00480{bottom:961.305899px;}
.y25_c00480{bottom:961.306179px;}
.y28_c00480{bottom:961.306234px;}
.y1f_c00480{bottom:993.763797px;}
.y1e_c00480{bottom:994.135096px;}
.y1d_c00480{bottom:994.865766px;}
.y1c_c00480{bottom:995.352945px;}
.y1b_c00480{bottom:996.327171px;}
.y1a_c00480{bottom:996.814317px;}
.y19_c00480{bottom:997.052395px;}
.y18_c00480{bottom:998.005254px;}
.y17_c00480{bottom:998.509890px;}
.y16_c00480{bottom:999.104220px;}
.y15_c00480{bottom:1000.182099px;}
.y14_c00480{bottom:1000.596117px;}
.y13_c00480{bottom:1000.891500px;}
.y12_c00480{bottom:1030.276572px;}
.y11_c00480{bottom:1030.684596px;}
.y10_c00480{bottom:1032.009936px;}
.yf_c00480{bottom:1032.408510px;}
.ye_c00480{bottom:1033.587744px;}
.yd_c00480{bottom:1034.103480px;}
.yc_c00480{bottom:1035.181500px;}
.yb_c00480{bottom:1063.530000px;}
.ya_c00480{bottom:1100.716500px;}
.y9_c00480{bottom:1106.466000px;}
.y8_c00480{bottom:1135.014000px;}
.y7_c00480{bottom:1135.398000px;}
.y6_c00480{bottom:1136.284500px;}
.y5_c00480{bottom:1137.697500px;}
.y4_c00480{bottom:1139.442000px;}
.y3_c00480{bottom:1139.982000px;}
.y2_c00480{bottom:1142.103000px;}
.y1_c00480{bottom:1188.271500px;}
.h1a_c00480{height:23.993339px;}
.ha_c00480{height:24.000972px;}
.hf_c00480{height:48.000000px;}
.h3_c00480{height:60.000000px;}
.hb_c00480{height:66.005577px;}
.h12_c00480{height:66.008447px;}
.h14_c00480{height:66.011912px;}
.h5_c00480{height:72.000000px;}
.h8_c00480{height:72.004356px;}
.hc_c00480{height:72.007056px;}
.h10_c00480{height:72.009215px;}
.h15_c00480{height:72.012995px;}
.h9_c00480{height:78.003159px;}
.h7_c00480{height:78.004719px;}
.h13_c00480{height:78.014078px;}
.h1c_c00480{height:78.024371px;}
.h19_c00480{height:83.976687px;}
.h4_c00480{height:84.000000px;}
.h6_c00480{height:84.006048px;}
.h11_c00480{height:84.010751px;}
.he_c00480{height:84.013607px;}
.h1b_c00480{height:84.026246px;}
.h17_c00480{height:84.030612px;}
.hd_c00480{height:90.008820px;}
.h16_c00480{height:96.019198px;}
.h18_c00480{height:102.037172px;}
.h2_c00480{height:108.000000px;}
.h0_c00480{height:1246.320000px;}
.h1_c00480{height:1246.500000px;}
.w0_c00480{width:896.100000px;}
.w1_c00480{width:896.250000px;}
.x0_c00480{left:0.000000px;}
.x9e_c00480{left:64.367663px;}
.x73_c00480{left:96.736083px;}
.x9f_c00480{left:106.981163px;}
.x28_c00480{left:111.957000px;}
.xc_c00480{left:114.210000px;}
.x87_c00480{left:119.726505px;}
.x59_c00480{left:120.825972px;}
.x47_c00480{left:122.233500px;}
.x37_c00480{left:123.288000px;}
.x1a_c00480{left:124.657500px;}
.x1b_c00480{left:151.510500px;}
.x66_c00480{left:153.830214px;}
.x5a_c00480{left:154.950420px;}
.x49_c00480{left:156.025500px;}
.x3b_c00480{left:157.110000px;}
.x24_c00480{left:158.223657px;}
.x8c_c00480{left:162.422466px;}
.xa0_c00480{left:172.678163px;}
.x7a_c00480{left:183.831000px;}
.x67_c00480{left:184.937849px;}
.x29_c00480{left:187.542000px;}
.x1c_c00480{left:189.148500px;}
.xd_c00480{left:190.350000px;}
.x88_c00480{left:195.040577px;}
.x53_c00480{left:197.449056px;}
.x4a_c00480{left:208.516500px;}
.x43_c00480{left:209.625000px;}
.xa1_c00480{left:237.929663px;}
.x9c_c00480{left:259.511438px;}
.x5b_c00480{left:261.898716px;}
.x54_c00480{left:263.223168px;}
.x2a_c00480{left:265.014000px;}
.x89_c00480{left:270.360648px;}
.x72_c00480{left:272.693459px;}
.x50_c00480{left:274.393500px;}
.x44_c00480{left:275.743500px;}
.x6e_c00480{left:282.286317px;}
.x1d_c00480{left:287.137500px;}
.x8d_c00480{left:291.907851px;}
.x3c_c00480{left:296.827500px;}
.x84_c00480{left:300.778236px;}
.x7b_c00480{left:303.681000px;}
.x74_c00480{left:305.364035px;}
.x64_c00480{left:306.474000px;}
.x34_c00480{left:308.164500px;}
.x4_c00480{left:309.217500px;}
.xa_c00480{left:310.683000px;}
.xe_c00480{left:319.410000px;}
.x8e_c00480{left:324.790935px;}
.x96_c00480{left:325.911000px;}
.xa2_c00480{left:335.875163px;}
.x79_c00480{left:337.230000px;}
.x5c_c00480{left:338.910492px;}
.xf_c00480{left:342.090000px;}
.x8a_c00480{left:348.967340px;}
.x35_c00480{left:352.725000px;}
.xa3_c00480{left:358.898663px;}
.x3d_c00480{left:375.070500px;}
.x30_c00480{left:382.264401px;}
.x42_c00480{left:383.940000px;}
.x1e_c00480{left:387.043500px;}
.x8f_c00480{left:391.158001px;}
.x6f_c00480{left:393.181035px;}
.x45_c00480{left:394.275000px;}
.x25_c00480{left:396.378983px;}
.x15_c00480{left:398.595000px;}
.x55_c00480{left:405.661728px;}
.x75_c00480{left:414.464667px;}
.x51_c00480{left:415.624500px;}
.x80_c00480{left:424.404000px;}
.x8b_c00480{left:425.427978px;}
.x48_c00480{left:427.564500px;}
.x68_c00480{left:428.631824px;}
.x38_c00480{left:429.937500px;}
.x9d_c00480{left:435.040313px;}
.x90_c00480{left:436.201413px;}
.x4b_c00480{left:437.985000px;}
.x1_c00480{left:441.990000px;}
.x97_c00480{left:445.876947px;}
.x65_c00480{left:448.234500px;}
.x56_c00480{left:449.383620px;}
.x3e_c00480{left:452.035500px;}
.x70_c00480{left:457.717986px;}
.x76_c00480{left:459.829377px;}
.x36_c00480{left:463.152000px;}
.x2_c00480{left:466.830000px;}
.x85_c00480{left:469.049330px;}
.x5d_c00480{left:470.416404px;}
.x1f_c00480{left:473.667000px;}
.x5_c00480{left:475.525500px;}
.xa4_c00480{left:479.113163px;}
.x46_c00480{left:482.013000px;}
.x10_c00480{left:485.460000px;}
.x20_c00480{left:495.310500px;}
.x3_c00480{left:497.610000px;}
.x81_c00480{left:500.764500px;}
.x69_c00480{left:502.676681px;}
.x26_c00480{left:506.004749px;}
.xa5_c00480{left:513.425663px;}
.x4c_c00480{left:516.022500px;}
.x2b_c00480{left:517.468500px;}
.x57_c00480{left:525.244044px;}
.x98_c00480{left:533.574000px;}
.x16_c00480{left:539.842500px;}
.x4d_c00480{left:547.632000px;}
.x77_c00480{left:557.586582px;}
.x52_c00480{left:559.546500px;}
.x2c_c00480{left:562.032000px;}
.x91_c00480{left:567.120862px;}
.x17_c00480{left:573.057000px;}
.x6a_c00480{left:579.907310px;}
.x86_c00480{left:581.410680px;}
.x6_c00480{left:584.599500px;}
.x7c_c00480{left:589.921500px;}
.x5e_c00480{left:591.384984px;}
.x3f_c00480{left:592.801500px;}
.x11_c00480{left:595.620000px;}
.x71_c00480{left:603.786044px;}
.x82_c00480{left:611.248500px;}
.x6b_c00480{left:612.847802px;}
.x27_c00480{left:616.442114px;}
.x4e_c00480{left:625.143000px;}
.x21_c00480{left:628.162500px;}
.xb_c00480{left:630.106500px;}
.x92_c00480{left:632.939478px;}
.x5f_c00480{left:635.410788px;}
.x2d_c00480{left:638.713500px;}
.x12_c00480{left:641.520000px;}
.x6c_c00480{left:644.991851px;}
.x99_c00480{left:655.812000px;}
.x58_c00480{left:657.869292px;}
.x39_c00480{left:659.730000px;}
.xa6_c00480{left:666.407663px;}
.x7d_c00480{left:667.417500px;}
.x2e_c00480{left:671.382000px;}
.x7_c00480{left:672.880500px;}
.x60_c00480{left:679.766568px;}
.x18_c00480{left:683.502000px;}
.x83_c00480{left:690.424500px;}
.x7e_c00480{left:691.987500px;}
.x3a_c00480{left:693.757500px;}
.x61_c00480{left:702.104208px;}
.x40_c00480{left:704.308500px;}
.x2f_c00480{left:705.675000px;}
.x4f_c00480{left:713.452500px;}
.x19_c00480{left:717.504000px;}
.x9a_c00480{left:723.034500px;}
.x95_c00480{left:725.860159px;}
.x31_c00480{left:727.250166px;}
.x8_c00480{left:728.293500px;}
.x7f_c00480{left:734.763000px;}
.x22_c00480{left:738.876000px;}
.x93_c00480{left:744.513292px;}
.x13_c00480{left:751.140000px;}
.x9_c00480{left:752.257500px;}
.x9b_c00480{left:757.077000px;}
.x23_c00480{left:772.630500px;}
.x78_c00480{left:778.921490px;}
.x62_c00480{left:780.194460px;}
.x6d_c00480{left:782.156420px;}
.x32_c00480{left:787.177386px;}
.x41_c00480{left:793.404000px;}
.x63_c00480{left:813.403932px;}
.x33_c00480{left:816.331050px;}
.x94_c00480{left:823.848378px;}
.x14_c00480{left:852.930000px;}
@media print{
.v0_c00480{vertical-align:0.000000pt;}
.ls0_c00480{letter-spacing:0.000000pt;}
.ws0_c00480{word-spacing:0.000000pt;}
.fs18_c00480{font-size:21.327413pt;}
.fs8_c00480{font-size:21.334197pt;}
.fsd_c00480{font-size:42.666667pt;}
.fs1_c00480{font-size:53.333333pt;}
.fs9_c00480{font-size:58.671624pt;}
.fs10_c00480{font-size:58.674176pt;}
.fs12_c00480{font-size:58.677255pt;}
.fs3_c00480{font-size:64.000000pt;}
.fs6_c00480{font-size:64.003872pt;}
.fsa_c00480{font-size:64.006272pt;}
.fse_c00480{font-size:64.008191pt;}
.fs13_c00480{font-size:64.011551pt;}
.fs7_c00480{font-size:69.336141pt;}
.fs5_c00480{font-size:69.337528pt;}
.fs11_c00480{font-size:69.345847pt;}
.fs1a_c00480{font-size:69.354997pt;}
.fs17_c00480{font-size:74.645944pt;}
.fs2_c00480{font-size:74.666667pt;}
.fs4_c00480{font-size:74.672042pt;}
.fsf_c00480{font-size:74.676223pt;}
.fsc_c00480{font-size:74.678762pt;}
.fs19_c00480{font-size:74.689996pt;}
.fs15_c00480{font-size:74.693878pt;}
.fsb_c00480{font-size:80.007840pt;}
.fs14_c00480{font-size:85.350398pt;}
.fs16_c00480{font-size:90.699709pt;}
.fs0_c00480{font-size:96.000000pt;}
.y0_c00480{bottom:0.000000pt;}
.yff_c00480{bottom:26.449100pt;}
.yfe_c00480{bottom:28.389200pt;}
.yfd_c00480{bottom:29.848700pt;}
.yfc_c00480{bottom:30.611200pt;}
.yfb_c00480{bottom:31.343433pt;}
.yfa_c00480{bottom:33.282633pt;}
.yf9_c00480{bottom:33.794267pt;}
.yf8_c00480{bottom:34.999300pt;}
.yf7_c00480{bottom:35.970833pt;}
.yf6_c00480{bottom:37.420867pt;}
.yf5_c00480{bottom:38.880800pt;}
.yf4_c00480{bottom:39.827767pt;}
.yf3_c00480{bottom:62.049033pt;}
.yf2_c00480{bottom:62.856600pt;}
.yf1_c00480{bottom:63.669300pt;}
.yf0_c00480{bottom:66.425667pt;}
.yef_c00480{bottom:67.238367pt;}
.yee_c00480{bottom:68.036900pt;}
.yed_c00480{bottom:69.882900pt;}
.yec_c00480{bottom:70.660400pt;}
.yeb_c00480{bottom:71.517133pt;}
.yea_c00480{bottom:84.803933pt;}
.ye9_c00480{bottom:85.560433pt;}
.ye8_c00480{bottom:87.054267pt;}
.ye7_c00480{bottom:88.045467pt;}
.ye6_c00480{bottom:89.770667pt;}
.ye5_c00480{bottom:96.618568pt;}
.ye4_c00480{bottom:97.356187pt;}
.ye3_c00480{bottom:98.667175pt;}
.ye2_c00480{bottom:100.122149pt;}
.ye1_c00480{bottom:100.511035pt;}
.ye0_c00480{bottom:101.275148pt;}
.ydf_c00480{bottom:132.600913pt;}
.yde_c00480{bottom:133.343788pt;}
.ydd_c00480{bottom:134.975533pt;}
.ydc_c00480{bottom:135.541657pt;}
.ydb_c00480{bottom:136.081333pt;}
.yd9_c00480{bottom:147.798101pt;}
.yd8_c00480{bottom:150.480547pt;}
.yda_c00480{bottom:151.185939pt;}
.yd7_c00480{bottom:154.253035pt;}
.yd6_c00480{bottom:155.740608pt;}
.yd5_c00480{bottom:156.478467pt;}
.yd4_c00480{bottom:157.891509pt;}
.yd3_c00480{bottom:160.905061pt;}
.yd2_c00480{bottom:162.428051pt;}
.yd1_c00480{bottom:164.672027pt;}
.yd0_c00480{bottom:165.783856pt;}
.ycf_c00480{bottom:169.034579pt;}
.yce_c00480{bottom:170.161963pt;}
.ycd_c00480{bottom:171.598667pt;}
.ycc_c00480{bottom:191.329759pt;}
.ycb_c00480{bottom:191.943268pt;}
.yca_c00480{bottom:192.554765pt;}
.yc9_c00480{bottom:193.183076pt;}
.yc8_c00480{bottom:193.785880pt;}
.yc7_c00480{bottom:194.117604pt;}
.yc6_c00480{bottom:194.388540pt;}
.yc1_c00480{bottom:215.798060pt;}
.yc5_c00480{bottom:215.798217pt;}
.yc3_c00480{bottom:215.798455pt;}
.yc4_c00480{bottom:215.798467pt;}
.yc2_c00480{bottom:215.798496pt;}
.yc0_c00480{bottom:217.772133pt;}
.ybf_c00480{bottom:219.672357pt;}
.ybe_c00480{bottom:222.323973pt;}
.ybd_c00480{bottom:223.361457pt;}
.ybc_c00480{bottom:224.156625pt;}
.ybb_c00480{bottom:227.049333pt;}
.yba_c00480{bottom:247.376400pt;}
.yb9_c00480{bottom:248.136853pt;}
.yb8_c00480{bottom:248.573653pt;}
.yb7_c00480{bottom:249.951360pt;}
.yb6_c00480{bottom:250.717760pt;}
.yb5_c00480{bottom:252.476427pt;}
.yb4_c00480{bottom:254.450560pt;}
.yb3_c00480{bottom:255.040080pt;}
.yb2_c00480{bottom:257.170747pt;}
.yb1_c00480{bottom:258.724000pt;}
.yb0_c00480{bottom:290.024000pt;}
.yaf_c00480{bottom:312.227987pt;}
.yae_c00480{bottom:313.016532pt;}
.yad_c00480{bottom:314.057197pt;}
.yac_c00480{bottom:315.070247pt;}
.yab_c00480{bottom:315.572612pt;}
.yaa_c00480{bottom:316.074749pt;}
.ya9_c00480{bottom:317.050227pt;}
.ya8_c00480{bottom:317.736357pt;}
.ya7_c00480{bottom:319.385543pt;}
.ya6_c00480{bottom:320.029921pt;}
.ya5_c00480{bottom:321.203952pt;}
.ya4_c00480{bottom:321.666567pt;}
.ya3_c00480{bottom:322.536903pt;}
.ya0_c00480{bottom:350.165740pt;}
.ya2_c00480{bottom:350.166113pt;}
.ya1_c00480{bottom:350.166119pt;}
.y9f_c00480{bottom:350.166311pt;}
.y9c_c00480{bottom:350.166455pt;}
.y9b_c00480{bottom:350.166807pt;}
.y9e_c00480{bottom:350.166888pt;}
.y9d_c00480{bottom:350.167063pt;}
.y9a_c00480{bottom:380.334673pt;}
.y99_c00480{bottom:382.541507pt;}
.y98_c00480{bottom:383.011468pt;}
.y97_c00480{bottom:383.516756pt;}
.y96_c00480{bottom:384.838525pt;}
.y95_c00480{bottom:385.192240pt;}
.y94_c00480{bottom:405.513703pt;}
.y93_c00480{bottom:408.318436pt;}
.y92_c00480{bottom:408.976021pt;}
.y91_c00480{bottom:409.649725pt;}
.y90_c00480{bottom:411.228831pt;}
.y8f_c00480{bottom:411.901293pt;}
.y8e_c00480{bottom:412.743461pt;}
.y8d_c00480{bottom:414.575263pt;}
.y8c_c00480{bottom:416.170081pt;}
.y8b_c00480{bottom:417.726161pt;}
.y8a_c00480{bottom:418.362241pt;}
.y89_c00480{bottom:444.242496pt;}
.y88_c00480{bottom:445.364408pt;}
.y87_c00480{bottom:445.929823pt;}
.y86_c00480{bottom:446.490601pt;}
.y85_c00480{bottom:448.324000pt;}
.y84_c00480{bottom:472.170613pt;}
.y83_c00480{bottom:472.672267pt;}
.y82_c00480{bottom:473.852235pt;}
.y81_c00480{bottom:474.189931pt;}
.y80_c00480{bottom:474.860779pt;}
.y7f_c00480{bottom:475.525600pt;}
.y7e_c00480{bottom:476.667573pt;}
.y7d_c00480{bottom:477.352736pt;}
.y7c_c00480{bottom:478.678155pt;}
.y7b_c00480{bottom:479.339072pt;}
.y7a_c00480{bottom:480.502368pt;}
.y79_c00480{bottom:481.487744pt;}
.y78_c00480{bottom:482.118101pt;}
.y77_c00480{bottom:482.634101pt;}
.y76_c00480{bottom:505.243893pt;}
.y75_c00480{bottom:506.894059pt;}
.y74_c00480{bottom:507.838261pt;}
.y73_c00480{bottom:508.382731pt;}
.y72_c00480{bottom:510.155125pt;}
.y71_c00480{bottom:510.973216pt;}
.y70_c00480{bottom:511.499595pt;}
.y6f_c00480{bottom:511.917525pt;}
.y6e_c00480{bottom:539.773408pt;}
.y6d_c00480{bottom:541.820299pt;}
.y6c_c00480{bottom:542.280480pt;}
.y6b_c00480{bottom:543.828917pt;}
.y6a_c00480{bottom:544.761611pt;}
.y69_c00480{bottom:545.516213pt;}
.y68_c00480{bottom:546.001333pt;}
.y67_c00480{bottom:573.117333pt;}
.y66_c00480{bottom:598.217811pt;}
.y65_c00480{bottom:599.630763pt;}
.y64_c00480{bottom:600.870939pt;}
.y63_c00480{bottom:601.376691pt;}
.y62_c00480{bottom:602.625291pt;}
.y61_c00480{bottom:603.275019pt;}
.y60_c00480{bottom:605.234547pt;}
.y5f_c00480{bottom:606.296787pt;}
.y5e_c00480{bottom:607.136643pt;}
.y5d_c00480{bottom:607.682667pt;}
.y5c_c00480{bottom:635.029333pt;}
.y5b_c00480{bottom:635.250667pt;}
.y5a_c00480{bottom:636.112000pt;}
.y59_c00480{bottom:636.582667pt;}
.y58_c00480{bottom:636.958667pt;}
.y57_c00480{bottom:637.201333pt;}
.y56_c00480{bottom:666.008000pt;}
.y55_c00480{bottom:667.177333pt;}
.y54_c00480{bottom:668.757333pt;}
.y53_c00480{bottom:669.638667pt;}
.y52_c00480{bottom:670.346667pt;}
.y51_c00480{bottom:670.801333pt;}
.y50_c00480{bottom:698.784000pt;}
.y4f_c00480{bottom:725.348776pt;}
.y4e_c00480{bottom:726.457520pt;}
.y4d_c00480{bottom:727.845163pt;}
.y4c_c00480{bottom:729.596917pt;}
.y4b_c00480{bottom:730.554704pt;}
.y4a_c00480{bottom:731.528395pt;}
.y49_c00480{bottom:732.885517pt;}
.y48_c00480{bottom:733.267101pt;}
.y47_c00480{bottom:733.681333pt;}
.y46_c00480{bottom:758.085517pt;}
.y45_c00480{bottom:758.502157pt;}
.y44_c00480{bottom:758.925611pt;}
.y43_c00480{bottom:760.142005pt;}
.y42_c00480{bottom:760.706616pt;}
.y41_c00480{bottom:761.785251pt;}
.y40_c00480{bottom:763.303971pt;}
.y3f_c00480{bottom:763.848197pt;}
.y3e_c00480{bottom:764.795251pt;}
.y3d_c00480{bottom:765.177021pt;}
.y3c_c00480{bottom:765.601333pt;}
.y3b_c00480{bottom:793.331700pt;}
.y3a_c00480{bottom:794.607745pt;}
.y39_c00480{bottom:795.122667pt;}
.y38_c00480{bottom:815.752608pt;}
.y37_c00480{bottom:816.167185pt;}
.y36_c00480{bottom:817.019967pt;}
.y35_c00480{bottom:818.229460pt;}
.y32_c00480{bottom:821.571589pt;}
.y31_c00480{bottom:821.845933pt;}
.y34_c00480{bottom:821.926693pt;}
.y30_c00480{bottom:822.107281pt;}
.y2f_c00480{bottom:822.720733pt;}
.y2e_c00480{bottom:823.077241pt;}
.y2d_c00480{bottom:823.409245pt;}
.y2c_c00480{bottom:824.122753pt;}
.y2b_c00480{bottom:825.096877pt;}
.y33_c00480{bottom:825.121219pt;}
.y2a_c00480{bottom:825.716653pt;}
.y29_c00480{bottom:826.321333pt;}
.y21_c00480{bottom:854.492913pt;}
.y22_c00480{bottom:854.493328pt;}
.y20_c00480{bottom:854.493565pt;}
.y23_c00480{bottom:854.493627pt;}
.y27_c00480{bottom:854.493883pt;}
.y24_c00480{bottom:854.493899pt;}
.y26_c00480{bottom:854.494132pt;}
.y25_c00480{bottom:854.494381pt;}
.y28_c00480{bottom:854.494431pt;}
.y1f_c00480{bottom:883.345597pt;}
.y1e_c00480{bottom:883.675641pt;}
.y1d_c00480{bottom:884.325125pt;}
.y1c_c00480{bottom:884.758173pt;}
.y1b_c00480{bottom:885.624152pt;}
.y1a_c00480{bottom:886.057171pt;}
.y19_c00480{bottom:886.268796pt;}
.y18_c00480{bottom:887.115781pt;}
.y17_c00480{bottom:887.564347pt;}
.y16_c00480{bottom:888.092640pt;}
.y15_c00480{bottom:889.050755pt;}
.y14_c00480{bottom:889.418771pt;}
.y13_c00480{bottom:889.681333pt;}
.y12_c00480{bottom:915.801397pt;}
.y11_c00480{bottom:916.164085pt;}
.y10_c00480{bottom:917.342165pt;}
.yf_c00480{bottom:917.696453pt;}
.ye_c00480{bottom:918.744661pt;}
.yd_c00480{bottom:919.203093pt;}
.yc_c00480{bottom:920.161333pt;}
.yb_c00480{bottom:945.360000pt;}
.ya_c00480{bottom:978.414667pt;}
.y9_c00480{bottom:983.525333pt;}
.y8_c00480{bottom:1008.901333pt;}
.y7_c00480{bottom:1009.242667pt;}
.y6_c00480{bottom:1010.030667pt;}
.y5_c00480{bottom:1011.286667pt;}
.y4_c00480{bottom:1012.837333pt;}
.y3_c00480{bottom:1013.317333pt;}
.y2_c00480{bottom:1015.202667pt;}
.y1_c00480{bottom:1056.241333pt;}
.h1a_c00480{height:21.327413pt;}
.ha_c00480{height:21.334197pt;}
.hf_c00480{height:42.666667pt;}
.h3_c00480{height:53.333333pt;}
.hb_c00480{height:58.671624pt;}
.h12_c00480{height:58.674176pt;}
.h14_c00480{height:58.677255pt;}
.h5_c00480{height:64.000000pt;}
.h8_c00480{height:64.003872pt;}
.hc_c00480{height:64.006272pt;}
.h10_c00480{height:64.008191pt;}
.h15_c00480{height:64.011551pt;}
.h9_c00480{height:69.336141pt;}
.h7_c00480{height:69.337528pt;}
.h13_c00480{height:69.345847pt;}
.h1c_c00480{height:69.354997pt;}
.h19_c00480{height:74.645944pt;}
.h4_c00480{height:74.666667pt;}
.h6_c00480{height:74.672042pt;}
.h11_c00480{height:74.676223pt;}
.he_c00480{height:74.678762pt;}
.h1b_c00480{height:74.689996pt;}
.h17_c00480{height:74.693878pt;}
.hd_c00480{height:80.007840pt;}
.h16_c00480{height:85.350398pt;}
.h18_c00480{height:90.699709pt;}
.h2_c00480{height:96.000000pt;}
.h0_c00480{height:1107.840000pt;}
.h1_c00480{height:1108.000000pt;}
.w0_c00480{width:796.533333pt;}
.w1_c00480{width:796.666667pt;}
.x0_c00480{left:0.000000pt;}
.x9e_c00480{left:57.215700pt;}
.x73_c00480{left:85.987629pt;}
.x9f_c00480{left:95.094367pt;}
.x28_c00480{left:99.517333pt;}
.xc_c00480{left:101.520000pt;}
.x87_c00480{left:106.423560pt;}
.x59_c00480{left:107.400864pt;}
.x47_c00480{left:108.652000pt;}
.x37_c00480{left:109.589333pt;}
.x1a_c00480{left:110.806667pt;}
.x1b_c00480{left:134.676000pt;}
.x66_c00480{left:136.737968pt;}
.x5a_c00480{left:137.733707pt;}
.x49_c00480{left:138.689333pt;}
.x3b_c00480{left:139.653333pt;}
.x24_c00480{left:140.643251pt;}
.x8c_c00480{left:144.375525pt;}
.xa0_c00480{left:153.491700pt;}
.x7a_c00480{left:163.405333pt;}
.x67_c00480{left:164.389199pt;}
.x29_c00480{left:166.704000pt;}
.x1c_c00480{left:168.132000pt;}
.xd_c00480{left:169.200000pt;}
.x88_c00480{left:173.369401pt;}
.x53_c00480{left:175.510272pt;}
.x4a_c00480{left:185.348000pt;}
.x43_c00480{left:186.333333pt;}
.xa1_c00480{left:211.493033pt;}
.x9c_c00480{left:230.676833pt;}
.x5b_c00480{left:232.798859pt;}
.x54_c00480{left:233.976149pt;}
.x2a_c00480{left:235.568000pt;}
.x89_c00480{left:240.320576pt;}
.x72_c00480{left:242.394185pt;}
.x50_c00480{left:243.905333pt;}
.x44_c00480{left:245.105333pt;}
.x6e_c00480{left:250.921171pt;}
.x1d_c00480{left:255.233333pt;}
.x8d_c00480{left:259.473645pt;}
.x3c_c00480{left:263.846667pt;}
.x84_c00480{left:267.358432pt;}
.x7b_c00480{left:269.938667pt;}
.x74_c00480{left:271.434697pt;}
.x64_c00480{left:272.421333pt;}
.x34_c00480{left:273.924000pt;}
.x4_c00480{left:274.860000pt;}
.xa_c00480{left:276.162667pt;}
.xe_c00480{left:283.920000pt;}
.x8e_c00480{left:288.703053pt;}
.x96_c00480{left:289.698667pt;}
.xa2_c00480{left:298.555700pt;}
.x79_c00480{left:299.760000pt;}
.x5c_c00480{left:301.253771pt;}
.xf_c00480{left:304.080000pt;}
.x8a_c00480{left:310.193191pt;}
.x35_c00480{left:313.533333pt;}
.xa3_c00480{left:319.021033pt;}
.x3d_c00480{left:333.396000pt;}
.x30_c00480{left:339.790579pt;}
.x42_c00480{left:341.280000pt;}
.x1e_c00480{left:344.038667pt;}
.x8f_c00480{left:347.696001pt;}
.x6f_c00480{left:349.494253pt;}
.x45_c00480{left:350.466667pt;}
.x25_c00480{left:352.336873pt;}
.x15_c00480{left:354.306667pt;}
.x55_c00480{left:360.588203pt;}
.x75_c00480{left:368.413037pt;}
.x51_c00480{left:369.444000pt;}
.x80_c00480{left:377.248000pt;}
.x8b_c00480{left:378.158203pt;}
.x48_c00480{left:380.057333pt;}
.x68_c00480{left:381.006065pt;}
.x38_c00480{left:382.166667pt;}
.x9d_c00480{left:386.702500pt;}
.x90_c00480{left:387.734589pt;}
.x4b_c00480{left:389.320000pt;}
.x1_c00480{left:392.880000pt;}
.x97_c00480{left:396.335064pt;}
.x65_c00480{left:398.430667pt;}
.x56_c00480{left:399.452107pt;}
.x3e_c00480{left:401.809333pt;}
.x70_c00480{left:406.860432pt;}
.x76_c00480{left:408.737224pt;}
.x36_c00480{left:411.690667pt;}
.x2_c00480{left:414.960000pt;}
.x85_c00480{left:416.932737pt;}
.x5d_c00480{left:418.147915pt;}
.x1f_c00480{left:421.037333pt;}
.x5_c00480{left:422.689333pt;}
.xa4_c00480{left:425.878367pt;}
.x46_c00480{left:428.456000pt;}
.x10_c00480{left:431.520000pt;}
.x20_c00480{left:440.276000pt;}
.x3_c00480{left:442.320000pt;}
.x81_c00480{left:445.124000pt;}
.x69_c00480{left:446.823716pt;}
.x26_c00480{left:449.781999pt;}
.xa5_c00480{left:456.378367pt;}
.x4c_c00480{left:458.686667pt;}
.x2b_c00480{left:459.972000pt;}
.x57_c00480{left:466.883595pt;}
.x98_c00480{left:474.288000pt;}
.x16_c00480{left:479.860000pt;}
.x4d_c00480{left:486.784000pt;}
.x77_c00480{left:495.632517pt;}
.x52_c00480{left:497.374667pt;}
.x2c_c00480{left:499.584000pt;}
.x91_c00480{left:504.107433pt;}
.x17_c00480{left:509.384000pt;}
.x6a_c00480{left:515.473164pt;}
.x86_c00480{left:516.809493pt;}
.x6_c00480{left:519.644000pt;}
.x7c_c00480{left:524.374667pt;}
.x5e_c00480{left:525.675541pt;}
.x3f_c00480{left:526.934667pt;}
.x11_c00480{left:529.440000pt;}
.x71_c00480{left:536.698705pt;}
.x82_c00480{left:543.332000pt;}
.x6b_c00480{left:544.753601pt;}
.x27_c00480{left:547.948545pt;}
.x4e_c00480{left:555.682667pt;}
.x21_c00480{left:558.366667pt;}
.xb_c00480{left:560.094667pt;}
.x92_c00480{left:562.612869pt;}
.x5f_c00480{left:564.809589pt;}
.x2d_c00480{left:567.745333pt;}
.x12_c00480{left:570.240000pt;}
.x6c_c00480{left:573.326089pt;}
.x99_c00480{left:582.944000pt;}
.x58_c00480{left:584.772704pt;}
.x39_c00480{left:586.426667pt;}
.xa6_c00480{left:592.362367pt;}
.x7d_c00480{left:593.260000pt;}
.x2e_c00480{left:596.784000pt;}
.x7_c00480{left:598.116000pt;}
.x60_c00480{left:604.236949pt;}
.x18_c00480{left:607.557333pt;}
.x83_c00480{left:613.710667pt;}
.x7e_c00480{left:615.100000pt;}
.x3a_c00480{left:616.673333pt;}
.x61_c00480{left:624.092629pt;}
.x40_c00480{left:626.052000pt;}
.x2f_c00480{left:627.266667pt;}
.x4f_c00480{left:634.180000pt;}
.x19_c00480{left:637.781333pt;}
.x9a_c00480{left:642.697333pt;}
.x95_c00480{left:645.209031pt;}
.x31_c00480{left:646.444592pt;}
.x8_c00480{left:647.372000pt;}
.x7f_c00480{left:653.122667pt;}
.x22_c00480{left:656.778667pt;}
.x93_c00480{left:661.789593pt;}
.x13_c00480{left:667.680000pt;}
.x9_c00480{left:668.673333pt;}
.x9b_c00480{left:672.957333pt;}
.x23_c00480{left:686.782667pt;}
.x78_c00480{left:692.374657pt;}
.x62_c00480{left:693.506187pt;}
.x6d_c00480{left:695.250151pt;}
.x32_c00480{left:699.713232pt;}
.x41_c00480{left:705.248000pt;}
.x63_c00480{left:723.025717pt;}
.x33_c00480{left:725.627600pt;}
.x94_c00480{left:732.309669pt;}
.x14_c00480{left:758.160000pt;}
}





/* 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_c00481 {
    display:none;
  }
  .loading-indicator_c00481.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00481 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_c00481 { 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_c00481" -> "#page-container .classname_c00481")
 */
.pf_c00481 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00481 { /* 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_c00481.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00481 { /* 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_c00481 { /* 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_c00481 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00481 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00481 {overflow:visible;}
  }
}
.c_c00481 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00481 { /* 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_c00481:after { /* webkit #35443 */
  content: '';
}
.t_c00481:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00481 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 */
}
.__c00481 { /* 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_c00481 { /* info for Javascript */
  display:none;
}
.l_c00481 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00481 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00481 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00481: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_c00481 {
    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_c00481.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00481.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_c00481 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00481{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00481;src:url('chunks/assets/font_b11a17f404e7258299fdf971.woff2')format("woff");}.ff1_c00481{font-family:ff1_c00481;line-height:1.000000;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;}
.m0_c00481{transform:matrix(0.050592,-0.001164,0.005748,0.249934,0,0);-ms-transform:matrix(0.050592,-0.001164,0.005748,0.249934,0,0);-webkit-transform:matrix(0.050592,-0.001164,0.005748,0.249934,0,0);}
.md_c00481{transform:matrix(0.109265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109265,0.000000,0.000000,0.250000,0,0);}
.m8_c00481{transform:matrix(0.132819,-0.004919,0.009253,0.249829,0,0);-ms-transform:matrix(0.132819,-0.004919,0.009253,0.249829,0,0);-webkit-transform:matrix(0.132819,-0.004919,0.009253,0.249829,0,0);}
.m2_c00481{transform:matrix(0.148631,-0.003419,0.005748,0.249934,0,0);-ms-transform:matrix(0.148631,-0.003419,0.005748,0.249934,0,0);-webkit-transform:matrix(0.148631,-0.003419,0.005748,0.249934,0,0);}
.m4_c00481{transform:matrix(0.170940,-0.003932,0.005748,0.249934,0,0);-ms-transform:matrix(0.170940,-0.003932,0.005748,0.249934,0,0);-webkit-transform:matrix(0.170940,-0.003932,0.005748,0.249934,0,0);}
.ma_c00481{transform:matrix(0.175090,-0.006485,0.009253,0.249829,0,0);-ms-transform:matrix(0.175090,-0.006485,0.009253,0.249829,0,0);-webkit-transform:matrix(0.175090,-0.006485,0.009253,0.249829,0,0);}
.mb_c00481{transform:matrix(0.190549,-0.007057,0.009253,0.249829,0,0);-ms-transform:matrix(0.190549,-0.007057,0.009253,0.249829,0,0);-webkit-transform:matrix(0.190549,-0.007057,0.009253,0.249829,0,0);}
.m3_c00481{transform:matrix(0.192949,-0.004438,0.005748,0.249934,0,0);-ms-transform:matrix(0.192949,-0.004438,0.005748,0.249934,0,0);-webkit-transform:matrix(0.192949,-0.004438,0.005748,0.249934,0,0);}
.m5_c00481{transform:matrix(0.206305,-0.004745,0.005748,0.249934,0,0);-ms-transform:matrix(0.206305,-0.004745,0.005748,0.249934,0,0);-webkit-transform:matrix(0.206305,-0.004745,0.005748,0.249934,0,0);}
.m6_c00481{transform:matrix(0.214158,-0.004926,0.005748,0.249934,0,0);-ms-transform:matrix(0.214158,-0.004926,0.005748,0.249934,0,0);-webkit-transform:matrix(0.214158,-0.004926,0.005748,0.249934,0,0);}
.m9_c00481{transform:matrix(0.229553,-0.008502,0.009253,0.249829,0,0);-ms-transform:matrix(0.229553,-0.008502,0.009253,0.249829,0,0);-webkit-transform:matrix(0.229553,-0.008502,0.009253,0.249829,0,0);}
.m7_c00481{transform:matrix(0.233388,-0.005368,0.005748,0.249934,0,0);-ms-transform:matrix(0.233388,-0.005368,0.005748,0.249934,0,0);-webkit-transform:matrix(0.233388,-0.005368,0.005748,0.249934,0,0);}
.mc_c00481{transform:matrix(0.235963,-0.008739,0.009253,0.249829,0,0);-ms-transform:matrix(0.235963,-0.008739,0.009253,0.249829,0,0);-webkit-transform:matrix(0.235963,-0.008739,0.009253,0.249829,0,0);}
.m1_c00481{transform:matrix(0.249079,-0.005729,0.005748,0.249934,0,0);-ms-transform:matrix(0.249079,-0.005729,0.005748,0.249934,0,0);-webkit-transform:matrix(0.249079,-0.005729,0.005748,0.249934,0,0);}
.m10_c00481{transform:matrix(0.548515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548515,0.000000,0.000000,0.250000,0,0);}
.mf_c00481{transform:matrix(0.636795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636795,0.000000,0.000000,0.250000,0,0);}
.me_c00481{transform:matrix(0.650810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.650810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.650810,0.000000,0.000000,0.250000,0,0);}
.v0_c00481{vertical-align:0.000000px;}
.ls0_c00481{letter-spacing:0.000000px;}
.sc__c00481{text-shadow:none;}
.sc0_c00481{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__c00481{-webkit-text-stroke:0px transparent;}
.sc0_c00481{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00481{word-spacing:0.000000px;}
.fc0_c00481{color:transparent;}
.fs3_c00481{font-size:24.000000px;}
.fs2_c00481{font-size:42.000000px;}
.fs1_c00481{font-size:101.967865px;}
.fs0_c00481{font-size:108.028562px;}
.y0_c00481{bottom:0.000000px;}
.y10_c00481{bottom:746.820000px;}
.y11_c00481{bottom:748.980000px;}
.yf_c00481{bottom:827.550000px;}
.ye_c00481{bottom:839.430000px;}
.y9_c00481{bottom:853.764000px;}
.ya_c00481{bottom:854.604048px;}
.yb_c00481{bottom:859.117197px;}
.yc_c00481{bottom:860.810280px;}
.yd_c00481{bottom:863.628848px;}
.y1_c00481{bottom:1027.102500px;}
.y2_c00481{bottom:1027.528092px;}
.y3_c00481{bottom:1029.552655px;}
.y4_c00481{bottom:1030.261182px;}
.y5_c00481{bottom:1032.838712px;}
.y6_c00481{bottom:1033.470889px;}
.y7_c00481{bottom:1035.867156px;}
.y8_c00481{bottom:1037.248985px;}
.h5_c00481{height:24.000000px;}
.h4_c00481{height:42.000000px;}
.h3_c00481{height:101.967865px;}
.h2_c00481{height:108.028562px;}
.h0_c00481{height:1246.320000px;}
.h1_c00481{height:1246.500000px;}
.w0_c00481{width:896.100000px;}
.w1_c00481{width:896.250000px;}
.x0_c00481{left:0.000000px;}
.x10_c00481{left:1.890000px;}
.x11_c00481{left:3.240000px;}
.x1_c00481{left:80.170500px;}
.x2_c00481{left:98.674500px;}
.x3_c00481{left:186.699000px;}
.x4_c00481{left:217.504500px;}
.x5_c00481{left:329.571000px;}
.x6_c00481{left:357.057000px;}
.x9_c00481{left:454.239000px;}
.x7_c00481{left:461.242500px;}
.xa_c00481{left:476.920296px;}
.x8_c00481{left:521.322000px;}
.xb_c00481{left:598.775319px;}
.xc_c00481{left:644.488560px;}
.xf_c00481{left:700.920000px;}
.xe_c00481{left:702.540000px;}
.xd_c00481{left:720.589882px;}
@media print{
.v0_c00481{vertical-align:0.000000pt;}
.ls0_c00481{letter-spacing:0.000000pt;}
.ws0_c00481{word-spacing:0.000000pt;}
.fs3_c00481{font-size:21.333333pt;}
.fs2_c00481{font-size:37.333333pt;}
.fs1_c00481{font-size:90.638102pt;}
.fs0_c00481{font-size:96.025389pt;}
.y0_c00481{bottom:0.000000pt;}
.y10_c00481{bottom:663.840000pt;}
.y11_c00481{bottom:665.760000pt;}
.yf_c00481{bottom:735.600000pt;}
.ye_c00481{bottom:746.160000pt;}
.y9_c00481{bottom:758.901333pt;}
.ya_c00481{bottom:759.648043pt;}
.yb_c00481{bottom:763.659731pt;}
.yc_c00481{bottom:765.164693pt;}
.yd_c00481{bottom:767.670087pt;}
.y1_c00481{bottom:912.980000pt;}
.y2_c00481{bottom:913.358304pt;}
.y3_c00481{bottom:915.157916pt;}
.y4_c00481{bottom:915.787717pt;}
.y5_c00481{bottom:918.078855pt;}
.y6_c00481{bottom:918.640791pt;}
.y7_c00481{bottom:920.770805pt;}
.y8_c00481{bottom:921.999097pt;}
.h5_c00481{height:21.333333pt;}
.h4_c00481{height:37.333333pt;}
.h3_c00481{height:90.638102pt;}
.h2_c00481{height:96.025389pt;}
.h0_c00481{height:1107.840000pt;}
.h1_c00481{height:1108.000000pt;}
.w0_c00481{width:796.533333pt;}
.w1_c00481{width:796.666667pt;}
.x0_c00481{left:0.000000pt;}
.x10_c00481{left:1.680000pt;}
.x11_c00481{left:2.880000pt;}
.x1_c00481{left:71.262667pt;}
.x2_c00481{left:87.710667pt;}
.x3_c00481{left:165.954667pt;}
.x4_c00481{left:193.337333pt;}
.x5_c00481{left:292.952000pt;}
.x6_c00481{left:317.384000pt;}
.x9_c00481{left:403.768000pt;}
.x7_c00481{left:409.993333pt;}
.xa_c00481{left:423.929152pt;}
.x8_c00481{left:463.397333pt;}
.xb_c00481{left:532.244728pt;}
.xc_c00481{left:572.878720pt;}
.xf_c00481{left:623.040000pt;}
.xe_c00481{left:624.480000pt;}
.xd_c00481{left:640.524340pt;}
}





/* 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_c00482 {
    display:none;
  }
  .loading-indicator_c00482.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00482 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_c00482 { 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_c00482" -> "#page-container .classname_c00482")
 */
.pf_c00482 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00482 { /* 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_c00482.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00482 { /* 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_c00482 { /* 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_c00482 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00482 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00482 {overflow:visible;}
  }
}
.c_c00482 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00482 { /* 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_c00482:after { /* webkit #35443 */
  content: '';
}
.t_c00482:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00482 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 */
}
.__c00482 { /* 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_c00482 { /* info for Javascript */
  display:none;
}
.l_c00482 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00482 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00482 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00482: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_c00482 {
    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_c00482.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00482.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_c00482 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00482{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00482;src:url('chunks/assets/font_b11a17f404e7258299fdf971.woff2')format("woff");}.ff1_c00482{font-family:ff1_c00482;line-height:1.000000;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;}
.m0_c00482{transform:matrix(0.069584,0.002786,-0.010002,0.249800,0,0);-ms-transform:matrix(0.069584,0.002786,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.069584,0.002786,-0.010002,0.249800,0,0);}
.m17_c00482{transform:matrix(0.090303,0.003616,-0.010002,0.249800,0,0);-ms-transform:matrix(0.090303,0.003616,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.090303,0.003616,-0.010002,0.249800,0,0);}
.m15_c00482{transform:matrix(0.178472,0.007146,-0.010002,0.249800,0,0);-ms-transform:matrix(0.178472,0.007146,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.178472,0.007146,-0.010002,0.249800,0,0);}
.m1b_c00482{transform:matrix(0.179502,0.009343,-0.012995,0.249662,0,0);-ms-transform:matrix(0.179502,0.009343,-0.012995,0.249662,0,0);-webkit-transform:matrix(0.179502,0.009343,-0.012995,0.249662,0,0);}
.m1d_c00482{transform:matrix(0.183926,0.009574,-0.012995,0.249662,0,0);-ms-transform:matrix(0.183926,0.009574,-0.012995,0.249662,0,0);-webkit-transform:matrix(0.183926,0.009574,-0.012995,0.249662,0,0);}
.m19_c00482{transform:matrix(0.196509,0.010229,-0.012995,0.249662,0,0);-ms-transform:matrix(0.196509,0.010229,-0.012995,0.249662,0,0);-webkit-transform:matrix(0.196509,0.010229,-0.012995,0.249662,0,0);}
.m12_c00482{transform:matrix(0.206574,0.008271,-0.010002,0.249800,0,0);-ms-transform:matrix(0.206574,0.008271,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.206574,0.008271,-0.010002,0.249800,0,0);}
.mb_c00482{transform:matrix(0.208053,0.008330,-0.010002,0.249800,0,0);-ms-transform:matrix(0.208053,0.008330,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.208053,0.008330,-0.010002,0.249800,0,0);}
.mf_c00482{transform:matrix(0.209222,0.008377,-0.010002,0.249800,0,0);-ms-transform:matrix(0.209222,0.008377,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.209222,0.008377,-0.010002,0.249800,0,0);}
.m1a_c00482{transform:matrix(0.216462,0.011267,-0.012995,0.249662,0,0);-ms-transform:matrix(0.216462,0.011267,-0.012995,0.249662,0,0);-webkit-transform:matrix(0.216462,0.011267,-0.012995,0.249662,0,0);}
.m18_c00482{transform:matrix(0.218784,0.011388,-0.012995,0.249662,0,0);-ms-transform:matrix(0.218784,0.011388,-0.012995,0.249662,0,0);-webkit-transform:matrix(0.218784,0.011388,-0.012995,0.249662,0,0);}
.ma_c00482{transform:matrix(0.219194,0.008777,-0.010002,0.249800,0,0);-ms-transform:matrix(0.219194,0.008777,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.219194,0.008777,-0.010002,0.249800,0,0);}
.m1c_c00482{transform:matrix(0.219453,0.011423,-0.012995,0.249662,0,0);-ms-transform:matrix(0.219453,0.011423,-0.012995,0.249662,0,0);-webkit-transform:matrix(0.219453,0.011423,-0.012995,0.249662,0,0);}
.mc_c00482{transform:matrix(0.221278,0.008860,-0.010002,0.249800,0,0);-ms-transform:matrix(0.221278,0.008860,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.221278,0.008860,-0.010002,0.249800,0,0);}
.m9_c00482{transform:matrix(0.221632,0.008874,-0.010002,0.249800,0,0);-ms-transform:matrix(0.221632,0.008874,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.221632,0.008874,-0.010002,0.249800,0,0);}
.m10_c00482{transform:matrix(0.224475,0.008988,-0.010002,0.249800,0,0);-ms-transform:matrix(0.224475,0.008988,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.224475,0.008988,-0.010002,0.249800,0,0);}
.m1_c00482{transform:matrix(0.226204,0.009057,-0.010002,0.249800,0,0);-ms-transform:matrix(0.226204,0.009057,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.226204,0.009057,-0.010002,0.249800,0,0);}
.m1e_c00482{transform:matrix(0.231831,0.012067,-0.012995,0.249662,0,0);-ms-transform:matrix(0.231831,0.012067,-0.012995,0.249662,0,0);-webkit-transform:matrix(0.231831,0.012067,-0.012995,0.249662,0,0);}
.m14_c00482{transform:matrix(0.234787,0.009401,-0.010002,0.249800,0,0);-ms-transform:matrix(0.234787,0.009401,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.234787,0.009401,-0.010002,0.249800,0,0);}
.m13_c00482{transform:matrix(0.238269,0.009540,-0.010002,0.249800,0,0);-ms-transform:matrix(0.238269,0.009540,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.238269,0.009540,-0.010002,0.249800,0,0);}
.m11_c00482{transform:matrix(0.241067,0.009652,-0.010002,0.249800,0,0);-ms-transform:matrix(0.241067,0.009652,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.241067,0.009652,-0.010002,0.249800,0,0);}
.m16_c00482{transform:matrix(0.249615,0.009995,-0.010002,0.249800,0,0);-ms-transform:matrix(0.249615,0.009995,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.249615,0.009995,-0.010002,0.249800,0,0);}
.m5_c00482{transform:matrix(0.251618,0.011586,-0.011499,0.249735,0,0);-ms-transform:matrix(0.251618,0.011586,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.251618,0.011586,-0.011499,0.249735,0,0);}
.md_c00482{transform:matrix(0.256709,0.010279,-0.010002,0.249800,0,0);-ms-transform:matrix(0.256709,0.010279,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.256709,0.010279,-0.010002,0.249800,0,0);}
.me_c00482{transform:matrix(0.257948,0.010328,-0.010002,0.249800,0,0);-ms-transform:matrix(0.257948,0.010328,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.257948,0.010328,-0.010002,0.249800,0,0);}
.m4_c00482{transform:matrix(0.291556,0.013425,-0.011499,0.249735,0,0);-ms-transform:matrix(0.291556,0.013425,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.291556,0.013425,-0.011499,0.249735,0,0);}
.m6_c00482{transform:matrix(0.293974,0.013536,-0.011499,0.249735,0,0);-ms-transform:matrix(0.293974,0.013536,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.293974,0.013536,-0.011499,0.249735,0,0);}
.m3_c00482{transform:matrix(0.302093,0.012096,-0.010002,0.249800,0,0);-ms-transform:matrix(0.302093,0.012096,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.302093,0.012096,-0.010002,0.249800,0,0);}
.m2_c00482{transform:matrix(0.378542,0.015157,-0.010002,0.249800,0,0);-ms-transform:matrix(0.378542,0.015157,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.378542,0.015157,-0.010002,0.249800,0,0);}
.m8_c00482{transform:matrix(1.282151,0.059038,-0.011499,0.249735,0,0);-ms-transform:matrix(1.282151,0.059038,-0.011499,0.249735,0,0);-webkit-transform:matrix(1.282151,0.059038,-0.011499,0.249735,0,0);}
.m7_c00482{transform:matrix(7.319205,0.337020,-0.011499,0.249735,0,0);-ms-transform:matrix(7.319205,0.337020,-0.011499,0.249735,0,0);-webkit-transform:matrix(7.319205,0.337020,-0.011499,0.249735,0,0);}
.v0_c00482{vertical-align:0.000000px;}
.ls0_c00482{letter-spacing:0.000000px;}
.sc__c00482{text-shadow:none;}
.sc0_c00482{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__c00482{-webkit-text-stroke:0px transparent;}
.sc0_c00482{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00482{word-spacing:0.000000px;}
.fc0_c00482{color:transparent;}
.fs2_c00482{font-size:18.001053px;}
.fs0_c00482{font-size:35.992817px;}
.fs1_c00482{font-size:66.003861px;}
.fs3_c00482{font-size:77.984437px;}
.fs4_c00482{font-size:89.982043px;}
.fs5_c00482{font-size:90.031719px;}
.y0_c00482{bottom:0.000000px;}
.y1f_c00482{bottom:1038.410790px;}
.y1e_c00482{bottom:1040.118444px;}
.y1d_c00482{bottom:1044.184350px;}
.y1c_c00482{bottom:1045.855032px;}
.y1b_c00482{bottom:1050.409530px;}
.y1a_c00482{bottom:1052.769420px;}
.y18_c00482{bottom:1055.869812px;}
.y19_c00482{bottom:1058.433000px;}
.y17_c00482{bottom:1058.768365px;}
.y16_c00482{bottom:1059.819907px;}
.y15_c00482{bottom:1062.206493px;}
.y14_c00482{bottom:1074.007260px;}
.y13_c00482{bottom:1075.325940px;}
.y12_c00482{bottom:1078.039740px;}
.y11_c00482{bottom:1079.328240px;}
.y10_c00482{bottom:1080.667680px;}
.yf_c00482{bottom:1085.501340px;}
.ye_c00482{bottom:1090.311720px;}
.yd_c00482{bottom:1091.674440px;}
.yc_c00482{bottom:1093.359180px;}
.yb_c00482{bottom:1095.603780px;}
.ya_c00482{bottom:1097.298000px;}
.y9_c00482{bottom:1116.577978px;}
.y8_c00482{bottom:1124.017543px;}
.y7_c00482{bottom:1124.177115px;}
.y6_c00482{bottom:1125.717885px;}
.y5_c00482{bottom:1129.708500px;}
.y4_c00482{bottom:1242.835800px;}
.y3_c00482{bottom:1244.965140px;}
.y2_c00482{bottom:1246.249320px;}
.y1_c00482{bottom:1254.405000px;}
.h4_c00482{height:18.001053px;}
.h2_c00482{height:35.992817px;}
.h3_c00482{height:66.003861px;}
.h5_c00482{height:77.984437px;}
.h6_c00482{height:89.982043px;}
.h7_c00482{height:90.031719px;}
.h0_c00482{height:1246.320000px;}
.h1_c00482{height:1246.500000px;}
.w0_c00482{width:896.100000px;}
.w1_c00482{width:896.250000px;}
.x0_c00482{left:0.000000px;}
.x15_c00482{left:161.115332px;}
.xa_c00482{left:170.176500px;}
.xb_c00482{left:212.489644px;}
.x1_c00482{left:216.658500px;}
.x16_c00482{left:233.352762px;}
.x17_c00482{left:265.162809px;}
.xc_c00482{left:268.548529px;}
.xd_c00482{left:310.624911px;}
.x5_c00482{left:324.460500px;}
.x8_c00482{left:331.920078px;}
.xe_c00482{left:344.658843px;}
.x18_c00482{left:352.885563px;}
.x6_c00482{left:411.126248px;}
.x2_c00482{left:420.346608px;}
.x7_c00482{left:444.587753px;}
.x3_c00482{left:452.419003px;}
.x19_c00482{left:462.686085px;}
.xf_c00482{left:464.798083px;}
.x9_c00482{left:486.769845px;}
.x4_c00482{left:505.599270px;}
.x1a_c00482{left:508.023203px;}
.x10_c00482{left:585.518742px;}
.x1b_c00482{left:595.522116px;}
.x11_c00482{left:618.971256px;}
.x1c_c00482{left:627.618488px;}
.x12_c00482{left:651.151544px;}
.x1d_c00482{left:705.730797px;}
.x13_c00482{left:718.928699px;}
.x1e_c00482{left:738.537458px;}
.x14_c00482{left:751.862732px;}
@media print{
.v0_c00482{vertical-align:0.000000pt;}
.ls0_c00482{letter-spacing:0.000000pt;}
.ws0_c00482{word-spacing:0.000000pt;}
.fs2_c00482{font-size:16.000936pt;}
.fs0_c00482{font-size:31.993615pt;}
.fs1_c00482{font-size:58.670099pt;}
.fs3_c00482{font-size:69.319500pt;}
.fs4_c00482{font-size:79.984038pt;}
.fs5_c00482{font-size:80.028195pt;}
.y0_c00482{bottom:0.000000pt;}
.y1f_c00482{bottom:923.031813pt;}
.y1e_c00482{bottom:924.549728pt;}
.y1d_c00482{bottom:928.163867pt;}
.y1c_c00482{bottom:929.648917pt;}
.y1b_c00482{bottom:933.697360pt;}
.y1a_c00482{bottom:935.795040pt;}
.y18_c00482{bottom:938.550944pt;}
.y19_c00482{bottom:940.829333pt;}
.y17_c00482{bottom:941.127436pt;}
.y16_c00482{bottom:942.062140pt;}
.y15_c00482{bottom:944.183549pt;}
.y14_c00482{bottom:954.673120pt;}
.y13_c00482{bottom:955.845280pt;}
.y12_c00482{bottom:958.257547pt;}
.y11_c00482{bottom:959.402880pt;}
.y10_c00482{bottom:960.593493pt;}
.yf_c00482{bottom:964.890080pt;}
.ye_c00482{bottom:969.165973pt;}
.yd_c00482{bottom:970.377280pt;}
.yc_c00482{bottom:971.874827pt;}
.yb_c00482{bottom:973.870027pt;}
.ya_c00482{bottom:975.376000pt;}
.y9_c00482{bottom:992.513759pt;}
.y8_c00482{bottom:999.126705pt;}
.y7_c00482{bottom:999.268547pt;}
.y6_c00482{bottom:1000.638120pt;}
.y5_c00482{bottom:1004.185333pt;}
.y4_c00482{bottom:1104.742933pt;}
.y3_c00482{bottom:1106.635680pt;}
.y2_c00482{bottom:1107.777173pt;}
.y1_c00482{bottom:1115.026667pt;}
.h4_c00482{height:16.000936pt;}
.h2_c00482{height:31.993615pt;}
.h3_c00482{height:58.670099pt;}
.h5_c00482{height:69.319500pt;}
.h6_c00482{height:79.984038pt;}
.h7_c00482{height:80.028195pt;}
.h0_c00482{height:1107.840000pt;}
.h1_c00482{height:1108.000000pt;}
.w0_c00482{width:796.533333pt;}
.w1_c00482{width:796.666667pt;}
.x0_c00482{left:0.000000pt;}
.x15_c00482{left:143.213628pt;}
.xa_c00482{left:151.268000pt;}
.xb_c00482{left:188.879684pt;}
.x1_c00482{left:192.585333pt;}
.x16_c00482{left:207.424677pt;}
.x17_c00482{left:235.700275pt;}
.xc_c00482{left:238.709804pt;}
.xd_c00482{left:276.111032pt;}
.x5_c00482{left:288.409333pt;}
.x8_c00482{left:295.040069pt;}
.xe_c00482{left:306.363416pt;}
.x18_c00482{left:313.676056pt;}
.x6_c00482{left:365.445553pt;}
.x2_c00482{left:373.641429pt;}
.x7_c00482{left:395.189113pt;}
.x3_c00482{left:402.150225pt;}
.x19_c00482{left:411.276520pt;}
.xf_c00482{left:413.153852pt;}
.x9_c00482{left:432.684307pt;}
.x4_c00482{left:449.421573pt;}
.x1a_c00482{left:451.576180pt;}
.x10_c00482{left:520.461104pt;}
.x1b_c00482{left:529.352992pt;}
.x11_c00482{left:550.196672pt;}
.x1c_c00482{left:557.883100pt;}
.x12_c00482{left:578.801372pt;}
.x1d_c00482{left:627.316264pt;}
.x13_c00482{left:639.047732pt;}
.x1e_c00482{left:656.477740pt;}
.x14_c00482{left:668.322428pt;}
}





/* 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_c00483 {
    display:none;
  }
  .loading-indicator_c00483.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00483 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_c00483 { 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_c00483" -> "#page-container .classname_c00483")
 */
.pf_c00483 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00483 { /* 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_c00483.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00483 { /* 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_c00483 { /* 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_c00483 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00483 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00483 {overflow:visible;}
  }
}
.c_c00483 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00483 { /* 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_c00483:after { /* webkit #35443 */
  content: '';
}
.t_c00483:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00483 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 */
}
.__c00483 { /* 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_c00483 { /* info for Javascript */
  display:none;
}
.l_c00483 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00483 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00483 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00483: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_c00483 {
    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_c00483.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00483.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_c00483 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00483{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00483;src:url('chunks/assets/font_944db81570d4ec07251d83b9.woff2')format("woff");}.ff1_c00483{font-family:ff1_c00483;line-height:1.000000;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;}
.m0_c00483{transform:matrix(0.050310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.050310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.050310,0.000000,0.000000,0.250000,0,0);}
.m1_c00483{transform:matrix(0.140960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140960,0.000000,0.000000,0.250000,0,0);}
.m2_c00483{transform:matrix(0.308870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308870,0.000000,0.000000,0.250000,0,0);}
.m3_c00483{transform:matrix(0.611880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.611880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.611880,0.000000,0.000000,0.250000,0,0);}
.m4_c00483{transform:matrix(0.693130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.693130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.693130,0.000000,0.000000,0.250000,0,0);}
.v0_c00483{vertical-align:0.000000px;}
.ls0_c00483{letter-spacing:0.000000px;}
.sc__c00483{text-shadow:none;}
.sc0_c00483{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__c00483{-webkit-text-stroke:0px transparent;}
.sc0_c00483{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00483{word-spacing:0.000000px;}
.fc0_c00483{color:transparent;}
.fs1_c00483{font-size:12.000000px;}
.fs0_c00483{font-size:24.000000px;}
.y0_c00483{bottom:0.000000px;}
.y2_c00483{bottom:1110.645000px;}
.y1_c00483{bottom:1114.560000px;}
.h3_c00483{height:12.000000px;}
.h2_c00483{height:24.000000px;}
.h0_c00483{height:1246.320000px;}
.h1_c00483{height:1246.500000px;}
.w0_c00483{width:896.100000px;}
.w1_c00483{width:896.250000px;}
.x0_c00483{left:0.000000px;}
.x3_c00483{left:476.550000px;}
.x1_c00483{left:478.170000px;}
.x4_c00483{left:488.700000px;}
.x2_c00483{left:493.290000px;}
.x5_c00483{left:506.790000px;}
@media print{
.v0_c00483{vertical-align:0.000000pt;}
.ls0_c00483{letter-spacing:0.000000pt;}
.ws0_c00483{word-spacing:0.000000pt;}
.fs1_c00483{font-size:10.666667pt;}
.fs0_c00483{font-size:21.333333pt;}
.y0_c00483{bottom:0.000000pt;}
.y2_c00483{bottom:987.240000pt;}
.y1_c00483{bottom:990.720000pt;}
.h3_c00483{height:10.666667pt;}
.h2_c00483{height:21.333333pt;}
.h0_c00483{height:1107.840000pt;}
.h1_c00483{height:1108.000000pt;}
.w0_c00483{width:796.533333pt;}
.w1_c00483{width:796.666667pt;}
.x0_c00483{left:0.000000pt;}
.x3_c00483{left:423.600000pt;}
.x1_c00483{left:425.040000pt;}
.x4_c00483{left:434.400000pt;}
.x2_c00483{left:438.480000pt;}
.x5_c00483{left:450.480000pt;}
}





/* 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_c00484 {
    display:none;
  }
  .loading-indicator_c00484.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00484 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_c00484 { 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_c00484" -> "#page-container .classname_c00484")
 */
.pf_c00484 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00484 { /* 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_c00484.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00484 { /* 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_c00484 { /* 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_c00484 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00484 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00484 {overflow:visible;}
  }
}
.c_c00484 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00484 { /* 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_c00484:after { /* webkit #35443 */
  content: '';
}
.t_c00484:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00484 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 */
}
.__c00484 { /* 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_c00484 { /* info for Javascript */
  display:none;
}
.l_c00484 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00484 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00484 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00484: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_c00484 {
    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_c00484.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00484.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_c00484 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00484{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00484;src:url('chunks/assets/font_7c6b9abe6ee2a268480c528b.woff2')format("woff");}.ff1_c00484{font-family:ff1_c00484;line-height:1.000000;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;}
.ma9_c00484{transform:matrix(0.058557,0.001464,-0.006248,0.249922,0,0);-ms-transform:matrix(0.058557,0.001464,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.058557,0.001464,-0.006248,0.249922,0,0);}
.m6_c00484{transform:matrix(0.094265,0.002922,-0.007746,0.249880,0,0);-ms-transform:matrix(0.094265,0.002922,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.094265,0.002922,-0.007746,0.249880,0,0);}
.ma3_c00484{transform:matrix(0.104617,0.002615,-0.006248,0.249922,0,0);-ms-transform:matrix(0.104617,0.002615,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.104617,0.002615,-0.006248,0.249922,0,0);}
.m132_c00484{transform:matrix(0.112591,0.004959,-0.011000,0.249758,0,0);-ms-transform:matrix(0.112591,0.004959,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.112591,0.004959,-0.011000,0.249758,0,0);}
.m86_c00484{transform:matrix(0.153806,0.004927,-0.008004,0.249872,0,0);-ms-transform:matrix(0.153806,0.004927,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.153806,0.004927,-0.008004,0.249872,0,0);}
.m10e_c00484{transform:matrix(0.156999,0.006286,-0.010002,0.249800,0,0);-ms-transform:matrix(0.156999,0.006286,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.156999,0.006286,-0.010002,0.249800,0,0);}
.m3e_c00484{transform:matrix(0.162763,0.003906,-0.005998,0.249928,0,0);-ms-transform:matrix(0.162763,0.003906,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.162763,0.003906,-0.005998,0.249928,0,0);}
.m26_c00484{transform:matrix(0.162938,0.003911,-0.005998,0.249928,0,0);-ms-transform:matrix(0.162938,0.003911,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.162938,0.003911,-0.005998,0.249928,0,0);}
.ma5_c00484{transform:matrix(0.163704,0.004093,-0.006248,0.249922,0,0);-ms-transform:matrix(0.163704,0.004093,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.163704,0.004093,-0.006248,0.249922,0,0);}
.m47_c00484{transform:matrix(0.166922,0.004006,-0.005998,0.249928,0,0);-ms-transform:matrix(0.166922,0.004006,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.166922,0.004006,-0.005998,0.249928,0,0);}
.m109_c00484{transform:matrix(0.167841,0.006720,-0.010002,0.249800,0,0);-ms-transform:matrix(0.167841,0.006720,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.167841,0.006720,-0.010002,0.249800,0,0);}
.m10c_c00484{transform:matrix(0.170089,0.006810,-0.010002,0.249800,0,0);-ms-transform:matrix(0.170089,0.006810,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.170089,0.006810,-0.010002,0.249800,0,0);}
.m106_c00484{transform:matrix(0.170983,0.006846,-0.010002,0.249800,0,0);-ms-transform:matrix(0.170983,0.006846,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.170983,0.006846,-0.010002,0.249800,0,0);}
.m107_c00484{transform:matrix(0.174076,0.006970,-0.010002,0.249800,0,0);-ms-transform:matrix(0.174076,0.006970,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.174076,0.006970,-0.010002,0.249800,0,0);}
.m112_c00484{transform:matrix(0.174345,0.006981,-0.010002,0.249800,0,0);-ms-transform:matrix(0.174345,0.006981,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.174345,0.006981,-0.010002,0.249800,0,0);}
.m48_c00484{transform:matrix(0.175220,0.004205,-0.005998,0.249928,0,0);-ms-transform:matrix(0.175220,0.004205,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.175220,0.004205,-0.005998,0.249928,0,0);}
.m42_c00484{transform:matrix(0.176489,0.004236,-0.005998,0.249928,0,0);-ms-transform:matrix(0.176489,0.004236,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.176489,0.004236,-0.005998,0.249928,0,0);}
.m28_c00484{transform:matrix(0.177084,0.004250,-0.005998,0.249928,0,0);-ms-transform:matrix(0.177084,0.004250,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.177084,0.004250,-0.005998,0.249928,0,0);}
.m44_c00484{transform:matrix(0.177829,0.004268,-0.005998,0.249928,0,0);-ms-transform:matrix(0.177829,0.004268,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.177829,0.004268,-0.005998,0.249928,0,0);}
.m2a_c00484{transform:matrix(0.178564,0.004286,-0.005998,0.249928,0,0);-ms-transform:matrix(0.178564,0.004286,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.178564,0.004286,-0.005998,0.249928,0,0);}
.m2c_c00484{transform:matrix(0.179123,0.004299,-0.005998,0.249928,0,0);-ms-transform:matrix(0.179123,0.004299,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.179123,0.004299,-0.005998,0.249928,0,0);}
.m75_c00484{transform:matrix(0.179593,0.005753,-0.008004,0.249872,0,0);-ms-transform:matrix(0.179593,0.005753,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.179593,0.005753,-0.008004,0.249872,0,0);}
.m37_c00484{transform:matrix(0.179693,0.004313,-0.005998,0.249928,0,0);-ms-transform:matrix(0.179693,0.004313,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.179693,0.004313,-0.005998,0.249928,0,0);}
.m3a_c00484{transform:matrix(0.180228,0.004325,-0.005998,0.249928,0,0);-ms-transform:matrix(0.180228,0.004325,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.180228,0.004325,-0.005998,0.249928,0,0);}
.m34_c00484{transform:matrix(0.182098,0.004370,-0.005998,0.249928,0,0);-ms-transform:matrix(0.182098,0.004370,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.182098,0.004370,-0.005998,0.249928,0,0);}
.ma4_c00484{transform:matrix(0.182108,0.004553,-0.006248,0.249922,0,0);-ms-transform:matrix(0.182108,0.004553,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.182108,0.004553,-0.006248,0.249922,0,0);}
.m10f_c00484{transform:matrix(0.184117,0.007372,-0.010002,0.249800,0,0);-ms-transform:matrix(0.184117,0.007372,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.184117,0.007372,-0.010002,0.249800,0,0);}
.ma6_c00484{transform:matrix(0.185857,0.004646,-0.006248,0.249922,0,0);-ms-transform:matrix(0.185857,0.004646,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.185857,0.004646,-0.006248,0.249922,0,0);}
.m2e_c00484{transform:matrix(0.186021,0.004465,-0.005998,0.249928,0,0);-ms-transform:matrix(0.186021,0.004465,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.186021,0.004465,-0.005998,0.249928,0,0);}
.m3f_c00484{transform:matrix(0.187561,0.004501,-0.005998,0.249928,0,0);-ms-transform:matrix(0.187561,0.004501,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.187561,0.004501,-0.005998,0.249928,0,0);}
.m10b_c00484{transform:matrix(0.187844,0.007521,-0.010002,0.249800,0,0);-ms-transform:matrix(0.187844,0.007521,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.187844,0.007521,-0.010002,0.249800,0,0);}
.ma7_c00484{transform:matrix(0.189231,0.004731,-0.006248,0.249922,0,0);-ms-transform:matrix(0.189231,0.004731,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.189231,0.004731,-0.006248,0.249922,0,0);}
.m111_c00484{transform:matrix(0.190233,0.007617,-0.010002,0.249800,0,0);-ms-transform:matrix(0.190233,0.007617,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.190233,0.007617,-0.010002,0.249800,0,0);}
.m2f_c00484{transform:matrix(0.190775,0.004579,-0.005998,0.249928,0,0);-ms-transform:matrix(0.190775,0.004579,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.190775,0.004579,-0.005998,0.249928,0,0);}
.m2_c00484{transform:matrix(0.191530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191530,0.000000,0.000000,0.250000,0,0);}
.m5f_c00484{transform:matrix(0.191610,0.004599,-0.005998,0.249928,0,0);-ms-transform:matrix(0.191610,0.004599,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.191610,0.004599,-0.005998,0.249928,0,0);}
.m58_c00484{transform:matrix(0.192530,0.004621,-0.005998,0.249928,0,0);-ms-transform:matrix(0.192530,0.004621,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.192530,0.004621,-0.005998,0.249928,0,0);}
.m70_c00484{transform:matrix(0.192546,0.006168,-0.008004,0.249872,0,0);-ms-transform:matrix(0.192546,0.006168,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.192546,0.006168,-0.008004,0.249872,0,0);}
.m11b_c00484{transform:matrix(0.193425,0.007745,-0.010002,0.249800,0,0);-ms-transform:matrix(0.193425,0.007745,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.193425,0.007745,-0.010002,0.249800,0,0);}
.m30_c00484{transform:matrix(0.193559,0.004645,-0.005998,0.249928,0,0);-ms-transform:matrix(0.193559,0.004645,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.193559,0.004645,-0.005998,0.249928,0,0);}
.mf2_c00484{transform:matrix(0.193609,0.006977,-0.009003,0.249838,0,0);-ms-transform:matrix(0.193609,0.006977,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.193609,0.006977,-0.009003,0.249838,0,0);}
.m77_c00484{transform:matrix(0.194250,0.006222,-0.008004,0.249872,0,0);-ms-transform:matrix(0.194250,0.006222,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.194250,0.006222,-0.008004,0.249872,0,0);}
.m40_c00484{transform:matrix(0.194804,0.004675,-0.005998,0.249928,0,0);-ms-transform:matrix(0.194804,0.004675,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.194804,0.004675,-0.005998,0.249928,0,0);}
.ma1_c00484{transform:matrix(0.194939,0.004873,-0.006248,0.249922,0,0);-ms-transform:matrix(0.194939,0.004873,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.194939,0.004873,-0.006248,0.249922,0,0);}
.m68_c00484{transform:matrix(0.194945,0.006244,-0.008004,0.249872,0,0);-ms-transform:matrix(0.194945,0.006244,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.194945,0.006244,-0.008004,0.249872,0,0);}
.m102_c00484{transform:matrix(0.195649,0.009401,-0.011998,0.249712,0,0);-ms-transform:matrix(0.195649,0.009401,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.195649,0.009401,-0.011998,0.249712,0,0);}
.m108_c00484{transform:matrix(0.196068,0.007851,-0.010002,0.249800,0,0);-ms-transform:matrix(0.196068,0.007851,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.196068,0.007851,-0.010002,0.249800,0,0);}
.m46_c00484{transform:matrix(0.196213,0.004709,-0.005998,0.249928,0,0);-ms-transform:matrix(0.196213,0.004709,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.196213,0.004709,-0.005998,0.249928,0,0);}
.m49_c00484{transform:matrix(0.196443,0.004715,-0.005998,0.249928,0,0);-ms-transform:matrix(0.196443,0.004715,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.196443,0.004715,-0.005998,0.249928,0,0);}
.mcb_c00484{transform:matrix(0.197331,0.005920,-0.007497,0.249888,0,0);-ms-transform:matrix(0.197331,0.005920,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.197331,0.005920,-0.007497,0.249888,0,0);}
.m36_c00484{transform:matrix(0.197653,0.004744,-0.005998,0.249928,0,0);-ms-transform:matrix(0.197653,0.004744,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.197653,0.004744,-0.005998,0.249928,0,0);}
.m6b_c00484{transform:matrix(0.198308,0.006352,-0.008004,0.249872,0,0);-ms-transform:matrix(0.198308,0.006352,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.198308,0.006352,-0.008004,0.249872,0,0);}
.m29_c00484{transform:matrix(0.198803,0.004771,-0.005998,0.249928,0,0);-ms-transform:matrix(0.198803,0.004771,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.198803,0.004771,-0.005998,0.249928,0,0);}
.m113_c00484{transform:matrix(0.199490,0.007988,-0.010002,0.249800,0,0);-ms-transform:matrix(0.199490,0.007988,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.199490,0.007988,-0.010002,0.249800,0,0);}
.m32_c00484{transform:matrix(0.199887,0.004797,-0.005998,0.249928,0,0);-ms-transform:matrix(0.199887,0.004797,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.199887,0.004797,-0.005998,0.249928,0,0);}
.m6d_c00484{transform:matrix(0.200572,0.006425,-0.008004,0.249872,0,0);-ms-transform:matrix(0.200572,0.006425,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.200572,0.006425,-0.008004,0.249872,0,0);}
.m43_c00484{transform:matrix(0.202377,0.004857,-0.005998,0.249928,0,0);-ms-transform:matrix(0.202377,0.004857,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.202377,0.004857,-0.005998,0.249928,0,0);}
.m10a_c00484{transform:matrix(0.202603,0.008112,-0.010002,0.249800,0,0);-ms-transform:matrix(0.202603,0.008112,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.202603,0.008112,-0.010002,0.249800,0,0);}
.m120_c00484{transform:matrix(0.203152,0.008134,-0.010002,0.249800,0,0);-ms-transform:matrix(0.203152,0.008134,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.203152,0.008134,-0.010002,0.249800,0,0);}
.m59_c00484{transform:matrix(0.203231,0.004878,-0.005998,0.249928,0,0);-ms-transform:matrix(0.203231,0.004878,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.203231,0.004878,-0.005998,0.249928,0,0);}
.m110_c00484{transform:matrix(0.203357,0.008142,-0.010002,0.249800,0,0);-ms-transform:matrix(0.203357,0.008142,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.203357,0.008142,-0.010002,0.249800,0,0);}
.m5c_c00484{transform:matrix(0.205031,0.004921,-0.005998,0.249928,0,0);-ms-transform:matrix(0.205031,0.004921,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.205031,0.004921,-0.005998,0.249928,0,0);}
.m45_c00484{transform:matrix(0.205386,0.004929,-0.005998,0.249928,0,0);-ms-transform:matrix(0.205386,0.004929,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.205386,0.004929,-0.005998,0.249928,0,0);}
.m124_c00484{transform:matrix(0.206169,0.005773,-0.006997,0.249902,0,0);-ms-transform:matrix(0.206169,0.005773,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.206169,0.005773,-0.006997,0.249902,0,0);}
.m41_c00484{transform:matrix(0.206356,0.004953,-0.005998,0.249928,0,0);-ms-transform:matrix(0.206356,0.004953,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.206356,0.004953,-0.005998,0.249928,0,0);}
.mdf_c00484{transform:matrix(0.206737,0.006202,-0.007497,0.249888,0,0);-ms-transform:matrix(0.206737,0.006202,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.206737,0.006202,-0.007497,0.249888,0,0);}
.m10d_c00484{transform:matrix(0.207004,0.008288,-0.010002,0.249800,0,0);-ms-transform:matrix(0.207004,0.008288,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.207004,0.008288,-0.010002,0.249800,0,0);}
.mc6_c00484{transform:matrix(0.207682,0.006230,-0.007497,0.249888,0,0);-ms-transform:matrix(0.207682,0.006230,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.207682,0.006230,-0.007497,0.249888,0,0);}
.m73_c00484{transform:matrix(0.207788,0.006656,-0.008004,0.249872,0,0);-ms-transform:matrix(0.207788,0.006656,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.207788,0.006656,-0.008004,0.249872,0,0);}
.m35_c00484{transform:matrix(0.208375,0.005001,-0.005998,0.249928,0,0);-ms-transform:matrix(0.208375,0.005001,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.208375,0.005001,-0.005998,0.249928,0,0);}
.m56_c00484{transform:matrix(0.208545,0.005005,-0.005998,0.249928,0,0);-ms-transform:matrix(0.208545,0.005005,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.208545,0.005005,-0.005998,0.249928,0,0);}
.m27_c00484{transform:matrix(0.208875,0.005013,-0.005998,0.249928,0,0);-ms-transform:matrix(0.208875,0.005013,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.208875,0.005013,-0.005998,0.249928,0,0);}
.m54_c00484{transform:matrix(0.208895,0.005013,-0.005998,0.249928,0,0);-ms-transform:matrix(0.208895,0.005013,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.208895,0.005013,-0.005998,0.249928,0,0);}
.m126_c00484{transform:matrix(0.209218,0.005858,-0.006997,0.249902,0,0);-ms-transform:matrix(0.209218,0.005858,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.209218,0.005858,-0.006997,0.249902,0,0);}
.mf8_c00484{transform:matrix(0.209494,0.007549,-0.009003,0.249838,0,0);-ms-transform:matrix(0.209494,0.007549,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.209494,0.007549,-0.009003,0.249838,0,0);}
.mfb_c00484{transform:matrix(0.209608,0.010071,-0.011998,0.249712,0,0);-ms-transform:matrix(0.209608,0.010071,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.209608,0.010071,-0.011998,0.249712,0,0);}
.m39_c00484{transform:matrix(0.210964,0.005063,-0.005998,0.249928,0,0);-ms-transform:matrix(0.210964,0.005063,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.210964,0.005063,-0.005998,0.249928,0,0);}
.m63_c00484{transform:matrix(0.211215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211215,0.000000,0.000000,0.250000,0,0);}
.m33_c00484{transform:matrix(0.212124,0.005091,-0.005998,0.249928,0,0);-ms-transform:matrix(0.212124,0.005091,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.212124,0.005091,-0.005998,0.249928,0,0);}
.me9_c00484{transform:matrix(0.212299,0.006369,-0.007497,0.249888,0,0);-ms-transform:matrix(0.212299,0.006369,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.212299,0.006369,-0.007497,0.249888,0,0);}
.mc9_c00484{transform:matrix(0.212364,0.006371,-0.007497,0.249888,0,0);-ms-transform:matrix(0.212364,0.006371,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.212364,0.006371,-0.007497,0.249888,0,0);}
.m3b_c00484{transform:matrix(0.212369,0.005097,-0.005998,0.249928,0,0);-ms-transform:matrix(0.212369,0.005097,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.212369,0.005097,-0.005998,0.249928,0,0);}
.me2_c00484{transform:matrix(0.213539,0.006406,-0.007497,0.249888,0,0);-ms-transform:matrix(0.213539,0.006406,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.213539,0.006406,-0.007497,0.249888,0,0);}
.m135_c00484{transform:matrix(0.213613,0.009408,-0.011000,0.249758,0,0);-ms-transform:matrix(0.213613,0.009408,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.213613,0.009408,-0.011000,0.249758,0,0);}
.m2d_c00484{transform:matrix(0.214178,0.005140,-0.005998,0.249928,0,0);-ms-transform:matrix(0.214178,0.005140,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.214178,0.005140,-0.005998,0.249928,0,0);}
.m6f_c00484{transform:matrix(0.214310,0.006865,-0.008004,0.249872,0,0);-ms-transform:matrix(0.214310,0.006865,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.214310,0.006865,-0.008004,0.249872,0,0);}
.m93_c00484{transform:matrix(0.214600,0.006874,-0.008004,0.249872,0,0);-ms-transform:matrix(0.214600,0.006874,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.214600,0.006874,-0.008004,0.249872,0,0);}
.m118_c00484{transform:matrix(0.216137,0.008654,-0.010002,0.249800,0,0);-ms-transform:matrix(0.216137,0.008654,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.216137,0.008654,-0.010002,0.249800,0,0);}
.m11d_c00484{transform:matrix(0.216996,0.008689,-0.010002,0.249800,0,0);-ms-transform:matrix(0.216996,0.008689,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.216996,0.008689,-0.010002,0.249800,0,0);}
.m31_c00484{transform:matrix(0.218067,0.005234,-0.005998,0.249928,0,0);-ms-transform:matrix(0.218067,0.005234,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.218067,0.005234,-0.005998,0.249928,0,0);}
.mfd_c00484{transform:matrix(0.218688,0.010508,-0.011998,0.249712,0,0);-ms-transform:matrix(0.218688,0.010508,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.218688,0.010508,-0.011998,0.249712,0,0);}
.mca_c00484{transform:matrix(0.218852,0.006566,-0.007497,0.249888,0,0);-ms-transform:matrix(0.218852,0.006566,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.218852,0.006566,-0.007497,0.249888,0,0);}
.m3c_c00484{transform:matrix(0.219777,0.005275,-0.005998,0.249928,0,0);-ms-transform:matrix(0.219777,0.005275,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.219777,0.005275,-0.005998,0.249928,0,0);}
.mfc_c00484{transform:matrix(0.219961,0.010569,-0.011998,0.249712,0,0);-ms-transform:matrix(0.219961,0.010569,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.219961,0.010569,-0.011998,0.249712,0,0);}
.m1d_c00484{transform:matrix(0.220292,0.005287,-0.005998,0.249928,0,0);-ms-transform:matrix(0.220292,0.005287,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.220292,0.005287,-0.005998,0.249928,0,0);}
.m11c_c00484{transform:matrix(0.220738,0.008838,-0.010002,0.249800,0,0);-ms-transform:matrix(0.220738,0.008838,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.220738,0.008838,-0.010002,0.249800,0,0);}
.m11a_c00484{transform:matrix(0.221028,0.008850,-0.010002,0.249800,0,0);-ms-transform:matrix(0.221028,0.008850,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.221028,0.008850,-0.010002,0.249800,0,0);}
.m14_c00484{transform:matrix(0.221311,0.005311,-0.005998,0.249928,0,0);-ms-transform:matrix(0.221311,0.005311,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.221311,0.005311,-0.005998,0.249928,0,0);}
.m2b_c00484{transform:matrix(0.221971,0.005327,-0.005998,0.249928,0,0);-ms-transform:matrix(0.221971,0.005327,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.221971,0.005327,-0.005998,0.249928,0,0);}
.m5d_c00484{transform:matrix(0.222176,0.005332,-0.005998,0.249928,0,0);-ms-transform:matrix(0.222176,0.005332,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.222176,0.005332,-0.005998,0.249928,0,0);}
.m71_c00484{transform:matrix(0.222286,0.007120,-0.008004,0.249872,0,0);-ms-transform:matrix(0.222286,0.007120,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.222286,0.007120,-0.008004,0.249872,0,0);}
.mb9_c00484{transform:matrix(0.222504,0.007350,-0.008254,0.249864,0,0);-ms-transform:matrix(0.222504,0.007350,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.222504,0.007350,-0.008254,0.249864,0,0);}
.m3d_c00484{transform:matrix(0.222536,0.005341,-0.005998,0.249928,0,0);-ms-transform:matrix(0.222536,0.005341,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.222536,0.005341,-0.005998,0.249928,0,0);}
.m66_c00484{transform:matrix(0.222646,0.007132,-0.008004,0.249872,0,0);-ms-transform:matrix(0.222646,0.007132,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.222646,0.007132,-0.008004,0.249872,0,0);}
.mcc_c00484{transform:matrix(0.223459,0.006704,-0.007497,0.249888,0,0);-ms-transform:matrix(0.223459,0.006704,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.223459,0.006704,-0.007497,0.249888,0,0);}
.m6e_c00484{transform:matrix(0.223605,0.007163,-0.008004,0.249872,0,0);-ms-transform:matrix(0.223605,0.007163,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.223605,0.007163,-0.008004,0.249872,0,0);}
.m60_c00484{transform:matrix(0.223701,0.005369,-0.005998,0.249928,0,0);-ms-transform:matrix(0.223701,0.005369,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.223701,0.005369,-0.005998,0.249928,0,0);}
.m5b_c00484{transform:matrix(0.223931,0.005374,-0.005998,0.249928,0,0);-ms-transform:matrix(0.223931,0.005374,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.223931,0.005374,-0.005998,0.249928,0,0);}
.m82_c00484{transform:matrix(0.223955,0.007174,-0.008004,0.249872,0,0);-ms-transform:matrix(0.223955,0.007174,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.223955,0.007174,-0.008004,0.249872,0,0);}
.m38_c00484{transform:matrix(0.224475,0.005387,-0.005998,0.249928,0,0);-ms-transform:matrix(0.224475,0.005387,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.224475,0.005387,-0.005998,0.249928,0,0);}
.md2_c00484{transform:matrix(0.224482,0.009438,-0.010501,0.249779,0,0);-ms-transform:matrix(0.224482,0.009438,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.224482,0.009438,-0.010501,0.249779,0,0);}
.mdd_c00484{transform:matrix(0.224499,0.006735,-0.007497,0.249888,0,0);-ms-transform:matrix(0.224499,0.006735,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.224499,0.006735,-0.007497,0.249888,0,0);}
.m5a_c00484{transform:matrix(0.224525,0.005389,-0.005998,0.249928,0,0);-ms-transform:matrix(0.224525,0.005389,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.224525,0.005389,-0.005998,0.249928,0,0);}
.m7b_c00484{transform:matrix(0.224745,0.007199,-0.008004,0.249872,0,0);-ms-transform:matrix(0.224745,0.007199,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.224745,0.007199,-0.008004,0.249872,0,0);}
.m79_c00484{transform:matrix(0.225224,0.007214,-0.008004,0.249872,0,0);-ms-transform:matrix(0.225224,0.007214,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.225224,0.007214,-0.008004,0.249872,0,0);}
.m7_c00484{transform:matrix(0.225512,0.006991,-0.007746,0.249880,0,0);-ms-transform:matrix(0.225512,0.006991,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.225512,0.006991,-0.007746,0.249880,0,0);}
.mfa_c00484{transform:matrix(0.226144,0.010866,-0.011998,0.249712,0,0);-ms-transform:matrix(0.226144,0.010866,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.226144,0.010866,-0.011998,0.249712,0,0);}
.m4_c00484{transform:matrix(0.226266,0.007014,-0.007746,0.249880,0,0);-ms-transform:matrix(0.226266,0.007014,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.226266,0.007014,-0.007746,0.249880,0,0);}
.m128_c00484{transform:matrix(0.226456,0.006341,-0.006997,0.249902,0,0);-ms-transform:matrix(0.226456,0.006341,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.226456,0.006341,-0.006997,0.249902,0,0);}
.m67_c00484{transform:matrix(0.226464,0.007254,-0.008004,0.249872,0,0);-ms-transform:matrix(0.226464,0.007254,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.226464,0.007254,-0.008004,0.249872,0,0);}
.m76_c00484{transform:matrix(0.226699,0.007262,-0.008004,0.249872,0,0);-ms-transform:matrix(0.226699,0.007262,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.226699,0.007262,-0.008004,0.249872,0,0);}
.mbd_c00484{transform:matrix(0.226841,0.007493,-0.008254,0.249864,0,0);-ms-transform:matrix(0.226841,0.007493,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.226841,0.007493,-0.008254,0.249864,0,0);}
.mcf_c00484{transform:matrix(0.227313,0.006819,-0.007497,0.249888,0,0);-ms-transform:matrix(0.227313,0.006819,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.227313,0.006819,-0.007497,0.249888,0,0);}
.m119_c00484{transform:matrix(0.227328,0.009102,-0.010002,0.249800,0,0);-ms-transform:matrix(0.227328,0.009102,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.227328,0.009102,-0.010002,0.249800,0,0);}
.m6c_c00484{transform:matrix(0.227593,0.007290,-0.008004,0.249872,0,0);-ms-transform:matrix(0.227593,0.007290,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.227593,0.007290,-0.008004,0.249872,0,0);}
.ma2_c00484{transform:matrix(0.228029,0.005701,-0.006248,0.249922,0,0);-ms-transform:matrix(0.228029,0.005701,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.228029,0.005701,-0.006248,0.249922,0,0);}
.m3_c00484{transform:matrix(0.228060,0.007070,-0.007746,0.249880,0,0);-ms-transform:matrix(0.228060,0.007070,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.228060,0.007070,-0.007746,0.249880,0,0);}
.mc7_c00484{transform:matrix(0.228352,0.006851,-0.007497,0.249888,0,0);-ms-transform:matrix(0.228352,0.006851,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.228352,0.006851,-0.007497,0.249888,0,0);}
.me5_c00484{transform:matrix(0.228367,0.006851,-0.007497,0.249888,0,0);-ms-transform:matrix(0.228367,0.006851,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.228367,0.006851,-0.007497,0.249888,0,0);}
.maf_c00484{transform:matrix(0.228516,0.008921,-0.009752,0.249810,0,0);-ms-transform:matrix(0.228516,0.008921,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.228516,0.008921,-0.009752,0.249810,0,0);}
.m25_c00484{transform:matrix(0.228749,0.005490,-0.005998,0.249928,0,0);-ms-transform:matrix(0.228749,0.005490,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.228749,0.005490,-0.005998,0.249928,0,0);}
.m5e_c00484{transform:matrix(0.228974,0.005495,-0.005998,0.249928,0,0);-ms-transform:matrix(0.228974,0.005495,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.228974,0.005495,-0.005998,0.249928,0,0);}
.m78_c00484{transform:matrix(0.229282,0.007344,-0.008004,0.249872,0,0);-ms-transform:matrix(0.229282,0.007344,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.229282,0.007344,-0.008004,0.249872,0,0);}
.m55_c00484{transform:matrix(0.229534,0.005509,-0.005998,0.249928,0,0);-ms-transform:matrix(0.229534,0.005509,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.229534,0.005509,-0.005998,0.249928,0,0);}
.mcd_c00484{transform:matrix(0.229617,0.006889,-0.007497,0.249888,0,0);-ms-transform:matrix(0.229617,0.006889,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.229617,0.006889,-0.007497,0.249888,0,0);}
.m129_c00484{transform:matrix(0.229900,0.006437,-0.006997,0.249902,0,0);-ms-transform:matrix(0.229900,0.006437,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.229900,0.006437,-0.006997,0.249902,0,0);}
.mc8_c00484{transform:matrix(0.229987,0.006900,-0.007497,0.249888,0,0);-ms-transform:matrix(0.229987,0.006900,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.229987,0.006900,-0.007497,0.249888,0,0);}
.mea_c00484{transform:matrix(0.230221,0.006907,-0.007497,0.249888,0,0);-ms-transform:matrix(0.230221,0.006907,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.230221,0.006907,-0.007497,0.249888,0,0);}
.m57_c00484{transform:matrix(0.230534,0.005533,-0.005998,0.249928,0,0);-ms-transform:matrix(0.230534,0.005533,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.230534,0.005533,-0.005998,0.249928,0,0);}
.m125_c00484{transform:matrix(0.230545,0.006455,-0.006997,0.249902,0,0);-ms-transform:matrix(0.230545,0.006455,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.230545,0.006455,-0.006997,0.249902,0,0);}
.mce_c00484{transform:matrix(0.230811,0.006924,-0.007497,0.249888,0,0);-ms-transform:matrix(0.230811,0.006924,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.230811,0.006924,-0.007497,0.249888,0,0);}
.m103_c00484{transform:matrix(0.231228,0.011110,-0.011998,0.249712,0,0);-ms-transform:matrix(0.231228,0.011110,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.231228,0.011110,-0.011998,0.249712,0,0);}
.mc3_c00484{transform:matrix(0.231349,0.007642,-0.008254,0.249864,0,0);-ms-transform:matrix(0.231349,0.007642,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.231349,0.007642,-0.008254,0.249864,0,0);}
.m12a_c00484{transform:matrix(0.231714,0.006488,-0.006997,0.249902,0,0);-ms-transform:matrix(0.231714,0.006488,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.231714,0.006488,-0.006997,0.249902,0,0);}
.m21_c00484{transform:matrix(0.232218,0.005573,-0.005998,0.249928,0,0);-ms-transform:matrix(0.232218,0.005573,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.232218,0.005573,-0.005998,0.249928,0,0);}
.mc0_c00484{transform:matrix(0.232858,0.007692,-0.008254,0.249864,0,0);-ms-transform:matrix(0.232858,0.007692,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.232858,0.007692,-0.008254,0.249864,0,0);}
.me3_c00484{transform:matrix(0.232870,0.006986,-0.007497,0.249888,0,0);-ms-transform:matrix(0.232870,0.006986,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.232870,0.006986,-0.007497,0.249888,0,0);}
.m19_c00484{transform:matrix(0.232918,0.005590,-0.005998,0.249928,0,0);-ms-transform:matrix(0.232918,0.005590,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.232918,0.005590,-0.005998,0.249928,0,0);}
.m11_c00484{transform:matrix(0.233548,0.005605,-0.005998,0.249928,0,0);-ms-transform:matrix(0.233548,0.005605,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.233548,0.005605,-0.005998,0.249928,0,0);}
.m64_c00484{transform:matrix(0.234260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234260,0.000000,0.000000,0.250000,0,0);}
.m11e_c00484{transform:matrix(0.234312,0.009382,-0.010002,0.249800,0,0);-ms-transform:matrix(0.234312,0.009382,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.234312,0.009382,-0.010002,0.249800,0,0);}
.mc1_c00484{transform:matrix(0.234657,0.007751,-0.008254,0.249864,0,0);-ms-transform:matrix(0.234657,0.007751,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.234657,0.007751,-0.008254,0.249864,0,0);}
.m11f_c00484{transform:matrix(0.234802,0.009401,-0.010002,0.249800,0,0);-ms-transform:matrix(0.234802,0.009401,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.234802,0.009401,-0.010002,0.249800,0,0);}
.m9_c00484{transform:matrix(0.235012,0.005640,-0.005998,0.249928,0,0);-ms-transform:matrix(0.235012,0.005640,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.235012,0.005640,-0.005998,0.249928,0,0);}
.m104_c00484{transform:matrix(0.235164,0.011299,-0.011998,0.249712,0,0);-ms-transform:matrix(0.235164,0.011299,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.235164,0.011299,-0.011998,0.249712,0,0);}
.mb3_c00484{transform:matrix(0.235271,0.009185,-0.009752,0.249810,0,0);-ms-transform:matrix(0.235271,0.009185,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.235271,0.009185,-0.009752,0.249810,0,0);}
.m69_c00484{transform:matrix(0.235779,0.007552,-0.008004,0.249872,0,0);-ms-transform:matrix(0.235779,0.007552,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.235779,0.007552,-0.008004,0.249872,0,0);}
.mb1_c00484{transform:matrix(0.236450,0.009231,-0.009752,0.249810,0,0);-ms-transform:matrix(0.236450,0.009231,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.236450,0.009231,-0.009752,0.249810,0,0);}
.m72_c00484{transform:matrix(0.236534,0.007577,-0.008004,0.249872,0,0);-ms-transform:matrix(0.236534,0.007577,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.236534,0.007577,-0.008004,0.249872,0,0);}
.m117_c00484{transform:matrix(0.237470,0.009508,-0.010002,0.249800,0,0);-ms-transform:matrix(0.237470,0.009508,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.237470,0.009508,-0.010002,0.249800,0,0);}
.m7d_c00484{transform:matrix(0.237713,0.007614,-0.008004,0.249872,0,0);-ms-transform:matrix(0.237713,0.007614,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.237713,0.007614,-0.008004,0.249872,0,0);}
.m65_c00484{transform:matrix(0.237903,0.007621,-0.008004,0.249872,0,0);-ms-transform:matrix(0.237903,0.007621,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.237903,0.007621,-0.008004,0.249872,0,0);}
.m61_c00484{transform:matrix(0.238300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238300,0.000000,0.000000,0.250000,0,0);}
.m80_c00484{transform:matrix(0.238413,0.007637,-0.008004,0.249872,0,0);-ms-transform:matrix(0.238413,0.007637,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.238413,0.007637,-0.008004,0.249872,0,0);}
.m62_c00484{transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);}
.m13_c00484{transform:matrix(0.239371,0.005745,-0.005998,0.249928,0,0);-ms-transform:matrix(0.239371,0.005745,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.239371,0.005745,-0.005998,0.249928,0,0);}
.mde_c00484{transform:matrix(0.239377,0.007181,-0.007497,0.249888,0,0);-ms-transform:matrix(0.239377,0.007181,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.239377,0.007181,-0.007497,0.249888,0,0);}
.maa_c00484{transform:matrix(0.240080,0.006002,-0.006248,0.249922,0,0);-ms-transform:matrix(0.240080,0.006002,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.240080,0.006002,-0.006248,0.249922,0,0);}
.m74_c00484{transform:matrix(0.240267,0.007696,-0.008004,0.249872,0,0);-ms-transform:matrix(0.240267,0.007696,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.240267,0.007696,-0.008004,0.249872,0,0);}
.mdc_c00484{transform:matrix(0.240282,0.007208,-0.007497,0.249888,0,0);-ms-transform:matrix(0.240282,0.007208,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.240282,0.007208,-0.007497,0.249888,0,0);}
.m9a_c00484{transform:matrix(0.240652,0.007709,-0.008004,0.249872,0,0);-ms-transform:matrix(0.240652,0.007709,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.240652,0.007709,-0.008004,0.249872,0,0);}
.m123_c00484{transform:matrix(0.241056,0.006750,-0.006997,0.249902,0,0);-ms-transform:matrix(0.241056,0.006750,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.241056,0.006750,-0.006997,0.249902,0,0);}
.m133_c00484{transform:matrix(0.241091,0.010619,-0.011000,0.249758,0,0);-ms-transform:matrix(0.241091,0.010619,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.241091,0.010619,-0.011000,0.249758,0,0);}
.m1c_c00484{transform:matrix(0.241545,0.005797,-0.005998,0.249928,0,0);-ms-transform:matrix(0.241545,0.005797,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.241545,0.005797,-0.005998,0.249928,0,0);}
.mc_c00484{transform:matrix(0.241710,0.005801,-0.005998,0.249928,0,0);-ms-transform:matrix(0.241710,0.005801,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.241710,0.005801,-0.005998,0.249928,0,0);}
.m122_c00484{transform:matrix(0.242200,0.006782,-0.006997,0.249902,0,0);-ms-transform:matrix(0.242200,0.006782,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.242200,0.006782,-0.006997,0.249902,0,0);}
.m127_c00484{transform:matrix(0.242440,0.006788,-0.006997,0.249902,0,0);-ms-transform:matrix(0.242440,0.006788,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.242440,0.006788,-0.006997,0.249902,0,0);}
.m8_c00484{transform:matrix(0.242475,0.005819,-0.005998,0.249928,0,0);-ms-transform:matrix(0.242475,0.005819,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.242475,0.005819,-0.005998,0.249928,0,0);}
.m12f_c00484{transform:matrix(0.242610,0.006793,-0.006997,0.249902,0,0);-ms-transform:matrix(0.242610,0.006793,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.242610,0.006793,-0.006997,0.249902,0,0);}
.m85_c00484{transform:matrix(0.242910,0.007781,-0.008004,0.249872,0,0);-ms-transform:matrix(0.242910,0.007781,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.242910,0.007781,-0.008004,0.249872,0,0);}
.mc4_c00484{transform:matrix(0.243242,0.008035,-0.008254,0.249864,0,0);-ms-transform:matrix(0.243242,0.008035,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.243242,0.008035,-0.008254,0.249864,0,0);}
.mbb_c00484{transform:matrix(0.243407,0.008040,-0.008254,0.249864,0,0);-ms-transform:matrix(0.243407,0.008040,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.243407,0.008040,-0.008254,0.249864,0,0);}
.m7c_c00484{transform:matrix(0.243655,0.007805,-0.008004,0.249872,0,0);-ms-transform:matrix(0.243655,0.007805,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.243655,0.007805,-0.008004,0.249872,0,0);}
.mbe_c00484{transform:matrix(0.244891,0.008090,-0.008254,0.249864,0,0);-ms-transform:matrix(0.244891,0.008090,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.244891,0.008090,-0.008254,0.249864,0,0);}
.mf6_c00484{transform:matrix(0.245301,0.008840,-0.009003,0.249838,0,0);-ms-transform:matrix(0.245301,0.008840,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.245301,0.008840,-0.009003,0.249838,0,0);}
.m1b_c00484{transform:matrix(0.245549,0.005893,-0.005998,0.249928,0,0);-ms-transform:matrix(0.245549,0.005893,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.245549,0.005893,-0.005998,0.249928,0,0);}
.ma0_c00484{transform:matrix(0.245943,0.006149,-0.006248,0.249922,0,0);-ms-transform:matrix(0.245943,0.006149,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.245943,0.006149,-0.006248,0.249922,0,0);}
.m94_c00484{transform:matrix(0.246364,0.007892,-0.008004,0.249872,0,0);-ms-transform:matrix(0.246364,0.007892,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.246364,0.007892,-0.008004,0.249872,0,0);}
.me0_c00484{transform:matrix(0.246439,0.007393,-0.007497,0.249888,0,0);-ms-transform:matrix(0.246439,0.007393,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.246439,0.007393,-0.007497,0.249888,0,0);}
.med_c00484{transform:matrix(0.246484,0.007395,-0.007497,0.249888,0,0);-ms-transform:matrix(0.246484,0.007395,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.246484,0.007395,-0.007497,0.249888,0,0);}
.mff_c00484{transform:matrix(0.246760,0.011856,-0.011998,0.249712,0,0);-ms-transform:matrix(0.246760,0.011856,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.246760,0.011856,-0.011998,0.249712,0,0);}
.m6a_c00484{transform:matrix(0.246893,0.007908,-0.008004,0.249872,0,0);-ms-transform:matrix(0.246893,0.007908,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.246893,0.007908,-0.008004,0.249872,0,0);}
.ma8_c00484{transform:matrix(0.246993,0.006175,-0.006248,0.249922,0,0);-ms-transform:matrix(0.246993,0.006175,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.246993,0.006175,-0.006248,0.249922,0,0);}
.m20_c00484{transform:matrix(0.247084,0.005930,-0.005998,0.249928,0,0);-ms-transform:matrix(0.247084,0.005930,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.247084,0.005930,-0.005998,0.249928,0,0);}
.m52_c00484{transform:matrix(0.247284,0.005935,-0.005998,0.249928,0,0);-ms-transform:matrix(0.247284,0.005935,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.247284,0.005935,-0.005998,0.249928,0,0);}
.md9_c00484{transform:matrix(0.247332,0.010398,-0.010501,0.249779,0,0);-ms-transform:matrix(0.247332,0.010398,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.247332,0.010398,-0.010501,0.249779,0,0);}
.m12_c00484{transform:matrix(0.247684,0.005944,-0.005998,0.249928,0,0);-ms-transform:matrix(0.247684,0.005944,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.247684,0.005944,-0.005998,0.249928,0,0);}
.m8f_c00484{transform:matrix(0.247978,0.007943,-0.008004,0.249872,0,0);-ms-transform:matrix(0.247978,0.007943,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.247978,0.007943,-0.008004,0.249872,0,0);}
.m4f_c00484{transform:matrix(0.248753,0.005970,-0.005998,0.249928,0,0);-ms-transform:matrix(0.248753,0.005970,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.248753,0.005970,-0.005998,0.249928,0,0);}
.mb8_c00484{transform:matrix(0.249514,0.008242,-0.008254,0.249864,0,0);-ms-transform:matrix(0.249514,0.008242,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.249514,0.008242,-0.008254,0.249864,0,0);}
.m84_c00484{transform:matrix(0.249887,0.008004,-0.008004,0.249872,0,0);-ms-transform:matrix(0.249887,0.008004,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.249887,0.008004,-0.008004,0.249872,0,0);}
.mfe_c00484{transform:matrix(0.250736,0.012047,-0.011998,0.249712,0,0);-ms-transform:matrix(0.250736,0.012047,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.250736,0.012047,-0.011998,0.249712,0,0);}
.m24_c00484{transform:matrix(0.250783,0.006019,-0.005998,0.249928,0,0);-ms-transform:matrix(0.250783,0.006019,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.250783,0.006019,-0.005998,0.249928,0,0);}
.mac_c00484{transform:matrix(0.250997,0.006275,-0.006248,0.249922,0,0);-ms-transform:matrix(0.250997,0.006275,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.250997,0.006275,-0.006248,0.249922,0,0);}
.me4_c00484{transform:matrix(0.251447,0.007543,-0.007497,0.249888,0,0);-ms-transform:matrix(0.251447,0.007543,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.251447,0.007543,-0.007497,0.249888,0,0);}
.mdb_c00484{transform:matrix(0.252172,0.007565,-0.007497,0.249888,0,0);-ms-transform:matrix(0.252172,0.007565,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.252172,0.007565,-0.007497,0.249888,0,0);}
.mf0_c00484{transform:matrix(0.252871,0.009112,-0.009003,0.249838,0,0);-ms-transform:matrix(0.252871,0.009112,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.252871,0.009112,-0.009003,0.249838,0,0);}
.m96_c00484{transform:matrix(0.252905,0.008101,-0.008004,0.249872,0,0);-ms-transform:matrix(0.252905,0.008101,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.252905,0.008101,-0.008004,0.249872,0,0);}
.m97_c00484{transform:matrix(0.253655,0.008125,-0.008004,0.249872,0,0);-ms-transform:matrix(0.253655,0.008125,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.253655,0.008125,-0.008004,0.249872,0,0);}
.m100_c00484{transform:matrix(0.254282,0.012218,-0.011998,0.249712,0,0);-ms-transform:matrix(0.254282,0.012218,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.254282,0.012218,-0.011998,0.249712,0,0);}
.md8_c00484{transform:matrix(0.254985,0.010720,-0.010501,0.249779,0,0);-ms-transform:matrix(0.254985,0.010720,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.254985,0.010720,-0.010501,0.249779,0,0);}
.mb4_c00484{transform:matrix(0.255470,0.009973,-0.009752,0.249810,0,0);-ms-transform:matrix(0.255470,0.009973,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.255470,0.009973,-0.009752,0.249810,0,0);}
.m10_c00484{transform:matrix(0.255506,0.006132,-0.005998,0.249928,0,0);-ms-transform:matrix(0.255506,0.006132,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.255506,0.006132,-0.005998,0.249928,0,0);}
.m137_c00484{transform:matrix(0.255647,0.011260,-0.011000,0.249758,0,0);-ms-transform:matrix(0.255647,0.011260,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.255647,0.011260,-0.011000,0.249758,0,0);}
.m105_c00484{transform:matrix(0.255675,0.012285,-0.011998,0.249712,0,0);-ms-transform:matrix(0.255675,0.012285,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.255675,0.012285,-0.011998,0.249712,0,0);}
.me1_c00484{transform:matrix(0.256380,0.007691,-0.007497,0.249888,0,0);-ms-transform:matrix(0.256380,0.007691,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.256380,0.007691,-0.007497,0.249888,0,0);}
.mbc_c00484{transform:matrix(0.256970,0.008488,-0.008254,0.249864,0,0);-ms-transform:matrix(0.256970,0.008488,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.256970,0.008488,-0.008254,0.249864,0,0);}
.m101_c00484{transform:matrix(0.257433,0.012369,-0.011998,0.249712,0,0);-ms-transform:matrix(0.257433,0.012369,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.257433,0.012369,-0.011998,0.249712,0,0);}
.m16_c00484{transform:matrix(0.257621,0.006183,-0.005998,0.249928,0,0);-ms-transform:matrix(0.257621,0.006183,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.257621,0.006183,-0.005998,0.249928,0,0);}
.m9c_c00484{transform:matrix(0.258472,0.008279,-0.008004,0.249872,0,0);-ms-transform:matrix(0.258472,0.008279,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.258472,0.008279,-0.008004,0.249872,0,0);}
.m134_c00484{transform:matrix(0.258864,0.011401,-0.011000,0.249758,0,0);-ms-transform:matrix(0.258864,0.011401,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.258864,0.011401,-0.011000,0.249758,0,0);}
.m8b_c00484{transform:matrix(0.259287,0.008305,-0.008004,0.249872,0,0);-ms-transform:matrix(0.259287,0.008305,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.259287,0.008305,-0.008004,0.249872,0,0);}
.m95_c00484{transform:matrix(0.259382,0.008309,-0.008004,0.249872,0,0);-ms-transform:matrix(0.259382,0.008309,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.259382,0.008309,-0.008004,0.249872,0,0);}
.mb_c00484{transform:matrix(0.259840,0.006236,-0.005998,0.249928,0,0);-ms-transform:matrix(0.259840,0.006236,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.259840,0.006236,-0.005998,0.249928,0,0);}
.m136_c00484{transform:matrix(0.259893,0.011447,-0.011000,0.249758,0,0);-ms-transform:matrix(0.259893,0.011447,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.259893,0.011447,-0.011000,0.249758,0,0);}
.m8a_c00484{transform:matrix(0.260087,0.008331,-0.008004,0.249872,0,0);-ms-transform:matrix(0.260087,0.008331,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.260087,0.008331,-0.008004,0.249872,0,0);}
.m7a_c00484{transform:matrix(0.260217,0.008335,-0.008004,0.249872,0,0);-ms-transform:matrix(0.260217,0.008335,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.260217,0.008335,-0.008004,0.249872,0,0);}
.mf9_c00484{transform:matrix(0.260246,0.009378,-0.009003,0.249838,0,0);-ms-transform:matrix(0.260246,0.009378,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.260246,0.009378,-0.009003,0.249838,0,0);}
.mbf_c00484{transform:matrix(0.260508,0.008605,-0.008254,0.249864,0,0);-ms-transform:matrix(0.260508,0.008605,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.260508,0.008605,-0.008254,0.249864,0,0);}
.m99_c00484{transform:matrix(0.260656,0.008349,-0.008004,0.249872,0,0);-ms-transform:matrix(0.260656,0.008349,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.260656,0.008349,-0.008004,0.249872,0,0);}
.mb7_c00484{transform:matrix(0.260836,0.010183,-0.009752,0.249810,0,0);-ms-transform:matrix(0.260836,0.010183,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.260836,0.010183,-0.009752,0.249810,0,0);}
.md0_c00484{transform:matrix(0.261407,0.007842,-0.007497,0.249888,0,0);-ms-transform:matrix(0.261407,0.007842,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.261407,0.007842,-0.007497,0.249888,0,0);}
.md4_c00484{transform:matrix(0.261674,0.011001,-0.010501,0.249779,0,0);-ms-transform:matrix(0.261674,0.011001,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.261674,0.011001,-0.010501,0.249779,0,0);}
.md3_c00484{transform:matrix(0.261879,0.011010,-0.010501,0.249779,0,0);-ms-transform:matrix(0.261879,0.011010,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.261879,0.011010,-0.010501,0.249779,0,0);}
.mb0_c00484{transform:matrix(0.262265,0.010239,-0.009752,0.249810,0,0);-ms-transform:matrix(0.262265,0.010239,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.262265,0.010239,-0.009752,0.249810,0,0);}
.me6_c00484{transform:matrix(0.262307,0.007869,-0.007497,0.249888,0,0);-ms-transform:matrix(0.262307,0.007869,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.262307,0.007869,-0.007497,0.249888,0,0);}
.mb6_c00484{transform:matrix(0.262740,0.010257,-0.009752,0.249810,0,0);-ms-transform:matrix(0.262740,0.010257,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.262740,0.010257,-0.009752,0.249810,0,0);}
.m12c_c00484{transform:matrix(0.262767,0.007357,-0.006997,0.249902,0,0);-ms-transform:matrix(0.262767,0.007357,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.262767,0.007357,-0.006997,0.249902,0,0);}
.mad_c00484{transform:matrix(0.263035,0.010269,-0.009752,0.249810,0,0);-ms-transform:matrix(0.263035,0.010269,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.263035,0.010269,-0.009752,0.249810,0,0);}
.m8e_c00484{transform:matrix(0.263885,0.008453,-0.008004,0.249872,0,0);-ms-transform:matrix(0.263885,0.008453,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.263885,0.008453,-0.008004,0.249872,0,0);}
.m131_c00484{transform:matrix(0.264171,0.007397,-0.006997,0.249902,0,0);-ms-transform:matrix(0.264171,0.007397,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.264171,0.007397,-0.006997,0.249902,0,0);}
.ma_c00484{transform:matrix(0.264199,0.006341,-0.005998,0.249928,0,0);-ms-transform:matrix(0.264199,0.006341,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.264199,0.006341,-0.005998,0.249928,0,0);}
.m9b_c00484{transform:matrix(0.264464,0.008471,-0.008004,0.249872,0,0);-ms-transform:matrix(0.264464,0.008471,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.264464,0.008471,-0.008004,0.249872,0,0);}
.m4b_c00484{transform:matrix(0.265079,0.006362,-0.005998,0.249928,0,0);-ms-transform:matrix(0.265079,0.006362,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.265079,0.006362,-0.005998,0.249928,0,0);}
.me7_c00484{transform:matrix(0.265910,0.007977,-0.007497,0.249888,0,0);-ms-transform:matrix(0.265910,0.007977,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.265910,0.007977,-0.007497,0.249888,0,0);}
.meb_c00484{transform:matrix(0.266380,0.007991,-0.007497,0.249888,0,0);-ms-transform:matrix(0.266380,0.007991,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.266380,0.007991,-0.007497,0.249888,0,0);}
.m18_c00484{transform:matrix(0.266443,0.006395,-0.005998,0.249928,0,0);-ms-transform:matrix(0.266443,0.006395,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.266443,0.006395,-0.005998,0.249928,0,0);}
.mba_c00484{transform:matrix(0.266675,0.008809,-0.008254,0.249864,0,0);-ms-transform:matrix(0.266675,0.008809,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.266675,0.008809,-0.008254,0.249864,0,0);}
.m83_c00484{transform:matrix(0.267038,0.008554,-0.008004,0.249872,0,0);-ms-transform:matrix(0.267038,0.008554,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.267038,0.008554,-0.008004,0.249872,0,0);}
.md7_c00484{transform:matrix(0.267104,0.011230,-0.010501,0.249779,0,0);-ms-transform:matrix(0.267104,0.011230,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.267104,0.011230,-0.010501,0.249779,0,0);}
.mc2_c00484{transform:matrix(0.267704,0.008843,-0.008254,0.249864,0,0);-ms-transform:matrix(0.267704,0.008843,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.267704,0.008843,-0.008254,0.249864,0,0);}
.m98_c00484{transform:matrix(0.268122,0.008589,-0.008004,0.249872,0,0);-ms-transform:matrix(0.268122,0.008589,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.268122,0.008589,-0.008004,0.249872,0,0);}
.md_c00484{transform:matrix(0.268373,0.006441,-0.005998,0.249928,0,0);-ms-transform:matrix(0.268373,0.006441,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.268373,0.006441,-0.005998,0.249928,0,0);}
.m15_c00484{transform:matrix(0.268473,0.006443,-0.005998,0.249928,0,0);-ms-transform:matrix(0.268473,0.006443,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.268473,0.006443,-0.005998,0.249928,0,0);}
.m92_c00484{transform:matrix(0.268692,0.008607,-0.008004,0.249872,0,0);-ms-transform:matrix(0.268692,0.008607,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.268692,0.008607,-0.008004,0.249872,0,0);}
.mee_c00484{transform:matrix(0.269274,0.008078,-0.007497,0.249888,0,0);-ms-transform:matrix(0.269274,0.008078,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.269274,0.008078,-0.007497,0.249888,0,0);}
.mec_c00484{transform:matrix(0.269614,0.008088,-0.007497,0.249888,0,0);-ms-transform:matrix(0.269614,0.008088,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.269614,0.008088,-0.007497,0.249888,0,0);}
.m51_c00484{transform:matrix(0.269707,0.006473,-0.005998,0.249928,0,0);-ms-transform:matrix(0.269707,0.006473,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.269707,0.006473,-0.005998,0.249928,0,0);}
.m17_c00484{transform:matrix(0.270427,0.006490,-0.005998,0.249928,0,0);-ms-transform:matrix(0.270427,0.006490,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.270427,0.006490,-0.005998,0.249928,0,0);}
.m116_c00484{transform:matrix(0.270583,0.010834,-0.010002,0.249800,0,0);-ms-transform:matrix(0.270583,0.010834,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.270583,0.010834,-0.010002,0.249800,0,0);}
.m1f_c00484{transform:matrix(0.271052,0.006505,-0.005998,0.249928,0,0);-ms-transform:matrix(0.271052,0.006505,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.271052,0.006505,-0.005998,0.249928,0,0);}
.me8_c00484{transform:matrix(0.271813,0.008154,-0.007497,0.249888,0,0);-ms-transform:matrix(0.271813,0.008154,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.271813,0.008154,-0.007497,0.249888,0,0);}
.md1_c00484{transform:matrix(0.273179,0.011485,-0.010501,0.249779,0,0);-ms-transform:matrix(0.273179,0.011485,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.273179,0.011485,-0.010501,0.249779,0,0);}
.mf7_c00484{transform:matrix(0.273223,0.009846,-0.009003,0.249838,0,0);-ms-transform:matrix(0.273223,0.009846,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.273223,0.009846,-0.009003,0.249838,0,0);}
.m23_c00484{transform:matrix(0.274421,0.006586,-0.005998,0.249928,0,0);-ms-transform:matrix(0.274421,0.006586,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.274421,0.006586,-0.005998,0.249928,0,0);}
.m130_c00484{transform:matrix(0.274822,0.007695,-0.006997,0.249902,0,0);-ms-transform:matrix(0.274822,0.007695,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.274822,0.007695,-0.006997,0.249902,0,0);}
.m81_c00484{transform:matrix(0.274914,0.008806,-0.008004,0.249872,0,0);-ms-transform:matrix(0.274914,0.008806,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.274914,0.008806,-0.008004,0.249872,0,0);}
.m1e_c00484{transform:matrix(0.274951,0.006599,-0.005998,0.249928,0,0);-ms-transform:matrix(0.274951,0.006599,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.274951,0.006599,-0.005998,0.249928,0,0);}
.me_c00484{transform:matrix(0.275796,0.006619,-0.005998,0.249928,0,0);-ms-transform:matrix(0.275796,0.006619,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.275796,0.006619,-0.005998,0.249928,0,0);}
.m22_c00484{transform:matrix(0.275801,0.006619,-0.005998,0.249928,0,0);-ms-transform:matrix(0.275801,0.006619,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.275801,0.006619,-0.005998,0.249928,0,0);}
.mf3_c00484{transform:matrix(0.276506,0.009964,-0.009003,0.249838,0,0);-ms-transform:matrix(0.276506,0.009964,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.276506,0.009964,-0.009003,0.249838,0,0);}
.mc5_c00484{transform:matrix(0.276804,0.009144,-0.008254,0.249864,0,0);-ms-transform:matrix(0.276804,0.009144,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.276804,0.009144,-0.008254,0.249864,0,0);}
.mf4_c00484{transform:matrix(0.277175,0.009988,-0.009003,0.249838,0,0);-ms-transform:matrix(0.277175,0.009988,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.277175,0.009988,-0.009003,0.249838,0,0);}
.mda_c00484{transform:matrix(0.277225,0.011655,-0.010501,0.249779,0,0);-ms-transform:matrix(0.277225,0.011655,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.277225,0.011655,-0.010501,0.249779,0,0);}
.mef_c00484{transform:matrix(0.277450,0.008324,-0.007497,0.249888,0,0);-ms-transform:matrix(0.277450,0.008324,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.277450,0.008324,-0.007497,0.249888,0,0);}
.mf_c00484{transform:matrix(0.278205,0.006677,-0.005998,0.249928,0,0);-ms-transform:matrix(0.278205,0.006677,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.278205,0.006677,-0.005998,0.249928,0,0);}
.m12d_c00484{transform:matrix(0.279041,0.007813,-0.006997,0.249902,0,0);-ms-transform:matrix(0.279041,0.007813,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.279041,0.007813,-0.006997,0.249902,0,0);}
.mab_c00484{transform:matrix(0.279238,0.006981,-0.006248,0.249922,0,0);-ms-transform:matrix(0.279238,0.006981,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.279238,0.006981,-0.006248,0.249922,0,0);}
.m5_c00484{transform:matrix(0.280085,0.008683,-0.007746,0.249880,0,0);-ms-transform:matrix(0.280085,0.008683,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.280085,0.008683,-0.007746,0.249880,0,0);}
.m1a_c00484{transform:matrix(0.280089,0.006722,-0.005998,0.249928,0,0);-ms-transform:matrix(0.280089,0.006722,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.280089,0.006722,-0.005998,0.249928,0,0);}
.mf5_c00484{transform:matrix(0.280863,0.010121,-0.009003,0.249838,0,0);-ms-transform:matrix(0.280863,0.010121,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.280863,0.010121,-0.009003,0.249838,0,0);}
.mf1_c00484{transform:matrix(0.281187,0.010133,-0.009003,0.249838,0,0);-ms-transform:matrix(0.281187,0.010133,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.281187,0.010133,-0.009003,0.249838,0,0);}
.m12e_c00484{transform:matrix(0.282294,0.007904,-0.006997,0.249902,0,0);-ms-transform:matrix(0.282294,0.007904,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.282294,0.007904,-0.006997,0.249902,0,0);}
.m0_c00484{transform:matrix(0.282540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282540,0.000000,0.000000,0.250000,0,0);}
.m7f_c00484{transform:matrix(0.282700,0.009055,-0.008004,0.249872,0,0);-ms-transform:matrix(0.282700,0.009055,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.282700,0.009055,-0.008004,0.249872,0,0);}
.m89_c00484{transform:matrix(0.286288,0.009170,-0.008004,0.249872,0,0);-ms-transform:matrix(0.286288,0.009170,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.286288,0.009170,-0.008004,0.249872,0,0);}
.m88_c00484{transform:matrix(0.288272,0.009234,-0.008004,0.249872,0,0);-ms-transform:matrix(0.288272,0.009234,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.288272,0.009234,-0.008004,0.249872,0,0);}
.m50_c00484{transform:matrix(0.294570,0.007070,-0.005998,0.249928,0,0);-ms-transform:matrix(0.294570,0.007070,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.294570,0.007070,-0.005998,0.249928,0,0);}
.m8c_c00484{transform:matrix(0.296818,0.009508,-0.008004,0.249872,0,0);-ms-transform:matrix(0.296818,0.009508,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.296818,0.009508,-0.008004,0.249872,0,0);}
.mb2_c00484{transform:matrix(0.297024,0.011596,-0.009752,0.249810,0,0);-ms-transform:matrix(0.297024,0.011596,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.297024,0.011596,-0.009752,0.249810,0,0);}
.m4d_c00484{transform:matrix(0.297084,0.007130,-0.005998,0.249928,0,0);-ms-transform:matrix(0.297084,0.007130,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.297084,0.007130,-0.005998,0.249928,0,0);}
.m4e_c00484{transform:matrix(0.299774,0.007195,-0.005998,0.249928,0,0);-ms-transform:matrix(0.299774,0.007195,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.299774,0.007195,-0.005998,0.249928,0,0);}
.mae_c00484{transform:matrix(0.300936,0.011748,-0.009752,0.249810,0,0);-ms-transform:matrix(0.300936,0.011748,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.300936,0.011748,-0.009752,0.249810,0,0);}
.m90_c00484{transform:matrix(0.301081,0.009644,-0.008004,0.249872,0,0);-ms-transform:matrix(0.301081,0.009644,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.301081,0.009644,-0.008004,0.249872,0,0);}
.m4c_c00484{transform:matrix(0.303103,0.007274,-0.005998,0.249928,0,0);-ms-transform:matrix(0.303103,0.007274,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.303103,0.007274,-0.005998,0.249928,0,0);}
.m8d_c00484{transform:matrix(0.304274,0.009747,-0.008004,0.249872,0,0);-ms-transform:matrix(0.304274,0.009747,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.304274,0.009747,-0.008004,0.249872,0,0);}
.mb5_c00484{transform:matrix(0.304493,0.011887,-0.009752,0.249810,0,0);-ms-transform:matrix(0.304493,0.011887,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.304493,0.011887,-0.009752,0.249810,0,0);}
.m87_c00484{transform:matrix(0.304604,0.009757,-0.008004,0.249872,0,0);-ms-transform:matrix(0.304604,0.009757,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.304604,0.009757,-0.008004,0.249872,0,0);}
.md6_c00484{transform:matrix(0.305560,0.012846,-0.010501,0.249779,0,0);-ms-transform:matrix(0.305560,0.012846,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.305560,0.012846,-0.010501,0.249779,0,0);}
.m53_c00484{transform:matrix(0.308006,0.007392,-0.005998,0.249928,0,0);-ms-transform:matrix(0.308006,0.007392,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.308006,0.007392,-0.005998,0.249928,0,0);}
.m115_c00484{transform:matrix(0.338224,0.013543,-0.010002,0.249800,0,0);-ms-transform:matrix(0.338224,0.013543,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.338224,0.013543,-0.010002,0.249800,0,0);}
.m4a_c00484{transform:matrix(0.338882,0.008133,-0.005998,0.249928,0,0);-ms-transform:matrix(0.338882,0.008133,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.338882,0.008133,-0.005998,0.249928,0,0);}
.m91_c00484{transform:matrix(0.340595,0.010910,-0.008004,0.249872,0,0);-ms-transform:matrix(0.340595,0.010910,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.340595,0.010910,-0.008004,0.249872,0,0);}
.m9d_c00484{transform:matrix(0.363174,0.011633,-0.008004,0.249872,0,0);-ms-transform:matrix(0.363174,0.011633,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.363174,0.011633,-0.008004,0.249872,0,0);}
.m7e_c00484{transform:matrix(0.368566,0.011806,-0.008004,0.249872,0,0);-ms-transform:matrix(0.368566,0.011806,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.368566,0.011806,-0.008004,0.249872,0,0);}
.md5_c00484{transform:matrix(0.371022,0.015599,-0.010501,0.249779,0,0);-ms-transform:matrix(0.371022,0.015599,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.371022,0.015599,-0.010501,0.249779,0,0);}
.m12b_c00484{transform:matrix(0.381835,0.010691,-0.006997,0.249902,0,0);-ms-transform:matrix(0.381835,0.010691,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.381835,0.010691,-0.006997,0.249902,0,0);}
.m121_c00484{transform:matrix(0.409564,0.011468,-0.006997,0.249902,0,0);-ms-transform:matrix(0.409564,0.011468,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.409564,0.011468,-0.006997,0.249902,0,0);}
.m1_c00484{transform:matrix(0.411560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411560,0.000000,0.000000,0.250000,0,0);}
.m9e_c00484{transform:matrix(0.475711,0.011893,-0.006248,0.249922,0,0);-ms-transform:matrix(0.475711,0.011893,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.475711,0.011893,-0.006248,0.249922,0,0);}
.m9f_c00484{transform:matrix(0.563824,0.014096,-0.006248,0.249922,0,0);-ms-transform:matrix(0.563824,0.014096,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.563824,0.014096,-0.006248,0.249922,0,0);}
.m114_c00484{transform:matrix(0.851748,0.034104,-0.010002,0.249800,0,0);-ms-transform:matrix(0.851748,0.034104,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.851748,0.034104,-0.010002,0.249800,0,0);}
.v0_c00484{vertical-align:0.000000px;}
.ls0_c00484{letter-spacing:0.000000px;}
.sc__c00484{text-shadow:none;}
.sc0_c00484{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__c00484{-webkit-text-stroke:0px transparent;}
.sc0_c00484{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00484{word-spacing:0.000000px;}
.fc0_c00484{color:transparent;}
.fs19_c00484{font-size:42.016461px;}
.fsa_c00484{font-size:65.967817px;}
.fsd_c00484{font-size:65.984224px;}
.fs0_c00484{font-size:66.000000px;}
.fs5_c00484{font-size:66.019005px;}
.fs9_c00484{font-size:71.964891px;}
.fse_c00484{font-size:71.967233px;}
.fs13_c00484{font-size:71.974688px;}
.fs10_c00484{font-size:71.991540px;}
.fs2_c00484{font-size:72.020733px;}
.fsc_c00484{font-size:72.022496px;}
.fs18_c00484{font-size:72.028218px;}
.fs12_c00484{font-size:72.032393px;}
.fs1a_c00484{font-size:77.997543px;}
.fs7_c00484{font-size:78.000000px;}
.fs14_c00484{font-size:78.011894px;}
.fs17_c00484{font-size:78.030570px;}
.fs11_c00484{font-size:78.035092px;}
.fs8_c00484{font-size:83.959040px;}
.fs16_c00484{font-size:83.983240px;}
.fs6_c00484{font-size:84.024189px;}
.fsf_c00484{font-size:84.037791px;}
.fs1_c00484{font-size:84.040352px;}
.fs3_c00484{font-size:90.025916px;}
.fs15_c00484{font-size:95.980846px;}
.fs4_c00484{font-size:96.027644px;}
.fsb_c00484{font-size:120.037494px;}
.y0_c00484{bottom:0.000000px;}
.y134_c00484{bottom:46.483328px;}
.y12e_c00484{bottom:48.583854px;}
.y133_c00484{bottom:51.272147px;}
.y132_c00484{bottom:52.678376px;}
.y12d_c00484{bottom:57.643068px;}
.y12c_c00484{bottom:58.518360px;}
.y12b_c00484{bottom:62.092860px;}
.y12a_c00484{bottom:65.928936px;}
.y131_c00484{bottom:67.387584px;}
.y129_c00484{bottom:67.692276px;}
.y128_c00484{bottom:68.595120px;}
.y130_c00484{bottom:69.911028px;}
.y12f_c00484{bottom:70.752000px;}
.y127_c00484{bottom:76.325430px;}
.y126_c00484{bottom:77.522388px;}
.y125_c00484{bottom:79.103730px;}
.y124_c00484{bottom:80.632782px;}
.y123_c00484{bottom:81.547164px;}
.y122_c00484{bottom:83.091126px;}
.y121_c00484{bottom:84.006600px;}
.y120_c00484{bottom:86.146290px;}
.y11f_c00484{bottom:86.925516px;}
.y11e_c00484{bottom:88.299000px;}
.y11d_c00484{bottom:97.959175px;}
.y11c_c00484{bottom:100.813608px;}
.y11b_c00484{bottom:103.650216px;}
.y11a_c00484{bottom:105.409255px;}
.y119_c00484{bottom:107.503659px;}
.y118_c00484{bottom:108.634221px;}
.y117_c00484{bottom:109.718271px;}
.y116_c00484{bottom:112.148817px;}
.y115_c00484{bottom:113.847420px;}
.y114_c00484{bottom:116.380951px;}
.y113_c00484{bottom:117.357816px;}
.y112_c00484{bottom:118.058310px;}
.y111_c00484{bottom:119.906830px;}
.y110_c00484{bottom:136.340820px;}
.y10f_c00484{bottom:137.622420px;}
.y10e_c00484{bottom:139.447860px;}
.y10d_c00484{bottom:142.553640px;}
.y10c_c00484{bottom:144.300540px;}
.y10b_c00484{bottom:145.203540px;}
.y10a_c00484{bottom:149.187720px;}
.y109_c00484{bottom:150.522420px;}
.y108_c00484{bottom:151.418940px;}
.y107_c00484{bottom:154.882980px;}
.y106_c00484{bottom:156.211620px;}
.y105_c00484{bottom:159.654060px;}
.y104_c00484{bottom:161.000820px;}
.y103_c00484{bottom:162.282000px;}
.y102_c00484{bottom:173.841024px;}
.y101_c00484{bottom:174.911736px;}
.y100_c00484{bottom:176.995992px;}
.yff_c00484{bottom:178.051296px;}
.yfe_c00484{bottom:182.877528px;}
.yfd_c00484{bottom:187.659840px;}
.yfc_c00484{bottom:190.825248px;}
.yfb_c00484{bottom:195.581712px;}
.yfa_c00484{bottom:197.156136px;}
.yf9_c00484{bottom:199.259976px;}
.yf8_c00484{bottom:201.245520px;}
.yf7_c00484{bottom:203.853000px;}
.yf6_c00484{bottom:208.415412px;}
.yf5_c00484{bottom:209.173788px;}
.yf4_c00484{bottom:212.394294px;}
.yf3_c00484{bottom:213.593256px;}
.yf2_c00484{bottom:217.543734px;}
.yf1_c00484{bottom:221.184630px;}
.yf0_c00484{bottom:225.493398px;}
.yef_c00484{bottom:226.296864px;}
.yee_c00484{bottom:231.420870px;}
.yed_c00484{bottom:232.209000px;}
.yec_c00484{bottom:247.248225px;}
.yeb_c00484{bottom:249.580935px;}
.yea_c00484{bottom:250.889310px;}
.ye9_c00484{bottom:253.215900px;}
.ye8_c00484{bottom:255.906540px;}
.ye7_c00484{bottom:256.845735px;}
.ye6_c00484{bottom:257.534190px;}
.ye5_c00484{bottom:260.155125px;}
.ye4_c00484{bottom:262.471410px;}
.ye3_c00484{bottom:265.693500px;}
.ye2_c00484{bottom:283.222110px;}
.ye1_c00484{bottom:285.863970px;}
.ye0_c00484{bottom:286.902750px;}
.ydf_c00484{bottom:287.888790px;}
.yde_c00484{bottom:290.882640px;}
.ydd_c00484{bottom:292.892970px;}
.ydc_c00484{bottom:293.826495px;}
.ydb_c00484{bottom:296.460705px;}
.yda_c00484{bottom:297.797565px;}
.yd9_c00484{bottom:299.805960px;}
.yd8_c00484{bottom:302.412000px;}
.yd7_c00484{bottom:320.833311px;}
.yd6_c00484{bottom:322.242495px;}
.yd5_c00484{bottom:324.591639px;}
.yd4_c00484{bottom:328.296669px;}
.yd3_c00484{bottom:329.763120px;}
.yd2_c00484{bottom:333.822021px;}
.yd1_c00484{bottom:337.103061px;}
.yd0_c00484{bottom:339.857673px;}
.ycf_c00484{bottom:341.217780px;}
.yce_c00484{bottom:345.340500px;}
.ycd_c00484{bottom:352.678545px;}
.ycc_c00484{bottom:355.004370px;}
.ycb_c00484{bottom:356.999220px;}
.yca_c00484{bottom:359.277210px;}
.yc9_c00484{bottom:361.271835px;}
.yc8_c00484{bottom:362.274345px;}
.yc7_c00484{bottom:362.971125px;}
.yc6_c00484{bottom:364.568310px;}
.yc5_c00484{bottom:367.228305px;}
.yc4_c00484{bottom:370.492605px;}
.yc3_c00484{bottom:371.803500px;}
.yc2_c00484{bottom:390.765054px;}
.yc1_c00484{bottom:391.880240px;}
.yc0_c00484{bottom:392.974090px;}
.ybf_c00484{bottom:395.953991px;}
.ybe_c00484{bottom:396.997351px;}
.ybd_c00484{bottom:398.114913px;}
.ybc_c00484{bottom:400.269054px;}
.ybb_c00484{bottom:401.752916px;}
.yba_c00484{bottom:402.818898px;}
.yb9_c00484{bottom:404.650645px;}
.yb8_c00484{bottom:405.765831px;}
.yb7_c00484{bottom:408.631831px;}
.yb6_c00484{bottom:409.690686px;}
.yb5_c00484{bottom:410.412000px;}
.yb4_c00484{bottom:423.265785px;}
.yb3_c00484{bottom:425.002299px;}
.yb2_c00484{bottom:429.717516px;}
.yb1_c00484{bottom:431.046168px;}
.yb0_c00484{bottom:432.338316px;}
.yaf_c00484{bottom:435.809062px;}
.yae_c00484{bottom:437.100391px;}
.yad_c00484{bottom:438.807421px;}
.yac_c00484{bottom:439.660936px;}
.yab_c00484{bottom:443.943546px;}
.yaa_c00484{bottom:445.249500px;}
.ya9_c00484{bottom:479.271412px;}
.ya8_c00484{bottom:479.271862px;}
.ya7_c00484{bottom:479.272275px;}
.ya6_c00484{bottom:479.272912px;}
.ya5_c00484{bottom:486.388425px;}
.ya4_c00484{bottom:487.532512px;}
.ya3_c00484{bottom:490.593187px;}
.ya2_c00484{bottom:492.802125px;}
.ya1_c00484{bottom:494.477962px;}
.ya0_c00484{bottom:495.299512px;}
.y9f_c00484{bottom:498.034612px;}
.y9e_c00484{bottom:499.723762px;}
.y9d_c00484{bottom:501.060337px;}
.y9c_c00484{bottom:503.019262px;}
.y9b_c00484{bottom:504.645000px;}
.y9a_c00484{bottom:533.355881px;}
.y99_c00484{bottom:535.609682px;}
.y98_c00484{bottom:537.389707px;}
.y97_c00484{bottom:538.585380px;}
.y96_c00484{bottom:540.665258px;}
.y95_c00484{bottom:543.071499px;}
.y94_c00484{bottom:543.983416px;}
.y93_c00484{bottom:544.580528px;}
.y92_c00484{bottom:546.036360px;}
.y91_c00484{bottom:546.928245px;}
.y90_c00484{bottom:547.813709px;}
.y8f_c00484{bottom:550.192536px;}
.y8e_c00484{bottom:551.423436px;}
.y8d_c00484{bottom:569.634615px;}
.y8c_c00484{bottom:570.537312px;}
.y8b_c00484{bottom:571.790974px;}
.y8a_c00484{bottom:574.888533px;}
.y89_c00484{bottom:577.370103px;}
.y88_c00484{bottom:578.630907px;}
.y87_c00484{bottom:579.541033px;}
.y86_c00484{bottom:582.006641px;}
.y85_c00484{bottom:584.134663px;}
.y84_c00484{bottom:588.126289px;}
.y83_c00484{bottom:606.474406px;}
.y82_c00484{bottom:607.675872px;}
.y81_c00484{bottom:609.089402px;}
.y80_c00484{bottom:610.845814px;}
.y7f_c00484{bottom:611.689921px;}
.y7e_c00484{bottom:614.268740px;}
.y7d_c00484{bottom:615.147642px;}
.y7c_c00484{bottom:616.028838px;}
.y7b_c00484{bottom:618.856233px;}
.y7a_c00484{bottom:620.021714px;}
.y79_c00484{bottom:621.418944px;}
.y78_c00484{bottom:622.303644px;}
.y77_c00484{bottom:624.283044px;}
.y76_c00484{bottom:641.709417px;}
.y75_c00484{bottom:643.436832px;}
.y74_c00484{bottom:644.286736px;}
.y73_c00484{bottom:646.317076px;}
.y72_c00484{bottom:646.884723px;}
.y71_c00484{bottom:650.597634px;}
.y70_c00484{bottom:651.765130px;}
.y6f_c00484{bottom:654.594867px;}
.y6e_c00484{bottom:656.049661px;}
.y6d_c00484{bottom:656.881837px;}
.y6c_c00484{bottom:657.477656px;}
.y6b_c00484{bottom:676.582512px;}
.y6a_c00484{bottom:677.634096px;}
.y69_c00484{bottom:680.149824px;}
.y68_c00484{bottom:681.168000px;}
.y67_c00484{bottom:681.918384px;}
.y66_c00484{bottom:685.060896px;}
.y65_c00484{bottom:686.142000px;}
.y64_c00484{bottom:687.908064px;}
.y63_c00484{bottom:690.395376px;}
.y62_c00484{bottom:693.912000px;}
.y61_c00484{bottom:727.002000px;}
.y60_c00484{bottom:748.409844px;}
.y5f_c00484{bottom:749.144676px;}
.y5e_c00484{bottom:750.602328px;}
.y5d_c00484{bottom:752.070720px;}
.y5c_c00484{bottom:752.805264px;}
.y5b_c00484{bottom:754.261188px;}
.y5a_c00484{bottom:755.706420px;}
.y59_c00484{bottom:756.425148px;}
.y58_c00484{bottom:757.149816px;}
.y57_c00484{bottom:758.860740px;}
.y56_c00484{bottom:759.579216px;}
.y55_c00484{bottom:761.485716px;}
.y54_c00484{bottom:762.683592px;}
.y53_c00484{bottom:786.057492px;}
.y52_c00484{bottom:786.732576px;}
.y51_c00484{bottom:787.231236px;}
.y50_c00484{bottom:789.059460px;}
.y4f_c00484{bottom:789.767556px;}
.y4e_c00484{bottom:792.536640px;}
.y4d_c00484{bottom:794.181132px;}
.y4c_c00484{bottom:796.471872px;}
.y4b_c00484{bottom:796.940196px;}
.y4a_c00484{bottom:798.063816px;}
.y49_c00484{bottom:821.398116px;}
.y48_c00484{bottom:822.161748px;}
.y47_c00484{bottom:822.954108px;}
.y46_c00484{bottom:824.588148px;}
.y45_c00484{bottom:826.947264px;}
.y44_c00484{bottom:827.745456px;}
.y43_c00484{bottom:829.588188px;}
.y42_c00484{bottom:830.660448px;}
.y41_c00484{bottom:833.585196px;}
.y40_c00484{bottom:835.133016px;}
.y3f_c00484{bottom:835.668840px;}
.y3e_c00484{bottom:836.413968px;}
.y3d_c00484{bottom:859.028532px;}
.y3c_c00484{bottom:861.031728px;}
.y3b_c00484{bottom:862.617576px;}
.y3a_c00484{bottom:863.201316px;}
.y39_c00484{bottom:864.406896px;}
.y38_c00484{bottom:866.385048px;}
.y37_c00484{bottom:866.959296px;}
.y36_c00484{bottom:867.951216px;}
.y35_c00484{bottom:869.142168px;}
.y34_c00484{bottom:869.904444px;}
.y33_c00484{bottom:892.021176px;}
.y32_c00484{bottom:893.035284px;}
.y31_c00484{bottom:895.072836px;}
.y30_c00484{bottom:896.095992px;}
.y2f_c00484{bottom:896.855280px;}
.y2e_c00484{bottom:897.617916px;}
.y2d_c00484{bottom:899.900172px;}
.y2c_c00484{bottom:900.650748px;}
.y2b_c00484{bottom:903.427740px;}
.y2a_c00484{bottom:904.185696px;}
.y29_c00484{bottom:904.694556px;}
.y28_c00484{bottom:905.436996px;}
.y27_c00484{bottom:907.177260px;}
.y26_c00484{bottom:927.776436px;}
.y25_c00484{bottom:928.367148px;}
.y24_c00484{bottom:929.544456px;}
.y23_c00484{bottom:931.177560px;}
.y22_c00484{bottom:933.151908px;}
.y21_c00484{bottom:933.740496px;}
.y20_c00484{bottom:934.737396px;}
.y1f_c00484{bottom:936.502392px;}
.y1e_c00484{bottom:939.258372px;}
.y1d_c00484{bottom:939.855180px;}
.y1c_c00484{bottom:962.919444px;}
.y1b_c00484{bottom:963.925584px;}
.y1a_c00484{bottom:965.749524px;}
.y19_c00484{bottom:966.328044px;}
.y18_c00484{bottom:967.523088px;}
.y17_c00484{bottom:969.673440px;}
.y16_c00484{bottom:970.883064px;}
.y15_c00484{bottom:972.088176px;}
.y14_c00484{bottom:972.646296px;}
.y13_c00484{bottom:973.239648px;}
.y12_c00484{bottom:973.650936px;}
.y11_c00484{bottom:974.422968px;}
.y10_c00484{bottom:998.463468px;}
.yf_c00484{bottom:1001.108424px;}
.ye_c00484{bottom:1003.487304px;}
.yd_c00484{bottom:1004.537532px;}
.yc_c00484{bottom:1006.164624px;}
.yb_c00484{bottom:1007.208552px;}
.ya_c00484{bottom:1007.989500px;}
.y9_c00484{bottom:1009.591716px;}
.y8_c00484{bottom:1010.371260px;}
.y7_c00484{bottom:1011.427500px;}
.y6_c00484{bottom:1078.607056px;}
.y5_c00484{bottom:1079.286329px;}
.y4_c00484{bottom:1081.349719px;}
.y3_c00484{bottom:1114.418883px;}
.y2_c00484{bottom:1116.462000px;}
.y1_c00484{bottom:1187.872500px;}
.h1b_c00484{height:42.016461px;}
.hc_c00484{height:65.967817px;}
.hf_c00484{height:65.984224px;}
.h2_c00484{height:66.000000px;}
.h7_c00484{height:66.019005px;}
.hb_c00484{height:71.964891px;}
.h10_c00484{height:71.967233px;}
.h15_c00484{height:71.974688px;}
.h12_c00484{height:71.991540px;}
.h4_c00484{height:72.020733px;}
.he_c00484{height:72.022496px;}
.h1a_c00484{height:72.028218px;}
.h14_c00484{height:72.032393px;}
.h1c_c00484{height:77.997543px;}
.h9_c00484{height:78.000000px;}
.h16_c00484{height:78.011894px;}
.h19_c00484{height:78.030570px;}
.h13_c00484{height:78.035092px;}
.ha_c00484{height:83.959040px;}
.h18_c00484{height:83.983240px;}
.h8_c00484{height:84.024189px;}
.h11_c00484{height:84.037791px;}
.h3_c00484{height:84.040352px;}
.h5_c00484{height:90.025916px;}
.h17_c00484{height:95.980846px;}
.h6_c00484{height:96.027644px;}
.hd_c00484{height:120.037494px;}
.h0_c00484{height:1246.320000px;}
.h1_c00484{height:1246.500000px;}
.w0_c00484{width:896.100000px;}
.w1_c00484{width:896.250000px;}
.x0_c00484{left:0.000000px;}
.x7a_c00484{left:134.434811px;}
.xca_c00484{left:139.290201px;}
.xac_c00484{left:143.235000px;}
.xa3_c00484{left:145.093500px;}
.x86_c00484{left:146.272500px;}
.x5f_c00484{left:148.575212px;}
.x53_c00484{left:150.120000px;}
.x3f_c00484{left:151.963728px;}
.x2f_c00484{left:153.953556px;}
.x13_c00484{left:155.022672px;}
.xb7_c00484{left:164.187607px;}
.x99_c00484{left:167.271642px;}
.x60_c00484{left:171.484200px;}
.xd6_c00484{left:173.490714px;}
.xc1_c00484{left:174.806471px;}
.x7b_c00484{left:179.980023px;}
.x36_c00484{left:184.445928px;}
.x1f_c00484{left:187.889628px;}
.x90_c00484{left:189.551100px;}
.x30_c00484{left:196.283640px;}
.x14_c00484{left:197.946864px;}
.x9a_c00484{left:199.326055px;}
.x61_c00484{left:203.457845px;}
.x40_c00484{left:205.472580px;}
.x37_c00484{left:206.771928px;}
.xc2_c00484{left:208.441802px;}
.x87_c00484{left:211.302000px;}
.x54_c00484{left:216.270000px;}
.xcb_c00484{left:218.808009px;}
.x15_c00484{left:220.837176px;}
.xd2_c00484{left:222.862500px;}
.x67_c00484{left:224.895455px;}
.x41_c00484{left:227.800200px;}
.x25_c00484{left:230.326812px;}
.xbc_c00484{left:239.694312px;}
.xa9_c00484{left:242.544840px;}
.xcc_c00484{left:249.315261px;}
.xd3_c00484{left:250.692000px;}
.xb2_c00484{left:251.947500px;}
.x16_c00484{left:253.814928px;}
.x57_c00484{left:258.532500px;}
.x26_c00484{left:262.637604px;}
.x9_c00484{left:263.992500px;}
.x7c_c00484{left:267.965028px;}
.x38_c00484{left:271.264428px;}
.xaa_c00484{left:274.895957px;}
.x55_c00484{left:281.610000px;}
.xbd_c00484{left:283.480482px;}
.x17_c00484{left:284.824392px;}
.x9b_c00484{left:286.087707px;}
.x92_c00484{left:287.818014px;}
.x88_c00484{left:289.659000px;}
.x71_c00484{left:290.847506px;}
.x48_c00484{left:292.834224px;}
.xc3_c00484{left:294.416741px;}
.xa4_c00484{left:297.600000px;}
.x7d_c00484{left:300.712485px;}
.xb8_c00484{left:306.378774px;}
.xa_c00484{left:308.002500px;}
.x68_c00484{left:312.571556px;}
.x56_c00484{left:314.820000px;}
.xbe_c00484{left:316.248181px;}
.x27_c00484{left:317.735436px;}
.x9c_c00484{left:319.847414px;}
.x91_c00484{left:321.891750px;}
.x49_c00484{left:325.522308px;}
.xc4_c00484{left:327.599525px;}
.xb3_c00484{left:329.157000px;}
.x7e_c00484{left:333.707243px;}
.x42_c00484{left:336.880548px;}
.xb_c00484{left:340.483500px;}
.xad_c00484{left:341.611500px;}
.x89_c00484{left:343.122000px;}
.x31_c00484{left:349.373136px;}
.x18_c00484{left:351.797040px;}
.x69_c00484{left:357.338844px;}
.xd4_c00484{left:359.805000px;}
.x72_c00484{left:366.741242px;}
.x58_c00484{left:368.317106px;}
.x9d_c00484{left:375.299406px;}
.xcd_c00484{left:381.364802px;}
.x6_c00484{left:385.517252px;}
.x7f_c00484{left:387.538958px;}
.x39_c00484{left:393.128928px;}
.x4_c00484{left:397.300500px;}
.x4a_c00484{left:403.314552px;}
.xc_c00484{left:407.242500px;}
.x80_c00484{left:409.645385px;}
.x8a_c00484{left:410.688000px;}
.x62_c00484{left:412.859450px;}
.xc5_c00484{left:414.113924px;}
.x43_c00484{left:415.219200px;}
.xb4_c00484{left:416.521500px;}
.x19_c00484{left:419.020224px;}
.xae_c00484{left:429.418500px;}
.x4b_c00484{left:436.260636px;}
.x28_c00484{left:438.446316px;}
.xd_c00484{left:439.782000px;}
.x81_c00484{left:443.406020px;}
.x59_c00484{left:445.967877px;}
.xb9_c00484{left:448.243268px;}
.x1_c00484{left:449.550000px;}
.x7_c00484{left:452.078252px;}
.x73_c00484{left:454.672466px;}
.xce_c00484{left:457.211643px;}
.x32_c00484{left:459.311976px;}
.xaf_c00484{left:460.536000px;}
.x5_c00484{left:463.207500px;}
.x6a_c00484{left:465.930497px;}
.x4c_c00484{left:468.959220px;}
.x29_c00484{left:471.096108px;}
.x8_c00484{left:473.990252px;}
.x2_c00484{left:476.280000px;}
.xbf_c00484{left:481.122142px;}
.xe_c00484{left:483.279000px;}
.x74_c00484{left:487.159626px;}
.xcf_c00484{left:491.033099px;}
.x20_c00484{left:494.407728px;}
.x93_c00484{left:496.185938px;}
.x6b_c00484{left:499.809119px;}
.x5a_c00484{left:501.102188px;}
.xd5_c00484{left:502.212000px;}
.x3_c00484{left:508.680000px;}
.xd7_c00484{left:513.247206px;}
.x3a_c00484{left:514.586928px;}
.x9e_c00484{left:517.701861px;}
.x8b_c00484{left:520.092000px;}
.x21_c00484{left:527.124444px;}
.x75_c00484{left:532.139867px;}
.x6c_c00484{left:533.569311px;}
.x4d_c00484{left:534.680388px;}
.x1a_c00484{left:538.447896px;}
.xd8_c00484{left:545.687130px;}
.x3b_c00484{left:547.844928px;}
.xab_c00484{left:549.882695px;}
.xf_c00484{left:551.074500px;}
.x8c_c00484{left:552.954000px;}
.x63_c00484{left:555.464589px;}
.x33_c00484{left:558.693768px;}
.xb5_c00484{left:560.464500px;}
.xa5_c00484{left:562.636500px;}
.x2a_c00484{left:570.317484px;}
.x64_c00484{left:577.259952px;}
.x44_c00484{left:580.801116px;}
.x9f_c00484{left:583.118878px;}
.x94_c00484{left:585.090444px;}
.xc6_c00484{left:591.895964px;}
.x10_c00484{left:594.834000px;}
.x4e_c00484{left:600.847056px;}
.x2b_c00484{left:603.469776px;}
.x1b_c00484{left:604.875972px;}
.x82_c00484{left:609.400478px;}
.x95_c00484{left:618.189312px;}
.x76_c00484{left:620.663094px;}
.xd9_c00484{left:623.873214px;}
.xb0_c00484{left:627.342000px;}
.x5b_c00484{left:632.958200px;}
.x4f_c00484{left:634.267176px;}
.xc7_c00484{left:635.524791px;}
.x1c_c00484{left:637.048116px;}
.xa6_c00484{left:638.569500px;}
.x34_c00484{left:646.783440px;}
.x96_c00484{left:652.223244px;}
.x83_c00484{left:653.611785px;}
.x65_c00484{left:655.255370px;}
.x5c_c00484{left:656.384250px;}
.xba_c00484{left:658.903896px;}
.xb1_c00484{left:660.210000px;}
.x6d_c00484{left:665.060961px;}
.x45_c00484{left:667.858380px;}
.xa0_c00484{left:673.328578px;}
.x2c_c00484{left:680.990148px;}
.x5d_c00484{left:688.170432px;}
.x46_c00484{left:691.575072px;}
.x11_c00484{left:693.954000px;}
.x50_c00484{left:701.015880px;}
.xc0_c00484{left:703.063479px;}
.xa7_c00484{left:705.064500px;}
.xa1_c00484{left:706.442431px;}
.x8d_c00484{left:708.345000px;}
.xc8_c00484{left:713.091647px;}
.x3c_c00484{left:714.226428px;}
.x84_c00484{left:719.484417px;}
.x47_c00484{left:723.705876px;}
.x22_c00484{left:727.526280px;}
.x77_c00484{left:731.179641px;}
.x6e_c00484{left:732.537890px;}
.xd0_c00484{left:735.158427px;}
.x1d_c00484{left:738.372696px;}
.xa2_c00484{left:740.202138px;}
.x3d_c00484{left:747.241428px;}
.x66_c00484{left:754.307294px;}
.x35_c00484{left:758.078460px;}
.xb6_c00484{left:759.387000px;}
.x51_c00484{left:767.254548px;}
.x2d_c00484{left:769.577772px;}
.x97_c00484{left:773.005341px;}
.x78_c00484{left:775.890104px;}
.x3e_c00484{left:779.059428px;}
.xbb_c00484{left:781.544133px;}
.xa8_c00484{left:782.592000px;}
.x6f_c00484{left:786.828471px;}
.xc9_c00484{left:790.689971px;}
.x23_c00484{left:792.902676px;}
.x1e_c00484{left:794.240724px;}
.x5e_c00484{left:799.537454px;}
.x52_c00484{left:800.686668px;}
.x85_c00484{left:802.863812px;}
.x12_c00484{left:804.160500px;}
.x79_c00484{left:808.098495px;}
.x2e_c00484{left:813.645816px;}
.x98_c00484{left:817.486815px;}
.xd1_c00484{left:824.253272px;}
.x24_c00484{left:825.707892px;}
.x8e_c00484{left:830.772000px;}
.x70_c00484{left:833.000142px;}
.x8f_c00484{left:876.535500px;}
@media print{
.v0_c00484{vertical-align:0.000000pt;}
.ls0_c00484{letter-spacing:0.000000pt;}
.ws0_c00484{word-spacing:0.000000pt;}
.fs19_c00484{font-size:37.347965pt;}
.fsa_c00484{font-size:58.638060pt;}
.fsd_c00484{font-size:58.652644pt;}
.fs0_c00484{font-size:58.666667pt;}
.fs5_c00484{font-size:58.683560pt;}
.fs9_c00484{font-size:63.968792pt;}
.fse_c00484{font-size:63.970873pt;}
.fs13_c00484{font-size:63.977500pt;}
.fs10_c00484{font-size:63.992480pt;}
.fs2_c00484{font-size:64.018429pt;}
.fsc_c00484{font-size:64.019997pt;}
.fs18_c00484{font-size:64.025083pt;}
.fs12_c00484{font-size:64.028794pt;}
.fs1a_c00484{font-size:69.331149pt;}
.fs7_c00484{font-size:69.333333pt;}
.fs14_c00484{font-size:69.343906pt;}
.fs17_c00484{font-size:69.360507pt;}
.fs11_c00484{font-size:69.364526pt;}
.fs8_c00484{font-size:74.630258pt;}
.fs16_c00484{font-size:74.651769pt;}
.fs6_c00484{font-size:74.688168pt;}
.fsf_c00484{font-size:74.700259pt;}
.fs1_c00484{font-size:74.702535pt;}
.fs3_c00484{font-size:80.023037pt;}
.fs15_c00484{font-size:85.316308pt;}
.fs4_c00484{font-size:85.357906pt;}
.fsb_c00484{font-size:106.699995pt;}
.y0_c00484{bottom:0.000000pt;}
.y134_c00484{bottom:41.318513pt;}
.y12e_c00484{bottom:43.185648pt;}
.y133_c00484{bottom:45.575241pt;}
.y132_c00484{bottom:46.825223pt;}
.y12d_c00484{bottom:51.238283pt;}
.y12c_c00484{bottom:52.016320pt;}
.y12b_c00484{bottom:55.193653pt;}
.y12a_c00484{bottom:58.603499pt;}
.y131_c00484{bottom:59.900075pt;}
.y129_c00484{bottom:60.170912pt;}
.y128_c00484{bottom:60.973440pt;}
.y130_c00484{bottom:62.143136pt;}
.y12f_c00484{bottom:62.890667pt;}
.y127_c00484{bottom:67.844827pt;}
.y126_c00484{bottom:68.908789pt;}
.y125_c00484{bottom:70.314427pt;}
.y124_c00484{bottom:71.673584pt;}
.y123_c00484{bottom:72.486368pt;}
.y122_c00484{bottom:73.858779pt;}
.y121_c00484{bottom:74.672533pt;}
.y120_c00484{bottom:76.574480pt;}
.y11f_c00484{bottom:77.267125pt;}
.y11e_c00484{bottom:78.488000pt;}
.y11d_c00484{bottom:87.074823pt;}
.y11c_c00484{bottom:89.612096pt;}
.y11b_c00484{bottom:92.133525pt;}
.y11a_c00484{bottom:93.697116pt;}
.y119_c00484{bottom:95.558808pt;}
.y118_c00484{bottom:96.563752pt;}
.y117_c00484{bottom:97.527352pt;}
.y116_c00484{bottom:99.687837pt;}
.y115_c00484{bottom:101.197707pt;}
.y114_c00484{bottom:103.449735pt;}
.y113_c00484{bottom:104.318059pt;}
.y112_c00484{bottom:104.940720pt;}
.y111_c00484{bottom:106.583849pt;}
.y110_c00484{bottom:121.191840pt;}
.y10f_c00484{bottom:122.331040pt;}
.y10e_c00484{bottom:123.953653pt;}
.y10d_c00484{bottom:126.714347pt;}
.y10c_c00484{bottom:128.267147pt;}
.y10b_c00484{bottom:129.069813pt;}
.y10a_c00484{bottom:132.611307pt;}
.y109_c00484{bottom:133.797707pt;}
.y108_c00484{bottom:134.594613pt;}
.y107_c00484{bottom:137.673760pt;}
.y106_c00484{bottom:138.854773pt;}
.y105_c00484{bottom:141.914720pt;}
.y104_c00484{bottom:143.111840pt;}
.y103_c00484{bottom:144.250667pt;}
.y102_c00484{bottom:154.525355pt;}
.y101_c00484{bottom:155.477099pt;}
.y100_c00484{bottom:157.329771pt;}
.yff_c00484{bottom:158.267819pt;}
.yfe_c00484{bottom:162.557803pt;}
.yfd_c00484{bottom:166.808747pt;}
.yfc_c00484{bottom:169.622443pt;}
.yfb_c00484{bottom:173.850411pt;}
.yfa_c00484{bottom:175.249899pt;}
.yf9_c00484{bottom:177.119979pt;}
.yf8_c00484{bottom:178.884907pt;}
.yf7_c00484{bottom:181.202667pt;}
.yf6_c00484{bottom:185.258144pt;}
.yf5_c00484{bottom:185.932256pt;}
.yf4_c00484{bottom:188.794928pt;}
.yf3_c00484{bottom:189.860672pt;}
.yf2_c00484{bottom:193.372208pt;}
.yf1_c00484{bottom:196.608560pt;}
.yf0_c00484{bottom:200.438576pt;}
.yef_c00484{bottom:201.152768pt;}
.yee_c00484{bottom:205.707440pt;}
.yed_c00484{bottom:206.408000pt;}
.yec_c00484{bottom:219.776200pt;}
.yeb_c00484{bottom:221.849720pt;}
.yea_c00484{bottom:223.012720pt;}
.ye9_c00484{bottom:225.080800pt;}
.ye8_c00484{bottom:227.472480pt;}
.ye7_c00484{bottom:228.307320pt;}
.ye6_c00484{bottom:228.919280pt;}
.ye5_c00484{bottom:231.249000pt;}
.ye4_c00484{bottom:233.307920pt;}
.ye3_c00484{bottom:236.172000pt;}
.ye2_c00484{bottom:251.752987pt;}
.ye1_c00484{bottom:254.101307pt;}
.ye0_c00484{bottom:255.024667pt;}
.ydf_c00484{bottom:255.901147pt;}
.yde_c00484{bottom:258.562347pt;}
.ydd_c00484{bottom:260.349307pt;}
.ydc_c00484{bottom:261.179107pt;}
.ydb_c00484{bottom:263.520627pt;}
.yda_c00484{bottom:264.708947pt;}
.yd9_c00484{bottom:266.494187pt;}
.yd8_c00484{bottom:268.810667pt;}
.yd7_c00484{bottom:285.185165pt;}
.yd6_c00484{bottom:286.437773pt;}
.yd5_c00484{bottom:288.525901pt;}
.yd4_c00484{bottom:291.819261pt;}
.yd3_c00484{bottom:293.122773pt;}
.yd2_c00484{bottom:296.730685pt;}
.yd1_c00484{bottom:299.647165pt;}
.yd0_c00484{bottom:302.095709pt;}
.ycf_c00484{bottom:303.304693pt;}
.yce_c00484{bottom:306.969333pt;}
.ycd_c00484{bottom:313.492040pt;}
.ycc_c00484{bottom:315.559440pt;}
.ycb_c00484{bottom:317.332640pt;}
.yca_c00484{bottom:319.357520pt;}
.yc9_c00484{bottom:321.130520pt;}
.yc8_c00484{bottom:322.021640pt;}
.yc7_c00484{bottom:322.641000pt;}
.yc6_c00484{bottom:324.060720pt;}
.yc5_c00484{bottom:326.425160pt;}
.yc4_c00484{bottom:329.326760pt;}
.yc3_c00484{bottom:330.492000pt;}
.yc2_c00484{bottom:347.346715pt;}
.yc1_c00484{bottom:348.337991pt;}
.yc0_c00484{bottom:349.310303pt;}
.ybf_c00484{bottom:351.959103pt;}
.ybe_c00484{bottom:352.886535pt;}
.ybd_c00484{bottom:353.879923pt;}
.ybc_c00484{bottom:355.794715pt;}
.ybb_c00484{bottom:357.113703pt;}
.yba_c00484{bottom:358.061243pt;}
.yb9_c00484{bottom:359.689463pt;}
.yb8_c00484{bottom:360.680739pt;}
.yb7_c00484{bottom:363.228295pt;}
.yb6_c00484{bottom:364.169499pt;}
.yb5_c00484{bottom:364.810667pt;}
.yb4_c00484{bottom:376.236253pt;}
.yb3_c00484{bottom:377.779821pt;}
.yb2_c00484{bottom:381.971125pt;}
.yb1_c00484{bottom:383.152149pt;}
.yb0_c00484{bottom:384.300725pt;}
.yaf_c00484{bottom:387.385833pt;}
.yae_c00484{bottom:388.533681pt;}
.yad_c00484{bottom:390.051041pt;}
.yac_c00484{bottom:390.809721pt;}
.yab_c00484{bottom:394.616485pt;}
.yaa_c00484{bottom:395.777333pt;}
.ya9_c00484{bottom:426.019033pt;}
.ya8_c00484{bottom:426.019433pt;}
.ya7_c00484{bottom:426.019800pt;}
.ya6_c00484{bottom:426.020367pt;}
.ya5_c00484{bottom:432.345267pt;}
.ya4_c00484{bottom:433.362233pt;}
.ya3_c00484{bottom:436.082833pt;}
.ya2_c00484{bottom:438.046333pt;}
.ya1_c00484{bottom:439.535967pt;}
.ya0_c00484{bottom:440.266233pt;}
.y9f_c00484{bottom:442.697433pt;}
.y9e_c00484{bottom:444.198900pt;}
.y9d_c00484{bottom:445.386967pt;}
.y9c_c00484{bottom:447.128233pt;}
.y9b_c00484{bottom:448.573333pt;}
.y9a_c00484{bottom:474.094116pt;}
.y99_c00484{bottom:476.097495pt;}
.y98_c00484{bottom:477.679740pt;}
.y97_c00484{bottom:478.742560pt;}
.y96_c00484{bottom:480.591340pt;}
.y95_c00484{bottom:482.730221pt;}
.y94_c00484{bottom:483.540815pt;}
.y93_c00484{bottom:484.071580pt;}
.y92_c00484{bottom:485.365653pt;}
.y91_c00484{bottom:486.158440pt;}
.y90_c00484{bottom:486.945519pt;}
.y8f_c00484{bottom:489.060032pt;}
.y8e_c00484{bottom:490.154165pt;}
.y8d_c00484{bottom:506.341880pt;}
.y8c_c00484{bottom:507.144277pt;}
.y8b_c00484{bottom:508.258644pt;}
.y8a_c00484{bottom:511.012029pt;}
.y89_c00484{bottom:513.217869pt;}
.y88_c00484{bottom:514.338584pt;}
.y87_c00484{bottom:515.147585pt;}
.y86_c00484{bottom:517.339236pt;}
.y85_c00484{bottom:519.230812pt;}
.y84_c00484{bottom:522.778924pt;}
.y83_c00484{bottom:539.088361pt;}
.y82_c00484{bottom:540.156331pt;}
.y81_c00484{bottom:541.412801pt;}
.y80_c00484{bottom:542.974057pt;}
.y7f_c00484{bottom:543.724375pt;}
.y7e_c00484{bottom:546.016657pt;}
.y7d_c00484{bottom:546.797904pt;}
.y7c_c00484{bottom:547.581189pt;}
.y7b_c00484{bottom:550.094429pt;}
.y7a_c00484{bottom:551.130412pt;}
.y79_c00484{bottom:552.372395pt;}
.y78_c00484{bottom:553.158795pt;}
.y77_c00484{bottom:554.918261pt;}
.y76_c00484{bottom:570.408371pt;}
.y75_c00484{bottom:571.943851pt;}
.y74_c00484{bottom:572.699321pt;}
.y73_c00484{bottom:574.504068pt;}
.y72_c00484{bottom:575.008643pt;}
.y71_c00484{bottom:578.309008pt;}
.y70_c00484{bottom:579.346783pt;}
.y6f_c00484{bottom:581.862104pt;}
.y6e_c00484{bottom:583.155255pt;}
.y6d_c00484{bottom:583.894967pt;}
.y6c_c00484{bottom:584.424583pt;}
.y6b_c00484{bottom:601.406677pt;}
.y6a_c00484{bottom:602.341419pt;}
.y69_c00484{bottom:604.577621pt;}
.y68_c00484{bottom:605.482667pt;}
.y67_c00484{bottom:606.149675pt;}
.y66_c00484{bottom:608.943019pt;}
.y65_c00484{bottom:609.904000pt;}
.y64_c00484{bottom:611.473835pt;}
.y63_c00484{bottom:613.684779pt;}
.y62_c00484{bottom:616.810667pt;}
.y61_c00484{bottom:646.224000pt;}
.y60_c00484{bottom:665.253195pt;}
.y5f_c00484{bottom:665.906379pt;}
.y5e_c00484{bottom:667.202069pt;}
.y5d_c00484{bottom:668.507307pt;}
.y5c_c00484{bottom:669.160235pt;}
.y5b_c00484{bottom:670.454389pt;}
.y5a_c00484{bottom:671.739040pt;}
.y59_c00484{bottom:672.377909pt;}
.y58_c00484{bottom:673.022059pt;}
.y57_c00484{bottom:674.542880pt;}
.y56_c00484{bottom:675.181525pt;}
.y55_c00484{bottom:676.876192pt;}
.y54_c00484{bottom:677.940971pt;}
.y53_c00484{bottom:698.717771pt;}
.y52_c00484{bottom:699.317845pt;}
.y51_c00484{bottom:699.761099pt;}
.y50_c00484{bottom:701.386187pt;}
.y4f_c00484{bottom:702.015605pt;}
.y4e_c00484{bottom:704.477013pt;}
.y4d_c00484{bottom:705.938784pt;}
.y4c_c00484{bottom:707.974997pt;}
.y4b_c00484{bottom:708.391285pt;}
.y4a_c00484{bottom:709.390059pt;}
.y49_c00484{bottom:730.131659pt;}
.y48_c00484{bottom:730.810443pt;}
.y47_c00484{bottom:731.514763pt;}
.y46_c00484{bottom:732.967243pt;}
.y45_c00484{bottom:735.064235pt;}
.y44_c00484{bottom:735.773739pt;}
.y43_c00484{bottom:737.411723pt;}
.y42_c00484{bottom:738.364843pt;}
.y41_c00484{bottom:740.964619pt;}
.y40_c00484{bottom:742.340459pt;}
.y3f_c00484{bottom:742.816747pt;}
.y3e_c00484{bottom:743.479083pt;}
.y3d_c00484{bottom:763.580917pt;}
.y3c_c00484{bottom:765.361536pt;}
.y3b_c00484{bottom:766.771179pt;}
.y3a_c00484{bottom:767.290059pt;}
.y39_c00484{bottom:768.361685pt;}
.y38_c00484{bottom:770.120043pt;}
.y37_c00484{bottom:770.630485pt;}
.y36_c00484{bottom:771.512192pt;}
.y35_c00484{bottom:772.570816pt;}
.y34_c00484{bottom:773.248395pt;}
.y33_c00484{bottom:792.907712pt;}
.y32_c00484{bottom:793.809141pt;}
.y31_c00484{bottom:795.620299pt;}
.y30_c00484{bottom:796.529771pt;}
.y2f_c00484{bottom:797.204693pt;}
.y2e_c00484{bottom:797.882592pt;}
.y2d_c00484{bottom:799.911264pt;}
.y2c_c00484{bottom:800.578443pt;}
.y2b_c00484{bottom:803.046880pt;}
.y2a_c00484{bottom:803.720619pt;}
.y29_c00484{bottom:804.172939pt;}
.y28_c00484{bottom:804.832885pt;}
.y27_c00484{bottom:806.379787pt;}
.y26_c00484{bottom:824.690165pt;}
.y25_c00484{bottom:825.215243pt;}
.y24_c00484{bottom:826.261739pt;}
.y23_c00484{bottom:827.713387pt;}
.y22_c00484{bottom:829.468363pt;}
.y21_c00484{bottom:829.991552pt;}
.y20_c00484{bottom:830.877685pt;}
.y1f_c00484{bottom:832.446571pt;}
.y1e_c00484{bottom:834.896331pt;}
.y1d_c00484{bottom:835.426827pt;}
.y1c_c00484{bottom:855.928395pt;}
.y1b_c00484{bottom:856.822741pt;}
.y1a_c00484{bottom:858.444021pt;}
.y19_c00484{bottom:858.958261pt;}
.y18_c00484{bottom:860.020523pt;}
.y17_c00484{bottom:861.931947pt;}
.y16_c00484{bottom:863.007168pt;}
.y15_c00484{bottom:864.078379pt;}
.y14_c00484{bottom:864.574485pt;}
.y13_c00484{bottom:865.101909pt;}
.y12_c00484{bottom:865.467499pt;}
.y11_c00484{bottom:866.153749pt;}
.y10_c00484{bottom:887.523083pt;}
.yf_c00484{bottom:889.874155pt;}
.ye_c00484{bottom:891.988715pt;}
.yd_c00484{bottom:892.922251pt;}
.yc_c00484{bottom:894.368555pt;}
.yb_c00484{bottom:895.296491pt;}
.ya_c00484{bottom:895.990667pt;}
.y9_c00484{bottom:897.414859pt;}
.y8_c00484{bottom:898.107787pt;}
.y7_c00484{bottom:899.046667pt;}
.y6_c00484{bottom:958.761828pt;}
.y5_c00484{bottom:959.365625pt;}
.y4_c00484{bottom:961.199751pt;}
.y3_c00484{bottom:990.594563pt;}
.y2_c00484{bottom:992.410667pt;}
.y1_c00484{bottom:1055.886667pt;}
.h1b_c00484{height:37.347965pt;}
.hc_c00484{height:58.638060pt;}
.hf_c00484{height:58.652644pt;}
.h2_c00484{height:58.666667pt;}
.h7_c00484{height:58.683560pt;}
.hb_c00484{height:63.968792pt;}
.h10_c00484{height:63.970873pt;}
.h15_c00484{height:63.977500pt;}
.h12_c00484{height:63.992480pt;}
.h4_c00484{height:64.018429pt;}
.he_c00484{height:64.019997pt;}
.h1a_c00484{height:64.025083pt;}
.h14_c00484{height:64.028794pt;}
.h1c_c00484{height:69.331149pt;}
.h9_c00484{height:69.333333pt;}
.h16_c00484{height:69.343906pt;}
.h19_c00484{height:69.360507pt;}
.h13_c00484{height:69.364526pt;}
.ha_c00484{height:74.630258pt;}
.h18_c00484{height:74.651769pt;}
.h8_c00484{height:74.688168pt;}
.h11_c00484{height:74.700259pt;}
.h3_c00484{height:74.702535pt;}
.h5_c00484{height:80.023037pt;}
.h17_c00484{height:85.316308pt;}
.h6_c00484{height:85.357906pt;}
.hd_c00484{height:106.699995pt;}
.h0_c00484{height:1107.840000pt;}
.h1_c00484{height:1108.000000pt;}
.w0_c00484{width:796.533333pt;}
.w1_c00484{width:796.666667pt;}
.x0_c00484{left:0.000000pt;}
.x7a_c00484{left:119.497609pt;}
.xca_c00484{left:123.813512pt;}
.xac_c00484{left:127.320000pt;}
.xa3_c00484{left:128.972000pt;}
.x86_c00484{left:130.020000pt;}
.x5f_c00484{left:132.066855pt;}
.x53_c00484{left:133.440000pt;}
.x3f_c00484{left:135.078869pt;}
.x2f_c00484{left:136.847605pt;}
.x13_c00484{left:137.797931pt;}
.xb7_c00484{left:145.944540pt;}
.x99_c00484{left:148.685904pt;}
.x60_c00484{left:152.430400pt;}
.xd6_c00484{left:154.213968pt;}
.xc1_c00484{left:155.383529pt;}
.x7b_c00484{left:159.982243pt;}
.x36_c00484{left:163.951936pt;}
.x1f_c00484{left:167.013003pt;}
.x90_c00484{left:168.489867pt;}
.x30_c00484{left:174.474347pt;}
.x14_c00484{left:175.952768pt;}
.x9a_c00484{left:177.178716pt;}
.x61_c00484{left:180.851417pt;}
.x40_c00484{left:182.642293pt;}
.x37_c00484{left:183.797269pt;}
.xc2_c00484{left:185.281601pt;}
.x87_c00484{left:187.824000pt;}
.x54_c00484{left:192.240000pt;}
.xcb_c00484{left:194.496008pt;}
.x15_c00484{left:196.299712pt;}
.xd2_c00484{left:198.100000pt;}
.x67_c00484{left:199.907071pt;}
.x41_c00484{left:202.489067pt;}
.x25_c00484{left:204.734944pt;}
.xbc_c00484{left:213.061611pt;}
.xa9_c00484{left:215.595413pt;}
.xcc_c00484{left:221.613565pt;}
.xd3_c00484{left:222.837333pt;}
.xb2_c00484{left:223.953333pt;}
.x16_c00484{left:225.613269pt;}
.x57_c00484{left:229.806667pt;}
.x26_c00484{left:233.455648pt;}
.x9_c00484{left:234.660000pt;}
.x7c_c00484{left:238.191136pt;}
.x38_c00484{left:241.123936pt;}
.xaa_c00484{left:244.351961pt;}
.x55_c00484{left:250.320000pt;}
.xbd_c00484{left:251.982651pt;}
.x17_c00484{left:253.177237pt;}
.x9b_c00484{left:254.300184pt;}
.x92_c00484{left:255.838235pt;}
.x88_c00484{left:257.474667pt;}
.x71_c00484{left:258.531116pt;}
.x48_c00484{left:260.297088pt;}
.xc3_c00484{left:261.703769pt;}
.xa4_c00484{left:264.533333pt;}
.x7d_c00484{left:267.299987pt;}
.xb8_c00484{left:272.336688pt;}
.xa_c00484{left:273.780000pt;}
.x68_c00484{left:277.841383pt;}
.x56_c00484{left:279.840000pt;}
.xbe_c00484{left:281.109495pt;}
.x27_c00484{left:282.431499pt;}
.x9c_c00484{left:284.308812pt;}
.x91_c00484{left:286.126000pt;}
.x49_c00484{left:289.353163pt;}
.xc4_c00484{left:291.199577pt;}
.xb3_c00484{left:292.584000pt;}
.x7e_c00484{left:296.628660pt;}
.x42_c00484{left:299.449376pt;}
.xb_c00484{left:302.652000pt;}
.xad_c00484{left:303.654667pt;}
.x89_c00484{left:304.997333pt;}
.x31_c00484{left:310.553899pt;}
.x18_c00484{left:312.708480pt;}
.x69_c00484{left:317.634528pt;}
.xd4_c00484{left:319.826667pt;}
.x72_c00484{left:325.992215pt;}
.x58_c00484{left:327.392983pt;}
.x9d_c00484{left:333.599472pt;}
.xcd_c00484{left:338.990935pt;}
.x6_c00484{left:342.682001pt;}
.x7f_c00484{left:344.479073pt;}
.x39_c00484{left:349.447936pt;}
.x4_c00484{left:353.156000pt;}
.x4a_c00484{left:358.501824pt;}
.xc_c00484{left:361.993333pt;}
.x80_c00484{left:364.129231pt;}
.x8a_c00484{left:365.056000pt;}
.x62_c00484{left:366.986177pt;}
.xc5_c00484{left:368.101265pt;}
.x43_c00484{left:369.083733pt;}
.xb4_c00484{left:370.241333pt;}
.x19_c00484{left:372.462421pt;}
.xae_c00484{left:381.705333pt;}
.x4b_c00484{left:387.787232pt;}
.x28_c00484{left:389.730059pt;}
.xd_c00484{left:390.917333pt;}
.x81_c00484{left:394.138684pt;}
.x59_c00484{left:396.415891pt;}
.xb9_c00484{left:398.438460pt;}
.x1_c00484{left:399.600000pt;}
.x7_c00484{left:401.847335pt;}
.x73_c00484{left:404.153303pt;}
.xce_c00484{left:406.410349pt;}
.x32_c00484{left:408.277312pt;}
.xaf_c00484{left:409.365333pt;}
.x5_c00484{left:411.740000pt;}
.x6a_c00484{left:414.160441pt;}
.x4c_c00484{left:416.852640pt;}
.x29_c00484{left:418.752096pt;}
.x8_c00484{left:421.324668pt;}
.x2_c00484{left:423.360000pt;}
.xbf_c00484{left:427.664127pt;}
.xe_c00484{left:429.581333pt;}
.x74_c00484{left:433.030779pt;}
.xcf_c00484{left:436.473865pt;}
.x20_c00484{left:439.473536pt;}
.x93_c00484{left:441.054167pt;}
.x6b_c00484{left:444.274772pt;}
.x5a_c00484{left:445.424167pt;}
.xd5_c00484{left:446.410667pt;}
.x3_c00484{left:452.160000pt;}
.xd7_c00484{left:456.219739pt;}
.x3a_c00484{left:457.410603pt;}
.x9e_c00484{left:460.179432pt;}
.x8b_c00484{left:462.304000pt;}
.x21_c00484{left:468.555061pt;}
.x75_c00484{left:473.013215pt;}
.x6c_c00484{left:474.283832pt;}
.x4d_c00484{left:475.271456pt;}
.x1a_c00484{left:478.620352pt;}
.xd8_c00484{left:485.055227pt;}
.x3b_c00484{left:486.973269pt;}
.xab_c00484{left:488.784617pt;}
.xf_c00484{left:489.844000pt;}
.x8c_c00484{left:491.514667pt;}
.x63_c00484{left:493.746301pt;}
.x33_c00484{left:496.616683pt;}
.xb5_c00484{left:498.190667pt;}
.xa5_c00484{left:500.121333pt;}
.x2a_c00484{left:506.948875pt;}
.x64_c00484{left:513.119957pt;}
.x44_c00484{left:516.267659pt;}
.x9f_c00484{left:518.327892pt;}
.x94_c00484{left:520.080395pt;}
.xc6_c00484{left:526.129745pt;}
.x10_c00484{left:528.741333pt;}
.x4e_c00484{left:534.086272pt;}
.x2b_c00484{left:536.417579pt;}
.x1b_c00484{left:537.667531pt;}
.x82_c00484{left:541.689313pt;}
.x95_c00484{left:549.501611pt;}
.x76_c00484{left:551.700528pt;}
.xd9_c00484{left:554.553968pt;}
.xb0_c00484{left:557.637333pt;}
.x5b_c00484{left:562.629511pt;}
.x4f_c00484{left:563.793045pt;}
.xc7_c00484{left:564.910925pt;}
.x1c_c00484{left:566.264992pt;}
.xa6_c00484{left:567.617333pt;}
.x34_c00484{left:574.918613pt;}
.x96_c00484{left:579.753995pt;}
.x83_c00484{left:580.988253pt;}
.x65_c00484{left:582.449217pt;}
.x5c_c00484{left:583.452667pt;}
.xba_c00484{left:585.692352pt;}
.xb1_c00484{left:586.853333pt;}
.x6d_c00484{left:591.165299pt;}
.x45_c00484{left:593.651893pt;}
.xa0_c00484{left:598.514292pt;}
.x2c_c00484{left:605.324576pt;}
.x5d_c00484{left:611.707051pt;}
.x46_c00484{left:614.733397pt;}
.x11_c00484{left:616.848000pt;}
.x50_c00484{left:623.125227pt;}
.xc0_c00484{left:624.945315pt;}
.xa7_c00484{left:626.724000pt;}
.xa1_c00484{left:627.948828pt;}
.x8d_c00484{left:629.640000pt;}
.xc8_c00484{left:633.859241pt;}
.x3c_c00484{left:634.867936pt;}
.x84_c00484{left:639.541704pt;}
.x47_c00484{left:643.294112pt;}
.x22_c00484{left:646.690027pt;}
.x77_c00484{left:649.937459pt;}
.x6e_c00484{left:651.144791pt;}
.xd0_c00484{left:653.474157pt;}
.x1d_c00484{left:656.331285pt;}
.xa2_c00484{left:657.957456pt;}
.x3d_c00484{left:664.214603pt;}
.x66_c00484{left:670.495372pt;}
.x35_c00484{left:673.847520pt;}
.xb6_c00484{left:675.010667pt;}
.x51_c00484{left:682.004043pt;}
.x2d_c00484{left:684.069131pt;}
.x97_c00484{left:687.115859pt;}
.x78_c00484{left:689.680092pt;}
.x3e_c00484{left:692.497269pt;}
.xbb_c00484{left:694.705896pt;}
.xa8_c00484{left:695.637333pt;}
.x6f_c00484{left:699.403085pt;}
.xc9_c00484{left:702.835529pt;}
.x23_c00484{left:704.802379pt;}
.x1e_c00484{left:705.991755pt;}
.x5e_c00484{left:710.699959pt;}
.x52_c00484{left:711.721483pt;}
.x85_c00484{left:713.656721pt;}
.x12_c00484{left:714.809333pt;}
.x79_c00484{left:718.309773pt;}
.x2e_c00484{left:723.240725pt;}
.x98_c00484{left:726.654947pt;}
.xd1_c00484{left:732.669575pt;}
.x24_c00484{left:733.962571pt;}
.x8e_c00484{left:738.464000pt;}
.x70_c00484{left:740.444571pt;}
.x8f_c00484{left:779.142667pt;}
}





/* 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_c00485 {
    display:none;
  }
  .loading-indicator_c00485.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00485 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_c00485 { 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_c00485" -> "#page-container .classname_c00485")
 */
.pf_c00485 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00485 { /* 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_c00485.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00485 { /* 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_c00485 { /* 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_c00485 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00485 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00485 {overflow:visible;}
  }
}
.c_c00485 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00485 { /* 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_c00485:after { /* webkit #35443 */
  content: '';
}
.t_c00485:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00485 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 */
}
.__c00485 { /* 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_c00485 { /* info for Javascript */
  display:none;
}
.l_c00485 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00485 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00485 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00485: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_c00485 {
    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_c00485.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00485.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_c00485 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00485{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00485;src:url('chunks/assets/font_cfe63ee56e9e10a97d33a3db.woff2')format("woff");}.ff1_c00485{font-family:ff1_c00485;line-height:1.000000;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;}
.m2_c00485{transform:matrix(0.120935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120935,0.000000,0.000000,0.250000,0,0);}
.m3_c00485{transform:matrix(0.129035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129035,0.000000,0.000000,0.250000,0,0);}
.m4_c00485{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m18_c00485{transform:matrix(0.166038,-0.003487,0.005249,0.249945,0,0);-ms-transform:matrix(0.166038,-0.003487,0.005249,0.249945,0,0);-webkit-transform:matrix(0.166038,-0.003487,0.005249,0.249945,0,0);}
.mf_c00485{transform:matrix(0.183615,-0.003856,0.005249,0.249945,0,0);-ms-transform:matrix(0.183615,-0.003856,0.005249,0.249945,0,0);-webkit-transform:matrix(0.183615,-0.003856,0.005249,0.249945,0,0);}
.ma_c00485{transform:matrix(0.185654,-0.003899,0.005249,0.249945,0,0);-ms-transform:matrix(0.185654,-0.003899,0.005249,0.249945,0,0);-webkit-transform:matrix(0.185654,-0.003899,0.005249,0.249945,0,0);}
.m7_c00485{transform:matrix(0.188288,-0.003954,0.005249,0.249945,0,0);-ms-transform:matrix(0.188288,-0.003954,0.005249,0.249945,0,0);-webkit-transform:matrix(0.188288,-0.003954,0.005249,0.249945,0,0);}
.m11_c00485{transform:matrix(0.189138,-0.003972,0.005249,0.249945,0,0);-ms-transform:matrix(0.189138,-0.003972,0.005249,0.249945,0,0);-webkit-transform:matrix(0.189138,-0.003972,0.005249,0.249945,0,0);}
.m17_c00485{transform:matrix(0.190888,-0.004009,0.005249,0.249945,0,0);-ms-transform:matrix(0.190888,-0.004009,0.005249,0.249945,0,0);-webkit-transform:matrix(0.190888,-0.004009,0.005249,0.249945,0,0);}
.md_c00485{transform:matrix(0.195017,-0.004095,0.005249,0.249945,0,0);-ms-transform:matrix(0.195017,-0.004095,0.005249,0.249945,0,0);-webkit-transform:matrix(0.195017,-0.004095,0.005249,0.249945,0,0);}
.m9_c00485{transform:matrix(0.195777,-0.004111,0.005249,0.249945,0,0);-ms-transform:matrix(0.195777,-0.004111,0.005249,0.249945,0,0);-webkit-transform:matrix(0.195777,-0.004111,0.005249,0.249945,0,0);}
.m13_c00485{transform:matrix(0.198816,-0.004175,0.005249,0.249945,0,0);-ms-transform:matrix(0.198816,-0.004175,0.005249,0.249945,0,0);-webkit-transform:matrix(0.198816,-0.004175,0.005249,0.249945,0,0);}
.m1d_c00485{transform:matrix(0.204180,-0.004288,0.005249,0.249945,0,0);-ms-transform:matrix(0.204180,-0.004288,0.005249,0.249945,0,0);-webkit-transform:matrix(0.204180,-0.004288,0.005249,0.249945,0,0);}
.m1a_c00485{transform:matrix(0.204610,-0.004297,0.005249,0.249945,0,0);-ms-transform:matrix(0.204610,-0.004297,0.005249,0.249945,0,0);-webkit-transform:matrix(0.204610,-0.004297,0.005249,0.249945,0,0);}
.m19_c00485{transform:matrix(0.212753,-0.004468,0.005249,0.249945,0,0);-ms-transform:matrix(0.212753,-0.004468,0.005249,0.249945,0,0);-webkit-transform:matrix(0.212753,-0.004468,0.005249,0.249945,0,0);}
.m1c_c00485{transform:matrix(0.213053,-0.004474,0.005249,0.249945,0,0);-ms-transform:matrix(0.213053,-0.004474,0.005249,0.249945,0,0);-webkit-transform:matrix(0.213053,-0.004474,0.005249,0.249945,0,0);}
.m16_c00485{transform:matrix(0.215198,-0.004519,0.005249,0.249945,0,0);-ms-transform:matrix(0.215198,-0.004519,0.005249,0.249945,0,0);-webkit-transform:matrix(0.215198,-0.004519,0.005249,0.249945,0,0);}
.m5_c00485{transform:matrix(0.218777,-0.004594,0.005249,0.249945,0,0);-ms-transform:matrix(0.218777,-0.004594,0.005249,0.249945,0,0);-webkit-transform:matrix(0.218777,-0.004594,0.005249,0.249945,0,0);}
.m6_c00485{transform:matrix(0.227635,-0.004780,0.005249,0.249945,0,0);-ms-transform:matrix(0.227635,-0.004780,0.005249,0.249945,0,0);-webkit-transform:matrix(0.227635,-0.004780,0.005249,0.249945,0,0);}
.m1b_c00485{transform:matrix(0.229174,-0.004813,0.005249,0.249945,0,0);-ms-transform:matrix(0.229174,-0.004813,0.005249,0.249945,0,0);-webkit-transform:matrix(0.229174,-0.004813,0.005249,0.249945,0,0);}
.me_c00485{transform:matrix(0.230339,-0.004837,0.005249,0.249945,0,0);-ms-transform:matrix(0.230339,-0.004837,0.005249,0.249945,0,0);-webkit-transform:matrix(0.230339,-0.004837,0.005249,0.249945,0,0);}
.mc_c00485{transform:matrix(0.234583,-0.004926,0.005249,0.249945,0,0);-ms-transform:matrix(0.234583,-0.004926,0.005249,0.249945,0,0);-webkit-transform:matrix(0.234583,-0.004926,0.005249,0.249945,0,0);}
.m1e_c00485{transform:matrix(0.237913,-0.004996,0.005249,0.249945,0,0);-ms-transform:matrix(0.237913,-0.004996,0.005249,0.249945,0,0);-webkit-transform:matrix(0.237913,-0.004996,0.005249,0.249945,0,0);}
.m14_c00485{transform:matrix(0.240332,-0.005047,0.005249,0.249945,0,0);-ms-transform:matrix(0.240332,-0.005047,0.005249,0.249945,0,0);-webkit-transform:matrix(0.240332,-0.005047,0.005249,0.249945,0,0);}
.m1f_c00485{transform:matrix(0.257920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257920,0.000000,0.000000,0.250000,0,0);}
.m8_c00485{transform:matrix(0.257953,-0.005417,0.005249,0.249945,0,0);-ms-transform:matrix(0.257953,-0.005417,0.005249,0.249945,0,0);-webkit-transform:matrix(0.257953,-0.005417,0.005249,0.249945,0,0);}
.mb_c00485{transform:matrix(0.290266,-0.006096,0.005249,0.249945,0,0);-ms-transform:matrix(0.290266,-0.006096,0.005249,0.249945,0,0);-webkit-transform:matrix(0.290266,-0.006096,0.005249,0.249945,0,0);}
.m12_c00485{transform:matrix(0.291676,-0.006125,0.005249,0.249945,0,0);-ms-transform:matrix(0.291676,-0.006125,0.005249,0.249945,0,0);-webkit-transform:matrix(0.291676,-0.006125,0.005249,0.249945,0,0);}
.m10_c00485{transform:matrix(0.320949,-0.006740,0.005249,0.249945,0,0);-ms-transform:matrix(0.320949,-0.006740,0.005249,0.249945,0,0);-webkit-transform:matrix(0.320949,-0.006740,0.005249,0.249945,0,0);}
.m15_c00485{transform:matrix(0.344704,-0.007239,0.005249,0.249945,0,0);-ms-transform:matrix(0.344704,-0.007239,0.005249,0.249945,0,0);-webkit-transform:matrix(0.344704,-0.007239,0.005249,0.249945,0,0);}
.m0_c00485{transform:matrix(0.576920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576920,0.000000,0.000000,0.250000,0,0);}
.m1_c00485{transform:matrix(1.310940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.310940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.310940,0.000000,0.000000,0.250000,0,0);}
.v0_c00485{vertical-align:0.000000px;}
.ls0_c00485{letter-spacing:0.000000px;}
.sc__c00485{text-shadow:none;}
.sc0_c00485{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__c00485{-webkit-text-stroke:0px transparent;}
.sc0_c00485{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00485{word-spacing:0.000000px;}
.fc0_c00485{color:transparent;}
.fs1_c00485{font-size:18.000000px;}
.fs0_c00485{font-size:42.000000px;}
.fs4_c00485{font-size:72.000000px;}
.fs3_c00485{font-size:96.021166px;}
.fs2_c00485{font-size:108.023811px;}
.y0_c00485{bottom:0.000000px;}
.y15_c00485{bottom:867.014367px;}
.y16_c00485{bottom:869.521735px;}
.y17_c00485{bottom:871.388268px;}
.y18_c00485{bottom:871.987997px;}
.y19_c00485{bottom:873.445470px;}
.y1a_c00485{bottom:875.790298px;}
.y1b_c00485{bottom:876.390279px;}
.y1c_c00485{bottom:877.616952px;}
.y1d_c00485{bottom:878.424895px;}
.y1e_c00485{bottom:884.652000px;}
.ya_c00485{bottom:902.266784px;}
.yb_c00485{bottom:902.749247px;}
.yc_c00485{bottom:904.824025px;}
.yd_c00485{bottom:905.786601px;}
.ye_c00485{bottom:906.486247px;}
.yf_c00485{bottom:907.325328px;}
.y10_c00485{bottom:909.428697px;}
.y11_c00485{bottom:910.318185px;}
.y12_c00485{bottom:911.456187px;}
.y13_c00485{bottom:912.758622px;}
.y14_c00485{bottom:913.504991px;}
.y4_c00485{bottom:937.384500px;}
.y5_c00485{bottom:938.802158px;}
.y6_c00485{bottom:940.745235px;}
.y7_c00485{bottom:942.964347px;}
.y8_c00485{bottom:943.681067px;}
.y9_c00485{bottom:944.906700px;}
.y3_c00485{bottom:1057.038000px;}
.y2_c00485{bottom:1064.610000px;}
.y1_c00485{bottom:1072.606500px;}
.h3_c00485{height:18.000000px;}
.h2_c00485{height:42.000000px;}
.h6_c00485{height:72.000000px;}
.h5_c00485{height:96.021166px;}
.h4_c00485{height:108.023811px;}
.h0_c00485{height:1246.320000px;}
.h1_c00485{height:1246.500000px;}
.w0_c00485{width:896.100000px;}
.w1_c00485{width:896.250000px;}
.x0_c00485{left:0.000000px;}
.x7_c00485{left:109.384500px;}
.xc_c00485{left:132.038006px;}
.x15_c00485{left:141.202647px;}
.x8_c00485{left:176.892000px;}
.xd_c00485{left:226.335021px;}
.x16_c00485{left:260.601147px;}
.x9_c00485{left:269.419500px;}
.xe_c00485{left:301.915446px;}
.xf_c00485{left:340.085159px;}
.x17_c00485{left:349.483647px;}
.x3_c00485{left:365.310000px;}
.x1_c00485{left:375.300000px;}
.x18_c00485{left:378.042147px;}
.x4_c00485{left:380.160000px;}
.x5_c00485{left:394.200000px;}
.x2_c00485{left:405.810000px;}
.xa_c00485{left:409.221000px;}
.x6_c00485{left:426.870000px;}
.x10_c00485{left:435.672143px;}
.x19_c00485{left:447.445647px;}
.xb_c00485{left:467.584500px;}
.x11_c00485{left:476.099292px;}
.x12_c00485{left:527.860221px;}
.x1a_c00485{left:559.104147px;}
.x13_c00485{left:587.093993px;}
.x14_c00485{left:620.991768px;}
.x1b_c00485{left:646.087647px;}
.x1c_c00485{left:684.561147px;}
.x1d_c00485{left:713.340000px;}
@media print{
.v0_c00485{vertical-align:0.000000pt;}
.ls0_c00485{letter-spacing:0.000000pt;}
.ws0_c00485{word-spacing:0.000000pt;}
.fs1_c00485{font-size:16.000000pt;}
.fs0_c00485{font-size:37.333333pt;}
.fs4_c00485{font-size:64.000000pt;}
.fs3_c00485{font-size:85.352147pt;}
.fs2_c00485{font-size:96.021166pt;}
.y0_c00485{bottom:0.000000pt;}
.y15_c00485{bottom:770.679437pt;}
.y16_c00485{bottom:772.908209pt;}
.y17_c00485{bottom:774.567349pt;}
.y18_c00485{bottom:775.100441pt;}
.y19_c00485{bottom:776.395973pt;}
.y1a_c00485{bottom:778.480265pt;}
.y1b_c00485{bottom:779.013581pt;}
.y1c_c00485{bottom:780.103957pt;}
.y1d_c00485{bottom:780.822129pt;}
.y1e_c00485{bottom:786.357333pt;}
.ya_c00485{bottom:802.014919pt;}
.yb_c00485{bottom:802.443775pt;}
.yc_c00485{bottom:804.288023pt;}
.yd_c00485{bottom:805.143645pt;}
.ye_c00485{bottom:805.765553pt;}
.yf_c00485{bottom:806.511403pt;}
.y10_c00485{bottom:808.381064pt;}
.y11_c00485{bottom:809.171720pt;}
.y12_c00485{bottom:810.183277pt;}
.y13_c00485{bottom:811.340997pt;}
.y14_c00485{bottom:812.004436pt;}
.y4_c00485{bottom:833.230667pt;}
.y5_c00485{bottom:834.490807pt;}
.y6_c00485{bottom:836.217987pt;}
.y7_c00485{bottom:838.190531pt;}
.y8_c00485{bottom:838.827615pt;}
.y9_c00485{bottom:839.917067pt;}
.y3_c00485{bottom:939.589333pt;}
.y2_c00485{bottom:946.320000pt;}
.y1_c00485{bottom:953.428000pt;}
.h3_c00485{height:16.000000pt;}
.h2_c00485{height:37.333333pt;}
.h6_c00485{height:64.000000pt;}
.h5_c00485{height:85.352147pt;}
.h4_c00485{height:96.021166pt;}
.h0_c00485{height:1107.840000pt;}
.h1_c00485{height:1108.000000pt;}
.w0_c00485{width:796.533333pt;}
.w1_c00485{width:796.666667pt;}
.x0_c00485{left:0.000000pt;}
.x7_c00485{left:97.230667pt;}
.xc_c00485{left:117.367116pt;}
.x15_c00485{left:125.513464pt;}
.x8_c00485{left:157.237333pt;}
.xd_c00485{left:201.186685pt;}
.x16_c00485{left:231.645464pt;}
.x9_c00485{left:239.484000pt;}
.xe_c00485{left:268.369285pt;}
.xf_c00485{left:302.297919pt;}
.x17_c00485{left:310.652131pt;}
.x3_c00485{left:324.720000pt;}
.x1_c00485{left:333.600000pt;}
.x18_c00485{left:336.037464pt;}
.x4_c00485{left:337.920000pt;}
.x5_c00485{left:350.400000pt;}
.x2_c00485{left:360.720000pt;}
.xa_c00485{left:363.752000pt;}
.x6_c00485{left:379.440000pt;}
.x10_c00485{left:387.264127pt;}
.x19_c00485{left:397.729464pt;}
.xb_c00485{left:415.630667pt;}
.x11_c00485{left:423.199371pt;}
.x12_c00485{left:469.209085pt;}
.x1a_c00485{left:496.981464pt;}
.x13_c00485{left:521.861327pt;}
.x14_c00485{left:551.992683pt;}
.x1b_c00485{left:574.300131pt;}
.x1c_c00485{left:608.498797pt;}
.x1d_c00485{left:634.080000pt;}
}





/* 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_c00486 {
    display:none;
  }
  .loading-indicator_c00486.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00486 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_c00486 { 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_c00486" -> "#page-container .classname_c00486")
 */
.pf_c00486 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00486 { /* 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_c00486.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00486 { /* 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_c00486 { /* 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_c00486 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00486 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00486 {overflow:visible;}
  }
}
.c_c00486 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00486 { /* 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_c00486:after { /* webkit #35443 */
  content: '';
}
.t_c00486:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00486 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 */
}
.__c00486 { /* 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_c00486 { /* info for Javascript */
  display:none;
}
.l_c00486 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00486 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00486 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00486: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_c00486 {
    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_c00486.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00486.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_c00486 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00486{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00486;src:url('chunks/assets/font_fabf4b590f7fb32aea93ffb2.woff2')format("woff");}.ff1_c00486{font-family:ff1_c00486;line-height:1.000000;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;}
.me5_c00486{transform:matrix(0.014680,0.000382,-0.006498,0.249916,0,0);-ms-transform:matrix(0.014680,0.000382,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.014680,0.000382,-0.006498,0.249916,0,0);}
.m131_c00486{transform:matrix(0.128134,0.008345,-0.016248,0.249471,0,0);-ms-transform:matrix(0.128134,0.008345,-0.016248,0.249471,0,0);-webkit-transform:matrix(0.128134,0.008345,-0.016248,0.249471,0,0);}
.m124_c00486{transform:matrix(0.140577,0.002812,-0.004999,0.249950,0,0);-ms-transform:matrix(0.140577,0.002812,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.140577,0.002812,-0.004999,0.249950,0,0);}
.m121_c00486{transform:matrix(0.142297,0.002846,-0.004999,0.249950,0,0);-ms-transform:matrix(0.142297,0.002846,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.142297,0.002846,-0.004999,0.249950,0,0);}
.m122_c00486{transform:matrix(0.146186,0.002924,-0.004999,0.249950,0,0);-ms-transform:matrix(0.146186,0.002924,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.146186,0.002924,-0.004999,0.249950,0,0);}
.m126_c00486{transform:matrix(0.156724,0.003134,-0.004999,0.249950,0,0);-ms-transform:matrix(0.156724,0.003134,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.156724,0.003134,-0.004999,0.249950,0,0);}
.m123_c00486{transform:matrix(0.157728,0.003155,-0.004999,0.249950,0,0);-ms-transform:matrix(0.157728,0.003155,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.157728,0.003155,-0.004999,0.249950,0,0);}
.m127_c00486{transform:matrix(0.159628,0.003193,-0.004999,0.249950,0,0);-ms-transform:matrix(0.159628,0.003193,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.159628,0.003193,-0.004999,0.249950,0,0);}
.m125_c00486{transform:matrix(0.162662,0.003253,-0.004999,0.249950,0,0);-ms-transform:matrix(0.162662,0.003253,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.162662,0.003253,-0.004999,0.249950,0,0);}
.m120_c00486{transform:matrix(0.165417,0.003308,-0.004999,0.249950,0,0);-ms-transform:matrix(0.165417,0.003308,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.165417,0.003308,-0.004999,0.249950,0,0);}
.mb0_c00486{transform:matrix(0.165459,0.004302,-0.006498,0.249916,0,0);-ms-transform:matrix(0.165459,0.004302,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.165459,0.004302,-0.006498,0.249916,0,0);}
.m0_c00486{transform:matrix(0.169515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169515,0.000000,0.000000,0.250000,0,0);}
.m11f_c00486{transform:matrix(0.171751,0.003435,-0.004999,0.249950,0,0);-ms-transform:matrix(0.171751,0.003435,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.171751,0.003435,-0.004999,0.249950,0,0);}
.mc9_c00486{transform:matrix(0.176350,0.004585,-0.006498,0.249916,0,0);-ms-transform:matrix(0.176350,0.004585,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.176350,0.004585,-0.006498,0.249916,0,0);}
.ma9_c00486{transform:matrix(0.179194,0.004659,-0.006498,0.249916,0,0);-ms-transform:matrix(0.179194,0.004659,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.179194,0.004659,-0.006498,0.249916,0,0);}
.m5b_c00486{transform:matrix(0.179684,0.004672,-0.006498,0.249916,0,0);-ms-transform:matrix(0.179684,0.004672,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.179684,0.004672,-0.006498,0.249916,0,0);}
.m5f_c00486{transform:matrix(0.183558,0.004773,-0.006498,0.249916,0,0);-ms-transform:matrix(0.183558,0.004773,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.183558,0.004773,-0.006498,0.249916,0,0);}
.m5d_c00486{transform:matrix(0.184198,0.004789,-0.006498,0.249916,0,0);-ms-transform:matrix(0.184198,0.004789,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.184198,0.004789,-0.006498,0.249916,0,0);}
.m12a_c00486{transform:matrix(0.184519,0.012018,-0.016248,0.249471,0,0);-ms-transform:matrix(0.184519,0.012018,-0.016248,0.249471,0,0);-webkit-transform:matrix(0.184519,0.012018,-0.016248,0.249471,0,0);}
.m12c_c00486{transform:matrix(0.184918,0.012044,-0.016248,0.249471,0,0);-ms-transform:matrix(0.184918,0.012044,-0.016248,0.249471,0,0);-webkit-transform:matrix(0.184918,0.012044,-0.016248,0.249471,0,0);}
.m138_c00486{transform:matrix(0.188850,0.012300,-0.016248,0.249471,0,0);-ms-transform:matrix(0.188850,0.012300,-0.016248,0.249471,0,0);-webkit-transform:matrix(0.188850,0.012300,-0.016248,0.249471,0,0);}
.m51_c00486{transform:matrix(0.189016,0.004536,-0.005998,0.249928,0,0);-ms-transform:matrix(0.189016,0.004536,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.189016,0.004536,-0.005998,0.249928,0,0);}
.m53_c00486{transform:matrix(0.190770,0.004578,-0.005998,0.249928,0,0);-ms-transform:matrix(0.190770,0.004578,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.190770,0.004578,-0.005998,0.249928,0,0);}
.mdb_c00486{transform:matrix(0.190841,0.004962,-0.006498,0.249916,0,0);-ms-transform:matrix(0.190841,0.004962,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.190841,0.004962,-0.006498,0.249916,0,0);}
.ma7_c00486{transform:matrix(0.191020,0.004967,-0.006498,0.249916,0,0);-ms-transform:matrix(0.191020,0.004967,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.191020,0.004967,-0.006498,0.249916,0,0);}
.m4f_c00486{transform:matrix(0.191320,0.004592,-0.005998,0.249928,0,0);-ms-transform:matrix(0.191320,0.004592,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.191320,0.004592,-0.005998,0.249928,0,0);}
.m7c_c00486{transform:matrix(0.191370,0.004976,-0.006498,0.249916,0,0);-ms-transform:matrix(0.191370,0.004976,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.191370,0.004976,-0.006498,0.249916,0,0);}
.m106_c00486{transform:matrix(0.191403,0.004019,-0.005249,0.249945,0,0);-ms-transform:matrix(0.191403,0.004019,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.191403,0.004019,-0.005249,0.249945,0,0);}
.mb7_c00486{transform:matrix(0.192520,0.005006,-0.006498,0.249916,0,0);-ms-transform:matrix(0.192520,0.005006,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.192520,0.005006,-0.006498,0.249916,0,0);}
.m145_c00486{transform:matrix(0.192768,0.007525,-0.009752,0.249810,0,0);-ms-transform:matrix(0.192768,0.007525,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.192768,0.007525,-0.009752,0.249810,0,0);}
.m5e_c00486{transform:matrix(0.192975,0.005017,-0.006498,0.249916,0,0);-ms-transform:matrix(0.192975,0.005017,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.192975,0.005017,-0.006498,0.249916,0,0);}
.mb2_c00486{transform:matrix(0.193090,0.005020,-0.006498,0.249916,0,0);-ms-transform:matrix(0.193090,0.005020,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.193090,0.005020,-0.006498,0.249916,0,0);}
.m147_c00486{transform:matrix(0.193657,0.007560,-0.009752,0.249810,0,0);-ms-transform:matrix(0.193657,0.007560,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.193657,0.007560,-0.009752,0.249810,0,0);}
.m12f_c00486{transform:matrix(0.193754,0.012619,-0.016248,0.249471,0,0);-ms-transform:matrix(0.193754,0.012619,-0.016248,0.249471,0,0);-webkit-transform:matrix(0.193754,0.012619,-0.016248,0.249471,0,0);}
.m14_c00486{transform:matrix(0.193770,0.003682,-0.004749,0.249955,0,0);-ms-transform:matrix(0.193770,0.003682,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.193770,0.003682,-0.004749,0.249955,0,0);}
.m12e_c00486{transform:matrix(0.194049,0.012638,-0.016248,0.249471,0,0);-ms-transform:matrix(0.194049,0.012638,-0.016248,0.249471,0,0);-webkit-transform:matrix(0.194049,0.012638,-0.016248,0.249471,0,0);}
.m10c_c00486{transform:matrix(0.194497,0.004084,-0.005249,0.249945,0,0);-ms-transform:matrix(0.194497,0.004084,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.194497,0.004084,-0.005249,0.249945,0,0);}
.m100_c00486{transform:matrix(0.194532,0.004085,-0.005249,0.249945,0,0);-ms-transform:matrix(0.194532,0.004085,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.194532,0.004085,-0.005249,0.249945,0,0);}
.mcb_c00486{transform:matrix(0.195374,0.005080,-0.006498,0.249916,0,0);-ms-transform:matrix(0.195374,0.005080,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.195374,0.005080,-0.006498,0.249916,0,0);}
.mcd_c00486{transform:matrix(0.195444,0.005082,-0.006498,0.249916,0,0);-ms-transform:matrix(0.195444,0.005082,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.195444,0.005082,-0.006498,0.249916,0,0);}
.mf0_c00486{transform:matrix(0.196273,0.006483,-0.008254,0.249864,0,0);-ms-transform:matrix(0.196273,0.006483,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.196273,0.006483,-0.008254,0.249864,0,0);}
.m57_c00486{transform:matrix(0.197163,0.005126,-0.006498,0.249916,0,0);-ms-transform:matrix(0.197163,0.005126,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.197163,0.005126,-0.006498,0.249916,0,0);}
.m19_c00486{transform:matrix(0.197294,0.003749,-0.004749,0.249955,0,0);-ms-transform:matrix(0.197294,0.003749,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.197294,0.003749,-0.004749,0.249955,0,0);}
.mae_c00486{transform:matrix(0.197408,0.005133,-0.006498,0.249916,0,0);-ms-transform:matrix(0.197408,0.005133,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.197408,0.005133,-0.006498,0.249916,0,0);}
.mdd_c00486{transform:matrix(0.197773,0.005142,-0.006498,0.249916,0,0);-ms-transform:matrix(0.197773,0.005142,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.197773,0.005142,-0.006498,0.249916,0,0);}
.m12b_c00486{transform:matrix(0.198599,0.012935,-0.016248,0.249471,0,0);-ms-transform:matrix(0.198599,0.012935,-0.016248,0.249471,0,0);-webkit-transform:matrix(0.198599,0.012935,-0.016248,0.249471,0,0);}
.m137_c00486{transform:matrix(0.198859,0.012952,-0.016248,0.249471,0,0);-ms-transform:matrix(0.198859,0.012952,-0.016248,0.249471,0,0);-webkit-transform:matrix(0.198859,0.012952,-0.016248,0.249471,0,0);}
.me3_c00486{transform:matrix(0.199728,0.005193,-0.006498,0.249916,0,0);-ms-transform:matrix(0.199728,0.005193,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.199728,0.005193,-0.006498,0.249916,0,0);}
.m110_c00486{transform:matrix(0.199736,0.004194,-0.005249,0.249945,0,0);-ms-transform:matrix(0.199736,0.004194,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.199736,0.004194,-0.005249,0.249945,0,0);}
.m61_c00486{transform:matrix(0.200057,0.005201,-0.006498,0.249916,0,0);-ms-transform:matrix(0.200057,0.005201,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.200057,0.005201,-0.006498,0.249916,0,0);}
.m58_c00486{transform:matrix(0.200307,0.005208,-0.006498,0.249916,0,0);-ms-transform:matrix(0.200307,0.005208,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.200307,0.005208,-0.006498,0.249916,0,0);}
.m62_c00486{transform:matrix(0.201452,0.005238,-0.006498,0.249916,0,0);-ms-transform:matrix(0.201452,0.005238,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.201452,0.005238,-0.006498,0.249916,0,0);}
.m2a_c00486{transform:matrix(0.201579,0.003830,-0.004749,0.249955,0,0);-ms-transform:matrix(0.201579,0.003830,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.201579,0.003830,-0.004749,0.249955,0,0);}
.m102_c00486{transform:matrix(0.202355,0.004249,-0.005249,0.249945,0,0);-ms-transform:matrix(0.202355,0.004249,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.202355,0.004249,-0.005249,0.249945,0,0);}
.m5c_c00486{transform:matrix(0.202542,0.005266,-0.006498,0.249916,0,0);-ms-transform:matrix(0.202542,0.005266,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.202542,0.005266,-0.006498,0.249916,0,0);}
.mce_c00486{transform:matrix(0.202956,0.005277,-0.006498,0.249916,0,0);-ms-transform:matrix(0.202956,0.005277,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.202956,0.005277,-0.006498,0.249916,0,0);}
.m16_c00486{transform:matrix(0.203233,0.003861,-0.004749,0.249955,0,0);-ms-transform:matrix(0.203233,0.003861,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.203233,0.003861,-0.004749,0.249955,0,0);}
.m119_c00486{transform:matrix(0.203632,0.006313,-0.007746,0.249880,0,0);-ms-transform:matrix(0.203632,0.006313,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.203632,0.006313,-0.007746,0.249880,0,0);}
.m81_c00486{transform:matrix(0.204471,0.005316,-0.006498,0.249916,0,0);-ms-transform:matrix(0.204471,0.005316,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.204471,0.005316,-0.006498,0.249916,0,0);}
.m132_c00486{transform:matrix(0.204796,0.013338,-0.016248,0.249471,0,0);-ms-transform:matrix(0.204796,0.013338,-0.016248,0.249471,0,0);-webkit-transform:matrix(0.204796,0.013338,-0.016248,0.249471,0,0);}
.m10_c00486{transform:matrix(0.205018,0.003895,-0.004749,0.249955,0,0);-ms-transform:matrix(0.205018,0.003895,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.205018,0.003895,-0.004749,0.249955,0,0);}
.m7f_c00486{transform:matrix(0.205181,0.005335,-0.006498,0.249916,0,0);-ms-transform:matrix(0.205181,0.005335,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.205181,0.005335,-0.006498,0.249916,0,0);}
.mb5_c00486{transform:matrix(0.205566,0.005345,-0.006498,0.249916,0,0);-ms-transform:matrix(0.205566,0.005345,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.205566,0.005345,-0.006498,0.249916,0,0);}
.ma6_c00486{transform:matrix(0.205690,0.005348,-0.006498,0.249916,0,0);-ms-transform:matrix(0.205690,0.005348,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.205690,0.005348,-0.006498,0.249916,0,0);}
.mfe_c00486{transform:matrix(0.206175,0.004330,-0.005249,0.249945,0,0);-ms-transform:matrix(0.206175,0.004330,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.206175,0.004330,-0.005249,0.249945,0,0);}
.mbb_c00486{transform:matrix(0.206755,0.005376,-0.006498,0.249916,0,0);-ms-transform:matrix(0.206755,0.005376,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.206755,0.005376,-0.006498,0.249916,0,0);}
.m12d_c00486{transform:matrix(0.206867,0.013473,-0.016248,0.249471,0,0);-ms-transform:matrix(0.206867,0.013473,-0.016248,0.249471,0,0);-webkit-transform:matrix(0.206867,0.013473,-0.016248,0.249471,0,0);}
.m4d_c00486{transform:matrix(0.208005,0.004992,-0.005998,0.249928,0,0);-ms-transform:matrix(0.208005,0.004992,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.208005,0.004992,-0.005998,0.249928,0,0);}
.m13_c00486{transform:matrix(0.208037,0.003953,-0.004749,0.249955,0,0);-ms-transform:matrix(0.208037,0.003953,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.208037,0.003953,-0.004749,0.249955,0,0);}
.m98_c00486{transform:matrix(0.208440,0.005419,-0.006498,0.249916,0,0);-ms-transform:matrix(0.208440,0.005419,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.208440,0.005419,-0.006498,0.249916,0,0);}
.m54_c00486{transform:matrix(0.208545,0.005005,-0.005998,0.249928,0,0);-ms-transform:matrix(0.208545,0.005005,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.208545,0.005005,-0.005998,0.249928,0,0);}
.m103_c00486{transform:matrix(0.208559,0.004380,-0.005249,0.249945,0,0);-ms-transform:matrix(0.208559,0.004380,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.208559,0.004380,-0.005249,0.249945,0,0);}
.m5a_c00486{transform:matrix(0.209074,0.005436,-0.006498,0.249916,0,0);-ms-transform:matrix(0.209074,0.005436,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.209074,0.005436,-0.006498,0.249916,0,0);}
.mbc_c00486{transform:matrix(0.210114,0.005463,-0.006498,0.249916,0,0);-ms-transform:matrix(0.210114,0.005463,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.210114,0.005463,-0.006498,0.249916,0,0);}
.m14a_c00486{transform:matrix(0.210430,0.008215,-0.009752,0.249810,0,0);-ms-transform:matrix(0.210430,0.008215,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.210430,0.008215,-0.009752,0.249810,0,0);}
.m59_c00486{transform:matrix(0.210454,0.005472,-0.006498,0.249916,0,0);-ms-transform:matrix(0.210454,0.005472,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.210454,0.005472,-0.006498,0.249916,0,0);}
.m91_c00486{transform:matrix(0.210484,0.005473,-0.006498,0.249916,0,0);-ms-transform:matrix(0.210484,0.005473,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.210484,0.005473,-0.006498,0.249916,0,0);}
.mb3_c00486{transform:matrix(0.210549,0.005474,-0.006498,0.249916,0,0);-ms-transform:matrix(0.210549,0.005474,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.210549,0.005474,-0.006498,0.249916,0,0);}
.maf_c00486{transform:matrix(0.210699,0.005478,-0.006498,0.249916,0,0);-ms-transform:matrix(0.210699,0.005478,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.210699,0.005478,-0.006498,0.249916,0,0);}
.m129_c00486{transform:matrix(0.210793,0.013729,-0.016248,0.249471,0,0);-ms-transform:matrix(0.210793,0.013729,-0.016248,0.249471,0,0);-webkit-transform:matrix(0.210793,0.013729,-0.016248,0.249471,0,0);}
.m10e_c00486{transform:matrix(0.210829,0.004427,-0.005249,0.249945,0,0);-ms-transform:matrix(0.210829,0.004427,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.210829,0.004427,-0.005249,0.249945,0,0);}
.m7b_c00486{transform:matrix(0.210939,0.005484,-0.006498,0.249916,0,0);-ms-transform:matrix(0.210939,0.005484,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.210939,0.005484,-0.006498,0.249916,0,0);}
.m107_c00486{transform:matrix(0.210973,0.004430,-0.005249,0.249945,0,0);-ms-transform:matrix(0.210973,0.004430,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.210973,0.004430,-0.005249,0.249945,0,0);}
.m56_c00486{transform:matrix(0.211034,0.005065,-0.005998,0.249928,0,0);-ms-transform:matrix(0.211034,0.005065,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.211034,0.005065,-0.005998,0.249928,0,0);}
.m95_c00486{transform:matrix(0.211144,0.005490,-0.006498,0.249916,0,0);-ms-transform:matrix(0.211144,0.005490,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.211144,0.005490,-0.006498,0.249916,0,0);}
.mca_c00486{transform:matrix(0.211419,0.005497,-0.006498,0.249916,0,0);-ms-transform:matrix(0.211419,0.005497,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.211419,0.005497,-0.006498,0.249916,0,0);}
.m7e_c00486{transform:matrix(0.212778,0.005532,-0.006498,0.249916,0,0);-ms-transform:matrix(0.212778,0.005532,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.212778,0.005532,-0.006498,0.249916,0,0);}
.m17_c00486{transform:matrix(0.213012,0.004047,-0.004749,0.249955,0,0);-ms-transform:matrix(0.213012,0.004047,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.213012,0.004047,-0.004749,0.249955,0,0);}
.m60_c00486{transform:matrix(0.213063,0.005540,-0.006498,0.249916,0,0);-ms-transform:matrix(0.213063,0.005540,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.213063,0.005540,-0.006498,0.249916,0,0);}
.m13e_c00486{transform:matrix(0.213513,0.013906,-0.016248,0.249471,0,0);-ms-transform:matrix(0.213513,0.013906,-0.016248,0.249471,0,0);-webkit-transform:matrix(0.213513,0.013906,-0.016248,0.249471,0,0);}
.mb8_c00486{transform:matrix(0.213788,0.005558,-0.006498,0.249916,0,0);-ms-transform:matrix(0.213788,0.005558,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.213788,0.005558,-0.006498,0.249916,0,0);}
.m149_c00486{transform:matrix(0.214257,0.008364,-0.009752,0.249810,0,0);-ms-transform:matrix(0.214257,0.008364,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.214257,0.008364,-0.009752,0.249810,0,0);}
.mad_c00486{transform:matrix(0.214328,0.005573,-0.006498,0.249916,0,0);-ms-transform:matrix(0.214328,0.005573,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.214328,0.005573,-0.006498,0.249916,0,0);}
.m52_c00486{transform:matrix(0.214618,0.005151,-0.005998,0.249928,0,0);-ms-transform:matrix(0.214618,0.005151,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.214618,0.005151,-0.005998,0.249928,0,0);}
.m42_c00486{transform:matrix(0.214648,0.005152,-0.005998,0.249928,0,0);-ms-transform:matrix(0.214648,0.005152,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.214648,0.005152,-0.005998,0.249928,0,0);}
.m78_c00486{transform:matrix(0.214827,0.005586,-0.006498,0.249916,0,0);-ms-transform:matrix(0.214827,0.005586,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.214827,0.005586,-0.006498,0.249916,0,0);}
.m80_c00486{transform:matrix(0.215097,0.005593,-0.006498,0.249916,0,0);-ms-transform:matrix(0.215097,0.005593,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.215097,0.005593,-0.006498,0.249916,0,0);}
.mf_c00486{transform:matrix(0.215851,0.004101,-0.004749,0.249955,0,0);-ms-transform:matrix(0.215851,0.004101,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.215851,0.004101,-0.004749,0.249955,0,0);}
.mdc_c00486{transform:matrix(0.215967,0.005615,-0.006498,0.249916,0,0);-ms-transform:matrix(0.215967,0.005615,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.215967,0.005615,-0.006498,0.249916,0,0);}
.m7d_c00486{transform:matrix(0.216317,0.005624,-0.006498,0.249916,0,0);-ms-transform:matrix(0.216317,0.005624,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.216317,0.005624,-0.006498,0.249916,0,0);}
.m128_c00486{transform:matrix(0.216756,0.014117,-0.016248,0.249471,0,0);-ms-transform:matrix(0.216756,0.014117,-0.016248,0.249471,0,0);-webkit-transform:matrix(0.216756,0.014117,-0.016248,0.249471,0,0);}
.mc8_c00486{transform:matrix(0.216972,0.005641,-0.006498,0.249916,0,0);-ms-transform:matrix(0.216972,0.005641,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.216972,0.005641,-0.006498,0.249916,0,0);}
.m12_c00486{transform:matrix(0.217001,0.004123,-0.004749,0.249955,0,0);-ms-transform:matrix(0.217001,0.004123,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.217001,0.004123,-0.004749,0.249955,0,0);}
.mdf_c00486{transform:matrix(0.217042,0.005643,-0.006498,0.249916,0,0);-ms-transform:matrix(0.217042,0.005643,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.217042,0.005643,-0.006498,0.249916,0,0);}
.m1b_c00486{transform:matrix(0.217096,0.004125,-0.004749,0.249955,0,0);-ms-transform:matrix(0.217096,0.004125,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.217096,0.004125,-0.004749,0.249955,0,0);}
.maa_c00486{transform:matrix(0.217482,0.005655,-0.006498,0.249916,0,0);-ms-transform:matrix(0.217482,0.005655,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.217482,0.005655,-0.006498,0.249916,0,0);}
.m93_c00486{transform:matrix(0.217781,0.005662,-0.006498,0.249916,0,0);-ms-transform:matrix(0.217781,0.005662,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.217781,0.005662,-0.006498,0.249916,0,0);}
.mf4_c00486{transform:matrix(0.217967,0.004577,-0.005249,0.249945,0,0);-ms-transform:matrix(0.217967,0.004577,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.217967,0.004577,-0.005249,0.249945,0,0);}
.m146_c00486{transform:matrix(0.218309,0.008523,-0.009752,0.249810,0,0);-ms-transform:matrix(0.218309,0.008523,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.218309,0.008523,-0.009752,0.249810,0,0);}
.m130_c00486{transform:matrix(0.220114,0.014336,-0.016248,0.249471,0,0);-ms-transform:matrix(0.220114,0.014336,-0.016248,0.249471,0,0);-webkit-transform:matrix(0.220114,0.014336,-0.016248,0.249471,0,0);}
.m15_c00486{transform:matrix(0.220265,0.004185,-0.004749,0.249955,0,0);-ms-transform:matrix(0.220265,0.004185,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.220265,0.004185,-0.004749,0.249955,0,0);}
.m79_c00486{transform:matrix(0.220780,0.005740,-0.006498,0.249916,0,0);-ms-transform:matrix(0.220780,0.005740,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.220780,0.005740,-0.006498,0.249916,0,0);}
.me0_c00486{transform:matrix(0.220940,0.005744,-0.006498,0.249916,0,0);-ms-transform:matrix(0.220940,0.005744,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.220940,0.005744,-0.006498,0.249916,0,0);}
.ma8_c00486{transform:matrix(0.221100,0.005749,-0.006498,0.249916,0,0);-ms-transform:matrix(0.221100,0.005749,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.221100,0.005749,-0.006498,0.249916,0,0);}
.m8e_c00486{transform:matrix(0.221140,0.005750,-0.006498,0.249916,0,0);-ms-transform:matrix(0.221140,0.005750,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.221140,0.005750,-0.006498,0.249916,0,0);}
.m43_c00486{transform:matrix(0.221141,0.005307,-0.005998,0.249928,0,0);-ms-transform:matrix(0.221141,0.005307,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.221141,0.005307,-0.005998,0.249928,0,0);}
.m148_c00486{transform:matrix(0.221471,0.008646,-0.009752,0.249810,0,0);-ms-transform:matrix(0.221471,0.008646,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.221471,0.008646,-0.009752,0.249810,0,0);}
.mff_c00486{transform:matrix(0.221756,0.004657,-0.005249,0.249945,0,0);-ms-transform:matrix(0.221756,0.004657,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.221756,0.004657,-0.005249,0.249945,0,0);}
.mb_c00486{transform:matrix(0.222460,0.004227,-0.004749,0.249955,0,0);-ms-transform:matrix(0.222460,0.004227,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.222460,0.004227,-0.004749,0.249955,0,0);}
.md7_c00486{transform:matrix(0.222550,0.005786,-0.006498,0.249916,0,0);-ms-transform:matrix(0.222550,0.005786,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.222550,0.005786,-0.006498,0.249916,0,0);}
.mf5_c00486{transform:matrix(0.222576,0.004674,-0.005249,0.249945,0,0);-ms-transform:matrix(0.222576,0.004674,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.222576,0.004674,-0.005249,0.249945,0,0);}
.m3_c00486{transform:matrix(0.222585,0.004229,-0.004749,0.249955,0,0);-ms-transform:matrix(0.222585,0.004229,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.222585,0.004229,-0.004749,0.249955,0,0);}
.m3b_c00486{transform:matrix(0.223206,0.005357,-0.005998,0.249928,0,0);-ms-transform:matrix(0.223206,0.005357,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.223206,0.005357,-0.005998,0.249928,0,0);}
.mab_c00486{transform:matrix(0.223375,0.005808,-0.006498,0.249916,0,0);-ms-transform:matrix(0.223375,0.005808,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.223375,0.005808,-0.006498,0.249916,0,0);}
.m82_c00486{transform:matrix(0.223499,0.005811,-0.006498,0.249916,0,0);-ms-transform:matrix(0.223499,0.005811,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.223499,0.005811,-0.006498,0.249916,0,0);}
.mcf_c00486{transform:matrix(0.223859,0.005820,-0.006498,0.249916,0,0);-ms-transform:matrix(0.223859,0.005820,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.223859,0.005820,-0.006498,0.249916,0,0);}
.m9a_c00486{transform:matrix(0.223894,0.005821,-0.006498,0.249916,0,0);-ms-transform:matrix(0.223894,0.005821,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.223894,0.005821,-0.006498,0.249916,0,0);}
.m1f_c00486{transform:matrix(0.223930,0.004255,-0.004749,0.249955,0,0);-ms-transform:matrix(0.223930,0.004255,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.223930,0.004255,-0.004749,0.249955,0,0);}
.m1a_c00486{transform:matrix(0.224090,0.004258,-0.004749,0.249955,0,0);-ms-transform:matrix(0.224090,0.004258,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.224090,0.004258,-0.004749,0.249955,0,0);}
.md0_c00486{transform:matrix(0.224284,0.005831,-0.006498,0.249916,0,0);-ms-transform:matrix(0.224284,0.005831,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.224284,0.005831,-0.006498,0.249916,0,0);}
.m118_c00486{transform:matrix(0.224627,0.006963,-0.007746,0.249880,0,0);-ms-transform:matrix(0.224627,0.006963,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.224627,0.006963,-0.007746,0.249880,0,0);}
.m22_c00486{transform:matrix(0.224639,0.004268,-0.004749,0.249955,0,0);-ms-transform:matrix(0.224639,0.004268,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.224639,0.004268,-0.004749,0.249955,0,0);}
.m108_c00486{transform:matrix(0.224740,0.004720,-0.005249,0.249945,0,0);-ms-transform:matrix(0.224740,0.004720,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.224740,0.004720,-0.005249,0.249945,0,0);}
.mcc_c00486{transform:matrix(0.225024,0.005851,-0.006498,0.249916,0,0);-ms-transform:matrix(0.225024,0.005851,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.225024,0.005851,-0.006498,0.249916,0,0);}
.m48_c00486{transform:matrix(0.225280,0.005407,-0.005998,0.249928,0,0);-ms-transform:matrix(0.225280,0.005407,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.225280,0.005407,-0.005998,0.249928,0,0);}
.mb6_c00486{transform:matrix(0.225359,0.005859,-0.006498,0.249916,0,0);-ms-transform:matrix(0.225359,0.005859,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.225359,0.005859,-0.006498,0.249916,0,0);}
.m13b_c00486{transform:matrix(0.225632,0.014695,-0.016248,0.249471,0,0);-ms-transform:matrix(0.225632,0.014695,-0.016248,0.249471,0,0);-webkit-transform:matrix(0.225632,0.014695,-0.016248,0.249471,0,0);}
.m109_c00486{transform:matrix(0.225725,0.004740,-0.005249,0.249945,0,0);-ms-transform:matrix(0.225725,0.004740,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.225725,0.004740,-0.005249,0.249945,0,0);}
.mb9_c00486{transform:matrix(0.226149,0.005880,-0.006498,0.249916,0,0);-ms-transform:matrix(0.226149,0.005880,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.226149,0.005880,-0.006498,0.249916,0,0);}
.mb4_c00486{transform:matrix(0.226538,0.005890,-0.006498,0.249916,0,0);-ms-transform:matrix(0.226538,0.005890,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.226538,0.005890,-0.006498,0.249916,0,0);}
.m11_c00486{transform:matrix(0.226559,0.004305,-0.004749,0.249955,0,0);-ms-transform:matrix(0.226559,0.004305,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.226559,0.004305,-0.004749,0.249955,0,0);}
.m10d_c00486{transform:matrix(0.226580,0.004758,-0.005249,0.249945,0,0);-ms-transform:matrix(0.226580,0.004758,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.226580,0.004758,-0.005249,0.249945,0,0);}
.m71_c00486{transform:matrix(0.226668,0.005893,-0.006498,0.249916,0,0);-ms-transform:matrix(0.226668,0.005893,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.226668,0.005893,-0.006498,0.249916,0,0);}
.m6e_c00486{transform:matrix(0.226928,0.005900,-0.006498,0.249916,0,0);-ms-transform:matrix(0.226928,0.005900,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.226928,0.005900,-0.006498,0.249916,0,0);}
.md5_c00486{transform:matrix(0.227353,0.005911,-0.006498,0.249916,0,0);-ms-transform:matrix(0.227353,0.005911,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.227353,0.005911,-0.006498,0.249916,0,0);}
.m30_c00486{transform:matrix(0.227365,0.005457,-0.005998,0.249928,0,0);-ms-transform:matrix(0.227365,0.005457,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.227365,0.005457,-0.005998,0.249928,0,0);}
.m111_c00486{transform:matrix(0.227645,0.004781,-0.005249,0.249945,0,0);-ms-transform:matrix(0.227645,0.004781,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.227645,0.004781,-0.005249,0.249945,0,0);}
.m10b_c00486{transform:matrix(0.227860,0.004785,-0.005249,0.249945,0,0);-ms-transform:matrix(0.227860,0.004785,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.227860,0.004785,-0.005249,0.249945,0,0);}
.m104_c00486{transform:matrix(0.228240,0.004793,-0.005249,0.249945,0,0);-ms-transform:matrix(0.228240,0.004793,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.228240,0.004793,-0.005249,0.249945,0,0);}
.m86_c00486{transform:matrix(0.228738,0.005947,-0.006498,0.249916,0,0);-ms-transform:matrix(0.228738,0.005947,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.228738,0.005947,-0.006498,0.249916,0,0);}
.m144_c00486{transform:matrix(0.228796,0.008932,-0.009752,0.249810,0,0);-ms-transform:matrix(0.228796,0.008932,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.228796,0.008932,-0.009752,0.249810,0,0);}
.me9_c00486{transform:matrix(0.229465,0.007580,-0.008254,0.249864,0,0);-ms-transform:matrix(0.229465,0.007580,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.229465,0.007580,-0.008254,0.249864,0,0);}
.m55_c00486{transform:matrix(0.229914,0.005518,-0.005998,0.249928,0,0);-ms-transform:matrix(0.229914,0.005518,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.229914,0.005518,-0.005998,0.249928,0,0);}
.mb1_c00486{transform:matrix(0.230022,0.005981,-0.006498,0.249916,0,0);-ms-transform:matrix(0.230022,0.005981,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.230022,0.005981,-0.006498,0.249916,0,0);}
.m5_c00486{transform:matrix(0.230173,0.004373,-0.004749,0.249955,0,0);-ms-transform:matrix(0.230173,0.004373,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.230173,0.004373,-0.004749,0.249955,0,0);}
.mac_c00486{transform:matrix(0.230472,0.005992,-0.006498,0.249916,0,0);-ms-transform:matrix(0.230472,0.005992,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.230472,0.005992,-0.006498,0.249916,0,0);}
.m6b_c00486{transform:matrix(0.230817,0.006001,-0.006498,0.249916,0,0);-ms-transform:matrix(0.230817,0.006001,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.230817,0.006001,-0.006498,0.249916,0,0);}
.m27_c00486{transform:matrix(0.230853,0.004386,-0.004749,0.249955,0,0);-ms-transform:matrix(0.230853,0.004386,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.230853,0.004386,-0.004749,0.249955,0,0);}
.m101_c00486{transform:matrix(0.230879,0.004848,-0.005249,0.249945,0,0);-ms-transform:matrix(0.230879,0.004848,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.230879,0.004848,-0.005249,0.249945,0,0);}
.m143_c00486{transform:matrix(0.231129,0.009023,-0.009752,0.249810,0,0);-ms-transform:matrix(0.231129,0.009023,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.231129,0.009023,-0.009752,0.249810,0,0);}
.m4c_c00486{transform:matrix(0.231368,0.005553,-0.005998,0.249928,0,0);-ms-transform:matrix(0.231368,0.005553,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.231368,0.005553,-0.005998,0.249928,0,0);}
.mde_c00486{transform:matrix(0.231387,0.006016,-0.006498,0.249916,0,0);-ms-transform:matrix(0.231387,0.006016,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.231387,0.006016,-0.006498,0.249916,0,0);}
.m7a_c00486{transform:matrix(0.231447,0.006018,-0.006498,0.249916,0,0);-ms-transform:matrix(0.231447,0.006018,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.231447,0.006018,-0.006498,0.249916,0,0);}
.m116_c00486{transform:matrix(0.232173,0.007197,-0.007746,0.249880,0,0);-ms-transform:matrix(0.232173,0.007197,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.232173,0.007197,-0.007746,0.249880,0,0);}
.m8b_c00486{transform:matrix(0.232207,0.006037,-0.006498,0.249916,0,0);-ms-transform:matrix(0.232207,0.006037,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.232207,0.006037,-0.006498,0.249916,0,0);}
.m83_c00486{transform:matrix(0.232516,0.006045,-0.006498,0.249916,0,0);-ms-transform:matrix(0.232516,0.006045,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.232516,0.006045,-0.006498,0.249916,0,0);}
.m10f_c00486{transform:matrix(0.232544,0.004883,-0.005249,0.249945,0,0);-ms-transform:matrix(0.232544,0.004883,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.232544,0.004883,-0.005249,0.249945,0,0);}
.m94_c00486{transform:matrix(0.232876,0.006055,-0.006498,0.249916,0,0);-ms-transform:matrix(0.232876,0.006055,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.232876,0.006055,-0.006498,0.249916,0,0);}
.m84_c00486{transform:matrix(0.233216,0.006064,-0.006498,0.249916,0,0);-ms-transform:matrix(0.233216,0.006064,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.233216,0.006064,-0.006498,0.249916,0,0);}
.m97_c00486{transform:matrix(0.233491,0.006071,-0.006498,0.249916,0,0);-ms-transform:matrix(0.233491,0.006071,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.233491,0.006071,-0.006498,0.249916,0,0);}
.m36_c00486{transform:matrix(0.233628,0.005607,-0.005998,0.249928,0,0);-ms-transform:matrix(0.233628,0.005607,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.233628,0.005607,-0.005998,0.249928,0,0);}
.mfa_c00486{transform:matrix(0.233643,0.004907,-0.005249,0.249945,0,0);-ms-transform:matrix(0.233643,0.004907,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.233643,0.004907,-0.005249,0.249945,0,0);}
.mfc_c00486{transform:matrix(0.234343,0.004921,-0.005249,0.249945,0,0);-ms-transform:matrix(0.234343,0.004921,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.234343,0.004921,-0.005249,0.249945,0,0);}
.m18_c00486{transform:matrix(0.234883,0.004463,-0.004749,0.249955,0,0);-ms-transform:matrix(0.234883,0.004463,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.234883,0.004463,-0.004749,0.249955,0,0);}
.mfd_c00486{transform:matrix(0.235123,0.004938,-0.005249,0.249945,0,0);-ms-transform:matrix(0.235123,0.004938,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.235123,0.004938,-0.005249,0.249945,0,0);}
.m9f_c00486{transform:matrix(0.235770,0.006130,-0.006498,0.249916,0,0);-ms-transform:matrix(0.235770,0.006130,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.235770,0.006130,-0.006498,0.249916,0,0);}
.m133_c00486{transform:matrix(0.236304,0.015391,-0.016248,0.249471,0,0);-ms-transform:matrix(0.236304,0.015391,-0.016248,0.249471,0,0);-webkit-transform:matrix(0.236304,0.015391,-0.016248,0.249471,0,0);}
.m2d_c00486{transform:matrix(0.237117,0.005691,-0.005998,0.249928,0,0);-ms-transform:matrix(0.237117,0.005691,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.237117,0.005691,-0.005998,0.249928,0,0);}
.m136_c00486{transform:matrix(0.237282,0.015454,-0.016248,0.249471,0,0);-ms-transform:matrix(0.237282,0.015454,-0.016248,0.249471,0,0);-webkit-transform:matrix(0.237282,0.015454,-0.016248,0.249471,0,0);}
.m105_c00486{transform:matrix(0.237483,0.004987,-0.005249,0.249945,0,0);-ms-transform:matrix(0.237483,0.004987,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.237483,0.004987,-0.005249,0.249945,0,0);}
.m4e_c00486{transform:matrix(0.237582,0.005702,-0.005998,0.249928,0,0);-ms-transform:matrix(0.237582,0.005702,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.237582,0.005702,-0.005998,0.249928,0,0);}
.m112_c00486{transform:matrix(0.238422,0.005007,-0.005249,0.249945,0,0);-ms-transform:matrix(0.238422,0.005007,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.238422,0.005007,-0.005249,0.249945,0,0);}
.m32_c00486{transform:matrix(0.239241,0.005742,-0.005998,0.249928,0,0);-ms-transform:matrix(0.239241,0.005742,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.239241,0.005742,-0.005998,0.249928,0,0);}
.mba_c00486{transform:matrix(0.239279,0.006221,-0.006498,0.249916,0,0);-ms-transform:matrix(0.239279,0.006221,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.239279,0.006221,-0.006498,0.249916,0,0);}
.meb_c00486{transform:matrix(0.239434,0.007909,-0.008254,0.249864,0,0);-ms-transform:matrix(0.239434,0.007909,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.239434,0.007909,-0.008254,0.249864,0,0);}
.md1_c00486{transform:matrix(0.239664,0.006231,-0.006498,0.249916,0,0);-ms-transform:matrix(0.239664,0.006231,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.239664,0.006231,-0.006498,0.249916,0,0);}
.m9e_c00486{transform:matrix(0.239984,0.006240,-0.006498,0.249916,0,0);-ms-transform:matrix(0.239984,0.006240,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.239984,0.006240,-0.006498,0.249916,0,0);}
.m35_c00486{transform:matrix(0.240086,0.005762,-0.005998,0.249928,0,0);-ms-transform:matrix(0.240086,0.005762,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.240086,0.005762,-0.005998,0.249928,0,0);}
.m113_c00486{transform:matrix(0.240270,0.007448,-0.007746,0.249880,0,0);-ms-transform:matrix(0.240270,0.007448,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.240270,0.007448,-0.007746,0.249880,0,0);}
.m139_c00486{transform:matrix(0.240750,0.015680,-0.016248,0.249471,0,0);-ms-transform:matrix(0.240750,0.015680,-0.016248,0.249471,0,0);-webkit-transform:matrix(0.240750,0.015680,-0.016248,0.249471,0,0);}
.mc_c00486{transform:matrix(0.240917,0.004577,-0.004749,0.249955,0,0);-ms-transform:matrix(0.240917,0.004577,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.240917,0.004577,-0.004749,0.249955,0,0);}
.mf3_c00486{transform:matrix(0.240977,0.005061,-0.005249,0.249945,0,0);-ms-transform:matrix(0.240977,0.005061,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.240977,0.005061,-0.005249,0.249945,0,0);}
.m28_c00486{transform:matrix(0.241571,0.004590,-0.004749,0.249955,0,0);-ms-transform:matrix(0.241571,0.004590,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.241571,0.004590,-0.004749,0.249955,0,0);}
.m9_c00486{transform:matrix(0.241736,0.004593,-0.004749,0.249955,0,0);-ms-transform:matrix(0.241736,0.004593,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.241736,0.004593,-0.004749,0.249955,0,0);}
.m50_c00486{transform:matrix(0.242025,0.005809,-0.005998,0.249928,0,0);-ms-transform:matrix(0.242025,0.005809,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.242025,0.005809,-0.005998,0.249928,0,0);}
.m87_c00486{transform:matrix(0.242463,0.006304,-0.006498,0.249916,0,0);-ms-transform:matrix(0.242463,0.006304,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.242463,0.006304,-0.006498,0.249916,0,0);}
.me6_c00486{transform:matrix(0.242613,0.008014,-0.008254,0.249864,0,0);-ms-transform:matrix(0.242613,0.008014,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.242613,0.008014,-0.008254,0.249864,0,0);}
.mc1_c00486{transform:matrix(0.242783,0.006312,-0.006498,0.249916,0,0);-ms-transform:matrix(0.242783,0.006312,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.242783,0.006312,-0.006498,0.249916,0,0);}
.m134_c00486{transform:matrix(0.243090,0.015833,-0.016248,0.249471,0,0);-ms-transform:matrix(0.243090,0.015833,-0.016248,0.249471,0,0);-webkit-transform:matrix(0.243090,0.015833,-0.016248,0.249471,0,0);}
.m66_c00486{transform:matrix(0.244172,0.006348,-0.006498,0.249916,0,0);-ms-transform:matrix(0.244172,0.006348,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.244172,0.006348,-0.006498,0.249916,0,0);}
.m63_c00486{transform:matrix(0.244517,0.006357,-0.006498,0.249916,0,0);-ms-transform:matrix(0.244517,0.006357,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.244517,0.006357,-0.006498,0.249916,0,0);}
.me4_c00486{transform:matrix(0.244622,0.006360,-0.006498,0.249916,0,0);-ms-transform:matrix(0.244622,0.006360,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.244622,0.006360,-0.006498,0.249916,0,0);}
.m9d_c00486{transform:matrix(0.245132,0.006373,-0.006498,0.249916,0,0);-ms-transform:matrix(0.245132,0.006373,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.245132,0.006373,-0.006498,0.249916,0,0);}
.ma_c00486{transform:matrix(0.245171,0.004658,-0.004749,0.249955,0,0);-ms-transform:matrix(0.245171,0.004658,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.245171,0.004658,-0.004749,0.249955,0,0);}
.me2_c00486{transform:matrix(0.245492,0.006383,-0.006498,0.249916,0,0);-ms-transform:matrix(0.245492,0.006383,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.245492,0.006383,-0.006498,0.249916,0,0);}
.m76_c00486{transform:matrix(0.245887,0.006393,-0.006498,0.249916,0,0);-ms-transform:matrix(0.245887,0.006393,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.245887,0.006393,-0.006498,0.249916,0,0);}
.m141_c00486{transform:matrix(0.246323,0.016043,-0.016248,0.249471,0,0);-ms-transform:matrix(0.246323,0.016043,-0.016248,0.249471,0,0);-webkit-transform:matrix(0.246323,0.016043,-0.016248,0.249471,0,0);}
.mef_c00486{transform:matrix(0.246595,0.008146,-0.008254,0.249864,0,0);-ms-transform:matrix(0.246595,0.008146,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.246595,0.008146,-0.008254,0.249864,0,0);}
.ma2_c00486{transform:matrix(0.246647,0.006413,-0.006498,0.249916,0,0);-ms-transform:matrix(0.246647,0.006413,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.246647,0.006413,-0.006498,0.249916,0,0);}
.m38_c00486{transform:matrix(0.247084,0.005930,-0.005998,0.249928,0,0);-ms-transform:matrix(0.247084,0.005930,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.247084,0.005930,-0.005998,0.249928,0,0);}
.mc7_c00486{transform:matrix(0.247271,0.006429,-0.006498,0.249916,0,0);-ms-transform:matrix(0.247271,0.006429,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.247271,0.006429,-0.006498,0.249916,0,0);}
.mf6_c00486{transform:matrix(0.247560,0.005199,-0.005249,0.249945,0,0);-ms-transform:matrix(0.247560,0.005199,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.247560,0.005199,-0.005249,0.249945,0,0);}
.mee_c00486{transform:matrix(0.248160,0.008197,-0.008254,0.249864,0,0);-ms-transform:matrix(0.248160,0.008197,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.248160,0.008197,-0.008254,0.249864,0,0);}
.m89_c00486{transform:matrix(0.248191,0.006453,-0.006498,0.249916,0,0);-ms-transform:matrix(0.248191,0.006453,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.248191,0.006453,-0.006498,0.249916,0,0);}
.m9b_c00486{transform:matrix(0.248216,0.006454,-0.006498,0.249916,0,0);-ms-transform:matrix(0.248216,0.006454,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.248216,0.006454,-0.006498,0.249916,0,0);}
.m142_c00486{transform:matrix(0.249826,0.016271,-0.016248,0.249471,0,0);-ms-transform:matrix(0.249826,0.016271,-0.016248,0.249471,0,0);-webkit-transform:matrix(0.249826,0.016271,-0.016248,0.249471,0,0);}
.m6f_c00486{transform:matrix(0.250170,0.006504,-0.006498,0.249916,0,0);-ms-transform:matrix(0.250170,0.006504,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.250170,0.006504,-0.006498,0.249916,0,0);}
.m2c_c00486{transform:matrix(0.250788,0.006019,-0.005998,0.249928,0,0);-ms-transform:matrix(0.250788,0.006019,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.250788,0.006019,-0.005998,0.249928,0,0);}
.ma3_c00486{transform:matrix(0.251040,0.006527,-0.006498,0.249916,0,0);-ms-transform:matrix(0.251040,0.006527,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.251040,0.006527,-0.006498,0.249916,0,0);}
.m92_c00486{transform:matrix(0.251075,0.006528,-0.006498,0.249916,0,0);-ms-transform:matrix(0.251075,0.006528,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.251075,0.006528,-0.006498,0.249916,0,0);}
.m96_c00486{transform:matrix(0.251385,0.006536,-0.006498,0.249916,0,0);-ms-transform:matrix(0.251385,0.006536,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.251385,0.006536,-0.006498,0.249916,0,0);}
.m29_c00486{transform:matrix(0.251770,0.004784,-0.004749,0.249955,0,0);-ms-transform:matrix(0.251770,0.004784,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.251770,0.004784,-0.004749,0.249955,0,0);}
.m11b_c00486{transform:matrix(0.251994,0.007812,-0.007746,0.249880,0,0);-ms-transform:matrix(0.251994,0.007812,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.251994,0.007812,-0.007746,0.249880,0,0);}
.mc5_c00486{transform:matrix(0.252260,0.006559,-0.006498,0.249916,0,0);-ms-transform:matrix(0.252260,0.006559,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.252260,0.006559,-0.006498,0.249916,0,0);}
.m74_c00486{transform:matrix(0.253214,0.006584,-0.006498,0.249916,0,0);-ms-transform:matrix(0.253214,0.006584,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.253214,0.006584,-0.006498,0.249916,0,0);}
.m13c_c00486{transform:matrix(0.253248,0.016494,-0.016248,0.249471,0,0);-ms-transform:matrix(0.253248,0.016494,-0.016248,0.249471,0,0);-webkit-transform:matrix(0.253248,0.016494,-0.016248,0.249471,0,0);}
.ma1_c00486{transform:matrix(0.253504,0.006591,-0.006498,0.249916,0,0);-ms-transform:matrix(0.253504,0.006591,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.253504,0.006591,-0.006498,0.249916,0,0);}
.m2b_c00486{transform:matrix(0.253704,0.004820,-0.004749,0.249955,0,0);-ms-transform:matrix(0.253704,0.004820,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.253704,0.004820,-0.004749,0.249955,0,0);}
.m90_c00486{transform:matrix(0.254294,0.006612,-0.006498,0.249916,0,0);-ms-transform:matrix(0.254294,0.006612,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.254294,0.006612,-0.006498,0.249916,0,0);}
.m10a_c00486{transform:matrix(0.254484,0.005344,-0.005249,0.249945,0,0);-ms-transform:matrix(0.254484,0.005344,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.254484,0.005344,-0.005249,0.249945,0,0);}
.m72_c00486{transform:matrix(0.254524,0.006618,-0.006498,0.249916,0,0);-ms-transform:matrix(0.254524,0.006618,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.254524,0.006618,-0.006498,0.249916,0,0);}
.mf8_c00486{transform:matrix(0.255149,0.005358,-0.005249,0.249945,0,0);-ms-transform:matrix(0.255149,0.005358,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.255149,0.005358,-0.005249,0.249945,0,0);}
.m8f_c00486{transform:matrix(0.255654,0.006647,-0.006498,0.249916,0,0);-ms-transform:matrix(0.255654,0.006647,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.255654,0.006647,-0.006498,0.249916,0,0);}
.m45_c00486{transform:matrix(0.255861,0.006141,-0.005998,0.249928,0,0);-ms-transform:matrix(0.255861,0.006141,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.255861,0.006141,-0.005998,0.249928,0,0);}
.m31_c00486{transform:matrix(0.256071,0.006146,-0.005998,0.249928,0,0);-ms-transform:matrix(0.256071,0.006146,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.256071,0.006146,-0.005998,0.249928,0,0);}
.m34_c00486{transform:matrix(0.256141,0.006147,-0.005998,0.249928,0,0);-ms-transform:matrix(0.256141,0.006147,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.256141,0.006147,-0.005998,0.249928,0,0);}
.mfb_c00486{transform:matrix(0.256508,0.005387,-0.005249,0.249945,0,0);-ms-transform:matrix(0.256508,0.005387,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.256508,0.005387,-0.005249,0.249945,0,0);}
.mf7_c00486{transform:matrix(0.257238,0.005402,-0.005249,0.249945,0,0);-ms-transform:matrix(0.257238,0.005402,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.257238,0.005402,-0.005249,0.249945,0,0);}
.med_c00486{transform:matrix(0.257280,0.008499,-0.008254,0.249864,0,0);-ms-transform:matrix(0.257280,0.008499,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.257280,0.008499,-0.008254,0.249864,0,0);}
.m13a_c00486{transform:matrix(0.257330,0.016760,-0.016248,0.249471,0,0);-ms-transform:matrix(0.257330,0.016760,-0.016248,0.249471,0,0);-webkit-transform:matrix(0.257330,0.016760,-0.016248,0.249471,0,0);}
.ma5_c00486{transform:matrix(0.257608,0.006698,-0.006498,0.249916,0,0);-ms-transform:matrix(0.257608,0.006698,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.257608,0.006698,-0.006498,0.249916,0,0);}
.m6d_c00486{transform:matrix(0.257793,0.006703,-0.006498,0.249916,0,0);-ms-transform:matrix(0.257793,0.006703,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.257793,0.006703,-0.006498,0.249916,0,0);}
.me_c00486{transform:matrix(0.257833,0.004899,-0.004749,0.249955,0,0);-ms-transform:matrix(0.257833,0.004899,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.257833,0.004899,-0.004749,0.249955,0,0);}
.m11a_c00486{transform:matrix(0.257981,0.007997,-0.007746,0.249880,0,0);-ms-transform:matrix(0.257981,0.007997,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.257981,0.007997,-0.007746,0.249880,0,0);}
.m2f_c00486{transform:matrix(0.258236,0.006198,-0.005998,0.249928,0,0);-ms-transform:matrix(0.258236,0.006198,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.258236,0.006198,-0.005998,0.249928,0,0);}
.m135_c00486{transform:matrix(0.258477,0.016835,-0.016248,0.249471,0,0);-ms-transform:matrix(0.258477,0.016835,-0.016248,0.249471,0,0);-webkit-transform:matrix(0.258477,0.016835,-0.016248,0.249471,0,0);}
.me7_c00486{transform:matrix(0.258489,0.008539,-0.008254,0.249864,0,0);-ms-transform:matrix(0.258489,0.008539,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.258489,0.008539,-0.008254,0.249864,0,0);}
.m88_c00486{transform:matrix(0.258833,0.006730,-0.006498,0.249916,0,0);-ms-transform:matrix(0.258833,0.006730,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.258833,0.006730,-0.006498,0.249916,0,0);}
.m8_c00486{transform:matrix(0.259003,0.004921,-0.004749,0.249955,0,0);-ms-transform:matrix(0.259003,0.004921,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.259003,0.004921,-0.004749,0.249955,0,0);}
.m33_c00486{transform:matrix(0.259650,0.006232,-0.005998,0.249928,0,0);-ms-transform:matrix(0.259650,0.006232,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.259650,0.006232,-0.005998,0.249928,0,0);}
.md8_c00486{transform:matrix(0.259747,0.006753,-0.006498,0.249916,0,0);-ms-transform:matrix(0.259747,0.006753,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.259747,0.006753,-0.006498,0.249916,0,0);}
.m40_c00486{transform:matrix(0.261290,0.006271,-0.005998,0.249928,0,0);-ms-transform:matrix(0.261290,0.006271,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.261290,0.006271,-0.005998,0.249928,0,0);}
.m114_c00486{transform:matrix(0.262164,0.008127,-0.007746,0.249880,0,0);-ms-transform:matrix(0.262164,0.008127,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.262164,0.008127,-0.007746,0.249880,0,0);}
.m23_c00486{transform:matrix(0.262263,0.004983,-0.004749,0.249955,0,0);-ms-transform:matrix(0.262263,0.004983,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.262263,0.004983,-0.004749,0.249955,0,0);}
.m99_c00486{transform:matrix(0.262461,0.006824,-0.006498,0.249916,0,0);-ms-transform:matrix(0.262461,0.006824,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.262461,0.006824,-0.006498,0.249916,0,0);}
.m1c_c00486{transform:matrix(0.262688,0.004991,-0.004749,0.249955,0,0);-ms-transform:matrix(0.262688,0.004991,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.262688,0.004991,-0.004749,0.249955,0,0);}
.m69_c00486{transform:matrix(0.262861,0.006834,-0.006498,0.249916,0,0);-ms-transform:matrix(0.262861,0.006834,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.262861,0.006834,-0.006498,0.249916,0,0);}
.m85_c00486{transform:matrix(0.263021,0.006839,-0.006498,0.249916,0,0);-ms-transform:matrix(0.263021,0.006839,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.263021,0.006839,-0.006498,0.249916,0,0);}
.m6c_c00486{transform:matrix(0.263031,0.006839,-0.006498,0.249916,0,0);-ms-transform:matrix(0.263031,0.006839,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.263031,0.006839,-0.006498,0.249916,0,0);}
.m65_c00486{transform:matrix(0.263066,0.006840,-0.006498,0.249916,0,0);-ms-transform:matrix(0.263066,0.006840,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.263066,0.006840,-0.006498,0.249916,0,0);}
.mc0_c00486{transform:matrix(0.263386,0.006848,-0.006498,0.249916,0,0);-ms-transform:matrix(0.263386,0.006848,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.263386,0.006848,-0.006498,0.249916,0,0);}
.m70_c00486{transform:matrix(0.263671,0.006855,-0.006498,0.249916,0,0);-ms-transform:matrix(0.263671,0.006855,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.263671,0.006855,-0.006498,0.249916,0,0);}
.m4a_c00486{transform:matrix(0.263709,0.006329,-0.005998,0.249928,0,0);-ms-transform:matrix(0.263709,0.006329,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.263709,0.006329,-0.005998,0.249928,0,0);}
.mda_c00486{transform:matrix(0.264016,0.006864,-0.006498,0.249916,0,0);-ms-transform:matrix(0.264016,0.006864,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.264016,0.006864,-0.006498,0.249916,0,0);}
.m67_c00486{transform:matrix(0.264086,0.006866,-0.006498,0.249916,0,0);-ms-transform:matrix(0.264086,0.006866,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.264086,0.006866,-0.006498,0.249916,0,0);}
.m3f_c00486{transform:matrix(0.264309,0.006343,-0.005998,0.249928,0,0);-ms-transform:matrix(0.264309,0.006343,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.264309,0.006343,-0.005998,0.249928,0,0);}
.mbf_c00486{transform:matrix(0.264501,0.006877,-0.006498,0.249916,0,0);-ms-transform:matrix(0.264501,0.006877,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.264501,0.006877,-0.006498,0.249916,0,0);}
.m1e_c00486{transform:matrix(0.264717,0.005030,-0.004749,0.249955,0,0);-ms-transform:matrix(0.264717,0.005030,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.264717,0.005030,-0.004749,0.249955,0,0);}
.mea_c00486{transform:matrix(0.264766,0.008746,-0.008254,0.249864,0,0);-ms-transform:matrix(0.264766,0.008746,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.264766,0.008746,-0.008254,0.249864,0,0);}
.m68_c00486{transform:matrix(0.264781,0.006884,-0.006498,0.249916,0,0);-ms-transform:matrix(0.264781,0.006884,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.264781,0.006884,-0.006498,0.249916,0,0);}
.m4_c00486{transform:matrix(0.264927,0.005034,-0.004749,0.249955,0,0);-ms-transform:matrix(0.264927,0.005034,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.264927,0.005034,-0.004749,0.249955,0,0);}
.ma4_c00486{transform:matrix(0.265115,0.006893,-0.006498,0.249916,0,0);-ms-transform:matrix(0.265115,0.006893,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.265115,0.006893,-0.006498,0.249916,0,0);}
.m115_c00486{transform:matrix(0.265817,0.008240,-0.007746,0.249880,0,0);-ms-transform:matrix(0.265817,0.008240,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.265817,0.008240,-0.007746,0.249880,0,0);}
.m2_c00486{transform:matrix(0.266837,0.005070,-0.004749,0.249955,0,0);-ms-transform:matrix(0.266837,0.005070,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.266837,0.005070,-0.004749,0.249955,0,0);}
.mf1_c00486{transform:matrix(0.266951,0.005606,-0.005249,0.249945,0,0);-ms-transform:matrix(0.266951,0.005606,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.266951,0.005606,-0.005249,0.249945,0,0);}
.mec_c00486{transform:matrix(0.267264,0.008829,-0.008254,0.249864,0,0);-ms-transform:matrix(0.267264,0.008829,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.267264,0.008829,-0.008254,0.249864,0,0);}
.md6_c00486{transform:matrix(0.267320,0.006950,-0.006498,0.249916,0,0);-ms-transform:matrix(0.267320,0.006950,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.267320,0.006950,-0.006498,0.249916,0,0);}
.m11c_c00486{transform:matrix(0.267921,0.008306,-0.007746,0.249880,0,0);-ms-transform:matrix(0.267921,0.008306,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.267921,0.008306,-0.007746,0.249880,0,0);}
.m26_c00486{transform:matrix(0.267967,0.005091,-0.004749,0.249955,0,0);-ms-transform:matrix(0.267967,0.005091,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.267967,0.005091,-0.004749,0.249955,0,0);}
.m46_c00486{transform:matrix(0.268828,0.006452,-0.005998,0.249928,0,0);-ms-transform:matrix(0.268828,0.006452,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.268828,0.006452,-0.005998,0.249928,0,0);}
.m47_c00486{transform:matrix(0.270027,0.006481,-0.005998,0.249928,0,0);-ms-transform:matrix(0.270027,0.006481,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.270027,0.006481,-0.005998,0.249928,0,0);}
.m21_c00486{transform:matrix(0.270056,0.005131,-0.004749,0.249955,0,0);-ms-transform:matrix(0.270056,0.005131,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.270056,0.005131,-0.004749,0.249955,0,0);}
.m9c_c00486{transform:matrix(0.270184,0.007025,-0.006498,0.249916,0,0);-ms-transform:matrix(0.270184,0.007025,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.270184,0.007025,-0.006498,0.249916,0,0);}
.m3a_c00486{transform:matrix(0.270962,0.006503,-0.005998,0.249928,0,0);-ms-transform:matrix(0.270962,0.006503,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.270962,0.006503,-0.005998,0.249928,0,0);}
.m20_c00486{transform:matrix(0.271166,0.005152,-0.004749,0.249955,0,0);-ms-transform:matrix(0.271166,0.005152,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.271166,0.005152,-0.004749,0.249955,0,0);}
.m73_c00486{transform:matrix(0.271508,0.007059,-0.006498,0.249916,0,0);-ms-transform:matrix(0.271508,0.007059,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.271508,0.007059,-0.006498,0.249916,0,0);}
.me8_c00486{transform:matrix(0.271787,0.008978,-0.008254,0.249864,0,0);-ms-transform:matrix(0.271787,0.008978,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.271787,0.008978,-0.008254,0.249864,0,0);}
.m64_c00486{transform:matrix(0.271968,0.007071,-0.006498,0.249916,0,0);-ms-transform:matrix(0.271968,0.007071,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.271968,0.007071,-0.006498,0.249916,0,0);}
.m77_c00486{transform:matrix(0.273528,0.007112,-0.006498,0.249916,0,0);-ms-transform:matrix(0.273528,0.007112,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.273528,0.007112,-0.006498,0.249916,0,0);}
.ma0_c00486{transform:matrix(0.274052,0.007125,-0.006498,0.249916,0,0);-ms-transform:matrix(0.274052,0.007125,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.274052,0.007125,-0.006498,0.249916,0,0);}
.m44_c00486{transform:matrix(0.274196,0.006581,-0.005998,0.249928,0,0);-ms-transform:matrix(0.274196,0.006581,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.274196,0.006581,-0.005998,0.249928,0,0);}
.md9_c00486{transform:matrix(0.274812,0.007145,-0.006498,0.249916,0,0);-ms-transform:matrix(0.274812,0.007145,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.274812,0.007145,-0.006498,0.249916,0,0);}
.m1d_c00486{transform:matrix(0.275620,0.005237,-0.004749,0.249955,0,0);-ms-transform:matrix(0.275620,0.005237,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.275620,0.005237,-0.004749,0.249955,0,0);}
.m49_c00486{transform:matrix(0.275746,0.006618,-0.005998,0.249928,0,0);-ms-transform:matrix(0.275746,0.006618,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.275746,0.006618,-0.005998,0.249928,0,0);}
.m117_c00486{transform:matrix(0.275957,0.008555,-0.007746,0.249880,0,0);-ms-transform:matrix(0.275957,0.008555,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.275957,0.008555,-0.007746,0.249880,0,0);}
.m37_c00486{transform:matrix(0.276260,0.006630,-0.005998,0.249928,0,0);-ms-transform:matrix(0.276260,0.006630,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.276260,0.006630,-0.005998,0.249928,0,0);}
.m6a_c00486{transform:matrix(0.276442,0.007187,-0.006498,0.249916,0,0);-ms-transform:matrix(0.276442,0.007187,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.276442,0.007187,-0.006498,0.249916,0,0);}
.m2e_c00486{transform:matrix(0.276505,0.006636,-0.005998,0.249928,0,0);-ms-transform:matrix(0.276505,0.006636,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.276505,0.006636,-0.005998,0.249928,0,0);}
.mf2_c00486{transform:matrix(0.276824,0.005813,-0.005249,0.249945,0,0);-ms-transform:matrix(0.276824,0.005813,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.276824,0.005813,-0.005249,0.249945,0,0);}
.m75_c00486{transform:matrix(0.278071,0.007230,-0.006498,0.249916,0,0);-ms-transform:matrix(0.278071,0.007230,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.278071,0.007230,-0.006498,0.249916,0,0);}
.m4b_c00486{transform:matrix(0.278325,0.006680,-0.005998,0.249928,0,0);-ms-transform:matrix(0.278325,0.006680,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.278325,0.006680,-0.005998,0.249928,0,0);}
.m8c_c00486{transform:matrix(0.278341,0.007237,-0.006498,0.249916,0,0);-ms-transform:matrix(0.278341,0.007237,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.278341,0.007237,-0.006498,0.249916,0,0);}
.mf9_c00486{transform:matrix(0.278724,0.005853,-0.005249,0.249945,0,0);-ms-transform:matrix(0.278724,0.005853,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.278724,0.005853,-0.005249,0.249945,0,0);}
.md_c00486{transform:matrix(0.279844,0.005317,-0.004749,0.249955,0,0);-ms-transform:matrix(0.279844,0.005317,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.279844,0.005317,-0.004749,0.249955,0,0);}
.m3c_c00486{transform:matrix(0.280309,0.006727,-0.005998,0.249928,0,0);-ms-transform:matrix(0.280309,0.006727,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.280309,0.006727,-0.005998,0.249928,0,0);}
.m8a_c00486{transform:matrix(0.280455,0.007292,-0.006498,0.249916,0,0);-ms-transform:matrix(0.280455,0.007292,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.280455,0.007292,-0.006498,0.249916,0,0);}
.md4_c00486{transform:matrix(0.281135,0.007310,-0.006498,0.249916,0,0);-ms-transform:matrix(0.281135,0.007310,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.281135,0.007310,-0.006498,0.249916,0,0);}
.m8d_c00486{transform:matrix(0.281515,0.007319,-0.006498,0.249916,0,0);-ms-transform:matrix(0.281515,0.007319,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.281515,0.007319,-0.006498,0.249916,0,0);}
.m39_c00486{transform:matrix(0.282799,0.006787,-0.005998,0.249928,0,0);-ms-transform:matrix(0.282799,0.006787,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.282799,0.006787,-0.005998,0.249928,0,0);}
.m140_c00486{transform:matrix(0.283819,0.018485,-0.016248,0.249471,0,0);-ms-transform:matrix(0.283819,0.018485,-0.016248,0.249471,0,0);-webkit-transform:matrix(0.283819,0.018485,-0.016248,0.249471,0,0);}
.m41_c00486{transform:matrix(0.284698,0.006833,-0.005998,0.249928,0,0);-ms-transform:matrix(0.284698,0.006833,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.284698,0.006833,-0.005998,0.249928,0,0);}
.mc2_c00486{transform:matrix(0.285558,0.007425,-0.006498,0.249916,0,0);-ms-transform:matrix(0.285558,0.007425,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.285558,0.007425,-0.006498,0.249916,0,0);}
.mc3_c00486{transform:matrix(0.287108,0.007465,-0.006498,0.249916,0,0);-ms-transform:matrix(0.287108,0.007465,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.287108,0.007465,-0.006498,0.249916,0,0);}
.mbe_c00486{transform:matrix(0.288073,0.007490,-0.006498,0.249916,0,0);-ms-transform:matrix(0.288073,0.007490,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.288073,0.007490,-0.006498,0.249916,0,0);}
.m13d_c00486{transform:matrix(0.288913,0.018817,-0.016248,0.249471,0,0);-ms-transform:matrix(0.288913,0.018817,-0.016248,0.249471,0,0);-webkit-transform:matrix(0.288913,0.018817,-0.016248,0.249471,0,0);}
.mbd_c00486{transform:matrix(0.296005,0.007696,-0.006498,0.249916,0,0);-ms-transform:matrix(0.296005,0.007696,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.296005,0.007696,-0.006498,0.249916,0,0);}
.md3_c00486{transform:matrix(0.298909,0.007772,-0.006498,0.249916,0,0);-ms-transform:matrix(0.298909,0.007772,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.298909,0.007772,-0.006498,0.249916,0,0);}
.m1_c00486{transform:matrix(0.300755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300755,0.000000,0.000000,0.250000,0,0);}
.mc4_c00486{transform:matrix(0.302323,0.007860,-0.006498,0.249916,0,0);-ms-transform:matrix(0.302323,0.007860,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.302323,0.007860,-0.006498,0.249916,0,0);}
.m3e_c00486{transform:matrix(0.304972,0.007319,-0.005998,0.249928,0,0);-ms-transform:matrix(0.304972,0.007319,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.304972,0.007319,-0.005998,0.249928,0,0);}
.m13f_c00486{transform:matrix(0.305782,0.019916,-0.016248,0.249471,0,0);-ms-transform:matrix(0.305782,0.019916,-0.016248,0.249471,0,0);-webkit-transform:matrix(0.305782,0.019916,-0.016248,0.249471,0,0);}
.mc6_c00486{transform:matrix(0.308661,0.008025,-0.006498,0.249916,0,0);-ms-transform:matrix(0.308661,0.008025,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.308661,0.008025,-0.006498,0.249916,0,0);}
.me1_c00486{transform:matrix(0.313369,0.008148,-0.006498,0.249916,0,0);-ms-transform:matrix(0.313369,0.008148,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.313369,0.008148,-0.006498,0.249916,0,0);}
.m6_c00486{transform:matrix(0.336709,0.006397,-0.004749,0.249955,0,0);-ms-transform:matrix(0.336709,0.006397,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.336709,0.006397,-0.004749,0.249955,0,0);}
.md2_c00486{transform:matrix(0.370400,0.009630,-0.006498,0.249916,0,0);-ms-transform:matrix(0.370400,0.009630,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.370400,0.009630,-0.006498,0.249916,0,0);}
.m25_c00486{transform:matrix(0.383241,0.007282,-0.004749,0.249955,0,0);-ms-transform:matrix(0.383241,0.007282,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.383241,0.007282,-0.004749,0.249955,0,0);}
.m7_c00486{transform:matrix(0.391604,0.007440,-0.004749,0.249955,0,0);-ms-transform:matrix(0.391604,0.007440,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.391604,0.007440,-0.004749,0.249955,0,0);}
.m24_c00486{transform:matrix(0.412021,0.007828,-0.004749,0.249955,0,0);-ms-transform:matrix(0.412021,0.007828,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.412021,0.007828,-0.004749,0.249955,0,0);}
.m11d_c00486{transform:matrix(0.417235,0.012934,-0.007746,0.249880,0,0);-ms-transform:matrix(0.417235,0.012934,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.417235,0.012934,-0.007746,0.249880,0,0);}
.m11e_c00486{transform:matrix(0.429074,0.013301,-0.007746,0.249880,0,0);-ms-transform:matrix(0.429074,0.013301,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.429074,0.013301,-0.007746,0.249880,0,0);}
.m3d_c00486{transform:matrix(0.544963,0.013079,-0.005998,0.249928,0,0);-ms-transform:matrix(0.544963,0.013079,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.544963,0.013079,-0.005998,0.249928,0,0);}
.v0_c00486{vertical-align:0.000000px;}
.ls0_c00486{letter-spacing:0.000000px;}
.sc__c00486{text-shadow:none;}
.sc0_c00486{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__c00486{-webkit-text-stroke:0px transparent;}
.sc0_c00486{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00486{word-spacing:0.000000px;}
.fc0_c00486{color:transparent;}
.fs0_c00486{font-size:66.000000px;}
.fsa_c00486{font-size:66.022304px;}
.fsb_c00486{font-size:71.967233px;}
.fs12_c00486{font-size:72.008244px;}
.fs1_c00486{font-size:72.012995px;}
.fsc_c00486{font-size:72.015874px;}
.fs4_c00486{font-size:72.020733px;}
.fs7_c00486{font-size:72.024332px;}
.fse_c00486{font-size:72.034588px;}
.fs11_c00486{font-size:78.008930px;}
.fs3_c00486{font-size:78.014078px;}
.fs8_c00486{font-size:78.026360px;}
.fs13_c00486{font-size:83.979922px;}
.fs2_c00486{font-size:84.015161px;}
.fsd_c00486{font-size:84.018520px;}
.fs5_c00486{font-size:84.024189px;}
.fs9_c00486{font-size:84.028387px;}
.fs10_c00486{font-size:90.010304px;}
.fs6_c00486{font-size:90.030415px;}
.fsf_c00486{font-size:114.022798px;}
.y0_c00486{bottom:0.000000px;}
.y14a_c00486{bottom:28.525246px;}
.y149_c00486{bottom:30.696883px;}
.y148_c00486{bottom:33.270415px;}
.y147_c00486{bottom:34.545248px;}
.y146_c00486{bottom:36.696234px;}
.y145_c00486{bottom:37.971475px;}
.y144_c00486{bottom:40.989373px;}
.y143_c00486{bottom:45.646500px;}
.y142_c00486{bottom:73.341555px;}
.y141_c00486{bottom:74.240346px;}
.y140_c00486{bottom:78.009589px;}
.y13f_c00486{bottom:80.022868px;}
.y13e_c00486{bottom:80.856690px;}
.y13d_c00486{bottom:82.937467px;}
.y13c_c00486{bottom:84.353542px;}
.y13b_c00486{bottom:85.207894px;}
.y13a_c00486{bottom:87.190228px;}
.y139_c00486{bottom:89.760886px;}
.y138_c00486{bottom:90.124716px;}
.y137_c00486{bottom:92.716657px;}
.y136_c00486{bottom:93.333817px;}
.y132_c00486{bottom:93.810472px;}
.y135_c00486{bottom:93.957726px;}
.y134_c00486{bottom:94.692678px;}
.y133_c00486{bottom:95.407642px;}
.y131_c00486{bottom:95.949330px;}
.y130_c00486{bottom:101.083582px;}
.y12f_c00486{bottom:103.193092px;}
.y12e_c00486{bottom:109.713210px;}
.y12d_c00486{bottom:113.280832px;}
.y12c_c00486{bottom:115.423102px;}
.y12b_c00486{bottom:118.988483px;}
.y12a_c00486{bottom:121.129582px;}
.y129_c00486{bottom:126.112417px;}
.y128_c00486{bottom:134.463000px;}
.y127_c00486{bottom:138.896280px;}
.y126_c00486{bottom:140.025420px;}
.y125_c00486{bottom:141.117090px;}
.y124_c00486{bottom:141.770670px;}
.y123_c00486{bottom:142.230330px;}
.y122_c00486{bottom:143.100090px;}
.y121_c00486{bottom:143.753790px;}
.y120_c00486{bottom:145.282560px;}
.y11f_c00486{bottom:147.696000px;}
.y11e_c00486{bottom:180.160517px;}
.y11d_c00486{bottom:181.645169px;}
.y11c_c00486{bottom:183.722510px;}
.y11b_c00486{bottom:185.103141px;}
.y11a_c00486{bottom:186.832476px;}
.y119_c00486{bottom:187.801118px;}
.y118_c00486{bottom:188.873780px;}
.y117_c00486{bottom:192.586898px;}
.y116_c00486{bottom:193.633938px;}
.y115_c00486{bottom:196.010646px;}
.y114_c00486{bottom:198.421067px;}
.y113_c00486{bottom:200.082000px;}
.y112_c00486{bottom:217.787976px;}
.y111_c00486{bottom:219.632806px;}
.y110_c00486{bottom:220.570390px;}
.y10f_c00486{bottom:222.754800px;}
.y10e_c00486{bottom:224.274757px;}
.y10d_c00486{bottom:226.758226px;}
.y10c_c00486{bottom:227.687380px;}
.y10b_c00486{bottom:230.160289px;}
.y10a_c00486{bottom:231.889113px;}
.y109_c00486{bottom:232.625587px;}
.y108_c00486{bottom:234.472516px;}
.y107_c00486{bottom:235.973956px;}
.y106_c00486{bottom:259.439937px;}
.y105_c00486{bottom:260.549494px;}
.y104_c00486{bottom:262.523001px;}
.y103_c00486{bottom:263.327802px;}
.y102_c00486{bottom:264.399324px;}
.y101_c00486{bottom:266.920600px;}
.y100_c00486{bottom:267.742702px;}
.yff_c00486{bottom:269.820928px;}
.yfe_c00486{bottom:270.768528px;}
.yfd_c00486{bottom:272.680461px;}
.yfc_c00486{bottom:274.321180px;}
.yfb_c00486{bottom:293.949496px;}
.yfa_c00486{bottom:294.635661px;}
.yf9_c00486{bottom:296.955478px;}
.yf8_c00486{bottom:298.159408px;}
.yf7_c00486{bottom:299.774760px;}
.yf6_c00486{bottom:300.899184px;}
.yf5_c00486{bottom:301.608501px;}
.yf4_c00486{bottom:302.316148px;}
.yf3_c00486{bottom:303.235066px;}
.yf2_c00486{bottom:305.773525px;}
.yf1_c00486{bottom:307.806000px;}
.yf0_c00486{bottom:327.572289px;}
.yef_c00486{bottom:329.029420px;}
.yee_c00486{bottom:330.501105px;}
.yed_c00486{bottom:332.692668px;}
.yec_c00486{bottom:334.913584px;}
.yeb_c00486{bottom:336.346411px;}
.yea_c00486{bottom:338.845419px;}
.ye9_c00486{bottom:339.968623px;}
.ye8_c00486{bottom:342.881500px;}
.ye7_c00486{bottom:345.021979px;}
.ye6_c00486{bottom:346.153500px;}
.ye5_c00486{bottom:368.552520px;}
.ye4_c00486{bottom:380.010462px;}
.ye3_c00486{bottom:400.518321px;}
.ye2_c00486{bottom:401.459376px;}
.ye1_c00486{bottom:403.868961px;}
.ye0_c00486{bottom:407.135226px;}
.ydf_c00486{bottom:410.096835px;}
.yde_c00486{bottom:413.167815px;}
.ydd_c00486{bottom:413.676258px;}
.ydc_c00486{bottom:416.624412px;}
.ydb_c00486{bottom:418.092903px;}
.yda_c00486{bottom:437.213994px;}
.yd9_c00486{bottom:439.193058px;}
.yd8_c00486{bottom:440.660973px;}
.yd7_c00486{bottom:441.349722px;}
.yd6_c00486{bottom:442.840866px;}
.yd5_c00486{bottom:443.554383px;}
.yd4_c00486{bottom:446.673507px;}
.yd3_c00486{bottom:447.400521px;}
.yd2_c00486{bottom:449.574093px;}
.yd1_c00486{bottom:450.772098px;}
.yd0_c00486{bottom:470.895636px;}
.ycf_c00486{bottom:473.972010px;}
.yce_c00486{bottom:475.524294px;}
.ycd_c00486{bottom:476.462703px;}
.ycc_c00486{bottom:480.758013px;}
.ycb_c00486{bottom:482.286177px;}
.yca_c00486{bottom:484.174305px;}
.yc9_c00486{bottom:485.068998px;}
.yc8_c00486{bottom:487.509756px;}
.yc7_c00486{bottom:507.765948px;}
.yc6_c00486{bottom:510.481797px;}
.yc5_c00486{bottom:511.419372px;}
.yc4_c00486{bottom:513.638466px;}
.yc3_c00486{bottom:514.869276px;}
.yc2_c00486{bottom:516.294126px;}
.yc1_c00486{bottom:517.013904px;}
.yc0_c00486{bottom:517.752054px;}
.ybf_c00486{bottom:518.702793px;}
.ybe_c00486{bottom:520.406994px;}
.ybd_c00486{bottom:522.349137px;}
.ybc_c00486{bottom:541.609746px;}
.ybb_c00486{bottom:542.487870px;}
.yba_c00486{bottom:545.646363px;}
.yb9_c00486{bottom:547.655409px;}
.yb8_c00486{bottom:549.082536px;}
.yb7_c00486{bottom:549.953445px;}
.yb6_c00486{bottom:551.940729px;}
.yb5_c00486{bottom:552.825873px;}
.yb4_c00486{bottom:554.827353px;}
.yb3_c00486{bottom:556.252491px;}
.yb2_c00486{bottom:557.101794px;}
.yb1_c00486{bottom:558.816468px;}
.yb0_c00486{bottom:580.120098px;}
.yaf_c00486{bottom:581.776260px;}
.yae_c00486{bottom:582.614715px;}
.yad_c00486{bottom:584.286576px;}
.yac_c00486{bottom:584.837961px;}
.yab_c00486{bottom:588.130317px;}
.yaa_c00486{bottom:590.621424px;}
.ya9_c00486{bottom:591.427332px;}
.ya8_c00486{bottom:593.924817px;}
.ya7_c00486{bottom:595.023471px;}
.ya6_c00486{bottom:596.893791px;}
.ya5_c00486{bottom:614.641671px;}
.ya4_c00486{bottom:616.584963px;}
.ya3_c00486{bottom:617.686932px;}
.ya2_c00486{bottom:618.801090px;}
.ya1_c00486{bottom:619.373535px;}
.ya0_c00486{bottom:621.827025px;}
.y9f_c00486{bottom:622.664583px;}
.y9e_c00486{bottom:623.759025px;}
.y9d_c00486{bottom:624.885117px;}
.y9c_c00486{bottom:627.079677px;}
.y9b_c00486{bottom:628.694010px;}
.y9a_c00486{bottom:629.531061px;}
.y99_c00486{bottom:631.198104px;}
.y98_c00486{bottom:649.057533px;}
.y97_c00486{bottom:649.627293px;}
.y96_c00486{bottom:652.242402px;}
.y95_c00486{bottom:653.072040px;}
.y94_c00486{bottom:654.379488px;}
.y93_c00486{bottom:655.442268px;}
.y92_c00486{bottom:657.329850px;}
.y91_c00486{bottom:658.094313px;}
.y90_c00486{bottom:660.733332px;}
.y8f_c00486{bottom:663.656625px;}
.y8e_c00486{bottom:664.957032px;}
.y8d_c00486{bottom:685.940778px;}
.y8c_c00486{bottom:688.806420px;}
.y8b_c00486{bottom:689.664381px;}
.y8a_c00486{bottom:692.535327px;}
.y89_c00486{bottom:693.681771px;}
.y88_c00486{bottom:695.661489px;}
.y87_c00486{bottom:696.828057px;}
.y86_c00486{bottom:697.691595px;}
.y85_c00486{bottom:699.691788px;}
.y84_c00486{bottom:700.779147px;}
.y83_c00486{bottom:701.688900px;}
.y82_c00486{bottom:721.364211px;}
.y81_c00486{bottom:722.504004px;}
.y80_c00486{bottom:724.159461px;}
.y7f_c00486{bottom:725.748504px;}
.y7e_c00486{bottom:727.166628px;}
.y7d_c00486{bottom:729.016155px;}
.y7c_c00486{bottom:729.713934px;}
.y7b_c00486{bottom:731.096754px;}
.y7a_c00486{bottom:731.547468px;}
.y79_c00486{bottom:733.830369px;}
.y78_c00486{bottom:756.807999px;}
.y77_c00486{bottom:758.792601px;}
.y76_c00486{bottom:759.695097px;}
.y75_c00486{bottom:761.898693px;}
.y74_c00486{bottom:763.001436px;}
.y73_c00486{bottom:764.795271px;}
.y72_c00486{bottom:766.114392px;}
.y71_c00486{bottom:766.756779px;}
.y70_c00486{bottom:768.095622px;}
.y6f_c00486{bottom:769.337442px;}
.y6e_c00486{bottom:770.021610px;}
.y6d_c00486{bottom:792.363759px;}
.y6c_c00486{bottom:794.197293px;}
.y6b_c00486{bottom:794.899851px;}
.y6a_c00486{bottom:796.981776px;}
.y69_c00486{bottom:798.632883px;}
.y68_c00486{bottom:800.010438px;}
.y67_c00486{bottom:801.598896px;}
.y66_c00486{bottom:802.540755px;}
.y65_c00486{bottom:803.952930px;}
.y64_c00486{bottom:806.214474px;}
.y63_c00486{bottom:828.018744px;}
.y62_c00486{bottom:829.470285px;}
.y61_c00486{bottom:830.058288px;}
.y60_c00486{bottom:832.328439px;}
.y5f_c00486{bottom:833.206563px;}
.y5e_c00486{bottom:834.070842px;}
.y5d_c00486{bottom:834.932196px;}
.y5c_c00486{bottom:836.655333px;}
.y5b_c00486{bottom:837.504285px;}
.y5a_c00486{bottom:838.666407px;}
.y59_c00486{bottom:840.397188px;}
.y58_c00486{bottom:841.808637px;}
.y57_c00486{bottom:842.679000px;}
.y56_c00486{bottom:867.186276px;}
.y55_c00486{bottom:868.508928px;}
.y54_c00486{bottom:869.120376px;}
.y53_c00486{bottom:869.730960px;}
.y52_c00486{bottom:870.793788px;}
.y51_c00486{bottom:871.414584px;}
.y50_c00486{bottom:874.123956px;}
.y4f_c00486{bottom:874.764924px;}
.y4e_c00486{bottom:876.852636px;}
.y4d_c00486{bottom:877.472928px;}
.y4c_c00486{bottom:900.153900px;}
.y4b_c00486{bottom:902.612784px;}
.y4a_c00486{bottom:903.925392px;}
.y49_c00486{bottom:906.119280px;}
.y48_c00486{bottom:906.782784px;}
.y47_c00486{bottom:908.122896px;}
.y46_c00486{bottom:910.094388px;}
.y45_c00486{bottom:910.535844px;}
.y44_c00486{bottom:911.835900px;}
.y43_c00486{bottom:912.480828px;}
.y42_c00486{bottom:913.122864px;}
.y41_c00486{bottom:936.232932px;}
.y40_c00486{bottom:937.172244px;}
.y3f_c00486{bottom:938.472336px;}
.y3e_c00486{bottom:939.015096px;}
.y3d_c00486{bottom:939.596832px;}
.y3c_c00486{bottom:942.029628px;}
.y3b_c00486{bottom:942.599904px;}
.y3a_c00486{bottom:944.092836px;}
.y39_c00486{bottom:945.981528px;}
.y38_c00486{bottom:946.884168px;}
.y37_c00486{bottom:971.972076px;}
.y36_c00486{bottom:972.729228px;}
.y35_c00486{bottom:973.792092px;}
.y34_c00486{bottom:975.394848px;}
.y33_c00486{bottom:976.989252px;}
.y32_c00486{bottom:978.065400px;}
.y31_c00486{bottom:979.381560px;}
.y30_c00486{bottom:980.165424px;}
.y2f_c00486{bottom:981.759972px;}
.y2e_c00486{bottom:982.536636px;}
.y2d_c00486{bottom:983.347896px;}
.y2c_c00486{bottom:984.157500px;}
.y2a_c00486{bottom:1016.729098px;}
.y2b_c00486{bottom:1016.729242px;}
.y29_c00486{bottom:1016.729597px;}
.y28_c00486{bottom:1016.729793px;}
.y27_c00486{bottom:1040.106358px;}
.y26_c00486{bottom:1041.451798px;}
.y25_c00486{bottom:1041.924389px;}
.y24_c00486{bottom:1042.797153px;}
.y23_c00486{bottom:1043.894442px;}
.y22_c00486{bottom:1044.543213px;}
.y21_c00486{bottom:1045.898400px;}
.y20_c00486{bottom:1048.071025px;}
.y1f_c00486{bottom:1048.744022px;}
.y1e_c00486{bottom:1050.067641px;}
.y1d_c00486{bottom:1051.821463px;}
.y1c_c00486{bottom:1053.532433px;}
.y1b_c00486{bottom:1076.549183px;}
.y1a_c00486{bottom:1077.774348px;}
.y19_c00486{bottom:1078.421181px;}
.y18_c00486{bottom:1080.502661px;}
.y17_c00486{bottom:1081.665710px;}
.y16_c00486{bottom:1082.568105px;}
.y15_c00486{bottom:1084.205820px;}
.y14_c00486{bottom:1084.915283px;}
.y13_c00486{bottom:1085.855808px;}
.y12_c00486{bottom:1087.011800px;}
.y11_c00486{bottom:1088.408191px;}
.y10_c00486{bottom:1089.059499px;}
.yf_c00486{bottom:1089.987410px;}
.ye_c00486{bottom:1110.982884px;}
.yd_c00486{bottom:1112.872320px;}
.yc_c00486{bottom:1113.513655px;}
.yb_c00486{bottom:1114.133873px;}
.ya_c00486{bottom:1114.971288px;}
.y9_c00486{bottom:1115.822526px;}
.y8_c00486{bottom:1116.669005px;}
.y7_c00486{bottom:1117.113604px;}
.y6_c00486{bottom:1119.599831px;}
.y5_c00486{bottom:1120.211156px;}
.y4_c00486{bottom:1121.872962px;}
.y3_c00486{bottom:1122.493493px;}
.y2_c00486{bottom:1123.744500px;}
.y1_c00486{bottom:1177.080000px;}
.h2_c00486{height:66.000000px;}
.hc_c00486{height:66.022304px;}
.hd_c00486{height:71.967233px;}
.h14_c00486{height:72.008244px;}
.h3_c00486{height:72.012995px;}
.he_c00486{height:72.015874px;}
.h6_c00486{height:72.020733px;}
.h9_c00486{height:72.024332px;}
.h10_c00486{height:72.034588px;}
.h13_c00486{height:78.008930px;}
.h5_c00486{height:78.014078px;}
.ha_c00486{height:78.026360px;}
.h15_c00486{height:83.979922px;}
.h4_c00486{height:84.015161px;}
.hf_c00486{height:84.018520px;}
.h7_c00486{height:84.024189px;}
.hb_c00486{height:84.028387px;}
.h12_c00486{height:90.010304px;}
.h8_c00486{height:90.030415px;}
.h11_c00486{height:114.022798px;}
.h0_c00486{height:1246.320000px;}
.h1_c00486{height:1246.500000px;}
.w0_c00486{width:896.100000px;}
.w1_c00486{width:896.250000px;}
.x0_c00486{left:0.000000px;}
.xc2_c00486{left:150.067500px;}
.xc9_c00486{left:157.239000px;}
.xaf_c00486{left:158.645759px;}
.x8f_c00486{left:160.855758px;}
.x76_c00486{left:161.955162px;}
.x67_c00486{left:163.391655px;}
.x5f_c00486{left:165.171471px;}
.x41_c00486{left:166.312296px;}
.x25_c00486{left:168.207667px;}
.x3_c00486{left:170.388000px;}
.x42_c00486{left:198.974220px;}
.x38_c00486{left:200.321580px;}
.xb5_c00486{left:212.817185px;}
.x10_c00486{left:213.823897px;}
.x9b_c00486{left:216.446439px;}
.x6f_c00486{left:217.527555px;}
.x2f_c00486{left:221.274696px;}
.xb0_c00486{left:224.269746px;}
.x77_c00486{left:228.612378px;}
.x39_c00486{left:232.571676px;}
.x4_c00486{left:236.230500px;}
.x82_c00486{left:238.687593px;}
.x68_c00486{left:240.203655px;}
.x11_c00486{left:244.865229px;}
.x90_c00486{left:249.120423px;}
.x1c_c00486{left:256.186417px;}
.xaa_c00486{left:257.404500px;}
.x8a_c00486{left:260.675082px;}
.x59_c00486{left:262.386939px;}
.x5_c00486{left:268.890000px;}
.x49_c00486{left:274.530000px;}
.x26_c00486{left:276.181500px;}
.xb6_c00486{left:278.756483px;}
.x97_c00486{left:280.977030px;}
.x83_c00486{left:282.617724px;}
.xbb_c00486{left:289.996500px;}
.x60_c00486{left:295.365897px;}
.x3a_c00486{left:297.559404px;}
.xb1_c00486{left:300.736320px;}
.xb7_c00486{left:305.037108px;}
.x43_c00486{left:308.850396px;}
.x27_c00486{left:309.915000px;}
.x12_c00486{left:311.330692px;}
.x8b_c00486{left:315.488082px;}
.x69_c00486{left:317.134155px;}
.x3b_c00486{left:319.643028px;}
.x9f_c00486{left:323.983872px;}
.x78_c00486{left:326.648913px;}
.x5a_c00486{left:329.352891px;}
.x30_c00486{left:332.363844px;}
.xa4_c00486{left:334.604849px;}
.x70_c00486{left:339.314373px;}
.x52_c00486{left:340.964490px;}
.x44_c00486{left:342.623964px;}
.x1d_c00486{left:343.912264px;}
.x98_c00486{left:348.401520px;}
.x6a_c00486{left:350.347155px;}
.xca_c00486{left:353.837705px;}
.xbe_c00486{left:355.282500px;}
.x6_c00486{left:356.353500px;}
.x61_c00486{left:361.194438px;}
.x4a_c00486{left:362.292000px;}
.x13_c00486{left:366.407112px;}
.x91_c00486{left:369.822981px;}
.x28_c00486{left:376.078500px;}
.xab_c00486{left:378.283500px;}
.x84_c00486{left:382.542837px;}
.x53_c00486{left:385.791801px;}
.xc7_c00486{left:387.395514px;}
.x7_c00486{left:388.528500px;}
.x8c_c00486{left:392.468082px;}
.x62_c00486{left:394.440267px;}
.xbc_c00486{left:400.440000px;}
.x92_c00486{left:403.351452px;}
.xc4_c00486{left:408.849954px;}
.x1e_c00486{left:410.101510px;}
.x14_c00486{left:411.169902px;}
.x79_c00486{left:414.461214px;}
.x3c_c00486{left:418.235496px;}
.x31_c00486{left:420.146568px;}
.xb2_c00486{left:421.741646px;}
.xa5_c00486{left:422.785580px;}
.x5b_c00486{left:427.426179px;}
.x4b_c00486{left:428.860500px;}
.xbf_c00486{left:431.455500px;}
.x93_c00486{left:436.057845px;}
.x29_c00486{left:442.518000px;}
.x1f_c00486{left:443.784883px;}
.x15_c00486{left:444.956119px;}
.x71_c00486{left:449.301606px;}
.x1_c00486{left:451.710000px;}
.x32_c00486{left:453.663684px;}
.xb8_c00486{left:455.097558px;}
.xa0_c00486{left:456.515901px;}
.x7a_c00486{left:459.504384px;}
.x54_c00486{left:461.434629px;}
.xc5_c00486{left:464.870751px;}
.x6b_c00486{left:471.358155px;}
.x2_c00486{left:474.390000px;}
.x72_c00486{left:481.128744px;}
.x63_c00486{left:482.491194px;}
.x3d_c00486{left:485.204904px;}
.xc0_c00486{left:487.117500px;}
.xb9_c00486{left:488.266676px;}
.x9c_c00486{left:490.059870px;}
.x94_c00486{left:500.789553px;}
.x7b_c00486{left:503.272515px;}
.x4c_c00486{left:506.209500px;}
.x85_c00486{left:514.373730px;}
.x6c_c00486{left:515.452155px;}
.x45_c00486{left:517.901988px;}
.x8_c00486{left:519.382500px;}
.xc8_c00486{left:521.180910px;}
.x16_c00486{left:522.938155px;}
.x55_c00486{left:527.060670px;}
.x2a_c00486{left:530.019000px;}
.xa6_c00486{left:532.439816px;}
.x7c_c00486{left:536.756373px;}
.xcb_c00486{left:540.179177px;}
.xc1_c00486{left:541.701000px;}
.x9_c00486{left:542.782500px;}
.x64_c00486{left:550.023969px;}
.x20_c00486{left:552.447331px;}
.xb3_c00486{left:555.438900px;}
.x95_c00486{left:556.730364px;}
.x73_c00486{left:559.789839px;}
.x17_c00486{left:565.931031px;}
.x4d_c00486{left:572.484000px;}
.x46_c00486{left:573.818184px;}
.x2b_c00486{left:574.858500px;}
.xba_c00486{left:576.942635px;}
.xbd_c00486{left:586.066500px;}
.xa_c00486{left:587.334000px;}
.x99_c00486{left:589.884462px;}
.x8d_c00486{left:591.332082px;}
.x33_c00486{left:596.804232px;}
.xb4_c00486{left:598.317309px;}
.x74_c00486{left:604.072140px;}
.x47_c00486{left:605.950536px;}
.x21_c00486{left:620.219049px;}
.x18_c00486{left:621.299922px;}
.x65_c00486{left:625.689297px;}
.x3e_c00486{left:628.089120px;}
.x34_c00486{left:631.048992px;}
.xb_c00486{left:632.136000px;}
.x7d_c00486{left:634.873908px;}
.x48_c00486{left:638.118888px;}
.x2c_c00486{left:641.292000px;}
.xa7_c00486{left:643.048596px;}
.x86_c00486{left:646.083162px;}
.x22_c00486{left:652.627422px;}
.x7e_c00486{left:657.756993px;}
.x6d_c00486{left:658.871655px;}
.x35_c00486{left:662.981856px;}
.x87_c00486{left:668.156247px;}
.x4e_c00486{left:672.628500px;}
.xc_c00486{left:676.210500px;}
.xac_c00486{left:677.311500px;}
.x5c_c00486{left:682.414920px;}
.xa1_c00486{left:687.158895px;}
.x9d_c00486{left:688.343001px;}
.x3f_c00486{left:693.724920px;}
.x96_c00486{left:700.251801px;}
.x7f_c00486{left:702.341163px;}
.x56_c00486{left:704.815758px;}
.x23_c00486{left:707.457367px;}
.xd_c00486{left:708.853500px;}
.x19_c00486{left:720.426660px;}
.x5d_c00486{left:727.517940px;}
.x88_c00486{left:735.056502px;}
.x57_c00486{left:738.303126px;}
.x36_c00486{left:739.415172px;}
.xc3_c00486{left:741.400464px;}
.xe_c00486{left:742.608000px;}
.x80_c00486{left:746.398794px;}
.x1a_c00486{left:751.232491px;}
.x2d_c00486{left:752.359500px;}
.xa8_c00486{left:753.945088px;}
.x9a_c00486{left:755.208882px;}
.x66_c00486{left:758.831613px;}
.x4f_c00486{left:759.942000px;}
.x6e_c00486{left:769.088655px;}
.x24_c00486{left:774.711585px;}
.xa2_c00486{left:776.429094px;}
.x9e_c00486{left:778.316361px;}
.x50_c00486{left:782.557500px;}
.x2e_c00486{left:783.907500px;}
.xc6_c00486{left:785.913003px;}
.xad_c00486{left:787.779000px;}
.x8e_c00486{left:790.083582px;}
.x37_c00486{left:794.687460px;}
.xa9_c00486{left:798.056433px;}
.x75_c00486{left:802.089936px;}
.x1b_c00486{left:809.554768px;}
.xa3_c00486{left:811.295697px;}
.x40_c00486{left:816.690228px;}
.xae_c00486{left:820.453500px;}
.x81_c00486{left:824.142822px;}
.x58_c00486{left:825.623475px;}
.x5e_c00486{left:826.710384px;}
.x89_c00486{left:834.813576px;}
.x51_c00486{left:838.386000px;}
.xf_c00486{left:842.052000px;}
@media print{
.v0_c00486{vertical-align:0.000000pt;}
.ls0_c00486{letter-spacing:0.000000pt;}
.ws0_c00486{word-spacing:0.000000pt;}
.fs0_c00486{font-size:58.666667pt;}
.fsa_c00486{font-size:58.686493pt;}
.fsb_c00486{font-size:63.970873pt;}
.fs12_c00486{font-size:64.007328pt;}
.fs1_c00486{font-size:64.011551pt;}
.fsc_c00486{font-size:64.014110pt;}
.fs4_c00486{font-size:64.018429pt;}
.fs7_c00486{font-size:64.021628pt;}
.fse_c00486{font-size:64.030745pt;}
.fs11_c00486{font-size:69.341272pt;}
.fs3_c00486{font-size:69.345847pt;}
.fs8_c00486{font-size:69.356764pt;}
.fs13_c00486{font-size:74.648819pt;}
.fs2_c00486{font-size:74.680143pt;}
.fsd_c00486{font-size:74.683129pt;}
.fs5_c00486{font-size:74.688168pt;}
.fs9_c00486{font-size:74.691900pt;}
.fs10_c00486{font-size:80.009159pt;}
.fs6_c00486{font-size:80.027035pt;}
.fsf_c00486{font-size:101.353598pt;}
.y0_c00486{bottom:0.000000pt;}
.y14a_c00486{bottom:25.355775pt;}
.y149_c00486{bottom:27.286119pt;}
.y148_c00486{bottom:29.573703pt;}
.y147_c00486{bottom:30.706887pt;}
.y146_c00486{bottom:32.618875pt;}
.y145_c00486{bottom:33.752423pt;}
.y144_c00486{bottom:36.434999pt;}
.y143_c00486{bottom:40.574667pt;}
.y142_c00486{bottom:65.192493pt;}
.y141_c00486{bottom:65.991419pt;}
.y140_c00486{bottom:69.341857pt;}
.y13f_c00486{bottom:71.131439pt;}
.y13e_c00486{bottom:71.872613pt;}
.y13d_c00486{bottom:73.722193pt;}
.y13c_c00486{bottom:74.980927pt;}
.y13b_c00486{bottom:75.740351pt;}
.y13a_c00486{bottom:77.502425pt;}
.y139_c00486{bottom:79.787455pt;}
.y138_c00486{bottom:80.110859pt;}
.y137_c00486{bottom:82.414807pt;}
.y136_c00486{bottom:82.963393pt;}
.y132_c00486{bottom:83.387087pt;}
.y135_c00486{bottom:83.517979pt;}
.y134_c00486{bottom:84.171269pt;}
.y133_c00486{bottom:84.806793pt;}
.y131_c00486{bottom:85.288293pt;}
.y130_c00486{bottom:89.852073pt;}
.y12f_c00486{bottom:91.727193pt;}
.y12e_c00486{bottom:97.522853pt;}
.y12d_c00486{bottom:100.694073pt;}
.y12c_c00486{bottom:102.598313pt;}
.y12b_c00486{bottom:105.767540pt;}
.y12a_c00486{bottom:107.670740pt;}
.y129_c00486{bottom:112.099927pt;}
.y128_c00486{bottom:119.522667pt;}
.y127_c00486{bottom:123.463360pt;}
.y126_c00486{bottom:124.467040pt;}
.y125_c00486{bottom:125.437413pt;}
.y124_c00486{bottom:126.018373pt;}
.y123_c00486{bottom:126.426960pt;}
.y122_c00486{bottom:127.200080pt;}
.y121_c00486{bottom:127.781147pt;}
.y120_c00486{bottom:129.140053pt;}
.y11f_c00486{bottom:131.285333pt;}
.y11e_c00486{bottom:160.142681pt;}
.y11d_c00486{bottom:161.462372pt;}
.y11c_c00486{bottom:163.308897pt;}
.y11b_c00486{bottom:164.536125pt;}
.y11a_c00486{bottom:166.073312pt;}
.y119_c00486{bottom:166.934327pt;}
.y118_c00486{bottom:167.887804pt;}
.y117_c00486{bottom:171.188353pt;}
.y116_c00486{bottom:172.119056pt;}
.y115_c00486{bottom:174.231685pt;}
.y114_c00486{bottom:176.374281pt;}
.y113_c00486{bottom:177.850667pt;}
.y112_c00486{bottom:193.589312pt;}
.y111_c00486{bottom:195.229161pt;}
.y110_c00486{bottom:196.062569pt;}
.y10f_c00486{bottom:198.004267pt;}
.y10e_c00486{bottom:199.355340pt;}
.y10d_c00486{bottom:201.562868pt;}
.y10c_c00486{bottom:202.388783pt;}
.y10b_c00486{bottom:204.586924pt;}
.y10a_c00486{bottom:206.123656pt;}
.y109_c00486{bottom:206.778300pt;}
.y108_c00486{bottom:208.420015pt;}
.y107_c00486{bottom:209.754628pt;}
.y106_c00486{bottom:230.613277pt;}
.y105_c00486{bottom:231.599551pt;}
.y104_c00486{bottom:233.353779pt;}
.y103_c00486{bottom:234.069157pt;}
.y102_c00486{bottom:235.021621pt;}
.y101_c00486{bottom:237.262756pt;}
.y100_c00486{bottom:237.993513pt;}
.yff_c00486{bottom:239.840825pt;}
.yfe_c00486{bottom:240.683136pt;}
.yfd_c00486{bottom:242.382632pt;}
.yfc_c00486{bottom:243.841049pt;}
.yfb_c00486{bottom:261.288441pt;}
.yfa_c00486{bottom:261.898365pt;}
.yf9_c00486{bottom:263.960425pt;}
.yf8_c00486{bottom:265.030585pt;}
.yf7_c00486{bottom:266.466453pt;}
.yf6_c00486{bottom:267.465941pt;}
.yf5_c00486{bottom:268.096445pt;}
.yf4_c00486{bottom:268.725465pt;}
.yf3_c00486{bottom:269.542281pt;}
.yf2_c00486{bottom:271.798689pt;}
.yf1_c00486{bottom:273.605333pt;}
.yf0_c00486{bottom:291.175368pt;}
.yef_c00486{bottom:292.470596pt;}
.yee_c00486{bottom:293.778760pt;}
.yed_c00486{bottom:295.726816pt;}
.yec_c00486{bottom:297.700964pt;}
.yeb_c00486{bottom:298.974588pt;}
.yea_c00486{bottom:301.195928pt;}
.ye9_c00486{bottom:302.194332pt;}
.ye8_c00486{bottom:304.783556pt;}
.ye7_c00486{bottom:306.686204pt;}
.ye6_c00486{bottom:307.692000pt;}
.ye5_c00486{bottom:327.602240pt;}
.ye4_c00486{bottom:337.787077pt;}
.ye3_c00486{bottom:356.016285pt;}
.ye2_c00486{bottom:356.852779pt;}
.ye1_c00486{bottom:358.994632pt;}
.ye0_c00486{bottom:361.897979pt;}
.ydf_c00486{bottom:364.530520pt;}
.yde_c00486{bottom:367.260280pt;}
.ydd_c00486{bottom:367.712229pt;}
.ydc_c00486{bottom:370.332811pt;}
.ydb_c00486{bottom:371.638136pt;}
.yda_c00486{bottom:388.634661pt;}
.yd9_c00486{bottom:390.393829pt;}
.yd8_c00486{bottom:391.698643pt;}
.yd7_c00486{bottom:392.310864pt;}
.yd6_c00486{bottom:393.636325pt;}
.yd5_c00486{bottom:394.270563pt;}
.yd4_c00486{bottom:397.043117pt;}
.yd3_c00486{bottom:397.689352pt;}
.yd2_c00486{bottom:399.621416pt;}
.yd1_c00486{bottom:400.686309pt;}
.yd0_c00486{bottom:418.573899pt;}
.ycf_c00486{bottom:421.308453pt;}
.yce_c00486{bottom:422.688261pt;}
.ycd_c00486{bottom:423.522403pt;}
.ycc_c00486{bottom:427.340456pt;}
.ycb_c00486{bottom:428.698824pt;}
.yca_c00486{bottom:430.377160pt;}
.yc9_c00486{bottom:431.172443pt;}
.yc8_c00486{bottom:433.342005pt;}
.yc7_c00486{bottom:451.347509pt;}
.yc6_c00486{bottom:453.761597pt;}
.yc5_c00486{bottom:454.594997pt;}
.yc4_c00486{bottom:456.567525pt;}
.yc3_c00486{bottom:457.661579pt;}
.yc2_c00486{bottom:458.928112pt;}
.yc1_c00486{bottom:459.567915pt;}
.yc0_c00486{bottom:460.224048pt;}
.ybf_c00486{bottom:461.069149pt;}
.ybe_c00486{bottom:462.583995pt;}
.ybd_c00486{bottom:464.310344pt;}
.ybc_c00486{bottom:481.430885pt;}
.ybb_c00486{bottom:482.211440pt;}
.yba_c00486{bottom:485.018989pt;}
.yb9_c00486{bottom:486.804808pt;}
.yb8_c00486{bottom:488.073365pt;}
.yb7_c00486{bottom:488.847507pt;}
.yb6_c00486{bottom:490.613981pt;}
.yb5_c00486{bottom:491.400776pt;}
.yb4_c00486{bottom:493.179869pt;}
.yb3_c00486{bottom:494.446659pt;}
.yb2_c00486{bottom:495.201595pt;}
.yb1_c00486{bottom:496.725749pt;}
.yb0_c00486{bottom:515.662309pt;}
.yaf_c00486{bottom:517.134453pt;}
.yae_c00486{bottom:517.879747pt;}
.yad_c00486{bottom:519.365845pt;}
.yac_c00486{bottom:519.855965pt;}
.yab_c00486{bottom:522.782504pt;}
.yaa_c00486{bottom:524.996821pt;}
.ya9_c00486{bottom:525.713184pt;}
.ya8_c00486{bottom:527.933171pt;}
.ya7_c00486{bottom:528.909752pt;}
.ya6_c00486{bottom:530.572259pt;}
.ya5_c00486{bottom:546.348152pt;}
.ya4_c00486{bottom:548.075523pt;}
.ya3_c00486{bottom:549.055051pt;}
.ya2_c00486{bottom:550.045413pt;}
.ya1_c00486{bottom:550.554253pt;}
.ya0_c00486{bottom:552.735133pt;}
.y9f_c00486{bottom:553.479629pt;}
.y9e_c00486{bottom:554.452467pt;}
.y9d_c00486{bottom:555.453437pt;}
.y9c_c00486{bottom:557.404157pt;}
.y9b_c00486{bottom:558.839120pt;}
.y9a_c00486{bottom:559.583165pt;}
.y99_c00486{bottom:561.064981pt;}
.y98_c00486{bottom:576.940029pt;}
.y97_c00486{bottom:577.446483pt;}
.y96_c00486{bottom:579.771024pt;}
.y95_c00486{bottom:580.508480pt;}
.y94_c00486{bottom:581.670656pt;}
.y93_c00486{bottom:582.615349pt;}
.y92_c00486{bottom:584.293200pt;}
.y91_c00486{bottom:584.972723pt;}
.y90_c00486{bottom:587.318517pt;}
.y8f_c00486{bottom:589.917000pt;}
.y8e_c00486{bottom:591.072917pt;}
.y8d_c00486{bottom:609.725136pt;}
.y8c_c00486{bottom:612.272373pt;}
.y8b_c00486{bottom:613.035005pt;}
.y8a_c00486{bottom:615.586957pt;}
.y89_c00486{bottom:616.606019pt;}
.y88_c00486{bottom:618.365768pt;}
.y87_c00486{bottom:619.402717pt;}
.y86_c00486{bottom:620.170307pt;}
.y85_c00486{bottom:621.948256pt;}
.y84_c00486{bottom:622.914797pt;}
.y83_c00486{bottom:623.723467pt;}
.y82_c00486{bottom:641.212632pt;}
.y81_c00486{bottom:642.225781pt;}
.y80_c00486{bottom:643.697299pt;}
.y7f_c00486{bottom:645.109781pt;}
.y7e_c00486{bottom:646.370336pt;}
.y7d_c00486{bottom:648.014360pt;}
.y7c_c00486{bottom:648.634608pt;}
.y7b_c00486{bottom:649.863781pt;}
.y7a_c00486{bottom:650.264416pt;}
.y79_c00486{bottom:652.293661pt;}
.y78_c00486{bottom:672.718221pt;}
.y77_c00486{bottom:674.482312pt;}
.y76_c00486{bottom:675.284531pt;}
.y75_c00486{bottom:677.243283pt;}
.y74_c00486{bottom:678.223499pt;}
.y73_c00486{bottom:679.818019pt;}
.y72_c00486{bottom:680.990571pt;}
.y71_c00486{bottom:681.561581pt;}
.y70_c00486{bottom:682.751664pt;}
.y6f_c00486{bottom:683.855504pt;}
.y6e_c00486{bottom:684.463653pt;}
.y6d_c00486{bottom:704.323341pt;}
.y6c_c00486{bottom:705.953149pt;}
.y6b_c00486{bottom:706.577645pt;}
.y6a_c00486{bottom:708.428245pt;}
.y69_c00486{bottom:709.895896pt;}
.y68_c00486{bottom:711.120389pt;}
.y67_c00486{bottom:712.532352pt;}
.y66_c00486{bottom:713.369560pt;}
.y65_c00486{bottom:714.624827pt;}
.y64_c00486{bottom:716.635088pt;}
.y63_c00486{bottom:736.016661pt;}
.y62_c00486{bottom:737.306920pt;}
.y61_c00486{bottom:737.829589pt;}
.y60_c00486{bottom:739.847501pt;}
.y5f_c00486{bottom:740.628056pt;}
.y5e_c00486{bottom:741.396304pt;}
.y5d_c00486{bottom:742.161952pt;}
.y5c_c00486{bottom:743.693629pt;}
.y5b_c00486{bottom:744.448253pt;}
.y5a_c00486{bottom:745.481251pt;}
.y59_c00486{bottom:747.019723pt;}
.y58_c00486{bottom:748.274344pt;}
.y57_c00486{bottom:749.048000pt;}
.y56_c00486{bottom:770.832245pt;}
.y55_c00486{bottom:772.007936pt;}
.y54_c00486{bottom:772.551445pt;}
.y53_c00486{bottom:773.094187pt;}
.y52_c00486{bottom:774.038923pt;}
.y51_c00486{bottom:774.590741pt;}
.y50_c00486{bottom:776.999072pt;}
.y4f_c00486{bottom:777.568821pt;}
.y4e_c00486{bottom:779.424565pt;}
.y4d_c00486{bottom:779.975936pt;}
.y4c_c00486{bottom:800.136800pt;}
.y4b_c00486{bottom:802.322475pt;}
.y4a_c00486{bottom:803.489237pt;}
.y49_c00486{bottom:805.439360pt;}
.y48_c00486{bottom:806.029141pt;}
.y47_c00486{bottom:807.220352pt;}
.y46_c00486{bottom:808.972789pt;}
.y45_c00486{bottom:809.365195pt;}
.y44_c00486{bottom:810.520800pt;}
.y43_c00486{bottom:811.094069pt;}
.y42_c00486{bottom:811.664768pt;}
.y41_c00486{bottom:832.207051pt;}
.y40_c00486{bottom:833.041995pt;}
.y3f_c00486{bottom:834.197632pt;}
.y3e_c00486{bottom:834.680085pt;}
.y3d_c00486{bottom:835.197184pt;}
.y3c_c00486{bottom:837.359669pt;}
.y3b_c00486{bottom:837.866581pt;}
.y3a_c00486{bottom:839.193632pt;}
.y39_c00486{bottom:840.872469pt;}
.y38_c00486{bottom:841.674816pt;}
.y37_c00486{bottom:863.975179pt;}
.y36_c00486{bottom:864.648203pt;}
.y35_c00486{bottom:865.592971pt;}
.y34_c00486{bottom:867.017643pt;}
.y33_c00486{bottom:868.434891pt;}
.y32_c00486{bottom:869.391467pt;}
.y31_c00486{bottom:870.561387pt;}
.y30_c00486{bottom:871.258155pt;}
.y2f_c00486{bottom:872.675531pt;}
.y2e_c00486{bottom:873.365899pt;}
.y2d_c00486{bottom:874.087019pt;}
.y2c_c00486{bottom:874.806667pt;}
.y2a_c00486{bottom:903.759199pt;}
.y2b_c00486{bottom:903.759327pt;}
.y29_c00486{bottom:903.759641pt;}
.y28_c00486{bottom:903.759816pt;}
.y27_c00486{bottom:924.538985pt;}
.y26_c00486{bottom:925.734932pt;}
.y25_c00486{bottom:926.155012pt;}
.y24_c00486{bottom:926.930803pt;}
.y23_c00486{bottom:927.906171pt;}
.y22_c00486{bottom:928.482856pt;}
.y21_c00486{bottom:929.687467pt;}
.y20_c00486{bottom:931.618689pt;}
.y1f_c00486{bottom:932.216908pt;}
.y1e_c00486{bottom:933.393459pt;}
.y1d_c00486{bottom:934.952412pt;}
.y1c_c00486{bottom:936.473273pt;}
.y1b_c00486{bottom:956.932607pt;}
.y1a_c00486{bottom:958.021643pt;}
.y19_c00486{bottom:958.596605pt;}
.y18_c00486{bottom:960.446809pt;}
.y17_c00486{bottom:961.480631pt;}
.y16_c00486{bottom:962.282760pt;}
.y15_c00486{bottom:963.738507pt;}
.y14_c00486{bottom:964.369140pt;}
.y13_c00486{bottom:965.205163pt;}
.y12_c00486{bottom:966.232711pt;}
.y11_c00486{bottom:967.473948pt;}
.y10_c00486{bottom:968.052888pt;}
.yf_c00486{bottom:968.877697pt;}
.ye_c00486{bottom:987.540341pt;}
.yd_c00486{bottom:989.219840pt;}
.yc_c00486{bottom:989.789916pt;}
.yb_c00486{bottom:990.341220pt;}
.ya_c00486{bottom:991.085589pt;}
.y9_c00486{bottom:991.842245pt;}
.y8_c00486{bottom:992.594671pt;}
.y7_c00486{bottom:992.989871pt;}
.y6_c00486{bottom:995.199849pt;}
.y5_c00486{bottom:995.743249pt;}
.y4_c00486{bottom:997.220411pt;}
.y3_c00486{bottom:997.771993pt;}
.y2_c00486{bottom:998.884000pt;}
.y1_c00486{bottom:1046.293333pt;}
.h2_c00486{height:58.666667pt;}
.hc_c00486{height:58.686493pt;}
.hd_c00486{height:63.970873pt;}
.h14_c00486{height:64.007328pt;}
.h3_c00486{height:64.011551pt;}
.he_c00486{height:64.014110pt;}
.h6_c00486{height:64.018429pt;}
.h9_c00486{height:64.021628pt;}
.h10_c00486{height:64.030745pt;}
.h13_c00486{height:69.341272pt;}
.h5_c00486{height:69.345847pt;}
.ha_c00486{height:69.356764pt;}
.h15_c00486{height:74.648819pt;}
.h4_c00486{height:74.680143pt;}
.hf_c00486{height:74.683129pt;}
.h7_c00486{height:74.688168pt;}
.hb_c00486{height:74.691900pt;}
.h12_c00486{height:80.009159pt;}
.h8_c00486{height:80.027035pt;}
.h11_c00486{height:101.353598pt;}
.h0_c00486{height:1107.840000pt;}
.h1_c00486{height:1108.000000pt;}
.w0_c00486{width:796.533333pt;}
.w1_c00486{width:796.666667pt;}
.x0_c00486{left:0.000000pt;}
.xc2_c00486{left:133.393333pt;}
.xc9_c00486{left:139.768000pt;}
.xaf_c00486{left:141.018452pt;}
.x8f_c00486{left:142.982896pt;}
.x76_c00486{left:143.960144pt;}
.x67_c00486{left:145.237027pt;}
.x5f_c00486{left:146.819085pt;}
.x41_c00486{left:147.833152pt;}
.x25_c00486{left:149.517927pt;}
.x3_c00486{left:151.456000pt;}
.x42_c00486{left:176.865973pt;}
.x38_c00486{left:178.063627pt;}
.xb5_c00486{left:189.170831pt;}
.x10_c00486{left:190.065687pt;}
.x9b_c00486{left:192.396835pt;}
.x6f_c00486{left:193.357827pt;}
.x2f_c00486{left:196.688619pt;}
.xb0_c00486{left:199.350885pt;}
.x77_c00486{left:203.211003pt;}
.x39_c00486{left:206.730379pt;}
.x4_c00486{left:209.982667pt;}
.x82_c00486{left:212.166749pt;}
.x68_c00486{left:213.514360pt;}
.x11_c00486{left:217.657981pt;}
.x90_c00486{left:221.440376pt;}
.x1c_c00486{left:227.721260pt;}
.xaa_c00486{left:228.804000pt;}
.x8a_c00486{left:231.711184pt;}
.x59_c00486{left:233.232835pt;}
.x5_c00486{left:239.013333pt;}
.x49_c00486{left:244.026667pt;}
.x26_c00486{left:245.494667pt;}
.xb6_c00486{left:247.783540pt;}
.x97_c00486{left:249.757360pt;}
.x83_c00486{left:251.215755pt;}
.xbb_c00486{left:257.774667pt;}
.x60_c00486{left:262.547464pt;}
.x3a_c00486{left:264.497248pt;}
.xb1_c00486{left:267.321173pt;}
.xb7_c00486{left:271.144096pt;}
.x43_c00486{left:274.533685pt;}
.x27_c00486{left:275.480000pt;}
.x12_c00486{left:276.738393pt;}
.x8b_c00486{left:280.433851pt;}
.x69_c00486{left:281.897027pt;}
.x3b_c00486{left:284.127136pt;}
.x9f_c00486{left:287.985664pt;}
.x78_c00486{left:290.354589pt;}
.x5a_c00486{left:292.758125pt;}
.x30_c00486{left:295.434528pt;}
.xa4_c00486{left:297.426532pt;}
.x70_c00486{left:301.612776pt;}
.x52_c00486{left:303.079547pt;}
.x44_c00486{left:304.554635pt;}
.x1d_c00486{left:305.699791pt;}
.x98_c00486{left:309.690240pt;}
.x6a_c00486{left:311.419693pt;}
.xca_c00486{left:314.522404pt;}
.xbe_c00486{left:315.806667pt;}
.x6_c00486{left:316.758667pt;}
.x61_c00486{left:321.061723pt;}
.x4a_c00486{left:322.037333pt;}
.x13_c00486{left:325.695211pt;}
.x91_c00486{left:328.731539pt;}
.x28_c00486{left:334.292000pt;}
.xab_c00486{left:336.252000pt;}
.x84_c00486{left:340.038077pt;}
.x53_c00486{left:342.926045pt;}
.xc7_c00486{left:344.351568pt;}
.x7_c00486{left:345.358667pt;}
.x8c_c00486{left:348.860517pt;}
.x62_c00486{left:350.613571pt;}
.xbc_c00486{left:355.946667pt;}
.x92_c00486{left:358.534624pt;}
.xc4_c00486{left:363.422181pt;}
.x1e_c00486{left:364.534676pt;}
.x14_c00486{left:365.484357pt;}
.x79_c00486{left:368.409968pt;}
.x3c_c00486{left:371.764885pt;}
.x31_c00486{left:373.463616pt;}
.xb2_c00486{left:374.881463pt;}
.xa5_c00486{left:375.809404pt;}
.x5b_c00486{left:379.934381pt;}
.x4b_c00486{left:381.209333pt;}
.xbf_c00486{left:383.516000pt;}
.x93_c00486{left:387.606973pt;}
.x29_c00486{left:393.349333pt;}
.x1f_c00486{left:394.475452pt;}
.x15_c00486{left:395.516551pt;}
.x71_c00486{left:399.379205pt;}
.x1_c00486{left:401.520000pt;}
.x32_c00486{left:403.256608pt;}
.xb8_c00486{left:404.531163pt;}
.xa0_c00486{left:405.791912pt;}
.x7a_c00486{left:408.448341pt;}
.x54_c00486{left:410.164115pt;}
.xc5_c00486{left:413.218445pt;}
.x6b_c00486{left:418.985027pt;}
.x2_c00486{left:421.680000pt;}
.x72_c00486{left:427.669995pt;}
.x63_c00486{left:428.881061pt;}
.x3d_c00486{left:431.293248pt;}
.xc0_c00486{left:432.993333pt;}
.xb9_c00486{left:434.014823pt;}
.x9c_c00486{left:435.608773pt;}
.x94_c00486{left:445.146269pt;}
.x7b_c00486{left:447.353347pt;}
.x4c_c00486{left:449.964000pt;}
.x85_c00486{left:457.221093pt;}
.x6c_c00486{left:458.179693pt;}
.x45_c00486{left:460.357323pt;}
.x8_c00486{left:461.673333pt;}
.xc8_c00486{left:463.271920pt;}
.x16_c00486{left:464.833916pt;}
.x55_c00486{left:468.498373pt;}
.x2a_c00486{left:471.128000pt;}
.xa6_c00486{left:473.279836pt;}
.x7c_c00486{left:477.116776pt;}
.xcb_c00486{left:480.159268pt;}
.xc1_c00486{left:481.512000pt;}
.x9_c00486{left:482.473333pt;}
.x64_c00486{left:488.910195pt;}
.x20_c00486{left:491.064295pt;}
.xb3_c00486{left:493.723467pt;}
.x95_c00486{left:494.871435pt;}
.x73_c00486{left:497.590968pt;}
.x17_c00486{left:503.049805pt;}
.x4d_c00486{left:508.874667pt;}
.x46_c00486{left:510.060608pt;}
.x2b_c00486{left:510.985333pt;}
.xba_c00486{left:512.837897pt;}
.xbd_c00486{left:520.948000pt;}
.xa_c00486{left:522.074667pt;}
.x99_c00486{left:524.341744pt;}
.x8d_c00486{left:525.628517pt;}
.x33_c00486{left:530.492651pt;}
.xb4_c00486{left:531.837608pt;}
.x74_c00486{left:536.953013pt;}
.x47_c00486{left:538.622699pt;}
.x21_c00486{left:551.305821pt;}
.x18_c00486{left:552.266597pt;}
.x65_c00486{left:556.168264pt;}
.x3e_c00486{left:558.301440pt;}
.x34_c00486{left:560.932437pt;}
.xb_c00486{left:561.898667pt;}
.x7d_c00486{left:564.332363pt;}
.x48_c00486{left:567.216789pt;}
.x2c_c00486{left:570.037333pt;}
.xa7_c00486{left:571.598752pt;}
.x86_c00486{left:574.296144pt;}
.x22_c00486{left:580.113264pt;}
.x7e_c00486{left:584.672883pt;}
.x6d_c00486{left:585.663693pt;}
.x35_c00486{left:589.317205pt;}
.x87_c00486{left:593.916664pt;}
.x4e_c00486{left:597.892000pt;}
.xc_c00486{left:601.076000pt;}
.xac_c00486{left:602.054667pt;}
.x5c_c00486{left:606.591040pt;}
.xa1_c00486{left:610.807907pt;}
.x9d_c00486{left:611.860445pt;}
.x3f_c00486{left:616.644373pt;}
.x96_c00486{left:622.446045pt;}
.x7f_c00486{left:624.303256pt;}
.x56_c00486{left:626.502896pt;}
.x23_c00486{left:628.850993pt;}
.xd_c00486{left:630.092000pt;}
.x19_c00486{left:640.379253pt;}
.x5d_c00486{left:646.682613pt;}
.x88_c00486{left:653.383557pt;}
.x57_c00486{left:656.269445pt;}
.x36_c00486{left:657.257931pt;}
.xc3_c00486{left:659.022635pt;}
.xe_c00486{left:660.096000pt;}
.x80_c00486{left:663.465595pt;}
.x1a_c00486{left:667.762215pt;}
.x2d_c00486{left:668.764000pt;}
.xa8_c00486{left:670.173412pt;}
.x9a_c00486{left:671.296784pt;}
.x66_c00486{left:674.516989pt;}
.x4f_c00486{left:675.504000pt;}
.x6e_c00486{left:683.634360pt;}
.x24_c00486{left:688.632520pt;}
.xa2_c00486{left:690.159195pt;}
.x9e_c00486{left:691.836765pt;}
.x50_c00486{left:695.606667pt;}
.x2e_c00486{left:696.806667pt;}
.xc6_c00486{left:698.589336pt;}
.xad_c00486{left:700.248000pt;}
.x8e_c00486{left:702.296517pt;}
.x37_c00486{left:706.388853pt;}
.xa9_c00486{left:709.383496pt;}
.x75_c00486{left:712.968832pt;}
.x1b_c00486{left:719.604239pt;}
.xa3_c00486{left:721.151731pt;}
.x40_c00486{left:725.946869pt;}
.xae_c00486{left:729.292000pt;}
.x81_c00486{left:732.571397pt;}
.x58_c00486{left:733.887533pt;}
.x5e_c00486{left:734.853675pt;}
.x89_c00486{left:742.056512pt;}
.x51_c00486{left:745.232000pt;}
.xf_c00486{left:748.490667pt;}
}





/* 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_c00487 {
    display:none;
  }
  .loading-indicator_c00487.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00487 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_c00487 { 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_c00487" -> "#page-container .classname_c00487")
 */
.pf_c00487 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00487 { /* 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_c00487.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00487 { /* 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_c00487 { /* 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_c00487 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00487 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00487 {overflow:visible;}
  }
}
.c_c00487 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00487 { /* 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_c00487:after { /* webkit #35443 */
  content: '';
}
.t_c00487:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00487 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 */
}
.__c00487 { /* 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_c00487 { /* info for Javascript */
  display:none;
}
.l_c00487 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00487 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00487 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00487: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_c00487 {
    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_c00487.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00487.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_c00487 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00487{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00487;src:url('chunks/assets/font_cfe63ee56e9e10a97d33a3db.woff2')format("woff");}.ff1_c00487{font-family:ff1_c00487;line-height:1.000000;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;}
.m1_c00487{transform:matrix(0.006767,-0.000339,0.012497,0.249687,0,0);-ms-transform:matrix(0.006767,-0.000339,0.012497,0.249687,0,0);-webkit-transform:matrix(0.006767,-0.000339,0.012497,0.249687,0,0);}
.m9_c00487{transform:matrix(0.009079,-0.000454,0.012497,0.249687,0,0);-ms-transform:matrix(0.009079,-0.000454,0.012497,0.249687,0,0);-webkit-transform:matrix(0.009079,-0.000454,0.012497,0.249687,0,0);}
.m1e_c00487{transform:matrix(0.014557,-0.000729,0.012497,0.249687,0,0);-ms-transform:matrix(0.014557,-0.000729,0.012497,0.249687,0,0);-webkit-transform:matrix(0.014557,-0.000729,0.012497,0.249687,0,0);}
.m8b_c00487{transform:matrix(0.024163,-0.001040,0.010751,0.249769,0,0);-ms-transform:matrix(0.024163,-0.001040,0.010751,0.249769,0,0);-webkit-transform:matrix(0.024163,-0.001040,0.010751,0.249769,0,0);}
.m41_c00487{transform:matrix(0.025906,-0.001115,0.010751,0.249769,0,0);-ms-transform:matrix(0.025906,-0.001115,0.010751,0.249769,0,0);-webkit-transform:matrix(0.025906,-0.001115,0.010751,0.249769,0,0);}
.m36_c00487{transform:matrix(0.087359,-0.003760,0.010751,0.249769,0,0);-ms-transform:matrix(0.087359,-0.003760,0.010751,0.249769,0,0);-webkit-transform:matrix(0.087359,-0.003760,0.010751,0.249769,0,0);}
.m1f_c00487{transform:matrix(0.116394,-0.005826,0.012497,0.249687,0,0);-ms-transform:matrix(0.116394,-0.005826,0.012497,0.249687,0,0);-webkit-transform:matrix(0.116394,-0.005826,0.012497,0.249687,0,0);}
.m47_c00487{transform:matrix(0.172036,-0.007405,0.010751,0.249769,0,0);-ms-transform:matrix(0.172036,-0.007405,0.010751,0.249769,0,0);-webkit-transform:matrix(0.172036,-0.007405,0.010751,0.249769,0,0);}
.m30_c00487{transform:matrix(0.173629,-0.005909,0.008504,0.249855,0,0);-ms-transform:matrix(0.173629,-0.005909,0.008504,0.249855,0,0);-webkit-transform:matrix(0.173629,-0.005909,0.008504,0.249855,0,0);}
.m32_c00487{transform:matrix(0.177787,-0.006051,0.008504,0.249855,0,0);-ms-transform:matrix(0.177787,-0.006051,0.008504,0.249855,0,0);-webkit-transform:matrix(0.177787,-0.006051,0.008504,0.249855,0,0);}
.m28_c00487{transform:matrix(0.184110,-0.009215,0.012497,0.249687,0,0);-ms-transform:matrix(0.184110,-0.009215,0.012497,0.249687,0,0);-webkit-transform:matrix(0.184110,-0.009215,0.012497,0.249687,0,0);}
.m20_c00487{transform:matrix(0.185158,-0.009267,0.012497,0.249687,0,0);-ms-transform:matrix(0.185158,-0.009267,0.012497,0.249687,0,0);-webkit-transform:matrix(0.185158,-0.009267,0.012497,0.249687,0,0);}
.m4a_c00487{transform:matrix(0.185458,-0.007983,0.010751,0.249769,0,0);-ms-transform:matrix(0.185458,-0.007983,0.010751,0.249769,0,0);-webkit-transform:matrix(0.185458,-0.007983,0.010751,0.249769,0,0);}
.m49_c00487{transform:matrix(0.189490,-0.008156,0.010751,0.249769,0,0);-ms-transform:matrix(0.189490,-0.008156,0.010751,0.249769,0,0);-webkit-transform:matrix(0.189490,-0.008156,0.010751,0.249769,0,0);}
.m4d_c00487{transform:matrix(0.189584,-0.008160,0.010751,0.249769,0,0);-ms-transform:matrix(0.189584,-0.008160,0.010751,0.249769,0,0);-webkit-transform:matrix(0.189584,-0.008160,0.010751,0.249769,0,0);}
.m58_c00487{transform:matrix(0.190768,-0.008211,0.010751,0.249769,0,0);-ms-transform:matrix(0.190768,-0.008211,0.010751,0.249769,0,0);-webkit-transform:matrix(0.190768,-0.008211,0.010751,0.249769,0,0);}
.m88_c00487{transform:matrix(0.190788,-0.008212,0.010751,0.249769,0,0);-ms-transform:matrix(0.190788,-0.008212,0.010751,0.249769,0,0);-webkit-transform:matrix(0.190788,-0.008212,0.010751,0.249769,0,0);}
.m4c_c00487{transform:matrix(0.194790,-0.008384,0.010751,0.249769,0,0);-ms-transform:matrix(0.194790,-0.008384,0.010751,0.249769,0,0);-webkit-transform:matrix(0.194790,-0.008384,0.010751,0.249769,0,0);}
.m7b_c00487{transform:matrix(0.196918,-0.008476,0.010751,0.249769,0,0);-ms-transform:matrix(0.196918,-0.008476,0.010751,0.249769,0,0);-webkit-transform:matrix(0.196918,-0.008476,0.010751,0.249769,0,0);}
.m80_c00487{transform:matrix(0.200369,-0.008625,0.010751,0.249769,0,0);-ms-transform:matrix(0.200369,-0.008625,0.010751,0.249769,0,0);-webkit-transform:matrix(0.200369,-0.008625,0.010751,0.249769,0,0);}
.m65_c00487{transform:matrix(0.201419,-0.008670,0.010751,0.249769,0,0);-ms-transform:matrix(0.201419,-0.008670,0.010751,0.249769,0,0);-webkit-transform:matrix(0.201419,-0.008670,0.010751,0.249769,0,0);}
.m44_c00487{transform:matrix(0.205520,-0.008846,0.010751,0.249769,0,0);-ms-transform:matrix(0.205520,-0.008846,0.010751,0.249769,0,0);-webkit-transform:matrix(0.205520,-0.008846,0.010751,0.249769,0,0);}
.m2f_c00487{transform:matrix(0.205731,-0.007002,0.008504,0.249855,0,0);-ms-transform:matrix(0.205731,-0.007002,0.008504,0.249855,0,0);-webkit-transform:matrix(0.205731,-0.007002,0.008504,0.249855,0,0);}
.m7f_c00487{transform:matrix(0.206334,-0.008881,0.010751,0.249769,0,0);-ms-transform:matrix(0.206334,-0.008881,0.010751,0.249769,0,0);-webkit-transform:matrix(0.206334,-0.008881,0.010751,0.249769,0,0);}
.ma_c00487{transform:matrix(0.207166,-0.010369,0.012497,0.249687,0,0);-ms-transform:matrix(0.207166,-0.010369,0.012497,0.249687,0,0);-webkit-transform:matrix(0.207166,-0.010369,0.012497,0.249687,0,0);}
.m33_c00487{transform:matrix(0.208699,-0.007103,0.008504,0.249855,0,0);-ms-transform:matrix(0.208699,-0.007103,0.008504,0.249855,0,0);-webkit-transform:matrix(0.208699,-0.007103,0.008504,0.249855,0,0);}
.m2a_c00487{transform:matrix(0.211665,-0.010594,0.012497,0.249687,0,0);-ms-transform:matrix(0.211665,-0.010594,0.012497,0.249687,0,0);-webkit-transform:matrix(0.211665,-0.010594,0.012497,0.249687,0,0);}
.m31_c00487{transform:matrix(0.214686,-0.007307,0.008504,0.249855,0,0);-ms-transform:matrix(0.214686,-0.007307,0.008504,0.249855,0,0);-webkit-transform:matrix(0.214686,-0.007307,0.008504,0.249855,0,0);}
.m6a_c00487{transform:matrix(0.214881,-0.009249,0.010751,0.249769,0,0);-ms-transform:matrix(0.214881,-0.009249,0.010751,0.249769,0,0);-webkit-transform:matrix(0.214881,-0.009249,0.010751,0.249769,0,0);}
.m69_c00487{transform:matrix(0.217953,-0.009381,0.010751,0.249769,0,0);-ms-transform:matrix(0.217953,-0.009381,0.010751,0.249769,0,0);-webkit-transform:matrix(0.217953,-0.009381,0.010751,0.249769,0,0);}
.m2d_c00487{transform:matrix(0.219261,-0.010974,0.012497,0.249687,0,0);-ms-transform:matrix(0.219261,-0.010974,0.012497,0.249687,0,0);-webkit-transform:matrix(0.219261,-0.010974,0.012497,0.249687,0,0);}
.m1a_c00487{transform:matrix(0.222372,-0.011130,0.012497,0.249687,0,0);-ms-transform:matrix(0.222372,-0.011130,0.012497,0.249687,0,0);-webkit-transform:matrix(0.222372,-0.011130,0.012497,0.249687,0,0);}
.m7a_c00487{transform:matrix(0.222734,-0.009587,0.010751,0.249769,0,0);-ms-transform:matrix(0.222734,-0.009587,0.010751,0.249769,0,0);-webkit-transform:matrix(0.222734,-0.009587,0.010751,0.249769,0,0);}
.m7c_c00487{transform:matrix(0.222924,-0.009595,0.010751,0.249769,0,0);-ms-transform:matrix(0.222924,-0.009595,0.010751,0.249769,0,0);-webkit-transform:matrix(0.222924,-0.009595,0.010751,0.249769,0,0);}
.m50_c00487{transform:matrix(0.224078,-0.009645,0.010751,0.249769,0,0);-ms-transform:matrix(0.224078,-0.009645,0.010751,0.249769,0,0);-webkit-transform:matrix(0.224078,-0.009645,0.010751,0.249769,0,0);}
.m60_c00487{transform:matrix(0.224557,-0.009666,0.010751,0.249769,0,0);-ms-transform:matrix(0.224557,-0.009666,0.010751,0.249769,0,0);-webkit-transform:matrix(0.224557,-0.009666,0.010751,0.249769,0,0);}
.m46_c00487{transform:matrix(0.225726,-0.009716,0.010751,0.249769,0,0);-ms-transform:matrix(0.225726,-0.009716,0.010751,0.249769,0,0);-webkit-transform:matrix(0.225726,-0.009716,0.010751,0.249769,0,0);}
.m21_c00487{transform:matrix(0.225992,-0.011311,0.012497,0.249687,0,0);-ms-transform:matrix(0.225992,-0.011311,0.012497,0.249687,0,0);-webkit-transform:matrix(0.225992,-0.011311,0.012497,0.249687,0,0);}
.m40_c00487{transform:matrix(0.226915,-0.009767,0.010751,0.249769,0,0);-ms-transform:matrix(0.226915,-0.009767,0.010751,0.249769,0,0);-webkit-transform:matrix(0.226915,-0.009767,0.010751,0.249769,0,0);}
.m34_c00487{transform:matrix(0.227084,-0.007729,0.008504,0.249855,0,0);-ms-transform:matrix(0.227084,-0.007729,0.008504,0.249855,0,0);-webkit-transform:matrix(0.227084,-0.007729,0.008504,0.249855,0,0);}
.m4e_c00487{transform:matrix(0.229253,-0.009868,0.010751,0.249769,0,0);-ms-transform:matrix(0.229253,-0.009868,0.010751,0.249769,0,0);-webkit-transform:matrix(0.229253,-0.009868,0.010751,0.249769,0,0);}
.m56_c00487{transform:matrix(0.230182,-0.009908,0.010751,0.249769,0,0);-ms-transform:matrix(0.230182,-0.009908,0.010751,0.249769,0,0);-webkit-transform:matrix(0.230182,-0.009908,0.010751,0.249769,0,0);}
.m3d_c00487{transform:matrix(0.230721,-0.009931,0.010751,0.249769,0,0);-ms-transform:matrix(0.230721,-0.009931,0.010751,0.249769,0,0);-webkit-transform:matrix(0.230721,-0.009931,0.010751,0.249769,0,0);}
.m54_c00487{transform:matrix(0.232215,-0.009995,0.010751,0.249769,0,0);-ms-transform:matrix(0.232215,-0.009995,0.010751,0.249769,0,0);-webkit-transform:matrix(0.232215,-0.009995,0.010751,0.249769,0,0);}
.m8f_c00487{transform:matrix(0.233044,-0.010031,0.010751,0.249769,0,0);-ms-transform:matrix(0.233044,-0.010031,0.010751,0.249769,0,0);-webkit-transform:matrix(0.233044,-0.010031,0.010751,0.249769,0,0);}
.m7e_c00487{transform:matrix(0.233289,-0.010041,0.010751,0.249769,0,0);-ms-transform:matrix(0.233289,-0.010041,0.010751,0.249769,0,0);-webkit-transform:matrix(0.233289,-0.010041,0.010751,0.249769,0,0);}
.m67_c00487{transform:matrix(0.233614,-0.010055,0.010751,0.249769,0,0);-ms-transform:matrix(0.233614,-0.010055,0.010751,0.249769,0,0);-webkit-transform:matrix(0.233614,-0.010055,0.010751,0.249769,0,0);}
.m59_c00487{transform:matrix(0.235232,-0.010125,0.010751,0.249769,0,0);-ms-transform:matrix(0.235232,-0.010125,0.010751,0.249769,0,0);-webkit-transform:matrix(0.235232,-0.010125,0.010751,0.249769,0,0);}
.m3b_c00487{transform:matrix(0.235597,-0.010141,0.010751,0.249769,0,0);-ms-transform:matrix(0.235597,-0.010141,0.010751,0.249769,0,0);-webkit-transform:matrix(0.235597,-0.010141,0.010751,0.249769,0,0);}
.m1b_c00487{transform:matrix(0.235795,-0.011802,0.012497,0.249687,0,0);-ms-transform:matrix(0.235795,-0.011802,0.012497,0.249687,0,0);-webkit-transform:matrix(0.235795,-0.011802,0.012497,0.249687,0,0);}
.m4b_c00487{transform:matrix(0.236316,-0.010172,0.010751,0.249769,0,0);-ms-transform:matrix(0.236316,-0.010172,0.010751,0.249769,0,0);-webkit-transform:matrix(0.236316,-0.010172,0.010751,0.249769,0,0);}
.m68_c00487{transform:matrix(0.236536,-0.010181,0.010751,0.249769,0,0);-ms-transform:matrix(0.236536,-0.010181,0.010751,0.249769,0,0);-webkit-transform:matrix(0.236536,-0.010181,0.010751,0.249769,0,0);}
.m52_c00487{transform:matrix(0.237210,-0.010210,0.010751,0.249769,0,0);-ms-transform:matrix(0.237210,-0.010210,0.010751,0.249769,0,0);-webkit-transform:matrix(0.237210,-0.010210,0.010751,0.249769,0,0);}
.m3a_c00487{transform:matrix(0.237790,-0.010235,0.010751,0.249769,0,0);-ms-transform:matrix(0.237790,-0.010235,0.010751,0.249769,0,0);-webkit-transform:matrix(0.237790,-0.010235,0.010751,0.249769,0,0);}
.m4f_c00487{transform:matrix(0.239548,-0.010311,0.010751,0.249769,0,0);-ms-transform:matrix(0.239548,-0.010311,0.010751,0.249769,0,0);-webkit-transform:matrix(0.239548,-0.010311,0.010751,0.249769,0,0);}
.m48_c00487{transform:matrix(0.240203,-0.010339,0.010751,0.249769,0,0);-ms-transform:matrix(0.240203,-0.010339,0.010751,0.249769,0,0);-webkit-transform:matrix(0.240203,-0.010339,0.010751,0.249769,0,0);}
.m38_c00487{transform:matrix(0.240357,-0.010346,0.010751,0.249769,0,0);-ms-transform:matrix(0.240357,-0.010346,0.010751,0.249769,0,0);-webkit-transform:matrix(0.240357,-0.010346,0.010751,0.249769,0,0);}
.m55_c00487{transform:matrix(0.241411,-0.010391,0.010751,0.249769,0,0);-ms-transform:matrix(0.241411,-0.010391,0.010751,0.249769,0,0);-webkit-transform:matrix(0.241411,-0.010391,0.010751,0.249769,0,0);}
.m2_c00487{transform:matrix(0.241737,-0.012099,0.012497,0.249687,0,0);-ms-transform:matrix(0.241737,-0.012099,0.012497,0.249687,0,0);-webkit-transform:matrix(0.241737,-0.012099,0.012497,0.249687,0,0);}
.mf_c00487{transform:matrix(0.243016,-0.012163,0.012497,0.249687,0,0);-ms-transform:matrix(0.243016,-0.012163,0.012497,0.249687,0,0);-webkit-transform:matrix(0.243016,-0.012163,0.012497,0.249687,0,0);}
.m5a_c00487{transform:matrix(0.243045,-0.010461,0.010751,0.249769,0,0);-ms-transform:matrix(0.243045,-0.010461,0.010751,0.249769,0,0);-webkit-transform:matrix(0.243045,-0.010461,0.010751,0.249769,0,0);}
.m73_c00487{transform:matrix(0.243495,-0.010481,0.010751,0.249769,0,0);-ms-transform:matrix(0.243495,-0.010481,0.010751,0.249769,0,0);-webkit-transform:matrix(0.243495,-0.010481,0.010751,0.249769,0,0);}
.m51_c00487{transform:matrix(0.245852,-0.010582,0.010751,0.249769,0,0);-ms-transform:matrix(0.245852,-0.010582,0.010751,0.249769,0,0);-webkit-transform:matrix(0.245852,-0.010582,0.010751,0.249769,0,0);}
.m87_c00487{transform:matrix(0.247396,-0.010649,0.010751,0.249769,0,0);-ms-transform:matrix(0.247396,-0.010649,0.010751,0.249769,0,0);-webkit-transform:matrix(0.247396,-0.010649,0.010751,0.249769,0,0);}
.m43_c00487{transform:matrix(0.247691,-0.010661,0.010751,0.249769,0,0);-ms-transform:matrix(0.247691,-0.010661,0.010751,0.249769,0,0);-webkit-transform:matrix(0.247691,-0.010661,0.010751,0.249769,0,0);}
.m19_c00487{transform:matrix(0.248050,-0.012415,0.012497,0.249687,0,0);-ms-transform:matrix(0.248050,-0.012415,0.012497,0.249687,0,0);-webkit-transform:matrix(0.248050,-0.012415,0.012497,0.249687,0,0);}
.m8c_c00487{transform:matrix(0.248650,-0.010703,0.010751,0.249769,0,0);-ms-transform:matrix(0.248650,-0.010703,0.010751,0.249769,0,0);-webkit-transform:matrix(0.248650,-0.010703,0.010751,0.249769,0,0);}
.m6b_c00487{transform:matrix(0.248840,-0.010711,0.010751,0.249769,0,0);-ms-transform:matrix(0.248840,-0.010711,0.010751,0.249769,0,0);-webkit-transform:matrix(0.248840,-0.010711,0.010751,0.249769,0,0);}
.m2b_c00487{transform:matrix(0.248883,-0.012457,0.012497,0.249687,0,0);-ms-transform:matrix(0.248883,-0.012457,0.012497,0.249687,0,0);-webkit-transform:matrix(0.248883,-0.012457,0.012497,0.249687,0,0);}
.m70_c00487{transform:matrix(0.249074,-0.010721,0.010751,0.249769,0,0);-ms-transform:matrix(0.249074,-0.010721,0.010751,0.249769,0,0);-webkit-transform:matrix(0.249074,-0.010721,0.010751,0.249769,0,0);}
.m5c_c00487{transform:matrix(0.249694,-0.010748,0.010751,0.249769,0,0);-ms-transform:matrix(0.249694,-0.010748,0.010751,0.249769,0,0);-webkit-transform:matrix(0.249694,-0.010748,0.010751,0.249769,0,0);}
.m66_c00487{transform:matrix(0.250508,-0.010783,0.010751,0.249769,0,0);-ms-transform:matrix(0.250508,-0.010783,0.010751,0.249769,0,0);-webkit-transform:matrix(0.250508,-0.010783,0.010751,0.249769,0,0);}
.m45_c00487{transform:matrix(0.250773,-0.010794,0.010751,0.249769,0,0);-ms-transform:matrix(0.250773,-0.010794,0.010751,0.249769,0,0);-webkit-transform:matrix(0.250773,-0.010794,0.010751,0.249769,0,0);}
.m7d_c00487{transform:matrix(0.251502,-0.010825,0.010751,0.249769,0,0);-ms-transform:matrix(0.251502,-0.010825,0.010751,0.249769,0,0);-webkit-transform:matrix(0.251502,-0.010825,0.010751,0.249769,0,0);}
.m26_c00487{transform:matrix(0.253218,-0.012674,0.012497,0.249687,0,0);-ms-transform:matrix(0.253218,-0.012674,0.012497,0.249687,0,0);-webkit-transform:matrix(0.253218,-0.012674,0.012497,0.249687,0,0);}
.m5b_c00487{transform:matrix(0.254394,-0.010950,0.010751,0.249769,0,0);-ms-transform:matrix(0.254394,-0.010950,0.010751,0.249769,0,0);-webkit-transform:matrix(0.254394,-0.010950,0.010751,0.249769,0,0);}
.m3_c00487{transform:matrix(0.255795,-0.012803,0.012497,0.249687,0,0);-ms-transform:matrix(0.255795,-0.012803,0.012497,0.249687,0,0);-webkit-transform:matrix(0.255795,-0.012803,0.012497,0.249687,0,0);}
.m89_c00487{transform:matrix(0.255923,-0.011016,0.010751,0.249769,0,0);-ms-transform:matrix(0.255923,-0.011016,0.010751,0.249769,0,0);-webkit-transform:matrix(0.255923,-0.011016,0.010751,0.249769,0,0);}
.m72_c00487{transform:matrix(0.256123,-0.011024,0.010751,0.249769,0,0);-ms-transform:matrix(0.256123,-0.011024,0.010751,0.249769,0,0);-webkit-transform:matrix(0.256123,-0.011024,0.010751,0.249769,0,0);}
.m3f_c00487{transform:matrix(0.256842,-0.011055,0.010751,0.249769,0,0);-ms-transform:matrix(0.256842,-0.011055,0.010751,0.249769,0,0);-webkit-transform:matrix(0.256842,-0.011055,0.010751,0.249769,0,0);}
.m6e_c00487{transform:matrix(0.256862,-0.011056,0.010751,0.249769,0,0);-ms-transform:matrix(0.256862,-0.011056,0.010751,0.249769,0,0);-webkit-transform:matrix(0.256862,-0.011056,0.010751,0.249769,0,0);}
.m14_c00487{transform:matrix(0.257892,-0.012908,0.012497,0.249687,0,0);-ms-transform:matrix(0.257892,-0.012908,0.012497,0.249687,0,0);-webkit-transform:matrix(0.257892,-0.012908,0.012497,0.249687,0,0);}
.m3e_c00487{transform:matrix(0.259480,-0.011169,0.010751,0.249769,0,0);-ms-transform:matrix(0.259480,-0.011169,0.010751,0.249769,0,0);-webkit-transform:matrix(0.259480,-0.011169,0.010751,0.249769,0,0);}
.me_c00487{transform:matrix(0.261083,-0.013067,0.012497,0.249687,0,0);-ms-transform:matrix(0.261083,-0.013067,0.012497,0.249687,0,0);-webkit-transform:matrix(0.261083,-0.013067,0.012497,0.249687,0,0);}
.m57_c00487{transform:matrix(0.261088,-0.011238,0.010751,0.249769,0,0);-ms-transform:matrix(0.261088,-0.011238,0.010751,0.249769,0,0);-webkit-transform:matrix(0.261088,-0.011238,0.010751,0.249769,0,0);}
.m29_c00487{transform:matrix(0.262456,-0.013136,0.012497,0.249687,0,0);-ms-transform:matrix(0.262456,-0.013136,0.012497,0.249687,0,0);-webkit-transform:matrix(0.262456,-0.013136,0.012497,0.249687,0,0);}
.m27_c00487{transform:matrix(0.264044,-0.013215,0.012497,0.249687,0,0);-ms-transform:matrix(0.264044,-0.013215,0.012497,0.249687,0,0);-webkit-transform:matrix(0.264044,-0.013215,0.012497,0.249687,0,0);}
.m8_c00487{transform:matrix(0.264499,-0.013238,0.012497,0.249687,0,0);-ms-transform:matrix(0.264499,-0.013238,0.012497,0.249687,0,0);-webkit-transform:matrix(0.264499,-0.013238,0.012497,0.249687,0,0);}
.m78_c00487{transform:matrix(0.266094,-0.011453,0.010751,0.249769,0,0);-ms-transform:matrix(0.266094,-0.011453,0.010751,0.249769,0,0);-webkit-transform:matrix(0.266094,-0.011453,0.010751,0.249769,0,0);}
.m82_c00487{transform:matrix(0.266223,-0.011459,0.010751,0.249769,0,0);-ms-transform:matrix(0.266223,-0.011459,0.010751,0.249769,0,0);-webkit-transform:matrix(0.266223,-0.011459,0.010751,0.249769,0,0);}
.m74_c00487{transform:matrix(0.267312,-0.011506,0.010751,0.249769,0,0);-ms-transform:matrix(0.267312,-0.011506,0.010751,0.249769,0,0);-webkit-transform:matrix(0.267312,-0.011506,0.010751,0.249769,0,0);}
.m6d_c00487{transform:matrix(0.268466,-0.011556,0.010751,0.249769,0,0);-ms-transform:matrix(0.268466,-0.011556,0.010751,0.249769,0,0);-webkit-transform:matrix(0.268466,-0.011556,0.010751,0.249769,0,0);}
.m5f_c00487{transform:matrix(0.269525,-0.011601,0.010751,0.249769,0,0);-ms-transform:matrix(0.269525,-0.011601,0.010751,0.249769,0,0);-webkit-transform:matrix(0.269525,-0.011601,0.010751,0.249769,0,0);}
.m5d_c00487{transform:matrix(0.270749,-0.011654,0.010751,0.249769,0,0);-ms-transform:matrix(0.270749,-0.011654,0.010751,0.249769,0,0);-webkit-transform:matrix(0.270749,-0.011654,0.010751,0.249769,0,0);}
.m64_c00487{transform:matrix(0.272153,-0.011714,0.010751,0.249769,0,0);-ms-transform:matrix(0.272153,-0.011714,0.010751,0.249769,0,0);-webkit-transform:matrix(0.272153,-0.011714,0.010751,0.249769,0,0);}
.m63_c00487{transform:matrix(0.274521,-0.011816,0.010751,0.249769,0,0);-ms-transform:matrix(0.274521,-0.011816,0.010751,0.249769,0,0);-webkit-transform:matrix(0.274521,-0.011816,0.010751,0.249769,0,0);}
.m6c_c00487{transform:matrix(0.277448,-0.011942,0.010751,0.249769,0,0);-ms-transform:matrix(0.277448,-0.011942,0.010751,0.249769,0,0);-webkit-transform:matrix(0.277448,-0.011942,0.010751,0.249769,0,0);}
.m10_c00487{transform:matrix(0.279245,-0.013976,0.012497,0.249687,0,0);-ms-transform:matrix(0.279245,-0.013976,0.012497,0.249687,0,0);-webkit-transform:matrix(0.279245,-0.013976,0.012497,0.249687,0,0);}
.m81_c00487{transform:matrix(0.282414,-0.012156,0.010751,0.249769,0,0);-ms-transform:matrix(0.282414,-0.012156,0.010751,0.249769,0,0);-webkit-transform:matrix(0.282414,-0.012156,0.010751,0.249769,0,0);}
.m39_c00487{transform:matrix(0.285056,-0.012270,0.010751,0.249769,0,0);-ms-transform:matrix(0.285056,-0.012270,0.010751,0.249769,0,0);-webkit-transform:matrix(0.285056,-0.012270,0.010751,0.249769,0,0);}
.m53_c00487{transform:matrix(0.291425,-0.012544,0.010751,0.249769,0,0);-ms-transform:matrix(0.291425,-0.012544,0.010751,0.249769,0,0);-webkit-transform:matrix(0.291425,-0.012544,0.010751,0.249769,0,0);}
.m61_c00487{transform:matrix(0.293488,-0.012633,0.010751,0.249769,0,0);-ms-transform:matrix(0.293488,-0.012633,0.010751,0.249769,0,0);-webkit-transform:matrix(0.293488,-0.012633,0.010751,0.249769,0,0);}
.m4_c00487{transform:matrix(0.295665,-0.014798,0.012497,0.249687,0,0);-ms-transform:matrix(0.295665,-0.014798,0.012497,0.249687,0,0);-webkit-transform:matrix(0.295665,-0.014798,0.012497,0.249687,0,0);}
.m13_c00487{transform:matrix(0.303056,-0.015168,0.012497,0.249687,0,0);-ms-transform:matrix(0.303056,-0.015168,0.012497,0.249687,0,0);-webkit-transform:matrix(0.303056,-0.015168,0.012497,0.249687,0,0);}
.m62_c00487{transform:matrix(0.303294,-0.013055,0.010751,0.249769,0,0);-ms-transform:matrix(0.303294,-0.013055,0.010751,0.249769,0,0);-webkit-transform:matrix(0.303294,-0.013055,0.010751,0.249769,0,0);}
.m6_c00487{transform:matrix(0.306012,-0.015316,0.012497,0.249687,0,0);-ms-transform:matrix(0.306012,-0.015316,0.012497,0.249687,0,0);-webkit-transform:matrix(0.306012,-0.015316,0.012497,0.249687,0,0);}
.m71_c00487{transform:matrix(0.306611,-0.013197,0.010751,0.249769,0,0);-ms-transform:matrix(0.306611,-0.013197,0.010751,0.249769,0,0);-webkit-transform:matrix(0.306611,-0.013197,0.010751,0.249769,0,0);}
.m3c_c00487{transform:matrix(0.307845,-0.013251,0.010751,0.249769,0,0);-ms-transform:matrix(0.307845,-0.013251,0.010751,0.249769,0,0);-webkit-transform:matrix(0.307845,-0.013251,0.010751,0.249769,0,0);}
.m76_c00487{transform:matrix(0.309673,-0.013329,0.010751,0.249769,0,0);-ms-transform:matrix(0.309673,-0.013329,0.010751,0.249769,0,0);-webkit-transform:matrix(0.309673,-0.013329,0.010751,0.249769,0,0);}
.m0_c00487{transform:matrix(0.311455,-0.015588,0.012497,0.249687,0,0);-ms-transform:matrix(0.311455,-0.015588,0.012497,0.249687,0,0);-webkit-transform:matrix(0.311455,-0.015588,0.012497,0.249687,0,0);}
.m2c_c00487{transform:matrix(0.312998,-0.015666,0.012497,0.249687,0,0);-ms-transform:matrix(0.312998,-0.015666,0.012497,0.249687,0,0);-webkit-transform:matrix(0.312998,-0.015666,0.012497,0.249687,0,0);}
.m75_c00487{transform:matrix(0.314878,-0.013553,0.010751,0.249769,0,0);-ms-transform:matrix(0.314878,-0.013553,0.010751,0.249769,0,0);-webkit-transform:matrix(0.314878,-0.013553,0.010751,0.249769,0,0);}
.m83_c00487{transform:matrix(0.315383,-0.013575,0.010751,0.249769,0,0);-ms-transform:matrix(0.315383,-0.013575,0.010751,0.249769,0,0);-webkit-transform:matrix(0.315383,-0.013575,0.010751,0.249769,0,0);}
.m6f_c00487{transform:matrix(0.317151,-0.013651,0.010751,0.249769,0,0);-ms-transform:matrix(0.317151,-0.013651,0.010751,0.249769,0,0);-webkit-transform:matrix(0.317151,-0.013651,0.010751,0.249769,0,0);}
.m11_c00487{transform:matrix(0.325238,-0.016278,0.012497,0.249687,0,0);-ms-transform:matrix(0.325238,-0.016278,0.012497,0.249687,0,0);-webkit-transform:matrix(0.325238,-0.016278,0.012497,0.249687,0,0);}
.m2e_c00487{transform:matrix(0.326746,-0.016354,0.012497,0.249687,0,0);-ms-transform:matrix(0.326746,-0.016354,0.012497,0.249687,0,0);-webkit-transform:matrix(0.326746,-0.016354,0.012497,0.249687,0,0);}
.m17_c00487{transform:matrix(0.330217,-0.016527,0.012497,0.249687,0,0);-ms-transform:matrix(0.330217,-0.016527,0.012497,0.249687,0,0);-webkit-transform:matrix(0.330217,-0.016527,0.012497,0.249687,0,0);}
.m8d_c00487{transform:matrix(0.350980,-0.015107,0.010751,0.249769,0,0);-ms-transform:matrix(0.350980,-0.015107,0.010751,0.249769,0,0);-webkit-transform:matrix(0.350980,-0.015107,0.010751,0.249769,0,0);}
.m12_c00487{transform:matrix(0.357717,-0.017904,0.012497,0.249687,0,0);-ms-transform:matrix(0.357717,-0.017904,0.012497,0.249687,0,0);-webkit-transform:matrix(0.357717,-0.017904,0.012497,0.249687,0,0);}
.m24_c00487{transform:matrix(0.359360,-0.017986,0.012497,0.249687,0,0);-ms-transform:matrix(0.359360,-0.017986,0.012497,0.249687,0,0);-webkit-transform:matrix(0.359360,-0.017986,0.012497,0.249687,0,0);}
.m1c_c00487{transform:matrix(0.366341,-0.018335,0.012497,0.249687,0,0);-ms-transform:matrix(0.366341,-0.018335,0.012497,0.249687,0,0);-webkit-transform:matrix(0.366341,-0.018335,0.012497,0.249687,0,0);}
.m16_c00487{transform:matrix(0.371939,-0.018616,0.012497,0.249687,0,0);-ms-transform:matrix(0.371939,-0.018616,0.012497,0.249687,0,0);-webkit-transform:matrix(0.371939,-0.018616,0.012497,0.249687,0,0);}
.m15_c00487{transform:matrix(0.379071,-0.018972,0.012497,0.249687,0,0);-ms-transform:matrix(0.379071,-0.018972,0.012497,0.249687,0,0);-webkit-transform:matrix(0.379071,-0.018972,0.012497,0.249687,0,0);}
.m5e_c00487{transform:matrix(0.379933,-0.016353,0.010751,0.249769,0,0);-ms-transform:matrix(0.379933,-0.016353,0.010751,0.249769,0,0);-webkit-transform:matrix(0.379933,-0.016353,0.010751,0.249769,0,0);}
.m79_c00487{transform:matrix(0.380283,-0.016369,0.010751,0.249769,0,0);-ms-transform:matrix(0.380283,-0.016369,0.010751,0.249769,0,0);-webkit-transform:matrix(0.380283,-0.016369,0.010751,0.249769,0,0);}
.m5_c00487{transform:matrix(0.381373,-0.019088,0.012497,0.249687,0,0);-ms-transform:matrix(0.381373,-0.019088,0.012497,0.249687,0,0);-webkit-transform:matrix(0.381373,-0.019088,0.012497,0.249687,0,0);}
.m42_c00487{transform:matrix(0.382890,-0.016481,0.010751,0.249769,0,0);-ms-transform:matrix(0.382890,-0.016481,0.010751,0.249769,0,0);-webkit-transform:matrix(0.382890,-0.016481,0.010751,0.249769,0,0);}
.mc_c00487{transform:matrix(0.389967,-0.019518,0.012497,0.249687,0,0);-ms-transform:matrix(0.389967,-0.019518,0.012497,0.249687,0,0);-webkit-transform:matrix(0.389967,-0.019518,0.012497,0.249687,0,0);}
.m90_c00487{transform:matrix(0.392646,-0.016901,0.010751,0.249769,0,0);-ms-transform:matrix(0.392646,-0.016901,0.010751,0.249769,0,0);-webkit-transform:matrix(0.392646,-0.016901,0.010751,0.249769,0,0);}
.m18_c00487{transform:matrix(0.404624,-0.020251,0.012497,0.249687,0,0);-ms-transform:matrix(0.404624,-0.020251,0.012497,0.249687,0,0);-webkit-transform:matrix(0.404624,-0.020251,0.012497,0.249687,0,0);}
.m85_c00487{transform:matrix(0.436671,-0.018796,0.010751,0.249769,0,0);-ms-transform:matrix(0.436671,-0.018796,0.010751,0.249769,0,0);-webkit-transform:matrix(0.436671,-0.018796,0.010751,0.249769,0,0);}
.m86_c00487{transform:matrix(0.436915,-0.018806,0.010751,0.249769,0,0);-ms-transform:matrix(0.436915,-0.018806,0.010751,0.249769,0,0);-webkit-transform:matrix(0.436915,-0.018806,0.010751,0.249769,0,0);}
.m77_c00487{transform:matrix(0.470050,-0.020232,0.010751,0.249769,0,0);-ms-transform:matrix(0.470050,-0.020232,0.010751,0.249769,0,0);-webkit-transform:matrix(0.470050,-0.020232,0.010751,0.249769,0,0);}
.mb_c00487{transform:matrix(0.470566,-0.023552,0.012497,0.249687,0,0);-ms-transform:matrix(0.470566,-0.023552,0.012497,0.249687,0,0);-webkit-transform:matrix(0.470566,-0.023552,0.012497,0.249687,0,0);}
.m7_c00487{transform:matrix(0.484623,-0.024255,0.012497,0.249687,0,0);-ms-transform:matrix(0.484623,-0.024255,0.012497,0.249687,0,0);-webkit-transform:matrix(0.484623,-0.024255,0.012497,0.249687,0,0);}
.m91_c00487{transform:matrix(0.522776,-0.022502,0.010751,0.249769,0,0);-ms-transform:matrix(0.522776,-0.022502,0.010751,0.249769,0,0);-webkit-transform:matrix(0.522776,-0.022502,0.010751,0.249769,0,0);}
.m8e_c00487{transform:matrix(0.579598,-0.024948,0.010751,0.249769,0,0);-ms-transform:matrix(0.579598,-0.024948,0.010751,0.249769,0,0);-webkit-transform:matrix(0.579598,-0.024948,0.010751,0.249769,0,0);}
.m8a_c00487{transform:matrix(0.605704,-0.026071,0.010751,0.249769,0,0);-ms-transform:matrix(0.605704,-0.026071,0.010751,0.249769,0,0);-webkit-transform:matrix(0.605704,-0.026071,0.010751,0.249769,0,0);}
.m25_c00487{transform:matrix(0.619889,-0.031025,0.012497,0.249687,0,0);-ms-transform:matrix(0.619889,-0.031025,0.012497,0.249687,0,0);-webkit-transform:matrix(0.619889,-0.031025,0.012497,0.249687,0,0);}
.m84_c00487{transform:matrix(0.625970,-0.026944,0.010751,0.249769,0,0);-ms-transform:matrix(0.625970,-0.026944,0.010751,0.249769,0,0);-webkit-transform:matrix(0.625970,-0.026944,0.010751,0.249769,0,0);}
.m22_c00487{transform:matrix(0.660303,-0.033048,0.012497,0.249687,0,0);-ms-transform:matrix(0.660303,-0.033048,0.012497,0.249687,0,0);-webkit-transform:matrix(0.660303,-0.033048,0.012497,0.249687,0,0);}
.m35_c00487{transform:matrix(0.755013,-0.025696,0.008504,0.249855,0,0);-ms-transform:matrix(0.755013,-0.025696,0.008504,0.249855,0,0);-webkit-transform:matrix(0.755013,-0.025696,0.008504,0.249855,0,0);}
.m23_c00487{transform:matrix(0.783719,-0.039225,0.012497,0.249687,0,0);-ms-transform:matrix(0.783719,-0.039225,0.012497,0.249687,0,0);-webkit-transform:matrix(0.783719,-0.039225,0.012497,0.249687,0,0);}
.md_c00487{transform:matrix(0.836233,-0.041854,0.012497,0.249687,0,0);-ms-transform:matrix(0.836233,-0.041854,0.012497,0.249687,0,0);-webkit-transform:matrix(0.836233,-0.041854,0.012497,0.249687,0,0);}
.m37_c00487{transform:matrix(1.156864,-0.049795,0.010751,0.249769,0,0);-ms-transform:matrix(1.156864,-0.049795,0.010751,0.249769,0,0);-webkit-transform:matrix(1.156864,-0.049795,0.010751,0.249769,0,0);}
.m1d_c00487{transform:matrix(1.368772,-0.068507,0.012497,0.249687,0,0);-ms-transform:matrix(1.368772,-0.068507,0.012497,0.249687,0,0);-webkit-transform:matrix(1.368772,-0.068507,0.012497,0.249687,0,0);}
.v0_c00487{vertical-align:0.000000px;}
.ls0_c00487{letter-spacing:0.000000px;}
.sc__c00487{text-shadow:none;}
.sc0_c00487{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__c00487{-webkit-text-stroke:0px transparent;}
.sc0_c00487{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00487{word-spacing:0.000000px;}
._0_c00487{width:7988.627462px;}
.fc0_c00487{color:transparent;}
.fs7_c00487{font-size:77.994150px;}
.fs1_c00487{font-size:78.019537px;}
.fs5_c00487{font-size:83.993700px;}
.fs0_c00487{font-size:84.021039px;}
.fs8_c00487{font-size:89.993250px;}
.fs4_c00487{font-size:95.959527px;}
.fs6_c00487{font-size:95.992800px;}
.fs2_c00487{font-size:96.024045px;}
.fs3_c00487{font-size:108.027051px;}
.y0_c00487{bottom:0.000000px;}
.y8d_c00487{bottom:637.220840px;}
.y8e_c00487{bottom:638.753189px;}
.y8f_c00487{bottom:640.867269px;}
.y90_c00487{bottom:644.939568px;}
.y91_c00487{bottom:647.524668px;}
.y92_c00487{bottom:648.991922px;}
.y85_c00487{bottom:664.055676px;}
.y86_c00487{bottom:666.601265px;}
.y87_c00487{bottom:670.128932px;}
.y88_c00487{bottom:671.604855px;}
.y8a_c00487{bottom:676.909514px;}
.y89_c00487{bottom:676.959740px;}
.y8b_c00487{bottom:682.904987px;}
.y8c_c00487{bottom:685.603253px;}
.y7b_c00487{bottom:699.466116px;}
.y7c_c00487{bottom:702.027735px;}
.y7d_c00487{bottom:703.322181px;}
.y7e_c00487{bottom:707.330568px;}
.y7f_c00487{bottom:708.764273px;}
.y80_c00487{bottom:711.583188px;}
.y81_c00487{bottom:713.183618px;}
.y82_c00487{bottom:714.138680px;}
.y83_c00487{bottom:717.274578px;}
.y84_c00487{bottom:718.718895px;}
.y70_c00487{bottom:733.770767px;}
.y71_c00487{bottom:736.448702px;}
.y72_c00487{bottom:739.665129px;}
.y73_c00487{bottom:743.374755px;}
.y74_c00487{bottom:746.369858px;}
.y75_c00487{bottom:748.574798px;}
.y76_c00487{bottom:750.324560px;}
.y77_c00487{bottom:751.688690px;}
.y78_c00487{bottom:754.216022px;}
.y79_c00487{bottom:756.400064px;}
.y7a_c00487{bottom:759.329153px;}
.y65_c00487{bottom:770.748575px;}
.y66_c00487{bottom:771.529347px;}
.y67_c00487{bottom:773.327091px;}
.y68_c00487{bottom:778.119119px;}
.y69_c00487{bottom:780.476142px;}
.y6a_c00487{bottom:784.363880px;}
.y6b_c00487{bottom:787.182143px;}
.y6c_c00487{bottom:788.585921px;}
.y6d_c00487{bottom:791.446431px;}
.y6e_c00487{bottom:792.997721px;}
.y6f_c00487{bottom:794.255277px;}
.y5d_c00487{bottom:806.628306px;}
.y5e_c00487{bottom:808.025627px;}
.y5f_c00487{bottom:812.533649px;}
.y60_c00487{bottom:815.866791px;}
.y61_c00487{bottom:818.770854px;}
.y62_c00487{bottom:822.167222px;}
.y63_c00487{bottom:824.031692px;}
.y64_c00487{bottom:827.068526px;}
.y50_c00487{bottom:841.291641px;}
.y51_c00487{bottom:841.972892px;}
.y52_c00487{bottom:842.465393px;}
.y53_c00487{bottom:845.670690px;}
.y54_c00487{bottom:846.964847px;}
.y55_c00487{bottom:848.195576px;}
.y56_c00487{bottom:849.561981px;}
.y57_c00487{bottom:851.919387px;}
.y58_c00487{bottom:852.961818px;}
.y59_c00487{bottom:854.640554px;}
.y5a_c00487{bottom:856.075934px;}
.y5b_c00487{bottom:857.234414px;}
.y5c_c00487{bottom:859.248912px;}
.y42_c00487{bottom:875.899673px;}
.y43_c00487{bottom:876.574455px;}
.y44_c00487{bottom:879.703649px;}
.y45_c00487{bottom:882.884666px;}
.y46_c00487{bottom:884.197322px;}
.y47_c00487{bottom:885.702824px;}
.y48_c00487{bottom:888.420624px;}
.y49_c00487{bottom:889.651047px;}
.y4a_c00487{bottom:891.040568px;}
.y4b_c00487{bottom:893.197310px;}
.y4c_c00487{bottom:896.568141px;}
.y4d_c00487{bottom:898.033122px;}
.y4e_c00487{bottom:900.335853px;}
.y4f_c00487{bottom:903.143111px;}
.y37_c00487{bottom:910.759500px;}
.y38_c00487{bottom:911.478030px;}
.y39_c00487{bottom:916.995941px;}
.y3a_c00487{bottom:919.885025px;}
.y3b_c00487{bottom:924.647834px;}
.y3c_c00487{bottom:925.983242px;}
.y3d_c00487{bottom:928.923345px;}
.y3e_c00487{bottom:933.109718px;}
.y3f_c00487{bottom:934.122110px;}
.y40_c00487{bottom:936.848912px;}
.y41_c00487{bottom:938.218247px;}
.y30_c00487{bottom:954.472500px;}
.y31_c00487{bottom:955.660545px;}
.y32_c00487{bottom:956.769948px;}
.y33_c00487{bottom:961.630350px;}
.y34_c00487{bottom:962.758062px;}
.y35_c00487{bottom:965.733351px;}
.y36_c00487{bottom:969.560646px;}
.y24_c00487{bottom:982.193988px;}
.y25_c00487{bottom:984.980924px;}
.y26_c00487{bottom:986.712828px;}
.y27_c00487{bottom:989.656848px;}
.y28_c00487{bottom:992.421579px;}
.y29_c00487{bottom:993.385091px;}
.y2a_c00487{bottom:994.178315px;}
.y2b_c00487{bottom:996.490846px;}
.y2c_c00487{bottom:997.830116px;}
.y2d_c00487{bottom:1000.533932px;}
.y2e_c00487{bottom:1001.828490px;}
.y2f_c00487{bottom:1003.212168px;}
.y1e_c00487{bottom:1019.236885px;}
.y1f_c00487{bottom:1028.547905px;}
.y20_c00487{bottom:1031.015799px;}
.y21_c00487{bottom:1032.015756px;}
.y22_c00487{bottom:1035.312033px;}
.y23_c00487{bottom:1036.539678px;}
.y19_c00487{bottom:1066.137496px;}
.y1a_c00487{bottom:1069.612721px;}
.y1b_c00487{bottom:1070.578635px;}
.y1c_c00487{bottom:1072.710087px;}
.y1d_c00487{bottom:1075.427797px;}
.yc_c00487{bottom:1089.145251px;}
.yd_c00487{bottom:1092.942582px;}
.ye_c00487{bottom:1093.707075px;}
.yf_c00487{bottom:1098.340389px;}
.y10_c00487{bottom:1100.715183px;}
.y11_c00487{bottom:1102.517752px;}
.y12_c00487{bottom:1105.548941px;}
.y13_c00487{bottom:1106.949572px;}
.y14_c00487{bottom:1107.898154px;}
.y15_c00487{bottom:1108.792874px;}
.y16_c00487{bottom:1110.855900px;}
.y17_c00487{bottom:1113.657914px;}
.y18_c00487{bottom:1115.097554px;}
.y1_c00487{bottom:1121.292000px;}
.y2_c00487{bottom:1124.528625px;}
.y3_c00487{bottom:1124.982300px;}
.y4_c00487{bottom:1127.164575px;}
.y5_c00487{bottom:1128.838500px;}
.y6_c00487{bottom:1131.055125px;}
.y7_c00487{bottom:1133.293350px;}
.y8_c00487{bottom:1135.519425px;}
.y9_c00487{bottom:1136.641200px;}
.ya_c00487{bottom:1144.747950px;}
.yb_c00487{bottom:1152.002550px;}
.h9_c00487{height:77.994150px;}
.h3_c00487{height:78.019537px;}
.h7_c00487{height:83.993700px;}
.h2_c00487{height:84.021039px;}
.ha_c00487{height:89.993250px;}
.h6_c00487{height:95.959527px;}
.h8_c00487{height:95.992800px;}
.h4_c00487{height:96.024045px;}
.h5_c00487{height:108.027051px;}
.h0_c00487{height:1246.320000px;}
.h1_c00487{height:1246.500000px;}
.w0_c00487{width:896.100000px;}
.w1_c00487{width:896.250000px;}
.x0_c00487{left:0.000000px;}
.xc_c00487{left:44.100839px;}
.x31_c00487{left:54.865500px;}
.x1_c00487{left:62.560500px;}
.x20_c00487{left:70.037636px;}
.x32_c00487{left:71.558790px;}
.x1a_c00487{left:91.744984px;}
.x48_c00487{left:104.060388px;}
.x3b_c00487{left:106.969493px;}
.x3c_c00487{left:121.634940px;}
.x2_c00487{left:127.228268px;}
.x3_c00487{left:136.292694px;}
.x21_c00487{left:137.936724px;}
.xd_c00487{left:155.236092px;}
.x4f_c00487{left:160.520133px;}
.x64_c00487{left:170.888613px;}
.x55_c00487{left:174.143196px;}
.x4_c00487{left:179.894548px;}
.x3d_c00487{left:189.590636px;}
.x50_c00487{left:192.251015px;}
.x5c_c00487{left:197.050865px;}
.x33_c00487{left:199.753966px;}
.x5_c00487{left:213.339570px;}
.x56_c00487{left:215.909388px;}
.x49_c00487{left:222.259545px;}
.x2a_c00487{left:230.169000px;}
.x65_c00487{left:241.946355px;}
.x22_c00487{left:251.861961px;}
.x6_c00487{left:257.627737px;}
.x3e_c00487{left:258.680567px;}
.x2b_c00487{left:265.076557px;}
.x34_c00487{left:266.874779px;}
.xe_c00487{left:268.099866px;}
.x66_c00487{left:277.879233px;}
.x3f_c00487{left:287.188850px;}
.x6d_c00487{left:288.432918px;}
.x4a_c00487{left:290.440922px;}
.x51_c00487{left:294.612161px;}
.x2c_c00487{left:297.673428px;}
.x7_c00487{left:302.347473px;}
.x23_c00487{left:319.227359px;}
.xf_c00487{left:325.933451px;}
.x4b_c00487{left:327.348033px;}
.x1b_c00487{left:330.185386px;}
.x16_c00487{left:334.691609px;}
.x24_c00487{left:342.710438px;}
.x8_c00487{left:346.824452px;}
.x5d_c00487{left:350.810715px;}
.x25_c00487{left:362.040797px;}
.x9_c00487{left:369.237516px;}
.x52_c00487{left:370.305663px;}
.x35_c00487{left:377.527016px;}
.x40_c00487{left:378.924207px;}
.x57_c00487{left:382.000131px;}
.x67_c00487{left:389.071374px;}
.x4c_c00487{left:390.975741px;}
.x1c_c00487{left:393.390877px;}
.x72_c00487{left:403.926674px;}
.x41_c00487{left:405.661521px;}
.x36_c00487{left:408.551960px;}
.x5e_c00487{left:417.290423px;}
.x1d_c00487{left:419.012844px;}
.x68_c00487{left:428.832518px;}
.x42_c00487{left:435.850928px;}
.x73_c00487{left:438.724856px;}
.x2d_c00487{left:440.483475px;}
.x10_c00487{left:443.672522px;}
.x17_c00487{left:446.627866px;}
.x6e_c00487{left:448.891665px;}
.x26_c00487{left:451.031807px;}
.x4d_c00487{left:464.449676px;}
.x5f_c00487{left:466.249718px;}
.x58_c00487{left:472.322219px;}
.x2e_c00487{left:473.618307px;}
.x11_c00487{left:477.780195px;}
.x43_c00487{left:482.678984px;}
.x74_c00487{left:486.724242px;}
.x12_c00487{left:500.874938px;}
.x1e_c00487{left:503.421747px;}
.x60_c00487{left:505.087484px;}
.x69_c00487{left:507.053784px;}
.x53_c00487{left:513.367325px;}
.x27_c00487{left:516.879972px;}
.x13_c00487{left:522.653397px;}
.xa_c00487{left:531.210381px;}
.x1f_c00487{left:534.853551px;}
.x59_c00487{left:537.797678px;}
.x18_c00487{left:546.362202px;}
.x28_c00487{left:548.418092px;}
.x6a_c00487{left:551.455703px;}
.x44_c00487{left:555.899763px;}
.x2f_c00487{left:561.039299px;}
.x6f_c00487{left:562.731149px;}
.x5a_c00487{left:570.411032px;}
.x14_c00487{left:572.907191px;}
.x37_c00487{left:574.118227px;}
.x6b_c00487{left:577.969169px;}
.x75_c00487{left:579.171699px;}
.x29_c00487{left:582.127014px;}
.x45_c00487{left:587.702796px;}
.x4e_c00487{left:588.848241px;}
.x61_c00487{left:591.485075px;}
.x38_c00487{left:597.638684px;}
.x54_c00487{left:624.656147px;}
.x19_c00487{left:633.888696px;}
.x46_c00487{left:637.713279px;}
.x62_c00487{left:639.958856px;}
.x15_c00487{left:641.167568px;}
.x39_c00487{left:660.989269px;}
.x6c_c00487{left:664.984779px;}
.x76_c00487{left:671.190650px;}
.x30_c00487{left:673.494231px;}
.xb_c00487{left:676.157289px;}
.x70_c00487{left:689.100395px;}
.x3a_c00487{left:692.802425px;}
.x47_c00487{left:698.677877px;}
.x5b_c00487{left:702.124686px;}
.x63_c00487{left:704.974658px;}
.x71_c00487{left:746.451608px;}
@media print{
.v0_c00487{vertical-align:0.000000pt;}
.ls0_c00487{letter-spacing:0.000000pt;}
.ws0_c00487{word-spacing:0.000000pt;}
._0_c00487{width:7101.002189pt;}
.fs7_c00487{font-size:69.328133pt;}
.fs1_c00487{font-size:69.350699pt;}
.fs5_c00487{font-size:74.661066pt;}
.fs0_c00487{font-size:74.685368pt;}
.fs8_c00487{font-size:79.994000pt;}
.fs4_c00487{font-size:85.297358pt;}
.fs6_c00487{font-size:85.326933pt;}
.fs2_c00487{font-size:85.354707pt;}
.fs3_c00487{font-size:96.024045pt;}
.y0_c00487{bottom:0.000000pt;}
.y8d_c00487{bottom:566.418524pt;}
.y8e_c00487{bottom:567.780612pt;}
.y8f_c00487{bottom:569.659795pt;}
.y90_c00487{bottom:573.279616pt;}
.y91_c00487{bottom:575.577483pt;}
.y92_c00487{bottom:576.881708pt;}
.y85_c00487{bottom:590.271712pt;}
.y86_c00487{bottom:592.534457pt;}
.y87_c00487{bottom:595.670161pt;}
.y88_c00487{bottom:596.982093pt;}
.y8a_c00487{bottom:601.697345pt;}
.y89_c00487{bottom:601.741991pt;}
.y8b_c00487{bottom:607.026655pt;}
.y8c_c00487{bottom:609.425113pt;}
.y7b_c00487{bottom:621.747659pt;}
.y7c_c00487{bottom:624.024653pt;}
.y7d_c00487{bottom:625.175272pt;}
.y7e_c00487{bottom:628.738283pt;}
.y7f_c00487{bottom:630.012687pt;}
.y80_c00487{bottom:632.518389pt;}
.y81_c00487{bottom:633.940993pt;}
.y82_c00487{bottom:634.789937pt;}
.y83_c00487{bottom:637.577403pt;}
.y84_c00487{bottom:638.861240pt;}
.y70_c00487{bottom:652.240681pt;}
.y71_c00487{bottom:654.621068pt;}
.y72_c00487{bottom:657.480115pt;}
.y73_c00487{bottom:660.777560pt;}
.y74_c00487{bottom:663.439873pt;}
.y75_c00487{bottom:665.399820pt;}
.y76_c00487{bottom:666.955164pt;}
.y77_c00487{bottom:668.167724pt;}
.y78_c00487{bottom:670.414241pt;}
.y79_c00487{bottom:672.355612pt;}
.y7a_c00487{bottom:674.959247pt;}
.y65_c00487{bottom:685.109844pt;}
.y66_c00487{bottom:685.803864pt;}
.y67_c00487{bottom:687.401859pt;}
.y68_c00487{bottom:691.661439pt;}
.y69_c00487{bottom:693.756571pt;}
.y6a_c00487{bottom:697.212337pt;}
.y6b_c00487{bottom:699.717460pt;}
.y6c_c00487{bottom:700.965263pt;}
.y6d_c00487{bottom:703.507939pt;}
.y6e_c00487{bottom:704.886863pt;}
.y6f_c00487{bottom:706.004691pt;}
.y5d_c00487{bottom:717.002939pt;}
.y5e_c00487{bottom:718.245001pt;}
.y5f_c00487{bottom:722.252132pt;}
.y60_c00487{bottom:725.214925pt;}
.y61_c00487{bottom:727.796315pt;}
.y62_c00487{bottom:730.815308pt;}
.y63_c00487{bottom:732.472615pt;}
.y64_c00487{bottom:735.172023pt;}
.y50_c00487{bottom:747.814792pt;}
.y51_c00487{bottom:748.420348pt;}
.y52_c00487{bottom:748.858127pt;}
.y53_c00487{bottom:751.707280pt;}
.y54_c00487{bottom:752.857641pt;}
.y55_c00487{bottom:753.951623pt;}
.y56_c00487{bottom:755.166205pt;}
.y57_c00487{bottom:757.261677pt;}
.y58_c00487{bottom:758.188283pt;}
.y59_c00487{bottom:759.680492pt;}
.y5a_c00487{bottom:760.956385pt;}
.y5b_c00487{bottom:761.986145pt;}
.y5c_c00487{bottom:763.776811pt;}
.y42_c00487{bottom:778.577487pt;}
.y43_c00487{bottom:779.177293pt;}
.y44_c00487{bottom:781.958799pt;}
.y45_c00487{bottom:784.786369pt;}
.y46_c00487{bottom:785.953175pt;}
.y47_c00487{bottom:787.291399pt;}
.y48_c00487{bottom:789.707221pt;}
.y49_c00487{bottom:790.800931pt;}
.y4a_c00487{bottom:792.036060pt;}
.y4b_c00487{bottom:793.953164pt;}
.y4c_c00487{bottom:796.949459pt;}
.y4d_c00487{bottom:798.251664pt;}
.y4e_c00487{bottom:800.298536pt;}
.y4f_c00487{bottom:802.793876pt;}
.y37_c00487{bottom:809.564000pt;}
.y38_c00487{bottom:810.202693pt;}
.y39_c00487{bottom:815.107503pt;}
.y3a_c00487{bottom:817.675577pt;}
.y3b_c00487{bottom:821.909185pt;}
.y3c_c00487{bottom:823.096215pt;}
.y3d_c00487{bottom:825.709640pt;}
.y3e_c00487{bottom:829.430860pt;}
.y3f_c00487{bottom:830.330764pt;}
.y40_c00487{bottom:832.754588pt;}
.y41_c00487{bottom:833.971775pt;}
.y30_c00487{bottom:848.420000pt;}
.y31_c00487{bottom:849.476040pt;}
.y32_c00487{bottom:850.462176pt;}
.y33_c00487{bottom:854.782533pt;}
.y34_c00487{bottom:855.784944pt;}
.y35_c00487{bottom:858.429645pt;}
.y36_c00487{bottom:861.831685pt;}
.y24_c00487{bottom:873.061323pt;}
.y25_c00487{bottom:875.538599pt;}
.y26_c00487{bottom:877.078069pt;}
.y27_c00487{bottom:879.694976pt;}
.y28_c00487{bottom:882.152515pt;}
.y29_c00487{bottom:883.008969pt;}
.y2a_c00487{bottom:883.714057pt;}
.y2b_c00487{bottom:885.769641pt;}
.y2c_c00487{bottom:886.960103pt;}
.y2d_c00487{bottom:889.363495pt;}
.y2e_c00487{bottom:890.514213pt;}
.y2f_c00487{bottom:891.744149pt;}
.y1e_c00487{bottom:905.988343pt;}
.y1f_c00487{bottom:914.264804pt;}
.y20_c00487{bottom:916.458488pt;}
.y21_c00487{bottom:917.347339pt;}
.y22_c00487{bottom:920.277363pt;}
.y23_c00487{bottom:921.368603pt;}
.y19_c00487{bottom:947.677775pt;}
.y1a_c00487{bottom:950.766863pt;}
.y1b_c00487{bottom:951.625453pt;}
.y1c_c00487{bottom:953.520077pt;}
.y1d_c00487{bottom:955.935820pt;}
.yc_c00487{bottom:968.129112pt;}
.yd_c00487{bottom:971.504517pt;}
.ye_c00487{bottom:972.184067pt;}
.yf_c00487{bottom:976.302568pt;}
.y10_c00487{bottom:978.413496pt;}
.y11_c00487{bottom:980.015780pt;}
.y12_c00487{bottom:982.710169pt;}
.y13_c00487{bottom:983.955175pt;}
.y14_c00487{bottom:984.798359pt;}
.y15_c00487{bottom:985.593665pt;}
.y16_c00487{bottom:987.427467pt;}
.y17_c00487{bottom:989.918145pt;}
.y18_c00487{bottom:991.197825pt;}
.y1_c00487{bottom:996.704000pt;}
.y2_c00487{bottom:999.581000pt;}
.y3_c00487{bottom:999.984267pt;}
.y4_c00487{bottom:1001.924067pt;}
.y5_c00487{bottom:1003.412000pt;}
.y6_c00487{bottom:1005.382333pt;}
.y7_c00487{bottom:1007.371867pt;}
.y8_c00487{bottom:1009.350600pt;}
.y9_c00487{bottom:1010.347733pt;}
.ya_c00487{bottom:1017.553733pt;}
.yb_c00487{bottom:1024.002267pt;}
.h9_c00487{height:69.328133pt;}
.h3_c00487{height:69.350699pt;}
.h7_c00487{height:74.661066pt;}
.h2_c00487{height:74.685368pt;}
.ha_c00487{height:79.994000pt;}
.h6_c00487{height:85.297358pt;}
.h8_c00487{height:85.326933pt;}
.h4_c00487{height:85.354707pt;}
.h5_c00487{height:96.024045pt;}
.h0_c00487{height:1107.840000pt;}
.h1_c00487{height:1108.000000pt;}
.w0_c00487{width:796.533333pt;}
.w1_c00487{width:796.666667pt;}
.x0_c00487{left:0.000000pt;}
.xc_c00487{left:39.200745pt;}
.x31_c00487{left:48.769333pt;}
.x1_c00487{left:55.609333pt;}
.x20_c00487{left:62.255676pt;}
.x32_c00487{left:63.607813pt;}
.x1a_c00487{left:81.551097pt;}
.x48_c00487{left:92.498123pt;}
.x3b_c00487{left:95.083993pt;}
.x3c_c00487{left:108.119947pt;}
.x2_c00487{left:113.091793pt;}
.x3_c00487{left:121.149061pt;}
.x21_c00487{left:122.610421pt;}
.xd_c00487{left:137.987637pt;}
.x4f_c00487{left:142.684563pt;}
.x64_c00487{left:151.900989pt;}
.x55_c00487{left:154.793952pt;}
.x4_c00487{left:159.906265pt;}
.x3d_c00487{left:168.525009pt;}
.x50_c00487{left:170.889791pt;}
.x5c_c00487{left:175.156324pt;}
.x33_c00487{left:177.559081pt;}
.x5_c00487{left:189.635173pt;}
.x56_c00487{left:191.919456pt;}
.x49_c00487{left:197.564040pt;}
.x2a_c00487{left:204.594667pt;}
.x65_c00487{left:215.063427pt;}
.x22_c00487{left:223.877299pt;}
.x6_c00487{left:229.002433pt;}
.x3e_c00487{left:229.938281pt;}
.x2b_c00487{left:235.623607pt;}
.x34_c00487{left:237.222025pt;}
.xe_c00487{left:238.310992pt;}
.x66_c00487{left:247.003763pt;}
.x3f_c00487{left:255.278977pt;}
.x6d_c00487{left:256.384816pt;}
.x4a_c00487{left:258.169708pt;}
.x51_c00487{left:261.877476pt;}
.x2c_c00487{left:264.598603pt;}
.x7_c00487{left:268.753309pt;}
.x23_c00487{left:283.757652pt;}
.xf_c00487{left:289.718623pt;}
.x4b_c00487{left:290.976029pt;}
.x1b_c00487{left:293.498121pt;}
.x16_c00487{left:297.503652pt;}
.x24_c00487{left:304.631500pt;}
.x8_c00487{left:308.288401pt;}
.x5d_c00487{left:311.831747pt;}
.x25_c00487{left:321.814041pt;}
.x9_c00487{left:328.211125pt;}
.x52_c00487{left:329.160589pt;}
.x35_c00487{left:335.579569pt;}
.x40_c00487{left:336.821517pt;}
.x57_c00487{left:339.555672pt;}
.x67_c00487{left:345.841221pt;}
.x4c_c00487{left:347.533992pt;}
.x1c_c00487{left:349.680780pt;}
.x72_c00487{left:359.045932pt;}
.x41_c00487{left:360.588019pt;}
.x36_c00487{left:363.157297pt;}
.x5e_c00487{left:370.924820pt;}
.x1d_c00487{left:372.455861pt;}
.x68_c00487{left:381.184460pt;}
.x42_c00487{left:387.423047pt;}
.x73_c00487{left:389.977649pt;}
.x2d_c00487{left:391.540867pt;}
.x10_c00487{left:394.375575pt;}
.x17_c00487{left:397.002548pt;}
.x6e_c00487{left:399.014813pt;}
.x26_c00487{left:400.917161pt;}
.x4d_c00487{left:412.844156pt;}
.x5f_c00487{left:414.444193pt;}
.x58_c00487{left:419.841972pt;}
.x2e_c00487{left:420.994051pt;}
.x11_c00487{left:424.693507pt;}
.x43_c00487{left:429.047985pt;}
.x74_c00487{left:432.643771pt;}
.x12_c00487{left:445.222167pt;}
.x1e_c00487{left:447.485997pt;}
.x60_c00487{left:448.966652pt;}
.x69_c00487{left:450.714475pt;}
.x53_c00487{left:456.326511pt;}
.x27_c00487{left:459.448864pt;}
.x13_c00487{left:464.580797pt;}
.xa_c00487{left:472.187005pt;}
.x1f_c00487{left:475.425379pt;}
.x59_c00487{left:478.042380pt;}
.x18_c00487{left:485.655291pt;}
.x28_c00487{left:487.482748pt;}
.x6a_c00487{left:490.182847pt;}
.x44_c00487{left:494.133123pt;}
.x2f_c00487{left:498.701599pt;}
.x6f_c00487{left:500.205465pt;}
.x5a_c00487{left:507.032028pt;}
.x14_c00487{left:509.250836pt;}
.x37_c00487{left:510.327313pt;}
.x6b_c00487{left:513.750372pt;}
.x75_c00487{left:514.819288pt;}
.x29_c00487{left:517.446235pt;}
.x45_c00487{left:522.402485pt;}
.x4e_c00487{left:523.420659pt;}
.x61_c00487{left:525.764511pt;}
.x38_c00487{left:531.234385pt;}
.x54_c00487{left:555.249908pt;}
.x19_c00487{left:563.456619pt;}
.x46_c00487{left:566.856248pt;}
.x62_c00487{left:568.852316pt;}
.x15_c00487{left:569.926727pt;}
.x39_c00487{left:587.546017pt;}
.x6c_c00487{left:591.097581pt;}
.x76_c00487{left:596.613911pt;}
.x30_c00487{left:598.661539pt;}
.xb_c00487{left:601.028701pt;}
.x70_c00487{left:612.533684pt;}
.x3a_c00487{left:615.824377pt;}
.x47_c00487{left:621.047001pt;}
.x5b_c00487{left:624.110832pt;}
.x63_c00487{left:626.644140pt;}
.x71_c00487{left:663.512540pt;}
}





/* 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_c00488 {
    display:none;
  }
  .loading-indicator_c00488.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00488 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_c00488 { 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_c00488" -> "#page-container .classname_c00488")
 */
.pf_c00488 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00488 { /* 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_c00488.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00488 { /* 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_c00488 { /* 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_c00488 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00488 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00488 {overflow:visible;}
  }
}
.c_c00488 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00488 { /* 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_c00488:after { /* webkit #35443 */
  content: '';
}
.t_c00488:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00488 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 */
}
.__c00488 { /* 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_c00488 { /* info for Javascript */
  display:none;
}
.l_c00488 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00488 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00488 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00488: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_c00488 {
    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_c00488.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00488.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_c00488 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00488{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00488;src:url('chunks/assets/font_cfe63ee56e9e10a97d33a3db.woff2')format("woff");}.ff1_c00488{font-family:ff1_c00488;line-height:1.000000;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;}
.mde_c00488{transform:matrix(0.013518,0.000203,-0.003750,0.249972,0,0);-ms-transform:matrix(0.013518,0.000203,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.013518,0.000203,-0.003750,0.249972,0,0);}
.m130_c00488{transform:matrix(0.156795,0.002822,-0.004499,0.249960,0,0);-ms-transform:matrix(0.156795,0.002822,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.156795,0.002822,-0.004499,0.249960,0,0);}
.m13d_c00488{transform:matrix(0.158574,0.002854,-0.004499,0.249960,0,0);-ms-transform:matrix(0.158574,0.002854,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.158574,0.002854,-0.004499,0.249960,0,0);}
.m13_c00488{transform:matrix(0.160051,0.001120,-0.001750,0.249994,0,0);-ms-transform:matrix(0.160051,0.001120,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.160051,0.001120,-0.001750,0.249994,0,0);}
.m13b_c00488{transform:matrix(0.160434,0.002888,-0.004499,0.249960,0,0);-ms-transform:matrix(0.160434,0.002888,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.160434,0.002888,-0.004499,0.249960,0,0);}
.m132_c00488{transform:matrix(0.162029,0.002917,-0.004499,0.249960,0,0);-ms-transform:matrix(0.162029,0.002917,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.162029,0.002917,-0.004499,0.249960,0,0);}
.m131_c00488{transform:matrix(0.164558,0.002962,-0.004499,0.249960,0,0);-ms-transform:matrix(0.164558,0.002962,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.164558,0.002962,-0.004499,0.249960,0,0);}
.m14_c00488{transform:matrix(0.164901,0.001154,-0.001750,0.249994,0,0);-ms-transform:matrix(0.164901,0.001154,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.164901,0.001154,-0.001750,0.249994,0,0);}
.m133_c00488{transform:matrix(0.164933,0.002969,-0.004499,0.249960,0,0);-ms-transform:matrix(0.164933,0.002969,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.164933,0.002969,-0.004499,0.249960,0,0);}
.m13a_c00488{transform:matrix(0.168433,0.003032,-0.004499,0.249960,0,0);-ms-transform:matrix(0.168433,0.003032,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.168433,0.003032,-0.004499,0.249960,0,0);}
.m11_c00488{transform:matrix(0.169616,0.001187,-0.001750,0.249994,0,0);-ms-transform:matrix(0.169616,0.001187,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.169616,0.001187,-0.001750,0.249994,0,0);}
.m138_c00488{transform:matrix(0.170642,0.003072,-0.004499,0.249960,0,0);-ms-transform:matrix(0.170642,0.003072,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.170642,0.003072,-0.004499,0.249960,0,0);}
.mf_c00488{transform:matrix(0.170816,0.001196,-0.001750,0.249994,0,0);-ms-transform:matrix(0.170816,0.001196,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.170816,0.001196,-0.001750,0.249994,0,0);}
.m18_c00488{transform:matrix(0.171791,0.001203,-0.001750,0.249994,0,0);-ms-transform:matrix(0.171791,0.001203,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.171791,0.001203,-0.001750,0.249994,0,0);}
.m15_c00488{transform:matrix(0.172296,0.001206,-0.001750,0.249994,0,0);-ms-transform:matrix(0.172296,0.001206,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.172296,0.001206,-0.001750,0.249994,0,0);}
.m12_c00488{transform:matrix(0.172351,0.001206,-0.001750,0.249994,0,0);-ms-transform:matrix(0.172351,0.001206,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.172351,0.001206,-0.001750,0.249994,0,0);}
.me_c00488{transform:matrix(0.172451,0.001207,-0.001750,0.249994,0,0);-ms-transform:matrix(0.172451,0.001207,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.172451,0.001207,-0.001750,0.249994,0,0);}
.m13c_c00488{transform:matrix(0.172602,0.003107,-0.004499,0.249960,0,0);-ms-transform:matrix(0.172602,0.003107,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.172602,0.003107,-0.004499,0.249960,0,0);}
.m12d_c00488{transform:matrix(0.177236,0.003190,-0.004499,0.249960,0,0);-ms-transform:matrix(0.177236,0.003190,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.177236,0.003190,-0.004499,0.249960,0,0);}
.m13f_c00488{transform:matrix(0.177526,0.003195,-0.004499,0.249960,0,0);-ms-transform:matrix(0.177526,0.003195,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.177526,0.003195,-0.004499,0.249960,0,0);}
.m137_c00488{transform:matrix(0.177726,0.003199,-0.004499,0.249960,0,0);-ms-transform:matrix(0.177726,0.003199,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.177726,0.003199,-0.004499,0.249960,0,0);}
.m140_c00488{transform:matrix(0.178181,0.003207,-0.004499,0.249960,0,0);-ms-transform:matrix(0.178181,0.003207,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.178181,0.003207,-0.004499,0.249960,0,0);}
.m82_c00488{transform:matrix(0.179155,0.002687,-0.003750,0.249972,0,0);-ms-transform:matrix(0.179155,0.002687,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.179155,0.002687,-0.003750,0.249972,0,0);}
.m84_c00488{transform:matrix(0.180260,0.002704,-0.003750,0.249972,0,0);-ms-transform:matrix(0.180260,0.002704,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.180260,0.002704,-0.003750,0.249972,0,0);}
.m13e_c00488{transform:matrix(0.180531,0.003250,-0.004499,0.249960,0,0);-ms-transform:matrix(0.180531,0.003250,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.180531,0.003250,-0.004499,0.249960,0,0);}
.md1_c00488{transform:matrix(0.181550,0.002723,-0.003750,0.249972,0,0);-ms-transform:matrix(0.181550,0.002723,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.181550,0.002723,-0.003750,0.249972,0,0);}
.m7f_c00488{transform:matrix(0.181925,0.002729,-0.003750,0.249972,0,0);-ms-transform:matrix(0.181925,0.002729,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.181925,0.002729,-0.003750,0.249972,0,0);}
.m134_c00488{transform:matrix(0.182355,0.003282,-0.004499,0.249960,0,0);-ms-transform:matrix(0.182355,0.003282,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.182355,0.003282,-0.004499,0.249960,0,0);}
.mc1_c00488{transform:matrix(0.182519,0.002738,-0.003750,0.249972,0,0);-ms-transform:matrix(0.182519,0.002738,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.182519,0.002738,-0.003750,0.249972,0,0);}
.m80_c00488{transform:matrix(0.182549,0.002738,-0.003750,0.249972,0,0);-ms-transform:matrix(0.182549,0.002738,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.182549,0.002738,-0.003750,0.249972,0,0);}
.m135_c00488{transform:matrix(0.183255,0.003299,-0.004499,0.249960,0,0);-ms-transform:matrix(0.183255,0.003299,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.183255,0.003299,-0.004499,0.249960,0,0);}
.m12f_c00488{transform:matrix(0.184215,0.003316,-0.004499,0.249960,0,0);-ms-transform:matrix(0.184215,0.003316,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.184215,0.003316,-0.004499,0.249960,0,0);}
.m127_c00488{transform:matrix(0.185800,0.003344,-0.004499,0.249960,0,0);-ms-transform:matrix(0.185800,0.003344,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.185800,0.003344,-0.004499,0.249960,0,0);}
.m12e_c00488{transform:matrix(0.186285,0.003353,-0.004499,0.249960,0,0);-ms-transform:matrix(0.186285,0.003353,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.186285,0.003353,-0.004499,0.249960,0,0);}
.m124_c00488{transform:matrix(0.186650,0.003360,-0.004499,0.249960,0,0);-ms-transform:matrix(0.186650,0.003360,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.186650,0.003360,-0.004499,0.249960,0,0);}
.m147_c00488{transform:matrix(0.186735,0.003361,-0.004499,0.249960,0,0);-ms-transform:matrix(0.186735,0.003361,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.186735,0.003361,-0.004499,0.249960,0,0);}
.m136_c00488{transform:matrix(0.187150,0.003369,-0.004499,0.249960,0,0);-ms-transform:matrix(0.187150,0.003369,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.187150,0.003369,-0.004499,0.249960,0,0);}
.m139_c00488{transform:matrix(0.187665,0.003378,-0.004499,0.249960,0,0);-ms-transform:matrix(0.187665,0.003378,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.187665,0.003378,-0.004499,0.249960,0,0);}
.m62_c00488{transform:matrix(0.188601,0.002263,-0.003000,0.249982,0,0);-ms-transform:matrix(0.188601,0.002263,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.188601,0.002263,-0.003000,0.249982,0,0);}
.m16_c00488{transform:matrix(0.188755,0.001321,-0.001750,0.249994,0,0);-ms-transform:matrix(0.188755,0.001321,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.188755,0.001321,-0.001750,0.249994,0,0);}
.mf5_c00488{transform:matrix(0.189584,0.002844,-0.003750,0.249972,0,0);-ms-transform:matrix(0.189584,0.002844,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.189584,0.002844,-0.003750,0.249972,0,0);}
.m17_c00488{transform:matrix(0.189885,0.001329,-0.001750,0.249994,0,0);-ms-transform:matrix(0.189885,0.001329,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.189885,0.001329,-0.001750,0.249994,0,0);}
.m148_c00488{transform:matrix(0.190269,0.003425,-0.004499,0.249960,0,0);-ms-transform:matrix(0.190269,0.003425,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.190269,0.003425,-0.004499,0.249960,0,0);}
.m144_c00488{transform:matrix(0.191239,0.003442,-0.004499,0.249960,0,0);-ms-transform:matrix(0.191239,0.003442,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.191239,0.003442,-0.004499,0.249960,0,0);}
.m58_c00488{transform:matrix(0.191961,0.002304,-0.003000,0.249982,0,0);-ms-transform:matrix(0.191961,0.002304,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.191961,0.002304,-0.003000,0.249982,0,0);}
.m145_c00488{transform:matrix(0.192329,0.003462,-0.004499,0.249960,0,0);-ms-transform:matrix(0.192329,0.003462,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.192329,0.003462,-0.004499,0.249960,0,0);}
.m146_c00488{transform:matrix(0.192344,0.003462,-0.004499,0.249960,0,0);-ms-transform:matrix(0.192344,0.003462,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.192344,0.003462,-0.004499,0.249960,0,0);}
.m118_c00488{transform:matrix(0.192614,0.003467,-0.004499,0.249960,0,0);-ms-transform:matrix(0.192614,0.003467,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.192614,0.003467,-0.004499,0.249960,0,0);}
.md3_c00488{transform:matrix(0.193108,0.002897,-0.003750,0.249972,0,0);-ms-transform:matrix(0.193108,0.002897,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.193108,0.002897,-0.003750,0.249972,0,0);}
.m11c_c00488{transform:matrix(0.193774,0.003488,-0.004499,0.249960,0,0);-ms-transform:matrix(0.193774,0.003488,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.193774,0.003488,-0.004499,0.249960,0,0);}
.m4_c00488{transform:matrix(0.193800,0.001357,-0.001750,0.249994,0,0);-ms-transform:matrix(0.193800,0.001357,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.193800,0.001357,-0.001750,0.249994,0,0);}
.md0_c00488{transform:matrix(0.194408,0.002916,-0.003750,0.249972,0,0);-ms-transform:matrix(0.194408,0.002916,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.194408,0.002916,-0.003750,0.249972,0,0);}
.mc6_c00488{transform:matrix(0.194678,0.002920,-0.003750,0.249972,0,0);-ms-transform:matrix(0.194678,0.002920,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.194678,0.002920,-0.003750,0.249972,0,0);}
.ma_c00488{transform:matrix(0.195500,0.001369,-0.001750,0.249994,0,0);-ms-transform:matrix(0.195500,0.001369,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.195500,0.001369,-0.001750,0.249994,0,0);}
.m105_c00488{transform:matrix(0.195548,0.003520,-0.004499,0.249960,0,0);-ms-transform:matrix(0.195548,0.003520,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.195548,0.003520,-0.004499,0.249960,0,0);}
.m143_c00488{transform:matrix(0.195648,0.003522,-0.004499,0.249960,0,0);-ms-transform:matrix(0.195648,0.003522,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.195648,0.003522,-0.004499,0.249960,0,0);}
.md2_c00488{transform:matrix(0.195928,0.002939,-0.003750,0.249972,0,0);-ms-transform:matrix(0.195928,0.002939,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.195928,0.002939,-0.003750,0.249972,0,0);}
.m11a_c00488{transform:matrix(0.196093,0.003530,-0.004499,0.249960,0,0);-ms-transform:matrix(0.196093,0.003530,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.196093,0.003530,-0.004499,0.249960,0,0);}
.m10_c00488{transform:matrix(0.196130,0.001373,-0.001750,0.249994,0,0);-ms-transform:matrix(0.196130,0.001373,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.196130,0.001373,-0.001750,0.249994,0,0);}
.m19_c00488{transform:matrix(0.196830,0.001378,-0.001750,0.249994,0,0);-ms-transform:matrix(0.196830,0.001378,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.196830,0.001378,-0.001750,0.249994,0,0);}
.m12a_c00488{transform:matrix(0.196923,0.003545,-0.004499,0.249960,0,0);-ms-transform:matrix(0.196923,0.003545,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.196923,0.003545,-0.004499,0.249960,0,0);}
.mc3_c00488{transform:matrix(0.196943,0.002954,-0.003750,0.249972,0,0);-ms-transform:matrix(0.196943,0.002954,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.196943,0.002954,-0.003750,0.249972,0,0);}
.m5c_c00488{transform:matrix(0.197896,0.002375,-0.003000,0.249982,0,0);-ms-transform:matrix(0.197896,0.002375,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.197896,0.002375,-0.003000,0.249982,0,0);}
.m142_c00488{transform:matrix(0.198188,0.003567,-0.004499,0.249960,0,0);-ms-transform:matrix(0.198188,0.003567,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.198188,0.003567,-0.004499,0.249960,0,0);}
.mfc_c00488{transform:matrix(0.198248,0.002974,-0.003750,0.249972,0,0);-ms-transform:matrix(0.198248,0.002974,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.198248,0.002974,-0.003750,0.249972,0,0);}
.m73_c00488{transform:matrix(0.198253,0.002974,-0.003750,0.249972,0,0);-ms-transform:matrix(0.198253,0.002974,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.198253,0.002974,-0.003750,0.249972,0,0);}
.m2_c00488{transform:matrix(0.198450,0.001389,-0.001750,0.249994,0,0);-ms-transform:matrix(0.198450,0.001389,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.198450,0.001389,-0.001750,0.249994,0,0);}
.mce_c00488{transform:matrix(0.198843,0.002983,-0.003750,0.249972,0,0);-ms-transform:matrix(0.198843,0.002983,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.198843,0.002983,-0.003750,0.249972,0,0);}
.m107_c00488{transform:matrix(0.198883,0.003580,-0.004499,0.249960,0,0);-ms-transform:matrix(0.198883,0.003580,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.198883,0.003580,-0.004499,0.249960,0,0);}
.m85_c00488{transform:matrix(0.199213,0.002988,-0.003750,0.249972,0,0);-ms-transform:matrix(0.199213,0.002988,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.199213,0.002988,-0.003750,0.249972,0,0);}
.m87_c00488{transform:matrix(0.200432,0.003006,-0.003750,0.249972,0,0);-ms-transform:matrix(0.200432,0.003006,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.200432,0.003006,-0.003750,0.249972,0,0);}
.mcb_c00488{transform:matrix(0.203782,0.003057,-0.003750,0.249972,0,0);-ms-transform:matrix(0.203782,0.003057,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.203782,0.003057,-0.003750,0.249972,0,0);}
.mf3_c00488{transform:matrix(0.204107,0.003062,-0.003750,0.249972,0,0);-ms-transform:matrix(0.204107,0.003062,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.204107,0.003062,-0.003750,0.249972,0,0);}
.m141_c00488{transform:matrix(0.204372,0.003679,-0.004499,0.249960,0,0);-ms-transform:matrix(0.204372,0.003679,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.204372,0.003679,-0.004499,0.249960,0,0);}
.m122_c00488{transform:matrix(0.204782,0.003686,-0.004499,0.249960,0,0);-ms-transform:matrix(0.204782,0.003686,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.204782,0.003686,-0.004499,0.249960,0,0);}
.me0_c00488{transform:matrix(0.204792,0.003072,-0.003750,0.249972,0,0);-ms-transform:matrix(0.204792,0.003072,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.204792,0.003072,-0.003750,0.249972,0,0);}
.m81_c00488{transform:matrix(0.205207,0.003078,-0.003750,0.249972,0,0);-ms-transform:matrix(0.205207,0.003078,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.205207,0.003078,-0.003750,0.249972,0,0);}
.m5b_c00488{transform:matrix(0.206205,0.002474,-0.003000,0.249982,0,0);-ms-transform:matrix(0.206205,0.002474,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.206205,0.002474,-0.003000,0.249982,0,0);}
.m119_c00488{transform:matrix(0.206237,0.003712,-0.004499,0.249960,0,0);-ms-transform:matrix(0.206237,0.003712,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.206237,0.003712,-0.004499,0.249960,0,0);}
.m129_c00488{transform:matrix(0.206432,0.003716,-0.004499,0.249960,0,0);-ms-transform:matrix(0.206432,0.003716,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.206432,0.003716,-0.004499,0.249960,0,0);}
.mea_c00488{transform:matrix(0.206717,0.003101,-0.003750,0.249972,0,0);-ms-transform:matrix(0.206717,0.003101,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.206717,0.003101,-0.003750,0.249972,0,0);}
.m4d_c00488{transform:matrix(0.206725,0.002481,-0.003000,0.249982,0,0);-ms-transform:matrix(0.206725,0.002481,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.206725,0.002481,-0.003000,0.249982,0,0);}
.mb3_c00488{transform:matrix(0.206872,0.003103,-0.003750,0.249972,0,0);-ms-transform:matrix(0.206872,0.003103,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.206872,0.003103,-0.003750,0.249972,0,0);}
.m56_c00488{transform:matrix(0.207080,0.002485,-0.003000,0.249982,0,0);-ms-transform:matrix(0.207080,0.002485,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.207080,0.002485,-0.003000,0.249982,0,0);}
.m1_c00488{transform:matrix(0.207350,0.001451,-0.001750,0.249994,0,0);-ms-transform:matrix(0.207350,0.001451,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.207350,0.001451,-0.001750,0.249994,0,0);}
.m79_c00488{transform:matrix(0.207372,0.003111,-0.003750,0.249972,0,0);-ms-transform:matrix(0.207372,0.003111,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.207372,0.003111,-0.003750,0.249972,0,0);}
.m121_c00488{transform:matrix(0.207391,0.003733,-0.004499,0.249960,0,0);-ms-transform:matrix(0.207391,0.003733,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.207391,0.003733,-0.004499,0.249960,0,0);}
.m75_c00488{transform:matrix(0.207412,0.003111,-0.003750,0.249972,0,0);-ms-transform:matrix(0.207412,0.003111,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.207412,0.003111,-0.003750,0.249972,0,0);}
.mfe_c00488{transform:matrix(0.208052,0.003121,-0.003750,0.249972,0,0);-ms-transform:matrix(0.208052,0.003121,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.208052,0.003121,-0.003750,0.249972,0,0);}
.m10a_c00488{transform:matrix(0.208301,0.003749,-0.004499,0.249960,0,0);-ms-transform:matrix(0.208301,0.003749,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.208301,0.003749,-0.004499,0.249960,0,0);}
.m88_c00488{transform:matrix(0.208312,0.003125,-0.003750,0.249972,0,0);-ms-transform:matrix(0.208312,0.003125,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.208312,0.003125,-0.003750,0.249972,0,0);}
.mc9_c00488{transform:matrix(0.208632,0.003129,-0.003750,0.249972,0,0);-ms-transform:matrix(0.208632,0.003129,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.208632,0.003129,-0.003750,0.249972,0,0);}
.mf9_c00488{transform:matrix(0.208906,0.003134,-0.003750,0.249972,0,0);-ms-transform:matrix(0.208906,0.003134,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.208906,0.003134,-0.003750,0.249972,0,0);}
.m64_c00488{transform:matrix(0.209285,0.002511,-0.003000,0.249982,0,0);-ms-transform:matrix(0.209285,0.002511,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.209285,0.002511,-0.003000,0.249982,0,0);}
.m94_c00488{transform:matrix(0.209471,0.003142,-0.003750,0.249972,0,0);-ms-transform:matrix(0.209471,0.003142,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.209471,0.003142,-0.003750,0.249972,0,0);}
.m3f_c00488{transform:matrix(0.209480,0.002514,-0.003000,0.249982,0,0);-ms-transform:matrix(0.209480,0.002514,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.209480,0.002514,-0.003000,0.249982,0,0);}
.m6d_c00488{transform:matrix(0.209481,0.003142,-0.003750,0.249972,0,0);-ms-transform:matrix(0.209481,0.003142,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.209481,0.003142,-0.003750,0.249972,0,0);}
.m24_c00488{transform:matrix(0.209540,0.001467,-0.001750,0.249994,0,0);-ms-transform:matrix(0.209540,0.001467,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.209540,0.001467,-0.001750,0.249994,0,0);}
.m126_c00488{transform:matrix(0.209881,0.003778,-0.004499,0.249960,0,0);-ms-transform:matrix(0.209881,0.003778,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.209881,0.003778,-0.004499,0.249960,0,0);}
.mf0_c00488{transform:matrix(0.209911,0.003149,-0.003750,0.249972,0,0);-ms-transform:matrix(0.209911,0.003149,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.209911,0.003149,-0.003750,0.249972,0,0);}
.m108_c00488{transform:matrix(0.210216,0.003784,-0.004499,0.249960,0,0);-ms-transform:matrix(0.210216,0.003784,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.210216,0.003784,-0.004499,0.249960,0,0);}
.m100_c00488{transform:matrix(0.210506,0.003158,-0.003750,0.249972,0,0);-ms-transform:matrix(0.210506,0.003158,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.210506,0.003158,-0.003750,0.249972,0,0);}
.m52_c00488{transform:matrix(0.211200,0.002534,-0.003000,0.249982,0,0);-ms-transform:matrix(0.211200,0.002534,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.211200,0.002534,-0.003000,0.249982,0,0);}
.m117_c00488{transform:matrix(0.211451,0.003806,-0.004499,0.249960,0,0);-ms-transform:matrix(0.211451,0.003806,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.211451,0.003806,-0.004499,0.249960,0,0);}
.m103_c00488{transform:matrix(0.212871,0.003832,-0.004499,0.249960,0,0);-ms-transform:matrix(0.212871,0.003832,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.212871,0.003832,-0.004499,0.249960,0,0);}
.m116_c00488{transform:matrix(0.213220,0.003838,-0.004499,0.249960,0,0);-ms-transform:matrix(0.213220,0.003838,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.213220,0.003838,-0.004499,0.249960,0,0);}
.m123_c00488{transform:matrix(0.213265,0.003839,-0.004499,0.249960,0,0);-ms-transform:matrix(0.213265,0.003839,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.213265,0.003839,-0.004499,0.249960,0,0);}
.m109_c00488{transform:matrix(0.213285,0.003839,-0.004499,0.249960,0,0);-ms-transform:matrix(0.213285,0.003839,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.213285,0.003839,-0.004499,0.249960,0,0);}
.m11e_c00488{transform:matrix(0.213350,0.003840,-0.004499,0.249960,0,0);-ms-transform:matrix(0.213350,0.003840,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.213350,0.003840,-0.004499,0.249960,0,0);}
.m12c_c00488{transform:matrix(0.213440,0.003842,-0.004499,0.249960,0,0);-ms-transform:matrix(0.213440,0.003842,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.213440,0.003842,-0.004499,0.249960,0,0);}
.mc7_c00488{transform:matrix(0.213716,0.003206,-0.003750,0.249972,0,0);-ms-transform:matrix(0.213716,0.003206,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.213716,0.003206,-0.003750,0.249972,0,0);}
.ma9_c00488{transform:matrix(0.214391,0.003216,-0.003750,0.249972,0,0);-ms-transform:matrix(0.214391,0.003216,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.214391,0.003216,-0.003750,0.249972,0,0);}
.m7_c00488{transform:matrix(0.214870,0.001504,-0.001750,0.249994,0,0);-ms-transform:matrix(0.214870,0.001504,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.214870,0.001504,-0.001750,0.249994,0,0);}
.mc8_c00488{transform:matrix(0.214946,0.003224,-0.003750,0.249972,0,0);-ms-transform:matrix(0.214946,0.003224,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.214946,0.003224,-0.003750,0.249972,0,0);}
.m4a_c00488{transform:matrix(0.215080,0.002581,-0.003000,0.249982,0,0);-ms-transform:matrix(0.215080,0.002581,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.215080,0.002581,-0.003000,0.249982,0,0);}
.mc_c00488{transform:matrix(0.215350,0.001507,-0.001750,0.249994,0,0);-ms-transform:matrix(0.215350,0.001507,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.215350,0.001507,-0.001750,0.249994,0,0);}
.m8_c00488{transform:matrix(0.215520,0.001509,-0.001750,0.249994,0,0);-ms-transform:matrix(0.215520,0.001509,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.215520,0.001509,-0.001750,0.249994,0,0);}
.m83_c00488{transform:matrix(0.215646,0.003235,-0.003750,0.249972,0,0);-ms-transform:matrix(0.215646,0.003235,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.215646,0.003235,-0.003750,0.249972,0,0);}
.m120_c00488{transform:matrix(0.216270,0.003893,-0.004499,0.249960,0,0);-ms-transform:matrix(0.216270,0.003893,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.216270,0.003893,-0.004499,0.249960,0,0);}
.m86_c00488{transform:matrix(0.216321,0.003245,-0.003750,0.249972,0,0);-ms-transform:matrix(0.216321,0.003245,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.216321,0.003245,-0.003750,0.249972,0,0);}
.m6b_c00488{transform:matrix(0.216971,0.003255,-0.003750,0.249972,0,0);-ms-transform:matrix(0.216971,0.003255,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.216971,0.003255,-0.003750,0.249972,0,0);}
.m10b_c00488{transform:matrix(0.217210,0.003910,-0.004499,0.249960,0,0);-ms-transform:matrix(0.217210,0.003910,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.217210,0.003910,-0.004499,0.249960,0,0);}
.m128_c00488{transform:matrix(0.217230,0.003910,-0.004499,0.249960,0,0);-ms-transform:matrix(0.217230,0.003910,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.217230,0.003910,-0.004499,0.249960,0,0);}
.mcc_c00488{transform:matrix(0.217251,0.003259,-0.003750,0.249972,0,0);-ms-transform:matrix(0.217251,0.003259,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.217251,0.003259,-0.003750,0.249972,0,0);}
.mca_c00488{transform:matrix(0.217381,0.003261,-0.003750,0.249972,0,0);-ms-transform:matrix(0.217381,0.003261,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.217381,0.003261,-0.003750,0.249972,0,0);}
.mc4_c00488{transform:matrix(0.217561,0.003263,-0.003750,0.249972,0,0);-ms-transform:matrix(0.217561,0.003263,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.217561,0.003263,-0.003750,0.249972,0,0);}
.m8a_c00488{transform:matrix(0.217666,0.003265,-0.003750,0.249972,0,0);-ms-transform:matrix(0.217666,0.003265,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.217666,0.003265,-0.003750,0.249972,0,0);}
.m125_c00488{transform:matrix(0.217675,0.003918,-0.004499,0.249960,0,0);-ms-transform:matrix(0.217675,0.003918,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.217675,0.003918,-0.004499,0.249960,0,0);}
.m74_c00488{transform:matrix(0.217681,0.003265,-0.003750,0.249972,0,0);-ms-transform:matrix(0.217681,0.003265,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.217681,0.003265,-0.003750,0.249972,0,0);}
.m26_c00488{transform:matrix(0.217940,0.001526,-0.001750,0.249994,0,0);-ms-transform:matrix(0.217940,0.001526,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.217940,0.001526,-0.001750,0.249994,0,0);}
.mc2_c00488{transform:matrix(0.218155,0.003272,-0.003750,0.249972,0,0);-ms-transform:matrix(0.218155,0.003272,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.218155,0.003272,-0.003750,0.249972,0,0);}
.mcf_c00488{transform:matrix(0.218345,0.003275,-0.003750,0.249972,0,0);-ms-transform:matrix(0.218345,0.003275,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.218345,0.003275,-0.003750,0.249972,0,0);}
.m11d_c00488{transform:matrix(0.218430,0.003932,-0.004499,0.249960,0,0);-ms-transform:matrix(0.218430,0.003932,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.218430,0.003932,-0.004499,0.249960,0,0);}
.m6_c00488{transform:matrix(0.218750,0.001531,-0.001750,0.249994,0,0);-ms-transform:matrix(0.218750,0.001531,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.218750,0.001531,-0.001750,0.249994,0,0);}
.mf7_c00488{transform:matrix(0.218830,0.003282,-0.003750,0.249972,0,0);-ms-transform:matrix(0.218830,0.003282,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.218830,0.003282,-0.003750,0.249972,0,0);}
.mcd_c00488{transform:matrix(0.218840,0.003283,-0.003750,0.249972,0,0);-ms-transform:matrix(0.218840,0.003283,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.218840,0.003283,-0.003750,0.249972,0,0);}
.m106_c00488{transform:matrix(0.219154,0.003945,-0.004499,0.249960,0,0);-ms-transform:matrix(0.219154,0.003945,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.219154,0.003945,-0.004499,0.249960,0,0);}
.m69_c00488{transform:matrix(0.219189,0.002630,-0.003000,0.249982,0,0);-ms-transform:matrix(0.219189,0.002630,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.219189,0.002630,-0.003000,0.249982,0,0);}
.m102_c00488{transform:matrix(0.219625,0.003294,-0.003750,0.249972,0,0);-ms-transform:matrix(0.219625,0.003294,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.219625,0.003294,-0.003750,0.249972,0,0);}
.m12b_c00488{transform:matrix(0.219769,0.003956,-0.004499,0.249960,0,0);-ms-transform:matrix(0.219769,0.003956,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.219769,0.003956,-0.004499,0.249960,0,0);}
.mee_c00488{transform:matrix(0.220165,0.003302,-0.003750,0.249972,0,0);-ms-transform:matrix(0.220165,0.003302,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.220165,0.003302,-0.003750,0.249972,0,0);}
.m60_c00488{transform:matrix(0.220174,0.002642,-0.003000,0.249982,0,0);-ms-transform:matrix(0.220174,0.002642,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.220174,0.002642,-0.003000,0.249982,0,0);}
.mb6_c00488{transform:matrix(0.221390,0.003321,-0.003750,0.249972,0,0);-ms-transform:matrix(0.221390,0.003321,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.221390,0.003321,-0.003750,0.249972,0,0);}
.m4e_c00488{transform:matrix(0.221584,0.002659,-0.003000,0.249982,0,0);-ms-transform:matrix(0.221584,0.002659,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.221584,0.002659,-0.003000,0.249982,0,0);}
.med_c00488{transform:matrix(0.221655,0.003325,-0.003750,0.249972,0,0);-ms-transform:matrix(0.221655,0.003325,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.221655,0.003325,-0.003750,0.249972,0,0);}
.m10d_c00488{transform:matrix(0.221774,0.003992,-0.004499,0.249960,0,0);-ms-transform:matrix(0.221774,0.003992,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.221774,0.003992,-0.004499,0.249960,0,0);}
.ma0_c00488{transform:matrix(0.221785,0.003327,-0.003750,0.249972,0,0);-ms-transform:matrix(0.221785,0.003327,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.221785,0.003327,-0.003750,0.249972,0,0);}
.m25_c00488{transform:matrix(0.221805,0.001553,-0.001750,0.249994,0,0);-ms-transform:matrix(0.221805,0.001553,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.221805,0.001553,-0.001750,0.249994,0,0);}
.m42_c00488{transform:matrix(0.221864,0.002662,-0.003000,0.249982,0,0);-ms-transform:matrix(0.221864,0.002662,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.221864,0.002662,-0.003000,0.249982,0,0);}
.md_c00488{transform:matrix(0.222395,0.001557,-0.001750,0.249994,0,0);-ms-transform:matrix(0.222395,0.001557,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.222395,0.001557,-0.001750,0.249994,0,0);}
.m89_c00488{transform:matrix(0.222465,0.003337,-0.003750,0.249972,0,0);-ms-transform:matrix(0.222465,0.003337,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.222465,0.003337,-0.003750,0.249972,0,0);}
.mdf_c00488{transform:matrix(0.222820,0.003342,-0.003750,0.249972,0,0);-ms-transform:matrix(0.222820,0.003342,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.222820,0.003342,-0.003750,0.249972,0,0);}
.m9f_c00488{transform:matrix(0.223155,0.003347,-0.003750,0.249972,0,0);-ms-transform:matrix(0.223155,0.003347,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.223155,0.003347,-0.003750,0.249972,0,0);}
.mb7_c00488{transform:matrix(0.223245,0.003349,-0.003750,0.249972,0,0);-ms-transform:matrix(0.223245,0.003349,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.223245,0.003349,-0.003750,0.249972,0,0);}
.m2e_c00488{transform:matrix(0.223659,0.002684,-0.003000,0.249982,0,0);-ms-transform:matrix(0.223659,0.002684,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.223659,0.002684,-0.003000,0.249982,0,0);}
.mb_c00488{transform:matrix(0.223945,0.001568,-0.001750,0.249994,0,0);-ms-transform:matrix(0.223945,0.001568,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.223945,0.001568,-0.001750,0.249994,0,0);}
.m96_c00488{transform:matrix(0.223945,0.003359,-0.003750,0.249972,0,0);-ms-transform:matrix(0.223945,0.003359,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.223945,0.003359,-0.003750,0.249972,0,0);}
.mff_c00488{transform:matrix(0.223955,0.003359,-0.003750,0.249972,0,0);-ms-transform:matrix(0.223955,0.003359,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.223955,0.003359,-0.003750,0.249972,0,0);}
.m21_c00488{transform:matrix(0.223965,0.001568,-0.001750,0.249994,0,0);-ms-transform:matrix(0.223965,0.001568,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.223965,0.001568,-0.001750,0.249994,0,0);}
.me6_c00488{transform:matrix(0.224045,0.003361,-0.003750,0.249972,0,0);-ms-transform:matrix(0.224045,0.003361,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.224045,0.003361,-0.003750,0.249972,0,0);}
.me2_c00488{transform:matrix(0.224375,0.003366,-0.003750,0.249972,0,0);-ms-transform:matrix(0.224375,0.003366,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.224375,0.003366,-0.003750,0.249972,0,0);}
.m4b_c00488{transform:matrix(0.224584,0.002695,-0.003000,0.249982,0,0);-ms-transform:matrix(0.224584,0.002695,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.224584,0.002695,-0.003000,0.249982,0,0);}
.m5d_c00488{transform:matrix(0.224604,0.002695,-0.003000,0.249982,0,0);-ms-transform:matrix(0.224604,0.002695,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.224604,0.002695,-0.003000,0.249982,0,0);}
.m2c_c00488{transform:matrix(0.224704,0.002696,-0.003000,0.249982,0,0);-ms-transform:matrix(0.224704,0.002696,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.224704,0.002696,-0.003000,0.249982,0,0);}
.m3_c00488{transform:matrix(0.224814,0.001574,-0.001750,0.249994,0,0);-ms-transform:matrix(0.224814,0.001574,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.224814,0.001574,-0.001750,0.249994,0,0);}
.ma5_c00488{transform:matrix(0.224975,0.003375,-0.003750,0.249972,0,0);-ms-transform:matrix(0.224975,0.003375,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.224975,0.003375,-0.003750,0.249972,0,0);}
.m113_c00488{transform:matrix(0.225024,0.004050,-0.004499,0.249960,0,0);-ms-transform:matrix(0.225024,0.004050,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.225024,0.004050,-0.004499,0.249960,0,0);}
.m101_c00488{transform:matrix(0.225200,0.003378,-0.003750,0.249972,0,0);-ms-transform:matrix(0.225200,0.003378,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.225200,0.003378,-0.003750,0.249972,0,0);}
.me8_c00488{transform:matrix(0.225300,0.003379,-0.003750,0.249972,0,0);-ms-transform:matrix(0.225300,0.003379,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.225300,0.003379,-0.003750,0.249972,0,0);}
.m11b_c00488{transform:matrix(0.225304,0.004055,-0.004499,0.249960,0,0);-ms-transform:matrix(0.225304,0.004055,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.225304,0.004055,-0.004499,0.249960,0,0);}
.m47_c00488{transform:matrix(0.225329,0.002704,-0.003000,0.249982,0,0);-ms-transform:matrix(0.225329,0.002704,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.225329,0.002704,-0.003000,0.249982,0,0);}
.m55_c00488{transform:matrix(0.225504,0.002706,-0.003000,0.249982,0,0);-ms-transform:matrix(0.225504,0.002706,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.225504,0.002706,-0.003000,0.249982,0,0);}
.m10f_c00488{transform:matrix(0.225633,0.004061,-0.004499,0.249960,0,0);-ms-transform:matrix(0.225633,0.004061,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.225633,0.004061,-0.004499,0.249960,0,0);}
.m9_c00488{transform:matrix(0.225769,0.001580,-0.001750,0.249994,0,0);-ms-transform:matrix(0.225769,0.001580,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.225769,0.001580,-0.001750,0.249994,0,0);}
.ma6_c00488{transform:matrix(0.226000,0.003390,-0.003750,0.249972,0,0);-ms-transform:matrix(0.226000,0.003390,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.226000,0.003390,-0.003750,0.249972,0,0);}
.md4_c00488{transform:matrix(0.226005,0.003390,-0.003750,0.249972,0,0);-ms-transform:matrix(0.226005,0.003390,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.226005,0.003390,-0.003750,0.249972,0,0);}
.mfb_c00488{transform:matrix(0.226075,0.003391,-0.003750,0.249972,0,0);-ms-transform:matrix(0.226075,0.003391,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.226075,0.003391,-0.003750,0.249972,0,0);}
.ma7_c00488{transform:matrix(0.226340,0.003395,-0.003750,0.249972,0,0);-ms-transform:matrix(0.226340,0.003395,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.226340,0.003395,-0.003750,0.249972,0,0);}
.m5a_c00488{transform:matrix(0.226404,0.002717,-0.003000,0.249982,0,0);-ms-transform:matrix(0.226404,0.002717,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.226404,0.002717,-0.003000,0.249982,0,0);}
.m57_c00488{transform:matrix(0.226849,0.002722,-0.003000,0.249982,0,0);-ms-transform:matrix(0.226849,0.002722,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.226849,0.002722,-0.003000,0.249982,0,0);}
.m65_c00488{transform:matrix(0.227234,0.002727,-0.003000,0.249982,0,0);-ms-transform:matrix(0.227234,0.002727,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.227234,0.002727,-0.003000,0.249982,0,0);}
.m104_c00488{transform:matrix(0.227658,0.004098,-0.004499,0.249960,0,0);-ms-transform:matrix(0.227658,0.004098,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.227658,0.004098,-0.004499,0.249960,0,0);}
.mb9_c00488{transform:matrix(0.228134,0.003422,-0.003750,0.249972,0,0);-ms-transform:matrix(0.228134,0.003422,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.228134,0.003422,-0.003750,0.249972,0,0);}
.m7c_c00488{transform:matrix(0.228204,0.003423,-0.003750,0.249972,0,0);-ms-transform:matrix(0.228204,0.003423,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.228204,0.003423,-0.003750,0.249972,0,0);}
.mf6_c00488{transform:matrix(0.228299,0.003424,-0.003750,0.249972,0,0);-ms-transform:matrix(0.228299,0.003424,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.228299,0.003424,-0.003750,0.249972,0,0);}
.mc5_c00488{transform:matrix(0.228449,0.003427,-0.003750,0.249972,0,0);-ms-transform:matrix(0.228449,0.003427,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.228449,0.003427,-0.003750,0.249972,0,0);}
.m59_c00488{transform:matrix(0.228544,0.002743,-0.003000,0.249982,0,0);-ms-transform:matrix(0.228544,0.002743,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.228544,0.002743,-0.003000,0.249982,0,0);}
.mbe_c00488{transform:matrix(0.228789,0.003432,-0.003750,0.249972,0,0);-ms-transform:matrix(0.228789,0.003432,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.228789,0.003432,-0.003750,0.249972,0,0);}
.mf1_c00488{transform:matrix(0.229304,0.003440,-0.003750,0.249972,0,0);-ms-transform:matrix(0.229304,0.003440,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.229304,0.003440,-0.003750,0.249972,0,0);}
.m39_c00488{transform:matrix(0.229398,0.002753,-0.003000,0.249982,0,0);-ms-transform:matrix(0.229398,0.002753,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.229398,0.002753,-0.003000,0.249982,0,0);}
.m29_c00488{transform:matrix(0.229453,0.002753,-0.003000,0.249982,0,0);-ms-transform:matrix(0.229453,0.002753,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.229453,0.002753,-0.003000,0.249982,0,0);}
.m50_c00488{transform:matrix(0.229518,0.002754,-0.003000,0.249982,0,0);-ms-transform:matrix(0.229518,0.002754,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.229518,0.002754,-0.003000,0.249982,0,0);}
.m1e_c00488{transform:matrix(0.229519,0.001607,-0.001750,0.249994,0,0);-ms-transform:matrix(0.229519,0.001607,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.229519,0.001607,-0.001750,0.249994,0,0);}
.mfa_c00488{transform:matrix(0.229694,0.003445,-0.003750,0.249972,0,0);-ms-transform:matrix(0.229694,0.003445,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.229694,0.003445,-0.003750,0.249972,0,0);}
.m5_c00488{transform:matrix(0.230054,0.001610,-0.001750,0.249994,0,0);-ms-transform:matrix(0.230054,0.001610,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.230054,0.001610,-0.001750,0.249994,0,0);}
.m8d_c00488{transform:matrix(0.230629,0.003459,-0.003750,0.249972,0,0);-ms-transform:matrix(0.230629,0.003459,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.230629,0.003459,-0.003750,0.249972,0,0);}
.m114_c00488{transform:matrix(0.231837,0.004173,-0.004499,0.249960,0,0);-ms-transform:matrix(0.231837,0.004173,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.231837,0.004173,-0.004499,0.249960,0,0);}
.m7a_c00488{transform:matrix(0.232594,0.003489,-0.003750,0.249972,0,0);-ms-transform:matrix(0.232594,0.003489,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.232594,0.003489,-0.003750,0.249972,0,0);}
.m54_c00488{transform:matrix(0.233143,0.002798,-0.003000,0.249982,0,0);-ms-transform:matrix(0.233143,0.002798,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.233143,0.002798,-0.003000,0.249982,0,0);}
.m7e_c00488{transform:matrix(0.233519,0.003503,-0.003750,0.249972,0,0);-ms-transform:matrix(0.233519,0.003503,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.233519,0.003503,-0.003750,0.249972,0,0);}
.me5_c00488{transform:matrix(0.233609,0.003504,-0.003750,0.249972,0,0);-ms-transform:matrix(0.233609,0.003504,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.233609,0.003504,-0.003750,0.249972,0,0);}
.m67_c00488{transform:matrix(0.233823,0.002806,-0.003000,0.249982,0,0);-ms-transform:matrix(0.233823,0.002806,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.233823,0.002806,-0.003000,0.249982,0,0);}
.mfd_c00488{transform:matrix(0.234134,0.003512,-0.003750,0.249972,0,0);-ms-transform:matrix(0.234134,0.003512,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.234134,0.003512,-0.003750,0.249972,0,0);}
.meb_c00488{transform:matrix(0.234234,0.003514,-0.003750,0.249972,0,0);-ms-transform:matrix(0.234234,0.003514,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.234234,0.003514,-0.003750,0.249972,0,0);}
.m1a_c00488{transform:matrix(0.236104,0.001653,-0.001750,0.249994,0,0);-ms-transform:matrix(0.236104,0.001653,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.236104,0.001653,-0.001750,0.249994,0,0);}
.m6f_c00488{transform:matrix(0.236413,0.003546,-0.003750,0.249972,0,0);-ms-transform:matrix(0.236413,0.003546,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.236413,0.003546,-0.003750,0.249972,0,0);}
.mf4_c00488{transform:matrix(0.236593,0.003549,-0.003750,0.249972,0,0);-ms-transform:matrix(0.236593,0.003549,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.236593,0.003549,-0.003750,0.249972,0,0);}
.m76_c00488{transform:matrix(0.238128,0.003572,-0.003750,0.249972,0,0);-ms-transform:matrix(0.238128,0.003572,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.238128,0.003572,-0.003750,0.249972,0,0);}
.ma8_c00488{transform:matrix(0.238413,0.003576,-0.003750,0.249972,0,0);-ms-transform:matrix(0.238413,0.003576,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.238413,0.003576,-0.003750,0.249972,0,0);}
.m90_c00488{transform:matrix(0.238508,0.003578,-0.003750,0.249972,0,0);-ms-transform:matrix(0.238508,0.003578,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.238508,0.003578,-0.003750,0.249972,0,0);}
.md7_c00488{transform:matrix(0.238543,0.003578,-0.003750,0.249972,0,0);-ms-transform:matrix(0.238543,0.003578,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.238543,0.003578,-0.003750,0.249972,0,0);}
.m91_c00488{transform:matrix(0.238828,0.003582,-0.003750,0.249972,0,0);-ms-transform:matrix(0.238828,0.003582,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.238828,0.003582,-0.003750,0.249972,0,0);}
.m5e_c00488{transform:matrix(0.239578,0.002875,-0.003000,0.249982,0,0);-ms-transform:matrix(0.239578,0.002875,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.239578,0.002875,-0.003000,0.249982,0,0);}
.m61_c00488{transform:matrix(0.239833,0.002878,-0.003000,0.249982,0,0);-ms-transform:matrix(0.239833,0.002878,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.239833,0.002878,-0.003000,0.249982,0,0);}
.m43_c00488{transform:matrix(0.240088,0.002881,-0.003000,0.249982,0,0);-ms-transform:matrix(0.240088,0.002881,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.240088,0.002881,-0.003000,0.249982,0,0);}
.m4c_c00488{transform:matrix(0.240518,0.002886,-0.003000,0.249982,0,0);-ms-transform:matrix(0.240518,0.002886,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.240518,0.002886,-0.003000,0.249982,0,0);}
.m110_c00488{transform:matrix(0.240756,0.004334,-0.004499,0.249960,0,0);-ms-transform:matrix(0.240756,0.004334,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.240756,0.004334,-0.004499,0.249960,0,0);}
.m68_c00488{transform:matrix(0.240953,0.002891,-0.003000,0.249982,0,0);-ms-transform:matrix(0.240953,0.002891,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.240953,0.002891,-0.003000,0.249982,0,0);}
.m5f_c00488{transform:matrix(0.240958,0.002891,-0.003000,0.249982,0,0);-ms-transform:matrix(0.240958,0.002891,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.240958,0.002891,-0.003000,0.249982,0,0);}
.mf8_c00488{transform:matrix(0.241173,0.003618,-0.003750,0.249972,0,0);-ms-transform:matrix(0.241173,0.003618,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.241173,0.003618,-0.003750,0.249972,0,0);}
.m63_c00488{transform:matrix(0.241208,0.002894,-0.003000,0.249982,0,0);-ms-transform:matrix(0.241208,0.002894,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.241208,0.002894,-0.003000,0.249982,0,0);}
.m11f_c00488{transform:matrix(0.241456,0.004346,-0.004499,0.249960,0,0);-ms-transform:matrix(0.241456,0.004346,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.241456,0.004346,-0.004499,0.249960,0,0);}
.m4f_c00488{transform:matrix(0.241678,0.002900,-0.003000,0.249982,0,0);-ms-transform:matrix(0.241678,0.002900,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.241678,0.002900,-0.003000,0.249982,0,0);}
.ma2_c00488{transform:matrix(0.242153,0.003632,-0.003750,0.249972,0,0);-ms-transform:matrix(0.242153,0.003632,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.242153,0.003632,-0.003750,0.249972,0,0);}
.m2b_c00488{transform:matrix(0.242313,0.002908,-0.003000,0.249982,0,0);-ms-transform:matrix(0.242313,0.002908,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.242313,0.002908,-0.003000,0.249982,0,0);}
.mae_c00488{transform:matrix(0.242718,0.003641,-0.003750,0.249972,0,0);-ms-transform:matrix(0.242718,0.003641,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.242718,0.003641,-0.003750,0.249972,0,0);}
.m9d_c00488{transform:matrix(0.244937,0.003674,-0.003750,0.249972,0,0);-ms-transform:matrix(0.244937,0.003674,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.244937,0.003674,-0.003750,0.249972,0,0);}
.m10e_c00488{transform:matrix(0.245185,0.004413,-0.004499,0.249960,0,0);-ms-transform:matrix(0.245185,0.004413,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.245185,0.004413,-0.004499,0.249960,0,0);}
.m2a_c00488{transform:matrix(0.245252,0.002943,-0.003000,0.249982,0,0);-ms-transform:matrix(0.245252,0.002943,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.245252,0.002943,-0.003000,0.249982,0,0);}
.m66_c00488{transform:matrix(0.245962,0.002952,-0.003000,0.249982,0,0);-ms-transform:matrix(0.245962,0.002952,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.245962,0.002952,-0.003000,0.249982,0,0);}
.m115_c00488{transform:matrix(0.246295,0.004433,-0.004499,0.249960,0,0);-ms-transform:matrix(0.246295,0.004433,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.246295,0.004433,-0.004499,0.249960,0,0);}
.me3_c00488{transform:matrix(0.246522,0.003698,-0.003750,0.249972,0,0);-ms-transform:matrix(0.246522,0.003698,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.246522,0.003698,-0.003750,0.249972,0,0);}
.md6_c00488{transform:matrix(0.247127,0.003707,-0.003750,0.249972,0,0);-ms-transform:matrix(0.247127,0.003707,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.247127,0.003707,-0.003750,0.249972,0,0);}
.mbb_c00488{transform:matrix(0.247187,0.003708,-0.003750,0.249972,0,0);-ms-transform:matrix(0.247187,0.003708,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.247187,0.003708,-0.003750,0.249972,0,0);}
.m23_c00488{transform:matrix(0.247369,0.001732,-0.001750,0.249994,0,0);-ms-transform:matrix(0.247369,0.001732,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.247369,0.001732,-0.001750,0.249994,0,0);}
.m111_c00488{transform:matrix(0.248740,0.004477,-0.004499,0.249960,0,0);-ms-transform:matrix(0.248740,0.004477,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.248740,0.004477,-0.004499,0.249960,0,0);}
.m2f_c00488{transform:matrix(0.248872,0.002986,-0.003000,0.249982,0,0);-ms-transform:matrix(0.248872,0.002986,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.248872,0.002986,-0.003000,0.249982,0,0);}
.mdd_c00488{transform:matrix(0.248922,0.003734,-0.003750,0.249972,0,0);-ms-transform:matrix(0.248922,0.003734,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.248922,0.003734,-0.003750,0.249972,0,0);}
.mb4_c00488{transform:matrix(0.249377,0.003741,-0.003750,0.249972,0,0);-ms-transform:matrix(0.249377,0.003741,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.249377,0.003741,-0.003750,0.249972,0,0);}
.ma1_c00488{transform:matrix(0.249612,0.003744,-0.003750,0.249972,0,0);-ms-transform:matrix(0.249612,0.003744,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.249612,0.003744,-0.003750,0.249972,0,0);}
.m8f_c00488{transform:matrix(0.249637,0.003745,-0.003750,0.249972,0,0);-ms-transform:matrix(0.249637,0.003745,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.249637,0.003745,-0.003750,0.249972,0,0);}
.m27_c00488{transform:matrix(0.249834,0.001749,-0.001750,0.249994,0,0);-ms-transform:matrix(0.249834,0.001749,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.249834,0.001749,-0.001750,0.249994,0,0);}
.m6a_c00488{transform:matrix(0.249992,0.003750,-0.003750,0.249972,0,0);-ms-transform:matrix(0.249992,0.003750,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.249992,0.003750,-0.003750,0.249972,0,0);}
.mb1_c00488{transform:matrix(0.250127,0.003752,-0.003750,0.249972,0,0);-ms-transform:matrix(0.250127,0.003752,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.250127,0.003752,-0.003750,0.249972,0,0);}
.m7d_c00488{transform:matrix(0.250182,0.003753,-0.003750,0.249972,0,0);-ms-transform:matrix(0.250182,0.003753,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.250182,0.003753,-0.003750,0.249972,0,0);}
.mef_c00488{transform:matrix(0.250457,0.003757,-0.003750,0.249972,0,0);-ms-transform:matrix(0.250457,0.003757,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.250457,0.003757,-0.003750,0.249972,0,0);}
.mac_c00488{transform:matrix(0.251367,0.003771,-0.003750,0.249972,0,0);-ms-transform:matrix(0.251367,0.003771,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.251367,0.003771,-0.003750,0.249972,0,0);}
.m40_c00488{transform:matrix(0.251427,0.003017,-0.003000,0.249982,0,0);-ms-transform:matrix(0.251427,0.003017,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.251427,0.003017,-0.003000,0.249982,0,0);}
.m7b_c00488{transform:matrix(0.251442,0.003772,-0.003750,0.249972,0,0);-ms-transform:matrix(0.251442,0.003772,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.251442,0.003772,-0.003750,0.249972,0,0);}
.me1_c00488{transform:matrix(0.251632,0.003774,-0.003750,0.249972,0,0);-ms-transform:matrix(0.251632,0.003774,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.251632,0.003774,-0.003750,0.249972,0,0);}
.ma4_c00488{transform:matrix(0.251757,0.003776,-0.003750,0.249972,0,0);-ms-transform:matrix(0.251757,0.003776,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.251757,0.003776,-0.003750,0.249972,0,0);}
.m72_c00488{transform:matrix(0.252012,0.003780,-0.003750,0.249972,0,0);-ms-transform:matrix(0.252012,0.003780,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.252012,0.003780,-0.003750,0.249972,0,0);}
.m6c_c00488{transform:matrix(0.252072,0.003781,-0.003750,0.249972,0,0);-ms-transform:matrix(0.252072,0.003781,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.252072,0.003781,-0.003750,0.249972,0,0);}
.m32_c00488{transform:matrix(0.252417,0.003029,-0.003000,0.249982,0,0);-ms-transform:matrix(0.252417,0.003029,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.252417,0.003029,-0.003000,0.249982,0,0);}
.m9e_c00488{transform:matrix(0.253911,0.003809,-0.003750,0.249972,0,0);-ms-transform:matrix(0.253911,0.003809,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.253911,0.003809,-0.003750,0.249972,0,0);}
.m10c_c00488{transform:matrix(0.254109,0.004574,-0.004499,0.249960,0,0);-ms-transform:matrix(0.254109,0.004574,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.254109,0.004574,-0.004499,0.249960,0,0);}
.m2d_c00488{transform:matrix(0.254262,0.003051,-0.003000,0.249982,0,0);-ms-transform:matrix(0.254262,0.003051,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.254262,0.003051,-0.003000,0.249982,0,0);}
.m6e_c00488{transform:matrix(0.254936,0.003824,-0.003750,0.249972,0,0);-ms-transform:matrix(0.254936,0.003824,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.254936,0.003824,-0.003750,0.249972,0,0);}
.mb0_c00488{transform:matrix(0.255181,0.003828,-0.003750,0.249972,0,0);-ms-transform:matrix(0.255181,0.003828,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.255181,0.003828,-0.003750,0.249972,0,0);}
.mdc_c00488{transform:matrix(0.255411,0.003831,-0.003750,0.249972,0,0);-ms-transform:matrix(0.255411,0.003831,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.255411,0.003831,-0.003750,0.249972,0,0);}
.m53_c00488{transform:matrix(0.255582,0.003067,-0.003000,0.249982,0,0);-ms-transform:matrix(0.255582,0.003067,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.255582,0.003067,-0.003000,0.249982,0,0);}
.m9a_c00488{transform:matrix(0.255646,0.003835,-0.003750,0.249972,0,0);-ms-transform:matrix(0.255646,0.003835,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.255646,0.003835,-0.003750,0.249972,0,0);}
.m33_c00488{transform:matrix(0.255647,0.003068,-0.003000,0.249982,0,0);-ms-transform:matrix(0.255647,0.003068,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.255647,0.003068,-0.003000,0.249982,0,0);}
.ma3_c00488{transform:matrix(0.255901,0.003839,-0.003750,0.249972,0,0);-ms-transform:matrix(0.255901,0.003839,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.255901,0.003839,-0.003750,0.249972,0,0);}
.m44_c00488{transform:matrix(0.256612,0.003079,-0.003000,0.249982,0,0);-ms-transform:matrix(0.256612,0.003079,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.256612,0.003079,-0.003000,0.249982,0,0);}
.me9_c00488{transform:matrix(0.256956,0.003854,-0.003750,0.249972,0,0);-ms-transform:matrix(0.256956,0.003854,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.256956,0.003854,-0.003750,0.249972,0,0);}
.m1c_c00488{transform:matrix(0.257094,0.001800,-0.001750,0.249994,0,0);-ms-transform:matrix(0.257094,0.001800,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.257094,0.001800,-0.001750,0.249994,0,0);}
.md5_c00488{transform:matrix(0.257826,0.003867,-0.003750,0.249972,0,0);-ms-transform:matrix(0.257826,0.003867,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.257826,0.003867,-0.003750,0.249972,0,0);}
.me7_c00488{transform:matrix(0.258091,0.003871,-0.003750,0.249972,0,0);-ms-transform:matrix(0.258091,0.003871,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.258091,0.003871,-0.003750,0.249972,0,0);}
.m51_c00488{transform:matrix(0.258471,0.003102,-0.003000,0.249982,0,0);-ms-transform:matrix(0.258471,0.003102,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.258471,0.003102,-0.003000,0.249982,0,0);}
.m49_c00488{transform:matrix(0.259036,0.003108,-0.003000,0.249982,0,0);-ms-transform:matrix(0.259036,0.003108,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.259036,0.003108,-0.003000,0.249982,0,0);}
.mf2_c00488{transform:matrix(0.259176,0.003888,-0.003750,0.249972,0,0);-ms-transform:matrix(0.259176,0.003888,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.259176,0.003888,-0.003750,0.249972,0,0);}
.m112_c00488{transform:matrix(0.259288,0.004667,-0.004499,0.249960,0,0);-ms-transform:matrix(0.259288,0.004667,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.259288,0.004667,-0.004499,0.249960,0,0);}
.mb5_c00488{transform:matrix(0.259296,0.003889,-0.003750,0.249972,0,0);-ms-transform:matrix(0.259296,0.003889,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.259296,0.003889,-0.003750,0.249972,0,0);}
.mec_c00488{transform:matrix(0.260091,0.003901,-0.003750,0.249972,0,0);-ms-transform:matrix(0.260091,0.003901,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.260091,0.003901,-0.003750,0.249972,0,0);}
.mbf_c00488{transform:matrix(0.260396,0.003906,-0.003750,0.249972,0,0);-ms-transform:matrix(0.260396,0.003906,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.260396,0.003906,-0.003750,0.249972,0,0);}
.mba_c00488{transform:matrix(0.260621,0.003909,-0.003750,0.249972,0,0);-ms-transform:matrix(0.260621,0.003909,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.260621,0.003909,-0.003750,0.249972,0,0);}
.mbd_c00488{transform:matrix(0.260636,0.003910,-0.003750,0.249972,0,0);-ms-transform:matrix(0.260636,0.003910,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.260636,0.003910,-0.003750,0.249972,0,0);}
.m95_c00488{transform:matrix(0.260701,0.003911,-0.003750,0.249972,0,0);-ms-transform:matrix(0.260701,0.003911,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.260701,0.003911,-0.003750,0.249972,0,0);}
.m93_c00488{transform:matrix(0.261016,0.003915,-0.003750,0.249972,0,0);-ms-transform:matrix(0.261016,0.003915,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.261016,0.003915,-0.003750,0.249972,0,0);}
.me4_c00488{transform:matrix(0.261736,0.003926,-0.003750,0.249972,0,0);-ms-transform:matrix(0.261736,0.003926,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.261736,0.003926,-0.003750,0.249972,0,0);}
.m70_c00488{transform:matrix(0.263130,0.003947,-0.003750,0.249972,0,0);-ms-transform:matrix(0.263130,0.003947,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.263130,0.003947,-0.003750,0.249972,0,0);}
.md9_c00488{transform:matrix(0.263650,0.003955,-0.003750,0.249972,0,0);-ms-transform:matrix(0.263650,0.003955,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.263650,0.003955,-0.003750,0.249972,0,0);}
.maa_c00488{transform:matrix(0.264335,0.003965,-0.003750,0.249972,0,0);-ms-transform:matrix(0.264335,0.003965,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.264335,0.003965,-0.003750,0.249972,0,0);}
.mb8_c00488{transform:matrix(0.264545,0.003968,-0.003750,0.249972,0,0);-ms-transform:matrix(0.264545,0.003968,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.264545,0.003968,-0.003750,0.249972,0,0);}
.mad_c00488{transform:matrix(0.264645,0.003970,-0.003750,0.249972,0,0);-ms-transform:matrix(0.264645,0.003970,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.264645,0.003970,-0.003750,0.249972,0,0);}
.m9b_c00488{transform:matrix(0.264945,0.003974,-0.003750,0.249972,0,0);-ms-transform:matrix(0.264945,0.003974,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.264945,0.003974,-0.003750,0.249972,0,0);}
.maf_c00488{transform:matrix(0.266170,0.003993,-0.003750,0.249972,0,0);-ms-transform:matrix(0.266170,0.003993,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.266170,0.003993,-0.003750,0.249972,0,0);}
.m28_c00488{transform:matrix(0.266471,0.003198,-0.003000,0.249982,0,0);-ms-transform:matrix(0.266471,0.003198,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.266471,0.003198,-0.003000,0.249982,0,0);}
.m22_c00488{transform:matrix(0.267408,0.001872,-0.001750,0.249994,0,0);-ms-transform:matrix(0.267408,0.001872,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.267408,0.001872,-0.001750,0.249994,0,0);}
.m3e_c00488{transform:matrix(0.267491,0.003210,-0.003000,0.249982,0,0);-ms-transform:matrix(0.267491,0.003210,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.267491,0.003210,-0.003000,0.249982,0,0);}
.m99_c00488{transform:matrix(0.268930,0.004034,-0.003750,0.249972,0,0);-ms-transform:matrix(0.268930,0.004034,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.268930,0.004034,-0.003750,0.249972,0,0);}
.m98_c00488{transform:matrix(0.268995,0.004035,-0.003750,0.249972,0,0);-ms-transform:matrix(0.268995,0.004035,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.268995,0.004035,-0.003750,0.249972,0,0);}
.m8c_c00488{transform:matrix(0.269995,0.004050,-0.003750,0.249972,0,0);-ms-transform:matrix(0.269995,0.004050,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.269995,0.004050,-0.003750,0.249972,0,0);}
.m46_c00488{transform:matrix(0.270206,0.003242,-0.003000,0.249982,0,0);-ms-transform:matrix(0.270206,0.003242,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.270206,0.003242,-0.003000,0.249982,0,0);}
.mbc_c00488{transform:matrix(0.270230,0.004053,-0.003750,0.249972,0,0);-ms-transform:matrix(0.270230,0.004053,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.270230,0.004053,-0.003750,0.249972,0,0);}
.m41_c00488{transform:matrix(0.270426,0.003245,-0.003000,0.249982,0,0);-ms-transform:matrix(0.270426,0.003245,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.270426,0.003245,-0.003000,0.249982,0,0);}
.m97_c00488{transform:matrix(0.271060,0.004066,-0.003750,0.249972,0,0);-ms-transform:matrix(0.271060,0.004066,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.271060,0.004066,-0.003750,0.249972,0,0);}
.m71_c00488{transform:matrix(0.271474,0.004072,-0.003750,0.249972,0,0);-ms-transform:matrix(0.271474,0.004072,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.271474,0.004072,-0.003750,0.249972,0,0);}
.m1b_c00488{transform:matrix(0.271533,0.001901,-0.001750,0.249994,0,0);-ms-transform:matrix(0.271533,0.001901,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.271533,0.001901,-0.001750,0.249994,0,0);}
.m92_c00488{transform:matrix(0.271624,0.004074,-0.003750,0.249972,0,0);-ms-transform:matrix(0.271624,0.004074,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.271624,0.004074,-0.003750,0.249972,0,0);}
.m20_c00488{transform:matrix(0.271943,0.001904,-0.001750,0.249994,0,0);-ms-transform:matrix(0.271943,0.001904,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.271943,0.001904,-0.001750,0.249994,0,0);}
.m1f_c00488{transform:matrix(0.271973,0.001904,-0.001750,0.249994,0,0);-ms-transform:matrix(0.271973,0.001904,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.271973,0.001904,-0.001750,0.249994,0,0);}
.mda_c00488{transform:matrix(0.272574,0.004089,-0.003750,0.249972,0,0);-ms-transform:matrix(0.272574,0.004089,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.272574,0.004089,-0.003750,0.249972,0,0);}
.m8b_c00488{transform:matrix(0.272879,0.004093,-0.003750,0.249972,0,0);-ms-transform:matrix(0.272879,0.004093,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.272879,0.004093,-0.003750,0.249972,0,0);}
.m31_c00488{transform:matrix(0.273000,0.003276,-0.003000,0.249982,0,0);-ms-transform:matrix(0.273000,0.003276,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.273000,0.003276,-0.003000,0.249982,0,0);}
.m48_c00488{transform:matrix(0.273070,0.003277,-0.003000,0.249982,0,0);-ms-transform:matrix(0.273070,0.003277,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.273070,0.003277,-0.003000,0.249982,0,0);}
.mab_c00488{transform:matrix(0.274049,0.004111,-0.003750,0.249972,0,0);-ms-transform:matrix(0.274049,0.004111,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.274049,0.004111,-0.003750,0.249972,0,0);}
.m45_c00488{transform:matrix(0.277105,0.003325,-0.003000,0.249982,0,0);-ms-transform:matrix(0.277105,0.003325,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.277105,0.003325,-0.003000,0.249982,0,0);}
.m1d_c00488{transform:matrix(0.278483,0.001949,-0.001750,0.249994,0,0);-ms-transform:matrix(0.278483,0.001949,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.278483,0.001949,-0.001750,0.249994,0,0);}
.m8e_c00488{transform:matrix(0.278609,0.004179,-0.003750,0.249972,0,0);-ms-transform:matrix(0.278609,0.004179,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.278609,0.004179,-0.003750,0.249972,0,0);}
.md8_c00488{transform:matrix(0.278819,0.004182,-0.003750,0.249972,0,0);-ms-transform:matrix(0.278819,0.004182,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.278819,0.004182,-0.003750,0.249972,0,0);}
.m9c_c00488{transform:matrix(0.279999,0.004200,-0.003750,0.249972,0,0);-ms-transform:matrix(0.279999,0.004200,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.279999,0.004200,-0.003750,0.249972,0,0);}
.m34_c00488{transform:matrix(0.281100,0.003373,-0.003000,0.249982,0,0);-ms-transform:matrix(0.281100,0.003373,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.281100,0.003373,-0.003000,0.249982,0,0);}
.m30_c00488{transform:matrix(0.281505,0.003378,-0.003000,0.249982,0,0);-ms-transform:matrix(0.281505,0.003378,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.281505,0.003378,-0.003000,0.249982,0,0);}
.mdb_c00488{transform:matrix(0.282143,0.004232,-0.003750,0.249972,0,0);-ms-transform:matrix(0.282143,0.004232,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.282143,0.004232,-0.003750,0.249972,0,0);}
.m36_c00488{transform:matrix(0.283090,0.003397,-0.003000,0.249982,0,0);-ms-transform:matrix(0.283090,0.003397,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.283090,0.003397,-0.003000,0.249982,0,0);}
.mc0_c00488{transform:matrix(0.283168,0.004248,-0.003750,0.249972,0,0);-ms-transform:matrix(0.283168,0.004248,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.283168,0.004248,-0.003750,0.249972,0,0);}
.m38_c00488{transform:matrix(0.284475,0.003414,-0.003000,0.249982,0,0);-ms-transform:matrix(0.284475,0.003414,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.284475,0.003414,-0.003000,0.249982,0,0);}
.m37_c00488{transform:matrix(0.286134,0.003434,-0.003000,0.249982,0,0);-ms-transform:matrix(0.286134,0.003434,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.286134,0.003434,-0.003000,0.249982,0,0);}
.m3c_c00488{transform:matrix(0.287054,0.003445,-0.003000,0.249982,0,0);-ms-transform:matrix(0.287054,0.003445,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.287054,0.003445,-0.003000,0.249982,0,0);}
.m3b_c00488{transform:matrix(0.287719,0.003453,-0.003000,0.249982,0,0);-ms-transform:matrix(0.287719,0.003453,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.287719,0.003453,-0.003000,0.249982,0,0);}
.mb2_c00488{transform:matrix(0.288568,0.004329,-0.003750,0.249972,0,0);-ms-transform:matrix(0.288568,0.004329,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.288568,0.004329,-0.003750,0.249972,0,0);}
.m3a_c00488{transform:matrix(0.290004,0.003480,-0.003000,0.249982,0,0);-ms-transform:matrix(0.290004,0.003480,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.290004,0.003480,-0.003000,0.249982,0,0);}
.m35_c00488{transform:matrix(0.301513,0.003618,-0.003000,0.249982,0,0);-ms-transform:matrix(0.301513,0.003618,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.301513,0.003618,-0.003000,0.249982,0,0);}
.m3d_c00488{transform:matrix(0.314367,0.003772,-0.003000,0.249982,0,0);-ms-transform:matrix(0.314367,0.003772,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.314367,0.003772,-0.003000,0.249982,0,0);}
.m77_c00488{transform:matrix(0.342941,0.005144,-0.003750,0.249972,0,0);-ms-transform:matrix(0.342941,0.005144,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.342941,0.005144,-0.003750,0.249972,0,0);}
.m0_c00488{transform:matrix(0.345495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345495,0.000000,0.000000,0.250000,0,0);}
.m78_c00488{transform:matrix(0.350396,0.005256,-0.003750,0.249972,0,0);-ms-transform:matrix(0.350396,0.005256,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.350396,0.005256,-0.003750,0.249972,0,0);}
.v0_c00488{vertical-align:0.000000px;}
.ls0_c00488{letter-spacing:0.000000px;}
.sc__c00488{text-shadow:none;}
.sc0_c00488{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__c00488{-webkit-text-stroke:0px transparent;}
.sc0_c00488{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00488{word-spacing:0.000000px;}
.fc0_c00488{color:transparent;}
.fs0_c00488{font-size:66.000000px;}
.fs6_c00488{font-size:66.004752px;}
.fs3_c00488{font-size:72.001764px;}
.fs5_c00488{font-size:72.005184px;}
.fsb_c00488{font-size:72.008100px;}
.fs4_c00488{font-size:78.001911px;}
.fs7_c00488{font-size:78.005616px;}
.fs9_c00488{font-size:78.008775px;}
.fse_c00488{font-size:78.012635px;}
.fs1_c00488{font-size:84.002058px;}
.fs8_c00488{font-size:84.006048px;}
.fsc_c00488{font-size:84.009449px;}
.fsf_c00488{font-size:84.013607px;}
.fsa_c00488{font-size:90.010124px;}
.fsd_c00488{font-size:90.014579px;}
.fs11_c00488{font-size:96.015551px;}
.fs2_c00488{font-size:102.002499px;}
.fs10_c00488{font-size:102.016523px;}
.y0_c00488{bottom:0.000000px;}
.y151_c00488{bottom:71.879943px;}
.y150_c00488{bottom:73.115985px;}
.y14f_c00488{bottom:74.566608px;}
.y14e_c00488{bottom:75.293418px;}
.y14d_c00488{bottom:75.790065px;}
.y14c_c00488{bottom:77.472066px;}
.y14b_c00488{bottom:79.158603px;}
.y14a_c00488{bottom:81.806691px;}
.y149_c00488{bottom:101.532426px;}
.y148_c00488{bottom:102.711900px;}
.y147_c00488{bottom:104.096496px;}
.y146_c00488{bottom:104.782029px;}
.y145_c00488{bottom:105.253341px;}
.y144_c00488{bottom:106.166328px;}
.y143_c00488{bottom:106.863594px;}
.y142_c00488{bottom:108.484851px;}
.y141_c00488{bottom:109.165308px;}
.y140_c00488{bottom:110.327271px;}
.y13f_c00488{bottom:111.240150px;}
.y13e_c00488{bottom:129.775668px;}
.y13d_c00488{bottom:130.711797px;}
.y13c_c00488{bottom:131.846946px;}
.y13b_c00488{bottom:132.397146px;}
.y13a_c00488{bottom:132.952449px;}
.y139_c00488{bottom:133.704786px;}
.y138_c00488{bottom:134.264868px;}
.y137_c00488{bottom:135.559023px;}
.y136_c00488{bottom:136.876788px;}
.y135_c00488{bottom:137.429850px;}
.y134_c00488{bottom:147.875832px;}
.y133_c00488{bottom:149.460894px;}
.y132_c00488{bottom:150.078357px;}
.y131_c00488{bottom:151.426467px;}
.y130_c00488{bottom:152.665308px;}
.y12f_c00488{bottom:153.253719px;}
.y12e_c00488{bottom:154.256391px;}
.y12d_c00488{bottom:155.631285px;}
.y12c_c00488{bottom:157.002885px;}
.y12b_c00488{bottom:158.764500px;}
.y12a_c00488{bottom:190.877337px;}
.y129_c00488{bottom:191.111328px;}
.y128_c00488{bottom:191.498655px;}
.y127_c00488{bottom:192.277353px;}
.y126_c00488{bottom:192.586893px;}
.y125_c00488{bottom:193.048881px;}
.y124_c00488{bottom:193.275108px;}
.y123_c00488{bottom:193.744023px;}
.y122_c00488{bottom:193.970304px;}
.y121_c00488{bottom:194.200305px;}
.y120_c00488{bottom:194.431158px;}
.y11f_c00488{bottom:194.742450px;}
.y11e_c00488{bottom:195.199692px;}
.y11d_c00488{bottom:220.142700px;}
.y11c_c00488{bottom:221.913099px;}
.y11b_c00488{bottom:223.100442px;}
.y11a_c00488{bottom:225.823530px;}
.y119_c00488{bottom:227.880306px;}
.y118_c00488{bottom:229.694055px;}
.y117_c00488{bottom:230.890689px;}
.y116_c00488{bottom:232.962333px;}
.y115_c00488{bottom:234.135969px;}
.y114_c00488{bottom:237.062853px;}
.y113_c00488{bottom:260.264643px;}
.y112_c00488{bottom:261.265020px;}
.y111_c00488{bottom:262.661811px;}
.y110_c00488{bottom:263.672880px;}
.y10f_c00488{bottom:264.450453px;}
.y10e_c00488{bottom:266.439273px;}
.y10d_c00488{bottom:267.250758px;}
.y10c_c00488{bottom:267.830394px;}
.y10b_c00488{bottom:269.196000px;}
.y10a_c00488{bottom:299.558505px;}
.y109_c00488{bottom:300.334148px;}
.y108_c00488{bottom:300.884145px;}
.y107_c00488{bottom:301.761593px;}
.y106_c00488{bottom:302.210393px;}
.y105_c00488{bottom:302.641875px;}
.y104_c00488{bottom:303.423112px;}
.y103_c00488{bottom:330.273622px;}
.y102_c00488{bottom:331.290780px;}
.y101_c00488{bottom:332.283457px;}
.y100_c00488{bottom:332.951325px;}
.yff_c00488{bottom:334.608742px;}
.yfe_c00488{bottom:335.597617px;}
.yfd_c00488{bottom:336.744060px;}
.yfc_c00488{bottom:337.242345px;}
.yfb_c00488{bottom:339.210600px;}
.yfa_c00488{bottom:339.877747px;}
.yf9_c00488{bottom:367.706700px;}
.yf8_c00488{bottom:368.241787px;}
.yf7_c00488{bottom:368.637000px;}
.yf6_c00488{bottom:369.580388px;}
.yf5_c00488{bottom:369.966698px;}
.yf4_c00488{bottom:370.491848px;}
.yf3_c00488{bottom:372.086415px;}
.yf2_c00488{bottom:372.749805px;}
.yf1_c00488{bottom:373.136160px;}
.yf0_c00488{bottom:373.934400px;}
.yef_c00488{bottom:374.440950px;}
.yee_c00488{bottom:401.178758px;}
.yed_c00488{bottom:401.775975px;}
.yec_c00488{bottom:402.976095px;}
.yeb_c00488{bottom:405.382177px;}
.yea_c00488{bottom:405.950820px;}
.ye9_c00488{bottom:407.169330px;}
.ye8_c00488{bottom:407.946667px;}
.ye7_c00488{bottom:408.748732px;}
.ye6_c00488{bottom:410.503777px;}
.ye5_c00488{bottom:411.090742px;}
.ye4_c00488{bottom:411.702750px;}
.ye3_c00488{bottom:434.226900px;}
.ye2_c00488{bottom:435.262545px;}
.ye1_c00488{bottom:435.691687px;}
.ye0_c00488{bottom:438.391387px;}
.ydf_c00488{bottom:439.039177px;}
.yde_c00488{bottom:440.912265px;}
.ydd_c00488{bottom:442.189552px;}
.ydc_c00488{bottom:444.282795px;}
.ydb_c00488{bottom:445.118400px;}
.yda_c00488{bottom:446.144872px;}
.yd9_c00488{bottom:447.617273px;}
.yd8_c00488{bottom:474.507397px;}
.yd7_c00488{bottom:474.975360px;}
.yd6_c00488{bottom:475.591605px;}
.yd5_c00488{bottom:476.067585px;}
.yd4_c00488{bottom:476.695267px;}
.yd3_c00488{bottom:478.378305px;}
.yd2_c00488{bottom:479.157308px;}
.yd1_c00488{bottom:480.530542px;}
.yd0_c00488{bottom:482.235525px;}
.ycf_c00488{bottom:482.991097px;}
.yce_c00488{bottom:509.890170px;}
.ycd_c00488{bottom:510.995250px;}
.ycc_c00488{bottom:512.226562px;}
.ycb_c00488{bottom:512.761965px;}
.yca_c00488{bottom:513.834247px;}
.yc9_c00488{bottom:514.357432px;}
.yc8_c00488{bottom:514.708837px;}
.yc7_c00488{bottom:516.293737px;}
.yc6_c00488{bottom:517.003050px;}
.yc5_c00488{bottom:518.907307px;}
.yc4_c00488{bottom:519.445972px;}
.yc3_c00488{bottom:546.075517px;}
.yc2_c00488{bottom:546.992205px;}
.yc1_c00488{bottom:547.449480px;}
.yc0_c00488{bottom:548.550480px;}
.ybf_c00488{bottom:548.846415px;}
.ybe_c00488{bottom:549.477022px;}
.ybd_c00488{bottom:550.403452px;}
.ybc_c00488{bottom:550.860682px;}
.ybb_c00488{bottom:552.086040px;}
.yba_c00488{bottom:552.555465px;}
.yb9_c00488{bottom:553.178715px;}
.yb8_c00488{bottom:553.628220px;}
.yb7_c00488{bottom:554.551005px;}
.yb6_c00488{bottom:581.201977px;}
.yb5_c00488{bottom:581.504842px;}
.yb4_c00488{bottom:584.135445px;}
.yb3_c00488{bottom:584.461163px;}
.yb2_c00488{bottom:585.217927px;}
.yb1_c00488{bottom:586.163175px;}
.yb0_c00488{bottom:586.620337px;}
.yaf_c00488{bottom:587.550817px;}
.yae_c00488{bottom:588.163012px;}
.yad_c00488{bottom:589.542802px;}
.yac_c00488{bottom:590.464462px;}
.yab_c00488{bottom:616.886662px;}
.yaa_c00488{bottom:617.804655px;}
.ya9_c00488{bottom:618.574927px;}
.ya8_c00488{bottom:619.063688px;}
.ya7_c00488{bottom:619.684027px;}
.ya6_c00488{bottom:621.059925px;}
.ya5_c00488{bottom:622.624350px;}
.ya4_c00488{bottom:623.539260px;}
.ya3_c00488{bottom:624.620722px;}
.ya2_c00488{bottom:625.224300px;}
.ya1_c00488{bottom:625.837237px;}
.ya0_c00488{bottom:652.586047px;}
.y9f_c00488{bottom:653.050297px;}
.y9e_c00488{bottom:654.277470px;}
.y9d_c00488{bottom:655.026727px;}
.y9c_c00488{bottom:655.623615px;}
.y9b_c00488{bottom:656.488710px;}
.y9a_c00488{bottom:657.567832px;}
.y99_c00488{bottom:658.783260px;}
.y98_c00488{bottom:659.133412px;}
.y97_c00488{bottom:659.863965px;}
.y96_c00488{bottom:688.079160px;}
.y95_c00488{bottom:689.129962px;}
.y94_c00488{bottom:690.732495px;}
.y93_c00488{bottom:691.450042px;}
.y92_c00488{bottom:691.969943px;}
.y91_c00488{bottom:692.690685px;}
.y90_c00488{bottom:694.458900px;}
.y8f_c00488{bottom:695.136480px;}
.y8e_c00488{bottom:696.741150px;}
.y8d_c00488{bottom:698.479793px;}
.y8c_c00488{bottom:723.429975px;}
.y8b_c00488{bottom:724.429132px;}
.y8a_c00488{bottom:724.979445px;}
.y89_c00488{bottom:725.536222px;}
.y88_c00488{bottom:726.300615px;}
.y87_c00488{bottom:726.857280px;}
.y86_c00488{bottom:727.183807px;}
.y85_c00488{bottom:728.069752px;}
.y84_c00488{bottom:728.391000px;}
.y83_c00488{bottom:728.623732px;}
.y82_c00488{bottom:728.939452px;}
.y81_c00488{bottom:729.263745px;}
.y80_c00488{bottom:758.895720px;}
.y7f_c00488{bottom:759.931942px;}
.y7e_c00488{bottom:760.500772px;}
.y7d_c00488{bottom:761.502007px;}
.y7c_c00488{bottom:762.217942px;}
.y7b_c00488{bottom:762.646312px;}
.y7a_c00488{bottom:762.924000px;}
.y79_c00488{bottom:763.805257px;}
.y78_c00488{bottom:764.643555px;}
.y77_c00488{bottom:765.078322px;}
.y76_c00488{bottom:765.513090px;}
.y75_c00488{bottom:765.796875px;}
.y74_c00488{bottom:767.068267px;}
.y73_c00488{bottom:795.135922px;}
.y72_c00488{bottom:796.788435px;}
.y71_c00488{bottom:797.630992px;}
.y70_c00488{bottom:799.287622px;}
.y6f_c00488{bottom:799.781250px;}
.y6e_c00488{bottom:801.268410px;}
.y6d_c00488{bottom:801.774907px;}
.y6c_c00488{bottom:803.253000px;}
.y6b_c00488{bottom:833.372970px;}
.y6a_c00488{bottom:834.001824px;}
.y69_c00488{bottom:834.451086px;}
.y68_c00488{bottom:835.073832px;}
.y67_c00488{bottom:835.500870px;}
.y66_c00488{bottom:835.769166px;}
.y65_c00488{bottom:836.302158px;}
.y64_c00488{bottom:836.477508px;}
.y63_c00488{bottom:836.995788px;}
.y62_c00488{bottom:837.258924px;}
.y61_c00488{bottom:867.808524px;}
.y60_c00488{bottom:868.516686px;}
.y5f_c00488{bottom:869.126886px;}
.y5e_c00488{bottom:869.367312px;}
.y5d_c00488{bottom:869.679696px;}
.y5c_c00488{bottom:870.216180px;}
.y5b_c00488{bottom:870.826146px;}
.y5a_c00488{bottom:871.058148px;}
.y59_c00488{bottom:871.523616px;}
.y58_c00488{bottom:871.820670px;}
.y57_c00488{bottom:903.679536px;}
.y56_c00488{bottom:903.796182px;}
.y55_c00488{bottom:904.292460px;}
.y54_c00488{bottom:904.454832px;}
.y53_c00488{bottom:905.009472px;}
.y52_c00488{bottom:905.230440px;}
.y51_c00488{bottom:905.611602px;}
.y50_c00488{bottom:905.835978px;}
.y4f_c00488{bottom:905.999982px;}
.y4e_c00488{bottom:906.439464px;}
.y4d_c00488{bottom:906.651054px;}
.y4c_c00488{bottom:906.924372px;}
.y4b_c00488{bottom:938.784018px;}
.y4a_c00488{bottom:939.263202px;}
.y49_c00488{bottom:939.627804px;}
.y48_c00488{bottom:940.494438px;}
.y47_c00488{bottom:941.950218px;}
.y46_c00488{bottom:942.674940px;}
.y45_c00488{bottom:943.033998px;}
.y44_c00488{bottom:943.389780px;}
.y43_c00488{bottom:944.241678px;}
.y42_c00488{bottom:944.843790px;}
.y41_c00488{bottom:945.078156px;}
.y40_c00488{bottom:945.805902px;}
.y3f_c00488{bottom:973.375728px;}
.y3e_c00488{bottom:973.913718px;}
.y3d_c00488{bottom:974.440278px;}
.y3c_c00488{bottom:975.056304px;}
.y3b_c00488{bottom:975.321108px;}
.y3a_c00488{bottom:975.937314px;}
.y39_c00488{bottom:976.482114px;}
.y38_c00488{bottom:977.081400px;}
.y37_c00488{bottom:977.968986px;}
.y36_c00488{bottom:978.493572px;}
.y35_c00488{bottom:978.748320px;}
.y34_c00488{bottom:1009.533210px;}
.y33_c00488{bottom:1010.848902px;}
.y32_c00488{bottom:1011.258510px;}
.y31_c00488{bottom:1011.509898px;}
.y30_c00488{bottom:1011.921000px;}
.y2f_c00488{bottom:1012.718760px;}
.y2e_c00488{bottom:1013.110620px;}
.y2d_c00488{bottom:1013.645220px;}
.y2c_c00488{bottom:1014.299772px;}
.y2b_c00488{bottom:1014.701154px;}
.y2a_c00488{bottom:1015.741500px;}
.y27_c00488{bottom:1049.956138px;}
.y28_c00488{bottom:1049.956689px;}
.y26_c00488{bottom:1049.956818px;}
.y25_c00488{bottom:1049.956957px;}
.y29_c00488{bottom:1049.957240px;}
.y24_c00488{bottom:1080.149173px;}
.y23_c00488{bottom:1080.387387px;}
.y22_c00488{bottom:1081.079190px;}
.y21_c00488{bottom:1081.784191px;}
.y20_c00488{bottom:1082.018615px;}
.y1f_c00488{bottom:1082.867256px;}
.y1e_c00488{bottom:1083.326557px;}
.y1d_c00488{bottom:1084.014444px;}
.y1c_c00488{bottom:1084.316529px;}
.y1b_c00488{bottom:1115.285813px;}
.y1a_c00488{bottom:1115.558536px;}
.y19_c00488{bottom:1116.362001px;}
.y18_c00488{bottom:1116.893109px;}
.y17_c00488{bottom:1117.149592px;}
.y16_c00488{bottom:1117.495335px;}
.y15_c00488{bottom:1117.768164px;}
.y14_c00488{bottom:1118.200059px;}
.y13_c00488{bottom:1118.562568px;}
.y12_c00488{bottom:1119.349864px;}
.y11_c00488{bottom:1119.609328px;}
.y10_c00488{bottom:1119.958746px;}
.yf_c00488{bottom:1150.595873px;}
.ye_c00488{bottom:1150.826642px;}
.yd_c00488{bottom:1151.213892px;}
.yc_c00488{bottom:1151.457586px;}
.yb_c00488{bottom:1151.920794px;}
.ya_c00488{bottom:1152.298826px;}
.y9_c00488{bottom:1152.618120px;}
.y8_c00488{bottom:1153.005622px;}
.y7_c00488{bottom:1153.468809px;}
.y6_c00488{bottom:1153.699305px;}
.y5_c00488{bottom:1153.924393px;}
.y4_c00488{bottom:1154.459075px;}
.y3_c00488{bottom:1154.691429px;}
.y2_c00488{bottom:1155.060000px;}
.y1_c00488{bottom:1213.110000px;}
.h2_c00488{height:66.000000px;}
.h8_c00488{height:66.004752px;}
.h5_c00488{height:72.001764px;}
.h7_c00488{height:72.005184px;}
.hd_c00488{height:72.008100px;}
.h6_c00488{height:78.001911px;}
.h9_c00488{height:78.005616px;}
.hb_c00488{height:78.008775px;}
.h10_c00488{height:78.012635px;}
.h3_c00488{height:84.002058px;}
.ha_c00488{height:84.006048px;}
.he_c00488{height:84.009449px;}
.h11_c00488{height:84.013607px;}
.hc_c00488{height:90.010124px;}
.hf_c00488{height:90.014579px;}
.h13_c00488{height:96.015551px;}
.h4_c00488{height:102.002499px;}
.h12_c00488{height:102.016523px;}
.h0_c00488{height:1246.320000px;}
.h1_c00488{height:1246.500000px;}
.w0_c00488{width:896.100000px;}
.w1_c00488{width:896.250000px;}
.x0_c00488{left:0.000000px;}
.x30_c00488{left:155.155464px;}
.x10_c00488{left:156.253684px;}
.x2_c00488{left:158.677500px;}
.x28_c00488{left:188.079900px;}
.x3f_c00488{left:198.335922px;}
.x11_c00488{left:199.955880px;}
.x5f_c00488{left:209.301368px;}
.x3_c00488{left:211.330500px;}
.x4f_c00488{left:219.618180px;}
.x31_c00488{left:221.301756px;}
.x12_c00488{left:232.307649px;}
.x32_c00488{left:242.582508px;}
.x4_c00488{left:244.524000px;}
.x29_c00488{left:253.673550px;}
.x51_c00488{left:264.055545px;}
.x22_c00488{left:265.141526px;}
.x44_c00488{left:275.295906px;}
.x61_c00488{left:285.936975px;}
.x65_c00488{left:296.827140px;}
.x1b_c00488{left:297.959715px;}
.x5b_c00488{left:307.809923px;}
.x23_c00488{left:309.422199px;}
.x57_c00488{left:318.896100px;}
.x5_c00488{left:320.907000px;}
.x13_c00488{left:330.634956px;}
.x68_c00488{left:340.701000px;}
.x39_c00488{left:341.739726px;}
.x6_c00488{left:353.062500px;}
.x59_c00488{left:362.395680px;}
.x1c_c00488{left:363.574215px;}
.x2a_c00488{left:364.644378px;}
.x69_c00488{left:372.903000px;}
.x33_c00488{left:374.876610px;}
.x14_c00488{left:375.993141px;}
.x58_c00488{left:384.291090px;}
.x7_c00488{left:385.990500px;}
.x48_c00488{left:396.969000px;}
.x64_c00488{left:406.132905px;}
.x34_c00488{left:407.275506px;}
.x6a_c00488{left:417.985500px;}
.x3a_c00488{left:419.236224px;}
.x45_c00488{left:428.913786px;}
.x15_c00488{left:429.977763px;}
.x2b_c00488{left:439.463460px;}
.x24_c00488{left:440.484000px;}
.x1_c00488{left:448.200000px;}
.x5c_c00488{left:451.155263px;}
.x8_c00488{left:452.160000px;}
.x40_c00488{left:461.886744px;}
.x16_c00488{left:464.024522px;}
.x5d_c00488{left:473.081925px;}
.x4b_c00488{left:474.405382px;}
.x1d_c00488{left:484.808715px;}
.x3b_c00488{left:495.381114px;}
.x6c_c00488{left:496.398561px;}
.x35_c00488{left:505.841694px;}
.x9_c00488{left:507.517500px;}
.x52_c00488{left:517.182743px;}
.x1e_c00488{left:518.297715px;}
.x49_c00488{left:529.021500px;}
.x17_c00488{left:539.341997px;}
.x41_c00488{left:540.708960px;}
.x6e_c00488{left:551.165607px;}
.xa_c00488{left:553.131000px;}
.x66_c00488{left:560.933520px;}
.x46_c00488{left:562.879212px;}
.x6d_c00488{left:563.977500px;}
.x6b_c00488{left:571.674000px;}
.x5e_c00488{left:572.744918px;}
.x5a_c00488{left:583.075988px;}
.x25_c00488{left:584.169000px;}
.x53_c00488{left:594.691073px;}
.x18_c00488{left:605.785535px;}
.xb_c00488{left:607.135500px;}
.x2c_c00488{left:617.664510px;}
.x1f_c00488{left:619.012215px;}
.x42_c00488{left:627.939198px;}
.x36_c00488{left:638.158278px;}
.x26_c00488{left:639.376500px;}
.x47_c00488{left:641.412474px;}
.x3c_c00488{left:650.653164px;}
.x4c_c00488{left:660.859485px;}
.x54_c00488{left:662.220300px;}
.xc_c00488{left:673.308000px;}
.x3d_c00488{left:683.061882px;}
.x2d_c00488{left:694.628700px;}
.x4a_c00488{left:695.634000px;}
.x4d_c00488{left:704.582790px;}
.x19_c00488{left:706.208331px;}
.xd_c00488{left:708.121500px;}
.x20_c00488{left:717.841215px;}
.x60_c00488{left:727.820130px;}
.x43_c00488{left:729.208782px;}
.x50_c00488{left:738.907605px;}
.x1a_c00488{left:740.240089px;}
.x37_c00488{left:750.137628px;}
.x21_c00488{left:751.871715px;}
.x2e_c00488{left:760.511868px;}
.xe_c00488{left:763.443000px;}
.x55_c00488{left:773.738483px;}
.x62_c00488{left:782.054708px;}
.x27_c00488{left:783.151500px;}
.x4e_c00488{left:784.266675px;}
.x38_c00488{left:793.695150px;}
.x67_c00488{left:795.347783px;}
.xf_c00488{left:796.410000px;}
.x3e_c00488{left:805.649178px;}
.x56_c00488{left:815.891003px;}
.x2f_c00488{left:827.722590px;}
.x63_c00488{left:859.202595px;}
@media print{
.v0_c00488{vertical-align:0.000000pt;}
.ls0_c00488{letter-spacing:0.000000pt;}
.ws0_c00488{word-spacing:0.000000pt;}
.fs0_c00488{font-size:58.666667pt;}
.fs6_c00488{font-size:58.670891pt;}
.fs3_c00488{font-size:64.001568pt;}
.fs5_c00488{font-size:64.004608pt;}
.fsb_c00488{font-size:64.007200pt;}
.fs4_c00488{font-size:69.335032pt;}
.fs7_c00488{font-size:69.338325pt;}
.fs9_c00488{font-size:69.341133pt;}
.fse_c00488{font-size:69.344564pt;}
.fs1_c00488{font-size:74.668496pt;}
.fs8_c00488{font-size:74.672042pt;}
.fsc_c00488{font-size:74.675066pt;}
.fsf_c00488{font-size:74.678762pt;}
.fsa_c00488{font-size:80.008999pt;}
.fsd_c00488{font-size:80.012959pt;}
.fs11_c00488{font-size:85.347156pt;}
.fs2_c00488{font-size:90.668888pt;}
.fs10_c00488{font-size:90.681353pt;}
.y0_c00488{bottom:0.000000pt;}
.y151_c00488{bottom:63.893283pt;}
.y150_c00488{bottom:64.991987pt;}
.y14f_c00488{bottom:66.281429pt;}
.y14e_c00488{bottom:66.927483pt;}
.y14d_c00488{bottom:67.368947pt;}
.y14c_c00488{bottom:68.864059pt;}
.y14b_c00488{bottom:70.363203pt;}
.y14a_c00488{bottom:72.717059pt;}
.y149_c00488{bottom:90.251045pt;}
.y148_c00488{bottom:91.299467pt;}
.y147_c00488{bottom:92.530219pt;}
.y146_c00488{bottom:93.139581pt;}
.y145_c00488{bottom:93.558525pt;}
.y144_c00488{bottom:94.370069pt;}
.y143_c00488{bottom:94.989861pt;}
.y142_c00488{bottom:96.430979pt;}
.y141_c00488{bottom:97.035829pt;}
.y140_c00488{bottom:98.068685pt;}
.y13f_c00488{bottom:98.880133pt;}
.y13e_c00488{bottom:115.356149pt;}
.y13d_c00488{bottom:116.188264pt;}
.y13c_c00488{bottom:117.197285pt;}
.y13b_c00488{bottom:117.686352pt;}
.y13a_c00488{bottom:118.179955pt;}
.y139_c00488{bottom:118.848699pt;}
.y138_c00488{bottom:119.346549pt;}
.y137_c00488{bottom:120.496909pt;}
.y136_c00488{bottom:121.668256pt;}
.y135_c00488{bottom:122.159867pt;}
.y134_c00488{bottom:131.445184pt;}
.y133_c00488{bottom:132.854128pt;}
.y132_c00488{bottom:133.402984pt;}
.y131_c00488{bottom:134.601304pt;}
.y130_c00488{bottom:135.702496pt;}
.y12f_c00488{bottom:136.225528pt;}
.y12e_c00488{bottom:137.116792pt;}
.y12d_c00488{bottom:138.338920pt;}
.y12c_c00488{bottom:139.558120pt;}
.y12b_c00488{bottom:141.124000pt;}
.y12a_c00488{bottom:169.668744pt;}
.y129_c00488{bottom:169.876736pt;}
.y128_c00488{bottom:170.221027pt;}
.y127_c00488{bottom:170.913203pt;}
.y126_c00488{bottom:171.188349pt;}
.y125_c00488{bottom:171.599005pt;}
.y124_c00488{bottom:171.800096pt;}
.y123_c00488{bottom:172.216909pt;}
.y122_c00488{bottom:172.418048pt;}
.y121_c00488{bottom:172.622493pt;}
.y120_c00488{bottom:172.827696pt;}
.y11f_c00488{bottom:173.104400pt;}
.y11e_c00488{bottom:173.510837pt;}
.y11d_c00488{bottom:195.682400pt;}
.y11c_c00488{bottom:197.256088pt;}
.y11b_c00488{bottom:198.311504pt;}
.y11a_c00488{bottom:200.732027pt;}
.y119_c00488{bottom:202.560272pt;}
.y118_c00488{bottom:204.172493pt;}
.y117_c00488{bottom:205.236168pt;}
.y116_c00488{bottom:207.077629pt;}
.y115_c00488{bottom:208.120861pt;}
.y114_c00488{bottom:210.722536pt;}
.y113_c00488{bottom:231.346349pt;}
.y112_c00488{bottom:232.235573pt;}
.y111_c00488{bottom:233.477165pt;}
.y110_c00488{bottom:234.375893pt;}
.y10f_c00488{bottom:235.067069pt;}
.y10e_c00488{bottom:236.834909pt;}
.y10d_c00488{bottom:237.556229pt;}
.y10c_c00488{bottom:238.071461pt;}
.y10b_c00488{bottom:239.285333pt;}
.y10a_c00488{bottom:266.274227pt;}
.y109_c00488{bottom:266.963687pt;}
.y108_c00488{bottom:267.452573pt;}
.y107_c00488{bottom:268.232527pt;}
.y106_c00488{bottom:268.631460pt;}
.y105_c00488{bottom:269.015000pt;}
.y104_c00488{bottom:269.709433pt;}
.y103_c00488{bottom:293.576553pt;}
.y102_c00488{bottom:294.480693pt;}
.y101_c00488{bottom:295.363073pt;}
.y100_c00488{bottom:295.956733pt;}
.yff_c00488{bottom:297.429993pt;}
.yfe_c00488{bottom:298.308993pt;}
.yfd_c00488{bottom:299.328053pt;}
.yfc_c00488{bottom:299.770973pt;}
.yfb_c00488{bottom:301.520533pt;}
.yfa_c00488{bottom:302.113553pt;}
.yf9_c00488{bottom:326.850400pt;}
.yf8_c00488{bottom:327.326033pt;}
.yf7_c00488{bottom:327.677333pt;}
.yf6_c00488{bottom:328.515900pt;}
.yf5_c00488{bottom:328.859287pt;}
.yf4_c00488{bottom:329.326087pt;}
.yf3_c00488{bottom:330.743480pt;}
.yf2_c00488{bottom:331.333160pt;}
.yf1_c00488{bottom:331.676587pt;}
.yf0_c00488{bottom:332.386133pt;}
.yef_c00488{bottom:332.836400pt;}
.yee_c00488{bottom:356.603340pt;}
.yed_c00488{bottom:357.134200pt;}
.yec_c00488{bottom:358.200973pt;}
.yeb_c00488{bottom:360.339713pt;}
.yea_c00488{bottom:360.845173pt;}
.ye9_c00488{bottom:361.928293pt;}
.ye8_c00488{bottom:362.619260pt;}
.ye7_c00488{bottom:363.332207pt;}
.ye6_c00488{bottom:364.892247pt;}
.ye5_c00488{bottom:365.413993pt;}
.ye4_c00488{bottom:365.958000pt;}
.ye3_c00488{bottom:385.979467pt;}
.ye2_c00488{bottom:386.900040pt;}
.ye1_c00488{bottom:387.281500pt;}
.ye0_c00488{bottom:389.681233pt;}
.ydf_c00488{bottom:390.257047pt;}
.yde_c00488{bottom:391.922013pt;}
.ydd_c00488{bottom:393.057380pt;}
.ydc_c00488{bottom:394.918040pt;}
.ydb_c00488{bottom:395.660800pt;}
.yda_c00488{bottom:396.573220pt;}
.yd9_c00488{bottom:397.882020pt;}
.yd8_c00488{bottom:421.784353pt;}
.yd7_c00488{bottom:422.200320pt;}
.yd6_c00488{bottom:422.748093pt;}
.yd5_c00488{bottom:423.171187pt;}
.yd4_c00488{bottom:423.729127pt;}
.yd3_c00488{bottom:425.225160pt;}
.yd2_c00488{bottom:425.917607pt;}
.yd1_c00488{bottom:427.138260pt;}
.yd0_c00488{bottom:428.653800pt;}
.ycf_c00488{bottom:429.325420pt;}
.yce_c00488{bottom:453.235707pt;}
.ycd_c00488{bottom:454.218000pt;}
.ycc_c00488{bottom:455.312500pt;}
.ycb_c00488{bottom:455.788413pt;}
.yca_c00488{bottom:456.741553pt;}
.yc9_c00488{bottom:457.206607pt;}
.yc8_c00488{bottom:457.518967pt;}
.yc7_c00488{bottom:458.927767pt;}
.yc6_c00488{bottom:459.558267pt;}
.yc5_c00488{bottom:461.250940pt;}
.yc4_c00488{bottom:461.729753pt;}
.yc3_c00488{bottom:485.400460pt;}
.yc2_c00488{bottom:486.215293pt;}
.yc1_c00488{bottom:486.621760pt;}
.yc0_c00488{bottom:487.600427pt;}
.ybf_c00488{bottom:487.863480pt;}
.ybe_c00488{bottom:488.424020pt;}
.ybd_c00488{bottom:489.247513pt;}
.ybc_c00488{bottom:489.653940pt;}
.ybb_c00488{bottom:490.743147pt;}
.yba_c00488{bottom:491.160413pt;}
.yb9_c00488{bottom:491.714413pt;}
.yb8_c00488{bottom:492.113973pt;}
.yb7_c00488{bottom:492.934227pt;}
.yb6_c00488{bottom:516.623980pt;}
.yb5_c00488{bottom:516.893193pt;}
.yb4_c00488{bottom:519.231507pt;}
.yb3_c00488{bottom:519.521033pt;}
.yb2_c00488{bottom:520.193713pt;}
.yb1_c00488{bottom:521.033933pt;}
.yb0_c00488{bottom:521.440300pt;}
.yaf_c00488{bottom:522.267393pt;}
.yae_c00488{bottom:522.811567pt;}
.yad_c00488{bottom:524.038047pt;}
.yac_c00488{bottom:524.857300pt;}
.yab_c00488{bottom:548.343700pt;}
.yaa_c00488{bottom:549.159693pt;}
.ya9_c00488{bottom:549.844380pt;}
.ya8_c00488{bottom:550.278833pt;}
.ya7_c00488{bottom:550.830247pt;}
.ya6_c00488{bottom:552.053267pt;}
.ya5_c00488{bottom:553.443867pt;}
.ya4_c00488{bottom:554.257120pt;}
.ya3_c00488{bottom:555.218420pt;}
.ya2_c00488{bottom:555.754933pt;}
.ya1_c00488{bottom:556.299767pt;}
.ya0_c00488{bottom:580.076487pt;}
.y9f_c00488{bottom:580.489153pt;}
.y9e_c00488{bottom:581.579973pt;}
.y9d_c00488{bottom:582.245980pt;}
.y9c_c00488{bottom:582.776547pt;}
.y9b_c00488{bottom:583.545520pt;}
.y9a_c00488{bottom:584.504740pt;}
.y99_c00488{bottom:585.585120pt;}
.y98_c00488{bottom:585.896367pt;}
.y97_c00488{bottom:586.545747pt;}
.y96_c00488{bottom:611.625920pt;}
.y95_c00488{bottom:612.559967pt;}
.y94_c00488{bottom:613.984440pt;}
.y93_c00488{bottom:614.622260pt;}
.y92_c00488{bottom:615.084393pt;}
.y91_c00488{bottom:615.725053pt;}
.y90_c00488{bottom:617.296800pt;}
.y8f_c00488{bottom:617.899093pt;}
.y8e_c00488{bottom:619.325467pt;}
.y8d_c00488{bottom:620.870927pt;}
.y8c_c00488{bottom:643.048867pt;}
.y8b_c00488{bottom:643.937007pt;}
.y8a_c00488{bottom:644.426173pt;}
.y89_c00488{bottom:644.921087pt;}
.y88_c00488{bottom:645.600547pt;}
.y87_c00488{bottom:646.095360pt;}
.y86_c00488{bottom:646.385607pt;}
.y85_c00488{bottom:647.173113pt;}
.y84_c00488{bottom:647.458667pt;}
.y83_c00488{bottom:647.665540pt;}
.y82_c00488{bottom:647.946180pt;}
.y81_c00488{bottom:648.234440pt;}
.y80_c00488{bottom:674.573973pt;}
.y7f_c00488{bottom:675.495060pt;}
.y7e_c00488{bottom:676.000687pt;}
.y7d_c00488{bottom:676.890673pt;}
.y7c_c00488{bottom:677.527060pt;}
.y7b_c00488{bottom:677.907833pt;}
.y7a_c00488{bottom:678.154667pt;}
.y79_c00488{bottom:678.938007pt;}
.y78_c00488{bottom:679.683160pt;}
.y77_c00488{bottom:680.069620pt;}
.y76_c00488{bottom:680.456080pt;}
.y75_c00488{bottom:680.708333pt;}
.y74_c00488{bottom:681.838460pt;}
.y73_c00488{bottom:706.787487pt;}
.y72_c00488{bottom:708.256387pt;}
.y71_c00488{bottom:709.005327pt;}
.y70_c00488{bottom:710.477887pt;}
.y6f_c00488{bottom:710.916667pt;}
.y6e_c00488{bottom:712.238587pt;}
.y6d_c00488{bottom:712.688807pt;}
.y6c_c00488{bottom:714.002667pt;}
.y6b_c00488{bottom:740.775973pt;}
.y6a_c00488{bottom:741.334955pt;}
.y69_c00488{bottom:741.734299pt;}
.y68_c00488{bottom:742.287851pt;}
.y67_c00488{bottom:742.667440pt;}
.y66_c00488{bottom:742.905925pt;}
.y65_c00488{bottom:743.379696pt;}
.y64_c00488{bottom:743.535563pt;}
.y63_c00488{bottom:743.996256pt;}
.y62_c00488{bottom:744.230155pt;}
.y61_c00488{bottom:771.385355pt;}
.y60_c00488{bottom:772.014832pt;}
.y5f_c00488{bottom:772.557232pt;}
.y5e_c00488{bottom:772.770944pt;}
.y5d_c00488{bottom:773.048619pt;}
.y5c_c00488{bottom:773.525493pt;}
.y5b_c00488{bottom:774.067685pt;}
.y5a_c00488{bottom:774.273909pt;}
.y59_c00488{bottom:774.687659pt;}
.y58_c00488{bottom:774.951707pt;}
.y57_c00488{bottom:803.270699pt;}
.y56_c00488{bottom:803.374384pt;}
.y55_c00488{bottom:803.815520pt;}
.y54_c00488{bottom:803.959851pt;}
.y53_c00488{bottom:804.452864pt;}
.y52_c00488{bottom:804.649280pt;}
.y51_c00488{bottom:804.988091pt;}
.y50_c00488{bottom:805.187536pt;}
.y4f_c00488{bottom:805.333317pt;}
.y4e_c00488{bottom:805.723968pt;}
.y4d_c00488{bottom:805.912048pt;}
.y4c_c00488{bottom:806.154997pt;}
.y4b_c00488{bottom:834.474683pt;}
.y4a_c00488{bottom:834.900624pt;}
.y49_c00488{bottom:835.224715pt;}
.y48_c00488{bottom:835.995056pt;}
.y47_c00488{bottom:837.289083pt;}
.y46_c00488{bottom:837.933280pt;}
.y45_c00488{bottom:838.252443pt;}
.y44_c00488{bottom:838.568693pt;}
.y43_c00488{bottom:839.325936pt;}
.y42_c00488{bottom:839.861147pt;}
.y41_c00488{bottom:840.069472pt;}
.y40_c00488{bottom:840.716357pt;}
.y3f_c00488{bottom:865.222869pt;}
.y3e_c00488{bottom:865.701083pt;}
.y3d_c00488{bottom:866.169136pt;}
.y3c_c00488{bottom:866.716715pt;}
.y3b_c00488{bottom:866.952096pt;}
.y3a_c00488{bottom:867.499835pt;}
.y39_c00488{bottom:867.984101pt;}
.y38_c00488{bottom:868.516800pt;}
.y37_c00488{bottom:869.305765pt;}
.y36_c00488{bottom:869.772064pt;}
.y35_c00488{bottom:869.998507pt;}
.y34_c00488{bottom:897.362853pt;}
.y33_c00488{bottom:898.532357pt;}
.y32_c00488{bottom:898.896453pt;}
.y31_c00488{bottom:899.119909pt;}
.y30_c00488{bottom:899.485333pt;}
.y2f_c00488{bottom:900.194453pt;}
.y2e_c00488{bottom:900.542773pt;}
.y2d_c00488{bottom:901.017973pt;}
.y2c_c00488{bottom:901.599797pt;}
.y2b_c00488{bottom:901.956581pt;}
.y2a_c00488{bottom:902.881333pt;}
.y27_c00488{bottom:933.294345pt;}
.y28_c00488{bottom:933.294835pt;}
.y26_c00488{bottom:933.294949pt;}
.y25_c00488{bottom:933.295073pt;}
.y29_c00488{bottom:933.295324pt;}
.y24_c00488{bottom:960.132599pt;}
.y23_c00488{bottom:960.344344pt;}
.y22_c00488{bottom:960.959280pt;}
.y21_c00488{bottom:961.585948pt;}
.y20_c00488{bottom:961.794324pt;}
.y1f_c00488{bottom:962.548672pt;}
.y1e_c00488{bottom:962.956940pt;}
.y1d_c00488{bottom:963.568395pt;}
.y1c_c00488{bottom:963.836915pt;}
.y1b_c00488{bottom:991.365167pt;}
.y1a_c00488{bottom:991.607588pt;}
.y19_c00488{bottom:992.321779pt;}
.y18_c00488{bottom:992.793875pt;}
.y17_c00488{bottom:993.021860pt;}
.y16_c00488{bottom:993.329187pt;}
.y15_c00488{bottom:993.571701pt;}
.y14_c00488{bottom:993.955608pt;}
.y13_c00488{bottom:994.277839pt;}
.y12_c00488{bottom:994.977657pt;}
.y11_c00488{bottom:995.208292pt;}
.y10_c00488{bottom:995.518885pt;}
.yf_c00488{bottom:1022.751887pt;}
.ye_c00488{bottom:1022.957015pt;}
.yd_c00488{bottom:1023.301237pt;}
.yc_c00488{bottom:1023.517855pt;}
.yb_c00488{bottom:1023.929595pt;}
.ya_c00488{bottom:1024.265623pt;}
.y9_c00488{bottom:1024.549440pt;}
.y8_c00488{bottom:1024.893887pt;}
.y7_c00488{bottom:1025.305608pt;}
.y6_c00488{bottom:1025.510493pt;}
.y5_c00488{bottom:1025.710572pt;}
.y4_c00488{bottom:1026.185844pt;}
.y3_c00488{bottom:1026.392381pt;}
.y2_c00488{bottom:1026.720000pt;}
.y1_c00488{bottom:1078.320000pt;}
.h2_c00488{height:58.666667pt;}
.h8_c00488{height:58.670891pt;}
.h5_c00488{height:64.001568pt;}
.h7_c00488{height:64.004608pt;}
.hd_c00488{height:64.007200pt;}
.h6_c00488{height:69.335032pt;}
.h9_c00488{height:69.338325pt;}
.hb_c00488{height:69.341133pt;}
.h10_c00488{height:69.344564pt;}
.h3_c00488{height:74.668496pt;}
.ha_c00488{height:74.672042pt;}
.he_c00488{height:74.675066pt;}
.h11_c00488{height:74.678762pt;}
.hc_c00488{height:80.008999pt;}
.hf_c00488{height:80.012959pt;}
.h13_c00488{height:85.347156pt;}
.h4_c00488{height:90.668888pt;}
.h12_c00488{height:90.681353pt;}
.h0_c00488{height:1107.840000pt;}
.h1_c00488{height:1108.000000pt;}
.w0_c00488{width:796.533333pt;}
.w1_c00488{width:796.666667pt;}
.x0_c00488{left:0.000000pt;}
.x30_c00488{left:137.915968pt;}
.x10_c00488{left:138.892164pt;}
.x2_c00488{left:141.046667pt;}
.x28_c00488{left:167.182133pt;}
.x3f_c00488{left:176.298597pt;}
.x11_c00488{left:177.738560pt;}
.x5f_c00488{left:186.045660pt;}
.x3_c00488{left:187.849333pt;}
.x4f_c00488{left:195.216160pt;}
.x31_c00488{left:196.712672pt;}
.x12_c00488{left:206.495688pt;}
.x32_c00488{left:215.628896pt;}
.x4_c00488{left:217.354667pt;}
.x29_c00488{left:225.487600pt;}
.x51_c00488{left:234.716040pt;}
.x22_c00488{left:235.681356pt;}
.x44_c00488{left:244.707472pt;}
.x61_c00488{left:254.166200pt;}
.x65_c00488{left:263.846347pt;}
.x1b_c00488{left:264.853080pt;}
.x5b_c00488{left:273.608820pt;}
.x23_c00488{left:275.041955pt;}
.x57_c00488{left:283.463200pt;}
.x5_c00488{left:285.250667pt;}
.x13_c00488{left:293.897739pt;}
.x68_c00488{left:302.845333pt;}
.x39_c00488{left:303.768645pt;}
.x6_c00488{left:313.833333pt;}
.x59_c00488{left:322.129493pt;}
.x1c_c00488{left:323.177080pt;}
.x2a_c00488{left:324.128336pt;}
.x69_c00488{left:331.469333pt;}
.x33_c00488{left:333.223653pt;}
.x14_c00488{left:334.216125pt;}
.x58_c00488{left:341.592080pt;}
.x7_c00488{left:343.102667pt;}
.x48_c00488{left:352.861333pt;}
.x64_c00488{left:361.007027pt;}
.x34_c00488{left:362.022672pt;}
.x6a_c00488{left:371.542667pt;}
.x3a_c00488{left:372.654421pt;}
.x45_c00488{left:381.256699pt;}
.x15_c00488{left:382.202456pt;}
.x2b_c00488{left:390.634187pt;}
.x24_c00488{left:391.541333pt;}
.x1_c00488{left:398.400000pt;}
.x5c_c00488{left:401.026900pt;}
.x8_c00488{left:401.920000pt;}
.x40_c00488{left:410.565995pt;}
.x16_c00488{left:412.466241pt;}
.x5d_c00488{left:420.517267pt;}
.x4b_c00488{left:421.693673pt;}
.x1d_c00488{left:430.941080pt;}
.x3b_c00488{left:440.338768pt;}
.x6c_c00488{left:441.243165pt;}
.x35_c00488{left:449.637061pt;}
.x9_c00488{left:451.126667pt;}
.x52_c00488{left:459.717993pt;}
.x1e_c00488{left:460.709080pt;}
.x49_c00488{left:470.241333pt;}
.x17_c00488{left:479.415108pt;}
.x41_c00488{left:480.630187pt;}
.x6e_c00488{left:489.924984pt;}
.xa_c00488{left:491.672000pt;}
.x66_c00488{left:498.607573pt;}
.x46_c00488{left:500.337077pt;}
.x6d_c00488{left:501.313333pt;}
.x6b_c00488{left:508.154667pt;}
.x5e_c00488{left:509.106593pt;}
.x5a_c00488{left:518.289767pt;}
.x25_c00488{left:519.261333pt;}
.x53_c00488{left:528.614287pt;}
.x18_c00488{left:538.476031pt;}
.xb_c00488{left:539.676000pt;}
.x2c_c00488{left:549.035120pt;}
.x1f_c00488{left:550.233080pt;}
.x42_c00488{left:558.168176pt;}
.x36_c00488{left:567.251803pt;}
.x26_c00488{left:568.334667pt;}
.x47_c00488{left:570.144421pt;}
.x3c_c00488{left:578.358368pt;}
.x4c_c00488{left:587.430653pt;}
.x54_c00488{left:588.640267pt;}
.xc_c00488{left:598.496000pt;}
.x3d_c00488{left:607.166117pt;}
.x2d_c00488{left:617.447733pt;}
.x4a_c00488{left:618.341333pt;}
.x4d_c00488{left:626.295813pt;}
.x19_c00488{left:627.740739pt;}
.xd_c00488{left:629.441333pt;}
.x20_c00488{left:638.081080pt;}
.x60_c00488{left:646.951227pt;}
.x43_c00488{left:648.185584pt;}
.x50_c00488{left:656.806760pt;}
.x1a_c00488{left:657.991191pt;}
.x37_c00488{left:666.789003pt;}
.x21_c00488{left:668.330413pt;}
.x2e_c00488{left:676.010549pt;}
.xe_c00488{left:678.616000pt;}
.x55_c00488{left:687.767540pt;}
.x62_c00488{left:695.159740pt;}
.x27_c00488{left:696.134667pt;}
.x4e_c00488{left:697.125933pt;}
.x38_c00488{left:705.506800pt;}
.x67_c00488{left:706.975807pt;}
.xf_c00488{left:707.920000pt;}
.x3e_c00488{left:716.132603pt;}
.x56_c00488{left:725.236447pt;}
.x2f_c00488{left:735.753413pt;}
.x63_c00488{left:763.735640pt;}
}





/* 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_c00489 {
    display:none;
  }
  .loading-indicator_c00489.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00489 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_c00489 { 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_c00489" -> "#page-container .classname_c00489")
 */
.pf_c00489 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00489 { /* 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_c00489.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00489 { /* 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_c00489 { /* 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_c00489 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00489 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00489 {overflow:visible;}
  }
}
.c_c00489 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00489 { /* 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_c00489:after { /* webkit #35443 */
  content: '';
}
.t_c00489:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00489 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 */
}
.__c00489 { /* 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_c00489 { /* info for Javascript */
  display:none;
}
.l_c00489 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00489 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00489 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00489: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_c00489 {
    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_c00489.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00489.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_c00489 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00489{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00489;src:url('chunks/assets/font_bfc335e41cabd1bcac555906.woff2')format("woff");}.ff1_c00489{font-family:ff1_c00489;line-height:1.000000;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;}
.m4_c00489{transform:matrix(0.209570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209570,0.000000,0.000000,0.250000,0,0);}
.m0_c00489{transform:matrix(0.258390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258390,0.000000,0.000000,0.250000,0,0);}
.m2_c00489{transform:matrix(0.259860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259860,0.000000,0.000000,0.250000,0,0);}
.m1_c00489{transform:matrix(0.318175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318175,0.000000,0.000000,0.250000,0,0);}
.m3_c00489{transform:matrix(0.365360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365360,0.000000,0.000000,0.250000,0,0);}
.m5_c00489{transform:matrix(1.248880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.248880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.248880,0.000000,0.000000,0.250000,0,0);}
.v0_c00489{vertical-align:0.000000px;}
.ls0_c00489{letter-spacing:0.000000px;}
.sc__c00489{text-shadow:none;}
.sc0_c00489{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__c00489{-webkit-text-stroke:0px transparent;}
.sc0_c00489{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00489{word-spacing:0.000000px;}
.fc0_c00489{color:transparent;}
.fs0_c00489{font-size:108.000000px;}
.y0_c00489{bottom:0.000000px;}
.y1_c00489{bottom:684.502500px;}
.h2_c00489{height:108.000000px;}
.h0_c00489{height:1246.320000px;}
.h1_c00489{height:1246.500000px;}
.w0_c00489{width:896.100000px;}
.w1_c00489{width:896.250000px;}
.x0_c00489{left:0.000000px;}
.x1_c00489{left:245.700000px;}
.x2_c00489{left:293.220000px;}
.x3_c00489{left:329.130000px;}
.x4_c00489{left:353.700000px;}
.x5_c00489{left:484.110000px;}
.x6_c00489{left:520.290000px;}
@media print{
.v0_c00489{vertical-align:0.000000pt;}
.ls0_c00489{letter-spacing:0.000000pt;}
.ws0_c00489{word-spacing:0.000000pt;}
.fs0_c00489{font-size:96.000000pt;}
.y0_c00489{bottom:0.000000pt;}
.y1_c00489{bottom:608.446667pt;}
.h2_c00489{height:96.000000pt;}
.h0_c00489{height:1107.840000pt;}
.h1_c00489{height:1108.000000pt;}
.w0_c00489{width:796.533333pt;}
.w1_c00489{width:796.666667pt;}
.x0_c00489{left:0.000000pt;}
.x1_c00489{left:218.400000pt;}
.x2_c00489{left:260.640000pt;}
.x3_c00489{left:292.560000pt;}
.x4_c00489{left:314.400000pt;}
.x5_c00489{left:430.320000pt;}
.x6_c00489{left:462.480000pt;}
}





/* 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_c00490 {
    display:none;
  }
  .loading-indicator_c00490.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00490 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_c00490 { 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_c00490" -> "#page-container .classname_c00490")
 */
.pf_c00490 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00490 { /* 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_c00490.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00490 { /* 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_c00490 { /* 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_c00490 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00490 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00490 {overflow:visible;}
  }
}
.c_c00490 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00490 { /* 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_c00490:after { /* webkit #35443 */
  content: '';
}
.t_c00490:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00490 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 */
}
.__c00490 { /* 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_c00490 { /* info for Javascript */
  display:none;
}
.l_c00490 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00490 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00490 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00490: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_c00490 {
    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_c00490.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00490.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_c00490 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00490{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00490;src:url('chunks/assets/font_cfe63ee56e9e10a97d33a3db.woff2')format("woff");}.ff1_c00490{font-family:ff1_c00490;line-height:1.000000;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;}
.m3f_c00490{transform:matrix(0.015898,0.000621,-0.009752,0.249810,0,0);-ms-transform:matrix(0.015898,0.000621,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.015898,0.000621,-0.009752,0.249810,0,0);}
.m0_c00490{transform:matrix(0.134835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134835,0.000000,0.000000,0.250000,0,0);}
.mf_c00490{transform:matrix(0.165515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165515,0.000000,0.000000,0.250000,0,0);}
.m13_c00490{transform:matrix(0.169200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169200,0.000000,0.000000,0.250000,0,0);}
.m10e_c00490{transform:matrix(0.169454,0.010188,-0.015003,0.249549,0,0);-ms-transform:matrix(0.169454,0.010188,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.169454,0.010188,-0.015003,0.249549,0,0);}
.m82_c00490{transform:matrix(0.175167,0.006838,-0.009752,0.249810,0,0);-ms-transform:matrix(0.175167,0.006838,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.175167,0.006838,-0.009752,0.249810,0,0);}
.mc9_c00490{transform:matrix(0.179046,0.006811,-0.009503,0.249819,0,0);-ms-transform:matrix(0.179046,0.006811,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.179046,0.006811,-0.009503,0.249819,0,0);}
.m10b_c00490{transform:matrix(0.179566,0.010796,-0.015003,0.249549,0,0);-ms-transform:matrix(0.179566,0.010796,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.179566,0.010796,-0.015003,0.249549,0,0);}
.m84_c00490{transform:matrix(0.181532,0.007087,-0.009752,0.249810,0,0);-ms-transform:matrix(0.181532,0.007087,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.181532,0.007087,-0.009752,0.249810,0,0);}
.m5c_c00490{transform:matrix(0.181747,0.007095,-0.009752,0.249810,0,0);-ms-transform:matrix(0.181747,0.007095,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.181747,0.007095,-0.009752,0.249810,0,0);}
.m113_c00490{transform:matrix(0.183296,0.006605,-0.009003,0.249838,0,0);-ms-transform:matrix(0.183296,0.006605,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.183296,0.006605,-0.009003,0.249838,0,0);}
.mcc_c00490{transform:matrix(0.184582,0.007021,-0.009503,0.249819,0,0);-ms-transform:matrix(0.184582,0.007021,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.184582,0.007021,-0.009503,0.249819,0,0);}
.m7_c00490{transform:matrix(0.184715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184715,0.000000,0.000000,0.250000,0,0);}
.m13a_c00490{transform:matrix(0.187607,0.002626,-0.003500,0.249976,0,0);-ms-transform:matrix(0.187607,0.002626,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.187607,0.002626,-0.003500,0.249976,0,0);}
.m56_c00490{transform:matrix(0.187697,0.007328,-0.009752,0.249810,0,0);-ms-transform:matrix(0.187697,0.007328,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.187697,0.007328,-0.009752,0.249810,0,0);}
.mc_c00490{transform:matrix(0.188605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188605,0.000000,0.000000,0.250000,0,0);}
.m139_c00490{transform:matrix(0.189716,0.002656,-0.003500,0.249976,0,0);-ms-transform:matrix(0.189716,0.002656,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.189716,0.002656,-0.003500,0.249976,0,0);}
.mf2_c00490{transform:matrix(0.191754,0.009213,-0.011998,0.249712,0,0);-ms-transform:matrix(0.191754,0.009213,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.191754,0.009213,-0.011998,0.249712,0,0);}
.m105_c00490{transform:matrix(0.191789,0.006527,-0.008504,0.249855,0,0);-ms-transform:matrix(0.191789,0.006527,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.191789,0.006527,-0.008504,0.249855,0,0);}
.ma_c00490{transform:matrix(0.191925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191925,0.000000,0.000000,0.250000,0,0);}
.me1_c00490{transform:matrix(0.191961,0.012310,-0.015999,0.249488,0,0);-ms-transform:matrix(0.191961,0.012310,-0.015999,0.249488,0,0);-webkit-transform:matrix(0.191961,0.012310,-0.015999,0.249488,0,0);}
.m16_c00490{transform:matrix(0.192510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192510,0.000000,0.000000,0.250000,0,0);}
.m138_c00490{transform:matrix(0.192601,0.002696,-0.003500,0.249976,0,0);-ms-transform:matrix(0.192601,0.002696,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.192601,0.002696,-0.003500,0.249976,0,0);}
.m114_c00490{transform:matrix(0.192925,0.006952,-0.009003,0.249838,0,0);-ms-transform:matrix(0.192925,0.006952,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.192925,0.006952,-0.009003,0.249838,0,0);}
.m107_c00490{transform:matrix(0.193850,0.011654,-0.015003,0.249549,0,0);-ms-transform:matrix(0.193850,0.011654,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.193850,0.011654,-0.015003,0.249549,0,0);}
.m112_c00490{transform:matrix(0.194039,0.006992,-0.009003,0.249838,0,0);-ms-transform:matrix(0.194039,0.006992,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.194039,0.006992,-0.009003,0.249838,0,0);}
.m9_c00490{transform:matrix(0.194090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194090,0.000000,0.000000,0.250000,0,0);}
.m59_c00490{transform:matrix(0.194792,0.007604,-0.009752,0.249810,0,0);-ms-transform:matrix(0.194792,0.007604,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.194792,0.007604,-0.009752,0.249810,0,0);}
.m102_c00490{transform:matrix(0.194827,0.006631,-0.008504,0.249855,0,0);-ms-transform:matrix(0.194827,0.006631,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.194827,0.006631,-0.008504,0.249855,0,0);}
.m14_c00490{transform:matrix(0.194835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194835,0.000000,0.000000,0.250000,0,0);}
.m83_c00490{transform:matrix(0.194927,0.007610,-0.009752,0.249810,0,0);-ms-transform:matrix(0.194927,0.007610,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.194927,0.007610,-0.009752,0.249810,0,0);}
.m137_c00490{transform:matrix(0.195216,0.002733,-0.003500,0.249976,0,0);-ms-transform:matrix(0.195216,0.002733,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.195216,0.002733,-0.003500,0.249976,0,0);}
.m108_c00490{transform:matrix(0.195667,0.011764,-0.015003,0.249549,0,0);-ms-transform:matrix(0.195667,0.011764,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.195667,0.011764,-0.015003,0.249549,0,0);}
.m118_c00490{transform:matrix(0.196338,0.007075,-0.009003,0.249838,0,0);-ms-transform:matrix(0.196338,0.007075,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.196338,0.007075,-0.009003,0.249838,0,0);}
.m13c_c00490{transform:matrix(0.197426,0.002764,-0.003500,0.249976,0,0);-ms-transform:matrix(0.197426,0.002764,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.197426,0.002764,-0.003500,0.249976,0,0);}
.mbc_c00490{transform:matrix(0.197866,0.010695,-0.013494,0.249636,0,0);-ms-transform:matrix(0.197866,0.010695,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.197866,0.010695,-0.013494,0.249636,0,0);}
.me5_c00490{transform:matrix(0.198233,0.012712,-0.015999,0.249488,0,0);-ms-transform:matrix(0.198233,0.012712,-0.015999,0.249488,0,0);-webkit-transform:matrix(0.198233,0.012712,-0.015999,0.249488,0,0);}
.mf6_c00490{transform:matrix(0.198316,0.009529,-0.011998,0.249712,0,0);-ms-transform:matrix(0.198316,0.009529,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.198316,0.009529,-0.011998,0.249712,0,0);}
.m117_c00490{transform:matrix(0.198426,0.007150,-0.009003,0.249838,0,0);-ms-transform:matrix(0.198426,0.007150,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.198426,0.007150,-0.009003,0.249838,0,0);}
.m13d_c00490{transform:matrix(0.200410,0.002806,-0.003500,0.249976,0,0);-ms-transform:matrix(0.200410,0.002806,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.200410,0.002806,-0.003500,0.249976,0,0);}
.mc7_c00490{transform:matrix(0.201309,0.007657,-0.009503,0.249819,0,0);-ms-transform:matrix(0.201309,0.007657,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.201309,0.007657,-0.009503,0.249819,0,0);}
.m115_c00490{transform:matrix(0.201564,0.007264,-0.009003,0.249838,0,0);-ms-transform:matrix(0.201564,0.007264,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.201564,0.007264,-0.009003,0.249838,0,0);}
.mf5_c00490{transform:matrix(0.201812,0.009697,-0.011998,0.249712,0,0);-ms-transform:matrix(0.201812,0.009697,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.201812,0.009697,-0.011998,0.249712,0,0);}
.m134_c00490{transform:matrix(0.202335,0.002833,-0.003500,0.249976,0,0);-ms-transform:matrix(0.202335,0.002833,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.202335,0.002833,-0.003500,0.249976,0,0);}
.me3_c00490{transform:matrix(0.202754,0.013002,-0.015999,0.249488,0,0);-ms-transform:matrix(0.202754,0.013002,-0.015999,0.249488,0,0);-webkit-transform:matrix(0.202754,0.013002,-0.015999,0.249488,0,0);}
.m135_c00490{transform:matrix(0.204150,0.002858,-0.003500,0.249976,0,0);-ms-transform:matrix(0.204150,0.002858,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.204150,0.002858,-0.003500,0.249976,0,0);}
.m116_c00490{transform:matrix(0.205801,0.007416,-0.009003,0.249838,0,0);-ms-transform:matrix(0.205801,0.007416,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.205801,0.007416,-0.009003,0.249838,0,0);}
.mce_c00490{transform:matrix(0.205861,0.007831,-0.009503,0.249819,0,0);-ms-transform:matrix(0.205861,0.007831,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.205861,0.007831,-0.009503,0.249819,0,0);}
.m104_c00490{transform:matrix(0.206161,0.007016,-0.008504,0.249855,0,0);-ms-transform:matrix(0.206161,0.007016,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.206161,0.007016,-0.008504,0.249855,0,0);}
.m110_c00490{transform:matrix(0.206311,0.007435,-0.009003,0.249838,0,0);-ms-transform:matrix(0.206311,0.007435,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.206311,0.007435,-0.009003,0.249838,0,0);}
.m10f_c00490{transform:matrix(0.206421,0.007439,-0.009003,0.249838,0,0);-ms-transform:matrix(0.206421,0.007439,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.206421,0.007439,-0.009003,0.249838,0,0);}
.m136_c00490{transform:matrix(0.206935,0.002897,-0.003500,0.249976,0,0);-ms-transform:matrix(0.206935,0.002897,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.206935,0.002897,-0.003500,0.249976,0,0);}
.m2_c00490{transform:matrix(0.207085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207085,0.000000,0.000000,0.250000,0,0);}
.mbb_c00490{transform:matrix(0.207093,0.011194,-0.013494,0.249636,0,0);-ms-transform:matrix(0.207093,0.011194,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.207093,0.011194,-0.013494,0.249636,0,0);}
.m96_c00490{transform:matrix(0.207221,0.008505,-0.010252,0.249790,0,0);-ms-transform:matrix(0.207221,0.008505,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.207221,0.008505,-0.010252,0.249790,0,0);}
.m3a_c00490{transform:matrix(0.208345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208345,0.000000,0.000000,0.250000,0,0);}
.mcd_c00490{transform:matrix(0.208434,0.007928,-0.009503,0.249819,0,0);-ms-transform:matrix(0.208434,0.007928,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.208434,0.007928,-0.009503,0.249819,0,0);}
.m6_c00490{transform:matrix(0.208805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208805,0.000000,0.000000,0.250000,0,0);}
.m8d_c00490{transform:matrix(0.209124,0.008583,-0.010252,0.249790,0,0);-ms-transform:matrix(0.209124,0.008583,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.209124,0.008583,-0.010252,0.249790,0,0);}
.m74_c00490{transform:matrix(0.209141,0.008165,-0.009752,0.249810,0,0);-ms-transform:matrix(0.209141,0.008165,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.209141,0.008165,-0.009752,0.249810,0,0);}
.mc2_c00490{transform:matrix(0.209200,0.011308,-0.013494,0.249636,0,0);-ms-transform:matrix(0.209200,0.011308,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.209200,0.011308,-0.013494,0.249636,0,0);}
.m15_c00490{transform:matrix(0.209200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209200,0.000000,0.000000,0.250000,0,0);}
.m13b_c00490{transform:matrix(0.209289,0.002930,-0.003500,0.249976,0,0);-ms-transform:matrix(0.209289,0.002930,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.209289,0.002930,-0.003500,0.249976,0,0);}
.m33_c00490{transform:matrix(0.209545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209545,0.000000,0.000000,0.250000,0,0);}
.m111_c00490{transform:matrix(0.210269,0.007577,-0.009003,0.249838,0,0);-ms-transform:matrix(0.210269,0.007577,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.210269,0.007577,-0.009003,0.249838,0,0);}
.m93_c00490{transform:matrix(0.211037,0.008661,-0.010252,0.249790,0,0);-ms-transform:matrix(0.211037,0.008661,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.211037,0.008661,-0.010252,0.249790,0,0);}
.m1_c00490{transform:matrix(0.211290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211290,0.000000,0.000000,0.250000,0,0);}
.m6f_c00490{transform:matrix(0.211709,0.008265,-0.009752,0.249810,0,0);-ms-transform:matrix(0.211709,0.008265,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.211709,0.008265,-0.009752,0.249810,0,0);}
.mf9_c00490{transform:matrix(0.211881,0.010180,-0.011998,0.249712,0,0);-ms-transform:matrix(0.211881,0.010180,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.211881,0.010180,-0.011998,0.249712,0,0);}
.m130_c00490{transform:matrix(0.211909,0.002967,-0.003500,0.249976,0,0);-ms-transform:matrix(0.211909,0.002967,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.211909,0.002967,-0.003500,0.249976,0,0);}
.m3d_c00490{transform:matrix(0.212130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212130,0.000000,0.000000,0.250000,0,0);}
.m3_c00490{transform:matrix(0.212255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212255,0.000000,0.000000,0.250000,0,0);}
.mcb_c00490{transform:matrix(0.212496,0.008083,-0.009503,0.249819,0,0);-ms-transform:matrix(0.212496,0.008083,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.212496,0.008083,-0.009503,0.249819,0,0);}
.md7_c00490{transform:matrix(0.212888,0.009163,-0.010751,0.249769,0,0);-ms-transform:matrix(0.212888,0.009163,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.212888,0.009163,-0.010751,0.249769,0,0);}
.m11_c00490{transform:matrix(0.212945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212945,0.000000,0.000000,0.250000,0,0);}
.m12f_c00490{transform:matrix(0.213014,0.002982,-0.003500,0.249976,0,0);-ms-transform:matrix(0.213014,0.002982,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.213014,0.002982,-0.003500,0.249976,0,0);}
.m8_c00490{transform:matrix(0.213740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213740,0.000000,0.000000,0.250000,0,0);}
.m109_c00490{transform:matrix(0.213944,0.012862,-0.015003,0.249549,0,0);-ms-transform:matrix(0.213944,0.012862,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.213944,0.012862,-0.015003,0.249549,0,0);}
.m10_c00490{transform:matrix(0.214205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214205,0.000000,0.000000,0.250000,0,0);}
.m2a_c00490{transform:matrix(0.214930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214930,0.000000,0.000000,0.250000,0,0);}
.me_c00490{transform:matrix(0.215170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215170,0.000000,0.000000,0.250000,0,0);}
.m12_c00490{transform:matrix(0.215390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215390,0.000000,0.000000,0.250000,0,0);}
.m30_c00490{transform:matrix(0.215555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215555,0.000000,0.000000,0.250000,0,0);}
.mca_c00490{transform:matrix(0.216299,0.008228,-0.009503,0.249819,0,0);-ms-transform:matrix(0.216299,0.008228,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.216299,0.008228,-0.009503,0.249819,0,0);}
.mc8_c00490{transform:matrix(0.216528,0.008236,-0.009503,0.249819,0,0);-ms-transform:matrix(0.216528,0.008236,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.216528,0.008236,-0.009503,0.249819,0,0);}
.mf3_c00490{transform:matrix(0.216745,0.010414,-0.011998,0.249712,0,0);-ms-transform:matrix(0.216745,0.010414,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.216745,0.010414,-0.011998,0.249712,0,0);}
.m87_c00490{transform:matrix(0.216812,0.008898,-0.010252,0.249790,0,0);-ms-transform:matrix(0.216812,0.008898,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.216812,0.008898,-0.010252,0.249790,0,0);}
.mc0_c00490{transform:matrix(0.217303,0.011746,-0.013494,0.249636,0,0);-ms-transform:matrix(0.217303,0.011746,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.217303,0.011746,-0.013494,0.249636,0,0);}
.mb4_c00490{transform:matrix(0.217317,0.008919,-0.010252,0.249790,0,0);-ms-transform:matrix(0.217317,0.008919,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.217317,0.008919,-0.010252,0.249790,0,0);}
.m4f_c00490{transform:matrix(0.218379,0.008525,-0.009752,0.249810,0,0);-ms-transform:matrix(0.218379,0.008525,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.218379,0.008525,-0.009752,0.249810,0,0);}
.mb_c00490{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m5_c00490{transform:matrix(0.219590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219590,0.000000,0.000000,0.250000,0,0);}
.md_c00490{transform:matrix(0.220185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220185,0.000000,0.000000,0.250000,0,0);}
.m4_c00490{transform:matrix(0.220570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220570,0.000000,0.000000,0.250000,0,0);}
.m85_c00490{transform:matrix(0.220594,0.009053,-0.010252,0.249790,0,0);-ms-transform:matrix(0.220594,0.009053,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.220594,0.009053,-0.010252,0.249790,0,0);}
.m51_c00490{transform:matrix(0.221037,0.008629,-0.009752,0.249810,0,0);-ms-transform:matrix(0.221037,0.008629,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.221037,0.008629,-0.009752,0.249810,0,0);}
.m2f_c00490{transform:matrix(0.221140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221140,0.000000,0.000000,0.250000,0,0);}
.mde_c00490{transform:matrix(0.221170,0.009520,-0.010751,0.249769,0,0);-ms-transform:matrix(0.221170,0.009520,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.221170,0.009520,-0.010751,0.249769,0,0);}
.m10c_c00490{transform:matrix(0.221191,0.013298,-0.015003,0.249549,0,0);-ms-transform:matrix(0.221191,0.013298,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.221191,0.013298,-0.015003,0.249549,0,0);}
.m10a_c00490{transform:matrix(0.221270,0.013303,-0.015003,0.249549,0,0);-ms-transform:matrix(0.221270,0.013303,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.221270,0.013303,-0.015003,0.249549,0,0);}
.mb2_c00490{transform:matrix(0.221693,0.009099,-0.010252,0.249790,0,0);-ms-transform:matrix(0.221693,0.009099,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.221693,0.009099,-0.010252,0.249790,0,0);}
.m17_c00490{transform:matrix(0.221840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221840,0.000000,0.000000,0.250000,0,0);}
.m38_c00490{transform:matrix(0.221880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221880,0.000000,0.000000,0.250000,0,0);}
.m121_c00490{transform:matrix(0.222421,0.008015,-0.009003,0.249838,0,0);-ms-transform:matrix(0.222421,0.008015,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.222421,0.008015,-0.009003,0.249838,0,0);}
.m42_c00490{transform:matrix(0.222456,0.008684,-0.009752,0.249810,0,0);-ms-transform:matrix(0.222456,0.008684,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.222456,0.008684,-0.009752,0.249810,0,0);}
.m10d_c00490{transform:matrix(0.222868,0.013399,-0.015003,0.249549,0,0);-ms-transform:matrix(0.222868,0.013399,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.222868,0.013399,-0.015003,0.249549,0,0);}
.mbf_c00490{transform:matrix(0.223079,0.012058,-0.013494,0.249636,0,0);-ms-transform:matrix(0.223079,0.012058,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.223079,0.012058,-0.013494,0.249636,0,0);}
.m18_c00490{transform:matrix(0.223270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223270,0.000000,0.000000,0.250000,0,0);}
.m100_c00490{transform:matrix(0.223351,0.007602,-0.008504,0.249855,0,0);-ms-transform:matrix(0.223351,0.007602,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.223351,0.007602,-0.008504,0.249855,0,0);}
.m5f_c00490{transform:matrix(0.223465,0.008724,-0.009752,0.249810,0,0);-ms-transform:matrix(0.223465,0.008724,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.223465,0.008724,-0.009752,0.249810,0,0);}
.mf1_c00490{transform:matrix(0.223472,0.010737,-0.011998,0.249712,0,0);-ms-transform:matrix(0.223472,0.010737,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.223472,0.010737,-0.011998,0.249712,0,0);}
.me7_c00490{transform:matrix(0.224219,0.014379,-0.015999,0.249488,0,0);-ms-transform:matrix(0.224219,0.014379,-0.015999,0.249488,0,0);-webkit-transform:matrix(0.224219,0.014379,-0.015999,0.249488,0,0);}
.md6_c00490{transform:matrix(0.224472,0.009662,-0.010751,0.249769,0,0);-ms-transform:matrix(0.224472,0.009662,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.224472,0.009662,-0.010751,0.249769,0,0);}
.m45_c00490{transform:matrix(0.224549,0.008766,-0.009752,0.249810,0,0);-ms-transform:matrix(0.224549,0.008766,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.224549,0.008766,-0.009752,0.249810,0,0);}
.m94_c00490{transform:matrix(0.224871,0.009229,-0.010252,0.249790,0,0);-ms-transform:matrix(0.224871,0.009229,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.224871,0.009229,-0.010252,0.249790,0,0);}
.m91_c00490{transform:matrix(0.225125,0.009239,-0.010252,0.249790,0,0);-ms-transform:matrix(0.225125,0.009239,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.225125,0.009239,-0.010252,0.249790,0,0);}
.m12b_c00490{transform:matrix(0.225358,0.003155,-0.003500,0.249976,0,0);-ms-transform:matrix(0.225358,0.003155,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.225358,0.003155,-0.003500,0.249976,0,0);}
.m103_c00490{transform:matrix(0.225399,0.007671,-0.008504,0.249855,0,0);-ms-transform:matrix(0.225399,0.007671,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.225399,0.007671,-0.008504,0.249855,0,0);}
.mb9_c00490{transform:matrix(0.225735,0.012202,-0.013494,0.249636,0,0);-ms-transform:matrix(0.225735,0.012202,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.225735,0.012202,-0.013494,0.249636,0,0);}
.mb0_c00490{transform:matrix(0.225920,0.009272,-0.010252,0.249790,0,0);-ms-transform:matrix(0.225920,0.009272,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.225920,0.009272,-0.010252,0.249790,0,0);}
.m69_c00490{transform:matrix(0.225938,0.008820,-0.009752,0.249810,0,0);-ms-transform:matrix(0.225938,0.008820,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.225938,0.008820,-0.009752,0.249810,0,0);}
.mef_c00490{transform:matrix(0.226280,0.014511,-0.015999,0.249488,0,0);-ms-transform:matrix(0.226280,0.014511,-0.015999,0.249488,0,0);-webkit-transform:matrix(0.226280,0.014511,-0.015999,0.249488,0,0);}
.md0_c00490{transform:matrix(0.226535,0.009751,-0.010751,0.249769,0,0);-ms-transform:matrix(0.226535,0.009751,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.226535,0.009751,-0.010751,0.249769,0,0);}
.m77_c00490{transform:matrix(0.226572,0.008845,-0.009752,0.249810,0,0);-ms-transform:matrix(0.226572,0.008845,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.226572,0.008845,-0.009752,0.249810,0,0);}
.m126_c00490{transform:matrix(0.226598,0.008166,-0.009003,0.249838,0,0);-ms-transform:matrix(0.226598,0.008166,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.226598,0.008166,-0.009003,0.249838,0,0);}
.m106_c00490{transform:matrix(0.226599,0.007712,-0.008504,0.249855,0,0);-ms-transform:matrix(0.226599,0.007712,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.226599,0.007712,-0.008504,0.249855,0,0);}
.m5a_c00490{transform:matrix(0.226642,0.008848,-0.009752,0.249810,0,0);-ms-transform:matrix(0.226642,0.008848,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.226642,0.008848,-0.009752,0.249810,0,0);}
.m3b_c00490{transform:matrix(0.226745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226745,0.000000,0.000000,0.250000,0,0);}
.m5d_c00490{transform:matrix(0.227207,0.008870,-0.009752,0.249810,0,0);-ms-transform:matrix(0.227207,0.008870,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.227207,0.008870,-0.009752,0.249810,0,0);}
.md2_c00490{transform:matrix(0.227220,0.009780,-0.010751,0.249769,0,0);-ms-transform:matrix(0.227220,0.009780,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.227220,0.009780,-0.010751,0.249769,0,0);}
.mf8_c00490{transform:matrix(0.227473,0.010930,-0.011998,0.249712,0,0);-ms-transform:matrix(0.227473,0.010930,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.227473,0.010930,-0.011998,0.249712,0,0);}
.m62_c00490{transform:matrix(0.227916,0.008898,-0.009752,0.249810,0,0);-ms-transform:matrix(0.227916,0.008898,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.227916,0.008898,-0.009752,0.249810,0,0);}
.mfe_c00490{transform:matrix(0.228028,0.007761,-0.008504,0.249855,0,0);-ms-transform:matrix(0.228028,0.007761,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.228028,0.007761,-0.008504,0.249855,0,0);}
.mdd_c00490{transform:matrix(0.228603,0.009840,-0.010751,0.249769,0,0);-ms-transform:matrix(0.228603,0.009840,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.228603,0.009840,-0.010751,0.249769,0,0);}
.md1_c00490{transform:matrix(0.228663,0.009842,-0.010751,0.249769,0,0);-ms-transform:matrix(0.228663,0.009842,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.228663,0.009842,-0.010751,0.249769,0,0);}
.m4d_c00490{transform:matrix(0.229021,0.008941,-0.009752,0.249810,0,0);-ms-transform:matrix(0.229021,0.008941,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.229021,0.008941,-0.009752,0.249810,0,0);}
.m88_c00490{transform:matrix(0.229267,0.009409,-0.010252,0.249790,0,0);-ms-transform:matrix(0.229267,0.009409,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.229267,0.009409,-0.010252,0.249790,0,0);}
.mb6_c00490{transform:matrix(0.229397,0.009415,-0.010252,0.249790,0,0);-ms-transform:matrix(0.229397,0.009415,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.229397,0.009415,-0.010252,0.249790,0,0);}
.m11e_c00490{transform:matrix(0.229441,0.008268,-0.009003,0.249838,0,0);-ms-transform:matrix(0.229441,0.008268,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.229441,0.008268,-0.009003,0.249838,0,0);}
.m1d_c00490{transform:matrix(0.229525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229525,0.000000,0.000000,0.250000,0,0);}
.mea_c00490{transform:matrix(0.229743,0.014733,-0.015999,0.249488,0,0);-ms-transform:matrix(0.229743,0.014733,-0.015999,0.249488,0,0);-webkit-transform:matrix(0.229743,0.014733,-0.015999,0.249488,0,0);}
.m58_c00490{transform:matrix(0.230599,0.009002,-0.009752,0.249810,0,0);-ms-transform:matrix(0.230599,0.009002,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.230599,0.009002,-0.009752,0.249810,0,0);}
.mb8_c00490{transform:matrix(0.230698,0.012470,-0.013494,0.249636,0,0);-ms-transform:matrix(0.230698,0.012470,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.230698,0.012470,-0.013494,0.249636,0,0);}
.mda_c00490{transform:matrix(0.231426,0.009961,-0.010751,0.249769,0,0);-ms-transform:matrix(0.231426,0.009961,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.231426,0.009961,-0.010751,0.249769,0,0);}
.m101_c00490{transform:matrix(0.231486,0.007878,-0.008504,0.249855,0,0);-ms-transform:matrix(0.231486,0.007878,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.231486,0.007878,-0.008504,0.249855,0,0);}
.m132_c00490{transform:matrix(0.231642,0.003243,-0.003500,0.249976,0,0);-ms-transform:matrix(0.231642,0.003243,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.231642,0.003243,-0.003500,0.249976,0,0);}
.m72_c00490{transform:matrix(0.231928,0.009054,-0.009752,0.249810,0,0);-ms-transform:matrix(0.231928,0.009054,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.231928,0.009054,-0.009752,0.249810,0,0);}
.m7a_c00490{transform:matrix(0.232808,0.009089,-0.009752,0.249810,0,0);-ms-transform:matrix(0.232808,0.009089,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.232808,0.009089,-0.009752,0.249810,0,0);}
.m11d_c00490{transform:matrix(0.232939,0.008394,-0.009003,0.249838,0,0);-ms-transform:matrix(0.232939,0.008394,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.232939,0.008394,-0.009003,0.249838,0,0);}
.mf4_c00490{transform:matrix(0.233166,0.011203,-0.011998,0.249712,0,0);-ms-transform:matrix(0.233166,0.011203,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.233166,0.011203,-0.011998,0.249712,0,0);}
.m71_c00490{transform:matrix(0.233392,0.009111,-0.009752,0.249810,0,0);-ms-transform:matrix(0.233392,0.009111,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.233392,0.009111,-0.009752,0.249810,0,0);}
.m6d_c00490{transform:matrix(0.233482,0.009115,-0.009752,0.249810,0,0);-ms-transform:matrix(0.233482,0.009115,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.233482,0.009115,-0.009752,0.249810,0,0);}
.m5e_c00490{transform:matrix(0.234147,0.009141,-0.009752,0.249810,0,0);-ms-transform:matrix(0.234147,0.009141,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.234147,0.009141,-0.009752,0.249810,0,0);}
.mf7_c00490{transform:matrix(0.234290,0.011257,-0.011998,0.249712,0,0);-ms-transform:matrix(0.234290,0.011257,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.234290,0.011257,-0.011998,0.249712,0,0);}
.md4_c00490{transform:matrix(0.234568,0.010097,-0.010751,0.249769,0,0);-ms-transform:matrix(0.234568,0.010097,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.234568,0.010097,-0.010751,0.249769,0,0);}
.m79_c00490{transform:matrix(0.234861,0.009169,-0.009752,0.249810,0,0);-ms-transform:matrix(0.234861,0.009169,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.234861,0.009169,-0.009752,0.249810,0,0);}
.ma1_c00490{transform:matrix(0.234927,0.009642,-0.010252,0.249790,0,0);-ms-transform:matrix(0.234927,0.009642,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.234927,0.009642,-0.010252,0.249790,0,0);}
.m57_c00490{transform:matrix(0.235151,0.009180,-0.009752,0.249810,0,0);-ms-transform:matrix(0.235151,0.009180,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.235151,0.009180,-0.009752,0.249810,0,0);}
.mc5_c00490{transform:matrix(0.235476,0.012728,-0.013494,0.249636,0,0);-ms-transform:matrix(0.235476,0.012728,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.235476,0.012728,-0.013494,0.249636,0,0);}
.m7d_c00490{transform:matrix(0.235670,0.009200,-0.009752,0.249810,0,0);-ms-transform:matrix(0.235670,0.009200,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.235670,0.009200,-0.009752,0.249810,0,0);}
.m129_c00490{transform:matrix(0.235902,0.008501,-0.009003,0.249838,0,0);-ms-transform:matrix(0.235902,0.008501,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.235902,0.008501,-0.009003,0.249838,0,0);}
.mf0_c00490{transform:matrix(0.236130,0.015143,-0.015999,0.249488,0,0);-ms-transform:matrix(0.236130,0.015143,-0.015999,0.249488,0,0);-webkit-transform:matrix(0.236130,0.015143,-0.015999,0.249488,0,0);}
.mc6_c00490{transform:matrix(0.236240,0.012770,-0.013494,0.249636,0,0);-ms-transform:matrix(0.236240,0.012770,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.236240,0.012770,-0.013494,0.249636,0,0);}
.m12a_c00490{transform:matrix(0.236727,0.003314,-0.003500,0.249976,0,0);-ms-transform:matrix(0.236727,0.003314,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.236727,0.003314,-0.003500,0.249976,0,0);}
.m133_c00490{transform:matrix(0.236892,0.003316,-0.003500,0.249976,0,0);-ms-transform:matrix(0.236892,0.003316,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.236892,0.003316,-0.003500,0.249976,0,0);}
.m2c_c00490{transform:matrix(0.237325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237325,0.000000,0.000000,0.250000,0,0);}
.m1b_c00490{transform:matrix(0.237770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237770,0.000000,0.000000,0.250000,0,0);}
.me6_c00490{transform:matrix(0.239014,0.015328,-0.015999,0.249488,0,0);-ms-transform:matrix(0.239014,0.015328,-0.015999,0.249488,0,0);-webkit-transform:matrix(0.239014,0.015328,-0.015999,0.249488,0,0);}
.ma4_c00490{transform:matrix(0.239094,0.009813,-0.010252,0.249790,0,0);-ms-transform:matrix(0.239094,0.009813,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.239094,0.009813,-0.010252,0.249790,0,0);}
.m124_c00490{transform:matrix(0.239155,0.008618,-0.009003,0.249838,0,0);-ms-transform:matrix(0.239155,0.008618,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.239155,0.008618,-0.009003,0.249838,0,0);}
.m5b_c00490{transform:matrix(0.239917,0.009366,-0.009752,0.249810,0,0);-ms-transform:matrix(0.239917,0.009366,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.239917,0.009366,-0.009752,0.249810,0,0);}
.m39_c00490{transform:matrix(0.241030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241030,0.000000,0.000000,0.250000,0,0);}
.m131_c00490{transform:matrix(0.241041,0.003375,-0.003500,0.249976,0,0);-ms-transform:matrix(0.241041,0.003375,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.241041,0.003375,-0.003500,0.249976,0,0);}
.mc1_c00490{transform:matrix(0.241462,0.013052,-0.013494,0.249636,0,0);-ms-transform:matrix(0.241462,0.013052,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.241462,0.013052,-0.013494,0.249636,0,0);}
.m86_c00490{transform:matrix(0.241876,0.009927,-0.010252,0.249790,0,0);-ms-transform:matrix(0.241876,0.009927,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.241876,0.009927,-0.010252,0.249790,0,0);}
.m6b_c00490{transform:matrix(0.241891,0.009443,-0.009752,0.249810,0,0);-ms-transform:matrix(0.241891,0.009443,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.241891,0.009443,-0.009752,0.249810,0,0);}
.m20_c00490{transform:matrix(0.242545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242545,0.000000,0.000000,0.250000,0,0);}
.mbe_c00490{transform:matrix(0.242845,0.013127,-0.013494,0.249636,0,0);-ms-transform:matrix(0.242845,0.013127,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.242845,0.013127,-0.013494,0.249636,0,0);}
.m8a_c00490{transform:matrix(0.242876,0.009968,-0.010252,0.249790,0,0);-ms-transform:matrix(0.242876,0.009968,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.242876,0.009968,-0.010252,0.249790,0,0);}
.m2e_c00490{transform:matrix(0.243055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243055,0.000000,0.000000,0.250000,0,0);}
.m12c_c00490{transform:matrix(0.243056,0.003403,-0.003500,0.249976,0,0);-ms-transform:matrix(0.243056,0.003403,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.243056,0.003403,-0.003500,0.249976,0,0);}
.m2d_c00490{transform:matrix(0.243600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243600,0.000000,0.000000,0.250000,0,0);}
.m75_c00490{transform:matrix(0.243739,0.009515,-0.009752,0.249810,0,0);-ms-transform:matrix(0.243739,0.009515,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.243739,0.009515,-0.009752,0.249810,0,0);}
.mc3_c00490{transform:matrix(0.243904,0.013184,-0.013494,0.249636,0,0);-ms-transform:matrix(0.243904,0.013184,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.243904,0.013184,-0.013494,0.249636,0,0);}
.m2b_c00490{transform:matrix(0.244095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244095,0.000000,0.000000,0.250000,0,0);}
.m44_c00490{transform:matrix(0.244184,0.009533,-0.009752,0.249810,0,0);-ms-transform:matrix(0.244184,0.009533,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.244184,0.009533,-0.009752,0.249810,0,0);}
.mae_c00490{transform:matrix(0.245029,0.010056,-0.010252,0.249790,0,0);-ms-transform:matrix(0.245029,0.010056,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.245029,0.010056,-0.010252,0.249790,0,0);}
.m31_c00490{transform:matrix(0.245200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245200,0.000000,0.000000,0.250000,0,0);}
.m46_c00490{transform:matrix(0.245273,0.009575,-0.009752,0.249810,0,0);-ms-transform:matrix(0.245273,0.009575,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.245273,0.009575,-0.009752,0.249810,0,0);}
.m73_c00490{transform:matrix(0.245383,0.009580,-0.009752,0.249810,0,0);-ms-transform:matrix(0.245383,0.009580,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.245383,0.009580,-0.009752,0.249810,0,0);}
.m11b_c00490{transform:matrix(0.245426,0.008844,-0.009003,0.249838,0,0);-ms-transform:matrix(0.245426,0.008844,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.245426,0.008844,-0.009003,0.249838,0,0);}
.ma7_c00490{transform:matrix(0.245598,0.010080,-0.010252,0.249790,0,0);-ms-transform:matrix(0.245598,0.010080,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.245598,0.010080,-0.010252,0.249790,0,0);}
.mba_c00490{transform:matrix(0.246270,0.013312,-0.013494,0.249636,0,0);-ms-transform:matrix(0.246270,0.013312,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.246270,0.013312,-0.013494,0.249636,0,0);}
.m32_c00490{transform:matrix(0.246300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246300,0.000000,0.000000,0.250000,0,0);}
.m120_c00490{transform:matrix(0.246650,0.008888,-0.009003,0.249838,0,0);-ms-transform:matrix(0.246650,0.008888,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.246650,0.008888,-0.009003,0.249838,0,0);}
.m19_c00490{transform:matrix(0.246705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246705,0.000000,0.000000,0.250000,0,0);}
.m43_c00490{transform:matrix(0.246792,0.009635,-0.009752,0.249810,0,0);-ms-transform:matrix(0.246792,0.009635,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.246792,0.009635,-0.009752,0.249810,0,0);}
.m34_c00490{transform:matrix(0.246845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246845,0.000000,0.000000,0.250000,0,0);}
.m27_c00490{transform:matrix(0.246960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246960,0.000000,0.000000,0.250000,0,0);}
.mb7_c00490{transform:matrix(0.247192,0.010145,-0.010252,0.249790,0,0);-ms-transform:matrix(0.247192,0.010145,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.247192,0.010145,-0.010252,0.249790,0,0);}
.mdf_c00490{transform:matrix(0.247334,0.013369,-0.013494,0.249636,0,0);-ms-transform:matrix(0.247334,0.013369,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.247334,0.013369,-0.013494,0.249636,0,0);}
.m54_c00490{transform:matrix(0.247362,0.009657,-0.009752,0.249810,0,0);-ms-transform:matrix(0.247362,0.009657,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.247362,0.009657,-0.009752,0.249810,0,0);}
.m6e_c00490{transform:matrix(0.247407,0.009659,-0.009752,0.249810,0,0);-ms-transform:matrix(0.247407,0.009659,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.247407,0.009659,-0.009752,0.249810,0,0);}
.m125_c00490{transform:matrix(0.247454,0.008917,-0.009003,0.249838,0,0);-ms-transform:matrix(0.247454,0.008917,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.247454,0.008917,-0.009003,0.249838,0,0);}
.me4_c00490{transform:matrix(0.247537,0.015874,-0.015999,0.249488,0,0);-ms-transform:matrix(0.247537,0.015874,-0.015999,0.249488,0,0);-webkit-transform:matrix(0.247537,0.015874,-0.015999,0.249488,0,0);}
.m8e_c00490{transform:matrix(0.248221,0.010187,-0.010252,0.249790,0,0);-ms-transform:matrix(0.248221,0.010187,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.248221,0.010187,-0.010252,0.249790,0,0);}
.mbd_c00490{transform:matrix(0.248263,0.013420,-0.013494,0.249636,0,0);-ms-transform:matrix(0.248263,0.013420,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.248263,0.013420,-0.013494,0.249636,0,0);}
.ma3_c00490{transform:matrix(0.248376,0.010194,-0.010252,0.249790,0,0);-ms-transform:matrix(0.248376,0.010194,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.248376,0.010194,-0.010252,0.249790,0,0);}
.m123_c00490{transform:matrix(0.248414,0.008952,-0.009003,0.249838,0,0);-ms-transform:matrix(0.248414,0.008952,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.248414,0.008952,-0.009003,0.249838,0,0);}
.m35_c00490{transform:matrix(0.248525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248525,0.000000,0.000000,0.250000,0,0);}
.maa_c00490{transform:matrix(0.248716,0.010208,-0.010252,0.249790,0,0);-ms-transform:matrix(0.248716,0.010208,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.248716,0.010208,-0.010252,0.249790,0,0);}
.m128_c00490{transform:matrix(0.248858,0.008968,-0.009003,0.249838,0,0);-ms-transform:matrix(0.248858,0.008968,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.248858,0.008968,-0.009003,0.249838,0,0);}
.m4c_c00490{transform:matrix(0.249400,0.009736,-0.009752,0.249810,0,0);-ms-transform:matrix(0.249400,0.009736,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.249400,0.009736,-0.009752,0.249810,0,0);}
.m95_c00490{transform:matrix(0.249820,0.010253,-0.010252,0.249790,0,0);-ms-transform:matrix(0.249820,0.010253,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.249820,0.010253,-0.010252,0.249790,0,0);}
.m3e_c00490{transform:matrix(0.249825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249825,0.000000,0.000000,0.250000,0,0);}
.mcf_c00490{transform:matrix(0.250238,0.010771,-0.010751,0.249769,0,0);-ms-transform:matrix(0.250238,0.010771,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.250238,0.010771,-0.010751,0.249769,0,0);}
.m53_c00490{transform:matrix(0.250279,0.009771,-0.009752,0.249810,0,0);-ms-transform:matrix(0.250279,0.009771,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.250279,0.009771,-0.009752,0.249810,0,0);}
.m89_c00490{transform:matrix(0.250409,0.010277,-0.010252,0.249790,0,0);-ms-transform:matrix(0.250409,0.010277,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.250409,0.010277,-0.010252,0.249790,0,0);}
.m76_c00490{transform:matrix(0.250969,0.009798,-0.009752,0.249810,0,0);-ms-transform:matrix(0.250969,0.009798,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.250969,0.009798,-0.009752,0.249810,0,0);}
.m7f_c00490{transform:matrix(0.251389,0.009814,-0.009752,0.249810,0,0);-ms-transform:matrix(0.251389,0.009814,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.251389,0.009814,-0.009752,0.249810,0,0);}
.m70_c00490{transform:matrix(0.251768,0.009829,-0.009752,0.249810,0,0);-ms-transform:matrix(0.251768,0.009829,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.251768,0.009829,-0.009752,0.249810,0,0);}
.mc4_c00490{transform:matrix(0.251952,0.013619,-0.013494,0.249636,0,0);-ms-transform:matrix(0.251952,0.013619,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.251952,0.013619,-0.013494,0.249636,0,0);}
.me2_c00490{transform:matrix(0.252187,0.016172,-0.015999,0.249488,0,0);-ms-transform:matrix(0.252187,0.016172,-0.015999,0.249488,0,0);-webkit-transform:matrix(0.252187,0.016172,-0.015999,0.249488,0,0);}
.m65_c00490{transform:matrix(0.252792,0.009869,-0.009752,0.249810,0,0);-ms-transform:matrix(0.252792,0.009869,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.252792,0.009869,-0.009752,0.249810,0,0);}
.m3c_c00490{transform:matrix(0.252860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252860,0.000000,0.000000,0.250000,0,0);}
.m9f_c00490{transform:matrix(0.253482,0.010403,-0.010252,0.249790,0,0);-ms-transform:matrix(0.253482,0.010403,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.253482,0.010403,-0.010252,0.249790,0,0);}
.m63_c00490{transform:matrix(0.254116,0.009920,-0.009752,0.249810,0,0);-ms-transform:matrix(0.254116,0.009920,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.254116,0.009920,-0.009752,0.249810,0,0);}
.m6c_c00490{transform:matrix(0.254266,0.009926,-0.009752,0.249810,0,0);-ms-transform:matrix(0.254266,0.009926,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.254266,0.009926,-0.009752,0.249810,0,0);}
.m92_c00490{transform:matrix(0.254501,0.010445,-0.010252,0.249790,0,0);-ms-transform:matrix(0.254501,0.010445,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.254501,0.010445,-0.010252,0.249790,0,0);}
.m25_c00490{transform:matrix(0.254685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254685,0.000000,0.000000,0.250000,0,0);}
.mdc_c00490{transform:matrix(0.254819,0.010968,-0.010751,0.249769,0,0);-ms-transform:matrix(0.254819,0.010968,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.254819,0.010968,-0.010751,0.249769,0,0);}
.m8b_c00490{transform:matrix(0.255340,0.010479,-0.010252,0.249790,0,0);-ms-transform:matrix(0.255340,0.010479,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.255340,0.010479,-0.010252,0.249790,0,0);}
.m52_c00490{transform:matrix(0.255400,0.009971,-0.009752,0.249810,0,0);-ms-transform:matrix(0.255400,0.009971,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.255400,0.009971,-0.009752,0.249810,0,0);}
.m98_c00490{transform:matrix(0.255795,0.010498,-0.010252,0.249790,0,0);-ms-transform:matrix(0.255795,0.010498,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.255795,0.010498,-0.010252,0.249790,0,0);}
.ma2_c00490{transform:matrix(0.257203,0.010556,-0.010252,0.249790,0,0);-ms-transform:matrix(0.257203,0.010556,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.257203,0.010556,-0.010252,0.249790,0,0);}
.m11f_c00490{transform:matrix(0.257528,0.009280,-0.009003,0.249838,0,0);-ms-transform:matrix(0.257528,0.009280,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.257528,0.009280,-0.009003,0.249838,0,0);}
.m48_c00490{transform:matrix(0.258113,0.010076,-0.009752,0.249810,0,0);-ms-transform:matrix(0.258113,0.010076,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.258113,0.010076,-0.009752,0.249810,0,0);}
.m8c_c00490{transform:matrix(0.258437,0.010607,-0.010252,0.249790,0,0);-ms-transform:matrix(0.258437,0.010607,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.258437,0.010607,-0.010252,0.249790,0,0);}
.md5_c00490{transform:matrix(0.258710,0.011136,-0.010751,0.249769,0,0);-ms-transform:matrix(0.258710,0.011136,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.258710,0.011136,-0.010751,0.249769,0,0);}
.mb1_c00490{transform:matrix(0.258992,0.010629,-0.010252,0.249790,0,0);-ms-transform:matrix(0.258992,0.010629,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.258992,0.010629,-0.010252,0.249790,0,0);}
.m127_c00490{transform:matrix(0.259447,0.009349,-0.009003,0.249838,0,0);-ms-transform:matrix(0.259447,0.009349,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.259447,0.009349,-0.009003,0.249838,0,0);}
.m50_c00490{transform:matrix(0.259527,0.010132,-0.009752,0.249810,0,0);-ms-transform:matrix(0.259527,0.010132,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.259527,0.010132,-0.009752,0.249810,0,0);}
.m8f_c00490{transform:matrix(0.259542,0.010652,-0.010252,0.249790,0,0);-ms-transform:matrix(0.259542,0.010652,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.259542,0.010652,-0.010252,0.249790,0,0);}
.mec_c00490{transform:matrix(0.259662,0.016652,-0.015999,0.249488,0,0);-ms-transform:matrix(0.259662,0.016652,-0.015999,0.249488,0,0);-webkit-transform:matrix(0.259662,0.016652,-0.015999,0.249488,0,0);}
.m66_c00490{transform:matrix(0.260237,0.010159,-0.009752,0.249810,0,0);-ms-transform:matrix(0.260237,0.010159,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.260237,0.010159,-0.009752,0.249810,0,0);}
.mad_c00490{transform:matrix(0.260511,0.010692,-0.010252,0.249790,0,0);-ms-transform:matrix(0.260511,0.010692,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.260511,0.010692,-0.010252,0.249790,0,0);}
.md3_c00490{transform:matrix(0.260579,0.011216,-0.010751,0.249769,0,0);-ms-transform:matrix(0.260579,0.011216,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.260579,0.011216,-0.010751,0.249769,0,0);}
.m22_c00490{transform:matrix(0.261015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261015,0.000000,0.000000,0.250000,0,0);}
.mfc_c00490{transform:matrix(0.261084,0.008886,-0.008504,0.249855,0,0);-ms-transform:matrix(0.261084,0.008886,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.261084,0.008886,-0.008504,0.249855,0,0);}
.m49_c00490{transform:matrix(0.261651,0.010215,-0.009752,0.249810,0,0);-ms-transform:matrix(0.261651,0.010215,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.261651,0.010215,-0.009752,0.249810,0,0);}
.ma8_c00490{transform:matrix(0.261949,0.010751,-0.010252,0.249790,0,0);-ms-transform:matrix(0.261949,0.010751,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.261949,0.010751,-0.010252,0.249790,0,0);}
.m4e_c00490{transform:matrix(0.262025,0.010229,-0.009752,0.249810,0,0);-ms-transform:matrix(0.262025,0.010229,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.262025,0.010229,-0.009752,0.249810,0,0);}
.mdb_c00490{transform:matrix(0.262102,0.011282,-0.010751,0.249769,0,0);-ms-transform:matrix(0.262102,0.011282,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.262102,0.011282,-0.010751,0.249769,0,0);}
.mb3_c00490{transform:matrix(0.262899,0.010790,-0.010252,0.249790,0,0);-ms-transform:matrix(0.262899,0.010790,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.262899,0.010790,-0.010252,0.249790,0,0);}
.ma9_c00490{transform:matrix(0.263268,0.010805,-0.010252,0.249790,0,0);-ms-transform:matrix(0.263268,0.010805,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.263268,0.010805,-0.010252,0.249790,0,0);}
.m68_c00490{transform:matrix(0.263404,0.010283,-0.009752,0.249810,0,0);-ms-transform:matrix(0.263404,0.010283,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.263404,0.010283,-0.009752,0.249810,0,0);}
.ma6_c00490{transform:matrix(0.263683,0.010822,-0.010252,0.249790,0,0);-ms-transform:matrix(0.263683,0.010822,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.263683,0.010822,-0.010252,0.249790,0,0);}
.m7b_c00490{transform:matrix(0.263904,0.010303,-0.009752,0.249810,0,0);-ms-transform:matrix(0.263904,0.010303,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.263904,0.010303,-0.009752,0.249810,0,0);}
.m90_c00490{transform:matrix(0.263968,0.010834,-0.010252,0.249790,0,0);-ms-transform:matrix(0.263968,0.010834,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.263968,0.010834,-0.010252,0.249790,0,0);}
.m9a_c00490{transform:matrix(0.264143,0.010841,-0.010252,0.249790,0,0);-ms-transform:matrix(0.264143,0.010841,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.264143,0.010841,-0.010252,0.249790,0,0);}
.m11a_c00490{transform:matrix(0.264923,0.009547,-0.009003,0.249838,0,0);-ms-transform:matrix(0.264923,0.009547,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.264923,0.009547,-0.009003,0.249838,0,0);}
.med_c00490{transform:matrix(0.265115,0.017001,-0.015999,0.249488,0,0);-ms-transform:matrix(0.265115,0.017001,-0.015999,0.249488,0,0);-webkit-transform:matrix(0.265115,0.017001,-0.015999,0.249488,0,0);}
.mb5_c00490{transform:matrix(0.265452,0.010894,-0.010252,0.249790,0,0);-ms-transform:matrix(0.265452,0.010894,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.265452,0.010894,-0.010252,0.249790,0,0);}
.m61_c00490{transform:matrix(0.266037,0.010386,-0.009752,0.249810,0,0);-ms-transform:matrix(0.266037,0.010386,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.266037,0.010386,-0.009752,0.249810,0,0);}
.m26_c00490{transform:matrix(0.266045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266045,0.000000,0.000000,0.250000,0,0);}
.maf_c00490{transform:matrix(0.266366,0.010932,-0.010252,0.249790,0,0);-ms-transform:matrix(0.266366,0.010932,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.266366,0.010932,-0.010252,0.249790,0,0);}
.m1f_c00490{transform:matrix(0.266575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266575,0.000000,0.000000,0.250000,0,0);}
.mff_c00490{transform:matrix(0.267350,0.009099,-0.008504,0.249855,0,0);-ms-transform:matrix(0.267350,0.009099,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.267350,0.009099,-0.008504,0.249855,0,0);}
.m78_c00490{transform:matrix(0.267801,0.010455,-0.009752,0.249810,0,0);-ms-transform:matrix(0.267801,0.010455,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.267801,0.010455,-0.009752,0.249810,0,0);}
.m4b_c00490{transform:matrix(0.267996,0.010462,-0.009752,0.249810,0,0);-ms-transform:matrix(0.267996,0.010462,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.267996,0.010462,-0.009752,0.249810,0,0);}
.m80_c00490{transform:matrix(0.268366,0.010477,-0.009752,0.249810,0,0);-ms-transform:matrix(0.268366,0.010477,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.268366,0.010477,-0.009752,0.249810,0,0);}
.m7e_c00490{transform:matrix(0.268595,0.010486,-0.009752,0.249810,0,0);-ms-transform:matrix(0.268595,0.010486,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.268595,0.010486,-0.009752,0.249810,0,0);}
.m37_c00490{transform:matrix(0.268700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268700,0.000000,0.000000,0.250000,0,0);}
.mac_c00490{transform:matrix(0.268779,0.011031,-0.010252,0.249790,0,0);-ms-transform:matrix(0.268779,0.011031,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.268779,0.011031,-0.010252,0.249790,0,0);}
.m1a_c00490{transform:matrix(0.268940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268940,0.000000,0.000000,0.250000,0,0);}
.md9_c00490{transform:matrix(0.269151,0.011585,-0.010751,0.249769,0,0);-ms-transform:matrix(0.269151,0.011585,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.269151,0.011585,-0.010751,0.249769,0,0);}
.m60_c00490{transform:matrix(0.269380,0.010516,-0.009752,0.249810,0,0);-ms-transform:matrix(0.269380,0.010516,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.269380,0.010516,-0.009752,0.249810,0,0);}
.m21_c00490{transform:matrix(0.269420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269420,0.000000,0.000000,0.250000,0,0);}
.mfa_c00490{transform:matrix(0.269429,0.009170,-0.008504,0.249855,0,0);-ms-transform:matrix(0.269429,0.009170,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.269429,0.009170,-0.008504,0.249855,0,0);}
.m122_c00490{transform:matrix(0.270200,0.009737,-0.009003,0.249838,0,0);-ms-transform:matrix(0.270200,0.009737,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.270200,0.009737,-0.009003,0.249838,0,0);}
.m29_c00490{transform:matrix(0.270340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270340,0.000000,0.000000,0.250000,0,0);}
.m36_c00490{transform:matrix(0.270355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270355,0.000000,0.000000,0.250000,0,0);}
.mee_c00490{transform:matrix(0.270484,0.017346,-0.015999,0.249488,0,0);-ms-transform:matrix(0.270484,0.017346,-0.015999,0.249488,0,0);-webkit-transform:matrix(0.270484,0.017346,-0.015999,0.249488,0,0);}
.m7c_c00490{transform:matrix(0.270659,0.010566,-0.009752,0.249810,0,0);-ms-transform:matrix(0.270659,0.010566,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.270659,0.010566,-0.009752,0.249810,0,0);}
.md8_c00490{transform:matrix(0.271054,0.011667,-0.010751,0.249769,0,0);-ms-transform:matrix(0.271054,0.011667,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.271054,0.011667,-0.010751,0.249769,0,0);}
.m119_c00490{transform:matrix(0.271064,0.009768,-0.009003,0.249838,0,0);-ms-transform:matrix(0.271064,0.009768,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.271064,0.009768,-0.009003,0.249838,0,0);}
.me9_c00490{transform:matrix(0.272825,0.017496,-0.015999,0.249488,0,0);-ms-transform:matrix(0.272825,0.017496,-0.015999,0.249488,0,0);-webkit-transform:matrix(0.272825,0.017496,-0.015999,0.249488,0,0);}
.m64_c00490{transform:matrix(0.273367,0.010672,-0.009752,0.249810,0,0);-ms-transform:matrix(0.273367,0.010672,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.273367,0.010672,-0.009752,0.249810,0,0);}
.m28_c00490{transform:matrix(0.273770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273770,0.000000,0.000000,0.250000,0,0);}
.m41_c00490{transform:matrix(0.274216,0.010705,-0.009752,0.249810,0,0);-ms-transform:matrix(0.274216,0.010705,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.274216,0.010705,-0.009752,0.249810,0,0);}
.mab_c00490{transform:matrix(0.274269,0.011256,-0.010252,0.249790,0,0);-ms-transform:matrix(0.274269,0.011256,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.274269,0.011256,-0.010252,0.249790,0,0);}
.mfd_c00490{transform:matrix(0.274406,0.009339,-0.008504,0.249855,0,0);-ms-transform:matrix(0.274406,0.009339,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.274406,0.009339,-0.008504,0.249855,0,0);}
.m1c_c00490{transform:matrix(0.274525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274525,0.000000,0.000000,0.250000,0,0);}
.m1e_c00490{transform:matrix(0.275055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275055,0.000000,0.000000,0.250000,0,0);}
.mfb_c00490{transform:matrix(0.275545,0.009378,-0.008504,0.249855,0,0);-ms-transform:matrix(0.275545,0.009378,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.275545,0.009378,-0.008504,0.249855,0,0);}
.ma5_c00490{transform:matrix(0.276837,0.011362,-0.010252,0.249790,0,0);-ms-transform:matrix(0.276837,0.011362,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.276837,0.011362,-0.010252,0.249790,0,0);}
.meb_c00490{transform:matrix(0.277620,0.017803,-0.015999,0.249488,0,0);-ms-transform:matrix(0.277620,0.017803,-0.015999,0.249488,0,0);-webkit-transform:matrix(0.277620,0.017803,-0.015999,0.249488,0,0);}
.m97_c00490{transform:matrix(0.277691,0.011397,-0.010252,0.249790,0,0);-ms-transform:matrix(0.277691,0.011397,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.277691,0.011397,-0.010252,0.249790,0,0);}
.m55_c00490{transform:matrix(0.278003,0.010853,-0.009752,0.249810,0,0);-ms-transform:matrix(0.278003,0.010853,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.278003,0.010853,-0.009752,0.249810,0,0);}
.m47_c00490{transform:matrix(0.278338,0.010866,-0.009752,0.249810,0,0);-ms-transform:matrix(0.278338,0.010866,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.278338,0.010866,-0.009752,0.249810,0,0);}
.m9c_c00490{transform:matrix(0.279625,0.011476,-0.010252,0.249790,0,0);-ms-transform:matrix(0.279625,0.011476,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.279625,0.011476,-0.010252,0.249790,0,0);}
.m12e_c00490{transform:matrix(0.280233,0.003923,-0.003500,0.249976,0,0);-ms-transform:matrix(0.280233,0.003923,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.280233,0.003923,-0.003500,0.249976,0,0);}
.me0_c00490{transform:matrix(0.282368,0.015263,-0.013494,0.249636,0,0);-ms-transform:matrix(0.282368,0.015263,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.282368,0.015263,-0.013494,0.249636,0,0);}
.m81_c00490{transform:matrix(0.286462,0.011183,-0.009752,0.249810,0,0);-ms-transform:matrix(0.286462,0.011183,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.286462,0.011183,-0.009752,0.249810,0,0);}
.m99_c00490{transform:matrix(0.288822,0.011854,-0.010252,0.249790,0,0);-ms-transform:matrix(0.288822,0.011854,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.288822,0.011854,-0.010252,0.249790,0,0);}
.m40_c00490{transform:matrix(0.290878,0.011356,-0.009752,0.249810,0,0);-ms-transform:matrix(0.290878,0.011356,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.290878,0.011356,-0.009752,0.249810,0,0);}
.m9b_c00490{transform:matrix(0.291355,0.011958,-0.010252,0.249790,0,0);-ms-transform:matrix(0.291355,0.011958,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.291355,0.011958,-0.010252,0.249790,0,0);}
.m6a_c00490{transform:matrix(0.293142,0.011444,-0.009752,0.249810,0,0);-ms-transform:matrix(0.293142,0.011444,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.293142,0.011444,-0.009752,0.249810,0,0);}
.me8_c00490{transform:matrix(0.293881,0.018846,-0.015999,0.249488,0,0);-ms-transform:matrix(0.293881,0.018846,-0.015999,0.249488,0,0);-webkit-transform:matrix(0.293881,0.018846,-0.015999,0.249488,0,0);}
.m9e_c00490{transform:matrix(0.300812,0.012346,-0.010252,0.249790,0,0);-ms-transform:matrix(0.300812,0.012346,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.300812,0.012346,-0.010252,0.249790,0,0);}
.m9d_c00490{transform:matrix(0.303115,0.012440,-0.010252,0.249790,0,0);-ms-transform:matrix(0.303115,0.012440,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.303115,0.012440,-0.010252,0.249790,0,0);}
.m12d_c00490{transform:matrix(0.303520,0.004249,-0.003500,0.249976,0,0);-ms-transform:matrix(0.303520,0.004249,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.303520,0.004249,-0.003500,0.249976,0,0);}
.m11c_c00490{transform:matrix(0.305157,0.010997,-0.009003,0.249838,0,0);-ms-transform:matrix(0.305157,0.010997,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.305157,0.010997,-0.009003,0.249838,0,0);}
.m67_c00490{transform:matrix(0.305637,0.011932,-0.009752,0.249810,0,0);-ms-transform:matrix(0.305637,0.011932,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.305637,0.011932,-0.009752,0.249810,0,0);}
.m24_c00490{transform:matrix(0.332060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332060,0.000000,0.000000,0.250000,0,0);}
.m23_c00490{transform:matrix(0.340995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340995,0.000000,0.000000,0.250000,0,0);}
.m4a_c00490{transform:matrix(0.740386,0.028904,-0.009752,0.249810,0,0);-ms-transform:matrix(0.740386,0.028904,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.740386,0.028904,-0.009752,0.249810,0,0);}
.ma0_c00490{transform:matrix(1.054213,0.043266,-0.010252,0.249790,0,0);-ms-transform:matrix(1.054213,0.043266,-0.010252,0.249790,0,0);-webkit-transform:matrix(1.054213,0.043266,-0.010252,0.249790,0,0);}
.v0_c00490{vertical-align:0.000000px;}
.ls0_c00490{letter-spacing:0.000000px;}
.sc__c00490{text-shadow:none;}
.sc0_c00490{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__c00490{-webkit-text-stroke:0px transparent;}
.sc0_c00490{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00490{word-spacing:0.000000px;}
.fc0_c00490{color:transparent;}
.fs8_c00490{font-size:65.989505px;}
.fs11_c00490{font-size:71.969646px;}
.fs15_c00490{font-size:71.974688px;}
.fs3_c00490{font-size:71.982790px;}
.fs9_c00490{font-size:71.988551px;}
.fsc_c00490{font-size:71.994600px;}
.fs1_c00490{font-size:72.000000px;}
.fsf_c00490{font-size:72.003600px;}
.fsd_c00490{font-size:72.033004px;}
.fs5_c00490{font-size:77.981356px;}
.fs7_c00490{font-size:77.987597px;}
.fs2_c00490{font-size:78.000000px;}
.fse_c00490{font-size:78.003900px;}
.fs16_c00490{font-size:78.007644px;}
.fsa_c00490{font-size:78.035755px;}
.fs12_c00490{font-size:83.964587px;}
.fs4_c00490{font-size:83.979922px;}
.fs10_c00490{font-size:84.012809px;}
.fs14_c00490{font-size:89.968359px;}
.fsb_c00490{font-size:89.975022px;}
.fs13_c00490{font-size:89.982178px;}
.fs0_c00490{font-size:90.000000px;}
.fs17_c00490{font-size:90.008820px;}
.fs6_c00490{font-size:95.977053px;}
.y0_c00490{bottom:0.000000px;}
.y141_c00490{bottom:45.870474px;}
.y140_c00490{bottom:47.524287px;}
.y13f_c00490{bottom:49.519179px;}
.y13e_c00490{bottom:50.500479px;}
.y13d_c00490{bottom:51.173223px;}
.y13c_c00490{bottom:52.478349px;}
.y13b_c00490{bottom:53.468034px;}
.y13a_c00490{bottom:55.718160px;}
.y139_c00490{bottom:57.375426px;}
.y138_c00490{bottom:58.332222px;}
.y137_c00490{bottom:78.101634px;}
.y136_c00490{bottom:78.880818px;}
.y135_c00490{bottom:79.800177px;}
.y134_c00490{bottom:80.254050px;}
.y133_c00490{bottom:80.719431px;}
.y132_c00490{bottom:81.479505px;}
.y131_c00490{bottom:81.740997px;}
.y130_c00490{bottom:82.867164px;}
.y12f_c00490{bottom:83.770185px;}
.y12e_c00490{bottom:84.243000px;}
.y12d_c00490{bottom:100.466317px;}
.y12c_c00490{bottom:101.686083px;}
.y12b_c00490{bottom:102.881954px;}
.y12a_c00490{bottom:103.613843px;}
.y129_c00490{bottom:104.109090px;}
.y128_c00490{bottom:105.078106px;}
.y127_c00490{bottom:105.548811px;}
.y126_c00490{bottom:109.640445px;}
.y125_c00490{bottom:114.690849px;}
.y124_c00490{bottom:116.637738px;}
.y123_c00490{bottom:119.289827px;}
.y122_c00490{bottom:120.596910px;}
.y121_c00490{bottom:121.905937px;}
.y120_c00490{bottom:124.143144px;}
.y11f_c00490{bottom:125.440197px;}
.y11e_c00490{bottom:128.497137px;}
.y11d_c00490{bottom:132.867803px;}
.y11c_c00490{bottom:137.146344px;}
.y11b_c00490{bottom:139.169616px;}
.y11a_c00490{bottom:141.545724px;}
.y119_c00490{bottom:142.839024px;}
.y118_c00490{bottom:143.541186px;}
.y117_c00490{bottom:145.428432px;}
.y116_c00490{bottom:146.684634px;}
.y115_c00490{bottom:149.435718px;}
.y114_c00490{bottom:152.193714px;}
.y113_c00490{bottom:153.379500px;}
.y112_c00490{bottom:214.756320px;}
.y111_c00490{bottom:220.120230px;}
.y110_c00490{bottom:226.716330px;}
.y10f_c00490{bottom:228.619650px;}
.y10e_c00490{bottom:235.926660px;}
.y10d_c00490{bottom:240.621060px;}
.y10c_c00490{bottom:243.144660px;}
.y10b_c00490{bottom:245.712000px;}
.yfd_c00490{bottom:253.529412px;}
.yfc_c00490{bottom:256.873596px;}
.yfb_c00490{bottom:260.573532px;}
.yfa_c00490{bottom:262.131900px;}
.yf9_c00490{bottom:264.251148px;}
.yf8_c00490{bottom:268.946052px;}
.yf7_c00490{bottom:272.091084px;}
.yf6_c00490{bottom:273.683364px;}
.yf5_c00490{bottom:277.300500px;}
.yf4_c00490{bottom:279.056379px;}
.yf3_c00490{bottom:281.044011px;}
.yf2_c00490{bottom:286.314186px;}
.yf1_c00490{bottom:290.940678px;}
.yf0_c00490{bottom:294.206574px;}
.yef_c00490{bottom:300.715920px;}
.yee_c00490{bottom:302.612541px;}
.yed_c00490{bottom:310.300557px;}
.yec_c00490{bottom:315.325770px;}
.yea_c00490{bottom:316.504260px;}
.yeb_c00490{bottom:316.772193px;}
.ye9_c00490{bottom:317.926788px;}
.ye8_c00490{bottom:322.185540px;}
.ye7_c00490{bottom:323.590116px;}
.ye6_c00490{bottom:329.211588px;}
.ye5_c00490{bottom:331.330500px;}
.y10a_c00490{bottom:334.392354px;}
.y109_c00490{bottom:335.451521px;}
.y108_c00490{bottom:337.261911px;}
.y107_c00490{bottom:340.180408px;}
.y106_c00490{bottom:341.276582px;}
.y105_c00490{bottom:343.824210px;}
.y104_c00490{bottom:344.542476px;}
.ye4_c00490{bottom:356.451276px;}
.ye3_c00490{bottom:359.400000px;}
.y103_c00490{bottom:364.201905px;}
.y102_c00490{bottom:365.304729px;}
.y101_c00490{bottom:368.667057px;}
.y100_c00490{bottom:371.314365px;}
.yff_c00490{bottom:375.042720px;}
.yfe_c00490{bottom:378.015000px;}
.ye2_c00490{bottom:385.970686px;}
.ye1_c00490{bottom:387.416454px;}
.ye0_c00490{bottom:388.433683px;}
.ydf_c00490{bottom:390.800318px;}
.yde_c00490{bottom:392.208804px;}
.ydd_c00490{bottom:395.127687px;}
.ydc_c00490{bottom:397.973491px;}
.ydb_c00490{bottom:399.215632px;}
.yda_c00490{bottom:400.753248px;}
.yd9_c00490{bottom:403.564287px;}
.yd8_c00490{bottom:405.037919px;}
.yd7_c00490{bottom:407.866050px;}
.yd6_c00490{bottom:409.271569px;}
.yd5_c00490{bottom:410.212624px;}
.yd4_c00490{bottom:411.615628px;}
.yd3_c00490{bottom:413.935500px;}
.yca_c00490{bottom:426.039718px;}
.yc9_c00490{bottom:429.337148px;}
.yc8_c00490{bottom:433.333606px;}
.yc7_c00490{bottom:436.783194px;}
.yc6_c00490{bottom:438.196604px;}
.yc5_c00490{bottom:441.563490px;}
.yc4_c00490{bottom:443.082281px;}
.yc3_c00490{bottom:445.006031px;}
.yc2_c00490{bottom:447.919682px;}
.yc1_c00490{bottom:450.823410px;}
.yc0_c00490{bottom:452.160801px;}
.ybf_c00490{bottom:453.640185px;}
.ybe_c00490{bottom:460.905075px;}
.ybd_c00490{bottom:463.275378px;}
.ybc_c00490{bottom:466.326000px;}
.yd2_c00490{bottom:468.743490px;}
.yd1_c00490{bottom:471.213984px;}
.yd0_c00490{bottom:472.479327px;}
.ycf_c00490{bottom:475.434435px;}
.yce_c00490{bottom:479.565339px;}
.ycd_c00490{bottom:480.829143px;}
.ycc_c00490{bottom:484.552782px;}
.ycb_c00490{bottom:487.093500px;}
.ybb_c00490{bottom:497.078347px;}
.yba_c00490{bottom:498.449859px;}
.yb9_c00490{bottom:500.744424px;}
.yb8_c00490{bottom:501.649151px;}
.yb7_c00490{bottom:505.255203px;}
.yb6_c00490{bottom:506.621549px;}
.yb5_c00490{bottom:509.356269px;}
.yb4_c00490{bottom:510.687190px;}
.yb3_c00490{bottom:514.755539px;}
.yb2_c00490{bottom:516.970830px;}
.yb1_c00490{bottom:519.716621px;}
.yb0_c00490{bottom:523.279500px;}
.yaf_c00490{bottom:536.528733px;}
.yae_c00490{bottom:537.806302px;}
.yad_c00490{bottom:539.523817px;}
.yac_c00490{bottom:542.811958px;}
.yab_c00490{bottom:544.515882px;}
.yaa_c00490{bottom:547.062657px;}
.ya9_c00490{bottom:551.229398px;}
.ya8_c00490{bottom:552.465745px;}
.ya7_c00490{bottom:554.558391px;}
.ya6_c00490{bottom:557.041581px;}
.ya5_c00490{bottom:558.671548px;}
.ya4_c00490{bottom:569.361778px;}
.ya3_c00490{bottom:570.892732px;}
.ya2_c00490{bottom:576.082739px;}
.ya1_c00490{bottom:581.792733px;}
.ya0_c00490{bottom:584.892716px;}
.y9f_c00490{bottom:588.561630px;}
.y9e_c00490{bottom:591.071256px;}
.y9d_c00490{bottom:595.217142px;}
.y9c_c00490{bottom:597.268699px;}
.y9b_c00490{bottom:602.956234px;}
.y9a_c00490{bottom:604.302450px;}
.y99_c00490{bottom:608.527962px;}
.y98_c00490{bottom:610.362729px;}
.y97_c00490{bottom:611.774587px;}
.y96_c00490{bottom:616.369849px;}
.y95_c00490{bottom:617.812665px;}
.y94_c00490{bottom:618.715738px;}
.y93_c00490{bottom:625.142508px;}
.y92_c00490{bottom:630.208648px;}
.y91_c00490{bottom:640.469800px;}
.y90_c00490{bottom:645.506958px;}
.y8f_c00490{bottom:649.557717px;}
.y8e_c00490{bottom:650.931996px;}
.y8d_c00490{bottom:654.076429px;}
.y8c_c00490{bottom:655.938280px;}
.y8b_c00490{bottom:658.165564px;}
.y8a_c00490{bottom:659.519056px;}
.y89_c00490{bottom:662.244060px;}
.y88_c00490{bottom:663.139500px;}
.y87_c00490{bottom:695.303832px;}
.y86_c00490{bottom:697.144980px;}
.y85_c00490{bottom:698.007976px;}
.y84_c00490{bottom:713.297851px;}
.y83_c00490{bottom:715.810413px;}
.y82_c00490{bottom:717.560269px;}
.y81_c00490{bottom:718.615155px;}
.y80_c00490{bottom:721.130992px;}
.y7f_c00490{bottom:722.162329px;}
.y7e_c00490{bottom:725.318260px;}
.y7d_c00490{bottom:727.475025px;}
.y7c_c00490{bottom:728.523079px;}
.y7b_c00490{bottom:729.920122px;}
.y7a_c00490{bottom:733.424632px;}
.y79_c00490{bottom:734.452927px;}
.y78_c00490{bottom:747.209455px;}
.y77_c00490{bottom:749.580798px;}
.y76_c00490{bottom:750.761971px;}
.y75_c00490{bottom:753.580677px;}
.y74_c00490{bottom:755.531800px;}
.y73_c00490{bottom:756.373093px;}
.y72_c00490{bottom:759.536557px;}
.y71_c00490{bottom:760.698579px;}
.y70_c00490{bottom:763.487602px;}
.y6f_c00490{bottom:765.071013px;}
.y6e_c00490{bottom:769.010745px;}
.y6d_c00490{bottom:784.056054px;}
.y6c_c00490{bottom:784.813237px;}
.y6b_c00490{bottom:785.855208px;}
.y6a_c00490{bottom:788.364705px;}
.y69_c00490{bottom:789.500100px;}
.y68_c00490{bottom:791.902497px;}
.y67_c00490{bottom:793.650657px;}
.y66_c00490{bottom:796.473052px;}
.y65_c00490{bottom:798.234807px;}
.y64_c00490{bottom:799.279819px;}
.y63_c00490{bottom:802.099933px;}
.y62_c00490{bottom:804.906583px;}
.y61_c00490{bottom:819.824380px;}
.y60_c00490{bottom:822.636358px;}
.y5f_c00490{bottom:823.410345px;}
.y5e_c00490{bottom:825.814060px;}
.y5d_c00490{bottom:826.602753px;}
.y5c_c00490{bottom:831.344772px;}
.y5b_c00490{bottom:833.343231px;}
.y5a_c00490{bottom:834.506328px;}
.y59_c00490{bottom:837.268630px;}
.y58_c00490{bottom:840.461799px;}
.y57_c00490{bottom:841.618848px;}
.y56_c00490{bottom:856.236112px;}
.y55_c00490{bottom:857.516061px;}
.y54_c00490{bottom:859.589233px;}
.y53_c00490{bottom:862.129123px;}
.y52_c00490{bottom:863.351017px;}
.y51_c00490{bottom:865.856158px;}
.y50_c00490{bottom:867.119844px;}
.y4f_c00490{bottom:868.406250px;}
.y4e_c00490{bottom:869.640510px;}
.y4d_c00490{bottom:872.119596px;}
.y4c_c00490{bottom:875.044456px;}
.y4b_c00490{bottom:878.355223px;}
.y4a_c00490{bottom:891.181420px;}
.y49_c00490{bottom:893.729388px;}
.y48_c00490{bottom:898.038205px;}
.y47_c00490{bottom:899.359603px;}
.y46_c00490{bottom:900.622267px;}
.y45_c00490{bottom:903.037147px;}
.y44_c00490{bottom:904.090557px;}
.y43_c00490{bottom:905.333799px;}
.y42_c00490{bottom:908.807412px;}
.y41_c00490{bottom:911.643433px;}
.y40_c00490{bottom:913.705500px;}
.y3f_c00490{bottom:935.683500px;}
.y3e_c00490{bottom:936.457500px;}
.y3d_c00490{bottom:938.464500px;}
.y3c_c00490{bottom:939.630000px;}
.y3b_c00490{bottom:941.622000px;}
.y3a_c00490{bottom:943.197000px;}
.y39_c00490{bottom:944.352000px;}
.y38_c00490{bottom:947.130000px;}
.y37_c00490{bottom:949.066500px;}
.y36_c00490{bottom:964.491000px;}
.y35_c00490{bottom:967.402500px;}
.y34_c00490{bottom:968.560500px;}
.y33_c00490{bottom:970.734000px;}
.y32_c00490{bottom:972.895500px;}
.y31_c00490{bottom:973.965000px;}
.y30_c00490{bottom:975.441000px;}
.y2f_c00490{bottom:978.676500px;}
.y2e_c00490{bottom:982.275000px;}
.y2d_c00490{bottom:984.429000px;}
.y2c_c00490{bottom:996.612000px;}
.y2b_c00490{bottom:997.303500px;}
.y2a_c00490{bottom:1000.345500px;}
.y29_c00490{bottom:1003.474500px;}
.y28_c00490{bottom:1004.169000px;}
.y27_c00490{bottom:1006.860000px;}
.y26_c00490{bottom:1008.910500px;}
.y25_c00490{bottom:1009.618500px;}
.y24_c00490{bottom:1012.659000px;}
.y23_c00490{bottom:1015.027500px;}
.y22_c00490{bottom:1016.022000px;}
.y21_c00490{bottom:1033.317000px;}
.y20_c00490{bottom:1034.611500px;}
.y1f_c00490{bottom:1037.205000px;}
.y1e_c00490{bottom:1040.056500px;}
.y1d_c00490{bottom:1041.349500px;}
.y1c_c00490{bottom:1043.595000px;}
.y1b_c00490{bottom:1044.840000px;}
.y1a_c00490{bottom:1048.318500px;}
.y19_c00490{bottom:1049.929500px;}
.y18_c00490{bottom:1050.852000px;}
.y17_c00490{bottom:1067.167500px;}
.y16_c00490{bottom:1068.213000px;}
.y15_c00490{bottom:1070.322000px;}
.y14_c00490{bottom:1071.420000px;}
.y13_c00490{bottom:1072.428000px;}
.y12_c00490{bottom:1074.559500px;}
.y11_c00490{bottom:1077.720000px;}
.y10_c00490{bottom:1080.250500px;}
.yf_c00490{bottom:1080.904500px;}
.ye_c00490{bottom:1083.372000px;}
.yd_c00490{bottom:1086.493500px;}
.yc_c00490{bottom:1100.895000px;}
.yb_c00490{bottom:1103.199000px;}
.ya_c00490{bottom:1106.184000px;}
.y9_c00490{bottom:1107.322500px;}
.y8_c00490{bottom:1109.107500px;}
.y7_c00490{bottom:1111.464000px;}
.y6_c00490{bottom:1112.566500px;}
.y5_c00490{bottom:1114.462500px;}
.y4_c00490{bottom:1117.066500px;}
.y3_c00490{bottom:1120.053000px;}
.y2_c00490{bottom:1122.945000px;}
.y1_c00490{bottom:1174.783500px;}
.ha_c00490{height:65.989505px;}
.h13_c00490{height:71.969646px;}
.h17_c00490{height:71.974688px;}
.h5_c00490{height:71.982790px;}
.hb_c00490{height:71.988551px;}
.he_c00490{height:71.994600px;}
.h3_c00490{height:72.000000px;}
.h11_c00490{height:72.003600px;}
.hf_c00490{height:72.033004px;}
.h7_c00490{height:77.981356px;}
.h9_c00490{height:77.987597px;}
.h4_c00490{height:78.000000px;}
.h10_c00490{height:78.003900px;}
.h18_c00490{height:78.007644px;}
.hc_c00490{height:78.035755px;}
.h14_c00490{height:83.964587px;}
.h6_c00490{height:83.979922px;}
.h12_c00490{height:84.012809px;}
.h16_c00490{height:89.968359px;}
.hd_c00490{height:89.975022px;}
.h15_c00490{height:89.982178px;}
.h2_c00490{height:90.000000px;}
.h19_c00490{height:90.008820px;}
.h8_c00490{height:95.977053px;}
.h0_c00490{height:1246.320000px;}
.h1_c00490{height:1246.500000px;}
.w0_c00490{width:896.100000px;}
.w1_c00490{width:896.250000px;}
.x0_c00490{left:0.000000px;}
.xcd_c00490{left:129.399000px;}
.xc4_c00490{left:130.956000px;}
.xbf_c00490{left:134.536500px;}
.xb0_c00490{left:136.646049px;}
.x9b_c00490{left:139.998030px;}
.x93_c00490{left:142.084500px;}
.x84_c00490{left:144.185383px;}
.x7d_c00490{left:145.612324px;}
.x64_c00490{left:148.858833px;}
.x5a_c00490{left:150.624862px;}
.x4f_c00490{left:151.968027px;}
.x44_c00490{left:154.077533px;}
.x33_c00490{left:156.388500px;}
.xbc_c00490{left:157.524762px;}
.x20_c00490{left:158.893500px;}
.xf_c00490{left:160.744500px;}
.x4_c00490{left:163.189500px;}
.x9c_c00490{left:173.594562px;}
.xc0_c00490{left:177.239922px;}
.x74_c00490{left:180.055020px;}
.x6c_c00490{left:181.292750px;}
.x50_c00490{left:184.066644px;}
.x8b_c00490{left:186.602985px;}
.x85_c00490{left:187.809504px;}
.x21_c00490{left:190.984500px;}
.x19_c00490{left:192.096000px;}
.xa6_c00490{left:193.177549px;}
.x3b_c00490{left:203.187000px;}
.xa0_c00490{left:207.116139px;}
.x34_c00490{left:210.165000px;}
.xb5_c00490{left:211.399143px;}
.xd1_c00490{left:216.826863px;}
.xc1_c00490{left:219.215802px;}
.x2b_c00490{left:223.198500px;}
.xb9_c00490{left:224.303580px;}
.xa7_c00490{left:225.772921px;}
.xce_c00490{left:227.673000px;}
.x94_c00490{left:228.897101px;}
.xbd_c00490{left:234.628185px;}
.x5b_c00490{left:238.203088px;}
.xc8_c00490{left:239.600895px;}
.x45_c00490{left:241.113806px;}
.xb6_c00490{left:244.538470px;}
.xb1_c00490{left:246.095226px;}
.x5_c00490{left:248.254500px;}
.x8c_c00490{left:251.899188px;}
.x75_c00490{left:254.934000px;}
.x3c_c00490{left:256.007627px;}
.x10_c00490{left:258.307500px;}
.x7e_c00490{left:266.127264px;}
.x22_c00490{left:267.372000px;}
.x9d_c00490{left:269.877156px;}
.x51_c00490{left:272.665321px;}
.x76_c00490{left:276.752160px;}
.xa8_c00490{left:280.289850px;}
.x35_c00490{left:287.323500px;}
.x6d_c00490{left:290.668129px;}
.xd2_c00490{left:291.819063px;}
.x95_c00490{left:295.800630px;}
.xc2_c00490{left:297.299322px;}
.x65_c00490{left:302.099857px;}
.xa1_c00490{left:305.008648px;}
.x8d_c00490{left:306.911392px;}
.xcf_c00490{left:308.113500px;}
.xb7_c00490{left:309.994449px;}
.xc5_c00490{left:316.738532px;}
.x46_c00490{left:317.995833px;}
.x36_c00490{left:319.422000px;}
.xd3_c00490{left:324.789171px;}
.x5c_c00490{left:326.241529px;}
.x3d_c00490{left:328.653408px;}
.x2c_c00490{left:332.266500px;}
.x6e_c00490{left:334.257884px;}
.x6_c00490{left:336.087000px;}
.xcb_c00490{left:337.159212px;}
.xa2_c00490{left:338.233391px;}
.x8e_c00490{left:339.413359px;}
.x77_c00490{left:343.149197px;}
.xa9_c00490{left:345.994579px;}
.x52_c00490{left:349.304565px;}
.xc6_c00490{left:351.598137px;}
.x11_c00490{left:355.851000px;}
.x5d_c00490{left:358.853286px;}
.x37_c00490{left:363.193500px;}
.x23_c00490{left:365.473500px;}
.x1a_c00490{left:367.605000px;}
.x78_c00490{left:376.128185px;}
.x66_c00490{left:379.500456px;}
.x53_c00490{left:381.596547px;}
.x47_c00490{left:383.151630px;}
.x24_c00490{left:388.299000px;}
.xd4_c00490{left:390.729408px;}
.x1_c00490{left:403.920000px;}
.x86_c00490{left:407.297806px;}
.x1b_c00490{left:410.545500px;}
.xba_c00490{left:411.635561px;}
.x7_c00490{left:412.669500px;}
.x5e_c00490{left:413.822752px;}
.x48_c00490{left:415.613424px;}
.x38_c00490{left:418.510500px;}
.xc7_c00490{left:423.454209px;}
.x2_c00490{left:426.870000px;}
.x2d_c00490{left:430.294500px;}
.x12_c00490{left:434.949000px;}
.x54_c00490{left:437.055033px;}
.x7f_c00490{left:440.482593px;}
.xbe_c00490{left:443.030171px;}
.xaa_c00490{left:445.538436px;}
.xa3_c00490{left:446.832683px;}
.x3e_c00490{left:449.477463px;}
.x39_c00490{left:450.888000px;}
.x25_c00490{left:454.444500px;}
.x3_c00490{left:459.000000px;}
.x8_c00490{left:468.427500px;}
.xc9_c00490{left:469.580050px;}
.x87_c00490{left:473.212635px;}
.x2e_c00490{left:475.039500px;}
.x3f_c00490{left:476.460953px;}
.x96_c00490{left:481.335909px;}
.x49_c00490{left:482.664941px;}
.xb8_c00490{left:484.247522px;}
.x1c_c00490{left:487.962000px;}
.x9e_c00490{left:490.569270px;}
.x67_c00490{left:499.487344px;}
.x9_c00490{left:500.836500px;}
.x5f_c00490{left:501.919635px;}
.x2f_c00490{left:507.430500px;}
.xab_c00490{left:510.119290px;}
.xd0_c00490{left:512.412000px;}
.x8f_c00490{left:515.904423px;}
.xb2_c00490{left:518.273832px;}
.x68_c00490{left:522.844217px;}
.xa4_c00490{left:524.520916px;}
.x3a_c00490{left:528.124500px;}
.x1d_c00490{left:532.530000px;}
.x13_c00490{left:533.737500px;}
.xca_c00490{left:535.805691px;}
.x40_c00490{left:538.319033px;}
.x26_c00490{left:541.231500px;}
.xbb_c00490{left:542.832233px;}
.xd5_c00490{left:545.052342px;}
.xcc_c00490{left:546.495788px;}
.x4a_c00490{left:548.526590px;}
.x79_c00490{left:552.380256px;}
.x60_c00490{left:556.502430px;}
.xa5_c00490{left:557.786118px;}
.x90_c00490{left:560.713609px;}
.x27_c00490{left:563.637000px;}
.x6f_c00490{left:564.935426px;}
.x55_c00490{left:568.634223px;}
.xa_c00490{left:570.156000px;}
.x30_c00490{left:572.952000px;}
.x69_c00490{left:576.974856px;}
.x4b_c00490{left:580.633180px;}
.x80_c00490{left:584.094427px;}
.x7a_c00490{left:585.865737px;}
.x56_c00490{left:590.528383px;}
.x88_c00490{left:594.603265px;}
.x14_c00490{left:600.340500px;}
.x41_c00490{left:604.510775px;}
.x81_c00490{left:617.690943px;}
.xb_c00490{left:622.641000px;}
.x1e_c00490{left:630.837000px;}
.x15_c00490{left:631.846500px;}
.x31_c00490{left:638.793000px;}
.x70_c00490{left:643.449765px;}
.x9a_c00490{left:645.711000px;}
.x4c_c00490{left:647.384938px;}
.xc3_c00490{left:649.432644px;}
.xb3_c00490{left:651.753048px;}
.xae_c00490{left:652.774113px;}
.xc_c00490{left:656.128500px;}
.x57_c00490{left:657.213420px;}
.x82_c00490{left:661.335969px;}
.x28_c00490{left:664.570500px;}
.x16_c00490{left:666.144000px;}
.x97_c00490{left:669.126430px;}
.x32_c00490{left:673.899000px;}
.x71_c00490{left:676.391309px;}
.x58_c00490{left:678.692437px;}
.x7b_c00490{left:684.565938px;}
.x6a_c00490{left:687.929232px;}
.x98_c00490{left:691.170864px;}
.x91_c00490{left:692.299582px;}
.x4d_c00490{left:701.874003px;}
.x89_c00490{left:704.933176px;}
.x42_c00490{left:714.882792px;}
.x1f_c00490{left:720.249000px;}
.x92_c00490{left:725.879094px;}
.x72_c00490{left:731.017560px;}
.x17_c00490{left:732.051000px;}
.x4e_c00490{left:735.506125px;}
.x8a_c00490{left:737.481592px;}
.xaf_c00490{left:741.086634px;}
.xd_c00490{left:743.914500px;}
.x61_c00490{left:745.236039px;}
.x99_c00490{left:747.079899px;}
.x6b_c00490{left:753.746578px;}
.xac_c00490{left:755.386278px;}
.x59_c00490{left:756.719467px;}
.x29_c00490{left:762.696000px;}
.x18_c00490{left:764.730000px;}
.x9f_c00490{left:766.518410px;}
.xb4_c00490{left:774.516372px;}
.x62_c00490{left:777.769873px;}
.x43_c00490{left:780.149960px;}
.x2a_c00490{left:785.008500px;}
.xad_c00490{left:788.975156px;}
.x83_c00490{left:793.877377px;}
.x63_c00490{left:801.394167px;}
.x7c_c00490{left:807.300581px;}
.x73_c00490{left:809.447983px;}
.xe_c00490{left:811.689000px;}
@media print{
.v0_c00490{vertical-align:0.000000pt;}
.ls0_c00490{letter-spacing:0.000000pt;}
.ws0_c00490{word-spacing:0.000000pt;}
.fs8_c00490{font-size:58.657338pt;}
.fs11_c00490{font-size:63.973018pt;}
.fs15_c00490{font-size:63.977500pt;}
.fs3_c00490{font-size:63.984702pt;}
.fs9_c00490{font-size:63.989823pt;}
.fsc_c00490{font-size:63.995200pt;}
.fs1_c00490{font-size:64.000000pt;}
.fsf_c00490{font-size:64.003200pt;}
.fsd_c00490{font-size:64.029337pt;}
.fs5_c00490{font-size:69.316761pt;}
.fs7_c00490{font-size:69.322308pt;}
.fs2_c00490{font-size:69.333333pt;}
.fse_c00490{font-size:69.336800pt;}
.fs16_c00490{font-size:69.340128pt;}
.fsa_c00490{font-size:69.365115pt;}
.fs12_c00490{font-size:74.635188pt;}
.fs4_c00490{font-size:74.648819pt;}
.fs10_c00490{font-size:74.678052pt;}
.fs14_c00490{font-size:79.971875pt;}
.fsb_c00490{font-size:79.977797pt;}
.fs13_c00490{font-size:79.984158pt;}
.fs0_c00490{font-size:80.000000pt;}
.fs17_c00490{font-size:80.007840pt;}
.fs6_c00490{font-size:85.312936pt;}
.y0_c00490{bottom:0.000000pt;}
.y141_c00490{bottom:40.773755pt;}
.y140_c00490{bottom:42.243811pt;}
.y13f_c00490{bottom:44.017048pt;}
.y13e_c00490{bottom:44.889315pt;}
.y13d_c00490{bottom:45.487309pt;}
.y13c_c00490{bottom:46.647421pt;}
.y13b_c00490{bottom:47.527141pt;}
.y13a_c00490{bottom:49.527253pt;}
.y139_c00490{bottom:51.000379pt;}
.y138_c00490{bottom:51.850864pt;}
.y137_c00490{bottom:69.423675pt;}
.y136_c00490{bottom:70.116283pt;}
.y135_c00490{bottom:70.933491pt;}
.y134_c00490{bottom:71.336933pt;}
.y133_c00490{bottom:71.750605pt;}
.y132_c00490{bottom:72.426227pt;}
.y131_c00490{bottom:72.658664pt;}
.y130_c00490{bottom:73.659701pt;}
.y12f_c00490{bottom:74.462387pt;}
.y12e_c00490{bottom:74.882667pt;}
.y12d_c00490{bottom:89.303393pt;}
.y12c_c00490{bottom:90.387629pt;}
.y12b_c00490{bottom:91.450625pt;}
.y12a_c00490{bottom:92.101193pt;}
.y129_c00490{bottom:92.541413pt;}
.y128_c00490{bottom:93.402761pt;}
.y127_c00490{bottom:93.821165pt;}
.y126_c00490{bottom:97.458173pt;}
.y125_c00490{bottom:101.947421pt;}
.y124_c00490{bottom:103.677989pt;}
.y123_c00490{bottom:106.035401pt;}
.y122_c00490{bottom:107.197253pt;}
.y121_c00490{bottom:108.360833pt;}
.y120_c00490{bottom:110.349461pt;}
.y11f_c00490{bottom:111.502397pt;}
.y11e_c00490{bottom:114.219677pt;}
.y11d_c00490{bottom:118.104713pt;}
.y11c_c00490{bottom:121.907861pt;}
.y11b_c00490{bottom:123.706325pt;}
.y11a_c00490{bottom:125.818421pt;}
.y119_c00490{bottom:126.968021pt;}
.y118_c00490{bottom:127.592165pt;}
.y117_c00490{bottom:129.269717pt;}
.y116_c00490{bottom:130.386341pt;}
.y115_c00490{bottom:132.831749pt;}
.y114_c00490{bottom:135.283301pt;}
.y113_c00490{bottom:136.337333pt;}
.y112_c00490{bottom:190.894507pt;}
.y111_c00490{bottom:195.662427pt;}
.y110_c00490{bottom:201.525627pt;}
.y10f_c00490{bottom:203.217467pt;}
.y10e_c00490{bottom:209.712587pt;}
.y10d_c00490{bottom:213.885387pt;}
.y10c_c00490{bottom:216.128587pt;}
.y10b_c00490{bottom:218.410667pt;}
.yfd_c00490{bottom:225.359477pt;}
.yfc_c00490{bottom:228.332085pt;}
.yfb_c00490{bottom:231.620917pt;}
.yfa_c00490{bottom:233.006133pt;}
.yf9_c00490{bottom:234.889909pt;}
.yf8_c00490{bottom:239.063157pt;}
.yf7_c00490{bottom:241.858741pt;}
.yf6_c00490{bottom:243.274101pt;}
.yf5_c00490{bottom:246.489333pt;}
.yf4_c00490{bottom:248.050115pt;}
.yf3_c00490{bottom:249.816899pt;}
.yf2_c00490{bottom:254.501499pt;}
.yf1_c00490{bottom:258.613936pt;}
.yf0_c00490{bottom:261.516955pt;}
.yef_c00490{bottom:267.303040pt;}
.yee_c00490{bottom:268.988925pt;}
.yed_c00490{bottom:275.822717pt;}
.yec_c00490{bottom:280.289573pt;}
.yea_c00490{bottom:281.337120pt;}
.yeb_c00490{bottom:281.575283pt;}
.ye9_c00490{bottom:282.601589pt;}
.ye8_c00490{bottom:286.387147pt;}
.ye7_c00490{bottom:287.635659pt;}
.ye6_c00490{bottom:292.632523pt;}
.ye5_c00490{bottom:294.516000pt;}
.y10a_c00490{bottom:297.237648pt;}
.y109_c00490{bottom:298.179129pt;}
.y108_c00490{bottom:299.788365pt;}
.y107_c00490{bottom:302.382585pt;}
.y106_c00490{bottom:303.356961pt;}
.y105_c00490{bottom:305.621520pt;}
.y104_c00490{bottom:306.259979pt;}
.ye4_c00490{bottom:316.845579pt;}
.ye3_c00490{bottom:319.466667pt;}
.y103_c00490{bottom:323.735027pt;}
.y102_c00490{bottom:324.715315pt;}
.y101_c00490{bottom:327.704051pt;}
.y100_c00490{bottom:330.057213pt;}
.yff_c00490{bottom:333.371307pt;}
.yfe_c00490{bottom:336.013333pt;}
.ye2_c00490{bottom:343.085055pt;}
.ye1_c00490{bottom:344.370181pt;}
.ye0_c00490{bottom:345.274385pt;}
.ydf_c00490{bottom:347.378060pt;}
.yde_c00490{bottom:348.630048pt;}
.ydd_c00490{bottom:351.224611pt;}
.ydc_c00490{bottom:353.754215pt;}
.ydb_c00490{bottom:354.858340pt;}
.yda_c00490{bottom:356.225109pt;}
.yd9_c00490{bottom:358.723811pt;}
.yd8_c00490{bottom:360.033705pt;}
.yd7_c00490{bottom:362.547600pt;}
.yd6_c00490{bottom:363.796951pt;}
.yd5_c00490{bottom:364.633444pt;}
.yd4_c00490{bottom:365.880559pt;}
.yd3_c00490{bottom:367.942667pt;}
.yca_c00490{bottom:378.701972pt;}
.yc9_c00490{bottom:381.633020pt;}
.yc8_c00490{bottom:385.185428pt;}
.yc7_c00490{bottom:388.251728pt;}
.yc6_c00490{bottom:389.508092pt;}
.yc5_c00490{bottom:392.500880pt;}
.yc4_c00490{bottom:393.850916pt;}
.yc3_c00490{bottom:395.560916pt;}
.yc2_c00490{bottom:398.150828pt;}
.yc1_c00490{bottom:400.731920pt;}
.yc0_c00490{bottom:401.920712pt;}
.ybf_c00490{bottom:403.235720pt;}
.ybe_c00490{bottom:409.693400pt;}
.ybd_c00490{bottom:411.800336pt;}
.ybc_c00490{bottom:414.512000pt;}
.yd2_c00490{bottom:416.660880pt;}
.yd1_c00490{bottom:418.856875pt;}
.yd0_c00490{bottom:419.981624pt;}
.ycf_c00490{bottom:422.608387pt;}
.yce_c00490{bottom:426.280301pt;}
.ycd_c00490{bottom:427.403683pt;}
.ycc_c00490{bottom:430.713584pt;}
.ycb_c00490{bottom:432.972000pt;}
.ybb_c00490{bottom:441.847420pt;}
.yba_c00490{bottom:443.066541pt;}
.yb9_c00490{bottom:445.106155pt;}
.yb8_c00490{bottom:445.910356pt;}
.yb7_c00490{bottom:449.115736pt;}
.yb6_c00490{bottom:450.330265pt;}
.yb5_c00490{bottom:452.761128pt;}
.yb4_c00490{bottom:453.944169pt;}
.yb3_c00490{bottom:457.560479pt;}
.yb2_c00490{bottom:459.529627pt;}
.yb1_c00490{bottom:461.970329pt;}
.yb0_c00490{bottom:465.137333pt;}
.yaf_c00490{bottom:476.914429pt;}
.yae_c00490{bottom:478.050047pt;}
.yad_c00490{bottom:479.576727pt;}
.yac_c00490{bottom:482.499519pt;}
.yab_c00490{bottom:484.014117pt;}
.yaa_c00490{bottom:486.277917pt;}
.ya9_c00490{bottom:489.981687pt;}
.ya8_c00490{bottom:491.080663pt;}
.ya7_c00490{bottom:492.940792pt;}
.ya6_c00490{bottom:495.148072pt;}
.ya5_c00490{bottom:496.596932pt;}
.ya4_c00490{bottom:506.099359pt;}
.ya3_c00490{bottom:507.460207pt;}
.ya2_c00490{bottom:512.073545pt;}
.ya1_c00490{bottom:517.149096pt;}
.ya0_c00490{bottom:519.904636pt;}
.y9f_c00490{bottom:523.165893pt;}
.y9e_c00490{bottom:525.396672pt;}
.y9d_c00490{bottom:529.081904pt;}
.y9c_c00490{bottom:530.905511pt;}
.y9b_c00490{bottom:535.961097pt;}
.y9a_c00490{bottom:537.157733pt;}
.y99_c00490{bottom:540.913744pt;}
.y98_c00490{bottom:542.544648pt;}
.y97_c00490{bottom:543.799633pt;}
.y96_c00490{bottom:547.884311pt;}
.y95_c00490{bottom:549.166813pt;}
.y94_c00490{bottom:549.969545pt;}
.y93_c00490{bottom:555.682229pt;}
.y92_c00490{bottom:560.185465pt;}
.y91_c00490{bottom:569.306489pt;}
.y90_c00490{bottom:573.783963pt;}
.y8f_c00490{bottom:577.384637pt;}
.y8e_c00490{bottom:578.606219pt;}
.y8d_c00490{bottom:581.401271pt;}
.y8c_c00490{bottom:583.056249pt;}
.y8b_c00490{bottom:585.036057pt;}
.y8a_c00490{bottom:586.239161pt;}
.y89_c00490{bottom:588.661387pt;}
.y88_c00490{bottom:589.457333pt;}
.y87_c00490{bottom:618.047851pt;}
.y86_c00490{bottom:619.684427pt;}
.y85_c00490{bottom:620.451535pt;}
.y84_c00490{bottom:634.042535pt;}
.y83_c00490{bottom:636.275923pt;}
.y82_c00490{bottom:637.831351pt;}
.y81_c00490{bottom:638.769027pt;}
.y80_c00490{bottom:641.005327pt;}
.y7f_c00490{bottom:641.922071pt;}
.y7e_c00490{bottom:644.727343pt;}
.y7d_c00490{bottom:646.644467pt;}
.y7c_c00490{bottom:647.576071pt;}
.y7b_c00490{bottom:648.817887pt;}
.y7a_c00490{bottom:651.933007pt;}
.y79_c00490{bottom:652.847047pt;}
.y78_c00490{bottom:664.186183pt;}
.y77_c00490{bottom:666.294043pt;}
.y76_c00490{bottom:667.343975pt;}
.y75_c00490{bottom:669.849491pt;}
.y74_c00490{bottom:671.583823pt;}
.y73_c00490{bottom:672.331639pt;}
.y72_c00490{bottom:675.143607pt;}
.y71_c00490{bottom:676.176515pt;}
.y70_c00490{bottom:678.655647pt;}
.y6f_c00490{bottom:680.063123pt;}
.y6e_c00490{bottom:683.565107pt;}
.y6d_c00490{bottom:696.938715pt;}
.y6c_c00490{bottom:697.611767pt;}
.y6b_c00490{bottom:698.537963pt;}
.y6a_c00490{bottom:700.768627pt;}
.y69_c00490{bottom:701.777867pt;}
.y68_c00490{bottom:703.913331pt;}
.y67_c00490{bottom:705.467251pt;}
.y66_c00490{bottom:707.976047pt;}
.y65_c00490{bottom:709.542051pt;}
.y64_c00490{bottom:710.470951pt;}
.y63_c00490{bottom:712.977719pt;}
.y62_c00490{bottom:715.472519pt;}
.y61_c00490{bottom:728.732783pt;}
.y60_c00490{bottom:731.232319pt;}
.y5f_c00490{bottom:731.920307pt;}
.y5e_c00490{bottom:734.056943pt;}
.y5d_c00490{bottom:734.758003pt;}
.y5c_c00490{bottom:738.973131pt;}
.y5b_c00490{bottom:740.749539pt;}
.y5a_c00490{bottom:741.783403pt;}
.y59_c00490{bottom:744.238783pt;}
.y58_c00490{bottom:747.077155pt;}
.y57_c00490{bottom:748.105643pt;}
.y56_c00490{bottom:761.098767pt;}
.y55_c00490{bottom:762.236499pt;}
.y54_c00490{bottom:764.079319pt;}
.y53_c00490{bottom:766.336999pt;}
.y52_c00490{bottom:767.423127pt;}
.y51_c00490{bottom:769.649919pt;}
.y50_c00490{bottom:770.773195pt;}
.y4f_c00490{bottom:771.916667pt;}
.y4e_c00490{bottom:773.013787pt;}
.y4d_c00490{bottom:775.217419pt;}
.y4c_c00490{bottom:777.817295pt;}
.y4b_c00490{bottom:780.760199pt;}
.y4a_c00490{bottom:792.161263pt;}
.y49_c00490{bottom:794.426123pt;}
.y48_c00490{bottom:798.256183pt;}
.y47_c00490{bottom:799.430759pt;}
.y46_c00490{bottom:800.553127pt;}
.y45_c00490{bottom:802.699687pt;}
.y44_c00490{bottom:803.636051pt;}
.y43_c00490{bottom:804.741155pt;}
.y42_c00490{bottom:807.828811pt;}
.y41_c00490{bottom:810.349719pt;}
.y40_c00490{bottom:812.182667pt;}
.y3f_c00490{bottom:831.718667pt;}
.y3e_c00490{bottom:832.406667pt;}
.y3d_c00490{bottom:834.190667pt;}
.y3c_c00490{bottom:835.226667pt;}
.y3b_c00490{bottom:836.997333pt;}
.y3a_c00490{bottom:838.397333pt;}
.y39_c00490{bottom:839.424000pt;}
.y38_c00490{bottom:841.893333pt;}
.y37_c00490{bottom:843.614667pt;}
.y36_c00490{bottom:857.325333pt;}
.y35_c00490{bottom:859.913333pt;}
.y34_c00490{bottom:860.942667pt;}
.y33_c00490{bottom:862.874667pt;}
.y32_c00490{bottom:864.796000pt;}
.y31_c00490{bottom:865.746667pt;}
.y30_c00490{bottom:867.058667pt;}
.y2f_c00490{bottom:869.934667pt;}
.y2e_c00490{bottom:873.133333pt;}
.y2d_c00490{bottom:875.048000pt;}
.y2c_c00490{bottom:885.877333pt;}
.y2b_c00490{bottom:886.492000pt;}
.y2a_c00490{bottom:889.196000pt;}
.y29_c00490{bottom:891.977333pt;}
.y28_c00490{bottom:892.594667pt;}
.y27_c00490{bottom:894.986667pt;}
.y26_c00490{bottom:896.809333pt;}
.y25_c00490{bottom:897.438667pt;}
.y24_c00490{bottom:900.141333pt;}
.y23_c00490{bottom:902.246667pt;}
.y22_c00490{bottom:903.130667pt;}
.y21_c00490{bottom:918.504000pt;}
.y20_c00490{bottom:919.654667pt;}
.y1f_c00490{bottom:921.960000pt;}
.y1e_c00490{bottom:924.494667pt;}
.y1d_c00490{bottom:925.644000pt;}
.y1c_c00490{bottom:927.640000pt;}
.y1b_c00490{bottom:928.746667pt;}
.y1a_c00490{bottom:931.838667pt;}
.y19_c00490{bottom:933.270667pt;}
.y18_c00490{bottom:934.090667pt;}
.y17_c00490{bottom:948.593333pt;}
.y16_c00490{bottom:949.522667pt;}
.y15_c00490{bottom:951.397333pt;}
.y14_c00490{bottom:952.373333pt;}
.y13_c00490{bottom:953.269333pt;}
.y12_c00490{bottom:955.164000pt;}
.y11_c00490{bottom:957.973333pt;}
.y10_c00490{bottom:960.222667pt;}
.yf_c00490{bottom:960.804000pt;}
.ye_c00490{bottom:962.997333pt;}
.yd_c00490{bottom:965.772000pt;}
.yc_c00490{bottom:978.573333pt;}
.yb_c00490{bottom:980.621333pt;}
.ya_c00490{bottom:983.274667pt;}
.y9_c00490{bottom:984.286667pt;}
.y8_c00490{bottom:985.873333pt;}
.y7_c00490{bottom:987.968000pt;}
.y6_c00490{bottom:988.948000pt;}
.y5_c00490{bottom:990.633333pt;}
.y4_c00490{bottom:992.948000pt;}
.y3_c00490{bottom:995.602667pt;}
.y2_c00490{bottom:998.173333pt;}
.y1_c00490{bottom:1044.252000pt;}
.ha_c00490{height:58.657338pt;}
.h13_c00490{height:63.973018pt;}
.h17_c00490{height:63.977500pt;}
.h5_c00490{height:63.984702pt;}
.hb_c00490{height:63.989823pt;}
.he_c00490{height:63.995200pt;}
.h3_c00490{height:64.000000pt;}
.h11_c00490{height:64.003200pt;}
.hf_c00490{height:64.029337pt;}
.h7_c00490{height:69.316761pt;}
.h9_c00490{height:69.322308pt;}
.h4_c00490{height:69.333333pt;}
.h10_c00490{height:69.336800pt;}
.h18_c00490{height:69.340128pt;}
.hc_c00490{height:69.365115pt;}
.h14_c00490{height:74.635188pt;}
.h6_c00490{height:74.648819pt;}
.h12_c00490{height:74.678052pt;}
.h16_c00490{height:79.971875pt;}
.hd_c00490{height:79.977797pt;}
.h15_c00490{height:79.984158pt;}
.h2_c00490{height:80.000000pt;}
.h19_c00490{height:80.007840pt;}
.h8_c00490{height:85.312936pt;}
.h0_c00490{height:1107.840000pt;}
.h1_c00490{height:1108.000000pt;}
.w0_c00490{width:796.533333pt;}
.w1_c00490{width:796.666667pt;}
.x0_c00490{left:0.000000pt;}
.xcd_c00490{left:115.021333pt;}
.xc4_c00490{left:116.405333pt;}
.xbf_c00490{left:119.588000pt;}
.xb0_c00490{left:121.463155pt;}
.x9b_c00490{left:124.442693pt;}
.x93_c00490{left:126.297333pt;}
.x84_c00490{left:128.164785pt;}
.x7d_c00490{left:129.433177pt;}
.x64_c00490{left:132.318963pt;}
.x5a_c00490{left:133.888767pt;}
.x4f_c00490{left:135.082691pt;}
.x44_c00490{left:136.957807pt;}
.x33_c00490{left:139.012000pt;}
.xbc_c00490{left:140.022011pt;}
.x20_c00490{left:141.238667pt;}
.xf_c00490{left:142.884000pt;}
.x4_c00490{left:145.057333pt;}
.x9c_c00490{left:154.306277pt;}
.xc0_c00490{left:157.546597pt;}
.x74_c00490{left:160.048907pt;}
.x6c_c00490{left:161.149111pt;}
.x50_c00490{left:163.614795pt;}
.x8b_c00490{left:165.869320pt;}
.x85_c00490{left:166.941781pt;}
.x21_c00490{left:169.764000pt;}
.x19_c00490{left:170.752000pt;}
.xa6_c00490{left:171.713377pt;}
.x3b_c00490{left:180.610667pt;}
.xa0_c00490{left:184.103235pt;}
.x34_c00490{left:186.813333pt;}
.xb5_c00490{left:187.910349pt;}
.xd1_c00490{left:192.734989pt;}
.xc1_c00490{left:194.858491pt;}
.x2b_c00490{left:198.398667pt;}
.xb9_c00490{left:199.380960pt;}
.xa7_c00490{left:200.687041pt;}
.xce_c00490{left:202.376000pt;}
.x94_c00490{left:203.464089pt;}
.xbd_c00490{left:208.558387pt;}
.x5b_c00490{left:211.736079pt;}
.xc8_c00490{left:212.978573pt;}
.x45_c00490{left:214.323383pt;}
.xb6_c00490{left:217.367529pt;}
.xb1_c00490{left:218.751312pt;}
.x5_c00490{left:220.670667pt;}
.x8c_c00490{left:223.910389pt;}
.x75_c00490{left:226.608000pt;}
.x3c_c00490{left:227.562335pt;}
.x10_c00490{left:229.606667pt;}
.x7e_c00490{left:236.557568pt;}
.x22_c00490{left:237.664000pt;}
.x9d_c00490{left:239.890805pt;}
.x51_c00490{left:242.369175pt;}
.x76_c00490{left:246.001920pt;}
.xa8_c00490{left:249.146533pt;}
.x35_c00490{left:255.398667pt;}
.x6d_c00490{left:258.371671pt;}
.xd2_c00490{left:259.394723pt;}
.x95_c00490{left:262.933893pt;}
.xc2_c00490{left:264.266064pt;}
.x65_c00490{left:268.533207pt;}
.xa1_c00490{left:271.118799pt;}
.x8d_c00490{left:272.810127pt;}
.xcf_c00490{left:273.878667pt;}
.xb7_c00490{left:275.550621pt;}
.xc5_c00490{left:281.545361pt;}
.x46_c00490{left:282.662963pt;}
.x36_c00490{left:283.930667pt;}
.xd3_c00490{left:288.701485pt;}
.x5c_c00490{left:289.992471pt;}
.x3d_c00490{left:292.136363pt;}
.x2c_c00490{left:295.348000pt;}
.x6e_c00490{left:297.118119pt;}
.x6_c00490{left:298.744000pt;}
.xcb_c00490{left:299.697077pt;}
.xa2_c00490{left:300.651903pt;}
.x8e_c00490{left:301.700764pt;}
.x77_c00490{left:305.021508pt;}
.xa9_c00490{left:307.550737pt;}
.x52_c00490{left:310.492947pt;}
.xc6_c00490{left:312.531677pt;}
.x11_c00490{left:316.312000pt;}
.x5d_c00490{left:318.980699pt;}
.x37_c00490{left:322.838667pt;}
.x23_c00490{left:324.865333pt;}
.x1a_c00490{left:326.760000pt;}
.x78_c00490{left:334.336164pt;}
.x66_c00490{left:337.333739pt;}
.x53_c00490{left:339.196931pt;}
.x47_c00490{left:340.579227pt;}
.x24_c00490{left:345.154667pt;}
.xd4_c00490{left:347.315029pt;}
.x1_c00490{left:359.040000pt;}
.x86_c00490{left:362.042495pt;}
.x1b_c00490{left:364.929333pt;}
.xba_c00490{left:365.898276pt;}
.x7_c00490{left:366.817333pt;}
.x5e_c00490{left:367.842447pt;}
.x48_c00490{left:369.434155pt;}
.x38_c00490{left:372.009333pt;}
.xc7_c00490{left:376.403741pt;}
.x2_c00490{left:379.440000pt;}
.x2d_c00490{left:382.484000pt;}
.x12_c00490{left:386.621333pt;}
.x54_c00490{left:388.493363pt;}
.x7f_c00490{left:391.540083pt;}
.xbe_c00490{left:393.804596pt;}
.xaa_c00490{left:396.034165pt;}
.xa3_c00490{left:397.184607pt;}
.x3e_c00490{left:399.535523pt;}
.x39_c00490{left:400.789333pt;}
.x25_c00490{left:403.950667pt;}
.x3_c00490{left:408.000000pt;}
.x8_c00490{left:416.380000pt;}
.xc9_c00490{left:417.404489pt;}
.x87_c00490{left:420.633453pt;}
.x2e_c00490{left:422.257333pt;}
.x3f_c00490{left:423.520847pt;}
.x96_c00490{left:427.854141pt;}
.x49_c00490{left:429.035503pt;}
.xb8_c00490{left:430.442241pt;}
.x1c_c00490{left:433.744000pt;}
.x9e_c00490{left:436.061573pt;}
.x67_c00490{left:443.988751pt;}
.x9_c00490{left:445.188000pt;}
.x5f_c00490{left:446.150787pt;}
.x2f_c00490{left:451.049333pt;}
.xab_c00490{left:453.439369pt;}
.xd0_c00490{left:455.477333pt;}
.x8f_c00490{left:458.581709pt;}
.xb2_c00490{left:460.687851pt;}
.x68_c00490{left:464.750415pt;}
.xa4_c00490{left:466.240815pt;}
.x3a_c00490{left:469.444000pt;}
.x1d_c00490{left:473.360000pt;}
.x13_c00490{left:474.433333pt;}
.xca_c00490{left:476.271725pt;}
.x40_c00490{left:478.505807pt;}
.x26_c00490{left:481.094667pt;}
.xbb_c00490{left:482.517540pt;}
.xd5_c00490{left:484.490971pt;}
.xcc_c00490{left:485.774033pt;}
.x4a_c00490{left:487.579191pt;}
.x79_c00490{left:491.004672pt;}
.x60_c00490{left:494.668827pt;}
.xa5_c00490{left:495.809883pt;}
.x90_c00490{left:498.412097pt;}
.x27_c00490{left:501.010667pt;}
.x6f_c00490{left:502.164823pt;}
.x55_c00490{left:505.452643pt;}
.xa_c00490{left:506.805333pt;}
.x30_c00490{left:509.290667pt;}
.x69_c00490{left:512.866539pt;}
.x4b_c00490{left:516.118383pt;}
.x80_c00490{left:519.195047pt;}
.x7a_c00490{left:520.769544pt;}
.x56_c00490{left:524.914119pt;}
.x88_c00490{left:528.536236pt;}
.x14_c00490{left:533.636000pt;}
.x41_c00490{left:537.342911pt;}
.x81_c00490{left:549.058616pt;}
.xb_c00490{left:553.458667pt;}
.x1e_c00490{left:560.744000pt;}
.x15_c00490{left:561.641333pt;}
.x31_c00490{left:567.816000pt;}
.x70_c00490{left:571.955347pt;}
.x9a_c00490{left:573.965333pt;}
.x4c_c00490{left:575.453279pt;}
.xc3_c00490{left:577.273461pt;}
.xb3_c00490{left:579.336043pt;}
.xae_c00490{left:580.243656pt;}
.xc_c00490{left:583.225333pt;}
.x57_c00490{left:584.189707pt;}
.x82_c00490{left:587.854195pt;}
.x28_c00490{left:590.729333pt;}
.x16_c00490{left:592.128000pt;}
.x97_c00490{left:594.779049pt;}
.x32_c00490{left:599.021333pt;}
.x71_c00490{left:601.236719pt;}
.x58_c00490{left:603.282167pt;}
.x7b_c00490{left:608.503056pt;}
.x6a_c00490{left:611.492651pt;}
.x98_c00490{left:614.374101pt;}
.x91_c00490{left:615.377407pt;}
.x4d_c00490{left:623.888003pt;}
.x89_c00490{left:626.607268pt;}
.x42_c00490{left:635.451371pt;}
.x1f_c00490{left:640.221333pt;}
.x92_c00490{left:645.225861pt;}
.x72_c00490{left:649.793387pt;}
.x17_c00490{left:650.712000pt;}
.x4e_c00490{left:653.783223pt;}
.x8a_c00490{left:655.539193pt;}
.xaf_c00490{left:658.743675pt;}
.xd_c00490{left:661.257333pt;}
.x61_c00490{left:662.432035pt;}
.x99_c00490{left:664.071021pt;}
.x6b_c00490{left:669.996959pt;}
.xac_c00490{left:671.454469pt;}
.x59_c00490{left:672.639527pt;}
.x29_c00490{left:677.952000pt;}
.x18_c00490{left:679.760000pt;}
.x9f_c00490{left:681.349697pt;}
.xb4_c00490{left:688.458997pt;}
.x62_c00490{left:691.350999pt;}
.x43_c00490{left:693.466631pt;}
.x2a_c00490{left:697.785333pt;}
.xad_c00490{left:701.311249pt;}
.x83_c00490{left:705.668780pt;}
.x63_c00490{left:712.350371pt;}
.x7c_c00490{left:717.600516pt;}
.x73_c00490{left:719.509319pt;}
.xe_c00490{left:721.501333pt;}
}





/* 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_c00491 {
    display:none;
  }
  .loading-indicator_c00491.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00491 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_c00491 { 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_c00491" -> "#page-container .classname_c00491")
 */
.pf_c00491 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00491 { /* 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_c00491.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00491 { /* 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_c00491 { /* 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_c00491 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00491 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00491 {overflow:visible;}
  }
}
.c_c00491 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00491 { /* 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_c00491:after { /* webkit #35443 */
  content: '';
}
.t_c00491:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00491 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 */
}
.__c00491 { /* 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_c00491 { /* info for Javascript */
  display:none;
}
.l_c00491 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00491 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00491 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00491: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_c00491 {
    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_c00491.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00491.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_c00491 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00491{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00491;src:url('chunks/assets/font_b11a17f404e7258299fdf971.woff2')format("woff");}.ff1_c00491{font-family:ff1_c00491;line-height:1.000000;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;}
.m1d_c00491{transform:matrix(0.031820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.031820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.031820,0.000000,0.000000,0.250000,0,0);}
.m1e_c00491{transform:matrix(0.144265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144265,0.000000,0.000000,0.250000,0,0);}
.m12_c00491{transform:matrix(0.154435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154435,0.000000,0.000000,0.250000,0,0);}
.m19_c00491{transform:matrix(0.207975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207975,0.000000,0.000000,0.250000,0,0);}
.m2_c00491{transform:matrix(0.223803,-0.001790,0.002000,0.249992,0,0);-ms-transform:matrix(0.223803,-0.001790,0.002000,0.249992,0,0);-webkit-transform:matrix(0.223803,-0.001790,0.002000,0.249992,0,0);}
.m8_c00491{transform:matrix(0.224923,-0.001799,0.002000,0.249992,0,0);-ms-transform:matrix(0.224923,-0.001799,0.002000,0.249992,0,0);-webkit-transform:matrix(0.224923,-0.001799,0.002000,0.249992,0,0);}
.m5_c00491{transform:matrix(0.239702,-0.001918,0.002000,0.249992,0,0);-ms-transform:matrix(0.239702,-0.001918,0.002000,0.249992,0,0);-webkit-transform:matrix(0.239702,-0.001918,0.002000,0.249992,0,0);}
.m3_c00491{transform:matrix(0.240127,-0.001921,0.002000,0.249992,0,0);-ms-transform:matrix(0.240127,-0.001921,0.002000,0.249992,0,0);-webkit-transform:matrix(0.240127,-0.001921,0.002000,0.249992,0,0);}
.m10_c00491{transform:matrix(0.248432,-0.001987,0.002000,0.249992,0,0);-ms-transform:matrix(0.248432,-0.001987,0.002000,0.249992,0,0);-webkit-transform:matrix(0.248432,-0.001987,0.002000,0.249992,0,0);}
.mb_c00491{transform:matrix(0.250727,-0.002006,0.002000,0.249992,0,0);-ms-transform:matrix(0.250727,-0.002006,0.002000,0.249992,0,0);-webkit-transform:matrix(0.250727,-0.002006,0.002000,0.249992,0,0);}
.md_c00491{transform:matrix(0.256162,-0.002049,0.002000,0.249992,0,0);-ms-transform:matrix(0.256162,-0.002049,0.002000,0.249992,0,0);-webkit-transform:matrix(0.256162,-0.002049,0.002000,0.249992,0,0);}
.m4_c00491{transform:matrix(0.264002,-0.002112,0.002000,0.249992,0,0);-ms-transform:matrix(0.264002,-0.002112,0.002000,0.249992,0,0);-webkit-transform:matrix(0.264002,-0.002112,0.002000,0.249992,0,0);}
.m0_c00491{transform:matrix(0.266621,-0.002133,0.002000,0.249992,0,0);-ms-transform:matrix(0.266621,-0.002133,0.002000,0.249992,0,0);-webkit-transform:matrix(0.266621,-0.002133,0.002000,0.249992,0,0);}
.m11_c00491{transform:matrix(0.268176,-0.002145,0.002000,0.249992,0,0);-ms-transform:matrix(0.268176,-0.002145,0.002000,0.249992,0,0);-webkit-transform:matrix(0.268176,-0.002145,0.002000,0.249992,0,0);}
.m1b_c00491{transform:matrix(0.268450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268450,0.000000,0.000000,0.250000,0,0);}
.m17_c00491{transform:matrix(0.268740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268740,0.000000,0.000000,0.250000,0,0);}
.me_c00491{transform:matrix(0.278556,-0.002228,0.002000,0.249992,0,0);-ms-transform:matrix(0.278556,-0.002228,0.002000,0.249992,0,0);-webkit-transform:matrix(0.278556,-0.002228,0.002000,0.249992,0,0);}
.m16_c00491{transform:matrix(0.296735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296735,0.000000,0.000000,0.250000,0,0);}
.mf_c00491{transform:matrix(0.301400,-0.002411,0.002000,0.249992,0,0);-ms-transform:matrix(0.301400,-0.002411,0.002000,0.249992,0,0);-webkit-transform:matrix(0.301400,-0.002411,0.002000,0.249992,0,0);}
.m9_c00491{transform:matrix(0.310215,-0.002482,0.002000,0.249992,0,0);-ms-transform:matrix(0.310215,-0.002482,0.002000,0.249992,0,0);-webkit-transform:matrix(0.310215,-0.002482,0.002000,0.249992,0,0);}
.m15_c00491{transform:matrix(0.338110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338110,0.000000,0.000000,0.250000,0,0);}
.m1_c00491{transform:matrix(0.360638,-0.002885,0.002000,0.249992,0,0);-ms-transform:matrix(0.360638,-0.002885,0.002000,0.249992,0,0);-webkit-transform:matrix(0.360638,-0.002885,0.002000,0.249992,0,0);}
.ma_c00491{transform:matrix(0.364323,-0.002915,0.002000,0.249992,0,0);-ms-transform:matrix(0.364323,-0.002915,0.002000,0.249992,0,0);-webkit-transform:matrix(0.364323,-0.002915,0.002000,0.249992,0,0);}
.mc_c00491{transform:matrix(0.385988,-0.003088,0.002000,0.249992,0,0);-ms-transform:matrix(0.385988,-0.003088,0.002000,0.249992,0,0);-webkit-transform:matrix(0.385988,-0.003088,0.002000,0.249992,0,0);}
.m7_c00491{transform:matrix(0.433986,-0.003472,0.002000,0.249992,0,0);-ms-transform:matrix(0.433986,-0.003472,0.002000,0.249992,0,0);-webkit-transform:matrix(0.433986,-0.003472,0.002000,0.249992,0,0);}
.m6_c00491{transform:matrix(0.438026,-0.003504,0.002000,0.249992,0,0);-ms-transform:matrix(0.438026,-0.003504,0.002000,0.249992,0,0);-webkit-transform:matrix(0.438026,-0.003504,0.002000,0.249992,0,0);}
.m1c_c00491{transform:matrix(0.473170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.473170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.473170,0.000000,0.000000,0.250000,0,0);}
.m1a_c00491{transform:matrix(0.511110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511110,0.000000,0.000000,0.250000,0,0);}
.m13_c00491{transform:matrix(0.512470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512470,0.000000,0.000000,0.250000,0,0);}
.m18_c00491{transform:matrix(0.586870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.586870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.586870,0.000000,0.000000,0.250000,0,0);}
.m14_c00491{transform:matrix(0.675185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.675185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.675185,0.000000,0.000000,0.250000,0,0);}
.v0_c00491{vertical-align:0.000000px;}
.ls0_c00491{letter-spacing:0.000000px;}
.sc__c00491{text-shadow:none;}
.sc0_c00491{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__c00491{-webkit-text-stroke:0px transparent;}
.sc0_c00491{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00491{word-spacing:0.000000px;}
.fc0_c00491{color:transparent;}
.fs2_c00491{font-size:18.000000px;}
.fs4_c00491{font-size:24.000000px;}
.fs3_c00491{font-size:84.000000px;}
.fs0_c00491{font-size:90.002880px;}
.fs1_c00491{font-size:96.003072px;}
.y0_c00491{bottom:0.000000px;}
.y15_c00491{bottom:791.946000px;}
.y14_c00491{bottom:799.752000px;}
.y13_c00491{bottom:815.670000px;}
.y11_c00491{bottom:943.566576px;}
.yf_c00491{bottom:943.566660px;}
.yd_c00491{bottom:943.566684px;}
.yb_c00491{bottom:943.566816px;}
.ye_c00491{bottom:943.566912px;}
.yc_c00491{bottom:943.566936px;}
.y10_c00491{bottom:943.567068px;}
.y12_c00491{bottom:943.567164px;}
.ya_c00491{bottom:943.567200px;}
.y1_c00491{bottom:976.777500px;}
.y2_c00491{bottom:977.582856px;}
.y3_c00491{bottom:977.928336px;}
.y4_c00491{bottom:978.361068px;}
.y5_c00491{bottom:978.911628px;}
.y6_c00491{bottom:979.168128px;}
.y7_c00491{bottom:979.544736px;}
.y8_c00491{bottom:980.307432px;}
.y9_c00491{bottom:981.200628px;}
.h4_c00491{height:18.000000px;}
.h6_c00491{height:24.000000px;}
.h5_c00491{height:84.000000px;}
.h2_c00491{height:90.002880px;}
.h3_c00491{height:96.003072px;}
.h0_c00491{height:1246.320000px;}
.h1_c00491{height:1246.500000px;}
.w0_c00491{width:896.100000px;}
.w1_c00491{width:896.250000px;}
.x0_c00491{left:0.000000px;}
.x13_c00491{left:100.170000px;}
.x1b_c00491{left:101.520000px;}
.x12_c00491{left:108.000000px;}
.x1_c00491{left:122.805000px;}
.x1c_c00491{left:125.010000px;}
.x14_c00491{left:147.420000px;}
.x2_c00491{left:223.474500px;}
.x15_c00491{left:248.940000px;}
.x3_c00491{left:266.659500px;}
.xa_c00491{left:284.856036px;}
.x4_c00491{left:320.751000px;}
.x16_c00491{left:331.560000px;}
.xb_c00491{left:366.938292px;}
.x17_c00491{left:387.450000px;}
.x5_c00491{left:389.571000px;}
.x1d_c00491{left:415.800000px;}
.x6_c00491{left:421.633500px;}
.xc_c00491{left:446.051856px;}
.x7_c00491{left:468.709500px;}
.x18_c00491{left:474.930000px;}
.xd_c00491{left:476.832324px;}
.x19_c00491{left:528.120000px;}
.xe_c00491{left:533.804472px;}
.x8_c00491{left:564.046500px;}
.x1a_c00491{left:567.270000px;}
.xf_c00491{left:577.545768px;}
.x10_c00491{left:617.236812px;}
.x9_c00491{left:675.696000px;}
.x11_c00491{left:687.439800px;}
@media print{
.v0_c00491{vertical-align:0.000000pt;}
.ls0_c00491{letter-spacing:0.000000pt;}
.ws0_c00491{word-spacing:0.000000pt;}
.fs2_c00491{font-size:16.000000pt;}
.fs4_c00491{font-size:21.333333pt;}
.fs3_c00491{font-size:74.666667pt;}
.fs0_c00491{font-size:80.002560pt;}
.fs1_c00491{font-size:85.336064pt;}
.y0_c00491{bottom:0.000000pt;}
.y15_c00491{bottom:703.952000pt;}
.y14_c00491{bottom:710.890667pt;}
.y13_c00491{bottom:725.040000pt;}
.y11_c00491{bottom:838.725845pt;}
.yf_c00491{bottom:838.725920pt;}
.yd_c00491{bottom:838.725941pt;}
.yb_c00491{bottom:838.726059pt;}
.ye_c00491{bottom:838.726144pt;}
.yc_c00491{bottom:838.726165pt;}
.y10_c00491{bottom:838.726283pt;}
.y12_c00491{bottom:838.726368pt;}
.ya_c00491{bottom:838.726400pt;}
.y1_c00491{bottom:868.246667pt;}
.y2_c00491{bottom:868.962539pt;}
.y3_c00491{bottom:869.269632pt;}
.y4_c00491{bottom:869.654283pt;}
.y5_c00491{bottom:870.143669pt;}
.y6_c00491{bottom:870.371669pt;}
.y7_c00491{bottom:870.706432pt;}
.y8_c00491{bottom:871.384384pt;}
.y9_c00491{bottom:872.178336pt;}
.h4_c00491{height:16.000000pt;}
.h6_c00491{height:21.333333pt;}
.h5_c00491{height:74.666667pt;}
.h2_c00491{height:80.002560pt;}
.h3_c00491{height:85.336064pt;}
.h0_c00491{height:1107.840000pt;}
.h1_c00491{height:1108.000000pt;}
.w0_c00491{width:796.533333pt;}
.w1_c00491{width:796.666667pt;}
.x0_c00491{left:0.000000pt;}
.x13_c00491{left:89.040000pt;}
.x1b_c00491{left:90.240000pt;}
.x12_c00491{left:96.000000pt;}
.x1_c00491{left:109.160000pt;}
.x1c_c00491{left:111.120000pt;}
.x14_c00491{left:131.040000pt;}
.x2_c00491{left:198.644000pt;}
.x15_c00491{left:221.280000pt;}
.x3_c00491{left:237.030667pt;}
.xa_c00491{left:253.205365pt;}
.x4_c00491{left:285.112000pt;}
.x16_c00491{left:294.720000pt;}
.xb_c00491{left:326.167371pt;}
.x17_c00491{left:344.400000pt;}
.x5_c00491{left:346.285333pt;}
.x1d_c00491{left:369.600000pt;}
.x6_c00491{left:374.785333pt;}
.xc_c00491{left:396.490539pt;}
.x7_c00491{left:416.630667pt;}
.x18_c00491{left:422.160000pt;}
.xd_c00491{left:423.850955pt;}
.x19_c00491{left:469.440000pt;}
.xe_c00491{left:474.492864pt;}
.x8_c00491{left:501.374667pt;}
.x1a_c00491{left:504.240000pt;}
.xf_c00491{left:513.374016pt;}
.x10_c00491{left:548.654944pt;}
.x9_c00491{left:600.618667pt;}
.x11_c00491{left:611.057600pt;}
}





/* 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_c00492 {
    display:none;
  }
  .loading-indicator_c00492.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00492 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_c00492 { 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_c00492" -> "#page-container .classname_c00492")
 */
.pf_c00492 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00492 { /* 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_c00492.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00492 { /* 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_c00492 { /* 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_c00492 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00492 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00492 {overflow:visible;}
  }
}
.c_c00492 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00492 { /* 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_c00492:after { /* webkit #35443 */
  content: '';
}
.t_c00492:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00492 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 */
}
.__c00492 { /* 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_c00492 { /* info for Javascript */
  display:none;
}
.l_c00492 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00492 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00492 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00492: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_c00492 {
    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_c00492.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00492.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_c00492 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00492{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00492;src:url('chunks/assets/font_cfe63ee56e9e10a97d33a3db.woff2')format("woff");}.ff1_c00492{font-family:ff1_c00492;line-height:1.000000;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;}
.m127_c00492{transform:matrix(0.127951,0.002943,-0.005748,0.249934,0,0);-ms-transform:matrix(0.127951,0.002943,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.127951,0.002943,-0.005748,0.249934,0,0);}
.m125_c00492{transform:matrix(0.130311,0.002997,-0.005748,0.249934,0,0);-ms-transform:matrix(0.130311,0.002997,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.130311,0.002997,-0.005748,0.249934,0,0);}
.m126_c00492{transform:matrix(0.131310,0.003020,-0.005748,0.249934,0,0);-ms-transform:matrix(0.131310,0.003020,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.131310,0.003020,-0.005748,0.249934,0,0);}
.m123_c00492{transform:matrix(0.142457,0.003277,-0.005748,0.249934,0,0);-ms-transform:matrix(0.142457,0.003277,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.142457,0.003277,-0.005748,0.249934,0,0);}
.m131_c00492{transform:matrix(0.144062,0.003313,-0.005748,0.249934,0,0);-ms-transform:matrix(0.144062,0.003313,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.144062,0.003313,-0.005748,0.249934,0,0);}
.m12f_c00492{transform:matrix(0.144092,0.003314,-0.005748,0.249934,0,0);-ms-transform:matrix(0.144092,0.003314,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.144092,0.003314,-0.005748,0.249934,0,0);}
.m129_c00492{transform:matrix(0.144167,0.003316,-0.005748,0.249934,0,0);-ms-transform:matrix(0.144167,0.003316,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.144167,0.003316,-0.005748,0.249934,0,0);}
.m128_c00492{transform:matrix(0.146271,0.003364,-0.005748,0.249934,0,0);-ms-transform:matrix(0.146271,0.003364,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.146271,0.003364,-0.005748,0.249934,0,0);}
.m130_c00492{transform:matrix(0.147106,0.003383,-0.005748,0.249934,0,0);-ms-transform:matrix(0.147106,0.003383,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.147106,0.003383,-0.005748,0.249934,0,0);}
.m143_c00492{transform:matrix(0.147556,0.003394,-0.005748,0.249934,0,0);-ms-transform:matrix(0.147556,0.003394,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.147556,0.003394,-0.005748,0.249934,0,0);}
.m12a_c00492{transform:matrix(0.148951,0.003426,-0.005748,0.249934,0,0);-ms-transform:matrix(0.148951,0.003426,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.148951,0.003426,-0.005748,0.249934,0,0);}
.m142_c00492{transform:matrix(0.151265,0.003479,-0.005748,0.249934,0,0);-ms-transform:matrix(0.151265,0.003479,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.151265,0.003479,-0.005748,0.249934,0,0);}
.m122_c00492{transform:matrix(0.152200,0.003501,-0.005748,0.249934,0,0);-ms-transform:matrix(0.152200,0.003501,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.152200,0.003501,-0.005748,0.249934,0,0);}
.m144_c00492{transform:matrix(0.153105,0.003521,-0.005748,0.249934,0,0);-ms-transform:matrix(0.153105,0.003521,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.153105,0.003521,-0.005748,0.249934,0,0);}
.m10e_c00492{transform:matrix(0.155134,0.003568,-0.005748,0.249934,0,0);-ms-transform:matrix(0.155134,0.003568,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.155134,0.003568,-0.005748,0.249934,0,0);}
.m12c_c00492{transform:matrix(0.155139,0.003568,-0.005748,0.249934,0,0);-ms-transform:matrix(0.155139,0.003568,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.155139,0.003568,-0.005748,0.249934,0,0);}
.m12e_c00492{transform:matrix(0.155644,0.003580,-0.005748,0.249934,0,0);-ms-transform:matrix(0.155644,0.003580,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.155644,0.003580,-0.005748,0.249934,0,0);}
.m133_c00492{transform:matrix(0.156354,0.003596,-0.005748,0.249934,0,0);-ms-transform:matrix(0.156354,0.003596,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.156354,0.003596,-0.005748,0.249934,0,0);}
.m147_c00492{transform:matrix(0.158113,0.003637,-0.005748,0.249934,0,0);-ms-transform:matrix(0.158113,0.003637,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.158113,0.003637,-0.005748,0.249934,0,0);}
.m148_c00492{transform:matrix(0.162332,0.003734,-0.005748,0.249934,0,0);-ms-transform:matrix(0.162332,0.003734,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.162332,0.003734,-0.005748,0.249934,0,0);}
.m146_c00492{transform:matrix(0.162537,0.003738,-0.005748,0.249934,0,0);-ms-transform:matrix(0.162537,0.003738,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.162537,0.003738,-0.005748,0.249934,0,0);}
.m132_c00492{transform:matrix(0.163712,0.003765,-0.005748,0.249934,0,0);-ms-transform:matrix(0.163712,0.003765,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.163712,0.003765,-0.005748,0.249934,0,0);}
.m134_c00492{transform:matrix(0.163877,0.003769,-0.005748,0.249934,0,0);-ms-transform:matrix(0.163877,0.003769,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.163877,0.003769,-0.005748,0.249934,0,0);}
.m13f_c00492{transform:matrix(0.164452,0.003782,-0.005748,0.249934,0,0);-ms-transform:matrix(0.164452,0.003782,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.164452,0.003782,-0.005748,0.249934,0,0);}
.m140_c00492{transform:matrix(0.164906,0.003793,-0.005748,0.249934,0,0);-ms-transform:matrix(0.164906,0.003793,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.164906,0.003793,-0.005748,0.249934,0,0);}
.m12d_c00492{transform:matrix(0.165911,0.003816,-0.005748,0.249934,0,0);-ms-transform:matrix(0.165911,0.003816,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.165911,0.003816,-0.005748,0.249934,0,0);}
.m2_c00492{transform:matrix(0.166018,0.007977,-0.011998,0.249712,0,0);-ms-transform:matrix(0.166018,0.007977,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.166018,0.007977,-0.011998,0.249712,0,0);}
.m141_c00492{transform:matrix(0.166221,0.003823,-0.005748,0.249934,0,0);-ms-transform:matrix(0.166221,0.003823,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.166221,0.003823,-0.005748,0.249934,0,0);}
.m12b_c00492{transform:matrix(0.166886,0.003838,-0.005748,0.249934,0,0);-ms-transform:matrix(0.166886,0.003838,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.166886,0.003838,-0.005748,0.249934,0,0);}
.m5e_c00492{transform:matrix(0.167689,0.002348,-0.003500,0.249976,0,0);-ms-transform:matrix(0.167689,0.002348,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.167689,0.002348,-0.003500,0.249976,0,0);}
.m124_c00492{transform:matrix(0.170000,0.003910,-0.005748,0.249934,0,0);-ms-transform:matrix(0.170000,0.003910,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.170000,0.003910,-0.005748,0.249934,0,0);}
.m110_c00492{transform:matrix(0.170180,0.003914,-0.005748,0.249934,0,0);-ms-transform:matrix(0.170180,0.003914,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.170180,0.003914,-0.005748,0.249934,0,0);}
.mfb_c00492{transform:matrix(0.171086,0.003422,-0.004999,0.249950,0,0);-ms-transform:matrix(0.171086,0.003422,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.171086,0.003422,-0.004999,0.249950,0,0);}
.m30_c00492{transform:matrix(0.174453,0.002442,-0.003500,0.249976,0,0);-ms-transform:matrix(0.174453,0.002442,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.174453,0.002442,-0.003500,0.249976,0,0);}
.m61_c00492{transform:matrix(0.177983,0.002492,-0.003500,0.249976,0,0);-ms-transform:matrix(0.177983,0.002492,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.177983,0.002492,-0.003500,0.249976,0,0);}
.mfd_c00492{transform:matrix(0.178579,0.003572,-0.004999,0.249950,0,0);-ms-transform:matrix(0.178579,0.003572,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.178579,0.003572,-0.004999,0.249950,0,0);}
.m88_c00492{transform:matrix(0.180262,0.002524,-0.003500,0.249976,0,0);-ms-transform:matrix(0.180262,0.002524,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.180262,0.002524,-0.003500,0.249976,0,0);}
.mfe_c00492{transform:matrix(0.181759,0.003635,-0.004999,0.249950,0,0);-ms-transform:matrix(0.181759,0.003635,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.181759,0.003635,-0.004999,0.249950,0,0);}
.m145_c00492{transform:matrix(0.184581,0.004245,-0.005748,0.249934,0,0);-ms-transform:matrix(0.184581,0.004245,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.184581,0.004245,-0.005748,0.249934,0,0);}
.m10a_c00492{transform:matrix(0.184626,0.004246,-0.005748,0.249934,0,0);-ms-transform:matrix(0.184626,0.004246,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.184626,0.004246,-0.005748,0.249934,0,0);}
.m33_c00492{transform:matrix(0.186572,0.002612,-0.003500,0.249976,0,0);-ms-transform:matrix(0.186572,0.002612,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.186572,0.002612,-0.003500,0.249976,0,0);}
.me3_c00492{transform:matrix(0.186908,0.003738,-0.004999,0.249950,0,0);-ms-transform:matrix(0.186908,0.003738,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.186908,0.003738,-0.004999,0.249950,0,0);}
.m5b_c00492{transform:matrix(0.186937,0.002617,-0.003500,0.249976,0,0);-ms-transform:matrix(0.186937,0.002617,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.186937,0.002617,-0.003500,0.249976,0,0);}
.m1e_c00492{transform:matrix(0.187199,0.002434,-0.003250,0.249979,0,0);-ms-transform:matrix(0.187199,0.002434,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.187199,0.002434,-0.003250,0.249979,0,0);}
.mbd_c00492{transform:matrix(0.187802,0.003756,-0.004999,0.249950,0,0);-ms-transform:matrix(0.187802,0.003756,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.187802,0.003756,-0.004999,0.249950,0,0);}
.m50_c00492{transform:matrix(0.188387,0.002637,-0.003500,0.249976,0,0);-ms-transform:matrix(0.188387,0.002637,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.188387,0.002637,-0.003500,0.249976,0,0);}
.m60_c00492{transform:matrix(0.189271,0.002650,-0.003500,0.249976,0,0);-ms-transform:matrix(0.189271,0.002650,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.189271,0.002650,-0.003500,0.249976,0,0);}
.mdb_c00492{transform:matrix(0.189697,0.003794,-0.004999,0.249950,0,0);-ms-transform:matrix(0.189697,0.003794,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.189697,0.003794,-0.004999,0.249950,0,0);}
.m56_c00492{transform:matrix(0.189716,0.002656,-0.003500,0.249976,0,0);-ms-transform:matrix(0.189716,0.002656,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.189716,0.002656,-0.003500,0.249976,0,0);}
.m109_c00492{transform:matrix(0.189995,0.004370,-0.005748,0.249934,0,0);-ms-transform:matrix(0.189995,0.004370,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.189995,0.004370,-0.005748,0.249934,0,0);}
.m2f_c00492{transform:matrix(0.190251,0.002664,-0.003500,0.249976,0,0);-ms-transform:matrix(0.190251,0.002664,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.190251,0.002664,-0.003500,0.249976,0,0);}
.m4c_c00492{transform:matrix(0.190961,0.002673,-0.003500,0.249976,0,0);-ms-transform:matrix(0.190961,0.002673,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.190961,0.002673,-0.003500,0.249976,0,0);}
.me0_c00492{transform:matrix(0.191047,0.003821,-0.004999,0.249950,0,0);-ms-transform:matrix(0.191047,0.003821,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.191047,0.003821,-0.004999,0.249950,0,0);}
.m11e_c00492{transform:matrix(0.191324,0.004400,-0.005748,0.249934,0,0);-ms-transform:matrix(0.191324,0.004400,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.191324,0.004400,-0.005748,0.249934,0,0);}
.m1c_c00492{transform:matrix(0.191359,0.002488,-0.003250,0.249979,0,0);-ms-transform:matrix(0.191359,0.002488,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.191359,0.002488,-0.003250,0.249979,0,0);}
.m57_c00492{transform:matrix(0.191906,0.002687,-0.003500,0.249976,0,0);-ms-transform:matrix(0.191906,0.002687,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.191906,0.002687,-0.003500,0.249976,0,0);}
.m52_c00492{transform:matrix(0.192491,0.002695,-0.003500,0.249976,0,0);-ms-transform:matrix(0.192491,0.002695,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.192491,0.002695,-0.003500,0.249976,0,0);}
.m54_c00492{transform:matrix(0.192806,0.002699,-0.003500,0.249976,0,0);-ms-transform:matrix(0.192806,0.002699,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.192806,0.002699,-0.003500,0.249976,0,0);}
.m27_c00492{transform:matrix(0.193021,0.002702,-0.003500,0.249976,0,0);-ms-transform:matrix(0.193021,0.002702,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.193021,0.002702,-0.003500,0.249976,0,0);}
.me4_c00492{transform:matrix(0.193561,0.003871,-0.004999,0.249950,0,0);-ms-transform:matrix(0.193561,0.003871,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.193561,0.003871,-0.004999,0.249950,0,0);}
.m119_c00492{transform:matrix(0.193774,0.004457,-0.005748,0.249934,0,0);-ms-transform:matrix(0.193774,0.004457,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.193774,0.004457,-0.005748,0.249934,0,0);}
.m22_c00492{transform:matrix(0.193789,0.002519,-0.003250,0.249979,0,0);-ms-transform:matrix(0.193789,0.002519,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.193789,0.002519,-0.003250,0.249979,0,0);}
.m108_c00492{transform:matrix(0.194024,0.004463,-0.005748,0.249934,0,0);-ms-transform:matrix(0.194024,0.004463,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.194024,0.004463,-0.005748,0.249934,0,0);}
.m10c_c00492{transform:matrix(0.194409,0.004471,-0.005748,0.249934,0,0);-ms-transform:matrix(0.194409,0.004471,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.194409,0.004471,-0.005748,0.249934,0,0);}
.m3e_c00492{transform:matrix(0.194521,0.002723,-0.003500,0.249976,0,0);-ms-transform:matrix(0.194521,0.002723,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.194521,0.002723,-0.003500,0.249976,0,0);}
.mfa_c00492{transform:matrix(0.195096,0.003902,-0.004999,0.249950,0,0);-ms-transform:matrix(0.195096,0.003902,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.195096,0.003902,-0.004999,0.249950,0,0);}
.m64_c00492{transform:matrix(0.195126,0.002732,-0.003500,0.249976,0,0);-ms-transform:matrix(0.195126,0.002732,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.195126,0.002732,-0.003500,0.249976,0,0);}
.m5d_c00492{transform:matrix(0.195421,0.002736,-0.003500,0.249976,0,0);-ms-transform:matrix(0.195421,0.002736,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.195421,0.002736,-0.003500,0.249976,0,0);}
.m10b_c00492{transform:matrix(0.196023,0.004509,-0.005748,0.249934,0,0);-ms-transform:matrix(0.196023,0.004509,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.196023,0.004509,-0.005748,0.249934,0,0);}
.m13b_c00492{transform:matrix(0.196073,0.004510,-0.005748,0.249934,0,0);-ms-transform:matrix(0.196073,0.004510,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.196073,0.004510,-0.005748,0.249934,0,0);}
.mdd_c00492{transform:matrix(0.196136,0.003923,-0.004999,0.249950,0,0);-ms-transform:matrix(0.196136,0.003923,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.196136,0.003923,-0.004999,0.249950,0,0);}
.m11d_c00492{transform:matrix(0.196968,0.004530,-0.005748,0.249934,0,0);-ms-transform:matrix(0.196968,0.004530,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.196968,0.004530,-0.005748,0.249934,0,0);}
.m3b_c00492{transform:matrix(0.197416,0.002764,-0.003500,0.249976,0,0);-ms-transform:matrix(0.197416,0.002764,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.197416,0.002764,-0.003500,0.249976,0,0);}
.m36_c00492{transform:matrix(0.197566,0.002766,-0.003500,0.249976,0,0);-ms-transform:matrix(0.197566,0.002766,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.197566,0.002766,-0.003500,0.249976,0,0);}
.m138_c00492{transform:matrix(0.197763,0.004549,-0.005748,0.249934,0,0);-ms-transform:matrix(0.197763,0.004549,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.197763,0.004549,-0.005748,0.249934,0,0);}
.m111_c00492{transform:matrix(0.197783,0.004549,-0.005748,0.249934,0,0);-ms-transform:matrix(0.197783,0.004549,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.197783,0.004549,-0.005748,0.249934,0,0);}
.mc6_c00492{transform:matrix(0.198505,0.003970,-0.004999,0.249950,0,0);-ms-transform:matrix(0.198505,0.003970,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.198505,0.003970,-0.004999,0.249950,0,0);}
.m112_c00492{transform:matrix(0.198587,0.004568,-0.005748,0.249934,0,0);-ms-transform:matrix(0.198587,0.004568,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.198587,0.004568,-0.005748,0.249934,0,0);}
.mda_c00492{transform:matrix(0.199565,0.003991,-0.004999,0.249950,0,0);-ms-transform:matrix(0.199565,0.003991,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.199565,0.003991,-0.004999,0.249950,0,0);}
.m8f_c00492{transform:matrix(0.200220,0.002803,-0.003500,0.249976,0,0);-ms-transform:matrix(0.200220,0.002803,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.200220,0.002803,-0.003500,0.249976,0,0);}
.m11c_c00492{transform:matrix(0.200487,0.004611,-0.005748,0.249934,0,0);-ms-transform:matrix(0.200487,0.004611,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.200487,0.004611,-0.005748,0.249934,0,0);}
.m10d_c00492{transform:matrix(0.201627,0.004637,-0.005748,0.249934,0,0);-ms-transform:matrix(0.201627,0.004637,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.201627,0.004637,-0.005748,0.249934,0,0);}
.m35_c00492{transform:matrix(0.201675,0.002823,-0.003500,0.249976,0,0);-ms-transform:matrix(0.201675,0.002823,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.201675,0.002823,-0.003500,0.249976,0,0);}
.m100_c00492{transform:matrix(0.201735,0.004035,-0.004999,0.249950,0,0);-ms-transform:matrix(0.201735,0.004035,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.201735,0.004035,-0.004999,0.249950,0,0);}
.mdc_c00492{transform:matrix(0.202485,0.004050,-0.004999,0.249950,0,0);-ms-transform:matrix(0.202485,0.004050,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.202485,0.004050,-0.004999,0.249950,0,0);}
.m139_c00492{transform:matrix(0.202731,0.004663,-0.005748,0.249934,0,0);-ms-transform:matrix(0.202731,0.004663,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.202731,0.004663,-0.005748,0.249934,0,0);}
.mde_c00492{transform:matrix(0.202739,0.004055,-0.004999,0.249950,0,0);-ms-transform:matrix(0.202739,0.004055,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.202739,0.004055,-0.004999,0.249950,0,0);}
.mc1_c00492{transform:matrix(0.202769,0.004055,-0.004999,0.249950,0,0);-ms-transform:matrix(0.202769,0.004055,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.202769,0.004055,-0.004999,0.249950,0,0);}
.m6d_c00492{transform:matrix(0.202875,0.002840,-0.003500,0.249976,0,0);-ms-transform:matrix(0.202875,0.002840,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.202875,0.002840,-0.003500,0.249976,0,0);}
.m51_c00492{transform:matrix(0.203055,0.002843,-0.003500,0.249976,0,0);-ms-transform:matrix(0.203055,0.002843,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.203055,0.002843,-0.003500,0.249976,0,0);}
.m11b_c00492{transform:matrix(0.204096,0.004694,-0.005748,0.249934,0,0);-ms-transform:matrix(0.204096,0.004694,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.204096,0.004694,-0.005748,0.249934,0,0);}
.m8d_c00492{transform:matrix(0.204445,0.002862,-0.003500,0.249976,0,0);-ms-transform:matrix(0.204445,0.002862,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.204445,0.002862,-0.003500,0.249976,0,0);}
.mcc_c00492{transform:matrix(0.204774,0.004095,-0.004999,0.249950,0,0);-ms-transform:matrix(0.204774,0.004095,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.204774,0.004095,-0.004999,0.249950,0,0);}
.mbe_c00492{transform:matrix(0.205284,0.004106,-0.004999,0.249950,0,0);-ms-transform:matrix(0.205284,0.004106,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.205284,0.004106,-0.004999,0.249950,0,0);}
.mfc_c00492{transform:matrix(0.206049,0.004121,-0.004999,0.249950,0,0);-ms-transform:matrix(0.206049,0.004121,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.206049,0.004121,-0.004999,0.249950,0,0);}
.mc2_c00492{transform:matrix(0.206219,0.004124,-0.004999,0.249950,0,0);-ms-transform:matrix(0.206219,0.004124,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.206219,0.004124,-0.004999,0.249950,0,0);}
.m18_c00492{transform:matrix(0.206278,0.002682,-0.003250,0.249979,0,0);-ms-transform:matrix(0.206278,0.002682,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.206278,0.002682,-0.003250,0.249979,0,0);}
.m101_c00492{transform:matrix(0.206719,0.004134,-0.004999,0.249950,0,0);-ms-transform:matrix(0.206719,0.004134,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.206719,0.004134,-0.004999,0.249950,0,0);}
.m46_c00492{transform:matrix(0.206720,0.002894,-0.003500,0.249976,0,0);-ms-transform:matrix(0.206720,0.002894,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.206720,0.002894,-0.003500,0.249976,0,0);}
.m0_c00492{transform:matrix(0.207750,0.009982,-0.011998,0.249712,0,0);-ms-transform:matrix(0.207750,0.009982,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.207750,0.009982,-0.011998,0.249712,0,0);}
.m59_c00492{transform:matrix(0.207915,0.002911,-0.003500,0.249976,0,0);-ms-transform:matrix(0.207915,0.002911,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.207915,0.002911,-0.003500,0.249976,0,0);}
.m11_c00492{transform:matrix(0.207997,0.002704,-0.003250,0.249979,0,0);-ms-transform:matrix(0.207997,0.002704,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.207997,0.002704,-0.003250,0.249979,0,0);}
.m8e_c00492{transform:matrix(0.208130,0.002914,-0.003500,0.249976,0,0);-ms-transform:matrix(0.208130,0.002914,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.208130,0.002914,-0.003500,0.249976,0,0);}
.m10f_c00492{transform:matrix(0.208630,0.004798,-0.005748,0.249934,0,0);-ms-transform:matrix(0.208630,0.004798,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.208630,0.004798,-0.005748,0.249934,0,0);}
.m5c_c00492{transform:matrix(0.208995,0.002926,-0.003500,0.249976,0,0);-ms-transform:matrix(0.208995,0.002926,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.208995,0.002926,-0.003500,0.249976,0,0);}
.m86_c00492{transform:matrix(0.209075,0.002927,-0.003500,0.249976,0,0);-ms-transform:matrix(0.209075,0.002927,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.209075,0.002927,-0.003500,0.249976,0,0);}
.m121_c00492{transform:matrix(0.209625,0.004821,-0.005748,0.249934,0,0);-ms-transform:matrix(0.209625,0.004821,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.209625,0.004821,-0.005748,0.249934,0,0);}
.m15_c00492{transform:matrix(0.209917,0.002729,-0.003250,0.249979,0,0);-ms-transform:matrix(0.209917,0.002729,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.209917,0.002729,-0.003250,0.249979,0,0);}
.m8b_c00492{transform:matrix(0.210039,0.002941,-0.003500,0.249976,0,0);-ms-transform:matrix(0.210039,0.002941,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.210039,0.002941,-0.003500,0.249976,0,0);}
.m37_c00492{transform:matrix(0.210259,0.002944,-0.003500,0.249976,0,0);-ms-transform:matrix(0.210259,0.002944,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.210259,0.002944,-0.003500,0.249976,0,0);}
.me1_c00492{transform:matrix(0.210398,0.004208,-0.004999,0.249950,0,0);-ms-transform:matrix(0.210398,0.004208,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.210398,0.004208,-0.004999,0.249950,0,0);}
.m89_c00492{transform:matrix(0.211004,0.002954,-0.003500,0.249976,0,0);-ms-transform:matrix(0.211004,0.002954,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.211004,0.002954,-0.003500,0.249976,0,0);}
.m58_c00492{transform:matrix(0.211229,0.002957,-0.003500,0.249976,0,0);-ms-transform:matrix(0.211229,0.002957,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.211229,0.002957,-0.003500,0.249976,0,0);}
.m80_c00492{transform:matrix(0.212179,0.002971,-0.003500,0.249976,0,0);-ms-transform:matrix(0.212179,0.002971,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.212179,0.002971,-0.003500,0.249976,0,0);}
.m70_c00492{transform:matrix(0.212489,0.002975,-0.003500,0.249976,0,0);-ms-transform:matrix(0.212489,0.002975,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.212489,0.002975,-0.003500,0.249976,0,0);}
.m1a_c00492{transform:matrix(0.212497,0.002762,-0.003250,0.249979,0,0);-ms-transform:matrix(0.212497,0.002762,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.212497,0.002762,-0.003250,0.249979,0,0);}
.m8a_c00492{transform:matrix(0.212804,0.002979,-0.003500,0.249976,0,0);-ms-transform:matrix(0.212804,0.002979,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.212804,0.002979,-0.003500,0.249976,0,0);}
.m1f_c00492{transform:matrix(0.213462,0.002775,-0.003250,0.249979,0,0);-ms-transform:matrix(0.213462,0.002775,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.213462,0.002775,-0.003250,0.249979,0,0);}
.md1_c00492{transform:matrix(0.213777,0.004276,-0.004999,0.249950,0,0);-ms-transform:matrix(0.213777,0.004276,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.213777,0.004276,-0.004999,0.249950,0,0);}
.me2_c00492{transform:matrix(0.214062,0.004281,-0.004999,0.249950,0,0);-ms-transform:matrix(0.214062,0.004281,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.214062,0.004281,-0.004999,0.249950,0,0);}
.m3d_c00492{transform:matrix(0.214399,0.003002,-0.003500,0.249976,0,0);-ms-transform:matrix(0.214399,0.003002,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.214399,0.003002,-0.003500,0.249976,0,0);}
.m13d_c00492{transform:matrix(0.214578,0.004935,-0.005748,0.249934,0,0);-ms-transform:matrix(0.214578,0.004935,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.214578,0.004935,-0.005748,0.249934,0,0);}
.m2e_c00492{transform:matrix(0.214904,0.003009,-0.003500,0.249976,0,0);-ms-transform:matrix(0.214904,0.003009,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.214904,0.003009,-0.003500,0.249976,0,0);}
.m55_c00492{transform:matrix(0.215294,0.003014,-0.003500,0.249976,0,0);-ms-transform:matrix(0.215294,0.003014,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.215294,0.003014,-0.003500,0.249976,0,0);}
.m53_c00492{transform:matrix(0.215324,0.003015,-0.003500,0.249976,0,0);-ms-transform:matrix(0.215324,0.003015,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.215324,0.003015,-0.003500,0.249976,0,0);}
.m20_c00492{transform:matrix(0.216202,0.002811,-0.003250,0.249979,0,0);-ms-transform:matrix(0.216202,0.002811,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.216202,0.002811,-0.003250,0.249979,0,0);}
.m9a_c00492{transform:matrix(0.216599,0.003032,-0.003500,0.249976,0,0);-ms-transform:matrix(0.216599,0.003032,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.216599,0.003032,-0.003500,0.249976,0,0);}
.m120_c00492{transform:matrix(0.217143,0.004994,-0.005748,0.249934,0,0);-ms-transform:matrix(0.217143,0.004994,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.217143,0.004994,-0.005748,0.249934,0,0);}
.m8c_c00492{transform:matrix(0.217244,0.003041,-0.003500,0.249976,0,0);-ms-transform:matrix(0.217244,0.003041,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.217244,0.003041,-0.003500,0.249976,0,0);}
.m87_c00492{transform:matrix(0.217994,0.003052,-0.003500,0.249976,0,0);-ms-transform:matrix(0.217994,0.003052,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.217994,0.003052,-0.003500,0.249976,0,0);}
.m4f_c00492{transform:matrix(0.218264,0.003056,-0.003500,0.249976,0,0);-ms-transform:matrix(0.218264,0.003056,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.218264,0.003056,-0.003500,0.249976,0,0);}
.m5f_c00492{transform:matrix(0.218289,0.003056,-0.003500,0.249976,0,0);-ms-transform:matrix(0.218289,0.003056,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.218289,0.003056,-0.003500,0.249976,0,0);}
.m34_c00492{transform:matrix(0.218869,0.003064,-0.003500,0.249976,0,0);-ms-transform:matrix(0.218869,0.003064,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.218869,0.003064,-0.003500,0.249976,0,0);}
.mdf_c00492{transform:matrix(0.219096,0.004382,-0.004999,0.249950,0,0);-ms-transform:matrix(0.219096,0.004382,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.219096,0.004382,-0.004999,0.249950,0,0);}
.m32_c00492{transform:matrix(0.219528,0.003073,-0.003500,0.249976,0,0);-ms-transform:matrix(0.219528,0.003073,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.219528,0.003073,-0.003500,0.249976,0,0);}
.mff_c00492{transform:matrix(0.219981,0.004400,-0.004999,0.249950,0,0);-ms-transform:matrix(0.219981,0.004400,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.219981,0.004400,-0.004999,0.249950,0,0);}
.m38_c00492{transform:matrix(0.220133,0.003082,-0.003500,0.249976,0,0);-ms-transform:matrix(0.220133,0.003082,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.220133,0.003082,-0.003500,0.249976,0,0);}
.mca_c00492{transform:matrix(0.220686,0.004414,-0.004999,0.249950,0,0);-ms-transform:matrix(0.220686,0.004414,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.220686,0.004414,-0.004999,0.249950,0,0);}
.m104_c00492{transform:matrix(0.220846,0.004417,-0.004999,0.249950,0,0);-ms-transform:matrix(0.220846,0.004417,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.220846,0.004417,-0.004999,0.249950,0,0);}
.maa_c00492{transform:matrix(0.221161,0.004423,-0.004999,0.249950,0,0);-ms-transform:matrix(0.221161,0.004423,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.221161,0.004423,-0.004999,0.249950,0,0);}
.m92_c00492{transform:matrix(0.221253,0.003098,-0.003500,0.249976,0,0);-ms-transform:matrix(0.221253,0.003098,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.221253,0.003098,-0.003500,0.249976,0,0);}
.m1b_c00492{transform:matrix(0.221336,0.002877,-0.003250,0.249979,0,0);-ms-transform:matrix(0.221336,0.002877,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.221336,0.002877,-0.003250,0.249979,0,0);}
.m69_c00492{transform:matrix(0.221433,0.003100,-0.003500,0.249976,0,0);-ms-transform:matrix(0.221433,0.003100,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.221433,0.003100,-0.003500,0.249976,0,0);}
.mb2_c00492{transform:matrix(0.221836,0.004437,-0.004999,0.249950,0,0);-ms-transform:matrix(0.221836,0.004437,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.221836,0.004437,-0.004999,0.249950,0,0);}
.m31_c00492{transform:matrix(0.221863,0.003106,-0.003500,0.249976,0,0);-ms-transform:matrix(0.221863,0.003106,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.221863,0.003106,-0.003500,0.249976,0,0);}
.m4e_c00492{transform:matrix(0.222233,0.003111,-0.003500,0.249976,0,0);-ms-transform:matrix(0.222233,0.003111,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.222233,0.003111,-0.003500,0.249976,0,0);}
.m63_c00492{transform:matrix(0.222423,0.003114,-0.003500,0.249976,0,0);-ms-transform:matrix(0.222423,0.003114,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.222423,0.003114,-0.003500,0.249976,0,0);}
.m3c_c00492{transform:matrix(0.222603,0.003116,-0.003500,0.249976,0,0);-ms-transform:matrix(0.222603,0.003116,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.222603,0.003116,-0.003500,0.249976,0,0);}
.m3a_c00492{transform:matrix(0.223198,0.003125,-0.003500,0.249976,0,0);-ms-transform:matrix(0.223198,0.003125,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.223198,0.003125,-0.003500,0.249976,0,0);}
.m76_c00492{transform:matrix(0.223248,0.003125,-0.003500,0.249976,0,0);-ms-transform:matrix(0.223248,0.003125,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.223248,0.003125,-0.003500,0.249976,0,0);}
.m11f_c00492{transform:matrix(0.223406,0.005138,-0.005748,0.249934,0,0);-ms-transform:matrix(0.223406,0.005138,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.223406,0.005138,-0.005748,0.249934,0,0);}
.mc5_c00492{transform:matrix(0.223610,0.004472,-0.004999,0.249950,0,0);-ms-transform:matrix(0.223610,0.004472,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.223610,0.004472,-0.004999,0.249950,0,0);}
.m7b_c00492{transform:matrix(0.224198,0.003139,-0.003500,0.249976,0,0);-ms-transform:matrix(0.224198,0.003139,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.224198,0.003139,-0.003500,0.249976,0,0);}
.m62_c00492{transform:matrix(0.224363,0.003141,-0.003500,0.249976,0,0);-ms-transform:matrix(0.224363,0.003141,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.224363,0.003141,-0.003500,0.249976,0,0);}
.m39_c00492{transform:matrix(0.224423,0.003142,-0.003500,0.249976,0,0);-ms-transform:matrix(0.224423,0.003142,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.224423,0.003142,-0.003500,0.249976,0,0);}
.m13c_c00492{transform:matrix(0.224566,0.005165,-0.005748,0.249934,0,0);-ms-transform:matrix(0.224566,0.005165,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.224566,0.005165,-0.005748,0.249934,0,0);}
.me5_c00492{transform:matrix(0.224785,0.004496,-0.004999,0.249950,0,0);-ms-transform:matrix(0.224785,0.004496,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.224785,0.004496,-0.004999,0.249950,0,0);}
.mbc_c00492{transform:matrix(0.225165,0.004503,-0.004999,0.249950,0,0);-ms-transform:matrix(0.225165,0.004503,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.225165,0.004503,-0.004999,0.249950,0,0);}
.m67_c00492{transform:matrix(0.225293,0.003154,-0.003500,0.249976,0,0);-ms-transform:matrix(0.225293,0.003154,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.225293,0.003154,-0.003500,0.249976,0,0);}
.mc3_c00492{transform:matrix(0.225425,0.004508,-0.004999,0.249950,0,0);-ms-transform:matrix(0.225425,0.004508,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.225425,0.004508,-0.004999,0.249950,0,0);}
.m19_c00492{transform:matrix(0.225701,0.002934,-0.003250,0.249979,0,0);-ms-transform:matrix(0.225701,0.002934,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.225701,0.002934,-0.003250,0.249979,0,0);}
.m48_c00492{transform:matrix(0.226343,0.003169,-0.003500,0.249976,0,0);-ms-transform:matrix(0.226343,0.003169,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.226343,0.003169,-0.003500,0.249976,0,0);}
.mac_c00492{transform:matrix(0.226700,0.004534,-0.004999,0.249950,0,0);-ms-transform:matrix(0.226700,0.004534,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.226700,0.004534,-0.004999,0.249950,0,0);}
.mc7_c00492{transform:matrix(0.227005,0.004540,-0.004999,0.249950,0,0);-ms-transform:matrix(0.227005,0.004540,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.227005,0.004540,-0.004999,0.249950,0,0);}
.mb9_c00492{transform:matrix(0.228059,0.004561,-0.004999,0.249950,0,0);-ms-transform:matrix(0.228059,0.004561,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.228059,0.004561,-0.004999,0.249950,0,0);}
.m99_c00492{transform:matrix(0.228138,0.003194,-0.003500,0.249976,0,0);-ms-transform:matrix(0.228138,0.003194,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.228138,0.003194,-0.003500,0.249976,0,0);}
.m9f_c00492{transform:matrix(0.228154,0.004563,-0.004999,0.249950,0,0);-ms-transform:matrix(0.228154,0.004563,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.228154,0.004563,-0.004999,0.249950,0,0);}
.m1d_c00492{transform:matrix(0.228336,0.002968,-0.003250,0.249979,0,0);-ms-transform:matrix(0.228336,0.002968,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.228336,0.002968,-0.003250,0.249979,0,0);}
.mcf_c00492{transform:matrix(0.228424,0.004568,-0.004999,0.249950,0,0);-ms-transform:matrix(0.228424,0.004568,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.228424,0.004568,-0.004999,0.249950,0,0);}
.m106_c00492{transform:matrix(0.228584,0.004572,-0.004999,0.249950,0,0);-ms-transform:matrix(0.228584,0.004572,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.228584,0.004572,-0.004999,0.249950,0,0);}
.m24_c00492{transform:matrix(0.228943,0.003205,-0.003500,0.249976,0,0);-ms-transform:matrix(0.228943,0.003205,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.228943,0.003205,-0.003500,0.249976,0,0);}
.m105_c00492{transform:matrix(0.228954,0.004579,-0.004999,0.249950,0,0);-ms-transform:matrix(0.228954,0.004579,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.228954,0.004579,-0.004999,0.249950,0,0);}
.m9d_c00492{transform:matrix(0.229004,0.004580,-0.004999,0.249950,0,0);-ms-transform:matrix(0.229004,0.004580,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.229004,0.004580,-0.004999,0.249950,0,0);}
.ma4_c00492{transform:matrix(0.229284,0.004586,-0.004999,0.249950,0,0);-ms-transform:matrix(0.229284,0.004586,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.229284,0.004586,-0.004999,0.249950,0,0);}
.m49_c00492{transform:matrix(0.229368,0.003211,-0.003500,0.249976,0,0);-ms-transform:matrix(0.229368,0.003211,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.229368,0.003211,-0.003500,0.249976,0,0);}
.m137_c00492{transform:matrix(0.229529,0.005279,-0.005748,0.249934,0,0);-ms-transform:matrix(0.229529,0.005279,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.229529,0.005279,-0.005748,0.249934,0,0);}
.m135_c00492{transform:matrix(0.229569,0.005280,-0.005748,0.249934,0,0);-ms-transform:matrix(0.229569,0.005280,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.229569,0.005280,-0.005748,0.249934,0,0);}
.m4b_c00492{transform:matrix(0.229852,0.003218,-0.003500,0.249976,0,0);-ms-transform:matrix(0.229852,0.003218,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.229852,0.003218,-0.003500,0.249976,0,0);}
.m11a_c00492{transform:matrix(0.230299,0.005297,-0.005748,0.249934,0,0);-ms-transform:matrix(0.230299,0.005297,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.230299,0.005297,-0.005748,0.249934,0,0);}
.m13a_c00492{transform:matrix(0.230384,0.005299,-0.005748,0.249934,0,0);-ms-transform:matrix(0.230384,0.005299,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.230384,0.005299,-0.005748,0.249934,0,0);}
.mc4_c00492{transform:matrix(0.230399,0.004608,-0.004999,0.249950,0,0);-ms-transform:matrix(0.230399,0.004608,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.230399,0.004608,-0.004999,0.249950,0,0);}
.m1_c00492{transform:matrix(0.230524,0.011076,-0.011998,0.249712,0,0);-ms-transform:matrix(0.230524,0.011076,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.230524,0.011076,-0.011998,0.249712,0,0);}
.mbf_c00492{transform:matrix(0.230759,0.004615,-0.004999,0.249950,0,0);-ms-transform:matrix(0.230759,0.004615,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.230759,0.004615,-0.004999,0.249950,0,0);}
.ma0_c00492{transform:matrix(0.231604,0.004632,-0.004999,0.249950,0,0);-ms-transform:matrix(0.231604,0.004632,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.231604,0.004632,-0.004999,0.249950,0,0);}
.m41_c00492{transform:matrix(0.231782,0.003245,-0.003500,0.249976,0,0);-ms-transform:matrix(0.231782,0.003245,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.231782,0.003245,-0.003500,0.249976,0,0);}
.m3f_c00492{transform:matrix(0.231987,0.003248,-0.003500,0.249976,0,0);-ms-transform:matrix(0.231987,0.003248,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.231987,0.003248,-0.003500,0.249976,0,0);}
.m13e_c00492{transform:matrix(0.232374,0.005345,-0.005748,0.249934,0,0);-ms-transform:matrix(0.232374,0.005345,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.232374,0.005345,-0.005748,0.249934,0,0);}
.m7d_c00492{transform:matrix(0.232417,0.003254,-0.003500,0.249976,0,0);-ms-transform:matrix(0.232417,0.003254,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.232417,0.003254,-0.003500,0.249976,0,0);}
.m118_c00492{transform:matrix(0.232439,0.005346,-0.005748,0.249934,0,0);-ms-transform:matrix(0.232439,0.005346,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.232439,0.005346,-0.005748,0.249934,0,0);}
.m16_c00492{transform:matrix(0.233180,0.003031,-0.003250,0.249979,0,0);-ms-transform:matrix(0.233180,0.003031,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.233180,0.003031,-0.003250,0.249979,0,0);}
.m103_c00492{transform:matrix(0.233793,0.004676,-0.004999,0.249950,0,0);-ms-transform:matrix(0.233793,0.004676,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.233793,0.004676,-0.004999,0.249950,0,0);}
.m136_c00492{transform:matrix(0.234038,0.005383,-0.005748,0.249934,0,0);-ms-transform:matrix(0.234038,0.005383,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.234038,0.005383,-0.005748,0.249934,0,0);}
.m23_c00492{transform:matrix(0.234265,0.003045,-0.003250,0.249979,0,0);-ms-transform:matrix(0.234265,0.003045,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.234265,0.003045,-0.003250,0.249979,0,0);}
.mef_c00492{transform:matrix(0.234287,0.005857,-0.006248,0.249922,0,0);-ms-transform:matrix(0.234287,0.005857,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.234287,0.005857,-0.006248,0.249922,0,0);}
.m13_c00492{transform:matrix(0.235140,0.003057,-0.003250,0.249979,0,0);-ms-transform:matrix(0.235140,0.003057,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.235140,0.003057,-0.003250,0.249979,0,0);}
.m12_c00492{transform:matrix(0.235615,0.003063,-0.003250,0.249979,0,0);-ms-transform:matrix(0.235615,0.003063,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.235615,0.003063,-0.003250,0.249979,0,0);}
.m44_c00492{transform:matrix(0.235767,0.003301,-0.003500,0.249976,0,0);-ms-transform:matrix(0.235767,0.003301,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.235767,0.003301,-0.003500,0.249976,0,0);}
.ma8_c00492{transform:matrix(0.237138,0.004743,-0.004999,0.249950,0,0);-ms-transform:matrix(0.237138,0.004743,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.237138,0.004743,-0.004999,0.249950,0,0);}
.m83_c00492{transform:matrix(0.237162,0.003320,-0.003500,0.249976,0,0);-ms-transform:matrix(0.237162,0.003320,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.237162,0.003320,-0.003500,0.249976,0,0);}
.m66_c00492{transform:matrix(0.237237,0.003321,-0.003500,0.249976,0,0);-ms-transform:matrix(0.237237,0.003321,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.237237,0.003321,-0.003500,0.249976,0,0);}
.me_c00492{transform:matrix(0.237305,0.003085,-0.003250,0.249979,0,0);-ms-transform:matrix(0.237305,0.003085,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.237305,0.003085,-0.003250,0.249979,0,0);}
.mae_c00492{transform:matrix(0.237782,0.004756,-0.004999,0.249950,0,0);-ms-transform:matrix(0.237782,0.004756,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.237782,0.004756,-0.004999,0.249950,0,0);}
.m65_c00492{transform:matrix(0.238422,0.003338,-0.003500,0.249976,0,0);-ms-transform:matrix(0.238422,0.003338,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.238422,0.003338,-0.003500,0.249976,0,0);}
.m42_c00492{transform:matrix(0.239182,0.003349,-0.003500,0.249976,0,0);-ms-transform:matrix(0.239182,0.003349,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.239182,0.003349,-0.003500,0.249976,0,0);}
.m40_c00492{transform:matrix(0.239272,0.003350,-0.003500,0.249976,0,0);-ms-transform:matrix(0.239272,0.003350,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.239272,0.003350,-0.003500,0.249976,0,0);}
.m21_c00492{transform:matrix(0.239365,0.003112,-0.003250,0.249979,0,0);-ms-transform:matrix(0.239365,0.003112,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.239365,0.003112,-0.003250,0.249979,0,0);}
.ma9_c00492{transform:matrix(0.239457,0.004789,-0.004999,0.249950,0,0);-ms-transform:matrix(0.239457,0.004789,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.239457,0.004789,-0.004999,0.249950,0,0);}
.mcd_c00492{transform:matrix(0.240342,0.004807,-0.004999,0.249950,0,0);-ms-transform:matrix(0.240342,0.004807,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.240342,0.004807,-0.004999,0.249950,0,0);}
.m7c_c00492{transform:matrix(0.240471,0.003367,-0.003500,0.249976,0,0);-ms-transform:matrix(0.240471,0.003367,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.240471,0.003367,-0.003500,0.249976,0,0);}
.mc8_c00492{transform:matrix(0.240487,0.004810,-0.004999,0.249950,0,0);-ms-transform:matrix(0.240487,0.004810,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.240487,0.004810,-0.004999,0.249950,0,0);}
.mb6_c00492{transform:matrix(0.240727,0.004815,-0.004999,0.249950,0,0);-ms-transform:matrix(0.240727,0.004815,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.240727,0.004815,-0.004999,0.249950,0,0);}
.mc0_c00492{transform:matrix(0.240787,0.004816,-0.004999,0.249950,0,0);-ms-transform:matrix(0.240787,0.004816,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.240787,0.004816,-0.004999,0.249950,0,0);}
.m9e_c00492{transform:matrix(0.240942,0.004819,-0.004999,0.249950,0,0);-ms-transform:matrix(0.240942,0.004819,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.240942,0.004819,-0.004999,0.249950,0,0);}
.md5_c00492{transform:matrix(0.240982,0.004820,-0.004999,0.249950,0,0);-ms-transform:matrix(0.240982,0.004820,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.240982,0.004820,-0.004999,0.249950,0,0);}
.m8_c00492{transform:matrix(0.242030,0.003146,-0.003250,0.249979,0,0);-ms-transform:matrix(0.242030,0.003146,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.242030,0.003146,-0.003250,0.249979,0,0);}
.m6c_c00492{transform:matrix(0.242056,0.003389,-0.003500,0.249976,0,0);-ms-transform:matrix(0.242056,0.003389,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.242056,0.003389,-0.003500,0.249976,0,0);}
.m43_c00492{transform:matrix(0.242986,0.003402,-0.003500,0.249976,0,0);-ms-transform:matrix(0.242986,0.003402,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.242986,0.003402,-0.003500,0.249976,0,0);}
.m115_c00492{transform:matrix(0.243311,0.005596,-0.005748,0.249934,0,0);-ms-transform:matrix(0.243311,0.005596,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.243311,0.005596,-0.005748,0.249934,0,0);}
.mc9_c00492{transform:matrix(0.243441,0.004869,-0.004999,0.249950,0,0);-ms-transform:matrix(0.243441,0.004869,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.243441,0.004869,-0.004999,0.249950,0,0);}
.m4a_c00492{transform:matrix(0.243446,0.003408,-0.003500,0.249976,0,0);-ms-transform:matrix(0.243446,0.003408,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.243446,0.003408,-0.003500,0.249976,0,0);}
.md0_c00492{transform:matrix(0.243996,0.004880,-0.004999,0.249950,0,0);-ms-transform:matrix(0.243996,0.004880,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.243996,0.004880,-0.004999,0.249950,0,0);}
.m29_c00492{transform:matrix(0.244451,0.003422,-0.003500,0.249976,0,0);-ms-transform:matrix(0.244451,0.003422,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.244451,0.003422,-0.003500,0.249976,0,0);}
.m107_c00492{transform:matrix(0.244501,0.004890,-0.004999,0.249950,0,0);-ms-transform:matrix(0.244501,0.004890,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.244501,0.004890,-0.004999,0.249950,0,0);}
.m47_c00492{transform:matrix(0.244781,0.003427,-0.003500,0.249976,0,0);-ms-transform:matrix(0.244781,0.003427,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.244781,0.003427,-0.003500,0.249976,0,0);}
.m90_c00492{transform:matrix(0.247166,0.003460,-0.003500,0.249976,0,0);-ms-transform:matrix(0.247166,0.003460,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.247166,0.003460,-0.003500,0.249976,0,0);}
.mb7_c00492{transform:matrix(0.247501,0.004950,-0.004999,0.249950,0,0);-ms-transform:matrix(0.247501,0.004950,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.247501,0.004950,-0.004999,0.249950,0,0);}
.mf6_c00492{transform:matrix(0.247548,0.006189,-0.006248,0.249922,0,0);-ms-transform:matrix(0.247548,0.006189,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.247548,0.006189,-0.006248,0.249922,0,0);}
.mba_c00492{transform:matrix(0.247565,0.004951,-0.004999,0.249950,0,0);-ms-transform:matrix(0.247565,0.004951,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.247565,0.004951,-0.004999,0.249950,0,0);}
.mb4_c00492{transform:matrix(0.247705,0.004954,-0.004999,0.249950,0,0);-ms-transform:matrix(0.247705,0.004954,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.247705,0.004954,-0.004999,0.249950,0,0);}
.m68_c00492{transform:matrix(0.247801,0.003469,-0.003500,0.249976,0,0);-ms-transform:matrix(0.247801,0.003469,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.247801,0.003469,-0.003500,0.249976,0,0);}
.m71_c00492{transform:matrix(0.247911,0.003471,-0.003500,0.249976,0,0);-ms-transform:matrix(0.247911,0.003471,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.247911,0.003471,-0.003500,0.249976,0,0);}
.md7_c00492{transform:matrix(0.248270,0.004965,-0.004999,0.249950,0,0);-ms-transform:matrix(0.248270,0.004965,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.248270,0.004965,-0.004999,0.249950,0,0);}
.mf8_c00492{transform:matrix(0.248582,0.006215,-0.006248,0.249922,0,0);-ms-transform:matrix(0.248582,0.006215,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.248582,0.006215,-0.006248,0.249922,0,0);}
.m25_c00492{transform:matrix(0.248676,0.003481,-0.003500,0.249976,0,0);-ms-transform:matrix(0.248676,0.003481,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.248676,0.003481,-0.003500,0.249976,0,0);}
.me6_c00492{transform:matrix(0.248840,0.005474,-0.005499,0.249940,0,0);-ms-transform:matrix(0.248840,0.005474,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.248840,0.005474,-0.005499,0.249940,0,0);}
.m5a_c00492{transform:matrix(0.249166,0.003488,-0.003500,0.249976,0,0);-ms-transform:matrix(0.249166,0.003488,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.249166,0.003488,-0.003500,0.249976,0,0);}
.m117_c00492{transform:matrix(0.249339,0.005735,-0.005748,0.249934,0,0);-ms-transform:matrix(0.249339,0.005735,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.249339,0.005735,-0.005748,0.249934,0,0);}
.ma1_c00492{transform:matrix(0.249925,0.004999,-0.004999,0.249950,0,0);-ms-transform:matrix(0.249925,0.004999,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.249925,0.004999,-0.004999,0.249950,0,0);}
.meb_c00492{transform:matrix(0.249975,0.005499,-0.005499,0.249940,0,0);-ms-transform:matrix(0.249975,0.005499,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.249975,0.005499,-0.005499,0.249940,0,0);}
.m95_c00492{transform:matrix(0.250130,0.003502,-0.003500,0.249976,0,0);-ms-transform:matrix(0.250130,0.003502,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.250130,0.003502,-0.003500,0.249976,0,0);}
.m45_c00492{transform:matrix(0.250380,0.003505,-0.003500,0.249976,0,0);-ms-transform:matrix(0.250380,0.003505,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.250380,0.003505,-0.003500,0.249976,0,0);}
.m9c_c00492{transform:matrix(0.250645,0.005013,-0.004999,0.249950,0,0);-ms-transform:matrix(0.250645,0.005013,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.250645,0.005013,-0.004999,0.249950,0,0);}
.m5_c00492{transform:matrix(0.251244,0.003266,-0.003250,0.249979,0,0);-ms-transform:matrix(0.251244,0.003266,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.251244,0.003266,-0.003250,0.249979,0,0);}
.m6f_c00492{transform:matrix(0.251305,0.003518,-0.003500,0.249976,0,0);-ms-transform:matrix(0.251305,0.003518,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.251305,0.003518,-0.003500,0.249976,0,0);}
.m2c_c00492{transform:matrix(0.252330,0.003533,-0.003500,0.249976,0,0);-ms-transform:matrix(0.252330,0.003533,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.252330,0.003533,-0.003500,0.249976,0,0);}
.mf_c00492{transform:matrix(0.252424,0.003282,-0.003250,0.249979,0,0);-ms-transform:matrix(0.252424,0.003282,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.252424,0.003282,-0.003250,0.249979,0,0);}
.m73_c00492{transform:matrix(0.252565,0.003536,-0.003500,0.249976,0,0);-ms-transform:matrix(0.252565,0.003536,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.252565,0.003536,-0.003500,0.249976,0,0);}
.md6_c00492{transform:matrix(0.252794,0.005056,-0.004999,0.249950,0,0);-ms-transform:matrix(0.252794,0.005056,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.252794,0.005056,-0.004999,0.249950,0,0);}
.ma3_c00492{transform:matrix(0.253064,0.005061,-0.004999,0.249950,0,0);-ms-transform:matrix(0.253064,0.005061,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.253064,0.005061,-0.004999,0.249950,0,0);}
.m102_c00492{transform:matrix(0.253419,0.005068,-0.004999,0.249950,0,0);-ms-transform:matrix(0.253419,0.005068,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.253419,0.005068,-0.004999,0.249950,0,0);}
.mab_c00492{transform:matrix(0.253484,0.005070,-0.004999,0.249950,0,0);-ms-transform:matrix(0.253484,0.005070,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.253484,0.005070,-0.004999,0.249950,0,0);}
.m94_c00492{transform:matrix(0.253775,0.003553,-0.003500,0.249976,0,0);-ms-transform:matrix(0.253775,0.003553,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.253775,0.003553,-0.003500,0.249976,0,0);}
.m28_c00492{transform:matrix(0.255030,0.003570,-0.003500,0.249976,0,0);-ms-transform:matrix(0.255030,0.003570,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.255030,0.003570,-0.003500,0.249976,0,0);}
.mf9_c00492{transform:matrix(0.255125,0.006378,-0.006248,0.249922,0,0);-ms-transform:matrix(0.255125,0.006378,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.255125,0.006378,-0.006248,0.249922,0,0);}
.m10_c00492{transform:matrix(0.255318,0.003319,-0.003250,0.249979,0,0);-ms-transform:matrix(0.255318,0.003319,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.255318,0.003319,-0.003250,0.249979,0,0);}
.ma7_c00492{transform:matrix(0.255389,0.005108,-0.004999,0.249950,0,0);-ms-transform:matrix(0.255389,0.005108,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.255389,0.005108,-0.004999,0.249950,0,0);}
.mad_c00492{transform:matrix(0.255544,0.005111,-0.004999,0.249950,0,0);-ms-transform:matrix(0.255544,0.005111,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.255544,0.005111,-0.004999,0.249950,0,0);}
.ma2_c00492{transform:matrix(0.255549,0.005111,-0.004999,0.249950,0,0);-ms-transform:matrix(0.255549,0.005111,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.255549,0.005111,-0.004999,0.249950,0,0);}
.me8_c00492{transform:matrix(0.255603,0.005623,-0.005499,0.249940,0,0);-ms-transform:matrix(0.255603,0.005623,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.255603,0.005623,-0.005499,0.249940,0,0);}
.mf0_c00492{transform:matrix(0.255855,0.006396,-0.006248,0.249922,0,0);-ms-transform:matrix(0.255855,0.006396,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.255855,0.006396,-0.006248,0.249922,0,0);}
.m4_c00492{transform:matrix(0.256768,0.003338,-0.003250,0.249979,0,0);-ms-transform:matrix(0.256768,0.003338,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.256768,0.003338,-0.003250,0.249979,0,0);}
.m17_c00492{transform:matrix(0.257438,0.003347,-0.003250,0.249979,0,0);-ms-transform:matrix(0.257438,0.003347,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.257438,0.003347,-0.003250,0.249979,0,0);}
.m14_c00492{transform:matrix(0.257578,0.003349,-0.003250,0.249979,0,0);-ms-transform:matrix(0.257578,0.003349,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.257578,0.003349,-0.003250,0.249979,0,0);}
.m6e_c00492{transform:matrix(0.257680,0.003608,-0.003500,0.249976,0,0);-ms-transform:matrix(0.257680,0.003608,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.257680,0.003608,-0.003500,0.249976,0,0);}
.mf4_c00492{transform:matrix(0.258869,0.006472,-0.006248,0.249922,0,0);-ms-transform:matrix(0.258869,0.006472,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.258869,0.006472,-0.006248,0.249922,0,0);}
.md3_c00492{transform:matrix(0.259448,0.005189,-0.004999,0.249950,0,0);-ms-transform:matrix(0.259448,0.005189,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.259448,0.005189,-0.004999,0.249950,0,0);}
.mcb_c00492{transform:matrix(0.260218,0.005204,-0.004999,0.249950,0,0);-ms-transform:matrix(0.260218,0.005204,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.260218,0.005204,-0.004999,0.249950,0,0);}
.m116_c00492{transform:matrix(0.261296,0.006010,-0.005748,0.249934,0,0);-ms-transform:matrix(0.261296,0.006010,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.261296,0.006010,-0.005748,0.249934,0,0);}
.m74_c00492{transform:matrix(0.261359,0.003659,-0.003500,0.249976,0,0);-ms-transform:matrix(0.261359,0.003659,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.261359,0.003659,-0.003500,0.249976,0,0);}
.m97_c00492{transform:matrix(0.261809,0.003665,-0.003500,0.249976,0,0);-ms-transform:matrix(0.261809,0.003665,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.261809,0.003665,-0.003500,0.249976,0,0);}
.mf5_c00492{transform:matrix(0.261943,0.006549,-0.006248,0.249922,0,0);-ms-transform:matrix(0.261943,0.006549,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.261943,0.006549,-0.006248,0.249922,0,0);}
.m7a_c00492{transform:matrix(0.262874,0.003680,-0.003500,0.249976,0,0);-ms-transform:matrix(0.262874,0.003680,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.262874,0.003680,-0.003500,0.249976,0,0);}
.mb3_c00492{transform:matrix(0.263757,0.005275,-0.004999,0.249950,0,0);-ms-transform:matrix(0.263757,0.005275,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.263757,0.005275,-0.004999,0.249950,0,0);}
.m78_c00492{transform:matrix(0.263909,0.003695,-0.003500,0.249976,0,0);-ms-transform:matrix(0.263909,0.003695,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.263909,0.003695,-0.003500,0.249976,0,0);}
.mf3_c00492{transform:matrix(0.263978,0.006599,-0.006248,0.249922,0,0);-ms-transform:matrix(0.263978,0.006599,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.263978,0.006599,-0.006248,0.249922,0,0);}
.m93_c00492{transform:matrix(0.264309,0.003700,-0.003500,0.249976,0,0);-ms-transform:matrix(0.264309,0.003700,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.264309,0.003700,-0.003500,0.249976,0,0);}
.m26_c00492{transform:matrix(0.264339,0.003701,-0.003500,0.249976,0,0);-ms-transform:matrix(0.264339,0.003701,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.264339,0.003701,-0.003500,0.249976,0,0);}
.md2_c00492{transform:matrix(0.265342,0.005307,-0.004999,0.249950,0,0);-ms-transform:matrix(0.265342,0.005307,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.265342,0.005307,-0.004999,0.249950,0,0);}
.mbb_c00492{transform:matrix(0.265607,0.005312,-0.004999,0.249950,0,0);-ms-transform:matrix(0.265607,0.005312,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.265607,0.005312,-0.004999,0.249950,0,0);}
.m72_c00492{transform:matrix(0.265704,0.003720,-0.003500,0.249976,0,0);-ms-transform:matrix(0.265704,0.003720,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.265704,0.003720,-0.003500,0.249976,0,0);}
.mf1_c00492{transform:matrix(0.265842,0.006646,-0.006248,0.249922,0,0);-ms-transform:matrix(0.265842,0.006646,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.265842,0.006646,-0.006248,0.249922,0,0);}
.m91_c00492{transform:matrix(0.265859,0.003722,-0.003500,0.249976,0,0);-ms-transform:matrix(0.265859,0.003722,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.265859,0.003722,-0.003500,0.249976,0,0);}
.m98_c00492{transform:matrix(0.266919,0.003737,-0.003500,0.249976,0,0);-ms-transform:matrix(0.266919,0.003737,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.266919,0.003737,-0.003500,0.249976,0,0);}
.mce_c00492{transform:matrix(0.267242,0.005345,-0.004999,0.249950,0,0);-ms-transform:matrix(0.267242,0.005345,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.267242,0.005345,-0.004999,0.249950,0,0);}
.m2b_c00492{transform:matrix(0.267549,0.003746,-0.003500,0.249976,0,0);-ms-transform:matrix(0.267549,0.003746,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.267549,0.003746,-0.003500,0.249976,0,0);}
.mf7_c00492{transform:matrix(0.267906,0.006698,-0.006248,0.249922,0,0);-ms-transform:matrix(0.267906,0.006698,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.267906,0.006698,-0.006248,0.249922,0,0);}
.m7e_c00492{transform:matrix(0.268909,0.003765,-0.003500,0.249976,0,0);-ms-transform:matrix(0.268909,0.003765,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.268909,0.003765,-0.003500,0.249976,0,0);}
.m82_c00492{transform:matrix(0.270389,0.003785,-0.003500,0.249976,0,0);-ms-transform:matrix(0.270389,0.003785,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.270389,0.003785,-0.003500,0.249976,0,0);}
.m113_c00492{transform:matrix(0.270618,0.006224,-0.005748,0.249934,0,0);-ms-transform:matrix(0.270618,0.006224,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.270618,0.006224,-0.005748,0.249934,0,0);}
.mf2_c00492{transform:matrix(0.270780,0.006770,-0.006248,0.249922,0,0);-ms-transform:matrix(0.270780,0.006770,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.270780,0.006770,-0.006248,0.249922,0,0);}
.m114_c00492{transform:matrix(0.272063,0.006257,-0.005748,0.249934,0,0);-ms-transform:matrix(0.272063,0.006257,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.272063,0.006257,-0.005748,0.249934,0,0);}
.ma6_c00492{transform:matrix(0.273690,0.005474,-0.004999,0.249950,0,0);-ms-transform:matrix(0.273690,0.005474,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.273690,0.005474,-0.004999,0.249950,0,0);}
.mb1_c00492{transform:matrix(0.273715,0.005474,-0.004999,0.249950,0,0);-ms-transform:matrix(0.273715,0.005474,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.273715,0.005474,-0.004999,0.249950,0,0);}
.m75_c00492{transform:matrix(0.274253,0.003840,-0.003500,0.249976,0,0);-ms-transform:matrix(0.274253,0.003840,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.274253,0.003840,-0.003500,0.249976,0,0);}
.md4_c00492{transform:matrix(0.274845,0.005497,-0.004999,0.249950,0,0);-ms-transform:matrix(0.274845,0.005497,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.274845,0.005497,-0.004999,0.249950,0,0);}
.mb5_c00492{transform:matrix(0.277629,0.005553,-0.004999,0.249950,0,0);-ms-transform:matrix(0.277629,0.005553,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.277629,0.005553,-0.004999,0.249950,0,0);}
.m79_c00492{transform:matrix(0.278083,0.003893,-0.003500,0.249976,0,0);-ms-transform:matrix(0.278083,0.003893,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.278083,0.003893,-0.003500,0.249976,0,0);}
.mb8_c00492{transform:matrix(0.278194,0.005564,-0.004999,0.249950,0,0);-ms-transform:matrix(0.278194,0.005564,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.278194,0.005564,-0.004999,0.249950,0,0);}
.m84_c00492{transform:matrix(0.278368,0.003897,-0.003500,0.249976,0,0);-ms-transform:matrix(0.278368,0.003897,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.278368,0.003897,-0.003500,0.249976,0,0);}
.md8_c00492{transform:matrix(0.278804,0.005576,-0.004999,0.249950,0,0);-ms-transform:matrix(0.278804,0.005576,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.278804,0.005576,-0.004999,0.249950,0,0);}
.mb0_c00492{transform:matrix(0.278899,0.005578,-0.004999,0.249950,0,0);-ms-transform:matrix(0.278899,0.005578,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.278899,0.005578,-0.004999,0.249950,0,0);}
.m77_c00492{transform:matrix(0.280308,0.003924,-0.003500,0.249976,0,0);-ms-transform:matrix(0.280308,0.003924,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.280308,0.003924,-0.003500,0.249976,0,0);}
.mec_c00492{transform:matrix(0.280522,0.006171,-0.005499,0.249940,0,0);-ms-transform:matrix(0.280522,0.006171,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.280522,0.006171,-0.005499,0.249940,0,0);}
.m4d_c00492{transform:matrix(0.281722,0.003944,-0.003500,0.249976,0,0);-ms-transform:matrix(0.281722,0.003944,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.281722,0.003944,-0.003500,0.249976,0,0);}
.m2a_c00492{transform:matrix(0.281947,0.003947,-0.003500,0.249976,0,0);-ms-transform:matrix(0.281947,0.003947,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.281947,0.003947,-0.003500,0.249976,0,0);}
.maf_c00492{transform:matrix(0.282364,0.005647,-0.004999,0.249950,0,0);-ms-transform:matrix(0.282364,0.005647,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.282364,0.005647,-0.004999,0.249950,0,0);}
.m6_c00492{transform:matrix(0.282901,0.003678,-0.003250,0.249979,0,0);-ms-transform:matrix(0.282901,0.003678,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.282901,0.003678,-0.003250,0.249979,0,0);}
.m9_c00492{transform:matrix(0.284141,0.003694,-0.003250,0.249979,0,0);-ms-transform:matrix(0.284141,0.003694,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.284141,0.003694,-0.003250,0.249979,0,0);}
.m9b_c00492{transform:matrix(0.288032,0.004032,-0.003500,0.249976,0,0);-ms-transform:matrix(0.288032,0.004032,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.288032,0.004032,-0.003500,0.249976,0,0);}
.m7_c00492{transform:matrix(0.289366,0.003762,-0.003250,0.249979,0,0);-ms-transform:matrix(0.289366,0.003762,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.289366,0.003762,-0.003250,0.249979,0,0);}
.mc_c00492{transform:matrix(0.291695,0.003792,-0.003250,0.249979,0,0);-ms-transform:matrix(0.291695,0.003792,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.291695,0.003792,-0.003250,0.249979,0,0);}
.mb_c00492{transform:matrix(0.292355,0.003801,-0.003250,0.249979,0,0);-ms-transform:matrix(0.292355,0.003801,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.292355,0.003801,-0.003250,0.249979,0,0);}
.me9_c00492{transform:matrix(0.293829,0.006464,-0.005499,0.249940,0,0);-ms-transform:matrix(0.293829,0.006464,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.293829,0.006464,-0.005499,0.249940,0,0);}
.ma_c00492{transform:matrix(0.296200,0.003851,-0.003250,0.249979,0,0);-ms-transform:matrix(0.296200,0.003851,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.296200,0.003851,-0.003250,0.249979,0,0);}
.m7f_c00492{transform:matrix(0.296601,0.004152,-0.003500,0.249976,0,0);-ms-transform:matrix(0.296601,0.004152,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.296601,0.004152,-0.003500,0.249976,0,0);}
.mee_c00492{transform:matrix(0.299817,0.006596,-0.005499,0.249940,0,0);-ms-transform:matrix(0.299817,0.006596,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.299817,0.006596,-0.005499,0.249940,0,0);}
.m3_c00492{transform:matrix(0.302929,0.003938,-0.003250,0.249979,0,0);-ms-transform:matrix(0.302929,0.003938,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.302929,0.003938,-0.003250,0.249979,0,0);}
.m96_c00492{transform:matrix(0.304120,0.004258,-0.003500,0.249976,0,0);-ms-transform:matrix(0.304120,0.004258,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.304120,0.004258,-0.003500,0.249976,0,0);}
.md9_c00492{transform:matrix(0.306654,0.006133,-0.004999,0.249950,0,0);-ms-transform:matrix(0.306654,0.006133,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.306654,0.006133,-0.004999,0.249950,0,0);}
.med_c00492{transform:matrix(0.309925,0.006818,-0.005499,0.249940,0,0);-ms-transform:matrix(0.309925,0.006818,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.309925,0.006818,-0.005499,0.249940,0,0);}
.me7_c00492{transform:matrix(0.310120,0.006823,-0.005499,0.249940,0,0);-ms-transform:matrix(0.310120,0.006823,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.310120,0.006823,-0.005499,0.249940,0,0);}
.m6a_c00492{transform:matrix(0.312024,0.004368,-0.003500,0.249976,0,0);-ms-transform:matrix(0.312024,0.004368,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.312024,0.004368,-0.003500,0.249976,0,0);}
.m2d_c00492{transform:matrix(0.312399,0.004374,-0.003500,0.249976,0,0);-ms-transform:matrix(0.312399,0.004374,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.312399,0.004374,-0.003500,0.249976,0,0);}
.mea_c00492{transform:matrix(0.312724,0.006880,-0.005499,0.249940,0,0);-ms-transform:matrix(0.312724,0.006880,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.312724,0.006880,-0.005499,0.249940,0,0);}
.md_c00492{transform:matrix(0.317698,0.004130,-0.003250,0.249979,0,0);-ms-transform:matrix(0.317698,0.004130,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.317698,0.004130,-0.003250,0.249979,0,0);}
.m85_c00492{transform:matrix(0.346991,0.004858,-0.003500,0.249976,0,0);-ms-transform:matrix(0.346991,0.004858,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.346991,0.004858,-0.003500,0.249976,0,0);}
.m81_c00492{transform:matrix(0.364034,0.005096,-0.003500,0.249976,0,0);-ms-transform:matrix(0.364034,0.005096,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.364034,0.005096,-0.003500,0.249976,0,0);}
.m6b_c00492{transform:matrix(0.372219,0.005211,-0.003500,0.249976,0,0);-ms-transform:matrix(0.372219,0.005211,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.372219,0.005211,-0.003500,0.249976,0,0);}
.ma5_c00492{transform:matrix(0.395886,0.007918,-0.004999,0.249950,0,0);-ms-transform:matrix(0.395886,0.007918,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.395886,0.007918,-0.004999,0.249950,0,0);}
.v0_c00492{vertical-align:0.000000px;}
.ls0_c00492{letter-spacing:0.000000px;}
.sc__c00492{text-shadow:none;}
.sc0_c00492{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__c00492{-webkit-text-stroke:0px transparent;}
.sc0_c00492{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00492{word-spacing:0.000000px;}
.fc0_c00492{color:transparent;}
.fs1_c00492{font-size:66.005577px;}
.fsc_c00492{font-size:66.015970px;}
.fs4_c00492{font-size:72.007056px;}
.fs9_c00492{font-size:72.014399px;}
.fs10_c00492{font-size:72.019041px;}
.fsd_c00492{font-size:72.022496px;}
.fs2_c00492{font-size:78.006591px;}
.fs7_c00492{font-size:78.007644px;}
.fs8_c00492{font-size:78.015598px;}
.fs3_c00492{font-size:84.007098px;}
.fs6_c00492{font-size:84.008232px;}
.fsa_c00492{font-size:84.016798px;}
.fs11_c00492{font-size:84.022215px;}
.fs5_c00492{font-size:90.008820px;}
.fsb_c00492{font-size:90.017998px;}
.fse_c00492{font-size:96.019198px;}
.fsf_c00492{font-size:96.025389px;}
.fs0_c00492{font-size:114.017384px;}
.fs13_c00492{font-size:114.030149px;}
.fs12_c00492{font-size:126.033323px;}
.y0_c00492{bottom:0.000000px;}
.y14b_c00492{bottom:63.878947px;}
.y14a_c00492{bottom:65.715190px;}
.y149_c00492{bottom:67.899693px;}
.y148_c00492{bottom:69.099870px;}
.y147_c00492{bottom:69.708513px;}
.y146_c00492{bottom:70.822815px;}
.y145_c00492{bottom:72.257866px;}
.y144_c00492{bottom:74.788593px;}
.y143_c00492{bottom:77.353417px;}
.y142_c00492{bottom:79.096818px;}
.y141_c00492{bottom:93.858258px;}
.y140_c00492{bottom:95.576770px;}
.y13f_c00492{bottom:97.770690px;}
.y13e_c00492{bottom:98.848651px;}
.y13d_c00492{bottom:99.526663px;}
.y13c_c00492{bottom:101.032774px;}
.y13b_c00492{bottom:102.111564px;}
.y13a_c00492{bottom:104.646240px;}
.y139_c00492{bottom:107.197284px;}
.y138_c00492{bottom:108.986269px;}
.y137_c00492{bottom:126.698443px;}
.y136_c00492{bottom:127.910163px;}
.y135_c00492{bottom:129.373099px;}
.y134_c00492{bottom:130.091475px;}
.y133_c00492{bottom:130.585095px;}
.y132_c00492{bottom:131.547787px;}
.y131_c00492{bottom:132.028297px;}
.y130_c00492{bottom:133.715955px;}
.y12f_c00492{bottom:135.152016px;}
.y12e_c00492{bottom:136.346467px;}
.y12d_c00492{bottom:152.484922px;}
.y12c_c00492{bottom:153.917797px;}
.y12b_c00492{bottom:155.632141px;}
.y12a_c00492{bottom:156.480948px;}
.y129_c00492{bottom:157.057134px;}
.y128_c00492{bottom:158.193619px;}
.y127_c00492{bottom:160.916841px;}
.y126_c00492{bottom:162.496143px;}
.y125_c00492{bottom:163.891363px;}
.y124_c00492{bottom:178.587324px;}
.y123_c00492{bottom:179.644024px;}
.y122_c00492{bottom:181.166509px;}
.y121_c00492{bottom:181.905430px;}
.y120_c00492{bottom:182.415375px;}
.y11f_c00492{bottom:183.433988px;}
.y11e_c00492{bottom:183.924577px;}
.y11d_c00492{bottom:185.707675px;}
.y11c_c00492{bottom:187.478215px;}
.y11b_c00492{bottom:188.737500px;}
.y115_c00492{bottom:218.538021px;}
.y114_c00492{bottom:219.831633px;}
.y113_c00492{bottom:220.611022px;}
.y112_c00492{bottom:223.651749px;}
.y111_c00492{bottom:224.178461px;}
.y110_c00492{bottom:225.703498px;}
.y10f_c00492{bottom:227.218324px;}
.y10e_c00492{bottom:228.517284px;}
.y10d_c00492{bottom:229.220394px;}
.y10c_c00492{bottom:230.455873px;}
.y10b_c00492{bottom:233.020500px;}
.y11a_c00492{bottom:254.192667px;}
.y119_c00492{bottom:255.739130px;}
.y118_c00492{bottom:256.484571px;}
.y117_c00492{bottom:258.776889px;}
.y116_c00492{bottom:260.827500px;}
.y10a_c00492{bottom:266.935980px;}
.y109_c00492{bottom:266.936400px;}
.y108_c00492{bottom:266.936490px;}
.y106_c00492{bottom:266.936640px;}
.y107_c00492{bottom:266.936730px;}
.y105_c00492{bottom:293.033970px;}
.y104_c00492{bottom:294.616500px;}
.y103_c00492{bottom:297.496500px;}
.y102_c00492{bottom:297.936090px;}
.y101_c00492{bottom:299.009280px;}
.y100_c00492{bottom:299.920830px;}
.yff_c00492{bottom:302.326590px;}
.yfe_c00492{bottom:302.989470px;}
.yfd_c00492{bottom:304.294500px;}
.yfc_c00492{bottom:325.576237px;}
.yfb_c00492{bottom:326.701613px;}
.yfa_c00492{bottom:328.654462px;}
.yf9_c00492{bottom:329.998987px;}
.yf8_c00492{bottom:331.715138px;}
.yf7_c00492{bottom:333.335625px;}
.yf6_c00492{bottom:335.007938px;}
.yf5_c00492{bottom:337.460962px;}
.yf4_c00492{bottom:339.944700px;}
.yf3_c00492{bottom:340.508812px;}
.yf2_c00492{bottom:341.286000px;}
.yf1_c00492{bottom:362.469654px;}
.yf0_c00492{bottom:365.196378px;}
.yef_c00492{bottom:366.624123px;}
.yee_c00492{bottom:367.359594px;}
.yed_c00492{bottom:371.002794px;}
.yec_c00492{bottom:372.738165px;}
.yeb_c00492{bottom:373.421100px;}
.yea_c00492{bottom:374.864025px;}
.ye9_c00492{bottom:375.576000px;}
.ye8_c00492{bottom:397.548300px;}
.ye7_c00492{bottom:398.290530px;}
.ye6_c00492{bottom:399.019500px;}
.ye5_c00492{bottom:400.514760px;}
.ye4_c00492{bottom:401.477070px;}
.ye3_c00492{bottom:402.449280px;}
.ye2_c00492{bottom:404.630730px;}
.ye1_c00492{bottom:406.068300px;}
.ye0_c00492{bottom:407.043030px;}
.ydf_c00492{bottom:408.480240px;}
.yde_c00492{bottom:409.402350px;}
.ydd_c00492{bottom:410.635890px;}
.ydc_c00492{bottom:436.900410px;}
.ydb_c00492{bottom:439.320630px;}
.yda_c00492{bottom:439.773390px;}
.yd9_c00492{bottom:440.655030px;}
.yd8_c00492{bottom:441.508290px;}
.yd7_c00492{bottom:443.485170px;}
.yd6_c00492{bottom:444.607380px;}
.yd5_c00492{bottom:446.552070px;}
.yd4_c00492{bottom:473.620020px;}
.yd3_c00492{bottom:474.693090px;}
.yd2_c00492{bottom:475.325250px;}
.yd1_c00492{bottom:476.275590px;}
.yd0_c00492{bottom:477.190200px;}
.ycf_c00492{bottom:477.651300px;}
.yce_c00492{bottom:479.372130px;}
.ycd_c00492{bottom:479.947290px;}
.ycc_c00492{bottom:480.896490px;}
.ycb_c00492{bottom:482.120820px;}
.yca_c00492{bottom:482.736630px;}
.yc9_c00492{bottom:505.980930px;}
.yc8_c00492{bottom:507.037620px;}
.yc7_c00492{bottom:508.100430px;}
.yc6_c00492{bottom:509.373030px;}
.yc5_c00492{bottom:509.999010px;}
.yc4_c00492{bottom:510.809340px;}
.yc3_c00492{bottom:513.744510px;}
.yc2_c00492{bottom:515.648790px;}
.yc1_c00492{bottom:516.462600px;}
.yc0_c00492{bottom:517.078290px;}
.ybf_c00492{bottom:518.116320px;}
.ybe_c00492{bottom:543.516120px;}
.ybd_c00492{bottom:544.196700px;}
.ybc_c00492{bottom:544.848780px;}
.ybb_c00492{bottom:546.875520px;}
.yba_c00492{bottom:547.529970px;}
.yb9_c00492{bottom:548.387310px;}
.yb8_c00492{bottom:551.023710px;}
.yb7_c00492{bottom:551.498070px;}
.yb6_c00492{bottom:553.028220px;}
.yb5_c00492{bottom:553.675770px;}
.yb4_c00492{bottom:555.651240px;}
.yb3_c00492{bottom:581.106960px;}
.yb2_c00492{bottom:583.769700px;}
.yb1_c00492{bottom:584.429220px;}
.yb0_c00492{bottom:585.752610px;}
.yaf_c00492{bottom:586.400250px;}
.yae_c00492{bottom:587.722350px;}
.yad_c00492{bottom:588.377340px;}
.yac_c00492{bottom:589.052640px;}
.yab_c00492{bottom:589.711320px;}
.yaa_c00492{bottom:590.168820px;}
.ya9_c00492{bottom:592.107780px;}
.ya8_c00492{bottom:613.751250px;}
.ya7_c00492{bottom:614.713020px;}
.ya6_c00492{bottom:616.262820px;}
.ya5_c00492{bottom:618.050400px;}
.ya4_c00492{bottom:620.011500px;}
.ya3_c00492{bottom:620.912370px;}
.ya2_c00492{bottom:621.777390px;}
.ya1_c00492{bottom:622.892370px;}
.ya0_c00492{bottom:623.981010px;}
.y9f_c00492{bottom:625.327500px;}
.y9e_c00492{bottom:648.604959px;}
.y9d_c00492{bottom:649.870326px;}
.y9c_c00492{bottom:650.595696px;}
.y9b_c00492{bottom:652.312473px;}
.y9a_c00492{bottom:653.987307px;}
.y99_c00492{bottom:654.735339px;}
.y98_c00492{bottom:655.233393px;}
.y97_c00492{bottom:656.655552px;}
.y96_c00492{bottom:658.383906px;}
.y95_c00492{bottom:659.090268px;}
.y94_c00492{bottom:660.557928px;}
.y93_c00492{bottom:661.738602px;}
.y92_c00492{bottom:688.504260px;}
.y91_c00492{bottom:689.053167px;}
.y90_c00492{bottom:689.506371px;}
.y8f_c00492{bottom:690.176319px;}
.y8e_c00492{bottom:690.827589px;}
.y8d_c00492{bottom:691.154448px;}
.y8c_c00492{bottom:691.937190px;}
.y8b_c00492{bottom:692.812746px;}
.y8a_c00492{bottom:693.139647px;}
.y89_c00492{bottom:694.025424px;}
.y88_c00492{bottom:694.678869px;}
.y87_c00492{bottom:721.188813px;}
.y86_c00492{bottom:722.806881px;}
.y85_c00492{bottom:723.325275px;}
.y84_c00492{bottom:724.012677px;}
.y83_c00492{bottom:725.787816px;}
.y82_c00492{bottom:726.154965px;}
.y81_c00492{bottom:727.047144px;}
.y80_c00492{bottom:728.627238px;}
.y7f_c00492{bottom:729.318345px;}
.y7e_c00492{bottom:730.186083px;}
.y7d_c00492{bottom:731.405988px;}
.y7c_c00492{bottom:757.603488px;}
.y7b_c00492{bottom:758.998329px;}
.y7a_c00492{bottom:760.086969px;}
.y79_c00492{bottom:761.487438px;}
.y78_c00492{bottom:761.935935px;}
.y77_c00492{bottom:763.330881px;}
.y76_c00492{bottom:764.102190px;}
.y75_c00492{bottom:764.422776px;}
.y74_c00492{bottom:765.625236px;}
.y73_c00492{bottom:766.237386px;}
.y72_c00492{bottom:793.007589px;}
.y71_c00492{bottom:794.022996px;}
.y70_c00492{bottom:795.748752px;}
.y6f_c00492{bottom:796.166883px;}
.y6e_c00492{bottom:797.044593px;}
.y6d_c00492{bottom:797.341062px;}
.y6c_c00492{bottom:798.909441px;}
.y6b_c00492{bottom:799.324191px;}
.y6a_c00492{bottom:800.318019px;}
.y69_c00492{bottom:800.756742px;}
.y68_c00492{bottom:801.328647px;}
.y67_c00492{bottom:801.612159px;}
.y66_c00492{bottom:829.962120px;}
.y65_c00492{bottom:830.865408px;}
.y64_c00492{bottom:832.090899px;}
.y63_c00492{bottom:832.360521px;}
.y62_c00492{bottom:832.712808px;}
.y61_c00492{bottom:833.591667px;}
.y60_c00492{bottom:833.776890px;}
.y5f_c00492{bottom:834.131331px;}
.y5e_c00492{bottom:834.826638px;}
.y5d_c00492{bottom:835.093938px;}
.y5c_c00492{bottom:866.680842px;}
.y5b_c00492{bottom:867.930018px;}
.y5a_c00492{bottom:869.009955px;}
.y59_c00492{bottom:869.528349px;}
.y58_c00492{bottom:870.223194px;}
.y57_c00492{bottom:871.667058px;}
.y56_c00492{bottom:872.349420px;}
.y55_c00492{bottom:873.744255px;}
.y54_c00492{bottom:874.284486px;}
.y53_c00492{bottom:875.001168px;}
.y52_c00492{bottom:875.827824px;}
.y51_c00492{bottom:876.949095px;}
.y50_c00492{bottom:901.460892px;}
.y4f_c00492{bottom:903.011799px;}
.y4e_c00492{bottom:903.191121px;}
.y4d_c00492{bottom:903.777528px;}
.y4c_c00492{bottom:904.915878px;}
.y4b_c00492{bottom:905.333757px;}
.y4a_c00492{bottom:906.049461px;}
.y49_c00492{bottom:907.050807px;}
.y48_c00492{bottom:907.482747px;}
.y47_c00492{bottom:908.493303px;}
.y46_c00492{bottom:908.780091px;}
.y45_c00492{bottom:909.623106px;}
.y44_c00492{bottom:936.728385px;}
.y43_c00492{bottom:937.163211px;}
.y42_c00492{bottom:938.056770px;}
.y41_c00492{bottom:938.761134px;}
.y40_c00492{bottom:939.016401px;}
.y3f_c00492{bottom:939.204219px;}
.y3e_c00492{bottom:939.716436px;}
.y3d_c00492{bottom:939.983925px;}
.y3c_c00492{bottom:940.519596px;}
.y3b_c00492{bottom:941.044968px;}
.y3a_c00492{bottom:941.485647px;}
.y39_c00492{bottom:970.482246px;}
.y38_c00492{bottom:970.785393px;}
.y37_c00492{bottom:971.180760px;}
.y36_c00492{bottom:972.270288px;}
.y35_c00492{bottom:972.579222px;}
.y34_c00492{bottom:973.655451px;}
.y33_c00492{bottom:973.859496px;}
.y32_c00492{bottom:974.749035px;}
.y31_c00492{bottom:975.047118px;}
.y30_c00492{bottom:975.442653px;}
.y2f_c00492{bottom:976.317558px;}
.y2e_c00492{bottom:1007.674245px;}
.y2d_c00492{bottom:1008.442257px;}
.y2c_c00492{bottom:1009.674159px;}
.y2b_c00492{bottom:1011.243447px;}
.y2a_c00492{bottom:1011.840939px;}
.y29_c00492{bottom:1012.172970px;}
.y28_c00492{bottom:1012.774620px;}
.y27_c00492{bottom:1013.708301px;}
.y26_c00492{bottom:1014.468060px;}
.y25_c00492{bottom:1014.933000px;}
.y24_c00492{bottom:1042.682058px;}
.y23_c00492{bottom:1043.049622px;}
.y22_c00492{bottom:1043.911698px;}
.y21_c00492{bottom:1044.163099px;}
.y20_c00492{bottom:1044.873477px;}
.y1f_c00492{bottom:1045.235794px;}
.y1e_c00492{bottom:1046.204671px;}
.y1d_c00492{bottom:1046.572431px;}
.y1c_c00492{bottom:1047.412780px;}
.y1b_c00492{bottom:1047.908521px;}
.y1a_c00492{bottom:1048.749144px;}
.y19_c00492{bottom:1049.215941px;}
.y18_c00492{bottom:1077.877606px;}
.y17_c00492{bottom:1078.392333px;}
.y16_c00492{bottom:1078.794534px;}
.y15_c00492{bottom:1080.119319px;}
.y14_c00492{bottom:1080.783486px;}
.y13_c00492{bottom:1081.573945px;}
.y12_c00492{bottom:1081.976322px;}
.y11_c00492{bottom:1083.174463px;}
.y10_c00492{bottom:1084.477288px;}
.yf_c00492{bottom:1085.128545px;}
.ye_c00492{bottom:1112.606988px;}
.yd_c00492{bottom:1113.466450px;}
.yc_c00492{bottom:1114.340694px;}
.yb_c00492{bottom:1115.631945px;}
.ya_c00492{bottom:1116.355590px;}
.y9_c00492{bottom:1116.769867px;}
.y8_c00492{bottom:1117.650936px;}
.y7_c00492{bottom:1118.482864px;}
.y6_c00492{bottom:1118.914282px;}
.y5_c00492{bottom:1119.482766px;}
.y4_c00492{bottom:1121.043000px;}
.y3_c00492{bottom:1171.885092px;}
.y2_c00492{bottom:1173.565140px;}
.y1_c00492{bottom:1174.546500px;}
.h3_c00492{height:66.005577px;}
.he_c00492{height:66.015970px;}
.h6_c00492{height:72.007056px;}
.hb_c00492{height:72.014399px;}
.h12_c00492{height:72.019041px;}
.hf_c00492{height:72.022496px;}
.h4_c00492{height:78.006591px;}
.h9_c00492{height:78.007644px;}
.ha_c00492{height:78.015598px;}
.h5_c00492{height:84.007098px;}
.h8_c00492{height:84.008232px;}
.hc_c00492{height:84.016798px;}
.h13_c00492{height:84.022215px;}
.h7_c00492{height:90.008820px;}
.hd_c00492{height:90.017998px;}
.h10_c00492{height:96.019198px;}
.h11_c00492{height:96.025389px;}
.h2_c00492{height:114.017384px;}
.h15_c00492{height:114.030149px;}
.h14_c00492{height:126.033323px;}
.h0_c00492{height:1246.320000px;}
.h1_c00492{height:1246.500000px;}
.w0_c00492{width:896.100000px;}
.w1_c00492{width:896.250000px;}
.x0_c00492{left:0.000000px;}
.x3c_c00492{left:172.387206px;}
.x2b_c00492{left:174.322920px;}
.x4_c00492{left:177.109500px;}
.x46_c00492{left:195.615279px;}
.x7d_c00492{left:205.165500px;}
.x42_c00492{left:207.229935px;}
.x71_c00492{left:216.593940px;}
.x15_c00492{left:219.088932px;}
.x95_c00492{left:226.089149px;}
.x59_c00492{left:227.309586px;}
.x2c_c00492{left:229.376040px;}
.xf_c00492{left:230.428736px;}
.x83_c00492{left:237.835500px;}
.x35_c00492{left:239.631930px;}
.x3d_c00492{left:242.511753px;}
.x4e_c00492{left:251.456421px;}
.x36_c00492{left:261.724245px;}
.x64_c00492{left:270.600630px;}
.x69_c00492{left:271.874070px;}
.x24_c00492{left:273.388638px;}
.x5e_c00492{left:281.799000px;}
.x1d_c00492{left:284.133000px;}
.x8e_c00492{left:287.197901px;}
.x90_c00492{left:293.157762px;}
.x3e_c00492{left:294.164304px;}
.x16_c00492{left:295.523421px;}
.x5_c00492{left:297.127500px;}
.x7e_c00492{left:301.795500px;}
.x4b_c00492{left:304.396515px;}
.x4f_c00492{left:305.721909px;}
.x1e_c00492{left:317.343000px;}
.x5a_c00492{left:326.121519px;}
.x4c_c00492{left:327.295515px;}
.x7a_c00492{left:336.855570px;}
.x10_c00492{left:338.955140px;}
.x6_c00492{left:340.857000px;}
.x50_c00492{left:348.871191px;}
.x25_c00492{left:350.581056px;}
.x56_c00492{left:360.300126px;}
.x2d_c00492{left:361.961670px;}
.x89_c00492{left:368.151000px;}
.x91_c00492{left:369.862022px;}
.x1f_c00492{left:371.611500px;}
.x37_c00492{left:372.689799px;}
.x7_c00492{left:374.043000px;}
.x92_c00492{left:380.494422px;}
.x47_c00492{left:381.596862px;}
.x84_c00492{left:391.267500px;}
.x65_c00492{left:392.924130px;}
.x2e_c00492{left:395.427984px;}
.x8b_c00492{left:402.531000px;}
.x5f_c00492{left:403.555500px;}
.x5b_c00492{left:404.673720px;}
.x72_c00492{left:412.926990px;}
.x87_c00492{left:415.039080px;}
.x17_c00492{left:416.995080px;}
.x1_c00492{left:420.499500px;}
.x80_c00492{left:424.462500px;}
.x75_c00492{left:425.492040px;}
.x8f_c00492{left:435.696689px;}
.x85_c00492{left:436.845000px;}
.x8_c00492{left:438.037500px;}
.x2_c00492{left:440.924055px;}
.x7b_c00492{left:446.516190px;}
.x51_c00492{left:447.589419px;}
.x26_c00492{left:449.376465px;}
.x18_c00492{left:450.477458px;}
.x88_c00492{left:457.977240px;}
.x2f_c00492{left:459.448860px;}
.x76_c00492{left:468.155040px;}
.x5c_c00492{left:469.284975px;}
.x11_c00492{left:472.342875px;}
.x3_c00492{left:475.890054px;}
.x93_c00492{left:479.359187px;}
.x20_c00492{left:481.278000px;}
.x30_c00492{left:482.937834px;}
.x86_c00492{left:490.504500px;}
.x5d_c00492{left:491.893434px;}
.x8c_c00492{left:501.117000px;}
.x3f_c00492{left:502.523466px;}
.x38_c00492{left:504.766647px;}
.x9_c00492{left:505.812000px;}
.x77_c00492{left:512.237040px;}
.x31_c00492{left:514.781001px;}
.x48_c00492{left:524.980857px;}
.x52_c00492{left:526.289214px;}
.x78_c00492{left:534.875040px;}
.x6a_c00492{left:536.297070px;}
.xa_c00492{left:537.679500px;}
.x7c_c00492{left:545.684730px;}
.x21_c00492{left:547.672500px;}
.x43_c00492{left:549.347184px;}
.x81_c00492{left:556.174500px;}
.x66_c00492{left:557.580630px;}
.x57_c00492{left:558.786735px;}
.x8d_c00492{left:567.312000px;}
.x73_c00492{left:568.767180px;}
.x19_c00492{left:571.457097px;}
.x6b_c00492{left:579.164070px;}
.x67_c00492{left:590.556630px;}
.x27_c00492{left:591.727440px;}
.xb_c00492{left:593.344500px;}
.x6e_c00492{left:601.045500px;}
.x32_c00492{left:602.814393px;}
.x6c_c00492{left:611.886570px;}
.x4d_c00492{left:614.097015px;}
.x39_c00492{left:624.391806px;}
.x28_c00492{left:626.010834px;}
.x94_c00492{left:630.558911px;}
.x6f_c00492{left:633.995160px;}
.x1a_c00492{left:636.026274px;}
.x53_c00492{left:637.224606px;}
.x7f_c00492{left:644.604000px;}
.x60_c00492{left:645.654000px;}
.x79_c00492{left:655.886040px;}
.x1b_c00492{left:658.942379px;}
.x3a_c00492{left:669.492936px;}
.x82_c00492{left:678.601500px;}
.x54_c00492{left:680.216409px;}
.x3b_c00492{left:683.266125px;}
.x58_c00492{left:690.881127px;}
.xc_c00492{left:692.671500px;}
.x70_c00492{left:701.001510px;}
.x44_c00492{left:702.466536px;}
.x12_c00492{left:704.031398px;}
.x55_c00492{left:712.636506px;}
.x33_c00492{left:714.542280px;}
.x68_c00492{left:723.693630px;}
.x61_c00492{left:735.033000px;}
.x40_c00492{left:736.126935px;}
.x13_c00492{left:737.508827px;}
.x6d_c00492{left:745.827570px;}
.x22_c00492{left:747.757500px;}
.x49_c00492{left:757.419612px;}
.xd_c00492{left:759.921000px;}
.x8a_c00492{left:767.359500px;}
.x34_c00492{left:768.855837px;}
.x1c_c00492{left:770.725284px;}
.x14_c00492{left:780.449892px;}
.x29_c00492{left:791.014884px;}
.x23_c00492{left:802.615500px;}
.x62_c00492{left:812.523000px;}
.x41_c00492{left:814.208751px;}
.x45_c00492{left:815.318007px;}
.x74_c00492{left:823.731750px;}
.x2a_c00492{left:824.777757px;}
.xe_c00492{left:826.033500px;}
.x4a_c00492{left:835.521204px;}
.x63_c00492{left:860.611500px;}
@media print{
.v0_c00492{vertical-align:0.000000pt;}
.ls0_c00492{letter-spacing:0.000000pt;}
.ws0_c00492{word-spacing:0.000000pt;}
.fs1_c00492{font-size:58.671624pt;}
.fsc_c00492{font-size:58.680862pt;}
.fs4_c00492{font-size:64.006272pt;}
.fs9_c00492{font-size:64.012799pt;}
.fs10_c00492{font-size:64.016926pt;}
.fsd_c00492{font-size:64.019997pt;}
.fs2_c00492{font-size:69.339192pt;}
.fs7_c00492{font-size:69.340128pt;}
.fs8_c00492{font-size:69.347199pt;}
.fs3_c00492{font-size:74.672976pt;}
.fs6_c00492{font-size:74.673984pt;}
.fsa_c00492{font-size:74.681599pt;}
.fs11_c00492{font-size:74.686413pt;}
.fs5_c00492{font-size:80.007840pt;}
.fsb_c00492{font-size:80.015998pt;}
.fse_c00492{font-size:85.350398pt;}
.fsf_c00492{font-size:85.355901pt;}
.fs0_c00492{font-size:101.348785pt;}
.fs13_c00492{font-size:101.360132pt;}
.fs12_c00492{font-size:112.029620pt;}
.y0_c00492{bottom:0.000000pt;}
.y14b_c00492{bottom:56.781287pt;}
.y14a_c00492{bottom:58.413503pt;}
.y149_c00492{bottom:60.355283pt;}
.y148_c00492{bottom:61.422107pt;}
.y147_c00492{bottom:61.963123pt;}
.y146_c00492{bottom:62.953613pt;}
.y145_c00492{bottom:64.229215pt;}
.y144_c00492{bottom:66.478749pt;}
.y143_c00492{bottom:68.758593pt;}
.y142_c00492{bottom:70.308283pt;}
.y141_c00492{bottom:83.429563pt;}
.y140_c00492{bottom:84.957129pt;}
.y13f_c00492{bottom:86.907280pt;}
.y13e_c00492{bottom:87.865468pt;}
.y13d_c00492{bottom:88.468145pt;}
.y13c_c00492{bottom:89.806911pt;}
.y13b_c00492{bottom:90.765835pt;}
.y13a_c00492{bottom:93.018880pt;}
.y139_c00492{bottom:95.286475pt;}
.y138_c00492{bottom:96.876684pt;}
.y137_c00492{bottom:112.620839pt;}
.y136_c00492{bottom:113.697923pt;}
.y135_c00492{bottom:114.998311pt;}
.y134_c00492{bottom:115.636867pt;}
.y133_c00492{bottom:116.075640pt;}
.y132_c00492{bottom:116.931367pt;}
.y131_c00492{bottom:117.358487pt;}
.y130_c00492{bottom:118.858627pt;}
.y12f_c00492{bottom:120.135125pt;}
.y12e_c00492{bottom:121.196860pt;}
.y12d_c00492{bottom:135.542153pt;}
.y12c_c00492{bottom:136.815820pt;}
.y12b_c00492{bottom:138.339681pt;}
.y12a_c00492{bottom:139.094176pt;}
.y129_c00492{bottom:139.606341pt;}
.y128_c00492{bottom:140.616551pt;}
.y127_c00492{bottom:143.037192pt;}
.y126_c00492{bottom:144.441016pt;}
.y125_c00492{bottom:145.681212pt;}
.y124_c00492{bottom:158.744288pt;}
.y123_c00492{bottom:159.683577pt;}
.y122_c00492{bottom:161.036897pt;}
.y121_c00492{bottom:161.693716pt;}
.y120_c00492{bottom:162.147000pt;}
.y11f_c00492{bottom:163.052433pt;}
.y11e_c00492{bottom:163.488513pt;}
.y11d_c00492{bottom:165.073489pt;}
.y11c_c00492{bottom:166.647303pt;}
.y11b_c00492{bottom:167.766667pt;}
.y115_c00492{bottom:194.256019pt;}
.y114_c00492{bottom:195.405896pt;}
.y113_c00492{bottom:196.098687pt;}
.y112_c00492{bottom:198.801555pt;}
.y111_c00492{bottom:199.269743pt;}
.y110_c00492{bottom:200.625332pt;}
.y10f_c00492{bottom:201.971844pt;}
.y10e_c00492{bottom:203.126475pt;}
.y10d_c00492{bottom:203.751461pt;}
.y10c_c00492{bottom:204.849665pt;}
.y10b_c00492{bottom:207.129333pt;}
.y11a_c00492{bottom:225.949037pt;}
.y119_c00492{bottom:227.323671pt;}
.y118_c00492{bottom:227.986285pt;}
.y117_c00492{bottom:230.023901pt;}
.y116_c00492{bottom:231.846667pt;}
.y10a_c00492{bottom:237.276427pt;}
.y109_c00492{bottom:237.276800pt;}
.y108_c00492{bottom:237.276880pt;}
.y106_c00492{bottom:237.277013pt;}
.y107_c00492{bottom:237.277093pt;}
.y105_c00492{bottom:260.474640pt;}
.y104_c00492{bottom:261.881333pt;}
.y103_c00492{bottom:264.441333pt;}
.y102_c00492{bottom:264.832080pt;}
.y101_c00492{bottom:265.786027pt;}
.y100_c00492{bottom:266.596293pt;}
.yff_c00492{bottom:268.734747pt;}
.yfe_c00492{bottom:269.323973pt;}
.yfd_c00492{bottom:270.484000pt;}
.yfc_c00492{bottom:289.401100pt;}
.yfb_c00492{bottom:290.401433pt;}
.yfa_c00492{bottom:292.137300pt;}
.yf9_c00492{bottom:293.332433pt;}
.yf8_c00492{bottom:294.857900pt;}
.yf7_c00492{bottom:296.298333pt;}
.yf6_c00492{bottom:297.784833pt;}
.yf5_c00492{bottom:299.965300pt;}
.yf4_c00492{bottom:302.173067pt;}
.yf3_c00492{bottom:302.674500pt;}
.yf2_c00492{bottom:303.365333pt;}
.yf1_c00492{bottom:322.195248pt;}
.yf0_c00492{bottom:324.619003pt;}
.yef_c00492{bottom:325.888109pt;}
.yee_c00492{bottom:326.541861pt;}
.yed_c00492{bottom:329.780261pt;}
.yec_c00492{bottom:331.322813pt;}
.yeb_c00492{bottom:331.929867pt;}
.yea_c00492{bottom:333.212467pt;}
.ye9_c00492{bottom:333.845333pt;}
.ye8_c00492{bottom:353.376267pt;}
.ye7_c00492{bottom:354.036027pt;}
.ye6_c00492{bottom:354.684000pt;}
.ye5_c00492{bottom:356.013120pt;}
.ye4_c00492{bottom:356.868507pt;}
.ye3_c00492{bottom:357.732693pt;}
.ye2_c00492{bottom:359.671760pt;}
.ye1_c00492{bottom:360.949600pt;}
.ye0_c00492{bottom:361.816027pt;}
.ydf_c00492{bottom:363.093547pt;}
.yde_c00492{bottom:363.913200pt;}
.ydd_c00492{bottom:365.009680pt;}
.ydc_c00492{bottom:388.355920pt;}
.ydb_c00492{bottom:390.507227pt;}
.yda_c00492{bottom:390.909680pt;}
.yd9_c00492{bottom:391.693360pt;}
.yd8_c00492{bottom:392.451813pt;}
.yd7_c00492{bottom:394.209040pt;}
.yd6_c00492{bottom:395.206560pt;}
.yd5_c00492{bottom:396.935173pt;}
.yd4_c00492{bottom:420.995573pt;}
.yd3_c00492{bottom:421.949413pt;}
.yd2_c00492{bottom:422.511333pt;}
.yd1_c00492{bottom:423.356080pt;}
.yd0_c00492{bottom:424.169067pt;}
.ycf_c00492{bottom:424.578933pt;}
.yce_c00492{bottom:426.108560pt;}
.ycd_c00492{bottom:426.619813pt;}
.ycc_c00492{bottom:427.463547pt;}
.ycb_c00492{bottom:428.551840pt;}
.yca_c00492{bottom:429.099227pt;}
.yc9_c00492{bottom:449.760827pt;}
.yc8_c00492{bottom:450.700107pt;}
.yc7_c00492{bottom:451.644827pt;}
.yc6_c00492{bottom:452.776027pt;}
.yc5_c00492{bottom:453.332453pt;}
.yc4_c00492{bottom:454.052747pt;}
.yc3_c00492{bottom:456.661787pt;}
.yc2_c00492{bottom:458.354480pt;}
.yc1_c00492{bottom:459.077867pt;}
.yc0_c00492{bottom:459.625147pt;}
.ybf_c00492{bottom:460.547840pt;}
.ybe_c00492{bottom:483.125440pt;}
.ybd_c00492{bottom:483.730400pt;}
.ybc_c00492{bottom:484.310027pt;}
.ybb_c00492{bottom:486.111573pt;}
.yba_c00492{bottom:486.693307pt;}
.yb9_c00492{bottom:487.455387pt;}
.yb8_c00492{bottom:489.798853pt;}
.yb7_c00492{bottom:490.220507pt;}
.yb6_c00492{bottom:491.580640pt;}
.yb5_c00492{bottom:492.156240pt;}
.yb4_c00492{bottom:493.912213pt;}
.yb3_c00492{bottom:516.539520pt;}
.yb2_c00492{bottom:518.906400pt;}
.yb1_c00492{bottom:519.492640pt;}
.yb0_c00492{bottom:520.668987pt;}
.yaf_c00492{bottom:521.244667pt;}
.yae_c00492{bottom:522.419867pt;}
.yad_c00492{bottom:523.002080pt;}
.yac_c00492{bottom:523.602347pt;}
.yab_c00492{bottom:524.187840pt;}
.yaa_c00492{bottom:524.594507pt;}
.ya9_c00492{bottom:526.318027pt;}
.ya8_c00492{bottom:545.556667pt;}
.ya7_c00492{bottom:546.411573pt;}
.ya6_c00492{bottom:547.789173pt;}
.ya5_c00492{bottom:549.378133pt;}
.ya4_c00492{bottom:551.121333pt;}
.ya3_c00492{bottom:551.922107pt;}
.ya2_c00492{bottom:552.691013pt;}
.ya1_c00492{bottom:553.682107pt;}
.ya0_c00492{bottom:554.649787pt;}
.y9f_c00492{bottom:555.846667pt;}
.y9e_c00492{bottom:576.537741pt;}
.y9d_c00492{bottom:577.662512pt;}
.y9c_c00492{bottom:578.307285pt;}
.y9b_c00492{bottom:579.833309pt;}
.y9a_c00492{bottom:581.322051pt;}
.y99_c00492{bottom:581.986968pt;}
.y98_c00492{bottom:582.429683pt;}
.y97_c00492{bottom:583.693824pt;}
.y96_c00492{bottom:585.230139pt;}
.y95_c00492{bottom:585.858016pt;}
.y94_c00492{bottom:587.162603pt;}
.y93_c00492{bottom:588.212091pt;}
.y92_c00492{bottom:612.003787pt;}
.y91_c00492{bottom:612.491704pt;}
.y90_c00492{bottom:612.894552pt;}
.y8f_c00492{bottom:613.490061pt;}
.y8e_c00492{bottom:614.068968pt;}
.y8d_c00492{bottom:614.359509pt;}
.y8c_c00492{bottom:615.055280pt;}
.y8b_c00492{bottom:615.833552pt;}
.y8a_c00492{bottom:616.124131pt;}
.y89_c00492{bottom:616.911488pt;}
.y88_c00492{bottom:617.492328pt;}
.y87_c00492{bottom:641.056723pt;}
.y86_c00492{bottom:642.495005pt;}
.y85_c00492{bottom:642.955800pt;}
.y84_c00492{bottom:643.566824pt;}
.y83_c00492{bottom:645.144725pt;}
.y82_c00492{bottom:645.471080pt;}
.y81_c00492{bottom:646.264128pt;}
.y80_c00492{bottom:647.668656pt;}
.y7f_c00492{bottom:648.282973pt;}
.y7e_c00492{bottom:649.054296pt;}
.y7d_c00492{bottom:650.138656pt;}
.y7c_c00492{bottom:673.425323pt;}
.y7b_c00492{bottom:674.665181pt;}
.y7a_c00492{bottom:675.632861pt;}
.y79_c00492{bottom:676.877723pt;}
.y78_c00492{bottom:677.276387pt;}
.y77_c00492{bottom:678.516339pt;}
.y76_c00492{bottom:679.201947pt;}
.y75_c00492{bottom:679.486912pt;}
.y74_c00492{bottom:680.555765pt;}
.y73_c00492{bottom:681.099899pt;}
.y72_c00492{bottom:704.895635pt;}
.y71_c00492{bottom:705.798219pt;}
.y70_c00492{bottom:707.332224pt;}
.y6f_c00492{bottom:707.703896pt;}
.y6e_c00492{bottom:708.484083pt;}
.y6d_c00492{bottom:708.747611pt;}
.y6c_c00492{bottom:710.141725pt;}
.y6b_c00492{bottom:710.510392pt;}
.y6a_c00492{bottom:711.393795pt;}
.y69_c00492{bottom:711.783771pt;}
.y68_c00492{bottom:712.292131pt;}
.y67_c00492{bottom:712.544141pt;}
.y66_c00492{bottom:737.744107pt;}
.y65_c00492{bottom:738.547029pt;}
.y64_c00492{bottom:739.636355pt;}
.y63_c00492{bottom:739.876019pt;}
.y62_c00492{bottom:740.189163pt;}
.y61_c00492{bottom:740.970371pt;}
.y60_c00492{bottom:741.135013pt;}
.y5f_c00492{bottom:741.450072pt;}
.y5e_c00492{bottom:742.068123pt;}
.y5d_c00492{bottom:742.305723pt;}
.y5c_c00492{bottom:770.382971pt;}
.y5b_c00492{bottom:771.493349pt;}
.y5a_c00492{bottom:772.453293pt;}
.y59_c00492{bottom:772.914088pt;}
.y58_c00492{bottom:773.531728pt;}
.y57_c00492{bottom:774.815163pt;}
.y56_c00492{bottom:775.421707pt;}
.y55_c00492{bottom:776.661560pt;}
.y54_c00492{bottom:777.141765pt;}
.y53_c00492{bottom:777.778816pt;}
.y52_c00492{bottom:778.513621pt;}
.y51_c00492{bottom:779.510307pt;}
.y50_c00492{bottom:801.298571pt;}
.y4f_c00492{bottom:802.677155pt;}
.y4e_c00492{bottom:802.836552pt;}
.y4d_c00492{bottom:803.357803pt;}
.y4c_c00492{bottom:804.369669pt;}
.y4b_c00492{bottom:804.741117pt;}
.y4a_c00492{bottom:805.377299pt;}
.y49_c00492{bottom:806.267384pt;}
.y48_c00492{bottom:806.651331pt;}
.y47_c00492{bottom:807.549603pt;}
.y46_c00492{bottom:807.804525pt;}
.y45_c00492{bottom:808.553872pt;}
.y44_c00492{bottom:832.647453pt;}
.y43_c00492{bottom:833.033965pt;}
.y42_c00492{bottom:833.828240pt;}
.y41_c00492{bottom:834.454341pt;}
.y40_c00492{bottom:834.681245pt;}
.y3f_c00492{bottom:834.848195pt;}
.y3e_c00492{bottom:835.303499pt;}
.y3d_c00492{bottom:835.541267pt;}
.y3c_c00492{bottom:836.017419pt;}
.y3b_c00492{bottom:836.484416pt;}
.y3a_c00492{bottom:836.876131pt;}
.y39_c00492{bottom:862.650885pt;}
.y38_c00492{bottom:862.920349pt;}
.y37_c00492{bottom:863.271787pt;}
.y36_c00492{bottom:864.240256pt;}
.y35_c00492{bottom:864.514864pt;}
.y34_c00492{bottom:865.471512pt;}
.y33_c00492{bottom:865.652885pt;}
.y32_c00492{bottom:866.443587pt;}
.y31_c00492{bottom:866.708549pt;}
.y30_c00492{bottom:867.060136pt;}
.y2f_c00492{bottom:867.837829pt;}
.y2e_c00492{bottom:895.710440pt;}
.y2d_c00492{bottom:896.393117pt;}
.y2c_c00492{bottom:897.488141pt;}
.y2b_c00492{bottom:898.883064pt;}
.y2a_c00492{bottom:899.414168pt;}
.y29_c00492{bottom:899.709307pt;}
.y28_c00492{bottom:900.244107pt;}
.y27_c00492{bottom:901.074045pt;}
.y26_c00492{bottom:901.749387pt;}
.y25_c00492{bottom:902.162667pt;}
.y24_c00492{bottom:926.828496pt;}
.y23_c00492{bottom:927.155220pt;}
.y22_c00492{bottom:927.921509pt;}
.y21_c00492{bottom:928.144977pt;}
.y20_c00492{bottom:928.776424pt;}
.y1f_c00492{bottom:929.098484pt;}
.y1e_c00492{bottom:929.959708pt;}
.y1d_c00492{bottom:930.286605pt;}
.y1c_c00492{bottom:931.033583pt;}
.y1b_c00492{bottom:931.474241pt;}
.y1a_c00492{bottom:932.221461pt;}
.y19_c00492{bottom:932.636392pt;}
.y18_c00492{bottom:958.113428pt;}
.y17_c00492{bottom:958.570963pt;}
.y16_c00492{bottom:958.928475pt;}
.y15_c00492{bottom:960.106061pt;}
.y14_c00492{bottom:960.696432pt;}
.y13_c00492{bottom:961.399063pt;}
.y12_c00492{bottom:961.756731pt;}
.y11_c00492{bottom:962.821745pt;}
.y10_c00492{bottom:963.979812pt;}
.yf_c00492{bottom:964.558707pt;}
.ye_c00492{bottom:988.983989pt;}
.yd_c00492{bottom:989.747956pt;}
.yc_c00492{bottom:990.525061pt;}
.yb_c00492{bottom:991.672840pt;}
.ya_c00492{bottom:992.316080pt;}
.y9_c00492{bottom:992.684327pt;}
.y8_c00492{bottom:993.467499pt;}
.y7_c00492{bottom:994.206991pt;}
.y6_c00492{bottom:994.590473pt;}
.y5_c00492{bottom:995.095792pt;}
.y4_c00492{bottom:996.482667pt;}
.y3_c00492{bottom:1041.675637pt;}
.y2_c00492{bottom:1043.169013pt;}
.y1_c00492{bottom:1044.041333pt;}
.h3_c00492{height:58.671624pt;}
.he_c00492{height:58.680862pt;}
.h6_c00492{height:64.006272pt;}
.hb_c00492{height:64.012799pt;}
.h12_c00492{height:64.016926pt;}
.hf_c00492{height:64.019997pt;}
.h4_c00492{height:69.339192pt;}
.h9_c00492{height:69.340128pt;}
.ha_c00492{height:69.347199pt;}
.h5_c00492{height:74.672976pt;}
.h8_c00492{height:74.673984pt;}
.hc_c00492{height:74.681599pt;}
.h13_c00492{height:74.686413pt;}
.h7_c00492{height:80.007840pt;}
.hd_c00492{height:80.015998pt;}
.h10_c00492{height:85.350398pt;}
.h11_c00492{height:85.355901pt;}
.h2_c00492{height:101.348785pt;}
.h15_c00492{height:101.360132pt;}
.h14_c00492{height:112.029620pt;}
.h0_c00492{height:1107.840000pt;}
.h1_c00492{height:1108.000000pt;}
.w0_c00492{width:796.533333pt;}
.w1_c00492{width:796.666667pt;}
.x0_c00492{left:0.000000pt;}
.x3c_c00492{left:153.233072pt;}
.x2b_c00492{left:154.953707pt;}
.x4_c00492{left:157.430667pt;}
.x46_c00492{left:173.880248pt;}
.x7d_c00492{left:182.369333pt;}
.x42_c00492{left:184.204387pt;}
.x71_c00492{left:192.527947pt;}
.x15_c00492{left:194.745717pt;}
.x95_c00492{left:200.968132pt;}
.x59_c00492{left:202.052965pt;}
.x2c_c00492{left:203.889813pt;}
.xf_c00492{left:204.825543pt;}
.x83_c00492{left:211.409333pt;}
.x35_c00492{left:213.006160pt;}
.x3d_c00492{left:215.566003pt;}
.x4e_c00492{left:223.516819pt;}
.x36_c00492{left:232.643773pt;}
.x64_c00492{left:240.533893pt;}
.x69_c00492{left:241.665840pt;}
.x24_c00492{left:243.012123pt;}
.x5e_c00492{left:250.488000pt;}
.x1d_c00492{left:252.562667pt;}
.x8e_c00492{left:255.287023pt;}
.x90_c00492{left:260.584677pt;}
.x3e_c00492{left:261.479381pt;}
.x16_c00492{left:262.687485pt;}
.x5_c00492{left:264.113333pt;}
.x7e_c00492{left:268.262667pt;}
.x4b_c00492{left:270.574680pt;}
.x4f_c00492{left:271.752808pt;}
.x1e_c00492{left:282.082667pt;}
.x5a_c00492{left:289.885795pt;}
.x4c_c00492{left:290.929347pt;}
.x7a_c00492{left:299.427173pt;}
.x10_c00492{left:301.293457pt;}
.x6_c00492{left:302.984000pt;}
.x50_c00492{left:310.107725pt;}
.x25_c00492{left:311.627605pt;}
.x56_c00492{left:320.266779pt;}
.x2d_c00492{left:321.743707pt;}
.x89_c00492{left:327.245333pt;}
.x91_c00492{left:328.766241pt;}
.x1f_c00492{left:330.321333pt;}
.x37_c00492{left:331.279821pt;}
.x7_c00492{left:332.482667pt;}
.x92_c00492{left:338.217264pt;}
.x47_c00492{left:339.197211pt;}
.x84_c00492{left:347.793333pt;}
.x65_c00492{left:349.265893pt;}
.x2e_c00492{left:351.491541pt;}
.x8b_c00492{left:357.805333pt;}
.x5f_c00492{left:358.716000pt;}
.x5b_c00492{left:359.709973pt;}
.x72_c00492{left:367.046213pt;}
.x87_c00492{left:368.923627pt;}
.x17_c00492{left:370.662293pt;}
.x1_c00492{left:373.777333pt;}
.x80_c00492{left:377.300000pt;}
.x75_c00492{left:378.215147pt;}
.x8f_c00492{left:387.285945pt;}
.x85_c00492{left:388.306667pt;}
.x8_c00492{left:389.366667pt;}
.x2_c00492{left:391.932493pt;}
.x7b_c00492{left:396.903280pt;}
.x51_c00492{left:397.857261pt;}
.x26_c00492{left:399.445747pt;}
.x18_c00492{left:400.424407pt;}
.x88_c00492{left:407.090880pt;}
.x2f_c00492{left:408.398987pt;}
.x76_c00492{left:416.137813pt;}
.x5c_c00492{left:417.142200pt;}
.x11_c00492{left:419.860333pt;}
.x3_c00492{left:423.013381pt;}
.x93_c00492{left:426.097055pt;}
.x20_c00492{left:427.802667pt;}
.x30_c00492{left:429.278075pt;}
.x86_c00492{left:436.004000pt;}
.x5d_c00492{left:437.238608pt;}
.x8c_c00492{left:445.437333pt;}
.x3f_c00492{left:446.687525pt;}
.x38_c00492{left:448.681464pt;}
.x9_c00492{left:449.610667pt;}
.x77_c00492{left:455.321813pt;}
.x31_c00492{left:457.583112pt;}
.x48_c00492{left:466.649651pt;}
.x52_c00492{left:467.812635pt;}
.x78_c00492{left:475.444480pt;}
.x6a_c00492{left:476.708507pt;}
.xa_c00492{left:477.937333pt;}
.x7c_c00492{left:485.053093pt;}
.x21_c00492{left:486.820000pt;}
.x43_c00492{left:488.308608pt;}
.x81_c00492{left:494.377333pt;}
.x66_c00492{left:495.627227pt;}
.x57_c00492{left:496.699320pt;}
.x8d_c00492{left:504.277333pt;}
.x73_c00492{left:505.570827pt;}
.x19_c00492{left:507.961864pt;}
.x6b_c00492{left:514.812507pt;}
.x67_c00492{left:524.939227pt;}
.x27_c00492{left:525.979947pt;}
.xb_c00492{left:527.417333pt;}
.x6e_c00492{left:534.262667pt;}
.x32_c00492{left:535.835016pt;}
.x6c_c00492{left:543.899173pt;}
.x4d_c00492{left:545.864013pt;}
.x39_c00492{left:555.014939pt;}
.x28_c00492{left:556.454075pt;}
.x94_c00492{left:560.496809pt;}
.x6f_c00492{left:563.551253pt;}
.x1a_c00492{left:565.356688pt;}
.x53_c00492{left:566.421872pt;}
.x7f_c00492{left:572.981333pt;}
.x60_c00492{left:573.914667pt;}
.x79_c00492{left:583.009813pt;}
.x1b_c00492{left:585.726559pt;}
.x3a_c00492{left:595.104832pt;}
.x82_c00492{left:603.201333pt;}
.x54_c00492{left:604.636808pt;}
.x3b_c00492{left:607.347667pt;}
.x58_c00492{left:614.116557pt;}
.xc_c00492{left:615.708000pt;}
.x70_c00492{left:623.112453pt;}
.x44_c00492{left:624.414699pt;}
.x12_c00492{left:625.805687pt;}
.x55_c00492{left:633.454672pt;}
.x33_c00492{left:635.148693pt;}
.x68_c00492{left:643.283227pt;}
.x61_c00492{left:653.362667pt;}
.x40_c00492{left:654.335053pt;}
.x13_c00492{left:655.563401pt;}
.x6d_c00492{left:662.957840pt;}
.x22_c00492{left:664.673333pt;}
.x49_c00492{left:673.261877pt;}
.xd_c00492{left:675.485333pt;}
.x8a_c00492{left:682.097333pt;}
.x34_c00492{left:683.427411pt;}
.x1c_c00492{left:685.089141pt;}
.x14_c00492{left:693.733237pt;}
.x29_c00492{left:703.124341pt;}
.x23_c00492{left:713.436000pt;}
.x62_c00492{left:722.242667pt;}
.x41_c00492{left:723.741112pt;}
.x45_c00492{left:724.727117pt;}
.x74_c00492{left:732.206000pt;}
.x2a_c00492{left:733.135784pt;}
.xe_c00492{left:734.252000pt;}
.x4a_c00492{left:742.685515pt;}
.x63_c00492{left:764.988000pt;}
}





/* 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_c00493 {
    display:none;
  }
  .loading-indicator_c00493.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00493 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_c00493 { 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_c00493" -> "#page-container .classname_c00493")
 */
.pf_c00493 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00493 { /* 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_c00493.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00493 { /* 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_c00493 { /* 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_c00493 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00493 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00493 {overflow:visible;}
  }
}
.c_c00493 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00493 { /* 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_c00493:after { /* webkit #35443 */
  content: '';
}
.t_c00493:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00493 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 */
}
.__c00493 { /* 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_c00493 { /* info for Javascript */
  display:none;
}
.l_c00493 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00493 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00493 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00493: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_c00493 {
    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_c00493.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00493.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_c00493 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00493{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00493;src:url('chunks/assets/font_b11a17f404e7258299fdf971.woff2')format("woff");}.ff1_c00493{font-family:ff1_c00493;line-height:1.000000;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;}
.m2a_c00493{transform:matrix(0.054085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054085,0.000000,0.000000,0.250000,0,0);}
.m2_c00493{transform:matrix(0.055315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.055315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.055315,0.000000,0.000000,0.250000,0,0);}
.m38_c00493{transform:matrix(0.114550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114550,0.000000,0.000000,0.250000,0,0);}
.m26_c00493{transform:matrix(0.120415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120415,0.000000,0.000000,0.250000,0,0);}
.m30_c00493{transform:matrix(0.134165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134165,0.000000,0.000000,0.250000,0,0);}
.m2f_c00493{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m28_c00493{transform:matrix(0.169705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169705,0.000000,0.000000,0.250000,0,0);}
.m31_c00493{transform:matrix(0.175570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175570,0.000000,0.000000,0.250000,0,0);}
.m7_c00493{transform:matrix(0.191286,-0.002678,0.003500,0.249976,0,0);-ms-transform:matrix(0.191286,-0.002678,0.003500,0.249976,0,0);-webkit-transform:matrix(0.191286,-0.002678,0.003500,0.249976,0,0);}
.m8_c00493{transform:matrix(0.192951,-0.002701,0.003500,0.249976,0,0);-ms-transform:matrix(0.192951,-0.002701,0.003500,0.249976,0,0);-webkit-transform:matrix(0.192951,-0.002701,0.003500,0.249976,0,0);}
.m19_c00493{transform:matrix(0.194347,-0.001166,0.001500,0.249996,0,0);-ms-transform:matrix(0.194347,-0.001166,0.001500,0.249996,0,0);-webkit-transform:matrix(0.194347,-0.001166,0.001500,0.249996,0,0);}
.m29_c00493{transform:matrix(0.201805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201805,0.000000,0.000000,0.250000,0,0);}
.m6_c00493{transform:matrix(0.202815,-0.002839,0.003500,0.249976,0,0);-ms-transform:matrix(0.202815,-0.002839,0.003500,0.249976,0,0);-webkit-transform:matrix(0.202815,-0.002839,0.003500,0.249976,0,0);}
.m4_c00493{transform:matrix(0.207535,-0.002905,0.003500,0.249976,0,0);-ms-transform:matrix(0.207535,-0.002905,0.003500,0.249976,0,0);-webkit-transform:matrix(0.207535,-0.002905,0.003500,0.249976,0,0);}
.m36_c00493{transform:matrix(0.211365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211365,0.000000,0.000000,0.250000,0,0);}
.m35_c00493{transform:matrix(0.218640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218640,0.000000,0.000000,0.250000,0,0);}
.m18_c00493{transform:matrix(0.219801,-0.001319,0.001500,0.249996,0,0);-ms-transform:matrix(0.219801,-0.001319,0.001500,0.249996,0,0);-webkit-transform:matrix(0.219801,-0.001319,0.001500,0.249996,0,0);}
.m10_c00493{transform:matrix(0.239466,-0.001437,0.001500,0.249996,0,0);-ms-transform:matrix(0.239466,-0.001437,0.001500,0.249996,0,0);-webkit-transform:matrix(0.239466,-0.001437,0.001500,0.249996,0,0);}
.m2b_c00493{transform:matrix(0.252980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252980,0.000000,0.000000,0.250000,0,0);}
.m2c_c00493{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m13_c00493{transform:matrix(0.264270,-0.001586,0.001500,0.249996,0,0);-ms-transform:matrix(0.264270,-0.001586,0.001500,0.249996,0,0);-webkit-transform:matrix(0.264270,-0.001586,0.001500,0.249996,0,0);}
.me_c00493{transform:matrix(0.266375,-0.001598,0.001500,0.249996,0,0);-ms-transform:matrix(0.266375,-0.001598,0.001500,0.249996,0,0);-webkit-transform:matrix(0.266375,-0.001598,0.001500,0.249996,0,0);}
.ma_c00493{transform:matrix(0.272928,-0.003821,0.003500,0.249976,0,0);-ms-transform:matrix(0.272928,-0.003821,0.003500,0.249976,0,0);-webkit-transform:matrix(0.272928,-0.003821,0.003500,0.249976,0,0);}
.m1d_c00493{transform:matrix(0.276380,-0.001658,0.001500,0.249996,0,0);-ms-transform:matrix(0.276380,-0.001658,0.001500,0.249996,0,0);-webkit-transform:matrix(0.276380,-0.001658,0.001500,0.249996,0,0);}
.m25_c00493{transform:matrix(0.281605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281605,0.000000,0.000000,0.250000,0,0);}
.m14_c00493{transform:matrix(0.288795,-0.001733,0.001500,0.249996,0,0);-ms-transform:matrix(0.288795,-0.001733,0.001500,0.249996,0,0);-webkit-transform:matrix(0.288795,-0.001733,0.001500,0.249996,0,0);}
.m1c_c00493{transform:matrix(0.336499,-0.002019,0.001500,0.249996,0,0);-ms-transform:matrix(0.336499,-0.002019,0.001500,0.249996,0,0);-webkit-transform:matrix(0.336499,-0.002019,0.001500,0.249996,0,0);}
.m33_c00493{transform:matrix(0.339600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339600,0.000000,0.000000,0.250000,0,0);}
.m16_c00493{transform:matrix(0.342159,-0.002053,0.001500,0.249996,0,0);-ms-transform:matrix(0.342159,-0.002053,0.001500,0.249996,0,0);-webkit-transform:matrix(0.342159,-0.002053,0.001500,0.249996,0,0);}
.m9_c00493{transform:matrix(0.343231,-0.004805,0.003500,0.249976,0,0);-ms-transform:matrix(0.343231,-0.004805,0.003500,0.249976,0,0);-webkit-transform:matrix(0.343231,-0.004805,0.003500,0.249976,0,0);}
.mf_c00493{transform:matrix(0.349659,-0.002098,0.001500,0.249996,0,0);-ms-transform:matrix(0.349659,-0.002098,0.001500,0.249996,0,0);-webkit-transform:matrix(0.349659,-0.002098,0.001500,0.249996,0,0);}
.md_c00493{transform:matrix(0.355259,-0.002132,0.001500,0.249996,0,0);-ms-transform:matrix(0.355259,-0.002132,0.001500,0.249996,0,0);-webkit-transform:matrix(0.355259,-0.002132,0.001500,0.249996,0,0);}
.m37_c00493{transform:matrix(0.360890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360890,0.000000,0.000000,0.250000,0,0);}
.m5_c00493{transform:matrix(0.375408,-0.005256,0.003500,0.249976,0,0);-ms-transform:matrix(0.375408,-0.005256,0.003500,0.249976,0,0);-webkit-transform:matrix(0.375408,-0.005256,0.003500,0.249976,0,0);}
.m15_c00493{transform:matrix(0.378013,-0.002268,0.001500,0.249996,0,0);-ms-transform:matrix(0.378013,-0.002268,0.001500,0.249996,0,0);-webkit-transform:matrix(0.378013,-0.002268,0.001500,0.249996,0,0);}
.m1_c00493{transform:matrix(0.381875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381875,0.000000,0.000000,0.250000,0,0);}
.m3_c00493{transform:matrix(0.397406,-0.005564,0.003500,0.249976,0,0);-ms-transform:matrix(0.397406,-0.005564,0.003500,0.249976,0,0);-webkit-transform:matrix(0.397406,-0.005564,0.003500,0.249976,0,0);}
.m1b_c00493{transform:matrix(0.409038,-0.002454,0.001500,0.249996,0,0);-ms-transform:matrix(0.409038,-0.002454,0.001500,0.249996,0,0);-webkit-transform:matrix(0.409038,-0.002454,0.001500,0.249996,0,0);}
.m27_c00493{transform:matrix(0.410000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00493{transform:matrix(0.415693,-0.002494,0.001500,0.249996,0,0);-ms-transform:matrix(0.415693,-0.002494,0.001500,0.249996,0,0);-webkit-transform:matrix(0.415693,-0.002494,0.001500,0.249996,0,0);}
.m0_c00493{transform:matrix(0.429780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429780,0.000000,0.000000,0.250000,0,0);}
.m17_c00493{transform:matrix(0.432047,-0.002592,0.001500,0.249996,0,0);-ms-transform:matrix(0.432047,-0.002592,0.001500,0.249996,0,0);-webkit-transform:matrix(0.432047,-0.002592,0.001500,0.249996,0,0);}
.m12_c00493{transform:matrix(0.460112,-0.002761,0.001500,0.249996,0,0);-ms-transform:matrix(0.460112,-0.002761,0.001500,0.249996,0,0);-webkit-transform:matrix(0.460112,-0.002761,0.001500,0.249996,0,0);}
.m21_c00493{transform:matrix(0.463060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463060,0.000000,0.000000,0.250000,0,0);}
.m1e_c00493{transform:matrix(0.493331,-0.002960,0.001500,0.249996,0,0);-ms-transform:matrix(0.493331,-0.002960,0.001500,0.249996,0,0);-webkit-transform:matrix(0.493331,-0.002960,0.001500,0.249996,0,0);}
.m32_c00493{transform:matrix(0.551825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551825,0.000000,0.000000,0.250000,0,0);}
.m2e_c00493{transform:matrix(0.574890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574890,0.000000,0.000000,0.250000,0,0);}
.m11_c00493{transform:matrix(0.583534,-0.003501,0.001500,0.249996,0,0);-ms-transform:matrix(0.583534,-0.003501,0.001500,0.249996,0,0);-webkit-transform:matrix(0.583534,-0.003501,0.001500,0.249996,0,0);}
.m22_c00493{transform:matrix(0.590930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590930,0.000000,0.000000,0.250000,0,0);}
.m24_c00493{transform:matrix(0.626775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.626775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.626775,0.000000,0.000000,0.250000,0,0);}
.mc_c00493{transform:matrix(0.651163,-0.003907,0.001500,0.249996,0,0);-ms-transform:matrix(0.651163,-0.003907,0.001500,0.249996,0,0);-webkit-transform:matrix(0.651163,-0.003907,0.001500,0.249996,0,0);}
.m34_c00493{transform:matrix(0.655995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.655995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.655995,0.000000,0.000000,0.250000,0,0);}
.m2d_c00493{transform:matrix(0.935910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.935910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.935910,0.000000,0.000000,0.250000,0,0);}
.m1f_c00493{transform:matrix(0.964210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.964210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.964210,0.000000,0.000000,0.250000,0,0);}
.m39_c00493{transform:matrix(1.129785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.129785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.129785,0.000000,0.000000,0.250000,0,0);}
.mb_c00493{transform:matrix(1.317106,-0.007903,0.001500,0.249996,0,0);-ms-transform:matrix(1.317106,-0.007903,0.001500,0.249996,0,0);-webkit-transform:matrix(1.317106,-0.007903,0.001500,0.249996,0,0);}
.m23_c00493{transform:matrix(1.576140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.576140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.576140,0.000000,0.000000,0.250000,0,0);}
.m20_c00493{transform:matrix(2.155255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.155255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.155255,0.000000,0.000000,0.250000,0,0);}
.v0_c00493{vertical-align:0.000000px;}
.ls0_c00493{letter-spacing:0.000000px;}
.sc__c00493{text-shadow:none;}
.sc0_c00493{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__c00493{-webkit-text-stroke:0px transparent;}
.sc0_c00493{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00493{word-spacing:0.000000px;}
.fc0_c00493{color:transparent;}
.fs1_c00493{font-size:18.000000px;}
.fs5_c00493{font-size:30.000000px;}
.fs0_c00493{font-size:78.000000px;}
.fs3_c00493{font-size:84.001512px;}
.fs2_c00493{font-size:102.009996px;}
.fs4_c00493{font-size:150.000000px;}
.y0_c00493{bottom:0.000000px;}
.y2b_c00493{bottom:579.057000px;}
.y2a_c00493{bottom:582.390000px;}
.y29_c00493{bottom:585.786000px;}
.y27_c00493{bottom:628.290000px;}
.y28_c00493{bottom:629.100000px;}
.y1f_c00493{bottom:665.820000px;}
.y26_c00493{bottom:668.116500px;}
.y25_c00493{bottom:698.356500px;}
.y24_c00493{bottom:722.121000px;}
.y23_c00493{bottom:731.430000px;}
.y22_c00493{bottom:752.760000px;}
.y21_c00493{bottom:795.420000px;}
.y14_c00493{bottom:800.317833px;}
.y13_c00493{bottom:800.318373px;}
.y15_c00493{bottom:800.318544px;}
.y17_c00493{bottom:800.318715px;}
.y18_c00493{bottom:800.318775px;}
.y1a_c00493{bottom:800.319066px;}
.y16_c00493{bottom:800.319144px;}
.y19_c00493{bottom:800.319186px;}
.y1b_c00493{bottom:800.319426px;}
.y1c_c00493{bottom:800.320017px;}
.y1d_c00493{bottom:800.320197px;}
.y1e_c00493{bottom:800.320557px;}
.y20_c00493{bottom:802.440000px;}
.yb_c00493{bottom:836.602500px;}
.yc_c00493{bottom:837.591879px;}
.yd_c00493{bottom:837.793137px;}
.ye_c00493{bottom:838.062894px;}
.yf_c00493{bottom:838.700643px;}
.y10_c00493{bottom:838.845030px;}
.y11_c00493{bottom:839.108568px;}
.y12_c00493{bottom:839.621865px;}
.y2_c00493{bottom:1118.070000px;}
.y3_c00493{bottom:1118.425500px;}
.y4_c00493{bottom:1118.948946px;}
.y5_c00493{bottom:1119.859842px;}
.y6_c00493{bottom:1120.818072px;}
.y7_c00493{bottom:1122.203316px;}
.y8_c00493{bottom:1122.950307px;}
.y9_c00493{bottom:1123.404915px;}
.ya_c00493{bottom:1124.323581px;}
.y1_c00493{bottom:1124.388000px;}
.h3_c00493{height:18.000000px;}
.h7_c00493{height:30.000000px;}
.h2_c00493{height:78.000000px;}
.h5_c00493{height:84.001512px;}
.h4_c00493{height:102.009996px;}
.h6_c00493{height:150.000000px;}
.h0_c00493{height:1246.320000px;}
.h1_c00493{height:1246.500000px;}
.w0_c00493{width:896.100000px;}
.w1_c00493{width:896.250000px;}
.x0_c00493{left:0.000000px;}
.x4_c00493{left:17.307000px;}
.x5_c00493{left:54.696000px;}
.x14_c00493{left:110.159577px;}
.x6_c00493{left:119.760000px;}
.x15_c00493{left:132.570387px;}
.xc_c00493{left:169.048500px;}
.x7_c00493{left:188.205000px;}
.x16_c00493{left:255.693315px;}
.x2e_c00493{left:282.690000px;}
.x8_c00493{left:287.151000px;}
.x17_c00493{left:290.794575px;}
.x35_c00493{left:294.300000px;}
.x34_c00493{left:311.580000px;}
.xd_c00493{left:333.945000px;}
.x9_c00493{left:340.507500px;}
.x18_c00493{left:347.225109px;}
.xe_c00493{left:367.488000px;}
.xa_c00493{left:372.979500px;}
.x19_c00493{left:377.736207px;}
.x2f_c00493{left:386.640000px;}
.xf_c00493{left:412.447500px;}
.x30_c00493{left:422.010000px;}
.xb_c00493{left:438.598500px;}
.x1_c00493{left:451.440000px;}
.x1a_c00493{left:469.808019px;}
.x3_c00493{left:473.310000px;}
.x31_c00493{left:489.780000px;}
.x1b_c00493{left:496.538982px;}
.x2_c00493{left:505.170000px;}
.x10_c00493{left:518.739000px;}
.x32_c00493{left:520.290000px;}
.x1c_c00493{left:531.100224px;}
.x11_c00493{left:542.803500px;}
.x33_c00493{left:545.940000px;}
.x12_c00493{left:586.726500px;}
.x1d_c00493{left:606.701442px;}
.x1e_c00493{left:644.232792px;}
.x13_c00493{left:672.276000px;}
.x1f_c00493{left:685.544277px;}
.x2a_c00493{left:756.810000px;}
.x2b_c00493{left:766.260000px;}
.x24_c00493{left:789.750000px;}
.x26_c00493{left:828.630000px;}
.x28_c00493{left:835.920000px;}
.x25_c00493{left:837.540000px;}
.x22_c00493{left:853.740000px;}
.x21_c00493{left:855.090000px;}
.x20_c00493{left:856.980000px;}
.x23_c00493{left:858.600000px;}
.x2d_c00493{left:861.030000px;}
.x27_c00493{left:866.160000px;}
.x29_c00493{left:870.480000px;}
.x2c_c00493{left:877.230000px;}
@media print{
.v0_c00493{vertical-align:0.000000pt;}
.ls0_c00493{letter-spacing:0.000000pt;}
.ws0_c00493{word-spacing:0.000000pt;}
.fs1_c00493{font-size:16.000000pt;}
.fs5_c00493{font-size:26.666667pt;}
.fs0_c00493{font-size:69.333333pt;}
.fs3_c00493{font-size:74.668011pt;}
.fs2_c00493{font-size:90.675552pt;}
.fs4_c00493{font-size:133.333333pt;}
.y0_c00493{bottom:0.000000pt;}
.y2b_c00493{bottom:514.717333pt;}
.y2a_c00493{bottom:517.680000pt;}
.y29_c00493{bottom:520.698667pt;}
.y27_c00493{bottom:558.480000pt;}
.y28_c00493{bottom:559.200000pt;}
.y1f_c00493{bottom:591.840000pt;}
.y26_c00493{bottom:593.881333pt;}
.y25_c00493{bottom:620.761333pt;}
.y24_c00493{bottom:641.885333pt;}
.y23_c00493{bottom:650.160000pt;}
.y22_c00493{bottom:669.120000pt;}
.y21_c00493{bottom:707.040000pt;}
.y14_c00493{bottom:711.393629pt;}
.y13_c00493{bottom:711.394109pt;}
.y15_c00493{bottom:711.394261pt;}
.y17_c00493{bottom:711.394413pt;}
.y18_c00493{bottom:711.394467pt;}
.y1a_c00493{bottom:711.394725pt;}
.y16_c00493{bottom:711.394795pt;}
.y19_c00493{bottom:711.394832pt;}
.y1b_c00493{bottom:711.395045pt;}
.y1c_c00493{bottom:711.395571pt;}
.y1d_c00493{bottom:711.395731pt;}
.y1e_c00493{bottom:711.396051pt;}
.y20_c00493{bottom:713.280000pt;}
.yb_c00493{bottom:743.646667pt;}
.yc_c00493{bottom:744.526115pt;}
.yd_c00493{bottom:744.705011pt;}
.ye_c00493{bottom:744.944795pt;}
.yf_c00493{bottom:745.511683pt;}
.y10_c00493{bottom:745.640027pt;}
.y11_c00493{bottom:745.874283pt;}
.y12_c00493{bottom:746.330547pt;}
.y2_c00493{bottom:993.840000pt;}
.y3_c00493{bottom:994.156000pt;}
.y4_c00493{bottom:994.621285pt;}
.y5_c00493{bottom:995.430971pt;}
.y6_c00493{bottom:996.282731pt;}
.y7_c00493{bottom:997.514059pt;}
.y8_c00493{bottom:998.178051pt;}
.y9_c00493{bottom:998.582147pt;}
.ya_c00493{bottom:999.398739pt;}
.y1_c00493{bottom:999.456000pt;}
.h3_c00493{height:16.000000pt;}
.h7_c00493{height:26.666667pt;}
.h2_c00493{height:69.333333pt;}
.h5_c00493{height:74.668011pt;}
.h4_c00493{height:90.675552pt;}
.h6_c00493{height:133.333333pt;}
.h0_c00493{height:1107.840000pt;}
.h1_c00493{height:1108.000000pt;}
.w0_c00493{width:796.533333pt;}
.w1_c00493{width:796.666667pt;}
.x0_c00493{left:0.000000pt;}
.x4_c00493{left:15.384000pt;}
.x5_c00493{left:48.618667pt;}
.x14_c00493{left:97.919624pt;}
.x6_c00493{left:106.453333pt;}
.x15_c00493{left:117.840344pt;}
.xc_c00493{left:150.265333pt;}
.x7_c00493{left:167.293333pt;}
.x16_c00493{left:227.282947pt;}
.x2e_c00493{left:251.280000pt;}
.x8_c00493{left:255.245333pt;}
.x17_c00493{left:258.484067pt;}
.x35_c00493{left:261.600000pt;}
.x34_c00493{left:276.960000pt;}
.xd_c00493{left:296.840000pt;}
.x9_c00493{left:302.673333pt;}
.x18_c00493{left:308.644541pt;}
.xe_c00493{left:326.656000pt;}
.xa_c00493{left:331.537333pt;}
.x19_c00493{left:335.765517pt;}
.x2f_c00493{left:343.680000pt;}
.xf_c00493{left:366.620000pt;}
.x30_c00493{left:375.120000pt;}
.xb_c00493{left:389.865333pt;}
.x1_c00493{left:401.280000pt;}
.x1a_c00493{left:417.607128pt;}
.x3_c00493{left:420.720000pt;}
.x31_c00493{left:435.360000pt;}
.x1b_c00493{left:441.367984pt;}
.x2_c00493{left:449.040000pt;}
.x10_c00493{left:461.101333pt;}
.x32_c00493{left:462.480000pt;}
.x1c_c00493{left:472.089088pt;}
.x11_c00493{left:482.492000pt;}
.x33_c00493{left:485.280000pt;}
.x12_c00493{left:521.534667pt;}
.x1d_c00493{left:539.290171pt;}
.x1e_c00493{left:572.651371pt;}
.x13_c00493{left:597.578667pt;}
.x1f_c00493{left:609.372691pt;}
.x2a_c00493{left:672.720000pt;}
.x2b_c00493{left:681.120000pt;}
.x24_c00493{left:702.000000pt;}
.x26_c00493{left:736.560000pt;}
.x28_c00493{left:743.040000pt;}
.x25_c00493{left:744.480000pt;}
.x22_c00493{left:758.880000pt;}
.x21_c00493{left:760.080000pt;}
.x20_c00493{left:761.760000pt;}
.x23_c00493{left:763.200000pt;}
.x2d_c00493{left:765.360000pt;}
.x27_c00493{left:769.920000pt;}
.x29_c00493{left:773.760000pt;}
.x2c_c00493{left:779.760000pt;}
}





/* 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_c00494 {
    display:none;
  }
  .loading-indicator_c00494.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00494 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_c00494 { 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_c00494" -> "#page-container .classname_c00494")
 */
.pf_c00494 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00494 { /* 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_c00494.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00494 { /* 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_c00494 { /* 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_c00494 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00494 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00494 {overflow:visible;}
  }
}
.c_c00494 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00494 { /* 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_c00494:after { /* webkit #35443 */
  content: '';
}
.t_c00494:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00494 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 */
}
.__c00494 { /* 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_c00494 { /* info for Javascript */
  display:none;
}
.l_c00494 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00494 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00494 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00494: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_c00494 {
    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_c00494.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00494.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_c00494 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00494{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00494;src:url('chunks/assets/font_fabf4b590f7fb32aea93ffb2.woff2')format("woff");}.ff1_c00494{font-family:ff1_c00494;line-height:1.000000;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;}
.md9_c00494{transform:matrix(0.010598,0.000393,-0.009253,0.249829,0,0);-ms-transform:matrix(0.010598,0.000393,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.010598,0.000393,-0.009253,0.249829,0,0);}
.mda_c00494{transform:matrix(0.013511,0.000500,-0.009253,0.249829,0,0);-ms-transform:matrix(0.013511,0.000500,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.013511,0.000500,-0.009253,0.249829,0,0);}
.m12e_c00494{transform:matrix(0.030187,0.000453,-0.003750,0.249972,0,0);-ms-transform:matrix(0.030187,0.000453,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.030187,0.000453,-0.003750,0.249972,0,0);}
.m11b_c00494{transform:matrix(0.107453,0.001612,-0.003750,0.249972,0,0);-ms-transform:matrix(0.107453,0.001612,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.107453,0.001612,-0.003750,0.249972,0,0);}
.m4a_c00494{transform:matrix(0.119708,0.004434,-0.009253,0.249829,0,0);-ms-transform:matrix(0.119708,0.004434,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.119708,0.004434,-0.009253,0.249829,0,0);}
.m0_c00494{transform:matrix(0.144465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144465,0.000000,0.000000,0.250000,0,0);}
.m2_c00494{transform:matrix(0.155355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155355,0.000000,0.000000,0.250000,0,0);}
.m65_c00494{transform:matrix(0.155968,0.005777,-0.009253,0.249829,0,0);-ms-transform:matrix(0.155968,0.005777,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.155968,0.005777,-0.009253,0.249829,0,0);}
.m131_c00494{transform:matrix(0.159727,0.002396,-0.003750,0.249972,0,0);-ms-transform:matrix(0.159727,0.002396,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.159727,0.002396,-0.003750,0.249972,0,0);}
.m8_c00494{transform:matrix(0.160610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160610,0.000000,0.000000,0.250000,0,0);}
.m96_c00494{transform:matrix(0.160920,0.005960,-0.009253,0.249829,0,0);-ms-transform:matrix(0.160920,0.005960,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.160920,0.005960,-0.009253,0.249829,0,0);}
.m104_c00494{transform:matrix(0.167278,0.007702,-0.011499,0.249735,0,0);-ms-transform:matrix(0.167278,0.007702,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.167278,0.007702,-0.011499,0.249735,0,0);}
.m73_c00494{transform:matrix(0.168125,0.006227,-0.009253,0.249829,0,0);-ms-transform:matrix(0.168125,0.006227,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.168125,0.006227,-0.009253,0.249829,0,0);}
.m11c_c00494{transform:matrix(0.171061,0.002566,-0.003750,0.249972,0,0);-ms-transform:matrix(0.171061,0.002566,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.171061,0.002566,-0.003750,0.249972,0,0);}
.m107_c00494{transform:matrix(0.172987,0.007965,-0.011499,0.249735,0,0);-ms-transform:matrix(0.172987,0.007965,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.172987,0.007965,-0.011499,0.249735,0,0);}
.m12c_c00494{transform:matrix(0.177120,0.002657,-0.003750,0.249972,0,0);-ms-transform:matrix(0.177120,0.002657,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.177120,0.002657,-0.003750,0.249972,0,0);}
.m12d_c00494{transform:matrix(0.179325,0.002690,-0.003750,0.249972,0,0);-ms-transform:matrix(0.179325,0.002690,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.179325,0.002690,-0.003750,0.249972,0,0);}
.mcc_c00494{transform:matrix(0.180156,0.006672,-0.009253,0.249829,0,0);-ms-transform:matrix(0.180156,0.006672,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.180156,0.006672,-0.009253,0.249829,0,0);}
.m132_c00494{transform:matrix(0.180730,0.002711,-0.003750,0.249972,0,0);-ms-transform:matrix(0.180730,0.002711,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.180730,0.002711,-0.003750,0.249972,0,0);}
.m129_c00494{transform:matrix(0.181470,0.002722,-0.003750,0.249972,0,0);-ms-transform:matrix(0.181470,0.002722,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.181470,0.002722,-0.003750,0.249972,0,0);}
.m102_c00494{transform:matrix(0.181802,0.008371,-0.011499,0.249735,0,0);-ms-transform:matrix(0.181802,0.008371,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.181802,0.008371,-0.011499,0.249735,0,0);}
.m108_c00494{transform:matrix(0.182347,0.008396,-0.011499,0.249735,0,0);-ms-transform:matrix(0.182347,0.008396,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.182347,0.008396,-0.011499,0.249735,0,0);}
.m77_c00494{transform:matrix(0.183044,0.006779,-0.009253,0.249829,0,0);-ms-transform:matrix(0.183044,0.006779,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.183044,0.006779,-0.009253,0.249829,0,0);}
.mdf_c00494{transform:matrix(0.183454,0.006795,-0.009253,0.249829,0,0);-ms-transform:matrix(0.183454,0.006795,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.183454,0.006795,-0.009253,0.249829,0,0);}
.me0_c00494{transform:matrix(0.184528,0.006834,-0.009253,0.249829,0,0);-ms-transform:matrix(0.184528,0.006834,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.184528,0.006834,-0.009253,0.249829,0,0);}
.m105_c00494{transform:matrix(0.184934,0.008515,-0.011499,0.249735,0,0);-ms-transform:matrix(0.184934,0.008515,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.184934,0.008515,-0.011499,0.249735,0,0);}
.md0_c00494{transform:matrix(0.185023,0.006853,-0.009253,0.249829,0,0);-ms-transform:matrix(0.185023,0.006853,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.185023,0.006853,-0.009253,0.249829,0,0);}
.m3_c00494{transform:matrix(0.186955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186955,0.000000,0.000000,0.250000,0,0);}
.mec_c00494{transform:matrix(0.188861,0.008885,-0.011749,0.249724,0,0);-ms-transform:matrix(0.188861,0.008885,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.188861,0.008885,-0.011749,0.249724,0,0);}
.m7c_c00494{transform:matrix(0.190699,0.007063,-0.009253,0.249829,0,0);-ms-transform:matrix(0.190699,0.007063,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.190699,0.007063,-0.009253,0.249829,0,0);}
.m47_c00494{transform:matrix(0.191244,0.007083,-0.009253,0.249829,0,0);-ms-transform:matrix(0.191244,0.007083,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.191244,0.007083,-0.009253,0.249829,0,0);}
.m103_c00494{transform:matrix(0.191277,0.008808,-0.011499,0.249735,0,0);-ms-transform:matrix(0.191277,0.008808,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.191277,0.008808,-0.011499,0.249735,0,0);}
.m6_c00494{transform:matrix(0.191435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191435,0.000000,0.000000,0.250000,0,0);}
.mef_c00494{transform:matrix(0.191763,0.009022,-0.011749,0.249724,0,0);-ms-transform:matrix(0.191763,0.009022,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.191763,0.009022,-0.011749,0.249724,0,0);}
.m3a_c00494{transform:matrix(0.191883,0.005948,-0.007746,0.249880,0,0);-ms-transform:matrix(0.191883,0.005948,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.191883,0.005948,-0.007746,0.249880,0,0);}
.m7a_c00494{transform:matrix(0.192908,0.007145,-0.009253,0.249829,0,0);-ms-transform:matrix(0.192908,0.007145,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.192908,0.007145,-0.009253,0.249829,0,0);}
.mdb_c00494{transform:matrix(0.193043,0.007150,-0.009253,0.249829,0,0);-ms-transform:matrix(0.193043,0.007150,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.193043,0.007150,-0.009253,0.249829,0,0);}
.mf0_c00494{transform:matrix(0.193366,0.009097,-0.011749,0.249724,0,0);-ms-transform:matrix(0.193366,0.009097,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.193366,0.009097,-0.011749,0.249724,0,0);}
.m113_c00494{transform:matrix(0.193490,0.011051,-0.014255,0.249593,0,0);-ms-transform:matrix(0.193490,0.011051,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.193490,0.011051,-0.014255,0.249593,0,0);}
.me1_c00494{transform:matrix(0.193602,0.007170,-0.009253,0.249829,0,0);-ms-transform:matrix(0.193602,0.007170,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.193602,0.007170,-0.009253,0.249829,0,0);}
.m10b_c00494{transform:matrix(0.193620,0.008915,-0.011499,0.249735,0,0);-ms-transform:matrix(0.193620,0.008915,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.193620,0.008915,-0.011499,0.249735,0,0);}
.ma3_c00494{transform:matrix(0.194217,0.007193,-0.009253,0.249829,0,0);-ms-transform:matrix(0.194217,0.007193,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.194217,0.007193,-0.009253,0.249829,0,0);}
.m3f_c00494{transform:matrix(0.194257,0.006022,-0.007746,0.249880,0,0);-ms-transform:matrix(0.194257,0.006022,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.194257,0.006022,-0.007746,0.249880,0,0);}
.md6_c00494{transform:matrix(0.194667,0.007210,-0.009253,0.249829,0,0);-ms-transform:matrix(0.194667,0.007210,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.194667,0.007210,-0.009253,0.249829,0,0);}
.m70_c00494{transform:matrix(0.194806,0.007215,-0.009253,0.249829,0,0);-ms-transform:matrix(0.194806,0.007215,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.194806,0.007215,-0.009253,0.249829,0,0);}
.m4d_c00494{transform:matrix(0.195991,0.007259,-0.009253,0.249829,0,0);-ms-transform:matrix(0.195991,0.007259,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.195991,0.007259,-0.009253,0.249829,0,0);}
.m2c_c00494{transform:matrix(0.196125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196125,0.000000,0.000000,0.250000,0,0);}
.m49_c00494{transform:matrix(0.196380,0.007273,-0.009253,0.249829,0,0);-ms-transform:matrix(0.196380,0.007273,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.196380,0.007273,-0.009253,0.249829,0,0);}
.mce_c00494{transform:matrix(0.199593,0.007392,-0.009253,0.249829,0,0);-ms-transform:matrix(0.199593,0.007392,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.199593,0.007392,-0.009253,0.249829,0,0);}
.m4c_c00494{transform:matrix(0.200198,0.007415,-0.009253,0.249829,0,0);-ms-transform:matrix(0.200198,0.007415,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.200198,0.007415,-0.009253,0.249829,0,0);}
.m6e_c00494{transform:matrix(0.200742,0.007435,-0.009253,0.249829,0,0);-ms-transform:matrix(0.200742,0.007435,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.200742,0.007435,-0.009253,0.249829,0,0);}
.m24_c00494{transform:matrix(0.200765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200765,0.000000,0.000000,0.250000,0,0);}
.m28_c00494{transform:matrix(0.200880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200880,0.000000,0.000000,0.250000,0,0);}
.mea_c00494{transform:matrix(0.201372,0.007458,-0.009253,0.249829,0,0);-ms-transform:matrix(0.201372,0.007458,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.201372,0.007458,-0.009253,0.249829,0,0);}
.mf1_c00494{transform:matrix(0.201617,0.009485,-0.011749,0.249724,0,0);-ms-transform:matrix(0.201617,0.009485,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.201617,0.009485,-0.011749,0.249724,0,0);}
.mf3_c00494{transform:matrix(0.201852,0.009497,-0.011749,0.249724,0,0);-ms-transform:matrix(0.201852,0.009497,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.201852,0.009497,-0.011749,0.249724,0,0);}
.m101_c00494{transform:matrix(0.201996,0.009301,-0.011499,0.249735,0,0);-ms-transform:matrix(0.201996,0.009301,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.201996,0.009301,-0.011499,0.249735,0,0);}
.ma5_c00494{transform:matrix(0.202076,0.007484,-0.009253,0.249829,0,0);-ms-transform:matrix(0.202076,0.007484,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.202076,0.007484,-0.009253,0.249829,0,0);}
.m4b_c00494{transform:matrix(0.202526,0.007501,-0.009253,0.249829,0,0);-ms-transform:matrix(0.202526,0.007501,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.202526,0.007501,-0.009253,0.249829,0,0);}
.mae_c00494{transform:matrix(0.203026,0.007519,-0.009253,0.249829,0,0);-ms-transform:matrix(0.203026,0.007519,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.203026,0.007519,-0.009253,0.249829,0,0);}
.m3b_c00494{transform:matrix(0.203192,0.006299,-0.007746,0.249880,0,0);-ms-transform:matrix(0.203192,0.006299,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.203192,0.006299,-0.007746,0.249880,0,0);}
.md4_c00494{transform:matrix(0.203196,0.007526,-0.009253,0.249829,0,0);-ms-transform:matrix(0.203196,0.007526,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.203196,0.007526,-0.009253,0.249829,0,0);}
.m6d_c00494{transform:matrix(0.204070,0.007558,-0.009253,0.249829,0,0);-ms-transform:matrix(0.204070,0.007558,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.204070,0.007558,-0.009253,0.249829,0,0);}
.m109_c00494{transform:matrix(0.204423,0.009413,-0.011499,0.249735,0,0);-ms-transform:matrix(0.204423,0.009413,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.204423,0.009413,-0.011499,0.249735,0,0);}
.mab_c00494{transform:matrix(0.204915,0.007589,-0.009253,0.249829,0,0);-ms-transform:matrix(0.204915,0.007589,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.204915,0.007589,-0.009253,0.249829,0,0);}
.mde_c00494{transform:matrix(0.204924,0.007590,-0.009253,0.249829,0,0);-ms-transform:matrix(0.204924,0.007590,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.204924,0.007590,-0.009253,0.249829,0,0);}
.m10a_c00494{transform:matrix(0.205253,0.009451,-0.011499,0.249735,0,0);-ms-transform:matrix(0.205253,0.009451,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.205253,0.009451,-0.011499,0.249735,0,0);}
.m76_c00494{transform:matrix(0.205254,0.007602,-0.009253,0.249829,0,0);-ms-transform:matrix(0.205254,0.007602,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.205254,0.007602,-0.009253,0.249829,0,0);}
.mf2_c00494{transform:matrix(0.205737,0.009679,-0.011749,0.249724,0,0);-ms-transform:matrix(0.205737,0.009679,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.205737,0.009679,-0.011749,0.249724,0,0);}
.md1_c00494{transform:matrix(0.205804,0.007622,-0.009253,0.249829,0,0);-ms-transform:matrix(0.205804,0.007622,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.205804,0.007622,-0.009253,0.249829,0,0);}
.m6a_c00494{transform:matrix(0.205899,0.007626,-0.009253,0.249829,0,0);-ms-transform:matrix(0.205899,0.007626,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.205899,0.007626,-0.009253,0.249829,0,0);}
.mc_c00494{transform:matrix(0.206820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206820,0.000000,0.000000,0.250000,0,0);}
.m9_c00494{transform:matrix(0.206935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206935,0.000000,0.000000,0.250000,0,0);}
.mdd_c00494{transform:matrix(0.207098,0.007670,-0.009253,0.249829,0,0);-ms-transform:matrix(0.207098,0.007670,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.207098,0.007670,-0.009253,0.249829,0,0);}
.m1a_c00494{transform:matrix(0.207395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207395,0.000000,0.000000,0.250000,0,0);}
.mb5_c00494{transform:matrix(0.207847,0.007698,-0.009253,0.249829,0,0);-ms-transform:matrix(0.207847,0.007698,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.207847,0.007698,-0.009253,0.249829,0,0);}
.m106_c00494{transform:matrix(0.208524,0.009602,-0.011499,0.249735,0,0);-ms-transform:matrix(0.208524,0.009602,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.208524,0.009602,-0.011499,0.249735,0,0);}
.m125_c00494{transform:matrix(0.208692,0.003130,-0.003750,0.249972,0,0);-ms-transform:matrix(0.208692,0.003130,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.208692,0.003130,-0.003750,0.249972,0,0);}
.mfa_c00494{transform:matrix(0.208971,0.011726,-0.014006,0.249607,0,0);-ms-transform:matrix(0.208971,0.011726,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.208971,0.011726,-0.014006,0.249607,0,0);}
.m38_c00494{transform:matrix(0.209315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209315,0.000000,0.000000,0.250000,0,0);}
.m71_c00494{transform:matrix(0.210056,0.007780,-0.009253,0.249829,0,0);-ms-transform:matrix(0.210056,0.007780,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.210056,0.007780,-0.009253,0.249829,0,0);}
.m78_c00494{transform:matrix(0.210176,0.007784,-0.009253,0.249829,0,0);-ms-transform:matrix(0.210176,0.007784,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.210176,0.007784,-0.009253,0.249829,0,0);}
.mdc_c00494{transform:matrix(0.210406,0.007793,-0.009253,0.249829,0,0);-ms-transform:matrix(0.210406,0.007793,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.210406,0.007793,-0.009253,0.249829,0,0);}
.m7_c00494{transform:matrix(0.210615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210615,0.000000,0.000000,0.250000,0,0);}
.m75_c00494{transform:matrix(0.210701,0.007804,-0.009253,0.249829,0,0);-ms-transform:matrix(0.210701,0.007804,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.210701,0.007804,-0.009253,0.249829,0,0);}
.m79_c00494{transform:matrix(0.210880,0.007810,-0.009253,0.249829,0,0);-ms-transform:matrix(0.210880,0.007810,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.210880,0.007810,-0.009253,0.249829,0,0);}
.m58_c00494{transform:matrix(0.212364,0.007865,-0.009253,0.249829,0,0);-ms-transform:matrix(0.212364,0.007865,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.212364,0.007865,-0.009253,0.249829,0,0);}
.m122_c00494{transform:matrix(0.212696,0.003190,-0.003750,0.249972,0,0);-ms-transform:matrix(0.212696,0.003190,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.212696,0.003190,-0.003750,0.249972,0,0);}
.md2_c00494{transform:matrix(0.213214,0.007897,-0.009253,0.249829,0,0);-ms-transform:matrix(0.213214,0.007897,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.213214,0.007897,-0.009253,0.249829,0,0);}
.mcd_c00494{transform:matrix(0.213354,0.007902,-0.009253,0.249829,0,0);-ms-transform:matrix(0.213354,0.007902,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.213354,0.007902,-0.009253,0.249829,0,0);}
.m4f_c00494{transform:matrix(0.213464,0.007906,-0.009253,0.249829,0,0);-ms-transform:matrix(0.213464,0.007906,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.213464,0.007906,-0.009253,0.249829,0,0);}
.m72_c00494{transform:matrix(0.213698,0.007915,-0.009253,0.249829,0,0);-ms-transform:matrix(0.213698,0.007915,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.213698,0.007915,-0.009253,0.249829,0,0);}
.m1_c00494{transform:matrix(0.214295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214295,0.000000,0.000000,0.250000,0,0);}
.m5b_c00494{transform:matrix(0.214563,0.007947,-0.009253,0.249829,0,0);-ms-transform:matrix(0.214563,0.007947,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.214563,0.007947,-0.009253,0.249829,0,0);}
.m21_c00494{transform:matrix(0.215150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215150,0.000000,0.000000,0.250000,0,0);}
.m68_c00494{transform:matrix(0.215327,0.007975,-0.009253,0.249829,0,0);-ms-transform:matrix(0.215327,0.007975,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.215327,0.007975,-0.009253,0.249829,0,0);}
.mff_c00494{transform:matrix(0.215376,0.012085,-0.014006,0.249607,0,0);-ms-transform:matrix(0.215376,0.012085,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.215376,0.012085,-0.014006,0.249607,0,0);}
.m27_c00494{transform:matrix(0.215910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215910,0.000000,0.000000,0.250000,0,0);}
.mb0_c00494{transform:matrix(0.215952,0.007998,-0.009253,0.249829,0,0);-ms-transform:matrix(0.215952,0.007998,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.215952,0.007998,-0.009253,0.249829,0,0);}
.mee_c00494{transform:matrix(0.216136,0.010169,-0.011749,0.249724,0,0);-ms-transform:matrix(0.216136,0.010169,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.216136,0.010169,-0.011749,0.249724,0,0);}
.ma7_c00494{transform:matrix(0.216222,0.008008,-0.009253,0.249829,0,0);-ms-transform:matrix(0.216222,0.008008,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.216222,0.008008,-0.009253,0.249829,0,0);}
.m123_c00494{transform:matrix(0.216311,0.003245,-0.003750,0.249972,0,0);-ms-transform:matrix(0.216311,0.003245,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.216311,0.003245,-0.003750,0.249972,0,0);}
.me7_c00494{transform:matrix(0.216477,0.008018,-0.009253,0.249829,0,0);-ms-transform:matrix(0.216477,0.008018,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.216477,0.008018,-0.009253,0.249829,0,0);}
.maa_c00494{transform:matrix(0.216736,0.008027,-0.009253,0.249829,0,0);-ms-transform:matrix(0.216736,0.008027,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.216736,0.008027,-0.009253,0.249829,0,0);}
.md5_c00494{transform:matrix(0.216821,0.008030,-0.009253,0.249829,0,0);-ms-transform:matrix(0.216821,0.008030,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.216821,0.008030,-0.009253,0.249829,0,0);}
.m4_c00494{transform:matrix(0.217860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217860,0.000000,0.000000,0.250000,0,0);}
.m45_c00494{transform:matrix(0.217961,0.008073,-0.009253,0.249829,0,0);-ms-transform:matrix(0.217961,0.008073,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.217961,0.008073,-0.009253,0.249829,0,0);}
.ma1_c00494{transform:matrix(0.218150,0.008080,-0.009253,0.249829,0,0);-ms-transform:matrix(0.218150,0.008080,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.218150,0.008080,-0.009253,0.249829,0,0);}
.md3_c00494{transform:matrix(0.218190,0.008081,-0.009253,0.249829,0,0);-ms-transform:matrix(0.218190,0.008081,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.218190,0.008081,-0.009253,0.249829,0,0);}
.m42_c00494{transform:matrix(0.218300,0.006767,-0.007746,0.249880,0,0);-ms-transform:matrix(0.218300,0.006767,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.218300,0.006767,-0.007746,0.249880,0,0);}
.m10e_c00494{transform:matrix(0.218389,0.012473,-0.014255,0.249593,0,0);-ms-transform:matrix(0.218389,0.012473,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.218389,0.012473,-0.014255,0.249593,0,0);}
.ma6_c00494{transform:matrix(0.218545,0.008094,-0.009253,0.249829,0,0);-ms-transform:matrix(0.218545,0.008094,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.218545,0.008094,-0.009253,0.249829,0,0);}
.m9b_c00494{transform:matrix(0.218995,0.008111,-0.009253,0.249829,0,0);-ms-transform:matrix(0.218995,0.008111,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.218995,0.008111,-0.009253,0.249829,0,0);}
.m41_c00494{transform:matrix(0.219485,0.006804,-0.007746,0.249880,0,0);-ms-transform:matrix(0.219485,0.006804,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.219485,0.006804,-0.007746,0.249880,0,0);}
.mcf_c00494{transform:matrix(0.219490,0.008129,-0.009253,0.249829,0,0);-ms-transform:matrix(0.219490,0.008129,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.219490,0.008129,-0.009253,0.249829,0,0);}
.m1c_c00494{transform:matrix(0.220215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220215,0.000000,0.000000,0.250000,0,0);}
.mb2_c00494{transform:matrix(0.220229,0.008157,-0.009253,0.249829,0,0);-ms-transform:matrix(0.220229,0.008157,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.220229,0.008157,-0.009253,0.249829,0,0);}
.m74_c00494{transform:matrix(0.220714,0.008175,-0.009253,0.249829,0,0);-ms-transform:matrix(0.220714,0.008175,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.220714,0.008175,-0.009253,0.249829,0,0);}
.mb7_c00494{transform:matrix(0.221708,0.008211,-0.009253,0.249829,0,0);-ms-transform:matrix(0.221708,0.008211,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.221708,0.008211,-0.009253,0.249829,0,0);}
.m50_c00494{transform:matrix(0.222338,0.008235,-0.009253,0.249829,0,0);-ms-transform:matrix(0.222338,0.008235,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.222338,0.008235,-0.009253,0.249829,0,0);}
.m66_c00494{transform:matrix(0.222348,0.008235,-0.009253,0.249829,0,0);-ms-transform:matrix(0.222348,0.008235,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.222348,0.008235,-0.009253,0.249829,0,0);}
.m9a_c00494{transform:matrix(0.222398,0.008237,-0.009253,0.249829,0,0);-ms-transform:matrix(0.222398,0.008237,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.222398,0.008237,-0.009253,0.249829,0,0);}
.m51_c00494{transform:matrix(0.222837,0.008253,-0.009253,0.249829,0,0);-ms-transform:matrix(0.222837,0.008253,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.222837,0.008253,-0.009253,0.249829,0,0);}
.m5_c00494{transform:matrix(0.223480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223480,0.000000,0.000000,0.250000,0,0);}
.med_c00494{transform:matrix(0.223483,0.010514,-0.011749,0.249724,0,0);-ms-transform:matrix(0.223483,0.010514,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.223483,0.010514,-0.011749,0.249724,0,0);}
.maf_c00494{transform:matrix(0.223622,0.008282,-0.009253,0.249829,0,0);-ms-transform:matrix(0.223622,0.008282,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.223622,0.008282,-0.009253,0.249829,0,0);}
.m2d_c00494{transform:matrix(0.223695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223695,0.000000,0.000000,0.250000,0,0);}
.mb4_c00494{transform:matrix(0.223877,0.008292,-0.009253,0.249829,0,0);-ms-transform:matrix(0.223877,0.008292,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.223877,0.008292,-0.009253,0.249829,0,0);}
.mb_c00494{transform:matrix(0.224115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224115,0.000000,0.000000,0.250000,0,0);}
.m5c_c00494{transform:matrix(0.224526,0.008316,-0.009253,0.249829,0,0);-ms-transform:matrix(0.224526,0.008316,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.224526,0.008316,-0.009253,0.249829,0,0);}
.mbf_c00494{transform:matrix(0.224581,0.008318,-0.009253,0.249829,0,0);-ms-transform:matrix(0.224581,0.008318,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.224581,0.008318,-0.009253,0.249829,0,0);}
.m126_c00494{transform:matrix(0.224630,0.003369,-0.003750,0.249972,0,0);-ms-transform:matrix(0.224630,0.003369,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.224630,0.003369,-0.003750,0.249972,0,0);}
.m32_c00494{transform:matrix(0.224680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224680,0.000000,0.000000,0.250000,0,0);}
.m3e_c00494{transform:matrix(0.224857,0.006971,-0.007746,0.249880,0,0);-ms-transform:matrix(0.224857,0.006971,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.224857,0.006971,-0.007746,0.249880,0,0);}
.ma2_c00494{transform:matrix(0.225166,0.008339,-0.009253,0.249829,0,0);-ms-transform:matrix(0.225166,0.008339,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.225166,0.008339,-0.009253,0.249829,0,0);}
.m30_c00494{transform:matrix(0.225345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225345,0.000000,0.000000,0.250000,0,0);}
.m46_c00494{transform:matrix(0.225485,0.008351,-0.009253,0.249829,0,0);-ms-transform:matrix(0.225485,0.008351,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.225485,0.008351,-0.009253,0.249829,0,0);}
.m43_c00494{transform:matrix(0.225832,0.007001,-0.007746,0.249880,0,0);-ms-transform:matrix(0.225832,0.007001,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.225832,0.007001,-0.007746,0.249880,0,0);}
.mc4_c00494{transform:matrix(0.225955,0.008369,-0.009253,0.249829,0,0);-ms-transform:matrix(0.225955,0.008369,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.225955,0.008369,-0.009253,0.249829,0,0);}
.mb6_c00494{transform:matrix(0.226310,0.008382,-0.009253,0.249829,0,0);-ms-transform:matrix(0.226310,0.008382,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.226310,0.008382,-0.009253,0.249829,0,0);}
.m10f_c00494{transform:matrix(0.226576,0.012941,-0.014255,0.249593,0,0);-ms-transform:matrix(0.226576,0.012941,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.226576,0.012941,-0.014255,0.249593,0,0);}
.m4e_c00494{transform:matrix(0.226790,0.008400,-0.009253,0.249829,0,0);-ms-transform:matrix(0.226790,0.008400,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.226790,0.008400,-0.009253,0.249829,0,0);}
.m48_c00494{transform:matrix(0.227279,0.008418,-0.009253,0.249829,0,0);-ms-transform:matrix(0.227279,0.008418,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.227279,0.008418,-0.009253,0.249829,0,0);}
.m89_c00494{transform:matrix(0.228059,0.008447,-0.009253,0.249829,0,0);-ms-transform:matrix(0.228059,0.008447,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.228059,0.008447,-0.009253,0.249829,0,0);}
.m114_c00494{transform:matrix(0.228313,0.013040,-0.014255,0.249593,0,0);-ms-transform:matrix(0.228313,0.013040,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.228313,0.013040,-0.014255,0.249593,0,0);}
.m6c_c00494{transform:matrix(0.229852,0.008513,-0.009253,0.249829,0,0);-ms-transform:matrix(0.229852,0.008513,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.229852,0.008513,-0.009253,0.249829,0,0);}
.m2b_c00494{transform:matrix(0.229865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229865,0.000000,0.000000,0.250000,0,0);}
.ma8_c00494{transform:matrix(0.229957,0.008517,-0.009253,0.249829,0,0);-ms-transform:matrix(0.229957,0.008517,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.229957,0.008517,-0.009253,0.249829,0,0);}
.m5e_c00494{transform:matrix(0.230057,0.008521,-0.009253,0.249829,0,0);-ms-transform:matrix(0.230057,0.008521,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.230057,0.008521,-0.009253,0.249829,0,0);}
.m117_c00494{transform:matrix(0.230353,0.002764,-0.003000,0.249982,0,0);-ms-transform:matrix(0.230353,0.002764,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.230353,0.002764,-0.003000,0.249982,0,0);}
.mb1_c00494{transform:matrix(0.230382,0.008533,-0.009253,0.249829,0,0);-ms-transform:matrix(0.230382,0.008533,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.230382,0.008533,-0.009253,0.249829,0,0);}
.mb3_c00494{transform:matrix(0.230772,0.008547,-0.009253,0.249829,0,0);-ms-transform:matrix(0.230772,0.008547,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.230772,0.008547,-0.009253,0.249829,0,0);}
.ma4_c00494{transform:matrix(0.231181,0.008562,-0.009253,0.249829,0,0);-ms-transform:matrix(0.231181,0.008562,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.231181,0.008562,-0.009253,0.249829,0,0);}
.m1d_c00494{transform:matrix(0.231195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231195,0.000000,0.000000,0.250000,0,0);}
.m8f_c00494{transform:matrix(0.231316,0.008567,-0.009253,0.249829,0,0);-ms-transform:matrix(0.231316,0.008567,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.231316,0.008567,-0.009253,0.249829,0,0);}
.m110_c00494{transform:matrix(0.231458,0.013220,-0.014255,0.249593,0,0);-ms-transform:matrix(0.231458,0.013220,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.231458,0.013220,-0.014255,0.249593,0,0);}
.m115_c00494{transform:matrix(0.231718,0.002781,-0.003000,0.249982,0,0);-ms-transform:matrix(0.231718,0.002781,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.231718,0.002781,-0.003000,0.249982,0,0);}
.m3c_c00494{transform:matrix(0.231809,0.007186,-0.007746,0.249880,0,0);-ms-transform:matrix(0.231809,0.007186,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.231809,0.007186,-0.007746,0.249880,0,0);}
.mc6_c00494{transform:matrix(0.232126,0.008597,-0.009253,0.249829,0,0);-ms-transform:matrix(0.232126,0.008597,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.232126,0.008597,-0.009253,0.249829,0,0);}
.mac_c00494{transform:matrix(0.232491,0.008611,-0.009253,0.249829,0,0);-ms-transform:matrix(0.232491,0.008611,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.232491,0.008611,-0.009253,0.249829,0,0);}
.m54_c00494{transform:matrix(0.232511,0.008612,-0.009253,0.249829,0,0);-ms-transform:matrix(0.232511,0.008612,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.232511,0.008612,-0.009253,0.249829,0,0);}
.m6f_c00494{transform:matrix(0.233395,0.008644,-0.009253,0.249829,0,0);-ms-transform:matrix(0.233395,0.008644,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.233395,0.008644,-0.009253,0.249829,0,0);}
.ma9_c00494{transform:matrix(0.233535,0.008649,-0.009253,0.249829,0,0);-ms-transform:matrix(0.233535,0.008649,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.233535,0.008649,-0.009253,0.249829,0,0);}
.m8a_c00494{transform:matrix(0.234199,0.008674,-0.009253,0.249829,0,0);-ms-transform:matrix(0.234199,0.008674,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.234199,0.008674,-0.009253,0.249829,0,0);}
.m26_c00494{transform:matrix(0.234360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234360,0.000000,0.000000,0.250000,0,0);}
.m44_c00494{transform:matrix(0.234574,0.008688,-0.009253,0.249829,0,0);-ms-transform:matrix(0.234574,0.008688,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.234574,0.008688,-0.009253,0.249829,0,0);}
.m5a_c00494{transform:matrix(0.234754,0.008695,-0.009253,0.249829,0,0);-ms-transform:matrix(0.234754,0.008695,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.234754,0.008695,-0.009253,0.249829,0,0);}
.m63_c00494{transform:matrix(0.234919,0.008701,-0.009253,0.249829,0,0);-ms-transform:matrix(0.234919,0.008701,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.234919,0.008701,-0.009253,0.249829,0,0);}
.mf6_c00494{transform:matrix(0.235350,0.011073,-0.011749,0.249724,0,0);-ms-transform:matrix(0.235350,0.011073,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.235350,0.011073,-0.011749,0.249724,0,0);}
.m25_c00494{transform:matrix(0.235560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235560,0.000000,0.000000,0.250000,0,0);}
.m111_c00494{transform:matrix(0.235771,0.013466,-0.014255,0.249593,0,0);-ms-transform:matrix(0.235771,0.013466,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.235771,0.013466,-0.014255,0.249593,0,0);}
.m3d_c00494{transform:matrix(0.235952,0.007315,-0.007746,0.249880,0,0);-ms-transform:matrix(0.235952,0.007315,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.235952,0.007315,-0.007746,0.249880,0,0);}
.mba_c00494{transform:matrix(0.236253,0.008750,-0.009253,0.249829,0,0);-ms-transform:matrix(0.236253,0.008750,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.236253,0.008750,-0.009253,0.249829,0,0);}
.m35_c00494{transform:matrix(0.236415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236415,0.000000,0.000000,0.250000,0,0);}
.m55_c00494{transform:matrix(0.236588,0.008763,-0.009253,0.249829,0,0);-ms-transform:matrix(0.236588,0.008763,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.236588,0.008763,-0.009253,0.249829,0,0);}
.mf4_c00494{transform:matrix(0.236813,0.011141,-0.011749,0.249724,0,0);-ms-transform:matrix(0.236813,0.011141,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.236813,0.011141,-0.011749,0.249724,0,0);}
.mca_c00494{transform:matrix(0.237007,0.008778,-0.009253,0.249829,0,0);-ms-transform:matrix(0.237007,0.008778,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.237007,0.008778,-0.009253,0.249829,0,0);}
.mb9_c00494{transform:matrix(0.237082,0.008781,-0.009253,0.249829,0,0);-ms-transform:matrix(0.237082,0.008781,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.237082,0.008781,-0.009253,0.249829,0,0);}
.m29_c00494{transform:matrix(0.237195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237195,0.000000,0.000000,0.250000,0,0);}
.m2a_c00494{transform:matrix(0.237390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237390,0.000000,0.000000,0.250000,0,0);}
.m12b_c00494{transform:matrix(0.237768,0.003567,-0.003750,0.249972,0,0);-ms-transform:matrix(0.237768,0.003567,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.237768,0.003567,-0.003750,0.249972,0,0);}
.m36_c00494{transform:matrix(0.237830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237830,0.000000,0.000000,0.250000,0,0);}
.mf5_c00494{transform:matrix(0.237847,0.011190,-0.011749,0.249724,0,0);-ms-transform:matrix(0.237847,0.011190,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.237847,0.011190,-0.011749,0.249724,0,0);}
.m69_c00494{transform:matrix(0.237867,0.008810,-0.009253,0.249829,0,0);-ms-transform:matrix(0.237867,0.008810,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.237867,0.008810,-0.009253,0.249829,0,0);}
.m1f_c00494{transform:matrix(0.238040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238040,0.000000,0.000000,0.250000,0,0);}
.m112_c00494{transform:matrix(0.238082,0.013598,-0.014255,0.249593,0,0);-ms-transform:matrix(0.238082,0.013598,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.238082,0.013598,-0.014255,0.249593,0,0);}
.me5_c00494{transform:matrix(0.238227,0.008823,-0.009253,0.249829,0,0);-ms-transform:matrix(0.238227,0.008823,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.238227,0.008823,-0.009253,0.249829,0,0);}
.m56_c00494{transform:matrix(0.238337,0.008827,-0.009253,0.249829,0,0);-ms-transform:matrix(0.238337,0.008827,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.238337,0.008827,-0.009253,0.249829,0,0);}
.m85_c00494{transform:matrix(0.238407,0.008830,-0.009253,0.249829,0,0);-ms-transform:matrix(0.238407,0.008830,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.238407,0.008830,-0.009253,0.249829,0,0);}
.m34_c00494{transform:matrix(0.238535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238535,0.000000,0.000000,0.250000,0,0);}
.m127_c00494{transform:matrix(0.238853,0.003583,-0.003750,0.249972,0,0);-ms-transform:matrix(0.238853,0.003583,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.238853,0.003583,-0.003750,0.249972,0,0);}
.mf7_c00494{transform:matrix(0.238894,0.013405,-0.014006,0.249607,0,0);-ms-transform:matrix(0.238894,0.013405,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.238894,0.013405,-0.014006,0.249607,0,0);}
.m6b_c00494{transform:matrix(0.239106,0.008856,-0.009253,0.249829,0,0);-ms-transform:matrix(0.239106,0.008856,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.239106,0.008856,-0.009253,0.249829,0,0);}
.m1e_c00494{transform:matrix(0.239260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239260,0.000000,0.000000,0.250000,0,0);}
.m16_c00494{transform:matrix(0.239565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239565,0.000000,0.000000,0.250000,0,0);}
.m91_c00494{transform:matrix(0.240210,0.008897,-0.009253,0.249829,0,0);-ms-transform:matrix(0.240210,0.008897,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.240210,0.008897,-0.009253,0.249829,0,0);}
.m7d_c00494{transform:matrix(0.240470,0.008906,-0.009253,0.249829,0,0);-ms-transform:matrix(0.240470,0.008906,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.240470,0.008906,-0.009253,0.249829,0,0);}
.m10_c00494{transform:matrix(0.240490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240490,0.000000,0.000000,0.250000,0,0);}
.mad_c00494{transform:matrix(0.240775,0.008918,-0.009253,0.249829,0,0);-ms-transform:matrix(0.240775,0.008918,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.240775,0.008918,-0.009253,0.249829,0,0);}
.m40_c00494{transform:matrix(0.241024,0.007472,-0.007746,0.249880,0,0);-ms-transform:matrix(0.241024,0.007472,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.241024,0.007472,-0.007746,0.249880,0,0);}
.md7_c00494{transform:matrix(0.241774,0.008955,-0.009253,0.249829,0,0);-ms-transform:matrix(0.241774,0.008955,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.241774,0.008955,-0.009253,0.249829,0,0);}
.m93_c00494{transform:matrix(0.242589,0.008985,-0.009253,0.249829,0,0);-ms-transform:matrix(0.242589,0.008985,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.242589,0.008985,-0.009253,0.249829,0,0);}
.m10d_c00494{transform:matrix(0.242839,0.013870,-0.014255,0.249593,0,0);-ms-transform:matrix(0.242839,0.013870,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.242839,0.013870,-0.014255,0.249593,0,0);}
.mfc_c00494{transform:matrix(0.242858,0.013627,-0.014006,0.249607,0,0);-ms-transform:matrix(0.242858,0.013627,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.242858,0.013627,-0.014006,0.249607,0,0);}
.m52_c00494{transform:matrix(0.243033,0.009001,-0.009253,0.249829,0,0);-ms-transform:matrix(0.243033,0.009001,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.243033,0.009001,-0.009253,0.249829,0,0);}
.m128_c00494{transform:matrix(0.243073,0.003646,-0.003750,0.249972,0,0);-ms-transform:matrix(0.243073,0.003646,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.243073,0.003646,-0.003750,0.249972,0,0);}
.me9_c00494{transform:matrix(0.243758,0.009028,-0.009253,0.249829,0,0);-ms-transform:matrix(0.243758,0.009028,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.243758,0.009028,-0.009253,0.249829,0,0);}
.m61_c00494{transform:matrix(0.243868,0.009032,-0.009253,0.249829,0,0);-ms-transform:matrix(0.243868,0.009032,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.243868,0.009032,-0.009253,0.249829,0,0);}
.m11a_c00494{transform:matrix(0.244332,0.002932,-0.003000,0.249982,0,0);-ms-transform:matrix(0.244332,0.002932,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.244332,0.002932,-0.003000,0.249982,0,0);}
.mc0_c00494{transform:matrix(0.244602,0.009059,-0.009253,0.249829,0,0);-ms-transform:matrix(0.244602,0.009059,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.244602,0.009059,-0.009253,0.249829,0,0);}
.m10c_c00494{transform:matrix(0.244706,0.013976,-0.014255,0.249593,0,0);-ms-transform:matrix(0.244706,0.013976,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.244706,0.013976,-0.014255,0.249593,0,0);}
.m81_c00494{transform:matrix(0.244732,0.009064,-0.009253,0.249829,0,0);-ms-transform:matrix(0.244732,0.009064,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.244732,0.009064,-0.009253,0.249829,0,0);}
.m121_c00494{transform:matrix(0.244902,0.003674,-0.003750,0.249972,0,0);-ms-transform:matrix(0.244902,0.003674,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.244902,0.003674,-0.003750,0.249972,0,0);}
.m120_c00494{transform:matrix(0.245427,0.003681,-0.003750,0.249972,0,0);-ms-transform:matrix(0.245427,0.003681,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.245427,0.003681,-0.003750,0.249972,0,0);}
.m17_c00494{transform:matrix(0.245460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245460,0.000000,0.000000,0.250000,0,0);}
.m57_c00494{transform:matrix(0.245602,0.009096,-0.009253,0.249829,0,0);-ms-transform:matrix(0.245602,0.009096,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.245602,0.009096,-0.009253,0.249829,0,0);}
.me4_c00494{transform:matrix(0.246051,0.009113,-0.009253,0.249829,0,0);-ms-transform:matrix(0.246051,0.009113,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.246051,0.009113,-0.009253,0.249829,0,0);}
.m100_c00494{transform:matrix(0.246337,0.013823,-0.014006,0.249607,0,0);-ms-transform:matrix(0.246337,0.013823,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.246337,0.013823,-0.014006,0.249607,0,0);}
.m1b_c00494{transform:matrix(0.246355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246355,0.000000,0.000000,0.250000,0,0);}
.mfe_c00494{transform:matrix(0.246657,0.013840,-0.014006,0.249607,0,0);-ms-transform:matrix(0.246657,0.013840,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.246657,0.013840,-0.014006,0.249607,0,0);}
.m92_c00494{transform:matrix(0.246676,0.009136,-0.009253,0.249829,0,0);-ms-transform:matrix(0.246676,0.009136,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.246676,0.009136,-0.009253,0.249829,0,0);}
.m14_c00494{transform:matrix(0.246730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246730,0.000000,0.000000,0.250000,0,0);}
.m95_c00494{transform:matrix(0.246771,0.009140,-0.009253,0.249829,0,0);-ms-transform:matrix(0.246771,0.009140,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.246771,0.009140,-0.009253,0.249829,0,0);}
.m12a_c00494{transform:matrix(0.246922,0.003704,-0.003750,0.249972,0,0);-ms-transform:matrix(0.246922,0.003704,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.246922,0.003704,-0.003750,0.249972,0,0);}
.m7e_c00494{transform:matrix(0.246986,0.009148,-0.009253,0.249829,0,0);-ms-transform:matrix(0.246986,0.009148,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.246986,0.009148,-0.009253,0.249829,0,0);}
.m22_c00494{transform:matrix(0.247130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247130,0.000000,0.000000,0.250000,0,0);}
.m20_c00494{transform:matrix(0.247160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247160,0.000000,0.000000,0.250000,0,0);}
.meb_c00494{transform:matrix(0.247400,0.009163,-0.009253,0.249829,0,0);-ms-transform:matrix(0.247400,0.009163,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.247400,0.009163,-0.009253,0.249829,0,0);}
.m88_c00494{transform:matrix(0.247445,0.009165,-0.009253,0.249829,0,0);-ms-transform:matrix(0.247445,0.009165,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.247445,0.009165,-0.009253,0.249829,0,0);}
.me8_c00494{transform:matrix(0.247585,0.009170,-0.009253,0.249829,0,0);-ms-transform:matrix(0.247585,0.009170,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.247585,0.009170,-0.009253,0.249829,0,0);}
.mf9_c00494{transform:matrix(0.247640,0.013896,-0.014006,0.249607,0,0);-ms-transform:matrix(0.247640,0.013896,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.247640,0.013896,-0.014006,0.249607,0,0);}
.m53_c00494{transform:matrix(0.247710,0.009174,-0.009253,0.249829,0,0);-ms-transform:matrix(0.247710,0.009174,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.247710,0.009174,-0.009253,0.249829,0,0);}
.m8c_c00494{transform:matrix(0.247910,0.009182,-0.009253,0.249829,0,0);-ms-transform:matrix(0.247910,0.009182,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.247910,0.009182,-0.009253,0.249829,0,0);}
.mb8_c00494{transform:matrix(0.247965,0.009184,-0.009253,0.249829,0,0);-ms-transform:matrix(0.247965,0.009184,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.247965,0.009184,-0.009253,0.249829,0,0);}
.m97_c00494{transform:matrix(0.248754,0.009213,-0.009253,0.249829,0,0);-ms-transform:matrix(0.248754,0.009213,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.248754,0.009213,-0.009253,0.249829,0,0);}
.m2f_c00494{transform:matrix(0.248890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248890,0.000000,0.000000,0.250000,0,0);}
.m7b_c00494{transform:matrix(0.249069,0.009225,-0.009253,0.249829,0,0);-ms-transform:matrix(0.249069,0.009225,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.249069,0.009225,-0.009253,0.249829,0,0);}
.m67_c00494{transform:matrix(0.249479,0.009240,-0.009253,0.249829,0,0);-ms-transform:matrix(0.249479,0.009240,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.249479,0.009240,-0.009253,0.249829,0,0);}
.mfd_c00494{transform:matrix(0.250311,0.014046,-0.014006,0.249607,0,0);-ms-transform:matrix(0.250311,0.014046,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.250311,0.014046,-0.014006,0.249607,0,0);}
.m12_c00494{transform:matrix(0.250390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250390,0.000000,0.000000,0.250000,0,0);}
.m11_c00494{transform:matrix(0.250470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250470,0.000000,0.000000,0.250000,0,0);}
.m94_c00494{transform:matrix(0.250558,0.009280,-0.009253,0.249829,0,0);-ms-transform:matrix(0.250558,0.009280,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.250558,0.009280,-0.009253,0.249829,0,0);}
.m60_c00494{transform:matrix(0.250748,0.009287,-0.009253,0.249829,0,0);-ms-transform:matrix(0.250748,0.009287,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.250748,0.009287,-0.009253,0.249829,0,0);}
.m9c_c00494{transform:matrix(0.251028,0.009297,-0.009253,0.249829,0,0);-ms-transform:matrix(0.251028,0.009297,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.251028,0.009297,-0.009253,0.249829,0,0);}
.mf8_c00494{transform:matrix(0.251624,0.014119,-0.014006,0.249607,0,0);-ms-transform:matrix(0.251624,0.014119,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.251624,0.014119,-0.014006,0.249607,0,0);}
.me6_c00494{transform:matrix(0.252162,0.009339,-0.009253,0.249829,0,0);-ms-transform:matrix(0.252162,0.009339,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.252162,0.009339,-0.009253,0.249829,0,0);}
.mc3_c00494{transform:matrix(0.252182,0.009340,-0.009253,0.249829,0,0);-ms-transform:matrix(0.252182,0.009340,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.252182,0.009340,-0.009253,0.249829,0,0);}
.m86_c00494{transform:matrix(0.252682,0.009359,-0.009253,0.249829,0,0);-ms-transform:matrix(0.252682,0.009359,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.252682,0.009359,-0.009253,0.249829,0,0);}
.mf_c00494{transform:matrix(0.253755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253755,0.000000,0.000000,0.250000,0,0);}
.m19_c00494{transform:matrix(0.254465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254465,0.000000,0.000000,0.250000,0,0);}
.ma_c00494{transform:matrix(0.254945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254945,0.000000,0.000000,0.250000,0,0);}
.m18_c00494{transform:matrix(0.255145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255145,0.000000,0.000000,0.250000,0,0);}
.md_c00494{transform:matrix(0.255440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255440,0.000000,0.000000,0.250000,0,0);}
.mfb_c00494{transform:matrix(0.255892,0.014359,-0.014006,0.249607,0,0);-ms-transform:matrix(0.255892,0.014359,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.255892,0.014359,-0.014006,0.249607,0,0);}
.mc2_c00494{transform:matrix(0.256464,0.009499,-0.009253,0.249829,0,0);-ms-transform:matrix(0.256464,0.009499,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.256464,0.009499,-0.009253,0.249829,0,0);}
.m124_c00494{transform:matrix(0.256506,0.003848,-0.003750,0.249972,0,0);-ms-transform:matrix(0.256506,0.003848,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.256506,0.003848,-0.003750,0.249972,0,0);}
.m12f_c00494{transform:matrix(0.256581,0.003849,-0.003750,0.249972,0,0);-ms-transform:matrix(0.256581,0.003849,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.256581,0.003849,-0.003750,0.249972,0,0);}
.m9f_c00494{transform:matrix(0.256934,0.009516,-0.009253,0.249829,0,0);-ms-transform:matrix(0.256934,0.009516,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.256934,0.009516,-0.009253,0.249829,0,0);}
.m31_c00494{transform:matrix(0.257100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257100,0.000000,0.000000,0.250000,0,0);}
.m23_c00494{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m118_c00494{transform:matrix(0.257391,0.003089,-0.003000,0.249982,0,0);-ms-transform:matrix(0.257391,0.003089,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.257391,0.003089,-0.003000,0.249982,0,0);}
.m59_c00494{transform:matrix(0.257823,0.009549,-0.009253,0.249829,0,0);-ms-transform:matrix(0.257823,0.009549,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.257823,0.009549,-0.009253,0.249829,0,0);}
.m8e_c00494{transform:matrix(0.259342,0.009605,-0.009253,0.249829,0,0);-ms-transform:matrix(0.259342,0.009605,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.259342,0.009605,-0.009253,0.249829,0,0);}
.m116_c00494{transform:matrix(0.259726,0.003117,-0.003000,0.249982,0,0);-ms-transform:matrix(0.259726,0.003117,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.259726,0.003117,-0.003000,0.249982,0,0);}
.m33_c00494{transform:matrix(0.261275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261275,0.000000,0.000000,0.250000,0,0);}
.m5d_c00494{transform:matrix(0.262110,0.009708,-0.009253,0.249829,0,0);-ms-transform:matrix(0.262110,0.009708,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.262110,0.009708,-0.009253,0.249829,0,0);}
.me_c00494{transform:matrix(0.263785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263785,0.000000,0.000000,0.250000,0,0);}
.me2_c00494{transform:matrix(0.265928,0.009849,-0.009253,0.249829,0,0);-ms-transform:matrix(0.265928,0.009849,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.265928,0.009849,-0.009253,0.249829,0,0);}
.m5f_c00494{transform:matrix(0.267257,0.009898,-0.009253,0.249829,0,0);-ms-transform:matrix(0.267257,0.009898,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.267257,0.009898,-0.009253,0.249829,0,0);}
.mcb_c00494{transform:matrix(0.269150,0.009969,-0.009253,0.249829,0,0);-ms-transform:matrix(0.269150,0.009969,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.269150,0.009969,-0.009253,0.249829,0,0);}
.mc5_c00494{transform:matrix(0.269350,0.009976,-0.009253,0.249829,0,0);-ms-transform:matrix(0.269350,0.009976,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.269350,0.009976,-0.009253,0.249829,0,0);}
.ma0_c00494{transform:matrix(0.269930,0.009997,-0.009253,0.249829,0,0);-ms-transform:matrix(0.269930,0.009997,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.269930,0.009997,-0.009253,0.249829,0,0);}
.md8_c00494{transform:matrix(0.270490,0.010018,-0.009253,0.249829,0,0);-ms-transform:matrix(0.270490,0.010018,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.270490,0.010018,-0.009253,0.249829,0,0);}
.m9e_c00494{transform:matrix(0.270834,0.010031,-0.009253,0.249829,0,0);-ms-transform:matrix(0.270834,0.010031,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.270834,0.010031,-0.009253,0.249829,0,0);}
.mc9_c00494{transform:matrix(0.271079,0.010040,-0.009253,0.249829,0,0);-ms-transform:matrix(0.271079,0.010040,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.271079,0.010040,-0.009253,0.249829,0,0);}
.mc1_c00494{transform:matrix(0.271754,0.010065,-0.009253,0.249829,0,0);-ms-transform:matrix(0.271754,0.010065,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.271754,0.010065,-0.009253,0.249829,0,0);}
.mc7_c00494{transform:matrix(0.272263,0.010084,-0.009253,0.249829,0,0);-ms-transform:matrix(0.272263,0.010084,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.272263,0.010084,-0.009253,0.249829,0,0);}
.m8b_c00494{transform:matrix(0.272943,0.010109,-0.009253,0.249829,0,0);-ms-transform:matrix(0.272943,0.010109,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.272943,0.010109,-0.009253,0.249829,0,0);}
.m8d_c00494{transform:matrix(0.273557,0.010132,-0.009253,0.249829,0,0);-ms-transform:matrix(0.273557,0.010132,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.273557,0.010132,-0.009253,0.249829,0,0);}
.mc8_c00494{transform:matrix(0.273892,0.010144,-0.009253,0.249829,0,0);-ms-transform:matrix(0.273892,0.010144,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.273892,0.010144,-0.009253,0.249829,0,0);}
.m90_c00494{transform:matrix(0.274282,0.010159,-0.009253,0.249829,0,0);-ms-transform:matrix(0.274282,0.010159,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.274282,0.010159,-0.009253,0.249829,0,0);}
.m2e_c00494{transform:matrix(0.274500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274500,0.000000,0.000000,0.250000,0,0);}
.mbb_c00494{transform:matrix(0.274951,0.010183,-0.009253,0.249829,0,0);-ms-transform:matrix(0.274951,0.010183,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.274951,0.010183,-0.009253,0.249829,0,0);}
.m37_c00494{transform:matrix(0.276535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276535,0.000000,0.000000,0.250000,0,0);}
.m64_c00494{transform:matrix(0.277830,0.010290,-0.009253,0.249829,0,0);-ms-transform:matrix(0.277830,0.010290,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.277830,0.010290,-0.009253,0.249829,0,0);}
.m84_c00494{transform:matrix(0.278144,0.010302,-0.009253,0.249829,0,0);-ms-transform:matrix(0.278144,0.010302,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.278144,0.010302,-0.009253,0.249829,0,0);}
.m15_c00494{transform:matrix(0.278460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278460,0.000000,0.000000,0.250000,0,0);}
.mbe_c00494{transform:matrix(0.279473,0.010351,-0.009253,0.249829,0,0);-ms-transform:matrix(0.279473,0.010351,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.279473,0.010351,-0.009253,0.249829,0,0);}
.m13_c00494{transform:matrix(0.280585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280585,0.000000,0.000000,0.250000,0,0);}
.m39_c00494{transform:matrix(0.281610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281610,0.000000,0.000000,0.250000,0,0);}
.m80_c00494{transform:matrix(0.281802,0.010437,-0.009253,0.249829,0,0);-ms-transform:matrix(0.281802,0.010437,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.281802,0.010437,-0.009253,0.249829,0,0);}
.m7f_c00494{transform:matrix(0.281837,0.010438,-0.009253,0.249829,0,0);-ms-transform:matrix(0.281837,0.010438,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.281837,0.010438,-0.009253,0.249829,0,0);}
.m83_c00494{transform:matrix(0.290771,0.010769,-0.009253,0.249829,0,0);-ms-transform:matrix(0.290771,0.010769,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.290771,0.010769,-0.009253,0.249829,0,0);}
.m62_c00494{transform:matrix(0.291125,0.010782,-0.009253,0.249829,0,0);-ms-transform:matrix(0.291125,0.010782,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.291125,0.010782,-0.009253,0.249829,0,0);}
.m11f_c00494{transform:matrix(0.294227,0.004413,-0.003750,0.249972,0,0);-ms-transform:matrix(0.294227,0.004413,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.294227,0.004413,-0.003750,0.249972,0,0);}
.m11e_c00494{transform:matrix(0.302671,0.004540,-0.003750,0.249972,0,0);-ms-transform:matrix(0.302671,0.004540,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.302671,0.004540,-0.003750,0.249972,0,0);}
.m99_c00494{transform:matrix(0.304926,0.011294,-0.009253,0.249829,0,0);-ms-transform:matrix(0.304926,0.011294,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.304926,0.011294,-0.009253,0.249829,0,0);}
.m98_c00494{transform:matrix(0.311666,0.011543,-0.009253,0.249829,0,0);-ms-transform:matrix(0.311666,0.011543,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.311666,0.011543,-0.009253,0.249829,0,0);}
.me3_c00494{transform:matrix(0.311976,0.011555,-0.009253,0.249829,0,0);-ms-transform:matrix(0.311976,0.011555,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.311976,0.011555,-0.009253,0.249829,0,0);}
.mbd_c00494{transform:matrix(0.316218,0.011712,-0.009253,0.249829,0,0);-ms-transform:matrix(0.316218,0.011712,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.316218,0.011712,-0.009253,0.249829,0,0);}
.m87_c00494{transform:matrix(0.317627,0.011764,-0.009253,0.249829,0,0);-ms-transform:matrix(0.317627,0.011764,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.317627,0.011764,-0.009253,0.249829,0,0);}
.m9d_c00494{transform:matrix(0.362012,0.013408,-0.009253,0.249829,0,0);-ms-transform:matrix(0.362012,0.013408,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.362012,0.013408,-0.009253,0.249829,0,0);}
.mbc_c00494{transform:matrix(0.400106,0.014819,-0.009253,0.249829,0,0);-ms-transform:matrix(0.400106,0.014819,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.400106,0.014819,-0.009253,0.249829,0,0);}
.m11d_c00494{transform:matrix(0.404959,0.006074,-0.003750,0.249972,0,0);-ms-transform:matrix(0.404959,0.006074,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.404959,0.006074,-0.003750,0.249972,0,0);}
.m82_c00494{transform:matrix(0.405697,0.015026,-0.009253,0.249829,0,0);-ms-transform:matrix(0.405697,0.015026,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.405697,0.015026,-0.009253,0.249829,0,0);}
.m119_c00494{transform:matrix(0.528892,0.006347,-0.003000,0.249982,0,0);-ms-transform:matrix(0.528892,0.006347,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.528892,0.006347,-0.003000,0.249982,0,0);}
.m130_c00494{transform:matrix(0.908523,0.013628,-0.003750,0.249972,0,0);-ms-transform:matrix(0.908523,0.013628,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.908523,0.013628,-0.003750,0.249972,0,0);}
.v0_c00494{vertical-align:0.000000px;}
.ls0_c00494{letter-spacing:0.000000px;}
.sc__c00494{text-shadow:none;}
.sc0_c00494{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__c00494{-webkit-text-stroke:0px transparent;}
.sc0_c00494{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00494{word-spacing:0.000000px;}
.fc0_c00494{color:transparent;}
.fsf_c00494{font-size:48.005400px;}
.fs7_c00494{font-size:71.977316px;}
.fs2_c00494{font-size:72.000000px;}
.fsb_c00494{font-size:77.966453px;}
.fs6_c00494{font-size:77.975426px;}
.fs3_c00494{font-size:78.000000px;}
.fse_c00494{font-size:78.005616px;}
.fs10_c00494{font-size:78.008775px;}
.fsd_c00494{font-size:83.968620px;}
.fs5_c00494{font-size:83.973536px;}
.fs0_c00494{font-size:84.000000px;}
.fsa_c00494{font-size:84.008820px;}
.fs4_c00494{font-size:84.040352px;}
.fs8_c00494{font-size:89.971646px;}
.fs1_c00494{font-size:90.000000px;}
.fs9_c00494{font-size:95.969755px;}
.fsc_c00494{font-size:96.005616px;}
.fs11_c00494{font-size:114.012824px;}
.y0_c00494{bottom:0.000000px;}
.y138_c00494{bottom:64.338248px;}
.y137_c00494{bottom:64.908052px;}
.y136_c00494{bottom:66.233070px;}
.y135_c00494{bottom:67.696275px;}
.y134_c00494{bottom:67.941675px;}
.y133_c00494{bottom:69.841230px;}
.y132_c00494{bottom:70.720237px;}
.y12f_c00494{bottom:70.977300px;}
.y131_c00494{bottom:71.157443px;}
.y130_c00494{bottom:71.563147px;}
.y12e_c00494{bottom:77.076480px;}
.y12d_c00494{bottom:79.926570px;}
.y12c_c00494{bottom:81.355463px;}
.y12b_c00494{bottom:82.749368px;}
.y125_c00494{bottom:84.593640px;}
.y124_c00494{bottom:84.921173px;}
.y123_c00494{bottom:85.764945px;}
.y122_c00494{bottom:86.066828px;}
.y12a_c00494{bottom:86.595128px;}
.y129_c00494{bottom:87.989033px;}
.y128_c00494{bottom:89.390093px;}
.y127_c00494{bottom:92.716868px;}
.y121_c00494{bottom:93.153000px;}
.y126_c00494{bottom:96.412590px;}
.y120_c00494{bottom:108.682362px;}
.y11f_c00494{bottom:110.536254px;}
.y11e_c00494{bottom:112.116330px;}
.y11d_c00494{bottom:112.787118px;}
.y11c_c00494{bottom:113.838390px;}
.y11b_c00494{bottom:114.484500px;}
.y11a_c00494{bottom:134.724910px;}
.y119_c00494{bottom:136.666188px;}
.y118_c00494{bottom:142.421022px;}
.y117_c00494{bottom:148.082746px;}
.y116_c00494{bottom:149.976999px;}
.y115_c00494{bottom:153.767299px;}
.y114_c00494{bottom:156.865306px;}
.y113_c00494{bottom:161.990176px;}
.y111_c00494{bottom:166.720935px;}
.y112_c00494{bottom:168.228000px;}
.y110_c00494{bottom:170.824158px;}
.y10f_c00494{bottom:174.902334px;}
.y10e_c00494{bottom:176.886291px;}
.y10d_c00494{bottom:178.459836px;}
.y10c_c00494{bottom:183.484761px;}
.y10b_c00494{bottom:185.066724px;}
.y10a_c00494{bottom:186.544842px;}
.y109_c00494{bottom:189.573804px;}
.y108_c00494{bottom:192.080574px;}
.y107_c00494{bottom:196.590000px;}
.y106_c00494{bottom:204.488640px;}
.y105_c00494{bottom:206.348904px;}
.y104_c00494{bottom:210.117312px;}
.y103_c00494{bottom:213.874716px;}
.y102_c00494{bottom:218.086728px;}
.y101_c00494{bottom:224.401428px;}
.y100_c00494{bottom:226.173492px;}
.yff_c00494{bottom:230.519652px;}
.yfe_c00494{bottom:236.593440px;}
.yfd_c00494{bottom:240.318000px;}
.yfc_c00494{bottom:314.176098px;}
.yfb_c00494{bottom:319.373710px;}
.yfa_c00494{bottom:323.612664px;}
.yf9_c00494{bottom:325.138566px;}
.yf8_c00494{bottom:326.718330px;}
.yf7_c00494{bottom:328.742173px;}
.yf6_c00494{bottom:330.772150px;}
.yf5_c00494{bottom:332.384979px;}
.yf4_c00494{bottom:333.890295px;}
.yf3_c00494{bottom:336.510639px;}
.yf2_c00494{bottom:340.067646px;}
.yf1_c00494{bottom:341.575500px;}
.yf0_c00494{bottom:356.400711px;}
.yef_c00494{bottom:357.683316px;}
.yee_c00494{bottom:360.301640px;}
.yed_c00494{bottom:362.883500px;}
.yec_c00494{bottom:364.576028px;}
.yeb_c00494{bottom:368.838983px;}
.yea_c00494{bottom:371.449925px;}
.ye9_c00494{bottom:375.218097px;}
.ye8_c00494{bottom:383.355341px;}
.ye7_c00494{bottom:385.148934px;}
.ye6_c00494{bottom:388.270143px;}
.ye5_c00494{bottom:390.458841px;}
.ye4_c00494{bottom:392.049360px;}
.ye3_c00494{bottom:396.767915px;}
.ye2_c00494{bottom:402.087146px;}
.ye1_c00494{bottom:408.451886px;}
.ye0_c00494{bottom:411.121047px;}
.ydf_c00494{bottom:424.644621px;}
.yde_c00494{bottom:431.501646px;}
.ydd_c00494{bottom:446.042702px;}
.ydc_c00494{bottom:447.544865px;}
.ydb_c00494{bottom:460.430133px;}
.yda_c00494{bottom:463.434959px;}
.yd9_c00494{bottom:464.986239px;}
.yd8_c00494{bottom:467.969087px;}
.yd7_c00494{bottom:468.727161px;}
.yd6_c00494{bottom:470.617214px;}
.yd5_c00494{bottom:471.732986px;}
.yd4_c00494{bottom:474.751742px;}
.yd3_c00494{bottom:476.237477px;}
.yd2_c00494{bottom:478.492608px;}
.yd1_c00494{bottom:481.824495px;}
.yd0_c00494{bottom:482.906745px;}
.ycf_c00494{bottom:494.529056px;}
.yce_c00494{bottom:495.959846px;}
.ycd_c00494{bottom:499.728351px;}
.ycc_c00494{bottom:504.035706px;}
.ycb_c00494{bottom:508.333737px;}
.yca_c00494{bottom:509.715410px;}
.yc9_c00494{bottom:513.511055px;}
.yc8_c00494{bottom:515.382959px;}
.yc7_c00494{bottom:516.774344px;}
.yc6_c00494{bottom:519.081146px;}
.yc5_c00494{bottom:529.785986px;}
.yc4_c00494{bottom:533.457200px;}
.yc3_c00494{bottom:534.906360px;}
.yc2_c00494{bottom:536.320167px;}
.yc1_c00494{bottom:540.921617px;}
.yc0_c00494{bottom:542.356347px;}
.ybf_c00494{bottom:545.582895px;}
.ybe_c00494{bottom:549.291516px;}
.ybd_c00494{bottom:551.107143px;}
.ybc_c00494{bottom:552.899016px;}
.ybb_c00494{bottom:555.203154px;}
.yba_c00494{bottom:556.598424px;}
.yb9_c00494{bottom:567.678611px;}
.yb8_c00494{bottom:569.529980px;}
.yb7_c00494{bottom:571.901495px;}
.yb6_c00494{bottom:573.296321px;}
.yb5_c00494{bottom:576.069767px;}
.yb4_c00494{bottom:580.246364px;}
.yb3_c00494{bottom:582.526748px;}
.yb2_c00494{bottom:585.794865px;}
.yb1_c00494{bottom:587.627808px;}
.yb0_c00494{bottom:589.940771px;}
.yaf_c00494{bottom:591.300687px;}
.yae_c00494{bottom:594.116035px;}
.yad_c00494{bottom:604.047927px;}
.yac_c00494{bottom:605.270315px;}
.yab_c00494{bottom:606.112416px;}
.yaa_c00494{bottom:609.271643px;}
.ya9_c00494{bottom:612.082218px;}
.ya8_c00494{bottom:613.674624px;}
.ya7_c00494{bottom:615.635273px;}
.ya6_c00494{bottom:616.827746px;}
.ya5_c00494{bottom:620.363706px;}
.ya4_c00494{bottom:621.560175px;}
.ya3_c00494{bottom:623.935964px;}
.ya2_c00494{bottom:626.234052px;}
.ya1_c00494{bottom:635.523365px;}
.ya0_c00494{bottom:637.749414px;}
.y9f_c00494{bottom:641.392601px;}
.y9e_c00494{bottom:642.356858px;}
.y9d_c00494{bottom:644.998547px;}
.y9c_c00494{bottom:646.359795px;}
.y9b_c00494{bottom:649.079683px;}
.y9a_c00494{bottom:651.805511px;}
.y99_c00494{bottom:656.264270px;}
.y98_c00494{bottom:657.681018px;}
.y97_c00494{bottom:658.475334px;}
.y96_c00494{bottom:660.380704px;}
.y95_c00494{bottom:662.139000px;}
.y94_c00494{bottom:671.736393px;}
.y93_c00494{bottom:673.089205px;}
.y92_c00494{bottom:674.424980px;}
.y91_c00494{bottom:677.955612px;}
.y90_c00494{bottom:679.290609px;}
.y8f_c00494{bottom:681.940401px;}
.y8e_c00494{bottom:685.885841px;}
.y8d_c00494{bottom:688.067934px;}
.y8c_c00494{bottom:691.192862px;}
.y8b_c00494{bottom:692.478242px;}
.y8a_c00494{bottom:693.804914px;}
.y89_c00494{bottom:695.115712px;}
.y88_c00494{bottom:697.224713px;}
.y87_c00494{bottom:709.516520px;}
.y86_c00494{bottom:712.150883px;}
.y85_c00494{bottom:713.434320px;}
.y84_c00494{bottom:716.293514px;}
.y83_c00494{bottom:717.291348px;}
.y82_c00494{bottom:719.432150px;}
.y81_c00494{bottom:720.859221px;}
.y80_c00494{bottom:725.460060px;}
.y7f_c00494{bottom:727.913882px;}
.y7e_c00494{bottom:729.591203px;}
.y7d_c00494{bottom:730.689381px;}
.y7c_c00494{bottom:742.726388px;}
.y7b_c00494{bottom:745.446942px;}
.y7a_c00494{bottom:746.297924px;}
.y79_c00494{bottom:748.719611px;}
.y78_c00494{bottom:751.114658px;}
.y77_c00494{bottom:752.290037px;}
.y76_c00494{bottom:754.281210px;}
.y75_c00494{bottom:757.769108px;}
.y74_c00494{bottom:761.387596px;}
.y73_c00494{bottom:762.540942px;}
.y72_c00494{bottom:766.051206px;}
.y71_c00494{bottom:780.013952px;}
.y70_c00494{bottom:781.220743px;}
.y6f_c00494{bottom:784.422317px;}
.y6e_c00494{bottom:785.620561px;}
.y6d_c00494{bottom:787.142149px;}
.y6c_c00494{bottom:790.035253px;}
.y6b_c00494{bottom:794.374521px;}
.y6a_c00494{bottom:795.569547px;}
.y69_c00494{bottom:799.887724px;}
.y68_c00494{bottom:802.221111px;}
.y67_c00494{bottom:815.589840px;}
.y66_c00494{bottom:816.715935px;}
.y65_c00494{bottom:817.773265px;}
.y64_c00494{bottom:821.241460px;}
.y63_c00494{bottom:822.353514px;}
.y62_c00494{bottom:824.631734px;}
.y61_c00494{bottom:826.461791px;}
.y60_c00494{bottom:827.968227px;}
.y5f_c00494{bottom:830.564462px;}
.y5e_c00494{bottom:831.688725px;}
.y5d_c00494{bottom:834.296337px;}
.y5c_c00494{bottom:835.388577px;}
.y5b_c00494{bottom:836.495524px;}
.y5a_c00494{bottom:851.128321px;}
.y59_c00494{bottom:855.768233px;}
.y58_c00494{bottom:856.968309px;}
.y57_c00494{bottom:859.680705px;}
.y56_c00494{bottom:861.231375px;}
.y55_c00494{bottom:863.569590px;}
.y54_c00494{bottom:865.784817px;}
.y53_c00494{bottom:866.632246px;}
.y52_c00494{bottom:868.932056px;}
.y51_c00494{bottom:871.985111px;}
.y50_c00494{bottom:873.476784px;}
.y4f_c00494{bottom:887.126620px;}
.y4e_c00494{bottom:889.626118px;}
.y4d_c00494{bottom:890.805216px;}
.y4c_c00494{bottom:892.915326px;}
.y4b_c00494{bottom:894.104802px;}
.y4a_c00494{bottom:894.920486px;}
.y49_c00494{bottom:896.550354px;}
.y48_c00494{bottom:899.414431px;}
.y47_c00494{bottom:900.623110px;}
.y46_c00494{bottom:903.828458px;}
.y45_c00494{bottom:906.261023px;}
.y44_c00494{bottom:910.723500px;}
.y43_c00494{bottom:922.754675px;}
.y42_c00494{bottom:925.094508px;}
.y41_c00494{bottom:926.833840px;}
.y40_c00494{bottom:930.949044px;}
.y3f_c00494{bottom:931.946144px;}
.y3e_c00494{bottom:934.559723px;}
.y3d_c00494{bottom:937.446442px;}
.y3c_c00494{bottom:940.770914px;}
.y3b_c00494{bottom:942.123877px;}
.y3a_c00494{bottom:943.122000px;}
.y39_c00494{bottom:959.695500px;}
.y38_c00494{bottom:960.634500px;}
.y37_c00494{bottom:963.534000px;}
.y36_c00494{bottom:964.513500px;}
.y35_c00494{bottom:965.787000px;}
.y34_c00494{bottom:966.729000px;}
.y33_c00494{bottom:968.026500px;}
.y32_c00494{bottom:969.619500px;}
.y31_c00494{bottom:970.551000px;}
.y30_c00494{bottom:972.177000px;}
.y2f_c00494{bottom:973.095000px;}
.y2e_c00494{bottom:973.722000px;}
.y2d_c00494{bottom:976.867500px;}
.y2c_c00494{bottom:993.513000px;}
.y2b_c00494{bottom:994.530000px;}
.y2a_c00494{bottom:996.949500px;}
.y29_c00494{bottom:999.715500px;}
.y28_c00494{bottom:1003.110000px;}
.y27_c00494{bottom:1004.125500px;}
.y26_c00494{bottom:1005.840000px;}
.y25_c00494{bottom:1008.862500px;}
.y24_c00494{bottom:1012.266000px;}
.y23_c00494{bottom:1013.584500px;}
.y22_c00494{bottom:1033.480500px;}
.y21_c00494{bottom:1035.079500px;}
.y20_c00494{bottom:1036.026000px;}
.y1f_c00494{bottom:1037.655000px;}
.y1e_c00494{bottom:1038.130500px;}
.y1d_c00494{bottom:1039.726500px;}
.y1c_c00494{bottom:1040.872500px;}
.y1b_c00494{bottom:1041.813000px;}
.y1a_c00494{bottom:1043.181000px;}
.y19_c00494{bottom:1043.866500px;}
.y18_c00494{bottom:1045.714500px;}
.y17_c00494{bottom:1067.106000px;}
.y16_c00494{bottom:1068.025500px;}
.y15_c00494{bottom:1069.219500px;}
.y14_c00494{bottom:1072.182000px;}
.y13_c00494{bottom:1073.392500px;}
.y12_c00494{bottom:1075.806000px;}
.y11_c00494{bottom:1076.965500px;}
.y10_c00494{bottom:1078.453500px;}
.yf_c00494{bottom:1079.883000px;}
.ye_c00494{bottom:1081.683000px;}
.yd_c00494{bottom:1083.466500px;}
.yc_c00494{bottom:1084.056000px;}
.yb_c00494{bottom:1100.151000px;}
.ya_c00494{bottom:1103.364000px;}
.y9_c00494{bottom:1104.639000px;}
.y8_c00494{bottom:1106.878500px;}
.y7_c00494{bottom:1107.957000px;}
.y6_c00494{bottom:1109.475000px;}
.y5_c00494{bottom:1110.445500px;}
.y4_c00494{bottom:1114.885500px;}
.y3_c00494{bottom:1117.420500px;}
.y2_c00494{bottom:1118.349000px;}
.y1_c00494{bottom:1167.076500px;}
.h11_c00494{height:48.005400px;}
.h9_c00494{height:71.977316px;}
.h4_c00494{height:72.000000px;}
.hd_c00494{height:77.966453px;}
.h8_c00494{height:77.975426px;}
.h5_c00494{height:78.000000px;}
.h10_c00494{height:78.005616px;}
.h12_c00494{height:78.008775px;}
.hf_c00494{height:83.968620px;}
.h7_c00494{height:83.973536px;}
.h2_c00494{height:84.000000px;}
.hc_c00494{height:84.008820px;}
.h6_c00494{height:84.040352px;}
.ha_c00494{height:89.971646px;}
.h3_c00494{height:90.000000px;}
.hb_c00494{height:95.969755px;}
.he_c00494{height:96.005616px;}
.h13_c00494{height:114.012824px;}
.h0_c00494{height:1246.320000px;}
.h1_c00494{height:1246.500000px;}
.w0_c00494{width:896.100000px;}
.w1_c00494{width:896.250000px;}
.x0_c00494{left:0.000000px;}
.xcd_c00494{left:131.437500px;}
.xd4_c00494{left:132.985500px;}
.xc4_c00494{left:135.223500px;}
.xbc_c00494{left:139.315500px;}
.xb2_c00494{left:140.326499px;}
.x92_c00494{left:143.489222px;}
.x9c_c00494{left:144.521577px;}
.x84_c00494{left:147.222540px;}
.x71_c00494{left:149.153718px;}
.x60_c00494{left:151.821048px;}
.x4c_c00494{left:154.284582px;}
.x41_c00494{left:155.421000px;}
.x38_c00494{left:157.573500px;}
.x1a_c00494{left:158.704500px;}
.xe_c00494{left:160.410000px;}
.x4_c00494{left:161.686500px;}
.x55_c00494{left:164.334134px;}
.xbd_c00494{left:171.365418px;}
.xab_c00494{left:174.738885px;}
.x9d_c00494{left:177.696702px;}
.xf_c00494{left:182.227500px;}
.x72_c00494{left:183.423248px;}
.xb3_c00494{left:184.450220px;}
.xd5_c00494{left:186.828000px;}
.x39_c00494{left:189.771000px;}
.x5_c00494{left:193.704000px;}
.x4d_c00494{left:196.869122px;}
.xa3_c00494{left:198.064481px;}
.x24_c00494{left:201.826500px;}
.x93_c00494{left:210.468786px;}
.x8c_c00494{left:211.570961px;}
.x61_c00494{left:216.564629px;}
.x56_c00494{left:228.938631px;}
.xa4_c00494{left:230.405441px;}
.x3a_c00494{left:233.415000px;}
.x73_c00494{left:235.760525px;}
.xb7_c00494{left:236.921474px;}
.xce_c00494{left:240.654129px;}
.x94_c00494{left:242.810912px;}
.x1b_c00494{left:246.679500px;}
.x10_c00494{left:248.278500px;}
.xdf_c00494{left:253.807372px;}
.x85_c00494{left:255.838704px;}
.x2d_c00494{left:266.806500px;}
.x7b_c00494{left:268.537715px;}
.xac_c00494{left:272.640774px;}
.xa5_c00494{left:273.897239px;}
.x42_c00494{left:275.907893px;}
.x8d_c00494{left:277.499910px;}
.x1c_c00494{left:279.340500px;}
.x6_c00494{left:281.110500px;}
.x4e_c00494{left:284.001347px;}
.x2e_c00494{left:288.412500px;}
.x86_c00494{left:290.363534px;}
.x95_c00494{left:297.846654px;}
.x7c_c00494{left:300.650015px;}
.xbe_c00494{left:302.666985px;}
.xb5_c00494{left:303.858692px;}
.x57_c00494{left:305.542950px;}
.xc5_c00494{left:309.844059px;}
.x25_c00494{left:311.635500px;}
.x11_c00494{left:314.941500px;}
.x9e_c00494{left:318.309393px;}
.x2f_c00494{left:320.077500px;}
.xe0_c00494{left:327.111180px;}
.xcf_c00494{left:330.384309px;}
.xbf_c00494{left:334.662957px;}
.x62_c00494{left:336.396621px;}
.x58_c00494{left:338.572055px;}
.x3b_c00494{left:340.656000px;}
.x1d_c00494{left:344.467500px;}
.x4f_c00494{left:349.661510px;}
.xda_c00494{left:350.952210px;}
.xc8_c00494{left:353.577627px;}
.xa6_c00494{left:362.077859px;}
.x12_c00494{left:367.866000px;}
.x63_c00494{left:369.553653px;}
.x50_c00494{left:373.838586px;}
.x30_c00494{left:376.143000px;}
.x7d_c00494{left:378.702717px;}
.x69_c00494{left:381.366773px;}
.xad_c00494{left:382.516955px;}
.xdb_c00494{left:383.542530px;}
.xd0_c00494{left:384.626607px;}
.xc9_c00494{left:385.678494px;}
.xc6_c00494{left:387.298839px;}
.x1e_c00494{left:389.250000px;}
.xa7_c00494{left:394.197096px;}
.x87_c00494{left:399.000677px;}
.x9f_c00494{left:406.530750px;}
.x26_c00494{left:409.120500px;}
.xb8_c00494{left:412.995668px;}
.x59_c00494{left:414.869181px;}
.xdc_c00494{left:415.955917px;}
.x96_c00494{left:419.207228px;}
.x13_c00494{left:422.964000px;}
.x43_c00494{left:428.131517px;}
.x7e_c00494{left:433.203107px;}
.x7_c00494{left:434.205000px;}
.x1_c00494{left:436.320000px;}
.x8e_c00494{left:441.888413px;}
.x1f_c00494{left:443.788500px;}
.xd1_c00494{left:450.990114px;}
.x74_c00494{left:455.974368px;}
.x2_c00494{left:459.540000px;}
.x44_c00494{left:460.765850px;}
.xd6_c00494{left:462.006000px;}
.x31_c00494{left:463.198500px;}
.x27_c00494{left:464.442000px;}
.x14_c00494{left:465.906000px;}
.x8_c00494{left:467.680500px;}
.xae_c00494{left:471.194522px;}
.x97_c00494{left:473.444381px;}
.x6a_c00494{left:478.132965px;}
.xa0_c00494{left:483.275706px;}
.xe1_c00494{left:485.455313px;}
.xc0_c00494{left:488.687778px;}
.x64_c00494{left:489.955076px;}
.x3_c00494{left:491.670000px;}
.xa8_c00494{left:494.078448px;}
.x28_c00494{left:497.181000px;}
.x75_c00494{left:500.542034px;}
.x51_c00494{left:503.790615px;}
.xdd_c00494{left:505.402365px;}
.x32_c00494{left:507.934500px;}
.x5a_c00494{left:512.895446px;}
.x3c_c00494{left:518.085000px;}
.x9_c00494{left:520.017000px;}
.xc1_c00494{left:521.121312px;}
.xb9_c00494{left:522.488954px;}
.xca_c00494{left:529.162866px;}
.x7f_c00494{left:531.748518px;}
.x6b_c00494{left:533.393705px;}
.x45_c00494{left:538.095942px;}
.x33_c00494{left:540.424500px;}
.x20_c00494{left:542.425500px;}
.x52_c00494{left:548.049090px;}
.x3d_c00494{left:550.249500px;}
.x15_c00494{left:555.283500px;}
.xa_c00494{left:557.187000px;}
.xaf_c00494{left:559.522938px;}
.xcb_c00494{left:563.336159px;}
.x88_c00494{left:564.881075px;}
.x6c_c00494{left:566.020268px;}
.x76_c00494{left:567.378519px;}
.x65_c00494{left:570.256694px;}
.x98_c00494{left:572.802035px;}
.x5b_c00494{left:579.836382px;}
.x46_c00494{left:582.102392px;}
.xd2_c00494{left:583.285992px;}
.x34_c00494{left:584.358000px;}
.xba_c00494{left:589.577853px;}
.xa9_c00494{left:594.171033px;}
.x77_c00494{left:598.533611px;}
.x16_c00494{left:600.121500px;}
.x47_c00494{left:604.125846px;}
.x29_c00494{left:606.663000px;}
.xc2_c00494{left:611.221622px;}
.x5c_c00494{left:612.495302px;}
.xd7_c00494{left:616.497000px;}
.x35_c00494{left:618.135000px;}
.x21_c00494{left:619.966500px;}
.xbb_c00494{left:622.425528px;}
.x53_c00494{left:625.456827px;}
.xa1_c00494{left:626.845881px;}
.xe2_c00494{left:627.868725px;}
.x89_c00494{left:629.238098px;}
.x80_c00494{left:631.275336px;}
.x6d_c00494{left:632.469197px;}
.xb_c00494{left:634.435500px;}
.x48_c00494{left:636.241698px;}
.xde_c00494{left:637.339470px;}
.x99_c00494{left:638.771777px;}
.x66_c00494{left:645.717935px;}
.x8a_c00494{left:652.720592px;}
.x54_c00494{left:659.722583px;}
.x22_c00494{left:665.019000px;}
.xb0_c00494{left:669.441132px;}
.x9a_c00494{left:671.934914px;}
.xc7_c00494{left:673.442904px;}
.xc_c00494{left:678.376500px;}
.xaa_c00494{left:681.740432px;}
.x3e_c00494{left:682.998000px;}
.xd3_c00494{left:684.046068px;}
.x78_c00494{left:687.764790px;}
.x49_c00494{left:693.214668px;}
.x2a_c00494{left:695.886000px;}
.x6e_c00494{left:699.677921px;}
.xd8_c00494{left:705.054000px;}
.x8f_c00494{left:706.095663px;}
.x17_c00494{left:709.851000px;}
.x5d_c00494{left:714.401627px;}
.x36_c00494{left:718.116000px;}
.x81_c00494{left:719.471774px;}
.xc3_c00494{left:721.698534px;}
.x6f_c00494{left:723.302661px;}
.x4a_c00494{left:725.050301px;}
.x79_c00494{left:727.846613px;}
.x90_c00494{left:729.480644px;}
.x67_c00494{left:734.550791px;}
.x3f_c00494{left:739.105500px;}
.x23_c00494{left:741.187500px;}
.x5e_c00494{left:745.461480px;}
.x37_c00494{left:750.516000px;}
.x82_c00494{left:752.823167px;}
.x18_c00494{left:754.069500px;}
.xd9_c00494{left:761.305500px;}
.x91_c00494{left:763.416951px;}
.x68_c00494{left:768.025505px;}
.x9b_c00494{left:772.380257px;}
.x2b_c00494{left:773.950500px;}
.x5f_c00494{left:778.540035px;}
.xa2_c00494{left:782.282012px;}
.xcc_c00494{left:784.101172px;}
.x83_c00494{left:786.594084px;}
.x19_c00494{left:788.115000px;}
.xd_c00494{left:789.187500px;}
.x4b_c00494{left:792.536747px;}
.x8b_c00494{left:795.713234px;}
.x70_c00494{left:798.783383px;}
.xb1_c00494{left:803.273499px;}
.x2c_c00494{left:806.767500px;}
.x7a_c00494{left:810.075524px;}
.xb4_c00494{left:813.125748px;}
.x40_c00494{left:814.584000px;}
.xb6_c00494{left:826.292957px;}
@media print{
.v0_c00494{vertical-align:0.000000pt;}
.ls0_c00494{letter-spacing:0.000000pt;}
.ws0_c00494{word-spacing:0.000000pt;}
.fsf_c00494{font-size:42.671466pt;}
.fs7_c00494{font-size:63.979837pt;}
.fs2_c00494{font-size:64.000000pt;}
.fsb_c00494{font-size:69.303514pt;}
.fs6_c00494{font-size:69.311490pt;}
.fs3_c00494{font-size:69.333333pt;}
.fse_c00494{font-size:69.338325pt;}
.fs10_c00494{font-size:69.341133pt;}
.fsd_c00494{font-size:74.638773pt;}
.fs5_c00494{font-size:74.643143pt;}
.fs0_c00494{font-size:74.666667pt;}
.fsa_c00494{font-size:74.674506pt;}
.fs4_c00494{font-size:74.702535pt;}
.fs8_c00494{font-size:79.974796pt;}
.fs1_c00494{font-size:80.000000pt;}
.fs9_c00494{font-size:85.306449pt;}
.fsc_c00494{font-size:85.338325pt;}
.fs11_c00494{font-size:101.344733pt;}
.y0_c00494{bottom:0.000000pt;}
.y138_c00494{bottom:57.189553pt;}
.y137_c00494{bottom:57.696047pt;}
.y136_c00494{bottom:58.873840pt;}
.y135_c00494{bottom:60.174467pt;}
.y134_c00494{bottom:60.392600pt;}
.y133_c00494{bottom:62.081093pt;}
.y132_c00494{bottom:62.862433pt;}
.y12f_c00494{bottom:63.090933pt;}
.y131_c00494{bottom:63.251060pt;}
.y130_c00494{bottom:63.611687pt;}
.y12e_c00494{bottom:68.512427pt;}
.y12d_c00494{bottom:71.045840pt;}
.y12c_c00494{bottom:72.315967pt;}
.y12b_c00494{bottom:73.554993pt;}
.y125_c00494{bottom:75.194347pt;}
.y124_c00494{bottom:75.485487pt;}
.y123_c00494{bottom:76.235507pt;}
.y122_c00494{bottom:76.503847pt;}
.y12a_c00494{bottom:76.973447pt;}
.y129_c00494{bottom:78.212473pt;}
.y128_c00494{bottom:79.457860pt;}
.y127_c00494{bottom:82.414993pt;}
.y121_c00494{bottom:82.802667pt;}
.y126_c00494{bottom:85.700080pt;}
.y120_c00494{bottom:96.606544pt;}
.y11f_c00494{bottom:98.254448pt;}
.y11e_c00494{bottom:99.658960pt;}
.y11d_c00494{bottom:100.255216pt;}
.y11c_c00494{bottom:101.189680pt;}
.y11b_c00494{bottom:101.764000pt;}
.y11a_c00494{bottom:119.755476pt;}
.y119_c00494{bottom:121.481056pt;}
.y118_c00494{bottom:126.596464pt;}
.y117_c00494{bottom:131.629108pt;}
.y116_c00494{bottom:133.312888pt;}
.y115_c00494{bottom:136.682044pt;}
.y114_c00494{bottom:139.435828pt;}
.y113_c00494{bottom:143.991268pt;}
.y111_c00494{bottom:148.196387pt;}
.y112_c00494{bottom:149.536000pt;}
.y110_c00494{bottom:151.843696pt;}
.y10f_c00494{bottom:155.468741pt;}
.y10e_c00494{bottom:157.232259pt;}
.y10d_c00494{bottom:158.630965pt;}
.y10c_c00494{bottom:163.097565pt;}
.y10b_c00494{bottom:164.503755pt;}
.y10a_c00494{bottom:165.817637pt;}
.y109_c00494{bottom:168.510048pt;}
.y108_c00494{bottom:170.738288pt;}
.y107_c00494{bottom:174.746667pt;}
.y106_c00494{bottom:181.767680pt;}
.y105_c00494{bottom:183.421248pt;}
.y104_c00494{bottom:186.770944pt;}
.y103_c00494{bottom:190.110859pt;}
.y102_c00494{bottom:193.854869pt;}
.y101_c00494{bottom:199.467936pt;}
.y100_c00494{bottom:201.043104pt;}
.yff_c00494{bottom:204.906357pt;}
.yfe_c00494{bottom:210.305280pt;}
.yfd_c00494{bottom:213.616000pt;}
.yfc_c00494{bottom:279.267643pt;}
.yfb_c00494{bottom:283.887743pt;}
.yfa_c00494{bottom:287.655701pt;}
.yf9_c00494{bottom:289.012059pt;}
.yf8_c00494{bottom:290.416293pt;}
.yf7_c00494{bottom:292.215265pt;}
.yf6_c00494{bottom:294.019689pt;}
.yf5_c00494{bottom:295.453315pt;}
.yf4_c00494{bottom:296.791373pt;}
.yf3_c00494{bottom:299.120568pt;}
.yf2_c00494{bottom:302.282352pt;}
.yf1_c00494{bottom:303.622667pt;}
.yf0_c00494{bottom:316.800632pt;}
.yef_c00494{bottom:317.940725pt;}
.yee_c00494{bottom:320.268124pt;}
.yed_c00494{bottom:322.563111pt;}
.yec_c00494{bottom:324.067580pt;}
.yeb_c00494{bottom:327.856873pt;}
.yea_c00494{bottom:330.177711pt;}
.ye9_c00494{bottom:333.527197pt;}
.ye8_c00494{bottom:340.760303pt;}
.ye7_c00494{bottom:342.354608pt;}
.ye6_c00494{bottom:345.129016pt;}
.ye5_c00494{bottom:347.074525pt;}
.ye4_c00494{bottom:348.488320pt;}
.ye3_c00494{bottom:352.682591pt;}
.ye2_c00494{bottom:357.410796pt;}
.ye1_c00494{bottom:363.068343pt;}
.ye0_c00494{bottom:365.440931pt;}
.ydf_c00494{bottom:377.461885pt;}
.yde_c00494{bottom:383.557019pt;}
.ydd_c00494{bottom:396.482401pt;}
.ydc_c00494{bottom:397.817657pt;}
.ydb_c00494{bottom:409.271229pt;}
.yda_c00494{bottom:411.942185pt;}
.yd9_c00494{bottom:413.321101pt;}
.yd8_c00494{bottom:415.972521pt;}
.yd7_c00494{bottom:416.646365pt;}
.yd6_c00494{bottom:418.326412pt;}
.yd5_c00494{bottom:419.318209pt;}
.yd4_c00494{bottom:422.001548pt;}
.yd3_c00494{bottom:423.322201pt;}
.yd2_c00494{bottom:425.326763pt;}
.yd1_c00494{bottom:428.288440pt;}
.yd0_c00494{bottom:429.250440pt;}
.ycf_c00494{bottom:439.581383pt;}
.yce_c00494{bottom:440.853196pt;}
.ycd_c00494{bottom:444.202979pt;}
.ycc_c00494{bottom:448.031739pt;}
.ycb_c00494{bottom:451.852211pt;}
.yca_c00494{bottom:453.080364pt;}
.yc9_c00494{bottom:456.454271pt;}
.yc8_c00494{bottom:458.118185pt;}
.yc7_c00494{bottom:459.354972pt;}
.yc6_c00494{bottom:461.405463pt;}
.yc5_c00494{bottom:470.920876pt;}
.yc4_c00494{bottom:474.184177pt;}
.yc3_c00494{bottom:475.472320pt;}
.yc2_c00494{bottom:476.729037pt;}
.yc1_c00494{bottom:480.819215pt;}
.yc0_c00494{bottom:482.094531pt;}
.ybf_c00494{bottom:484.962573pt;}
.ybe_c00494{bottom:488.259125pt;}
.ybd_c00494{bottom:489.873016pt;}
.ybc_c00494{bottom:491.465792pt;}
.ybb_c00494{bottom:493.513915pt;}
.yba_c00494{bottom:494.754155pt;}
.yb9_c00494{bottom:504.603209pt;}
.yb8_c00494{bottom:506.248871pt;}
.yb7_c00494{bottom:508.356884pt;}
.yb6_c00494{bottom:509.596729pt;}
.yb5_c00494{bottom:512.062015pt;}
.yb4_c00494{bottom:515.774545pt;}
.yb3_c00494{bottom:517.801553pt;}
.yb2_c00494{bottom:520.706547pt;}
.yb1_c00494{bottom:522.335829pt;}
.yb0_c00494{bottom:524.391796pt;}
.yaf_c00494{bottom:525.600611pt;}
.yae_c00494{bottom:528.103143pt;}
.yad_c00494{bottom:536.931491pt;}
.yac_c00494{bottom:538.018057pt;}
.yab_c00494{bottom:538.766592pt;}
.yaa_c00494{bottom:541.574793pt;}
.ya9_c00494{bottom:544.073083pt;}
.ya8_c00494{bottom:545.488555pt;}
.ya7_c00494{bottom:547.231353pt;}
.ya6_c00494{bottom:548.291329pt;}
.ya5_c00494{bottom:551.434405pt;}
.ya4_c00494{bottom:552.497933pt;}
.ya3_c00494{bottom:554.609745pt;}
.ya2_c00494{bottom:556.652491pt;}
.ya1_c00494{bottom:564.909657pt;}
.ya0_c00494{bottom:566.888368pt;}
.y9f_c00494{bottom:570.126756pt;}
.y9e_c00494{bottom:570.983873pt;}
.y9d_c00494{bottom:573.332041pt;}
.y9c_c00494{bottom:574.542040pt;}
.y9b_c00494{bottom:576.959719pt;}
.y9a_c00494{bottom:579.382676pt;}
.y99_c00494{bottom:583.346017pt;}
.y98_c00494{bottom:584.605349pt;}
.y97_c00494{bottom:585.311408pt;}
.y96_c00494{bottom:587.005071pt;}
.y95_c00494{bottom:588.568000pt;}
.y94_c00494{bottom:597.099016pt;}
.y93_c00494{bottom:598.301516pt;}
.y92_c00494{bottom:599.488871pt;}
.y91_c00494{bottom:602.627211pt;}
.y90_c00494{bottom:603.813875pt;}
.y8f_c00494{bottom:606.169245pt;}
.y8e_c00494{bottom:609.676303pt;}
.y8d_c00494{bottom:611.615941pt;}
.y8c_c00494{bottom:614.393655pt;}
.y8b_c00494{bottom:615.536215pt;}
.y8a_c00494{bottom:616.715479pt;}
.y89_c00494{bottom:617.880633pt;}
.y88_c00494{bottom:619.755300pt;}
.y87_c00494{bottom:630.681351pt;}
.y86_c00494{bottom:633.023007pt;}
.y85_c00494{bottom:634.163840pt;}
.y84_c00494{bottom:636.705345pt;}
.y83_c00494{bottom:637.592309pt;}
.y82_c00494{bottom:639.495244pt;}
.y81_c00494{bottom:640.763752pt;}
.y80_c00494{bottom:644.853387pt;}
.y7f_c00494{bottom:647.034561pt;}
.y7e_c00494{bottom:648.525513pt;}
.y7d_c00494{bottom:649.501672pt;}
.y7c_c00494{bottom:660.201233pt;}
.y7b_c00494{bottom:662.619504pt;}
.y7a_c00494{bottom:663.375932pt;}
.y79_c00494{bottom:665.528543pt;}
.y78_c00494{bottom:667.657473pt;}
.y77_c00494{bottom:668.702255pt;}
.y76_c00494{bottom:670.472187pt;}
.y75_c00494{bottom:673.572540pt;}
.y74_c00494{bottom:676.788975pt;}
.y73_c00494{bottom:677.814171pt;}
.y72_c00494{bottom:680.934405pt;}
.y71_c00494{bottom:693.345735pt;}
.y70_c00494{bottom:694.418439pt;}
.y6f_c00494{bottom:697.264281pt;}
.y6e_c00494{bottom:698.329388pt;}
.y6d_c00494{bottom:699.681911pt;}
.y6c_c00494{bottom:702.253559pt;}
.y6b_c00494{bottom:706.110685pt;}
.y6a_c00494{bottom:707.172931pt;}
.y69_c00494{bottom:711.011311pt;}
.y68_c00494{bottom:713.085432pt;}
.y67_c00494{bottom:724.968747pt;}
.y66_c00494{bottom:725.969720pt;}
.y65_c00494{bottom:726.909569pt;}
.y64_c00494{bottom:729.992409pt;}
.y63_c00494{bottom:730.980901pt;}
.y62_c00494{bottom:733.005985pt;}
.y61_c00494{bottom:734.632703pt;}
.y60_c00494{bottom:735.971757pt;}
.y5f_c00494{bottom:738.279521pt;}
.y5e_c00494{bottom:739.278867pt;}
.y5d_c00494{bottom:741.596744pt;}
.y5c_c00494{bottom:742.567624pt;}
.y5b_c00494{bottom:743.551577pt;}
.y5a_c00494{bottom:756.558508pt;}
.y59_c00494{bottom:760.682873pt;}
.y58_c00494{bottom:761.749608pt;}
.y57_c00494{bottom:764.160627pt;}
.y56_c00494{bottom:765.539000pt;}
.y55_c00494{bottom:767.617413pt;}
.y54_c00494{bottom:769.586504pt;}
.y53_c00494{bottom:770.339775pt;}
.y52_c00494{bottom:772.384049pt;}
.y51_c00494{bottom:775.097876pt;}
.y50_c00494{bottom:776.423808pt;}
.y4f_c00494{bottom:788.556996pt;}
.y4e_c00494{bottom:790.778772pt;}
.y4d_c00494{bottom:791.826859pt;}
.y4c_c00494{bottom:793.702512pt;}
.y4b_c00494{bottom:794.759824pt;}
.y4a_c00494{bottom:795.484876pt;}
.y49_c00494{bottom:796.933648pt;}
.y48_c00494{bottom:799.479495pt;}
.y47_c00494{bottom:800.553876pt;}
.y46_c00494{bottom:803.403073pt;}
.y45_c00494{bottom:805.565353pt;}
.y44_c00494{bottom:809.532000pt;}
.y43_c00494{bottom:820.226377pt;}
.y42_c00494{bottom:822.306229pt;}
.y41_c00494{bottom:823.852303pt;}
.y40_c00494{bottom:827.510261pt;}
.y3f_c00494{bottom:828.396572pt;}
.y3e_c00494{bottom:830.719753pt;}
.y3d_c00494{bottom:833.285727pt;}
.y3c_c00494{bottom:836.240812pt;}
.y3b_c00494{bottom:837.443447pt;}
.y3a_c00494{bottom:838.330667pt;}
.y39_c00494{bottom:853.062667pt;}
.y38_c00494{bottom:853.897333pt;}
.y37_c00494{bottom:856.474667pt;}
.y36_c00494{bottom:857.345333pt;}
.y35_c00494{bottom:858.477333pt;}
.y34_c00494{bottom:859.314667pt;}
.y33_c00494{bottom:860.468000pt;}
.y32_c00494{bottom:861.884000pt;}
.y31_c00494{bottom:862.712000pt;}
.y30_c00494{bottom:864.157333pt;}
.y2f_c00494{bottom:864.973333pt;}
.y2e_c00494{bottom:865.530667pt;}
.y2d_c00494{bottom:868.326667pt;}
.y2c_c00494{bottom:883.122667pt;}
.y2b_c00494{bottom:884.026667pt;}
.y2a_c00494{bottom:886.177333pt;}
.y29_c00494{bottom:888.636000pt;}
.y28_c00494{bottom:891.653333pt;}
.y27_c00494{bottom:892.556000pt;}
.y26_c00494{bottom:894.080000pt;}
.y25_c00494{bottom:896.766667pt;}
.y24_c00494{bottom:899.792000pt;}
.y23_c00494{bottom:900.964000pt;}
.y22_c00494{bottom:918.649333pt;}
.y21_c00494{bottom:920.070667pt;}
.y20_c00494{bottom:920.912000pt;}
.y1f_c00494{bottom:922.360000pt;}
.y1e_c00494{bottom:922.782667pt;}
.y1d_c00494{bottom:924.201333pt;}
.y1c_c00494{bottom:925.220000pt;}
.y1b_c00494{bottom:926.056000pt;}
.y1a_c00494{bottom:927.272000pt;}
.y19_c00494{bottom:927.881333pt;}
.y18_c00494{bottom:929.524000pt;}
.y17_c00494{bottom:948.538667pt;}
.y16_c00494{bottom:949.356000pt;}
.y15_c00494{bottom:950.417333pt;}
.y14_c00494{bottom:953.050667pt;}
.y13_c00494{bottom:954.126667pt;}
.y12_c00494{bottom:956.272000pt;}
.y11_c00494{bottom:957.302667pt;}
.y10_c00494{bottom:958.625333pt;}
.yf_c00494{bottom:959.896000pt;}
.ye_c00494{bottom:961.496000pt;}
.yd_c00494{bottom:963.081333pt;}
.yc_c00494{bottom:963.605333pt;}
.yb_c00494{bottom:977.912000pt;}
.ya_c00494{bottom:980.768000pt;}
.y9_c00494{bottom:981.901333pt;}
.y8_c00494{bottom:983.892000pt;}
.y7_c00494{bottom:984.850667pt;}
.y6_c00494{bottom:986.200000pt;}
.y5_c00494{bottom:987.062667pt;}
.y4_c00494{bottom:991.009333pt;}
.y3_c00494{bottom:993.262667pt;}
.y2_c00494{bottom:994.088000pt;}
.y1_c00494{bottom:1037.401333pt;}
.h11_c00494{height:42.671466pt;}
.h9_c00494{height:63.979837pt;}
.h4_c00494{height:64.000000pt;}
.hd_c00494{height:69.303514pt;}
.h8_c00494{height:69.311490pt;}
.h5_c00494{height:69.333333pt;}
.h10_c00494{height:69.338325pt;}
.h12_c00494{height:69.341133pt;}
.hf_c00494{height:74.638773pt;}
.h7_c00494{height:74.643143pt;}
.h2_c00494{height:74.666667pt;}
.hc_c00494{height:74.674506pt;}
.h6_c00494{height:74.702535pt;}
.ha_c00494{height:79.974796pt;}
.h3_c00494{height:80.000000pt;}
.hb_c00494{height:85.306449pt;}
.he_c00494{height:85.338325pt;}
.h13_c00494{height:101.344733pt;}
.h0_c00494{height:1107.840000pt;}
.h1_c00494{height:1108.000000pt;}
.w0_c00494{width:796.533333pt;}
.w1_c00494{width:796.666667pt;}
.x0_c00494{left:0.000000pt;}
.xcd_c00494{left:116.833333pt;}
.xd4_c00494{left:118.209333pt;}
.xc4_c00494{left:120.198667pt;}
.xbc_c00494{left:123.836000pt;}
.xb2_c00494{left:124.734665pt;}
.x92_c00494{left:127.545975pt;}
.x9c_c00494{left:128.463624pt;}
.x84_c00494{left:130.864480pt;}
.x71_c00494{left:132.581083pt;}
.x60_c00494{left:134.952043pt;}
.x4c_c00494{left:137.141851pt;}
.x41_c00494{left:138.152000pt;}
.x38_c00494{left:140.065333pt;}
.x1a_c00494{left:141.070667pt;}
.xe_c00494{left:142.586667pt;}
.x4_c00494{left:143.721333pt;}
.x55_c00494{left:146.074785pt;}
.xbd_c00494{left:152.324816pt;}
.xab_c00494{left:155.323453pt;}
.x9d_c00494{left:157.952624pt;}
.xf_c00494{left:161.980000pt;}
.x72_c00494{left:163.042887pt;}
.xb3_c00494{left:163.955751pt;}
.xd5_c00494{left:166.069333pt;}
.x39_c00494{left:168.685333pt;}
.x5_c00494{left:172.181333pt;}
.x4d_c00494{left:174.994775pt;}
.xa3_c00494{left:176.057316pt;}
.x24_c00494{left:179.401333pt;}
.x93_c00494{left:187.083365pt;}
.x8c_c00494{left:188.063076pt;}
.x61_c00494{left:192.501892pt;}
.x56_c00494{left:203.501005pt;}
.xa4_c00494{left:204.804836pt;}
.x3a_c00494{left:207.480000pt;}
.x73_c00494{left:209.564911pt;}
.xb7_c00494{left:210.596865pt;}
.xce_c00494{left:213.914781pt;}
.x94_c00494{left:215.831921pt;}
.x1b_c00494{left:219.270667pt;}
.x10_c00494{left:220.692000pt;}
.xdf_c00494{left:225.606553pt;}
.x85_c00494{left:227.412181pt;}
.x2d_c00494{left:237.161333pt;}
.x7b_c00494{left:238.700191pt;}
.xac_c00494{left:242.347355pt;}
.xa5_c00494{left:243.464212pt;}
.x42_c00494{left:245.251460pt;}
.x8d_c00494{left:246.666587pt;}
.x1c_c00494{left:248.302667pt;}
.x6_c00494{left:249.876000pt;}
.x4e_c00494{left:252.445641pt;}
.x2e_c00494{left:256.366667pt;}
.x86_c00494{left:258.100919pt;}
.x95_c00494{left:264.752581pt;}
.x7c_c00494{left:267.244457pt;}
.xbe_c00494{left:269.037320pt;}
.xb5_c00494{left:270.096615pt;}
.x57_c00494{left:271.593733pt;}
.xc5_c00494{left:275.416941pt;}
.x25_c00494{left:277.009333pt;}
.x11_c00494{left:279.948000pt;}
.x9e_c00494{left:282.941683pt;}
.x2f_c00494{left:284.513333pt;}
.xe0_c00494{left:290.765493pt;}
.xcf_c00494{left:293.674941pt;}
.xbf_c00494{left:297.478184pt;}
.x62_c00494{left:299.019219pt;}
.x58_c00494{left:300.952937pt;}
.x3b_c00494{left:302.805333pt;}
.x1d_c00494{left:306.193333pt;}
.x4f_c00494{left:310.810231pt;}
.xda_c00494{left:311.957520pt;}
.xc8_c00494{left:314.291224pt;}
.xa6_c00494{left:321.846985pt;}
.x12_c00494{left:326.992000pt;}
.x63_c00494{left:328.492136pt;}
.x50_c00494{left:332.300965pt;}
.x30_c00494{left:334.349333pt;}
.x7d_c00494{left:336.624637pt;}
.x69_c00494{left:338.992687pt;}
.xad_c00494{left:340.015071pt;}
.xdb_c00494{left:340.926693pt;}
.xd0_c00494{left:341.890317pt;}
.xc9_c00494{left:342.825328pt;}
.xc6_c00494{left:344.265635pt;}
.x1e_c00494{left:346.000000pt;}
.xa7_c00494{left:350.397419pt;}
.x87_c00494{left:354.667268pt;}
.x9f_c00494{left:361.360667pt;}
.x26_c00494{left:363.662667pt;}
.xb8_c00494{left:367.107260pt;}
.x59_c00494{left:368.772605pt;}
.xdc_c00494{left:369.738593pt;}
.x96_c00494{left:372.628647pt;}
.x13_c00494{left:375.968000pt;}
.x43_c00494{left:380.561348pt;}
.x7e_c00494{left:385.069428pt;}
.x7_c00494{left:385.960000pt;}
.x1_c00494{left:387.840000pt;}
.x8e_c00494{left:392.789700pt;}
.x1f_c00494{left:394.478667pt;}
.xd1_c00494{left:400.880101pt;}
.x74_c00494{left:405.310549pt;}
.x2_c00494{left:408.480000pt;}
.x44_c00494{left:409.569644pt;}
.xd6_c00494{left:410.672000pt;}
.x31_c00494{left:411.732000pt;}
.x27_c00494{left:412.837333pt;}
.x14_c00494{left:414.138667pt;}
.x8_c00494{left:415.716000pt;}
.xae_c00494{left:418.839575pt;}
.x97_c00494{left:420.839449pt;}
.x6a_c00494{left:425.007080pt;}
.xa0_c00494{left:429.578405pt;}
.xe1_c00494{left:431.515833pt;}
.xc0_c00494{left:434.389136pt;}
.x64_c00494{left:435.515623pt;}
.x3_c00494{left:437.040000pt;}
.xa8_c00494{left:439.180843pt;}
.x28_c00494{left:441.938667pt;}
.x75_c00494{left:444.926252pt;}
.x51_c00494{left:447.813880pt;}
.xdd_c00494{left:449.246547pt;}
.x32_c00494{left:451.497333pt;}
.x5a_c00494{left:455.907063pt;}
.x3c_c00494{left:460.520000pt;}
.x9_c00494{left:462.237333pt;}
.xc1_c00494{left:463.218944pt;}
.xb9_c00494{left:464.434625pt;}
.xca_c00494{left:470.366992pt;}
.x7f_c00494{left:472.665349pt;}
.x6b_c00494{left:474.127737pt;}
.x45_c00494{left:478.307504pt;}
.x33_c00494{left:480.377333pt;}
.x20_c00494{left:482.156000pt;}
.x52_c00494{left:487.154747pt;}
.x3d_c00494{left:489.110667pt;}
.x15_c00494{left:493.585333pt;}
.xa_c00494{left:495.277333pt;}
.xaf_c00494{left:497.353723pt;}
.xcb_c00494{left:500.743252pt;}
.x88_c00494{left:502.116511pt;}
.x6c_c00494{left:503.129127pt;}
.x76_c00494{left:504.336461pt;}
.x65_c00494{left:506.894839pt;}
.x98_c00494{left:509.157364pt;}
.x5b_c00494{left:515.410117pt;}
.x46_c00494{left:517.424348pt;}
.xd2_c00494{left:518.476437pt;}
.x34_c00494{left:519.429333pt;}
.xba_c00494{left:524.069203pt;}
.xa9_c00494{left:528.152029pt;}
.x77_c00494{left:532.029876pt;}
.x16_c00494{left:533.441333pt;}
.x47_c00494{left:537.000752pt;}
.x29_c00494{left:539.256000pt;}
.xc2_c00494{left:543.308108pt;}
.x5c_c00494{left:544.440268pt;}
.xd7_c00494{left:547.997333pt;}
.x35_c00494{left:549.453333pt;}
.x21_c00494{left:551.081333pt;}
.xbb_c00494{left:553.267136pt;}
.x53_c00494{left:555.961624pt;}
.xa1_c00494{left:557.196339pt;}
.xe2_c00494{left:558.105533pt;}
.x89_c00494{left:559.322753pt;}
.x80_c00494{left:561.133632pt;}
.x6d_c00494{left:562.194841pt;}
.xb_c00494{left:563.942667pt;}
.x48_c00494{left:565.548176pt;}
.xde_c00494{left:566.523973pt;}
.x99_c00494{left:567.797135pt;}
.x66_c00494{left:573.971497pt;}
.x8a_c00494{left:580.196081pt;}
.x54_c00494{left:586.420073pt;}
.x22_c00494{left:591.128000pt;}
.xb0_c00494{left:595.058784pt;}
.x9a_c00494{left:597.275479pt;}
.xc7_c00494{left:598.615915pt;}
.xc_c00494{left:603.001333pt;}
.xaa_c00494{left:605.991495pt;}
.x3e_c00494{left:607.109333pt;}
.xd3_c00494{left:608.040949pt;}
.x78_c00494{left:611.346480pt;}
.x49_c00494{left:616.190816pt;}
.x2a_c00494{left:618.565333pt;}
.x6e_c00494{left:621.935929pt;}
.xd8_c00494{left:626.714667pt;}
.x8f_c00494{left:627.640589pt;}
.x17_c00494{left:630.978667pt;}
.x5d_c00494{left:635.023668pt;}
.x36_c00494{left:638.325333pt;}
.x81_c00494{left:639.530465pt;}
.xc3_c00494{left:641.509808pt;}
.x6f_c00494{left:642.935699pt;}
.x4a_c00494{left:644.489156pt;}
.x79_c00494{left:646.974767pt;}
.x90_c00494{left:648.427239pt;}
.x67_c00494{left:652.934036pt;}
.x3f_c00494{left:656.982667pt;}
.x23_c00494{left:658.833333pt;}
.x5e_c00494{left:662.632427pt;}
.x37_c00494{left:667.125333pt;}
.x82_c00494{left:669.176148pt;}
.x18_c00494{left:670.284000pt;}
.xd9_c00494{left:676.716000pt;}
.x91_c00494{left:678.592845pt;}
.x68_c00494{left:682.689337pt;}
.x9b_c00494{left:686.560228pt;}
.x2b_c00494{left:687.956000pt;}
.x5f_c00494{left:692.035587pt;}
.xa2_c00494{left:695.361788pt;}
.xcc_c00494{left:696.978820pt;}
.x83_c00494{left:699.194741pt;}
.x19_c00494{left:700.546667pt;}
.xd_c00494{left:701.500000pt;}
.x4b_c00494{left:704.477108pt;}
.x8b_c00494{left:707.300652pt;}
.x70_c00494{left:710.029673pt;}
.xb1_c00494{left:714.020888pt;}
.x2c_c00494{left:717.126667pt;}
.x7a_c00494{left:720.067132pt;}
.xb4_c00494{left:722.778443pt;}
.x40_c00494{left:724.074667pt;}
.xb6_c00494{left:734.482628pt;}
}





/* 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_c00495 {
    display:none;
  }
  .loading-indicator_c00495.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00495 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_c00495 { 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_c00495" -> "#page-container .classname_c00495")
 */
.pf_c00495 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00495 { /* 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_c00495.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00495 { /* 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_c00495 { /* 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_c00495 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00495 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00495 {overflow:visible;}
  }
}
.c_c00495 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00495 { /* 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_c00495:after { /* webkit #35443 */
  content: '';
}
.t_c00495:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00495 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 */
}
.__c00495 { /* 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_c00495 { /* info for Javascript */
  display:none;
}
.l_c00495 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00495 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00495 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00495: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_c00495 {
    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_c00495.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00495.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_c00495 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00495{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00495;src:url('chunks/assets/font_dbd529e162d5851c7bfb6d27.woff2')format("woff");}.ff1_c00495{font-family:ff1_c00495;line-height:1.000000;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;}
.m7_c00495{transform:matrix(0.027369,-0.000274,0.002500,0.249988,0,0);-ms-transform:matrix(0.027369,-0.000274,0.002500,0.249988,0,0);-webkit-transform:matrix(0.027369,-0.000274,0.002500,0.249988,0,0);}
.m35_c00495{transform:matrix(0.031820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.031820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.031820,0.000000,0.000000,0.250000,0,0);}
.m37_c00495{transform:matrix(0.040560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.040560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.040560,0.000000,0.000000,0.250000,0,0);}
.m9_c00495{transform:matrix(0.071146,-0.000711,0.002500,0.249988,0,0);-ms-transform:matrix(0.071146,-0.000711,0.002500,0.249988,0,0);-webkit-transform:matrix(0.071146,-0.000711,0.002500,0.249988,0,0);}
.m17_c00495{transform:matrix(0.073973,0.001332,-0.004499,0.249960,0,0);-ms-transform:matrix(0.073973,0.001332,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.073973,0.001332,-0.004499,0.249960,0,0);}
.m26_c00495{transform:matrix(0.081125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.081125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.081125,0.000000,0.000000,0.250000,0,0);}
.m25_c00495{transform:matrix(0.096775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096775,0.000000,0.000000,0.250000,0,0);}
.m41_c00495{transform:matrix(0.103720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103720,0.000000,0.000000,0.250000,0,0);}
.me_c00495{transform:matrix(0.111247,0.002002,-0.004499,0.249960,0,0);-ms-transform:matrix(0.111247,0.002002,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.111247,0.002002,-0.004499,0.249960,0,0);}
.m34_c00495{transform:matrix(0.111370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111370,0.000000,0.000000,0.250000,0,0);}
.m2c_c00495{transform:matrix(0.120415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120415,0.000000,0.000000,0.250000,0,0);}
.m1_c00495{transform:matrix(0.121079,-0.001211,0.002500,0.249988,0,0);-ms-transform:matrix(0.121079,-0.001211,0.002500,0.249988,0,0);-webkit-transform:matrix(0.121079,-0.001211,0.002500,0.249988,0,0);}
.m33_c00495{transform:matrix(0.127280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127280,0.000000,0.000000,0.250000,0,0);}
.m3a_c00495{transform:matrix(0.131195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131195,0.000000,0.000000,0.250000,0,0);}
.m32_c00495{transform:matrix(0.131680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131680,0.000000,0.000000,0.250000,0,0);}
.m36_c00495{transform:matrix(0.140960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140960,0.000000,0.000000,0.250000,0,0);}
.m0_c00495{transform:matrix(0.145393,-0.001454,0.002500,0.249988,0,0);-ms-transform:matrix(0.145393,-0.001454,0.002500,0.249988,0,0);-webkit-transform:matrix(0.145393,-0.001454,0.002500,0.249988,0,0);}
.m3e_c00495{transform:matrix(0.150935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150935,0.000000,0.000000,0.250000,0,0);}
.m2f_c00495{transform:matrix(0.159895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159895,0.000000,0.000000,0.250000,0,0);}
.m3d_c00495{transform:matrix(0.162250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162250,0.000000,0.000000,0.250000,0,0);}
.m2a_c00495{transform:matrix(0.171355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171355,0.000000,0.000000,0.250000,0,0);}
.m3b_c00495{transform:matrix(0.175730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175730,0.000000,0.000000,0.250000,0,0);}
.m24_c00495{transform:matrix(0.177880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177880,0.000000,0.000000,0.250000,0,0);}
.mc_c00495{transform:matrix(0.178126,0.003206,-0.004499,0.249960,0,0);-ms-transform:matrix(0.178126,0.003206,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.178126,0.003206,-0.004499,0.249960,0,0);}
.m2d_c00495{transform:matrix(0.185540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185540,0.000000,0.000000,0.250000,0,0);}
.m29_c00495{transform:matrix(0.190920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190920,0.000000,0.000000,0.250000,0,0);}
.m1c_c00495{transform:matrix(0.205075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205075,0.000000,0.000000,0.250000,0,0);}
.m15_c00495{transform:matrix(0.205122,0.003692,-0.004499,0.249960,0,0);-ms-transform:matrix(0.205122,0.003692,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.205122,0.003692,-0.004499,0.249960,0,0);}
.mb_c00495{transform:matrix(0.207430,-0.002074,0.002500,0.249988,0,0);-ms-transform:matrix(0.207430,-0.002074,0.002500,0.249988,0,0);-webkit-transform:matrix(0.207430,-0.002074,0.002500,0.249988,0,0);}
.m3f_c00495{transform:matrix(0.207440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207440,0.000000,0.000000,0.250000,0,0);}
.m1b_c00495{transform:matrix(0.208270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208270,0.000000,0.000000,0.250000,0,0);}
.m14_c00495{transform:matrix(0.215400,0.003877,-0.004499,0.249960,0,0);-ms-transform:matrix(0.215400,0.003877,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.215400,0.003877,-0.004499,0.249960,0,0);}
.m30_c00495{transform:matrix(0.216105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216105,0.000000,0.000000,0.250000,0,0);}
.m21_c00495{transform:matrix(0.222740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222740,0.000000,0.000000,0.250000,0,0);}
.m12_c00495{transform:matrix(0.231348,0.004164,-0.004499,0.249960,0,0);-ms-transform:matrix(0.231348,0.004164,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.231348,0.004164,-0.004499,0.249960,0,0);}
.m10_c00495{transform:matrix(0.234562,0.004222,-0.004499,0.249960,0,0);-ms-transform:matrix(0.234562,0.004222,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.234562,0.004222,-0.004499,0.249960,0,0);}
.m2e_c00495{transform:matrix(0.239180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239180,0.000000,0.000000,0.250000,0,0);}
.m28_c00495{transform:matrix(0.242910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242910,0.000000,0.000000,0.250000,0,0);}
.m13_c00495{transform:matrix(0.262178,0.004719,-0.004499,0.249960,0,0);-ms-transform:matrix(0.262178,0.004719,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.262178,0.004719,-0.004499,0.249960,0,0);}
.m31_c00495{transform:matrix(0.268850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268850,0.000000,0.000000,0.250000,0,0);}
.m39_c00495{transform:matrix(0.279015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279015,0.000000,0.000000,0.250000,0,0);}
.m11_c00495{transform:matrix(0.281339,0.005064,-0.004499,0.249960,0,0);-ms-transform:matrix(0.281339,0.005064,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.281339,0.005064,-0.004499,0.249960,0,0);}
.ma_c00495{transform:matrix(0.286366,-0.002864,0.002500,0.249988,0,0);-ms-transform:matrix(0.286366,-0.002864,0.002500,0.249988,0,0);-webkit-transform:matrix(0.286366,-0.002864,0.002500,0.249988,0,0);}
.m4_c00495{transform:matrix(0.288126,-0.002881,0.002500,0.249988,0,0);-ms-transform:matrix(0.288126,-0.002881,0.002500,0.249988,0,0);-webkit-transform:matrix(0.288126,-0.002881,0.002500,0.249988,0,0);}
.m23_c00495{transform:matrix(0.293365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293365,0.000000,0.000000,0.250000,0,0);}
.m20_c00495{transform:matrix(0.306035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306035,0.000000,0.000000,0.250000,0,0);}
.m19_c00495{transform:matrix(0.306290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306290,0.000000,0.000000,0.250000,0,0);}
.m1d_c00495{transform:matrix(0.306355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306355,0.000000,0.000000,0.250000,0,0);}
.mf_c00495{transform:matrix(0.308390,0.005551,-0.004499,0.249960,0,0);-ms-transform:matrix(0.308390,0.005551,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.308390,0.005551,-0.004499,0.249960,0,0);}
.m27_c00495{transform:matrix(0.336915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336915,0.000000,0.000000,0.250000,0,0);}
.md_c00495{transform:matrix(0.356432,0.006416,-0.004499,0.249960,0,0);-ms-transform:matrix(0.356432,0.006416,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.356432,0.006416,-0.004499,0.249960,0,0);}
.m40_c00495{transform:matrix(0.434030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434030,0.000000,0.000000,0.250000,0,0);}
.m16_c00495{transform:matrix(0.458161,0.008247,-0.004499,0.249960,0,0);-ms-transform:matrix(0.458161,0.008247,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.458161,0.008247,-0.004499,0.249960,0,0);}
.m38_c00495{transform:matrix(0.474340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474340,0.000000,0.000000,0.250000,0,0);}
.m1e_c00495{transform:matrix(0.494975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494975,0.000000,0.000000,0.250000,0,0);}
.m22_c00495{transform:matrix(0.496590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.496590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.496590,0.000000,0.000000,0.250000,0,0);}
.m3_c00495{transform:matrix(0.506860,-0.005069,0.002500,0.249988,0,0);-ms-transform:matrix(0.506860,-0.005069,0.002500,0.249988,0,0);-webkit-transform:matrix(0.506860,-0.005069,0.002500,0.249988,0,0);}
.m18_c00495{transform:matrix(0.562545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562545,0.000000,0.000000,0.250000,0,0);}
.m3c_c00495{transform:matrix(0.692880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.692880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.692880,0.000000,0.000000,0.250000,0,0);}
.m8_c00495{transform:matrix(0.711539,-0.007115,0.002500,0.249988,0,0);-ms-transform:matrix(0.711539,-0.007115,0.002500,0.249988,0,0);-webkit-transform:matrix(0.711539,-0.007115,0.002500,0.249988,0,0);}
.m2b_c00495{transform:matrix(0.741095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.741095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.741095,0.000000,0.000000,0.250000,0,0);}
.m1a_c00495{transform:matrix(0.839230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.839230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.839230,0.000000,0.000000,0.250000,0,0);}
.m6_c00495{transform:matrix(0.928044,-0.009280,0.002500,0.249988,0,0);-ms-transform:matrix(0.928044,-0.009280,0.002500,0.249988,0,0);-webkit-transform:matrix(0.928044,-0.009280,0.002500,0.249988,0,0);}
.m5_c00495{transform:matrix(0.930263,-0.009303,0.002500,0.249988,0,0);-ms-transform:matrix(0.930263,-0.009303,0.002500,0.249988,0,0);-webkit-transform:matrix(0.930263,-0.009303,0.002500,0.249988,0,0);}
.m1f_c00495{transform:matrix(1.055555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.055555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.055555,0.000000,0.000000,0.250000,0,0);}
.m2_c00495{transform:matrix(1.274796,-0.012748,0.002500,0.249988,0,0);-ms-transform:matrix(1.274796,-0.012748,0.002500,0.249988,0,0);-webkit-transform:matrix(1.274796,-0.012748,0.002500,0.249988,0,0);}
.v0_c00495{vertical-align:0.000000px;}
.ls0_c00495{letter-spacing:0.000000px;}
.sc__c00495{text-shadow:none;}
.sc0_c00495{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__c00495{-webkit-text-stroke:0px transparent;}
.sc0_c00495{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00495{word-spacing:0.000000px;}
.fc0_c00495{color:transparent;}
.fs5_c00495{font-size:12.000000px;}
.fs1_c00495{font-size:12.000600px;}
.fs7_c00495{font-size:18.000000px;}
.fs6_c00495{font-size:24.000000px;}
.fs0_c00495{font-size:30.001500px;}
.fs2_c00495{font-size:96.015551px;}
.fs4_c00495{font-size:102.000000px;}
.fs3_c00495{font-size:126.000000px;}
.y0_c00495{bottom:0.000000px;}
.y30_c00495{bottom:130.950000px;}
.y2f_c00495{bottom:247.590000px;}
.y2e_c00495{bottom:256.500000px;}
.y2d_c00495{bottom:460.350000px;}
.y2c_c00495{bottom:529.333500px;}
.y2b_c00495{bottom:537.300000px;}
.y2a_c00495{bottom:549.990000px;}
.y29_c00495{bottom:584.682000px;}
.y28_c00495{bottom:586.582500px;}
.y27_c00495{bottom:596.830500px;}
.y26_c00495{bottom:603.579000px;}
.y25_c00495{bottom:608.578500px;}
.y24_c00495{bottom:613.963500px;}
.y23_c00495{bottom:619.464000px;}
.y22_c00495{bottom:625.588500px;}
.y21_c00495{bottom:629.091000px;}
.y20_c00495{bottom:632.971500px;}
.y1f_c00495{bottom:636.027000px;}
.y1e_c00495{bottom:652.555500px;}
.y1d_c00495{bottom:655.020000px;}
.y1c_c00495{bottom:658.261500px;}
.y1b_c00495{bottom:661.873500px;}
.y1a_c00495{bottom:744.667500px;}
.y19_c00495{bottom:748.075500px;}
.y18_c00495{bottom:765.152400px;}
.y17_c00495{bottom:768.260424px;}
.y16_c00495{bottom:768.919872px;}
.y15_c00495{bottom:771.046851px;}
.y14_c00495{bottom:772.545162px;}
.y13_c00495{bottom:773.233608px;}
.y12_c00495{bottom:773.842134px;}
.y11_c00495{bottom:775.445232px;}
.y10_c00495{bottom:776.066691px;}
.yf_c00495{bottom:776.447769px;}
.ye_c00495{bottom:777.122094px;}
.yd_c00495{bottom:778.417500px;}
.ya_c00495{bottom:1221.211095px;}
.yb_c00495{bottom:1222.165335px;}
.yc_c00495{bottom:1224.204240px;}
.y1_c00495{bottom:1228.501500px;}
.y2_c00495{bottom:1229.208915px;}
.y3_c00495{bottom:1229.848815px;}
.y4_c00495{bottom:1230.250665px;}
.y5_c00495{bottom:1230.845175px;}
.y6_c00495{bottom:1231.036815px;}
.y7_c00495{bottom:1231.493070px;}
.y8_c00495{bottom:1232.378550px;}
.y9_c00495{bottom:1233.091290px;}
.h7_c00495{height:12.000000px;}
.h3_c00495{height:12.000600px;}
.h9_c00495{height:18.000000px;}
.h8_c00495{height:24.000000px;}
.h2_c00495{height:30.001500px;}
.h4_c00495{height:96.015551px;}
.h6_c00495{height:102.000000px;}
.h5_c00495{height:126.000000px;}
.h0_c00495{height:1246.320000px;}
.h1_c00495{height:1246.500000px;}
.w0_c00495{width:896.100000px;}
.w1_c00495{width:896.250000px;}
.x0_c00495{left:0.000000px;}
.x20_c00495{left:1.080000px;}
.x27_c00495{left:5.940000px;}
.x25_c00495{left:11.340000px;}
.xc_c00495{left:71.568000px;}
.x1_c00495{left:81.888000px;}
.x19_c00495{left:93.690000px;}
.xd_c00495{left:109.030500px;}
.xe_c00495{left:130.201500px;}
.x2_c00495{left:152.629500px;}
.xf_c00495{left:164.727000px;}
.x1a_c00495{left:199.530000px;}
.x3_c00495{left:216.619500px;}
.xa_c00495{left:228.485055px;}
.x10_c00495{left:253.788000px;}
.x4_c00495{left:256.804500px;}
.x1b_c00495{left:262.440000px;}
.x11_c00495{left:287.595000px;}
.x5_c00495{left:316.255500px;}
.x12_c00495{left:325.842000px;}
.x1c_c00495{left:328.860000px;}
.x6_c00495{left:335.419500px;}
.x1d_c00495{left:349.650000px;}
.x7_c00495{left:381.045000px;}
.x13_c00495{left:409.081500px;}
.x1e_c00495{left:428.760000px;}
.x8_c00495{left:469.593000px;}
.x14_c00495{left:527.247000px;}
.x9_c00495{left:540.867000px;}
.xb_c00495{left:561.102885px;}
.x15_c00495{left:563.883000px;}
.x17_c00495{left:614.520000px;}
.x16_c00495{left:736.551000px;}
.x32_c00495{left:756.810000px;}
.x2b_c00495{left:769.230000px;}
.x1f_c00495{left:788.130000px;}
.x28_c00495{left:790.020000px;}
.x2a_c00495{left:791.640000px;}
.x2c_c00495{left:792.720000px;}
.x34_c00495{left:798.930000px;}
.x18_c00495{left:803.520000px;}
.x30_c00495{left:811.890000px;}
.x2e_c00495{left:813.240000px;}
.x29_c00495{left:815.130000px;}
.x2f_c00495{left:823.500000px;}
.x2d_c00495{left:840.780000px;}
.x24_c00495{left:844.290000px;}
.x21_c00495{left:852.660000px;}
.x33_c00495{left:862.650000px;}
.x22_c00495{left:876.690000px;}
.x31_c00495{left:879.120000px;}
.x26_c00495{left:892.890000px;}
.x23_c00495{left:895.320000px;}
@media print{
.v0_c00495{vertical-align:0.000000pt;}
.ls0_c00495{letter-spacing:0.000000pt;}
.ws0_c00495{word-spacing:0.000000pt;}
.fs5_c00495{font-size:10.666667pt;}
.fs1_c00495{font-size:10.667200pt;}
.fs7_c00495{font-size:16.000000pt;}
.fs6_c00495{font-size:21.333333pt;}
.fs0_c00495{font-size:26.668000pt;}
.fs2_c00495{font-size:85.347156pt;}
.fs4_c00495{font-size:90.666667pt;}
.fs3_c00495{font-size:112.000000pt;}
.y0_c00495{bottom:0.000000pt;}
.y30_c00495{bottom:116.400000pt;}
.y2f_c00495{bottom:220.080000pt;}
.y2e_c00495{bottom:228.000000pt;}
.y2d_c00495{bottom:409.200000pt;}
.y2c_c00495{bottom:470.518667pt;}
.y2b_c00495{bottom:477.600000pt;}
.y2a_c00495{bottom:488.880000pt;}
.y29_c00495{bottom:519.717333pt;}
.y28_c00495{bottom:521.406667pt;}
.y27_c00495{bottom:530.516000pt;}
.y26_c00495{bottom:536.514667pt;}
.y25_c00495{bottom:540.958667pt;}
.y24_c00495{bottom:545.745333pt;}
.y23_c00495{bottom:550.634667pt;}
.y22_c00495{bottom:556.078667pt;}
.y21_c00495{bottom:559.192000pt;}
.y20_c00495{bottom:562.641333pt;}
.y1f_c00495{bottom:565.357333pt;}
.y1e_c00495{bottom:580.049333pt;}
.y1d_c00495{bottom:582.240000pt;}
.y1c_c00495{bottom:585.121333pt;}
.y1b_c00495{bottom:588.332000pt;}
.y1a_c00495{bottom:661.926667pt;}
.y19_c00495{bottom:664.956000pt;}
.y18_c00495{bottom:680.135467pt;}
.y17_c00495{bottom:682.898155pt;}
.y16_c00495{bottom:683.484331pt;}
.y15_c00495{bottom:685.374979pt;}
.y14_c00495{bottom:686.706811pt;}
.y13_c00495{bottom:687.318763pt;}
.y12_c00495{bottom:687.859675pt;}
.y11_c00495{bottom:689.284651pt;}
.y10_c00495{bottom:689.837059pt;}
.yf_c00495{bottom:690.175795pt;}
.ye_c00495{bottom:690.775195pt;}
.yd_c00495{bottom:691.926667pt;}
.ya_c00495{bottom:1085.520973pt;}
.yb_c00495{bottom:1086.369187pt;}
.yc_c00495{bottom:1088.181547pt;}
.y1_c00495{bottom:1092.001333pt;}
.y2_c00495{bottom:1092.630147pt;}
.y3_c00495{bottom:1093.198947pt;}
.y4_c00495{bottom:1093.556147pt;}
.y5_c00495{bottom:1094.084600pt;}
.y6_c00495{bottom:1094.254947pt;}
.y7_c00495{bottom:1094.660507pt;}
.y8_c00495{bottom:1095.447600pt;}
.y9_c00495{bottom:1096.081147pt;}
.h7_c00495{height:10.666667pt;}
.h3_c00495{height:10.667200pt;}
.h9_c00495{height:16.000000pt;}
.h8_c00495{height:21.333333pt;}
.h2_c00495{height:26.668000pt;}
.h4_c00495{height:85.347156pt;}
.h6_c00495{height:90.666667pt;}
.h5_c00495{height:112.000000pt;}
.h0_c00495{height:1107.840000pt;}
.h1_c00495{height:1108.000000pt;}
.w0_c00495{width:796.533333pt;}
.w1_c00495{width:796.666667pt;}
.x0_c00495{left:0.000000pt;}
.x20_c00495{left:0.960000pt;}
.x27_c00495{left:5.280000pt;}
.x25_c00495{left:10.080000pt;}
.xc_c00495{left:63.616000pt;}
.x1_c00495{left:72.789333pt;}
.x19_c00495{left:83.280000pt;}
.xd_c00495{left:96.916000pt;}
.xe_c00495{left:115.734667pt;}
.x2_c00495{left:135.670667pt;}
.xf_c00495{left:146.424000pt;}
.x1a_c00495{left:177.360000pt;}
.x3_c00495{left:192.550667pt;}
.xa_c00495{left:203.097827pt;}
.x10_c00495{left:225.589333pt;}
.x4_c00495{left:228.270667pt;}
.x1b_c00495{left:233.280000pt;}
.x11_c00495{left:255.640000pt;}
.x5_c00495{left:281.116000pt;}
.x12_c00495{left:289.637333pt;}
.x1c_c00495{left:292.320000pt;}
.x6_c00495{left:298.150667pt;}
.x1d_c00495{left:310.800000pt;}
.x7_c00495{left:338.706667pt;}
.x13_c00495{left:363.628000pt;}
.x1e_c00495{left:381.120000pt;}
.x8_c00495{left:417.416000pt;}
.x14_c00495{left:468.664000pt;}
.x9_c00495{left:480.770667pt;}
.xb_c00495{left:498.758120pt;}
.x15_c00495{left:501.229333pt;}
.x17_c00495{left:546.240000pt;}
.x16_c00495{left:654.712000pt;}
.x32_c00495{left:672.720000pt;}
.x2b_c00495{left:683.760000pt;}
.x1f_c00495{left:700.560000pt;}
.x28_c00495{left:702.240000pt;}
.x2a_c00495{left:703.680000pt;}
.x2c_c00495{left:704.640000pt;}
.x34_c00495{left:710.160000pt;}
.x18_c00495{left:714.240000pt;}
.x30_c00495{left:721.680000pt;}
.x2e_c00495{left:722.880000pt;}
.x29_c00495{left:724.560000pt;}
.x2f_c00495{left:732.000000pt;}
.x2d_c00495{left:747.360000pt;}
.x24_c00495{left:750.480000pt;}
.x21_c00495{left:757.920000pt;}
.x33_c00495{left:766.800000pt;}
.x22_c00495{left:779.280000pt;}
.x31_c00495{left:781.440000pt;}
.x26_c00495{left:793.680000pt;}
.x23_c00495{left:795.840000pt;}
}





/* 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_c00496 {
    display:none;
  }
  .loading-indicator_c00496.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00496 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_c00496 { 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_c00496" -> "#page-container .classname_c00496")
 */
.pf_c00496 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00496 { /* 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_c00496.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00496 { /* 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_c00496 { /* 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_c00496 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00496 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00496 {overflow:visible;}
  }
}
.c_c00496 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00496 { /* 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_c00496:after { /* webkit #35443 */
  content: '';
}
.t_c00496:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00496 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 */
}
.__c00496 { /* 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_c00496 { /* info for Javascript */
  display:none;
}
.l_c00496 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00496 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00496 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00496: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_c00496 {
    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_c00496.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00496.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_c00496 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00496{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00496;src:url('chunks/assets/font_c605e72f209fc835e906f064.woff2')format("woff");}.ff1_c00496{font-family:ff1_c00496;line-height:1.000000;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;}
.m15_c00496{transform:matrix(0.093854,0.001971,-0.005249,0.249945,0,0);-ms-transform:matrix(0.093854,0.001971,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.093854,0.001971,-0.005249,0.249945,0,0);}
.me7_c00496{transform:matrix(0.150748,0.005281,-0.008753,0.249847,0,0);-ms-transform:matrix(0.150748,0.005281,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.150748,0.005281,-0.008753,0.249847,0,0);}
.m11e_c00496{transform:matrix(0.155394,0.004351,-0.006997,0.249902,0,0);-ms-transform:matrix(0.155394,0.004351,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.155394,0.004351,-0.006997,0.249902,0,0);}
.me3_c00496{transform:matrix(0.158503,0.005553,-0.008753,0.249847,0,0);-ms-transform:matrix(0.158503,0.005553,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.158503,0.005553,-0.008753,0.249847,0,0);}
.m121_c00496{transform:matrix(0.162002,0.004536,-0.006997,0.249902,0,0);-ms-transform:matrix(0.162002,0.004536,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.162002,0.004536,-0.006997,0.249902,0,0);}
.m11f_c00496{transform:matrix(0.162816,0.004559,-0.006997,0.249902,0,0);-ms-transform:matrix(0.162816,0.004559,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.162816,0.004559,-0.006997,0.249902,0,0);}
.m120_c00496{transform:matrix(0.163381,0.004575,-0.006997,0.249902,0,0);-ms-transform:matrix(0.163381,0.004575,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.163381,0.004575,-0.006997,0.249902,0,0);}
.me2_c00496{transform:matrix(0.169346,0.005933,-0.008753,0.249847,0,0);-ms-transform:matrix(0.169346,0.005933,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.169346,0.005933,-0.008753,0.249847,0,0);}
.mdf_c00496{transform:matrix(0.169756,0.005947,-0.008753,0.249847,0,0);-ms-transform:matrix(0.169756,0.005947,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.169756,0.005947,-0.008753,0.249847,0,0);}
.me1_c00496{transform:matrix(0.172309,0.006037,-0.008753,0.249847,0,0);-ms-transform:matrix(0.172309,0.006037,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.172309,0.006037,-0.008753,0.249847,0,0);}
.m123_c00496{transform:matrix(0.175316,0.004909,-0.006997,0.249902,0,0);-ms-transform:matrix(0.175316,0.004909,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.175316,0.004909,-0.006997,0.249902,0,0);}
.m124_c00496{transform:matrix(0.177086,0.004958,-0.006997,0.249902,0,0);-ms-transform:matrix(0.177086,0.004958,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.177086,0.004958,-0.006997,0.249902,0,0);}
.m54_c00496{transform:matrix(0.178576,0.003750,-0.005249,0.249945,0,0);-ms-transform:matrix(0.178576,0.003750,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.178576,0.003750,-0.005249,0.249945,0,0);}
.m5_c00496{transform:matrix(0.179530,0.003770,-0.005249,0.249945,0,0);-ms-transform:matrix(0.179530,0.003770,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.179530,0.003770,-0.005249,0.249945,0,0);}
.mff_c00496{transform:matrix(0.179615,0.006832,-0.009503,0.249819,0,0);-ms-transform:matrix(0.179615,0.006832,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.179615,0.006832,-0.009503,0.249819,0,0);}
.m57_c00496{transform:matrix(0.179685,0.003773,-0.005249,0.249945,0,0);-ms-transform:matrix(0.179685,0.003773,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.179685,0.003773,-0.005249,0.249945,0,0);}
.me6_c00496{transform:matrix(0.180090,0.006309,-0.008753,0.249847,0,0);-ms-transform:matrix(0.180090,0.006309,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.180090,0.006309,-0.008753,0.249847,0,0);}
.m122_c00496{transform:matrix(0.180129,0.005044,-0.006997,0.249902,0,0);-ms-transform:matrix(0.180129,0.005044,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.180129,0.005044,-0.006997,0.249902,0,0);}
.m101_c00496{transform:matrix(0.182393,0.006938,-0.009503,0.249819,0,0);-ms-transform:matrix(0.182393,0.006938,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.182393,0.006938,-0.009503,0.249819,0,0);}
.m2e_c00496{transform:matrix(0.183580,0.003855,-0.005249,0.249945,0,0);-ms-transform:matrix(0.183580,0.003855,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.183580,0.003855,-0.005249,0.249945,0,0);}
.mca_c00496{transform:matrix(0.185004,0.003885,-0.005249,0.249945,0,0);-ms-transform:matrix(0.185004,0.003885,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.185004,0.003885,-0.005249,0.249945,0,0);}
.m0_c00496{transform:matrix(0.185360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185360,0.000000,0.000000,0.250000,0,0);}
.me0_c00496{transform:matrix(0.185641,0.006504,-0.008753,0.249847,0,0);-ms-transform:matrix(0.185641,0.006504,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.185641,0.006504,-0.008753,0.249847,0,0);}
.m11d_c00496{transform:matrix(0.186147,0.005212,-0.006997,0.249902,0,0);-ms-transform:matrix(0.186147,0.005212,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.186147,0.005212,-0.006997,0.249902,0,0);}
.m5b_c00496{transform:matrix(0.186904,0.003925,-0.005249,0.249945,0,0);-ms-transform:matrix(0.186904,0.003925,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.186904,0.003925,-0.005249,0.249945,0,0);}
.m5e_c00496{transform:matrix(0.187459,0.003937,-0.005249,0.249945,0,0);-ms-transform:matrix(0.187459,0.003937,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.187459,0.003937,-0.005249,0.249945,0,0);}
.me8_c00496{transform:matrix(0.190838,0.006686,-0.008753,0.249847,0,0);-ms-transform:matrix(0.190838,0.006686,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.190838,0.006686,-0.008753,0.249847,0,0);}
.m55_c00496{transform:matrix(0.191393,0.004019,-0.005249,0.249945,0,0);-ms-transform:matrix(0.191393,0.004019,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.191393,0.004019,-0.005249,0.249945,0,0);}
.m28_c00496{transform:matrix(0.191933,0.004031,-0.005249,0.249945,0,0);-ms-transform:matrix(0.191933,0.004031,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.191933,0.004031,-0.005249,0.249945,0,0);}
.mf1_c00496{transform:matrix(0.192498,0.005775,-0.007497,0.249888,0,0);-ms-transform:matrix(0.192498,0.005775,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.192498,0.005775,-0.007497,0.249888,0,0);}
.m45_c00496{transform:matrix(0.192543,0.004043,-0.005249,0.249945,0,0);-ms-transform:matrix(0.192543,0.004043,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.192543,0.004043,-0.005249,0.249945,0,0);}
.m11c_c00496{transform:matrix(0.192769,0.005398,-0.006997,0.249902,0,0);-ms-transform:matrix(0.192769,0.005398,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.192769,0.005398,-0.006997,0.249902,0,0);}
.meb_c00496{transform:matrix(0.193068,0.005792,-0.007497,0.249888,0,0);-ms-transform:matrix(0.193068,0.005792,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.193068,0.005792,-0.007497,0.249888,0,0);}
.m9_c00496{transform:matrix(0.193112,0.004055,-0.005249,0.249945,0,0);-ms-transform:matrix(0.193112,0.004055,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.193112,0.004055,-0.005249,0.249945,0,0);}
.m116_c00496{transform:matrix(0.194499,0.005446,-0.006997,0.249902,0,0);-ms-transform:matrix(0.194499,0.005446,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.194499,0.005446,-0.006997,0.249902,0,0);}
.m105_c00496{transform:matrix(0.195519,0.007437,-0.009503,0.249819,0,0);-ms-transform:matrix(0.195519,0.007437,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.195519,0.007437,-0.009503,0.249819,0,0);}
.m31_c00496{transform:matrix(0.196142,0.004119,-0.005249,0.249945,0,0);-ms-transform:matrix(0.196142,0.004119,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.196142,0.004119,-0.005249,0.249945,0,0);}
.m2f_c00496{transform:matrix(0.197167,0.004140,-0.005249,0.249945,0,0);-ms-transform:matrix(0.197167,0.004140,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.197167,0.004140,-0.005249,0.249945,0,0);}
.m2a_c00496{transform:matrix(0.197916,0.004156,-0.005249,0.249945,0,0);-ms-transform:matrix(0.197916,0.004156,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.197916,0.004156,-0.005249,0.249945,0,0);}
.mb_c00496{transform:matrix(0.198161,0.004161,-0.005249,0.249945,0,0);-ms-transform:matrix(0.198161,0.004161,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.198161,0.004161,-0.005249,0.249945,0,0);}
.m53_c00496{transform:matrix(0.198301,0.004164,-0.005249,0.249945,0,0);-ms-transform:matrix(0.198301,0.004164,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.198301,0.004164,-0.005249,0.249945,0,0);}
.m103_c00496{transform:matrix(0.199980,0.007607,-0.009503,0.249819,0,0);-ms-transform:matrix(0.199980,0.007607,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.199980,0.007607,-0.009503,0.249819,0,0);}
.mee_c00496{transform:matrix(0.200480,0.006014,-0.007497,0.249888,0,0);-ms-transform:matrix(0.200480,0.006014,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.200480,0.006014,-0.007497,0.249888,0,0);}
.m118_c00496{transform:matrix(0.200801,0.005622,-0.006997,0.249902,0,0);-ms-transform:matrix(0.200801,0.005622,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.200801,0.005622,-0.006997,0.249902,0,0);}
.m12_c00496{transform:matrix(0.200836,0.004218,-0.005249,0.249945,0,0);-ms-transform:matrix(0.200836,0.004218,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.200836,0.004218,-0.005249,0.249945,0,0);}
.m2c_c00496{transform:matrix(0.201840,0.004239,-0.005249,0.249945,0,0);-ms-transform:matrix(0.201840,0.004239,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.201840,0.004239,-0.005249,0.249945,0,0);}
.m14_c00496{transform:matrix(0.202765,0.004258,-0.005249,0.249945,0,0);-ms-transform:matrix(0.202765,0.004258,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.202765,0.004258,-0.005249,0.249945,0,0);}
.m100_c00496{transform:matrix(0.203098,0.007725,-0.009503,0.249819,0,0);-ms-transform:matrix(0.203098,0.007725,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.203098,0.007725,-0.009503,0.249819,0,0);}
.mc4_c00496{transform:matrix(0.203120,0.004266,-0.005249,0.249945,0,0);-ms-transform:matrix(0.203120,0.004266,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.203120,0.004266,-0.005249,0.249945,0,0);}
.mc7_c00496{transform:matrix(0.204285,0.004290,-0.005249,0.249945,0,0);-ms-transform:matrix(0.204285,0.004290,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.204285,0.004290,-0.005249,0.249945,0,0);}
.m5c_c00496{transform:matrix(0.204905,0.004303,-0.005249,0.249945,0,0);-ms-transform:matrix(0.204905,0.004303,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.204905,0.004303,-0.005249,0.249945,0,0);}
.m61_c00496{transform:matrix(0.205455,0.004315,-0.005249,0.249945,0,0);-ms-transform:matrix(0.205455,0.004315,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.205455,0.004315,-0.005249,0.249945,0,0);}
.mef_c00496{transform:matrix(0.205543,0.006166,-0.007497,0.249888,0,0);-ms-transform:matrix(0.205543,0.006166,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.205543,0.006166,-0.007497,0.249888,0,0);}
.mc1_c00496{transform:matrix(0.205725,0.004320,-0.005249,0.249945,0,0);-ms-transform:matrix(0.205725,0.004320,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.205725,0.004320,-0.005249,0.249945,0,0);}
.ma0_c00496{transform:matrix(0.206050,0.004327,-0.005249,0.249945,0,0);-ms-transform:matrix(0.206050,0.004327,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.206050,0.004327,-0.005249,0.249945,0,0);}
.m127_c00496{transform:matrix(0.206085,0.008252,-0.010002,0.249800,0,0);-ms-transform:matrix(0.206085,0.008252,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.206085,0.008252,-0.010002,0.249800,0,0);}
.m56_c00496{transform:matrix(0.206414,0.004335,-0.005249,0.249945,0,0);-ms-transform:matrix(0.206414,0.004335,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.206414,0.004335,-0.005249,0.249945,0,0);}
.m117_c00496{transform:matrix(0.206519,0.005783,-0.006997,0.249902,0,0);-ms-transform:matrix(0.206519,0.005783,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.206519,0.005783,-0.006997,0.249902,0,0);}
.mc6_c00496{transform:matrix(0.206784,0.004342,-0.005249,0.249945,0,0);-ms-transform:matrix(0.206784,0.004342,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.206784,0.004342,-0.005249,0.249945,0,0);}
.m8a_c00496{transform:matrix(0.207054,0.004348,-0.005249,0.249945,0,0);-ms-transform:matrix(0.207054,0.004348,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.207054,0.004348,-0.005249,0.249945,0,0);}
.m13_c00496{transform:matrix(0.207329,0.004354,-0.005249,0.249945,0,0);-ms-transform:matrix(0.207329,0.004354,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.207329,0.004354,-0.005249,0.249945,0,0);}
.m84_c00496{transform:matrix(0.207969,0.004367,-0.005249,0.249945,0,0);-ms-transform:matrix(0.207969,0.004367,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.207969,0.004367,-0.005249,0.249945,0,0);}
.m36_c00496{transform:matrix(0.208429,0.004377,-0.005249,0.249945,0,0);-ms-transform:matrix(0.208429,0.004377,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.208429,0.004377,-0.005249,0.249945,0,0);}
.m68_c00496{transform:matrix(0.209039,0.004390,-0.005249,0.249945,0,0);-ms-transform:matrix(0.209039,0.004390,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.209039,0.004390,-0.005249,0.249945,0,0);}
.m108_c00496{transform:matrix(0.209049,0.007952,-0.009503,0.249819,0,0);-ms-transform:matrix(0.209049,0.007952,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.209049,0.007952,-0.009503,0.249819,0,0);}
.m64_c00496{transform:matrix(0.209254,0.004394,-0.005249,0.249945,0,0);-ms-transform:matrix(0.209254,0.004394,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.209254,0.004394,-0.005249,0.249945,0,0);}
.mfe_c00496{transform:matrix(0.209498,0.007969,-0.009503,0.249819,0,0);-ms-transform:matrix(0.209498,0.007969,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.209498,0.007969,-0.009503,0.249819,0,0);}
.m12a_c00496{transform:matrix(0.209882,0.008404,-0.010002,0.249800,0,0);-ms-transform:matrix(0.209882,0.008404,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.209882,0.008404,-0.010002,0.249800,0,0);}
.m3a_c00496{transform:matrix(0.209889,0.004408,-0.005249,0.249945,0,0);-ms-transform:matrix(0.209889,0.004408,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.209889,0.004408,-0.005249,0.249945,0,0);}
.m10_c00496{transform:matrix(0.210154,0.004413,-0.005249,0.249945,0,0);-ms-transform:matrix(0.210154,0.004413,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.210154,0.004413,-0.005249,0.249945,0,0);}
.m104_c00496{transform:matrix(0.211027,0.008027,-0.009503,0.249819,0,0);-ms-transform:matrix(0.211027,0.008027,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.211027,0.008027,-0.009503,0.249819,0,0);}
.m33_c00496{transform:matrix(0.211238,0.004436,-0.005249,0.249945,0,0);-ms-transform:matrix(0.211238,0.004436,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.211238,0.004436,-0.005249,0.249945,0,0);}
.m48_c00496{transform:matrix(0.211268,0.004437,-0.005249,0.249945,0,0);-ms-transform:matrix(0.211268,0.004437,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.211268,0.004437,-0.005249,0.249945,0,0);}
.m110_c00496{transform:matrix(0.211331,0.008462,-0.010002,0.249800,0,0);-ms-transform:matrix(0.211331,0.008462,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.211331,0.008462,-0.010002,0.249800,0,0);}
.m2b_c00496{transform:matrix(0.211763,0.004447,-0.005249,0.249945,0,0);-ms-transform:matrix(0.211763,0.004447,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.211763,0.004447,-0.005249,0.249945,0,0);}
.m128_c00496{transform:matrix(0.212005,0.008489,-0.010002,0.249800,0,0);-ms-transform:matrix(0.212005,0.008489,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.212005,0.008489,-0.010002,0.249800,0,0);}
.me9_c00496{transform:matrix(0.212689,0.006381,-0.007497,0.249888,0,0);-ms-transform:matrix(0.212689,0.006381,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.212689,0.006381,-0.007497,0.249888,0,0);}
.m107_c00496{transform:matrix(0.212806,0.008095,-0.009503,0.249819,0,0);-ms-transform:matrix(0.212806,0.008095,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.212806,0.008095,-0.009503,0.249819,0,0);}
.mb7_c00496{transform:matrix(0.213088,0.004475,-0.005249,0.249945,0,0);-ms-transform:matrix(0.213088,0.004475,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.213088,0.004475,-0.005249,0.249945,0,0);}
.m5a_c00496{transform:matrix(0.213168,0.004477,-0.005249,0.249945,0,0);-ms-transform:matrix(0.213168,0.004477,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.213168,0.004477,-0.005249,0.249945,0,0);}
.mc8_c00496{transform:matrix(0.213418,0.004482,-0.005249,0.249945,0,0);-ms-transform:matrix(0.213418,0.004482,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.213418,0.004482,-0.005249,0.249945,0,0);}
.m9e_c00496{transform:matrix(0.213673,0.004487,-0.005249,0.249945,0,0);-ms-transform:matrix(0.213673,0.004487,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.213673,0.004487,-0.005249,0.249945,0,0);}
.m30_c00496{transform:matrix(0.214258,0.004499,-0.005249,0.249945,0,0);-ms-transform:matrix(0.214258,0.004499,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.214258,0.004499,-0.005249,0.249945,0,0);}
.mf_c00496{transform:matrix(0.214373,0.004502,-0.005249,0.249945,0,0);-ms-transform:matrix(0.214373,0.004502,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.214373,0.004502,-0.005249,0.249945,0,0);}
.m5f_c00496{transform:matrix(0.215477,0.004525,-0.005249,0.249945,0,0);-ms-transform:matrix(0.215477,0.004525,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.215477,0.004525,-0.005249,0.249945,0,0);}
.mc0_c00496{transform:matrix(0.215667,0.004529,-0.005249,0.249945,0,0);-ms-transform:matrix(0.215667,0.004529,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.215667,0.004529,-0.005249,0.249945,0,0);}
.m102_c00496{transform:matrix(0.216893,0.008250,-0.009503,0.249819,0,0);-ms-transform:matrix(0.216893,0.008250,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.216893,0.008250,-0.009503,0.249819,0,0);}
.m12e_c00496{transform:matrix(0.217236,0.011308,-0.012995,0.249662,0,0);-ms-transform:matrix(0.217236,0.011308,-0.012995,0.249662,0,0);-webkit-transform:matrix(0.217236,0.011308,-0.012995,0.249662,0,0);}
.maf_c00496{transform:matrix(0.217452,0.004566,-0.005249,0.249945,0,0);-ms-transform:matrix(0.217452,0.004566,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.217452,0.004566,-0.005249,0.249945,0,0);}
.m6d_c00496{transform:matrix(0.217467,0.004567,-0.005249,0.249945,0,0);-ms-transform:matrix(0.217467,0.004567,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.217467,0.004567,-0.005249,0.249945,0,0);}
.m59_c00496{transform:matrix(0.218387,0.004586,-0.005249,0.249945,0,0);-ms-transform:matrix(0.218387,0.004586,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.218387,0.004586,-0.005249,0.249945,0,0);}
.m29_c00496{transform:matrix(0.218617,0.004591,-0.005249,0.249945,0,0);-ms-transform:matrix(0.218617,0.004591,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.218617,0.004591,-0.005249,0.249945,0,0);}
.m7_c00496{transform:matrix(0.218807,0.004595,-0.005249,0.249945,0,0);-ms-transform:matrix(0.218807,0.004595,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.218807,0.004595,-0.005249,0.249945,0,0);}
.m7d_c00496{transform:matrix(0.220056,0.004621,-0.005249,0.249945,0,0);-ms-transform:matrix(0.220056,0.004621,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.220056,0.004621,-0.005249,0.249945,0,0);}
.m82_c00496{transform:matrix(0.220431,0.004629,-0.005249,0.249945,0,0);-ms-transform:matrix(0.220431,0.004629,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.220431,0.004629,-0.005249,0.249945,0,0);}
.m3b_c00496{transform:matrix(0.220576,0.004632,-0.005249,0.249945,0,0);-ms-transform:matrix(0.220576,0.004632,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.220576,0.004632,-0.005249,0.249945,0,0);}
.m2d_c00496{transform:matrix(0.220611,0.004633,-0.005249,0.249945,0,0);-ms-transform:matrix(0.220611,0.004633,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.220611,0.004633,-0.005249,0.249945,0,0);}
.m106_c00496{transform:matrix(0.221035,0.008408,-0.009503,0.249819,0,0);-ms-transform:matrix(0.221035,0.008408,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.221035,0.008408,-0.009503,0.249819,0,0);}
.m9d_c00496{transform:matrix(0.221091,0.004643,-0.005249,0.249945,0,0);-ms-transform:matrix(0.221091,0.004643,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.221091,0.004643,-0.005249,0.249945,0,0);}
.m4_c00496{transform:matrix(0.221631,0.004654,-0.005249,0.249945,0,0);-ms-transform:matrix(0.221631,0.004654,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.221631,0.004654,-0.005249,0.249945,0,0);}
.mea_c00496{transform:matrix(0.222290,0.006669,-0.007497,0.249888,0,0);-ms-transform:matrix(0.222290,0.006669,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.222290,0.006669,-0.007497,0.249888,0,0);}
.m12d_c00496{transform:matrix(0.222742,0.008919,-0.010002,0.249800,0,0);-ms-transform:matrix(0.222742,0.008919,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.222742,0.008919,-0.010002,0.249800,0,0);}
.m58_c00496{transform:matrix(0.222816,0.004679,-0.005249,0.249945,0,0);-ms-transform:matrix(0.222816,0.004679,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.222816,0.004679,-0.005249,0.249945,0,0);}
.m5d_c00496{transform:matrix(0.222986,0.004683,-0.005249,0.249945,0,0);-ms-transform:matrix(0.222986,0.004683,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.222986,0.004683,-0.005249,0.249945,0,0);}
.m10b_c00496{transform:matrix(0.223091,0.008933,-0.010002,0.249800,0,0);-ms-transform:matrix(0.223091,0.008933,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.223091,0.008933,-0.010002,0.249800,0,0);}
.mf6_c00496{transform:matrix(0.223170,0.006695,-0.007497,0.249888,0,0);-ms-transform:matrix(0.223170,0.006695,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.223170,0.006695,-0.007497,0.249888,0,0);}
.mab_c00496{transform:matrix(0.223221,0.004688,-0.005249,0.249945,0,0);-ms-transform:matrix(0.223221,0.004688,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.223221,0.004688,-0.005249,0.249945,0,0);}
.m81_c00496{transform:matrix(0.223356,0.004690,-0.005249,0.249945,0,0);-ms-transform:matrix(0.223356,0.004690,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.223356,0.004690,-0.005249,0.249945,0,0);}
.m40_c00496{transform:matrix(0.223436,0.004692,-0.005249,0.249945,0,0);-ms-transform:matrix(0.223436,0.004692,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.223436,0.004692,-0.005249,0.249945,0,0);}
.m8d_c00496{transform:matrix(0.223461,0.004693,-0.005249,0.249945,0,0);-ms-transform:matrix(0.223461,0.004693,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.223461,0.004693,-0.005249,0.249945,0,0);}
.m26_c00496{transform:matrix(0.223646,0.004697,-0.005249,0.249945,0,0);-ms-transform:matrix(0.223646,0.004697,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.223646,0.004697,-0.005249,0.249945,0,0);}
.m43_c00496{transform:matrix(0.223706,0.004698,-0.005249,0.249945,0,0);-ms-transform:matrix(0.223706,0.004698,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.223706,0.004698,-0.005249,0.249945,0,0);}
.md1_c00496{transform:matrix(0.223921,0.004702,-0.005249,0.249945,0,0);-ms-transform:matrix(0.223921,0.004702,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.223921,0.004702,-0.005249,0.249945,0,0);}
.m79_c00496{transform:matrix(0.224021,0.004704,-0.005249,0.249945,0,0);-ms-transform:matrix(0.224021,0.004704,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.224021,0.004704,-0.005249,0.249945,0,0);}
.m44_c00496{transform:matrix(0.224261,0.004709,-0.005249,0.249945,0,0);-ms-transform:matrix(0.224261,0.004709,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.224261,0.004709,-0.005249,0.249945,0,0);}
.m63_c00496{transform:matrix(0.224291,0.004710,-0.005249,0.249945,0,0);-ms-transform:matrix(0.224291,0.004710,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.224291,0.004710,-0.005249,0.249945,0,0);}
.mf2_c00496{transform:matrix(0.224344,0.006730,-0.007497,0.249888,0,0);-ms-transform:matrix(0.224344,0.006730,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.224344,0.006730,-0.007497,0.249888,0,0);}
.m67_c00496{transform:matrix(0.224715,0.004719,-0.005249,0.249945,0,0);-ms-transform:matrix(0.224715,0.004719,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.224715,0.004719,-0.005249,0.249945,0,0);}
.mc2_c00496{transform:matrix(0.225250,0.004730,-0.005249,0.249945,0,0);-ms-transform:matrix(0.225250,0.004730,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.225250,0.004730,-0.005249,0.249945,0,0);}
.m23_c00496{transform:matrix(0.225510,0.004736,-0.005249,0.249945,0,0);-ms-transform:matrix(0.225510,0.004736,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.225510,0.004736,-0.005249,0.249945,0,0);}
.mb3_c00496{transform:matrix(0.225795,0.004742,-0.005249,0.249945,0,0);-ms-transform:matrix(0.225795,0.004742,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.225795,0.004742,-0.005249,0.249945,0,0);}
.m50_c00496{transform:matrix(0.226060,0.004747,-0.005249,0.249945,0,0);-ms-transform:matrix(0.226060,0.004747,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.226060,0.004747,-0.005249,0.249945,0,0);}
.m9f_c00496{transform:matrix(0.226115,0.004748,-0.005249,0.249945,0,0);-ms-transform:matrix(0.226115,0.004748,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.226115,0.004748,-0.005249,0.249945,0,0);}
.m65_c00496{transform:matrix(0.226125,0.004749,-0.005249,0.249945,0,0);-ms-transform:matrix(0.226125,0.004749,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.226125,0.004749,-0.005249,0.249945,0,0);}
.mec_c00496{transform:matrix(0.226203,0.006786,-0.007497,0.249888,0,0);-ms-transform:matrix(0.226203,0.006786,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.226203,0.006786,-0.007497,0.249888,0,0);}
.mba_c00496{transform:matrix(0.226775,0.004762,-0.005249,0.249945,0,0);-ms-transform:matrix(0.226775,0.004762,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.226775,0.004762,-0.005249,0.249945,0,0);}
.mf4_c00496{transform:matrix(0.226843,0.006805,-0.007497,0.249888,0,0);-ms-transform:matrix(0.226843,0.006805,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.226843,0.006805,-0.007497,0.249888,0,0);}
.m32_c00496{transform:matrix(0.226880,0.004764,-0.005249,0.249945,0,0);-ms-transform:matrix(0.226880,0.004764,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.226880,0.004764,-0.005249,0.249945,0,0);}
.m19_c00496{transform:matrix(0.226955,0.004766,-0.005249,0.249945,0,0);-ms-transform:matrix(0.226955,0.004766,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.226955,0.004766,-0.005249,0.249945,0,0);}
.ma_c00496{transform:matrix(0.227185,0.004771,-0.005249,0.249945,0,0);-ms-transform:matrix(0.227185,0.004771,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.227185,0.004771,-0.005249,0.249945,0,0);}
.m4d_c00496{transform:matrix(0.227380,0.004775,-0.005249,0.249945,0,0);-ms-transform:matrix(0.227380,0.004775,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.227380,0.004775,-0.005249,0.249945,0,0);}
.m47_c00496{transform:matrix(0.227975,0.004787,-0.005249,0.249945,0,0);-ms-transform:matrix(0.227975,0.004787,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.227975,0.004787,-0.005249,0.249945,0,0);}
.mbd_c00496{transform:matrix(0.228180,0.004792,-0.005249,0.249945,0,0);-ms-transform:matrix(0.228180,0.004792,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.228180,0.004792,-0.005249,0.249945,0,0);}
.mcb_c00496{transform:matrix(0.228800,0.004805,-0.005249,0.249945,0,0);-ms-transform:matrix(0.228800,0.004805,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.228800,0.004805,-0.005249,0.249945,0,0);}
.m12f_c00496{transform:matrix(0.228805,0.011910,-0.012995,0.249662,0,0);-ms-transform:matrix(0.228805,0.011910,-0.012995,0.249662,0,0);-webkit-transform:matrix(0.228805,0.011910,-0.012995,0.249662,0,0);}
.ma7_c00496{transform:matrix(0.228810,0.004805,-0.005249,0.249945,0,0);-ms-transform:matrix(0.228810,0.004805,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.228810,0.004805,-0.005249,0.249945,0,0);}
.m12c_c00496{transform:matrix(0.228922,0.009166,-0.010002,0.249800,0,0);-ms-transform:matrix(0.228922,0.009166,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.228922,0.009166,-0.010002,0.249800,0,0);}
.m25_c00496{transform:matrix(0.229025,0.004810,-0.005249,0.249945,0,0);-ms-transform:matrix(0.229025,0.004810,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.229025,0.004810,-0.005249,0.249945,0,0);}
.med_c00496{transform:matrix(0.229192,0.006876,-0.007497,0.249888,0,0);-ms-transform:matrix(0.229192,0.006876,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.229192,0.006876,-0.007497,0.249888,0,0);}
.mac_c00496{transform:matrix(0.229214,0.004814,-0.005249,0.249945,0,0);-ms-transform:matrix(0.229214,0.004814,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.229214,0.004814,-0.005249,0.249945,0,0);}
.m1d_c00496{transform:matrix(0.229474,0.004819,-0.005249,0.249945,0,0);-ms-transform:matrix(0.229474,0.004819,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.229474,0.004819,-0.005249,0.249945,0,0);}
.m80_c00496{transform:matrix(0.229484,0.004819,-0.005249,0.249945,0,0);-ms-transform:matrix(0.229484,0.004819,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.229484,0.004819,-0.005249,0.249945,0,0);}
.mbb_c00496{transform:matrix(0.229589,0.004821,-0.005249,0.249945,0,0);-ms-transform:matrix(0.229589,0.004821,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.229589,0.004821,-0.005249,0.249945,0,0);}
.md9_c00496{transform:matrix(0.230025,0.011743,-0.012746,0.249675,0,0);-ms-transform:matrix(0.230025,0.011743,-0.012746,0.249675,0,0);-webkit-transform:matrix(0.230025,0.011743,-0.012746,0.249675,0,0);}
.md_c00496{transform:matrix(0.230069,0.004831,-0.005249,0.249945,0,0);-ms-transform:matrix(0.230069,0.004831,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.230069,0.004831,-0.005249,0.249945,0,0);}
.m8e_c00496{transform:matrix(0.230289,0.004836,-0.005249,0.249945,0,0);-ms-transform:matrix(0.230289,0.004836,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.230289,0.004836,-0.005249,0.249945,0,0);}
.m60_c00496{transform:matrix(0.230409,0.004839,-0.005249,0.249945,0,0);-ms-transform:matrix(0.230409,0.004839,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.230409,0.004839,-0.005249,0.249945,0,0);}
.mc9_c00496{transform:matrix(0.230754,0.004846,-0.005249,0.249945,0,0);-ms-transform:matrix(0.230754,0.004846,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.230754,0.004846,-0.005249,0.249945,0,0);}
.m113_c00496{transform:matrix(0.231290,0.009261,-0.010002,0.249800,0,0);-ms-transform:matrix(0.231290,0.009261,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.231290,0.009261,-0.010002,0.249800,0,0);}
.mc3_c00496{transform:matrix(0.231404,0.004859,-0.005249,0.249945,0,0);-ms-transform:matrix(0.231404,0.004859,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.231404,0.004859,-0.005249,0.249945,0,0);}
.m6_c00496{transform:matrix(0.232064,0.004873,-0.005249,0.249945,0,0);-ms-transform:matrix(0.232064,0.004873,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.232064,0.004873,-0.005249,0.249945,0,0);}
.m8_c00496{transform:matrix(0.232404,0.004880,-0.005249,0.249945,0,0);-ms-transform:matrix(0.232404,0.004880,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.232404,0.004880,-0.005249,0.249945,0,0);}
.me_c00496{transform:matrix(0.232599,0.004885,-0.005249,0.249945,0,0);-ms-transform:matrix(0.232599,0.004885,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.232599,0.004885,-0.005249,0.249945,0,0);}
.mf0_c00496{transform:matrix(0.232795,0.006984,-0.007497,0.249888,0,0);-ms-transform:matrix(0.232795,0.006984,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.232795,0.006984,-0.007497,0.249888,0,0);}
.m6c_c00496{transform:matrix(0.232934,0.004892,-0.005249,0.249945,0,0);-ms-transform:matrix(0.232934,0.004892,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.232934,0.004892,-0.005249,0.249945,0,0);}
.mf3_c00496{transform:matrix(0.233010,0.006990,-0.007497,0.249888,0,0);-ms-transform:matrix(0.233010,0.006990,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.233010,0.006990,-0.007497,0.249888,0,0);}
.mc5_c00496{transform:matrix(0.233339,0.004900,-0.005249,0.249945,0,0);-ms-transform:matrix(0.233339,0.004900,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.233339,0.004900,-0.005249,0.249945,0,0);}
.m21_c00496{transform:matrix(0.233688,0.004907,-0.005249,0.249945,0,0);-ms-transform:matrix(0.233688,0.004907,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.233688,0.004907,-0.005249,0.249945,0,0);}
.m11_c00496{transform:matrix(0.233773,0.004909,-0.005249,0.249945,0,0);-ms-transform:matrix(0.233773,0.004909,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.233773,0.004909,-0.005249,0.249945,0,0);}
.m46_c00496{transform:matrix(0.234333,0.004921,-0.005249,0.249945,0,0);-ms-transform:matrix(0.234333,0.004921,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.234333,0.004921,-0.005249,0.249945,0,0);}
.ma5_c00496{transform:matrix(0.234663,0.004928,-0.005249,0.249945,0,0);-ms-transform:matrix(0.234663,0.004928,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.234663,0.004928,-0.005249,0.249945,0,0);}
.m3_c00496{transform:matrix(0.234678,0.004928,-0.005249,0.249945,0,0);-ms-transform:matrix(0.234678,0.004928,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.234678,0.004928,-0.005249,0.249945,0,0);}
.m115_c00496{transform:matrix(0.234753,0.006573,-0.006997,0.249902,0,0);-ms-transform:matrix(0.234753,0.006573,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.234753,0.006573,-0.006997,0.249902,0,0);}
.m72_c00496{transform:matrix(0.235028,0.004936,-0.005249,0.249945,0,0);-ms-transform:matrix(0.235028,0.004936,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.235028,0.004936,-0.005249,0.249945,0,0);}
.m35_c00496{transform:matrix(0.235383,0.004943,-0.005249,0.249945,0,0);-ms-transform:matrix(0.235383,0.004943,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.235383,0.004943,-0.005249,0.249945,0,0);}
.mb8_c00496{transform:matrix(0.235528,0.004946,-0.005249,0.249945,0,0);-ms-transform:matrix(0.235528,0.004946,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.235528,0.004946,-0.005249,0.249945,0,0);}
.m22_c00496{transform:matrix(0.235628,0.004948,-0.005249,0.249945,0,0);-ms-transform:matrix(0.235628,0.004948,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.235628,0.004948,-0.005249,0.249945,0,0);}
.ma3_c00496{transform:matrix(0.236068,0.004957,-0.005249,0.249945,0,0);-ms-transform:matrix(0.236068,0.004957,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.236068,0.004957,-0.005249,0.249945,0,0);}
.mdd_c00496{transform:matrix(0.236257,0.012061,-0.012746,0.249675,0,0);-ms-transform:matrix(0.236257,0.012061,-0.012746,0.249675,0,0);-webkit-transform:matrix(0.236257,0.012061,-0.012746,0.249675,0,0);}
.m12b_c00496{transform:matrix(0.236361,0.009464,-0.010002,0.249800,0,0);-ms-transform:matrix(0.236361,0.009464,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.236361,0.009464,-0.010002,0.249800,0,0);}
.m42_c00496{transform:matrix(0.236568,0.004968,-0.005249,0.249945,0,0);-ms-transform:matrix(0.236568,0.004968,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.236568,0.004968,-0.005249,0.249945,0,0);}
.m62_c00496{transform:matrix(0.236603,0.004969,-0.005249,0.249945,0,0);-ms-transform:matrix(0.236603,0.004969,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.236603,0.004969,-0.005249,0.249945,0,0);}
.m27_c00496{transform:matrix(0.236978,0.004977,-0.005249,0.249945,0,0);-ms-transform:matrix(0.236978,0.004977,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.236978,0.004977,-0.005249,0.249945,0,0);}
.mfc_c00496{transform:matrix(0.237063,0.007112,-0.007497,0.249888,0,0);-ms-transform:matrix(0.237063,0.007112,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.237063,0.007112,-0.007497,0.249888,0,0);}
.mbe_c00496{transform:matrix(0.237343,0.004984,-0.005249,0.249945,0,0);-ms-transform:matrix(0.237343,0.004984,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.237343,0.004984,-0.005249,0.249945,0,0);}
.mb9_c00496{transform:matrix(0.237363,0.004985,-0.005249,0.249945,0,0);-ms-transform:matrix(0.237363,0.004985,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.237363,0.004985,-0.005249,0.249945,0,0);}
.m109_c00496{transform:matrix(0.237640,0.009515,-0.010002,0.249800,0,0);-ms-transform:matrix(0.237640,0.009515,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.237640,0.009515,-0.010002,0.249800,0,0);}
.mb1_c00496{transform:matrix(0.237778,0.004993,-0.005249,0.249945,0,0);-ms-transform:matrix(0.237778,0.004993,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.237778,0.004993,-0.005249,0.249945,0,0);}
.m3d_c00496{transform:matrix(0.237848,0.004995,-0.005249,0.249945,0,0);-ms-transform:matrix(0.237848,0.004995,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.237848,0.004995,-0.005249,0.249945,0,0);}
.m24_c00496{transform:matrix(0.238167,0.005002,-0.005249,0.249945,0,0);-ms-transform:matrix(0.238167,0.005002,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.238167,0.005002,-0.005249,0.249945,0,0);}
.mdc_c00496{transform:matrix(0.238235,0.012162,-0.012746,0.249675,0,0);-ms-transform:matrix(0.238235,0.012162,-0.012746,0.249675,0,0);-webkit-transform:matrix(0.238235,0.012162,-0.012746,0.249675,0,0);}
.m95_c00496{transform:matrix(0.238482,0.005008,-0.005249,0.249945,0,0);-ms-transform:matrix(0.238482,0.005008,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.238482,0.005008,-0.005249,0.249945,0,0);}
.mcc_c00496{transform:matrix(0.238612,0.005011,-0.005249,0.249945,0,0);-ms-transform:matrix(0.238612,0.005011,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.238612,0.005011,-0.005249,0.249945,0,0);}
.m3f_c00496{transform:matrix(0.238802,0.005015,-0.005249,0.249945,0,0);-ms-transform:matrix(0.238802,0.005015,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.238802,0.005015,-0.005249,0.249945,0,0);}
.m34_c00496{transform:matrix(0.238827,0.005015,-0.005249,0.249945,0,0);-ms-transform:matrix(0.238827,0.005015,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.238827,0.005015,-0.005249,0.249945,0,0);}
.m86_c00496{transform:matrix(0.239017,0.005019,-0.005249,0.249945,0,0);-ms-transform:matrix(0.239017,0.005019,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.239017,0.005019,-0.005249,0.249945,0,0);}
.m129_c00496{transform:matrix(0.239053,0.009572,-0.010002,0.249800,0,0);-ms-transform:matrix(0.239053,0.009572,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.239053,0.009572,-0.010002,0.249800,0,0);}
.m20_c00496{transform:matrix(0.239242,0.005024,-0.005249,0.249945,0,0);-ms-transform:matrix(0.239242,0.005024,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.239242,0.005024,-0.005249,0.249945,0,0);}
.m11a_c00496{transform:matrix(0.239506,0.006706,-0.006997,0.249902,0,0);-ms-transform:matrix(0.239506,0.006706,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.239506,0.006706,-0.006997,0.249902,0,0);}
.md6_c00496{transform:matrix(0.239843,0.012244,-0.012746,0.249675,0,0);-ms-transform:matrix(0.239843,0.012244,-0.012746,0.249675,0,0);-webkit-transform:matrix(0.239843,0.012244,-0.012746,0.249675,0,0);}
.m130_c00496{transform:matrix(0.239980,0.012491,-0.012995,0.249662,0,0);-ms-transform:matrix(0.239980,0.012491,-0.012995,0.249662,0,0);-webkit-transform:matrix(0.239980,0.012491,-0.012995,0.249662,0,0);}
.m9b_c00496{transform:matrix(0.240242,0.005045,-0.005249,0.249945,0,0);-ms-transform:matrix(0.240242,0.005045,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.240242,0.005045,-0.005249,0.249945,0,0);}
.m6a_c00496{transform:matrix(0.241017,0.005061,-0.005249,0.249945,0,0);-ms-transform:matrix(0.241017,0.005061,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.241017,0.005061,-0.005249,0.249945,0,0);}
.m119_c00496{transform:matrix(0.241160,0.006752,-0.006997,0.249902,0,0);-ms-transform:matrix(0.241160,0.006752,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.241160,0.006752,-0.006997,0.249902,0,0);}
.mcf_c00496{transform:matrix(0.241247,0.005066,-0.005249,0.249945,0,0);-ms-transform:matrix(0.241247,0.005066,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.241247,0.005066,-0.005249,0.249945,0,0);}
.m18_c00496{transform:matrix(0.241967,0.005081,-0.005249,0.249945,0,0);-ms-transform:matrix(0.241967,0.005081,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.241967,0.005081,-0.005249,0.249945,0,0);}
.m126_c00496{transform:matrix(0.243320,0.009743,-0.010002,0.249800,0,0);-ms-transform:matrix(0.243320,0.009743,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.243320,0.009743,-0.010002,0.249800,0,0);}
.m69_c00496{transform:matrix(0.243436,0.005112,-0.005249,0.249945,0,0);-ms-transform:matrix(0.243436,0.005112,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.243436,0.005112,-0.005249,0.249945,0,0);}
.mb5_c00496{transform:matrix(0.243551,0.005115,-0.005249,0.249945,0,0);-ms-transform:matrix(0.243551,0.005115,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.243551,0.005115,-0.005249,0.249945,0,0);}
.m92_c00496{transform:matrix(0.243696,0.005118,-0.005249,0.249945,0,0);-ms-transform:matrix(0.243696,0.005118,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.243696,0.005118,-0.005249,0.249945,0,0);}
.ma9_c00496{transform:matrix(0.243726,0.005118,-0.005249,0.249945,0,0);-ms-transform:matrix(0.243726,0.005118,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.243726,0.005118,-0.005249,0.249945,0,0);}
.mb6_c00496{transform:matrix(0.243781,0.005119,-0.005249,0.249945,0,0);-ms-transform:matrix(0.243781,0.005119,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.243781,0.005119,-0.005249,0.249945,0,0);}
.m88_c00496{transform:matrix(0.243811,0.005120,-0.005249,0.249945,0,0);-ms-transform:matrix(0.243811,0.005120,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.243811,0.005120,-0.005249,0.249945,0,0);}
.m10e_c00496{transform:matrix(0.244789,0.009801,-0.010002,0.249800,0,0);-ms-transform:matrix(0.244789,0.009801,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.244789,0.009801,-0.010002,0.249800,0,0);}
.mbc_c00496{transform:matrix(0.244961,0.005144,-0.005249,0.249945,0,0);-ms-transform:matrix(0.244961,0.005144,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.244961,0.005144,-0.005249,0.249945,0,0);}
.m90_c00496{transform:matrix(0.245161,0.005148,-0.005249,0.249945,0,0);-ms-transform:matrix(0.245161,0.005148,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.245161,0.005148,-0.005249,0.249945,0,0);}
.m39_c00496{transform:matrix(0.245311,0.005152,-0.005249,0.249945,0,0);-ms-transform:matrix(0.245311,0.005152,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.245311,0.005152,-0.005249,0.249945,0,0);}
.me5_c00496{transform:matrix(0.245499,0.008601,-0.008753,0.249847,0,0);-ms-transform:matrix(0.245499,0.008601,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.245499,0.008601,-0.008753,0.249847,0,0);}
.mfd_c00496{transform:matrix(0.245694,0.007371,-0.007497,0.249888,0,0);-ms-transform:matrix(0.245694,0.007371,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.245694,0.007371,-0.007497,0.249888,0,0);}
.m51_c00496{transform:matrix(0.247495,0.005197,-0.005249,0.249945,0,0);-ms-transform:matrix(0.247495,0.005197,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.247495,0.005197,-0.005249,0.249945,0,0);}
.m41_c00496{transform:matrix(0.248010,0.005208,-0.005249,0.249945,0,0);-ms-transform:matrix(0.248010,0.005208,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.248010,0.005208,-0.005249,0.249945,0,0);}
.ma4_c00496{transform:matrix(0.248070,0.005209,-0.005249,0.249945,0,0);-ms-transform:matrix(0.248070,0.005209,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.248070,0.005209,-0.005249,0.249945,0,0);}
.m6b_c00496{transform:matrix(0.248415,0.005217,-0.005249,0.249945,0,0);-ms-transform:matrix(0.248415,0.005217,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.248415,0.005217,-0.005249,0.249945,0,0);}
.m125_c00496{transform:matrix(0.248556,0.009952,-0.010002,0.249800,0,0);-ms-transform:matrix(0.248556,0.009952,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.248556,0.009952,-0.010002,0.249800,0,0);}
.mbf_c00496{transform:matrix(0.248800,0.005225,-0.005249,0.249945,0,0);-ms-transform:matrix(0.248800,0.005225,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.248800,0.005225,-0.005249,0.249945,0,0);}
.m37_c00496{transform:matrix(0.249105,0.005231,-0.005249,0.249945,0,0);-ms-transform:matrix(0.249105,0.005231,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.249105,0.005231,-0.005249,0.249945,0,0);}
.m3c_c00496{transform:matrix(0.249265,0.005235,-0.005249,0.249945,0,0);-ms-transform:matrix(0.249265,0.005235,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.249265,0.005235,-0.005249,0.249945,0,0);}
.m1a_c00496{transform:matrix(0.249595,0.005241,-0.005249,0.249945,0,0);-ms-transform:matrix(0.249595,0.005241,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.249595,0.005241,-0.005249,0.249945,0,0);}
.m89_c00496{transform:matrix(0.249890,0.005248,-0.005249,0.249945,0,0);-ms-transform:matrix(0.249890,0.005248,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.249890,0.005248,-0.005249,0.249945,0,0);}
.m66_c00496{transform:matrix(0.249965,0.005249,-0.005249,0.249945,0,0);-ms-transform:matrix(0.249965,0.005249,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.249965,0.005249,-0.005249,0.249945,0,0);}
.m9a_c00496{transform:matrix(0.250100,0.005252,-0.005249,0.249945,0,0);-ms-transform:matrix(0.250100,0.005252,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.250100,0.005252,-0.005249,0.249945,0,0);}
.md7_c00496{transform:matrix(0.250134,0.012770,-0.012746,0.249675,0,0);-ms-transform:matrix(0.250134,0.012770,-0.012746,0.249675,0,0);-webkit-transform:matrix(0.250134,0.012770,-0.012746,0.249675,0,0);}
.md2_c00496{transform:matrix(0.250960,0.005270,-0.005249,0.249945,0,0);-ms-transform:matrix(0.250960,0.005270,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.250960,0.005270,-0.005249,0.249945,0,0);}
.m71_c00496{transform:matrix(0.251340,0.005278,-0.005249,0.249945,0,0);-ms-transform:matrix(0.251340,0.005278,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.251340,0.005278,-0.005249,0.249945,0,0);}
.mb4_c00496{transform:matrix(0.251345,0.005278,-0.005249,0.249945,0,0);-ms-transform:matrix(0.251345,0.005278,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.251345,0.005278,-0.005249,0.249945,0,0);}
.m77_c00496{transform:matrix(0.251390,0.005279,-0.005249,0.249945,0,0);-ms-transform:matrix(0.251390,0.005279,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.251390,0.005279,-0.005249,0.249945,0,0);}
.m3e_c00496{transform:matrix(0.251615,0.005284,-0.005249,0.249945,0,0);-ms-transform:matrix(0.251615,0.005284,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.251615,0.005284,-0.005249,0.249945,0,0);}
.m1f_c00496{transform:matrix(0.252379,0.005300,-0.005249,0.249945,0,0);-ms-transform:matrix(0.252379,0.005300,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.252379,0.005300,-0.005249,0.249945,0,0);}
.m10d_c00496{transform:matrix(0.252388,0.010106,-0.010002,0.249800,0,0);-ms-transform:matrix(0.252388,0.010106,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.252388,0.010106,-0.010002,0.249800,0,0);}
.m94_c00496{transform:matrix(0.252949,0.005312,-0.005249,0.249945,0,0);-ms-transform:matrix(0.252949,0.005312,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.252949,0.005312,-0.005249,0.249945,0,0);}
.m83_c00496{transform:matrix(0.253074,0.005315,-0.005249,0.249945,0,0);-ms-transform:matrix(0.253074,0.005315,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.253074,0.005315,-0.005249,0.249945,0,0);}
.m85_c00496{transform:matrix(0.253294,0.005319,-0.005249,0.249945,0,0);-ms-transform:matrix(0.253294,0.005319,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.253294,0.005319,-0.005249,0.249945,0,0);}
.m38_c00496{transform:matrix(0.253489,0.005323,-0.005249,0.249945,0,0);-ms-transform:matrix(0.253489,0.005323,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.253489,0.005323,-0.005249,0.249945,0,0);}
.mf8_c00496{transform:matrix(0.253761,0.007613,-0.007497,0.249888,0,0);-ms-transform:matrix(0.253761,0.007613,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.253761,0.007613,-0.007497,0.249888,0,0);}
.m10f_c00496{transform:matrix(0.254186,0.010178,-0.010002,0.249800,0,0);-ms-transform:matrix(0.254186,0.010178,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.254186,0.010178,-0.010002,0.249800,0,0);}
.m75_c00496{transform:matrix(0.254724,0.005349,-0.005249,0.249945,0,0);-ms-transform:matrix(0.254724,0.005349,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.254724,0.005349,-0.005249,0.249945,0,0);}
.mdb_c00496{transform:matrix(0.254978,0.013017,-0.012746,0.249675,0,0);-ms-transform:matrix(0.254978,0.013017,-0.012746,0.249675,0,0);-webkit-transform:matrix(0.254978,0.013017,-0.012746,0.249675,0,0);}
.m2_c00496{transform:matrix(0.255729,0.005370,-0.005249,0.249945,0,0);-ms-transform:matrix(0.255729,0.005370,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.255729,0.005370,-0.005249,0.249945,0,0);}
.mf5_c00496{transform:matrix(0.257084,0.007713,-0.007497,0.249888,0,0);-ms-transform:matrix(0.257084,0.007713,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.257084,0.007713,-0.007497,0.249888,0,0);}
.m49_c00496{transform:matrix(0.257348,0.005404,-0.005249,0.249945,0,0);-ms-transform:matrix(0.257348,0.005404,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.257348,0.005404,-0.005249,0.249945,0,0);}
.m87_c00496{transform:matrix(0.257643,0.005411,-0.005249,0.249945,0,0);-ms-transform:matrix(0.257643,0.005411,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.257643,0.005411,-0.005249,0.249945,0,0);}
.m114_c00496{transform:matrix(0.258318,0.010343,-0.010002,0.249800,0,0);-ms-transform:matrix(0.258318,0.010343,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.258318,0.010343,-0.010002,0.249800,0,0);}
.ma6_c00496{transform:matrix(0.258598,0.005431,-0.005249,0.249945,0,0);-ms-transform:matrix(0.258598,0.005431,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.258598,0.005431,-0.005249,0.249945,0,0);}
.mce_c00496{transform:matrix(0.258893,0.005437,-0.005249,0.249945,0,0);-ms-transform:matrix(0.258893,0.005437,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.258893,0.005437,-0.005249,0.249945,0,0);}
.m78_c00496{transform:matrix(0.259898,0.005458,-0.005249,0.249945,0,0);-ms-transform:matrix(0.259898,0.005458,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.259898,0.005458,-0.005249,0.249945,0,0);}
.m16_c00496{transform:matrix(0.260193,0.005464,-0.005249,0.249945,0,0);-ms-transform:matrix(0.260193,0.005464,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.260193,0.005464,-0.005249,0.249945,0,0);}
.m1e_c00496{transform:matrix(0.260383,0.005468,-0.005249,0.249945,0,0);-ms-transform:matrix(0.260383,0.005468,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.260383,0.005468,-0.005249,0.249945,0,0);}
.m111_c00496{transform:matrix(0.261156,0.010457,-0.010002,0.249800,0,0);-ms-transform:matrix(0.261156,0.010457,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.261156,0.010457,-0.010002,0.249800,0,0);}
.mb2_c00496{transform:matrix(0.261792,0.005498,-0.005249,0.249945,0,0);-ms-transform:matrix(0.261792,0.005498,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.261792,0.005498,-0.005249,0.249945,0,0);}
.m7a_c00496{transform:matrix(0.262232,0.005507,-0.005249,0.249945,0,0);-ms-transform:matrix(0.262232,0.005507,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.262232,0.005507,-0.005249,0.249945,0,0);}
.mb0_c00496{transform:matrix(0.262492,0.005512,-0.005249,0.249945,0,0);-ms-transform:matrix(0.262492,0.005512,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.262492,0.005512,-0.005249,0.249945,0,0);}
.m98_c00496{transform:matrix(0.262517,0.005513,-0.005249,0.249945,0,0);-ms-transform:matrix(0.262517,0.005513,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.262517,0.005513,-0.005249,0.249945,0,0);}
.m8b_c00496{transform:matrix(0.263877,0.005541,-0.005249,0.249945,0,0);-ms-transform:matrix(0.263877,0.005541,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.263877,0.005541,-0.005249,0.249945,0,0);}
.m74_c00496{transform:matrix(0.263992,0.005544,-0.005249,0.249945,0,0);-ms-transform:matrix(0.263992,0.005544,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.263992,0.005544,-0.005249,0.249945,0,0);}
.m7b_c00496{transform:matrix(0.264097,0.005546,-0.005249,0.249945,0,0);-ms-transform:matrix(0.264097,0.005546,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.264097,0.005546,-0.005249,0.249945,0,0);}
.mde_c00496{transform:matrix(0.264615,0.013509,-0.012746,0.249675,0,0);-ms-transform:matrix(0.264615,0.013509,-0.012746,0.249675,0,0);-webkit-transform:matrix(0.264615,0.013509,-0.012746,0.249675,0,0);}
.m4c_c00496{transform:matrix(0.264932,0.005564,-0.005249,0.249945,0,0);-ms-transform:matrix(0.264932,0.005564,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.264932,0.005564,-0.005249,0.249945,0,0);}
.m52_c00496{transform:matrix(0.265262,0.005570,-0.005249,0.249945,0,0);-ms-transform:matrix(0.265262,0.005570,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.265262,0.005570,-0.005249,0.249945,0,0);}
.mcd_c00496{transform:matrix(0.265391,0.005573,-0.005249,0.249945,0,0);-ms-transform:matrix(0.265391,0.005573,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.265391,0.005573,-0.005249,0.249945,0,0);}
.m4f_c00496{transform:matrix(0.266321,0.005593,-0.005249,0.249945,0,0);-ms-transform:matrix(0.266321,0.005593,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.266321,0.005593,-0.005249,0.249945,0,0);}
.m4b_c00496{transform:matrix(0.266756,0.005602,-0.005249,0.249945,0,0);-ms-transform:matrix(0.266756,0.005602,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.266756,0.005602,-0.005249,0.249945,0,0);}
.m76_c00496{transform:matrix(0.266831,0.005603,-0.005249,0.249945,0,0);-ms-transform:matrix(0.266831,0.005603,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.266831,0.005603,-0.005249,0.249945,0,0);}
.mf7_c00496{transform:matrix(0.266845,0.008005,-0.007497,0.249888,0,0);-ms-transform:matrix(0.266845,0.008005,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.266845,0.008005,-0.007497,0.249888,0,0);}
.m6f_c00496{transform:matrix(0.266936,0.005606,-0.005249,0.249945,0,0);-ms-transform:matrix(0.266936,0.005606,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.266936,0.005606,-0.005249,0.249945,0,0);}
.m4a_c00496{transform:matrix(0.266941,0.005606,-0.005249,0.249945,0,0);-ms-transform:matrix(0.266941,0.005606,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.266941,0.005606,-0.005249,0.249945,0,0);}
.maa_c00496{transform:matrix(0.267466,0.005617,-0.005249,0.249945,0,0);-ms-transform:matrix(0.267466,0.005617,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.267466,0.005617,-0.005249,0.249945,0,0);}
.m91_c00496{transform:matrix(0.267671,0.005621,-0.005249,0.249945,0,0);-ms-transform:matrix(0.267671,0.005621,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.267671,0.005621,-0.005249,0.249945,0,0);}
.m6e_c00496{transform:matrix(0.267851,0.005625,-0.005249,0.249945,0,0);-ms-transform:matrix(0.267851,0.005625,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.267851,0.005625,-0.005249,0.249945,0,0);}
.mae_c00496{transform:matrix(0.268826,0.005645,-0.005249,0.249945,0,0);-ms-transform:matrix(0.268826,0.005645,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.268826,0.005645,-0.005249,0.249945,0,0);}
.md3_c00496{transform:matrix(0.268855,0.013725,-0.012746,0.249675,0,0);-ms-transform:matrix(0.268855,0.013725,-0.012746,0.249675,0,0);-webkit-transform:matrix(0.268855,0.013725,-0.012746,0.249675,0,0);}
.mda_c00496{transform:matrix(0.270488,0.013809,-0.012746,0.249675,0,0);-ms-transform:matrix(0.270488,0.013809,-0.012746,0.249675,0,0);-webkit-transform:matrix(0.270488,0.013809,-0.012746,0.249675,0,0);}
.m10a_c00496{transform:matrix(0.271383,0.010866,-0.010002,0.249800,0,0);-ms-transform:matrix(0.271383,0.010866,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.271383,0.010866,-0.010002,0.249800,0,0);}
.md0_c00496{transform:matrix(0.271780,0.005707,-0.005249,0.249945,0,0);-ms-transform:matrix(0.271780,0.005707,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.271780,0.005707,-0.005249,0.249945,0,0);}
.m70_c00496{transform:matrix(0.271820,0.005708,-0.005249,0.249945,0,0);-ms-transform:matrix(0.271820,0.005708,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.271820,0.005708,-0.005249,0.249945,0,0);}
.m10c_c00496{transform:matrix(0.273631,0.010956,-0.010002,0.249800,0,0);-ms-transform:matrix(0.273631,0.010956,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.273631,0.010956,-0.010002,0.249800,0,0);}
.md8_c00496{transform:matrix(0.274697,0.014024,-0.012746,0.249675,0,0);-ms-transform:matrix(0.274697,0.014024,-0.012746,0.249675,0,0);-webkit-transform:matrix(0.274697,0.014024,-0.012746,0.249675,0,0);}
.m8f_c00496{transform:matrix(0.274764,0.005770,-0.005249,0.249945,0,0);-ms-transform:matrix(0.274764,0.005770,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.274764,0.005770,-0.005249,0.249945,0,0);}
.mad_c00496{transform:matrix(0.275014,0.005775,-0.005249,0.249945,0,0);-ms-transform:matrix(0.275014,0.005775,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.275014,0.005775,-0.005249,0.249945,0,0);}
.m112_c00496{transform:matrix(0.275484,0.011030,-0.010002,0.249800,0,0);-ms-transform:matrix(0.275484,0.011030,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.275484,0.011030,-0.010002,0.249800,0,0);}
.m99_c00496{transform:matrix(0.275589,0.005787,-0.005249,0.249945,0,0);-ms-transform:matrix(0.275589,0.005787,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.275589,0.005787,-0.005249,0.249945,0,0);}
.m93_c00496{transform:matrix(0.275994,0.005796,-0.005249,0.249945,0,0);-ms-transform:matrix(0.275994,0.005796,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.275994,0.005796,-0.005249,0.249945,0,0);}
.mf9_c00496{transform:matrix(0.276071,0.008282,-0.007497,0.249888,0,0);-ms-transform:matrix(0.276071,0.008282,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.276071,0.008282,-0.007497,0.249888,0,0);}
.m1c_c00496{transform:matrix(0.276669,0.005810,-0.005249,0.249945,0,0);-ms-transform:matrix(0.276669,0.005810,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.276669,0.005810,-0.005249,0.249945,0,0);}
.m97_c00496{transform:matrix(0.276744,0.005812,-0.005249,0.249945,0,0);-ms-transform:matrix(0.276744,0.005812,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.276744,0.005812,-0.005249,0.249945,0,0);}
.ma2_c00496{transform:matrix(0.276794,0.005813,-0.005249,0.249945,0,0);-ms-transform:matrix(0.276794,0.005813,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.276794,0.005813,-0.005249,0.249945,0,0);}
.m7e_c00496{transform:matrix(0.276989,0.005817,-0.005249,0.249945,0,0);-ms-transform:matrix(0.276989,0.005817,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.276989,0.005817,-0.005249,0.249945,0,0);}
.m17_c00496{transform:matrix(0.277609,0.005830,-0.005249,0.249945,0,0);-ms-transform:matrix(0.277609,0.005830,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.277609,0.005830,-0.005249,0.249945,0,0);}
.m4e_c00496{transform:matrix(0.278479,0.005848,-0.005249,0.249945,0,0);-ms-transform:matrix(0.278479,0.005848,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.278479,0.005848,-0.005249,0.249945,0,0);}
.md5_c00496{transform:matrix(0.278642,0.014225,-0.012746,0.249675,0,0);-ms-transform:matrix(0.278642,0.014225,-0.012746,0.249675,0,0);-webkit-transform:matrix(0.278642,0.014225,-0.012746,0.249675,0,0);}
.mfa_c00496{transform:matrix(0.279994,0.008400,-0.007497,0.249888,0,0);-ms-transform:matrix(0.279994,0.008400,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.279994,0.008400,-0.007497,0.249888,0,0);}
.m7c_c00496{transform:matrix(0.280488,0.005890,-0.005249,0.249945,0,0);-ms-transform:matrix(0.280488,0.005890,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.280488,0.005890,-0.005249,0.249945,0,0);}
.m73_c00496{transform:matrix(0.280953,0.005900,-0.005249,0.249945,0,0);-ms-transform:matrix(0.280953,0.005900,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.280953,0.005900,-0.005249,0.249945,0,0);}
.md4_c00496{transform:matrix(0.281399,0.014366,-0.012746,0.249675,0,0);-ms-transform:matrix(0.281399,0.014366,-0.012746,0.249675,0,0);-webkit-transform:matrix(0.281399,0.014366,-0.012746,0.249675,0,0);}
.mfb_c00496{transform:matrix(0.281753,0.008453,-0.007497,0.249888,0,0);-ms-transform:matrix(0.281753,0.008453,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.281753,0.008453,-0.007497,0.249888,0,0);}
.m8c_c00496{transform:matrix(0.283492,0.005953,-0.005249,0.249945,0,0);-ms-transform:matrix(0.283492,0.005953,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.283492,0.005953,-0.005249,0.249945,0,0);}
.m9c_c00496{transform:matrix(0.288981,0.006069,-0.005249,0.249945,0,0);-ms-transform:matrix(0.288981,0.006069,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.288981,0.006069,-0.005249,0.249945,0,0);}
.mc_c00496{transform:matrix(0.291001,0.006111,-0.005249,0.249945,0,0);-ms-transform:matrix(0.291001,0.006111,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.291001,0.006111,-0.005249,0.249945,0,0);}
.me4_c00496{transform:matrix(0.292371,0.010243,-0.008753,0.249847,0,0);-ms-transform:matrix(0.292371,0.010243,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.292371,0.010243,-0.008753,0.249847,0,0);}
.m1b_c00496{transform:matrix(0.300974,0.006320,-0.005249,0.249945,0,0);-ms-transform:matrix(0.300974,0.006320,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.300974,0.006320,-0.005249,0.249945,0,0);}
.m96_c00496{transform:matrix(0.308822,0.006485,-0.005249,0.249945,0,0);-ms-transform:matrix(0.308822,0.006485,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.308822,0.006485,-0.005249,0.249945,0,0);}
.m1_c00496{transform:matrix(0.348005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348005,0.000000,0.000000,0.250000,0,0);}
.m7f_c00496{transform:matrix(0.353632,0.007426,-0.005249,0.249945,0,0);-ms-transform:matrix(0.353632,0.007426,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.353632,0.007426,-0.005249,0.249945,0,0);}
.ma1_c00496{transform:matrix(0.380276,0.007986,-0.005249,0.249945,0,0);-ms-transform:matrix(0.380276,0.007986,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.380276,0.007986,-0.005249,0.249945,0,0);}
.ma8_c00496{transform:matrix(0.651531,0.013682,-0.005249,0.249945,0,0);-ms-transform:matrix(0.651531,0.013682,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.651531,0.013682,-0.005249,0.249945,0,0);}
.m11b_c00496{transform:matrix(3.276706,0.091748,-0.006997,0.249902,0,0);-ms-transform:matrix(3.276706,0.091748,-0.006997,0.249902,0,0);-webkit-transform:matrix(3.276706,0.091748,-0.006997,0.249902,0,0);}
.v0_c00496{vertical-align:0.000000px;}
.ls0_c00496{letter-spacing:0.000000px;}
.sc__c00496{text-shadow:none;}
.sc0_c00496{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__c00496{-webkit-text-stroke:0px transparent;}
.sc0_c00496{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00496{word-spacing:0.000000px;}
.fc0_c00496{color:transparent;}
.fsc_c00496{font-size:36.014109px;}
.fs0_c00496{font-size:66.000000px;}
.fsa_c00496{font-size:71.985635px;}
.fs2_c00496{font-size:72.015874px;}
.fs5_c00496{font-size:72.021669px;}
.fs8_c00496{font-size:72.032393px;}
.fse_c00496{font-size:77.984437px;}
.fs4_c00496{font-size:78.017197px;}
.fs1_c00496{font-size:84.018520px;}
.fsf_c00496{font-size:84.029605px;}
.fsb_c00496{font-size:84.032922px;}
.fs7_c00496{font-size:84.037791px;}
.fs9_c00496{font-size:89.975022px;}
.fs3_c00496{font-size:90.019843px;}
.fs6_c00496{font-size:101.960518px;}
.fsd_c00496{font-size:102.039976px;}
.y0_c00496{bottom:0.000000px;}
.y131_c00496{bottom:94.322040px;}
.y130_c00496{bottom:96.581760px;}
.y12f_c00496{bottom:99.210540px;}
.y12e_c00496{bottom:100.507260px;}
.y12d_c00496{bottom:101.382660px;}
.y12c_c00496{bottom:103.167540px;}
.y12b_c00496{bottom:104.474580px;}
.y12a_c00496{bottom:107.543220px;}
.y129_c00496{bottom:112.335000px;}
.y128_c00496{bottom:130.508904px;}
.y127_c00496{bottom:132.218202px;}
.y126_c00496{bottom:133.927500px;}
.y125_c00496{bottom:134.923644px;}
.y124_c00496{bottom:135.946140px;}
.y123_c00496{bottom:137.328090px;}
.y122_c00496{bottom:138.341064px;}
.y121_c00496{bottom:140.727042px;}
.y120_c00496{bottom:144.445110px;}
.y11f_c00496{bottom:170.095152px;}
.y134_c00496{bottom:175.886364px;}
.y133_c00496{bottom:179.934096px;}
.y132_c00496{bottom:182.821500px;}
.y11e_c00496{bottom:186.556056px;}
.y11d_c00496{bottom:189.959274px;}
.y11c_c00496{bottom:190.846188px;}
.y11b_c00496{bottom:192.084474px;}
.y11a_c00496{bottom:192.991086px;}
.y119_c00496{bottom:196.030500px;}
.y118_c00496{bottom:208.441980px;}
.y117_c00496{bottom:209.778840px;}
.y116_c00496{bottom:214.192080px;}
.y115_c00496{bottom:216.446160px;}
.y114_c00496{bottom:217.750620px;}
.y113_c00496{bottom:219.993060px;}
.y112_c00496{bottom:222.150060px;}
.y111_c00496{bottom:223.100580px;}
.y110_c00496{bottom:227.914800px;}
.y10f_c00496{bottom:229.187760px;}
.y10e_c00496{bottom:232.285320px;}
.y10d_c00496{bottom:233.566500px;}
.y10c_c00496{bottom:248.466564px;}
.y10b_c00496{bottom:251.032419px;}
.y10a_c00496{bottom:254.365950px;}
.y109_c00496{bottom:256.465374px;}
.y108_c00496{bottom:259.468476px;}
.y107_c00496{bottom:260.285571px;}
.y106_c00496{bottom:263.986239px;}
.y105_c00496{bottom:265.259106px;}
.y104_c00496{bottom:267.741000px;}
.y103_c00496{bottom:268.992606px;}
.y102_c00496{bottom:271.902000px;}
.y101_c00496{bottom:284.836590px;}
.y100_c00496{bottom:285.756360px;}
.yff_c00496{bottom:289.046250px;}
.yfe_c00496{bottom:292.607505px;}
.yfd_c00496{bottom:295.898040px;}
.yfc_c00496{bottom:297.391830px;}
.yfb_c00496{bottom:299.721375px;}
.yfa_c00496{bottom:300.624465px;}
.yf9_c00496{bottom:302.663805px;}
.yf8_c00496{bottom:318.749835px;}
.yf7_c00496{bottom:320.779020px;}
.yf6_c00496{bottom:322.731705px;}
.yf5_c00496{bottom:323.728275px;}
.yf4_c00496{bottom:326.371350px;}
.yf3_c00496{bottom:327.384615px;}
.yf2_c00496{bottom:328.357875px;}
.yf1_c00496{bottom:330.375090px;}
.yf0_c00496{bottom:333.000480px;}
.yef_c00496{bottom:333.956100px;}
.yee_c00496{bottom:335.939205px;}
.yed_c00496{bottom:337.242000px;}
.ye2_c00496{bottom:352.219956px;}
.ye1_c00496{bottom:353.259042px;}
.ye0_c00496{bottom:354.667479px;}
.ydf_c00496{bottom:356.485245px;}
.yde_c00496{bottom:359.691842px;}
.ydd_c00496{bottom:360.710556px;}
.ydc_c00496{bottom:364.626528px;}
.ydb_c00496{bottom:366.358659px;}
.yda_c00496{bottom:367.740587px;}
.yd9_c00496{bottom:372.638112px;}
.yd8_c00496{bottom:388.714268px;}
.yd7_c00496{bottom:392.073000px;}
.yec_c00496{bottom:395.437702px;}
.yeb_c00496{bottom:396.587925px;}
.yea_c00496{bottom:398.549797px;}
.ye9_c00496{bottom:399.773520px;}
.ye8_c00496{bottom:402.026715px;}
.ye7_c00496{bottom:403.153417px;}
.ye6_c00496{bottom:404.326792px;}
.ye5_c00496{bottom:405.848295px;}
.ye4_c00496{bottom:408.192420px;}
.ye3_c00496{bottom:409.336500px;}
.yd6_c00496{bottom:437.685926px;}
.yd5_c00496{bottom:438.354954px;}
.yd4_c00496{bottom:440.000325px;}
.yd3_c00496{bottom:440.681166px;}
.yd2_c00496{bottom:442.048046px;}
.yd1_c00496{bottom:443.442551px;}
.yd0_c00496{bottom:444.552327px;}
.ycf_c00496{bottom:462.156470px;}
.yce_c00496{bottom:463.069592px;}
.ycd_c00496{bottom:465.366453px;}
.ycc_c00496{bottom:466.956597px;}
.ycb_c00496{bottom:468.200903px;}
.yca_c00496{bottom:469.508360px;}
.yc9_c00496{bottom:472.337088px;}
.yc8_c00496{bottom:473.345199px;}
.yc7_c00496{bottom:476.166600px;}
.yc6_c00496{bottom:478.374635px;}
.yc5_c00496{bottom:479.665433px;}
.yc4_c00496{bottom:500.526797px;}
.yc3_c00496{bottom:502.126913px;}
.yc2_c00496{bottom:503.461086px;}
.yc1_c00496{bottom:504.551217px;}
.yc0_c00496{bottom:506.387721px;}
.ybf_c00496{bottom:507.671228px;}
.ybe_c00496{bottom:509.000424px;}
.ybd_c00496{bottom:510.861380px;}
.ybc_c00496{bottom:512.183406px;}
.ybb_c00496{bottom:512.974745px;}
.yba_c00496{bottom:514.821758px;}
.yb9_c00496{bottom:516.390398px;}
.yb8_c00496{bottom:536.180998px;}
.yb7_c00496{bottom:537.646200px;}
.yb6_c00496{bottom:538.584933px;}
.yb5_c00496{bottom:540.360708px;}
.yb4_c00496{bottom:541.265292px;}
.yb3_c00496{bottom:543.056163px;}
.yb2_c00496{bottom:543.646216px;}
.yb1_c00496{bottom:545.712126px;}
.yb0_c00496{bottom:548.111347px;}
.yaf_c00496{bottom:548.948232px;}
.yae_c00496{bottom:549.846717px;}
.yad_c00496{bottom:551.946177px;}
.yac_c00496{bottom:553.386227px;}
.yab_c00496{bottom:573.681541px;}
.yaa_c00496{bottom:574.782969px;}
.ya9_c00496{bottom:577.449741px;}
.ya8_c00496{bottom:578.739043px;}
.ya7_c00496{bottom:580.818897px;}
.ya6_c00496{bottom:582.167265px;}
.ya5_c00496{bottom:582.968923px;}
.ya4_c00496{bottom:584.549459px;}
.ya3_c00496{bottom:585.310782px;}
.ya2_c00496{bottom:586.122414px;}
.ya1_c00496{bottom:586.910382px;}
.ya0_c00496{bottom:587.953626px;}
.y9f_c00496{bottom:609.644247px;}
.y9e_c00496{bottom:610.679218px;}
.y9d_c00496{bottom:611.223124px;}
.y9c_c00496{bottom:614.129907px;}
.y9b_c00496{bottom:615.716773px;}
.y9a_c00496{bottom:618.342726px;}
.y99_c00496{bottom:619.131544px;}
.y98_c00496{bottom:620.955145px;}
.y97_c00496{bottom:621.764584px;}
.y96_c00496{bottom:623.329834px;}
.y95_c00496{bottom:641.874504px;}
.y94_c00496{bottom:643.076707px;}
.y93_c00496{bottom:645.472243px;}
.y92_c00496{bottom:646.653535px;}
.y91_c00496{bottom:649.343332px;}
.y90_c00496{bottom:650.201255px;}
.y8f_c00496{bottom:651.086155px;}
.y8e_c00496{bottom:655.271491px;}
.y8d_c00496{bottom:657.340141px;}
.y8c_c00496{bottom:657.899089px;}
.y8b_c00496{bottom:677.054541px;}
.y8a_c00496{bottom:678.162555px;}
.y89_c00496{bottom:680.944757px;}
.y88_c00496{bottom:682.330430px;}
.y87_c00496{bottom:685.079006px;}
.y86_c00496{bottom:685.895229px;}
.y85_c00496{bottom:688.630398px;}
.y84_c00496{bottom:689.744007px;}
.y83_c00496{bottom:690.823833px;}
.y82_c00496{bottom:691.930146px;}
.y81_c00496{bottom:711.604308px;}
.y80_c00496{bottom:714.108284px;}
.y7f_c00496{bottom:714.661440px;}
.y7e_c00496{bottom:717.959046px;}
.y7d_c00496{bottom:719.897151px;}
.y7c_c00496{bottom:721.800938px;}
.y7b_c00496{bottom:722.632887px;}
.y7a_c00496{bottom:724.281060px;}
.y79_c00496{bottom:725.637569px;}
.y78_c00496{bottom:727.580493px;}
.y77_c00496{bottom:747.387386px;}
.y76_c00496{bottom:749.243742px;}
.y75_c00496{bottom:752.174283px;}
.y74_c00496{bottom:752.965244px;}
.y73_c00496{bottom:754.032939px;}
.y72_c00496{bottom:756.627144px;}
.y71_c00496{bottom:759.271732px;}
.y70_c00496{bottom:761.396866px;}
.y6f_c00496{bottom:762.180090px;}
.y6e_c00496{bottom:762.957643px;}
.y6d_c00496{bottom:784.860597px;}
.y6c_c00496{bottom:786.477226px;}
.y6b_c00496{bottom:788.097888px;}
.y6a_c00496{bottom:788.881805px;}
.y69_c00496{bottom:789.918288px;}
.y68_c00496{bottom:792.303411px;}
.y67_c00496{bottom:793.360975px;}
.y66_c00496{bottom:794.138813px;}
.y65_c00496{bottom:795.212430px;}
.y64_c00496{bottom:797.027696px;}
.y63_c00496{bottom:797.811077px;}
.y62_c00496{bottom:798.872421px;}
.y61_c00496{bottom:819.608436px;}
.y60_c00496{bottom:820.374555px;}
.y5f_c00496{bottom:821.351955px;}
.y5e_c00496{bottom:822.555579px;}
.y5d_c00496{bottom:823.303334px;}
.y5c_c00496{bottom:824.766075px;}
.y5b_c00496{bottom:826.683792px;}
.y5a_c00496{bottom:829.121287px;}
.y59_c00496{bottom:829.579256px;}
.y58_c00496{bottom:831.010635px;}
.y57_c00496{bottom:831.765036px;}
.y56_c00496{bottom:832.465187px;}
.y55_c00496{bottom:833.438094px;}
.y54_c00496{bottom:856.566102px;}
.y53_c00496{bottom:857.350983px;}
.y52_c00496{bottom:858.057182px;}
.y51_c00496{bottom:859.774914px;}
.y50_c00496{bottom:862.661601px;}
.y4f_c00496{bottom:863.403666px;}
.y4e_c00496{bottom:864.877861px;}
.y4d_c00496{bottom:866.793783px;}
.y4c_c00496{bottom:868.484343px;}
.y4b_c00496{bottom:870.164193px;}
.y4a_c00496{bottom:891.351532px;}
.y49_c00496{bottom:892.060377px;}
.y48_c00496{bottom:893.704803px;}
.y47_c00496{bottom:895.339054px;}
.y46_c00496{bottom:896.014225px;}
.y45_c00496{bottom:897.415251px;}
.y44_c00496{bottom:898.793344px;}
.y43_c00496{bottom:900.876408px;}
.y42_c00496{bottom:901.330638px;}
.y41_c00496{bottom:902.700919px;}
.y40_c00496{bottom:905.003727px;}
.y3f_c00496{bottom:927.374379px;}
.y3e_c00496{bottom:928.572805px;}
.y3d_c00496{bottom:930.529161px;}
.y3c_c00496{bottom:931.484428px;}
.y3b_c00496{bottom:932.234797px;}
.y3a_c00496{bottom:933.940056px;}
.y39_c00496{bottom:936.603102px;}
.y38_c00496{bottom:938.527371px;}
.y37_c00496{bottom:939.220843px;}
.y36_c00496{bottom:939.730459px;}
.y35_c00496{bottom:940.919562px;}
.y34_c00496{bottom:962.080318px;}
.y33_c00496{bottom:964.430407px;}
.y32_c00496{bottom:965.567683px;}
.y31_c00496{bottom:967.435192px;}
.y30_c00496{bottom:968.352693px;}
.y2f_c00496{bottom:969.045819px;}
.y2e_c00496{bottom:971.342988px;}
.y2d_c00496{bottom:972.494218px;}
.y2c_c00496{bottom:974.132502px;}
.y2b_c00496{bottom:975.486844px;}
.y2a_c00496{bottom:997.404894px;}
.y29_c00496{bottom:998.278384px;}
.y28_c00496{bottom:1000.970311px;}
.y27_c00496{bottom:1003.085151px;}
.y26_c00496{bottom:1004.879349px;}
.y25_c00496{bottom:1007.831860px;}
.y24_c00496{bottom:1009.640241px;}
.y23_c00496{bottom:1011.983489px;}
.y22_c00496{bottom:1014.915561px;}
.y21_c00496{bottom:1032.977839px;}
.y20_c00496{bottom:1034.534202px;}
.y1f_c00496{bottom:1036.085127px;}
.y1e_c00496{bottom:1037.007741px;}
.y1d_c00496{bottom:1040.115426px;}
.y1c_c00496{bottom:1041.062656px;}
.y1b_c00496{bottom:1041.628686px;}
.y1a_c00496{bottom:1042.564034px;}
.y19_c00496{bottom:1043.806241px;}
.y18_c00496{bottom:1046.875233px;}
.y17_c00496{bottom:1047.866133px;}
.y16_c00496{bottom:1070.525185px;}
.y15_c00496{bottom:1074.016171px;}
.y14_c00496{bottom:1074.775422px;}
.y13_c00496{bottom:1075.286836px;}
.y12_c00496{bottom:1076.524764px;}
.y11_c00496{bottom:1077.381885px;}
.y10_c00496{bottom:1077.769992px;}
.yf_c00496{bottom:1079.321904px;}
.ye_c00496{bottom:1079.848833px;}
.yd_c00496{bottom:1081.076109px;}
.yc_c00496{bottom:1103.586274px;}
.yb_c00496{bottom:1104.492151px;}
.ya_c00496{bottom:1105.866024px;}
.y9_c00496{bottom:1106.558331px;}
.y8_c00496{bottom:1108.429746px;}
.y7_c00496{bottom:1109.803020px;}
.y6_c00496{bottom:1111.441996px;}
.y5_c00496{bottom:1111.894778px;}
.y4_c00496{bottom:1113.295677px;}
.y3_c00496{bottom:1115.791359px;}
.y2_c00496{bottom:1116.730500px;}
.y1_c00496{bottom:1188.690000px;}
.he_c00496{height:36.014109px;}
.h2_c00496{height:66.000000px;}
.hc_c00496{height:71.985635px;}
.h4_c00496{height:72.015874px;}
.h7_c00496{height:72.021669px;}
.ha_c00496{height:72.032393px;}
.h10_c00496{height:77.984437px;}
.h6_c00496{height:78.017197px;}
.h3_c00496{height:84.018520px;}
.h11_c00496{height:84.029605px;}
.hd_c00496{height:84.032922px;}
.h9_c00496{height:84.037791px;}
.hb_c00496{height:89.975022px;}
.h5_c00496{height:90.019843px;}
.h8_c00496{height:101.960518px;}
.hf_c00496{height:102.039976px;}
.h0_c00496{height:1246.320000px;}
.h1_c00496{height:1246.500000px;}
.w0_c00496{width:896.100000px;}
.w1_c00496{width:896.250000px;}
.x0_c00496{left:0.000000px;}
.xc6_c00496{left:145.067892px;}
.xbf_c00496{left:147.561000px;}
.xaa_c00496{left:149.461500px;}
.x9f_c00496{left:150.836394px;}
.x91_c00496{left:152.743881px;}
.x7a_c00496{left:154.992610px;}
.x61_c00496{left:156.793203px;}
.x53_c00496{left:158.722524px;}
.x41_c00496{left:160.087593px;}
.x31_c00496{left:161.984637px;}
.x21_c00496{left:163.919721px;}
.x3_c00496{left:165.298500px;}
.x72_c00496{left:176.749102px;}
.xc0_c00496{left:179.558470px;}
.x5b_c00496{left:191.077587px;}
.xab_c00496{left:192.888000px;}
.x80_c00496{left:197.649442px;}
.x6a_c00496{left:200.500920px;}
.x4a_c00496{left:203.792028px;}
.x9b_c00496{left:205.442881px;}
.x87_c00496{left:207.524871px;}
.x4_c00496{left:210.019500px;}
.x32_c00496{left:216.036003px;}
.x92_c00496{left:218.079754px;}
.x7b_c00496{left:220.238515px;}
.x5c_c00496{left:223.729039px;}
.xb4_c00496{left:225.867165px;}
.x2a_c00496{left:227.570712px;}
.x81_c00496{left:230.455363px;}
.x62_c00496{left:234.521182px;}
.x42_c00496{left:236.435986px;}
.x33_c00496{left:239.231530px;}
.xe_c00496{left:241.684998px;}
.x6b_c00496{left:243.703297px;}
.x73_c00496{left:253.389463px;}
.xc3_c00496{left:256.155000px;}
.xb8_c00496{left:257.863500px;}
.xa3_c00496{left:259.278000px;}
.x82_c00496{left:264.245221px;}
.xc7_c00496{left:265.773288px;}
.x16_c00496{left:270.726459px;}
.x22_c00496{left:272.528550px;}
.xf_c00496{left:274.637463px;}
.x88_c00496{left:285.275074px;}
.x63_c00496{left:288.755115px;}
.xac_c00496{left:290.845500px;}
.xa4_c00496{left:291.933312px;}
.x83_c00496{left:295.996737px;}
.xa0_c00496{left:303.657443px;}
.x17_c00496{left:306.121261px;}
.x54_c00496{left:311.283948px;}
.x43_c00496{left:313.294380px;}
.x89_c00496{left:318.555885px;}
.xb9_c00496{left:323.111187px;}
.x5_c00496{left:328.861500px;}
.x7c_c00496{left:329.971617px;}
.xc4_c00496{left:332.758500px;}
.x4b_c00496{left:335.000287px;}
.x3b_c00496{left:336.274464px;}
.xc8_c00496{left:342.730320px;}
.xb5_c00496{left:345.582420px;}
.xa1_c00496{left:346.766025px;}
.x8a_c00496{left:349.546479px;}
.x64_c00496{left:354.662571px;}
.x4c_c00496{left:355.807846px;}
.x34_c00496{left:358.240542px;}
.x23_c00496{left:359.315119px;}
.x2b_c00496{left:360.404712px;}
.x7d_c00496{left:362.818038px;}
.xc5_c00496{left:364.434000px;}
.x98_c00496{left:370.064626px;}
.x10_c00496{left:371.619637px;}
.xc9_c00496{left:375.423090px;}
.xad_c00496{left:378.358500px;}
.x93_c00496{left:383.087359px;}
.x55_c00496{left:388.443597px;}
.x6_c00496{left:395.571000px;}
.x6c_c00496{left:397.608351px;}
.x44_c00496{left:400.384053px;}
.xa5_c00496{left:402.269365px;}
.x99_c00496{left:404.849799px;}
.x74_c00496{left:408.385933px;}
.x18_c00496{left:415.747665px;}
.x7_c00496{left:417.132000px;}
.x1_c00496{left:418.500000px;}
.xca_c00496{left:420.006852px;}
.x5d_c00496{left:422.489034px;}
.x24_c00496{left:426.277177px;}
.x6d_c00496{left:430.259110px;}
.x56_c00496{left:432.515325px;}
.xa6_c00496{left:435.760841px;}
.x8b_c00496{left:438.426796px;}
.x2_c00496{left:441.720000px;}
.xae_c00496{left:445.599000px;}
.x9c_c00496{left:447.709381px;}
.x11_c00496{left:449.495827px;}
.x84_c00496{left:451.418440px;}
.xba_c00496{left:453.862804px;}
.x3c_c00496{left:457.097964px;}
.x19_c00496{left:460.108144px;}
.x65_c00496{left:464.069373px;}
.x45_c00496{left:467.368135px;}
.x2c_c00496{left:469.793712px;}
.x75_c00496{left:472.940806px;}
.xbb_c00496{left:475.343802px;}
.xaf_c00496{left:478.041000px;}
.x35_c00496{left:479.263990px;}
.xcb_c00496{left:485.131392px;}
.xc1_c00496{left:486.557664px;}
.x1a_c00496{left:493.500730px;}
.x8_c00496{left:495.178500px;}
.x46_c00496{left:501.132442px;}
.x2d_c00496{left:502.799712px;}
.xb0_c00496{left:511.816500px;}
.x1b_c00496{left:513.737269px;}
.x8c_c00496{left:514.936657px;}
.x94_c00496{left:515.990980px;}
.x3d_c00496{left:522.721464px;}
.x12_c00496{left:526.881455px;}
.x5e_c00496{left:530.587230px;}
.x57_c00496{left:531.872056px;}
.x25_c00496{left:535.644912px;}
.x8d_c00496{left:536.817417px;}
.x7e_c00496{left:538.345981px;}
.x6e_c00496{left:540.205881px;}
.x66_c00496{left:541.567852px;}
.x2e_c00496{left:546.490212px;}
.x1c_c00496{left:547.552792px;}
.x4d_c00496{left:553.766188px;}
.x36_c00496{left:556.750852px;}
.x13_c00496{left:558.809293px;}
.x9_c00496{left:560.572500px;}
.xa7_c00496{left:567.161308px;}
.x95_c00496{left:569.464110px;}
.x76_c00496{left:572.585269px;}
.x58_c00496{left:575.082847px;}
.x3e_c00496{left:589.436964px;}
.x37_c00496{left:590.839128px;}
.x85_c00496{left:591.845620px;}
.x6f_c00496{left:595.614219px;}
.xcc_c00496{left:597.163500px;}
.xb1_c00496{left:599.919000px;}
.x26_c00496{left:602.074533px;}
.x8e_c00496{left:603.160069px;}
.x14_c00496{left:606.254770px;}
.x59_c00496{left:607.767300px;}
.xbc_c00496{left:609.486525px;}
.x77_c00496{left:616.331757px;}
.x4e_c00496{left:620.276302px;}
.x3f_c00496{left:621.587964px;}
.xa8_c00496{left:623.158755px;}
.x47_c00496{left:632.376702px;}
.x38_c00496{left:634.255714px;}
.x2f_c00496{left:635.419212px;}
.x8f_c00496{left:636.659848px;}
.x96_c00496{left:645.983290px;}
.xa_c00496{left:649.687500px;}
.xcd_c00496{left:652.634973px;}
.x4f_c00496{left:654.240078px;}
.xa9_c00496{left:655.989392px;}
.x1d_c00496{left:658.521475px;}
.x67_c00496{left:673.442764px;}
.x5a_c00496{left:675.294548px;}
.x27_c00496{left:680.414173px;}
.xb_c00496{left:682.654500px;}
.x30_c00496{left:689.575212px;}
.x1e_c00496{left:691.450624px;}
.x68_c00496{left:695.567406px;}
.xbd_c00496{left:697.123301px;}
.xb2_c00496{left:698.227500px;}
.x40_c00496{left:699.409464px;}
.x86_c00496{left:702.970627px;}
.x78_c00496{left:705.036574px;}
.x70_c00496{left:706.876363px;}
.x50_c00496{left:708.982944px;}
.x48_c00496{left:710.457564px;}
.xa2_c00496{left:711.563187px;}
.x39_c00496{left:723.199356px;}
.x7f_c00496{left:725.294232px;}
.x5f_c00496{left:730.131661px;}
.x9d_c00496{left:732.661500px;}
.x90_c00496{left:737.195185px;}
.x49_c00496{left:742.585402px;}
.x1f_c00496{left:746.867497px;}
.xc_c00496{left:748.077000px;}
.x79_c00496{left:749.564467px;}
.x71_c00496{left:751.206646px;}
.x51_c00496{left:753.381999px;}
.x9a_c00496{left:755.939362px;}
.xbe_c00496{left:764.578278px;}
.xb3_c00496{left:765.867000px;}
.xc2_c00496{left:775.045887px;}
.xb6_c00496{left:776.520165px;}
.x3a_c00496{left:777.694722px;}
.x28_c00496{left:780.088605px;}
.x52_c00496{left:788.220274px;}
.xd_c00496{left:791.214000px;}
.x69_c00496{left:795.724495px;}
.x9e_c00496{left:798.453143px;}
.x20_c00496{left:802.471839px;}
.x60_c00496{left:807.453279px;}
.xb7_c00496{left:810.582225px;}
.x29_c00496{left:812.465041px;}
.x97_c00496{left:813.683238px;}
.x15_c00496{left:824.443671px;}
@media print{
.v0_c00496{vertical-align:0.000000pt;}
.ls0_c00496{letter-spacing:0.000000pt;}
.ws0_c00496{word-spacing:0.000000pt;}
.fsc_c00496{font-size:32.012542pt;}
.fs0_c00496{font-size:58.666667pt;}
.fsa_c00496{font-size:63.987231pt;}
.fs2_c00496{font-size:64.014110pt;}
.fs5_c00496{font-size:64.019261pt;}
.fs8_c00496{font-size:64.028794pt;}
.fse_c00496{font-size:69.319500pt;}
.fs4_c00496{font-size:69.348620pt;}
.fs1_c00496{font-size:74.683129pt;}
.fsf_c00496{font-size:74.692982pt;}
.fsb_c00496{font-size:74.695930pt;}
.fs7_c00496{font-size:74.700259pt;}
.fs9_c00496{font-size:79.977797pt;}
.fs3_c00496{font-size:80.017638pt;}
.fs6_c00496{font-size:90.631572pt;}
.fsd_c00496{font-size:90.702201pt;}
.y0_c00496{bottom:0.000000pt;}
.y131_c00496{bottom:83.841813pt;}
.y130_c00496{bottom:85.850453pt;}
.y12f_c00496{bottom:88.187147pt;}
.y12e_c00496{bottom:89.339787pt;}
.y12d_c00496{bottom:90.117920pt;}
.y12c_c00496{bottom:91.704480pt;}
.y12b_c00496{bottom:92.866293pt;}
.y12a_c00496{bottom:95.593973pt;}
.y129_c00496{bottom:99.853333pt;}
.y128_c00496{bottom:116.007915pt;}
.y127_c00496{bottom:117.527291pt;}
.y126_c00496{bottom:119.046667pt;}
.y125_c00496{bottom:119.932128pt;}
.y124_c00496{bottom:120.841013pt;}
.y123_c00496{bottom:122.069413pt;}
.y122_c00496{bottom:122.969835pt;}
.y121_c00496{bottom:125.090704pt;}
.y120_c00496{bottom:128.395653pt;}
.y11f_c00496{bottom:151.195691pt;}
.y134_c00496{bottom:156.343435pt;}
.y133_c00496{bottom:159.941419pt;}
.y132_c00496{bottom:162.508000pt;}
.y11e_c00496{bottom:165.827605pt;}
.y11d_c00496{bottom:168.852688pt;}
.y11c_c00496{bottom:169.641056pt;}
.y11b_c00496{bottom:170.741755pt;}
.y11a_c00496{bottom:171.547632pt;}
.y119_c00496{bottom:174.249333pt;}
.y118_c00496{bottom:185.281760pt;}
.y117_c00496{bottom:186.470080pt;}
.y116_c00496{bottom:190.392960pt;}
.y115_c00496{bottom:192.396587pt;}
.y114_c00496{bottom:193.556107pt;}
.y113_c00496{bottom:195.549387pt;}
.y112_c00496{bottom:197.466720pt;}
.y111_c00496{bottom:198.311627pt;}
.y110_c00496{bottom:202.590933pt;}
.y10f_c00496{bottom:203.722453pt;}
.y10e_c00496{bottom:206.475840pt;}
.y10d_c00496{bottom:207.614667pt;}
.y10c_c00496{bottom:220.859168pt;}
.y10b_c00496{bottom:223.139928pt;}
.y10a_c00496{bottom:226.103067pt;}
.y109_c00496{bottom:227.969221pt;}
.y108_c00496{bottom:230.638645pt;}
.y107_c00496{bottom:231.364952pt;}
.y106_c00496{bottom:234.654435pt;}
.y105_c00496{bottom:235.785872pt;}
.y104_c00496{bottom:237.992000pt;}
.y103_c00496{bottom:239.104539pt;}
.y102_c00496{bottom:241.690667pt;}
.y101_c00496{bottom:253.188080pt;}
.y100_c00496{bottom:254.005653pt;}
.yff_c00496{bottom:256.930000pt;}
.yfe_c00496{bottom:260.095560pt;}
.yfd_c00496{bottom:263.020480pt;}
.yfc_c00496{bottom:264.348293pt;}
.yfb_c00496{bottom:266.419000pt;}
.yfa_c00496{bottom:267.221747pt;}
.yf9_c00496{bottom:269.034493pt;}
.yf8_c00496{bottom:283.333187pt;}
.yf7_c00496{bottom:285.136907pt;}
.yf6_c00496{bottom:286.872627pt;}
.yf5_c00496{bottom:287.758467pt;}
.yf4_c00496{bottom:290.107867pt;}
.yf3_c00496{bottom:291.008547pt;}
.yf2_c00496{bottom:291.873667pt;}
.yf1_c00496{bottom:293.666747pt;}
.yf0_c00496{bottom:296.000427pt;}
.yef_c00496{bottom:296.849867pt;}
.yee_c00496{bottom:298.612627pt;}
.yed_c00496{bottom:299.770667pt;}
.ye2_c00496{bottom:313.084405pt;}
.ye1_c00496{bottom:314.008037pt;}
.ye0_c00496{bottom:315.259981pt;}
.ydf_c00496{bottom:316.875773pt;}
.yde_c00496{bottom:319.726081pt;}
.ydd_c00496{bottom:320.631605pt;}
.ydc_c00496{bottom:324.112469pt;}
.ydb_c00496{bottom:325.652141pt;}
.yda_c00496{bottom:326.880521pt;}
.yd9_c00496{bottom:331.233877pt;}
.yd8_c00496{bottom:345.523793pt;}
.yd7_c00496{bottom:348.509333pt;}
.yec_c00496{bottom:351.500180pt;}
.yeb_c00496{bottom:352.522600pt;}
.yea_c00496{bottom:354.266487pt;}
.ye9_c00496{bottom:355.354240pt;}
.ye8_c00496{bottom:357.357080pt;}
.ye7_c00496{bottom:358.358593pt;}
.ye6_c00496{bottom:359.401593pt;}
.ye5_c00496{bottom:360.754040pt;}
.ye4_c00496{bottom:362.837707pt;}
.ye3_c00496{bottom:363.854667pt;}
.yd6_c00496{bottom:389.054156pt;}
.yd5_c00496{bottom:389.648848pt;}
.yd4_c00496{bottom:391.111400pt;}
.yd3_c00496{bottom:391.716592pt;}
.yd2_c00496{bottom:392.931596pt;}
.yd1_c00496{bottom:394.171156pt;}
.yd0_c00496{bottom:395.157624pt;}
.ycf_c00496{bottom:410.805751pt;}
.yce_c00496{bottom:411.617415pt;}
.ycd_c00496{bottom:413.659069pt;}
.ycc_c00496{bottom:415.072531pt;}
.ycb_c00496{bottom:416.178580pt;}
.yca_c00496{bottom:417.340764pt;}
.yc9_c00496{bottom:419.855189pt;}
.yc8_c00496{bottom:420.751288pt;}
.yc7_c00496{bottom:423.259200pt;}
.yc6_c00496{bottom:425.221897pt;}
.yc5_c00496{bottom:426.369273pt;}
.yc4_c00496{bottom:444.912708pt;}
.yc3_c00496{bottom:446.335033pt;}
.yc2_c00496{bottom:447.520965pt;}
.yc1_c00496{bottom:448.489971pt;}
.yc0_c00496{bottom:450.122419pt;}
.ybf_c00496{bottom:451.263313pt;}
.ybe_c00496{bottom:452.444821pt;}
.ybd_c00496{bottom:454.099004pt;}
.ybc_c00496{bottom:455.274139pt;}
.ybb_c00496{bottom:455.977551pt;}
.yba_c00496{bottom:457.619340pt;}
.yb9_c00496{bottom:459.013687pt;}
.yb8_c00496{bottom:476.605332pt;}
.yb7_c00496{bottom:477.907733pt;}
.yb6_c00496{bottom:478.742163pt;}
.yb5_c00496{bottom:480.320629pt;}
.yb4_c00496{bottom:481.124704pt;}
.yb3_c00496{bottom:482.716589pt;}
.yb2_c00496{bottom:483.241081pt;}
.yb1_c00496{bottom:485.077445pt;}
.yb0_c00496{bottom:487.210087pt;}
.yaf_c00496{bottom:487.953984pt;}
.yae_c00496{bottom:488.752637pt;}
.yad_c00496{bottom:490.618824pt;}
.yac_c00496{bottom:491.898868pt;}
.yab_c00496{bottom:509.939148pt;}
.yaa_c00496{bottom:510.918195pt;}
.ya9_c00496{bottom:513.288659pt;}
.ya8_c00496{bottom:514.434705pt;}
.ya7_c00496{bottom:516.283464pt;}
.ya6_c00496{bottom:517.482013pt;}
.ya5_c00496{bottom:518.194599pt;}
.ya4_c00496{bottom:519.599519pt;}
.ya3_c00496{bottom:520.276251pt;}
.ya2_c00496{bottom:520.997701pt;}
.ya1_c00496{bottom:521.698117pt;}
.ya0_c00496{bottom:522.625445pt;}
.y9f_c00496{bottom:541.905997pt;}
.y9e_c00496{bottom:542.825972pt;}
.y9d_c00496{bottom:543.309444pt;}
.y9c_c00496{bottom:545.893251pt;}
.y9b_c00496{bottom:547.303799pt;}
.y9a_c00496{bottom:549.637979pt;}
.y99_c00496{bottom:550.339151pt;}
.y98_c00496{bottom:551.960129pt;}
.y97_c00496{bottom:552.679631pt;}
.y96_c00496{bottom:554.070964pt;}
.y95_c00496{bottom:570.555115pt;}
.y94_c00496{bottom:571.623740pt;}
.y93_c00496{bottom:573.753105pt;}
.y92_c00496{bottom:574.803143pt;}
.y91_c00496{bottom:577.194073pt;}
.y90_c00496{bottom:577.956671pt;}
.y8f_c00496{bottom:578.743249pt;}
.y8e_c00496{bottom:582.463548pt;}
.y8d_c00496{bottom:584.302348pt;}
.y8c_c00496{bottom:584.799191pt;}
.y8b_c00496{bottom:601.826259pt;}
.y8a_c00496{bottom:602.811160pt;}
.y89_c00496{bottom:605.284228pt;}
.y88_c00496{bottom:606.515937pt;}
.y87_c00496{bottom:608.959116pt;}
.y86_c00496{bottom:609.684648pt;}
.y85_c00496{bottom:612.115909pt;}
.y84_c00496{bottom:613.105784pt;}
.y83_c00496{bottom:614.065629pt;}
.y82_c00496{bottom:615.049019pt;}
.y81_c00496{bottom:632.537163pt;}
.y80_c00496{bottom:634.762919pt;}
.y7f_c00496{bottom:635.254613pt;}
.y7e_c00496{bottom:638.185819pt;}
.y7d_c00496{bottom:639.908579pt;}
.y7c_c00496{bottom:641.600833pt;}
.y7b_c00496{bottom:642.340344pt;}
.y7a_c00496{bottom:643.805387pt;}
.y79_c00496{bottom:645.011172pt;}
.y78_c00496{bottom:646.738216pt;}
.y77_c00496{bottom:664.344343pt;}
.y76_c00496{bottom:665.994437pt;}
.y75_c00496{bottom:668.599363pt;}
.y74_c00496{bottom:669.302439pt;}
.y73_c00496{bottom:670.251501pt;}
.y72_c00496{bottom:672.557461pt;}
.y71_c00496{bottom:674.908207pt;}
.y70_c00496{bottom:676.797215pt;}
.y6f_c00496{bottom:677.493413pt;}
.y6e_c00496{bottom:678.184572pt;}
.y6d_c00496{bottom:697.653864pt;}
.y6c_c00496{bottom:699.090868pt;}
.y6b_c00496{bottom:700.531456pt;}
.y6a_c00496{bottom:701.228271pt;}
.y69_c00496{bottom:702.149589pt;}
.y68_c00496{bottom:704.269699pt;}
.y67_c00496{bottom:705.209756pt;}
.y66_c00496{bottom:705.901167pt;}
.y65_c00496{bottom:706.855493pt;}
.y64_c00496{bottom:708.469063pt;}
.y63_c00496{bottom:709.165401pt;}
.y62_c00496{bottom:710.108819pt;}
.y61_c00496{bottom:728.540832pt;}
.y60_c00496{bottom:729.221827pt;}
.y5f_c00496{bottom:730.090627pt;}
.y5e_c00496{bottom:731.160515pt;}
.y5d_c00496{bottom:731.825185pt;}
.y5c_c00496{bottom:733.125400pt;}
.y5b_c00496{bottom:734.830037pt;}
.y5a_c00496{bottom:736.996700pt;}
.y59_c00496{bottom:737.403783pt;}
.y58_c00496{bottom:738.676120pt;}
.y57_c00496{bottom:739.346699pt;}
.y56_c00496{bottom:739.969055pt;}
.y55_c00496{bottom:740.833861pt;}
.y54_c00496{bottom:761.392091pt;}
.y53_c00496{bottom:762.089763pt;}
.y52_c00496{bottom:762.717495pt;}
.y51_c00496{bottom:764.244368pt;}
.y50_c00496{bottom:766.810312pt;}
.y4f_c00496{bottom:767.469925pt;}
.y4e_c00496{bottom:768.780321pt;}
.y4d_c00496{bottom:770.483363pt;}
.y4c_c00496{bottom:771.986083pt;}
.y4b_c00496{bottom:773.479283pt;}
.y4a_c00496{bottom:792.312473pt;}
.y49_c00496{bottom:792.942557pt;}
.y48_c00496{bottom:794.404269pt;}
.y47_c00496{bottom:795.856937pt;}
.y46_c00496{bottom:796.457089pt;}
.y45_c00496{bottom:797.702445pt;}
.y44_c00496{bottom:798.927417pt;}
.y43_c00496{bottom:800.779029pt;}
.y42_c00496{bottom:801.182789pt;}
.y41_c00496{bottom:802.400817pt;}
.y40_c00496{bottom:804.447757pt;}
.y3f_c00496{bottom:824.332781pt;}
.y3e_c00496{bottom:825.398049pt;}
.y3d_c00496{bottom:827.137032pt;}
.y3c_c00496{bottom:827.986159pt;}
.y3b_c00496{bottom:828.653153pt;}
.y3a_c00496{bottom:830.168939pt;}
.y39_c00496{bottom:832.536091pt;}
.y38_c00496{bottom:834.246552pt;}
.y37_c00496{bottom:834.862972pt;}
.y36_c00496{bottom:835.315964pt;}
.y35_c00496{bottom:836.372944pt;}
.y34_c00496{bottom:855.182505pt;}
.y33_c00496{bottom:857.271473pt;}
.y32_c00496{bottom:858.282385pt;}
.y31_c00496{bottom:859.942393pt;}
.y30_c00496{bottom:860.757949pt;}
.y2f_c00496{bottom:861.374061pt;}
.y2e_c00496{bottom:863.415989pt;}
.y2d_c00496{bottom:864.439305pt;}
.y2c_c00496{bottom:865.895557pt;}
.y2b_c00496{bottom:867.099417pt;}
.y2a_c00496{bottom:886.582128pt;}
.y29_c00496{bottom:887.358564pt;}
.y28_c00496{bottom:889.751388pt;}
.y27_c00496{bottom:891.631245pt;}
.y26_c00496{bottom:893.226088pt;}
.y25_c00496{bottom:895.850543pt;}
.y24_c00496{bottom:897.457992pt;}
.y23_c00496{bottom:899.540879pt;}
.y22_c00496{bottom:902.147165pt;}
.y21_c00496{bottom:918.202524pt;}
.y20_c00496{bottom:919.585957pt;}
.y1f_c00496{bottom:920.964557pt;}
.y1e_c00496{bottom:921.784659pt;}
.y1d_c00496{bottom:924.547045pt;}
.y1c_c00496{bottom:925.389028pt;}
.y1b_c00496{bottom:925.892165pt;}
.y1a_c00496{bottom:926.723585pt;}
.y19_c00496{bottom:927.827769pt;}
.y18_c00496{bottom:930.555763pt;}
.y17_c00496{bottom:931.436563pt;}
.y16_c00496{bottom:951.577943pt;}
.y15_c00496{bottom:954.681041pt;}
.y14_c00496{bottom:955.355931pt;}
.y13_c00496{bottom:955.810521pt;}
.y12_c00496{bottom:956.910901pt;}
.y11_c00496{bottom:957.672787pt;}
.y10_c00496{bottom:958.017771pt;}
.yf_c00496{bottom:959.397248pt;}
.ye_c00496{bottom:959.865629pt;}
.yd_c00496{bottom:960.956541pt;}
.yc_c00496{bottom:980.965577pt;}
.yb_c00496{bottom:981.770801pt;}
.ya_c00496{bottom:982.992021pt;}
.y9_c00496{bottom:983.607405pt;}
.y8_c00496{bottom:985.270885pt;}
.y7_c00496{bottom:986.491573pt;}
.y6_c00496{bottom:987.948441pt;}
.y5_c00496{bottom:988.350913pt;}
.y4_c00496{bottom:989.596157pt;}
.y3_c00496{bottom:991.814541pt;}
.y2_c00496{bottom:992.649333pt;}
.y1_c00496{bottom:1056.613333pt;}
.he_c00496{height:32.012542pt;}
.h2_c00496{height:58.666667pt;}
.hc_c00496{height:63.987231pt;}
.h4_c00496{height:64.014110pt;}
.h7_c00496{height:64.019261pt;}
.ha_c00496{height:64.028794pt;}
.h10_c00496{height:69.319500pt;}
.h6_c00496{height:69.348620pt;}
.h3_c00496{height:74.683129pt;}
.h11_c00496{height:74.692982pt;}
.hd_c00496{height:74.695930pt;}
.h9_c00496{height:74.700259pt;}
.hb_c00496{height:79.977797pt;}
.h5_c00496{height:80.017638pt;}
.h8_c00496{height:90.631572pt;}
.hf_c00496{height:90.702201pt;}
.h0_c00496{height:1107.840000pt;}
.h1_c00496{height:1108.000000pt;}
.w0_c00496{width:796.533333pt;}
.w1_c00496{width:796.666667pt;}
.x0_c00496{left:0.000000pt;}
.xc6_c00496{left:128.949237pt;}
.xbf_c00496{left:131.165333pt;}
.xaa_c00496{left:132.854667pt;}
.x9f_c00496{left:134.076795pt;}
.x91_c00496{left:135.772339pt;}
.x7a_c00496{left:137.771209pt;}
.x61_c00496{left:139.371736pt;}
.x53_c00496{left:141.086688pt;}
.x41_c00496{left:142.300083pt;}
.x31_c00496{left:143.986344pt;}
.x21_c00496{left:145.706419pt;}
.x3_c00496{left:146.932000pt;}
.x72_c00496{left:157.110313pt;}
.xc0_c00496{left:159.607529pt;}
.x5b_c00496{left:169.846744pt;}
.xab_c00496{left:171.456000pt;}
.x80_c00496{left:175.688393pt;}
.x6a_c00496{left:178.223040pt;}
.x4a_c00496{left:181.148469pt;}
.x9b_c00496{left:182.615895pt;}
.x87_c00496{left:184.466552pt;}
.x4_c00496{left:186.684000pt;}
.x32_c00496{left:192.032003pt;}
.x92_c00496{left:193.848671pt;}
.x7b_c00496{left:195.767569pt;}
.x5c_c00496{left:198.870257pt;}
.xb4_c00496{left:200.770813pt;}
.x2a_c00496{left:202.285077pt;}
.x81_c00496{left:204.849212pt;}
.x62_c00496{left:208.463273pt;}
.x42_c00496{left:210.165321pt;}
.x33_c00496{left:212.650249pt;}
.xe_c00496{left:214.831109pt;}
.x6b_c00496{left:216.625153pt;}
.x73_c00496{left:225.235079pt;}
.xc3_c00496{left:227.693333pt;}
.xb8_c00496{left:229.212000pt;}
.xa3_c00496{left:230.469333pt;}
.x82_c00496{left:234.884641pt;}
.xc7_c00496{left:236.242923pt;}
.x16_c00496{left:240.645741pt;}
.x22_c00496{left:242.247600pt;}
.xf_c00496{left:244.122189pt;}
.x88_c00496{left:253.577844pt;}
.x63_c00496{left:256.671213pt;}
.xac_c00496{left:258.529333pt;}
.xa4_c00496{left:259.496277pt;}
.x83_c00496{left:263.108211pt;}
.xa0_c00496{left:269.917727pt;}
.x17_c00496{left:272.107788pt;}
.x54_c00496{left:276.696843pt;}
.x43_c00496{left:278.483893pt;}
.x89_c00496{left:283.160787pt;}
.xb9_c00496{left:287.209944pt;}
.x5_c00496{left:292.321333pt;}
.x7c_c00496{left:293.308104pt;}
.xc4_c00496{left:295.785333pt;}
.x4b_c00496{left:297.778033pt;}
.x3b_c00496{left:298.910635pt;}
.xc8_c00496{left:304.649173pt;}
.xb5_c00496{left:307.184373pt;}
.xa1_c00496{left:308.236467pt;}
.x8a_c00496{left:310.707981pt;}
.x64_c00496{left:315.255619pt;}
.x4c_c00496{left:316.273641pt;}
.x34_c00496{left:318.436037pt;}
.x23_c00496{left:319.391217pt;}
.x2b_c00496{left:320.359744pt;}
.x7d_c00496{left:322.504923pt;}
.xc5_c00496{left:323.941333pt;}
.x98_c00496{left:328.946335pt;}
.x10_c00496{left:330.328567pt;}
.xc9_c00496{left:333.709413pt;}
.xad_c00496{left:336.318667pt;}
.x93_c00496{left:340.522097pt;}
.x55_c00496{left:345.283197pt;}
.x6_c00496{left:351.618667pt;}
.x6c_c00496{left:353.429645pt;}
.x44_c00496{left:355.896936pt;}
.xa5_c00496{left:357.572769pt;}
.x99_c00496{left:359.866488pt;}
.x74_c00496{left:363.009719pt;}
.x18_c00496{left:369.553480pt;}
.x7_c00496{left:370.784000pt;}
.x1_c00496{left:372.000000pt;}
.xca_c00496{left:373.339424pt;}
.x5d_c00496{left:375.545808pt;}
.x24_c00496{left:378.913047pt;}
.x6d_c00496{left:382.452543pt;}
.x56_c00496{left:384.458067pt;}
.xa6_c00496{left:387.342969pt;}
.x8b_c00496{left:389.712708pt;}
.x2_c00496{left:392.640000pt;}
.xae_c00496{left:396.088000pt;}
.x9c_c00496{left:397.963895pt;}
.x11_c00496{left:399.551847pt;}
.x84_c00496{left:401.260836pt;}
.xba_c00496{left:403.433604pt;}
.x3c_c00496{left:406.309301pt;}
.x19_c00496{left:408.985017pt;}
.x65_c00496{left:412.506109pt;}
.x45_c00496{left:415.438343pt;}
.x2c_c00496{left:417.594411pt;}
.x75_c00496{left:420.391828pt;}
.xbb_c00496{left:422.527824pt;}
.xaf_c00496{left:424.925333pt;}
.x35_c00496{left:426.012436pt;}
.xcb_c00496{left:431.227904pt;}
.xc1_c00496{left:432.495701pt;}
.x1a_c00496{left:438.667316pt;}
.x8_c00496{left:440.158667pt;}
.x46_c00496{left:445.451060pt;}
.x2d_c00496{left:446.933077pt;}
.xb0_c00496{left:454.948000pt;}
.x1b_c00496{left:456.655351pt;}
.x8c_c00496{left:457.721473pt;}
.x94_c00496{left:458.658649pt;}
.x3d_c00496{left:464.641301pt;}
.x12_c00496{left:468.339071pt;}
.x5e_c00496{left:471.633093pt;}
.x57_c00496{left:472.775161pt;}
.x25_c00496{left:476.128811pt;}
.x8d_c00496{left:477.171037pt;}
.x7e_c00496{left:478.529761pt;}
.x6e_c00496{left:480.183005pt;}
.x66_c00496{left:481.393647pt;}
.x2e_c00496{left:485.769077pt;}
.x1c_c00496{left:486.713593pt;}
.x4d_c00496{left:492.236612pt;}
.x36_c00496{left:494.889647pt;}
.x13_c00496{left:496.719372pt;}
.x9_c00496{left:498.286667pt;}
.xa7_c00496{left:504.143385pt;}
.x95_c00496{left:506.190320pt;}
.x76_c00496{left:508.964684pt;}
.x58_c00496{left:511.184753pt;}
.x3e_c00496{left:523.943968pt;}
.x37_c00496{left:525.190336pt;}
.x85_c00496{left:526.084996pt;}
.x6f_c00496{left:529.434861pt;}
.xcc_c00496{left:530.812000pt;}
.xb1_c00496{left:533.261333pt;}
.x26_c00496{left:535.177363pt;}
.x8e_c00496{left:536.142284pt;}
.x14_c00496{left:538.893129pt;}
.x59_c00496{left:540.237600pt;}
.xbc_c00496{left:541.765800pt;}
.x77_c00496{left:547.850451pt;}
.x4e_c00496{left:551.356713pt;}
.x3f_c00496{left:552.522635pt;}
.xa8_c00496{left:553.918893pt;}
.x47_c00496{left:562.112624pt;}
.x38_c00496{left:563.782857pt;}
.x2f_c00496{left:564.817077pt;}
.x8f_c00496{left:565.919865pt;}
.x96_c00496{left:574.207369pt;}
.xa_c00496{left:577.500000pt;}
.xcd_c00496{left:580.119976pt;}
.x4f_c00496{left:581.546736pt;}
.xa9_c00496{left:583.101681pt;}
.x1d_c00496{left:585.352423pt;}
.x67_c00496{left:598.615791pt;}
.x5a_c00496{left:600.261820pt;}
.x27_c00496{left:604.812599pt;}
.xb_c00496{left:606.804000pt;}
.x30_c00496{left:612.955744pt;}
.x1e_c00496{left:614.622777pt;}
.x68_c00496{left:618.282139pt;}
.xbd_c00496{left:619.665156pt;}
.xb2_c00496{left:620.646667pt;}
.x40_c00496{left:621.697301pt;}
.x86_c00496{left:624.862780pt;}
.x78_c00496{left:626.699177pt;}
.x70_c00496{left:628.334545pt;}
.x50_c00496{left:630.207061pt;}
.x48_c00496{left:631.517835pt;}
.xa2_c00496{left:632.500611pt;}
.x39_c00496{left:642.843872pt;}
.x7f_c00496{left:644.705984pt;}
.x5f_c00496{left:649.005921pt;}
.x9d_c00496{left:651.254667pt;}
.x90_c00496{left:655.284609pt;}
.x49_c00496{left:660.075913pt;}
.x1f_c00496{left:663.882220pt;}
.xc_c00496{left:664.957333pt;}
.x79_c00496{left:666.279527pt;}
.x71_c00496{left:667.739241pt;}
.x51_c00496{left:669.672888pt;}
.x9a_c00496{left:671.946100pt;}
.xbe_c00496{left:679.625136pt;}
.xb3_c00496{left:680.770667pt;}
.xc2_c00496{left:688.929677pt;}
.xb6_c00496{left:690.240147pt;}
.x3a_c00496{left:691.284197pt;}
.x28_c00496{left:693.412093pt;}
.x52_c00496{left:700.640244pt;}
.xd_c00496{left:703.301333pt;}
.x69_c00496{left:707.310663pt;}
.x9e_c00496{left:709.736127pt;}
.x20_c00496{left:713.308301pt;}
.x60_c00496{left:717.736248pt;}
.xb7_c00496{left:720.517533pt;}
.x29_c00496{left:722.191148pt;}
.x97_c00496{left:723.273989pt;}
.x15_c00496{left:732.838819pt;}
}





/* 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_c00497 {
    display:none;
  }
  .loading-indicator_c00497.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00497 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_c00497 { 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_c00497" -> "#page-container .classname_c00497")
 */
.pf_c00497 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00497 { /* 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_c00497.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00497 { /* 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_c00497 { /* 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_c00497 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00497 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00497 {overflow:visible;}
  }
}
.c_c00497 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00497 { /* 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_c00497:after { /* webkit #35443 */
  content: '';
}
.t_c00497:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00497 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 */
}
.__c00497 { /* 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_c00497 { /* info for Javascript */
  display:none;
}
.l_c00497 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00497 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00497 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00497: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_c00497 {
    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_c00497.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00497.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_c00497 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00497{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00497;src:url('chunks/assets/font_cfe63ee56e9e10a97d33a3db.woff2')format("woff");}.ff1_c00497{font-family:ff1_c00497;line-height:1.000000;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;}
.ma_c00497{transform:matrix(0.063640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.063640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.063640,0.000000,0.000000,0.250000,0,0);}
.mc_c00497{transform:matrix(0.183135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183135,0.000000,0.000000,0.250000,0,0);}
.m0_c00497{transform:matrix(0.194530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194530,0.000000,0.000000,0.250000,0,0);}
.md_c00497{transform:matrix(0.199035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199035,0.000000,0.000000,0.250000,0,0);}
.m1_c00497{transform:matrix(0.201105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201105,0.000000,0.000000,0.250000,0,0);}
.m8_c00497{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m6_c00497{transform:matrix(0.238040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238040,0.000000,0.000000,0.250000,0,0);}
.m9_c00497{transform:matrix(0.248555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248555,0.000000,0.000000,0.250000,0,0);}
.m4_c00497{transform:matrix(0.250065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250065,0.000000,0.000000,0.250000,0,0);}
.m2_c00497{transform:matrix(0.264995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264995,0.000000,0.000000,0.250000,0,0);}
.m3_c00497{transform:matrix(0.287220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287220,0.000000,0.000000,0.250000,0,0);}
.m5_c00497{transform:matrix(0.306440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306440,0.000000,0.000000,0.250000,0,0);}
.m7_c00497{transform:matrix(0.362080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362080,0.000000,0.000000,0.250000,0,0);}
.mb_c00497{transform:matrix(0.397750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397750,0.000000,0.000000,0.250000,0,0);}
.me_c00497{transform:matrix(0.432940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432940,0.000000,0.000000,0.250000,0,0);}
.v0_c00497{vertical-align:0.000000px;}
.ls0_c00497{letter-spacing:0.000000px;}
.sc__c00497{text-shadow:none;}
.sc0_c00497{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__c00497{-webkit-text-stroke:0px transparent;}
.sc0_c00497{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00497{word-spacing:0.000000px;}
.fc0_c00497{color:transparent;}
.fs3_c00497{font-size:24.000000px;}
.fs2_c00497{font-size:78.000000px;}
.fs1_c00497{font-size:90.000000px;}
.fs0_c00497{font-size:102.000000px;}
.y0_c00497{bottom:0.000000px;}
.y5_c00497{bottom:685.260000px;}
.y4_c00497{bottom:706.860000px;}
.y2_c00497{bottom:1038.997500px;}
.y1_c00497{bottom:1050.130500px;}
.y3_c00497{bottom:1077.618000px;}
.h5_c00497{height:24.000000px;}
.h4_c00497{height:78.000000px;}
.h3_c00497{height:90.000000px;}
.h2_c00497{height:102.000000px;}
.h0_c00497{height:1246.320000px;}
.h1_c00497{height:1246.500000px;}
.w0_c00497{width:896.100000px;}
.w1_c00497{width:896.250000px;}
.x0_c00497{left:0.000000px;}
.x1_c00497{left:79.920000px;}
.x2_c00497{left:149.040000px;}
.x3_c00497{left:260.820000px;}
.x7_c00497{left:276.480000px;}
.x4_c00497{left:316.710000px;}
.x8_c00497{left:351.270000px;}
.x5_c00497{left:376.380000px;}
.x6_c00497{left:402.300000px;}
.x9_c00497{left:416.340000px;}
.xa_c00497{left:427.950000px;}
.xc_c00497{left:891.540000px;}
.xd_c00497{left:892.890000px;}
.xb_c00497{left:895.050000px;}
@media print{
.v0_c00497{vertical-align:0.000000pt;}
.ls0_c00497{letter-spacing:0.000000pt;}
.ws0_c00497{word-spacing:0.000000pt;}
.fs3_c00497{font-size:21.333333pt;}
.fs2_c00497{font-size:69.333333pt;}
.fs1_c00497{font-size:80.000000pt;}
.fs0_c00497{font-size:90.666667pt;}
.y0_c00497{bottom:0.000000pt;}
.y5_c00497{bottom:609.120000pt;}
.y4_c00497{bottom:628.320000pt;}
.y2_c00497{bottom:923.553333pt;}
.y1_c00497{bottom:933.449333pt;}
.y3_c00497{bottom:957.882667pt;}
.h5_c00497{height:21.333333pt;}
.h4_c00497{height:69.333333pt;}
.h3_c00497{height:80.000000pt;}
.h2_c00497{height:90.666667pt;}
.h0_c00497{height:1107.840000pt;}
.h1_c00497{height:1108.000000pt;}
.w0_c00497{width:796.533333pt;}
.w1_c00497{width:796.666667pt;}
.x0_c00497{left:0.000000pt;}
.x1_c00497{left:71.040000pt;}
.x2_c00497{left:132.480000pt;}
.x3_c00497{left:231.840000pt;}
.x7_c00497{left:245.760000pt;}
.x4_c00497{left:281.520000pt;}
.x8_c00497{left:312.240000pt;}
.x5_c00497{left:334.560000pt;}
.x6_c00497{left:357.600000pt;}
.x9_c00497{left:370.080000pt;}
.xa_c00497{left:380.400000pt;}
.xc_c00497{left:792.480000pt;}
.xd_c00497{left:793.680000pt;}
.xb_c00497{left:795.600000pt;}
}





/* 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_c00498 {
    display:none;
  }
  .loading-indicator_c00498.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00498 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_c00498 { 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_c00498" -> "#page-container .classname_c00498")
 */
.pf_c00498 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00498 { /* 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_c00498.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00498 { /* 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_c00498 { /* 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_c00498 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00498 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00498 {overflow:visible;}
  }
}
.c_c00498 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00498 { /* 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_c00498:after { /* webkit #35443 */
  content: '';
}
.t_c00498:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00498 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 */
}
.__c00498 { /* 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_c00498 { /* info for Javascript */
  display:none;
}
.l_c00498 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00498 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00498 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00498: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_c00498 {
    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_c00498.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00498.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_c00498 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00498{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00498;src:url('chunks/assets/font_cfe63ee56e9e10a97d33a3db.woff2')format("woff");}.ff1_c00498{font-family:ff1_c00498;line-height:1.000000;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;}
.md1_c00498{transform:matrix(0.012497,0.000262,-0.005249,0.249945,0,0);-ms-transform:matrix(0.012497,0.000262,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.012497,0.000262,-0.005249,0.249945,0,0);}
.mc_c00498{transform:matrix(0.015909,0.000191,-0.003000,0.249982,0,0);-ms-transform:matrix(0.015909,0.000191,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.015909,0.000191,-0.003000,0.249982,0,0);}
.mda_c00498{transform:matrix(0.023999,0.000720,-0.007497,0.249888,0,0);-ms-transform:matrix(0.023999,0.000720,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.023999,0.000720,-0.007497,0.249888,0,0);}
.m114_c00498{transform:matrix(0.065620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065620,0.000000,0.000000,0.250000,0,0);}
.mf4_c00498{transform:matrix(0.138942,0.002779,-0.004999,0.249950,0,0);-ms-transform:matrix(0.138942,0.002779,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.138942,0.002779,-0.004999,0.249950,0,0);}
.m10_c00498{transform:matrix(0.155174,0.001862,-0.003000,0.249982,0,0);-ms-transform:matrix(0.155174,0.001862,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.155174,0.001862,-0.003000,0.249982,0,0);}
.md0_c00498{transform:matrix(0.159440,0.003348,-0.005249,0.249945,0,0);-ms-transform:matrix(0.159440,0.003348,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.159440,0.003348,-0.005249,0.249945,0,0);}
.ma1_c00498{transform:matrix(0.161239,0.003386,-0.005249,0.249945,0,0);-ms-transform:matrix(0.161239,0.003386,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.161239,0.003386,-0.005249,0.249945,0,0);}
.md_c00498{transform:matrix(0.164348,0.001972,-0.003000,0.249982,0,0);-ms-transform:matrix(0.164348,0.001972,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.164348,0.001972,-0.003000,0.249982,0,0);}
.ma3_c00498{transform:matrix(0.165479,0.003475,-0.005249,0.249945,0,0);-ms-transform:matrix(0.165479,0.003475,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.165479,0.003475,-0.005249,0.249945,0,0);}
.m50_c00498{transform:matrix(0.166338,0.003493,-0.005249,0.249945,0,0);-ms-transform:matrix(0.166338,0.003493,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.166338,0.003493,-0.005249,0.249945,0,0);}
.mcf_c00498{transform:matrix(0.166513,0.003497,-0.005249,0.249945,0,0);-ms-transform:matrix(0.166513,0.003497,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.166513,0.003497,-0.005249,0.249945,0,0);}
.ma0_c00498{transform:matrix(0.168403,0.003536,-0.005249,0.249945,0,0);-ms-transform:matrix(0.168403,0.003536,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.168403,0.003536,-0.005249,0.249945,0,0);}
.m102_c00498{transform:matrix(0.169546,0.003391,-0.004999,0.249950,0,0);-ms-transform:matrix(0.169546,0.003391,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.169546,0.003391,-0.004999,0.249950,0,0);}
.ma6_c00498{transform:matrix(0.169723,0.003564,-0.005249,0.249945,0,0);-ms-transform:matrix(0.169723,0.003564,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.169723,0.003564,-0.005249,0.249945,0,0);}
.ma8_c00498{transform:matrix(0.171802,0.003608,-0.005249,0.249945,0,0);-ms-transform:matrix(0.171802,0.003608,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.171802,0.003608,-0.005249,0.249945,0,0);}
.m4e_c00498{transform:matrix(0.174377,0.003662,-0.005249,0.249945,0,0);-ms-transform:matrix(0.174377,0.003662,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.174377,0.003662,-0.005249,0.249945,0,0);}
.m12_c00498{transform:matrix(0.176277,0.002115,-0.003000,0.249982,0,0);-ms-transform:matrix(0.176277,0.002115,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.176277,0.002115,-0.003000,0.249982,0,0);}
.me_c00498{transform:matrix(0.176527,0.002118,-0.003000,0.249982,0,0);-ms-transform:matrix(0.176527,0.002118,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.176527,0.002118,-0.003000,0.249982,0,0);}
.m22_c00498{transform:matrix(0.176926,0.003715,-0.005249,0.249945,0,0);-ms-transform:matrix(0.176926,0.003715,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.176926,0.003715,-0.005249,0.249945,0,0);}
.mde_c00498{transform:matrix(0.179719,0.005392,-0.007497,0.249888,0,0);-ms-transform:matrix(0.179719,0.005392,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.179719,0.005392,-0.007497,0.249888,0,0);}
.m1d_c00498{transform:matrix(0.180815,0.003797,-0.005249,0.249945,0,0);-ms-transform:matrix(0.180815,0.003797,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.180815,0.003797,-0.005249,0.249945,0,0);}
.m118_c00498{transform:matrix(0.180970,0.007971,-0.011000,0.249758,0,0);-ms-transform:matrix(0.180970,0.007971,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.180970,0.007971,-0.011000,0.249758,0,0);}
.m101_c00498{transform:matrix(0.181644,0.003633,-0.004999,0.249950,0,0);-ms-transform:matrix(0.181644,0.003633,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.181644,0.003633,-0.004999,0.249950,0,0);}
.mff_c00498{transform:matrix(0.181959,0.003639,-0.004999,0.249950,0,0);-ms-transform:matrix(0.181959,0.003639,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.181959,0.003639,-0.004999,0.249950,0,0);}
.m6d_c00498{transform:matrix(0.182105,0.003824,-0.005249,0.249945,0,0);-ms-transform:matrix(0.182105,0.003824,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.182105,0.003824,-0.005249,0.249945,0,0);}
.m4a_c00498{transform:matrix(0.183010,0.003843,-0.005249,0.249945,0,0);-ms-transform:matrix(0.183010,0.003843,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.183010,0.003843,-0.005249,0.249945,0,0);}
.me3_c00498{transform:matrix(0.187746,0.005632,-0.007497,0.249888,0,0);-ms-transform:matrix(0.187746,0.005632,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.187746,0.005632,-0.007497,0.249888,0,0);}
.mab_c00498{transform:matrix(0.188159,0.003951,-0.005249,0.249945,0,0);-ms-transform:matrix(0.188159,0.003951,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.188159,0.003951,-0.005249,0.249945,0,0);}
.mfe_c00498{transform:matrix(0.188897,0.003778,-0.004999,0.249950,0,0);-ms-transform:matrix(0.188897,0.003778,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.188897,0.003778,-0.004999,0.249950,0,0);}
.maf_c00498{transform:matrix(0.189248,0.003974,-0.005249,0.249945,0,0);-ms-transform:matrix(0.189248,0.003974,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.189248,0.003974,-0.005249,0.249945,0,0);}
.mdd_c00498{transform:matrix(0.189350,0.005680,-0.007497,0.249888,0,0);-ms-transform:matrix(0.189350,0.005680,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.189350,0.005680,-0.007497,0.249888,0,0);}
.mbc_c00498{transform:matrix(0.189563,0.003981,-0.005249,0.249945,0,0);-ms-transform:matrix(0.189563,0.003981,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.189563,0.003981,-0.005249,0.249945,0,0);}
.mfd_c00498{transform:matrix(0.190277,0.003806,-0.004999,0.249950,0,0);-ms-transform:matrix(0.190277,0.003806,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.190277,0.003806,-0.004999,0.249950,0,0);}
.m48_c00498{transform:matrix(0.192468,0.004042,-0.005249,0.249945,0,0);-ms-transform:matrix(0.192468,0.004042,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.192468,0.004042,-0.005249,0.249945,0,0);}
.me7_c00498{transform:matrix(0.192953,0.005789,-0.007497,0.249888,0,0);-ms-transform:matrix(0.192953,0.005789,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.192953,0.005789,-0.007497,0.249888,0,0);}
.m7f_c00498{transform:matrix(0.193462,0.004063,-0.005249,0.249945,0,0);-ms-transform:matrix(0.193462,0.004063,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.193462,0.004063,-0.005249,0.249945,0,0);}
.mf0_c00498{transform:matrix(0.193508,0.006586,-0.008504,0.249855,0,0);-ms-transform:matrix(0.193508,0.006586,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.193508,0.006586,-0.008504,0.249855,0,0);}
.mfc_c00498{transform:matrix(0.193531,0.003871,-0.004999,0.249950,0,0);-ms-transform:matrix(0.193531,0.003871,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.193531,0.003871,-0.004999,0.249950,0,0);}
.m71_c00498{transform:matrix(0.193537,0.004064,-0.005249,0.249945,0,0);-ms-transform:matrix(0.193537,0.004064,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.193537,0.004064,-0.005249,0.249945,0,0);}
.mf_c00498{transform:matrix(0.194201,0.002330,-0.003000,0.249982,0,0);-ms-transform:matrix(0.194201,0.002330,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.194201,0.002330,-0.003000,0.249982,0,0);}
.m11_c00498{transform:matrix(0.194256,0.002331,-0.003000,0.249982,0,0);-ms-transform:matrix(0.194256,0.002331,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.194256,0.002331,-0.003000,0.249982,0,0);}
.m8a_c00498{transform:matrix(0.194307,0.004080,-0.005249,0.249945,0,0);-ms-transform:matrix(0.194307,0.004080,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.194307,0.004080,-0.005249,0.249945,0,0);}
.mc0_c00498{transform:matrix(0.195462,0.004105,-0.005249,0.249945,0,0);-ms-transform:matrix(0.195462,0.004105,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.195462,0.004105,-0.005249,0.249945,0,0);}
.m4d_c00498{transform:matrix(0.195617,0.004108,-0.005249,0.249945,0,0);-ms-transform:matrix(0.195617,0.004108,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.195617,0.004108,-0.005249,0.249945,0,0);}
.m6a_c00498{transform:matrix(0.196082,0.004118,-0.005249,0.249945,0,0);-ms-transform:matrix(0.196082,0.004118,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.196082,0.004118,-0.005249,0.249945,0,0);}
.m23_c00498{transform:matrix(0.196732,0.004131,-0.005249,0.249945,0,0);-ms-transform:matrix(0.196732,0.004131,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.196732,0.004131,-0.005249,0.249945,0,0);}
.me4_c00498{transform:matrix(0.196866,0.005906,-0.007497,0.249888,0,0);-ms-transform:matrix(0.196866,0.005906,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.196866,0.005906,-0.007497,0.249888,0,0);}
.m68_c00498{transform:matrix(0.197391,0.004145,-0.005249,0.249945,0,0);-ms-transform:matrix(0.197391,0.004145,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.197391,0.004145,-0.005249,0.249945,0,0);}
.m11a_c00498{transform:matrix(0.198183,0.008729,-0.011000,0.249758,0,0);-ms-transform:matrix(0.198183,0.008729,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.198183,0.008729,-0.011000,0.249758,0,0);}
.m100_c00498{transform:matrix(0.198410,0.003968,-0.004999,0.249950,0,0);-ms-transform:matrix(0.198410,0.003968,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.198410,0.003968,-0.004999,0.249950,0,0);}
.maa_c00498{transform:matrix(0.199501,0.004190,-0.005249,0.249945,0,0);-ms-transform:matrix(0.199501,0.004190,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.199501,0.004190,-0.005249,0.249945,0,0);}
.mc3_c00498{transform:matrix(0.200266,0.004206,-0.005249,0.249945,0,0);-ms-transform:matrix(0.200266,0.004206,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.200266,0.004206,-0.005249,0.249945,0,0);}
.m20_c00498{transform:matrix(0.201076,0.004223,-0.005249,0.249945,0,0);-ms-transform:matrix(0.201076,0.004223,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.201076,0.004223,-0.005249,0.249945,0,0);}
.m10b_c00498{transform:matrix(0.201235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201235,0.000000,0.000000,0.250000,0,0);}
.ma4_c00498{transform:matrix(0.201900,0.004240,-0.005249,0.249945,0,0);-ms-transform:matrix(0.201900,0.004240,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.201900,0.004240,-0.005249,0.249945,0,0);}
.m52_c00498{transform:matrix(0.202215,0.004247,-0.005249,0.249945,0,0);-ms-transform:matrix(0.202215,0.004247,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.202215,0.004247,-0.005249,0.249945,0,0);}
.mef_c00498{transform:matrix(0.203047,0.006911,-0.008504,0.249855,0,0);-ms-transform:matrix(0.203047,0.006911,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.203047,0.006911,-0.008504,0.249855,0,0);}
.m1b_c00498{transform:matrix(0.203695,0.004278,-0.005249,0.249945,0,0);-ms-transform:matrix(0.203695,0.004278,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.203695,0.004278,-0.005249,0.249945,0,0);}
.mbe_c00498{transform:matrix(0.203810,0.004280,-0.005249,0.249945,0,0);-ms-transform:matrix(0.203810,0.004280,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.203810,0.004280,-0.005249,0.249945,0,0);}
.mb6_c00498{transform:matrix(0.204150,0.004287,-0.005249,0.249945,0,0);-ms-transform:matrix(0.204150,0.004287,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.204150,0.004287,-0.005249,0.249945,0,0);}
.m10d_c00498{transform:matrix(0.205075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205075,0.000000,0.000000,0.250000,0,0);}
.mad_c00498{transform:matrix(0.205670,0.004319,-0.005249,0.249945,0,0);-ms-transform:matrix(0.205670,0.004319,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.205670,0.004319,-0.005249,0.249945,0,0);}
.me6_c00498{transform:matrix(0.205937,0.006178,-0.007497,0.249888,0,0);-ms-transform:matrix(0.205937,0.006178,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.205937,0.006178,-0.007497,0.249888,0,0);}
.m112_c00498{transform:matrix(0.206095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206095,0.000000,0.000000,0.250000,0,0);}
.m4b_c00498{transform:matrix(0.206110,0.004328,-0.005249,0.249945,0,0);-ms-transform:matrix(0.206110,0.004328,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.206110,0.004328,-0.005249,0.249945,0,0);}
.ma5_c00498{transform:matrix(0.206260,0.004331,-0.005249,0.249945,0,0);-ms-transform:matrix(0.206260,0.004331,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.206260,0.004331,-0.005249,0.249945,0,0);}
.m62_c00498{transform:matrix(0.206849,0.004344,-0.005249,0.249945,0,0);-ms-transform:matrix(0.206849,0.004344,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.206849,0.004344,-0.005249,0.249945,0,0);}
.ma7_c00498{transform:matrix(0.207379,0.004355,-0.005249,0.249945,0,0);-ms-transform:matrix(0.207379,0.004355,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.207379,0.004355,-0.005249,0.249945,0,0);}
.m11d_c00498{transform:matrix(0.208403,0.009179,-0.011000,0.249758,0,0);-ms-transform:matrix(0.208403,0.009179,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.208403,0.009179,-0.011000,0.249758,0,0);}
.m1e_c00498{transform:matrix(0.208424,0.004377,-0.005249,0.249945,0,0);-ms-transform:matrix(0.208424,0.004377,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.208424,0.004377,-0.005249,0.249945,0,0);}
.ma2_c00498{transform:matrix(0.208644,0.004382,-0.005249,0.249945,0,0);-ms-transform:matrix(0.208644,0.004382,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.208644,0.004382,-0.005249,0.249945,0,0);}
.m10c_c00498{transform:matrix(0.209085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209085,0.000000,0.000000,0.250000,0,0);}
.m9f_c00498{transform:matrix(0.209309,0.004395,-0.005249,0.249945,0,0);-ms-transform:matrix(0.209309,0.004395,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.209309,0.004395,-0.005249,0.249945,0,0);}
.m73_c00498{transform:matrix(0.209314,0.004396,-0.005249,0.249945,0,0);-ms-transform:matrix(0.209314,0.004396,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.209314,0.004396,-0.005249,0.249945,0,0);}
.m8b_c00498{transform:matrix(0.209364,0.004397,-0.005249,0.249945,0,0);-ms-transform:matrix(0.209364,0.004397,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.209364,0.004397,-0.005249,0.249945,0,0);}
.m58_c00498{transform:matrix(0.209499,0.004399,-0.005249,0.249945,0,0);-ms-transform:matrix(0.209499,0.004399,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.209499,0.004399,-0.005249,0.249945,0,0);}
.me9_c00498{transform:matrix(0.209749,0.007139,-0.008504,0.249855,0,0);-ms-transform:matrix(0.209749,0.007139,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.209749,0.007139,-0.008504,0.249855,0,0);}
.m7d_c00498{transform:matrix(0.210564,0.004422,-0.005249,0.249945,0,0);-ms-transform:matrix(0.210564,0.004422,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.210564,0.004422,-0.005249,0.249945,0,0);}
.mdf_c00498{transform:matrix(0.210980,0.006329,-0.007497,0.249888,0,0);-ms-transform:matrix(0.210980,0.006329,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.210980,0.006329,-0.007497,0.249888,0,0);}
.m11f_c00498{transform:matrix(0.211165,0.009301,-0.011000,0.249758,0,0);-ms-transform:matrix(0.211165,0.009301,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.211165,0.009301,-0.011000,0.249758,0,0);}
.m4f_c00498{transform:matrix(0.212053,0.004453,-0.005249,0.249945,0,0);-ms-transform:matrix(0.212053,0.004453,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.212053,0.004453,-0.005249,0.249945,0,0);}
.m74_c00498{transform:matrix(0.212103,0.004454,-0.005249,0.249945,0,0);-ms-transform:matrix(0.212103,0.004454,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.212103,0.004454,-0.005249,0.249945,0,0);}
.me8_c00498{transform:matrix(0.212130,0.006364,-0.007497,0.249888,0,0);-ms-transform:matrix(0.212130,0.006364,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.212130,0.006364,-0.007497,0.249888,0,0);}
.m9e_c00498{transform:matrix(0.212208,0.004456,-0.005249,0.249945,0,0);-ms-transform:matrix(0.212208,0.004456,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.212208,0.004456,-0.005249,0.249945,0,0);}
.m119_c00498{transform:matrix(0.212434,0.009356,-0.011000,0.249758,0,0);-ms-transform:matrix(0.212434,0.009356,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.212434,0.009356,-0.011000,0.249758,0,0);}
.m90_c00498{transform:matrix(0.212903,0.004471,-0.005249,0.249945,0,0);-ms-transform:matrix(0.212903,0.004471,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.212903,0.004471,-0.005249,0.249945,0,0);}
.m1f_c00498{transform:matrix(0.213443,0.004482,-0.005249,0.249945,0,0);-ms-transform:matrix(0.213443,0.004482,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.213443,0.004482,-0.005249,0.249945,0,0);}
.m4c_c00498{transform:matrix(0.213743,0.004489,-0.005249,0.249945,0,0);-ms-transform:matrix(0.213743,0.004489,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.213743,0.004489,-0.005249,0.249945,0,0);}
.m69_c00498{transform:matrix(0.213868,0.004491,-0.005249,0.249945,0,0);-ms-transform:matrix(0.213868,0.004491,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.213868,0.004491,-0.005249,0.249945,0,0);}
.me1_c00498{transform:matrix(0.214104,0.006423,-0.007497,0.249888,0,0);-ms-transform:matrix(0.214104,0.006423,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.214104,0.006423,-0.007497,0.249888,0,0);}
.ma9_c00498{transform:matrix(0.214178,0.004498,-0.005249,0.249945,0,0);-ms-transform:matrix(0.214178,0.004498,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.214178,0.004498,-0.005249,0.249945,0,0);}
.mac_c00498{transform:matrix(0.215123,0.004518,-0.005249,0.249945,0,0);-ms-transform:matrix(0.215123,0.004518,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.215123,0.004518,-0.005249,0.249945,0,0);}
.m24_c00498{transform:matrix(0.215368,0.004523,-0.005249,0.249945,0,0);-ms-transform:matrix(0.215368,0.004523,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.215368,0.004523,-0.005249,0.249945,0,0);}
.me0_c00498{transform:matrix(0.215718,0.006472,-0.007497,0.249888,0,0);-ms-transform:matrix(0.215718,0.006472,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.215718,0.006472,-0.007497,0.249888,0,0);}
.mec_c00498{transform:matrix(0.216345,0.007363,-0.008504,0.249855,0,0);-ms-transform:matrix(0.216345,0.007363,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.216345,0.007363,-0.008504,0.249855,0,0);}
.m8d_c00498{transform:matrix(0.216837,0.004554,-0.005249,0.249945,0,0);-ms-transform:matrix(0.216837,0.004554,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.216837,0.004554,-0.005249,0.249945,0,0);}
.m72_c00498{transform:matrix(0.217317,0.004564,-0.005249,0.249945,0,0);-ms-transform:matrix(0.217317,0.004564,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.217317,0.004564,-0.005249,0.249945,0,0);}
.mba_c00498{transform:matrix(0.217882,0.004576,-0.005249,0.249945,0,0);-ms-transform:matrix(0.217882,0.004576,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.217882,0.004576,-0.005249,0.249945,0,0);}
.mc1_c00498{transform:matrix(0.218287,0.004584,-0.005249,0.249945,0,0);-ms-transform:matrix(0.218287,0.004584,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.218287,0.004584,-0.005249,0.249945,0,0);}
.mbb_c00498{transform:matrix(0.218497,0.004588,-0.005249,0.249945,0,0);-ms-transform:matrix(0.218497,0.004588,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.218497,0.004588,-0.005249,0.249945,0,0);}
.m1c_c00498{transform:matrix(0.219092,0.004601,-0.005249,0.249945,0,0);-ms-transform:matrix(0.219092,0.004601,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.219092,0.004601,-0.005249,0.249945,0,0);}
.m10f_c00498{transform:matrix(0.219910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219910,0.000000,0.000000,0.250000,0,0);}
.m9d_c00498{transform:matrix(0.220251,0.004625,-0.005249,0.249945,0,0);-ms-transform:matrix(0.220251,0.004625,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.220251,0.004625,-0.005249,0.249945,0,0);}
.m49_c00498{transform:matrix(0.221061,0.004642,-0.005249,0.249945,0,0);-ms-transform:matrix(0.221061,0.004642,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.221061,0.004642,-0.005249,0.249945,0,0);}
.mb0_c00498{transform:matrix(0.221321,0.004648,-0.005249,0.249945,0,0);-ms-transform:matrix(0.221321,0.004648,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.221321,0.004648,-0.005249,0.249945,0,0);}
.med_c00498{transform:matrix(0.221537,0.007540,-0.008504,0.249855,0,0);-ms-transform:matrix(0.221537,0.007540,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.221537,0.007540,-0.008504,0.249855,0,0);}
.m110_c00498{transform:matrix(0.221565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221565,0.000000,0.000000,0.250000,0,0);}
.m5f_c00498{transform:matrix(0.221831,0.004658,-0.005249,0.249945,0,0);-ms-transform:matrix(0.221831,0.004658,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.221831,0.004658,-0.005249,0.249945,0,0);}
.me5_c00498{transform:matrix(0.222110,0.006663,-0.007497,0.249888,0,0);-ms-transform:matrix(0.222110,0.006663,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.222110,0.006663,-0.007497,0.249888,0,0);}
.mc4_c00498{transform:matrix(0.222396,0.004670,-0.005249,0.249945,0,0);-ms-transform:matrix(0.222396,0.004670,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.222396,0.004670,-0.005249,0.249945,0,0);}
.m21_c00498{transform:matrix(0.222881,0.004680,-0.005249,0.249945,0,0);-ms-transform:matrix(0.222881,0.004680,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.222881,0.004680,-0.005249,0.249945,0,0);}
.m54_c00498{transform:matrix(0.223131,0.004686,-0.005249,0.249945,0,0);-ms-transform:matrix(0.223131,0.004686,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.223131,0.004686,-0.005249,0.249945,0,0);}
.m108_c00498{transform:matrix(0.223270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223270,0.000000,0.000000,0.250000,0,0);}
.m6c_c00498{transform:matrix(0.223431,0.004692,-0.005249,0.249945,0,0);-ms-transform:matrix(0.223431,0.004692,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.223431,0.004692,-0.005249,0.249945,0,0);}
.m11b_c00498{transform:matrix(0.223438,0.009841,-0.011000,0.249758,0,0);-ms-transform:matrix(0.223438,0.009841,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.223438,0.009841,-0.011000,0.249758,0,0);}
.m7b_c00498{transform:matrix(0.223641,0.004696,-0.005249,0.249945,0,0);-ms-transform:matrix(0.223641,0.004696,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.223641,0.004696,-0.005249,0.249945,0,0);}
.m61_c00498{transform:matrix(0.224021,0.004704,-0.005249,0.249945,0,0);-ms-transform:matrix(0.224021,0.004704,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.224021,0.004704,-0.005249,0.249945,0,0);}
.m51_c00498{transform:matrix(0.224406,0.004713,-0.005249,0.249945,0,0);-ms-transform:matrix(0.224406,0.004713,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.224406,0.004713,-0.005249,0.249945,0,0);}
.mc8_c00498{transform:matrix(0.224630,0.004717,-0.005249,0.249945,0,0);-ms-transform:matrix(0.224630,0.004717,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.224630,0.004717,-0.005249,0.249945,0,0);}
.mee_c00498{transform:matrix(0.224835,0.007652,-0.008504,0.249855,0,0);-ms-transform:matrix(0.224835,0.007652,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.224835,0.007652,-0.008504,0.249855,0,0);}
.mae_c00498{transform:matrix(0.225205,0.004729,-0.005249,0.249945,0,0);-ms-transform:matrix(0.225205,0.004729,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.225205,0.004729,-0.005249,0.249945,0,0);}
.m2c_c00498{transform:matrix(0.226015,0.004746,-0.005249,0.249945,0,0);-ms-transform:matrix(0.226015,0.004746,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.226015,0.004746,-0.005249,0.249945,0,0);}
.m25_c00498{transform:matrix(0.226335,0.004753,-0.005249,0.249945,0,0);-ms-transform:matrix(0.226335,0.004753,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.226335,0.004753,-0.005249,0.249945,0,0);}
.mf2_c00498{transform:matrix(0.226524,0.007710,-0.008504,0.249855,0,0);-ms-transform:matrix(0.226524,0.007710,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.226524,0.007710,-0.008504,0.249855,0,0);}
.md9_c00498{transform:matrix(0.226643,0.006799,-0.007497,0.249888,0,0);-ms-transform:matrix(0.226643,0.006799,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.226643,0.006799,-0.007497,0.249888,0,0);}
.me2_c00498{transform:matrix(0.226668,0.006800,-0.007497,0.249888,0,0);-ms-transform:matrix(0.226668,0.006800,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.226668,0.006800,-0.007497,0.249888,0,0);}
.m35_c00498{transform:matrix(0.226695,0.004761,-0.005249,0.249945,0,0);-ms-transform:matrix(0.226695,0.004761,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.226695,0.004761,-0.005249,0.249945,0,0);}
.mbf_c00498{transform:matrix(0.227370,0.004775,-0.005249,0.249945,0,0);-ms-transform:matrix(0.227370,0.004775,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.227370,0.004775,-0.005249,0.249945,0,0);}
.m78_c00498{transform:matrix(0.227935,0.004787,-0.005249,0.249945,0,0);-ms-transform:matrix(0.227935,0.004787,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.227935,0.004787,-0.005249,0.249945,0,0);}
.m5b_c00498{transform:matrix(0.228355,0.004795,-0.005249,0.249945,0,0);-ms-transform:matrix(0.228355,0.004795,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.228355,0.004795,-0.005249,0.249945,0,0);}
.m5a_c00498{transform:matrix(0.229084,0.004811,-0.005249,0.249945,0,0);-ms-transform:matrix(0.229084,0.004811,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.229084,0.004811,-0.005249,0.249945,0,0);}
.m8c_c00498{transform:matrix(0.229104,0.004811,-0.005249,0.249945,0,0);-ms-transform:matrix(0.229104,0.004811,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.229104,0.004811,-0.005249,0.249945,0,0);}
.m6b_c00498{transform:matrix(0.229594,0.004821,-0.005249,0.249945,0,0);-ms-transform:matrix(0.229594,0.004821,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.229594,0.004821,-0.005249,0.249945,0,0);}
.meb_c00498{transform:matrix(0.229937,0.007826,-0.008504,0.249855,0,0);-ms-transform:matrix(0.229937,0.007826,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.229937,0.007826,-0.008504,0.249855,0,0);}
.m27_c00498{transform:matrix(0.230289,0.004836,-0.005249,0.249945,0,0);-ms-transform:matrix(0.230289,0.004836,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.230289,0.004836,-0.005249,0.249945,0,0);}
.m11c_c00498{transform:matrix(0.230786,0.010165,-0.011000,0.249758,0,0);-ms-transform:matrix(0.230786,0.010165,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.230786,0.010165,-0.011000,0.249758,0,0);}
.m116_c00498{transform:matrix(0.231640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231640,0.000000,0.000000,0.250000,0,0);}
.m115_c00498{transform:matrix(0.231955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231955,0.000000,0.000000,0.250000,0,0);}
.m70_c00498{transform:matrix(0.231969,0.004871,-0.005249,0.249945,0,0);-ms-transform:matrix(0.231969,0.004871,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.231969,0.004871,-0.005249,0.249945,0,0);}
.m106_c00498{transform:matrix(0.232395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232395,0.000000,0.000000,0.250000,0,0);}
.m117_c00498{transform:matrix(0.232909,0.010258,-0.011000,0.249758,0,0);-ms-transform:matrix(0.232909,0.010258,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.232909,0.010258,-0.011000,0.249758,0,0);}
.mbd_c00498{transform:matrix(0.232994,0.004893,-0.005249,0.249945,0,0);-ms-transform:matrix(0.232994,0.004893,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.232994,0.004893,-0.005249,0.249945,0,0);}
.mcc_c00498{transform:matrix(0.233628,0.004906,-0.005249,0.249945,0,0);-ms-transform:matrix(0.233628,0.004906,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.233628,0.004906,-0.005249,0.249945,0,0);}
.m11e_c00498{transform:matrix(0.234158,0.010313,-0.011000,0.249758,0,0);-ms-transform:matrix(0.234158,0.010313,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.234158,0.010313,-0.011000,0.249758,0,0);}
.m77_c00498{transform:matrix(0.234183,0.004918,-0.005249,0.249945,0,0);-ms-transform:matrix(0.234183,0.004918,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.234183,0.004918,-0.005249,0.249945,0,0);}
.m53_c00498{transform:matrix(0.234463,0.004924,-0.005249,0.249945,0,0);-ms-transform:matrix(0.234463,0.004924,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.234463,0.004924,-0.005249,0.249945,0,0);}
.mc2_c00498{transform:matrix(0.234933,0.004934,-0.005249,0.249945,0,0);-ms-transform:matrix(0.234933,0.004934,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.234933,0.004934,-0.005249,0.249945,0,0);}
.m30_c00498{transform:matrix(0.235028,0.004936,-0.005249,0.249945,0,0);-ms-transform:matrix(0.235028,0.004936,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.235028,0.004936,-0.005249,0.249945,0,0);}
.m7_c00498{transform:matrix(0.235063,0.002821,-0.003000,0.249982,0,0);-ms-transform:matrix(0.235063,0.002821,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.235063,0.002821,-0.003000,0.249982,0,0);}
.mea_c00498{transform:matrix(0.235788,0.008025,-0.008504,0.249855,0,0);-ms-transform:matrix(0.235788,0.008025,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.235788,0.008025,-0.008504,0.249855,0,0);}
.m89_c00498{transform:matrix(0.236223,0.004961,-0.005249,0.249945,0,0);-ms-transform:matrix(0.236223,0.004961,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.236223,0.004961,-0.005249,0.249945,0,0);}
.m28_c00498{transform:matrix(0.236393,0.004964,-0.005249,0.249945,0,0);-ms-transform:matrix(0.236393,0.004964,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.236393,0.004964,-0.005249,0.249945,0,0);}
.m6e_c00498{transform:matrix(0.237393,0.004985,-0.005249,0.249945,0,0);-ms-transform:matrix(0.237393,0.004985,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.237393,0.004985,-0.005249,0.249945,0,0);}
.m8e_c00498{transform:matrix(0.237498,0.004987,-0.005249,0.249945,0,0);-ms-transform:matrix(0.237498,0.004987,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.237498,0.004987,-0.005249,0.249945,0,0);}
.m63_c00498{transform:matrix(0.238512,0.005009,-0.005249,0.249945,0,0);-ms-transform:matrix(0.238512,0.005009,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.238512,0.005009,-0.005249,0.249945,0,0);}
.m38_c00498{transform:matrix(0.239242,0.005024,-0.005249,0.249945,0,0);-ms-transform:matrix(0.239242,0.005024,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.239242,0.005024,-0.005249,0.249945,0,0);}
.mf1_c00498{transform:matrix(0.240341,0.008180,-0.008504,0.249855,0,0);-ms-transform:matrix(0.240341,0.008180,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.240341,0.008180,-0.008504,0.249855,0,0);}
.mb4_c00498{transform:matrix(0.241727,0.005076,-0.005249,0.249945,0,0);-ms-transform:matrix(0.241727,0.005076,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.241727,0.005076,-0.005249,0.249945,0,0);}
.m3_c00498{transform:matrix(0.241763,0.002901,-0.003000,0.249982,0,0);-ms-transform:matrix(0.241763,0.002901,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.241763,0.002901,-0.003000,0.249982,0,0);}
.m65_c00498{transform:matrix(0.241967,0.005081,-0.005249,0.249945,0,0);-ms-transform:matrix(0.241967,0.005081,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.241967,0.005081,-0.005249,0.249945,0,0);}
.m111_c00498{transform:matrix(0.242210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242210,0.000000,0.000000,0.250000,0,0);}
.m47_c00498{transform:matrix(0.242701,0.005097,-0.005249,0.249945,0,0);-ms-transform:matrix(0.242701,0.005097,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.242701,0.005097,-0.005249,0.249945,0,0);}
.m1_c00498{transform:matrix(0.243297,0.002920,-0.003000,0.249982,0,0);-ms-transform:matrix(0.243297,0.002920,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.243297,0.002920,-0.003000,0.249982,0,0);}
.m3b_c00498{transform:matrix(0.243726,0.005118,-0.005249,0.249945,0,0);-ms-transform:matrix(0.243726,0.005118,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.243726,0.005118,-0.005249,0.249945,0,0);}
.m8f_c00498{transform:matrix(0.243886,0.005122,-0.005249,0.249945,0,0);-ms-transform:matrix(0.243886,0.005122,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.243886,0.005122,-0.005249,0.249945,0,0);}
.md5_c00498{transform:matrix(0.244145,0.007324,-0.007497,0.249888,0,0);-ms-transform:matrix(0.244145,0.007324,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.244145,0.007324,-0.007497,0.249888,0,0);}
.m91_c00498{transform:matrix(0.244801,0.005141,-0.005249,0.249945,0,0);-ms-transform:matrix(0.244801,0.005141,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.244801,0.005141,-0.005249,0.249945,0,0);}
.ma_c00498{transform:matrix(0.244842,0.002938,-0.003000,0.249982,0,0);-ms-transform:matrix(0.244842,0.002938,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.244842,0.002938,-0.003000,0.249982,0,0);}
.m120_c00498{transform:matrix(0.244868,0.010785,-0.011000,0.249758,0,0);-ms-transform:matrix(0.244868,0.010785,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.244868,0.010785,-0.011000,0.249758,0,0);}
.m10e_c00498{transform:matrix(0.244930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244930,0.000000,0.000000,0.250000,0,0);}
.mc5_c00498{transform:matrix(0.245211,0.005149,-0.005249,0.249945,0,0);-ms-transform:matrix(0.245211,0.005149,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.245211,0.005149,-0.005249,0.249945,0,0);}
.m57_c00498{transform:matrix(0.245546,0.005156,-0.005249,0.249945,0,0);-ms-transform:matrix(0.245546,0.005156,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.245546,0.005156,-0.005249,0.249945,0,0);}
.m93_c00498{transform:matrix(0.245781,0.005161,-0.005249,0.249945,0,0);-ms-transform:matrix(0.245781,0.005161,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.245781,0.005161,-0.005249,0.249945,0,0);}
.m6f_c00498{transform:matrix(0.246356,0.005173,-0.005249,0.249945,0,0);-ms-transform:matrix(0.246356,0.005173,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.246356,0.005173,-0.005249,0.249945,0,0);}
.m79_c00498{transform:matrix(0.246686,0.005180,-0.005249,0.249945,0,0);-ms-transform:matrix(0.246686,0.005180,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.246686,0.005180,-0.005249,0.249945,0,0);}
.m41_c00498{transform:matrix(0.247245,0.005192,-0.005249,0.249945,0,0);-ms-transform:matrix(0.247245,0.005192,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.247245,0.005192,-0.005249,0.249945,0,0);}
.m105_c00498{transform:matrix(0.247535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247535,0.000000,0.000000,0.250000,0,0);}
.md2_c00498{transform:matrix(0.248193,0.007446,-0.007497,0.249888,0,0);-ms-transform:matrix(0.248193,0.007446,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.248193,0.007446,-0.007497,0.249888,0,0);}
.m5c_c00498{transform:matrix(0.248605,0.005221,-0.005249,0.249945,0,0);-ms-transform:matrix(0.248605,0.005221,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.248605,0.005221,-0.005249,0.249945,0,0);}
.m113_c00498{transform:matrix(0.248730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248730,0.000000,0.000000,0.250000,0,0);}
.m59_c00498{transform:matrix(0.249205,0.005233,-0.005249,0.249945,0,0);-ms-transform:matrix(0.249205,0.005233,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.249205,0.005233,-0.005249,0.249945,0,0);}
.m37_c00498{transform:matrix(0.249610,0.005242,-0.005249,0.249945,0,0);-ms-transform:matrix(0.249610,0.005242,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.249610,0.005242,-0.005249,0.249945,0,0);}
.mf8_c00498{transform:matrix(0.249985,0.005000,-0.004999,0.249950,0,0);-ms-transform:matrix(0.249985,0.005000,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.249985,0.005000,-0.004999,0.249950,0,0);}
.m82_c00498{transform:matrix(0.250100,0.005252,-0.005249,0.249945,0,0);-ms-transform:matrix(0.250100,0.005252,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.250100,0.005252,-0.005249,0.249945,0,0);}
.m13_c00498{transform:matrix(0.250335,0.005257,-0.005249,0.249945,0,0);-ms-transform:matrix(0.250335,0.005257,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.250335,0.005257,-0.005249,0.249945,0,0);}
.mb1_c00498{transform:matrix(0.250875,0.005268,-0.005249,0.249945,0,0);-ms-transform:matrix(0.250875,0.005268,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.250875,0.005268,-0.005249,0.249945,0,0);}
.m109_c00498{transform:matrix(0.251015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251015,0.000000,0.000000,0.250000,0,0);}
.m56_c00498{transform:matrix(0.251395,0.005279,-0.005249,0.249945,0,0);-ms-transform:matrix(0.251395,0.005279,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.251395,0.005279,-0.005249,0.249945,0,0);}
.m2f_c00498{transform:matrix(0.251839,0.005289,-0.005249,0.249945,0,0);-ms-transform:matrix(0.251839,0.005289,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.251839,0.005289,-0.005249,0.249945,0,0);}
.m3d_c00498{transform:matrix(0.252059,0.005293,-0.005249,0.249945,0,0);-ms-transform:matrix(0.252059,0.005293,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.252059,0.005293,-0.005249,0.249945,0,0);}
.m43_c00498{transform:matrix(0.252194,0.005296,-0.005249,0.249945,0,0);-ms-transform:matrix(0.252194,0.005296,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.252194,0.005296,-0.005249,0.249945,0,0);}
.m26_c00498{transform:matrix(0.252539,0.005303,-0.005249,0.249945,0,0);-ms-transform:matrix(0.252539,0.005303,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.252539,0.005303,-0.005249,0.249945,0,0);}
.m2e_c00498{transform:matrix(0.252979,0.005313,-0.005249,0.249945,0,0);-ms-transform:matrix(0.252979,0.005313,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.252979,0.005313,-0.005249,0.249945,0,0);}
.mb_c00498{transform:matrix(0.253457,0.003041,-0.003000,0.249982,0,0);-ms-transform:matrix(0.253457,0.003041,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.253457,0.003041,-0.003000,0.249982,0,0);}
.m5d_c00498{transform:matrix(0.254259,0.005339,-0.005249,0.249945,0,0);-ms-transform:matrix(0.254259,0.005339,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.254259,0.005339,-0.005249,0.249945,0,0);}
.m55_c00498{transform:matrix(0.255284,0.005361,-0.005249,0.249945,0,0);-ms-transform:matrix(0.255284,0.005361,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.255284,0.005361,-0.005249,0.249945,0,0);}
.m3f_c00498{transform:matrix(0.255384,0.005363,-0.005249,0.249945,0,0);-ms-transform:matrix(0.255384,0.005363,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.255384,0.005363,-0.005249,0.249945,0,0);}
.m7a_c00498{transform:matrix(0.255679,0.005369,-0.005249,0.249945,0,0);-ms-transform:matrix(0.255679,0.005369,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.255679,0.005369,-0.005249,0.249945,0,0);}
.m5_c00498{transform:matrix(0.255727,0.003069,-0.003000,0.249982,0,0);-ms-transform:matrix(0.255727,0.003069,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.255727,0.003069,-0.003000,0.249982,0,0);}
.m36_c00498{transform:matrix(0.256204,0.005380,-0.005249,0.249945,0,0);-ms-transform:matrix(0.256204,0.005380,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.256204,0.005380,-0.005249,0.249945,0,0);}
.md4_c00498{transform:matrix(0.257354,0.007721,-0.007497,0.249888,0,0);-ms-transform:matrix(0.257354,0.007721,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.257354,0.007721,-0.007497,0.249888,0,0);}
.mb2_c00498{transform:matrix(0.257563,0.005409,-0.005249,0.249945,0,0);-ms-transform:matrix(0.257563,0.005409,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.257563,0.005409,-0.005249,0.249945,0,0);}
.m7c_c00498{transform:matrix(0.257788,0.005414,-0.005249,0.249945,0,0);-ms-transform:matrix(0.257788,0.005414,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.257788,0.005414,-0.005249,0.249945,0,0);}
.m81_c00498{transform:matrix(0.258128,0.005421,-0.005249,0.249945,0,0);-ms-transform:matrix(0.258128,0.005421,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.258128,0.005421,-0.005249,0.249945,0,0);}
.m2a_c00498{transform:matrix(0.258973,0.005438,-0.005249,0.249945,0,0);-ms-transform:matrix(0.258973,0.005438,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.258973,0.005438,-0.005249,0.249945,0,0);}
.m34_c00498{transform:matrix(0.259153,0.005442,-0.005249,0.249945,0,0);-ms-transform:matrix(0.259153,0.005442,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.259153,0.005442,-0.005249,0.249945,0,0);}
.m107_c00498{transform:matrix(0.259185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259185,0.000000,0.000000,0.250000,0,0);}
.m10a_c00498{transform:matrix(0.259455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259455,0.000000,0.000000,0.250000,0,0);}
.m9_c00498{transform:matrix(0.259501,0.003114,-0.003000,0.249982,0,0);-ms-transform:matrix(0.259501,0.003114,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.259501,0.003114,-0.003000,0.249982,0,0);}
.m80_c00498{transform:matrix(0.260593,0.005472,-0.005249,0.249945,0,0);-ms-transform:matrix(0.260593,0.005472,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.260593,0.005472,-0.005249,0.249945,0,0);}
.m7e_c00498{transform:matrix(0.261122,0.005484,-0.005249,0.249945,0,0);-ms-transform:matrix(0.261122,0.005484,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.261122,0.005484,-0.005249,0.249945,0,0);}
.md3_c00498{transform:matrix(0.261712,0.007851,-0.007497,0.249888,0,0);-ms-transform:matrix(0.261712,0.007851,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.261712,0.007851,-0.007497,0.249888,0,0);}
.m83_c00498{transform:matrix(0.261887,0.005500,-0.005249,0.249945,0,0);-ms-transform:matrix(0.261887,0.005500,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.261887,0.005500,-0.005249,0.249945,0,0);}
.m16_c00498{transform:matrix(0.262082,0.005504,-0.005249,0.249945,0,0);-ms-transform:matrix(0.262082,0.005504,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.262082,0.005504,-0.005249,0.249945,0,0);}
.mc6_c00498{transform:matrix(0.262232,0.005507,-0.005249,0.249945,0,0);-ms-transform:matrix(0.262232,0.005507,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.262232,0.005507,-0.005249,0.249945,0,0);}
.m2_c00498{transform:matrix(0.262436,0.003149,-0.003000,0.249982,0,0);-ms-transform:matrix(0.262436,0.003149,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.262436,0.003149,-0.003000,0.249982,0,0);}
.m29_c00498{transform:matrix(0.262792,0.005519,-0.005249,0.249945,0,0);-ms-transform:matrix(0.262792,0.005519,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.262792,0.005519,-0.005249,0.249945,0,0);}
.m5e_c00498{transform:matrix(0.262827,0.005519,-0.005249,0.249945,0,0);-ms-transform:matrix(0.262827,0.005519,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.262827,0.005519,-0.005249,0.249945,0,0);}
.m3a_c00498{transform:matrix(0.263202,0.005527,-0.005249,0.249945,0,0);-ms-transform:matrix(0.263202,0.005527,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.263202,0.005527,-0.005249,0.249945,0,0);}
.m104_c00498{transform:matrix(0.263255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263255,0.000000,0.000000,0.250000,0,0);}
.m33_c00498{transform:matrix(0.263422,0.005532,-0.005249,0.249945,0,0);-ms-transform:matrix(0.263422,0.005532,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.263422,0.005532,-0.005249,0.249945,0,0);}
.mf9_c00498{transform:matrix(0.263942,0.005279,-0.004999,0.249950,0,0);-ms-transform:matrix(0.263942,0.005279,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.263942,0.005279,-0.004999,0.249950,0,0);}
.m4_c00498{transform:matrix(0.264526,0.003174,-0.003000,0.249982,0,0);-ms-transform:matrix(0.264526,0.003174,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.264526,0.003174,-0.003000,0.249982,0,0);}
.md8_c00498{transform:matrix(0.264736,0.007942,-0.007497,0.249888,0,0);-ms-transform:matrix(0.264736,0.007942,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.264736,0.007942,-0.007497,0.249888,0,0);}
.m98_c00498{transform:matrix(0.264752,0.005560,-0.005249,0.249945,0,0);-ms-transform:matrix(0.264752,0.005560,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.264752,0.005560,-0.005249,0.249945,0,0);}
.m60_c00498{transform:matrix(0.264902,0.005563,-0.005249,0.249945,0,0);-ms-transform:matrix(0.264902,0.005563,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.264902,0.005563,-0.005249,0.249945,0,0);}
.m3e_c00498{transform:matrix(0.266001,0.005586,-0.005249,0.249945,0,0);-ms-transform:matrix(0.266001,0.005586,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.266001,0.005586,-0.005249,0.249945,0,0);}
.m6_c00498{transform:matrix(0.266171,0.003194,-0.003000,0.249982,0,0);-ms-transform:matrix(0.266171,0.003194,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.266171,0.003194,-0.003000,0.249982,0,0);}
.mc7_c00498{transform:matrix(0.266731,0.005601,-0.005249,0.249945,0,0);-ms-transform:matrix(0.266731,0.005601,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.266731,0.005601,-0.005249,0.249945,0,0);}
.m2d_c00498{transform:matrix(0.266821,0.005603,-0.005249,0.249945,0,0);-ms-transform:matrix(0.266821,0.005603,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.266821,0.005603,-0.005249,0.249945,0,0);}
.m84_c00498{transform:matrix(0.267146,0.005610,-0.005249,0.249945,0,0);-ms-transform:matrix(0.267146,0.005610,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.267146,0.005610,-0.005249,0.249945,0,0);}
.m31_c00498{transform:matrix(0.267346,0.005614,-0.005249,0.249945,0,0);-ms-transform:matrix(0.267346,0.005614,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.267346,0.005614,-0.005249,0.249945,0,0);}
.mb5_c00498{transform:matrix(0.267571,0.005619,-0.005249,0.249945,0,0);-ms-transform:matrix(0.267571,0.005619,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.267571,0.005619,-0.005249,0.249945,0,0);}
.mca_c00498{transform:matrix(0.268391,0.005636,-0.005249,0.249945,0,0);-ms-transform:matrix(0.268391,0.005636,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.268391,0.005636,-0.005249,0.249945,0,0);}
.m67_c00498{transform:matrix(0.268791,0.005645,-0.005249,0.249945,0,0);-ms-transform:matrix(0.268791,0.005645,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.268791,0.005645,-0.005249,0.249945,0,0);}
.m46_c00498{transform:matrix(0.268901,0.005647,-0.005249,0.249945,0,0);-ms-transform:matrix(0.268901,0.005647,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.268901,0.005647,-0.005249,0.249945,0,0);}
.m19_c00498{transform:matrix(0.270010,0.005670,-0.005249,0.249945,0,0);-ms-transform:matrix(0.270010,0.005670,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.270010,0.005670,-0.005249,0.249945,0,0);}
.m40_c00498{transform:matrix(0.270255,0.005675,-0.005249,0.249945,0,0);-ms-transform:matrix(0.270255,0.005675,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.270255,0.005675,-0.005249,0.249945,0,0);}
.m86_c00498{transform:matrix(0.270600,0.005683,-0.005249,0.249945,0,0);-ms-transform:matrix(0.270600,0.005683,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.270600,0.005683,-0.005249,0.249945,0,0);}
.mce_c00498{transform:matrix(0.271400,0.005699,-0.005249,0.249945,0,0);-ms-transform:matrix(0.271400,0.005699,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.271400,0.005699,-0.005249,0.249945,0,0);}
.m44_c00498{transform:matrix(0.272295,0.005718,-0.005249,0.249945,0,0);-ms-transform:matrix(0.272295,0.005718,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.272295,0.005718,-0.005249,0.249945,0,0);}
.m66_c00498{transform:matrix(0.272420,0.005721,-0.005249,0.249945,0,0);-ms-transform:matrix(0.272420,0.005721,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.272420,0.005721,-0.005249,0.249945,0,0);}
.m39_c00498{transform:matrix(0.273710,0.005748,-0.005249,0.249945,0,0);-ms-transform:matrix(0.273710,0.005748,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.273710,0.005748,-0.005249,0.249945,0,0);}
.mdb_c00498{transform:matrix(0.273822,0.008215,-0.007497,0.249888,0,0);-ms-transform:matrix(0.273822,0.008215,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.273822,0.008215,-0.007497,0.249888,0,0);}
.m103_c00498{transform:matrix(0.274075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274075,0.000000,0.000000,0.250000,0,0);}
.m42_c00498{transform:matrix(0.274180,0.005758,-0.005249,0.249945,0,0);-ms-transform:matrix(0.274180,0.005758,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.274180,0.005758,-0.005249,0.249945,0,0);}
.m85_c00498{transform:matrix(0.274669,0.005768,-0.005249,0.249945,0,0);-ms-transform:matrix(0.274669,0.005768,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.274669,0.005768,-0.005249,0.249945,0,0);}
.m32_c00498{transform:matrix(0.274694,0.005769,-0.005249,0.249945,0,0);-ms-transform:matrix(0.274694,0.005769,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.274694,0.005769,-0.005249,0.249945,0,0);}
.mb9_c00498{transform:matrix(0.274834,0.005772,-0.005249,0.249945,0,0);-ms-transform:matrix(0.274834,0.005772,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.274834,0.005772,-0.005249,0.249945,0,0);}
.m97_c00498{transform:matrix(0.274974,0.005774,-0.005249,0.249945,0,0);-ms-transform:matrix(0.274974,0.005774,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.274974,0.005774,-0.005249,0.249945,0,0);}
.m8_c00498{transform:matrix(0.275625,0.003308,-0.003000,0.249982,0,0);-ms-transform:matrix(0.275625,0.003308,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.275625,0.003308,-0.003000,0.249982,0,0);}
.mc9_c00498{transform:matrix(0.276744,0.005812,-0.005249,0.249945,0,0);-ms-transform:matrix(0.276744,0.005812,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.276744,0.005812,-0.005249,0.249945,0,0);}
.m64_c00498{transform:matrix(0.276989,0.005817,-0.005249,0.249945,0,0);-ms-transform:matrix(0.276989,0.005817,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.276989,0.005817,-0.005249,0.249945,0,0);}
.m45_c00498{transform:matrix(0.277639,0.005830,-0.005249,0.249945,0,0);-ms-transform:matrix(0.277639,0.005830,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.277639,0.005830,-0.005249,0.249945,0,0);}
.m88_c00498{transform:matrix(0.277794,0.005834,-0.005249,0.249945,0,0);-ms-transform:matrix(0.277794,0.005834,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.277794,0.005834,-0.005249,0.249945,0,0);}
.mcb_c00498{transform:matrix(0.279503,0.005870,-0.005249,0.249945,0,0);-ms-transform:matrix(0.279503,0.005870,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.279503,0.005870,-0.005249,0.249945,0,0);}
.md7_c00498{transform:matrix(0.279719,0.008392,-0.007497,0.249888,0,0);-ms-transform:matrix(0.279719,0.008392,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.279719,0.008392,-0.007497,0.249888,0,0);}
.mcd_c00498{transform:matrix(0.280088,0.005882,-0.005249,0.249945,0,0);-ms-transform:matrix(0.280088,0.005882,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.280088,0.005882,-0.005249,0.249945,0,0);}
.m14_c00498{transform:matrix(0.280728,0.005895,-0.005249,0.249945,0,0);-ms-transform:matrix(0.280728,0.005895,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.280728,0.005895,-0.005249,0.249945,0,0);}
.m3c_c00498{transform:matrix(0.281433,0.005910,-0.005249,0.249945,0,0);-ms-transform:matrix(0.281433,0.005910,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.281433,0.005910,-0.005249,0.249945,0,0);}
.mf5_c00498{transform:matrix(0.281739,0.005635,-0.004999,0.249950,0,0);-ms-transform:matrix(0.281739,0.005635,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.281739,0.005635,-0.004999,0.249950,0,0);}
.mb3_c00498{transform:matrix(0.282373,0.005930,-0.005249,0.249945,0,0);-ms-transform:matrix(0.282373,0.005930,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.282373,0.005930,-0.005249,0.249945,0,0);}
.m95_c00498{transform:matrix(0.282618,0.005935,-0.005249,0.249945,0,0);-ms-transform:matrix(0.282618,0.005935,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.282618,0.005935,-0.005249,0.249945,0,0);}
.m87_c00498{transform:matrix(0.284847,0.005982,-0.005249,0.249945,0,0);-ms-transform:matrix(0.284847,0.005982,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.284847,0.005982,-0.005249,0.249945,0,0);}
.m92_c00498{transform:matrix(0.284987,0.005985,-0.005249,0.249945,0,0);-ms-transform:matrix(0.284987,0.005985,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.284987,0.005985,-0.005249,0.249945,0,0);}
.mb8_c00498{transform:matrix(0.285927,0.006004,-0.005249,0.249945,0,0);-ms-transform:matrix(0.285927,0.006004,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.285927,0.006004,-0.005249,0.249945,0,0);}
.mb7_c00498{transform:matrix(0.286732,0.006021,-0.005249,0.249945,0,0);-ms-transform:matrix(0.286732,0.006021,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.286732,0.006021,-0.005249,0.249945,0,0);}
.m99_c00498{transform:matrix(0.289151,0.006072,-0.005249,0.249945,0,0);-ms-transform:matrix(0.289151,0.006072,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.289151,0.006072,-0.005249,0.249945,0,0);}
.m15_c00498{transform:matrix(0.290826,0.006107,-0.005249,0.249945,0,0);-ms-transform:matrix(0.290826,0.006107,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.290826,0.006107,-0.005249,0.249945,0,0);}
.m94_c00498{transform:matrix(0.290831,0.006107,-0.005249,0.249945,0,0);-ms-transform:matrix(0.290831,0.006107,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.290831,0.006107,-0.005249,0.249945,0,0);}
.mf7_c00498{transform:matrix(0.292322,0.005846,-0.004999,0.249950,0,0);-ms-transform:matrix(0.292322,0.005846,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.292322,0.005846,-0.004999,0.249950,0,0);}
.m96_c00498{transform:matrix(0.296680,0.006230,-0.005249,0.249945,0,0);-ms-transform:matrix(0.296680,0.006230,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.296680,0.006230,-0.005249,0.249945,0,0);}
.m18_c00498{transform:matrix(0.300569,0.006312,-0.005249,0.249945,0,0);-ms-transform:matrix(0.300569,0.006312,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.300569,0.006312,-0.005249,0.249945,0,0);}
.mf6_c00498{transform:matrix(0.301440,0.006029,-0.004999,0.249950,0,0);-ms-transform:matrix(0.301440,0.006029,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.301440,0.006029,-0.004999,0.249950,0,0);}
.m1a_c00498{transform:matrix(0.302738,0.006358,-0.005249,0.249945,0,0);-ms-transform:matrix(0.302738,0.006358,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.302738,0.006358,-0.005249,0.249945,0,0);}
.m17_c00498{transform:matrix(0.303553,0.006375,-0.005249,0.249945,0,0);-ms-transform:matrix(0.303553,0.006375,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.303553,0.006375,-0.005249,0.249945,0,0);}
.m9a_c00498{transform:matrix(0.306123,0.006429,-0.005249,0.249945,0,0);-ms-transform:matrix(0.306123,0.006429,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.306123,0.006429,-0.005249,0.249945,0,0);}
.m76_c00498{transform:matrix(0.327673,0.006881,-0.005249,0.249945,0,0);-ms-transform:matrix(0.327673,0.006881,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.327673,0.006881,-0.005249,0.249945,0,0);}
.mdc_c00498{transform:matrix(0.333390,0.010002,-0.007497,0.249888,0,0);-ms-transform:matrix(0.333390,0.010002,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.333390,0.010002,-0.007497,0.249888,0,0);}
.m0_c00498{transform:matrix(0.336001,0.029687,-0.022003,0.249030,0,0);-ms-transform:matrix(0.336001,0.029687,-0.022003,0.249030,0,0);-webkit-transform:matrix(0.336001,0.029687,-0.022003,0.249030,0,0);}
.m9c_c00498{transform:matrix(0.340265,0.007146,-0.005249,0.249945,0,0);-ms-transform:matrix(0.340265,0.007146,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.340265,0.007146,-0.005249,0.249945,0,0);}
.m9b_c00498{transform:matrix(0.355642,0.007468,-0.005249,0.249945,0,0);-ms-transform:matrix(0.355642,0.007468,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.355642,0.007468,-0.005249,0.249945,0,0);}
.m75_c00498{transform:matrix(0.369189,0.007753,-0.005249,0.249945,0,0);-ms-transform:matrix(0.369189,0.007753,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.369189,0.007753,-0.005249,0.249945,0,0);}
.m2b_c00498{transform:matrix(0.374352,0.007861,-0.005249,0.249945,0,0);-ms-transform:matrix(0.374352,0.007861,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.374352,0.007861,-0.005249,0.249945,0,0);}
.mfa_c00498{transform:matrix(0.451175,0.009023,-0.004999,0.249950,0,0);-ms-transform:matrix(0.451175,0.009023,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.451175,0.009023,-0.004999,0.249950,0,0);}
.mfb_c00498{transform:matrix(0.463132,0.009263,-0.004999,0.249950,0,0);-ms-transform:matrix(0.463132,0.009263,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.463132,0.009263,-0.004999,0.249950,0,0);}
.md6_c00498{transform:matrix(0.571698,0.017151,-0.007497,0.249888,0,0);-ms-transform:matrix(0.571698,0.017151,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.571698,0.017151,-0.007497,0.249888,0,0);}
.mf3_c00498{transform:matrix(3.445595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.445595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.445595,0.000000,0.000000,0.250000,0,0);}
.v0_c00498{vertical-align:0.000000px;}
.ls0_c00498{letter-spacing:0.000000px;}
.sc__c00498{text-shadow:none;}
.sc0_c00498{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__c00498{-webkit-text-stroke:0px transparent;}
.sc0_c00498{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00498{word-spacing:0.000000px;}
.fc0_c00498{color:transparent;}
.fsd_c00498{font-size:24.000000px;}
.fse_c00498{font-size:66.013199px;}
.fs3_c00498{font-size:66.014551px;}
.fs10_c00498{font-size:72.000000px;}
.fs1_c00498{font-size:72.005184px;}
.fs5_c00498{font-size:72.015874px;}
.fsa_c00498{font-size:72.032393px;}
.fs11_c00498{font-size:78.000000px;}
.fs6_c00498{font-size:78.017197px;}
.fsc_c00498{font-size:83.964587px;}
.fs12_c00498{font-size:83.997354px;}
.fs7_c00498{font-size:84.018520px;}
.fs4_c00498{font-size:90.019843px;}
.fsb_c00498{font-size:90.040491px;}
.fs2_c00498{font-size:96.006912px;}
.fsf_c00498{font-size:96.019198px;}
.fs8_c00498{font-size:96.021166px;}
.fs9_c00498{font-size:108.023811px;}
.fs0_c00498{font-size:143.982719px;}
.y0_c00498{bottom:0.000000px;}
.y11d_c00498{bottom:101.106606px;}
.y11c_c00498{bottom:103.046940px;}
.y11b_c00498{bottom:106.514646px;}
.y11a_c00498{bottom:107.948298px;}
.y119_c00498{bottom:111.344790px;}
.y118_c00498{bottom:113.784612px;}
.y117_c00498{bottom:115.195428px;}
.y116_c00498{bottom:117.599676px;}
.y115_c00498{bottom:119.017092px;}
.y114_c00498{bottom:122.874000px;}
.y112_c00498{bottom:152.014500px;}
.y111_c00498{bottom:152.340000px;}
.y110_c00498{bottom:152.553000px;}
.y10f_c00498{bottom:153.007500px;}
.y10e_c00498{bottom:153.450000px;}
.y10d_c00498{bottom:154.209000px;}
.y10c_c00498{bottom:154.530000px;}
.y10b_c00498{bottom:154.873500px;}
.y10a_c00498{bottom:155.200500px;}
.y109_c00498{bottom:155.791500px;}
.y108_c00498{bottom:181.617000px;}
.y113_c00498{bottom:209.797500px;}
.y107_c00498{bottom:214.776720px;}
.y106_c00498{bottom:215.436030px;}
.y105_c00498{bottom:216.787050px;}
.y100_c00498{bottom:221.635860px;}
.yff_c00498{bottom:222.765540px;}
.y104_c00498{bottom:222.929190px;}
.yfe_c00498{bottom:223.413510px;}
.y103_c00498{bottom:224.046450px;}
.yfd_c00498{bottom:224.066010px;}
.y102_c00498{bottom:225.121050px;}
.yfc_c00498{bottom:225.391980px;}
.y101_c00498{bottom:225.997080px;}
.yfb_c00498{bottom:227.799570px;}
.yfa_c00498{bottom:229.116570px;}
.yf9_c00498{bottom:229.501500px;}
.yf8_c00498{bottom:258.130500px;}
.yf7_c00498{bottom:264.364974px;}
.yf6_c00498{bottom:268.509948px;}
.yf5_c00498{bottom:269.636895px;}
.yf4_c00498{bottom:270.803622px;}
.yf3_c00498{bottom:273.783399px;}
.yf2_c00498{bottom:276.051420px;}
.yf1_c00498{bottom:277.215648px;}
.yf0_c00498{bottom:280.544061px;}
.yef_c00498{bottom:284.240847px;}
.yee_c00498{bottom:285.669000px;}
.yed_c00498{bottom:300.573615px;}
.yec_c00498{bottom:301.365255px;}
.yeb_c00498{bottom:302.437455px;}
.yea_c00498{bottom:304.822440px;}
.ye9_c00498{bottom:305.640480px;}
.ye8_c00498{bottom:306.423915px;}
.ye7_c00498{bottom:308.824290px;}
.ye6_c00498{bottom:310.635480px;}
.ye5_c00498{bottom:311.984220px;}
.ye4_c00498{bottom:314.315565px;}
.ye3_c00498{bottom:315.110445px;}
.ye2_c00498{bottom:316.159920px;}
.ye1_c00498{bottom:338.073510px;}
.ye0_c00498{bottom:340.087710px;}
.ydf_c00498{bottom:340.699710px;}
.yde_c00498{bottom:341.064210px;}
.ydd_c00498{bottom:343.414605px;}
.ydc_c00498{bottom:344.066925px;}
.ydb_c00498{bottom:348.032280px;}
.yda_c00498{bottom:349.347945px;}
.yd9_c00498{bottom:351.297975px;}
.yd8_c00498{bottom:352.978545px;}
.yd7_c00498{bottom:353.982000px;}
.yd6_c00498{bottom:374.368413px;}
.yd5_c00498{bottom:385.488936px;}
.yd4_c00498{bottom:386.508719px;}
.yd3_c00498{bottom:407.808797px;}
.yd2_c00498{bottom:410.845635px;}
.yd1_c00498{bottom:411.702131px;}
.yd0_c00498{bottom:414.709931px;}
.ycf_c00498{bottom:416.405987px;}
.yce_c00498{bottom:419.138238px;}
.ycd_c00498{bottom:419.935019px;}
.ycc_c00498{bottom:421.613490px;}
.ycb_c00498{bottom:423.510390px;}
.yca_c00498{bottom:446.416862px;}
.yc9_c00498{bottom:448.057014px;}
.yc8_c00498{bottom:448.901804px;}
.yc7_c00498{bottom:451.399743px;}
.yc6_c00498{bottom:452.785290px;}
.yc5_c00498{bottom:453.607518px;}
.yc4_c00498{bottom:455.276835px;}
.yc3_c00498{bottom:456.086582px;}
.yc2_c00498{bottom:458.807127px;}
.yc1_c00498{bottom:459.638226px;}
.yc0_c00498{bottom:461.290652px;}
.ybf_c00498{bottom:462.665910px;}
.ybe_c00498{bottom:482.819487px;}
.ybd_c00498{bottom:486.103362px;}
.ybc_c00498{bottom:487.492859px;}
.ybb_c00498{bottom:487.946081px;}
.yba_c00498{bottom:489.336963px;}
.yb9_c00498{bottom:490.249991px;}
.yb8_c00498{bottom:492.788103px;}
.yb7_c00498{bottom:493.958549px;}
.yb6_c00498{bottom:495.075161px;}
.yb5_c00498{bottom:520.063314px;}
.yb4_c00498{bottom:520.800969px;}
.yb3_c00498{bottom:521.856623px;}
.yb2_c00498{bottom:524.162906px;}
.yb1_c00498{bottom:527.791992px;}
.yb0_c00498{bottom:529.000140px;}
.yaf_c00498{bottom:530.454566px;}
.yae_c00498{bottom:549.432059px;}
.yad_c00498{bottom:550.034468px;}
.yac_c00498{bottom:551.816184px;}
.yab_c00498{bottom:552.435032px;}
.yaa_c00498{bottom:553.062593px;}
.ya9_c00498{bottom:554.244200px;}
.ya8_c00498{bottom:554.827083px;}
.ya7_c00498{bottom:556.607256px;}
.ya6_c00498{bottom:557.196837px;}
.ya5_c00498{bottom:559.262432px;}
.ya4_c00498{bottom:560.142336px;}
.ya3_c00498{bottom:561.967041px;}
.ya2_c00498{bottom:563.737473px;}
.ya1_c00498{bottom:566.647594px;}
.ya0_c00498{bottom:591.126258px;}
.y9f_c00498{bottom:591.589929px;}
.y9e_c00498{bottom:593.570370px;}
.y9d_c00498{bottom:595.567676px;}
.y9c_c00498{bottom:596.242902px;}
.y9b_c00498{bottom:597.127814px;}
.y9a_c00498{bottom:599.326791px;}
.y99_c00498{bottom:600.643421px;}
.y98_c00498{bottom:601.950537px;}
.y97_c00498{bottom:602.593641px;}
.y96_c00498{bottom:603.905168px;}
.y95_c00498{bottom:624.574527px;}
.y94_c00498{bottom:625.440212px;}
.y93_c00498{bottom:628.319865px;}
.y92_c00498{bottom:630.954510px;}
.y91_c00498{bottom:631.413645px;}
.y90_c00498{bottom:633.160197px;}
.y8f_c00498{bottom:634.034135px;}
.y8e_c00498{bottom:634.682543px;}
.y8d_c00498{bottom:636.855017px;}
.y8c_c00498{bottom:660.217334px;}
.y8b_c00498{bottom:662.006687px;}
.y8a_c00498{bottom:664.200120px;}
.y89_c00498{bottom:664.859049px;}
.y88_c00498{bottom:667.057680px;}
.y87_c00498{bottom:668.626815px;}
.y86_c00498{bottom:669.936546px;}
.y85_c00498{bottom:670.377632px;}
.y84_c00498{bottom:671.469885px;}
.y83_c00498{bottom:672.771257px;}
.y82_c00498{bottom:694.090739px;}
.y81_c00498{bottom:697.955918px;}
.y80_c00498{bottom:698.875913px;}
.y7f_c00498{bottom:701.544672px;}
.y7e_c00498{bottom:703.015059px;}
.y7d_c00498{bottom:705.730638px;}
.y7c_c00498{bottom:707.791677px;}
.y7b_c00498{bottom:708.695946px;}
.y7a_c00498{bottom:710.410562px;}
.y79_c00498{bottom:711.930792px;}
.y78_c00498{bottom:732.440414px;}
.y77_c00498{bottom:732.916926px;}
.y76_c00498{bottom:733.589709px;}
.y75_c00498{bottom:734.246316px;}
.y74_c00498{bottom:734.923679px;}
.y73_c00498{bottom:735.409728px;}
.y72_c00498{bottom:736.746431px;}
.y71_c00498{bottom:737.064171px;}
.y70_c00498{bottom:738.375401px;}
.y6f_c00498{bottom:738.876693px;}
.y6e_c00498{bottom:739.224845px;}
.y6d_c00498{bottom:740.362997px;}
.y6c_c00498{bottom:740.852661px;}
.y6b_c00498{bottom:741.662188px;}
.y6a_c00498{bottom:742.171506px;}
.y69_c00498{bottom:766.739846px;}
.y68_c00498{bottom:768.254513px;}
.y67_c00498{bottom:768.998233px;}
.y66_c00498{bottom:769.755725px;}
.y65_c00498{bottom:771.634668px;}
.y64_c00498{bottom:772.162880px;}
.y63_c00498{bottom:772.552196px;}
.y62_c00498{bottom:773.103544px;}
.y61_c00498{bottom:774.247032px;}
.y60_c00498{bottom:774.788687px;}
.y5f_c00498{bottom:776.101338px;}
.y5e_c00498{bottom:777.033947px;}
.y5d_c00498{bottom:777.776124px;}
.y5c_c00498{bottom:803.281340px;}
.y5b_c00498{bottom:804.542983px;}
.y5a_c00498{bottom:806.163210px;}
.y59_c00498{bottom:806.680350px;}
.y58_c00498{bottom:808.084797px;}
.y57_c00498{bottom:809.856659px;}
.y56_c00498{bottom:811.442422px;}
.y55_c00498{bottom:812.117100px;}
.y54_c00498{bottom:813.165685px;}
.y53_c00498{bottom:838.896688px;}
.y52_c00498{bottom:840.679989px;}
.y51_c00498{bottom:841.194408px;}
.y50_c00498{bottom:842.629892px;}
.y4f_c00498{bottom:843.126528px;}
.y4e_c00498{bottom:844.012973px;}
.y4d_c00498{bottom:845.277231px;}
.y4c_c00498{bottom:846.308034px;}
.y4b_c00498{bottom:846.835120px;}
.y4a_c00498{bottom:848.576670px;}
.y49_c00498{bottom:849.115499px;}
.y48_c00498{bottom:874.845768px;}
.y47_c00498{bottom:876.033046px;}
.y46_c00498{bottom:877.835232px;}
.y45_c00498{bottom:879.179708px;}
.y44_c00498{bottom:880.156776px;}
.y43_c00498{bottom:881.643918px;}
.y42_c00498{bottom:881.982690px;}
.y41_c00498{bottom:883.433153px;}
.y40_c00498{bottom:883.788258px;}
.y3f_c00498{bottom:884.761156px;}
.y3e_c00498{bottom:910.110674px;}
.y3d_c00498{bottom:911.661007px;}
.y3c_c00498{bottom:912.416724px;}
.y3b_c00498{bottom:913.354644px;}
.y3a_c00498{bottom:914.594747px;}
.y39_c00498{bottom:915.051789px;}
.y38_c00498{bottom:915.675370px;}
.y37_c00498{bottom:916.741937px;}
.y36_c00498{bottom:917.195994px;}
.y35_c00498{bottom:918.125657px;}
.y34_c00498{bottom:919.328244px;}
.y33_c00498{bottom:946.945197px;}
.y32_c00498{bottom:947.965754px;}
.y31_c00498{bottom:948.440648px;}
.y30_c00498{bottom:949.275762px;}
.y2f_c00498{bottom:949.619051px;}
.y2e_c00498{bottom:950.761372px;}
.y2d_c00498{bottom:951.251194px;}
.y2c_c00498{bottom:951.634514px;}
.y2b_c00498{bottom:952.746834px;}
.y2a_c00498{bottom:953.735814px;}
.y29_c00498{bottom:954.221466px;}
.y28_c00498{bottom:954.718274px;}
.y27_c00498{bottom:955.678568px;}
.y26_c00498{bottom:956.325732px;}
.y25_c00498{bottom:980.724956px;}
.y24_c00498{bottom:981.287345px;}
.y23_c00498{bottom:981.719317px;}
.y22_c00498{bottom:983.159994px;}
.y21_c00498{bottom:983.879498px;}
.y20_c00498{bottom:984.898266px;}
.y1f_c00498{bottom:986.028542px;}
.y1e_c00498{bottom:986.456187px;}
.y1d_c00498{bottom:987.731082px;}
.y1c_c00498{bottom:988.734072px;}
.y1b_c00498{bottom:1016.671439px;}
.y1a_c00498{bottom:1017.602988px;}
.y19_c00498{bottom:1019.901228px;}
.y18_c00498{bottom:1022.469990px;}
.y17_c00498{bottom:1023.383490px;}
.y16_c00498{bottom:1025.219562px;}
.y15_c00498{bottom:1026.389220px;}
.y14_c00498{bottom:1027.086000px;}
.y13_c00498{bottom:1060.143222px;}
.y12_c00498{bottom:1061.102826px;}
.y11_c00498{bottom:1061.543862px;}
.y10_c00498{bottom:1062.474816px;}
.yf_c00498{bottom:1063.085922px;}
.ye_c00498{bottom:1063.528290px;}
.yd_c00498{bottom:1086.206388px;}
.yc_c00498{bottom:1087.053288px;}
.yb_c00498{bottom:1087.458450px;}
.ya_c00498{bottom:1088.249100px;}
.y9_c00498{bottom:1089.451410px;}
.y8_c00498{bottom:1089.843540px;}
.y7_c00498{bottom:1090.646736px;}
.y6_c00498{bottom:1091.304564px;}
.y5_c00498{bottom:1092.222042px;}
.y4_c00498{bottom:1092.740568px;}
.y3_c00498{bottom:1093.783614px;}
.y2_c00498{bottom:1094.311500px;}
.y1_c00498{bottom:1171.158000px;}
.hf_c00498{height:24.000000px;}
.h10_c00498{height:66.013199px;}
.h5_c00498{height:66.014551px;}
.h12_c00498{height:72.000000px;}
.h3_c00498{height:72.005184px;}
.h7_c00498{height:72.015874px;}
.hc_c00498{height:72.032393px;}
.h13_c00498{height:78.000000px;}
.h8_c00498{height:78.017197px;}
.he_c00498{height:83.964587px;}
.h14_c00498{height:83.997354px;}
.h9_c00498{height:84.018520px;}
.h6_c00498{height:90.019843px;}
.hd_c00498{height:90.040491px;}
.h4_c00498{height:96.006912px;}
.h11_c00498{height:96.019198px;}
.ha_c00498{height:96.021166px;}
.hb_c00498{height:108.023811px;}
.h2_c00498{height:143.982719px;}
.h0_c00498{height:1246.320000px;}
.h1_c00498{height:1246.500000px;}
.w0_c00498{width:896.100000px;}
.w1_c00498{width:896.250000px;}
.x0_c00498{left:0.000000px;}
.xc4_c00498{left:142.972500px;}
.xb9_c00498{left:146.880000px;}
.xbe_c00498{left:148.681320px;}
.x9e_c00498{left:150.037568px;}
.x8d_c00498{left:151.417514px;}
.x69_c00498{left:153.634824px;}
.x4c_c00498{left:155.322198px;}
.x38_c00498{left:157.186215px;}
.x1b_c00498{left:158.563791px;}
.x22_c00498{left:159.924116px;}
.x2_c00498{left:161.019000px;}
.xba_c00498{left:172.740000px;}
.x58_c00498{left:188.504267px;}
.x3f_c00498{left:190.297772px;}
.xe_c00498{left:192.405366px;}
.x4d_c00498{left:198.953352px;}
.x23_c00498{left:203.104065px;}
.x3_c00498{left:205.009500px;}
.xa6_c00498{left:206.738463px;}
.x64_c00498{left:210.745076px;}
.x8e_c00498{left:217.531628px;}
.x6a_c00498{left:218.677679px;}
.x39_c00498{left:222.022874px;}
.x9f_c00498{left:225.931205px;}
.xc5_c00498{left:234.771000px;}
.xf_c00498{left:236.079822px;}
.x59_c00498{left:242.488571px;}
.x2e_c00498{left:244.925237px;}
.xbf_c00498{left:246.212820px;}
.x7a_c00498{left:250.820585px;}
.x4e_c00498{left:253.796451px;}
.xa8_c00498{left:258.264000px;}
.x82_c00498{left:260.906910px;}
.x73_c00498{left:262.917486px;}
.x47_c00498{left:264.348438px;}
.x13_c00498{left:267.849000px;}
.xc2_c00498{left:268.920000px;}
.x96_c00498{left:271.833606px;}
.x6b_c00498{left:273.262313px;}
.x5a_c00498{left:275.167197px;}
.x4_c00498{left:291.930000px;}
.xa0_c00498{left:293.067066px;}
.x6c_c00498{left:295.338285px;}
.x40_c00498{left:299.168706px;}
.x14_c00498{left:301.029000px;}
.x10_c00498{left:302.532720px;}
.x97_c00498{left:305.049803px;}
.x65_c00498{left:307.727354px;}
.x2f_c00498{left:311.347502px;}
.x7b_c00498{left:316.208471px;}
.xcb_c00498{left:321.764487px;}
.xb0_c00498{left:323.489850px;}
.xa1_c00498{left:324.934889px;}
.x83_c00498{left:326.490657px;}
.x4f_c00498{left:331.024440px;}
.x24_c00498{left:332.703914px;}
.x11_c00498{left:334.034964px;}
.x5_c00498{left:335.140500px;}
.x74_c00498{left:339.054593px;}
.x3a_c00498{left:342.446057px;}
.x30_c00498{left:343.759758px;}
.xc3_c00498{left:344.790000px;}
.xa9_c00498{left:347.731500px;}
.x5b_c00498{left:351.088773px;}
.xcc_c00498{left:353.796423px;}
.x15_c00498{left:356.727000px;}
.x6d_c00498{left:360.850671px;}
.x48_c00498{left:363.442833px;}
.x3b_c00498{left:365.080923px;}
.x1c_c00498{left:366.719256px;}
.x5c_c00498{left:374.313203px;}
.xc6_c00498{left:377.058000px;}
.xbb_c00498{left:378.216000px;}
.xb1_c00498{left:379.707975px;}
.x7c_c00498{left:382.049357px;}
.x66_c00498{left:384.076746px;}
.x1_c00498{left:388.240500px;}
.x84_c00498{left:394.087152px;}
.x41_c00498{left:396.578444px;}
.x25_c00498{left:398.592198px;}
.x12_c00498{left:402.625326px;}
.x5d_c00498{left:407.759924px;}
.xcd_c00498{left:409.191472px;}
.x6_c00498{left:411.597000px;}
.xaa_c00498{left:412.732500px;}
.x98_c00498{left:413.876168px;}
.x31_c00498{left:419.916941px;}
.xc7_c00498{left:421.347000px;}
.x92_c00498{left:425.227622px;}
.x75_c00498{left:426.368420px;}
.x50_c00498{left:430.134756px;}
.xb5_c00498{left:433.242630px;}
.xa2_c00498{left:434.247222px;}
.x8f_c00498{left:437.371497px;}
.x6e_c00498{left:439.287309px;}
.x16_c00498{left:444.159000px;}
.x99_c00498{left:446.289959px;}
.x76_c00498{left:449.303892px;}
.x1d_c00498{left:453.699372px;}
.xb2_c00498{left:455.144520px;}
.xab_c00498{left:456.588000px;}
.x51_c00498{left:462.606497px;}
.x32_c00498{left:464.474993px;}
.x7_c00498{left:466.416000px;}
.x26_c00498{left:472.712022px;}
.x49_c00498{left:474.185957px;}
.x42_c00498{left:475.575228px;}
.xbc_c00498{left:477.139500px;}
.x52_c00498{left:485.504418px;}
.x17_c00498{left:487.659000px;}
.x7d_c00498{left:491.979156px;}
.x5e_c00498{left:495.210449px;}
.x33_c00498{left:497.172312px;}
.x27_c00498{left:498.254235px;}
.xb6_c00498{left:499.882424px;}
.xa3_c00498{left:502.077521px;}
.x85_c00498{left:503.192418px;}
.xbd_c00498{left:509.538000px;}
.x93_c00498{left:513.042122px;}
.x53_c00498{left:516.588533px;}
.xce_c00498{left:518.857696px;}
.xc8_c00498{left:520.671000px;}
.x86_c00498{left:525.050678px;}
.x3c_c00498{left:529.302087px;}
.x28_c00498{left:530.940362px;}
.x1e_c00498{left:532.011008px;}
.x8_c00498{left:533.349000px;}
.x7e_c00498{left:536.261601px;}
.x67_c00498{left:539.103216px;}
.x90_c00498{left:542.192292px;}
.x9a_c00498{left:545.926580px;}
.x6f_c00498{left:549.200609px;}
.xb3_c00498{left:555.175020px;}
.x43_c00498{left:561.945269px;}
.x9_c00498{left:566.026500px;}
.x7f_c00498{left:570.058826px;}
.x94_c00498{left:579.208622px;}
.x77_c00498{left:581.051664px;}
.x70_c00498{left:582.150302px;}
.x34_c00498{left:585.737822px;}
.x1f_c00498{left:587.353800px;}
.xac_c00498{left:588.766500px;}
.x87_c00498{left:590.955362px;}
.x4a_c00498{left:594.345588px;}
.xcf_c00498{left:597.590385px;}
.x9b_c00498{left:601.328918px;}
.x5f_c00498{left:605.507340px;}
.x29_c00498{left:607.131969px;}
.x18_c00498{left:609.981000px;}
.x88_c00498{left:612.566153px;}
.x3d_c00498{left:618.978896px;}
.xa4_c00498{left:622.367409px;}
.x91_c00498{left:623.729091px;}
.x54_c00498{left:627.071294px;}
.x2a_c00498{left:630.053367px;}
.x60_c00498{left:637.870904px;}
.xd0_c00498{left:641.644786px;}
.x44_c00498{left:651.668187px;}
.x35_c00498{left:652.767681px;}
.xb7_c00498{left:654.828822px;}
.x89_c00498{left:656.327640px;}
.xa_c00498{left:666.219000px;}
.x80_c00498{left:669.956436px;}
.x55_c00498{left:671.646042px;}
.xc0_c00498{left:676.733820px;}
.x8a_c00498{left:679.565711px;}
.x45_c00498{left:683.810558px;}
.x2b_c00498{left:685.684860px;}
.xad_c00498{left:688.857000px;}
.x71_c00498{left:691.816101px;}
.x4b_c00498{left:695.652735px;}
.x20_c00498{left:698.118885px;}
.x9c_c00498{left:701.270039px;}
.x8b_c00498{left:702.460313px;}
.x36_c00498{left:706.762119px;}
.xc1_c00498{left:709.699320px;}
.x56_c00498{left:715.350696px;}
.x2c_c00498{left:717.302829px;}
.x19_c00498{left:719.421000px;}
.xae_c00498{left:721.407000px;}
.x78_c00498{left:725.038188px;}
.x61_c00498{left:726.761586px;}
.xb_c00498{left:732.106500px;}
.xc9_c00498{left:734.400000px;}
.x95_c00498{left:735.583622px;}
.x3e_c00498{left:739.169547px;}
.xca_c00498{left:754.380000px;}
.x1a_c00498{left:763.780500px;}
.xc_c00498{left:765.870000px;}
.x79_c00498{left:768.333602px;}
.x62_c00498{left:771.590225px;}
.x21_c00498{left:774.553705px;}
.xb8_c00498{left:776.617911px;}
.xa5_c00498{left:778.108337px;}
.x72_c00498{left:781.310991px;}
.x2d_c00498{left:785.337897px;}
.xaf_c00498{left:788.547000px;}
.x8c_c00498{left:790.764693px;}
.x81_c00498{left:792.130988px;}
.x46_c00498{left:795.312776px;}
.xb4_c00498{left:798.878805px;}
.x9d_c00498{left:800.663691px;}
.x63_c00498{left:803.356725px;}
.x57_c00498{left:804.485193px;}
.x68_c00498{left:815.231972px;}
.x37_c00498{left:817.532405px;}
.xa7_c00498{left:824.540366px;}
.xd_c00498{left:836.445000px;}
@media print{
.v0_c00498{vertical-align:0.000000pt;}
.ls0_c00498{letter-spacing:0.000000pt;}
.ws0_c00498{word-spacing:0.000000pt;}
.fsd_c00498{font-size:21.333333pt;}
.fse_c00498{font-size:58.678399pt;}
.fs3_c00498{font-size:58.679601pt;}
.fs10_c00498{font-size:64.000000pt;}
.fs1_c00498{font-size:64.004608pt;}
.fs5_c00498{font-size:64.014110pt;}
.fsa_c00498{font-size:64.028794pt;}
.fs11_c00498{font-size:69.333333pt;}
.fs6_c00498{font-size:69.348620pt;}
.fsc_c00498{font-size:74.635188pt;}
.fs12_c00498{font-size:74.664315pt;}
.fs7_c00498{font-size:74.683129pt;}
.fs4_c00498{font-size:80.017638pt;}
.fsb_c00498{font-size:80.035992pt;}
.fs2_c00498{font-size:85.339477pt;}
.fsf_c00498{font-size:85.350398pt;}
.fs8_c00498{font-size:85.352147pt;}
.fs9_c00498{font-size:96.021166pt;}
.fs0_c00498{font-size:127.984639pt;}
.y0_c00498{bottom:0.000000pt;}
.y11d_c00498{bottom:89.872539pt;}
.y11c_c00498{bottom:91.597280pt;}
.y11b_c00498{bottom:94.679685pt;}
.y11a_c00498{bottom:95.954043pt;}
.y119_c00498{bottom:98.973147pt;}
.y118_c00498{bottom:101.141877pt;}
.y117_c00498{bottom:102.395936pt;}
.y116_c00498{bottom:104.533045pt;}
.y115_c00498{bottom:105.792971pt;}
.y114_c00498{bottom:109.221333pt;}
.y112_c00498{bottom:135.124000pt;}
.y111_c00498{bottom:135.413333pt;}
.y110_c00498{bottom:135.602667pt;}
.y10f_c00498{bottom:136.006667pt;}
.y10e_c00498{bottom:136.400000pt;}
.y10d_c00498{bottom:137.074667pt;}
.y10c_c00498{bottom:137.360000pt;}
.y10b_c00498{bottom:137.665333pt;}
.y10a_c00498{bottom:137.956000pt;}
.y109_c00498{bottom:138.481333pt;}
.y108_c00498{bottom:161.437333pt;}
.y113_c00498{bottom:186.486667pt;}
.y107_c00498{bottom:190.912640pt;}
.y106_c00498{bottom:191.498693pt;}
.y105_c00498{bottom:192.699600pt;}
.y100_c00498{bottom:197.009653pt;}
.yff_c00498{bottom:198.013813pt;}
.y104_c00498{bottom:198.159280pt;}
.yfe_c00498{bottom:198.589787pt;}
.y103_c00498{bottom:199.152400pt;}
.yfd_c00498{bottom:199.169787pt;}
.y102_c00498{bottom:200.107600pt;}
.yfc_c00498{bottom:200.348427pt;}
.y101_c00498{bottom:200.886293pt;}
.yfb_c00498{bottom:202.488507pt;}
.yfa_c00498{bottom:203.659173pt;}
.yf9_c00498{bottom:204.001333pt;}
.yf8_c00498{bottom:229.449333pt;}
.yf7_c00498{bottom:234.991088pt;}
.yf6_c00498{bottom:238.675509pt;}
.yf5_c00498{bottom:239.677240pt;}
.yf4_c00498{bottom:240.714331pt;}
.yf3_c00498{bottom:243.363021pt;}
.yf2_c00498{bottom:245.379040pt;}
.yf1_c00498{bottom:246.413909pt;}
.yf0_c00498{bottom:249.372499pt;}
.yef_c00498{bottom:252.658531pt;}
.yee_c00498{bottom:253.928000pt;}
.yed_c00498{bottom:267.176547pt;}
.yec_c00498{bottom:267.880227pt;}
.yeb_c00498{bottom:268.833293pt;}
.yea_c00498{bottom:270.953280pt;}
.ye9_c00498{bottom:271.680427pt;}
.ye8_c00498{bottom:272.376813pt;}
.ye7_c00498{bottom:274.510480pt;}
.ye6_c00498{bottom:276.120427pt;}
.ye5_c00498{bottom:277.319307pt;}
.ye4_c00498{bottom:279.391613pt;}
.ye3_c00498{bottom:280.098173pt;}
.ye2_c00498{bottom:281.031040pt;}
.ye1_c00498{bottom:300.509787pt;}
.ye0_c00498{bottom:302.300187pt;}
.ydf_c00498{bottom:302.844187pt;}
.yde_c00498{bottom:303.168187pt;}
.ydd_c00498{bottom:305.257427pt;}
.ydc_c00498{bottom:305.837267pt;}
.ydb_c00498{bottom:309.362027pt;}
.yda_c00498{bottom:310.531507pt;}
.yd9_c00498{bottom:312.264867pt;}
.yd8_c00498{bottom:313.758707pt;}
.yd7_c00498{bottom:314.650667pt;}
.yd6_c00498{bottom:332.771923pt;}
.yd5_c00498{bottom:342.656832pt;}
.yd4_c00498{bottom:343.563305pt;}
.yd3_c00498{bottom:362.496708pt;}
.yd2_c00498{bottom:365.196120pt;}
.yd1_c00498{bottom:365.957449pt;}
.yd0_c00498{bottom:368.631049pt;}
.ycf_c00498{bottom:370.138655pt;}
.yce_c00498{bottom:372.567323pt;}
.ycd_c00498{bottom:373.275572pt;}
.ycc_c00498{bottom:374.767547pt;}
.ycb_c00498{bottom:376.453680pt;}
.yca_c00498{bottom:396.814988pt;}
.yc9_c00498{bottom:398.272901pt;}
.yc8_c00498{bottom:399.023825pt;}
.yc7_c00498{bottom:401.244216pt;}
.yc6_c00498{bottom:402.475813pt;}
.yc5_c00498{bottom:403.206683pt;}
.yc4_c00498{bottom:404.690520pt;}
.yc3_c00498{bottom:405.410295pt;}
.yc2_c00498{bottom:407.828557pt;}
.yc1_c00498{bottom:408.567312pt;}
.yc0_c00498{bottom:410.036135pt;}
.ybf_c00498{bottom:411.258587pt;}
.ybe_c00498{bottom:429.172877pt;}
.ybd_c00498{bottom:432.091877pt;}
.ybc_c00498{bottom:433.326985pt;}
.ybb_c00498{bottom:433.729849pt;}
.yba_c00498{bottom:434.966189pt;}
.yb9_c00498{bottom:435.777769pt;}
.yb8_c00498{bottom:438.033869pt;}
.yb7_c00498{bottom:439.074265pt;}
.yb6_c00498{bottom:440.066809pt;}
.yb5_c00498{bottom:462.278501pt;}
.yb4_c00498{bottom:462.934195pt;}
.yb3_c00498{bottom:463.872553pt;}
.yb2_c00498{bottom:465.922583pt;}
.yb1_c00498{bottom:469.148437pt;}
.yb0_c00498{bottom:470.222347pt;}
.yaf_c00498{bottom:471.515169pt;}
.yae_c00498{bottom:488.384052pt;}
.yad_c00498{bottom:488.919527pt;}
.yac_c00498{bottom:490.503275pt;}
.yab_c00498{bottom:491.053361pt;}
.yaa_c00498{bottom:491.611193pt;}
.ya9_c00498{bottom:492.661511pt;}
.ya8_c00498{bottom:493.179629pt;}
.ya7_c00498{bottom:494.762005pt;}
.ya6_c00498{bottom:495.286077pt;}
.ya5_c00498{bottom:497.122161pt;}
.ya4_c00498{bottom:497.904299pt;}
.ya3_c00498{bottom:499.526259pt;}
.ya2_c00498{bottom:501.099976pt;}
.ya1_c00498{bottom:503.686751pt;}
.ya0_c00498{bottom:525.445563pt;}
.y9f_c00498{bottom:525.857715pt;}
.y9e_c00498{bottom:527.618107pt;}
.y9d_c00498{bottom:529.393489pt;}
.y9c_c00498{bottom:529.993691pt;}
.y9b_c00498{bottom:530.780279pt;}
.y9a_c00498{bottom:532.734925pt;}
.y99_c00498{bottom:533.905263pt;}
.y98_c00498{bottom:535.067144pt;}
.y97_c00498{bottom:535.638792pt;}
.y96_c00498{bottom:536.804593pt;}
.y95_c00498{bottom:555.177357pt;}
.y94_c00498{bottom:555.946855pt;}
.y93_c00498{bottom:558.506547pt;}
.y92_c00498{bottom:560.848453pt;}
.y91_c00498{bottom:561.256573pt;}
.y90_c00498{bottom:562.809064pt;}
.y8f_c00498{bottom:563.585897pt;}
.y8e_c00498{bottom:564.162260pt;}
.y8d_c00498{bottom:566.093348pt;}
.y8c_c00498{bottom:586.859852pt;}
.y8b_c00498{bottom:588.450388pt;}
.y8a_c00498{bottom:590.400107pt;}
.y89_c00498{bottom:590.985821pt;}
.y88_c00498{bottom:592.940160pt;}
.y87_c00498{bottom:594.334947pt;}
.y86_c00498{bottom:595.499152pt;}
.y85_c00498{bottom:595.891228pt;}
.y84_c00498{bottom:596.862120pt;}
.y83_c00498{bottom:598.018895pt;}
.y82_c00498{bottom:616.969545pt;}
.y81_c00498{bottom:620.405260pt;}
.y80_c00498{bottom:621.223033pt;}
.y7f_c00498{bottom:623.595264pt;}
.y7e_c00498{bottom:624.902275pt;}
.y7d_c00498{bottom:627.316123pt;}
.y7c_c00498{bottom:629.148157pt;}
.y7b_c00498{bottom:629.951952pt;}
.y7a_c00498{bottom:631.476055pt;}
.y79_c00498{bottom:632.827371pt;}
.y78_c00498{bottom:651.058145pt;}
.y77_c00498{bottom:651.481712pt;}
.y76_c00498{bottom:652.079741pt;}
.y75_c00498{bottom:652.663392pt;}
.y74_c00498{bottom:653.265492pt;}
.y73_c00498{bottom:653.697536pt;}
.y72_c00498{bottom:654.885716pt;}
.y71_c00498{bottom:655.168152pt;}
.y70_c00498{bottom:656.333689pt;}
.y6f_c00498{bottom:656.779283pt;}
.y6e_c00498{bottom:657.088751pt;}
.y6d_c00498{bottom:658.100441pt;}
.y6c_c00498{bottom:658.535699pt;}
.y6b_c00498{bottom:659.255279pt;}
.y6a_c00498{bottom:659.708005pt;}
.y69_c00498{bottom:681.546529pt;}
.y68_c00498{bottom:682.892900pt;}
.y67_c00498{bottom:683.553985pt;}
.y66_c00498{bottom:684.227311pt;}
.y65_c00498{bottom:685.897483pt;}
.y64_c00498{bottom:686.367004pt;}
.y63_c00498{bottom:686.713063pt;}
.y62_c00498{bottom:687.203151pt;}
.y61_c00498{bottom:688.219584pt;}
.y60_c00498{bottom:688.701055pt;}
.y5f_c00498{bottom:689.867856pt;}
.y5e_c00498{bottom:690.696841pt;}
.y5d_c00498{bottom:691.356555pt;}
.y5c_c00498{bottom:714.027857pt;}
.y5b_c00498{bottom:715.149319pt;}
.y5a_c00498{bottom:716.589520pt;}
.y59_c00498{bottom:717.049200pt;}
.y58_c00498{bottom:718.297597pt;}
.y57_c00498{bottom:719.872585pt;}
.y56_c00498{bottom:721.282153pt;}
.y55_c00498{bottom:721.881867pt;}
.y54_c00498{bottom:722.813943pt;}
.y53_c00498{bottom:745.685945pt;}
.y52_c00498{bottom:747.271101pt;}
.y51_c00498{bottom:747.728363pt;}
.y50_c00498{bottom:749.004348pt;}
.y4f_c00498{bottom:749.445803pt;}
.y4e_c00498{bottom:750.233753pt;}
.y4d_c00498{bottom:751.357539pt;}
.y4c_c00498{bottom:752.273808pt;}
.y4b_c00498{bottom:752.742329pt;}
.y4a_c00498{bottom:754.290373pt;}
.y49_c00498{bottom:754.769332pt;}
.y48_c00498{bottom:777.640683pt;}
.y47_c00498{bottom:778.696041pt;}
.y46_c00498{bottom:780.297984pt;}
.y45_c00498{bottom:781.493073pt;}
.y44_c00498{bottom:782.361579pt;}
.y43_c00498{bottom:783.683483pt;}
.y42_c00498{bottom:783.984613pt;}
.y41_c00498{bottom:785.273913pt;}
.y40_c00498{bottom:785.589563pt;}
.y3f_c00498{bottom:786.454361pt;}
.y3e_c00498{bottom:808.987265pt;}
.y3d_c00498{bottom:810.365340pt;}
.y3c_c00498{bottom:811.037088pt;}
.y3b_c00498{bottom:811.870795pt;}
.y3a_c00498{bottom:812.973108pt;}
.y39_c00498{bottom:813.379368pt;}
.y38_c00498{bottom:813.933663pt;}
.y37_c00498{bottom:814.881721pt;}
.y36_c00498{bottom:815.285328pt;}
.y35_c00498{bottom:816.111695pt;}
.y34_c00498{bottom:817.180661pt;}
.y33_c00498{bottom:841.729064pt;}
.y32_c00498{bottom:842.636225pt;}
.y31_c00498{bottom:843.058353pt;}
.y30_c00498{bottom:843.800677pt;}
.y2f_c00498{bottom:844.105823pt;}
.y2e_c00498{bottom:845.121220pt;}
.y2d_c00498{bottom:845.556617pt;}
.y2c_c00498{bottom:845.897345pt;}
.y2b_c00498{bottom:846.886075pt;}
.y2a_c00498{bottom:847.765168pt;}
.y29_c00498{bottom:848.196859pt;}
.y28_c00498{bottom:848.638465pt;}
.y27_c00498{bottom:849.492060pt;}
.y26_c00498{bottom:850.067317pt;}
.y25_c00498{bottom:871.755516pt;}
.y24_c00498{bottom:872.255417pt;}
.y23_c00498{bottom:872.639393pt;}
.y22_c00498{bottom:873.919995pt;}
.y21_c00498{bottom:874.559553pt;}
.y20_c00498{bottom:875.465125pt;}
.y1f_c00498{bottom:876.469815pt;}
.y1e_c00498{bottom:876.849944pt;}
.y1d_c00498{bottom:877.983184pt;}
.y1c_c00498{bottom:878.874731pt;}
.y1b_c00498{bottom:903.707945pt;}
.y1a_c00498{bottom:904.535989pt;}
.y19_c00498{bottom:906.578869pt;}
.y18_c00498{bottom:908.862213pt;}
.y17_c00498{bottom:909.674213pt;}
.y16_c00498{bottom:911.306277pt;}
.y15_c00498{bottom:912.345973pt;}
.y14_c00498{bottom:912.965333pt;}
.y13_c00498{bottom:942.349531pt;}
.y12_c00498{bottom:943.202512pt;}
.y11_c00498{bottom:943.594544pt;}
.y10_c00498{bottom:944.422059pt;}
.yf_c00498{bottom:944.965264pt;}
.ye_c00498{bottom:945.358480pt;}
.yd_c00498{bottom:965.516789pt;}
.yc_c00498{bottom:966.269589pt;}
.yb_c00498{bottom:966.629733pt;}
.ya_c00498{bottom:967.332533pt;}
.y9_c00498{bottom:968.401253pt;}
.y8_c00498{bottom:968.749813pt;}
.y7_c00498{bottom:969.463765pt;}
.y6_c00498{bottom:970.048501pt;}
.y5_c00498{bottom:970.864037pt;}
.y4_c00498{bottom:971.324949pt;}
.y3_c00498{bottom:972.252101pt;}
.y2_c00498{bottom:972.721333pt;}
.y1_c00498{bottom:1041.029333pt;}
.hf_c00498{height:21.333333pt;}
.h10_c00498{height:58.678399pt;}
.h5_c00498{height:58.679601pt;}
.h12_c00498{height:64.000000pt;}
.h3_c00498{height:64.004608pt;}
.h7_c00498{height:64.014110pt;}
.hc_c00498{height:64.028794pt;}
.h13_c00498{height:69.333333pt;}
.h8_c00498{height:69.348620pt;}
.he_c00498{height:74.635188pt;}
.h14_c00498{height:74.664315pt;}
.h9_c00498{height:74.683129pt;}
.h6_c00498{height:80.017638pt;}
.hd_c00498{height:80.035992pt;}
.h4_c00498{height:85.339477pt;}
.h11_c00498{height:85.350398pt;}
.ha_c00498{height:85.352147pt;}
.hb_c00498{height:96.021166pt;}
.h2_c00498{height:127.984639pt;}
.h0_c00498{height:1107.840000pt;}
.h1_c00498{height:1108.000000pt;}
.w0_c00498{width:796.533333pt;}
.w1_c00498{width:796.666667pt;}
.x0_c00498{left:0.000000pt;}
.xc4_c00498{left:127.086667pt;}
.xb9_c00498{left:130.560000pt;}
.xbe_c00498{left:132.161173pt;}
.x9e_c00498{left:133.366727pt;}
.x8d_c00498{left:134.593345pt;}
.x69_c00498{left:136.564288pt;}
.x4c_c00498{left:138.064176pt;}
.x38_c00498{left:139.721080pt;}
.x1b_c00498{left:140.945592pt;}
.x22_c00498{left:142.154769pt;}
.x2_c00498{left:143.128000pt;}
.xba_c00498{left:153.546667pt;}
.x58_c00498{left:167.559348pt;}
.x3f_c00498{left:169.153575pt;}
.xe_c00498{left:171.026992pt;}
.x4d_c00498{left:176.847424pt;}
.x23_c00498{left:180.536947pt;}
.x3_c00498{left:182.230667pt;}
.xa6_c00498{left:183.767523pt;}
.x64_c00498{left:187.328956pt;}
.x8e_c00498{left:193.361447pt;}
.x6a_c00498{left:194.380159pt;}
.x39_c00498{left:197.353665pt;}
.x9f_c00498{left:200.827737pt;}
.xc5_c00498{left:208.685333pt;}
.xf_c00498{left:209.848731pt;}
.x59_c00498{left:215.545396pt;}
.x2e_c00498{left:217.711321pt;}
.xbf_c00498{left:218.855840pt;}
.x7a_c00498{left:222.951631pt;}
.x4e_c00498{left:225.596845pt;}
.xa8_c00498{left:229.568000pt;}
.x82_c00498{left:231.917253pt;}
.x73_c00498{left:233.704432pt;}
.x47_c00498{left:234.976389pt;}
.x13_c00498{left:238.088000pt;}
.xc2_c00498{left:239.040000pt;}
.x96_c00498{left:241.629872pt;}
.x6b_c00498{left:242.899833pt;}
.x5a_c00498{left:244.593064pt;}
.x4_c00498{left:259.493333pt;}
.xa0_c00498{left:260.504059pt;}
.x6c_c00498{left:262.522920pt;}
.x40_c00498{left:265.927739pt;}
.x14_c00498{left:267.581333pt;}
.x10_c00498{left:268.917973pt;}
.x97_c00498{left:271.155380pt;}
.x65_c00498{left:273.535425pt;}
.x2f_c00498{left:276.753335pt;}
.x7b_c00498{left:281.074196pt;}
.xcb_c00498{left:286.012877pt;}
.xb0_c00498{left:287.546533pt;}
.xa1_c00498{left:288.831012pt;}
.x83_c00498{left:290.213917pt;}
.x4f_c00498{left:294.243947pt;}
.x24_c00498{left:295.736812pt;}
.x11_c00498{left:296.919968pt;}
.x5_c00498{left:297.902667pt;}
.x74_c00498{left:301.381860pt;}
.x3a_c00498{left:304.396495pt;}
.x30_c00498{left:305.564229pt;}
.xc3_c00498{left:306.480000pt;}
.xa9_c00498{left:309.094667pt;}
.x5b_c00498{left:312.078909pt;}
.xcc_c00498{left:314.485709pt;}
.x15_c00498{left:317.090667pt;}
.x6d_c00498{left:320.756152pt;}
.x48_c00498{left:323.060296pt;}
.x3b_c00498{left:324.516376pt;}
.x1c_c00498{left:325.972672pt;}
.x5c_c00498{left:332.722847pt;}
.xc6_c00498{left:335.162667pt;}
.xbb_c00498{left:336.192000pt;}
.xb1_c00498{left:337.518200pt;}
.x7c_c00498{left:339.599428pt;}
.x66_c00498{left:341.401552pt;}
.x1_c00498{left:345.102667pt;}
.x84_c00498{left:350.299691pt;}
.x41_c00498{left:352.514172pt;}
.x25_c00498{left:354.304176pt;}
.x12_c00498{left:357.889179pt;}
.x5d_c00498{left:362.453265pt;}
.xcd_c00498{left:363.725753pt;}
.x6_c00498{left:365.864000pt;}
.xaa_c00498{left:366.873333pt;}
.x98_c00498{left:367.889927pt;}
.x31_c00498{left:373.259503pt;}
.xc7_c00498{left:374.530667pt;}
.x92_c00498{left:377.980108pt;}
.x75_c00498{left:378.994151pt;}
.x50_c00498{left:382.342005pt;}
.xb5_c00498{left:385.104560pt;}
.xa2_c00498{left:385.997531pt;}
.x8f_c00498{left:388.774664pt;}
.x6e_c00498{left:390.477608pt;}
.x16_c00498{left:394.808000pt;}
.x99_c00498{left:396.702185pt;}
.x76_c00498{left:399.381237pt;}
.x1d_c00498{left:403.288331pt;}
.xb2_c00498{left:404.572907pt;}
.xab_c00498{left:405.856000pt;}
.x51_c00498{left:411.205775pt;}
.x32_c00498{left:412.866660pt;}
.x7_c00498{left:414.592000pt;}
.x26_c00498{left:420.188464pt;}
.x49_c00498{left:421.498628pt;}
.x42_c00498{left:422.733536pt;}
.xbc_c00498{left:424.124000pt;}
.x52_c00498{left:431.559483pt;}
.x17_c00498{left:433.474667pt;}
.x7d_c00498{left:437.314805pt;}
.x5e_c00498{left:440.187065pt;}
.x33_c00498{left:441.930944pt;}
.x27_c00498{left:442.892653pt;}
.xb6_c00498{left:444.339932pt;}
.xa3_c00498{left:446.291129pt;}
.x85_c00498{left:447.282149pt;}
.xbd_c00498{left:452.922667pt;}
.x93_c00498{left:456.037441pt;}
.x53_c00498{left:459.189807pt;}
.xce_c00498{left:461.206841pt;}
.xc8_c00498{left:462.818667pt;}
.x86_c00498{left:466.711713pt;}
.x3c_c00498{left:470.490744pt;}
.x28_c00498{left:471.946988pt;}
.x1e_c00498{left:472.898673pt;}
.x8_c00498{left:474.088000pt;}
.x7e_c00498{left:476.676979pt;}
.x67_c00498{left:479.202859pt;}
.x90_c00498{left:481.948704pt;}
.x9a_c00498{left:485.268071pt;}
.x6f_c00498{left:488.178319pt;}
.xb3_c00498{left:493.488907pt;}
.x43_c00498{left:499.506905pt;}
.x9_c00498{left:503.134667pt;}
.x7f_c00498{left:506.718956pt;}
.x94_c00498{left:514.852108pt;}
.x77_c00498{left:516.490368pt;}
.x70_c00498{left:517.466935pt;}
.x34_c00498{left:520.655841pt;}
.x1f_c00498{left:522.092267pt;}
.xac_c00498{left:523.348000pt;}
.x87_c00498{left:525.293655pt;}
.x4a_c00498{left:528.307189pt;}
.xcf_c00498{left:531.191453pt;}
.x9b_c00498{left:534.514593pt;}
.x5f_c00498{left:538.228747pt;}
.x29_c00498{left:539.672861pt;}
.x18_c00498{left:542.205333pt;}
.x88_c00498{left:544.503247pt;}
.x3d_c00498{left:550.203463pt;}
.xa4_c00498{left:553.215475pt;}
.x91_c00498{left:554.425859pt;}
.x54_c00498{left:557.396705pt;}
.x2a_c00498{left:560.047437pt;}
.x60_c00498{left:566.996359pt;}
.xd0_c00498{left:570.350921pt;}
.x44_c00498{left:579.260611pt;}
.x35_c00498{left:580.237939pt;}
.xb7_c00498{left:582.070064pt;}
.x89_c00498{left:583.402347pt;}
.xa_c00498{left:592.194667pt;}
.x80_c00498{left:595.516832pt;}
.x55_c00498{left:597.018704pt;}
.xc0_c00498{left:601.541173pt;}
.x8a_c00498{left:604.058409pt;}
.x45_c00498{left:607.831607pt;}
.x2b_c00498{left:609.497653pt;}
.xad_c00498{left:612.317333pt;}
.x71_c00498{left:614.947645pt;}
.x4b_c00498{left:618.357987pt;}
.x20_c00498{left:620.550120pt;}
.x9c_c00498{left:623.351145pt;}
.x8b_c00498{left:624.409167pt;}
.x36_c00498{left:628.232995pt;}
.xc1_c00498{left:630.843840pt;}
.x56_c00498{left:635.867285pt;}
.x2c_c00498{left:637.602515pt;}
.x19_c00498{left:639.485333pt;}
.xae_c00498{left:641.250667pt;}
.x78_c00498{left:644.478389pt;}
.x61_c00498{left:646.010299pt;}
.xb_c00498{left:650.761333pt;}
.xc9_c00498{left:652.800000pt;}
.x95_c00498{left:653.852108pt;}
.x3e_c00498{left:657.039597pt;}
.xca_c00498{left:670.560000pt;}
.x1a_c00498{left:678.916000pt;}
.xc_c00498{left:680.773333pt;}
.x79_c00498{left:682.963201pt;}
.x62_c00498{left:685.857977pt;}
.x21_c00498{left:688.492183pt;}
.xb8_c00498{left:690.327032pt;}
.xa5_c00498{left:691.651855pt;}
.x72_c00498{left:694.498659pt;}
.x2d_c00498{left:698.078131pt;}
.xaf_c00498{left:700.930667pt;}
.x8c_c00498{left:702.901949pt;}
.x81_c00498{left:704.116433pt;}
.x46_c00498{left:706.944689pt;}
.xb4_c00498{left:710.114493pt;}
.x9d_c00498{left:711.701059pt;}
.x63_c00498{left:714.094867pt;}
.x57_c00498{left:715.097949pt;}
.x68_c00498{left:724.650641pt;}
.x37_c00498{left:726.695471pt;}
.xa7_c00498{left:732.924769pt;}
.xd_c00498{left:743.506667pt;}
}





/* 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_c00499 {
    display:none;
  }
  .loading-indicator_c00499.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00499 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_c00499 { 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_c00499" -> "#page-container .classname_c00499")
 */
.pf_c00499 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00499 { /* 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_c00499.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00499 { /* 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_c00499 { /* 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_c00499 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00499 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00499 {overflow:visible;}
  }
}
.c_c00499 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00499 { /* 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_c00499:after { /* webkit #35443 */
  content: '';
}
.t_c00499:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00499 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 */
}
.__c00499 { /* 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_c00499 { /* info for Javascript */
  display:none;
}
.l_c00499 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00499 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00499 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00499: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_c00499 {
    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_c00499.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00499.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_c00499 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00499{font-family:sans-serif;visibility:hidden;}
.sc__c00499{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00499{-webkit-text-stroke:0px transparent;}
}
.y0_c00499{bottom:0.000000px;}
.h0_c00499{height:1246.320000px;}
.h1_c00499{height:1246.500000px;}
.w0_c00499{width:896.100000px;}
.w1_c00499{width:896.250000px;}
.x0_c00499{left:0.000000px;}
@media print{
.y0_c00499{bottom:0.000000pt;}
.h0_c00499{height:1107.840000pt;}
.h1_c00499{height:1108.000000pt;}
.w0_c00499{width:796.533333pt;}
.w1_c00499{width:796.666667pt;}
.x0_c00499{left:0.000000pt;}
}





/* 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_c01000 {
    display:none;
  }
  .loading-indicator_c01000.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01000 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_c01000 { 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_c01000" -> "#page-container .classname_c01000")
 */
.pf_c01000 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01000 { /* 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_c01000.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01000 { /* 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_c01000 { /* 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_c01000 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01000 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01000 {overflow:visible;}
  }
}
.c_c01000 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01000 { /* 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_c01000:after { /* webkit #35443 */
  content: '';
}
.t_c01000:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01000 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 */
}
.__c01000 { /* 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_c01000 { /* info for Javascript */
  display:none;
}
.l_c01000 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01000 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01000 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01000: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_c01000 {
    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_c01000.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01000.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_c01000 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01000{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01000;src:url('chunks/assets/font_fabf4b590f7fb32aea93ffb2.woff2')format("woff");}.ff1_c01000{font-family:ff1_c01000;line-height:1.000000;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;}
.mce_c01000{transform:matrix(0.009485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.009485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.009485,0.000000,0.000000,0.250000,0,0);}
.m5e_c01000{transform:matrix(0.015906,0.000350,-0.005499,0.249940,0,0);-ms-transform:matrix(0.015906,0.000350,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.015906,0.000350,-0.005499,0.249940,0,0);}
.mf8_c01000{transform:matrix(0.018185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.018185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.018185,0.000000,0.000000,0.250000,0,0);}
.m1d_c01000{transform:matrix(0.023134,0.000509,-0.005499,0.249940,0,0);-ms-transform:matrix(0.023134,0.000509,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.023134,0.000509,-0.005499,0.249940,0,0);}
.m113_c01000{transform:matrix(0.024953,0.000599,-0.005998,0.249928,0,0);-ms-transform:matrix(0.024953,0.000599,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.024953,0.000599,-0.005998,0.249928,0,0);}
.m13a_c01000{transform:matrix(0.064960,0.003121,-0.011998,0.249712,0,0);-ms-transform:matrix(0.064960,0.003121,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.064960,0.003121,-0.011998,0.249712,0,0);}
.m10_c01000{transform:matrix(0.074632,0.001642,-0.005499,0.249940,0,0);-ms-transform:matrix(0.074632,0.001642,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.074632,0.001642,-0.005499,0.249940,0,0);}
.m138_c01000{transform:matrix(0.124257,0.005970,-0.011998,0.249712,0,0);-ms-transform:matrix(0.124257,0.005970,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.124257,0.005970,-0.011998,0.249712,0,0);}
.m139_c01000{transform:matrix(0.146985,0.007062,-0.011998,0.249712,0,0);-ms-transform:matrix(0.146985,0.007062,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.146985,0.007062,-0.011998,0.249712,0,0);}
.mca_c01000{transform:matrix(0.163465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163465,0.000000,0.000000,0.250000,0,0);}
.mf_c01000{transform:matrix(0.167325,0.003681,-0.005499,0.249940,0,0);-ms-transform:matrix(0.167325,0.003681,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.167325,0.003681,-0.005499,0.249940,0,0);}
.mc8_c01000{transform:matrix(0.177100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177100,0.000000,0.000000,0.250000,0,0);}
.mf7_c01000{transform:matrix(0.179685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179685,0.000000,0.000000,0.250000,0,0);}
.m125_c01000{transform:matrix(0.180097,0.008112,-0.011250,0.249747,0,0);-ms-transform:matrix(0.180097,0.008112,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.180097,0.008112,-0.011250,0.249747,0,0);}
.m2b_c01000{transform:matrix(0.180211,0.003965,-0.005499,0.249940,0,0);-ms-transform:matrix(0.180211,0.003965,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.180211,0.003965,-0.005499,0.249940,0,0);}
.md8_c01000{transform:matrix(0.184465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184465,0.000000,0.000000,0.250000,0,0);}
.m12c_c01000{transform:matrix(0.184962,0.008332,-0.011250,0.249747,0,0);-ms-transform:matrix(0.184962,0.008332,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.184962,0.008332,-0.011250,0.249747,0,0);}
.m2d_c01000{transform:matrix(0.186330,0.004099,-0.005499,0.249940,0,0);-ms-transform:matrix(0.186330,0.004099,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.186330,0.004099,-0.005499,0.249940,0,0);}
.m5_c01000{transform:matrix(0.189559,0.004170,-0.005499,0.249940,0,0);-ms-transform:matrix(0.189559,0.004170,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.189559,0.004170,-0.005499,0.249940,0,0);}
.m3_c01000{transform:matrix(0.190669,0.004195,-0.005499,0.249940,0,0);-ms-transform:matrix(0.190669,0.004195,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.190669,0.004195,-0.005499,0.249940,0,0);}
.m31_c01000{transform:matrix(0.193108,0.004248,-0.005499,0.249940,0,0);-ms-transform:matrix(0.193108,0.004248,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.193108,0.004248,-0.005499,0.249940,0,0);}
.mf2_c01000{transform:matrix(0.193155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193155,0.000000,0.000000,0.250000,0,0);}
.mfa_c01000{transform:matrix(0.193198,0.006575,-0.008504,0.249855,0,0);-ms-transform:matrix(0.193198,0.006575,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.193198,0.006575,-0.008504,0.249855,0,0);}
.m7_c01000{transform:matrix(0.193758,0.004263,-0.005499,0.249940,0,0);-ms-transform:matrix(0.193758,0.004263,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.193758,0.004263,-0.005499,0.249940,0,0);}
.mc_c01000{transform:matrix(0.194303,0.004275,-0.005499,0.249940,0,0);-ms-transform:matrix(0.194303,0.004275,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.194303,0.004275,-0.005499,0.249940,0,0);}
.m88_c01000{transform:matrix(0.194493,0.004279,-0.005499,0.249940,0,0);-ms-transform:matrix(0.194493,0.004279,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.194493,0.004279,-0.005499,0.249940,0,0);}
.m1e_c01000{transform:matrix(0.194893,0.004288,-0.005499,0.249940,0,0);-ms-transform:matrix(0.194893,0.004288,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.194893,0.004288,-0.005499,0.249940,0,0);}
.m50_c01000{transform:matrix(0.195033,0.004291,-0.005499,0.249940,0,0);-ms-transform:matrix(0.195033,0.004291,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.195033,0.004291,-0.005499,0.249940,0,0);}
.md3_c01000{transform:matrix(0.195515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195515,0.000000,0.000000,0.250000,0,0);}
.m24_c01000{transform:matrix(0.196687,0.004327,-0.005499,0.249940,0,0);-ms-transform:matrix(0.196687,0.004327,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.196687,0.004327,-0.005499,0.249940,0,0);}
.m103_c01000{transform:matrix(0.197306,0.006715,-0.008504,0.249855,0,0);-ms-transform:matrix(0.197306,0.006715,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.197306,0.006715,-0.008504,0.249855,0,0);}
.m26_c01000{transform:matrix(0.197862,0.004353,-0.005499,0.249940,0,0);-ms-transform:matrix(0.197862,0.004353,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.197862,0.004353,-0.005499,0.249940,0,0);}
.ma_c01000{transform:matrix(0.198407,0.004365,-0.005499,0.249940,0,0);-ms-transform:matrix(0.198407,0.004365,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.198407,0.004365,-0.005499,0.249940,0,0);}
.md7_c01000{transform:matrix(0.199330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199330,0.000000,0.000000,0.250000,0,0);}
.m105_c01000{transform:matrix(0.199654,0.006795,-0.008504,0.249855,0,0);-ms-transform:matrix(0.199654,0.006795,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.199654,0.006795,-0.008504,0.249855,0,0);}
.mc6_c01000{transform:matrix(0.199725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199725,0.000000,0.000000,0.250000,0,0);}
.m147_c01000{transform:matrix(0.200079,0.009613,-0.011998,0.249712,0,0);-ms-transform:matrix(0.200079,0.009613,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.200079,0.009613,-0.011998,0.249712,0,0);}
.md_c01000{transform:matrix(0.201246,0.004427,-0.005499,0.249940,0,0);-ms-transform:matrix(0.201246,0.004427,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.201246,0.004427,-0.005499,0.249940,0,0);}
.m28_c01000{transform:matrix(0.201996,0.004444,-0.005499,0.249940,0,0);-ms-transform:matrix(0.201996,0.004444,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.201996,0.004444,-0.005499,0.249940,0,0);}
.m106_c01000{transform:matrix(0.203561,0.004885,-0.005998,0.249928,0,0);-ms-transform:matrix(0.203561,0.004885,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.203561,0.004885,-0.005998,0.249928,0,0);}
.mfb_c01000{transform:matrix(0.203737,0.006934,-0.008504,0.249855,0,0);-ms-transform:matrix(0.203737,0.006934,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.203737,0.006934,-0.008504,0.249855,0,0);}
.mf4_c01000{transform:matrix(0.205110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205110,0.000000,0.000000,0.250000,0,0);}
.mb1_c01000{transform:matrix(0.205305,0.005749,-0.006997,0.249902,0,0);-ms-transform:matrix(0.205305,0.005749,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.205305,0.005749,-0.006997,0.249902,0,0);}
.mb8_c01000{transform:matrix(0.205459,0.005753,-0.006997,0.249902,0,0);-ms-transform:matrix(0.205459,0.005753,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.205459,0.005753,-0.006997,0.249902,0,0);}
.m82_c01000{transform:matrix(0.205915,0.004530,-0.005499,0.249940,0,0);-ms-transform:matrix(0.205915,0.004530,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.205915,0.004530,-0.005499,0.249940,0,0);}
.m134_c01000{transform:matrix(0.206592,0.009926,-0.011998,0.249712,0,0);-ms-transform:matrix(0.206592,0.009926,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.206592,0.009926,-0.011998,0.249712,0,0);}
.mda_c01000{transform:matrix(0.206740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206740,0.000000,0.000000,0.250000,0,0);}
.mcc_c01000{transform:matrix(0.206820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206820,0.000000,0.000000,0.250000,0,0);}
.m12b_c01000{transform:matrix(0.206975,0.009323,-0.011250,0.249747,0,0);-ms-transform:matrix(0.206975,0.009323,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.206975,0.009323,-0.011250,0.249747,0,0);}
.m2a_c01000{transform:matrix(0.207395,0.004563,-0.005499,0.249940,0,0);-ms-transform:matrix(0.207395,0.004563,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.207395,0.004563,-0.005499,0.249940,0,0);}
.m102_c01000{transform:matrix(0.207915,0.007076,-0.008504,0.249855,0,0);-ms-transform:matrix(0.207915,0.007076,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.207915,0.007076,-0.008504,0.249855,0,0);}
.m12a_c01000{transform:matrix(0.208593,0.009396,-0.011250,0.249747,0,0);-ms-transform:matrix(0.208593,0.009396,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.208593,0.009396,-0.011250,0.249747,0,0);}
.mff_c01000{transform:matrix(0.208809,0.007107,-0.008504,0.249855,0,0);-ms-transform:matrix(0.208809,0.007107,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.208809,0.007107,-0.008504,0.249855,0,0);}
.mc7_c01000{transform:matrix(0.210040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210040,0.000000,0.000000,0.250000,0,0);}
.mc9_c01000{transform:matrix(0.210525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210525,0.000000,0.000000,0.250000,0,0);}
.m38_c01000{transform:matrix(0.210559,0.004632,-0.005499,0.249940,0,0);-ms-transform:matrix(0.210559,0.004632,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.210559,0.004632,-0.005499,0.249940,0,0);}
.m0_c01000{transform:matrix(0.210685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210685,0.000000,0.000000,0.250000,0,0);}
.m84_c01000{transform:matrix(0.210854,0.004639,-0.005499,0.249940,0,0);-ms-transform:matrix(0.210854,0.004639,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.210854,0.004639,-0.005499,0.249940,0,0);}
.mde_c01000{transform:matrix(0.211565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211565,0.000000,0.000000,0.250000,0,0);}
.mb_c01000{transform:matrix(0.212249,0.004669,-0.005499,0.249940,0,0);-ms-transform:matrix(0.212249,0.004669,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.212249,0.004669,-0.005499,0.249940,0,0);}
.m2f_c01000{transform:matrix(0.212464,0.004674,-0.005499,0.249940,0,0);-ms-transform:matrix(0.212464,0.004674,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.212464,0.004674,-0.005499,0.249940,0,0);}
.mdc_c01000{transform:matrix(0.212610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212610,0.000000,0.000000,0.250000,0,0);}
.m81_c01000{transform:matrix(0.212799,0.004682,-0.005499,0.249940,0,0);-ms-transform:matrix(0.212799,0.004682,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.212799,0.004682,-0.005499,0.249940,0,0);}
.m12d_c01000{transform:matrix(0.212829,0.009587,-0.011250,0.249747,0,0);-ms-transform:matrix(0.212829,0.009587,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.212829,0.009587,-0.011250,0.249747,0,0);}
.m101_c01000{transform:matrix(0.213262,0.007258,-0.008504,0.249855,0,0);-ms-transform:matrix(0.213262,0.007258,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.213262,0.007258,-0.008504,0.249855,0,0);}
.m126_c01000{transform:matrix(0.213553,0.009620,-0.011250,0.249747,0,0);-ms-transform:matrix(0.213553,0.009620,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.213553,0.009620,-0.011250,0.249747,0,0);}
.mcd_c01000{transform:matrix(0.213555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213555,0.000000,0.000000,0.250000,0,0);}
.med_c01000{transform:matrix(0.214415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214415,0.000000,0.000000,0.250000,0,0);}
.m9_c01000{transform:matrix(0.214628,0.004722,-0.005499,0.249940,0,0);-ms-transform:matrix(0.214628,0.004722,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.214628,0.004722,-0.005499,0.249940,0,0);}
.me3_c01000{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m36_c01000{transform:matrix(0.215703,0.004745,-0.005499,0.249940,0,0);-ms-transform:matrix(0.215703,0.004745,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.215703,0.004745,-0.005499,0.249940,0,0);}
.mcb_c01000{transform:matrix(0.215925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215925,0.000000,0.000000,0.250000,0,0);}
.m52_c01000{transform:matrix(0.215963,0.004751,-0.005499,0.249940,0,0);-ms-transform:matrix(0.215963,0.004751,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.215963,0.004751,-0.005499,0.249940,0,0);}
.m33_c01000{transform:matrix(0.216303,0.004759,-0.005499,0.249940,0,0);-ms-transform:matrix(0.216303,0.004759,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.216303,0.004759,-0.005499,0.249940,0,0);}
.m21_c01000{transform:matrix(0.216453,0.004762,-0.005499,0.249940,0,0);-ms-transform:matrix(0.216453,0.004762,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.216453,0.004762,-0.005499,0.249940,0,0);}
.m89_c01000{transform:matrix(0.216818,0.004770,-0.005499,0.249940,0,0);-ms-transform:matrix(0.216818,0.004770,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.216818,0.004770,-0.005499,0.249940,0,0);}
.mbd_c01000{transform:matrix(0.216842,0.005421,-0.006248,0.249922,0,0);-ms-transform:matrix(0.216842,0.005421,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.216842,0.005421,-0.006248,0.249922,0,0);}
.m46_c01000{transform:matrix(0.216858,0.004771,-0.005499,0.249940,0,0);-ms-transform:matrix(0.216858,0.004771,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.216858,0.004771,-0.005499,0.249940,0,0);}
.m128_c01000{transform:matrix(0.217634,0.009803,-0.011250,0.249747,0,0);-ms-transform:matrix(0.217634,0.009803,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.217634,0.009803,-0.011250,0.249747,0,0);}
.mf1_c01000{transform:matrix(0.218205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218205,0.000000,0.000000,0.250000,0,0);}
.m129_c01000{transform:matrix(0.218623,0.009848,-0.011250,0.249747,0,0);-ms-transform:matrix(0.218623,0.009848,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.218623,0.009848,-0.011250,0.249747,0,0);}
.m145_c01000{transform:matrix(0.218698,0.010508,-0.011998,0.249712,0,0);-ms-transform:matrix(0.218698,0.010508,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.218698,0.010508,-0.011998,0.249712,0,0);}
.meb_c01000{transform:matrix(0.218795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218795,0.000000,0.000000,0.250000,0,0);}
.m41_c01000{transform:matrix(0.219092,0.004820,-0.005499,0.249940,0,0);-ms-transform:matrix(0.219092,0.004820,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.219092,0.004820,-0.005499,0.249940,0,0);}
.m6_c01000{transform:matrix(0.219097,0.004820,-0.005499,0.249940,0,0);-ms-transform:matrix(0.219097,0.004820,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.219097,0.004820,-0.005499,0.249940,0,0);}
.md5_c01000{transform:matrix(0.219375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219375,0.000000,0.000000,0.250000,0,0);}
.mf3_c01000{transform:matrix(0.220175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220175,0.000000,0.000000,0.250000,0,0);}
.m10e_c01000{transform:matrix(0.220187,0.005284,-0.005998,0.249928,0,0);-ms-transform:matrix(0.220187,0.005284,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.220187,0.005284,-0.005998,0.249928,0,0);}
.m98_c01000{transform:matrix(0.220187,0.007053,-0.008004,0.249872,0,0);-ms-transform:matrix(0.220187,0.007053,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.220187,0.007053,-0.008004,0.249872,0,0);}
.mb5_c01000{transform:matrix(0.220394,0.006171,-0.006997,0.249902,0,0);-ms-transform:matrix(0.220394,0.006171,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.220394,0.006171,-0.006997,0.249902,0,0);}
.m85_c01000{transform:matrix(0.220407,0.004849,-0.005499,0.249940,0,0);-ms-transform:matrix(0.220407,0.004849,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.220407,0.004849,-0.005499,0.249940,0,0);}
.mbb_c01000{transform:matrix(0.220743,0.006181,-0.006997,0.249902,0,0);-ms-transform:matrix(0.220743,0.006181,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.220743,0.006181,-0.006997,0.249902,0,0);}
.m111_c01000{transform:matrix(0.220826,0.005300,-0.005998,0.249928,0,0);-ms-transform:matrix(0.220826,0.005300,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.220826,0.005300,-0.005998,0.249928,0,0);}
.m148_c01000{transform:matrix(0.221105,0.010624,-0.011998,0.249712,0,0);-ms-transform:matrix(0.221105,0.010624,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.221105,0.010624,-0.011998,0.249712,0,0);}
.m127_c01000{transform:matrix(0.221400,0.009973,-0.011250,0.249747,0,0);-ms-transform:matrix(0.221400,0.009973,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.221400,0.009973,-0.011250,0.249747,0,0);}
.m2_c01000{transform:matrix(0.221986,0.004884,-0.005499,0.249940,0,0);-ms-transform:matrix(0.221986,0.004884,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.221986,0.004884,-0.005499,0.249940,0,0);}
.m1f_c01000{transform:matrix(0.222081,0.004886,-0.005499,0.249940,0,0);-ms-transform:matrix(0.222081,0.004886,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.222081,0.004886,-0.005499,0.249940,0,0);}
.m87_c01000{transform:matrix(0.222186,0.004888,-0.005499,0.249940,0,0);-ms-transform:matrix(0.222186,0.004888,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.222186,0.004888,-0.005499,0.249940,0,0);}
.md4_c01000{transform:matrix(0.222285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222285,0.000000,0.000000,0.250000,0,0);}
.mc5_c01000{transform:matrix(0.222445,0.005561,-0.006248,0.249922,0,0);-ms-transform:matrix(0.222445,0.005561,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.222445,0.005561,-0.006248,0.249922,0,0);}
.m8_c01000{transform:matrix(0.222796,0.004902,-0.005499,0.249940,0,0);-ms-transform:matrix(0.222796,0.004902,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.222796,0.004902,-0.005499,0.249940,0,0);}
.m6c_c01000{transform:matrix(0.223621,0.004920,-0.005499,0.249940,0,0);-ms-transform:matrix(0.223621,0.004920,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.223621,0.004920,-0.005499,0.249940,0,0);}
.mfc_c01000{transform:matrix(0.223626,0.007611,-0.008504,0.249855,0,0);-ms-transform:matrix(0.223626,0.007611,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.223626,0.007611,-0.008504,0.249855,0,0);}
.m39_c01000{transform:matrix(0.224026,0.004929,-0.005499,0.249940,0,0);-ms-transform:matrix(0.224026,0.004929,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.224026,0.004929,-0.005499,0.249940,0,0);}
.m108_c01000{transform:matrix(0.224265,0.005382,-0.005998,0.249928,0,0);-ms-transform:matrix(0.224265,0.005382,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.224265,0.005382,-0.005998,0.249928,0,0);}
.m124_c01000{transform:matrix(0.224712,0.010122,-0.011250,0.249747,0,0);-ms-transform:matrix(0.224712,0.010122,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.224712,0.010122,-0.011250,0.249747,0,0);}
.md0_c01000{transform:matrix(0.224880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224880,0.000000,0.000000,0.250000,0,0);}
.mbc_c01000{transform:matrix(0.224912,0.006298,-0.006997,0.249902,0,0);-ms-transform:matrix(0.224912,0.006298,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.224912,0.006298,-0.006997,0.249902,0,0);}
.mba_c01000{transform:matrix(0.225067,0.006302,-0.006997,0.249902,0,0);-ms-transform:matrix(0.225067,0.006302,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.225067,0.006302,-0.006997,0.249902,0,0);}
.m80_c01000{transform:matrix(0.225775,0.004967,-0.005499,0.249940,0,0);-ms-transform:matrix(0.225775,0.004967,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.225775,0.004967,-0.005499,0.249940,0,0);}
.m70_c01000{transform:matrix(0.225790,0.004967,-0.005499,0.249940,0,0);-ms-transform:matrix(0.225790,0.004967,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.225790,0.004967,-0.005499,0.249940,0,0);}
.maf_c01000{transform:matrix(0.225949,0.007238,-0.008004,0.249872,0,0);-ms-transform:matrix(0.225949,0.007238,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.225949,0.007238,-0.008004,0.249872,0,0);}
.mfe_c01000{transform:matrix(0.226624,0.007713,-0.008504,0.249855,0,0);-ms-transform:matrix(0.226624,0.007713,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.226624,0.007713,-0.008504,0.249855,0,0);}
.m93_c01000{transform:matrix(0.226629,0.007259,-0.008004,0.249872,0,0);-ms-transform:matrix(0.226629,0.007259,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.226629,0.007259,-0.008004,0.249872,0,0);}
.m10a_c01000{transform:matrix(0.227200,0.005453,-0.005998,0.249928,0,0);-ms-transform:matrix(0.227200,0.005453,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.227200,0.005453,-0.005998,0.249928,0,0);}
.m13c_c01000{transform:matrix(0.227363,0.010924,-0.011998,0.249712,0,0);-ms-transform:matrix(0.227363,0.010924,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.227363,0.010924,-0.011998,0.249712,0,0);}
.m63_c01000{transform:matrix(0.227375,0.005002,-0.005499,0.249940,0,0);-ms-transform:matrix(0.227375,0.005002,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.227375,0.005002,-0.005499,0.249940,0,0);}
.mee_c01000{transform:matrix(0.227855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227855,0.000000,0.000000,0.250000,0,0);}
.m25_c01000{transform:matrix(0.227970,0.005015,-0.005499,0.249940,0,0);-ms-transform:matrix(0.227970,0.005015,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.227970,0.005015,-0.005499,0.249940,0,0);}
.m7f_c01000{transform:matrix(0.228035,0.005017,-0.005499,0.249940,0,0);-ms-transform:matrix(0.228035,0.005017,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.228035,0.005017,-0.005499,0.249940,0,0);}
.m74_c01000{transform:matrix(0.228050,0.005017,-0.005499,0.249940,0,0);-ms-transform:matrix(0.228050,0.005017,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.228050,0.005017,-0.005499,0.249940,0,0);}
.mcf_c01000{transform:matrix(0.228055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228055,0.000000,0.000000,0.250000,0,0);}
.m3c_c01000{transform:matrix(0.228225,0.005021,-0.005499,0.249940,0,0);-ms-transform:matrix(0.228225,0.005021,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.228225,0.005021,-0.005499,0.249940,0,0);}
.m109_c01000{transform:matrix(0.228404,0.005482,-0.005998,0.249928,0,0);-ms-transform:matrix(0.228404,0.005482,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.228404,0.005482,-0.005998,0.249928,0,0);}
.m2e_c01000{transform:matrix(0.228505,0.005027,-0.005499,0.249940,0,0);-ms-transform:matrix(0.228505,0.005027,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.228505,0.005027,-0.005499,0.249940,0,0);}
.md6_c01000{transform:matrix(0.228965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228965,0.000000,0.000000,0.250000,0,0);}
.m29_c01000{transform:matrix(0.229090,0.005040,-0.005499,0.249940,0,0);-ms-transform:matrix(0.229090,0.005040,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.229090,0.005040,-0.005499,0.249940,0,0);}
.mfd_c01000{transform:matrix(0.229482,0.007810,-0.008504,0.249855,0,0);-ms-transform:matrix(0.229482,0.007810,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.229482,0.007810,-0.008504,0.249855,0,0);}
.me5_c01000{transform:matrix(0.229885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229885,0.000000,0.000000,0.250000,0,0);}
.m11c_c01000{transform:matrix(0.230002,0.012202,-0.013245,0.249649,0,0);-ms-transform:matrix(0.230002,0.012202,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.230002,0.012202,-0.013245,0.249649,0,0);}
.m144_c01000{transform:matrix(0.230135,0.011058,-0.011998,0.249712,0,0);-ms-transform:matrix(0.230135,0.011058,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.230135,0.011058,-0.011998,0.249712,0,0);}
.mc4_c01000{transform:matrix(0.230143,0.005754,-0.006248,0.249922,0,0);-ms-transform:matrix(0.230143,0.005754,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.230143,0.005754,-0.006248,0.249922,0,0);}
.m94_c01000{transform:matrix(0.230207,0.007374,-0.008004,0.249872,0,0);-ms-transform:matrix(0.230207,0.007374,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.230207,0.007374,-0.008004,0.249872,0,0);}
.m83_c01000{transform:matrix(0.230344,0.005068,-0.005499,0.249940,0,0);-ms-transform:matrix(0.230344,0.005068,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.230344,0.005068,-0.005499,0.249940,0,0);}
.m59_c01000{transform:matrix(0.230839,0.005078,-0.005499,0.249940,0,0);-ms-transform:matrix(0.230839,0.005078,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.230839,0.005078,-0.005499,0.249940,0,0);}
.m4d_c01000{transform:matrix(0.230859,0.005079,-0.005499,0.249940,0,0);-ms-transform:matrix(0.230859,0.005079,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.230859,0.005079,-0.005499,0.249940,0,0);}
.m120_c01000{transform:matrix(0.231315,0.012272,-0.013245,0.249649,0,0);-ms-transform:matrix(0.231315,0.012272,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.231315,0.012272,-0.013245,0.249649,0,0);}
.m79_c01000{transform:matrix(0.231379,0.005090,-0.005499,0.249940,0,0);-ms-transform:matrix(0.231379,0.005090,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.231379,0.005090,-0.005499,0.249940,0,0);}
.m104_c01000{transform:matrix(0.231536,0.007880,-0.008504,0.249855,0,0);-ms-transform:matrix(0.231536,0.007880,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.231536,0.007880,-0.008504,0.249855,0,0);}
.m86_c01000{transform:matrix(0.232084,0.005106,-0.005499,0.249940,0,0);-ms-transform:matrix(0.232084,0.005106,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.232084,0.005106,-0.005499,0.249940,0,0);}
.m5a_c01000{transform:matrix(0.232229,0.005109,-0.005499,0.249940,0,0);-ms-transform:matrix(0.232229,0.005109,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.232229,0.005109,-0.005499,0.249940,0,0);}
.m107_c01000{transform:matrix(0.232428,0.005578,-0.005998,0.249928,0,0);-ms-transform:matrix(0.232428,0.005578,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.232428,0.005578,-0.005998,0.249928,0,0);}
.m2c_c01000{transform:matrix(0.232864,0.005123,-0.005499,0.249940,0,0);-ms-transform:matrix(0.232864,0.005123,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.232864,0.005123,-0.005499,0.249940,0,0);}
.m23_c01000{transform:matrix(0.232889,0.005124,-0.005499,0.249940,0,0);-ms-transform:matrix(0.232889,0.005124,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.232889,0.005124,-0.005499,0.249940,0,0);}
.mf6_c01000{transform:matrix(0.233355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233355,0.000000,0.000000,0.250000,0,0);}
.mea_c01000{transform:matrix(0.233410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233410,0.000000,0.000000,0.250000,0,0);}
.me_c01000{transform:matrix(0.233798,0.005144,-0.005499,0.249940,0,0);-ms-transform:matrix(0.233798,0.005144,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.233798,0.005144,-0.005499,0.249940,0,0);}
.m100_c01000{transform:matrix(0.233945,0.007962,-0.008504,0.249855,0,0);-ms-transform:matrix(0.233945,0.007962,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.233945,0.007962,-0.008504,0.249855,0,0);}
.m10c_c01000{transform:matrix(0.234253,0.005622,-0.005998,0.249928,0,0);-ms-transform:matrix(0.234253,0.005622,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.234253,0.005622,-0.005998,0.249928,0,0);}
.m149_c01000{transform:matrix(0.234484,0.011267,-0.011998,0.249712,0,0);-ms-transform:matrix(0.234484,0.011267,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.234484,0.011267,-0.011998,0.249712,0,0);}
.m92_c01000{transform:matrix(0.234665,0.007517,-0.008004,0.249872,0,0);-ms-transform:matrix(0.234665,0.007517,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.234665,0.007517,-0.008004,0.249872,0,0);}
.me0_c01000{transform:matrix(0.234690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234690,0.000000,0.000000,0.250000,0,0);}
.md2_c01000{transform:matrix(0.235075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235075,0.000000,0.000000,0.250000,0,0);}
.mdd_c01000{transform:matrix(0.235305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235305,0.000000,0.000000,0.250000,0,0);}
.m20_c01000{transform:matrix(0.235368,0.005178,-0.005499,0.249940,0,0);-ms-transform:matrix(0.235368,0.005178,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.235368,0.005178,-0.005499,0.249940,0,0);}
.m8f_c01000{transform:matrix(0.235634,0.007548,-0.008004,0.249872,0,0);-ms-transform:matrix(0.235634,0.007548,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.235634,0.007548,-0.008004,0.249872,0,0);}
.md1_c01000{transform:matrix(0.235875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235875,0.000000,0.000000,0.250000,0,0);}
.mb4_c01000{transform:matrix(0.236387,0.006619,-0.006997,0.249902,0,0);-ms-transform:matrix(0.236387,0.006619,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.236387,0.006619,-0.006997,0.249902,0,0);}
.mac_c01000{transform:matrix(0.236494,0.007575,-0.008004,0.249872,0,0);-ms-transform:matrix(0.236494,0.007575,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.236494,0.007575,-0.008004,0.249872,0,0);}
.m22_c01000{transform:matrix(0.236598,0.005205,-0.005499,0.249940,0,0);-ms-transform:matrix(0.236598,0.005205,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.236598,0.005205,-0.005499,0.249940,0,0);}
.m140_c01000{transform:matrix(0.236792,0.011377,-0.011998,0.249712,0,0);-ms-transform:matrix(0.236792,0.011377,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.236792,0.011377,-0.011998,0.249712,0,0);}
.m77_c01000{transform:matrix(0.236968,0.005213,-0.005499,0.249940,0,0);-ms-transform:matrix(0.236968,0.005213,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.236968,0.005213,-0.005499,0.249940,0,0);}
.m27_c01000{transform:matrix(0.238322,0.005243,-0.005499,0.249940,0,0);-ms-transform:matrix(0.238322,0.005243,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.238322,0.005243,-0.005499,0.249940,0,0);}
.ma8_c01000{transform:matrix(0.238448,0.007638,-0.008004,0.249872,0,0);-ms-transform:matrix(0.238448,0.007638,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.238448,0.007638,-0.008004,0.249872,0,0);}
.m69_c01000{transform:matrix(0.238512,0.005247,-0.005499,0.249940,0,0);-ms-transform:matrix(0.238512,0.005247,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.238512,0.005247,-0.005499,0.249940,0,0);}
.m34_c01000{transform:matrix(0.238547,0.005248,-0.005499,0.249940,0,0);-ms-transform:matrix(0.238547,0.005248,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.238547,0.005248,-0.005499,0.249940,0,0);}
.m30_c01000{transform:matrix(0.238952,0.005257,-0.005499,0.249940,0,0);-ms-transform:matrix(0.238952,0.005257,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.238952,0.005257,-0.005499,0.249940,0,0);}
.m54_c01000{transform:matrix(0.239067,0.005259,-0.005499,0.249940,0,0);-ms-transform:matrix(0.239067,0.005259,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.239067,0.005259,-0.005499,0.249940,0,0);}
.me2_c01000{transform:matrix(0.239760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239760,0.000000,0.000000,0.250000,0,0);}
.mdf_c01000{transform:matrix(0.240145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240145,0.000000,0.000000,0.250000,0,0);}
.maa_c01000{transform:matrix(0.240172,0.007693,-0.008004,0.249872,0,0);-ms-transform:matrix(0.240172,0.007693,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.240172,0.007693,-0.008004,0.249872,0,0);}
.mb6_c01000{transform:matrix(0.240356,0.006730,-0.006997,0.249902,0,0);-ms-transform:matrix(0.240356,0.006730,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.240356,0.006730,-0.006997,0.249902,0,0);}
.ma2_c01000{transform:matrix(0.240512,0.007704,-0.008004,0.249872,0,0);-ms-transform:matrix(0.240512,0.007704,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.240512,0.007704,-0.008004,0.249872,0,0);}
.m65_c01000{transform:matrix(0.240717,0.005296,-0.005499,0.249940,0,0);-ms-transform:matrix(0.240717,0.005296,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.240717,0.005296,-0.005499,0.249940,0,0);}
.m146_c01000{transform:matrix(0.240877,0.011574,-0.011998,0.249712,0,0);-ms-transform:matrix(0.240877,0.011574,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.240877,0.011574,-0.011998,0.249712,0,0);}
.mf5_c01000{transform:matrix(0.240980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240980,0.000000,0.000000,0.250000,0,0);}
.mc1_c01000{transform:matrix(0.241225,0.006031,-0.006248,0.249922,0,0);-ms-transform:matrix(0.241225,0.006031,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.241225,0.006031,-0.006248,0.249922,0,0);}
.ma1_c01000{transform:matrix(0.241286,0.007729,-0.008004,0.249872,0,0);-ms-transform:matrix(0.241286,0.007729,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.241286,0.007729,-0.008004,0.249872,0,0);}
.m58_c01000{transform:matrix(0.241557,0.005314,-0.005499,0.249940,0,0);-ms-transform:matrix(0.241557,0.005314,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.241557,0.005314,-0.005499,0.249940,0,0);}
.m42_c01000{transform:matrix(0.241936,0.005323,-0.005499,0.249940,0,0);-ms-transform:matrix(0.241936,0.005323,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.241936,0.005323,-0.005499,0.249940,0,0);}
.m18_c01000{transform:matrix(0.241991,0.005324,-0.005499,0.249940,0,0);-ms-transform:matrix(0.241991,0.005324,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.241991,0.005324,-0.005499,0.249940,0,0);}
.md9_c01000{transform:matrix(0.242080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242080,0.000000,0.000000,0.250000,0,0);}
.m4_c01000{transform:matrix(0.242681,0.005339,-0.005499,0.249940,0,0);-ms-transform:matrix(0.242681,0.005339,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.242681,0.005339,-0.005499,0.249940,0,0);}
.m72_c01000{transform:matrix(0.242696,0.005339,-0.005499,0.249940,0,0);-ms-transform:matrix(0.242696,0.005339,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.242696,0.005339,-0.005499,0.249940,0,0);}
.m4c_c01000{transform:matrix(0.242831,0.005342,-0.005499,0.249940,0,0);-ms-transform:matrix(0.242831,0.005342,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.242831,0.005342,-0.005499,0.249940,0,0);}
.m114_c01000{transform:matrix(0.242841,0.012640,-0.012995,0.249662,0,0);-ms-transform:matrix(0.242841,0.012640,-0.012995,0.249662,0,0);-webkit-transform:matrix(0.242841,0.012640,-0.012995,0.249662,0,0);}
.m8c_c01000{transform:matrix(0.243015,0.007784,-0.008004,0.249872,0,0);-ms-transform:matrix(0.243015,0.007784,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.243015,0.007784,-0.008004,0.249872,0,0);}
.m3b_c01000{transform:matrix(0.243021,0.005346,-0.005499,0.249940,0,0);-ms-transform:matrix(0.243021,0.005346,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.243021,0.005346,-0.005499,0.249940,0,0);}
.mf0_c01000{transform:matrix(0.243065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243065,0.000000,0.000000,0.250000,0,0);}
.m61_c01000{transform:matrix(0.243316,0.005353,-0.005499,0.249940,0,0);-ms-transform:matrix(0.243316,0.005353,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.243316,0.005353,-0.005499,0.249940,0,0);}
.m11b_c01000{transform:matrix(0.243408,0.012914,-0.013245,0.249649,0,0);-ms-transform:matrix(0.243408,0.012914,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.243408,0.012914,-0.013245,0.249649,0,0);}
.m43_c01000{transform:matrix(0.243691,0.005361,-0.005499,0.249940,0,0);-ms-transform:matrix(0.243691,0.005361,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.243691,0.005361,-0.005499,0.249940,0,0);}
.me6_c01000{transform:matrix(0.243790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243790,0.000000,0.000000,0.250000,0,0);}
.m37_c01000{transform:matrix(0.243866,0.005365,-0.005499,0.249940,0,0);-ms-transform:matrix(0.243866,0.005365,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.243866,0.005365,-0.005499,0.249940,0,0);}
.m5f_c01000{transform:matrix(0.244366,0.005376,-0.005499,0.249940,0,0);-ms-transform:matrix(0.244366,0.005376,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.244366,0.005376,-0.005499,0.249940,0,0);}
.m11d_c01000{transform:matrix(0.244426,0.012968,-0.013245,0.249649,0,0);-ms-transform:matrix(0.244426,0.012968,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.244426,0.012968,-0.013245,0.249649,0,0);}
.m53_c01000{transform:matrix(0.244641,0.005382,-0.005499,0.249940,0,0);-ms-transform:matrix(0.244641,0.005382,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.244641,0.005382,-0.005499,0.249940,0,0);}
.mb7_c01000{transform:matrix(0.245109,0.006863,-0.006997,0.249902,0,0);-ms-transform:matrix(0.245109,0.006863,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.245109,0.006863,-0.006997,0.249902,0,0);}
.mec_c01000{transform:matrix(0.245205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245205,0.000000,0.000000,0.250000,0,0);}
.m132_c01000{transform:matrix(0.245342,0.011788,-0.011998,0.249712,0,0);-ms-transform:matrix(0.245342,0.011788,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.245342,0.011788,-0.011998,0.249712,0,0);}
.m32_c01000{transform:matrix(0.245556,0.005402,-0.005499,0.249940,0,0);-ms-transform:matrix(0.245556,0.005402,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.245556,0.005402,-0.005499,0.249940,0,0);}
.m49_c01000{transform:matrix(0.245910,0.005410,-0.005499,0.249940,0,0);-ms-transform:matrix(0.245910,0.005410,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.245910,0.005410,-0.005499,0.249940,0,0);}
.m112_c01000{transform:matrix(0.245984,0.005904,-0.005998,0.249928,0,0);-ms-transform:matrix(0.245984,0.005904,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.245984,0.005904,-0.005998,0.249928,0,0);}
.m55_c01000{transform:matrix(0.246135,0.005415,-0.005499,0.249940,0,0);-ms-transform:matrix(0.246135,0.005415,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.246135,0.005415,-0.005499,0.249940,0,0);}
.me4_c01000{transform:matrix(0.246255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246255,0.000000,0.000000,0.250000,0,0);}
.mb9_c01000{transform:matrix(0.246258,0.006895,-0.006997,0.249902,0,0);-ms-transform:matrix(0.246258,0.006895,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.246258,0.006895,-0.006997,0.249902,0,0);}
.m1b_c01000{transform:matrix(0.246560,0.005424,-0.005499,0.249940,0,0);-ms-transform:matrix(0.246560,0.005424,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.246560,0.005424,-0.005499,0.249940,0,0);}
.me9_c01000{transform:matrix(0.246625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246625,0.000000,0.000000,0.250000,0,0);}
.ma7_c01000{transform:matrix(0.246853,0.007907,-0.008004,0.249872,0,0);-ms-transform:matrix(0.246853,0.007907,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.246853,0.007907,-0.008004,0.249872,0,0);}
.m3a_c01000{transform:matrix(0.247020,0.005434,-0.005499,0.249940,0,0);-ms-transform:matrix(0.247020,0.005434,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.247020,0.005434,-0.005499,0.249940,0,0);}
.mb2_c01000{transform:matrix(0.247048,0.006917,-0.006997,0.249902,0,0);-ms-transform:matrix(0.247048,0.006917,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.247048,0.006917,-0.006997,0.249902,0,0);}
.m9e_c01000{transform:matrix(0.247088,0.007915,-0.008004,0.249872,0,0);-ms-transform:matrix(0.247088,0.007915,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.247088,0.007915,-0.008004,0.249872,0,0);}
.m3f_c01000{transform:matrix(0.247625,0.005448,-0.005499,0.249940,0,0);-ms-transform:matrix(0.247625,0.005448,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.247625,0.005448,-0.005499,0.249940,0,0);}
.m51_c01000{transform:matrix(0.247695,0.005449,-0.005499,0.249940,0,0);-ms-transform:matrix(0.247695,0.005449,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.247695,0.005449,-0.005499,0.249940,0,0);}
.mad_c01000{transform:matrix(0.247743,0.007936,-0.008004,0.249872,0,0);-ms-transform:matrix(0.247743,0.007936,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.247743,0.007936,-0.008004,0.249872,0,0);}
.m10d_c01000{transform:matrix(0.248044,0.005953,-0.005998,0.249928,0,0);-ms-transform:matrix(0.248044,0.005953,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.248044,0.005953,-0.005998,0.249928,0,0);}
.m66_c01000{transform:matrix(0.248865,0.005475,-0.005499,0.249940,0,0);-ms-transform:matrix(0.248865,0.005475,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.248865,0.005475,-0.005499,0.249940,0,0);}
.m4a_c01000{transform:matrix(0.249445,0.005488,-0.005499,0.249940,0,0);-ms-transform:matrix(0.249445,0.005488,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.249445,0.005488,-0.005499,0.249940,0,0);}
.m119_c01000{transform:matrix(0.250772,0.013304,-0.013245,0.249649,0,0);-ms-transform:matrix(0.250772,0.013304,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.250772,0.013304,-0.013245,0.249649,0,0);}
.mb3_c01000{transform:matrix(0.251826,0.007051,-0.006997,0.249902,0,0);-ms-transform:matrix(0.251826,0.007051,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.251826,0.007051,-0.006997,0.249902,0,0);}
.m6b_c01000{transform:matrix(0.251889,0.005542,-0.005499,0.249940,0,0);-ms-transform:matrix(0.251889,0.005542,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.251889,0.005542,-0.005499,0.249940,0,0);}
.m3e_c01000{transform:matrix(0.251974,0.005543,-0.005499,0.249940,0,0);-ms-transform:matrix(0.251974,0.005543,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.251974,0.005543,-0.005499,0.249940,0,0);}
.m121_c01000{transform:matrix(0.252036,0.013371,-0.013245,0.249649,0,0);-ms-transform:matrix(0.252036,0.013371,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.252036,0.013371,-0.013245,0.249649,0,0);}
.m45_c01000{transform:matrix(0.252529,0.005556,-0.005499,0.249940,0,0);-ms-transform:matrix(0.252529,0.005556,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.252529,0.005556,-0.005499,0.249940,0,0);}
.m136_c01000{transform:matrix(0.252678,0.012141,-0.011998,0.249712,0,0);-ms-transform:matrix(0.252678,0.012141,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.252678,0.012141,-0.011998,0.249712,0,0);}
.m4b_c01000{transform:matrix(0.252764,0.005561,-0.005499,0.249940,0,0);-ms-transform:matrix(0.252764,0.005561,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.252764,0.005561,-0.005499,0.249940,0,0);}
.m133_c01000{transform:matrix(0.253033,0.012158,-0.011998,0.249712,0,0);-ms-transform:matrix(0.253033,0.012158,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.253033,0.012158,-0.011998,0.249712,0,0);}
.ma4_c01000{transform:matrix(0.253125,0.008108,-0.008004,0.249872,0,0);-ms-transform:matrix(0.253125,0.008108,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.253125,0.008108,-0.008004,0.249872,0,0);}
.m4e_c01000{transform:matrix(0.253179,0.005570,-0.005499,0.249940,0,0);-ms-transform:matrix(0.253179,0.005570,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.253179,0.005570,-0.005499,0.249940,0,0);}
.me1_c01000{transform:matrix(0.253230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253230,0.000000,0.000000,0.250000,0,0);}
.m10b_c01000{transform:matrix(0.253522,0.006085,-0.005998,0.249928,0,0);-ms-transform:matrix(0.253522,0.006085,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.253522,0.006085,-0.005998,0.249928,0,0);}
.mdb_c01000{transform:matrix(0.253545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253545,0.000000,0.000000,0.250000,0,0);}
.m73_c01000{transform:matrix(0.254178,0.005592,-0.005499,0.249940,0,0);-ms-transform:matrix(0.254178,0.005592,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.254178,0.005592,-0.005499,0.249940,0,0);}
.m8b_c01000{transform:matrix(0.254784,0.008161,-0.008004,0.249872,0,0);-ms-transform:matrix(0.254784,0.008161,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.254784,0.008161,-0.008004,0.249872,0,0);}
.m7b_c01000{transform:matrix(0.254993,0.005610,-0.005499,0.249940,0,0);-ms-transform:matrix(0.254993,0.005610,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.254993,0.005610,-0.005499,0.249940,0,0);}
.m135_c01000{transform:matrix(0.255261,0.012265,-0.011998,0.249712,0,0);-ms-transform:matrix(0.255261,0.012265,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.255261,0.012265,-0.011998,0.249712,0,0);}
.m3d_c01000{transform:matrix(0.255908,0.005630,-0.005499,0.249940,0,0);-ms-transform:matrix(0.255908,0.005630,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.255908,0.005630,-0.005499,0.249940,0,0);}
.m71_c01000{transform:matrix(0.255983,0.005632,-0.005499,0.249940,0,0);-ms-transform:matrix(0.255983,0.005632,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.255983,0.005632,-0.005499,0.249940,0,0);}
.mef_c01000{transform:matrix(0.257075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257075,0.000000,0.000000,0.250000,0,0);}
.m78_c01000{transform:matrix(0.257143,0.005657,-0.005499,0.249940,0,0);-ms-transform:matrix(0.257143,0.005657,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.257143,0.005657,-0.005499,0.249940,0,0);}
.m91_c01000{transform:matrix(0.257488,0.008248,-0.008004,0.249872,0,0);-ms-transform:matrix(0.257488,0.008248,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.257488,0.008248,-0.008004,0.249872,0,0);}
.m7d_c01000{transform:matrix(0.258253,0.005682,-0.005499,0.249940,0,0);-ms-transform:matrix(0.258253,0.005682,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.258253,0.005682,-0.005499,0.249940,0,0);}
.m13_c01000{transform:matrix(0.258612,0.005689,-0.005499,0.249940,0,0);-ms-transform:matrix(0.258612,0.005689,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.258612,0.005689,-0.005499,0.249940,0,0);}
.m9c_c01000{transform:matrix(0.259077,0.008299,-0.008004,0.249872,0,0);-ms-transform:matrix(0.259077,0.008299,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.259077,0.008299,-0.008004,0.249872,0,0);}
.m137_c01000{transform:matrix(0.259845,0.012485,-0.011998,0.249712,0,0);-ms-transform:matrix(0.259845,0.012485,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.259845,0.012485,-0.011998,0.249712,0,0);}
.m9b_c01000{transform:matrix(0.260042,0.008330,-0.008004,0.249872,0,0);-ms-transform:matrix(0.260042,0.008330,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.260042,0.008330,-0.008004,0.249872,0,0);}
.m9f_c01000{transform:matrix(0.260282,0.008337,-0.008004,0.249872,0,0);-ms-transform:matrix(0.260282,0.008337,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.260282,0.008337,-0.008004,0.249872,0,0);}
.ma5_c01000{transform:matrix(0.260291,0.008338,-0.008004,0.249872,0,0);-ms-transform:matrix(0.260291,0.008338,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.260291,0.008338,-0.008004,0.249872,0,0);}
.m7e_c01000{transform:matrix(0.260442,0.005730,-0.005499,0.249940,0,0);-ms-transform:matrix(0.260442,0.005730,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.260442,0.005730,-0.005499,0.249940,0,0);}
.m117_c01000{transform:matrix(0.260577,0.013564,-0.012995,0.249662,0,0);-ms-transform:matrix(0.260577,0.013564,-0.012995,0.249662,0,0);-webkit-transform:matrix(0.260577,0.013564,-0.012995,0.249662,0,0);}
.m6d_c01000{transform:matrix(0.261307,0.005749,-0.005499,0.249940,0,0);-ms-transform:matrix(0.261307,0.005749,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.261307,0.005749,-0.005499,0.249940,0,0);}
.m116_c01000{transform:matrix(0.261611,0.013617,-0.012995,0.249662,0,0);-ms-transform:matrix(0.261611,0.013617,-0.012995,0.249662,0,0);-webkit-transform:matrix(0.261611,0.013617,-0.012995,0.249662,0,0);}
.m6a_c01000{transform:matrix(0.261882,0.005761,-0.005499,0.249940,0,0);-ms-transform:matrix(0.261882,0.005761,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.261882,0.005761,-0.005499,0.249940,0,0);}
.m5b_c01000{transform:matrix(0.261947,0.005763,-0.005499,0.249940,0,0);-ms-transform:matrix(0.261947,0.005763,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.261947,0.005763,-0.005499,0.249940,0,0);}
.m4f_c01000{transform:matrix(0.262227,0.005769,-0.005499,0.249940,0,0);-ms-transform:matrix(0.262227,0.005769,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.262227,0.005769,-0.005499,0.249940,0,0);}
.m7c_c01000{transform:matrix(0.262282,0.005770,-0.005499,0.249940,0,0);-ms-transform:matrix(0.262282,0.005770,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.262282,0.005770,-0.005499,0.249940,0,0);}
.m6f_c01000{transform:matrix(0.262511,0.005775,-0.005499,0.249940,0,0);-ms-transform:matrix(0.262511,0.005775,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.262511,0.005775,-0.005499,0.249940,0,0);}
.m13e_c01000{transform:matrix(0.262567,0.012616,-0.011998,0.249712,0,0);-ms-transform:matrix(0.262567,0.012616,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.262567,0.012616,-0.011998,0.249712,0,0);}
.ma9_c01000{transform:matrix(0.262715,0.008415,-0.008004,0.249872,0,0);-ms-transform:matrix(0.262715,0.008415,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.262715,0.008415,-0.008004,0.249872,0,0);}
.m35_c01000{transform:matrix(0.262901,0.005784,-0.005499,0.249940,0,0);-ms-transform:matrix(0.262901,0.005784,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.262901,0.005784,-0.005499,0.249940,0,0);}
.m62_c01000{transform:matrix(0.263506,0.005797,-0.005499,0.249940,0,0);-ms-transform:matrix(0.263506,0.005797,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.263506,0.005797,-0.005499,0.249940,0,0);}
.mf9_c01000{transform:matrix(0.264278,0.014021,-0.013245,0.249649,0,0);-ms-transform:matrix(0.264278,0.014021,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.264278,0.014021,-0.013245,0.249649,0,0);}
.mae_c01000{transform:matrix(0.264629,0.008477,-0.008004,0.249872,0,0);-ms-transform:matrix(0.264629,0.008477,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.264629,0.008477,-0.008004,0.249872,0,0);}
.m68_c01000{transform:matrix(0.264956,0.005829,-0.005499,0.249940,0,0);-ms-transform:matrix(0.264956,0.005829,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.264956,0.005829,-0.005499,0.249940,0,0);}
.m60_c01000{transform:matrix(0.265186,0.005834,-0.005499,0.249940,0,0);-ms-transform:matrix(0.265186,0.005834,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.265186,0.005834,-0.005499,0.249940,0,0);}
.ma0_c01000{transform:matrix(0.265774,0.008513,-0.008004,0.249872,0,0);-ms-transform:matrix(0.265774,0.008513,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.265774,0.008513,-0.008004,0.249872,0,0);}
.m40_c01000{transform:matrix(0.266031,0.005853,-0.005499,0.249940,0,0);-ms-transform:matrix(0.266031,0.005853,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.266031,0.005853,-0.005499,0.249940,0,0);}
.mbe_c01000{transform:matrix(0.266332,0.006658,-0.006248,0.249922,0,0);-ms-transform:matrix(0.266332,0.006658,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.266332,0.006658,-0.006248,0.249922,0,0);}
.m56_c01000{transform:matrix(0.266341,0.005859,-0.005499,0.249940,0,0);-ms-transform:matrix(0.266341,0.005859,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.266341,0.005859,-0.005499,0.249940,0,0);}
.m5c_c01000{transform:matrix(0.266565,0.005864,-0.005499,0.249940,0,0);-ms-transform:matrix(0.266565,0.005864,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.266565,0.005864,-0.005499,0.249940,0,0);}
.m75_c01000{transform:matrix(0.267350,0.005882,-0.005499,0.249940,0,0);-ms-transform:matrix(0.267350,0.005882,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.267350,0.005882,-0.005499,0.249940,0,0);}
.m7a_c01000{transform:matrix(0.267360,0.005882,-0.005499,0.249940,0,0);-ms-transform:matrix(0.267360,0.005882,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.267360,0.005882,-0.005499,0.249940,0,0);}
.m8e_c01000{transform:matrix(0.267373,0.008564,-0.008004,0.249872,0,0);-ms-transform:matrix(0.267373,0.008564,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.267373,0.008564,-0.008004,0.249872,0,0);}
.m11a_c01000{transform:matrix(0.267544,0.014194,-0.013245,0.249649,0,0);-ms-transform:matrix(0.267544,0.014194,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.267544,0.014194,-0.013245,0.249649,0,0);}
.m14_c01000{transform:matrix(0.267990,0.005896,-0.005499,0.249940,0,0);-ms-transform:matrix(0.267990,0.005896,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.267990,0.005896,-0.005499,0.249940,0,0);}
.m90_c01000{transform:matrix(0.268672,0.008606,-0.008004,0.249872,0,0);-ms-transform:matrix(0.268672,0.008606,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.268672,0.008606,-0.008004,0.249872,0,0);}
.m47_c01000{transform:matrix(0.268685,0.005911,-0.005499,0.249940,0,0);-ms-transform:matrix(0.268685,0.005911,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.268685,0.005911,-0.005499,0.249940,0,0);}
.m44_c01000{transform:matrix(0.271054,0.005963,-0.005499,0.249940,0,0);-ms-transform:matrix(0.271054,0.005963,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.271054,0.005963,-0.005499,0.249940,0,0);}
.m97_c01000{transform:matrix(0.271056,0.008682,-0.008004,0.249872,0,0);-ms-transform:matrix(0.271056,0.008682,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.271056,0.008682,-0.008004,0.249872,0,0);}
.m48_c01000{transform:matrix(0.271914,0.005982,-0.005499,0.249940,0,0);-ms-transform:matrix(0.271914,0.005982,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.271914,0.005982,-0.005499,0.249940,0,0);}
.m11f_c01000{transform:matrix(0.272482,0.014456,-0.013245,0.249649,0,0);-ms-transform:matrix(0.272482,0.014456,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.272482,0.014456,-0.013245,0.249649,0,0);}
.m57_c01000{transform:matrix(0.272624,0.005998,-0.005499,0.249940,0,0);-ms-transform:matrix(0.272624,0.005998,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.272624,0.005998,-0.005499,0.249940,0,0);}
.ma6_c01000{transform:matrix(0.272720,0.008736,-0.008004,0.249872,0,0);-ms-transform:matrix(0.272720,0.008736,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.272720,0.008736,-0.008004,0.249872,0,0);}
.m5d_c01000{transform:matrix(0.273689,0.006021,-0.005499,0.249940,0,0);-ms-transform:matrix(0.273689,0.006021,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.273689,0.006021,-0.005499,0.249940,0,0);}
.m13b_c01000{transform:matrix(0.273789,0.013155,-0.011998,0.249712,0,0);-ms-transform:matrix(0.273789,0.013155,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.273789,0.013155,-0.011998,0.249712,0,0);}
.m118_c01000{transform:matrix(0.274015,0.014537,-0.013245,0.249649,0,0);-ms-transform:matrix(0.274015,0.014537,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.274015,0.014537,-0.013245,0.249649,0,0);}
.m64_c01000{transform:matrix(0.274499,0.006039,-0.005499,0.249940,0,0);-ms-transform:matrix(0.274499,0.006039,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.274499,0.006039,-0.005499,0.249940,0,0);}
.m9d_c01000{transform:matrix(0.274919,0.008806,-0.008004,0.249872,0,0);-ms-transform:matrix(0.274919,0.008806,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.274919,0.008806,-0.008004,0.249872,0,0);}
.m13d_c01000{transform:matrix(0.274923,0.013210,-0.011998,0.249712,0,0);-ms-transform:matrix(0.274923,0.013210,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.274923,0.013210,-0.011998,0.249712,0,0);}
.m67_c01000{transform:matrix(0.275533,0.006062,-0.005499,0.249940,0,0);-ms-transform:matrix(0.275533,0.006062,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.275533,0.006062,-0.005499,0.249940,0,0);}
.mab_c01000{transform:matrix(0.275569,0.008827,-0.008004,0.249872,0,0);-ms-transform:matrix(0.275569,0.008827,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.275569,0.008827,-0.008004,0.249872,0,0);}
.m11_c01000{transform:matrix(0.275973,0.006071,-0.005499,0.249940,0,0);-ms-transform:matrix(0.275973,0.006071,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.275973,0.006071,-0.005499,0.249940,0,0);}
.m9a_c01000{transform:matrix(0.276048,0.008842,-0.008004,0.249872,0,0);-ms-transform:matrix(0.276048,0.008842,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.276048,0.008842,-0.008004,0.249872,0,0);}
.m11e_c01000{transform:matrix(0.276122,0.014649,-0.013245,0.249649,0,0);-ms-transform:matrix(0.276122,0.014649,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.276122,0.014649,-0.013245,0.249649,0,0);}
.ma3_c01000{transform:matrix(0.276708,0.008864,-0.008004,0.249872,0,0);-ms-transform:matrix(0.276708,0.008864,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.276708,0.008864,-0.008004,0.249872,0,0);}
.m99_c01000{transform:matrix(0.276843,0.008868,-0.008004,0.249872,0,0);-ms-transform:matrix(0.276843,0.008868,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.276843,0.008868,-0.008004,0.249872,0,0);}
.m6e_c01000{transform:matrix(0.278098,0.006118,-0.005499,0.249940,0,0);-ms-transform:matrix(0.278098,0.006118,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.278098,0.006118,-0.005499,0.249940,0,0);}
.mc2_c01000{transform:matrix(0.278588,0.006965,-0.006248,0.249922,0,0);-ms-transform:matrix(0.278588,0.006965,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.278588,0.006965,-0.006248,0.249922,0,0);}
.m8d_c01000{transform:matrix(0.279607,0.008956,-0.008004,0.249872,0,0);-ms-transform:matrix(0.279607,0.008956,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.279607,0.008956,-0.008004,0.249872,0,0);}
.mc0_c01000{transform:matrix(0.279868,0.006997,-0.006248,0.249922,0,0);-ms-transform:matrix(0.279868,0.006997,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.279868,0.006997,-0.006248,0.249922,0,0);}
.mbf_c01000{transform:matrix(0.280043,0.007001,-0.006248,0.249922,0,0);-ms-transform:matrix(0.280043,0.007001,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.280043,0.007001,-0.006248,0.249922,0,0);}
.m96_c01000{transform:matrix(0.280331,0.008980,-0.008004,0.249872,0,0);-ms-transform:matrix(0.280331,0.008980,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.280331,0.008980,-0.008004,0.249872,0,0);}
.mc3_c01000{transform:matrix(0.281602,0.007040,-0.006248,0.249922,0,0);-ms-transform:matrix(0.281602,0.007040,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.281602,0.007040,-0.006248,0.249922,0,0);}
.m76_c01000{transform:matrix(0.282682,0.006219,-0.005499,0.249940,0,0);-ms-transform:matrix(0.282682,0.006219,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.282682,0.006219,-0.005499,0.249940,0,0);}
.m95_c01000{transform:matrix(0.282755,0.009057,-0.008004,0.249872,0,0);-ms-transform:matrix(0.282755,0.009057,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.282755,0.009057,-0.008004,0.249872,0,0);}
.m13f_c01000{transform:matrix(0.283348,0.013614,-0.011998,0.249712,0,0);-ms-transform:matrix(0.283348,0.013614,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.283348,0.013614,-0.011998,0.249712,0,0);}
.m115_c01000{transform:matrix(0.285553,0.014864,-0.012995,0.249662,0,0);-ms-transform:matrix(0.285553,0.014864,-0.012995,0.249662,0,0);-webkit-transform:matrix(0.285553,0.014864,-0.012995,0.249662,0,0);}
.m16_c01000{transform:matrix(0.286346,0.006300,-0.005499,0.249940,0,0);-ms-transform:matrix(0.286346,0.006300,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.286346,0.006300,-0.005499,0.249940,0,0);}
.m12_c01000{transform:matrix(0.286356,0.006300,-0.005499,0.249940,0,0);-ms-transform:matrix(0.286356,0.006300,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.286356,0.006300,-0.005499,0.249940,0,0);}
.m8a_c01000{transform:matrix(0.289432,0.009271,-0.008004,0.249872,0,0);-ms-transform:matrix(0.289432,0.009271,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.289432,0.009271,-0.008004,0.249872,0,0);}
.m15_c01000{transform:matrix(0.289715,0.006374,-0.005499,0.249940,0,0);-ms-transform:matrix(0.289715,0.006374,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.289715,0.006374,-0.005499,0.249940,0,0);}
.m19_c01000{transform:matrix(0.291399,0.006411,-0.005499,0.249940,0,0);-ms-transform:matrix(0.291399,0.006411,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.291399,0.006411,-0.005499,0.249940,0,0);}
.m1a_c01000{transform:matrix(0.293339,0.006453,-0.005499,0.249940,0,0);-ms-transform:matrix(0.293339,0.006453,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.293339,0.006453,-0.005499,0.249940,0,0);}
.m143_c01000{transform:matrix(0.296268,0.014235,-0.011998,0.249712,0,0);-ms-transform:matrix(0.296268,0.014235,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.296268,0.014235,-0.011998,0.249712,0,0);}
.m17_c01000{transform:matrix(0.303627,0.006680,-0.005499,0.249940,0,0);-ms-transform:matrix(0.303627,0.006680,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.303627,0.006680,-0.005499,0.249940,0,0);}
.mb0_c01000{transform:matrix(0.308150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308150,0.000000,0.000000,0.250000,0,0);}
.m130_c01000{transform:matrix(0.311125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311125,0.000000,0.000000,0.250000,0,0);}
.m110_c01000{transform:matrix(0.337383,0.008097,-0.005998,0.249928,0,0);-ms-transform:matrix(0.337383,0.008097,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.337383,0.008097,-0.005998,0.249928,0,0);}
.me8_c01000{transform:matrix(0.338170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338170,0.000000,0.000000,0.250000,0,0);}
.m141_c01000{transform:matrix(0.339064,0.016291,-0.011998,0.249712,0,0);-ms-transform:matrix(0.339064,0.016291,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.339064,0.016291,-0.011998,0.249712,0,0);}
.m10f_c01000{transform:matrix(0.353693,0.008489,-0.005998,0.249928,0,0);-ms-transform:matrix(0.353693,0.008489,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.353693,0.008489,-0.005998,0.249928,0,0);}
.m12f_c01000{transform:matrix(0.368000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368000,0.000000,0.000000,0.250000,0,0);}
.me7_c01000{transform:matrix(0.371695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371695,0.000000,0.000000,0.250000,0,0);}
.m1_c01000{transform:matrix(0.408330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408330,0.000000,0.000000,0.250000,0,0);}
.m1c_c01000{transform:matrix(0.485867,0.010689,-0.005499,0.249940,0,0);-ms-transform:matrix(0.485867,0.010689,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.485867,0.010689,-0.005499,0.249940,0,0);}
.m131_c01000{transform:matrix(0.564625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.564625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.564625,0.000000,0.000000,0.250000,0,0);}
.m142_c01000{transform:matrix(0.665717,0.031986,-0.011998,0.249712,0,0);-ms-transform:matrix(0.665717,0.031986,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.665717,0.031986,-0.011998,0.249712,0,0);}
.m12e_c01000{transform:matrix(0.695700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.695700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.695700,0.000000,0.000000,0.250000,0,0);}
.m123_c01000{transform:matrix(0.942814,0.050019,-0.013245,0.249649,0,0);-ms-transform:matrix(0.942814,0.050019,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.942814,0.050019,-0.013245,0.249649,0,0);}
.m122_c01000{transform:matrix(5.868018,0.311316,-0.013245,0.249649,0,0);-ms-transform:matrix(5.868018,0.311316,-0.013245,0.249649,0,0);-webkit-transform:matrix(5.868018,0.311316,-0.013245,0.249649,0,0);}
.v0_c01000{vertical-align:0.000000px;}
.ls0_c01000{letter-spacing:0.000000px;}
.sc__c01000{text-shadow:none;}
.sc0_c01000{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__c01000{-webkit-text-stroke:0px transparent;}
.sc0_c01000{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01000{word-spacing:0.000000px;}
.fc0_c01000{color:transparent;}
.fs11_c01000{font-size:18.007289px;}
.fs13_c01000{font-size:36.000000px;}
.fs0_c01000{font-size:60.000000px;}
.fs2_c01000{font-size:66.015970px;}
.fs5_c01000{font-size:71.964891px;}
.fs15_c01000{font-size:72.010979px;}
.fs4_c01000{font-size:72.017422px;}
.fs7_c01000{font-size:72.022496px;}
.fsf_c01000{font-size:72.025376px;}
.fs10_c01000{font-size:72.029154px;}
.fsb_c01000{font-size:78.000000px;}
.fs14_c01000{font-size:78.011894px;}
.fs3_c01000{font-size:78.018874px;}
.fse_c01000{font-size:78.022461px;}
.fs6_c01000{font-size:78.030570px;}
.fsc_c01000{font-size:78.031584px;}
.fsd_c01000{font-size:83.964587px;}
.fsa_c01000{font-size:84.000000px;}
.fs16_c01000{font-size:84.012809px;}
.fs1_c01000{font-size:84.020326px;}
.fs9_c01000{font-size:90.000000px;}
.fs12_c01000{font-size:90.001170px;}
.fs8_c01000{font-size:114.000000px;}
.y0_c01000{bottom:0.000000px;}
.y14d_c01000{bottom:76.697840px;}
.y14c_c01000{bottom:80.446313px;}
.y14b_c01000{bottom:82.419270px;}
.y147_c01000{bottom:83.177457px;}
.y146_c01000{bottom:86.944385px;}
.y14a_c01000{bottom:89.365407px;}
.y145_c01000{bottom:89.384190px;}
.y149_c01000{bottom:90.615286px;}
.y144_c01000{bottom:91.073139px;}
.y143_c01000{bottom:96.245844px;}
.y148_c01000{bottom:96.679383px;}
.y142_c01000{bottom:99.508236px;}
.y13e_c01000{bottom:100.438404px;}
.y13d_c01000{bottom:103.492212px;}
.y141_c01000{bottom:105.103207px;}
.y13c_c01000{bottom:106.629252px;}
.y140_c01000{bottom:106.824831px;}
.y13f_c01000{bottom:112.339347px;}
.y13b_c01000{bottom:112.568748px;}
.y13a_c01000{bottom:117.347460px;}
.y139_c01000{bottom:122.614980px;}
.y138_c01000{bottom:124.157940px;}
.y137_c01000{bottom:129.894468px;}
.y136_c01000{bottom:132.589500px;}
.y135_c01000{bottom:141.778500px;}
.y134_c01000{bottom:143.837603px;}
.y133_c01000{bottom:145.325100px;}
.y132_c01000{bottom:148.263915px;}
.y131_c01000{bottom:149.836800px;}
.y130_c01000{bottom:153.825645px;}
.y12f_c01000{bottom:158.767185px;}
.y12e_c01000{bottom:162.320655px;}
.y12d_c01000{bottom:165.235372px;}
.y12c_c01000{bottom:166.681425px;}
.y12b_c01000{bottom:173.100000px;}
.y12a_c01000{bottom:174.295882px;}
.y128_c01000{bottom:180.048370px;}
.y129_c01000{bottom:180.337485px;}
.y127_c01000{bottom:181.766922px;}
.y126_c01000{bottom:186.439853px;}
.y125_c01000{bottom:191.241334px;}
.y124_c01000{bottom:193.004326px;}
.y123_c01000{bottom:194.729635px;}
.y122_c01000{bottom:197.093568px;}
.y121_c01000{bottom:201.169295px;}
.y120_c01000{bottom:203.509059px;}
.y11f_c01000{bottom:208.740000px;}
.y11a_c01000{bottom:232.850892px;}
.y119_c01000{bottom:238.118376px;}
.y118_c01000{bottom:238.616808px;}
.y117_c01000{bottom:238.917516px;}
.y116_c01000{bottom:239.752320px;}
.y11e_c01000{bottom:253.139946px;}
.y11d_c01000{bottom:255.499836px;}
.y11c_c01000{bottom:261.279246px;}
.y11b_c01000{bottom:263.548500px;}
.y115_c01000{bottom:267.072372px;}
.y114_c01000{bottom:268.654608px;}
.y113_c01000{bottom:269.722872px;}
.y112_c01000{bottom:272.084652px;}
.y111_c01000{bottom:273.159396px;}
.y110_c01000{bottom:274.198536px;}
.y10f_c01000{bottom:275.485824px;}
.y10e_c01000{bottom:276.552108px;}
.y10d_c01000{bottom:277.564500px;}
.y10c_c01000{bottom:291.050259px;}
.y10b_c01000{bottom:294.477714px;}
.y10a_c01000{bottom:295.613178px;}
.y109_c01000{bottom:296.765931px;}
.y108_c01000{bottom:298.269309px;}
.y107_c01000{bottom:301.607820px;}
.y106_c01000{bottom:303.147918px;}
.y105_c01000{bottom:305.741727px;}
.y104_c01000{bottom:307.963134px;}
.y103_c01000{bottom:310.212336px;}
.y102_c01000{bottom:311.312661px;}
.y101_c01000{bottom:312.403500px;}
.yff_c01000{bottom:329.443500px;}
.y100_c01000{bottom:329.973000px;}
.yfe_c01000{bottom:331.087500px;}
.yfd_c01000{bottom:334.695000px;}
.yfc_c01000{bottom:338.067000px;}
.yfb_c01000{bottom:339.022500px;}
.yfa_c01000{bottom:341.007000px;}
.yf9_c01000{bottom:341.953500px;}
.yf8_c01000{bottom:343.299000px;}
.yf7_c01000{bottom:347.244000px;}
.yf6_c01000{bottom:363.831000px;}
.yf5_c01000{bottom:364.954500px;}
.yf4_c01000{bottom:366.051000px;}
.yf3_c01000{bottom:368.271000px;}
.yf2_c01000{bottom:369.355500px;}
.yf1_c01000{bottom:371.160000px;}
.yf0_c01000{bottom:373.369500px;}
.yef_c01000{bottom:374.044500px;}
.yee_c01000{bottom:375.519000px;}
.yed_c01000{bottom:377.707500px;}
.yec_c01000{bottom:379.498500px;}
.yeb_c01000{bottom:383.415000px;}
.yea_c01000{bottom:397.390500px;}
.ye9_c01000{bottom:399.480000px;}
.ye8_c01000{bottom:400.506000px;}
.ye7_c01000{bottom:403.959000px;}
.ye6_c01000{bottom:405.649500px;}
.ye5_c01000{bottom:407.709000px;}
.ye4_c01000{bottom:408.718500px;}
.ye3_c01000{bottom:410.437500px;}
.ye2_c01000{bottom:411.447000px;}
.ye1_c01000{bottom:415.215000px;}
.ye0_c01000{bottom:416.202000px;}
.ydf_c01000{bottom:418.242000px;}
.yde_c01000{bottom:434.269500px;}
.ydd_c01000{bottom:435.490500px;}
.ydc_c01000{bottom:437.508000px;}
.ydb_c01000{bottom:438.330000px;}
.yda_c01000{bottom:440.319000px;}
.yd9_c01000{bottom:441.480000px;}
.yd8_c01000{bottom:445.042500px;}
.yd7_c01000{bottom:449.434500px;}
.yd6_c01000{bottom:451.797000px;}
.yd5_c01000{bottom:454.158000px;}
.yd4_c01000{bottom:471.372000px;}
.yd3_c01000{bottom:480.321000px;}
.yd2_c01000{bottom:481.837500px;}
.yd1_c01000{bottom:484.192500px;}
.yd0_c01000{bottom:484.788000px;}
.ycf_c01000{bottom:486.580500px;}
.yce_c01000{bottom:487.462500px;}
.ycd_c01000{bottom:489.249000px;}
.ycc_c01000{bottom:505.029000px;}
.ycb_c01000{bottom:510.265987px;}
.yca_c01000{bottom:511.125675px;}
.yc9_c01000{bottom:514.179450px;}
.yc8_c01000{bottom:516.678375px;}
.yc7_c01000{bottom:517.482037px;}
.yc6_c01000{bottom:519.986700px;}
.yc5_c01000{bottom:522.430950px;}
.yc4_c01000{bottom:524.605125px;}
.yc3_c01000{bottom:525.426000px;}
.yc2_c01000{bottom:543.686148px;}
.yc1_c01000{bottom:544.596582px;}
.yc0_c01000{bottom:546.431688px;}
.ybf_c01000{bottom:548.038650px;}
.ybe_c01000{bottom:548.921784px;}
.ybd_c01000{bottom:550.823040px;}
.ybc_c01000{bottom:552.660666px;}
.ybb_c01000{bottom:553.890762px;}
.yba_c01000{bottom:555.441234px;}
.yb9_c01000{bottom:558.809634px;}
.yb8_c01000{bottom:561.265878px;}
.yb7_c01000{bottom:562.147500px;}
.yb6_c01000{bottom:578.340000px;}
.yb5_c01000{bottom:580.095198px;}
.yb4_c01000{bottom:581.919572px;}
.yb3_c01000{bottom:583.376978px;}
.yb2_c01000{bottom:584.589045px;}
.yb1_c01000{bottom:587.568488px;}
.yb0_c01000{bottom:588.742437px;}
.yaf_c01000{bottom:590.551136px;}
.yae_c01000{bottom:591.731747px;}
.yad_c01000{bottom:592.643963px;}
.yac_c01000{bottom:594.994166px;}
.yab_c01000{bottom:596.765765px;}
.yaa_c01000{bottom:614.162517px;}
.ya9_c01000{bottom:615.162185px;}
.ya8_c01000{bottom:618.253652px;}
.ya7_c01000{bottom:619.309170px;}
.ya6_c01000{bottom:620.663906px;}
.ya5_c01000{bottom:623.345009px;}
.ya4_c01000{bottom:625.120754px;}
.ya3_c01000{bottom:626.499622px;}
.ya2_c01000{bottom:630.237503px;}
.ya1_c01000{bottom:632.261729px;}
.ya0_c01000{bottom:634.278285px;}
.y9f_c01000{bottom:652.867487px;}
.y9e_c01000{bottom:655.714279px;}
.y9d_c01000{bottom:656.570088px;}
.y9c_c01000{bottom:659.719086px;}
.y9b_c01000{bottom:660.312275px;}
.y9a_c01000{bottom:662.621955px;}
.y99_c01000{bottom:663.448430px;}
.y98_c01000{bottom:664.307012px;}
.y97_c01000{bottom:667.739708px;}
.y96_c01000{bottom:684.354876px;}
.y95_c01000{bottom:686.143548px;}
.y94_c01000{bottom:689.294652px;}
.y93_c01000{bottom:690.392748px;}
.y92_c01000{bottom:692.528508px;}
.y91_c01000{bottom:696.719532px;}
.y90_c01000{bottom:699.560892px;}
.y8f_c01000{bottom:701.318892px;}
.y8e_c01000{bottom:702.553500px;}
.y8d_c01000{bottom:721.830312px;}
.y8c_c01000{bottom:722.677770px;}
.y8b_c01000{bottom:725.285409px;}
.y8a_c01000{bottom:726.999495px;}
.y89_c01000{bottom:729.289161px;}
.y88_c01000{bottom:730.727097px;}
.y87_c01000{bottom:731.826174px;}
.y86_c01000{bottom:734.119767px;}
.y85_c01000{bottom:735.297603px;}
.y84_c01000{bottom:735.872721px;}
.y83_c01000{bottom:737.559174px;}
.y82_c01000{bottom:759.002016px;}
.y81_c01000{bottom:759.709965px;}
.y80_c01000{bottom:760.425984px;}
.y7f_c01000{bottom:760.895283px;}
.y7e_c01000{bottom:762.054018px;}
.y7d_c01000{bottom:762.744411px;}
.y7c_c01000{bottom:763.232883px;}
.y7b_c01000{bottom:764.823327px;}
.y7a_c01000{bottom:765.519660px;}
.y79_c01000{bottom:766.684203px;}
.y78_c01000{bottom:767.380173px;}
.y77_c01000{bottom:769.696536px;}
.y76_c01000{bottom:770.818656px;}
.y75_c01000{bottom:772.665672px;}
.y74_c01000{bottom:795.526950px;}
.y73_c01000{bottom:796.419954px;}
.y72_c01000{bottom:797.325894px;}
.y71_c01000{bottom:798.645564px;}
.y70_c01000{bottom:799.302924px;}
.y6f_c01000{bottom:800.644491px;}
.y6e_c01000{bottom:802.838055px;}
.y6d_c01000{bottom:804.161652px;}
.y6c_c01000{bottom:804.786834px;}
.y6b_c01000{bottom:806.105448px;}
.y6a_c01000{bottom:807.444903px;}
.y69_c01000{bottom:808.312626px;}
.y68_c01000{bottom:829.564593px;}
.y67_c01000{bottom:832.278483px;}
.y66_c01000{bottom:833.291511px;}
.y65_c01000{bottom:834.576255px;}
.y64_c01000{bottom:837.559683px;}
.y63_c01000{bottom:838.563408px;}
.y62_c01000{bottom:840.570609px;}
.y61_c01000{bottom:841.538142px;}
.y60_c01000{bottom:843.513837px;}
.y5f_c01000{bottom:844.776378px;}
.y5e_c01000{bottom:847.999701px;}
.y5d_c01000{bottom:871.561758px;}
.y5c_c01000{bottom:872.952489px;}
.y5b_c01000{bottom:873.556590px;}
.y5a_c01000{bottom:874.128294px;}
.y59_c01000{bottom:874.725612px;}
.y58_c01000{bottom:875.517969px;}
.y57_c01000{bottom:877.108575px;}
.y56_c01000{bottom:878.461116px;}
.y55_c01000{bottom:879.067098px;}
.y54_c01000{bottom:901.412454px;}
.y53_c01000{bottom:903.171030px;}
.y52_c01000{bottom:904.153497px;}
.y51_c01000{bottom:906.474831px;}
.y50_c01000{bottom:907.243665px;}
.y4f_c01000{bottom:910.792149px;}
.y4e_c01000{bottom:913.288491px;}
.y4d_c01000{bottom:913.833693px;}
.y4c_c01000{bottom:915.797091px;}
.y4b_c01000{bottom:935.573436px;}
.y4a_c01000{bottom:936.921819px;}
.y49_c01000{bottom:938.004657px;}
.y48_c01000{bottom:940.369917px;}
.y47_c01000{bottom:942.248451px;}
.y46_c01000{bottom:943.044444px;}
.y45_c01000{bottom:943.576656px;}
.y44_c01000{bottom:945.912003px;}
.y43_c01000{bottom:946.975224px;}
.y42_c01000{bottom:947.772339px;}
.y41_c01000{bottom:948.549276px;}
.y40_c01000{bottom:950.402253px;}
.y3f_c01000{bottom:951.443613px;}
.y3e_c01000{bottom:973.223721px;}
.y3d_c01000{bottom:975.636351px;}
.y3c_c01000{bottom:976.164087px;}
.y3b_c01000{bottom:977.835174px;}
.y3a_c01000{bottom:979.546653px;}
.y39_c01000{bottom:980.509494px;}
.y38_c01000{bottom:981.222393px;}
.y37_c01000{bottom:982.683666px;}
.y36_c01000{bottom:983.420424px;}
.y35_c01000{bottom:984.130782px;}
.y34_c01000{bottom:985.316802px;}
.y33_c01000{bottom:986.281260px;}
.y32_c01000{bottom:1007.198364px;}
.y31_c01000{bottom:1007.973534px;}
.y30_c01000{bottom:1010.526336px;}
.y2f_c01000{bottom:1011.545364px;}
.y2e_c01000{bottom:1013.576673px;}
.y2d_c01000{bottom:1014.086814px;}
.y2c_c01000{bottom:1015.835556px;}
.y2b_c01000{bottom:1016.590596px;}
.y2a_c01000{bottom:1017.621636px;}
.y29_c01000{bottom:1019.622570px;}
.y28_c01000{bottom:1020.584478px;}
.y27_c01000{bottom:1042.212135px;}
.y26_c01000{bottom:1042.904541px;}
.y25_c01000{bottom:1044.537261px;}
.y24_c01000{bottom:1045.229898px;}
.y23_c01000{bottom:1047.096087px;}
.y22_c01000{bottom:1049.381496px;}
.y21_c01000{bottom:1049.885166px;}
.y20_c01000{bottom:1052.591163px;}
.y1f_c01000{bottom:1054.201359px;}
.y1e_c01000{bottom:1054.880499px;}
.y1d_c01000{bottom:1075.306140px;}
.y1c_c01000{bottom:1076.656623px;}
.y1b_c01000{bottom:1077.411663px;}
.y1a_c01000{bottom:1079.225874px;}
.y19_c01000{bottom:1080.996858px;}
.y18_c01000{bottom:1081.742889px;}
.y17_c01000{bottom:1084.064355px;}
.y16_c01000{bottom:1085.580276px;}
.y15_c01000{bottom:1087.078527px;}
.y14_c01000{bottom:1088.320626px;}
.y13_c01000{bottom:1089.350049px;}
.y12_c01000{bottom:1091.325327px;}
.y11_c01000{bottom:1091.856225px;}
.y10_c01000{bottom:1095.653898px;}
.yf_c01000{bottom:1111.792344px;}
.ye_c01000{bottom:1114.512666px;}
.yd_c01000{bottom:1115.503755px;}
.yc_c01000{bottom:1116.235893px;}
.yb_c01000{bottom:1117.202958px;}
.ya_c01000{bottom:1117.945788px;}
.y9_c01000{bottom:1119.153786px;}
.y8_c01000{bottom:1120.627995px;}
.y7_c01000{bottom:1121.328882px;}
.y6_c01000{bottom:1122.556977px;}
.y5_c01000{bottom:1123.259415px;}
.y4_c01000{bottom:1124.000100px;}
.y3_c01000{bottom:1124.694849px;}
.y2_c01000{bottom:1125.907500px;}
.y1_c01000{bottom:1192.846500px;}
.h13_c01000{height:18.007289px;}
.h15_c01000{height:36.000000px;}
.h2_c01000{height:60.000000px;}
.h4_c01000{height:66.015970px;}
.h7_c01000{height:71.964891px;}
.h17_c01000{height:72.010979px;}
.h6_c01000{height:72.017422px;}
.h9_c01000{height:72.022496px;}
.h11_c01000{height:72.025376px;}
.h12_c01000{height:72.029154px;}
.hd_c01000{height:78.000000px;}
.h16_c01000{height:78.011894px;}
.h5_c01000{height:78.018874px;}
.h10_c01000{height:78.022461px;}
.h8_c01000{height:78.030570px;}
.he_c01000{height:78.031584px;}
.hf_c01000{height:83.964587px;}
.hc_c01000{height:84.000000px;}
.h18_c01000{height:84.012809px;}
.h3_c01000{height:84.020326px;}
.hb_c01000{height:90.000000px;}
.h14_c01000{height:90.001170px;}
.ha_c01000{height:114.000000px;}
.h0_c01000{height:1246.320000px;}
.h1_c01000{height:1246.500000px;}
.w0_c01000{width:896.100000px;}
.w1_c01000{width:896.250000px;}
.x0_c01000{left:0.000000px;}
.xd5_c01000{left:143.910000px;}
.xd0_c01000{left:146.482500px;}
.xc8_c01000{left:147.969756px;}
.xb8_c01000{left:149.305500px;}
.xa1_c01000{left:151.923000px;}
.x8e_c01000{left:154.393836px;}
.x7f_c01000{left:156.043260px;}
.x72_c01000{left:157.860135px;}
.x5b_c01000{left:159.350679px;}
.x49_c01000{left:160.931289px;}
.x2e_c01000{left:163.419063px;}
.x11_c01000{left:165.584136px;}
.x3_c01000{left:166.821000px;}
.xbd_c01000{left:182.298916px;}
.x96_c01000{left:186.750000px;}
.x12_c01000{left:188.692641px;}
.xc3_c01000{left:192.366000px;}
.x4a_c01000{left:194.615259px;}
.x1d_c01000{left:198.675138px;}
.xd7_c01000{left:201.746353px;}
.x5c_c01000{left:202.749093px;}
.x37_c01000{left:205.969191px;}
.x25_c01000{left:207.568575px;}
.xbe_c01000{left:214.629054px;}
.xae_c01000{left:216.886500px;}
.xa2_c01000{left:218.097000px;}
.x87_c01000{left:220.732976px;}
.x4_c01000{left:221.941500px;}
.xc9_c01000{left:223.611564px;}
.xd6_c01000{left:233.820000px;}
.xc4_c01000{left:236.794500px;}
.x73_c01000{left:244.832979px;}
.x66_c01000{left:246.453348px;}
.x41_c01000{left:248.415606px;}
.xa3_c01000{left:250.743000px;}
.x5_c01000{left:253.521000px;}
.xca_c01000{left:256.824228px;}
.x2f_c01000{left:261.168063px;}
.x4b_c01000{left:269.737359px;}
.x52_c01000{left:270.990501px;}
.x42_c01000{left:272.106078px;}
.x13_c01000{left:274.589760px;}
.xb9_c01000{left:280.828500px;}
.x38_c01000{left:283.169292px;}
.x88_c01000{left:285.987270px;}
.x6_c01000{left:287.188500px;}
.xd1_c01000{left:288.974865px;}
.x74_c01000{left:290.116986px;}
.x30_c01000{left:293.457063px;}
.x26_c01000{left:294.563661px;}
.x67_c01000{left:299.914536px;}
.x8f_c01000{left:306.860625px;}
.xe0_c01000{left:308.058723px;}
.xdb_c01000{left:309.207042px;}
.x53_c01000{left:313.098609px;}
.x39_c01000{left:315.551373px;}
.xa4_c01000{left:317.151000px;}
.x7_c01000{left:319.117500px;}
.x80_c01000{left:320.918931px;}
.xb2_c01000{left:324.817500px;}
.x31_c01000{left:326.946063px;}
.xe1_c01000{left:329.976842px;}
.xc5_c01000{left:333.729000px;}
.x5d_c01000{left:335.644434px;}
.x27_c01000{left:339.382671px;}
.x90_c01000{left:340.583750px;}
.xdc_c01000{left:342.943942px;}
.xbf_c01000{left:345.986065px;}
.x3a_c01000{left:348.782421px;}
.x81_c01000{left:352.667753px;}
.x7a_c01000{left:353.822481px;}
.x4c_c01000{left:358.068114px;}
.x5e_c01000{left:366.926820px;}
.xaf_c01000{left:370.284000px;}
.x28_c01000{left:372.201945px;}
.x14_c01000{left:373.338582px;}
.x8_c01000{left:374.940000px;}
.x54_c01000{left:378.959526px;}
.x43_c01000{left:380.664702px;}
.x91_c01000{left:384.278026px;}
.xd2_c01000{left:385.783959px;}
.xb3_c01000{left:391.147500px;}
.xa6_c01000{left:392.350500px;}
.x1_c01000{left:393.660000px;}
.x97_c01000{left:394.773000px;}
.xcc_c01000{left:398.644157px;}
.x4d_c01000{left:402.065475px;}
.x1e_c01000{left:404.211159px;}
.x9_c01000{left:406.798500px;}
.x68_c01000{left:410.183445px;}
.x55_c01000{left:411.205350px;}
.x2_c01000{left:418.230000px;}
.x75_c01000{left:420.590502px;}
.xc0_c01000{left:422.198277px;}
.xba_c01000{left:423.405000px;}
.x32_c01000{left:425.772063px;}
.x1f_c01000{left:428.196687px;}
.x5f_c01000{left:433.093224px;}
.x4e_c01000{left:435.287412px;}
.x15_c01000{left:438.507663px;}
.x82_c01000{left:441.397491px;}
.x69_c01000{left:443.319171px;}
.x29_c01000{left:448.211262px;}
.x89_c01000{left:450.877001px;}
.xdd_c01000{left:452.543449px;}
.xbb_c01000{left:455.268000px;}
.xb4_c01000{left:456.289500px;}
.xb0_c01000{left:458.311500px;}
.xd8_c01000{left:462.880958px;}
.x83_c01000{left:464.177561px;}
.x4f_c01000{left:467.072217px;}
.x2a_c01000{left:470.376267px;}
.x9d_c01000{left:471.679500px;}
.xa_c01000{left:473.808000px;}
.x76_c01000{left:475.923651px;}
.x56_c01000{left:478.089069px;}
.xa5_c01000{left:482.635500px;}
.xe2_c01000{left:486.315315px;}
.x3b_c01000{left:490.370184px;}
.x92_c01000{left:494.625750px;}
.x6a_c01000{left:498.776892px;}
.x50_c01000{left:500.670687px;}
.x16_c01000{left:504.411711px;}
.x8a_c01000{left:508.093053px;}
.x3c_c01000{left:512.515194px;}
.xa7_c01000{left:514.339500px;}
.xde_c01000{left:516.440763px;}
.xcd_c01000{left:520.025653px;}
.xc6_c01000{left:521.428500px;}
.xb5_c01000{left:523.230000px;}
.xb_c01000{left:528.717000px;}
.x6b_c01000{left:531.929118px;}
.x44_c01000{left:534.933303px;}
.x20_c01000{left:537.058596px;}
.x60_c01000{left:542.760042px;}
.x3d_c01000{left:545.695242px;}
.x33_c01000{left:547.332063px;}
.xce_c01000{left:552.546100px;}
.xb1_c01000{left:557.323500px;}
.x2b_c01000{left:558.683820px;}
.x98_c01000{left:559.708500px;}
.xc_c01000{left:562.482000px;}
.x77_c01000{left:563.968896px;}
.xc1_c01000{left:565.543289px;}
.x45_c01000{left:568.379577px;}
.x7b_c01000{left:573.364719px;}
.xd3_c01000{left:574.373181px;}
.x51_c01000{left:577.937985px;}
.x84_c01000{left:585.150722px;}
.xc7_c01000{left:587.355000px;}
.x8b_c01000{left:594.509837px;}
.x2c_c01000{left:602.956830px;}
.x17_c01000{left:605.362500px;}
.xd_c01000{left:606.439500px;}
.x6c_c01000{left:607.632768px;}
.x61_c01000{left:609.811479px;}
.x57_c01000{left:611.027205px;}
.xa8_c01000{left:613.303500px;}
.x85_c01000{left:618.002631px;}
.x34_c01000{left:623.290563px;}
.x21_c01000{left:625.910043px;}
.x99_c01000{left:627.610500px;}
.x6d_c01000{left:630.859263px;}
.x18_c01000{left:637.772274px;}
.xe_c01000{left:639.718500px;}
.x62_c01000{left:642.692931px;}
.xa9_c01000{left:645.574500px;}
.x35_c01000{left:647.278563px;}
.x93_c01000{left:649.643370px;}
.xdf_c01000{left:650.871382px;}
.x58_c01000{left:653.871681px;}
.x22_c01000{left:658.894269px;}
.x6e_c01000{left:663.741489px;}
.x46_c01000{left:669.324366px;}
.x8c_c01000{left:672.190077px;}
.x7c_c01000{left:674.321661px;}
.xc2_c01000{left:676.949271px;}
.xb6_c01000{left:678.019500px;}
.xf_c01000{left:684.768000px;}
.xd9_c01000{left:685.953661px;}
.x59_c01000{left:687.639741px;}
.xd4_c01000{left:697.843587px;}
.xaa_c01000{left:700.825500px;}
.x94_c01000{left:703.571037px;}
.x63_c01000{left:708.680835px;}
.x47_c01000{left:712.071942px;}
.x19_c01000{left:714.792591px;}
.x9a_c01000{left:716.542500px;}
.x6f_c01000{left:718.935210px;}
.x3e_c01000{left:722.564487px;}
.xab_c01000{left:723.658500px;}
.x9e_c01000{left:725.934000px;}
.x86_c01000{left:727.387182px;}
.x78_c01000{left:730.191777px;}
.x23_c01000{left:736.655985px;}
.x70_c01000{left:741.290205px;}
.xbc_c01000{left:742.725000px;}
.xb7_c01000{left:745.266000px;}
.x2d_c01000{left:747.679662px;}
.xda_c01000{left:751.243306px;}
.x64_c01000{left:753.952815px;}
.x36_c01000{left:756.943563px;}
.x9f_c01000{left:760.321500px;}
.x79_c01000{left:762.777906px;}
.xcb_c01000{left:763.997718px;}
.x3f_c01000{left:767.691507px;}
.x24_c01000{left:769.629711px;}
.x95_c01000{left:771.062289px;}
.x7d_c01000{left:772.695189px;}
.x71_c01000{left:775.405464px;}
.x5a_c01000{left:778.118835px;}
.xac_c01000{left:779.680500px;}
.x9b_c01000{left:782.082000px;}
.x48_c01000{left:788.528259px;}
.xa0_c01000{left:792.450000px;}
.x1a_c01000{left:793.641342px;}
.xcf_c01000{left:796.753648px;}
.x65_c01000{left:798.636795px;}
.x8d_c01000{left:803.984331px;}
.x10_c01000{left:808.419000px;}
.xad_c01000{left:813.579000px;}
.x9c_c01000{left:814.597500px;}
.x40_c01000{left:823.865532px;}
.x1b_c01000{left:826.460616px;}
.x7e_c01000{left:828.535293px;}
.x1c_c01000{left:885.185829px;}
@media print{
.v0_c01000{vertical-align:0.000000pt;}
.ls0_c01000{letter-spacing:0.000000pt;}
.ws0_c01000{word-spacing:0.000000pt;}
.fs11_c01000{font-size:16.006479pt;}
.fs13_c01000{font-size:32.000000pt;}
.fs0_c01000{font-size:53.333333pt;}
.fs2_c01000{font-size:58.680862pt;}
.fs5_c01000{font-size:63.968792pt;}
.fs15_c01000{font-size:64.009759pt;}
.fs4_c01000{font-size:64.015486pt;}
.fs7_c01000{font-size:64.019997pt;}
.fsf_c01000{font-size:64.022556pt;}
.fs10_c01000{font-size:64.025915pt;}
.fsb_c01000{font-size:69.333333pt;}
.fs14_c01000{font-size:69.343906pt;}
.fs3_c01000{font-size:69.350110pt;}
.fse_c01000{font-size:69.353298pt;}
.fs6_c01000{font-size:69.360507pt;}
.fsc_c01000{font-size:69.361408pt;}
.fsd_c01000{font-size:74.635188pt;}
.fsa_c01000{font-size:74.666667pt;}
.fs16_c01000{font-size:74.678052pt;}
.fs1_c01000{font-size:74.684734pt;}
.fs9_c01000{font-size:80.000000pt;}
.fs12_c01000{font-size:80.001040pt;}
.fs8_c01000{font-size:101.333333pt;}
.y0_c01000{bottom:0.000000pt;}
.y14d_c01000{bottom:68.175857pt;}
.y14c_c01000{bottom:71.507833pt;}
.y14b_c01000{bottom:73.261573pt;}
.y147_c01000{bottom:73.935517pt;}
.y146_c01000{bottom:77.283897pt;}
.y14a_c01000{bottom:79.435917pt;}
.y145_c01000{bottom:79.452613pt;}
.y149_c01000{bottom:80.546921pt;}
.y144_c01000{bottom:80.953901pt;}
.y143_c01000{bottom:85.551861pt;}
.y148_c01000{bottom:85.937229pt;}
.y142_c01000{bottom:88.451765pt;}
.y13e_c01000{bottom:89.278581pt;}
.y13d_c01000{bottom:91.993077pt;}
.y141_c01000{bottom:93.425073pt;}
.y13c_c01000{bottom:94.781557pt;}
.y140_c01000{bottom:94.955405pt;}
.y13f_c01000{bottom:99.857197pt;}
.y13b_c01000{bottom:100.061109pt;}
.y13a_c01000{bottom:104.308853pt;}
.y139_c01000{bottom:108.991093pt;}
.y138_c01000{bottom:110.362613pt;}
.y137_c01000{bottom:115.461749pt;}
.y136_c01000{bottom:117.857333pt;}
.y135_c01000{bottom:126.025333pt;}
.y134_c01000{bottom:127.855647pt;}
.y133_c01000{bottom:129.177867pt;}
.y132_c01000{bottom:131.790147pt;}
.y131_c01000{bottom:133.188267pt;}
.y130_c01000{bottom:136.733907pt;}
.y12f_c01000{bottom:141.126387pt;}
.y12e_c01000{bottom:144.285027pt;}
.y12d_c01000{bottom:146.875887pt;}
.y12c_c01000{bottom:148.161267pt;}
.y12b_c01000{bottom:153.866667pt;}
.y12a_c01000{bottom:154.929673pt;}
.y128_c01000{bottom:160.042996pt;}
.y129_c01000{bottom:160.299987pt;}
.y127_c01000{bottom:161.570597pt;}
.y126_c01000{bottom:165.724313pt;}
.y125_c01000{bottom:169.992297pt;}
.y124_c01000{bottom:171.559401pt;}
.y123_c01000{bottom:173.093009pt;}
.y122_c01000{bottom:175.194283pt;}
.y121_c01000{bottom:178.817151pt;}
.y120_c01000{bottom:180.896941pt;}
.y11f_c01000{bottom:185.546667pt;}
.y11a_c01000{bottom:206.978571pt;}
.y119_c01000{bottom:211.660779pt;}
.y118_c01000{bottom:212.103829pt;}
.y117_c01000{bottom:212.371125pt;}
.y116_c01000{bottom:213.113173pt;}
.y11e_c01000{bottom:225.013285pt;}
.y11d_c01000{bottom:227.110965pt;}
.y11c_c01000{bottom:232.248219pt;}
.y11b_c01000{bottom:234.265333pt;}
.y115_c01000{bottom:237.397664pt;}
.y114_c01000{bottom:238.804096pt;}
.y113_c01000{bottom:239.753664pt;}
.y112_c01000{bottom:241.853024pt;}
.y111_c01000{bottom:242.808352pt;}
.y110_c01000{bottom:243.732032pt;}
.y10f_c01000{bottom:244.876288pt;}
.y10e_c01000{bottom:245.824096pt;}
.y10d_c01000{bottom:246.724000pt;}
.y10c_c01000{bottom:258.711341pt;}
.y10b_c01000{bottom:261.757968pt;}
.y10a_c01000{bottom:262.767269pt;}
.y109_c01000{bottom:263.791939pt;}
.y108_c01000{bottom:265.128275pt;}
.y107_c01000{bottom:268.095840pt;}
.y106_c01000{bottom:269.464816pt;}
.y105_c01000{bottom:271.770424pt;}
.y104_c01000{bottom:273.745008pt;}
.y103_c01000{bottom:275.744299pt;}
.y102_c01000{bottom:276.722365pt;}
.y101_c01000{bottom:277.692000pt;}
.yff_c01000{bottom:292.838667pt;}
.y100_c01000{bottom:293.309333pt;}
.yfe_c01000{bottom:294.300000pt;}
.yfd_c01000{bottom:297.506667pt;}
.yfc_c01000{bottom:300.504000pt;}
.yfb_c01000{bottom:301.353333pt;}
.yfa_c01000{bottom:303.117333pt;}
.yf9_c01000{bottom:303.958667pt;}
.yf8_c01000{bottom:305.154667pt;}
.yf7_c01000{bottom:308.661333pt;}
.yf6_c01000{bottom:323.405333pt;}
.yf5_c01000{bottom:324.404000pt;}
.yf4_c01000{bottom:325.378667pt;}
.yf3_c01000{bottom:327.352000pt;}
.yf2_c01000{bottom:328.316000pt;}
.yf1_c01000{bottom:329.920000pt;}
.yf0_c01000{bottom:331.884000pt;}
.yef_c01000{bottom:332.484000pt;}
.yee_c01000{bottom:333.794667pt;}
.yed_c01000{bottom:335.740000pt;}
.yec_c01000{bottom:337.332000pt;}
.yeb_c01000{bottom:340.813333pt;}
.yea_c01000{bottom:353.236000pt;}
.ye9_c01000{bottom:355.093333pt;}
.ye8_c01000{bottom:356.005333pt;}
.ye7_c01000{bottom:359.074667pt;}
.ye6_c01000{bottom:360.577333pt;}
.ye5_c01000{bottom:362.408000pt;}
.ye4_c01000{bottom:363.305333pt;}
.ye3_c01000{bottom:364.833333pt;}
.ye2_c01000{bottom:365.730667pt;}
.ye1_c01000{bottom:369.080000pt;}
.ye0_c01000{bottom:369.957333pt;}
.ydf_c01000{bottom:371.770667pt;}
.yde_c01000{bottom:386.017333pt;}
.ydd_c01000{bottom:387.102667pt;}
.ydc_c01000{bottom:388.896000pt;}
.ydb_c01000{bottom:389.626667pt;}
.yda_c01000{bottom:391.394667pt;}
.yd9_c01000{bottom:392.426667pt;}
.yd8_c01000{bottom:395.593333pt;}
.yd7_c01000{bottom:399.497333pt;}
.yd6_c01000{bottom:401.597333pt;}
.yd5_c01000{bottom:403.696000pt;}
.yd4_c01000{bottom:418.997333pt;}
.yd3_c01000{bottom:426.952000pt;}
.yd2_c01000{bottom:428.300000pt;}
.yd1_c01000{bottom:430.393333pt;}
.yd0_c01000{bottom:430.922667pt;}
.ycf_c01000{bottom:432.516000pt;}
.yce_c01000{bottom:433.300000pt;}
.ycd_c01000{bottom:434.888000pt;}
.ycc_c01000{bottom:448.914667pt;}
.ycb_c01000{bottom:453.569767pt;}
.yca_c01000{bottom:454.333933pt;}
.yc9_c01000{bottom:457.048400pt;}
.yc8_c01000{bottom:459.269667pt;}
.yc7_c01000{bottom:459.984033pt;}
.yc6_c01000{bottom:462.210400pt;}
.yc5_c01000{bottom:464.383067pt;}
.yc4_c01000{bottom:466.315667pt;}
.yc3_c01000{bottom:467.045333pt;}
.yc2_c01000{bottom:483.276576pt;}
.yc1_c01000{bottom:484.085851pt;}
.yc0_c01000{bottom:485.717056pt;}
.ybf_c01000{bottom:487.145467pt;}
.ybe_c01000{bottom:487.930475pt;}
.ybd_c01000{bottom:489.620480pt;}
.ybc_c01000{bottom:491.253925pt;}
.ybb_c01000{bottom:492.347344pt;}
.yba_c01000{bottom:493.725541pt;}
.yb9_c01000{bottom:496.719675pt;}
.yb8_c01000{bottom:498.903003pt;}
.yb7_c01000{bottom:499.686667pt;}
.yb6_c01000{bottom:514.080000pt;}
.yb5_c01000{bottom:515.640176pt;}
.yb4_c01000{bottom:517.261841pt;}
.yb3_c01000{bottom:518.557313pt;}
.yb2_c01000{bottom:519.634707pt;}
.yb1_c01000{bottom:522.283100pt;}
.yb0_c01000{bottom:523.326611pt;}
.yaf_c01000{bottom:524.934343pt;}
.yae_c01000{bottom:525.983775pt;}
.yad_c01000{bottom:526.794633pt;}
.yac_c01000{bottom:528.883703pt;}
.yab_c01000{bottom:530.458457pt;}
.yaa_c01000{bottom:545.922237pt;}
.ya9_c01000{bottom:546.810831pt;}
.ya8_c01000{bottom:549.558801pt;}
.ya7_c01000{bottom:550.497040pt;}
.ya6_c01000{bottom:551.701249pt;}
.ya5_c01000{bottom:554.084452pt;}
.ya4_c01000{bottom:555.662892pt;}
.ya3_c01000{bottom:556.888553pt;}
.ya2_c01000{bottom:560.211113pt;}
.ya1_c01000{bottom:562.010425pt;}
.ya0_c01000{bottom:563.802920pt;}
.y9f_c01000{bottom:580.326655pt;}
.y9e_c01000{bottom:582.857137pt;}
.y9d_c01000{bottom:583.617856pt;}
.y9c_c01000{bottom:586.416965pt;}
.y9b_c01000{bottom:586.944244pt;}
.y9a_c01000{bottom:588.997293pt;}
.y99_c01000{bottom:589.731937pt;}
.y98_c01000{bottom:590.495121pt;}
.y97_c01000{bottom:593.546407pt;}
.y96_c01000{bottom:608.315445pt;}
.y95_c01000{bottom:609.905376pt;}
.y94_c01000{bottom:612.706357pt;}
.y93_c01000{bottom:613.682443pt;}
.y92_c01000{bottom:615.580896pt;}
.y91_c01000{bottom:619.306251pt;}
.y90_c01000{bottom:621.831904pt;}
.y8f_c01000{bottom:623.394571pt;}
.y8e_c01000{bottom:624.492000pt;}
.y8d_c01000{bottom:641.626944pt;}
.y8c_c01000{bottom:642.380240pt;}
.y8b_c01000{bottom:644.698141pt;}
.y8a_c01000{bottom:646.221773pt;}
.y89_c01000{bottom:648.257032pt;}
.y88_c01000{bottom:649.535197pt;}
.y87_c01000{bottom:650.512155pt;}
.y86_c01000{bottom:652.550904pt;}
.y85_c01000{bottom:653.597869pt;}
.y84_c01000{bottom:654.109085pt;}
.y83_c01000{bottom:655.608155pt;}
.y82_c01000{bottom:674.668459pt;}
.y81_c01000{bottom:675.297747pt;}
.y80_c01000{bottom:675.934208pt;}
.y7f_c01000{bottom:676.351363pt;}
.y7e_c01000{bottom:677.381349pt;}
.y7d_c01000{bottom:677.995032pt;}
.y7c_c01000{bottom:678.429229pt;}
.y7b_c01000{bottom:679.842957pt;}
.y7a_c01000{bottom:680.461920pt;}
.y79_c01000{bottom:681.497069pt;}
.y78_c01000{bottom:682.115709pt;}
.y77_c01000{bottom:684.174699pt;}
.y76_c01000{bottom:685.172139pt;}
.y75_c01000{bottom:686.813931pt;}
.y74_c01000{bottom:707.135067pt;}
.y73_c01000{bottom:707.928848pt;}
.y72_c01000{bottom:708.734128pt;}
.y71_c01000{bottom:709.907168pt;}
.y70_c01000{bottom:710.491488pt;}
.y6f_c01000{bottom:711.683992pt;}
.y6e_c01000{bottom:713.633827pt;}
.y6d_c01000{bottom:714.810357pt;}
.y6c_c01000{bottom:715.366075pt;}
.y6b_c01000{bottom:716.538176pt;}
.y6a_c01000{bottom:717.728803pt;}
.y69_c01000{bottom:718.500112pt;}
.y68_c01000{bottom:737.390749pt;}
.y67_c01000{bottom:739.803096pt;}
.y66_c01000{bottom:740.703565pt;}
.y65_c01000{bottom:741.845560pt;}
.y64_c01000{bottom:744.497496pt;}
.y63_c01000{bottom:745.389696pt;}
.y62_c01000{bottom:747.173875pt;}
.y61_c01000{bottom:748.033904pt;}
.y60_c01000{bottom:749.790077pt;}
.y5f_c01000{bottom:750.912336pt;}
.y5e_c01000{bottom:753.777512pt;}
.y5d_c01000{bottom:774.721563pt;}
.y5c_c01000{bottom:775.957768pt;}
.y5b_c01000{bottom:776.494747pt;}
.y5a_c01000{bottom:777.002928pt;}
.y59_c01000{bottom:777.533877pt;}
.y58_c01000{bottom:778.238195pt;}
.y57_c01000{bottom:779.652067pt;}
.y56_c01000{bottom:780.854325pt;}
.y55_c01000{bottom:781.392976pt;}
.y54_c01000{bottom:801.255515pt;}
.y53_c01000{bottom:802.818693pt;}
.y52_c01000{bottom:803.691997pt;}
.y51_c01000{bottom:805.755405pt;}
.y50_c01000{bottom:806.438813pt;}
.y4f_c01000{bottom:809.593021pt;}
.y4e_c01000{bottom:811.811992pt;}
.y4d_c01000{bottom:812.296616pt;}
.y4c_c01000{bottom:814.041859pt;}
.y4b_c01000{bottom:831.620832pt;}
.y4a_c01000{bottom:832.819395pt;}
.y49_c01000{bottom:833.781917pt;}
.y48_c01000{bottom:835.884371pt;}
.y47_c01000{bottom:837.554179pt;}
.y46_c01000{bottom:838.261728pt;}
.y45_c01000{bottom:838.734805pt;}
.y44_c01000{bottom:840.810669pt;}
.y43_c01000{bottom:841.755755pt;}
.y42_c01000{bottom:842.464301pt;}
.y41_c01000{bottom:843.154912pt;}
.y40_c01000{bottom:844.802003pt;}
.y3f_c01000{bottom:845.727656pt;}
.y3e_c01000{bottom:865.087752pt;}
.y3d_c01000{bottom:867.232312pt;}
.y3c_c01000{bottom:867.701411pt;}
.y3b_c01000{bottom:869.186821pt;}
.y3a_c01000{bottom:870.708136pt;}
.y39_c01000{bottom:871.563995pt;}
.y38_c01000{bottom:872.197683pt;}
.y37_c01000{bottom:873.496592pt;}
.y36_c01000{bottom:874.151488pt;}
.y35_c01000{bottom:874.782917pt;}
.y34_c01000{bottom:875.837157pt;}
.y33_c01000{bottom:876.694453pt;}
.y32_c01000{bottom:895.287435pt;}
.y31_c01000{bottom:895.976475pt;}
.y30_c01000{bottom:898.245632pt;}
.y2f_c01000{bottom:899.151435pt;}
.y2e_c01000{bottom:900.957043pt;}
.y2d_c01000{bottom:901.410501pt;}
.y2c_c01000{bottom:902.964939pt;}
.y2b_c01000{bottom:903.636085pt;}
.y2a_c01000{bottom:904.552565pt;}
.y29_c01000{bottom:906.331173pt;}
.y28_c01000{bottom:907.186203pt;}
.y27_c01000{bottom:926.410787pt;}
.y26_c01000{bottom:927.026259pt;}
.y25_c01000{bottom:928.477565pt;}
.y24_c01000{bottom:929.093243pt;}
.y23_c01000{bottom:930.752077pt;}
.y22_c01000{bottom:932.783552pt;}
.y21_c01000{bottom:933.231259pt;}
.y20_c01000{bottom:935.636589pt;}
.y1f_c01000{bottom:937.067875pt;}
.y1e_c01000{bottom:937.671555pt;}
.y1d_c01000{bottom:955.827680pt;}
.y1c_c01000{bottom:957.028109pt;}
.y1b_c01000{bottom:957.699256pt;}
.y1a_c01000{bottom:959.311888pt;}
.y19_c01000{bottom:960.886096pt;}
.y18_c01000{bottom:961.549235pt;}
.y17_c01000{bottom:963.612760pt;}
.y16_c01000{bottom:964.960245pt;}
.y15_c01000{bottom:966.292024pt;}
.y14_c01000{bottom:967.396112pt;}
.y13_c01000{bottom:968.311155pt;}
.y12_c01000{bottom:970.066957pt;}
.y11_c01000{bottom:970.538867pt;}
.y10_c01000{bottom:973.914576pt;}
.yf_c01000{bottom:988.259861pt;}
.ye_c01000{bottom:990.677925pt;}
.yd_c01000{bottom:991.558893pt;}
.yc_c01000{bottom:992.209683pt;}
.yb_c01000{bottom:993.069296pt;}
.ya_c01000{bottom:993.729589pt;}
.y9_c01000{bottom:994.803365pt;}
.y8_c01000{bottom:996.113773pt;}
.y7_c01000{bottom:996.736784pt;}
.y6_c01000{bottom:997.828424pt;}
.y5_c01000{bottom:998.452813pt;}
.y4_c01000{bottom:999.111200pt;}
.y3_c01000{bottom:999.728755pt;}
.y2_c01000{bottom:1000.806667pt;}
.y1_c01000{bottom:1060.308000pt;}
.h13_c01000{height:16.006479pt;}
.h15_c01000{height:32.000000pt;}
.h2_c01000{height:53.333333pt;}
.h4_c01000{height:58.680862pt;}
.h7_c01000{height:63.968792pt;}
.h17_c01000{height:64.009759pt;}
.h6_c01000{height:64.015486pt;}
.h9_c01000{height:64.019997pt;}
.h11_c01000{height:64.022556pt;}
.h12_c01000{height:64.025915pt;}
.hd_c01000{height:69.333333pt;}
.h16_c01000{height:69.343906pt;}
.h5_c01000{height:69.350110pt;}
.h10_c01000{height:69.353298pt;}
.h8_c01000{height:69.360507pt;}
.he_c01000{height:69.361408pt;}
.hf_c01000{height:74.635188pt;}
.hc_c01000{height:74.666667pt;}
.h18_c01000{height:74.678052pt;}
.h3_c01000{height:74.684734pt;}
.hb_c01000{height:80.000000pt;}
.h14_c01000{height:80.001040pt;}
.ha_c01000{height:101.333333pt;}
.h0_c01000{height:1107.840000pt;}
.h1_c01000{height:1108.000000pt;}
.w0_c01000{width:796.533333pt;}
.w1_c01000{width:796.666667pt;}
.x0_c01000{left:0.000000pt;}
.xd5_c01000{left:127.920000pt;}
.xd0_c01000{left:130.206667pt;}
.xc8_c01000{left:131.528672pt;}
.xb8_c01000{left:132.716000pt;}
.xa1_c01000{left:135.042667pt;}
.x8e_c01000{left:137.238965pt;}
.x7f_c01000{left:138.705120pt;}
.x72_c01000{left:140.320120pt;}
.x5b_c01000{left:141.645048pt;}
.x49_c01000{left:143.050035pt;}
.x2e_c01000{left:145.261389pt;}
.x11_c01000{left:147.185899pt;}
.x3_c01000{left:148.285333pt;}
.xbd_c01000{left:162.043481pt;}
.x96_c01000{left:166.000000pt;}
.x12_c01000{left:167.726792pt;}
.xc3_c01000{left:170.992000pt;}
.x4a_c01000{left:172.991341pt;}
.x1d_c01000{left:176.600123pt;}
.xd7_c01000{left:179.330092pt;}
.x5c_c01000{left:180.221416pt;}
.x37_c01000{left:183.083725pt;}
.x25_c01000{left:184.505400pt;}
.xbe_c01000{left:190.781381pt;}
.xae_c01000{left:192.788000pt;}
.xa2_c01000{left:193.864000pt;}
.x87_c01000{left:196.207089pt;}
.x4_c01000{left:197.281333pt;}
.xc9_c01000{left:198.765835pt;}
.xd6_c01000{left:207.840000pt;}
.xc4_c01000{left:210.484000pt;}
.x73_c01000{left:217.629315pt;}
.x66_c01000{left:219.069643pt;}
.x41_c01000{left:220.813872pt;}
.xa3_c01000{left:222.882667pt;}
.x5_c01000{left:225.352000pt;}
.xca_c01000{left:228.288203pt;}
.x2f_c01000{left:232.149389pt;}
.x4b_c01000{left:239.766541pt;}
.x52_c01000{left:240.880445pt;}
.x42_c01000{left:241.872069pt;}
.x13_c01000{left:244.079787pt;}
.xb9_c01000{left:249.625333pt;}
.x38_c01000{left:251.706037pt;}
.x88_c01000{left:254.210907pt;}
.x6_c01000{left:255.278667pt;}
.xd1_c01000{left:256.866547pt;}
.x74_c01000{left:257.881765pt;}
.x30_c01000{left:260.850723pt;}
.x26_c01000{left:261.834365pt;}
.x67_c01000{left:266.590699pt;}
.x8f_c01000{left:272.765000pt;}
.xe0_c01000{left:273.829976pt;}
.xdb_c01000{left:274.850704pt;}
.x53_c01000{left:278.309875pt;}
.x39_c01000{left:280.490109pt;}
.xa4_c01000{left:281.912000pt;}
.x7_c01000{left:283.660000pt;}
.x80_c01000{left:285.261272pt;}
.xb2_c01000{left:288.726667pt;}
.x31_c01000{left:290.618723pt;}
.xe1_c01000{left:293.312748pt;}
.xc5_c01000{left:296.648000pt;}
.x5d_c01000{left:298.350608pt;}
.x27_c01000{left:301.673485pt;}
.x90_c01000{left:302.741111pt;}
.xdc_c01000{left:304.839060pt;}
.xbf_c01000{left:307.543169pt;}
.x3a_c01000{left:310.028819pt;}
.x81_c01000{left:313.482447pt;}
.x7a_c01000{left:314.508872pt;}
.x4c_c01000{left:318.282768pt;}
.x5e_c01000{left:326.157173pt;}
.xaf_c01000{left:329.141333pt;}
.x28_c01000{left:330.846173pt;}
.x14_c01000{left:331.856517pt;}
.x8_c01000{left:333.280000pt;}
.x54_c01000{left:336.852912pt;}
.x43_c01000{left:338.368624pt;}
.x91_c01000{left:341.580468pt;}
.xd2_c01000{left:342.919075pt;}
.xb3_c01000{left:347.686667pt;}
.xa6_c01000{left:348.756000pt;}
.x1_c01000{left:349.920000pt;}
.x97_c01000{left:350.909333pt;}
.xcc_c01000{left:354.350361pt;}
.x4d_c01000{left:357.391533pt;}
.x1e_c01000{left:359.298808pt;}
.x9_c01000{left:361.598667pt;}
.x68_c01000{left:364.607507pt;}
.x55_c01000{left:365.515867pt;}
.x2_c01000{left:371.760000pt;}
.x75_c01000{left:373.858224pt;}
.xc0_c01000{left:375.287357pt;}
.xba_c01000{left:376.360000pt;}
.x32_c01000{left:378.464056pt;}
.x1f_c01000{left:380.619277pt;}
.x5f_c01000{left:384.971755pt;}
.x4e_c01000{left:386.922144pt;}
.x15_c01000{left:389.784589pt;}
.x82_c01000{left:392.353325pt;}
.x69_c01000{left:394.061485pt;}
.x29_c01000{left:398.410011pt;}
.x89_c01000{left:400.779556pt;}
.xdd_c01000{left:402.260844pt;}
.xbb_c01000{left:404.682667pt;}
.xb4_c01000{left:405.590667pt;}
.xb0_c01000{left:407.388000pt;}
.xd8_c01000{left:411.449740pt;}
.x83_c01000{left:412.602276pt;}
.x4f_c01000{left:415.175304pt;}
.x2a_c01000{left:418.112237pt;}
.x9d_c01000{left:419.270667pt;}
.xa_c01000{left:421.162667pt;}
.x76_c01000{left:423.043245pt;}
.x56_c01000{left:424.968061pt;}
.xa5_c01000{left:429.009333pt;}
.xe2_c01000{left:432.280280pt;}
.x3b_c01000{left:435.884608pt;}
.x92_c01000{left:439.667333pt;}
.x6a_c01000{left:443.357237pt;}
.x50_c01000{left:445.040611pt;}
.x16_c01000{left:448.365965pt;}
.x8a_c01000{left:451.638269pt;}
.x3c_c01000{left:455.569061pt;}
.xa7_c01000{left:457.190667pt;}
.xde_c01000{left:459.058456pt;}
.xcd_c01000{left:462.245025pt;}
.xc6_c01000{left:463.492000pt;}
.xb5_c01000{left:465.093333pt;}
.xb_c01000{left:469.970667pt;}
.x6b_c01000{left:472.825883pt;}
.x44_c01000{left:475.496269pt;}
.x20_c01000{left:477.385419pt;}
.x60_c01000{left:482.453371pt;}
.x3d_c01000{left:485.062437pt;}
.x33_c01000{left:486.517389pt;}
.xce_c01000{left:491.152089pt;}
.xb1_c01000{left:495.398667pt;}
.x2b_c01000{left:496.607840pt;}
.x98_c01000{left:497.518667pt;}
.xc_c01000{left:499.984000pt;}
.x77_c01000{left:501.305685pt;}
.xc1_c01000{left:502.705145pt;}
.x45_c01000{left:505.226291pt;}
.x7b_c01000{left:509.657528pt;}
.xd3_c01000{left:510.553939pt;}
.x51_c01000{left:513.722653pt;}
.x84_c01000{left:520.133975pt;}
.xc7_c01000{left:522.093333pt;}
.x8b_c01000{left:528.453188pt;}
.x2c_c01000{left:535.961627pt;}
.x17_c01000{left:538.100000pt;}
.xd_c01000{left:539.057333pt;}
.x6c_c01000{left:540.118016pt;}
.x61_c01000{left:542.054648pt;}
.x57_c01000{left:543.135293pt;}
.xa8_c01000{left:545.158667pt;}
.x85_c01000{left:549.335672pt;}
.x34_c01000{left:554.036056pt;}
.x21_c01000{left:556.364483pt;}
.x99_c01000{left:557.876000pt;}
.x6d_c01000{left:560.763789pt;}
.x18_c01000{left:566.908688pt;}
.xe_c01000{left:568.638667pt;}
.x62_c01000{left:571.282605pt;}
.xa9_c01000{left:573.844000pt;}
.x35_c01000{left:575.358723pt;}
.x93_c01000{left:577.460773pt;}
.xdf_c01000{left:578.552340pt;}
.x58_c01000{left:581.219272pt;}
.x22_c01000{left:585.683795pt;}
.x6e_c01000{left:589.992435pt;}
.x46_c01000{left:594.954992pt;}
.x8c_c01000{left:597.502291pt;}
.x7c_c01000{left:599.397032pt;}
.xc2_c01000{left:601.732685pt;}
.xb6_c01000{left:602.684000pt;}
.xf_c01000{left:608.682667pt;}
.xd9_c01000{left:609.736588pt;}
.x59_c01000{left:611.235325pt;}
.xd4_c01000{left:620.305411pt;}
.xaa_c01000{left:622.956000pt;}
.x94_c01000{left:625.396477pt;}
.x63_c01000{left:629.938520pt;}
.x47_c01000{left:632.952837pt;}
.x19_c01000{left:635.371192pt;}
.x9a_c01000{left:636.926667pt;}
.x6f_c01000{left:639.053520pt;}
.x3e_c01000{left:642.279544pt;}
.xab_c01000{left:643.252000pt;}
.x9e_c01000{left:645.274667pt;}
.x86_c01000{left:646.566384pt;}
.x78_c01000{left:649.059357pt;}
.x23_c01000{left:654.805320pt;}
.x70_c01000{left:658.924627pt;}
.xbc_c01000{left:660.200000pt;}
.xb7_c01000{left:662.458667pt;}
.x2d_c01000{left:664.604144pt;}
.xda_c01000{left:667.771828pt;}
.x64_c01000{left:670.180280pt;}
.x36_c01000{left:672.838723pt;}
.x9f_c01000{left:675.841333pt;}
.x79_c01000{left:678.024805pt;}
.xcb_c01000{left:679.109083pt;}
.x3f_c01000{left:682.392451pt;}
.x24_c01000{left:684.115299pt;}
.x95_c01000{left:685.388701pt;}
.x7d_c01000{left:686.840168pt;}
.x71_c01000{left:689.249301pt;}
.x5a_c01000{left:691.661187pt;}
.xac_c01000{left:693.049333pt;}
.x9b_c01000{left:695.184000pt;}
.x48_c01000{left:700.914008pt;}
.xa0_c01000{left:704.400000pt;}
.x1a_c01000{left:705.458971pt;}
.xcf_c01000{left:708.225465pt;}
.x65_c01000{left:709.899373pt;}
.x8d_c01000{left:714.652739pt;}
.x10_c01000{left:718.594667pt;}
.xad_c01000{left:723.181333pt;}
.x9c_c01000{left:724.086667pt;}
.x40_c01000{left:732.324917pt;}
.x1b_c01000{left:734.631659pt;}
.x7e_c01000{left:736.475816pt;}
.x1c_c01000{left:786.831848pt;}
}





/* 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_c01001 {
    display:none;
  }
  .loading-indicator_c01001.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01001 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_c01001 { 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_c01001" -> "#page-container .classname_c01001")
 */
.pf_c01001 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01001 { /* 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_c01001.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01001 { /* 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_c01001 { /* 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_c01001 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01001 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01001 {overflow:visible;}
  }
}
.c_c01001 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01001 { /* 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_c01001:after { /* webkit #35443 */
  content: '';
}
.t_c01001:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01001 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 */
}
.__c01001 { /* 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_c01001 { /* info for Javascript */
  display:none;
}
.l_c01001 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01001 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01001 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01001: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_c01001 {
    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_c01001.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01001.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_c01001 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01001{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01001;src:url('chunks/assets/font_b11a17f404e7258299fdf971.woff2')format("woff");}.ff1_c01001{font-family:ff1_c01001;line-height:1.000000;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;}
.m55_c01001{transform:matrix(0.007808,-0.000180,0.005748,0.249934,0,0);-ms-transform:matrix(0.007808,-0.000180,0.005748,0.249934,0,0);-webkit-transform:matrix(0.007808,-0.000180,0.005748,0.249934,0,0);}
.m4a_c01001{transform:matrix(0.010812,-0.000249,0.005748,0.249934,0,0);-ms-transform:matrix(0.010812,-0.000249,0.005748,0.249934,0,0);-webkit-transform:matrix(0.010812,-0.000249,0.005748,0.249934,0,0);}
.m5b_c01001{transform:matrix(0.019205,-0.000442,0.005748,0.249934,0,0);-ms-transform:matrix(0.019205,-0.000442,0.005748,0.249934,0,0);-webkit-transform:matrix(0.019205,-0.000442,0.005748,0.249934,0,0);}
.m4b_c01001{transform:matrix(0.021629,-0.000497,0.005748,0.249934,0,0);-ms-transform:matrix(0.021629,-0.000497,0.005748,0.249934,0,0);-webkit-transform:matrix(0.021629,-0.000497,0.005748,0.249934,0,0);}
.m2f_c01001{transform:matrix(0.031812,-0.000732,0.005748,0.249934,0,0);-ms-transform:matrix(0.031812,-0.000732,0.005748,0.249934,0,0);-webkit-transform:matrix(0.031812,-0.000732,0.005748,0.249934,0,0);}
.m31_c01001{transform:matrix(0.081998,-0.001886,0.005748,0.249934,0,0);-ms-transform:matrix(0.081998,-0.001886,0.005748,0.249934,0,0);-webkit-transform:matrix(0.081998,-0.001886,0.005748,0.249934,0,0);}
.m3e_c01001{transform:matrix(0.093500,-0.002151,0.005748,0.249934,0,0);-ms-transform:matrix(0.093500,-0.002151,0.005748,0.249934,0,0);-webkit-transform:matrix(0.093500,-0.002151,0.005748,0.249934,0,0);}
.m64_c01001{transform:matrix(0.167596,-0.003855,0.005748,0.249934,0,0);-ms-transform:matrix(0.167596,-0.003855,0.005748,0.249934,0,0);-webkit-transform:matrix(0.167596,-0.003855,0.005748,0.249934,0,0);}
.m24_c01001{transform:matrix(0.168938,-0.004392,0.006498,0.249916,0,0);-ms-transform:matrix(0.168938,-0.004392,0.006498,0.249916,0,0);-webkit-transform:matrix(0.168938,-0.004392,0.006498,0.249916,0,0);}
.m37_c01001{transform:matrix(0.176373,-0.004057,0.005748,0.249934,0,0);-ms-transform:matrix(0.176373,-0.004057,0.005748,0.249934,0,0);-webkit-transform:matrix(0.176373,-0.004057,0.005748,0.249934,0,0);}
.m36_c01001{transform:matrix(0.188775,-0.004342,0.005748,0.249934,0,0);-ms-transform:matrix(0.188775,-0.004342,0.005748,0.249934,0,0);-webkit-transform:matrix(0.188775,-0.004342,0.005748,0.249934,0,0);}
.m4f_c01001{transform:matrix(0.189835,-0.004366,0.005748,0.249934,0,0);-ms-transform:matrix(0.189835,-0.004366,0.005748,0.249934,0,0);-webkit-transform:matrix(0.189835,-0.004366,0.005748,0.249934,0,0);}
.m11_c01001{transform:matrix(0.190360,-0.004569,0.005998,0.249928,0,0);-ms-transform:matrix(0.190360,-0.004569,0.005998,0.249928,0,0);-webkit-transform:matrix(0.190360,-0.004569,0.005998,0.249928,0,0);}
.m2c_c01001{transform:matrix(0.190959,-0.002864,0.003750,0.249972,0,0);-ms-transform:matrix(0.190959,-0.002864,0.003750,0.249972,0,0);-webkit-transform:matrix(0.190959,-0.002864,0.003750,0.249972,0,0);}
.m66_c01001{transform:matrix(0.192634,-0.004431,0.005748,0.249934,0,0);-ms-transform:matrix(0.192634,-0.004431,0.005748,0.249934,0,0);-webkit-transform:matrix(0.192634,-0.004431,0.005748,0.249934,0,0);}
.m5f_c01001{transform:matrix(0.194494,-0.004473,0.005748,0.249934,0,0);-ms-transform:matrix(0.194494,-0.004473,0.005748,0.249934,0,0);-webkit-transform:matrix(0.194494,-0.004473,0.005748,0.249934,0,0);}
.m27_c01001{transform:matrix(0.197728,-0.005141,0.006498,0.249916,0,0);-ms-transform:matrix(0.197728,-0.005141,0.006498,0.249916,0,0);-webkit-transform:matrix(0.197728,-0.005141,0.006498,0.249916,0,0);}
.m67_c01001{transform:matrix(0.205691,-0.004731,0.005748,0.249934,0,0);-ms-transform:matrix(0.205691,-0.004731,0.005748,0.249934,0,0);-webkit-transform:matrix(0.205691,-0.004731,0.005748,0.249934,0,0);}
.m1e_c01001{transform:matrix(0.206945,-0.005381,0.006498,0.249916,0,0);-ms-transform:matrix(0.206945,-0.005381,0.006498,0.249916,0,0);-webkit-transform:matrix(0.206945,-0.005381,0.006498,0.249916,0,0);}
.m50_c01001{transform:matrix(0.209270,-0.004813,0.005748,0.249934,0,0);-ms-transform:matrix(0.209270,-0.004813,0.005748,0.249934,0,0);-webkit-transform:matrix(0.209270,-0.004813,0.005748,0.249934,0,0);}
.m4e_c01001{transform:matrix(0.209999,-0.004830,0.005748,0.249934,0,0);-ms-transform:matrix(0.209999,-0.004830,0.005748,0.249934,0,0);-webkit-transform:matrix(0.209999,-0.004830,0.005748,0.249934,0,0);}
.m54_c01001{transform:matrix(0.213159,-0.004903,0.005748,0.249934,0,0);-ms-transform:matrix(0.213159,-0.004903,0.005748,0.249934,0,0);-webkit-transform:matrix(0.213159,-0.004903,0.005748,0.249934,0,0);}
.m56_c01001{transform:matrix(0.214773,-0.004940,0.005748,0.249934,0,0);-ms-transform:matrix(0.214773,-0.004940,0.005748,0.249934,0,0);-webkit-transform:matrix(0.214773,-0.004940,0.005748,0.249934,0,0);}
.m29_c01001{transform:matrix(0.215741,-0.003236,0.003750,0.249972,0,0);-ms-transform:matrix(0.215741,-0.003236,0.003750,0.249972,0,0);-webkit-transform:matrix(0.215741,-0.003236,0.003750,0.249972,0,0);}
.m65_c01001{transform:matrix(0.216998,-0.004991,0.005748,0.249934,0,0);-ms-transform:matrix(0.216998,-0.004991,0.005748,0.249934,0,0);-webkit-transform:matrix(0.216998,-0.004991,0.005748,0.249934,0,0);}
.m12_c01001{transform:matrix(0.218732,-0.005250,0.005998,0.249928,0,0);-ms-transform:matrix(0.218732,-0.005250,0.005998,0.249928,0,0);-webkit-transform:matrix(0.218732,-0.005250,0.005998,0.249928,0,0);}
.m52_c01001{transform:matrix(0.219932,-0.005058,0.005748,0.249934,0,0);-ms-transform:matrix(0.219932,-0.005058,0.005748,0.249934,0,0);-webkit-transform:matrix(0.219932,-0.005058,0.005748,0.249934,0,0);}
.m47_c01001{transform:matrix(0.221791,-0.005101,0.005748,0.249934,0,0);-ms-transform:matrix(0.221791,-0.005101,0.005748,0.249934,0,0);-webkit-transform:matrix(0.221791,-0.005101,0.005748,0.249934,0,0);}
.m33_c01001{transform:matrix(0.224481,-0.005163,0.005748,0.249934,0,0);-ms-transform:matrix(0.224481,-0.005163,0.005748,0.249934,0,0);-webkit-transform:matrix(0.224481,-0.005163,0.005748,0.249934,0,0);}
.m21_c01001{transform:matrix(0.225864,-0.005872,0.006498,0.249916,0,0);-ms-transform:matrix(0.225864,-0.005872,0.006498,0.249916,0,0);-webkit-transform:matrix(0.225864,-0.005872,0.006498,0.249916,0,0);}
.m23_c01001{transform:matrix(0.226084,-0.005878,0.006498,0.249916,0,0);-ms-transform:matrix(0.226084,-0.005878,0.006498,0.249916,0,0);-webkit-transform:matrix(0.226084,-0.005878,0.006498,0.249916,0,0);}
.m48_c01001{transform:matrix(0.229504,-0.005279,0.005748,0.249934,0,0);-ms-transform:matrix(0.229504,-0.005279,0.005748,0.249934,0,0);-webkit-transform:matrix(0.229504,-0.005279,0.005748,0.249934,0,0);}
.m53_c01001{transform:matrix(0.230914,-0.005311,0.005748,0.249934,0,0);-ms-transform:matrix(0.230914,-0.005311,0.005748,0.249934,0,0);-webkit-transform:matrix(0.230914,-0.005311,0.005748,0.249934,0,0);}
.m3_c01001{transform:matrix(0.231183,-0.005548,0.005998,0.249928,0,0);-ms-transform:matrix(0.231183,-0.005548,0.005998,0.249928,0,0);-webkit-transform:matrix(0.231183,-0.005548,0.005998,0.249928,0,0);}
.m68_c01001{transform:matrix(0.233240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233240,0.000000,0.000000,0.250000,0,0);}
.m34_c01001{transform:matrix(0.233513,-0.005371,0.005748,0.249934,0,0);-ms-transform:matrix(0.233513,-0.005371,0.005748,0.249934,0,0);-webkit-transform:matrix(0.233513,-0.005371,0.005748,0.249934,0,0);}
.m43_c01001{transform:matrix(0.235278,-0.005411,0.005748,0.249934,0,0);-ms-transform:matrix(0.235278,-0.005411,0.005748,0.249934,0,0);-webkit-transform:matrix(0.235278,-0.005411,0.005748,0.249934,0,0);}
.m4d_c01001{transform:matrix(0.236627,-0.005442,0.005748,0.249934,0,0);-ms-transform:matrix(0.236627,-0.005442,0.005748,0.249934,0,0);-webkit-transform:matrix(0.236627,-0.005442,0.005748,0.249934,0,0);}
.m4c_c01001{transform:matrix(0.237777,-0.005469,0.005748,0.249934,0,0);-ms-transform:matrix(0.237777,-0.005469,0.005748,0.249934,0,0);-webkit-transform:matrix(0.237777,-0.005469,0.005748,0.249934,0,0);}
.m1_c01001{transform:matrix(0.238206,-0.005717,0.005998,0.249928,0,0);-ms-transform:matrix(0.238206,-0.005717,0.005998,0.249928,0,0);-webkit-transform:matrix(0.238206,-0.005717,0.005998,0.249928,0,0);}
.m35_c01001{transform:matrix(0.238397,-0.005483,0.005748,0.249934,0,0);-ms-transform:matrix(0.238397,-0.005483,0.005748,0.249934,0,0);-webkit-transform:matrix(0.238397,-0.005483,0.005748,0.249934,0,0);}
.m1c_c01001{transform:matrix(0.240484,-0.006253,0.006498,0.249916,0,0);-ms-transform:matrix(0.240484,-0.006253,0.006498,0.249916,0,0);-webkit-transform:matrix(0.240484,-0.006253,0.006498,0.249916,0,0);}
.m3d_c01001{transform:matrix(0.241541,-0.005555,0.005748,0.249934,0,0);-ms-transform:matrix(0.241541,-0.005555,0.005748,0.249934,0,0);-webkit-transform:matrix(0.241541,-0.005555,0.005748,0.249934,0,0);}
.m5a_c01001{transform:matrix(0.243886,-0.005609,0.005748,0.249934,0,0);-ms-transform:matrix(0.243886,-0.005609,0.005748,0.249934,0,0);-webkit-transform:matrix(0.243886,-0.005609,0.005748,0.249934,0,0);}
.m59_c01001{transform:matrix(0.249984,-0.005750,0.005748,0.249934,0,0);-ms-transform:matrix(0.249984,-0.005750,0.005748,0.249934,0,0);-webkit-transform:matrix(0.249984,-0.005750,0.005748,0.249934,0,0);}
.m61_c01001{transform:matrix(0.252203,-0.005801,0.005748,0.249934,0,0);-ms-transform:matrix(0.252203,-0.005801,0.005748,0.249934,0,0);-webkit-transform:matrix(0.252203,-0.005801,0.005748,0.249934,0,0);}
.m46_c01001{transform:matrix(0.252783,-0.005814,0.005748,0.249934,0,0);-ms-transform:matrix(0.252783,-0.005814,0.005748,0.249934,0,0);-webkit-transform:matrix(0.252783,-0.005814,0.005748,0.249934,0,0);}
.m1d_c01001{transform:matrix(0.253179,-0.006583,0.006498,0.249916,0,0);-ms-transform:matrix(0.253179,-0.006583,0.006498,0.249916,0,0);-webkit-transform:matrix(0.253179,-0.006583,0.006498,0.249916,0,0);}
.m14_c01001{transform:matrix(0.253187,-0.006076,0.005998,0.249928,0,0);-ms-transform:matrix(0.253187,-0.006076,0.005998,0.249928,0,0);-webkit-transform:matrix(0.253187,-0.006076,0.005998,0.249928,0,0);}
.m13_c01001{transform:matrix(0.256496,-0.006156,0.005998,0.249928,0,0);-ms-transform:matrix(0.256496,-0.006156,0.005998,0.249928,0,0);-webkit-transform:matrix(0.256496,-0.006156,0.005998,0.249928,0,0);}
.m6_c01001{transform:matrix(0.257616,-0.006183,0.005998,0.249928,0,0);-ms-transform:matrix(0.257616,-0.006183,0.005998,0.249928,0,0);-webkit-transform:matrix(0.257616,-0.006183,0.005998,0.249928,0,0);}
.m2_c01001{transform:matrix(0.262085,-0.006290,0.005998,0.249928,0,0);-ms-transform:matrix(0.262085,-0.006290,0.005998,0.249928,0,0);-webkit-transform:matrix(0.262085,-0.006290,0.005998,0.249928,0,0);}
.m8_c01001{transform:matrix(0.262859,-0.006309,0.005998,0.249928,0,0);-ms-transform:matrix(0.262859,-0.006309,0.005998,0.249928,0,0);-webkit-transform:matrix(0.262859,-0.006309,0.005998,0.249928,0,0);}
.m38_c01001{transform:matrix(0.263640,-0.006064,0.005748,0.249934,0,0);-ms-transform:matrix(0.263640,-0.006064,0.005748,0.249934,0,0);-webkit-transform:matrix(0.263640,-0.006064,0.005748,0.249934,0,0);}
.m6a_c01001{transform:matrix(0.265388,-0.011689,0.011000,0.249758,0,0);-ms-transform:matrix(0.265388,-0.011689,0.011000,0.249758,0,0);-webkit-transform:matrix(0.265388,-0.011689,0.011000,0.249758,0,0);}
.m45_c01001{transform:matrix(0.265410,-0.006104,0.005748,0.249934,0,0);-ms-transform:matrix(0.265410,-0.006104,0.005748,0.249934,0,0);-webkit-transform:matrix(0.265410,-0.006104,0.005748,0.249934,0,0);}
.m1f_c01001{transform:matrix(0.267525,-0.006956,0.006498,0.249916,0,0);-ms-transform:matrix(0.267525,-0.006956,0.006498,0.249916,0,0);-webkit-transform:matrix(0.267525,-0.006956,0.006498,0.249916,0,0);}
.m60_c01001{transform:matrix(0.269804,-0.006205,0.005748,0.249934,0,0);-ms-transform:matrix(0.269804,-0.006205,0.005748,0.249934,0,0);-webkit-transform:matrix(0.269804,-0.006205,0.005748,0.249934,0,0);}
.m20_c01001{transform:matrix(0.270709,-0.007038,0.006498,0.249916,0,0);-ms-transform:matrix(0.270709,-0.007038,0.006498,0.249916,0,0);-webkit-transform:matrix(0.270709,-0.007038,0.006498,0.249916,0,0);}
.m22_c01001{transform:matrix(0.271808,-0.007067,0.006498,0.249916,0,0);-ms-transform:matrix(0.271808,-0.007067,0.006498,0.249916,0,0);-webkit-transform:matrix(0.271808,-0.007067,0.006498,0.249916,0,0);}
.m7_c01001{transform:matrix(0.275131,-0.006603,0.005998,0.249928,0,0);-ms-transform:matrix(0.275131,-0.006603,0.005998,0.249928,0,0);-webkit-transform:matrix(0.275131,-0.006603,0.005998,0.249928,0,0);}
.m9_c01001{transform:matrix(0.275201,-0.006605,0.005998,0.249928,0,0);-ms-transform:matrix(0.275201,-0.006605,0.005998,0.249928,0,0);-webkit-transform:matrix(0.275201,-0.006605,0.005998,0.249928,0,0);}
.m18_c01001{transform:matrix(0.278020,-0.006672,0.005998,0.249928,0,0);-ms-transform:matrix(0.278020,-0.006672,0.005998,0.249928,0,0);-webkit-transform:matrix(0.278020,-0.006672,0.005998,0.249928,0,0);}
.m49_c01001{transform:matrix(0.280701,-0.006456,0.005748,0.249934,0,0);-ms-transform:matrix(0.280701,-0.006456,0.005748,0.249934,0,0);-webkit-transform:matrix(0.280701,-0.006456,0.005748,0.249934,0,0);}
.m15_c01001{transform:matrix(0.281159,-0.006748,0.005998,0.249928,0,0);-ms-transform:matrix(0.281159,-0.006748,0.005998,0.249928,0,0);-webkit-transform:matrix(0.281159,-0.006748,0.005998,0.249928,0,0);}
.m2e_c01001{transform:matrix(0.281848,-0.004228,0.003750,0.249972,0,0);-ms-transform:matrix(0.281848,-0.004228,0.003750,0.249972,0,0);-webkit-transform:matrix(0.281848,-0.004228,0.003750,0.249972,0,0);}
.m16_c01001{transform:matrix(0.285028,-0.006841,0.005998,0.249928,0,0);-ms-transform:matrix(0.285028,-0.006841,0.005998,0.249928,0,0);-webkit-transform:matrix(0.285028,-0.006841,0.005998,0.249928,0,0);}
.m57_c01001{transform:matrix(0.285849,-0.006575,0.005748,0.249934,0,0);-ms-transform:matrix(0.285849,-0.006575,0.005748,0.249934,0,0);-webkit-transform:matrix(0.285849,-0.006575,0.005748,0.249934,0,0);}
.ma_c01001{transform:matrix(0.292691,-0.007025,0.005998,0.249928,0,0);-ms-transform:matrix(0.292691,-0.007025,0.005998,0.249928,0,0);-webkit-transform:matrix(0.292691,-0.007025,0.005998,0.249928,0,0);}
.m10_c01001{transform:matrix(0.293206,-0.007037,0.005998,0.249928,0,0);-ms-transform:matrix(0.293206,-0.007037,0.005998,0.249928,0,0);-webkit-transform:matrix(0.293206,-0.007037,0.005998,0.249928,0,0);}
.m58_c01001{transform:matrix(0.295142,-0.006788,0.005748,0.249934,0,0);-ms-transform:matrix(0.295142,-0.006788,0.005748,0.249934,0,0);-webkit-transform:matrix(0.295142,-0.006788,0.005748,0.249934,0,0);}
.m3b_c01001{transform:matrix(0.295427,-0.006795,0.005748,0.249934,0,0);-ms-transform:matrix(0.295427,-0.006795,0.005748,0.249934,0,0);-webkit-transform:matrix(0.295427,-0.006795,0.005748,0.249934,0,0);}
.mf_c01001{transform:matrix(0.297964,-0.007151,0.005998,0.249928,0,0);-ms-transform:matrix(0.297964,-0.007151,0.005998,0.249928,0,0);-webkit-transform:matrix(0.297964,-0.007151,0.005998,0.249928,0,0);}
.m17_c01001{transform:matrix(0.300059,-0.007201,0.005998,0.249928,0,0);-ms-transform:matrix(0.300059,-0.007201,0.005998,0.249928,0,0);-webkit-transform:matrix(0.300059,-0.007201,0.005998,0.249928,0,0);}
.m62_c01001{transform:matrix(0.300086,-0.006902,0.005748,0.249934,0,0);-ms-transform:matrix(0.300086,-0.006902,0.005748,0.249934,0,0);-webkit-transform:matrix(0.300086,-0.006902,0.005748,0.249934,0,0);}
.md_c01001{transform:matrix(0.302668,-0.007264,0.005998,0.249928,0,0);-ms-transform:matrix(0.302668,-0.007264,0.005998,0.249928,0,0);-webkit-transform:matrix(0.302668,-0.007264,0.005998,0.249928,0,0);}
.m5c_c01001{transform:matrix(0.304829,-0.007011,0.005748,0.249934,0,0);-ms-transform:matrix(0.304829,-0.007011,0.005748,0.249934,0,0);-webkit-transform:matrix(0.304829,-0.007011,0.005748,0.249934,0,0);}
.m4_c01001{transform:matrix(0.305292,-0.007327,0.005998,0.249928,0,0);-ms-transform:matrix(0.305292,-0.007327,0.005998,0.249928,0,0);-webkit-transform:matrix(0.305292,-0.007327,0.005998,0.249928,0,0);}
.m5_c01001{transform:matrix(0.307526,-0.007381,0.005998,0.249928,0,0);-ms-transform:matrix(0.307526,-0.007381,0.005998,0.249928,0,0);-webkit-transform:matrix(0.307526,-0.007381,0.005998,0.249928,0,0);}
.m51_c01001{transform:matrix(0.307534,-0.007073,0.005748,0.249934,0,0);-ms-transform:matrix(0.307534,-0.007073,0.005748,0.249934,0,0);-webkit-transform:matrix(0.307534,-0.007073,0.005748,0.249934,0,0);}
.m2b_c01001{transform:matrix(0.307975,-0.004620,0.003750,0.249972,0,0);-ms-transform:matrix(0.307975,-0.004620,0.003750,0.249972,0,0);-webkit-transform:matrix(0.307975,-0.004620,0.003750,0.249972,0,0);}
.m28_c01001{transform:matrix(0.317229,-0.004758,0.003750,0.249972,0,0);-ms-transform:matrix(0.317229,-0.004758,0.003750,0.249972,0,0);-webkit-transform:matrix(0.317229,-0.004758,0.003750,0.249972,0,0);}
.me_c01001{transform:matrix(0.318463,-0.007643,0.005998,0.249928,0,0);-ms-transform:matrix(0.318463,-0.007643,0.005998,0.249928,0,0);-webkit-transform:matrix(0.318463,-0.007643,0.005998,0.249928,0,0);}
.m5d_c01001{transform:matrix(0.318566,-0.007327,0.005748,0.249934,0,0);-ms-transform:matrix(0.318566,-0.007327,0.005748,0.249934,0,0);-webkit-transform:matrix(0.318566,-0.007327,0.005748,0.249934,0,0);}
.m2a_c01001{transform:matrix(0.319144,-0.004787,0.003750,0.249972,0,0);-ms-transform:matrix(0.319144,-0.004787,0.003750,0.249972,0,0);-webkit-transform:matrix(0.319144,-0.004787,0.003750,0.249972,0,0);}
.m40_c01001{transform:matrix(0.321125,-0.007386,0.005748,0.249934,0,0);-ms-transform:matrix(0.321125,-0.007386,0.005748,0.249934,0,0);-webkit-transform:matrix(0.321125,-0.007386,0.005748,0.249934,0,0);}
.mb_c01001{transform:matrix(0.327736,-0.007866,0.005998,0.249928,0,0);-ms-transform:matrix(0.327736,-0.007866,0.005998,0.249928,0,0);-webkit-transform:matrix(0.327736,-0.007866,0.005998,0.249928,0,0);}
.m3a_c01001{transform:matrix(0.330233,-0.007595,0.005748,0.249934,0,0);-ms-transform:matrix(0.330233,-0.007595,0.005748,0.249934,0,0);-webkit-transform:matrix(0.330233,-0.007595,0.005748,0.249934,0,0);}
.m25_c01001{transform:matrix(0.338036,-0.008789,0.006498,0.249916,0,0);-ms-transform:matrix(0.338036,-0.008789,0.006498,0.249916,0,0);-webkit-transform:matrix(0.338036,-0.008789,0.006498,0.249916,0,0);}
.m1b_c01001{transform:matrix(0.345043,-0.008971,0.006498,0.249916,0,0);-ms-transform:matrix(0.345043,-0.008971,0.006498,0.249916,0,0);-webkit-transform:matrix(0.345043,-0.008971,0.006498,0.249916,0,0);}
.m2d_c01001{transform:matrix(0.349646,-0.005245,0.003750,0.249972,0,0);-ms-transform:matrix(0.349646,-0.005245,0.003750,0.249972,0,0);-webkit-transform:matrix(0.349646,-0.005245,0.003750,0.249972,0,0);}
.mc_c01001{transform:matrix(0.350804,-0.008419,0.005998,0.249928,0,0);-ms-transform:matrix(0.350804,-0.008419,0.005998,0.249928,0,0);-webkit-transform:matrix(0.350804,-0.008419,0.005998,0.249928,0,0);}
.m42_c01001{transform:matrix(0.351127,-0.008076,0.005748,0.249934,0,0);-ms-transform:matrix(0.351127,-0.008076,0.005748,0.249934,0,0);-webkit-transform:matrix(0.351127,-0.008076,0.005748,0.249934,0,0);}
.m19_c01001{transform:matrix(0.363340,-0.008720,0.005998,0.249928,0,0);-ms-transform:matrix(0.363340,-0.008720,0.005998,0.249928,0,0);-webkit-transform:matrix(0.363340,-0.008720,0.005998,0.249928,0,0);}
.m39_c01001{transform:matrix(0.378705,-0.008710,0.005748,0.249934,0,0);-ms-transform:matrix(0.378705,-0.008710,0.005748,0.249934,0,0);-webkit-transform:matrix(0.378705,-0.008710,0.005748,0.249934,0,0);}
.m26_c01001{transform:matrix(0.385770,-0.010030,0.006498,0.249916,0,0);-ms-transform:matrix(0.385770,-0.010030,0.006498,0.249916,0,0);-webkit-transform:matrix(0.385770,-0.010030,0.006498,0.249916,0,0);}
.m32_c01001{transform:matrix(0.395250,-0.009091,0.005748,0.249934,0,0);-ms-transform:matrix(0.395250,-0.009091,0.005748,0.249934,0,0);-webkit-transform:matrix(0.395250,-0.009091,0.005748,0.249934,0,0);}
.m41_c01001{transform:matrix(0.426962,-0.009820,0.005748,0.249934,0,0);-ms-transform:matrix(0.426962,-0.009820,0.005748,0.249934,0,0);-webkit-transform:matrix(0.426962,-0.009820,0.005748,0.249934,0,0);}
.m69_c01001{transform:matrix(0.446987,-0.019687,0.011000,0.249758,0,0);-ms-transform:matrix(0.446987,-0.019687,0.011000,0.249758,0,0);-webkit-transform:matrix(0.446987,-0.019687,0.011000,0.249758,0,0);}
.m63_c01001{transform:matrix(0.485617,-0.011169,0.005748,0.249934,0,0);-ms-transform:matrix(0.485617,-0.011169,0.005748,0.249934,0,0);-webkit-transform:matrix(0.485617,-0.011169,0.005748,0.249934,0,0);}
.m30_c01001{transform:matrix(0.510505,-0.011742,0.005748,0.249934,0,0);-ms-transform:matrix(0.510505,-0.011742,0.005748,0.249934,0,0);-webkit-transform:matrix(0.510505,-0.011742,0.005748,0.249934,0,0);}
.m1a_c01001{transform:matrix(0.512012,-0.013312,0.006498,0.249916,0,0);-ms-transform:matrix(0.512012,-0.013312,0.006498,0.249916,0,0);-webkit-transform:matrix(0.512012,-0.013312,0.006498,0.249916,0,0);}
.m0_c01001{transform:matrix(0.529558,-0.012709,0.005998,0.249928,0,0);-ms-transform:matrix(0.529558,-0.012709,0.005998,0.249928,0,0);-webkit-transform:matrix(0.529558,-0.012709,0.005998,0.249928,0,0);}
.m5e_c01001{transform:matrix(0.591324,-0.013600,0.005748,0.249934,0,0);-ms-transform:matrix(0.591324,-0.013600,0.005748,0.249934,0,0);-webkit-transform:matrix(0.591324,-0.013600,0.005748,0.249934,0,0);}
.m3f_c01001{transform:matrix(0.794470,-0.018273,0.005748,0.249934,0,0);-ms-transform:matrix(0.794470,-0.018273,0.005748,0.249934,0,0);-webkit-transform:matrix(0.794470,-0.018273,0.005748,0.249934,0,0);}
.m3c_c01001{transform:matrix(0.905715,-0.020831,0.005748,0.249934,0,0);-ms-transform:matrix(0.905715,-0.020831,0.005748,0.249934,0,0);-webkit-transform:matrix(0.905715,-0.020831,0.005748,0.249934,0,0);}
.m44_c01001{transform:matrix(0.911529,-0.020965,0.005748,0.249934,0,0);-ms-transform:matrix(0.911529,-0.020965,0.005748,0.249934,0,0);-webkit-transform:matrix(0.911529,-0.020965,0.005748,0.249934,0,0);}
.v0_c01001{vertical-align:0.000000px;}
.ls0_c01001{letter-spacing:0.000000px;}
.sc__c01001{text-shadow:none;}
.sc0_c01001{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__c01001{-webkit-text-stroke:0px transparent;}
.sc0_c01001{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01001{word-spacing:0.000000px;}
.fc0_c01001{color:transparent;}
.fs9_c01001{font-size:18.000000px;}
.fs4_c01001{font-size:78.008775px;}
.fs6_c01001{font-size:78.020628px;}
.fs1_c01001{font-size:78.022461px;}
.fs5_c01001{font-size:84.022215px;}
.fs2_c01001{font-size:84.028387px;}
.fs7_c01001{font-size:90.023802px;}
.fs0_c01001{font-size:90.025916px;}
.fs3_c01001{font-size:96.032443px;}
.fs8_c01001{font-size:108.028562px;}
.fsa_c01001{font-size:131.995842px;}
.y0_c01001{bottom:0.000000px;}
.y6b_c01001{bottom:743.191500px;}
.y6c_c01001{bottom:747.520506px;}
.y5f_c01001{bottom:769.847571px;}
.y60_c01001{bottom:771.218235px;}
.y6a_c01001{bottom:772.470000px;}
.y61_c01001{bottom:773.438563px;}
.y62_c01001{bottom:774.433906px;}
.y63_c01001{bottom:776.204919px;}
.y64_c01001{bottom:777.370570px;}
.y65_c01001{bottom:779.459916px;}
.y66_c01001{bottom:781.379901px;}
.y67_c01001{bottom:782.311201px;}
.y68_c01001{bottom:784.380660px;}
.y69_c01001{bottom:786.152638px;}
.y56_c01001{bottom:806.736180px;}
.y57_c01001{bottom:811.703238px;}
.y58_c01001{bottom:813.271845px;}
.y59_c01001{bottom:814.005515px;}
.y5a_c01001{bottom:815.695641px;}
.y5b_c01001{bottom:816.579997px;}
.y5c_c01001{bottom:818.362941px;}
.y5d_c01001{bottom:819.923907px;}
.y5e_c01001{bottom:821.755424px;}
.y4b_c01001{bottom:845.096658px;}
.y4c_c01001{bottom:846.799824px;}
.y4d_c01001{bottom:847.032687px;}
.y4e_c01001{bottom:849.882658px;}
.y4f_c01001{bottom:851.505040px;}
.y50_c01001{bottom:852.315240px;}
.y51_c01001{bottom:853.058179px;}
.y52_c01001{bottom:853.787112px;}
.y53_c01001{bottom:854.638936px;}
.y54_c01001{bottom:856.657215px;}
.y55_c01001{bottom:858.396106px;}
.y3f_c01001{bottom:878.857846px;}
.y40_c01001{bottom:879.266686px;}
.y41_c01001{bottom:880.819410px;}
.y42_c01001{bottom:883.049998px;}
.y43_c01001{bottom:884.418923px;}
.y44_c01001{bottom:887.218779px;}
.y45_c01001{bottom:888.065040px;}
.y46_c01001{bottom:889.986570px;}
.y47_c01001{bottom:892.441302px;}
.y48_c01001{bottom:894.127597px;}
.y49_c01001{bottom:895.554632px;}
.y4a_c01001{bottom:896.167452px;}
.y30_c01001{bottom:914.490000px;}
.y31_c01001{bottom:914.691618px;}
.y32_c01001{bottom:915.458518px;}
.y33_c01001{bottom:916.206961px;}
.y34_c01001{bottom:916.574042px;}
.y35_c01001{bottom:917.593068px;}
.y36_c01001{bottom:919.855750px;}
.y37_c01001{bottom:921.664723px;}
.y38_c01001{bottom:922.378701px;}
.y39_c01001{bottom:922.842208px;}
.y3a_c01001{bottom:925.158918px;}
.y3b_c01001{bottom:926.177220px;}
.y3c_c01001{bottom:926.958610px;}
.y3d_c01001{bottom:927.732514px;}
.y3e_c01001{bottom:929.538003px;}
.y29_c01001{bottom:990.712500px;}
.y2a_c01001{bottom:991.385025px;}
.y2b_c01001{bottom:993.044850px;}
.y2c_c01001{bottom:993.714855px;}
.y2d_c01001{bottom:995.033490px;}
.y2e_c01001{bottom:995.364848px;}
.y2f_c01001{bottom:996.535050px;}
.y26_c01001{bottom:997.873146px;}
.y27_c01001{bottom:999.605817px;}
.y28_c01001{bottom:1003.169658px;}
.y1b_c01001{bottom:1023.297000px;}
.y1c_c01001{bottom:1024.580763px;}
.y1d_c01001{bottom:1025.489775px;}
.y1e_c01001{bottom:1027.494531px;}
.y1f_c01001{bottom:1028.359785px;}
.y20_c01001{bottom:1029.034485px;}
.y21_c01001{bottom:1030.626933px;}
.y22_c01001{bottom:1033.512738px;}
.y23_c01001{bottom:1033.928322px;}
.y24_c01001{bottom:1037.417925px;}
.y25_c01001{bottom:1039.569984px;}
.yf_c01001{bottom:1061.867304px;}
.y10_c01001{bottom:1062.285564px;}
.y11_c01001{bottom:1063.889808px;}
.y12_c01001{bottom:1065.616944px;}
.y13_c01001{bottom:1066.292832px;}
.y14_c01001{bottom:1066.928160px;}
.y15_c01001{bottom:1068.521928px;}
.y16_c01001{bottom:1069.951236px;}
.y17_c01001{bottom:1071.362820px;}
.y18_c01001{bottom:1072.688796px;}
.y19_c01001{bottom:1073.649396px;}
.y1a_c01001{bottom:1075.493904px;}
.y1_c01001{bottom:1094.346000px;}
.y2_c01001{bottom:1094.937372px;}
.y3_c01001{bottom:1097.636256px;}
.y4_c01001{bottom:1098.788292px;}
.y5_c01001{bottom:1099.602504px;}
.y6_c01001{bottom:1100.584908px;}
.y7_c01001{bottom:1101.390948px;}
.y8_c01001{bottom:1102.952700px;}
.y9_c01001{bottom:1104.341472px;}
.ya_c01001{bottom:1105.038972px;}
.yb_c01001{bottom:1106.335836px;}
.yc_c01001{bottom:1107.343512px;}
.yd_c01001{bottom:1108.000548px;}
.ye_c01001{bottom:1108.814040px;}
.hb_c01001{height:18.000000px;}
.h6_c01001{height:78.008775px;}
.h8_c01001{height:78.020628px;}
.h3_c01001{height:78.022461px;}
.h7_c01001{height:84.022215px;}
.h4_c01001{height:84.028387px;}
.h9_c01001{height:90.023802px;}
.h2_c01001{height:90.025916px;}
.h5_c01001{height:96.032443px;}
.ha_c01001{height:108.028562px;}
.hc_c01001{height:131.995842px;}
.h0_c01001{height:1246.320000px;}
.h1_c01001{height:1246.500000px;}
.w0_c01001{width:896.100000px;}
.w1_c01001{width:896.250000px;}
.x0_c01001{left:0.000000px;}
.x3e_c01001{left:36.234355px;}
.x2f_c01001{left:44.274000px;}
.x3f_c01001{left:50.812665px;}
.x30_c01001{left:53.040000px;}
.x1_c01001{left:75.238500px;}
.x1a_c01001{left:80.229000px;}
.x31_c01001{left:86.383500px;}
.xf_c01001{left:92.623548px;}
.x2_c01001{left:99.879000px;}
.x40_c01001{left:106.250782px;}
.x10_c01001{left:111.614448px;}
.x32_c01001{left:118.924500px;}
.x1b_c01001{left:129.604500px;}
.x33_c01001{left:134.884500px;}
.x28_c01001{left:141.963000px;}
.x4d_c01001{left:143.463471px;}
.x1c_c01001{left:164.566500px;}
.x34_c01001{left:179.190000px;}
.x54_c01001{left:182.085372px;}
.x11_c01001{left:184.523940px;}
.x29_c01001{left:186.798000px;}
.x46_c01001{left:194.172953px;}
.x3_c01001{left:212.332500px;}
.x41_c01001{left:234.823517px;}
.x1d_c01001{left:241.672500px;}
.x55_c01001{left:258.654315px;}
.x4_c01001{left:260.334000px;}
.x12_c01001{left:263.054220px;}
.x1e_c01001{left:274.951500px;}
.x35_c01001{left:277.567500px;}
.x56_c01001{left:292.990589px;}
.x5_c01001{left:294.259500px;}
.x2a_c01001{left:297.453000px;}
.x1f_c01001{left:300.901500px;}
.x13_c01001{left:322.691100px;}
.x47_c01001{left:323.696420px;}
.x6_c01001{left:335.193000px;}
.x2b_c01001{left:342.120000px;}
.x57_c01001{left:354.069671px;}
.x36_c01001{left:356.218500px;}
.x20_c01001{left:362.149500px;}
.x42_c01001{left:365.031044px;}
.x7_c01001{left:368.778000px;}
.x37_c01001{left:387.261000px;}
.x14_c01001{left:395.164092px;}
.x48_c01001{left:397.432110px;}
.x38_c01001{left:407.413500px;}
.x4e_c01001{left:423.045686px;}
.x2c_c01001{left:430.029000px;}
.x8_c01001{left:433.851000px;}
.x2d_c01001{left:452.119500px;}
.x15_c01001{left:460.159224px;}
.x58_c01001{left:466.293180px;}
.x49_c01001{left:468.026732px;}
.x21_c01001{left:473.142000px;}
.x4f_c01001{left:488.046701px;}
.x22_c01001{left:489.126000px;}
.x9_c01001{left:491.716500px;}
.x4a_c01001{left:501.154990px;}
.x39_c01001{left:508.140000px;}
.xa_c01001{left:520.779000px;}
.x50_c01001{left:522.059855px;}
.x16_c01001{left:524.353320px;}
.x2e_c01001{left:530.133000px;}
.x59_c01001{left:532.479038px;}
.x4b_c01001{left:539.887388px;}
.x3a_c01001{left:552.414000px;}
.x5b_c01001{left:561.454500px;}
.x25_c01001{left:564.087441px;}
.xb_c01001{left:574.815000px;}
.x43_c01001{left:581.508635px;}
.x17_c01001{left:584.605200px;}
.x3b_c01001{left:586.387500px;}
.x51_c01001{left:590.639628px;}
.x26_c01001{left:607.405185px;}
.xc_c01001{left:616.801500px;}
.x3c_c01001{left:620.035500px;}
.x23_c01001{left:623.341500px;}
.x18_c01001{left:628.257288px;}
.x44_c01001{left:632.460770px;}
.x5a_c01001{left:635.997789px;}
.xd_c01001{left:644.178000px;}
.x52_c01001{left:650.677488px;}
.x45_c01001{left:654.341751px;}
.x5c_c01001{left:659.742614px;}
.xe_c01001{left:678.073500px;}
.x27_c01001{left:696.501276px;}
.x3d_c01001{left:698.535000px;}
.x24_c01001{left:706.113000px;}
.x4c_c01001{left:710.681321px;}
.x19_c01001{left:712.115820px;}
.x53_c01001{left:721.108124px;}
@media print{
.v0_c01001{vertical-align:0.000000pt;}
.ls0_c01001{letter-spacing:0.000000pt;}
.ws0_c01001{word-spacing:0.000000pt;}
.fs9_c01001{font-size:16.000000pt;}
.fs4_c01001{font-size:69.341133pt;}
.fs6_c01001{font-size:69.351670pt;}
.fs1_c01001{font-size:69.353298pt;}
.fs5_c01001{font-size:74.686413pt;}
.fs2_c01001{font-size:74.691900pt;}
.fs7_c01001{font-size:80.021157pt;}
.fs0_c01001{font-size:80.023037pt;}
.fs3_c01001{font-size:85.362171pt;}
.fs8_c01001{font-size:96.025389pt;}
.fsa_c01001{font-size:117.329637pt;}
.y0_c01001{bottom:0.000000pt;}
.y6b_c01001{bottom:660.614667pt;}
.y6c_c01001{bottom:664.462672pt;}
.y5f_c01001{bottom:684.308952pt;}
.y60_c01001{bottom:685.527320pt;}
.y6a_c01001{bottom:686.640000pt;}
.y61_c01001{bottom:687.500945pt;}
.y62_c01001{bottom:688.385695pt;}
.y63_c01001{bottom:689.959928pt;}
.y64_c01001{bottom:690.996063pt;}
.y65_c01001{bottom:692.853259pt;}
.y66_c01001{bottom:694.559912pt;}
.y67_c01001{bottom:695.387735pt;}
.y68_c01001{bottom:697.227253pt;}
.y69_c01001{bottom:698.802345pt;}
.y56_c01001{bottom:717.098827pt;}
.y57_c01001{bottom:721.513989pt;}
.y58_c01001{bottom:722.908307pt;}
.y59_c01001{bottom:723.560457pt;}
.y5a_c01001{bottom:725.062792pt;}
.y5b_c01001{bottom:725.848887pt;}
.y5c_c01001{bottom:727.433725pt;}
.y5d_c01001{bottom:728.821251pt;}
.y5e_c01001{bottom:730.449265pt;}
.y4b_c01001{bottom:751.197029pt;}
.y4c_c01001{bottom:752.710955pt;}
.y4d_c01001{bottom:752.917944pt;}
.y4e_c01001{bottom:755.451252pt;}
.y4f_c01001{bottom:756.893369pt;}
.y50_c01001{bottom:757.613547pt;}
.y51_c01001{bottom:758.273937pt;}
.y52_c01001{bottom:758.921877pt;}
.y53_c01001{bottom:759.679055pt;}
.y54_c01001{bottom:761.473080pt;}
.y55_c01001{bottom:763.018761pt;}
.y3f_c01001{bottom:781.206975pt;}
.y40_c01001{bottom:781.570388pt;}
.y41_c01001{bottom:782.950587pt;}
.y42_c01001{bottom:784.933332pt;}
.y43_c01001{bottom:786.150153pt;}
.y44_c01001{bottom:788.638915pt;}
.y45_c01001{bottom:789.391147pt;}
.y46_c01001{bottom:791.099173pt;}
.y47_c01001{bottom:793.281157pt;}
.y48_c01001{bottom:794.780087pt;}
.y49_c01001{bottom:796.048561pt;}
.y4a_c01001{bottom:796.593291pt;}
.y30_c01001{bottom:812.880000pt;}
.y31_c01001{bottom:813.059216pt;}
.y32_c01001{bottom:813.740905pt;}
.y33_c01001{bottom:814.406188pt;}
.y34_c01001{bottom:814.732481pt;}
.y35_c01001{bottom:815.638283pt;}
.y36_c01001{bottom:817.649556pt;}
.y37_c01001{bottom:819.257532pt;}
.y38_c01001{bottom:819.892179pt;}
.y39_c01001{bottom:820.304185pt;}
.y3a_c01001{bottom:822.363483pt;}
.y3b_c01001{bottom:823.268640pt;}
.y3c_c01001{bottom:823.963209pt;}
.y3d_c01001{bottom:824.651124pt;}
.y3e_c01001{bottom:826.256003pt;}
.y29_c01001{bottom:880.633333pt;}
.y2a_c01001{bottom:881.231133pt;}
.y2b_c01001{bottom:882.706533pt;}
.y2c_c01001{bottom:883.302093pt;}
.y2d_c01001{bottom:884.474213pt;}
.y2e_c01001{bottom:884.768753pt;}
.y2f_c01001{bottom:885.808933pt;}
.y26_c01001{bottom:886.998352pt;}
.y27_c01001{bottom:888.538504pt;}
.y28_c01001{bottom:891.706363pt;}
.y1b_c01001{bottom:909.597333pt;}
.y1c_c01001{bottom:910.738456pt;}
.y1d_c01001{bottom:911.546467pt;}
.y1e_c01001{bottom:913.328472pt;}
.y1f_c01001{bottom:914.097587pt;}
.y20_c01001{bottom:914.697320pt;}
.y21_c01001{bottom:916.112829pt;}
.y22_c01001{bottom:918.677989pt;}
.y23_c01001{bottom:919.047397pt;}
.y24_c01001{bottom:922.149267pt;}
.y25_c01001{bottom:924.062208pt;}
.yf_c01001{bottom:943.882048pt;}
.y10_c01001{bottom:944.253835pt;}
.y11_c01001{bottom:945.679829pt;}
.y12_c01001{bottom:947.215061pt;}
.y13_c01001{bottom:947.815851pt;}
.y14_c01001{bottom:948.380587pt;}
.y15_c01001{bottom:949.797269pt;}
.y16_c01001{bottom:951.067765pt;}
.y17_c01001{bottom:952.322507pt;}
.y18_c01001{bottom:953.501152pt;}
.y19_c01001{bottom:954.355019pt;}
.y1a_c01001{bottom:955.994581pt;}
.y1_c01001{bottom:972.752000pt;}
.y2_c01001{bottom:973.277664pt;}
.y3_c01001{bottom:975.676672pt;}
.y4_c01001{bottom:976.700704pt;}
.y5_c01001{bottom:977.424448pt;}
.y6_c01001{bottom:978.297696pt;}
.y7_c01001{bottom:979.014176pt;}
.y8_c01001{bottom:980.402400pt;}
.y9_c01001{bottom:981.636864pt;}
.ya_c01001{bottom:982.256864pt;}
.yb_c01001{bottom:983.409632pt;}
.yc_c01001{bottom:984.305344pt;}
.yd_c01001{bottom:984.889376pt;}
.ye_c01001{bottom:985.612480pt;}
.hb_c01001{height:16.000000pt;}
.h6_c01001{height:69.341133pt;}
.h8_c01001{height:69.351670pt;}
.h3_c01001{height:69.353298pt;}
.h7_c01001{height:74.686413pt;}
.h4_c01001{height:74.691900pt;}
.h9_c01001{height:80.021157pt;}
.h2_c01001{height:80.023037pt;}
.h5_c01001{height:85.362171pt;}
.ha_c01001{height:96.025389pt;}
.hc_c01001{height:117.329637pt;}
.h0_c01001{height:1107.840000pt;}
.h1_c01001{height:1108.000000pt;}
.w0_c01001{width:796.533333pt;}
.w1_c01001{width:796.666667pt;}
.x0_c01001{left:0.000000pt;}
.x3e_c01001{left:32.208316pt;}
.x2f_c01001{left:39.354667pt;}
.x3f_c01001{left:45.166813pt;}
.x30_c01001{left:47.146667pt;}
.x1_c01001{left:66.878667pt;}
.x1a_c01001{left:71.314667pt;}
.x31_c01001{left:76.785333pt;}
.xf_c01001{left:82.332043pt;}
.x2_c01001{left:88.781333pt;}
.x40_c01001{left:94.445140pt;}
.x10_c01001{left:99.212843pt;}
.x32_c01001{left:105.710667pt;}
.x1b_c01001{left:115.204000pt;}
.x33_c01001{left:119.897333pt;}
.x28_c01001{left:126.189333pt;}
.x4d_c01001{left:127.523085pt;}
.x1c_c01001{left:146.281333pt;}
.x34_c01001{left:159.280000pt;}
.x54_c01001{left:161.853664pt;}
.x11_c01001{left:164.021280pt;}
.x29_c01001{left:166.042667pt;}
.x46_c01001{left:172.598180pt;}
.x3_c01001{left:188.740000pt;}
.x41_c01001{left:208.732015pt;}
.x1d_c01001{left:214.820000pt;}
.x55_c01001{left:229.914947pt;}
.x4_c01001{left:231.408000pt;}
.x12_c01001{left:233.825973pt;}
.x1e_c01001{left:244.401333pt;}
.x35_c01001{left:246.726667pt;}
.x56_c01001{left:260.436079pt;}
.x5_c01001{left:261.564000pt;}
.x2a_c01001{left:264.402667pt;}
.x1f_c01001{left:267.468000pt;}
.x13_c01001{left:286.836533pt;}
.x47_c01001{left:287.730151pt;}
.x6_c01001{left:297.949333pt;}
.x2b_c01001{left:304.106667pt;}
.x57_c01001{left:314.728596pt;}
.x36_c01001{left:316.638667pt;}
.x20_c01001{left:321.910667pt;}
.x42_c01001{left:324.472039pt;}
.x7_c01001{left:327.802667pt;}
.x37_c01001{left:344.232000pt;}
.x14_c01001{left:351.256971pt;}
.x48_c01001{left:353.272987pt;}
.x38_c01001{left:362.145333pt;}
.x4e_c01001{left:376.040609pt;}
.x2c_c01001{left:382.248000pt;}
.x8_c01001{left:385.645333pt;}
.x2d_c01001{left:401.884000pt;}
.x15_c01001{left:409.030421pt;}
.x58_c01001{left:414.482827pt;}
.x49_c01001{left:416.023761pt;}
.x21_c01001{left:420.570667pt;}
.x4f_c01001{left:433.819289pt;}
.x22_c01001{left:434.778667pt;}
.x9_c01001{left:437.081333pt;}
.x4a_c01001{left:445.471103pt;}
.x39_c01001{left:451.680000pt;}
.xa_c01001{left:462.914667pt;}
.x50_c01001{left:464.053204pt;}
.x16_c01001{left:466.091840pt;}
.x2e_c01001{left:471.229333pt;}
.x59_c01001{left:473.314700pt;}
.x4b_c01001{left:479.899900pt;}
.x3a_c01001{left:491.034667pt;}
.x5b_c01001{left:499.070667pt;}
.x25_c01001{left:501.411059pt;}
.xb_c01001{left:510.946667pt;}
.x43_c01001{left:516.896564pt;}
.x17_c01001{left:519.649067pt;}
.x3b_c01001{left:521.233333pt;}
.x51_c01001{left:525.013003pt;}
.x26_c01001{left:539.915720pt;}
.xc_c01001{left:548.268000pt;}
.x3c_c01001{left:551.142667pt;}
.x23_c01001{left:554.081333pt;}
.x18_c01001{left:558.450923pt;}
.x44_c01001{left:562.187351pt;}
.x5a_c01001{left:565.331368pt;}
.xd_c01001{left:572.602667pt;}
.x52_c01001{left:578.379989pt;}
.x45_c01001{left:581.637112pt;}
.x5c_c01001{left:586.437879pt;}
.xe_c01001{left:602.732000pt;}
.x27_c01001{left:619.112245pt;}
.x3d_c01001{left:620.920000pt;}
.x24_c01001{left:627.656000pt;}
.x4c_c01001{left:631.716729pt;}
.x19_c01001{left:632.991840pt;}
.x53_c01001{left:640.984999pt;}
}





/* 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_c01002 {
    display:none;
  }
  .loading-indicator_c01002.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01002 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_c01002 { 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_c01002" -> "#page-container .classname_c01002")
 */
.pf_c01002 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01002 { /* 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_c01002.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01002 { /* 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_c01002 { /* 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_c01002 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01002 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01002 {overflow:visible;}
  }
}
.c_c01002 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01002 { /* 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_c01002:after { /* webkit #35443 */
  content: '';
}
.t_c01002:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01002 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 */
}
.__c01002 { /* 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_c01002 { /* info for Javascript */
  display:none;
}
.l_c01002 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01002 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01002 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01002: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_c01002 {
    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_c01002.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01002.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_c01002 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01002{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01002;src:url('chunks/assets/font_cfe63ee56e9e10a97d33a3db.woff2')format("woff");}.ff1_c01002{font-family:ff1_c01002;line-height:1.000000;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;}
.m94_c01002{transform:matrix(0.010932,0.000536,-0.012248,0.249700,0,0);-ms-transform:matrix(0.010932,0.000536,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.010932,0.000536,-0.012248,0.249700,0,0);}
.m93_c01002{transform:matrix(0.012465,0.000611,-0.012248,0.249700,0,0);-ms-transform:matrix(0.012465,0.000611,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.012465,0.000611,-0.012248,0.249700,0,0);}
.m95_c01002{transform:matrix(0.015461,0.000758,-0.012248,0.249700,0,0);-ms-transform:matrix(0.015461,0.000758,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.015461,0.000758,-0.012248,0.249700,0,0);}
.m77_c01002{transform:matrix(0.017288,0.000865,-0.012497,0.249687,0,0);-ms-transform:matrix(0.017288,0.000865,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.017288,0.000865,-0.012497,0.249687,0,0);}
.mc3_c01002{transform:matrix(0.090385,0.006159,-0.016995,0.249422,0,0);-ms-transform:matrix(0.090385,0.006159,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.090385,0.006159,-0.016995,0.249422,0,0);}
.m8_c01002{transform:matrix(0.091760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.091760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.091760,0.000000,0.000000,0.250000,0,0);}
.mb9_c01002{transform:matrix(0.113113,0.007707,-0.016995,0.249422,0,0);-ms-transform:matrix(0.113113,0.007707,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.113113,0.007707,-0.016995,0.249422,0,0);}
.m72_c01002{transform:matrix(0.167390,0.008378,-0.012497,0.249687,0,0);-ms-transform:matrix(0.167390,0.008378,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.167390,0.008378,-0.012497,0.249687,0,0);}
.m48_c01002{transform:matrix(0.168851,0.007437,-0.011000,0.249758,0,0);-ms-transform:matrix(0.168851,0.007437,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.168851,0.007437,-0.011000,0.249758,0,0);}
.m97_c01002{transform:matrix(0.177859,0.009258,-0.012995,0.249662,0,0);-ms-transform:matrix(0.177859,0.009258,-0.012995,0.249662,0,0);-webkit-transform:matrix(0.177859,0.009258,-0.012995,0.249662,0,0);}
.ma5_c01002{transform:matrix(0.177886,0.008725,-0.012248,0.249700,0,0);-ms-transform:matrix(0.177886,0.008725,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.177886,0.008725,-0.012248,0.249700,0,0);}
.mba_c01002{transform:matrix(0.178536,0.012165,-0.016995,0.249422,0,0);-ms-transform:matrix(0.178536,0.012165,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.178536,0.012165,-0.016995,0.249422,0,0);}
.m24_c01002{transform:matrix(0.181270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181270,0.000000,0.000000,0.250000,0,0);}
.mb7_c01002{transform:matrix(0.182647,0.012445,-0.016995,0.249422,0,0);-ms-transform:matrix(0.182647,0.012445,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.182647,0.012445,-0.016995,0.249422,0,0);}
.ma9_c01002{transform:matrix(0.185087,0.009078,-0.012248,0.249700,0,0);-ms-transform:matrix(0.185087,0.009078,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.185087,0.009078,-0.012248,0.249700,0,0);}
.m73_c01002{transform:matrix(0.187256,0.009372,-0.012497,0.249687,0,0);-ms-transform:matrix(0.187256,0.009372,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.187256,0.009372,-0.012497,0.249687,0,0);}
.m59_c01002{transform:matrix(0.187667,0.008829,-0.011749,0.249724,0,0);-ms-transform:matrix(0.187667,0.008829,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.187667,0.008829,-0.011749,0.249724,0,0);}
.m6e_c01002{transform:matrix(0.191685,0.009594,-0.012497,0.249687,0,0);-ms-transform:matrix(0.191685,0.009594,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.191685,0.009594,-0.012497,0.249687,0,0);}
.m9b_c01002{transform:matrix(0.192779,0.010035,-0.012995,0.249662,0,0);-ms-transform:matrix(0.192779,0.010035,-0.012995,0.249662,0,0);-webkit-transform:matrix(0.192779,0.010035,-0.012995,0.249662,0,0);}
.mad_c01002{transform:matrix(0.193145,0.012967,-0.016746,0.249439,0,0);-ms-transform:matrix(0.193145,0.012967,-0.016746,0.249439,0,0);-webkit-transform:matrix(0.193145,0.012967,-0.016746,0.249439,0,0);}
.m5c_c01002{transform:matrix(0.193291,0.009094,-0.011749,0.249724,0,0);-ms-transform:matrix(0.193291,0.009094,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.193291,0.009094,-0.011749,0.249724,0,0);}
.mb1_c01002{transform:matrix(0.193914,0.013018,-0.016746,0.249439,0,0);-ms-transform:matrix(0.193914,0.013018,-0.016746,0.249439,0,0);-webkit-transform:matrix(0.193914,0.013018,-0.016746,0.249439,0,0);}
.m68_c01002{transform:matrix(0.194874,0.008973,-0.011499,0.249735,0,0);-ms-transform:matrix(0.194874,0.008973,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.194874,0.008973,-0.011499,0.249735,0,0);}
.m9a_c01002{transform:matrix(0.195615,0.010182,-0.012995,0.249662,0,0);-ms-transform:matrix(0.195615,0.010182,-0.012995,0.249662,0,0);-webkit-transform:matrix(0.195615,0.010182,-0.012995,0.249662,0,0);}
.m98_c01002{transform:matrix(0.196100,0.010207,-0.012995,0.249662,0,0);-ms-transform:matrix(0.196100,0.010207,-0.012995,0.249662,0,0);-webkit-transform:matrix(0.196100,0.010207,-0.012995,0.249662,0,0);}
.m9d_c01002{transform:matrix(0.196379,0.010222,-0.012995,0.249662,0,0);-ms-transform:matrix(0.196379,0.010222,-0.012995,0.249662,0,0);-webkit-transform:matrix(0.196379,0.010222,-0.012995,0.249662,0,0);}
.mae_c01002{transform:matrix(0.196887,0.013218,-0.016746,0.249439,0,0);-ms-transform:matrix(0.196887,0.013218,-0.016746,0.249439,0,0);-webkit-transform:matrix(0.196887,0.013218,-0.016746,0.249439,0,0);}
.m6c_c01002{transform:matrix(0.196983,0.009859,-0.012497,0.249687,0,0);-ms-transform:matrix(0.196983,0.009859,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.196983,0.009859,-0.012497,0.249687,0,0);}
.m5a_c01002{transform:matrix(0.197032,0.009270,-0.011749,0.249724,0,0);-ms-transform:matrix(0.197032,0.009270,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.197032,0.009270,-0.011749,0.249724,0,0);}
.mc0_c01002{transform:matrix(0.198784,0.013544,-0.016995,0.249422,0,0);-ms-transform:matrix(0.198784,0.013544,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.198784,0.013544,-0.016995,0.249422,0,0);}
.m70_c01002{transform:matrix(0.199745,0.009997,-0.012497,0.249687,0,0);-ms-transform:matrix(0.199745,0.009997,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.199745,0.009997,-0.012497,0.249687,0,0);}
.m60_c01002{transform:matrix(0.202001,0.009301,-0.011499,0.249735,0,0);-ms-transform:matrix(0.202001,0.009301,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.202001,0.009301,-0.011499,0.249735,0,0);}
.ma6_c01002{transform:matrix(0.203091,0.009961,-0.012248,0.249700,0,0);-ms-transform:matrix(0.203091,0.009961,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.203091,0.009961,-0.012248,0.249700,0,0);}
.m69_c01002{transform:matrix(0.207175,0.009540,-0.011499,0.249735,0,0);-ms-transform:matrix(0.207175,0.009540,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.207175,0.009540,-0.011499,0.249735,0,0);}
.m9f_c01002{transform:matrix(0.207334,0.010792,-0.012995,0.249662,0,0);-ms-transform:matrix(0.207334,0.010792,-0.012995,0.249662,0,0);-webkit-transform:matrix(0.207334,0.010792,-0.012995,0.249662,0,0);}
.mb5_c01002{transform:matrix(0.207763,0.014156,-0.016995,0.249422,0,0);-ms-transform:matrix(0.207763,0.014156,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.207763,0.014156,-0.016995,0.249422,0,0);}
.m61_c01002{transform:matrix(0.208384,0.009595,-0.011499,0.249735,0,0);-ms-transform:matrix(0.208384,0.009595,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.208384,0.009595,-0.011499,0.249735,0,0);}
.m85_c01002{transform:matrix(0.208959,0.011935,-0.014255,0.249593,0,0);-ms-transform:matrix(0.208959,0.011935,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.208959,0.011935,-0.014255,0.249593,0,0);}
.m63_c01002{transform:matrix(0.209009,0.009624,-0.011499,0.249735,0,0);-ms-transform:matrix(0.209009,0.009624,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.209009,0.009624,-0.011499,0.249735,0,0);}
.m88_c01002{transform:matrix(0.209028,0.010671,-0.012746,0.249675,0,0);-ms-transform:matrix(0.209028,0.010671,-0.012746,0.249675,0,0);-webkit-transform:matrix(0.209028,0.010671,-0.012746,0.249675,0,0);}
.m56_c01002{transform:matrix(0.209069,0.009836,-0.011749,0.249724,0,0);-ms-transform:matrix(0.209069,0.009836,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.209069,0.009836,-0.011749,0.249724,0,0);}
.ma7_c01002{transform:matrix(0.209298,0.010266,-0.012248,0.249700,0,0);-ms-transform:matrix(0.209298,0.010266,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.209298,0.010266,-0.012248,0.249700,0,0);}
.mb8_c01002{transform:matrix(0.209953,0.014305,-0.016995,0.249422,0,0);-ms-transform:matrix(0.209953,0.014305,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.209953,0.014305,-0.016995,0.249422,0,0);}
.mbb_c01002{transform:matrix(0.210123,0.014317,-0.016995,0.249422,0,0);-ms-transform:matrix(0.210123,0.014317,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.210123,0.014317,-0.016995,0.249422,0,0);}
.m5f_c01002{transform:matrix(0.210572,0.009696,-0.011499,0.249735,0,0);-ms-transform:matrix(0.210572,0.009696,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.210572,0.009696,-0.011499,0.249735,0,0);}
.md_c01002{transform:matrix(0.211636,0.009957,-0.011749,0.249724,0,0);-ms-transform:matrix(0.211636,0.009957,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.211636,0.009957,-0.011749,0.249724,0,0);}
.m91_c01002{transform:matrix(0.211676,0.010382,-0.012248,0.249700,0,0);-ms-transform:matrix(0.211676,0.010382,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.211676,0.010382,-0.012248,0.249700,0,0);}
.mab_c01002{transform:matrix(0.212302,0.014253,-0.016746,0.249439,0,0);-ms-transform:matrix(0.212302,0.014253,-0.016746,0.249439,0,0);-webkit-transform:matrix(0.212302,0.014253,-0.016746,0.249439,0,0);}
.m66_c01002{transform:matrix(0.213978,0.009853,-0.011499,0.249735,0,0);-ms-transform:matrix(0.213978,0.009853,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.213978,0.009853,-0.011499,0.249735,0,0);}
.mb2_c01002{transform:matrix(0.214073,0.014372,-0.016746,0.249439,0,0);-ms-transform:matrix(0.214073,0.014372,-0.016746,0.249439,0,0);-webkit-transform:matrix(0.214073,0.014372,-0.016746,0.249439,0,0);}
.m2b_c01002{transform:matrix(0.214236,0.009007,-0.010501,0.249779,0,0);-ms-transform:matrix(0.214236,0.009007,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.214236,0.009007,-0.010501,0.249779,0,0);}
.m74_c01002{transform:matrix(0.214546,0.010738,-0.012497,0.249687,0,0);-ms-transform:matrix(0.214546,0.010738,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.214546,0.010738,-0.012497,0.249687,0,0);}
.mbf_c01002{transform:matrix(0.214732,0.014631,-0.016995,0.249422,0,0);-ms-transform:matrix(0.214732,0.014631,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.214732,0.014631,-0.016995,0.249422,0,0);}
.m9e_c01002{transform:matrix(0.215468,0.011216,-0.012995,0.249662,0,0);-ms-transform:matrix(0.215468,0.011216,-0.012995,0.249662,0,0);-webkit-transform:matrix(0.215468,0.011216,-0.012995,0.249662,0,0);}
.ma8_c01002{transform:matrix(0.215890,0.010589,-0.012248,0.249700,0,0);-ms-transform:matrix(0.215890,0.010589,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.215890,0.010589,-0.012248,0.249700,0,0);}
.m1f_c01002{transform:matrix(0.216195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216195,0.000000,0.000000,0.250000,0,0);}
.m44_c01002{transform:matrix(0.216550,0.009538,-0.011000,0.249758,0,0);-ms-transform:matrix(0.216550,0.009538,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.216550,0.009538,-0.011000,0.249758,0,0);}
.mb6_c01002{transform:matrix(0.216553,0.014755,-0.016995,0.249422,0,0);-ms-transform:matrix(0.216553,0.014755,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.216553,0.014755,-0.016995,0.249422,0,0);}
.ma4_c01002{transform:matrix(0.216620,0.010625,-0.012248,0.249700,0,0);-ms-transform:matrix(0.216620,0.010625,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.216620,0.010625,-0.012248,0.249700,0,0);}
.m99_c01002{transform:matrix(0.216951,0.011293,-0.012995,0.249662,0,0);-ms-transform:matrix(0.216951,0.011293,-0.012995,0.249662,0,0);-webkit-transform:matrix(0.216951,0.011293,-0.012995,0.249662,0,0);}
.m1_c01002{transform:matrix(0.217849,0.008505,-0.009752,0.249810,0,0);-ms-transform:matrix(0.217849,0.008505,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.217849,0.008505,-0.009752,0.249810,0,0);}
.m6d_c01002{transform:matrix(0.218801,0.010951,-0.012497,0.249687,0,0);-ms-transform:matrix(0.218801,0.010951,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.218801,0.010951,-0.012497,0.249687,0,0);}
.m96_c01002{transform:matrix(0.218989,0.011399,-0.012995,0.249662,0,0);-ms-transform:matrix(0.218989,0.011399,-0.012995,0.249662,0,0);-webkit-transform:matrix(0.218989,0.011399,-0.012995,0.249662,0,0);}
.m6b_c01002{transform:matrix(0.219221,0.010972,-0.012497,0.249687,0,0);-ms-transform:matrix(0.219221,0.010972,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.219221,0.010972,-0.012497,0.249687,0,0);}
.m9c_c01002{transform:matrix(0.222234,0.011568,-0.012995,0.249662,0,0);-ms-transform:matrix(0.222234,0.011568,-0.012995,0.249662,0,0);-webkit-transform:matrix(0.222234,0.011568,-0.012995,0.249662,0,0);}
.m71_c01002{transform:matrix(0.222457,0.011134,-0.012497,0.249687,0,0);-ms-transform:matrix(0.222457,0.011134,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.222457,0.011134,-0.012497,0.249687,0,0);}
.m5d_c01002{transform:matrix(0.223133,0.010498,-0.011749,0.249724,0,0);-ms-transform:matrix(0.223133,0.010498,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.223133,0.010498,-0.011749,0.249724,0,0);}
.m65_c01002{transform:matrix(0.223908,0.010310,-0.011499,0.249735,0,0);-ms-transform:matrix(0.223908,0.010310,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.223908,0.010310,-0.011499,0.249735,0,0);}
.m32_c01002{transform:matrix(0.224462,0.009886,-0.011000,0.249758,0,0);-ms-transform:matrix(0.224462,0.009886,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.224462,0.009886,-0.011000,0.249758,0,0);}
.m3d_c01002{transform:matrix(0.224532,0.009889,-0.011000,0.249758,0,0);-ms-transform:matrix(0.224532,0.009889,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.224532,0.009889,-0.011000,0.249758,0,0);}
.mb3_c01002{transform:matrix(0.224679,0.015084,-0.016746,0.249439,0,0);-ms-transform:matrix(0.224679,0.015084,-0.016746,0.249439,0,0);-webkit-transform:matrix(0.224679,0.015084,-0.016746,0.249439,0,0);}
.m83_c01002{transform:matrix(0.225092,0.011491,-0.012746,0.249675,0,0);-ms-transform:matrix(0.225092,0.011491,-0.012746,0.249675,0,0);-webkit-transform:matrix(0.225092,0.011491,-0.012746,0.249675,0,0);}
.m4_c01002{transform:matrix(0.225173,0.008791,-0.009752,0.249810,0,0);-ms-transform:matrix(0.225173,0.008791,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.225173,0.008791,-0.009752,0.249810,0,0);}
.m8b_c01002{transform:matrix(0.225297,0.011502,-0.012746,0.249675,0,0);-ms-transform:matrix(0.225297,0.011502,-0.012746,0.249675,0,0);-webkit-transform:matrix(0.225297,0.011502,-0.012746,0.249675,0,0);}
.m2f_c01002{transform:matrix(0.225826,0.009494,-0.010501,0.249779,0,0);-ms-transform:matrix(0.225826,0.009494,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.225826,0.009494,-0.010501,0.249779,0,0);}
.m35_c01002{transform:matrix(0.225891,0.009949,-0.011000,0.249758,0,0);-ms-transform:matrix(0.225891,0.009949,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.225891,0.009949,-0.011000,0.249758,0,0);}
.m6f_c01002{transform:matrix(0.226472,0.011335,-0.012497,0.249687,0,0);-ms-transform:matrix(0.226472,0.011335,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.226472,0.011335,-0.012497,0.249687,0,0);}
.mbc_c01002{transform:matrix(0.226525,0.015435,-0.016995,0.249422,0,0);-ms-transform:matrix(0.226525,0.015435,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.226525,0.015435,-0.016995,0.249422,0,0);}
.m23_c01002{transform:matrix(0.227295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227295,0.000000,0.000000,0.250000,0,0);}
.m57_c01002{transform:matrix(0.227498,0.010703,-0.011749,0.249724,0,0);-ms-transform:matrix(0.227498,0.010703,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.227498,0.010703,-0.011749,0.249724,0,0);}
.m46_c01002{transform:matrix(0.228663,0.010071,-0.011000,0.249758,0,0);-ms-transform:matrix(0.228663,0.010071,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.228663,0.010071,-0.011000,0.249758,0,0);}
.m2c_c01002{transform:matrix(0.229352,0.009642,-0.010501,0.249779,0,0);-ms-transform:matrix(0.229352,0.009642,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.229352,0.009642,-0.010501,0.249779,0,0);}
.m4a_c01002{transform:matrix(0.230437,0.010149,-0.011000,0.249758,0,0);-ms-transform:matrix(0.230437,0.010149,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.230437,0.010149,-0.011000,0.249758,0,0);}
.m7b_c01002{transform:matrix(0.230756,0.011549,-0.012497,0.249687,0,0);-ms-transform:matrix(0.230756,0.011549,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.230756,0.011549,-0.012497,0.249687,0,0);}
.m64_c01002{transform:matrix(0.231350,0.010653,-0.011499,0.249735,0,0);-ms-transform:matrix(0.231350,0.010653,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.231350,0.010653,-0.011499,0.249735,0,0);}
.m79_c01002{transform:matrix(0.232104,0.011617,-0.012497,0.249687,0,0);-ms-transform:matrix(0.232104,0.011617,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.232104,0.011617,-0.012497,0.249687,0,0);}
.m62_c01002{transform:matrix(0.232309,0.010697,-0.011499,0.249735,0,0);-ms-transform:matrix(0.232309,0.010697,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.232309,0.010697,-0.011499,0.249735,0,0);}
.maa_c01002{transform:matrix(0.233589,0.015682,-0.016746,0.249439,0,0);-ms-transform:matrix(0.233589,0.015682,-0.016746,0.249439,0,0);-webkit-transform:matrix(0.233589,0.015682,-0.016746,0.249439,0,0);}
.ma0_c01002{transform:matrix(0.235436,0.012255,-0.012995,0.249662,0,0);-ms-transform:matrix(0.235436,0.012255,-0.012995,0.249662,0,0);-webkit-transform:matrix(0.235436,0.012255,-0.012995,0.249662,0,0);}
.m5e_c01002{transform:matrix(0.235465,0.011078,-0.011749,0.249724,0,0);-ms-transform:matrix(0.235465,0.011078,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.235465,0.011078,-0.011749,0.249724,0,0);}
.m84_c01002{transform:matrix(0.235493,0.012022,-0.012746,0.249675,0,0);-ms-transform:matrix(0.235493,0.012022,-0.012746,0.249675,0,0);-webkit-transform:matrix(0.235493,0.012022,-0.012746,0.249675,0,0);}
.m43_c01002{transform:matrix(0.235946,0.010392,-0.011000,0.249758,0,0);-ms-transform:matrix(0.235946,0.010392,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.235946,0.010392,-0.011000,0.249758,0,0);}
.mac_c01002{transform:matrix(0.236019,0.015845,-0.016746,0.249439,0,0);-ms-transform:matrix(0.236019,0.015845,-0.016746,0.249439,0,0);-webkit-transform:matrix(0.236019,0.015845,-0.016746,0.249439,0,0);}
.m8f_c01002{transform:matrix(0.236172,0.012057,-0.012746,0.249675,0,0);-ms-transform:matrix(0.236172,0.012057,-0.012746,0.249675,0,0);-webkit-transform:matrix(0.236172,0.012057,-0.012746,0.249675,0,0);}
.m3b_c01002{transform:matrix(0.236261,0.010406,-0.011000,0.249758,0,0);-ms-transform:matrix(0.236261,0.010406,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.236261,0.010406,-0.011000,0.249758,0,0);}
.m86_c01002{transform:matrix(0.236270,0.013494,-0.014255,0.249593,0,0);-ms-transform:matrix(0.236270,0.013494,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.236270,0.013494,-0.014255,0.249593,0,0);}
.maf_c01002{transform:matrix(0.236513,0.015878,-0.016746,0.249439,0,0);-ms-transform:matrix(0.236513,0.015878,-0.016746,0.249439,0,0);-webkit-transform:matrix(0.236513,0.015878,-0.016746,0.249439,0,0);}
.mb0_c01002{transform:matrix(0.237181,0.015923,-0.016746,0.249439,0,0);-ms-transform:matrix(0.237181,0.015923,-0.016746,0.249439,0,0);-webkit-transform:matrix(0.237181,0.015923,-0.016746,0.249439,0,0);}
.m33_c01002{transform:matrix(0.238304,0.010496,-0.011000,0.249758,0,0);-ms-transform:matrix(0.238304,0.010496,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.238304,0.010496,-0.011000,0.249758,0,0);}
.m2d_c01002{transform:matrix(0.238459,0.010025,-0.010501,0.249779,0,0);-ms-transform:matrix(0.238459,0.010025,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.238459,0.010025,-0.010501,0.249779,0,0);}
.mbd_c01002{transform:matrix(0.238717,0.016265,-0.016995,0.249422,0,0);-ms-transform:matrix(0.238717,0.016265,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.238717,0.016265,-0.016995,0.249422,0,0);}
.m3e_c01002{transform:matrix(0.239598,0.010553,-0.011000,0.249758,0,0);-ms-transform:matrix(0.239598,0.010553,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.239598,0.010553,-0.011000,0.249758,0,0);}
.m87_c01002{transform:matrix(0.239648,0.012234,-0.012746,0.249675,0,0);-ms-transform:matrix(0.239648,0.012234,-0.012746,0.249675,0,0);-webkit-transform:matrix(0.239648,0.012234,-0.012746,0.249675,0,0);}
.mbe_c01002{transform:matrix(0.239819,0.016340,-0.016995,0.249422,0,0);-ms-transform:matrix(0.239819,0.016340,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.239819,0.016340,-0.016995,0.249422,0,0);}
.me_c01002{transform:matrix(0.240124,0.011297,-0.011749,0.249724,0,0);-ms-transform:matrix(0.240124,0.011297,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.240124,0.011297,-0.011749,0.249724,0,0);}
.m67_c01002{transform:matrix(0.240156,0.011058,-0.011499,0.249735,0,0);-ms-transform:matrix(0.240156,0.011058,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.240156,0.011058,-0.011499,0.249735,0,0);}
.m4c_c01002{transform:matrix(0.240402,0.010588,-0.011000,0.249758,0,0);-ms-transform:matrix(0.240402,0.010588,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.240402,0.010588,-0.011000,0.249758,0,0);}
.m8e_c01002{transform:matrix(0.240547,0.012280,-0.012746,0.249675,0,0);-ms-transform:matrix(0.240547,0.012280,-0.012746,0.249675,0,0);-webkit-transform:matrix(0.240547,0.012280,-0.012746,0.249675,0,0);}
.m76_c01002{transform:matrix(0.241962,0.012110,-0.012497,0.249687,0,0);-ms-transform:matrix(0.241962,0.012110,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.241962,0.012110,-0.012497,0.249687,0,0);}
.m30_c01002{transform:matrix(0.242766,0.010206,-0.010501,0.249779,0,0);-ms-transform:matrix(0.242766,0.010206,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.242766,0.010206,-0.010501,0.249779,0,0);}
.m45_c01002{transform:matrix(0.242905,0.010698,-0.011000,0.249758,0,0);-ms-transform:matrix(0.242905,0.010698,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.242905,0.010698,-0.011000,0.249758,0,0);}
.m89_c01002{transform:matrix(0.243048,0.012408,-0.012746,0.249675,0,0);-ms-transform:matrix(0.243048,0.012408,-0.012746,0.249675,0,0);-webkit-transform:matrix(0.243048,0.012408,-0.012746,0.249675,0,0);}
.m7c_c01002{transform:matrix(0.243201,0.012172,-0.012497,0.249687,0,0);-ms-transform:matrix(0.243201,0.012172,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.243201,0.012172,-0.012497,0.249687,0,0);}
.m90_c01002{transform:matrix(0.243672,0.011952,-0.012248,0.249700,0,0);-ms-transform:matrix(0.243672,0.011952,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.243672,0.011952,-0.012248,0.249700,0,0);}
.m8c_c01002{transform:matrix(0.243877,0.012450,-0.012746,0.249675,0,0);-ms-transform:matrix(0.243877,0.012450,-0.012746,0.249675,0,0);-webkit-transform:matrix(0.243877,0.012450,-0.012746,0.249675,0,0);}
.m8a_c01002{transform:matrix(0.244671,0.012491,-0.012746,0.249675,0,0);-ms-transform:matrix(0.244671,0.012491,-0.012746,0.249675,0,0);-webkit-transform:matrix(0.244671,0.012491,-0.012746,0.249675,0,0);}
.m50_c01002{transform:matrix(0.245597,0.010817,-0.011000,0.249758,0,0);-ms-transform:matrix(0.245597,0.010817,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.245597,0.010817,-0.011000,0.249758,0,0);}
.m22_c01002{transform:matrix(0.245870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245870,0.000000,0.000000,0.250000,0,0);}
.m25_c01002{transform:matrix(0.246115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246115,0.000000,0.000000,0.250000,0,0);}
.m21_c01002{transform:matrix(0.246175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246175,0.000000,0.000000,0.250000,0,0);}
.m15_c01002{transform:matrix(0.246437,0.010607,-0.010751,0.249769,0,0);-ms-transform:matrix(0.246437,0.010607,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.246437,0.010607,-0.010751,0.249769,0,0);}
.m20_c01002{transform:matrix(0.247080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247080,0.000000,0.000000,0.250000,0,0);}
.m6a_c01002{transform:matrix(0.247118,0.011379,-0.011499,0.249735,0,0);-ms-transform:matrix(0.247118,0.011379,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.247118,0.011379,-0.011499,0.249735,0,0);}
.m38_c01002{transform:matrix(0.247265,0.010891,-0.011000,0.249758,0,0);-ms-transform:matrix(0.247265,0.010891,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.247265,0.010891,-0.011000,0.249758,0,0);}
.m1e_c01002{transform:matrix(0.247545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247545,0.000000,0.000000,0.250000,0,0);}
.mc2_c01002{transform:matrix(0.248205,0.016912,-0.016995,0.249422,0,0);-ms-transform:matrix(0.248205,0.016912,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.248205,0.016912,-0.016995,0.249422,0,0);}
.m75_c01002{transform:matrix(0.249173,0.012471,-0.012497,0.249687,0,0);-ms-transform:matrix(0.249173,0.012471,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.249173,0.012471,-0.012497,0.249687,0,0);}
.m28_c01002{transform:matrix(0.249793,0.011002,-0.011000,0.249758,0,0);-ms-transform:matrix(0.249793,0.011002,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.249793,0.011002,-0.011000,0.249758,0,0);}
.m10_c01002{transform:matrix(0.250323,0.011777,-0.011749,0.249724,0,0);-ms-transform:matrix(0.250323,0.011777,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.250323,0.011777,-0.011749,0.249724,0,0);}
.m55_c01002{transform:matrix(0.250458,0.011783,-0.011749,0.249724,0,0);-ms-transform:matrix(0.250458,0.011783,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.250458,0.011783,-0.011749,0.249724,0,0);}
.m2a_c01002{transform:matrix(0.250848,0.010546,-0.010501,0.249779,0,0);-ms-transform:matrix(0.250848,0.010546,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.250848,0.010546,-0.010501,0.249779,0,0);}
.m8d_c01002{transform:matrix(0.250868,0.012807,-0.012746,0.249675,0,0);-ms-transform:matrix(0.250868,0.012807,-0.012746,0.249675,0,0);-webkit-transform:matrix(0.250868,0.012807,-0.012746,0.249675,0,0);}
.m4b_c01002{transform:matrix(0.252230,0.011109,-0.011000,0.249758,0,0);-ms-transform:matrix(0.252230,0.011109,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.252230,0.011109,-0.011000,0.249758,0,0);}
.m58_c01002{transform:matrix(0.252611,0.011885,-0.011749,0.249724,0,0);-ms-transform:matrix(0.252611,0.011885,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.252611,0.011885,-0.011749,0.249724,0,0);}
.m7f_c01002{transform:matrix(0.252983,0.012662,-0.012497,0.249687,0,0);-ms-transform:matrix(0.252983,0.012662,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.252983,0.012662,-0.012497,0.249687,0,0);}
.mc1_c01002{transform:matrix(0.253991,0.017306,-0.016995,0.249422,0,0);-ms-transform:matrix(0.253991,0.017306,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.253991,0.017306,-0.016995,0.249422,0,0);}
.m47_c01002{transform:matrix(0.254388,0.011204,-0.011000,0.249758,0,0);-ms-transform:matrix(0.254388,0.011204,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.254388,0.011204,-0.011000,0.249758,0,0);}
.m2e_c01002{transform:matrix(0.254520,0.010701,-0.010501,0.249779,0,0);-ms-transform:matrix(0.254520,0.010701,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.254520,0.010701,-0.010501,0.249779,0,0);}
.m92_c01002{transform:matrix(0.255688,0.012541,-0.012248,0.249700,0,0);-ms-transform:matrix(0.255688,0.012541,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.255688,0.012541,-0.012248,0.249700,0,0);}
.mf_c01002{transform:matrix(0.255812,0.012035,-0.011749,0.249724,0,0);-ms-transform:matrix(0.255812,0.012035,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.255812,0.012035,-0.011749,0.249724,0,0);}
.m0_c01002{transform:matrix(0.256400,0.010010,-0.009752,0.249810,0,0);-ms-transform:matrix(0.256400,0.010010,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.256400,0.010010,-0.009752,0.249810,0,0);}
.m34_c01002{transform:matrix(0.258380,0.011380,-0.011000,0.249758,0,0);-ms-transform:matrix(0.258380,0.011380,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.258380,0.011380,-0.011000,0.249758,0,0);}
.m37_c01002{transform:matrix(0.258504,0.011386,-0.011000,0.249758,0,0);-ms-transform:matrix(0.258504,0.011386,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.258504,0.011386,-0.011000,0.249758,0,0);}
.m5b_c01002{transform:matrix(0.258589,0.012166,-0.011749,0.249724,0,0);-ms-transform:matrix(0.258589,0.012166,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.258589,0.012166,-0.011749,0.249724,0,0);}
.mc_c01002{transform:matrix(0.259348,0.012202,-0.011749,0.249724,0,0);-ms-transform:matrix(0.259348,0.012202,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.259348,0.012202,-0.011749,0.249724,0,0);}
.ma3_c01002{transform:matrix(0.259663,0.013516,-0.012995,0.249662,0,0);-ms-transform:matrix(0.259663,0.013516,-0.012995,0.249662,0,0);-webkit-transform:matrix(0.259663,0.013516,-0.012995,0.249662,0,0);}
.m78_c01002{transform:matrix(0.259835,0.013005,-0.012497,0.249687,0,0);-ms-transform:matrix(0.259835,0.013005,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.259835,0.013005,-0.012497,0.249687,0,0);}
.m11_c01002{transform:matrix(0.261648,0.011262,-0.010751,0.249769,0,0);-ms-transform:matrix(0.261648,0.011262,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.261648,0.011262,-0.010751,0.249769,0,0);}
.m13_c01002{transform:matrix(0.261898,0.011273,-0.010751,0.249769,0,0);-ms-transform:matrix(0.261898,0.011273,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.261898,0.011273,-0.010751,0.249769,0,0);}
.m9_c01002{transform:matrix(0.262125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262125,0.000000,0.000000,0.250000,0,0);}
.m18_c01002{transform:matrix(0.262422,0.011295,-0.010751,0.249769,0,0);-ms-transform:matrix(0.262422,0.011295,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.262422,0.011295,-0.010751,0.249769,0,0);}
.m2_c01002{transform:matrix(0.262465,0.010246,-0.009752,0.249810,0,0);-ms-transform:matrix(0.262465,0.010246,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.262465,0.010246,-0.009752,0.249810,0,0);}
.m6_c01002{transform:matrix(0.262500,0.010248,-0.009752,0.249810,0,0);-ms-transform:matrix(0.262500,0.010248,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.262500,0.010248,-0.009752,0.249810,0,0);}
.m80_c01002{transform:matrix(0.262721,0.013149,-0.012497,0.249687,0,0);-ms-transform:matrix(0.262721,0.013149,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.262721,0.013149,-0.012497,0.249687,0,0);}
.m3a_c01002{transform:matrix(0.262820,0.011576,-0.011000,0.249758,0,0);-ms-transform:matrix(0.262820,0.011576,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.262820,0.011576,-0.011000,0.249758,0,0);}
.m7a_c01002{transform:matrix(0.263430,0.013185,-0.012497,0.249687,0,0);-ms-transform:matrix(0.263430,0.013185,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.263430,0.013185,-0.012497,0.249687,0,0);}
.m49_c01002{transform:matrix(0.264174,0.011635,-0.011000,0.249758,0,0);-ms-transform:matrix(0.264174,0.011635,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.264174,0.011635,-0.011000,0.249758,0,0);}
.m31_c01002{transform:matrix(0.264496,0.011120,-0.010501,0.249779,0,0);-ms-transform:matrix(0.264496,0.011120,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.264496,0.011120,-0.010501,0.249779,0,0);}
.mb4_c01002{transform:matrix(0.266355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266355,0.000000,0.000000,0.250000,0,0);}
.m3c_c01002{transform:matrix(0.266956,0.011758,-0.011000,0.249758,0,0);-ms-transform:matrix(0.266956,0.011758,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.266956,0.011758,-0.011000,0.249758,0,0);}
.m4e_c01002{transform:matrix(0.267041,0.011762,-0.011000,0.249758,0,0);-ms-transform:matrix(0.267041,0.011762,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.267041,0.011762,-0.011000,0.249758,0,0);}
.ma1_c01002{transform:matrix(0.267178,0.013907,-0.012995,0.249662,0,0);-ms-transform:matrix(0.267178,0.013907,-0.012995,0.249662,0,0);-webkit-transform:matrix(0.267178,0.013907,-0.012995,0.249662,0,0);}
.m19_c01002{transform:matrix(0.268082,0.011539,-0.010751,0.249769,0,0);-ms-transform:matrix(0.268082,0.011539,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.268082,0.011539,-0.010751,0.249769,0,0);}
.ma2_c01002{transform:matrix(0.270654,0.014088,-0.012995,0.249662,0,0);-ms-transform:matrix(0.270654,0.014088,-0.012995,0.249662,0,0);-webkit-transform:matrix(0.270654,0.014088,-0.012995,0.249662,0,0);}
.m1a_c01002{transform:matrix(0.270735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270735,0.000000,0.000000,0.250000,0,0);}
.m36_c01002{transform:matrix(0.272256,0.011991,-0.011000,0.249758,0,0);-ms-transform:matrix(0.272256,0.011991,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.272256,0.011991,-0.011000,0.249758,0,0);}
.m7e_c01002{transform:matrix(0.273278,0.013678,-0.012497,0.249687,0,0);-ms-transform:matrix(0.273278,0.013678,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.273278,0.013678,-0.012497,0.249687,0,0);}
.mb_c01002{transform:matrix(0.273468,0.012866,-0.011749,0.249724,0,0);-ms-transform:matrix(0.273468,0.012866,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.273468,0.012866,-0.011749,0.249724,0,0);}
.ma_c01002{transform:matrix(0.275425,0.012958,-0.011749,0.249724,0,0);-ms-transform:matrix(0.275425,0.012958,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.275425,0.012958,-0.011749,0.249724,0,0);}
.m5_c01002{transform:matrix(0.275825,0.010768,-0.009752,0.249810,0,0);-ms-transform:matrix(0.275825,0.010768,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.275825,0.010768,-0.009752,0.249810,0,0);}
.m3f_c01002{transform:matrix(0.277476,0.012221,-0.011000,0.249758,0,0);-ms-transform:matrix(0.277476,0.012221,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.277476,0.012221,-0.011000,0.249758,0,0);}
.m7d_c01002{transform:matrix(0.278017,0.013915,-0.012497,0.249687,0,0);-ms-transform:matrix(0.278017,0.013915,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.278017,0.013915,-0.012497,0.249687,0,0);}
.m39_c01002{transform:matrix(0.278185,0.012252,-0.011000,0.249758,0,0);-ms-transform:matrix(0.278185,0.012252,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.278185,0.012252,-0.011000,0.249758,0,0);}
.m3_c01002{transform:matrix(0.279567,0.010914,-0.009752,0.249810,0,0);-ms-transform:matrix(0.279567,0.010914,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.279567,0.010914,-0.009752,0.249810,0,0);}
.m1d_c01002{transform:matrix(0.280655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280655,0.000000,0.000000,0.250000,0,0);}
.m53_c01002{transform:matrix(0.281757,0.012410,-0.011000,0.249758,0,0);-ms-transform:matrix(0.281757,0.012410,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.281757,0.012410,-0.011000,0.249758,0,0);}
.m17_c01002{transform:matrix(0.285581,0.012292,-0.010751,0.249769,0,0);-ms-transform:matrix(0.285581,0.012292,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.285581,0.012292,-0.010751,0.249769,0,0);}
.m16_c01002{transform:matrix(0.286929,0.012350,-0.010751,0.249769,0,0);-ms-transform:matrix(0.286929,0.012350,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.286929,0.012350,-0.010751,0.249769,0,0);}
.m29_c01002{transform:matrix(0.287157,0.012648,-0.011000,0.249758,0,0);-ms-transform:matrix(0.287157,0.012648,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.287157,0.012648,-0.011000,0.249758,0,0);}
.m14_c01002{transform:matrix(0.289442,0.012458,-0.010751,0.249769,0,0);-ms-transform:matrix(0.289442,0.012458,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.289442,0.012458,-0.010751,0.249769,0,0);}
.m52_c01002{transform:matrix(0.293975,0.012948,-0.011000,0.249758,0,0);-ms-transform:matrix(0.293975,0.012948,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.293975,0.012948,-0.011000,0.249758,0,0);}
.m27_c01002{transform:matrix(0.297007,0.013081,-0.011000,0.249758,0,0);-ms-transform:matrix(0.297007,0.013081,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.297007,0.013081,-0.011000,0.249758,0,0);}
.m54_c01002{transform:matrix(0.298655,0.013154,-0.011000,0.249758,0,0);-ms-transform:matrix(0.298655,0.013154,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.298655,0.013154,-0.011000,0.249758,0,0);}
.m4f_c01002{transform:matrix(0.298780,0.013159,-0.011000,0.249758,0,0);-ms-transform:matrix(0.298780,0.013159,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.298780,0.013159,-0.011000,0.249758,0,0);}
.m4d_c01002{transform:matrix(0.299220,0.013179,-0.011000,0.249758,0,0);-ms-transform:matrix(0.299220,0.013179,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.299220,0.013179,-0.011000,0.249758,0,0);}
.m51_c01002{transform:matrix(0.302592,0.013327,-0.011000,0.249758,0,0);-ms-transform:matrix(0.302592,0.013327,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.302592,0.013327,-0.011000,0.249758,0,0);}
.m12_c01002{transform:matrix(0.303359,0.013057,-0.010751,0.249769,0,0);-ms-transform:matrix(0.303359,0.013057,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.303359,0.013057,-0.010751,0.249769,0,0);}
.m7_c01002{transform:matrix(0.306390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306390,0.000000,0.000000,0.250000,0,0);}
.m82_c01002{transform:matrix(0.367362,0.018754,-0.012746,0.249675,0,0);-ms-transform:matrix(0.367362,0.018754,-0.012746,0.249675,0,0);-webkit-transform:matrix(0.367362,0.018754,-0.012746,0.249675,0,0);}
.m1c_c01002{transform:matrix(0.419410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419410,0.000000,0.000000,0.250000,0,0);}
.m26_c01002{transform:matrix(0.457065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457065,0.000000,0.000000,0.250000,0,0);}
.m1b_c01002{transform:matrix(0.457080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457080,0.000000,0.000000,0.250000,0,0);}
.m41_c01002{transform:matrix(0.653966,0.028803,-0.011000,0.249758,0,0);-ms-transform:matrix(0.653966,0.028803,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.653966,0.028803,-0.011000,0.249758,0,0);}
.m81_c01002{transform:matrix(0.679974,0.034713,-0.012746,0.249675,0,0);-ms-transform:matrix(0.679974,0.034713,-0.012746,0.249675,0,0);-webkit-transform:matrix(0.679974,0.034713,-0.012746,0.249675,0,0);}
.m42_c01002{transform:matrix(0.852988,0.037569,-0.011000,0.249758,0,0);-ms-transform:matrix(0.852988,0.037569,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.852988,0.037569,-0.011000,0.249758,0,0);}
.m40_c01002{transform:matrix(5.650362,0.248865,-0.011000,0.249758,0,0);-ms-transform:matrix(5.650362,0.248865,-0.011000,0.249758,0,0);-webkit-transform:matrix(5.650362,0.248865,-0.011000,0.249758,0,0);}
.v0_c01002{vertical-align:0.000000px;}
.ls0_c01002{letter-spacing:0.000000px;}
.sc__c01002{text-shadow:none;}
.sc0_c01002{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__c01002{-webkit-text-stroke:0px transparent;}
.sc0_c01002{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01002{word-spacing:0.000000px;}
.fc0_c01002{color:transparent;}
.fsc_c01002{font-size:17.999433px;}
.fs7_c01002{font-size:42.000000px;}
.fs1_c01002{font-size:60.000000px;}
.fs5_c01002{font-size:65.995050px;}
.fs9_c01002{font-size:65.997921px;}
.fs1a_c01002{font-size:66.000000px;}
.fs0_c01002{font-size:71.982790px;}
.fsb_c01002{font-size:71.997732px;}
.fs6_c01002{font-size:72.000000px;}
.fs3_c01002{font-size:72.007560px;}
.fs12_c01002{font-size:72.018034px;}
.fs17_c01002{font-size:72.025376px;}
.fs14_c01002{font-size:77.970862px;}
.fsa_c01002{font-size:77.990834px;}
.fsd_c01002{font-size:77.997543px;}
.fs8_c01002{font-size:78.000000px;}
.fsf_c01002{font-size:78.004563px;}
.fs4_c01002{font-size:78.008190px;}
.fs15_c01002{font-size:78.015676px;}
.fs11_c01002{font-size:78.019537px;}
.fs13_c01002{font-size:78.023474px;}
.fs1c_c01002{font-size:78.024488px;}
.fse_c01002{font-size:84.004914px;}
.fs19_c01002{font-size:84.020703px;}
.fs2_c01002{font-size:90.000000px;}
.fs18_c01002{font-size:90.018088px;}
.fs10_c01002{font-size:90.022542px;}
.fs16_c01002{font-size:90.031719px;}
.fs1b_c01002{font-size:96.030139px;}
.y0_c01002{bottom:0.000000px;}
.yc1_c01002{bottom:120.595320px;}
.yc0_c01002{bottom:129.654744px;}
.ybf_c01002{bottom:134.434164px;}
.ybe_c01002{bottom:137.439153px;}
.ybd_c01002{bottom:139.382910px;}
.ybc_c01002{bottom:143.196093px;}
.ybb_c01002{bottom:146.096706px;}
.yba_c01002{bottom:147.989142px;}
.yb9_c01002{bottom:157.214064px;}
.yb8_c01002{bottom:160.261416px;}
.yb7_c01002{bottom:162.416676px;}
.yb6_c01002{bottom:171.521706px;}
.yb5_c01002{bottom:173.805588px;}
.yb4_c01002{bottom:175.293462px;}
.y24_c01002{bottom:180.510000px;}
.yb2_c01002{bottom:181.573500px;}
.yb3_c01002{bottom:183.384000px;}
.yb1_c01002{bottom:195.707325px;}
.yb0_c01002{bottom:197.691555px;}
.yaf_c01002{bottom:199.689453px;}
.yae_c01002{bottom:207.076842px;}
.yad_c01002{bottom:214.454985px;}
.yac_c01002{bottom:216.493315px;}
.yab_c01002{bottom:218.507817px;}
.yaa_c01002{bottom:225.778215px;}
.ya9_c01002{bottom:228.022480px;}
.ya8_c01002{bottom:233.875500px;}
.y23_c01002{bottom:252.870000px;}
.ya7_c01002{bottom:309.189264px;}
.ya6_c01002{bottom:313.464906px;}
.ya5_c01002{bottom:317.336004px;}
.ya4_c01002{bottom:320.515834px;}
.ya3_c01002{bottom:322.104758px;}
.y22_c01002{bottom:323.715000px;}
.ya2_c01002{bottom:326.460000px;}
.ya1_c01002{bottom:351.208422px;}
.ya0_c01002{bottom:355.451488px;}
.y9f_c01002{bottom:357.546292px;}
.y9e_c01002{bottom:359.116167px;}
.y9d_c01002{bottom:368.403576px;}
.y9c_c01002{bottom:372.357318px;}
.y9b_c01002{bottom:374.704650px;}
.y9a_c01002{bottom:379.391124px;}
.y99_c01002{bottom:381.061104px;}
.y98_c01002{bottom:383.358360px;}
.y97_c01002{bottom:387.371850px;}
.y96_c01002{bottom:389.074200px;}
.y95_c01002{bottom:390.731622px;}
.y21_c01002{bottom:394.206000px;}
.y94_c01002{bottom:396.394500px;}
.y93_c01002{bottom:406.121561px;}
.y92_c01002{bottom:409.455006px;}
.y91_c01002{bottom:413.052464px;}
.y90_c01002{bottom:424.938737px;}
.y8f_c01002{bottom:426.505757px;}
.y8e_c01002{bottom:430.270500px;}
.y8d_c01002{bottom:440.313525px;}
.y8c_c01002{bottom:443.186329px;}
.y8b_c01002{bottom:447.702889px;}
.y8a_c01002{bottom:451.637667px;}
.y89_c01002{bottom:454.353876px;}
.y88_c01002{bottom:458.984421px;}
.y87_c01002{bottom:463.410787px;}
.y86_c01002{bottom:465.091339px;}
.y20_c01002{bottom:466.429500px;}
.y85_c01002{bottom:467.941500px;}
.y84_c01002{bottom:499.571737px;}
.y83_c01002{bottom:501.433500px;}
.y82_c01002{bottom:506.123397px;}
.y81_c01002{bottom:509.034222px;}
.y7e_c01002{bottom:511.205700px;}
.y80_c01002{bottom:513.586278px;}
.y7d_c01002{bottom:513.921225px;}
.y7c_c01002{bottom:518.892450px;}
.y7f_c01002{bottom:519.763500px;}
.y7b_c01002{bottom:524.932200px;}
.y7a_c01002{bottom:527.766375px;}
.y79_c01002{bottom:529.387725px;}
.y78_c01002{bottom:532.184775px;}
.y77_c01002{bottom:534.335325px;}
.y1f_c01002{bottom:538.107000px;}
.y76_c01002{bottom:538.683000px;}
.y75_c01002{bottom:547.863462px;}
.y74_c01002{bottom:568.750929px;}
.y73_c01002{bottom:573.229242px;}
.y72_c01002{bottom:583.039200px;}
.y71_c01002{bottom:584.686875px;}
.y70_c01002{bottom:585.814725px;}
.y6f_c01002{bottom:589.177425px;}
.y6e_c01002{bottom:591.367800px;}
.y6d_c01002{bottom:596.937000px;}
.y6c_c01002{bottom:598.530675px;}
.y6b_c01002{bottom:602.941050px;}
.y6a_c01002{bottom:605.132100px;}
.y1e_c01002{bottom:609.109500px;}
.y69_c01002{bottom:610.504500px;}
.y68_c01002{bottom:640.110204px;}
.y67_c01002{bottom:641.775671px;}
.y66_c01002{bottom:643.433912px;}
.y65_c01002{bottom:655.975566px;}
.y64_c01002{bottom:657.978774px;}
.y63_c01002{bottom:661.092882px;}
.y62_c01002{bottom:665.610864px;}
.y61_c01002{bottom:667.653609px;}
.y60_c01002{bottom:672.201399px;}
.y5f_c01002{bottom:673.782189px;}
.y5e_c01002{bottom:675.279972px;}
.y5d_c01002{bottom:678.268500px;}
.y5c_c01002{bottom:692.024279px;}
.y5b_c01002{bottom:693.632948px;}
.y5a_c01002{bottom:694.654916px;}
.y59_c01002{bottom:699.389484px;}
.y58_c01002{bottom:700.870196px;}
.y57_c01002{bottom:702.405192px;}
.y56_c01002{bottom:707.137928px;}
.y55_c01002{bottom:709.183556px;}
.y54_c01002{bottom:710.719751px;}
.y53_c01002{bottom:715.798500px;}
.y52_c01002{bottom:749.544742px;}
.y51_c01002{bottom:762.351441px;}
.y50_c01002{bottom:765.908086px;}
.y4f_c01002{bottom:770.055430px;}
.y4e_c01002{bottom:771.514531px;}
.y4d_c01002{bottom:776.099994px;}
.y4c_c01002{bottom:778.115955px;}
.y4b_c01002{bottom:782.162773px;}
.y4a_c01002{bottom:783.633603px;}
.y49_c01002{bottom:785.180623px;}
.y48_c01002{bottom:797.226582px;}
.y47_c01002{bottom:804.494964px;}
.y46_c01002{bottom:805.516710px;}
.y45_c01002{bottom:810.755064px;}
.y44_c01002{bottom:813.714504px;}
.y43_c01002{bottom:816.652296px;}
.y42_c01002{bottom:818.578638px;}
.y1d_c01002{bottom:820.534500px;}
.y41_c01002{bottom:821.905500px;}
.y40_c01002{bottom:834.764904px;}
.y3f_c01002{bottom:835.571952px;}
.y3e_c01002{bottom:842.942304px;}
.y3d_c01002{bottom:845.766664px;}
.y3c_c01002{bottom:847.541365px;}
.y3b_c01002{bottom:849.412458px;}
.y3a_c01002{bottom:852.150883px;}
.y39_c01002{bottom:853.957237px;}
.y1c_c01002{bottom:856.572000px;}
.y38_c01002{bottom:857.544252px;}
.y37_c01002{bottom:875.892144px;}
.y36_c01002{bottom:877.794792px;}
.y35_c01002{bottom:880.755288px;}
.y34_c01002{bottom:884.627574px;}
.y33_c01002{bottom:886.046178px;}
.y32_c01002{bottom:888.921468px;}
.y31_c01002{bottom:890.410230px;}
.y30_c01002{bottom:891.835500px;}
.y2f_c01002{bottom:909.120213px;}
.y2e_c01002{bottom:912.881880px;}
.y2d_c01002{bottom:914.289678px;}
.y2c_c01002{bottom:915.639390px;}
.y2b_c01002{bottom:918.818433px;}
.y2a_c01002{bottom:921.644865px;}
.y29_c01002{bottom:923.505381px;}
.y1b_c01002{bottom:927.304500px;}
.y28_c01002{bottom:928.552500px;}
.y27_c01002{bottom:971.330472px;}
.y26_c01002{bottom:972.834150px;}
.y25_c01002{bottom:977.155500px;}
.y1a_c01002{bottom:1015.603500px;}
.y19_c01002{bottom:1029.104995px;}
.y18_c01002{bottom:1030.982074px;}
.y17_c01002{bottom:1033.892895px;}
.y16_c01002{bottom:1036.728121px;}
.y15_c01002{bottom:1038.146734px;}
.y14_c01002{bottom:1041.917985px;}
.y13_c01002{bottom:1043.871174px;}
.y12_c01002{bottom:1049.486608px;}
.y11_c01002{bottom:1051.404000px;}
.y10_c01002{bottom:1071.251226px;}
.yf_c01002{bottom:1076.253248px;}
.ye_c01002{bottom:1078.989993px;}
.yd_c01002{bottom:1080.344249px;}
.y8_c01002{bottom:1086.624000px;}
.yc_c01002{bottom:1087.058124px;}
.yb_c01002{bottom:1101.273162px;}
.ya_c01002{bottom:1107.028500px;}
.y7_c01002{bottom:1109.800764px;}
.y6_c01002{bottom:1113.690370px;}
.y5_c01002{bottom:1114.933612px;}
.y4_c01002{bottom:1119.676734px;}
.y3_c01002{bottom:1122.644322px;}
.y2_c01002{bottom:1123.882650px;}
.y1_c01002{bottom:1125.643500px;}
.y9_c01002{bottom:1201.516500px;}
.he_c01002{height:17.999433px;}
.h9_c01002{height:42.000000px;}
.h3_c01002{height:60.000000px;}
.h7_c01002{height:65.995050px;}
.hb_c01002{height:65.997921px;}
.h1c_c01002{height:66.000000px;}
.h2_c01002{height:71.982790px;}
.hd_c01002{height:71.997732px;}
.h8_c01002{height:72.000000px;}
.h5_c01002{height:72.007560px;}
.h14_c01002{height:72.018034px;}
.h19_c01002{height:72.025376px;}
.h16_c01002{height:77.970862px;}
.hc_c01002{height:77.990834px;}
.hf_c01002{height:77.997543px;}
.ha_c01002{height:78.000000px;}
.h11_c01002{height:78.004563px;}
.h6_c01002{height:78.008190px;}
.h17_c01002{height:78.015676px;}
.h13_c01002{height:78.019537px;}
.h15_c01002{height:78.023474px;}
.h1e_c01002{height:78.024488px;}
.h10_c01002{height:84.004914px;}
.h1b_c01002{height:84.020703px;}
.h4_c01002{height:90.000000px;}
.h1a_c01002{height:90.018088px;}
.h12_c01002{height:90.022542px;}
.h18_c01002{height:90.031719px;}
.h1d_c01002{height:96.030139px;}
.h0_c01002{height:1246.320000px;}
.h1_c01002{height:1246.500000px;}
.w0_c01002{width:896.100000px;}
.w1_c01002{width:896.250000px;}
.x0_c01002{left:0.000000px;}
.x25_c01002{left:146.340000px;}
.x24_c01002{left:148.770000px;}
.x22_c01002{left:150.930000px;}
.x21_c01002{left:153.090000px;}
.x20_c01002{left:155.790000px;}
.x1f_c01002{left:157.950000px;}
.x1e_c01002{left:160.650000px;}
.x1d_c01002{left:167.940000px;}
.x1c_c01002{left:169.560000px;}
.x1b_c01002{left:171.990000px;}
.x1a_c01002{left:176.310000px;}
.x1_c01002{left:179.193000px;}
.x9b_c01002{left:188.407110px;}
.x23_c01002{left:196.560000px;}
.x93_c01002{left:223.290000px;}
.x2_c01002{left:224.297850px;}
.x88_c01002{left:225.922500px;}
.x75_c01002{left:230.772000px;}
.x6c_c01002{left:235.063500px;}
.x60_c01002{left:238.519500px;}
.x4e_c01002{left:241.864500px;}
.x39_c01002{left:244.911384px;}
.x29_c01002{left:248.419500px;}
.xc_c01002{left:254.048517px;}
.x3_c01002{left:256.018098px;}
.x8e_c01002{left:266.907947px;}
.x85_c01002{left:271.781316px;}
.x7c_c01002{left:274.122000px;}
.x73_c01002{left:276.808500px;}
.x69_c01002{left:278.586281px;}
.x57_c01002{left:283.420500px;}
.x11_c01002{left:285.103500px;}
.x46_c01002{left:286.550580px;}
.x94_c01002{left:288.906000px;}
.x31_c01002{left:291.019500px;}
.x8f_c01002{left:299.871680px;}
.x86_c01002{left:304.452405px;}
.x74_c01002{left:309.405675px;}
.x5f_c01002{left:315.197517px;}
.x3f_c01002{left:320.384389px;}
.x6d_c01002{left:321.930047px;}
.x32_c01002{left:323.379607px;}
.x12_c01002{left:329.649409px;}
.x4_c01002{left:332.034006px;}
.x90_c01002{left:333.212757px;}
.x80_c01002{left:339.240598px;}
.x9c_c01002{left:340.534398px;}
.x61_c01002{left:345.860052px;}
.x89_c01002{left:347.110691px;}
.x58_c01002{left:348.323532px;}
.x4f_c01002{left:349.814941px;}
.x7d_c01002{left:350.876668px;}
.x47_c01002{left:352.069682px;}
.x33_c01002{left:357.181272px;}
.x40_c01002{left:364.121109px;}
.x6a_c01002{left:366.322103px;}
.x2a_c01002{left:368.468830px;}
.x26_c01002{left:370.939500px;}
.x3a_c01002{left:376.330709px;}
.x59_c01002{left:380.851472px;}
.x50_c01002{left:382.467256px;}
.x9d_c01002{left:384.578982px;}
.x62_c01002{left:389.637231px;}
.x81_c01002{left:403.786988px;}
.x76_c01002{left:406.225371px;}
.x95_c01002{left:407.646543px;}
.x2b_c01002{left:412.722532px;}
.x5a_c01002{left:415.182107px;}
.xd_c01002{left:417.598885px;}
.x6e_c01002{left:420.783095px;}
.x34_c01002{left:422.463425px;}
.x51_c01002{left:425.947732px;}
.x96_c01002{left:429.483282px;}
.x41_c01002{left:430.822341px;}
.x87_c01002{left:436.344786px;}
.x48_c01002{left:439.962471px;}
.x3b_c01002{left:443.039220px;}
.x8_c01002{left:449.010000px;}
.xe_c01002{left:450.597669px;}
.x5_c01002{left:453.530888px;}
.x35_c01002{left:454.672183px;}
.x13_c01002{left:460.110318px;}
.x97_c01002{left:463.002609px;}
.x27_c01002{left:469.053787px;}
.x9_c01002{left:471.690000px;}
.x63_c01002{left:477.756523px;}
.x2c_c01002{left:479.951236px;}
.x49_c01002{left:483.756801px;}
.x6_c01002{left:485.377009px;}
.x3c_c01002{left:488.623602px;}
.x8a_c01002{left:490.863294px;}
.x77_c01002{left:496.929576px;}
.x42_c01002{left:498.015081px;}
.x28_c01002{left:503.194113px;}
.x14_c01002{left:505.487895px;}
.x64_c01002{left:509.598150px;}
.x5b_c01002{left:513.948241px;}
.xf_c01002{left:517.259212px;}
.x82_c01002{left:525.026127px;}
.x52_c01002{left:526.543536px;}
.x3d_c01002{left:531.849015px;}
.x36_c01002{left:542.590677px;}
.x78_c01002{left:550.135317px;}
.x2d_c01002{left:555.567045px;}
.x83_c01002{left:557.109012px;}
.x53_c01002{left:559.170376px;}
.x9e_c01002{left:560.961216px;}
.x91_c01002{left:574.745799px;}
.x8b_c01002{left:578.034036px;}
.x4a_c01002{left:583.333838px;}
.x7_c01002{left:585.010776px;}
.x2e_c01002{left:587.670909px;}
.x54_c01002{left:590.643372px;}
.x15_c01002{left:593.103691px;}
.x98_c01002{left:596.632314px;}
.x92_c01002{left:607.417416px;}
.x37_c01002{left:609.807393px;}
.x4b_c01002{left:615.030335px;}
.x43_c01002{left:616.949527px;}
.x2f_c01002{left:621.156390px;}
.x16_c01002{left:626.061700px;}
.x79_c01002{left:627.210665px;}
.x99_c01002{left:628.263924px;}
.x6f_c01002{left:630.478689px;}
.x10_c01002{left:639.124593px;}
.x44_c01002{left:640.147806px;}
.x84_c01002{left:647.143388px;}
.xa_c01002{left:651.712500px;}
.x38_c01002{left:653.006151px;}
.x5c_c01002{left:656.430117px;}
.x65_c01002{left:664.634458px;}
.x3e_c01002{left:670.339180px;}
.x9a_c01002{left:672.988296px;}
.x17_c01002{left:691.931265px;}
.x7e_c01002{left:698.503194px;}
.x4c_c01002{left:705.103243px;}
.x8c_c01002{left:707.625783px;}
.x30_c01002{left:710.630326px;}
.x55_c01002{left:713.000392px;}
.x7a_c01002{left:715.682105px;}
.x5d_c01002{left:724.060419px;}
.x72_c01002{left:727.483122px;}
.x70_c01002{left:729.803764px;}
.x66_c01002{left:731.821204px;}
.x8d_c01002{left:741.055290px;}
.x56_c01002{left:747.193165px;}
.x67_c01002{left:754.355647px;}
.x18_c01002{left:759.557072px;}
.x7f_c01002{left:766.464665px;}
.x5e_c01002{left:767.564871px;}
.x7b_c01002{left:771.955275px;}
.xb_c01002{left:774.044046px;}
.x6b_c01002{left:775.489605px;}
.x4d_c01002{left:782.344121px;}
.x71_c01002{left:784.059954px;}
.x68_c01002{left:787.276194px;}
.x19_c01002{left:803.166418px;}
.x45_c01002{left:805.173115px;}
@media print{
.v0_c01002{vertical-align:0.000000pt;}
.ls0_c01002{letter-spacing:0.000000pt;}
.ws0_c01002{word-spacing:0.000000pt;}
.fsc_c01002{font-size:15.999496pt;}
.fs7_c01002{font-size:37.333333pt;}
.fs1_c01002{font-size:53.333333pt;}
.fs5_c01002{font-size:58.662267pt;}
.fs9_c01002{font-size:58.664819pt;}
.fs1a_c01002{font-size:58.666667pt;}
.fs0_c01002{font-size:63.984702pt;}
.fsb_c01002{font-size:63.997984pt;}
.fs6_c01002{font-size:64.000000pt;}
.fs3_c01002{font-size:64.006720pt;}
.fs12_c01002{font-size:64.016030pt;}
.fs17_c01002{font-size:64.022556pt;}
.fs14_c01002{font-size:69.307432pt;}
.fsa_c01002{font-size:69.325186pt;}
.fsd_c01002{font-size:69.331149pt;}
.fs8_c01002{font-size:69.333333pt;}
.fsf_c01002{font-size:69.337389pt;}
.fs4_c01002{font-size:69.340613pt;}
.fs15_c01002{font-size:69.347268pt;}
.fs11_c01002{font-size:69.350699pt;}
.fs13_c01002{font-size:69.354200pt;}
.fs1c_c01002{font-size:69.355101pt;}
.fse_c01002{font-size:74.671035pt;}
.fs19_c01002{font-size:74.685070pt;}
.fs2_c01002{font-size:80.000000pt;}
.fs18_c01002{font-size:80.016078pt;}
.fs10_c01002{font-size:80.020037pt;}
.fs16_c01002{font-size:80.028195pt;}
.fs1b_c01002{font-size:85.360124pt;}
.y0_c01002{bottom:0.000000pt;}
.yc1_c01002{bottom:107.195840pt;}
.yc0_c01002{bottom:115.248661pt;}
.ybf_c01002{bottom:119.497035pt;}
.ybe_c01002{bottom:122.168136pt;}
.ybd_c01002{bottom:123.895920pt;}
.ybc_c01002{bottom:127.285416pt;}
.ybb_c01002{bottom:129.863739pt;}
.yba_c01002{bottom:131.545904pt;}
.yb9_c01002{bottom:139.745835pt;}
.yb8_c01002{bottom:142.454592pt;}
.yb7_c01002{bottom:144.370379pt;}
.yb6_c01002{bottom:152.463739pt;}
.yb5_c01002{bottom:154.493856pt;}
.yb4_c01002{bottom:155.816411pt;}
.y24_c01002{bottom:160.453333pt;}
.yb2_c01002{bottom:161.398667pt;}
.yb3_c01002{bottom:163.008000pt;}
.yb1_c01002{bottom:173.962067pt;}
.yb0_c01002{bottom:175.725827pt;}
.yaf_c01002{bottom:177.501736pt;}
.yae_c01002{bottom:184.068304pt;}
.yad_c01002{bottom:190.626653pt;}
.yac_c01002{bottom:192.438503pt;}
.yab_c01002{bottom:194.229171pt;}
.yaa_c01002{bottom:200.691747pt;}
.ya9_c01002{bottom:202.686649pt;}
.ya8_c01002{bottom:207.889333pt;}
.y23_c01002{bottom:224.773333pt;}
.ya7_c01002{bottom:274.834901pt;}
.ya6_c01002{bottom:278.635472pt;}
.ya5_c01002{bottom:282.076448pt;}
.ya4_c01002{bottom:284.902964pt;}
.ya3_c01002{bottom:286.315340pt;}
.y22_c01002{bottom:287.746667pt;}
.ya2_c01002{bottom:290.186667pt;}
.ya1_c01002{bottom:312.185264pt;}
.ya0_c01002{bottom:315.956879pt;}
.y9f_c01002{bottom:317.818927pt;}
.y9e_c01002{bottom:319.214371pt;}
.y9d_c01002{bottom:327.469845pt;}
.y9c_c01002{bottom:330.984283pt;}
.y9b_c01002{bottom:333.070800pt;}
.y9a_c01002{bottom:337.236555pt;}
.y99_c01002{bottom:338.720981pt;}
.y98_c01002{bottom:340.762987pt;}
.y97_c01002{bottom:344.330533pt;}
.y96_c01002{bottom:345.843733pt;}
.y95_c01002{bottom:347.316997pt;}
.y21_c01002{bottom:350.405333pt;}
.y94_c01002{bottom:352.350667pt;}
.y93_c01002{bottom:360.996943pt;}
.y92_c01002{bottom:363.960005pt;}
.y91_c01002{bottom:367.157745pt;}
.y90_c01002{bottom:377.723321pt;}
.y8f_c01002{bottom:379.116228pt;}
.y8e_c01002{bottom:382.462667pt;}
.y8d_c01002{bottom:391.389800pt;}
.y8c_c01002{bottom:393.943404pt;}
.y8b_c01002{bottom:397.958124pt;}
.y8a_c01002{bottom:401.455704pt;}
.y89_c01002{bottom:403.870112pt;}
.y88_c01002{bottom:407.986152pt;}
.y87_c01002{bottom:411.920700pt;}
.y86_c01002{bottom:413.414524pt;}
.y20_c01002{bottom:414.604000pt;}
.y85_c01002{bottom:415.948000pt;}
.y84_c01002{bottom:444.063767pt;}
.y83_c01002{bottom:445.718667pt;}
.y82_c01002{bottom:449.887464pt;}
.y81_c01002{bottom:452.474864pt;}
.y7e_c01002{bottom:454.405067pt;}
.y80_c01002{bottom:456.521136pt;}
.y7d_c01002{bottom:456.818867pt;}
.y7c_c01002{bottom:461.237733pt;}
.y7f_c01002{bottom:462.012000pt;}
.y7b_c01002{bottom:466.606400pt;}
.y7a_c01002{bottom:469.125667pt;}
.y79_c01002{bottom:470.566867pt;}
.y78_c01002{bottom:473.053133pt;}
.y77_c01002{bottom:474.964733pt;}
.y1f_c01002{bottom:478.317333pt;}
.y76_c01002{bottom:478.829333pt;}
.y75_c01002{bottom:486.989744pt;}
.y74_c01002{bottom:505.556381pt;}
.y73_c01002{bottom:509.537104pt;}
.y72_c01002{bottom:518.257067pt;}
.y71_c01002{bottom:519.721667pt;}
.y70_c01002{bottom:520.724200pt;}
.y6f_c01002{bottom:523.713267pt;}
.y6e_c01002{bottom:525.660267pt;}
.y6d_c01002{bottom:530.610667pt;}
.y6c_c01002{bottom:532.027267pt;}
.y6b_c01002{bottom:535.947600pt;}
.y6a_c01002{bottom:537.895200pt;}
.y1e_c01002{bottom:541.430667pt;}
.y69_c01002{bottom:542.670667pt;}
.y68_c01002{bottom:568.986848pt;}
.y67_c01002{bottom:570.467263pt;}
.y66_c01002{bottom:571.941255pt;}
.y65_c01002{bottom:583.089392pt;}
.y64_c01002{bottom:584.870021pt;}
.y63_c01002{bottom:587.638117pt;}
.y62_c01002{bottom:591.654101pt;}
.y61_c01002{bottom:593.469875pt;}
.y60_c01002{bottom:597.512355pt;}
.y5f_c01002{bottom:598.917501pt;}
.y5e_c01002{bottom:600.248864pt;}
.y5d_c01002{bottom:602.905333pt;}
.y5c_c01002{bottom:615.132692pt;}
.y5b_c01002{bottom:616.562620pt;}
.y5a_c01002{bottom:617.471036pt;}
.y59_c01002{bottom:621.679541pt;}
.y58_c01002{bottom:622.995729pt;}
.y57_c01002{bottom:624.360171pt;}
.y56_c01002{bottom:628.567047pt;}
.y55_c01002{bottom:630.385383pt;}
.y54_c01002{bottom:631.750889pt;}
.y53_c01002{bottom:636.265333pt;}
.y52_c01002{bottom:666.261993pt;}
.y51_c01002{bottom:677.645725pt;}
.y50_c01002{bottom:680.807188pt;}
.y4f_c01002{bottom:684.493716pt;}
.y4e_c01002{bottom:685.790695pt;}
.y4d_c01002{bottom:689.866661pt;}
.y4c_c01002{bottom:691.658627pt;}
.y4b_c01002{bottom:695.255799pt;}
.y4a_c01002{bottom:696.563203pt;}
.y49_c01002{bottom:697.938332pt;}
.y48_c01002{bottom:708.645851pt;}
.y47_c01002{bottom:715.106635pt;}
.y46_c01002{bottom:716.014853pt;}
.y45_c01002{bottom:720.671168pt;}
.y44_c01002{bottom:723.301781pt;}
.y43_c01002{bottom:725.913152pt;}
.y42_c01002{bottom:727.625456pt;}
.y1d_c01002{bottom:729.364000pt;}
.y41_c01002{bottom:730.582667pt;}
.y40_c01002{bottom:742.013248pt;}
.y3f_c01002{bottom:742.730624pt;}
.y3e_c01002{bottom:749.282048pt;}
.y3d_c01002{bottom:751.792591pt;}
.y3c_c01002{bottom:753.370103pt;}
.y3b_c01002{bottom:755.033296pt;}
.y3a_c01002{bottom:757.467452pt;}
.y39_c01002{bottom:759.073100pt;}
.y1c_c01002{bottom:761.397333pt;}
.y38_c01002{bottom:762.261557pt;}
.y37_c01002{bottom:778.570795pt;}
.y36_c01002{bottom:780.262037pt;}
.y35_c01002{bottom:782.893589pt;}
.y34_c01002{bottom:786.335621pt;}
.y33_c01002{bottom:787.596603pt;}
.y32_c01002{bottom:790.152416pt;}
.y31_c01002{bottom:791.475760pt;}
.y30_c01002{bottom:792.742667pt;}
.y2f_c01002{bottom:808.106856pt;}
.y2e_c01002{bottom:811.450560pt;}
.y2d_c01002{bottom:812.701936pt;}
.y2c_c01002{bottom:813.901680pt;}
.y2b_c01002{bottom:816.727496pt;}
.y2a_c01002{bottom:819.239880pt;}
.y29_c01002{bottom:820.893672pt;}
.y1b_c01002{bottom:824.270667pt;}
.y28_c01002{bottom:825.380000pt;}
.y27_c01002{bottom:863.404864pt;}
.y26_c01002{bottom:864.741467pt;}
.y25_c01002{bottom:868.582667pt;}
.y1a_c01002{bottom:902.758667pt;}
.y19_c01002{bottom:914.759996pt;}
.y18_c01002{bottom:916.428511pt;}
.y17_c01002{bottom:919.015907pt;}
.y16_c01002{bottom:921.536108pt;}
.y15_c01002{bottom:922.797097pt;}
.y14_c01002{bottom:926.149320pt;}
.y13_c01002{bottom:927.885488pt;}
.y12_c01002{bottom:932.876985pt;}
.y11_c01002{bottom:934.581333pt;}
.y10_c01002{bottom:952.223312pt;}
.yf_c01002{bottom:956.669553pt;}
.ye_c01002{bottom:959.102216pt;}
.yd_c01002{bottom:960.305999pt;}
.y8_c01002{bottom:965.888000pt;}
.yc_c01002{bottom:966.273888pt;}
.yb_c01002{bottom:978.909477pt;}
.ya_c01002{bottom:984.025333pt;}
.y7_c01002{bottom:986.489568pt;}
.y6_c01002{bottom:989.946996pt;}
.y5_c01002{bottom:991.052100pt;}
.y4_c01002{bottom:995.268208pt;}
.y3_c01002{bottom:997.906064pt;}
.y2_c01002{bottom:999.006800pt;}
.y1_c01002{bottom:1000.572000pt;}
.y9_c01002{bottom:1068.014667pt;}
.he_c01002{height:15.999496pt;}
.h9_c01002{height:37.333333pt;}
.h3_c01002{height:53.333333pt;}
.h7_c01002{height:58.662267pt;}
.hb_c01002{height:58.664819pt;}
.h1c_c01002{height:58.666667pt;}
.h2_c01002{height:63.984702pt;}
.hd_c01002{height:63.997984pt;}
.h8_c01002{height:64.000000pt;}
.h5_c01002{height:64.006720pt;}
.h14_c01002{height:64.016030pt;}
.h19_c01002{height:64.022556pt;}
.h16_c01002{height:69.307432pt;}
.hc_c01002{height:69.325186pt;}
.hf_c01002{height:69.331149pt;}
.ha_c01002{height:69.333333pt;}
.h11_c01002{height:69.337389pt;}
.h6_c01002{height:69.340613pt;}
.h17_c01002{height:69.347268pt;}
.h13_c01002{height:69.350699pt;}
.h15_c01002{height:69.354200pt;}
.h1e_c01002{height:69.355101pt;}
.h10_c01002{height:74.671035pt;}
.h1b_c01002{height:74.685070pt;}
.h4_c01002{height:80.000000pt;}
.h1a_c01002{height:80.016078pt;}
.h12_c01002{height:80.020037pt;}
.h18_c01002{height:80.028195pt;}
.h1d_c01002{height:85.360124pt;}
.h0_c01002{height:1107.840000pt;}
.h1_c01002{height:1108.000000pt;}
.w0_c01002{width:796.533333pt;}
.w1_c01002{width:796.666667pt;}
.x0_c01002{left:0.000000pt;}
.x25_c01002{left:130.080000pt;}
.x24_c01002{left:132.240000pt;}
.x22_c01002{left:134.160000pt;}
.x21_c01002{left:136.080000pt;}
.x20_c01002{left:138.480000pt;}
.x1f_c01002{left:140.400000pt;}
.x1e_c01002{left:142.800000pt;}
.x1d_c01002{left:149.280000pt;}
.x1c_c01002{left:150.720000pt;}
.x1b_c01002{left:152.880000pt;}
.x1a_c01002{left:156.720000pt;}
.x1_c01002{left:159.282667pt;}
.x9b_c01002{left:167.472987pt;}
.x23_c01002{left:174.720000pt;}
.x93_c01002{left:198.480000pt;}
.x2_c01002{left:199.375867pt;}
.x88_c01002{left:200.820000pt;}
.x75_c01002{left:205.130667pt;}
.x6c_c01002{left:208.945333pt;}
.x60_c01002{left:212.017333pt;}
.x4e_c01002{left:214.990667pt;}
.x39_c01002{left:217.699008pt;}
.x29_c01002{left:220.817333pt;}
.xc_c01002{left:225.820904pt;}
.x3_c01002{left:227.571643pt;}
.x8e_c01002{left:237.251508pt;}
.x85_c01002{left:241.583392pt;}
.x7c_c01002{left:243.664000pt;}
.x73_c01002{left:246.052000pt;}
.x69_c01002{left:247.632249pt;}
.x57_c01002{left:251.929333pt;}
.x11_c01002{left:253.425333pt;}
.x46_c01002{left:254.711627pt;}
.x94_c01002{left:256.805333pt;}
.x31_c01002{left:258.684000pt;}
.x8f_c01002{left:266.552604pt;}
.x86_c01002{left:270.624360pt;}
.x74_c01002{left:275.027267pt;}
.x5f_c01002{left:280.175571pt;}
.x3f_c01002{left:284.786124pt;}
.x6d_c01002{left:286.160041pt;}
.x32_c01002{left:287.448540pt;}
.x12_c01002{left:293.021697pt;}
.x4_c01002{left:295.141339pt;}
.x90_c01002{left:296.189117pt;}
.x80_c01002{left:301.547199pt;}
.x9c_c01002{left:302.697243pt;}
.x61_c01002{left:307.431157pt;}
.x89_c01002{left:308.542836pt;}
.x58_c01002{left:309.620917pt;}
.x4f_c01002{left:310.946615pt;}
.x7d_c01002{left:311.890372pt;}
.x47_c01002{left:312.950828pt;}
.x33_c01002{left:317.494464pt;}
.x40_c01002{left:323.663208pt;}
.x6a_c01002{left:325.619647pt;}
.x2a_c01002{left:327.527849pt;}
.x26_c01002{left:329.724000pt;}
.x3a_c01002{left:334.516185pt;}
.x59_c01002{left:338.534641pt;}
.x50_c01002{left:339.970895pt;}
.x9d_c01002{left:341.847984pt;}
.x62_c01002{left:346.344205pt;}
.x81_c01002{left:358.921767pt;}
.x76_c01002{left:361.089219pt;}
.x95_c01002{left:362.352483pt;}
.x2b_c01002{left:366.864473pt;}
.x5a_c01002{left:369.050761pt;}
.xd_c01002{left:371.199009pt;}
.x6e_c01002{left:374.029417pt;}
.x34_c01002{left:375.523044pt;}
.x51_c01002{left:378.620207pt;}
.x96_c01002{left:381.762917pt;}
.x41_c01002{left:382.953192pt;}
.x87_c01002{left:387.862032pt;}
.x48_c01002{left:391.077752pt;}
.x3b_c01002{left:393.812640pt;}
.x8_c01002{left:399.120000pt;}
.xe_c01002{left:400.531261pt;}
.x5_c01002{left:403.138567pt;}
.x35_c01002{left:404.153052pt;}
.x13_c01002{left:408.986949pt;}
.x97_c01002{left:411.557875pt;}
.x27_c01002{left:416.936700pt;}
.x9_c01002{left:419.280000pt;}
.x63_c01002{left:424.672465pt;}
.x2c_c01002{left:426.623321pt;}
.x49_c01002{left:430.006045pt;}
.x6_c01002{left:431.446231pt;}
.x3c_c01002{left:434.332091pt;}
.x8a_c01002{left:436.322928pt;}
.x77_c01002{left:441.715179pt;}
.x42_c01002{left:442.680072pt;}
.x28_c01002{left:447.283656pt;}
.x14_c01002{left:449.322573pt;}
.x64_c01002{left:452.976133pt;}
.x5b_c01002{left:456.842881pt;}
.xf_c01002{left:459.785967pt;}
.x82_c01002{left:466.689891pt;}
.x52_c01002{left:468.038699pt;}
.x3d_c01002{left:472.754680pt;}
.x36_c01002{left:482.302824pt;}
.x78_c01002{left:489.009171pt;}
.x2d_c01002{left:493.837373pt;}
.x83_c01002{left:495.208011pt;}
.x53_c01002{left:497.040335pt;}
.x9e_c01002{left:498.632192pt;}
.x91_c01002{left:510.885155pt;}
.x8b_c01002{left:513.808032pt;}
.x4a_c01002{left:518.518967pt;}
.x7_c01002{left:520.009579pt;}
.x2e_c01002{left:522.374141pt;}
.x54_c01002{left:525.016331pt;}
.x15_c01002{left:527.203281pt;}
.x98_c01002{left:530.339835pt;}
.x92_c01002{left:539.926592pt;}
.x37_c01002{left:542.051016pt;}
.x4b_c01002{left:546.693631pt;}
.x43_c01002{left:548.399580pt;}
.x2f_c01002{left:552.139013pt;}
.x16_c01002{left:556.499289pt;}
.x79_c01002{left:557.520591pt;}
.x99_c01002{left:558.456821pt;}
.x6f_c01002{left:560.425501pt;}
.x10_c01002{left:568.110749pt;}
.x44_c01002{left:569.020272pt;}
.x84_c01002{left:575.238567pt;}
.xa_c01002{left:579.300000pt;}
.x38_c01002{left:580.449912pt;}
.x5c_c01002{left:583.493437pt;}
.x65_c01002{left:590.786185pt;}
.x3e_c01002{left:595.857049pt;}
.x9a_c01002{left:598.211819pt;}
.x17_c01002{left:615.050013pt;}
.x7e_c01002{left:620.891728pt;}
.x4c_c01002{left:626.758439pt;}
.x8c_c01002{left:629.000696pt;}
.x30_c01002{left:631.671401pt;}
.x55_c01002{left:633.778127pt;}
.x7a_c01002{left:636.161871pt;}
.x5d_c01002{left:643.609261pt;}
.x72_c01002{left:646.651664pt;}
.x70_c01002{left:648.714457pt;}
.x66_c01002{left:650.507737pt;}
.x8d_c01002{left:658.715813pt;}
.x56_c01002{left:664.171703pt;}
.x67_c01002{left:670.538353pt;}
.x18_c01002{left:675.161841pt;}
.x7f_c01002{left:681.301924pt;}
.x5e_c01002{left:682.279885pt;}
.x7b_c01002{left:686.182467pt;}
.xb_c01002{left:688.039152pt;}
.x6b_c01002{left:689.324093pt;}
.x4d_c01002{left:695.416996pt;}
.x71_c01002{left:696.942181pt;}
.x68_c01002{left:699.801061pt;}
.x19_c01002{left:713.925705pt;}
.x45_c01002{left:715.709436pt;}
}





/* 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_c01003 {
    display:none;
  }
  .loading-indicator_c01003.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01003 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_c01003 { 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_c01003" -> "#page-container .classname_c01003")
 */
.pf_c01003 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01003 { /* 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_c01003.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01003 { /* 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_c01003 { /* 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_c01003 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01003 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01003 {overflow:visible;}
  }
}
.c_c01003 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01003 { /* 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_c01003:after { /* webkit #35443 */
  content: '';
}
.t_c01003:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01003 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 */
}
.__c01003 { /* 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_c01003 { /* info for Javascript */
  display:none;
}
.l_c01003 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01003 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01003 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01003: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_c01003 {
    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_c01003.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01003.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_c01003 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01003{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01003;src:url('chunks/assets/font_c605e72f209fc835e906f064.woff2')format("woff");}.ff1_c01003{font-family:ff1_c01003;line-height:1.000000;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;}
.m24_c01003{transform:matrix(0.013395,-0.000375,0.006997,0.249902,0,0);-ms-transform:matrix(0.013395,-0.000375,0.006997,0.249902,0,0);-webkit-transform:matrix(0.013395,-0.000375,0.006997,0.249902,0,0);}
.m2b_c01003{transform:matrix(0.040560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.040560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.040560,0.000000,0.000000,0.250000,0,0);}
.m23_c01003{transform:matrix(0.047261,-0.001323,0.006997,0.249902,0,0);-ms-transform:matrix(0.047261,-0.001323,0.006997,0.249902,0,0);-webkit-transform:matrix(0.047261,-0.001323,0.006997,0.249902,0,0);}
.m29_c01003{transform:matrix(0.100625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100625,0.000000,0.000000,0.250000,0,0);}
.m25_c01003{transform:matrix(0.104869,-0.002936,0.006997,0.249902,0,0);-ms-transform:matrix(0.104869,-0.002936,0.006997,0.249902,0,0);-webkit-transform:matrix(0.104869,-0.002936,0.006997,0.249902,0,0);}
.m26_c01003{transform:matrix(0.164431,-0.004604,0.006997,0.249902,0,0);-ms-transform:matrix(0.164431,-0.004604,0.006997,0.249902,0,0);-webkit-transform:matrix(0.164431,-0.004604,0.006997,0.249902,0,0);}
.m16_c01003{transform:matrix(0.201846,-0.006466,0.008004,0.249872,0,0);-ms-transform:matrix(0.201846,-0.006466,0.008004,0.249872,0,0);-webkit-transform:matrix(0.201846,-0.006466,0.008004,0.249872,0,0);}
.m27_c01003{transform:matrix(0.212130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212130,0.000000,0.000000,0.250000,0,0);}
.m22_c01003{transform:matrix(0.216545,-0.006063,0.006997,0.249902,0,0);-ms-transform:matrix(0.216545,-0.006063,0.006997,0.249902,0,0);-webkit-transform:matrix(0.216545,-0.006063,0.006997,0.249902,0,0);}
.m1d_c01003{transform:matrix(0.219764,-0.006153,0.006997,0.249902,0,0);-ms-transform:matrix(0.219764,-0.006153,0.006997,0.249902,0,0);-webkit-transform:matrix(0.219764,-0.006153,0.006997,0.249902,0,0);}
.mf_c01003{transform:matrix(0.222876,-0.007139,0.008004,0.249872,0,0);-ms-transform:matrix(0.222876,-0.007139,0.008004,0.249872,0,0);-webkit-transform:matrix(0.222876,-0.007139,0.008004,0.249872,0,0);}
.m12_c01003{transform:matrix(0.230882,-0.007396,0.008004,0.249872,0,0);-ms-transform:matrix(0.230882,-0.007396,0.008004,0.249872,0,0);-webkit-transform:matrix(0.230882,-0.007396,0.008004,0.249872,0,0);}
.m11_c01003{transform:matrix(0.236664,-0.007581,0.008004,0.249872,0,0);-ms-transform:matrix(0.236664,-0.007581,0.008004,0.249872,0,0);-webkit-transform:matrix(0.236664,-0.007581,0.008004,0.249872,0,0);}
.m6_c01003{transform:matrix(0.236903,-0.007589,0.008004,0.249872,0,0);-ms-transform:matrix(0.236903,-0.007589,0.008004,0.249872,0,0);-webkit-transform:matrix(0.236903,-0.007589,0.008004,0.249872,0,0);}
.m13_c01003{transform:matrix(0.239062,-0.007658,0.008004,0.249872,0,0);-ms-transform:matrix(0.239062,-0.007658,0.008004,0.249872,0,0);-webkit-transform:matrix(0.239062,-0.007658,0.008004,0.249872,0,0);}
.m10_c01003{transform:matrix(0.239617,-0.007675,0.008004,0.249872,0,0);-ms-transform:matrix(0.239617,-0.007675,0.008004,0.249872,0,0);-webkit-transform:matrix(0.239617,-0.007675,0.008004,0.249872,0,0);}
.m1a_c01003{transform:matrix(0.243510,-0.006818,0.006997,0.249902,0,0);-ms-transform:matrix(0.243510,-0.006818,0.006997,0.249902,0,0);-webkit-transform:matrix(0.243510,-0.006818,0.006997,0.249902,0,0);}
.m1b_c01003{transform:matrix(0.250967,-0.007027,0.006997,0.249902,0,0);-ms-transform:matrix(0.250967,-0.007027,0.006997,0.249902,0,0);-webkit-transform:matrix(0.250967,-0.007027,0.006997,0.249902,0,0);}
.m3_c01003{transform:matrix(0.250991,-0.008040,0.008004,0.249872,0,0);-ms-transform:matrix(0.250991,-0.008040,0.008004,0.249872,0,0);-webkit-transform:matrix(0.250991,-0.008040,0.008004,0.249872,0,0);}
.m1c_c01003{transform:matrix(0.252961,-0.007083,0.006997,0.249902,0,0);-ms-transform:matrix(0.252961,-0.007083,0.006997,0.249902,0,0);-webkit-transform:matrix(0.252961,-0.007083,0.006997,0.249902,0,0);}
.m1e_c01003{transform:matrix(0.255420,-0.007152,0.006997,0.249902,0,0);-ms-transform:matrix(0.255420,-0.007152,0.006997,0.249902,0,0);-webkit-transform:matrix(0.255420,-0.007152,0.006997,0.249902,0,0);}
.m9_c01003{transform:matrix(0.259812,-0.008322,0.008004,0.249872,0,0);-ms-transform:matrix(0.259812,-0.008322,0.008004,0.249872,0,0);-webkit-transform:matrix(0.259812,-0.008322,0.008004,0.249872,0,0);}
.m1f_c01003{transform:matrix(0.268310,-0.007513,0.006997,0.249902,0,0);-ms-transform:matrix(0.268310,-0.007513,0.006997,0.249902,0,0);-webkit-transform:matrix(0.268310,-0.007513,0.006997,0.249902,0,0);}
.m5_c01003{transform:matrix(0.272050,-0.008714,0.008004,0.249872,0,0);-ms-transform:matrix(0.272050,-0.008714,0.008004,0.249872,0,0);-webkit-transform:matrix(0.272050,-0.008714,0.008004,0.249872,0,0);}
.m4_c01003{transform:matrix(0.275144,-0.008813,0.008004,0.249872,0,0);-ms-transform:matrix(0.275144,-0.008813,0.008004,0.249872,0,0);-webkit-transform:matrix(0.275144,-0.008813,0.008004,0.249872,0,0);}
.m19_c01003{transform:matrix(0.282659,-0.007914,0.006997,0.249902,0,0);-ms-transform:matrix(0.282659,-0.007914,0.006997,0.249902,0,0);-webkit-transform:matrix(0.282659,-0.007914,0.006997,0.249902,0,0);}
.m14_c01003{transform:matrix(0.284774,-0.009122,0.008004,0.249872,0,0);-ms-transform:matrix(0.284774,-0.009122,0.008004,0.249872,0,0);-webkit-transform:matrix(0.284774,-0.009122,0.008004,0.249872,0,0);}
.m2e_c01003{transform:matrix(0.291065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291065,0.000000,0.000000,0.250000,0,0);}
.m2f_c01003{transform:matrix(0.291430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291430,0.000000,0.000000,0.250000,0,0);}
.m7_c01003{transform:matrix(0.291970,-0.009352,0.008004,0.249872,0,0);-ms-transform:matrix(0.291970,-0.009352,0.008004,0.249872,0,0);-webkit-transform:matrix(0.291970,-0.009352,0.008004,0.249872,0,0);}
.m20_c01003{transform:matrix(0.297643,-0.008334,0.006997,0.249902,0,0);-ms-transform:matrix(0.297643,-0.008334,0.006997,0.249902,0,0);-webkit-transform:matrix(0.297643,-0.008334,0.006997,0.249902,0,0);}
.m8_c01003{transform:matrix(0.301695,-0.009664,0.008004,0.249872,0,0);-ms-transform:matrix(0.301695,-0.009664,0.008004,0.249872,0,0);-webkit-transform:matrix(0.301695,-0.009664,0.008004,0.249872,0,0);}
.m0_c01003{transform:matrix(0.311900,-0.009991,0.008004,0.249872,0,0);-ms-transform:matrix(0.311900,-0.009991,0.008004,0.249872,0,0);-webkit-transform:matrix(0.311900,-0.009991,0.008004,0.249872,0,0);}
.m17_c01003{transform:matrix(0.314192,-0.008797,0.006997,0.249902,0,0);-ms-transform:matrix(0.314192,-0.008797,0.006997,0.249902,0,0);-webkit-transform:matrix(0.314192,-0.008797,0.006997,0.249902,0,0);}
.m2a_c01003{transform:matrix(0.317005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317005,0.000000,0.000000,0.250000,0,0);}
.m15_c01003{transform:matrix(0.327822,-0.010501,0.008004,0.249872,0,0);-ms-transform:matrix(0.327822,-0.010501,0.008004,0.249872,0,0);-webkit-transform:matrix(0.327822,-0.010501,0.008004,0.249872,0,0);}
.ma_c01003{transform:matrix(0.344653,-0.011040,0.008004,0.249872,0,0);-ms-transform:matrix(0.344653,-0.011040,0.008004,0.249872,0,0);-webkit-transform:matrix(0.344653,-0.011040,0.008004,0.249872,0,0);}
.mc_c01003{transform:matrix(0.388826,-0.012455,0.008004,0.249872,0,0);-ms-transform:matrix(0.388826,-0.012455,0.008004,0.249872,0,0);-webkit-transform:matrix(0.388826,-0.012455,0.008004,0.249872,0,0);}
.md_c01003{transform:matrix(0.438105,-0.014033,0.008004,0.249872,0,0);-ms-transform:matrix(0.438105,-0.014033,0.008004,0.249872,0,0);-webkit-transform:matrix(0.438105,-0.014033,0.008004,0.249872,0,0);}
.m2_c01003{transform:matrix(0.474752,-0.015207,0.008004,0.249872,0,0);-ms-transform:matrix(0.474752,-0.015207,0.008004,0.249872,0,0);-webkit-transform:matrix(0.474752,-0.015207,0.008004,0.249872,0,0);}
.m30_c01003{transform:matrix(0.551995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.551995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.551995,0.000000,0.000000,0.250000,0,0);}
.m1_c01003{transform:matrix(0.586119,-0.018775,0.008004,0.249872,0,0);-ms-transform:matrix(0.586119,-0.018775,0.008004,0.249872,0,0);-webkit-transform:matrix(0.586119,-0.018775,0.008004,0.249872,0,0);}
.m2d_c01003{transform:matrix(0.621455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.621455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.621455,0.000000,0.000000,0.250000,0,0);}
.m28_c01003{transform:matrix(0.644980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644980,0.000000,0.000000,0.250000,0,0);}
.m2c_c01003{transform:matrix(0.651520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.651520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.651520,0.000000,0.000000,0.250000,0,0);}
.me_c01003{transform:matrix(0.675464,-0.021636,0.008004,0.249872,0,0);-ms-transform:matrix(0.675464,-0.021636,0.008004,0.249872,0,0);-webkit-transform:matrix(0.675464,-0.021636,0.008004,0.249872,0,0);}
.mb_c01003{transform:matrix(0.697272,-0.022335,0.008004,0.249872,0,0);-ms-transform:matrix(0.697272,-0.022335,0.008004,0.249872,0,0);-webkit-transform:matrix(0.697272,-0.022335,0.008004,0.249872,0,0);}
.m18_c01003{transform:matrix(0.763731,-0.021384,0.006997,0.249902,0,0);-ms-transform:matrix(0.763731,-0.021384,0.006997,0.249902,0,0);-webkit-transform:matrix(0.763731,-0.021384,0.006997,0.249902,0,0);}
.m21_c01003{transform:matrix(0.807923,-0.022622,0.006997,0.249902,0,0);-ms-transform:matrix(0.807923,-0.022622,0.006997,0.249902,0,0);-webkit-transform:matrix(0.807923,-0.022622,0.006997,0.249902,0,0);}
.v0_c01003{vertical-align:0.000000px;}
.ls0_c01003{letter-spacing:0.000000px;}
.sc__c01003{text-shadow:none;}
.sc0_c01003{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__c01003{-webkit-text-stroke:0px transparent;}
.sc0_c01003{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01003{word-spacing:0.000000px;}
.fc0_c01003{color:transparent;}
.fs4_c01003{font-size:18.000000px;}
.fs5_c01003{font-size:24.000000px;}
.fs7_c01003{font-size:30.000000px;}
.fs6_c01003{font-size:36.000000px;}
.fs8_c01003{font-size:42.000000px;}
.fs0_c01003{font-size:71.964891px;}
.fs2_c01003{font-size:78.030570px;}
.fs1_c01003{font-size:83.959040px;}
.fs3_c01003{font-size:114.044679px;}
.y0_c01003{bottom:0.000000px;}
.y2c_c01003{bottom:576.505500px;}
.y2b_c01003{bottom:577.927500px;}
.y2a_c01003{bottom:583.068000px;}
.y29_c01003{bottom:586.045500px;}
.y28_c01003{bottom:952.830000px;}
.y22_c01003{bottom:989.007468px;}
.y23_c01003{bottom:991.356648px;}
.y24_c01003{bottom:996.145698px;}
.y25_c01003{bottom:999.574722px;}
.y26_c01003{bottom:1001.122338px;}
.y27_c01003{bottom:1001.429922px;}
.y18_c01003{bottom:1016.553000px;}
.y19_c01003{bottom:1017.537228px;}
.y1a_c01003{bottom:1019.030328px;}
.y1b_c01003{bottom:1020.328464px;}
.y1c_c01003{bottom:1022.203890px;}
.y1d_c01003{bottom:1024.092588px;}
.y1e_c01003{bottom:1024.973790px;}
.y1f_c01003{bottom:1027.467624px;}
.y20_c01003{bottom:1028.701794px;}
.y21_c01003{bottom:1032.420684px;}
.ye_c01003{bottom:1051.202961px;}
.yf_c01003{bottom:1054.170273px;}
.y10_c01003{bottom:1057.042545px;}
.y11_c01003{bottom:1059.061809px;}
.y12_c01003{bottom:1062.916593px;}
.y13_c01003{bottom:1065.061857px;}
.y14_c01003{bottom:1066.162929px;}
.y15_c01003{bottom:1068.331281px;}
.y16_c01003{bottom:1069.422753px;}
.y17_c01003{bottom:1071.476001px;}
.y1_c01003{bottom:1087.311000px;}
.y2_c01003{bottom:1088.186520px;}
.y3_c01003{bottom:1091.185848px;}
.y4_c01003{bottom:1094.047080px;}
.y5_c01003{bottom:1094.999976px;}
.y6_c01003{bottom:1097.000664px;}
.y7_c01003{bottom:1100.298360px;}
.y8_c01003{bottom:1101.334008px;}
.y9_c01003{bottom:1105.235640px;}
.ya_c01003{bottom:1105.976040px;}
.yb_c01003{bottom:1107.696456px;}
.yc_c01003{bottom:1108.376376px;}
.yd_c01003{bottom:1110.084840px;}
.h6_c01003{height:18.000000px;}
.h7_c01003{height:24.000000px;}
.h9_c01003{height:30.000000px;}
.h8_c01003{height:36.000000px;}
.ha_c01003{height:42.000000px;}
.h2_c01003{height:71.964891px;}
.h4_c01003{height:78.030570px;}
.h3_c01003{height:83.959040px;}
.h5_c01003{height:114.044679px;}
.h0_c01003{height:1246.320000px;}
.h1_c01003{height:1246.500000px;}
.w0_c01003{width:896.100000px;}
.w1_c01003{width:896.250000px;}
.x0_c01003{left:0.000000px;}
.x18_c01003{left:1.980000px;}
.x1_c01003{left:4.183500px;}
.xe_c01003{left:12.358790px;}
.x2_c01003{left:31.516140px;}
.x19_c01003{left:37.131000px;}
.x1a_c01003{left:90.456000px;}
.xf_c01003{left:104.994561px;}
.x22_c01003{left:113.313162px;}
.x3_c01003{left:125.151411px;}
.x1b_c01003{left:136.818000px;}
.x10_c01003{left:194.663303px;}
.x1c_c01003{left:203.797500px;}
.x4_c01003{left:214.475498px;}
.x5_c01003{left:244.223719px;}
.x11_c01003{left:257.702201px;}
.x1d_c01003{left:271.251000px;}
.x1e_c01003{left:302.722500px;}
.x6_c01003{left:306.682698px;}
.x2b_c01003{left:314.010000px;}
.x23_c01003{left:341.395350px;}
.x2c_c01003{left:346.410000px;}
.x2d_c01003{left:367.470000px;}
.x12_c01003{left:378.043739px;}
.x1f_c01003{left:391.788000px;}
.x7_c01003{left:409.632645px;}
.x2a_c01003{left:419.310000px;}
.x29_c01003{left:430.110000px;}
.x20_c01003{left:435.865500px;}
.x8_c01003{left:441.964281px;}
.x13_c01003{left:445.016199px;}
.x14_c01003{left:479.390291px;}
.x24_c01003{left:504.660312px;}
.x15_c01003{left:547.083530px;}
.x9_c01003{left:563.768355px;}
.x21_c01003{left:568.683000px;}
.x25_c01003{left:578.321718px;}
.x16_c01003{left:581.157921px;}
.xa_c01003{left:586.882718px;}
.x26_c01003{left:592.952574px;}
.xb_c01003{left:640.591955px;}
.x17_c01003{left:645.257757px;}
.xc_c01003{left:661.818207px;}
.xd_c01003{left:715.154318px;}
.x28_c01003{left:891.000000px;}
.x27_c01003{left:892.350000px;}
@media print{
.v0_c01003{vertical-align:0.000000pt;}
.ls0_c01003{letter-spacing:0.000000pt;}
.ws0_c01003{word-spacing:0.000000pt;}
.fs4_c01003{font-size:16.000000pt;}
.fs5_c01003{font-size:21.333333pt;}
.fs7_c01003{font-size:26.666667pt;}
.fs6_c01003{font-size:32.000000pt;}
.fs8_c01003{font-size:37.333333pt;}
.fs0_c01003{font-size:63.968792pt;}
.fs2_c01003{font-size:69.360507pt;}
.fs1_c01003{font-size:74.630258pt;}
.fs3_c01003{font-size:101.373048pt;}
.y0_c01003{bottom:0.000000pt;}
.y2c_c01003{bottom:512.449333pt;}
.y2b_c01003{bottom:513.713333pt;}
.y2a_c01003{bottom:518.282667pt;}
.y29_c01003{bottom:520.929333pt;}
.y28_c01003{bottom:846.960000pt;}
.y22_c01003{bottom:879.117749pt;}
.y23_c01003{bottom:881.205909pt;}
.y24_c01003{bottom:885.462843pt;}
.y25_c01003{bottom:888.510864pt;}
.y26_c01003{bottom:889.886523pt;}
.y27_c01003{bottom:890.159931pt;}
.y18_c01003{bottom:903.602667pt;}
.y19_c01003{bottom:904.477536pt;}
.y1a_c01003{bottom:905.804736pt;}
.y1b_c01003{bottom:906.958635pt;}
.y1c_c01003{bottom:908.625680pt;}
.y1d_c01003{bottom:910.304523pt;}
.y1e_c01003{bottom:911.087813pt;}
.y1f_c01003{bottom:913.304555pt;}
.y20_c01003{bottom:914.401595pt;}
.y21_c01003{bottom:917.707275pt;}
.ye_c01003{bottom:934.402632pt;}
.yf_c01003{bottom:937.040243pt;}
.y10_c01003{bottom:939.593373pt;}
.y11_c01003{bottom:941.388275pt;}
.y12_c01003{bottom:944.814749pt;}
.y13_c01003{bottom:946.721651pt;}
.y14_c01003{bottom:947.700381pt;}
.y15_c01003{bottom:949.627805pt;}
.y16_c01003{bottom:950.598003pt;}
.y17_c01003{bottom:952.423112pt;}
.y1_c01003{bottom:966.498667pt;}
.y2_c01003{bottom:967.276907pt;}
.y3_c01003{bottom:969.942976pt;}
.y4_c01003{bottom:972.486293pt;}
.y5_c01003{bottom:973.333312pt;}
.y6_c01003{bottom:975.111701pt;}
.y7_c01003{bottom:978.042987pt;}
.y8_c01003{bottom:978.963563pt;}
.y9_c01003{bottom:982.431680pt;}
.ya_c01003{bottom:983.089813pt;}
.yb_c01003{bottom:984.619072pt;}
.yc_c01003{bottom:985.223445pt;}
.yd_c01003{bottom:986.742080pt;}
.h6_c01003{height:16.000000pt;}
.h7_c01003{height:21.333333pt;}
.h9_c01003{height:26.666667pt;}
.h8_c01003{height:32.000000pt;}
.ha_c01003{height:37.333333pt;}
.h2_c01003{height:63.968792pt;}
.h4_c01003{height:69.360507pt;}
.h3_c01003{height:74.630258pt;}
.h5_c01003{height:101.373048pt;}
.h0_c01003{height:1107.840000pt;}
.h1_c01003{height:1108.000000pt;}
.w0_c01003{width:796.533333pt;}
.w1_c01003{width:796.666667pt;}
.x0_c01003{left:0.000000pt;}
.x18_c01003{left:1.760000pt;}
.x1_c01003{left:3.718667pt;}
.xe_c01003{left:10.985591pt;}
.x2_c01003{left:28.014347pt;}
.x19_c01003{left:33.005333pt;}
.x1a_c01003{left:80.405333pt;}
.xf_c01003{left:93.328499pt;}
.x22_c01003{left:100.722811pt;}
.x3_c01003{left:111.245699pt;}
.x1b_c01003{left:121.616000pt;}
.x10_c01003{left:173.034047pt;}
.x1c_c01003{left:181.153333pt;}
.x4_c01003{left:190.644887pt;}
.x5_c01003{left:217.087751pt;}
.x11_c01003{left:229.068623pt;}
.x1d_c01003{left:241.112000pt;}
.x1e_c01003{left:269.086667pt;}
.x6_c01003{left:272.606843pt;}
.x2b_c01003{left:279.120000pt;}
.x23_c01003{left:303.462533pt;}
.x2c_c01003{left:307.920000pt;}
.x2d_c01003{left:326.640000pt;}
.x12_c01003{left:336.038879pt;}
.x1f_c01003{left:348.256000pt;}
.x7_c01003{left:364.117907pt;}
.x2a_c01003{left:372.720000pt;}
.x29_c01003{left:382.320000pt;}
.x20_c01003{left:387.436000pt;}
.x8_c01003{left:392.857139pt;}
.x13_c01003{left:395.569955pt;}
.x14_c01003{left:426.124703pt;}
.x24_c01003{left:448.586944pt;}
.x15_c01003{left:486.296471pt;}
.x9_c01003{left:501.127427pt;}
.x21_c01003{left:505.496000pt;}
.x25_c01003{left:514.063749pt;}
.x16_c01003{left:516.584819pt;}
.xa_c01003{left:521.673527pt;}
.x26_c01003{left:527.068955pt;}
.xb_c01003{left:569.415071pt;}
.x17_c01003{left:573.562451pt;}
.xc_c01003{left:588.282851pt;}
.xd_c01003{left:635.692727pt;}
.x28_c01003{left:792.000000pt;}
.x27_c01003{left:793.200000pt;}
}





/* 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_c01004 {
    display:none;
  }
  .loading-indicator_c01004.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01004 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_c01004 { 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_c01004" -> "#page-container .classname_c01004")
 */
.pf_c01004 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01004 { /* 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_c01004.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01004 { /* 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_c01004 { /* 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_c01004 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01004 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01004 {overflow:visible;}
  }
}
.c_c01004 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01004 { /* 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_c01004:after { /* webkit #35443 */
  content: '';
}
.t_c01004:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01004 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 */
}
.__c01004 { /* 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_c01004 { /* info for Javascript */
  display:none;
}
.l_c01004 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01004 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01004 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01004: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_c01004 {
    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_c01004.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01004.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_c01004 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01004{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01004;src:url('chunks/assets/font_c605e72f209fc835e906f064.woff2')format("woff");}.ff1_c01004{font-family:ff1_c01004;line-height:1.000000;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;}
.m1e_c01004{transform:matrix(0.009080,0.000418,-0.011499,0.249735,0,0);-ms-transform:matrix(0.009080,0.000418,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.009080,0.000418,-0.011499,0.249735,0,0);}
.m1d_c01004{transform:matrix(0.013621,0.000627,-0.011499,0.249735,0,0);-ms-transform:matrix(0.013621,0.000627,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.013621,0.000627,-0.011499,0.249735,0,0);}
.m2a_c01004{transform:matrix(0.025130,0.001132,-0.011250,0.249747,0,0);-ms-transform:matrix(0.025130,0.001132,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.025130,0.001132,-0.011250,0.249747,0,0);}
.m86_c01004{transform:matrix(0.094870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.094870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.094870,0.000000,0.000000,0.250000,0,0);}
.m1f_c01004{transform:matrix(0.122265,0.005630,-0.011499,0.249735,0,0);-ms-transform:matrix(0.122265,0.005630,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.122265,0.005630,-0.011499,0.249735,0,0);}
.m9c_c01004{transform:matrix(0.143070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143070,0.000000,0.000000,0.250000,0,0);}
.m63_c01004{transform:matrix(0.152345,0.005795,-0.009503,0.249819,0,0);-ms-transform:matrix(0.152345,0.005795,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.152345,0.005795,-0.009503,0.249819,0,0);}
.ma3_c01004{transform:matrix(0.158125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158125,0.000000,0.000000,0.250000,0,0);}
.m50_c01004{transform:matrix(0.163204,0.007025,-0.010751,0.249769,0,0);-ms-transform:matrix(0.163204,0.007025,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.163204,0.007025,-0.010751,0.249769,0,0);}
.md_c01004{transform:matrix(0.175295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175295,0.000000,0.000000,0.250000,0,0);}
.m48_c01004{transform:matrix(0.179579,0.007730,-0.010751,0.249769,0,0);-ms-transform:matrix(0.179579,0.007730,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.179579,0.007730,-0.010751,0.249769,0,0);}
.m51_c01004{transform:matrix(0.182436,0.007853,-0.010751,0.249769,0,0);-ms-transform:matrix(0.182436,0.007853,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.182436,0.007853,-0.010751,0.249769,0,0);}
.m4b_c01004{transform:matrix(0.183885,0.007915,-0.010751,0.249769,0,0);-ms-transform:matrix(0.183885,0.007915,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.183885,0.007915,-0.010751,0.249769,0,0);}
.m4d_c01004{transform:matrix(0.188431,0.008111,-0.010751,0.249769,0,0);-ms-transform:matrix(0.188431,0.008111,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.188431,0.008111,-0.010751,0.249769,0,0);}
.m49_c01004{transform:matrix(0.197182,0.008487,-0.010751,0.249769,0,0);-ms-transform:matrix(0.197182,0.008487,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.197182,0.008487,-0.010751,0.249769,0,0);}
.m72_c01004{transform:matrix(0.198353,0.008141,-0.010252,0.249790,0,0);-ms-transform:matrix(0.198353,0.008141,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.198353,0.008141,-0.010252,0.249790,0,0);}
.m2c_c01004{transform:matrix(0.207045,0.009326,-0.011250,0.249747,0,0);-ms-transform:matrix(0.207045,0.009326,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.207045,0.009326,-0.011250,0.249747,0,0);}
.m4a_c01004{transform:matrix(0.207178,0.008918,-0.010751,0.249769,0,0);-ms-transform:matrix(0.207178,0.008918,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.207178,0.008918,-0.010751,0.249769,0,0);}
.m8b_c01004{transform:matrix(0.207211,0.009749,-0.011749,0.249724,0,0);-ms-transform:matrix(0.207211,0.009749,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.207211,0.009749,-0.011749,0.249724,0,0);}
.m4f_c01004{transform:matrix(0.207378,0.008926,-0.010751,0.249769,0,0);-ms-transform:matrix(0.207378,0.008926,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.207378,0.008926,-0.010751,0.249769,0,0);}
.ma2_c01004{transform:matrix(0.207415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207415,0.000000,0.000000,0.250000,0,0);}
.m2e_c01004{transform:matrix(0.207804,0.009361,-0.011250,0.249747,0,0);-ms-transform:matrix(0.207804,0.009361,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.207804,0.009361,-0.011250,0.249747,0,0);}
.m1b_c01004{transform:matrix(0.209353,0.009640,-0.011499,0.249735,0,0);-ms-transform:matrix(0.209353,0.009640,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.209353,0.009640,-0.011499,0.249735,0,0);}
.m4_c01004{transform:matrix(0.209505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209505,0.000000,0.000000,0.250000,0,0);}
.m8f_c01004{transform:matrix(0.209703,0.009866,-0.011749,0.249724,0,0);-ms-transform:matrix(0.209703,0.009866,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.209703,0.009866,-0.011749,0.249724,0,0);}
.m9a_c01004{transform:matrix(0.209890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209890,0.000000,0.000000,0.250000,0,0);}
.m37_c01004{transform:matrix(0.211046,0.008450,-0.010002,0.249800,0,0);-ms-transform:matrix(0.211046,0.008450,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.211046,0.008450,-0.010002,0.249800,0,0);}
.m3d_c01004{transform:matrix(0.211914,0.007000,-0.008254,0.249864,0,0);-ms-transform:matrix(0.211914,0.007000,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.211914,0.007000,-0.008254,0.249864,0,0);}
.m1c_c01004{transform:matrix(0.212625,0.009791,-0.011499,0.249735,0,0);-ms-transform:matrix(0.212625,0.009791,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.212625,0.009791,-0.011499,0.249735,0,0);}
.m7e_c01004{transform:matrix(0.213640,0.008768,-0.010252,0.249790,0,0);-ms-transform:matrix(0.213640,0.008768,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.213640,0.008768,-0.010252,0.249790,0,0);}
.m33_c01004{transform:matrix(0.214253,0.008579,-0.010002,0.249800,0,0);-ms-transform:matrix(0.214253,0.008579,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.214253,0.008579,-0.010002,0.249800,0,0);}
.m47_c01004{transform:matrix(0.216809,0.009332,-0.010751,0.249769,0,0);-ms-transform:matrix(0.216809,0.009332,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.216809,0.009332,-0.010751,0.249769,0,0);}
.ma0_c01004{transform:matrix(0.216965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216965,0.000000,0.000000,0.250000,0,0);}
.m4e_c01004{transform:matrix(0.217359,0.009356,-0.010751,0.249769,0,0);-ms-transform:matrix(0.217359,0.009356,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.217359,0.009356,-0.010751,0.249769,0,0);}
.m99_c01004{transform:matrix(0.217825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217825,0.000000,0.000000,0.250000,0,0);}
.m2f_c01004{transform:matrix(0.218054,0.009822,-0.011250,0.249747,0,0);-ms-transform:matrix(0.218054,0.009822,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.218054,0.009822,-0.011250,0.249747,0,0);}
.m4c_c01004{transform:matrix(0.218663,0.009412,-0.010751,0.249769,0,0);-ms-transform:matrix(0.218663,0.009412,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.218663,0.009412,-0.010751,0.249769,0,0);}
.mc_c01004{transform:matrix(0.219840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219840,0.000000,0.000000,0.250000,0,0);}
.ma7_c01004{transform:matrix(0.221771,0.005323,-0.005998,0.249928,0,0);-ms-transform:matrix(0.221771,0.005323,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.221771,0.005323,-0.005998,0.249928,0,0);}
.m9d_c01004{transform:matrix(0.223860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223860,0.000000,0.000000,0.250000,0,0);}
.mb1_c01004{transform:matrix(0.226055,0.015856,-0.017492,0.249387,0,0);-ms-transform:matrix(0.226055,0.015856,-0.017492,0.249387,0,0);-webkit-transform:matrix(0.226055,0.015856,-0.017492,0.249387,0,0);}
.m11_c01004{transform:matrix(0.226494,0.010656,-0.011749,0.249724,0,0);-ms-transform:matrix(0.226494,0.010656,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.226494,0.010656,-0.011749,0.249724,0,0);}
.m3_c01004{transform:matrix(0.226775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226775,0.000000,0.000000,0.250000,0,0);}
.m6b_c01004{transform:matrix(0.227054,0.009546,-0.010501,0.249779,0,0);-ms-transform:matrix(0.227054,0.009546,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.227054,0.009546,-0.010501,0.249779,0,0);}
.m7f_c01004{transform:matrix(0.227663,0.009344,-0.010252,0.249790,0,0);-ms-transform:matrix(0.227663,0.009344,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.227663,0.009344,-0.010252,0.249790,0,0);}
.m18_c01004{transform:matrix(0.229271,0.010787,-0.011749,0.249724,0,0);-ms-transform:matrix(0.229271,0.010787,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.229271,0.010787,-0.011749,0.249724,0,0);}
.m27_c01004{transform:matrix(0.229292,0.010328,-0.011250,0.249747,0,0);-ms-transform:matrix(0.229292,0.010328,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.229292,0.010328,-0.011250,0.249747,0,0);}
.m9e_c01004{transform:matrix(0.229885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229885,0.000000,0.000000,0.250000,0,0);}
.m79_c01004{transform:matrix(0.230356,0.009454,-0.010252,0.249790,0,0);-ms-transform:matrix(0.230356,0.009454,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.230356,0.009454,-0.010252,0.249790,0,0);}
.m6e_c01004{transform:matrix(0.230441,0.009458,-0.010252,0.249790,0,0);-ms-transform:matrix(0.230441,0.009458,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.230441,0.009458,-0.010252,0.249790,0,0);}
.m34_c01004{transform:matrix(0.230475,0.009228,-0.010002,0.249800,0,0);-ms-transform:matrix(0.230475,0.009228,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.230475,0.009228,-0.010002,0.249800,0,0);}
.m17_c01004{transform:matrix(0.231064,0.010871,-0.011749,0.249724,0,0);-ms-transform:matrix(0.231064,0.010871,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.231064,0.010871,-0.011749,0.249724,0,0);}
.m8c_c01004{transform:matrix(0.231849,0.010908,-0.011749,0.249724,0,0);-ms-transform:matrix(0.231849,0.010908,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.231849,0.010908,-0.011749,0.249724,0,0);}
.m66_c01004{transform:matrix(0.232817,0.008856,-0.009503,0.249819,0,0);-ms-transform:matrix(0.232817,0.008856,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.232817,0.008856,-0.009503,0.249819,0,0);}
.m92_c01004{transform:matrix(0.232863,0.010722,-0.011499,0.249735,0,0);-ms-transform:matrix(0.232863,0.010722,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.232863,0.010722,-0.011499,0.249735,0,0);}
.m73_c01004{transform:matrix(0.232869,0.009557,-0.010252,0.249790,0,0);-ms-transform:matrix(0.232869,0.009557,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.232869,0.009557,-0.010252,0.249790,0,0);}
.m69_c01004{transform:matrix(0.232959,0.009794,-0.010501,0.249779,0,0);-ms-transform:matrix(0.232959,0.009794,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.232959,0.009794,-0.010501,0.249779,0,0);}
.m52_c01004{transform:matrix(0.234137,0.009375,-0.010002,0.249800,0,0);-ms-transform:matrix(0.234137,0.009375,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.234137,0.009375,-0.010002,0.249800,0,0);}
.m9b_c01004{transform:matrix(0.236825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236825,0.000000,0.000000,0.250000,0,0);}
.m8d_c01004{transform:matrix(0.238806,0.011235,-0.011749,0.249724,0,0);-ms-transform:matrix(0.238806,0.011235,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.238806,0.011235,-0.011749,0.249724,0,0);}
.m6f_c01004{transform:matrix(0.241617,0.009916,-0.010252,0.249790,0,0);-ms-transform:matrix(0.241617,0.009916,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.241617,0.009916,-0.010252,0.249790,0,0);}
.m89_c01004{transform:matrix(0.243670,0.011464,-0.011749,0.249724,0,0);-ms-transform:matrix(0.243670,0.011464,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.243670,0.011464,-0.011749,0.249724,0,0);}
.m70_c01004{transform:matrix(0.243690,0.010001,-0.010252,0.249790,0,0);-ms-transform:matrix(0.243690,0.010001,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.243690,0.010001,-0.010252,0.249790,0,0);}
.m2d_c01004{transform:matrix(0.244152,0.010998,-0.011250,0.249747,0,0);-ms-transform:matrix(0.244152,0.010998,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.244152,0.010998,-0.011250,0.249747,0,0);}
.ma_c01004{transform:matrix(0.244430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244430,0.000000,0.000000,0.250000,0,0);}
.m16_c01004{transform:matrix(0.244629,0.011509,-0.011749,0.249724,0,0);-ms-transform:matrix(0.244629,0.011509,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.244629,0.011509,-0.011749,0.249724,0,0);}
.ma9_c01004{transform:matrix(0.245764,0.005898,-0.005998,0.249928,0,0);-ms-transform:matrix(0.245764,0.005898,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.245764,0.005898,-0.005998,0.249928,0,0);}
.m9f_c01004{transform:matrix(0.245855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245855,0.000000,0.000000,0.250000,0,0);}
.m5a_c01004{transform:matrix(0.245858,0.010336,-0.010501,0.249779,0,0);-ms-transform:matrix(0.245858,0.010336,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.245858,0.010336,-0.010501,0.249779,0,0);}
.m21_c01004{transform:matrix(0.246415,0.011100,-0.011250,0.249747,0,0);-ms-transform:matrix(0.246415,0.011100,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.246415,0.011100,-0.011250,0.249747,0,0);}
.m5c_c01004{transform:matrix(0.247137,0.010390,-0.010501,0.249779,0,0);-ms-transform:matrix(0.247137,0.010390,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.247137,0.010390,-0.010501,0.249779,0,0);}
.m43_c01004{transform:matrix(0.247176,0.009402,-0.009503,0.249819,0,0);-ms-transform:matrix(0.247176,0.009402,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.247176,0.009402,-0.009503,0.249819,0,0);}
.m90_c01004{transform:matrix(0.247247,0.011632,-0.011749,0.249724,0,0);-ms-transform:matrix(0.247247,0.011632,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.247247,0.011632,-0.011749,0.249724,0,0);}
.mb0_c01004{transform:matrix(0.247307,0.017346,-0.017492,0.249387,0,0);-ms-transform:matrix(0.247307,0.017346,-0.017492,0.249387,0,0);-webkit-transform:matrix(0.247307,0.017346,-0.017492,0.249387,0,0);}
.m7a_c01004{transform:matrix(0.247632,0.010163,-0.010252,0.249790,0,0);-ms-transform:matrix(0.247632,0.010163,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.247632,0.010163,-0.010252,0.249790,0,0);}
.m32_c01004{transform:matrix(0.247901,0.009926,-0.010002,0.249800,0,0);-ms-transform:matrix(0.247901,0.009926,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.247901,0.009926,-0.010002,0.249800,0,0);}
.m74_c01004{transform:matrix(0.248176,0.010185,-0.010252,0.249790,0,0);-ms-transform:matrix(0.248176,0.010185,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.248176,0.010185,-0.010252,0.249790,0,0);}
.m9_c01004{transform:matrix(0.248275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248275,0.000000,0.000000,0.250000,0,0);}
.m71_c01004{transform:matrix(0.248541,0.010200,-0.010252,0.249790,0,0);-ms-transform:matrix(0.248541,0.010200,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.248541,0.010200,-0.010252,0.249790,0,0);}
.m82_c01004{transform:matrix(0.248648,0.011200,-0.011250,0.249747,0,0);-ms-transform:matrix(0.248648,0.011200,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.248648,0.011200,-0.011250,0.249747,0,0);}
.m7_c01004{transform:matrix(0.248745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248745,0.000000,0.000000,0.250000,0,0);}
.m19_c01004{transform:matrix(0.248940,0.011712,-0.011749,0.249724,0,0);-ms-transform:matrix(0.248940,0.011712,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.248940,0.011712,-0.011749,0.249724,0,0);}
.m7c_c01004{transform:matrix(0.249645,0.010246,-0.010252,0.249790,0,0);-ms-transform:matrix(0.249645,0.010246,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.249645,0.010246,-0.010252,0.249790,0,0);}
.m53_c01004{transform:matrix(0.249835,0.010003,-0.010002,0.249800,0,0);-ms-transform:matrix(0.249835,0.010003,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.249835,0.010003,-0.010002,0.249800,0,0);}
.m8a_c01004{transform:matrix(0.251062,0.011812,-0.011749,0.249724,0,0);-ms-transform:matrix(0.251062,0.011812,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.251062,0.011812,-0.011749,0.249724,0,0);}
.m3a_c01004{transform:matrix(0.251108,0.008295,-0.008254,0.249864,0,0);-ms-transform:matrix(0.251108,0.008295,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.251108,0.008295,-0.008254,0.249864,0,0);}
.m91_c01004{transform:matrix(0.251573,0.011584,-0.011499,0.249735,0,0);-ms-transform:matrix(0.251573,0.011584,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.251573,0.011584,-0.011499,0.249735,0,0);}
.m88_c01004{transform:matrix(0.251635,0.012091,-0.011998,0.249712,0,0);-ms-transform:matrix(0.251635,0.012091,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.251635,0.012091,-0.011998,0.249712,0,0);}
.m8e_c01004{transform:matrix(0.251657,0.011840,-0.011749,0.249724,0,0);-ms-transform:matrix(0.251657,0.011840,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.251657,0.011840,-0.011749,0.249724,0,0);}
.m58_c01004{transform:matrix(0.252262,0.010606,-0.010501,0.249779,0,0);-ms-transform:matrix(0.252262,0.010606,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.252262,0.010606,-0.010501,0.249779,0,0);}
.m25_c01004{transform:matrix(0.252294,0.011365,-0.011250,0.249747,0,0);-ms-transform:matrix(0.252294,0.011365,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.252294,0.011365,-0.011250,0.249747,0,0);}
.m94_c01004{transform:matrix(0.252323,0.011618,-0.011499,0.249735,0,0);-ms-transform:matrix(0.252323,0.011618,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.252323,0.011618,-0.011499,0.249735,0,0);}
.m7b_c01004{transform:matrix(0.253397,0.010400,-0.010252,0.249790,0,0);-ms-transform:matrix(0.253397,0.010400,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.253397,0.010400,-0.010252,0.249790,0,0);}
.m36_c01004{transform:matrix(0.255310,0.010223,-0.010002,0.249800,0,0);-ms-transform:matrix(0.255310,0.010223,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.255310,0.010223,-0.010002,0.249800,0,0);}
.maa_c01004{transform:matrix(0.256056,0.006145,-0.005998,0.249928,0,0);-ms-transform:matrix(0.256056,0.006145,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.256056,0.006145,-0.005998,0.249928,0,0);}
.m35_c01004{transform:matrix(0.256479,0.010269,-0.010002,0.249800,0,0);-ms-transform:matrix(0.256479,0.010269,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.256479,0.010269,-0.010002,0.249800,0,0);}
.m30_c01004{transform:matrix(0.256530,0.011555,-0.011250,0.249747,0,0);-ms-transform:matrix(0.256530,0.011555,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.256530,0.011555,-0.011250,0.249747,0,0);}
.m2b_c01004{transform:matrix(0.256825,0.011569,-0.011250,0.249747,0,0);-ms-transform:matrix(0.256825,0.011569,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.256825,0.011569,-0.011250,0.249747,0,0);}
.m78_c01004{transform:matrix(0.256849,0.010541,-0.010252,0.249790,0,0);-ms-transform:matrix(0.256849,0.010541,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.256849,0.010541,-0.010252,0.249790,0,0);}
.m7d_c01004{transform:matrix(0.256929,0.010545,-0.010252,0.249790,0,0);-ms-transform:matrix(0.256929,0.010545,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.256929,0.010545,-0.010252,0.249790,0,0);}
.ma5_c01004{transform:matrix(0.258146,0.006195,-0.005998,0.249928,0,0);-ms-transform:matrix(0.258146,0.006195,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.258146,0.006195,-0.005998,0.249928,0,0);}
.m10_c01004{transform:matrix(0.258344,0.012154,-0.011749,0.249724,0,0);-ms-transform:matrix(0.258344,0.012154,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.258344,0.012154,-0.011749,0.249724,0,0);}
.m83_c01004{transform:matrix(0.259187,0.011675,-0.011250,0.249747,0,0);-ms-transform:matrix(0.259187,0.011675,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.259187,0.011675,-0.011250,0.249747,0,0);}
.m96_c01004{transform:matrix(0.259340,0.011942,-0.011499,0.249735,0,0);-ms-transform:matrix(0.259340,0.011942,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.259340,0.011942,-0.011499,0.249735,0,0);}
.m65_c01004{transform:matrix(0.260676,0.009916,-0.009503,0.249819,0,0);-ms-transform:matrix(0.260676,0.009916,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.260676,0.009916,-0.009503,0.249819,0,0);}
.m64_c01004{transform:matrix(0.262575,0.009988,-0.009503,0.249819,0,0);-ms-transform:matrix(0.262575,0.009988,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.262575,0.009988,-0.009503,0.249819,0,0);}
.m13_c01004{transform:matrix(0.263079,0.012377,-0.011749,0.249724,0,0);-ms-transform:matrix(0.263079,0.012377,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.263079,0.012377,-0.011749,0.249724,0,0);}
.m98_c01004{transform:matrix(0.263355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263355,0.000000,0.000000,0.250000,0,0);}
.m31_c01004{transform:matrix(0.263548,0.011872,-0.011250,0.249747,0,0);-ms-transform:matrix(0.263548,0.011872,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.263548,0.011872,-0.011250,0.249747,0,0);}
.m44_c01004{transform:matrix(0.265308,0.010092,-0.009503,0.249819,0,0);-ms-transform:matrix(0.265308,0.010092,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.265308,0.010092,-0.009503,0.249819,0,0);}
.ma4_c01004{transform:matrix(0.265833,0.006380,-0.005998,0.249928,0,0);-ms-transform:matrix(0.265833,0.006380,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.265833,0.006380,-0.005998,0.249928,0,0);}
.m12_c01004{transform:matrix(0.266280,0.012528,-0.011749,0.249724,0,0);-ms-transform:matrix(0.266280,0.012528,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.266280,0.012528,-0.011749,0.249724,0,0);}
.m14_c01004{transform:matrix(0.267080,0.012565,-0.011749,0.249724,0,0);-ms-transform:matrix(0.267080,0.012565,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.267080,0.012565,-0.011749,0.249724,0,0);}
.mad_c01004{transform:matrix(0.268051,0.018801,-0.017492,0.249387,0,0);-ms-transform:matrix(0.268051,0.018801,-0.017492,0.249387,0,0);-webkit-transform:matrix(0.268051,0.018801,-0.017492,0.249387,0,0);}
.mae_c01004{transform:matrix(0.269229,0.018884,-0.017492,0.249387,0,0);-ms-transform:matrix(0.269229,0.018884,-0.017492,0.249387,0,0);-webkit-transform:matrix(0.269229,0.018884,-0.017492,0.249387,0,0);}
.m3c_c01004{transform:matrix(0.269463,0.008901,-0.008254,0.249864,0,0);-ms-transform:matrix(0.269463,0.008901,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.269463,0.008901,-0.008254,0.249864,0,0);}
.m3f_c01004{transform:matrix(0.269908,0.008916,-0.008254,0.249864,0,0);-ms-transform:matrix(0.269908,0.008916,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.269908,0.008916,-0.008254,0.249864,0,0);}
.m68_c01004{transform:matrix(0.270166,0.011358,-0.010501,0.249779,0,0);-ms-transform:matrix(0.270166,0.011358,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.270166,0.011358,-0.010501,0.249779,0,0);}
.m62_c01004{transform:matrix(0.271064,0.010311,-0.009503,0.249819,0,0);-ms-transform:matrix(0.271064,0.010311,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.271064,0.010311,-0.009503,0.249819,0,0);}
.m67_c01004{transform:matrix(0.271803,0.010339,-0.009503,0.249819,0,0);-ms-transform:matrix(0.271803,0.010339,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.271803,0.010339,-0.009503,0.249819,0,0);}
.m95_c01004{transform:matrix(0.271997,0.012524,-0.011499,0.249735,0,0);-ms-transform:matrix(0.271997,0.012524,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.271997,0.012524,-0.011499,0.249735,0,0);}
.m40_c01004{transform:matrix(0.272346,0.008996,-0.008254,0.249864,0,0);-ms-transform:matrix(0.272346,0.008996,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.272346,0.008996,-0.008254,0.249864,0,0);}
.m6a_c01004{transform:matrix(0.272479,0.011456,-0.010501,0.249779,0,0);-ms-transform:matrix(0.272479,0.011456,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.272479,0.011456,-0.010501,0.249779,0,0);}
.mac_c01004{transform:matrix(0.272855,0.019138,-0.017492,0.249387,0,0);-ms-transform:matrix(0.272855,0.019138,-0.017492,0.249387,0,0);-webkit-transform:matrix(0.272855,0.019138,-0.017492,0.249387,0,0);}
.m3e_c01004{transform:matrix(0.272946,0.009016,-0.008254,0.249864,0,0);-ms-transform:matrix(0.272946,0.009016,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.272946,0.009016,-0.008254,0.249864,0,0);}
.m3b_c01004{transform:matrix(0.274180,0.009057,-0.008254,0.249864,0,0);-ms-transform:matrix(0.274180,0.009057,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.274180,0.009057,-0.008254,0.249864,0,0);}
.m5d_c01004{transform:matrix(0.276401,0.011620,-0.010501,0.249779,0,0);-ms-transform:matrix(0.276401,0.011620,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.276401,0.011620,-0.010501,0.249779,0,0);}
.m26_c01004{transform:matrix(0.276570,0.012458,-0.011250,0.249747,0,0);-ms-transform:matrix(0.276570,0.012458,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.276570,0.012458,-0.011250,0.249747,0,0);}
.m15_c01004{transform:matrix(0.276594,0.013013,-0.011749,0.249724,0,0);-ms-transform:matrix(0.276594,0.013013,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.276594,0.013013,-0.011749,0.249724,0,0);}
.m41_c01004{transform:matrix(0.276750,0.010527,-0.009503,0.249819,0,0);-ms-transform:matrix(0.276750,0.010527,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.276750,0.010527,-0.009503,0.249819,0,0);}
.maf_c01004{transform:matrix(0.276940,0.019425,-0.017492,0.249387,0,0);-ms-transform:matrix(0.276940,0.019425,-0.017492,0.249387,0,0);-webkit-transform:matrix(0.276940,0.019425,-0.017492,0.249387,0,0);}
.m6d_c01004{transform:matrix(0.277415,0.011663,-0.010501,0.249779,0,0);-ms-transform:matrix(0.277415,0.011663,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.277415,0.011663,-0.010501,0.249779,0,0);}
.m93_c01004{transform:matrix(0.278555,0.012826,-0.011499,0.249735,0,0);-ms-transform:matrix(0.278555,0.012826,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.278555,0.012826,-0.011499,0.249735,0,0);}
.m6c_c01004{transform:matrix(0.279443,0.011748,-0.010501,0.249779,0,0);-ms-transform:matrix(0.279443,0.011748,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.279443,0.011748,-0.010501,0.249779,0,0);}
.ma6_c01004{transform:matrix(0.280529,0.006733,-0.005998,0.249928,0,0);-ms-transform:matrix(0.280529,0.006733,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.280529,0.006733,-0.005998,0.249928,0,0);}
.m24_c01004{transform:matrix(0.282648,0.012732,-0.011250,0.249747,0,0);-ms-transform:matrix(0.282648,0.012732,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.282648,0.012732,-0.011250,0.249747,0,0);}
.m60_c01004{transform:matrix(0.283350,0.011913,-0.010501,0.249779,0,0);-ms-transform:matrix(0.283350,0.011913,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.283350,0.011913,-0.010501,0.249779,0,0);}
.m38_c01004{transform:matrix(0.284237,0.011381,-0.010002,0.249800,0,0);-ms-transform:matrix(0.284237,0.011381,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.284237,0.011381,-0.010002,0.249800,0,0);}
.m28_c01004{transform:matrix(0.285800,0.012874,-0.011250,0.249747,0,0);-ms-transform:matrix(0.285800,0.012874,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.285800,0.012874,-0.011250,0.249747,0,0);}
.m57_c01004{transform:matrix(0.286202,0.012033,-0.010501,0.249779,0,0);-ms-transform:matrix(0.286202,0.012033,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.286202,0.012033,-0.010501,0.249779,0,0);}
.m54_c01004{transform:matrix(0.286635,0.011477,-0.010002,0.249800,0,0);-ms-transform:matrix(0.286635,0.011477,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.286635,0.011477,-0.010002,0.249800,0,0);}
.ma8_c01004{transform:matrix(0.289502,0.006948,-0.005998,0.249928,0,0);-ms-transform:matrix(0.289502,0.006948,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.289502,0.006948,-0.005998,0.249928,0,0);}
.m97_c01004{transform:matrix(0.289703,0.013340,-0.011499,0.249735,0,0);-ms-transform:matrix(0.289703,0.013340,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.289703,0.013340,-0.011499,0.249735,0,0);}
.m39_c01004{transform:matrix(0.293570,0.011755,-0.010002,0.249800,0,0);-ms-transform:matrix(0.293570,0.011755,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.293570,0.011755,-0.010002,0.249800,0,0);}
.m42_c01004{transform:matrix(0.293793,0.011175,-0.009503,0.249819,0,0);-ms-transform:matrix(0.293793,0.011175,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.293793,0.011175,-0.009503,0.249819,0,0);}
.m5b_c01004{transform:matrix(0.294055,0.012363,-0.010501,0.249779,0,0);-ms-transform:matrix(0.294055,0.012363,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.294055,0.012363,-0.010501,0.249779,0,0);}
.m56_c01004{transform:matrix(0.294604,0.011796,-0.010002,0.249800,0,0);-ms-transform:matrix(0.294604,0.011796,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.294604,0.011796,-0.010002,0.249800,0,0);}
.m22_c01004{transform:matrix(0.297039,0.013380,-0.011250,0.249747,0,0);-ms-transform:matrix(0.297039,0.013380,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.297039,0.013380,-0.011250,0.249747,0,0);}
.m59_c01004{transform:matrix(0.297297,0.012499,-0.010501,0.249779,0,0);-ms-transform:matrix(0.297297,0.012499,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.297297,0.012499,-0.010501,0.249779,0,0);}
.m55_c01004{transform:matrix(0.300334,0.012025,-0.010002,0.249800,0,0);-ms-transform:matrix(0.300334,0.012025,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.300334,0.012025,-0.010002,0.249800,0,0);}
.m45_c01004{transform:matrix(0.301287,0.011460,-0.009503,0.249819,0,0);-ms-transform:matrix(0.301287,0.011460,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.301287,0.011460,-0.009503,0.249819,0,0);}
.m81_c01004{transform:matrix(0.303327,0.013663,-0.011250,0.249747,0,0);-ms-transform:matrix(0.303327,0.013663,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.303327,0.013663,-0.011250,0.249747,0,0);}
.m84_c01004{transform:matrix(0.306165,0.013791,-0.011250,0.249747,0,0);-ms-transform:matrix(0.306165,0.013791,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.306165,0.013791,-0.011250,0.249747,0,0);}
.m20_c01004{transform:matrix(0.306170,0.013791,-0.011250,0.249747,0,0);-ms-transform:matrix(0.306170,0.013791,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.306170,0.013791,-0.011250,0.249747,0,0);}
.m61_c01004{transform:matrix(0.307438,0.012925,-0.010501,0.249779,0,0);-ms-transform:matrix(0.307438,0.012925,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.307438,0.012925,-0.010501,0.249779,0,0);}
.mab_c01004{transform:matrix(0.312298,0.021905,-0.017492,0.249387,0,0);-ms-transform:matrix(0.312298,0.021905,-0.017492,0.249387,0,0);-webkit-transform:matrix(0.312298,0.021905,-0.017492,0.249387,0,0);}
.m5e_c01004{transform:matrix(0.312584,0.013142,-0.010501,0.249779,0,0);-ms-transform:matrix(0.312584,0.013142,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.312584,0.013142,-0.010501,0.249779,0,0);}
.m23_c01004{transform:matrix(0.312603,0.014081,-0.011250,0.249747,0,0);-ms-transform:matrix(0.312603,0.014081,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.312603,0.014081,-0.011250,0.249747,0,0);}
.m85_c01004{transform:matrix(0.318087,0.014328,-0.011250,0.249747,0,0);-ms-transform:matrix(0.318087,0.014328,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.318087,0.014328,-0.011250,0.249747,0,0);}
.m5f_c01004{transform:matrix(0.357624,0.015035,-0.010501,0.249779,0,0);-ms-transform:matrix(0.357624,0.015035,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.357624,0.015035,-0.010501,0.249779,0,0);}
.m2_c01004{transform:matrix(0.405370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405370,0.000000,0.000000,0.250000,0,0);}
.m1_c01004{transform:matrix(0.408405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408405,0.000000,0.000000,0.250000,0,0);}
.ma1_c01004{transform:matrix(0.441305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441305,0.000000,0.000000,0.250000,0,0);}
.m0_c01004{transform:matrix(0.453505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453505,0.000000,0.000000,0.250000,0,0);}
.m5_c01004{transform:matrix(0.457510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457510,0.000000,0.000000,0.250000,0,0);}
.m6_c01004{transform:matrix(0.458395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458395,0.000000,0.000000,0.250000,0,0);}
.me_c01004{transform:matrix(0.458845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458845,0.000000,0.000000,0.250000,0,0);}
.mf_c01004{transform:matrix(0.459305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459305,0.000000,0.000000,0.250000,0,0);}
.m8_c01004{transform:matrix(0.532195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532195,0.000000,0.000000,0.250000,0,0);}
.m1a_c01004{transform:matrix(0.549363,0.025296,-0.011499,0.249735,0,0);-ms-transform:matrix(0.549363,0.025296,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.549363,0.025296,-0.011499,0.249735,0,0);}
.mb_c01004{transform:matrix(0.624030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.624030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.624030,0.000000,0.000000,0.250000,0,0);}
.m77_c01004{transform:matrix(0.757387,0.031084,-0.010252,0.249790,0,0);-ms-transform:matrix(0.757387,0.031084,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.757387,0.031084,-0.010252,0.249790,0,0);}
.m76_c01004{transform:matrix(1.026716,0.042137,-0.010252,0.249790,0,0);-ms-transform:matrix(1.026716,0.042137,-0.010252,0.249790,0,0);-webkit-transform:matrix(1.026716,0.042137,-0.010252,0.249790,0,0);}
.m87_c01004{transform:matrix(3.407675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.407675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.407675,0.000000,0.000000,0.250000,0,0);}
.m29_c01004{transform:matrix(3.949605,0.177910,-0.011250,0.249747,0,0);-ms-transform:matrix(3.949605,0.177910,-0.011250,0.249747,0,0);-webkit-transform:matrix(3.949605,0.177910,-0.011250,0.249747,0,0);}
.m80_c01004{transform:matrix(4.362083,0.179024,-0.010252,0.249790,0,0);-ms-transform:matrix(4.362083,0.179024,-0.010252,0.249790,0,0);-webkit-transform:matrix(4.362083,0.179024,-0.010252,0.249790,0,0);}
.m46_c01004{transform:matrix(4.588766,0.174548,-0.009503,0.249819,0,0);-ms-transform:matrix(4.588766,0.174548,-0.009503,0.249819,0,0);-webkit-transform:matrix(4.588766,0.174548,-0.009503,0.249819,0,0);}
.m75_c01004{transform:matrix(6.177165,0.253517,-0.010252,0.249790,0,0);-ms-transform:matrix(6.177165,0.253517,-0.010252,0.249790,0,0);-webkit-transform:matrix(6.177165,0.253517,-0.010252,0.249790,0,0);}
.v0_c01004{vertical-align:0.000000px;}
.ls0_c01004{letter-spacing:0.000000px;}
.sc__c01004{text-shadow:none;}
.sc0_c01004{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__c01004{-webkit-text-stroke:0px transparent;}
.sc0_c01004{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01004{word-spacing:0.000000px;}
.fc0_c01004{color:transparent;}
.fsc_c01004{font-size:17.995004px;}
.fs13_c01004{font-size:17.997138px;}
.fs15_c01004{font-size:18.000000px;}
.fs14_c01004{font-size:23.996184px;}
.fs7_c01004{font-size:24.000312px;}
.fs2_c01004{font-size:36.000000px;}
.fs0_c01004{font-size:42.000000px;}
.fsb_c01004{font-size:65.981682px;}
.fse_c01004{font-size:65.986832px;}
.fsf_c01004{font-size:65.992245px;}
.fs5_c01004{font-size:66.000858px;}
.fs1c_c01004{font-size:66.019005px;}
.fs1d_c01004{font-size:66.029825px;}
.fsa_c01004{font-size:71.967233px;}
.fs10_c01004{font-size:71.980017px;}
.fs11_c01004{font-size:71.991540px;}
.fs19_c01004{font-size:72.000000px;}
.fs6_c01004{font-size:72.000936px;}
.fs18_c01004{font-size:72.004212px;}
.fs3_c01004{font-size:72.007560px;}
.fs9_c01004{font-size:77.984437px;}
.fs12_c01004{font-size:77.987597px;}
.fs1_c01004{font-size:78.000000px;}
.fs8_c01004{font-size:78.001014px;}
.fs17_c01004{font-size:78.008190px;}
.fs16_c01004{font-size:78.011894px;}
.fs1a_c01004{font-size:84.000000px;}
.fs4_c01004{font-size:84.004914px;}
.fs1e_c01004{font-size:84.037959px;}
.fsd_c01004{font-size:89.993250px;}
.fs1b_c01004{font-size:96.000000px;}
.y0_c01004{bottom:0.000000px;}
.yae_c01004{bottom:222.261570px;}
.yad_c01004{bottom:225.154605px;}
.yac_c01004{bottom:230.690310px;}
.yab_c01004{bottom:233.833275px;}
.yaa_c01004{bottom:237.695280px;}
.ya9_c01004{bottom:240.907020px;}
.ya8_c01004{bottom:249.273000px;}
.ya7_c01004{bottom:249.734460px;}
.ya6_c01004{bottom:250.518792px;}
.ya5_c01004{bottom:252.114744px;}
.ya4_c01004{bottom:253.165152px;}
.ya3_c01004{bottom:254.972856px;}
.ya2_c01004{bottom:256.287468px;}
.ya1_c01004{bottom:257.317500px;}
.ya0_c01004{bottom:265.423500px;}
.y9f_c01004{bottom:292.987500px;}
.y9e_c01004{bottom:303.834000px;}
.y9d_c01004{bottom:308.023500px;}
.y9c_c01004{bottom:313.875000px;}
.y9b_c01004{bottom:317.469000px;}
.y9a_c01004{bottom:320.427000px;}
.y99_c01004{bottom:321.627000px;}
.y98_c01004{bottom:326.473500px;}
.y97_c01004{bottom:327.307500px;}
.yd_c01004{bottom:327.642000px;}
.y96_c01004{bottom:329.688000px;}
.y95_c01004{bottom:361.657500px;}
.y94_c01004{bottom:380.477436px;}
.y93_c01004{bottom:383.537517px;}
.y92_c01004{bottom:388.517385px;}
.y91_c01004{bottom:391.619073px;}
.y90_c01004{bottom:394.705098px;}
.y8f_c01004{bottom:396.691332px;}
.yc_c01004{bottom:398.923500px;}
.y8e_c01004{bottom:400.167000px;}
.y8d_c01004{bottom:414.569943px;}
.y8c_c01004{bottom:416.183970px;}
.y8b_c01004{bottom:420.823222px;}
.y8a_c01004{bottom:423.477265px;}
.y89_c01004{bottom:425.967748px;}
.y88_c01004{bottom:428.075557px;}
.y87_c01004{bottom:432.737158px;}
.yb_c01004{bottom:434.964000px;}
.y86_c01004{bottom:436.887000px;}
.y85_c01004{bottom:470.373000px;}
.y84_c01004{bottom:473.850000px;}
.y17_c01004{bottom:480.209238px;}
.y16_c01004{bottom:481.756924px;}
.y15_c01004{bottom:483.795361px;}
.y14_c01004{bottom:485.900632px;}
.y13_c01004{bottom:490.636540px;}
.y12_c01004{bottom:495.190065px;}
.y11_c01004{bottom:499.418302px;}
.y10_c01004{bottom:503.560248px;}
.yf_c01004{bottom:505.058373px;}
.ya_c01004{bottom:506.656500px;}
.ye_c01004{bottom:508.167000px;}
.y83_c01004{bottom:528.142358px;}
.y82_c01004{bottom:533.654407px;}
.y81_c01004{bottom:535.160602px;}
.y80_c01004{bottom:536.643037px;}
.y7f_c01004{bottom:541.108500px;}
.y7d_c01004{bottom:553.942511px;}
.y7e_c01004{bottom:554.039073px;}
.y7c_c01004{bottom:555.303875px;}
.y7b_c01004{bottom:560.249643px;}
.y7a_c01004{bottom:564.837420px;}
.y79_c01004{bottom:568.891992px;}
.y78_c01004{bottom:573.347482px;}
.y77_c01004{bottom:574.327362px;}
.y9_c01004{bottom:577.671000px;}
.y76_c01004{bottom:578.362500px;}
.y75_c01004{bottom:590.482043px;}
.y74_c01004{bottom:591.217143px;}
.y72_c01004{bottom:597.026784px;}
.y71_c01004{bottom:598.834638px;}
.y73_c01004{bottom:599.710964px;}
.y70_c01004{bottom:601.002267px;}
.y6f_c01004{bottom:604.663485px;}
.y6e_c01004{bottom:608.331837px;}
.y6d_c01004{bottom:611.906709px;}
.y8_c01004{bottom:613.162500px;}
.y6c_c01004{bottom:614.541000px;}
.y6b_c01004{bottom:632.238285px;}
.y6a_c01004{bottom:637.689990px;}
.y69_c01004{bottom:639.583518px;}
.y68_c01004{bottom:643.330065px;}
.y67_c01004{bottom:645.157506px;}
.y7_c01004{bottom:648.267000px;}
.y66_c01004{bottom:650.181000px;}
.y65_c01004{bottom:671.729166px;}
.y64_c01004{bottom:672.975186px;}
.y63_c01004{bottom:675.486321px;}
.y62_c01004{bottom:678.847497px;}
.y61_c01004{bottom:680.798322px;}
.y6_c01004{bottom:683.356500px;}
.y60_c01004{bottom:685.008000px;}
.y5f_c01004{bottom:714.351316px;}
.y5e_c01004{bottom:717.684732px;}
.y5d_c01004{bottom:730.824219px;}
.y5c_c01004{bottom:736.898175px;}
.y5b_c01004{bottom:738.743634px;}
.y5a_c01004{bottom:740.093787px;}
.y59_c01004{bottom:743.343201px;}
.y58_c01004{bottom:745.643205px;}
.y57_c01004{bottom:749.821239px;}
.y56_c01004{bottom:751.669911px;}
.y5_c01004{bottom:754.104000px;}
.y55_c01004{bottom:755.752500px;}
.y54_c01004{bottom:778.577160px;}
.y53_c01004{bottom:783.546360px;}
.y52_c01004{bottom:786.989700px;}
.y51_c01004{bottom:788.307960px;}
.y50_c01004{bottom:789.226500px;}
.y4f_c01004{bottom:802.103972px;}
.y4e_c01004{bottom:803.078309px;}
.y4d_c01004{bottom:805.501445px;}
.y4c_c01004{bottom:809.709876px;}
.y4b_c01004{bottom:811.174349px;}
.y4a_c01004{bottom:815.439733px;}
.y49_c01004{bottom:817.325907px;}
.y48_c01004{bottom:820.153007px;}
.y47_c01004{bottom:822.080009px;}
.y46_c01004{bottom:823.467275px;}
.y4_c01004{bottom:824.851500px;}
.y45_c01004{bottom:828.112500px;}
.y44_c01004{bottom:850.123845px;}
.y43_c01004{bottom:850.964673px;}
.y42_c01004{bottom:852.218217px;}
.y41_c01004{bottom:853.459563px;}
.y40_c01004{bottom:855.994182px;}
.y3f_c01004{bottom:857.269500px;}
.y3e_c01004{bottom:903.622830px;}
.y3d_c01004{bottom:906.103176px;}
.y3c_c01004{bottom:909.781818px;}
.y3b_c01004{bottom:910.855522px;}
.y3_c01004{bottom:913.686000px;}
.y3a_c01004{bottom:914.794237px;}
.y39_c01004{bottom:942.235858px;}
.y38_c01004{bottom:943.395000px;}
.y37_c01004{bottom:981.431160px;}
.y36_c01004{bottom:984.044400px;}
.y35_c01004{bottom:985.400220px;}
.y34_c01004{bottom:989.839380px;}
.y33_c01004{bottom:995.053800px;}
.y32_c01004{bottom:997.744320px;}
.y31_c01004{bottom:999.494700px;}
.y2_c01004{bottom:1000.759500px;}
.y30_c01004{bottom:1003.882500px;}
.y2f_c01004{bottom:1021.530164px;}
.y2e_c01004{bottom:1025.434715px;}
.y2d_c01004{bottom:1027.089747px;}
.y2c_c01004{bottom:1028.257376px;}
.y2b_c01004{bottom:1030.681530px;}
.y2a_c01004{bottom:1031.850036px;}
.y1_c01004{bottom:1035.838500px;}
.y29_c01004{bottom:1037.365029px;}
.y28_c01004{bottom:1075.579871px;}
.y26_c01004{bottom:1080.411008px;}
.y27_c01004{bottom:1081.649862px;}
.y25_c01004{bottom:1081.861110px;}
.y24_c01004{bottom:1086.301193px;}
.y23_c01004{bottom:1087.857000px;}
.y22_c01004{bottom:1112.443538px;}
.y21_c01004{bottom:1115.470778px;}
.y20_c01004{bottom:1118.437875px;}
.y1f_c01004{bottom:1119.884468px;}
.y1e_c01004{bottom:1124.847000px;}
.y1d_c01004{bottom:1190.165763px;}
.y1c_c01004{bottom:1195.058208px;}
.y1b_c01004{bottom:1197.824970px;}
.y1a_c01004{bottom:1209.670131px;}
.y19_c01004{bottom:1211.153010px;}
.y18_c01004{bottom:1213.651500px;}
.he_c01004{height:17.995004px;}
.h15_c01004{height:17.997138px;}
.h17_c01004{height:18.000000px;}
.h16_c01004{height:23.996184px;}
.h9_c01004{height:24.000312px;}
.h4_c01004{height:36.000000px;}
.h2_c01004{height:42.000000px;}
.hd_c01004{height:65.981682px;}
.h10_c01004{height:65.986832px;}
.h11_c01004{height:65.992245px;}
.h7_c01004{height:66.000858px;}
.h1e_c01004{height:66.019005px;}
.h1f_c01004{height:66.029825px;}
.hc_c01004{height:71.967233px;}
.h12_c01004{height:71.980017px;}
.h13_c01004{height:71.991540px;}
.h1b_c01004{height:72.000000px;}
.h8_c01004{height:72.000936px;}
.h1a_c01004{height:72.004212px;}
.h5_c01004{height:72.007560px;}
.hb_c01004{height:77.984437px;}
.h14_c01004{height:77.987597px;}
.h3_c01004{height:78.000000px;}
.ha_c01004{height:78.001014px;}
.h19_c01004{height:78.008190px;}
.h18_c01004{height:78.011894px;}
.h1c_c01004{height:84.000000px;}
.h6_c01004{height:84.004914px;}
.h20_c01004{height:84.037959px;}
.hf_c01004{height:89.993250px;}
.h1d_c01004{height:96.000000px;}
.h0_c01004{height:1246.320000px;}
.h1_c01004{height:1246.500000px;}
.w0_c01004{width:896.100000px;}
.w1_c01004{width:896.250000px;}
.x0_c01004{left:0.000000px;}
.x87_c01004{left:116.862000px;}
.xe_c01004{left:117.990000px;}
.xd_c01004{left:119.610000px;}
.xb_c01004{left:120.690000px;}
.xa_c01004{left:122.580000px;}
.x9_c01004{left:125.820000px;}
.x8_c01004{left:127.710000px;}
.x7_c01004{left:130.140000px;}
.x6_c01004{left:132.300000px;}
.x4_c01004{left:135.000000px;}
.x2_c01004{left:138.510000px;}
.x1_c01004{left:139.590000px;}
.x88_c01004{left:159.780000px;}
.xc_c01004{left:166.860000px;}
.x3_c01004{left:172.800000px;}
.x5_c01004{left:181.440000px;}
.x80_c01004{left:194.451000px;}
.x75_c01004{left:195.990000px;}
.xf_c01004{left:198.408000px;}
.x66_c01004{left:200.058000px;}
.x5c_c01004{left:203.622000px;}
.x57_c01004{left:205.798500px;}
.x4e_c01004{left:207.379500px;}
.x43_c01004{left:210.090000px;}
.x38_c01004{left:212.142172px;}
.x2a_c01004{left:214.420986px;}
.x81_c01004{left:258.783000px;}
.x10_c01004{left:264.482859px;}
.x5e_c01004{left:267.787749px;}
.x7a_c01004{left:271.986942px;}
.x82_c01004{left:281.313000px;}
.x76_c01004{left:284.196206px;}
.x74_c01004{left:285.528000px;}
.x6d_c01004{left:287.202000px;}
.x89_c01004{left:289.876500px;}
.x4b_c01004{left:294.700500px;}
.x11_c01004{left:296.325984px;}
.x67_c01004{left:298.377582px;}
.x4f_c01004{left:304.486795px;}
.x7b_c01004{left:315.122763px;}
.x58_c01004{left:316.468719px;}
.x44_c01004{left:318.010471px;}
.x30_c01004{left:323.144805px;}
.x39_c01004{left:331.377817px;}
.x8a_c01004{left:333.643500px;}
.x1f_c01004{left:337.974000px;}
.x50_c01004{left:348.458779px;}
.x45_c01004{left:350.240209px;}
.x5f_c01004{left:354.892557px;}
.x3a_c01004{left:363.881781px;}
.x2b_c01004{left:367.421292px;}
.x56_c01004{left:369.436745px;}
.x42_c01004{left:370.710465px;}
.x3d_c01004{left:372.618000px;}
.x19_c01004{left:374.722500px;}
.x28_c01004{left:377.594163px;}
.x24_c01004{left:379.566000px;}
.x7c_c01004{left:382.143175px;}
.x77_c01004{left:383.280022px;}
.x12_c01004{left:384.364357px;}
.x6e_c01004{left:386.335267px;}
.x46_c01004{left:395.009396px;}
.x2c_c01004{left:399.828960px;}
.x3e_c01004{left:406.145439px;}
.x83_c01004{left:412.303500px;}
.x25_c01004{left:414.104927px;}
.x6f_c01004{left:419.245325px;}
.x1a_c01004{left:428.983185px;}
.x36_c01004{left:430.195500px;}
.x8b_c01004{left:432.822000px;}
.x31_c01004{left:434.056283px;}
.x4c_c01004{left:436.561997px;}
.x60_c01004{left:444.275085px;}
.x20_c01004{left:448.142222px;}
.x7d_c01004{left:449.503748px;}
.x63_c01004{left:451.203194px;}
.x70_c01004{left:452.682853px;}
.x59_c01004{left:456.118430px;}
.x1b_c01004{left:461.187449px;}
.x37_c01004{left:465.285874px;}
.x2d_c01004{left:467.078872px;}
.x3f_c01004{left:472.779239px;}
.x13_c01004{left:474.236895px;}
.x3b_c01004{left:475.244307px;}
.x8c_c01004{left:478.077000px;}
.x21_c01004{left:480.256575px;}
.x2e_c01004{left:499.467060px;}
.x5d_c01004{left:500.729595px;}
.x51_c01004{left:502.543540px;}
.x40_c01004{left:505.413571px;}
.x26_c01004{left:512.674758px;}
.x5a_c01004{left:522.134847px;}
.x84_c01004{left:524.659500px;}
.x68_c01004{left:529.608120px;}
.x61_c01004{left:533.483787px;}
.x41_c01004{left:538.368583px;}
.x27_c01004{left:544.867033px;}
.x22_c01004{left:546.126140px;}
.x3c_c01004{left:550.331145px;}
.x5b_c01004{left:554.892057px;}
.x7e_c01004{left:557.653489px;}
.x4d_c01004{left:560.667766px;}
.x32_c01004{left:564.286422px;}
.x14_c01004{left:571.023511px;}
.x71_c01004{left:575.050364px;}
.x52_c01004{left:579.833173px;}
.x62_c01004{left:586.299918px;}
.x8d_c01004{left:597.351972px;}
.x47_c01004{left:603.606589px;}
.x53_c01004{left:611.947527px;}
.x23_c01004{left:613.330868px;}
.x85_c01004{left:621.775500px;}
.x7f_c01004{left:624.110466px;}
.x29_c01004{left:630.051035px;}
.x78_c01004{left:636.039510px;}
.x48_c01004{left:637.630032px;}
.x69_c01004{left:641.393223px;}
.x8e_c01004{left:643.142208px;}
.x6c_c01004{left:649.276887px;}
.x2f_c01004{left:653.690615px;}
.x54_c01004{left:655.843087px;}
.x64_c01004{left:668.768763px;}
.x79_c01004{left:670.346169px;}
.x15_c01004{left:671.686747px;}
.x33_c01004{left:675.154443px;}
.x65_c01004{left:687.594457px;}
.x8f_c01004{left:698.203365px;}
.x34_c01004{left:709.016048px;}
.x16_c01004{left:716.434955px;}
.x1c_c01004{left:718.433445px;}
.x49_c01004{left:735.402662px;}
.x90_c01004{left:743.013066px;}
.x17_c01004{left:759.762583px;}
.x6a_c01004{left:761.901094px;}
.x35_c01004{left:774.281717px;}
.x1d_c01004{left:778.520298px;}
.x86_c01004{left:779.938500px;}
.x18_c01004{left:792.659154px;}
.x6b_c01004{left:795.071891px;}
.x55_c01004{left:800.316470px;}
.x4a_c01004{left:814.334650px;}
.x91_c01004{left:821.936403px;}
.x1e_c01004{left:884.771440px;}
.x73_c01004{left:893.700000px;}
.x72_c01004{left:895.050000px;}
@media print{
.v0_c01004{vertical-align:0.000000pt;}
.ls0_c01004{letter-spacing:0.000000pt;}
.ws0_c01004{word-spacing:0.000000pt;}
.fsc_c01004{font-size:15.995559pt;}
.fs13_c01004{font-size:15.997456pt;}
.fs15_c01004{font-size:16.000000pt;}
.fs14_c01004{font-size:21.329941pt;}
.fs7_c01004{font-size:21.333611pt;}
.fs2_c01004{font-size:32.000000pt;}
.fs0_c01004{font-size:37.333333pt;}
.fsb_c01004{font-size:58.650384pt;}
.fse_c01004{font-size:58.654961pt;}
.fsf_c01004{font-size:58.659773pt;}
.fs5_c01004{font-size:58.667429pt;}
.fs1c_c01004{font-size:58.683560pt;}
.fs1d_c01004{font-size:58.693178pt;}
.fsa_c01004{font-size:63.970873pt;}
.fs10_c01004{font-size:63.982238pt;}
.fs11_c01004{font-size:63.992480pt;}
.fs19_c01004{font-size:64.000000pt;}
.fs6_c01004{font-size:64.000832pt;}
.fs18_c01004{font-size:64.003744pt;}
.fs3_c01004{font-size:64.006720pt;}
.fs9_c01004{font-size:69.319500pt;}
.fs12_c01004{font-size:69.322308pt;}
.fs1_c01004{font-size:69.333333pt;}
.fs8_c01004{font-size:69.334235pt;}
.fs17_c01004{font-size:69.340613pt;}
.fs16_c01004{font-size:69.343906pt;}
.fs1a_c01004{font-size:74.666667pt;}
.fs4_c01004{font-size:74.671035pt;}
.fs1e_c01004{font-size:74.700408pt;}
.fsd_c01004{font-size:79.994000pt;}
.fs1b_c01004{font-size:85.333333pt;}
.y0_c01004{bottom:0.000000pt;}
.yae_c01004{bottom:197.565840pt;}
.yad_c01004{bottom:200.137427pt;}
.yac_c01004{bottom:205.058053pt;}
.yab_c01004{bottom:207.851800pt;}
.yaa_c01004{bottom:211.284693pt;}
.ya9_c01004{bottom:214.139573pt;}
.ya8_c01004{bottom:221.576000pt;}
.ya7_c01004{bottom:221.986187pt;}
.ya6_c01004{bottom:222.683371pt;}
.ya5_c01004{bottom:224.101995pt;}
.ya4_c01004{bottom:225.035691pt;}
.ya3_c01004{bottom:226.642539pt;}
.ya2_c01004{bottom:227.811083pt;}
.ya1_c01004{bottom:228.726667pt;}
.ya0_c01004{bottom:235.932000pt;}
.y9f_c01004{bottom:260.433333pt;}
.y9e_c01004{bottom:270.074667pt;}
.y9d_c01004{bottom:273.798667pt;}
.y9c_c01004{bottom:279.000000pt;}
.y9b_c01004{bottom:282.194667pt;}
.y9a_c01004{bottom:284.824000pt;}
.y99_c01004{bottom:285.890667pt;}
.y98_c01004{bottom:290.198667pt;}
.y97_c01004{bottom:290.940000pt;}
.yd_c01004{bottom:291.237333pt;}
.y96_c01004{bottom:293.056000pt;}
.y95_c01004{bottom:321.473333pt;}
.y94_c01004{bottom:338.202165pt;}
.y93_c01004{bottom:340.922237pt;}
.y92_c01004{bottom:345.348787pt;}
.y91_c01004{bottom:348.105843pt;}
.y90_c01004{bottom:350.848976pt;}
.y8f_c01004{bottom:352.614517pt;}
.yc_c01004{bottom:354.598667pt;}
.y8e_c01004{bottom:355.704000pt;}
.y8d_c01004{bottom:368.506616pt;}
.y8c_c01004{bottom:369.941307pt;}
.y8b_c01004{bottom:374.065087pt;}
.y8a_c01004{bottom:376.424236pt;}
.y89_c01004{bottom:378.637999pt;}
.y88_c01004{bottom:380.511607pt;}
.y87_c01004{bottom:384.655252pt;}
.yb_c01004{bottom:386.634667pt;}
.y86_c01004{bottom:388.344000pt;}
.y85_c01004{bottom:418.109333pt;}
.y84_c01004{bottom:421.200000pt;}
.y17_c01004{bottom:426.852656pt;}
.y16_c01004{bottom:428.228377pt;}
.y15_c01004{bottom:430.040321pt;}
.y14_c01004{bottom:431.911673pt;}
.y13_c01004{bottom:436.121369pt;}
.y12_c01004{bottom:440.168947pt;}
.y11_c01004{bottom:443.927380pt;}
.y10_c01004{bottom:447.609109pt;}
.yf_c01004{bottom:448.940776pt;}
.ya_c01004{bottom:450.361333pt;}
.ye_c01004{bottom:451.704000pt;}
.y83_c01004{bottom:469.459873pt;}
.y82_c01004{bottom:474.359473pt;}
.y81_c01004{bottom:475.698313pt;}
.y80_c01004{bottom:477.016033pt;}
.y7f_c01004{bottom:480.985333pt;}
.y7d_c01004{bottom:492.393343pt;}
.y7e_c01004{bottom:492.479176pt;}
.y7c_c01004{bottom:493.603444pt;}
.y7b_c01004{bottom:497.999683pt;}
.y7a_c01004{bottom:502.077707pt;}
.y79_c01004{bottom:505.681771pt;}
.y78_c01004{bottom:509.642207pt;}
.y77_c01004{bottom:510.513211pt;}
.y9_c01004{bottom:513.485333pt;}
.y76_c01004{bottom:514.100000pt;}
.y75_c01004{bottom:524.872927pt;}
.y74_c01004{bottom:525.526349pt;}
.y72_c01004{bottom:530.690475pt;}
.y71_c01004{bottom:532.297456pt;}
.y73_c01004{bottom:533.076412pt;}
.y70_c01004{bottom:534.224237pt;}
.y6f_c01004{bottom:537.478653pt;}
.y6e_c01004{bottom:540.739411pt;}
.y6d_c01004{bottom:543.917075pt;}
.y8_c01004{bottom:545.033333pt;}
.y6c_c01004{bottom:546.258667pt;}
.y6b_c01004{bottom:561.989587pt;}
.y6a_c01004{bottom:566.835547pt;}
.y69_c01004{bottom:568.518683pt;}
.y68_c01004{bottom:571.848947pt;}
.y67_c01004{bottom:573.473339pt;}
.y7_c01004{bottom:576.237333pt;}
.y66_c01004{bottom:577.938667pt;}
.y65_c01004{bottom:597.092592pt;}
.y64_c01004{bottom:598.200165pt;}
.y63_c01004{bottom:600.432285pt;}
.y62_c01004{bottom:603.419997pt;}
.y61_c01004{bottom:605.154064pt;}
.y6_c01004{bottom:607.428000pt;}
.y60_c01004{bottom:608.896000pt;}
.y5f_c01004{bottom:634.978948pt;}
.y5e_c01004{bottom:637.941984pt;}
.y5d_c01004{bottom:649.621528pt;}
.y5c_c01004{bottom:655.020600pt;}
.y5b_c01004{bottom:656.661008pt;}
.y5a_c01004{bottom:657.861144pt;}
.y59_c01004{bottom:660.749512pt;}
.y58_c01004{bottom:662.793960pt;}
.y57_c01004{bottom:666.507768pt;}
.y56_c01004{bottom:668.151032pt;}
.y5_c01004{bottom:670.314667pt;}
.y55_c01004{bottom:671.780000pt;}
.y54_c01004{bottom:692.068587pt;}
.y53_c01004{bottom:696.485653pt;}
.y52_c01004{bottom:699.546400pt;}
.y51_c01004{bottom:700.718187pt;}
.y50_c01004{bottom:701.534667pt;}
.y4f_c01004{bottom:712.981308pt;}
.y4e_c01004{bottom:713.847385pt;}
.y4d_c01004{bottom:716.001284pt;}
.y4c_c01004{bottom:719.742112pt;}
.y4b_c01004{bottom:721.043865pt;}
.y4a_c01004{bottom:724.835319pt;}
.y49_c01004{bottom:726.511917pt;}
.y48_c01004{bottom:729.024895pt;}
.y47_c01004{bottom:730.737785pt;}
.y46_c01004{bottom:731.970911pt;}
.y4_c01004{bottom:733.201333pt;}
.y45_c01004{bottom:736.100000pt;}
.y44_c01004{bottom:755.665640pt;}
.y43_c01004{bottom:756.413043pt;}
.y42_c01004{bottom:757.527304pt;}
.y41_c01004{bottom:758.630723pt;}
.y40_c01004{bottom:760.883717pt;}
.y3f_c01004{bottom:762.017333pt;}
.y3e_c01004{bottom:803.220293pt;}
.y3d_c01004{bottom:805.425045pt;}
.y3c_c01004{bottom:808.694949pt;}
.y3b_c01004{bottom:809.649353pt;}
.y3_c01004{bottom:812.165333pt;}
.y3a_c01004{bottom:813.150433pt;}
.y39_c01004{bottom:837.542985pt;}
.y38_c01004{bottom:838.573333pt;}
.y37_c01004{bottom:872.383253pt;}
.y36_c01004{bottom:874.706133pt;}
.y35_c01004{bottom:875.911307pt;}
.y34_c01004{bottom:879.857227pt;}
.y33_c01004{bottom:884.492267pt;}
.y32_c01004{bottom:886.883840pt;}
.y31_c01004{bottom:888.439733pt;}
.y2_c01004{bottom:889.564000pt;}
.y30_c01004{bottom:892.340000pt;}
.y2f_c01004{bottom:908.026812pt;}
.y2e_c01004{bottom:911.497524pt;}
.y2d_c01004{bottom:912.968664pt;}
.y2c_c01004{bottom:914.006556pt;}
.y2b_c01004{bottom:916.161360pt;}
.y2a_c01004{bottom:917.200032pt;}
.y1_c01004{bottom:920.745333pt;}
.y29_c01004{bottom:922.102248pt;}
.y28_c01004{bottom:956.070996pt;}
.y26_c01004{bottom:960.365340pt;}
.y27_c01004{bottom:961.466544pt;}
.y25_c01004{bottom:961.654320pt;}
.y24_c01004{bottom:965.601060pt;}
.y23_c01004{bottom:966.984000pt;}
.y22_c01004{bottom:988.838700pt;}
.y21_c01004{bottom:991.529580pt;}
.y20_c01004{bottom:994.167000pt;}
.y1f_c01004{bottom:995.452860pt;}
.y1e_c01004{bottom:999.864000pt;}
.y1d_c01004{bottom:1057.925123pt;}
.y1c_c01004{bottom:1062.273963pt;}
.y1b_c01004{bottom:1064.733307pt;}
.y1a_c01004{bottom:1075.262339pt;}
.y19_c01004{bottom:1076.580453pt;}
.y18_c01004{bottom:1078.801333pt;}
.he_c01004{height:15.995559pt;}
.h15_c01004{height:15.997456pt;}
.h17_c01004{height:16.000000pt;}
.h16_c01004{height:21.329941pt;}
.h9_c01004{height:21.333611pt;}
.h4_c01004{height:32.000000pt;}
.h2_c01004{height:37.333333pt;}
.hd_c01004{height:58.650384pt;}
.h10_c01004{height:58.654961pt;}
.h11_c01004{height:58.659773pt;}
.h7_c01004{height:58.667429pt;}
.h1e_c01004{height:58.683560pt;}
.h1f_c01004{height:58.693178pt;}
.hc_c01004{height:63.970873pt;}
.h12_c01004{height:63.982238pt;}
.h13_c01004{height:63.992480pt;}
.h1b_c01004{height:64.000000pt;}
.h8_c01004{height:64.000832pt;}
.h1a_c01004{height:64.003744pt;}
.h5_c01004{height:64.006720pt;}
.hb_c01004{height:69.319500pt;}
.h14_c01004{height:69.322308pt;}
.h3_c01004{height:69.333333pt;}
.ha_c01004{height:69.334235pt;}
.h19_c01004{height:69.340613pt;}
.h18_c01004{height:69.343906pt;}
.h1c_c01004{height:74.666667pt;}
.h6_c01004{height:74.671035pt;}
.h20_c01004{height:74.700408pt;}
.hf_c01004{height:79.994000pt;}
.h1d_c01004{height:85.333333pt;}
.h0_c01004{height:1107.840000pt;}
.h1_c01004{height:1108.000000pt;}
.w0_c01004{width:796.533333pt;}
.w1_c01004{width:796.666667pt;}
.x0_c01004{left:0.000000pt;}
.x87_c01004{left:103.877333pt;}
.xe_c01004{left:104.880000pt;}
.xd_c01004{left:106.320000pt;}
.xb_c01004{left:107.280000pt;}
.xa_c01004{left:108.960000pt;}
.x9_c01004{left:111.840000pt;}
.x8_c01004{left:113.520000pt;}
.x7_c01004{left:115.680000pt;}
.x6_c01004{left:117.600000pt;}
.x4_c01004{left:120.000000pt;}
.x2_c01004{left:123.120000pt;}
.x1_c01004{left:124.080000pt;}
.x88_c01004{left:142.026667pt;}
.xc_c01004{left:148.320000pt;}
.x3_c01004{left:153.600000pt;}
.x5_c01004{left:161.280000pt;}
.x80_c01004{left:172.845333pt;}
.x75_c01004{left:174.213333pt;}
.xf_c01004{left:176.362667pt;}
.x66_c01004{left:177.829333pt;}
.x5c_c01004{left:180.997333pt;}
.x57_c01004{left:182.932000pt;}
.x4e_c01004{left:184.337333pt;}
.x43_c01004{left:186.746667pt;}
.x38_c01004{left:188.570820pt;}
.x2a_c01004{left:190.596432pt;}
.x81_c01004{left:230.029333pt;}
.x10_c01004{left:235.095875pt;}
.x5e_c01004{left:238.033555pt;}
.x7a_c01004{left:241.766171pt;}
.x82_c01004{left:250.056000pt;}
.x76_c01004{left:252.618849pt;}
.x74_c01004{left:253.802667pt;}
.x6d_c01004{left:255.290667pt;}
.x89_c01004{left:257.668000pt;}
.x4b_c01004{left:261.956000pt;}
.x11_c01004{left:263.400875pt;}
.x67_c01004{left:265.224517pt;}
.x4f_c01004{left:270.654929pt;}
.x7b_c01004{left:280.109123pt;}
.x58_c01004{left:281.305528pt;}
.x44_c01004{left:282.675975pt;}
.x30_c01004{left:287.239827pt;}
.x39_c01004{left:294.558060pt;}
.x8a_c01004{left:296.572000pt;}
.x1f_c01004{left:300.421333pt;}
.x50_c01004{left:309.741137pt;}
.x45_c01004{left:311.324631pt;}
.x5f_c01004{left:315.460051pt;}
.x3a_c01004{left:323.450472pt;}
.x2b_c01004{left:326.596704pt;}
.x56_c01004{left:328.388217pt;}
.x42_c01004{left:329.520413pt;}
.x3d_c01004{left:331.216000pt;}
.x19_c01004{left:333.086667pt;}
.x28_c01004{left:335.639256pt;}
.x24_c01004{left:337.392000pt;}
.x7c_c01004{left:339.682823pt;}
.x77_c01004{left:340.693353pt;}
.x12_c01004{left:341.657207pt;}
.x6e_c01004{left:343.409127pt;}
.x46_c01004{left:351.119463pt;}
.x2c_c01004{left:355.403520pt;}
.x3e_c01004{left:361.018168pt;}
.x83_c01004{left:366.492000pt;}
.x25_c01004{left:368.093268pt;}
.x6f_c01004{left:372.662511pt;}
.x1a_c01004{left:381.318387pt;}
.x36_c01004{left:382.396000pt;}
.x8b_c01004{left:384.730667pt;}
.x31_c01004{left:385.827807pt;}
.x4c_c01004{left:388.055108pt;}
.x60_c01004{left:394.911187pt;}
.x20_c01004{left:398.348641pt;}
.x7d_c01004{left:399.558887pt;}
.x63_c01004{left:401.069505pt;}
.x70_c01004{left:402.384759pt;}
.x59_c01004{left:405.438604pt;}
.x1b_c01004{left:409.944399pt;}
.x37_c01004{left:413.587444pt;}
.x2d_c01004{left:415.181220pt;}
.x3f_c01004{left:420.248212pt;}
.x13_c01004{left:421.543907pt;}
.x3b_c01004{left:422.439384pt;}
.x8c_c01004{left:424.957333pt;}
.x21_c01004{left:426.894733pt;}
.x2e_c01004{left:443.970720pt;}
.x5d_c01004{left:445.092973pt;}
.x51_c01004{left:446.705369pt;}
.x40_c01004{left:449.256508pt;}
.x26_c01004{left:455.710896pt;}
.x5a_c01004{left:464.119864pt;}
.x84_c01004{left:466.364000pt;}
.x68_c01004{left:470.762773pt;}
.x61_c01004{left:474.207811pt;}
.x41_c01004{left:478.549852pt;}
.x27_c01004{left:484.326252pt;}
.x22_c01004{left:485.445457pt;}
.x3c_c01004{left:489.183240pt;}
.x5b_c01004{left:493.237384pt;}
.x7e_c01004{left:495.691991pt;}
.x4d_c01004{left:498.371348pt;}
.x32_c01004{left:501.587931pt;}
.x14_c01004{left:507.576455pt;}
.x71_c01004{left:511.155879pt;}
.x52_c01004{left:515.407265pt;}
.x62_c01004{left:521.155483pt;}
.x8d_c01004{left:530.979531pt;}
.x47_c01004{left:536.539191pt;}
.x53_c01004{left:543.953357pt;}
.x23_c01004{left:545.182993pt;}
.x85_c01004{left:552.689333pt;}
.x7f_c01004{left:554.764859pt;}
.x29_c01004{left:560.045364pt;}
.x78_c01004{left:565.368453pt;}
.x48_c01004{left:566.782251pt;}
.x69_c01004{left:570.127309pt;}
.x8e_c01004{left:571.681963pt;}
.x6c_c01004{left:577.135011pt;}
.x2f_c01004{left:581.058324pt;}
.x54_c01004{left:582.971633pt;}
.x64_c01004{left:594.461123pt;}
.x79_c01004{left:595.863261pt;}
.x15_c01004{left:597.054887pt;}
.x33_c01004{left:600.137283pt;}
.x65_c01004{left:611.195073pt;}
.x8f_c01004{left:620.625213pt;}
.x34_c01004{left:630.236487pt;}
.x16_c01004{left:636.831071pt;}
.x1c_c01004{left:638.607507pt;}
.x49_c01004{left:653.691255pt;}
.x90_c01004{left:660.456059pt;}
.x17_c01004{left:675.344519pt;}
.x6a_c01004{left:677.245417pt;}
.x35_c01004{left:688.250415pt;}
.x1d_c01004{left:692.018043pt;}
.x86_c01004{left:693.278667pt;}
.x18_c01004{left:704.585915pt;}
.x6b_c01004{left:706.730569pt;}
.x55_c01004{left:711.392417pt;}
.x4a_c01004{left:723.853023pt;}
.x91_c01004{left:730.610136pt;}
.x1e_c01004{left:786.463503pt;}
.x73_c01004{left:794.400000pt;}
.x72_c01004{left:795.600000pt;}
}





/* 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_c01005 {
    display:none;
  }
  .loading-indicator_c01005.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01005 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_c01005 { 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_c01005" -> "#page-container .classname_c01005")
 */
.pf_c01005 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01005 { /* 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_c01005.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01005 { /* 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_c01005 { /* 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_c01005 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01005 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01005 {overflow:visible;}
  }
}
.c_c01005 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01005 { /* 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_c01005:after { /* webkit #35443 */
  content: '';
}
.t_c01005:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01005 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 */
}
.__c01005 { /* 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_c01005 { /* info for Javascript */
  display:none;
}
.l_c01005 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01005 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01005 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01005: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_c01005 {
    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_c01005.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01005.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_c01005 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01005{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01005;src:url('chunks/assets/font_041d900c6b91d2cee60dcef9.woff2')format("woff");}.ff1_c01005{font-family:ff1_c01005;line-height:1.000000;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;}
.m2_c01005{transform:matrix(0.342710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342710,0.000000,0.000000,0.250000,0,0);}
.m4_c01005{transform:matrix(0.456070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456070,0.000000,0.000000,0.250000,0,0);}
.m0_c01005{transform:matrix(0.533040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533040,0.000000,0.000000,0.250000,0,0);}
.m1_c01005{transform:matrix(0.614130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.614130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.614130,0.000000,0.000000,0.250000,0,0);}
.m3_c01005{transform:matrix(0.633245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.633245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.633245,0.000000,0.000000,0.250000,0,0);}
.v0_c01005{vertical-align:0.000000px;}
.ls0_c01005{letter-spacing:0.000000px;}
.sc__c01005{text-shadow:none;}
.sc0_c01005{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__c01005{-webkit-text-stroke:0px transparent;}
.sc0_c01005{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01005{word-spacing:0.000000px;}
.fc0_c01005{color:transparent;}
.fs1_c01005{font-size:18.000000px;}
.fs0_c01005{font-size:24.000000px;}
.y0_c01005{bottom:0.000000px;}
.y2_c01005{bottom:417.018000px;}
.y1_c01005{bottom:422.845500px;}
.h3_c01005{height:18.000000px;}
.h2_c01005{height:24.000000px;}
.h0_c01005{height:1246.320000px;}
.h1_c01005{height:1246.500000px;}
.w0_c01005{width:896.100000px;}
.w1_c01005{width:896.250000px;}
.x0_c01005{left:0.000000px;}
.x3_c01005{left:216.810000px;}
.x1_c01005{left:219.240000px;}
.x4_c01005{left:226.530000px;}
.x2_c01005{left:231.930000px;}
.x5_c01005{left:244.350000px;}
@media print{
.v0_c01005{vertical-align:0.000000pt;}
.ls0_c01005{letter-spacing:0.000000pt;}
.ws0_c01005{word-spacing:0.000000pt;}
.fs1_c01005{font-size:16.000000pt;}
.fs0_c01005{font-size:21.333333pt;}
.y0_c01005{bottom:0.000000pt;}
.y2_c01005{bottom:370.682667pt;}
.y1_c01005{bottom:375.862667pt;}
.h3_c01005{height:16.000000pt;}
.h2_c01005{height:21.333333pt;}
.h0_c01005{height:1107.840000pt;}
.h1_c01005{height:1108.000000pt;}
.w0_c01005{width:796.533333pt;}
.w1_c01005{width:796.666667pt;}
.x0_c01005{left:0.000000pt;}
.x3_c01005{left:192.720000pt;}
.x1_c01005{left:194.880000pt;}
.x4_c01005{left:201.360000pt;}
.x2_c01005{left:206.160000pt;}
.x5_c01005{left:217.200000pt;}
}





/* 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_c01006 {
    display:none;
  }
  .loading-indicator_c01006.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01006 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_c01006 { 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_c01006" -> "#page-container .classname_c01006")
 */
.pf_c01006 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01006 { /* 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_c01006.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01006 { /* 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_c01006 { /* 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_c01006 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01006 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01006 {overflow:visible;}
  }
}
.c_c01006 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01006 { /* 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_c01006:after { /* webkit #35443 */
  content: '';
}
.t_c01006:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01006 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 */
}
.__c01006 { /* 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_c01006 { /* info for Javascript */
  display:none;
}
.l_c01006 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01006 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01006 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01006: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_c01006 {
    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_c01006.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01006.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_c01006 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01006{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01006;src:url('chunks/assets/font_cfe63ee56e9e10a97d33a3db.woff2')format("woff");}.ff1_c01006{font-family:ff1_c01006;line-height:1.000000;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;}
.m1_c01006{transform:matrix(0.014745,0.000383,-0.006498,0.249916,0,0);-ms-transform:matrix(0.014745,0.000383,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.014745,0.000383,-0.006498,0.249916,0,0);}
.m8_c01006{transform:matrix(0.167941,0.003359,-0.004999,0.249950,0,0);-ms-transform:matrix(0.167941,0.003359,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.167941,0.003359,-0.004999,0.249950,0,0);}
.ma_c01006{transform:matrix(0.170541,0.003411,-0.004999,0.249950,0,0);-ms-transform:matrix(0.170541,0.003411,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.170541,0.003411,-0.004999,0.249950,0,0);}
.m37_c01006{transform:matrix(0.171188,0.002397,-0.003500,0.249976,0,0);-ms-transform:matrix(0.171188,0.002397,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.171188,0.002397,-0.003500,0.249976,0,0);}
.m39_c01006{transform:matrix(0.176458,0.002470,-0.003500,0.249976,0,0);-ms-transform:matrix(0.176458,0.002470,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.176458,0.002470,-0.003500,0.249976,0,0);}
.m3f_c01006{transform:matrix(0.181927,0.002547,-0.003500,0.249976,0,0);-ms-transform:matrix(0.181927,0.002547,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.181927,0.002547,-0.003500,0.249976,0,0);}
.m3e_c01006{transform:matrix(0.183867,0.002574,-0.003500,0.249976,0,0);-ms-transform:matrix(0.183867,0.002574,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.183867,0.002574,-0.003500,0.249976,0,0);}
.m38_c01006{transform:matrix(0.183992,0.002576,-0.003500,0.249976,0,0);-ms-transform:matrix(0.183992,0.002576,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.183992,0.002576,-0.003500,0.249976,0,0);}
.m3d_c01006{transform:matrix(0.187217,0.002621,-0.003500,0.249976,0,0);-ms-transform:matrix(0.187217,0.002621,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.187217,0.002621,-0.003500,0.249976,0,0);}
.me_c01006{transform:matrix(0.187697,0.003754,-0.004999,0.249950,0,0);-ms-transform:matrix(0.187697,0.003754,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.187697,0.003754,-0.004999,0.249950,0,0);}
.mc_c01006{transform:matrix(0.191717,0.003834,-0.004999,0.249950,0,0);-ms-transform:matrix(0.191717,0.003834,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.191717,0.003834,-0.004999,0.249950,0,0);}
.m3b_c01006{transform:matrix(0.194176,0.002718,-0.003500,0.249976,0,0);-ms-transform:matrix(0.194176,0.002718,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.194176,0.002718,-0.003500,0.249976,0,0);}
.m42_c01006{transform:matrix(0.197736,0.002768,-0.003500,0.249976,0,0);-ms-transform:matrix(0.197736,0.002768,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.197736,0.002768,-0.003500,0.249976,0,0);}
.m41_c01006{transform:matrix(0.198576,0.002780,-0.003500,0.249976,0,0);-ms-transform:matrix(0.198576,0.002780,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.198576,0.002780,-0.003500,0.249976,0,0);}
.m3c_c01006{transform:matrix(0.198841,0.002784,-0.003500,0.249976,0,0);-ms-transform:matrix(0.198841,0.002784,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.198841,0.002784,-0.003500,0.249976,0,0);}
.m36_c01006{transform:matrix(0.199365,0.002791,-0.003500,0.249976,0,0);-ms-transform:matrix(0.199365,0.002791,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.199365,0.002791,-0.003500,0.249976,0,0);}
.m40_c01006{transform:matrix(0.204100,0.002857,-0.003500,0.249976,0,0);-ms-transform:matrix(0.204100,0.002857,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.204100,0.002857,-0.003500,0.249976,0,0);}
.m35_c01006{transform:matrix(0.204109,0.004082,-0.004999,0.249950,0,0);-ms-transform:matrix(0.204109,0.004082,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.204109,0.004082,-0.004999,0.249950,0,0);}
.m7_c01006{transform:matrix(0.205909,0.004118,-0.004999,0.249950,0,0);-ms-transform:matrix(0.205909,0.004118,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.205909,0.004118,-0.004999,0.249950,0,0);}
.m22_c01006{transform:matrix(0.208498,0.004170,-0.004999,0.249950,0,0);-ms-transform:matrix(0.208498,0.004170,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.208498,0.004170,-0.004999,0.249950,0,0);}
.m33_c01006{transform:matrix(0.208668,0.004173,-0.004999,0.249950,0,0);-ms-transform:matrix(0.208668,0.004173,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.208668,0.004173,-0.004999,0.249950,0,0);}
.m3a_c01006{transform:matrix(0.209999,0.002940,-0.003500,0.249976,0,0);-ms-transform:matrix(0.209999,0.002940,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.209999,0.002940,-0.003500,0.249976,0,0);}
.md_c01006{transform:matrix(0.210163,0.004203,-0.004999,0.249950,0,0);-ms-transform:matrix(0.210163,0.004203,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.210163,0.004203,-0.004999,0.249950,0,0);}
.m13_c01006{transform:matrix(0.211173,0.004223,-0.004999,0.249950,0,0);-ms-transform:matrix(0.211173,0.004223,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.211173,0.004223,-0.004999,0.249950,0,0);}
.mb_c01006{transform:matrix(0.211218,0.004224,-0.004999,0.249950,0,0);-ms-transform:matrix(0.211218,0.004224,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.211218,0.004224,-0.004999,0.249950,0,0);}
.m9_c01006{transform:matrix(0.213267,0.004265,-0.004999,0.249950,0,0);-ms-transform:matrix(0.213267,0.004265,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.213267,0.004265,-0.004999,0.249950,0,0);}
.m2a_c01006{transform:matrix(0.220536,0.004411,-0.004999,0.249950,0,0);-ms-transform:matrix(0.220536,0.004411,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.220536,0.004411,-0.004999,0.249950,0,0);}
.m32_c01006{transform:matrix(0.226055,0.004521,-0.004999,0.249950,0,0);-ms-transform:matrix(0.226055,0.004521,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.226055,0.004521,-0.004999,0.249950,0,0);}
.m34_c01006{transform:matrix(0.226530,0.004531,-0.004999,0.249950,0,0);-ms-transform:matrix(0.226530,0.004531,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.226530,0.004531,-0.004999,0.249950,0,0);}
.m2c_c01006{transform:matrix(0.228769,0.004575,-0.004999,0.249950,0,0);-ms-transform:matrix(0.228769,0.004575,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.228769,0.004575,-0.004999,0.249950,0,0);}
.m28_c01006{transform:matrix(0.231389,0.004628,-0.004999,0.249950,0,0);-ms-transform:matrix(0.231389,0.004628,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.231389,0.004628,-0.004999,0.249950,0,0);}
.m30_c01006{transform:matrix(0.232603,0.004652,-0.004999,0.249950,0,0);-ms-transform:matrix(0.232603,0.004652,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.232603,0.004652,-0.004999,0.249950,0,0);}
.m29_c01006{transform:matrix(0.235033,0.004701,-0.004999,0.249950,0,0);-ms-transform:matrix(0.235033,0.004701,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.235033,0.004701,-0.004999,0.249950,0,0);}
.m15_c01006{transform:matrix(0.235133,0.004703,-0.004999,0.249950,0,0);-ms-transform:matrix(0.235133,0.004703,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.235133,0.004703,-0.004999,0.249950,0,0);}
.m31_c01006{transform:matrix(0.236058,0.004721,-0.004999,0.249950,0,0);-ms-transform:matrix(0.236058,0.004721,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.236058,0.004721,-0.004999,0.249950,0,0);}
.m2f_c01006{transform:matrix(0.237782,0.004756,-0.004999,0.249950,0,0);-ms-transform:matrix(0.237782,0.004756,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.237782,0.004756,-0.004999,0.249950,0,0);}
.mf_c01006{transform:matrix(0.238107,0.004762,-0.004999,0.249950,0,0);-ms-transform:matrix(0.238107,0.004762,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.238107,0.004762,-0.004999,0.249950,0,0);}
.m11_c01006{transform:matrix(0.240107,0.004802,-0.004999,0.249950,0,0);-ms-transform:matrix(0.240107,0.004802,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.240107,0.004802,-0.004999,0.249950,0,0);}
.m10_c01006{transform:matrix(0.240142,0.004803,-0.004999,0.249950,0,0);-ms-transform:matrix(0.240142,0.004803,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.240142,0.004803,-0.004999,0.249950,0,0);}
.m1e_c01006{transform:matrix(0.242816,0.004856,-0.004999,0.249950,0,0);-ms-transform:matrix(0.242816,0.004856,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.242816,0.004856,-0.004999,0.249950,0,0);}
.m16_c01006{transform:matrix(0.244856,0.004897,-0.004999,0.249950,0,0);-ms-transform:matrix(0.244856,0.004897,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.244856,0.004897,-0.004999,0.249950,0,0);}
.m18_c01006{transform:matrix(0.245786,0.004916,-0.004999,0.249950,0,0);-ms-transform:matrix(0.245786,0.004916,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.245786,0.004916,-0.004999,0.249950,0,0);}
.m26_c01006{transform:matrix(0.246146,0.004923,-0.004999,0.249950,0,0);-ms-transform:matrix(0.246146,0.004923,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.246146,0.004923,-0.004999,0.249950,0,0);}
.m25_c01006{transform:matrix(0.246891,0.004938,-0.004999,0.249950,0,0);-ms-transform:matrix(0.246891,0.004938,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.246891,0.004938,-0.004999,0.249950,0,0);}
.m12_c01006{transform:matrix(0.248315,0.004966,-0.004999,0.249950,0,0);-ms-transform:matrix(0.248315,0.004966,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.248315,0.004966,-0.004999,0.249950,0,0);}
.m2e_c01006{transform:matrix(0.249965,0.004999,-0.004999,0.249950,0,0);-ms-transform:matrix(0.249965,0.004999,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.249965,0.004999,-0.004999,0.249950,0,0);}
.m20_c01006{transform:matrix(0.253689,0.005074,-0.004999,0.249950,0,0);-ms-transform:matrix(0.253689,0.005074,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.253689,0.005074,-0.004999,0.249950,0,0);}
.m2b_c01006{transform:matrix(0.256374,0.005127,-0.004999,0.249950,0,0);-ms-transform:matrix(0.256374,0.005127,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.256374,0.005127,-0.004999,0.249950,0,0);}
.m2d_c01006{transform:matrix(0.258938,0.005179,-0.004999,0.249950,0,0);-ms-transform:matrix(0.258938,0.005179,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.258938,0.005179,-0.004999,0.249950,0,0);}
.m21_c01006{transform:matrix(0.259988,0.005200,-0.004999,0.249950,0,0);-ms-transform:matrix(0.259988,0.005200,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.259988,0.005200,-0.004999,0.249950,0,0);}
.m14_c01006{transform:matrix(0.260168,0.005203,-0.004999,0.249950,0,0);-ms-transform:matrix(0.260168,0.005203,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.260168,0.005203,-0.004999,0.249950,0,0);}
.m17_c01006{transform:matrix(0.261433,0.005229,-0.004999,0.249950,0,0);-ms-transform:matrix(0.261433,0.005229,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.261433,0.005229,-0.004999,0.249950,0,0);}
.m23_c01006{transform:matrix(0.265442,0.005309,-0.004999,0.249950,0,0);-ms-transform:matrix(0.265442,0.005309,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.265442,0.005309,-0.004999,0.249950,0,0);}
.m27_c01006{transform:matrix(0.265522,0.005310,-0.004999,0.249950,0,0);-ms-transform:matrix(0.265522,0.005310,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.265522,0.005310,-0.004999,0.249950,0,0);}
.m1b_c01006{transform:matrix(0.265582,0.005312,-0.004999,0.249950,0,0);-ms-transform:matrix(0.265582,0.005312,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.265582,0.005312,-0.004999,0.249950,0,0);}
.m24_c01006{transform:matrix(0.273715,0.005474,-0.004999,0.249950,0,0);-ms-transform:matrix(0.273715,0.005474,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.273715,0.005474,-0.004999,0.249950,0,0);}
.m1f_c01006{transform:matrix(0.278859,0.005577,-0.004999,0.249950,0,0);-ms-transform:matrix(0.278859,0.005577,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.278859,0.005577,-0.004999,0.249950,0,0);}
.m4_c01006{transform:matrix(0.280725,0.007299,-0.006498,0.249916,0,0);-ms-transform:matrix(0.280725,0.007299,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.280725,0.007299,-0.006498,0.249916,0,0);}
.m1a_c01006{transform:matrix(0.288617,0.005772,-0.004999,0.249950,0,0);-ms-transform:matrix(0.288617,0.005772,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.288617,0.005772,-0.004999,0.249950,0,0);}
.m2_c01006{transform:matrix(0.290652,0.007557,-0.006498,0.249916,0,0);-ms-transform:matrix(0.290652,0.007557,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.290652,0.007557,-0.006498,0.249916,0,0);}
.m3_c01006{transform:matrix(0.290867,0.007563,-0.006498,0.249916,0,0);-ms-transform:matrix(0.290867,0.007563,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.290867,0.007563,-0.006498,0.249916,0,0);}
.m19_c01006{transform:matrix(0.296086,0.005922,-0.004999,0.249950,0,0);-ms-transform:matrix(0.296086,0.005922,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.296086,0.005922,-0.004999,0.249950,0,0);}
.m1d_c01006{transform:matrix(0.299010,0.005980,-0.004999,0.249950,0,0);-ms-transform:matrix(0.299010,0.005980,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.299010,0.005980,-0.004999,0.249950,0,0);}
.m1c_c01006{transform:matrix(0.300895,0.006018,-0.004999,0.249950,0,0);-ms-transform:matrix(0.300895,0.006018,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.300895,0.006018,-0.004999,0.249950,0,0);}
.m0_c01006{transform:matrix(0.445465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445465,0.000000,0.000000,0.250000,0,0);}
.m5_c01006{transform:matrix(1.056996,0.025368,-0.005998,0.249928,0,0);-ms-transform:matrix(1.056996,0.025368,-0.005998,0.249928,0,0);-webkit-transform:matrix(1.056996,0.025368,-0.005998,0.249928,0,0);}
.m6_c01006{transform:matrix(2.901604,0.069639,-0.005998,0.249928,0,0);-ms-transform:matrix(2.901604,0.069639,-0.005998,0.249928,0,0);-webkit-transform:matrix(2.901604,0.069639,-0.005998,0.249928,0,0);}
.v0_c01006{vertical-align:0.000000px;}
.ls0_c01006{letter-spacing:0.000000px;}
.sc__c01006{text-shadow:none;}
.sc0_c01006{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__c01006{-webkit-text-stroke:0px transparent;}
.sc0_c01006{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01006{word-spacing:0.000000px;}
.fc0_c01006{color:transparent;}
.fs2_c01006{font-size:30.008639px;}
.fs5_c01006{font-size:66.013199px;}
.fs1_c01006{font-size:66.022304px;}
.fs6_c01006{font-size:72.014399px;}
.fs4_c01006{font-size:78.015598px;}
.fs7_c01006{font-size:84.016798px;}
.fs0_c01006{font-size:90.000000px;}
.fs8_c01006{font-size:90.008820px;}
.fs3_c01006{font-size:96.019198px;}
.y0_c01006{bottom:0.000000px;}
.y43_c01006{bottom:786.063399px;}
.y42_c01006{bottom:786.853335px;}
.y41_c01006{bottom:787.772148px;}
.y40_c01006{bottom:788.225643px;}
.y3f_c01006{bottom:788.532012px;}
.y3e_c01006{bottom:789.155922px;}
.y3d_c01006{bottom:789.454458px;}
.y3c_c01006{bottom:789.934686px;}
.y3b_c01006{bottom:790.993254px;}
.y3a_c01006{bottom:791.446812px;}
.y39_c01006{bottom:791.926830px;}
.y38_c01006{bottom:792.376335px;}
.y37_c01006{bottom:792.993000px;}
.y36_c01006{bottom:879.133920px;}
.y35_c01006{bottom:879.838560px;}
.y34_c01006{bottom:880.239120px;}
.y33_c01006{bottom:880.841940px;}
.y32_c01006{bottom:881.626890px;}
.y31_c01006{bottom:882.599310px;}
.y30_c01006{bottom:908.152440px;}
.y2f_c01006{bottom:908.991180px;}
.y2e_c01006{bottom:909.817530px;}
.y2d_c01006{bottom:910.311330px;}
.y2c_c01006{bottom:911.307570px;}
.y2b_c01006{bottom:911.786910px;}
.y2a_c01006{bottom:912.297960px;}
.y29_c01006{bottom:912.800250px;}
.y28_c01006{bottom:913.798050px;}
.y27_c01006{bottom:914.292330px;}
.y26_c01006{bottom:914.943300px;}
.y25_c01006{bottom:916.417620px;}
.y24_c01006{bottom:917.709330px;}
.y23_c01006{bottom:946.049430px;}
.y22_c01006{bottom:946.531320px;}
.y21_c01006{bottom:946.905960px;}
.y20_c01006{bottom:947.509560px;}
.y1f_c01006{bottom:947.869020px;}
.y1e_c01006{bottom:948.962550px;}
.y1d_c01006{bottom:950.049600px;}
.y1c_c01006{bottom:950.536290px;}
.y1b_c01006{bottom:951.376980px;}
.y1a_c01006{bottom:952.455390px;}
.y19_c01006{bottom:952.814490px;}
.y18_c01006{bottom:981.076530px;}
.y17_c01006{bottom:981.933990px;}
.y16_c01006{bottom:982.355490px;}
.y15_c01006{bottom:984.213330px;}
.y14_c01006{bottom:984.649410px;}
.y13_c01006{bottom:985.791000px;}
.y12_c01006{bottom:986.367750px;}
.y11_c01006{bottom:987.370380px;}
.y10_c01006{bottom:988.194960px;}
.yf_c01006{bottom:1013.744790px;}
.ye_c01006{bottom:1015.954890px;}
.yd_c01006{bottom:1017.072360px;}
.yc_c01006{bottom:1018.892760px;}
.yb_c01006{bottom:1019.492250px;}
.ya_c01006{bottom:1022.581740px;}
.y9_c01006{bottom:1023.229500px;}
.y8_c01006{bottom:1025.194500px;}
.y7_c01006{bottom:1095.727404px;}
.y6_c01006{bottom:1098.093000px;}
.y5_c01006{bottom:1108.422546px;}
.y4_c01006{bottom:1111.547382px;}
.y3_c01006{bottom:1113.309519px;}
.y2_c01006{bottom:1113.745500px;}
.y1_c01006{bottom:1191.394500px;}
.h4_c01006{height:30.008639px;}
.h7_c01006{height:66.013199px;}
.h3_c01006{height:66.022304px;}
.h8_c01006{height:72.014399px;}
.h6_c01006{height:78.015598px;}
.h9_c01006{height:84.016798px;}
.h2_c01006{height:90.000000px;}
.ha_c01006{height:90.008820px;}
.h5_c01006{height:96.019198px;}
.h0_c01006{height:1246.320000px;}
.h1_c01006{height:1246.500000px;}
.w0_c01006{width:896.100000px;}
.w1_c01006{width:896.250000px;}
.x0_c01006{left:0.000000px;}
.x31_c01006{left:154.741500px;}
.x2c_c01006{left:156.998430px;}
.x10_c01006{left:158.577630px;}
.x18_c01006{left:190.454370px;}
.x32_c01006{left:198.789000px;}
.x8_c01006{left:212.787000px;}
.x11_c01006{left:222.015510px;}
.x33_c01006{left:230.896500px;}
.x20_c01006{left:243.843750px;}
.x2d_c01006{left:264.968160px;}
.x19_c01006{left:288.492510px;}
.x34_c01006{left:297.580500px;}
.x12_c01006{left:299.157810px;}
.x9_c01006{left:311.037000px;}
.x2_c01006{left:315.514500px;}
.x3_c01006{left:332.283000px;}
.x6_c01006{left:333.847500px;}
.x21_c01006{left:342.169590px;}
.xa_c01006{left:343.425000px;}
.x2e_c01006{left:352.234860px;}
.x1a_c01006{left:364.890750px;}
.x35_c01006{left:373.192500px;}
.x22_c01006{left:385.597440px;}
.x1_c01006{left:392.580000px;}
.x4_c01006{left:400.057500px;}
.x36_c01006{left:407.494500px;}
.x1b_c01006{left:409.183230px;}
.x23_c01006{left:418.564740px;}
.x37_c01006{left:428.818500px;}
.x13_c01006{left:431.293290px;}
.x7_c01006{left:432.414000px;}
.x2f_c01006{left:463.778400px;}
.x14_c01006{left:464.801970px;}
.x38_c01006{left:473.383500px;}
.x24_c01006{left:485.036370px;}
.x39_c01006{left:495.267000px;}
.xb_c01006{left:497.899500px;}
.x1c_c01006{left:508.028520px;}
.x25_c01006{left:518.479200px;}
.x5_c01006{left:520.243500px;}
.xc_c01006{left:527.874000px;}
.x30_c01006{left:542.077620px;}
.x26_c01006{left:552.510090px;}
.x27_c01006{left:584.430270px;}
.x3a_c01006{left:593.289000px;}
.x15_c01006{left:607.663950px;}
.xd_c01006{left:618.894000px;}
.x16_c01006{left:640.068480px;}
.x3b_c01006{left:649.713000px;}
.x28_c01006{left:650.823900px;}
.xe_c01006{left:674.767500px;}
.x29_c01006{left:683.767200px;}
.x1d_c01006{left:694.966650px;}
.x17_c01006{left:705.975690px;}
.x1e_c01006{left:729.004770px;}
.x2a_c01006{left:738.890220px;}
.x1f_c01006{left:772.757130px;}
.xf_c01006{left:785.272500px;}
.x2b_c01006{left:794.782800px;}
@media print{
.v0_c01006{vertical-align:0.000000pt;}
.ls0_c01006{letter-spacing:0.000000pt;}
.ws0_c01006{word-spacing:0.000000pt;}
.fs2_c01006{font-size:26.674346pt;}
.fs5_c01006{font-size:58.678399pt;}
.fs1_c01006{font-size:58.686493pt;}
.fs6_c01006{font-size:64.012799pt;}
.fs4_c01006{font-size:69.347199pt;}
.fs7_c01006{font-size:74.681599pt;}
.fs0_c01006{font-size:80.000000pt;}
.fs8_c01006{font-size:80.007840pt;}
.fs3_c01006{font-size:85.350398pt;}
.y0_c01006{bottom:0.000000pt;}
.y43_c01006{bottom:698.723021pt;}
.y42_c01006{bottom:699.425187pt;}
.y41_c01006{bottom:700.241909pt;}
.y40_c01006{bottom:700.645016pt;}
.y3f_c01006{bottom:700.917344pt;}
.y3e_c01006{bottom:701.471931pt;}
.y3d_c01006{bottom:701.737296pt;}
.y3c_c01006{bottom:702.164165pt;}
.y3b_c01006{bottom:703.105115pt;}
.y3a_c01006{bottom:703.508277pt;}
.y39_c01006{bottom:703.934960pt;}
.y38_c01006{bottom:704.334520pt;}
.y37_c01006{bottom:704.882667pt;}
.y36_c01006{bottom:781.452373pt;}
.y35_c01006{bottom:782.078720pt;}
.y34_c01006{bottom:782.434773pt;}
.y33_c01006{bottom:782.970613pt;}
.y32_c01006{bottom:783.668347pt;}
.y31_c01006{bottom:784.532720pt;}
.y30_c01006{bottom:807.246613pt;}
.y2f_c01006{bottom:807.992160pt;}
.y2e_c01006{bottom:808.726693pt;}
.y2d_c01006{bottom:809.165627pt;}
.y2c_c01006{bottom:810.051173pt;}
.y2b_c01006{bottom:810.477253pt;}
.y2a_c01006{bottom:810.931520pt;}
.y29_c01006{bottom:811.378000pt;}
.y28_c01006{bottom:812.264933pt;}
.y27_c01006{bottom:812.704293pt;}
.y26_c01006{bottom:813.282933pt;}
.y25_c01006{bottom:814.593440pt;}
.y24_c01006{bottom:815.741627pt;}
.y23_c01006{bottom:840.932827pt;}
.y22_c01006{bottom:841.361173pt;}
.y21_c01006{bottom:841.694187pt;}
.y20_c01006{bottom:842.230720pt;}
.y1f_c01006{bottom:842.550240pt;}
.y1e_c01006{bottom:843.522267pt;}
.y1d_c01006{bottom:844.488533pt;}
.y1c_c01006{bottom:844.921147pt;}
.y1b_c01006{bottom:845.668427pt;}
.y1a_c01006{bottom:846.627013pt;}
.y19_c01006{bottom:846.946213pt;}
.y18_c01006{bottom:872.068027pt;}
.y17_c01006{bottom:872.830213pt;}
.y16_c01006{bottom:873.204880pt;}
.y15_c01006{bottom:874.856293pt;}
.y14_c01006{bottom:875.243920pt;}
.y13_c01006{bottom:876.258667pt;}
.y12_c01006{bottom:876.771333pt;}
.y11_c01006{bottom:877.662560pt;}
.y10_c01006{bottom:878.395520pt;}
.yf_c01006{bottom:901.106480pt;}
.ye_c01006{bottom:903.071013pt;}
.yd_c01006{bottom:904.064320pt;}
.yc_c01006{bottom:905.682453pt;}
.yb_c01006{bottom:906.215333pt;}
.ya_c01006{bottom:908.961547pt;}
.y9_c01006{bottom:909.537333pt;}
.y8_c01006{bottom:911.284000pt;}
.y7_c01006{bottom:973.979915pt;}
.y6_c01006{bottom:976.082667pt;}
.y5_c01006{bottom:985.264485pt;}
.y4_c01006{bottom:988.042117pt;}
.y3_c01006{bottom:989.608461pt;}
.y2_c01006{bottom:989.996000pt;}
.y1_c01006{bottom:1059.017333pt;}
.h4_c01006{height:26.674346pt;}
.h7_c01006{height:58.678399pt;}
.h3_c01006{height:58.686493pt;}
.h8_c01006{height:64.012799pt;}
.h6_c01006{height:69.347199pt;}
.h9_c01006{height:74.681599pt;}
.h2_c01006{height:80.000000pt;}
.ha_c01006{height:80.007840pt;}
.h5_c01006{height:85.350398pt;}
.h0_c01006{height:1107.840000pt;}
.h1_c01006{height:1108.000000pt;}
.w0_c01006{width:796.533333pt;}
.w1_c01006{width:796.666667pt;}
.x0_c01006{left:0.000000pt;}
.x31_c01006{left:137.548000pt;}
.x2c_c01006{left:139.554160pt;}
.x10_c01006{left:140.957893pt;}
.x18_c01006{left:169.292773pt;}
.x32_c01006{left:176.701333pt;}
.x8_c01006{left:189.144000pt;}
.x11_c01006{left:197.347120pt;}
.x33_c01006{left:205.241333pt;}
.x20_c01006{left:216.750000pt;}
.x2d_c01006{left:235.527253pt;}
.x19_c01006{left:256.437787pt;}
.x34_c01006{left:264.516000pt;}
.x12_c01006{left:265.918053pt;}
.x9_c01006{left:276.477333pt;}
.x2_c01006{left:280.457333pt;}
.x3_c01006{left:295.362667pt;}
.x6_c01006{left:296.753333pt;}
.x21_c01006{left:304.150747pt;}
.xa_c01006{left:305.266667pt;}
.x2e_c01006{left:313.097653pt;}
.x1a_c01006{left:324.347333pt;}
.x35_c01006{left:331.726667pt;}
.x22_c01006{left:342.753280pt;}
.x1_c01006{left:348.960000pt;}
.x4_c01006{left:355.606667pt;}
.x36_c01006{left:362.217333pt;}
.x1b_c01006{left:363.718427pt;}
.x23_c01006{left:372.057547pt;}
.x37_c01006{left:381.172000pt;}
.x13_c01006{left:383.371813pt;}
.x7_c01006{left:384.368000pt;}
.x2f_c01006{left:412.247467pt;}
.x14_c01006{left:413.157307pt;}
.x38_c01006{left:420.785333pt;}
.x24_c01006{left:431.143440pt;}
.x39_c01006{left:440.237333pt;}
.xb_c01006{left:442.577333pt;}
.x1c_c01006{left:451.580907pt;}
.x25_c01006{left:460.870400pt;}
.x5_c01006{left:462.438667pt;}
.xc_c01006{left:469.221333pt;}
.x30_c01006{left:481.846773pt;}
.x26_c01006{left:491.120080pt;}
.x27_c01006{left:519.493573pt;}
.x3a_c01006{left:527.368000pt;}
.x15_c01006{left:540.145733pt;}
.xd_c01006{left:550.128000pt;}
.x16_c01006{left:568.949760pt;}
.x3b_c01006{left:577.522667pt;}
.x28_c01006{left:578.510133pt;}
.xe_c01006{left:599.793333pt;}
.x29_c01006{left:607.793067pt;}
.x1d_c01006{left:617.748133pt;}
.x17_c01006{left:627.533947pt;}
.x1e_c01006{left:648.004240pt;}
.x2a_c01006{left:656.791307pt;}
.x1f_c01006{left:686.895227pt;}
.xf_c01006{left:698.020000pt;}
.x2b_c01006{left:706.473600pt;}
}





/* 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_c01007 {
    display:none;
  }
  .loading-indicator_c01007.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01007 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_c01007 { 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_c01007" -> "#page-container .classname_c01007")
 */
.pf_c01007 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01007 { /* 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_c01007.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01007 { /* 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_c01007 { /* 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_c01007 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01007 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01007 {overflow:visible;}
  }
}
.c_c01007 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01007 { /* 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_c01007:after { /* webkit #35443 */
  content: '';
}
.t_c01007:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01007 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 */
}
.__c01007 { /* 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_c01007 { /* info for Javascript */
  display:none;
}
.l_c01007 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01007 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01007 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01007: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_c01007 {
    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_c01007.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01007.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_c01007 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01007{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01007;src:url('chunks/assets/font_944db81570d4ec07251d83b9.woff2')format("woff");}.ff1_c01007{font-family:ff1_c01007;line-height:1.000000;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;}
.ma_c01007{transform:matrix(0.093675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093675,0.000000,0.000000,0.250000,0,0);}
.m5_c01007{transform:matrix(0.113445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113445,0.000000,0.000000,0.250000,0,0);}
.m6_c01007{transform:matrix(0.144045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144045,0.000000,0.000000,0.250000,0,0);}
.m7_c01007{transform:matrix(0.174255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174255,0.000000,0.000000,0.250000,0,0);}
.m8_c01007{transform:matrix(0.198650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198650,0.000000,0.000000,0.250000,0,0);}
.m9_c01007{transform:matrix(0.302755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302755,0.000000,0.000000,0.250000,0,0);}
.m4_c01007{transform:matrix(0.350180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350180,0.000000,0.000000,0.250000,0,0);}
.md_c01007{transform:matrix(0.351460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351460,0.000000,0.000000,0.250000,0,0);}
.me_c01007{transform:matrix(0.371080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371080,0.000000,0.000000,0.250000,0,0);}
.m0_c01007{transform:matrix(0.372405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372405,0.000000,0.000000,0.250000,0,0);}
.mb_c01007{transform:matrix(0.600085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.600085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.600085,0.000000,0.000000,0.250000,0,0);}
.m3_c01007{transform:matrix(0.708980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.708980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.708980,0.000000,0.000000,0.250000,0,0);}
.m2_c01007{transform:matrix(0.717010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717010,0.000000,0.000000,0.250000,0,0);}
.mc_c01007{transform:matrix(0.806040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.806040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.806040,0.000000,0.000000,0.250000,0,0);}
.mf_c01007{transform:matrix(0.959295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.959295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.959295,0.000000,0.000000,0.250000,0,0);}
.m1_c01007{transform:matrix(1.642345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.642345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.642345,0.000000,0.000000,0.250000,0,0);}
.v0_c01007{vertical-align:0.000000px;}
.ls0_c01007{letter-spacing:0.000000px;}
.sc__c01007{text-shadow:none;}
.sc0_c01007{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__c01007{-webkit-text-stroke:0px transparent;}
.sc0_c01007{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01007{word-spacing:0.000000px;}
.fc0_c01007{color:transparent;}
.fs1_c01007{font-size:18.000000px;}
.fs3_c01007{font-size:24.000000px;}
.fs0_c01007{font-size:30.000000px;}
.fs2_c01007{font-size:138.000000px;}
.y0_c01007{bottom:0.000000px;}
.y7_c01007{bottom:405.402000px;}
.y6_c01007{bottom:405.675000px;}
.y5_c01007{bottom:409.042500px;}
.y4_c01007{bottom:863.730000px;}
.y3_c01007{bottom:983.340000px;}
.y2_c01007{bottom:1097.416500px;}
.y1_c01007{bottom:1103.220000px;}
.h3_c01007{height:18.000000px;}
.h5_c01007{height:24.000000px;}
.h2_c01007{height:30.000000px;}
.h4_c01007{height:138.000000px;}
.h0_c01007{height:1246.320000px;}
.h1_c01007{height:1246.500000px;}
.w0_c01007{width:896.100000px;}
.w1_c01007{width:896.250000px;}
.x0_c01007{left:0.000000px;}
.x2_c01007{left:186.840000px;}
.x1_c01007{left:189.540000px;}
.x4_c01007{left:277.290000px;}
.x5_c01007{left:302.130000px;}
.x6_c01007{left:332.640000px;}
.x7_c01007{left:420.120000px;}
.x8_c01007{left:456.840000px;}
.x9_c01007{left:560.250000px;}
.xa_c01007{left:612.090000px;}
.xd_c01007{left:616.140000px;}
.xe_c01007{left:625.320000px;}
.xb_c01007{left:630.450000px;}
.xc_c01007{left:655.290000px;}
.x3_c01007{left:883.170000px;}
@media print{
.v0_c01007{vertical-align:0.000000pt;}
.ls0_c01007{letter-spacing:0.000000pt;}
.ws0_c01007{word-spacing:0.000000pt;}
.fs1_c01007{font-size:16.000000pt;}
.fs3_c01007{font-size:21.333333pt;}
.fs0_c01007{font-size:26.666667pt;}
.fs2_c01007{font-size:122.666667pt;}
.y0_c01007{bottom:0.000000pt;}
.y7_c01007{bottom:360.357333pt;}
.y6_c01007{bottom:360.600000pt;}
.y5_c01007{bottom:363.593333pt;}
.y4_c01007{bottom:767.760000pt;}
.y3_c01007{bottom:874.080000pt;}
.y2_c01007{bottom:975.481333pt;}
.y1_c01007{bottom:980.640000pt;}
.h3_c01007{height:16.000000pt;}
.h5_c01007{height:21.333333pt;}
.h2_c01007{height:26.666667pt;}
.h4_c01007{height:122.666667pt;}
.h0_c01007{height:1107.840000pt;}
.h1_c01007{height:1108.000000pt;}
.w0_c01007{width:796.533333pt;}
.w1_c01007{width:796.666667pt;}
.x0_c01007{left:0.000000pt;}
.x2_c01007{left:166.080000pt;}
.x1_c01007{left:168.480000pt;}
.x4_c01007{left:246.480000pt;}
.x5_c01007{left:268.560000pt;}
.x6_c01007{left:295.680000pt;}
.x7_c01007{left:373.440000pt;}
.x8_c01007{left:406.080000pt;}
.x9_c01007{left:498.000000pt;}
.xa_c01007{left:544.080000pt;}
.xd_c01007{left:547.680000pt;}
.xe_c01007{left:555.840000pt;}
.xb_c01007{left:560.400000pt;}
.xc_c01007{left:582.480000pt;}
.x3_c01007{left:785.040000pt;}
}





/* 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_c01008 {
    display:none;
  }
  .loading-indicator_c01008.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01008 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_c01008 { 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_c01008" -> "#page-container .classname_c01008")
 */
.pf_c01008 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01008 { /* 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_c01008.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01008 { /* 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_c01008 { /* 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_c01008 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01008 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01008 {overflow:visible;}
  }
}
.c_c01008 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01008 { /* 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_c01008:after { /* webkit #35443 */
  content: '';
}
.t_c01008:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01008 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 */
}
.__c01008 { /* 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_c01008 { /* info for Javascript */
  display:none;
}
.l_c01008 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01008 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01008 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01008: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_c01008 {
    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_c01008.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01008.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_c01008 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01008{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01008;src:url('chunks/assets/font_7ef351174269f1343c6a59b1.woff2')format("woff");}.ff1_c01008{font-family:ff1_c01008;line-height:1.000000;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;}
.m2_c01008{transform:matrix(0.137025,0.008924,-0.016248,0.249471,0,0);-ms-transform:matrix(0.137025,0.008924,-0.016248,0.249471,0,0);-webkit-transform:matrix(0.137025,0.008924,-0.016248,0.249471,0,0);}
.m1_c01008{transform:matrix(0.250600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250600,0.000000,0.000000,0.250000,0,0);}
.m6_c01008{transform:matrix(0.262053,0.014704,-0.014006,0.249607,0,0);-ms-transform:matrix(0.262053,0.014704,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.262053,0.014704,-0.014006,0.249607,0,0);}
.m4_c01008{transform:matrix(0.269311,0.015112,-0.014006,0.249607,0,0);-ms-transform:matrix(0.269311,0.015112,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.269311,0.015112,-0.014006,0.249607,0,0);}
.m3_c01008{transform:matrix(0.274449,0.017875,-0.016248,0.249471,0,0);-ms-transform:matrix(0.274449,0.017875,-0.016248,0.249471,0,0);-webkit-transform:matrix(0.274449,0.017875,-0.016248,0.249471,0,0);}
.md_c01008{transform:matrix(0.277550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277550,0.000000,0.000000,0.250000,0,0);}
.m5_c01008{transform:matrix(0.278372,0.015620,-0.014006,0.249607,0,0);-ms-transform:matrix(0.278372,0.015620,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.278372,0.015620,-0.014006,0.249607,0,0);}
.m13_c01008{transform:matrix(0.289565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289565,0.000000,0.000000,0.250000,0,0);}
.m10_c01008{transform:matrix(0.294741,0.015047,-0.012746,0.249675,0,0);-ms-transform:matrix(0.294741,0.015047,-0.012746,0.249675,0,0);-webkit-transform:matrix(0.294741,0.015047,-0.012746,0.249675,0,0);}
.m11_c01008{transform:matrix(0.302591,0.015448,-0.012746,0.249675,0,0);-ms-transform:matrix(0.302591,0.015448,-0.012746,0.249675,0,0);-webkit-transform:matrix(0.302591,0.015448,-0.012746,0.249675,0,0);}
.mf_c01008{transform:matrix(0.306875,0.015666,-0.012746,0.249675,0,0);-ms-transform:matrix(0.306875,0.015666,-0.012746,0.249675,0,0);-webkit-transform:matrix(0.306875,0.015666,-0.012746,0.249675,0,0);}
.mb_c01008{transform:matrix(0.326269,0.017636,-0.013494,0.249636,0,0);-ms-transform:matrix(0.326269,0.017636,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.326269,0.017636,-0.013494,0.249636,0,0);}
.m0_c01008{transform:matrix(0.389405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389405,0.000000,0.000000,0.250000,0,0);}
.mc_c01008{transform:matrix(0.437451,0.023646,-0.013494,0.249636,0,0);-ms-transform:matrix(0.437451,0.023646,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.437451,0.023646,-0.013494,0.249636,0,0);}
.me_c01008{transform:matrix(0.608967,0.031088,-0.012746,0.249675,0,0);-ms-transform:matrix(0.608967,0.031088,-0.012746,0.249675,0,0);-webkit-transform:matrix(0.608967,0.031088,-0.012746,0.249675,0,0);}
.m12_c01008{transform:matrix(1.085725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.085725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.085725,0.000000,0.000000,0.250000,0,0);}
.m7_c01008{transform:matrix(1.132102,0.061195,-0.013494,0.249636,0,0);-ms-transform:matrix(1.132102,0.061195,-0.013494,0.249636,0,0);-webkit-transform:matrix(1.132102,0.061195,-0.013494,0.249636,0,0);}
.ma_c01008{transform:matrix(1.210408,0.065427,-0.013494,0.249636,0,0);-ms-transform:matrix(1.210408,0.065427,-0.013494,0.249636,0,0);-webkit-transform:matrix(1.210408,0.065427,-0.013494,0.249636,0,0);}
.m9_c01008{transform:matrix(1.231218,0.066552,-0.013494,0.249636,0,0);-ms-transform:matrix(1.231218,0.066552,-0.013494,0.249636,0,0);-webkit-transform:matrix(1.231218,0.066552,-0.013494,0.249636,0,0);}
.m8_c01008{transform:matrix(1.348826,0.072910,-0.013494,0.249636,0,0);-ms-transform:matrix(1.348826,0.072910,-0.013494,0.249636,0,0);-webkit-transform:matrix(1.348826,0.072910,-0.013494,0.249636,0,0);}
.v0_c01008{vertical-align:0.000000px;}
.ls0_c01008{letter-spacing:0.000000px;}
.sc__c01008{text-shadow:none;}
.sc0_c01008{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__c01008{-webkit-text-stroke:0px transparent;}
.sc0_c01008{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01008{word-spacing:0.000000px;}
.fc0_c01008{color:transparent;}
.fs1_c01008{font-size:18.000000px;}
.fs7_c01008{font-size:24.000000px;}
.fs4_c01008{font-size:24.011001px;}
.fs0_c01008{font-size:42.000000px;}
.fs5_c01008{font-size:66.000000px;}
.fs6_c01008{font-size:66.019863px;}
.fs3_c01008{font-size:71.969033px;}
.fs2_c01008{font-size:84.009617px;}
.y0_c01008{bottom:0.000000px;}
.y13_c01008{bottom:135.270000px;}
.y12_c01008{bottom:994.441593px;}
.y11_c01008{bottom:999.514996px;}
.y10_c01008{bottom:1005.091464px;}
.yf_c01008{bottom:1009.591500px;}
.ye_c01008{bottom:1009.654500px;}
.yd_c01008{bottom:1067.668485px;}
.yc_c01008{bottom:1068.204786px;}
.yb_c01008{bottom:1070.570391px;}
.ya_c01008{bottom:1072.980465px;}
.y9_c01008{bottom:1076.498538px;}
.y8_c01008{bottom:1079.479500px;}
.y7_c01008{bottom:1084.399812px;}
.y6_c01008{bottom:1090.603044px;}
.y5_c01008{bottom:1094.892000px;}
.y4_c01008{bottom:1181.690685px;}
.y3_c01008{bottom:1183.156500px;}
.y1_c01008{bottom:1215.540000px;}
.y2_c01008{bottom:1217.022000px;}
.h3_c01008{height:18.000000px;}
.h9_c01008{height:24.000000px;}
.h6_c01008{height:24.011001px;}
.h2_c01008{height:42.000000px;}
.h7_c01008{height:66.000000px;}
.h8_c01008{height:66.019863px;}
.h5_c01008{height:71.969033px;}
.h4_c01008{height:84.009617px;}
.h0_c01008{height:1246.320000px;}
.h1_c01008{height:1246.500000px;}
.w0_c01008{width:896.100000px;}
.w1_c01008{width:896.250000px;}
.x0_c01008{left:0.000000px;}
.x1_c01008{left:38.340000px;}
.xd_c01008{left:217.080000px;}
.xe_c01008{left:281.494500px;}
.x5_c01008{left:361.857000px;}
.xf_c01008{left:369.642264px;}
.x8_c01008{left:417.408297px;}
.x3_c01008{left:432.295500px;}
.x6_c01008{left:438.292323px;}
.x4_c01008{left:454.801398px;}
.x2_c01008{left:458.190000px;}
.x10_c01008{left:478.875421px;}
.x9_c01008{left:482.492647px;}
.xa_c01008{left:527.079016px;}
.x7_c01008{left:548.842779px;}
.xb_c01008{left:570.842709px;}
.x11_c01008{left:578.254443px;}
.xc_c01008{left:580.764278px;}
.x12_c01008{left:891.000000px;}
.x13_c01008{left:894.240000px;}
@media print{
.v0_c01008{vertical-align:0.000000pt;}
.ls0_c01008{letter-spacing:0.000000pt;}
.ws0_c01008{word-spacing:0.000000pt;}
.fs1_c01008{font-size:16.000000pt;}
.fs7_c01008{font-size:21.333333pt;}
.fs4_c01008{font-size:21.343112pt;}
.fs0_c01008{font-size:37.333333pt;}
.fs5_c01008{font-size:58.666667pt;}
.fs6_c01008{font-size:58.684323pt;}
.fs3_c01008{font-size:63.972474pt;}
.fs2_c01008{font-size:74.675216pt;}
.y0_c01008{bottom:0.000000pt;}
.y13_c01008{bottom:120.240000pt;}
.y12_c01008{bottom:883.948083pt;}
.y11_c01008{bottom:888.457775pt;}
.y10_c01008{bottom:893.414635pt;}
.yf_c01008{bottom:897.414667pt;}
.ye_c01008{bottom:897.470667pt;}
.yd_c01008{bottom:949.038653pt;}
.yc_c01008{bottom:949.515365pt;}
.yb_c01008{bottom:951.618125pt;}
.ya_c01008{bottom:953.760413pt;}
.y9_c01008{bottom:956.887589pt;}
.y8_c01008{bottom:959.537333pt;}
.y7_c01008{bottom:963.910944pt;}
.y6_c01008{bottom:969.424928pt;}
.y5_c01008{bottom:973.237333pt;}
.y4_c01008{bottom:1050.391720pt;}
.y3_c01008{bottom:1051.694667pt;}
.y1_c01008{bottom:1080.480000pt;}
.y2_c01008{bottom:1081.797333pt;}
.h3_c01008{height:16.000000pt;}
.h9_c01008{height:21.333333pt;}
.h6_c01008{height:21.343112pt;}
.h2_c01008{height:37.333333pt;}
.h7_c01008{height:58.666667pt;}
.h8_c01008{height:58.684323pt;}
.h5_c01008{height:63.972474pt;}
.h4_c01008{height:74.675216pt;}
.h0_c01008{height:1107.840000pt;}
.h1_c01008{height:1108.000000pt;}
.w0_c01008{width:796.533333pt;}
.w1_c01008{width:796.666667pt;}
.x0_c01008{left:0.000000pt;}
.x1_c01008{left:34.080000pt;}
.xd_c01008{left:192.960000pt;}
.xe_c01008{left:250.217333pt;}
.x5_c01008{left:321.650667pt;}
.xf_c01008{left:328.570901pt;}
.x8_c01008{left:371.029597pt;}
.x3_c01008{left:384.262667pt;}
.x6_c01008{left:389.593176pt;}
.x4_c01008{left:404.267909pt;}
.x2_c01008{left:407.280000pt;}
.x10_c01008{left:425.667041pt;}
.x9_c01008{left:428.882353pt;}
.xa_c01008{left:468.514681pt;}
.x7_c01008{left:487.860248pt;}
.xb_c01008{left:507.415741pt;}
.x11_c01008{left:514.003949pt;}
.xc_c01008{left:516.234913pt;}
.x12_c01008{left:792.000000pt;}
.x13_c01008{left:794.880000pt;}
}





/* 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_c01009 {
    display:none;
  }
  .loading-indicator_c01009.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01009 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_c01009 { 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_c01009" -> "#page-container .classname_c01009")
 */
.pf_c01009 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01009 { /* 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_c01009.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01009 { /* 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_c01009 { /* 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_c01009 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01009 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01009 {overflow:visible;}
  }
}
.c_c01009 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01009 { /* 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_c01009:after { /* webkit #35443 */
  content: '';
}
.t_c01009:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01009 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 */
}
.__c01009 { /* 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_c01009 { /* info for Javascript */
  display:none;
}
.l_c01009 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01009 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01009 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01009: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_c01009 {
    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_c01009.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01009.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_c01009 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01009{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01009;src:url('chunks/assets/font_3c6ef625a98976db32dc82f4.woff2')format("woff");}.ff1_c01009{font-family:ff1_c01009;line-height:1.000000;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;}
.m0_c01009{transform:matrix(0.657320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.657320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.657320,0.000000,0.000000,0.250000,0,0);}
.v0_c01009{vertical-align:0.000000px;}
.ls0_c01009{letter-spacing:0.000000px;}
.sc__c01009{text-shadow:none;}
.sc0_c01009{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__c01009{-webkit-text-stroke:0px transparent;}
.sc0_c01009{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01009{word-spacing:0.000000px;}
.fc0_c01009{color:transparent;}
.fs0_c01009{font-size:18.000000px;}
.y0_c01009{bottom:0.000000px;}
.y1_c01009{bottom:850.230000px;}
.h2_c01009{height:18.000000px;}
.h0_c01009{height:1246.320000px;}
.h1_c01009{height:1246.500000px;}
.w0_c01009{width:896.100000px;}
.w1_c01009{width:896.250000px;}
.x0_c01009{left:0.000000px;}
.x1_c01009{left:889.920000px;}
@media print{
.v0_c01009{vertical-align:0.000000pt;}
.ls0_c01009{letter-spacing:0.000000pt;}
.ws0_c01009{word-spacing:0.000000pt;}
.fs0_c01009{font-size:16.000000pt;}
.y0_c01009{bottom:0.000000pt;}
.y1_c01009{bottom:755.760000pt;}
.h2_c01009{height:16.000000pt;}
.h0_c01009{height:1107.840000pt;}
.h1_c01009{height:1108.000000pt;}
.w0_c01009{width:796.533333pt;}
.w1_c01009{width:796.666667pt;}
.x0_c01009{left:0.000000pt;}
.x1_c01009{left:791.040000pt;}
}





/* 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_c01010 {
    display:none;
  }
  .loading-indicator_c01010.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01010 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_c01010 { 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_c01010" -> "#page-container .classname_c01010")
 */
.pf_c01010 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01010 { /* 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_c01010.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01010 { /* 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_c01010 { /* 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_c01010 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01010 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01010 {overflow:visible;}
  }
}
.c_c01010 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01010 { /* 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_c01010:after { /* webkit #35443 */
  content: '';
}
.t_c01010:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01010 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 */
}
.__c01010 { /* 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_c01010 { /* info for Javascript */
  display:none;
}
.l_c01010 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01010 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01010 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01010: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_c01010 {
    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_c01010.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01010.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_c01010 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01010{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01010;src:url('chunks/assets/font_7c6b9abe6ee2a268480c528b.woff2')format("woff");}.ff1_c01010{font-family:ff1_c01010;line-height:1.000000;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;}
.m9_c01010{transform:matrix(0.115065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115065,0.000000,0.000000,0.250000,0,0);}
.m0_c01010{transform:matrix(0.117045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117045,0.000000,0.000000,0.250000,0,0);}
.m1c_c01010{transform:matrix(0.165348,0.001984,-0.003000,0.249982,0,0);-ms-transform:matrix(0.165348,0.001984,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.165348,0.001984,-0.003000,0.249982,0,0);}
.m16_c01010{transform:matrix(0.173807,0.002086,-0.003000,0.249982,0,0);-ms-transform:matrix(0.173807,0.002086,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.173807,0.002086,-0.003000,0.249982,0,0);}
.m1b_c01010{transform:matrix(0.176127,0.002114,-0.003000,0.249982,0,0);-ms-transform:matrix(0.176127,0.002114,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.176127,0.002114,-0.003000,0.249982,0,0);}
.m18_c01010{transform:matrix(0.183057,0.002197,-0.003000,0.249982,0,0);-ms-transform:matrix(0.183057,0.002197,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.183057,0.002197,-0.003000,0.249982,0,0);}
.m1e_c01010{transform:matrix(0.186047,0.002233,-0.003000,0.249982,0,0);-ms-transform:matrix(0.186047,0.002233,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.186047,0.002233,-0.003000,0.249982,0,0);}
.m1f_c01010{transform:matrix(0.192776,0.002313,-0.003000,0.249982,0,0);-ms-transform:matrix(0.192776,0.002313,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.192776,0.002313,-0.003000,0.249982,0,0);}
.m20_c01010{transform:matrix(0.193501,0.002322,-0.003000,0.249982,0,0);-ms-transform:matrix(0.193501,0.002322,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.193501,0.002322,-0.003000,0.249982,0,0);}
.m28_c01010{transform:matrix(0.194336,0.002332,-0.003000,0.249982,0,0);-ms-transform:matrix(0.194336,0.002332,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.194336,0.002332,-0.003000,0.249982,0,0);}
.m25_c01010{transform:matrix(0.195561,0.002347,-0.003000,0.249982,0,0);-ms-transform:matrix(0.195561,0.002347,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.195561,0.002347,-0.003000,0.249982,0,0);}
.md_c01010{transform:matrix(0.197896,0.002375,-0.003000,0.249982,0,0);-ms-transform:matrix(0.197896,0.002375,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.197896,0.002375,-0.003000,0.249982,0,0);}
.m1a_c01010{transform:matrix(0.200041,0.002400,-0.003000,0.249982,0,0);-ms-transform:matrix(0.200041,0.002400,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.200041,0.002400,-0.003000,0.249982,0,0);}
.m19_c01010{transform:matrix(0.201046,0.002413,-0.003000,0.249982,0,0);-ms-transform:matrix(0.201046,0.002413,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.201046,0.002413,-0.003000,0.249982,0,0);}
.m26_c01010{transform:matrix(0.205830,0.002470,-0.003000,0.249982,0,0);-ms-transform:matrix(0.205830,0.002470,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.205830,0.002470,-0.003000,0.249982,0,0);}
.m7_c01010{transform:matrix(0.206095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206095,0.000000,0.000000,0.250000,0,0);}
.m23_c01010{transform:matrix(0.206245,0.002475,-0.003000,0.249982,0,0);-ms-transform:matrix(0.206245,0.002475,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.206245,0.002475,-0.003000,0.249982,0,0);}
.m29_c01010{transform:matrix(0.208060,0.002497,-0.003000,0.249982,0,0);-ms-transform:matrix(0.208060,0.002497,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.208060,0.002497,-0.003000,0.249982,0,0);}
.m21_c01010{transform:matrix(0.215140,0.002582,-0.003000,0.249982,0,0);-ms-transform:matrix(0.215140,0.002582,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.215140,0.002582,-0.003000,0.249982,0,0);}
.m1d_c01010{transform:matrix(0.224359,0.002692,-0.003000,0.249982,0,0);-ms-transform:matrix(0.224359,0.002692,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.224359,0.002692,-0.003000,0.249982,0,0);}
.m13_c01010{transform:matrix(0.227669,0.002732,-0.003000,0.249982,0,0);-ms-transform:matrix(0.227669,0.002732,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.227669,0.002732,-0.003000,0.249982,0,0);}
.m44_c01010{transform:matrix(0.229262,0.001146,-0.001250,0.249997,0,0);-ms-transform:matrix(0.229262,0.001146,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.229262,0.001146,-0.001250,0.249997,0,0);}
.m48_c01010{transform:matrix(0.231622,0.001158,-0.001250,0.249997,0,0);-ms-transform:matrix(0.231622,0.001158,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.231622,0.001158,-0.001250,0.249997,0,0);}
.m42_c01010{transform:matrix(0.232592,0.001163,-0.001250,0.249997,0,0);-ms-transform:matrix(0.232592,0.001163,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.232592,0.001163,-0.001250,0.249997,0,0);}
.m24_c01010{transform:matrix(0.234973,0.002820,-0.003000,0.249982,0,0);-ms-transform:matrix(0.234973,0.002820,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.234973,0.002820,-0.003000,0.249982,0,0);}
.m22_c01010{transform:matrix(0.235563,0.002827,-0.003000,0.249982,0,0);-ms-transform:matrix(0.235563,0.002827,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.235563,0.002827,-0.003000,0.249982,0,0);}
.m27_c01010{transform:matrix(0.236418,0.002837,-0.003000,0.249982,0,0);-ms-transform:matrix(0.236418,0.002837,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.236418,0.002837,-0.003000,0.249982,0,0);}
.m6_c01010{transform:matrix(0.236480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236480,0.000000,0.000000,0.250000,0,0);}
.ma_c01010{transform:matrix(0.237330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237330,0.000000,0.000000,0.250000,0,0);}
.m39_c01010{transform:matrix(0.237726,0.001426,-0.001500,0.249996,0,0);-ms-transform:matrix(0.237726,0.001426,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.237726,0.001426,-0.001500,0.249996,0,0);}
.m2a_c01010{transform:matrix(0.237903,0.002855,-0.003000,0.249982,0,0);-ms-transform:matrix(0.237903,0.002855,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.237903,0.002855,-0.003000,0.249982,0,0);}
.m14_c01010{transform:matrix(0.239118,0.002869,-0.003000,0.249982,0,0);-ms-transform:matrix(0.239118,0.002869,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.239118,0.002869,-0.003000,0.249982,0,0);}
.m1_c01010{transform:matrix(0.240785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240785,0.000000,0.000000,0.250000,0,0);}
.m3b_c01010{transform:matrix(0.242046,0.001452,-0.001500,0.249996,0,0);-ms-transform:matrix(0.242046,0.001452,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.242046,0.001452,-0.001500,0.249996,0,0);}
.m4d_c01010{transform:matrix(0.243546,0.003410,-0.003500,0.249976,0,0);-ms-transform:matrix(0.243546,0.003410,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.243546,0.003410,-0.003500,0.249976,0,0);}
.m4_c01010{transform:matrix(0.244180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244180,0.000000,0.000000,0.250000,0,0);}
.m3f_c01010{transform:matrix(0.244292,0.001221,-0.001250,0.249997,0,0);-ms-transform:matrix(0.244292,0.001221,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.244292,0.001221,-0.001250,0.249997,0,0);}
.m2f_c01010{transform:matrix(0.245831,0.001475,-0.001500,0.249996,0,0);-ms-transform:matrix(0.245831,0.001475,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.245831,0.001475,-0.001500,0.249996,0,0);}
.m53_c01010{transform:matrix(0.246396,0.003450,-0.003500,0.249976,0,0);-ms-transform:matrix(0.246396,0.003450,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.246396,0.003450,-0.003500,0.249976,0,0);}
.m49_c01010{transform:matrix(0.246667,0.001233,-0.001250,0.249997,0,0);-ms-transform:matrix(0.246667,0.001233,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.246667,0.001233,-0.001250,0.249997,0,0);}
.m11_c01010{transform:matrix(0.249542,0.002995,-0.003000,0.249982,0,0);-ms-transform:matrix(0.249542,0.002995,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.249542,0.002995,-0.003000,0.249982,0,0);}
.m38_c01010{transform:matrix(0.250030,0.001500,-0.001500,0.249996,0,0);-ms-transform:matrix(0.250030,0.001500,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.250030,0.001500,-0.001500,0.249996,0,0);}
.m33_c01010{transform:matrix(0.250100,0.001501,-0.001500,0.249996,0,0);-ms-transform:matrix(0.250100,0.001501,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.250100,0.001501,-0.001500,0.249996,0,0);}
.m36_c01010{transform:matrix(0.251140,0.001507,-0.001500,0.249996,0,0);-ms-transform:matrix(0.251140,0.001507,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.251140,0.001507,-0.001500,0.249996,0,0);}
.m3e_c01010{transform:matrix(0.251277,0.001256,-0.001250,0.249997,0,0);-ms-transform:matrix(0.251277,0.001256,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.251277,0.001256,-0.001250,0.249997,0,0);}
.m4a_c01010{transform:matrix(0.253062,0.001265,-0.001250,0.249997,0,0);-ms-transform:matrix(0.253062,0.001265,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.253062,0.001265,-0.001250,0.249997,0,0);}
.m46_c01010{transform:matrix(0.253842,0.001269,-0.001250,0.249997,0,0);-ms-transform:matrix(0.253842,0.001269,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.253842,0.001269,-0.001250,0.249997,0,0);}
.m54_c01010{transform:matrix(0.254140,0.003558,-0.003500,0.249976,0,0);-ms-transform:matrix(0.254140,0.003558,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.254140,0.003558,-0.003500,0.249976,0,0);}
.m43_c01010{transform:matrix(0.255882,0.001279,-0.001250,0.249997,0,0);-ms-transform:matrix(0.255882,0.001279,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.255882,0.001279,-0.001250,0.249997,0,0);}
.m51_c01010{transform:matrix(0.257425,0.003604,-0.003500,0.249976,0,0);-ms-transform:matrix(0.257425,0.003604,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.257425,0.003604,-0.003500,0.249976,0,0);}
.m47_c01010{transform:matrix(0.258522,0.001293,-0.001250,0.249997,0,0);-ms-transform:matrix(0.258522,0.001293,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.258522,0.001293,-0.001250,0.249997,0,0);}
.m8_c01010{transform:matrix(0.261090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261090,0.000000,0.000000,0.250000,0,0);}
.m45_c01010{transform:matrix(0.262317,0.001312,-0.001250,0.249997,0,0);-ms-transform:matrix(0.262317,0.001312,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.262317,0.001312,-0.001250,0.249997,0,0);}
.m40_c01010{transform:matrix(0.263757,0.001319,-0.001250,0.249997,0,0);-ms-transform:matrix(0.263757,0.001319,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.263757,0.001319,-0.001250,0.249997,0,0);}
.m37_c01010{transform:matrix(0.263930,0.001584,-0.001500,0.249996,0,0);-ms-transform:matrix(0.263930,0.001584,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.263930,0.001584,-0.001500,0.249996,0,0);}
.m2d_c01010{transform:matrix(0.263990,0.001584,-0.001500,0.249996,0,0);-ms-transform:matrix(0.263990,0.001584,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.263990,0.001584,-0.001500,0.249996,0,0);}
.m57_c01010{transform:matrix(0.264784,0.003707,-0.003500,0.249976,0,0);-ms-transform:matrix(0.264784,0.003707,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.264784,0.003707,-0.003500,0.249976,0,0);}
.m4e_c01010{transform:matrix(0.265884,0.003722,-0.003500,0.249976,0,0);-ms-transform:matrix(0.265884,0.003722,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.265884,0.003722,-0.003500,0.249976,0,0);}
.m58_c01010{transform:matrix(0.266919,0.003737,-0.003500,0.249976,0,0);-ms-transform:matrix(0.266919,0.003737,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.266919,0.003737,-0.003500,0.249976,0,0);}
.m34_c01010{transform:matrix(0.267115,0.001603,-0.001500,0.249996,0,0);-ms-transform:matrix(0.267115,0.001603,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.267115,0.001603,-0.001500,0.249996,0,0);}
.m30_c01010{transform:matrix(0.268575,0.001611,-0.001500,0.249996,0,0);-ms-transform:matrix(0.268575,0.001611,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.268575,0.001611,-0.001500,0.249996,0,0);}
.m41_c01010{transform:matrix(0.269572,0.001348,-0.001250,0.249997,0,0);-ms-transform:matrix(0.269572,0.001348,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.269572,0.001348,-0.001250,0.249997,0,0);}
.m4c_c01010{transform:matrix(0.271653,0.003803,-0.003500,0.249976,0,0);-ms-transform:matrix(0.271653,0.003803,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.271653,0.003803,-0.003500,0.249976,0,0);}
.m2b_c01010{transform:matrix(0.273605,0.001642,-0.001500,0.249996,0,0);-ms-transform:matrix(0.273605,0.001642,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.273605,0.001642,-0.001500,0.249996,0,0);}
.m3c_c01010{transform:matrix(0.274805,0.001649,-0.001500,0.249996,0,0);-ms-transform:matrix(0.274805,0.001649,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.274805,0.001649,-0.001500,0.249996,0,0);}
.m2e_c01010{transform:matrix(0.274910,0.001649,-0.001500,0.249996,0,0);-ms-transform:matrix(0.274910,0.001649,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.274910,0.001649,-0.001500,0.249996,0,0);}
.m4f_c01010{transform:matrix(0.275358,0.003855,-0.003500,0.249976,0,0);-ms-transform:matrix(0.275358,0.003855,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.275358,0.003855,-0.003500,0.249976,0,0);}
.m31_c01010{transform:matrix(0.279815,0.001679,-0.001500,0.249996,0,0);-ms-transform:matrix(0.279815,0.001679,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.279815,0.001679,-0.001500,0.249996,0,0);}
.m3d_c01010{transform:matrix(0.286385,0.001718,-0.001500,0.249996,0,0);-ms-transform:matrix(0.286385,0.001718,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.286385,0.001718,-0.001500,0.249996,0,0);}
.m56_c01010{transform:matrix(0.287002,0.004018,-0.003500,0.249976,0,0);-ms-transform:matrix(0.287002,0.004018,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.287002,0.004018,-0.003500,0.249976,0,0);}
.m35_c01010{transform:matrix(0.287275,0.001724,-0.001500,0.249996,0,0);-ms-transform:matrix(0.287275,0.001724,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.287275,0.001724,-0.001500,0.249996,0,0);}
.m3a_c01010{transform:matrix(0.295980,0.001776,-0.001500,0.249996,0,0);-ms-transform:matrix(0.295980,0.001776,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.295980,0.001776,-0.001500,0.249996,0,0);}
.m4b_c01010{transform:matrix(0.297476,0.004165,-0.003500,0.249976,0,0);-ms-transform:matrix(0.297476,0.004165,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.297476,0.004165,-0.003500,0.249976,0,0);}
.m55_c01010{transform:matrix(0.297486,0.004165,-0.003500,0.249976,0,0);-ms-transform:matrix(0.297486,0.004165,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.297486,0.004165,-0.003500,0.249976,0,0);}
.m52_c01010{transform:matrix(0.297616,0.004167,-0.003500,0.249976,0,0);-ms-transform:matrix(0.297616,0.004167,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.297616,0.004167,-0.003500,0.249976,0,0);}
.m32_c01010{transform:matrix(0.297715,0.001786,-0.001500,0.249996,0,0);-ms-transform:matrix(0.297715,0.001786,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.297715,0.001786,-0.001500,0.249996,0,0);}
.m2c_c01010{transform:matrix(0.298165,0.001789,-0.001500,0.249996,0,0);-ms-transform:matrix(0.298165,0.001789,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.298165,0.001789,-0.001500,0.249996,0,0);}
.m50_c01010{transform:matrix(0.304360,0.004261,-0.003500,0.249976,0,0);-ms-transform:matrix(0.304360,0.004261,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.304360,0.004261,-0.003500,0.249976,0,0);}
.mb_c01010{transform:matrix(0.323102,0.003877,-0.003000,0.249982,0,0);-ms-transform:matrix(0.323102,0.003877,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.323102,0.003877,-0.003000,0.249982,0,0);}
.me_c01010{transform:matrix(0.347730,0.004173,-0.003000,0.249982,0,0);-ms-transform:matrix(0.347730,0.004173,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.347730,0.004173,-0.003000,0.249982,0,0);}
.m5_c01010{transform:matrix(0.403115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403115,0.000000,0.000000,0.250000,0,0);}
.m3_c01010{transform:matrix(0.426645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426645,0.000000,0.000000,0.250000,0,0);}
.mc_c01010{transform:matrix(0.538536,0.006462,-0.003000,0.249982,0,0);-ms-transform:matrix(0.538536,0.006462,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.538536,0.006462,-0.003000,0.249982,0,0);}
.m15_c01010{transform:matrix(0.733432,0.008801,-0.003000,0.249982,0,0);-ms-transform:matrix(0.733432,0.008801,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.733432,0.008801,-0.003000,0.249982,0,0);}
.mf_c01010{transform:matrix(0.859638,0.010316,-0.003000,0.249982,0,0);-ms-transform:matrix(0.859638,0.010316,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.859638,0.010316,-0.003000,0.249982,0,0);}
.m2_c01010{transform:matrix(0.995555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.995555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.995555,0.000000,0.000000,0.250000,0,0);}
.m12_c01010{transform:matrix(1.011337,0.012136,-0.003000,0.249982,0,0);-ms-transform:matrix(1.011337,0.012136,-0.003000,0.249982,0,0);-webkit-transform:matrix(1.011337,0.012136,-0.003000,0.249982,0,0);}
.m17_c01010{transform:matrix(1.839593,0.022075,-0.003000,0.249982,0,0);-ms-transform:matrix(1.839593,0.022075,-0.003000,0.249982,0,0);-webkit-transform:matrix(1.839593,0.022075,-0.003000,0.249982,0,0);}
.m10_c01010{transform:matrix(3.997992,0.047976,-0.003000,0.249982,0,0);-ms-transform:matrix(3.997992,0.047976,-0.003000,0.249982,0,0);-webkit-transform:matrix(3.997992,0.047976,-0.003000,0.249982,0,0);}
.v0_c01010{vertical-align:0.000000px;}
.ls0_c01010{letter-spacing:0.000000px;}
.sc__c01010{text-shadow:none;}
.sc0_c01010{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__c01010{-webkit-text-stroke:0px transparent;}
.sc0_c01010{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01010{word-spacing:0.000000px;}
.fc0_c01010{color:transparent;}
.fs1_c01010{font-size:18.000000px;}
.fs3_c01010{font-size:30.002160px;}
.fs8_c01010{font-size:66.000825px;}
.fs6_c01010{font-size:66.001188px;}
.fs9_c01010{font-size:66.006468px;}
.fs7_c01010{font-size:72.000900px;}
.fs2_c01010{font-size:78.000000px;}
.fs5_c01010{font-size:84.006048px;}
.fs4_c01010{font-size:96.006912px;}
.fs0_c01010{font-size:108.000000px;}
.y0_c01010{bottom:0.000000px;}
.y51_c01010{bottom:764.409612px;}
.y4d_c01010{bottom:764.410257px;}
.y50_c01010{bottom:764.410290px;}
.y4f_c01010{bottom:764.410365px;}
.y4e_c01010{bottom:764.410419px;}
.y4c_c01010{bottom:764.410815px;}
.y4b_c01010{bottom:796.557015px;}
.y4a_c01010{bottom:797.172987px;}
.y49_c01010{bottom:798.723375px;}
.y48_c01010{bottom:799.490694px;}
.y47_c01010{bottom:800.129136px;}
.y46_c01010{bottom:800.571942px;}
.y45_c01010{bottom:801.339303px;}
.y44_c01010{bottom:802.443000px;}
.y43_c01010{bottom:835.379880px;}
.y42_c01010{bottom:869.131395px;}
.y41_c01010{bottom:869.293410px;}
.y40_c01010{bottom:869.570182px;}
.y3f_c01010{bottom:869.795572px;}
.y3e_c01010{bottom:870.281663px;}
.y3d_c01010{bottom:870.451695px;}
.y3c_c01010{bottom:870.783915px;}
.y3b_c01010{bottom:870.948517px;}
.y3a_c01010{bottom:871.383292px;}
.y39_c01010{bottom:871.718085px;}
.y38_c01010{bottom:871.985347px;}
.y37_c01010{bottom:872.100000px;}
.y32_c01010{bottom:908.101029px;}
.y30_c01010{bottom:908.101380px;}
.y31_c01010{bottom:908.101509px;}
.y33_c01010{bottom:908.101518px;}
.y36_c01010{bottom:908.102136px;}
.y34_c01010{bottom:908.102187px;}
.y35_c01010{bottom:908.102547px;}
.y2f_c01010{bottom:939.343572px;}
.y2e_c01010{bottom:939.805299px;}
.y2d_c01010{bottom:940.014306px;}
.y2c_c01010{bottom:940.210209px;}
.y2b_c01010{bottom:940.866453px;}
.y2a_c01010{bottom:941.337891px;}
.y29_c01010{bottom:941.533929px;}
.y28_c01010{bottom:941.726700px;}
.y27_c01010{bottom:942.062031px;}
.y26_c01010{bottom:942.256476px;}
.y25_c01010{bottom:942.842853px;}
.y24_c01010{bottom:943.110000px;}
.y21_c01010{bottom:976.097130px;}
.y1e_c01010{bottom:976.097508px;}
.y22_c01010{bottom:976.097646px;}
.y1d_c01010{bottom:976.097676px;}
.y20_c01010{bottom:976.097760px;}
.y1f_c01010{bottom:976.097784px;}
.y1a_c01010{bottom:976.098036px;}
.y23_c01010{bottom:976.098042px;}
.y1c_c01010{bottom:976.098180px;}
.y1b_c01010{bottom:976.098270px;}
.y19_c01010{bottom:1008.832812px;}
.y18_c01010{bottom:1009.626252px;}
.y17_c01010{bottom:1010.277564px;}
.y16_c01010{bottom:1011.476436px;}
.y15_c01010{bottom:1011.732072px;}
.y14_c01010{bottom:1012.146810px;}
.y13_c01010{bottom:1013.203590px;}
.y12_c01010{bottom:1014.246762px;}
.y11_c01010{bottom:1014.661500px;}
.yf_c01010{bottom:1086.911076px;}
.y10_c01010{bottom:1086.911370px;}
.ye_c01010{bottom:1086.911598px;}
.yc_c01010{bottom:1086.912144px;}
.yd_c01010{bottom:1086.912162px;}
.yb_c01010{bottom:1086.912348px;}
.ya_c01010{bottom:1089.107334px;}
.y9_c01010{bottom:1090.308582px;}
.y8_c01010{bottom:1090.836702px;}
.y7_c01010{bottom:1091.044080px;}
.y6_c01010{bottom:1091.225538px;}
.y5_c01010{bottom:1091.475036px;}
.y4_c01010{bottom:1091.880000px;}
.y3_c01010{bottom:1102.039500px;}
.y2_c01010{bottom:1160.056500px;}
.y1_c01010{bottom:1171.272000px;}
.h3_c01010{height:18.000000px;}
.h5_c01010{height:30.002160px;}
.ha_c01010{height:66.000825px;}
.h8_c01010{height:66.001188px;}
.hb_c01010{height:66.006468px;}
.h9_c01010{height:72.000900px;}
.h4_c01010{height:78.000000px;}
.h7_c01010{height:84.006048px;}
.h6_c01010{height:96.006912px;}
.h2_c01010{height:108.000000px;}
.h0_c01010{height:1246.320000px;}
.h1_c01010{height:1246.500000px;}
.w0_c01010{width:896.100000px;}
.w1_c01010{width:896.250000px;}
.x0_c01010{left:0.000000px;}
.x1f_c01010{left:172.525740px;}
.x36_c01010{left:173.882453px;}
.x31_c01010{left:194.872500px;}
.x39_c01010{left:204.922866px;}
.x27_c01010{left:217.264500px;}
.x20_c01010{left:238.140690px;}
.x32_c01010{left:248.325000px;}
.x2d_c01010{left:260.281608px;}
.x17_c01010{left:280.632000px;}
.x2e_c01010{left:295.112859px;}
.x3_c01010{left:312.390000px;}
.x18_c01010{left:315.193500px;}
.x7_c01010{left:325.890000px;}
.x3a_c01010{left:326.974785px;}
.xb_c01010{left:337.747500px;}
.x4_c01010{left:343.710000px;}
.x21_c01010{left:348.039012px;}
.x5_c01010{left:358.560000px;}
.x12_c01010{left:360.179124px;}
.x6_c01010{left:368.010000px;}
.xc_c01010{left:371.494500px;}
.x13_c01010{left:373.679568px;}
.x8_c01010{left:380.970000px;}
.x1_c01010{left:390.690000px;}
.xd_c01010{left:392.286000px;}
.x19_c01010{left:402.124500px;}
.x28_c01010{left:403.290000px;}
.xe_c01010{left:407.407500px;}
.x14_c01010{left:411.482004px;}
.x2_c01010{left:413.370000px;}
.xf_c01010{left:424.689000px;}
.x29_c01010{left:435.418500px;}
.x15_c01010{left:437.404230px;}
.x37_c01010{left:445.621500px;}
.x2f_c01010{left:457.925727px;}
.x10_c01010{left:468.699000px;}
.x1a_c01010{left:490.189500px;}
.x38_c01010{left:491.224500px;}
.x16_c01010{left:497.888442px;}
.x22_c01010{left:502.219206px;}
.x1b_c01010{left:524.751000px;}
.x9_c01010{left:526.230000px;}
.x33_c01010{left:535.609500px;}
.xa_c01010{left:545.940000px;}
.x23_c01010{left:547.852776px;}
.x30_c01010{left:555.937755px;}
.x11_c01010{left:568.803000px;}
.x34_c01010{left:632.827500px;}
.x1c_c01010{left:645.960000px;}
.x24_c01010{left:656.670936px;}
.x35_c01010{left:677.905500px;}
.x2a_c01010{left:688.689000px;}
.x25_c01010{left:689.882724px;}
.x1d_c01010{left:700.236000px;}
.x2b_c01010{left:723.523500px;}
.x26_c01010{left:733.355988px;}
.x1e_c01010{left:766.356000px;}
.x2c_c01010{left:800.478000px;}
@media print{
.v0_c01010{vertical-align:0.000000pt;}
.ls0_c01010{letter-spacing:0.000000pt;}
.ws0_c01010{word-spacing:0.000000pt;}
.fs1_c01010{font-size:16.000000pt;}
.fs3_c01010{font-size:26.668587pt;}
.fs8_c01010{font-size:58.667400pt;}
.fs6_c01010{font-size:58.667723pt;}
.fs9_c01010{font-size:58.672416pt;}
.fs7_c01010{font-size:64.000800pt;}
.fs2_c01010{font-size:69.333333pt;}
.fs5_c01010{font-size:74.672042pt;}
.fs4_c01010{font-size:85.339477pt;}
.fs0_c01010{font-size:96.000000pt;}
.y0_c01010{bottom:0.000000pt;}
.y51_c01010{bottom:679.475211pt;}
.y4d_c01010{bottom:679.475784pt;}
.y50_c01010{bottom:679.475813pt;}
.y4f_c01010{bottom:679.475880pt;}
.y4e_c01010{bottom:679.475928pt;}
.y4c_c01010{bottom:679.476280pt;}
.y4b_c01010{bottom:708.050680pt;}
.y4a_c01010{bottom:708.598211pt;}
.y49_c01010{bottom:709.976333pt;}
.y48_c01010{bottom:710.658395pt;}
.y47_c01010{bottom:711.225899pt;}
.y46_c01010{bottom:711.619504pt;}
.y45_c01010{bottom:712.301603pt;}
.y44_c01010{bottom:713.282667pt;}
.y43_c01010{bottom:742.559893pt;}
.y42_c01010{bottom:772.561240pt;}
.y41_c01010{bottom:772.705253pt;}
.y40_c01010{bottom:772.951273pt;}
.y3f_c01010{bottom:773.151620pt;}
.y3e_c01010{bottom:773.583700pt;}
.y3d_c01010{bottom:773.734840pt;}
.y3c_c01010{bottom:774.030147pt;}
.y3b_c01010{bottom:774.176460pt;}
.y3a_c01010{bottom:774.562927pt;}
.y39_c01010{bottom:774.860520pt;}
.y38_c01010{bottom:775.098087pt;}
.y37_c01010{bottom:775.200000pt;}
.y32_c01010{bottom:807.200915pt;}
.y30_c01010{bottom:807.201227pt;}
.y31_c01010{bottom:807.201341pt;}
.y33_c01010{bottom:807.201349pt;}
.y36_c01010{bottom:807.201899pt;}
.y34_c01010{bottom:807.201944pt;}
.y35_c01010{bottom:807.202264pt;}
.y2f_c01010{bottom:834.972064pt;}
.y2e_c01010{bottom:835.382488pt;}
.y2d_c01010{bottom:835.568272pt;}
.y2c_c01010{bottom:835.742408pt;}
.y2b_c01010{bottom:836.325736pt;}
.y2a_c01010{bottom:836.744792pt;}
.y29_c01010{bottom:836.919048pt;}
.y28_c01010{bottom:837.090400pt;}
.y27_c01010{bottom:837.388472pt;}
.y26_c01010{bottom:837.561312pt;}
.y25_c01010{bottom:838.082536pt;}
.y24_c01010{bottom:838.320000pt;}
.y21_c01010{bottom:867.641893pt;}
.y1e_c01010{bottom:867.642229pt;}
.y22_c01010{bottom:867.642352pt;}
.y1d_c01010{bottom:867.642379pt;}
.y20_c01010{bottom:867.642453pt;}
.y1f_c01010{bottom:867.642475pt;}
.y1a_c01010{bottom:867.642699pt;}
.y23_c01010{bottom:867.642704pt;}
.y1c_c01010{bottom:867.642827pt;}
.y1b_c01010{bottom:867.642907pt;}
.y19_c01010{bottom:896.740277pt;}
.y18_c01010{bottom:897.445557pt;}
.y17_c01010{bottom:898.024501pt;}
.y16_c01010{bottom:899.090165pt;}
.y15_c01010{bottom:899.317397pt;}
.y14_c01010{bottom:899.686053pt;}
.y13_c01010{bottom:900.625413pt;}
.y12_c01010{bottom:901.552677pt;}
.y11_c01010{bottom:901.921333pt;}
.yf_c01010{bottom:966.143179pt;}
.y10_c01010{bottom:966.143440pt;}
.ye_c01010{bottom:966.143643pt;}
.yc_c01010{bottom:966.144128pt;}
.yd_c01010{bottom:966.144144pt;}
.yb_c01010{bottom:966.144309pt;}
.ya_c01010{bottom:968.095408pt;}
.y9_c01010{bottom:969.163184pt;}
.y8_c01010{bottom:969.632624pt;}
.y7_c01010{bottom:969.816960pt;}
.y6_c01010{bottom:969.978256pt;}
.y5_c01010{bottom:970.200032pt;}
.y4_c01010{bottom:970.560000pt;}
.y3_c01010{bottom:979.590667pt;}
.y2_c01010{bottom:1031.161333pt;}
.y1_c01010{bottom:1041.130667pt;}
.h3_c01010{height:16.000000pt;}
.h5_c01010{height:26.668587pt;}
.ha_c01010{height:58.667400pt;}
.h8_c01010{height:58.667723pt;}
.hb_c01010{height:58.672416pt;}
.h9_c01010{height:64.000800pt;}
.h4_c01010{height:69.333333pt;}
.h7_c01010{height:74.672042pt;}
.h6_c01010{height:85.339477pt;}
.h2_c01010{height:96.000000pt;}
.h0_c01010{height:1107.840000pt;}
.h1_c01010{height:1108.000000pt;}
.w0_c01010{width:796.533333pt;}
.w1_c01010{width:796.666667pt;}
.x0_c01010{left:0.000000pt;}
.x1f_c01010{left:153.356213pt;}
.x36_c01010{left:154.562180pt;}
.x31_c01010{left:173.220000pt;}
.x39_c01010{left:182.153659pt;}
.x27_c01010{left:193.124000pt;}
.x20_c01010{left:211.680613pt;}
.x32_c01010{left:220.733333pt;}
.x2d_c01010{left:231.361429pt;}
.x17_c01010{left:249.450667pt;}
.x2e_c01010{left:262.322541pt;}
.x3_c01010{left:277.680000pt;}
.x18_c01010{left:280.172000pt;}
.x7_c01010{left:289.680000pt;}
.x3a_c01010{left:290.644253pt;}
.xb_c01010{left:300.220000pt;}
.x4_c01010{left:305.520000pt;}
.x21_c01010{left:309.368011pt;}
.x5_c01010{left:318.720000pt;}
.x12_c01010{left:320.159221pt;}
.x6_c01010{left:327.120000pt;}
.xc_c01010{left:330.217333pt;}
.x13_c01010{left:332.159616pt;}
.x8_c01010{left:338.640000pt;}
.x1_c01010{left:347.280000pt;}
.xd_c01010{left:348.698667pt;}
.x19_c01010{left:357.444000pt;}
.x28_c01010{left:358.480000pt;}
.xe_c01010{left:362.140000pt;}
.x14_c01010{left:365.761781pt;}
.x2_c01010{left:367.440000pt;}
.xf_c01010{left:377.501333pt;}
.x29_c01010{left:387.038667pt;}
.x15_c01010{left:388.803760pt;}
.x37_c01010{left:396.108000pt;}
.x2f_c01010{left:407.045091pt;}
.x10_c01010{left:416.621333pt;}
.x1a_c01010{left:435.724000pt;}
.x38_c01010{left:436.644000pt;}
.x16_c01010{left:442.567504pt;}
.x22_c01010{left:446.417072pt;}
.x1b_c01010{left:466.445333pt;}
.x9_c01010{left:467.760000pt;}
.x33_c01010{left:476.097333pt;}
.xa_c01010{left:485.280000pt;}
.x23_c01010{left:486.980245pt;}
.x30_c01010{left:494.166893pt;}
.x11_c01010{left:505.602667pt;}
.x34_c01010{left:562.513333pt;}
.x1c_c01010{left:574.186667pt;}
.x24_c01010{left:583.707499pt;}
.x35_c01010{left:602.582667pt;}
.x2a_c01010{left:612.168000pt;}
.x25_c01010{left:613.229088pt;}
.x1d_c01010{left:622.432000pt;}
.x2b_c01010{left:643.132000pt;}
.x26_c01010{left:651.871989pt;}
.x1e_c01010{left:681.205333pt;}
.x2c_c01010{left:711.536000pt;}
}





/* 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_c01011 {
    display:none;
  }
  .loading-indicator_c01011.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01011 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_c01011 { 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_c01011" -> "#page-container .classname_c01011")
 */
.pf_c01011 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01011 { /* 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_c01011.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01011 { /* 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_c01011 { /* 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_c01011 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01011 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01011 {overflow:visible;}
  }
}
.c_c01011 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01011 { /* 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_c01011:after { /* webkit #35443 */
  content: '';
}
.t_c01011:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01011 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 */
}
.__c01011 { /* 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_c01011 { /* info for Javascript */
  display:none;
}
.l_c01011 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01011 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01011 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01011: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_c01011 {
    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_c01011.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01011.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_c01011 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01011{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01011;src:url('chunks/assets/font_cfe63ee56e9e10a97d33a3db.woff2')format("woff");}.ff1_c01011{font-family:ff1_c01011;line-height:1.000000;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;}
.m1_c01011{transform:matrix(0.027040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.027040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.027040,0.000000,0.000000,0.250000,0,0);}
.m3_c01011{transform:matrix(0.116610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116610,0.000000,0.000000,0.250000,0,0);}
.m2_c01011{transform:matrix(0.145625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145625,0.000000,0.000000,0.250000,0,0);}
.m6_c01011{transform:matrix(0.152470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152470,0.000000,0.000000,0.250000,0,0);}
.m7_c01011{transform:matrix(0.153630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153630,0.000000,0.000000,0.250000,0,0);}
.m9_c01011{transform:matrix(0.153680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153680,0.000000,0.000000,0.250000,0,0);}
.m8_c01011{transform:matrix(0.160480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160480,0.000000,0.000000,0.250000,0,0);}
.m0_c01011{transform:matrix(0.183100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183100,0.000000,0.000000,0.250000,0,0);}
.mc_c01011{transform:matrix(0.192240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192240,0.000000,0.000000,0.250000,0,0);}
.m5_c01011{transform:matrix(0.208385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208385,0.000000,0.000000,0.250000,0,0);}
.m4_c01011{transform:matrix(0.238915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238915,0.000000,0.000000,0.250000,0,0);}
.md_c01011{transform:matrix(0.344370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344370,0.000000,0.000000,0.250000,0,0);}
.mb_c01011{transform:matrix(0.544320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544320,0.000000,0.000000,0.250000,0,0);}
.ma_c01011{transform:matrix(1.225165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.225165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.225165,0.000000,0.000000,0.250000,0,0);}
.v0_c01011{vertical-align:0.000000px;}
.ls0_c01011{letter-spacing:0.000000px;}
.sc__c01011{text-shadow:none;}
.sc0_c01011{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__c01011{-webkit-text-stroke:0px transparent;}
.sc0_c01011{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01011{word-spacing:0.000000px;}
.fc0_c01011{color:transparent;}
.fs0_c01011{font-size:18.000000px;}
.fs3_c01011{font-size:24.000000px;}
.fs1_c01011{font-size:36.000000px;}
.fs2_c01011{font-size:132.000000px;}
.y0_c01011{bottom:0.000000px;}
.y5_c01011{bottom:690.390000px;}
.y4_c01011{bottom:718.470000px;}
.y3_c01011{bottom:745.276500px;}
.y2_c01011{bottom:803.250000px;}
.y1_c01011{bottom:807.570000px;}
.h2_c01011{height:18.000000px;}
.h5_c01011{height:24.000000px;}
.h3_c01011{height:36.000000px;}
.h4_c01011{height:132.000000px;}
.h0_c01011{height:1246.320000px;}
.h1_c01011{height:1246.500000px;}
.w0_c01011{width:896.100000px;}
.w1_c01011{width:896.250000px;}
.x0_c01011{left:0.000000px;}
.x2_c01011{left:291.060000px;}
.x3_c01011{left:312.660000px;}
.x4_c01011{left:358.290000px;}
.x5_c01011{left:389.070000px;}
.x6_c01011{left:455.220000px;}
.x7_c01011{left:485.460000px;}
.x8_c01011{left:565.110000px;}
.x1_c01011{left:629.910000px;}
.x9_c01011{left:654.210000px;}
.xa_c01011{left:686.880000px;}
.xb_c01011{left:890.460000px;}
.xc_c01011{left:892.080000px;}
@media print{
.v0_c01011{vertical-align:0.000000pt;}
.ls0_c01011{letter-spacing:0.000000pt;}
.ws0_c01011{word-spacing:0.000000pt;}
.fs0_c01011{font-size:16.000000pt;}
.fs3_c01011{font-size:21.333333pt;}
.fs1_c01011{font-size:32.000000pt;}
.fs2_c01011{font-size:117.333333pt;}
.y0_c01011{bottom:0.000000pt;}
.y5_c01011{bottom:613.680000pt;}
.y4_c01011{bottom:638.640000pt;}
.y3_c01011{bottom:662.468000pt;}
.y2_c01011{bottom:714.000000pt;}
.y1_c01011{bottom:717.840000pt;}
.h2_c01011{height:16.000000pt;}
.h5_c01011{height:21.333333pt;}
.h3_c01011{height:32.000000pt;}
.h4_c01011{height:117.333333pt;}
.h0_c01011{height:1107.840000pt;}
.h1_c01011{height:1108.000000pt;}
.w0_c01011{width:796.533333pt;}
.w1_c01011{width:796.666667pt;}
.x0_c01011{left:0.000000pt;}
.x2_c01011{left:258.720000pt;}
.x3_c01011{left:277.920000pt;}
.x4_c01011{left:318.480000pt;}
.x5_c01011{left:345.840000pt;}
.x6_c01011{left:404.640000pt;}
.x7_c01011{left:431.520000pt;}
.x8_c01011{left:502.320000pt;}
.x1_c01011{left:559.920000pt;}
.x9_c01011{left:581.520000pt;}
.xa_c01011{left:610.560000pt;}
.xb_c01011{left:791.520000pt;}
.xc_c01011{left:792.960000pt;}
}





/* 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_c01012 {
    display:none;
  }
  .loading-indicator_c01012.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01012 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_c01012 { 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_c01012" -> "#page-container .classname_c01012")
 */
.pf_c01012 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01012 { /* 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_c01012.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01012 { /* 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_c01012 { /* 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_c01012 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01012 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01012 {overflow:visible;}
  }
}
.c_c01012 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01012 { /* 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_c01012:after { /* webkit #35443 */
  content: '';
}
.t_c01012:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01012 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 */
}
.__c01012 { /* 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_c01012 { /* info for Javascript */
  display:none;
}
.l_c01012 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01012 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01012 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01012: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_c01012 {
    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_c01012.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01012.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_c01012 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01012{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01012;src:url('chunks/assets/font_b11a17f404e7258299fdf971.woff2')format("woff");}.ff1_c01012{font-family:ff1_c01012;line-height:1.000000;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;}
.m4f_c01012{transform:matrix(0.181513,0.004538,-0.006248,0.249922,0,0);-ms-transform:matrix(0.181513,0.004538,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.181513,0.004538,-0.006248,0.249922,0,0);}
.m58_c01012{transform:matrix(0.194139,0.004853,-0.006248,0.249922,0,0);-ms-transform:matrix(0.194139,0.004853,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.194139,0.004853,-0.006248,0.249922,0,0);}
.m1d_c01012{transform:matrix(0.202199,0.003235,-0.003999,0.249968,0,0);-ms-transform:matrix(0.202199,0.003235,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.202199,0.003235,-0.003999,0.249968,0,0);}
.m53_c01012{transform:matrix(0.206031,0.005151,-0.006248,0.249922,0,0);-ms-transform:matrix(0.206031,0.005151,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.206031,0.005151,-0.006248,0.249922,0,0);}
.m74_c01012{transform:matrix(0.206379,0.003302,-0.003999,0.249968,0,0);-ms-transform:matrix(0.206379,0.003302,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.206379,0.003302,-0.003999,0.249968,0,0);}
.m55_c01012{transform:matrix(0.206755,0.005169,-0.006248,0.249922,0,0);-ms-transform:matrix(0.206755,0.005169,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.206755,0.005169,-0.006248,0.249922,0,0);}
.m48_c01012{transform:matrix(0.207330,0.005183,-0.006248,0.249922,0,0);-ms-transform:matrix(0.207330,0.005183,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.207330,0.005183,-0.006248,0.249922,0,0);}
.m24_c01012{transform:matrix(0.207365,0.003525,-0.004249,0.249964,0,0);-ms-transform:matrix(0.207365,0.003525,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.207365,0.003525,-0.004249,0.249964,0,0);}
.m21_c01012{transform:matrix(0.207985,0.003536,-0.004249,0.249964,0,0);-ms-transform:matrix(0.207985,0.003536,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.207985,0.003536,-0.004249,0.249964,0,0);}
.m22_c01012{transform:matrix(0.208445,0.003544,-0.004249,0.249964,0,0);-ms-transform:matrix(0.208445,0.003544,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.208445,0.003544,-0.004249,0.249964,0,0);}
.m16_c01012{transform:matrix(0.208903,0.003342,-0.003999,0.249968,0,0);-ms-transform:matrix(0.208903,0.003342,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.208903,0.003342,-0.003999,0.249968,0,0);}
.m35_c01012{transform:matrix(0.209515,0.003562,-0.004249,0.249964,0,0);-ms-transform:matrix(0.209515,0.003562,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.209515,0.003562,-0.004249,0.249964,0,0);}
.m1a_c01012{transform:matrix(0.210368,0.003366,-0.003999,0.249968,0,0);-ms-transform:matrix(0.210368,0.003366,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.210368,0.003366,-0.003999,0.249968,0,0);}
.m52_c01012{transform:matrix(0.210754,0.005269,-0.006248,0.249922,0,0);-ms-transform:matrix(0.210754,0.005269,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.210754,0.005269,-0.006248,0.249922,0,0);}
.m56_c01012{transform:matrix(0.210794,0.005270,-0.006248,0.249922,0,0);-ms-transform:matrix(0.210794,0.005270,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.210794,0.005270,-0.006248,0.249922,0,0);}
.m1e_c01012{transform:matrix(0.210998,0.003376,-0.003999,0.249968,0,0);-ms-transform:matrix(0.210998,0.003376,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.210998,0.003376,-0.003999,0.249968,0,0);}
.m73_c01012{transform:matrix(0.211538,0.003385,-0.003999,0.249968,0,0);-ms-transform:matrix(0.211538,0.003385,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.211538,0.003385,-0.003999,0.249968,0,0);}
.m6a_c01012{transform:matrix(0.212134,0.005303,-0.006248,0.249922,0,0);-ms-transform:matrix(0.212134,0.005303,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.212134,0.005303,-0.006248,0.249922,0,0);}
.m25_c01012{transform:matrix(0.213614,0.003631,-0.004249,0.249964,0,0);-ms-transform:matrix(0.213614,0.003631,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.213614,0.003631,-0.004249,0.249964,0,0);}
.m50_c01012{transform:matrix(0.213803,0.005345,-0.006248,0.249922,0,0);-ms-transform:matrix(0.213803,0.005345,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.213803,0.005345,-0.006248,0.249922,0,0);}
.m54_c01012{transform:matrix(0.214058,0.005351,-0.006248,0.249922,0,0);-ms-transform:matrix(0.214058,0.005351,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.214058,0.005351,-0.006248,0.249922,0,0);}
.m51_c01012{transform:matrix(0.214113,0.005353,-0.006248,0.249922,0,0);-ms-transform:matrix(0.214113,0.005353,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.214113,0.005353,-0.006248,0.249922,0,0);}
.m2d_c01012{transform:matrix(0.216304,0.003677,-0.004249,0.249964,0,0);-ms-transform:matrix(0.216304,0.003677,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.216304,0.003677,-0.004249,0.249964,0,0);}
.m5c_c01012{transform:matrix(0.217522,0.005438,-0.006248,0.249922,0,0);-ms-transform:matrix(0.217522,0.005438,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.217522,0.005438,-0.006248,0.249922,0,0);}
.m4e_c01012{transform:matrix(0.218217,0.005455,-0.006248,0.249922,0,0);-ms-transform:matrix(0.218217,0.005455,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.218217,0.005455,-0.006248,0.249922,0,0);}
.m28_c01012{transform:matrix(0.221423,0.003764,-0.004249,0.249964,0,0);-ms-transform:matrix(0.221423,0.003764,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.221423,0.003764,-0.004249,0.249964,0,0);}
.m31_c01012{transform:matrix(0.222093,0.003776,-0.004249,0.249964,0,0);-ms-transform:matrix(0.222093,0.003776,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.222093,0.003776,-0.004249,0.249964,0,0);}
.m4c_c01012{transform:matrix(0.224530,0.005613,-0.006248,0.249922,0,0);-ms-transform:matrix(0.224530,0.005613,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.224530,0.005613,-0.006248,0.249922,0,0);}
.m71_c01012{transform:matrix(0.224646,0.003594,-0.003999,0.249968,0,0);-ms-transform:matrix(0.224646,0.003594,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.224646,0.003594,-0.003999,0.249968,0,0);}
.m2e_c01012{transform:matrix(0.224967,0.003824,-0.004249,0.249964,0,0);-ms-transform:matrix(0.224967,0.003824,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.224967,0.003824,-0.004249,0.249964,0,0);}
.m49_c01012{transform:matrix(0.225395,0.005635,-0.006248,0.249922,0,0);-ms-transform:matrix(0.225395,0.005635,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.225395,0.005635,-0.006248,0.249922,0,0);}
.ma_c01012{transform:matrix(0.225785,0.005193,-0.005748,0.249934,0,0);-ms-transform:matrix(0.225785,0.005193,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.225785,0.005193,-0.005748,0.249934,0,0);}
.m11_c01012{transform:matrix(0.226515,0.005210,-0.005748,0.249934,0,0);-ms-transform:matrix(0.226515,0.005210,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.226515,0.005210,-0.005748,0.249934,0,0);}
.m64_c01012{transform:matrix(0.226934,0.005673,-0.006248,0.249922,0,0);-ms-transform:matrix(0.226934,0.005673,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.226934,0.005673,-0.006248,0.249922,0,0);}
.m2c_c01012{transform:matrix(0.228477,0.003884,-0.004249,0.249964,0,0);-ms-transform:matrix(0.228477,0.003884,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.228477,0.003884,-0.004249,0.249964,0,0);}
.m37_c01012{transform:matrix(0.228532,0.003885,-0.004249,0.249964,0,0);-ms-transform:matrix(0.228532,0.003885,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.228532,0.003885,-0.004249,0.249964,0,0);}
.m70_c01012{transform:matrix(0.228786,0.003661,-0.003999,0.249968,0,0);-ms-transform:matrix(0.228786,0.003661,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.228786,0.003661,-0.003999,0.249968,0,0);}
.m46_c01012{transform:matrix(0.228928,0.005723,-0.006248,0.249922,0,0);-ms-transform:matrix(0.228928,0.005723,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.228928,0.005723,-0.006248,0.249922,0,0);}
.m6f_c01012{transform:matrix(0.228971,0.003664,-0.003999,0.249968,0,0);-ms-transform:matrix(0.228971,0.003664,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.228971,0.003664,-0.003999,0.249968,0,0);}
.mf_c01012{transform:matrix(0.229399,0.005276,-0.005748,0.249934,0,0);-ms-transform:matrix(0.229399,0.005276,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.229399,0.005276,-0.005748,0.249934,0,0);}
.m57_c01012{transform:matrix(0.229913,0.005748,-0.006248,0.249922,0,0);-ms-transform:matrix(0.229913,0.005748,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.229913,0.005748,-0.006248,0.249922,0,0);}
.m4a_c01012{transform:matrix(0.229918,0.005748,-0.006248,0.249922,0,0);-ms-transform:matrix(0.229918,0.005748,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.229918,0.005748,-0.006248,0.249922,0,0);}
.me_c01012{transform:matrix(0.232434,0.005346,-0.005748,0.249934,0,0);-ms-transform:matrix(0.232434,0.005346,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.232434,0.005346,-0.005748,0.249934,0,0);}
.m14_c01012{transform:matrix(0.233138,0.005362,-0.005748,0.249934,0,0);-ms-transform:matrix(0.233138,0.005362,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.233138,0.005362,-0.005748,0.249934,0,0);}
.m30_c01012{transform:matrix(0.234956,0.003994,-0.004249,0.249964,0,0);-ms-transform:matrix(0.234956,0.003994,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.234956,0.003994,-0.004249,0.249964,0,0);}
.m2_c01012{transform:matrix(0.234976,0.008232,-0.008753,0.249847,0,0);-ms-transform:matrix(0.234976,0.008232,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.234976,0.008232,-0.008753,0.249847,0,0);}
.m19_c01012{transform:matrix(0.235300,0.003765,-0.003999,0.249968,0,0);-ms-transform:matrix(0.235300,0.003765,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.235300,0.003765,-0.003999,0.249968,0,0);}
.m5f_c01012{transform:matrix(0.235716,0.005893,-0.006248,0.249922,0,0);-ms-transform:matrix(0.235716,0.005893,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.235716,0.005893,-0.006248,0.249922,0,0);}
.m1b_c01012{transform:matrix(0.235890,0.003774,-0.003999,0.249968,0,0);-ms-transform:matrix(0.235890,0.003774,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.235890,0.003774,-0.003999,0.249968,0,0);}
.md_c01012{transform:matrix(0.236048,0.005429,-0.005748,0.249934,0,0);-ms-transform:matrix(0.236048,0.005429,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.236048,0.005429,-0.005748,0.249934,0,0);}
.m34_c01012{transform:matrix(0.236446,0.004020,-0.004249,0.249964,0,0);-ms-transform:matrix(0.236446,0.004020,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.236446,0.004020,-0.004249,0.249964,0,0);}
.m42_c01012{transform:matrix(0.236611,0.004022,-0.004249,0.249964,0,0);-ms-transform:matrix(0.236611,0.004022,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.236611,0.004022,-0.004249,0.249964,0,0);}
.m6e_c01012{transform:matrix(0.237096,0.005927,-0.006248,0.249922,0,0);-ms-transform:matrix(0.237096,0.005927,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.237096,0.005927,-0.006248,0.249922,0,0);}
.m75_c01012{transform:matrix(0.237305,0.003797,-0.003999,0.249968,0,0);-ms-transform:matrix(0.237305,0.003797,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.237305,0.003797,-0.003999,0.249968,0,0);}
.m1f_c01012{transform:matrix(0.237430,0.003799,-0.003999,0.249968,0,0);-ms-transform:matrix(0.237430,0.003799,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.237430,0.003799,-0.003999,0.249968,0,0);}
.m2f_c01012{transform:matrix(0.238006,0.004046,-0.004249,0.249964,0,0);-ms-transform:matrix(0.238006,0.004046,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.238006,0.004046,-0.004249,0.249964,0,0);}
.mc_c01012{transform:matrix(0.238122,0.005477,-0.005748,0.249934,0,0);-ms-transform:matrix(0.238122,0.005477,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.238122,0.005477,-0.005748,0.249934,0,0);}
.m23_c01012{transform:matrix(0.238331,0.004052,-0.004249,0.249964,0,0);-ms-transform:matrix(0.238331,0.004052,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.238331,0.004052,-0.004249,0.249964,0,0);}
.m18_c01012{transform:matrix(0.238479,0.003816,-0.003999,0.249968,0,0);-ms-transform:matrix(0.238479,0.003816,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.238479,0.003816,-0.003999,0.249968,0,0);}
.m3_c01012{transform:matrix(0.240238,0.008417,-0.008753,0.249847,0,0);-ms-transform:matrix(0.240238,0.008417,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.240238,0.008417,-0.008753,0.249847,0,0);}
.m17_c01012{transform:matrix(0.240369,0.003846,-0.003999,0.249968,0,0);-ms-transform:matrix(0.240369,0.003846,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.240369,0.003846,-0.003999,0.249968,0,0);}
.m29_c01012{transform:matrix(0.240415,0.004087,-0.004249,0.249964,0,0);-ms-transform:matrix(0.240415,0.004087,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.240415,0.004087,-0.004249,0.249964,0,0);}
.m1c_c01012{transform:matrix(0.241149,0.003858,-0.003999,0.249968,0,0);-ms-transform:matrix(0.241149,0.003858,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.241149,0.003858,-0.003999,0.249968,0,0);}
.m5b_c01012{transform:matrix(0.241769,0.006044,-0.006248,0.249922,0,0);-ms-transform:matrix(0.241769,0.006044,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.241769,0.006044,-0.006248,0.249922,0,0);}
.m12_c01012{transform:matrix(0.241806,0.005562,-0.005748,0.249934,0,0);-ms-transform:matrix(0.241806,0.005562,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.241806,0.005562,-0.005748,0.249934,0,0);}
.m2a_c01012{transform:matrix(0.243020,0.004131,-0.004249,0.249964,0,0);-ms-transform:matrix(0.243020,0.004131,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.243020,0.004131,-0.004249,0.249964,0,0);}
.m27_c01012{transform:matrix(0.243545,0.004140,-0.004249,0.249964,0,0);-ms-transform:matrix(0.243545,0.004140,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.243545,0.004140,-0.004249,0.249964,0,0);}
.m63_c01012{transform:matrix(0.244399,0.006110,-0.006248,0.249922,0,0);-ms-transform:matrix(0.244399,0.006110,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.244399,0.006110,-0.006248,0.249922,0,0);}
.m26_c01012{transform:matrix(0.244540,0.004157,-0.004249,0.249964,0,0);-ms-transform:matrix(0.244540,0.004157,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.244540,0.004157,-0.004249,0.249964,0,0);}
.m5d_c01012{transform:matrix(0.246583,0.006165,-0.006248,0.249922,0,0);-ms-transform:matrix(0.246583,0.006165,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.246583,0.006165,-0.006248,0.249922,0,0);}
.m8_c01012{transform:matrix(0.246615,0.005672,-0.005748,0.249934,0,0);-ms-transform:matrix(0.246615,0.005672,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.246615,0.005672,-0.005748,0.249934,0,0);}
.m59_c01012{transform:matrix(0.246993,0.006175,-0.006248,0.249922,0,0);-ms-transform:matrix(0.246993,0.006175,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.246993,0.006175,-0.006248,0.249922,0,0);}
.m5e_c01012{transform:matrix(0.247838,0.006196,-0.006248,0.249922,0,0);-ms-transform:matrix(0.247838,0.006196,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.247838,0.006196,-0.006248,0.249922,0,0);}
.m3a_c01012{transform:matrix(0.248044,0.004217,-0.004249,0.249964,0,0);-ms-transform:matrix(0.248044,0.004217,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.248044,0.004217,-0.004249,0.249964,0,0);}
.m44_c01012{transform:matrix(0.248789,0.004229,-0.004249,0.249964,0,0);-ms-transform:matrix(0.248789,0.004229,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.248789,0.004229,-0.004249,0.249964,0,0);}
.m72_c01012{transform:matrix(0.248803,0.003981,-0.003999,0.249968,0,0);-ms-transform:matrix(0.248803,0.003981,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.248803,0.003981,-0.003999,0.249968,0,0);}
.m10_c01012{transform:matrix(0.249929,0.005748,-0.005748,0.249934,0,0);-ms-transform:matrix(0.249929,0.005748,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.249929,0.005748,-0.005748,0.249934,0,0);}
.m2b_c01012{transform:matrix(0.250019,0.004250,-0.004249,0.249964,0,0);-ms-transform:matrix(0.250019,0.004250,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.250019,0.004250,-0.004249,0.249964,0,0);}
.m4d_c01012{transform:matrix(0.250832,0.006271,-0.006248,0.249922,0,0);-ms-transform:matrix(0.250832,0.006271,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.250832,0.006271,-0.006248,0.249922,0,0);}
.m7_c01012{transform:matrix(0.250864,0.005770,-0.005748,0.249934,0,0);-ms-transform:matrix(0.250864,0.005770,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.250864,0.005770,-0.005748,0.249934,0,0);}
.m4b_c01012{transform:matrix(0.251556,0.006289,-0.006248,0.249922,0,0);-ms-transform:matrix(0.251556,0.006289,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.251556,0.006289,-0.006248,0.249922,0,0);}
.m33_c01012{transform:matrix(0.252004,0.004284,-0.004249,0.249964,0,0);-ms-transform:matrix(0.252004,0.004284,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.252004,0.004284,-0.004249,0.249964,0,0);}
.m61_c01012{transform:matrix(0.252271,0.006307,-0.006248,0.249922,0,0);-ms-transform:matrix(0.252271,0.006307,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.252271,0.006307,-0.006248,0.249922,0,0);}
.m66_c01012{transform:matrix(0.252511,0.006313,-0.006248,0.249922,0,0);-ms-transform:matrix(0.252511,0.006313,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.252511,0.006313,-0.006248,0.249922,0,0);}
.m60_c01012{transform:matrix(0.252631,0.006316,-0.006248,0.249922,0,0);-ms-transform:matrix(0.252631,0.006316,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.252631,0.006316,-0.006248,0.249922,0,0);}
.m32_c01012{transform:matrix(0.253253,0.004305,-0.004249,0.249964,0,0);-ms-transform:matrix(0.253253,0.004305,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.253253,0.004305,-0.004249,0.249964,0,0);}
.m41_c01012{transform:matrix(0.254633,0.004329,-0.004249,0.249964,0,0);-ms-transform:matrix(0.254633,0.004329,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.254633,0.004329,-0.004249,0.249964,0,0);}
.m62_c01012{transform:matrix(0.254650,0.006366,-0.006248,0.249922,0,0);-ms-transform:matrix(0.254650,0.006366,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.254650,0.006366,-0.006248,0.249922,0,0);}
.m47_c01012{transform:matrix(0.256465,0.006412,-0.006248,0.249922,0,0);-ms-transform:matrix(0.256465,0.006412,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.256465,0.006412,-0.006248,0.249922,0,0);}
.m69_c01012{transform:matrix(0.257540,0.006438,-0.006248,0.249922,0,0);-ms-transform:matrix(0.257540,0.006438,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.257540,0.006438,-0.006248,0.249922,0,0);}
.m4_c01012{transform:matrix(0.257572,0.009024,-0.008753,0.249847,0,0);-ms-transform:matrix(0.257572,0.009024,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.257572,0.009024,-0.008753,0.249847,0,0);}
.m40_c01012{transform:matrix(0.257843,0.004383,-0.004249,0.249964,0,0);-ms-transform:matrix(0.257843,0.004383,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.257843,0.004383,-0.004249,0.249964,0,0);}
.m6c_c01012{transform:matrix(0.257994,0.006450,-0.006248,0.249922,0,0);-ms-transform:matrix(0.257994,0.006450,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.257994,0.006450,-0.006248,0.249922,0,0);}
.m36_c01012{transform:matrix(0.259103,0.004405,-0.004249,0.249964,0,0);-ms-transform:matrix(0.259103,0.004405,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.259103,0.004405,-0.004249,0.249964,0,0);}
.m13_c01012{transform:matrix(0.261411,0.006012,-0.005748,0.249934,0,0);-ms-transform:matrix(0.261411,0.006012,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.261411,0.006012,-0.005748,0.249934,0,0);}
.m5a_c01012{transform:matrix(0.262313,0.006558,-0.006248,0.249922,0,0);-ms-transform:matrix(0.262313,0.006558,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.262313,0.006558,-0.006248,0.249922,0,0);}
.m3f_c01012{transform:matrix(0.264312,0.004493,-0.004249,0.249964,0,0);-ms-transform:matrix(0.264312,0.004493,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.264312,0.004493,-0.004249,0.249964,0,0);}
.m68_c01012{transform:matrix(0.264997,0.006625,-0.006248,0.249922,0,0);-ms-transform:matrix(0.264997,0.006625,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.264997,0.006625,-0.006248,0.249922,0,0);}
.m39_c01012{transform:matrix(0.265522,0.004514,-0.004249,0.249964,0,0);-ms-transform:matrix(0.265522,0.004514,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.265522,0.004514,-0.004249,0.249964,0,0);}
.m65_c01012{transform:matrix(0.267656,0.006691,-0.006248,0.249922,0,0);-ms-transform:matrix(0.267656,0.006691,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.267656,0.006691,-0.006248,0.249922,0,0);}
.m3e_c01012{transform:matrix(0.267816,0.004553,-0.004249,0.249964,0,0);-ms-transform:matrix(0.267816,0.004553,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.267816,0.004553,-0.004249,0.249964,0,0);}
.m6b_c01012{transform:matrix(0.268721,0.006718,-0.006248,0.249922,0,0);-ms-transform:matrix(0.268721,0.006718,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.268721,0.006718,-0.006248,0.249922,0,0);}
.m5_c01012{transform:matrix(0.268759,0.006181,-0.005748,0.249934,0,0);-ms-transform:matrix(0.268759,0.006181,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.268759,0.006181,-0.005748,0.249934,0,0);}
.m6_c01012{transform:matrix(0.272788,0.006274,-0.005748,0.249934,0,0);-ms-transform:matrix(0.272788,0.006274,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.272788,0.006274,-0.005748,0.249934,0,0);}
.m67_c01012{transform:matrix(0.273924,0.006848,-0.006248,0.249922,0,0);-ms-transform:matrix(0.273924,0.006848,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.273924,0.006848,-0.006248,0.249922,0,0);}
.m3b_c01012{transform:matrix(0.275175,0.004678,-0.004249,0.249964,0,0);-ms-transform:matrix(0.275175,0.004678,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.275175,0.004678,-0.004249,0.249964,0,0);}
.m9_c01012{transform:matrix(0.275307,0.006332,-0.005748,0.249934,0,0);-ms-transform:matrix(0.275307,0.006332,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.275307,0.006332,-0.005748,0.249934,0,0);}
.m6d_c01012{transform:matrix(0.275459,0.006886,-0.006248,0.249922,0,0);-ms-transform:matrix(0.275459,0.006886,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.275459,0.006886,-0.006248,0.249922,0,0);}
.m3c_c01012{transform:matrix(0.276215,0.004696,-0.004249,0.249964,0,0);-ms-transform:matrix(0.276215,0.004696,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.276215,0.004696,-0.004249,0.249964,0,0);}
.m1_c01012{transform:matrix(0.277994,0.009740,-0.008753,0.249847,0,0);-ms-transform:matrix(0.277994,0.009740,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.277994,0.009740,-0.008753,0.249847,0,0);}
.m38_c01012{transform:matrix(0.279000,0.004743,-0.004249,0.249964,0,0);-ms-transform:matrix(0.279000,0.004743,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.279000,0.004743,-0.004249,0.249964,0,0);}
.m3d_c01012{transform:matrix(0.281979,0.004794,-0.004249,0.249964,0,0);-ms-transform:matrix(0.281979,0.004794,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.281979,0.004794,-0.004249,0.249964,0,0);}
.mb_c01012{transform:matrix(0.282165,0.006490,-0.005748,0.249934,0,0);-ms-transform:matrix(0.282165,0.006490,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.282165,0.006490,-0.005748,0.249934,0,0);}
.m45_c01012{transform:matrix(0.289138,0.004915,-0.004249,0.249964,0,0);-ms-transform:matrix(0.289138,0.004915,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.289138,0.004915,-0.004249,0.249964,0,0);}
.m15_c01012{transform:matrix(0.289259,0.006653,-0.005748,0.249934,0,0);-ms-transform:matrix(0.289259,0.006653,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.289259,0.006653,-0.005748,0.249934,0,0);}
.m0_c01012{transform:matrix(0.291245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291245,0.000000,0.000000,0.250000,0,0);}
.m43_c01012{transform:matrix(0.293288,0.004986,-0.004249,0.249964,0,0);-ms-transform:matrix(0.293288,0.004986,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.293288,0.004986,-0.004249,0.249964,0,0);}
.m20_c01012{transform:matrix(2.557568,0.040921,-0.003999,0.249968,0,0);-ms-transform:matrix(2.557568,0.040921,-0.003999,0.249968,0,0);-webkit-transform:matrix(2.557568,0.040921,-0.003999,0.249968,0,0);}
.v0_c01012{vertical-align:0.000000px;}
.ls0_c01012{letter-spacing:0.000000px;}
.sc__c01012{text-shadow:none;}
.sc0_c01012{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__c01012{-webkit-text-stroke:0px transparent;}
.sc0_c01012{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01012{word-spacing:0.000000px;}
._0_c01012{width:42.823887px;}
.fc0_c01012{color:transparent;}
.fs0_c01012{font-size:18.000000px;}
.fs5_c01012{font-size:18.002304px;}
.fs8_c01012{font-size:66.009536px;}
.fs1_c01012{font-size:71.972131px;}
.fs7_c01012{font-size:72.010403px;}
.fs2_c01012{font-size:72.019041px;}
.fsb_c01012{font-size:72.022496px;}
.fsc_c01012{font-size:78.009983px;}
.fs6_c01012{font-size:78.011270px;}
.fs3_c01012{font-size:78.020628px;}
.fs9_c01012{font-size:78.024371px;}
.fs4_c01012{font-size:84.010751px;}
.fsa_c01012{font-size:90.028121px;}
.y0_c01012{bottom:0.000000px;}
.y76_c01012{bottom:643.306800px;}
.y75_c01012{bottom:643.811424px;}
.y74_c01012{bottom:644.355888px;}
.y73_c01012{bottom:645.773424px;}
.y72_c01012{bottom:646.624488px;}
.y71_c01012{bottom:647.679120px;}
.y70_c01012{bottom:648.543000px;}
.y6f_c01012{bottom:670.770187px;}
.y6e_c01012{bottom:672.771450px;}
.y6d_c01012{bottom:674.111812px;}
.y6c_c01012{bottom:675.861825px;}
.y6b_c01012{bottom:676.319962px;}
.y6a_c01012{bottom:677.433075px;}
.y69_c01012{bottom:678.937537px;}
.y68_c01012{bottom:679.608375px;}
.y67_c01012{bottom:680.068275px;}
.y66_c01012{bottom:681.787200px;}
.y65_c01012{bottom:682.461000px;}
.y64_c01012{bottom:683.341875px;}
.y63_c01012{bottom:707.935725px;}
.y62_c01012{bottom:709.365825px;}
.y61_c01012{bottom:711.131587px;}
.y60_c01012{bottom:711.557625px;}
.y5f_c01012{bottom:712.939200px;}
.y5e_c01012{bottom:714.126225px;}
.y5d_c01012{bottom:714.884250px;}
.y5c_c01012{bottom:716.663400px;}
.y5b_c01012{bottom:717.067500px;}
.y5a_c01012{bottom:718.451700px;}
.y59_c01012{bottom:743.980125px;}
.y58_c01012{bottom:744.367575px;}
.y57_c01012{bottom:745.508962px;}
.y56_c01012{bottom:746.461162px;}
.y55_c01012{bottom:747.926662px;}
.y54_c01012{bottom:748.895362px;}
.y53_c01012{bottom:749.819062px;}
.y52_c01012{bottom:750.952462px;}
.y51_c01012{bottom:752.408400px;}
.y50_c01012{bottom:752.980837px;}
.y4f_c01012{bottom:754.643662px;}
.y4e_c01012{bottom:779.029387px;}
.y4d_c01012{bottom:780.130987px;}
.y4c_c01012{bottom:782.609137px;}
.y4b_c01012{bottom:784.256625px;}
.y4a_c01012{bottom:785.357025px;}
.y49_c01012{bottom:786.194100px;}
.y48_c01012{bottom:788.955675px;}
.y47_c01012{bottom:790.299000px;}
.y46_c01012{bottom:823.341330px;}
.y45_c01012{bottom:823.342003px;}
.y44_c01012{bottom:823.342099px;}
.y43_c01012{bottom:823.342413px;}
.y42_c01012{bottom:851.748333px;}
.y41_c01012{bottom:852.092136px;}
.y40_c01012{bottom:852.908077px;}
.y3f_c01012{bottom:853.908460px;}
.y3e_c01012{bottom:855.383638px;}
.y3d_c01012{bottom:857.193843px;}
.y3c_c01012{bottom:858.685320px;}
.y3b_c01012{bottom:859.512282px;}
.y3a_c01012{bottom:861.289858px;}
.y39_c01012{bottom:885.488707px;}
.y38_c01012{bottom:886.355130px;}
.y37_c01012{bottom:888.019723px;}
.y36_c01012{bottom:889.029916px;}
.y35_c01012{bottom:889.911031px;}
.y34_c01012{bottom:891.476284px;}
.y33_c01012{bottom:893.053017px;}
.y32_c01012{bottom:893.593920px;}
.y31_c01012{bottom:894.302287px;}
.y30_c01012{bottom:894.655963px;}
.y2f_c01012{bottom:895.339744px;}
.y2e_c01012{bottom:895.857544px;}
.y2d_c01012{bottom:920.574837px;}
.y2c_c01012{bottom:922.076098px;}
.y2b_c01012{bottom:923.586387px;}
.y2a_c01012{bottom:924.716215px;}
.y29_c01012{bottom:925.276348px;}
.y28_c01012{bottom:926.768353px;}
.y27_c01012{bottom:927.902083px;}
.y26_c01012{bottom:928.641354px;}
.y25_c01012{bottom:929.187640px;}
.y24_c01012{bottom:930.298344px;}
.y23_c01012{bottom:930.847894px;}
.y22_c01012{bottom:931.413000px;}
.y21_c01012{bottom:956.136408px;}
.y20_c01012{bottom:956.580120px;}
.y1f_c01012{bottom:957.102504px;}
.y1e_c01012{bottom:957.628920px;}
.y1d_c01012{bottom:959.570088px;}
.y1c_c01012{bottom:960.810192px;}
.y1b_c01012{bottom:961.337376px;}
.y1a_c01012{bottom:962.742168px;}
.y19_c01012{bottom:963.442824px;}
.y18_c01012{bottom:965.368056px;}
.y17_c01012{bottom:966.063000px;}
.y16_c01012{bottom:992.732044px;}
.y15_c01012{bottom:993.349879px;}
.y14_c01012{bottom:995.494846px;}
.y13_c01012{bottom:996.436843px;}
.y12_c01012{bottom:996.910335px;}
.y11_c01012{bottom:998.578014px;}
.y10_c01012{bottom:999.352960px;}
.yf_c01012{bottom:999.976179px;}
.ye_c01012{bottom:1000.883666px;}
.yd_c01012{bottom:1027.043089px;}
.yc_c01012{bottom:1029.069999px;}
.yb_c01012{bottom:1029.832207px;}
.ya_c01012{bottom:1032.126216px;}
.y9_c01012{bottom:1033.379463px;}
.y8_c01012{bottom:1034.641887px;}
.y7_c01012{bottom:1036.697845px;}
.y6_c01012{bottom:1038.697500px;}
.y5_c01012{bottom:1121.678205px;}
.y4_c01012{bottom:1123.558912px;}
.y3_c01012{bottom:1124.759640px;}
.y2_c01012{bottom:1128.616500px;}
.y1_c01012{bottom:1235.790000px;}
.h2_c01012{height:18.000000px;}
.h7_c01012{height:18.002304px;}
.hb_c01012{height:66.009536px;}
.h3_c01012{height:71.972131px;}
.ha_c01012{height:72.010403px;}
.h4_c01012{height:72.019041px;}
.he_c01012{height:72.022496px;}
.hf_c01012{height:78.009983px;}
.h8_c01012{height:78.011270px;}
.h5_c01012{height:78.020628px;}
.hc_c01012{height:78.024371px;}
.h9_c01012{height:78.143289px;}
.h6_c01012{height:84.010751px;}
.hd_c01012{height:90.028121px;}
.h0_c01012{height:1246.320000px;}
.h1_c01012{height:1246.500000px;}
.w0_c01012{width:896.100000px;}
.w1_c01012{width:896.250000px;}
.x0_c01012{left:0.000000px;}
.x4b_c01012{left:154.704000px;}
.x40_c01012{left:156.270712px;}
.x28_c01012{left:158.264997px;}
.xd_c01012{left:159.863675px;}
.x29_c01012{left:190.665558px;}
.x1f_c01012{left:192.319500px;}
.x54_c01012{left:197.919787px;}
.x15_c01012{left:202.518000px;}
.x5d_c01012{left:209.022000px;}
.xe_c01012{left:224.702595px;}
.x4c_c01012{left:231.565425px;}
.x2a_c01012{left:233.359272px;}
.x41_c01012{left:254.123287px;}
.x2b_c01012{left:255.487654px;}
.x39_c01012{left:265.876500px;}
.x6_c01012{left:269.689500px;}
.x5e_c01012{left:274.936500px;}
.x32_c01012{left:277.344210px;}
.x42_c01012{left:287.827537px;}
.x20_c01012{left:289.981500px;}
.x2c_c01012{left:299.715894px;}
.x38_c01012{left:310.795146px;}
.x55_c01012{left:317.523712px;}
.x3a_c01012{left:319.609500px;}
.x16_c01012{left:322.845000px;}
.xf_c01012{left:324.578261px;}
.x5f_c01012{left:328.128000px;}
.x33_c01012{left:332.432072px;}
.x2d_c01012{left:333.475455px;}
.x2_c01012{left:336.237000px;}
.x56_c01012{left:340.542600px;}
.x4d_c01012{left:352.876650px;}
.x7_c01012{left:356.631000px;}
.x21_c01012{left:365.602500px;}
.x17_c01012{left:366.636000px;}
.x43_c01012{left:373.442137px;}
.x4e_c01012{left:395.025038px;}
.x60_c01012{left:416.724000px;}
.x1_c01012{left:423.900000px;}
.x3b_c01012{left:430.072500px;}
.x22_c01012{left:432.292500px;}
.x44_c01012{left:440.151487px;}
.x10_c01012{left:443.675894px;}
.x3_c01012{left:446.322804px;}
.x57_c01012{left:449.288175px;}
.x61_c01012{left:450.753000px;}
.x18_c01012{left:454.435500px;}
.x4f_c01012{left:460.937550px;}
.x3c_c01012{left:463.555500px;}
.x11_c01012{left:477.443363px;}
.x4_c01012{left:480.594998px;}
.x62_c01012{left:482.292000px;}
.x19_c01012{left:487.384500px;}
.x45_c01012{left:494.510362px;}
.x8_c01012{left:500.908500px;}
.x58_c01012{left:504.979650px;}
.x3d_c01012{left:507.571500px;}
.x23_c01012{left:520.057500px;}
.x59_c01012{left:527.868000px;}
.x2e_c01012{left:529.860295px;}
.x5_c01012{left:534.275763px;}
.x50_c01012{left:537.693975px;}
.x12_c01012{left:544.696266px;}
.x1e_c01012{left:550.312344px;}
.x46_c01012{left:551.449725px;}
.x24_c01012{left:553.006500px;}
.x9_c01012{left:555.397500px;}
.x51_c01012{left:561.399638px;}
.x1a_c01012{left:564.891000px;}
.x3e_c01012{left:573.471000px;}
.x2f_c01012{left:584.956239px;}
.x5a_c01012{left:615.399450px;}
.x25_c01012{left:619.467000px;}
.x47_c01012{left:637.626937px;}
.x30_c01012{left:648.086310px;}
.x34_c01012{left:650.846384px;}
.xa_c01012{left:655.137000px;}
.x52_c01012{left:659.467275px;}
.x3f_c01012{left:672.597000px;}
.x5b_c01012{left:682.402312px;}
.x1b_c01012{left:686.214000px;}
.xb_c01012{left:688.276500px;}
.x48_c01012{left:693.606112px;}
.x13_c01012{left:697.856937px;}
.x26_c01012{left:708.307500px;}
.x35_c01012{left:717.547653px;}
.x1c_c01012{left:719.115000px;}
.x53_c01012{left:738.885150px;}
.x14_c01012{left:742.011080px;}
.x1d_c01012{left:751.764000px;}
.x49_c01012{left:760.755038px;}
.x36_c01012{left:771.898989px;}
.xc_c01012{left:776.403000px;}
.x5c_c01012{left:782.445300px;}
.x4a_c01012{left:783.517575px;}
.x37_c01012{left:794.858779px;}
.x27_c01012{left:796.617000px;}
.x31_c01012{left:806.236988px;}
@media print{
.v0_c01012{vertical-align:0.000000pt;}
.ls0_c01012{letter-spacing:0.000000pt;}
.ws0_c01012{word-spacing:0.000000pt;}
._0_c01012{width:38.065677pt;}
.fs0_c01012{font-size:16.000000pt;}
.fs5_c01012{font-size:16.002048pt;}
.fs8_c01012{font-size:58.675143pt;}
.fs1_c01012{font-size:63.975227pt;}
.fs7_c01012{font-size:64.009247pt;}
.fs2_c01012{font-size:64.016926pt;}
.fsb_c01012{font-size:64.019997pt;}
.fsc_c01012{font-size:69.342207pt;}
.fs6_c01012{font-size:69.343351pt;}
.fs3_c01012{font-size:69.351670pt;}
.fs9_c01012{font-size:69.354997pt;}
.fs4_c01012{font-size:74.676223pt;}
.fsa_c01012{font-size:80.024996pt;}
.y0_c01012{bottom:0.000000pt;}
.y76_c01012{bottom:571.828267pt;}
.y75_c01012{bottom:572.276821pt;}
.y74_c01012{bottom:572.760789pt;}
.y73_c01012{bottom:574.020821pt;}
.y72_c01012{bottom:574.777323pt;}
.y71_c01012{bottom:575.714773pt;}
.y70_c01012{bottom:576.482667pt;}
.y6f_c01012{bottom:596.240167pt;}
.y6e_c01012{bottom:598.019067pt;}
.y6d_c01012{bottom:599.210500pt;}
.y6c_c01012{bottom:600.766067pt;}
.y6b_c01012{bottom:601.173300pt;}
.y6a_c01012{bottom:602.162733pt;}
.y69_c01012{bottom:603.500033pt;}
.y68_c01012{bottom:604.096333pt;}
.y67_c01012{bottom:604.505133pt;}
.y66_c01012{bottom:606.033067pt;}
.y65_c01012{bottom:606.632000pt;}
.y64_c01012{bottom:607.415000pt;}
.y63_c01012{bottom:629.276200pt;}
.y62_c01012{bottom:630.547400pt;}
.y61_c01012{bottom:632.116967pt;}
.y60_c01012{bottom:632.495667pt;}
.y5f_c01012{bottom:633.723733pt;}
.y5e_c01012{bottom:634.778867pt;}
.y5d_c01012{bottom:635.452667pt;}
.y5c_c01012{bottom:637.034133pt;}
.y5b_c01012{bottom:637.393333pt;}
.y5a_c01012{bottom:638.623733pt;}
.y59_c01012{bottom:661.315667pt;}
.y58_c01012{bottom:661.660067pt;}
.y57_c01012{bottom:662.674633pt;}
.y56_c01012{bottom:663.521033pt;}
.y55_c01012{bottom:664.823700pt;}
.y54_c01012{bottom:665.684767pt;}
.y53_c01012{bottom:666.505833pt;}
.y52_c01012{bottom:667.513300pt;}
.y51_c01012{bottom:668.807467pt;}
.y50_c01012{bottom:669.316300pt;}
.y4f_c01012{bottom:670.794367pt;}
.y4e_c01012{bottom:692.470567pt;}
.y4d_c01012{bottom:693.449767pt;}
.y4c_c01012{bottom:695.652567pt;}
.y4b_c01012{bottom:697.117000pt;}
.y4a_c01012{bottom:698.095133pt;}
.y49_c01012{bottom:698.839200pt;}
.y48_c01012{bottom:701.293933pt;}
.y47_c01012{bottom:702.488000pt;}
.y46_c01012{bottom:731.858960pt;}
.y45_c01012{bottom:731.859559pt;}
.y44_c01012{bottom:731.859644pt;}
.y43_c01012{bottom:731.859923pt;}
.y42_c01012{bottom:757.109629pt;}
.y41_c01012{bottom:757.415232pt;}
.y40_c01012{bottom:758.140513pt;}
.y3f_c01012{bottom:759.029743pt;}
.y3e_c01012{bottom:760.341012pt;}
.y3d_c01012{bottom:761.950083pt;}
.y3c_c01012{bottom:763.275840pt;}
.y3b_c01012{bottom:764.010917pt;}
.y3a_c01012{bottom:765.590985pt;}
.y39_c01012{bottom:787.101073pt;}
.y38_c01012{bottom:787.871227pt;}
.y37_c01012{bottom:789.350865pt;}
.y36_c01012{bottom:790.248815pt;}
.y35_c01012{bottom:791.032028pt;}
.y34_c01012{bottom:792.423364pt;}
.y33_c01012{bottom:793.824904pt;}
.y32_c01012{bottom:794.305707pt;}
.y31_c01012{bottom:794.935367pt;}
.y30_c01012{bottom:795.249745pt;}
.y2f_c01012{bottom:795.857551pt;}
.y2e_c01012{bottom:796.317817pt;}
.y2d_c01012{bottom:818.288744pt;}
.y2c_c01012{bottom:819.623199pt;}
.y2b_c01012{bottom:820.965677pt;}
.y2a_c01012{bottom:821.969969pt;}
.y29_c01012{bottom:822.467865pt;}
.y28_c01012{bottom:823.794092pt;}
.y27_c01012{bottom:824.801852pt;}
.y26_c01012{bottom:825.458981pt;}
.y25_c01012{bottom:825.944569pt;}
.y24_c01012{bottom:826.931861pt;}
.y23_c01012{bottom:827.420351pt;}
.y22_c01012{bottom:827.922667pt;}
.y21_c01012{bottom:849.899029pt;}
.y20_c01012{bottom:850.293440pt;}
.y1f_c01012{bottom:850.757781pt;}
.y1e_c01012{bottom:851.225707pt;}
.y1d_c01012{bottom:852.951189pt;}
.y1c_c01012{bottom:854.053504pt;}
.y1b_c01012{bottom:854.522112pt;}
.y1a_c01012{bottom:855.770816pt;}
.y19_c01012{bottom:856.393621pt;}
.y18_c01012{bottom:858.104939pt;}
.y17_c01012{bottom:858.722667pt;}
.y16_c01012{bottom:882.428484pt;}
.y15_c01012{bottom:882.977671pt;}
.y14_c01012{bottom:884.884308pt;}
.y13_c01012{bottom:885.721639pt;}
.y12_c01012{bottom:886.142520pt;}
.y11_c01012{bottom:887.624901pt;}
.y10_c01012{bottom:888.313743pt;}
.yf_c01012{bottom:888.867715pt;}
.ye_c01012{bottom:889.674369pt;}
.yd_c01012{bottom:912.927191pt;}
.yc_c01012{bottom:914.728888pt;}
.yb_c01012{bottom:915.406407pt;}
.ya_c01012{bottom:917.445525pt;}
.y9_c01012{bottom:918.559523pt;}
.y8_c01012{bottom:919.681677pt;}
.y7_c01012{bottom:921.509196pt;}
.y6_c01012{bottom:923.286667pt;}
.y5_c01012{bottom:997.047293pt;}
.y4_c01012{bottom:998.719033pt;}
.y3_c01012{bottom:999.786347pt;}
.y2_c01012{bottom:1003.214667pt;}
.y1_c01012{bottom:1098.480000pt;}
.h2_c01012{height:16.000000pt;}
.h7_c01012{height:16.002048pt;}
.hb_c01012{height:58.675143pt;}
.h3_c01012{height:63.975227pt;}
.ha_c01012{height:64.009247pt;}
.h4_c01012{height:64.016926pt;}
.he_c01012{height:64.019997pt;}
.hf_c01012{height:69.342207pt;}
.h8_c01012{height:69.343351pt;}
.h5_c01012{height:69.351670pt;}
.hc_c01012{height:69.354997pt;}
.h9_c01012{height:69.460702pt;}
.h6_c01012{height:74.676223pt;}
.hd_c01012{height:80.024996pt;}
.h0_c01012{height:1107.840000pt;}
.h1_c01012{height:1108.000000pt;}
.w0_c01012{width:796.533333pt;}
.w1_c01012{width:796.666667pt;}
.x0_c01012{left:0.000000pt;}
.x4b_c01012{left:137.514667pt;}
.x40_c01012{left:138.907300pt;}
.x28_c01012{left:140.679997pt;}
.xd_c01012{left:142.101044pt;}
.x29_c01012{left:169.480496pt;}
.x1f_c01012{left:170.950667pt;}
.x54_c01012{left:175.928700pt;}
.x15_c01012{left:180.016000pt;}
.x5d_c01012{left:185.797333pt;}
.xe_c01012{left:199.735640pt;}
.x4c_c01012{left:205.835933pt;}
.x2a_c01012{left:207.430464pt;}
.x41_c01012{left:225.887367pt;}
.x2b_c01012{left:227.100137pt;}
.x39_c01012{left:236.334667pt;}
.x6_c01012{left:239.724000pt;}
.x5e_c01012{left:244.388000pt;}
.x32_c01012{left:246.528187pt;}
.x42_c01012{left:255.846700pt;}
.x20_c01012{left:257.761333pt;}
.x2c_c01012{left:266.414128pt;}
.x38_c01012{left:276.262352pt;}
.x55_c01012{left:282.243300pt;}
.x3a_c01012{left:284.097333pt;}
.x16_c01012{left:286.973333pt;}
.xf_c01012{left:288.514009pt;}
.x5f_c01012{left:291.669333pt;}
.x33_c01012{left:295.495175pt;}
.x2d_c01012{left:296.422627pt;}
.x2_c01012{left:298.877333pt;}
.x56_c01012{left:302.704533pt;}
.x4d_c01012{left:313.668133pt;}
.x7_c01012{left:317.005333pt;}
.x21_c01012{left:324.980000pt;}
.x17_c01012{left:325.898667pt;}
.x43_c01012{left:331.948567pt;}
.x4e_c01012{left:351.133367pt;}
.x60_c01012{left:370.421333pt;}
.x1_c01012{left:376.800000pt;}
.x3b_c01012{left:382.286667pt;}
.x22_c01012{left:384.260000pt;}
.x44_c01012{left:391.245767pt;}
.x10_c01012{left:394.378572pt;}
.x3_c01012{left:396.731381pt;}
.x57_c01012{left:399.367267pt;}
.x61_c01012{left:400.669333pt;}
.x18_c01012{left:403.942667pt;}
.x4f_c01012{left:409.722267pt;}
.x3c_c01012{left:412.049333pt;}
.x11_c01012{left:424.394100pt;}
.x4_c01012{left:427.195553pt;}
.x62_c01012{left:428.704000pt;}
.x19_c01012{left:433.230667pt;}
.x45_c01012{left:439.564767pt;}
.x8_c01012{left:445.252000pt;}
.x58_c01012{left:448.870800pt;}
.x3d_c01012{left:451.174667pt;}
.x23_c01012{left:462.273333pt;}
.x59_c01012{left:469.216000pt;}
.x2e_c01012{left:470.986929pt;}
.x5_c01012{left:474.911789pt;}
.x50_c01012{left:477.950200pt;}
.x12_c01012{left:484.174459pt;}
.x1e_c01012{left:489.166528pt;}
.x46_c01012{left:490.177533pt;}
.x24_c01012{left:491.561333pt;}
.x9_c01012{left:493.686667pt;}
.x51_c01012{left:499.021900pt;}
.x1a_c01012{left:502.125333pt;}
.x3e_c01012{left:509.752000pt;}
.x2f_c01012{left:519.961101pt;}
.x5a_c01012{left:547.021733pt;}
.x25_c01012{left:550.637333pt;}
.x47_c01012{left:566.779500pt;}
.x30_c01012{left:576.076720pt;}
.x34_c01012{left:578.530119pt;}
.xa_c01012{left:582.344000pt;}
.x52_c01012{left:586.193133pt;}
.x3f_c01012{left:597.864000pt;}
.x5b_c01012{left:606.579833pt;}
.x1b_c01012{left:609.968000pt;}
.xb_c01012{left:611.801333pt;}
.x48_c01012{left:616.538767pt;}
.x13_c01012{left:620.317277pt;}
.x26_c01012{left:629.606667pt;}
.x35_c01012{left:637.820136pt;}
.x1c_c01012{left:639.213333pt;}
.x53_c01012{left:656.786800pt;}
.x14_c01012{left:659.565404pt;}
.x1d_c01012{left:668.234667pt;}
.x49_c01012{left:676.226700pt;}
.x36_c01012{left:686.132435pt;}
.xc_c01012{left:690.136000pt;}
.x5c_c01012{left:695.506933pt;}
.x4a_c01012{left:696.460067pt;}
.x37_c01012{left:706.541137pt;}
.x27_c01012{left:708.104000pt;}
.x31_c01012{left:716.655100pt;}
}





/* 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_c01013 {
    display:none;
  }
  .loading-indicator_c01013.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01013 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_c01013 { 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_c01013" -> "#page-container .classname_c01013")
 */
.pf_c01013 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01013 { /* 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_c01013.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01013 { /* 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_c01013 { /* 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_c01013 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01013 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01013 {overflow:visible;}
  }
}
.c_c01013 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01013 { /* 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_c01013:after { /* webkit #35443 */
  content: '';
}
.t_c01013:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01013 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 */
}
.__c01013 { /* 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_c01013 { /* info for Javascript */
  display:none;
}
.l_c01013 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01013 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01013 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01013: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_c01013 {
    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_c01013.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01013.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_c01013 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01013{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01013;src:url('chunks/assets/font_cfe63ee56e9e10a97d33a3db.woff2')format("woff");}.ff1_c01013{font-family:ff1_c01013;line-height:1.000000;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;}
.m8_c01013{transform:matrix(0.007490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.007490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.007490,0.000000,0.000000,0.250000,0,0);}
.m1b_c01013{transform:matrix(0.013255,-0.000053,0.001000,0.249998,0,0);-ms-transform:matrix(0.013255,-0.000053,0.001000,0.249998,0,0);-webkit-transform:matrix(0.013255,-0.000053,0.001000,0.249998,0,0);}
.m3b_c01013{transform:matrix(0.031820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.031820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.031820,0.000000,0.000000,0.250000,0,0);}
.m46_c01013{transform:matrix(0.057365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.057365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.057365,0.000000,0.000000,0.250000,0,0);}
.m4a_c01013{transform:matrix(0.065600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065600,0.000000,0.000000,0.250000,0,0);}
.m40_c01013{transform:matrix(0.072035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072035,0.000000,0.000000,0.250000,0,0);}
.m4e_c01013{transform:matrix(0.079550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.079550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.079550,0.000000,0.000000,0.250000,0,0);}
.m42_c01013{transform:matrix(0.081125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.081125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.081125,0.000000,0.000000,0.250000,0,0);}
.m3f_c01013{transform:matrix(0.087865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087865,0.000000,0.000000,0.250000,0,0);}
.m47_c01013{transform:matrix(0.096775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096775,0.000000,0.000000,0.250000,0,0);}
.m49_c01013{transform:matrix(0.106130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106130,0.000000,0.000000,0.250000,0,0);}
.m29_c01013{transform:matrix(0.107145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107145,0.000000,0.000000,0.250000,0,0);}
.m3c_c01013{transform:matrix(0.112500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112500,0.000000,0.000000,0.250000,0,0);}
.m4_c01013{transform:matrix(0.114255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114255,0.000000,0.000000,0.250000,0,0);}
.m48_c01013{transform:matrix(0.119590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119590,0.000000,0.000000,0.250000,0,0);}
.m3d_c01013{transform:matrix(0.125780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125780,0.000000,0.000000,0.250000,0,0);}
.m3_c01013{transform:matrix(0.133740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133740,0.000000,0.000000,0.250000,0,0);}
.m4b_c01013{transform:matrix(0.144070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144070,0.000000,0.000000,0.250000,0,0);}
.m2_c01013{transform:matrix(0.152175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152175,0.000000,0.000000,0.250000,0,0);}
.m1c_c01013{transform:matrix(0.166034,-0.000664,0.001000,0.249998,0,0);-ms-transform:matrix(0.166034,-0.000664,0.001000,0.249998,0,0);-webkit-transform:matrix(0.166034,-0.000664,0.001000,0.249998,0,0);}
.m30_c01013{transform:matrix(0.168650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168650,0.000000,0.000000,0.250000,0,0);}
.mb_c01013{transform:matrix(0.169065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169065,0.000000,0.000000,0.250000,0,0);}
.m4f_c01013{transform:matrix(0.174445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174445,0.000000,0.000000,0.250000,0,0);}
.m3e_c01013{transform:matrix(0.176090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176090,0.000000,0.000000,0.250000,0,0);}
.me_c01013{transform:matrix(0.176430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176430,0.000000,0.000000,0.250000,0,0);}
.m35_c01013{transform:matrix(0.177685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177685,0.000000,0.000000,0.250000,0,0);}
.m28_c01013{transform:matrix(0.178365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178365,0.000000,0.000000,0.250000,0,0);}
.m2b_c01013{transform:matrix(0.180125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180125,0.000000,0.000000,0.250000,0,0);}
.ma_c01013{transform:matrix(0.186615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186615,0.000000,0.000000,0.250000,0,0);}
.m44_c01013{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m37_c01013{transform:matrix(0.192885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192885,0.000000,0.000000,0.250000,0,0);}
.m34_c01013{transform:matrix(0.193450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193450,0.000000,0.000000,0.250000,0,0);}
.m27_c01013{transform:matrix(0.194540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194540,0.000000,0.000000,0.250000,0,0);}
.m7_c01013{transform:matrix(0.196470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196470,0.000000,0.000000,0.250000,0,0);}
.m2a_c01013{transform:matrix(0.198315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198315,0.000000,0.000000,0.250000,0,0);}
.m23_c01013{transform:matrix(0.199068,-0.000796,0.001000,0.249998,0,0);-ms-transform:matrix(0.199068,-0.000796,0.001000,0.249998,0,0);-webkit-transform:matrix(0.199068,-0.000796,0.001000,0.249998,0,0);}
.m36_c01013{transform:matrix(0.199255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199255,0.000000,0.000000,0.250000,0,0);}
.m1d_c01013{transform:matrix(0.199528,-0.000798,0.001000,0.249998,0,0);-ms-transform:matrix(0.199528,-0.000798,0.001000,0.249998,0,0);-webkit-transform:matrix(0.199528,-0.000798,0.001000,0.249998,0,0);}
.m1e_c01013{transform:matrix(0.200113,-0.000800,0.001000,0.249998,0,0);-ms-transform:matrix(0.200113,-0.000800,0.001000,0.249998,0,0);-webkit-transform:matrix(0.200113,-0.000800,0.001000,0.249998,0,0);}
.m4d_c01013{transform:matrix(0.200300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200300,0.000000,0.000000,0.250000,0,0);}
.m13_c01013{transform:matrix(0.204905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204905,0.000000,0.000000,0.250000,0,0);}
.m26_c01013{transform:matrix(0.207113,-0.000828,0.001000,0.249998,0,0);-ms-transform:matrix(0.207113,-0.000828,0.001000,0.249998,0,0);-webkit-transform:matrix(0.207113,-0.000828,0.001000,0.249998,0,0);}
.m1f_c01013{transform:matrix(0.208563,-0.000834,0.001000,0.249998,0,0);-ms-transform:matrix(0.208563,-0.000834,0.001000,0.249998,0,0);-webkit-transform:matrix(0.208563,-0.000834,0.001000,0.249998,0,0);}
.m21_c01013{transform:matrix(0.208568,-0.000834,0.001000,0.249998,0,0);-ms-transform:matrix(0.208568,-0.000834,0.001000,0.249998,0,0);-webkit-transform:matrix(0.208568,-0.000834,0.001000,0.249998,0,0);}
.m22_c01013{transform:matrix(0.208853,-0.000835,0.001000,0.249998,0,0);-ms-transform:matrix(0.208853,-0.000835,0.001000,0.249998,0,0);-webkit-transform:matrix(0.208853,-0.000835,0.001000,0.249998,0,0);}
.m32_c01013{transform:matrix(0.209185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209185,0.000000,0.000000,0.250000,0,0);}
.m14_c01013{transform:matrix(0.225530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225530,0.000000,0.000000,0.250000,0,0);}
.m24_c01013{transform:matrix(0.227108,-0.000908,0.001000,0.249998,0,0);-ms-transform:matrix(0.227108,-0.000908,0.001000,0.249998,0,0);-webkit-transform:matrix(0.227108,-0.000908,0.001000,0.249998,0,0);}
.m2f_c01013{transform:matrix(0.228615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228615,0.000000,0.000000,0.250000,0,0);}
.md_c01013{transform:matrix(0.229125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229125,0.000000,0.000000,0.250000,0,0);}
.m15_c01013{transform:matrix(0.238090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238090,0.000000,0.000000,0.250000,0,0);}
.mf_c01013{transform:matrix(0.243925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243925,0.000000,0.000000,0.250000,0,0);}
.m4c_c01013{transform:matrix(0.245215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245215,0.000000,0.000000,0.250000,0,0);}
.m39_c01013{transform:matrix(0.250625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250625,0.000000,0.000000,0.250000,0,0);}
.m12_c01013{transform:matrix(0.253585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253585,0.000000,0.000000,0.250000,0,0);}
.m20_c01013{transform:matrix(0.264253,-0.001057,0.001000,0.249998,0,0);-ms-transform:matrix(0.264253,-0.001057,0.001000,0.249998,0,0);-webkit-transform:matrix(0.264253,-0.001057,0.001000,0.249998,0,0);}
.mc_c01013{transform:matrix(0.265830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265830,0.000000,0.000000,0.250000,0,0);}
.m3a_c01013{transform:matrix(0.268330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268330,0.000000,0.000000,0.250000,0,0);}
.m43_c01013{transform:matrix(0.279275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279275,0.000000,0.000000,0.250000,0,0);}
.m2c_c01013{transform:matrix(0.281260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281260,0.000000,0.000000,0.250000,0,0);}
.m6_c01013{transform:matrix(0.281825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281825,0.000000,0.000000,0.250000,0,0);}
.m1_c01013{transform:matrix(0.290245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290245,0.000000,0.000000,0.250000,0,0);}
.m2d_c01013{transform:matrix(0.294165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294165,0.000000,0.000000,0.250000,0,0);}
.m25_c01013{transform:matrix(0.316812,-0.001267,0.001000,0.249998,0,0);-ms-transform:matrix(0.316812,-0.001267,0.001000,0.249998,0,0);-webkit-transform:matrix(0.316812,-0.001267,0.001000,0.249998,0,0);}
.m41_c01013{transform:matrix(0.318395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318395,0.000000,0.000000,0.250000,0,0);}
.m11_c01013{transform:matrix(0.326485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326485,0.000000,0.000000,0.250000,0,0);}
.m45_c01013{transform:matrix(0.337125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337125,0.000000,0.000000,0.250000,0,0);}
.m2e_c01013{transform:matrix(0.349660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349660,0.000000,0.000000,0.250000,0,0);}
.m5_c01013{transform:matrix(0.360080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360080,0.000000,0.000000,0.250000,0,0);}
.m50_c01013{transform:matrix(0.378175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378175,0.000000,0.000000,0.250000,0,0);}
.m16_c01013{transform:matrix(0.378897,-0.001516,0.001000,0.249998,0,0);-ms-transform:matrix(0.378897,-0.001516,0.001000,0.249998,0,0);-webkit-transform:matrix(0.378897,-0.001516,0.001000,0.249998,0,0);}
.m38_c01013{transform:matrix(0.461005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461005,0.000000,0.000000,0.250000,0,0);}
.m33_c01013{transform:matrix(0.476055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.476055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.476055,0.000000,0.000000,0.250000,0,0);}
.m10_c01013{transform:matrix(0.478175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478175,0.000000,0.000000,0.250000,0,0);}
.m9_c01013{transform:matrix(0.516430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516430,0.000000,0.000000,0.250000,0,0);}
.m0_c01013{transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665865,0.000000,0.000000,0.250000,0,0);}
.m31_c01013{transform:matrix(0.833785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.833785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.833785,0.000000,0.000000,0.250000,0,0);}
.m1a_c01013{transform:matrix(0.982837,-0.003931,0.001000,0.249998,0,0);-ms-transform:matrix(0.982837,-0.003931,0.001000,0.249998,0,0);-webkit-transform:matrix(0.982837,-0.003931,0.001000,0.249998,0,0);}
.m18_c01013{transform:matrix(1.250445,-0.005002,0.001000,0.249998,0,0);-ms-transform:matrix(1.250445,-0.005002,0.001000,0.249998,0,0);-webkit-transform:matrix(1.250445,-0.005002,0.001000,0.249998,0,0);}
.m19_c01013{transform:matrix(1.338064,-0.005352,0.001000,0.249998,0,0);-ms-transform:matrix(1.338064,-0.005352,0.001000,0.249998,0,0);-webkit-transform:matrix(1.338064,-0.005352,0.001000,0.249998,0,0);}
.m17_c01013{transform:matrix(1.521923,-0.006088,0.001000,0.249998,0,0);-ms-transform:matrix(1.521923,-0.006088,0.001000,0.249998,0,0);-webkit-transform:matrix(1.521923,-0.006088,0.001000,0.249998,0,0);}
.v0_c01013{vertical-align:0.000000px;}
.ls0_c01013{letter-spacing:0.000000px;}
.sc__c01013{text-shadow:none;}
.sc0_c01013{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__c01013{-webkit-text-stroke:0px transparent;}
.sc0_c01013{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01013{word-spacing:0.000000px;}
._0_c01013{width:3516.037712px;}
.fc0_c01013{color:transparent;}
.fs1_c01013{font-size:18.000000px;}
.fs8_c01013{font-size:24.000000px;}
.fs4_c01013{font-size:84.000672px;}
.fs3_c01013{font-size:96.000000px;}
.fs7_c01013{font-size:102.000000px;}
.fs5_c01013{font-size:102.000816px;}
.fs2_c01013{font-size:114.000000px;}
.fs6_c01013{font-size:126.000000px;}
.fs0_c01013{font-size:210.000000px;}
.y0_c01013{bottom:0.000000px;}
.y25_c01013{bottom:404.062500px;}
.y24_c01013{bottom:413.368500px;}
.y23_c01013{bottom:427.125000px;}
.y22_c01013{bottom:432.225000px;}
.y21_c01013{bottom:455.221500px;}
.y20_c01013{bottom:487.081500px;}
.y1f_c01013{bottom:502.770000px;}
.y1e_c01013{bottom:545.671500px;}
.y1d_c01013{bottom:556.650000px;}
.y1a_c01013{bottom:570.240000px;}
.y1b_c01013{bottom:572.583000px;}
.y1c_c01013{bottom:573.609000px;}
.y19_c01013{bottom:575.575500px;}
.y18_c01013{bottom:582.660000px;}
.y17_c01013{bottom:593.190000px;}
.y16_c01013{bottom:598.458000px;}
.y15_c01013{bottom:611.323500px;}
.y14_c01013{bottom:647.175000px;}
.y13_c01013{bottom:682.904580px;}
.yf_c01013{bottom:682.904592px;}
.y12_c01013{bottom:682.904706px;}
.ye_c01013{bottom:682.905072px;}
.y11_c01013{bottom:682.905192px;}
.y10_c01013{bottom:682.905252px;}
.yd_c01013{bottom:682.905732px;}
.yc_c01013{bottom:682.905798px;}
.yb_c01013{bottom:682.906464px;}
.y5_c01013{bottom:716.040000px;}
.y6_c01013{bottom:716.192274px;}
.y7_c01013{bottom:717.293268px;}
.y8_c01013{bottom:717.870012px;}
.y9_c01013{bottom:718.573032px;}
.ya_c01013{bottom:719.440368px;}
.y4_c01013{bottom:826.515000px;}
.y3_c01013{bottom:861.082500px;}
.y2_c01013{bottom:886.779000px;}
.y1_c01013{bottom:897.868500px;}
.h3_c01013{height:18.000000px;}
.ha_c01013{height:24.000000px;}
.h6_c01013{height:84.000672px;}
.h5_c01013{height:96.000000px;}
.h9_c01013{height:102.000000px;}
.h7_c01013{height:102.000816px;}
.h4_c01013{height:114.000000px;}
.h8_c01013{height:126.000000px;}
.h2_c01013{height:210.000000px;}
.h0_c01013{height:1246.320000px;}
.h1_c01013{height:1246.500000px;}
.w0_c01013{width:896.100000px;}
.w1_c01013{width:896.250000px;}
.x0_c01013{left:0.000000px;}
.x3d_c01013{left:1.078500px;}
.x39_c01013{left:4.344000px;}
.x13_c01013{left:6.325500px;}
.x6_c01013{left:8.100000px;}
.x19_c01013{left:16.199190px;}
.x41_c01013{left:21.328500px;}
.x8_c01013{left:22.410000px;}
.x1_c01013{left:36.450000px;}
.x9_c01013{left:40.230000px;}
.x14_c01013{left:44.394000px;}
.x2d_c01013{left:46.440000px;}
.x4a_c01013{left:47.518500px;}
.x35_c01013{left:54.810000px;}
.x3b_c01013{left:67.768500px;}
.x44_c01013{left:69.928500px;}
.x3e_c01013{left:73.438500px;}
.x43_c01013{left:84.508500px;}
.xa_c01013{left:85.860000px;}
.x46_c01013{left:88.558500px;}
.x3f_c01013{left:89.908500px;}
.x10_c01013{left:99.090000px;}
.x38_c01013{left:119.070000px;}
.xb_c01013{left:148.770000px;}
.x1a_c01013{left:157.409952px;}
.x11_c01013{left:179.820000px;}
.x2_c01013{left:193.860000px;}
.x24_c01013{left:214.920000px;}
.x2e_c01013{left:235.710000px;}
.x1b_c01013{left:238.411248px;}
.x12_c01013{left:243.810000px;}
.xc_c01013{left:245.700000px;}
.x3_c01013{left:278.370000px;}
.xd_c01013{left:281.340000px;}
.x25_c01013{left:282.420000px;}
.xe_c01013{left:314.550000px;}
.x15_c01013{left:319.642500px;}
.x36_c01013{left:320.760000px;}
.x7_c01013{left:335.340000px;}
.x1c_c01013{left:337.771338px;}
.x4_c01013{left:345.600000px;}
.x1d_c01013{left:357.481656px;}
.xf_c01013{left:369.900000px;}
.x26_c01013{left:393.930000px;}
.x47_c01013{left:413.908500px;}
.x2f_c01013{left:414.990000px;}
.x5_c01013{left:423.900000px;}
.x1e_c01013{left:436.862928px;}
.x30_c01013{left:448.470000px;}
.x27_c01013{left:449.820000px;}
.x16_c01013{left:463.828500px;}
.x31_c01013{left:480.330000px;}
.x42_c01013{left:502.738500px;}
.x1f_c01013{left:504.904014px;}
.x48_c01013{left:517.048500px;}
.x28_c01013{left:525.150000px;}
.x40_c01013{left:542.428500px;}
.x20_c01013{left:550.264740px;}
.x29_c01013{left:559.980000px;}
.x3a_c01013{left:565.654500px;}
.x32_c01013{left:569.160000px;}
.x2a_c01013{left:573.480000px;}
.x33_c01013{left:623.970000px;}
.x45_c01013{left:629.638500px;}
.x37_c01013{left:637.200000px;}
.x17_c01013{left:639.583500px;}
.x21_c01013{left:649.894836px;}
.x2b_c01013{left:667.710000px;}
.x22_c01013{left:676.895268px;}
.x34_c01013{left:691.200000px;}
.x2c_c01013{left:706.590000px;}
.x3c_c01013{left:726.028500px;}
.x49_c01013{left:754.378500px;}
.x23_c01013{left:774.365328px;}
.x18_c01013{left:856.417500px;}
@media print{
.v0_c01013{vertical-align:0.000000pt;}
.ls0_c01013{letter-spacing:0.000000pt;}
.ws0_c01013{word-spacing:0.000000pt;}
._0_c01013{width:3125.366855pt;}
.fs1_c01013{font-size:16.000000pt;}
.fs8_c01013{font-size:21.333333pt;}
.fs4_c01013{font-size:74.667264pt;}
.fs3_c01013{font-size:85.333333pt;}
.fs7_c01013{font-size:90.666667pt;}
.fs5_c01013{font-size:90.667392pt;}
.fs2_c01013{font-size:101.333333pt;}
.fs6_c01013{font-size:112.000000pt;}
.fs0_c01013{font-size:186.666667pt;}
.y0_c01013{bottom:0.000000pt;}
.y25_c01013{bottom:359.166667pt;}
.y24_c01013{bottom:367.438667pt;}
.y23_c01013{bottom:379.666667pt;}
.y22_c01013{bottom:384.200000pt;}
.y21_c01013{bottom:404.641333pt;}
.y20_c01013{bottom:432.961333pt;}
.y1f_c01013{bottom:446.906667pt;}
.y1e_c01013{bottom:485.041333pt;}
.y1d_c01013{bottom:494.800000pt;}
.y1a_c01013{bottom:506.880000pt;}
.y1b_c01013{bottom:508.962667pt;}
.y1c_c01013{bottom:509.874667pt;}
.y19_c01013{bottom:511.622667pt;}
.y18_c01013{bottom:517.920000pt;}
.y17_c01013{bottom:527.280000pt;}
.y16_c01013{bottom:531.962667pt;}
.y15_c01013{bottom:543.398667pt;}
.y14_c01013{bottom:575.266667pt;}
.y13_c01013{bottom:607.026293pt;}
.yf_c01013{bottom:607.026304pt;}
.y12_c01013{bottom:607.026405pt;}
.ye_c01013{bottom:607.026731pt;}
.y11_c01013{bottom:607.026837pt;}
.y10_c01013{bottom:607.026891pt;}
.yd_c01013{bottom:607.027317pt;}
.yc_c01013{bottom:607.027376pt;}
.yb_c01013{bottom:607.027968pt;}
.y5_c01013{bottom:636.480000pt;}
.y6_c01013{bottom:636.615355pt;}
.y7_c01013{bottom:637.594016pt;}
.y8_c01013{bottom:638.106677pt;}
.y9_c01013{bottom:638.731584pt;}
.ya_c01013{bottom:639.502549pt;}
.y4_c01013{bottom:734.680000pt;}
.y3_c01013{bottom:765.406667pt;}
.y2_c01013{bottom:788.248000pt;}
.y1_c01013{bottom:798.105333pt;}
.h3_c01013{height:16.000000pt;}
.ha_c01013{height:21.333333pt;}
.h6_c01013{height:74.667264pt;}
.h5_c01013{height:85.333333pt;}
.h9_c01013{height:90.666667pt;}
.h7_c01013{height:90.667392pt;}
.h4_c01013{height:101.333333pt;}
.h8_c01013{height:112.000000pt;}
.h2_c01013{height:186.666667pt;}
.h0_c01013{height:1107.840000pt;}
.h1_c01013{height:1108.000000pt;}
.w0_c01013{width:796.533333pt;}
.w1_c01013{width:796.666667pt;}
.x0_c01013{left:0.000000pt;}
.x3d_c01013{left:0.958667pt;}
.x39_c01013{left:3.861333pt;}
.x13_c01013{left:5.622667pt;}
.x6_c01013{left:7.200000pt;}
.x19_c01013{left:14.399280pt;}
.x41_c01013{left:18.958667pt;}
.x8_c01013{left:19.920000pt;}
.x1_c01013{left:32.400000pt;}
.x9_c01013{left:35.760000pt;}
.x14_c01013{left:39.461333pt;}
.x2d_c01013{left:41.280000pt;}
.x4a_c01013{left:42.238667pt;}
.x35_c01013{left:48.720000pt;}
.x3b_c01013{left:60.238667pt;}
.x44_c01013{left:62.158667pt;}
.x3e_c01013{left:65.278667pt;}
.x43_c01013{left:75.118667pt;}
.xa_c01013{left:76.320000pt;}
.x46_c01013{left:78.718667pt;}
.x3f_c01013{left:79.918667pt;}
.x10_c01013{left:88.080000pt;}
.x38_c01013{left:105.840000pt;}
.xb_c01013{left:132.240000pt;}
.x1a_c01013{left:139.919957pt;}
.x11_c01013{left:159.840000pt;}
.x2_c01013{left:172.320000pt;}
.x24_c01013{left:191.040000pt;}
.x2e_c01013{left:209.520000pt;}
.x1b_c01013{left:211.921109pt;}
.x12_c01013{left:216.720000pt;}
.xc_c01013{left:218.400000pt;}
.x3_c01013{left:247.440000pt;}
.xd_c01013{left:250.080000pt;}
.x25_c01013{left:251.040000pt;}
.xe_c01013{left:279.600000pt;}
.x15_c01013{left:284.126667pt;}
.x36_c01013{left:285.120000pt;}
.x7_c01013{left:298.080000pt;}
.x1c_c01013{left:300.241189pt;}
.x4_c01013{left:307.200000pt;}
.x1d_c01013{left:317.761472pt;}
.xf_c01013{left:328.800000pt;}
.x26_c01013{left:350.160000pt;}
.x47_c01013{left:367.918667pt;}
.x2f_c01013{left:368.880000pt;}
.x5_c01013{left:376.800000pt;}
.x1e_c01013{left:388.322603pt;}
.x30_c01013{left:398.640000pt;}
.x27_c01013{left:399.840000pt;}
.x16_c01013{left:412.292000pt;}
.x31_c01013{left:426.960000pt;}
.x42_c01013{left:446.878667pt;}
.x1f_c01013{left:448.803568pt;}
.x48_c01013{left:459.598667pt;}
.x28_c01013{left:466.800000pt;}
.x40_c01013{left:482.158667pt;}
.x20_c01013{left:489.124213pt;}
.x29_c01013{left:497.760000pt;}
.x3a_c01013{left:502.804000pt;}
.x32_c01013{left:505.920000pt;}
.x2a_c01013{left:509.760000pt;}
.x33_c01013{left:554.640000pt;}
.x45_c01013{left:559.678667pt;}
.x37_c01013{left:566.400000pt;}
.x17_c01013{left:568.518667pt;}
.x21_c01013{left:577.684299pt;}
.x2b_c01013{left:593.520000pt;}
.x22_c01013{left:601.684683pt;}
.x34_c01013{left:614.400000pt;}
.x2c_c01013{left:628.080000pt;}
.x3c_c01013{left:645.358667pt;}
.x49_c01013{left:670.558667pt;}
.x23_c01013{left:688.324736pt;}
.x18_c01013{left:761.260000pt;}
}





/* 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_c01014 {
    display:none;
  }
  .loading-indicator_c01014.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01014 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_c01014 { 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_c01014" -> "#page-container .classname_c01014")
 */
.pf_c01014 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01014 { /* 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_c01014.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01014 { /* 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_c01014 { /* 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_c01014 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01014 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01014 {overflow:visible;}
  }
}
.c_c01014 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01014 { /* 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_c01014:after { /* webkit #35443 */
  content: '';
}
.t_c01014:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01014 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 */
}
.__c01014 { /* 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_c01014 { /* info for Javascript */
  display:none;
}
.l_c01014 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01014 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01014 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01014: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_c01014 {
    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_c01014.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01014.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_c01014 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01014{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01014;src:url('chunks/assets/font_fabf4b590f7fb32aea93ffb2.woff2')format("woff");}.ff1_c01014{font-family:ff1_c01014;line-height:1.000000;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;}
.m49_c01014{transform:matrix(0.010814,0.000130,-0.003000,0.249982,0,0);-ms-transform:matrix(0.010814,0.000130,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.010814,0.000130,-0.003000,0.249982,0,0);}
.m1f_c01014{transform:matrix(0.024183,0.000339,-0.003500,0.249976,0,0);-ms-transform:matrix(0.024183,0.000339,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.024183,0.000339,-0.003500,0.249976,0,0);}
.m4f_c01014{transform:matrix(0.110592,0.001991,-0.004499,0.249960,0,0);-ms-transform:matrix(0.110592,0.001991,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.110592,0.001991,-0.004499,0.249960,0,0);}
.m51_c01014{transform:matrix(0.155430,0.002798,-0.004499,0.249960,0,0);-ms-transform:matrix(0.155430,0.002798,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.155430,0.002798,-0.004499,0.249960,0,0);}
.m4c_c01014{transform:matrix(0.156555,0.002818,-0.004499,0.249960,0,0);-ms-transform:matrix(0.156555,0.002818,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.156555,0.002818,-0.004499,0.249960,0,0);}
.m8_c01014{transform:matrix(0.158792,0.002382,-0.003750,0.249972,0,0);-ms-transform:matrix(0.158792,0.002382,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.158792,0.002382,-0.003750,0.249972,0,0);}
.m52_c01014{transform:matrix(0.162479,0.002925,-0.004499,0.249960,0,0);-ms-transform:matrix(0.162479,0.002925,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.162479,0.002925,-0.004499,0.249960,0,0);}
.m14_c01014{transform:matrix(0.164463,0.002960,-0.004499,0.249960,0,0);-ms-transform:matrix(0.164463,0.002960,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.164463,0.002960,-0.004499,0.249960,0,0);}
.m50_c01014{transform:matrix(0.165183,0.002973,-0.004499,0.249960,0,0);-ms-transform:matrix(0.165183,0.002973,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.165183,0.002973,-0.004499,0.249960,0,0);}
.m7_c01014{transform:matrix(0.170466,0.002557,-0.003750,0.249972,0,0);-ms-transform:matrix(0.170466,0.002557,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.170466,0.002557,-0.003750,0.249972,0,0);}
.m4e_c01014{transform:matrix(0.172537,0.003106,-0.004499,0.249960,0,0);-ms-transform:matrix(0.172537,0.003106,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.172537,0.003106,-0.004499,0.249960,0,0);}
.m6_c01014{transform:matrix(0.173006,0.002595,-0.003750,0.249972,0,0);-ms-transform:matrix(0.173006,0.002595,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.173006,0.002595,-0.003750,0.249972,0,0);}
.m4b_c01014{transform:matrix(0.173622,0.003125,-0.004499,0.249960,0,0);-ms-transform:matrix(0.173622,0.003125,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.173622,0.003125,-0.004499,0.249960,0,0);}
.m55_c01014{transform:matrix(0.174462,0.003140,-0.004499,0.249960,0,0);-ms-transform:matrix(0.174462,0.003140,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.174462,0.003140,-0.004499,0.249960,0,0);}
.m54_c01014{transform:matrix(0.174587,0.003143,-0.004499,0.249960,0,0);-ms-transform:matrix(0.174587,0.003143,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.174587,0.003143,-0.004499,0.249960,0,0);}
.m20_c01014{transform:matrix(0.178597,0.002500,-0.003500,0.249976,0,0);-ms-transform:matrix(0.178597,0.002500,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.178597,0.002500,-0.003500,0.249976,0,0);}
.m53_c01014{transform:matrix(0.180391,0.003247,-0.004499,0.249960,0,0);-ms-transform:matrix(0.180391,0.003247,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.180391,0.003247,-0.004499,0.249960,0,0);}
.m21_c01014{transform:matrix(0.183552,0.002570,-0.003500,0.249976,0,0);-ms-transform:matrix(0.183552,0.002570,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.183552,0.002570,-0.003500,0.249976,0,0);}
.m25_c01014{transform:matrix(0.183602,0.002570,-0.003500,0.249976,0,0);-ms-transform:matrix(0.183602,0.002570,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.183602,0.002570,-0.003500,0.249976,0,0);}
.m4d_c01014{transform:matrix(0.186190,0.003351,-0.004499,0.249960,0,0);-ms-transform:matrix(0.186190,0.003351,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.186190,0.003351,-0.004499,0.249960,0,0);}
.m4a_c01014{transform:matrix(0.188220,0.003388,-0.004499,0.249960,0,0);-ms-transform:matrix(0.188220,0.003388,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.188220,0.003388,-0.004499,0.249960,0,0);}
.m42_c01014{transform:matrix(0.190816,0.002290,-0.003000,0.249982,0,0);-ms-transform:matrix(0.190816,0.002290,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.190816,0.002290,-0.003000,0.249982,0,0);}
.m48_c01014{transform:matrix(0.192111,0.002305,-0.003000,0.249982,0,0);-ms-transform:matrix(0.192111,0.002305,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.192111,0.002305,-0.003000,0.249982,0,0);}
.m27_c01014{transform:matrix(0.193406,0.002708,-0.003500,0.249976,0,0);-ms-transform:matrix(0.193406,0.002708,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.193406,0.002708,-0.003500,0.249976,0,0);}
.m35_c01014{transform:matrix(0.195856,0.002350,-0.003000,0.249982,0,0);-ms-transform:matrix(0.195856,0.002350,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.195856,0.002350,-0.003000,0.249982,0,0);}
.m23_c01014{transform:matrix(0.202785,0.002839,-0.003500,0.249976,0,0);-ms-transform:matrix(0.202785,0.002839,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.202785,0.002839,-0.003500,0.249976,0,0);}
.m3d_c01014{transform:matrix(0.204175,0.002450,-0.003000,0.249982,0,0);-ms-transform:matrix(0.204175,0.002450,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.204175,0.002450,-0.003000,0.249982,0,0);}
.m3b_c01014{transform:matrix(0.208460,0.002502,-0.003000,0.249982,0,0);-ms-transform:matrix(0.208460,0.002502,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.208460,0.002502,-0.003000,0.249982,0,0);}
.m47_c01014{transform:matrix(0.209175,0.002510,-0.003000,0.249982,0,0);-ms-transform:matrix(0.209175,0.002510,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.209175,0.002510,-0.003000,0.249982,0,0);}
.m45_c01014{transform:matrix(0.209340,0.002512,-0.003000,0.249982,0,0);-ms-transform:matrix(0.209340,0.002512,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.209340,0.002512,-0.003000,0.249982,0,0);}
.m3f_c01014{transform:matrix(0.209920,0.002519,-0.003000,0.249982,0,0);-ms-transform:matrix(0.209920,0.002519,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.209920,0.002519,-0.003000,0.249982,0,0);}
.m22_c01014{transform:matrix(0.211534,0.002961,-0.003500,0.249976,0,0);-ms-transform:matrix(0.211534,0.002961,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.211534,0.002961,-0.003500,0.249976,0,0);}
.m29_c01014{transform:matrix(0.212109,0.002970,-0.003500,0.249976,0,0);-ms-transform:matrix(0.212109,0.002970,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.212109,0.002970,-0.003500,0.249976,0,0);}
.m24_c01014{transform:matrix(0.215229,0.003013,-0.003500,0.249976,0,0);-ms-transform:matrix(0.215229,0.003013,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.215229,0.003013,-0.003500,0.249976,0,0);}
.m5_c01014{transform:matrix(0.215746,0.003236,-0.003750,0.249972,0,0);-ms-transform:matrix(0.215746,0.003236,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.215746,0.003236,-0.003750,0.249972,0,0);}
.m37_c01014{transform:matrix(0.216319,0.002596,-0.003000,0.249982,0,0);-ms-transform:matrix(0.216319,0.002596,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.216319,0.002596,-0.003000,0.249982,0,0);}
.m28_c01014{transform:matrix(0.216344,0.003029,-0.003500,0.249976,0,0);-ms-transform:matrix(0.216344,0.003029,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.216344,0.003029,-0.003500,0.249976,0,0);}
.m43_c01014{transform:matrix(0.220434,0.002645,-0.003000,0.249982,0,0);-ms-transform:matrix(0.220434,0.002645,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.220434,0.002645,-0.003000,0.249982,0,0);}
.m44_c01014{transform:matrix(0.221399,0.002657,-0.003000,0.249982,0,0);-ms-transform:matrix(0.221399,0.002657,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.221399,0.002657,-0.003000,0.249982,0,0);}
.m26_c01014{transform:matrix(0.224238,0.003139,-0.003500,0.249976,0,0);-ms-transform:matrix(0.224238,0.003139,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.224238,0.003139,-0.003500,0.249976,0,0);}
.m30_c01014{transform:matrix(0.225329,0.002704,-0.003000,0.249982,0,0);-ms-transform:matrix(0.225329,0.002704,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.225329,0.002704,-0.003000,0.249982,0,0);}
.m18_c01014{transform:matrix(0.226043,0.003165,-0.003500,0.249976,0,0);-ms-transform:matrix(0.226043,0.003165,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.226043,0.003165,-0.003500,0.249976,0,0);}
.m46_c01014{transform:matrix(0.226084,0.002713,-0.003000,0.249982,0,0);-ms-transform:matrix(0.226084,0.002713,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.226084,0.002713,-0.003000,0.249982,0,0);}
.m1c_c01014{transform:matrix(0.226943,0.003177,-0.003500,0.249976,0,0);-ms-transform:matrix(0.226943,0.003177,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.226943,0.003177,-0.003500,0.249976,0,0);}
.m40_c01014{transform:matrix(0.229868,0.002758,-0.003000,0.249982,0,0);-ms-transform:matrix(0.229868,0.002758,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.229868,0.002758,-0.003000,0.249982,0,0);}
.m2d_c01014{transform:matrix(0.230323,0.002764,-0.003000,0.249982,0,0);-ms-transform:matrix(0.230323,0.002764,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.230323,0.002764,-0.003000,0.249982,0,0);}
.m36_c01014{transform:matrix(0.230898,0.002771,-0.003000,0.249982,0,0);-ms-transform:matrix(0.230898,0.002771,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.230898,0.002771,-0.003000,0.249982,0,0);}
.m31_c01014{transform:matrix(0.232423,0.002789,-0.003000,0.249982,0,0);-ms-transform:matrix(0.232423,0.002789,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.232423,0.002789,-0.003000,0.249982,0,0);}
.mb_c01014{transform:matrix(0.232842,0.004191,-0.004499,0.249960,0,0);-ms-transform:matrix(0.232842,0.004191,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.232842,0.004191,-0.004499,0.249960,0,0);}
.m41_c01014{transform:matrix(0.233408,0.002801,-0.003000,0.249982,0,0);-ms-transform:matrix(0.233408,0.002801,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.233408,0.002801,-0.003000,0.249982,0,0);}
.m2e_c01014{transform:matrix(0.239893,0.002879,-0.003000,0.249982,0,0);-ms-transform:matrix(0.239893,0.002879,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.239893,0.002879,-0.003000,0.249982,0,0);}
.m3e_c01014{transform:matrix(0.240828,0.002890,-0.003000,0.249982,0,0);-ms-transform:matrix(0.240828,0.002890,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.240828,0.002890,-0.003000,0.249982,0,0);}
.m15_c01014{transform:matrix(0.242291,0.004361,-0.004499,0.249960,0,0);-ms-transform:matrix(0.242291,0.004361,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.242291,0.004361,-0.004499,0.249960,0,0);}
.m3c_c01014{transform:matrix(0.243867,0.002926,-0.003000,0.249982,0,0);-ms-transform:matrix(0.243867,0.002926,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.243867,0.002926,-0.003000,0.249982,0,0);}
.mc_c01014{transform:matrix(0.246690,0.004440,-0.004499,0.249960,0,0);-ms-transform:matrix(0.246690,0.004440,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.246690,0.004440,-0.004499,0.249960,0,0);}
.m2b_c01014{transform:matrix(0.249022,0.002988,-0.003000,0.249982,0,0);-ms-transform:matrix(0.249022,0.002988,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.249022,0.002988,-0.003000,0.249982,0,0);}
.m39_c01014{transform:matrix(0.250902,0.003011,-0.003000,0.249982,0,0);-ms-transform:matrix(0.250902,0.003011,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.250902,0.003011,-0.003000,0.249982,0,0);}
.m38_c01014{transform:matrix(0.253592,0.003043,-0.003000,0.249982,0,0);-ms-transform:matrix(0.253592,0.003043,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.253592,0.003043,-0.003000,0.249982,0,0);}
.ma_c01014{transform:matrix(0.254644,0.004584,-0.004499,0.249960,0,0);-ms-transform:matrix(0.254644,0.004584,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.254644,0.004584,-0.004499,0.249960,0,0);}
.m3a_c01014{transform:matrix(0.254652,0.003056,-0.003000,0.249982,0,0);-ms-transform:matrix(0.254652,0.003056,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.254652,0.003056,-0.003000,0.249982,0,0);}
.m33_c01014{transform:matrix(0.260406,0.003125,-0.003000,0.249982,0,0);-ms-transform:matrix(0.260406,0.003125,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.260406,0.003125,-0.003000,0.249982,0,0);}
.m1b_c01014{transform:matrix(0.265624,0.003719,-0.003500,0.249976,0,0);-ms-transform:matrix(0.265624,0.003719,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.265624,0.003719,-0.003500,0.249976,0,0);}
.md_c01014{transform:matrix(0.266477,0.004797,-0.004499,0.249960,0,0);-ms-transform:matrix(0.266477,0.004797,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.266477,0.004797,-0.004499,0.249960,0,0);}
.m2c_c01014{transform:matrix(0.266796,0.003202,-0.003000,0.249982,0,0);-ms-transform:matrix(0.266796,0.003202,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.266796,0.003202,-0.003000,0.249982,0,0);}
.m19_c01014{transform:matrix(0.272568,0.003816,-0.003500,0.249976,0,0);-ms-transform:matrix(0.272568,0.003816,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.272568,0.003816,-0.003500,0.249976,0,0);}
.m17_c01014{transform:matrix(0.272923,0.003821,-0.003500,0.249976,0,0);-ms-transform:matrix(0.272923,0.003821,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.272923,0.003821,-0.003500,0.249976,0,0);}
.m1a_c01014{transform:matrix(0.273088,0.003823,-0.003500,0.249976,0,0);-ms-transform:matrix(0.273088,0.003823,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.273088,0.003823,-0.003500,0.249976,0,0);}
.m2a_c01014{transform:matrix(0.274140,0.003290,-0.003000,0.249982,0,0);-ms-transform:matrix(0.274140,0.003290,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.274140,0.003290,-0.003000,0.249982,0,0);}
.m9_c01014{transform:matrix(0.274661,0.004944,-0.004499,0.249960,0,0);-ms-transform:matrix(0.274661,0.004944,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.274661,0.004944,-0.004499,0.249960,0,0);}
.m32_c01014{transform:matrix(0.278515,0.003342,-0.003000,0.249982,0,0);-ms-transform:matrix(0.278515,0.003342,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.278515,0.003342,-0.003000,0.249982,0,0);}
.m4_c01014{transform:matrix(0.278535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278535,0.000000,0.000000,0.250000,0,0);}
.me_c01014{transform:matrix(0.278830,0.005019,-0.004499,0.249960,0,0);-ms-transform:matrix(0.278830,0.005019,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.278830,0.005019,-0.004499,0.249960,0,0);}
.m1e_c01014{transform:matrix(0.280123,0.003922,-0.003500,0.249976,0,0);-ms-transform:matrix(0.280123,0.003922,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.280123,0.003922,-0.003500,0.249976,0,0);}
.m2f_c01014{transform:matrix(0.281565,0.003379,-0.003000,0.249982,0,0);-ms-transform:matrix(0.281565,0.003379,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.281565,0.003379,-0.003000,0.249982,0,0);}
.m0_c01014{transform:matrix(0.289700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289700,0.000000,0.000000,0.250000,0,0);}
.m2_c01014{transform:matrix(0.304560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304560,0.000000,0.000000,0.250000,0,0);}
.m1d_c01014{transform:matrix(0.306440,0.004290,-0.003500,0.249976,0,0);-ms-transform:matrix(0.306440,0.004290,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.306440,0.004290,-0.003500,0.249976,0,0);}
.m11_c01014{transform:matrix(0.310455,0.005588,-0.004499,0.249960,0,0);-ms-transform:matrix(0.310455,0.005588,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.310455,0.005588,-0.004499,0.249960,0,0);}
.m10_c01014{transform:matrix(0.315039,0.005671,-0.004499,0.249960,0,0);-ms-transform:matrix(0.315039,0.005671,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.315039,0.005671,-0.004499,0.249960,0,0);}
.m34_c01014{transform:matrix(0.320337,0.003844,-0.003000,0.249982,0,0);-ms-transform:matrix(0.320337,0.003844,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.320337,0.003844,-0.003000,0.249982,0,0);}
.m13_c01014{transform:matrix(0.349963,0.006299,-0.004499,0.249960,0,0);-ms-transform:matrix(0.349963,0.006299,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.349963,0.006299,-0.004499,0.249960,0,0);}
.m12_c01014{transform:matrix(0.355302,0.006395,-0.004499,0.249960,0,0);-ms-transform:matrix(0.355302,0.006395,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.355302,0.006395,-0.004499,0.249960,0,0);}
.m16_c01014{transform:matrix(0.484228,0.006779,-0.003500,0.249976,0,0);-ms-transform:matrix(0.484228,0.006779,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.484228,0.006779,-0.003500,0.249976,0,0);}
.mf_c01014{transform:matrix(0.520071,0.009361,-0.004499,0.249960,0,0);-ms-transform:matrix(0.520071,0.009361,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.520071,0.009361,-0.004499,0.249960,0,0);}
.m1_c01014{transform:matrix(0.761155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.761155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.761155,0.000000,0.000000,0.250000,0,0);}
.m3_c01014{transform:matrix(2.131230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.131230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.131230,0.000000,0.000000,0.250000,0,0);}
.v0_c01014{vertical-align:0.000000px;}
.ls0_c01014{letter-spacing:0.000000px;}
.sc__c01014{text-shadow:none;}
.sc0_c01014{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__c01014{-webkit-text-stroke:0px transparent;}
.sc0_c01014{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01014{word-spacing:0.000000px;}
._0_c01014{width:10.535194px;}
.fc0_c01014{color:transparent;}
.fs0_c01014{font-size:18.000000px;}
.fs2_c01014{font-size:24.000000px;}
.fs4_c01014{font-size:24.003888px;}
.fs7_c01014{font-size:72.005184px;}
.fs5_c01014{font-size:72.007056px;}
.fs8_c01014{font-size:78.005616px;}
.fs1_c01014{font-size:90.000000px;}
.fs9_c01014{font-size:90.006480px;}
.fs6_c01014{font-size:90.008820px;}
.fsa_c01014{font-size:102.016523px;}
.fs3_c01014{font-size:114.012824px;}
.y0_c01014{bottom:0.000000px;}
.y58_c01014{bottom:742.485600px;}
.y57_c01014{bottom:743.506200px;}
.y56_c01014{bottom:744.687693px;}
.y55_c01014{bottom:745.275483px;}
.y54_c01014{bottom:745.863705px;}
.y53_c01014{bottom:746.665659px;}
.y52_c01014{bottom:747.061830px;}
.y51_c01014{bottom:747.448146px;}
.y50_c01014{bottom:748.838322px;}
.y4f_c01014{bottom:749.431485px;}
.y4e_c01014{bottom:750.433104px;}
.y4d_c01014{bottom:751.414500px;}
.y4c_c01014{bottom:885.853938px;}
.y4b_c01014{bottom:887.774046px;}
.y4a_c01014{bottom:888.667770px;}
.y49_c01014{bottom:889.116096px;}
.y48_c01014{bottom:889.782534px;}
.y47_c01014{bottom:890.663832px;}
.y46_c01014{bottom:891.759714px;}
.y45_c01014{bottom:892.075776px;}
.y44_c01014{bottom:919.323780px;}
.y43_c01014{bottom:920.043804px;}
.y42_c01014{bottom:920.475288px;}
.y41_c01014{bottom:921.325476px;}
.y40_c01014{bottom:921.765102px;}
.y3f_c01014{bottom:922.074240px;}
.y3e_c01014{bottom:922.487646px;}
.y3d_c01014{bottom:924.079086px;}
.y3c_c01014{bottom:924.822984px;}
.y3b_c01014{bottom:926.057910px;}
.y3a_c01014{bottom:926.486190px;}
.y39_c01014{bottom:926.783478px;}
.y38_c01014{bottom:927.179940px;}
.y37_c01014{bottom:954.380952px;}
.y36_c01014{bottom:955.183590px;}
.y35_c01014{bottom:956.505654px;}
.y34_c01014{bottom:957.030336px;}
.y33_c01014{bottom:957.432654px;}
.y32_c01014{bottom:959.146794px;}
.y31_c01014{bottom:959.555160px;}
.y30_c01014{bottom:959.946750px;}
.y2f_c01014{bottom:961.252920px;}
.y2e_c01014{bottom:961.907112px;}
.y2d_c01014{bottom:964.174500px;}
.y2c_c01014{bottom:989.516481px;}
.y2b_c01014{bottom:990.745170px;}
.y2a_c01014{bottom:991.361415px;}
.y29_c01014{bottom:993.364878px;}
.y28_c01014{bottom:993.841473px;}
.y27_c01014{bottom:995.066277px;}
.y26_c01014{bottom:995.690817px;}
.y25_c01014{bottom:996.929943px;}
.y24_c01014{bottom:997.507443px;}
.y23_c01014{bottom:997.976541px;}
.y22_c01014{bottom:1000.620000px;}
.y21_c01014{bottom:1026.182118px;}
.y20_c01014{bottom:1026.662346px;}
.y1f_c01014{bottom:1027.122981px;}
.y1e_c01014{bottom:1028.514945px;}
.y1d_c01014{bottom:1028.983560px;}
.y1c_c01014{bottom:1030.069911px;}
.y1b_c01014{bottom:1031.597094px;}
.y1a_c01014{bottom:1032.060879px;}
.y19_c01014{bottom:1033.436568px;}
.y18_c01014{bottom:1036.536000px;}
.y17_c01014{bottom:1103.479059px;}
.y16_c01014{bottom:1103.731914px;}
.y15_c01014{bottom:1104.131865px;}
.y14_c01014{bottom:1104.335958px;}
.y13_c01014{bottom:1104.535191px;}
.y12_c01014{bottom:1104.680964px;}
.y11_c01014{bottom:1104.923937px;}
.y10_c01014{bottom:1105.123170px;}
.yf_c01014{bottom:1105.443876px;}
.ye_c01014{bottom:1105.725702px;}
.yd_c01014{bottom:1105.910355px;}
.yc_c01014{bottom:1106.084667px;}
.yb_c01014{bottom:1106.269941px;}
.ya_c01014{bottom:1106.498334px;}
.y9_c01014{bottom:1106.751000px;}
.y8_c01014{bottom:1119.491888px;}
.y7_c01014{bottom:1121.128267px;}
.y6_c01014{bottom:1122.473025px;}
.y5_c01014{bottom:1128.064500px;}
.y3_c01014{bottom:1155.870000px;}
.y2_c01014{bottom:1196.103000px;}
.y1_c01014{bottom:1231.740000px;}
.y4_c01014{bottom:1239.570000px;}
.h2_c01014{height:18.000000px;}
.h4_c01014{height:24.000000px;}
.h6_c01014{height:24.003888px;}
.h9_c01014{height:72.005184px;}
.h7_c01014{height:72.007056px;}
.ha_c01014{height:78.005616px;}
.h3_c01014{height:90.000000px;}
.hb_c01014{height:90.006480px;}
.h8_c01014{height:90.008820px;}
.hc_c01014{height:102.016523px;}
.h5_c01014{height:114.012824px;}
.h0_c01014{height:1246.320000px;}
.h1_c01014{height:1246.500000px;}
.w0_c01014{width:896.100000px;}
.w1_c01014{width:896.250000px;}
.x0_c01014{left:0.000000px;}
.x15_c01014{left:20.100000px;}
.x3_c01014{left:21.330000px;}
.x4_c01014{left:30.780000px;}
.x39_c01014{left:205.473000px;}
.x33_c01014{left:207.499992px;}
.x1e_c01014{left:208.825500px;}
.x2b_c01014{left:239.362512px;}
.x16_c01014{left:241.488000px;}
.x3a_c01014{left:259.995000px;}
.x24_c01014{left:263.076000px;}
.x1f_c01014{left:283.582500px;}
.x2c_c01014{left:295.200846px;}
.x3b_c01014{left:315.640500px;}
.x17_c01014{left:339.751500px;}
.x34_c01014{left:348.665376px;}
.x5_c01014{left:372.436500px;}
.x2d_c01014{left:390.235212px;}
.x8_c01014{left:404.392500px;}
.x20_c01014{left:416.701500px;}
.x9_c01014{left:418.429500px;}
.x3c_c01014{left:425.826000px;}
.xa_c01014{left:431.118000px;}
.x35_c01014{left:436.733982px;}
.x25_c01014{left:438.586500px;}
.xb_c01014{left:441.411000px;}
.x2e_c01014{left:447.476028px;}
.xc_c01014{left:451.095000px;}
.x6_c01014{left:462.087000px;}
.x2_c01014{left:465.210000px;}
.x3d_c01014{left:469.297500px;}
.xd_c01014{left:477.010500px;}
.x18_c01014{left:481.963500px;}
.x1_c01014{left:490.320000px;}
.xe_c01014{left:494.827500px;}
.x21_c01014{left:504.187500px;}
.xf_c01014{left:505.896000px;}
.x3e_c01014{left:513.850500px;}
.x10_c01014{left:519.394500px;}
.x11_c01014{left:527.493000px;}
.x12_c01014{left:538.561500px;}
.x3f_c01014{left:546.529500px;}
.x36_c01014{left:548.258664px;}
.x13_c01014{left:549.900000px;}
.x19_c01014{left:559.560000px;}
.x2f_c01014{left:569.844552px;}
.x7_c01014{left:571.179000px;}
.x40_c01014{left:579.184500px;}
.x26_c01014{left:581.431500px;}
.x14_c01014{left:586.167000px;}
.x1a_c01014{left:593.032500px;}
.x30_c01014{left:601.669674px;}
.x27_c01014{left:614.958000px;}
.x31_c01014{left:625.430886px;}
.x37_c01014{left:637.612806px;}
.x41_c01014{left:644.823000px;}
.x28_c01014{left:658.681500px;}
.x22_c01014{left:681.334500px;}
.x1b_c01014{left:692.458500px;}
.x42_c01014{left:701.523000px;}
.x1c_c01014{left:725.361000px;}
.x32_c01014{left:757.745784px;}
.x1d_c01014{left:759.663000px;}
.x29_c01014{left:768.853500px;}
.x23_c01014{left:813.115500px;}
.x38_c01014{left:829.626414px;}
.x2a_c01014{left:835.740000px;}
@media print{
.v0_c01014{vertical-align:0.000000pt;}
.ls0_c01014{letter-spacing:0.000000pt;}
.ws0_c01014{word-spacing:0.000000pt;}
._0_c01014{width:9.364617pt;}
.fs0_c01014{font-size:16.000000pt;}
.fs2_c01014{font-size:21.333333pt;}
.fs4_c01014{font-size:21.336789pt;}
.fs7_c01014{font-size:64.004608pt;}
.fs5_c01014{font-size:64.006272pt;}
.fs8_c01014{font-size:69.338325pt;}
.fs1_c01014{font-size:80.000000pt;}
.fs9_c01014{font-size:80.005760pt;}
.fs6_c01014{font-size:80.007840pt;}
.fsa_c01014{font-size:90.681353pt;}
.fs3_c01014{font-size:101.344733pt;}
.y0_c01014{bottom:0.000000pt;}
.y58_c01014{bottom:659.987200pt;}
.y57_c01014{bottom:660.894400pt;}
.y56_c01014{bottom:661.944616pt;}
.y55_c01014{bottom:662.467096pt;}
.y54_c01014{bottom:662.989960pt;}
.y53_c01014{bottom:663.702808pt;}
.y52_c01014{bottom:664.054960pt;}
.y51_c01014{bottom:664.398352pt;}
.y50_c01014{bottom:665.634064pt;}
.y4f_c01014{bottom:666.161320pt;}
.y4e_c01014{bottom:667.051648pt;}
.y4d_c01014{bottom:667.924000pt;}
.y4c_c01014{bottom:787.425723pt;}
.y4b_c01014{bottom:789.132485pt;}
.y4a_c01014{bottom:789.926907pt;}
.y49_c01014{bottom:790.325419pt;}
.y48_c01014{bottom:790.917808pt;}
.y47_c01014{bottom:791.701184pt;}
.y46_c01014{bottom:792.675301pt;}
.y45_c01014{bottom:792.956245pt;}
.y44_c01014{bottom:817.176693pt;}
.y43_c01014{bottom:817.816715pt;}
.y42_c01014{bottom:818.200256pt;}
.y41_c01014{bottom:818.955979pt;}
.y40_c01014{bottom:819.346757pt;}
.y3f_c01014{bottom:819.621547pt;}
.y3e_c01014{bottom:819.989019pt;}
.y3d_c01014{bottom:821.403632pt;}
.y3c_c01014{bottom:822.064875pt;}
.y3b_c01014{bottom:823.162587pt;}
.y3a_c01014{bottom:823.543280pt;}
.y39_c01014{bottom:823.807536pt;}
.y38_c01014{bottom:824.159947pt;}
.y37_c01014{bottom:848.338624pt;}
.y36_c01014{bottom:849.052080pt;}
.y35_c01014{bottom:850.227248pt;}
.y34_c01014{bottom:850.693632pt;}
.y33_c01014{bottom:851.051248pt;}
.y32_c01014{bottom:852.574928pt;}
.y31_c01014{bottom:852.937920pt;}
.y30_c01014{bottom:853.286000pt;}
.y2f_c01014{bottom:854.447040pt;}
.y2e_c01014{bottom:855.028544pt;}
.y2d_c01014{bottom:857.044000pt;}
.y2c_c01014{bottom:879.570205pt;}
.y2b_c01014{bottom:880.662373pt;}
.y2a_c01014{bottom:881.210147pt;}
.y29_c01014{bottom:882.991003pt;}
.y28_c01014{bottom:883.414643pt;}
.y27_c01014{bottom:884.503357pt;}
.y26_c01014{bottom:885.058504pt;}
.y25_c01014{bottom:886.159949pt;}
.y24_c01014{bottom:886.673283pt;}
.y23_c01014{bottom:887.090259pt;}
.y22_c01014{bottom:889.440000pt;}
.y21_c01014{bottom:912.161883pt;}
.y20_c01014{bottom:912.588752pt;}
.y1f_c01014{bottom:912.998205pt;}
.y1e_c01014{bottom:914.235507pt;}
.y1d_c01014{bottom:914.652053pt;}
.y1c_c01014{bottom:915.617699pt;}
.y1b_c01014{bottom:916.975195pt;}
.y1a_c01014{bottom:917.387448pt;}
.y19_c01014{bottom:918.610283pt;}
.y18_c01014{bottom:921.365333pt;}
.y17_c01014{bottom:980.870275pt;}
.y16_c01014{bottom:981.095035pt;}
.y15_c01014{bottom:981.450547pt;}
.y14_c01014{bottom:981.631963pt;}
.y13_c01014{bottom:981.809059pt;}
.y12_c01014{bottom:981.938635pt;}
.y11_c01014{bottom:982.154611pt;}
.y10_c01014{bottom:982.331707pt;}
.yf_c01014{bottom:982.616779pt;}
.ye_c01014{bottom:982.867291pt;}
.yd_c01014{bottom:983.031427pt;}
.yc_c01014{bottom:983.186371pt;}
.yb_c01014{bottom:983.351059pt;}
.ya_c01014{bottom:983.554075pt;}
.y9_c01014{bottom:983.778667pt;}
.y8_c01014{bottom:995.103900pt;}
.y7_c01014{bottom:996.558460pt;}
.y6_c01014{bottom:997.753800pt;}
.y5_c01014{bottom:1002.724000pt;}
.y3_c01014{bottom:1027.440000pt;}
.y2_c01014{bottom:1063.202667pt;}
.y1_c01014{bottom:1094.880000pt;}
.y4_c01014{bottom:1101.840000pt;}
.h2_c01014{height:16.000000pt;}
.h4_c01014{height:21.333333pt;}
.h6_c01014{height:21.336789pt;}
.h9_c01014{height:64.004608pt;}
.h7_c01014{height:64.006272pt;}
.ha_c01014{height:69.338325pt;}
.h3_c01014{height:80.000000pt;}
.hb_c01014{height:80.005760pt;}
.h8_c01014{height:80.007840pt;}
.hc_c01014{height:90.681353pt;}
.h5_c01014{height:101.344733pt;}
.h0_c01014{height:1107.840000pt;}
.h1_c01014{height:1108.000000pt;}
.w0_c01014{width:796.533333pt;}
.w1_c01014{width:796.666667pt;}
.x0_c01014{left:0.000000pt;}
.x15_c01014{left:17.866667pt;}
.x3_c01014{left:18.960000pt;}
.x4_c01014{left:27.360000pt;}
.x39_c01014{left:182.642667pt;}
.x33_c01014{left:184.444437pt;}
.x1e_c01014{left:185.622667pt;}
.x2b_c01014{left:212.766677pt;}
.x16_c01014{left:214.656000pt;}
.x3a_c01014{left:231.106667pt;}
.x24_c01014{left:233.845333pt;}
.x1f_c01014{left:252.073333pt;}
.x2c_c01014{left:262.400752pt;}
.x3b_c01014{left:280.569333pt;}
.x17_c01014{left:302.001333pt;}
.x34_c01014{left:309.924779pt;}
.x5_c01014{left:331.054667pt;}
.x2d_c01014{left:346.875744pt;}
.x8_c01014{left:359.460000pt;}
.x20_c01014{left:370.401333pt;}
.x9_c01014{left:371.937333pt;}
.x3c_c01014{left:378.512000pt;}
.xa_c01014{left:383.216000pt;}
.x35_c01014{left:388.207984pt;}
.x25_c01014{left:389.854667pt;}
.xb_c01014{left:392.365333pt;}
.x2e_c01014{left:397.756469pt;}
.xc_c01014{left:400.973333pt;}
.x6_c01014{left:410.744000pt;}
.x2_c01014{left:413.520000pt;}
.x3d_c01014{left:417.153333pt;}
.xd_c01014{left:424.009333pt;}
.x18_c01014{left:428.412000pt;}
.x1_c01014{left:435.840000pt;}
.xe_c01014{left:439.846667pt;}
.x21_c01014{left:448.166667pt;}
.xf_c01014{left:449.685333pt;}
.x3e_c01014{left:456.756000pt;}
.x10_c01014{left:461.684000pt;}
.x11_c01014{left:468.882667pt;}
.x12_c01014{left:478.721333pt;}
.x3f_c01014{left:485.804000pt;}
.x36_c01014{left:487.341035pt;}
.x13_c01014{left:488.800000pt;}
.x19_c01014{left:497.386667pt;}
.x2f_c01014{left:506.528491pt;}
.x7_c01014{left:507.714667pt;}
.x40_c01014{left:514.830667pt;}
.x26_c01014{left:516.828000pt;}
.x14_c01014{left:521.037333pt;}
.x1a_c01014{left:527.140000pt;}
.x30_c01014{left:534.817488pt;}
.x27_c01014{left:546.629333pt;}
.x31_c01014{left:555.938565pt;}
.x37_c01014{left:566.766939pt;}
.x41_c01014{left:573.176000pt;}
.x28_c01014{left:585.494667pt;}
.x22_c01014{left:605.630667pt;}
.x1b_c01014{left:615.518667pt;}
.x42_c01014{left:623.576000pt;}
.x1c_c01014{left:644.765333pt;}
.x32_c01014{left:673.551808pt;}
.x1d_c01014{left:675.256000pt;}
.x29_c01014{left:683.425333pt;}
.x23_c01014{left:722.769333pt;}
.x38_c01014{left:737.445701pt;}
.x2a_c01014{left:742.880000pt;}
}





/* 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_c01015 {
    display:none;
  }
  .loading-indicator_c01015.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01015 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_c01015 { 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_c01015" -> "#page-container .classname_c01015")
 */
.pf_c01015 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01015 { /* 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_c01015.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01015 { /* 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_c01015 { /* 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_c01015 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01015 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01015 {overflow:visible;}
  }
}
.c_c01015 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01015 { /* 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_c01015:after { /* webkit #35443 */
  content: '';
}
.t_c01015:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01015 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 */
}
.__c01015 { /* 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_c01015 { /* info for Javascript */
  display:none;
}
.l_c01015 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01015 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01015 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01015: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_c01015 {
    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_c01015.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01015.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_c01015 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01015{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01015;src:url('chunks/assets/font_041d900c6b91d2cee60dcef9.woff2')format("woff");}.ff1_c01015{font-family:ff1_c01015;line-height:1.000000;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;}
.m0_c01015{transform:matrix(0.080625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080625,0.000000,0.000000,0.250000,0,0);}
.v0_c01015{vertical-align:0.000000px;}
.ls0_c01015{letter-spacing:0.000000px;}
.sc__c01015{text-shadow:none;}
.sc0_c01015{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__c01015{-webkit-text-stroke:0px transparent;}
.sc0_c01015{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01015{word-spacing:0.000000px;}
.fc0_c01015{color:transparent;}
.fs0_c01015{font-size:18.000000px;}
.y0_c01015{bottom:0.000000px;}
.y1_c01015{bottom:765.450000px;}
.h2_c01015{height:18.000000px;}
.h0_c01015{height:1246.320000px;}
.h1_c01015{height:1246.500000px;}
.w0_c01015{width:896.100000px;}
.w1_c01015{width:896.250000px;}
.x0_c01015{left:0.000000px;}
.x1_c01015{left:589.140000px;}
@media print{
.v0_c01015{vertical-align:0.000000pt;}
.ls0_c01015{letter-spacing:0.000000pt;}
.ws0_c01015{word-spacing:0.000000pt;}
.fs0_c01015{font-size:16.000000pt;}
.y0_c01015{bottom:0.000000pt;}
.y1_c01015{bottom:680.400000pt;}
.h2_c01015{height:16.000000pt;}
.h0_c01015{height:1107.840000pt;}
.h1_c01015{height:1108.000000pt;}
.w0_c01015{width:796.533333pt;}
.w1_c01015{width:796.666667pt;}
.x0_c01015{left:0.000000pt;}
.x1_c01015{left:523.680000pt;}
}





/* 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_c01016 {
    display:none;
  }
  .loading-indicator_c01016.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01016 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_c01016 { 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_c01016" -> "#page-container .classname_c01016")
 */
.pf_c01016 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01016 { /* 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_c01016.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01016 { /* 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_c01016 { /* 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_c01016 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01016 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01016 {overflow:visible;}
  }
}
.c_c01016 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01016 { /* 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_c01016:after { /* webkit #35443 */
  content: '';
}
.t_c01016:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01016 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 */
}
.__c01016 { /* 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_c01016 { /* info for Javascript */
  display:none;
}
.l_c01016 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01016 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01016 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01016: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_c01016 {
    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_c01016.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01016.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_c01016 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01016{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01016;src:url('chunks/assets/font_fabf4b590f7fb32aea93ffb2.woff2')format("woff");}.ff1_c01016{font-family:ff1_c01016;line-height:1.000000;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;}
.m1d_c01016{transform:matrix(0.088619,0.001950,-0.005499,0.249940,0,0);-ms-transform:matrix(0.088619,0.001950,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.088619,0.001950,-0.005499,0.249940,0,0);}
.m134_c01016{transform:matrix(0.158922,0.008431,-0.013245,0.249649,0,0);-ms-transform:matrix(0.158922,0.008431,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.158922,0.008431,-0.013245,0.249649,0,0);}
.mf2_c01016{transform:matrix(0.159425,0.006064,-0.009503,0.249819,0,0);-ms-transform:matrix(0.159425,0.006064,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.159425,0.006064,-0.009503,0.249819,0,0);}
.m5c_c01016{transform:matrix(0.167407,0.004018,-0.005998,0.249928,0,0);-ms-transform:matrix(0.167407,0.004018,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.167407,0.004018,-0.005998,0.249928,0,0);}
.m5e_c01016{transform:matrix(0.167657,0.004024,-0.005998,0.249928,0,0);-ms-transform:matrix(0.167657,0.004024,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.167657,0.004024,-0.005998,0.249928,0,0);}
.m60_c01016{transform:matrix(0.168461,0.004043,-0.005998,0.249928,0,0);-ms-transform:matrix(0.168461,0.004043,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.168461,0.004043,-0.005998,0.249928,0,0);}
.mef_c01016{transform:matrix(0.169457,0.006446,-0.009503,0.249819,0,0);-ms-transform:matrix(0.169457,0.006446,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.169457,0.006446,-0.009503,0.249819,0,0);}
.meb_c01016{transform:matrix(0.179800,0.006839,-0.009503,0.249819,0,0);-ms-transform:matrix(0.179800,0.006839,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.179800,0.006839,-0.009503,0.249819,0,0);}
.m6a_c01016{transform:matrix(0.181245,0.003806,-0.005249,0.249945,0,0);-ms-transform:matrix(0.181245,0.003806,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.181245,0.003806,-0.005249,0.249945,0,0);}
.m115_c01016{transform:matrix(0.181446,0.006720,-0.009253,0.249829,0,0);-ms-transform:matrix(0.181446,0.006720,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.181446,0.006720,-0.009253,0.249829,0,0);}
.m57_c01016{transform:matrix(0.182742,0.004386,-0.005998,0.249928,0,0);-ms-transform:matrix(0.182742,0.004386,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.182742,0.004386,-0.005998,0.249928,0,0);}
.m14_c01016{transform:matrix(0.185275,0.004076,-0.005499,0.249940,0,0);-ms-transform:matrix(0.185275,0.004076,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.185275,0.004076,-0.005499,0.249940,0,0);}
.m118_c01016{transform:matrix(0.185643,0.006876,-0.009253,0.249829,0,0);-ms-transform:matrix(0.185643,0.006876,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.185643,0.006876,-0.009253,0.249829,0,0);}
.m147_c01016{transform:matrix(0.185661,0.005755,-0.007746,0.249880,0,0);-ms-transform:matrix(0.185661,0.005755,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.185661,0.005755,-0.007746,0.249880,0,0);}
.mf0_c01016{transform:matrix(0.186025,0.007076,-0.009503,0.249819,0,0);-ms-transform:matrix(0.186025,0.007076,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.186025,0.007076,-0.009503,0.249819,0,0);}
.m10e_c01016{transform:matrix(0.187821,0.006956,-0.009253,0.249829,0,0);-ms-transform:matrix(0.187821,0.006956,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.187821,0.006956,-0.009253,0.249829,0,0);}
.m59_c01016{transform:matrix(0.191525,0.004597,-0.005998,0.249928,0,0);-ms-transform:matrix(0.191525,0.004597,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.191525,0.004597,-0.005998,0.249928,0,0);}
.m113_c01016{transform:matrix(0.191963,0.007110,-0.009253,0.249829,0,0);-ms-transform:matrix(0.191963,0.007110,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.191963,0.007110,-0.009253,0.249829,0,0);}
.m110_c01016{transform:matrix(0.192103,0.007115,-0.009253,0.249829,0,0);-ms-transform:matrix(0.192103,0.007115,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.192103,0.007115,-0.009253,0.249829,0,0);}
.m1b_c01016{transform:matrix(0.193818,0.004264,-0.005499,0.249940,0,0);-ms-transform:matrix(0.193818,0.004264,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.193818,0.004264,-0.005499,0.249940,0,0);}
.m71_c01016{transform:matrix(0.195488,0.005474,-0.006997,0.249902,0,0);-ms-transform:matrix(0.195488,0.005474,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.195488,0.005474,-0.006997,0.249902,0,0);}
.m1_c01016{transform:matrix(0.195495,0.001955,-0.002500,0.249988,0,0);-ms-transform:matrix(0.195495,0.001955,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.195495,0.001955,-0.002500,0.249988,0,0);}
.md2_c01016{transform:matrix(0.195518,0.004301,-0.005499,0.249940,0,0);-ms-transform:matrix(0.195518,0.004301,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.195518,0.004301,-0.005499,0.249940,0,0);}
.m149_c01016{transform:matrix(0.196081,0.006079,-0.007746,0.249880,0,0);-ms-transform:matrix(0.196081,0.006079,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.196081,0.006079,-0.007746,0.249880,0,0);}
.m5f_c01016{transform:matrix(0.197363,0.004737,-0.005998,0.249928,0,0);-ms-transform:matrix(0.197363,0.004737,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.197363,0.004737,-0.005998,0.249928,0,0);}
.m5b_c01016{transform:matrix(0.198948,0.004775,-0.005998,0.249928,0,0);-ms-transform:matrix(0.198948,0.004775,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.198948,0.004775,-0.005998,0.249928,0,0);}
.m58_c01016{transform:matrix(0.201037,0.004825,-0.005998,0.249928,0,0);-ms-transform:matrix(0.201037,0.004825,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.201037,0.004825,-0.005998,0.249928,0,0);}
.m73_c01016{transform:matrix(0.201396,0.005639,-0.006997,0.249902,0,0);-ms-transform:matrix(0.201396,0.005639,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.201396,0.005639,-0.006997,0.249902,0,0);}
.m142_c01016{transform:matrix(0.201978,0.006261,-0.007746,0.249880,0,0);-ms-transform:matrix(0.201978,0.006261,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.201978,0.006261,-0.007746,0.249880,0,0);}
.m14a_c01016{transform:matrix(0.202838,0.006288,-0.007746,0.249880,0,0);-ms-transform:matrix(0.202838,0.006288,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.202838,0.006288,-0.007746,0.249880,0,0);}
.m56_c01016{transform:matrix(0.202977,0.004871,-0.005998,0.249928,0,0);-ms-transform:matrix(0.202977,0.004871,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.202977,0.004871,-0.005998,0.249928,0,0);}
.m13f_c01016{transform:matrix(0.203757,0.006316,-0.007746,0.249880,0,0);-ms-transform:matrix(0.203757,0.006316,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.203757,0.006316,-0.007746,0.249880,0,0);}
.m114_c01016{transform:matrix(0.203885,0.007551,-0.009253,0.249829,0,0);-ms-transform:matrix(0.203885,0.007551,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.203885,0.007551,-0.009253,0.249829,0,0);}
.mec_c01016{transform:matrix(0.204762,0.007789,-0.009503,0.249819,0,0);-ms-transform:matrix(0.204762,0.007789,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.204762,0.007789,-0.009503,0.249819,0,0);}
.m5d_c01016{transform:matrix(0.205036,0.004921,-0.005998,0.249928,0,0);-ms-transform:matrix(0.205036,0.004921,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.205036,0.004921,-0.005998,0.249928,0,0);}
.m11b_c01016{transform:matrix(0.205310,0.008837,-0.010751,0.249769,0,0);-ms-transform:matrix(0.205310,0.008837,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.205310,0.008837,-0.010751,0.249769,0,0);}
.m7_c01016{transform:matrix(0.205335,0.002053,-0.002500,0.249988,0,0);-ms-transform:matrix(0.205335,0.002053,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.205335,0.002053,-0.002500,0.249988,0,0);}
.m77_c01016{transform:matrix(0.205554,0.005756,-0.006997,0.249902,0,0);-ms-transform:matrix(0.205554,0.005756,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.205554,0.005756,-0.006997,0.249902,0,0);}
.m64_c01016{transform:matrix(0.205760,0.004321,-0.005249,0.249945,0,0);-ms-transform:matrix(0.205760,0.004321,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.205760,0.004321,-0.005249,0.249945,0,0);}
.m67_c01016{transform:matrix(0.205920,0.004324,-0.005249,0.249945,0,0);-ms-transform:matrix(0.205920,0.004324,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.205920,0.004324,-0.005249,0.249945,0,0);}
.md1_c01016{transform:matrix(0.205920,0.004530,-0.005499,0.249940,0,0);-ms-transform:matrix(0.205920,0.004530,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.205920,0.004530,-0.005499,0.249940,0,0);}
.m24_c01016{transform:matrix(0.207335,0.004976,-0.005998,0.249928,0,0);-ms-transform:matrix(0.207335,0.004976,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.207335,0.004976,-0.005998,0.249928,0,0);}
.m65_c01016{transform:matrix(0.207379,0.004355,-0.005249,0.249945,0,0);-ms-transform:matrix(0.207379,0.004355,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.207379,0.004355,-0.005249,0.249945,0,0);}
.m21_c01016{transform:matrix(0.207390,0.004977,-0.005998,0.249928,0,0);-ms-transform:matrix(0.207390,0.004977,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.207390,0.004977,-0.005998,0.249928,0,0);}
.mee_c01016{transform:matrix(0.208244,0.007921,-0.009503,0.249819,0,0);-ms-transform:matrix(0.208244,0.007921,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.208244,0.007921,-0.009503,0.249819,0,0);}
.mf6_c01016{transform:matrix(0.208324,0.007924,-0.009503,0.249819,0,0);-ms-transform:matrix(0.208324,0.007924,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.208324,0.007924,-0.009503,0.249819,0,0);}
.m5a_c01016{transform:matrix(0.208440,0.005003,-0.005998,0.249928,0,0);-ms-transform:matrix(0.208440,0.005003,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.208440,0.005003,-0.005998,0.249928,0,0);}
.mcc_c01016{transform:matrix(0.208525,0.004588,-0.005499,0.249940,0,0);-ms-transform:matrix(0.208525,0.004588,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.208525,0.004588,-0.005499,0.249940,0,0);}
.mfa_c01016{transform:matrix(0.209354,0.007963,-0.009503,0.249819,0,0);-ms-transform:matrix(0.209354,0.007963,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.209354,0.007963,-0.009503,0.249819,0,0);}
.m2c_c01016{transform:matrix(0.209435,0.005026,-0.005998,0.249928,0,0);-ms-transform:matrix(0.209435,0.005026,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.209435,0.005026,-0.005998,0.249928,0,0);}
.m0_c01016{transform:matrix(0.209540,0.002095,-0.002500,0.249988,0,0);-ms-transform:matrix(0.209540,0.002095,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.209540,0.002095,-0.002500,0.249988,0,0);}
.m111_c01016{transform:matrix(0.209906,0.007774,-0.009253,0.249829,0,0);-ms-transform:matrix(0.209906,0.007774,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.209906,0.007774,-0.009253,0.249829,0,0);}
.m14b_c01016{transform:matrix(0.210479,0.006525,-0.007746,0.249880,0,0);-ms-transform:matrix(0.210479,0.006525,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.210479,0.006525,-0.007746,0.249880,0,0);}
.med_c01016{transform:matrix(0.211292,0.008037,-0.009503,0.249819,0,0);-ms-transform:matrix(0.211292,0.008037,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.211292,0.008037,-0.009503,0.249819,0,0);}
.mf4_c01016{transform:matrix(0.211412,0.008042,-0.009503,0.249819,0,0);-ms-transform:matrix(0.211412,0.008042,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.211412,0.008042,-0.009503,0.249819,0,0);}
.mc4_c01016{transform:matrix(0.211529,0.004654,-0.005499,0.249940,0,0);-ms-transform:matrix(0.211529,0.004654,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.211529,0.004654,-0.005499,0.249940,0,0);}
.m146_c01016{transform:matrix(0.211648,0.006561,-0.007746,0.249880,0,0);-ms-transform:matrix(0.211648,0.006561,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.211648,0.006561,-0.007746,0.249880,0,0);}
.m112_c01016{transform:matrix(0.211930,0.007849,-0.009253,0.249829,0,0);-ms-transform:matrix(0.211930,0.007849,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.211930,0.007849,-0.009253,0.249829,0,0);}
.m75_c01016{transform:matrix(0.212377,0.005947,-0.006997,0.249902,0,0);-ms-transform:matrix(0.212377,0.005947,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.212377,0.005947,-0.006997,0.249902,0,0);}
.m117_c01016{transform:matrix(0.212779,0.007881,-0.009253,0.249829,0,0);-ms-transform:matrix(0.212779,0.007881,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.212779,0.007881,-0.009253,0.249829,0,0);}
.m6_c01016{transform:matrix(0.213349,0.002133,-0.002500,0.249988,0,0);-ms-transform:matrix(0.213349,0.002133,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.213349,0.002133,-0.002500,0.249988,0,0);}
.m14d_c01016{transform:matrix(0.213627,0.006622,-0.007746,0.249880,0,0);-ms-transform:matrix(0.213627,0.006622,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.213627,0.006622,-0.007746,0.249880,0,0);}
.mf1_c01016{transform:matrix(0.214105,0.008144,-0.009503,0.249819,0,0);-ms-transform:matrix(0.214105,0.008144,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.214105,0.008144,-0.009503,0.249819,0,0);}
.m141_c01016{transform:matrix(0.214212,0.006641,-0.007746,0.249880,0,0);-ms-transform:matrix(0.214212,0.006641,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.214212,0.006641,-0.007746,0.249880,0,0);}
.m145_c01016{transform:matrix(0.215082,0.006668,-0.007746,0.249880,0,0);-ms-transform:matrix(0.215082,0.006668,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.215082,0.006668,-0.007746,0.249880,0,0);}
.m140_c01016{transform:matrix(0.215546,0.006682,-0.007746,0.249880,0,0);-ms-transform:matrix(0.215546,0.006682,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.215546,0.006682,-0.007746,0.249880,0,0);}
.mff_c01016{transform:matrix(0.215559,0.008199,-0.009503,0.249819,0,0);-ms-transform:matrix(0.215559,0.008199,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.215559,0.008199,-0.009503,0.249819,0,0);}
.m1e_c01016{transform:matrix(0.215693,0.005177,-0.005998,0.249928,0,0);-ms-transform:matrix(0.215693,0.005177,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.215693,0.005177,-0.005998,0.249928,0,0);}
.m10f_c01016{transform:matrix(0.215782,0.007992,-0.009253,0.249829,0,0);-ms-transform:matrix(0.215782,0.007992,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.215782,0.007992,-0.009253,0.249829,0,0);}
.mc2_c01016{transform:matrix(0.216463,0.004762,-0.005499,0.249940,0,0);-ms-transform:matrix(0.216463,0.004762,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.216463,0.004762,-0.005499,0.249940,0,0);}
.mfc_c01016{transform:matrix(0.216568,0.008238,-0.009503,0.249819,0,0);-ms-transform:matrix(0.216568,0.008238,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.216568,0.008238,-0.009503,0.249819,0,0);}
.m6c_c01016{transform:matrix(0.216657,0.004550,-0.005249,0.249945,0,0);-ms-transform:matrix(0.216657,0.004550,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.216657,0.004550,-0.005249,0.249945,0,0);}
.m2_c01016{transform:matrix(0.217104,0.002171,-0.002500,0.249988,0,0);-ms-transform:matrix(0.217104,0.002171,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.217104,0.002171,-0.002500,0.249988,0,0);}
.m11f_c01016{transform:matrix(0.217569,0.009365,-0.010751,0.249769,0,0);-ms-transform:matrix(0.217569,0.009365,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.217569,0.009365,-0.010751,0.249769,0,0);}
.mce_c01016{transform:matrix(0.219322,0.004825,-0.005499,0.249940,0,0);-ms-transform:matrix(0.219322,0.004825,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.219322,0.004825,-0.005499,0.249940,0,0);}
.m4_c01016{transform:matrix(0.219364,0.002194,-0.002500,0.249988,0,0);-ms-transform:matrix(0.219364,0.002194,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.219364,0.002194,-0.002500,0.249988,0,0);}
.m14e_c01016{transform:matrix(0.219375,0.006801,-0.007746,0.249880,0,0);-ms-transform:matrix(0.219375,0.006801,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.219375,0.006801,-0.007746,0.249880,0,0);}
.m69_c01016{transform:matrix(0.219912,0.004618,-0.005249,0.249945,0,0);-ms-transform:matrix(0.219912,0.004618,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.219912,0.004618,-0.005249,0.249945,0,0);}
.md5_c01016{transform:matrix(0.220017,0.004840,-0.005499,0.249940,0,0);-ms-transform:matrix(0.220017,0.004840,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.220017,0.004840,-0.005499,0.249940,0,0);}
.m68_c01016{transform:matrix(0.220021,0.004620,-0.005249,0.249945,0,0);-ms-transform:matrix(0.220021,0.004620,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.220021,0.004620,-0.005249,0.249945,0,0);}
.m20_c01016{transform:matrix(0.220152,0.005284,-0.005998,0.249928,0,0);-ms-transform:matrix(0.220152,0.005284,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.220152,0.005284,-0.005998,0.249928,0,0);}
.me7_c01016{transform:matrix(0.221269,0.006859,-0.007746,0.249880,0,0);-ms-transform:matrix(0.221269,0.006859,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.221269,0.006859,-0.007746,0.249880,0,0);}
.m10_c01016{transform:matrix(0.221316,0.004869,-0.005499,0.249940,0,0);-ms-transform:matrix(0.221316,0.004869,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.221316,0.004869,-0.005499,0.249940,0,0);}
.m84_c01016{transform:matrix(0.221366,0.004649,-0.005249,0.249945,0,0);-ms-transform:matrix(0.221366,0.004649,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.221366,0.004649,-0.005249,0.249945,0,0);}
.m116_c01016{transform:matrix(0.221528,0.008205,-0.009253,0.249829,0,0);-ms-transform:matrix(0.221528,0.008205,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.221528,0.008205,-0.009253,0.249829,0,0);}
.mc6_c01016{transform:matrix(0.221991,0.004884,-0.005499,0.249940,0,0);-ms-transform:matrix(0.221991,0.004884,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.221991,0.004884,-0.005499,0.249940,0,0);}
.m2f_c01016{transform:matrix(0.222546,0.005341,-0.005998,0.249928,0,0);-ms-transform:matrix(0.222546,0.005341,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.222546,0.005341,-0.005998,0.249928,0,0);}
.mfd_c01016{transform:matrix(0.222574,0.008466,-0.009503,0.249819,0,0);-ms-transform:matrix(0.222574,0.008466,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.222574,0.008466,-0.009503,0.249819,0,0);}
.m127_c01016{transform:matrix(0.223195,0.005803,-0.006498,0.249916,0,0);-ms-transform:matrix(0.223195,0.005803,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.223195,0.005803,-0.006498,0.249916,0,0);}
.m7c_c01016{transform:matrix(0.223221,0.004688,-0.005249,0.249945,0,0);-ms-transform:matrix(0.223221,0.004688,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.223221,0.004688,-0.005249,0.249945,0,0);}
.m22_c01016{transform:matrix(0.223316,0.005360,-0.005998,0.249928,0,0);-ms-transform:matrix(0.223316,0.005360,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.223316,0.005360,-0.005998,0.249928,0,0);}
.m148_c01016{transform:matrix(0.224222,0.006951,-0.007746,0.249880,0,0);-ms-transform:matrix(0.224222,0.006951,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.224222,0.006951,-0.007746,0.249880,0,0);}
.m29_c01016{transform:matrix(0.224615,0.005391,-0.005998,0.249928,0,0);-ms-transform:matrix(0.224615,0.005391,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.224615,0.005391,-0.005998,0.249928,0,0);}
.m92_c01016{transform:matrix(0.224630,0.004717,-0.005249,0.249945,0,0);-ms-transform:matrix(0.224630,0.004717,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.224630,0.004717,-0.005249,0.249945,0,0);}
.m11d_c01016{transform:matrix(0.225117,0.009690,-0.010751,0.249769,0,0);-ms-transform:matrix(0.225117,0.009690,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.225117,0.009690,-0.010751,0.249769,0,0);}
.m89_c01016{transform:matrix(0.225295,0.004731,-0.005249,0.249945,0,0);-ms-transform:matrix(0.225295,0.004731,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.225295,0.004731,-0.005249,0.249945,0,0);}
.me1_c01016{transform:matrix(0.225417,0.006988,-0.007746,0.249880,0,0);-ms-transform:matrix(0.225417,0.006988,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.225417,0.006988,-0.007746,0.249880,0,0);}
.mf7_c01016{transform:matrix(0.225507,0.008578,-0.009503,0.249819,0,0);-ms-transform:matrix(0.225507,0.008578,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.225507,0.008578,-0.009503,0.249819,0,0);}
.m70_c01016{transform:matrix(0.225537,0.006315,-0.006997,0.249902,0,0);-ms-transform:matrix(0.225537,0.006315,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.225537,0.006315,-0.006997,0.249902,0,0);}
.md4_c01016{transform:matrix(0.225595,0.004963,-0.005499,0.249940,0,0);-ms-transform:matrix(0.225595,0.004963,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.225595,0.004963,-0.005499,0.249940,0,0);}
.m61_c01016{transform:matrix(0.225670,0.004739,-0.005249,0.249945,0,0);-ms-transform:matrix(0.225670,0.004739,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.225670,0.004739,-0.005249,0.249945,0,0);}
.m14c_c01016{transform:matrix(0.226406,0.007019,-0.007746,0.249880,0,0);-ms-transform:matrix(0.226406,0.007019,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.226406,0.007019,-0.007746,0.249880,0,0);}
.m85_c01016{transform:matrix(0.226695,0.004761,-0.005249,0.249945,0,0);-ms-transform:matrix(0.226695,0.004761,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.226695,0.004761,-0.005249,0.249945,0,0);}
.mcf_c01016{transform:matrix(0.226700,0.004987,-0.005499,0.249940,0,0);-ms-transform:matrix(0.226700,0.004987,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.226700,0.004987,-0.005499,0.249940,0,0);}
.m72_c01016{transform:matrix(0.226976,0.006355,-0.006997,0.249902,0,0);-ms-transform:matrix(0.226976,0.006355,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.226976,0.006355,-0.006997,0.249902,0,0);}
.mcd_c01016{transform:matrix(0.227265,0.005000,-0.005499,0.249940,0,0);-ms-transform:matrix(0.227265,0.005000,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.227265,0.005000,-0.005499,0.249940,0,0);}
.me3_c01016{transform:matrix(0.227321,0.007047,-0.007746,0.249880,0,0);-ms-transform:matrix(0.227321,0.007047,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.227321,0.007047,-0.007746,0.249880,0,0);}
.m12c_c01016{transform:matrix(0.228083,0.005930,-0.006498,0.249916,0,0);-ms-transform:matrix(0.228083,0.005930,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.228083,0.005930,-0.006498,0.249916,0,0);}
.m31_c01016{transform:matrix(0.228104,0.005475,-0.005998,0.249928,0,0);-ms-transform:matrix(0.228104,0.005475,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.228104,0.005475,-0.005998,0.249928,0,0);}
.m8d_c01016{transform:matrix(0.228765,0.004804,-0.005249,0.249945,0,0);-ms-transform:matrix(0.228765,0.004804,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.228765,0.004804,-0.005249,0.249945,0,0);}
.mc3_c01016{transform:matrix(0.229240,0.005043,-0.005499,0.249940,0,0);-ms-transform:matrix(0.229240,0.005043,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.229240,0.005043,-0.005499,0.249940,0,0);}
.m81_c01016{transform:matrix(0.229539,0.004820,-0.005249,0.249945,0,0);-ms-transform:matrix(0.229539,0.004820,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.229539,0.004820,-0.005249,0.249945,0,0);}
.m12e_c01016{transform:matrix(0.230137,0.005984,-0.006498,0.249916,0,0);-ms-transform:matrix(0.230137,0.005984,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.230137,0.005984,-0.006498,0.249916,0,0);}
.m123_c01016{transform:matrix(0.230776,0.009933,-0.010751,0.249769,0,0);-ms-transform:matrix(0.230776,0.009933,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.230776,0.009933,-0.010751,0.249769,0,0);}
.md7_c01016{transform:matrix(0.231149,0.005085,-0.005499,0.249940,0,0);-ms-transform:matrix(0.231149,0.005085,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.231149,0.005085,-0.005499,0.249940,0,0);}
.m6d_c01016{transform:matrix(0.231149,0.006472,-0.006997,0.249902,0,0);-ms-transform:matrix(0.231149,0.006472,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.231149,0.006472,-0.006997,0.249902,0,0);}
.mc9_c01016{transform:matrix(0.231164,0.005086,-0.005499,0.249940,0,0);-ms-transform:matrix(0.231164,0.005086,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.231164,0.005086,-0.005499,0.249940,0,0);}
.mc7_c01016{transform:matrix(0.231564,0.005094,-0.005499,0.249940,0,0);-ms-transform:matrix(0.231564,0.005094,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.231564,0.005094,-0.005499,0.249940,0,0);}
.m143_c01016{transform:matrix(0.231589,0.007179,-0.007746,0.249880,0,0);-ms-transform:matrix(0.231589,0.007179,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.231589,0.007179,-0.007746,0.249880,0,0);}
.mb3_c01016{transform:matrix(0.231764,0.005099,-0.005499,0.249940,0,0);-ms-transform:matrix(0.231764,0.005099,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.231764,0.005099,-0.005499,0.249940,0,0);}
.md6_c01016{transform:matrix(0.231924,0.005102,-0.005499,0.249940,0,0);-ms-transform:matrix(0.231924,0.005102,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.231924,0.005102,-0.005499,0.249940,0,0);}
.mf3_c01016{transform:matrix(0.232057,0.008827,-0.009503,0.249819,0,0);-ms-transform:matrix(0.232057,0.008827,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.232057,0.008827,-0.009503,0.249819,0,0);}
.m11c_c01016{transform:matrix(0.232290,0.009998,-0.010751,0.249769,0,0);-ms-transform:matrix(0.232290,0.009998,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.232290,0.009998,-0.010751,0.249769,0,0);}
.m3_c01016{transform:matrix(0.232308,0.002323,-0.002500,0.249988,0,0);-ms-transform:matrix(0.232308,0.002323,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.232308,0.002323,-0.002500,0.249988,0,0);}
.m103_c01016{transform:matrix(0.232387,0.008840,-0.009503,0.249819,0,0);-ms-transform:matrix(0.232387,0.008840,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.232387,0.008840,-0.009503,0.249819,0,0);}
.m25_c01016{transform:matrix(0.232428,0.005578,-0.005998,0.249928,0,0);-ms-transform:matrix(0.232428,0.005578,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.232428,0.005578,-0.005998,0.249928,0,0);}
.m6e_c01016{transform:matrix(0.232469,0.006509,-0.006997,0.249902,0,0);-ms-transform:matrix(0.232469,0.006509,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.232469,0.006509,-0.006997,0.249902,0,0);}
.m124_c01016{transform:matrix(0.232585,0.010011,-0.010751,0.249769,0,0);-ms-transform:matrix(0.232585,0.010011,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.232585,0.010011,-0.010751,0.249769,0,0);}
.me5_c01016{transform:matrix(0.232873,0.007219,-0.007746,0.249880,0,0);-ms-transform:matrix(0.232873,0.007219,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.232873,0.007219,-0.007746,0.249880,0,0);}
.m63_c01016{transform:matrix(0.233069,0.004894,-0.005249,0.249945,0,0);-ms-transform:matrix(0.233069,0.004894,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.233069,0.004894,-0.005249,0.249945,0,0);}
.m6b_c01016{transform:matrix(0.233174,0.004897,-0.005249,0.249945,0,0);-ms-transform:matrix(0.233174,0.004897,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.233174,0.004897,-0.005249,0.249945,0,0);}
.me6_c01016{transform:matrix(0.233293,0.007232,-0.007746,0.249880,0,0);-ms-transform:matrix(0.233293,0.007232,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.233293,0.007232,-0.007746,0.249880,0,0);}
.md9_c01016{transform:matrix(0.233623,0.007242,-0.007746,0.249880,0,0);-ms-transform:matrix(0.233623,0.007242,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.233623,0.007242,-0.007746,0.249880,0,0);}
.m107_c01016{transform:matrix(0.234056,0.008903,-0.009503,0.249819,0,0);-ms-transform:matrix(0.234056,0.008903,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.234056,0.008903,-0.009503,0.249819,0,0);}
.m100_c01016{transform:matrix(0.234380,0.008915,-0.009503,0.249819,0,0);-ms-transform:matrix(0.234380,0.008915,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.234380,0.008915,-0.009503,0.249819,0,0);}
.m7a_c01016{transform:matrix(0.234773,0.004930,-0.005249,0.249945,0,0);-ms-transform:matrix(0.234773,0.004930,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.234773,0.004930,-0.005249,0.249945,0,0);}
.mcb_c01016{transform:matrix(0.234918,0.005168,-0.005499,0.249940,0,0);-ms-transform:matrix(0.234918,0.005168,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.234918,0.005168,-0.005499,0.249940,0,0);}
.mc5_c01016{transform:matrix(0.234928,0.005168,-0.005499,0.249940,0,0);-ms-transform:matrix(0.234928,0.005168,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.234928,0.005168,-0.005499,0.249940,0,0);}
.m125_c01016{transform:matrix(0.234942,0.010113,-0.010751,0.249769,0,0);-ms-transform:matrix(0.234942,0.010113,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.234942,0.010113,-0.010751,0.249769,0,0);}
.m74_c01016{transform:matrix(0.235358,0.006590,-0.006997,0.249902,0,0);-ms-transform:matrix(0.235358,0.006590,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.235358,0.006590,-0.006997,0.249902,0,0);}
.m6f_c01016{transform:matrix(0.236022,0.006609,-0.006997,0.249902,0,0);-ms-transform:matrix(0.236022,0.006609,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.236022,0.006609,-0.006997,0.249902,0,0);}
.md3_c01016{transform:matrix(0.237408,0.005223,-0.005499,0.249940,0,0);-ms-transform:matrix(0.237408,0.005223,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.237408,0.005223,-0.005499,0.249940,0,0);}
.m66_c01016{transform:matrix(0.237688,0.004991,-0.005249,0.249945,0,0);-ms-transform:matrix(0.237688,0.004991,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.237688,0.004991,-0.005249,0.249945,0,0);}
.m2d_c01016{transform:matrix(0.237762,0.005706,-0.005998,0.249928,0,0);-ms-transform:matrix(0.237762,0.005706,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.237762,0.005706,-0.005998,0.249928,0,0);}
.mfb_c01016{transform:matrix(0.238433,0.009070,-0.009503,0.249819,0,0);-ms-transform:matrix(0.238433,0.009070,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.238433,0.009070,-0.009503,0.249819,0,0);}
.mca_c01016{transform:matrix(0.238602,0.005249,-0.005499,0.249940,0,0);-ms-transform:matrix(0.238602,0.005249,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.238602,0.005249,-0.005499,0.249940,0,0);}
.me2_c01016{transform:matrix(0.238835,0.007404,-0.007746,0.249880,0,0);-ms-transform:matrix(0.238835,0.007404,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.238835,0.007404,-0.007746,0.249880,0,0);}
.mf8_c01016{transform:matrix(0.239477,0.009109,-0.009503,0.249819,0,0);-ms-transform:matrix(0.239477,0.009109,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.239477,0.009109,-0.009503,0.249819,0,0);}
.m13a_c01016{transform:matrix(0.239573,0.012710,-0.013245,0.249649,0,0);-ms-transform:matrix(0.239573,0.012710,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.239573,0.012710,-0.013245,0.249649,0,0);}
.m109_c01016{transform:matrix(0.239936,0.009127,-0.009503,0.249819,0,0);-ms-transform:matrix(0.239936,0.009127,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.239936,0.009127,-0.009503,0.249819,0,0);}
.m76_c01016{transform:matrix(0.240051,0.006721,-0.006997,0.249902,0,0);-ms-transform:matrix(0.240051,0.006721,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.240051,0.006721,-0.006997,0.249902,0,0);}
.m120_c01016{transform:matrix(0.240273,0.010342,-0.010751,0.249769,0,0);-ms-transform:matrix(0.240273,0.010342,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.240273,0.010342,-0.010751,0.249769,0,0);}
.m86_c01016{transform:matrix(0.241362,0.005069,-0.005249,0.249945,0,0);-ms-transform:matrix(0.241362,0.005069,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.241362,0.005069,-0.005249,0.249945,0,0);}
.m62_c01016{transform:matrix(0.241597,0.005074,-0.005249,0.249945,0,0);-ms-transform:matrix(0.241597,0.005074,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.241597,0.005074,-0.005249,0.249945,0,0);}
.m137_c01016{transform:matrix(0.241655,0.012821,-0.013245,0.249649,0,0);-ms-transform:matrix(0.241655,0.012821,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.241655,0.012821,-0.013245,0.249649,0,0);}
.m11a_c01016{transform:matrix(0.241816,0.010409,-0.010751,0.249769,0,0);-ms-transform:matrix(0.241816,0.010409,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.241816,0.010409,-0.010751,0.249769,0,0);}
.m43_c01016{transform:matrix(0.241980,0.005808,-0.005998,0.249928,0,0);-ms-transform:matrix(0.241980,0.005808,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.241980,0.005808,-0.005998,0.249928,0,0);}
.m105_c01016{transform:matrix(0.242370,0.009219,-0.009503,0.249819,0,0);-ms-transform:matrix(0.242370,0.009219,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.242370,0.009219,-0.009503,0.249819,0,0);}
.mc8_c01016{transform:matrix(0.242531,0.005336,-0.005499,0.249940,0,0);-ms-transform:matrix(0.242531,0.005336,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.242531,0.005336,-0.005499,0.249940,0,0);}
.mb0_c01016{transform:matrix(0.242806,0.005342,-0.005499,0.249940,0,0);-ms-transform:matrix(0.242806,0.005342,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.242806,0.005342,-0.005499,0.249940,0,0);}
.m139_c01016{transform:matrix(0.243153,0.012900,-0.013245,0.249649,0,0);-ms-transform:matrix(0.243153,0.012900,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.243153,0.012900,-0.013245,0.249649,0,0);}
.m97_c01016{transform:matrix(0.243321,0.005110,-0.005249,0.249945,0,0);-ms-transform:matrix(0.243321,0.005110,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.243321,0.005110,-0.005249,0.249945,0,0);}
.m135_c01016{transform:matrix(0.243408,0.012914,-0.013245,0.249649,0,0);-ms-transform:matrix(0.243408,0.012914,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.243408,0.012914,-0.013245,0.249649,0,0);}
.mdf_c01016{transform:matrix(0.244013,0.007564,-0.007746,0.249880,0,0);-ms-transform:matrix(0.244013,0.007564,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.244013,0.007564,-0.007746,0.249880,0,0);}
.mdd_c01016{transform:matrix(0.244358,0.007575,-0.007746,0.249880,0,0);-ms-transform:matrix(0.244358,0.007575,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.244358,0.007575,-0.007746,0.249880,0,0);}
.m104_c01016{transform:matrix(0.244593,0.009304,-0.009503,0.249819,0,0);-ms-transform:matrix(0.244593,0.009304,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.244593,0.009304,-0.009503,0.249819,0,0);}
.m10c_c01016{transform:matrix(0.245003,0.009319,-0.009503,0.249819,0,0);-ms-transform:matrix(0.245003,0.009319,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.245003,0.009319,-0.009503,0.249819,0,0);}
.m144_c01016{transform:matrix(0.245167,0.007600,-0.007746,0.249880,0,0);-ms-transform:matrix(0.245167,0.007600,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.245167,0.007600,-0.007746,0.249880,0,0);}
.m7f_c01016{transform:matrix(0.245916,0.005164,-0.005249,0.249945,0,0);-ms-transform:matrix(0.245916,0.005164,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.245916,0.005164,-0.005249,0.249945,0,0);}
.m90_c01016{transform:matrix(0.246676,0.005180,-0.005249,0.249945,0,0);-ms-transform:matrix(0.246676,0.005180,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.246676,0.005180,-0.005249,0.249945,0,0);}
.m13d_c01016{transform:matrix(0.246868,0.013097,-0.013245,0.249649,0,0);-ms-transform:matrix(0.246868,0.013097,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.246868,0.013097,-0.013245,0.249649,0,0);}
.m47_c01016{transform:matrix(0.247284,0.005935,-0.005998,0.249928,0,0);-ms-transform:matrix(0.247284,0.005935,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.247284,0.005935,-0.005998,0.249928,0,0);}
.m12a_c01016{transform:matrix(0.247421,0.006433,-0.006498,0.249916,0,0);-ms-transform:matrix(0.247421,0.006433,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.247421,0.006433,-0.006498,0.249916,0,0);}
.m51_c01016{transform:matrix(0.247864,0.005949,-0.005998,0.249928,0,0);-ms-transform:matrix(0.247864,0.005949,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.247864,0.005949,-0.005998,0.249928,0,0);}
.m36_c01016{transform:matrix(0.248034,0.005953,-0.005998,0.249928,0,0);-ms-transform:matrix(0.248034,0.005953,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.248034,0.005953,-0.005998,0.249928,0,0);}
.m7d_c01016{transform:matrix(0.248250,0.005213,-0.005249,0.249945,0,0);-ms-transform:matrix(0.248250,0.005213,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.248250,0.005213,-0.005249,0.249945,0,0);}
.m9b_c01016{transform:matrix(0.248350,0.005215,-0.005249,0.249945,0,0);-ms-transform:matrix(0.248350,0.005215,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.248350,0.005215,-0.005249,0.249945,0,0);}
.m8e_c01016{transform:matrix(0.248390,0.005216,-0.005249,0.249945,0,0);-ms-transform:matrix(0.248390,0.005216,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.248390,0.005216,-0.005249,0.249945,0,0);}
.m5_c01016{transform:matrix(0.248488,0.002485,-0.002500,0.249988,0,0);-ms-transform:matrix(0.248488,0.002485,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.248488,0.002485,-0.002500,0.249988,0,0);}
.m23_c01016{transform:matrix(0.248678,0.005968,-0.005998,0.249928,0,0);-ms-transform:matrix(0.248678,0.005968,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.248678,0.005968,-0.005998,0.249928,0,0);}
.m128_c01016{transform:matrix(0.249026,0.006475,-0.006498,0.249916,0,0);-ms-transform:matrix(0.249026,0.006475,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.249026,0.006475,-0.006498,0.249916,0,0);}
.m40_c01016{transform:matrix(0.249543,0.005989,-0.005998,0.249928,0,0);-ms-transform:matrix(0.249543,0.005989,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.249543,0.005989,-0.005998,0.249928,0,0);}
.m53_c01016{transform:matrix(0.249688,0.005993,-0.005998,0.249928,0,0);-ms-transform:matrix(0.249688,0.005993,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.249688,0.005993,-0.005998,0.249928,0,0);}
.m129_c01016{transform:matrix(0.249771,0.006494,-0.006498,0.249916,0,0);-ms-transform:matrix(0.249771,0.006494,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.249771,0.006494,-0.006498,0.249916,0,0);}
.m1f_c01016{transform:matrix(0.249793,0.005995,-0.005998,0.249928,0,0);-ms-transform:matrix(0.249793,0.005995,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.249793,0.005995,-0.005998,0.249928,0,0);}
.m55_c01016{transform:matrix(0.250318,0.006008,-0.005998,0.249928,0,0);-ms-transform:matrix(0.250318,0.006008,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.250318,0.006008,-0.005998,0.249928,0,0);}
.m138_c01016{transform:matrix(0.251042,0.013319,-0.013245,0.249649,0,0);-ms-transform:matrix(0.251042,0.013319,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.251042,0.013319,-0.013245,0.249649,0,0);}
.ma8_c01016{transform:matrix(0.251193,0.006029,-0.005998,0.249928,0,0);-ms-transform:matrix(0.251193,0.006029,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.251193,0.006029,-0.005998,0.249928,0,0);}
.m98_c01016{transform:matrix(0.251345,0.005278,-0.005249,0.249945,0,0);-ms-transform:matrix(0.251345,0.005278,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.251345,0.005278,-0.005249,0.249945,0,0);}
.mfe_c01016{transform:matrix(0.251473,0.009566,-0.009503,0.249819,0,0);-ms-transform:matrix(0.251473,0.009566,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.251473,0.009566,-0.009503,0.249819,0,0);}
.m119_c01016{transform:matrix(0.251702,0.009322,-0.009253,0.249829,0,0);-ms-transform:matrix(0.251702,0.009322,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.251702,0.009322,-0.009253,0.249829,0,0);}
.ma5_c01016{transform:matrix(0.251977,0.006047,-0.005998,0.249928,0,0);-ms-transform:matrix(0.251977,0.006047,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.251977,0.006047,-0.005998,0.249928,0,0);}
.mc0_c01016{transform:matrix(0.251989,0.005544,-0.005499,0.249940,0,0);-ms-transform:matrix(0.251989,0.005544,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.251989,0.005544,-0.005499,0.249940,0,0);}
.m26_c01016{transform:matrix(0.252237,0.006054,-0.005998,0.249928,0,0);-ms-transform:matrix(0.252237,0.006054,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.252237,0.006054,-0.005998,0.249928,0,0);}
.mb6_c01016{transform:matrix(0.252414,0.005553,-0.005499,0.249940,0,0);-ms-transform:matrix(0.252414,0.005553,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.252414,0.005553,-0.005499,0.249940,0,0);}
.m8b_c01016{transform:matrix(0.252534,0.005303,-0.005249,0.249945,0,0);-ms-transform:matrix(0.252534,0.005303,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.252534,0.005303,-0.005249,0.249945,0,0);}
.m32_c01016{transform:matrix(0.253252,0.006078,-0.005998,0.249928,0,0);-ms-transform:matrix(0.253252,0.006078,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.253252,0.006078,-0.005998,0.249928,0,0);}
.m11e_c01016{transform:matrix(0.253345,0.010905,-0.010751,0.249769,0,0);-ms-transform:matrix(0.253345,0.010905,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.253345,0.010905,-0.010751,0.249769,0,0);}
.m9a_c01016{transform:matrix(0.253729,0.005328,-0.005249,0.249945,0,0);-ms-transform:matrix(0.253729,0.005328,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.253729,0.005328,-0.005249,0.249945,0,0);}
.m9f_c01016{transform:matrix(0.254042,0.006097,-0.005998,0.249928,0,0);-ms-transform:matrix(0.254042,0.006097,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.254042,0.006097,-0.005998,0.249928,0,0);}
.m3a_c01016{transform:matrix(0.254132,0.006099,-0.005998,0.249928,0,0);-ms-transform:matrix(0.254132,0.006099,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.254132,0.006099,-0.005998,0.249928,0,0);}
.m94_c01016{transform:matrix(0.254664,0.005348,-0.005249,0.249945,0,0);-ms-transform:matrix(0.254664,0.005348,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.254664,0.005348,-0.005249,0.249945,0,0);}
.mad_c01016{transform:matrix(0.254878,0.005607,-0.005499,0.249940,0,0);-ms-transform:matrix(0.254878,0.005607,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.254878,0.005607,-0.005499,0.249940,0,0);}
.m34_c01016{transform:matrix(0.255381,0.006129,-0.005998,0.249928,0,0);-ms-transform:matrix(0.255381,0.006129,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.255381,0.006129,-0.005998,0.249928,0,0);}
.mf5_c01016{transform:matrix(0.255970,0.009737,-0.009503,0.249819,0,0);-ms-transform:matrix(0.255970,0.009737,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.255970,0.009737,-0.009503,0.249819,0,0);}
.ma0_c01016{transform:matrix(0.256056,0.006145,-0.005998,0.249928,0,0);-ms-transform:matrix(0.256056,0.006145,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.256056,0.006145,-0.005998,0.249928,0,0);}
.m78_c01016{transform:matrix(0.256733,0.005391,-0.005249,0.249945,0,0);-ms-transform:matrix(0.256733,0.005391,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.256733,0.005391,-0.005249,0.249945,0,0);}
.m28_c01016{transform:matrix(0.256861,0.006165,-0.005998,0.249928,0,0);-ms-transform:matrix(0.256861,0.006165,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.256861,0.006165,-0.005998,0.249928,0,0);}
.m54_c01016{transform:matrix(0.257026,0.006169,-0.005998,0.249928,0,0);-ms-transform:matrix(0.257026,0.006169,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.257026,0.006169,-0.005998,0.249928,0,0);}
.m12f_c01016{transform:matrix(0.257518,0.006695,-0.006498,0.249916,0,0);-ms-transform:matrix(0.257518,0.006695,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.257518,0.006695,-0.006498,0.249916,0,0);}
.m83_c01016{transform:matrix(0.258553,0.005430,-0.005249,0.249945,0,0);-ms-transform:matrix(0.258553,0.005430,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.258553,0.005430,-0.005249,0.249945,0,0);}
.m44_c01016{transform:matrix(0.258671,0.006208,-0.005998,0.249928,0,0);-ms-transform:matrix(0.258671,0.006208,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.258671,0.006208,-0.005998,0.249928,0,0);}
.m7e_c01016{transform:matrix(0.259898,0.005458,-0.005249,0.249945,0,0);-ms-transform:matrix(0.259898,0.005458,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.259898,0.005458,-0.005249,0.249945,0,0);}
.m99_c01016{transform:matrix(0.259993,0.005460,-0.005249,0.249945,0,0);-ms-transform:matrix(0.259993,0.005460,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.259993,0.005460,-0.005249,0.249945,0,0);}
.m95_c01016{transform:matrix(0.260103,0.005462,-0.005249,0.249945,0,0);-ms-transform:matrix(0.260103,0.005462,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.260103,0.005462,-0.005249,0.249945,0,0);}
.mde_c01016{transform:matrix(0.260885,0.008087,-0.007746,0.249880,0,0);-ms-transform:matrix(0.260885,0.008087,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.260885,0.008087,-0.007746,0.249880,0,0);}
.m7b_c01016{transform:matrix(0.261632,0.005494,-0.005249,0.249945,0,0);-ms-transform:matrix(0.261632,0.005494,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.261632,0.005494,-0.005249,0.249945,0,0);}
.ma4_c01016{transform:matrix(0.261910,0.006286,-0.005998,0.249928,0,0);-ms-transform:matrix(0.261910,0.006286,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.261910,0.006286,-0.005998,0.249928,0,0);}
.m3c_c01016{transform:matrix(0.262065,0.006290,-0.005998,0.249928,0,0);-ms-transform:matrix(0.262065,0.006290,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.262065,0.006290,-0.005998,0.249928,0,0);}
.mf9_c01016{transform:matrix(0.262330,0.009979,-0.009503,0.249819,0,0);-ms-transform:matrix(0.262330,0.009979,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.262330,0.009979,-0.009503,0.249819,0,0);}
.m4b_c01016{transform:matrix(0.262439,0.006299,-0.005998,0.249928,0,0);-ms-transform:matrix(0.262439,0.006299,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.262439,0.006299,-0.005998,0.249928,0,0);}
.md8_c01016{transform:matrix(0.262451,0.005774,-0.005499,0.249940,0,0);-ms-transform:matrix(0.262451,0.005774,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.262451,0.005774,-0.005499,0.249940,0,0);}
.m96_c01016{transform:matrix(0.262517,0.005513,-0.005249,0.249945,0,0);-ms-transform:matrix(0.262517,0.005513,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.262517,0.005513,-0.005249,0.249945,0,0);}
.m121_c01016{transform:matrix(0.263271,0.011332,-0.010751,0.249769,0,0);-ms-transform:matrix(0.263271,0.011332,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.263271,0.011332,-0.010751,0.249769,0,0);}
.m49_c01016{transform:matrix(0.263684,0.006328,-0.005998,0.249928,0,0);-ms-transform:matrix(0.263684,0.006328,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.263684,0.006328,-0.005998,0.249928,0,0);}
.m9d_c01016{transform:matrix(0.263919,0.006334,-0.005998,0.249928,0,0);-ms-transform:matrix(0.263919,0.006334,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.263919,0.006334,-0.005998,0.249928,0,0);}
.m2e_c01016{transform:matrix(0.264029,0.006337,-0.005998,0.249928,0,0);-ms-transform:matrix(0.264029,0.006337,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.264029,0.006337,-0.005998,0.249928,0,0);}
.ma1_c01016{transform:matrix(0.264514,0.006348,-0.005998,0.249928,0,0);-ms-transform:matrix(0.264514,0.006348,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.264514,0.006348,-0.005998,0.249928,0,0);}
.m2a_c01016{transform:matrix(0.264579,0.006350,-0.005998,0.249928,0,0);-ms-transform:matrix(0.264579,0.006350,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.264579,0.006350,-0.005998,0.249928,0,0);}
.m87_c01016{transform:matrix(0.264607,0.005557,-0.005249,0.249945,0,0);-ms-transform:matrix(0.264607,0.005557,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.264607,0.005557,-0.005249,0.249945,0,0);}
.m12d_c01016{transform:matrix(0.265360,0.006899,-0.006498,0.249916,0,0);-ms-transform:matrix(0.265360,0.006899,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.265360,0.006899,-0.006498,0.249916,0,0);}
.m13c_c01016{transform:matrix(0.265781,0.014101,-0.013245,0.249649,0,0);-ms-transform:matrix(0.265781,0.014101,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.265781,0.014101,-0.013245,0.249649,0,0);}
.m3d_c01016{transform:matrix(0.265868,0.006381,-0.005998,0.249928,0,0);-ms-transform:matrix(0.265868,0.006381,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.265868,0.006381,-0.005998,0.249928,0,0);}
.me4_c01016{transform:matrix(0.266122,0.008250,-0.007746,0.249880,0,0);-ms-transform:matrix(0.266122,0.008250,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.266122,0.008250,-0.007746,0.249880,0,0);}
.me9_c01016{transform:matrix(0.266182,0.008252,-0.007746,0.249880,0,0);-ms-transform:matrix(0.266182,0.008252,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.266182,0.008252,-0.007746,0.249880,0,0);}
.mae_c01016{transform:matrix(0.266221,0.005857,-0.005499,0.249940,0,0);-ms-transform:matrix(0.266221,0.005857,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.266221,0.005857,-0.005499,0.249940,0,0);}
.ma2_c01016{transform:matrix(0.266383,0.006393,-0.005998,0.249928,0,0);-ms-transform:matrix(0.266383,0.006393,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.266383,0.006393,-0.005998,0.249928,0,0);}
.m1c_c01016{transform:matrix(0.266446,0.005862,-0.005499,0.249940,0,0);-ms-transform:matrix(0.266446,0.005862,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.266446,0.005862,-0.005499,0.249940,0,0);}
.m80_c01016{transform:matrix(0.266591,0.005598,-0.005249,0.249945,0,0);-ms-transform:matrix(0.266591,0.005598,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.266591,0.005598,-0.005249,0.249945,0,0);}
.m136_c01016{transform:matrix(0.266800,0.014155,-0.013245,0.249649,0,0);-ms-transform:matrix(0.266800,0.014155,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.266800,0.014155,-0.013245,0.249649,0,0);}
.m126_c01016{transform:matrix(0.266875,0.006939,-0.006498,0.249916,0,0);-ms-transform:matrix(0.266875,0.006939,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.266875,0.006939,-0.006498,0.249916,0,0);}
.m8a_c01016{transform:matrix(0.266941,0.005606,-0.005249,0.249945,0,0);-ms-transform:matrix(0.266941,0.005606,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.266941,0.005606,-0.005249,0.249945,0,0);}
.m10d_c01016{transform:matrix(0.267706,0.010183,-0.009503,0.249819,0,0);-ms-transform:matrix(0.267706,0.010183,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.267706,0.010183,-0.009503,0.249819,0,0);}
.mb1_c01016{transform:matrix(0.267710,0.005890,-0.005499,0.249940,0,0);-ms-transform:matrix(0.267710,0.005890,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.267710,0.005890,-0.005499,0.249940,0,0);}
.m50_c01016{transform:matrix(0.267973,0.006431,-0.005998,0.249928,0,0);-ms-transform:matrix(0.267973,0.006431,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.267973,0.006431,-0.005998,0.249928,0,0);}
.m122_c01016{transform:matrix(0.268706,0.011566,-0.010751,0.249769,0,0);-ms-transform:matrix(0.268706,0.011566,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.268706,0.011566,-0.010751,0.249769,0,0);}
.m8c_c01016{transform:matrix(0.269006,0.005649,-0.005249,0.249945,0,0);-ms-transform:matrix(0.269006,0.005649,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.269006,0.005649,-0.005249,0.249945,0,0);}
.mbb_c01016{transform:matrix(0.269095,0.005920,-0.005499,0.249940,0,0);-ms-transform:matrix(0.269095,0.005920,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.269095,0.005920,-0.005499,0.249940,0,0);}
.m13b_c01016{transform:matrix(0.269211,0.014282,-0.013245,0.249649,0,0);-ms-transform:matrix(0.269211,0.014282,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.269211,0.014282,-0.013245,0.249649,0,0);}
.m131_c01016{transform:matrix(0.269419,0.007005,-0.006498,0.249916,0,0);-ms-transform:matrix(0.269419,0.007005,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.269419,0.007005,-0.006498,0.249916,0,0);}
.m88_c01016{transform:matrix(0.270010,0.005670,-0.005249,0.249945,0,0);-ms-transform:matrix(0.270010,0.005670,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.270010,0.005670,-0.005249,0.249945,0,0);}
.m52_c01016{transform:matrix(0.270197,0.006485,-0.005998,0.249928,0,0);-ms-transform:matrix(0.270197,0.006485,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.270197,0.006485,-0.005998,0.249928,0,0);}
.mb9_c01016{transform:matrix(0.270215,0.005945,-0.005499,0.249940,0,0);-ms-transform:matrix(0.270215,0.005945,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.270215,0.005945,-0.005499,0.249940,0,0);}
.m93_c01016{transform:matrix(0.270755,0.005686,-0.005249,0.249945,0,0);-ms-transform:matrix(0.270755,0.005686,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.270755,0.005686,-0.005249,0.249945,0,0);}
.m132_c01016{transform:matrix(0.270803,0.007041,-0.006498,0.249916,0,0);-ms-transform:matrix(0.270803,0.007041,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.270803,0.007041,-0.006498,0.249916,0,0);}
.mda_c01016{transform:matrix(0.271460,0.008415,-0.007746,0.249880,0,0);-ms-transform:matrix(0.271460,0.008415,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.271460,0.008415,-0.007746,0.249880,0,0);}
.m91_c01016{transform:matrix(0.271525,0.005702,-0.005249,0.249945,0,0);-ms-transform:matrix(0.271525,0.005702,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.271525,0.005702,-0.005249,0.249945,0,0);}
.m12b_c01016{transform:matrix(0.271858,0.007068,-0.006498,0.249916,0,0);-ms-transform:matrix(0.271858,0.007068,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.271858,0.007068,-0.006498,0.249916,0,0);}
.m4d_c01016{transform:matrix(0.272342,0.006536,-0.005998,0.249928,0,0);-ms-transform:matrix(0.272342,0.006536,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.272342,0.006536,-0.005998,0.249928,0,0);}
.m101_c01016{transform:matrix(0.272368,0.010360,-0.009503,0.249819,0,0);-ms-transform:matrix(0.272368,0.010360,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.272368,0.010360,-0.009503,0.249819,0,0);}
.m4f_c01016{transform:matrix(0.272402,0.006538,-0.005998,0.249928,0,0);-ms-transform:matrix(0.272402,0.006538,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.272402,0.006538,-0.005998,0.249928,0,0);}
.m130_c01016{transform:matrix(0.273678,0.007116,-0.006498,0.249916,0,0);-ms-transform:matrix(0.273678,0.007116,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.273678,0.007116,-0.006498,0.249916,0,0);}
.m4e_c01016{transform:matrix(0.274696,0.006593,-0.005998,0.249928,0,0);-ms-transform:matrix(0.274696,0.006593,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.274696,0.006593,-0.005998,0.249928,0,0);}
.m30_c01016{transform:matrix(0.274816,0.006596,-0.005998,0.249928,0,0);-ms-transform:matrix(0.274816,0.006596,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.274816,0.006596,-0.005998,0.249928,0,0);}
.m102_c01016{transform:matrix(0.275061,0.010463,-0.009503,0.249819,0,0);-ms-transform:matrix(0.275061,0.010463,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.275061,0.010463,-0.009503,0.249819,0,0);}
.m8f_c01016{transform:matrix(0.275504,0.005786,-0.005249,0.249945,0,0);-ms-transform:matrix(0.275504,0.005786,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.275504,0.005786,-0.005249,0.249945,0,0);}
.mdb_c01016{transform:matrix(0.276452,0.008570,-0.007746,0.249880,0,0);-ms-transform:matrix(0.276452,0.008570,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.276452,0.008570,-0.007746,0.249880,0,0);}
.me0_c01016{transform:matrix(0.276642,0.008576,-0.007746,0.249880,0,0);-ms-transform:matrix(0.276642,0.008576,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.276642,0.008576,-0.007746,0.249880,0,0);}
.m41_c01016{transform:matrix(0.276845,0.006644,-0.005998,0.249928,0,0);-ms-transform:matrix(0.276845,0.006644,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.276845,0.006644,-0.005998,0.249928,0,0);}
.m82_c01016{transform:matrix(0.277074,0.005819,-0.005249,0.249945,0,0);-ms-transform:matrix(0.277074,0.005819,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.277074,0.005819,-0.005249,0.249945,0,0);}
.md0_c01016{transform:matrix(0.277278,0.006100,-0.005499,0.249940,0,0);-ms-transform:matrix(0.277278,0.006100,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.277278,0.006100,-0.005499,0.249940,0,0);}
.mbc_c01016{transform:matrix(0.278123,0.006119,-0.005499,0.249940,0,0);-ms-transform:matrix(0.278123,0.006119,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.278123,0.006119,-0.005499,0.249940,0,0);}
.m79_c01016{transform:matrix(0.278254,0.005843,-0.005249,0.249945,0,0);-ms-transform:matrix(0.278254,0.005843,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.278254,0.005843,-0.005249,0.249945,0,0);}
.m106_c01016{transform:matrix(0.278339,0.010587,-0.009503,0.249819,0,0);-ms-transform:matrix(0.278339,0.010587,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.278339,0.010587,-0.009503,0.249819,0,0);}
.me8_c01016{transform:matrix(0.279321,0.008659,-0.007746,0.249880,0,0);-ms-transform:matrix(0.279321,0.008659,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.279321,0.008659,-0.007746,0.249880,0,0);}
.m108_c01016{transform:matrix(0.279608,0.010636,-0.009503,0.249819,0,0);-ms-transform:matrix(0.279608,0.010636,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.279608,0.010636,-0.009503,0.249819,0,0);}
.mdc_c01016{transform:matrix(0.280075,0.008682,-0.007746,0.249880,0,0);-ms-transform:matrix(0.280075,0.008682,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.280075,0.008682,-0.007746,0.249880,0,0);}
.m10b_c01016{transform:matrix(0.280277,0.010661,-0.009503,0.249819,0,0);-ms-transform:matrix(0.280277,0.010661,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.280277,0.010661,-0.009503,0.249819,0,0);}
.m10a_c01016{transform:matrix(0.281596,0.010711,-0.009503,0.249819,0,0);-ms-transform:matrix(0.281596,0.010711,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.281596,0.010711,-0.009503,0.249819,0,0);}
.m2b_c01016{transform:matrix(0.282409,0.006778,-0.005998,0.249928,0,0);-ms-transform:matrix(0.282409,0.006778,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.282409,0.006778,-0.005998,0.249928,0,0);}
.mc1_c01016{transform:matrix(0.282467,0.006214,-0.005499,0.249940,0,0);-ms-transform:matrix(0.282467,0.006214,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.282467,0.006214,-0.005499,0.249940,0,0);}
.mea_c01016{transform:matrix(0.282984,0.008773,-0.007746,0.249880,0,0);-ms-transform:matrix(0.282984,0.008773,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.282984,0.008773,-0.007746,0.249880,0,0);}
.mb7_c01016{transform:matrix(0.283391,0.006235,-0.005499,0.249940,0,0);-ms-transform:matrix(0.283391,0.006235,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.283391,0.006235,-0.005499,0.249940,0,0);}
.ma3_c01016{transform:matrix(0.284698,0.006833,-0.005998,0.249928,0,0);-ms-transform:matrix(0.284698,0.006833,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.284698,0.006833,-0.005998,0.249928,0,0);}
.m48_c01016{transform:matrix(0.285553,0.006853,-0.005998,0.249928,0,0);-ms-transform:matrix(0.285553,0.006853,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.285553,0.006853,-0.005998,0.249928,0,0);}
.m46_c01016{transform:matrix(0.285778,0.006859,-0.005998,0.249928,0,0);-ms-transform:matrix(0.285778,0.006859,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.285778,0.006859,-0.005998,0.249928,0,0);}
.maf_c01016{transform:matrix(0.286531,0.006304,-0.005499,0.249940,0,0);-ms-transform:matrix(0.286531,0.006304,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.286531,0.006304,-0.005499,0.249940,0,0);}
.m133_c01016{transform:matrix(0.287008,0.007462,-0.006498,0.249916,0,0);-ms-transform:matrix(0.287008,0.007462,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.287008,0.007462,-0.006498,0.249916,0,0);}
.m13_c01016{transform:matrix(0.288055,0.006337,-0.005499,0.249940,0,0);-ms-transform:matrix(0.288055,0.006337,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.288055,0.006337,-0.005499,0.249940,0,0);}
.m35_c01016{transform:matrix(0.288222,0.006917,-0.005998,0.249928,0,0);-ms-transform:matrix(0.288222,0.006917,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.288222,0.006917,-0.005998,0.249928,0,0);}
.m3f_c01016{transform:matrix(0.289397,0.006946,-0.005998,0.249928,0,0);-ms-transform:matrix(0.289397,0.006946,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.289397,0.006946,-0.005998,0.249928,0,0);}
.m38_c01016{transform:matrix(0.289487,0.006948,-0.005998,0.249928,0,0);-ms-transform:matrix(0.289487,0.006948,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.289487,0.006948,-0.005998,0.249928,0,0);}
.mb4_c01016{transform:matrix(0.289515,0.006369,-0.005499,0.249940,0,0);-ms-transform:matrix(0.289515,0.006369,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.289515,0.006369,-0.005499,0.249940,0,0);}
.m3e_c01016{transform:matrix(0.289972,0.006959,-0.005998,0.249928,0,0);-ms-transform:matrix(0.289972,0.006959,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.289972,0.006959,-0.005998,0.249928,0,0);}
.mba_c01016{transform:matrix(0.290800,0.006398,-0.005499,0.249940,0,0);-ms-transform:matrix(0.290800,0.006398,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.290800,0.006398,-0.005499,0.249940,0,0);}
.mac_c01016{transform:matrix(0.290825,0.006398,-0.005499,0.249940,0,0);-ms-transform:matrix(0.290825,0.006398,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.290825,0.006398,-0.005499,0.249940,0,0);}
.ma6_c01016{transform:matrix(0.294010,0.007056,-0.005998,0.249928,0,0);-ms-transform:matrix(0.294010,0.007056,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.294010,0.007056,-0.005998,0.249928,0,0);}
.maa_c01016{transform:matrix(0.294479,0.006479,-0.005499,0.249940,0,0);-ms-transform:matrix(0.294479,0.006479,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.294479,0.006479,-0.005499,0.249940,0,0);}
.mbd_c01016{transform:matrix(0.295374,0.006498,-0.005499,0.249940,0,0);-ms-transform:matrix(0.295374,0.006498,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.295374,0.006498,-0.005499,0.249940,0,0);}
.m27_c01016{transform:matrix(0.295445,0.007091,-0.005998,0.249928,0,0);-ms-transform:matrix(0.295445,0.007091,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.295445,0.007091,-0.005998,0.249928,0,0);}
.m39_c01016{transform:matrix(0.297429,0.007138,-0.005998,0.249928,0,0);-ms-transform:matrix(0.297429,0.007138,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.297429,0.007138,-0.005998,0.249928,0,0);}
.m9e_c01016{transform:matrix(0.298084,0.007154,-0.005998,0.249928,0,0);-ms-transform:matrix(0.298084,0.007154,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.298084,0.007154,-0.005998,0.249928,0,0);}
.mb8_c01016{transform:matrix(0.299098,0.006580,-0.005499,0.249940,0,0);-ms-transform:matrix(0.299098,0.006580,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.299098,0.006580,-0.005499,0.249940,0,0);}
.m42_c01016{transform:matrix(0.300418,0.007210,-0.005998,0.249928,0,0);-ms-transform:matrix(0.300418,0.007210,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.300418,0.007210,-0.005998,0.249928,0,0);}
.ma7_c01016{transform:matrix(0.300993,0.007224,-0.005998,0.249928,0,0);-ms-transform:matrix(0.300993,0.007224,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.300993,0.007224,-0.005998,0.249928,0,0);}
.m4a_c01016{transform:matrix(0.301233,0.007230,-0.005998,0.249928,0,0);-ms-transform:matrix(0.301233,0.007230,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.301233,0.007230,-0.005998,0.249928,0,0);}
.m3b_c01016{transform:matrix(0.301588,0.007238,-0.005998,0.249928,0,0);-ms-transform:matrix(0.301588,0.007238,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.301588,0.007238,-0.005998,0.249928,0,0);}
.mb2_c01016{transform:matrix(0.304241,0.006693,-0.005499,0.249940,0,0);-ms-transform:matrix(0.304241,0.006693,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.304241,0.006693,-0.005499,0.249940,0,0);}
.mbf_c01016{transform:matrix(0.304766,0.006705,-0.005499,0.249940,0,0);-ms-transform:matrix(0.304766,0.006705,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.304766,0.006705,-0.005499,0.249940,0,0);}
.mb5_c01016{transform:matrix(0.307326,0.006761,-0.005499,0.249940,0,0);-ms-transform:matrix(0.307326,0.006761,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.307326,0.006761,-0.005499,0.249940,0,0);}
.m15_c01016{transform:matrix(0.308325,0.006783,-0.005499,0.249940,0,0);-ms-transform:matrix(0.308325,0.006783,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.308325,0.006783,-0.005499,0.249940,0,0);}
.m45_c01016{transform:matrix(0.309331,0.007424,-0.005998,0.249928,0,0);-ms-transform:matrix(0.309331,0.007424,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.309331,0.007424,-0.005998,0.249928,0,0);}
.m16_c01016{transform:matrix(0.311985,0.006864,-0.005499,0.249940,0,0);-ms-transform:matrix(0.311985,0.006864,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.311985,0.006864,-0.005499,0.249940,0,0);}
.mbe_c01016{transform:matrix(0.316548,0.006964,-0.005499,0.249940,0,0);-ms-transform:matrix(0.316548,0.006964,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.316548,0.006964,-0.005499,0.249940,0,0);}
.m4c_c01016{transform:matrix(0.330360,0.007929,-0.005998,0.249928,0,0);-ms-transform:matrix(0.330360,0.007929,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.330360,0.007929,-0.005998,0.249928,0,0);}
.m37_c01016{transform:matrix(0.342466,0.008219,-0.005998,0.249928,0,0);-ms-transform:matrix(0.342466,0.008219,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.342466,0.008219,-0.005998,0.249928,0,0);}
.m13e_c01016{transform:matrix(0.343217,0.018209,-0.013245,0.249649,0,0);-ms-transform:matrix(0.343217,0.018209,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.343217,0.018209,-0.013245,0.249649,0,0);}
.mab_c01016{transform:matrix(0.344452,0.007578,-0.005499,0.249940,0,0);-ms-transform:matrix(0.344452,0.007578,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.344452,0.007578,-0.005499,0.249940,0,0);}
.m33_c01016{transform:matrix(0.345680,0.008296,-0.005998,0.249928,0,0);-ms-transform:matrix(0.345680,0.008296,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.345680,0.008296,-0.005998,0.249928,0,0);}
.ma9_c01016{transform:matrix(0.346640,0.008319,-0.005998,0.249928,0,0);-ms-transform:matrix(0.346640,0.008319,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.346640,0.008319,-0.005998,0.249928,0,0);}
.m17_c01016{transform:matrix(0.362402,0.007973,-0.005499,0.249940,0,0);-ms-transform:matrix(0.362402,0.007973,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.362402,0.007973,-0.005499,0.249940,0,0);}
.m12_c01016{transform:matrix(0.375974,0.008271,-0.005499,0.249940,0,0);-ms-transform:matrix(0.375974,0.008271,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.375974,0.008271,-0.005499,0.249940,0,0);}
.mc_c01016{transform:matrix(0.379178,0.004550,-0.003000,0.249982,0,0);-ms-transform:matrix(0.379178,0.004550,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.379178,0.004550,-0.003000,0.249982,0,0);}
.ma_c01016{transform:matrix(0.398151,0.004778,-0.003000,0.249982,0,0);-ms-transform:matrix(0.398151,0.004778,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.398151,0.004778,-0.003000,0.249982,0,0);}
.m9c_c01016{transform:matrix(0.401339,0.009632,-0.005998,0.249928,0,0);-ms-transform:matrix(0.401339,0.009632,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.401339,0.009632,-0.005998,0.249928,0,0);}
.md_c01016{transform:matrix(0.414820,0.004978,-0.003000,0.249982,0,0);-ms-transform:matrix(0.414820,0.004978,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.414820,0.004978,-0.003000,0.249982,0,0);}
.mf_c01016{transform:matrix(0.431619,0.005179,-0.003000,0.249982,0,0);-ms-transform:matrix(0.431619,0.005179,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.431619,0.005179,-0.003000,0.249982,0,0);}
.me_c01016{transform:matrix(0.441018,0.005292,-0.003000,0.249982,0,0);-ms-transform:matrix(0.441018,0.005292,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.441018,0.005292,-0.003000,0.249982,0,0);}
.mb_c01016{transform:matrix(0.453982,0.005448,-0.003000,0.249982,0,0);-ms-transform:matrix(0.453982,0.005448,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.453982,0.005448,-0.003000,0.249982,0,0);}
.m1a_c01016{transform:matrix(0.654062,0.014389,-0.005499,0.249940,0,0);-ms-transform:matrix(0.654062,0.014389,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.654062,0.014389,-0.005499,0.249940,0,0);}
.m9_c01016{transform:matrix(0.715979,0.007160,-0.002500,0.249988,0,0);-ms-transform:matrix(0.715979,0.007160,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.715979,0.007160,-0.002500,0.249988,0,0);}
.m18_c01016{transform:matrix(0.906786,0.019949,-0.005499,0.249940,0,0);-ms-transform:matrix(0.906786,0.019949,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.906786,0.019949,-0.005499,0.249940,0,0);}
.m8_c01016{transform:matrix(1.070911,0.010709,-0.002500,0.249988,0,0);-ms-transform:matrix(1.070911,0.010709,-0.002500,0.249988,0,0);-webkit-transform:matrix(1.070911,0.010709,-0.002500,0.249988,0,0);}
.m11_c01016{transform:matrix(1.076170,0.023676,-0.005499,0.249940,0,0);-ms-transform:matrix(1.076170,0.023676,-0.005499,0.249940,0,0);-webkit-transform:matrix(1.076170,0.023676,-0.005499,0.249940,0,0);}
.m19_c01016{transform:matrix(1.814281,0.039914,-0.005499,0.249940,0,0);-ms-transform:matrix(1.814281,0.039914,-0.005499,0.249940,0,0);-webkit-transform:matrix(1.814281,0.039914,-0.005499,0.249940,0,0);}
.v0_c01016{vertical-align:0.000000px;}
.ls0_c01016{letter-spacing:0.000000px;}
.sc__c01016{text-shadow:none;}
.sc0_c01016{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__c01016{-webkit-text-stroke:0px transparent;}
.sc0_c01016{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01016{word-spacing:0.000000px;}
._0_c01016{margin-left:-13.147215px;}
.fc0_c01016{color:transparent;}
.fs3_c01016{font-size:30.007259px;}
.fs1_c01016{font-size:36.001800px;}
.fs2_c01016{font-size:42.003024px;}
.fs12_c01016{font-size:65.981682px;}
.fsb_c01016{font-size:66.015970px;}
.fs6_c01016{font-size:66.019005px;}
.fs11_c01016{font-size:71.980017px;}
.fsa_c01016{font-size:72.015874px;}
.fsd_c01016{font-size:72.017422px;}
.fs5_c01016{font-size:72.020733px;}
.fs15_c01016{font-size:72.024332px;}
.fs16_c01016{font-size:72.029154px;}
.fse_c01016{font-size:72.034588px;}
.fs10_c01016{font-size:77.978352px;}
.fs14_c01016{font-size:77.994150px;}
.fs4_c01016{font-size:78.022461px;}
.fs0_c01016{font-size:84.004200px;}
.fs8_c01016{font-size:84.018520px;}
.fsc_c01016{font-size:84.020326px;}
.fs9_c01016{font-size:84.032922px;}
.fs17_c01016{font-size:84.040352px;}
.fs13_c01016{font-size:89.971646px;}
.fsf_c01016{font-size:95.973356px;}
.fs7_c01016{font-size:96.027644px;}
.y0_c01016{bottom:0.000000px;}
.y154_c01016{bottom:71.152515px;}
.y153_c01016{bottom:73.146225px;}
.y152_c01016{bottom:76.300337px;}
.y151_c01016{bottom:77.108895px;}
.y150_c01016{bottom:78.695798px;}
.y14f_c01016{bottom:79.882775px;}
.y14e_c01016{bottom:82.624952px;}
.y14d_c01016{bottom:83.809511px;}
.y14c_c01016{bottom:85.791584px;}
.y14b_c01016{bottom:86.946254px;}
.y14a_c01016{bottom:95.015925px;}
.y149_c01016{bottom:97.480704px;}
.y148_c01016{bottom:98.497148px;}
.y147_c01016{bottom:100.190445px;}
.y146_c01016{bottom:101.590421px;}
.y145_c01016{bottom:102.621000px;}
.ya_c01016{bottom:109.769130px;}
.y9_c01016{bottom:109.769685px;}
.y8_c01016{bottom:114.121830px;}
.y7_c01016{bottom:114.457260px;}
.y6_c01016{bottom:114.782130px;}
.y5_c01016{bottom:115.010640px;}
.y4_c01016{bottom:115.878210px;}
.y3_c01016{bottom:116.420505px;}
.y2_c01016{bottom:116.752080px;}
.y1_c01016{bottom:117.181500px;}
.y144_c01016{bottom:128.095977px;}
.y143_c01016{bottom:130.757232px;}
.y142_c01016{bottom:134.725515px;}
.y141_c01016{bottom:138.794588px;}
.y140_c01016{bottom:140.778252px;}
.y13f_c01016{bottom:143.461902px;}
.y13e_c01016{bottom:146.103374px;}
.y139_c01016{bottom:150.622155px;}
.y138_c01016{bottom:152.533290px;}
.y137_c01016{bottom:154.410630px;}
.y136_c01016{bottom:156.866382px;}
.y13d_c01016{bottom:166.129625px;}
.y13c_c01016{bottom:169.632156px;}
.y13b_c01016{bottom:172.068275px;}
.y13a_c01016{bottom:173.085000px;}
.y135_c01016{bottom:177.534747px;}
.y134_c01016{bottom:178.392357px;}
.y133_c01016{bottom:180.156327px;}
.y132_c01016{bottom:180.978486px;}
.y131_c01016{bottom:183.550419px;}
.y130_c01016{bottom:184.716636px;}
.y12f_c01016{bottom:186.401787px;}
.y12e_c01016{bottom:187.307601px;}
.y12d_c01016{bottom:188.114082px;}
.y12c_c01016{bottom:190.359000px;}
.y12b_c01016{bottom:202.244634px;}
.y12a_c01016{bottom:204.627006px;}
.y129_c01016{bottom:206.614961px;}
.y128_c01016{bottom:207.546792px;}
.y127_c01016{bottom:214.202676px;}
.y126_c01016{bottom:216.621813px;}
.y125_c01016{bottom:218.045006px;}
.y124_c01016{bottom:222.732479px;}
.y123_c01016{bottom:224.650838px;}
.y122_c01016{bottom:226.993865px;}
.y121_c01016{bottom:228.384291px;}
.y120_c01016{bottom:231.676500px;}
.y11f_c01016{bottom:239.953008px;}
.y11e_c01016{bottom:242.924645px;}
.y11d_c01016{bottom:245.347941px;}
.y11c_c01016{bottom:248.657517px;}
.y11b_c01016{bottom:249.885066px;}
.y11a_c01016{bottom:252.305033px;}
.y119_c01016{bottom:253.538853px;}
.y118_c01016{bottom:256.397380px;}
.y117_c01016{bottom:258.835884px;}
.y116_c01016{bottom:260.470914px;}
.y115_c01016{bottom:263.315345px;}
.y114_c01016{bottom:264.880500px;}
.y113_c01016{bottom:275.198673px;}
.y112_c01016{bottom:276.476727px;}
.y111_c01016{bottom:278.555916px;}
.y110_c01016{bottom:279.455832px;}
.y10f_c01016{bottom:280.278000px;}
.y10e_c01016{bottom:286.489042px;}
.y10d_c01016{bottom:287.971122px;}
.y10c_c01016{bottom:292.626312px;}
.y10b_c01016{bottom:294.199281px;}
.y10a_c01016{bottom:295.372147px;}
.y109_c01016{bottom:296.512557px;}
.y108_c01016{bottom:299.984694px;}
.y107_c01016{bottom:303.787972px;}
.y106_c01016{bottom:313.612572px;}
.y105_c01016{bottom:314.660434px;}
.y104_c01016{bottom:317.401777px;}
.y103_c01016{bottom:318.465949px;}
.y102_c01016{bottom:319.494310px;}
.y101_c01016{bottom:321.216681px;}
.y100_c01016{bottom:322.235027px;}
.yff_c01016{bottom:327.004470px;}
.yfe_c01016{bottom:328.744233px;}
.yfd_c01016{bottom:330.061998px;}
.yfc_c01016{bottom:331.123850px;}
.yfb_c01016{bottom:333.808113px;}
.yfa_c01016{bottom:334.822599px;}
.yf9_c01016{bottom:352.220973px;}
.yf8_c01016{bottom:353.098032px;}
.yf7_c01016{bottom:358.226949px;}
.yf6_c01016{bottom:359.881887px;}
.yf5_c01016{bottom:361.101972px;}
.yf4_c01016{bottom:365.299965px;}
.yf3_c01016{bottom:366.137466px;}
.yf2_c01016{bottom:369.487356px;}
.yf1_c01016{bottom:370.729500px;}
.yf0_c01016{bottom:393.242490px;}
.yef_c01016{bottom:394.903300px;}
.yee_c01016{bottom:397.916064px;}
.yed_c01016{bottom:398.745342px;}
.yec_c01016{bottom:399.832702px;}
.yeb_c01016{bottom:400.664665px;}
.yea_c01016{bottom:403.384392px;}
.ye9_c01016{bottom:404.180575px;}
.ye8_c01016{bottom:423.932451px;}
.ye7_c01016{bottom:424.957497px;}
.ye6_c01016{bottom:427.403397px;}
.ye5_c01016{bottom:428.417050px;}
.ye4_c01016{bottom:430.486579px;}
.ye3_c01016{bottom:431.866188px;}
.ye2_c01016{bottom:435.253062px;}
.ye1_c01016{bottom:438.022741px;}
.ye0_c01016{bottom:440.683378px;}
.ydf_c01016{bottom:441.732000px;}
.yde_c01016{bottom:475.827531px;}
.ydd_c01016{bottom:497.754708px;}
.ydc_c01016{bottom:500.072766px;}
.ydb_c01016{bottom:501.533319px;}
.yda_c01016{bottom:503.237589px;}
.yd9_c01016{bottom:505.826487px;}
.yd8_c01016{bottom:506.661951px;}
.yd7_c01016{bottom:507.804714px;}
.yd6_c01016{bottom:508.432905px;}
.yd5_c01016{bottom:510.397044px;}
.yd4_c01016{bottom:510.999003px;}
.yd3_c01016{bottom:512.962977px;}
.yd2_c01016{bottom:514.332267px;}
.yd1_c01016{bottom:534.364347px;}
.yd0_c01016{bottom:537.459150px;}
.ycf_c01016{bottom:539.659977px;}
.yce_c01016{bottom:540.268152px;}
.ycd_c01016{bottom:542.433891px;}
.ycc_c01016{bottom:543.974331px;}
.ycb_c01016{bottom:546.721158px;}
.yca_c01016{bottom:547.652301px;}
.yc9_c01016{bottom:549.494907px;}
.yc8_c01016{bottom:551.330733px;}
.yc7_c01016{bottom:569.397405px;}
.yc6_c01016{bottom:570.207936px;}
.yc5_c01016{bottom:572.974209px;}
.yc4_c01016{bottom:574.432353px;}
.yc3_c01016{bottom:576.570480px;}
.yc2_c01016{bottom:578.217972px;}
.yc1_c01016{bottom:579.331869px;}
.yc0_c01016{bottom:581.256561px;}
.ybf_c01016{bottom:581.834916px;}
.ybe_c01016{bottom:584.259927px;}
.ybd_c01016{bottom:585.899088px;}
.ybc_c01016{bottom:604.590219px;}
.ybb_c01016{bottom:606.578931px;}
.yba_c01016{bottom:608.014761px;}
.yb9_c01016{bottom:608.726472px;}
.yb8_c01016{bottom:611.187777px;}
.yb7_c01016{bottom:611.907639px;}
.yb6_c01016{bottom:612.614202px;}
.yb5_c01016{bottom:614.300502px;}
.yb4_c01016{bottom:615.050724px;}
.yb3_c01016{bottom:615.768243px;}
.yb2_c01016{bottom:617.224764px;}
.yb1_c01016{bottom:617.713560px;}
.yb0_c01016{bottom:619.386000px;}
.yaf_c01016{bottom:638.085000px;}
.yae_c01016{bottom:638.875812px;}
.yad_c01016{bottom:641.540496px;}
.yac_c01016{bottom:643.182564px;}
.yab_c01016{bottom:643.954548px;}
.yaa_c01016{bottom:645.041316px;}
.ya9_c01016{bottom:646.611528px;}
.ya8_c01016{bottom:647.642172px;}
.ya7_c01016{bottom:648.705360px;}
.ya6_c01016{bottom:649.501068px;}
.ya5_c01016{bottom:650.537724px;}
.ya4_c01016{bottom:652.911060px;}
.ya3_c01016{bottom:653.708028px;}
.ya2_c01016{bottom:654.762000px;}
.ya1_c01016{bottom:674.877702px;}
.ya0_c01016{bottom:676.055959px;}
.y9f_c01016{bottom:677.240359px;}
.y9e_c01016{bottom:678.381793px;}
.y9d_c01016{bottom:679.097127px;}
.y9c_c01016{bottom:680.475094px;}
.y9b_c01016{bottom:681.859110px;}
.y9a_c01016{bottom:683.010467px;}
.y99_c01016{bottom:685.330284px;}
.y98_c01016{bottom:686.243312px;}
.y97_c01016{bottom:686.934674px;}
.y96_c01016{bottom:688.762997px;}
.y95_c01016{bottom:709.843584px;}
.y94_c01016{bottom:712.054426px;}
.y93_c01016{bottom:713.030094px;}
.y92_c01016{bottom:713.754929px;}
.y91_c01016{bottom:715.692510px;}
.y90_c01016{bottom:716.201275px;}
.y8f_c01016{bottom:717.646629px;}
.y8e_c01016{bottom:718.353205px;}
.y8d_c01016{bottom:720.046506px;}
.y8c_c01016{bottom:722.000247px;}
.y8b_c01016{bottom:722.706320px;}
.y8a_c01016{bottom:723.419436px;}
.y89_c01016{bottom:724.136459px;}
.y88_c01016{bottom:745.885585px;}
.y87_c01016{bottom:747.779775px;}
.y86_c01016{bottom:748.461467px;}
.y85_c01016{bottom:749.857169px;}
.y84_c01016{bottom:750.787080px;}
.y83_c01016{bottom:752.159881px;}
.y82_c01016{bottom:752.885830px;}
.y81_c01016{bottom:753.549063px;}
.y80_c01016{bottom:754.955853px;}
.y7f_c01016{bottom:755.868880px;}
.y7e_c01016{bottom:758.408852px;}
.y7d_c01016{bottom:759.786000px;}
.y7c_c01016{bottom:781.860294px;}
.y7b_c01016{bottom:784.679922px;}
.y7a_c01016{bottom:786.184194px;}
.y79_c01016{bottom:788.402634px;}
.y78_c01016{bottom:789.554064px;}
.y77_c01016{bottom:791.745414px;}
.y76_c01016{bottom:792.682686px;}
.y75_c01016{bottom:794.550552px;}
.y74_c01016{bottom:797.030316px;}
.y73_c01016{bottom:800.045790px;}
.y72_c01016{bottom:801.096000px;}
.y71_c01016{bottom:818.041970px;}
.y70_c01016{bottom:819.665385px;}
.y6f_c01016{bottom:820.355298px;}
.y6e_c01016{bottom:821.536422px;}
.y6d_c01016{bottom:822.697449px;}
.y6c_c01016{bottom:823.633629px;}
.y6b_c01016{bottom:825.931270px;}
.y6a_c01016{bottom:826.629594px;}
.y69_c01016{bottom:827.315632px;}
.y68_c01016{bottom:830.065677px;}
.y67_c01016{bottom:830.532538px;}
.y66_c01016{bottom:832.146000px;}
.y65_c01016{bottom:853.941612px;}
.y64_c01016{bottom:855.204624px;}
.y63_c01016{bottom:855.855432px;}
.y62_c01016{bottom:858.161328px;}
.y61_c01016{bottom:858.786996px;}
.y60_c01016{bottom:860.260764px;}
.y5f_c01016{bottom:862.749816px;}
.y5e_c01016{bottom:863.200332px;}
.y5d_c01016{bottom:864.646944px;}
.y5c_c01016{bottom:865.482360px;}
.y5b_c01016{bottom:866.931708px;}
.y5a_c01016{bottom:890.833080px;}
.y59_c01016{bottom:892.511868px;}
.y58_c01016{bottom:893.763168px;}
.y57_c01016{bottom:894.213828px;}
.y56_c01016{bottom:895.862352px;}
.y55_c01016{bottom:896.718576px;}
.y54_c01016{bottom:897.976080px;}
.y53_c01016{bottom:899.643660px;}
.y52_c01016{bottom:901.716192px;}
.y51_c01016{bottom:903.390720px;}
.y50_c01016{bottom:926.410980px;}
.y4f_c01016{bottom:927.130800px;}
.y4e_c01016{bottom:929.007360px;}
.y4d_c01016{bottom:929.926092px;}
.y4c_c01016{bottom:931.072200px;}
.y4b_c01016{bottom:931.763724px;}
.y4a_c01016{bottom:933.607152px;}
.y49_c01016{bottom:934.304256px;}
.y48_c01016{bottom:935.002740px;}
.y47_c01016{bottom:935.682660px;}
.y46_c01016{bottom:937.989696px;}
.y45_c01016{bottom:938.923668px;}
.y44_c01016{bottom:939.576912px;}
.y43_c01016{bottom:960.492504px;}
.y42_c01016{bottom:961.972068px;}
.y41_c01016{bottom:963.147456px;}
.y40_c01016{bottom:964.151652px;}
.y3f_c01016{bottom:966.327312px;}
.y3e_c01016{bottom:967.282188px;}
.y3d_c01016{bottom:969.245688px;}
.y3c_c01016{bottom:971.176944px;}
.y3b_c01016{bottom:971.899812px;}
.y3a_c01016{bottom:972.612804px;}
.y39_c01016{bottom:974.281608px;}
.y38_c01016{bottom:975.225744px;}
.y37_c01016{bottom:995.918988px;}
.y36_c01016{bottom:997.015428px;}
.y35_c01016{bottom:997.685556px;}
.y34_c01016{bottom:999.664764px;}
.y33_c01016{bottom:1000.337388px;}
.y32_c01016{bottom:1001.661816px;}
.y31_c01016{bottom:1002.325572px;}
.y30_c01016{bottom:1002.767172px;}
.y2f_c01016{bottom:1005.852444px;}
.y2e_c01016{bottom:1007.813724px;}
.y2d_c01016{bottom:1008.471852px;}
.y2c_c01016{bottom:1009.793580px;}
.y2b_c01016{bottom:1031.926260px;}
.y2a_c01016{bottom:1034.584932px;}
.y29_c01016{bottom:1035.635016px;}
.y28_c01016{bottom:1036.431984px;}
.y27_c01016{bottom:1038.538776px;}
.y26_c01016{bottom:1039.368756px;}
.y25_c01016{bottom:1040.131632px;}
.y24_c01016{bottom:1041.214260px;}
.y23_c01016{bottom:1043.814324px;}
.y22_c01016{bottom:1044.637500px;}
.y21_c01016{bottom:1094.739867px;}
.y20_c01016{bottom:1095.112800px;}
.y1f_c01016{bottom:1095.431352px;}
.y1e_c01016{bottom:1095.622380px;}
.y1d_c01016{bottom:1096.206504px;}
.y1a_c01016{bottom:1098.358251px;}
.y19_c01016{bottom:1098.580836px;}
.y1c_c01016{bottom:1098.749472px;}
.y18_c01016{bottom:1098.848070px;}
.y17_c01016{bottom:1099.311291px;}
.y16_c01016{bottom:1099.614165px;}
.y15_c01016{bottom:1099.819656px;}
.y14_c01016{bottom:1100.083293px;}
.y1b_c01016{bottom:1100.253117px;}
.y13_c01016{bottom:1100.408475px;}
.y12_c01016{bottom:1102.024155px;}
.y11_c01016{bottom:1103.491500px;}
.y10_c01016{bottom:1112.598600px;}
.yf_c01016{bottom:1113.519120px;}
.ye_c01016{bottom:1113.924084px;}
.yd_c01016{bottom:1114.312848px;}
.yc_c01016{bottom:1115.116782px;}
.yb_c01016{bottom:1115.641500px;}
.h5_c01016{height:30.007259px;}
.h3_c01016{height:36.001800px;}
.h4_c01016{height:42.003024px;}
.h14_c01016{height:65.981682px;}
.hd_c01016{height:66.015970px;}
.h8_c01016{height:66.019005px;}
.h13_c01016{height:71.980017px;}
.hc_c01016{height:72.015874px;}
.hf_c01016{height:72.017422px;}
.h7_c01016{height:72.020733px;}
.h17_c01016{height:72.024332px;}
.h18_c01016{height:72.029154px;}
.h10_c01016{height:72.034588px;}
.h12_c01016{height:77.978352px;}
.h16_c01016{height:77.994150px;}
.h6_c01016{height:78.022461px;}
.h2_c01016{height:84.004200px;}
.ha_c01016{height:84.018520px;}
.he_c01016{height:84.020326px;}
.hb_c01016{height:84.032922px;}
.h19_c01016{height:84.040352px;}
.h15_c01016{height:89.971646px;}
.h11_c01016{height:95.973356px;}
.h9_c01016{height:96.027644px;}
.h0_c01016{height:1246.320000px;}
.h1_c01016{height:1246.500000px;}
.w0_c01016{width:896.100000px;}
.w1_c01016{width:896.250000px;}
.x0_c01016{left:0.000000px;}
.x9_c01016{left:142.829025px;}
.x1_c01016{left:146.472000px;}
.xbe_c01016{left:148.029780px;}
.xb9_c01016{left:149.073716px;}
.xb2_c01016{left:150.819329px;}
.x5f_c01016{left:152.046000px;}
.xa0_c01016{left:153.082698px;}
.x66_c01016{left:154.966500px;}
.x49_c01016{left:157.278636px;}
.x28_c01016{left:159.629688px;}
.x33_c01016{left:160.940292px;}
.xe0_c01016{left:177.549951px;}
.xb3_c01016{left:182.653734px;}
.x80_c01016{left:185.970000px;}
.x71_c01016{left:187.601525px;}
.x2_c01016{left:189.414000px;}
.x3e_c01016{left:190.673160px;}
.x34_c01016{left:203.843844px;}
.xa1_c01016{left:205.773078px;}
.x9a_c01016{left:216.766710px;}
.x81_c01016{left:219.177000px;}
.x67_c01016{left:220.545000px;}
.x3_c01016{left:222.571500px;}
.xcc_c01016{left:223.793937px;}
.x29_c01016{left:225.708024px;}
.xa_c01016{left:228.693105px;}
.x52_c01016{left:233.303124px;}
.x3f_c01016{left:235.154364px;}
.x78_c01016{left:241.872105px;}
.x4a_c01016{left:245.373684px;}
.x8b_c01016{left:250.779000px;}
.x72_c01016{left:252.109170px;}
.x58_c01016{left:255.666000px;}
.x2a_c01016{left:258.633192px;}
.xd1_c01016{left:265.497000px;}
.xc8_c01016{left:266.988822px;}
.x1f_c01016{left:269.136000px;}
.x79_c01016{left:274.794105px;}
.x4_c01016{left:276.801000px;}
.x35_c01016{left:279.693480px;}
.xa2_c01016{left:281.333445px;}
.x9b_c01016{left:282.581031px;}
.xb4_c01016{left:291.455462px;}
.xab_c01016{left:293.173500px;}
.x60_c01016{left:297.249000px;}
.xd2_c01016{left:300.336000px;}
.xb_c01016{left:303.318000px;}
.xa3_c01016{left:304.465899px;}
.xcd_c01016{left:310.531612px;}
.x36_c01016{left:312.090528px;}
.x95_c01016{left:315.366045px;}
.x8c_c01016{left:316.984500px;}
.x7a_c01016{left:318.271605px;}
.xd6_c01016{left:319.603530px;}
.x11_c01016{left:325.032000px;}
.x96_c01016{left:338.517027px;}
.x68_c01016{left:341.496000px;}
.x37_c01016{left:344.961612px;}
.xc_c01016{left:347.044500px;}
.x8d_c01016{left:349.599000px;}
.x53_c01016{left:353.464560px;}
.x4b_c01016{left:354.492288px;}
.xbf_c01016{left:355.669112px;}
.x2b_c01016{left:356.675088px;}
.x82_c01016{left:361.260000px;}
.x5_c01016{left:363.558000px;}
.xd3_c01016{left:365.149500px;}
.x1a_c01016{left:369.223104px;}
.xe1_c01016{left:374.625400px;}
.x40_c01016{left:377.433624px;}
.xac_c01016{left:379.000500px;}
.xa4_c01016{left:380.033766px;}
.x8e_c01016{left:383.700000px;}
.x69_c01016{left:384.973500px;}
.x6_c01016{left:386.409000px;}
.xc0_c01016{left:388.214243px;}
.x12_c01016{left:391.729500px;}
.x83_c01016{left:394.414500px;}
.xd7_c01016{left:396.053019px;}
.xb5_c01016{left:401.382375px;}
.xa5_c01016{left:404.222154px;}
.x41_c01016{left:410.727036px;}
.x20_c01016{left:411.771000px;}
.xd_c01016{left:414.039000px;}
.x97_c01016{left:415.497945px;}
.x7_c01016{left:418.896000px;}
.xc1_c01016{left:421.691554px;}
.x7b_c01016{left:428.739105px;}
.x38_c01016{left:432.747324px;}
.x84_c01016{left:438.714000px;}
.xe2_c01016{left:441.146077px;}
.x4c_c01016{left:442.297836px;}
.x42_c01016{left:443.900412px;}
.xe_c01016{left:446.436000px;}
.xa6_c01016{left:448.184793px;}
.x73_c01016{left:450.063044px;}
.x8_c01016{left:452.439000px;}
.xc9_c01016{left:454.154469px;}
.x21_c01016{left:456.880500px;}
.x8f_c01016{left:460.350000px;}
.xce_c01016{left:464.001988px;}
.x13_c01016{left:465.169500px;}
.xc2_c01016{left:466.594742px;}
.x9c_c01016{left:468.961446px;}
.xf_c01016{left:480.183000px;}
.x85_c01016{left:481.657500px;}
.x6a_c01016{left:483.546000px;}
.x61_c01016{left:485.995500px;}
.xca_c01016{left:487.467622px;}
.x22_c01016{left:488.667000px;}
.x14_c01016{left:491.934000px;}
.xcf_c01016{left:497.066391px;}
.x15_c01016{left:501.274500px;}
.x1b_c01016{left:505.156101px;}
.x4d_c01016{left:508.514292px;}
.x2c_c01016{left:510.930384px;}
.x1c_c01016{left:513.429903px;}
.x16_c01016{left:515.041500px;}
.x6b_c01016{left:518.115000px;}
.x39_c01016{left:522.001608px;}
.x23_c01016{left:523.249500px;}
.x90_c01016{left:525.187500px;}
.x1d_c01016{left:527.295606px;}
.xd8_c01016{left:529.345774px;}
.x43_c01016{left:531.653712px;}
.x2d_c01016{left:533.020008px;}
.x17_c01016{left:536.097000px;}
.x74_c01016{left:538.900185px;}
.xd4_c01016{left:540.546000px;}
.x1e_c01016{left:543.496743px;}
.x86_c01016{left:547.083000px;}
.x18_c01016{left:548.244000px;}
.x7c_c01016{left:549.471105px;}
.x4e_c01016{left:553.570692px;}
.xba_c01016{left:554.597681px;}
.x10_c01016{left:556.893000px;}
.x19_c01016{left:558.361500px;}
.x59_c01016{left:561.954000px;}
.x44_c01016{left:564.594588px;}
.x2e_c01016{left:566.242212px;}
.x9d_c01016{left:568.035378px;}
.xd9_c01016{left:573.328434px;}
.xdd_c01016{left:574.510500px;}
.xad_c01016{left:577.599000px;}
.xa7_c01016{left:579.894210px;}
.x6c_c01016{left:583.486500px;}
.x54_c01016{left:585.693888px;}
.xb7_c01016{left:586.832485px;}
.xb6_c01016{left:588.371157px;}
.x87_c01016{left:592.365000px;}
.xc3_c01016{left:599.471409px;}
.x62_c01016{left:605.380500px;}
.x5a_c01016{left:606.534000px;}
.xd5_c01016{left:608.391000px;}
.x24_c01016{left:611.032500px;}
.x7d_c01016{left:615.088605px;}
.xda_c01016{left:618.021144px;}
.x45_c01016{left:619.165512px;}
.xae_c01016{left:622.102500px;}
.x88_c01016{left:624.531000px;}
.x6d_c01016{left:627.768000px;}
.xde_c01016{left:629.133000px;}
.x2f_c01016{left:632.433048px;}
.x91_c01016{left:637.065000px;}
.x4f_c01016{left:640.332096px;}
.xc4_c01016{left:641.787900px;}
.xbb_c01016{left:642.903794px;}
.x25_c01016{left:644.239500px;}
.xa8_c01016{left:645.423435px;}
.x9e_c01016{left:646.653516px;}
.x7e_c01016{left:649.152105px;}
.xdb_c01016{left:651.049327px;}
.x75_c01016{left:659.893634px;}
.x5b_c01016{left:661.821000px;}
.x46_c01016{left:662.949180px;}
.x3a_c01016{left:664.322448px;}
.x30_c01016{left:666.087288px;}
.x92_c01016{left:669.415500px;}
.xbc_c01016{left:676.014436px;}
.x63_c01016{left:684.610500px;}
.x26_c01016{left:687.993000px;}
.x89_c01016{left:692.950500px;}
.x6e_c01016{left:694.230000px;}
.xa9_c01016{left:701.579985px;}
.x76_c01016{left:704.210189px;}
.xd0_c01016{left:707.902344px;}
.x3b_c01016{left:709.978644px;}
.x5c_c01016{left:718.065000px;}
.xaf_c01016{left:721.560000px;}
.x6f_c01016{left:726.691500px;}
.x50_c01016{left:729.945360px;}
.xc5_c01016{left:731.239500px;}
.x93_c01016{left:734.680500px;}
.x64_c01016{left:738.334500px;}
.x55_c01016{left:739.985892px;}
.xdf_c01016{left:741.430500px;}
.xb8_c01016{left:744.726434px;}
.x5d_c01016{left:750.918000px;}
.x47_c01016{left:752.333124px;}
.x9f_c01016{left:757.175430px;}
.x7f_c01016{left:759.906105px;}
.x3c_c01016{left:763.393200px;}
.x31_c01016{left:765.063792px;}
.x56_c01016{left:774.231996px;}
.xc6_c01016{left:776.512182px;}
.x98_c01016{left:780.425355px;}
.xdc_c01016{left:784.871214px;}
.x48_c01016{left:786.640608px;}
.xaa_c01016{left:790.711131px;}
.x27_c01016{left:798.771000px;}
.xb0_c01016{left:800.460000px;}
.x77_c01016{left:804.700578px;}
.x99_c01016{left:812.833710px;}
.x70_c01016{left:816.891000px;}
.x51_c01016{left:818.280444px;}
.xcb_c01016{left:820.972284px;}
.x94_c01016{left:825.076500px;}
.x5e_c01016{left:828.223500px;}
.x3d_c01016{left:830.669940px;}
.xbd_c01016{left:832.367522px;}
.xb1_c01016{left:833.526000px;}
.x8a_c01016{left:836.929500px;}
.x65_c01016{left:839.035500px;}
.x57_c01016{left:840.677952px;}
.x32_c01016{left:853.366752px;}
.xc7_c01016{left:864.772333px;}
@media print{
.v0_c01016{vertical-align:0.000000pt;}
.ls0_c01016{letter-spacing:0.000000pt;}
.ws0_c01016{word-spacing:0.000000pt;}
._0_c01016{margin-left:-11.686413pt;}
.fs3_c01016{font-size:26.673119pt;}
.fs1_c01016{font-size:32.001600pt;}
.fs2_c01016{font-size:37.336021pt;}
.fs12_c01016{font-size:58.650384pt;}
.fsb_c01016{font-size:58.680862pt;}
.fs6_c01016{font-size:58.683560pt;}
.fs11_c01016{font-size:63.982238pt;}
.fsa_c01016{font-size:64.014110pt;}
.fsd_c01016{font-size:64.015486pt;}
.fs5_c01016{font-size:64.018429pt;}
.fs15_c01016{font-size:64.021628pt;}
.fs16_c01016{font-size:64.025915pt;}
.fse_c01016{font-size:64.030745pt;}
.fs10_c01016{font-size:69.314091pt;}
.fs14_c01016{font-size:69.328133pt;}
.fs4_c01016{font-size:69.353298pt;}
.fs0_c01016{font-size:74.670400pt;}
.fs8_c01016{font-size:74.683129pt;}
.fsc_c01016{font-size:74.684734pt;}
.fs9_c01016{font-size:74.695930pt;}
.fs17_c01016{font-size:74.702535pt;}
.fs13_c01016{font-size:79.974796pt;}
.fsf_c01016{font-size:85.309650pt;}
.fs7_c01016{font-size:85.357906pt;}
.y0_c01016{bottom:0.000000pt;}
.y154_c01016{bottom:63.246680pt;}
.y153_c01016{bottom:65.018867pt;}
.y152_c01016{bottom:67.822521pt;}
.y151_c01016{bottom:68.541240pt;}
.y150_c01016{bottom:69.951820pt;}
.y14f_c01016{bottom:71.006911pt;}
.y14e_c01016{bottom:73.444401pt;}
.y14d_c01016{bottom:74.497343pt;}
.y14c_c01016{bottom:76.259185pt;}
.y14b_c01016{bottom:77.285559pt;}
.y14a_c01016{bottom:84.458600pt;}
.y149_c01016{bottom:86.649515pt;}
.y148_c01016{bottom:87.553020pt;}
.y147_c01016{bottom:89.058173pt;}
.y146_c01016{bottom:90.302596pt;}
.y145_c01016{bottom:91.218667pt;}
.ya_c01016{bottom:97.572560pt;}
.y9_c01016{bottom:97.573053pt;}
.y8_c01016{bottom:101.441627pt;}
.y7_c01016{bottom:101.739787pt;}
.y6_c01016{bottom:102.028560pt;}
.y5_c01016{bottom:102.231680pt;}
.y4_c01016{bottom:103.002853pt;}
.y3_c01016{bottom:103.484893pt;}
.y2_c01016{bottom:103.779627pt;}
.y1_c01016{bottom:104.161333pt;}
.y144_c01016{bottom:113.863091pt;}
.y143_c01016{bottom:116.228651pt;}
.y142_c01016{bottom:119.756013pt;}
.y141_c01016{bottom:123.372967pt;}
.y140_c01016{bottom:125.136224pt;}
.y13f_c01016{bottom:127.521691pt;}
.y13e_c01016{bottom:129.869665pt;}
.y139_c01016{bottom:133.886360pt;}
.y138_c01016{bottom:135.585147pt;}
.y137_c01016{bottom:137.253893pt;}
.y136_c01016{bottom:139.436784pt;}
.y13d_c01016{bottom:147.670777pt;}
.y13c_c01016{bottom:150.784139pt;}
.y13b_c01016{bottom:152.949577pt;}
.y13a_c01016{bottom:153.853333pt;}
.y135_c01016{bottom:157.808664pt;}
.y134_c01016{bottom:158.570984pt;}
.y133_c01016{bottom:160.138957pt;}
.y132_c01016{bottom:160.869765pt;}
.y131_c01016{bottom:163.155928pt;}
.y130_c01016{bottom:164.192565pt;}
.y12f_c01016{bottom:165.690477pt;}
.y12e_c01016{bottom:166.495645pt;}
.y12d_c01016{bottom:167.212517pt;}
.y12c_c01016{bottom:169.208000pt;}
.y12b_c01016{bottom:179.773008pt;}
.y12a_c01016{bottom:181.890672pt;}
.y129_c01016{bottom:183.657743pt;}
.y128_c01016{bottom:184.486037pt;}
.y127_c01016{bottom:190.402379pt;}
.y126_c01016{bottom:192.552723pt;}
.y125_c01016{bottom:193.817783pt;}
.y124_c01016{bottom:197.984425pt;}
.y123_c01016{bottom:199.689633pt;}
.y122_c01016{bottom:201.772324pt;}
.y121_c01016{bottom:203.008259pt;}
.y120_c01016{bottom:205.934667pt;}
.y11f_c01016{bottom:213.291563pt;}
.y11e_c01016{bottom:215.933017pt;}
.y11d_c01016{bottom:218.087059pt;}
.y11c_c01016{bottom:221.028904pt;}
.y11b_c01016{bottom:222.120059pt;}
.y11a_c01016{bottom:224.271140pt;}
.y119_c01016{bottom:225.367869pt;}
.y118_c01016{bottom:227.908783pt;}
.y117_c01016{bottom:230.076341pt;}
.y116_c01016{bottom:231.529701pt;}
.y115_c01016{bottom:234.058084pt;}
.y114_c01016{bottom:235.449333pt;}
.y113_c01016{bottom:244.621043pt;}
.y112_c01016{bottom:245.757091pt;}
.y111_c01016{bottom:247.605259pt;}
.y110_c01016{bottom:248.405184pt;}
.y10f_c01016{bottom:249.136000pt;}
.y10e_c01016{bottom:254.656927pt;}
.y10d_c01016{bottom:255.974331pt;}
.y10c_c01016{bottom:260.112277pt;}
.y10b_c01016{bottom:261.510472pt;}
.y10a_c01016{bottom:262.553020pt;}
.y109_c01016{bottom:263.566717pt;}
.y108_c01016{bottom:266.653061pt;}
.y107_c01016{bottom:270.033753pt;}
.y106_c01016{bottom:278.766731pt;}
.y105_c01016{bottom:279.698164pt;}
.y104_c01016{bottom:282.134913pt;}
.y103_c01016{bottom:283.080844pt;}
.y102_c01016{bottom:283.994943pt;}
.y101_c01016{bottom:285.525939pt;}
.y100_c01016{bottom:286.431135pt;}
.yff_c01016{bottom:290.670640pt;}
.yfe_c01016{bottom:292.217096pt;}
.yfd_c01016{bottom:293.388443pt;}
.yfc_c01016{bottom:294.332311pt;}
.yfb_c01016{bottom:296.718323pt;}
.yfa_c01016{bottom:297.620088pt;}
.yf9_c01016{bottom:313.085309pt;}
.yf8_c01016{bottom:313.864917pt;}
.yf7_c01016{bottom:318.423955pt;}
.yf6_c01016{bottom:319.895011pt;}
.yf5_c01016{bottom:320.979531pt;}
.yf4_c01016{bottom:324.711080pt;}
.yf3_c01016{bottom:325.455525pt;}
.yf2_c01016{bottom:328.433205pt;}
.yf1_c01016{bottom:329.537333pt;}
.yf0_c01016{bottom:349.548880pt;}
.yef_c01016{bottom:351.025156pt;}
.yee_c01016{bottom:353.703168pt;}
.yed_c01016{bottom:354.440304pt;}
.yec_c01016{bottom:355.406847pt;}
.yeb_c01016{bottom:356.146369pt;}
.yea_c01016{bottom:358.563904pt;}
.ye9_c01016{bottom:359.271623pt;}
.ye8_c01016{bottom:376.828845pt;}
.ye7_c01016{bottom:377.739997pt;}
.ye6_c01016{bottom:379.914131pt;}
.ye5_c01016{bottom:380.815156pt;}
.ye4_c01016{bottom:382.654737pt;}
.ye3_c01016{bottom:383.881056pt;}
.ye2_c01016{bottom:386.891611pt;}
.ye1_c01016{bottom:389.353548pt;}
.ye0_c01016{bottom:391.718559pt;}
.ydf_c01016{bottom:392.650667pt;}
.yde_c01016{bottom:422.957805pt;}
.ydd_c01016{bottom:442.448629pt;}
.ydc_c01016{bottom:444.509125pt;}
.ydb_c01016{bottom:445.807395pt;}
.yda_c01016{bottom:447.322301pt;}
.yd9_c01016{bottom:449.623544pt;}
.yd8_c01016{bottom:450.366179pt;}
.yd7_c01016{bottom:451.381968pt;}
.yd6_c01016{bottom:451.940360pt;}
.yd5_c01016{bottom:453.686261pt;}
.yd4_c01016{bottom:454.221336pt;}
.yd3_c01016{bottom:455.967091pt;}
.yd2_c01016{bottom:457.184237pt;}
.yd1_c01016{bottom:474.990531pt;}
.yd0_c01016{bottom:477.741467pt;}
.ycf_c01016{bottom:479.697757pt;}
.yce_c01016{bottom:480.238357pt;}
.ycd_c01016{bottom:482.163459pt;}
.ycc_c01016{bottom:483.532739pt;}
.ycb_c01016{bottom:485.974363pt;}
.yca_c01016{bottom:486.802045pt;}
.yc9_c01016{bottom:488.439917pt;}
.yc8_c01016{bottom:490.071763pt;}
.yc7_c01016{bottom:506.131027pt;}
.yc6_c01016{bottom:506.851499pt;}
.yc5_c01016{bottom:509.310408pt;}
.yc4_c01016{bottom:510.606536pt;}
.yc3_c01016{bottom:512.507093pt;}
.yc2_c01016{bottom:513.971531pt;}
.yc1_c01016{bottom:514.961661pt;}
.yc0_c01016{bottom:516.672499pt;}
.ybf_c01016{bottom:517.186592pt;}
.ybe_c01016{bottom:519.342157pt;}
.ybd_c01016{bottom:520.799189pt;}
.ybc_c01016{bottom:537.413528pt;}
.ybb_c01016{bottom:539.181272pt;}
.yba_c01016{bottom:540.457565pt;}
.yb9_c01016{bottom:541.090197pt;}
.yb8_c01016{bottom:543.278024pt;}
.yb7_c01016{bottom:543.917901pt;}
.yb6_c01016{bottom:544.545957pt;}
.yb5_c01016{bottom:546.044891pt;}
.yb4_c01016{bottom:546.711755pt;}
.yb3_c01016{bottom:547.349549pt;}
.yb2_c01016{bottom:548.644235pt;}
.yb1_c01016{bottom:549.078720pt;}
.yb0_c01016{bottom:550.565333pt;}
.yaf_c01016{bottom:567.186667pt;}
.yae_c01016{bottom:567.889611pt;}
.yad_c01016{bottom:570.258219pt;}
.yac_c01016{bottom:571.717835pt;}
.yab_c01016{bottom:572.404043pt;}
.yaa_c01016{bottom:573.370059pt;}
.ya9_c01016{bottom:574.765803pt;}
.ya8_c01016{bottom:575.681931pt;}
.ya7_c01016{bottom:576.626987pt;}
.ya6_c01016{bottom:577.334283pt;}
.ya5_c01016{bottom:578.255755pt;}
.ya4_c01016{bottom:580.365387pt;}
.ya3_c01016{bottom:581.073803pt;}
.ya2_c01016{bottom:582.010667pt;}
.ya1_c01016{bottom:599.891291pt;}
.ya0_c01016{bottom:600.938631pt;}
.y9f_c01016{bottom:601.991431pt;}
.y9e_c01016{bottom:603.006039pt;}
.y9d_c01016{bottom:603.641891pt;}
.y9c_c01016{bottom:604.866751pt;}
.y9b_c01016{bottom:606.096987pt;}
.y9a_c01016{bottom:607.120415pt;}
.y99_c01016{bottom:609.182475pt;}
.y98_c01016{bottom:609.994055pt;}
.y97_c01016{bottom:610.608599pt;}
.y96_c01016{bottom:612.233775pt;}
.y95_c01016{bottom:630.972075pt;}
.y94_c01016{bottom:632.937268pt;}
.y93_c01016{bottom:633.804528pt;}
.y92_c01016{bottom:634.448825pt;}
.y91_c01016{bottom:636.171120pt;}
.y90_c01016{bottom:636.623356pt;}
.y8f_c01016{bottom:637.908115pt;}
.y8e_c01016{bottom:638.536183pt;}
.y8d_c01016{bottom:640.041339pt;}
.y8c_c01016{bottom:641.777997pt;}
.y8b_c01016{bottom:642.405617pt;}
.y8a_c01016{bottom:643.039499pt;}
.y89_c01016{bottom:643.676852pt;}
.y88_c01016{bottom:663.009409pt;}
.y87_c01016{bottom:664.693133pt;}
.y86_c01016{bottom:665.299081pt;}
.y85_c01016{bottom:666.539705pt;}
.y84_c01016{bottom:667.366293pt;}
.y83_c01016{bottom:668.586561pt;}
.y82_c01016{bottom:669.231849pt;}
.y81_c01016{bottom:669.821389pt;}
.y80_c01016{bottom:671.071869pt;}
.y7f_c01016{bottom:671.883449pt;}
.y7e_c01016{bottom:674.141201pt;}
.y7d_c01016{bottom:675.365333pt;}
.y7c_c01016{bottom:694.986928pt;}
.y7b_c01016{bottom:697.493264pt;}
.y7a_c01016{bottom:698.830395pt;}
.y79_c01016{bottom:700.802341pt;}
.y78_c01016{bottom:701.825835pt;}
.y77_c01016{bottom:703.773701pt;}
.y76_c01016{bottom:704.606832pt;}
.y75_c01016{bottom:706.267157pt;}
.y74_c01016{bottom:708.471392pt;}
.y73_c01016{bottom:711.151813pt;}
.y72_c01016{bottom:712.085333pt;}
.y71_c01016{bottom:727.148417pt;}
.y70_c01016{bottom:728.591453pt;}
.y6f_c01016{bottom:729.204709pt;}
.y6e_c01016{bottom:730.254597pt;}
.y6d_c01016{bottom:731.286621pt;}
.y6c_c01016{bottom:732.118781pt;}
.y6b_c01016{bottom:734.161129pt;}
.y6a_c01016{bottom:734.781861pt;}
.y69_c01016{bottom:735.391673pt;}
.y68_c01016{bottom:737.836157pt;}
.y67_c01016{bottom:738.251145pt;}
.y66_c01016{bottom:739.685333pt;}
.y65_c01016{bottom:759.059211pt;}
.y64_c01016{bottom:760.181888pt;}
.y63_c01016{bottom:760.760384pt;}
.y62_c01016{bottom:762.810069pt;}
.y61_c01016{bottom:763.366219pt;}
.y60_c01016{bottom:764.676235pt;}
.y5f_c01016{bottom:766.888725pt;}
.y5e_c01016{bottom:767.289184pt;}
.y5d_c01016{bottom:768.575061pt;}
.y5c_c01016{bottom:769.317653pt;}
.y5b_c01016{bottom:770.605963pt;}
.y5a_c01016{bottom:791.851627pt;}
.y59_c01016{bottom:793.343883pt;}
.y58_c01016{bottom:794.456149pt;}
.y57_c01016{bottom:794.856736pt;}
.y56_c01016{bottom:796.322091pt;}
.y55_c01016{bottom:797.083179pt;}
.y54_c01016{bottom:798.200960pt;}
.y53_c01016{bottom:799.683253pt;}
.y52_c01016{bottom:801.525504pt;}
.y51_c01016{bottom:803.013973pt;}
.y50_c01016{bottom:823.476427pt;}
.y4f_c01016{bottom:824.116267pt;}
.y4e_c01016{bottom:825.784320pt;}
.y4d_c01016{bottom:826.600971pt;}
.y4c_c01016{bottom:827.619733pt;}
.y4b_c01016{bottom:828.234421pt;}
.y4a_c01016{bottom:829.873024pt;}
.y49_c01016{bottom:830.492672pt;}
.y48_c01016{bottom:831.113547pt;}
.y47_c01016{bottom:831.717920pt;}
.y46_c01016{bottom:833.768619pt;}
.y45_c01016{bottom:834.598816pt;}
.y44_c01016{bottom:835.179477pt;}
.y43_c01016{bottom:853.771115pt;}
.y42_c01016{bottom:855.086283pt;}
.y41_c01016{bottom:856.131072pt;}
.y40_c01016{bottom:857.023691pt;}
.y3f_c01016{bottom:858.957611pt;}
.y3e_c01016{bottom:859.806389pt;}
.y3d_c01016{bottom:861.551723pt;}
.y3c_c01016{bottom:863.268395pt;}
.y3b_c01016{bottom:863.910944pt;}
.y3a_c01016{bottom:864.544715pt;}
.y39_c01016{bottom:866.028096pt;}
.y38_c01016{bottom:866.867328pt;}
.y37_c01016{bottom:885.261323pt;}
.y36_c01016{bottom:886.235936pt;}
.y35_c01016{bottom:886.831605pt;}
.y34_c01016{bottom:888.590901pt;}
.y33_c01016{bottom:889.188789pt;}
.y32_c01016{bottom:890.366059pt;}
.y31_c01016{bottom:890.956064pt;}
.y30_c01016{bottom:891.348597pt;}
.y2f_c01016{bottom:894.091061pt;}
.y2e_c01016{bottom:895.834421pt;}
.y2d_c01016{bottom:896.419424pt;}
.y2c_c01016{bottom:897.594293pt;}
.y2b_c01016{bottom:917.267787pt;}
.y2a_c01016{bottom:919.631051pt;}
.y29_c01016{bottom:920.564459pt;}
.y28_c01016{bottom:921.272875pt;}
.y27_c01016{bottom:923.145579pt;}
.y26_c01016{bottom:923.883339pt;}
.y25_c01016{bottom:924.561451pt;}
.y24_c01016{bottom:925.523787pt;}
.y23_c01016{bottom:927.834955pt;}
.y22_c01016{bottom:928.566667pt;}
.y21_c01016{bottom:973.102104pt;}
.y20_c01016{bottom:973.433600pt;}
.y1f_c01016{bottom:973.716757pt;}
.y1e_c01016{bottom:973.886560pt;}
.y1d_c01016{bottom:974.405781pt;}
.y1a_c01016{bottom:976.318445pt;}
.y19_c01016{bottom:976.516299pt;}
.y1c_c01016{bottom:976.666197pt;}
.y18_c01016{bottom:976.753840pt;}
.y17_c01016{bottom:977.165592pt;}
.y16_c01016{bottom:977.434813pt;}
.y15_c01016{bottom:977.617472pt;}
.y14_c01016{bottom:977.851816pt;}
.y1b_c01016{bottom:978.002771pt;}
.y13_c01016{bottom:978.140867pt;}
.y12_c01016{bottom:979.577027pt;}
.y11_c01016{bottom:980.881333pt;}
.y10_c01016{bottom:988.976533pt;}
.yf_c01016{bottom:989.794773pt;}
.ye_c01016{bottom:990.154741pt;}
.yd_c01016{bottom:990.500309pt;}
.yc_c01016{bottom:991.214917pt;}
.yb_c01016{bottom:991.681333pt;}
.h5_c01016{height:26.673119pt;}
.h3_c01016{height:32.001600pt;}
.h4_c01016{height:37.336021pt;}
.h14_c01016{height:58.650384pt;}
.hd_c01016{height:58.680862pt;}
.h8_c01016{height:58.683560pt;}
.h13_c01016{height:63.982238pt;}
.hc_c01016{height:64.014110pt;}
.hf_c01016{height:64.015486pt;}
.h7_c01016{height:64.018429pt;}
.h17_c01016{height:64.021628pt;}
.h18_c01016{height:64.025915pt;}
.h10_c01016{height:64.030745pt;}
.h12_c01016{height:69.314091pt;}
.h16_c01016{height:69.328133pt;}
.h6_c01016{height:69.353298pt;}
.h2_c01016{height:74.670400pt;}
.ha_c01016{height:74.683129pt;}
.he_c01016{height:74.684734pt;}
.hb_c01016{height:74.695930pt;}
.h19_c01016{height:74.702535pt;}
.h15_c01016{height:79.974796pt;}
.h11_c01016{height:85.309650pt;}
.h9_c01016{height:85.357906pt;}
.h0_c01016{height:1107.840000pt;}
.h1_c01016{height:1108.000000pt;}
.w0_c01016{width:796.533333pt;}
.w1_c01016{width:796.666667pt;}
.x0_c01016{left:0.000000pt;}
.x9_c01016{left:126.959133pt;}
.x1_c01016{left:130.197333pt;}
.xbe_c01016{left:131.582027pt;}
.xb9_c01016{left:132.509969pt;}
.xb2_c01016{left:134.061625pt;}
.x5f_c01016{left:135.152000pt;}
.xa0_c01016{left:136.073509pt;}
.x66_c01016{left:137.748000pt;}
.x49_c01016{left:139.803232pt;}
.x28_c01016{left:141.893056pt;}
.x33_c01016{left:143.058037pt;}
.xe0_c01016{left:157.822179pt;}
.xb3_c01016{left:162.358875pt;}
.x80_c01016{left:165.306667pt;}
.x71_c01016{left:166.756911pt;}
.x2_c01016{left:168.368000pt;}
.x3e_c01016{left:169.487253pt;}
.x34_c01016{left:181.194528pt;}
.xa1_c01016{left:182.909403pt;}
.x9a_c01016{left:192.681520pt;}
.x81_c01016{left:194.824000pt;}
.x67_c01016{left:196.040000pt;}
.x3_c01016{left:197.841333pt;}
.xcc_c01016{left:198.927944pt;}
.x29_c01016{left:200.629355pt;}
.xa_c01016{left:203.282760pt;}
.x52_c01016{left:207.380555pt;}
.x3f_c01016{left:209.026101pt;}
.x78_c01016{left:214.997427pt;}
.x4a_c01016{left:218.109941pt;}
.x8b_c01016{left:222.914667pt;}
.x72_c01016{left:224.097040pt;}
.x58_c01016{left:227.258667pt;}
.x2a_c01016{left:229.896171pt;}
.xd1_c01016{left:235.997333pt;}
.xc8_c01016{left:237.323397pt;}
.x1f_c01016{left:239.232000pt;}
.x79_c01016{left:244.261427pt;}
.x4_c01016{left:246.045333pt;}
.x35_c01016{left:248.616427pt;}
.xa2_c01016{left:250.074173pt;}
.x9b_c01016{left:251.183139pt;}
.xb4_c01016{left:259.071521pt;}
.xab_c01016{left:260.598667pt;}
.x60_c01016{left:264.221333pt;}
.xd2_c01016{left:266.965333pt;}
.xb_c01016{left:269.616000pt;}
.xa3_c01016{left:270.636355pt;}
.xcd_c01016{left:276.028100pt;}
.x36_c01016{left:277.413803pt;}
.x95_c01016{left:280.325373pt;}
.x8c_c01016{left:281.764000pt;}
.x7a_c01016{left:282.908093pt;}
.xd6_c01016{left:284.092027pt;}
.x11_c01016{left:288.917333pt;}
.x96_c01016{left:300.904024pt;}
.x68_c01016{left:303.552000pt;}
.x37_c01016{left:306.632544pt;}
.xc_c01016{left:308.484000pt;}
.x8d_c01016{left:310.754667pt;}
.x53_c01016{left:314.190720pt;}
.x4b_c01016{left:315.104256pt;}
.xbf_c01016{left:316.150321pt;}
.x2b_c01016{left:317.044523pt;}
.x82_c01016{left:321.120000pt;}
.x5_c01016{left:323.162667pt;}
.xd3_c01016{left:324.577333pt;}
.x1a_c01016{left:328.198315pt;}
.xe1_c01016{left:333.000356pt;}
.x40_c01016{left:335.496555pt;}
.xac_c01016{left:336.889333pt;}
.xa4_c01016{left:337.807792pt;}
.x8e_c01016{left:341.066667pt;}
.x69_c01016{left:342.198667pt;}
.x6_c01016{left:343.474667pt;}
.xc0_c01016{left:345.079327pt;}
.x12_c01016{left:348.204000pt;}
.x83_c01016{left:350.590667pt;}
.xd7_c01016{left:352.047128pt;}
.xb5_c01016{left:356.784333pt;}
.xa5_c01016{left:359.308581pt;}
.x41_c01016{left:365.090699pt;}
.x20_c01016{left:366.018667pt;}
.xd_c01016{left:368.034667pt;}
.x97_c01016{left:369.331507pt;}
.x7_c01016{left:372.352000pt;}
.xc1_c01016{left:374.836937pt;}
.x7b_c01016{left:381.101427pt;}
.x38_c01016{left:384.664288pt;}
.x84_c01016{left:389.968000pt;}
.xe2_c01016{left:392.129847pt;}
.x4c_c01016{left:393.153632pt;}
.x42_c01016{left:394.578144pt;}
.xe_c01016{left:396.832000pt;}
.xa6_c01016{left:398.386483pt;}
.x73_c01016{left:400.056039pt;}
.x8_c01016{left:402.168000pt;}
.xc9_c01016{left:403.692861pt;}
.x21_c01016{left:406.116000pt;}
.x8f_c01016{left:409.200000pt;}
.xce_c01016{left:412.446212pt;}
.x13_c01016{left:413.484000pt;}
.xc2_c01016{left:414.750881pt;}
.x9c_c01016{left:416.854619pt;}
.xf_c01016{left:426.829333pt;}
.x85_c01016{left:428.140000pt;}
.x6a_c01016{left:429.818667pt;}
.x61_c01016{left:431.996000pt;}
.xca_c01016{left:433.304553pt;}
.x22_c01016{left:434.370667pt;}
.x14_c01016{left:437.274667pt;}
.xcf_c01016{left:441.836792pt;}
.x15_c01016{left:445.577333pt;}
.x1b_c01016{left:449.027645pt;}
.x4d_c01016{left:452.012704pt;}
.x2c_c01016{left:454.160341pt;}
.x1c_c01016{left:456.382136pt;}
.x16_c01016{left:457.814667pt;}
.x6b_c01016{left:460.546667pt;}
.x39_c01016{left:464.001429pt;}
.x23_c01016{left:465.110667pt;}
.x90_c01016{left:466.833333pt;}
.x1d_c01016{left:468.707205pt;}
.xd8_c01016{left:470.529577pt;}
.x43_c01016{left:472.581077pt;}
.x2d_c01016{left:473.795563pt;}
.x17_c01016{left:476.530667pt;}
.x74_c01016{left:479.022387pt;}
.xd4_c01016{left:480.485333pt;}
.x1e_c01016{left:483.108216pt;}
.x86_c01016{left:486.296000pt;}
.x18_c01016{left:487.328000pt;}
.x7c_c01016{left:488.418760pt;}
.x4e_c01016{left:492.062837pt;}
.xba_c01016{left:492.975716pt;}
.x10_c01016{left:495.016000pt;}
.x19_c01016{left:496.321333pt;}
.x59_c01016{left:499.514667pt;}
.x44_c01016{left:501.861856pt;}
.x2e_c01016{left:503.326411pt;}
.x9d_c01016{left:504.920336pt;}
.xd9_c01016{left:509.625275pt;}
.xdd_c01016{left:510.676000pt;}
.xad_c01016{left:513.421333pt;}
.xa7_c01016{left:515.461520pt;}
.x6c_c01016{left:518.654667pt;}
.x54_c01016{left:520.616789pt;}
.xb7_c01016{left:521.628876pt;}
.xb6_c01016{left:522.996584pt;}
.x87_c01016{left:526.546667pt;}
.xc3_c01016{left:532.863475pt;}
.x62_c01016{left:538.116000pt;}
.x5a_c01016{left:539.141333pt;}
.xd5_c01016{left:540.792000pt;}
.x24_c01016{left:543.140000pt;}
.x7d_c01016{left:546.745427pt;}
.xda_c01016{left:549.352128pt;}
.x45_c01016{left:550.369344pt;}
.xae_c01016{left:552.980000pt;}
.x88_c01016{left:555.138667pt;}
.x6d_c01016{left:558.016000pt;}
.xde_c01016{left:559.229333pt;}
.x2f_c01016{left:562.162709pt;}
.x91_c01016{left:566.280000pt;}
.x4f_c01016{left:569.184085pt;}
.xc4_c01016{left:570.478133pt;}
.xbb_c01016{left:571.470039pt;}
.x25_c01016{left:572.657333pt;}
.xa8_c01016{left:573.709720pt;}
.x9e_c01016{left:574.803125pt;}
.x7e_c01016{left:577.024093pt;}
.xdb_c01016{left:578.710513pt;}
.x75_c01016{left:586.572119pt;}
.x5b_c01016{left:588.285333pt;}
.x46_c01016{left:589.288160pt;}
.x3a_c01016{left:590.508843pt;}
.x30_c01016{left:592.077589pt;}
.x92_c01016{left:595.036000pt;}
.xbc_c01016{left:600.901721pt;}
.x63_c01016{left:608.542667pt;}
.x26_c01016{left:611.549333pt;}
.x89_c01016{left:615.956000pt;}
.x6e_c01016{left:617.093333pt;}
.xa9_c01016{left:623.626653pt;}
.x76_c01016{left:625.964612pt;}
.xd0_c01016{left:629.246528pt;}
.x3b_c01016{left:631.092128pt;}
.x5c_c01016{left:638.280000pt;}
.xaf_c01016{left:641.386667pt;}
.x6f_c01016{left:645.948000pt;}
.x50_c01016{left:648.840320pt;}
.xc5_c01016{left:649.990667pt;}
.x93_c01016{left:653.049333pt;}
.x64_c01016{left:656.297333pt;}
.x55_c01016{left:657.765237pt;}
.xdf_c01016{left:659.049333pt;}
.xb8_c01016{left:661.979052pt;}
.x5d_c01016{left:667.482667pt;}
.x47_c01016{left:668.740555pt;}
.x9f_c01016{left:673.044827pt;}
.x7f_c01016{left:675.472093pt;}
.x3c_c01016{left:678.571733pt;}
.x31_c01016{left:680.056704pt;}
.x56_c01016{left:688.206219pt;}
.xc6_c01016{left:690.233051pt;}
.x98_c01016{left:693.711427pt;}
.xdc_c01016{left:697.663301pt;}
.x48_c01016{left:699.236096pt;}
.xaa_c01016{left:702.854339pt;}
.x27_c01016{left:710.018667pt;}
.xb0_c01016{left:711.520000pt;}
.x77_c01016{left:715.289403pt;}
.x99_c01016{left:722.518853pt;}
.x70_c01016{left:726.125333pt;}
.x51_c01016{left:727.360395pt;}
.xcb_c01016{left:729.753141pt;}
.x94_c01016{left:733.401333pt;}
.x5e_c01016{left:736.198667pt;}
.x3d_c01016{left:738.373280pt;}
.xbd_c01016{left:739.882241pt;}
.xb1_c01016{left:740.912000pt;}
.x8a_c01016{left:743.937333pt;}
.x65_c01016{left:745.809333pt;}
.x57_c01016{left:747.269291pt;}
.x32_c01016{left:758.548224pt;}
.xc7_c01016{left:768.686519pt;}
}





/* 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_c01017 {
    display:none;
  }
  .loading-indicator_c01017.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01017 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_c01017 { 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_c01017" -> "#page-container .classname_c01017")
 */
.pf_c01017 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01017 { /* 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_c01017.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01017 { /* 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_c01017 { /* 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_c01017 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01017 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01017 {overflow:visible;}
  }
}
.c_c01017 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01017 { /* 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_c01017:after { /* webkit #35443 */
  content: '';
}
.t_c01017:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01017 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 */
}
.__c01017 { /* 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_c01017 { /* info for Javascript */
  display:none;
}
.l_c01017 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01017 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01017 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01017: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_c01017 {
    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_c01017.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01017.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_c01017 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01017{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01017;src:url('chunks/assets/font_cfe63ee56e9e10a97d33a3db.woff2')format("woff");}.ff1_c01017{font-family:ff1_c01017;line-height:1.000000;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;}
.m4_c01017{transform:matrix(0.080775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080775,0.000000,0.000000,0.250000,0,0);}
.m2_c01017{transform:matrix(0.120935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120935,0.000000,0.000000,0.250000,0,0);}
.m0_c01017{transform:matrix(0.216105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216105,0.000000,0.000000,0.250000,0,0);}
.m1_c01017{transform:matrix(0.238355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238355,0.000000,0.000000,0.250000,0,0);}
.m3_c01017{transform:matrix(0.667880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667880,0.000000,0.000000,0.250000,0,0);}
.m5_c01017{transform:matrix(1.329660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.329660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.329660,0.000000,0.000000,0.250000,0,0);}
.v0_c01017{vertical-align:0.000000px;}
.ls0_c01017{letter-spacing:0.000000px;}
.sc__c01017{text-shadow:none;}
.sc0_c01017{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__c01017{-webkit-text-stroke:0px transparent;}
.sc0_c01017{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01017{word-spacing:0.000000px;}
.fc0_c01017{color:transparent;}
.fs1_c01017{font-size:18.000000px;}
.fs0_c01017{font-size:24.000000px;}
.fs2_c01017{font-size:84.000000px;}
.y0_c01017{bottom:0.000000px;}
.y3_c01017{bottom:751.648500px;}
.y2_c01017{bottom:778.684500px;}
.y1_c01017{bottom:1089.312000px;}
.h3_c01017{height:18.000000px;}
.h2_c01017{height:24.000000px;}
.h4_c01017{height:84.000000px;}
.h0_c01017{height:1246.320000px;}
.h1_c01017{height:1246.500000px;}
.w0_c01017{width:896.100000px;}
.w1_c01017{width:896.250000px;}
.x0_c01017{left:0.000000px;}
.x6_c01017{left:267.030000px;}
.x1_c01017{left:291.060000px;}
.x2_c01017{left:310.770000px;}
.x3_c01017{left:451.980000px;}
.x4_c01017{left:463.320000px;}
.x5_c01017{left:490.590000px;}
@media print{
.v0_c01017{vertical-align:0.000000pt;}
.ls0_c01017{letter-spacing:0.000000pt;}
.ws0_c01017{word-spacing:0.000000pt;}
.fs1_c01017{font-size:16.000000pt;}
.fs0_c01017{font-size:21.333333pt;}
.fs2_c01017{font-size:74.666667pt;}
.y0_c01017{bottom:0.000000pt;}
.y3_c01017{bottom:668.132000pt;}
.y2_c01017{bottom:692.164000pt;}
.y1_c01017{bottom:968.277333pt;}
.h3_c01017{height:16.000000pt;}
.h2_c01017{height:21.333333pt;}
.h4_c01017{height:74.666667pt;}
.h0_c01017{height:1107.840000pt;}
.h1_c01017{height:1108.000000pt;}
.w0_c01017{width:796.533333pt;}
.w1_c01017{width:796.666667pt;}
.x0_c01017{left:0.000000pt;}
.x6_c01017{left:237.360000pt;}
.x1_c01017{left:258.720000pt;}
.x2_c01017{left:276.240000pt;}
.x3_c01017{left:401.760000pt;}
.x4_c01017{left:411.840000pt;}
.x5_c01017{left:436.080000pt;}
}





/* 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_c01018 {
    display:none;
  }
  .loading-indicator_c01018.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01018 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_c01018 { 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_c01018" -> "#page-container .classname_c01018")
 */
.pf_c01018 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01018 { /* 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_c01018.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01018 { /* 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_c01018 { /* 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_c01018 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01018 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01018 {overflow:visible;}
  }
}
.c_c01018 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01018 { /* 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_c01018:after { /* webkit #35443 */
  content: '';
}
.t_c01018:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01018 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 */
}
.__c01018 { /* 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_c01018 { /* info for Javascript */
  display:none;
}
.l_c01018 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01018 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01018 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01018: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_c01018 {
    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_c01018.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01018.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_c01018 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01018{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01018;src:url('chunks/assets/font_c605e72f209fc835e906f064.woff2')format("woff");}.ff1_c01018{font-family:ff1_c01018;line-height:1.000000;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;}
.ma2_c01018{transform:matrix(0.011582,0.000441,-0.009503,0.249819,0,0);-ms-transform:matrix(0.011582,0.000441,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.011582,0.000441,-0.009503,0.249819,0,0);}
.mdc_c01018{transform:matrix(0.097823,0.006371,-0.016248,0.249471,0,0);-ms-transform:matrix(0.097823,0.006371,-0.016248,0.249471,0,0);-webkit-transform:matrix(0.097823,0.006371,-0.016248,0.249471,0,0);}
.m2_c01018{transform:matrix(0.119382,0.006334,-0.013245,0.249649,0,0);-ms-transform:matrix(0.119382,0.006334,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.119382,0.006334,-0.013245,0.249649,0,0);}
.meb_c01018{transform:matrix(0.123849,0.010694,-0.021506,0.249073,0,0);-ms-transform:matrix(0.123849,0.010694,-0.021506,0.249073,0,0);-webkit-transform:matrix(0.123849,0.010694,-0.021506,0.249073,0,0);}
.mca_c01018{transform:matrix(0.137269,0.008940,-0.016248,0.249471,0,0);-ms-transform:matrix(0.137269,0.008940,-0.016248,0.249471,0,0);-webkit-transform:matrix(0.137269,0.008940,-0.016248,0.249471,0,0);}
.m0_c01018{transform:matrix(0.139359,0.007393,-0.013245,0.249649,0,0);-ms-transform:matrix(0.139359,0.007393,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.139359,0.007393,-0.013245,0.249649,0,0);}
.mdf_c01018{transform:matrix(0.139924,0.010666,-0.019002,0.249277,0,0);-ms-transform:matrix(0.139924,0.010666,-0.019002,0.249277,0,0);-webkit-transform:matrix(0.139924,0.010666,-0.019002,0.249277,0,0);}
.mb1_c01018{transform:matrix(0.140102,0.008002,-0.014255,0.249593,0,0);-ms-transform:matrix(0.140102,0.008002,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.140102,0.008002,-0.014255,0.249593,0,0);}
.mc6_c01018{transform:matrix(0.142318,0.009269,-0.016248,0.249471,0,0);-ms-transform:matrix(0.142318,0.009269,-0.016248,0.249471,0,0);-webkit-transform:matrix(0.142318,0.009269,-0.016248,0.249471,0,0);}
.mf0_c01018{transform:matrix(0.142689,0.012321,-0.021506,0.249073,0,0);-ms-transform:matrix(0.142689,0.012321,-0.021506,0.249073,0,0);-webkit-transform:matrix(0.142689,0.012321,-0.021506,0.249073,0,0);}
.ma3_c01018{transform:matrix(0.144361,0.005491,-0.009503,0.249819,0,0);-ms-transform:matrix(0.144361,0.005491,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.144361,0.005491,-0.009503,0.249819,0,0);}
.m9a_c01018{transform:matrix(0.148424,0.007726,-0.012995,0.249662,0,0);-ms-transform:matrix(0.148424,0.007726,-0.012995,0.249662,0,0);-webkit-transform:matrix(0.148424,0.007726,-0.012995,0.249662,0,0);}
.m37_c01018{transform:matrix(0.151443,0.007428,-0.012248,0.249700,0,0);-ms-transform:matrix(0.151443,0.007428,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.151443,0.007428,-0.012248,0.249700,0,0);}
.m8a_c01018{transform:matrix(0.152184,0.007007,-0.011499,0.249735,0,0);-ms-transform:matrix(0.152184,0.007007,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.152184,0.007007,-0.011499,0.249735,0,0);}
.mbb_c01018{transform:matrix(0.153372,0.009067,-0.014754,0.249564,0,0);-ms-transform:matrix(0.153372,0.009067,-0.014754,0.249564,0,0);-webkit-transform:matrix(0.153372,0.009067,-0.014754,0.249564,0,0);}
.m3d_c01018{transform:matrix(0.158879,0.007793,-0.012248,0.249700,0,0);-ms-transform:matrix(0.158879,0.007793,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.158879,0.007793,-0.012248,0.249700,0,0);}
.mc5_c01018{transform:matrix(0.159298,0.008779,-0.013757,0.249621,0,0);-ms-transform:matrix(0.159298,0.008779,-0.013757,0.249621,0,0);-webkit-transform:matrix(0.159298,0.008779,-0.013757,0.249621,0,0);}
.mc4_c01018{transform:matrix(0.166987,0.009203,-0.013757,0.249621,0,0);-ms-transform:matrix(0.166987,0.009203,-0.013757,0.249621,0,0);-webkit-transform:matrix(0.166987,0.009203,-0.013757,0.249621,0,0);}
.m38_c01018{transform:matrix(0.168712,0.008275,-0.012248,0.249700,0,0);-ms-transform:matrix(0.168712,0.008275,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.168712,0.008275,-0.012248,0.249700,0,0);}
.m3e_c01018{transform:matrix(0.173566,0.008513,-0.012248,0.249700,0,0);-ms-transform:matrix(0.173566,0.008513,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.173566,0.008513,-0.012248,0.249700,0,0);}
.m36_c01018{transform:matrix(0.175129,0.008590,-0.012248,0.249700,0,0);-ms-transform:matrix(0.175129,0.008590,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.175129,0.008590,-0.012248,0.249700,0,0);}
.med_c01018{transform:matrix(0.177440,0.015321,-0.021506,0.249073,0,0);-ms-transform:matrix(0.177440,0.015321,-0.021506,0.249073,0,0);-webkit-transform:matrix(0.177440,0.015321,-0.021506,0.249073,0,0);}
.m58_c01018{transform:matrix(0.181894,0.007647,-0.010501,0.249779,0,0);-ms-transform:matrix(0.181894,0.007647,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.181894,0.007647,-0.010501,0.249779,0,0);}
.mf3_c01018{transform:matrix(0.189714,0.016381,-0.021506,0.249073,0,0);-ms-transform:matrix(0.189714,0.016381,-0.021506,0.249073,0,0);-webkit-transform:matrix(0.189714,0.016381,-0.021506,0.249073,0,0);}
.m83_c01018{transform:matrix(0.190623,0.008777,-0.011499,0.249735,0,0);-ms-transform:matrix(0.190623,0.008777,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.190623,0.008777,-0.011499,0.249735,0,0);}
.m39_c01018{transform:matrix(0.190681,0.009353,-0.012248,0.249700,0,0);-ms-transform:matrix(0.190681,0.009353,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.190681,0.009353,-0.012248,0.249700,0,0);}
.m8d_c01018{transform:matrix(0.191003,0.008795,-0.011499,0.249735,0,0);-ms-transform:matrix(0.191003,0.008795,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.191003,0.008795,-0.011499,0.249735,0,0);}
.m96_c01018{transform:matrix(0.191715,0.009979,-0.012995,0.249662,0,0);-ms-transform:matrix(0.191715,0.009979,-0.012995,0.249662,0,0);-webkit-transform:matrix(0.191715,0.009979,-0.012995,0.249662,0,0);}
.mde_c01018{transform:matrix(0.192073,0.012510,-0.016248,0.249471,0,0);-ms-transform:matrix(0.192073,0.012510,-0.016248,0.249471,0,0);-webkit-transform:matrix(0.192073,0.012510,-0.016248,0.249471,0,0);}
.m93_c01018{transform:matrix(0.192894,0.010041,-0.012995,0.249662,0,0);-ms-transform:matrix(0.192894,0.010041,-0.012995,0.249662,0,0);-webkit-transform:matrix(0.192894,0.010041,-0.012995,0.249662,0,0);}
.m7c_c01018{transform:matrix(0.192951,0.008885,-0.011499,0.249735,0,0);-ms-transform:matrix(0.192951,0.008885,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.192951,0.008885,-0.011499,0.249735,0,0);}
.m3b_c01018{transform:matrix(0.193437,0.009488,-0.012248,0.249700,0,0);-ms-transform:matrix(0.193437,0.009488,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.193437,0.009488,-0.012248,0.249700,0,0);}
.me7_c01018{transform:matrix(0.194481,0.014825,-0.019002,0.249277,0,0);-ms-transform:matrix(0.194481,0.014825,-0.019002,0.249277,0,0);-webkit-transform:matrix(0.194481,0.014825,-0.019002,0.249277,0,0);}
.m1_c01018{transform:matrix(0.194961,0.010343,-0.013245,0.249649,0,0);-ms-transform:matrix(0.194961,0.010343,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.194961,0.010343,-0.013245,0.249649,0,0);}
.m3a_c01018{transform:matrix(0.195180,0.009573,-0.012248,0.249700,0,0);-ms-transform:matrix(0.195180,0.009573,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.195180,0.009573,-0.012248,0.249700,0,0);}
.m4c_c01018{transform:matrix(0.195330,0.009581,-0.012248,0.249700,0,0);-ms-transform:matrix(0.195330,0.009581,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.195330,0.009581,-0.012248,0.249700,0,0);}
.m5e_c01018{transform:matrix(0.195952,0.008238,-0.010501,0.249779,0,0);-ms-transform:matrix(0.195952,0.008238,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.195952,0.008238,-0.010501,0.249779,0,0);}
.m2c_c01018{transform:matrix(0.196274,0.009627,-0.012248,0.249700,0,0);-ms-transform:matrix(0.196274,0.009627,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.196274,0.009627,-0.012248,0.249700,0,0);}
.m5b_c01018{transform:matrix(0.197156,0.008289,-0.010501,0.249779,0,0);-ms-transform:matrix(0.197156,0.008289,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.197156,0.008289,-0.010501,0.249779,0,0);}
.m4e_c01018{transform:matrix(0.198996,0.009761,-0.012248,0.249700,0,0);-ms-transform:matrix(0.198996,0.009761,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.198996,0.009761,-0.012248,0.249700,0,0);}
.ma0_c01018{transform:matrix(0.199586,0.007592,-0.009503,0.249819,0,0);-ms-transform:matrix(0.199586,0.007592,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.199586,0.007592,-0.009503,0.249819,0,0);}
.m3c_c01018{transform:matrix(0.201213,0.009869,-0.012248,0.249700,0,0);-ms-transform:matrix(0.201213,0.009869,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.201213,0.009869,-0.012248,0.249700,0,0);}
.mc_c01018{transform:matrix(0.201601,0.009081,-0.011250,0.249747,0,0);-ms-transform:matrix(0.201601,0.009081,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.201601,0.009081,-0.011250,0.249747,0,0);}
.m59_c01018{transform:matrix(0.203176,0.008542,-0.010501,0.249779,0,0);-ms-transform:matrix(0.203176,0.008542,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.203176,0.008542,-0.010501,0.249779,0,0);}
.m97_c01018{transform:matrix(0.203579,0.010597,-0.012995,0.249662,0,0);-ms-transform:matrix(0.203579,0.010597,-0.012995,0.249662,0,0);-webkit-transform:matrix(0.203579,0.010597,-0.012995,0.249662,0,0);}
.mb3_c01018{transform:matrix(0.204127,0.011659,-0.014255,0.249593,0,0);-ms-transform:matrix(0.204127,0.011659,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.204127,0.011659,-0.014255,0.249593,0,0);}
.m4b_c01018{transform:matrix(0.204879,0.010049,-0.012248,0.249700,0,0);-ms-transform:matrix(0.204879,0.010049,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.204879,0.010049,-0.012248,0.249700,0,0);}
.m34_c01018{transform:matrix(0.205668,0.010088,-0.012248,0.249700,0,0);-ms-transform:matrix(0.205668,0.010088,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.205668,0.010088,-0.012248,0.249700,0,0);}
.m1d_c01018{transform:matrix(0.205848,0.010097,-0.012248,0.249700,0,0);-ms-transform:matrix(0.205848,0.010097,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.205848,0.010097,-0.012248,0.249700,0,0);}
.mec_c01018{transform:matrix(0.207657,0.017930,-0.021506,0.249073,0,0);-ms-transform:matrix(0.207657,0.017930,-0.021506,0.249073,0,0);-webkit-transform:matrix(0.207657,0.017930,-0.021506,0.249073,0,0);}
.mef_c01018{transform:matrix(0.207936,0.017954,-0.021506,0.249073,0,0);-ms-transform:matrix(0.207936,0.017954,-0.021506,0.249073,0,0);-webkit-transform:matrix(0.207936,0.017954,-0.021506,0.249073,0,0);}
.m5c_c01018{transform:matrix(0.208421,0.008762,-0.010501,0.249779,0,0);-ms-transform:matrix(0.208421,0.008762,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.208421,0.008762,-0.010501,0.249779,0,0);}
.m5f_c01018{transform:matrix(0.209035,0.008788,-0.010501,0.249779,0,0);-ms-transform:matrix(0.209035,0.008788,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.209035,0.008788,-0.010501,0.249779,0,0);}
.m45_c01018{transform:matrix(0.209049,0.010254,-0.012248,0.249700,0,0);-ms-transform:matrix(0.209049,0.010254,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.209049,0.010254,-0.012248,0.249700,0,0);}
.m14_c01018{transform:matrix(0.209418,0.009433,-0.011250,0.249747,0,0);-ms-transform:matrix(0.209418,0.009433,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.209418,0.009433,-0.011250,0.249747,0,0);}
.ma8_c01018{transform:matrix(0.209763,0.007979,-0.009503,0.249819,0,0);-ms-transform:matrix(0.209763,0.007979,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.209763,0.007979,-0.009503,0.249819,0,0);}
.me4_c01018{transform:matrix(0.210001,0.016008,-0.019002,0.249277,0,0);-ms-transform:matrix(0.210001,0.016008,-0.019002,0.249277,0,0);-webkit-transform:matrix(0.210001,0.016008,-0.019002,0.249277,0,0);}
.m42_c01018{transform:matrix(0.210482,0.010324,-0.012248,0.249700,0,0);-ms-transform:matrix(0.210482,0.010324,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.210482,0.010324,-0.012248,0.249700,0,0);}
.mee_c01018{transform:matrix(0.211618,0.018272,-0.021506,0.249073,0,0);-ms-transform:matrix(0.211618,0.018272,-0.021506,0.249073,0,0);-webkit-transform:matrix(0.211618,0.018272,-0.021506,0.249073,0,0);}
.m7b_c01018{transform:matrix(0.211621,0.009744,-0.011499,0.249735,0,0);-ms-transform:matrix(0.211621,0.009744,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.211621,0.009744,-0.011499,0.249735,0,0);}
.m19_c01018{transform:matrix(0.212255,0.010411,-0.012248,0.249700,0,0);-ms-transform:matrix(0.212255,0.010411,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.212255,0.010411,-0.012248,0.249700,0,0);}
.m8e_c01018{transform:matrix(0.213409,0.009827,-0.011499,0.249735,0,0);-ms-transform:matrix(0.213409,0.009827,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.213409,0.009827,-0.011499,0.249735,0,0);}
.ma1_c01018{transform:matrix(0.213650,0.008127,-0.009503,0.249819,0,0);-ms-transform:matrix(0.213650,0.008127,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.213650,0.008127,-0.009503,0.249819,0,0);}
.m53_c01018{transform:matrix(0.213658,0.010480,-0.012248,0.249700,0,0);-ms-transform:matrix(0.213658,0.010480,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.213658,0.010480,-0.012248,0.249700,0,0);}
.m90_c01018{transform:matrix(0.213694,0.009840,-0.011499,0.249735,0,0);-ms-transform:matrix(0.213694,0.009840,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.213694,0.009840,-0.011499,0.249735,0,0);}
.mf7_c01018{transform:matrix(0.213695,0.018452,-0.021506,0.249073,0,0);-ms-transform:matrix(0.213695,0.018452,-0.021506,0.249073,0,0);-webkit-transform:matrix(0.213695,0.018452,-0.021506,0.249073,0,0);}
.mb7_c01018{transform:matrix(0.214900,0.012274,-0.014255,0.249593,0,0);-ms-transform:matrix(0.214900,0.012274,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.214900,0.012274,-0.014255,0.249593,0,0);}
.m8f_c01018{transform:matrix(0.214922,0.009896,-0.011499,0.249735,0,0);-ms-transform:matrix(0.214922,0.009896,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.214922,0.009896,-0.011499,0.249735,0,0);}
.mcb_c01018{transform:matrix(0.216357,0.014091,-0.016248,0.249471,0,0);-ms-transform:matrix(0.216357,0.014091,-0.016248,0.249471,0,0);-webkit-transform:matrix(0.216357,0.014091,-0.016248,0.249471,0,0);}
.m7e_c01018{transform:matrix(0.217375,0.010009,-0.011499,0.249735,0,0);-ms-transform:matrix(0.217375,0.010009,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.217375,0.010009,-0.011499,0.249735,0,0);}
.mf1_c01018{transform:matrix(0.218666,0.018881,-0.021506,0.249073,0,0);-ms-transform:matrix(0.218666,0.018881,-0.021506,0.249073,0,0);-webkit-transform:matrix(0.218666,0.018881,-0.021506,0.249073,0,0);}
.m81_c01018{transform:matrix(0.219378,0.010101,-0.011499,0.249735,0,0);-ms-transform:matrix(0.219378,0.010101,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.219378,0.010101,-0.011499,0.249735,0,0);}
.m7d_c01018{transform:matrix(0.219657,0.010114,-0.011499,0.249735,0,0);-ms-transform:matrix(0.219657,0.010114,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.219657,0.010114,-0.011499,0.249735,0,0);}
.m4d_c01018{transform:matrix(0.220110,0.010796,-0.012248,0.249700,0,0);-ms-transform:matrix(0.220110,0.010796,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.220110,0.010796,-0.012248,0.249700,0,0);}
.m55_c01018{transform:matrix(0.220450,0.009268,-0.010501,0.249779,0,0);-ms-transform:matrix(0.220450,0.009268,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.220450,0.009268,-0.010501,0.249779,0,0);}
.mf4_c01018{transform:matrix(0.220918,0.019075,-0.021506,0.249073,0,0);-ms-transform:matrix(0.220918,0.019075,-0.021506,0.249073,0,0);-webkit-transform:matrix(0.220918,0.019075,-0.021506,0.249073,0,0);}
.m40_c01018{transform:matrix(0.221539,0.010866,-0.012248,0.249700,0,0);-ms-transform:matrix(0.221539,0.010866,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.221539,0.010866,-0.012248,0.249700,0,0);}
.m6b_c01018{transform:matrix(0.221645,0.010206,-0.011499,0.249735,0,0);-ms-transform:matrix(0.221645,0.010206,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.221645,0.010206,-0.011499,0.249735,0,0);}
.m51_c01018{transform:matrix(0.221943,0.010886,-0.012248,0.249700,0,0);-ms-transform:matrix(0.221943,0.010886,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.221943,0.010886,-0.012248,0.249700,0,0);}
.m22_c01018{transform:matrix(0.222233,0.010900,-0.012248,0.249700,0,0);-ms-transform:matrix(0.222233,0.010900,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.222233,0.010900,-0.012248,0.249700,0,0);}
.mc9_c01018{transform:matrix(0.222259,0.014476,-0.016248,0.249471,0,0);-ms-transform:matrix(0.222259,0.014476,-0.016248,0.249471,0,0);-webkit-transform:matrix(0.222259,0.014476,-0.016248,0.249471,0,0);}
.mcc_c01018{transform:matrix(0.222748,0.014508,-0.016248,0.249471,0,0);-ms-transform:matrix(0.222748,0.014508,-0.016248,0.249471,0,0);-webkit-transform:matrix(0.222748,0.014508,-0.016248,0.249471,0,0);}
.me3_c01018{transform:matrix(0.223382,0.017028,-0.019002,0.249277,0,0);-ms-transform:matrix(0.223382,0.017028,-0.019002,0.249277,0,0);-webkit-transform:matrix(0.223382,0.017028,-0.019002,0.249277,0,0);}
.me_c01018{transform:matrix(0.223743,0.010079,-0.011250,0.249747,0,0);-ms-transform:matrix(0.223743,0.010079,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.223743,0.010079,-0.011250,0.249747,0,0);}
.m86_c01018{transform:matrix(0.224442,0.010335,-0.011499,0.249735,0,0);-ms-transform:matrix(0.224442,0.010335,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.224442,0.010335,-0.011499,0.249735,0,0);}
.mc8_c01018{transform:matrix(0.224804,0.014642,-0.016248,0.249471,0,0);-ms-transform:matrix(0.224804,0.014642,-0.016248,0.249471,0,0);-webkit-transform:matrix(0.224804,0.014642,-0.016248,0.249471,0,0);}
.m7f_c01018{transform:matrix(0.224867,0.010354,-0.011499,0.249735,0,0);-ms-transform:matrix(0.224867,0.010354,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.224867,0.010354,-0.011499,0.249735,0,0);}
.m65_c01018{transform:matrix(0.225106,0.010365,-0.011499,0.249735,0,0);-ms-transform:matrix(0.225106,0.010365,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.225106,0.010365,-0.011499,0.249735,0,0);}
.m1a_c01018{transform:matrix(0.225669,0.011069,-0.012248,0.249700,0,0);-ms-transform:matrix(0.225669,0.011069,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.225669,0.011069,-0.012248,0.249700,0,0);}
.m9b_c01018{transform:matrix(0.226029,0.011765,-0.012995,0.249662,0,0);-ms-transform:matrix(0.226029,0.011765,-0.012995,0.249662,0,0);-webkit-transform:matrix(0.226029,0.011765,-0.012995,0.249662,0,0);}
.mc0_c01018{transform:matrix(0.226195,0.013372,-0.014754,0.249564,0,0);-ms-transform:matrix(0.226195,0.013372,-0.014754,0.249564,0,0);-webkit-transform:matrix(0.226195,0.013372,-0.014754,0.249564,0,0);}
.mb8_c01018{transform:matrix(0.226880,0.012958,-0.014255,0.249593,0,0);-ms-transform:matrix(0.226880,0.012958,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.226880,0.012958,-0.014255,0.249593,0,0);}
.mf6_c01018{transform:matrix(0.227185,0.019616,-0.021506,0.249073,0,0);-ms-transform:matrix(0.227185,0.019616,-0.021506,0.249073,0,0);-webkit-transform:matrix(0.227185,0.019616,-0.021506,0.249073,0,0);}
.m95_c01018{transform:matrix(0.227337,0.011833,-0.012995,0.249662,0,0);-ms-transform:matrix(0.227337,0.011833,-0.012995,0.249662,0,0);-webkit-transform:matrix(0.227337,0.011833,-0.012995,0.249662,0,0);}
.m48_c01018{transform:matrix(0.227691,0.011168,-0.012248,0.249700,0,0);-ms-transform:matrix(0.227691,0.011168,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.227691,0.011168,-0.012248,0.249700,0,0);}
.mc7_c01018{transform:matrix(0.228002,0.014850,-0.016248,0.249471,0,0);-ms-transform:matrix(0.228002,0.014850,-0.016248,0.249471,0,0);-webkit-transform:matrix(0.228002,0.014850,-0.016248,0.249471,0,0);}
.m80_c01018{transform:matrix(0.228243,0.010510,-0.011499,0.249735,0,0);-ms-transform:matrix(0.228243,0.010510,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.228243,0.010510,-0.011499,0.249735,0,0);}
.m54_c01018{transform:matrix(0.228331,0.011199,-0.012248,0.249700,0,0);-ms-transform:matrix(0.228331,0.011199,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.228331,0.011199,-0.012248,0.249700,0,0);}
.m89_c01018{transform:matrix(0.228922,0.010541,-0.011499,0.249735,0,0);-ms-transform:matrix(0.228922,0.010541,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.228922,0.010541,-0.011499,0.249735,0,0);}
.ma9_c01018{transform:matrix(0.229289,0.008722,-0.009503,0.249819,0,0);-ms-transform:matrix(0.229289,0.008722,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.229289,0.008722,-0.009503,0.249819,0,0);}
.m56_c01018{transform:matrix(0.229657,0.009655,-0.010501,0.249779,0,0);-ms-transform:matrix(0.229657,0.009655,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.229657,0.009655,-0.010501,0.249779,0,0);}
.m7_c01018{transform:matrix(0.230092,0.010364,-0.011250,0.249747,0,0);-ms-transform:matrix(0.230092,0.010364,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.230092,0.010364,-0.011250,0.249747,0,0);}
.m91_c01018{transform:matrix(0.230521,0.010615,-0.011499,0.249735,0,0);-ms-transform:matrix(0.230521,0.010615,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.230521,0.010615,-0.011499,0.249735,0,0);}
.ma5_c01018{transform:matrix(0.230768,0.008778,-0.009503,0.249819,0,0);-ms-transform:matrix(0.230768,0.008778,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.230768,0.008778,-0.009503,0.249819,0,0);}
.m98_c01018{transform:matrix(0.230833,0.012015,-0.012995,0.249662,0,0);-ms-transform:matrix(0.230833,0.012015,-0.012995,0.249662,0,0);-webkit-transform:matrix(0.230833,0.012015,-0.012995,0.249662,0,0);}
.me2_c01018{transform:matrix(0.231877,0.017676,-0.019002,0.249277,0,0);-ms-transform:matrix(0.231877,0.017676,-0.019002,0.249277,0,0);-webkit-transform:matrix(0.231877,0.017676,-0.019002,0.249277,0,0);}
.mba_c01018{transform:matrix(0.232052,0.013253,-0.014255,0.249593,0,0);-ms-transform:matrix(0.232052,0.013253,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.232052,0.013253,-0.014255,0.249593,0,0);}
.m43_c01018{transform:matrix(0.232880,0.011423,-0.012248,0.249700,0,0);-ms-transform:matrix(0.232880,0.011423,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.232880,0.011423,-0.012248,0.249700,0,0);}
.m50_c01018{transform:matrix(0.233050,0.011431,-0.012248,0.249700,0,0);-ms-transform:matrix(0.233050,0.011431,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.233050,0.011431,-0.012248,0.249700,0,0);}
.m94_c01018{transform:matrix(0.233274,0.012142,-0.012995,0.249662,0,0);-ms-transform:matrix(0.233274,0.012142,-0.012995,0.249662,0,0);-webkit-transform:matrix(0.233274,0.012142,-0.012995,0.249662,0,0);}
.m92_c01018{transform:matrix(0.233599,0.012159,-0.012995,0.249662,0,0);-ms-transform:matrix(0.233599,0.012159,-0.012995,0.249662,0,0);-webkit-transform:matrix(0.233599,0.012159,-0.012995,0.249662,0,0);}
.mb6_c01018{transform:matrix(0.233734,0.013350,-0.014255,0.249593,0,0);-ms-transform:matrix(0.233734,0.013350,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.233734,0.013350,-0.014255,0.249593,0,0);}
.m82_c01018{transform:matrix(0.234142,0.010781,-0.011499,0.249735,0,0);-ms-transform:matrix(0.234142,0.010781,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.234142,0.010781,-0.011499,0.249735,0,0);}
.m2e_c01018{transform:matrix(0.234503,0.011502,-0.012248,0.249700,0,0);-ms-transform:matrix(0.234503,0.011502,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.234503,0.011502,-0.012248,0.249700,0,0);}
.m2d_c01018{transform:matrix(0.234563,0.011505,-0.012248,0.249700,0,0);-ms-transform:matrix(0.234563,0.011505,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.234563,0.011505,-0.012248,0.249700,0,0);}
.m84_c01018{transform:matrix(0.234761,0.010810,-0.011499,0.249735,0,0);-ms-transform:matrix(0.234761,0.010810,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.234761,0.010810,-0.011499,0.249735,0,0);}
.mbe_c01018{transform:matrix(0.235114,0.013900,-0.014754,0.249564,0,0);-ms-transform:matrix(0.235114,0.013900,-0.014754,0.249564,0,0);-webkit-transform:matrix(0.235114,0.013900,-0.014754,0.249564,0,0);}
.m57_c01018{transform:matrix(0.235712,0.009910,-0.010501,0.249779,0,0);-ms-transform:matrix(0.235712,0.009910,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.235712,0.009910,-0.010501,0.249779,0,0);}
.mb4_c01018{transform:matrix(0.235731,0.013464,-0.014255,0.249593,0,0);-ms-transform:matrix(0.235731,0.013464,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.235731,0.013464,-0.014255,0.249593,0,0);}
.ma4_c01018{transform:matrix(0.235799,0.008969,-0.009503,0.249819,0,0);-ms-transform:matrix(0.235799,0.008969,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.235799,0.008969,-0.009503,0.249819,0,0);}
.me5_c01018{transform:matrix(0.235801,0.017975,-0.019002,0.249277,0,0);-ms-transform:matrix(0.235801,0.017975,-0.019002,0.249277,0,0);-webkit-transform:matrix(0.235801,0.017975,-0.019002,0.249277,0,0);}
.md0_c01018{transform:matrix(0.235945,0.015367,-0.016248,0.249471,0,0);-ms-transform:matrix(0.235945,0.015367,-0.016248,0.249471,0,0);-webkit-transform:matrix(0.235945,0.015367,-0.016248,0.249471,0,0);}
.m99_c01018{transform:matrix(0.236095,0.012289,-0.012995,0.249662,0,0);-ms-transform:matrix(0.236095,0.012289,-0.012995,0.249662,0,0);-webkit-transform:matrix(0.236095,0.012289,-0.012995,0.249662,0,0);}
.m4f_c01018{transform:matrix(0.236346,0.011593,-0.012248,0.249700,0,0);-ms-transform:matrix(0.236346,0.011593,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.236346,0.011593,-0.012248,0.249700,0,0);}
.md6_c01018{transform:matrix(0.236534,0.015406,-0.016248,0.249471,0,0);-ms-transform:matrix(0.236534,0.015406,-0.016248,0.249471,0,0);-webkit-transform:matrix(0.236534,0.015406,-0.016248,0.249471,0,0);}
.m3_c01018{transform:matrix(0.236605,0.010658,-0.011250,0.249747,0,0);-ms-transform:matrix(0.236605,0.010658,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.236605,0.010658,-0.011250,0.249747,0,0);}
.m46_c01018{transform:matrix(0.237869,0.011667,-0.012248,0.249700,0,0);-ms-transform:matrix(0.237869,0.011667,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.237869,0.011667,-0.012248,0.249700,0,0);}
.ma_c01018{transform:matrix(0.238293,0.010734,-0.011250,0.249747,0,0);-ms-transform:matrix(0.238293,0.010734,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.238293,0.010734,-0.011250,0.249747,0,0);}
.m11_c01018{transform:matrix(0.238328,0.010736,-0.011250,0.249747,0,0);-ms-transform:matrix(0.238328,0.010736,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.238328,0.010736,-0.011250,0.249747,0,0);}
.mb9_c01018{transform:matrix(0.239500,0.013679,-0.014255,0.249593,0,0);-ms-transform:matrix(0.239500,0.013679,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.239500,0.013679,-0.014255,0.249593,0,0);}
.mbc_c01018{transform:matrix(0.239931,0.014184,-0.014754,0.249564,0,0);-ms-transform:matrix(0.239931,0.014184,-0.014754,0.249564,0,0);-webkit-transform:matrix(0.239931,0.014184,-0.014754,0.249564,0,0);}
.ma6_c01018{transform:matrix(0.240096,0.009133,-0.009503,0.249819,0,0);-ms-transform:matrix(0.240096,0.009133,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.240096,0.009133,-0.009503,0.249819,0,0);}
.md5_c01018{transform:matrix(0.240610,0.015671,-0.016248,0.249471,0,0);-ms-transform:matrix(0.240610,0.015671,-0.016248,0.249471,0,0);-webkit-transform:matrix(0.240610,0.015671,-0.016248,0.249471,0,0);}
.m28_c01018{transform:matrix(0.241010,0.011821,-0.012248,0.249700,0,0);-ms-transform:matrix(0.241010,0.011821,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.241010,0.011821,-0.012248,0.249700,0,0);}
.m1b_c01018{transform:matrix(0.241095,0.011825,-0.012248,0.249700,0,0);-ms-transform:matrix(0.241095,0.011825,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.241095,0.011825,-0.012248,0.249700,0,0);}
.md7_c01018{transform:matrix(0.241528,0.015731,-0.016248,0.249471,0,0);-ms-transform:matrix(0.241528,0.015731,-0.016248,0.249471,0,0);-webkit-transform:matrix(0.241528,0.015731,-0.016248,0.249471,0,0);}
.m12_c01018{transform:matrix(0.241535,0.010880,-0.011250,0.249747,0,0);-ms-transform:matrix(0.241535,0.010880,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.241535,0.010880,-0.011250,0.249747,0,0);}
.ma7_c01018{transform:matrix(0.241660,0.009192,-0.009503,0.249819,0,0);-ms-transform:matrix(0.241660,0.009192,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.241660,0.009192,-0.009503,0.249819,0,0);}
.mb5_c01018{transform:matrix(0.241856,0.013813,-0.014255,0.249593,0,0);-ms-transform:matrix(0.241856,0.013813,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.241856,0.013813,-0.014255,0.249593,0,0);}
.m17_c01018{transform:matrix(0.241919,0.011866,-0.012248,0.249700,0,0);-ms-transform:matrix(0.241919,0.011866,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.241919,0.011866,-0.012248,0.249700,0,0);}
.me6_c01018{transform:matrix(0.241998,0.018447,-0.019002,0.249277,0,0);-ms-transform:matrix(0.241998,0.018447,-0.019002,0.249277,0,0);-webkit-transform:matrix(0.241998,0.018447,-0.019002,0.249277,0,0);}
.m5d_c01018{transform:matrix(0.242261,0.010185,-0.010501,0.249779,0,0);-ms-transform:matrix(0.242261,0.010185,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.242261,0.010185,-0.010501,0.249779,0,0);}
.maa_c01018{transform:matrix(0.242615,0.009229,-0.009503,0.249819,0,0);-ms-transform:matrix(0.242615,0.009229,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.242615,0.009229,-0.009503,0.249819,0,0);}
.m5a_c01018{transform:matrix(0.242865,0.010211,-0.010501,0.249779,0,0);-ms-transform:matrix(0.242865,0.010211,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.242865,0.010211,-0.010501,0.249779,0,0);}
.m85_c01018{transform:matrix(0.243237,0.011200,-0.011499,0.249735,0,0);-ms-transform:matrix(0.243237,0.011200,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.243237,0.011200,-0.011499,0.249735,0,0);}
.m2f_c01018{transform:matrix(0.243962,0.011966,-0.012248,0.249700,0,0);-ms-transform:matrix(0.243962,0.011966,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.243962,0.011966,-0.012248,0.249700,0,0);}
.m52_c01018{transform:matrix(0.244012,0.011969,-0.012248,0.249700,0,0);-ms-transform:matrix(0.244012,0.011969,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.244012,0.011969,-0.012248,0.249700,0,0);}
.m18_c01018{transform:matrix(0.244421,0.011989,-0.012248,0.249700,0,0);-ms-transform:matrix(0.244421,0.011989,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.244421,0.011989,-0.012248,0.249700,0,0);}
.m15_c01018{transform:matrix(0.244522,0.011015,-0.011250,0.249747,0,0);-ms-transform:matrix(0.244522,0.011015,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.244522,0.011015,-0.011250,0.249747,0,0);}
.mc3_c01018{transform:matrix(0.244823,0.014473,-0.014754,0.249564,0,0);-ms-transform:matrix(0.244823,0.014473,-0.014754,0.249564,0,0);-webkit-transform:matrix(0.244823,0.014473,-0.014754,0.249564,0,0);}
.mf_c01018{transform:matrix(0.245556,0.011061,-0.011250,0.249747,0,0);-ms-transform:matrix(0.245556,0.011061,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.245556,0.011061,-0.011250,0.249747,0,0);}
.m66_c01018{transform:matrix(0.245934,0.011324,-0.011499,0.249735,0,0);-ms-transform:matrix(0.245934,0.011324,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.245934,0.011324,-0.011499,0.249735,0,0);}
.m87_c01018{transform:matrix(0.246893,0.011368,-0.011499,0.249735,0,0);-ms-transform:matrix(0.246893,0.011368,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.246893,0.011368,-0.011499,0.249735,0,0);}
.m6e_c01018{transform:matrix(0.247038,0.011375,-0.011499,0.249735,0,0);-ms-transform:matrix(0.247038,0.011375,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.247038,0.011375,-0.011499,0.249735,0,0);}
.m71_c01018{transform:matrix(0.247243,0.011385,-0.011499,0.249735,0,0);-ms-transform:matrix(0.247243,0.011385,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.247243,0.011385,-0.011499,0.249735,0,0);}
.m69_c01018{transform:matrix(0.247288,0.011387,-0.011499,0.249735,0,0);-ms-transform:matrix(0.247288,0.011387,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.247288,0.011387,-0.011499,0.249735,0,0);}
.mbf_c01018{transform:matrix(0.247448,0.014629,-0.014754,0.249564,0,0);-ms-transform:matrix(0.247448,0.014629,-0.014754,0.249564,0,0);-webkit-transform:matrix(0.247448,0.014629,-0.014754,0.249564,0,0);}
.m35_c01018{transform:matrix(0.248651,0.012196,-0.012248,0.249700,0,0);-ms-transform:matrix(0.248651,0.012196,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.248651,0.012196,-0.012248,0.249700,0,0);}
.mae_c01018{transform:matrix(0.249435,0.009488,-0.009503,0.249819,0,0);-ms-transform:matrix(0.249435,0.009488,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.249435,0.009488,-0.009503,0.249819,0,0);}
.mf2_c01018{transform:matrix(0.249482,0.021542,-0.021506,0.249073,0,0);-ms-transform:matrix(0.249482,0.021542,-0.021506,0.249073,0,0);-webkit-transform:matrix(0.249482,0.021542,-0.021506,0.249073,0,0);}
.mc2_c01018{transform:matrix(0.250253,0.014795,-0.014754,0.249564,0,0);-ms-transform:matrix(0.250253,0.014795,-0.014754,0.249564,0,0);-webkit-transform:matrix(0.250253,0.014795,-0.014754,0.249564,0,0);}
.m41_c01018{transform:matrix(0.250519,0.012288,-0.012248,0.249700,0,0);-ms-transform:matrix(0.250519,0.012288,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.250519,0.012288,-0.012248,0.249700,0,0);}
.m4a_c01018{transform:matrix(0.251088,0.012316,-0.012248,0.249700,0,0);-ms-transform:matrix(0.251088,0.012316,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.251088,0.012316,-0.012248,0.249700,0,0);}
.mc1_c01018{transform:matrix(0.251436,0.014864,-0.014754,0.249564,0,0);-ms-transform:matrix(0.251436,0.014864,-0.014754,0.249564,0,0);-webkit-transform:matrix(0.251436,0.014864,-0.014754,0.249564,0,0);}
.m21_c01018{transform:matrix(0.251578,0.012340,-0.012248,0.249700,0,0);-ms-transform:matrix(0.251578,0.012340,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.251578,0.012340,-0.012248,0.249700,0,0);}
.m1f_c01018{transform:matrix(0.251627,0.012342,-0.012248,0.249700,0,0);-ms-transform:matrix(0.251627,0.012342,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.251627,0.012342,-0.012248,0.249700,0,0);}
.md3_c01018{transform:matrix(0.252016,0.016414,-0.016248,0.249471,0,0);-ms-transform:matrix(0.252016,0.016414,-0.016248,0.249471,0,0);-webkit-transform:matrix(0.252016,0.016414,-0.016248,0.249471,0,0);}
.mf5_c01018{transform:matrix(0.252635,0.021814,-0.021506,0.249073,0,0);-ms-transform:matrix(0.252635,0.021814,-0.021506,0.249073,0,0);-webkit-transform:matrix(0.252635,0.021814,-0.021506,0.249073,0,0);}
.m47_c01018{transform:matrix(0.252756,0.012397,-0.012248,0.249700,0,0);-ms-transform:matrix(0.252756,0.012397,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.252756,0.012397,-0.012248,0.249700,0,0);}
.m44_c01018{transform:matrix(0.253365,0.012427,-0.012248,0.249700,0,0);-ms-transform:matrix(0.253365,0.012427,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.253365,0.012427,-0.012248,0.249700,0,0);}
.m8b_c01018{transform:matrix(0.253436,0.011670,-0.011499,0.249735,0,0);-ms-transform:matrix(0.253436,0.011670,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.253436,0.011670,-0.011499,0.249735,0,0);}
.m1c_c01018{transform:matrix(0.253505,0.012434,-0.012248,0.249700,0,0);-ms-transform:matrix(0.253505,0.012434,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.253505,0.012434,-0.012248,0.249700,0,0);}
.m8_c01018{transform:matrix(0.253793,0.011432,-0.011250,0.249747,0,0);-ms-transform:matrix(0.253793,0.011432,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.253793,0.011432,-0.011250,0.249747,0,0);}
.mcf_c01018{transform:matrix(0.253852,0.016533,-0.016248,0.249471,0,0);-ms-transform:matrix(0.253852,0.016533,-0.016248,0.249471,0,0);-webkit-transform:matrix(0.253852,0.016533,-0.016248,0.249471,0,0);}
.m2b_c01018{transform:matrix(0.254209,0.012469,-0.012248,0.249700,0,0);-ms-transform:matrix(0.254209,0.012469,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.254209,0.012469,-0.012248,0.249700,0,0);}
.m32_c01018{transform:matrix(0.254264,0.012471,-0.012248,0.249700,0,0);-ms-transform:matrix(0.254264,0.012471,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.254264,0.012471,-0.012248,0.249700,0,0);}
.m31_c01018{transform:matrix(0.255003,0.012508,-0.012248,0.249700,0,0);-ms-transform:matrix(0.255003,0.012508,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.255003,0.012508,-0.012248,0.249700,0,0);}
.mdb_c01018{transform:matrix(0.255509,0.016641,-0.016248,0.249471,0,0);-ms-transform:matrix(0.255509,0.016641,-0.016248,0.249471,0,0);-webkit-transform:matrix(0.255509,0.016641,-0.016248,0.249471,0,0);}
.m10_c01018{transform:matrix(0.255731,0.011519,-0.011250,0.249747,0,0);-ms-transform:matrix(0.255731,0.011519,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.255731,0.011519,-0.011250,0.249747,0,0);}
.m1e_c01018{transform:matrix(0.255758,0.012545,-0.012248,0.249700,0,0);-ms-transform:matrix(0.255758,0.012545,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.255758,0.012545,-0.012248,0.249700,0,0);}
.m6d_c01018{transform:matrix(0.255944,0.011785,-0.011499,0.249735,0,0);-ms-transform:matrix(0.255944,0.011785,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.255944,0.011785,-0.011499,0.249735,0,0);}
.m16_c01018{transform:matrix(0.256760,0.011566,-0.011250,0.249747,0,0);-ms-transform:matrix(0.256760,0.011566,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.256760,0.011566,-0.011250,0.249747,0,0);}
.mbd_c01018{transform:matrix(0.258329,0.015272,-0.014754,0.249564,0,0);-ms-transform:matrix(0.258329,0.015272,-0.014754,0.249564,0,0);-webkit-transform:matrix(0.258329,0.015272,-0.014754,0.249564,0,0);}
.me8_c01018{transform:matrix(0.259412,0.019775,-0.019002,0.249277,0,0);-ms-transform:matrix(0.259412,0.019775,-0.019002,0.249277,0,0);-webkit-transform:matrix(0.259412,0.019775,-0.019002,0.249277,0,0);}
.m49_c01018{transform:matrix(0.259498,0.012728,-0.012248,0.249700,0,0);-ms-transform:matrix(0.259498,0.012728,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.259498,0.012728,-0.012248,0.249700,0,0);}
.m6a_c01018{transform:matrix(0.259845,0.011965,-0.011499,0.249735,0,0);-ms-transform:matrix(0.259845,0.011965,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.259845,0.011965,-0.011499,0.249735,0,0);}
.m72_c01018{transform:matrix(0.260569,0.011998,-0.011499,0.249735,0,0);-ms-transform:matrix(0.260569,0.011998,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.260569,0.011998,-0.011499,0.249735,0,0);}
.m67_c01018{transform:matrix(0.260879,0.012012,-0.011499,0.249735,0,0);-ms-transform:matrix(0.260879,0.012012,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.260879,0.012012,-0.011499,0.249735,0,0);}
.m29_c01018{transform:matrix(0.261051,0.012804,-0.012248,0.249700,0,0);-ms-transform:matrix(0.261051,0.012804,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.261051,0.012804,-0.012248,0.249700,0,0);}
.mb2_c01018{transform:matrix(0.261199,0.014918,-0.014255,0.249593,0,0);-ms-transform:matrix(0.261199,0.014918,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.261199,0.014918,-0.014255,0.249593,0,0);}
.m5_c01018{transform:matrix(0.261425,0.011776,-0.011250,0.249747,0,0);-ms-transform:matrix(0.261425,0.011776,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.261425,0.011776,-0.011250,0.249747,0,0);}
.m3f_c01018{transform:matrix(0.261436,0.012823,-0.012248,0.249700,0,0);-ms-transform:matrix(0.261436,0.012823,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.261436,0.012823,-0.012248,0.249700,0,0);}
.m68_c01018{transform:matrix(0.261543,0.012043,-0.011499,0.249735,0,0);-ms-transform:matrix(0.261543,0.012043,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.261543,0.012043,-0.011499,0.249735,0,0);}
.md4_c01018{transform:matrix(0.261561,0.017036,-0.016248,0.249471,0,0);-ms-transform:matrix(0.261561,0.017036,-0.016248,0.249471,0,0);-webkit-transform:matrix(0.261561,0.017036,-0.016248,0.249471,0,0);}
.m62_c01018{transform:matrix(0.262592,0.012091,-0.011499,0.249735,0,0);-ms-transform:matrix(0.262592,0.012091,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.262592,0.012091,-0.011499,0.249735,0,0);}
.mea_c01018{transform:matrix(0.262763,0.020030,-0.019002,0.249277,0,0);-ms-transform:matrix(0.262763,0.020030,-0.019002,0.249277,0,0);-webkit-transform:matrix(0.262763,0.020030,-0.019002,0.249277,0,0);}
.m8c_c01018{transform:matrix(0.263486,0.012132,-0.011499,0.249735,0,0);-ms-transform:matrix(0.263486,0.012132,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.263486,0.012132,-0.011499,0.249735,0,0);}
.m25_c01018{transform:matrix(0.264787,0.012988,-0.012248,0.249700,0,0);-ms-transform:matrix(0.264787,0.012988,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.264787,0.012988,-0.012248,0.249700,0,0);}
.m6_c01018{transform:matrix(0.265641,0.011966,-0.011250,0.249747,0,0);-ms-transform:matrix(0.265641,0.011966,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.265641,0.011966,-0.011250,0.249747,0,0);}
.m13_c01018{transform:matrix(0.265825,0.011974,-0.011250,0.249747,0,0);-ms-transform:matrix(0.265825,0.011974,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.265825,0.011974,-0.011250,0.249747,0,0);}
.md1_c01018{transform:matrix(0.265877,0.017317,-0.016248,0.249471,0,0);-ms-transform:matrix(0.265877,0.017317,-0.016248,0.249471,0,0);-webkit-transform:matrix(0.265877,0.017317,-0.016248,0.249471,0,0);}
.m24_c01018{transform:matrix(0.266005,0.013047,-0.012248,0.249700,0,0);-ms-transform:matrix(0.266005,0.013047,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.266005,0.013047,-0.012248,0.249700,0,0);}
.m6c_c01018{transform:matrix(0.266198,0.012257,-0.011499,0.249735,0,0);-ms-transform:matrix(0.266198,0.012257,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.266198,0.012257,-0.011499,0.249735,0,0);}
.m7a_c01018{transform:matrix(0.266857,0.012288,-0.011499,0.249735,0,0);-ms-transform:matrix(0.266857,0.012288,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.266857,0.012288,-0.011499,0.249735,0,0);}
.m20_c01018{transform:matrix(0.267758,0.013133,-0.012248,0.249700,0,0);-ms-transform:matrix(0.267758,0.013133,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.267758,0.013133,-0.012248,0.249700,0,0);}
.m30_c01018{transform:matrix(0.267888,0.013140,-0.012248,0.249700,0,0);-ms-transform:matrix(0.267888,0.013140,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.267888,0.013140,-0.012248,0.249700,0,0);}
.mdd_c01018{transform:matrix(0.268810,0.017508,-0.016248,0.249471,0,0);-ms-transform:matrix(0.268810,0.017508,-0.016248,0.249471,0,0);-webkit-transform:matrix(0.268810,0.017508,-0.016248,0.249471,0,0);}
.m23_c01018{transform:matrix(0.270170,0.013252,-0.012248,0.249700,0,0);-ms-transform:matrix(0.270170,0.013252,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.270170,0.013252,-0.012248,0.249700,0,0);}
.m64_c01018{transform:matrix(0.270403,0.012451,-0.011499,0.249735,0,0);-ms-transform:matrix(0.270403,0.012451,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.270403,0.012451,-0.011499,0.249735,0,0);}
.m33_c01018{transform:matrix(0.271783,0.013331,-0.012248,0.249700,0,0);-ms-transform:matrix(0.271783,0.013331,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.271783,0.013331,-0.012248,0.249700,0,0);}
.mb_c01018{transform:matrix(0.273178,0.012305,-0.011250,0.249747,0,0);-ms-transform:matrix(0.273178,0.012305,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.273178,0.012305,-0.011250,0.249747,0,0);}
.m70_c01018{transform:matrix(0.273455,0.012592,-0.011499,0.249735,0,0);-ms-transform:matrix(0.273455,0.012592,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.273455,0.012592,-0.011499,0.249735,0,0);}
.mcd_c01018{transform:matrix(0.273660,0.017824,-0.016248,0.249471,0,0);-ms-transform:matrix(0.273660,0.017824,-0.016248,0.249471,0,0);-webkit-transform:matrix(0.273660,0.017824,-0.016248,0.249471,0,0);}
.md9_c01018{transform:matrix(0.273790,0.017832,-0.016248,0.249471,0,0);-ms-transform:matrix(0.273790,0.017832,-0.016248,0.249471,0,0);-webkit-transform:matrix(0.273790,0.017832,-0.016248,0.249471,0,0);}
.m2a_c01018{transform:matrix(0.274300,0.013454,-0.012248,0.249700,0,0);-ms-transform:matrix(0.274300,0.013454,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.274300,0.013454,-0.012248,0.249700,0,0);}
.m88_c01018{transform:matrix(0.274809,0.012654,-0.011499,0.249735,0,0);-ms-transform:matrix(0.274809,0.012654,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.274809,0.012654,-0.011499,0.249735,0,0);}
.md_c01018{transform:matrix(0.275446,0.012407,-0.011250,0.249747,0,0);-ms-transform:matrix(0.275446,0.012407,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.275446,0.012407,-0.011250,0.249747,0,0);}
.mce_c01018{transform:matrix(0.277801,0.018093,-0.016248,0.249471,0,0);-ms-transform:matrix(0.277801,0.018093,-0.016248,0.249471,0,0);-webkit-transform:matrix(0.277801,0.018093,-0.016248,0.249471,0,0);}
.m6f_c01018{transform:matrix(0.277955,0.012799,-0.011499,0.249735,0,0);-ms-transform:matrix(0.277955,0.012799,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.277955,0.012799,-0.011499,0.249735,0,0);}
.m79_c01018{transform:matrix(0.278110,0.012806,-0.011499,0.249735,0,0);-ms-transform:matrix(0.278110,0.012806,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.278110,0.012806,-0.011499,0.249735,0,0);}
.mda_c01018{transform:matrix(0.278141,0.018115,-0.016248,0.249471,0,0);-ms-transform:matrix(0.278141,0.018115,-0.016248,0.249471,0,0);-webkit-transform:matrix(0.278141,0.018115,-0.016248,0.249471,0,0);}
.m63_c01018{transform:matrix(0.278500,0.012824,-0.011499,0.249735,0,0);-ms-transform:matrix(0.278500,0.012824,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.278500,0.012824,-0.011499,0.249735,0,0);}
.m4_c01018{transform:matrix(0.278642,0.012551,-0.011250,0.249747,0,0);-ms-transform:matrix(0.278642,0.012551,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.278642,0.012551,-0.011250,0.249747,0,0);}
.mb0_c01018{transform:matrix(0.279293,0.010624,-0.009503,0.249819,0,0);-ms-transform:matrix(0.279293,0.010624,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.279293,0.010624,-0.009503,0.249819,0,0);}
.md2_c01018{transform:matrix(0.279677,0.018215,-0.016248,0.249471,0,0);-ms-transform:matrix(0.279677,0.018215,-0.016248,0.249471,0,0);-webkit-transform:matrix(0.279677,0.018215,-0.016248,0.249471,0,0);}
.m9_c01018{transform:matrix(0.280061,0.012615,-0.011250,0.249747,0,0);-ms-transform:matrix(0.280061,0.012615,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.280061,0.012615,-0.011250,0.249747,0,0);}
.mac_c01018{transform:matrix(0.281297,0.010700,-0.009503,0.249819,0,0);-ms-transform:matrix(0.281297,0.010700,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.281297,0.010700,-0.009503,0.249819,0,0);}
.m73_c01018{transform:matrix(0.283485,0.013053,-0.011499,0.249735,0,0);-ms-transform:matrix(0.283485,0.013053,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.283485,0.013053,-0.011499,0.249735,0,0);}
.m9c_c01018{transform:matrix(0.285508,0.014861,-0.012995,0.249662,0,0);-ms-transform:matrix(0.285508,0.014861,-0.012995,0.249662,0,0);-webkit-transform:matrix(0.285508,0.014861,-0.012995,0.249662,0,0);}
.maf_c01018{transform:matrix(0.286788,0.010909,-0.009503,0.249819,0,0);-ms-transform:matrix(0.286788,0.010909,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.286788,0.010909,-0.009503,0.249819,0,0);}
.md8_c01018{transform:matrix(0.290689,0.018933,-0.016248,0.249471,0,0);-ms-transform:matrix(0.290689,0.018933,-0.016248,0.249471,0,0);-webkit-transform:matrix(0.290689,0.018933,-0.016248,0.249471,0,0);}
.me0_c01018{transform:matrix(0.291250,0.022202,-0.019002,0.249277,0,0);-ms-transform:matrix(0.291250,0.022202,-0.019002,0.249277,0,0);-webkit-transform:matrix(0.291250,0.022202,-0.019002,0.249277,0,0);}
.m27_c01018{transform:matrix(0.291335,0.014290,-0.012248,0.249700,0,0);-ms-transform:matrix(0.291335,0.014290,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.291335,0.014290,-0.012248,0.249700,0,0);}
.mab_c01018{transform:matrix(0.291584,0.011091,-0.009503,0.249819,0,0);-ms-transform:matrix(0.291584,0.011091,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.291584,0.011091,-0.009503,0.249819,0,0);}
.mad_c01018{transform:matrix(0.292538,0.011128,-0.009503,0.249819,0,0);-ms-transform:matrix(0.292538,0.011128,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.292538,0.011128,-0.009503,0.249819,0,0);}
.m77_c01018{transform:matrix(0.293554,0.013517,-0.011499,0.249735,0,0);-ms-transform:matrix(0.293554,0.013517,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.293554,0.013517,-0.011499,0.249735,0,0);}
.m75_c01018{transform:matrix(0.293669,0.013522,-0.011499,0.249735,0,0);-ms-transform:matrix(0.293669,0.013522,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.293669,0.013522,-0.011499,0.249735,0,0);}
.m74_c01018{transform:matrix(0.300082,0.013818,-0.011499,0.249735,0,0);-ms-transform:matrix(0.300082,0.013818,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.300082,0.013818,-0.011499,0.249735,0,0);}
.m78_c01018{transform:matrix(0.303963,0.013996,-0.011499,0.249735,0,0);-ms-transform:matrix(0.303963,0.013996,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.303963,0.013996,-0.011499,0.249735,0,0);}
.m76_c01018{transform:matrix(0.305611,0.014072,-0.011499,0.249735,0,0);-ms-transform:matrix(0.305611,0.014072,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.305611,0.014072,-0.011499,0.249735,0,0);}
.me9_c01018{transform:matrix(0.309432,0.023588,-0.019002,0.249277,0,0);-ms-transform:matrix(0.309432,0.023588,-0.019002,0.249277,0,0);-webkit-transform:matrix(0.309432,0.023588,-0.019002,0.249277,0,0);}
.m60_c01018{transform:matrix(0.331059,0.015244,-0.011499,0.249735,0,0);-ms-transform:matrix(0.331059,0.015244,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.331059,0.015244,-0.011499,0.249735,0,0);}
.m61_c01018{transform:matrix(0.356837,0.016431,-0.011499,0.249735,0,0);-ms-transform:matrix(0.356837,0.016431,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.356837,0.016431,-0.011499,0.249735,0,0);}
.me1_c01018{transform:matrix(0.363181,0.027685,-0.019002,0.249277,0,0);-ms-transform:matrix(0.363181,0.027685,-0.019002,0.249277,0,0);-webkit-transform:matrix(0.363181,0.027685,-0.019002,0.249277,0,0);}
.m26_c01018{transform:matrix(0.372802,0.018286,-0.012248,0.249700,0,0);-ms-transform:matrix(0.372802,0.018286,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.372802,0.018286,-0.012248,0.249700,0,0);}
.m9f_c01018{transform:matrix(0.691384,0.035988,-0.012995,0.249662,0,0);-ms-transform:matrix(0.691384,0.035988,-0.012995,0.249662,0,0);-webkit-transform:matrix(0.691384,0.035988,-0.012995,0.249662,0,0);}
.m9e_c01018{transform:matrix(0.891458,0.046402,-0.012995,0.249662,0,0);-ms-transform:matrix(0.891458,0.046402,-0.012995,0.249662,0,0);-webkit-transform:matrix(0.891458,0.046402,-0.012995,0.249662,0,0);}
.m9d_c01018{transform:matrix(5.132741,0.267170,-0.012995,0.249662,0,0);-ms-transform:matrix(5.132741,0.267170,-0.012995,0.249662,0,0);-webkit-transform:matrix(5.132741,0.267170,-0.012995,0.249662,0,0);}
.v0_c01018{vertical-align:0.000000px;}
.ls0_c01018{letter-spacing:0.000000px;}
.sc__c01018{text-shadow:none;}
.sc0_c01018{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__c01018{-webkit-text-stroke:0px transparent;}
.sc0_c01018{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01018{word-spacing:0.000000px;}
.fc0_c01018{color:transparent;}
.fsc_c01018{font-size:36.012688px;}
.fse_c01018{font-size:65.981682px;}
.fs8_c01018{font-size:66.003861px;}
.fs17_c01018{font-size:71.992260px;}
.fs1_c01018{font-size:72.000936px;}
.fs7_c01018{font-size:72.004212px;}
.fs14_c01018{font-size:72.008244px;}
.fs3_c01018{font-size:72.014471px;}
.fs10_c01018{font-size:77.970862px;}
.fs11_c01018{font-size:77.979912px;}
.fsa_c01018{font-size:78.004563px;}
.fs15_c01018{font-size:78.008930px;}
.fs2_c01018{font-size:78.015676px;}
.fsf_c01018{font-size:83.968620px;}
.fs19_c01018{font-size:83.975300px;}
.fsd_c01018{font-size:83.976687px;}
.fs6_c01018{font-size:83.990129px;}
.fs16_c01018{font-size:83.990970px;}
.fs9_c01018{font-size:84.004914px;}
.fs5_c01018{font-size:84.016882px;}
.fsb_c01018{font-size:84.029605px;}
.fs18_c01018{font-size:89.973536px;}
.fs13_c01018{font-size:90.010304px;}
.fs0_c01018{font-size:90.036443px;}
.fs4_c01018{font-size:102.020500px;}
.fs12_c01018{font-size:113.944640px;}
.y0_c01018{bottom:0.000000px;}
.yfa_c01018{bottom:92.484336px;}
.yf9_c01018{bottom:99.341676px;}
.yf7_c01018{bottom:105.207339px;}
.yf8_c01018{bottom:106.219872px;}
.yf6_c01018{bottom:108.074751px;}
.yf5_c01018{bottom:118.641528px;}
.yf4_c01018{bottom:126.310449px;}
.yf3_c01018{bottom:128.215392px;}
.yf2_c01018{bottom:133.003743px;}
.yf1_c01018{bottom:137.692893px;}
.yf0_c01018{bottom:140.454654px;}
.yef_c01018{bottom:147.908661px;}
.yee_c01018{bottom:149.842500px;}
.yed_c01018{bottom:173.699162px;}
.yea_c01018{bottom:175.829724px;}
.ye9_c01018{bottom:185.159484px;}
.yec_c01018{bottom:186.126567px;}
.yeb_c01018{bottom:188.224283px;}
.ye8_c01018{bottom:192.759066px;}
.ye7_c01018{bottom:196.175760px;}
.ye6_c01018{bottom:201.242034px;}
.ye5_c01018{bottom:207.858480px;}
.ye4_c01018{bottom:209.815746px;}
.ye1_c01018{bottom:212.377932px;}
.ye3_c01018{bottom:216.970842px;}
.ye2_c01018{bottom:218.709000px;}
.ye0_c01018{bottom:218.969248px;}
.ydf_c01018{bottom:220.999981px;}
.yde_c01018{bottom:227.824491px;}
.ydd_c01018{bottom:237.518532px;}
.ydc_c01018{bottom:244.675863px;}
.ydb_c01018{bottom:249.009918px;}
.yd7_c01018{bottom:251.516373px;}
.yda_c01018{bottom:254.653838px;}
.yd6_c01018{bottom:255.557644px;}
.yd9_c01018{bottom:259.510966px;}
.yd8_c01018{bottom:261.105447px;}
.yd5_c01018{bottom:264.159131px;}
.yd4_c01018{bottom:268.894765px;}
.yd3_c01018{bottom:271.183633px;}
.yd2_c01018{bottom:275.050167px;}
.yd1_c01018{bottom:285.022405px;}
.ycf_c01018{bottom:290.381798px;}
.yd0_c01018{bottom:294.062683px;}
.yce_c01018{bottom:296.221170px;}
.ycd_c01018{bottom:298.438027px;}
.ycc_c01018{bottom:302.177640px;}
.ycb_c01018{bottom:311.268735px;}
.yca_c01018{bottom:321.968287px;}
.yc9_c01018{bottom:323.481000px;}
.yc8_c01018{bottom:357.346770px;}
.yc7_c01018{bottom:359.700000px;}
.yc6_c01018{bottom:361.791100px;}
.yc5_c01018{bottom:366.422482px;}
.yc4_c01018{bottom:371.578669px;}
.yc3_c01018{bottom:375.488776px;}
.yc2_c01018{bottom:376.850791px;}
.yc1_c01018{bottom:380.673018px;}
.yc0_c01018{bottom:387.876829px;}
.ybf_c01018{bottom:392.299617px;}
.ybe_c01018{bottom:393.676500px;}
.ybd_c01018{bottom:425.219733px;}
.ybc_c01018{bottom:428.410068px;}
.ybb_c01018{bottom:430.691785px;}
.yba_c01018{bottom:433.548541px;}
.yb9_c01018{bottom:439.241046px;}
.yb8_c01018{bottom:448.060542px;}
.yb7_c01018{bottom:453.040062px;}
.yb6_c01018{bottom:454.901824px;}
.yb5_c01018{bottom:463.593156px;}
.yb4_c01018{bottom:464.955000px;}
.yb3_c01018{bottom:486.194820px;}
.yb2_c01018{bottom:489.717983px;}
.yb1_c01018{bottom:491.026460px;}
.yb0_c01018{bottom:494.519396px;}
.yaf_c01018{bottom:496.744586px;}
.yae_c01018{bottom:500.631834px;}
.yad_c01018{bottom:507.301932px;}
.yac_c01018{bottom:510.619658px;}
.yab_c01018{bottom:513.014439px;}
.yaa_c01018{bottom:519.720573px;}
.ya9_c01018{bottom:526.317417px;}
.ya8_c01018{bottom:527.576945px;}
.ya7_c01018{bottom:534.121509px;}
.ya6_c01018{bottom:535.434456px;}
.ya5_c01018{bottom:553.888329px;}
.ya4_c01018{bottom:570.757251px;}
.ya3_c01018{bottom:572.413500px;}
.y9f_c01018{bottom:577.848168px;}
.y9e_c01018{bottom:581.261838px;}
.y9d_c01018{bottom:582.454536px;}
.ya2_c01018{bottom:583.521661px;}
.ya1_c01018{bottom:586.132333px;}
.y9c_c01018{bottom:587.061840px;}
.y9b_c01018{bottom:591.687864px;}
.y9a_c01018{bottom:593.359248px;}
.y99_c01018{bottom:595.086012px;}
.y98_c01018{bottom:599.081094px;}
.y97_c01018{bottom:603.662190px;}
.y96_c01018{bottom:605.346210px;}
.ya0_c01018{bottom:607.559279px;}
.y95_c01018{bottom:610.498500px;}
.y94_c01018{bottom:615.873071px;}
.y93_c01018{bottom:619.665098px;}
.y92_c01018{bottom:621.971163px;}
.y91_c01018{bottom:623.625033px;}
.y90_c01018{bottom:625.221692px;}
.y8f_c01018{bottom:634.051496px;}
.y8e_c01018{bottom:641.145122px;}
.y8d_c01018{bottom:642.329244px;}
.y8c_c01018{bottom:661.792864px;}
.y8b_c01018{bottom:666.593016px;}
.y8a_c01018{bottom:669.241538px;}
.y89_c01018{bottom:670.801203px;}
.y88_c01018{bottom:673.966035px;}
.y87_c01018{bottom:676.094915px;}
.y86_c01018{bottom:689.307387px;}
.y85_c01018{bottom:690.804978px;}
.y84_c01018{bottom:695.312744px;}
.y83_c01018{bottom:698.237250px;}
.y82_c01018{bottom:701.251772px;}
.y81_c01018{bottom:703.238088px;}
.y80_c01018{bottom:705.712667px;}
.y7f_c01018{bottom:708.637173px;}
.y7e_c01018{bottom:710.094192px;}
.y7d_c01018{bottom:712.547637px;}
.y7c_c01018{bottom:721.807608px;}
.y7b_c01018{bottom:724.288020px;}
.y7a_c01018{bottom:728.430504px;}
.y79_c01018{bottom:732.449754px;}
.y78_c01018{bottom:739.095420px;}
.y77_c01018{bottom:743.106390px;}
.y76_c01018{bottom:747.651903px;}
.y75_c01018{bottom:751.148961px;}
.y74_c01018{bottom:757.700708px;}
.y73_c01018{bottom:759.579963px;}
.y72_c01018{bottom:763.835860px;}
.y71_c01018{bottom:769.507200px;}
.y70_c01018{bottom:770.528212px;}
.y6f_c01018{bottom:774.289365px;}
.y6e_c01018{bottom:777.088746px;}
.y6d_c01018{bottom:780.445809px;}
.y6c_c01018{bottom:781.806407px;}
.y6b_c01018{bottom:784.638858px;}
.y6a_c01018{bottom:792.580782px;}
.y69_c01018{bottom:796.087500px;}
.y68_c01018{bottom:799.133436px;}
.y67_c01018{bottom:800.701254px;}
.y66_c01018{bottom:802.180545px;}
.y65_c01018{bottom:806.246715px;}
.y64_c01018{bottom:811.319595px;}
.y63_c01018{bottom:814.330065px;}
.y62_c01018{bottom:815.342433px;}
.y61_c01018{bottom:820.824000px;}
.y60_c01018{bottom:828.230361px;}
.y5f_c01018{bottom:829.614975px;}
.y5e_c01018{bottom:834.293418px;}
.y5d_c01018{bottom:835.678536px;}
.y5c_c01018{bottom:837.040533px;}
.y5b_c01018{bottom:842.172639px;}
.y5a_c01018{bottom:843.960894px;}
.y59_c01018{bottom:844.913580px;}
.y58_c01018{bottom:849.074667px;}
.y57_c01018{bottom:851.808552px;}
.y56_c01018{bottom:854.574000px;}
.y55_c01018{bottom:868.190484px;}
.y54_c01018{bottom:870.618339px;}
.y53_c01018{bottom:871.604262px;}
.y52_c01018{bottom:874.507298px;}
.y51_c01018{bottom:878.403239px;}
.y50_c01018{bottom:883.231708px;}
.y4f_c01018{bottom:886.155561px;}
.y4e_c01018{bottom:889.011936px;}
.y4d_c01018{bottom:890.426775px;}
.y4c_c01018{bottom:892.339551px;}
.y4b_c01018{bottom:905.054920px;}
.y4a_c01018{bottom:910.045184px;}
.y49_c01018{bottom:910.981037px;}
.y48_c01018{bottom:915.021465px;}
.y47_c01018{bottom:917.704808px;}
.y46_c01018{bottom:919.058586px;}
.y45_c01018{bottom:923.988807px;}
.y44_c01018{bottom:924.961075px;}
.y43_c01018{bottom:926.655449px;}
.y42_c01018{bottom:928.527183px;}
.y41_c01018{bottom:935.666699px;}
.y40_c01018{bottom:939.893610px;}
.y3f_c01018{bottom:941.275290px;}
.y3e_c01018{bottom:942.747147px;}
.y3d_c01018{bottom:949.416683px;}
.y3c_c01018{bottom:954.109094px;}
.y3b_c01018{bottom:955.045209px;}
.y3a_c01018{bottom:958.836450px;}
.y39_c01018{bottom:960.243210px;}
.y38_c01018{bottom:961.177194px;}
.y37_c01018{bottom:962.560418px;}
.y36_c01018{bottom:970.782501px;}
.y35_c01018{bottom:972.175641px;}
.y34_c01018{bottom:975.697457px;}
.y33_c01018{bottom:977.635651px;}
.y32_c01018{bottom:980.063507px;}
.y31_c01018{bottom:984.840053px;}
.y30_c01018{bottom:986.828951px;}
.y2f_c01018{bottom:988.286334px;}
.y2e_c01018{bottom:990.153626px;}
.y2d_c01018{bottom:991.128846px;}
.y2c_c01018{bottom:994.510488px;}
.y2b_c01018{bottom:997.930366px;}
.y2a_c01018{bottom:1006.392951px;}
.y29_c01018{bottom:1007.848130px;}
.y28_c01018{bottom:1009.309703px;}
.y27_c01018{bottom:1014.199872px;}
.y26_c01018{bottom:1017.117330px;}
.y25_c01018{bottom:1020.995733px;}
.y24_c01018{bottom:1025.287939px;}
.y23_c01018{bottom:1026.747602px;}
.y22_c01018{bottom:1029.215870px;}
.y21_c01018{bottom:1033.041026px;}
.y20_c01018{bottom:1044.086339px;}
.y1f_c01018{bottom:1047.379286px;}
.y1e_c01018{bottom:1048.958874px;}
.y1d_c01018{bottom:1054.359948px;}
.y1c_c01018{bottom:1057.610339px;}
.y1b_c01018{bottom:1059.266661px;}
.y1a_c01018{bottom:1060.854335px;}
.y19_c01018{bottom:1064.152427px;}
.y18_c01018{bottom:1066.798500px;}
.y17_c01018{bottom:1084.732906px;}
.y16_c01018{bottom:1086.245879px;}
.y15_c01018{bottom:1087.202772px;}
.y14_c01018{bottom:1090.634580px;}
.y13_c01018{bottom:1092.524864px;}
.y12_c01018{bottom:1094.482701px;}
.y11_c01018{bottom:1096.905722px;}
.y10_c01018{bottom:1098.803835px;}
.yf_c01018{bottom:1100.263901px;}
.ye_c01018{bottom:1104.070455px;}
.yd_c01018{bottom:1111.221607px;}
.yc_c01018{bottom:1115.673300px;}
.yb_c01018{bottom:1117.224045px;}
.ya_c01018{bottom:1122.696945px;}
.y9_c01018{bottom:1125.193365px;}
.y8_c01018{bottom:1126.670873px;}
.y7_c01018{bottom:1130.581283px;}
.y6_c01018{bottom:1133.609602px;}
.y5_c01018{bottom:1138.056233px;}
.y4_c01018{bottom:1139.962500px;}
.y3_c01018{bottom:1202.606884px;}
.y2_c01018{bottom:1204.348173px;}
.y1_c01018{bottom:1205.565000px;}
.he_c01018{height:36.012688px;}
.h10_c01018{height:65.981682px;}
.ha_c01018{height:66.003861px;}
.h19_c01018{height:71.992260px;}
.h3_c01018{height:72.000936px;}
.h9_c01018{height:72.004212px;}
.h16_c01018{height:72.008244px;}
.h5_c01018{height:72.014471px;}
.h12_c01018{height:77.970862px;}
.h13_c01018{height:77.979912px;}
.hc_c01018{height:78.004563px;}
.h17_c01018{height:78.008930px;}
.h4_c01018{height:78.015676px;}
.h11_c01018{height:83.968620px;}
.h1b_c01018{height:83.975300px;}
.hf_c01018{height:83.976687px;}
.h8_c01018{height:83.990129px;}
.h18_c01018{height:83.990970px;}
.hb_c01018{height:84.004914px;}
.h7_c01018{height:84.016882px;}
.hd_c01018{height:84.029605px;}
.h1a_c01018{height:89.973536px;}
.h15_c01018{height:90.010304px;}
.h2_c01018{height:90.036443px;}
.h6_c01018{height:102.020500px;}
.h14_c01018{height:113.944640px;}
.h0_c01018{height:1246.320000px;}
.h1_c01018{height:1246.500000px;}
.w0_c01018{width:896.100000px;}
.w1_c01018{width:896.250000px;}
.x0_c01018{left:0.000000px;}
.xb0_c01018{left:144.254340px;}
.xa5_c01018{left:148.823246px;}
.x9f_c01018{left:151.350107px;}
.x9a_c01018{left:152.805000px;}
.x93_c01018{left:155.879309px;}
.x84_c01018{left:159.602193px;}
.x7d_c01018{left:161.994000px;}
.x66_c01018{left:167.884030px;}
.x5f_c01018{left:169.330000px;}
.x52_c01018{left:171.952500px;}
.x3f_c01018{left:174.322398px;}
.xb1_c01018{left:175.936634px;}
.x2b_c01018{left:177.417124px;}
.x21_c01018{left:179.275960px;}
.xe_c01018{left:183.199296px;}
.x4_c01018{left:185.250000px;}
.x9b_c01018{left:195.505428px;}
.x86_c01018{left:204.902915px;}
.x37_c01018{left:209.351697px;}
.x49_c01018{left:217.554315px;}
.x40_c01018{left:219.924629px;}
.x6c_c01018{left:221.540659px;}
.xa9_c01018{left:223.707000px;}
.x5_c01018{left:227.569139px;}
.x94_c01018{left:230.025000px;}
.x38_c01018{left:231.057870px;}
.x8e_c01018{left:233.019000px;}
.x60_c01018{left:235.115697px;}
.x53_c01018{left:237.730656px;}
.x77_c01018{left:239.744168px;}
.xb9_c01018{left:241.516317px;}
.x67_c01018{left:243.831007px;}
.xaa_c01018{left:246.508889px;}
.x4a_c01018{left:249.676533px;}
.x6d_c01018{left:253.900786px;}
.x2c_c01018{left:255.041904px;}
.x89_c01018{left:256.143186px;}
.x88_c01018{left:259.226170px;}
.x41_c01018{left:261.206492px;}
.x39_c01018{left:263.719740px;}
.x22_c01018{left:266.112799px;}
.xf_c01018{left:269.638190px;}
.x73_c01018{left:274.238232px;}
.xa0_c01018{left:280.250877px;}
.x42_c01018{left:284.887557px;}
.x18_c01018{left:289.939500px;}
.x7e_c01018{left:293.330033px;}
.x10_c01018{left:302.784996px;}
.x8a_c01018{left:311.722828px;}
.x59_c01018{left:312.758827px;}
.x4b_c01018{left:314.526510px;}
.x6e_c01018{left:318.815776px;}
.x23_c01018{left:322.131409px;}
.x6_c01018{left:326.284324px;}
.x95_c01018{left:328.127901px;}
.xb3_c01018{left:330.485856px;}
.x2d_c01018{left:331.825878px;}
.xba_c01018{left:338.993025px;}
.xab_c01018{left:340.372451px;}
.x68_c01018{left:342.547692px;}
.x19_c01018{left:343.886999px;}
.x11_c01018{left:345.889808px;}
.x3a_c01018{left:351.794475px;}
.x2e_c01018{left:353.974651px;}
.x24_c01018{left:355.259342px;}
.xb4_c01018{left:362.470902px;}
.xb2_c01018{left:363.571122px;}
.xac_c01018{left:366.048690px;}
.xa6_c01018{left:370.450461px;}
.x3b_c01018{left:373.544105px;}
.x5a_c01018{left:378.138383px;}
.x4c_c01018{left:380.905325px;}
.x74_c01018{left:384.409797px;}
.x7_c01018{left:393.513029px;}
.x2f_c01018{left:396.362595px;}
.x8b_c01018{left:398.973871px;}
.x12_c01018{left:400.914228px;}
.x43_c01018{left:405.003408px;}
.x61_c01018{left:409.747995px;}
.x1a_c01018{left:411.127690px;}
.x9c_c01018{left:414.530238px;}
.xb5_c01018{left:416.777802px;}
.x6f_c01018{left:417.847204px;}
.xa1_c01018{left:422.445209px;}
.x54_c01018{left:424.392807px;}
.x1_c01018{left:427.408500px;}
.x30_c01018{left:429.444073px;}
.x8c_c01018{left:431.637165px;}
.x44_c01018{left:437.993834px;}
.x8f_c01018{left:441.634932px;}
.x1b_c01018{left:443.496789px;}
.x13_c01018{left:445.378246px;}
.x2_c01018{left:450.344541px;}
.x25_c01018{left:452.690151px;}
.x7f_c01018{left:458.091606px;}
.x55_c01018{left:466.927729px;}
.x75_c01018{left:472.017589px;}
.x31_c01018{left:474.586922px;}
.x1c_c01018{left:477.265486px;}
.x8_c01018{left:480.324131px;}
.x3_c01018{left:483.166186px;}
.x70_c01018{left:484.782310px;}
.x14_c01018{left:488.309232px;}
.x4d_c01018{left:490.524950px;}
.xb6_c01018{left:494.295486px;}
.x62_c01018{left:497.137605px;}
.x45_c01018{left:503.358507px;}
.xa2_c01018{left:510.214292px;}
.x9_c01018{left:513.124797px;}
.x96_c01018{left:514.636137px;}
.x8d_c01018{left:519.643395px;}
.x63_c01018{left:520.844121px;}
.x80_c01018{left:523.375257px;}
.x90_c01018{left:528.820212px;}
.x85_c01018{left:535.163658px;}
.x97_c01018{left:537.674967px;}
.x26_c01018{left:540.735075px;}
.x1d_c01018{left:543.533652px;}
.x71_c01018{left:549.697300px;}
.x9d_c01018{left:554.113512px;}
.xad_c01018{left:564.129160px;}
.x15_c01018{left:566.228748px;}
.xa_c01018{left:568.545321px;}
.x76_c01018{left:571.926894px;}
.x69_c01018{left:573.982026px;}
.x5b_c01018{left:576.614708px;}
.xa3_c01018{left:577.731006px;}
.x4e_c01018{left:578.958058px;}
.x78_c01018{left:581.565582px;}
.x32_c01018{left:583.025435px;}
.x16_c01018{left:587.938463px;}
.x56_c01018{left:588.998537px;}
.xa7_c01018{left:597.768950px;}
.x46_c01018{left:601.781039px;}
.x98_c01018{left:603.815421px;}
.x27_c01018{left:606.983520px;}
.x5c_c01018{left:608.741049px;}
.x81_c01018{left:612.248295px;}
.x79_c01018{left:613.468776px;}
.x17_c01018{left:622.293128px;}
.x47_c01018{left:624.597176px;}
.x33_c01018{left:638.128240px;}
.x5d_c01018{left:642.789966px;}
.x4f_c01018{left:644.851212px;}
.x7a_c01018{left:646.516617px;}
.x87_c01018{left:648.377995px;}
.x72_c01018{left:649.779246px;}
.x64_c01018{left:652.587911px;}
.x1e_c01018{left:653.649426px;}
.x6a_c01018{left:661.269651px;}
.xae_c01018{left:663.823677px;}
.x50_c01018{left:667.248810px;}
.x3c_c01018{left:671.639763px;}
.x34_c01018{left:682.145494px;}
.x91_c01018{left:683.238756px;}
.x1f_c01018{left:685.853689px;}
.xb_c01018{left:690.043701px;}
.x7b_c01018{left:692.587005px;}
.x82_c01018{left:700.761693px;}
.x3d_c01018{left:703.729059px;}
.xb7_c01018{left:705.490314px;}
.x5e_c01018{left:708.939750px;}
.x28_c01018{left:717.983557px;}
.x51_c01018{left:722.351616px;}
.xc_c01018{left:724.470240px;}
.x9e_c01018{left:735.225063px;}
.xb8_c01018{left:738.698946px;}
.x48_c01018{left:746.182145px;}
.x29_c01018{left:751.150451px;}
.x20_c01018{left:752.989486px;}
.xa4_c01018{left:757.996635px;}
.x35_c01018{left:762.093537px;}
.x57_c01018{left:765.620737px;}
.x7c_c01018{left:768.352212px;}
.x99_c01018{left:769.374639px;}
.x92_c01018{left:782.907519px;}
.x2a_c01018{left:784.186974px;}
.xaf_c01018{left:786.215397px;}
.x83_c01018{left:789.257109px;}
.x36_c01018{left:793.712112px;}
.x65_c01018{left:795.089382px;}
.x58_c01018{left:798.554770px;}
.x3e_c01018{left:801.911120px;}
.x6b_c01018{left:805.101675px;}
.xa8_c01018{left:806.149527px;}
.xd_c01018{left:823.297814px;}
@media print{
.v0_c01018{vertical-align:0.000000pt;}
.ls0_c01018{letter-spacing:0.000000pt;}
.ws0_c01018{word-spacing:0.000000pt;}
.fsc_c01018{font-size:32.011278pt;}
.fse_c01018{font-size:58.650384pt;}
.fs8_c01018{font-size:58.670099pt;}
.fs17_c01018{font-size:63.993120pt;}
.fs1_c01018{font-size:64.000832pt;}
.fs7_c01018{font-size:64.003744pt;}
.fs14_c01018{font-size:64.007328pt;}
.fs3_c01018{font-size:64.012863pt;}
.fs10_c01018{font-size:69.307432pt;}
.fs11_c01018{font-size:69.315478pt;}
.fsa_c01018{font-size:69.337389pt;}
.fs15_c01018{font-size:69.341272pt;}
.fs2_c01018{font-size:69.347268pt;}
.fsf_c01018{font-size:74.638773pt;}
.fs19_c01018{font-size:74.644711pt;}
.fsd_c01018{font-size:74.645944pt;}
.fs6_c01018{font-size:74.657893pt;}
.fs16_c01018{font-size:74.658640pt;}
.fs9_c01018{font-size:74.671035pt;}
.fs5_c01018{font-size:74.681673pt;}
.fsb_c01018{font-size:74.692982pt;}
.fs18_c01018{font-size:79.976477pt;}
.fs13_c01018{font-size:80.009159pt;}
.fs0_c01018{font-size:80.032393pt;}
.fs4_c01018{font-size:90.684889pt;}
.fs12_c01018{font-size:101.284124pt;}
.y0_c01018{bottom:0.000000pt;}
.yfa_c01018{bottom:82.208299pt;}
.yf9_c01018{bottom:88.303712pt;}
.yf7_c01018{bottom:93.517635pt;}
.yf8_c01018{bottom:94.417664pt;}
.yf6_c01018{bottom:96.066445pt;}
.yf5_c01018{bottom:105.459136pt;}
.yf4_c01018{bottom:112.275955pt;}
.yf3_c01018{bottom:113.969237pt;}
.yf2_c01018{bottom:118.225549pt;}
.yf1_c01018{bottom:122.393683pt;}
.yf0_c01018{bottom:124.848581pt;}
.yef_c01018{bottom:131.474365pt;}
.yee_c01018{bottom:133.193333pt;}
.yed_c01018{bottom:154.399255pt;}
.yea_c01018{bottom:156.293088pt;}
.ye9_c01018{bottom:164.586208pt;}
.yec_c01018{bottom:165.445837pt;}
.yeb_c01018{bottom:167.310473pt;}
.ye8_c01018{bottom:171.341392pt;}
.ye7_c01018{bottom:174.378453pt;}
.ye6_c01018{bottom:178.881808pt;}
.ye5_c01018{bottom:184.763093pt;}
.ye4_c01018{bottom:186.502885pt;}
.ye1_c01018{bottom:188.780384pt;}
.ye3_c01018{bottom:192.862971pt;}
.ye2_c01018{bottom:194.408000pt;}
.ye0_c01018{bottom:194.639332pt;}
.ydf_c01018{bottom:196.444428pt;}
.yde_c01018{bottom:202.510659pt;}
.ydd_c01018{bottom:211.127584pt;}
.ydc_c01018{bottom:217.489656pt;}
.ydb_c01018{bottom:221.342149pt;}
.yd7_c01018{bottom:223.570109pt;}
.yda_c01018{bottom:226.358967pt;}
.yd6_c01018{bottom:227.162351pt;}
.yd9_c01018{bottom:230.676415pt;}
.yd8_c01018{bottom:232.093731pt;}
.yd5_c01018{bottom:234.808116pt;}
.yd4_c01018{bottom:239.017569pt;}
.yd3_c01018{bottom:241.052119pt;}
.yd2_c01018{bottom:244.489037pt;}
.yd1_c01018{bottom:253.353249pt;}
.ycf_c01018{bottom:258.117153pt;}
.yd0_c01018{bottom:261.389052pt;}
.yce_c01018{bottom:263.307707pt;}
.ycd_c01018{bottom:265.278247pt;}
.ycc_c01018{bottom:268.602347pt;}
.ycb_c01018{bottom:276.683320pt;}
.yca_c01018{bottom:286.194033pt;}
.yc9_c01018{bottom:287.538667pt;}
.yc8_c01018{bottom:317.641573pt;}
.yc7_c01018{bottom:319.733333pt;}
.yc6_c01018{bottom:321.592089pt;}
.yc5_c01018{bottom:325.708873pt;}
.yc4_c01018{bottom:330.292151pt;}
.yc3_c01018{bottom:333.767801pt;}
.yc2_c01018{bottom:334.978481pt;}
.yc1_c01018{bottom:338.376016pt;}
.yc0_c01018{bottom:344.779404pt;}
.ybf_c01018{bottom:348.710771pt;}
.ybe_c01018{bottom:349.934667pt;}
.ybd_c01018{bottom:377.973096pt;}
.ybc_c01018{bottom:380.808949pt;}
.ybb_c01018{bottom:382.837143pt;}
.yba_c01018{bottom:385.376481pt;}
.yb9_c01018{bottom:390.436485pt;}
.yb8_c01018{bottom:398.276037pt;}
.yb7_c01018{bottom:402.702277pt;}
.yb6_c01018{bottom:404.357177pt;}
.yb5_c01018{bottom:412.082805pt;}
.yb4_c01018{bottom:413.293333pt;}
.yb3_c01018{bottom:432.173173pt;}
.yb2_c01018{bottom:435.304873pt;}
.yb1_c01018{bottom:436.467964pt;}
.yb0_c01018{bottom:439.572796pt;}
.yaf_c01018{bottom:441.550743pt;}
.yae_c01018{bottom:445.006075pt;}
.yad_c01018{bottom:450.935051pt;}
.yac_c01018{bottom:453.884140pt;}
.yab_c01018{bottom:456.012835pt;}
.yaa_c01018{bottom:461.973843pt;}
.ya9_c01018{bottom:467.837704pt;}
.ya8_c01018{bottom:468.957284pt;}
.ya7_c01018{bottom:474.774675pt;}
.ya6_c01018{bottom:475.941739pt;}
.ya5_c01018{bottom:492.345181pt;}
.ya4_c01018{bottom:507.339779pt;}
.ya3_c01018{bottom:508.812000pt;}
.y9f_c01018{bottom:513.642816pt;}
.y9e_c01018{bottom:516.677189pt;}
.y9d_c01018{bottom:517.737365pt;}
.ya2_c01018{bottom:518.685921pt;}
.ya1_c01018{bottom:521.006519pt;}
.y9c_c01018{bottom:521.832747pt;}
.y9b_c01018{bottom:525.944768pt;}
.y9a_c01018{bottom:527.430443pt;}
.y99_c01018{bottom:528.965344pt;}
.y98_c01018{bottom:532.516528pt;}
.y97_c01018{bottom:536.588613pt;}
.y96_c01018{bottom:538.085520pt;}
.ya0_c01018{bottom:540.052692pt;}
.y95_c01018{bottom:542.665333pt;}
.y94_c01018{bottom:547.442729pt;}
.y93_c01018{bottom:550.813420pt;}
.y92_c01018{bottom:552.863256pt;}
.y91_c01018{bottom:554.333363pt;}
.y90_c01018{bottom:555.752615pt;}
.y8f_c01018{bottom:563.601329pt;}
.y8e_c01018{bottom:569.906775pt;}
.y8d_c01018{bottom:570.959328pt;}
.y8c_c01018{bottom:588.260324pt;}
.y8b_c01018{bottom:592.527125pt;}
.y8a_c01018{bottom:594.881367pt;}
.y89_c01018{bottom:596.267736pt;}
.y88_c01018{bottom:599.080920pt;}
.y87_c01018{bottom:600.973257pt;}
.y86_c01018{bottom:612.717677pt;}
.y85_c01018{bottom:614.048869pt;}
.y84_c01018{bottom:618.055772pt;}
.y83_c01018{bottom:620.655333pt;}
.y82_c01018{bottom:623.334908pt;}
.y81_c01018{bottom:625.100523pt;}
.y80_c01018{bottom:627.300148pt;}
.y7f_c01018{bottom:629.899709pt;}
.y7e_c01018{bottom:631.194837pt;}
.y7d_c01018{bottom:633.375677pt;}
.y7c_c01018{bottom:641.606763pt;}
.y7b_c01018{bottom:643.811573pt;}
.y7a_c01018{bottom:647.493781pt;}
.y79_c01018{bottom:651.066448pt;}
.y78_c01018{bottom:656.973707pt;}
.y77_c01018{bottom:660.539013pt;}
.y76_c01018{bottom:664.579469pt;}
.y75_c01018{bottom:667.687965pt;}
.y74_c01018{bottom:673.511740pt;}
.y73_c01018{bottom:675.182189pt;}
.y72_c01018{bottom:678.965209pt;}
.y71_c01018{bottom:684.006400pt;}
.y70_c01018{bottom:684.913967pt;}
.y6f_c01018{bottom:688.257213pt;}
.y6e_c01018{bottom:690.745552pt;}
.y6d_c01018{bottom:693.729608pt;}
.y6c_c01018{bottom:694.939028pt;}
.y6b_c01018{bottom:697.456763pt;}
.y6a_c01018{bottom:704.516251pt;}
.y69_c01018{bottom:707.633333pt;}
.y68_c01018{bottom:710.340832pt;}
.y67_c01018{bottom:711.734448pt;}
.y66_c01018{bottom:713.049373pt;}
.y65_c01018{bottom:716.663747pt;}
.y64_c01018{bottom:721.172973pt;}
.y63_c01018{bottom:723.848947pt;}
.y62_c01018{bottom:724.748829pt;}
.y61_c01018{bottom:729.621333pt;}
.y60_c01018{bottom:736.204765pt;}
.y5f_c01018{bottom:737.435533pt;}
.y5e_c01018{bottom:741.594149pt;}
.y5d_c01018{bottom:742.825365pt;}
.y5c_c01018{bottom:744.036029pt;}
.y5b_c01018{bottom:748.597901pt;}
.y5a_c01018{bottom:750.187461pt;}
.y59_c01018{bottom:751.034293pt;}
.y58_c01018{bottom:754.733037pt;}
.y57_c01018{bottom:757.163157pt;}
.y56_c01018{bottom:759.621333pt;}
.y55_c01018{bottom:771.724875pt;}
.y54_c01018{bottom:773.882968pt;}
.y53_c01018{bottom:774.759344pt;}
.y52_c01018{bottom:777.339820pt;}
.y51_c01018{bottom:780.802879pt;}
.y50_c01018{bottom:785.094852pt;}
.y4f_c01018{bottom:787.693832pt;}
.y4e_c01018{bottom:790.232832pt;}
.y4d_c01018{bottom:791.490467pt;}
.y4c_c01018{bottom:793.190712pt;}
.y4b_c01018{bottom:804.493263pt;}
.y4a_c01018{bottom:808.929052pt;}
.y49_c01018{bottom:809.760921pt;}
.y48_c01018{bottom:813.352413pt;}
.y47_c01018{bottom:815.737607pt;}
.y46_c01018{bottom:816.940965pt;}
.y45_c01018{bottom:821.323384pt;}
.y44_c01018{bottom:822.187623pt;}
.y43_c01018{bottom:823.693732pt;}
.y42_c01018{bottom:825.357496pt;}
.y41_c01018{bottom:831.703732pt;}
.y40_c01018{bottom:835.460987pt;}
.y3f_c01018{bottom:836.689147pt;}
.y3e_c01018{bottom:837.997464pt;}
.y3d_c01018{bottom:843.925940pt;}
.y3c_c01018{bottom:848.096972pt;}
.y3b_c01018{bottom:848.929075pt;}
.y3a_c01018{bottom:852.299067pt;}
.y39_c01018{bottom:853.549520pt;}
.y38_c01018{bottom:854.379728pt;}
.y37_c01018{bottom:855.609260pt;}
.y36_c01018{bottom:862.917779pt;}
.y35_c01018{bottom:864.156125pt;}
.y34_c01018{bottom:867.286628pt;}
.y33_c01018{bottom:869.009468pt;}
.y32_c01018{bottom:871.167561pt;}
.y31_c01018{bottom:875.413380pt;}
.y30_c01018{bottom:877.181289pt;}
.y2f_c01018{bottom:878.476741pt;}
.y2e_c01018{bottom:880.136556pt;}
.y2d_c01018{bottom:881.003419pt;}
.y2c_c01018{bottom:884.009323pt;}
.y2b_c01018{bottom:887.049215pt;}
.y2a_c01018{bottom:894.571512pt;}
.y29_c01018{bottom:895.865004pt;}
.y28_c01018{bottom:897.164180pt;}
.y27_c01018{bottom:901.510997pt;}
.y26_c01018{bottom:904.104293pt;}
.y25_c01018{bottom:907.551763pt;}
.y24_c01018{bottom:911.367057pt;}
.y23_c01018{bottom:912.664535pt;}
.y22_c01018{bottom:914.858551pt;}
.y21_c01018{bottom:918.258689pt;}
.y20_c01018{bottom:928.076745pt;}
.y1f_c01018{bottom:931.003809pt;}
.y1e_c01018{bottom:932.407888pt;}
.y1d_c01018{bottom:937.208843pt;}
.y1c_c01018{bottom:940.098079pt;}
.y1b_c01018{bottom:941.570365pt;}
.y1a_c01018{bottom:942.981631pt;}
.y19_c01018{bottom:945.913268pt;}
.y18_c01018{bottom:948.265333pt;}
.y17_c01018{bottom:964.207028pt;}
.y16_c01018{bottom:965.551892pt;}
.y15_c01018{bottom:966.402464pt;}
.y14_c01018{bottom:969.452960pt;}
.y13_c01018{bottom:971.133212pt;}
.y12_c01018{bottom:972.873512pt;}
.y11_c01018{bottom:975.027308pt;}
.y10_c01018{bottom:976.714520pt;}
.yf_c01018{bottom:978.012356pt;}
.ye_c01018{bottom:981.395960pt;}
.yd_c01018{bottom:987.752540pt;}
.yc_c01018{bottom:991.709600pt;}
.yb_c01018{bottom:993.088040pt;}
.ya_c01018{bottom:997.952840pt;}
.y9_c01018{bottom:1000.171880pt;}
.y8_c01018{bottom:1001.485220pt;}
.y7_c01018{bottom:1004.961140pt;}
.y6_c01018{bottom:1007.652980pt;}
.y5_c01018{bottom:1011.605540pt;}
.y4_c01018{bottom:1013.300000pt;}
.y3_c01018{bottom:1068.983897pt;}
.y2_c01018{bottom:1070.531709pt;}
.y1_c01018{bottom:1071.613333pt;}
.he_c01018{height:32.011278pt;}
.h10_c01018{height:58.650384pt;}
.ha_c01018{height:58.670099pt;}
.h19_c01018{height:63.993120pt;}
.h3_c01018{height:64.000832pt;}
.h9_c01018{height:64.003744pt;}
.h16_c01018{height:64.007328pt;}
.h5_c01018{height:64.012863pt;}
.h12_c01018{height:69.307432pt;}
.h13_c01018{height:69.315478pt;}
.hc_c01018{height:69.337389pt;}
.h17_c01018{height:69.341272pt;}
.h4_c01018{height:69.347268pt;}
.h11_c01018{height:74.638773pt;}
.h1b_c01018{height:74.644711pt;}
.hf_c01018{height:74.645944pt;}
.h8_c01018{height:74.657893pt;}
.h18_c01018{height:74.658640pt;}
.hb_c01018{height:74.671035pt;}
.h7_c01018{height:74.681673pt;}
.hd_c01018{height:74.692982pt;}
.h1a_c01018{height:79.976477pt;}
.h15_c01018{height:80.009159pt;}
.h2_c01018{height:80.032393pt;}
.h6_c01018{height:90.684889pt;}
.h14_c01018{height:101.284124pt;}
.h0_c01018{height:1107.840000pt;}
.h1_c01018{height:1108.000000pt;}
.w0_c01018{width:796.533333pt;}
.w1_c01018{width:796.666667pt;}
.x0_c01018{left:0.000000pt;}
.xb0_c01018{left:128.226080pt;}
.xa5_c01018{left:132.287329pt;}
.x9f_c01018{left:134.533428pt;}
.x9a_c01018{left:135.826667pt;}
.x93_c01018{left:138.559385pt;}
.x84_c01018{left:141.868616pt;}
.x7d_c01018{left:143.994667pt;}
.x66_c01018{left:149.230249pt;}
.x5f_c01018{left:150.515556pt;}
.x52_c01018{left:152.846667pt;}
.x3f_c01018{left:154.953243pt;}
.xb1_c01018{left:156.388119pt;}
.x2b_c01018{left:157.704111pt;}
.x21_c01018{left:159.356409pt;}
.xe_c01018{left:162.843819pt;}
.x4_c01018{left:164.666667pt;}
.x9b_c01018{left:173.782603pt;}
.x86_c01018{left:182.135924pt;}
.x37_c01018{left:186.090397pt;}
.x49_c01018{left:193.381613pt;}
.x40_c01018{left:195.488559pt;}
.x6c_c01018{left:196.925031pt;}
.xa9_c01018{left:198.850667pt;}
.x5_c01018{left:202.283679pt;}
.x94_c01018{left:204.466667pt;}
.x38_c01018{left:205.384773pt;}
.x8e_c01018{left:207.128000pt;}
.x60_c01018{left:208.991731pt;}
.x53_c01018{left:211.316139pt;}
.x77_c01018{left:213.105927pt;}
.xb9_c01018{left:214.681171pt;}
.x67_c01018{left:216.738673pt;}
.xaa_c01018{left:219.119012pt;}
.x4a_c01018{left:221.934696pt;}
.x6d_c01018{left:225.689588pt;}
.x2c_c01018{left:226.703915pt;}
.x89_c01018{left:227.682832pt;}
.x88_c01018{left:230.423263pt;}
.x41_c01018{left:232.183548pt;}
.x39_c01018{left:234.417547pt;}
.x22_c01018{left:236.544711pt;}
.xf_c01018{left:239.678391pt;}
.x73_c01018{left:243.767317pt;}
.xa0_c01018{left:249.111891pt;}
.x42_c01018{left:253.233384pt;}
.x18_c01018{left:257.724000pt;}
.x7e_c01018{left:260.737807pt;}
.x10_c01018{left:269.142219pt;}
.x8a_c01018{left:277.086959pt;}
.x59_c01018{left:278.007847pt;}
.x4b_c01018{left:279.579120pt;}
.x6e_c01018{left:283.391801pt;}
.x23_c01018{left:286.339031pt;}
.x6_c01018{left:290.030511pt;}
.x95_c01018{left:291.669245pt;}
.xb3_c01018{left:293.765205pt;}
.x2d_c01018{left:294.956336pt;}
.xba_c01018{left:301.327133pt;}
.xab_c01018{left:302.553289pt;}
.x68_c01018{left:304.486837pt;}
.x19_c01018{left:305.677332pt;}
.x11_c01018{left:307.457607pt;}
.x3a_c01018{left:312.706200pt;}
.x2e_c01018{left:314.644135pt;}
.x24_c01018{left:315.786081pt;}
.xb4_c01018{left:322.196357pt;}
.xb2_c01018{left:323.174331pt;}
.xac_c01018{left:325.376613pt;}
.xa6_c01018{left:329.289299pt;}
.x3b_c01018{left:332.039204pt;}
.x5a_c01018{left:336.123007pt;}
.x4c_c01018{left:338.582511pt;}
.x74_c01018{left:341.697597pt;}
.x7_c01018{left:349.789359pt;}
.x2f_c01018{left:352.322307pt;}
.x8b_c01018{left:354.643441pt;}
.x12_c01018{left:356.368203pt;}
.x43_c01018{left:360.003029pt;}
.x61_c01018{left:364.220440pt;}
.x1a_c01018{left:365.446836pt;}
.x9c_c01018{left:368.471323pt;}
.xb5_c01018{left:370.469157pt;}
.x6f_c01018{left:371.419737pt;}
.xa1_c01018{left:375.506852pt;}
.x54_c01018{left:377.238051pt;}
.x1_c01018{left:379.918667pt;}
.x30_c01018{left:381.728065pt;}
.x8c_c01018{left:383.677480pt;}
.x44_c01018{left:389.327852pt;}
.x8f_c01018{left:392.564384pt;}
.x1b_c01018{left:394.219368pt;}
.x13_c01018{left:395.891775pt;}
.x2_c01018{left:400.306259pt;}
.x25_c01018{left:402.391245pt;}
.x7f_c01018{left:407.192539pt;}
.x55_c01018{left:415.046871pt;}
.x75_c01018{left:419.571191pt;}
.x31_c01018{left:421.855041pt;}
.x1c_c01018{left:424.235988pt;}
.x8_c01018{left:426.954783pt;}
.x3_c01018{left:429.481055pt;}
.x70_c01018{left:430.917609pt;}
.x14_c01018{left:434.052651pt;}
.x4d_c01018{left:436.022177pt;}
.xb6_c01018{left:439.373765pt;}
.x62_c01018{left:441.900093pt;}
.x45_c01018{left:447.429784pt;}
.xa2_c01018{left:453.523815pt;}
.x9_c01018{left:456.110931pt;}
.x96_c01018{left:457.454344pt;}
.x8d_c01018{left:461.905240pt;}
.x63_c01018{left:462.972552pt;}
.x80_c01018{left:465.222451pt;}
.x90_c01018{left:470.062411pt;}
.x85_c01018{left:475.701029pt;}
.x97_c01018{left:477.933304pt;}
.x26_c01018{left:480.653400pt;}
.x1d_c01018{left:483.141024pt;}
.x71_c01018{left:488.619823pt;}
.x9d_c01018{left:492.545344pt;}
.xad_c01018{left:501.448143pt;}
.x15_c01018{left:503.314443pt;}
.xa_c01018{left:505.373619pt;}
.x76_c01018{left:508.379461pt;}
.x69_c01018{left:510.206245pt;}
.x5b_c01018{left:512.546407pt;}
.xa3_c01018{left:513.538672pt;}
.x4e_c01018{left:514.629385pt;}
.x78_c01018{left:516.947184pt;}
.x32_c01018{left:518.244831pt;}
.x16_c01018{left:522.611967pt;}
.x56_c01018{left:523.554255pt;}
.xa7_c01018{left:531.350177pt;}
.x46_c01018{left:534.916479pt;}
.x98_c01018{left:536.724819pt;}
.x27_c01018{left:539.540907pt;}
.x5c_c01018{left:541.103155pt;}
.x81_c01018{left:544.220707pt;}
.x79_c01018{left:545.305579pt;}
.x17_c01018{left:553.149447pt;}
.x47_c01018{left:555.197489pt;}
.x33_c01018{left:567.225103pt;}
.x5d_c01018{left:571.368859pt;}
.x4f_c01018{left:573.201077pt;}
.x7a_c01018{left:574.681437pt;}
.x87_c01018{left:576.335996pt;}
.x72_c01018{left:577.581552pt;}
.x64_c01018{left:580.078143pt;}
.x1e_c01018{left:581.021712pt;}
.x6a_c01018{left:587.795245pt;}
.xae_c01018{left:590.065491pt;}
.x50_c01018{left:593.110053pt;}
.x3c_c01018{left:597.013123pt;}
.x34_c01018{left:606.351551pt;}
.x91_c01018{left:607.323339pt;}
.x1f_c01018{left:609.647724pt;}
.xb_c01018{left:613.372179pt;}
.x7b_c01018{left:615.632893pt;}
.x82_c01018{left:622.899283pt;}
.x3d_c01018{left:625.536941pt;}
.xb7_c01018{left:627.102501pt;}
.x5e_c01018{left:630.168667pt;}
.x28_c01018{left:638.207607pt;}
.x51_c01018{left:642.090325pt;}
.xc_c01018{left:643.973547pt;}
.x9e_c01018{left:653.533389pt;}
.xb8_c01018{left:656.621285pt;}
.x48_c01018{left:663.273017pt;}
.x29_c01018{left:667.689289pt;}
.x20_c01018{left:669.323988pt;}
.xa4_c01018{left:673.774787pt;}
.x35_c01018{left:677.416477pt;}
.x57_c01018{left:680.551767pt;}
.x7c_c01018{left:682.979744pt;}
.x99_c01018{left:683.888568pt;}
.x92_c01018{left:695.917795pt;}
.x2a_c01018{left:697.055088pt;}
.xaf_c01018{left:698.858131pt;}
.x83_c01018{left:701.561875pt;}
.x36_c01018{left:705.521877pt;}
.x65_c01018{left:706.746117pt;}
.x58_c01018{left:709.826463pt;}
.x3e_c01018{left:712.809884pt;}
.x6b_c01018{left:715.645933pt;}
.xa8_c01018{left:716.577357pt;}
.xd_c01018{left:731.820279pt;}
}





/* 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_c01019 {
    display:none;
  }
  .loading-indicator_c01019.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01019 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_c01019 { 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_c01019" -> "#page-container .classname_c01019")
 */
.pf_c01019 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01019 { /* 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_c01019.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01019 { /* 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_c01019 { /* 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_c01019 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01019 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01019 {overflow:visible;}
  }
}
.c_c01019 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01019 { /* 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_c01019:after { /* webkit #35443 */
  content: '';
}
.t_c01019:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01019 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 */
}
.__c01019 { /* 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_c01019 { /* info for Javascript */
  display:none;
}
.l_c01019 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01019 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01019 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01019: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_c01019 {
    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_c01019.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01019.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_c01019 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01019{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01019;src:url('chunks/assets/font_c605e72f209fc835e906f064.woff2')format("woff");}.ff1_c01019{font-family:ff1_c01019;line-height:1.000000;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;}
.m16_c01019{transform:matrix(0.015910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.015910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.015910,0.000000,0.000000,0.250000,0,0);}
.m1_c01019{transform:matrix(0.072035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072035,0.000000,0.000000,0.250000,0,0);}
.mb_c01019{transform:matrix(0.087465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087465,0.000000,0.000000,0.250000,0,0);}
.ma_c01019{transform:matrix(0.100625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100625,0.000000,0.000000,0.250000,0,0);}
.m14_c01019{transform:matrix(0.107385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107385,0.000000,0.000000,0.250000,0,0);}
.m2c_c01019{transform:matrix(0.118700,-0.003086,0.006498,0.249916,0,0);-ms-transform:matrix(0.118700,-0.003086,0.006498,0.249916,0,0);-webkit-transform:matrix(0.118700,-0.003086,0.006498,0.249916,0,0);}
.m8_c01019{transform:matrix(0.138295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138295,0.000000,0.000000,0.250000,0,0);}
.m6_c01019{transform:matrix(0.154435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154435,0.000000,0.000000,0.250000,0,0);}
.m4_c01019{transform:matrix(0.159450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159450,0.000000,0.000000,0.250000,0,0);}
.m15_c01019{transform:matrix(0.161945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161945,0.000000,0.000000,0.250000,0,0);}
.m13_c01019{transform:matrix(0.163215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163215,0.000000,0.000000,0.250000,0,0);}
.m10_c01019{transform:matrix(0.164320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164320,0.000000,0.000000,0.250000,0,0);}
.m2b_c01019{transform:matrix(0.167024,-0.004343,0.006498,0.249916,0,0);-ms-transform:matrix(0.167024,-0.004343,0.006498,0.249916,0,0);-webkit-transform:matrix(0.167024,-0.004343,0.006498,0.249916,0,0);}
.m11_c01019{transform:matrix(0.167100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167100,0.000000,0.000000,0.250000,0,0);}
.m2a_c01019{transform:matrix(0.167898,-0.004365,0.006498,0.249916,0,0);-ms-transform:matrix(0.167898,-0.004365,0.006498,0.249916,0,0);-webkit-transform:matrix(0.167898,-0.004365,0.006498,0.249916,0,0);}
.md_c01019{transform:matrix(0.176810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176810,0.000000,0.000000,0.250000,0,0);}
.m2e_c01019{transform:matrix(0.176920,-0.004600,0.006498,0.249916,0,0);-ms-transform:matrix(0.176920,-0.004600,0.006498,0.249916,0,0);-webkit-transform:matrix(0.176920,-0.004600,0.006498,0.249916,0,0);}
.me_c01019{transform:matrix(0.184820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184820,0.000000,0.000000,0.250000,0,0);}
.m26_c01019{transform:matrix(0.186022,-0.004837,0.006498,0.249916,0,0);-ms-transform:matrix(0.186022,-0.004837,0.006498,0.249916,0,0);-webkit-transform:matrix(0.186022,-0.004837,0.006498,0.249916,0,0);}
.mf_c01019{transform:matrix(0.188030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188030,0.000000,0.000000,0.250000,0,0);}
.m5_c01019{transform:matrix(0.190920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190920,0.000000,0.000000,0.250000,0,0);}
.m3_c01019{transform:matrix(0.192095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192095,0.000000,0.000000,0.250000,0,0);}
.m29_c01019{transform:matrix(0.192650,-0.005009,0.006498,0.249916,0,0);-ms-transform:matrix(0.192650,-0.005009,0.006498,0.249916,0,0);-webkit-transform:matrix(0.192650,-0.005009,0.006498,0.249916,0,0);}
.m18_c01019{transform:matrix(0.199405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199405,0.000000,0.000000,0.250000,0,0);}
.m30_c01019{transform:matrix(0.202731,-0.005271,0.006498,0.249916,0,0);-ms-transform:matrix(0.202731,-0.005271,0.006498,0.249916,0,0);-webkit-transform:matrix(0.202731,-0.005271,0.006498,0.249916,0,0);}
.m2_c01019{transform:matrix(0.208925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208925,0.000000,0.000000,0.250000,0,0);}
.m12_c01019{transform:matrix(0.210490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210490,0.000000,0.000000,0.250000,0,0);}
.m22_c01019{transform:matrix(0.212130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212130,0.000000,0.000000,0.250000,0,0);}
.m25_c01019{transform:matrix(0.212153,-0.005516,0.006498,0.249916,0,0);-ms-transform:matrix(0.212153,-0.005516,0.006498,0.249916,0,0);-webkit-transform:matrix(0.212153,-0.005516,0.006498,0.249916,0,0);}
.m1a_c01019{transform:matrix(0.222800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222800,0.000000,0.000000,0.250000,0,0);}
.m3a_c01019{transform:matrix(0.224188,-0.003139,0.003500,0.249976,0,0);-ms-transform:matrix(0.224188,-0.003139,0.003500,0.249976,0,0);-webkit-transform:matrix(0.224188,-0.003139,0.003500,0.249976,0,0);}
.m34_c01019{transform:matrix(0.225644,-0.005867,0.006498,0.249916,0,0);-ms-transform:matrix(0.225644,-0.005867,0.006498,0.249916,0,0);-webkit-transform:matrix(0.225644,-0.005867,0.006498,0.249916,0,0);}
.m33_c01019{transform:matrix(0.226548,-0.005890,0.006498,0.249916,0,0);-ms-transform:matrix(0.226548,-0.005890,0.006498,0.249916,0,0);-webkit-transform:matrix(0.226548,-0.005890,0.006498,0.249916,0,0);}
.m7_c01019{transform:matrix(0.226715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226715,0.000000,0.000000,0.250000,0,0);}
.m24_c01019{transform:matrix(0.228028,-0.005929,0.006498,0.249916,0,0);-ms-transform:matrix(0.228028,-0.005929,0.006498,0.249916,0,0);-webkit-transform:matrix(0.228028,-0.005929,0.006498,0.249916,0,0);}
.m31_c01019{transform:matrix(0.230652,-0.005997,0.006498,0.249916,0,0);-ms-transform:matrix(0.230652,-0.005997,0.006498,0.249916,0,0);-webkit-transform:matrix(0.230652,-0.005997,0.006498,0.249916,0,0);}
.m3e_c01019{transform:matrix(0.233752,-0.003273,0.003500,0.249976,0,0);-ms-transform:matrix(0.233752,-0.003273,0.003500,0.249976,0,0);-webkit-transform:matrix(0.233752,-0.003273,0.003500,0.249976,0,0);}
.m3d_c01019{transform:matrix(0.234262,-0.003280,0.003500,0.249976,0,0);-ms-transform:matrix(0.234262,-0.003280,0.003500,0.249976,0,0);-webkit-transform:matrix(0.234262,-0.003280,0.003500,0.249976,0,0);}
.m38_c01019{transform:matrix(0.237850,-0.006184,0.006498,0.249916,0,0);-ms-transform:matrix(0.237850,-0.006184,0.006498,0.249916,0,0);-webkit-transform:matrix(0.237850,-0.006184,0.006498,0.249916,0,0);}
.m27_c01019{transform:matrix(0.238869,-0.006211,0.006498,0.249916,0,0);-ms-transform:matrix(0.238869,-0.006211,0.006498,0.249916,0,0);-webkit-transform:matrix(0.238869,-0.006211,0.006498,0.249916,0,0);}
.m42_c01019{transform:matrix(0.248041,-0.003473,0.003500,0.249976,0,0);-ms-transform:matrix(0.248041,-0.003473,0.003500,0.249976,0,0);-webkit-transform:matrix(0.248041,-0.003473,0.003500,0.249976,0,0);}
.m36_c01019{transform:matrix(0.255009,-0.006630,0.006498,0.249916,0,0);-ms-transform:matrix(0.255009,-0.006630,0.006498,0.249916,0,0);-webkit-transform:matrix(0.255009,-0.006630,0.006498,0.249916,0,0);}
.m1b_c01019{transform:matrix(0.255055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255055,0.000000,0.000000,0.250000,0,0);}
.m35_c01019{transform:matrix(0.256723,-0.006675,0.006498,0.249916,0,0);-ms-transform:matrix(0.256723,-0.006675,0.006498,0.249916,0,0);-webkit-transform:matrix(0.256723,-0.006675,0.006498,0.249916,0,0);}
.m39_c01019{transform:matrix(0.259027,-0.006735,0.006498,0.249916,0,0);-ms-transform:matrix(0.259027,-0.006735,0.006498,0.249916,0,0);-webkit-transform:matrix(0.259027,-0.006735,0.006498,0.249916,0,0);}
.m40_c01019{transform:matrix(0.265064,-0.003711,0.003500,0.249976,0,0);-ms-transform:matrix(0.265064,-0.003711,0.003500,0.249976,0,0);-webkit-transform:matrix(0.265064,-0.003711,0.003500,0.249976,0,0);}
.m37_c01019{transform:matrix(0.271093,-0.007048,0.006498,0.249916,0,0);-ms-transform:matrix(0.271093,-0.007048,0.006498,0.249916,0,0);-webkit-transform:matrix(0.271093,-0.007048,0.006498,0.249916,0,0);}
.m2f_c01019{transform:matrix(0.271238,-0.007052,0.006498,0.249916,0,0);-ms-transform:matrix(0.271238,-0.007052,0.006498,0.249916,0,0);-webkit-transform:matrix(0.271238,-0.007052,0.006498,0.249916,0,0);}
.m2d_c01019{transform:matrix(0.277571,-0.007217,0.006498,0.249916,0,0);-ms-transform:matrix(0.277571,-0.007217,0.006498,0.249916,0,0);-webkit-transform:matrix(0.277571,-0.007217,0.006498,0.249916,0,0);}
.m3b_c01019{transform:matrix(0.280463,-0.003926,0.003500,0.249976,0,0);-ms-transform:matrix(0.280463,-0.003926,0.003500,0.249976,0,0);-webkit-transform:matrix(0.280463,-0.003926,0.003500,0.249976,0,0);}
.m3c_c01019{transform:matrix(0.281162,-0.003936,0.003500,0.249976,0,0);-ms-transform:matrix(0.281162,-0.003936,0.003500,0.249976,0,0);-webkit-transform:matrix(0.281162,-0.003936,0.003500,0.249976,0,0);}
.m9_c01019{transform:matrix(0.282310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282310,0.000000,0.000000,0.250000,0,0);}
.m19_c01019{transform:matrix(0.286105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286105,0.000000,0.000000,0.250000,0,0);}
.m1c_c01019{transform:matrix(0.290285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290285,0.000000,0.000000,0.250000,0,0);}
.m1f_c01019{transform:matrix(0.295560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295560,0.000000,0.000000,0.250000,0,0);}
.m3f_c01019{transform:matrix(0.303200,-0.004245,0.003500,0.249976,0,0);-ms-transform:matrix(0.303200,-0.004245,0.003500,0.249976,0,0);-webkit-transform:matrix(0.303200,-0.004245,0.003500,0.249976,0,0);}
.m32_c01019{transform:matrix(0.311320,-0.008094,0.006498,0.249916,0,0);-ms-transform:matrix(0.311320,-0.008094,0.006498,0.249916,0,0);-webkit-transform:matrix(0.311320,-0.008094,0.006498,0.249916,0,0);}
.m41_c01019{transform:matrix(0.313019,-0.004382,0.003500,0.249976,0,0);-ms-transform:matrix(0.313019,-0.004382,0.003500,0.249976,0,0);-webkit-transform:matrix(0.313019,-0.004382,0.003500,0.249976,0,0);}
.m28_c01019{transform:matrix(0.365891,-0.009513,0.006498,0.249916,0,0);-ms-transform:matrix(0.365891,-0.009513,0.006498,0.249916,0,0);-webkit-transform:matrix(0.365891,-0.009513,0.006498,0.249916,0,0);}
.m1d_c01019{transform:matrix(0.420185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420185,0.000000,0.000000,0.250000,0,0);}
.m1e_c01019{transform:matrix(0.429915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429915,0.000000,0.000000,0.250000,0,0);}
.m43_c01019{transform:matrix(0.437847,-0.006130,0.003500,0.249976,0,0);-ms-transform:matrix(0.437847,-0.006130,0.003500,0.249976,0,0);-webkit-transform:matrix(0.437847,-0.006130,0.003500,0.249976,0,0);}
.mc_c01019{transform:matrix(0.459730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.459730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.459730,0.000000,0.000000,0.250000,0,0);}
.m17_c01019{transform:matrix(0.606600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.606600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.606600,0.000000,0.000000,0.250000,0,0);}
.m23_c01019{transform:matrix(0.610184,-0.015865,0.006498,0.249916,0,0);-ms-transform:matrix(0.610184,-0.015865,0.006498,0.249916,0,0);-webkit-transform:matrix(0.610184,-0.015865,0.006498,0.249916,0,0);}
.m0_c01019{transform:matrix(0.703960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.703960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.703960,0.000000,0.000000,0.250000,0,0);}
.m44_c01019{transform:matrix(0.732498,-0.010255,0.003500,0.249976,0,0);-ms-transform:matrix(0.732498,-0.010255,0.003500,0.249976,0,0);-webkit-transform:matrix(0.732498,-0.010255,0.003500,0.249976,0,0);}
.m20_c01019{transform:matrix(1.154560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.154560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.154560,0.000000,0.000000,0.250000,0,0);}
.m21_c01019{transform:matrix(1.516880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.516880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.516880,0.000000,0.000000,0.250000,0,0);}
.v0_c01019{vertical-align:0.000000px;}
.ls0_c01019{letter-spacing:0.000000px;}
.sc__c01019{text-shadow:none;}
.sc0_c01019{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__c01019{-webkit-text-stroke:0px transparent;}
.sc0_c01019{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01019{word-spacing:0.000000px;}
.fc0_c01019{color:transparent;}
.fs1_c01019{font-size:18.000000px;}
.fs0_c01019{font-size:24.000000px;}
.fs3_c01019{font-size:72.000000px;}
.fs5_c01019{font-size:90.030415px;}
.fs6_c01019{font-size:96.009408px;}
.fs2_c01019{font-size:132.000000px;}
.fs4_c01019{font-size:132.044608px;}
.fs7_c01019{font-size:168.016463px;}
.y0_c01019{bottom:0.000000px;}
.y3b_c01019{bottom:845.516907px;}
.y31_c01019{bottom:882.904500px;}
.y32_c01019{bottom:884.593299px;}
.y33_c01019{bottom:884.907900px;}
.y34_c01019{bottom:885.745863px;}
.y35_c01019{bottom:886.301565px;}
.y36_c01019{bottom:887.231298px;}
.y37_c01019{bottom:887.610474px;}
.y38_c01019{bottom:889.368111px;}
.y39_c01019{bottom:889.652157px;}
.y3a_c01019{bottom:890.288079px;}
.y26_c01019{bottom:916.649031px;}
.y27_c01019{bottom:918.831066px;}
.y28_c01019{bottom:919.504590px;}
.y29_c01019{bottom:920.128332px;}
.y2a_c01019{bottom:921.041112px;}
.y2b_c01019{bottom:923.056224px;}
.y2c_c01019{bottom:925.082376px;}
.y2d_c01019{bottom:925.487775px;}
.y2e_c01019{bottom:927.259086px;}
.y2f_c01019{bottom:927.852396px;}
.y30_c01019{bottom:928.248900px;}
.y1a_c01019{bottom:947.194500px;}
.y1b_c01019{bottom:948.445620px;}
.y1c_c01019{bottom:949.268676px;}
.y1d_c01019{bottom:951.361650px;}
.y1e_c01019{bottom:952.556727px;}
.y1f_c01019{bottom:954.077844px;}
.y20_c01019{bottom:956.861274px;}
.y21_c01019{bottom:957.995862px;}
.y22_c01019{bottom:958.766697px;}
.y23_c01019{bottom:960.031584px;}
.y24_c01019{bottom:960.592209px;}
.y25_c01019{bottom:962.523801px;}
.yc_c01019{bottom:1062.181500px;}
.yd_c01019{bottom:1062.346500px;}
.ye_c01019{bottom:1062.471000px;}
.yf_c01019{bottom:1062.693000px;}
.y10_c01019{bottom:1063.060500px;}
.y11_c01019{bottom:1063.599000px;}
.y12_c01019{bottom:1063.834500px;}
.y13_c01019{bottom:1063.966500px;}
.y14_c01019{bottom:1064.509500px;}
.y15_c01019{bottom:1064.817000px;}
.y16_c01019{bottom:1065.162000px;}
.y17_c01019{bottom:1065.330000px;}
.y18_c01019{bottom:1066.038000px;}
.y19_c01019{bottom:1081.350000px;}
.yb_c01019{bottom:1100.965500px;}
.ya_c01019{bottom:1151.004000px;}
.y9_c01019{bottom:1166.128500px;}
.y7_c01019{bottom:1170.991500px;}
.y8_c01019{bottom:1176.157500px;}
.y6_c01019{bottom:1176.660000px;}
.y5_c01019{bottom:1183.681500px;}
.y4_c01019{bottom:1186.111500px;}
.y3_c01019{bottom:1212.301500px;}
.y2_c01019{bottom:1223.367000px;}
.y1_c01019{bottom:1241.331000px;}
.h3_c01019{height:18.000000px;}
.h2_c01019{height:24.000000px;}
.h5_c01019{height:72.000000px;}
.h7_c01019{height:90.030415px;}
.h8_c01019{height:96.009408px;}
.h4_c01019{height:132.000000px;}
.h6_c01019{height:132.044608px;}
.h9_c01019{height:168.016463px;}
.h0_c01019{height:1246.320000px;}
.h1_c01019{height:1246.500000px;}
.w0_c01019{width:896.100000px;}
.w1_c01019{width:896.250000px;}
.x0_c01019{left:0.000000px;}
.x9_c01019{left:4.924500px;}
.xb_c01019{left:30.780000px;}
.x22_c01019{left:61.266000px;}
.x16_c01019{left:82.230000px;}
.x2e_c01019{left:85.519530px;}
.x21_c01019{left:102.060000px;}
.x17_c01019{left:105.835500px;}
.x23_c01019{left:109.386000px;}
.x18_c01019{left:123.553500px;}
.xc_c01019{left:125.820000px;}
.x8_c01019{left:129.060000px;}
.x24_c01019{left:141.042000px;}
.x19_c01019{left:155.278500px;}
.x39_c01019{left:158.038500px;}
.x2f_c01019{left:200.387934px;}
.xd_c01019{left:207.090000px;}
.xe_c01019{left:216.810000px;}
.x25_c01019{left:221.541000px;}
.x6_c01019{left:224.370000px;}
.x30_c01019{left:235.818369px;}
.x26_c01019{left:267.505500px;}
.x31_c01019{left:268.641336px;}
.x5_c01019{left:272.430000px;}
.x3a_c01019{left:278.667000px;}
.x1a_c01019{left:284.689500px;}
.x1_c01019{left:302.130000px;}
.x32_c01019{left:316.680072px;}
.x1b_c01019{left:318.414000px;}
.x27_c01019{left:326.010000px;}
.xa_c01019{left:327.771000px;}
.x1c_c01019{left:337.336500px;}
.xf_c01019{left:339.930000px;}
.x2_c01019{left:342.090000px;}
.x3_c01019{left:345.870000px;}
.x7_c01019{left:352.080000px;}
.x3b_c01019{left:360.993000px;}
.x4_c01019{left:382.860000px;}
.x10_c01019{left:390.690000px;}
.x3c_c01019{left:400.686000px;}
.x1d_c01019{left:414.834000px;}
.x33_c01019{left:422.761377px;}
.x11_c01019{left:428.220000px;}
.x28_c01019{left:433.065000px;}
.x1e_c01019{left:458.826000px;}
.x3d_c01019{left:467.095500px;}
.x29_c01019{left:476.703000px;}
.x3e_c01019{left:494.179500px;}
.x2a_c01019{left:506.350500px;}
.x1f_c01019{left:508.009500px;}
.x12_c01019{left:516.510000px;}
.x34_c01019{left:529.382760px;}
.x20_c01019{left:532.099500px;}
.x35_c01019{left:550.748160px;}
.x42_c01019{left:552.489621px;}
.x2b_c01019{left:555.000000px;}
.x2c_c01019{left:576.562500px;}
.x13_c01019{left:579.420000px;}
.x3f_c01019{left:619.725000px;}
.x14_c01019{left:633.150000px;}
.x40_c01019{left:640.014000px;}
.x36_c01019{left:643.988625px;}
.x2d_c01019{left:650.854500px;}
.x37_c01019{left:675.179280px;}
.x41_c01019{left:685.437000px;}
.x38_c01019{left:696.087102px;}
.x15_c01019{left:698.760000px;}
@media print{
.v0_c01019{vertical-align:0.000000pt;}
.ls0_c01019{letter-spacing:0.000000pt;}
.ws0_c01019{word-spacing:0.000000pt;}
.fs1_c01019{font-size:16.000000pt;}
.fs0_c01019{font-size:21.333333pt;}
.fs3_c01019{font-size:64.000000pt;}
.fs5_c01019{font-size:80.027035pt;}
.fs6_c01019{font-size:85.341696pt;}
.fs2_c01019{font-size:117.333333pt;}
.fs4_c01019{font-size:117.372985pt;}
.fs7_c01019{font-size:149.347967pt;}
.y0_c01019{bottom:0.000000pt;}
.y3b_c01019{bottom:751.570584pt;}
.y31_c01019{bottom:784.804000pt;}
.y32_c01019{bottom:786.305155pt;}
.y33_c01019{bottom:786.584800pt;}
.y34_c01019{bottom:787.329656pt;}
.y35_c01019{bottom:787.823613pt;}
.y36_c01019{bottom:788.650043pt;}
.y37_c01019{bottom:788.987088pt;}
.y38_c01019{bottom:790.549432pt;}
.y39_c01019{bottom:790.801917pt;}
.y3a_c01019{bottom:791.367181pt;}
.y26_c01019{bottom:814.799139pt;}
.y27_c01019{bottom:816.738725pt;}
.y28_c01019{bottom:817.337413pt;}
.y29_c01019{bottom:817.891851pt;}
.y2a_c01019{bottom:818.703211pt;}
.y2b_c01019{bottom:820.494421pt;}
.y2c_c01019{bottom:822.295445pt;}
.y2d_c01019{bottom:822.655800pt;}
.y2e_c01019{bottom:824.230299pt;}
.y2f_c01019{bottom:824.757685pt;}
.y30_c01019{bottom:825.110133pt;}
.y1a_c01019{bottom:841.950667pt;}
.y1b_c01019{bottom:843.062773pt;}
.y1c_c01019{bottom:843.794379pt;}
.y1d_c01019{bottom:845.654800pt;}
.y1e_c01019{bottom:846.717091pt;}
.y1f_c01019{bottom:848.069195pt;}
.y20_c01019{bottom:850.543355pt;}
.y21_c01019{bottom:851.551877pt;}
.y22_c01019{bottom:852.237064pt;}
.y23_c01019{bottom:853.361408pt;}
.y24_c01019{bottom:853.859741pt;}
.y25_c01019{bottom:855.576712pt;}
.yc_c01019{bottom:944.161333pt;}
.yd_c01019{bottom:944.308000pt;}
.ye_c01019{bottom:944.418667pt;}
.yf_c01019{bottom:944.616000pt;}
.y10_c01019{bottom:944.942667pt;}
.y11_c01019{bottom:945.421333pt;}
.y12_c01019{bottom:945.630667pt;}
.y13_c01019{bottom:945.748000pt;}
.y14_c01019{bottom:946.230667pt;}
.y15_c01019{bottom:946.504000pt;}
.y16_c01019{bottom:946.810667pt;}
.y17_c01019{bottom:946.960000pt;}
.y18_c01019{bottom:947.589333pt;}
.y19_c01019{bottom:961.200000pt;}
.yb_c01019{bottom:978.636000pt;}
.ya_c01019{bottom:1023.114667pt;}
.y9_c01019{bottom:1036.558667pt;}
.y7_c01019{bottom:1040.881333pt;}
.y8_c01019{bottom:1045.473333pt;}
.y6_c01019{bottom:1045.920000pt;}
.y5_c01019{bottom:1052.161333pt;}
.y4_c01019{bottom:1054.321333pt;}
.y3_c01019{bottom:1077.601333pt;}
.y2_c01019{bottom:1087.437333pt;}
.y1_c01019{bottom:1103.405333pt;}
.h3_c01019{height:16.000000pt;}
.h2_c01019{height:21.333333pt;}
.h5_c01019{height:64.000000pt;}
.h7_c01019{height:80.027035pt;}
.h8_c01019{height:85.341696pt;}
.h4_c01019{height:117.333333pt;}
.h6_c01019{height:117.372985pt;}
.h9_c01019{height:149.347967pt;}
.h0_c01019{height:1107.840000pt;}
.h1_c01019{height:1108.000000pt;}
.w0_c01019{width:796.533333pt;}
.w1_c01019{width:796.666667pt;}
.x0_c01019{left:0.000000pt;}
.x9_c01019{left:4.377333pt;}
.xb_c01019{left:27.360000pt;}
.x22_c01019{left:54.458667pt;}
.x16_c01019{left:73.093333pt;}
.x2e_c01019{left:76.017360pt;}
.x21_c01019{left:90.720000pt;}
.x17_c01019{left:94.076000pt;}
.x23_c01019{left:97.232000pt;}
.x18_c01019{left:109.825333pt;}
.xc_c01019{left:111.840000pt;}
.x8_c01019{left:114.720000pt;}
.x24_c01019{left:125.370667pt;}
.x19_c01019{left:138.025333pt;}
.x39_c01019{left:140.478667pt;}
.x2f_c01019{left:178.122608pt;}
.xd_c01019{left:184.080000pt;}
.xe_c01019{left:192.720000pt;}
.x25_c01019{left:196.925333pt;}
.x6_c01019{left:199.440000pt;}
.x30_c01019{left:209.616328pt;}
.x26_c01019{left:237.782667pt;}
.x31_c01019{left:238.792299pt;}
.x5_c01019{left:242.160000pt;}
.x3a_c01019{left:247.704000pt;}
.x1a_c01019{left:253.057333pt;}
.x1_c01019{left:268.560000pt;}
.x32_c01019{left:281.493397pt;}
.x1b_c01019{left:283.034667pt;}
.x27_c01019{left:289.786667pt;}
.xa_c01019{left:291.352000pt;}
.x1c_c01019{left:299.854667pt;}
.xf_c01019{left:302.160000pt;}
.x2_c01019{left:304.080000pt;}
.x3_c01019{left:307.440000pt;}
.x7_c01019{left:312.960000pt;}
.x3b_c01019{left:320.882667pt;}
.x4_c01019{left:340.320000pt;}
.x10_c01019{left:347.280000pt;}
.x3c_c01019{left:356.165333pt;}
.x1d_c01019{left:368.741333pt;}
.x33_c01019{left:375.787891pt;}
.x11_c01019{left:380.640000pt;}
.x28_c01019{left:384.946667pt;}
.x1e_c01019{left:407.845333pt;}
.x3d_c01019{left:415.196000pt;}
.x29_c01019{left:423.736000pt;}
.x3e_c01019{left:439.270667pt;}
.x2a_c01019{left:450.089333pt;}
.x1f_c01019{left:451.564000pt;}
.x12_c01019{left:459.120000pt;}
.x34_c01019{left:470.562453pt;}
.x20_c01019{left:472.977333pt;}
.x35_c01019{left:489.553920pt;}
.x42_c01019{left:491.101885pt;}
.x2b_c01019{left:493.333333pt;}
.x2c_c01019{left:512.500000pt;}
.x13_c01019{left:515.040000pt;}
.x3f_c01019{left:550.866667pt;}
.x14_c01019{left:562.800000pt;}
.x40_c01019{left:568.901333pt;}
.x36_c01019{left:572.434333pt;}
.x2d_c01019{left:578.537333pt;}
.x37_c01019{left:600.159360pt;}
.x41_c01019{left:609.277333pt;}
.x38_c01019{left:618.744091pt;}
.x15_c01019{left:621.120000pt;}
}





/* 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_c01020 {
    display:none;
  }
  .loading-indicator_c01020.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01020 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_c01020 { 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_c01020" -> "#page-container .classname_c01020")
 */
.pf_c01020 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01020 { /* 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_c01020.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01020 { /* 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_c01020 { /* 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_c01020 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01020 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01020 {overflow:visible;}
  }
}
.c_c01020 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01020 { /* 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_c01020:after { /* webkit #35443 */
  content: '';
}
.t_c01020:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01020 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 */
}
.__c01020 { /* 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_c01020 { /* info for Javascript */
  display:none;
}
.l_c01020 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01020 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01020 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01020: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_c01020 {
    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_c01020.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01020.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_c01020 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01020{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01020;src:url('chunks/assets/font_53ec0c54e60da7c2d414b553.woff2')format("woff");}.ff1_c01020{font-family:ff1_c01020;line-height:1.000000;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;}
.m56_c01020{transform:matrix(0.018736,0.000713,-0.009503,0.249819,0,0);-ms-transform:matrix(0.018736,0.000713,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.018736,0.000713,-0.009503,0.249819,0,0);}
.m0_c01020{transform:matrix(0.126865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126865,0.000000,0.000000,0.250000,0,0);}
.me_c01020{transform:matrix(0.167863,0.004197,-0.006248,0.249922,0,0);-ms-transform:matrix(0.167863,0.004197,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.167863,0.004197,-0.006248,0.249922,0,0);}
.m3_c01020{transform:matrix(0.171034,0.003250,-0.004749,0.249955,0,0);-ms-transform:matrix(0.171034,0.003250,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.171034,0.003250,-0.004749,0.249955,0,0);}
.m45_c01020{transform:matrix(0.171486,0.006523,-0.009503,0.249819,0,0);-ms-transform:matrix(0.171486,0.006523,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.171486,0.006523,-0.009503,0.249819,0,0);}
.m40_c01020{transform:matrix(0.173450,0.006598,-0.009503,0.249819,0,0);-ms-transform:matrix(0.173450,0.006598,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.173450,0.006598,-0.009503,0.249819,0,0);}
.m46_c01020{transform:matrix(0.182143,0.006928,-0.009503,0.249819,0,0);-ms-transform:matrix(0.182143,0.006928,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.182143,0.006928,-0.009503,0.249819,0,0);}
.m49_c01020{transform:matrix(0.193270,0.007352,-0.009503,0.249819,0,0);-ms-transform:matrix(0.193270,0.007352,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.193270,0.007352,-0.009503,0.249819,0,0);}
.m43_c01020{transform:matrix(0.193380,0.007356,-0.009503,0.249819,0,0);-ms-transform:matrix(0.193380,0.007356,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.193380,0.007356,-0.009503,0.249819,0,0);}
.m44_c01020{transform:matrix(0.193590,0.007364,-0.009503,0.249819,0,0);-ms-transform:matrix(0.193590,0.007364,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.193590,0.007364,-0.009503,0.249819,0,0);}
.m2a_c01020{transform:matrix(0.194399,0.007395,-0.009503,0.249819,0,0);-ms-transform:matrix(0.194399,0.007395,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.194399,0.007395,-0.009503,0.249819,0,0);}
.m2e_c01020{transform:matrix(0.196313,0.007467,-0.009503,0.249819,0,0);-ms-transform:matrix(0.196313,0.007467,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.196313,0.007467,-0.009503,0.249819,0,0);}
.m47_c01020{transform:matrix(0.202124,0.007688,-0.009503,0.249819,0,0);-ms-transform:matrix(0.202124,0.007688,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.202124,0.007688,-0.009503,0.249819,0,0);}
.m18_c01020{transform:matrix(0.203098,0.007725,-0.009503,0.249819,0,0);-ms-transform:matrix(0.203098,0.007725,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.203098,0.007725,-0.009503,0.249819,0,0);}
.m16_c01020{transform:matrix(0.204182,0.007767,-0.009503,0.249819,0,0);-ms-transform:matrix(0.204182,0.007767,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.204182,0.007767,-0.009503,0.249819,0,0);}
.m33_c01020{transform:matrix(0.204312,0.007772,-0.009503,0.249819,0,0);-ms-transform:matrix(0.204312,0.007772,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.204312,0.007772,-0.009503,0.249819,0,0);}
.m3f_c01020{transform:matrix(0.206381,0.007850,-0.009503,0.249819,0,0);-ms-transform:matrix(0.206381,0.007850,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.206381,0.007850,-0.009503,0.249819,0,0);}
.m41_c01020{transform:matrix(0.206466,0.007854,-0.009503,0.249819,0,0);-ms-transform:matrix(0.206466,0.007854,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.206466,0.007854,-0.009503,0.249819,0,0);}
.m31_c01020{transform:matrix(0.207295,0.007885,-0.009503,0.249819,0,0);-ms-transform:matrix(0.207295,0.007885,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.207295,0.007885,-0.009503,0.249819,0,0);}
.m29_c01020{transform:matrix(0.207925,0.007909,-0.009503,0.249819,0,0);-ms-transform:matrix(0.207925,0.007909,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.207925,0.007909,-0.009503,0.249819,0,0);}
.m19_c01020{transform:matrix(0.209249,0.007959,-0.009503,0.249819,0,0);-ms-transform:matrix(0.209249,0.007959,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.209249,0.007959,-0.009503,0.249819,0,0);}
.m13_c01020{transform:matrix(0.211677,0.008052,-0.009503,0.249819,0,0);-ms-transform:matrix(0.211677,0.008052,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.211677,0.008052,-0.009503,0.249819,0,0);}
.m48_c01020{transform:matrix(0.213066,0.008105,-0.009503,0.249819,0,0);-ms-transform:matrix(0.213066,0.008105,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.213066,0.008105,-0.009503,0.249819,0,0);}
.m4a_c01020{transform:matrix(0.214860,0.008173,-0.009503,0.249819,0,0);-ms-transform:matrix(0.214860,0.008173,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.214860,0.008173,-0.009503,0.249819,0,0);}
.m2b_c01020{transform:matrix(0.215334,0.008191,-0.009503,0.249819,0,0);-ms-transform:matrix(0.215334,0.008191,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.215334,0.008191,-0.009503,0.249819,0,0);}
.m42_c01020{transform:matrix(0.216478,0.008234,-0.009503,0.249819,0,0);-ms-transform:matrix(0.216478,0.008234,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.216478,0.008234,-0.009503,0.249819,0,0);}
.m2c_c01020{transform:matrix(0.217448,0.008271,-0.009503,0.249819,0,0);-ms-transform:matrix(0.217448,0.008271,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.217448,0.008271,-0.009503,0.249819,0,0);}
.m14_c01020{transform:matrix(0.223438,0.008499,-0.009503,0.249819,0,0);-ms-transform:matrix(0.223438,0.008499,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.223438,0.008499,-0.009503,0.249819,0,0);}
.m23_c01020{transform:matrix(0.225182,0.008565,-0.009503,0.249819,0,0);-ms-transform:matrix(0.225182,0.008565,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.225182,0.008565,-0.009503,0.249819,0,0);}
.m12_c01020{transform:matrix(0.225774,0.005644,-0.006248,0.249922,0,0);-ms-transform:matrix(0.225774,0.005644,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.225774,0.005644,-0.006248,0.249922,0,0);}
.m52_c01020{transform:matrix(0.227995,0.008672,-0.009503,0.249819,0,0);-ms-transform:matrix(0.227995,0.008672,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.227995,0.008672,-0.009503,0.249819,0,0);}
.m4_c01020{transform:matrix(0.228999,0.004351,-0.004749,0.249955,0,0);-ms-transform:matrix(0.228999,0.004351,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.228999,0.004351,-0.004749,0.249955,0,0);}
.m20_c01020{transform:matrix(0.230159,0.008755,-0.009503,0.249819,0,0);-ms-transform:matrix(0.230159,0.008755,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.230159,0.008755,-0.009503,0.249819,0,0);}
.m2f_c01020{transform:matrix(0.230398,0.008764,-0.009503,0.249819,0,0);-ms-transform:matrix(0.230398,0.008764,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.230398,0.008764,-0.009503,0.249819,0,0);}
.m30_c01020{transform:matrix(0.230708,0.008776,-0.009503,0.249819,0,0);-ms-transform:matrix(0.230708,0.008776,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.230708,0.008776,-0.009503,0.249819,0,0);}
.m1b_c01020{transform:matrix(0.230748,0.008777,-0.009503,0.249819,0,0);-ms-transform:matrix(0.230748,0.008777,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.230748,0.008777,-0.009503,0.249819,0,0);}
.m4b_c01020{transform:matrix(0.234191,0.008908,-0.009503,0.249819,0,0);-ms-transform:matrix(0.234191,0.008908,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.234191,0.008908,-0.009503,0.249819,0,0);}
.m15_c01020{transform:matrix(0.234530,0.008921,-0.009503,0.249819,0,0);-ms-transform:matrix(0.234530,0.008921,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.234530,0.008921,-0.009503,0.249819,0,0);}
.m21_c01020{transform:matrix(0.235585,0.008961,-0.009503,0.249819,0,0);-ms-transform:matrix(0.235585,0.008961,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.235585,0.008961,-0.009503,0.249819,0,0);}
.m1a_c01020{transform:matrix(0.235854,0.008971,-0.009503,0.249819,0,0);-ms-transform:matrix(0.235854,0.008971,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.235854,0.008971,-0.009503,0.249819,0,0);}
.m4c_c01020{transform:matrix(0.235939,0.008975,-0.009503,0.249819,0,0);-ms-transform:matrix(0.235939,0.008975,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.235939,0.008975,-0.009503,0.249819,0,0);}
.m17_c01020{transform:matrix(0.236159,0.008983,-0.009503,0.249819,0,0);-ms-transform:matrix(0.236159,0.008983,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.236159,0.008983,-0.009503,0.249819,0,0);}
.m27_c01020{transform:matrix(0.236949,0.009013,-0.009503,0.249819,0,0);-ms-transform:matrix(0.236949,0.009013,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.236949,0.009013,-0.009503,0.249819,0,0);}
.m32_c01020{transform:matrix(0.238702,0.009080,-0.009503,0.249819,0,0);-ms-transform:matrix(0.238702,0.009080,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.238702,0.009080,-0.009503,0.249819,0,0);}
.m34_c01020{transform:matrix(0.239272,0.009101,-0.009503,0.249819,0,0);-ms-transform:matrix(0.239272,0.009101,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.239272,0.009101,-0.009503,0.249819,0,0);}
.m1d_c01020{transform:matrix(0.239737,0.009119,-0.009503,0.249819,0,0);-ms-transform:matrix(0.239737,0.009119,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.239737,0.009119,-0.009503,0.249819,0,0);}
.m9_c01020{transform:matrix(0.242196,0.004602,-0.004749,0.249955,0,0);-ms-transform:matrix(0.242196,0.004602,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.242196,0.004602,-0.004749,0.249955,0,0);}
.m36_c01020{transform:matrix(0.244153,0.009287,-0.009503,0.249819,0,0);-ms-transform:matrix(0.244153,0.009287,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.244153,0.009287,-0.009503,0.249819,0,0);}
.m2d_c01020{transform:matrix(0.245143,0.009325,-0.009503,0.249819,0,0);-ms-transform:matrix(0.245143,0.009325,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.245143,0.009325,-0.009503,0.249819,0,0);}
.md_c01020{transform:matrix(0.245666,0.004668,-0.004749,0.249955,0,0);-ms-transform:matrix(0.245666,0.004668,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.245666,0.004668,-0.004749,0.249955,0,0);}
.m53_c01020{transform:matrix(0.245792,0.009349,-0.009503,0.249819,0,0);-ms-transform:matrix(0.245792,0.009349,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.245792,0.009349,-0.009503,0.249819,0,0);}
.m3d_c01020{transform:matrix(0.246487,0.009376,-0.009503,0.249819,0,0);-ms-transform:matrix(0.246487,0.009376,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.246487,0.009376,-0.009503,0.249819,0,0);}
.mf_c01020{transform:matrix(0.247428,0.006186,-0.006248,0.249922,0,0);-ms-transform:matrix(0.247428,0.006186,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.247428,0.006186,-0.006248,0.249922,0,0);}
.m54_c01020{transform:matrix(0.247636,0.009420,-0.009503,0.249819,0,0);-ms-transform:matrix(0.247636,0.009420,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.247636,0.009420,-0.009503,0.249819,0,0);}
.mb_c01020{transform:matrix(0.249215,0.004735,-0.004749,0.249955,0,0);-ms-transform:matrix(0.249215,0.004735,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.249215,0.004735,-0.004749,0.249955,0,0);}
.m3a_c01020{transform:matrix(0.249854,0.009504,-0.009503,0.249819,0,0);-ms-transform:matrix(0.249854,0.009504,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.249854,0.009504,-0.009503,0.249819,0,0);}
.m5_c01020{transform:matrix(0.249985,0.004750,-0.004749,0.249955,0,0);-ms-transform:matrix(0.249985,0.004750,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.249985,0.004750,-0.004749,0.249955,0,0);}
.m7_c01020{transform:matrix(0.250110,0.004752,-0.004749,0.249955,0,0);-ms-transform:matrix(0.250110,0.004752,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.250110,0.004752,-0.004749,0.249955,0,0);}
.m11_c01020{transform:matrix(0.251986,0.006300,-0.006248,0.249922,0,0);-ms-transform:matrix(0.251986,0.006300,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.251986,0.006300,-0.006248,0.249922,0,0);}
.m24_c01020{transform:matrix(0.253102,0.009628,-0.009503,0.249819,0,0);-ms-transform:matrix(0.253102,0.009628,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.253102,0.009628,-0.009503,0.249819,0,0);}
.ma_c01020{transform:matrix(0.253594,0.004818,-0.004749,0.249955,0,0);-ms-transform:matrix(0.253594,0.004818,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.253594,0.004818,-0.004749,0.249955,0,0);}
.m10_c01020{transform:matrix(0.254640,0.006366,-0.006248,0.249922,0,0);-ms-transform:matrix(0.254640,0.006366,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.254640,0.006366,-0.006248,0.249922,0,0);}
.m6_c01020{transform:matrix(0.255354,0.004852,-0.004749,0.249955,0,0);-ms-transform:matrix(0.255354,0.004852,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.255354,0.004852,-0.004749,0.249955,0,0);}
.m3b_c01020{transform:matrix(0.257004,0.009776,-0.009503,0.249819,0,0);-ms-transform:matrix(0.257004,0.009776,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.257004,0.009776,-0.009503,0.249819,0,0);}
.m26_c01020{transform:matrix(0.257364,0.009790,-0.009503,0.249819,0,0);-ms-transform:matrix(0.257364,0.009790,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.257364,0.009790,-0.009503,0.249819,0,0);}
.m28_c01020{transform:matrix(0.258198,0.009821,-0.009503,0.249819,0,0);-ms-transform:matrix(0.258198,0.009821,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.258198,0.009821,-0.009503,0.249819,0,0);}
.m50_c01020{transform:matrix(0.258763,0.009843,-0.009503,0.249819,0,0);-ms-transform:matrix(0.258763,0.009843,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.258763,0.009843,-0.009503,0.249819,0,0);}
.m1e_c01020{transform:matrix(0.260162,0.009896,-0.009503,0.249819,0,0);-ms-transform:matrix(0.260162,0.009896,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.260162,0.009896,-0.009503,0.249819,0,0);}
.m51_c01020{transform:matrix(0.264044,0.010044,-0.009503,0.249819,0,0);-ms-transform:matrix(0.264044,0.010044,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.264044,0.010044,-0.009503,0.249819,0,0);}
.m4f_c01020{transform:matrix(0.264789,0.010072,-0.009503,0.249819,0,0);-ms-transform:matrix(0.264789,0.010072,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.264789,0.010072,-0.009503,0.249819,0,0);}
.mc_c01020{transform:matrix(0.270601,0.005141,-0.004749,0.249955,0,0);-ms-transform:matrix(0.270601,0.005141,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.270601,0.005141,-0.004749,0.249955,0,0);}
.m25_c01020{transform:matrix(0.271938,0.010344,-0.009503,0.249819,0,0);-ms-transform:matrix(0.271938,0.010344,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.271938,0.010344,-0.009503,0.249819,0,0);}
.m8_c01020{transform:matrix(0.272691,0.005181,-0.004749,0.249955,0,0);-ms-transform:matrix(0.272691,0.005181,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.272691,0.005181,-0.004749,0.249955,0,0);}
.m37_c01020{transform:matrix(0.273043,0.010386,-0.009503,0.249819,0,0);-ms-transform:matrix(0.273043,0.010386,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.273043,0.010386,-0.009503,0.249819,0,0);}
.m22_c01020{transform:matrix(0.277924,0.010572,-0.009503,0.249819,0,0);-ms-transform:matrix(0.277924,0.010572,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.277924,0.010572,-0.009503,0.249819,0,0);}
.m1c_c01020{transform:matrix(0.278204,0.010582,-0.009503,0.249819,0,0);-ms-transform:matrix(0.278204,0.010582,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.278204,0.010582,-0.009503,0.249819,0,0);}
.m1f_c01020{transform:matrix(0.281596,0.010711,-0.009503,0.249819,0,0);-ms-transform:matrix(0.281596,0.010711,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.281596,0.010711,-0.009503,0.249819,0,0);}
.m38_c01020{transform:matrix(0.288986,0.010992,-0.009503,0.249819,0,0);-ms-transform:matrix(0.288986,0.010992,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.288986,0.010992,-0.009503,0.249819,0,0);}
.m2_c01020{transform:matrix(0.289875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289875,0.000000,0.000000,0.250000,0,0);}
.m55_c01020{transform:matrix(0.290170,0.011038,-0.009503,0.249819,0,0);-ms-transform:matrix(0.290170,0.011038,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.290170,0.011038,-0.009503,0.249819,0,0);}
.m35_c01020{transform:matrix(0.294577,0.011205,-0.009503,0.249819,0,0);-ms-transform:matrix(0.294577,0.011205,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.294577,0.011205,-0.009503,0.249819,0,0);}
.m57_c01020{transform:matrix(0.295346,0.011234,-0.009503,0.249819,0,0);-ms-transform:matrix(0.295346,0.011234,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.295346,0.011234,-0.009503,0.249819,0,0);}
.m3c_c01020{transform:matrix(0.296995,0.011297,-0.009503,0.249819,0,0);-ms-transform:matrix(0.296995,0.011297,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.296995,0.011297,-0.009503,0.249819,0,0);}
.m39_c01020{transform:matrix(0.303810,0.011556,-0.009503,0.249819,0,0);-ms-transform:matrix(0.303810,0.011556,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.303810,0.011556,-0.009503,0.249819,0,0);}
.m3e_c01020{transform:matrix(0.311480,0.011848,-0.009503,0.249819,0,0);-ms-transform:matrix(0.311480,0.011848,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.311480,0.011848,-0.009503,0.249819,0,0);}
.m1_c01020{transform:matrix(0.328830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328830,0.000000,0.000000,0.250000,0,0);}
.m4e_c01020{transform:matrix(0.412891,0.015706,-0.009503,0.249819,0,0);-ms-transform:matrix(0.412891,0.015706,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.412891,0.015706,-0.009503,0.249819,0,0);}
.m4d_c01020{transform:matrix(0.440651,0.016762,-0.009503,0.249819,0,0);-ms-transform:matrix(0.440651,0.016762,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.440651,0.016762,-0.009503,0.249819,0,0);}
.v0_c01020{vertical-align:0.000000px;}
.ls0_c01020{letter-spacing:0.000000px;}
.sc__c01020{text-shadow:none;}
.sc0_c01020{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__c01020{-webkit-text-stroke:0px transparent;}
.sc0_c01020{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01020{word-spacing:0.000000px;}
.fc0_c01020{color:transparent;}
.fs8_c01020{font-size:35.990009px;}
.fs6_c01020{font-size:65.981682px;}
.fs1_c01020{font-size:66.000000px;}
.fs5_c01020{font-size:71.980017px;}
.fs2_c01020{font-size:72.012995px;}
.fs3_c01020{font-size:72.022496px;}
.fs4_c01020{font-size:83.976687px;}
.fs7_c01020{font-size:95.973356px;}
.fs0_c01020{font-size:102.000000px;}
.y0_c01020{bottom:0.000000px;}
.y57_c01020{bottom:778.932504px;}
.y56_c01020{bottom:779.297766px;}
.y55_c01020{bottom:784.768227px;}
.y54_c01020{bottom:785.997888px;}
.y53_c01020{bottom:787.646100px;}
.y52_c01020{bottom:788.878383px;}
.y51_c01020{bottom:791.810121px;}
.y50_c01020{bottom:794.319261px;}
.y4f_c01020{bottom:797.274369px;}
.y4e_c01020{bottom:800.581167px;}
.y4d_c01020{bottom:802.889154px;}
.y4c_c01020{bottom:803.921538px;}
.y4b_c01020{bottom:805.156500px;}
.y4a_c01020{bottom:815.574147px;}
.y49_c01020{bottom:816.369528px;}
.y48_c01020{bottom:820.501087px;}
.y47_c01020{bottom:823.459036px;}
.y46_c01020{bottom:824.990584px;}
.y45_c01020{bottom:826.095576px;}
.y44_c01020{bottom:828.732246px;}
.y43_c01020{bottom:830.973049px;}
.y42_c01020{bottom:831.716569px;}
.y41_c01020{bottom:833.669658px;}
.y40_c01020{bottom:834.711918px;}
.y3f_c01020{bottom:838.408884px;}
.y3e_c01020{bottom:855.686014px;}
.y3d_c01020{bottom:856.730460px;}
.y3c_c01020{bottom:859.995919px;}
.y3b_c01020{bottom:861.111556px;}
.y3a_c01020{bottom:862.205623px;}
.y39_c01020{bottom:866.533947px;}
.y38_c01020{bottom:869.093721px;}
.y37_c01020{bottom:870.912706px;}
.y36_c01020{bottom:871.991172px;}
.y35_c01020{bottom:874.574152px;}
.y34_c01020{bottom:891.702106px;}
.y33_c01020{bottom:892.775827px;}
.y32_c01020{bottom:895.976406px;}
.y31_c01020{bottom:897.383853px;}
.y30_c01020{bottom:898.814694px;}
.y2f_c01020{bottom:901.582792px;}
.y2e_c01020{bottom:902.635587px;}
.y2d_c01020{bottom:903.369442px;}
.y2c_c01020{bottom:905.135377px;}
.y2b_c01020{bottom:907.222173px;}
.y2a_c01020{bottom:908.255164px;}
.y29_c01020{bottom:909.666544px;}
.y28_c01020{bottom:924.606673px;}
.y27_c01020{bottom:925.998535px;}
.y26_c01020{bottom:926.742048px;}
.y25_c01020{bottom:929.876467px;}
.y24_c01020{bottom:931.305028px;}
.y23_c01020{bottom:932.367708px;}
.y22_c01020{bottom:935.256040px;}
.y21_c01020{bottom:936.251152px;}
.y20_c01020{bottom:937.294843px;}
.y1f_c01020{bottom:941.534097px;}
.y1e_c01020{bottom:943.962541px;}
.y1d_c01020{bottom:945.023755px;}
.y1c_c01020{bottom:960.404607px;}
.y1b_c01020{bottom:963.015378px;}
.y1a_c01020{bottom:963.799641px;}
.y19_c01020{bottom:965.545038px;}
.y18_c01020{bottom:967.187379px;}
.y17_c01020{bottom:970.940088px;}
.y16_c01020{bottom:972.609333px;}
.y15_c01020{bottom:975.594252px;}
.y14_c01020{bottom:978.102252px;}
.y13_c01020{bottom:980.118000px;}
.y12_c01020{bottom:1045.647000px;}
.y11_c01020{bottom:1047.518850px;}
.y10_c01020{bottom:1049.752725px;}
.yf_c01020{bottom:1050.806062px;}
.ye_c01020{bottom:1051.381500px;}
.yd_c01020{bottom:1074.558018px;}
.yc_c01020{bottom:1076.425965px;}
.yb_c01020{bottom:1077.077646px;}
.ya_c01020{bottom:1078.114390px;}
.y9_c01020{bottom:1078.740137px;}
.y8_c01020{bottom:1080.828730px;}
.y7_c01020{bottom:1081.259765px;}
.y6_c01020{bottom:1082.085837px;}
.y5_c01020{bottom:1083.337414px;}
.y4_c01020{bottom:1084.158157px;}
.y3_c01020{bottom:1084.591500px;}
.y2_c01020{bottom:1118.082000px;}
.y1_c01020{bottom:1171.132500px;}
.ha_c01020{height:35.990009px;}
.h8_c01020{height:65.981682px;}
.h3_c01020{height:66.000000px;}
.h7_c01020{height:71.980017px;}
.h4_c01020{height:72.012995px;}
.h5_c01020{height:72.022496px;}
.h6_c01020{height:83.976687px;}
.h9_c01020{height:95.973356px;}
.h2_c01020{height:102.000000px;}
.h0_c01020{height:1246.320000px;}
.h1_c01020{height:1246.500000px;}
.w0_c01020{width:896.100000px;}
.w1_c01020{width:896.250000px;}
.x0_c01020{left:0.000000px;}
.x3_c01020{left:149.040000px;}
.x30_c01020{left:153.767670px;}
.x1a_c01020{left:157.101726px;}
.x44_c01020{left:185.666001px;}
.x1b_c01020{left:190.208118px;}
.x26_c01020{left:200.241451px;}
.x4_c01020{left:213.468000px;}
.x27_c01020{left:232.487533px;}
.x5_c01020{left:236.275500px;}
.x39_c01020{left:263.048721px;}
.x31_c01020{left:264.622316px;}
.x1c_c01020{left:266.004534px;}
.x12_c01020{left:268.168500px;}
.x45_c01020{left:273.482596px;}
.xf_c01020{left:278.377500px;}
.x6_c01020{left:279.472500px;}
.x3a_c01020{left:293.684234px;}
.x28_c01020{left:297.645202px;}
.x32_c01020{left:319.662162px;}
.x13_c01020{left:321.161454px;}
.x7_c01020{left:345.345000px;}
.x3b_c01020{left:351.066024px;}
.x29_c01020{left:352.750095px;}
.x46_c01020{left:360.416576px;}
.x10_c01020{left:367.732500px;}
.x3c_c01020{left:372.900977px;}
.x2a_c01020{left:375.632881px;}
.x14_c01020{left:387.095454px;}
.x8_c01020{left:388.822500px;}
.x33_c01020{left:397.135832px;}
.x1d_c01020{left:398.322267px;}
.x2b_c01020{left:408.478477px;}
.x9_c01020{left:411.508500px;}
.x1e_c01020{left:430.889085px;}
.x3d_c01020{left:438.714582px;}
.x11_c01020{left:442.606500px;}
.x1_c01020{left:444.420000px;}
.x1f_c01020{left:461.942076px;}
.x2_c01020{left:466.560000px;}
.x2c_c01020{left:494.861193px;}
.x47_c01020{left:504.068780px;}
.x15_c01020{left:509.450976px;}
.x3e_c01020{left:516.158314px;}
.xa_c01020{left:521.434500px;}
.x34_c01020{left:528.165604px;}
.x2d_c01020{left:539.499666px;}
.x3f_c01020{left:548.640264px;}
.x20_c01020{left:552.116909px;}
.xb_c01020{left:554.368500px;}
.x35_c01020{left:561.267746px;}
.x48_c01020{left:581.142629px;}
.x2e_c01020{left:583.444219px;}
.x21_c01020{left:585.301280px;}
.x40_c01020{left:593.638068px;}
.x36_c01020{left:595.015854px;}
.xc_c01020{left:608.934000px;}
.x49_c01020{left:613.538700px;}
.x22_c01020{left:629.879812px;}
.xd_c01020{left:643.233000px;}
.x16_c01020{left:651.284001px;}
.x4a_c01020{left:656.869326px;}
.x41_c01020{left:680.553803px;}
.x2f_c01020{left:683.327002px;}
.x4b_c01020{left:689.196467px;}
.x37_c01020{left:693.842700px;}
.x17_c01020{left:697.169569px;}
.x18_c01020{left:717.787431px;}
.x38_c01020{left:725.443059px;}
.x23_c01020{left:727.707696px;}
.xe_c01020{left:741.546000px;}
.x24_c01020{left:750.923263px;}
.x19_c01020{left:786.423227px;}
.x25_c01020{left:794.379192px;}
.x42_c01020{left:801.913251px;}
.x4d_c01020{left:816.024056px;}
.x43_c01020{left:825.269409px;}
.x4c_c01020{left:833.012007px;}
@media print{
.v0_c01020{vertical-align:0.000000pt;}
.ls0_c01020{letter-spacing:0.000000pt;}
.ws0_c01020{word-spacing:0.000000pt;}
.fs8_c01020{font-size:31.991119pt;}
.fs6_c01020{font-size:58.650384pt;}
.fs1_c01020{font-size:58.666667pt;}
.fs5_c01020{font-size:63.982238pt;}
.fs2_c01020{font-size:64.011551pt;}
.fs3_c01020{font-size:64.019997pt;}
.fs4_c01020{font-size:74.645944pt;}
.fs7_c01020{font-size:85.309650pt;}
.fs0_c01020{font-size:90.666667pt;}
.y0_c01020{bottom:0.000000pt;}
.y57_c01020{bottom:692.384448pt;}
.y56_c01020{bottom:692.709125pt;}
.y55_c01020{bottom:697.571757pt;}
.y54_c01020{bottom:698.664789pt;}
.y53_c01020{bottom:700.129867pt;}
.y52_c01020{bottom:701.225229pt;}
.y51_c01020{bottom:703.831219pt;}
.y50_c01020{bottom:706.061565pt;}
.y4f_c01020{bottom:708.688328pt;}
.y4e_c01020{bottom:711.627704pt;}
.y4d_c01020{bottom:713.679248pt;}
.y4c_c01020{bottom:714.596923pt;}
.y4b_c01020{bottom:715.694667pt;}
.y4a_c01020{bottom:724.954797pt;}
.y49_c01020{bottom:725.661803pt;}
.y48_c01020{bottom:729.334300pt;}
.y47_c01020{bottom:731.963588pt;}
.y46_c01020{bottom:733.324964pt;}
.y45_c01020{bottom:734.307179pt;}
.y44_c01020{bottom:736.650885pt;}
.y43_c01020{bottom:738.642711pt;}
.y42_c01020{bottom:739.303617pt;}
.y41_c01020{bottom:741.039696pt;}
.y40_c01020{bottom:741.966149pt;}
.y3f_c01020{bottom:745.252341pt;}
.y3e_c01020{bottom:760.609791pt;}
.y3d_c01020{bottom:761.538187pt;}
.y3c_c01020{bottom:764.440817pt;}
.y3b_c01020{bottom:765.432495pt;}
.y3a_c01020{bottom:766.404999pt;}
.y39_c01020{bottom:770.252397pt;}
.y38_c01020{bottom:772.527752pt;}
.y37_c01020{bottom:774.144628pt;}
.y36_c01020{bottom:775.103264pt;}
.y35_c01020{bottom:777.399247pt;}
.y34_c01020{bottom:792.624095pt;}
.y33_c01020{bottom:793.578513pt;}
.y32_c01020{bottom:796.423472pt;}
.y31_c01020{bottom:797.674536pt;}
.y30_c01020{bottom:798.946395pt;}
.y2f_c01020{bottom:801.406927pt;}
.y2e_c01020{bottom:802.342744pt;}
.y2d_c01020{bottom:802.995060pt;}
.y2c_c01020{bottom:804.564780pt;}
.y2b_c01020{bottom:806.419709pt;}
.y2a_c01020{bottom:807.337924pt;}
.y29_c01020{bottom:808.592484pt;}
.y28_c01020{bottom:821.872599pt;}
.y27_c01020{bottom:823.109809pt;}
.y26_c01020{bottom:823.770709pt;}
.y25_c01020{bottom:826.556860pt;}
.y24_c01020{bottom:827.826692pt;}
.y23_c01020{bottom:828.771296pt;}
.y22_c01020{bottom:831.338703pt;}
.y21_c01020{bottom:832.223247pt;}
.y20_c01020{bottom:833.150972pt;}
.y1f_c01020{bottom:836.919197pt;}
.y1e_c01020{bottom:839.077815pt;}
.y1d_c01020{bottom:840.021116pt;}
.y1c_c01020{bottom:853.692984pt;}
.y1b_c01020{bottom:856.013669pt;}
.y1a_c01020{bottom:856.710792pt;}
.y19_c01020{bottom:858.262256pt;}
.y18_c01020{bottom:859.722115pt;}
.y17_c01020{bottom:863.057856pt;}
.y16_c01020{bottom:864.541629pt;}
.y15_c01020{bottom:867.194891pt;}
.y14_c01020{bottom:869.424224pt;}
.y13_c01020{bottom:871.216000pt;}
.y12_c01020{bottom:929.464000pt;}
.y11_c01020{bottom:931.127867pt;}
.y10_c01020{bottom:933.113533pt;}
.yf_c01020{bottom:934.049833pt;}
.ye_c01020{bottom:934.561333pt;}
.yd_c01020{bottom:955.162683pt;}
.yc_c01020{bottom:956.823080pt;}
.yb_c01020{bottom:957.402352pt;}
.ya_c01020{bottom:958.323903pt;}
.y9_c01020{bottom:958.880121pt;}
.y8_c01020{bottom:960.736649pt;}
.y7_c01020{bottom:961.119791pt;}
.y6_c01020{bottom:961.854077pt;}
.y5_c01020{bottom:962.966591pt;}
.y4_c01020{bottom:963.696140pt;}
.y3_c01020{bottom:964.081333pt;}
.y2_c01020{bottom:993.850667pt;}
.y1_c01020{bottom:1041.006667pt;}
.ha_c01020{height:31.991119pt;}
.h8_c01020{height:58.650384pt;}
.h3_c01020{height:58.666667pt;}
.h7_c01020{height:63.982238pt;}
.h4_c01020{height:64.011551pt;}
.h5_c01020{height:64.019997pt;}
.h6_c01020{height:74.645944pt;}
.h9_c01020{height:85.309650pt;}
.h2_c01020{height:90.666667pt;}
.h0_c01020{height:1107.840000pt;}
.h1_c01020{height:1108.000000pt;}
.w0_c01020{width:796.533333pt;}
.w1_c01020{width:796.666667pt;}
.x0_c01020{left:0.000000pt;}
.x3_c01020{left:132.480000pt;}
.x30_c01020{left:136.682373pt;}
.x1a_c01020{left:139.645979pt;}
.x44_c01020{left:165.036445pt;}
.x1b_c01020{left:169.073883pt;}
.x26_c01020{left:177.992401pt;}
.x4_c01020{left:189.749333pt;}
.x27_c01020{left:206.655585pt;}
.x5_c01020{left:210.022667pt;}
.x39_c01020{left:233.821085pt;}
.x31_c01020{left:235.219836pt;}
.x1c_c01020{left:236.448475pt;}
.x12_c01020{left:238.372000pt;}
.x45_c01020{left:243.095641pt;}
.xf_c01020{left:247.446667pt;}
.x6_c01020{left:248.420000pt;}
.x3a_c01020{left:261.052652pt;}
.x28_c01020{left:264.573513pt;}
.x32_c01020{left:284.144144pt;}
.x13_c01020{left:285.476848pt;}
.x7_c01020{left:306.973333pt;}
.x3b_c01020{left:312.058688pt;}
.x29_c01020{left:313.555640pt;}
.x46_c01020{left:320.370289pt;}
.x10_c01020{left:326.873333pt;}
.x3c_c01020{left:331.467535pt;}
.x2a_c01020{left:333.895895pt;}
.x14_c01020{left:344.084848pt;}
.x8_c01020{left:345.620000pt;}
.x33_c01020{left:353.009628pt;}
.x1d_c01020{left:354.064237pt;}
.x2b_c01020{left:363.091980pt;}
.x9_c01020{left:365.785333pt;}
.x1e_c01020{left:383.012520pt;}
.x3d_c01020{left:389.968517pt;}
.x11_c01020{left:393.428000pt;}
.x1_c01020{left:395.040000pt;}
.x1f_c01020{left:410.615179pt;}
.x2_c01020{left:414.720000pt;}
.x2c_c01020{left:439.876616pt;}
.x47_c01020{left:448.061137pt;}
.x15_c01020{left:452.845312pt;}
.x3e_c01020{left:458.807391pt;}
.xa_c01020{left:463.497333pt;}
.x34_c01020{left:469.480537pt;}
.x2d_c01020{left:479.555259pt;}
.x3f_c01020{left:487.680235pt;}
.x20_c01020{left:490.770585pt;}
.xb_c01020{left:492.772000pt;}
.x35_c01020{left:498.904663pt;}
.x48_c01020{left:516.571225pt;}
.x2e_c01020{left:518.617084pt;}
.x21_c01020{left:520.267804pt;}
.x40_c01020{left:527.678283pt;}
.x36_c01020{left:528.902981pt;}
.xc_c01020{left:541.274667pt;}
.x49_c01020{left:545.367733pt;}
.x22_c01020{left:559.893167pt;}
.xd_c01020{left:571.762667pt;}
.x16_c01020{left:578.919112pt;}
.x4a_c01020{left:583.883845pt;}
.x41_c01020{left:604.936713pt;}
.x2f_c01020{left:607.401780pt;}
.x4b_c01020{left:612.619081pt;}
.x37_c01020{left:616.749067pt;}
.x17_c01020{left:619.706284pt;}
.x18_c01020{left:638.033272pt;}
.x38_c01020{left:644.838275pt;}
.x23_c01020{left:646.851285pt;}
.xe_c01020{left:659.152000pt;}
.x24_c01020{left:667.487345pt;}
.x19_c01020{left:699.042868pt;}
.x25_c01020{left:706.114837pt;}
.x42_c01020{left:712.811779pt;}
.x4d_c01020{left:725.354716pt;}
.x43_c01020{left:733.572808pt;}
.x4c_c01020{left:740.455117pt;}
}





/* 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_c01021 {
    display:none;
  }
  .loading-indicator_c01021.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01021 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_c01021 { 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_c01021" -> "#page-container .classname_c01021")
 */
.pf_c01021 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01021 { /* 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_c01021.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01021 { /* 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_c01021 { /* 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_c01021 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01021 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01021 {overflow:visible;}
  }
}
.c_c01021 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01021 { /* 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_c01021:after { /* webkit #35443 */
  content: '';
}
.t_c01021:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01021 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 */
}
.__c01021 { /* 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_c01021 { /* info for Javascript */
  display:none;
}
.l_c01021 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01021 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01021 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01021: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_c01021 {
    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_c01021.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01021.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_c01021 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01021{font-family:sans-serif;visibility:hidden;}
.sc__c01021{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01021{-webkit-text-stroke:0px transparent;}
}
.y0_c01021{bottom:0.000000px;}
.h0_c01021{height:1246.320000px;}
.h1_c01021{height:1246.500000px;}
.w0_c01021{width:896.100000px;}
.w1_c01021{width:896.250000px;}
.x0_c01021{left:0.000000px;}
@media print{
.y0_c01021{bottom:0.000000pt;}
.h0_c01021{height:1107.840000pt;}
.h1_c01021{height:1108.000000pt;}
.w0_c01021{width:796.533333pt;}
.w1_c01021{width:796.666667pt;}
.x0_c01021{left:0.000000pt;}
}





/* 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_c01022 {
    display:none;
  }
  .loading-indicator_c01022.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01022 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_c01022 { 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_c01022" -> "#page-container .classname_c01022")
 */
.pf_c01022 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01022 { /* 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_c01022.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01022 { /* 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_c01022 { /* 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_c01022 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01022 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01022 {overflow:visible;}
  }
}
.c_c01022 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01022 { /* 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_c01022:after { /* webkit #35443 */
  content: '';
}
.t_c01022:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01022 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 */
}
.__c01022 { /* 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_c01022 { /* info for Javascript */
  display:none;
}
.l_c01022 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01022 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01022 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01022: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_c01022 {
    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_c01022.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01022.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_c01022 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01022{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01022;src:url('chunks/assets/font_fabf4b590f7fb32aea93ffb2.woff2')format("woff");}.ff1_c01022{font-family:ff1_c01022;line-height:1.000000;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;}
.m6f_c01022{transform:matrix(0.158959,0.007797,-0.012248,0.249700,0,0);-ms-transform:matrix(0.158959,0.007797,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.158959,0.007797,-0.012248,0.249700,0,0);}
.m68_c01022{transform:matrix(0.168348,0.008257,-0.012248,0.249700,0,0);-ms-transform:matrix(0.168348,0.008257,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.168348,0.008257,-0.012248,0.249700,0,0);}
.m38_c01022{transform:matrix(0.169376,0.008308,-0.012248,0.249700,0,0);-ms-transform:matrix(0.169376,0.008308,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.169376,0.008308,-0.012248,0.249700,0,0);}
.m35_c01022{transform:matrix(0.170915,0.008383,-0.012248,0.249700,0,0);-ms-transform:matrix(0.170915,0.008383,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.170915,0.008383,-0.012248,0.249700,0,0);}
.m79_c01022{transform:matrix(0.171559,0.008415,-0.012248,0.249700,0,0);-ms-transform:matrix(0.171559,0.008415,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.171559,0.008415,-0.012248,0.249700,0,0);}
.m6b_c01022{transform:matrix(0.172962,0.008484,-0.012248,0.249700,0,0);-ms-transform:matrix(0.172962,0.008484,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.172962,0.008484,-0.012248,0.249700,0,0);}
.m9f_c01022{transform:matrix(0.174975,0.010169,-0.014505,0.249579,0,0);-ms-transform:matrix(0.174975,0.010169,-0.014505,0.249579,0,0);-webkit-transform:matrix(0.174975,0.010169,-0.014505,0.249579,0,0);}
.m71_c01022{transform:matrix(0.178460,0.008753,-0.012248,0.249700,0,0);-ms-transform:matrix(0.178460,0.008753,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.178460,0.008753,-0.012248,0.249700,0,0);}
.ma0_c01022{transform:matrix(0.179627,0.010439,-0.014505,0.249579,0,0);-ms-transform:matrix(0.179627,0.010439,-0.014505,0.249579,0,0);-webkit-transform:matrix(0.179627,0.010439,-0.014505,0.249579,0,0);}
.m72_c01022{transform:matrix(0.180758,0.008866,-0.012248,0.249700,0,0);-ms-transform:matrix(0.180758,0.008866,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.180758,0.008866,-0.012248,0.249700,0,0);}
.m7b_c01022{transform:matrix(0.181177,0.008887,-0.012248,0.249700,0,0);-ms-transform:matrix(0.181177,0.008887,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.181177,0.008887,-0.012248,0.249700,0,0);}
.m3b_c01022{transform:matrix(0.182311,0.008942,-0.012248,0.249700,0,0);-ms-transform:matrix(0.182311,0.008942,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.182311,0.008942,-0.012248,0.249700,0,0);}
.mb7_c01022{transform:matrix(0.183890,0.010687,-0.014505,0.249579,0,0);-ms-transform:matrix(0.183890,0.010687,-0.014505,0.249579,0,0);-webkit-transform:matrix(0.183890,0.010687,-0.014505,0.249579,0,0);}
.ma2_c01022{transform:matrix(0.183975,0.010692,-0.014505,0.249579,0,0);-ms-transform:matrix(0.183975,0.010692,-0.014505,0.249579,0,0);-webkit-transform:matrix(0.183975,0.010692,-0.014505,0.249579,0,0);}
.ma4_c01022{transform:matrix(0.184818,0.010741,-0.014505,0.249579,0,0);-ms-transform:matrix(0.184818,0.010741,-0.014505,0.249579,0,0);-webkit-transform:matrix(0.184818,0.010741,-0.014505,0.249579,0,0);}
.m65_c01022{transform:matrix(0.185087,0.009078,-0.012248,0.249700,0,0);-ms-transform:matrix(0.185087,0.009078,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.185087,0.009078,-0.012248,0.249700,0,0);}
.m4e_c01022{transform:matrix(0.185712,0.009109,-0.012248,0.249700,0,0);-ms-transform:matrix(0.185712,0.009109,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.185712,0.009109,-0.012248,0.249700,0,0);}
.m6d_c01022{transform:matrix(0.186081,0.009127,-0.012248,0.249700,0,0);-ms-transform:matrix(0.186081,0.009127,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.186081,0.009127,-0.012248,0.249700,0,0);}
.me6_c01022{transform:matrix(0.186707,0.012347,-0.016497,0.249455,0,0);-ms-transform:matrix(0.186707,0.012347,-0.016497,0.249455,0,0);-webkit-transform:matrix(0.186707,0.012347,-0.016497,0.249455,0,0);}
.m73_c01022{transform:matrix(0.187789,0.009211,-0.012248,0.249700,0,0);-ms-transform:matrix(0.187789,0.009211,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.187789,0.009211,-0.012248,0.249700,0,0);}
.m5f_c01022{transform:matrix(0.187874,0.009215,-0.012248,0.249700,0,0);-ms-transform:matrix(0.187874,0.009215,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.187874,0.009215,-0.012248,0.249700,0,0);}
.m67_c01022{transform:matrix(0.189432,0.009291,-0.012248,0.249700,0,0);-ms-transform:matrix(0.189432,0.009291,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.189432,0.009291,-0.012248,0.249700,0,0);}
.ma9_c01022{transform:matrix(0.189865,0.011034,-0.014505,0.249579,0,0);-ms-transform:matrix(0.189865,0.011034,-0.014505,0.249579,0,0);-webkit-transform:matrix(0.189865,0.011034,-0.014505,0.249579,0,0);}
.m77_c01022{transform:matrix(0.190601,0.009349,-0.012248,0.249700,0,0);-ms-transform:matrix(0.190601,0.009349,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.190601,0.009349,-0.012248,0.249700,0,0);}
.mbf_c01022{transform:matrix(0.191053,0.011103,-0.014505,0.249579,0,0);-ms-transform:matrix(0.191053,0.011103,-0.014505,0.249579,0,0);-webkit-transform:matrix(0.191053,0.011103,-0.014505,0.249579,0,0);}
.m47_c01022{transform:matrix(0.191145,0.009375,-0.012248,0.249700,0,0);-ms-transform:matrix(0.191145,0.009375,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.191145,0.009375,-0.012248,0.249700,0,0);}
.me5_c01022{transform:matrix(0.192165,0.012708,-0.016497,0.249455,0,0);-ms-transform:matrix(0.192165,0.012708,-0.016497,0.249455,0,0);-webkit-transform:matrix(0.192165,0.012708,-0.016497,0.249455,0,0);}
.m4d_c01022{transform:matrix(0.192923,0.009463,-0.012248,0.249700,0,0);-ms-transform:matrix(0.192923,0.009463,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.192923,0.009463,-0.012248,0.249700,0,0);}
.ma7_c01022{transform:matrix(0.193084,0.011221,-0.014505,0.249579,0,0);-ms-transform:matrix(0.193084,0.011221,-0.014505,0.249579,0,0);-webkit-transform:matrix(0.193084,0.011221,-0.014505,0.249579,0,0);}
.maf_c01022{transform:matrix(0.193479,0.011244,-0.014505,0.249579,0,0);-ms-transform:matrix(0.193479,0.011244,-0.014505,0.249579,0,0);-webkit-transform:matrix(0.193479,0.011244,-0.014505,0.249579,0,0);}
.mbd_c01022{transform:matrix(0.194716,0.011316,-0.014505,0.249579,0,0);-ms-transform:matrix(0.194716,0.011316,-0.014505,0.249579,0,0);-webkit-transform:matrix(0.194716,0.011316,-0.014505,0.249579,0,0);}
.m6c_c01022{transform:matrix(0.195255,0.009577,-0.012248,0.249700,0,0);-ms-transform:matrix(0.195255,0.009577,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.195255,0.009577,-0.012248,0.249700,0,0);}
.mb5_c01022{transform:matrix(0.196184,0.011401,-0.014505,0.249579,0,0);-ms-transform:matrix(0.196184,0.011401,-0.014505,0.249579,0,0);-webkit-transform:matrix(0.196184,0.011401,-0.014505,0.249579,0,0);}
.m55_c01022{transform:matrix(0.196219,0.009624,-0.012248,0.249700,0,0);-ms-transform:matrix(0.196219,0.009624,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.196219,0.009624,-0.012248,0.249700,0,0);}
.mbb_c01022{transform:matrix(0.196404,0.011414,-0.014505,0.249579,0,0);-ms-transform:matrix(0.196404,0.011414,-0.014505,0.249579,0,0);-webkit-transform:matrix(0.196404,0.011414,-0.014505,0.249579,0,0);}
.m5a_c01022{transform:matrix(0.196499,0.009638,-0.012248,0.249700,0,0);-ms-transform:matrix(0.196499,0.009638,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.196499,0.009638,-0.012248,0.249700,0,0);}
.mc6_c01022{transform:matrix(0.196998,0.011449,-0.014505,0.249579,0,0);-ms-transform:matrix(0.196998,0.011449,-0.014505,0.249579,0,0);-webkit-transform:matrix(0.196998,0.011449,-0.014505,0.249579,0,0);}
.me2_c01022{transform:matrix(0.197494,0.013061,-0.016497,0.249455,0,0);-ms-transform:matrix(0.197494,0.013061,-0.016497,0.249455,0,0);-webkit-transform:matrix(0.197494,0.013061,-0.016497,0.249455,0,0);}
.m9e_c01022{transform:matrix(0.197502,0.011478,-0.014505,0.249579,0,0);-ms-transform:matrix(0.197502,0.011478,-0.014505,0.249579,0,0);-webkit-transform:matrix(0.197502,0.011478,-0.014505,0.249579,0,0);}
.me8_c01022{transform:matrix(0.198112,0.013102,-0.016497,0.249455,0,0);-ms-transform:matrix(0.198112,0.013102,-0.016497,0.249455,0,0);-webkit-transform:matrix(0.198112,0.013102,-0.016497,0.249455,0,0);}
.m56_c01022{transform:matrix(0.198172,0.009720,-0.012248,0.249700,0,0);-ms-transform:matrix(0.198172,0.009720,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.198172,0.009720,-0.012248,0.249700,0,0);}
.m101_c01022{transform:matrix(0.198285,0.013510,-0.016995,0.249422,0,0);-ms-transform:matrix(0.198285,0.013510,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.198285,0.013510,-0.016995,0.249422,0,0);}
.m102_c01022{transform:matrix(0.198505,0.013525,-0.016995,0.249422,0,0);-ms-transform:matrix(0.198505,0.013525,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.198505,0.013525,-0.016995,0.249422,0,0);}
.m6e_c01022{transform:matrix(0.198726,0.009747,-0.012248,0.249700,0,0);-ms-transform:matrix(0.198726,0.009747,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.198726,0.009747,-0.012248,0.249700,0,0);}
.m7d_c01022{transform:matrix(0.199285,0.009775,-0.012248,0.249700,0,0);-ms-transform:matrix(0.199285,0.009775,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.199285,0.009775,-0.012248,0.249700,0,0);}
.meb_c01022{transform:matrix(0.199345,0.013183,-0.016497,0.249455,0,0);-ms-transform:matrix(0.199345,0.013183,-0.016497,0.249455,0,0);-webkit-transform:matrix(0.199345,0.013183,-0.016497,0.249455,0,0);}
.m53_c01022{transform:matrix(0.200164,0.009818,-0.012248,0.249700,0,0);-ms-transform:matrix(0.200164,0.009818,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.200164,0.009818,-0.012248,0.249700,0,0);}
.m70_c01022{transform:matrix(0.200169,0.009818,-0.012248,0.249700,0,0);-ms-transform:matrix(0.200169,0.009818,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.200169,0.009818,-0.012248,0.249700,0,0);}
.mbc_c01022{transform:matrix(0.200317,0.011642,-0.014505,0.249579,0,0);-ms-transform:matrix(0.200317,0.011642,-0.014505,0.249579,0,0);-webkit-transform:matrix(0.200317,0.011642,-0.014505,0.249579,0,0);}
.m37_c01022{transform:matrix(0.200394,0.009829,-0.012248,0.249700,0,0);-ms-transform:matrix(0.200394,0.009829,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.200394,0.009829,-0.012248,0.249700,0,0);}
.m39_c01022{transform:matrix(0.201133,0.009865,-0.012248,0.249700,0,0);-ms-transform:matrix(0.201133,0.009865,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.201133,0.009865,-0.012248,0.249700,0,0);}
.ma3_c01022{transform:matrix(0.201320,0.011700,-0.014505,0.249579,0,0);-ms-transform:matrix(0.201320,0.011700,-0.014505,0.249579,0,0);-webkit-transform:matrix(0.201320,0.011700,-0.014505,0.249579,0,0);}
.m36_c01022{transform:matrix(0.201403,0.009879,-0.012248,0.249700,0,0);-ms-transform:matrix(0.201403,0.009879,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.201403,0.009879,-0.012248,0.249700,0,0);}
.m103_c01022{transform:matrix(0.202196,0.013777,-0.016995,0.249422,0,0);-ms-transform:matrix(0.202196,0.013777,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.202196,0.013777,-0.016995,0.249422,0,0);}
.m63_c01022{transform:matrix(0.202512,0.009933,-0.012248,0.249700,0,0);-ms-transform:matrix(0.202512,0.009933,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.202512,0.009933,-0.012248,0.249700,0,0);}
.mb2_c01022{transform:matrix(0.203012,0.011798,-0.014505,0.249579,0,0);-ms-transform:matrix(0.203012,0.011798,-0.014505,0.249579,0,0);-webkit-transform:matrix(0.203012,0.011798,-0.014505,0.249579,0,0);}
.mc2_c01022{transform:matrix(0.203512,0.011827,-0.014505,0.249579,0,0);-ms-transform:matrix(0.203512,0.011827,-0.014505,0.249579,0,0);-webkit-transform:matrix(0.203512,0.011827,-0.014505,0.249579,0,0);}
.ma6_c01022{transform:matrix(0.203631,0.011834,-0.014505,0.249579,0,0);-ms-transform:matrix(0.203631,0.011834,-0.014505,0.249579,0,0);-webkit-transform:matrix(0.203631,0.011834,-0.014505,0.249579,0,0);}
.m76_c01022{transform:matrix(0.203915,0.010002,-0.012248,0.249700,0,0);-ms-transform:matrix(0.203915,0.010002,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.203915,0.010002,-0.012248,0.249700,0,0);}
.m33_c01022{transform:matrix(0.204519,0.010031,-0.012248,0.249700,0,0);-ms-transform:matrix(0.204519,0.010031,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.204519,0.010031,-0.012248,0.249700,0,0);}
.m100_c01022{transform:matrix(0.205264,0.013986,-0.016995,0.249422,0,0);-ms-transform:matrix(0.205264,0.013986,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.205264,0.013986,-0.016995,0.249422,0,0);}
.me0_c01022{transform:matrix(0.205980,0.013622,-0.016497,0.249455,0,0);-ms-transform:matrix(0.205980,0.013622,-0.016497,0.249455,0,0);-webkit-transform:matrix(0.205980,0.013622,-0.016497,0.249455,0,0);}
.mf2_c01022{transform:matrix(0.206414,0.013030,-0.015750,0.249503,0,0);-ms-transform:matrix(0.206414,0.013030,-0.015750,0.249503,0,0);-webkit-transform:matrix(0.206414,0.013030,-0.015750,0.249503,0,0);}
.mb0_c01022{transform:matrix(0.206477,0.012000,-0.014505,0.249579,0,0);-ms-transform:matrix(0.206477,0.012000,-0.014505,0.249579,0,0);-webkit-transform:matrix(0.206477,0.012000,-0.014505,0.249579,0,0);}
.mb4_c01022{transform:matrix(0.206811,0.012019,-0.014505,0.249579,0,0);-ms-transform:matrix(0.206811,0.012019,-0.014505,0.249579,0,0);-webkit-transform:matrix(0.206811,0.012019,-0.014505,0.249579,0,0);}
.m34_c01022{transform:matrix(0.206966,0.010151,-0.012248,0.249700,0,0);-ms-transform:matrix(0.206966,0.010151,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.206966,0.010151,-0.012248,0.249700,0,0);}
.m4b_c01022{transform:matrix(0.207526,0.010179,-0.012248,0.249700,0,0);-ms-transform:matrix(0.207526,0.010179,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.207526,0.010179,-0.012248,0.249700,0,0);}
.m51_c01022{transform:matrix(0.207785,0.010192,-0.012248,0.249700,0,0);-ms-transform:matrix(0.207785,0.010192,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.207785,0.010192,-0.012248,0.249700,0,0);}
.m5b_c01022{transform:matrix(0.207815,0.010193,-0.012248,0.249700,0,0);-ms-transform:matrix(0.207815,0.010193,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.207815,0.010193,-0.012248,0.249700,0,0);}
.ma1_c01022{transform:matrix(0.208393,0.012111,-0.014505,0.249579,0,0);-ms-transform:matrix(0.208393,0.012111,-0.014505,0.249579,0,0);-webkit-transform:matrix(0.208393,0.012111,-0.014505,0.249579,0,0);}
.m6a_c01022{transform:matrix(0.208574,0.010230,-0.012248,0.249700,0,0);-ms-transform:matrix(0.208574,0.010230,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.208574,0.010230,-0.012248,0.249700,0,0);}
.me3_c01022{transform:matrix(0.208654,0.013799,-0.016497,0.249455,0,0);-ms-transform:matrix(0.208654,0.013799,-0.016497,0.249455,0,0);-webkit-transform:matrix(0.208654,0.013799,-0.016497,0.249455,0,0);}
.mb9_c01022{transform:matrix(0.208853,0.012138,-0.014505,0.249579,0,0);-ms-transform:matrix(0.208853,0.012138,-0.014505,0.249579,0,0);-webkit-transform:matrix(0.208853,0.012138,-0.014505,0.249579,0,0);}
.m69_c01022{transform:matrix(0.209298,0.010266,-0.012248,0.249700,0,0);-ms-transform:matrix(0.209298,0.010266,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.209298,0.010266,-0.012248,0.249700,0,0);}
.mef_c01022{transform:matrix(0.209433,0.013221,-0.015750,0.249503,0,0);-ms-transform:matrix(0.209433,0.013221,-0.015750,0.249503,0,0);-webkit-transform:matrix(0.209433,0.013221,-0.015750,0.249503,0,0);}
.m50_c01022{transform:matrix(0.209553,0.010278,-0.012248,0.249700,0,0);-ms-transform:matrix(0.209553,0.010278,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.209553,0.010278,-0.012248,0.249700,0,0);}
.m3a_c01022{transform:matrix(0.209803,0.010291,-0.012248,0.249700,0,0);-ms-transform:matrix(0.209803,0.010291,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.209803,0.010291,-0.012248,0.249700,0,0);}
.mf6_c01022{transform:matrix(0.210137,0.013265,-0.015750,0.249503,0,0);-ms-transform:matrix(0.210137,0.013265,-0.015750,0.249503,0,0);-webkit-transform:matrix(0.210137,0.013265,-0.015750,0.249503,0,0);}
.m9c_c01022{transform:matrix(0.210859,0.012254,-0.014505,0.249579,0,0);-ms-transform:matrix(0.210859,0.012254,-0.014505,0.249579,0,0);-webkit-transform:matrix(0.210859,0.012254,-0.014505,0.249579,0,0);}
.m7e_c01022{transform:matrix(0.211196,0.010359,-0.012248,0.249700,0,0);-ms-transform:matrix(0.211196,0.010359,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.211196,0.010359,-0.012248,0.249700,0,0);}
.ma5_c01022{transform:matrix(0.211229,0.012276,-0.014505,0.249579,0,0);-ms-transform:matrix(0.211229,0.012276,-0.014505,0.249579,0,0);-webkit-transform:matrix(0.211229,0.012276,-0.014505,0.249579,0,0);}
.m57_c01022{transform:matrix(0.211855,0.010391,-0.012248,0.249700,0,0);-ms-transform:matrix(0.211855,0.010391,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.211855,0.010391,-0.012248,0.249700,0,0);}
.m4f_c01022{transform:matrix(0.212260,0.010411,-0.012248,0.249700,0,0);-ms-transform:matrix(0.212260,0.010411,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.212260,0.010411,-0.012248,0.249700,0,0);}
.me1_c01022{transform:matrix(0.213000,0.014086,-0.016497,0.249455,0,0);-ms-transform:matrix(0.213000,0.014086,-0.016497,0.249455,0,0);-webkit-transform:matrix(0.213000,0.014086,-0.016497,0.249455,0,0);}
.m64_c01022{transform:matrix(0.213209,0.010458,-0.012248,0.249700,0,0);-ms-transform:matrix(0.213209,0.010458,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.213209,0.010458,-0.012248,0.249700,0,0);}
.mad_c01022{transform:matrix(0.213719,0.012421,-0.014505,0.249579,0,0);-ms-transform:matrix(0.213719,0.012421,-0.014505,0.249579,0,0);-webkit-transform:matrix(0.213719,0.012421,-0.014505,0.249579,0,0);}
.m74_c01022{transform:matrix(0.213873,0.010490,-0.012248,0.249700,0,0);-ms-transform:matrix(0.213873,0.010490,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.213873,0.010490,-0.012248,0.249700,0,0);}
.mc1_c01022{transform:matrix(0.213939,0.012433,-0.014505,0.249579,0,0);-ms-transform:matrix(0.213939,0.012433,-0.014505,0.249579,0,0);-webkit-transform:matrix(0.213939,0.012433,-0.014505,0.249579,0,0);}
.mee_c01022{transform:matrix(0.214224,0.013523,-0.015750,0.249503,0,0);-ms-transform:matrix(0.214224,0.013523,-0.015750,0.249503,0,0);-webkit-transform:matrix(0.214224,0.013523,-0.015750,0.249503,0,0);}
.m75_c01022{transform:matrix(0.214322,0.010512,-0.012248,0.249700,0,0);-ms-transform:matrix(0.214322,0.010512,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.214322,0.010512,-0.012248,0.249700,0,0);}
.m60_c01022{transform:matrix(0.214337,0.010513,-0.012248,0.249700,0,0);-ms-transform:matrix(0.214337,0.010513,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.214337,0.010513,-0.012248,0.249700,0,0);}
.mca_c01022{transform:matrix(0.214438,0.012462,-0.014505,0.249579,0,0);-ms-transform:matrix(0.214438,0.012462,-0.014505,0.249579,0,0);-webkit-transform:matrix(0.214438,0.012462,-0.014505,0.249579,0,0);}
.m97_c01022{transform:matrix(0.214698,0.012477,-0.014505,0.249579,0,0);-ms-transform:matrix(0.214698,0.012477,-0.014505,0.249579,0,0);-webkit-transform:matrix(0.214698,0.012477,-0.014505,0.249579,0,0);}
.m7a_c01022{transform:matrix(0.215546,0.010572,-0.012248,0.249700,0,0);-ms-transform:matrix(0.215546,0.010572,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.215546,0.010572,-0.012248,0.249700,0,0);}
.med_c01022{transform:matrix(0.216759,0.013683,-0.015750,0.249503,0,0);-ms-transform:matrix(0.216759,0.013683,-0.015750,0.249503,0,0);-webkit-transform:matrix(0.216759,0.013683,-0.015750,0.249503,0,0);}
.mdd_c01022{transform:matrix(0.216917,0.014997,-0.017243,0.249405,0,0);-ms-transform:matrix(0.216917,0.014997,-0.017243,0.249405,0,0);-webkit-transform:matrix(0.216917,0.014997,-0.017243,0.249405,0,0);}
.m106_c01022{transform:matrix(0.216992,0.014785,-0.016995,0.249422,0,0);-ms-transform:matrix(0.216992,0.014785,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.216992,0.014785,-0.016995,0.249422,0,0);}
.m5e_c01022{transform:matrix(0.217059,0.010647,-0.012248,0.249700,0,0);-ms-transform:matrix(0.217059,0.010647,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.217059,0.010647,-0.012248,0.249700,0,0);}
.mc8_c01022{transform:matrix(0.217213,0.012624,-0.014505,0.249579,0,0);-ms-transform:matrix(0.217213,0.012624,-0.014505,0.249579,0,0);-webkit-transform:matrix(0.217213,0.012624,-0.014505,0.249579,0,0);}
.mc0_c01022{transform:matrix(0.218097,0.012675,-0.014505,0.249579,0,0);-ms-transform:matrix(0.218097,0.012675,-0.014505,0.249579,0,0);-webkit-transform:matrix(0.218097,0.012675,-0.014505,0.249579,0,0);}
.mf5_c01022{transform:matrix(0.218445,0.013790,-0.015750,0.249503,0,0);-ms-transform:matrix(0.218445,0.013790,-0.015750,0.249503,0,0);-webkit-transform:matrix(0.218445,0.013790,-0.015750,0.249503,0,0);}
.m58_c01022{transform:matrix(0.218687,0.010726,-0.012248,0.249700,0,0);-ms-transform:matrix(0.218687,0.010726,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.218687,0.010726,-0.012248,0.249700,0,0);}
.m105_c01022{transform:matrix(0.219331,0.014944,-0.016995,0.249422,0,0);-ms-transform:matrix(0.219331,0.014944,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.219331,0.014944,-0.016995,0.249422,0,0);}
.m7_c01022{transform:matrix(0.219951,0.010788,-0.012248,0.249700,0,0);-ms-transform:matrix(0.219951,0.010788,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.219951,0.010788,-0.012248,0.249700,0,0);}
.m66_c01022{transform:matrix(0.220675,0.010824,-0.012248,0.249700,0,0);-ms-transform:matrix(0.220675,0.010824,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.220675,0.010824,-0.012248,0.249700,0,0);}
.m78_c01022{transform:matrix(0.221738,0.010876,-0.012248,0.249700,0,0);-ms-transform:matrix(0.221738,0.010876,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.221738,0.010876,-0.012248,0.249700,0,0);}
.m62_c01022{transform:matrix(0.221743,0.010876,-0.012248,0.249700,0,0);-ms-transform:matrix(0.221743,0.010876,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.221743,0.010876,-0.012248,0.249700,0,0);}
.m48_c01022{transform:matrix(0.222178,0.010898,-0.012248,0.249700,0,0);-ms-transform:matrix(0.222178,0.010898,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.222178,0.010898,-0.012248,0.249700,0,0);}
.m7c_c01022{transform:matrix(0.222233,0.010900,-0.012248,0.249700,0,0);-ms-transform:matrix(0.222233,0.010900,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.222233,0.010900,-0.012248,0.249700,0,0);}
.m104_c01022{transform:matrix(0.222339,0.015149,-0.016995,0.249422,0,0);-ms-transform:matrix(0.222339,0.015149,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.222339,0.015149,-0.016995,0.249422,0,0);}
.m54_c01022{transform:matrix(0.222562,0.010916,-0.012248,0.249700,0,0);-ms-transform:matrix(0.222562,0.010916,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.222562,0.010916,-0.012248,0.249700,0,0);}
.m14_c01022{transform:matrix(0.223002,0.010938,-0.012248,0.249700,0,0);-ms-transform:matrix(0.223002,0.010938,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.223002,0.010938,-0.012248,0.249700,0,0);}
.mbe_c01022{transform:matrix(0.223618,0.012996,-0.014505,0.249579,0,0);-ms-transform:matrix(0.223618,0.012996,-0.014505,0.249579,0,0);-webkit-transform:matrix(0.223618,0.012996,-0.014505,0.249579,0,0);}
.mc_c01022{transform:matrix(0.224071,0.010990,-0.012248,0.249700,0,0);-ms-transform:matrix(0.224071,0.010990,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.224071,0.010990,-0.012248,0.249700,0,0);}
.m6_c01022{transform:matrix(0.224330,0.011003,-0.012248,0.249700,0,0);-ms-transform:matrix(0.224330,0.011003,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.224330,0.011003,-0.012248,0.249700,0,0);}
.me9_c01022{transform:matrix(0.224390,0.014839,-0.016497,0.249455,0,0);-ms-transform:matrix(0.224390,0.014839,-0.016497,0.249455,0,0);-webkit-transform:matrix(0.224390,0.014839,-0.016497,0.249455,0,0);}
.m2c_c01022{transform:matrix(0.224410,0.011007,-0.012248,0.249700,0,0);-ms-transform:matrix(0.224410,0.011007,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.224410,0.011007,-0.012248,0.249700,0,0);}
.m61_c01022{transform:matrix(0.224460,0.011010,-0.012248,0.249700,0,0);-ms-transform:matrix(0.224460,0.011010,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.224460,0.011010,-0.012248,0.249700,0,0);}
.m22_c01022{transform:matrix(0.224465,0.011010,-0.012248,0.249700,0,0);-ms-transform:matrix(0.224465,0.011010,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.224465,0.011010,-0.012248,0.249700,0,0);}
.m9d_c01022{transform:matrix(0.224876,0.013069,-0.014505,0.249579,0,0);-ms-transform:matrix(0.224876,0.013069,-0.014505,0.249579,0,0);-webkit-transform:matrix(0.224876,0.013069,-0.014505,0.249579,0,0);}
.mdc_c01022{transform:matrix(0.224988,0.015555,-0.017243,0.249405,0,0);-ms-transform:matrix(0.224988,0.015555,-0.017243,0.249405,0,0);-webkit-transform:matrix(0.224988,0.015555,-0.017243,0.249405,0,0);}
.m18_c01022{transform:matrix(0.225074,0.011040,-0.012248,0.249700,0,0);-ms-transform:matrix(0.225074,0.011040,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.225074,0.011040,-0.012248,0.249700,0,0);}
.mfd_c01022{transform:matrix(0.225138,0.015340,-0.016995,0.249422,0,0);-ms-transform:matrix(0.225138,0.015340,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.225138,0.015340,-0.016995,0.249422,0,0);}
.m32_c01022{transform:matrix(0.225424,0.011057,-0.012248,0.249700,0,0);-ms-transform:matrix(0.225424,0.011057,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.225424,0.011057,-0.012248,0.249700,0,0);}
.mda_c01022{transform:matrix(0.225572,0.015596,-0.017243,0.249405,0,0);-ms-transform:matrix(0.225572,0.015596,-0.017243,0.249405,0,0);-webkit-transform:matrix(0.225572,0.015596,-0.017243,0.249405,0,0);}
.m12_c01022{transform:matrix(0.225839,0.011077,-0.012248,0.249700,0,0);-ms-transform:matrix(0.225839,0.011077,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.225839,0.011077,-0.012248,0.249700,0,0);}
.mff_c01022{transform:matrix(0.226001,0.015399,-0.016995,0.249422,0,0);-ms-transform:matrix(0.226001,0.015399,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.226001,0.015399,-0.016995,0.249422,0,0);}
.m52_c01022{transform:matrix(0.226398,0.011105,-0.012248,0.249700,0,0);-ms-transform:matrix(0.226398,0.011105,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.226398,0.011105,-0.012248,0.249700,0,0);}
.m7f_c01022{transform:matrix(0.226732,0.011121,-0.012248,0.249700,0,0);-ms-transform:matrix(0.226732,0.011121,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.226732,0.011121,-0.012248,0.249700,0,0);}
.md5_c01022{transform:matrix(0.227013,0.015695,-0.017243,0.249405,0,0);-ms-transform:matrix(0.227013,0.015695,-0.017243,0.249405,0,0);-webkit-transform:matrix(0.227013,0.015695,-0.017243,0.249405,0,0);}
.m5d_c01022{transform:matrix(0.227382,0.011153,-0.012248,0.249700,0,0);-ms-transform:matrix(0.227382,0.011153,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.227382,0.011153,-0.012248,0.249700,0,0);}
.mf1_c01022{transform:matrix(0.227991,0.014392,-0.015750,0.249503,0,0);-ms-transform:matrix(0.227991,0.014392,-0.015750,0.249503,0,0);-webkit-transform:matrix(0.227991,0.014392,-0.015750,0.249503,0,0);}
.mb6_c01022{transform:matrix(0.228215,0.013263,-0.014505,0.249579,0,0);-ms-transform:matrix(0.228215,0.013263,-0.014505,0.249579,0,0);-webkit-transform:matrix(0.228215,0.013263,-0.014505,0.249579,0,0);}
.mf9_c01022{transform:matrix(0.228595,0.014430,-0.015750,0.249503,0,0);-ms-transform:matrix(0.228595,0.014430,-0.015750,0.249503,0,0);-webkit-transform:matrix(0.228595,0.014430,-0.015750,0.249503,0,0);}
.md0_c01022{transform:matrix(0.228634,0.013287,-0.014505,0.249579,0,0);-ms-transform:matrix(0.228634,0.013287,-0.014505,0.249579,0,0);-webkit-transform:matrix(0.228634,0.013287,-0.014505,0.249579,0,0);}
.m1b_c01022{transform:matrix(0.228920,0.011228,-0.012248,0.249700,0,0);-ms-transform:matrix(0.228920,0.011228,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.228920,0.011228,-0.012248,0.249700,0,0);}
.mf3_c01022{transform:matrix(0.229024,0.014457,-0.015750,0.249503,0,0);-ms-transform:matrix(0.229024,0.014457,-0.015750,0.249503,0,0);-webkit-transform:matrix(0.229024,0.014457,-0.015750,0.249503,0,0);}
.m4a_c01022{transform:matrix(0.229145,0.011239,-0.012248,0.249700,0,0);-ms-transform:matrix(0.229145,0.011239,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.229145,0.011239,-0.012248,0.249700,0,0);}
.m4c_c01022{transform:matrix(0.229499,0.011257,-0.012248,0.249700,0,0);-ms-transform:matrix(0.229499,0.011257,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.229499,0.011257,-0.012248,0.249700,0,0);}
.m9b_c01022{transform:matrix(0.229563,0.013341,-0.014505,0.249579,0,0);-ms-transform:matrix(0.229563,0.013341,-0.014505,0.249579,0,0);-webkit-transform:matrix(0.229563,0.013341,-0.014505,0.249579,0,0);}
.me4_c01022{transform:matrix(0.230097,0.015217,-0.016497,0.249455,0,0);-ms-transform:matrix(0.230097,0.015217,-0.016497,0.249455,0,0);-webkit-transform:matrix(0.230097,0.015217,-0.016497,0.249455,0,0);}
.m49_c01022{transform:matrix(0.230123,0.011287,-0.012248,0.249700,0,0);-ms-transform:matrix(0.230123,0.011287,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.230123,0.011287,-0.012248,0.249700,0,0);}
.mae_c01022{transform:matrix(0.230212,0.013379,-0.014505,0.249579,0,0);-ms-transform:matrix(0.230212,0.013379,-0.014505,0.249579,0,0);-webkit-transform:matrix(0.230212,0.013379,-0.014505,0.249579,0,0);}
.mb3_c01022{transform:matrix(0.230222,0.013380,-0.014505,0.249579,0,0);-ms-transform:matrix(0.230222,0.013380,-0.014505,0.249579,0,0);-webkit-transform:matrix(0.230222,0.013380,-0.014505,0.249579,0,0);}
.mb1_c01022{transform:matrix(0.230406,0.013390,-0.014505,0.249579,0,0);-ms-transform:matrix(0.230406,0.013390,-0.014505,0.249579,0,0);-webkit-transform:matrix(0.230406,0.013390,-0.014505,0.249579,0,0);}
.m95_c01022{transform:matrix(0.230811,0.013414,-0.014505,0.249579,0,0);-ms-transform:matrix(0.230811,0.013414,-0.014505,0.249579,0,0);-webkit-transform:matrix(0.230811,0.013414,-0.014505,0.249579,0,0);}
.mab_c01022{transform:matrix(0.230845,0.013416,-0.014505,0.249579,0,0);-ms-transform:matrix(0.230845,0.013416,-0.014505,0.249579,0,0);-webkit-transform:matrix(0.230845,0.013416,-0.014505,0.249579,0,0);}
.me7_c01022{transform:matrix(0.231015,0.015278,-0.016497,0.249455,0,0);-ms-transform:matrix(0.231015,0.015278,-0.016497,0.249455,0,0);-webkit-transform:matrix(0.231015,0.015278,-0.016497,0.249455,0,0);}
.m81_c01022{transform:matrix(0.231042,0.011332,-0.012248,0.249700,0,0);-ms-transform:matrix(0.231042,0.011332,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.231042,0.011332,-0.012248,0.249700,0,0);}
.m8b_c01022{transform:matrix(0.231157,0.011338,-0.012248,0.249700,0,0);-ms-transform:matrix(0.231157,0.011338,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.231157,0.011338,-0.012248,0.249700,0,0);}
.m94_c01022{transform:matrix(0.231255,0.013440,-0.014505,0.249579,0,0);-ms-transform:matrix(0.231255,0.013440,-0.014505,0.249579,0,0);-webkit-transform:matrix(0.231255,0.013440,-0.014505,0.249579,0,0);}
.m1_c01022{transform:matrix(0.231959,0.012306,-0.013245,0.249649,0,0);-ms-transform:matrix(0.231959,0.012306,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.231959,0.012306,-0.013245,0.249649,0,0);}
.m20_c01022{transform:matrix(0.232006,0.011380,-0.012248,0.249700,0,0);-ms-transform:matrix(0.232006,0.011380,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.232006,0.011380,-0.012248,0.249700,0,0);}
.maa_c01022{transform:matrix(0.232882,0.013534,-0.014505,0.249579,0,0);-ms-transform:matrix(0.232882,0.013534,-0.014505,0.249579,0,0);-webkit-transform:matrix(0.232882,0.013534,-0.014505,0.249579,0,0);}
.mea_c01022{transform:matrix(0.232996,0.015409,-0.016497,0.249455,0,0);-ms-transform:matrix(0.232996,0.015409,-0.016497,0.249455,0,0);-webkit-transform:matrix(0.232996,0.015409,-0.016497,0.249455,0,0);}
.mb8_c01022{transform:matrix(0.233656,0.013579,-0.014505,0.249579,0,0);-ms-transform:matrix(0.233656,0.013579,-0.014505,0.249579,0,0);-webkit-transform:matrix(0.233656,0.013579,-0.014505,0.249579,0,0);}
.m1a_c01022{transform:matrix(0.233944,0.011475,-0.012248,0.249700,0,0);-ms-transform:matrix(0.233944,0.011475,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.233944,0.011475,-0.012248,0.249700,0,0);}
.md2_c01022{transform:matrix(0.234659,0.013638,-0.014505,0.249579,0,0);-ms-transform:matrix(0.234659,0.013638,-0.014505,0.249579,0,0);-webkit-transform:matrix(0.234659,0.013638,-0.014505,0.249579,0,0);}
.mc5_c01022{transform:matrix(0.235048,0.013660,-0.014505,0.249579,0,0);-ms-transform:matrix(0.235048,0.013660,-0.014505,0.249579,0,0);-webkit-transform:matrix(0.235048,0.013660,-0.014505,0.249579,0,0);}
.mf4_c01022{transform:matrix(0.235052,0.014838,-0.015750,0.249503,0,0);-ms-transform:matrix(0.235052,0.014838,-0.015750,0.249503,0,0);-webkit-transform:matrix(0.235052,0.014838,-0.015750,0.249503,0,0);}
.mf7_c01022{transform:matrix(0.235062,0.014839,-0.015750,0.249503,0,0);-ms-transform:matrix(0.235062,0.014839,-0.015750,0.249503,0,0);-webkit-transform:matrix(0.235062,0.014839,-0.015750,0.249503,0,0);}
.mc3_c01022{transform:matrix(0.235183,0.013668,-0.014505,0.249579,0,0);-ms-transform:matrix(0.235183,0.013668,-0.014505,0.249579,0,0);-webkit-transform:matrix(0.235183,0.013668,-0.014505,0.249579,0,0);}
.m2a_c01022{transform:matrix(0.235472,0.011550,-0.012248,0.249700,0,0);-ms-transform:matrix(0.235472,0.011550,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.235472,0.011550,-0.012248,0.249700,0,0);}
.mec_c01022{transform:matrix(0.235660,0.015585,-0.016497,0.249455,0,0);-ms-transform:matrix(0.235660,0.015585,-0.016497,0.249455,0,0);-webkit-transform:matrix(0.235660,0.015585,-0.016497,0.249455,0,0);}
.mac_c01022{transform:matrix(0.236201,0.013727,-0.014505,0.249579,0,0);-ms-transform:matrix(0.236201,0.013727,-0.014505,0.249579,0,0);-webkit-transform:matrix(0.236201,0.013727,-0.014505,0.249579,0,0);}
.mf0_c01022{transform:matrix(0.236434,0.014925,-0.015750,0.249503,0,0);-ms-transform:matrix(0.236434,0.014925,-0.015750,0.249503,0,0);-webkit-transform:matrix(0.236434,0.014925,-0.015750,0.249503,0,0);}
.mc4_c01022{transform:matrix(0.236621,0.013752,-0.014505,0.249579,0,0);-ms-transform:matrix(0.236621,0.013752,-0.014505,0.249579,0,0);-webkit-transform:matrix(0.236621,0.013752,-0.014505,0.249579,0,0);}
.m27_c01022{transform:matrix(0.236835,0.011617,-0.012248,0.249700,0,0);-ms-transform:matrix(0.236835,0.011617,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.236835,0.011617,-0.012248,0.249700,0,0);}
.mde_c01022{transform:matrix(0.237603,0.016427,-0.017243,0.249405,0,0);-ms-transform:matrix(0.237603,0.016427,-0.017243,0.249405,0,0);-webkit-transform:matrix(0.237603,0.016427,-0.017243,0.249405,0,0);}
.m59_c01022{transform:matrix(0.237704,0.011659,-0.012248,0.249700,0,0);-ms-transform:matrix(0.237704,0.011659,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.237704,0.011659,-0.012248,0.249700,0,0);}
.mba_c01022{transform:matrix(0.238677,0.013871,-0.014505,0.249579,0,0);-ms-transform:matrix(0.238677,0.013871,-0.014505,0.249579,0,0);-webkit-transform:matrix(0.238677,0.013871,-0.014505,0.249579,0,0);}
.mc7_c01022{transform:matrix(0.239012,0.013890,-0.014505,0.249579,0,0);-ms-transform:matrix(0.239012,0.013890,-0.014505,0.249579,0,0);-webkit-transform:matrix(0.239012,0.013890,-0.014505,0.249579,0,0);}
.ma8_c01022{transform:matrix(0.239037,0.013892,-0.014505,0.249579,0,0);-ms-transform:matrix(0.239037,0.013892,-0.014505,0.249579,0,0);-webkit-transform:matrix(0.239037,0.013892,-0.014505,0.249579,0,0);}
.md6_c01022{transform:matrix(0.239079,0.016530,-0.017243,0.249405,0,0);-ms-transform:matrix(0.239079,0.016530,-0.017243,0.249405,0,0);-webkit-transform:matrix(0.239079,0.016530,-0.017243,0.249405,0,0);}
.m5c_c01022{transform:matrix(0.239937,0.011769,-0.012248,0.249700,0,0);-ms-transform:matrix(0.239937,0.011769,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.239937,0.011769,-0.012248,0.249700,0,0);}
.md_c01022{transform:matrix(0.241744,0.011857,-0.012248,0.249700,0,0);-ms-transform:matrix(0.241744,0.011857,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.241744,0.011857,-0.012248,0.249700,0,0);}
.m91_c01022{transform:matrix(0.242464,0.011893,-0.012248,0.249700,0,0);-ms-transform:matrix(0.242464,0.011893,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.242464,0.011893,-0.012248,0.249700,0,0);}
.m2d_c01022{transform:matrix(0.243802,0.011958,-0.012248,0.249700,0,0);-ms-transform:matrix(0.243802,0.011958,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.243802,0.011958,-0.012248,0.249700,0,0);}
.m86_c01022{transform:matrix(0.243962,0.011966,-0.012248,0.249700,0,0);-ms-transform:matrix(0.243962,0.011966,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.243962,0.011966,-0.012248,0.249700,0,0);}
.m89_c01022{transform:matrix(0.244921,0.012013,-0.012248,0.249700,0,0);-ms-transform:matrix(0.244921,0.012013,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.244921,0.012013,-0.012248,0.249700,0,0);}
.m23_c01022{transform:matrix(0.245165,0.012025,-0.012248,0.249700,0,0);-ms-transform:matrix(0.245165,0.012025,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.245165,0.012025,-0.012248,0.249700,0,0);}
.m3e_c01022{transform:matrix(0.245540,0.012043,-0.012248,0.249700,0,0);-ms-transform:matrix(0.245540,0.012043,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.245540,0.012043,-0.012248,0.249700,0,0);}
.m96_c01022{transform:matrix(0.246249,0.014311,-0.014505,0.249579,0,0);-ms-transform:matrix(0.246249,0.014311,-0.014505,0.249579,0,0);-webkit-transform:matrix(0.246249,0.014311,-0.014505,0.249579,0,0);}
.m10_c01022{transform:matrix(0.246683,0.012100,-0.012248,0.249700,0,0);-ms-transform:matrix(0.246683,0.012100,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.246683,0.012100,-0.012248,0.249700,0,0);}
.md3_c01022{transform:matrix(0.246960,0.017074,-0.017243,0.249405,0,0);-ms-transform:matrix(0.246960,0.017074,-0.017243,0.249405,0,0);-webkit-transform:matrix(0.246960,0.017074,-0.017243,0.249405,0,0);}
.m98_c01022{transform:matrix(0.247013,0.014355,-0.014505,0.249579,0,0);-ms-transform:matrix(0.247013,0.014355,-0.014505,0.249579,0,0);-webkit-transform:matrix(0.247013,0.014355,-0.014505,0.249579,0,0);}
.m41_c01022{transform:matrix(0.247058,0.012118,-0.012248,0.249700,0,0);-ms-transform:matrix(0.247058,0.012118,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.247058,0.012118,-0.012248,0.249700,0,0);}
.mdf_c01022{transform:matrix(0.247335,0.017100,-0.017243,0.249405,0,0);-ms-transform:matrix(0.247335,0.017100,-0.017243,0.249405,0,0);-webkit-transform:matrix(0.247335,0.017100,-0.017243,0.249405,0,0);}
.m90_c01022{transform:matrix(0.247997,0.012164,-0.012248,0.249700,0,0);-ms-transform:matrix(0.247997,0.012164,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.247997,0.012164,-0.012248,0.249700,0,0);}
.m8_c01022{transform:matrix(0.248077,0.012168,-0.012248,0.249700,0,0);-ms-transform:matrix(0.248077,0.012168,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.248077,0.012168,-0.012248,0.249700,0,0);}
.mc9_c01022{transform:matrix(0.248531,0.014444,-0.014505,0.249579,0,0);-ms-transform:matrix(0.248531,0.014444,-0.014505,0.249579,0,0);-webkit-transform:matrix(0.248531,0.014444,-0.014505,0.249579,0,0);}
.ma_c01022{transform:matrix(0.249295,0.012228,-0.012248,0.249700,0,0);-ms-transform:matrix(0.249295,0.012228,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.249295,0.012228,-0.012248,0.249700,0,0);}
.m85_c01022{transform:matrix(0.249680,0.012247,-0.012248,0.249700,0,0);-ms-transform:matrix(0.249680,0.012247,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.249680,0.012247,-0.012248,0.249700,0,0);}
.m11_c01022{transform:matrix(0.249940,0.012259,-0.012248,0.249700,0,0);-ms-transform:matrix(0.249940,0.012259,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.249940,0.012259,-0.012248,0.249700,0,0);}
.mb_c01022{transform:matrix(0.250139,0.012269,-0.012248,0.249700,0,0);-ms-transform:matrix(0.250139,0.012269,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.250139,0.012269,-0.012248,0.249700,0,0);}
.m9a_c01022{transform:matrix(0.250283,0.014545,-0.014505,0.249579,0,0);-ms-transform:matrix(0.250283,0.014545,-0.014505,0.249579,0,0);-webkit-transform:matrix(0.250283,0.014545,-0.014505,0.249579,0,0);}
.m8f_c01022{transform:matrix(0.250359,0.012280,-0.012248,0.249700,0,0);-ms-transform:matrix(0.250359,0.012280,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.250359,0.012280,-0.012248,0.249700,0,0);}
.m45_c01022{transform:matrix(0.250843,0.012304,-0.012248,0.249700,0,0);-ms-transform:matrix(0.250843,0.012304,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.250843,0.012304,-0.012248,0.249700,0,0);}
.m99_c01022{transform:matrix(0.250947,0.014584,-0.014505,0.249579,0,0);-ms-transform:matrix(0.250947,0.014584,-0.014505,0.249579,0,0);-webkit-transform:matrix(0.250947,0.014584,-0.014505,0.249579,0,0);}
.mfa_c01022{transform:matrix(0.251265,0.015861,-0.015750,0.249503,0,0);-ms-transform:matrix(0.251265,0.015861,-0.015750,0.249503,0,0);-webkit-transform:matrix(0.251265,0.015861,-0.015750,0.249503,0,0);}
.m84_c01022{transform:matrix(0.252287,0.012374,-0.012248,0.249700,0,0);-ms-transform:matrix(0.252287,0.012374,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.252287,0.012374,-0.012248,0.249700,0,0);}
.md8_c01022{transform:matrix(0.252652,0.017468,-0.017243,0.249405,0,0);-ms-transform:matrix(0.252652,0.017468,-0.017243,0.249405,0,0);-webkit-transform:matrix(0.252652,0.017468,-0.017243,0.249405,0,0);}
.m9_c01022{transform:matrix(0.253390,0.012429,-0.012248,0.249700,0,0);-ms-transform:matrix(0.253390,0.012429,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.253390,0.012429,-0.012248,0.249700,0,0);}
.m31_c01022{transform:matrix(0.253945,0.012456,-0.012248,0.249700,0,0);-ms-transform:matrix(0.253945,0.012456,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.253945,0.012456,-0.012248,0.249700,0,0);}
.m5_c01022{transform:matrix(0.254319,0.012474,-0.012248,0.249700,0,0);-ms-transform:matrix(0.254319,0.012474,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.254319,0.012474,-0.012248,0.249700,0,0);}
.m80_c01022{transform:matrix(0.254609,0.012488,-0.012248,0.249700,0,0);-ms-transform:matrix(0.254609,0.012488,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.254609,0.012488,-0.012248,0.249700,0,0);}
.m30_c01022{transform:matrix(0.254749,0.012495,-0.012248,0.249700,0,0);-ms-transform:matrix(0.254749,0.012495,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.254749,0.012495,-0.012248,0.249700,0,0);}
.m13_c01022{transform:matrix(0.255942,0.012554,-0.012248,0.249700,0,0);-ms-transform:matrix(0.255942,0.012554,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.255942,0.012554,-0.012248,0.249700,0,0);}
.m1e_c01022{transform:matrix(0.256522,0.012582,-0.012248,0.249700,0,0);-ms-transform:matrix(0.256522,0.012582,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.256522,0.012582,-0.012248,0.249700,0,0);}
.m8a_c01022{transform:matrix(0.257625,0.012636,-0.012248,0.249700,0,0);-ms-transform:matrix(0.257625,0.012636,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.257625,0.012636,-0.012248,0.249700,0,0);}
.m24_c01022{transform:matrix(0.258100,0.012660,-0.012248,0.249700,0,0);-ms-transform:matrix(0.258100,0.012660,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.258100,0.012660,-0.012248,0.249700,0,0);}
.m15_c01022{transform:matrix(0.258479,0.012678,-0.012248,0.249700,0,0);-ms-transform:matrix(0.258479,0.012678,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.258479,0.012678,-0.012248,0.249700,0,0);}
.mf8_c01022{transform:matrix(0.258940,0.016346,-0.015750,0.249503,0,0);-ms-transform:matrix(0.258940,0.016346,-0.015750,0.249503,0,0);-webkit-transform:matrix(0.258940,0.016346,-0.015750,0.249503,0,0);}
.mcb_c01022{transform:matrix(0.259482,0.015080,-0.014505,0.249579,0,0);-ms-transform:matrix(0.259482,0.015080,-0.014505,0.249579,0,0);-webkit-transform:matrix(0.259482,0.015080,-0.014505,0.249579,0,0);}
.m8c_c01022{transform:matrix(0.259568,0.012732,-0.012248,0.249700,0,0);-ms-transform:matrix(0.259568,0.012732,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.259568,0.012732,-0.012248,0.249700,0,0);}
.mf_c01022{transform:matrix(0.259848,0.012745,-0.012248,0.249700,0,0);-ms-transform:matrix(0.259848,0.012745,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.259848,0.012745,-0.012248,0.249700,0,0);}
.md7_c01022{transform:matrix(0.261316,0.018067,-0.017243,0.249405,0,0);-ms-transform:matrix(0.261316,0.018067,-0.017243,0.249405,0,0);-webkit-transform:matrix(0.261316,0.018067,-0.017243,0.249405,0,0);}
.m2b_c01022{transform:matrix(0.262045,0.012853,-0.012248,0.249700,0,0);-ms-transform:matrix(0.262045,0.012853,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.262045,0.012853,-0.012248,0.249700,0,0);}
.m2f_c01022{transform:matrix(0.262524,0.012877,-0.012248,0.249700,0,0);-ms-transform:matrix(0.262524,0.012877,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.262524,0.012877,-0.012248,0.249700,0,0);}
.mdb_c01022{transform:matrix(0.264663,0.018298,-0.017243,0.249405,0,0);-ms-transform:matrix(0.264663,0.018298,-0.017243,0.249405,0,0);-webkit-transform:matrix(0.264663,0.018298,-0.017243,0.249405,0,0);}
.m87_c01022{transform:matrix(0.264672,0.012982,-0.012248,0.249700,0,0);-ms-transform:matrix(0.264672,0.012982,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.264672,0.012982,-0.012248,0.249700,0,0);}
.m29_c01022{transform:matrix(0.265990,0.013047,-0.012248,0.249700,0,0);-ms-transform:matrix(0.265990,0.013047,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.265990,0.013047,-0.012248,0.249700,0,0);}
.m25_c01022{transform:matrix(0.266055,0.013050,-0.012248,0.249700,0,0);-ms-transform:matrix(0.266055,0.013050,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.266055,0.013050,-0.012248,0.249700,0,0);}
.mfe_c01022{transform:matrix(0.266093,0.018131,-0.016995,0.249422,0,0);-ms-transform:matrix(0.266093,0.018131,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.266093,0.018131,-0.016995,0.249422,0,0);}
.m88_c01022{transform:matrix(0.267104,0.013101,-0.012248,0.249700,0,0);-ms-transform:matrix(0.267104,0.013101,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.267104,0.013101,-0.012248,0.249700,0,0);}
.md1_c01022{transform:matrix(0.267199,0.015529,-0.014505,0.249579,0,0);-ms-transform:matrix(0.267199,0.015529,-0.014505,0.249579,0,0);-webkit-transform:matrix(0.267199,0.015529,-0.014505,0.249579,0,0);}
.m1c_c01022{transform:matrix(0.267394,0.013115,-0.012248,0.249700,0,0);-ms-transform:matrix(0.267394,0.013115,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.267394,0.013115,-0.012248,0.249700,0,0);}
.m8d_c01022{transform:matrix(0.268143,0.013152,-0.012248,0.249700,0,0);-ms-transform:matrix(0.268143,0.013152,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.268143,0.013152,-0.012248,0.249700,0,0);}
.m83_c01022{transform:matrix(0.268193,0.013155,-0.012248,0.249700,0,0);-ms-transform:matrix(0.268193,0.013155,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.268193,0.013155,-0.012248,0.249700,0,0);}
.m82_c01022{transform:matrix(0.268937,0.013191,-0.012248,0.249700,0,0);-ms-transform:matrix(0.268937,0.013191,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.268937,0.013191,-0.012248,0.249700,0,0);}
.m1d_c01022{transform:matrix(0.269266,0.013207,-0.012248,0.249700,0,0);-ms-transform:matrix(0.269266,0.013207,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.269266,0.013207,-0.012248,0.249700,0,0);}
.m26_c01022{transform:matrix(0.269286,0.013208,-0.012248,0.249700,0,0);-ms-transform:matrix(0.269286,0.013208,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.269286,0.013208,-0.012248,0.249700,0,0);}
.mcc_c01022{transform:matrix(0.269326,0.015652,-0.014505,0.249579,0,0);-ms-transform:matrix(0.269326,0.015652,-0.014505,0.249579,0,0);-webkit-transform:matrix(0.269326,0.015652,-0.014505,0.249579,0,0);}
.m1f_c01022{transform:matrix(0.269431,0.013215,-0.012248,0.249700,0,0);-ms-transform:matrix(0.269431,0.013215,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.269431,0.013215,-0.012248,0.249700,0,0);}
.m21_c01022{transform:matrix(0.269716,0.013229,-0.012248,0.249700,0,0);-ms-transform:matrix(0.269716,0.013229,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.269716,0.013229,-0.012248,0.249700,0,0);}
.mcf_c01022{transform:matrix(0.269860,0.015683,-0.014505,0.249579,0,0);-ms-transform:matrix(0.269860,0.015683,-0.014505,0.249579,0,0);-webkit-transform:matrix(0.269860,0.015683,-0.014505,0.249579,0,0);}
.md9_c01022{transform:matrix(0.270404,0.018695,-0.017243,0.249405,0,0);-ms-transform:matrix(0.270404,0.018695,-0.017243,0.249405,0,0);-webkit-transform:matrix(0.270404,0.018695,-0.017243,0.249405,0,0);}
.m2_c01022{transform:matrix(0.270609,0.014357,-0.013245,0.249649,0,0);-ms-transform:matrix(0.270609,0.014357,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.270609,0.014357,-0.013245,0.249649,0,0);}
.m0_c01022{transform:matrix(0.270664,0.014360,-0.013245,0.249649,0,0);-ms-transform:matrix(0.270664,0.014360,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.270664,0.014360,-0.013245,0.249649,0,0);}
.m93_c01022{transform:matrix(0.271524,0.013318,-0.012248,0.249700,0,0);-ms-transform:matrix(0.271524,0.013318,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.271524,0.013318,-0.012248,0.249700,0,0);}
.m92_c01022{transform:matrix(0.271893,0.013336,-0.012248,0.249700,0,0);-ms-transform:matrix(0.271893,0.013336,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.271893,0.013336,-0.012248,0.249700,0,0);}
.m19_c01022{transform:matrix(0.271918,0.013337,-0.012248,0.249700,0,0);-ms-transform:matrix(0.271918,0.013337,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.271918,0.013337,-0.012248,0.249700,0,0);}
.m2e_c01022{transform:matrix(0.273281,0.013404,-0.012248,0.249700,0,0);-ms-transform:matrix(0.273281,0.013404,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.273281,0.013404,-0.012248,0.249700,0,0);}
.m8e_c01022{transform:matrix(0.273446,0.013412,-0.012248,0.249700,0,0);-ms-transform:matrix(0.273446,0.013412,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.273446,0.013412,-0.012248,0.249700,0,0);}
.md4_c01022{transform:matrix(0.275318,0.019035,-0.017243,0.249405,0,0);-ms-transform:matrix(0.275318,0.019035,-0.017243,0.249405,0,0);-webkit-transform:matrix(0.275318,0.019035,-0.017243,0.249405,0,0);}
.mce_c01022{transform:matrix(0.275850,0.016031,-0.014505,0.249579,0,0);-ms-transform:matrix(0.275850,0.016031,-0.014505,0.249579,0,0);-webkit-transform:matrix(0.275850,0.016031,-0.014505,0.249579,0,0);}
.m16_c01022{transform:matrix(0.277766,0.013624,-0.012248,0.249700,0,0);-ms-transform:matrix(0.277766,0.013624,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.277766,0.013624,-0.012248,0.249700,0,0);}
.mcd_c01022{transform:matrix(0.278874,0.016207,-0.014505,0.249579,0,0);-ms-transform:matrix(0.278874,0.016207,-0.014505,0.249579,0,0);-webkit-transform:matrix(0.278874,0.016207,-0.014505,0.249579,0,0);}
.m46_c01022{transform:matrix(0.279094,0.013689,-0.012248,0.249700,0,0);-ms-transform:matrix(0.279094,0.013689,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.279094,0.013689,-0.012248,0.249700,0,0);}
.m3_c01022{transform:matrix(0.281889,0.014955,-0.013245,0.249649,0,0);-ms-transform:matrix(0.281889,0.014955,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.281889,0.014955,-0.013245,0.249649,0,0);}
.m3d_c01022{transform:matrix(0.282715,0.013867,-0.012248,0.249700,0,0);-ms-transform:matrix(0.282715,0.013867,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.282715,0.013867,-0.012248,0.249700,0,0);}
.m44_c01022{transform:matrix(0.282775,0.013870,-0.012248,0.249700,0,0);-ms-transform:matrix(0.282775,0.013870,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.282775,0.013870,-0.012248,0.249700,0,0);}
.m3f_c01022{transform:matrix(0.283160,0.013889,-0.012248,0.249700,0,0);-ms-transform:matrix(0.283160,0.013889,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.283160,0.013889,-0.012248,0.249700,0,0);}
.m28_c01022{transform:matrix(0.284758,0.013967,-0.012248,0.249700,0,0);-ms-transform:matrix(0.284758,0.013967,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.284758,0.013967,-0.012248,0.249700,0,0);}
.m42_c01022{transform:matrix(0.284932,0.013976,-0.012248,0.249700,0,0);-ms-transform:matrix(0.284932,0.013976,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.284932,0.013976,-0.012248,0.249700,0,0);}
.m40_c01022{transform:matrix(0.290356,0.014242,-0.012248,0.249700,0,0);-ms-transform:matrix(0.290356,0.014242,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.290356,0.014242,-0.012248,0.249700,0,0);}
.m43_c01022{transform:matrix(0.290740,0.014261,-0.012248,0.249700,0,0);-ms-transform:matrix(0.290740,0.014261,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.290740,0.014261,-0.012248,0.249700,0,0);}
.m3c_c01022{transform:matrix(0.293857,0.014413,-0.012248,0.249700,0,0);-ms-transform:matrix(0.293857,0.014413,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.293857,0.014413,-0.012248,0.249700,0,0);}
.mfc_c01022{transform:matrix(0.368875,0.025134,-0.016995,0.249422,0,0);-ms-transform:matrix(0.368875,0.025134,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.368875,0.025134,-0.016995,0.249422,0,0);}
.me_c01022{transform:matrix(0.380218,0.018649,-0.012248,0.249700,0,0);-ms-transform:matrix(0.380218,0.018649,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.380218,0.018649,-0.012248,0.249700,0,0);}
.mfb_c01022{transform:matrix(0.558774,0.038073,-0.016995,0.249422,0,0);-ms-transform:matrix(0.558774,0.038073,-0.016995,0.249422,0,0);-webkit-transform:matrix(0.558774,0.038073,-0.016995,0.249422,0,0);}
.m17_c01022{transform:matrix(0.957209,0.046950,-0.012248,0.249700,0,0);-ms-transform:matrix(0.957209,0.046950,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.957209,0.046950,-0.012248,0.249700,0,0);}
.m4_c01022{transform:matrix(3.947344,0.209419,-0.013245,0.249649,0,0);-ms-transform:matrix(3.947344,0.209419,-0.013245,0.249649,0,0);-webkit-transform:matrix(3.947344,0.209419,-0.013245,0.249649,0,0);}
.v0_c01022{vertical-align:0.000000px;}
.ls0_c01022{letter-spacing:0.000000px;}
.sc__c01022{text-shadow:none;}
.sc0_c01022{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__c01022{-webkit-text-stroke:0px transparent;}
.sc0_c01022{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01022{word-spacing:0.000000px;}
.fc0_c01022{color:transparent;}
.fs5_c01022{font-size:66.013265px;}
.fsb_c01022{font-size:71.977244px;}
.fs3_c01022{font-size:72.014471px;}
.fsc_c01022{font-size:72.027535px;}
.fs0_c01022{font-size:72.029154px;}
.fs8_c01022{font-size:77.975348px;}
.fsf_c01022{font-size:77.998947px;}
.fs2_c01022{font-size:78.015676px;}
.fs1_c01022{font-size:78.031584px;}
.fsa_c01022{font-size:83.973452px;}
.fse_c01022{font-size:83.998866px;}
.fsd_c01022{font-size:84.015119px;}
.fs6_c01022{font-size:84.016882px;}
.fs10_c01022{font-size:84.026372px;}
.fs7_c01022{font-size:90.018088px;}
.fs9_c01022{font-size:95.969659px;}
.fs4_c01022{font-size:96.019294px;}
.y0_c01022{bottom:0.000000px;}
.y10d_c01022{bottom:55.759890px;}
.y10c_c01022{bottom:59.576526px;}
.y10b_c01022{bottom:64.072176px;}
.y10a_c01022{bottom:66.316890px;}
.y109_c01022{bottom:68.587410px;}
.y108_c01022{bottom:71.551530px;}
.y107_c01022{bottom:74.570628px;}
.y106_c01022{bottom:79.754880px;}
.y105_c01022{bottom:81.913914px;}
.y104_c01022{bottom:83.423412px;}
.y103_c01022{bottom:85.705662px;}
.y102_c01022{bottom:89.400000px;}
.y101_c01022{bottom:116.533033px;}
.y100_c01022{bottom:120.183903px;}
.yff_c01022{bottom:128.951324px;}
.yfe_c01022{bottom:133.974081px;}
.yfd_c01022{bottom:136.206300px;}
.yfc_c01022{bottom:139.048515px;}
.yfb_c01022{bottom:142.579414px;}
.yfa_c01022{bottom:152.757412px;}
.yf9_c01022{bottom:154.870999px;}
.yf8_c01022{bottom:159.049411px;}
.yf7_c01022{bottom:165.917577px;}
.yf6_c01022{bottom:169.400941px;}
.yf5_c01022{bottom:171.495440px;}
.yf4_c01022{bottom:176.862000px;}
.yf3_c01022{bottom:279.624198px;}
.yf2_c01022{bottom:281.838432px;}
.yf1_c01022{bottom:287.021973px;}
.yf0_c01022{bottom:291.403218px;}
.yef_c01022{bottom:293.561616px;}
.yee_c01022{bottom:297.990183px;}
.yed_c01022{bottom:300.048096px;}
.yec_c01022{bottom:302.272923px;}
.yeb_c01022{bottom:307.440030px;}
.yea_c01022{bottom:310.951164px;}
.ye9_c01022{bottom:314.529915px;}
.ye6_c01022{bottom:315.557055px;}
.ye5_c01022{bottom:317.681600px;}
.ye8_c01022{bottom:318.136980px;}
.ye4_c01022{bottom:319.293405px;}
.ye7_c01022{bottom:321.055500px;}
.ye3_c01022{bottom:321.567921px;}
.ye2_c01022{bottom:327.039242px;}
.ye1_c01022{bottom:329.245241px;}
.ye0_c01022{bottom:334.665225px;}
.ydf_c01022{bottom:337.648613px;}
.yde_c01022{bottom:343.653786px;}
.ydd_c01022{bottom:346.678159px;}
.yd9_c01022{bottom:348.778962px;}
.ydc_c01022{bottom:348.986002px;}
.yd8_c01022{bottom:354.109869px;}
.yd7_c01022{bottom:355.952370px;}
.ydb_c01022{bottom:356.479299px;}
.yda_c01022{bottom:358.848000px;}
.yd6_c01022{bottom:360.214200px;}
.yd5_c01022{bottom:366.199362px;}
.yd4_c01022{bottom:371.549565px;}
.yd3_c01022{bottom:377.387841px;}
.yd2_c01022{bottom:381.527631px;}
.yd1_c01022{bottom:382.728735px;}
.yd0_c01022{bottom:385.116588px;}
.ycf_c01022{bottom:387.011451px;}
.yce_c01022{bottom:391.888791px;}
.ycd_c01022{bottom:393.704511px;}
.ycc_c01022{bottom:398.650197px;}
.ycb_c01022{bottom:403.510851px;}
.yca_c01022{bottom:409.487412px;}
.yc9_c01022{bottom:411.340611px;}
.yc8_c01022{bottom:414.370929px;}
.yc7_c01022{bottom:417.988206px;}
.yc6_c01022{bottom:419.753154px;}
.yc4_c01022{bottom:422.965356px;}
.yc5_c01022{bottom:423.439107px;}
.yc3_c01022{bottom:424.239975px;}
.yc2_c01022{bottom:426.085149px;}
.yc1_c01022{bottom:432.279252px;}
.yc0_c01022{bottom:434.793690px;}
.ybf_c01022{bottom:441.557322px;}
.ybe_c01022{bottom:443.413719px;}
.ybd_c01022{bottom:448.407396px;}
.ybc_c01022{bottom:450.168651px;}
.ybb_c01022{bottom:453.223821px;}
.yb9_c01022{bottom:456.423585px;}
.yba_c01022{bottom:458.819616px;}
.yb8_c01022{bottom:460.260648px;}
.yb7_c01022{bottom:462.085656px;}
.yb6_c01022{bottom:463.919277px;}
.yb5_c01022{bottom:468.339075px;}
.yb4_c01022{bottom:469.580391px;}
.yb3_c01022{bottom:475.056441px;}
.yb2_c01022{bottom:479.947059px;}
.yb1_c01022{bottom:486.747387px;}
.yb0_c01022{bottom:488.590821px;}
.yae_c01022{bottom:493.396737px;}
.yaf_c01022{bottom:494.196273px;}
.yad_c01022{bottom:499.415823px;}
.yac_c01022{bottom:505.578630px;}
.yab_c01022{bottom:508.551129px;}
.yaa_c01022{bottom:514.612461px;}
.ya9_c01022{bottom:517.022187px;}
.ya8_c01022{bottom:523.059873px;}
.ya7_c01022{bottom:524.903676px;}
.ya6_c01022{bottom:526.720440px;}
.ya4_c01022{bottom:530.036970px;}
.ya5_c01022{bottom:530.335977px;}
.ya3_c01022{bottom:532.025181px;}
.ya2_c01022{bottom:534.006171px;}
.ya1_c01022{bottom:538.513902px;}
.ya0_c01022{bottom:544.862553px;}
.y9f_c01022{bottom:548.813136px;}
.y9e_c01022{bottom:550.647705px;}
.y9d_c01022{bottom:556.356558px;}
.y9c_c01022{bottom:559.553112px;}
.y9b_c01022{bottom:562.722000px;}
.y9a_c01022{bottom:577.896561px;}
.y99_c01022{bottom:581.926472px;}
.y98_c01022{bottom:583.879883px;}
.y97_c01022{bottom:585.831705px;}
.y96_c01022{bottom:586.872123px;}
.y95_c01022{bottom:590.787500px;}
.y94_c01022{bottom:592.258695px;}
.y93_c01022{bottom:595.748484px;}
.y92_c01022{bottom:597.638285px;}
.y91_c01022{bottom:600.160968px;}
.y90_c01022{bottom:606.507747px;}
.y8f_c01022{bottom:608.877732px;}
.y8e_c01022{bottom:610.813076px;}
.y8d_c01022{bottom:614.177907px;}
.y8c_c01022{bottom:617.040501px;}
.y8b_c01022{bottom:618.867717px;}
.y8a_c01022{bottom:621.237261px;}
.y89_c01022{bottom:622.233284px;}
.y88_c01022{bottom:624.600402px;}
.y87_c01022{bottom:625.973144px;}
.y86_c01022{bottom:628.878033px;}
.y85_c01022{bottom:630.640034px;}
.y84_c01022{bottom:633.062355px;}
.y83_c01022{bottom:634.447755px;}
.y82_c01022{bottom:641.389856px;}
.y81_c01022{bottom:643.545269px;}
.y80_c01022{bottom:647.707886px;}
.y7f_c01022{bottom:649.221642px;}
.y7e_c01022{bottom:652.906982px;}
.y7d_c01022{bottom:654.374196px;}
.y7c_c01022{bottom:660.092657px;}
.y7b_c01022{bottom:661.700702px;}
.y7a_c01022{bottom:664.227638px;}
.y79_c01022{bottom:667.871699px;}
.y78_c01022{bottom:671.450181px;}
.y77_c01022{bottom:675.364415px;}
.y76_c01022{bottom:676.942494px;}
.y75_c01022{bottom:678.548136px;}
.y74_c01022{bottom:681.699812px;}
.y73_c01022{bottom:683.331665px;}
.y72_c01022{bottom:684.401544px;}
.y71_c01022{bottom:687.530831px;}
.y70_c01022{bottom:690.234135px;}
.y6f_c01022{bottom:693.336888px;}
.y6e_c01022{bottom:694.946352px;}
.y6d_c01022{bottom:700.246268px;}
.y6c_c01022{bottom:701.823833px;}
.y6b_c01022{bottom:703.342700px;}
.y6a_c01022{bottom:706.011386px;}
.y69_c01022{bottom:714.225476px;}
.y68_c01022{bottom:715.821348px;}
.y67_c01022{bottom:719.431628px;}
.y66_c01022{bottom:722.055086px;}
.y65_c01022{bottom:726.751547px;}
.y64_c01022{bottom:732.454527px;}
.y63_c01022{bottom:734.041947px;}
.y62_c01022{bottom:735.994892px;}
.y61_c01022{bottom:741.127821px;}
.y60_c01022{bottom:748.630211px;}
.y5f_c01022{bottom:753.720770px;}
.y5e_c01022{bottom:755.255672px;}
.y5d_c01022{bottom:756.785384px;}
.y5c_c01022{bottom:763.311248px;}
.y5b_c01022{bottom:764.391240px;}
.y5a_c01022{bottom:766.842017px;}
.y59_c01022{bottom:768.385224px;}
.y58_c01022{bottom:769.924830px;}
.y57_c01022{bottom:773.409351px;}
.y56_c01022{bottom:776.513010px;}
.y55_c01022{bottom:784.168844px;}
.y54_c01022{bottom:785.654321px;}
.y53_c01022{bottom:787.646792px;}
.y52_c01022{bottom:789.577886px;}
.y51_c01022{bottom:790.941756px;}
.y50_c01022{bottom:792.458459px;}
.y4f_c01022{bottom:796.324542px;}
.y4e_c01022{bottom:798.276747px;}
.y4d_c01022{bottom:802.142831px;}
.y4c_c01022{bottom:806.020646px;}
.y4b_c01022{bottom:809.334765px;}
.y4a_c01022{bottom:810.797045px;}
.y49_c01022{bottom:818.571348px;}
.y48_c01022{bottom:820.136197px;}
.y47_c01022{bottom:823.312349px;}
.y46_c01022{bottom:828.126086px;}
.y45_c01022{bottom:831.297239px;}
.y44_c01022{bottom:832.879655px;}
.y43_c01022{bottom:836.612634px;}
.y42_c01022{bottom:840.743474px;}
.y41_c01022{bottom:842.376576px;}
.y40_c01022{bottom:845.021375px;}
.y3f_c01022{bottom:849.141410px;}
.y3e_c01022{bottom:853.819959px;}
.y3d_c01022{bottom:858.650193px;}
.y3c_c01022{bottom:862.626152px;}
.y3b_c01022{bottom:863.995241px;}
.y3a_c01022{bottom:866.981646px;}
.y39_c01022{bottom:870.777092px;}
.y38_c01022{bottom:872.253189px;}
.y37_c01022{bottom:876.173769px;}
.y36_c01022{bottom:880.931777px;}
.y35_c01022{bottom:882.632565px;}
.y34_c01022{bottom:890.160218px;}
.y33_c01022{bottom:891.190419px;}
.y32_c01022{bottom:895.104032px;}
.y31_c01022{bottom:898.159634px;}
.y30_c01022{bottom:899.606190px;}
.y2f_c01022{bottom:901.128750px;}
.y2e_c01022{bottom:902.588214px;}
.y2d_c01022{bottom:905.580794px;}
.y2c_c01022{bottom:907.054415px;}
.y2b_c01022{bottom:910.058726px;}
.y2a_c01022{bottom:912.053460px;}
.y29_c01022{bottom:913.980615px;}
.y28_c01022{bottom:919.357118px;}
.y27_c01022{bottom:924.476448px;}
.y26_c01022{bottom:927.468440px;}
.y25_c01022{bottom:929.015639px;}
.y24_c01022{bottom:930.468561px;}
.y23_c01022{bottom:934.469423px;}
.y22_c01022{bottom:935.976208px;}
.y21_c01022{bottom:939.962370px;}
.y20_c01022{bottom:943.385976px;}
.y1f_c01022{bottom:944.869491px;}
.y1e_c01022{bottom:947.891414px;}
.y1d_c01022{bottom:950.838141px;}
.y1c_c01022{bottom:952.255032px;}
.y1b_c01022{bottom:954.186817px;}
.y1a_c01022{bottom:961.155575px;}
.y19_c01022{bottom:962.629857px;}
.y18_c01022{bottom:967.632872px;}
.y17_c01022{bottom:973.121364px;}
.y16_c01022{bottom:975.616983px;}
.y15_c01022{bottom:977.063540px;}
.y14_c01022{bottom:980.026703px;}
.y13_c01022{bottom:981.529079px;}
.y12_c01022{bottom:982.490745px;}
.y11_c01022{bottom:984.022346px;}
.y10_c01022{bottom:987.945999px;}
.yf_c01022{bottom:989.866421px;}
.ye_c01022{bottom:996.586554px;}
.yd_c01022{bottom:998.751717px;}
.yc_c01022{bottom:1002.547184px;}
.yb_c01022{bottom:1006.852152px;}
.ya_c01022{bottom:1011.189755px;}
.y9_c01022{bottom:1012.872978px;}
.y8_c01022{bottom:1015.006904px;}
.y7_c01022{bottom:1017.118926px;}
.y6_c01022{bottom:1022.520000px;}
.y5_c01022{bottom:1075.419384px;}
.y4_c01022{bottom:1079.434649px;}
.y3_c01022{bottom:1084.720524px;}
.y2_c01022{bottom:1086.426355px;}
.y1_c01022{bottom:1090.566000px;}
.h7_c01022{height:66.013265px;}
.hd_c01022{height:71.977244px;}
.h5_c01022{height:72.014471px;}
.he_c01022{height:72.027535px;}
.h2_c01022{height:72.029154px;}
.ha_c01022{height:77.975348px;}
.h11_c01022{height:77.998947px;}
.h4_c01022{height:78.015676px;}
.h3_c01022{height:78.031584px;}
.hc_c01022{height:83.973452px;}
.h10_c01022{height:83.998866px;}
.hf_c01022{height:84.015119px;}
.h8_c01022{height:84.016882px;}
.h12_c01022{height:84.026372px;}
.h9_c01022{height:90.018088px;}
.hb_c01022{height:95.969659px;}
.h6_c01022{height:96.019294px;}
.h0_c01022{height:1246.320000px;}
.h1_c01022{height:1246.500000px;}
.w0_c01022{width:896.100000px;}
.w1_c01022{width:896.250000px;}
.x0_c01022{left:0.000000px;}
.xc4_c01022{left:110.262000px;}
.xbe_c01022{left:113.110771px;}
.xb8_c01022{left:114.564000px;}
.xab_c01022{left:118.810500px;}
.xa0_c01022{left:120.567525px;}
.x94_c01022{left:123.129543px;}
.x8b_c01022{left:125.244867px;}
.x7a_c01022{left:128.143719px;}
.x68_c01022{left:130.638483px;}
.xe_c01022{left:133.119086px;}
.x57_c01022{left:134.385066px;}
.x46_c01022{left:137.078260px;}
.x3c_c01022{left:139.035622px;}
.x26_c01022{left:141.183319px;}
.x19_c01022{left:143.196610px;}
.xac_c01022{left:153.070842px;}
.x71_c01022{left:161.845470px;}
.xa6_c01022{left:164.068377px;}
.xbf_c01022{left:166.497153px;}
.x47_c01022{left:170.290182px;}
.x33_c01022{left:172.175167px;}
.xf_c01022{left:175.732743px;}
.x7b_c01022{left:184.138630px;}
.x1a_c01022{left:186.072579px;}
.x5e_c01022{left:187.665007px;}
.x8c_c01022{left:190.842828px;}
.xc5_c01022{left:197.977218px;}
.xb9_c01022{left:199.577133px;}
.x4f_c01022{left:201.304008px;}
.x69_c01022{left:206.688787px;}
.xc0_c01022{left:209.473884px;}
.x1b_c01022{left:217.532268px;}
.x5f_c01022{left:219.274411px;}
.x95_c01022{left:223.019457px;}
.x3d_c01022{left:224.779486px;}
.x7c_c01022{left:226.097370px;}
.xba_c01022{left:232.756641px;}
.x81_c01022{left:236.326500px;}
.x58_c01022{left:243.474535px;}
.x48_c01022{left:245.513777px;}
.x60_c01022{left:252.111160px;}
.x5_c01022{left:253.732500px;}
.x96_c01022{left:255.876447px;}
.x8d_c01022{left:257.267307px;}
.x72_c01022{left:259.036728px;}
.x27_c01022{left:260.536743px;}
.x10_c01022{left:262.832126px;}
.xb2_c01022{left:271.469808px;}
.x50_c01022{left:276.969876px;}
.x34_c01022{left:280.174473px;}
.x1c_c01022{left:282.938099px;}
.x59_c01022{left:284.975040px;}
.xbb_c01022{left:287.937558px;}
.x82_c01022{left:290.853228px;}
.xad_c01022{left:294.832251px;}
.x11_c01022{left:296.814231px;}
.x28_c01022{left:303.318306px;}
.x9c_c01022{left:307.904040px;}
.x51_c01022{left:310.410831px;}
.x3e_c01022{left:313.833757px;}
.x12_c01022{left:318.166052px;}
.xc1_c01022{left:319.187780px;}
.xb3_c01022{left:324.562410px;}
.x73_c01022{left:326.529532px;}
.xc6_c01022{left:327.904842px;}
.x49_c01022{left:333.546713px;}
.x7d_c01022{left:336.213700px;}
.x6a_c01022{left:337.860859px;}
.xa1_c01022{left:340.091367px;}
.x1_c01022{left:343.039500px;}
.x83_c01022{left:345.856002px;}
.x29_c01022{left:347.600161px;}
.x1d_c01022{left:350.030109px;}
.x13_c01022{left:351.521711px;}
.x74_c01022{left:358.405968px;}
.x61_c01022{left:362.400132px;}
.x6_c01022{left:363.848274px;}
.x8e_c01022{left:366.817359px;}
.x35_c01022{left:369.171165px;}
.xa7_c01022{left:370.642347px;}
.x6b_c01022{left:372.054016px;}
.xa2_c01022{left:373.710834px;}
.x97_c01022{left:377.050149px;}
.x1e_c01022{left:382.970610px;}
.x62_c01022{left:395.887230px;}
.x52_c01022{left:397.137246px;}
.x3f_c01022{left:399.797901px;}
.x36_c01022{left:402.664804px;}
.x7_c01022{left:406.907672px;}
.x8f_c01022{left:410.529843px;}
.x2a_c01022{left:414.302488px;}
.xc7_c01022{left:415.717365px;}
.x14_c01022{left:417.293249px;}
.x2_c01022{left:421.067893px;}
.x7e_c01022{left:423.113709px;}
.xae_c01022{left:425.433525px;}
.x9d_c01022{left:429.959562px;}
.x75_c01022{left:436.527723px;}
.x5a_c01022{left:439.918597px;}
.x84_c01022{left:444.087645px;}
.x2b_c01022{left:447.010649px;}
.x15_c01022{left:449.388375px;}
.x8_c01022{left:450.413622px;}
.xc2_c01022{left:451.765500px;}
.x3_c01022{left:453.221208px;}
.x1f_c01022{left:458.956410px;}
.x63_c01022{left:460.462254px;}
.xbc_c01022{left:462.929373px;}
.x98_c01022{left:464.200611px;}
.x4a_c01022{left:465.643356px;}
.xb4_c01022{left:467.455551px;}
.xa8_c01022{left:469.500162px;}
.x85_c01022{left:475.654884px;}
.x40_c01022{left:477.497450px;}
.xa3_c01022{left:482.157423px;}
.x9_c01022{left:484.730771px;}
.x37_c01022{left:488.834664px;}
.x76_c01022{left:491.574807px;}
.x6c_c01022{left:493.601766px;}
.xbd_c01022{left:496.411275px;}
.x16_c01022{left:504.770253px;}
.xc3_c01022{left:506.980932px;}
.x41_c01022{left:510.433099px;}
.x2c_c01022{left:513.443172px;}
.x64_c01022{left:516.709672px;}
.x90_c01022{left:520.512615px;}
.x6d_c01022{left:524.770582px;}
.x7f_c01022{left:532.886809px;}
.x77_c01022{left:534.033813px;}
.x5b_c01022{left:539.741959px;}
.x86_c01022{left:543.632157px;}
.x2d_c01022{left:545.832078px;}
.x20_c01022{left:547.452689px;}
.x9e_c01022{left:550.475994px;}
.x4_c01022{left:552.854975px;}
.x38_c01022{left:556.641916px;}
.x53_c01022{left:562.309687px;}
.xb5_c01022{left:567.058446px;}
.xa4_c01022{left:570.343041px;}
.xa_c01022{left:573.164748px;}
.x91_c01022{left:574.451436px;}
.x42_c01022{left:576.433270px;}
.x2e_c01022{left:579.629868px;}
.x21_c01022{left:580.898257px;}
.x99_c01022{left:583.895103px;}
.x39_c01022{left:587.708896px;}
.x54_c01022{left:595.518302px;}
.x78_c01022{left:600.541809px;}
.x6e_c01022{left:603.091335px;}
.x65_c01022{left:604.097464px;}
.x2f_c01022{left:611.724994px;}
.x4b_c01022{left:618.811058px;}
.x80_c01022{left:622.336281px;}
.x17_c01022{left:626.590649px;}
.x55_c01022{left:628.863353px;}
.xb6_c01022{left:633.308181px;}
.x6f_c01022{left:635.270287px;}
.x66_c01022{left:638.071648px;}
.x87_c01022{left:652.872738px;}
.xa9_c01022{left:658.871184px;}
.xb_c01022{left:660.933391px;}
.x4c_c01022{left:662.652913px;}
.x22_c01022{left:669.694236px;}
.x5c_c01022{left:672.223794px;}
.x43_c01022{left:676.626406px;}
.x3a_c01022{left:677.957130px;}
.x30_c01022{left:679.564904px;}
.x92_c01022{left:686.257815px;}
.xaf_c01022{left:690.918990px;}
.xa5_c01022{left:693.018057px;}
.x9a_c01022{left:695.322204px;}
.x23_c01022{left:701.949776px;}
.x67_c01022{left:703.674717px;}
.x5d_c01022{left:706.138156px;}
.x4d_c01022{left:707.899232px;}
.xb7_c01022{left:711.689604px;}
.xb0_c01022{left:714.231771px;}
.x70_c01022{left:723.750400px;}
.x9b_c01022{left:727.836294px;}
.x88_c01022{left:730.436799px;}
.x24_c01022{left:736.311148px;}
.xc_c01022{left:738.314433px;}
.x56_c01022{left:739.416449px;}
.x4e_c01022{left:741.614722px;}
.x44_c01022{left:742.728476px;}
.xb1_c01022{left:744.960690px;}
.x9f_c01022{left:761.267562px;}
.x89_c01022{left:764.523489px;}
.x31_c01022{left:766.428948px;}
.x18_c01022{left:770.377397px;}
.x45_c01022{left:775.305984px;}
.x79_c01022{left:778.723833px;}
.xd_c01022{left:782.457246px;}
.x3b_c01022{left:787.612719px;}
.x32_c01022{left:789.300541px;}
.xaa_c01022{left:791.426814px;}
.x93_c01022{left:795.461973px;}
.x8a_c01022{left:798.734430px;}
.x25_c01022{left:802.731684px;}
@media print{
.v0_c01022{vertical-align:0.000000pt;}
.ls0_c01022{letter-spacing:0.000000pt;}
.ws0_c01022{word-spacing:0.000000pt;}
.fs5_c01022{font-size:58.678457pt;}
.fsb_c01022{font-size:63.979773pt;}
.fs3_c01022{font-size:64.012863pt;}
.fsc_c01022{font-size:64.024475pt;}
.fs0_c01022{font-size:64.025915pt;}
.fs8_c01022{font-size:69.311421pt;}
.fsf_c01022{font-size:69.332397pt;}
.fs2_c01022{font-size:69.347268pt;}
.fs1_c01022{font-size:69.361408pt;}
.fsa_c01022{font-size:74.643068pt;}
.fse_c01022{font-size:74.665659pt;}
.fsd_c01022{font-size:74.680105pt;}
.fs6_c01022{font-size:74.681673pt;}
.fs10_c01022{font-size:74.690108pt;}
.fs7_c01022{font-size:80.016078pt;}
.fs9_c01022{font-size:85.306364pt;}
.fs4_c01022{font-size:85.350484pt;}
.y0_c01022{bottom:0.000000pt;}
.y10d_c01022{bottom:49.564347pt;}
.y10c_c01022{bottom:52.956912pt;}
.y10b_c01022{bottom:56.953045pt;}
.y10a_c01022{bottom:58.948347pt;}
.y109_c01022{bottom:60.966587pt;}
.y108_c01022{bottom:63.601360pt;}
.y107_c01022{bottom:66.285003pt;}
.y106_c01022{bottom:70.893227pt;}
.y105_c01022{bottom:72.812368pt;}
.y104_c01022{bottom:74.154144pt;}
.y103_c01022{bottom:76.182811pt;}
.y102_c01022{bottom:79.466667pt;}
.y101_c01022{bottom:103.584919pt;}
.y100_c01022{bottom:106.830136pt;}
.yff_c01022{bottom:114.623399pt;}
.yfe_c01022{bottom:119.088072pt;}
.yfd_c01022{bottom:121.072267pt;}
.yfc_c01022{bottom:123.598680pt;}
.yfb_c01022{bottom:126.737257pt;}
.yfa_c01022{bottom:135.784367pt;}
.yf9_c01022{bottom:137.663111pt;}
.yf8_c01022{bottom:141.377255pt;}
.yf7_c01022{bottom:147.482291pt;}
.yf6_c01022{bottom:150.578615pt;}
.yf5_c01022{bottom:152.440391pt;}
.yf4_c01022{bottom:157.210667pt;}
.yf3_c01022{bottom:248.554843pt;}
.yf2_c01022{bottom:250.523051pt;}
.yf1_c01022{bottom:255.130643pt;}
.yf0_c01022{bottom:259.025083pt;}
.yef_c01022{bottom:260.943659pt;}
.yee_c01022{bottom:264.880163pt;}
.yed_c01022{bottom:266.709419pt;}
.yec_c01022{bottom:268.687043pt;}
.yeb_c01022{bottom:273.280027pt;}
.yea_c01022{bottom:276.401035pt;}
.ye9_c01022{bottom:279.582147pt;}
.ye6_c01022{bottom:280.495160pt;}
.ye5_c01022{bottom:282.383644pt;}
.ye8_c01022{bottom:282.788427pt;}
.ye4_c01022{bottom:283.816360pt;}
.ye7_c01022{bottom:285.382667pt;}
.ye3_c01022{bottom:285.838152pt;}
.ye2_c01022{bottom:290.701548pt;}
.ye1_c01022{bottom:292.662436pt;}
.ye0_c01022{bottom:297.480200pt;}
.ydf_c01022{bottom:300.132100pt;}
.yde_c01022{bottom:305.470032pt;}
.ydd_c01022{bottom:308.158364pt;}
.yd9_c01022{bottom:310.025744pt;}
.ydc_c01022{bottom:310.209780pt;}
.yd8_c01022{bottom:314.764328pt;}
.yd7_c01022{bottom:316.402107pt;}
.ydb_c01022{bottom:316.870488pt;}
.yda_c01022{bottom:318.976000pt;}
.yd6_c01022{bottom:320.190400pt;}
.yd5_c01022{bottom:325.510544pt;}
.yd4_c01022{bottom:330.266280pt;}
.yd3_c01022{bottom:335.455859pt;}
.yd2_c01022{bottom:339.135672pt;}
.yd1_c01022{bottom:340.203320pt;}
.yd0_c01022{bottom:342.325856pt;}
.ycf_c01022{bottom:344.010179pt;}
.yce_c01022{bottom:348.345592pt;}
.ycd_c01022{bottom:349.959565pt;}
.ycc_c01022{bottom:354.355731pt;}
.ycb_c01022{bottom:358.676312pt;}
.yca_c01022{bottom:363.988811pt;}
.yc9_c01022{bottom:365.636099pt;}
.yc8_c01022{bottom:368.329715pt;}
.yc7_c01022{bottom:371.545072pt;}
.yc6_c01022{bottom:373.113915pt;}
.yc4_c01022{bottom:375.969205pt;}
.yc5_c01022{bottom:376.390317pt;}
.yc3_c01022{bottom:377.102200pt;}
.yc2_c01022{bottom:378.742355pt;}
.yc1_c01022{bottom:384.248224pt;}
.yc0_c01022{bottom:386.483280pt;}
.ybf_c01022{bottom:392.495397pt;}
.ybe_c01022{bottom:394.145528pt;}
.ybd_c01022{bottom:398.584352pt;}
.ybc_c01022{bottom:400.149912pt;}
.ybb_c01022{bottom:402.865619pt;}
.yb9_c01022{bottom:405.709853pt;}
.yba_c01022{bottom:407.839659pt;}
.yb8_c01022{bottom:409.120576pt;}
.yb7_c01022{bottom:410.742805pt;}
.yb6_c01022{bottom:412.372691pt;}
.yb5_c01022{bottom:416.301400pt;}
.yb4_c01022{bottom:417.404792pt;}
.yb3_c01022{bottom:422.272392pt;}
.yb2_c01022{bottom:426.619608pt;}
.yb1_c01022{bottom:432.664344pt;}
.yb0_c01022{bottom:434.302952pt;}
.yae_c01022{bottom:438.574877pt;}
.yaf_c01022{bottom:439.285576pt;}
.yad_c01022{bottom:443.925176pt;}
.yac_c01022{bottom:449.403227pt;}
.yab_c01022{bottom:452.045448pt;}
.yaa_c01022{bottom:457.433299pt;}
.ya9_c01022{bottom:459.575277pt;}
.ya8_c01022{bottom:464.942109pt;}
.ya7_c01022{bottom:466.581045pt;}
.ya6_c01022{bottom:468.195947pt;}
.ya4_c01022{bottom:471.143973pt;}
.ya5_c01022{bottom:471.409757pt;}
.ya3_c01022{bottom:472.911272pt;}
.ya2_c01022{bottom:474.672152pt;}
.ya1_c01022{bottom:478.679024pt;}
.ya0_c01022{bottom:484.322269pt;}
.y9f_c01022{bottom:487.833899pt;}
.y9e_c01022{bottom:489.464627pt;}
.y9d_c01022{bottom:494.539163pt;}
.y9c_c01022{bottom:497.380544pt;}
.y9b_c01022{bottom:500.197333pt;}
.y9a_c01022{bottom:513.685832pt;}
.y99_c01022{bottom:517.267975pt;}
.y98_c01022{bottom:519.004340pt;}
.y97_c01022{bottom:520.739293pt;}
.y96_c01022{bottom:521.664109pt;}
.y95_c01022{bottom:525.144444pt;}
.y94_c01022{bottom:526.452173pt;}
.y93_c01022{bottom:529.554208pt;}
.y92_c01022{bottom:531.234031pt;}
.y91_c01022{bottom:533.476416pt;}
.y90_c01022{bottom:539.117997pt;}
.y8f_c01022{bottom:541.224651pt;}
.y8e_c01022{bottom:542.944956pt;}
.y8d_c01022{bottom:545.935917pt;}
.y8c_c01022{bottom:548.480445pt;}
.y8b_c01022{bottom:550.104637pt;}
.y8a_c01022{bottom:552.210899pt;}
.y89_c01022{bottom:553.096252pt;}
.y88_c01022{bottom:555.200357pt;}
.y87_c01022{bottom:556.420572pt;}
.y86_c01022{bottom:559.002696pt;}
.y85_c01022{bottom:560.568919pt;}
.y84_c01022{bottom:562.722093pt;}
.y83_c01022{bottom:563.953560pt;}
.y82_c01022{bottom:570.124316pt;}
.y81_c01022{bottom:572.040239pt;}
.y80_c01022{bottom:575.740343pt;}
.y7f_c01022{bottom:577.085904pt;}
.y7e_c01022{bottom:580.361761pt;}
.y7d_c01022{bottom:581.665952pt;}
.y7c_c01022{bottom:586.749028pt;}
.y7b_c01022{bottom:588.178401pt;}
.y7a_c01022{bottom:590.424567pt;}
.y79_c01022{bottom:593.663732pt;}
.y78_c01022{bottom:596.844605pt;}
.y77_c01022{bottom:600.323924pt;}
.y76_c01022{bottom:601.726661pt;}
.y75_c01022{bottom:603.153899pt;}
.y74_c01022{bottom:605.955388pt;}
.y73_c01022{bottom:607.405924pt;}
.y72_c01022{bottom:608.356928pt;}
.y71_c01022{bottom:611.138516pt;}
.y70_c01022{bottom:613.541453pt;}
.y6f_c01022{bottom:616.299456pt;}
.y6e_c01022{bottom:617.730091pt;}
.y6d_c01022{bottom:622.441127pt;}
.y6c_c01022{bottom:623.843407pt;}
.y6b_c01022{bottom:625.193511pt;}
.y6a_c01022{bottom:627.565676pt;}
.y69_c01022{bottom:634.867089pt;}
.y68_c01022{bottom:636.285643pt;}
.y67_c01022{bottom:639.494780pt;}
.y66_c01022{bottom:641.826743pt;}
.y65_c01022{bottom:646.001375pt;}
.y64_c01022{bottom:651.070691pt;}
.y63_c01022{bottom:652.481731pt;}
.y62_c01022{bottom:654.217681pt;}
.y61_c01022{bottom:658.780285pt;}
.y60_c01022{bottom:665.449076pt;}
.y5f_c01022{bottom:669.974017pt;}
.y5e_c01022{bottom:671.338375pt;}
.y5d_c01022{bottom:672.698119pt;}
.y5c_c01022{bottom:678.498887pt;}
.y5b_c01022{bottom:679.458880pt;}
.y5a_c01022{bottom:681.637348pt;}
.y59_c01022{bottom:683.009088pt;}
.y58_c01022{bottom:684.377627pt;}
.y57_c01022{bottom:687.474979pt;}
.y56_c01022{bottom:690.233787pt;}
.y55_c01022{bottom:697.038972pt;}
.y54_c01022{bottom:698.359396pt;}
.y53_c01022{bottom:700.130481pt;}
.y52_c01022{bottom:701.847009pt;}
.y51_c01022{bottom:703.059339pt;}
.y50_c01022{bottom:704.407519pt;}
.y4f_c01022{bottom:707.844037pt;}
.y4e_c01022{bottom:709.579331pt;}
.y4d_c01022{bottom:713.015849pt;}
.y4c_c01022{bottom:716.462796pt;}
.y4b_c01022{bottom:719.408680pt;}
.y4a_c01022{bottom:720.708484pt;}
.y49_c01022{bottom:727.618976pt;}
.y48_c01022{bottom:729.009953pt;}
.y47_c01022{bottom:731.833199pt;}
.y46_c01022{bottom:736.112076pt;}
.y45_c01022{bottom:738.930879pt;}
.y44_c01022{bottom:740.337471pt;}
.y43_c01022{bottom:743.655675pt;}
.y42_c01022{bottom:747.327532pt;}
.y41_c01022{bottom:748.779179pt;}
.y40_c01022{bottom:751.130111pt;}
.y3f_c01022{bottom:754.792364pt;}
.y3e_c01022{bottom:758.951075pt;}
.y3d_c01022{bottom:763.244616pt;}
.y3c_c01022{bottom:766.778801pt;}
.y3b_c01022{bottom:767.995769pt;}
.y3a_c01022{bottom:770.650352pt;}
.y39_c01022{bottom:774.024081pt;}
.y38_c01022{bottom:775.336168pt;}
.y37_c01022{bottom:778.821128pt;}
.y36_c01022{bottom:783.050468pt;}
.y35_c01022{bottom:784.562280pt;}
.y34_c01022{bottom:791.253527pt;}
.y33_c01022{bottom:792.169261pt;}
.y32_c01022{bottom:795.648028pt;}
.y31_c01022{bottom:798.364119pt;}
.y30_c01022{bottom:799.649947pt;}
.y2f_c01022{bottom:801.003333pt;}
.y2e_c01022{bottom:802.300635pt;}
.y2d_c01022{bottom:804.960705pt;}
.y2c_c01022{bottom:806.270591pt;}
.y2b_c01022{bottom:808.941089pt;}
.y2a_c01022{bottom:810.714187pt;}
.y29_c01022{bottom:812.427213pt;}
.y28_c01022{bottom:817.206327pt;}
.y27_c01022{bottom:821.756843pt;}
.y26_c01022{bottom:824.416391pt;}
.y25_c01022{bottom:825.791679pt;}
.y24_c01022{bottom:827.083165pt;}
.y23_c01022{bottom:830.639487pt;}
.y22_c01022{bottom:831.978852pt;}
.y21_c01022{bottom:835.522107pt;}
.y20_c01022{bottom:838.565312pt;}
.y1f_c01022{bottom:839.883992pt;}
.y1e_c01022{bottom:842.570145pt;}
.y1d_c01022{bottom:845.189459pt;}
.y1c_c01022{bottom:846.448917pt;}
.y1b_c01022{bottom:848.166060pt;}
.y1a_c01022{bottom:854.360511pt;}
.y19_c01022{bottom:855.670984pt;}
.y18_c01022{bottom:860.118108pt;}
.y17_c01022{bottom:864.996768pt;}
.y16_c01022{bottom:867.215096pt;}
.y15_c01022{bottom:868.500924pt;}
.y14_c01022{bottom:871.134847pt;}
.y13_c01022{bottom:872.470292pt;}
.y12_c01022{bottom:873.325107pt;}
.y11_c01022{bottom:874.686529pt;}
.y10_c01022{bottom:878.174221pt;}
.yf_c01022{bottom:879.881263pt;}
.ye_c01022{bottom:885.854715pt;}
.yd_c01022{bottom:887.779304pt;}
.yc_c01022{bottom:891.153052pt;}
.yb_c01022{bottom:894.979691pt;}
.ya_c01022{bottom:898.835337pt;}
.y9_c01022{bottom:900.331536pt;}
.y8_c01022{bottom:902.228359pt;}
.y7_c01022{bottom:904.105712pt;}
.y6_c01022{bottom:908.906667pt;}
.y5_c01022{bottom:955.928341pt;}
.y4_c01022{bottom:959.497465pt;}
.y3_c01022{bottom:964.196021pt;}
.y2_c01022{bottom:965.712316pt;}
.y1_c01022{bottom:969.392000pt;}
.h7_c01022{height:58.678457pt;}
.hd_c01022{height:63.979773pt;}
.h5_c01022{height:64.012863pt;}
.he_c01022{height:64.024475pt;}
.h2_c01022{height:64.025915pt;}
.ha_c01022{height:69.311421pt;}
.h11_c01022{height:69.332397pt;}
.h4_c01022{height:69.347268pt;}
.h3_c01022{height:69.361408pt;}
.hc_c01022{height:74.643068pt;}
.h10_c01022{height:74.665659pt;}
.hf_c01022{height:74.680105pt;}
.h8_c01022{height:74.681673pt;}
.h12_c01022{height:74.690108pt;}
.h9_c01022{height:80.016078pt;}
.hb_c01022{height:85.306364pt;}
.h6_c01022{height:85.350484pt;}
.h0_c01022{height:1107.840000pt;}
.h1_c01022{height:1108.000000pt;}
.w0_c01022{width:796.533333pt;}
.w1_c01022{width:796.666667pt;}
.x0_c01022{left:0.000000pt;}
.xc4_c01022{left:98.010667pt;}
.xbe_c01022{left:100.542908pt;}
.xb8_c01022{left:101.834667pt;}
.xab_c01022{left:105.609333pt;}
.xa0_c01022{left:107.171133pt;}
.x94_c01022{left:109.448483pt;}
.x8b_c01022{left:111.328771pt;}
.x7a_c01022{left:113.905528pt;}
.x68_c01022{left:116.123096pt;}
.xe_c01022{left:118.328076pt;}
.x57_c01022{left:119.453392pt;}
.x46_c01022{left:121.847343pt;}
.x3c_c01022{left:123.587220pt;}
.x26_c01022{left:125.496284pt;}
.x19_c01022{left:127.285876pt;}
.xac_c01022{left:136.062971pt;}
.x71_c01022{left:143.862640pt;}
.xa6_c01022{left:145.838557pt;}
.xbf_c01022{left:147.997469pt;}
.x47_c01022{left:151.369051pt;}
.x33_c01022{left:153.044593pt;}
.xf_c01022{left:156.206883pt;}
.x7b_c01022{left:163.678783pt;}
.x1a_c01022{left:165.397848pt;}
.x5e_c01022{left:166.813340pt;}
.x8c_c01022{left:169.638069pt;}
.xc5_c01022{left:175.979749pt;}
.xb9_c01022{left:177.401896pt;}
.x4f_c01022{left:178.936896pt;}
.x69_c01022{left:183.723367pt;}
.xc0_c01022{left:186.199008pt;}
.x1b_c01022{left:193.362016pt;}
.x5f_c01022{left:194.910588pt;}
.x95_c01022{left:198.239517pt;}
.x3d_c01022{left:199.803988pt;}
.x7c_c01022{left:200.975440pt;}
.xba_c01022{left:206.894792pt;}
.x81_c01022{left:210.068000pt;}
.x58_c01022{left:216.421809pt;}
.x48_c01022{left:218.234468pt;}
.x60_c01022{left:224.098809pt;}
.x5_c01022{left:225.540000pt;}
.x96_c01022{left:227.445731pt;}
.x8d_c01022{left:228.682051pt;}
.x72_c01022{left:230.254869pt;}
.x27_c01022{left:231.588216pt;}
.x10_c01022{left:233.628556pt;}
.xb2_c01022{left:241.306496pt;}
.x50_c01022{left:246.195445pt;}
.x34_c01022{left:249.043976pt;}
.x1c_c01022{left:251.500532pt;}
.x59_c01022{left:253.311147pt;}
.xbb_c01022{left:255.944496pt;}
.x82_c01022{left:258.536203pt;}
.xad_c01022{left:262.073112pt;}
.x11_c01022{left:263.834872pt;}
.x28_c01022{left:269.616272pt;}
.x9c_c01022{left:273.692480pt;}
.x51_c01022{left:275.920739pt;}
.x3e_c01022{left:278.963340pt;}
.x12_c01022{left:282.814268pt;}
.xc1_c01022{left:283.722471pt;}
.xb3_c01022{left:288.499920pt;}
.x73_c01022{left:290.248473pt;}
.xc6_c01022{left:291.470971pt;}
.x49_c01022{left:296.485967pt;}
.x7d_c01022{left:298.856623pt;}
.x6a_c01022{left:300.320764pt;}
.xa1_c01022{left:302.303437pt;}
.x1_c01022{left:304.924000pt;}
.x83_c01022{left:307.427557pt;}
.x29_c01022{left:308.977921pt;}
.x1d_c01022{left:311.137875pt;}
.x13_c01022{left:312.463743pt;}
.x74_c01022{left:318.583083pt;}
.x61_c01022{left:322.133451pt;}
.x6_c01022{left:323.420688pt;}
.x8e_c01022{left:326.059875pt;}
.x35_c01022{left:328.152147pt;}
.xa7_c01022{left:329.459864pt;}
.x6b_c01022{left:330.714681pt;}
.xa2_c01022{left:332.187408pt;}
.x97_c01022{left:335.155688pt;}
.x1e_c01022{left:340.418320pt;}
.x62_c01022{left:351.899760pt;}
.x52_c01022{left:353.010885pt;}
.x3f_c01022{left:355.375912pt;}
.x36_c01022{left:357.924271pt;}
.x7_c01022{left:361.695708pt;}
.x8f_c01022{left:364.915416pt;}
.x2a_c01022{left:368.268879pt;}
.xc7_c01022{left:369.526547pt;}
.x14_c01022{left:370.927332pt;}
.x2_c01022{left:374.282572pt;}
.x7e_c01022{left:376.101075pt;}
.xae_c01022{left:378.163133pt;}
.x9d_c01022{left:382.186277pt;}
.x75_c01022{left:388.024643pt;}
.x5a_c01022{left:391.038753pt;}
.x84_c01022{left:394.744573pt;}
.x2b_c01022{left:397.342799pt;}
.x15_c01022{left:399.456333pt;}
.x8_c01022{left:400.367664pt;}
.xc2_c01022{left:401.569333pt;}
.x3_c01022{left:402.863296pt;}
.x1f_c01022{left:407.961253pt;}
.x63_c01022{left:409.299781pt;}
.xbc_c01022{left:411.492776pt;}
.x98_c01022{left:412.622765pt;}
.x4a_c01022{left:413.905205pt;}
.xb4_c01022{left:415.516045pt;}
.xa8_c01022{left:417.333477pt;}
.x85_c01022{left:422.804341pt;}
.x40_c01022{left:424.442177pt;}
.xa3_c01022{left:428.584376pt;}
.x9_c01022{left:430.871796pt;}
.x37_c01022{left:434.519701pt;}
.x76_c01022{left:436.955384pt;}
.x6c_c01022{left:438.757125pt;}
.xbd_c01022{left:441.254467pt;}
.x16_c01022{left:448.684669pt;}
.xc3_c01022{left:450.649717pt;}
.x41_c01022{left:453.718311pt;}
.x2c_c01022{left:456.393931pt;}
.x64_c01022{left:459.297487pt;}
.x90_c01022{left:462.677880pt;}
.x6d_c01022{left:466.462740pt;}
.x7f_c01022{left:473.677164pt;}
.x77_c01022{left:474.696723pt;}
.x5b_c01022{left:479.770631pt;}
.x86_c01022{left:483.228584pt;}
.x2d_c01022{left:485.184069pt;}
.x20_c01022{left:486.624612pt;}
.x9e_c01022{left:489.311995pt;}
.x4_c01022{left:491.426644pt;}
.x38_c01022{left:494.792815pt;}
.x53_c01022{left:499.830833pt;}
.xb5_c01022{left:504.051952pt;}
.xa4_c01022{left:506.971592pt;}
.xa_c01022{left:509.479776pt;}
.x91_c01022{left:510.623499pt;}
.x42_c01022{left:512.385129pt;}
.x2e_c01022{left:515.226549pt;}
.x21_c01022{left:516.354007pt;}
.x99_c01022{left:519.017869pt;}
.x39_c01022{left:522.407908pt;}
.x54_c01022{left:529.349601pt;}
.x78_c01022{left:533.814941pt;}
.x6e_c01022{left:536.081187pt;}
.x65_c01022{left:536.975524pt;}
.x2f_c01022{left:543.755551pt;}
.x4b_c01022{left:550.054273pt;}
.x80_c01022{left:553.187805pt;}
.x17_c01022{left:556.969465pt;}
.x55_c01022{left:558.989647pt;}
.xb6_c01022{left:562.940605pt;}
.x6f_c01022{left:564.684700pt;}
.x66_c01022{left:567.174799pt;}
.x87_c01022{left:580.331323pt;}
.xa9_c01022{left:585.663275pt;}
.xb_c01022{left:587.496348pt;}
.x4c_c01022{left:589.024812pt;}
.x22_c01022{left:595.283765pt;}
.x5c_c01022{left:597.532261pt;}
.x43_c01022{left:601.445695pt;}
.x3a_c01022{left:602.628560pt;}
.x30_c01022{left:604.057692pt;}
.x92_c01022{left:610.006947pt;}
.xaf_c01022{left:614.150213pt;}
.xa5_c01022{left:616.016051pt;}
.x9a_c01022{left:618.064181pt;}
.x23_c01022{left:623.955356pt;}
.x67_c01022{left:625.488637pt;}
.x5d_c01022{left:627.678361pt;}
.x4d_c01022{left:629.243761pt;}
.xb7_c01022{left:632.612981pt;}
.xb0_c01022{left:634.872685pt;}
.x70_c01022{left:643.333689pt;}
.x9b_c01022{left:646.965595pt;}
.x88_c01022{left:649.277155pt;}
.x24_c01022{left:654.498799pt;}
.xc_c01022{left:656.279496pt;}
.x56_c01022{left:657.259065pt;}
.x4e_c01022{left:659.213087pt;}
.x44_c01022{left:660.203089pt;}
.xb1_c01022{left:662.187280pt;}
.x9f_c01022{left:676.682277pt;}
.x89_c01022{left:679.576435pt;}
.x31_c01022{left:681.270176pt;}
.x18_c01022{left:684.779908pt;}
.x45_c01022{left:689.160875pt;}
.x79_c01022{left:692.198963pt;}
.xd_c01022{left:695.517552pt;}
.x3b_c01022{left:700.100195pt;}
.x32_c01022{left:701.600481pt;}
.xaa_c01022{left:703.490501pt;}
.x93_c01022{left:707.077309pt;}
.x8a_c01022{left:709.986160pt;}
.x25_c01022{left:713.539275pt;}
}





/* 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_c01023 {
    display:none;
  }
  .loading-indicator_c01023.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01023 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_c01023 { 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_c01023" -> "#page-container .classname_c01023")
 */
.pf_c01023 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01023 { /* 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_c01023.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01023 { /* 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_c01023 { /* 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_c01023 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01023 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01023 {overflow:visible;}
  }
}
.c_c01023 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01023 { /* 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_c01023:after { /* webkit #35443 */
  content: '';
}
.t_c01023:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01023 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 */
}
.__c01023 { /* 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_c01023 { /* info for Javascript */
  display:none;
}
.l_c01023 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01023 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01023 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01023: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_c01023 {
    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_c01023.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01023.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_c01023 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01023{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01023;src:url('chunks/assets/font_a922ad9dd70ab389832b6583.woff2')format("woff");}.ff1_c01023{font-family:ff1_c01023;line-height:1.000000;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;}
.m1_c01023{transform:matrix(0.096045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096045,0.000000,0.000000,0.250000,0,0);}
.m2_c01023{transform:matrix(0.114235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114235,0.000000,0.000000,0.250000,0,0);}
.m0_c01023{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.me_c01023{transform:matrix(0.195833,-0.002154,0.002750,0.249985,0,0);-ms-transform:matrix(0.195833,-0.002154,0.002750,0.249985,0,0);-webkit-transform:matrix(0.195833,-0.002154,0.002750,0.249985,0,0);}
.m10_c01023{transform:matrix(0.195858,-0.002154,0.002750,0.249985,0,0);-ms-transform:matrix(0.195858,-0.002154,0.002750,0.249985,0,0);-webkit-transform:matrix(0.195858,-0.002154,0.002750,0.249985,0,0);}
.mf_c01023{transform:matrix(0.204653,-0.002251,0.002750,0.249985,0,0);-ms-transform:matrix(0.204653,-0.002251,0.002750,0.249985,0,0);-webkit-transform:matrix(0.204653,-0.002251,0.002750,0.249985,0,0);}
.mc_c01023{transform:matrix(0.211802,-0.002330,0.002750,0.249985,0,0);-ms-transform:matrix(0.211802,-0.002330,0.002750,0.249985,0,0);-webkit-transform:matrix(0.211802,-0.002330,0.002750,0.249985,0,0);}
.m4_c01023{transform:matrix(0.237756,-0.002615,0.002750,0.249985,0,0);-ms-transform:matrix(0.237756,-0.002615,0.002750,0.249985,0,0);-webkit-transform:matrix(0.237756,-0.002615,0.002750,0.249985,0,0);}
.m11_c01023{transform:matrix(0.238266,-0.002621,0.002750,0.249985,0,0);-ms-transform:matrix(0.238266,-0.002621,0.002750,0.249985,0,0);-webkit-transform:matrix(0.238266,-0.002621,0.002750,0.249985,0,0);}
.md_c01023{transform:matrix(0.260874,-0.002870,0.002750,0.249985,0,0);-ms-transform:matrix(0.260874,-0.002870,0.002750,0.249985,0,0);-webkit-transform:matrix(0.260874,-0.002870,0.002750,0.249985,0,0);}
.m5_c01023{transform:matrix(0.261479,-0.002876,0.002750,0.249985,0,0);-ms-transform:matrix(0.261479,-0.002876,0.002750,0.249985,0,0);-webkit-transform:matrix(0.261479,-0.002876,0.002750,0.249985,0,0);}
.m8_c01023{transform:matrix(0.265934,-0.002925,0.002750,0.249985,0,0);-ms-transform:matrix(0.265934,-0.002925,0.002750,0.249985,0,0);-webkit-transform:matrix(0.265934,-0.002925,0.002750,0.249985,0,0);}
.m12_c01023{transform:matrix(0.273303,-0.003006,0.002750,0.249985,0,0);-ms-transform:matrix(0.273303,-0.003006,0.002750,0.249985,0,0);-webkit-transform:matrix(0.273303,-0.003006,0.002750,0.249985,0,0);}
.m3_c01023{transform:matrix(0.282508,-0.003108,0.002750,0.249985,0,0);-ms-transform:matrix(0.282508,-0.003108,0.002750,0.249985,0,0);-webkit-transform:matrix(0.282508,-0.003108,0.002750,0.249985,0,0);}
.ma_c01023{transform:matrix(0.291937,-0.003211,0.002750,0.249985,0,0);-ms-transform:matrix(0.291937,-0.003211,0.002750,0.249985,0,0);-webkit-transform:matrix(0.291937,-0.003211,0.002750,0.249985,0,0);}
.m13_c01023{transform:matrix(0.303397,-0.003337,0.002750,0.249985,0,0);-ms-transform:matrix(0.303397,-0.003337,0.002750,0.249985,0,0);-webkit-transform:matrix(0.303397,-0.003337,0.002750,0.249985,0,0);}
.m9_c01023{transform:matrix(0.311981,-0.003432,0.002750,0.249985,0,0);-ms-transform:matrix(0.311981,-0.003432,0.002750,0.249985,0,0);-webkit-transform:matrix(0.311981,-0.003432,0.002750,0.249985,0,0);}
.mb_c01023{transform:matrix(0.345489,-0.003800,0.002750,0.249985,0,0);-ms-transform:matrix(0.345489,-0.003800,0.002750,0.249985,0,0);-webkit-transform:matrix(0.345489,-0.003800,0.002750,0.249985,0,0);}
.m14_c01023{transform:matrix(0.351269,-0.003864,0.002750,0.249985,0,0);-ms-transform:matrix(0.351269,-0.003864,0.002750,0.249985,0,0);-webkit-transform:matrix(0.351269,-0.003864,0.002750,0.249985,0,0);}
.m7_c01023{transform:matrix(0.426454,-0.004691,0.002750,0.249985,0,0);-ms-transform:matrix(0.426454,-0.004691,0.002750,0.249985,0,0);-webkit-transform:matrix(0.426454,-0.004691,0.002750,0.249985,0,0);}
.m6_c01023{transform:matrix(0.904650,-0.009951,0.002750,0.249985,0,0);-ms-transform:matrix(0.904650,-0.009951,0.002750,0.249985,0,0);-webkit-transform:matrix(0.904650,-0.009951,0.002750,0.249985,0,0);}
.v0_c01023{vertical-align:0.000000px;}
.ls0_c01023{letter-spacing:0.000000px;}
.sc__c01023{text-shadow:none;}
.sc0_c01023{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__c01023{-webkit-text-stroke:0px transparent;}
.sc0_c01023{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01023{word-spacing:0.000000px;}
.fc0_c01023{color:transparent;}
.fs0_c01023{font-size:18.000000px;}
.fs1_c01023{font-size:96.005808px;}
.fs2_c01023{font-size:120.007260px;}
.y0_c01023{bottom:0.000000px;}
.yb_c01023{bottom:723.305030px;}
.yc_c01023{bottom:723.559952px;}
.yd_c01023{bottom:723.802674px;}
.ye_c01023{bottom:724.468914px;}
.yf_c01023{bottom:724.846923px;}
.y10_c01023{bottom:725.682796px;}
.y11_c01023{bottom:726.684558px;}
.y12_c01023{bottom:726.955077px;}
.y13_c01023{bottom:727.294445px;}
.y2_c01023{bottom:756.460500px;}
.y3_c01023{bottom:757.774593px;}
.y4_c01023{bottom:758.147130px;}
.y5_c01023{bottom:758.448849px;}
.y6_c01023{bottom:760.092332px;}
.y7_c01023{bottom:760.288335px;}
.y8_c01023{bottom:760.949985px;}
.y9_c01023{bottom:761.273633px;}
.ya_c01023{bottom:761.574758px;}
.y1_c01023{bottom:1112.247000px;}
.h2_c01023{height:18.000000px;}
.h3_c01023{height:96.005808px;}
.h4_c01023{height:120.007260px;}
.h0_c01023{height:1246.320000px;}
.h1_c01023{height:1246.500000px;}
.w0_c01023{width:896.100000px;}
.w1_c01023{width:896.250000px;}
.x0_c01023{left:0.000000px;}
.x4_c01023{left:127.539000px;}
.xd_c01023{left:134.088958px;}
.xe_c01023{left:165.992014px;}
.xf_c01023{left:196.240504px;}
.x5_c01023{left:247.002000px;}
.x10_c01023{left:279.583260px;}
.x6_c01023{left:280.869000px;}
.x1_c01023{left:302.130000px;}
.x7_c01023{left:308.298000px;}
.x11_c01023{left:326.903827px;}
.x2_c01023{left:409.050000px;}
.x12_c01023{left:431.395776px;}
.x8_c01023{left:457.705500px;}
.x9_c01023{left:475.524000px;}
.x3_c01023{left:489.240000px;}
.xa_c01023{left:535.674000px;}
.x13_c01023{left:556.696418px;}
.xb_c01023{left:565.096500px;}
.x14_c01023{left:590.426523px;}
.xc_c01023{left:592.471500px;}
.x15_c01023{left:632.870426px;}
@media print{
.v0_c01023{vertical-align:0.000000pt;}
.ls0_c01023{letter-spacing:0.000000pt;}
.ws0_c01023{word-spacing:0.000000pt;}
.fs0_c01023{font-size:16.000000pt;}
.fs1_c01023{font-size:85.338496pt;}
.fs2_c01023{font-size:106.673120pt;}
.y0_c01023{bottom:0.000000pt;}
.yb_c01023{bottom:642.937804pt;}
.yc_c01023{bottom:643.164401pt;}
.yd_c01023{bottom:643.380155pt;}
.ye_c01023{bottom:643.972368pt;}
.yf_c01023{bottom:644.308376pt;}
.y10_c01023{bottom:645.051375pt;}
.y11_c01023{bottom:645.941829pt;}
.y12_c01023{bottom:646.182291pt;}
.y13_c01023{bottom:646.483951pt;}
.y2_c01023{bottom:672.409333pt;}
.y3_c01023{bottom:673.577416pt;}
.y4_c01023{bottom:673.908560pt;}
.y5_c01023{bottom:674.176755pt;}
.y6_c01023{bottom:675.637628pt;}
.y7_c01023{bottom:675.811853pt;}
.y8_c01023{bottom:676.399987pt;}
.y9_c01023{bottom:676.687673pt;}
.ya_c01023{bottom:676.955340pt;}
.y1_c01023{bottom:988.664000pt;}
.h2_c01023{height:16.000000pt;}
.h3_c01023{height:85.338496pt;}
.h4_c01023{height:106.673120pt;}
.h0_c01023{height:1107.840000pt;}
.h1_c01023{height:1108.000000pt;}
.w0_c01023{width:796.533333pt;}
.w1_c01023{width:796.666667pt;}
.x0_c01023{left:0.000000pt;}
.x4_c01023{left:113.368000pt;}
.xd_c01023{left:119.190185pt;}
.xe_c01023{left:147.548457pt;}
.xf_c01023{left:174.436004pt;}
.x5_c01023{left:219.557333pt;}
.x10_c01023{left:248.518453pt;}
.x6_c01023{left:249.661333pt;}
.x1_c01023{left:268.560000pt;}
.x7_c01023{left:274.042667pt;}
.x11_c01023{left:290.581180pt;}
.x2_c01023{left:363.600000pt;}
.x12_c01023{left:383.462912pt;}
.x8_c01023{left:406.849333pt;}
.x9_c01023{left:422.688000pt;}
.x3_c01023{left:434.880000pt;}
.xa_c01023{left:476.154667pt;}
.x13_c01023{left:494.841260pt;}
.xb_c01023{left:502.308000pt;}
.x14_c01023{left:524.823576pt;}
.xc_c01023{left:526.641333pt;}
.x15_c01023{left:562.551489pt;}
}





/* 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_c01024 {
    display:none;
  }
  .loading-indicator_c01024.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01024 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_c01024 { 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_c01024" -> "#page-container .classname_c01024")
 */
.pf_c01024 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01024 { /* 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_c01024.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01024 { /* 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_c01024 { /* 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_c01024 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01024 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01024 {overflow:visible;}
  }
}
.c_c01024 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01024 { /* 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_c01024:after { /* webkit #35443 */
  content: '';
}
.t_c01024:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01024 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 */
}
.__c01024 { /* 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_c01024 { /* info for Javascript */
  display:none;
}
.l_c01024 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01024 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01024 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01024: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_c01024 {
    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_c01024.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01024.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_c01024 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01024{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01024;src:url('chunks/assets/font_7c6b9abe6ee2a268480c528b.woff2')format("woff");}.ff1_c01024{font-family:ff1_c01024;line-height:1.000000;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;}
.maf_c01024{transform:matrix(0.123565,0.004576,-0.009253,0.249829,0,0);-ms-transform:matrix(0.123565,0.004576,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.123565,0.004576,-0.009253,0.249829,0,0);}
.mb4_c01024{transform:matrix(0.127897,0.004737,-0.009253,0.249829,0,0);-ms-transform:matrix(0.127897,0.004737,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.127897,0.004737,-0.009253,0.249829,0,0);}
.m0_c01024{transform:matrix(0.129182,0.003875,-0.007497,0.249888,0,0);-ms-transform:matrix(0.129182,0.003875,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.129182,0.003875,-0.007497,0.249888,0,0);}
.ma4_c01024{transform:matrix(0.130781,0.003923,-0.007497,0.249888,0,0);-ms-transform:matrix(0.130781,0.003923,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.130781,0.003923,-0.007497,0.249888,0,0);}
.mb2_c01024{transform:matrix(0.132649,0.004913,-0.009253,0.249829,0,0);-ms-transform:matrix(0.132649,0.004913,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.132649,0.004913,-0.009253,0.249829,0,0);}
.mb1_c01024{transform:matrix(0.138520,0.005130,-0.009253,0.249829,0,0);-ms-transform:matrix(0.138520,0.005130,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.138520,0.005130,-0.009253,0.249829,0,0);}
.mb7_c01024{transform:matrix(0.139884,0.005181,-0.009253,0.249829,0,0);-ms-transform:matrix(0.139884,0.005181,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.139884,0.005181,-0.009253,0.249829,0,0);}
.mae_c01024{transform:matrix(0.143761,0.005324,-0.009253,0.249829,0,0);-ms-transform:matrix(0.143761,0.005324,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.143761,0.005324,-0.009253,0.249829,0,0);}
.mb3_c01024{transform:matrix(0.143906,0.005330,-0.009253,0.249829,0,0);-ms-transform:matrix(0.143906,0.005330,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.143906,0.005330,-0.009253,0.249829,0,0);}
.mad_c01024{transform:matrix(0.147394,0.005459,-0.009253,0.249829,0,0);-ms-transform:matrix(0.147394,0.005459,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.147394,0.005459,-0.009253,0.249829,0,0);}
.mb5_c01024{transform:matrix(0.149248,0.005528,-0.009253,0.249829,0,0);-ms-transform:matrix(0.149248,0.005528,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.149248,0.005528,-0.009253,0.249829,0,0);}
.mb0_c01024{transform:matrix(0.150782,0.005585,-0.009253,0.249829,0,0);-ms-transform:matrix(0.150782,0.005585,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.150782,0.005585,-0.009253,0.249829,0,0);}
.m1_c01024{transform:matrix(0.154311,0.004629,-0.007497,0.249888,0,0);-ms-transform:matrix(0.154311,0.004629,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.154311,0.004629,-0.007497,0.249888,0,0);}
.mb6_c01024{transform:matrix(0.156133,0.005783,-0.009253,0.249829,0,0);-ms-transform:matrix(0.156133,0.005783,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.156133,0.005783,-0.009253,0.249829,0,0);}
.ma9_c01024{transform:matrix(0.159078,0.004772,-0.007497,0.249888,0,0);-ms-transform:matrix(0.159078,0.004772,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.159078,0.004772,-0.007497,0.249888,0,0);}
.m3_c01024{transform:matrix(0.168689,0.005061,-0.007497,0.249888,0,0);-ms-transform:matrix(0.168689,0.005061,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.168689,0.005061,-0.007497,0.249888,0,0);}
.ma_c01024{transform:matrix(0.172697,0.004490,-0.006498,0.249916,0,0);-ms-transform:matrix(0.172697,0.004490,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.172697,0.004490,-0.006498,0.249916,0,0);}
.mab_c01024{transform:matrix(0.173092,0.005193,-0.007497,0.249888,0,0);-ms-transform:matrix(0.173092,0.005193,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.173092,0.005193,-0.007497,0.249888,0,0);}
.ma5_c01024{transform:matrix(0.174047,0.005221,-0.007497,0.249888,0,0);-ms-transform:matrix(0.174047,0.005221,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.174047,0.005221,-0.007497,0.249888,0,0);}
.m8_c01024{transform:matrix(0.174681,0.004542,-0.006498,0.249916,0,0);-ms-transform:matrix(0.174681,0.004542,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.174681,0.004542,-0.006498,0.249916,0,0);}
.ma6_c01024{transform:matrix(0.177000,0.005310,-0.007497,0.249888,0,0);-ms-transform:matrix(0.177000,0.005310,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.177000,0.005310,-0.007497,0.249888,0,0);}
.m1a_c01024{transform:matrix(0.177550,0.004616,-0.006498,0.249916,0,0);-ms-transform:matrix(0.177550,0.004616,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.177550,0.004616,-0.006498,0.249916,0,0);}
.m6c_c01024{transform:matrix(0.181313,0.005439,-0.007497,0.249888,0,0);-ms-transform:matrix(0.181313,0.005439,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.181313,0.005439,-0.007497,0.249888,0,0);}
.ma1_c01024{transform:matrix(0.181803,0.005454,-0.007497,0.249888,0,0);-ms-transform:matrix(0.181803,0.005454,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.181803,0.005454,-0.007497,0.249888,0,0);}
.m73_c01024{transform:matrix(0.181863,0.005456,-0.007497,0.249888,0,0);-ms-transform:matrix(0.181863,0.005456,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.181863,0.005456,-0.007497,0.249888,0,0);}
.m6f_c01024{transform:matrix(0.182388,0.005472,-0.007497,0.249888,0,0);-ms-transform:matrix(0.182388,0.005472,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.182388,0.005472,-0.007497,0.249888,0,0);}
.mb_c01024{transform:matrix(0.183583,0.004773,-0.006498,0.249916,0,0);-ms-transform:matrix(0.183583,0.004773,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.183583,0.004773,-0.006498,0.249916,0,0);}
.m6e_c01024{transform:matrix(0.184177,0.005525,-0.007497,0.249888,0,0);-ms-transform:matrix(0.184177,0.005525,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.184177,0.005525,-0.007497,0.249888,0,0);}
.ma7_c01024{transform:matrix(0.185267,0.005558,-0.007497,0.249888,0,0);-ms-transform:matrix(0.185267,0.005558,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.185267,0.005558,-0.007497,0.249888,0,0);}
.m76_c01024{transform:matrix(0.191839,0.005755,-0.007497,0.249888,0,0);-ms-transform:matrix(0.191839,0.005755,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.191839,0.005755,-0.007497,0.249888,0,0);}
.m86_c01024{transform:matrix(0.191889,0.005757,-0.007497,0.249888,0,0);-ms-transform:matrix(0.191889,0.005757,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.191889,0.005757,-0.007497,0.249888,0,0);}
.m72_c01024{transform:matrix(0.192039,0.005761,-0.007497,0.249888,0,0);-ms-transform:matrix(0.192039,0.005761,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.192039,0.005761,-0.007497,0.249888,0,0);}
.m56_c01024{transform:matrix(0.193068,0.005792,-0.007497,0.249888,0,0);-ms-transform:matrix(0.193068,0.005792,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.193068,0.005792,-0.007497,0.249888,0,0);}
.m77_c01024{transform:matrix(0.194912,0.005847,-0.007497,0.249888,0,0);-ms-transform:matrix(0.194912,0.005847,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.194912,0.005847,-0.007497,0.249888,0,0);}
.m9a_c01024{transform:matrix(0.196647,0.005899,-0.007497,0.249888,0,0);-ms-transform:matrix(0.196647,0.005899,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.196647,0.005899,-0.007497,0.249888,0,0);}
.m53_c01024{transform:matrix(0.197346,0.005920,-0.007497,0.249888,0,0);-ms-transform:matrix(0.197346,0.005920,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.197346,0.005920,-0.007497,0.249888,0,0);}
.maa_c01024{transform:matrix(0.197721,0.005932,-0.007497,0.249888,0,0);-ms-transform:matrix(0.197721,0.005932,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.197721,0.005932,-0.007497,0.249888,0,0);}
.m12_c01024{transform:matrix(0.198333,0.005157,-0.006498,0.249916,0,0);-ms-transform:matrix(0.198333,0.005157,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.198333,0.005157,-0.006498,0.249916,0,0);}
.m9c_c01024{transform:matrix(0.199275,0.005978,-0.007497,0.249888,0,0);-ms-transform:matrix(0.199275,0.005978,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.199275,0.005978,-0.007497,0.249888,0,0);}
.m5c_c01024{transform:matrix(0.199330,0.005980,-0.007497,0.249888,0,0);-ms-transform:matrix(0.199330,0.005980,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.199330,0.005980,-0.007497,0.249888,0,0);}
.m4e_c01024{transform:matrix(0.201714,0.006051,-0.007497,0.249888,0,0);-ms-transform:matrix(0.201714,0.006051,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.201714,0.006051,-0.007497,0.249888,0,0);}
.m7_c01024{transform:matrix(0.201812,0.005247,-0.006498,0.249916,0,0);-ms-transform:matrix(0.201812,0.005247,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.201812,0.005247,-0.006498,0.249916,0,0);}
.m5a_c01024{transform:matrix(0.202574,0.006077,-0.007497,0.249888,0,0);-ms-transform:matrix(0.202574,0.006077,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.202574,0.006077,-0.007497,0.249888,0,0);}
.m19_c01024{transform:matrix(0.202657,0.005269,-0.006498,0.249916,0,0);-ms-transform:matrix(0.202657,0.005269,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.202657,0.005269,-0.006498,0.249916,0,0);}
.mc_c01024{transform:matrix(0.202921,0.005276,-0.006498,0.249916,0,0);-ms-transform:matrix(0.202921,0.005276,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.202921,0.005276,-0.006498,0.249916,0,0);}
.m9_c01024{transform:matrix(0.204026,0.005305,-0.006498,0.249916,0,0);-ms-transform:matrix(0.204026,0.005305,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.204026,0.005305,-0.006498,0.249916,0,0);}
.m5_c01024{transform:matrix(0.204241,0.005310,-0.006498,0.249916,0,0);-ms-transform:matrix(0.204241,0.005310,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.204241,0.005310,-0.006498,0.249916,0,0);}
.ma8_c01024{transform:matrix(0.204243,0.006127,-0.007497,0.249888,0,0);-ms-transform:matrix(0.204243,0.006127,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.204243,0.006127,-0.007497,0.249888,0,0);}
.m71_c01024{transform:matrix(0.204503,0.006135,-0.007497,0.249888,0,0);-ms-transform:matrix(0.204503,0.006135,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.204503,0.006135,-0.007497,0.249888,0,0);}
.m5e_c01024{transform:matrix(0.204773,0.006143,-0.007497,0.249888,0,0);-ms-transform:matrix(0.204773,0.006143,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.204773,0.006143,-0.007497,0.249888,0,0);}
.ma3_c01024{transform:matrix(0.206392,0.006192,-0.007497,0.249888,0,0);-ms-transform:matrix(0.206392,0.006192,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.206392,0.006192,-0.007497,0.249888,0,0);}
.mac_c01024{transform:matrix(0.206542,0.006196,-0.007497,0.249888,0,0);-ms-transform:matrix(0.206542,0.006196,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.206542,0.006196,-0.007497,0.249888,0,0);}
.m8d_c01024{transform:matrix(0.206827,0.006205,-0.007497,0.249888,0,0);-ms-transform:matrix(0.206827,0.006205,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.206827,0.006205,-0.007497,0.249888,0,0);}
.m4_c01024{transform:matrix(0.207105,0.005385,-0.006498,0.249916,0,0);-ms-transform:matrix(0.207105,0.005385,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.207105,0.005385,-0.006498,0.249916,0,0);}
.m14_c01024{transform:matrix(0.207325,0.005390,-0.006498,0.249916,0,0);-ms-transform:matrix(0.207325,0.005390,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.207325,0.005390,-0.006498,0.249916,0,0);}
.m54_c01024{transform:matrix(0.207332,0.006220,-0.007497,0.249888,0,0);-ms-transform:matrix(0.207332,0.006220,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.207332,0.006220,-0.007497,0.249888,0,0);}
.m8a_c01024{transform:matrix(0.207981,0.006239,-0.007497,0.249888,0,0);-ms-transform:matrix(0.207981,0.006239,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.207981,0.006239,-0.007497,0.249888,0,0);}
.m59_c01024{transform:matrix(0.208051,0.006242,-0.007497,0.249888,0,0);-ms-transform:matrix(0.208051,0.006242,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.208051,0.006242,-0.007497,0.249888,0,0);}
.m6_c01024{transform:matrix(0.208590,0.005423,-0.006498,0.249916,0,0);-ms-transform:matrix(0.208590,0.005423,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.208590,0.005423,-0.006498,0.249916,0,0);}
.m5b_c01024{transform:matrix(0.209891,0.006297,-0.007497,0.249888,0,0);-ms-transform:matrix(0.209891,0.006297,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.209891,0.006297,-0.007497,0.249888,0,0);}
.m74_c01024{transform:matrix(0.210760,0.006323,-0.007497,0.249888,0,0);-ms-transform:matrix(0.210760,0.006323,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.210760,0.006323,-0.007497,0.249888,0,0);}
.m6d_c01024{transform:matrix(0.210850,0.006326,-0.007497,0.249888,0,0);-ms-transform:matrix(0.210850,0.006326,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.210850,0.006326,-0.007497,0.249888,0,0);}
.mf_c01024{transform:matrix(0.211144,0.005490,-0.006498,0.249916,0,0);-ms-transform:matrix(0.211144,0.005490,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.211144,0.005490,-0.006498,0.249916,0,0);}
.m5f_c01024{transform:matrix(0.212145,0.006364,-0.007497,0.249888,0,0);-ms-transform:matrix(0.212145,0.006364,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.212145,0.006364,-0.007497,0.249888,0,0);}
.m1e_c01024{transform:matrix(0.212524,0.006376,-0.007497,0.249888,0,0);-ms-transform:matrix(0.212524,0.006376,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.212524,0.006376,-0.007497,0.249888,0,0);}
.m6b_c01024{transform:matrix(0.212859,0.006386,-0.007497,0.249888,0,0);-ms-transform:matrix(0.212859,0.006386,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.212859,0.006386,-0.007497,0.249888,0,0);}
.m75_c01024{transform:matrix(0.212929,0.006388,-0.007497,0.249888,0,0);-ms-transform:matrix(0.212929,0.006388,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.212929,0.006388,-0.007497,0.249888,0,0);}
.m24_c01024{transform:matrix(0.213539,0.006406,-0.007497,0.249888,0,0);-ms-transform:matrix(0.213539,0.006406,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.213539,0.006406,-0.007497,0.249888,0,0);}
.m79_c01024{transform:matrix(0.214568,0.006437,-0.007497,0.249888,0,0);-ms-transform:matrix(0.214568,0.006437,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.214568,0.006437,-0.007497,0.249888,0,0);}
.m21_c01024{transform:matrix(0.214963,0.006449,-0.007497,0.249888,0,0);-ms-transform:matrix(0.214963,0.006449,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.214963,0.006449,-0.007497,0.249888,0,0);}
.ma2_c01024{transform:matrix(0.216208,0.006486,-0.007497,0.249888,0,0);-ms-transform:matrix(0.216208,0.006486,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.216208,0.006486,-0.007497,0.249888,0,0);}
.m70_c01024{transform:matrix(0.219276,0.006578,-0.007497,0.249888,0,0);-ms-transform:matrix(0.219276,0.006578,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.219276,0.006578,-0.007497,0.249888,0,0);}
.m7a_c01024{transform:matrix(0.220156,0.006605,-0.007497,0.249888,0,0);-ms-transform:matrix(0.220156,0.006605,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.220156,0.006605,-0.007497,0.249888,0,0);}
.m57_c01024{transform:matrix(0.221046,0.006631,-0.007497,0.249888,0,0);-ms-transform:matrix(0.221046,0.006631,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.221046,0.006631,-0.007497,0.249888,0,0);}
.m85_c01024{transform:matrix(0.222185,0.006666,-0.007497,0.249888,0,0);-ms-transform:matrix(0.222185,0.006666,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.222185,0.006666,-0.007497,0.249888,0,0);}
.m58_c01024{transform:matrix(0.223175,0.006695,-0.007497,0.249888,0,0);-ms-transform:matrix(0.223175,0.006695,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.223175,0.006695,-0.007497,0.249888,0,0);}
.m1d_c01024{transform:matrix(0.223305,0.006699,-0.007497,0.249888,0,0);-ms-transform:matrix(0.223305,0.006699,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.223305,0.006699,-0.007497,0.249888,0,0);}
.m2e_c01024{transform:matrix(0.223504,0.006705,-0.007497,0.249888,0,0);-ms-transform:matrix(0.223504,0.006705,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.223504,0.006705,-0.007497,0.249888,0,0);}
.m90_c01024{transform:matrix(0.223869,0.006716,-0.007497,0.249888,0,0);-ms-transform:matrix(0.223869,0.006716,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.223869,0.006716,-0.007497,0.249888,0,0);}
.m87_c01024{transform:matrix(0.224739,0.006742,-0.007497,0.249888,0,0);-ms-transform:matrix(0.224739,0.006742,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.224739,0.006742,-0.007497,0.249888,0,0);}
.mb9_c01024{transform:matrix(0.224966,0.008332,-0.009253,0.249829,0,0);-ms-transform:matrix(0.224966,0.008332,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.224966,0.008332,-0.009253,0.249829,0,0);}
.m1f_c01024{transform:matrix(0.225214,0.006756,-0.007497,0.249888,0,0);-ms-transform:matrix(0.225214,0.006756,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.225214,0.006756,-0.007497,0.249888,0,0);}
.m83_c01024{transform:matrix(0.225244,0.006757,-0.007497,0.249888,0,0);-ms-transform:matrix(0.225244,0.006757,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.225244,0.006757,-0.007497,0.249888,0,0);}
.m89_c01024{transform:matrix(0.225888,0.006777,-0.007497,0.249888,0,0);-ms-transform:matrix(0.225888,0.006777,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.225888,0.006777,-0.007497,0.249888,0,0);}
.m8b_c01024{transform:matrix(0.225958,0.006779,-0.007497,0.249888,0,0);-ms-transform:matrix(0.225958,0.006779,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.225958,0.006779,-0.007497,0.249888,0,0);}
.m30_c01024{transform:matrix(0.225963,0.006779,-0.007497,0.249888,0,0);-ms-transform:matrix(0.225963,0.006779,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.225963,0.006779,-0.007497,0.249888,0,0);}
.m4c_c01024{transform:matrix(0.226008,0.006780,-0.007497,0.249888,0,0);-ms-transform:matrix(0.226008,0.006780,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.226008,0.006780,-0.007497,0.249888,0,0);}
.m16_c01024{transform:matrix(0.226099,0.005879,-0.006498,0.249916,0,0);-ms-transform:matrix(0.226099,0.005879,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.226099,0.005879,-0.006498,0.249916,0,0);}
.m3e_c01024{transform:matrix(0.226643,0.006799,-0.007497,0.249888,0,0);-ms-transform:matrix(0.226643,0.006799,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.226643,0.006799,-0.007497,0.249888,0,0);}
.m9b_c01024{transform:matrix(0.227278,0.006818,-0.007497,0.249888,0,0);-ms-transform:matrix(0.227278,0.006818,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.227278,0.006818,-0.007497,0.249888,0,0);}
.m35_c01024{transform:matrix(0.227328,0.006820,-0.007497,0.249888,0,0);-ms-transform:matrix(0.227328,0.006820,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.227328,0.006820,-0.007497,0.249888,0,0);}
.m28_c01024{transform:matrix(0.227987,0.006840,-0.007497,0.249888,0,0);-ms-transform:matrix(0.227987,0.006840,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.227987,0.006840,-0.007497,0.249888,0,0);}
.m39_c01024{transform:matrix(0.228067,0.006842,-0.007497,0.249888,0,0);-ms-transform:matrix(0.228067,0.006842,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.228067,0.006842,-0.007497,0.249888,0,0);}
.m68_c01024{transform:matrix(0.228587,0.006858,-0.007497,0.249888,0,0);-ms-transform:matrix(0.228587,0.006858,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.228587,0.006858,-0.007497,0.249888,0,0);}
.m23_c01024{transform:matrix(0.228632,0.006859,-0.007497,0.249888,0,0);-ms-transform:matrix(0.228632,0.006859,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.228632,0.006859,-0.007497,0.249888,0,0);}
.m33_c01024{transform:matrix(0.228712,0.006861,-0.007497,0.249888,0,0);-ms-transform:matrix(0.228712,0.006861,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.228712,0.006861,-0.007497,0.249888,0,0);}
.m5d_c01024{transform:matrix(0.228907,0.006867,-0.007497,0.249888,0,0);-ms-transform:matrix(0.228907,0.006867,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.228907,0.006867,-0.007497,0.249888,0,0);}
.m2a_c01024{transform:matrix(0.229422,0.006883,-0.007497,0.249888,0,0);-ms-transform:matrix(0.229422,0.006883,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.229422,0.006883,-0.007497,0.249888,0,0);}
.mbe_c01024{transform:matrix(0.229478,0.008499,-0.009253,0.249829,0,0);-ms-transform:matrix(0.229478,0.008499,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.229478,0.008499,-0.009253,0.249829,0,0);}
.m9d_c01024{transform:matrix(0.229632,0.006889,-0.007497,0.249888,0,0);-ms-transform:matrix(0.229632,0.006889,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.229632,0.006889,-0.007497,0.249888,0,0);}
.m9e_c01024{transform:matrix(0.230496,0.006915,-0.007497,0.249888,0,0);-ms-transform:matrix(0.230496,0.006915,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.230496,0.006915,-0.007497,0.249888,0,0);}
.m2c_c01024{transform:matrix(0.231521,0.006946,-0.007497,0.249888,0,0);-ms-transform:matrix(0.231521,0.006946,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.231521,0.006946,-0.007497,0.249888,0,0);}
.mbd_c01024{transform:matrix(0.231766,0.008584,-0.009253,0.249829,0,0);-ms-transform:matrix(0.231766,0.008584,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.231766,0.008584,-0.009253,0.249829,0,0);}
.me_c01024{transform:matrix(0.231972,0.006031,-0.006498,0.249916,0,0);-ms-transform:matrix(0.231972,0.006031,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.231972,0.006031,-0.006498,0.249916,0,0);}
.m18_c01024{transform:matrix(0.232416,0.006043,-0.006498,0.249916,0,0);-ms-transform:matrix(0.232416,0.006043,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.232416,0.006043,-0.006498,0.249916,0,0);}
.m9f_c01024{transform:matrix(0.232445,0.006973,-0.007497,0.249888,0,0);-ms-transform:matrix(0.232445,0.006973,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.232445,0.006973,-0.007497,0.249888,0,0);}
.m8e_c01024{transform:matrix(0.232580,0.006977,-0.007497,0.249888,0,0);-ms-transform:matrix(0.232580,0.006977,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.232580,0.006977,-0.007497,0.249888,0,0);}
.m2_c01024{transform:matrix(0.232960,0.006989,-0.007497,0.249888,0,0);-ms-transform:matrix(0.232960,0.006989,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.232960,0.006989,-0.007497,0.249888,0,0);}
.m11_c01024{transform:matrix(0.233081,0.006060,-0.006498,0.249916,0,0);-ms-transform:matrix(0.233081,0.006060,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.233081,0.006060,-0.006498,0.249916,0,0);}
.m84_c01024{transform:matrix(0.234270,0.007028,-0.007497,0.249888,0,0);-ms-transform:matrix(0.234270,0.007028,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.234270,0.007028,-0.007497,0.249888,0,0);}
.m8c_c01024{transform:matrix(0.235179,0.007055,-0.007497,0.249888,0,0);-ms-transform:matrix(0.235179,0.007055,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.235179,0.007055,-0.007497,0.249888,0,0);}
.md_c01024{transform:matrix(0.236775,0.006156,-0.006498,0.249916,0,0);-ms-transform:matrix(0.236775,0.006156,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.236775,0.006156,-0.006498,0.249916,0,0);}
.m52_c01024{transform:matrix(0.237063,0.007112,-0.007497,0.249888,0,0);-ms-transform:matrix(0.237063,0.007112,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.237063,0.007112,-0.007497,0.249888,0,0);}
.m55_c01024{transform:matrix(0.237193,0.007116,-0.007497,0.249888,0,0);-ms-transform:matrix(0.237193,0.007116,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.237193,0.007116,-0.007497,0.249888,0,0);}
.m7f_c01024{transform:matrix(0.237723,0.007132,-0.007497,0.249888,0,0);-ms-transform:matrix(0.237723,0.007132,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.237723,0.007132,-0.007497,0.249888,0,0);}
.m1c_c01024{transform:matrix(0.238048,0.007141,-0.007497,0.249888,0,0);-ms-transform:matrix(0.238048,0.007141,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.238048,0.007141,-0.007497,0.249888,0,0);}
.m3b_c01024{transform:matrix(0.238903,0.007167,-0.007497,0.249888,0,0);-ms-transform:matrix(0.238903,0.007167,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.238903,0.007167,-0.007497,0.249888,0,0);}
.m99_c01024{transform:matrix(0.239437,0.007183,-0.007497,0.249888,0,0);-ms-transform:matrix(0.239437,0.007183,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.239437,0.007183,-0.007497,0.249888,0,0);}
.m80_c01024{transform:matrix(0.239542,0.007186,-0.007497,0.249888,0,0);-ms-transform:matrix(0.239542,0.007186,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.239542,0.007186,-0.007497,0.249888,0,0);}
.m22_c01024{transform:matrix(0.239727,0.007192,-0.007497,0.249888,0,0);-ms-transform:matrix(0.239727,0.007192,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.239727,0.007192,-0.007497,0.249888,0,0);}
.mbc_c01024{transform:matrix(0.239856,0.008884,-0.009253,0.249829,0,0);-ms-transform:matrix(0.239856,0.008884,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.239856,0.008884,-0.009253,0.249829,0,0);}
.m92_c01024{transform:matrix(0.240922,0.007228,-0.007497,0.249888,0,0);-ms-transform:matrix(0.240922,0.007228,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.240922,0.007228,-0.007497,0.249888,0,0);}
.m96_c01024{transform:matrix(0.243231,0.007297,-0.007497,0.249888,0,0);-ms-transform:matrix(0.243231,0.007297,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.243231,0.007297,-0.007497,0.249888,0,0);}
.m1b_c01024{transform:matrix(0.245535,0.007366,-0.007497,0.249888,0,0);-ms-transform:matrix(0.245535,0.007366,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.245535,0.007366,-0.007497,0.249888,0,0);}
.m7c_c01024{transform:matrix(0.246094,0.007383,-0.007497,0.249888,0,0);-ms-transform:matrix(0.246094,0.007383,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.246094,0.007383,-0.007497,0.249888,0,0);}
.ma0_c01024{transform:matrix(0.246394,0.007392,-0.007497,0.249888,0,0);-ms-transform:matrix(0.246394,0.007392,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.246394,0.007392,-0.007497,0.249888,0,0);}
.m81_c01024{transform:matrix(0.248928,0.007468,-0.007497,0.249888,0,0);-ms-transform:matrix(0.248928,0.007468,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.248928,0.007468,-0.007497,0.249888,0,0);}
.m29_c01024{transform:matrix(0.249413,0.007482,-0.007497,0.249888,0,0);-ms-transform:matrix(0.249413,0.007482,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.249413,0.007482,-0.007497,0.249888,0,0);}
.m41_c01024{transform:matrix(0.250577,0.007517,-0.007497,0.249888,0,0);-ms-transform:matrix(0.250577,0.007517,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.250577,0.007517,-0.007497,0.249888,0,0);}
.m13_c01024{transform:matrix(0.251310,0.006534,-0.006498,0.249916,0,0);-ms-transform:matrix(0.251310,0.006534,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.251310,0.006534,-0.006498,0.249916,0,0);}
.m37_c01024{transform:matrix(0.252476,0.007574,-0.007497,0.249888,0,0);-ms-transform:matrix(0.252476,0.007574,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.252476,0.007574,-0.007497,0.249888,0,0);}
.m7d_c01024{transform:matrix(0.252766,0.007583,-0.007497,0.249888,0,0);-ms-transform:matrix(0.252766,0.007583,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.252766,0.007583,-0.007497,0.249888,0,0);}
.m10_c01024{transform:matrix(0.254864,0.006626,-0.006498,0.249916,0,0);-ms-transform:matrix(0.254864,0.006626,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.254864,0.006626,-0.006498,0.249916,0,0);}
.m97_c01024{transform:matrix(0.255095,0.007653,-0.007497,0.249888,0,0);-ms-transform:matrix(0.255095,0.007653,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.255095,0.007653,-0.007497,0.249888,0,0);}
.m3d_c01024{transform:matrix(0.255195,0.007656,-0.007497,0.249888,0,0);-ms-transform:matrix(0.255195,0.007656,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.255195,0.007656,-0.007497,0.249888,0,0);}
.m94_c01024{transform:matrix(0.255325,0.007660,-0.007497,0.249888,0,0);-ms-transform:matrix(0.255325,0.007660,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.255325,0.007660,-0.007497,0.249888,0,0);}
.mb8_c01024{transform:matrix(0.256149,0.009487,-0.009253,0.249829,0,0);-ms-transform:matrix(0.256149,0.009487,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.256149,0.009487,-0.009253,0.249829,0,0);}
.mba_c01024{transform:matrix(0.257174,0.009525,-0.009253,0.249829,0,0);-ms-transform:matrix(0.257174,0.009525,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.257174,0.009525,-0.009253,0.249829,0,0);}
.m15_c01024{transform:matrix(0.257243,0.006688,-0.006498,0.249916,0,0);-ms-transform:matrix(0.257243,0.006688,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.257243,0.006688,-0.006498,0.249916,0,0);}
.m91_c01024{transform:matrix(0.258614,0.007758,-0.007497,0.249888,0,0);-ms-transform:matrix(0.258614,0.007758,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.258614,0.007758,-0.007497,0.249888,0,0);}
.m7e_c01024{transform:matrix(0.258639,0.007759,-0.007497,0.249888,0,0);-ms-transform:matrix(0.258639,0.007759,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.258639,0.007759,-0.007497,0.249888,0,0);}
.m20_c01024{transform:matrix(0.258854,0.007766,-0.007497,0.249888,0,0);-ms-transform:matrix(0.258854,0.007766,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.258854,0.007766,-0.007497,0.249888,0,0);}
.m25_c01024{transform:matrix(0.258894,0.007767,-0.007497,0.249888,0,0);-ms-transform:matrix(0.258894,0.007767,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.258894,0.007767,-0.007497,0.249888,0,0);}
.m8f_c01024{transform:matrix(0.259383,0.007781,-0.007497,0.249888,0,0);-ms-transform:matrix(0.259383,0.007781,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.259383,0.007781,-0.007497,0.249888,0,0);}
.m60_c01024{transform:matrix(0.259488,0.007785,-0.007497,0.249888,0,0);-ms-transform:matrix(0.259488,0.007785,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.259488,0.007785,-0.007497,0.249888,0,0);}
.m88_c01024{transform:matrix(0.259733,0.007792,-0.007497,0.249888,0,0);-ms-transform:matrix(0.259733,0.007792,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.259733,0.007792,-0.007497,0.249888,0,0);}
.m6a_c01024{transform:matrix(0.259938,0.007798,-0.007497,0.249888,0,0);-ms-transform:matrix(0.259938,0.007798,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.259938,0.007798,-0.007497,0.249888,0,0);}
.m44_c01024{transform:matrix(0.260548,0.007816,-0.007497,0.249888,0,0);-ms-transform:matrix(0.260548,0.007816,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.260548,0.007816,-0.007497,0.249888,0,0);}
.m34_c01024{transform:matrix(0.261727,0.007852,-0.007497,0.249888,0,0);-ms-transform:matrix(0.261727,0.007852,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.261727,0.007852,-0.007497,0.249888,0,0);}
.m32_c01024{transform:matrix(0.262007,0.007860,-0.007497,0.249888,0,0);-ms-transform:matrix(0.262007,0.007860,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.262007,0.007860,-0.007497,0.249888,0,0);}
.m45_c01024{transform:matrix(0.262667,0.007880,-0.007497,0.249888,0,0);-ms-transform:matrix(0.262667,0.007880,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.262667,0.007880,-0.007497,0.249888,0,0);}
.m49_c01024{transform:matrix(0.262992,0.007890,-0.007497,0.249888,0,0);-ms-transform:matrix(0.262992,0.007890,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.262992,0.007890,-0.007497,0.249888,0,0);}
.m38_c01024{transform:matrix(0.263112,0.007893,-0.007497,0.249888,0,0);-ms-transform:matrix(0.263112,0.007893,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.263112,0.007893,-0.007497,0.249888,0,0);}
.m4b_c01024{transform:matrix(0.263616,0.007908,-0.007497,0.249888,0,0);-ms-transform:matrix(0.263616,0.007908,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.263616,0.007908,-0.007497,0.249888,0,0);}
.m2d_c01024{transform:matrix(0.263666,0.007910,-0.007497,0.249888,0,0);-ms-transform:matrix(0.263666,0.007910,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.263666,0.007910,-0.007497,0.249888,0,0);}
.m95_c01024{transform:matrix(0.263866,0.007916,-0.007497,0.249888,0,0);-ms-transform:matrix(0.263866,0.007916,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.263866,0.007916,-0.007497,0.249888,0,0);}
.m3f_c01024{transform:matrix(0.264536,0.007936,-0.007497,0.249888,0,0);-ms-transform:matrix(0.264536,0.007936,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.264536,0.007936,-0.007497,0.249888,0,0);}
.m50_c01024{transform:matrix(0.265301,0.007959,-0.007497,0.249888,0,0);-ms-transform:matrix(0.265301,0.007959,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.265301,0.007959,-0.007497,0.249888,0,0);}
.m2b_c01024{transform:matrix(0.265541,0.007966,-0.007497,0.249888,0,0);-ms-transform:matrix(0.265541,0.007966,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.265541,0.007966,-0.007497,0.249888,0,0);}
.m40_c01024{transform:matrix(0.265765,0.007973,-0.007497,0.249888,0,0);-ms-transform:matrix(0.265765,0.007973,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.265765,0.007973,-0.007497,0.249888,0,0);}
.m17_c01024{transform:matrix(0.266680,0.006934,-0.006498,0.249916,0,0);-ms-transform:matrix(0.266680,0.006934,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.266680,0.006934,-0.006498,0.249916,0,0);}
.m46_c01024{transform:matrix(0.266705,0.008001,-0.007497,0.249888,0,0);-ms-transform:matrix(0.266705,0.008001,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.266705,0.008001,-0.007497,0.249888,0,0);}
.m48_c01024{transform:matrix(0.267085,0.008013,-0.007497,0.249888,0,0);-ms-transform:matrix(0.267085,0.008013,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.267085,0.008013,-0.007497,0.249888,0,0);}
.m36_c01024{transform:matrix(0.268279,0.008048,-0.007497,0.249888,0,0);-ms-transform:matrix(0.268279,0.008048,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.268279,0.008048,-0.007497,0.249888,0,0);}
.m93_c01024{transform:matrix(0.268499,0.008055,-0.007497,0.249888,0,0);-ms-transform:matrix(0.268499,0.008055,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.268499,0.008055,-0.007497,0.249888,0,0);}
.m4a_c01024{transform:matrix(0.269254,0.008078,-0.007497,0.249888,0,0);-ms-transform:matrix(0.269254,0.008078,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.269254,0.008078,-0.007497,0.249888,0,0);}
.m4d_c01024{transform:matrix(0.270253,0.008108,-0.007497,0.249888,0,0);-ms-transform:matrix(0.270253,0.008108,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.270253,0.008108,-0.007497,0.249888,0,0);}
.m26_c01024{transform:matrix(0.270358,0.008111,-0.007497,0.249888,0,0);-ms-transform:matrix(0.270358,0.008111,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.270358,0.008111,-0.007497,0.249888,0,0);}
.m82_c01024{transform:matrix(0.270653,0.008120,-0.007497,0.249888,0,0);-ms-transform:matrix(0.270653,0.008120,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.270653,0.008120,-0.007497,0.249888,0,0);}
.m31_c01024{transform:matrix(0.271483,0.008144,-0.007497,0.249888,0,0);-ms-transform:matrix(0.271483,0.008144,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.271483,0.008144,-0.007497,0.249888,0,0);}
.m51_c01024{transform:matrix(0.272397,0.008172,-0.007497,0.249888,0,0);-ms-transform:matrix(0.272397,0.008172,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.272397,0.008172,-0.007497,0.249888,0,0);}
.m98_c01024{transform:matrix(0.273652,0.008210,-0.007497,0.249888,0,0);-ms-transform:matrix(0.273652,0.008210,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.273652,0.008210,-0.007497,0.249888,0,0);}
.m62_c01024{transform:matrix(0.273697,0.008211,-0.007497,0.249888,0,0);-ms-transform:matrix(0.273697,0.008211,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.273697,0.008211,-0.007497,0.249888,0,0);}
.m4f_c01024{transform:matrix(0.274262,0.008228,-0.007497,0.249888,0,0);-ms-transform:matrix(0.274262,0.008228,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.274262,0.008228,-0.007497,0.249888,0,0);}
.m2f_c01024{transform:matrix(0.274367,0.008231,-0.007497,0.249888,0,0);-ms-transform:matrix(0.274367,0.008231,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.274367,0.008231,-0.007497,0.249888,0,0);}
.m47_c01024{transform:matrix(0.275736,0.008272,-0.007497,0.249888,0,0);-ms-transform:matrix(0.275736,0.008272,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.275736,0.008272,-0.007497,0.249888,0,0);}
.m66_c01024{transform:matrix(0.275916,0.008277,-0.007497,0.249888,0,0);-ms-transform:matrix(0.275916,0.008277,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.275916,0.008277,-0.007497,0.249888,0,0);}
.m3a_c01024{transform:matrix(0.276975,0.008309,-0.007497,0.249888,0,0);-ms-transform:matrix(0.276975,0.008309,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.276975,0.008309,-0.007497,0.249888,0,0);}
.m78_c01024{transform:matrix(0.278460,0.008354,-0.007497,0.249888,0,0);-ms-transform:matrix(0.278460,0.008354,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.278460,0.008354,-0.007497,0.249888,0,0);}
.m7b_c01024{transform:matrix(0.278785,0.008364,-0.007497,0.249888,0,0);-ms-transform:matrix(0.278785,0.008364,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.278785,0.008364,-0.007497,0.249888,0,0);}
.mbb_c01024{transform:matrix(0.279498,0.010352,-0.009253,0.249829,0,0);-ms-transform:matrix(0.279498,0.010352,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.279498,0.010352,-0.009253,0.249829,0,0);}
.m69_c01024{transform:matrix(0.281788,0.008454,-0.007497,0.249888,0,0);-ms-transform:matrix(0.281788,0.008454,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.281788,0.008454,-0.007497,0.249888,0,0);}
.m27_c01024{transform:matrix(0.282013,0.008460,-0.007497,0.249888,0,0);-ms-transform:matrix(0.282013,0.008460,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.282013,0.008460,-0.007497,0.249888,0,0);}
.m63_c01024{transform:matrix(0.290269,0.008708,-0.007497,0.249888,0,0);-ms-transform:matrix(0.290269,0.008708,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.290269,0.008708,-0.007497,0.249888,0,0);}
.m61_c01024{transform:matrix(0.296572,0.008897,-0.007497,0.249888,0,0);-ms-transform:matrix(0.296572,0.008897,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.296572,0.008897,-0.007497,0.249888,0,0);}
.m67_c01024{transform:matrix(0.298431,0.008953,-0.007497,0.249888,0,0);-ms-transform:matrix(0.298431,0.008953,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.298431,0.008953,-0.007497,0.249888,0,0);}
.m65_c01024{transform:matrix(0.302059,0.009062,-0.007497,0.249888,0,0);-ms-transform:matrix(0.302059,0.009062,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.302059,0.009062,-0.007497,0.249888,0,0);}
.m64_c01024{transform:matrix(0.304708,0.009141,-0.007497,0.249888,0,0);-ms-transform:matrix(0.304708,0.009141,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.304708,0.009141,-0.007497,0.249888,0,0);}
.mbf_c01024{transform:matrix(0.323110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323110,0.000000,0.000000,0.250000,0,0);}
.m3c_c01024{transform:matrix(0.340617,0.010219,-0.007497,0.249888,0,0);-ms-transform:matrix(0.340617,0.010219,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.340617,0.010219,-0.007497,0.249888,0,0);}
.m43_c01024{transform:matrix(0.357054,0.010712,-0.007497,0.249888,0,0);-ms-transform:matrix(0.357054,0.010712,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.357054,0.010712,-0.007497,0.249888,0,0);}
.m42_c01024{transform:matrix(0.916528,0.027496,-0.007497,0.249888,0,0);-ms-transform:matrix(0.916528,0.027496,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.916528,0.027496,-0.007497,0.249888,0,0);}
.v0_c01024{vertical-align:0.000000px;}
.ls0_c01024{letter-spacing:0.000000px;}
.sc__c01024{text-shadow:none;}
.sc0_c01024{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__c01024{-webkit-text-stroke:0px transparent;}
.sc0_c01024{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01024{word-spacing:0.000000px;}
.fc0_c01024{color:transparent;}
.fsa_c01024{font-size:36.000000px;}
.fs5_c01024{font-size:66.029693px;}
.fs3_c01024{font-size:72.032393px;}
.fs9_c01024{font-size:77.975426px;}
.fs2_c01024{font-size:78.026360px;}
.fs0_c01024{font-size:78.035092px;}
.fs4_c01024{font-size:84.037791px;}
.fs6_c01024{font-size:90.040491px;}
.fs1_c01024{font-size:96.032443px;}
.fs7_c01024{font-size:96.043190px;}
.fs8_c01024{font-size:125.960304px;}
.y0_c01024{bottom:0.000000px;}
.yc7_c01024{bottom:220.728000px;}
.yc6_c01024{bottom:457.300765px;}
.yc5_c01024{bottom:459.604182px;}
.yc4_c01024{bottom:460.490850px;}
.yc3_c01024{bottom:462.261466px;}
.yc2_c01024{bottom:468.120379px;}
.yc1_c01024{bottom:470.387665px;}
.yc0_c01024{bottom:474.418464px;}
.ybf_c01024{bottom:490.965067px;}
.ybe_c01024{bottom:494.593768px;}
.ybd_c01024{bottom:496.664695px;}
.ybc_c01024{bottom:497.851563px;}
.ybb_c01024{bottom:498.692388px;}
.yba_c01024{bottom:500.301166px;}
.yb9_c01024{bottom:501.952458px;}
.yb8_c01024{bottom:504.759592px;}
.yb7_c01024{bottom:505.967938px;}
.yb6_c01024{bottom:508.027821px;}
.yb5_c01024{bottom:509.236500px;}
.yb4_c01024{bottom:567.990990px;}
.yb3_c01024{bottom:569.029650px;}
.yb2_c01024{bottom:571.376835px;}
.yb1_c01024{bottom:572.090085px;}
.yb0_c01024{bottom:575.141085px;}
.yaf_c01024{bottom:576.824400px;}
.yae_c01024{bottom:578.210580px;}
.yad_c01024{bottom:579.517575px;}
.yac_c01024{bottom:590.930625px;}
.yab_c01024{bottom:592.886055px;}
.yaa_c01024{bottom:594.808875px;}
.ya9_c01024{bottom:595.560090px;}
.ya8_c01024{bottom:600.834525px;}
.ya7_c01024{bottom:603.435615px;}
.ya6_c01024{bottom:606.050805px;}
.ya5_c01024{bottom:609.395715px;}
.ya4_c01024{bottom:610.539885px;}
.ya3_c01024{bottom:612.772845px;}
.ya2_c01024{bottom:613.827495px;}
.ya1_c01024{bottom:627.762015px;}
.ya0_c01024{bottom:628.794330px;}
.y9f_c01024{bottom:631.541880px;}
.y9e_c01024{bottom:633.275295px;}
.y9d_c01024{bottom:634.934850px;}
.y9c_c01024{bottom:637.706670px;}
.y9b_c01024{bottom:638.424195px;}
.y9a_c01024{bottom:641.114805px;}
.y99_c01024{bottom:642.468885px;}
.y98_c01024{bottom:643.851015px;}
.y97_c01024{bottom:646.238400px;}
.y96_c01024{bottom:647.225250px;}
.y95_c01024{bottom:648.940440px;}
.y94_c01024{bottom:664.318845px;}
.y93_c01024{bottom:665.442480px;}
.y92_c01024{bottom:666.875820px;}
.y91_c01024{bottom:669.837390px;}
.y90_c01024{bottom:671.666415px;}
.y8f_c01024{bottom:673.106775px;}
.y8e_c01024{bottom:675.667755px;}
.y8d_c01024{bottom:676.712835px;}
.y8c_c01024{bottom:678.546315px;}
.y8b_c01024{bottom:679.605945px;}
.y8a_c01024{bottom:681.440685px;}
.y89_c01024{bottom:684.326415px;}
.y88_c01024{bottom:699.851565px;}
.y87_c01024{bottom:702.202410px;}
.y86_c01024{bottom:703.847205px;}
.y85_c01024{bottom:705.167145px;}
.y84_c01024{bottom:706.174740px;}
.y83_c01024{bottom:708.167160px;}
.y82_c01024{bottom:709.804305px;}
.y81_c01024{bottom:711.149985px;}
.y80_c01024{bottom:714.756015px;}
.y7f_c01024{bottom:715.717530px;}
.y7e_c01024{bottom:716.738400px;}
.y7d_c01024{bottom:719.982540px;}
.y7c_c01024{bottom:734.485815px;}
.y7b_c01024{bottom:735.535560px;}
.y7a_c01024{bottom:737.701860px;}
.y79_c01024{bottom:740.124870px;}
.y78_c01024{bottom:741.198345px;}
.y77_c01024{bottom:742.638795px;}
.y76_c01024{bottom:744.393585px;}
.y75_c01024{bottom:745.425135px;}
.y74_c01024{bottom:748.270590px;}
.y73_c01024{bottom:749.284485px;}
.y72_c01024{bottom:750.365250px;}
.y71_c01024{bottom:752.450460px;}
.y70_c01024{bottom:753.504165px;}
.y6f_c01024{bottom:755.637060px;}
.y6e_c01024{bottom:770.308710px;}
.y6d_c01024{bottom:772.050225px;}
.y6c_c01024{bottom:772.632930px;}
.y6b_c01024{bottom:774.665430px;}
.y6a_c01024{bottom:775.245795px;}
.y69_c01024{bottom:777.817365px;}
.y68_c01024{bottom:780.970845px;}
.y67_c01024{bottom:782.693415px;}
.y66_c01024{bottom:784.103490px;}
.y65_c01024{bottom:786.638895px;}
.y64_c01024{bottom:787.509885px;}
.y63_c01024{bottom:806.660025px;}
.y62_c01024{bottom:807.753000px;}
.y61_c01024{bottom:809.449080px;}
.y60_c01024{bottom:810.528675px;}
.y5f_c01024{bottom:811.899375px;}
.y5e_c01024{bottom:812.738295px;}
.y5d_c01024{bottom:814.063140px;}
.y5c_c01024{bottom:815.762760px;}
.y5b_c01024{bottom:817.402515px;}
.y5a_c01024{bottom:818.233215px;}
.y59_c01024{bottom:820.955805px;}
.y58_c01024{bottom:821.797560px;}
.y57_c01024{bottom:822.619290px;}
.y56_c01024{bottom:843.620565px;}
.y55_c01024{bottom:844.504935px;}
.y54_c01024{bottom:846.822570px;}
.y53_c01024{bottom:849.113325px;}
.y52_c01024{bottom:850.588725px;}
.y51_c01024{bottom:851.112930px;}
.y50_c01024{bottom:852.835260px;}
.y4f_c01024{bottom:853.663875px;}
.y4e_c01024{bottom:855.117570px;}
.y4d_c01024{bottom:857.385600px;}
.y4c_c01024{bottom:859.357935px;}
.y4b_c01024{bottom:879.063135px;}
.y4a_c01024{bottom:879.898695px;}
.y49_c01024{bottom:881.561490px;}
.y48_c01024{bottom:882.947070px;}
.y47_c01024{bottom:883.763940px;}
.y46_c01024{bottom:885.663465px;}
.y45_c01024{bottom:886.237050px;}
.y44_c01024{bottom:887.356890px;}
.y43_c01024{bottom:888.462720px;}
.y42_c01024{bottom:890.111730px;}
.y41_c01024{bottom:892.549005px;}
.y40_c01024{bottom:893.378490px;}
.y3f_c01024{bottom:894.740565px;}
.y3e_c01024{bottom:913.915785px;}
.y3d_c01024{bottom:915.193560px;}
.y3c_c01024{bottom:917.903100px;}
.y3b_c01024{bottom:918.883740px;}
.y3a_c01024{bottom:920.878095px;}
.y39_c01024{bottom:921.850140px;}
.y38_c01024{bottom:922.552590px;}
.y37_c01024{bottom:924.508200px;}
.y36_c01024{bottom:925.480470px;}
.y35_c01024{bottom:927.150015px;}
.y34_c01024{bottom:928.130160px;}
.y33_c01024{bottom:929.798760px;}
.y32_c01024{bottom:932.398185px;}
.y31_c01024{bottom:933.369015px;}
.y30_c01024{bottom:950.025570px;}
.y2f_c01024{bottom:950.870055px;}
.y2e_c01024{bottom:952.404240px;}
.y2d_c01024{bottom:953.301405px;}
.y2c_c01024{bottom:955.386825px;}
.y2b_c01024{bottom:956.277825px;}
.y2a_c01024{bottom:957.182895px;}
.y29_c01024{bottom:958.069530px;}
.y28_c01024{bottom:961.359645px;}
.y27_c01024{bottom:963.962520px;}
.y26_c01024{bottom:966.323025px;}
.y25_c01024{bottom:984.675810px;}
.y24_c01024{bottom:986.363985px;}
.y23_c01024{bottom:988.324500px;}
.y22_c01024{bottom:989.679495px;}
.y21_c01024{bottom:993.007605px;}
.y20_c01024{bottom:993.991395px;}
.y1f_c01024{bottom:994.976715px;}
.y1e_c01024{bottom:996.306240px;}
.y1d_c01024{bottom:998.268735px;}
.y1c_c01024{bottom:1000.902000px;}
.y1b_c01024{bottom:1034.925405px;}
.y1a_c01024{bottom:1034.925927px;}
.y19_c01024{bottom:1055.754483px;}
.y18_c01024{bottom:1058.730873px;}
.y17_c01024{bottom:1059.940959px;}
.y16_c01024{bottom:1062.032958px;}
.y15_c01024{bottom:1062.924738px;}
.y14_c01024{bottom:1065.039708px;}
.y13_c01024{bottom:1065.620592px;}
.y12_c01024{bottom:1066.225713px;}
.y11_c01024{bottom:1068.867495px;}
.y10_c01024{bottom:1069.756818px;}
.yf_c01024{bottom:1071.498669px;}
.ye_c01024{bottom:1072.707429px;}
.yd_c01024{bottom:1090.418604px;}
.yc_c01024{bottom:1091.288421px;}
.yb_c01024{bottom:1092.143106px;}
.ya_c01024{bottom:1094.449449px;}
.y9_c01024{bottom:1095.327027px;}
.y8_c01024{bottom:1097.363061px;}
.y7_c01024{bottom:1100.468865px;}
.y6_c01024{bottom:1103.635275px;}
.y5_c01024{bottom:1106.473500px;}
.y4_c01024{bottom:1179.686985px;}
.y3_c01024{bottom:1180.988250px;}
.y2_c01024{bottom:1181.661540px;}
.y1_c01024{bottom:1187.187000px;}
.hc_c01024{height:36.000000px;}
.h7_c01024{height:66.029693px;}
.h5_c01024{height:72.032393px;}
.hb_c01024{height:77.975426px;}
.h4_c01024{height:78.026360px;}
.h2_c01024{height:78.035092px;}
.h6_c01024{height:84.037791px;}
.h8_c01024{height:90.040491px;}
.h3_c01024{height:96.032443px;}
.h9_c01024{height:96.043190px;}
.ha_c01024{height:125.960304px;}
.h0_c01024{height:1246.320000px;}
.h1_c01024{height:1246.500000px;}
.w0_c01024{width:896.100000px;}
.w1_c01024{width:896.250000px;}
.x0_c01024{left:0.000000px;}
.x90_c01024{left:129.141000px;}
.x71_c01024{left:132.447630px;}
.x58_c01024{left:133.564530px;}
.x66_c01024{left:134.830995px;}
.x47_c01024{left:136.033410px;}
.x3f_c01024{left:137.314230px;}
.x2a_c01024{left:138.447585px;}
.x23_c01024{left:139.769505px;}
.x5_c01024{left:141.799500px;}
.x91_c01024{left:161.775333px;}
.x86_c01024{left:163.700055px;}
.x48_c01024{left:168.879315px;}
.x2b_c01024{left:170.808585px;}
.x8e_c01024{left:174.399240px;}
.xe_c01024{left:185.663901px;}
.x7c_c01024{left:187.240365px;}
.x36_c01024{left:192.114705px;}
.x59_c01024{left:200.207025px;}
.x49_c01024{left:202.542855px;}
.x40_c01024{left:213.167820px;}
.x92_c01024{left:217.392161px;}
.x72_c01024{left:219.880755px;}
.x1_c01024{left:225.301500px;}
.x24_c01024{left:227.210880px;}
.x87_c01024{left:229.374180px;}
.x5a_c01024{left:233.128545px;}
.x18_c01024{left:241.415301px;}
.x67_c01024{left:242.968995px;}
.x19_c01024{left:248.821500px;}
.x6_c01024{left:250.962000px;}
.x2c_c01024{left:257.456085px;}
.x88_c01024{left:263.009130px;}
.x4f_c01024{left:266.155980px;}
.x8f_c01024{left:273.412770px;}
.x73_c01024{left:275.483760px;}
.x68_c01024{left:276.997995px;}
.x99_c01024{left:281.825773px;}
.xf_c01024{left:283.110366px;}
.x7d_c01024{left:296.111625px;}
.x5b_c01024{left:298.281630px;}
.x41_c01024{left:300.379260px;}
.x74_c01024{left:307.601880px;}
.x69_c01024{left:309.048495px;}
.x4a_c01024{left:311.462190px;}
.x2d_c01024{left:313.076085px;}
.x50_c01024{left:320.364960px;}
.x25_c01024{left:323.632065px;}
.x93_c01024{left:325.810134px;}
.x5c_c01024{left:332.055105px;}
.x1a_c01024{left:336.597000px;}
.x7e_c01024{left:340.681275px;}
.x4b_c01024{left:344.707185px;}
.x2e_c01024{left:345.747585px;}
.x42_c01024{left:356.292465px;}
.x89_c01024{left:361.394340px;}
.x5d_c01024{left:363.749715px;}
.x94_c01024{left:370.395005px;}
.x7_c01024{left:372.747000px;}
.x10_c01024{left:380.964831px;}
.x7f_c01024{left:384.365970px;}
.x51_c01024{left:386.591880px;}
.x37_c01024{left:388.803225px;}
.x75_c01024{left:394.846050px;}
.x1b_c01024{left:402.013500px;}
.x11_c01024{left:403.372746px;}
.x2_c01024{left:409.483500px;}
.x95_c01024{left:413.832024px;}
.x12_c01024{left:424.906200px;}
.x6a_c01024{left:429.249495px;}
.x3_c01024{left:431.926500px;}
.x2f_c01024{left:433.808085px;}
.x96_c01024{left:436.534299px;}
.x8a_c01024{left:438.308115px;}
.x1c_c01024{left:446.331000px;}
.x5e_c01024{left:452.692905px;}
.x43_c01024{left:454.435755px;}
.x97_c01024{left:468.579722px;}
.x80_c01024{left:471.150360px;}
.x76_c01024{left:472.455075px;}
.x6b_c01024{left:474.105495px;}
.x4_c01024{left:475.302000px;}
.x38_c01024{left:477.805545px;}
.x1d_c01024{left:479.175000px;}
.x5f_c01024{left:484.925970px;}
.x9a_c01024{left:489.317796px;}
.x8_c01024{left:492.201000px;}
.x81_c01024{left:494.317185px;}
.x30_c01024{left:498.995085px;}
.x39_c01024{left:500.778510px;}
.x13_c01024{left:503.249172px;}
.x52_c01024{left:507.872415px;}
.x1e_c01024{left:511.968000px;}
.x8b_c01024{left:514.801935px;}
.x77_c01024{left:516.113160px;}
.x31_c01024{left:522.410085px;}
.x98_c01024{left:524.494751px;}
.x6c_c01024{left:528.676995px;}
.x44_c01024{left:531.348480px;}
.x14_c01024{left:536.278314px;}
.x60_c01024{left:539.765685px;}
.x26_c01024{left:544.896000px;}
.x32_c01024{left:554.811585px;}
.x4c_c01024{left:564.928260px;}
.x9_c01024{left:570.510000px;}
.x78_c01024{left:571.525665px;}
.x3a_c01024{left:576.757395px;}
.x82_c01024{left:583.708485px;}
.x61_c01024{left:584.777985px;}
.x6d_c01024{left:595.090995px;}
.xa_c01024{left:604.263000px;}
.x53_c01024{left:606.803295px;}
.x3b_c01024{left:609.441300px;}
.x15_c01024{left:613.737786px;}
.x62_c01024{left:618.308460px;}
.x45_c01024{left:619.467555px;}
.x33_c01024{left:621.290085px;}
.x1f_c01024{left:622.905000px;}
.x54_c01024{left:629.151495px;}
.x83_c01024{left:637.225365px;}
.x34_c01024{left:653.978085px;}
.x27_c01024{left:655.325400px;}
.x16_c01024{left:658.547616px;}
.x79_c01024{left:661.286610px;}
.x4d_c01024{left:662.969475px;}
.x3c_c01024{left:664.835580px;}
.x20_c01024{left:668.071500px;}
.x8c_c01024{left:669.947850px;}
.x6e_c01024{left:672.675495px;}
.xb_c01024{left:692.968500px;}
.x63_c01024{left:694.020915px;}
.x7a_c01024{left:704.710695px;}
.x55_c01024{left:707.310855px;}
.x46_c01024{left:708.582720px;}
.x28_c01024{left:712.170030px;}
.xc_c01024{left:725.841000px;}
.x6f_c01024{left:727.501995px;}
.x56_c01024{left:729.737055px;}
.x3d_c01024{left:731.372070px;}
.x21_c01024{left:733.422000px;}
.x7b_c01024{left:738.762135px;}
.x29_c01024{left:743.422320px;}
.x8d_c01024{left:748.572900px;}
.xd_c01024{left:759.295500px;}
.x64_c01024{left:761.726865px;}
.x3e_c01024{left:764.779065px;}
.x17_c01024{left:768.809769px;}
.x4e_c01024{left:774.554715px;}
.x84_c01024{left:781.786545px;}
.x35_c01024{left:786.888585px;}
.x22_c01024{left:789.694500px;}
.x65_c01024{left:794.516385px;}
.x57_c01024{left:796.745610px;}
.x70_c01024{left:805.863495px;}
.x85_c01024{left:815.096055px;}
.x9b_c01024{left:878.580000px;}
@media print{
.v0_c01024{vertical-align:0.000000pt;}
.ls0_c01024{letter-spacing:0.000000pt;}
.ws0_c01024{word-spacing:0.000000pt;}
.fsa_c01024{font-size:32.000000pt;}
.fs5_c01024{font-size:58.693061pt;}
.fs3_c01024{font-size:64.028794pt;}
.fs9_c01024{font-size:69.311490pt;}
.fs2_c01024{font-size:69.356764pt;}
.fs0_c01024{font-size:69.364526pt;}
.fs4_c01024{font-size:74.700259pt;}
.fs6_c01024{font-size:80.035992pt;}
.fs1_c01024{font-size:85.362171pt;}
.fs7_c01024{font-size:85.371725pt;}
.fs8_c01024{font-size:111.964714pt;}
.y0_c01024{bottom:0.000000pt;}
.yc7_c01024{bottom:196.202667pt;}
.yc6_c01024{bottom:406.489569pt;}
.yc5_c01024{bottom:408.537051pt;}
.yc4_c01024{bottom:409.325200pt;}
.yc3_c01024{bottom:410.899081pt;}
.yc2_c01024{bottom:416.107004pt;}
.yc1_c01024{bottom:418.122369pt;}
.yc0_c01024{bottom:421.705301pt;}
.ybf_c01024{bottom:436.413393pt;}
.ybe_c01024{bottom:439.638905pt;}
.ybd_c01024{bottom:441.479729pt;}
.ybc_c01024{bottom:442.534723pt;}
.ybb_c01024{bottom:443.282123pt;}
.yba_c01024{bottom:444.712148pt;}
.yb9_c01024{bottom:446.179963pt;}
.yb8_c01024{bottom:448.675193pt;}
.yb7_c01024{bottom:449.749279pt;}
.yb6_c01024{bottom:451.580285pt;}
.yb5_c01024{bottom:452.654667pt;}
.yb4_c01024{bottom:504.880880pt;}
.yb3_c01024{bottom:505.804133pt;}
.yb2_c01024{bottom:507.890520pt;}
.yb1_c01024{bottom:508.524520pt;}
.yb0_c01024{bottom:511.236520pt;}
.yaf_c01024{bottom:512.732800pt;}
.yae_c01024{bottom:513.964960pt;}
.yad_c01024{bottom:515.126733pt;}
.yac_c01024{bottom:525.271667pt;}
.yab_c01024{bottom:527.009827pt;}
.yaa_c01024{bottom:528.719000pt;}
.ya9_c01024{bottom:529.386747pt;}
.ya8_c01024{bottom:534.075133pt;}
.ya7_c01024{bottom:536.387213pt;}
.ya6_c01024{bottom:538.711827pt;}
.ya5_c01024{bottom:541.685080pt;}
.ya4_c01024{bottom:542.702120pt;}
.ya3_c01024{bottom:544.686973pt;}
.ya2_c01024{bottom:545.624440pt;}
.ya1_c01024{bottom:558.010680pt;}
.ya0_c01024{bottom:558.928293pt;}
.y9f_c01024{bottom:561.370560pt;}
.y9e_c01024{bottom:562.911373pt;}
.y9d_c01024{bottom:564.386533pt;}
.y9c_c01024{bottom:566.850373pt;}
.y9b_c01024{bottom:567.488173pt;}
.y9a_c01024{bottom:569.879827pt;}
.y99_c01024{bottom:571.083453pt;}
.y98_c01024{bottom:572.312013pt;}
.y97_c01024{bottom:574.434133pt;}
.y96_c01024{bottom:575.311333pt;}
.y95_c01024{bottom:576.835947pt;}
.y94_c01024{bottom:590.505640pt;}
.y93_c01024{bottom:591.504427pt;}
.y92_c01024{bottom:592.778507pt;}
.y91_c01024{bottom:595.411013pt;}
.y90_c01024{bottom:597.036813pt;}
.y8f_c01024{bottom:598.317133pt;}
.y8e_c01024{bottom:600.593560pt;}
.y8d_c01024{bottom:601.522520pt;}
.y8c_c01024{bottom:603.152280pt;}
.y8b_c01024{bottom:604.094173pt;}
.y8a_c01024{bottom:605.725053pt;}
.y89_c01024{bottom:608.290147pt;}
.y88_c01024{bottom:622.090280pt;}
.y87_c01024{bottom:624.179920pt;}
.y86_c01024{bottom:625.641960pt;}
.y85_c01024{bottom:626.815240pt;}
.y84_c01024{bottom:627.710880pt;}
.y83_c01024{bottom:629.481920pt;}
.y82_c01024{bottom:630.937160pt;}
.y81_c01024{bottom:632.133320pt;}
.y80_c01024{bottom:635.338680pt;}
.y7f_c01024{bottom:636.193360pt;}
.y7e_c01024{bottom:637.100800pt;}
.y7d_c01024{bottom:639.984480pt;}
.y7c_c01024{bottom:652.876280pt;}
.y7b_c01024{bottom:653.809387pt;}
.y7a_c01024{bottom:655.734987pt;}
.y79_c01024{bottom:657.888773pt;}
.y78_c01024{bottom:658.842973pt;}
.y77_c01024{bottom:660.123373pt;}
.y76_c01024{bottom:661.683187pt;}
.y75_c01024{bottom:662.600120pt;}
.y74_c01024{bottom:665.129413pt;}
.y73_c01024{bottom:666.030653pt;}
.y72_c01024{bottom:666.991333pt;}
.y71_c01024{bottom:668.844853pt;}
.y70_c01024{bottom:669.781480pt;}
.y6f_c01024{bottom:671.677387pt;}
.y6e_c01024{bottom:684.718853pt;}
.y6d_c01024{bottom:686.266867pt;}
.y6c_c01024{bottom:686.784827pt;}
.y6b_c01024{bottom:688.591493pt;}
.y6a_c01024{bottom:689.107373pt;}
.y69_c01024{bottom:691.393213pt;}
.y68_c01024{bottom:694.196307pt;}
.y67_c01024{bottom:695.727480pt;}
.y66_c01024{bottom:696.980880pt;}
.y65_c01024{bottom:699.234573pt;}
.y64_c01024{bottom:700.008787pt;}
.y63_c01024{bottom:717.031133pt;}
.y62_c01024{bottom:718.002667pt;}
.y61_c01024{bottom:719.510293pt;}
.y60_c01024{bottom:720.469933pt;}
.y5f_c01024{bottom:721.688333pt;}
.y5e_c01024{bottom:722.434040pt;}
.y5d_c01024{bottom:723.611680pt;}
.y5c_c01024{bottom:725.122453pt;}
.y5b_c01024{bottom:726.580013pt;}
.y5a_c01024{bottom:727.318413pt;}
.y59_c01024{bottom:729.738493pt;}
.y58_c01024{bottom:730.486720pt;}
.y57_c01024{bottom:731.217147pt;}
.y56_c01024{bottom:749.884947pt;}
.y55_c01024{bottom:750.671053pt;}
.y54_c01024{bottom:752.731173pt;}
.y53_c01024{bottom:754.767400pt;}
.y52_c01024{bottom:756.078867pt;}
.y51_c01024{bottom:756.544827pt;}
.y50_c01024{bottom:758.075787pt;}
.y4f_c01024{bottom:758.812333pt;}
.y4e_c01024{bottom:760.104507pt;}
.y4d_c01024{bottom:762.120533pt;}
.y4c_c01024{bottom:763.873720pt;}
.y4b_c01024{bottom:781.389453pt;}
.y4a_c01024{bottom:782.132173pt;}
.y49_c01024{bottom:783.610213pt;}
.y48_c01024{bottom:784.841840pt;}
.y47_c01024{bottom:785.567947pt;}
.y46_c01024{bottom:787.256413pt;}
.y45_c01024{bottom:787.766267pt;}
.y44_c01024{bottom:788.761680pt;}
.y43_c01024{bottom:789.744640pt;}
.y42_c01024{bottom:791.210427pt;}
.y41_c01024{bottom:793.376893pt;}
.y40_c01024{bottom:794.114213pt;}
.y3f_c01024{bottom:795.324947pt;}
.y3e_c01024{bottom:812.369587pt;}
.y3d_c01024{bottom:813.505387pt;}
.y3c_c01024{bottom:815.913867pt;}
.y3b_c01024{bottom:816.785547pt;}
.y3a_c01024{bottom:818.558307pt;}
.y39_c01024{bottom:819.422347pt;}
.y38_c01024{bottom:820.046747pt;}
.y37_c01024{bottom:821.785067pt;}
.y36_c01024{bottom:822.649307pt;}
.y35_c01024{bottom:824.133347pt;}
.y34_c01024{bottom:825.004587pt;}
.y33_c01024{bottom:826.487787pt;}
.y32_c01024{bottom:828.798387pt;}
.y31_c01024{bottom:829.661347pt;}
.y30_c01024{bottom:844.467173pt;}
.y2f_c01024{bottom:845.217827pt;}
.y2e_c01024{bottom:846.581547pt;}
.y2d_c01024{bottom:847.379027pt;}
.y2c_c01024{bottom:849.232733pt;}
.y2b_c01024{bottom:850.024733pt;}
.y2a_c01024{bottom:850.829240pt;}
.y29_c01024{bottom:851.617360pt;}
.y28_c01024{bottom:854.541907pt;}
.y27_c01024{bottom:856.855573pt;}
.y26_c01024{bottom:858.953800pt;}
.y25_c01024{bottom:875.267387pt;}
.y24_c01024{bottom:876.767987pt;}
.y23_c01024{bottom:878.510667pt;}
.y22_c01024{bottom:879.715107pt;}
.y21_c01024{bottom:882.673427pt;}
.y20_c01024{bottom:883.547907pt;}
.y1f_c01024{bottom:884.423747pt;}
.y1e_c01024{bottom:885.605547pt;}
.y1d_c01024{bottom:887.349987pt;}
.y1c_c01024{bottom:889.690667pt;}
.y1b_c01024{bottom:919.933693pt;}
.y1a_c01024{bottom:919.934157pt;}
.y19_c01024{bottom:938.448429pt;}
.y18_c01024{bottom:941.094109pt;}
.y17_c01024{bottom:942.169741pt;}
.y16_c01024{bottom:944.029296pt;}
.y15_c01024{bottom:944.821989pt;}
.y14_c01024{bottom:946.701963pt;}
.y13_c01024{bottom:947.218304pt;}
.y12_c01024{bottom:947.756189pt;}
.y11_c01024{bottom:950.104440pt;}
.y10_c01024{bottom:950.894949pt;}
.yf_c01024{bottom:952.443261pt;}
.ye_c01024{bottom:953.517715pt;}
.yd_c01024{bottom:969.260981pt;}
.yc_c01024{bottom:970.034152pt;}
.yb_c01024{bottom:970.793872pt;}
.ya_c01024{bottom:972.843955pt;}
.y9_c01024{bottom:973.624024pt;}
.y8_c01024{bottom:975.433832pt;}
.y7_c01024{bottom:978.194547pt;}
.y6_c01024{bottom:981.009133pt;}
.y5_c01024{bottom:983.532000pt;}
.y4_c01024{bottom:1048.610653pt;}
.y3_c01024{bottom:1049.767333pt;}
.y2_c01024{bottom:1050.365813pt;}
.y1_c01024{bottom:1055.277333pt;}
.hc_c01024{height:32.000000pt;}
.h7_c01024{height:58.693061pt;}
.h5_c01024{height:64.028794pt;}
.hb_c01024{height:69.311490pt;}
.h4_c01024{height:69.356764pt;}
.h2_c01024{height:69.364526pt;}
.h6_c01024{height:74.700259pt;}
.h8_c01024{height:80.035992pt;}
.h3_c01024{height:85.362171pt;}
.h9_c01024{height:85.371725pt;}
.ha_c01024{height:111.964714pt;}
.h0_c01024{height:1107.840000pt;}
.h1_c01024{height:1108.000000pt;}
.w0_c01024{width:796.533333pt;}
.w1_c01024{width:796.666667pt;}
.x0_c01024{left:0.000000pt;}
.x90_c01024{left:114.792000pt;}
.x71_c01024{left:117.731227pt;}
.x58_c01024{left:118.724027pt;}
.x66_c01024{left:119.849773pt;}
.x47_c01024{left:120.918587pt;}
.x3f_c01024{left:122.057093pt;}
.x2a_c01024{left:123.064520pt;}
.x23_c01024{left:124.239560pt;}
.x5_c01024{left:126.044000pt;}
.x91_c01024{left:143.800296pt;}
.x86_c01024{left:145.511160pt;}
.x48_c01024{left:150.114947pt;}
.x2b_c01024{left:151.829853pt;}
.x8e_c01024{left:155.021547pt;}
.xe_c01024{left:165.034579pt;}
.x7c_c01024{left:166.435880pt;}
.x36_c01024{left:170.768627pt;}
.x59_c01024{left:177.961800pt;}
.x49_c01024{left:180.038093pt;}
.x40_c01024{left:189.482507pt;}
.x92_c01024{left:193.237476pt;}
.x72_c01024{left:195.449560pt;}
.x1_c01024{left:200.268000pt;}
.x24_c01024{left:201.965227pt;}
.x87_c01024{left:203.888160pt;}
.x5a_c01024{left:207.225373pt;}
.x18_c01024{left:214.591379pt;}
.x67_c01024{left:215.972440pt;}
.x19_c01024{left:221.174667pt;}
.x6_c01024{left:223.077333pt;}
.x2c_c01024{left:228.849853pt;}
.x88_c01024{left:233.785893pt;}
.x4f_c01024{left:236.583093pt;}
.x8f_c01024{left:243.033573pt;}
.x73_c01024{left:244.874453pt;}
.x68_c01024{left:246.220440pt;}
.x99_c01024{left:250.511799pt;}
.xf_c01024{left:251.653659pt;}
.x7d_c01024{left:263.210333pt;}
.x5b_c01024{left:265.139227pt;}
.x41_c01024{left:267.003787pt;}
.x74_c01024{left:273.423893pt;}
.x69_c01024{left:274.709773pt;}
.x4a_c01024{left:276.855280pt;}
.x2d_c01024{left:278.289853pt;}
.x50_c01024{left:284.768853pt;}
.x25_c01024{left:287.672947pt;}
.x93_c01024{left:289.609008pt;}
.x5c_c01024{left:295.160093pt;}
.x1a_c01024{left:299.197333pt;}
.x7e_c01024{left:302.827800pt;}
.x4b_c01024{left:306.406387pt;}
.x2e_c01024{left:307.331187pt;}
.x42_c01024{left:316.704413pt;}
.x89_c01024{left:321.239413pt;}
.x5d_c01024{left:323.333080pt;}
.x94_c01024{left:329.240004pt;}
.x7_c01024{left:331.330667pt;}
.x10_c01024{left:338.635405pt;}
.x7f_c01024{left:341.658640pt;}
.x51_c01024{left:343.637227pt;}
.x37_c01024{left:345.602867pt;}
.x75_c01024{left:350.974267pt;}
.x1b_c01024{left:357.345333pt;}
.x11_c01024{left:358.553552pt;}
.x2_c01024{left:363.985333pt;}
.x95_c01024{left:367.850688pt;}
.x12_c01024{left:377.694400pt;}
.x6a_c01024{left:381.555107pt;}
.x3_c01024{left:383.934667pt;}
.x2f_c01024{left:385.607187pt;}
.x96_c01024{left:388.030488pt;}
.x8a_c01024{left:389.607213pt;}
.x1c_c01024{left:396.738667pt;}
.x5e_c01024{left:402.393693pt;}
.x43_c01024{left:403.942893pt;}
.x97_c01024{left:416.515308pt;}
.x80_c01024{left:418.800320pt;}
.x76_c01024{left:419.960067pt;}
.x6b_c01024{left:421.427107pt;}
.x4_c01024{left:422.490667pt;}
.x38_c01024{left:424.716040pt;}
.x1d_c01024{left:425.933333pt;}
.x5f_c01024{left:431.045307pt;}
.x9a_c01024{left:434.949152pt;}
.x8_c01024{left:437.512000pt;}
.x81_c01024{left:439.393053pt;}
.x30_c01024{left:443.551187pt;}
.x39_c01024{left:445.136453pt;}
.x13_c01024{left:447.332597pt;}
.x52_c01024{left:451.442147pt;}
.x1e_c01024{left:455.082667pt;}
.x8b_c01024{left:457.601720pt;}
.x77_c01024{left:458.767253pt;}
.x31_c01024{left:464.364520pt;}
.x98_c01024{left:466.217556pt;}
.x6c_c01024{left:469.935107pt;}
.x44_c01024{left:472.309760pt;}
.x14_c01024{left:476.691835pt;}
.x60_c01024{left:479.791720pt;}
.x26_c01024{left:484.352000pt;}
.x32_c01024{left:493.165853pt;}
.x4c_c01024{left:502.158453pt;}
.x9_c01024{left:507.120000pt;}
.x78_c01024{left:508.022813pt;}
.x3a_c01024{left:512.673240pt;}
.x82_c01024{left:518.851987pt;}
.x61_c01024{left:519.802653pt;}
.x6d_c01024{left:528.969773pt;}
.xa_c01024{left:537.122667pt;}
.x53_c01024{left:539.380707pt;}
.x3b_c01024{left:541.725600pt;}
.x15_c01024{left:545.544699pt;}
.x62_c01024{left:549.607520pt;}
.x45_c01024{left:550.637827pt;}
.x33_c01024{left:552.257853pt;}
.x1f_c01024{left:553.693333pt;}
.x54_c01024{left:559.245773pt;}
.x83_c01024{left:566.422547pt;}
.x34_c01024{left:581.313853pt;}
.x27_c01024{left:582.511467pt;}
.x16_c01024{left:585.375659pt;}
.x79_c01024{left:587.810320pt;}
.x4d_c01024{left:589.306200pt;}
.x3c_c01024{left:590.964960pt;}
.x20_c01024{left:593.841333pt;}
.x8c_c01024{left:595.509200pt;}
.x6e_c01024{left:597.933773pt;}
.xb_c01024{left:615.972000pt;}
.x63_c01024{left:616.907480pt;}
.x7a_c01024{left:626.409507pt;}
.x55_c01024{left:628.720760pt;}
.x46_c01024{left:629.851307pt;}
.x28_c01024{left:633.040027pt;}
.xc_c01024{left:645.192000pt;}
.x6f_c01024{left:646.668440pt;}
.x56_c01024{left:648.655160pt;}
.x3d_c01024{left:650.108507pt;}
.x21_c01024{left:651.930667pt;}
.x7b_c01024{left:656.677453pt;}
.x29_c01024{left:660.819840pt;}
.x8d_c01024{left:665.398133pt;}
.xd_c01024{left:674.929333pt;}
.x64_c01024{left:677.090547pt;}
.x3e_c01024{left:679.803613pt;}
.x17_c01024{left:683.386461pt;}
.x4e_c01024{left:688.493080pt;}
.x84_c01024{left:694.921373pt;}
.x35_c01024{left:699.456520pt;}
.x22_c01024{left:701.950667pt;}
.x65_c01024{left:706.236787pt;}
.x57_c01024{left:708.218320pt;}
.x70_c01024{left:716.323107pt;}
.x85_c01024{left:724.529827pt;}
.x9b_c01024{left:780.960000pt;}
}





/* 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_c01025 {
    display:none;
  }
  .loading-indicator_c01025.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01025 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_c01025 { 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_c01025" -> "#page-container .classname_c01025")
 */
.pf_c01025 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01025 { /* 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_c01025.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01025 { /* 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_c01025 { /* 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_c01025 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01025 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01025 {overflow:visible;}
  }
}
.c_c01025 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01025 { /* 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_c01025:after { /* webkit #35443 */
  content: '';
}
.t_c01025:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01025 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 */
}
.__c01025 { /* 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_c01025 { /* info for Javascript */
  display:none;
}
.l_c01025 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01025 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01025 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01025: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_c01025 {
    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_c01025.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01025.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_c01025 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01025{font-family:sans-serif;visibility:hidden;}
.sc__c01025{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01025{-webkit-text-stroke:0px transparent;}
}
.y0_c01025{bottom:0.000000px;}
.h0_c01025{height:1246.320000px;}
.h1_c01025{height:1246.500000px;}
.w0_c01025{width:896.100000px;}
.w1_c01025{width:896.250000px;}
.x0_c01025{left:0.000000px;}
@media print{
.y0_c01025{bottom:0.000000pt;}
.h0_c01025{height:1107.840000pt;}
.h1_c01025{height:1108.000000pt;}
.w0_c01025{width:796.533333pt;}
.w1_c01025{width:796.666667pt;}
.x0_c01025{left:0.000000pt;}
}





/* 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_c01026 {
    display:none;
  }
  .loading-indicator_c01026.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01026 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_c01026 { 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_c01026" -> "#page-container .classname_c01026")
 */
.pf_c01026 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01026 { /* 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_c01026.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01026 { /* 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_c01026 { /* 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_c01026 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01026 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01026 {overflow:visible;}
  }
}
.c_c01026 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01026 { /* 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_c01026:after { /* webkit #35443 */
  content: '';
}
.t_c01026:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01026 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 */
}
.__c01026 { /* 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_c01026 { /* info for Javascript */
  display:none;
}
.l_c01026 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01026 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01026 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01026: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_c01026 {
    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_c01026.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01026.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_c01026 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01026{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01026;src:url('chunks/assets/font_b11a17f404e7258299fdf971.woff2')format("woff");}.ff1_c01026{font-family:ff1_c01026;line-height:1.000000;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;}
.mfc_c01026{transform:matrix(0.057365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.057365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.057365,0.000000,0.000000,0.250000,0,0);}
.m3_c01026{transform:matrix(0.108131,0.002703,-0.006248,0.249922,0,0);-ms-transform:matrix(0.108131,0.002703,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.108131,0.002703,-0.006248,0.249922,0,0);}
.md3_c01026{transform:matrix(0.143501,0.006320,-0.011000,0.249758,0,0);-ms-transform:matrix(0.143501,0.006320,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.143501,0.006320,-0.011000,0.249758,0,0);}
.md8_c01026{transform:matrix(0.147677,0.006504,-0.011000,0.249758,0,0);-ms-transform:matrix(0.147677,0.006504,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.147677,0.006504,-0.011000,0.249758,0,0);}
.md1_c01026{transform:matrix(0.150509,0.006629,-0.011000,0.249758,0,0);-ms-transform:matrix(0.150509,0.006629,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.150509,0.006629,-0.011000,0.249758,0,0);}
.mce_c01026{transform:matrix(0.150529,0.006630,-0.011000,0.249758,0,0);-ms-transform:matrix(0.150529,0.006630,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.150529,0.006630,-0.011000,0.249758,0,0);}
.md6_c01026{transform:matrix(0.153142,0.006745,-0.011000,0.249758,0,0);-ms-transform:matrix(0.153142,0.006745,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.153142,0.006745,-0.011000,0.249758,0,0);}
.m8_c01026{transform:matrix(0.154380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154380,0.000000,0.000000,0.250000,0,0);}
.md4_c01026{transform:matrix(0.158971,0.007002,-0.011000,0.249758,0,0);-ms-transform:matrix(0.158971,0.007002,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.158971,0.007002,-0.011000,0.249758,0,0);}
.maf_c01026{transform:matrix(0.166326,0.007159,-0.010751,0.249769,0,0);-ms-transform:matrix(0.166326,0.007159,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.166326,0.007159,-0.010751,0.249769,0,0);}
.md7_c01026{transform:matrix(0.167403,0.007373,-0.011000,0.249758,0,0);-ms-transform:matrix(0.167403,0.007373,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.167403,0.007373,-0.011000,0.249758,0,0);}
.mf4_c01026{transform:matrix(0.167587,0.009907,-0.014754,0.249564,0,0);-ms-transform:matrix(0.167587,0.009907,-0.014754,0.249564,0,0);-webkit-transform:matrix(0.167587,0.009907,-0.014754,0.249564,0,0);}
.mcf_c01026{transform:matrix(0.168691,0.007430,-0.011000,0.249758,0,0);-ms-transform:matrix(0.168691,0.007430,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.168691,0.007430,-0.011000,0.249758,0,0);}
.mf1_c01026{transform:matrix(0.169564,0.010024,-0.014754,0.249564,0,0);-ms-transform:matrix(0.169564,0.010024,-0.014754,0.249564,0,0);-webkit-transform:matrix(0.169564,0.010024,-0.014754,0.249564,0,0);}
.mef_c01026{transform:matrix(0.170373,0.010072,-0.014754,0.249564,0,0);-ms-transform:matrix(0.170373,0.010072,-0.014754,0.249564,0,0);-webkit-transform:matrix(0.170373,0.010072,-0.014754,0.249564,0,0);}
.md2_c01026{transform:matrix(0.170864,0.007526,-0.011000,0.249758,0,0);-ms-transform:matrix(0.170864,0.007526,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.170864,0.007526,-0.011000,0.249758,0,0);}
.ma1_c01026{transform:matrix(0.173421,0.006423,-0.009253,0.249829,0,0);-ms-transform:matrix(0.173421,0.006423,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.173421,0.006423,-0.009253,0.249829,0,0);}
.md5_c01026{transform:matrix(0.174821,0.007700,-0.011000,0.249758,0,0);-ms-transform:matrix(0.174821,0.007700,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.174821,0.007700,-0.011000,0.249758,0,0);}
.mf6_c01026{transform:matrix(0.178658,0.010562,-0.014754,0.249564,0,0);-ms-transform:matrix(0.178658,0.010562,-0.014754,0.249564,0,0);-webkit-transform:matrix(0.178658,0.010562,-0.014754,0.249564,0,0);}
.mbc_c01026{transform:matrix(0.179087,0.007529,-0.010501,0.249779,0,0);-ms-transform:matrix(0.179087,0.007529,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.179087,0.007529,-0.010501,0.249779,0,0);}
.mf0_c01026{transform:matrix(0.179532,0.010614,-0.014754,0.249564,0,0);-ms-transform:matrix(0.179532,0.010614,-0.014754,0.249564,0,0);-webkit-transform:matrix(0.179532,0.010614,-0.014754,0.249564,0,0);}
.md0_c01026{transform:matrix(0.179711,0.007915,-0.011000,0.249758,0,0);-ms-transform:matrix(0.179711,0.007915,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.179711,0.007915,-0.011000,0.249758,0,0);}
.mac_c01026{transform:matrix(0.180761,0.006695,-0.009253,0.249829,0,0);-ms-transform:matrix(0.180761,0.006695,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.180761,0.006695,-0.009253,0.249829,0,0);}
.mb1_c01026{transform:matrix(0.181777,0.007824,-0.010751,0.249769,0,0);-ms-transform:matrix(0.181777,0.007824,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.181777,0.007824,-0.010751,0.249769,0,0);}
.m92_c01026{transform:matrix(0.182437,0.005656,-0.007746,0.249880,0,0);-ms-transform:matrix(0.182437,0.005656,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.182437,0.005656,-0.007746,0.249880,0,0);}
.ma6_c01026{transform:matrix(0.182925,0.006775,-0.009253,0.249829,0,0);-ms-transform:matrix(0.182925,0.006775,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.182925,0.006775,-0.009253,0.249829,0,0);}
.mf7_c01026{transform:matrix(0.185371,0.010959,-0.014754,0.249564,0,0);-ms-transform:matrix(0.185371,0.010959,-0.014754,0.249564,0,0);-webkit-transform:matrix(0.185371,0.010959,-0.014754,0.249564,0,0);}
.ma_c01026{transform:matrix(0.186600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186600,0.000000,0.000000,0.250000,0,0);}
.mae_c01026{transform:matrix(0.186812,0.008041,-0.010751,0.249769,0,0);-ms-transform:matrix(0.186812,0.008041,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.186812,0.008041,-0.010751,0.249769,0,0);}
.mb2_c01026{transform:matrix(0.187666,0.008078,-0.010751,0.249769,0,0);-ms-transform:matrix(0.187666,0.008078,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.187666,0.008078,-0.010751,0.249769,0,0);}
.m8f_c01026{transform:matrix(0.187795,0.005822,-0.007746,0.249880,0,0);-ms-transform:matrix(0.187795,0.005822,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.187795,0.005822,-0.007746,0.249880,0,0);}
.m14_c01026{transform:matrix(0.189099,0.006625,-0.008753,0.249847,0,0);-ms-transform:matrix(0.189099,0.006625,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.189099,0.006625,-0.008753,0.249847,0,0);}
.maa_c01026{transform:matrix(0.189755,0.007028,-0.009253,0.249829,0,0);-ms-transform:matrix(0.189755,0.007028,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.189755,0.007028,-0.009253,0.249829,0,0);}
.mf2_c01026{transform:matrix(0.191371,0.011314,-0.014754,0.249564,0,0);-ms-transform:matrix(0.191371,0.011314,-0.014754,0.249564,0,0);-webkit-transform:matrix(0.191371,0.011314,-0.014754,0.249564,0,0);}
.m90_c01026{transform:matrix(0.191833,0.005947,-0.007746,0.249880,0,0);-ms-transform:matrix(0.191833,0.005947,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.191833,0.005947,-0.007746,0.249880,0,0);}
.mee_c01026{transform:matrix(0.191905,0.011345,-0.014754,0.249564,0,0);-ms-transform:matrix(0.191905,0.011345,-0.014754,0.249564,0,0);-webkit-transform:matrix(0.191905,0.011345,-0.014754,0.249564,0,0);}
.mf3_c01026{transform:matrix(0.192274,0.011367,-0.014754,0.249564,0,0);-ms-transform:matrix(0.192274,0.011367,-0.014754,0.249564,0,0);-webkit-transform:matrix(0.192274,0.011367,-0.014754,0.249564,0,0);}
.ma4_c01026{transform:matrix(0.193467,0.007165,-0.009253,0.249829,0,0);-ms-transform:matrix(0.193467,0.007165,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.193467,0.007165,-0.009253,0.249829,0,0);}
.mb8_c01026{transform:matrix(0.194403,0.008173,-0.010501,0.249779,0,0);-ms-transform:matrix(0.194403,0.008173,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.194403,0.008173,-0.010501,0.249779,0,0);}
.ma7_c01026{transform:matrix(0.194567,0.007206,-0.009253,0.249829,0,0);-ms-transform:matrix(0.194567,0.007206,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.194567,0.007206,-0.009253,0.249829,0,0);}
.mf5_c01026{transform:matrix(0.195529,0.011559,-0.014754,0.249564,0,0);-ms-transform:matrix(0.195529,0.011559,-0.014754,0.249564,0,0);-webkit-transform:matrix(0.195529,0.011559,-0.014754,0.249564,0,0);}
.ma2_c01026{transform:matrix(0.196041,0.007261,-0.009253,0.249829,0,0);-ms-transform:matrix(0.196041,0.007261,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.196041,0.007261,-0.009253,0.249829,0,0);}
.mb5_c01026{transform:matrix(0.200549,0.008632,-0.010751,0.249769,0,0);-ms-transform:matrix(0.200549,0.008632,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.200549,0.008632,-0.010751,0.249769,0,0);}
.m93_c01026{transform:matrix(0.201148,0.006236,-0.007746,0.249880,0,0);-ms-transform:matrix(0.201148,0.006236,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.201148,0.006236,-0.007746,0.249880,0,0);}
.m95_c01026{transform:matrix(0.202183,0.006268,-0.007746,0.249880,0,0);-ms-transform:matrix(0.202183,0.006268,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.202183,0.006268,-0.007746,0.249880,0,0);}
.mbe_c01026{transform:matrix(0.204684,0.008605,-0.010501,0.249779,0,0);-ms-transform:matrix(0.204684,0.008605,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.204684,0.008605,-0.010501,0.249779,0,0);}
.mb7_c01026{transform:matrix(0.205325,0.008838,-0.010751,0.249769,0,0);-ms-transform:matrix(0.205325,0.008838,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.205325,0.008838,-0.010751,0.249769,0,0);}
.mbf_c01026{transform:matrix(0.205454,0.008638,-0.010501,0.249779,0,0);-ms-transform:matrix(0.205454,0.008638,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.205454,0.008638,-0.010501,0.249779,0,0);}
.mb9_c01026{transform:matrix(0.205459,0.008638,-0.010501,0.249779,0,0);-ms-transform:matrix(0.205459,0.008638,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.205459,0.008638,-0.010501,0.249779,0,0);}
.mb0_c01026{transform:matrix(0.206269,0.008878,-0.010751,0.249769,0,0);-ms-transform:matrix(0.206269,0.008878,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.206269,0.008878,-0.010751,0.249769,0,0);}
.m70_c01026{transform:matrix(0.206796,0.006411,-0.007746,0.249880,0,0);-ms-transform:matrix(0.206796,0.006411,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.206796,0.006411,-0.007746,0.249880,0,0);}
.mbb_c01026{transform:matrix(0.207262,0.008714,-0.010501,0.249779,0,0);-ms-transform:matrix(0.207262,0.008714,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.207262,0.008714,-0.010501,0.249779,0,0);}
.m9e_c01026{transform:matrix(0.208332,0.007716,-0.009253,0.249829,0,0);-ms-transform:matrix(0.208332,0.007716,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.208332,0.007716,-0.009253,0.249829,0,0);}
.m4d_c01026{transform:matrix(0.208446,0.006886,-0.008254,0.249864,0,0);-ms-transform:matrix(0.208446,0.006886,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.208446,0.006886,-0.008254,0.249864,0,0);}
.m2c_c01026{transform:matrix(0.209821,0.006931,-0.008254,0.249864,0,0);-ms-transform:matrix(0.209821,0.006931,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.209821,0.006931,-0.008254,0.249864,0,0);}
.mb6_c01026{transform:matrix(0.209826,0.009032,-0.010751,0.249769,0,0);-ms-transform:matrix(0.209826,0.009032,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.209826,0.009032,-0.010751,0.249769,0,0);}
.ma5_c01026{transform:matrix(0.210296,0.007789,-0.009253,0.249829,0,0);-ms-transform:matrix(0.210296,0.007789,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.210296,0.007789,-0.009253,0.249829,0,0);}
.m9c_c01026{transform:matrix(0.210731,0.007805,-0.009253,0.249829,0,0);-ms-transform:matrix(0.210731,0.007805,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.210731,0.007805,-0.009253,0.249829,0,0);}
.m2a_c01026{transform:matrix(0.211100,0.006973,-0.008254,0.249864,0,0);-ms-transform:matrix(0.211100,0.006973,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.211100,0.006973,-0.008254,0.249864,0,0);}
.mc1_c01026{transform:matrix(0.211183,0.008879,-0.010501,0.249779,0,0);-ms-transform:matrix(0.211183,0.008879,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.211183,0.008879,-0.010501,0.249779,0,0);}
.m8c_c01026{transform:matrix(0.212013,0.006572,-0.007746,0.249880,0,0);-ms-transform:matrix(0.212013,0.006572,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.212013,0.006572,-0.007746,0.249880,0,0);}
.m8d_c01026{transform:matrix(0.213088,0.006606,-0.007746,0.249880,0,0);-ms-transform:matrix(0.213088,0.006606,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.213088,0.006606,-0.007746,0.249880,0,0);}
.m75_c01026{transform:matrix(0.214152,0.006639,-0.007746,0.249880,0,0);-ms-transform:matrix(0.214152,0.006639,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.214152,0.006639,-0.007746,0.249880,0,0);}
.m9b_c01026{transform:matrix(0.214518,0.007945,-0.009253,0.249829,0,0);-ms-transform:matrix(0.214518,0.007945,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.214518,0.007945,-0.009253,0.249829,0,0);}
.m2e_c01026{transform:matrix(0.214548,0.007087,-0.008254,0.249864,0,0);-ms-transform:matrix(0.214548,0.007087,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.214548,0.007087,-0.008254,0.249864,0,0);}
.m96_c01026{transform:matrix(0.214913,0.007960,-0.009253,0.249829,0,0);-ms-transform:matrix(0.214913,0.007960,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.214913,0.007960,-0.009253,0.249829,0,0);}
.m8b_c01026{transform:matrix(0.214957,0.006664,-0.007746,0.249880,0,0);-ms-transform:matrix(0.214957,0.006664,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.214957,0.006664,-0.007746,0.249880,0,0);}
.m52_c01026{transform:matrix(0.215587,0.007122,-0.008254,0.249864,0,0);-ms-transform:matrix(0.215587,0.007122,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.215587,0.007122,-0.008254,0.249864,0,0);}
.m91_c01026{transform:matrix(0.217071,0.006729,-0.007746,0.249880,0,0);-ms-transform:matrix(0.217071,0.006729,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.217071,0.006729,-0.007746,0.249880,0,0);}
.m2f_c01026{transform:matrix(0.217501,0.007185,-0.008254,0.249864,0,0);-ms-transform:matrix(0.217501,0.007185,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.217501,0.007185,-0.008254,0.249864,0,0);}
.m8e_c01026{transform:matrix(0.217670,0.006748,-0.007746,0.249880,0,0);-ms-transform:matrix(0.217670,0.006748,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.217670,0.006748,-0.007746,0.249880,0,0);}
.mab_c01026{transform:matrix(0.217711,0.008063,-0.009253,0.249829,0,0);-ms-transform:matrix(0.217711,0.008063,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.217711,0.008063,-0.009253,0.249829,0,0);}
.m35_c01026{transform:matrix(0.217726,0.007192,-0.008254,0.249864,0,0);-ms-transform:matrix(0.217726,0.007192,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.217726,0.007192,-0.008254,0.249864,0,0);}
.mb3_c01026{transform:matrix(0.219187,0.009434,-0.010751,0.249769,0,0);-ms-transform:matrix(0.219187,0.009434,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.219187,0.009434,-0.010751,0.249769,0,0);}
.m99_c01026{transform:matrix(0.219385,0.008125,-0.009253,0.249829,0,0);-ms-transform:matrix(0.219385,0.008125,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.219385,0.008125,-0.009253,0.249829,0,0);}
.ma3_c01026{transform:matrix(0.220759,0.008176,-0.009253,0.249829,0,0);-ms-transform:matrix(0.220759,0.008176,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.220759,0.008176,-0.009253,0.249829,0,0);}
.mc5_c01026{transform:matrix(0.222466,0.008017,-0.009003,0.249838,0,0);-ms-transform:matrix(0.222466,0.008017,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.222466,0.008017,-0.009003,0.249838,0,0);}
.mb4_c01026{transform:matrix(0.222729,0.009587,-0.010751,0.249769,0,0);-ms-transform:matrix(0.222729,0.009587,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.222729,0.009587,-0.010751,0.249769,0,0);}
.m24_c01026{transform:matrix(0.223125,0.008041,-0.009003,0.249838,0,0);-ms-transform:matrix(0.223125,0.008041,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.223125,0.008041,-0.009003,0.249838,0,0);}
.m31_c01026{transform:matrix(0.223283,0.007376,-0.008254,0.249864,0,0);-ms-transform:matrix(0.223283,0.007376,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.223283,0.007376,-0.008254,0.249864,0,0);}
.m79_c01026{transform:matrix(0.223498,0.006928,-0.007746,0.249880,0,0);-ms-transform:matrix(0.223498,0.006928,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.223498,0.006928,-0.007746,0.249880,0,0);}
.m9f_c01026{transform:matrix(0.224186,0.008303,-0.009253,0.249829,0,0);-ms-transform:matrix(0.224186,0.008303,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.224186,0.008303,-0.009253,0.249829,0,0);}
.m94_c01026{transform:matrix(0.224822,0.006969,-0.007746,0.249880,0,0);-ms-transform:matrix(0.224822,0.006969,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.224822,0.006969,-0.007746,0.249880,0,0);}
.m27_c01026{transform:matrix(0.225199,0.008115,-0.009003,0.249838,0,0);-ms-transform:matrix(0.225199,0.008115,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.225199,0.008115,-0.009003,0.249838,0,0);}
.m3d_c01026{transform:matrix(0.225222,0.007440,-0.008254,0.249864,0,0);-ms-transform:matrix(0.225222,0.007440,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.225222,0.007440,-0.008254,0.249864,0,0);}
.m60_c01026{transform:matrix(0.225237,0.006982,-0.007746,0.249880,0,0);-ms-transform:matrix(0.225237,0.006982,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.225237,0.006982,-0.007746,0.249880,0,0);}
.m89_c01026{transform:matrix(0.225777,0.006999,-0.007746,0.249880,0,0);-ms-transform:matrix(0.225777,0.006999,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.225777,0.006999,-0.007746,0.249880,0,0);}
.m76_c01026{transform:matrix(0.226731,0.007029,-0.007746,0.249880,0,0);-ms-transform:matrix(0.226731,0.007029,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.226731,0.007029,-0.007746,0.249880,0,0);}
.m6c_c01026{transform:matrix(0.227046,0.007038,-0.007746,0.249880,0,0);-ms-transform:matrix(0.227046,0.007038,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.227046,0.007038,-0.007746,0.249880,0,0);}
.mc0_c01026{transform:matrix(0.227209,0.009552,-0.010501,0.249779,0,0);-ms-transform:matrix(0.227209,0.009552,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.227209,0.009552,-0.010501,0.249779,0,0);}
.m1b_c01026{transform:matrix(0.228667,0.008240,-0.009003,0.249838,0,0);-ms-transform:matrix(0.228667,0.008240,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.228667,0.008240,-0.009003,0.249838,0,0);}
.mc2_c01026{transform:matrix(0.228988,0.009627,-0.010501,0.249779,0,0);-ms-transform:matrix(0.228988,0.009627,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.228988,0.009627,-0.010501,0.249779,0,0);}
.m33_c01026{transform:matrix(0.229920,0.007595,-0.008254,0.249864,0,0);-ms-transform:matrix(0.229920,0.007595,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.229920,0.007595,-0.008254,0.249864,0,0);}
.m39_c01026{transform:matrix(0.230159,0.007603,-0.008254,0.249864,0,0);-ms-transform:matrix(0.230159,0.007603,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.230159,0.007603,-0.008254,0.249864,0,0);}
.mde_c01026{transform:matrix(0.230540,0.009231,-0.010002,0.249800,0,0);-ms-transform:matrix(0.230540,0.009231,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.230540,0.009231,-0.010002,0.249800,0,0);}
.mc3_c01026{transform:matrix(0.230871,0.009706,-0.010501,0.249779,0,0);-ms-transform:matrix(0.230871,0.009706,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.230871,0.009706,-0.010501,0.249779,0,0);}
.meb_c01026{transform:matrix(0.231874,0.009284,-0.010002,0.249800,0,0);-ms-transform:matrix(0.231874,0.009284,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.231874,0.009284,-0.010002,0.249800,0,0);}
.m50_c01026{transform:matrix(0.231948,0.007662,-0.008254,0.249864,0,0);-ms-transform:matrix(0.231948,0.007662,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.231948,0.007662,-0.008254,0.249864,0,0);}
.m5f_c01026{transform:matrix(0.232158,0.007669,-0.008254,0.249864,0,0);-ms-transform:matrix(0.232158,0.007669,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.232158,0.007669,-0.008254,0.249864,0,0);}
.m7c_c01026{transform:matrix(0.232443,0.007206,-0.007746,0.249880,0,0);-ms-transform:matrix(0.232443,0.007206,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.232443,0.007206,-0.007746,0.249880,0,0);}
.mbd_c01026{transform:matrix(0.232894,0.009791,-0.010501,0.249779,0,0);-ms-transform:matrix(0.232894,0.009791,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.232894,0.009791,-0.010501,0.249779,0,0);}
.mba_c01026{transform:matrix(0.234573,0.009862,-0.010501,0.249779,0,0);-ms-transform:matrix(0.234573,0.009862,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.234573,0.009862,-0.010501,0.249779,0,0);}
.m4a_c01026{transform:matrix(0.235382,0.007775,-0.008254,0.249864,0,0);-ms-transform:matrix(0.235382,0.007775,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.235382,0.007775,-0.008254,0.249864,0,0);}
.m8a_c01026{transform:matrix(0.235642,0.007305,-0.007746,0.249880,0,0);-ms-transform:matrix(0.235642,0.007305,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.235642,0.007305,-0.007746,0.249880,0,0);}
.m6a_c01026{transform:matrix(0.235882,0.007312,-0.007746,0.249880,0,0);-ms-transform:matrix(0.235882,0.007312,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.235882,0.007312,-0.007746,0.249880,0,0);}
.mfd_c01026{transform:matrix(0.237185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237185,0.000000,0.000000,0.250000,0,0);}
.m54_c01026{transform:matrix(0.237196,0.007835,-0.008254,0.249864,0,0);-ms-transform:matrix(0.237196,0.007835,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.237196,0.007835,-0.008254,0.249864,0,0);}
.m19_c01026{transform:matrix(0.238380,0.008590,-0.009003,0.249838,0,0);-ms-transform:matrix(0.238380,0.008590,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.238380,0.008590,-0.009003,0.249838,0,0);}
.m61_c01026{transform:matrix(0.240914,0.007468,-0.007746,0.249880,0,0);-ms-transform:matrix(0.240914,0.007468,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.240914,0.007468,-0.007746,0.249880,0,0);}
.m56_c01026{transform:matrix(0.241568,0.007980,-0.008254,0.249864,0,0);-ms-transform:matrix(0.241568,0.007980,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.241568,0.007980,-0.008254,0.249864,0,0);}
.m4e_c01026{transform:matrix(0.242328,0.008005,-0.008254,0.249864,0,0);-ms-transform:matrix(0.242328,0.008005,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.242328,0.008005,-0.008254,0.249864,0,0);}
.me4_c01026{transform:matrix(0.242671,0.009717,-0.010002,0.249800,0,0);-ms-transform:matrix(0.242671,0.009717,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.242671,0.009717,-0.010002,0.249800,0,0);}
.mf9_c01026{transform:matrix(0.242755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242755,0.000000,0.000000,0.250000,0,0);}
.m40_c01026{transform:matrix(0.243182,0.008033,-0.008254,0.249864,0,0);-ms-transform:matrix(0.243182,0.008033,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.243182,0.008033,-0.008254,0.249864,0,0);}
.m7d_c01026{transform:matrix(0.243258,0.007541,-0.007746,0.249880,0,0);-ms-transform:matrix(0.243258,0.007541,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.243258,0.007541,-0.007746,0.249880,0,0);}
.m3e_c01026{transform:matrix(0.243407,0.008040,-0.008254,0.249864,0,0);-ms-transform:matrix(0.243407,0.008040,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.243407,0.008040,-0.008254,0.249864,0,0);}
.m9a_c01026{transform:matrix(0.243438,0.009016,-0.009253,0.249829,0,0);-ms-transform:matrix(0.243438,0.009016,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.243438,0.009016,-0.009253,0.249829,0,0);}
.m7b_c01026{transform:matrix(0.243633,0.007553,-0.007746,0.249880,0,0);-ms-transform:matrix(0.243633,0.007553,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.243633,0.007553,-0.007746,0.249880,0,0);}
.m28_c01026{transform:matrix(0.243937,0.008791,-0.009003,0.249838,0,0);-ms-transform:matrix(0.243937,0.008791,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.243937,0.008791,-0.009003,0.249838,0,0);}
.m9d_c01026{transform:matrix(0.244597,0.009059,-0.009253,0.249829,0,0);-ms-transform:matrix(0.244597,0.009059,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.244597,0.009059,-0.009253,0.249829,0,0);}
.m88_c01026{transform:matrix(0.244652,0.007584,-0.007746,0.249880,0,0);-ms-transform:matrix(0.244652,0.007584,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.244652,0.007584,-0.007746,0.249880,0,0);}
.m44_c01026{transform:matrix(0.244971,0.008092,-0.008254,0.249864,0,0);-ms-transform:matrix(0.244971,0.008092,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.244971,0.008092,-0.008254,0.249864,0,0);}
.mc4_c01026{transform:matrix(0.245556,0.008849,-0.009003,0.249838,0,0);-ms-transform:matrix(0.245556,0.008849,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.245556,0.008849,-0.009003,0.249838,0,0);}
.m30_c01026{transform:matrix(0.245986,0.008126,-0.008254,0.249864,0,0);-ms-transform:matrix(0.245986,0.008126,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.245986,0.008126,-0.008254,0.249864,0,0);}
.m47_c01026{transform:matrix(0.246531,0.008144,-0.008254,0.249864,0,0);-ms-transform:matrix(0.246531,0.008144,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.246531,0.008144,-0.008254,0.249864,0,0);}
.ma0_c01026{transform:matrix(0.246606,0.009134,-0.009253,0.249829,0,0);-ms-transform:matrix(0.246606,0.009134,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.246606,0.009134,-0.009253,0.249829,0,0);}
.m80_c01026{transform:matrix(0.246726,0.007649,-0.007746,0.249880,0,0);-ms-transform:matrix(0.246726,0.007649,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.246726,0.007649,-0.007746,0.249880,0,0);}
.m2d_c01026{transform:matrix(0.247315,0.008170,-0.008254,0.249864,0,0);-ms-transform:matrix(0.247315,0.008170,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.247315,0.008170,-0.008254,0.249864,0,0);}
.m2b_c01026{transform:matrix(0.247325,0.008170,-0.008254,0.249864,0,0);-ms-transform:matrix(0.247325,0.008170,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.247325,0.008170,-0.008254,0.249864,0,0);}
.m63_c01026{transform:matrix(0.247636,0.007677,-0.007746,0.249880,0,0);-ms-transform:matrix(0.247636,0.007677,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.247636,0.007677,-0.007746,0.249880,0,0);}
.mc7_c01026{transform:matrix(0.247709,0.008926,-0.009003,0.249838,0,0);-ms-transform:matrix(0.247709,0.008926,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.247709,0.008926,-0.009003,0.249838,0,0);}
.m64_c01026{transform:matrix(0.247816,0.007682,-0.007746,0.249880,0,0);-ms-transform:matrix(0.247816,0.007682,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.247816,0.007682,-0.007746,0.249880,0,0);}
.m53_c01026{transform:matrix(0.247990,0.008192,-0.008254,0.249864,0,0);-ms-transform:matrix(0.247990,0.008192,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.247990,0.008192,-0.008254,0.249864,0,0);}
.m77_c01026{transform:matrix(0.248016,0.007688,-0.007746,0.249880,0,0);-ms-transform:matrix(0.248016,0.007688,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.248016,0.007688,-0.007746,0.249880,0,0);}
.m5b_c01026{transform:matrix(0.248160,0.008197,-0.008254,0.249864,0,0);-ms-transform:matrix(0.248160,0.008197,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.248160,0.008197,-0.008254,0.249864,0,0);}
.m51_c01026{transform:matrix(0.248699,0.008215,-0.008254,0.249864,0,0);-ms-transform:matrix(0.248699,0.008215,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.248699,0.008215,-0.008254,0.249864,0,0);}
.m4f_c01026{transform:matrix(0.249239,0.008233,-0.008254,0.249864,0,0);-ms-transform:matrix(0.249239,0.008233,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.249239,0.008233,-0.008254,0.249864,0,0);}
.ma9_c01026{transform:matrix(0.249759,0.009250,-0.009253,0.249829,0,0);-ms-transform:matrix(0.249759,0.009250,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.249759,0.009250,-0.009253,0.249829,0,0);}
.m58_c01026{transform:matrix(0.249879,0.008254,-0.008254,0.249864,0,0);-ms-transform:matrix(0.249879,0.008254,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.249879,0.008254,-0.008254,0.249864,0,0);}
.m3f_c01026{transform:matrix(0.249894,0.008255,-0.008254,0.249864,0,0);-ms-transform:matrix(0.249894,0.008255,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.249894,0.008255,-0.008254,0.249864,0,0);}
.mda_c01026{transform:matrix(0.250190,0.010018,-0.010002,0.249800,0,0);-ms-transform:matrix(0.250190,0.010018,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.250190,0.010018,-0.010002,0.249800,0,0);}
.mec_c01026{transform:matrix(0.250264,0.010021,-0.010002,0.249800,0,0);-ms-transform:matrix(0.250264,0.010021,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.250264,0.010021,-0.010002,0.249800,0,0);}
.m1c_c01026{transform:matrix(0.250757,0.009036,-0.009003,0.249838,0,0);-ms-transform:matrix(0.250757,0.009036,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.250757,0.009036,-0.009003,0.249838,0,0);}
.m68_c01026{transform:matrix(0.250800,0.007775,-0.007746,0.249880,0,0);-ms-transform:matrix(0.250800,0.007775,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.250800,0.007775,-0.007746,0.249880,0,0);}
.m7f_c01026{transform:matrix(0.250954,0.007780,-0.007746,0.249880,0,0);-ms-transform:matrix(0.250954,0.007780,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.250954,0.007780,-0.007746,0.249880,0,0);}
.m97_c01026{transform:matrix(0.251363,0.009310,-0.009253,0.249829,0,0);-ms-transform:matrix(0.251363,0.009310,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.251363,0.009310,-0.009253,0.249829,0,0);}
.m13_c01026{transform:matrix(0.252200,0.008836,-0.008753,0.249847,0,0);-ms-transform:matrix(0.252200,0.008836,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.252200,0.008836,-0.008753,0.249847,0,0);}
.m32_c01026{transform:matrix(0.252212,0.008331,-0.008254,0.249864,0,0);-ms-transform:matrix(0.252212,0.008331,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.252212,0.008331,-0.008254,0.249864,0,0);}
.m18_c01026{transform:matrix(0.252386,0.009095,-0.009003,0.249838,0,0);-ms-transform:matrix(0.252386,0.009095,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.252386,0.009095,-0.009003,0.249838,0,0);}
.m1f_c01026{transform:matrix(0.252426,0.009096,-0.009003,0.249838,0,0);-ms-transform:matrix(0.252426,0.009096,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.252426,0.009096,-0.009003,0.249838,0,0);}
.md_c01026{transform:matrix(0.253192,0.010138,-0.010002,0.249800,0,0);-ms-transform:matrix(0.253192,0.010138,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.253192,0.010138,-0.010002,0.249800,0,0);}
.m55_c01026{transform:matrix(0.253637,0.008378,-0.008254,0.249864,0,0);-ms-transform:matrix(0.253637,0.008378,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.253637,0.008378,-0.008254,0.249864,0,0);}
.mcc_c01026{transform:matrix(0.253680,0.009142,-0.009003,0.249838,0,0);-ms-transform:matrix(0.253680,0.009142,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.253680,0.009142,-0.009003,0.249838,0,0);}
.m34_c01026{transform:matrix(0.254811,0.008417,-0.008254,0.249864,0,0);-ms-transform:matrix(0.254811,0.008417,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.254811,0.008417,-0.008254,0.249864,0,0);}
.m87_c01026{transform:matrix(0.254933,0.007903,-0.007746,0.249880,0,0);-ms-transform:matrix(0.254933,0.007903,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.254933,0.007903,-0.007746,0.249880,0,0);}
.m65_c01026{transform:matrix(0.255147,0.007910,-0.007746,0.249880,0,0);-ms-transform:matrix(0.255147,0.007910,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.255147,0.007910,-0.007746,0.249880,0,0);}
.m73_c01026{transform:matrix(0.256067,0.007938,-0.007746,0.249880,0,0);-ms-transform:matrix(0.256067,0.007938,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.256067,0.007938,-0.007746,0.249880,0,0);}
.mc8_c01026{transform:matrix(0.256578,0.009246,-0.009003,0.249838,0,0);-ms-transform:matrix(0.256578,0.009246,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.256578,0.009246,-0.009003,0.249838,0,0);}
.m41_c01026{transform:matrix(0.256690,0.008479,-0.008254,0.249864,0,0);-ms-transform:matrix(0.256690,0.008479,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.256690,0.008479,-0.008254,0.249864,0,0);}
.m98_c01026{transform:matrix(0.256829,0.009512,-0.009253,0.249829,0,0);-ms-transform:matrix(0.256829,0.009512,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.256829,0.009512,-0.009253,0.249829,0,0);}
.m59_c01026{transform:matrix(0.257480,0.008505,-0.008254,0.249864,0,0);-ms-transform:matrix(0.257480,0.008505,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.257480,0.008505,-0.008254,0.249864,0,0);}
.m3c_c01026{transform:matrix(0.257739,0.008514,-0.008254,0.249864,0,0);-ms-transform:matrix(0.257739,0.008514,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.257739,0.008514,-0.008254,0.249864,0,0);}
.m5c_c01026{transform:matrix(0.257859,0.008518,-0.008254,0.249864,0,0);-ms-transform:matrix(0.257859,0.008518,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.257859,0.008518,-0.008254,0.249864,0,0);}
.mca_c01026{transform:matrix(0.258587,0.009318,-0.009003,0.249838,0,0);-ms-transform:matrix(0.258587,0.009318,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.258587,0.009318,-0.009003,0.249838,0,0);}
.m3a_c01026{transform:matrix(0.258959,0.008554,-0.008254,0.249864,0,0);-ms-transform:matrix(0.258959,0.008554,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.258959,0.008554,-0.008254,0.249864,0,0);}
.m36_c01026{transform:matrix(0.259104,0.008559,-0.008254,0.249864,0,0);-ms-transform:matrix(0.259104,0.008559,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.259104,0.008559,-0.008254,0.249864,0,0);}
.m6e_c01026{transform:matrix(0.260600,0.008079,-0.007746,0.249880,0,0);-ms-transform:matrix(0.260600,0.008079,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.260600,0.008079,-0.007746,0.249880,0,0);}
.mcb_c01026{transform:matrix(0.261750,0.009432,-0.009003,0.249838,0,0);-ms-transform:matrix(0.261750,0.009432,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.261750,0.009432,-0.009003,0.249838,0,0);}
.m7a_c01026{transform:matrix(0.261899,0.008119,-0.007746,0.249880,0,0);-ms-transform:matrix(0.261899,0.008119,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.261899,0.008119,-0.007746,0.249880,0,0);}
.m78_c01026{transform:matrix(0.262539,0.008139,-0.007746,0.249880,0,0);-ms-transform:matrix(0.262539,0.008139,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.262539,0.008139,-0.007746,0.249880,0,0);}
.mdc_c01026{transform:matrix(0.263004,0.010531,-0.010002,0.249800,0,0);-ms-transform:matrix(0.263004,0.010531,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.263004,0.010531,-0.010002,0.249800,0,0);}
.m29_c01026{transform:matrix(0.264513,0.009532,-0.009003,0.249838,0,0);-ms-transform:matrix(0.264513,0.009532,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.264513,0.009532,-0.009003,0.249838,0,0);}
.m5d_c01026{transform:matrix(0.264816,0.008748,-0.008254,0.249864,0,0);-ms-transform:matrix(0.264816,0.008748,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.264816,0.008748,-0.008254,0.249864,0,0);}
.m74_c01026{transform:matrix(0.264863,0.008211,-0.007746,0.249880,0,0);-ms-transform:matrix(0.264863,0.008211,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.264863,0.008211,-0.007746,0.249880,0,0);}
.me2_c01026{transform:matrix(0.265302,0.010623,-0.010002,0.249800,0,0);-ms-transform:matrix(0.265302,0.010623,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.265302,0.010623,-0.010002,0.249800,0,0);}
.m82_c01026{transform:matrix(0.265378,0.008227,-0.007746,0.249880,0,0);-ms-transform:matrix(0.265378,0.008227,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.265378,0.008227,-0.007746,0.249880,0,0);}
.m6_c01026{transform:matrix(0.265622,0.006641,-0.006248,0.249922,0,0);-ms-transform:matrix(0.265622,0.006641,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.265622,0.006641,-0.006248,0.249922,0,0);}
.m25_c01026{transform:matrix(0.266817,0.009615,-0.009003,0.249838,0,0);-ms-transform:matrix(0.266817,0.009615,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.266817,0.009615,-0.009003,0.249838,0,0);}
.m57_c01026{transform:matrix(0.267719,0.008844,-0.008254,0.249864,0,0);-ms-transform:matrix(0.267719,0.008844,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.267719,0.008844,-0.008254,0.249864,0,0);}
.m1e_c01026{transform:matrix(0.269040,0.009695,-0.009003,0.249838,0,0);-ms-transform:matrix(0.269040,0.009695,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.269040,0.009695,-0.009003,0.249838,0,0);}
.mfa_c01026{transform:matrix(0.269135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269135,0.000000,0.000000,0.250000,0,0);}
.me7_c01026{transform:matrix(0.269569,0.010794,-0.010002,0.249800,0,0);-ms-transform:matrix(0.269569,0.010794,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.269569,0.010794,-0.010002,0.249800,0,0);}
.m67_c01026{transform:matrix(0.269625,0.008358,-0.007746,0.249880,0,0);-ms-transform:matrix(0.269625,0.008358,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.269625,0.008358,-0.007746,0.249880,0,0);}
.me_c01026{transform:matrix(0.269834,0.009454,-0.008753,0.249847,0,0);-ms-transform:matrix(0.269834,0.009454,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.269834,0.009454,-0.008753,0.249847,0,0);}
.m38_c01026{transform:matrix(0.270043,0.008920,-0.008254,0.249864,0,0);-ms-transform:matrix(0.270043,0.008920,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.270043,0.008920,-0.008254,0.249864,0,0);}
.m1d_c01026{transform:matrix(0.270055,0.009732,-0.009003,0.249838,0,0);-ms-transform:matrix(0.270055,0.009732,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.270055,0.009732,-0.009003,0.249838,0,0);}
.m72_c01026{transform:matrix(0.270705,0.008392,-0.007746,0.249880,0,0);-ms-transform:matrix(0.270705,0.008392,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.270705,0.008392,-0.007746,0.249880,0,0);}
.m21_c01026{transform:matrix(0.270944,0.009764,-0.009003,0.249838,0,0);-ms-transform:matrix(0.270944,0.009764,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.270944,0.009764,-0.009003,0.249838,0,0);}
.m37_c01026{transform:matrix(0.270972,0.008951,-0.008254,0.249864,0,0);-ms-transform:matrix(0.270972,0.008951,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.270972,0.008951,-0.008254,0.249864,0,0);}
.m6d_c01026{transform:matrix(0.270980,0.008400,-0.007746,0.249880,0,0);-ms-transform:matrix(0.270980,0.008400,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.270980,0.008400,-0.007746,0.249880,0,0);}
.me9_c01026{transform:matrix(0.271003,0.010851,-0.010002,0.249800,0,0);-ms-transform:matrix(0.271003,0.010851,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.271003,0.010851,-0.010002,0.249800,0,0);}
.mc6_c01026{transform:matrix(0.271034,0.009767,-0.009003,0.249838,0,0);-ms-transform:matrix(0.271034,0.009767,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.271034,0.009767,-0.009003,0.249838,0,0);}
.m15_c01026{transform:matrix(0.271164,0.009500,-0.008753,0.249847,0,0);-ms-transform:matrix(0.271164,0.009500,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.271164,0.009500,-0.008753,0.249847,0,0);}
.m62_c01026{transform:matrix(0.271275,0.008410,-0.007746,0.249880,0,0);-ms-transform:matrix(0.271275,0.008410,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.271275,0.008410,-0.007746,0.249880,0,0);}
.m7_c01026{transform:matrix(0.272030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272030,0.000000,0.000000,0.250000,0,0);}
.m26_c01026{transform:matrix(0.272473,0.009819,-0.009003,0.249838,0,0);-ms-transform:matrix(0.272473,0.009819,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.272473,0.009819,-0.009003,0.249838,0,0);}
.m71_c01026{transform:matrix(0.272519,0.008448,-0.007746,0.249880,0,0);-ms-transform:matrix(0.272519,0.008448,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.272519,0.008448,-0.007746,0.249880,0,0);}
.m5a_c01026{transform:matrix(0.272986,0.009018,-0.008254,0.249864,0,0);-ms-transform:matrix(0.272986,0.009018,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.272986,0.009018,-0.008254,0.249864,0,0);}
.mc9_c01026{transform:matrix(0.273083,0.009841,-0.009003,0.249838,0,0);-ms-transform:matrix(0.273083,0.009841,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.273083,0.009841,-0.009003,0.249838,0,0);}
.m3b_c01026{transform:matrix(0.273146,0.009023,-0.008254,0.249864,0,0);-ms-transform:matrix(0.273146,0.009023,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.273146,0.009023,-0.008254,0.249864,0,0);}
.m20_c01026{transform:matrix(0.273148,0.009843,-0.009003,0.249838,0,0);-ms-transform:matrix(0.273148,0.009843,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.273148,0.009843,-0.009003,0.249838,0,0);}
.m6b_c01026{transform:matrix(0.273519,0.008479,-0.007746,0.249880,0,0);-ms-transform:matrix(0.273519,0.008479,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.273519,0.008479,-0.007746,0.249880,0,0);}
.mdd_c01026{transform:matrix(0.274085,0.010974,-0.010002,0.249800,0,0);-ms-transform:matrix(0.274085,0.010974,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.274085,0.010974,-0.010002,0.249800,0,0);}
.m69_c01026{transform:matrix(0.274433,0.008507,-0.007746,0.249880,0,0);-ms-transform:matrix(0.274433,0.008507,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.274433,0.008507,-0.007746,0.249880,0,0);}
.m7e_c01026{transform:matrix(0.274573,0.008512,-0.007746,0.249880,0,0);-ms-transform:matrix(0.274573,0.008512,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.274573,0.008512,-0.007746,0.249880,0,0);}
.m22_c01026{transform:matrix(0.275526,0.009929,-0.009003,0.249838,0,0);-ms-transform:matrix(0.275526,0.009929,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.275526,0.009929,-0.009003,0.249838,0,0);}
.m46_c01026{transform:matrix(0.275890,0.009113,-0.008254,0.249864,0,0);-ms-transform:matrix(0.275890,0.009113,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.275890,0.009113,-0.008254,0.249864,0,0);}
.m48_c01026{transform:matrix(0.276179,0.009123,-0.008254,0.249864,0,0);-ms-transform:matrix(0.276179,0.009123,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.276179,0.009123,-0.008254,0.249864,0,0);}
.m85_c01026{transform:matrix(0.276187,0.008562,-0.007746,0.249880,0,0);-ms-transform:matrix(0.276187,0.008562,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.276187,0.008562,-0.007746,0.249880,0,0);}
.mf8_c01026{transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);}
.m6f_c01026{transform:matrix(0.277742,0.008610,-0.007746,0.249880,0,0);-ms-transform:matrix(0.277742,0.008610,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.277742,0.008610,-0.007746,0.249880,0,0);}
.m81_c01026{transform:matrix(0.277986,0.008618,-0.007746,0.249880,0,0);-ms-transform:matrix(0.277986,0.008618,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.277986,0.008618,-0.007746,0.249880,0,0);}
.m23_c01026{transform:matrix(0.278099,0.010022,-0.009003,0.249838,0,0);-ms-transform:matrix(0.278099,0.010022,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.278099,0.010022,-0.009003,0.249838,0,0);}
.m84_c01026{transform:matrix(0.278531,0.008634,-0.007746,0.249880,0,0);-ms-transform:matrix(0.278531,0.008634,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.278531,0.008634,-0.007746,0.249880,0,0);}
.med_c01026{transform:matrix(0.278712,0.011160,-0.010002,0.249800,0,0);-ms-transform:matrix(0.278712,0.011160,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.278712,0.011160,-0.010002,0.249800,0,0);}
.m83_c01026{transform:matrix(0.278941,0.008647,-0.007746,0.249880,0,0);-ms-transform:matrix(0.278941,0.008647,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.278941,0.008647,-0.007746,0.249880,0,0);}
.m1a_c01026{transform:matrix(0.279354,0.010067,-0.009003,0.249838,0,0);-ms-transform:matrix(0.279354,0.010067,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.279354,0.010067,-0.009003,0.249838,0,0);}
.mcd_c01026{transform:matrix(0.280203,0.010097,-0.009003,0.249838,0,0);-ms-transform:matrix(0.280203,0.010097,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.280203,0.010097,-0.009003,0.249838,0,0);}
.mdf_c01026{transform:matrix(0.280365,0.011226,-0.010002,0.249800,0,0);-ms-transform:matrix(0.280365,0.011226,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.280365,0.011226,-0.010002,0.249800,0,0);}
.mc_c01026{transform:matrix(0.280455,0.011229,-0.010002,0.249800,0,0);-ms-transform:matrix(0.280455,0.011229,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.280455,0.011229,-0.010002,0.249800,0,0);}
.mb_c01026{transform:matrix(0.281010,0.011252,-0.010002,0.249800,0,0);-ms-transform:matrix(0.281010,0.011252,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.281010,0.011252,-0.010002,0.249800,0,0);}
.m86_c01026{transform:matrix(0.281410,0.008724,-0.007746,0.249880,0,0);-ms-transform:matrix(0.281410,0.008724,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.281410,0.008724,-0.007746,0.249880,0,0);}
.m42_c01026{transform:matrix(0.281591,0.009302,-0.008254,0.249864,0,0);-ms-transform:matrix(0.281591,0.009302,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.281591,0.009302,-0.008254,0.249864,0,0);}
.m5e_c01026{transform:matrix(0.281896,0.009312,-0.008254,0.249864,0,0);-ms-transform:matrix(0.281896,0.009312,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.281896,0.009312,-0.008254,0.249864,0,0);}
.m43_c01026{transform:matrix(0.283445,0.009363,-0.008254,0.249864,0,0);-ms-transform:matrix(0.283445,0.009363,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.283445,0.009363,-0.008254,0.249864,0,0);}
.mfb_c01026{transform:matrix(0.284665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284665,0.000000,0.000000,0.250000,0,0);}
.m66_c01026{transform:matrix(0.284988,0.008835,-0.007746,0.249880,0,0);-ms-transform:matrix(0.284988,0.008835,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.284988,0.008835,-0.007746,0.249880,0,0);}
.me6_c01026{transform:matrix(0.285122,0.011416,-0.010002,0.249800,0,0);-ms-transform:matrix(0.285122,0.011416,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.285122,0.011416,-0.010002,0.249800,0,0);}
.me5_c01026{transform:matrix(0.285616,0.011436,-0.010002,0.249800,0,0);-ms-transform:matrix(0.285616,0.011436,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.285616,0.011436,-0.010002,0.249800,0,0);}
.me8_c01026{transform:matrix(0.288254,0.011542,-0.010002,0.249800,0,0);-ms-transform:matrix(0.288254,0.011542,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.288254,0.011542,-0.010002,0.249800,0,0);}
.m4c_c01026{transform:matrix(0.289572,0.009565,-0.008254,0.249864,0,0);-ms-transform:matrix(0.289572,0.009565,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.289572,0.009565,-0.008254,0.249864,0,0);}
.ma8_c01026{transform:matrix(0.289636,0.010727,-0.009253,0.249829,0,0);-ms-transform:matrix(0.289636,0.010727,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.289636,0.010727,-0.009253,0.249829,0,0);}
.md9_c01026{transform:matrix(0.290402,0.011628,-0.010002,0.249800,0,0);-ms-transform:matrix(0.290402,0.011628,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.290402,0.011628,-0.010002,0.249800,0,0);}
.m9_c01026{transform:matrix(0.291305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291305,0.000000,0.000000,0.250000,0,0);}
.mea_c01026{transform:matrix(0.292755,0.011722,-0.010002,0.249800,0,0);-ms-transform:matrix(0.292755,0.011722,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.292755,0.011722,-0.010002,0.249800,0,0);}
.me0_c01026{transform:matrix(0.294424,0.011789,-0.010002,0.249800,0,0);-ms-transform:matrix(0.294424,0.011789,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.294424,0.011789,-0.010002,0.249800,0,0);}
.mdb_c01026{transform:matrix(0.294864,0.011806,-0.010002,0.249800,0,0);-ms-transform:matrix(0.294864,0.011806,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.294864,0.011806,-0.010002,0.249800,0,0);}
.m49_c01026{transform:matrix(0.295304,0.009755,-0.008254,0.249864,0,0);-ms-transform:matrix(0.295304,0.009755,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.295304,0.009755,-0.008254,0.249864,0,0);}
.m16_c01026{transform:matrix(0.297288,0.010415,-0.008753,0.249847,0,0);-ms-transform:matrix(0.297288,0.010415,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.297288,0.010415,-0.008753,0.249847,0,0);}
.m45_c01026{transform:matrix(0.297438,0.009825,-0.008254,0.249864,0,0);-ms-transform:matrix(0.297438,0.009825,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.297438,0.009825,-0.008254,0.249864,0,0);}
.me3_c01026{transform:matrix(0.303956,0.012170,-0.010002,0.249800,0,0);-ms-transform:matrix(0.303956,0.012170,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.303956,0.012170,-0.010002,0.249800,0,0);}
.me1_c01026{transform:matrix(0.304636,0.012198,-0.010002,0.249800,0,0);-ms-transform:matrix(0.304636,0.012198,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.304636,0.012198,-0.010002,0.249800,0,0);}
.m4b_c01026{transform:matrix(0.309931,0.010238,-0.008254,0.249864,0,0);-ms-transform:matrix(0.309931,0.010238,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.309931,0.010238,-0.008254,0.249864,0,0);}
.mad_c01026{transform:matrix(0.322250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322250,0.000000,0.000000,0.250000,0,0);}
.m1_c01026{transform:matrix(0.449305,0.011233,-0.006248,0.249922,0,0);-ms-transform:matrix(0.449305,0.011233,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.449305,0.011233,-0.006248,0.249922,0,0);}
.m2_c01026{transform:matrix(0.480085,0.012002,-0.006248,0.249922,0,0);-ms-transform:matrix(0.480085,0.012002,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.480085,0.012002,-0.006248,0.249922,0,0);}
.m11_c01026{transform:matrix(0.491733,0.017228,-0.008753,0.249847,0,0);-ms-transform:matrix(0.491733,0.017228,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.491733,0.017228,-0.008753,0.249847,0,0);}
.m0_c01026{transform:matrix(0.496885,0.012422,-0.006248,0.249922,0,0);-ms-transform:matrix(0.496885,0.012422,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.496885,0.012422,-0.006248,0.249922,0,0);}
.m5_c01026{transform:matrix(0.600147,0.015004,-0.006248,0.249922,0,0);-ms-transform:matrix(0.600147,0.015004,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.600147,0.015004,-0.006248,0.249922,0,0);}
.m12_c01026{transform:matrix(0.671643,0.023531,-0.008753,0.249847,0,0);-ms-transform:matrix(0.671643,0.023531,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.671643,0.023531,-0.008753,0.249847,0,0);}
.mf_c01026{transform:matrix(0.892088,0.031254,-0.008753,0.249847,0,0);-ms-transform:matrix(0.892088,0.031254,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.892088,0.031254,-0.008753,0.249847,0,0);}
.m17_c01026{transform:matrix(1.042001,0.036507,-0.008753,0.249847,0,0);-ms-transform:matrix(1.042001,0.036507,-0.008753,0.249847,0,0);-webkit-transform:matrix(1.042001,0.036507,-0.008753,0.249847,0,0);}
.m4_c01026{transform:matrix(1.593477,0.039837,-0.006248,0.249922,0,0);-ms-transform:matrix(1.593477,0.039837,-0.006248,0.249922,0,0);-webkit-transform:matrix(1.593477,0.039837,-0.006248,0.249922,0,0);}
.m10_c01026{transform:matrix(1.995905,0.069927,-0.008753,0.249847,0,0);-ms-transform:matrix(1.995905,0.069927,-0.008753,0.249847,0,0);-webkit-transform:matrix(1.995905,0.069927,-0.008753,0.249847,0,0);}
.v0_c01026{vertical-align:0.000000px;}
.ls0_c01026{letter-spacing:0.000000px;}
.sc__c01026{text-shadow:none;}
.sc0_c01026{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__c01026{-webkit-text-stroke:0px transparent;}
.sc0_c01026{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01026{word-spacing:0.000000px;}
.fc0_c01026{color:transparent;}
.fs1_c01026{font-size:18.000000px;}
.fs0_c01026{font-size:18.005624px;}
.fs4_c01026{font-size:29.988388px;}
.fsd_c01026{font-size:60.000000px;}
.fs8_c01026{font-size:65.969963px;}
.fs11_c01026{font-size:65.986832px;}
.fs7_c01026{font-size:71.967233px;}
.fs5_c01026{font-size:71.974688px;}
.fs3_c01026{font-size:71.985635px;}
.fs13_c01026{font-size:72.000000px;}
.fs9_c01026{font-size:72.034588px;}
.fs6_c01026{font-size:77.964502px;}
.fsb_c01026{font-size:77.975426px;}
.fs2_c01026{font-size:78.000000px;}
.fsf_c01026{font-size:83.990129px;}
.fsc_c01026{font-size:89.971646px;}
.fse_c01026{font-size:89.993250px;}
.fsa_c01026{font-size:90.043235px;}
.fs12_c01026{font-size:101.973732px;}
.fs10_c01026{font-size:113.996409px;}
.y0_c01026{bottom:0.000000px;}
.yfc_c01026{bottom:145.530000px;}
.yfb_c01026{bottom:217.618500px;}
.yfa_c01026{bottom:253.423500px;}
.yf9_c01026{bottom:262.512064px;}
.yf8_c01026{bottom:266.453058px;}
.yf7_c01026{bottom:273.645718px;}
.yf6_c01026{bottom:275.656881px;}
.yf5_c01026{bottom:282.191898px;}
.yf4_c01026{bottom:289.260127px;}
.yf3_c01026{bottom:291.252616px;}
.yf2_c01026{bottom:293.161827px;}
.yf1_c01026{bottom:295.708060px;}
.yef_c01026{bottom:299.291178px;}
.yf0_c01026{bottom:300.250500px;}
.yee_c01026{bottom:300.733717px;}
.yed_c01026{bottom:303.653713px;}
.yec_c01026{bottom:305.019939px;}
.yeb_c01026{bottom:308.393083px;}
.yea_c01026{bottom:310.718941px;}
.ye9_c01026{bottom:314.577333px;}
.ye8_c01026{bottom:315.540325px;}
.ye7_c01026{bottom:318.351969px;}
.ye6_c01026{bottom:321.169672px;}
.ye5_c01026{bottom:322.561875px;}
.ye4_c01026{bottom:327.270286px;}
.ye3_c01026{bottom:336.708000px;}
.ye2_c01026{bottom:341.191140px;}
.ye1_c01026{bottom:343.886400px;}
.ye0_c01026{bottom:346.492740px;}
.ydf_c01026{bottom:347.785560px;}
.yde_c01026{bottom:350.027580px;}
.ydd_c01026{bottom:352.184100px;}
.ydc_c01026{bottom:357.009120px;}
.ydb_c01026{bottom:358.358040px;}
.yda_c01026{bottom:361.822500px;}
.yd9_c01026{bottom:371.823456px;}
.yd8_c01026{bottom:374.747784px;}
.yd7_c01026{bottom:376.214898px;}
.yd6_c01026{bottom:381.605976px;}
.yd5_c01026{bottom:383.996760px;}
.yd4_c01026{bottom:385.470012px;}
.yd3_c01026{bottom:388.882542px;}
.yd2_c01026{bottom:390.309396px;}
.yd1_c01026{bottom:395.668002px;}
.yd0_c01026{bottom:398.506530px;}
.ycf_c01026{bottom:400.423500px;}
.yce_c01026{bottom:412.950288px;}
.ycd_c01026{bottom:414.586380px;}
.ycc_c01026{bottom:417.374994px;}
.ycb_c01026{bottom:419.719134px;}
.yca_c01026{bottom:423.278922px;}
.yc9_c01026{bottom:425.308404px;}
.yc8_c01026{bottom:427.643904px;}
.yc7_c01026{bottom:430.806792px;}
.yc6_c01026{bottom:431.962716px;}
.yc5_c01026{bottom:433.906500px;}
.yc4_c01026{bottom:444.682230px;}
.yc3_c01026{bottom:448.006299px;}
.yc2_c01026{bottom:449.845584px;}
.yc1_c01026{bottom:452.648391px;}
.yc0_c01026{bottom:454.034958px;}
.ybf_c01026{bottom:455.845830px;}
.ybe_c01026{bottom:460.005909px;}
.ybd_c01026{bottom:461.383908px;}
.ybc_c01026{bottom:463.279830px;}
.ybb_c01026{bottom:467.379492px;}
.yba_c01026{bottom:469.203153px;}
.yb9_c01026{bottom:470.625000px;}
.yb8_c01026{bottom:480.641088px;}
.yb7_c01026{bottom:484.995290px;}
.yb6_c01026{bottom:486.946479px;}
.yb5_c01026{bottom:491.720769px;}
.yb4_c01026{bottom:495.930168px;}
.yb3_c01026{bottom:497.817890px;}
.yb2_c01026{bottom:499.253595px;}
.yb1_c01026{bottom:502.065601px;}
.yb0_c01026{bottom:503.478216px;}
.yaf_c01026{bottom:504.922500px;}
.yae_c01026{bottom:539.862000px;}
.yad_c01026{bottom:554.434043px;}
.yac_c01026{bottom:557.734017px;}
.yab_c01026{bottom:559.406010px;}
.yaa_c01026{bottom:560.666082px;}
.ya9_c01026{bottom:565.097147px;}
.ya8_c01026{bottom:566.326194px;}
.ya7_c01026{bottom:567.534873px;}
.ya6_c01026{bottom:569.995188px;}
.ya5_c01026{bottom:571.214634px;}
.ya4_c01026{bottom:576.011000px;}
.ya3_c01026{bottom:577.688931px;}
.ya2_c01026{bottom:578.902050px;}
.ya1_c01026{bottom:591.972078px;}
.ya0_c01026{bottom:593.680313px;}
.y9f_c01026{bottom:594.894542px;}
.y9e_c01026{bottom:596.151672px;}
.y9d_c01026{bottom:598.215606px;}
.y9c_c01026{bottom:599.762280px;}
.y9b_c01026{bottom:601.031232px;}
.y9a_c01026{bottom:603.484887px;}
.y99_c01026{bottom:604.683965px;}
.y98_c01026{bottom:609.600099px;}
.y97_c01026{bottom:613.546760px;}
.y96_c01026{bottom:614.805000px;}
.y95_c01026{bottom:625.813004px;}
.y94_c01026{bottom:628.751186px;}
.y93_c01026{bottom:630.197241px;}
.y92_c01026{bottom:631.284660px;}
.y91_c01026{bottom:634.530026px;}
.y90_c01026{bottom:635.644287px;}
.y8f_c01026{bottom:636.737565px;}
.y8e_c01026{bottom:639.619679px;}
.y8d_c01026{bottom:641.839041px;}
.y8c_c01026{bottom:644.706135px;}
.y8b_c01026{bottom:646.867988px;}
.y8a_c01026{bottom:661.406237px;}
.y89_c01026{bottom:662.591532px;}
.y88_c01026{bottom:663.750624px;}
.y87_c01026{bottom:665.340935px;}
.y86_c01026{bottom:666.126110px;}
.y85_c01026{bottom:670.773894px;}
.y84_c01026{bottom:674.584608px;}
.y83_c01026{bottom:678.442568px;}
.y82_c01026{bottom:683.043293px;}
.y81_c01026{bottom:684.950184px;}
.y80_c01026{bottom:697.183658px;}
.y7f_c01026{bottom:698.333582px;}
.y7e_c01026{bottom:700.602704px;}
.y7d_c01026{bottom:703.631618px;}
.y7c_c01026{bottom:704.736912px;}
.y7b_c01026{bottom:705.862260px;}
.y7a_c01026{bottom:707.369045px;}
.y79_c01026{bottom:709.595874px;}
.y78_c01026{bottom:710.675198px;}
.y77_c01026{bottom:713.341113px;}
.y76_c01026{bottom:715.176974px;}
.y75_c01026{bottom:716.286918px;}
.y74_c01026{bottom:717.370020px;}
.y73_c01026{bottom:733.546773px;}
.y72_c01026{bottom:735.208844px;}
.y71_c01026{bottom:738.204744px;}
.y70_c01026{bottom:741.169304px;}
.y6f_c01026{bottom:741.823472px;}
.y6e_c01026{bottom:743.796403px;}
.y6d_c01026{bottom:744.497571px;}
.y6c_c01026{bottom:747.115616px;}
.y6b_c01026{bottom:748.397238px;}
.y6a_c01026{bottom:751.671450px;}
.y69_c01026{bottom:753.021078px;}
.y68_c01026{bottom:769.449723px;}
.y67_c01026{bottom:770.866439px;}
.y66_c01026{bottom:773.236079px;}
.y65_c01026{bottom:778.678904px;}
.y64_c01026{bottom:780.731693px;}
.y63_c01026{bottom:782.128273px;}
.y62_c01026{bottom:782.823169px;}
.y61_c01026{bottom:785.537375px;}
.y60_c01026{bottom:786.868344px;}
.y5f_c01026{bottom:787.872000px;}
.y5e_c01026{bottom:803.875809px;}
.y5d_c01026{bottom:807.867687px;}
.y5c_c01026{bottom:810.071972px;}
.y5b_c01026{bottom:812.622360px;}
.y5a_c01026{bottom:814.086026px;}
.y59_c01026{bottom:817.676855px;}
.y58_c01026{bottom:819.538302px;}
.y57_c01026{bottom:821.338320px;}
.y56_c01026{bottom:824.931228px;}
.y55_c01026{bottom:839.308746px;}
.y54_c01026{bottom:842.681847px;}
.y53_c01026{bottom:844.762071px;}
.y52_c01026{bottom:847.199073px;}
.y51_c01026{bottom:848.194136px;}
.y50_c01026{bottom:850.911145px;}
.y4f_c01026{bottom:852.616871px;}
.y4e_c01026{bottom:856.344833px;}
.y4d_c01026{bottom:858.730282px;}
.y4c_c01026{bottom:859.740393px;}
.y4b_c01026{bottom:877.444158px;}
.y4a_c01026{bottom:881.689971px;}
.y49_c01026{bottom:882.751499px;}
.y48_c01026{bottom:885.961857px;}
.y47_c01026{bottom:887.691297px;}
.y46_c01026{bottom:888.736737px;}
.y45_c01026{bottom:889.485258px;}
.y44_c01026{bottom:892.608969px;}
.y43_c01026{bottom:893.663319px;}
.y42_c01026{bottom:896.082501px;}
.y41_c01026{bottom:897.524180px;}
.y40_c01026{bottom:911.500113px;}
.y3f_c01026{bottom:912.935455px;}
.y3e_c01026{bottom:914.682963px;}
.y3d_c01026{bottom:915.798729px;}
.y3c_c01026{bottom:916.835556px;}
.y3b_c01026{bottom:917.584374px;}
.y3a_c01026{bottom:919.694163px;}
.y39_c01026{bottom:921.755257px;}
.y38_c01026{bottom:922.843155px;}
.y37_c01026{bottom:925.973499px;}
.y36_c01026{bottom:929.144024px;}
.y35_c01026{bottom:931.258763px;}
.y34_c01026{bottom:945.746715px;}
.y33_c01026{bottom:949.065888px;}
.y32_c01026{bottom:950.539354px;}
.y31_c01026{bottom:953.097762px;}
.y30_c01026{bottom:954.548409px;}
.y2f_c01026{bottom:957.081572px;}
.y2e_c01026{bottom:958.170918px;}
.y2d_c01026{bottom:959.264175px;}
.y2c_c01026{bottom:962.119979px;}
.y2b_c01026{bottom:963.233432px;}
.y2a_c01026{bottom:966.110669px;}
.y29_c01026{bottom:967.152000px;}
.y28_c01026{bottom:981.950666px;}
.y27_c01026{bottom:982.991988px;}
.y26_c01026{bottom:984.046608px;}
.y25_c01026{bottom:987.246243px;}
.y24_c01026{bottom:990.412533px;}
.y23_c01026{bottom:991.475901px;}
.y22_c01026{bottom:995.357947px;}
.y21_c01026{bottom:998.868704px;}
.y20_c01026{bottom:1001.996222px;}
.y1f_c01026{bottom:1010.906964px;}
.y1e_c01026{bottom:1011.770802px;}
.y1d_c01026{bottom:1014.535764px;}
.y1c_c01026{bottom:1018.127142px;}
.y1b_c01026{bottom:1019.693844px;}
.y1a_c01026{bottom:1020.879954px;}
.y19_c01026{bottom:1025.254278px;}
.y18_c01026{bottom:1026.422730px;}
.y17_c01026{bottom:1027.638000px;}
.y10_c01026{bottom:1096.568767px;}
.y16_c01026{bottom:1099.819242px;}
.y15_c01026{bottom:1100.213045px;}
.y14_c01026{bottom:1100.534135px;}
.y13_c01026{bottom:1100.962640px;}
.yf_c01026{bottom:1101.247620px;}
.y12_c01026{bottom:1101.261365px;}
.y11_c01026{bottom:1102.144467px;}
.ye_c01026{bottom:1104.498420px;}
.yd_c01026{bottom:1105.695000px;}
.yc_c01026{bottom:1106.993160px;}
.yb_c01026{bottom:1112.753580px;}
.ya_c01026{bottom:1117.551000px;}
.y9_c01026{bottom:1184.073000px;}
.y8_c01026{bottom:1224.046500px;}
.y7_c01026{bottom:1232.270175px;}
.y6_c01026{bottom:1240.878825px;}
.y5_c01026{bottom:1242.506250px;}
.y4_c01026{bottom:1243.404750px;}
.y3_c01026{bottom:1244.470912px;}
.y2_c01026{bottom:1244.808300px;}
.y1_c01026{bottom:1245.780000px;}
.h3_c01026{height:18.000000px;}
.h2_c01026{height:18.005624px;}
.h6_c01026{height:29.988388px;}
.hf_c01026{height:60.000000px;}
.ha_c01026{height:65.969963px;}
.h13_c01026{height:65.986832px;}
.h9_c01026{height:71.967233px;}
.h7_c01026{height:71.974688px;}
.h5_c01026{height:71.985635px;}
.h15_c01026{height:72.000000px;}
.hb_c01026{height:72.034588px;}
.h8_c01026{height:77.964502px;}
.hd_c01026{height:77.975426px;}
.h4_c01026{height:78.000000px;}
.h11_c01026{height:83.990129px;}
.he_c01026{height:89.971646px;}
.h10_c01026{height:89.993250px;}
.hc_c01026{height:90.043235px;}
.h14_c01026{height:101.973732px;}
.h12_c01026{height:113.996409px;}
.h0_c01026{height:1246.320000px;}
.h1_c01026{height:1246.500000px;}
.w0_c01026{width:896.100000px;}
.w1_c01026{width:896.250000px;}
.x0_c01026{left:0.000000px;}
.xae_c01026{left:110.973732px;}
.xa2_c01026{left:112.810500px;}
.x94_c01026{left:114.646500px;}
.x87_c01026{left:117.689190px;}
.x78_c01026{left:119.576768px;}
.x6f_c01026{left:120.605670px;}
.x5b_c01026{left:122.541701px;}
.x4a_c01026{left:124.874901px;}
.x41_c01026{left:126.054756px;}
.x2f_c01026{left:127.616153px;}
.x1e_c01026{left:130.868528px;}
.x95_c01026{left:148.466147px;}
.x88_c01026{left:150.443403px;}
.x7f_c01026{left:153.183493px;}
.x66_c01026{left:154.795001px;}
.x52_c01026{left:156.436500px;}
.x42_c01026{left:158.586323px;}
.x25_c01026{left:162.379445px;}
.x5c_c01026{left:167.531096px;}
.x9e_c01026{left:169.303506px;}
.x3a_c01026{left:171.836262px;}
.x70_c01026{left:175.095428px;}
.x79_c01026{left:185.100222px;}
.x67_c01026{left:187.451478px;}
.x96_c01026{left:191.843226px;}
.x30_c01026{left:193.633250px;}
.x89_c01026{left:195.747553px;}
.x53_c01026{left:199.371000px;}
.x9f_c01026{left:201.380397px;}
.xbb_c01026{left:219.240000px;}
.xa3_c01026{left:220.781921px;}
.x8e_c01026{left:225.457500px;}
.x1f_c01026{left:228.482869px;}
.xb6_c01026{left:230.416206px;}
.x4b_c01026{left:233.642025px;}
.x43_c01026{left:235.477958px;}
.x15_c01026{left:239.274000px;}
.x68_c01026{left:241.441956px;}
.x3b_c01026{left:247.342158px;}
.x26_c01026{left:249.481256px;}
.xaf_c01026{left:252.690816px;}
.x80_c01026{left:259.743327px;}
.xb7_c01026{left:262.710987px;}
.xbc_c01026{left:264.060000px;}
.x7a_c01026{left:271.968828px;}
.x16_c01026{left:272.997742px;}
.x5d_c01026{left:276.686490px;}
.x3c_c01026{left:280.259298px;}
.x27_c01026{left:283.188514px;}
.x54_c01026{left:286.926000px;}
.x4c_c01026{left:288.133479px;}
.x97_c01026{left:289.356615px;}
.x31_c01026{left:292.610943px;}
.xb8_c01026{left:296.414445px;}
.x17_c01026{left:305.422285px;}
.x71_c01026{left:306.554153px;}
.x55_c01026{left:309.342000px;}
.xe_c01026{left:312.174000px;}
.xb_c01026{left:313.482000px;}
.xb0_c01026{left:318.152421px;}
.x5e_c01026{left:319.385292px;}
.x8a_c01026{left:325.249422px;}
.x98_c01026{left:334.452474px;}
.x11_c01026{left:338.600179px;}
.xa4_c01026{left:342.446634px;}
.x4d_c01026{left:344.484572px;}
.xf_c01026{left:346.327812px;}
.x69_c01026{left:351.600726px;}
.x56_c01026{left:354.393000px;}
.x44_c01026{left:355.599644px;}
.x8f_c01026{left:357.160665px;}
.x8b_c01026{left:358.174464px;}
.x12_c01026{left:359.357401px;}
.x99_c01026{left:367.229165px;}
.x13_c01026{left:368.522227px;}
.x28_c01026{left:369.641475px;}
.xa5_c01026{left:374.842706px;}
.x3d_c01026{left:377.774406px;}
.x14_c01026{left:379.762476px;}
.xb1_c01026{left:383.462678px;}
.x32_c01026{left:390.326850px;}
.x81_c01026{left:392.478959px;}
.x3e_c01026{left:401.160789px;}
.x29_c01026{left:402.737346px;}
.x5f_c01026{left:406.647489px;}
.x45_c01026{left:410.551754px;}
.x9_c01026{left:413.910000px;}
.xb9_c01026{left:415.975344px;}
.x6a_c01026{left:417.089135px;}
.x57_c01026{left:420.612000px;}
.x33_c01026{left:424.304978px;}
.x18_c01026{left:426.809776px;}
.x60_c01026{left:430.040733px;}
.xc_c01026{left:433.297565px;}
.x90_c01026{left:434.372376px;}
.xa_c01026{left:436.050000px;}
.x8_c01026{left:438.480000px;}
.x4e_c01026{left:453.188759px;}
.x8c_c01026{left:457.237302px;}
.x19_c01026{left:459.724329px;}
.x6b_c01026{left:461.384496px;}
.xaa_c01026{left:463.422077px;}
.x9a_c01026{left:466.179615px;}
.xa6_c01026{left:485.772165px;}
.x34_c01026{left:488.652696px;}
.x1_c01026{left:490.846500px;}
.x20_c01026{left:492.412676px;}
.x7b_c01026{left:493.455611px;}
.x6c_c01026{left:494.489427px;}
.x61_c01026{left:495.814779px;}
.x46_c01026{left:498.116399px;}
.x1a_c01026{left:503.200309px;}
.x9b_c01026{left:509.252499px;}
.x2a_c01026{left:512.400573px;}
.x62_c01026{left:517.643477px;}
.x72_c01026{left:525.645497px;}
.x6d_c01026{left:526.995905px;}
.x2_c01026{left:529.714500px;}
.x91_c01026{left:532.167483px;}
.xa7_c01026{left:540.053829px;}
.x3_c01026{left:543.210000px;}
.xb2_c01026{left:549.520014px;}
.x35_c01026{left:554.519943px;}
.x2b_c01026{left:556.315614px;}
.xab_c01026{left:560.803598px;}
.x82_c01026{left:567.124638px;}
.x10_c01026{left:572.662751px;}
.x4f_c01026{left:574.705121px;}
.xd_c01026{left:577.164054px;}
.x4_c01026{left:585.856500px;}
.x3f_c01026{left:588.026930px;}
.x21_c01026{left:591.269490px;}
.x58_c01026{left:596.187000px;}
.x1b_c01026{left:602.861049px;}
.x47_c01026{left:608.735502px;}
.x36_c01026{left:610.301988px;}
.x63_c01026{left:616.471046px;}
.x5_c01026{left:621.796500px;}
.x83_c01026{left:622.850856px;}
.x7c_c01026{left:624.746973px;}
.xac_c01026{left:628.117716px;}
.x2c_c01026{left:633.765587px;}
.x50_c01026{left:641.434824px;}
.x8d_c01026{left:644.082270px;}
.x37_c01026{left:645.123771px;}
.x7_c01026{left:646.699312px;}
.xa0_c01026{left:651.496830px;}
.x9c_c01026{left:652.648459px;}
.x84_c01026{left:656.793379px;}
.x73_c01026{left:658.428536px;}
.xb3_c01026{left:659.639072px;}
.xa8_c01026{left:662.455804px;}
.x7d_c01026{left:668.584776px;}
.x59_c01026{left:672.627000px;}
.x48_c01026{left:675.751329px;}
.x2d_c01026{left:678.371436px;}
.x1c_c01026{left:679.588745px;}
.x74_c01026{left:680.850746px;}
.x6e_c01026{left:682.837443px;}
.x6_c01026{left:686.893500px;}
.x92_c01026{left:688.417576px;}
.x85_c01026{left:689.577562px;}
.x22_c01026{left:691.134903px;}
.xa9_c01026{left:695.765961px;}
.xa1_c01026{left:696.898383px;}
.x38_c01026{left:699.660464px;}
.x1d_c01026{left:703.560249px;}
.x64_c01026{left:716.309615px;}
.x5a_c01026{left:718.327500px;}
.x23_c01026{left:724.064697px;}
.x75_c01026{left:726.290619px;}
.xb4_c01026{left:727.468007px;}
.x9d_c01026{left:731.713815px;}
.x86_c01026{left:735.699894px;}
.xad_c01026{left:740.084137px;}
.x39_c01026{left:744.474591px;}
.xba_c01026{left:748.864731px;}
.x40_c01026{left:753.690051px;}
.x24_c01026{left:756.583848px;}
.x7e_c01026{left:757.601243px;}
.x76_c01026{left:759.418527px;}
.xb5_c01026{left:760.983933px;}
.x51_c01026{left:762.279858px;}
.x65_c01026{left:771.716835px;}
.x2e_c01026{left:778.851855px;}
.x49_c01026{left:784.449207px;}
.x93_c01026{left:789.576816px;}
.x77_c01026{left:793.294842px;}
.xbe_c01026{left:854.550000px;}
.xbd_c01026{left:857.520000px;}
.xbf_c01026{left:866.700000px;}
@media print{
.v0_c01026{vertical-align:0.000000pt;}
.ls0_c01026{letter-spacing:0.000000pt;}
.ws0_c01026{word-spacing:0.000000pt;}
.fs1_c01026{font-size:16.000000pt;}
.fs0_c01026{font-size:16.004999pt;}
.fs4_c01026{font-size:26.656345pt;}
.fsd_c01026{font-size:53.333333pt;}
.fs8_c01026{font-size:58.639967pt;}
.fs11_c01026{font-size:58.654961pt;}
.fs7_c01026{font-size:63.970873pt;}
.fs5_c01026{font-size:63.977500pt;}
.fs3_c01026{font-size:63.987231pt;}
.fs13_c01026{font-size:64.000000pt;}
.fs9_c01026{font-size:64.030745pt;}
.fs6_c01026{font-size:69.301779pt;}
.fsb_c01026{font-size:69.311490pt;}
.fs2_c01026{font-size:69.333333pt;}
.fsf_c01026{font-size:74.657893pt;}
.fsc_c01026{font-size:79.974796pt;}
.fse_c01026{font-size:79.994000pt;}
.fsa_c01026{font-size:80.038431pt;}
.fs12_c01026{font-size:90.643317pt;}
.fs10_c01026{font-size:101.330141pt;}
.y0_c01026{bottom:0.000000pt;}
.yfc_c01026{bottom:129.360000pt;}
.yfb_c01026{bottom:193.438667pt;}
.yfa_c01026{bottom:225.265333pt;}
.yf9_c01026{bottom:233.344057pt;}
.yf8_c01026{bottom:236.847163pt;}
.yf7_c01026{bottom:243.240639pt;}
.yf6_c01026{bottom:245.028339pt;}
.yf5_c01026{bottom:250.837243pt;}
.yf4_c01026{bottom:257.120113pt;}
.yf3_c01026{bottom:258.891215pt;}
.yf2_c01026{bottom:260.588291pt;}
.yf1_c01026{bottom:262.851609pt;}
.yef_c01026{bottom:266.036603pt;}
.yf0_c01026{bottom:266.889333pt;}
.yee_c01026{bottom:267.318860pt;}
.yed_c01026{bottom:269.914412pt;}
.yec_c01026{bottom:271.128835pt;}
.yeb_c01026{bottom:274.127185pt;}
.yea_c01026{bottom:276.194615pt;}
.ye9_c01026{bottom:279.624296pt;}
.ye8_c01026{bottom:280.480289pt;}
.ye7_c01026{bottom:282.979528pt;}
.ye6_c01026{bottom:285.484153pt;}
.ye5_c01026{bottom:286.721667pt;}
.ye4_c01026{bottom:290.906921pt;}
.ye3_c01026{bottom:299.296000pt;}
.ye2_c01026{bottom:303.281013pt;}
.ye1_c01026{bottom:305.676800pt;}
.ye0_c01026{bottom:307.993547pt;}
.ydf_c01026{bottom:309.142720pt;}
.yde_c01026{bottom:311.135627pt;}
.ydd_c01026{bottom:313.052533pt;}
.ydc_c01026{bottom:317.341440pt;}
.ydb_c01026{bottom:318.540480pt;}
.yda_c01026{bottom:321.620000pt;}
.yd9_c01026{bottom:330.509739pt;}
.yd8_c01026{bottom:333.109141pt;}
.yd7_c01026{bottom:334.413243pt;}
.yd6_c01026{bottom:339.205312pt;}
.yd5_c01026{bottom:341.330453pt;}
.yd4_c01026{bottom:342.640011pt;}
.yd3_c01026{bottom:345.673371pt;}
.yd2_c01026{bottom:346.941685pt;}
.yd1_c01026{bottom:351.704891pt;}
.yd0_c01026{bottom:354.228027pt;}
.ycf_c01026{bottom:355.932000pt;}
.yce_c01026{bottom:367.066923pt;}
.ycd_c01026{bottom:368.521227pt;}
.ycc_c01026{bottom:370.999995pt;}
.ycb_c01026{bottom:373.083675pt;}
.yca_c01026{bottom:376.247931pt;}
.yc9_c01026{bottom:378.051915pt;}
.yc8_c01026{bottom:380.127915pt;}
.yc7_c01026{bottom:382.939371pt;}
.yc6_c01026{bottom:383.966859pt;}
.yc5_c01026{bottom:385.694667pt;}
.yc4_c01026{bottom:395.273093pt;}
.yc3_c01026{bottom:398.227821pt;}
.yc2_c01026{bottom:399.862741pt;}
.yc1_c01026{bottom:402.354125pt;}
.yc0_c01026{bottom:403.586629pt;}
.ybf_c01026{bottom:405.196293pt;}
.ybe_c01026{bottom:408.894141pt;}
.ybd_c01026{bottom:410.119029pt;}
.ybc_c01026{bottom:411.804293pt;}
.ybb_c01026{bottom:415.448437pt;}
.yba_c01026{bottom:417.069469pt;}
.yb9_c01026{bottom:418.333333pt;}
.yb8_c01026{bottom:427.236523pt;}
.yb7_c01026{bottom:431.106924pt;}
.yb6_c01026{bottom:432.841315pt;}
.yb5_c01026{bottom:437.085128pt;}
.yb4_c01026{bottom:440.826816pt;}
.yb3_c01026{bottom:442.504791pt;}
.yb2_c01026{bottom:443.780973pt;}
.yb1_c01026{bottom:446.280535pt;}
.yb0_c01026{bottom:447.536192pt;}
.yaf_c01026{bottom:448.820000pt;}
.yae_c01026{bottom:479.877333pt;}
.yad_c01026{bottom:492.830260pt;}
.yac_c01026{bottom:495.763571pt;}
.yab_c01026{bottom:497.249787pt;}
.yaa_c01026{bottom:498.369851pt;}
.ya9_c01026{bottom:502.308575pt;}
.ya8_c01026{bottom:503.401061pt;}
.ya7_c01026{bottom:504.475443pt;}
.ya6_c01026{bottom:506.662389pt;}
.ya5_c01026{bottom:507.746341pt;}
.ya4_c01026{bottom:512.009777pt;}
.ya3_c01026{bottom:513.501272pt;}
.ya2_c01026{bottom:514.579600pt;}
.ya1_c01026{bottom:526.197403pt;}
.ya0_c01026{bottom:527.715833pt;}
.y9f_c01026{bottom:528.795148pt;}
.y9e_c01026{bottom:529.912597pt;}
.y9d_c01026{bottom:531.747205pt;}
.y9c_c01026{bottom:533.122027pt;}
.y9b_c01026{bottom:534.249984pt;}
.y9a_c01026{bottom:536.431011pt;}
.y99_c01026{bottom:537.496857pt;}
.y98_c01026{bottom:541.866755pt;}
.y97_c01026{bottom:545.374897pt;}
.y96_c01026{bottom:546.493333pt;}
.y95_c01026{bottom:556.278225pt;}
.y94_c01026{bottom:558.889943pt;}
.y93_c01026{bottom:560.175325pt;}
.y92_c01026{bottom:561.141920pt;}
.y91_c01026{bottom:564.026689pt;}
.y90_c01026{bottom:565.017144pt;}
.y8f_c01026{bottom:565.988947pt;}
.y8e_c01026{bottom:568.550825pt;}
.y8d_c01026{bottom:570.523592pt;}
.y8c_c01026{bottom:573.072120pt;}
.y8b_c01026{bottom:574.993767pt;}
.y8a_c01026{bottom:587.916655pt;}
.y89_c01026{bottom:588.970251pt;}
.y88_c01026{bottom:590.000555pt;}
.y87_c01026{bottom:591.414164pt;}
.y86_c01026{bottom:592.112097pt;}
.y85_c01026{bottom:596.243461pt;}
.y84_c01026{bottom:599.630763pt;}
.y83_c01026{bottom:603.060060pt;}
.y82_c01026{bottom:607.149593pt;}
.y81_c01026{bottom:608.844608pt;}
.y80_c01026{bottom:619.718807pt;}
.y7f_c01026{bottom:620.740961pt;}
.y7e_c01026{bottom:622.757959pt;}
.y7d_c01026{bottom:625.450327pt;}
.y7c_c01026{bottom:626.432811pt;}
.y7b_c01026{bottom:627.433120pt;}
.y7a_c01026{bottom:628.772484pt;}
.y79_c01026{bottom:630.751888pt;}
.y78_c01026{bottom:631.711287pt;}
.y77_c01026{bottom:634.080989pt;}
.y76_c01026{bottom:635.712865pt;}
.y75_c01026{bottom:636.699483pt;}
.y74_c01026{bottom:637.662240pt;}
.y73_c01026{bottom:652.041576pt;}
.y72_c01026{bottom:653.518972pt;}
.y71_c01026{bottom:656.181995pt;}
.y70_c01026{bottom:658.817159pt;}
.y6f_c01026{bottom:659.398641pt;}
.y6e_c01026{bottom:661.152359pt;}
.y6d_c01026{bottom:661.775619pt;}
.y6c_c01026{bottom:664.102769pt;}
.y6b_c01026{bottom:665.241989pt;}
.y6a_c01026{bottom:668.152400pt;}
.y69_c01026{bottom:669.352069pt;}
.y68_c01026{bottom:683.955309pt;}
.y67_c01026{bottom:685.214612pt;}
.y66_c01026{bottom:687.320959pt;}
.y65_c01026{bottom:692.159025pt;}
.y64_c01026{bottom:693.983727pt;}
.y63_c01026{bottom:695.225132pt;}
.y62_c01026{bottom:695.842817pt;}
.y61_c01026{bottom:698.255444pt;}
.y60_c01026{bottom:699.438528pt;}
.y5f_c01026{bottom:700.330667pt;}
.y5e_c01026{bottom:714.556275pt;}
.y5d_c01026{bottom:718.104611pt;}
.y5c_c01026{bottom:720.063975pt;}
.y5b_c01026{bottom:722.330987pt;}
.y5a_c01026{bottom:723.632023pt;}
.y59_c01026{bottom:726.823871pt;}
.y58_c01026{bottom:728.478491pt;}
.y57_c01026{bottom:730.078507pt;}
.y56_c01026{bottom:733.272203pt;}
.y55_c01026{bottom:746.052219pt;}
.y54_c01026{bottom:749.050531pt;}
.y53_c01026{bottom:750.899619pt;}
.y52_c01026{bottom:753.065843pt;}
.y51_c01026{bottom:753.950343pt;}
.y50_c01026{bottom:756.365463pt;}
.y4f_c01026{bottom:757.881663pt;}
.y4e_c01026{bottom:761.195407pt;}
.y4d_c01026{bottom:763.315807pt;}
.y4c_c01026{bottom:764.213683pt;}
.y4b_c01026{bottom:779.950363pt;}
.y4a_c01026{bottom:783.724419pt;}
.y49_c01026{bottom:784.667999pt;}
.y48_c01026{bottom:787.521651pt;}
.y47_c01026{bottom:789.058931pt;}
.y46_c01026{bottom:789.988211pt;}
.y45_c01026{bottom:790.653563pt;}
.y44_c01026{bottom:793.430195pt;}
.y43_c01026{bottom:794.367395pt;}
.y42_c01026{bottom:796.517779pt;}
.y41_c01026{bottom:797.799271pt;}
.y40_c01026{bottom:810.222323pt;}
.y3f_c01026{bottom:811.498183pt;}
.y3e_c01026{bottom:813.051523pt;}
.y3d_c01026{bottom:814.043315pt;}
.y3c_c01026{bottom:814.964939pt;}
.y3b_c01026{bottom:815.630555pt;}
.y3a_c01026{bottom:817.505923pt;}
.y39_c01026{bottom:819.338007pt;}
.y38_c01026{bottom:820.305027pt;}
.y37_c01026{bottom:823.087555pt;}
.y36_c01026{bottom:825.905799pt;}
.y35_c01026{bottom:827.785567pt;}
.y34_c01026{bottom:840.663747pt;}
.y33_c01026{bottom:843.614123pt;}
.y32_c01026{bottom:844.923871pt;}
.y31_c01026{bottom:847.198011pt;}
.y30_c01026{bottom:848.487475pt;}
.y2f_c01026{bottom:850.739175pt;}
.y2e_c01026{bottom:851.707483pt;}
.y2d_c01026{bottom:852.679267pt;}
.y2c_c01026{bottom:855.217759pt;}
.y2b_c01026{bottom:856.207495pt;}
.y2a_c01026{bottom:858.765039pt;}
.y29_c01026{bottom:859.690667pt;}
.y28_c01026{bottom:872.845036pt;}
.y27_c01026{bottom:873.770656pt;}
.y26_c01026{bottom:874.708096pt;}
.y25_c01026{bottom:877.552216pt;}
.y24_c01026{bottom:880.366696pt;}
.y23_c01026{bottom:881.311912pt;}
.y22_c01026{bottom:884.762620pt;}
.y21_c01026{bottom:887.883292pt;}
.y20_c01026{bottom:890.663308pt;}
.y1f_c01026{bottom:898.583968pt;}
.y1e_c01026{bottom:899.351824pt;}
.y1d_c01026{bottom:901.809568pt;}
.y1c_c01026{bottom:905.001904pt;}
.y1b_c01026{bottom:906.394528pt;}
.y1a_c01026{bottom:907.448848pt;}
.y19_c01026{bottom:911.337136pt;}
.y18_c01026{bottom:912.375760pt;}
.y17_c01026{bottom:913.456000pt;}
.y10_c01026{bottom:974.727793pt;}
.y16_c01026{bottom:977.617104pt;}
.y15_c01026{bottom:977.967151pt;}
.y14_c01026{bottom:978.252564pt;}
.y13_c01026{bottom:978.633457pt;}
.yf_c01026{bottom:978.886773pt;}
.y12_c01026{bottom:978.898991pt;}
.y11_c01026{bottom:979.683971pt;}
.ye_c01026{bottom:981.776373pt;}
.yd_c01026{bottom:982.840000pt;}
.yc_c01026{bottom:983.993920pt;}
.yb_c01026{bottom:989.114293pt;}
.ya_c01026{bottom:993.378667pt;}
.y9_c01026{bottom:1052.509333pt;}
.y8_c01026{bottom:1088.041333pt;}
.y7_c01026{bottom:1095.351267pt;}
.y6_c01026{bottom:1103.003400pt;}
.y5_c01026{bottom:1104.450000pt;}
.y4_c01026{bottom:1105.248667pt;}
.y3_c01026{bottom:1106.196367pt;}
.y2_c01026{bottom:1106.496267pt;}
.y1_c01026{bottom:1107.360000pt;}
.h3_c01026{height:16.000000pt;}
.h2_c01026{height:16.004999pt;}
.h6_c01026{height:26.656345pt;}
.hf_c01026{height:53.333333pt;}
.ha_c01026{height:58.639967pt;}
.h13_c01026{height:58.654961pt;}
.h9_c01026{height:63.970873pt;}
.h7_c01026{height:63.977500pt;}
.h5_c01026{height:63.987231pt;}
.h15_c01026{height:64.000000pt;}
.hb_c01026{height:64.030745pt;}
.h8_c01026{height:69.301779pt;}
.hd_c01026{height:69.311490pt;}
.h4_c01026{height:69.333333pt;}
.h11_c01026{height:74.657893pt;}
.he_c01026{height:79.974796pt;}
.h10_c01026{height:79.994000pt;}
.hc_c01026{height:80.038431pt;}
.h14_c01026{height:90.643317pt;}
.h12_c01026{height:101.330141pt;}
.h0_c01026{height:1107.840000pt;}
.h1_c01026{height:1108.000000pt;}
.w0_c01026{width:796.533333pt;}
.w1_c01026{width:796.666667pt;}
.x0_c01026{left:0.000000pt;}
.xae_c01026{left:98.643317pt;}
.xa2_c01026{left:100.276000pt;}
.x94_c01026{left:101.908000pt;}
.x87_c01026{left:104.612613pt;}
.x78_c01026{left:106.290460pt;}
.x6f_c01026{left:107.205040pt;}
.x5b_c01026{left:108.925956pt;}
.x4a_c01026{left:110.999912pt;}
.x41_c01026{left:112.048672pt;}
.x2f_c01026{left:113.436580pt;}
.x1e_c01026{left:116.327580pt;}
.x95_c01026{left:131.969908pt;}
.x88_c01026{left:133.727469pt;}
.x7f_c01026{left:136.163105pt;}
.x66_c01026{left:137.595556pt;}
.x52_c01026{left:139.054667pt;}
.x42_c01026{left:140.965620pt;}
.x25_c01026{left:144.337284pt;}
.x5c_c01026{left:148.916529pt;}
.x9e_c01026{left:150.492005pt;}
.x3a_c01026{left:152.743344pt;}
.x70_c01026{left:155.640380pt;}
.x79_c01026{left:164.533531pt;}
.x67_c01026{left:166.623536pt;}
.x96_c01026{left:170.527312pt;}
.x30_c01026{left:172.118444pt;}
.x89_c01026{left:173.997825pt;}
.x53_c01026{left:177.218667pt;}
.x9f_c01026{left:179.004797pt;}
.xbb_c01026{left:194.880000pt;}
.xa3_c01026{left:196.250596pt;}
.x8e_c01026{left:200.406667pt;}
.x1f_c01026{left:203.095884pt;}
.xb6_c01026{left:204.814405pt;}
.x4b_c01026{left:207.681800pt;}
.x43_c01026{left:209.313740pt;}
.x15_c01026{left:212.688000pt;}
.x68_c01026{left:214.615072pt;}
.x3b_c01026{left:219.859696pt;}
.x26_c01026{left:221.761116pt;}
.xaf_c01026{left:224.614059pt;}
.x80_c01026{left:230.882957pt;}
.xb7_c01026{left:233.520877pt;}
.xbc_c01026{left:234.720000pt;}
.x7a_c01026{left:241.750069pt;}
.x16_c01026{left:242.664660pt;}
.x5d_c01026{left:245.943547pt;}
.x3c_c01026{left:249.119376pt;}
.x27_c01026{left:251.723124pt;}
.x54_c01026{left:255.045333pt;}
.x4c_c01026{left:256.118648pt;}
.x97_c01026{left:257.205880pt;}
.x31_c01026{left:260.098616pt;}
.xb8_c01026{left:263.479507pt;}
.x17_c01026{left:271.486476pt;}
.x71_c01026{left:272.492580pt;}
.x55_c01026{left:274.970667pt;}
.xe_c01026{left:277.488000pt;}
.xb_c01026{left:278.650667pt;}
.xb0_c01026{left:282.802152pt;}
.x5e_c01026{left:283.898037pt;}
.x8a_c01026{left:289.110597pt;}
.x98_c01026{left:297.291088pt;}
.x11_c01026{left:300.977937pt;}
.xa4_c01026{left:304.397008pt;}
.x4d_c01026{left:306.208508pt;}
.xf_c01026{left:307.846944pt;}
.x69_c01026{left:312.533979pt;}
.x56_c01026{left:315.016000pt;}
.x44_c01026{left:316.088572pt;}
.x8f_c01026{left:317.476147pt;}
.x8b_c01026{left:318.377301pt;}
.x12_c01026{left:319.428801pt;}
.x99_c01026{left:326.425924pt;}
.x13_c01026{left:327.575313pt;}
.x28_c01026{left:328.570200pt;}
.xa5_c01026{left:333.193516pt;}
.x3d_c01026{left:335.799472pt;}
.x14_c01026{left:337.566645pt;}
.xb1_c01026{left:340.855713pt;}
.x32_c01026{left:346.957200pt;}
.x81_c01026{left:348.870185pt;}
.x3e_c01026{left:356.587368pt;}
.x29_c01026{left:357.988752pt;}
.x5f_c01026{left:361.464435pt;}
.x45_c01026{left:364.934892pt;}
.x9_c01026{left:367.920000pt;}
.xb9_c01026{left:369.755861pt;}
.x6a_c01026{left:370.745897pt;}
.x57_c01026{left:373.877333pt;}
.x33_c01026{left:377.159980pt;}
.x18_c01026{left:379.386468pt;}
.x60_c01026{left:382.258429pt;}
.xc_c01026{left:385.153391pt;}
.x90_c01026{left:386.108779pt;}
.xa_c01026{left:387.600000pt;}
.x8_c01026{left:389.760000pt;}
.x4e_c01026{left:402.834452pt;}
.x8c_c01026{left:406.433157pt;}
.x19_c01026{left:408.643848pt;}
.x6b_c01026{left:410.119552pt;}
.xaa_c01026{left:411.930735pt;}
.x9a_c01026{left:414.381880pt;}
.xa6_c01026{left:431.797480pt;}
.x34_c01026{left:434.357952pt;}
.x1_c01026{left:436.308000pt;}
.x20_c01026{left:437.700156pt;}
.x7b_c01026{left:438.627209pt;}
.x6c_c01026{left:439.546157pt;}
.x61_c01026{left:440.724248pt;}
.x46_c01026{left:442.770132pt;}
.x1a_c01026{left:447.289164pt;}
.x9b_c01026{left:452.668888pt;}
.x2a_c01026{left:455.467176pt;}
.x62_c01026{left:460.127535pt;}
.x72_c01026{left:467.240441pt;}
.x6d_c01026{left:468.440804pt;}
.x2_c01026{left:470.857333pt;}
.x91_c01026{left:473.037763pt;}
.xa7_c01026{left:480.047848pt;}
.x3_c01026{left:482.853333pt;}
.xb2_c01026{left:488.462235pt;}
.x35_c01026{left:492.906616pt;}
.x2b_c01026{left:494.502768pt;}
.xab_c01026{left:498.492087pt;}
.x82_c01026{left:504.110789pt;}
.x10_c01026{left:509.033556pt;}
.x4f_c01026{left:510.848996pt;}
.xd_c01026{left:513.034715pt;}
.x4_c01026{left:520.761333pt;}
.x3f_c01026{left:522.690604pt;}
.x21_c01026{left:525.572880pt;}
.x58_c01026{left:529.944000pt;}
.x1b_c01026{left:535.876488pt;}
.x47_c01026{left:541.098224pt;}
.x36_c01026{left:542.490656pt;}
.x63_c01026{left:547.974263pt;}
.x5_c01026{left:552.708000pt;}
.x83_c01026{left:553.645205pt;}
.x7c_c01026{left:555.330643pt;}
.xac_c01026{left:558.326859pt;}
.x2c_c01026{left:563.347188pt;}
.x50_c01026{left:570.164288pt;}
.x8d_c01026{left:572.517573pt;}
.x37_c01026{left:573.443352pt;}
.x7_c01026{left:574.843833pt;}
.xa0_c01026{left:579.108293pt;}
.x9c_c01026{left:580.131964pt;}
.x84_c01026{left:583.816337pt;}
.x73_c01026{left:585.269809pt;}
.xb3_c01026{left:586.345841pt;}
.xa8_c01026{left:588.849604pt;}
.x7d_c01026{left:594.297579pt;}
.x59_c01026{left:597.890667pt;}
.x48_c01026{left:600.667848pt;}
.x2d_c01026{left:602.996832pt;}
.x1c_c01026{left:604.078884pt;}
.x74_c01026{left:605.200663pt;}
.x6e_c01026{left:606.966616pt;}
.x6_c01026{left:610.572000pt;}
.x92_c01026{left:611.926735pt;}
.x85_c01026{left:612.957833pt;}
.x22_c01026{left:614.342136pt;}
.xa9_c01026{left:618.458632pt;}
.xa1_c01026{left:619.465229pt;}
.x38_c01026{left:621.920412pt;}
.x1d_c01026{left:625.386888pt;}
.x64_c01026{left:636.719657pt;}
.x5a_c01026{left:638.513333pt;}
.x23_c01026{left:643.613064pt;}
.x75_c01026{left:645.591661pt;}
.xb4_c01026{left:646.638228pt;}
.x9d_c01026{left:650.412280pt;}
.x86_c01026{left:653.955461pt;}
.xad_c01026{left:657.852567pt;}
.x39_c01026{left:661.755192pt;}
.xba_c01026{left:665.657539pt;}
.x40_c01026{left:669.946712pt;}
.x24_c01026{left:672.518976pt;}
.x7e_c01026{left:673.423327pt;}
.x76_c01026{left:675.038691pt;}
.xb5_c01026{left:676.430163pt;}
.x51_c01026{left:677.582096pt;}
.x65_c01026{left:685.970520pt;}
.x2e_c01026{left:692.312760pt;}
.x49_c01026{left:697.288184pt;}
.x93_c01026{left:701.846059pt;}
.x77_c01026{left:705.150971pt;}
.xbe_c01026{left:759.600000pt;}
.xbd_c01026{left:762.240000pt;}
.xbf_c01026{left:770.400000pt;}
}





/* 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_c01027 {
    display:none;
  }
  .loading-indicator_c01027.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01027 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_c01027 { 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_c01027" -> "#page-container .classname_c01027")
 */
.pf_c01027 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01027 { /* 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_c01027.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01027 { /* 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_c01027 { /* 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_c01027 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01027 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01027 {overflow:visible;}
  }
}
.c_c01027 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01027 { /* 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_c01027:after { /* webkit #35443 */
  content: '';
}
.t_c01027:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01027 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 */
}
.__c01027 { /* 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_c01027 { /* info for Javascript */
  display:none;
}
.l_c01027 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01027 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01027 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01027: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_c01027 {
    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_c01027.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01027.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_c01027 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01027{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01027;src:url('chunks/assets/font_cfe63ee56e9e10a97d33a3db.woff2')format("woff");}.ff1_c01027{font-family:ff1_c01027;line-height:1.000000;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;}
.m11_c01027{transform:matrix(0.038802,0.000776,-0.004999,0.249950,0,0);-ms-transform:matrix(0.038802,0.000776,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.038802,0.000776,-0.004999,0.249950,0,0);}
.ma_c01027{transform:matrix(0.047426,0.000901,-0.004749,0.249955,0,0);-ms-transform:matrix(0.047426,0.000901,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.047426,0.000901,-0.004749,0.249955,0,0);}
.m2e_c01027{transform:matrix(0.048826,0.000928,-0.004749,0.249955,0,0);-ms-transform:matrix(0.048826,0.000928,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.048826,0.000928,-0.004749,0.249955,0,0);}
.mc_c01027{transform:matrix(0.061834,0.001175,-0.004749,0.249955,0,0);-ms-transform:matrix(0.061834,0.001175,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.061834,0.001175,-0.004749,0.249955,0,0);}
.md_c01027{transform:matrix(0.063629,0.001209,-0.004749,0.249955,0,0);-ms-transform:matrix(0.063629,0.001209,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.063629,0.001209,-0.004749,0.249955,0,0);}
.mb_c01027{transform:matrix(0.074986,0.001425,-0.004749,0.249955,0,0);-ms-transform:matrix(0.074986,0.001425,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.074986,0.001425,-0.004749,0.249955,0,0);}
.m3_c01027{transform:matrix(0.100607,0.001912,-0.004749,0.249955,0,0);-ms-transform:matrix(0.100607,0.001912,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.100607,0.001912,-0.004749,0.249955,0,0);}
.me_c01027{transform:matrix(0.117134,0.002226,-0.004749,0.249955,0,0);-ms-transform:matrix(0.117134,0.002226,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.117134,0.002226,-0.004749,0.249955,0,0);}
.m25_c01027{transform:matrix(0.118214,0.002246,-0.004749,0.249955,0,0);-ms-transform:matrix(0.118214,0.002246,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.118214,0.002246,-0.004749,0.249955,0,0);}
.m9_c01027{transform:matrix(0.120393,0.002287,-0.004749,0.249955,0,0);-ms-transform:matrix(0.120393,0.002287,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.120393,0.002287,-0.004749,0.249955,0,0);}
.m10_c01027{transform:matrix(0.120913,0.002297,-0.004749,0.249955,0,0);-ms-transform:matrix(0.120913,0.002297,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.120913,0.002297,-0.004749,0.249955,0,0);}
.m7_c01027{transform:matrix(0.129012,0.002451,-0.004749,0.249955,0,0);-ms-transform:matrix(0.129012,0.002451,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.129012,0.002451,-0.004749,0.249955,0,0);}
.m8_c01027{transform:matrix(0.138270,0.002627,-0.004749,0.249955,0,0);-ms-transform:matrix(0.138270,0.002627,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.138270,0.002627,-0.004749,0.249955,0,0);}
.m26_c01027{transform:matrix(0.159146,0.003024,-0.004749,0.249955,0,0);-ms-transform:matrix(0.159146,0.003024,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.159146,0.003024,-0.004749,0.249955,0,0);}
.m2a_c01027{transform:matrix(0.161901,0.003076,-0.004749,0.249955,0,0);-ms-transform:matrix(0.161901,0.003076,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.161901,0.003076,-0.004749,0.249955,0,0);}
.m5_c01027{transform:matrix(0.162221,0.003082,-0.004749,0.249955,0,0);-ms-transform:matrix(0.162221,0.003082,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.162221,0.003082,-0.004749,0.249955,0,0);}
.m2c_c01027{transform:matrix(0.164940,0.003134,-0.004749,0.249955,0,0);-ms-transform:matrix(0.164940,0.003134,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.164940,0.003134,-0.004749,0.249955,0,0);}
.m24_c01027{transform:matrix(0.168280,0.003197,-0.004749,0.249955,0,0);-ms-transform:matrix(0.168280,0.003197,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.168280,0.003197,-0.004749,0.249955,0,0);}
.m2b_c01027{transform:matrix(0.176858,0.003360,-0.004749,0.249955,0,0);-ms-transform:matrix(0.176858,0.003360,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.176858,0.003360,-0.004749,0.249955,0,0);}
.mf_c01027{transform:matrix(0.180592,0.003431,-0.004749,0.249955,0,0);-ms-transform:matrix(0.180592,0.003431,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.180592,0.003431,-0.004749,0.249955,0,0);}
.m2d_c01027{transform:matrix(0.184217,0.003500,-0.004749,0.249955,0,0);-ms-transform:matrix(0.184217,0.003500,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.184217,0.003500,-0.004749,0.249955,0,0);}
.m2_c01027{transform:matrix(0.193515,0.003677,-0.004749,0.249955,0,0);-ms-transform:matrix(0.193515,0.003677,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.193515,0.003677,-0.004749,0.249955,0,0);}
.m1_c01027{transform:matrix(0.195540,0.003715,-0.004749,0.249955,0,0);-ms-transform:matrix(0.195540,0.003715,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.195540,0.003715,-0.004749,0.249955,0,0);}
.m16_c01027{transform:matrix(0.196366,0.003927,-0.004999,0.249950,0,0);-ms-transform:matrix(0.196366,0.003927,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.196366,0.003927,-0.004999,0.249950,0,0);}
.m4_c01027{transform:matrix(0.207403,0.003941,-0.004749,0.249955,0,0);-ms-transform:matrix(0.207403,0.003941,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.207403,0.003941,-0.004749,0.249955,0,0);}
.m36_c01027{transform:matrix(0.221125,0.004201,-0.004749,0.249955,0,0);-ms-transform:matrix(0.221125,0.004201,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.221125,0.004201,-0.004749,0.249955,0,0);}
.m31_c01027{transform:matrix(0.221140,0.004202,-0.004749,0.249955,0,0);-ms-transform:matrix(0.221140,0.004202,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.221140,0.004202,-0.004749,0.249955,0,0);}
.m30_c01027{transform:matrix(0.223565,0.004248,-0.004749,0.249955,0,0);-ms-transform:matrix(0.223565,0.004248,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.223565,0.004248,-0.004749,0.249955,0,0);}
.m20_c01027{transform:matrix(0.227949,0.004331,-0.004749,0.249955,0,0);-ms-transform:matrix(0.227949,0.004331,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.227949,0.004331,-0.004749,0.249955,0,0);}
.m28_c01027{transform:matrix(0.228624,0.004344,-0.004749,0.249955,0,0);-ms-transform:matrix(0.228624,0.004344,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.228624,0.004344,-0.004749,0.249955,0,0);}
.m21_c01027{transform:matrix(0.228694,0.004345,-0.004749,0.249955,0,0);-ms-transform:matrix(0.228694,0.004345,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.228694,0.004345,-0.004749,0.249955,0,0);}
.m1b_c01027{transform:matrix(0.234518,0.004456,-0.004749,0.249955,0,0);-ms-transform:matrix(0.234518,0.004456,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.234518,0.004456,-0.004749,0.249955,0,0);}
.m32_c01027{transform:matrix(0.240372,0.004567,-0.004749,0.249955,0,0);-ms-transform:matrix(0.240372,0.004567,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.240372,0.004567,-0.004749,0.249955,0,0);}
.m0_c01027{transform:matrix(0.245631,0.004667,-0.004749,0.249955,0,0);-ms-transform:matrix(0.245631,0.004667,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.245631,0.004667,-0.004749,0.249955,0,0);}
.m6_c01027{transform:matrix(0.245976,0.004674,-0.004749,0.249955,0,0);-ms-transform:matrix(0.245976,0.004674,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.245976,0.004674,-0.004749,0.249955,0,0);}
.m3a_c01027{transform:matrix(0.247665,0.004706,-0.004749,0.249955,0,0);-ms-transform:matrix(0.247665,0.004706,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.247665,0.004706,-0.004749,0.249955,0,0);}
.m3e_c01027{transform:matrix(0.256889,0.004881,-0.004749,0.249955,0,0);-ms-transform:matrix(0.256889,0.004881,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.256889,0.004881,-0.004749,0.249955,0,0);}
.m22_c01027{transform:matrix(0.260723,0.004954,-0.004749,0.249955,0,0);-ms-transform:matrix(0.260723,0.004954,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.260723,0.004954,-0.004749,0.249955,0,0);}
.m1a_c01027{transform:matrix(0.261408,0.004967,-0.004749,0.249955,0,0);-ms-transform:matrix(0.261408,0.004967,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.261408,0.004967,-0.004749,0.249955,0,0);}
.m33_c01027{transform:matrix(0.261783,0.004974,-0.004749,0.249955,0,0);-ms-transform:matrix(0.261783,0.004974,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.261783,0.004974,-0.004749,0.249955,0,0);}
.m19_c01027{transform:matrix(0.268412,0.005100,-0.004749,0.249955,0,0);-ms-transform:matrix(0.268412,0.005100,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.268412,0.005100,-0.004749,0.249955,0,0);}
.m1e_c01027{transform:matrix(0.269781,0.005126,-0.004749,0.249955,0,0);-ms-transform:matrix(0.269781,0.005126,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.269781,0.005126,-0.004749,0.249955,0,0);}
.m27_c01027{transform:matrix(0.271641,0.005161,-0.004749,0.249955,0,0);-ms-transform:matrix(0.271641,0.005161,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.271641,0.005161,-0.004749,0.249955,0,0);}
.m29_c01027{transform:matrix(0.272396,0.005176,-0.004749,0.249955,0,0);-ms-transform:matrix(0.272396,0.005176,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.272396,0.005176,-0.004749,0.249955,0,0);}
.m34_c01027{transform:matrix(0.272646,0.005180,-0.004749,0.249955,0,0);-ms-transform:matrix(0.272646,0.005180,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.272646,0.005180,-0.004749,0.249955,0,0);}
.m18_c01027{transform:matrix(0.276670,0.005257,-0.004749,0.249955,0,0);-ms-transform:matrix(0.276670,0.005257,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.276670,0.005257,-0.004749,0.249955,0,0);}
.m3f_c01027{transform:matrix(0.285758,0.005429,-0.004749,0.249955,0,0);-ms-transform:matrix(0.285758,0.005429,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.285758,0.005429,-0.004749,0.249955,0,0);}
.m1f_c01027{transform:matrix(0.287368,0.005460,-0.004749,0.249955,0,0);-ms-transform:matrix(0.287368,0.005460,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.287368,0.005460,-0.004749,0.249955,0,0);}
.m37_c01027{transform:matrix(0.294102,0.005588,-0.004749,0.249955,0,0);-ms-transform:matrix(0.294102,0.005588,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.294102,0.005588,-0.004749,0.249955,0,0);}
.m1d_c01027{transform:matrix(0.295247,0.005610,-0.004749,0.249955,0,0);-ms-transform:matrix(0.295247,0.005610,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.295247,0.005610,-0.004749,0.249955,0,0);}
.m38_c01027{transform:matrix(0.296986,0.005643,-0.004749,0.249955,0,0);-ms-transform:matrix(0.296986,0.005643,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.296986,0.005643,-0.004749,0.249955,0,0);}
.m3b_c01027{transform:matrix(0.301241,0.005724,-0.004749,0.249955,0,0);-ms-transform:matrix(0.301241,0.005724,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.301241,0.005724,-0.004749,0.249955,0,0);}
.m3c_c01027{transform:matrix(0.341363,0.006486,-0.004749,0.249955,0,0);-ms-transform:matrix(0.341363,0.006486,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.341363,0.006486,-0.004749,0.249955,0,0);}
.m40_c01027{transform:matrix(0.345633,0.006567,-0.004749,0.249955,0,0);-ms-transform:matrix(0.345633,0.006567,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.345633,0.006567,-0.004749,0.249955,0,0);}
.m3d_c01027{transform:matrix(0.353916,0.006724,-0.004749,0.249955,0,0);-ms-transform:matrix(0.353916,0.006724,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.353916,0.006724,-0.004749,0.249955,0,0);}
.m15_c01027{transform:matrix(0.356239,0.007125,-0.004999,0.249950,0,0);-ms-transform:matrix(0.356239,0.007125,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.356239,0.007125,-0.004999,0.249950,0,0);}
.m35_c01027{transform:matrix(0.365184,0.006938,-0.004749,0.249955,0,0);-ms-transform:matrix(0.365184,0.006938,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.365184,0.006938,-0.004749,0.249955,0,0);}
.m1c_c01027{transform:matrix(0.383021,0.007277,-0.004749,0.249955,0,0);-ms-transform:matrix(0.383021,0.007277,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.383021,0.007277,-0.004749,0.249955,0,0);}
.m39_c01027{transform:matrix(0.389970,0.007409,-0.004749,0.249955,0,0);-ms-transform:matrix(0.389970,0.007409,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.389970,0.007409,-0.004749,0.249955,0,0);}
.m41_c01027{transform:matrix(0.417610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417610,0.000000,0.000000,0.250000,0,0);}
.m23_c01027{transform:matrix(0.545841,0.010371,-0.004749,0.249955,0,0);-ms-transform:matrix(0.545841,0.010371,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.545841,0.010371,-0.004749,0.249955,0,0);}
.m14_c01027{transform:matrix(0.614467,0.012289,-0.004999,0.249950,0,0);-ms-transform:matrix(0.614467,0.012289,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.614467,0.012289,-0.004999,0.249950,0,0);}
.m17_c01027{transform:matrix(0.638267,0.012765,-0.004999,0.249950,0,0);-ms-transform:matrix(0.638267,0.012765,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.638267,0.012765,-0.004999,0.249950,0,0);}
.m12_c01027{transform:matrix(0.743351,0.014867,-0.004999,0.249950,0,0);-ms-transform:matrix(0.743351,0.014867,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.743351,0.014867,-0.004999,0.249950,0,0);}
.m13_c01027{transform:matrix(0.921431,0.018429,-0.004999,0.249950,0,0);-ms-transform:matrix(0.921431,0.018429,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.921431,0.018429,-0.004999,0.249950,0,0);}
.m2f_c01027{transform:matrix(1.147973,0.021811,-0.004749,0.249955,0,0);-ms-transform:matrix(1.147973,0.021811,-0.004749,0.249955,0,0);-webkit-transform:matrix(1.147973,0.021811,-0.004749,0.249955,0,0);}
.v0_c01027{vertical-align:0.000000px;}
.ls0_c01027{letter-spacing:0.000000px;}
.sc__c01027{text-shadow:none;}
.sc0_c01027{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__c01027{-webkit-text-stroke:0px transparent;}
.sc0_c01027{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01027{word-spacing:0.000000px;}
._0_c01027{margin-left:-7.134083px;}
.fc0_c01027{color:transparent;}
.fs1_c01027{font-size:12.002166px;}
.fs6_c01027{font-size:18.000000px;}
.fs0_c01027{font-size:18.003249px;}
.fs2_c01027{font-size:66.013199px;}
.fs5_c01027{font-size:90.016244px;}
.fs3_c01027{font-size:96.017326px;}
.fs4_c01027{font-size:126.022741px;}
.y0_c01027{bottom:0.000000px;}
.y43_c01027{bottom:790.290000px;}
.y42_c01027{bottom:804.892678px;}
.y41_c01027{bottom:805.984000px;}
.y40_c01027{bottom:808.176733px;}
.y3f_c01027{bottom:808.958887px;}
.y3e_c01027{bottom:810.368497px;}
.y3d_c01027{bottom:811.628197px;}
.y3c_c01027{bottom:814.057965px;}
.y3b_c01027{bottom:814.908918px;}
.y3a_c01027{bottom:840.526639px;}
.y39_c01027{bottom:841.656010px;}
.y38_c01027{bottom:842.550328px;}
.y37_c01027{bottom:843.525972px;}
.y36_c01027{bottom:844.332057px;}
.y35_c01027{bottom:845.718582px;}
.y34_c01027{bottom:846.160296px;}
.y33_c01027{bottom:847.305915px;}
.y32_c01027{bottom:848.304942px;}
.y31_c01027{bottom:850.566277px;}
.y30_c01027{bottom:850.765803px;}
.y2f_c01027{bottom:876.160015px;}
.y2e_c01027{bottom:877.666827px;}
.y2d_c01027{bottom:878.299962px;}
.y2c_c01027{bottom:880.308651px;}
.y2b_c01027{bottom:880.860136px;}
.y2a_c01027{bottom:881.396545px;}
.y29_c01027{bottom:882.550739px;}
.y28_c01027{bottom:884.466492px;}
.y27_c01027{bottom:885.161308px;}
.y26_c01027{bottom:887.859456px;}
.y25_c01027{bottom:889.669915px;}
.y24_c01027{bottom:911.943334px;}
.y23_c01027{bottom:915.718330px;}
.y22_c01027{bottom:916.351657px;}
.y21_c01027{bottom:917.646840px;}
.y20_c01027{bottom:918.848086px;}
.y1f_c01027{bottom:919.331304px;}
.y1e_c01027{bottom:919.980591px;}
.y1d_c01027{bottom:920.615770px;}
.y1c_c01027{bottom:921.662490px;}
.y1b_c01027{bottom:922.385734px;}
.y1a_c01027{bottom:924.052500px;}
.y19_c01027{bottom:1090.015800px;}
.y18_c01027{bottom:1090.458720px;}
.y17_c01027{bottom:1091.926800px;}
.y16_c01027{bottom:1092.987480px;}
.y15_c01027{bottom:1097.150910px;}
.y14_c01027{bottom:1098.701580px;}
.y13_c01027{bottom:1099.173000px;}
.y12_c01027{bottom:1194.749119px;}
.y11_c01027{bottom:1195.131069px;}
.y10_c01027{bottom:1197.975313px;}
.yf_c01027{bottom:1198.529538px;}
.yb_c01027{bottom:1201.498059px;}
.yc_c01027{bottom:1201.498132px;}
.yd_c01027{bottom:1201.498845px;}
.ye_c01027{bottom:1201.499524px;}
.y8_c01027{bottom:1209.491476px;}
.y9_c01027{bottom:1209.492160px;}
.ya_c01027{bottom:1209.492681px;}
.y3_c01027{bottom:1211.471294px;}
.y4_c01027{bottom:1211.471767px;}
.y5_c01027{bottom:1211.471980px;}
.y6_c01027{bottom:1211.472303px;}
.y7_c01027{bottom:1211.472446px;}
.y2_c01027{bottom:1220.745144px;}
.y1_c01027{bottom:1225.260000px;}
.h3_c01027{height:12.002166px;}
.h8_c01027{height:18.000000px;}
.h2_c01027{height:18.003249px;}
.h4_c01027{height:66.013199px;}
.h7_c01027{height:90.016244px;}
.h5_c01027{height:96.017326px;}
.h6_c01027{height:126.022741px;}
.h0_c01027{height:1246.320000px;}
.h1_c01027{height:1246.500000px;}
.w0_c01027{width:862.920000px;}
.w1_c01027{width:863.250000px;}
.x0_c01027{left:0.000000px;}
.x22_c01027{left:1.983984px;}
.x2c_c01027{left:6.384161px;}
.x2d_c01027{left:19.649658px;}
.x17_c01027{left:22.719000px;}
.x36_c01027{left:30.626874px;}
.x3_c01027{left:61.553361px;}
.x37_c01027{left:75.413874px;}
.x8_c01027{left:92.069771px;}
.x4_c01027{left:96.119844px;}
.x1_c01027{left:98.265000px;}
.x18_c01027{left:110.443500px;}
.x9_c01027{left:122.044601px;}
.xf_c01027{left:135.243623px;}
.xb_c01027{left:137.166725px;}
.x19_c01027{left:148.509000px;}
.x2e_c01027{left:170.415615px;}
.x11_c01027{left:189.696000px;}
.x1a_c01027{left:203.599500px;}
.x12_c01027{left:213.267000px;}
.x23_c01027{left:227.432709px;}
.xa_c01027{left:228.713604px;}
.xc_c01027{left:231.144139px;}
.x1b_c01027{left:237.030000px;}
.x5_c01027{left:247.347421px;}
.x24_c01027{left:262.185553px;}
.x38_c01027{left:269.596374px;}
.x1c_c01027{left:271.203000px;}
.xd_c01027{left:274.622343px;}
.x6_c01027{left:291.635910px;}
.x1d_c01027{left:296.635500px;}
.x2f_c01027{left:313.460502px;}
.x10_c01027{left:324.823515px;}
.xe_c01027{left:329.711736px;}
.x7_c01027{left:332.143031px;}
.x2_c01027{left:335.889000px;}
.x30_c01027{left:342.868725px;}
.x25_c01027{left:357.960229px;}
.x1e_c01027{left:359.859000px;}
.x39_c01027{left:384.952374px;}
.x26_c01027{left:415.706147px;}
.x1f_c01027{left:428.026500px;}
.x31_c01027{left:435.350765px;}
.x27_c01027{left:442.516634px;}
.x20_c01027{left:461.359500px;}
.x28_c01027{left:470.120621px;}
.x32_c01027{left:489.069840px;}
.x13_c01027{left:498.972000px;}
.x3a_c01027{left:500.359374px;}
.x14_c01027{left:552.006000px;}
.x33_c01027{left:554.161299px;}
.x3b_c01027{left:557.797374px;}
.x29_c01027{left:570.549711px;}
.x2a_c01027{left:602.214113px;}
.x34_c01027{left:613.787831px;}
.x15_c01027{left:625.410000px;}
.x16_c01027{left:647.556000px;}
.x21_c01027{left:660.043500px;}
.x2b_c01027{left:677.571188px;}
.x35_c01027{left:689.102559px;}
@media print{
.v0_c01027{vertical-align:0.000000pt;}
.ls0_c01027{letter-spacing:0.000000pt;}
.ws0_c01027{word-spacing:0.000000pt;}
._0_c01027{margin-left:-6.341407pt;}
.fs1_c01027{font-size:10.668592pt;}
.fs6_c01027{font-size:16.000000pt;}
.fs0_c01027{font-size:16.002888pt;}
.fs2_c01027{font-size:58.678399pt;}
.fs5_c01027{font-size:80.014439pt;}
.fs3_c01027{font-size:85.348735pt;}
.fs4_c01027{font-size:112.020214pt;}
.y0_c01027{bottom:0.000000pt;}
.y43_c01027{bottom:702.480000pt;}
.y42_c01027{bottom:715.460159pt;}
.y41_c01027{bottom:716.430223pt;}
.y40_c01027{bottom:718.379319pt;}
.y3f_c01027{bottom:719.074567pt;}
.y3e_c01027{bottom:720.327553pt;}
.y3d_c01027{bottom:721.447287pt;}
.y3c_c01027{bottom:723.607080pt;}
.y3b_c01027{bottom:724.363483pt;}
.y3a_c01027{bottom:747.134791pt;}
.y39_c01027{bottom:748.138676pt;}
.y38_c01027{bottom:748.933625pt;}
.y37_c01027{bottom:749.800864pt;}
.y36_c01027{bottom:750.517384pt;}
.y35_c01027{bottom:751.749851pt;}
.y34_c01027{bottom:752.142485pt;}
.y33_c01027{bottom:753.160813pt;}
.y32_c01027{bottom:754.048837pt;}
.y31_c01027{bottom:756.058913pt;}
.y30_c01027{bottom:756.236269pt;}
.y2f_c01027{bottom:778.808903pt;}
.y2e_c01027{bottom:780.148291pt;}
.y2d_c01027{bottom:780.711077pt;}
.y2c_c01027{bottom:782.496579pt;}
.y2b_c01027{bottom:782.986788pt;}
.y2a_c01027{bottom:783.463596pt;}
.y29_c01027{bottom:784.489545pt;}
.y28_c01027{bottom:786.192437pt;}
.y27_c01027{bottom:786.810052pt;}
.y26_c01027{bottom:789.208405pt;}
.y25_c01027{bottom:790.817703pt;}
.y24_c01027{bottom:810.616297pt;}
.y23_c01027{bottom:813.971849pt;}
.y22_c01027{bottom:814.534807pt;}
.y21_c01027{bottom:815.686080pt;}
.y20_c01027{bottom:816.753855pt;}
.y1f_c01027{bottom:817.183381pt;}
.y1e_c01027{bottom:817.760525pt;}
.y1d_c01027{bottom:818.325129pt;}
.y1c_c01027{bottom:819.255547pt;}
.y1b_c01027{bottom:819.898431pt;}
.y1a_c01027{bottom:821.380000pt;}
.y19_c01027{bottom:968.902933pt;}
.y18_c01027{bottom:969.296640pt;}
.y17_c01027{bottom:970.601600pt;}
.y16_c01027{bottom:971.544427pt;}
.y15_c01027{bottom:975.245253pt;}
.y14_c01027{bottom:976.623627pt;}
.y13_c01027{bottom:977.042667pt;}
.y12_c01027{bottom:1061.999217pt;}
.y11_c01027{bottom:1062.338728pt;}
.y10_c01027{bottom:1064.866945pt;}
.yf_c01027{bottom:1065.359589pt;}
.yb_c01027{bottom:1067.998275pt;}
.yc_c01027{bottom:1067.998340pt;}
.yd_c01027{bottom:1067.998973pt;}
.ye_c01027{bottom:1067.999577pt;}
.y8_c01027{bottom:1075.103535pt;}
.y9_c01027{bottom:1075.104143pt;}
.ya_c01027{bottom:1075.104605pt;}
.y3_c01027{bottom:1076.863372pt;}
.y4_c01027{bottom:1076.863793pt;}
.y5_c01027{bottom:1076.863983pt;}
.y6_c01027{bottom:1076.864269pt;}
.y7_c01027{bottom:1076.864396pt;}
.y2_c01027{bottom:1085.106795pt;}
.y1_c01027{bottom:1089.120000pt;}
.h3_c01027{height:10.668592pt;}
.h8_c01027{height:16.000000pt;}
.h2_c01027{height:16.002888pt;}
.h4_c01027{height:58.678399pt;}
.h7_c01027{height:80.014439pt;}
.h5_c01027{height:85.348735pt;}
.h6_c01027{height:112.020214pt;}
.h0_c01027{height:1107.840000pt;}
.h1_c01027{height:1108.000000pt;}
.w0_c01027{width:767.040000pt;}
.w1_c01027{width:767.333333pt;}
.x0_c01027{left:0.000000pt;}
.x22_c01027{left:1.763541pt;}
.x2c_c01027{left:5.674809pt;}
.x2d_c01027{left:17.466363pt;}
.x17_c01027{left:20.194667pt;}
.x36_c01027{left:27.223888pt;}
.x3_c01027{left:54.714099pt;}
.x37_c01027{left:67.034555pt;}
.x8_c01027{left:81.839796pt;}
.x4_c01027{left:85.439861pt;}
.x1_c01027{left:87.346667pt;}
.x18_c01027{left:98.172000pt;}
.x9_c01027{left:108.484089pt;}
.xf_c01027{left:120.216553pt;}
.xb_c01027{left:121.925977pt;}
.x19_c01027{left:132.008000pt;}
.x2e_c01027{left:151.480547pt;}
.x11_c01027{left:168.618667pt;}
.x1a_c01027{left:180.977333pt;}
.x12_c01027{left:189.570667pt;}
.x23_c01027{left:202.162408pt;}
.xa_c01027{left:203.300981pt;}
.xc_c01027{left:205.461457pt;}
.x1b_c01027{left:210.693333pt;}
.x5_c01027{left:219.864375pt;}
.x24_c01027{left:233.053825pt;}
.x38_c01027{left:239.641221pt;}
.x1c_c01027{left:241.069333pt;}
.xd_c01027{left:244.108749pt;}
.x6_c01027{left:259.231920pt;}
.x1d_c01027{left:263.676000pt;}
.x2f_c01027{left:278.631557pt;}
.x10_c01027{left:288.732013pt;}
.xe_c01027{left:293.077099pt;}
.x7_c01027{left:295.238249pt;}
.x2_c01027{left:298.568000pt;}
.x30_c01027{left:304.772200pt;}
.x25_c01027{left:318.186871pt;}
.x1e_c01027{left:319.874667pt;}
.x39_c01027{left:342.179888pt;}
.x26_c01027{left:369.516575pt;}
.x1f_c01027{left:380.468000pt;}
.x31_c01027{left:386.978457pt;}
.x27_c01027{left:393.348119pt;}
.x20_c01027{left:410.097333pt;}
.x28_c01027{left:417.884996pt;}
.x32_c01027{left:434.728747pt;}
.x13_c01027{left:443.530667pt;}
.x3a_c01027{left:444.763888pt;}
.x14_c01027{left:490.672000pt;}
.x33_c01027{left:492.587821pt;}
.x3b_c01027{left:495.819888pt;}
.x29_c01027{left:507.155299pt;}
.x2a_c01027{left:535.301433pt;}
.x34_c01027{left:545.589183pt;}
.x15_c01027{left:555.920000pt;}
.x16_c01027{left:575.605333pt;}
.x21_c01027{left:586.705333pt;}
.x2b_c01027{left:602.285500pt;}
.x35_c01027{left:612.535608pt;}
}





/* 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_c01028 {
    display:none;
  }
  .loading-indicator_c01028.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01028 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_c01028 { 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_c01028" -> "#page-container .classname_c01028")
 */
.pf_c01028 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01028 { /* 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_c01028.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01028 { /* 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_c01028 { /* 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_c01028 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01028 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01028 {overflow:visible;}
  }
}
.c_c01028 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01028 { /* 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_c01028:after { /* webkit #35443 */
  content: '';
}
.t_c01028:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01028 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 */
}
.__c01028 { /* 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_c01028 { /* info for Javascript */
  display:none;
}
.l_c01028 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01028 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01028 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01028: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_c01028 {
    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_c01028.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01028.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_c01028 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01028{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01028;src:url('chunks/assets/font_cfe63ee56e9e10a97d33a3db.woff2')format("woff");}.ff1_c01028{font-family:ff1_c01028;line-height:1.000000;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;}
.m10e_c01028{transform:matrix(0.008888,0.000347,-0.009752,0.249810,0,0);-ms-transform:matrix(0.008888,0.000347,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.008888,0.000347,-0.009752,0.249810,0,0);}
.m90_c01028{transform:matrix(0.010129,0.000477,-0.011749,0.249724,0,0);-ms-transform:matrix(0.010129,0.000477,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.010129,0.000477,-0.011749,0.249724,0,0);}
.m53_c01028{transform:matrix(0.017991,0.000828,-0.011499,0.249735,0,0);-ms-transform:matrix(0.017991,0.000828,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.017991,0.000828,-0.011499,0.249735,0,0);}
.mc9_c01028{transform:matrix(0.047676,0.001813,-0.009503,0.249819,0,0);-ms-transform:matrix(0.047676,0.001813,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.047676,0.001813,-0.009503,0.249819,0,0);}
.m11c_c01028{transform:matrix(0.088441,0.003364,-0.009503,0.249819,0,0);-ms-transform:matrix(0.088441,0.003364,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.088441,0.003364,-0.009503,0.249819,0,0);}
.m4_c01028{transform:matrix(0.129426,0.004664,-0.009003,0.249838,0,0);-ms-transform:matrix(0.129426,0.004664,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.129426,0.004664,-0.009003,0.249838,0,0);}
.m79_c01028{transform:matrix(0.132588,0.006238,-0.011749,0.249724,0,0);-ms-transform:matrix(0.132588,0.006238,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.132588,0.006238,-0.011749,0.249724,0,0);}
.m81_c01028{transform:matrix(0.137218,0.006456,-0.011749,0.249724,0,0);-ms-transform:matrix(0.137218,0.006456,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.137218,0.006456,-0.011749,0.249724,0,0);}
.m8a_c01028{transform:matrix(0.139001,0.006540,-0.011749,0.249724,0,0);-ms-transform:matrix(0.139001,0.006540,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.139001,0.006540,-0.011749,0.249724,0,0);}
.m7b_c01028{transform:matrix(0.143811,0.006766,-0.011749,0.249724,0,0);-ms-transform:matrix(0.143811,0.006766,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.143811,0.006766,-0.011749,0.249724,0,0);}
.m7e_c01028{transform:matrix(0.144200,0.006784,-0.011749,0.249724,0,0);-ms-transform:matrix(0.144200,0.006784,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.144200,0.006784,-0.011749,0.249724,0,0);}
.m7c_c01028{transform:matrix(0.145884,0.006863,-0.011749,0.249724,0,0);-ms-transform:matrix(0.145884,0.006863,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.145884,0.006863,-0.011749,0.249724,0,0);}
.m7d_c01028{transform:matrix(0.146148,0.006876,-0.011749,0.249724,0,0);-ms-transform:matrix(0.146148,0.006876,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.146148,0.006876,-0.011749,0.249724,0,0);}
.md8_c01028{transform:matrix(0.146629,0.005577,-0.009503,0.249819,0,0);-ms-transform:matrix(0.146629,0.005577,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.146629,0.005577,-0.009503,0.249819,0,0);}
.m77_c01028{transform:matrix(0.150034,0.007059,-0.011749,0.249724,0,0);-ms-transform:matrix(0.150034,0.007059,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.150034,0.007059,-0.011749,0.249724,0,0);}
.m7a_c01028{transform:matrix(0.150763,0.007093,-0.011749,0.249724,0,0);-ms-transform:matrix(0.150763,0.007093,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.150763,0.007093,-0.011749,0.249724,0,0);}
.m7f_c01028{transform:matrix(0.153525,0.007223,-0.011749,0.249724,0,0);-ms-transform:matrix(0.153525,0.007223,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.153525,0.007223,-0.011749,0.249724,0,0);}
.md7_c01028{transform:matrix(0.155273,0.005906,-0.009503,0.249819,0,0);-ms-transform:matrix(0.155273,0.005906,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.155273,0.005906,-0.009503,0.249819,0,0);}
.m78_c01028{transform:matrix(0.156132,0.007346,-0.011749,0.249724,0,0);-ms-transform:matrix(0.156132,0.007346,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.156132,0.007346,-0.011749,0.249724,0,0);}
.m76_c01028{transform:matrix(0.158150,0.007440,-0.011749,0.249724,0,0);-ms-transform:matrix(0.158150,0.007440,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.158150,0.007440,-0.011749,0.249724,0,0);}
.m85_c01028{transform:matrix(0.160542,0.007553,-0.011749,0.249724,0,0);-ms-transform:matrix(0.160542,0.007553,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.160542,0.007553,-0.011749,0.249724,0,0);}
.md9_c01028{transform:matrix(0.160569,0.006108,-0.009503,0.249819,0,0);-ms-transform:matrix(0.160569,0.006108,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.160569,0.006108,-0.009503,0.249819,0,0);}
.m97_c01028{transform:matrix(0.162413,0.007478,-0.011499,0.249735,0,0);-ms-transform:matrix(0.162413,0.007478,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.162413,0.007478,-0.011499,0.249735,0,0);}
.m74_c01028{transform:matrix(0.165422,0.007783,-0.011749,0.249724,0,0);-ms-transform:matrix(0.165422,0.007783,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.165422,0.007783,-0.011749,0.249724,0,0);}
.me1_c01028{transform:matrix(0.165680,0.006302,-0.009503,0.249819,0,0);-ms-transform:matrix(0.165680,0.006302,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.165680,0.006302,-0.009503,0.249819,0,0);}
.mdd_c01028{transform:matrix(0.166150,0.006320,-0.009503,0.249819,0,0);-ms-transform:matrix(0.166150,0.006320,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.166150,0.006320,-0.009503,0.249819,0,0);}
.m82_c01028{transform:matrix(0.168369,0.007921,-0.011749,0.249724,0,0);-ms-transform:matrix(0.168369,0.007921,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.168369,0.007921,-0.011749,0.249724,0,0);}
.me4_c01028{transform:matrix(0.169637,0.006453,-0.009503,0.249819,0,0);-ms-transform:matrix(0.169637,0.006453,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.169637,0.006453,-0.009503,0.249819,0,0);}
.m80_c01028{transform:matrix(0.170372,0.008015,-0.011749,0.249724,0,0);-ms-transform:matrix(0.170372,0.008015,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.170372,0.008015,-0.011749,0.249724,0,0);}
.m89_c01028{transform:matrix(0.170636,0.008028,-0.011749,0.249724,0,0);-ms-transform:matrix(0.170636,0.008028,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.170636,0.008028,-0.011749,0.249724,0,0);}
.m10a_c01028{transform:matrix(0.170990,0.006675,-0.009752,0.249810,0,0);-ms-transform:matrix(0.170990,0.006675,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.170990,0.006675,-0.009752,0.249810,0,0);}
.mdb_c01028{transform:matrix(0.171131,0.006509,-0.009503,0.249819,0,0);-ms-transform:matrix(0.171131,0.006509,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.171131,0.006509,-0.009503,0.249819,0,0);}
.m94_c01028{transform:matrix(0.171139,0.007880,-0.011499,0.249735,0,0);-ms-transform:matrix(0.171139,0.007880,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.171139,0.007880,-0.011499,0.249735,0,0);}
.m84_c01028{transform:matrix(0.172055,0.008095,-0.011749,0.249724,0,0);-ms-transform:matrix(0.172055,0.008095,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.172055,0.008095,-0.011749,0.249724,0,0);}
.m93_c01028{transform:matrix(0.172233,0.007931,-0.011499,0.249735,0,0);-ms-transform:matrix(0.172233,0.007931,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.172233,0.007931,-0.011499,0.249735,0,0);}
.mdf_c01028{transform:matrix(0.172285,0.006553,-0.009503,0.249819,0,0);-ms-transform:matrix(0.172285,0.006553,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.172285,0.006553,-0.009503,0.249819,0,0);}
.m75_c01028{transform:matrix(0.172904,0.008135,-0.011749,0.249724,0,0);-ms-transform:matrix(0.172904,0.008135,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.172904,0.008135,-0.011749,0.249724,0,0);}
.m88_c01028{transform:matrix(0.174317,0.008201,-0.011749,0.249724,0,0);-ms-transform:matrix(0.174317,0.008201,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.174317,0.008201,-0.011749,0.249724,0,0);}
.m129_c01028{transform:matrix(0.174804,0.006649,-0.009503,0.249819,0,0);-ms-transform:matrix(0.174804,0.006649,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.174804,0.006649,-0.009503,0.249819,0,0);}
.m122_c01028{transform:matrix(0.175293,0.006668,-0.009503,0.249819,0,0);-ms-transform:matrix(0.175293,0.006668,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.175293,0.006668,-0.009503,0.249819,0,0);}
.m86_c01028{transform:matrix(0.175296,0.008247,-0.011749,0.249724,0,0);-ms-transform:matrix(0.175296,0.008247,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.175296,0.008247,-0.011749,0.249724,0,0);}
.me0_c01028{transform:matrix(0.175473,0.006675,-0.009503,0.249819,0,0);-ms-transform:matrix(0.175473,0.006675,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.175473,0.006675,-0.009503,0.249819,0,0);}
.m98_c01028{transform:matrix(0.175524,0.008082,-0.011499,0.249735,0,0);-ms-transform:matrix(0.175524,0.008082,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.175524,0.008082,-0.011499,0.249735,0,0);}
.m19_c01028{transform:matrix(0.176004,0.008104,-0.011499,0.249735,0,0);-ms-transform:matrix(0.176004,0.008104,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.176004,0.008104,-0.011499,0.249735,0,0);}
.m83_c01028{transform:matrix(0.176030,0.008282,-0.011749,0.249724,0,0);-ms-transform:matrix(0.176030,0.008282,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.176030,0.008282,-0.011749,0.249724,0,0);}
.m108_c01028{transform:matrix(0.176211,0.006879,-0.009752,0.249810,0,0);-ms-transform:matrix(0.176211,0.006879,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.176211,0.006879,-0.009752,0.249810,0,0);}
.m87_c01028{transform:matrix(0.177074,0.008331,-0.011749,0.249724,0,0);-ms-transform:matrix(0.177074,0.008331,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.177074,0.008331,-0.011749,0.249724,0,0);}
.m107_c01028{transform:matrix(0.177635,0.006935,-0.009752,0.249810,0,0);-ms-transform:matrix(0.177635,0.006935,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.177635,0.006935,-0.009752,0.249810,0,0);}
.m52_c01028{transform:matrix(0.180434,0.008308,-0.011499,0.249735,0,0);-ms-transform:matrix(0.180434,0.008308,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.180434,0.008308,-0.011499,0.249735,0,0);}
.m5a_c01028{transform:matrix(0.180655,0.008499,-0.011749,0.249724,0,0);-ms-transform:matrix(0.180655,0.008499,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.180655,0.008499,-0.011749,0.249724,0,0);}
.mdc_c01028{transform:matrix(0.180924,0.006882,-0.009503,0.249819,0,0);-ms-transform:matrix(0.180924,0.006882,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.180924,0.006882,-0.009503,0.249819,0,0);}
.m127_c01028{transform:matrix(0.181324,0.006897,-0.009503,0.249819,0,0);-ms-transform:matrix(0.181324,0.006897,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.181324,0.006897,-0.009503,0.249819,0,0);}
.m24_c01028{transform:matrix(0.181378,0.008352,-0.011499,0.249735,0,0);-ms-transform:matrix(0.181378,0.008352,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.181378,0.008352,-0.011499,0.249735,0,0);}
.mde_c01028{transform:matrix(0.182858,0.006956,-0.009503,0.249819,0,0);-ms-transform:matrix(0.182858,0.006956,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.182858,0.006956,-0.009503,0.249819,0,0);}
.ma9_c01028{transform:matrix(0.183937,0.008101,-0.011000,0.249758,0,0);-ms-transform:matrix(0.183937,0.008101,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.183937,0.008101,-0.011000,0.249758,0,0);}
.m8f_c01028{transform:matrix(0.184451,0.008678,-0.011749,0.249724,0,0);-ms-transform:matrix(0.184451,0.008678,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.184451,0.008678,-0.011749,0.249724,0,0);}
.m12_c01028{transform:matrix(0.184639,0.008502,-0.011499,0.249735,0,0);-ms-transform:matrix(0.184639,0.008502,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.184639,0.008502,-0.011499,0.249735,0,0);}
.mda_c01028{transform:matrix(0.184936,0.007035,-0.009503,0.249819,0,0);-ms-transform:matrix(0.184936,0.007035,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.184936,0.007035,-0.009503,0.249819,0,0);}
.m56_c01028{transform:matrix(0.185105,0.008709,-0.011749,0.249724,0,0);-ms-transform:matrix(0.185105,0.008709,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.185105,0.008709,-0.011749,0.249724,0,0);}
.m58_c01028{transform:matrix(0.185625,0.008733,-0.011749,0.249724,0,0);-ms-transform:matrix(0.185625,0.008733,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.185625,0.008733,-0.011749,0.249724,0,0);}
.m30_c01028{transform:matrix(0.186233,0.008575,-0.011499,0.249735,0,0);-ms-transform:matrix(0.186233,0.008575,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.186233,0.008575,-0.011499,0.249735,0,0);}
.m14_c01028{transform:matrix(0.186263,0.008577,-0.011499,0.249735,0,0);-ms-transform:matrix(0.186263,0.008577,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.186263,0.008577,-0.011499,0.249735,0,0);}
.me9_c01028{transform:matrix(0.186325,0.007087,-0.009503,0.249819,0,0);-ms-transform:matrix(0.186325,0.007087,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.186325,0.007087,-0.009503,0.249819,0,0);}
.m101_c01028{transform:matrix(0.186728,0.007290,-0.009752,0.249810,0,0);-ms-transform:matrix(0.186728,0.007290,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.186728,0.007290,-0.009752,0.249810,0,0);}
.m2b_c01028{transform:matrix(0.186757,0.008599,-0.011499,0.249735,0,0);-ms-transform:matrix(0.186757,0.008599,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.186757,0.008599,-0.011499,0.249735,0,0);}
.m31_c01028{transform:matrix(0.187277,0.008623,-0.011499,0.249735,0,0);-ms-transform:matrix(0.187277,0.008623,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.187277,0.008623,-0.011499,0.249735,0,0);}
.m27_c01028{transform:matrix(0.187292,0.008624,-0.011499,0.249735,0,0);-ms-transform:matrix(0.187292,0.008624,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.187292,0.008624,-0.011499,0.249735,0,0);}
.m1a_c01028{transform:matrix(0.187751,0.008645,-0.011499,0.249735,0,0);-ms-transform:matrix(0.187751,0.008645,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.187751,0.008645,-0.011499,0.249735,0,0);}
.m9a_c01028{transform:matrix(0.189619,0.008731,-0.011499,0.249735,0,0);-ms-transform:matrix(0.189619,0.008731,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.189619,0.008731,-0.011499,0.249735,0,0);}
.m99_c01028{transform:matrix(0.190094,0.008753,-0.011499,0.249735,0,0);-ms-transform:matrix(0.190094,0.008753,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.190094,0.008753,-0.011499,0.249735,0,0);}
.mc_c01028{transform:matrix(0.190362,0.007622,-0.010002,0.249800,0,0);-ms-transform:matrix(0.190362,0.007622,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.190362,0.007622,-0.010002,0.249800,0,0);}
.m103_c01028{transform:matrix(0.190965,0.007455,-0.009752,0.249810,0,0);-ms-transform:matrix(0.190965,0.007455,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.190965,0.007455,-0.009752,0.249810,0,0);}
.m95_c01028{transform:matrix(0.191098,0.008799,-0.011499,0.249735,0,0);-ms-transform:matrix(0.191098,0.008799,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.191098,0.008799,-0.011499,0.249735,0,0);}
.m2_c01028{transform:matrix(0.191566,0.006903,-0.009003,0.249838,0,0);-ms-transform:matrix(0.191566,0.006903,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.191566,0.006903,-0.009003,0.249838,0,0);}
.m8e_c01028{transform:matrix(0.192053,0.009036,-0.011749,0.249724,0,0);-ms-transform:matrix(0.192053,0.009036,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.192053,0.009036,-0.011749,0.249724,0,0);}
.m111_c01028{transform:matrix(0.192484,0.011958,-0.015501,0.249519,0,0);-ms-transform:matrix(0.192484,0.011958,-0.015501,0.249519,0,0);-webkit-transform:matrix(0.192484,0.011958,-0.015501,0.249519,0,0);}
.m2e_c01028{transform:matrix(0.192566,0.008867,-0.011499,0.249735,0,0);-ms-transform:matrix(0.192566,0.008867,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.192566,0.008867,-0.011499,0.249735,0,0);}
.m10c_c01028{transform:matrix(0.192783,0.007526,-0.009752,0.249810,0,0);-ms-transform:matrix(0.192783,0.007526,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.192783,0.007526,-0.009752,0.249810,0,0);}
.mfe_c01028{transform:matrix(0.193058,0.007537,-0.009752,0.249810,0,0);-ms-transform:matrix(0.193058,0.007537,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.193058,0.007537,-0.009752,0.249810,0,0);}
.m121_c01028{transform:matrix(0.193195,0.007349,-0.009503,0.249819,0,0);-ms-transform:matrix(0.193195,0.007349,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.193195,0.007349,-0.009503,0.249819,0,0);}
.m1_c01028{transform:matrix(0.193260,0.006964,-0.009003,0.249838,0,0);-ms-transform:matrix(0.193260,0.006964,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.193260,0.006964,-0.009003,0.249838,0,0);}
.m109_c01028{transform:matrix(0.194097,0.007577,-0.009752,0.249810,0,0);-ms-transform:matrix(0.194097,0.007577,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.194097,0.007577,-0.009752,0.249810,0,0);}
.me5_c01028{transform:matrix(0.194514,0.007399,-0.009503,0.249819,0,0);-ms-transform:matrix(0.194514,0.007399,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.194514,0.007399,-0.009503,0.249819,0,0);}
.m55_c01028{transform:matrix(0.195599,0.009202,-0.011749,0.249724,0,0);-ms-transform:matrix(0.195599,0.009202,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.195599,0.009202,-0.011749,0.249724,0,0);}
.mec_c01028{transform:matrix(0.195868,0.007450,-0.009503,0.249819,0,0);-ms-transform:matrix(0.195868,0.007450,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.195868,0.007450,-0.009503,0.249819,0,0);}
.m33_c01028{transform:matrix(0.195917,0.009021,-0.011499,0.249735,0,0);-ms-transform:matrix(0.195917,0.009021,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.195917,0.009021,-0.011499,0.249735,0,0);}
.m5_c01028{transform:matrix(0.195943,0.007061,-0.009003,0.249838,0,0);-ms-transform:matrix(0.195943,0.007061,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.195943,0.007061,-0.009003,0.249838,0,0);}
.m3_c01028{transform:matrix(0.196303,0.007074,-0.009003,0.249838,0,0);-ms-transform:matrix(0.196303,0.007074,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.196303,0.007074,-0.009003,0.249838,0,0);}
.m23_c01028{transform:matrix(0.196916,0.009067,-0.011499,0.249735,0,0);-ms-transform:matrix(0.196916,0.009067,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.196916,0.009067,-0.011499,0.249735,0,0);}
.m17_c01028{transform:matrix(0.197266,0.009083,-0.011499,0.249735,0,0);-ms-transform:matrix(0.197266,0.009083,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.197266,0.009083,-0.011499,0.249735,0,0);}
.m10d_c01028{transform:matrix(0.197370,0.007705,-0.009752,0.249810,0,0);-ms-transform:matrix(0.197370,0.007705,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.197370,0.007705,-0.009752,0.249810,0,0);}
.m10b_c01028{transform:matrix(0.197505,0.007710,-0.009752,0.249810,0,0);-ms-transform:matrix(0.197505,0.007710,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.197505,0.007710,-0.009752,0.249810,0,0);}
.m120_c01028{transform:matrix(0.197897,0.007528,-0.009503,0.249819,0,0);-ms-transform:matrix(0.197897,0.007528,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.197897,0.007528,-0.009503,0.249819,0,0);}
.mb6_c01028{transform:matrix(0.198267,0.007542,-0.009503,0.249819,0,0);-ms-transform:matrix(0.198267,0.007542,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.198267,0.007542,-0.009503,0.249819,0,0);}
.mad_c01028{transform:matrix(0.198353,0.008736,-0.011000,0.249758,0,0);-ms-transform:matrix(0.198353,0.008736,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.198353,0.008736,-0.011000,0.249758,0,0);}
.m128_c01028{transform:matrix(0.198611,0.007555,-0.009503,0.249819,0,0);-ms-transform:matrix(0.198611,0.007555,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.198611,0.007555,-0.009503,0.249819,0,0);}
.m106_c01028{transform:matrix(0.198854,0.007763,-0.009752,0.249810,0,0);-ms-transform:matrix(0.198854,0.007763,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.198854,0.007763,-0.009752,0.249810,0,0);}
.m3e_c01028{transform:matrix(0.198889,0.009158,-0.011499,0.249735,0,0);-ms-transform:matrix(0.198889,0.009158,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.198889,0.009158,-0.011499,0.249735,0,0);}
.mcc_c01028{transform:matrix(0.198956,0.007568,-0.009503,0.249819,0,0);-ms-transform:matrix(0.198956,0.007568,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.198956,0.007568,-0.009503,0.249819,0,0);}
.md_c01028{transform:matrix(0.198981,0.007967,-0.010002,0.249800,0,0);-ms-transform:matrix(0.198981,0.007967,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.198981,0.007967,-0.010002,0.249800,0,0);}
.mfb_c01028{transform:matrix(0.199178,0.007776,-0.009752,0.249810,0,0);-ms-transform:matrix(0.199178,0.007776,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.199178,0.007776,-0.009752,0.249810,0,0);}
.m9e_c01028{transform:matrix(0.199499,0.010584,-0.013245,0.249649,0,0);-ms-transform:matrix(0.199499,0.010584,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.199499,0.010584,-0.013245,0.249649,0,0);}
.m96_c01028{transform:matrix(0.199584,0.009190,-0.011499,0.249735,0,0);-ms-transform:matrix(0.199584,0.009190,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.199584,0.009190,-0.011499,0.249735,0,0);}
.mba_c01028{transform:matrix(0.199636,0.007594,-0.009503,0.249819,0,0);-ms-transform:matrix(0.199636,0.007594,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.199636,0.007594,-0.009503,0.249819,0,0);}
.m102_c01028{transform:matrix(0.200158,0.007814,-0.009752,0.249810,0,0);-ms-transform:matrix(0.200158,0.007814,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.200158,0.007814,-0.009752,0.249810,0,0);}
.md0_c01028{transform:matrix(0.201384,0.007660,-0.009503,0.249819,0,0);-ms-transform:matrix(0.201384,0.007660,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.201384,0.007660,-0.009503,0.249819,0,0);}
.m2f_c01028{transform:matrix(0.201626,0.009284,-0.011499,0.249735,0,0);-ms-transform:matrix(0.201626,0.009284,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.201626,0.009284,-0.011499,0.249735,0,0);}
.m28_c01028{transform:matrix(0.201711,0.009288,-0.011499,0.249735,0,0);-ms-transform:matrix(0.201711,0.009288,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.201711,0.009288,-0.011499,0.249735,0,0);}
.m54_c01028{transform:matrix(0.202261,0.009516,-0.011749,0.249724,0,0);-ms-transform:matrix(0.202261,0.009516,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.202261,0.009516,-0.011749,0.249724,0,0);}
.m51_c01028{transform:matrix(0.202341,0.009317,-0.011499,0.249735,0,0);-ms-transform:matrix(0.202341,0.009317,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.202341,0.009317,-0.011499,0.249735,0,0);}
.m2d_c01028{transform:matrix(0.202885,0.009342,-0.011499,0.249735,0,0);-ms-transform:matrix(0.202885,0.009342,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.202885,0.009342,-0.011499,0.249735,0,0);}
.me7_c01028{transform:matrix(0.202928,0.007719,-0.009503,0.249819,0,0);-ms-transform:matrix(0.202928,0.007719,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.202928,0.007719,-0.009503,0.249819,0,0);}
.m42_c01028{transform:matrix(0.202985,0.009347,-0.011499,0.249735,0,0);-ms-transform:matrix(0.202985,0.009347,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.202985,0.009347,-0.011499,0.249735,0,0);}
.m37_c01028{transform:matrix(0.203075,0.009351,-0.011499,0.249735,0,0);-ms-transform:matrix(0.203075,0.009351,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.203075,0.009351,-0.011499,0.249735,0,0);}
.m12b_c01028{transform:matrix(0.203433,0.007738,-0.009503,0.249819,0,0);-ms-transform:matrix(0.203433,0.007738,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.203433,0.007738,-0.009503,0.249819,0,0);}
.m68_c01028{transform:matrix(0.203795,0.009588,-0.011749,0.249724,0,0);-ms-transform:matrix(0.203795,0.009588,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.203795,0.009588,-0.011749,0.249724,0,0);}
.me2_c01028{transform:matrix(0.204167,0.007766,-0.009503,0.249819,0,0);-ms-transform:matrix(0.204167,0.007766,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.204167,0.007766,-0.009503,0.249819,0,0);}
.ma3_c01028{transform:matrix(0.204228,0.010835,-0.013245,0.249649,0,0);-ms-transform:matrix(0.204228,0.010835,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.204228,0.010835,-0.013245,0.249649,0,0);}
.md4_c01028{transform:matrix(0.204317,0.007772,-0.009503,0.249819,0,0);-ms-transform:matrix(0.204317,0.007772,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.204317,0.007772,-0.009503,0.249819,0,0);}
.m25_c01028{transform:matrix(0.204338,0.009409,-0.011499,0.249735,0,0);-ms-transform:matrix(0.204338,0.009409,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.204338,0.009409,-0.011499,0.249735,0,0);}
.m2a_c01028{transform:matrix(0.204348,0.009409,-0.011499,0.249735,0,0);-ms-transform:matrix(0.204348,0.009409,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.204348,0.009409,-0.011499,0.249735,0,0);}
.m9_c01028{transform:matrix(0.204376,0.008183,-0.010002,0.249800,0,0);-ms-transform:matrix(0.204376,0.008183,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.204376,0.008183,-0.010002,0.249800,0,0);}
.m3a_c01028{transform:matrix(0.204838,0.009432,-0.011499,0.249735,0,0);-ms-transform:matrix(0.204838,0.009432,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.204838,0.009432,-0.011499,0.249735,0,0);}
.ma8_c01028{transform:matrix(0.204926,0.009026,-0.011000,0.249758,0,0);-ms-transform:matrix(0.204926,0.009026,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.204926,0.009026,-0.011000,0.249758,0,0);}
.m123_c01028{transform:matrix(0.205207,0.007806,-0.009503,0.249819,0,0);-ms-transform:matrix(0.205207,0.007806,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.205207,0.007806,-0.009503,0.249819,0,0);}
.m11_c01028{transform:matrix(0.206246,0.009497,-0.011499,0.249735,0,0);-ms-transform:matrix(0.206246,0.009497,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.206246,0.009497,-0.011499,0.249735,0,0);}
.m15_c01028{transform:matrix(0.207021,0.009532,-0.011499,0.249735,0,0);-ms-transform:matrix(0.207021,0.009532,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.207021,0.009532,-0.011499,0.249735,0,0);}
.m66_c01028{transform:matrix(0.207495,0.009762,-0.011749,0.249724,0,0);-ms-transform:matrix(0.207495,0.009762,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.207495,0.009762,-0.011749,0.249724,0,0);}
.m21_c01028{transform:matrix(0.207845,0.009570,-0.011499,0.249735,0,0);-ms-transform:matrix(0.207845,0.009570,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.207845,0.009570,-0.011499,0.249735,0,0);}
.m16_c01028{transform:matrix(0.208114,0.009583,-0.011499,0.249735,0,0);-ms-transform:matrix(0.208114,0.009583,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.208114,0.009583,-0.011499,0.249735,0,0);}
.mb0_c01028{transform:matrix(0.209052,0.009208,-0.011000,0.249758,0,0);-ms-transform:matrix(0.209052,0.009208,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.209052,0.009208,-0.011000,0.249758,0,0);}
.m10_c01028{transform:matrix(0.209473,0.009645,-0.011499,0.249735,0,0);-ms-transform:matrix(0.209473,0.009645,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.209473,0.009645,-0.011499,0.249735,0,0);}
.m57_c01028{transform:matrix(0.210063,0.009883,-0.011749,0.249724,0,0);-ms-transform:matrix(0.210063,0.009883,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.210063,0.009883,-0.011749,0.249724,0,0);}
.m69_c01028{transform:matrix(0.210262,0.009892,-0.011749,0.249724,0,0);-ms-transform:matrix(0.210262,0.009892,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.210262,0.009892,-0.011749,0.249724,0,0);}
.m5e_c01028{transform:matrix(0.210612,0.009909,-0.011749,0.249724,0,0);-ms-transform:matrix(0.210612,0.009909,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.210612,0.009909,-0.011749,0.249724,0,0);}
.m92_c01028{transform:matrix(0.210971,0.009714,-0.011499,0.249735,0,0);-ms-transform:matrix(0.210971,0.009714,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.210971,0.009714,-0.011499,0.249735,0,0);}
.md3_c01028{transform:matrix(0.211232,0.008035,-0.009503,0.249819,0,0);-ms-transform:matrix(0.211232,0.008035,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.211232,0.008035,-0.009503,0.249819,0,0);}
.me8_c01028{transform:matrix(0.211257,0.008036,-0.009503,0.249819,0,0);-ms-transform:matrix(0.211257,0.008036,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.211257,0.008036,-0.009503,0.249819,0,0);}
.mac_c01028{transform:matrix(0.211280,0.009306,-0.011000,0.249758,0,0);-ms-transform:matrix(0.211280,0.009306,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.211280,0.009306,-0.011000,0.249758,0,0);}
.m59_c01028{transform:matrix(0.212355,0.009991,-0.011749,0.249724,0,0);-ms-transform:matrix(0.212355,0.009991,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.212355,0.009991,-0.011749,0.249724,0,0);}
.me6_c01028{transform:matrix(0.212516,0.008084,-0.009503,0.249819,0,0);-ms-transform:matrix(0.212516,0.008084,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.212516,0.008084,-0.009503,0.249819,0,0);}
.mab_c01028{transform:matrix(0.212619,0.009365,-0.011000,0.249758,0,0);-ms-transform:matrix(0.212619,0.009365,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.212619,0.009365,-0.011000,0.249758,0,0);}
.me_c01028{transform:matrix(0.212680,0.008516,-0.010002,0.249800,0,0);-ms-transform:matrix(0.212680,0.008516,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.212680,0.008516,-0.010002,0.249800,0,0);}
.m3f_c01028{transform:matrix(0.213284,0.009821,-0.011499,0.249735,0,0);-ms-transform:matrix(0.213284,0.009821,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.213284,0.009821,-0.011499,0.249735,0,0);}
.m61_c01028{transform:matrix(0.214353,0.010085,-0.011749,0.249724,0,0);-ms-transform:matrix(0.214353,0.010085,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.214353,0.010085,-0.011749,0.249724,0,0);}
.m6e_c01028{transform:matrix(0.214912,0.010111,-0.011749,0.249724,0,0);-ms-transform:matrix(0.214912,0.010111,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.214912,0.010111,-0.011749,0.249724,0,0);}
.mf4_c01028{transform:matrix(0.214995,0.008178,-0.009503,0.249819,0,0);-ms-transform:matrix(0.214995,0.008178,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.214995,0.008178,-0.009503,0.249819,0,0);}
.ma7_c01028{transform:matrix(0.215042,0.009471,-0.011000,0.249758,0,0);-ms-transform:matrix(0.215042,0.009471,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.215042,0.009471,-0.011000,0.249758,0,0);}
.me3_c01028{transform:matrix(0.215319,0.008190,-0.009503,0.249819,0,0);-ms-transform:matrix(0.215319,0.008190,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.215319,0.008190,-0.009503,0.249819,0,0);}
.m9b_c01028{transform:matrix(0.215437,0.011430,-0.013245,0.249649,0,0);-ms-transform:matrix(0.215437,0.011430,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.215437,0.011430,-0.013245,0.249649,0,0);}
.mb_c01028{transform:matrix(0.215832,0.008642,-0.010002,0.249800,0,0);-ms-transform:matrix(0.215832,0.008642,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.215832,0.008642,-0.010002,0.249800,0,0);}
.m34_c01028{transform:matrix(0.216106,0.009951,-0.011499,0.249735,0,0);-ms-transform:matrix(0.216106,0.009951,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.216106,0.009951,-0.011499,0.249735,0,0);}
.mb8_c01028{transform:matrix(0.216813,0.008247,-0.009503,0.249819,0,0);-ms-transform:matrix(0.216813,0.008247,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.216813,0.008247,-0.009503,0.249819,0,0);}
.m3d_c01028{transform:matrix(0.216885,0.009987,-0.011499,0.249735,0,0);-ms-transform:matrix(0.216885,0.009987,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.216885,0.009987,-0.011499,0.249735,0,0);}
.m45_c01028{transform:matrix(0.217005,0.009992,-0.011499,0.249735,0,0);-ms-transform:matrix(0.217005,0.009992,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.217005,0.009992,-0.011499,0.249735,0,0);}
.mf9_c01028{transform:matrix(0.217100,0.008475,-0.009752,0.249810,0,0);-ms-transform:matrix(0.217100,0.008475,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.217100,0.008475,-0.009752,0.249810,0,0);}
.m32_c01028{transform:matrix(0.217350,0.010008,-0.011499,0.249735,0,0);-ms-transform:matrix(0.217350,0.010008,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.217350,0.010008,-0.011499,0.249735,0,0);}
.m29_c01028{transform:matrix(0.218309,0.010052,-0.011499,0.249735,0,0);-ms-transform:matrix(0.218309,0.010052,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.218309,0.010052,-0.011499,0.249735,0,0);}
.m113_c01028{transform:matrix(0.218893,0.013599,-0.015501,0.249519,0,0);-ms-transform:matrix(0.218893,0.013599,-0.015501,0.249519,0,0);-webkit-transform:matrix(0.218893,0.013599,-0.015501,0.249519,0,0);}
.m5c_c01028{transform:matrix(0.218898,0.010298,-0.011749,0.249724,0,0);-ms-transform:matrix(0.218898,0.010298,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.218898,0.010298,-0.011749,0.249724,0,0);}
.m115_c01028{transform:matrix(0.219731,0.013651,-0.015501,0.249519,0,0);-ms-transform:matrix(0.219731,0.013651,-0.015501,0.249519,0,0);-webkit-transform:matrix(0.219731,0.013651,-0.015501,0.249519,0,0);}
.m112_c01028{transform:matrix(0.219811,0.013656,-0.015501,0.249519,0,0);-ms-transform:matrix(0.219811,0.013656,-0.015501,0.249519,0,0);-webkit-transform:matrix(0.219811,0.013656,-0.015501,0.249519,0,0);}
.m8_c01028{transform:matrix(0.219994,0.008809,-0.010002,0.249800,0,0);-ms-transform:matrix(0.219994,0.008809,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.219994,0.008809,-0.010002,0.249800,0,0);}
.m11b_c01028{transform:matrix(0.220096,0.008372,-0.009503,0.249819,0,0);-ms-transform:matrix(0.220096,0.008372,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.220096,0.008372,-0.009503,0.249819,0,0);}
.md2_c01028{transform:matrix(0.220211,0.008376,-0.009503,0.249819,0,0);-ms-transform:matrix(0.220211,0.008376,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.220211,0.008376,-0.009503,0.249819,0,0);}
.m5b_c01028{transform:matrix(0.220291,0.010364,-0.011749,0.249724,0,0);-ms-transform:matrix(0.220291,0.010364,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.220291,0.010364,-0.011749,0.249724,0,0);}
.m114_c01028{transform:matrix(0.220779,0.013716,-0.015501,0.249519,0,0);-ms-transform:matrix(0.220779,0.013716,-0.015501,0.249519,0,0);-webkit-transform:matrix(0.220779,0.013716,-0.015501,0.249519,0,0);}
.mae_c01028{transform:matrix(0.220871,0.009728,-0.011000,0.249758,0,0);-ms-transform:matrix(0.220871,0.009728,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.220871,0.009728,-0.011000,0.249758,0,0);}
.m35_c01028{transform:matrix(0.221011,0.010177,-0.011499,0.249735,0,0);-ms-transform:matrix(0.221011,0.010177,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.221011,0.010177,-0.011499,0.249735,0,0);}
.m8b_c01028{transform:matrix(0.221340,0.010413,-0.011749,0.249724,0,0);-ms-transform:matrix(0.221340,0.010413,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.221340,0.010413,-0.011749,0.249724,0,0);}
.ma_c01028{transform:matrix(0.221503,0.008869,-0.010002,0.249800,0,0);-ms-transform:matrix(0.221503,0.008869,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.221503,0.008869,-0.010002,0.249800,0,0);}
.m26_c01028{transform:matrix(0.221580,0.010203,-0.011499,0.249735,0,0);-ms-transform:matrix(0.221580,0.010203,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.221580,0.010203,-0.011499,0.249735,0,0);}
.m70_c01028{transform:matrix(0.221640,0.010428,-0.011749,0.249724,0,0);-ms-transform:matrix(0.221640,0.010428,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.221640,0.010428,-0.011749,0.249724,0,0);}
.ma1_c01028{transform:matrix(0.221798,0.011767,-0.013245,0.249649,0,0);-ms-transform:matrix(0.221798,0.011767,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.221798,0.011767,-0.013245,0.249649,0,0);}
.m13_c01028{transform:matrix(0.221800,0.010213,-0.011499,0.249735,0,0);-ms-transform:matrix(0.221800,0.010213,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.221800,0.010213,-0.011499,0.249735,0,0);}
.m12a_c01028{transform:matrix(0.222269,0.008455,-0.009503,0.249819,0,0);-ms-transform:matrix(0.222269,0.008455,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.222269,0.008455,-0.009503,0.249819,0,0);}
.mfa_c01028{transform:matrix(0.223310,0.008718,-0.009752,0.249810,0,0);-ms-transform:matrix(0.223310,0.008718,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.223310,0.008718,-0.009752,0.249810,0,0);}
.m1d_c01028{transform:matrix(0.223833,0.010307,-0.011499,0.249735,0,0);-ms-transform:matrix(0.223833,0.010307,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.223833,0.010307,-0.011499,0.249735,0,0);}
.maa_c01028{transform:matrix(0.224093,0.009870,-0.011000,0.249758,0,0);-ms-transform:matrix(0.224093,0.009870,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.224093,0.009870,-0.011000,0.249758,0,0);}
.mff_c01028{transform:matrix(0.224139,0.008750,-0.009752,0.249810,0,0);-ms-transform:matrix(0.224139,0.008750,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.224139,0.008750,-0.009752,0.249810,0,0);}
.m38_c01028{transform:matrix(0.224397,0.010333,-0.011499,0.249735,0,0);-ms-transform:matrix(0.224397,0.010333,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.224397,0.010333,-0.011499,0.249735,0,0);}
.m100_c01028{transform:matrix(0.224419,0.008761,-0.009752,0.249810,0,0);-ms-transform:matrix(0.224419,0.008761,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.224419,0.008761,-0.009752,0.249810,0,0);}
.m18_c01028{transform:matrix(0.224472,0.010336,-0.011499,0.249735,0,0);-ms-transform:matrix(0.224472,0.010336,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.224472,0.010336,-0.011499,0.249735,0,0);}
.m9f_c01028{transform:matrix(0.225054,0.011940,-0.013245,0.249649,0,0);-ms-transform:matrix(0.225054,0.011940,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.225054,0.011940,-0.013245,0.249649,0,0);}
.m104_c01028{transform:matrix(0.225388,0.008799,-0.009752,0.249810,0,0);-ms-transform:matrix(0.225388,0.008799,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.225388,0.008799,-0.009752,0.249810,0,0);}
.m5d_c01028{transform:matrix(0.225436,0.010606,-0.011749,0.249724,0,0);-ms-transform:matrix(0.225436,0.010606,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.225436,0.010606,-0.011749,0.249724,0,0);}
.mb5_c01028{transform:matrix(0.226426,0.008613,-0.009503,0.249819,0,0);-ms-transform:matrix(0.226426,0.008613,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.226426,0.008613,-0.009503,0.249819,0,0);}
.m105_c01028{transform:matrix(0.226467,0.008841,-0.009752,0.249810,0,0);-ms-transform:matrix(0.226467,0.008841,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.226467,0.008841,-0.009752,0.249810,0,0);}
.mfc_c01028{transform:matrix(0.226932,0.008859,-0.009752,0.249810,0,0);-ms-transform:matrix(0.226932,0.008859,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.226932,0.008859,-0.009752,0.249810,0,0);}
.m43_c01028{transform:matrix(0.227364,0.010469,-0.011499,0.249735,0,0);-ms-transform:matrix(0.227364,0.010469,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.227364,0.010469,-0.011499,0.249735,0,0);}
.m1f_c01028{transform:matrix(0.227514,0.010476,-0.011499,0.249735,0,0);-ms-transform:matrix(0.227514,0.010476,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.227514,0.010476,-0.011499,0.249735,0,0);}
.m5f_c01028{transform:matrix(0.227658,0.010711,-0.011749,0.249724,0,0);-ms-transform:matrix(0.227658,0.010711,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.227658,0.010711,-0.011749,0.249724,0,0);}
.m1b_c01028{transform:matrix(0.227734,0.010486,-0.011499,0.249735,0,0);-ms-transform:matrix(0.227734,0.010486,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.227734,0.010486,-0.011499,0.249735,0,0);}
.ma4_c01028{transform:matrix(0.227735,0.012082,-0.013245,0.249649,0,0);-ms-transform:matrix(0.227735,0.012082,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.227735,0.012082,-0.013245,0.249649,0,0);}
.m9c_c01028{transform:matrix(0.228004,0.012096,-0.013245,0.249649,0,0);-ms-transform:matrix(0.228004,0.012096,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.228004,0.012096,-0.013245,0.249649,0,0);}
.m6b_c01028{transform:matrix(0.228118,0.010732,-0.011749,0.249724,0,0);-ms-transform:matrix(0.228118,0.010732,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.228118,0.010732,-0.011749,0.249724,0,0);}
.mcb_c01028{transform:matrix(0.228530,0.008693,-0.009503,0.249819,0,0);-ms-transform:matrix(0.228530,0.008693,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.228530,0.008693,-0.009503,0.249819,0,0);}
.m22_c01028{transform:matrix(0.228907,0.010540,-0.011499,0.249735,0,0);-ms-transform:matrix(0.228907,0.010540,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.228907,0.010540,-0.011499,0.249735,0,0);}
.maf_c01028{transform:matrix(0.229408,0.010104,-0.011000,0.249758,0,0);-ms-transform:matrix(0.229408,0.010104,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.229408,0.010104,-0.011000,0.249758,0,0);}
.mea_c01028{transform:matrix(0.230308,0.008760,-0.009503,0.249819,0,0);-ms-transform:matrix(0.230308,0.008760,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.230308,0.008760,-0.009503,0.249819,0,0);}
.m2c_c01028{transform:matrix(0.230406,0.010609,-0.011499,0.249735,0,0);-ms-transform:matrix(0.230406,0.010609,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.230406,0.010609,-0.011499,0.249735,0,0);}
.m36_c01028{transform:matrix(0.230830,0.010629,-0.011499,0.249735,0,0);-ms-transform:matrix(0.230830,0.010629,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.230830,0.010629,-0.011499,0.249735,0,0);}
.mee_c01028{transform:matrix(0.230868,0.008782,-0.009503,0.249819,0,0);-ms-transform:matrix(0.230868,0.008782,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.230868,0.008782,-0.009503,0.249819,0,0);}
.m65_c01028{transform:matrix(0.231044,0.010870,-0.011749,0.249724,0,0);-ms-transform:matrix(0.231044,0.010870,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.231044,0.010870,-0.011749,0.249724,0,0);}
.ma0_c01028{transform:matrix(0.231170,0.012264,-0.013245,0.249649,0,0);-ms-transform:matrix(0.231170,0.012264,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.231170,0.012264,-0.013245,0.249649,0,0);}
.m63_c01028{transform:matrix(0.231174,0.010876,-0.011749,0.249724,0,0);-ms-transform:matrix(0.231174,0.010876,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.231174,0.010876,-0.011749,0.249724,0,0);}
.m40_c01028{transform:matrix(0.231560,0.010662,-0.011499,0.249735,0,0);-ms-transform:matrix(0.231560,0.010662,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.231560,0.010662,-0.011499,0.249735,0,0);}
.m39_c01028{transform:matrix(0.231889,0.010678,-0.011499,0.249735,0,0);-ms-transform:matrix(0.231889,0.010678,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.231889,0.010678,-0.011499,0.249735,0,0);}
.mb4_c01028{transform:matrix(0.231927,0.008822,-0.009503,0.249819,0,0);-ms-transform:matrix(0.231927,0.008822,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.231927,0.008822,-0.009503,0.249819,0,0);}
.m124_c01028{transform:matrix(0.231997,0.008825,-0.009503,0.249819,0,0);-ms-transform:matrix(0.231997,0.008825,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.231997,0.008825,-0.009503,0.249819,0,0);}
.mce_c01028{transform:matrix(0.232192,0.008832,-0.009503,0.249819,0,0);-ms-transform:matrix(0.232192,0.008832,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.232192,0.008832,-0.009503,0.249819,0,0);}
.m71_c01028{transform:matrix(0.232718,0.010949,-0.011749,0.249724,0,0);-ms-transform:matrix(0.232718,0.010949,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.232718,0.010949,-0.011749,0.249724,0,0);}
.mcf_c01028{transform:matrix(0.234825,0.008932,-0.009503,0.249819,0,0);-ms-transform:matrix(0.234825,0.008932,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.234825,0.008932,-0.009503,0.249819,0,0);}
.m41_c01028{transform:matrix(0.235036,0.010822,-0.011499,0.249735,0,0);-ms-transform:matrix(0.235036,0.010822,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.235036,0.010822,-0.011499,0.249735,0,0);}
.m1c_c01028{transform:matrix(0.235161,0.010828,-0.011499,0.249735,0,0);-ms-transform:matrix(0.235161,0.010828,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.235161,0.010828,-0.011499,0.249735,0,0);}
.mb9_c01028{transform:matrix(0.235200,0.008947,-0.009503,0.249819,0,0);-ms-transform:matrix(0.235200,0.008947,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.235200,0.008947,-0.009503,0.249819,0,0);}
.m1e_c01028{transform:matrix(0.235386,0.010839,-0.011499,0.249735,0,0);-ms-transform:matrix(0.235386,0.010839,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.235386,0.010839,-0.011499,0.249735,0,0);}
.m9d_c01028{transform:matrix(0.236133,0.012528,-0.013245,0.249649,0,0);-ms-transform:matrix(0.236133,0.012528,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.236133,0.012528,-0.013245,0.249649,0,0);}
.mf6_c01028{transform:matrix(0.236254,0.008987,-0.009503,0.249819,0,0);-ms-transform:matrix(0.236254,0.008987,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.236254,0.008987,-0.009503,0.249819,0,0);}
.m67_c01028{transform:matrix(0.236279,0.011116,-0.011749,0.249724,0,0);-ms-transform:matrix(0.236279,0.011116,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.236279,0.011116,-0.011749,0.249724,0,0);}
.m4c_c01028{transform:matrix(0.236315,0.010881,-0.011499,0.249735,0,0);-ms-transform:matrix(0.236315,0.010881,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.236315,0.010881,-0.011499,0.249735,0,0);}
.mcd_c01028{transform:matrix(0.236494,0.008996,-0.009503,0.249819,0,0);-ms-transform:matrix(0.236494,0.008996,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.236494,0.008996,-0.009503,0.249819,0,0);}
.mf_c01028{transform:matrix(0.236565,0.009472,-0.010002,0.249800,0,0);-ms-transform:matrix(0.236565,0.009472,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.236565,0.009472,-0.010002,0.249800,0,0);}
.m20_c01028{transform:matrix(0.236774,0.010903,-0.011499,0.249735,0,0);-ms-transform:matrix(0.236774,0.010903,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.236774,0.010903,-0.011499,0.249735,0,0);}
.m64_c01028{transform:matrix(0.237517,0.011174,-0.011749,0.249724,0,0);-ms-transform:matrix(0.237517,0.011174,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.237517,0.011174,-0.011749,0.249724,0,0);}
.md1_c01028{transform:matrix(0.237843,0.009047,-0.009503,0.249819,0,0);-ms-transform:matrix(0.237843,0.009047,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.237843,0.009047,-0.009503,0.249819,0,0);}
.mb1_c01028{transform:matrix(0.238104,0.010487,-0.011000,0.249758,0,0);-ms-transform:matrix(0.238104,0.010487,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.238104,0.010487,-0.011000,0.249758,0,0);}
.mbb_c01028{transform:matrix(0.238582,0.009075,-0.009503,0.249819,0,0);-ms-transform:matrix(0.238582,0.009075,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.238582,0.009075,-0.009503,0.249819,0,0);}
.m118_c01028{transform:matrix(0.239057,0.009093,-0.009503,0.249819,0,0);-ms-transform:matrix(0.239057,0.009093,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.239057,0.009093,-0.009503,0.249819,0,0);}
.m47_c01028{transform:matrix(0.239152,0.011012,-0.011499,0.249735,0,0);-ms-transform:matrix(0.239152,0.011012,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.239152,0.011012,-0.011499,0.249735,0,0);}
.mfd_c01028{transform:matrix(0.239642,0.009355,-0.009752,0.249810,0,0);-ms-transform:matrix(0.239642,0.009355,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.239642,0.009355,-0.009752,0.249810,0,0);}
.m117_c01028{transform:matrix(0.239737,0.009119,-0.009503,0.249819,0,0);-ms-transform:matrix(0.239737,0.009119,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.239737,0.009119,-0.009503,0.249819,0,0);}
.m44_c01028{transform:matrix(0.240320,0.011066,-0.011499,0.249735,0,0);-ms-transform:matrix(0.240320,0.011066,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.240320,0.011066,-0.011499,0.249735,0,0);}
.m46_c01028{transform:matrix(0.240935,0.011094,-0.011499,0.249735,0,0);-ms-transform:matrix(0.240935,0.011094,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.240935,0.011094,-0.011499,0.249735,0,0);}
.mb2_c01028{transform:matrix(0.241701,0.010645,-0.011000,0.249758,0,0);-ms-transform:matrix(0.241701,0.010645,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.241701,0.010645,-0.011000,0.249758,0,0);}
.mf2_c01028{transform:matrix(0.241740,0.009195,-0.009503,0.249819,0,0);-ms-transform:matrix(0.241740,0.009195,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.241740,0.009195,-0.009503,0.249819,0,0);}
.m4f_c01028{transform:matrix(0.241829,0.011135,-0.011499,0.249735,0,0);-ms-transform:matrix(0.241829,0.011135,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.241829,0.011135,-0.011499,0.249735,0,0);}
.ma2_c01028{transform:matrix(0.242484,0.012865,-0.013245,0.249649,0,0);-ms-transform:matrix(0.242484,0.012865,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.242484,0.012865,-0.013245,0.249649,0,0);}
.m3b_c01028{transform:matrix(0.243292,0.011203,-0.011499,0.249735,0,0);-ms-transform:matrix(0.243292,0.011203,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.243292,0.011203,-0.011499,0.249735,0,0);}
.m6d_c01028{transform:matrix(0.243660,0.011464,-0.011749,0.249724,0,0);-ms-transform:matrix(0.243660,0.011464,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.243660,0.011464,-0.011749,0.249724,0,0);}
.m10f_c01028{transform:matrix(0.243925,0.015154,-0.015501,0.249519,0,0);-ms-transform:matrix(0.243925,0.015154,-0.015501,0.249519,0,0);-webkit-transform:matrix(0.243925,0.015154,-0.015501,0.249519,0,0);}
.md5_c01028{transform:matrix(0.244044,0.009283,-0.009503,0.249819,0,0);-ms-transform:matrix(0.244044,0.009283,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.244044,0.009283,-0.009503,0.249819,0,0);}
.mf5_c01028{transform:matrix(0.244538,0.009302,-0.009503,0.249819,0,0);-ms-transform:matrix(0.244538,0.009302,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.244538,0.009302,-0.009503,0.249819,0,0);}
.mb7_c01028{transform:matrix(0.244728,0.009309,-0.009503,0.249819,0,0);-ms-transform:matrix(0.244728,0.009309,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.244728,0.009309,-0.009503,0.249819,0,0);}
.m62_c01028{transform:matrix(0.249399,0.011733,-0.011749,0.249724,0,0);-ms-transform:matrix(0.249399,0.011733,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.249399,0.011733,-0.011749,0.249724,0,0);}
.m11f_c01028{transform:matrix(0.249570,0.009493,-0.009503,0.249819,0,0);-ms-transform:matrix(0.249570,0.009493,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.249570,0.009493,-0.009503,0.249819,0,0);}
.mf1_c01028{transform:matrix(0.251023,0.009548,-0.009503,0.249819,0,0);-ms-transform:matrix(0.251023,0.009548,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.251023,0.009548,-0.009503,0.249819,0,0);}
.mef_c01028{transform:matrix(0.252353,0.009599,-0.009503,0.249819,0,0);-ms-transform:matrix(0.252353,0.009599,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.252353,0.009599,-0.009503,0.249819,0,0);}
.mc2_c01028{transform:matrix(0.252512,0.009605,-0.009503,0.249819,0,0);-ms-transform:matrix(0.252512,0.009605,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.252512,0.009605,-0.009503,0.249819,0,0);}
.m6f_c01028{transform:matrix(0.252601,0.011884,-0.011749,0.249724,0,0);-ms-transform:matrix(0.252601,0.011884,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.252601,0.011884,-0.011749,0.249724,0,0);}
.m125_c01028{transform:matrix(0.253682,0.009650,-0.009503,0.249819,0,0);-ms-transform:matrix(0.253682,0.009650,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.253682,0.009650,-0.009503,0.249819,0,0);}
.m73_c01028{transform:matrix(0.254648,0.011980,-0.011749,0.249724,0,0);-ms-transform:matrix(0.254648,0.011980,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.254648,0.011980,-0.011749,0.249724,0,0);}
.mf3_c01028{transform:matrix(0.255125,0.009704,-0.009503,0.249819,0,0);-ms-transform:matrix(0.255125,0.009704,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.255125,0.009704,-0.009503,0.249819,0,0);}
.m6c_c01028{transform:matrix(0.255572,0.012024,-0.011749,0.249724,0,0);-ms-transform:matrix(0.255572,0.012024,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.255572,0.012024,-0.011749,0.249724,0,0);}
.m60_c01028{transform:matrix(0.255832,0.012036,-0.011749,0.249724,0,0);-ms-transform:matrix(0.255832,0.012036,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.255832,0.012036,-0.011749,0.249724,0,0);}
.meb_c01028{transform:matrix(0.255940,0.009735,-0.009503,0.249819,0,0);-ms-transform:matrix(0.255940,0.009735,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.255940,0.009735,-0.009503,0.249819,0,0);}
.mbf_c01028{transform:matrix(0.256020,0.009738,-0.009503,0.249819,0,0);-ms-transform:matrix(0.256020,0.009738,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.256020,0.009738,-0.009503,0.249819,0,0);}
.m6a_c01028{transform:matrix(0.258819,0.012177,-0.011749,0.249724,0,0);-ms-transform:matrix(0.258819,0.012177,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.258819,0.012177,-0.011749,0.249724,0,0);}
.m72_c01028{transform:matrix(0.259553,0.012211,-0.011749,0.249724,0,0);-ms-transform:matrix(0.259553,0.012211,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.259553,0.012211,-0.011749,0.249724,0,0);}
.mf0_c01028{transform:matrix(0.259952,0.009888,-0.009503,0.249819,0,0);-ms-transform:matrix(0.259952,0.009888,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.259952,0.009888,-0.009503,0.249819,0,0);}
.m50_c01028{transform:matrix(0.262227,0.012075,-0.011499,0.249735,0,0);-ms-transform:matrix(0.262227,0.012075,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.262227,0.012075,-0.011499,0.249735,0,0);}
.m4d_c01028{transform:matrix(0.264999,0.012202,-0.011499,0.249735,0,0);-ms-transform:matrix(0.264999,0.012202,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.264999,0.012202,-0.011499,0.249735,0,0);}
.md6_c01028{transform:matrix(0.265163,0.010086,-0.009503,0.249819,0,0);-ms-transform:matrix(0.265163,0.010086,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.265163,0.010086,-0.009503,0.249819,0,0);}
.mc0_c01028{transform:matrix(0.265308,0.010092,-0.009503,0.249819,0,0);-ms-transform:matrix(0.265308,0.010092,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.265308,0.010092,-0.009503,0.249819,0,0);}
.m110_c01028{transform:matrix(0.267060,0.016591,-0.015501,0.249519,0,0);-ms-transform:matrix(0.267060,0.016591,-0.015501,0.249519,0,0);-webkit-transform:matrix(0.267060,0.016591,-0.015501,0.249519,0,0);}
.m49_c01028{transform:matrix(0.268151,0.012347,-0.011499,0.249735,0,0);-ms-transform:matrix(0.268151,0.012347,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.268151,0.012347,-0.011499,0.249735,0,0);}
.mc6_c01028{transform:matrix(0.269035,0.010234,-0.009503,0.249819,0,0);-ms-transform:matrix(0.269035,0.010234,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.269035,0.010234,-0.009503,0.249819,0,0);}
.m4a_c01028{transform:matrix(0.270958,0.012477,-0.011499,0.249735,0,0);-ms-transform:matrix(0.270958,0.012477,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.270958,0.012477,-0.011499,0.249735,0,0);}
.mf7_c01028{transform:matrix(0.271699,0.010335,-0.009503,0.249819,0,0);-ms-transform:matrix(0.271699,0.010335,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.271699,0.010335,-0.009503,0.249819,0,0);}
.m119_c01028{transform:matrix(0.273257,0.010394,-0.009503,0.249819,0,0);-ms-transform:matrix(0.273257,0.010394,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.273257,0.010394,-0.009503,0.249819,0,0);}
.m116_c01028{transform:matrix(0.273347,0.010398,-0.009503,0.249819,0,0);-ms-transform:matrix(0.273347,0.010398,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.273347,0.010398,-0.009503,0.249819,0,0);}
.m4e_c01028{transform:matrix(0.273745,0.012605,-0.011499,0.249735,0,0);-ms-transform:matrix(0.273745,0.012605,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.273745,0.012605,-0.011499,0.249735,0,0);}
.mbe_c01028{transform:matrix(0.276095,0.010502,-0.009503,0.249819,0,0);-ms-transform:matrix(0.276095,0.010502,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.276095,0.010502,-0.009503,0.249819,0,0);}
.m4b_c01028{transform:matrix(0.276407,0.012727,-0.011499,0.249735,0,0);-ms-transform:matrix(0.276407,0.012727,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.276407,0.012727,-0.011499,0.249735,0,0);}
.mbc_c01028{transform:matrix(0.276945,0.010534,-0.009503,0.249819,0,0);-ms-transform:matrix(0.276945,0.010534,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.276945,0.010534,-0.009503,0.249819,0,0);}
.m11a_c01028{transform:matrix(0.279073,0.010615,-0.009503,0.249819,0,0);-ms-transform:matrix(0.279073,0.010615,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.279073,0.010615,-0.009503,0.249819,0,0);}
.m48_c01028{transform:matrix(0.280158,0.012900,-0.011499,0.249735,0,0);-ms-transform:matrix(0.280158,0.012900,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.280158,0.012900,-0.011499,0.249735,0,0);}
.mc5_c01028{transform:matrix(0.281526,0.010709,-0.009503,0.249819,0,0);-ms-transform:matrix(0.281526,0.010709,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.281526,0.010709,-0.009503,0.249819,0,0);}
.mc3_c01028{transform:matrix(0.281591,0.010711,-0.009503,0.249819,0,0);-ms-transform:matrix(0.281591,0.010711,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.281591,0.010711,-0.009503,0.249819,0,0);}
.m8d_c01028{transform:matrix(0.289585,0.013624,-0.011749,0.249724,0,0);-ms-transform:matrix(0.289585,0.013624,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.289585,0.013624,-0.011749,0.249724,0,0);}
.ma6_c01028{transform:matrix(0.291730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291730,0.000000,0.000000,0.250000,0,0);}
.m126_c01028{transform:matrix(0.292588,0.011129,-0.009503,0.249819,0,0);-ms-transform:matrix(0.292588,0.011129,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.292588,0.011129,-0.009503,0.249819,0,0);}
.ma5_c01028{transform:matrix(0.300472,0.015941,-0.013245,0.249649,0,0);-ms-transform:matrix(0.300472,0.015941,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.300472,0.015941,-0.013245,0.249649,0,0);}
.m8c_c01028{transform:matrix(0.302061,0.014211,-0.011749,0.249724,0,0);-ms-transform:matrix(0.302061,0.014211,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.302061,0.014211,-0.011749,0.249724,0,0);}
.mc4_c01028{transform:matrix(0.304435,0.011580,-0.009503,0.249819,0,0);-ms-transform:matrix(0.304435,0.011580,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.304435,0.011580,-0.009503,0.249819,0,0);}
.mc1_c01028{transform:matrix(0.311615,0.011853,-0.009503,0.249819,0,0);-ms-transform:matrix(0.311615,0.011853,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.311615,0.011853,-0.009503,0.249819,0,0);}
.m11d_c01028{transform:matrix(0.327218,0.012447,-0.009503,0.249819,0,0);-ms-transform:matrix(0.327218,0.012447,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.327218,0.012447,-0.009503,0.249819,0,0);}
.m3c_c01028{transform:matrix(0.327673,0.015088,-0.011499,0.249735,0,0);-ms-transform:matrix(0.327673,0.015088,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.327673,0.015088,-0.011499,0.249735,0,0);}
.mb3_c01028{transform:matrix(0.338012,0.014887,-0.011000,0.249758,0,0);-ms-transform:matrix(0.338012,0.014887,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.338012,0.014887,-0.011000,0.249758,0,0);}
.m11e_c01028{transform:matrix(0.338210,0.012865,-0.009503,0.249819,0,0);-ms-transform:matrix(0.338210,0.012865,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.338210,0.012865,-0.009503,0.249819,0,0);}
.m91_c01028{transform:matrix(0.345862,0.016272,-0.011749,0.249724,0,0);-ms-transform:matrix(0.345862,0.016272,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.345862,0.016272,-0.011749,0.249724,0,0);}
.mf8_c01028{transform:matrix(0.348198,0.013245,-0.009503,0.249819,0,0);-ms-transform:matrix(0.348198,0.013245,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.348198,0.013245,-0.009503,0.249819,0,0);}
.mc7_c01028{transform:matrix(0.445253,0.016937,-0.009503,0.249819,0,0);-ms-transform:matrix(0.445253,0.016937,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.445253,0.016937,-0.009503,0.249819,0,0);}
.mbd_c01028{transform:matrix(0.453902,0.017266,-0.009503,0.249819,0,0);-ms-transform:matrix(0.453902,0.017266,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.453902,0.017266,-0.009503,0.249819,0,0);}
.mc8_c01028{transform:matrix(0.589928,0.022440,-0.009503,0.249819,0,0);-ms-transform:matrix(0.589928,0.022440,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.589928,0.022440,-0.009503,0.249819,0,0);}
.mca_c01028{transform:matrix(0.622780,0.023689,-0.009503,0.249819,0,0);-ms-transform:matrix(0.622780,0.023689,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.622780,0.023689,-0.009503,0.249819,0,0);}
.m0_c01028{transform:matrix(0.723820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.723820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.723820,0.000000,0.000000,0.250000,0,0);}
.med_c01028{transform:matrix(1.179332,0.044859,-0.009503,0.249819,0,0);-ms-transform:matrix(1.179332,0.044859,-0.009503,0.249819,0,0);-webkit-transform:matrix(1.179332,0.044859,-0.009503,0.249819,0,0);}
.m6_c01028{transform:matrix(2.027525,0.075094,-0.009253,0.249829,0,0);-ms-transform:matrix(2.027525,0.075094,-0.009253,0.249829,0,0);-webkit-transform:matrix(2.027525,0.075094,-0.009253,0.249829,0,0);}
.m7_c01028{transform:matrix(3.246284,0.120233,-0.009253,0.249829,0,0);-ms-transform:matrix(3.246284,0.120233,-0.009253,0.249829,0,0);-webkit-transform:matrix(3.246284,0.120233,-0.009253,0.249829,0,0);}
.v0_c01028{vertical-align:0.000000px;}
.ls0_c01028{letter-spacing:0.000000px;}
.sc__c01028{text-shadow:none;}
.sc0_c01028{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__c01028{-webkit-text-stroke:0px transparent;}
.sc0_c01028{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01028{word-spacing:0.000000px;}
.fc0_c01028{color:transparent;}
.fs0_c01028{font-size:18.000000px;}
.fs10_c01028{font-size:24.000000px;}
.fs2_c01028{font-size:35.988658px;}
.fs13_c01028{font-size:65.981682px;}
.fs1a_c01028{font-size:71.980017px;}
.fs6_c01028{font-size:72.004212px;}
.fs16_c01028{font-size:77.978352px;}
.fsa_c01028{font-size:78.008190px;}
.fs12_c01028{font-size:83.976687px;}
.fs17_c01028{font-size:83.979922px;}
.fs19_c01028{font-size:83.993616px;}
.fs11_c01028{font-size:83.997354px;}
.fs5_c01028{font-size:84.004914px;}
.fs9_c01028{font-size:84.008820px;}
.fsf_c01028{font-size:84.034013px;}
.fs15_c01028{font-size:89.975022px;}
.fs3_c01028{font-size:89.982043px;}
.fs4_c01028{font-size:90.005265px;}
.fs8_c01028{font-size:90.009450px;}
.fs18_c01028{font-size:95.977053px;}
.fs7_c01028{font-size:96.005616px;}
.fsd_c01028{font-size:96.010079px;}
.fs1_c01028{font-size:101.964141px;}
.fse_c01028{font-size:102.005967px;}
.fs14_c01028{font-size:107.970026px;}
.fsc_c01028{font-size:114.011969px;}
.fsb_c01028{font-size:126.013229px;}
.y0_c01028{bottom:0.000000px;}
.y12c_c01028{bottom:59.480593px;}
.y12b_c01028{bottom:63.222643px;}
.y12a_c01028{bottom:64.445807px;}
.y129_c01028{bottom:66.184363px;}
.y128_c01028{bottom:68.009617px;}
.y127_c01028{bottom:69.282484px;}
.y126_c01028{bottom:74.970970px;}
.y125_c01028{bottom:75.833495px;}
.y11f_c01028{bottom:76.202109px;}
.y11e_c01028{bottom:77.674476px;}
.y124_c01028{bottom:77.871814px;}
.y123_c01028{bottom:79.152604px;}
.y122_c01028{bottom:80.766160px;}
.y121_c01028{bottom:82.058350px;}
.y11d_c01028{bottom:82.508475px;}
.y120_c01028{bottom:84.558427px;}
.y11c_c01028{bottom:89.471709px;}
.y11b_c01028{bottom:93.656592px;}
.y11a_c01028{bottom:96.599331px;}
.y119_c01028{bottom:97.828080px;}
.y118_c01028{bottom:99.027645px;}
.y117_c01028{bottom:100.995000px;}
.y116_c01028{bottom:108.379044px;}
.y115_c01028{bottom:110.418348px;}
.y114_c01028{bottom:113.857953px;}
.y113_c01028{bottom:117.117975px;}
.y112_c01028{bottom:119.260695px;}
.y111_c01028{bottom:124.799124px;}
.y10f_c01028{bottom:130.374315px;}
.y110_c01028{bottom:135.571500px;}
.y10e_c01028{bottom:139.640584px;}
.y10d_c01028{bottom:141.901983px;}
.y10c_c01028{bottom:144.099639px;}
.y10b_c01028{bottom:145.385289px;}
.y10a_c01028{bottom:146.283570px;}
.y109_c01028{bottom:148.036162px;}
.y108_c01028{bottom:149.365373px;}
.y107_c01028{bottom:152.390102px;}
.y106_c01028{bottom:156.365564px;}
.y105_c01028{bottom:167.029155px;}
.y104_c01028{bottom:168.339906px;}
.y103_c01028{bottom:169.661714px;}
.y102_c01028{bottom:170.535879px;}
.y101_c01028{bottom:173.132109px;}
.y100_c01028{bottom:175.760689px;}
.yff_c01028{bottom:176.614204px;}
.yf9_c01028{bottom:180.120465px;}
.yfe_c01028{bottom:181.724063px;}
.yf8_c01028{bottom:183.887309px;}
.yfd_c01028{bottom:184.328307px;}
.yfc_c01028{bottom:185.630166px;}
.yf7_c01028{bottom:185.956244px;}
.yfb_c01028{bottom:187.736224px;}
.yf6_c01028{bottom:190.181988px;}
.yfa_c01028{bottom:190.638000px;}
.yf5_c01028{bottom:192.337943px;}
.yf4_c01028{bottom:198.055260px;}
.yf3_c01028{bottom:202.250777px;}
.yf2_c01028{bottom:207.230235px;}
.yf1_c01028{bottom:216.297458px;}
.yf0_c01028{bottom:222.569466px;}
.yef_c01028{bottom:226.080438px;}
.yee_c01028{bottom:257.507289px;}
.yed_c01028{bottom:257.509158px;}
.yec_c01028{bottom:257.512136px;}
.yeb_c01028{bottom:257.517977px;}
.yea_c01028{bottom:257.518512px;}
.ye9_c01028{bottom:257.520416px;}
.ye8_c01028{bottom:257.522269px;}
.ye7_c01028{bottom:257.524659px;}
.ye6_c01028{bottom:257.526513px;}
.ye5_c01028{bottom:257.526777px;}
.ye4_c01028{bottom:257.529890px;}
.ye3_c01028{bottom:262.067521px;}
.ye2_c01028{bottom:264.117558px;}
.ye1_c01028{bottom:267.210324px;}
.ye0_c01028{bottom:269.814489px;}
.ydf_c01028{bottom:273.503304px;}
.yde_c01028{bottom:275.594878px;}
.ydd_c01028{bottom:279.221431px;}
.ydc_c01028{bottom:282.772197px;}
.ydb_c01028{bottom:288.459935px;}
.yda_c01028{bottom:290.490159px;}
.yd9_c01028{bottom:291.534770px;}
.yd8_c01028{bottom:293.010124px;}
.yd7_c01028{bottom:306.251118px;}
.yd6_c01028{bottom:309.095567px;}
.yd5_c01028{bottom:310.629351px;}
.yd4_c01028{bottom:312.192189px;}
.yd3_c01028{bottom:313.915212px;}
.yd2_c01028{bottom:317.459990px;}
.yd1_c01028{bottom:318.628521px;}
.yd0_c01028{bottom:319.480656px;}
.ycf_c01028{bottom:322.998774px;}
.yce_c01028{bottom:326.916899px;}
.ycd_c01028{bottom:328.093125px;}
.ycc_c01028{bottom:329.706033px;}
.ycb_c01028{bottom:357.653921px;}
.yca_c01028{bottom:357.819684px;}
.yc9_c01028{bottom:359.162151px;}
.yc8_c01028{bottom:359.619630px;}
.yc7_c01028{bottom:359.938108px;}
.yc6_c01028{bottom:360.597352px;}
.yc5_c01028{bottom:361.402670px;}
.yc4_c01028{bottom:362.035483px;}
.yc3_c01028{bottom:362.369363px;}
.yc2_c01028{bottom:363.466566px;}
.yc1_c01028{bottom:363.803286px;}
.yc0_c01028{bottom:364.133445px;}
.ybf_c01028{bottom:364.780422px;}
.ybe_c01028{bottom:373.960428px;}
.ybd_c01028{bottom:379.645665px;}
.ybc_c01028{bottom:382.561158px;}
.ybb_c01028{bottom:383.818350px;}
.yba_c01028{bottom:387.568722px;}
.yb9_c01028{bottom:389.300610px;}
.yb8_c01028{bottom:395.136156px;}
.yb7_c01028{bottom:396.367242px;}
.yb6_c01028{bottom:398.414397px;}
.yb5_c01028{bottom:400.972500px;}
.yb4_c01028{bottom:409.991646px;}
.yb3_c01028{bottom:414.813276px;}
.yb2_c01028{bottom:419.676882px;}
.yb1_c01028{bottom:421.170858px;}
.yb0_c01028{bottom:423.652062px;}
.yaf_c01028{bottom:426.024696px;}
.yae_c01028{bottom:427.451022px;}
.yad_c01028{bottom:429.400596px;}
.ya7_c01028{bottom:431.190000px;}
.yac_c01028{bottom:431.317698px;}
.yab_c01028{bottom:434.242026px;}
.yaa_c01028{bottom:435.186288px;}
.ya9_c01028{bottom:437.097648px;}
.ya6_c01028{bottom:438.932277px;}
.ya8_c01028{bottom:439.039500px;}
.ya5_c01028{bottom:442.337739px;}
.ya4_c01028{bottom:444.112735px;}
.ya3_c01028{bottom:449.977053px;}
.ya2_c01028{bottom:452.919348px;}
.ya1_c01028{bottom:457.054461px;}
.ya0_c01028{bottom:460.511995px;}
.y9f_c01028{bottom:462.259883px;}
.y9e_c01028{bottom:467.486292px;}
.y9d_c01028{bottom:471.536419px;}
.y9c_c01028{bottom:473.880000px;}
.y9b_c01028{bottom:480.813822px;}
.y9a_c01028{bottom:483.907713px;}
.y99_c01028{bottom:485.402253px;}
.y98_c01028{bottom:486.928326px;}
.y97_c01028{bottom:493.998825px;}
.y96_c01028{bottom:498.571386px;}
.y95_c01028{bottom:500.080071px;}
.y94_c01028{bottom:502.127232px;}
.y93_c01028{bottom:504.940500px;}
.y92_c01028{bottom:515.674233px;}
.y91_c01028{bottom:517.858829px;}
.y90_c01028{bottom:537.098376px;}
.y8f_c01028{bottom:539.621405px;}
.y8e_c01028{bottom:540.429304px;}
.y8d_c01028{bottom:542.172420px;}
.y8c_c01028{bottom:550.255313px;}
.y8b_c01028{bottom:552.871419px;}
.y8a_c01028{bottom:554.188241px;}
.y89_c01028{bottom:556.941659px;}
.y88_c01028{bottom:558.764898px;}
.y87_c01028{bottom:562.798197px;}
.y86_c01028{bottom:564.172721px;}
.y85_c01028{bottom:567.763983px;}
.y84_c01028{bottom:572.276964px;}
.y83_c01028{bottom:575.436747px;}
.y82_c01028{bottom:576.315955px;}
.y81_c01028{bottom:579.437793px;}
.y80_c01028{bottom:592.180092px;}
.y7f_c01028{bottom:593.873701px;}
.y7e_c01028{bottom:595.122941px;}
.y7d_c01028{bottom:596.834050px;}
.y7c_c01028{bottom:598.875311px;}
.y7b_c01028{bottom:601.405019px;}
.y7a_c01028{bottom:602.678667px;}
.y79_c01028{bottom:606.029898px;}
.y78_c01028{bottom:608.126057px;}
.y77_c01028{bottom:612.294599px;}
.y76_c01028{bottom:613.542216px;}
.y75_c01028{bottom:615.624804px;}
.y74_c01028{bottom:622.866132px;}
.y73_c01028{bottom:627.857054px;}
.y72_c01028{bottom:629.385671px;}
.y71_c01028{bottom:630.862347px;}
.y70_c01028{bottom:633.860661px;}
.y6f_c01028{bottom:635.296484px;}
.y6e_c01028{bottom:637.789512px;}
.y6d_c01028{bottom:642.229500px;}
.y6c_c01028{bottom:644.200834px;}
.y6b_c01028{bottom:649.641806px;}
.y6a_c01028{bottom:657.614648px;}
.y69_c01028{bottom:659.015468px;}
.y68_c01028{bottom:662.830064px;}
.y67_c01028{bottom:664.739547px;}
.y66_c01028{bottom:669.017300px;}
.y65_c01028{bottom:673.747017px;}
.y64_c01028{bottom:677.096341px;}
.y63_c01028{bottom:678.475766px;}
.y62_c01028{bottom:680.822498px;}
.y61_c01028{bottom:682.284810px;}
.y60_c01028{bottom:685.554771px;}
.y5f_c01028{bottom:692.065824px;}
.y5e_c01028{bottom:696.780512px;}
.y5d_c01028{bottom:700.379114px;}
.y5c_c01028{bottom:704.519861px;}
.y5b_c01028{bottom:705.987318px;}
.y5a_c01028{bottom:708.662370px;}
.y59_c01028{bottom:710.184677px;}
.y58_c01028{bottom:713.246774px;}
.y57_c01028{bottom:714.834857px;}
.y56_c01028{bottom:716.411448px;}
.y55_c01028{bottom:717.958500px;}
.y54_c01028{bottom:735.484340px;}
.y53_c01028{bottom:751.277587px;}
.y52_c01028{bottom:754.127559px;}
.y51_c01028{bottom:764.672444px;}
.y50_c01028{bottom:766.022370px;}
.y4f_c01028{bottom:769.166613px;}
.y4e_c01028{bottom:772.653552px;}
.y4d_c01028{bottom:773.973750px;}
.y4c_c01028{bottom:777.931288px;}
.y4b_c01028{bottom:781.048218px;}
.y4a_c01028{bottom:784.118061px;}
.y49_c01028{bottom:789.765738px;}
.y48_c01028{bottom:797.097990px;}
.y47_c01028{bottom:801.229062px;}
.y46_c01028{bottom:803.849857px;}
.y45_c01028{bottom:809.065988px;}
.y44_c01028{bottom:810.613504px;}
.y43_c01028{bottom:812.210751px;}
.y42_c01028{bottom:817.285056px;}
.y41_c01028{bottom:821.998658px;}
.y40_c01028{bottom:824.017653px;}
.y3f_c01028{bottom:825.564204px;}
.y3e_c01028{bottom:828.112983px;}
.y3d_c01028{bottom:833.983233px;}
.y3c_c01028{bottom:837.243828px;}
.y3b_c01028{bottom:838.726224px;}
.y3a_c01028{bottom:842.260611px;}
.y39_c01028{bottom:845.296473px;}
.y38_c01028{bottom:846.847317px;}
.y37_c01028{bottom:849.941760px;}
.y36_c01028{bottom:852.938637px;}
.y35_c01028{bottom:854.456844px;}
.y34_c01028{bottom:855.934410px;}
.y33_c01028{bottom:858.008619px;}
.y32_c01028{bottom:860.508075px;}
.y31_c01028{bottom:861.481389px;}
.y30_c01028{bottom:863.481768px;}
.y2f_c01028{bottom:869.612691px;}
.y2e_c01028{bottom:871.957112px;}
.y2d_c01028{bottom:878.504610px;}
.y2c_c01028{bottom:879.877820px;}
.y2b_c01028{bottom:882.169860px;}
.y2a_c01028{bottom:885.481746px;}
.y29_c01028{bottom:887.253849px;}
.y28_c01028{bottom:888.671139px;}
.y27_c01028{bottom:893.237399px;}
.y26_c01028{bottom:895.559907px;}
.y25_c01028{bottom:896.959031px;}
.y24_c01028{bottom:906.384492px;}
.y23_c01028{bottom:910.002099px;}
.y22_c01028{bottom:911.354298px;}
.y21_c01028{bottom:915.423729px;}
.y20_c01028{bottom:919.062124px;}
.y1f_c01028{bottom:922.697967px;}
.y1e_c01028{bottom:926.229533px;}
.y1d_c01028{bottom:928.071081px;}
.y1c_c01028{bottom:930.781896px;}
.y1b_c01028{bottom:932.059941px;}
.y1a_c01028{bottom:941.888259px;}
.y19_c01028{bottom:946.971627px;}
.y18_c01028{bottom:948.519780px;}
.y17_c01028{bottom:951.116250px;}
.y16_c01028{bottom:954.092358px;}
.y15_c01028{bottom:955.595316px;}
.y14_c01028{bottom:960.688965px;}
.y13_c01028{bottom:962.158665px;}
.y12_c01028{bottom:963.699987px;}
.y11_c01028{bottom:965.278500px;}
.y10_c01028{bottom:1005.719100px;}
.yf_c01028{bottom:1008.320280px;}
.ye_c01028{bottom:1009.673100px;}
.yd_c01028{bottom:1011.008220px;}
.yc_c01028{bottom:1014.082920px;}
.yb_c01028{bottom:1017.660480px;}
.ya_c01028{bottom:1019.820900px;}
.y9_c01028{bottom:1022.517000px;}
.y8_c01028{bottom:1057.279992px;}
.y7_c01028{bottom:1061.379000px;}
.y6_c01028{bottom:1064.538468px;}
.y5_c01028{bottom:1064.853180px;}
.y4_c01028{bottom:1070.157924px;}
.y3_c01028{bottom:1073.327130px;}
.y2_c01028{bottom:1076.508000px;}
.y1_c01028{bottom:1153.711500px;}
.h2_c01028{height:18.000000px;}
.h12_c01028{height:24.000000px;}
.h4_c01028{height:35.988658px;}
.h15_c01028{height:65.981682px;}
.h1c_c01028{height:71.980017px;}
.h8_c01028{height:72.004212px;}
.h18_c01028{height:77.978352px;}
.hc_c01028{height:78.008190px;}
.h14_c01028{height:83.976687px;}
.h19_c01028{height:83.979922px;}
.h1b_c01028{height:83.993616px;}
.h13_c01028{height:83.997354px;}
.h7_c01028{height:84.004914px;}
.hb_c01028{height:84.008820px;}
.h11_c01028{height:84.034013px;}
.h17_c01028{height:89.975022px;}
.h5_c01028{height:89.982043px;}
.h6_c01028{height:90.005265px;}
.ha_c01028{height:90.009450px;}
.h1a_c01028{height:95.977053px;}
.h9_c01028{height:96.005616px;}
.hf_c01028{height:96.010079px;}
.h3_c01028{height:101.964141px;}
.h10_c01028{height:102.005967px;}
.h16_c01028{height:107.970026px;}
.he_c01028{height:114.011969px;}
.hd_c01028{height:126.013229px;}
.h0_c01028{height:1246.320000px;}
.h1_c01028{height:1246.500000px;}
.w0_c01028{width:862.920000px;}
.w1_c01028{width:863.250000px;}
.x0_c01028{left:0.000000px;}
.x1_c01028{left:21.600000px;}
.xcf_c01028{left:127.106745px;}
.xc1_c01028{left:129.202795px;}
.xb4_c01028{left:131.963001px;}
.xa2_c01028{left:135.080849px;}
.x93_c01028{left:137.376000px;}
.x81_c01028{left:140.383500px;}
.x74_c01028{left:142.956225px;}
.x62_c01028{left:145.254042px;}
.x5b_c01028{left:146.321297px;}
.x52_c01028{left:148.236168px;}
.x46_c01028{left:150.561318px;}
.x3f_c01028{left:152.836023px;}
.x37_c01028{left:154.457601px;}
.x22_c01028{left:155.921784px;}
.x1a_c01028{left:158.613243px;}
.xaa_c01028{left:167.083284px;}
.xa3_c01028{left:179.850458px;}
.x8b_c01028{left:183.510867px;}
.x82_c01028{left:184.557782px;}
.xb5_c01028{left:186.785420px;}
.x75_c01028{left:188.753219px;}
.x1b_c01028{left:189.760747px;}
.xd0_c01028{left:192.832454px;}
.xca_c01028{left:194.141228px;}
.x2b_c01028{left:198.785877px;}
.x63_c01028{left:199.990398px;}
.x9a_c01028{left:202.646400px;}
.x94_c01028{left:204.627181px;}
.xbc_c01028{left:207.248095px;}
.x38_c01028{left:208.636381px;}
.x76_c01028{left:209.979434px;}
.xa4_c01028{left:212.469260px;}
.x2c_c01028{left:219.923718px;}
.x6e_c01028{left:221.201792px;}
.x53_c01028{left:224.188395px;}
.xcb_c01028{left:225.677160px;}
.x8c_c01028{left:226.907427px;}
.xc2_c01028{left:228.498535px;}
.x47_c01028{left:229.642057px;}
.x64_c01028{left:232.797461px;}
.x9b_c01028{left:235.549497px;}
.x39_c01028{left:241.505959px;}
.x6f_c01028{left:242.634906px;}
.x23_c01028{left:244.442475px;}
.x8d_c01028{left:248.346467px;}
.xae_c01028{left:253.761846px;}
.x1c_c01028{left:255.807330px;}
.x48_c01028{left:258.322500px;}
.x83_c01028{left:260.898864px;}
.x10_c01028{left:266.398500px;}
.x9c_c01028{left:269.019597px;}
.x2d_c01028{left:274.205382px;}
.x77_c01028{left:276.280083px;}
.x3a_c01028{left:284.407512px;}
.x49_c01028{left:291.205584px;}
.x40_c01028{left:293.882290px;}
.xaf_c01028{left:297.759866px;}
.x11_c01028{left:300.679685px;}
.xc6_c01028{left:302.229504px;}
.xc3_c01028{left:304.055974px;}
.x7a_c01028{left:305.646342px;}
.x5c_c01028{left:310.863045px;}
.x54_c01028{left:312.652426px;}
.x8e_c01028{left:314.742005px;}
.x2e_c01028{left:319.251790px;}
.xa5_c01028{left:321.195198px;}
.x4a_c01028{left:324.716539px;}
.x12_c01028{left:334.153177px;}
.xcc_c01028{left:335.343384px;}
.x2_c01028{left:337.545000px;}
.x65_c01028{left:342.373640px;}
.x55_c01028{left:344.685859px;}
.x7b_c01028{left:350.105338px;}
.x2f_c01028{left:351.340669px;}
.x24_c01028{left:353.034735px;}
.xd1_c01028{left:356.480642px;}
.x4b_c01028{left:358.471750px;}
.xbd_c01028{left:361.251937px;}
.x13_c01028{left:366.071227px;}
.x8_c01028{left:368.703000px;}
.x41_c01028{left:370.530700px;}
.xb0_c01028{left:373.609547px;}
.x9d_c01028{left:378.385575px;}
.xc4_c01028{left:381.036930px;}
.x7c_c01028{left:382.870041px;}
.x30_c01028{left:384.312165px;}
.x1d_c01028{left:386.716404px;}
.x84_c01028{left:392.357774px;}
.x66_c01028{left:397.462284px;}
.x8f_c01028{left:402.533125px;}
.x5d_c01028{left:409.418136px;}
.x9e_c01028{left:411.623179px;}
.xb1_c01028{left:417.607566px;}
.xa6_c01028{left:418.813400px;}
.x56_c01028{left:422.484591px;}
.x4c_c01028{left:423.557599px;}
.x3_c01028{left:425.814143px;}
.x25_c01028{left:428.887758px;}
.x90_c01028{left:434.917209px;}
.x9_c01028{left:436.038098px;}
.xa7_c01028{left:442.478037px;}
.x95_c01028{left:444.223845px;}
.xcd_c01028{left:445.361756px;}
.x7_c01028{left:448.464216px;}
.x4d_c01028{left:455.914710px;}
.x85_c01028{left:457.529037px;}
.x5e_c01028{left:464.770451px;}
.xb2_c01028{left:473.481872px;}
.x1e_c01028{left:475.298109px;}
.x14_c01028{left:476.691996px;}
.xc7_c01028{left:478.347063px;}
.x7d_c01028{left:482.174137px;}
.x67_c01028{left:485.548371px;}
.x91_c01028{left:488.786785px;}
.xa_c01028{left:489.994587px;}
.x3b_c01028{left:492.442168px;}
.x5f_c01028{left:496.630023px;}
.xb6_c01028{left:504.086658px;}
.xab_c01028{left:505.968620px;}
.x26_c01028{left:507.661909px;}
.x15_c01028{left:509.332323px;}
.x4_c01028{left:513.759609px;}
.x31_c01028{left:516.599745px;}
.x68_c01028{left:519.004496px;}
.x3c_c01028{left:526.380108px;}
.xd2_c01028{left:528.703247px;}
.x57_c01028{left:532.369273px;}
.xc8_c01028{left:533.713608px;}
.x86_c01028{left:535.472016px;}
.x4e_c01028{left:543.965072px;}
.x92_c01028{left:545.121394px;}
.x42_c01028{left:547.194123px;}
.x32_c01028{left:550.280031px;}
.x9f_c01028{left:555.003840px;}
.x3d_c01028{left:559.270665px;}
.x27_c01028{left:562.167864px;}
.x1f_c01028{left:563.935258px;}
.xc9_c01028{left:566.539824px;}
.xb7_c01028{left:569.606813px;}
.x16_c01028{left:573.965625px;}
.xb_c01028{left:579.344148px;}
.xbe_c01028{left:581.338131px;}
.x69_c01028{left:585.479042px;}
.x96_c01028{left:588.349575px;}
.x87_c01028{left:590.931501px;}
.x28_c01028{left:594.827680px;}
.x60_c01028{left:595.992947px;}
.xd3_c01028{left:610.151217px;}
.x33_c01028{left:616.211034px;}
.x97_c01028{left:621.400491px;}
.xac_c01028{left:628.856058px;}
.x17_c01028{left:630.354180px;}
.x4f_c01028{left:631.977970px;}
.x7e_c01028{left:635.726931px;}
.x6a_c01028{left:639.113507px;}
.x70_c01028{left:648.745284px;}
.xa0_c01028{left:652.391527px;}
.xc_c01028{left:656.134781px;}
.xb8_c01028{left:658.880183px;}
.x5_c01028{left:660.966255px;}
.x18_c01028{left:663.976024px;}
.x43_c01028{left:667.246603px;}
.x6_c01028{left:669.699513px;}
.x58_c01028{left:676.106920px;}
.x6b_c01028{left:684.102527px;}
.xd4_c01028{left:688.013277px;}
.xd_c01028{left:689.479403px;}
.x34_c01028{left:692.968699px;}
.x20_c01028{left:696.028423px;}
.x98_c01028{left:698.047267px;}
.x7f_c01028{left:701.326766px;}
.xbf_c01028{left:704.092254px;}
.xa8_c01028{left:707.020871px;}
.x50_c01028{left:708.467404px;}
.x6c_c01028{left:716.944055px;}
.xe_c01028{left:723.266082px;}
.x35_c01028{left:725.162473px;}
.xb3_c01028{left:727.481609px;}
.x88_c01028{left:734.925363px;}
.xc0_c01028{left:737.667645px;}
.x61_c01028{left:740.728686px;}
.x44_c01028{left:745.771687px;}
.x29_c01028{left:750.556459px;}
.xce_c01028{left:755.504802px;}
.xb9_c01028{left:758.557925px;}
.x71_c01028{left:760.260632px;}
.x6d_c01028{left:761.465331px;}
.x59_c01028{left:764.720873px;}
.x80_c01028{left:768.518007px;}
.x19_c01028{left:774.373516px;}
.xc5_c01028{left:778.371180px;}
.x45_c01028{left:779.491258px;}
.x78_c01028{left:781.945241px;}
.x21_c01028{left:784.181488px;}
.xa9_c01028{left:785.942361px;}
.xf_c01028{left:788.230553px;}
.xba_c01028{left:790.856142px;}
.x72_c01028{left:792.336057px;}
.xad_c01028{left:793.580853px;}
.x36_c01028{left:795.974091px;}
.x5a_c01028{left:797.272927px;}
.x89_c01028{left:799.115109px;}
.x8a_c01028{left:801.090000px;}
.x2a_c01028{left:806.330421px;}
.x51_c01028{left:808.679592px;}
.x3e_c01028{left:813.672835px;}
.xa1_c01028{left:831.637901px;}
.x79_c01028{left:839.360544px;}
.x99_c01028{left:847.509156px;}
.xbb_c01028{left:849.683115px;}
.x73_c01028{left:856.082243px;}
@media print{
.v0_c01028{vertical-align:0.000000pt;}
.ls0_c01028{letter-spacing:0.000000pt;}
.ws0_c01028{word-spacing:0.000000pt;}
.fs0_c01028{font-size:16.000000pt;}
.fs10_c01028{font-size:21.333333pt;}
.fs2_c01028{font-size:31.989918pt;}
.fs13_c01028{font-size:58.650384pt;}
.fs1a_c01028{font-size:63.982238pt;}
.fs6_c01028{font-size:64.003744pt;}
.fs16_c01028{font-size:69.314091pt;}
.fsa_c01028{font-size:69.340613pt;}
.fs12_c01028{font-size:74.645944pt;}
.fs17_c01028{font-size:74.648819pt;}
.fs19_c01028{font-size:74.660992pt;}
.fs11_c01028{font-size:74.664315pt;}
.fs5_c01028{font-size:74.671035pt;}
.fs9_c01028{font-size:74.674506pt;}
.fsf_c01028{font-size:74.696901pt;}
.fs15_c01028{font-size:79.977797pt;}
.fs3_c01028{font-size:79.984038pt;}
.fs4_c01028{font-size:80.004680pt;}
.fs8_c01028{font-size:80.008400pt;}
.fs18_c01028{font-size:85.312936pt;}
.fs7_c01028{font-size:85.338325pt;}
.fsd_c01028{font-size:85.342293pt;}
.fs1_c01028{font-size:90.634792pt;}
.fse_c01028{font-size:90.671971pt;}
.fs14_c01028{font-size:95.973356pt;}
.fsc_c01028{font-size:101.343973pt;}
.fsb_c01028{font-size:112.011759pt;}
.y0_c01028{bottom:0.000000pt;}
.y12c_c01028{bottom:52.871639pt;}
.y12b_c01028{bottom:56.197905pt;}
.y12a_c01028{bottom:57.285161pt;}
.y129_c01028{bottom:58.830545pt;}
.y128_c01028{bottom:60.452993pt;}
.y127_c01028{bottom:61.584431pt;}
.y126_c01028{bottom:66.640863pt;}
.y125_c01028{bottom:67.407551pt;}
.y11f_c01028{bottom:67.735208pt;}
.y11e_c01028{bottom:69.043979pt;}
.y124_c01028{bottom:69.219391pt;}
.y123_c01028{bottom:70.357871pt;}
.y122_c01028{bottom:71.792143pt;}
.y121_c01028{bottom:72.940756pt;}
.y11d_c01028{bottom:73.340867pt;}
.y120_c01028{bottom:75.163047pt;}
.y11c_c01028{bottom:79.530408pt;}
.y11b_c01028{bottom:83.250304pt;}
.y11a_c01028{bottom:85.866072pt;}
.y119_c01028{bottom:86.958293pt;}
.y118_c01028{bottom:88.024573pt;}
.y117_c01028{bottom:89.773333pt;}
.y116_c01028{bottom:96.336928pt;}
.y115_c01028{bottom:98.149643pt;}
.y114_c01028{bottom:101.207069pt;}
.y113_c01028{bottom:104.104867pt;}
.y112_c01028{bottom:106.009507pt;}
.y111_c01028{bottom:110.932555pt;}
.y10f_c01028{bottom:115.888280pt;}
.y110_c01028{bottom:120.508000pt;}
.y10e_c01028{bottom:124.124964pt;}
.y10d_c01028{bottom:126.135096pt;}
.y10c_c01028{bottom:128.088568pt;}
.y10b_c01028{bottom:129.231368pt;}
.y10a_c01028{bottom:130.029840pt;}
.y109_c01028{bottom:131.587700pt;}
.y108_c01028{bottom:132.769220pt;}
.y107_c01028{bottom:135.457868pt;}
.y106_c01028{bottom:138.991612pt;}
.y105_c01028{bottom:148.470360pt;}
.y104_c01028{bottom:149.635472pt;}
.y103_c01028{bottom:150.810412pt;}
.y102_c01028{bottom:151.587448pt;}
.y101_c01028{bottom:153.895208pt;}
.y100_c01028{bottom:156.231724pt;}
.yff_c01028{bottom:156.990404pt;}
.yf9_c01028{bottom:160.107080pt;}
.yfe_c01028{bottom:161.532500pt;}
.yf8_c01028{bottom:163.455385pt;}
.yfd_c01028{bottom:163.847384pt;}
.yfc_c01028{bottom:165.004592pt;}
.yf7_c01028{bottom:165.294439pt;}
.yfb_c01028{bottom:166.876644pt;}
.yf6_c01028{bottom:169.050656pt;}
.yfa_c01028{bottom:169.456000pt;}
.yf5_c01028{bottom:170.967060pt;}
.yf4_c01028{bottom:176.049120pt;}
.yf3_c01028{bottom:179.778468pt;}
.yf2_c01028{bottom:184.204653pt;}
.yf1_c01028{bottom:192.264407pt;}
.yf0_c01028{bottom:197.839525pt;}
.yef_c01028{bottom:200.960389pt;}
.yee_c01028{bottom:228.895368pt;}
.yed_c01028{bottom:228.897029pt;}
.yec_c01028{bottom:228.899676pt;}
.yeb_c01028{bottom:228.904868pt;}
.yea_c01028{bottom:228.905344pt;}
.ye9_c01028{bottom:228.907036pt;}
.ye8_c01028{bottom:228.908684pt;}
.ye7_c01028{bottom:228.910808pt;}
.ye6_c01028{bottom:228.912456pt;}
.ye5_c01028{bottom:228.912691pt;}
.ye4_c01028{bottom:228.915457pt;}
.ye3_c01028{bottom:232.948908pt;}
.ye2_c01028{bottom:234.771163pt;}
.ye1_c01028{bottom:237.520288pt;}
.ye0_c01028{bottom:239.835101pt;}
.ydf_c01028{bottom:243.114048pt;}
.yde_c01028{bottom:244.973225pt;}
.ydd_c01028{bottom:248.196828pt;}
.ydc_c01028{bottom:251.353064pt;}
.ydb_c01028{bottom:256.408831pt;}
.yda_c01028{bottom:258.213475pt;}
.yd9_c01028{bottom:259.142017pt;}
.yd8_c01028{bottom:260.453444pt;}
.yd7_c01028{bottom:272.223216pt;}
.yd6_c01028{bottom:274.751615pt;}
.yd5_c01028{bottom:276.114979pt;}
.yd4_c01028{bottom:277.504168pt;}
.yd3_c01028{bottom:279.035744pt;}
.yd2_c01028{bottom:282.186657pt;}
.yd1_c01028{bottom:283.225352pt;}
.yd0_c01028{bottom:283.982805pt;}
.ycf_c01028{bottom:287.110021pt;}
.yce_c01028{bottom:290.592799pt;}
.ycd_c01028{bottom:291.638333pt;}
.ycc_c01028{bottom:293.072029pt;}
.ycb_c01028{bottom:317.914596pt;}
.yca_c01028{bottom:318.061941pt;}
.yc9_c01028{bottom:319.255245pt;}
.yc8_c01028{bottom:319.661893pt;}
.yc7_c01028{bottom:319.944985pt;}
.yc6_c01028{bottom:320.530980pt;}
.yc5_c01028{bottom:321.246817pt;}
.yc4_c01028{bottom:321.809319pt;}
.yc3_c01028{bottom:322.106100pt;}
.yc2_c01028{bottom:323.081392pt;}
.yc1_c01028{bottom:323.380699pt;}
.yc0_c01028{bottom:323.674173pt;}
.ybf_c01028{bottom:324.249264pt;}
.ybe_c01028{bottom:332.409269pt;}
.ybd_c01028{bottom:337.462813pt;}
.ybc_c01028{bottom:340.054363pt;}
.ybb_c01028{bottom:341.171867pt;}
.yba_c01028{bottom:344.505531pt;}
.yb9_c01028{bottom:346.044987pt;}
.yb8_c01028{bottom:351.232139pt;}
.yb7_c01028{bottom:352.326437pt;}
.yb6_c01028{bottom:354.146131pt;}
.yb5_c01028{bottom:356.420000pt;}
.yb4_c01028{bottom:364.437019pt;}
.yb3_c01028{bottom:368.722912pt;}
.yb2_c01028{bottom:373.046117pt;}
.yb1_c01028{bottom:374.374096pt;}
.yb0_c01028{bottom:376.579611pt;}
.yaf_c01028{bottom:378.688619pt;}
.yae_c01028{bottom:379.956464pt;}
.yad_c01028{bottom:381.689419pt;}
.ya7_c01028{bottom:383.280000pt;}
.yac_c01028{bottom:383.393509pt;}
.yab_c01028{bottom:385.992912pt;}
.yaa_c01028{bottom:386.832256pt;}
.ya9_c01028{bottom:388.531243pt;}
.ya6_c01028{bottom:390.162024pt;}
.ya8_c01028{bottom:390.257333pt;}
.ya5_c01028{bottom:393.189101pt;}
.ya4_c01028{bottom:394.766876pt;}
.ya3_c01028{bottom:399.979603pt;}
.ya2_c01028{bottom:402.594976pt;}
.ya1_c01028{bottom:406.270632pt;}
.ya0_c01028{bottom:409.343996pt;}
.y9f_c01028{bottom:410.897673pt;}
.y9e_c01028{bottom:415.543371pt;}
.y9d_c01028{bottom:419.143484pt;}
.y9c_c01028{bottom:421.226667pt;}
.y9b_c01028{bottom:427.390064pt;}
.y9a_c01028{bottom:430.140189pt;}
.y99_c01028{bottom:431.468669pt;}
.y98_c01028{bottom:432.825179pt;}
.y97_c01028{bottom:439.110067pt;}
.y96_c01028{bottom:443.174565pt;}
.y95_c01028{bottom:444.515619pt;}
.y94_c01028{bottom:446.335317pt;}
.y93_c01028{bottom:448.836000pt;}
.y92_c01028{bottom:458.377096pt;}
.y91_c01028{bottom:460.318959pt;}
.y90_c01028{bottom:477.420779pt;}
.y8f_c01028{bottom:479.663471pt;}
.y8e_c01028{bottom:480.381604pt;}
.y8d_c01028{bottom:481.931040pt;}
.y8c_c01028{bottom:489.115833pt;}
.y8b_c01028{bottom:491.441261pt;}
.y8a_c01028{bottom:492.611769pt;}
.y89_c01028{bottom:495.059252pt;}
.y88_c01028{bottom:496.679909pt;}
.y87_c01028{bottom:500.265064pt;}
.y86_c01028{bottom:501.486863pt;}
.y85_c01028{bottom:504.679096pt;}
.y84_c01028{bottom:508.690635pt;}
.y83_c01028{bottom:511.499331pt;}
.y82_c01028{bottom:512.280849pt;}
.y81_c01028{bottom:515.055816pt;}
.y80_c01028{bottom:526.382304pt;}
.y7f_c01028{bottom:527.887735pt;}
.y7e_c01028{bottom:528.998169pt;}
.y7d_c01028{bottom:530.519156pt;}
.y7c_c01028{bottom:532.333609pt;}
.y7b_c01028{bottom:534.582239pt;}
.y7a_c01028{bottom:535.714371pt;}
.y79_c01028{bottom:538.693243pt;}
.y78_c01028{bottom:540.556495pt;}
.y77_c01028{bottom:544.261865pt;}
.y76_c01028{bottom:545.370859pt;}
.y75_c01028{bottom:547.222048pt;}
.y74_c01028{bottom:553.658784pt;}
.y73_c01028{bottom:558.095159pt;}
.y72_c01028{bottom:559.453929pt;}
.y71_c01028{bottom:560.766531pt;}
.y70_c01028{bottom:563.431699pt;}
.y6f_c01028{bottom:564.707985pt;}
.y6e_c01028{bottom:566.924011pt;}
.y6d_c01028{bottom:570.870667pt;}
.y6c_c01028{bottom:572.622964pt;}
.y6b_c01028{bottom:577.459383pt;}
.y6a_c01028{bottom:584.546353pt;}
.y69_c01028{bottom:585.791527pt;}
.y68_c01028{bottom:589.182279pt;}
.y67_c01028{bottom:590.879597pt;}
.y66_c01028{bottom:594.682044pt;}
.y65_c01028{bottom:598.886237pt;}
.y64_c01028{bottom:601.863415pt;}
.y63_c01028{bottom:603.089569pt;}
.y62_c01028{bottom:605.175553pt;}
.y61_c01028{bottom:606.475387pt;}
.y60_c01028{bottom:609.382019pt;}
.y5f_c01028{bottom:615.169621pt;}
.y5e_c01028{bottom:619.360455pt;}
.y5d_c01028{bottom:622.559212pt;}
.y5c_c01028{bottom:626.239876pt;}
.y5b_c01028{bottom:627.544283pt;}
.y5a_c01028{bottom:629.922107pt;}
.y59_c01028{bottom:631.275268pt;}
.y58_c01028{bottom:633.997132pt;}
.y57_c01028{bottom:635.408761pt;}
.y56_c01028{bottom:636.810176pt;}
.y55_c01028{bottom:638.185333pt;}
.y54_c01028{bottom:653.763857pt;}
.y53_c01028{bottom:667.802300pt;}
.y52_c01028{bottom:670.335608pt;}
.y51_c01028{bottom:679.708839pt;}
.y50_c01028{bottom:680.908773pt;}
.y4f_c01028{bottom:683.703656pt;}
.y4e_c01028{bottom:686.803157pt;}
.y4d_c01028{bottom:687.976667pt;}
.y4c_c01028{bottom:691.494479pt;}
.y4b_c01028{bottom:694.265083pt;}
.y4a_c01028{bottom:696.993832pt;}
.y49_c01028{bottom:702.013989pt;}
.y48_c01028{bottom:708.531547pt;}
.y47_c01028{bottom:712.203611pt;}
.y46_c01028{bottom:714.533207pt;}
.y45_c01028{bottom:719.169767pt;}
.y44_c01028{bottom:720.545337pt;}
.y43_c01028{bottom:721.965112pt;}
.y42_c01028{bottom:726.475605pt;}
.y41_c01028{bottom:730.665473pt;}
.y40_c01028{bottom:732.460136pt;}
.y3f_c01028{bottom:733.834848pt;}
.y3e_c01028{bottom:736.100429pt;}
.y3d_c01028{bottom:741.318429pt;}
.y3c_c01028{bottom:744.216736pt;}
.y3b_c01028{bottom:745.534421pt;}
.y3a_c01028{bottom:748.676099pt;}
.y39_c01028{bottom:751.374643pt;}
.y38_c01028{bottom:752.753171pt;}
.y37_c01028{bottom:755.503787pt;}
.y36_c01028{bottom:758.167677pt;}
.y35_c01028{bottom:759.517195pt;}
.y34_c01028{bottom:760.830587pt;}
.y33_c01028{bottom:762.674328pt;}
.y32_c01028{bottom:764.896067pt;}
.y31_c01028{bottom:765.761235pt;}
.y30_c01028{bottom:767.539349pt;}
.y2f_c01028{bottom:772.989059pt;}
.y2e_c01028{bottom:775.072988pt;}
.y2d_c01028{bottom:780.892987pt;}
.y2c_c01028{bottom:782.113617pt;}
.y2b_c01028{bottom:784.150987pt;}
.y2a_c01028{bottom:787.094885pt;}
.y29_c01028{bottom:788.670088pt;}
.y28_c01028{bottom:789.929901pt;}
.y27_c01028{bottom:793.988799pt;}
.y26_c01028{bottom:796.053251pt;}
.y25_c01028{bottom:797.296916pt;}
.y24_c01028{bottom:805.675104pt;}
.y23_c01028{bottom:808.890755pt;}
.y22_c01028{bottom:810.092709pt;}
.y21_c01028{bottom:813.709981pt;}
.y20_c01028{bottom:816.944111pt;}
.y1f_c01028{bottom:820.175971pt;}
.y1e_c01028{bottom:823.315140pt;}
.y1d_c01028{bottom:824.952072pt;}
.y1c_c01028{bottom:827.361685pt;}
.y1b_c01028{bottom:828.497725pt;}
.y1a_c01028{bottom:837.234008pt;}
.y19_c01028{bottom:841.752557pt;}
.y18_c01028{bottom:843.128693pt;}
.y17_c01028{bottom:845.436667pt;}
.y16_c01028{bottom:848.082096pt;}
.y15_c01028{bottom:849.418059pt;}
.y14_c01028{bottom:853.945747pt;}
.y13_c01028{bottom:855.252147pt;}
.y12_c01028{bottom:856.622211pt;}
.y11_c01028{bottom:858.025333pt;}
.y10_c01028{bottom:893.972533pt;}
.yf_c01028{bottom:896.284693pt;}
.ye_c01028{bottom:897.487200pt;}
.yd_c01028{bottom:898.673973pt;}
.yc_c01028{bottom:901.407040pt;}
.yb_c01028{bottom:904.587093pt;}
.ya_c01028{bottom:906.507467pt;}
.y9_c01028{bottom:908.904000pt;}
.y8_c01028{bottom:939.804437pt;}
.y7_c01028{bottom:943.448000pt;}
.y6_c01028{bottom:946.256416pt;}
.y5_c01028{bottom:946.536160pt;}
.y4_c01028{bottom:951.251488pt;}
.y3_c01028{bottom:954.068560pt;}
.y2_c01028{bottom:956.896000pt;}
.y1_c01028{bottom:1025.521333pt;}
.h2_c01028{height:16.000000pt;}
.h12_c01028{height:21.333333pt;}
.h4_c01028{height:31.989918pt;}
.h15_c01028{height:58.650384pt;}
.h1c_c01028{height:63.982238pt;}
.h8_c01028{height:64.003744pt;}
.h18_c01028{height:69.314091pt;}
.hc_c01028{height:69.340613pt;}
.h14_c01028{height:74.645944pt;}
.h19_c01028{height:74.648819pt;}
.h1b_c01028{height:74.660992pt;}
.h13_c01028{height:74.664315pt;}
.h7_c01028{height:74.671035pt;}
.hb_c01028{height:74.674506pt;}
.h11_c01028{height:74.696901pt;}
.h17_c01028{height:79.977797pt;}
.h5_c01028{height:79.984038pt;}
.h6_c01028{height:80.004680pt;}
.ha_c01028{height:80.008400pt;}
.h1a_c01028{height:85.312936pt;}
.h9_c01028{height:85.338325pt;}
.hf_c01028{height:85.342293pt;}
.h3_c01028{height:90.634792pt;}
.h10_c01028{height:90.671971pt;}
.h16_c01028{height:95.973356pt;}
.he_c01028{height:101.343973pt;}
.hd_c01028{height:112.011759pt;}
.h0_c01028{height:1107.840000pt;}
.h1_c01028{height:1108.000000pt;}
.w0_c01028{width:767.040000pt;}
.w1_c01028{width:767.333333pt;}
.x0_c01028{left:0.000000pt;}
.x1_c01028{left:19.200000pt;}
.xcf_c01028{left:112.983773pt;}
.xc1_c01028{left:114.846929pt;}
.xb4_c01028{left:117.300445pt;}
.xa2_c01028{left:120.071865pt;}
.x93_c01028{left:122.112000pt;}
.x81_c01028{left:124.785333pt;}
.x74_c01028{left:127.072200pt;}
.x62_c01028{left:129.114704pt;}
.x5b_c01028{left:130.063375pt;}
.x52_c01028{left:131.765483pt;}
.x46_c01028{left:133.832283pt;}
.x3f_c01028{left:135.854243pt;}
.x37_c01028{left:137.295645pt;}
.x22_c01028{left:138.597141pt;}
.x1a_c01028{left:140.989549pt;}
.xaa_c01028{left:148.518475pt;}
.xa3_c01028{left:159.867073pt;}
.x8b_c01028{left:163.120771pt;}
.x82_c01028{left:164.051361pt;}
.xb5_c01028{left:166.031484pt;}
.x75_c01028{left:167.780639pt;}
.x1b_c01028{left:168.676220pt;}
.xd0_c01028{left:171.406625pt;}
.xca_c01028{left:172.569980pt;}
.x2b_c01028{left:176.698557pt;}
.x63_c01028{left:177.769243pt;}
.x9a_c01028{left:180.130133pt;}
.x94_c01028{left:181.890828pt;}
.xbc_c01028{left:184.220529pt;}
.x38_c01028{left:185.454561pt;}
.x76_c01028{left:186.648385pt;}
.xa4_c01028{left:188.861564pt;}
.x2c_c01028{left:195.487749pt;}
.x6e_c01028{left:196.623815pt;}
.x53_c01028{left:199.278573pt;}
.xcb_c01028{left:200.601920pt;}
.x8c_c01028{left:201.695491pt;}
.xc2_c01028{left:203.109809pt;}
.x47_c01028{left:204.126273pt;}
.x64_c01028{left:206.931076pt;}
.x9b_c01028{left:209.377331pt;}
.x39_c01028{left:214.671964pt;}
.x6f_c01028{left:215.675472pt;}
.x23_c01028{left:217.282200pt;}
.x8d_c01028{left:220.752415pt;}
.xae_c01028{left:225.566085pt;}
.x1c_c01028{left:227.384293pt;}
.x48_c01028{left:229.620000pt;}
.x83_c01028{left:231.910101pt;}
.x10_c01028{left:236.798667pt;}
.x9c_c01028{left:239.128531pt;}
.x2d_c01028{left:243.738117pt;}
.x77_c01028{left:245.582296pt;}
.x3a_c01028{left:252.806677pt;}
.x49_c01028{left:258.849408pt;}
.x40_c01028{left:261.228703pt;}
.xaf_c01028{left:264.675436pt;}
.x11_c01028{left:267.270831pt;}
.xc6_c01028{left:268.648448pt;}
.xc3_c01028{left:270.271977pt;}
.x7a_c01028{left:271.685637pt;}
.x5c_c01028{left:276.322707pt;}
.x54_c01028{left:277.913268pt;}
.x8e_c01028{left:279.770671pt;}
.x2e_c01028{left:283.779369pt;}
.xa5_c01028{left:285.506843pt;}
.x4a_c01028{left:288.636924pt;}
.x12_c01028{left:297.025047pt;}
.xcc_c01028{left:298.083008pt;}
.x2_c01028{left:300.040000pt;}
.x65_c01028{left:304.332124pt;}
.x55_c01028{left:306.387431pt;}
.x7b_c01028{left:311.204745pt;}
.x2f_c01028{left:312.302817pt;}
.x24_c01028{left:313.808653pt;}
.xd1_c01028{left:316.871681pt;}
.x4b_c01028{left:318.641556pt;}
.xbd_c01028{left:321.112833pt;}
.x13_c01028{left:325.396647pt;}
.x8_c01028{left:327.736000pt;}
.x41_c01028{left:329.360623pt;}
.xb0_c01028{left:332.097375pt;}
.x9d_c01028{left:336.342733pt;}
.xc4_c01028{left:338.699493pt;}
.x7c_c01028{left:340.328925pt;}
.x30_c01028{left:341.610813pt;}
.x1d_c01028{left:343.747915pt;}
.x84_c01028{left:348.762465pt;}
.x66_c01028{left:353.299808pt;}
.x8f_c01028{left:357.807223pt;}
.x5d_c01028{left:363.927232pt;}
.x9e_c01028{left:365.887271pt;}
.xb1_c01028{left:371.206725pt;}
.xa6_c01028{left:372.278577pt;}
.x56_c01028{left:375.541859pt;}
.x4c_c01028{left:376.495644pt;}
.x3_c01028{left:378.501460pt;}
.x25_c01028{left:381.233563pt;}
.x90_c01028{left:386.593075pt;}
.x9_c01028{left:387.589420pt;}
.xa7_c01028{left:393.313811pt;}
.x95_c01028{left:394.865640pt;}
.xcd_c01028{left:395.877116pt;}
.x7_c01028{left:398.634859pt;}
.x4d_c01028{left:405.257520pt;}
.x85_c01028{left:406.692477pt;}
.x5e_c01028{left:413.129289pt;}
.xb2_c01028{left:420.872775pt;}
.x1e_c01028{left:422.487208pt;}
.x14_c01028{left:423.726219pt;}
.xc7_c01028{left:425.197389pt;}
.x7d_c01028{left:428.599233pt;}
.x67_c01028{left:431.598552pt;}
.x91_c01028{left:434.477143pt;}
.xa_c01028{left:435.550744pt;}
.x3b_c01028{left:437.726372pt;}
.x5f_c01028{left:441.448909pt;}
.xb6_c01028{left:448.077029pt;}
.xab_c01028{left:449.749884pt;}
.x26_c01028{left:451.255031pt;}
.x15_c01028{left:452.739843pt;}
.x4_c01028{left:456.675208pt;}
.x31_c01028{left:459.199773pt;}
.x68_c01028{left:461.337329pt;}
.x3c_c01028{left:467.893429pt;}
.xd2_c01028{left:469.958441pt;}
.x57_c01028{left:473.217132pt;}
.xc8_c01028{left:474.412096pt;}
.x86_c01028{left:475.975125pt;}
.x4e_c01028{left:483.524508pt;}
.x92_c01028{left:484.552351pt;}
.x42_c01028{left:486.394776pt;}
.x32_c01028{left:489.137805pt;}
.x9f_c01028{left:493.336747pt;}
.x3d_c01028{left:497.129480pt;}
.x27_c01028{left:499.704768pt;}
.x1f_c01028{left:501.275785pt;}
.xc9_c01028{left:503.590955pt;}
.xb7_c01028{left:506.317167pt;}
.x16_c01028{left:510.191667pt;}
.xb_c01028{left:514.972576pt;}
.xbe_c01028{left:516.745005pt;}
.x69_c01028{left:520.425815pt;}
.x96_c01028{left:522.977400pt;}
.x87_c01028{left:525.272445pt;}
.x28_c01028{left:528.735716pt;}
.x60_c01028{left:529.771508pt;}
.xd3_c01028{left:542.356637pt;}
.x33_c01028{left:547.743141pt;}
.x97_c01028{left:552.355992pt;}
.xac_c01028{left:558.983163pt;}
.x17_c01028{left:560.314827pt;}
.x4f_c01028{left:561.758196pt;}
.x7e_c01028{left:565.090605pt;}
.x6a_c01028{left:568.100895pt;}
.x70_c01028{left:576.662475pt;}
.xa0_c01028{left:579.903580pt;}
.xc_c01028{left:583.230916pt;}
.xb8_c01028{left:585.671273pt;}
.x5_c01028{left:587.525560pt;}
.x18_c01028{left:590.200911pt;}
.x43_c01028{left:593.108092pt;}
.x6_c01028{left:595.288456pt;}
.x58_c01028{left:600.983929pt;}
.x6b_c01028{left:608.091135pt;}
.xd4_c01028{left:611.567357pt;}
.xd_c01028{left:612.870580pt;}
.x34_c01028{left:615.972177pt;}
.x20_c01028{left:618.691932pt;}
.x98_c01028{left:620.486460pt;}
.x7f_c01028{left:623.401569pt;}
.xbf_c01028{left:625.859781pt;}
.xa8_c01028{left:628.462996pt;}
.x50_c01028{left:629.748804pt;}
.x6c_c01028{left:637.283604pt;}
.xe_c01028{left:642.903184pt;}
.x35_c01028{left:644.588865pt;}
.xb3_c01028{left:646.650319pt;}
.x88_c01028{left:653.266989pt;}
.xc0_c01028{left:655.704573pt;}
.x61_c01028{left:658.425499pt;}
.x44_c01028{left:662.908167pt;}
.x29_c01028{left:667.161297pt;}
.xce_c01028{left:671.559824pt;}
.xb9_c01028{left:674.273711pt;}
.x71_c01028{left:675.787228pt;}
.x6d_c01028{left:676.858072pt;}
.x59_c01028{left:679.751887pt;}
.x80_c01028{left:683.127117pt;}
.x19_c01028{left:688.332015pt;}
.xc5_c01028{left:691.885493pt;}
.x45_c01028{left:692.881119pt;}
.x78_c01028{left:695.062436pt;}
.x21_c01028{left:697.050212pt;}
.xa9_c01028{left:698.615432pt;}
.xf_c01028{left:700.649380pt;}
.xba_c01028{left:702.983237pt;}
.x72_c01028{left:704.298717pt;}
.xad_c01028{left:705.405203pt;}
.x36_c01028{left:707.532525pt;}
.x5a_c01028{left:708.687047pt;}
.x89_c01028{left:710.324541pt;}
.x8a_c01028{left:712.080000pt;}
.x2a_c01028{left:716.738152pt;}
.x51_c01028{left:718.826304pt;}
.x3e_c01028{left:723.264743pt;}
.xa1_c01028{left:739.233689pt;}
.x79_c01028{left:746.098261pt;}
.x99_c01028{left:753.341472pt;}
.xbb_c01028{left:755.273880pt;}
.x73_c01028{left:760.961993pt;}
}





/* 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_c01029 {
    display:none;
  }
  .loading-indicator_c01029.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01029 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_c01029 { 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_c01029" -> "#page-container .classname_c01029")
 */
.pf_c01029 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01029 { /* 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_c01029.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01029 { /* 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_c01029 { /* 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_c01029 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01029 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01029 {overflow:visible;}
  }
}
.c_c01029 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01029 { /* 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_c01029:after { /* webkit #35443 */
  content: '';
}
.t_c01029:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01029 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 */
}
.__c01029 { /* 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_c01029 { /* info for Javascript */
  display:none;
}
.l_c01029 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01029 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01029 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01029: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_c01029 {
    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_c01029.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01029.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_c01029 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01029{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01029;src:url('chunks/assets/font_7ef351174269f1343c6a59b1.woff2')format("woff");}.ff1_c01029{font-family:ff1_c01029;line-height:1.000000;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;}
.m2_c01029{transform:matrix(0.167680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167680,0.000000,0.000000,0.250000,0,0);}
.m3_c01029{transform:matrix(0.286575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286575,0.000000,0.000000,0.250000,0,0);}
.m1_c01029{transform:matrix(0.490410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490410,0.000000,0.000000,0.250000,0,0);}
.m0_c01029{transform:matrix(0.734985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.734985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.734985,0.000000,0.000000,0.250000,0,0);}
.v0_c01029{vertical-align:0.000000px;}
.ls0_c01029{letter-spacing:0.000000px;}
.sc__c01029{text-shadow:none;}
.sc0_c01029{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__c01029{-webkit-text-stroke:0px transparent;}
.sc0_c01029{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01029{word-spacing:0.000000px;}
.fc0_c01029{color:transparent;}
.fs0_c01029{font-size:18.000000px;}
.fs1_c01029{font-size:102.000000px;}
.y0_c01029{bottom:0.000000px;}
.y4_c01029{bottom:980.910000px;}
.y3_c01029{bottom:1049.631000px;}
.y2_c01029{bottom:1209.463500px;}
.y1_c01029{bottom:1218.648000px;}
.h2_c01029{height:18.000000px;}
.h3_c01029{height:102.000000px;}
.h0_c01029{height:1246.320000px;}
.h1_c01029{height:1246.500000px;}
.w1_c01029{width:887.250000px;}
.w0_c01029{width:887.490000px;}
.x0_c01029{left:0.000000px;}
.x3_c01029{left:100.980000px;}
.x2_c01029{left:146.610000px;}
.x1_c01029{left:158.760000px;}
.x4_c01029{left:194.940000px;}
@media print{
.v0_c01029{vertical-align:0.000000pt;}
.ls0_c01029{letter-spacing:0.000000pt;}
.ws0_c01029{word-spacing:0.000000pt;}
.fs0_c01029{font-size:16.000000pt;}
.fs1_c01029{font-size:90.666667pt;}
.y0_c01029{bottom:0.000000pt;}
.y4_c01029{bottom:871.920000pt;}
.y3_c01029{bottom:933.005333pt;}
.y2_c01029{bottom:1075.078667pt;}
.y1_c01029{bottom:1083.242667pt;}
.h2_c01029{height:16.000000pt;}
.h3_c01029{height:90.666667pt;}
.h0_c01029{height:1107.840000pt;}
.h1_c01029{height:1108.000000pt;}
.w1_c01029{width:788.666667pt;}
.w0_c01029{width:788.880000pt;}
.x0_c01029{left:0.000000pt;}
.x3_c01029{left:89.760000pt;}
.x2_c01029{left:130.320000pt;}
.x1_c01029{left:141.120000pt;}
.x4_c01029{left:173.280000pt;}
}





/* 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_c01030 {
    display:none;
  }
  .loading-indicator_c01030.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01030 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_c01030 { 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_c01030" -> "#page-container .classname_c01030")
 */
.pf_c01030 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01030 { /* 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_c01030.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01030 { /* 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_c01030 { /* 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_c01030 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01030 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01030 {overflow:visible;}
  }
}
.c_c01030 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01030 { /* 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_c01030:after { /* webkit #35443 */
  content: '';
}
.t_c01030:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01030 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 */
}
.__c01030 { /* 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_c01030 { /* info for Javascript */
  display:none;
}
.l_c01030 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01030 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01030 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01030: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_c01030 {
    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_c01030.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01030.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_c01030 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01030{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01030;src:url('chunks/assets/font_fabf4b590f7fb32aea93ffb2.woff2')format("woff");}.ff1_c01030{font-family:ff1_c01030;line-height:1.000000;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;}
.m5c_c01030{transform:matrix(0.009789,-0.000108,0.002750,0.249985,0,0);-ms-transform:matrix(0.009789,-0.000108,0.002750,0.249985,0,0);-webkit-transform:matrix(0.009789,-0.000108,0.002750,0.249985,0,0);}
.m41_c01030{transform:matrix(0.011590,-0.000104,0.002250,0.249990,0,0);-ms-transform:matrix(0.011590,-0.000104,0.002250,0.249990,0,0);-webkit-transform:matrix(0.011590,-0.000104,0.002250,0.249990,0,0);}
.m129_c01030{transform:matrix(0.126373,0.000758,-0.001500,0.249996,0,0);-ms-transform:matrix(0.126373,0.000758,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.126373,0.000758,-0.001500,0.249996,0,0);}
.mca_c01030{transform:matrix(0.129562,-0.001425,0.002750,0.249985,0,0);-ms-transform:matrix(0.129562,-0.001425,0.002750,0.249985,0,0);-webkit-transform:matrix(0.129562,-0.001425,0.002750,0.249985,0,0);}
.m132_c01030{transform:matrix(0.132163,0.000793,-0.001500,0.249996,0,0);-ms-transform:matrix(0.132163,0.000793,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.132163,0.000793,-0.001500,0.249996,0,0);}
.m126_c01030{transform:matrix(0.134463,0.000807,-0.001500,0.249996,0,0);-ms-transform:matrix(0.134463,0.000807,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.134463,0.000807,-0.001500,0.249996,0,0);}
.m12b_c01030{transform:matrix(0.136893,0.000821,-0.001500,0.249996,0,0);-ms-transform:matrix(0.136893,0.000821,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.136893,0.000821,-0.001500,0.249996,0,0);}
.m12_c01030{transform:matrix(0.137309,-0.001236,0.002250,0.249990,0,0);-ms-transform:matrix(0.137309,-0.001236,0.002250,0.249990,0,0);-webkit-transform:matrix(0.137309,-0.001236,0.002250,0.249990,0,0);}
.m128_c01030{transform:matrix(0.138378,0.000830,-0.001500,0.249996,0,0);-ms-transform:matrix(0.138378,0.000830,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.138378,0.000830,-0.001500,0.249996,0,0);}
.m12e_c01030{transform:matrix(0.148632,0.000892,-0.001500,0.249996,0,0);-ms-transform:matrix(0.148632,0.000892,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.148632,0.000892,-0.001500,0.249996,0,0);}
.m124_c01030{transform:matrix(0.149582,0.000897,-0.001500,0.249996,0,0);-ms-transform:matrix(0.149582,0.000897,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.149582,0.000897,-0.001500,0.249996,0,0);}
.m12a_c01030{transform:matrix(0.149872,0.000899,-0.001500,0.249996,0,0);-ms-transform:matrix(0.149872,0.000899,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.149872,0.000899,-0.001500,0.249996,0,0);}
.m125_c01030{transform:matrix(0.150947,0.000906,-0.001500,0.249996,0,0);-ms-transform:matrix(0.150947,0.000906,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.150947,0.000906,-0.001500,0.249996,0,0);}
.m12c_c01030{transform:matrix(0.153267,0.000920,-0.001500,0.249996,0,0);-ms-transform:matrix(0.153267,0.000920,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.153267,0.000920,-0.001500,0.249996,0,0);}
.m131_c01030{transform:matrix(0.156817,0.000941,-0.001500,0.249996,0,0);-ms-transform:matrix(0.156817,0.000941,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.156817,0.000941,-0.001500,0.249996,0,0);}
.m127_c01030{transform:matrix(0.157862,0.000947,-0.001500,0.249996,0,0);-ms-transform:matrix(0.157862,0.000947,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.157862,0.000947,-0.001500,0.249996,0,0);}
.m3_c01030{transform:matrix(0.157910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157910,0.000000,0.000000,0.250000,0,0);}
.m94_c01030{transform:matrix(0.161545,-0.001777,0.002750,0.249985,0,0);-ms-transform:matrix(0.161545,-0.001777,0.002750,0.249985,0,0);-webkit-transform:matrix(0.161545,-0.001777,0.002750,0.249985,0,0);}
.m133_c01030{transform:matrix(0.165392,0.000992,-0.001500,0.249996,0,0);-ms-transform:matrix(0.165392,0.000992,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.165392,0.000992,-0.001500,0.249996,0,0);}
.m134_c01030{transform:matrix(0.166412,0.000998,-0.001500,0.249996,0,0);-ms-transform:matrix(0.166412,0.000998,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.166412,0.000998,-0.001500,0.249996,0,0);}
.mae_c01030{transform:matrix(0.182134,-0.002003,0.002750,0.249985,0,0);-ms-transform:matrix(0.182134,-0.002003,0.002750,0.249985,0,0);-webkit-transform:matrix(0.182134,-0.002003,0.002750,0.249985,0,0);}
.m136_c01030{transform:matrix(0.184202,0.001105,-0.001500,0.249996,0,0);-ms-transform:matrix(0.184202,0.001105,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.184202,0.001105,-0.001500,0.249996,0,0);}
.m137_c01030{transform:matrix(0.184237,0.001105,-0.001500,0.249996,0,0);-ms-transform:matrix(0.184237,0.001105,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.184237,0.001105,-0.001500,0.249996,0,0);}
.m130_c01030{transform:matrix(0.184912,0.001109,-0.001500,0.249996,0,0);-ms-transform:matrix(0.184912,0.001109,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.184912,0.001109,-0.001500,0.249996,0,0);}
.m70_c01030{transform:matrix(0.185819,-0.002044,0.002750,0.249985,0,0);-ms-transform:matrix(0.185819,-0.002044,0.002750,0.249985,0,0);-webkit-transform:matrix(0.185819,-0.002044,0.002750,0.249985,0,0);}
.m3b_c01030{transform:matrix(0.186617,-0.001680,0.002250,0.249990,0,0);-ms-transform:matrix(0.186617,-0.001680,0.002250,0.249990,0,0);-webkit-transform:matrix(0.186617,-0.001680,0.002250,0.249990,0,0);}
.m135_c01030{transform:matrix(0.187057,0.001122,-0.001500,0.249996,0,0);-ms-transform:matrix(0.187057,0.001122,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.187057,0.001122,-0.001500,0.249996,0,0);}
.me9_c01030{transform:matrix(0.188400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188400,0.000000,0.000000,0.250000,0,0);}
.md4_c01030{transform:matrix(0.190064,-0.002091,0.002750,0.249985,0,0);-ms-transform:matrix(0.190064,-0.002091,0.002750,0.249985,0,0);-webkit-transform:matrix(0.190064,-0.002091,0.002750,0.249985,0,0);}
.m67_c01030{transform:matrix(0.190173,-0.002092,0.002750,0.249985,0,0);-ms-transform:matrix(0.190173,-0.002092,0.002750,0.249985,0,0);-webkit-transform:matrix(0.190173,-0.002092,0.002750,0.249985,0,0);}
.m6c_c01030{transform:matrix(0.190253,-0.002093,0.002750,0.249985,0,0);-ms-transform:matrix(0.190253,-0.002093,0.002750,0.249985,0,0);-webkit-transform:matrix(0.190253,-0.002093,0.002750,0.249985,0,0);}
.m7d_c01030{transform:matrix(0.190703,-0.002098,0.002750,0.249985,0,0);-ms-transform:matrix(0.190703,-0.002098,0.002750,0.249985,0,0);-webkit-transform:matrix(0.190703,-0.002098,0.002750,0.249985,0,0);}
.m11d_c01030{transform:matrix(0.190793,0.002099,-0.002750,0.249985,0,0);-ms-transform:matrix(0.190793,0.002099,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.190793,0.002099,-0.002750,0.249985,0,0);}
.m12f_c01030{transform:matrix(0.191162,0.001147,-0.001500,0.249996,0,0);-ms-transform:matrix(0.191162,0.001147,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.191162,0.001147,-0.001500,0.249996,0,0);}
.m85_c01030{transform:matrix(0.191363,-0.002105,0.002750,0.249985,0,0);-ms-transform:matrix(0.191363,-0.002105,0.002750,0.249985,0,0);-webkit-transform:matrix(0.191363,-0.002105,0.002750,0.249985,0,0);}
.m66_c01030{transform:matrix(0.191663,-0.002108,0.002750,0.249985,0,0);-ms-transform:matrix(0.191663,-0.002108,0.002750,0.249985,0,0);-webkit-transform:matrix(0.191663,-0.002108,0.002750,0.249985,0,0);}
.m3d_c01030{transform:matrix(0.192612,-0.001734,0.002250,0.249990,0,0);-ms-transform:matrix(0.192612,-0.001734,0.002250,0.249990,0,0);-webkit-transform:matrix(0.192612,-0.001734,0.002250,0.249990,0,0);}
.m5f_c01030{transform:matrix(0.192633,-0.002119,0.002750,0.249985,0,0);-ms-transform:matrix(0.192633,-0.002119,0.002750,0.249985,0,0);-webkit-transform:matrix(0.192633,-0.002119,0.002750,0.249985,0,0);}
.m110_c01030{transform:matrix(0.193155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193155,0.000000,0.000000,0.250000,0,0);}
.mdf_c01030{transform:matrix(0.193203,-0.002125,0.002750,0.249985,0,0);-ms-transform:matrix(0.193203,-0.002125,0.002750,0.249985,0,0);-webkit-transform:matrix(0.193203,-0.002125,0.002750,0.249985,0,0);}
.m1b_c01030{transform:matrix(0.193372,-0.001740,0.002250,0.249990,0,0);-ms-transform:matrix(0.193372,-0.001740,0.002250,0.249990,0,0);-webkit-transform:matrix(0.193372,-0.001740,0.002250,0.249990,0,0);}
.m12d_c01030{transform:matrix(0.193672,0.001162,-0.001500,0.249996,0,0);-ms-transform:matrix(0.193672,0.001162,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.193672,0.001162,-0.001500,0.249996,0,0);}
.mf7_c01030{transform:matrix(0.193770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193770,0.000000,0.000000,0.250000,0,0);}
.m100_c01030{transform:matrix(0.194350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194350,0.000000,0.000000,0.250000,0,0);}
.m76_c01030{transform:matrix(0.194928,-0.002144,0.002750,0.249985,0,0);-ms-transform:matrix(0.194928,-0.002144,0.002750,0.249985,0,0);-webkit-transform:matrix(0.194928,-0.002144,0.002750,0.249985,0,0);}
.mf_c01030{transform:matrix(0.194932,-0.001754,0.002250,0.249990,0,0);-ms-transform:matrix(0.194932,-0.001754,0.002250,0.249990,0,0);-webkit-transform:matrix(0.194932,-0.001754,0.002250,0.249990,0,0);}
.m3f_c01030{transform:matrix(0.195192,-0.001757,0.002250,0.249990,0,0);-ms-transform:matrix(0.195192,-0.001757,0.002250,0.249990,0,0);-webkit-transform:matrix(0.195192,-0.001757,0.002250,0.249990,0,0);}
.mc9_c01030{transform:matrix(0.195563,-0.002151,0.002750,0.249985,0,0);-ms-transform:matrix(0.195563,-0.002151,0.002750,0.249985,0,0);-webkit-transform:matrix(0.195563,-0.002151,0.002750,0.249985,0,0);}
.m116_c01030{transform:matrix(0.195565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195565,0.000000,0.000000,0.250000,0,0);}
.m11b_c01030{transform:matrix(0.195943,0.002155,-0.002750,0.249985,0,0);-ms-transform:matrix(0.195943,0.002155,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.195943,0.002155,-0.002750,0.249985,0,0);}
.m65_c01030{transform:matrix(0.196113,-0.002157,0.002750,0.249985,0,0);-ms-transform:matrix(0.196113,-0.002157,0.002750,0.249985,0,0);-webkit-transform:matrix(0.196113,-0.002157,0.002750,0.249985,0,0);}
.md_c01030{transform:matrix(0.196117,-0.001765,0.002250,0.249990,0,0);-ms-transform:matrix(0.196117,-0.001765,0.002250,0.249990,0,0);-webkit-transform:matrix(0.196117,-0.001765,0.002250,0.249990,0,0);}
.m80_c01030{transform:matrix(0.197898,-0.002177,0.002750,0.249985,0,0);-ms-transform:matrix(0.197898,-0.002177,0.002750,0.249985,0,0);-webkit-transform:matrix(0.197898,-0.002177,0.002750,0.249985,0,0);}
.m14_c01030{transform:matrix(0.198092,-0.001783,0.002250,0.249990,0,0);-ms-transform:matrix(0.198092,-0.001783,0.002250,0.249990,0,0);-webkit-transform:matrix(0.198092,-0.001783,0.002250,0.249990,0,0);}
.m106_c01030{transform:matrix(0.198400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198400,0.000000,0.000000,0.250000,0,0);}
.mfc_c01030{transform:matrix(0.199100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199100,0.000000,0.000000,0.250000,0,0);}
.m6b_c01030{transform:matrix(0.199223,-0.002191,0.002750,0.249985,0,0);-ms-transform:matrix(0.199223,-0.002191,0.002750,0.249985,0,0);-webkit-transform:matrix(0.199223,-0.002191,0.002750,0.249985,0,0);}
.mfa_c01030{transform:matrix(0.199700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199700,0.000000,0.000000,0.250000,0,0);}
.m40_c01030{transform:matrix(0.200137,-0.001801,0.002250,0.249990,0,0);-ms-transform:matrix(0.200137,-0.001801,0.002250,0.249990,0,0);-webkit-transform:matrix(0.200137,-0.001801,0.002250,0.249990,0,0);}
.m113_c01030{transform:matrix(0.200880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200880,0.000000,0.000000,0.250000,0,0);}
.mb_c01030{transform:matrix(0.201297,-0.001812,0.002250,0.249990,0,0);-ms-transform:matrix(0.201297,-0.001812,0.002250,0.249990,0,0);-webkit-transform:matrix(0.201297,-0.001812,0.002250,0.249990,0,0);}
.m82_c01030{transform:matrix(0.202213,-0.002224,0.002750,0.249985,0,0);-ms-transform:matrix(0.202213,-0.002224,0.002750,0.249985,0,0);-webkit-transform:matrix(0.202213,-0.002224,0.002750,0.249985,0,0);}
.m5d_c01030{transform:matrix(0.203288,-0.002236,0.002750,0.249985,0,0);-ms-transform:matrix(0.203288,-0.002236,0.002750,0.249985,0,0);-webkit-transform:matrix(0.203288,-0.002236,0.002750,0.249985,0,0);}
.mb3_c01030{transform:matrix(0.203843,-0.002242,0.002750,0.249985,0,0);-ms-transform:matrix(0.203843,-0.002242,0.002750,0.249985,0,0);-webkit-transform:matrix(0.203843,-0.002242,0.002750,0.249985,0,0);}
.mf8_c01030{transform:matrix(0.205125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205125,0.000000,0.000000,0.250000,0,0);}
.mde_c01030{transform:matrix(0.205388,-0.002259,0.002750,0.249985,0,0);-ms-transform:matrix(0.205388,-0.002259,0.002750,0.249985,0,0);-webkit-transform:matrix(0.205388,-0.002259,0.002750,0.249985,0,0);}
.md1_c01030{transform:matrix(0.205833,-0.002264,0.002750,0.249985,0,0);-ms-transform:matrix(0.205833,-0.002264,0.002750,0.249985,0,0);-webkit-transform:matrix(0.205833,-0.002264,0.002750,0.249985,0,0);}
.m72_c01030{transform:matrix(0.206173,-0.002268,0.002750,0.249985,0,0);-ms-transform:matrix(0.206173,-0.002268,0.002750,0.249985,0,0);-webkit-transform:matrix(0.206173,-0.002268,0.002750,0.249985,0,0);}
.m63_c01030{transform:matrix(0.206248,-0.002269,0.002750,0.249985,0,0);-ms-transform:matrix(0.206248,-0.002269,0.002750,0.249985,0,0);-webkit-transform:matrix(0.206248,-0.002269,0.002750,0.249985,0,0);}
.m118_c01030{transform:matrix(0.206667,0.002273,-0.002750,0.249985,0,0);-ms-transform:matrix(0.206667,0.002273,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.206667,0.002273,-0.002750,0.249985,0,0);}
.m11f_c01030{transform:matrix(0.206837,0.002275,-0.002750,0.249985,0,0);-ms-transform:matrix(0.206837,0.002275,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.206837,0.002275,-0.002750,0.249985,0,0);}
.ma4_c01030{transform:matrix(0.206882,-0.002276,0.002750,0.249985,0,0);-ms-transform:matrix(0.206882,-0.002276,0.002750,0.249985,0,0);-webkit-transform:matrix(0.206882,-0.002276,0.002750,0.249985,0,0);}
.mcd_c01030{transform:matrix(0.206907,-0.002276,0.002750,0.249985,0,0);-ms-transform:matrix(0.206907,-0.002276,0.002750,0.249985,0,0);-webkit-transform:matrix(0.206907,-0.002276,0.002750,0.249985,0,0);}
.m5_c01030{transform:matrix(0.207887,-0.001871,0.002250,0.249990,0,0);-ms-transform:matrix(0.207887,-0.001871,0.002250,0.249990,0,0);-webkit-transform:matrix(0.207887,-0.001871,0.002250,0.249990,0,0);}
.m8e_c01030{transform:matrix(0.207952,-0.002287,0.002750,0.249985,0,0);-ms-transform:matrix(0.207952,-0.002287,0.002750,0.249985,0,0);-webkit-transform:matrix(0.207952,-0.002287,0.002750,0.249985,0,0);}
.m10e_c01030{transform:matrix(0.208195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208195,0.000000,0.000000,0.250000,0,0);}
.mac_c01030{transform:matrix(0.208232,-0.002291,0.002750,0.249985,0,0);-ms-transform:matrix(0.208232,-0.002291,0.002750,0.249985,0,0);-webkit-transform:matrix(0.208232,-0.002291,0.002750,0.249985,0,0);}
.m62_c01030{transform:matrix(0.208302,-0.002291,0.002750,0.249985,0,0);-ms-transform:matrix(0.208302,-0.002291,0.002750,0.249985,0,0);-webkit-transform:matrix(0.208302,-0.002291,0.002750,0.249985,0,0);}
.me7_c01030{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m3a_c01030{transform:matrix(0.208922,-0.001880,0.002250,0.249990,0,0);-ms-transform:matrix(0.208922,-0.001880,0.002250,0.249990,0,0);-webkit-transform:matrix(0.208922,-0.001880,0.002250,0.249990,0,0);}
.m11c_c01030{transform:matrix(0.209462,0.002304,-0.002750,0.249985,0,0);-ms-transform:matrix(0.209462,0.002304,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.209462,0.002304,-0.002750,0.249985,0,0);}
.m71_c01030{transform:matrix(0.209522,-0.002305,0.002750,0.249985,0,0);-ms-transform:matrix(0.209522,-0.002305,0.002750,0.249985,0,0);-webkit-transform:matrix(0.209522,-0.002305,0.002750,0.249985,0,0);}
.mfb_c01030{transform:matrix(0.209870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209870,0.000000,0.000000,0.250000,0,0);}
.m103_c01030{transform:matrix(0.209935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209935,0.000000,0.000000,0.250000,0,0);}
.m19_c01030{transform:matrix(0.210031,-0.001890,0.002250,0.249990,0,0);-ms-transform:matrix(0.210031,-0.001890,0.002250,0.249990,0,0);-webkit-transform:matrix(0.210031,-0.001890,0.002250,0.249990,0,0);}
.m78_c01030{transform:matrix(0.210322,-0.002314,0.002750,0.249985,0,0);-ms-transform:matrix(0.210322,-0.002314,0.002750,0.249985,0,0);-webkit-transform:matrix(0.210322,-0.002314,0.002750,0.249985,0,0);}
.m83_c01030{transform:matrix(0.210382,-0.002314,0.002750,0.249985,0,0);-ms-transform:matrix(0.210382,-0.002314,0.002750,0.249985,0,0);-webkit-transform:matrix(0.210382,-0.002314,0.002750,0.249985,0,0);}
.m11a_c01030{transform:matrix(0.210757,0.002318,-0.002750,0.249985,0,0);-ms-transform:matrix(0.210757,0.002318,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.210757,0.002318,-0.002750,0.249985,0,0);}
.mbb_c01030{transform:matrix(0.211487,-0.002326,0.002750,0.249985,0,0);-ms-transform:matrix(0.211487,-0.002326,0.002750,0.249985,0,0);-webkit-transform:matrix(0.211487,-0.002326,0.002750,0.249985,0,0);}
.mb2_c01030{transform:matrix(0.211687,-0.002329,0.002750,0.249985,0,0);-ms-transform:matrix(0.211687,-0.002329,0.002750,0.249985,0,0);-webkit-transform:matrix(0.211687,-0.002329,0.002750,0.249985,0,0);}
.meb_c01030{transform:matrix(0.212240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212240,0.000000,0.000000,0.250000,0,0);}
.m7b_c01030{transform:matrix(0.212287,-0.002335,0.002750,0.249985,0,0);-ms-transform:matrix(0.212287,-0.002335,0.002750,0.249985,0,0);-webkit-transform:matrix(0.212287,-0.002335,0.002750,0.249985,0,0);}
.m109_c01030{transform:matrix(0.212510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212510,0.000000,0.000000,0.250000,0,0);}
.mec_c01030{transform:matrix(0.213055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213055,0.000000,0.000000,0.250000,0,0);}
.mda_c01030{transform:matrix(0.213122,-0.002344,0.002750,0.249985,0,0);-ms-transform:matrix(0.213122,-0.002344,0.002750,0.249985,0,0);-webkit-transform:matrix(0.213122,-0.002344,0.002750,0.249985,0,0);}
.m1f_c01030{transform:matrix(0.213126,-0.001918,0.002250,0.249990,0,0);-ms-transform:matrix(0.213126,-0.001918,0.002250,0.249990,0,0);-webkit-transform:matrix(0.213126,-0.001918,0.002250,0.249990,0,0);}
.m9_c01030{transform:matrix(0.213131,-0.001918,0.002250,0.249990,0,0);-ms-transform:matrix(0.213131,-0.001918,0.002250,0.249990,0,0);-webkit-transform:matrix(0.213131,-0.001918,0.002250,0.249990,0,0);}
.ma6_c01030{transform:matrix(0.213542,-0.002349,0.002750,0.249985,0,0);-ms-transform:matrix(0.213542,-0.002349,0.002750,0.249985,0,0);-webkit-transform:matrix(0.213542,-0.002349,0.002750,0.249985,0,0);}
.mfd_c01030{transform:matrix(0.213985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213985,0.000000,0.000000,0.250000,0,0);}
.m6a_c01030{transform:matrix(0.214282,-0.002357,0.002750,0.249985,0,0);-ms-transform:matrix(0.214282,-0.002357,0.002750,0.249985,0,0);-webkit-transform:matrix(0.214282,-0.002357,0.002750,0.249985,0,0);}
.m52_c01030{transform:matrix(0.214917,-0.002364,0.002750,0.249985,0,0);-ms-transform:matrix(0.214917,-0.002364,0.002750,0.249985,0,0);-webkit-transform:matrix(0.214917,-0.002364,0.002750,0.249985,0,0);}
.m6_c01030{transform:matrix(0.214951,-0.001935,0.002250,0.249990,0,0);-ms-transform:matrix(0.214951,-0.001935,0.002250,0.249990,0,0);-webkit-transform:matrix(0.214951,-0.001935,0.002250,0.249990,0,0);}
.mdb_c01030{transform:matrix(0.215082,-0.002366,0.002750,0.249985,0,0);-ms-transform:matrix(0.215082,-0.002366,0.002750,0.249985,0,0);-webkit-transform:matrix(0.215082,-0.002366,0.002750,0.249985,0,0);}
.m7e_c01030{transform:matrix(0.215207,-0.002367,0.002750,0.249985,0,0);-ms-transform:matrix(0.215207,-0.002367,0.002750,0.249985,0,0);-webkit-transform:matrix(0.215207,-0.002367,0.002750,0.249985,0,0);}
.mad_c01030{transform:matrix(0.215367,-0.002369,0.002750,0.249985,0,0);-ms-transform:matrix(0.215367,-0.002369,0.002750,0.249985,0,0);-webkit-transform:matrix(0.215367,-0.002369,0.002750,0.249985,0,0);}
.m69_c01030{transform:matrix(0.215437,-0.002370,0.002750,0.249985,0,0);-ms-transform:matrix(0.215437,-0.002370,0.002750,0.249985,0,0);-webkit-transform:matrix(0.215437,-0.002370,0.002750,0.249985,0,0);}
.md5_c01030{transform:matrix(0.215692,-0.002373,0.002750,0.249985,0,0);-ms-transform:matrix(0.215692,-0.002373,0.002750,0.249985,0,0);-webkit-transform:matrix(0.215692,-0.002373,0.002750,0.249985,0,0);}
.mf6_c01030{transform:matrix(0.216705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216705,0.000000,0.000000,0.250000,0,0);}
.m86_c01030{transform:matrix(0.217352,-0.002391,0.002750,0.249985,0,0);-ms-transform:matrix(0.217352,-0.002391,0.002750,0.249985,0,0);-webkit-transform:matrix(0.217352,-0.002391,0.002750,0.249985,0,0);}
.m11e_c01030{transform:matrix(0.217437,0.002392,-0.002750,0.249985,0,0);-ms-transform:matrix(0.217437,0.002392,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.217437,0.002392,-0.002750,0.249985,0,0);}
.m39_c01030{transform:matrix(0.217661,-0.001959,0.002250,0.249990,0,0);-ms-transform:matrix(0.217661,-0.001959,0.002250,0.249990,0,0);-webkit-transform:matrix(0.217661,-0.001959,0.002250,0.249990,0,0);}
.m7c_c01030{transform:matrix(0.217877,-0.002397,0.002750,0.249985,0,0);-ms-transform:matrix(0.217877,-0.002397,0.002750,0.249985,0,0);-webkit-transform:matrix(0.217877,-0.002397,0.002750,0.249985,0,0);}
.m56_c01030{transform:matrix(0.218242,-0.002401,0.002750,0.249985,0,0);-ms-transform:matrix(0.218242,-0.002401,0.002750,0.249985,0,0);-webkit-transform:matrix(0.218242,-0.002401,0.002750,0.249985,0,0);}
.m10_c01030{transform:matrix(0.218586,-0.001967,0.002250,0.249990,0,0);-ms-transform:matrix(0.218586,-0.001967,0.002250,0.249990,0,0);-webkit-transform:matrix(0.218586,-0.001967,0.002250,0.249990,0,0);}
.m120_c01030{transform:matrix(0.218947,0.002408,-0.002750,0.249985,0,0);-ms-transform:matrix(0.218947,0.002408,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.218947,0.002408,-0.002750,0.249985,0,0);}
.mc_c01030{transform:matrix(0.219411,-0.001975,0.002250,0.249990,0,0);-ms-transform:matrix(0.219411,-0.001975,0.002250,0.249990,0,0);-webkit-transform:matrix(0.219411,-0.001975,0.002250,0.249990,0,0);}
.md6_c01030{transform:matrix(0.219522,-0.002415,0.002750,0.249985,0,0);-ms-transform:matrix(0.219522,-0.002415,0.002750,0.249985,0,0);-webkit-transform:matrix(0.219522,-0.002415,0.002750,0.249985,0,0);}
.m6f_c01030{transform:matrix(0.220352,-0.002424,0.002750,0.249985,0,0);-ms-transform:matrix(0.220352,-0.002424,0.002750,0.249985,0,0);-webkit-transform:matrix(0.220352,-0.002424,0.002750,0.249985,0,0);}
.m68_c01030{transform:matrix(0.220357,-0.002424,0.002750,0.249985,0,0);-ms-transform:matrix(0.220357,-0.002424,0.002750,0.249985,0,0);-webkit-transform:matrix(0.220357,-0.002424,0.002750,0.249985,0,0);}
.m101_c01030{transform:matrix(0.220440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220440,0.000000,0.000000,0.250000,0,0);}
.m3c_c01030{transform:matrix(0.220446,-0.001984,0.002250,0.249990,0,0);-ms-transform:matrix(0.220446,-0.001984,0.002250,0.249990,0,0);-webkit-transform:matrix(0.220446,-0.001984,0.002250,0.249990,0,0);}
.m18_c01030{transform:matrix(0.220711,-0.001986,0.002250,0.249990,0,0);-ms-transform:matrix(0.220711,-0.001986,0.002250,0.249990,0,0);-webkit-transform:matrix(0.220711,-0.001986,0.002250,0.249990,0,0);}
.md2_c01030{transform:matrix(0.220787,-0.002429,0.002750,0.249985,0,0);-ms-transform:matrix(0.220787,-0.002429,0.002750,0.249985,0,0);-webkit-transform:matrix(0.220787,-0.002429,0.002750,0.249985,0,0);}
.m119_c01030{transform:matrix(0.220957,0.002431,-0.002750,0.249985,0,0);-ms-transform:matrix(0.220957,0.002431,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.220957,0.002431,-0.002750,0.249985,0,0);}
.m6e_c01030{transform:matrix(0.221072,-0.002432,0.002750,0.249985,0,0);-ms-transform:matrix(0.221072,-0.002432,0.002750,0.249985,0,0);-webkit-transform:matrix(0.221072,-0.002432,0.002750,0.249985,0,0);}
.m15_c01030{transform:matrix(0.221201,-0.001991,0.002250,0.249990,0,0);-ms-transform:matrix(0.221201,-0.001991,0.002250,0.249990,0,0);-webkit-transform:matrix(0.221201,-0.001991,0.002250,0.249990,0,0);}
.m10b_c01030{transform:matrix(0.221455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221455,0.000000,0.000000,0.250000,0,0);}
.m13_c01030{transform:matrix(0.221461,-0.001993,0.002250,0.249990,0,0);-ms-transform:matrix(0.221461,-0.001993,0.002250,0.249990,0,0);-webkit-transform:matrix(0.221461,-0.001993,0.002250,0.249990,0,0);}
.m6d_c01030{transform:matrix(0.221792,-0.002440,0.002750,0.249985,0,0);-ms-transform:matrix(0.221792,-0.002440,0.002750,0.249985,0,0);-webkit-transform:matrix(0.221792,-0.002440,0.002750,0.249985,0,0);}
.m20_c01030{transform:matrix(0.222116,-0.001999,0.002250,0.249990,0,0);-ms-transform:matrix(0.222116,-0.001999,0.002250,0.249990,0,0);-webkit-transform:matrix(0.222116,-0.001999,0.002250,0.249990,0,0);}
.m16_c01030{transform:matrix(0.222391,-0.002002,0.002250,0.249990,0,0);-ms-transform:matrix(0.222391,-0.002002,0.002250,0.249990,0,0);-webkit-transform:matrix(0.222391,-0.002002,0.002250,0.249990,0,0);}
.m17_c01030{transform:matrix(0.222946,-0.002007,0.002250,0.249990,0,0);-ms-transform:matrix(0.222946,-0.002007,0.002250,0.249990,0,0);-webkit-transform:matrix(0.222946,-0.002007,0.002250,0.249990,0,0);}
.md8_c01030{transform:matrix(0.223366,-0.002457,0.002750,0.249985,0,0);-ms-transform:matrix(0.223366,-0.002457,0.002750,0.249985,0,0);-webkit-transform:matrix(0.223366,-0.002457,0.002750,0.249985,0,0);}
.m35_c01030{transform:matrix(0.223371,-0.002010,0.002250,0.249990,0,0);-ms-transform:matrix(0.223371,-0.002010,0.002250,0.249990,0,0);-webkit-transform:matrix(0.223371,-0.002010,0.002250,0.249990,0,0);}
.m50_c01030{transform:matrix(0.223591,-0.002460,0.002750,0.249985,0,0);-ms-transform:matrix(0.223591,-0.002460,0.002750,0.249985,0,0);-webkit-transform:matrix(0.223591,-0.002460,0.002750,0.249985,0,0);}
.m4f_c01030{transform:matrix(0.223661,-0.002460,0.002750,0.249985,0,0);-ms-transform:matrix(0.223661,-0.002460,0.002750,0.249985,0,0);-webkit-transform:matrix(0.223661,-0.002460,0.002750,0.249985,0,0);}
.m88_c01030{transform:matrix(0.223876,-0.002463,0.002750,0.249985,0,0);-ms-transform:matrix(0.223876,-0.002463,0.002750,0.249985,0,0);-webkit-transform:matrix(0.223876,-0.002463,0.002750,0.249985,0,0);}
.m49_c01030{transform:matrix(0.224666,-0.002471,0.002750,0.249985,0,0);-ms-transform:matrix(0.224666,-0.002471,0.002750,0.249985,0,0);-webkit-transform:matrix(0.224666,-0.002471,0.002750,0.249985,0,0);}
.mfe_c01030{transform:matrix(0.225225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225225,0.000000,0.000000,0.250000,0,0);}
.m8b_c01030{transform:matrix(0.225831,-0.002484,0.002750,0.249985,0,0);-ms-transform:matrix(0.225831,-0.002484,0.002750,0.249985,0,0);-webkit-transform:matrix(0.225831,-0.002484,0.002750,0.249985,0,0);}
.m64_c01030{transform:matrix(0.226041,-0.002486,0.002750,0.249985,0,0);-ms-transform:matrix(0.226041,-0.002486,0.002750,0.249985,0,0);-webkit-transform:matrix(0.226041,-0.002486,0.002750,0.249985,0,0);}
.m77_c01030{transform:matrix(0.226406,-0.002490,0.002750,0.249985,0,0);-ms-transform:matrix(0.226406,-0.002490,0.002750,0.249985,0,0);-webkit-transform:matrix(0.226406,-0.002490,0.002750,0.249985,0,0);}
.ma_c01030{transform:matrix(0.226411,-0.002038,0.002250,0.249990,0,0);-ms-transform:matrix(0.226411,-0.002038,0.002250,0.249990,0,0);-webkit-transform:matrix(0.226411,-0.002038,0.002250,0.249990,0,0);}
.mdd_c01030{transform:matrix(0.226586,-0.002492,0.002750,0.249985,0,0);-ms-transform:matrix(0.226586,-0.002492,0.002750,0.249985,0,0);-webkit-transform:matrix(0.226586,-0.002492,0.002750,0.249985,0,0);}
.m114_c01030{transform:matrix(0.226675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226675,0.000000,0.000000,0.250000,0,0);}
.m55_c01030{transform:matrix(0.226881,-0.002496,0.002750,0.249985,0,0);-ms-transform:matrix(0.226881,-0.002496,0.002750,0.249985,0,0);-webkit-transform:matrix(0.226881,-0.002496,0.002750,0.249985,0,0);}
.m115_c01030{transform:matrix(0.226885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226885,0.000000,0.000000,0.250000,0,0);}
.ma1_c01030{transform:matrix(0.227046,-0.002498,0.002750,0.249985,0,0);-ms-transform:matrix(0.227046,-0.002498,0.002750,0.249985,0,0);-webkit-transform:matrix(0.227046,-0.002498,0.002750,0.249985,0,0);}
.m79_c01030{transform:matrix(0.227366,-0.002501,0.002750,0.249985,0,0);-ms-transform:matrix(0.227366,-0.002501,0.002750,0.249985,0,0);-webkit-transform:matrix(0.227366,-0.002501,0.002750,0.249985,0,0);}
.m111_c01030{transform:matrix(0.227390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227390,0.000000,0.000000,0.250000,0,0);}
.m74_c01030{transform:matrix(0.227496,-0.002502,0.002750,0.249985,0,0);-ms-transform:matrix(0.227496,-0.002502,0.002750,0.249985,0,0);-webkit-transform:matrix(0.227496,-0.002502,0.002750,0.249985,0,0);}
.m4_c01030{transform:matrix(0.227625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227625,0.000000,0.000000,0.250000,0,0);}
.m102_c01030{transform:matrix(0.227715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227715,0.000000,0.000000,0.250000,0,0);}
.mb7_c01030{transform:matrix(0.228076,-0.002509,0.002750,0.249985,0,0);-ms-transform:matrix(0.228076,-0.002509,0.002750,0.249985,0,0);-webkit-transform:matrix(0.228076,-0.002509,0.002750,0.249985,0,0);}
.m33_c01030{transform:matrix(0.228556,-0.002057,0.002250,0.249990,0,0);-ms-transform:matrix(0.228556,-0.002057,0.002250,0.249990,0,0);-webkit-transform:matrix(0.228556,-0.002057,0.002250,0.249990,0,0);}
.m8_c01030{transform:matrix(0.228671,-0.002058,0.002250,0.249990,0,0);-ms-transform:matrix(0.228671,-0.002058,0.002250,0.249990,0,0);-webkit-transform:matrix(0.228671,-0.002058,0.002250,0.249990,0,0);}
.mcf_c01030{transform:matrix(0.228726,-0.002516,0.002750,0.249985,0,0);-ms-transform:matrix(0.228726,-0.002516,0.002750,0.249985,0,0);-webkit-transform:matrix(0.228726,-0.002516,0.002750,0.249985,0,0);}
.m3e_c01030{transform:matrix(0.228746,-0.002059,0.002250,0.249990,0,0);-ms-transform:matrix(0.228746,-0.002059,0.002250,0.249990,0,0);-webkit-transform:matrix(0.228746,-0.002059,0.002250,0.249990,0,0);}
.m22_c01030{transform:matrix(0.228791,-0.002059,0.002250,0.249990,0,0);-ms-transform:matrix(0.228791,-0.002059,0.002250,0.249990,0,0);-webkit-transform:matrix(0.228791,-0.002059,0.002250,0.249990,0,0);}
.m47_c01030{transform:matrix(0.229251,-0.002522,0.002750,0.249985,0,0);-ms-transform:matrix(0.229251,-0.002522,0.002750,0.249985,0,0);-webkit-transform:matrix(0.229251,-0.002522,0.002750,0.249985,0,0);}
.m59_c01030{transform:matrix(0.229316,-0.002522,0.002750,0.249985,0,0);-ms-transform:matrix(0.229316,-0.002522,0.002750,0.249985,0,0);-webkit-transform:matrix(0.229316,-0.002522,0.002750,0.249985,0,0);}
.me8_c01030{transform:matrix(0.230395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230395,0.000000,0.000000,0.250000,0,0);}
.m11_c01030{transform:matrix(0.230686,-0.002076,0.002250,0.249990,0,0);-ms-transform:matrix(0.230686,-0.002076,0.002250,0.249990,0,0);-webkit-transform:matrix(0.230686,-0.002076,0.002250,0.249990,0,0);}
.m31_c01030{transform:matrix(0.230906,-0.002078,0.002250,0.249990,0,0);-ms-transform:matrix(0.230906,-0.002078,0.002250,0.249990,0,0);-webkit-transform:matrix(0.230906,-0.002078,0.002250,0.249990,0,0);}
.m73_c01030{transform:matrix(0.231336,-0.002545,0.002750,0.249985,0,0);-ms-transform:matrix(0.231336,-0.002545,0.002750,0.249985,0,0);-webkit-transform:matrix(0.231336,-0.002545,0.002750,0.249985,0,0);}
.m2f_c01030{transform:matrix(0.231436,-0.002083,0.002250,0.249990,0,0);-ms-transform:matrix(0.231436,-0.002083,0.002250,0.249990,0,0);-webkit-transform:matrix(0.231436,-0.002083,0.002250,0.249990,0,0);}
.m91_c01030{transform:matrix(0.231516,-0.002547,0.002750,0.249985,0,0);-ms-transform:matrix(0.231516,-0.002547,0.002750,0.249985,0,0);-webkit-transform:matrix(0.231516,-0.002547,0.002750,0.249985,0,0);}
.mce_c01030{transform:matrix(0.231626,-0.002548,0.002750,0.249985,0,0);-ms-transform:matrix(0.231626,-0.002548,0.002750,0.249985,0,0);-webkit-transform:matrix(0.231626,-0.002548,0.002750,0.249985,0,0);}
.mb4_c01030{transform:matrix(0.232261,-0.002555,0.002750,0.249985,0,0);-ms-transform:matrix(0.232261,-0.002555,0.002750,0.249985,0,0);-webkit-transform:matrix(0.232261,-0.002555,0.002750,0.249985,0,0);}
.m24_c01030{transform:matrix(0.232276,-0.002090,0.002250,0.249990,0,0);-ms-transform:matrix(0.232276,-0.002090,0.002250,0.249990,0,0);-webkit-transform:matrix(0.232276,-0.002090,0.002250,0.249990,0,0);}
.m81_c01030{transform:matrix(0.232291,-0.002555,0.002750,0.249985,0,0);-ms-transform:matrix(0.232291,-0.002555,0.002750,0.249985,0,0);-webkit-transform:matrix(0.232291,-0.002555,0.002750,0.249985,0,0);}
.mb0_c01030{transform:matrix(0.232746,-0.002560,0.002750,0.249985,0,0);-ms-transform:matrix(0.232746,-0.002560,0.002750,0.249985,0,0);-webkit-transform:matrix(0.232746,-0.002560,0.002750,0.249985,0,0);}
.ma8_c01030{transform:matrix(0.233601,-0.002570,0.002750,0.249985,0,0);-ms-transform:matrix(0.233601,-0.002570,0.002750,0.249985,0,0);-webkit-transform:matrix(0.233601,-0.002570,0.002750,0.249985,0,0);}
.m75_c01030{transform:matrix(0.233946,-0.002573,0.002750,0.249985,0,0);-ms-transform:matrix(0.233946,-0.002573,0.002750,0.249985,0,0);-webkit-transform:matrix(0.233946,-0.002573,0.002750,0.249985,0,0);}
.m87_c01030{transform:matrix(0.234146,-0.002576,0.002750,0.249985,0,0);-ms-transform:matrix(0.234146,-0.002576,0.002750,0.249985,0,0);-webkit-transform:matrix(0.234146,-0.002576,0.002750,0.249985,0,0);}
.m7f_c01030{transform:matrix(0.234171,-0.002576,0.002750,0.249985,0,0);-ms-transform:matrix(0.234171,-0.002576,0.002750,0.249985,0,0);-webkit-transform:matrix(0.234171,-0.002576,0.002750,0.249985,0,0);}
.me_c01030{transform:matrix(0.234371,-0.002109,0.002250,0.249990,0,0);-ms-transform:matrix(0.234371,-0.002109,0.002250,0.249990,0,0);-webkit-transform:matrix(0.234371,-0.002109,0.002250,0.249990,0,0);}
.mf9_c01030{transform:matrix(0.235680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235680,0.000000,0.000000,0.250000,0,0);}
.m112_c01030{transform:matrix(0.236030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236030,0.000000,0.000000,0.250000,0,0);}
.m2e_c01030{transform:matrix(0.236430,-0.002128,0.002250,0.249990,0,0);-ms-transform:matrix(0.236430,-0.002128,0.002250,0.249990,0,0);-webkit-transform:matrix(0.236430,-0.002128,0.002250,0.249990,0,0);}
.m9b_c01030{transform:matrix(0.236431,-0.002601,0.002750,0.249985,0,0);-ms-transform:matrix(0.236431,-0.002601,0.002750,0.249985,0,0);-webkit-transform:matrix(0.236431,-0.002601,0.002750,0.249985,0,0);}
.mb1_c01030{transform:matrix(0.236451,-0.002601,0.002750,0.249985,0,0);-ms-transform:matrix(0.236451,-0.002601,0.002750,0.249985,0,0);-webkit-transform:matrix(0.236451,-0.002601,0.002750,0.249985,0,0);}
.md0_c01030{transform:matrix(0.236491,-0.002601,0.002750,0.249985,0,0);-ms-transform:matrix(0.236491,-0.002601,0.002750,0.249985,0,0);-webkit-transform:matrix(0.236491,-0.002601,0.002750,0.249985,0,0);}
.m7_c01030{transform:matrix(0.236495,-0.002128,0.002250,0.249990,0,0);-ms-transform:matrix(0.236495,-0.002128,0.002250,0.249990,0,0);-webkit-transform:matrix(0.236495,-0.002128,0.002250,0.249990,0,0);}
.m107_c01030{transform:matrix(0.236830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236830,0.000000,0.000000,0.250000,0,0);}
.m10f_c01030{transform:matrix(0.236950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236950,0.000000,0.000000,0.250000,0,0);}
.maf_c01030{transform:matrix(0.237031,-0.002607,0.002750,0.249985,0,0);-ms-transform:matrix(0.237031,-0.002607,0.002750,0.249985,0,0);-webkit-transform:matrix(0.237031,-0.002607,0.002750,0.249985,0,0);}
.m5e_c01030{transform:matrix(0.237426,-0.002612,0.002750,0.249985,0,0);-ms-transform:matrix(0.237426,-0.002612,0.002750,0.249985,0,0);-webkit-transform:matrix(0.237426,-0.002612,0.002750,0.249985,0,0);}
.m7a_c01030{transform:matrix(0.237456,-0.002612,0.002750,0.249985,0,0);-ms-transform:matrix(0.237456,-0.002612,0.002750,0.249985,0,0);-webkit-transform:matrix(0.237456,-0.002612,0.002750,0.249985,0,0);}
.m57_c01030{transform:matrix(0.237701,-0.002615,0.002750,0.249985,0,0);-ms-transform:matrix(0.237701,-0.002615,0.002750,0.249985,0,0);-webkit-transform:matrix(0.237701,-0.002615,0.002750,0.249985,0,0);}
.m60_c01030{transform:matrix(0.237921,-0.002617,0.002750,0.249985,0,0);-ms-transform:matrix(0.237921,-0.002617,0.002750,0.249985,0,0);-webkit-transform:matrix(0.237921,-0.002617,0.002750,0.249985,0,0);}
.m84_c01030{transform:matrix(0.238361,-0.002622,0.002750,0.249985,0,0);-ms-transform:matrix(0.238361,-0.002622,0.002750,0.249985,0,0);-webkit-transform:matrix(0.238361,-0.002622,0.002750,0.249985,0,0);}
.ma0_c01030{transform:matrix(0.238556,-0.002624,0.002750,0.249985,0,0);-ms-transform:matrix(0.238556,-0.002624,0.002750,0.249985,0,0);-webkit-transform:matrix(0.238556,-0.002624,0.002750,0.249985,0,0);}
.m61_c01030{transform:matrix(0.238731,-0.002626,0.002750,0.249985,0,0);-ms-transform:matrix(0.238731,-0.002626,0.002750,0.249985,0,0);-webkit-transform:matrix(0.238731,-0.002626,0.002750,0.249985,0,0);}
.me0_c01030{transform:matrix(0.238836,-0.002627,0.002750,0.249985,0,0);-ms-transform:matrix(0.238836,-0.002627,0.002750,0.249985,0,0);-webkit-transform:matrix(0.238836,-0.002627,0.002750,0.249985,0,0);}
.m44_c01030{transform:matrix(0.238936,-0.002628,0.002750,0.249985,0,0);-ms-transform:matrix(0.238936,-0.002628,0.002750,0.249985,0,0);-webkit-transform:matrix(0.238936,-0.002628,0.002750,0.249985,0,0);}
.m37_c01030{transform:matrix(0.239260,-0.002153,0.002250,0.249990,0,0);-ms-transform:matrix(0.239260,-0.002153,0.002250,0.249990,0,0);-webkit-transform:matrix(0.239260,-0.002153,0.002250,0.249990,0,0);}
.mc7_c01030{transform:matrix(0.239271,-0.002632,0.002750,0.249985,0,0);-ms-transform:matrix(0.239271,-0.002632,0.002750,0.249985,0,0);-webkit-transform:matrix(0.239271,-0.002632,0.002750,0.249985,0,0);}
.m121_c01030{transform:matrix(0.240285,0.002643,-0.002750,0.249985,0,0);-ms-transform:matrix(0.240285,0.002643,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.240285,0.002643,-0.002750,0.249985,0,0);}
.m10a_c01030{transform:matrix(0.240535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240535,0.000000,0.000000,0.250000,0,0);}
.m8d_c01030{transform:matrix(0.240580,-0.002646,0.002750,0.249985,0,0);-ms-transform:matrix(0.240580,-0.002646,0.002750,0.249985,0,0);-webkit-transform:matrix(0.240580,-0.002646,0.002750,0.249985,0,0);}
.mff_c01030{transform:matrix(0.241170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241170,0.000000,0.000000,0.250000,0,0);}
.mf3_c01030{transform:matrix(0.241940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241940,0.000000,0.000000,0.250000,0,0);}
.m117_c01030{transform:matrix(0.242375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242375,0.000000,0.000000,0.250000,0,0);}
.mdc_c01030{transform:matrix(0.243040,-0.002673,0.002750,0.249985,0,0);-ms-transform:matrix(0.243040,-0.002673,0.002750,0.249985,0,0);-webkit-transform:matrix(0.243040,-0.002673,0.002750,0.249985,0,0);}
.mea_c01030{transform:matrix(0.243535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243535,0.000000,0.000000,0.250000,0,0);}
.m30_c01030{transform:matrix(0.243730,-0.002194,0.002250,0.249990,0,0);-ms-transform:matrix(0.243730,-0.002194,0.002250,0.249990,0,0);-webkit-transform:matrix(0.243730,-0.002194,0.002250,0.249990,0,0);}
.m4e_c01030{transform:matrix(0.244460,-0.002689,0.002750,0.249985,0,0);-ms-transform:matrix(0.244460,-0.002689,0.002750,0.249985,0,0);-webkit-transform:matrix(0.244460,-0.002689,0.002750,0.249985,0,0);}
.m36_c01030{transform:matrix(0.244585,-0.002201,0.002250,0.249990,0,0);-ms-transform:matrix(0.244585,-0.002201,0.002250,0.249990,0,0);-webkit-transform:matrix(0.244585,-0.002201,0.002250,0.249990,0,0);}
.mba_c01030{transform:matrix(0.245465,-0.002700,0.002750,0.249985,0,0);-ms-transform:matrix(0.245465,-0.002700,0.002750,0.249985,0,0);-webkit-transform:matrix(0.245465,-0.002700,0.002750,0.249985,0,0);}
.m54_c01030{transform:matrix(0.246190,-0.002708,0.002750,0.249985,0,0);-ms-transform:matrix(0.246190,-0.002708,0.002750,0.249985,0,0);-webkit-transform:matrix(0.246190,-0.002708,0.002750,0.249985,0,0);}
.me3_c01030{transform:matrix(0.246605,-0.002713,0.002750,0.249985,0,0);-ms-transform:matrix(0.246605,-0.002713,0.002750,0.249985,0,0);-webkit-transform:matrix(0.246605,-0.002713,0.002750,0.249985,0,0);}
.mf2_c01030{transform:matrix(0.246680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246680,0.000000,0.000000,0.250000,0,0);}
.m92_c01030{transform:matrix(0.246715,-0.002714,0.002750,0.249985,0,0);-ms-transform:matrix(0.246715,-0.002714,0.002750,0.249985,0,0);-webkit-transform:matrix(0.246715,-0.002714,0.002750,0.249985,0,0);}
.md3_c01030{transform:matrix(0.246860,-0.002715,0.002750,0.249985,0,0);-ms-transform:matrix(0.246860,-0.002715,0.002750,0.249985,0,0);-webkit-transform:matrix(0.246860,-0.002715,0.002750,0.249985,0,0);}
.mb8_c01030{transform:matrix(0.247120,-0.002718,0.002750,0.249985,0,0);-ms-transform:matrix(0.247120,-0.002718,0.002750,0.249985,0,0);-webkit-transform:matrix(0.247120,-0.002718,0.002750,0.249985,0,0);}
.maa_c01030{transform:matrix(0.247600,-0.002724,0.002750,0.249985,0,0);-ms-transform:matrix(0.247600,-0.002724,0.002750,0.249985,0,0);-webkit-transform:matrix(0.247600,-0.002724,0.002750,0.249985,0,0);}
.m2c_c01030{transform:matrix(0.247675,-0.002229,0.002250,0.249990,0,0);-ms-transform:matrix(0.247675,-0.002229,0.002250,0.249990,0,0);-webkit-transform:matrix(0.247675,-0.002229,0.002250,0.249990,0,0);}
.m9e_c01030{transform:matrix(0.247920,-0.002727,0.002750,0.249985,0,0);-ms-transform:matrix(0.247920,-0.002727,0.002750,0.249985,0,0);-webkit-transform:matrix(0.247920,-0.002727,0.002750,0.249985,0,0);}
.m9c_c01030{transform:matrix(0.248235,-0.002731,0.002750,0.249985,0,0);-ms-transform:matrix(0.248235,-0.002731,0.002750,0.249985,0,0);-webkit-transform:matrix(0.248235,-0.002731,0.002750,0.249985,0,0);}
.m8c_c01030{transform:matrix(0.248290,-0.002731,0.002750,0.249985,0,0);-ms-transform:matrix(0.248290,-0.002731,0.002750,0.249985,0,0);-webkit-transform:matrix(0.248290,-0.002731,0.002750,0.249985,0,0);}
.m2a_c01030{transform:matrix(0.248650,-0.002238,0.002250,0.249990,0,0);-ms-transform:matrix(0.248650,-0.002238,0.002250,0.249990,0,0);-webkit-transform:matrix(0.248650,-0.002238,0.002250,0.249990,0,0);}
.ma9_c01030{transform:matrix(0.248910,-0.002738,0.002750,0.249985,0,0);-ms-transform:matrix(0.248910,-0.002738,0.002750,0.249985,0,0);-webkit-transform:matrix(0.248910,-0.002738,0.002750,0.249985,0,0);}
.m1c_c01030{transform:matrix(0.249310,-0.002244,0.002250,0.249990,0,0);-ms-transform:matrix(0.249310,-0.002244,0.002250,0.249990,0,0);-webkit-transform:matrix(0.249310,-0.002244,0.002250,0.249990,0,0);}
.m104_c01030{transform:matrix(0.249320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249320,0.000000,0.000000,0.250000,0,0);}
.m38_c01030{transform:matrix(0.249630,-0.002247,0.002250,0.249990,0,0);-ms-transform:matrix(0.249630,-0.002247,0.002250,0.249990,0,0);-webkit-transform:matrix(0.249630,-0.002247,0.002250,0.249990,0,0);}
.mf4_c01030{transform:matrix(0.249650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249650,0.000000,0.000000,0.250000,0,0);}
.md7_c01030{transform:matrix(0.249880,-0.002749,0.002750,0.249985,0,0);-ms-transform:matrix(0.249880,-0.002749,0.002750,0.249985,0,0);-webkit-transform:matrix(0.249880,-0.002749,0.002750,0.249985,0,0);}
.m43_c01030{transform:matrix(0.250000,-0.002750,0.002750,0.249985,0,0);-ms-transform:matrix(0.250000,-0.002750,0.002750,0.249985,0,0);-webkit-transform:matrix(0.250000,-0.002750,0.002750,0.249985,0,0);}
.me5_c01030{transform:matrix(0.250020,-0.002750,0.002750,0.249985,0,0);-ms-transform:matrix(0.250020,-0.002750,0.002750,0.249985,0,0);-webkit-transform:matrix(0.250020,-0.002750,0.002750,0.249985,0,0);}
.m108_c01030{transform:matrix(0.250170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250170,0.000000,0.000000,0.250000,0,0);}
.m10d_c01030{transform:matrix(0.250345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250345,0.000000,0.000000,0.250000,0,0);}
.m28_c01030{transform:matrix(0.251115,-0.002260,0.002250,0.249990,0,0);-ms-transform:matrix(0.251115,-0.002260,0.002250,0.249990,0,0);-webkit-transform:matrix(0.251115,-0.002260,0.002250,0.249990,0,0);}
.m8a_c01030{transform:matrix(0.251280,-0.002764,0.002750,0.249985,0,0);-ms-transform:matrix(0.251280,-0.002764,0.002750,0.249985,0,0);-webkit-transform:matrix(0.251280,-0.002764,0.002750,0.249985,0,0);}
.m32_c01030{transform:matrix(0.251900,-0.002267,0.002250,0.249990,0,0);-ms-transform:matrix(0.251900,-0.002267,0.002250,0.249990,0,0);-webkit-transform:matrix(0.251900,-0.002267,0.002250,0.249990,0,0);}
.m96_c01030{transform:matrix(0.252040,-0.002772,0.002750,0.249985,0,0);-ms-transform:matrix(0.252040,-0.002772,0.002750,0.249985,0,0);-webkit-transform:matrix(0.252040,-0.002772,0.002750,0.249985,0,0);}
.mc5_c01030{transform:matrix(0.252100,-0.002773,0.002750,0.249985,0,0);-ms-transform:matrix(0.252100,-0.002773,0.002750,0.249985,0,0);-webkit-transform:matrix(0.252100,-0.002773,0.002750,0.249985,0,0);}
.m45_c01030{transform:matrix(0.252830,-0.002781,0.002750,0.249985,0,0);-ms-transform:matrix(0.252830,-0.002781,0.002750,0.249985,0,0);-webkit-transform:matrix(0.252830,-0.002781,0.002750,0.249985,0,0);}
.mef_c01030{transform:matrix(0.252880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252880,0.000000,0.000000,0.250000,0,0);}
.mc0_c01030{transform:matrix(0.253090,-0.002784,0.002750,0.249985,0,0);-ms-transform:matrix(0.253090,-0.002784,0.002750,0.249985,0,0);-webkit-transform:matrix(0.253090,-0.002784,0.002750,0.249985,0,0);}
.m105_c01030{transform:matrix(0.253405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253405,0.000000,0.000000,0.250000,0,0);}
.m23_c01030{transform:matrix(0.254175,-0.002288,0.002250,0.249990,0,0);-ms-transform:matrix(0.254175,-0.002288,0.002250,0.249990,0,0);-webkit-transform:matrix(0.254175,-0.002288,0.002250,0.249990,0,0);}
.m25_c01030{transform:matrix(0.254240,-0.002288,0.002250,0.249990,0,0);-ms-transform:matrix(0.254240,-0.002288,0.002250,0.249990,0,0);-webkit-transform:matrix(0.254240,-0.002288,0.002250,0.249990,0,0);}
.m5b_c01030{transform:matrix(0.254590,-0.002800,0.002750,0.249985,0,0);-ms-transform:matrix(0.254590,-0.002800,0.002750,0.249985,0,0);-webkit-transform:matrix(0.254590,-0.002800,0.002750,0.249985,0,0);}
.mbd_c01030{transform:matrix(0.255440,-0.002810,0.002750,0.249985,0,0);-ms-transform:matrix(0.255440,-0.002810,0.002750,0.249985,0,0);-webkit-transform:matrix(0.255440,-0.002810,0.002750,0.249985,0,0);}
.m99_c01030{transform:matrix(0.256200,-0.002818,0.002750,0.249985,0,0);-ms-transform:matrix(0.256200,-0.002818,0.002750,0.249985,0,0);-webkit-transform:matrix(0.256200,-0.002818,0.002750,0.249985,0,0);}
.m58_c01030{transform:matrix(0.256599,-0.002823,0.002750,0.249985,0,0);-ms-transform:matrix(0.256599,-0.002823,0.002750,0.249985,0,0);-webkit-transform:matrix(0.256599,-0.002823,0.002750,0.249985,0,0);}
.mc6_c01030{transform:matrix(0.256624,-0.002823,0.002750,0.249985,0,0);-ms-transform:matrix(0.256624,-0.002823,0.002750,0.249985,0,0);-webkit-transform:matrix(0.256624,-0.002823,0.002750,0.249985,0,0);}
.ma3_c01030{transform:matrix(0.257164,-0.002829,0.002750,0.249985,0,0);-ms-transform:matrix(0.257164,-0.002829,0.002750,0.249985,0,0);-webkit-transform:matrix(0.257164,-0.002829,0.002750,0.249985,0,0);}
.m5a_c01030{transform:matrix(0.257519,-0.002833,0.002750,0.249985,0,0);-ms-transform:matrix(0.257519,-0.002833,0.002750,0.249985,0,0);-webkit-transform:matrix(0.257519,-0.002833,0.002750,0.249985,0,0);}
.m1d_c01030{transform:matrix(0.257555,-0.002318,0.002250,0.249990,0,0);-ms-transform:matrix(0.257555,-0.002318,0.002250,0.249990,0,0);-webkit-transform:matrix(0.257555,-0.002318,0.002250,0.249990,0,0);}
.m93_c01030{transform:matrix(0.257984,-0.002838,0.002750,0.249985,0,0);-ms-transform:matrix(0.257984,-0.002838,0.002750,0.249985,0,0);-webkit-transform:matrix(0.257984,-0.002838,0.002750,0.249985,0,0);}
.mbf_c01030{transform:matrix(0.258124,-0.002839,0.002750,0.249985,0,0);-ms-transform:matrix(0.258124,-0.002839,0.002750,0.249985,0,0);-webkit-transform:matrix(0.258124,-0.002839,0.002750,0.249985,0,0);}
.ma5_c01030{transform:matrix(0.259904,-0.002859,0.002750,0.249985,0,0);-ms-transform:matrix(0.259904,-0.002859,0.002750,0.249985,0,0);-webkit-transform:matrix(0.259904,-0.002859,0.002750,0.249985,0,0);}
.m34_c01030{transform:matrix(0.260179,-0.002342,0.002250,0.249990,0,0);-ms-transform:matrix(0.260179,-0.002342,0.002250,0.249990,0,0);-webkit-transform:matrix(0.260179,-0.002342,0.002250,0.249990,0,0);}
.mc3_c01030{transform:matrix(0.260714,-0.002868,0.002750,0.249985,0,0);-ms-transform:matrix(0.260714,-0.002868,0.002750,0.249985,0,0);-webkit-transform:matrix(0.260714,-0.002868,0.002750,0.249985,0,0);}
.m21_c01030{transform:matrix(0.260724,-0.002347,0.002250,0.249990,0,0);-ms-transform:matrix(0.260724,-0.002347,0.002250,0.249990,0,0);-webkit-transform:matrix(0.260724,-0.002347,0.002250,0.249990,0,0);}
.md9_c01030{transform:matrix(0.260869,-0.002870,0.002750,0.249985,0,0);-ms-transform:matrix(0.260869,-0.002870,0.002750,0.249985,0,0);-webkit-transform:matrix(0.260869,-0.002870,0.002750,0.249985,0,0);}
.m1e_c01030{transform:matrix(0.260989,-0.002349,0.002250,0.249990,0,0);-ms-transform:matrix(0.260989,-0.002349,0.002250,0.249990,0,0);-webkit-transform:matrix(0.260989,-0.002349,0.002250,0.249990,0,0);}
.m10c_c01030{transform:matrix(0.261125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261125,0.000000,0.000000,0.250000,0,0);}
.m4a_c01030{transform:matrix(0.261229,-0.002874,0.002750,0.249985,0,0);-ms-transform:matrix(0.261229,-0.002874,0.002750,0.249985,0,0);-webkit-transform:matrix(0.261229,-0.002874,0.002750,0.249985,0,0);}
.m26_c01030{transform:matrix(0.261259,-0.002351,0.002250,0.249990,0,0);-ms-transform:matrix(0.261259,-0.002351,0.002250,0.249990,0,0);-webkit-transform:matrix(0.261259,-0.002351,0.002250,0.249990,0,0);}
.mab_c01030{transform:matrix(0.262239,-0.002885,0.002750,0.249985,0,0);-ms-transform:matrix(0.262239,-0.002885,0.002750,0.249985,0,0);-webkit-transform:matrix(0.262239,-0.002885,0.002750,0.249985,0,0);}
.mf0_c01030{transform:matrix(0.262255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262255,0.000000,0.000000,0.250000,0,0);}
.m1a_c01030{transform:matrix(0.262834,-0.002366,0.002250,0.249990,0,0);-ms-transform:matrix(0.262834,-0.002366,0.002250,0.249990,0,0);-webkit-transform:matrix(0.262834,-0.002366,0.002250,0.249990,0,0);}
.m4d_c01030{transform:matrix(0.263774,-0.002902,0.002750,0.249985,0,0);-ms-transform:matrix(0.263774,-0.002902,0.002750,0.249985,0,0);-webkit-transform:matrix(0.263774,-0.002902,0.002750,0.249985,0,0);}
.mb6_c01030{transform:matrix(0.263889,-0.002903,0.002750,0.249985,0,0);-ms-transform:matrix(0.263889,-0.002903,0.002750,0.249985,0,0);-webkit-transform:matrix(0.263889,-0.002903,0.002750,0.249985,0,0);}
.m29_c01030{transform:matrix(0.264009,-0.002376,0.002250,0.249990,0,0);-ms-transform:matrix(0.264009,-0.002376,0.002250,0.249990,0,0);-webkit-transform:matrix(0.264009,-0.002376,0.002250,0.249990,0,0);}
.m95_c01030{transform:matrix(0.264479,-0.002909,0.002750,0.249985,0,0);-ms-transform:matrix(0.264479,-0.002909,0.002750,0.249985,0,0);-webkit-transform:matrix(0.264479,-0.002909,0.002750,0.249985,0,0);}
.m51_c01030{transform:matrix(0.264964,-0.002915,0.002750,0.249985,0,0);-ms-transform:matrix(0.264964,-0.002915,0.002750,0.249985,0,0);-webkit-transform:matrix(0.264964,-0.002915,0.002750,0.249985,0,0);}
.med_c01030{transform:matrix(0.265055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265055,0.000000,0.000000,0.250000,0,0);}
.ma2_c01030{transform:matrix(0.265559,-0.002921,0.002750,0.249985,0,0);-ms-transform:matrix(0.265559,-0.002921,0.002750,0.249985,0,0);-webkit-transform:matrix(0.265559,-0.002921,0.002750,0.249985,0,0);}
.mc1_c01030{transform:matrix(0.266614,-0.002933,0.002750,0.249985,0,0);-ms-transform:matrix(0.266614,-0.002933,0.002750,0.249985,0,0);-webkit-transform:matrix(0.266614,-0.002933,0.002750,0.249985,0,0);}
.m4b_c01030{transform:matrix(0.268059,-0.002949,0.002750,0.249985,0,0);-ms-transform:matrix(0.268059,-0.002949,0.002750,0.249985,0,0);-webkit-transform:matrix(0.268059,-0.002949,0.002750,0.249985,0,0);}
.m9f_c01030{transform:matrix(0.269974,-0.002970,0.002750,0.249985,0,0);-ms-transform:matrix(0.269974,-0.002970,0.002750,0.249985,0,0);-webkit-transform:matrix(0.269974,-0.002970,0.002750,0.249985,0,0);}
.m89_c01030{transform:matrix(0.270809,-0.002979,0.002750,0.249985,0,0);-ms-transform:matrix(0.270809,-0.002979,0.002750,0.249985,0,0);-webkit-transform:matrix(0.270809,-0.002979,0.002750,0.249985,0,0);}
.mee_c01030{transform:matrix(0.270825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270825,0.000000,0.000000,0.250000,0,0);}
.m4c_c01030{transform:matrix(0.271584,-0.002987,0.002750,0.249985,0,0);-ms-transform:matrix(0.271584,-0.002987,0.002750,0.249985,0,0);-webkit-transform:matrix(0.271584,-0.002987,0.002750,0.249985,0,0);}
.mcc_c01030{transform:matrix(0.272159,-0.002994,0.002750,0.249985,0,0);-ms-transform:matrix(0.272159,-0.002994,0.002750,0.249985,0,0);-webkit-transform:matrix(0.272159,-0.002994,0.002750,0.249985,0,0);}
.m2d_c01030{transform:matrix(0.272529,-0.002453,0.002250,0.249990,0,0);-ms-transform:matrix(0.272529,-0.002453,0.002250,0.249990,0,0);-webkit-transform:matrix(0.272529,-0.002453,0.002250,0.249990,0,0);}
.m2b_c01030{transform:matrix(0.272939,-0.002456,0.002250,0.249990,0,0);-ms-transform:matrix(0.272939,-0.002456,0.002250,0.249990,0,0);-webkit-transform:matrix(0.272939,-0.002456,0.002250,0.249990,0,0);}
.m53_c01030{transform:matrix(0.273263,-0.003006,0.002750,0.249985,0,0);-ms-transform:matrix(0.273263,-0.003006,0.002750,0.249985,0,0);-webkit-transform:matrix(0.273263,-0.003006,0.002750,0.249985,0,0);}
.m8f_c01030{transform:matrix(0.273358,-0.003007,0.002750,0.249985,0,0);-ms-transform:matrix(0.273358,-0.003007,0.002750,0.249985,0,0);-webkit-transform:matrix(0.273358,-0.003007,0.002750,0.249985,0,0);}
.mb5_c01030{transform:matrix(0.273618,-0.003010,0.002750,0.249985,0,0);-ms-transform:matrix(0.273618,-0.003010,0.002750,0.249985,0,0);-webkit-transform:matrix(0.273618,-0.003010,0.002750,0.249985,0,0);}
.mc2_c01030{transform:matrix(0.274348,-0.003018,0.002750,0.249985,0,0);-ms-transform:matrix(0.274348,-0.003018,0.002750,0.249985,0,0);-webkit-transform:matrix(0.274348,-0.003018,0.002750,0.249985,0,0);}
.mf1_c01030{transform:matrix(0.274425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274425,0.000000,0.000000,0.250000,0,0);}
.m90_c01030{transform:matrix(0.274548,-0.003020,0.002750,0.249985,0,0);-ms-transform:matrix(0.274548,-0.003020,0.002750,0.249985,0,0);-webkit-transform:matrix(0.274548,-0.003020,0.002750,0.249985,0,0);}
.ma7_c01030{transform:matrix(0.275108,-0.003026,0.002750,0.249985,0,0);-ms-transform:matrix(0.275108,-0.003026,0.002750,0.249985,0,0);-webkit-transform:matrix(0.275108,-0.003026,0.002750,0.249985,0,0);}
.m48_c01030{transform:matrix(0.275548,-0.003031,0.002750,0.249985,0,0);-ms-transform:matrix(0.275548,-0.003031,0.002750,0.249985,0,0);-webkit-transform:matrix(0.275548,-0.003031,0.002750,0.249985,0,0);}
.mb9_c01030{transform:matrix(0.276083,-0.003037,0.002750,0.249985,0,0);-ms-transform:matrix(0.276083,-0.003037,0.002750,0.249985,0,0);-webkit-transform:matrix(0.276083,-0.003037,0.002750,0.249985,0,0);}
.m98_c01030{transform:matrix(0.276823,-0.003045,0.002750,0.249985,0,0);-ms-transform:matrix(0.276823,-0.003045,0.002750,0.249985,0,0);-webkit-transform:matrix(0.276823,-0.003045,0.002750,0.249985,0,0);}
.m9a_c01030{transform:matrix(0.277908,-0.003057,0.002750,0.249985,0,0);-ms-transform:matrix(0.277908,-0.003057,0.002750,0.249985,0,0);-webkit-transform:matrix(0.277908,-0.003057,0.002750,0.249985,0,0);}
.m27_c01030{transform:matrix(0.278174,-0.002504,0.002250,0.249990,0,0);-ms-transform:matrix(0.278174,-0.002504,0.002250,0.249990,0,0);-webkit-transform:matrix(0.278174,-0.002504,0.002250,0.249990,0,0);}
.mc4_c01030{transform:matrix(0.278388,-0.003062,0.002750,0.249985,0,0);-ms-transform:matrix(0.278388,-0.003062,0.002750,0.249985,0,0);-webkit-transform:matrix(0.278388,-0.003062,0.002750,0.249985,0,0);}
.mf5_c01030{transform:matrix(0.278665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278665,0.000000,0.000000,0.250000,0,0);}
.m46_c01030{transform:matrix(0.279888,-0.003079,0.002750,0.249985,0,0);-ms-transform:matrix(0.279888,-0.003079,0.002750,0.249985,0,0);-webkit-transform:matrix(0.279888,-0.003079,0.002750,0.249985,0,0);}
.m9d_c01030{transform:matrix(0.279933,-0.003079,0.002750,0.249985,0,0);-ms-transform:matrix(0.279933,-0.003079,0.002750,0.249985,0,0);-webkit-transform:matrix(0.279933,-0.003079,0.002750,0.249985,0,0);}
.me1_c01030{transform:matrix(0.280778,-0.003089,0.002750,0.249985,0,0);-ms-transform:matrix(0.280778,-0.003089,0.002750,0.249985,0,0);-webkit-transform:matrix(0.280778,-0.003089,0.002750,0.249985,0,0);}
.mc8_c01030{transform:matrix(0.281678,-0.003098,0.002750,0.249985,0,0);-ms-transform:matrix(0.281678,-0.003098,0.002750,0.249985,0,0);-webkit-transform:matrix(0.281678,-0.003098,0.002750,0.249985,0,0);}
.m42_c01030{transform:matrix(0.282428,-0.003107,0.002750,0.249985,0,0);-ms-transform:matrix(0.282428,-0.003107,0.002750,0.249985,0,0);-webkit-transform:matrix(0.282428,-0.003107,0.002750,0.249985,0,0);}
.mbc_c01030{transform:matrix(0.283478,-0.003118,0.002750,0.249985,0,0);-ms-transform:matrix(0.283478,-0.003118,0.002750,0.249985,0,0);-webkit-transform:matrix(0.283478,-0.003118,0.002750,0.249985,0,0);}
.me4_c01030{transform:matrix(0.286728,-0.003154,0.002750,0.249985,0,0);-ms-transform:matrix(0.286728,-0.003154,0.002750,0.249985,0,0);-webkit-transform:matrix(0.286728,-0.003154,0.002750,0.249985,0,0);}
.me2_c01030{transform:matrix(0.288213,-0.003170,0.002750,0.249985,0,0);-ms-transform:matrix(0.288213,-0.003170,0.002750,0.249985,0,0);-webkit-transform:matrix(0.288213,-0.003170,0.002750,0.249985,0,0);}
.me6_c01030{transform:matrix(0.289048,-0.003180,0.002750,0.249985,0,0);-ms-transform:matrix(0.289048,-0.003180,0.002750,0.249985,0,0);-webkit-transform:matrix(0.289048,-0.003180,0.002750,0.249985,0,0);}
.mbe_c01030{transform:matrix(0.297922,-0.003277,0.002750,0.249985,0,0);-ms-transform:matrix(0.297922,-0.003277,0.002750,0.249985,0,0);-webkit-transform:matrix(0.297922,-0.003277,0.002750,0.249985,0,0);}
.m97_c01030{transform:matrix(0.312026,-0.003432,0.002750,0.249985,0,0);-ms-transform:matrix(0.312026,-0.003432,0.002750,0.249985,0,0);-webkit-transform:matrix(0.312026,-0.003432,0.002750,0.249985,0,0);}
.mcb_c01030{transform:matrix(0.354459,-0.003899,0.002750,0.249985,0,0);-ms-transform:matrix(0.354459,-0.003899,0.002750,0.249985,0,0);-webkit-transform:matrix(0.354459,-0.003899,0.002750,0.249985,0,0);}
.m2_c01030{transform:matrix(0.429860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429860,0.000000,0.000000,0.250000,0,0);}
.m1_c01030{transform:matrix(0.509115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509115,0.000000,0.000000,0.250000,0,0);}
.m0_c01030{transform:matrix(0.711535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.711535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.711535,0.000000,0.000000,0.250000,0,0);}
.m123_c01030{transform:matrix(1.406210,0.015468,-0.002750,0.249985,0,0);-ms-transform:matrix(1.406210,0.015468,-0.002750,0.249985,0,0);-webkit-transform:matrix(1.406210,0.015468,-0.002750,0.249985,0,0);}
.m122_c01030{transform:matrix(4.111316,0.045224,-0.002750,0.249985,0,0);-ms-transform:matrix(4.111316,0.045224,-0.002750,0.249985,0,0);-webkit-transform:matrix(4.111316,0.045224,-0.002750,0.249985,0,0);}
.v0_c01030{vertical-align:0.000000px;}
.ls0_c01030{letter-spacing:0.000000px;}
.sc__c01030{text-shadow:none;}
.sc0_c01030{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__c01030{-webkit-text-stroke:0px transparent;}
.sc0_c01030{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01030{word-spacing:0.000000px;}
.fc0_c01030{color:transparent;}
.fs1_c01030{font-size:12.000000px;}
.fsf_c01030{font-size:24.001452px;}
.fs0_c01030{font-size:48.000000px;}
.fse_c01030{font-size:48.002904px;}
.fsb_c01030{font-size:66.003993px;}
.fsd_c01030{font-size:72.000000px;}
.fs6_c01030{font-size:72.002916px;}
.fs7_c01030{font-size:72.004356px;}
.fs2_c01030{font-size:78.000000px;}
.fs5_c01030{font-size:78.003159px;}
.fs8_c01030{font-size:78.004719px;}
.fsc_c01030{font-size:84.000000px;}
.fs3_c01030{font-size:84.003402px;}
.fs9_c01030{font-size:84.005082px;}
.fs4_c01030{font-size:90.003645px;}
.fsa_c01030{font-size:90.005445px;}
.fs11_c01030{font-size:102.001836px;}
.fs10_c01030{font-size:120.002160px;}
.y0_c01030{bottom:0.000000px;}
.y11a_c01030{bottom:69.569649px;}
.y119_c01030{bottom:70.013037px;}
.y118_c01030{bottom:70.537278px;}
.y117_c01030{bottom:70.805433px;}
.y116_c01030{bottom:71.069118px;}
.y115_c01030{bottom:71.421696px;}
.y114_c01030{bottom:71.683707px;}
.y113_c01030{bottom:72.295149px;}
.y112_c01030{bottom:73.170069px;}
.y111_c01030{bottom:104.498631px;}
.y110_c01030{bottom:104.753691px;}
.y10f_c01030{bottom:105.094926px;}
.y10e_c01030{bottom:105.423840px;}
.y10d_c01030{bottom:105.621480px;}
.y10c_c01030{bottom:105.754356px;}
.y10b_c01030{bottom:106.015446px;}
.y10a_c01030{bottom:106.277625px;}
.y109_c01030{bottom:106.739298px;}
.y108_c01030{bottom:106.933626px;}
.y107_c01030{bottom:107.264187px;}
.y106_c01030{bottom:107.460000px;}
.y104_c01030{bottom:139.053660px;}
.y105_c01030{bottom:139.054226px;}
.y103_c01030{bottom:149.309433px;}
.y102_c01030{bottom:155.218479px;}
.y101_c01030{bottom:156.071116px;}
.y100_c01030{bottom:156.935799px;}
.yff_c01030{bottom:157.912830px;}
.yfe_c01030{bottom:158.512902px;}
.yfd_c01030{bottom:159.092382px;}
.yfc_c01030{bottom:159.843512px;}
.yfb_c01030{bottom:161.037254px;}
.yfa_c01030{bottom:162.004500px;}
.yf9_c01030{bottom:194.247000px;}
.yf8_c01030{bottom:230.392500px;}
.yeb_c01030{bottom:263.793000px;}
.yec_c01030{bottom:264.546000px;}
.yed_c01030{bottom:265.000500px;}
.yee_c01030{bottom:265.624500px;}
.yef_c01030{bottom:267.298500px;}
.yf0_c01030{bottom:267.771000px;}
.yf1_c01030{bottom:268.531500px;}
.yf2_c01030{bottom:268.989000px;}
.yf3_c01030{bottom:269.464500px;}
.yf4_c01030{bottom:270.519000px;}
.yf5_c01030{bottom:271.788000px;}
.yf6_c01030{bottom:272.256000px;}
.yf7_c01030{bottom:273.043500px;}
.yea_c01030{bottom:304.747500px;}
.ye9_c01030{bottom:340.531500px;}
.ye3_c01030{bottom:370.410827px;}
.ye4_c01030{bottom:371.734934px;}
.ye5_c01030{bottom:373.462284px;}
.ye6_c01030{bottom:374.109717px;}
.ye7_c01030{bottom:375.453038px;}
.ye8_c01030{bottom:376.083945px;}
.yd6_c01030{bottom:405.780648px;}
.yd7_c01030{bottom:406.162757px;}
.yd8_c01030{bottom:406.555737px;}
.yd9_c01030{bottom:406.957281px;}
.yda_c01030{bottom:408.129987px;}
.ydb_c01030{bottom:408.534171px;}
.ydc_c01030{bottom:410.374082px;}
.ydd_c01030{bottom:410.785310px;}
.yde_c01030{bottom:411.304290px;}
.ydf_c01030{bottom:412.355979px;}
.ye0_c01030{bottom:412.893933px;}
.ye1_c01030{bottom:413.302736px;}
.ye2_c01030{bottom:413.678987px;}
.yd5_c01030{bottom:445.721238px;}
.yd4_c01030{bottom:445.721511px;}
.yd3_c01030{bottom:445.721964px;}
.yd0_c01030{bottom:445.722132px;}
.yd1_c01030{bottom:445.722200px;}
.yd2_c01030{bottom:445.722600px;}
.ycf_c01030{bottom:445.722705px;}
.yce_c01030{bottom:445.723112px;}
.ycb_c01030{bottom:445.723134px;}
.ycd_c01030{bottom:445.723161px;}
.ycc_c01030{bottom:445.723808px;}
.yc1_c01030{bottom:478.956650px;}
.yc2_c01030{bottom:479.794767px;}
.yc3_c01030{bottom:480.285015px;}
.yc4_c01030{bottom:481.484829px;}
.yc5_c01030{bottom:482.212463px;}
.yc6_c01030{bottom:483.527826px;}
.yc7_c01030{bottom:484.017909px;}
.yc8_c01030{bottom:484.632534px;}
.yc9_c01030{bottom:484.879061px;}
.yca_c01030{bottom:485.250575px;}
.yb6_c01030{bottom:515.139111px;}
.yb7_c01030{bottom:515.599874px;}
.yb8_c01030{bottom:515.829123px;}
.yb9_c01030{bottom:516.213116px;}
.yba_c01030{bottom:516.977652px;}
.ybb_c01030{bottom:517.293675px;}
.ybc_c01030{bottom:517.518419px;}
.ybd_c01030{bottom:518.449898px;}
.ybe_c01030{bottom:518.911716px;}
.ybf_c01030{bottom:519.226419px;}
.yc0_c01030{bottom:519.833570px;}
.yac_c01030{bottom:549.164414px;}
.yad_c01030{bottom:549.958050px;}
.yae_c01030{bottom:550.306701px;}
.yaf_c01030{bottom:550.818180px;}
.yb0_c01030{bottom:552.624234px;}
.yb1_c01030{bottom:554.406518px;}
.yb2_c01030{bottom:556.095618px;}
.yb3_c01030{bottom:557.058318px;}
.yb4_c01030{bottom:557.564304px;}
.yb5_c01030{bottom:559.045428px;}
.y9f_c01030{bottom:585.617818px;}
.ya0_c01030{bottom:586.974768px;}
.ya1_c01030{bottom:587.591043px;}
.ya2_c01030{bottom:588.055815px;}
.ya3_c01030{bottom:588.973959px;}
.ya4_c01030{bottom:589.744328px;}
.ya5_c01030{bottom:590.046856px;}
.ya6_c01030{bottom:591.134387px;}
.ya7_c01030{bottom:591.588798px;}
.ya8_c01030{bottom:592.839856px;}
.ya9_c01030{bottom:593.444469px;}
.yaa_c01030{bottom:593.932352px;}
.yab_c01030{bottom:594.692921px;}
.y95_c01030{bottom:622.068233px;}
.y96_c01030{bottom:622.665649px;}
.y97_c01030{bottom:623.243475px;}
.y98_c01030{bottom:624.244208px;}
.y99_c01030{bottom:624.440914px;}
.y9a_c01030{bottom:625.024714px;}
.y9b_c01030{bottom:626.020497px;}
.y9c_c01030{bottom:626.304707px;}
.y9d_c01030{bottom:626.722794px;}
.y9e_c01030{bottom:628.109565px;}
.y88_c01030{bottom:657.171105px;}
.y89_c01030{bottom:657.726706px;}
.y8a_c01030{bottom:658.877702px;}
.y8b_c01030{bottom:659.871146px;}
.y8c_c01030{bottom:660.286617px;}
.y8d_c01030{bottom:660.717399px;}
.y8e_c01030{bottom:661.310779px;}
.y8f_c01030{bottom:661.711371px;}
.y90_c01030{bottom:662.743667px;}
.y91_c01030{bottom:664.013328px;}
.y92_c01030{bottom:664.449570px;}
.y93_c01030{bottom:665.027460px;}
.y94_c01030{bottom:665.886500px;}
.y7c_c01030{bottom:693.352516px;}
.y7d_c01030{bottom:693.967344px;}
.y7e_c01030{bottom:694.259657px;}
.y7f_c01030{bottom:694.928055px;}
.y80_c01030{bottom:695.633372px;}
.y81_c01030{bottom:695.929778px;}
.y82_c01030{bottom:696.714757px;}
.y83_c01030{bottom:697.015901px;}
.y84_c01030{bottom:697.319683px;}
.y85_c01030{bottom:698.310911px;}
.y86_c01030{bottom:698.611724px;}
.y87_c01030{bottom:699.005847px;}
.y71_c01030{bottom:728.455191px;}
.y72_c01030{bottom:729.061813px;}
.y73_c01030{bottom:730.024292px;}
.y74_c01030{bottom:730.876665px;}
.y75_c01030{bottom:731.957778px;}
.y76_c01030{bottom:732.323104px;}
.y77_c01030{bottom:733.163235px;}
.y78_c01030{bottom:733.407187px;}
.y79_c01030{bottom:734.137857px;}
.y7a_c01030{bottom:735.358510px;}
.y7b_c01030{bottom:735.723870px;}
.y68_c01030{bottom:761.130540px;}
.y69_c01030{bottom:763.097748px;}
.y6a_c01030{bottom:765.153419px;}
.y6b_c01030{bottom:766.035398px;}
.y6c_c01030{bottom:766.558267px;}
.y6d_c01030{bottom:768.316652px;}
.y6e_c01030{bottom:769.714870px;}
.y6f_c01030{bottom:770.976495px;}
.y70_c01030{bottom:771.485905px;}
.y5c_c01030{bottom:801.361500px;}
.y5d_c01030{bottom:801.718494px;}
.y5e_c01030{bottom:802.682969px;}
.y5f_c01030{bottom:803.049170px;}
.y60_c01030{bottom:803.425947px;}
.y61_c01030{bottom:804.741278px;}
.y62_c01030{bottom:805.228325px;}
.y63_c01030{bottom:805.597000px;}
.y64_c01030{bottom:805.837620px;}
.y65_c01030{bottom:806.214826px;}
.y66_c01030{bottom:806.939457px;}
.y67_c01030{bottom:807.299041px;}
.y54_c01030{bottom:832.144158px;}
.y55_c01030{bottom:833.013894px;}
.y56_c01030{bottom:833.650953px;}
.y57_c01030{bottom:835.197066px;}
.y58_c01030{bottom:837.383866px;}
.y59_c01030{bottom:838.274416px;}
.y5a_c01030{bottom:840.692278px;}
.y5b_c01030{bottom:844.166672px;}
.y49_c01030{bottom:867.511878px;}
.y4a_c01030{bottom:868.807693px;}
.y4b_c01030{bottom:870.286231px;}
.y4c_c01030{bottom:871.782451px;}
.y4d_c01030{bottom:873.273640px;}
.y4e_c01030{bottom:874.030756px;}
.y4f_c01030{bottom:874.582090px;}
.y50_c01030{bottom:875.151915px;}
.y51_c01030{bottom:876.464291px;}
.y52_c01030{bottom:876.845866px;}
.y53_c01030{bottom:878.333047px;}
.y41_c01030{bottom:908.281500px;}
.y42_c01030{bottom:909.852597px;}
.y43_c01030{bottom:910.449270px;}
.y44_c01030{bottom:910.951596px;}
.y45_c01030{bottom:911.673322px;}
.y46_c01030{bottom:912.887755px;}
.y47_c01030{bottom:913.250426px;}
.y48_c01030{bottom:914.349358px;}
.y38_c01030{bottom:938.223924px;}
.y39_c01030{bottom:939.779299px;}
.y3a_c01030{bottom:940.323893px;}
.y3b_c01030{bottom:941.082095px;}
.y3c_c01030{bottom:942.670850px;}
.y3d_c01030{bottom:943.455609px;}
.y3e_c01030{bottom:945.042108px;}
.y3f_c01030{bottom:946.158391px;}
.y40_c01030{bottom:954.455966px;}
.y2d_c01030{bottom:973.618723px;}
.y2e_c01030{bottom:974.505995px;}
.y2f_c01030{bottom:975.192662px;}
.y30_c01030{bottom:976.406033px;}
.y31_c01030{bottom:976.783104px;}
.y32_c01030{bottom:978.359959px;}
.y33_c01030{bottom:979.237412px;}
.y34_c01030{bottom:981.185287px;}
.y35_c01030{bottom:981.703266px;}
.y36_c01030{bottom:982.779363px;}
.y37_c01030{bottom:983.824869px;}
.y22_c01030{bottom:1010.608737px;}
.y23_c01030{bottom:1011.218007px;}
.y24_c01030{bottom:1011.683573px;}
.y25_c01030{bottom:1012.451713px;}
.y26_c01030{bottom:1013.673293px;}
.y27_c01030{bottom:1015.362071px;}
.y28_c01030{bottom:1015.978687px;}
.y29_c01030{bottom:1016.912235px;}
.y2a_c01030{bottom:1017.543004px;}
.y2b_c01030{bottom:1018.929815px;}
.y2c_c01030{bottom:1019.526674px;}
.y19_c01030{bottom:1044.901235px;}
.y1a_c01030{bottom:1047.353532px;}
.y1b_c01030{bottom:1047.675137px;}
.y1c_c01030{bottom:1048.987497px;}
.y1d_c01030{bottom:1050.634953px;}
.y1e_c01030{bottom:1052.145802px;}
.y1f_c01030{bottom:1052.644192px;}
.y20_c01030{bottom:1053.138612px;}
.y21_c01030{bottom:1054.952780px;}
.y12_c01030{bottom:1079.195121px;}
.y13_c01030{bottom:1081.246810px;}
.y14_c01030{bottom:1082.278403px;}
.y15_c01030{bottom:1084.350717px;}
.y16_c01030{bottom:1086.443117px;}
.y17_c01030{bottom:1089.003105px;}
.y18_c01030{bottom:1090.873164px;}
.y4_c01030{bottom:1120.500000px;}
.y5_c01030{bottom:1120.893727px;}
.y6_c01030{bottom:1121.280975px;}
.y7_c01030{bottom:1121.873436px;}
.y8_c01030{bottom:1122.663172px;}
.y9_c01030{bottom:1123.064365px;}
.ya_c01030{bottom:1123.751786px;}
.yb_c01030{bottom:1124.065458px;}
.yc_c01030{bottom:1124.255038px;}
.yd_c01030{bottom:1124.546652px;}
.ye_c01030{bottom:1125.350968px;}
.yf_c01030{bottom:1125.647550px;}
.y10_c01030{bottom:1126.220747px;}
.y11_c01030{bottom:1126.669122px;}
.y3_c01030{bottom:1195.980000px;}
.y2_c01030{bottom:1236.330000px;}
.y1_c01030{bottom:1240.243500px;}
.h3_c01030{height:12.000000px;}
.h11_c01030{height:24.001452px;}
.h2_c01030{height:48.000000px;}
.h10_c01030{height:48.002904px;}
.hd_c01030{height:66.003993px;}
.hf_c01030{height:72.000000px;}
.h8_c01030{height:72.002916px;}
.h9_c01030{height:72.004356px;}
.h4_c01030{height:78.000000px;}
.h7_c01030{height:78.003159px;}
.ha_c01030{height:78.004719px;}
.he_c01030{height:84.000000px;}
.h5_c01030{height:84.003402px;}
.hb_c01030{height:84.005082px;}
.h6_c01030{height:90.003645px;}
.hc_c01030{height:90.005445px;}
.h13_c01030{height:102.001836px;}
.h12_c01030{height:120.002160px;}
.h0_c01030{height:1246.320000px;}
.h1_c01030{height:1246.500000px;}
.w1_c01030{width:887.250000px;}
.w0_c01030{width:887.490000px;}
.x0_c01030{left:0.000000px;}
.x6_c01030{left:124.537500px;}
.x14_c01030{left:126.478371px;}
.x33_c01030{left:128.614182px;}
.x4a_c01030{left:130.434989px;}
.x5c_c01030{left:131.710929px;}
.x75_c01030{left:133.769594px;}
.x84_c01030{left:135.485292px;}
.x8b_c01030{left:136.531358px;}
.x97_c01030{left:138.234780px;}
.x9e_c01030{left:139.448241px;}
.xbf_c01030{left:141.750852px;}
.xaf_c01030{left:142.752000px;}
.xc1_c01030{left:145.195500px;}
.x7_c01030{left:168.285000px;}
.x1f_c01030{left:169.747620px;}
.x9f_c01030{left:171.321395px;}
.x98_c01030{left:172.527422px;}
.x4b_c01030{left:173.906682px;}
.xb5_c01030{left:175.501500px;}
.x76_c01030{left:176.505153px;}
.xc2_c01030{left:177.831000px;}
.x29_c01030{left:181.966491px;}
.x63_c01030{left:186.458766px;}
.x8c_c01030{left:189.450531px;}
.x99_c01030{left:191.698248px;}
.x34_c01030{left:193.424934px;}
.xb0_c01030{left:196.506000px;}
.xb8_c01030{left:198.451500px;}
.x6c_c01030{left:199.621851px;}
.x8f_c01030{left:201.768416px;}
.x20_c01030{left:202.975622px;}
.xa0_c01030{left:204.046532px;}
.x43_c01030{left:205.771353px;}
.x8_c01030{left:211.312500px;}
.x8d_c01030{left:212.690508px;}
.x35_c01030{left:216.098870px;}
.x2a_c01030{left:224.926791px;}
.xb1_c01030{left:228.930000px;}
.x6d_c01030{left:232.060061px;}
.x15_c01030{left:234.434151px;}
.x3c_c01030{left:237.232500px;}
.x51_c01030{left:239.641500px;}
.x36_c01030{left:247.672604px;}
.xa8_c01030{left:251.100000px;}
.x5d_c01030{left:254.632164px;}
.x21_c01030{left:257.822151px;}
.x9a_c01030{left:259.201916px;}
.xb6_c01030{left:263.251500px;}
.x77_c01030{left:265.048206px;}
.x52_c01030{left:272.095500px;}
.x64_c01030{left:273.956766px;}
.x9_c01030{left:277.141500px;}
.x4c_c01030{left:283.047875px;}
.x16_c01030{left:288.717264px;}
.x44_c01030{left:292.723611px;}
.x2b_c01030{left:300.741012px;}
.x6e_c01030{left:306.325194px;}
.x85_c01030{left:309.661050px;}
.x1b_c01030{left:311.056478px;}
.x37_c01030{left:313.858667px;}
.xc0_c01030{left:321.312083px;}
.x2c_c01030{left:324.303027px;}
.xa9_c01030{left:325.890000px;}
.xc8_c01030{left:331.703064px;}
.x9b_c01030{left:335.076606px;}
.xba_c01030{left:340.017000px;}
.x78_c01030{left:341.450523px;}
.x22_c01030{left:345.049223px;}
.x38_c01030{left:346.549752px;}
.x65_c01030{left:351.445266px;}
.x53_c01030{left:359.775000px;}
.xa_c01030{left:364.890000px;}
.x8e_c01030{left:367.186710px;}
.xa1_c01030{left:369.038733px;}
.x79_c01030{left:373.356314px;}
.x80_c01030{left:375.488490px;}
.x3d_c01030{left:380.059500px;}
.x5e_c01030{left:383.140602px;}
.x6f_c01030{left:384.628410px;}
.xc3_c01030{left:385.954500px;}
.x4d_c01030{left:392.382551px;}
.x4_c01030{left:394.740000px;}
.x17_c01030{left:397.797950px;}
.x7a_c01030{left:406.517588px;}
.xbb_c01030{left:408.301500px;}
.xb_c01030{left:409.467000px;}
.x39_c01030{left:412.651829px;}
.xaa_c01030{left:414.450000px;}
.x5_c01030{left:417.150000px;}
.x2d_c01030{left:422.836317px;}
.x54_c01030{left:427.318500px;}
.x86_c01030{left:430.294574px;}
.x1_c01030{left:433.890000px;}
.x4e_c01030{left:436.928145px;}
.x5f_c01030{left:438.226566px;}
.x2_c01030{left:441.990000px;}
.x90_c01030{left:443.715558px;}
.x66_c01030{left:449.728266px;}
.x7b_c01030{left:452.142081px;}
.x9c_c01030{left:455.233643px;}
.x3a_c01030{left:459.177051px;}
.xbc_c01030{left:460.981500px;}
.x81_c01030{left:462.127388px;}
.x3_c01030{left:463.320000px;}
.x23_c01030{left:465.685796px;}
.x45_c01030{left:468.431011px;}
.xab_c01030{left:469.530000px;}
.x60_c01030{left:470.894768px;}
.xc9_c01030{left:474.772836px;}
.x91_c01030{left:475.875477px;}
.x2e_c01030{left:477.660861px;}
.x3e_c01030{left:479.968500px;}
.xb2_c01030{left:481.102500px;}
.x67_c01030{left:482.939766px;}
.xc4_c01030{left:484.555500px;}
.xc_c01030{left:485.847000px;}
.x70_c01030{left:504.757050px;}
.x18_c01030{left:507.943541px;}
.x24_c01030{left:509.696811px;}
.x46_c01030{left:512.984074px;}
.xbd_c01030{left:515.533500px;}
.xd_c01030{left:520.699500px;}
.xa2_c01030{left:522.392550px;}
.x87_c01030{left:529.660307px;}
.x9d_c01030{left:532.188449px;}
.xac_c01030{left:534.330000px;}
.x71_c01030{left:538.270793px;}
.xc5_c01030{left:539.374500px;}
.xca_c01030{left:540.395553px;}
.xe_c01030{left:541.764000px;}
.x3f_c01030{left:545.580000px;}
.x55_c01030{left:546.894000px;}
.xb7_c01030{left:548.641500px;}
.x93_c01030{left:552.841140px;}
.xa3_c01030{left:556.640171px;}
.x4f_c01030{left:557.858183px;}
.x68_c01030{left:559.315266px;}
.x7c_c01030{left:562.356655px;}
.xa6_c01030{left:568.080000px;}
.x72_c01030{left:572.024535px;}
.xf_c01030{left:574.165500px;}
.x25_c01030{left:576.421314px;}
.x47_c01030{left:578.903218px;}
.x61_c01030{left:580.832729px;}
.x56_c01030{left:591.171000px;}
.xc6_c01030{left:596.247000px;}
.x94_c01030{left:597.394140px;}
.x2f_c01030{left:599.417193px;}
.x82_c01030{left:604.402523px;}
.x1c_c01030{left:609.114386px;}
.xad_c01030{left:613.440000px;}
.x26_c01030{left:621.504789px;}
.xa7_c01030{left:622.890000px;}
.x57_c01030{left:624.687000px;}
.x30_c01030{left:631.801655px;}
.xc7_c01030{left:638.757000px;}
.x19_c01030{left:642.707918px;}
.x58_c01030{left:646.561500px;}
.x69_c01030{left:647.917266px;}
.x83_c01030{left:650.866046px;}
.x95_c01030{left:653.269140px;}
.x40_c01030{left:655.983000px;}
.x7d_c01030{left:660.051010px;}
.x10_c01030{left:663.534000px;}
.x62_c01030{left:668.256927px;}
.x1d_c01030{left:675.256308px;}
.x48_c01030{left:678.483135px;}
.x59_c01030{left:680.853000px;}
.x73_c01030{left:682.183961px;}
.xa4_c01030{left:687.563235px;}
.x41_c01030{left:688.953000px;}
.x7e_c01030{left:693.572268px;}
.x88_c01030{left:694.662362px;}
.x11_c01030{left:696.487500px;}
.x31_c01030{left:699.030416px;}
.x96_c01030{left:709.454640px;}
.xae_c01030{left:712.530000px;}
.xb3_c01030{left:713.745000px;}
.x74_c01030{left:715.667703px;}
.x27_c01030{left:720.590334px;}
.x89_c01030{left:729.468707px;}
.x50_c01030{left:731.603990px;}
.x7f_c01030{left:738.061295px;}
.x1a_c01030{left:741.150062px;}
.x5a_c01030{left:746.728500px;}
.xb9_c01030{left:749.251500px;}
.x6a_c01030{left:758.885766px;}
.x12_c01030{left:760.176000px;}
.x28_c01030{left:763.239417px;}
.x32_c01030{left:764.360298px;}
.x49_c01030{left:765.948360px;}
.x5b_c01030{left:779.418000px;}
.x8a_c01030{left:783.745908px;}
.x42_c01030{left:788.856000px;}
.x6b_c01030{left:792.100266px;}
.x1e_c01030{left:796.157274px;}
.xa5_c01030{left:797.744514px;}
.xb4_c01030{left:803.466000px;}
.x3b_c01030{left:804.916382px;}
.x92_c01030{left:806.631030px;}
.x13_c01030{left:809.995500px;}
.xbe_c01030{left:817.602420px;}
@media print{
.v0_c01030{vertical-align:0.000000pt;}
.ls0_c01030{letter-spacing:0.000000pt;}
.ws0_c01030{word-spacing:0.000000pt;}
.fs1_c01030{font-size:10.666667pt;}
.fsf_c01030{font-size:21.334624pt;}
.fs0_c01030{font-size:42.666667pt;}
.fse_c01030{font-size:42.669248pt;}
.fsb_c01030{font-size:58.670216pt;}
.fsd_c01030{font-size:64.000000pt;}
.fs6_c01030{font-size:64.002592pt;}
.fs7_c01030{font-size:64.003872pt;}
.fs2_c01030{font-size:69.333333pt;}
.fs5_c01030{font-size:69.336141pt;}
.fs8_c01030{font-size:69.337528pt;}
.fsc_c01030{font-size:74.666667pt;}
.fs3_c01030{font-size:74.669691pt;}
.fs9_c01030{font-size:74.671184pt;}
.fs4_c01030{font-size:80.003240pt;}
.fsa_c01030{font-size:80.004840pt;}
.fs11_c01030{font-size:90.668299pt;}
.fs10_c01030{font-size:106.668587pt;}
.y0_c01030{bottom:0.000000pt;}
.y11a_c01030{bottom:61.839688pt;}
.y119_c01030{bottom:62.233811pt;}
.y118_c01030{bottom:62.699803pt;}
.y117_c01030{bottom:62.938163pt;}
.y116_c01030{bottom:63.172549pt;}
.y115_c01030{bottom:63.485952pt;}
.y114_c01030{bottom:63.718851pt;}
.y113_c01030{bottom:64.262355pt;}
.y112_c01030{bottom:65.040061pt;}
.y111_c01030{bottom:92.887672pt;}
.y110_c01030{bottom:93.114392pt;}
.y10f_c01030{bottom:93.417712pt;}
.y10e_c01030{bottom:93.710080pt;}
.y10d_c01030{bottom:93.885760pt;}
.y10c_c01030{bottom:94.003872pt;}
.y10b_c01030{bottom:94.235952pt;}
.y10a_c01030{bottom:94.469000pt;}
.y109_c01030{bottom:94.879376pt;}
.y108_c01030{bottom:95.052112pt;}
.y107_c01030{bottom:95.345944pt;}
.y106_c01030{bottom:95.520000pt;}
.y104_c01030{bottom:123.603253pt;}
.y105_c01030{bottom:123.603756pt;}
.y103_c01030{bottom:132.719496pt;}
.y102_c01030{bottom:137.971981pt;}
.y101_c01030{bottom:138.729881pt;}
.y100_c01030{bottom:139.498488pt;}
.yff_c01030{bottom:140.366960pt;}
.yfe_c01030{bottom:140.900357pt;}
.yfd_c01030{bottom:141.415451pt;}
.yfc_c01030{bottom:142.083121pt;}
.yfb_c01030{bottom:143.144225pt;}
.yfa_c01030{bottom:144.004000pt;}
.yf9_c01030{bottom:172.664000pt;}
.yf8_c01030{bottom:204.793333pt;}
.yeb_c01030{bottom:234.482667pt;}
.yec_c01030{bottom:235.152000pt;}
.yed_c01030{bottom:235.556000pt;}
.yee_c01030{bottom:236.110667pt;}
.yef_c01030{bottom:237.598667pt;}
.yf0_c01030{bottom:238.018667pt;}
.yf1_c01030{bottom:238.694667pt;}
.yf2_c01030{bottom:239.101333pt;}
.yf3_c01030{bottom:239.524000pt;}
.yf4_c01030{bottom:240.461333pt;}
.yf5_c01030{bottom:241.589333pt;}
.yf6_c01030{bottom:242.005333pt;}
.yf7_c01030{bottom:242.705333pt;}
.yea_c01030{bottom:270.886667pt;}
.ye9_c01030{bottom:302.694667pt;}
.ye3_c01030{bottom:329.254068pt;}
.ye4_c01030{bottom:330.431052pt;}
.ye5_c01030{bottom:331.966475pt;}
.ye6_c01030{bottom:332.541971pt;}
.ye7_c01030{bottom:333.736033pt;}
.ye8_c01030{bottom:334.296840pt;}
.yd6_c01030{bottom:360.693909pt;}
.yd7_c01030{bottom:361.033561pt;}
.yd8_c01030{bottom:361.382877pt;}
.yd9_c01030{bottom:361.739805pt;}
.yda_c01030{bottom:362.782211pt;}
.ydb_c01030{bottom:363.141485pt;}
.ydc_c01030{bottom:364.776961pt;}
.ydd_c01030{bottom:365.142497pt;}
.yde_c01030{bottom:365.603813pt;}
.ydf_c01030{bottom:366.538648pt;}
.ye0_c01030{bottom:367.016829pt;}
.ye1_c01030{bottom:367.380209pt;}
.ye2_c01030{bottom:367.714655pt;}
.yd5_c01030{bottom:396.196656pt;}
.yd4_c01030{bottom:396.196899pt;}
.yd3_c01030{bottom:396.197301pt;}
.yd0_c01030{bottom:396.197451pt;}
.yd1_c01030{bottom:396.197511pt;}
.yd2_c01030{bottom:396.197867pt;}
.ycf_c01030{bottom:396.197960pt;}
.yce_c01030{bottom:396.198321pt;}
.ycb_c01030{bottom:396.198341pt;}
.ycd_c01030{bottom:396.198365pt;}
.ycc_c01030{bottom:396.198940pt;}
.yc1_c01030{bottom:425.739244pt;}
.yc2_c01030{bottom:426.484237pt;}
.yc3_c01030{bottom:426.920013pt;}
.yc4_c01030{bottom:427.986515pt;}
.yc5_c01030{bottom:428.633300pt;}
.yc6_c01030{bottom:429.802512pt;}
.yc7_c01030{bottom:430.238141pt;}
.yc8_c01030{bottom:430.784475pt;}
.yc9_c01030{bottom:431.003609pt;}
.yca_c01030{bottom:431.333844pt;}
.yb6_c01030{bottom:457.901432pt;}
.yb7_c01030{bottom:458.310999pt;}
.yb8_c01030{bottom:458.514776pt;}
.yb9_c01030{bottom:458.856103pt;}
.yba_c01030{bottom:459.535691pt;}
.ybb_c01030{bottom:459.816600pt;}
.ybc_c01030{bottom:460.016372pt;}
.ybd_c01030{bottom:460.844353pt;}
.ybe_c01030{bottom:461.254859pt;}
.ybf_c01030{bottom:461.534595pt;}
.yc0_c01030{bottom:462.074284pt;}
.yac_c01030{bottom:488.146145pt;}
.yad_c01030{bottom:488.851600pt;}
.yae_c01030{bottom:489.161512pt;}
.yaf_c01030{bottom:489.616160pt;}
.yb0_c01030{bottom:491.221541pt;}
.yb1_c01030{bottom:492.805793pt;}
.yb2_c01030{bottom:494.307216pt;}
.yb3_c01030{bottom:495.162949pt;}
.yb4_c01030{bottom:495.612715pt;}
.yb5_c01030{bottom:496.929269pt;}
.y9f_c01030{bottom:520.549172pt;}
.ya0_c01030{bottom:521.755349pt;}
.ya1_c01030{bottom:522.303149pt;}
.ya2_c01030{bottom:522.716280pt;}
.ya3_c01030{bottom:523.532408pt;}
.ya4_c01030{bottom:524.217180pt;}
.ya5_c01030{bottom:524.486095pt;}
.ya6_c01030{bottom:525.452788pt;}
.ya7_c01030{bottom:525.856709pt;}
.ya8_c01030{bottom:526.968761pt;}
.ya9_c01030{bottom:527.506195pt;}
.yaa_c01030{bottom:527.939868pt;}
.yab_c01030{bottom:528.615929pt;}
.y95_c01030{bottom:552.949540pt;}
.y96_c01030{bottom:553.480577pt;}
.y97_c01030{bottom:553.994200pt;}
.y98_c01030{bottom:554.883740pt;}
.y99_c01030{bottom:555.058591pt;}
.y9a_c01030{bottom:555.577524pt;}
.y9b_c01030{bottom:556.462664pt;}
.y9c_c01030{bottom:556.715295pt;}
.y9d_c01030{bottom:557.086928pt;}
.y9e_c01030{bottom:558.319613pt;}
.y88_c01030{bottom:584.152093pt;}
.y89_c01030{bottom:584.645961pt;}
.y8a_c01030{bottom:585.669068pt;}
.y8b_c01030{bottom:586.552129pt;}
.y8c_c01030{bottom:586.921437pt;}
.y8d_c01030{bottom:587.304355pt;}
.y8e_c01030{bottom:587.831804pt;}
.y8f_c01030{bottom:588.187885pt;}
.y90_c01030{bottom:589.105481pt;}
.y91_c01030{bottom:590.234069pt;}
.y92_c01030{bottom:590.621840pt;}
.y93_c01030{bottom:591.135520pt;}
.y94_c01030{bottom:591.899111pt;}
.y7c_c01030{bottom:616.313348pt;}
.y7d_c01030{bottom:616.859861pt;}
.y7e_c01030{bottom:617.119695pt;}
.y7f_c01030{bottom:617.713827pt;}
.y80_c01030{bottom:618.340775pt;}
.y81_c01030{bottom:618.604247pt;}
.y82_c01030{bottom:619.302007pt;}
.y83_c01030{bottom:619.569689pt;}
.y84_c01030{bottom:619.839719pt;}
.y85_c01030{bottom:620.720809pt;}
.y86_c01030{bottom:620.988199pt;}
.y87_c01030{bottom:621.338531pt;}
.y71_c01030{bottom:647.515725pt;}
.y72_c01030{bottom:648.054945pt;}
.y73_c01030{bottom:648.910481pt;}
.y74_c01030{bottom:649.668147pt;}
.y75_c01030{bottom:650.629136pt;}
.y76_c01030{bottom:650.953871pt;}
.y77_c01030{bottom:651.700653pt;}
.y78_c01030{bottom:651.917500pt;}
.y79_c01030{bottom:652.566984pt;}
.y7a_c01030{bottom:653.652009pt;}
.y7b_c01030{bottom:653.976773pt;}
.y68_c01030{bottom:676.560480pt;}
.y69_c01030{bottom:678.309109pt;}
.y6a_c01030{bottom:680.136372pt;}
.y6b_c01030{bottom:680.920353pt;}
.y6c_c01030{bottom:681.385127pt;}
.y6d_c01030{bottom:682.948135pt;}
.y6e_c01030{bottom:684.190996pt;}
.y6f_c01030{bottom:685.312440pt;}
.y70_c01030{bottom:685.765249pt;}
.y5c_c01030{bottom:712.321333pt;}
.y5d_c01030{bottom:712.638661pt;}
.y5e_c01030{bottom:713.495972pt;}
.y5f_c01030{bottom:713.821484pt;}
.y60_c01030{bottom:714.156397pt;}
.y61_c01030{bottom:715.325580pt;}
.y62_c01030{bottom:715.758511pt;}
.y63_c01030{bottom:716.086223pt;}
.y64_c01030{bottom:716.300107pt;}
.y65_c01030{bottom:716.635401pt;}
.y66_c01030{bottom:717.279517pt;}
.y67_c01030{bottom:717.599148pt;}
.y54_c01030{bottom:739.683696pt;}
.y55_c01030{bottom:740.456795pt;}
.y56_c01030{bottom:741.023069pt;}
.y57_c01030{bottom:742.397392pt;}
.y58_c01030{bottom:744.341215pt;}
.y59_c01030{bottom:745.132815pt;}
.y5a_c01030{bottom:747.282025pt;}
.y5b_c01030{bottom:750.370375pt;}
.y49_c01030{bottom:771.121669pt;}
.y4a_c01030{bottom:772.273505pt;}
.y4b_c01030{bottom:773.587761pt;}
.y4c_c01030{bottom:774.917735pt;}
.y4d_c01030{bottom:776.243236pt;}
.y4e_c01030{bottom:776.916228pt;}
.y4f_c01030{bottom:777.406303pt;}
.y50_c01030{bottom:777.912813pt;}
.y51_c01030{bottom:779.079369pt;}
.y52_c01030{bottom:779.418548pt;}
.y53_c01030{bottom:780.740487pt;}
.y41_c01030{bottom:807.361333pt;}
.y42_c01030{bottom:808.757864pt;}
.y43_c01030{bottom:809.288240pt;}
.y44_c01030{bottom:809.734752pt;}
.y45_c01030{bottom:810.376287pt;}
.y46_c01030{bottom:811.455783pt;}
.y47_c01030{bottom:811.778156pt;}
.y48_c01030{bottom:812.754985pt;}
.y38_c01030{bottom:833.976821pt;}
.y39_c01030{bottom:835.359377pt;}
.y3a_c01030{bottom:835.843460pt;}
.y3b_c01030{bottom:836.517417pt;}
.y3c_c01030{bottom:837.929644pt;}
.y3d_c01030{bottom:838.627208pt;}
.y3e_c01030{bottom:840.037429pt;}
.y3f_c01030{bottom:841.029681pt;}
.y40_c01030{bottom:848.405303pt;}
.y2d_c01030{bottom:865.438865pt;}
.y2e_c01030{bottom:866.227551pt;}
.y2f_c01030{bottom:866.837921pt;}
.y30_c01030{bottom:867.916473pt;}
.y31_c01030{bottom:868.251648pt;}
.y32_c01030{bottom:869.653297pt;}
.y33_c01030{bottom:870.433255pt;}
.y34_c01030{bottom:872.164700pt;}
.y35_c01030{bottom:872.625125pt;}
.y36_c01030{bottom:873.581656pt;}
.y37_c01030{bottom:874.510995pt;}
.y22_c01030{bottom:898.318877pt;}
.y23_c01030{bottom:898.860451pt;}
.y24_c01030{bottom:899.274287pt;}
.y25_c01030{bottom:899.957079pt;}
.y26_c01030{bottom:901.042927pt;}
.y27_c01030{bottom:902.544063pt;}
.y28_c01030{bottom:903.092167pt;}
.y29_c01030{bottom:903.921987pt;}
.y2a_c01030{bottom:904.482671pt;}
.y2b_c01030{bottom:905.715391pt;}
.y2c_c01030{bottom:906.245932pt;}
.y19_c01030{bottom:928.801097pt;}
.y1a_c01030{bottom:930.980917pt;}
.y1b_c01030{bottom:931.266788pt;}
.y1c_c01030{bottom:932.433331pt;}
.y1d_c01030{bottom:933.897736pt;}
.y1e_c01030{bottom:935.240713pt;}
.y1f_c01030{bottom:935.683727pt;}
.y20_c01030{bottom:936.123211pt;}
.y21_c01030{bottom:937.735804pt;}
.y12_c01030{bottom:959.284552pt;}
.y13_c01030{bottom:961.108276pt;}
.y14_c01030{bottom:962.025247pt;}
.y15_c01030{bottom:963.867304pt;}
.y16_c01030{bottom:965.727215pt;}
.y17_c01030{bottom:968.002760pt;}
.y18_c01030{bottom:969.665035pt;}
.y4_c01030{bottom:996.000000pt;}
.y5_c01030{bottom:996.349980pt;}
.y6_c01030{bottom:996.694200pt;}
.y7_c01030{bottom:997.220832pt;}
.y8_c01030{bottom:997.922820pt;}
.y9_c01030{bottom:998.279436pt;}
.ya_c01030{bottom:998.890476pt;}
.yb_c01030{bottom:999.169296pt;}
.yc_c01030{bottom:999.337812pt;}
.yd_c01030{bottom:999.597024pt;}
.ye_c01030{bottom:1000.311972pt;}
.yf_c01030{bottom:1000.575600pt;}
.y10_c01030{bottom:1001.085108pt;}
.y11_c01030{bottom:1001.483664pt;}
.y3_c01030{bottom:1063.093333pt;}
.y2_c01030{bottom:1098.960000pt;}
.y1_c01030{bottom:1102.438667pt;}
.h3_c01030{height:10.666667pt;}
.h11_c01030{height:21.334624pt;}
.h2_c01030{height:42.666667pt;}
.h10_c01030{height:42.669248pt;}
.hd_c01030{height:58.670216pt;}
.hf_c01030{height:64.000000pt;}
.h8_c01030{height:64.002592pt;}
.h9_c01030{height:64.003872pt;}
.h4_c01030{height:69.333333pt;}
.h7_c01030{height:69.336141pt;}
.ha_c01030{height:69.337528pt;}
.he_c01030{height:74.666667pt;}
.h5_c01030{height:74.669691pt;}
.hb_c01030{height:74.671184pt;}
.h6_c01030{height:80.003240pt;}
.hc_c01030{height:80.004840pt;}
.h13_c01030{height:90.668299pt;}
.h12_c01030{height:106.668587pt;}
.h0_c01030{height:1107.840000pt;}
.h1_c01030{height:1108.000000pt;}
.w1_c01030{width:788.666667pt;}
.w0_c01030{width:788.880000pt;}
.x0_c01030{left:0.000000pt;}
.x6_c01030{left:110.700000pt;}
.x14_c01030{left:112.425219pt;}
.x33_c01030{left:114.323717pt;}
.x4a_c01030{left:115.942212pt;}
.x5c_c01030{left:117.076381pt;}
.x75_c01030{left:118.906305pt;}
.x84_c01030{left:120.431371pt;}
.x8b_c01030{left:121.361207pt;}
.x97_c01030{left:122.875360pt;}
.x9e_c01030{left:123.953992pt;}
.xbf_c01030{left:126.000757pt;}
.xaf_c01030{left:126.890667pt;}
.xc1_c01030{left:129.062667pt;}
.x7_c01030{left:149.586667pt;}
.x1f_c01030{left:150.886773pt;}
.x9f_c01030{left:152.285684pt;}
.x98_c01030{left:153.357708pt;}
.x4b_c01030{left:154.583717pt;}
.xb5_c01030{left:156.001333pt;}
.x76_c01030{left:156.893469pt;}
.xc2_c01030{left:158.072000pt;}
.x29_c01030{left:161.747992pt;}
.x63_c01030{left:165.741125pt;}
.x8c_c01030{left:168.400472pt;}
.x99_c01030{left:170.398443pt;}
.x34_c01030{left:171.933275pt;}
.xb0_c01030{left:174.672000pt;}
.xb8_c01030{left:176.401333pt;}
.x6c_c01030{left:177.441645pt;}
.x8f_c01030{left:179.349703pt;}
.x20_c01030{left:180.422775pt;}
.xa0_c01030{left:181.374695pt;}
.x43_c01030{left:182.907869pt;}
.x8_c01030{left:187.833333pt;}
.x8d_c01030{left:189.058229pt;}
.x35_c01030{left:192.087884pt;}
.x2a_c01030{left:199.934925pt;}
.xb1_c01030{left:203.493333pt;}
.x6d_c01030{left:206.275609pt;}
.x15_c01030{left:208.385912pt;}
.x3c_c01030{left:210.873333pt;}
.x51_c01030{left:213.014667pt;}
.x36_c01030{left:220.153425pt;}
.xa8_c01030{left:223.200000pt;}
.x5d_c01030{left:226.339701pt;}
.x21_c01030{left:229.175245pt;}
.x9a_c01030{left:230.401703pt;}
.xb6_c01030{left:234.001333pt;}
.x77_c01030{left:235.598405pt;}
.x52_c01030{left:241.862667pt;}
.x64_c01030{left:243.517125pt;}
.x9_c01030{left:246.348000pt;}
.x4c_c01030{left:251.598111pt;}
.x16_c01030{left:256.637568pt;}
.x44_c01030{left:260.198765pt;}
.x2b_c01030{left:267.325344pt;}
.x6e_c01030{left:272.289061pt;}
.x85_c01030{left:275.254267pt;}
.x1b_c01030{left:276.494647pt;}
.x37_c01030{left:278.985481pt;}
.xc0_c01030{left:285.610740pt;}
.x2c_c01030{left:288.269357pt;}
.xa9_c01030{left:289.680000pt;}
.xc8_c01030{left:294.847168pt;}
.x9b_c01030{left:297.845872pt;}
.xba_c01030{left:302.237333pt;}
.x78_c01030{left:303.511576pt;}
.x22_c01030{left:306.710420pt;}
.x38_c01030{left:308.044224pt;}
.x65_c01030{left:312.395792pt;}
.x53_c01030{left:319.800000pt;}
.xa_c01030{left:324.346667pt;}
.x8e_c01030{left:326.388187pt;}
.xa1_c01030{left:328.034429pt;}
.x79_c01030{left:331.872279pt;}
.x80_c01030{left:333.767547pt;}
.x3d_c01030{left:337.830667pt;}
.x5e_c01030{left:340.569424pt;}
.x6f_c01030{left:341.891920pt;}
.xc3_c01030{left:343.070667pt;}
.x4d_c01030{left:348.784489pt;}
.x4_c01030{left:350.880000pt;}
.x17_c01030{left:353.598177pt;}
.x7a_c01030{left:361.348967pt;}
.xbb_c01030{left:362.934667pt;}
.xb_c01030{left:363.970667pt;}
.x39_c01030{left:366.801625pt;}
.xaa_c01030{left:368.400000pt;}
.x5_c01030{left:370.800000pt;}
.x2d_c01030{left:375.854504pt;}
.x54_c01030{left:379.838667pt;}
.x86_c01030{left:382.484065pt;}
.x1_c01030{left:385.680000pt;}
.x4e_c01030{left:388.380573pt;}
.x5f_c01030{left:389.534725pt;}
.x2_c01030{left:392.880000pt;}
.x90_c01030{left:394.413829pt;}
.x66_c01030{left:399.758459pt;}
.x7b_c01030{left:401.904072pt;}
.x9c_c01030{left:404.652127pt;}
.x3a_c01030{left:408.157379pt;}
.xbc_c01030{left:409.761333pt;}
.x81_c01030{left:410.779900pt;}
.x3_c01030{left:411.840000pt;}
.x23_c01030{left:413.942929pt;}
.x45_c01030{left:416.383121pt;}
.xab_c01030{left:417.360000pt;}
.x60_c01030{left:418.573127pt;}
.xc9_c01030{left:422.020299pt;}
.x91_c01030{left:423.000424pt;}
.x2e_c01030{left:424.587432pt;}
.x3e_c01030{left:426.638667pt;}
.xb2_c01030{left:427.646667pt;}
.x67_c01030{left:429.279792pt;}
.xc4_c01030{left:430.716000pt;}
.xc_c01030{left:431.864000pt;}
.x70_c01030{left:448.672933pt;}
.x18_c01030{left:451.505369pt;}
.x24_c01030{left:453.063832pt;}
.x46_c01030{left:455.985844pt;}
.xbd_c01030{left:458.252000pt;}
.xd_c01030{left:462.844000pt;}
.xa2_c01030{left:464.348933pt;}
.x87_c01030{left:470.809161pt;}
.x9d_c01030{left:473.056399pt;}
.xac_c01030{left:474.960000pt;}
.x71_c01030{left:478.462927pt;}
.xc5_c01030{left:479.444000pt;}
.xca_c01030{left:480.351603pt;}
.xe_c01030{left:481.568000pt;}
.x3f_c01030{left:484.960000pt;}
.x55_c01030{left:486.128000pt;}
.xb7_c01030{left:487.681333pt;}
.x93_c01030{left:491.414347pt;}
.xa3_c01030{left:494.791263pt;}
.x4f_c01030{left:495.873940pt;}
.x68_c01030{left:497.169125pt;}
.x7c_c01030{left:499.872583pt;}
.xa6_c01030{left:504.960000pt;}
.x72_c01030{left:508.466253pt;}
.xf_c01030{left:510.369333pt;}
.x25_c01030{left:512.374501pt;}
.x47_c01030{left:514.580639pt;}
.x61_c01030{left:516.295759pt;}
.x56_c01030{left:525.485333pt;}
.xc6_c01030{left:529.997333pt;}
.x94_c01030{left:531.017013pt;}
.x2f_c01030{left:532.815283pt;}
.x82_c01030{left:537.246687pt;}
.x1c_c01030{left:541.435009pt;}
.xad_c01030{left:545.280000pt;}
.x26_c01030{left:552.448701pt;}
.xa7_c01030{left:553.680000pt;}
.x57_c01030{left:555.277333pt;}
.x30_c01030{left:561.601471pt;}
.xc7_c01030{left:567.784000pt;}
.x19_c01030{left:571.295927pt;}
.x58_c01030{left:574.721333pt;}
.x69_c01030{left:575.926459pt;}
.x83_c01030{left:578.547596pt;}
.x95_c01030{left:580.683680pt;}
.x40_c01030{left:583.096000pt;}
.x7d_c01030{left:586.712009pt;}
.x10_c01030{left:589.808000pt;}
.x62_c01030{left:594.006157pt;}
.x1d_c01030{left:600.227829pt;}
.x48_c01030{left:603.096120pt;}
.x59_c01030{left:605.202667pt;}
.x73_c01030{left:606.385743pt;}
.xa4_c01030{left:611.167320pt;}
.x41_c01030{left:612.402667pt;}
.x7e_c01030{left:616.508683pt;}
.x88_c01030{left:617.477655pt;}
.x11_c01030{left:619.100000pt;}
.x31_c01030{left:621.360369pt;}
.x96_c01030{left:630.626347pt;}
.xae_c01030{left:633.360000pt;}
.xb3_c01030{left:634.440000pt;}
.x74_c01030{left:636.149069pt;}
.x27_c01030{left:640.524741pt;}
.x89_c01030{left:648.416628pt;}
.x50_c01030{left:650.314657pt;}
.x7f_c01030{left:656.054484pt;}
.x1a_c01030{left:658.800055pt;}
.x5a_c01030{left:663.758667pt;}
.xb9_c01030{left:666.001333pt;}
.x6a_c01030{left:674.565125pt;}
.x12_c01030{left:675.712000pt;}
.x28_c01030{left:678.435037pt;}
.x32_c01030{left:679.431376pt;}
.x49_c01030{left:680.842987pt;}
.x5b_c01030{left:692.816000pt;}
.x8a_c01030{left:696.663029pt;}
.x42_c01030{left:701.205333pt;}
.x6b_c01030{left:704.089125pt;}
.x1e_c01030{left:707.695355pt;}
.xa5_c01030{left:709.106235pt;}
.xb4_c01030{left:714.192000pt;}
.x3b_c01030{left:715.481228pt;}
.x92_c01030{left:717.005360pt;}
.x13_c01030{left:719.996000pt;}
.xbe_c01030{left:726.757707pt;}
}





/* 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_c01031 {
    display:none;
  }
  .loading-indicator_c01031.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01031 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_c01031 { 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_c01031" -> "#page-container .classname_c01031")
 */
.pf_c01031 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01031 { /* 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_c01031.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01031 { /* 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_c01031 { /* 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_c01031 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01031 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01031 {overflow:visible;}
  }
}
.c_c01031 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01031 { /* 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_c01031:after { /* webkit #35443 */
  content: '';
}
.t_c01031:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01031 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 */
}
.__c01031 { /* 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_c01031 { /* info for Javascript */
  display:none;
}
.l_c01031 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01031 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01031 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01031: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_c01031 {
    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_c01031.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01031.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_c01031 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01031{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01031;src:url('chunks/assets/font_dbd529e162d5851c7bfb6d27.woff2')format("woff");}.ff1_c01031{font-family:ff1_c01031;line-height:1.000000;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;}
.m14_c01031{transform:matrix(0.162705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162705,0.000000,0.000000,0.250000,0,0);}
.mb_c01031{transform:matrix(0.163238,-0.000816,0.001250,0.249997,0,0);-ms-transform:matrix(0.163238,-0.000816,0.001250,0.249997,0,0);-webkit-transform:matrix(0.163238,-0.000816,0.001250,0.249997,0,0);}
.md_c01031{transform:matrix(0.165703,-0.000829,0.001250,0.249997,0,0);-ms-transform:matrix(0.165703,-0.000829,0.001250,0.249997,0,0);-webkit-transform:matrix(0.165703,-0.000829,0.001250,0.249997,0,0);}
.m13_c01031{transform:matrix(0.174785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174785,0.000000,0.000000,0.250000,0,0);}
.mf_c01031{transform:matrix(0.179598,-0.000898,0.001250,0.249997,0,0);-ms-transform:matrix(0.179598,-0.000898,0.001250,0.249997,0,0);-webkit-transform:matrix(0.179598,-0.000898,0.001250,0.249997,0,0);}
.me_c01031{transform:matrix(0.189558,-0.000948,0.001250,0.249997,0,0);-ms-transform:matrix(0.189558,-0.000948,0.001250,0.249997,0,0);-webkit-transform:matrix(0.189558,-0.000948,0.001250,0.249997,0,0);}
.m16_c01031{transform:matrix(0.193420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193420,0.000000,0.000000,0.250000,0,0);}
.m10_c01031{transform:matrix(0.193863,-0.000969,0.001250,0.249997,0,0);-ms-transform:matrix(0.193863,-0.000969,0.001250,0.249997,0,0);-webkit-transform:matrix(0.193863,-0.000969,0.001250,0.249997,0,0);}
.mc_c01031{transform:matrix(0.196693,-0.000983,0.001250,0.249997,0,0);-ms-transform:matrix(0.196693,-0.000983,0.001250,0.249997,0,0);-webkit-transform:matrix(0.196693,-0.000983,0.001250,0.249997,0,0);}
.m1a_c01031{transform:matrix(0.199670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199670,0.000000,0.000000,0.250000,0,0);}
.m11_c01031{transform:matrix(0.202267,-0.001011,0.001250,0.249997,0,0);-ms-transform:matrix(0.202267,-0.001011,0.001250,0.249997,0,0);-webkit-transform:matrix(0.202267,-0.001011,0.001250,0.249997,0,0);}
.ma_c01031{transform:matrix(0.202277,-0.001011,0.001250,0.249997,0,0);-ms-transform:matrix(0.202277,-0.001011,0.001250,0.249997,0,0);-webkit-transform:matrix(0.202277,-0.001011,0.001250,0.249997,0,0);}
.m1c_c01031{transform:matrix(0.204020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204020,0.000000,0.000000,0.250000,0,0);}
.m9_c01031{transform:matrix(0.208742,-0.001044,0.001250,0.249997,0,0);-ms-transform:matrix(0.208742,-0.001044,0.001250,0.249997,0,0);-webkit-transform:matrix(0.208742,-0.001044,0.001250,0.249997,0,0);}
.m17_c01031{transform:matrix(0.218115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218115,0.000000,0.000000,0.250000,0,0);}
.m12_c01031{transform:matrix(0.229297,-0.001146,0.001250,0.249997,0,0);-ms-transform:matrix(0.229297,-0.001146,0.001250,0.249997,0,0);-webkit-transform:matrix(0.229297,-0.001146,0.001250,0.249997,0,0);}
.m1d_c01031{transform:matrix(0.233485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233485,0.000000,0.000000,0.250000,0,0);}
.m1b_c01031{transform:matrix(0.244245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244245,0.000000,0.000000,0.250000,0,0);}
.m1e_c01031{transform:matrix(0.245650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245650,0.000000,0.000000,0.250000,0,0);}
.m18_c01031{transform:matrix(0.257580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257580,0.000000,0.000000,0.250000,0,0);}
.m7_c01031{transform:matrix(0.259732,-0.001299,0.001250,0.249997,0,0);-ms-transform:matrix(0.259732,-0.001299,0.001250,0.249997,0,0);-webkit-transform:matrix(0.259732,-0.001299,0.001250,0.249997,0,0);}
.m19_c01031{transform:matrix(0.270220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270220,0.000000,0.000000,0.250000,0,0);}
.m3_c01031{transform:matrix(0.284336,-0.001422,0.001250,0.249997,0,0);-ms-transform:matrix(0.284336,-0.001422,0.001250,0.249997,0,0);-webkit-transform:matrix(0.284336,-0.001422,0.001250,0.249997,0,0);}
.m5_c01031{transform:matrix(0.285621,-0.001428,0.001250,0.249997,0,0);-ms-transform:matrix(0.285621,-0.001428,0.001250,0.249997,0,0);-webkit-transform:matrix(0.285621,-0.001428,0.001250,0.249997,0,0);}
.m1f_c01031{transform:matrix(0.285780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285780,0.000000,0.000000,0.250000,0,0);}
.m15_c01031{transform:matrix(0.303040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303040,0.000000,0.000000,0.250000,0,0);}
.m2_c01031{transform:matrix(0.304036,-0.001520,0.001250,0.249997,0,0);-ms-transform:matrix(0.304036,-0.001520,0.001250,0.249997,0,0);-webkit-transform:matrix(0.304036,-0.001520,0.001250,0.249997,0,0);}
.m6_c01031{transform:matrix(0.311861,-0.001559,0.001250,0.249997,0,0);-ms-transform:matrix(0.311861,-0.001559,0.001250,0.249997,0,0);-webkit-transform:matrix(0.311861,-0.001559,0.001250,0.249997,0,0);}
.m1_c01031{transform:matrix(0.313841,-0.001569,0.001250,0.249997,0,0);-ms-transform:matrix(0.313841,-0.001569,0.001250,0.249997,0,0);-webkit-transform:matrix(0.313841,-0.001569,0.001250,0.249997,0,0);}
.m0_c01031{transform:matrix(0.364225,-0.001821,0.001250,0.249997,0,0);-ms-transform:matrix(0.364225,-0.001821,0.001250,0.249997,0,0);-webkit-transform:matrix(0.364225,-0.001821,0.001250,0.249997,0,0);}
.m8_c01031{transform:matrix(0.467599,-0.002338,0.001250,0.249997,0,0);-ms-transform:matrix(0.467599,-0.002338,0.001250,0.249997,0,0);-webkit-transform:matrix(0.467599,-0.002338,0.001250,0.249997,0,0);}
.m4_c01031{transform:matrix(0.683936,-0.003420,0.001250,0.249997,0,0);-ms-transform:matrix(0.683936,-0.003420,0.001250,0.249997,0,0);-webkit-transform:matrix(0.683936,-0.003420,0.001250,0.249997,0,0);}
.v0_c01031{vertical-align:0.000000px;}
.ls0_c01031{letter-spacing:0.000000px;}
.sc__c01031{text-shadow:none;}
.sc0_c01031{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__c01031{-webkit-text-stroke:0px transparent;}
.sc0_c01031{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01031{word-spacing:0.000000px;}
.fc0_c01031{color:transparent;}
.fs0_c01031{font-size:84.001050px;}
.fs3_c01031{font-size:90.000000px;}
.fs2_c01031{font-size:102.000000px;}
.fs1_c01031{font-size:108.001350px;}
.y0_c01031{bottom:0.000000px;}
.y15_c01031{bottom:884.374500px;}
.y14_c01031{bottom:919.255500px;}
.ya_c01031{bottom:954.178980px;}
.yb_c01031{bottom:954.602055px;}
.yc_c01031{bottom:955.004025px;}
.yd_c01031{bottom:955.203098px;}
.ye_c01031{bottom:955.958152px;}
.yf_c01031{bottom:956.275320px;}
.y10_c01031{bottom:956.879182px;}
.y11_c01031{bottom:957.008550px;}
.y12_c01031{bottom:957.471165px;}
.y13_c01031{bottom:957.741352px;}
.y1_c01031{bottom:989.773500px;}
.y2_c01031{bottom:990.044865px;}
.y3_c01031{bottom:990.536182px;}
.y4_c01031{bottom:990.782055px;}
.y5_c01031{bottom:991.343617px;}
.y6_c01031{bottom:991.940122px;}
.y7_c01031{bottom:992.360107px;}
.y8_c01031{bottom:992.673052px;}
.y9_c01031{bottom:992.851470px;}
.h2_c01031{height:84.001050px;}
.h5_c01031{height:90.000000px;}
.h4_c01031{height:102.000000px;}
.h3_c01031{height:108.001350px;}
.h0_c01031{height:1246.320000px;}
.h1_c01031{height:1246.500000px;}
.w1_c01031{width:887.250000px;}
.w0_c01031{width:887.490000px;}
.x0_c01031{left:0.000000px;}
.x1_c01031{left:93.865500px;}
.xa_c01031{left:98.939595px;}
.x2_c01031{left:148.138500px;}
.xb_c01031{left:169.454242px;}
.x1a_c01031{left:213.300000px;}
.xc_c01031{left:236.347905px;}
.x3_c01031{left:246.402000px;}
.xd_c01031{left:269.562240px;}
.x4_c01031{left:295.576500px;}
.x1b_c01031{left:326.700000px;}
.x14_c01031{left:372.330000px;}
.x1c_c01031{left:392.040000px;}
.xe_c01031{left:395.372610px;}
.x5_c01031{left:407.889000px;}
.x1d_c01031{left:436.320000px;}
.xf_c01031{left:448.305847px;}
.x15_c01031{left:458.190000px;}
.x1e_c01031{left:491.130000px;}
.x6_c01031{left:527.190000px;}
.x10_c01031{left:548.977845px;}
.x16_c01031{left:557.820000px;}
.x11_c01031{left:570.651240px;}
.x7_c01031{left:611.187000px;}
.x17_c01031{left:626.130000px;}
.x12_c01031{left:647.873857px;}
.x18_c01031{left:655.560000px;}
.x8_c01031{left:673.776000px;}
.x19_c01031{left:682.560000px;}
.x13_c01031{left:692.911132px;}
.x9_c01031{left:709.459500px;}
@media print{
.v0_c01031{vertical-align:0.000000pt;}
.ls0_c01031{letter-spacing:0.000000pt;}
.ws0_c01031{word-spacing:0.000000pt;}
.fs0_c01031{font-size:74.667600pt;}
.fs3_c01031{font-size:80.000000pt;}
.fs2_c01031{font-size:90.666667pt;}
.fs1_c01031{font-size:96.001200pt;}
.y0_c01031{bottom:0.000000pt;}
.y15_c01031{bottom:786.110667pt;}
.y14_c01031{bottom:817.116000pt;}
.ya_c01031{bottom:848.159093pt;}
.yb_c01031{bottom:848.535160pt;}
.yc_c01031{bottom:848.892467pt;}
.yd_c01031{bottom:849.069420pt;}
.ye_c01031{bottom:849.740580pt;}
.yf_c01031{bottom:850.022507pt;}
.y10_c01031{bottom:850.559273pt;}
.y11_c01031{bottom:850.674267pt;}
.y12_c01031{bottom:851.085480pt;}
.y13_c01031{bottom:851.325647pt;}
.y1_c01031{bottom:879.798667pt;}
.y2_c01031{bottom:880.039880pt;}
.y3_c01031{bottom:880.476607pt;}
.y4_c01031{bottom:880.695160pt;}
.y5_c01031{bottom:881.194327pt;}
.y6_c01031{bottom:881.724553pt;}
.y7_c01031{bottom:882.097873pt;}
.y8_c01031{bottom:882.376047pt;}
.y9_c01031{bottom:882.534640pt;}
.h2_c01031{height:74.667600pt;}
.h5_c01031{height:80.000000pt;}
.h4_c01031{height:90.666667pt;}
.h3_c01031{height:96.001200pt;}
.h0_c01031{height:1107.840000pt;}
.h1_c01031{height:1108.000000pt;}
.w1_c01031{width:788.666667pt;}
.w0_c01031{width:788.880000pt;}
.x0_c01031{left:0.000000pt;}
.x1_c01031{left:83.436000pt;}
.xa_c01031{left:87.946307pt;}
.x2_c01031{left:131.678667pt;}
.xb_c01031{left:150.625993pt;}
.x1a_c01031{left:189.600000pt;}
.xc_c01031{left:210.087027pt;}
.x3_c01031{left:219.024000pt;}
.xd_c01031{left:239.610880pt;}
.x4_c01031{left:262.734667pt;}
.x1b_c01031{left:290.400000pt;}
.x14_c01031{left:330.960000pt;}
.x1c_c01031{left:348.480000pt;}
.xe_c01031{left:351.442320pt;}
.x5_c01031{left:362.568000pt;}
.x1d_c01031{left:387.840000pt;}
.xf_c01031{left:398.494087pt;}
.x15_c01031{left:407.280000pt;}
.x1e_c01031{left:436.560000pt;}
.x6_c01031{left:468.613333pt;}
.x10_c01031{left:487.980307pt;}
.x16_c01031{left:495.840000pt;}
.x11_c01031{left:507.245547pt;}
.x7_c01031{left:543.277333pt;}
.x17_c01031{left:556.560000pt;}
.x12_c01031{left:575.887873pt;}
.x18_c01031{left:582.720000pt;}
.x8_c01031{left:598.912000pt;}
.x19_c01031{left:606.720000pt;}
.x13_c01031{left:615.921007pt;}
.x9_c01031{left:630.630667pt;}
}





/* 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_c01032 {
    display:none;
  }
  .loading-indicator_c01032.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01032 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_c01032 { 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_c01032" -> "#page-container .classname_c01032")
 */
.pf_c01032 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01032 { /* 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_c01032.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01032 { /* 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_c01032 { /* 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_c01032 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01032 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01032 {overflow:visible;}
  }
}
.c_c01032 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01032 { /* 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_c01032:after { /* webkit #35443 */
  content: '';
}
.t_c01032:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01032 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 */
}
.__c01032 { /* 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_c01032 { /* info for Javascript */
  display:none;
}
.l_c01032 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01032 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01032 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01032: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_c01032 {
    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_c01032.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01032.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_c01032 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01032{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01032;src:url('chunks/assets/font_b11a17f404e7258299fdf971.woff2')format("woff");}.ff1_c01032{font-family:ff1_c01032;line-height:1.000000;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;}
.m0_c01032{transform:matrix(0.130766,0.006021,-0.011499,0.249735,0,0);-ms-transform:matrix(0.130766,0.006021,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.130766,0.006021,-0.011499,0.249735,0,0);}
.m5_c01032{transform:matrix(0.176794,0.005663,-0.008004,0.249872,0,0);-ms-transform:matrix(0.176794,0.005663,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.176794,0.005663,-0.008004,0.249872,0,0);}
.me2_c01032{transform:matrix(0.176814,0.005841,-0.008254,0.249864,0,0);-ms-transform:matrix(0.176814,0.005841,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.176814,0.005841,-0.008254,0.249864,0,0);}
.m3f_c01032{transform:matrix(0.181124,0.005071,-0.006997,0.249902,0,0);-ms-transform:matrix(0.181124,0.005071,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.181124,0.005071,-0.006997,0.249902,0,0);}
.m10e_c01032{transform:matrix(0.182413,0.006391,-0.008753,0.249847,0,0);-ms-transform:matrix(0.182413,0.006391,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.182413,0.006391,-0.008753,0.249847,0,0);}
.m82_c01032{transform:matrix(0.183003,0.005124,-0.006997,0.249902,0,0);-ms-transform:matrix(0.183003,0.005124,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.183003,0.005124,-0.006997,0.249902,0,0);}
.m8a_c01032{transform:matrix(0.183693,0.005143,-0.006997,0.249902,0,0);-ms-transform:matrix(0.183693,0.005143,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.183693,0.005143,-0.006997,0.249902,0,0);}
.m111_c01032{transform:matrix(0.185196,0.006488,-0.008753,0.249847,0,0);-ms-transform:matrix(0.185196,0.006488,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.185196,0.006488,-0.008753,0.249847,0,0);}
.mdc_c01032{transform:matrix(0.185834,0.006139,-0.008254,0.249864,0,0);-ms-transform:matrix(0.185834,0.006139,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.185834,0.006139,-0.008254,0.249864,0,0);}
.mbd_c01032{transform:matrix(0.186178,0.006150,-0.008254,0.249864,0,0);-ms-transform:matrix(0.186178,0.006150,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.186178,0.006150,-0.008254,0.249864,0,0);}
.m80_c01032{transform:matrix(0.187092,0.005239,-0.006997,0.249902,0,0);-ms-transform:matrix(0.187092,0.005239,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.187092,0.005239,-0.006997,0.249902,0,0);}
.m87_c01032{transform:matrix(0.190275,0.005328,-0.006997,0.249902,0,0);-ms-transform:matrix(0.190275,0.005328,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.190275,0.005328,-0.006997,0.249902,0,0);}
.md7_c01032{transform:matrix(0.190611,0.006296,-0.008254,0.249864,0,0);-ms-transform:matrix(0.190611,0.006296,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.190611,0.006296,-0.008254,0.249864,0,0);}
.m86_c01032{transform:matrix(0.190660,0.005338,-0.006997,0.249902,0,0);-ms-transform:matrix(0.190660,0.005338,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.190660,0.005338,-0.006997,0.249902,0,0);}
.m11d_c01032{transform:matrix(0.191780,0.010366,-0.013494,0.249636,0,0);-ms-transform:matrix(0.191780,0.010366,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.191780,0.010366,-0.013494,0.249636,0,0);}
.m114_c01032{transform:matrix(0.192122,0.006731,-0.008753,0.249847,0,0);-ms-transform:matrix(0.192122,0.006731,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.192122,0.006731,-0.008753,0.249847,0,0);}
.m9d_c01032{transform:matrix(0.192480,0.006358,-0.008254,0.249864,0,0);-ms-transform:matrix(0.192480,0.006358,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.192480,0.006358,-0.008254,0.249864,0,0);}
.m11b_c01032{transform:matrix(0.192873,0.010426,-0.013494,0.249636,0,0);-ms-transform:matrix(0.192873,0.010426,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.192873,0.010426,-0.013494,0.249636,0,0);}
.m4a_c01032{transform:matrix(0.194274,0.005440,-0.006997,0.249902,0,0);-ms-transform:matrix(0.194274,0.005440,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.194274,0.005440,-0.006997,0.249902,0,0);}
.mf1_c01032{transform:matrix(0.194279,0.005246,-0.006748,0.249909,0,0);-ms-transform:matrix(0.194279,0.005246,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.194279,0.005246,-0.006748,0.249909,0,0);}
.m89_c01032{transform:matrix(0.194984,0.005460,-0.006997,0.249902,0,0);-ms-transform:matrix(0.194984,0.005460,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.194984,0.005460,-0.006997,0.249902,0,0);}
.m10f_c01032{transform:matrix(0.195140,0.006837,-0.008753,0.249847,0,0);-ms-transform:matrix(0.195140,0.006837,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.195140,0.006837,-0.008753,0.249847,0,0);}
.m112_c01032{transform:matrix(0.195185,0.006838,-0.008753,0.249847,0,0);-ms-transform:matrix(0.195185,0.006838,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.195185,0.006838,-0.008753,0.249847,0,0);}
.m50_c01032{transform:matrix(0.195488,0.005474,-0.006997,0.249902,0,0);-ms-transform:matrix(0.195488,0.005474,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.195488,0.005474,-0.006997,0.249902,0,0);}
.m47_c01032{transform:matrix(0.196048,0.005489,-0.006997,0.249902,0,0);-ms-transform:matrix(0.196048,0.005489,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.196048,0.005489,-0.006997,0.249902,0,0);}
.me1_c01032{transform:matrix(0.197023,0.006508,-0.008254,0.249864,0,0);-ms-transform:matrix(0.197023,0.006508,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.197023,0.006508,-0.008254,0.249864,0,0);}
.m98_c01032{transform:matrix(0.197327,0.006518,-0.008254,0.249864,0,0);-ms-transform:matrix(0.197327,0.006518,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.197327,0.006518,-0.008254,0.249864,0,0);}
.m3d_c01032{transform:matrix(0.197733,0.005537,-0.006997,0.249902,0,0);-ms-transform:matrix(0.197733,0.005537,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.197733,0.005537,-0.006997,0.249902,0,0);}
.mc2_c01032{transform:matrix(0.198292,0.006550,-0.008254,0.249864,0,0);-ms-transform:matrix(0.198292,0.006550,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.198292,0.006550,-0.008254,0.249864,0,0);}
.m4c_c01032{transform:matrix(0.199222,0.005578,-0.006997,0.249902,0,0);-ms-transform:matrix(0.199222,0.005578,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.199222,0.005578,-0.006997,0.249902,0,0);}
.m9e_c01032{transform:matrix(0.200201,0.006613,-0.008254,0.249864,0,0);-ms-transform:matrix(0.200201,0.006613,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.200201,0.006613,-0.008254,0.249864,0,0);}
.mf5_c01032{transform:matrix(0.200237,0.005406,-0.006748,0.249909,0,0);-ms-transform:matrix(0.200237,0.005406,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.200237,0.005406,-0.006748,0.249909,0,0);}
.med_c01032{transform:matrix(0.200762,0.005421,-0.006748,0.249909,0,0);-ms-transform:matrix(0.200762,0.005421,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.200762,0.005421,-0.006748,0.249909,0,0);}
.mde_c01032{transform:matrix(0.201135,0.006644,-0.008254,0.249864,0,0);-ms-transform:matrix(0.201135,0.006644,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.201135,0.006644,-0.008254,0.249864,0,0);}
.m81_c01032{transform:matrix(0.201311,0.005637,-0.006997,0.249902,0,0);-ms-transform:matrix(0.201311,0.005637,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.201311,0.005637,-0.006997,0.249902,0,0);}
.mae_c01032{transform:matrix(0.201695,0.006663,-0.008254,0.249864,0,0);-ms-transform:matrix(0.201695,0.006663,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.201695,0.006663,-0.008254,0.249864,0,0);}
.m4d_c01032{transform:matrix(0.202146,0.005660,-0.006997,0.249902,0,0);-ms-transform:matrix(0.202146,0.005660,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.202146,0.005660,-0.006997,0.249902,0,0);}
.m4e_c01032{transform:matrix(0.202586,0.005672,-0.006997,0.249902,0,0);-ms-transform:matrix(0.202586,0.005672,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.202586,0.005672,-0.006997,0.249902,0,0);}
.mee_c01032{transform:matrix(0.204256,0.005515,-0.006748,0.249909,0,0);-ms-transform:matrix(0.204256,0.005515,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.204256,0.005515,-0.006748,0.249909,0,0);}
.m118_c01032{transform:matrix(0.204801,0.011070,-0.013494,0.249636,0,0);-ms-transform:matrix(0.204801,0.011070,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.204801,0.011070,-0.013494,0.249636,0,0);}
.m49_c01032{transform:matrix(0.206139,0.005772,-0.006997,0.249902,0,0);-ms-transform:matrix(0.206139,0.005772,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.206139,0.005772,-0.006997,0.249902,0,0);}
.m88_c01032{transform:matrix(0.206484,0.005782,-0.006997,0.249902,0,0);-ms-transform:matrix(0.206484,0.005782,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.206484,0.005782,-0.006997,0.249902,0,0);}
.mc3_c01032{transform:matrix(0.206717,0.006828,-0.008254,0.249864,0,0);-ms-transform:matrix(0.206717,0.006828,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.206717,0.006828,-0.008254,0.249864,0,0);}
.me3_c01032{transform:matrix(0.207282,0.006847,-0.008254,0.249864,0,0);-ms-transform:matrix(0.207282,0.006847,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.207282,0.006847,-0.008254,0.249864,0,0);}
.m85_c01032{transform:matrix(0.207709,0.005816,-0.006997,0.249902,0,0);-ms-transform:matrix(0.207709,0.005816,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.207709,0.005816,-0.006997,0.249902,0,0);}
.m42_c01032{transform:matrix(0.207983,0.005824,-0.006997,0.249902,0,0);-ms-transform:matrix(0.207983,0.005824,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.207983,0.005824,-0.006997,0.249902,0,0);}
.m11e_c01032{transform:matrix(0.208925,0.011293,-0.013494,0.249636,0,0);-ms-transform:matrix(0.208925,0.011293,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.208925,0.011293,-0.013494,0.249636,0,0);}
.mfc_c01032{transform:matrix(0.209224,0.005649,-0.006748,0.249909,0,0);-ms-transform:matrix(0.209224,0.005649,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.209224,0.005649,-0.006748,0.249909,0,0);}
.mb0_c01032{transform:matrix(0.209381,0.006916,-0.008254,0.249864,0,0);-ms-transform:matrix(0.209381,0.006916,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.209381,0.006916,-0.008254,0.249864,0,0);}
.mf9_c01032{transform:matrix(0.209469,0.005656,-0.006748,0.249909,0,0);-ms-transform:matrix(0.209469,0.005656,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.209469,0.005656,-0.006748,0.249909,0,0);}
.mc8_c01032{transform:matrix(0.209566,0.006923,-0.008254,0.249864,0,0);-ms-transform:matrix(0.209566,0.006923,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.209566,0.006923,-0.008254,0.249864,0,0);}
.m96_c01032{transform:matrix(0.209776,0.006930,-0.008254,0.249864,0,0);-ms-transform:matrix(0.209776,0.006930,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.209776,0.006930,-0.008254,0.249864,0,0);}
.mda_c01032{transform:matrix(0.210760,0.006962,-0.008254,0.249864,0,0);-ms-transform:matrix(0.210760,0.006962,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.210760,0.006962,-0.008254,0.249864,0,0);}
.m51_c01032{transform:matrix(0.210967,0.005907,-0.006997,0.249902,0,0);-ms-transform:matrix(0.210967,0.005907,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.210967,0.005907,-0.006997,0.249902,0,0);}
.mf7_c01032{transform:matrix(0.211408,0.005708,-0.006748,0.249909,0,0);-ms-transform:matrix(0.211408,0.005708,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.211408,0.005708,-0.006748,0.249909,0,0);}
.meb_c01032{transform:matrix(0.211814,0.006997,-0.008254,0.249864,0,0);-ms-transform:matrix(0.211814,0.006997,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.211814,0.006997,-0.008254,0.249864,0,0);}
.m78_c01032{transform:matrix(0.213052,0.005965,-0.006997,0.249902,0,0);-ms-transform:matrix(0.213052,0.005965,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.213052,0.005965,-0.006997,0.249902,0,0);}
.m113_c01032{transform:matrix(0.213084,0.007465,-0.008753,0.249847,0,0);-ms-transform:matrix(0.213084,0.007465,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.213084,0.007465,-0.008753,0.249847,0,0);}
.m110_c01032{transform:matrix(0.213634,0.007485,-0.008753,0.249847,0,0);-ms-transform:matrix(0.213634,0.007485,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.213634,0.007485,-0.008753,0.249847,0,0);}
.m101_c01032{transform:matrix(0.213742,0.005771,-0.006748,0.249909,0,0);-ms-transform:matrix(0.213742,0.005771,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.213742,0.005771,-0.006748,0.249909,0,0);}
.ma2_c01032{transform:matrix(0.214843,0.007097,-0.008254,0.249864,0,0);-ms-transform:matrix(0.214843,0.007097,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.214843,0.007097,-0.008254,0.249864,0,0);}
.me9_c01032{transform:matrix(0.215587,0.007122,-0.008254,0.249864,0,0);-ms-transform:matrix(0.215587,0.007122,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.215587,0.007122,-0.008254,0.249864,0,0);}
.m4b_c01032{transform:matrix(0.215825,0.006043,-0.006997,0.249902,0,0);-ms-transform:matrix(0.215825,0.006043,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.215825,0.006043,-0.006997,0.249902,0,0);}
.md8_c01032{transform:matrix(0.215932,0.007133,-0.008254,0.249864,0,0);-ms-transform:matrix(0.215932,0.007133,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.215932,0.007133,-0.008254,0.249864,0,0);}
.m76_c01032{transform:matrix(0.216125,0.006052,-0.006997,0.249902,0,0);-ms-transform:matrix(0.216125,0.006052,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.216125,0.006052,-0.006997,0.249902,0,0);}
.me0_c01032{transform:matrix(0.216187,0.007141,-0.008254,0.249864,0,0);-ms-transform:matrix(0.216187,0.007141,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.216187,0.007141,-0.008254,0.249864,0,0);}
.m36_c01032{transform:matrix(0.216250,0.006055,-0.006997,0.249902,0,0);-ms-transform:matrix(0.216250,0.006055,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.216250,0.006055,-0.006997,0.249902,0,0);}
.mdd_c01032{transform:matrix(0.216387,0.007148,-0.008254,0.249864,0,0);-ms-transform:matrix(0.216387,0.007148,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.216387,0.007148,-0.008254,0.249864,0,0);}
.mc7_c01032{transform:matrix(0.216607,0.007155,-0.008254,0.249864,0,0);-ms-transform:matrix(0.216607,0.007155,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.216607,0.007155,-0.008254,0.249864,0,0);}
.mc1_c01032{transform:matrix(0.217162,0.007174,-0.008254,0.249864,0,0);-ms-transform:matrix(0.217162,0.007174,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.217162,0.007174,-0.008254,0.249864,0,0);}
.m125_c01032{transform:matrix(0.217400,0.003913,-0.004499,0.249960,0,0);-ms-transform:matrix(0.217400,0.003913,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.217400,0.003913,-0.004499,0.249960,0,0);}
.m97_c01032{transform:matrix(0.217576,0.007187,-0.008254,0.249864,0,0);-ms-transform:matrix(0.217576,0.007187,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.217576,0.007187,-0.008254,0.249864,0,0);}
.m122_c01032{transform:matrix(0.218301,0.011800,-0.013494,0.249636,0,0);-ms-transform:matrix(0.218301,0.011800,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.218301,0.011800,-0.013494,0.249636,0,0);}
.mf6_c01032{transform:matrix(0.218675,0.005904,-0.006748,0.249909,0,0);-ms-transform:matrix(0.218675,0.005904,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.218675,0.005904,-0.006748,0.249909,0,0);}
.ma0_c01032{transform:matrix(0.218831,0.007229,-0.008254,0.249864,0,0);-ms-transform:matrix(0.218831,0.007229,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.218831,0.007229,-0.008254,0.249864,0,0);}
.mc5_c01032{transform:matrix(0.219470,0.007250,-0.008254,0.249864,0,0);-ms-transform:matrix(0.219470,0.007250,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.219470,0.007250,-0.008254,0.249864,0,0);}
.m24_c01032{transform:matrix(0.219714,0.006152,-0.006997,0.249902,0,0);-ms-transform:matrix(0.219714,0.006152,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.219714,0.006152,-0.006997,0.249902,0,0);}
.mfa_c01032{transform:matrix(0.220110,0.005943,-0.006748,0.249909,0,0);-ms-transform:matrix(0.220110,0.005943,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.220110,0.005943,-0.006748,0.249909,0,0);}
.m9c_c01032{transform:matrix(0.220730,0.007291,-0.008254,0.249864,0,0);-ms-transform:matrix(0.220730,0.007291,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.220730,0.007291,-0.008254,0.249864,0,0);}
.mdb_c01032{transform:matrix(0.220934,0.007298,-0.008254,0.249864,0,0);-ms-transform:matrix(0.220934,0.007298,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.220934,0.007298,-0.008254,0.249864,0,0);}
.m74_c01032{transform:matrix(0.221053,0.006189,-0.006997,0.249902,0,0);-ms-transform:matrix(0.221053,0.006189,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.221053,0.006189,-0.006997,0.249902,0,0);}
.m8b_c01032{transform:matrix(0.221118,0.006191,-0.006997,0.249902,0,0);-ms-transform:matrix(0.221118,0.006191,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.221118,0.006191,-0.006997,0.249902,0,0);}
.mef_c01032{transform:matrix(0.221514,0.005981,-0.006748,0.249909,0,0);-ms-transform:matrix(0.221514,0.005981,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.221514,0.005981,-0.006748,0.249909,0,0);}
.m117_c01032{transform:matrix(0.221597,0.011978,-0.013494,0.249636,0,0);-ms-transform:matrix(0.221597,0.011978,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.221597,0.011978,-0.013494,0.249636,0,0);}
.m39_c01032{transform:matrix(0.222053,0.006217,-0.006997,0.249902,0,0);-ms-transform:matrix(0.222053,0.006217,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.222053,0.006217,-0.006997,0.249902,0,0);}
.mf0_c01032{transform:matrix(0.222099,0.005997,-0.006748,0.249909,0,0);-ms-transform:matrix(0.222099,0.005997,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.222099,0.005997,-0.006748,0.249909,0,0);}
.m35_c01032{transform:matrix(0.222653,0.006234,-0.006997,0.249902,0,0);-ms-transform:matrix(0.222653,0.006234,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.222653,0.006234,-0.006997,0.249902,0,0);}
.m30_c01032{transform:matrix(0.222673,0.006235,-0.006997,0.249902,0,0);-ms-transform:matrix(0.222673,0.006235,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.222673,0.006235,-0.006997,0.249902,0,0);}
.m6c_c01032{transform:matrix(0.223183,0.006249,-0.006997,0.249902,0,0);-ms-transform:matrix(0.223183,0.006249,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.223183,0.006249,-0.006997,0.249902,0,0);}
.m7d_c01032{transform:matrix(0.223228,0.006250,-0.006997,0.249902,0,0);-ms-transform:matrix(0.223228,0.006250,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.223228,0.006250,-0.006997,0.249902,0,0);}
.m69_c01032{transform:matrix(0.223517,0.006258,-0.006997,0.249902,0,0);-ms-transform:matrix(0.223517,0.006258,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.223517,0.006258,-0.006997,0.249902,0,0);}
.m9f_c01032{transform:matrix(0.223533,0.007384,-0.008254,0.249864,0,0);-ms-transform:matrix(0.223533,0.007384,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.223533,0.007384,-0.008254,0.249864,0,0);}
.ma4_c01032{transform:matrix(0.223848,0.007394,-0.008254,0.249864,0,0);-ms-transform:matrix(0.223848,0.007394,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.223848,0.007394,-0.008254,0.249864,0,0);}
.md_c01032{transform:matrix(0.223882,0.006269,-0.006997,0.249902,0,0);-ms-transform:matrix(0.223882,0.006269,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.223882,0.006269,-0.006997,0.249902,0,0);}
.ma7_c01032{transform:matrix(0.223948,0.007398,-0.008254,0.249864,0,0);-ms-transform:matrix(0.223948,0.007398,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.223948,0.007398,-0.008254,0.249864,0,0);}
.ma8_c01032{transform:matrix(0.224612,0.007420,-0.008254,0.249864,0,0);-ms-transform:matrix(0.224612,0.007420,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.224612,0.007420,-0.008254,0.249864,0,0);}
.m11a_c01032{transform:matrix(0.225041,0.012164,-0.013494,0.249636,0,0);-ms-transform:matrix(0.225041,0.012164,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.225041,0.012164,-0.013494,0.249636,0,0);}
.m90_c01032{transform:matrix(0.225257,0.006307,-0.006997,0.249902,0,0);-ms-transform:matrix(0.225257,0.006307,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.225257,0.006307,-0.006997,0.249902,0,0);}
.mfd_c01032{transform:matrix(0.225583,0.006091,-0.006748,0.249909,0,0);-ms-transform:matrix(0.225583,0.006091,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.225583,0.006091,-0.006748,0.249909,0,0);}
.m48_c01032{transform:matrix(0.225632,0.006318,-0.006997,0.249902,0,0);-ms-transform:matrix(0.225632,0.006318,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.225632,0.006318,-0.006997,0.249902,0,0);}
.m128_c01032{transform:matrix(0.225660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225660,0.000000,0.000000,0.250000,0,0);}
.m65_c01032{transform:matrix(0.225757,0.006321,-0.006997,0.249902,0,0);-ms-transform:matrix(0.225757,0.006321,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.225757,0.006321,-0.006997,0.249902,0,0);}
.md0_c01032{transform:matrix(0.225942,0.007464,-0.008254,0.249864,0,0);-ms-transform:matrix(0.225942,0.007464,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.225942,0.007464,-0.008254,0.249864,0,0);}
.m11f_c01032{transform:matrix(0.225970,0.012215,-0.013494,0.249636,0,0);-ms-transform:matrix(0.225970,0.012215,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.225970,0.012215,-0.013494,0.249636,0,0);}
.m129_c01032{transform:matrix(0.226655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226655,0.000000,0.000000,0.250000,0,0);}
.m7a_c01032{transform:matrix(0.227661,0.006375,-0.006997,0.249902,0,0);-ms-transform:matrix(0.227661,0.006375,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.227661,0.006375,-0.006997,0.249902,0,0);}
.mbf_c01032{transform:matrix(0.228345,0.007543,-0.008254,0.249864,0,0);-ms-transform:matrix(0.228345,0.007543,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.228345,0.007543,-0.008254,0.249864,0,0);}
.m9a_c01032{transform:matrix(0.228510,0.007548,-0.008254,0.249864,0,0);-ms-transform:matrix(0.228510,0.007548,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.228510,0.007548,-0.008254,0.249864,0,0);}
.m72_c01032{transform:matrix(0.229435,0.006424,-0.006997,0.249902,0,0);-ms-transform:matrix(0.229435,0.006424,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.229435,0.006424,-0.006997,0.249902,0,0);}
.me4_c01032{transform:matrix(0.230010,0.007598,-0.008254,0.249864,0,0);-ms-transform:matrix(0.230010,0.007598,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.230010,0.007598,-0.008254,0.249864,0,0);}
.m55_c01032{transform:matrix(0.230125,0.006443,-0.006997,0.249902,0,0);-ms-transform:matrix(0.230125,0.006443,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.230125,0.006443,-0.006997,0.249902,0,0);}
.m37_c01032{transform:matrix(0.230130,0.006444,-0.006997,0.249902,0,0);-ms-transform:matrix(0.230130,0.006444,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.230130,0.006444,-0.006997,0.249902,0,0);}
.m2c_c01032{transform:matrix(0.230250,0.006447,-0.006997,0.249902,0,0);-ms-transform:matrix(0.230250,0.006447,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.230250,0.006447,-0.006997,0.249902,0,0);}
.m6a_c01032{transform:matrix(0.230665,0.006459,-0.006997,0.249902,0,0);-ms-transform:matrix(0.230665,0.006459,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.230665,0.006459,-0.006997,0.249902,0,0);}
.m17_c01032{transform:matrix(0.230805,0.006463,-0.006997,0.249902,0,0);-ms-transform:matrix(0.230805,0.006463,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.230805,0.006463,-0.006997,0.249902,0,0);}
.m11_c01032{transform:matrix(0.231549,0.006483,-0.006997,0.249902,0,0);-ms-transform:matrix(0.231549,0.006483,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.231549,0.006483,-0.006997,0.249902,0,0);}
.mf8_c01032{transform:matrix(0.232010,0.006264,-0.006748,0.249909,0,0);-ms-transform:matrix(0.232010,0.006264,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.232010,0.006264,-0.006748,0.249909,0,0);}
.md4_c01032{transform:matrix(0.232158,0.007669,-0.008254,0.249864,0,0);-ms-transform:matrix(0.232158,0.007669,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.232158,0.007669,-0.008254,0.249864,0,0);}
.ma1_c01032{transform:matrix(0.232243,0.007672,-0.008254,0.249864,0,0);-ms-transform:matrix(0.232243,0.007672,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.232243,0.007672,-0.008254,0.249864,0,0);}
.m121_c01032{transform:matrix(0.232371,0.012561,-0.013494,0.249636,0,0);-ms-transform:matrix(0.232371,0.012561,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.232371,0.012561,-0.013494,0.249636,0,0);}
.ma9_c01032{transform:matrix(0.232523,0.007681,-0.008254,0.249864,0,0);-ms-transform:matrix(0.232523,0.007681,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.232523,0.007681,-0.008254,0.249864,0,0);}
.m99_c01032{transform:matrix(0.232623,0.007684,-0.008254,0.249864,0,0);-ms-transform:matrix(0.232623,0.007684,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.232623,0.007684,-0.008254,0.249864,0,0);}
.m7c_c01032{transform:matrix(0.233069,0.006526,-0.006997,0.249902,0,0);-ms-transform:matrix(0.233069,0.006526,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.233069,0.006526,-0.006997,0.249902,0,0);}
.me6_c01032{transform:matrix(0.233443,0.007711,-0.008254,0.249864,0,0);-ms-transform:matrix(0.233443,0.007711,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.233443,0.007711,-0.008254,0.249864,0,0);}
.m31_c01032{transform:matrix(0.233533,0.006539,-0.006997,0.249902,0,0);-ms-transform:matrix(0.233533,0.006539,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.233533,0.006539,-0.006997,0.249902,0,0);}
.ma_c01032{transform:matrix(0.233560,0.007481,-0.008004,0.249872,0,0);-ms-transform:matrix(0.233560,0.007481,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.233560,0.007481,-0.008004,0.249872,0,0);}
.mbb_c01032{transform:matrix(0.233568,0.007715,-0.008254,0.249864,0,0);-ms-transform:matrix(0.233568,0.007715,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.233568,0.007715,-0.008254,0.249864,0,0);}
.m6f_c01032{transform:matrix(0.233603,0.006541,-0.006997,0.249902,0,0);-ms-transform:matrix(0.233603,0.006541,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.233603,0.006541,-0.006997,0.249902,0,0);}
.mf2_c01032{transform:matrix(0.234585,0.006334,-0.006748,0.249909,0,0);-ms-transform:matrix(0.234585,0.006334,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.234585,0.006334,-0.006748,0.249909,0,0);}
.m120_c01032{transform:matrix(0.235162,0.012711,-0.013494,0.249636,0,0);-ms-transform:matrix(0.235162,0.012711,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.235162,0.012711,-0.013494,0.249636,0,0);}
.mca_c01032{transform:matrix(0.235267,0.007772,-0.008254,0.249864,0,0);-ms-transform:matrix(0.235267,0.007772,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.235267,0.007772,-0.008254,0.249864,0,0);}
.m6d_c01032{transform:matrix(0.235303,0.006588,-0.006997,0.249902,0,0);-ms-transform:matrix(0.235303,0.006588,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.235303,0.006588,-0.006997,0.249902,0,0);}
.mff_c01032{transform:matrix(0.235349,0.006354,-0.006748,0.249909,0,0);-ms-transform:matrix(0.235349,0.006354,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.235349,0.006354,-0.006748,0.249909,0,0);}
.m116_c01032{transform:matrix(0.235516,0.012731,-0.013494,0.249636,0,0);-ms-transform:matrix(0.235516,0.012731,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.235516,0.012731,-0.013494,0.249636,0,0);}
.mc0_c01032{transform:matrix(0.235661,0.007785,-0.008254,0.249864,0,0);-ms-transform:matrix(0.235661,0.007785,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.235661,0.007785,-0.008254,0.249864,0,0);}
.ma5_c01032{transform:matrix(0.235721,0.007787,-0.008254,0.249864,0,0);-ms-transform:matrix(0.235721,0.007787,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.235721,0.007787,-0.008254,0.249864,0,0);}
.m1a_c01032{transform:matrix(0.235903,0.006605,-0.006997,0.249902,0,0);-ms-transform:matrix(0.235903,0.006605,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.235903,0.006605,-0.006997,0.249902,0,0);}
.m77_c01032{transform:matrix(0.235953,0.006607,-0.006997,0.249902,0,0);-ms-transform:matrix(0.235953,0.006607,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.235953,0.006607,-0.006997,0.249902,0,0);}
.m79_c01032{transform:matrix(0.235978,0.006607,-0.006997,0.249902,0,0);-ms-transform:matrix(0.235978,0.006607,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.235978,0.006607,-0.006997,0.249902,0,0);}
.m32_c01032{transform:matrix(0.236272,0.006616,-0.006997,0.249902,0,0);-ms-transform:matrix(0.236272,0.006616,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.236272,0.006616,-0.006997,0.249902,0,0);}
.md6_c01032{transform:matrix(0.236341,0.007807,-0.008254,0.249864,0,0);-ms-transform:matrix(0.236341,0.007807,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.236341,0.007807,-0.008254,0.249864,0,0);}
.m2f_c01032{transform:matrix(0.236972,0.006635,-0.006997,0.249902,0,0);-ms-transform:matrix(0.236972,0.006635,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.236972,0.006635,-0.006997,0.249902,0,0);}
.m5d_c01032{transform:matrix(0.237092,0.006639,-0.006997,0.249902,0,0);-ms-transform:matrix(0.237092,0.006639,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.237092,0.006639,-0.006997,0.249902,0,0);}
.m46_c01032{transform:matrix(0.237347,0.006646,-0.006997,0.249902,0,0);-ms-transform:matrix(0.237347,0.006646,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.237347,0.006646,-0.006997,0.249902,0,0);}
.m5c_c01032{transform:matrix(0.237742,0.006657,-0.006997,0.249902,0,0);-ms-transform:matrix(0.237742,0.006657,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.237742,0.006657,-0.006997,0.249902,0,0);}
.me7_c01032{transform:matrix(0.238095,0.007865,-0.008254,0.249864,0,0);-ms-transform:matrix(0.238095,0.007865,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.238095,0.007865,-0.008254,0.249864,0,0);}
.m59_c01032{transform:matrix(0.238442,0.006676,-0.006997,0.249902,0,0);-ms-transform:matrix(0.238442,0.006676,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.238442,0.006676,-0.006997,0.249902,0,0);}
.m9b_c01032{transform:matrix(0.238690,0.007885,-0.008254,0.249864,0,0);-ms-transform:matrix(0.238690,0.007885,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.238690,0.007885,-0.008254,0.249864,0,0);}
.me5_c01032{transform:matrix(0.238940,0.007893,-0.008254,0.249864,0,0);-ms-transform:matrix(0.238940,0.007893,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.238940,0.007893,-0.008254,0.249864,0,0);}
.m33_c01032{transform:matrix(0.238941,0.006690,-0.006997,0.249902,0,0);-ms-transform:matrix(0.238941,0.006690,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.238941,0.006690,-0.006997,0.249902,0,0);}
.m53_c01032{transform:matrix(0.239341,0.006702,-0.006997,0.249902,0,0);-ms-transform:matrix(0.239341,0.006702,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.239341,0.006702,-0.006997,0.249902,0,0);}
.m8f_c01032{transform:matrix(0.239471,0.006705,-0.006997,0.249902,0,0);-ms-transform:matrix(0.239471,0.006705,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.239471,0.006705,-0.006997,0.249902,0,0);}
.mb5_c01032{transform:matrix(0.239779,0.007921,-0.008254,0.249864,0,0);-ms-transform:matrix(0.239779,0.007921,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.239779,0.007921,-0.008254,0.249864,0,0);}
.m4f_c01032{transform:matrix(0.239811,0.006715,-0.006997,0.249902,0,0);-ms-transform:matrix(0.239811,0.006715,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.239811,0.006715,-0.006997,0.249902,0,0);}
.m12_c01032{transform:matrix(0.239816,0.006715,-0.006997,0.249902,0,0);-ms-transform:matrix(0.239816,0.006715,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.239816,0.006715,-0.006997,0.249902,0,0);}
.mc9_c01032{transform:matrix(0.239829,0.007922,-0.008254,0.249864,0,0);-ms-transform:matrix(0.239829,0.007922,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.239829,0.007922,-0.008254,0.249864,0,0);}
.m11c_c01032{transform:matrix(0.239965,0.012971,-0.013494,0.249636,0,0);-ms-transform:matrix(0.239965,0.012971,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.239965,0.012971,-0.013494,0.249636,0,0);}
.m7e_c01032{transform:matrix(0.240356,0.006730,-0.006997,0.249902,0,0);-ms-transform:matrix(0.240356,0.006730,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.240356,0.006730,-0.006997,0.249902,0,0);}
.m25_c01032{transform:matrix(0.240401,0.006731,-0.006997,0.249902,0,0);-ms-transform:matrix(0.240401,0.006731,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.240401,0.006731,-0.006997,0.249902,0,0);}
.mdf_c01032{transform:matrix(0.240844,0.007956,-0.008254,0.249864,0,0);-ms-transform:matrix(0.240844,0.007956,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.240844,0.007956,-0.008254,0.249864,0,0);}
.m3c_c01032{transform:matrix(0.240866,0.006744,-0.006997,0.249902,0,0);-ms-transform:matrix(0.240866,0.006744,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.240866,0.006744,-0.006997,0.249902,0,0);}
.m29_c01032{transform:matrix(0.241225,0.006754,-0.006997,0.249902,0,0);-ms-transform:matrix(0.241225,0.006754,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.241225,0.006754,-0.006997,0.249902,0,0);}
.m1_c01032{transform:matrix(0.241684,0.011129,-0.011499,0.249735,0,0);-ms-transform:matrix(0.241684,0.011129,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.241684,0.011129,-0.011499,0.249735,0,0);}
.m67_c01032{transform:matrix(0.241925,0.006774,-0.006997,0.249902,0,0);-ms-transform:matrix(0.241925,0.006774,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.241925,0.006774,-0.006997,0.249902,0,0);}
.m57_c01032{transform:matrix(0.241960,0.006775,-0.006997,0.249902,0,0);-ms-transform:matrix(0.241960,0.006775,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.241960,0.006775,-0.006997,0.249902,0,0);}
.md9_c01032{transform:matrix(0.242513,0.008011,-0.008254,0.249864,0,0);-ms-transform:matrix(0.242513,0.008011,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.242513,0.008011,-0.008254,0.249864,0,0);}
.m5a_c01032{transform:matrix(0.242660,0.006794,-0.006997,0.249902,0,0);-ms-transform:matrix(0.242660,0.006794,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.242660,0.006794,-0.006997,0.249902,0,0);}
.m19_c01032{transform:matrix(0.243655,0.006822,-0.006997,0.249902,0,0);-ms-transform:matrix(0.243655,0.006822,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.243655,0.006822,-0.006997,0.249902,0,0);}
.m102_c01032{transform:matrix(0.244061,0.006590,-0.006748,0.249909,0,0);-ms-transform:matrix(0.244061,0.006590,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.244061,0.006590,-0.006748,0.249909,0,0);}
.m13_c01032{transform:matrix(0.244159,0.006836,-0.006997,0.249902,0,0);-ms-transform:matrix(0.244159,0.006836,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.244159,0.006836,-0.006997,0.249902,0,0);}
.m10_c01032{transform:matrix(0.244214,0.006838,-0.006997,0.249902,0,0);-ms-transform:matrix(0.244214,0.006838,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.244214,0.006838,-0.006997,0.249902,0,0);}
.md1_c01032{transform:matrix(0.244891,0.008090,-0.008254,0.249864,0,0);-ms-transform:matrix(0.244891,0.008090,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.244891,0.008090,-0.008254,0.249864,0,0);}
.m70_c01032{transform:matrix(0.245364,0.006870,-0.006997,0.249902,0,0);-ms-transform:matrix(0.245364,0.006870,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.245364,0.006870,-0.006997,0.249902,0,0);}
.mbe_c01032{transform:matrix(0.245886,0.008122,-0.008254,0.249864,0,0);-ms-transform:matrix(0.245886,0.008122,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.245886,0.008122,-0.008254,0.249864,0,0);}
.m5e_c01032{transform:matrix(0.246109,0.006891,-0.006997,0.249902,0,0);-ms-transform:matrix(0.246109,0.006891,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.246109,0.006891,-0.006997,0.249902,0,0);}
.m100_c01032{transform:matrix(0.246455,0.006654,-0.006748,0.249909,0,0);-ms-transform:matrix(0.246455,0.006654,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.246455,0.006654,-0.006748,0.249909,0,0);}
.m108_c01032{transform:matrix(0.247355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247355,0.000000,0.000000,0.250000,0,0);}
.m21_c01032{transform:matrix(0.247368,0.006926,-0.006997,0.249902,0,0);-ms-transform:matrix(0.247368,0.006926,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.247368,0.006926,-0.006997,0.249902,0,0);}
.m10b_c01032{transform:matrix(0.247595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247595,0.000000,0.000000,0.250000,0,0);}
.m28_c01032{transform:matrix(0.248852,0.006968,-0.006997,0.249902,0,0);-ms-transform:matrix(0.248852,0.006968,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.248852,0.006968,-0.006997,0.249902,0,0);}
.mc4_c01032{transform:matrix(0.249709,0.008249,-0.008254,0.249864,0,0);-ms-transform:matrix(0.249709,0.008249,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.249709,0.008249,-0.008254,0.249864,0,0);}
.mb8_c01032{transform:matrix(0.250019,0.008259,-0.008254,0.249864,0,0);-ms-transform:matrix(0.250019,0.008259,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.250019,0.008259,-0.008254,0.249864,0,0);}
.m43_c01032{transform:matrix(0.250072,0.007002,-0.006997,0.249902,0,0);-ms-transform:matrix(0.250072,0.007002,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.250072,0.007002,-0.006997,0.249902,0,0);}
.m22_c01032{transform:matrix(0.250912,0.007026,-0.006997,0.249902,0,0);-ms-transform:matrix(0.250912,0.007026,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.250912,0.007026,-0.006997,0.249902,0,0);}
.mec_c01032{transform:matrix(0.251078,0.008294,-0.008254,0.249864,0,0);-ms-transform:matrix(0.251078,0.008294,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.251078,0.008294,-0.008254,0.249864,0,0);}
.mfe_c01032{transform:matrix(0.251108,0.006780,-0.006748,0.249909,0,0);-ms-transform:matrix(0.251108,0.006780,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.251108,0.006780,-0.006748,0.249909,0,0);}
.m123_c01032{transform:matrix(0.251239,0.004522,-0.004499,0.249960,0,0);-ms-transform:matrix(0.251239,0.004522,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.251239,0.004522,-0.004499,0.249960,0,0);}
.m61_c01032{transform:matrix(0.251297,0.007036,-0.006997,0.249902,0,0);-ms-transform:matrix(0.251297,0.007036,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.251297,0.007036,-0.006997,0.249902,0,0);}
.m71_c01032{transform:matrix(0.251621,0.007045,-0.006997,0.249902,0,0);-ms-transform:matrix(0.251621,0.007045,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.251621,0.007045,-0.006997,0.249902,0,0);}
.mb_c01032{transform:matrix(0.251626,0.008060,-0.008004,0.249872,0,0);-ms-transform:matrix(0.251626,0.008060,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.251626,0.008060,-0.008004,0.249872,0,0);}
.mb1_c01032{transform:matrix(0.251758,0.008316,-0.008254,0.249864,0,0);-ms-transform:matrix(0.251758,0.008316,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.251758,0.008316,-0.008254,0.249864,0,0);}
.m3e_c01032{transform:matrix(0.251886,0.007053,-0.006997,0.249902,0,0);-ms-transform:matrix(0.251886,0.007053,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.251886,0.007053,-0.006997,0.249902,0,0);}
.mea_c01032{transform:matrix(0.252612,0.008345,-0.008254,0.249864,0,0);-ms-transform:matrix(0.252612,0.008345,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.252612,0.008345,-0.008254,0.249864,0,0);}
.mfb_c01032{transform:matrix(0.252818,0.006826,-0.006748,0.249909,0,0);-ms-transform:matrix(0.252818,0.006826,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.252818,0.006826,-0.006748,0.249909,0,0);}
.m44_c01032{transform:matrix(0.252856,0.007080,-0.006997,0.249902,0,0);-ms-transform:matrix(0.252856,0.007080,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.252856,0.007080,-0.006997,0.249902,0,0);}
.mbc_c01032{transform:matrix(0.253022,0.008358,-0.008254,0.249864,0,0);-ms-transform:matrix(0.253022,0.008358,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.253022,0.008358,-0.008254,0.249864,0,0);}
.m84_c01032{transform:matrix(0.253026,0.007085,-0.006997,0.249902,0,0);-ms-transform:matrix(0.253026,0.007085,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.253026,0.007085,-0.006997,0.249902,0,0);}
.m60_c01032{transform:matrix(0.253501,0.007098,-0.006997,0.249902,0,0);-ms-transform:matrix(0.253501,0.007098,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.253501,0.007098,-0.006997,0.249902,0,0);}
.md3_c01032{transform:matrix(0.253672,0.008380,-0.008254,0.249864,0,0);-ms-transform:matrix(0.253672,0.008380,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.253672,0.008380,-0.008254,0.249864,0,0);}
.mf4_c01032{transform:matrix(0.253917,0.006856,-0.006748,0.249909,0,0);-ms-transform:matrix(0.253917,0.006856,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.253917,0.006856,-0.006748,0.249909,0,0);}
.m1e_c01032{transform:matrix(0.254470,0.007125,-0.006997,0.249902,0,0);-ms-transform:matrix(0.254470,0.007125,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.254470,0.007125,-0.006997,0.249902,0,0);}
.m63_c01032{transform:matrix(0.254705,0.007132,-0.006997,0.249902,0,0);-ms-transform:matrix(0.254705,0.007132,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.254705,0.007132,-0.006997,0.249902,0,0);}
.m45_c01032{transform:matrix(0.255210,0.007146,-0.006997,0.249902,0,0);-ms-transform:matrix(0.255210,0.007146,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.255210,0.007146,-0.006997,0.249902,0,0);}
.m16_c01032{transform:matrix(0.255235,0.007147,-0.006997,0.249902,0,0);-ms-transform:matrix(0.255235,0.007147,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.255235,0.007147,-0.006997,0.249902,0,0);}
.m26_c01032{transform:matrix(0.255340,0.007150,-0.006997,0.249902,0,0);-ms-transform:matrix(0.255340,0.007150,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.255340,0.007150,-0.006997,0.249902,0,0);}
.m8e_c01032{transform:matrix(0.255565,0.007156,-0.006997,0.249902,0,0);-ms-transform:matrix(0.255565,0.007156,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.255565,0.007156,-0.006997,0.249902,0,0);}
.m8c_c01032{transform:matrix(0.255645,0.007158,-0.006997,0.249902,0,0);-ms-transform:matrix(0.255645,0.007158,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.255645,0.007158,-0.006997,0.249902,0,0);}
.m40_c01032{transform:matrix(0.255695,0.007159,-0.006997,0.249902,0,0);-ms-transform:matrix(0.255695,0.007159,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.255695,0.007159,-0.006997,0.249902,0,0);}
.m75_c01032{transform:matrix(0.255770,0.007162,-0.006997,0.249902,0,0);-ms-transform:matrix(0.255770,0.007162,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.255770,0.007162,-0.006997,0.249902,0,0);}
.mcd_c01032{transform:matrix(0.256005,0.008457,-0.008254,0.249864,0,0);-ms-transform:matrix(0.256005,0.008457,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.256005,0.008457,-0.008254,0.249864,0,0);}
.mcb_c01032{transform:matrix(0.256050,0.008458,-0.008254,0.249864,0,0);-ms-transform:matrix(0.256050,0.008458,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.256050,0.008458,-0.008254,0.249864,0,0);}
.m6_c01032{transform:matrix(0.256408,0.008213,-0.008004,0.249872,0,0);-ms-transform:matrix(0.256408,0.008213,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.256408,0.008213,-0.008004,0.249872,0,0);}
.me8_c01032{transform:matrix(0.256575,0.008475,-0.008254,0.249864,0,0);-ms-transform:matrix(0.256575,0.008475,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.256575,0.008475,-0.008254,0.249864,0,0);}
.m41_c01032{transform:matrix(0.256969,0.007195,-0.006997,0.249902,0,0);-ms-transform:matrix(0.256969,0.007195,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.256969,0.007195,-0.006997,0.249902,0,0);}
.m34_c01032{transform:matrix(0.257139,0.007200,-0.006997,0.249902,0,0);-ms-transform:matrix(0.257139,0.007200,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.257139,0.007200,-0.006997,0.249902,0,0);}
.m2b_c01032{transform:matrix(0.257449,0.007209,-0.006997,0.249902,0,0);-ms-transform:matrix(0.257449,0.007209,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.257449,0.007209,-0.006997,0.249902,0,0);}
.m92_c01032{transform:matrix(0.257779,0.007218,-0.006997,0.249902,0,0);-ms-transform:matrix(0.257779,0.007218,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.257779,0.007218,-0.006997,0.249902,0,0);}
.m7f_c01032{transform:matrix(0.257919,0.007222,-0.006997,0.249902,0,0);-ms-transform:matrix(0.257919,0.007222,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.257919,0.007222,-0.006997,0.249902,0,0);}
.m54_c01032{transform:matrix(0.257974,0.007223,-0.006997,0.249902,0,0);-ms-transform:matrix(0.257974,0.007223,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.257974,0.007223,-0.006997,0.249902,0,0);}
.ma6_c01032{transform:matrix(0.258914,0.008553,-0.008254,0.249864,0,0);-ms-transform:matrix(0.258914,0.008553,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.258914,0.008553,-0.008254,0.249864,0,0);}
.mf_c01032{transform:matrix(0.259108,0.007255,-0.006997,0.249902,0,0);-ms-transform:matrix(0.259108,0.007255,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.259108,0.007255,-0.006997,0.249902,0,0);}
.mc6_c01032{transform:matrix(0.259513,0.008573,-0.008254,0.249864,0,0);-ms-transform:matrix(0.259513,0.008573,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.259513,0.008573,-0.008254,0.249864,0,0);}
.m66_c01032{transform:matrix(0.259853,0.007276,-0.006997,0.249902,0,0);-ms-transform:matrix(0.259853,0.007276,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.259853,0.007276,-0.006997,0.249902,0,0);}
.m23_c01032{transform:matrix(0.260948,0.007307,-0.006997,0.249902,0,0);-ms-transform:matrix(0.260948,0.007307,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.260948,0.007307,-0.006997,0.249902,0,0);}
.m91_c01032{transform:matrix(0.261283,0.007316,-0.006997,0.249902,0,0);-ms-transform:matrix(0.261283,0.007316,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.261283,0.007316,-0.006997,0.249902,0,0);}
.me_c01032{transform:matrix(0.261298,0.007316,-0.006997,0.249902,0,0);-ms-transform:matrix(0.261298,0.007316,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.261298,0.007316,-0.006997,0.249902,0,0);}
.m107_c01032{transform:matrix(0.261345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261345,0.000000,0.000000,0.250000,0,0);}
.maa_c01032{transform:matrix(0.262012,0.008655,-0.008254,0.249864,0,0);-ms-transform:matrix(0.262012,0.008655,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.262012,0.008655,-0.008254,0.249864,0,0);}
.m7b_c01032{transform:matrix(0.262137,0.007340,-0.006997,0.249902,0,0);-ms-transform:matrix(0.262137,0.007340,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.262137,0.007340,-0.006997,0.249902,0,0);}
.m94_c01032{transform:matrix(0.263067,0.007366,-0.006997,0.249902,0,0);-ms-transform:matrix(0.263067,0.007366,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.263067,0.007366,-0.006997,0.249902,0,0);}
.m1b_c01032{transform:matrix(0.264471,0.007405,-0.006997,0.249902,0,0);-ms-transform:matrix(0.264471,0.007405,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.264471,0.007405,-0.006997,0.249902,0,0);}
.m3_c01032{transform:matrix(0.264854,0.008484,-0.008004,0.249872,0,0);-ms-transform:matrix(0.264854,0.008484,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.264854,0.008484,-0.008004,0.249872,0,0);}
.m9_c01032{transform:matrix(0.264959,0.008487,-0.008004,0.249872,0,0);-ms-transform:matrix(0.264959,0.008487,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.264959,0.008487,-0.008004,0.249872,0,0);}
.m10c_c01032{transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);}
.m14_c01032{transform:matrix(0.265706,0.007440,-0.006997,0.249902,0,0);-ms-transform:matrix(0.265706,0.007440,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.265706,0.007440,-0.006997,0.249902,0,0);}
.m1c_c01032{transform:matrix(0.265751,0.007441,-0.006997,0.249902,0,0);-ms-transform:matrix(0.265751,0.007441,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.265751,0.007441,-0.006997,0.249902,0,0);}
.mcf_c01032{transform:matrix(0.266185,0.008793,-0.008254,0.249864,0,0);-ms-transform:matrix(0.266185,0.008793,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.266185,0.008793,-0.008254,0.249864,0,0);}
.m27_c01032{transform:matrix(0.266376,0.007459,-0.006997,0.249902,0,0);-ms-transform:matrix(0.266376,0.007459,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.266376,0.007459,-0.006997,0.249902,0,0);}
.m2e_c01032{transform:matrix(0.266606,0.007465,-0.006997,0.249902,0,0);-ms-transform:matrix(0.266606,0.007465,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.266606,0.007465,-0.006997,0.249902,0,0);}
.m62_c01032{transform:matrix(0.267420,0.007488,-0.006997,0.249902,0,0);-ms-transform:matrix(0.267420,0.007488,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.267420,0.007488,-0.006997,0.249902,0,0);}
.m2a_c01032{transform:matrix(0.267465,0.007489,-0.006997,0.249902,0,0);-ms-transform:matrix(0.267465,0.007489,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.267465,0.007489,-0.006997,0.249902,0,0);}
.m58_c01032{transform:matrix(0.267595,0.007493,-0.006997,0.249902,0,0);-ms-transform:matrix(0.267595,0.007493,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.267595,0.007493,-0.006997,0.249902,0,0);}
.md2_c01032{transform:matrix(0.267784,0.008846,-0.008254,0.249864,0,0);-ms-transform:matrix(0.267784,0.008846,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.267784,0.008846,-0.008254,0.249864,0,0);}
.mcc_c01032{transform:matrix(0.268114,0.008857,-0.008254,0.249864,0,0);-ms-transform:matrix(0.268114,0.008857,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.268114,0.008857,-0.008254,0.249864,0,0);}
.mac_c01032{transform:matrix(0.268658,0.008875,-0.008254,0.249864,0,0);-ms-transform:matrix(0.268658,0.008875,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.268658,0.008875,-0.008254,0.249864,0,0);}
.m52_c01032{transform:matrix(0.268725,0.007524,-0.006997,0.249902,0,0);-ms-transform:matrix(0.268725,0.007524,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.268725,0.007524,-0.006997,0.249902,0,0);}
.mce_c01032{transform:matrix(0.269388,0.008899,-0.008254,0.249864,0,0);-ms-transform:matrix(0.269388,0.008899,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.269388,0.008899,-0.008254,0.249864,0,0);}
.m4_c01032{transform:matrix(0.269652,0.008637,-0.008004,0.249872,0,0);-ms-transform:matrix(0.269652,0.008637,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.269652,0.008637,-0.008004,0.249872,0,0);}
.m115_c01032{transform:matrix(0.270285,0.014610,-0.013494,0.249636,0,0);-ms-transform:matrix(0.270285,0.014610,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.270285,0.014610,-0.013494,0.249636,0,0);}
.m104_c01032{transform:matrix(0.270475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270475,0.000000,0.000000,0.250000,0,0);}
.mb3_c01032{transform:matrix(0.270962,0.008951,-0.008254,0.249864,0,0);-ms-transform:matrix(0.270962,0.008951,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.270962,0.008951,-0.008254,0.249864,0,0);}
.m1f_c01032{transform:matrix(0.271494,0.007602,-0.006997,0.249902,0,0);-ms-transform:matrix(0.271494,0.007602,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.271494,0.007602,-0.006997,0.249902,0,0);}
.m106_c01032{transform:matrix(0.272255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272255,0.000000,0.000000,0.250000,0,0);}
.mb7_c01032{transform:matrix(0.273031,0.009019,-0.008254,0.249864,0,0);-ms-transform:matrix(0.273031,0.009019,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.273031,0.009019,-0.008254,0.249864,0,0);}
.m64_c01032{transform:matrix(0.273133,0.007648,-0.006997,0.249902,0,0);-ms-transform:matrix(0.273133,0.007648,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.273133,0.007648,-0.006997,0.249902,0,0);}
.m38_c01032{transform:matrix(0.273138,0.007648,-0.006997,0.249902,0,0);-ms-transform:matrix(0.273138,0.007648,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.273138,0.007648,-0.006997,0.249902,0,0);}
.m109_c01032{transform:matrix(0.273240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273240,0.000000,0.000000,0.250000,0,0);}
.mb9_c01032{transform:matrix(0.273776,0.009044,-0.008254,0.249864,0,0);-ms-transform:matrix(0.273776,0.009044,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.273776,0.009044,-0.008254,0.249864,0,0);}
.m2d_c01032{transform:matrix(0.274093,0.007675,-0.006997,0.249902,0,0);-ms-transform:matrix(0.274093,0.007675,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.274093,0.007675,-0.006997,0.249902,0,0);}
.m6e_c01032{transform:matrix(0.274183,0.007677,-0.006997,0.249902,0,0);-ms-transform:matrix(0.274183,0.007677,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.274183,0.007677,-0.006997,0.249902,0,0);}
.m1d_c01032{transform:matrix(0.274482,0.007686,-0.006997,0.249902,0,0);-ms-transform:matrix(0.274482,0.007686,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.274482,0.007686,-0.006997,0.249902,0,0);}
.mad_c01032{transform:matrix(0.274595,0.009071,-0.008254,0.249864,0,0);-ms-transform:matrix(0.274595,0.009071,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.274595,0.009071,-0.008254,0.249864,0,0);}
.m73_c01032{transform:matrix(0.275752,0.007721,-0.006997,0.249902,0,0);-ms-transform:matrix(0.275752,0.007721,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.275752,0.007721,-0.006997,0.249902,0,0);}
.m8d_c01032{transform:matrix(0.276032,0.007729,-0.006997,0.249902,0,0);-ms-transform:matrix(0.276032,0.007729,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.276032,0.007729,-0.006997,0.249902,0,0);}
.ma3_c01032{transform:matrix(0.276539,0.009135,-0.008254,0.249864,0,0);-ms-transform:matrix(0.276539,0.009135,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.276539,0.009135,-0.008254,0.249864,0,0);}
.mab_c01032{transform:matrix(0.276689,0.009140,-0.008254,0.249864,0,0);-ms-transform:matrix(0.276689,0.009140,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.276689,0.009140,-0.008254,0.249864,0,0);}
.m5b_c01032{transform:matrix(0.276846,0.007752,-0.006997,0.249902,0,0);-ms-transform:matrix(0.276846,0.007752,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.276846,0.007752,-0.006997,0.249902,0,0);}
.m56_c01032{transform:matrix(0.276876,0.007753,-0.006997,0.249902,0,0);-ms-transform:matrix(0.276876,0.007753,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.276876,0.007753,-0.006997,0.249902,0,0);}
.mba_c01032{transform:matrix(0.277109,0.009154,-0.008254,0.249864,0,0);-ms-transform:matrix(0.277109,0.009154,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.277109,0.009154,-0.008254,0.249864,0,0);}
.m7_c01032{transform:matrix(0.277188,0.008879,-0.008004,0.249872,0,0);-ms-transform:matrix(0.277188,0.008879,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.277188,0.008879,-0.008004,0.249872,0,0);}
.mb6_c01032{transform:matrix(0.277274,0.009159,-0.008254,0.249864,0,0);-ms-transform:matrix(0.277274,0.009159,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.277274,0.009159,-0.008254,0.249864,0,0);}
.mc_c01032{transform:matrix(0.277703,0.008895,-0.008004,0.249872,0,0);-ms-transform:matrix(0.277703,0.008895,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.277703,0.008895,-0.008004,0.249872,0,0);}
.m6b_c01032{transform:matrix(0.277936,0.007782,-0.006997,0.249902,0,0);-ms-transform:matrix(0.277936,0.007782,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.277936,0.007782,-0.006997,0.249902,0,0);}
.m2_c01032{transform:matrix(0.278015,0.012802,-0.011499,0.249735,0,0);-ms-transform:matrix(0.278015,0.012802,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.278015,0.012802,-0.011499,0.249735,0,0);}
.m119_c01032{transform:matrix(0.278533,0.015056,-0.013494,0.249636,0,0);-ms-transform:matrix(0.278533,0.015056,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.278533,0.015056,-0.013494,0.249636,0,0);}
.m8_c01032{transform:matrix(0.279687,0.008959,-0.008004,0.249872,0,0);-ms-transform:matrix(0.279687,0.008959,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.279687,0.008959,-0.008004,0.249872,0,0);}
.m93_c01032{transform:matrix(0.280530,0.007855,-0.006997,0.249902,0,0);-ms-transform:matrix(0.280530,0.007855,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.280530,0.007855,-0.006997,0.249902,0,0);}
.m18_c01032{transform:matrix(0.280890,0.007865,-0.006997,0.249902,0,0);-ms-transform:matrix(0.280890,0.007865,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.280890,0.007865,-0.006997,0.249902,0,0);}
.maf_c01032{transform:matrix(0.281956,0.009314,-0.008254,0.249864,0,0);-ms-transform:matrix(0.281956,0.009314,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.281956,0.009314,-0.008254,0.249864,0,0);}
.m5f_c01032{transform:matrix(0.282129,0.007900,-0.006997,0.249902,0,0);-ms-transform:matrix(0.282129,0.007900,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.282129,0.007900,-0.006997,0.249902,0,0);}
.m15_c01032{transform:matrix(0.282824,0.007919,-0.006997,0.249902,0,0);-ms-transform:matrix(0.282824,0.007919,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.282824,0.007919,-0.006997,0.249902,0,0);}
.mb2_c01032{transform:matrix(0.283655,0.009370,-0.008254,0.249864,0,0);-ms-transform:matrix(0.283655,0.009370,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.283655,0.009370,-0.008254,0.249864,0,0);}
.m95_c01032{transform:matrix(0.286198,0.008014,-0.006997,0.249902,0,0);-ms-transform:matrix(0.286198,0.008014,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.286198,0.008014,-0.006997,0.249902,0,0);}
.mb4_c01032{transform:matrix(0.286254,0.009456,-0.008254,0.249864,0,0);-ms-transform:matrix(0.286254,0.009456,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.286254,0.009456,-0.008254,0.249864,0,0);}
.m20_c01032{transform:matrix(0.287302,0.008044,-0.006997,0.249902,0,0);-ms-transform:matrix(0.287302,0.008044,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.287302,0.008044,-0.006997,0.249902,0,0);}
.m105_c01032{transform:matrix(0.288845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288845,0.000000,0.000000,0.250000,0,0);}
.m124_c01032{transform:matrix(0.291843,0.005253,-0.004499,0.249960,0,0);-ms-transform:matrix(0.291843,0.005253,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.291843,0.005253,-0.004499,0.249960,0,0);}
.m10d_c01032{transform:matrix(0.297945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297945,0.000000,0.000000,0.250000,0,0);}
.m127_c01032{transform:matrix(0.302206,0.005440,-0.004499,0.249960,0,0);-ms-transform:matrix(0.302206,0.005440,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.302206,0.005440,-0.004499,0.249960,0,0);}
.m126_c01032{transform:matrix(0.306205,0.005512,-0.004499,0.249960,0,0);-ms-transform:matrix(0.306205,0.005512,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.306205,0.005512,-0.004499,0.249960,0,0);}
.md5_c01032{transform:matrix(0.326407,0.010782,-0.008254,0.249864,0,0);-ms-transform:matrix(0.326407,0.010782,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.326407,0.010782,-0.008254,0.249864,0,0);}
.m83_c01032{transform:matrix(0.327667,0.009175,-0.006997,0.249902,0,0);-ms-transform:matrix(0.327667,0.009175,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.327667,0.009175,-0.006997,0.249902,0,0);}
.m3b_c01032{transform:matrix(0.329611,0.009229,-0.006997,0.249902,0,0);-ms-transform:matrix(0.329611,0.009229,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.329611,0.009229,-0.006997,0.249902,0,0);}
.m68_c01032{transform:matrix(0.348878,0.009769,-0.006997,0.249902,0,0);-ms-transform:matrix(0.348878,0.009769,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.348878,0.009769,-0.006997,0.249902,0,0);}
.mf3_c01032{transform:matrix(0.350982,0.009477,-0.006748,0.249909,0,0);-ms-transform:matrix(0.350982,0.009477,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.350982,0.009477,-0.006748,0.249909,0,0);}
.m3a_c01032{transform:matrix(0.355291,0.009948,-0.006997,0.249902,0,0);-ms-transform:matrix(0.355291,0.009948,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.355291,0.009948,-0.006997,0.249902,0,0);}
.m10a_c01032{transform:matrix(0.371555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371555,0.000000,0.000000,0.250000,0,0);}
.m103_c01032{transform:matrix(0.466880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466880,0.000000,0.000000,0.250000,0,0);}
.v0_c01032{vertical-align:0.000000px;}
.ls0_c01032{letter-spacing:0.000000px;}
.sc__c01032{text-shadow:none;}
.sc0_c01032{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__c01032{-webkit-text-stroke:0px transparent;}
.sc0_c01032{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01032{word-spacing:0.000000px;}
.fc0_c01032{color:transparent;}
.fsc_c01032{font-size:66.000000px;}
.fsf_c01032{font-size:66.010691px;}
.fs1_c01032{font-size:71.964891px;}
.fs7_c01032{font-size:71.967233px;}
.fsb_c01032{font-size:72.000000px;}
.fs2_c01032{font-size:72.028218px;}
.fs8_c01032{font-size:77.964502px;}
.fsa_c01032{font-size:78.028426px;}
.fs3_c01032{font-size:78.030570px;}
.fs6_c01032{font-size:83.961771px;}
.fs10_c01032{font-size:84.000000px;}
.fs9_c01032{font-size:84.030612px;}
.fs4_c01032{font-size:84.032922px;}
.fse_c01032{font-size:84.038505px;}
.fsd_c01032{font-size:89.965163px;}
.fs5_c01032{font-size:96.037625px;}
.fs0_c01032{font-size:120.007020px;}
.y0_c01032{bottom:0.000000px;}
.y125_c01032{bottom:244.323000px;}
.y11f_c01032{bottom:251.789053px;}
.y11e_c01032{bottom:255.593947px;}
.y11d_c01032{bottom:259.935912px;}
.y11c_c01032{bottom:263.687792px;}
.y11b_c01032{bottom:265.862844px;}
.y11a_c01032{bottom:267.450606px;}
.y119_c01032{bottom:274.439934px;}
.y118_c01032{bottom:276.040170px;}
.y117_c01032{bottom:279.222903px;}
.y116_c01032{bottom:282.523815px;}
.y115_c01032{bottom:284.363730px;}
.y114_c01032{bottom:287.914851px;}
.y113_c01032{bottom:292.767237px;}
.y112_c01032{bottom:297.823500px;}
.y124_c01032{bottom:303.485133px;}
.y123_c01032{bottom:305.853681px;}
.y122_c01032{bottom:306.246666px;}
.y121_c01032{bottom:308.001801px;}
.y120_c01032{bottom:308.613000px;}
.y111_c01032{bottom:319.278787px;}
.y110_c01032{bottom:321.647430px;}
.y10f_c01032{bottom:322.792822px;}
.y10e_c01032{bottom:323.955435px;}
.y10d_c01032{bottom:325.934212px;}
.y10c_c01032{bottom:327.445267px;}
.y10b_c01032{bottom:328.612500px;}
.y10a_c01032{bottom:343.632000px;}
.y109_c01032{bottom:356.521500px;}
.y108_c01032{bottom:365.931486px;}
.y107_c01032{bottom:367.004620px;}
.y106_c01032{bottom:368.802979px;}
.y105_c01032{bottom:369.525409px;}
.y104_c01032{bottom:372.622441px;}
.y103_c01032{bottom:374.046643px;}
.y102_c01032{bottom:375.103372px;}
.y101_c01032{bottom:378.577276px;}
.y100_c01032{bottom:379.664587px;}
.yff_c01032{bottom:380.696404px;}
.yfe_c01032{bottom:398.550006px;}
.yfd_c01032{bottom:399.746700px;}
.yfc_c01032{bottom:401.241393px;}
.yfb_c01032{bottom:402.155275px;}
.yfa_c01032{bottom:403.361811px;}
.yf9_c01032{bottom:406.064619px;}
.yf8_c01032{bottom:408.450919px;}
.yf7_c01032{bottom:409.918842px;}
.yf6_c01032{bottom:410.786635px;}
.yf5_c01032{bottom:412.578517px;}
.yf4_c01032{bottom:414.053122px;}
.yf3_c01032{bottom:415.231510px;}
.yf2_c01032{bottom:415.809000px;}
.yf1_c01032{bottom:433.777903px;}
.yf0_c01032{bottom:434.899969px;}
.yef_c01032{bottom:437.582050px;}
.yee_c01032{bottom:438.685405px;}
.yed_c01032{bottom:442.452711px;}
.yec_c01032{bottom:444.641043px;}
.yeb_c01032{bottom:445.438506px;}
.yea_c01032{bottom:447.306789px;}
.ye9_c01032{bottom:449.483489px;}
.ye8_c01032{bottom:450.612336px;}
.ye7_c01032{bottom:452.106687px;}
.ye6_c01032{bottom:453.167508px;}
.ye5_c01032{bottom:468.774592px;}
.ye4_c01032{bottom:471.300901px;}
.ye3_c01032{bottom:472.342728px;}
.ye2_c01032{bottom:473.087847px;}
.ye1_c01032{bottom:474.126109px;}
.ye0_c01032{bottom:476.230750px;}
.ydf_c01032{bottom:477.991164px;}
.yde_c01032{bottom:482.609653px;}
.ydd_c01032{bottom:484.668966px;}
.ydc_c01032{bottom:485.762902px;}
.ydb_c01032{bottom:489.600151px;}
.yda_c01032{bottom:504.334146px;}
.yd9_c01032{bottom:505.349094px;}
.yd8_c01032{bottom:507.382815px;}
.yd7_c01032{bottom:509.825311px;}
.yd6_c01032{bottom:511.208535px;}
.yd5_c01032{bottom:512.220463px;}
.yd4_c01032{bottom:513.954984px;}
.yd3_c01032{bottom:516.642766px;}
.yd2_c01032{bottom:518.361942px;}
.yd1_c01032{bottom:521.057680px;}
.yd0_c01032{bottom:522.778588px;}
.ycf_c01032{bottom:524.142061px;}
.yce_c01032{bottom:536.301475px;}
.ycd_c01032{bottom:537.722157px;}
.ycc_c01032{bottom:538.897350px;}
.ycb_c01032{bottom:542.329842px;}
.yca_c01032{bottom:543.768640px;}
.yc9_c01032{bottom:546.452800px;}
.yc8_c01032{bottom:547.510750px;}
.yc7_c01032{bottom:548.307026px;}
.yc6_c01032{bottom:549.436219px;}
.yc5_c01032{bottom:550.199019px;}
.yc4_c01032{bottom:551.644797px;}
.yc3_c01032{bottom:553.923048px;}
.yc2_c01032{bottom:554.626978px;}
.yc1_c01032{bottom:558.695028px;}
.yc0_c01032{bottom:573.870828px;}
.ybf_c01032{bottom:575.456826px;}
.ybe_c01032{bottom:578.902953px;}
.ybd_c01032{bottom:579.742806px;}
.ybc_c01032{bottom:583.206519px;}
.ybb_c01032{bottom:587.025124px;}
.yba_c01032{bottom:588.199377px;}
.yb9_c01032{bottom:589.753236px;}
.yb8_c01032{bottom:592.808259px;}
.yb7_c01032{bottom:597.023017px;}
.yb6_c01032{bottom:610.182822px;}
.yb5_c01032{bottom:610.828711px;}
.yb4_c01032{bottom:613.888869px;}
.yb3_c01032{bottom:614.511570px;}
.yb2_c01032{bottom:617.522380px;}
.yb1_c01032{bottom:619.192299px;}
.yb0_c01032{bottom:619.812277px;}
.yaf_c01032{bottom:621.486093px;}
.yae_c01032{bottom:622.448647px;}
.yad_c01032{bottom:623.420494px;}
.yac_c01032{bottom:624.428994px;}
.yab_c01032{bottom:626.114145px;}
.yaa_c01032{bottom:627.069967px;}
.ya9_c01032{bottom:628.041022px;}
.ya8_c01032{bottom:629.681119px;}
.ya7_c01032{bottom:646.361737px;}
.ya6_c01032{bottom:649.286742px;}
.ya5_c01032{bottom:650.050230px;}
.ya4_c01032{bottom:651.871879px;}
.ya3_c01032{bottom:652.930734px;}
.ya2_c01032{bottom:654.012061px;}
.ya1_c01032{bottom:655.843215px;}
.ya0_c01032{bottom:657.319701px;}
.y9f_c01032{bottom:660.192136px;}
.y9e_c01032{bottom:663.479036px;}
.y9d_c01032{bottom:664.545018px;}
.y9c_c01032{bottom:666.709257px;}
.y9b_c01032{bottom:667.447500px;}
.y9a_c01032{bottom:684.318486px;}
.y99_c01032{bottom:684.929598px;}
.y98_c01032{bottom:688.469646px;}
.y97_c01032{bottom:689.109666px;}
.y96_c01032{bottom:690.591744px;}
.y95_c01032{bottom:691.452828px;}
.y94_c01032{bottom:692.634216px;}
.y93_c01032{bottom:694.414410px;}
.y92_c01032{bottom:696.521250px;}
.y91_c01032{bottom:697.992984px;}
.y90_c01032{bottom:698.840376px;}
.y8f_c01032{bottom:700.062936px;}
.y8e_c01032{bottom:715.455630px;}
.y8d_c01032{bottom:716.849412px;}
.y8c_c01032{bottom:719.626152px;}
.y8b_c01032{bottom:721.637232px;}
.y8a_c01032{bottom:723.368220px;}
.y89_c01032{bottom:727.121124px;}
.y88_c01032{bottom:728.166582px;}
.y87_c01032{bottom:730.855950px;}
.y86_c01032{bottom:731.886468px;}
.y85_c01032{bottom:734.923656px;}
.y84_c01032{bottom:736.260954px;}
.y83_c01032{bottom:752.679420px;}
.y82_c01032{bottom:754.537752px;}
.y81_c01032{bottom:755.768688px;}
.y80_c01032{bottom:756.434346px;}
.y7f_c01032{bottom:760.405614px;}
.y7e_c01032{bottom:761.648772px;}
.y7d_c01032{bottom:763.198194px;}
.y7c_c01032{bottom:764.129838px;}
.y7b_c01032{bottom:765.965364px;}
.y7a_c01032{bottom:767.167572px;}
.y79_c01032{bottom:769.338846px;}
.y78_c01032{bottom:770.560920px;}
.y77_c01032{bottom:789.071610px;}
.y76_c01032{bottom:789.961224px;}
.y75_c01032{bottom:791.733270px;}
.y74_c01032{bottom:792.660192px;}
.y73_c01032{bottom:793.554888px;}
.y72_c01032{bottom:796.211214px;}
.y71_c01032{bottom:797.383194px;}
.y70_c01032{bottom:798.290574px;}
.y6f_c01032{bottom:801.251778px;}
.y6e_c01032{bottom:802.163790px;}
.y6d_c01032{bottom:803.034588px;}
.y6c_c01032{bottom:804.489144px;}
.y6b_c01032{bottom:805.674816px;}
.y6a_c01032{bottom:823.466412px;}
.y69_c01032{bottom:824.372184px;}
.y68_c01032{bottom:826.869588px;}
.y67_c01032{bottom:828.699234px;}
.y66_c01032{bottom:830.902134px;}
.y65_c01032{bottom:832.133280px;}
.y64_c01032{bottom:833.935878px;}
.y63_c01032{bottom:837.934404px;}
.y62_c01032{bottom:839.176092px;}
.y61_c01032{bottom:840.090474px;}
.y60_c01032{bottom:841.327500px;}
.y5f_c01032{bottom:862.328610px;}
.y5e_c01032{bottom:863.416950px;}
.y5d_c01032{bottom:864.543126px;}
.y5c_c01032{bottom:865.362948px;}
.y5b_c01032{bottom:866.988564px;}
.y5a_c01032{bottom:868.095660px;}
.y59_c01032{bottom:870.068322px;}
.y58_c01032{bottom:870.865830px;}
.y57_c01032{bottom:872.768490px;}
.y56_c01032{bottom:874.118406px;}
.y55_c01032{bottom:876.339948px;}
.y54_c01032{bottom:896.278188px;}
.y53_c01032{bottom:897.218232px;}
.y52_c01032{bottom:900.311826px;}
.y51_c01032{bottom:901.250148px;}
.y50_c01032{bottom:902.185530px;}
.y4f_c01032{bottom:904.356384px;}
.y4e_c01032{bottom:905.863134px;}
.y4d_c01032{bottom:906.801918px;}
.y4c_c01032{bottom:908.064564px;}
.y4b_c01032{bottom:910.182246px;}
.y4a_c01032{bottom:911.089320px;}
.y49_c01032{bottom:913.883328px;}
.y48_c01032{bottom:932.021262px;}
.y47_c01032{bottom:933.959700px;}
.y46_c01032{bottom:936.154758px;}
.y45_c01032{bottom:936.713772px;}
.y44_c01032{bottom:939.733734px;}
.y43_c01032{bottom:940.841364px;}
.y42_c01032{bottom:943.832784px;}
.y41_c01032{bottom:944.392764px;}
.y40_c01032{bottom:947.107308px;}
.y3f_c01032{bottom:966.095268px;}
.y3e_c01032{bottom:967.877076px;}
.y3d_c01032{bottom:968.464470px;}
.y3c_c01032{bottom:969.600972px;}
.y3b_c01032{bottom:970.468812px;}
.y3a_c01032{bottom:971.349420px;}
.y39_c01032{bottom:972.492864px;}
.y38_c01032{bottom:973.342296px;}
.y37_c01032{bottom:974.520780px;}
.y36_c01032{bottom:977.633052px;}
.y35_c01032{bottom:979.354176px;}
.y34_c01032{bottom:980.494416px;}
.y33_c01032{bottom:981.326112px;}
.y32_c01032{bottom:982.488678px;}
.y31_c01032{bottom:1000.560618px;}
.y30_c01032{bottom:1001.173326px;}
.y2f_c01032{bottom:1003.260174px;}
.y2e_c01032{bottom:1005.659628px;}
.y2d_c01032{bottom:1006.527222px;}
.y2c_c01032{bottom:1007.155050px;}
.y2b_c01032{bottom:1009.234410px;}
.y2a_c01032{bottom:1010.423946px;}
.y29_c01032{bottom:1011.605754px;}
.y28_c01032{bottom:1013.671422px;}
.y27_c01032{bottom:1014.282114px;}
.y26_c01032{bottom:1015.704108px;}
.y25_c01032{bottom:1016.602878px;}
.y24_c01032{bottom:1018.685892px;}
.y23_c01032{bottom:1036.912272px;}
.y22_c01032{bottom:1038.322152px;}
.y21_c01032{bottom:1041.259206px;}
.y20_c01032{bottom:1043.534742px;}
.y1f_c01032{bottom:1044.693432px;}
.y1e_c01032{bottom:1047.260322px;}
.y1d_c01032{bottom:1049.219814px;}
.y1c_c01032{bottom:1051.509420px;}
.y1b_c01032{bottom:1052.665548px;}
.y1a_c01032{bottom:1053.804444px;}
.y19_c01032{bottom:1074.202704px;}
.y18_c01032{bottom:1075.110198px;}
.y17_c01032{bottom:1076.963154px;}
.y16_c01032{bottom:1079.490168px;}
.y15_c01032{bottom:1081.598988px;}
.y14_c01032{bottom:1082.841096px;}
.y13_c01032{bottom:1083.771690px;}
.y12_c01032{bottom:1084.694304px;}
.y11_c01032{bottom:1085.939730px;}
.y10_c01032{bottom:1087.756188px;}
.yf_c01032{bottom:1089.887478px;}
.ye_c01032{bottom:1090.809000px;}
.yd_c01032{bottom:1109.897028px;}
.yc_c01032{bottom:1110.989028px;}
.yb_c01032{bottom:1112.048724px;}
.ya_c01032{bottom:1114.489476px;}
.y9_c01032{bottom:1117.383444px;}
.y8_c01032{bottom:1121.206500px;}
.y7_c01032{bottom:1123.316340px;}
.y6_c01032{bottom:1124.037300px;}
.y5_c01032{bottom:1126.512900px;}
.y4_c01032{bottom:1128.610500px;}
.y3_c01032{bottom:1192.357407px;}
.y2_c01032{bottom:1194.338397px;}
.y1_c01032{bottom:1195.579500px;}
.he_c01032{height:66.000000px;}
.h11_c01032{height:66.010691px;}
.h3_c01032{height:71.964891px;}
.h9_c01032{height:71.967233px;}
.hd_c01032{height:72.000000px;}
.h4_c01032{height:72.028218px;}
.ha_c01032{height:77.964502px;}
.hc_c01032{height:78.028426px;}
.h5_c01032{height:78.030570px;}
.h8_c01032{height:83.961771px;}
.h12_c01032{height:84.000000px;}
.hb_c01032{height:84.030612px;}
.h6_c01032{height:84.032922px;}
.h10_c01032{height:84.038505px;}
.hf_c01032{height:89.965163px;}
.h7_c01032{height:96.037625px;}
.h2_c01032{height:120.007020px;}
.h0_c01032{height:1246.320000px;}
.h1_c01032{height:1246.500000px;}
.w1_c01032{width:887.250000px;}
.w0_c01032{width:887.490000px;}
.x0_c01032{left:0.000000px;}
.xca_c01032{left:150.413810px;}
.xbf_c01032{left:151.740000px;}
.xb1_c01032{left:152.748000px;}
.x9e_c01032{left:154.422340px;}
.x92_c01032{left:155.697218px;}
.x79_c01032{left:157.941024px;}
.x68_c01032{left:160.362318px;}
.x53_c01032{left:161.983500px;}
.x3f_c01032{left:163.089924px;}
.x2d_c01032{left:165.498756px;}
.x19_c01032{left:167.611188px;}
.x4_c01032{left:169.249500px;}
.xb2_c01032{left:174.136500px;}
.x80_c01032{left:179.797629px;}
.xb8_c01032{left:184.533467px;}
.xae_c01032{left:186.404889px;}
.x9f_c01032{left:198.377764px;}
.xe_c01032{left:202.432500px;}
.x69_c01032{left:204.007818px;}
.x54_c01032{left:206.163000px;}
.x2e_c01032{left:210.235776px;}
.x1a_c01032{left:211.395624px;}
.xcb_c01032{left:215.299872px;}
.xb3_c01032{left:217.780500px;}
.xaf_c01032{left:230.325987px;}
.x5_c01032{left:234.733950px;}
.x55_c01032{left:238.819500px;}
.x2f_c01032{left:242.244582px;}
.x21_c01032{left:243.989694px;}
.x81_c01032{left:245.315046px;}
.xcc_c01032{left:247.906989px;}
.xc0_c01032{left:250.020000px;}
.x49_c01032{left:251.883438px;}
.xa0_c01032{left:253.834918px;}
.x1b_c01032{left:255.849102px;}
.x5e_c01032{left:259.967898px;}
.x40_c01032{left:262.875924px;}
.xb4_c01032{left:272.395500px;}
.x37_c01032{left:274.568850px;}
.x88_c01032{left:276.208455px;}
.x22_c01032{left:277.268118px;}
.xf_c01032{left:278.550000px;}
.x6a_c01032{left:281.553318px;}
.x56_c01032{left:283.165500px;}
.x30_c01032{left:286.077018px;}
.x7a_c01032{left:289.094178px;}
.x5f_c01032{left:292.247322px;}
.x41_c01032{left:295.271424px;}
.x38_c01032{left:296.980740px;}
.x72_c01032{left:301.674984px;}
.xd0_c01032{left:303.226500px;}
.x4a_c01032{left:305.884974px;}
.xa9_c01032{left:307.783857px;}
.x6_c01032{left:312.019087px;}
.x6b_c01032{left:324.489318px;}
.x60_c01032{left:326.052288px;}
.xb0_c01032{left:327.442053px;}
.x23_c01032{left:329.930088px;}
.x89_c01032{left:332.308848px;}
.x7_c01032{left:334.526558px;}
.xb5_c01032{left:338.761500px;}
.xa1_c01032{left:340.710204px;}
.x10_c01032{left:343.423500px;}
.x24_c01032{left:352.544718px;}
.xb9_c01032{left:360.081774px;}
.x93_c01032{left:363.239292px;}
.x8a_c01032{left:365.881561px;}
.x7b_c01032{left:367.126362px;}
.x42_c01032{left:370.902924px;}
.xaa_c01032{left:372.077629px;}
.x82_c01032{left:377.088641px;}
.x4b_c01032{left:381.986358px;}
.x11_c01032{left:387.903000px;}
.x6c_c01032{left:390.043818px;}
.xa2_c01032{left:396.114910px;}
.x8b_c01032{left:398.253877px;}
.x8_c01032{left:400.393125px;}
.xc1_c01032{left:403.380000px;}
.xba_c01032{left:404.601780px;}
.x1_c01032{left:406.480500px;}
.x94_c01032{left:407.599464px;}
.x4c_c01032{left:413.900046px;}
.x39_c01032{left:416.630778px;}
.x1c_c01032{left:419.236716px;}
.x12_c01032{left:420.853500px;}
.x6d_c01032{left:423.316818px;}
.x57_c01032{left:425.970000px;}
.x25_c01032{left:429.052860px;}
.x8c_c01032{left:430.299471px;}
.x2_c01032{left:433.434019px;}
.x61_c01032{left:435.723354px;}
.x95_c01032{left:441.103697px;}
.x43_c01032{left:449.525424px;}
.x13_c01032{left:454.089000px;}
.x73_c01032{left:455.460132px;}
.x3a_c01032{left:460.906974px;}
.x83_c01032{left:464.045097px;}
.xcd_c01032{left:467.090195px;}
.x62_c01032{left:469.309278px;}
.x26_c01032{left:472.815078px;}
.x3_c01032{left:476.455954px;}
.x6e_c01032{left:478.653318px;}
.xa3_c01032{left:482.703933px;}
.x99_c01032{left:484.997489px;}
.x8d_c01032{left:486.056708px;}
.x58_c01032{left:490.348500px;}
.x4d_c01032{left:492.823182px;}
.x14_c01032{left:498.450000px;}
.xbb_c01032{left:501.404739px;}
.x44_c01032{left:503.337924px;}
.x8e_c01032{left:506.687088px;}
.x7c_c01032{left:508.689810px;}
.x63_c01032{left:512.720496px;}
.x27_c01032{left:516.853296px;}
.x1d_c01032{left:517.934718px;}
.x9_c01032{left:519.744154px;}
.x6f_c01032{left:523.051818px;}
.x59_c01032{left:534.318000px;}
.x4e_c01032{left:537.133920px;}
.xa4_c01032{left:538.573174px;}
.xc8_c01032{left:539.752500px;}
.xce_c01032{left:543.589794px;}
.x31_c01032{left:549.995802px;}
.xc2_c01032{left:557.187000px;}
.x1e_c01032{left:562.479696px;}
.x7d_c01032{left:563.604864px;}
.xa5_c01032{left:571.205190px;}
.x15_c01032{left:573.765000px;}
.x74_c01032{left:576.517968px;}
.xbc_c01032{left:580.201128px;}
.x3b_c01032{left:581.683596px;}
.x7e_c01032{left:587.320536px;}
.xc3_c01032{left:590.503150px;}
.x28_c01032{left:593.850438px;}
.x9a_c01032{left:594.920788px;}
.x84_c01032{left:596.911098px;}
.x4f_c01032{left:602.161380px;}
.x3c_c01032{left:604.060986px;}
.xa_c01032{left:610.090218px;}
.x64_c01032{left:611.127768px;}
.x5a_c01032{left:612.993000px;}
.x45_c01032{left:614.274924px;}
.xa6_c01032{left:615.758515px;}
.x29_c01032{left:617.077068px;}
.x32_c01032{left:627.859170px;}
.x85_c01032{left:628.965512px;}
.x75_c01032{left:632.334264px;}
.xc4_c01032{left:633.632977px;}
.x50_c01032{left:634.925610px;}
.x9b_c01032{left:637.205574px;}
.x65_c01032{left:644.260692px;}
.x46_c01032{left:647.786424px;}
.x96_c01032{left:648.979887px;}
.x1f_c01032{left:650.021610px;}
.xb6_c01032{left:658.441500px;}
.x33_c01032{left:661.266060px;}
.x8f_c01032{left:662.509020px;}
.x16_c01032{left:664.015500px;}
.xab_c01032{left:669.365904px;}
.x97_c01032{left:672.951306px;}
.x5b_c01032{left:678.337500px;}
.x51_c01032{left:679.971390px;}
.x86_c01032{left:684.111810px;}
.xb_c01032{left:686.287444px;}
.x70_c01032{left:688.656318px;}
.xc5_c01032{left:690.112941px;}
.x3d_c01032{left:691.891878px;}
.xa7_c01032{left:694.467930px;}
.x76_c01032{left:697.188804px;}
.x34_c01032{left:704.964996px;}
.x87_c01032{left:707.224674px;}
.xcf_c01032{left:709.681874px;}
.xc_c01032{left:719.369829px;}
.x52_c01032{left:723.505044px;}
.xac_c01032{left:725.141906px;}
.x35_c01032{left:727.551756px;}
.x17_c01032{left:730.192500px;}
.x71_c01032{left:732.618318px;}
.x2a_c01032{left:738.046428px;}
.x7f_c01032{left:741.044820px;}
.x66_c01032{left:744.244506px;}
.xb7_c01032{left:747.648000px;}
.xd_c01032{left:753.460704px;}
.xc6_c01032{left:755.989998px;}
.x47_c01032{left:758.271924px;}
.xa8_c01032{left:759.985158px;}
.x18_c01032{left:762.603000px;}
.x5c_c01032{left:767.530500px;}
.x3e_c01032{left:769.431888px;}
.x98_c01032{left:771.325842px;}
.x9c_c01032{left:772.605579px;}
.x67_c01032{left:777.195930px;}
.xbd_c01032{left:780.030000px;}
.x90_c01032{left:785.125420px;}
.x77_c01032{left:786.761286px;}
.xc9_c01032{left:788.758245px;}
.x48_c01032{left:791.844924px;}
.x36_c01032{left:796.066578px;}
.x5d_c01032{left:799.879500px;}
.xad_c01032{left:804.027068px;}
.x91_c01032{left:806.631024px;}
.xbe_c01032{left:810.810000px;}
.x9d_c01032{left:814.341913px;}
.x2b_c01032{left:815.364612px;}
.x20_c01032{left:817.171434px;}
.xc7_c01032{left:823.597822px;}
.x78_c01032{left:831.714006px;}
.x2c_c01032{left:838.051242px;}
@media print{
.v0_c01032{vertical-align:0.000000pt;}
.ls0_c01032{letter-spacing:0.000000pt;}
.ws0_c01032{word-spacing:0.000000pt;}
.fsc_c01032{font-size:58.666667pt;}
.fsf_c01032{font-size:58.676170pt;}
.fs1_c01032{font-size:63.968792pt;}
.fs7_c01032{font-size:63.970873pt;}
.fsb_c01032{font-size:64.000000pt;}
.fs2_c01032{font-size:64.025083pt;}
.fs8_c01032{font-size:69.301779pt;}
.fsa_c01032{font-size:69.358601pt;}
.fs3_c01032{font-size:69.360507pt;}
.fs6_c01032{font-size:74.632686pt;}
.fs10_c01032{font-size:74.666667pt;}
.fs9_c01032{font-size:74.693878pt;}
.fs4_c01032{font-size:74.695930pt;}
.fse_c01032{font-size:74.700893pt;}
.fsd_c01032{font-size:79.969034pt;}
.fs5_c01032{font-size:85.366777pt;}
.fs0_c01032{font-size:106.672906pt;}
.y0_c01032{bottom:0.000000pt;}
.y125_c01032{bottom:217.176000pt;}
.y11f_c01032{bottom:223.812492pt;}
.y11e_c01032{bottom:227.194620pt;}
.y11d_c01032{bottom:231.054144pt;}
.y11c_c01032{bottom:234.389148pt;}
.y11b_c01032{bottom:236.322528pt;}
.y11a_c01032{bottom:237.733872pt;}
.y119_c01032{bottom:243.946608pt;}
.y118_c01032{bottom:245.369040pt;}
.y117_c01032{bottom:248.198136pt;}
.y116_c01032{bottom:251.132280pt;}
.y115_c01032{bottom:252.767760pt;}
.y114_c01032{bottom:255.924312pt;}
.y113_c01032{bottom:260.237544pt;}
.y112_c01032{bottom:264.732000pt;}
.y124_c01032{bottom:269.764563pt;}
.y123_c01032{bottom:271.869939pt;}
.y122_c01032{bottom:272.219259pt;}
.y121_c01032{bottom:273.779379pt;}
.y120_c01032{bottom:274.322667pt;}
.y111_c01032{bottom:283.803367pt;}
.y110_c01032{bottom:285.908827pt;}
.y10f_c01032{bottom:286.926953pt;}
.y10e_c01032{bottom:287.960387pt;}
.y10d_c01032{bottom:289.719300pt;}
.y10c_c01032{bottom:291.062460pt;}
.y10b_c01032{bottom:292.100000pt;}
.y10a_c01032{bottom:305.450667pt;}
.y109_c01032{bottom:316.908000pt;}
.y108_c01032{bottom:325.272432pt;}
.y107_c01032{bottom:326.226329pt;}
.y106_c01032{bottom:327.824871pt;}
.y105_c01032{bottom:328.467031pt;}
.y104_c01032{bottom:331.219948pt;}
.y103_c01032{bottom:332.485905pt;}
.y102_c01032{bottom:333.425220pt;}
.y101_c01032{bottom:336.513135pt;}
.y100_c01032{bottom:337.479633pt;}
.yff_c01032{bottom:338.396804pt;}
.yfe_c01032{bottom:354.266672pt;}
.yfd_c01032{bottom:355.330400pt;}
.yfc_c01032{bottom:356.659016pt;}
.yfb_c01032{bottom:357.471356pt;}
.yfa_c01032{bottom:358.543832pt;}
.yf9_c01032{bottom:360.946328pt;}
.yf8_c01032{bottom:363.067484pt;}
.yf7_c01032{bottom:364.372304pt;}
.yf6_c01032{bottom:365.143676pt;}
.yf5_c01032{bottom:366.736460pt;}
.yf4_c01032{bottom:368.047220pt;}
.yf3_c01032{bottom:369.094676pt;}
.yf2_c01032{bottom:369.608000pt;}
.yf1_c01032{bottom:385.580359pt;}
.yf0_c01032{bottom:386.577751pt;}
.yef_c01032{bottom:388.961823pt;}
.yee_c01032{bottom:389.942583pt;}
.yed_c01032{bottom:393.291299pt;}
.yec_c01032{bottom:395.236483pt;}
.yeb_c01032{bottom:395.945339pt;}
.yea_c01032{bottom:397.606035pt;}
.ye9_c01032{bottom:399.540879pt;}
.ye8_c01032{bottom:400.544299pt;}
.ye7_c01032{bottom:401.872611pt;}
.ye6_c01032{bottom:402.815563pt;}
.ye5_c01032{bottom:416.688527pt;}
.ye4_c01032{bottom:418.934135pt;}
.ye3_c01032{bottom:419.860203pt;}
.ye2_c01032{bottom:420.522531pt;}
.ye1_c01032{bottom:421.445431pt;}
.ye0_c01032{bottom:423.316223pt;}
.ydf_c01032{bottom:424.881035pt;}
.yde_c01032{bottom:428.986359pt;}
.ydd_c01032{bottom:430.816859pt;}
.ydc_c01032{bottom:431.789247pt;}
.ydb_c01032{bottom:435.200135pt;}
.yda_c01032{bottom:448.297019pt;}
.yd9_c01032{bottom:449.199195pt;}
.yd8_c01032{bottom:451.006947pt;}
.yd7_c01032{bottom:453.178055pt;}
.yd6_c01032{bottom:454.407587pt;}
.yd5_c01032{bottom:455.307079pt;}
.yd4_c01032{bottom:456.848875pt;}
.yd3_c01032{bottom:459.238015pt;}
.yd2_c01032{bottom:460.766171pt;}
.yd1_c01032{bottom:463.162383pt;}
.yd0_c01032{bottom:464.692079pt;}
.ycf_c01032{bottom:465.904055pt;}
.yce_c01032{bottom:476.712423pt;}
.ycd_c01032{bottom:477.975251pt;}
.ycc_c01032{bottom:479.019867pt;}
.ycb_c01032{bottom:482.070971pt;}
.yca_c01032{bottom:483.349903pt;}
.yc9_c01032{bottom:485.735823pt;}
.yc8_c01032{bottom:486.676223pt;}
.yc7_c01032{bottom:487.384023pt;}
.yc6_c01032{bottom:488.387751pt;}
.yc5_c01032{bottom:489.065795pt;}
.yc4_c01032{bottom:490.350931pt;}
.yc3_c01032{bottom:492.376043pt;}
.yc2_c01032{bottom:493.001759pt;}
.yc1_c01032{bottom:496.617803pt;}
.yc0_c01032{bottom:510.107403pt;}
.ybf_c01032{bottom:511.517179pt;}
.ybe_c01032{bottom:514.580403pt;}
.ybd_c01032{bottom:515.326939pt;}
.ybc_c01032{bottom:518.405795pt;}
.ybb_c01032{bottom:521.800111pt;}
.yba_c01032{bottom:522.843891pt;}
.yb9_c01032{bottom:524.225099pt;}
.yb8_c01032{bottom:526.940675pt;}
.yb7_c01032{bottom:530.687127pt;}
.yb6_c01032{bottom:542.384731pt;}
.yb5_c01032{bottom:542.958855pt;}
.yb4_c01032{bottom:545.678995pt;}
.yb3_c01032{bottom:546.232507pt;}
.yb2_c01032{bottom:548.908783pt;}
.yb1_c01032{bottom:550.393155pt;}
.yb0_c01032{bottom:550.944247pt;}
.yaf_c01032{bottom:552.432083pt;}
.yae_c01032{bottom:553.287687pt;}
.yad_c01032{bottom:554.151551pt;}
.yac_c01032{bottom:555.047995pt;}
.yab_c01032{bottom:556.545907pt;}
.yaa_c01032{bottom:557.395527pt;}
.ya9_c01032{bottom:558.258687pt;}
.ya8_c01032{bottom:559.716551pt;}
.ya7_c01032{bottom:574.543767pt;}
.ya6_c01032{bottom:577.143771pt;}
.ya5_c01032{bottom:577.822427pt;}
.ya4_c01032{bottom:579.441671pt;}
.ya3_c01032{bottom:580.382875pt;}
.ya2_c01032{bottom:581.344055pt;}
.ya1_c01032{bottom:582.971747pt;}
.ya0_c01032{bottom:584.284179pt;}
.y9f_c01032{bottom:586.837455pt;}
.y9e_c01032{bottom:589.759143pt;}
.y9d_c01032{bottom:590.706683pt;}
.y9c_c01032{bottom:592.630451pt;}
.y9b_c01032{bottom:593.286667pt;}
.y9a_c01032{bottom:608.283099pt;}
.y99_c01032{bottom:608.826309pt;}
.y98_c01032{bottom:611.973019pt;}
.y97_c01032{bottom:612.541925pt;}
.y96_c01032{bottom:613.859328pt;}
.y95_c01032{bottom:614.624736pt;}
.y94_c01032{bottom:615.674859pt;}
.y93_c01032{bottom:617.257253pt;}
.y92_c01032{bottom:619.130000pt;}
.y91_c01032{bottom:620.438208pt;}
.y90_c01032{bottom:621.191445pt;}
.y8f_c01032{bottom:622.278165pt;}
.y8e_c01032{bottom:635.960560pt;}
.y8d_c01032{bottom:637.199477pt;}
.y8c_c01032{bottom:639.667691pt;}
.y8b_c01032{bottom:641.455317pt;}
.y8a_c01032{bottom:642.993973pt;}
.y89_c01032{bottom:646.329888pt;}
.y88_c01032{bottom:647.259184pt;}
.y87_c01032{bottom:649.649733pt;}
.y86_c01032{bottom:650.565749pt;}
.y85_c01032{bottom:653.265472pt;}
.y84_c01032{bottom:654.454181pt;}
.y83_c01032{bottom:669.048373pt;}
.y82_c01032{bottom:670.700224pt;}
.y81_c01032{bottom:671.794389pt;}
.y80_c01032{bottom:672.386085pt;}
.y7f_c01032{bottom:675.916101pt;}
.y7e_c01032{bottom:677.021131pt;}
.y7d_c01032{bottom:678.398395pt;}
.y7c_c01032{bottom:679.226523pt;}
.y7b_c01032{bottom:680.858101pt;}
.y7a_c01032{bottom:681.926731pt;}
.y79_c01032{bottom:683.856752pt;}
.y78_c01032{bottom:684.943040pt;}
.y77_c01032{bottom:701.396987pt;}
.y76_c01032{bottom:702.187755pt;}
.y75_c01032{bottom:703.762907pt;}
.y74_c01032{bottom:704.586837pt;}
.y73_c01032{bottom:705.382123pt;}
.y72_c01032{bottom:707.743301pt;}
.y71_c01032{bottom:708.785061pt;}
.y70_c01032{bottom:709.591621pt;}
.y6f_c01032{bottom:712.223803pt;}
.y6e_c01032{bottom:713.034480pt;}
.y6d_c01032{bottom:713.808523pt;}
.y6c_c01032{bottom:715.101461pt;}
.y6b_c01032{bottom:716.155392pt;}
.y6a_c01032{bottom:731.970144pt;}
.y69_c01032{bottom:732.775275pt;}
.y68_c01032{bottom:734.995189pt;}
.y67_c01032{bottom:736.621541pt;}
.y66_c01032{bottom:738.579675pt;}
.y65_c01032{bottom:739.674027pt;}
.y64_c01032{bottom:741.276336pt;}
.y63_c01032{bottom:744.830581pt;}
.y62_c01032{bottom:745.934304pt;}
.y61_c01032{bottom:746.747088pt;}
.y60_c01032{bottom:747.846667pt;}
.y5f_c01032{bottom:766.514320pt;}
.y5e_c01032{bottom:767.481733pt;}
.y5d_c01032{bottom:768.482779pt;}
.y5c_c01032{bottom:769.211509pt;}
.y5b_c01032{bottom:770.656501pt;}
.y5a_c01032{bottom:771.640587pt;}
.y59_c01032{bottom:773.394064pt;}
.y58_c01032{bottom:774.102960pt;}
.y57_c01032{bottom:775.794213pt;}
.y56_c01032{bottom:776.994139pt;}
.y55_c01032{bottom:778.968843pt;}
.y54_c01032{bottom:796.691723pt;}
.y53_c01032{bottom:797.527317pt;}
.y52_c01032{bottom:800.277179pt;}
.y51_c01032{bottom:801.111243pt;}
.y50_c01032{bottom:801.942693pt;}
.y4f_c01032{bottom:803.872341pt;}
.y4e_c01032{bottom:805.211675pt;}
.y4d_c01032{bottom:806.046149pt;}
.y4c_c01032{bottom:807.168501pt;}
.y4b_c01032{bottom:809.050885pt;}
.y4a_c01032{bottom:809.857173pt;}
.y49_c01032{bottom:812.340736pt;}
.y48_c01032{bottom:828.463344pt;}
.y47_c01032{bottom:830.186400pt;}
.y46_c01032{bottom:832.137563pt;}
.y45_c01032{bottom:832.634464pt;}
.y44_c01032{bottom:835.318875pt;}
.y43_c01032{bottom:836.303435pt;}
.y42_c01032{bottom:838.962475pt;}
.y41_c01032{bottom:839.460235pt;}
.y40_c01032{bottom:841.873163pt;}
.y3f_c01032{bottom:858.751349pt;}
.y3e_c01032{bottom:860.335179pt;}
.y3d_c01032{bottom:860.857307pt;}
.y3c_c01032{bottom:861.867531pt;}
.y3b_c01032{bottom:862.638944pt;}
.y3a_c01032{bottom:863.421707pt;}
.y39_c01032{bottom:864.438101pt;}
.y38_c01032{bottom:865.193152pt;}
.y37_c01032{bottom:866.240693pt;}
.y36_c01032{bottom:869.007157pt;}
.y35_c01032{bottom:870.537045pt;}
.y34_c01032{bottom:871.550592pt;}
.y33_c01032{bottom:872.289877pt;}
.y32_c01032{bottom:873.323269pt;}
.y31_c01032{bottom:889.387216pt;}
.y30_c01032{bottom:889.931845pt;}
.y2f_c01032{bottom:891.786821pt;}
.y2e_c01032{bottom:893.919669pt;}
.y2d_c01032{bottom:894.690864pt;}
.y2c_c01032{bottom:895.248933pt;}
.y2b_c01032{bottom:897.097253pt;}
.y2a_c01032{bottom:898.154619pt;}
.y29_c01032{bottom:899.205115pt;}
.y28_c01032{bottom:901.041264pt;}
.y27_c01032{bottom:901.584101pt;}
.y26_c01032{bottom:902.848096pt;}
.y25_c01032{bottom:903.647003pt;}
.y24_c01032{bottom:905.498571pt;}
.y23_c01032{bottom:921.699797pt;}
.y22_c01032{bottom:922.953024pt;}
.y21_c01032{bottom:925.563739pt;}
.y20_c01032{bottom:927.586437pt;}
.y1f_c01032{bottom:928.616384pt;}
.y1e_c01032{bottom:930.898064pt;}
.y1d_c01032{bottom:932.639835pt;}
.y1c_c01032{bottom:934.675040pt;}
.y1b_c01032{bottom:935.702709pt;}
.y1a_c01032{bottom:936.715061pt;}
.y19_c01032{bottom:954.846848pt;}
.y18_c01032{bottom:955.653509pt;}
.y17_c01032{bottom:957.300581pt;}
.y16_c01032{bottom:959.546816pt;}
.y15_c01032{bottom:961.421323pt;}
.y14_c01032{bottom:962.525419pt;}
.y13_c01032{bottom:963.352613pt;}
.y12_c01032{bottom:964.172715pt;}
.y11_c01032{bottom:965.279760pt;}
.y10_c01032{bottom:966.894389pt;}
.yf_c01032{bottom:968.788869pt;}
.ye_c01032{bottom:969.608000pt;}
.yd_c01032{bottom:986.575136pt;}
.yc_c01032{bottom:987.545803pt;}
.yb_c01032{bottom:988.487755pt;}
.ya_c01032{bottom:990.657312pt;}
.y9_c01032{bottom:993.229728pt;}
.y8_c01032{bottom:996.628000pt;}
.y7_c01032{bottom:998.503413pt;}
.y6_c01032{bottom:999.144267pt;}
.y5_c01032{bottom:1001.344800pt;}
.y4_c01032{bottom:1003.209333pt;}
.y3_c01032{bottom:1059.873251pt;}
.y2_c01032{bottom:1061.634131pt;}
.y1_c01032{bottom:1062.737333pt;}
.he_c01032{height:58.666667pt;}
.h11_c01032{height:58.676170pt;}
.h3_c01032{height:63.968792pt;}
.h9_c01032{height:63.970873pt;}
.hd_c01032{height:64.000000pt;}
.h4_c01032{height:64.025083pt;}
.ha_c01032{height:69.301779pt;}
.hc_c01032{height:69.358601pt;}
.h5_c01032{height:69.360507pt;}
.h8_c01032{height:74.632686pt;}
.h12_c01032{height:74.666667pt;}
.hb_c01032{height:74.693878pt;}
.h6_c01032{height:74.695930pt;}
.h10_c01032{height:74.700893pt;}
.hf_c01032{height:79.969034pt;}
.h7_c01032{height:85.366777pt;}
.h2_c01032{height:106.672906pt;}
.h0_c01032{height:1107.840000pt;}
.h1_c01032{height:1108.000000pt;}
.w1_c01032{width:788.666667pt;}
.w0_c01032{width:788.880000pt;}
.x0_c01032{left:0.000000pt;}
.xca_c01032{left:133.701164pt;}
.xbf_c01032{left:134.880000pt;}
.xb1_c01032{left:135.776000pt;}
.x9e_c01032{left:137.264303pt;}
.x92_c01032{left:138.397527pt;}
.x79_c01032{left:140.392021pt;}
.x68_c01032{left:142.544283pt;}
.x53_c01032{left:143.985333pt;}
.x3f_c01032{left:144.968821pt;}
.x2d_c01032{left:147.110005pt;}
.x19_c01032{left:148.987723pt;}
.x4_c01032{left:150.444000pt;}
.xb2_c01032{left:154.788000pt;}
.x80_c01032{left:159.820115pt;}
.xb8_c01032{left:164.029748pt;}
.xae_c01032{left:165.693235pt;}
.x9f_c01032{left:176.335791pt;}
.xe_c01032{left:179.940000pt;}
.x69_c01032{left:181.340283pt;}
.x54_c01032{left:183.256000pt;}
.x2e_c01032{left:186.876245pt;}
.x1a_c01032{left:187.907221pt;}
.xcb_c01032{left:191.377664pt;}
.xb3_c01032{left:193.582667pt;}
.xaf_c01032{left:204.734211pt;}
.x5_c01032{left:208.652400pt;}
.x55_c01032{left:212.284000pt;}
.x2f_c01032{left:215.328517pt;}
.x21_c01032{left:216.879728pt;}
.x81_c01032{left:218.057819pt;}
.xcc_c01032{left:220.361768pt;}
.xc0_c01032{left:222.240000pt;}
.x49_c01032{left:223.896389pt;}
.xa0_c01032{left:225.631039pt;}
.x1b_c01032{left:227.421424pt;}
.x5e_c01032{left:231.082576pt;}
.x40_c01032{left:233.667488pt;}
.xb4_c01032{left:242.129333pt;}
.x37_c01032{left:244.061200pt;}
.x88_c01032{left:245.518627pt;}
.x22_c01032{left:246.460549pt;}
.xf_c01032{left:247.600000pt;}
.x6a_c01032{left:250.269616pt;}
.x56_c01032{left:251.702667pt;}
.x30_c01032{left:254.290683pt;}
.x7a_c01032{left:256.972603pt;}
.x5f_c01032{left:259.775397pt;}
.x41_c01032{left:262.463488pt;}
.x38_c01032{left:263.982880pt;}
.x72_c01032{left:268.155541pt;}
.xd0_c01032{left:269.534667pt;}
.x4a_c01032{left:271.897755pt;}
.xa9_c01032{left:273.585651pt;}
.x6_c01032{left:277.350300pt;}
.x6b_c01032{left:288.434949pt;}
.x60_c01032{left:289.824256pt;}
.xb0_c01032{left:291.059603pt;}
.x23_c01032{left:293.271189pt;}
.x89_c01032{left:295.385643pt;}
.x7_c01032{left:297.356940pt;}
.xb5_c01032{left:301.121333pt;}
.xa1_c01032{left:302.853515pt;}
.x10_c01032{left:305.265333pt;}
.x24_c01032{left:313.373083pt;}
.xb9_c01032{left:320.072688pt;}
.x93_c01032{left:322.879371pt;}
.x8a_c01032{left:325.228055pt;}
.x7b_c01032{left:326.334544pt;}
.x42_c01032{left:329.691488pt;}
.xaa_c01032{left:330.735671pt;}
.x82_c01032{left:335.189903pt;}
.x4b_c01032{left:339.543429pt;}
.x11_c01032{left:344.802667pt;}
.x6c_c01032{left:346.705616pt;}
.xa2_c01032{left:352.102143pt;}
.x8b_c01032{left:354.003447pt;}
.x8_c01032{left:355.905000pt;}
.xc1_c01032{left:358.560000pt;}
.xba_c01032{left:359.646027pt;}
.x1_c01032{left:361.316000pt;}
.x94_c01032{left:362.310635pt;}
.x4c_c01032{left:367.911152pt;}
.x39_c01032{left:370.338469pt;}
.x1c_c01032{left:372.654859pt;}
.x12_c01032{left:374.092000pt;}
.x6d_c01032{left:376.281616pt;}
.x57_c01032{left:378.640000pt;}
.x25_c01032{left:381.380320pt;}
.x8c_c01032{left:382.488419pt;}
.x2_c01032{left:385.274684pt;}
.x61_c01032{left:387.309648pt;}
.x95_c01032{left:392.092175pt;}
.x43_c01032{left:399.578155pt;}
.x13_c01032{left:403.634667pt;}
.x73_c01032{left:404.853451pt;}
.x3a_c01032{left:409.695088pt;}
.x83_c01032{left:412.484531pt;}
.xcd_c01032{left:415.191284pt;}
.x62_c01032{left:417.163803pt;}
.x26_c01032{left:420.280069pt;}
.x3_c01032{left:423.516404pt;}
.x6e_c01032{left:425.469616pt;}
.xa3_c01032{left:429.070163pt;}
.x99_c01032{left:431.108879pt;}
.x8d_c01032{left:432.050407pt;}
.x58_c01032{left:435.865333pt;}
.x4d_c01032{left:438.065051pt;}
.x14_c01032{left:443.066667pt;}
.xbb_c01032{left:445.693101pt;}
.x44_c01032{left:447.411488pt;}
.x8e_c01032{left:450.388523pt;}
.x7c_c01032{left:452.168720pt;}
.x63_c01032{left:455.751552pt;}
.x27_c01032{left:459.425152pt;}
.x1d_c01032{left:460.386416pt;}
.x9_c01032{left:461.994804pt;}
.x6f_c01032{left:464.934949pt;}
.x59_c01032{left:474.949333pt;}
.x4e_c01032{left:477.452373pt;}
.xa4_c01032{left:478.731711pt;}
.xc8_c01032{left:479.780000pt;}
.xce_c01032{left:483.190928pt;}
.x31_c01032{left:488.885157pt;}
.xc2_c01032{left:495.277333pt;}
.x1e_c01032{left:499.981952pt;}
.x7d_c01032{left:500.982101pt;}
.xa5_c01032{left:507.737947pt;}
.x15_c01032{left:510.013333pt;}
.x74_c01032{left:512.460416pt;}
.xbc_c01032{left:515.734336pt;}
.x3b_c01032{left:517.052085pt;}
.x7e_c01032{left:522.062699pt;}
.xc3_c01032{left:524.891689pt;}
.x28_c01032{left:527.867056pt;}
.x9a_c01032{left:528.818479pt;}
.x84_c01032{left:530.587643pt;}
.x4f_c01032{left:535.254560pt;}
.x3c_c01032{left:536.943099pt;}
.xa_c01032{left:542.302416pt;}
.x64_c01032{left:543.224683pt;}
.x5a_c01032{left:544.882667pt;}
.x45_c01032{left:546.022155pt;}
.xa6_c01032{left:547.340903pt;}
.x29_c01032{left:548.512949pt;}
.x32_c01032{left:558.097040pt;}
.x85_c01032{left:559.080455pt;}
.x75_c01032{left:562.074901pt;}
.xc4_c01032{left:563.229313pt;}
.x50_c01032{left:564.378320pt;}
.x9b_c01032{left:566.404955pt;}
.x65_c01032{left:572.676171pt;}
.x46_c01032{left:575.810155pt;}
.x96_c01032{left:576.871011pt;}
.x1f_c01032{left:577.796987pt;}
.xb6_c01032{left:585.281333pt;}
.x33_c01032{left:587.792053pt;}
.x8f_c01032{left:588.896907pt;}
.x16_c01032{left:590.236000pt;}
.xab_c01032{left:594.991915pt;}
.x97_c01032{left:598.178939pt;}
.x5b_c01032{left:602.966667pt;}
.x51_c01032{left:604.419013pt;}
.x86_c01032{left:608.099387pt;}
.xb_c01032{left:610.033284pt;}
.x70_c01032{left:612.138949pt;}
.xc5_c01032{left:613.433725pt;}
.x3d_c01032{left:615.015003pt;}
.xa7_c01032{left:617.304827pt;}
.x76_c01032{left:619.723381pt;}
.x34_c01032{left:626.635552pt;}
.x87_c01032{left:628.644155pt;}
.xcf_c01032{left:630.828332pt;}
.xc_c01032{left:639.439848pt;}
.x52_c01032{left:643.115595pt;}
.xac_c01032{left:644.570583pt;}
.x35_c01032{left:646.712672pt;}
.x17_c01032{left:649.060000pt;}
.x71_c01032{left:651.216283pt;}
.x2a_c01032{left:656.041269pt;}
.x7f_c01032{left:658.706507pt;}
.x66_c01032{left:661.550672pt;}
.xb7_c01032{left:664.576000pt;}
.xd_c01032{left:669.742848pt;}
.xc6_c01032{left:671.991109pt;}
.x47_c01032{left:674.019488pt;}
.xa8_c01032{left:675.542363pt;}
.x18_c01032{left:677.869333pt;}
.x5c_c01032{left:682.249333pt;}
.x3e_c01032{left:683.939456pt;}
.x98_c01032{left:685.622971pt;}
.x9c_c01032{left:686.760515pt;}
.x67_c01032{left:690.840827pt;}
.xbd_c01032{left:693.360000pt;}
.x90_c01032{left:697.889263pt;}
.x77_c01032{left:699.343365pt;}
.xc9_c01032{left:701.118440pt;}
.x48_c01032{left:703.862155pt;}
.x36_c01032{left:707.614736pt;}
.x5d_c01032{left:711.004000pt;}
.xad_c01032{left:714.690727pt;}
.x91_c01032{left:717.005355pt;}
.xbe_c01032{left:720.720000pt;}
.x9d_c01032{left:723.859479pt;}
.x2b_c01032{left:724.768544pt;}
.x20_c01032{left:726.374608pt;}
.xc7_c01032{left:732.086953pt;}
.x78_c01032{left:739.301339pt;}
.x2c_c01032{left:744.934437pt;}
}





/* 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_c01033 {
    display:none;
  }
  .loading-indicator_c01033.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01033 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_c01033 { 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_c01033" -> "#page-container .classname_c01033")
 */
.pf_c01033 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01033 { /* 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_c01033.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01033 { /* 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_c01033 { /* 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_c01033 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01033 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01033 {overflow:visible;}
  }
}
.c_c01033 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01033 { /* 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_c01033:after { /* webkit #35443 */
  content: '';
}
.t_c01033:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01033 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 */
}
.__c01033 { /* 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_c01033 { /* info for Javascript */
  display:none;
}
.l_c01033 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01033 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01033 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01033: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_c01033 {
    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_c01033.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01033.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_c01033 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01033{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01033;src:url('chunks/assets/font_8bcac4ac5bfe8fcd47e39e29.woff2')format("woff");}.ff1_c01033{font-family:ff1_c01033;line-height:1.000000;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;}
.m1_c01033{transform:matrix(0.193005,0.001351,-0.001750,0.249994,0,0);-ms-transform:matrix(0.193005,0.001351,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.193005,0.001351,-0.001750,0.249994,0,0);}
.m5_c01033{transform:matrix(0.590706,0.004135,-0.001750,0.249994,0,0);-ms-transform:matrix(0.590706,0.004135,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.590706,0.004135,-0.001750,0.249994,0,0);}
.m4_c01033{transform:matrix(0.740022,0.005180,-0.001750,0.249994,0,0);-ms-transform:matrix(0.740022,0.005180,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.740022,0.005180,-0.001750,0.249994,0,0);}
.m6_c01033{transform:matrix(0.740492,0.005183,-0.001750,0.249994,0,0);-ms-transform:matrix(0.740492,0.005183,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.740492,0.005183,-0.001750,0.249994,0,0);}
.m0_c01033{transform:matrix(0.801200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.801200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.801200,0.000000,0.000000,0.250000,0,0);}
.m3_c01033{transform:matrix(0.858554,0.006010,-0.001750,0.249994,0,0);-ms-transform:matrix(0.858554,0.006010,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.858554,0.006010,-0.001750,0.249994,0,0);}
.m2_c01033{transform:matrix(0.870439,0.006093,-0.001750,0.249994,0,0);-ms-transform:matrix(0.870439,0.006093,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.870439,0.006093,-0.001750,0.249994,0,0);}
.m7_c01033{transform:matrix(0.951397,0.006660,-0.001750,0.249994,0,0);-ms-transform:matrix(0.951397,0.006660,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.951397,0.006660,-0.001750,0.249994,0,0);}
.v0_c01033{vertical-align:0.000000px;}
.ls0_c01033{letter-spacing:0.000000px;}
.sc__c01033{text-shadow:none;}
.sc0_c01033{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__c01033{-webkit-text-stroke:0px transparent;}
.sc0_c01033{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01033{word-spacing:0.000000px;}
.fc0_c01033{color:transparent;}
.fs0_c01033{font-size:24.000000px;}
.fs1_c01033{font-size:78.001911px;}
.y0_c01033{bottom:0.000000px;}
.y8_c01033{bottom:994.943038px;}
.y7_c01033{bottom:995.659244px;}
.y6_c01033{bottom:995.944696px;}
.y5_c01033{bottom:996.279205px;}
.y4_c01033{bottom:996.852684px;}
.y3_c01033{bottom:997.759107px;}
.y2_c01033{bottom:998.037000px;}
.y1_c01033{bottom:1012.500000px;}
.h2_c01033{height:24.000000px;}
.h3_c01033{height:78.001911px;}
.h0_c01033{height:1246.320000px;}
.h1_c01033{height:1246.500000px;}
.w1_c01033{width:887.250000px;}
.w0_c01033{width:887.490000px;}
.x0_c01033{left:0.000000px;}
.x2_c01033{left:142.033500px;}
.x1_c01033{left:150.660000px;}
.x3_c01033{left:181.732500px;}
.x4_c01033{left:311.221500px;}
.x5_c01033{left:393.147000px;}
.x6_c01033{left:440.934000px;}
.x7_c01033{left:481.713000px;}
.x8_c01033{left:584.028000px;}
@media print{
.v0_c01033{vertical-align:0.000000pt;}
.ls0_c01033{letter-spacing:0.000000pt;}
.ws0_c01033{word-spacing:0.000000pt;}
.fs0_c01033{font-size:21.333333pt;}
.fs1_c01033{font-size:69.335032pt;}
.y0_c01033{bottom:0.000000pt;}
.y8_c01033{bottom:884.393812pt;}
.y7_c01033{bottom:885.030439pt;}
.y6_c01033{bottom:885.284175pt;}
.y5_c01033{bottom:885.581516pt;}
.y4_c01033{bottom:886.091275pt;}
.y3_c01033{bottom:886.896984pt;}
.y2_c01033{bottom:887.144000pt;}
.y1_c01033{bottom:900.000000pt;}
.h2_c01033{height:21.333333pt;}
.h3_c01033{height:69.335032pt;}
.h0_c01033{height:1107.840000pt;}
.h1_c01033{height:1108.000000pt;}
.w1_c01033{width:788.666667pt;}
.w0_c01033{width:788.880000pt;}
.x0_c01033{left:0.000000pt;}
.x2_c01033{left:126.252000pt;}
.x1_c01033{left:133.920000pt;}
.x3_c01033{left:161.540000pt;}
.x4_c01033{left:276.641333pt;}
.x5_c01033{left:349.464000pt;}
.x6_c01033{left:391.941333pt;}
.x7_c01033{left:428.189333pt;}
.x8_c01033{left:519.136000pt;}
}





/* 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_c01034 {
    display:none;
  }
  .loading-indicator_c01034.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01034 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_c01034 { 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_c01034" -> "#page-container .classname_c01034")
 */
.pf_c01034 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01034 { /* 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_c01034.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01034 { /* 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_c01034 { /* 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_c01034 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01034 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01034 {overflow:visible;}
  }
}
.c_c01034 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01034 { /* 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_c01034:after { /* webkit #35443 */
  content: '';
}
.t_c01034:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01034 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 */
}
.__c01034 { /* 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_c01034 { /* info for Javascript */
  display:none;
}
.l_c01034 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01034 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01034 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01034: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_c01034 {
    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_c01034.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01034.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_c01034 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01034{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01034;src:url('chunks/assets/font_c605e72f209fc835e906f064.woff2')format("woff");}.ff1_c01034{font-family:ff1_c01034;line-height:1.000000;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;}
.m48_c01034{transform:matrix(0.007711,0.000247,-0.008004,0.249872,0,0);-ms-transform:matrix(0.007711,0.000247,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.007711,0.000247,-0.008004,0.249872,0,0);}
.m3_c01034{transform:matrix(0.018740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.018740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.018740,0.000000,0.000000,0.250000,0,0);}
.m126_c01034{transform:matrix(0.022152,0.000754,-0.008504,0.249855,0,0);-ms-transform:matrix(0.022152,0.000754,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.022152,0.000754,-0.008504,0.249855,0,0);}
.m151_c01034{transform:matrix(0.101845,0.002037,-0.004999,0.249950,0,0);-ms-transform:matrix(0.101845,0.002037,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.101845,0.002037,-0.004999,0.249950,0,0);}
.ma_c01034{transform:matrix(0.127280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127280,0.000000,0.000000,0.250000,0,0);}
.m2_c01034{transform:matrix(0.129040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129040,0.000000,0.000000,0.250000,0,0);}
.m5f_c01034{transform:matrix(0.161017,0.005158,-0.008004,0.249872,0,0);-ms-transform:matrix(0.161017,0.005158,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.161017,0.005158,-0.008004,0.249872,0,0);}
.m10f_c01034{transform:matrix(0.165391,0.006788,-0.010252,0.249790,0,0);-ms-transform:matrix(0.165391,0.006788,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.165391,0.006788,-0.010252,0.249790,0,0);}
.m102_c01034{transform:matrix(0.171755,0.007049,-0.010252,0.249790,0,0);-ms-transform:matrix(0.171755,0.007049,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.171755,0.007049,-0.010252,0.249790,0,0);}
.m10c_c01034{transform:matrix(0.175168,0.007189,-0.010252,0.249790,0,0);-ms-transform:matrix(0.175168,0.007189,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.175168,0.007189,-0.010252,0.249790,0,0);}
.md7_c01034{transform:matrix(0.175330,0.005616,-0.008004,0.249872,0,0);-ms-transform:matrix(0.175330,0.005616,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.175330,0.005616,-0.008004,0.249872,0,0);}
.m9_c01034{transform:matrix(0.175925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175925,0.000000,0.000000,0.250000,0,0);}
.m141_c01034{transform:matrix(0.176543,0.006008,-0.008504,0.249855,0,0);-ms-transform:matrix(0.176543,0.006008,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.176543,0.006008,-0.008504,0.249855,0,0);}
.m109_c01034{transform:matrix(0.176786,0.007255,-0.010252,0.249790,0,0);-ms-transform:matrix(0.176786,0.007255,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.176786,0.007255,-0.010252,0.249790,0,0);}
.m13c_c01034{transform:matrix(0.178836,0.006087,-0.008504,0.249855,0,0);-ms-transform:matrix(0.178836,0.006087,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.178836,0.006087,-0.008504,0.249855,0,0);}
.m153_c01034{transform:matrix(0.180849,0.003617,-0.004999,0.249950,0,0);-ms-transform:matrix(0.180849,0.003617,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.180849,0.003617,-0.004999,0.249950,0,0);}
.m5d_c01034{transform:matrix(0.183266,0.005870,-0.008004,0.249872,0,0);-ms-transform:matrix(0.183266,0.005870,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.183266,0.005870,-0.008004,0.249872,0,0);}
.m158_c01034{transform:matrix(0.183638,0.003673,-0.004999,0.249950,0,0);-ms-transform:matrix(0.183638,0.003673,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.183638,0.003673,-0.004999,0.249950,0,0);}
.m36_c01034{transform:matrix(0.184176,0.005900,-0.008004,0.249872,0,0);-ms-transform:matrix(0.184176,0.005900,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.184176,0.005900,-0.008004,0.249872,0,0);}
.m167_c01034{transform:matrix(0.186028,0.011370,-0.015252,0.249534,0,0);-ms-transform:matrix(0.186028,0.011370,-0.015252,0.249534,0,0);-webkit-transform:matrix(0.186028,0.011370,-0.015252,0.249534,0,0);}
.ma0_c01034{transform:matrix(0.186334,0.005969,-0.008004,0.249872,0,0);-ms-transform:matrix(0.186334,0.005969,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.186334,0.005969,-0.008004,0.249872,0,0);}
.m59_c01034{transform:matrix(0.188828,0.006049,-0.008004,0.249872,0,0);-ms-transform:matrix(0.188828,0.006049,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.188828,0.006049,-0.008004,0.249872,0,0);}
.m13b_c01034{transform:matrix(0.188981,0.006432,-0.008504,0.249855,0,0);-ms-transform:matrix(0.188981,0.006432,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.188981,0.006432,-0.008504,0.249855,0,0);}
.m131_c01034{transform:matrix(0.189810,0.006460,-0.008504,0.249855,0,0);-ms-transform:matrix(0.189810,0.006460,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.189810,0.006460,-0.008504,0.249855,0,0);}
.m150_c01034{transform:matrix(0.190272,0.003805,-0.004999,0.249950,0,0);-ms-transform:matrix(0.190272,0.003805,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.190272,0.003805,-0.004999,0.249950,0,0);}
.m5b_c01034{transform:matrix(0.190982,0.006118,-0.008004,0.249872,0,0);-ms-transform:matrix(0.190982,0.006118,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.190982,0.006118,-0.008004,0.249872,0,0);}
.mec_c01034{transform:matrix(0.191814,0.007872,-0.010252,0.249790,0,0);-ms-transform:matrix(0.191814,0.007872,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.191814,0.007872,-0.010252,0.249790,0,0);}
.mf1_c01034{transform:matrix(0.192468,0.007899,-0.010252,0.249790,0,0);-ms-transform:matrix(0.192468,0.007899,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.192468,0.007899,-0.010252,0.249790,0,0);}
.m129_c01034{transform:matrix(0.192474,0.006551,-0.008504,0.249855,0,0);-ms-transform:matrix(0.192474,0.006551,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.192474,0.006551,-0.008504,0.249855,0,0);}
.m49_c01034{transform:matrix(0.192486,0.006166,-0.008004,0.249872,0,0);-ms-transform:matrix(0.192486,0.006166,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.192486,0.006166,-0.008004,0.249872,0,0);}
.md6_c01034{transform:matrix(0.192726,0.006173,-0.008004,0.249872,0,0);-ms-transform:matrix(0.192726,0.006173,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.192726,0.006173,-0.008004,0.249872,0,0);}
.m15d_c01034{transform:matrix(0.193052,0.007923,-0.010252,0.249790,0,0);-ms-transform:matrix(0.193052,0.007923,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.193052,0.007923,-0.010252,0.249790,0,0);}
.m105_c01034{transform:matrix(0.193372,0.007936,-0.010252,0.249790,0,0);-ms-transform:matrix(0.193372,0.007936,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.193372,0.007936,-0.010252,0.249790,0,0);}
.m160_c01034{transform:matrix(0.193444,0.011824,-0.015252,0.249534,0,0);-ms-transform:matrix(0.193444,0.011824,-0.015252,0.249534,0,0);-webkit-transform:matrix(0.193444,0.011824,-0.015252,0.249534,0,0);}
.m14e_c01034{transform:matrix(0.193576,0.003872,-0.004999,0.249950,0,0);-ms-transform:matrix(0.193576,0.003872,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.193576,0.003872,-0.004999,0.249950,0,0);}
.m4b_c01034{transform:matrix(0.193706,0.006205,-0.008004,0.249872,0,0);-ms-transform:matrix(0.193706,0.006205,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.193706,0.006205,-0.008004,0.249872,0,0);}
.m107_c01034{transform:matrix(0.194296,0.007974,-0.010252,0.249790,0,0);-ms-transform:matrix(0.194296,0.007974,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.194296,0.007974,-0.010252,0.249790,0,0);}
.mfe_c01034{transform:matrix(0.194881,0.007998,-0.010252,0.249790,0,0);-ms-transform:matrix(0.194881,0.007998,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.194881,0.007998,-0.010252,0.249790,0,0);}
.m3a_c01034{transform:matrix(0.195175,0.006252,-0.008004,0.249872,0,0);-ms-transform:matrix(0.195175,0.006252,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.195175,0.006252,-0.008004,0.249872,0,0);}
.mf9_c01034{transform:matrix(0.195401,0.008019,-0.010252,0.249790,0,0);-ms-transform:matrix(0.195401,0.008019,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.195401,0.008019,-0.010252,0.249790,0,0);}
.m16a_c01034{transform:matrix(0.195939,0.011976,-0.015252,0.249534,0,0);-ms-transform:matrix(0.195939,0.011976,-0.015252,0.249534,0,0);-webkit-transform:matrix(0.195939,0.011976,-0.015252,0.249534,0,0);}
.ma6_c01034{transform:matrix(0.196024,0.006279,-0.008004,0.249872,0,0);-ms-transform:matrix(0.196024,0.006279,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.196024,0.006279,-0.008004,0.249872,0,0);}
.m104_c01034{transform:matrix(0.196045,0.008046,-0.010252,0.249790,0,0);-ms-transform:matrix(0.196045,0.008046,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.196045,0.008046,-0.010252,0.249790,0,0);}
.m116_c01034{transform:matrix(0.196189,0.010212,-0.012995,0.249662,0,0);-ms-transform:matrix(0.196189,0.010212,-0.012995,0.249662,0,0);-webkit-transform:matrix(0.196189,0.010212,-0.012995,0.249662,0,0);}
.m10e_c01034{transform:matrix(0.196639,0.008070,-0.010252,0.249790,0,0);-ms-transform:matrix(0.196639,0.008070,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.196639,0.008070,-0.010252,0.249790,0,0);}
.md4_c01034{transform:matrix(0.196929,0.006308,-0.008004,0.249872,0,0);-ms-transform:matrix(0.196929,0.006308,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.196929,0.006308,-0.008004,0.249872,0,0);}
.m154_c01034{transform:matrix(0.197186,0.003944,-0.004999,0.249950,0,0);-ms-transform:matrix(0.197186,0.003944,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.197186,0.003944,-0.004999,0.249950,0,0);}
.mfc_c01034{transform:matrix(0.197254,0.008096,-0.010252,0.249790,0,0);-ms-transform:matrix(0.197254,0.008096,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.197254,0.008096,-0.010252,0.249790,0,0);}
.med_c01034{transform:matrix(0.197359,0.008100,-0.010252,0.249790,0,0);-ms-transform:matrix(0.197359,0.008100,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.197359,0.008100,-0.010252,0.249790,0,0);}
.m39_c01034{transform:matrix(0.197554,0.006328,-0.008004,0.249872,0,0);-ms-transform:matrix(0.197554,0.006328,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.197554,0.006328,-0.008004,0.249872,0,0);}
.m2c_c01034{transform:matrix(0.198308,0.006352,-0.008004,0.249872,0,0);-ms-transform:matrix(0.198308,0.006352,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.198308,0.006352,-0.008004,0.249872,0,0);}
.ma2_c01034{transform:matrix(0.198443,0.006357,-0.008004,0.249872,0,0);-ms-transform:matrix(0.198443,0.006357,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.198443,0.006357,-0.008004,0.249872,0,0);}
.md3_c01034{transform:matrix(0.198828,0.006369,-0.008004,0.249872,0,0);-ms-transform:matrix(0.198828,0.006369,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.198828,0.006369,-0.008004,0.249872,0,0);}
.mef_c01034{transform:matrix(0.198933,0.008164,-0.010252,0.249790,0,0);-ms-transform:matrix(0.198933,0.008164,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.198933,0.008164,-0.010252,0.249790,0,0);}
.m62_c01034{transform:matrix(0.198978,0.006374,-0.008004,0.249872,0,0);-ms-transform:matrix(0.198978,0.006374,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.198978,0.006374,-0.008004,0.249872,0,0);}
.m115_c01034{transform:matrix(0.199095,0.010363,-0.012995,0.249662,0,0);-ms-transform:matrix(0.199095,0.010363,-0.012995,0.249662,0,0);-webkit-transform:matrix(0.199095,0.010363,-0.012995,0.249662,0,0);}
.mf3_c01034{transform:matrix(0.199242,0.008177,-0.010252,0.249790,0,0);-ms-transform:matrix(0.199242,0.008177,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.199242,0.008177,-0.010252,0.249790,0,0);}
.m108_c01034{transform:matrix(0.199617,0.008192,-0.010252,0.249790,0,0);-ms-transform:matrix(0.199617,0.008192,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.199617,0.008192,-0.010252,0.249790,0,0);}
.m5e_c01034{transform:matrix(0.200017,0.006407,-0.008004,0.249872,0,0);-ms-transform:matrix(0.200017,0.006407,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.200017,0.006407,-0.008004,0.249872,0,0);}
.mfd_c01034{transform:matrix(0.200142,0.008214,-0.010252,0.249790,0,0);-ms-transform:matrix(0.200142,0.008214,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.200142,0.008214,-0.010252,0.249790,0,0);}
.m7_c01034{transform:matrix(0.200310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200310,0.000000,0.000000,0.250000,0,0);}
.m164_c01034{transform:matrix(0.200521,0.012256,-0.015252,0.249534,0,0);-ms-transform:matrix(0.200521,0.012256,-0.015252,0.249534,0,0);-webkit-transform:matrix(0.200521,0.012256,-0.015252,0.249534,0,0);}
.m60_c01034{transform:matrix(0.201097,0.006442,-0.008004,0.249872,0,0);-ms-transform:matrix(0.201097,0.006442,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.201097,0.006442,-0.008004,0.249872,0,0);}
.m106_c01034{transform:matrix(0.201116,0.008254,-0.010252,0.249790,0,0);-ms-transform:matrix(0.201116,0.008254,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.201116,0.008254,-0.010252,0.249790,0,0);}
.m57_c01034{transform:matrix(0.201492,0.006454,-0.008004,0.249872,0,0);-ms-transform:matrix(0.201492,0.006454,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.201492,0.006454,-0.008004,0.249872,0,0);}
.m5a_c01034{transform:matrix(0.201597,0.006458,-0.008004,0.249872,0,0);-ms-transform:matrix(0.201597,0.006458,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.201597,0.006458,-0.008004,0.249872,0,0);}
.m5c_c01034{transform:matrix(0.202211,0.006477,-0.008004,0.249872,0,0);-ms-transform:matrix(0.202211,0.006477,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.202211,0.006477,-0.008004,0.249872,0,0);}
.m159_c01034{transform:matrix(0.202220,0.004044,-0.004999,0.249950,0,0);-ms-transform:matrix(0.202220,0.004044,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.202220,0.004044,-0.004999,0.249950,0,0);}
.m3b_c01034{transform:matrix(0.202326,0.006481,-0.008004,0.249872,0,0);-ms-transform:matrix(0.202326,0.006481,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.202326,0.006481,-0.008004,0.249872,0,0);}
.m156_c01034{transform:matrix(0.203034,0.004061,-0.004999,0.249950,0,0);-ms-transform:matrix(0.203034,0.004061,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.203034,0.004061,-0.004999,0.249950,0,0);}
.m12a_c01034{transform:matrix(0.203182,0.006915,-0.008504,0.249855,0,0);-ms-transform:matrix(0.203182,0.006915,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.203182,0.006915,-0.008504,0.249855,0,0);}
.m58_c01034{transform:matrix(0.203855,0.006530,-0.008004,0.249872,0,0);-ms-transform:matrix(0.203855,0.006530,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.203855,0.006530,-0.008004,0.249872,0,0);}
.m14d_c01034{transform:matrix(0.203964,0.004079,-0.004999,0.249950,0,0);-ms-transform:matrix(0.203964,0.004079,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.203964,0.004079,-0.004999,0.249950,0,0);}
.m101_c01034{transform:matrix(0.204123,0.008377,-0.010252,0.249790,0,0);-ms-transform:matrix(0.204123,0.008377,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.204123,0.008377,-0.010252,0.249790,0,0);}
.m103_c01034{transform:matrix(0.204218,0.008381,-0.010252,0.249790,0,0);-ms-transform:matrix(0.204218,0.008381,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.204218,0.008381,-0.010252,0.249790,0,0);}
.m2f_c01034{transform:matrix(0.204355,0.006546,-0.008004,0.249872,0,0);-ms-transform:matrix(0.204355,0.006546,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.204355,0.006546,-0.008004,0.249872,0,0);}
.ma1_c01034{transform:matrix(0.204950,0.006565,-0.008004,0.249872,0,0);-ms-transform:matrix(0.204950,0.006565,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.204950,0.006565,-0.008004,0.249872,0,0);}
.mf4_c01034{transform:matrix(0.205462,0.008432,-0.010252,0.249790,0,0);-ms-transform:matrix(0.205462,0.008432,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.205462,0.008432,-0.010252,0.249790,0,0);}
.m50_c01034{transform:matrix(0.205859,0.006594,-0.008004,0.249872,0,0);-ms-transform:matrix(0.205859,0.006594,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.205859,0.006594,-0.008004,0.249872,0,0);}
.m33_c01034{transform:matrix(0.206324,0.006609,-0.008004,0.249872,0,0);-ms-transform:matrix(0.206324,0.006609,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.206324,0.006609,-0.008004,0.249872,0,0);}
.m64_c01034{transform:matrix(0.206634,0.006619,-0.008004,0.249872,0,0);-ms-transform:matrix(0.206634,0.006619,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.206634,0.006619,-0.008004,0.249872,0,0);}
.mea_c01034{transform:matrix(0.206656,0.008481,-0.010252,0.249790,0,0);-ms-transform:matrix(0.206656,0.008481,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.206656,0.008481,-0.010252,0.249790,0,0);}
.mb6_c01034{transform:matrix(0.206789,0.006624,-0.008004,0.249872,0,0);-ms-transform:matrix(0.206789,0.006624,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.206789,0.006624,-0.008004,0.249872,0,0);}
.m142_c01034{transform:matrix(0.207120,0.007049,-0.008504,0.249855,0,0);-ms-transform:matrix(0.207120,0.007049,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.207120,0.007049,-0.008504,0.249855,0,0);}
.m140_c01034{transform:matrix(0.207370,0.007058,-0.008504,0.249855,0,0);-ms-transform:matrix(0.207370,0.007058,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.207370,0.007058,-0.008504,0.249855,0,0);}
.md9_c01034{transform:matrix(0.207509,0.006647,-0.008004,0.249872,0,0);-ms-transform:matrix(0.207509,0.006647,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.207509,0.006647,-0.008004,0.249872,0,0);}
.m34_c01034{transform:matrix(0.207529,0.006648,-0.008004,0.249872,0,0);-ms-transform:matrix(0.207529,0.006648,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.207529,0.006648,-0.008004,0.249872,0,0);}
.m111_c01034{transform:matrix(0.207790,0.008528,-0.010252,0.249790,0,0);-ms-transform:matrix(0.207790,0.008528,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.207790,0.008528,-0.010252,0.249790,0,0);}
.m55_c01034{transform:matrix(0.207928,0.006660,-0.008004,0.249872,0,0);-ms-transform:matrix(0.207928,0.006660,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.207928,0.006660,-0.008004,0.249872,0,0);}
.m4e_c01034{transform:matrix(0.207968,0.006662,-0.008004,0.249872,0,0);-ms-transform:matrix(0.207968,0.006662,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.207968,0.006662,-0.008004,0.249872,0,0);}
.m113_c01034{transform:matrix(0.208405,0.008553,-0.010252,0.249790,0,0);-ms-transform:matrix(0.208405,0.008553,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.208405,0.008553,-0.010252,0.249790,0,0);}
.m9f_c01034{transform:matrix(0.208603,0.006682,-0.008004,0.249872,0,0);-ms-transform:matrix(0.208603,0.006682,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.208603,0.006682,-0.008004,0.249872,0,0);}
.mb_c01034{transform:matrix(0.208605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208605,0.000000,0.000000,0.250000,0,0);}
.m152_c01034{transform:matrix(0.208693,0.004174,-0.004999,0.249950,0,0);-ms-transform:matrix(0.208693,0.004174,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.208693,0.004174,-0.004999,0.249950,0,0);}
.m124_c01034{transform:matrix(0.209179,0.007119,-0.008504,0.249855,0,0);-ms-transform:matrix(0.209179,0.007119,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.209179,0.007119,-0.008504,0.249855,0,0);}
.m15b_c01034{transform:matrix(0.209419,0.008595,-0.010252,0.249790,0,0);-ms-transform:matrix(0.209419,0.008595,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.209419,0.008595,-0.010252,0.249790,0,0);}
.m11a_c01034{transform:matrix(0.209521,0.010906,-0.012995,0.249662,0,0);-ms-transform:matrix(0.209521,0.010906,-0.012995,0.249662,0,0);-webkit-transform:matrix(0.209521,0.010906,-0.012995,0.249662,0,0);}
.m157_c01034{transform:matrix(0.209723,0.004194,-0.004999,0.249950,0,0);-ms-transform:matrix(0.209723,0.004194,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.209723,0.004194,-0.004999,0.249950,0,0);}
.m82_c01034{transform:matrix(0.209827,0.006721,-0.008004,0.249872,0,0);-ms-transform:matrix(0.209827,0.006721,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.209827,0.006721,-0.008004,0.249872,0,0);}
.mf7_c01034{transform:matrix(0.209843,0.008612,-0.010252,0.249790,0,0);-ms-transform:matrix(0.209843,0.008612,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.209843,0.008612,-0.010252,0.249790,0,0);}
.mda_c01034{transform:matrix(0.210192,0.006733,-0.008004,0.249872,0,0);-ms-transform:matrix(0.210192,0.006733,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.210192,0.006733,-0.008004,0.249872,0,0);}
.m161_c01034{transform:matrix(0.210437,0.012862,-0.015252,0.249534,0,0);-ms-transform:matrix(0.210437,0.012862,-0.015252,0.249534,0,0);-webkit-transform:matrix(0.210437,0.012862,-0.015252,0.249534,0,0);}
.m16b_c01034{transform:matrix(0.211026,0.012898,-0.015252,0.249534,0,0);-ms-transform:matrix(0.211026,0.012898,-0.015252,0.249534,0,0);-webkit-transform:matrix(0.211026,0.012898,-0.015252,0.249534,0,0);}
.m35_c01034{transform:matrix(0.211272,0.006767,-0.008004,0.249872,0,0);-ms-transform:matrix(0.211272,0.006767,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.211272,0.006767,-0.008004,0.249872,0,0);}
.mbc_c01034{transform:matrix(0.211392,0.006771,-0.008004,0.249872,0,0);-ms-transform:matrix(0.211392,0.006771,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.211392,0.006771,-0.008004,0.249872,0,0);}
.m122_c01034{transform:matrix(0.211807,0.007209,-0.008504,0.249855,0,0);-ms-transform:matrix(0.211807,0.007209,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.211807,0.007209,-0.008504,0.249855,0,0);}
.m10b_c01034{transform:matrix(0.211867,0.008695,-0.010252,0.249790,0,0);-ms-transform:matrix(0.211867,0.008695,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.211867,0.008695,-0.010252,0.249790,0,0);}
.m5_c01034{transform:matrix(0.212240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212240,0.000000,0.000000,0.250000,0,0);}
.m9c_c01034{transform:matrix(0.212406,0.006804,-0.008004,0.249872,0,0);-ms-transform:matrix(0.212406,0.006804,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.212406,0.006804,-0.008004,0.249872,0,0);}
.m147_c01034{transform:matrix(0.212468,0.004249,-0.004999,0.249950,0,0);-ms-transform:matrix(0.212468,0.004249,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.212468,0.004249,-0.004999,0.249950,0,0);}
.m37_c01034{transform:matrix(0.212956,0.006821,-0.008004,0.249872,0,0);-ms-transform:matrix(0.212956,0.006821,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.212956,0.006821,-0.008004,0.249872,0,0);}
.m133_c01034{transform:matrix(0.213331,0.007261,-0.008504,0.249855,0,0);-ms-transform:matrix(0.213331,0.007261,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.213331,0.007261,-0.008504,0.249855,0,0);}
.md8_c01034{transform:matrix(0.213446,0.006837,-0.008004,0.249872,0,0);-ms-transform:matrix(0.213446,0.006837,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.213446,0.006837,-0.008004,0.249872,0,0);}
.m2e_c01034{transform:matrix(0.213750,0.006847,-0.008004,0.249872,0,0);-ms-transform:matrix(0.213750,0.006847,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.213750,0.006847,-0.008004,0.249872,0,0);}
.m11d_c01034{transform:matrix(0.213990,0.011139,-0.012995,0.249662,0,0);-ms-transform:matrix(0.213990,0.011139,-0.012995,0.249662,0,0);-webkit-transform:matrix(0.213990,0.011139,-0.012995,0.249662,0,0);}
.m52_c01034{transform:matrix(0.214310,0.006865,-0.008004,0.249872,0,0);-ms-transform:matrix(0.214310,0.006865,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.214310,0.006865,-0.008004,0.249872,0,0);}
.m163_c01034{transform:matrix(0.214475,0.013109,-0.015252,0.249534,0,0);-ms-transform:matrix(0.214475,0.013109,-0.015252,0.249534,0,0);-webkit-transform:matrix(0.214475,0.013109,-0.015252,0.249534,0,0);}
.m13f_c01034{transform:matrix(0.214836,0.007312,-0.008504,0.249855,0,0);-ms-transform:matrix(0.214836,0.007312,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.214836,0.007312,-0.008504,0.249855,0,0);}
.m165_c01034{transform:matrix(0.215084,0.013146,-0.015252,0.249534,0,0);-ms-transform:matrix(0.215084,0.013146,-0.015252,0.249534,0,0);-webkit-transform:matrix(0.215084,0.013146,-0.015252,0.249534,0,0);}
.m15f_c01034{transform:matrix(0.215697,0.013184,-0.015252,0.249534,0,0);-ms-transform:matrix(0.215697,0.013184,-0.015252,0.249534,0,0);-webkit-transform:matrix(0.215697,0.013184,-0.015252,0.249534,0,0);}
.m114_c01034{transform:matrix(0.216103,0.008869,-0.010252,0.249790,0,0);-ms-transform:matrix(0.216103,0.008869,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.216103,0.008869,-0.010252,0.249790,0,0);}
.me8_c01034{transform:matrix(0.216283,0.008876,-0.010252,0.249790,0,0);-ms-transform:matrix(0.216283,0.008876,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.216283,0.008876,-0.010252,0.249790,0,0);}
.m14f_c01034{transform:matrix(0.216307,0.004326,-0.004999,0.249950,0,0);-ms-transform:matrix(0.216307,0.004326,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.216307,0.004326,-0.004999,0.249950,0,0);}
.me7_c01034{transform:matrix(0.216323,0.008878,-0.010252,0.249790,0,0);-ms-transform:matrix(0.216323,0.008878,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.216323,0.008878,-0.010252,0.249790,0,0);}
.m4c_c01034{transform:matrix(0.216359,0.006930,-0.008004,0.249872,0,0);-ms-transform:matrix(0.216359,0.006930,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.216359,0.006930,-0.008004,0.249872,0,0);}
.m4d_c01034{transform:matrix(0.217024,0.006952,-0.008004,0.249872,0,0);-ms-transform:matrix(0.217024,0.006952,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.217024,0.006952,-0.008004,0.249872,0,0);}
.m168_c01034{transform:matrix(0.217125,0.013271,-0.015252,0.249534,0,0);-ms-transform:matrix(0.217125,0.013271,-0.015252,0.249534,0,0);-webkit-transform:matrix(0.217125,0.013271,-0.015252,0.249534,0,0);}
.m13e_c01034{transform:matrix(0.217174,0.007391,-0.008504,0.249855,0,0);-ms-transform:matrix(0.217174,0.007391,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.217174,0.007391,-0.008504,0.249855,0,0);}
.maf_c01034{transform:matrix(0.217389,0.006963,-0.008004,0.249872,0,0);-ms-transform:matrix(0.217389,0.006963,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.217389,0.006963,-0.008004,0.249872,0,0);}
.mff_c01034{transform:matrix(0.217612,0.008931,-0.010252,0.249790,0,0);-ms-transform:matrix(0.217612,0.008931,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.217612,0.008931,-0.010252,0.249790,0,0);}
.md5_c01034{transform:matrix(0.217903,0.006980,-0.008004,0.249872,0,0);-ms-transform:matrix(0.217903,0.006980,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.217903,0.006980,-0.008004,0.249872,0,0);}
.m4a_c01034{transform:matrix(0.218103,0.006986,-0.008004,0.249872,0,0);-ms-transform:matrix(0.218103,0.006986,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.218103,0.006986,-0.008004,0.249872,0,0);}
.ma7_c01034{transform:matrix(0.218353,0.006994,-0.008004,0.249872,0,0);-ms-transform:matrix(0.218353,0.006994,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.218353,0.006994,-0.008004,0.249872,0,0);}
.m155_c01034{transform:matrix(0.218681,0.004374,-0.004999,0.249950,0,0);-ms-transform:matrix(0.218681,0.004374,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.218681,0.004374,-0.004999,0.249950,0,0);}
.m3d_c01034{transform:matrix(0.218753,0.007007,-0.008004,0.249872,0,0);-ms-transform:matrix(0.218753,0.007007,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.218753,0.007007,-0.008004,0.249872,0,0);}
.m9d_c01034{transform:matrix(0.219223,0.007022,-0.008004,0.249872,0,0);-ms-transform:matrix(0.219223,0.007022,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.219223,0.007022,-0.008004,0.249872,0,0);}
.m110_c01034{transform:matrix(0.219465,0.009007,-0.010252,0.249790,0,0);-ms-transform:matrix(0.219465,0.009007,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.219465,0.009007,-0.010252,0.249790,0,0);}
.m15a_c01034{transform:matrix(0.220494,0.009049,-0.010252,0.249790,0,0);-ms-transform:matrix(0.220494,0.009049,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.220494,0.009049,-0.010252,0.249790,0,0);}
.m3e_c01034{transform:matrix(0.220577,0.007066,-0.008004,0.249872,0,0);-ms-transform:matrix(0.220577,0.007066,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.220577,0.007066,-0.008004,0.249872,0,0);}
.m38_c01034{transform:matrix(0.220642,0.007068,-0.008004,0.249872,0,0);-ms-transform:matrix(0.220642,0.007068,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.220642,0.007068,-0.008004,0.249872,0,0);}
.m80_c01034{transform:matrix(0.220787,0.007072,-0.008004,0.249872,0,0);-ms-transform:matrix(0.220787,0.007072,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.220787,0.007072,-0.008004,0.249872,0,0);}
.m92_c01034{transform:matrix(0.221092,0.007082,-0.008004,0.249872,0,0);-ms-transform:matrix(0.221092,0.007082,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.221092,0.007082,-0.008004,0.249872,0,0);}
.m6_c01034{transform:matrix(0.221210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221210,0.000000,0.000000,0.250000,0,0);}
.m119_c01034{transform:matrix(0.221370,0.011523,-0.012995,0.249662,0,0);-ms-transform:matrix(0.221370,0.011523,-0.012995,0.249662,0,0);-webkit-transform:matrix(0.221370,0.011523,-0.012995,0.249662,0,0);}
.mae_c01034{transform:matrix(0.221766,0.007104,-0.008004,0.249872,0,0);-ms-transform:matrix(0.221766,0.007104,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.221766,0.007104,-0.008004,0.249872,0,0);}
.m145_c01034{transform:matrix(0.222061,0.004441,-0.004999,0.249950,0,0);-ms-transform:matrix(0.222061,0.004441,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.222061,0.004441,-0.004999,0.249950,0,0);}
.m32_c01034{transform:matrix(0.222126,0.007115,-0.008004,0.249872,0,0);-ms-transform:matrix(0.222126,0.007115,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.222126,0.007115,-0.008004,0.249872,0,0);}
.m56_c01034{transform:matrix(0.222331,0.007122,-0.008004,0.249872,0,0);-ms-transform:matrix(0.222331,0.007122,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.222331,0.007122,-0.008004,0.249872,0,0);}
.m11c_c01034{transform:matrix(0.222509,0.011582,-0.012995,0.249662,0,0);-ms-transform:matrix(0.222509,0.011582,-0.012995,0.249662,0,0);-webkit-transform:matrix(0.222509,0.011582,-0.012995,0.249662,0,0);}
.m7b_c01034{transform:matrix(0.222916,0.007140,-0.008004,0.249872,0,0);-ms-transform:matrix(0.222916,0.007140,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.222916,0.007140,-0.008004,0.249872,0,0);}
.m9e_c01034{transform:matrix(0.223046,0.007145,-0.008004,0.249872,0,0);-ms-transform:matrix(0.223046,0.007145,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.223046,0.007145,-0.008004,0.249872,0,0);}
.m14_c01034{transform:matrix(0.223156,0.007148,-0.008004,0.249872,0,0);-ms-transform:matrix(0.223156,0.007148,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.223156,0.007148,-0.008004,0.249872,0,0);}
.mf0_c01034{transform:matrix(0.223372,0.009167,-0.010252,0.249790,0,0);-ms-transform:matrix(0.223372,0.009167,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.223372,0.009167,-0.010252,0.249790,0,0);}
.m139_c01034{transform:matrix(0.223651,0.007612,-0.008504,0.249855,0,0);-ms-transform:matrix(0.223651,0.007612,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.223651,0.007612,-0.008504,0.249855,0,0);}
.ma5_c01034{transform:matrix(0.223735,0.007167,-0.008004,0.249872,0,0);-ms-transform:matrix(0.223735,0.007167,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.223735,0.007167,-0.008004,0.249872,0,0);}
.m69_c01034{transform:matrix(0.223770,0.007168,-0.008004,0.249872,0,0);-ms-transform:matrix(0.223770,0.007168,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.223770,0.007168,-0.008004,0.249872,0,0);}
.me6_c01034{transform:matrix(0.223812,0.009185,-0.010252,0.249790,0,0);-ms-transform:matrix(0.223812,0.009185,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.223812,0.009185,-0.010252,0.249790,0,0);}
.m65_c01034{transform:matrix(0.223920,0.007173,-0.008004,0.249872,0,0);-ms-transform:matrix(0.223920,0.007173,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.223920,0.007173,-0.008004,0.249872,0,0);}
.mfa_c01034{transform:matrix(0.224046,0.009195,-0.010252,0.249790,0,0);-ms-transform:matrix(0.224046,0.009195,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.224046,0.009195,-0.010252,0.249790,0,0);}
.m10d_c01034{transform:matrix(0.224106,0.009198,-0.010252,0.249790,0,0);-ms-transform:matrix(0.224106,0.009198,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.224106,0.009198,-0.010252,0.249790,0,0);}
.m7e_c01034{transform:matrix(0.224540,0.007192,-0.008004,0.249872,0,0);-ms-transform:matrix(0.224540,0.007192,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.224540,0.007192,-0.008004,0.249872,0,0);}
.m6d_c01034{transform:matrix(0.224565,0.007193,-0.008004,0.249872,0,0);-ms-transform:matrix(0.224565,0.007193,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.224565,0.007193,-0.008004,0.249872,0,0);}
.mee_c01034{transform:matrix(0.224996,0.009234,-0.010252,0.249790,0,0);-ms-transform:matrix(0.224996,0.009234,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.224996,0.009234,-0.010252,0.249790,0,0);}
.ma4_c01034{transform:matrix(0.225130,0.007211,-0.008004,0.249872,0,0);-ms-transform:matrix(0.225130,0.007211,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.225130,0.007211,-0.008004,0.249872,0,0);}
.m96_c01034{transform:matrix(0.225229,0.007215,-0.008004,0.249872,0,0);-ms-transform:matrix(0.225229,0.007215,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.225229,0.007215,-0.008004,0.249872,0,0);}
.m14c_c01034{transform:matrix(0.225355,0.004507,-0.004999,0.249950,0,0);-ms-transform:matrix(0.225355,0.004507,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.225355,0.004507,-0.004999,0.249950,0,0);}
.m149_c01034{transform:matrix(0.225420,0.004508,-0.004999,0.249950,0,0);-ms-transform:matrix(0.225420,0.004508,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.225420,0.004508,-0.004999,0.249950,0,0);}
.ma3_c01034{transform:matrix(0.225624,0.007227,-0.008004,0.249872,0,0);-ms-transform:matrix(0.225624,0.007227,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.225624,0.007227,-0.008004,0.249872,0,0);}
.mfb_c01034{transform:matrix(0.225780,0.009266,-0.010252,0.249790,0,0);-ms-transform:matrix(0.225780,0.009266,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.225780,0.009266,-0.010252,0.249790,0,0);}
.m3c_c01034{transform:matrix(0.226059,0.007241,-0.008004,0.249872,0,0);-ms-transform:matrix(0.226059,0.007241,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.226059,0.007241,-0.008004,0.249872,0,0);}
.me9_c01034{transform:matrix(0.226349,0.009290,-0.010252,0.249790,0,0);-ms-transform:matrix(0.226349,0.009290,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.226349,0.009290,-0.010252,0.249790,0,0);}
.m98_c01034{transform:matrix(0.226629,0.007259,-0.008004,0.249872,0,0);-ms-transform:matrix(0.226629,0.007259,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.226629,0.007259,-0.008004,0.249872,0,0);}
.m162_c01034{transform:matrix(0.226737,0.013859,-0.015252,0.249534,0,0);-ms-transform:matrix(0.226737,0.013859,-0.015252,0.249534,0,0);-webkit-transform:matrix(0.226737,0.013859,-0.015252,0.249534,0,0);}
.mdb_c01034{transform:matrix(0.226954,0.007270,-0.008004,0.249872,0,0);-ms-transform:matrix(0.226954,0.007270,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.226954,0.007270,-0.008004,0.249872,0,0);}
.mf2_c01034{transform:matrix(0.227224,0.009325,-0.010252,0.249790,0,0);-ms-transform:matrix(0.227224,0.009325,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.227224,0.009325,-0.010252,0.249790,0,0);}
.mcc_c01034{transform:matrix(0.227313,0.007281,-0.008004,0.249872,0,0);-ms-transform:matrix(0.227313,0.007281,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.227313,0.007281,-0.008004,0.249872,0,0);}
.m21_c01034{transform:matrix(0.228043,0.007305,-0.008004,0.249872,0,0);-ms-transform:matrix(0.228043,0.007305,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.228043,0.007305,-0.008004,0.249872,0,0);}
.m7f_c01034{transform:matrix(0.228313,0.007313,-0.008004,0.249872,0,0);-ms-transform:matrix(0.228313,0.007313,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.228313,0.007313,-0.008004,0.249872,0,0);}
.mf5_c01034{transform:matrix(0.228653,0.009384,-0.010252,0.249790,0,0);-ms-transform:matrix(0.228653,0.009384,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.228653,0.009384,-0.010252,0.249790,0,0);}
.m10a_c01034{transform:matrix(0.228692,0.009386,-0.010252,0.249790,0,0);-ms-transform:matrix(0.228692,0.009386,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.228692,0.009386,-0.010252,0.249790,0,0);}
.m88_c01034{transform:matrix(0.228698,0.007326,-0.008004,0.249872,0,0);-ms-transform:matrix(0.228698,0.007326,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.228698,0.007326,-0.008004,0.249872,0,0);}
.meb_c01034{transform:matrix(0.228732,0.009387,-0.010252,0.249790,0,0);-ms-transform:matrix(0.228732,0.009387,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.228732,0.009387,-0.010252,0.249790,0,0);}
.m2b_c01034{transform:matrix(0.228778,0.007328,-0.008004,0.249872,0,0);-ms-transform:matrix(0.228778,0.007328,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.228778,0.007328,-0.008004,0.249872,0,0);}
.m137_c01034{transform:matrix(0.228867,0.007789,-0.008504,0.249855,0,0);-ms-transform:matrix(0.228867,0.007789,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.228867,0.007789,-0.008504,0.249855,0,0);}
.m136_c01034{transform:matrix(0.228897,0.007790,-0.008504,0.249855,0,0);-ms-transform:matrix(0.228897,0.007790,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.228897,0.007790,-0.008504,0.249855,0,0);}
.m14b_c01034{transform:matrix(0.229134,0.004583,-0.004999,0.249950,0,0);-ms-transform:matrix(0.229134,0.004583,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.229134,0.004583,-0.004999,0.249950,0,0);}
.m10_c01034{transform:matrix(0.229147,0.007340,-0.008004,0.249872,0,0);-ms-transform:matrix(0.229147,0.007340,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.229147,0.007340,-0.008004,0.249872,0,0);}
.m71_c01034{transform:matrix(0.229472,0.007350,-0.008004,0.249872,0,0);-ms-transform:matrix(0.229472,0.007350,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.229472,0.007350,-0.008004,0.249872,0,0);}
.m83_c01034{transform:matrix(0.229682,0.007357,-0.008004,0.249872,0,0);-ms-transform:matrix(0.229682,0.007357,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.229682,0.007357,-0.008004,0.249872,0,0);}
.m127_c01034{transform:matrix(0.229882,0.007824,-0.008504,0.249855,0,0);-ms-transform:matrix(0.229882,0.007824,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.229882,0.007824,-0.008504,0.249855,0,0);}
.ma8_c01034{transform:matrix(0.230002,0.007367,-0.008004,0.249872,0,0);-ms-transform:matrix(0.230002,0.007367,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.230002,0.007367,-0.008004,0.249872,0,0);}
.m86_c01034{transform:matrix(0.230102,0.007371,-0.008004,0.249872,0,0);-ms-transform:matrix(0.230102,0.007371,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.230102,0.007371,-0.008004,0.249872,0,0);}
.m2a_c01034{transform:matrix(0.230232,0.007375,-0.008004,0.249872,0,0);-ms-transform:matrix(0.230232,0.007375,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.230232,0.007375,-0.008004,0.249872,0,0);}
.m51_c01034{transform:matrix(0.230282,0.007376,-0.008004,0.249872,0,0);-ms-transform:matrix(0.230282,0.007376,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.230282,0.007376,-0.008004,0.249872,0,0);}
.m128_c01034{transform:matrix(0.231016,0.007862,-0.008504,0.249855,0,0);-ms-transform:matrix(0.231016,0.007862,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.231016,0.007862,-0.008504,0.249855,0,0);}
.mcf_c01034{transform:matrix(0.231506,0.007416,-0.008004,0.249872,0,0);-ms-transform:matrix(0.231506,0.007416,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.231506,0.007416,-0.008004,0.249872,0,0);}
.m118_c01034{transform:matrix(0.231581,0.012054,-0.012995,0.249662,0,0);-ms-transform:matrix(0.231581,0.012054,-0.012995,0.249662,0,0);-webkit-transform:matrix(0.231581,0.012054,-0.012995,0.249662,0,0);}
.ma9_c01034{transform:matrix(0.231721,0.007422,-0.008004,0.249872,0,0);-ms-transform:matrix(0.231721,0.007422,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.231721,0.007422,-0.008004,0.249872,0,0);}
.m2d_c01034{transform:matrix(0.231806,0.007425,-0.008004,0.249872,0,0);-ms-transform:matrix(0.231806,0.007425,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.231806,0.007425,-0.008004,0.249872,0,0);}
.m73_c01034{transform:matrix(0.232166,0.007437,-0.008004,0.249872,0,0);-ms-transform:matrix(0.232166,0.007437,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.232166,0.007437,-0.008004,0.249872,0,0);}
.m100_c01034{transform:matrix(0.232170,0.009528,-0.010252,0.249790,0,0);-ms-transform:matrix(0.232170,0.009528,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.232170,0.009528,-0.010252,0.249790,0,0);}
.m14a_c01034{transform:matrix(0.232309,0.004646,-0.004999,0.249950,0,0);-ms-transform:matrix(0.232309,0.004646,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.232309,0.004646,-0.004999,0.249950,0,0);}
.m1e_c01034{transform:matrix(0.232436,0.007445,-0.008004,0.249872,0,0);-ms-transform:matrix(0.232436,0.007445,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.232436,0.007445,-0.008004,0.249872,0,0);}
.m53_c01034{transform:matrix(0.232476,0.007447,-0.008004,0.249872,0,0);-ms-transform:matrix(0.232476,0.007447,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.232476,0.007447,-0.008004,0.249872,0,0);}
.m117_c01034{transform:matrix(0.232965,0.012126,-0.012995,0.249662,0,0);-ms-transform:matrix(0.232965,0.012126,-0.012995,0.249662,0,0);-webkit-transform:matrix(0.232965,0.012126,-0.012995,0.249662,0,0);}
.m4f_c01034{transform:matrix(0.233270,0.007472,-0.008004,0.249872,0,0);-ms-transform:matrix(0.233270,0.007472,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.233270,0.007472,-0.008004,0.249872,0,0);}
.m132_c01034{transform:matrix(0.233435,0.007945,-0.008504,0.249855,0,0);-ms-transform:matrix(0.233435,0.007945,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.233435,0.007945,-0.008504,0.249855,0,0);}
.mb1_c01034{transform:matrix(0.233575,0.007482,-0.008004,0.249872,0,0);-ms-transform:matrix(0.233575,0.007482,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.233575,0.007482,-0.008004,0.249872,0,0);}
.m146_c01034{transform:matrix(0.234048,0.004681,-0.004999,0.249950,0,0);-ms-transform:matrix(0.234048,0.004681,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.234048,0.004681,-0.004999,0.249950,0,0);}
.m6c_c01034{transform:matrix(0.234105,0.007499,-0.008004,0.249872,0,0);-ms-transform:matrix(0.234105,0.007499,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.234105,0.007499,-0.008004,0.249872,0,0);}
.m94_c01034{transform:matrix(0.234240,0.007503,-0.008004,0.249872,0,0);-ms-transform:matrix(0.234240,0.007503,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.234240,0.007503,-0.008004,0.249872,0,0);}
.m7a_c01034{transform:matrix(0.234410,0.007509,-0.008004,0.249872,0,0);-ms-transform:matrix(0.234410,0.007509,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.234410,0.007509,-0.008004,0.249872,0,0);}
.m169_c01034{transform:matrix(0.234802,0.014352,-0.015252,0.249534,0,0);-ms-transform:matrix(0.234802,0.014352,-0.015252,0.249534,0,0);-webkit-transform:matrix(0.234802,0.014352,-0.015252,0.249534,0,0);}
.m11f_c01034{transform:matrix(0.234994,0.007998,-0.008504,0.249855,0,0);-ms-transform:matrix(0.234994,0.007998,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.234994,0.007998,-0.008504,0.249855,0,0);}
.m30_c01034{transform:matrix(0.235264,0.007536,-0.008004,0.249872,0,0);-ms-transform:matrix(0.235264,0.007536,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.235264,0.007536,-0.008004,0.249872,0,0);}
.m81_c01034{transform:matrix(0.235269,0.007536,-0.008004,0.249872,0,0);-ms-transform:matrix(0.235269,0.007536,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.235269,0.007536,-0.008004,0.249872,0,0);}
.mde_c01034{transform:matrix(0.235312,0.009657,-0.010252,0.249790,0,0);-ms-transform:matrix(0.235312,0.009657,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.235312,0.009657,-0.010252,0.249790,0,0);}
.m8_c01034{transform:matrix(0.235330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235330,0.000000,0.000000,0.250000,0,0);}
.m11b_c01034{transform:matrix(0.235516,0.012259,-0.012995,0.249662,0,0);-ms-transform:matrix(0.235516,0.012259,-0.012995,0.249662,0,0);-webkit-transform:matrix(0.235516,0.012259,-0.012995,0.249662,0,0);}
.m120_c01034{transform:matrix(0.235659,0.008020,-0.008504,0.249855,0,0);-ms-transform:matrix(0.235659,0.008020,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.235659,0.008020,-0.008504,0.249855,0,0);}
.m28_c01034{transform:matrix(0.235799,0.007553,-0.008004,0.249872,0,0);-ms-transform:matrix(0.235799,0.007553,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.235799,0.007553,-0.008004,0.249872,0,0);}
.m67_c01034{transform:matrix(0.236319,0.007570,-0.008004,0.249872,0,0);-ms-transform:matrix(0.236319,0.007570,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.236319,0.007570,-0.008004,0.249872,0,0);}
.m1f_c01034{transform:matrix(0.236444,0.007574,-0.008004,0.249872,0,0);-ms-transform:matrix(0.236444,0.007574,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.236444,0.007574,-0.008004,0.249872,0,0);}
.m143_c01034{transform:matrix(0.236758,0.004735,-0.004999,0.249950,0,0);-ms-transform:matrix(0.236758,0.004735,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.236758,0.004735,-0.004999,0.249950,0,0);}
.m84_c01034{transform:matrix(0.236764,0.007584,-0.008004,0.249872,0,0);-ms-transform:matrix(0.236764,0.007584,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.236764,0.007584,-0.008004,0.249872,0,0);}
.m4_c01034{transform:matrix(0.237065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237065,0.000000,0.000000,0.250000,0,0);}
.m15e_c01034{transform:matrix(0.237230,0.009736,-0.010252,0.249790,0,0);-ms-transform:matrix(0.237230,0.009736,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.237230,0.009736,-0.010252,0.249790,0,0);}
.mf8_c01034{transform:matrix(0.237390,0.009743,-0.010252,0.249790,0,0);-ms-transform:matrix(0.237390,0.009743,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.237390,0.009743,-0.010252,0.249790,0,0);}
.m75_c01034{transform:matrix(0.238033,0.007625,-0.008004,0.249872,0,0);-ms-transform:matrix(0.238033,0.007625,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.238033,0.007625,-0.008004,0.249872,0,0);}
.mba_c01034{transform:matrix(0.238608,0.007643,-0.008004,0.249872,0,0);-ms-transform:matrix(0.238608,0.007643,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.238608,0.007643,-0.008004,0.249872,0,0);}
.m77_c01034{transform:matrix(0.239107,0.007659,-0.008004,0.249872,0,0);-ms-transform:matrix(0.239107,0.007659,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.239107,0.007659,-0.008004,0.249872,0,0);}
.m76_c01034{transform:matrix(0.239422,0.007669,-0.008004,0.249872,0,0);-ms-transform:matrix(0.239422,0.007669,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.239422,0.007669,-0.008004,0.249872,0,0);}
.m66_c01034{transform:matrix(0.239727,0.007679,-0.008004,0.249872,0,0);-ms-transform:matrix(0.239727,0.007679,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.239727,0.007679,-0.008004,0.249872,0,0);}
.mb4_c01034{transform:matrix(0.239942,0.007686,-0.008004,0.249872,0,0);-ms-transform:matrix(0.239942,0.007686,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.239942,0.007686,-0.008004,0.249872,0,0);}
.m166_c01034{transform:matrix(0.240421,0.014695,-0.015252,0.249534,0,0);-ms-transform:matrix(0.240421,0.014695,-0.015252,0.249534,0,0);-webkit-transform:matrix(0.240421,0.014695,-0.015252,0.249534,0,0);}
.m8e_c01034{transform:matrix(0.240512,0.007704,-0.008004,0.249872,0,0);-ms-transform:matrix(0.240512,0.007704,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.240512,0.007704,-0.008004,0.249872,0,0);}
.m12b_c01034{transform:matrix(0.241015,0.008203,-0.008504,0.249855,0,0);-ms-transform:matrix(0.241015,0.008203,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.241015,0.008203,-0.008504,0.249855,0,0);}
.mc6_c01034{transform:matrix(0.242281,0.007761,-0.008004,0.249872,0,0);-ms-transform:matrix(0.242281,0.007761,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.242281,0.007761,-0.008004,0.249872,0,0);}
.m6f_c01034{transform:matrix(0.242456,0.007766,-0.008004,0.249872,0,0);-ms-transform:matrix(0.242456,0.007766,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.242456,0.007766,-0.008004,0.249872,0,0);}
.m112_c01034{transform:matrix(0.242786,0.009964,-0.010252,0.249790,0,0);-ms-transform:matrix(0.242786,0.009964,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.242786,0.009964,-0.010252,0.249790,0,0);}
.m31_c01034{transform:matrix(0.242805,0.007778,-0.008004,0.249872,0,0);-ms-transform:matrix(0.242805,0.007778,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.242805,0.007778,-0.008004,0.249872,0,0);}
.mca_c01034{transform:matrix(0.243085,0.007787,-0.008004,0.249872,0,0);-ms-transform:matrix(0.243085,0.007787,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.243085,0.007787,-0.008004,0.249872,0,0);}
.m25_c01034{transform:matrix(0.243370,0.007796,-0.008004,0.249872,0,0);-ms-transform:matrix(0.243370,0.007796,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.243370,0.007796,-0.008004,0.249872,0,0);}
.mad_c01034{transform:matrix(0.243915,0.007813,-0.008004,0.249872,0,0);-ms-transform:matrix(0.243915,0.007813,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.243915,0.007813,-0.008004,0.249872,0,0);}
.m17_c01034{transform:matrix(0.243970,0.007815,-0.008004,0.249872,0,0);-ms-transform:matrix(0.243970,0.007815,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.243970,0.007815,-0.008004,0.249872,0,0);}
.m61_c01034{transform:matrix(0.244325,0.007826,-0.008004,0.249872,0,0);-ms-transform:matrix(0.244325,0.007826,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.244325,0.007826,-0.008004,0.249872,0,0);}
.md1_c01034{transform:matrix(0.244350,0.007827,-0.008004,0.249872,0,0);-ms-transform:matrix(0.244350,0.007827,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.244350,0.007827,-0.008004,0.249872,0,0);}
.m123_c01034{transform:matrix(0.245223,0.008346,-0.008504,0.249855,0,0);-ms-transform:matrix(0.245223,0.008346,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.245223,0.008346,-0.008504,0.249855,0,0);}
.m63_c01034{transform:matrix(0.245864,0.007876,-0.008004,0.249872,0,0);-ms-transform:matrix(0.245864,0.007876,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.245864,0.007876,-0.008004,0.249872,0,0);}
.m11e_c01034{transform:matrix(0.246042,0.012807,-0.012995,0.249662,0,0);-ms-transform:matrix(0.246042,0.012807,-0.012995,0.249662,0,0);-webkit-transform:matrix(0.246042,0.012807,-0.012995,0.249662,0,0);}
.m41_c01034{transform:matrix(0.246494,0.007896,-0.008004,0.249872,0,0);-ms-transform:matrix(0.246494,0.007896,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.246494,0.007896,-0.008004,0.249872,0,0);}
.m12c_c01034{transform:matrix(0.246592,0.008393,-0.008504,0.249855,0,0);-ms-transform:matrix(0.246592,0.008393,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.246592,0.008393,-0.008504,0.249855,0,0);}
.m15_c01034{transform:matrix(0.246604,0.007899,-0.008004,0.249872,0,0);-ms-transform:matrix(0.246604,0.007899,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.246604,0.007899,-0.008004,0.249872,0,0);}
.mb2_c01034{transform:matrix(0.246718,0.007903,-0.008004,0.249872,0,0);-ms-transform:matrix(0.246718,0.007903,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.246718,0.007903,-0.008004,0.249872,0,0);}
.m54_c01034{transform:matrix(0.246893,0.007908,-0.008004,0.249872,0,0);-ms-transform:matrix(0.246893,0.007908,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.246893,0.007908,-0.008004,0.249872,0,0);}
.m9b_c01034{transform:matrix(0.247088,0.007915,-0.008004,0.249872,0,0);-ms-transform:matrix(0.247088,0.007915,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.247088,0.007915,-0.008004,0.249872,0,0);}
.m89_c01034{transform:matrix(0.247498,0.007928,-0.008004,0.249872,0,0);-ms-transform:matrix(0.247498,0.007928,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.247498,0.007928,-0.008004,0.249872,0,0);}
.m121_c01034{transform:matrix(0.247517,0.008424,-0.008504,0.249855,0,0);-ms-transform:matrix(0.247517,0.008424,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.247517,0.008424,-0.008504,0.249855,0,0);}
.m12_c01034{transform:matrix(0.248797,0.007969,-0.008004,0.249872,0,0);-ms-transform:matrix(0.248797,0.007969,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.248797,0.007969,-0.008004,0.249872,0,0);}
.m68_c01034{transform:matrix(0.249477,0.007991,-0.008004,0.249872,0,0);-ms-transform:matrix(0.249477,0.007991,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.249477,0.007991,-0.008004,0.249872,0,0);}
.m93_c01034{transform:matrix(0.249632,0.007996,-0.008004,0.249872,0,0);-ms-transform:matrix(0.249632,0.007996,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.249632,0.007996,-0.008004,0.249872,0,0);}
.m1a_c01034{transform:matrix(0.249867,0.008004,-0.008004,0.249872,0,0);-ms-transform:matrix(0.249867,0.008004,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.249867,0.008004,-0.008004,0.249872,0,0);}
.m144_c01034{transform:matrix(0.249945,0.004999,-0.004999,0.249950,0,0);-ms-transform:matrix(0.249945,0.004999,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.249945,0.004999,-0.004999,0.249950,0,0);}
.m15c_c01034{transform:matrix(0.249990,0.010260,-0.010252,0.249790,0,0);-ms-transform:matrix(0.249990,0.010260,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.249990,0.010260,-0.010252,0.249790,0,0);}
.m1c_c01034{transform:matrix(0.250027,0.008009,-0.008004,0.249872,0,0);-ms-transform:matrix(0.250027,0.008009,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.250027,0.008009,-0.008004,0.249872,0,0);}
.mc7_c01034{transform:matrix(0.250182,0.008014,-0.008004,0.249872,0,0);-ms-transform:matrix(0.250182,0.008014,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.250182,0.008014,-0.008004,0.249872,0,0);}
.m78_c01034{transform:matrix(0.250631,0.008028,-0.008004,0.249872,0,0);-ms-transform:matrix(0.250631,0.008028,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.250631,0.008028,-0.008004,0.249872,0,0);}
.m148_c01034{transform:matrix(0.250765,0.005015,-0.004999,0.249950,0,0);-ms-transform:matrix(0.250765,0.005015,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.250765,0.005015,-0.004999,0.249950,0,0);}
.mbe_c01034{transform:matrix(0.250801,0.008034,-0.008004,0.249872,0,0);-ms-transform:matrix(0.250801,0.008034,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.250801,0.008034,-0.008004,0.249872,0,0);}
.m125_c01034{transform:matrix(0.250945,0.008541,-0.008504,0.249855,0,0);-ms-transform:matrix(0.250945,0.008541,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.250945,0.008541,-0.008504,0.249855,0,0);}
.m6a_c01034{transform:matrix(0.252446,0.008086,-0.008004,0.249872,0,0);-ms-transform:matrix(0.252446,0.008086,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.252446,0.008086,-0.008004,0.249872,0,0);}
.m22_c01034{transform:matrix(0.252975,0.008103,-0.008004,0.249872,0,0);-ms-transform:matrix(0.252975,0.008103,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.252975,0.008103,-0.008004,0.249872,0,0);}
.m135_c01034{transform:matrix(0.254867,0.008674,-0.008504,0.249855,0,0);-ms-transform:matrix(0.254867,0.008674,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.254867,0.008674,-0.008504,0.249855,0,0);}
.m95_c01034{transform:matrix(0.255179,0.008174,-0.008004,0.249872,0,0);-ms-transform:matrix(0.255179,0.008174,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.255179,0.008174,-0.008004,0.249872,0,0);}
.m134_c01034{transform:matrix(0.255557,0.008698,-0.008504,0.249855,0,0);-ms-transform:matrix(0.255557,0.008698,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.255557,0.008698,-0.008504,0.249855,0,0);}
.m1d_c01034{transform:matrix(0.256563,0.008218,-0.008004,0.249872,0,0);-ms-transform:matrix(0.256563,0.008218,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.256563,0.008218,-0.008004,0.249872,0,0);}
.m90_c01034{transform:matrix(0.256688,0.008222,-0.008004,0.249872,0,0);-ms-transform:matrix(0.256688,0.008222,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.256688,0.008222,-0.008004,0.249872,0,0);}
.m138_c01034{transform:matrix(0.257146,0.008752,-0.008504,0.249855,0,0);-ms-transform:matrix(0.257146,0.008752,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.257146,0.008752,-0.008504,0.249855,0,0);}
.mc1_c01034{transform:matrix(0.258183,0.008270,-0.008004,0.249872,0,0);-ms-transform:matrix(0.258183,0.008270,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.258183,0.008270,-0.008004,0.249872,0,0);}
.m13d_c01034{transform:matrix(0.258230,0.008789,-0.008504,0.249855,0,0);-ms-transform:matrix(0.258230,0.008789,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.258230,0.008789,-0.008504,0.249855,0,0);}
.m99_c01034{transform:matrix(0.258243,0.008272,-0.008004,0.249872,0,0);-ms-transform:matrix(0.258243,0.008272,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.258243,0.008272,-0.008004,0.249872,0,0);}
.m20_c01034{transform:matrix(0.258288,0.008273,-0.008004,0.249872,0,0);-ms-transform:matrix(0.258288,0.008273,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.258288,0.008273,-0.008004,0.249872,0,0);}
.m45_c01034{transform:matrix(0.259662,0.008317,-0.008004,0.249872,0,0);-ms-transform:matrix(0.259662,0.008317,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.259662,0.008317,-0.008004,0.249872,0,0);}
.m29_c01034{transform:matrix(0.259812,0.008322,-0.008004,0.249872,0,0);-ms-transform:matrix(0.259812,0.008322,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.259812,0.008322,-0.008004,0.249872,0,0);}
.mcd_c01034{transform:matrix(0.259987,0.008328,-0.008004,0.249872,0,0);-ms-transform:matrix(0.259987,0.008328,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.259987,0.008328,-0.008004,0.249872,0,0);}
.m7c_c01034{transform:matrix(0.260571,0.008347,-0.008004,0.249872,0,0);-ms-transform:matrix(0.260571,0.008347,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.260571,0.008347,-0.008004,0.249872,0,0);}
.m72_c01034{transform:matrix(0.260906,0.008357,-0.008004,0.249872,0,0);-ms-transform:matrix(0.260906,0.008357,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.260906,0.008357,-0.008004,0.249872,0,0);}
.mb5_c01034{transform:matrix(0.261151,0.008365,-0.008004,0.249872,0,0);-ms-transform:matrix(0.261151,0.008365,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.261151,0.008365,-0.008004,0.249872,0,0);}
.maa_c01034{transform:matrix(0.261836,0.008387,-0.008004,0.249872,0,0);-ms-transform:matrix(0.261836,0.008387,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.261836,0.008387,-0.008004,0.249872,0,0);}
.mac_c01034{transform:matrix(0.262021,0.008393,-0.008004,0.249872,0,0);-ms-transform:matrix(0.262021,0.008393,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.262021,0.008393,-0.008004,0.249872,0,0);}
.m97_c01034{transform:matrix(0.262226,0.008400,-0.008004,0.249872,0,0);-ms-transform:matrix(0.262226,0.008400,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.262226,0.008400,-0.008004,0.249872,0,0);}
.m8b_c01034{transform:matrix(0.262565,0.008411,-0.008004,0.249872,0,0);-ms-transform:matrix(0.262565,0.008411,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.262565,0.008411,-0.008004,0.249872,0,0);}
.m12e_c01034{transform:matrix(0.262743,0.008942,-0.008504,0.249855,0,0);-ms-transform:matrix(0.262743,0.008942,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.262743,0.008942,-0.008504,0.249855,0,0);}
.mdd_c01034{transform:matrix(0.263014,0.010794,-0.010252,0.249790,0,0);-ms-transform:matrix(0.263014,0.010794,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.263014,0.010794,-0.010252,0.249790,0,0);}
.m8d_c01034{transform:matrix(0.263430,0.008438,-0.008004,0.249872,0,0);-ms-transform:matrix(0.263430,0.008438,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.263430,0.008438,-0.008004,0.249872,0,0);}
.me_c01034{transform:matrix(0.263480,0.008440,-0.008004,0.249872,0,0);-ms-transform:matrix(0.263480,0.008440,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.263480,0.008440,-0.008004,0.249872,0,0);}
.mc_c01034{transform:matrix(0.263970,0.008455,-0.008004,0.249872,0,0);-ms-transform:matrix(0.263970,0.008455,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.263970,0.008455,-0.008004,0.249872,0,0);}
.m13_c01034{transform:matrix(0.264409,0.008470,-0.008004,0.249872,0,0);-ms-transform:matrix(0.264409,0.008470,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.264409,0.008470,-0.008004,0.249872,0,0);}
.mf6_c01034{transform:matrix(0.264632,0.010861,-0.010252,0.249790,0,0);-ms-transform:matrix(0.264632,0.010861,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.264632,0.010861,-0.010252,0.249790,0,0);}
.m130_c01034{transform:matrix(0.265166,0.009025,-0.008504,0.249855,0,0);-ms-transform:matrix(0.265166,0.009025,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.265166,0.009025,-0.008504,0.249855,0,0);}
.m26_c01034{transform:matrix(0.265204,0.008495,-0.008004,0.249872,0,0);-ms-transform:matrix(0.265204,0.008495,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.265204,0.008495,-0.008004,0.249872,0,0);}
.me4_c01034{transform:matrix(0.266001,0.010917,-0.010252,0.249790,0,0);-ms-transform:matrix(0.266001,0.010917,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.266001,0.010917,-0.010252,0.249790,0,0);}
.mcb_c01034{transform:matrix(0.266129,0.008525,-0.008004,0.249872,0,0);-ms-transform:matrix(0.266129,0.008525,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.266129,0.008525,-0.008004,0.249872,0,0);}
.m70_c01034{transform:matrix(0.266343,0.008532,-0.008004,0.249872,0,0);-ms-transform:matrix(0.266343,0.008532,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.266343,0.008532,-0.008004,0.249872,0,0);}
.mbd_c01034{transform:matrix(0.266383,0.008533,-0.008004,0.249872,0,0);-ms-transform:matrix(0.266383,0.008533,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.266383,0.008533,-0.008004,0.249872,0,0);}
.m8c_c01034{transform:matrix(0.266853,0.008548,-0.008004,0.249872,0,0);-ms-transform:matrix(0.266853,0.008548,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.266853,0.008548,-0.008004,0.249872,0,0);}
.mc9_c01034{transform:matrix(0.266873,0.008548,-0.008004,0.249872,0,0);-ms-transform:matrix(0.266873,0.008548,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.266873,0.008548,-0.008004,0.249872,0,0);}
.mc0_c01034{transform:matrix(0.267078,0.008555,-0.008004,0.249872,0,0);-ms-transform:matrix(0.267078,0.008555,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.267078,0.008555,-0.008004,0.249872,0,0);}
.m1b_c01034{transform:matrix(0.267513,0.008569,-0.008004,0.249872,0,0);-ms-transform:matrix(0.267513,0.008569,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.267513,0.008569,-0.008004,0.249872,0,0);}
.mb8_c01034{transform:matrix(0.268662,0.008606,-0.008004,0.249872,0,0);-ms-transform:matrix(0.268662,0.008606,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.268662,0.008606,-0.008004,0.249872,0,0);}
.mc2_c01034{transform:matrix(0.268772,0.008609,-0.008004,0.249872,0,0);-ms-transform:matrix(0.268772,0.008609,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.268772,0.008609,-0.008004,0.249872,0,0);}
.m19_c01034{transform:matrix(0.268932,0.008614,-0.008004,0.249872,0,0);-ms-transform:matrix(0.268932,0.008614,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.268932,0.008614,-0.008004,0.249872,0,0);}
.m0_c01034{transform:matrix(0.269260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269260,0.000000,0.000000,0.250000,0,0);}
.m91_c01034{transform:matrix(0.269697,0.008639,-0.008004,0.249872,0,0);-ms-transform:matrix(0.269697,0.008639,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.269697,0.008639,-0.008004,0.249872,0,0);}
.mab_c01034{transform:matrix(0.270086,0.008651,-0.008004,0.249872,0,0);-ms-transform:matrix(0.270086,0.008651,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.270086,0.008651,-0.008004,0.249872,0,0);}
.m24_c01034{transform:matrix(0.270501,0.008665,-0.008004,0.249872,0,0);-ms-transform:matrix(0.270501,0.008665,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.270501,0.008665,-0.008004,0.249872,0,0);}
.mc3_c01034{transform:matrix(0.270771,0.008673,-0.008004,0.249872,0,0);-ms-transform:matrix(0.270771,0.008673,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.270771,0.008673,-0.008004,0.249872,0,0);}
.m8a_c01034{transform:matrix(0.271541,0.008698,-0.008004,0.249872,0,0);-ms-transform:matrix(0.271541,0.008698,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.271541,0.008698,-0.008004,0.249872,0,0);}
.mf_c01034{transform:matrix(0.272625,0.008733,-0.008004,0.249872,0,0);-ms-transform:matrix(0.272625,0.008733,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.272625,0.008733,-0.008004,0.249872,0,0);}
.md_c01034{transform:matrix(0.273205,0.008751,-0.008004,0.249872,0,0);-ms-transform:matrix(0.273205,0.008751,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.273205,0.008751,-0.008004,0.249872,0,0);}
.mb3_c01034{transform:matrix(0.273500,0.008761,-0.008004,0.249872,0,0);-ms-transform:matrix(0.273500,0.008761,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.273500,0.008761,-0.008004,0.249872,0,0);}
.m12f_c01034{transform:matrix(0.273577,0.009311,-0.008504,0.249855,0,0);-ms-transform:matrix(0.273577,0.009311,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.273577,0.009311,-0.008504,0.249855,0,0);}
.mce_c01034{transform:matrix(0.274149,0.008782,-0.008004,0.249872,0,0);-ms-transform:matrix(0.274149,0.008782,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.274149,0.008782,-0.008004,0.249872,0,0);}
.mc4_c01034{transform:matrix(0.274349,0.008788,-0.008004,0.249872,0,0);-ms-transform:matrix(0.274349,0.008788,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.274349,0.008788,-0.008004,0.249872,0,0);}
.m74_c01034{transform:matrix(0.274674,0.008798,-0.008004,0.249872,0,0);-ms-transform:matrix(0.274674,0.008798,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.274674,0.008798,-0.008004,0.249872,0,0);}
.mc5_c01034{transform:matrix(0.275943,0.008839,-0.008004,0.249872,0,0);-ms-transform:matrix(0.275943,0.008839,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.275943,0.008839,-0.008004,0.249872,0,0);}
.mb9_c01034{transform:matrix(0.275958,0.008840,-0.008004,0.249872,0,0);-ms-transform:matrix(0.275958,0.008840,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.275958,0.008840,-0.008004,0.249872,0,0);}
.m16_c01034{transform:matrix(0.276063,0.008843,-0.008004,0.249872,0,0);-ms-transform:matrix(0.276063,0.008843,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.276063,0.008843,-0.008004,0.249872,0,0);}
.mb7_c01034{transform:matrix(0.276998,0.008873,-0.008004,0.249872,0,0);-ms-transform:matrix(0.276998,0.008873,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.276998,0.008873,-0.008004,0.249872,0,0);}
.m18_c01034{transform:matrix(0.278267,0.008913,-0.008004,0.249872,0,0);-ms-transform:matrix(0.278267,0.008913,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.278267,0.008913,-0.008004,0.249872,0,0);}
.m9a_c01034{transform:matrix(0.279072,0.008939,-0.008004,0.249872,0,0);-ms-transform:matrix(0.279072,0.008939,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.279072,0.008939,-0.008004,0.249872,0,0);}
.me3_c01034{transform:matrix(0.280164,0.011498,-0.010252,0.249790,0,0);-ms-transform:matrix(0.280164,0.011498,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.280164,0.011498,-0.010252,0.249790,0,0);}
.m6e_c01034{transform:matrix(0.280171,0.008974,-0.008004,0.249872,0,0);-ms-transform:matrix(0.280171,0.008974,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.280171,0.008974,-0.008004,0.249872,0,0);}
.m87_c01034{transform:matrix(0.280766,0.008994,-0.008004,0.249872,0,0);-ms-transform:matrix(0.280766,0.008994,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.280766,0.008994,-0.008004,0.249872,0,0);}
.m85_c01034{transform:matrix(0.280826,0.008995,-0.008004,0.249872,0,0);-ms-transform:matrix(0.280826,0.008995,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.280826,0.008995,-0.008004,0.249872,0,0);}
.m8f_c01034{transform:matrix(0.281086,0.009004,-0.008004,0.249872,0,0);-ms-transform:matrix(0.281086,0.009004,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.281086,0.009004,-0.008004,0.249872,0,0);}
.m23_c01034{transform:matrix(0.281930,0.009031,-0.008004,0.249872,0,0);-ms-transform:matrix(0.281930,0.009031,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.281930,0.009031,-0.008004,0.249872,0,0);}
.mbb_c01034{transform:matrix(0.283035,0.009066,-0.008004,0.249872,0,0);-ms-transform:matrix(0.283035,0.009066,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.283035,0.009066,-0.008004,0.249872,0,0);}
.m3f_c01034{transform:matrix(0.284289,0.009106,-0.008004,0.249872,0,0);-ms-transform:matrix(0.284289,0.009106,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.284289,0.009106,-0.008004,0.249872,0,0);}
.md0_c01034{transform:matrix(0.284294,0.009107,-0.008004,0.249872,0,0);-ms-transform:matrix(0.284294,0.009107,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.284294,0.009107,-0.008004,0.249872,0,0);}
.m11_c01034{transform:matrix(0.286148,0.009166,-0.008004,0.249872,0,0);-ms-transform:matrix(0.286148,0.009166,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.286148,0.009166,-0.008004,0.249872,0,0);}
.m42_c01034{transform:matrix(0.286368,0.009173,-0.008004,0.249872,0,0);-ms-transform:matrix(0.286368,0.009173,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.286368,0.009173,-0.008004,0.249872,0,0);}
.m7d_c01034{transform:matrix(0.287343,0.009204,-0.008004,0.249872,0,0);-ms-transform:matrix(0.287343,0.009204,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.287343,0.009204,-0.008004,0.249872,0,0);}
.mdc_c01034{transform:matrix(0.288952,0.011859,-0.010252,0.249790,0,0);-ms-transform:matrix(0.288952,0.011859,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.288952,0.011859,-0.010252,0.249790,0,0);}
.me1_c01034{transform:matrix(0.289187,0.011869,-0.010252,0.249790,0,0);-ms-transform:matrix(0.289187,0.011869,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.289187,0.011869,-0.010252,0.249790,0,0);}
.mbf_c01034{transform:matrix(0.291221,0.009328,-0.008004,0.249872,0,0);-ms-transform:matrix(0.291221,0.009328,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.291221,0.009328,-0.008004,0.249872,0,0);}
.m40_c01034{transform:matrix(0.296523,0.009498,-0.008004,0.249872,0,0);-ms-transform:matrix(0.296523,0.009498,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.296523,0.009498,-0.008004,0.249872,0,0);}
.me2_c01034{transform:matrix(0.297420,0.012206,-0.010252,0.249790,0,0);-ms-transform:matrix(0.297420,0.012206,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.297420,0.012206,-0.010252,0.249790,0,0);}
.mdf_c01034{transform:matrix(0.298179,0.012238,-0.010252,0.249790,0,0);-ms-transform:matrix(0.298179,0.012238,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.298179,0.012238,-0.010252,0.249790,0,0);}
.m43_c01034{transform:matrix(0.298412,0.009559,-0.008004,0.249872,0,0);-ms-transform:matrix(0.298412,0.009559,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.298412,0.009559,-0.008004,0.249872,0,0);}
.m44_c01034{transform:matrix(0.299906,0.009607,-0.008004,0.249872,0,0);-ms-transform:matrix(0.299906,0.009607,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.299906,0.009607,-0.008004,0.249872,0,0);}
.m6b_c01034{transform:matrix(0.302610,0.009693,-0.008004,0.249872,0,0);-ms-transform:matrix(0.302610,0.009693,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.302610,0.009693,-0.008004,0.249872,0,0);}
.me0_c01034{transform:matrix(0.304224,0.012486,-0.010252,0.249790,0,0);-ms-transform:matrix(0.304224,0.012486,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.304224,0.012486,-0.010252,0.249790,0,0);}
.m46_c01034{transform:matrix(0.309086,0.009901,-0.008004,0.249872,0,0);-ms-transform:matrix(0.309086,0.009901,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.309086,0.009901,-0.008004,0.249872,0,0);}
.mb0_c01034{transform:matrix(0.310656,0.009951,-0.008004,0.249872,0,0);-ms-transform:matrix(0.310656,0.009951,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.310656,0.009951,-0.008004,0.249872,0,0);}
.m16c_c01034{transform:matrix(0.313530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313530,0.000000,0.000000,0.250000,0,0);}
.m12d_c01034{transform:matrix(0.320564,0.010910,-0.008504,0.249855,0,0);-ms-transform:matrix(0.320564,0.010910,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.320564,0.010910,-0.008504,0.249855,0,0);}
.md2_c01034{transform:matrix(0.322954,0.010345,-0.008004,0.249872,0,0);-ms-transform:matrix(0.322954,0.010345,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.322954,0.010345,-0.008004,0.249872,0,0);}
.m13a_c01034{transform:matrix(0.327510,0.011146,-0.008504,0.249855,0,0);-ms-transform:matrix(0.327510,0.011146,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.327510,0.011146,-0.008504,0.249855,0,0);}
.m1_c01034{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.mc8_c01034{transform:matrix(0.359196,0.011506,-0.008004,0.249872,0,0);-ms-transform:matrix(0.359196,0.011506,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.359196,0.011506,-0.008004,0.249872,0,0);}
.m27_c01034{transform:matrix(0.447920,0.014348,-0.008004,0.249872,0,0);-ms-transform:matrix(0.447920,0.014348,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.447920,0.014348,-0.008004,0.249872,0,0);}
.m79_c01034{transform:matrix(0.464537,0.014880,-0.008004,0.249872,0,0);-ms-transform:matrix(0.464537,0.014880,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.464537,0.014880,-0.008004,0.249872,0,0);}
.m47_c01034{transform:matrix(0.480529,0.015392,-0.008004,0.249872,0,0);-ms-transform:matrix(0.480529,0.015392,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.480529,0.015392,-0.008004,0.249872,0,0);}
.me5_c01034{transform:matrix(0.630649,0.025882,-0.010252,0.249790,0,0);-ms-transform:matrix(0.630649,0.025882,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.630649,0.025882,-0.010252,0.249790,0,0);}
.v0_c01034{vertical-align:0.000000px;}
.ls0_c01034{letter-spacing:0.000000px;}
.sc__c01034{text-shadow:none;}
.sc0_c01034{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__c01034{-webkit-text-stroke:0px transparent;}
.sc0_c01034{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01034{word-spacing:0.000000px;}
._0_c01034{width:25.472487px;}
.fc0_c01034{color:transparent;}
.fs0_c01034{font-size:18.000000px;}
.fs15_c01034{font-size:60.000000px;}
.fs6_c01034{font-size:65.967817px;}
.fs9_c01034{font-size:65.989505px;}
.fs3_c01034{font-size:71.964891px;}
.fs8_c01034{font-size:77.961966px;}
.fse_c01034{font-size:77.967116px;}
.fs13_c01034{font-size:77.987597px;}
.fs11_c01034{font-size:78.015598px;}
.fs4_c01034{font-size:83.959040px;}
.fsf_c01034{font-size:83.964587px;}
.fsa_c01034{font-size:83.986643px;}
.fs14_c01034{font-size:83.988449px;}
.fs2_c01034{font-size:84.000000px;}
.fsd_c01034{font-size:84.029605px;}
.fs5_c01034{font-size:89.956114px;}
.fs10_c01034{font-size:89.962057px;}
.fsc_c01034{font-size:89.985689px;}
.fs12_c01034{font-size:90.017998px;}
.fs7_c01034{font-size:95.953189px;}
.fsb_c01034{font-size:95.984735px;}
.fs1_c01034{font-size:96.000000px;}
.y0_c01034{bottom:0.000000px;}
.y178_c01034{bottom:47.647639px;}
.y177_c01034{bottom:49.624406px;}
.y176_c01034{bottom:54.983286px;}
.y175_c01034{bottom:57.097577px;}
.y174_c01034{bottom:58.421124px;}
.y179_c01034{bottom:61.290000px;}
.y173_c01034{bottom:64.561232px;}
.y16b_c01034{bottom:66.224241px;}
.y16a_c01034{bottom:67.486098px;}
.y172_c01034{bottom:67.833729px;}
.y171_c01034{bottom:70.539841px;}
.y169_c01034{bottom:70.650642px;}
.y168_c01034{bottom:72.031440px;}
.y170_c01034{bottom:73.311651px;}
.y167_c01034{bottom:74.272500px;}
.y16f_c01034{bottom:79.263909px;}
.y16e_c01034{bottom:82.012294px;}
.y16d_c01034{bottom:83.983022px;}
.y166_c01034{bottom:85.443360px;}
.y165_c01034{bottom:86.671200px;}
.y16c_c01034{bottom:86.689500px;}
.y164_c01034{bottom:89.097600px;}
.y163_c01034{bottom:90.786540px;}
.y162_c01034{bottom:94.853010px;}
.y161_c01034{bottom:96.514950px;}
.y160_c01034{bottom:97.743600px;}
.y15f_c01034{bottom:100.621410px;}
.y15e_c01034{bottom:101.809680px;}
.y15d_c01034{bottom:103.419660px;}
.y15c_c01034{bottom:107.067930px;}
.y15b_c01034{bottom:108.713790px;}
.y15a_c01034{bottom:110.722200px;}
.y159_c01034{bottom:120.880470px;}
.y158_c01034{bottom:121.966200px;}
.y157_c01034{bottom:122.649150px;}
.y156_c01034{bottom:123.545250px;}
.y155_c01034{bottom:127.074840px;}
.y154_c01034{bottom:127.755630px;}
.y153_c01034{bottom:129.052560px;}
.y152_c01034{bottom:131.041620px;}
.y151_c01034{bottom:132.580740px;}
.y150_c01034{bottom:133.656000px;}
.y14f_c01034{bottom:136.751414px;}
.y14e_c01034{bottom:137.514378px;}
.y14d_c01034{bottom:145.682991px;}
.y148_c01034{bottom:147.092016px;}
.y14c_c01034{bottom:147.450708px;}
.y147_c01034{bottom:149.360301px;}
.y14b_c01034{bottom:149.701554px;}
.y14a_c01034{bottom:150.435471px;}
.y149_c01034{bottom:151.227432px;}
.y146_c01034{bottom:152.230085px;}
.y145_c01034{bottom:155.514635px;}
.y144_c01034{bottom:157.248440px;}
.y143_c01034{bottom:158.284014px;}
.y142_c01034{bottom:161.032064px;}
.y141_c01034{bottom:163.405731px;}
.y140_c01034{bottom:164.731604px;}
.y13f_c01034{bottom:165.793781px;}
.y13e_c01034{bottom:166.783514px;}
.y13d_c01034{bottom:168.777954px;}
.y13c_c01034{bottom:174.451506px;}
.y13b_c01034{bottom:175.677032px;}
.y13a_c01034{bottom:176.490375px;}
.y139_c01034{bottom:179.416361px;}
.y138_c01034{bottom:181.279428px;}
.y137_c01034{bottom:181.961072px;}
.y136_c01034{bottom:182.648592px;}
.y135_c01034{bottom:184.728000px;}
.y134_c01034{bottom:186.997781px;}
.y133_c01034{bottom:187.617246px;}
.y132_c01034{bottom:194.053548px;}
.y131_c01034{bottom:195.138675px;}
.y130_c01034{bottom:196.296222px;}
.y12f_c01034{bottom:198.940419px;}
.y12e_c01034{bottom:200.036868px;}
.y12d_c01034{bottom:202.663317px;}
.y12c_c01034{bottom:205.251210px;}
.y12b_c01034{bottom:207.102000px;}
.y12a_c01034{bottom:238.473606px;}
.y129_c01034{bottom:240.800970px;}
.y128_c01034{bottom:243.698046px;}
.y127_c01034{bottom:248.262762px;}
.y126_c01034{bottom:250.015422px;}
.y125_c01034{bottom:252.897912px;}
.y124_c01034{bottom:256.888470px;}
.y123_c01034{bottom:263.112324px;}
.y122_c01034{bottom:264.744006px;}
.y121_c01034{bottom:266.493000px;}
.y120_c01034{bottom:277.204925px;}
.y11f_c01034{bottom:278.020601px;}
.y11e_c01034{bottom:282.107099px;}
.y11d_c01034{bottom:284.388555px;}
.y11c_c01034{bottom:287.753672px;}
.y11b_c01034{bottom:288.862295px;}
.y11a_c01034{bottom:290.713695px;}
.y119_c01034{bottom:295.206578px;}
.y118_c01034{bottom:296.325879px;}
.y117_c01034{bottom:298.922210px;}
.y116_c01034{bottom:306.987925px;}
.y115_c01034{bottom:308.129454px;}
.y114_c01034{bottom:310.829754px;}
.y113_c01034{bottom:313.167635px;}
.y112_c01034{bottom:316.301514px;}
.y111_c01034{bottom:318.193560px;}
.y110_c01034{bottom:320.850554px;}
.y10f_c01034{bottom:323.981297px;}
.y10e_c01034{bottom:325.104420px;}
.y10d_c01034{bottom:328.896116px;}
.y10c_c01034{bottom:343.680890px;}
.y10b_c01034{bottom:345.423578px;}
.y10a_c01034{bottom:346.741397px;}
.y109_c01034{bottom:348.071147px;}
.y108_c01034{bottom:349.419039px;}
.y107_c01034{bottom:351.596805px;}
.y106_c01034{bottom:354.733242px;}
.y105_c01034{bottom:356.028921px;}
.y104_c01034{bottom:360.440026px;}
.y103_c01034{bottom:362.157069px;}
.y102_c01034{bottom:363.485036px;}
.y101_c01034{bottom:366.939623px;}
.y100_c01034{bottom:368.309940px;}
.yff_c01034{bottom:378.163800px;}
.yfe_c01034{bottom:381.173629px;}
.yfd_c01034{bottom:382.466108px;}
.yfc_c01034{bottom:385.095483px;}
.yfb_c01034{bottom:386.393127px;}
.yfa_c01034{bottom:389.437497px;}
.yf9_c01034{bottom:390.680267px;}
.yf8_c01034{bottom:391.968562px;}
.yf7_c01034{bottom:393.349779px;}
.yf6_c01034{bottom:394.968267px;}
.yf5_c01034{bottom:397.966373px;}
.yf4_c01034{bottom:400.501844px;}
.yf3_c01034{bottom:401.413437px;}
.yf2_c01034{bottom:403.943642px;}
.yf1_c01034{bottom:411.823143px;}
.yf0_c01034{bottom:413.822324px;}
.yef_c01034{bottom:415.673105px;}
.yee_c01034{bottom:419.330817px;}
.yed_c01034{bottom:422.059941px;}
.yec_c01034{bottom:426.981356px;}
.yeb_c01034{bottom:430.578798px;}
.yea_c01034{bottom:431.926386px;}
.ye9_c01034{bottom:433.765667px;}
.ye8_c01034{bottom:436.885500px;}
.ye7_c01034{bottom:457.110504px;}
.ye6_c01034{bottom:461.143530px;}
.ye5_c01034{bottom:462.865542px;}
.ye4_c01034{bottom:464.847630px;}
.ye3_c01034{bottom:465.717135px;}
.ye2_c01034{bottom:466.876866px;}
.ye1_c01034{bottom:469.411309px;}
.ye0_c01034{bottom:471.113902px;}
.ydf_c01034{bottom:472.286764px;}
.yde_c01034{bottom:489.430228px;}
.ydd_c01034{bottom:490.400913px;}
.ydc_c01034{bottom:491.730037px;}
.ydb_c01034{bottom:495.728355px;}
.yda_c01034{bottom:496.704127px;}
.yd9_c01034{bottom:499.654752px;}
.yd8_c01034{bottom:501.648132px;}
.yd7_c01034{bottom:502.622368px;}
.yd6_c01034{bottom:505.289401px;}
.yd5_c01034{bottom:506.554285px;}
.yd4_c01034{bottom:509.534563px;}
.yd3_c01034{bottom:523.658335px;}
.yd2_c01034{bottom:524.767942px;}
.yd1_c01034{bottom:526.149244px;}
.yd0_c01034{bottom:529.135954px;}
.ycf_c01034{bottom:530.215513px;}
.yce_c01034{bottom:532.812283px;}
.ycd_c01034{bottom:536.739417px;}
.ycc_c01034{bottom:538.970209px;}
.ycb_c01034{bottom:539.697087px;}
.yca_c01034{bottom:542.926153px;}
.yc9_c01034{bottom:543.632716px;}
.yc8_c01034{bottom:545.426998px;}
.yc7_c01034{bottom:563.673046px;}
.yc6_c01034{bottom:564.804211px;}
.yc5_c01034{bottom:565.645545px;}
.yc4_c01034{bottom:566.841597px;}
.yc3_c01034{bottom:568.239163px;}
.yc2_c01034{bottom:569.674933px;}
.yc1_c01034{bottom:571.705369px;}
.yc0_c01034{bottom:573.488572px;}
.ybf_c01034{bottom:573.974083px;}
.ybe_c01034{bottom:574.833577px;}
.ybd_c01034{bottom:576.571302px;}
.ybc_c01034{bottom:577.678941px;}
.ybb_c01034{bottom:579.966861px;}
.yba_c01034{bottom:597.252636px;}
.yb9_c01034{bottom:598.240542px;}
.yb8_c01034{bottom:600.542175px;}
.yb7_c01034{bottom:601.237657px;}
.yb6_c01034{bottom:602.213430px;}
.yb5_c01034{bottom:604.555986px;}
.yb4_c01034{bottom:605.513470px;}
.yb3_c01034{bottom:608.462799px;}
.yb2_c01034{bottom:609.475654px;}
.yb1_c01034{bottom:611.816914px;}
.yb0_c01034{bottom:614.418400px;}
.yaf_c01034{bottom:615.389757px;}
.yae_c01034{bottom:616.666246px;}
.yad_c01034{bottom:632.421210px;}
.yac_c01034{bottom:634.364715px;}
.yab_c01034{bottom:635.313568px;}
.yaa_c01034{bottom:637.242060px;}
.ya9_c01034{bottom:638.863188px;}
.ya8_c01034{bottom:641.394753px;}
.ya7_c01034{bottom:642.366241px;}
.ya6_c01034{bottom:643.314855px;}
.ya5_c01034{bottom:643.954857px;}
.ya4_c01034{bottom:645.239602px;}
.ya3_c01034{bottom:647.757114px;}
.ya2_c01034{bottom:649.667088px;}
.ya1_c01034{bottom:650.939700px;}
.ya0_c01034{bottom:668.725891px;}
.y9f_c01034{bottom:671.240823px;}
.y9e_c01034{bottom:672.885210px;}
.y9d_c01034{bottom:673.695160px;}
.y9c_c01034{bottom:675.357745px;}
.y9b_c01034{bottom:676.168560px;}
.y9a_c01034{bottom:677.297763px;}
.y99_c01034{bottom:678.094294px;}
.y98_c01034{bottom:678.925035px;}
.y97_c01034{bottom:679.497127px;}
.y96_c01034{bottom:680.851249px;}
.y95_c01034{bottom:681.668773px;}
.y94_c01034{bottom:684.396069px;}
.y93_c01034{bottom:685.213401px;}
.y92_c01034{bottom:702.924391px;}
.y91_c01034{bottom:703.928800px;}
.y90_c01034{bottom:706.327342px;}
.y8f_c01034{bottom:707.378637px;}
.y8e_c01034{bottom:709.413615px;}
.y8d_c01034{bottom:712.469994px;}
.y8c_c01034{bottom:714.531420px;}
.y8b_c01034{bottom:716.245975px;}
.y8a_c01034{bottom:717.914125px;}
.y89_c01034{bottom:718.952518px;}
.y88_c01034{bottom:722.726724px;}
.y87_c01034{bottom:738.326214px;}
.y86_c01034{bottom:739.356579px;}
.y85_c01034{bottom:741.316225px;}
.y84_c01034{bottom:742.634454px;}
.y83_c01034{bottom:743.610226px;}
.y82_c01034{bottom:745.563249px;}
.y81_c01034{bottom:746.931088px;}
.y80_c01034{bottom:748.551724px;}
.y7f_c01034{bottom:749.568228px;}
.y7e_c01034{bottom:750.631895px;}
.y7d_c01034{bottom:755.167512px;}
.y7c_c01034{bottom:756.463671px;}
.y7b_c01034{bottom:757.806561px;}
.y7a_c01034{bottom:773.199027px;}
.y79_c01034{bottom:774.768935px;}
.y78_c01034{bottom:775.715078px;}
.y77_c01034{bottom:776.946057px;}
.y76_c01034{bottom:778.193240px;}
.y75_c01034{bottom:780.351183px;}
.y74_c01034{bottom:781.292056px;}
.y73_c01034{bottom:783.159020px;}
.y72_c01034{bottom:784.060804px;}
.y71_c01034{bottom:786.232274px;}
.y70_c01034{bottom:787.413913px;}
.y6f_c01034{bottom:790.258140px;}
.y6e_c01034{bottom:791.110441px;}
.y6d_c01034{bottom:792.347363px;}
.y6c_c01034{bottom:809.986368px;}
.y6b_c01034{bottom:812.653970px;}
.y6a_c01034{bottom:813.858416px;}
.y69_c01034{bottom:816.835986px;}
.y68_c01034{bottom:818.332422px;}
.y67_c01034{bottom:820.097013px;}
.y66_c01034{bottom:820.995080px;}
.y65_c01034{bottom:821.891082px;}
.y64_c01034{bottom:823.692639px;}
.y63_c01034{bottom:824.524608px;}
.y62_c01034{bottom:826.624337px;}
.y61_c01034{bottom:844.822956px;}
.y60_c01034{bottom:845.383029px;}
.y5f_c01034{bottom:847.101345px;}
.y5e_c01034{bottom:848.277749px;}
.y5d_c01034{bottom:850.533609px;}
.y5c_c01034{bottom:852.010778px;}
.y5b_c01034{bottom:854.834717px;}
.y5a_c01034{bottom:856.576415px;}
.y59_c01034{bottom:859.126475px;}
.y58_c01034{bottom:862.243941px;}
.y57_c01034{bottom:879.789255px;}
.y56_c01034{bottom:880.738109px;}
.y55_c01034{bottom:881.391012px;}
.y54_c01034{bottom:883.635113px;}
.y53_c01034{bottom:884.283504px;}
.y52_c01034{bottom:886.511450px;}
.y51_c01034{bottom:887.795678px;}
.y50_c01034{bottom:890.642708px;}
.y4f_c01034{bottom:891.955752px;}
.y4e_c01034{bottom:893.530842px;}
.y4d_c01034{bottom:895.430027px;}
.y4c_c01034{bottom:896.377104px;}
.y4b_c01034{bottom:898.239984px;}
.y4a_c01034{bottom:899.219393px;}
.y49_c01034{bottom:916.064391px;}
.y48_c01034{bottom:917.633586px;}
.y47_c01034{bottom:920.914272px;}
.y46_c01034{bottom:921.819155px;}
.y45_c01034{bottom:924.498554px;}
.y44_c01034{bottom:926.607536px;}
.y43_c01034{bottom:928.956347px;}
.y42_c01034{bottom:929.845640px;}
.y41_c01034{bottom:932.784719px;}
.y40_c01034{bottom:934.571033px;}
.y3f_c01034{bottom:953.458115px;}
.y3e_c01034{bottom:956.018699px;}
.y3d_c01034{bottom:957.152600px;}
.y3c_c01034{bottom:957.653400px;}
.y3b_c01034{bottom:958.588968px;}
.y3a_c01034{bottom:960.161802px;}
.y39_c01034{bottom:963.361524px;}
.y38_c01034{bottom:964.975799px;}
.y37_c01034{bottom:965.928770px;}
.y36_c01034{bottom:968.452703px;}
.y35_c01034{bottom:971.002151px;}
.y34_c01034{bottom:985.079408px;}
.y33_c01034{bottom:986.828487px;}
.y32_c01034{bottom:989.156472px;}
.y31_c01034{bottom:991.998476px;}
.y30_c01034{bottom:992.878242px;}
.y2f_c01034{bottom:994.311420px;}
.y2e_c01034{bottom:996.854339px;}
.y2d_c01034{bottom:997.723604px;}
.y2c_c01034{bottom:999.700892px;}
.y2b_c01034{bottom:1002.577691px;}
.y2a_c01034{bottom:1021.967128px;}
.y29_c01034{bottom:1023.424725px;}
.y28_c01034{bottom:1024.177953px;}
.y27_c01034{bottom:1026.285117px;}
.y26_c01034{bottom:1027.535467px;}
.y25_c01034{bottom:1030.024419px;}
.y24_c01034{bottom:1034.329794px;}
.y23_c01034{bottom:1036.190096px;}
.y22_c01034{bottom:1037.088473px;}
.y21_c01034{bottom:1038.938753px;}
.y20_c01034{bottom:1039.815935px;}
.y1f_c01034{bottom:1056.120396px;}
.y1e_c01034{bottom:1057.114110px;}
.y1d_c01034{bottom:1058.787189px;}
.y1c_c01034{bottom:1059.473994px;}
.y1b_c01034{bottom:1062.135747px;}
.y1a_c01034{bottom:1063.432674px;}
.y19_c01034{bottom:1064.420868px;}
.y18_c01034{bottom:1067.727725px;}
.y17_c01034{bottom:1069.710689px;}
.y16_c01034{bottom:1073.991542px;}
.y15_c01034{bottom:1075.303396px;}
.y14_c01034{bottom:1076.249564px;}
.y13_c01034{bottom:1093.334844px;}
.y12_c01034{bottom:1094.441292px;}
.y11_c01034{bottom:1097.988972px;}
.y10_c01034{bottom:1099.020060px;}
.yf_c01034{bottom:1102.187868px;}
.ye_c01034{bottom:1105.031196px;}
.yd_c01034{bottom:1107.877260px;}
.yc_c01034{bottom:1109.983500px;}
.yb_c01034{bottom:1134.018000px;}
.ya_c01034{bottom:1134.510000px;}
.y9_c01034{bottom:1135.251000px;}
.y8_c01034{bottom:1137.207000px;}
.y7_c01034{bottom:1137.943500px;}
.y6_c01034{bottom:1139.388000px;}
.y5_c01034{bottom:1140.600000px;}
.y4_c01034{bottom:1144.174500px;}
.y3_c01034{bottom:1144.530000px;}
.y2_c01034{bottom:1194.361500px;}
.y1_c01034{bottom:1233.360000px;}
.h2_c01034{height:18.000000px;}
.h18_c01034{height:60.000000px;}
.h9_c01034{height:65.967817px;}
.hc_c01034{height:65.989505px;}
.h5_c01034{height:71.964891px;}
.h6_c01034{height:72.222766px;}
.hb_c01034{height:77.961966px;}
.h11_c01034{height:77.967116px;}
.h16_c01034{height:77.987597px;}
.h14_c01034{height:78.015598px;}
.h7_c01034{height:83.959040px;}
.h12_c01034{height:83.964587px;}
.hd_c01034{height:83.986643px;}
.h17_c01034{height:83.988449px;}
.h4_c01034{height:84.000000px;}
.h10_c01034{height:84.029605px;}
.h8_c01034{height:89.956114px;}
.h13_c01034{height:89.962057px;}
.hf_c01034{height:89.985689px;}
.h15_c01034{height:90.017998px;}
.ha_c01034{height:95.953189px;}
.he_c01034{height:95.984735px;}
.h3_c01034{height:96.000000px;}
.h0_c01034{height:1246.320000px;}
.h1_c01034{height:1246.500000px;}
.w1_c01034{width:887.250000px;}
.w0_c01034{width:887.490000px;}
.x0_c01034{left:0.000000px;}
.xf4_c01034{left:133.999920px;}
.xdb_c01034{left:136.002000px;}
.xd3_c01034{left:137.089500px;}
.xcb_c01034{left:138.504374px;}
.xb6_c01034{left:139.509308px;}
.x4_c01034{left:141.198000px;}
.x94_c01034{left:143.062398px;}
.x75_c01034{left:145.457232px;}
.x6a_c01034{left:146.582411px;}
.x55_c01034{left:148.719282px;}
.x3a_c01034{left:151.217010px;}
.x2a_c01034{left:152.498379px;}
.x15_c01034{left:155.525755px;}
.x5_c01034{left:157.333500px;}
.xd4_c01034{left:170.690365px;}
.xbe_c01034{left:172.883429px;}
.xf9_c01034{left:176.521500px;}
.x7e_c01034{left:178.946292px;}
.xdf_c01034{left:181.127470px;}
.x41_c01034{left:184.891625px;}
.x21_c01034{left:186.023408px;}
.x16_c01034{left:187.030737px;}
.x86_c01034{left:188.596622px;}
.x6b_c01034{left:191.315516px;}
.x5f_c01034{left:192.426822px;}
.x9d_c01034{left:197.063922px;}
.xd5_c01034{left:202.037487px;}
.xb7_c01034{left:204.305241px;}
.xec_c01034{left:212.867290px;}
.xcc_c01034{left:214.786431px;}
.x3b_c01034{left:217.285946px;}
.x9e_c01034{left:218.466326px;}
.x8e_c01034{left:220.418859px;}
.x60_c01034{left:222.827783px;}
.x56_c01034{left:226.398969px;}
.xb8_c01034{left:227.650781px;}
.x17_c01034{left:230.701309px;}
.xef_c01034{left:232.999500px;}
.x6c_c01034{left:234.496079px;}
.x32_c01034{left:239.667495px;}
.xa4_c01034{left:240.911852px;}
.xe5_c01034{left:244.958635px;}
.xc7_c01034{left:247.314918px;}
.x42_c01034{left:249.042560px;}
.x22_c01034{left:252.028793px;}
.xfa_c01034{left:253.043649px;}
.x87_c01034{left:254.405090px;}
.x57_c01034{left:257.148590px;}
.xbf_c01034{left:259.142093px;}
.xd_c01034{left:263.620500px;}
.x76_c01034{left:267.076383px;}
.x4e_c01034{left:270.121904px;}
.x95_c01034{left:273.512399px;}
.xe6_c01034{left:276.860469px;}
.xc8_c01034{left:279.362219px;}
.x43_c01034{left:281.653040px;}
.xa5_c01034{left:283.022390px;}
.x23_c01034{left:284.102319px;}
.x7f_c01034{left:287.925161px;}
.xe0_c01034{left:289.034188px;}
.xb9_c01034{left:292.611611px;}
.xfb_c01034{left:298.009038px;}
.x77_c01034{left:300.523959px;}
.x8f_c01034{left:307.066199px;}
.xf0_c01034{left:309.955500px;}
.xe7_c01034{left:311.067199px;}
.x9f_c01034{left:316.229841px;}
.x6_c01034{left:319.842000px;}
.xd6_c01034{left:321.607298px;}
.x58_c01034{left:323.787051px;}
.x33_c01034{left:326.609826px;}
.xe_c01034{left:329.374680px;}
.xf5_c01034{left:331.359840px;}
.xc0_c01034{left:335.201597px;}
.x2b_c01034{left:338.971563px;}
.x88_c01034{left:341.100120px;}
.xed_c01034{left:342.443083px;}
.xdc_c01034{left:343.592202px;}
.x44_c01034{left:347.077844px;}
.xac_c01034{left:348.429626px;}
.x24_c01034{left:350.467392px;}
.x78_c01034{left:354.287372px;}
.x59_c01034{left:356.957181px;}
.x34_c01034{left:359.451123px;}
.x61_c01034{left:366.445923px;}
.x4f_c01034{left:368.088674px;}
.xba_c01034{left:369.393531px;}
.xb1_c01034{left:370.493046px;}
.xa6_c01034{left:371.809683px;}
.x18_c01034{left:373.241755px;}
.x7_c01034{left:374.913000px;}
.xcd_c01034{left:379.620711px;}
.x6d_c01034{left:385.505076px;}
.xe1_c01034{left:387.864958px;}
.x5a_c01034{left:390.191747px;}
.x96_c01034{left:391.901618px;}
.xad_c01034{left:392.970593px;}
.xfc_c01034{left:395.391882px;}
.x80_c01034{left:397.511018px;}
.x45_c01034{left:401.307749px;}
.xa7_c01034{left:404.237789px;}
.xa0_c01034{left:405.754844px;}
.x89_c01034{left:407.416628px;}
.x79_c01034{left:409.546335px;}
.x2_c01034{left:410.940000px;}
.x35_c01034{left:415.044807px;}
.xf_c01034{left:418.225240px;}
.x6e_c01034{left:420.912392px;}
.xae_c01034{left:426.390578px;}
.x81_c01034{left:430.704239px;}
.x50_c01034{left:435.012560px;}
.x19_c01034{left:439.268391px;}
.x8_c01034{left:440.539500px;}
.x62_c01034{left:443.883306px;}
.x1_c01034{left:444.960000px;}
.x46_c01034{left:446.560823px;}
.xd7_c01034{left:453.649123px;}
.x5b_c01034{left:455.488859px;}
.x97_c01034{left:460.402214px;}
.x82_c01034{left:462.548522px;}
.xce_c01034{left:466.593146px;}
.x2c_c01034{left:470.081048px;}
.x9_c01034{left:474.015000px;}
.x63_c01034{left:476.063226px;}
.xc1_c01034{left:477.726777px;}
.xbb_c01034{left:479.214089px;}
.x3_c01034{left:485.730000px;}
.xd8_c01034{left:487.320418px;}
.xb2_c01034{left:490.982935px;}
.xc9_c01034{left:498.525264px;}
.xaf_c01034{left:502.504994px;}
.x25_c01034{left:504.075830px;}
.x10_c01034{left:506.990386px;}
.x6f_c01034{left:508.719618px;}
.x5c_c01034{left:510.822311px;}
.x90_c01034{left:516.964044px;}
.xf6_c01034{left:517.981920px;}
.xdd_c01034{left:519.396222px;}
.x3c_c01034{left:523.829201px;}
.x2d_c01034{left:525.125519px;}
.x98_c01034{left:538.400628px;}
.x83_c01034{left:540.018819px;}
.xe2_c01034{left:541.506612px;}
.x51_c01034{left:543.496320px;}
.x47_c01034{left:544.620083px;}
.x1a_c01034{left:549.388224px;}
.xe8_c01034{left:552.186945px;}
.x70_c01034{left:554.278445px;}
.xc2_c01034{left:556.050576px;}
.x2e_c01034{left:558.912684px;}
.x8a_c01034{left:560.721872px;}
.xa_c01034{left:562.950000px;}
.xcf_c01034{left:565.447572px;}
.xa8_c01034{left:568.839045px;}
.x7a_c01034{left:574.469033px;}
.x64_c01034{left:576.223794px;}
.x36_c01034{left:579.398049px;}
.x1b_c01034{left:582.298894px;}
.x48_c01034{left:588.833054px;}
.x26_c01034{left:592.876328px;}
.xb_c01034{left:596.635500px;}
.x52_c01034{left:600.241925px;}
.xa9_c01034{left:601.315103px;}
.xa1_c01034{left:603.288318px;}
.x11_c01034{left:605.885392px;}
.xe9_c01034{left:608.067226px;}
.xc3_c01034{left:610.430358px;}
.x37_c01034{left:611.602388px;}
.x8b_c01034{left:616.576343px;}
.xc_c01034{left:618.999000px;}
.x5d_c01034{left:620.964692px;}
.x3d_c01034{left:622.930356px;}
.x1c_c01034{left:625.503434px;}
.x91_c01034{left:626.871090px;}
.x38_c01034{left:628.875779px;}
.xd9_c01034{left:630.672923px;}
.xd0_c01034{left:632.448212px;}
.xa2_c01034{left:635.960556px;}
.x12_c01034{left:638.074671px;}
.x7b_c01034{left:640.058991px;}
.xc4_c01034{left:644.077532px;}
.x99_c01034{left:647.224596px;}
.x71_c01034{left:651.799572px;}
.x65_c01034{left:653.192099px;}
.xca_c01034{left:654.671376px;}
.x3e_c01034{left:656.377709px;}
.x92_c01034{left:659.347148px;}
.xfd_c01034{left:660.664773px;}
.xf8_c01034{left:662.633340px;}
.x49_c01034{left:665.551610px;}
.x2f_c01034{left:668.100884px;}
.xf7_c01034{left:672.799800px;}
.x7c_c01034{left:673.956165px;}
.xda_c01034{left:675.385166px;}
.xb3_c01034{left:677.394837px;}
.xe3_c01034{left:680.595900px;}
.x8c_c01034{left:683.009733px;}
.xf1_c01034{left:684.774000px;}
.x4a_c01034{left:687.900900px;}
.xbc_c01034{left:689.599730px;}
.x9a_c01034{left:693.180435px;}
.x72_c01034{left:695.715947px;}
.x66_c01034{left:697.700264px;}
.x84_c01034{left:704.462064px;}
.xde_c01034{left:708.509919px;}
.xc5_c01034{left:710.197055px;}
.x27_c01034{left:712.632279px;}
.x1d_c01034{left:714.125892px;}
.x8d_c01034{left:715.675658px;}
.xe4_c01034{left:719.260798px;}
.xb0_c01034{left:723.567185px;}
.x9b_c01034{left:725.486795px;}
.xf2_c01034{left:729.579000px;}
.x53_c01034{left:732.118785px;}
.xaa_c01034{left:734.426363px;}
.x1e_c01034{left:736.971965px;}
.x28_c01034{left:739.518825px;}
.x67_c01034{left:741.608933px;}
.x13_c01034{left:748.828806px;}
.x7d_c01034{left:751.270772px;}
.xd1_c01034{left:752.500514px;}
.xc6_c01034{left:753.719774px;}
.x39_c01034{left:756.107624px;}
.x30_c01034{left:757.542553px;}
.x93_c01034{left:759.141644px;}
.x73_c01034{left:760.967810px;}
.x5e_c01034{left:764.182749px;}
.x4b_c01034{left:765.217454px;}
.xb4_c01034{left:766.518124px;}
.x9c_c01034{left:768.948650px;}
.xee_c01034{left:773.778240px;}
.x68_c01034{left:775.360971px;}
.xd2_c01034{left:776.471414px;}
.x3f_c01034{left:777.715661px;}
.x14_c01034{left:783.370729px;}
.x4c_c01034{left:787.707603px;}
.x29_c01034{left:791.532438px;}
.x1f_c01034{left:792.668767px;}
.x74_c01034{left:795.288665px;}
.x54_c01034{left:798.125397px;}
.xbd_c01034{left:799.805463px;}
.xa3_c01034{left:801.813752px;}
.x85_c01034{left:804.938022px;}
.xea_c01034{left:806.395966px;}
.xab_c01034{left:811.000113px;}
.xfe_c01034{left:815.271939px;}
.xf3_c01034{left:818.013000px;}
.x4d_c01034{left:820.373528px;}
.x31_c01034{left:824.743710px;}
.x20_c01034{left:825.751765px;}
.x69_c01034{left:831.349086px;}
.x40_c01034{left:835.788851px;}
.xb5_c01034{left:860.325723px;}
.xeb_c01034{left:879.479263px;}
@media print{
.v0_c01034{vertical-align:0.000000pt;}
.ls0_c01034{letter-spacing:0.000000pt;}
.ws0_c01034{word-spacing:0.000000pt;}
._0_c01034{width:22.642210pt;}
.fs0_c01034{font-size:16.000000pt;}
.fs15_c01034{font-size:53.333333pt;}
.fs6_c01034{font-size:58.638060pt;}
.fs9_c01034{font-size:58.657338pt;}
.fs3_c01034{font-size:63.968792pt;}
.fs8_c01034{font-size:69.299525pt;}
.fse_c01034{font-size:69.304103pt;}
.fs13_c01034{font-size:69.322308pt;}
.fs11_c01034{font-size:69.347199pt;}
.fs4_c01034{font-size:74.630258pt;}
.fsf_c01034{font-size:74.635188pt;}
.fsa_c01034{font-size:74.654794pt;}
.fs14_c01034{font-size:74.656399pt;}
.fs2_c01034{font-size:74.666667pt;}
.fsd_c01034{font-size:74.692982pt;}
.fs5_c01034{font-size:79.960990pt;}
.fs10_c01034{font-size:79.966273pt;}
.fsc_c01034{font-size:79.987279pt;}
.fs12_c01034{font-size:80.015998pt;}
.fs7_c01034{font-size:85.291723pt;}
.fsb_c01034{font-size:85.319764pt;}
.fs1_c01034{font-size:85.333333pt;}
.y0_c01034{bottom:0.000000pt;}
.y178_c01034{bottom:42.353457pt;}
.y177_c01034{bottom:44.110583pt;}
.y176_c01034{bottom:48.874032pt;}
.y175_c01034{bottom:50.753401pt;}
.y174_c01034{bottom:51.929888pt;}
.y179_c01034{bottom:54.480000pt;}
.y173_c01034{bottom:57.387761pt;}
.y16b_c01034{bottom:58.865992pt;}
.y16a_c01034{bottom:59.987643pt;}
.y172_c01034{bottom:60.296648pt;}
.y171_c01034{bottom:62.702081pt;}
.y169_c01034{bottom:62.800571pt;}
.y168_c01034{bottom:64.027947pt;}
.y170_c01034{bottom:65.165912pt;}
.y167_c01034{bottom:66.020000pt;}
.y16f_c01034{bottom:70.456808pt;}
.y16e_c01034{bottom:72.899817pt;}
.y16d_c01034{bottom:74.651575pt;}
.y166_c01034{bottom:75.949653pt;}
.y165_c01034{bottom:77.041067pt;}
.y16c_c01034{bottom:77.057333pt;}
.y164_c01034{bottom:79.197867pt;}
.y163_c01034{bottom:80.699147pt;}
.y162_c01034{bottom:84.313787pt;}
.y161_c01034{bottom:85.791067pt;}
.y160_c01034{bottom:86.883200pt;}
.y15f_c01034{bottom:89.441253pt;}
.y15e_c01034{bottom:90.497493pt;}
.y15d_c01034{bottom:91.928587pt;}
.y15c_c01034{bottom:95.171493pt;}
.y15b_c01034{bottom:96.634480pt;}
.y15a_c01034{bottom:98.419733pt;}
.y159_c01034{bottom:107.449307pt;}
.y158_c01034{bottom:108.414400pt;}
.y157_c01034{bottom:109.021467pt;}
.y156_c01034{bottom:109.818000pt;}
.y155_c01034{bottom:112.955413pt;}
.y154_c01034{bottom:113.560560pt;}
.y153_c01034{bottom:114.713387pt;}
.y152_c01034{bottom:116.481440pt;}
.y151_c01034{bottom:117.849547pt;}
.y150_c01034{bottom:118.805333pt;}
.y14f_c01034{bottom:121.556812pt;}
.y14e_c01034{bottom:122.235003pt;}
.y14d_c01034{bottom:129.495992pt;}
.y148_c01034{bottom:130.748459pt;}
.y14c_c01034{bottom:131.067296pt;}
.y147_c01034{bottom:132.764712pt;}
.y14b_c01034{bottom:133.068048pt;}
.y14a_c01034{bottom:133.720419pt;}
.y149_c01034{bottom:134.424384pt;}
.y146_c01034{bottom:135.315631pt;}
.y145_c01034{bottom:138.235231pt;}
.y144_c01034{bottom:139.776391pt;}
.y143_c01034{bottom:140.696901pt;}
.y142_c01034{bottom:143.139612pt;}
.y141_c01034{bottom:145.249539pt;}
.y140_c01034{bottom:146.428092pt;}
.y13f_c01034{bottom:147.372249pt;}
.y13e_c01034{bottom:148.252012pt;}
.y13d_c01034{bottom:150.024848pt;}
.y13c_c01034{bottom:155.068005pt;}
.y13b_c01034{bottom:156.157361pt;}
.y13a_c01034{bottom:156.880333pt;}
.y139_c01034{bottom:159.481209pt;}
.y138_c01034{bottom:161.137269pt;}
.y137_c01034{bottom:161.743175pt;}
.y136_c01034{bottom:162.354304pt;}
.y135_c01034{bottom:164.202667pt;}
.y134_c01034{bottom:166.220249pt;}
.y133_c01034{bottom:166.770885pt;}
.y132_c01034{bottom:172.492043pt;}
.y131_c01034{bottom:173.456600pt;}
.y130_c01034{bottom:174.485531pt;}
.y12f_c01034{bottom:176.835928pt;}
.y12e_c01034{bottom:177.810549pt;}
.y12d_c01034{bottom:180.145171pt;}
.y12c_c01034{bottom:182.445520pt;}
.y12b_c01034{bottom:184.090667pt;}
.y12a_c01034{bottom:211.976539pt;}
.y129_c01034{bottom:214.045307pt;}
.y128_c01034{bottom:216.620485pt;}
.y127_c01034{bottom:220.678011pt;}
.y126_c01034{bottom:222.235931pt;}
.y125_c01034{bottom:224.798144pt;}
.y124_c01034{bottom:228.345307pt;}
.y123_c01034{bottom:233.877621pt;}
.y122_c01034{bottom:235.328005pt;}
.y121_c01034{bottom:236.882667pt;}
.y120_c01034{bottom:246.404377pt;}
.y11f_c01034{bottom:247.129423pt;}
.y11e_c01034{bottom:250.761865pt;}
.y11d_c01034{bottom:252.789827pt;}
.y11c_c01034{bottom:255.781041pt;}
.y11b_c01034{bottom:256.766484pt;}
.y11a_c01034{bottom:258.412173pt;}
.y119_c01034{bottom:262.405847pt;}
.y118_c01034{bottom:263.400781pt;}
.y117_c01034{bottom:265.708631pt;}
.y116_c01034{bottom:272.878156pt;}
.y115_c01034{bottom:273.892848pt;}
.y114_c01034{bottom:276.293115pt;}
.y113_c01034{bottom:278.371231pt;}
.y112_c01034{bottom:281.156901pt;}
.y111_c01034{bottom:282.838720pt;}
.y110_c01034{bottom:285.200492pt;}
.y10f_c01034{bottom:287.983375pt;}
.y10e_c01034{bottom:288.981707pt;}
.y10d_c01034{bottom:292.352103pt;}
.y10c_c01034{bottom:305.494124pt;}
.y10b_c01034{bottom:307.043180pt;}
.y10a_c01034{bottom:308.214575pt;}
.y109_c01034{bottom:309.396575pt;}
.y108_c01034{bottom:310.594701pt;}
.y107_c01034{bottom:312.530493pt;}
.y106_c01034{bottom:315.318437pt;}
.y105_c01034{bottom:316.470152pt;}
.y104_c01034{bottom:320.391135pt;}
.y103_c01034{bottom:321.917395pt;}
.y102_c01034{bottom:323.097809pt;}
.y101_c01034{bottom:326.168553pt;}
.y100_c01034{bottom:327.386613pt;}
.yff_c01034{bottom:336.145600pt;}
.yfe_c01034{bottom:338.821004pt;}
.yfd_c01034{bottom:339.969873pt;}
.yfc_c01034{bottom:342.307096pt;}
.yfb_c01034{bottom:343.460557pt;}
.yfa_c01034{bottom:346.166664pt;}
.yf9_c01034{bottom:347.271348pt;}
.yf8_c01034{bottom:348.416500pt;}
.yf7_c01034{bottom:349.644248pt;}
.yf6_c01034{bottom:351.082904pt;}
.yf5_c01034{bottom:353.747887pt;}
.yf4_c01034{bottom:356.001639pt;}
.yf3_c01034{bottom:356.811944pt;}
.yf2_c01034{bottom:359.061015pt;}
.yf1_c01034{bottom:366.065016pt;}
.yf0_c01034{bottom:367.842065pt;}
.yef_c01034{bottom:369.487204pt;}
.yee_c01034{bottom:372.738504pt;}
.yed_c01034{bottom:375.164392pt;}
.yec_c01034{bottom:379.538983pt;}
.yeb_c01034{bottom:382.736709pt;}
.yea_c01034{bottom:383.934565pt;}
.ye9_c01034{bottom:385.569481pt;}
.ye8_c01034{bottom:388.342667pt;}
.ye7_c01034{bottom:406.320448pt;}
.ye6_c01034{bottom:409.905360pt;}
.ye5_c01034{bottom:411.436037pt;}
.ye4_c01034{bottom:413.197893pt;}
.ye3_c01034{bottom:413.970787pt;}
.ye2_c01034{bottom:415.001659pt;}
.ye1_c01034{bottom:417.254497pt;}
.ye0_c01034{bottom:418.767913pt;}
.ydf_c01034{bottom:419.810457pt;}
.yde_c01034{bottom:435.049092pt;}
.ydd_c01034{bottom:435.911923pt;}
.ydc_c01034{bottom:437.093367pt;}
.ydb_c01034{bottom:440.647427pt;}
.yda_c01034{bottom:441.514780pt;}
.yd9_c01034{bottom:444.137557pt;}
.yd8_c01034{bottom:445.909451pt;}
.yd7_c01034{bottom:446.775439pt;}
.yd6_c01034{bottom:449.146135pt;}
.yd5_c01034{bottom:450.270476pt;}
.yd4_c01034{bottom:452.919612pt;}
.yd3_c01034{bottom:465.474076pt;}
.yd2_c01034{bottom:466.460393pt;}
.yd1_c01034{bottom:467.688217pt;}
.yd0_c01034{bottom:470.343071pt;}
.ycf_c01034{bottom:471.302679pt;}
.yce_c01034{bottom:473.610919pt;}
.ycd_c01034{bottom:477.101704pt;}
.ycc_c01034{bottom:479.084631pt;}
.ycb_c01034{bottom:479.730744pt;}
.yca_c01034{bottom:482.601025pt;}
.yc9_c01034{bottom:483.229081pt;}
.yc8_c01034{bottom:484.823999pt;}
.yc7_c01034{bottom:501.042708pt;}
.yc6_c01034{bottom:502.048188pt;}
.yc5_c01034{bottom:502.796040pt;}
.yc4_c01034{bottom:503.859197pt;}
.yc3_c01034{bottom:505.101479pt;}
.yc2_c01034{bottom:506.377719pt;}
.yc1_c01034{bottom:508.182551pt;}
.yc0_c01034{bottom:509.767620pt;}
.ybf_c01034{bottom:510.199185pt;}
.ybe_c01034{bottom:510.963180pt;}
.ybd_c01034{bottom:512.507824pt;}
.ybc_c01034{bottom:513.492392pt;}
.ybb_c01034{bottom:515.526099pt;}
.yba_c01034{bottom:530.891232pt;}
.yb9_c01034{bottom:531.769371pt;}
.yb8_c01034{bottom:533.815267pt;}
.yb7_c01034{bottom:534.433473pt;}
.yb6_c01034{bottom:535.300827pt;}
.yb5_c01034{bottom:537.383099pt;}
.yb4_c01034{bottom:538.234196pt;}
.yb3_c01034{bottom:540.855821pt;}
.yb2_c01034{bottom:541.756137pt;}
.yb1_c01034{bottom:543.837257pt;}
.yb0_c01034{bottom:546.149689pt;}
.yaf_c01034{bottom:547.013117pt;}
.yae_c01034{bottom:548.147775pt;}
.yad_c01034{bottom:562.152187pt;}
.yac_c01034{bottom:563.879747pt;}
.yab_c01034{bottom:564.723172pt;}
.yaa_c01034{bottom:566.437387pt;}
.ya9_c01034{bottom:567.878389pt;}
.ya8_c01034{bottom:570.128669pt;}
.ya7_c01034{bottom:570.992215pt;}
.ya6_c01034{bottom:571.835427pt;}
.ya5_c01034{bottom:572.404317pt;}
.ya4_c01034{bottom:573.546313pt;}
.ya3_c01034{bottom:575.784101pt;}
.ya2_c01034{bottom:577.481856pt;}
.ya1_c01034{bottom:578.613067pt;}
.ya0_c01034{bottom:594.423015pt;}
.y9f_c01034{bottom:596.658509pt;}
.y9e_c01034{bottom:598.120187pt;}
.y9d_c01034{bottom:598.840143pt;}
.y9c_c01034{bottom:600.317996pt;}
.y9b_c01034{bottom:601.038720pt;}
.y9a_c01034{bottom:602.042456pt;}
.y99_c01034{bottom:602.750484pt;}
.y98_c01034{bottom:603.488920pt;}
.y97_c01034{bottom:603.997447pt;}
.y96_c01034{bottom:605.201111pt;}
.y95_c01034{bottom:605.927799pt;}
.y94_c01034{bottom:608.352061pt;}
.y93_c01034{bottom:609.078579pt;}
.y92_c01034{bottom:624.821681pt;}
.y91_c01034{bottom:625.714489pt;}
.y90_c01034{bottom:627.846527pt;}
.y8f_c01034{bottom:628.781011pt;}
.y8e_c01034{bottom:630.589880pt;}
.y8d_c01034{bottom:633.306661pt;}
.y8c_c01034{bottom:635.139040pt;}
.y8b_c01034{bottom:636.663089pt;}
.y8a_c01034{bottom:638.145889pt;}
.y89_c01034{bottom:639.068905pt;}
.y88_c01034{bottom:642.423755pt;}
.y87_c01034{bottom:656.289968pt;}
.y86_c01034{bottom:657.205848pt;}
.y85_c01034{bottom:658.947756pt;}
.y84_c01034{bottom:660.119515pt;}
.y83_c01034{bottom:660.986868pt;}
.y82_c01034{bottom:662.722888pt;}
.y81_c01034{bottom:663.938745pt;}
.y80_c01034{bottom:665.379311pt;}
.y7f_c01034{bottom:666.282869pt;}
.y7e_c01034{bottom:667.228351pt;}
.y7d_c01034{bottom:671.260011pt;}
.y7c_c01034{bottom:672.412152pt;}
.y7b_c01034{bottom:673.605832pt;}
.y7a_c01034{bottom:687.288024pt;}
.y79_c01034{bottom:688.683497pt;}
.y78_c01034{bottom:689.524513pt;}
.y77_c01034{bottom:690.618717pt;}
.y76_c01034{bottom:691.727324pt;}
.y75_c01034{bottom:693.645496pt;}
.y74_c01034{bottom:694.481828pt;}
.y73_c01034{bottom:696.141351pt;}
.y72_c01034{bottom:696.942937pt;}
.y71_c01034{bottom:698.873132pt;}
.y70_c01034{bottom:699.923479pt;}
.y6f_c01034{bottom:702.451680pt;}
.y6e_c01034{bottom:703.209281pt;}
.y6d_c01034{bottom:704.308767pt;}
.y6c_c01034{bottom:719.987883pt;}
.y6b_c01034{bottom:722.359084pt;}
.y6a_c01034{bottom:723.429703pt;}
.y69_c01034{bottom:726.076432pt;}
.y68_c01034{bottom:727.406597pt;}
.y67_c01034{bottom:728.975123pt;}
.y66_c01034{bottom:729.773404pt;}
.y65_c01034{bottom:730.569851pt;}
.y64_c01034{bottom:732.171235pt;}
.y63_c01034{bottom:732.910763pt;}
.y62_c01034{bottom:734.777188pt;}
.y61_c01034{bottom:750.953739pt;}
.y60_c01034{bottom:751.451581pt;}
.y5f_c01034{bottom:752.978973pt;}
.y5e_c01034{bottom:754.024665pt;}
.y5d_c01034{bottom:756.029875pt;}
.y5c_c01034{bottom:757.342913pt;}
.y5b_c01034{bottom:759.853081pt;}
.y5a_c01034{bottom:761.401257pt;}
.y59_c01034{bottom:763.667977pt;}
.y58_c01034{bottom:766.439059pt;}
.y57_c01034{bottom:782.034893pt;}
.y56_c01034{bottom:782.878319pt;}
.y55_c01034{bottom:783.458677pt;}
.y54_c01034{bottom:785.453433pt;}
.y53_c01034{bottom:786.029781pt;}
.y52_c01034{bottom:788.010177pt;}
.y51_c01034{bottom:789.151713pt;}
.y50_c01034{bottom:791.682407pt;}
.y4f_c01034{bottom:792.849557pt;}
.y4e_c01034{bottom:794.249637pt;}
.y4d_c01034{bottom:795.937801pt;}
.y4c_c01034{bottom:796.779648pt;}
.y4b_c01034{bottom:798.435541pt;}
.y4a_c01034{bottom:799.306127pt;}
.y49_c01034{bottom:814.279459pt;}
.y48_c01034{bottom:815.674299pt;}
.y47_c01034{bottom:818.590464pt;}
.y46_c01034{bottom:819.394804pt;}
.y45_c01034{bottom:821.776492pt;}
.y44_c01034{bottom:823.651143pt;}
.y43_c01034{bottom:825.738975pt;}
.y42_c01034{bottom:826.529457pt;}
.y41_c01034{bottom:829.141972pt;}
.y40_c01034{bottom:830.729807pt;}
.y3f_c01034{bottom:847.518324pt;}
.y3e_c01034{bottom:849.794399pt;}
.y3d_c01034{bottom:850.802311pt;}
.y3c_c01034{bottom:851.247467pt;}
.y3b_c01034{bottom:852.079083pt;}
.y3a_c01034{bottom:853.477157pt;}
.y39_c01034{bottom:856.321355pt;}
.y38_c01034{bottom:857.756265pt;}
.y37_c01034{bottom:858.603351pt;}
.y36_c01034{bottom:860.846847pt;}
.y35_c01034{bottom:863.113023pt;}
.y34_c01034{bottom:875.626140pt;}
.y33_c01034{bottom:877.180877pt;}
.y32_c01034{bottom:879.250197pt;}
.y31_c01034{bottom:881.776423pt;}
.y30_c01034{bottom:882.558437pt;}
.y2f_c01034{bottom:883.832373pt;}
.y2e_c01034{bottom:886.092745pt;}
.y2d_c01034{bottom:886.865425pt;}
.y2c_c01034{bottom:888.623015pt;}
.y2b_c01034{bottom:891.180169pt;}
.y2a_c01034{bottom:908.415225pt;}
.y29_c01034{bottom:909.710867pt;}
.y28_c01034{bottom:910.380403pt;}
.y27_c01034{bottom:912.253437pt;}
.y26_c01034{bottom:913.364860pt;}
.y25_c01034{bottom:915.577261pt;}
.y24_c01034{bottom:919.404261pt;}
.y23_c01034{bottom:921.057863pt;}
.y22_c01034{bottom:921.856420pt;}
.y21_c01034{bottom:923.501113pt;}
.y20_c01034{bottom:924.280831pt;}
.y1f_c01034{bottom:938.773685pt;}
.y1e_c01034{bottom:939.656987pt;}
.y1d_c01034{bottom:941.144168pt;}
.y1c_c01034{bottom:941.754661pt;}
.y1b_c01034{bottom:944.120664pt;}
.y1a_c01034{bottom:945.273488pt;}
.y19_c01034{bottom:946.151883pt;}
.y18_c01034{bottom:949.091311pt;}
.y17_c01034{bottom:950.853945pt;}
.y16_c01034{bottom:954.659148pt;}
.y15_c01034{bottom:955.825241pt;}
.y14_c01034{bottom:956.666279pt;}
.y13_c01034{bottom:971.853195pt;}
.y12_c01034{bottom:972.836704pt;}
.y11_c01034{bottom:975.990197pt;}
.y10_c01034{bottom:976.906720pt;}
.yf_c01034{bottom:979.722549pt;}
.ye_c01034{bottom:982.249952pt;}
.yd_c01034{bottom:984.779787pt;}
.yc_c01034{bottom:986.652000pt;}
.yb_c01034{bottom:1008.016000pt;}
.ya_c01034{bottom:1008.453333pt;}
.y9_c01034{bottom:1009.112000pt;}
.y8_c01034{bottom:1010.850667pt;}
.y7_c01034{bottom:1011.505333pt;}
.y6_c01034{bottom:1012.789333pt;}
.y5_c01034{bottom:1013.866667pt;}
.y4_c01034{bottom:1017.044000pt;}
.y3_c01034{bottom:1017.360000pt;}
.y2_c01034{bottom:1061.654667pt;}
.y1_c01034{bottom:1096.320000pt;}
.h2_c01034{height:16.000000pt;}
.h18_c01034{height:53.333333pt;}
.h9_c01034{height:58.638060pt;}
.hc_c01034{height:58.657338pt;}
.h5_c01034{height:63.968792pt;}
.h6_c01034{height:64.198014pt;}
.hb_c01034{height:69.299525pt;}
.h11_c01034{height:69.304103pt;}
.h16_c01034{height:69.322308pt;}
.h14_c01034{height:69.347199pt;}
.h7_c01034{height:74.630258pt;}
.h12_c01034{height:74.635188pt;}
.hd_c01034{height:74.654794pt;}
.h17_c01034{height:74.656399pt;}
.h4_c01034{height:74.666667pt;}
.h10_c01034{height:74.692982pt;}
.h8_c01034{height:79.960990pt;}
.h13_c01034{height:79.966273pt;}
.hf_c01034{height:79.987279pt;}
.h15_c01034{height:80.015998pt;}
.ha_c01034{height:85.291723pt;}
.he_c01034{height:85.319764pt;}
.h3_c01034{height:85.333333pt;}
.h0_c01034{height:1107.840000pt;}
.h1_c01034{height:1108.000000pt;}
.w1_c01034{width:788.666667pt;}
.w0_c01034{width:788.880000pt;}
.x0_c01034{left:0.000000pt;}
.xf4_c01034{left:119.111040pt;}
.xdb_c01034{left:120.890667pt;}
.xd3_c01034{left:121.857333pt;}
.xcb_c01034{left:123.114999pt;}
.xb6_c01034{left:124.008273pt;}
.x4_c01034{left:125.509333pt;}
.x94_c01034{left:127.166576pt;}
.x75_c01034{left:129.295317pt;}
.x6a_c01034{left:130.295476pt;}
.x55_c01034{left:132.194917pt;}
.x3a_c01034{left:134.415120pt;}
.x2a_c01034{left:135.554115pt;}
.x15_c01034{left:138.245116pt;}
.x5_c01034{left:139.852000pt;}
.xd4_c01034{left:151.724769pt;}
.xbe_c01034{left:153.674159pt;}
.xf9_c01034{left:156.908000pt;}
.x7e_c01034{left:159.063371pt;}
.xdf_c01034{left:161.002196pt;}
.x41_c01034{left:164.348111pt;}
.x21_c01034{left:165.354140pt;}
.x16_c01034{left:166.249544pt;}
.x86_c01034{left:167.641441pt;}
.x6b_c01034{left:170.058236pt;}
.x5f_c01034{left:171.046064pt;}
.x9d_c01034{left:175.167931pt;}
.xd5_c01034{left:179.588877pt;}
.xb7_c01034{left:181.604659pt;}
.xec_c01034{left:189.215369pt;}
.xcc_c01034{left:190.921272pt;}
.x3b_c01034{left:193.143063pt;}
.x9e_c01034{left:194.192289pt;}
.x8e_c01034{left:195.927875pt;}
.x60_c01034{left:198.069140pt;}
.x56_c01034{left:201.243528pt;}
.xb8_c01034{left:202.356249pt;}
.x17_c01034{left:205.067831pt;}
.xef_c01034{left:207.110667pt;}
.x6c_c01034{left:208.440959pt;}
.x32_c01034{left:213.037773pt;}
.xa4_c01034{left:214.143868pt;}
.xe5_c01034{left:217.741009pt;}
.xc7_c01034{left:219.835483pt;}
.x42_c01034{left:221.371164pt;}
.x22_c01034{left:224.025593pt;}
.xfa_c01034{left:224.927688pt;}
.x87_c01034{left:226.137857pt;}
.x57_c01034{left:228.576524pt;}
.xbf_c01034{left:230.348527pt;}
.xd_c01034{left:234.329333pt;}
.x76_c01034{left:237.401229pt;}
.x4e_c01034{left:240.108359pt;}
.x95_c01034{left:243.122132pt;}
.xe6_c01034{left:246.098195pt;}
.xc8_c01034{left:248.321972pt;}
.x43_c01034{left:250.358257pt;}
.xa5_c01034{left:251.575457pt;}
.x23_c01034{left:252.535395pt;}
.x7f_c01034{left:255.933476pt;}
.xe0_c01034{left:256.919279pt;}
.xb9_c01034{left:260.099209pt;}
.xfb_c01034{left:264.896923pt;}
.x77_c01034{left:267.132408pt;}
.x8f_c01034{left:272.947732pt;}
.xf0_c01034{left:275.516000pt;}
.xe7_c01034{left:276.504177pt;}
.x9f_c01034{left:281.093192pt;}
.x6_c01034{left:284.304000pt;}
.xd6_c01034{left:285.873153pt;}
.x58_c01034{left:287.810712pt;}
.x33_c01034{left:290.319845pt;}
.xe_c01034{left:292.777493pt;}
.xf5_c01034{left:294.542080pt;}
.xc0_c01034{left:297.956975pt;}
.x2b_c01034{left:301.308056pt;}
.x88_c01034{left:303.200107pt;}
.xed_c01034{left:304.393852pt;}
.xdc_c01034{left:305.415291pt;}
.x44_c01034{left:308.513639pt;}
.xac_c01034{left:309.715223pt;}
.x24_c01034{left:311.526571pt;}
.x78_c01034{left:314.922108pt;}
.x59_c01034{left:317.295272pt;}
.x34_c01034{left:319.512109pt;}
.x61_c01034{left:325.729709pt;}
.x4f_c01034{left:327.189932pt;}
.xba_c01034{left:328.349805pt;}
.xb1_c01034{left:329.327152pt;}
.xa6_c01034{left:330.497496pt;}
.x18_c01034{left:331.770449pt;}
.x7_c01034{left:333.256000pt;}
.xcd_c01034{left:337.440632pt;}
.x6d_c01034{left:342.671179pt;}
.xe1_c01034{left:344.768852pt;}
.x5a_c01034{left:346.837108pt;}
.x96_c01034{left:348.356993pt;}
.xad_c01034{left:349.307193pt;}
.xfc_c01034{left:351.459451pt;}
.x80_c01034{left:353.343127pt;}
.x45_c01034{left:356.717999pt;}
.xa7_c01034{left:359.322479pt;}
.xa0_c01034{left:360.670972pt;}
.x89_c01034{left:362.148113pt;}
.x79_c01034{left:364.041187pt;}
.x2_c01034{left:365.280000pt;}
.x35_c01034{left:368.928717pt;}
.xf_c01034{left:371.755769pt;}
.x6e_c01034{left:374.144348pt;}
.xae_c01034{left:379.013847pt;}
.x81_c01034{left:382.848212pt;}
.x50_c01034{left:386.677831pt;}
.x19_c01034{left:390.460792pt;}
.x8_c01034{left:391.590667pt;}
.x62_c01034{left:394.562939pt;}
.x1_c01034{left:395.520000pt;}
.x46_c01034{left:396.942953pt;}
.xd7_c01034{left:403.243665pt;}
.x5b_c01034{left:404.878985pt;}
.x97_c01034{left:409.246412pt;}
.x82_c01034{left:411.154241pt;}
.xce_c01034{left:414.749463pt;}
.x2c_c01034{left:417.849820pt;}
.x9_c01034{left:421.346667pt;}
.x63_c01034{left:423.167312pt;}
.xc1_c01034{left:424.646024pt;}
.xbb_c01034{left:425.968079pt;}
.x3_c01034{left:431.760000pt;}
.xd8_c01034{left:433.173705pt;}
.xb2_c01034{left:436.429276pt;}
.xc9_c01034{left:443.133568pt;}
.xaf_c01034{left:446.671105pt;}
.x25_c01034{left:448.067404pt;}
.x10_c01034{left:450.658121pt;}
.x6f_c01034{left:452.195216pt;}
.x5c_c01034{left:454.064276pt;}
.x90_c01034{left:459.523595pt;}
.xf6_c01034{left:460.428373pt;}
.xdd_c01034{left:461.685531pt;}
.x3c_c01034{left:465.625956pt;}
.x2d_c01034{left:466.778239pt;}
.x98_c01034{left:478.578336pt;}
.x83_c01034{left:480.016728pt;}
.xe2_c01034{left:481.339211pt;}
.x51_c01034{left:483.107840pt;}
.x47_c01034{left:484.106740pt;}
.x1a_c01034{left:488.345088pt;}
.xe8_c01034{left:490.832840pt;}
.x70_c01034{left:492.691951pt;}
.xc2_c01034{left:494.267179pt;}
.x2e_c01034{left:496.811275pt;}
.x8a_c01034{left:498.419441pt;}
.xa_c01034{left:500.400000pt;}
.xcf_c01034{left:502.620064pt;}
.xa8_c01034{left:505.634707pt;}
.x7a_c01034{left:510.639140pt;}
.x64_c01034{left:512.198928pt;}
.x36_c01034{left:515.020488pt;}
.x1b_c01034{left:517.599017pt;}
.x48_c01034{left:523.407159pt;}
.x26_c01034{left:527.001180pt;}
.xb_c01034{left:530.342667pt;}
.x52_c01034{left:533.548377pt;}
.xa9_c01034{left:534.502313pt;}
.xa1_c01034{left:536.256283pt;}
.x11_c01034{left:538.564793pt;}
.xe9_c01034{left:540.504201pt;}
.xc3_c01034{left:542.604763pt;}
.x37_c01034{left:543.646567pt;}
.x8b_c01034{left:548.067860pt;}
.xc_c01034{left:550.221333pt;}
.x5d_c01034{left:551.968615pt;}
.x3d_c01034{left:553.715872pt;}
.x1c_c01034{left:556.003052pt;}
.x91_c01034{left:557.218747pt;}
.x38_c01034{left:559.000692pt;}
.xd9_c01034{left:560.598153pt;}
.xd0_c01034{left:562.176188pt;}
.xa2_c01034{left:565.298272pt;}
.x12_c01034{left:567.177485pt;}
.x7b_c01034{left:568.941325pt;}
.xc4_c01034{left:572.513361pt;}
.x99_c01034{left:575.310752pt;}
.x71_c01034{left:579.377397pt;}
.x65_c01034{left:580.615199pt;}
.xca_c01034{left:581.930112pt;}
.x3e_c01034{left:583.446852pt;}
.x92_c01034{left:586.086353pt;}
.xfd_c01034{left:587.257576pt;}
.xf8_c01034{left:589.007413pt;}
.x49_c01034{left:591.601431pt;}
.x2f_c01034{left:593.867452pt;}
.xf7_c01034{left:598.044267pt;}
.x7c_c01034{left:599.072147pt;}
.xda_c01034{left:600.342369pt;}
.xb3_c01034{left:602.128744pt;}
.xe3_c01034{left:604.974133pt;}
.x8c_c01034{left:607.119763pt;}
.xf1_c01034{left:608.688000pt;}
.x4a_c01034{left:611.467467pt;}
.xbc_c01034{left:612.977537pt;}
.x9a_c01034{left:616.160387pt;}
.x72_c01034{left:618.414175pt;}
.x66_c01034{left:620.178012pt;}
.x84_c01034{left:626.188501pt;}
.xde_c01034{left:629.786595pt;}
.xc5_c01034{left:631.286271pt;}
.x27_c01034{left:633.450915pt;}
.x1d_c01034{left:634.778571pt;}
.x8d_c01034{left:636.156140pt;}
.xe4_c01034{left:639.342932pt;}
.xb0_c01034{left:643.170831pt;}
.x9b_c01034{left:644.877151pt;}
.xf2_c01034{left:648.514667pt;}
.x53_c01034{left:650.772253pt;}
.xaa_c01034{left:652.823433pt;}
.x1e_c01034{left:655.086191pt;}
.x28_c01034{left:657.350067pt;}
.x67_c01034{left:659.207940pt;}
.x13_c01034{left:665.625605pt;}
.x7d_c01034{left:667.796241pt;}
.xd1_c01034{left:668.889345pt;}
.xc6_c01034{left:669.973132pt;}
.x39_c01034{left:672.095665pt;}
.x30_c01034{left:673.371159pt;}
.x93_c01034{left:674.792572pt;}
.x73_c01034{left:676.415831pt;}
.x5e_c01034{left:679.273555pt;}
.x4b_c01034{left:680.193292pt;}
.xb4_c01034{left:681.349444pt;}
.x9c_c01034{left:683.509911pt;}
.xee_c01034{left:687.802880pt;}
.x68_c01034{left:689.209752pt;}
.xd2_c01034{left:690.196812pt;}
.x3f_c01034{left:691.302809pt;}
.x14_c01034{left:696.329537pt;}
.x4c_c01034{left:700.184536pt;}
.x29_c01034{left:703.584389pt;}
.x1f_c01034{left:704.594460pt;}
.x74_c01034{left:706.923257pt;}
.x54_c01034{left:709.444797pt;}
.xbd_c01034{left:710.938189pt;}
.xa3_c01034{left:712.723335pt;}
.x85_c01034{left:715.500464pt;}
.xea_c01034{left:716.796415pt;}
.xab_c01034{left:720.888989pt;}
.xfe_c01034{left:724.686168pt;}
.xf3_c01034{left:727.122667pt;}
.x4d_c01034{left:729.220913pt;}
.x31_c01034{left:733.105520pt;}
.x20_c01034{left:734.001569pt;}
.x69_c01034{left:738.976965pt;}
.x40_c01034{left:742.923423pt;}
.xb5_c01034{left:764.733976pt;}
.xeb_c01034{left:781.759345pt;}
}





/* 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_c01035 {
    display:none;
  }
  .loading-indicator_c01035.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01035 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_c01035 { 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_c01035" -> "#page-container .classname_c01035")
 */
.pf_c01035 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01035 { /* 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_c01035.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01035 { /* 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_c01035 { /* 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_c01035 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01035 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01035 {overflow:visible;}
  }
}
.c_c01035 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01035 { /* 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_c01035:after { /* webkit #35443 */
  content: '';
}
.t_c01035:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01035 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 */
}
.__c01035 { /* 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_c01035 { /* info for Javascript */
  display:none;
}
.l_c01035 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01035 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01035 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01035: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_c01035 {
    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_c01035.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01035.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_c01035 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01035{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01035;src:url('chunks/assets/font_cfe63ee56e9e10a97d33a3db.woff2')format("woff");}.ff1_c01035{font-family:ff1_c01035;line-height:1.000000;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;}
.m1b_c01035{transform:matrix(0.120935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120935,0.000000,0.000000,0.250000,0,0);}
.m28_c01035{transform:matrix(0.167560,-0.001340,0.002000,0.249992,0,0);-ms-transform:matrix(0.167560,-0.001340,0.002000,0.249992,0,0);-webkit-transform:matrix(0.167560,-0.001340,0.002000,0.249992,0,0);}
.m2b_c01035{transform:matrix(0.168865,-0.001351,0.002000,0.249992,0,0);-ms-transform:matrix(0.168865,-0.001351,0.002000,0.249992,0,0);-webkit-transform:matrix(0.168865,-0.001351,0.002000,0.249992,0,0);}
.m18_c01035{transform:matrix(0.180870,-0.002713,0.003750,0.249972,0,0);-ms-transform:matrix(0.180870,-0.002713,0.003750,0.249972,0,0);-webkit-transform:matrix(0.180870,-0.002713,0.003750,0.249972,0,0);}
.mf_c01035{transform:matrix(0.192129,-0.003458,0.004499,0.249960,0,0);-ms-transform:matrix(0.192129,-0.003458,0.004499,0.249960,0,0);-webkit-transform:matrix(0.192129,-0.003458,0.004499,0.249960,0,0);}
.m16_c01035{transform:matrix(0.194353,-0.002915,0.003750,0.249972,0,0);-ms-transform:matrix(0.194353,-0.002915,0.003750,0.249972,0,0);-webkit-transform:matrix(0.194353,-0.002915,0.003750,0.249972,0,0);}
.m1d_c01035{transform:matrix(0.201494,-0.001612,0.002000,0.249992,0,0);-ms-transform:matrix(0.201494,-0.001612,0.002000,0.249992,0,0);-webkit-transform:matrix(0.201494,-0.001612,0.002000,0.249992,0,0);}
.mc_c01035{transform:matrix(0.204832,-0.003687,0.004499,0.249960,0,0);-ms-transform:matrix(0.204832,-0.003687,0.004499,0.249960,0,0);-webkit-transform:matrix(0.204832,-0.003687,0.004499,0.249960,0,0);}
.m13_c01035{transform:matrix(0.205942,-0.003089,0.003750,0.249972,0,0);-ms-transform:matrix(0.205942,-0.003089,0.003750,0.249972,0,0);-webkit-transform:matrix(0.205942,-0.003089,0.003750,0.249972,0,0);}
.m2e_c01035{transform:matrix(0.216188,-0.001730,0.002000,0.249992,0,0);-ms-transform:matrix(0.216188,-0.001730,0.002000,0.249992,0,0);-webkit-transform:matrix(0.216188,-0.001730,0.002000,0.249992,0,0);}
.m15_c01035{transform:matrix(0.217281,-0.003259,0.003750,0.249972,0,0);-ms-transform:matrix(0.217281,-0.003259,0.003750,0.249972,0,0);-webkit-transform:matrix(0.217281,-0.003259,0.003750,0.249972,0,0);}
.m14_c01035{transform:matrix(0.220970,-0.003315,0.003750,0.249972,0,0);-ms-transform:matrix(0.220970,-0.003315,0.003750,0.249972,0,0);-webkit-transform:matrix(0.220970,-0.003315,0.003750,0.249972,0,0);}
.m27_c01035{transform:matrix(0.222803,-0.001782,0.002000,0.249992,0,0);-ms-transform:matrix(0.222803,-0.001782,0.002000,0.249992,0,0);-webkit-transform:matrix(0.222803,-0.001782,0.002000,0.249992,0,0);}
.md_c01035{transform:matrix(0.224204,-0.004036,0.004499,0.249960,0,0);-ms-transform:matrix(0.224204,-0.004036,0.004499,0.249960,0,0);-webkit-transform:matrix(0.224204,-0.004036,0.004499,0.249960,0,0);}
.m17_c01035{transform:matrix(0.224290,-0.003364,0.003750,0.249972,0,0);-ms-transform:matrix(0.224290,-0.003364,0.003750,0.249972,0,0);-webkit-transform:matrix(0.224290,-0.003364,0.003750,0.249972,0,0);}
.m10_c01035{transform:matrix(0.224719,-0.004045,0.004499,0.249960,0,0);-ms-transform:matrix(0.224719,-0.004045,0.004499,0.249960,0,0);-webkit-transform:matrix(0.224719,-0.004045,0.004499,0.249960,0,0);}
.m32_c01035{transform:matrix(0.227643,-0.001821,0.002000,0.249992,0,0);-ms-transform:matrix(0.227643,-0.001821,0.002000,0.249992,0,0);-webkit-transform:matrix(0.227643,-0.001821,0.002000,0.249992,0,0);}
.m2c_c01035{transform:matrix(0.228073,-0.001825,0.002000,0.249992,0,0);-ms-transform:matrix(0.228073,-0.001825,0.002000,0.249992,0,0);-webkit-transform:matrix(0.228073,-0.001825,0.002000,0.249992,0,0);}
.me_c01035{transform:matrix(0.229203,-0.004126,0.004499,0.249960,0,0);-ms-transform:matrix(0.229203,-0.004126,0.004499,0.249960,0,0);-webkit-transform:matrix(0.229203,-0.004126,0.004499,0.249960,0,0);}
.m29_c01035{transform:matrix(0.243327,-0.001947,0.002000,0.249992,0,0);-ms-transform:matrix(0.243327,-0.001947,0.002000,0.249992,0,0);-webkit-transform:matrix(0.243327,-0.001947,0.002000,0.249992,0,0);}
.m1f_c01035{transform:matrix(0.244087,-0.001953,0.002000,0.249992,0,0);-ms-transform:matrix(0.244087,-0.001953,0.002000,0.249992,0,0);-webkit-transform:matrix(0.244087,-0.001953,0.002000,0.249992,0,0);}
.m23_c01035{transform:matrix(0.260547,-0.002084,0.002000,0.249992,0,0);-ms-transform:matrix(0.260547,-0.002084,0.002000,0.249992,0,0);-webkit-transform:matrix(0.260547,-0.002084,0.002000,0.249992,0,0);}
.m2a_c01035{transform:matrix(0.262532,-0.002100,0.002000,0.249992,0,0);-ms-transform:matrix(0.262532,-0.002100,0.002000,0.249992,0,0);-webkit-transform:matrix(0.262532,-0.002100,0.002000,0.249992,0,0);}
.m22_c01035{transform:matrix(0.269526,-0.002156,0.002000,0.249992,0,0);-ms-transform:matrix(0.269526,-0.002156,0.002000,0.249992,0,0);-webkit-transform:matrix(0.269526,-0.002156,0.002000,0.249992,0,0);}
.m7_c01035{transform:matrix(0.269986,-0.003240,0.003000,0.249982,0,0);-ms-transform:matrix(0.269986,-0.003240,0.003000,0.249982,0,0);-webkit-transform:matrix(0.269986,-0.003240,0.003000,0.249982,0,0);}
.m12_c01035{transform:matrix(0.270150,-0.004052,0.003750,0.249972,0,0);-ms-transform:matrix(0.270150,-0.004052,0.003750,0.249972,0,0);-webkit-transform:matrix(0.270150,-0.004052,0.003750,0.249972,0,0);}
.m24_c01035{transform:matrix(0.273211,-0.002186,0.002000,0.249992,0,0);-ms-transform:matrix(0.273211,-0.002186,0.002000,0.249992,0,0);-webkit-transform:matrix(0.273211,-0.002186,0.002000,0.249992,0,0);}
.m4_c01035{transform:matrix(0.276115,-0.003313,0.003000,0.249982,0,0);-ms-transform:matrix(0.276115,-0.003313,0.003000,0.249982,0,0);-webkit-transform:matrix(0.276115,-0.003313,0.003000,0.249982,0,0);}
.m1e_c01035{transform:matrix(0.277566,-0.002221,0.002000,0.249992,0,0);-ms-transform:matrix(0.277566,-0.002221,0.002000,0.249992,0,0);-webkit-transform:matrix(0.277566,-0.002221,0.002000,0.249992,0,0);}
.m20_c01035{transform:matrix(0.278021,-0.002224,0.002000,0.249992,0,0);-ms-transform:matrix(0.278021,-0.002224,0.002000,0.249992,0,0);-webkit-transform:matrix(0.278021,-0.002224,0.002000,0.249992,0,0);}
.m3_c01035{transform:matrix(0.282505,-0.003390,0.003000,0.249982,0,0);-ms-transform:matrix(0.282505,-0.003390,0.003000,0.249982,0,0);-webkit-transform:matrix(0.282505,-0.003390,0.003000,0.249982,0,0);}
.m5_c01035{transform:matrix(0.297634,-0.003572,0.003000,0.249982,0,0);-ms-transform:matrix(0.297634,-0.003572,0.003000,0.249982,0,0);-webkit-transform:matrix(0.297634,-0.003572,0.003000,0.249982,0,0);}
.m11_c01035{transform:matrix(0.297657,-0.004465,0.003750,0.249972,0,0);-ms-transform:matrix(0.297657,-0.004465,0.003750,0.249972,0,0);-webkit-transform:matrix(0.297657,-0.004465,0.003750,0.249972,0,0);}
.m19_c01035{transform:matrix(0.300686,-0.004510,0.003750,0.249972,0,0);-ms-transform:matrix(0.300686,-0.004510,0.003750,0.249972,0,0);-webkit-transform:matrix(0.300686,-0.004510,0.003750,0.249972,0,0);}
.m30_c01035{transform:matrix(0.301800,-0.002414,0.002000,0.249992,0,0);-ms-transform:matrix(0.301800,-0.002414,0.002000,0.249992,0,0);-webkit-transform:matrix(0.301800,-0.002414,0.002000,0.249992,0,0);}
.m25_c01035{transform:matrix(0.305430,-0.002443,0.002000,0.249992,0,0);-ms-transform:matrix(0.305430,-0.002443,0.002000,0.249992,0,0);-webkit-transform:matrix(0.305430,-0.002443,0.002000,0.249992,0,0);}
.m9_c01035{transform:matrix(0.306755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306755,0.000000,0.000000,0.250000,0,0);}
.m31_c01035{transform:matrix(0.317635,-0.002541,0.002000,0.249992,0,0);-ms-transform:matrix(0.317635,-0.002541,0.002000,0.249992,0,0);-webkit-transform:matrix(0.317635,-0.002541,0.002000,0.249992,0,0);}
.m1c_c01035{transform:matrix(0.328524,-0.002628,0.002000,0.249992,0,0);-ms-transform:matrix(0.328524,-0.002628,0.002000,0.249992,0,0);-webkit-transform:matrix(0.328524,-0.002628,0.002000,0.249992,0,0);}
.m6_c01035{transform:matrix(0.333096,-0.003997,0.003000,0.249982,0,0);-ms-transform:matrix(0.333096,-0.003997,0.003000,0.249982,0,0);-webkit-transform:matrix(0.333096,-0.003997,0.003000,0.249982,0,0);}
.m26_c01035{transform:matrix(0.341179,-0.002729,0.002000,0.249992,0,0);-ms-transform:matrix(0.341179,-0.002729,0.002000,0.249992,0,0);-webkit-transform:matrix(0.341179,-0.002729,0.002000,0.249992,0,0);}
.m2f_c01035{transform:matrix(0.341904,-0.002735,0.002000,0.249992,0,0);-ms-transform:matrix(0.341904,-0.002735,0.002000,0.249992,0,0);-webkit-transform:matrix(0.341904,-0.002735,0.002000,0.249992,0,0);}
.m1a_c01035{transform:matrix(0.342681,-0.005140,0.003750,0.249972,0,0);-ms-transform:matrix(0.342681,-0.005140,0.003750,0.249972,0,0);-webkit-transform:matrix(0.342681,-0.005140,0.003750,0.249972,0,0);}
.m21_c01035{transform:matrix(0.387488,-0.003100,0.002000,0.249992,0,0);-ms-transform:matrix(0.387488,-0.003100,0.002000,0.249992,0,0);-webkit-transform:matrix(0.387488,-0.003100,0.002000,0.249992,0,0);}
.m2d_c01035{transform:matrix(0.423811,-0.003390,0.002000,0.249992,0,0);-ms-transform:matrix(0.423811,-0.003390,0.002000,0.249992,0,0);-webkit-transform:matrix(0.423811,-0.003390,0.002000,0.249992,0,0);}
.m2_c01035{transform:matrix(0.453392,-0.005441,0.003000,0.249982,0,0);-ms-transform:matrix(0.453392,-0.005441,0.003000,0.249982,0,0);-webkit-transform:matrix(0.453392,-0.005441,0.003000,0.249982,0,0);}
.ma_c01035{transform:matrix(0.454591,-0.008183,0.004499,0.249960,0,0);-ms-transform:matrix(0.454591,-0.008183,0.004499,0.249960,0,0);-webkit-transform:matrix(0.454591,-0.008183,0.004499,0.249960,0,0);}
.m8_c01035{transform:matrix(0.459622,-0.005515,0.003000,0.249982,0,0);-ms-transform:matrix(0.459622,-0.005515,0.003000,0.249982,0,0);-webkit-transform:matrix(0.459622,-0.005515,0.003000,0.249982,0,0);}
.m1_c01035{transform:matrix(0.470681,-0.005648,0.003000,0.249982,0,0);-ms-transform:matrix(0.470681,-0.005648,0.003000,0.249982,0,0);-webkit-transform:matrix(0.470681,-0.005648,0.003000,0.249982,0,0);}
.m0_c01035{transform:matrix(0.501874,-0.006022,0.003000,0.249982,0,0);-ms-transform:matrix(0.501874,-0.006022,0.003000,0.249982,0,0);-webkit-transform:matrix(0.501874,-0.006022,0.003000,0.249982,0,0);}
.mb_c01035{transform:matrix(1.063848,-0.019149,0.004499,0.249960,0,0);-ms-transform:matrix(1.063848,-0.019149,0.004499,0.249960,0,0);-webkit-transform:matrix(1.063848,-0.019149,0.004499,0.249960,0,0);}
.v0_c01035{vertical-align:0.000000px;}
.ls0_c01035{letter-spacing:0.000000px;}
.sc__c01035{text-shadow:none;}
.sc0_c01035{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__c01035{-webkit-text-stroke:0px transparent;}
.sc0_c01035{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01035{word-spacing:0.000000px;}
.fc0_c01035{color:transparent;}
.fs1_c01035{font-size:18.000000px;}
.fs4_c01035{font-size:72.002304px;}
.fs0_c01035{font-size:72.005184px;}
.fs5_c01035{font-size:102.003264px;}
.fs3_c01035{font-size:102.011474px;}
.fs2_c01035{font-size:108.017495px;}
.y0_c01035{bottom:0.000000px;}
.y27_c01035{bottom:746.631768px;}
.y28_c01035{bottom:747.113928px;}
.y29_c01035{bottom:747.511140px;}
.y2a_c01035{bottom:747.962988px;}
.y2b_c01035{bottom:748.420128px;}
.y2c_c01035{bottom:749.360616px;}
.y2d_c01035{bottom:749.718252px;}
.y2e_c01035{bottom:750.394872px;}
.y2f_c01035{bottom:750.805932px;}
.y30_c01035{bottom:751.658172px;}
.y31_c01035{bottom:752.169576px;}
.y32_c01035{bottom:753.226440px;}
.y33_c01035{bottom:753.629304px;}
.y1d_c01035{bottom:785.161500px;}
.y1e_c01035{bottom:785.966880px;}
.y1f_c01035{bottom:786.344904px;}
.y20_c01035{bottom:787.204692px;}
.y21_c01035{bottom:787.632876px;}
.y22_c01035{bottom:788.185956px;}
.y23_c01035{bottom:788.445180px;}
.y24_c01035{bottom:788.699484px;}
.y25_c01035{bottom:789.261168px;}
.y26_c01035{bottom:789.516744px;}
.y12_c01035{bottom:818.571000px;}
.y1c_c01035{bottom:819.180000px;}
.y13_c01035{bottom:819.925658px;}
.y14_c01035{bottom:819.957023px;}
.y15_c01035{bottom:820.540268px;}
.y16_c01035{bottom:821.964788px;}
.y17_c01035{bottom:822.822285px;}
.y18_c01035{bottom:823.667903px;}
.y19_c01035{bottom:824.598683px;}
.y1a_c01035{bottom:825.369983px;}
.y1b_c01035{bottom:826.781340px;}
.yb_c01035{bottom:890.065500px;}
.yc_c01035{bottom:890.885787px;}
.yd_c01035{bottom:893.699727px;}
.ye_c01035{bottom:894.205221px;}
.yf_c01035{bottom:896.126703px;}
.y10_c01035{bottom:897.609543px;}
.y11_c01035{bottom:899.152944px;}
.ya_c01035{bottom:951.750000px;}
.y1_c01035{bottom:962.239500px;}
.y2_c01035{bottom:962.858988px;}
.y3_c01035{bottom:963.556668px;}
.y4_c01035{bottom:964.702566px;}
.y5_c01035{bottom:966.033990px;}
.y6_c01035{bottom:966.442824px;}
.y7_c01035{bottom:967.058154px;}
.y8_c01035{bottom:967.699710px;}
.y9_c01035{bottom:968.283108px;}
.h3_c01035{height:18.000000px;}
.h6_c01035{height:72.002304px;}
.h2_c01035{height:72.005184px;}
.h7_c01035{height:102.003264px;}
.h5_c01035{height:102.011474px;}
.h4_c01035{height:108.017495px;}
.h0_c01035{height:1246.320000px;}
.h1_c01035{height:1246.500000px;}
.w1_c01035{width:887.250000px;}
.w0_c01035{width:887.490000px;}
.x0_c01035{left:0.000000px;}
.x1_c01035{left:7.803000px;}
.xb_c01035{left:20.584500px;}
.x11_c01035{left:55.620000px;}
.xa_c01035{left:57.780000px;}
.x2_c01035{left:59.427000px;}
.xc_c01035{left:66.156000px;}
.x26_c01035{left:99.871968px;}
.x1c_c01035{left:113.827500px;}
.x3_c01035{left:117.567000px;}
.x27_c01035{left:136.022604px;}
.x12_c01035{left:145.930500px;}
.x13_c01035{left:148.021500px;}
.x28_c01035{left:177.127620px;}
.x14_c01035{left:186.904500px;}
.x4_c01035{left:213.058500px;}
.x1d_c01035{left:214.500000px;}
.x29_c01035{left:218.706624px;}
.xd_c01035{left:222.486000px;}
.xe_c01035{left:250.569000px;}
.x1e_c01035{left:261.753000px;}
.x15_c01035{left:281.872500px;}
.x2a_c01035{left:304.203072px;}
.x5_c01035{left:324.010500px;}
.x2b_c01035{left:336.719292px;}
.x16_c01035{left:339.039000px;}
.x6_c01035{left:358.080000px;}
.x1f_c01035{left:369.226500px;}
.x17_c01035{left:395.413500px;}
.x2c_c01035{left:398.232816px;}
.x7_c01035{left:409.357500px;}
.x20_c01035{left:422.749500px;}
.x2d_c01035{left:435.551916px;}
.xf_c01035{left:439.698000px;}
.x18_c01035{left:457.465500px;}
.x8_c01035{left:462.820500px;}
.x21_c01035{left:491.884500px;}
.x19_c01035{left:508.885500px;}
.x9_c01035{left:511.437000px;}
.x2e_c01035{left:513.017556px;}
.x22_c01035{left:524.287500px;}
.x10_c01035{left:525.442500px;}
.x23_c01035{left:556.075500px;}
.x2f_c01035{left:559.504440px;}
.x1a_c01035{left:602.976000px;}
.x24_c01035{left:626.286000px;}
.x1b_c01035{left:652.860000px;}
.x30_c01035{left:655.610136px;}
.x25_c01035{left:658.233000px;}
.x31_c01035{left:692.279760px;}
@media print{
.v0_c01035{vertical-align:0.000000pt;}
.ls0_c01035{letter-spacing:0.000000pt;}
.ws0_c01035{word-spacing:0.000000pt;}
.fs1_c01035{font-size:16.000000pt;}
.fs4_c01035{font-size:64.002048pt;}
.fs0_c01035{font-size:64.004608pt;}
.fs5_c01035{font-size:90.669568pt;}
.fs3_c01035{font-size:90.676866pt;}
.fs2_c01035{font-size:96.015551pt;}
.y0_c01035{bottom:0.000000pt;}
.y27_c01035{bottom:663.672683pt;}
.y28_c01035{bottom:664.101269pt;}
.y29_c01035{bottom:664.454347pt;}
.y2a_c01035{bottom:664.855989pt;}
.y2b_c01035{bottom:665.262336pt;}
.y2c_c01035{bottom:666.098325pt;}
.y2d_c01035{bottom:666.416224pt;}
.y2e_c01035{bottom:667.017664pt;}
.y2f_c01035{bottom:667.383051pt;}
.y30_c01035{bottom:668.140597pt;}
.y31_c01035{bottom:668.595179pt;}
.y32_c01035{bottom:669.534613pt;}
.y33_c01035{bottom:669.892715pt;}
.y1d_c01035{bottom:697.921333pt;}
.y1e_c01035{bottom:698.637227pt;}
.y1f_c01035{bottom:698.973248pt;}
.y20_c01035{bottom:699.737504pt;}
.y21_c01035{bottom:700.118112pt;}
.y22_c01035{bottom:700.609739pt;}
.y23_c01035{bottom:700.840160pt;}
.y24_c01035{bottom:701.066208pt;}
.y25_c01035{bottom:701.565483pt;}
.y26_c01035{bottom:701.792661pt;}
.y12_c01035{bottom:727.618667pt;}
.y1c_c01035{bottom:728.160000pt;}
.y13_c01035{bottom:728.822807pt;}
.y14_c01035{bottom:728.850687pt;}
.y15_c01035{bottom:729.369127pt;}
.y16_c01035{bottom:730.635367pt;}
.y17_c01035{bottom:731.397587pt;}
.y18_c01035{bottom:732.149247pt;}
.y19_c01035{bottom:732.976607pt;}
.y1a_c01035{bottom:733.662207pt;}
.y1b_c01035{bottom:734.916747pt;}
.yb_c01035{bottom:791.169333pt;}
.yc_c01035{bottom:791.898477pt;}
.yd_c01035{bottom:794.399757pt;}
.ye_c01035{bottom:794.849085pt;}
.yf_c01035{bottom:796.557069pt;}
.y10_c01035{bottom:797.875149pt;}
.y11_c01035{bottom:799.247061pt;}
.ya_c01035{bottom:846.000000pt;}
.y1_c01035{bottom:855.324000pt;}
.y2_c01035{bottom:855.874656pt;}
.y3_c01035{bottom:856.494816pt;}
.y4_c01035{bottom:857.513392pt;}
.y5_c01035{bottom:858.696880pt;}
.y6_c01035{bottom:859.060288pt;}
.y7_c01035{bottom:859.607248pt;}
.y8_c01035{bottom:860.177520pt;}
.y9_c01035{bottom:860.696096pt;}
.h3_c01035{height:16.000000pt;}
.h6_c01035{height:64.002048pt;}
.h2_c01035{height:64.004608pt;}
.h7_c01035{height:90.669568pt;}
.h5_c01035{height:90.676866pt;}
.h4_c01035{height:96.015551pt;}
.h0_c01035{height:1107.840000pt;}
.h1_c01035{height:1108.000000pt;}
.w1_c01035{width:788.666667pt;}
.w0_c01035{width:788.880000pt;}
.x0_c01035{left:0.000000pt;}
.x1_c01035{left:6.936000pt;}
.xb_c01035{left:18.297333pt;}
.x11_c01035{left:49.440000pt;}
.xa_c01035{left:51.360000pt;}
.x2_c01035{left:52.824000pt;}
.xc_c01035{left:58.805333pt;}
.x26_c01035{left:88.775083pt;}
.x1c_c01035{left:101.180000pt;}
.x3_c01035{left:104.504000pt;}
.x27_c01035{left:120.908981pt;}
.x12_c01035{left:129.716000pt;}
.x13_c01035{left:131.574667pt;}
.x28_c01035{left:157.446773pt;}
.x14_c01035{left:166.137333pt;}
.x4_c01035{left:189.385333pt;}
.x1d_c01035{left:190.666667pt;}
.x29_c01035{left:194.405888pt;}
.xd_c01035{left:197.765333pt;}
.xe_c01035{left:222.728000pt;}
.x1e_c01035{left:232.669333pt;}
.x15_c01035{left:250.553333pt;}
.x2a_c01035{left:270.402731pt;}
.x5_c01035{left:288.009333pt;}
.x2b_c01035{left:299.306037pt;}
.x16_c01035{left:301.368000pt;}
.x6_c01035{left:318.293333pt;}
.x1f_c01035{left:328.201333pt;}
.x17_c01035{left:351.478667pt;}
.x2c_c01035{left:353.984725pt;}
.x7_c01035{left:363.873333pt;}
.x20_c01035{left:375.777333pt;}
.x2d_c01035{left:387.157259pt;}
.xf_c01035{left:390.842667pt;}
.x18_c01035{left:406.636000pt;}
.x8_c01035{left:411.396000pt;}
.x21_c01035{left:437.230667pt;}
.x19_c01035{left:452.342667pt;}
.x9_c01035{left:454.610667pt;}
.x2e_c01035{left:456.015605pt;}
.x22_c01035{left:466.033333pt;}
.x10_c01035{left:467.060000pt;}
.x23_c01035{left:494.289333pt;}
.x2f_c01035{left:497.337280pt;}
.x1a_c01035{left:535.978667pt;}
.x24_c01035{left:556.698667pt;}
.x1b_c01035{left:580.320000pt;}
.x30_c01035{left:582.764565pt;}
.x25_c01035{left:585.096000pt;}
.x31_c01035{left:615.359787pt;}
}





/* 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_c01036 {
    display:none;
  }
  .loading-indicator_c01036.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01036 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_c01036 { 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_c01036" -> "#page-container .classname_c01036")
 */
.pf_c01036 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01036 { /* 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_c01036.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01036 { /* 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_c01036 { /* 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_c01036 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01036 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01036 {overflow:visible;}
  }
}
.c_c01036 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01036 { /* 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_c01036:after { /* webkit #35443 */
  content: '';
}
.t_c01036:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01036 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 */
}
.__c01036 { /* 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_c01036 { /* info for Javascript */
  display:none;
}
.l_c01036 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01036 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01036 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01036: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_c01036 {
    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_c01036.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01036.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_c01036 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01036{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01036;src:url('chunks/assets/font_c605e72f209fc835e906f064.woff2')format("woff");}.ff1_c01036{font-family:ff1_c01036;line-height:1.000000;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;}
.m74_c01036{transform:matrix(0.011851,0.000463,-0.009752,0.249810,0,0);-ms-transform:matrix(0.011851,0.000463,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.011851,0.000463,-0.009752,0.249810,0,0);}
.m5_c01036{transform:matrix(0.095295,0.003243,-0.008504,0.249855,0,0);-ms-transform:matrix(0.095295,0.003243,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.095295,0.003243,-0.008504,0.249855,0,0);}
.m3_c01036{transform:matrix(0.098743,0.003361,-0.008504,0.249855,0,0);-ms-transform:matrix(0.098743,0.003361,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.098743,0.003361,-0.008504,0.249855,0,0);}
.mab_c01036{transform:matrix(0.158930,0.006682,-0.010501,0.249779,0,0);-ms-transform:matrix(0.158930,0.006682,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.158930,0.006682,-0.010501,0.249779,0,0);}
.m109_c01036{transform:matrix(0.162691,0.006840,-0.010501,0.249779,0,0);-ms-transform:matrix(0.162691,0.006840,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.162691,0.006840,-0.010501,0.249779,0,0);}
.maf_c01036{transform:matrix(0.168561,0.007087,-0.010501,0.249779,0,0);-ms-transform:matrix(0.168561,0.007087,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.168561,0.007087,-0.010501,0.249779,0,0);}
.m3d_c01036{transform:matrix(0.171833,0.006192,-0.009003,0.249838,0,0);-ms-transform:matrix(0.171833,0.006192,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.171833,0.006192,-0.009003,0.249838,0,0);}
.mb1_c01036{transform:matrix(0.172982,0.007273,-0.010501,0.249779,0,0);-ms-transform:matrix(0.172982,0.007273,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.172982,0.007273,-0.010501,0.249779,0,0);}
.m163_c01036{transform:matrix(0.173145,0.017227,-0.024752,0.248772,0,0);-ms-transform:matrix(0.173145,0.017227,-0.024752,0.248772,0,0);-webkit-transform:matrix(0.173145,0.017227,-0.024752,0.248772,0,0);}
.ma9_c01036{transform:matrix(0.175895,0.007395,-0.010501,0.249779,0,0);-ms-transform:matrix(0.175895,0.007395,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.175895,0.007395,-0.010501,0.249779,0,0);}
.m78_c01036{transform:matrix(0.181235,0.007619,-0.010501,0.249779,0,0);-ms-transform:matrix(0.181235,0.007619,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.181235,0.007619,-0.010501,0.249779,0,0);}
.m4_c01036{transform:matrix(0.181415,0.006174,-0.008504,0.249855,0,0);-ms-transform:matrix(0.181415,0.006174,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.181415,0.006174,-0.008504,0.249855,0,0);}
.mb0_c01036{transform:matrix(0.181665,0.007638,-0.010501,0.249779,0,0);-ms-transform:matrix(0.181665,0.007638,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.181665,0.007638,-0.010501,0.249779,0,0);}
.m7c_c01036{transform:matrix(0.182364,0.007667,-0.010501,0.249779,0,0);-ms-transform:matrix(0.182364,0.007667,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.182364,0.007667,-0.010501,0.249779,0,0);}
.m3e_c01036{transform:matrix(0.183291,0.006605,-0.009003,0.249838,0,0);-ms-transform:matrix(0.183291,0.006605,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.183291,0.006605,-0.009003,0.249838,0,0);}
.ma7_c01036{transform:matrix(0.183992,0.007735,-0.010501,0.249779,0,0);-ms-transform:matrix(0.183992,0.007735,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.183992,0.007735,-0.010501,0.249779,0,0);}
.maa_c01036{transform:matrix(0.184242,0.007746,-0.010501,0.249779,0,0);-ms-transform:matrix(0.184242,0.007746,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.184242,0.007746,-0.010501,0.249779,0,0);}
.m161_c01036{transform:matrix(0.184817,0.018389,-0.024752,0.248772,0,0);-ms-transform:matrix(0.184817,0.018389,-0.024752,0.248772,0,0);-webkit-transform:matrix(0.184817,0.018389,-0.024752,0.248772,0,0);}
.m44_c01036{transform:matrix(0.185180,0.006673,-0.009003,0.249838,0,0);-ms-transform:matrix(0.185180,0.006673,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.185180,0.006673,-0.009003,0.249838,0,0);}
.m46_c01036{transform:matrix(0.185190,0.006674,-0.009003,0.249838,0,0);-ms-transform:matrix(0.185190,0.006674,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.185190,0.006674,-0.009003,0.249838,0,0);}
.m14c_c01036{transform:matrix(0.185848,0.008558,-0.011499,0.249735,0,0);-ms-transform:matrix(0.185848,0.008558,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.185848,0.008558,-0.011499,0.249735,0,0);}
.mac_c01036{transform:matrix(0.186400,0.007837,-0.010501,0.249779,0,0);-ms-transform:matrix(0.186400,0.007837,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.186400,0.007837,-0.010501,0.249779,0,0);}
.mb2_c01036{transform:matrix(0.187484,0.007882,-0.010501,0.249779,0,0);-ms-transform:matrix(0.187484,0.007882,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.187484,0.007882,-0.010501,0.249779,0,0);}
.m152_c01036{transform:matrix(0.187704,0.007140,-0.009503,0.249819,0,0);-ms-transform:matrix(0.187704,0.007140,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.187704,0.007140,-0.009503,0.249819,0,0);}
.mae_c01036{transform:matrix(0.188264,0.007915,-0.010501,0.249779,0,0);-ms-transform:matrix(0.188264,0.007915,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.188264,0.007915,-0.010501,0.249779,0,0);}
.mad_c01036{transform:matrix(0.189083,0.007949,-0.010501,0.249779,0,0);-ms-transform:matrix(0.189083,0.007949,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.189083,0.007949,-0.010501,0.249779,0,0);}
.m149_c01036{transform:matrix(0.189115,0.008708,-0.011499,0.249735,0,0);-ms-transform:matrix(0.189115,0.008708,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.189115,0.008708,-0.011499,0.249735,0,0);}
.m162_c01036{transform:matrix(0.189176,0.018823,-0.024752,0.248772,0,0);-ms-transform:matrix(0.189176,0.018823,-0.024752,0.248772,0,0);-webkit-transform:matrix(0.189176,0.018823,-0.024752,0.248772,0,0);}
.m165_c01036{transform:matrix(0.189375,0.018842,-0.024752,0.248772,0,0);-ms-transform:matrix(0.189375,0.018842,-0.024752,0.248772,0,0);-webkit-transform:matrix(0.189375,0.018842,-0.024752,0.248772,0,0);}
.m68_c01036{transform:matrix(0.190680,0.007444,-0.009752,0.249810,0,0);-ms-transform:matrix(0.190680,0.007444,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.190680,0.007444,-0.009752,0.249810,0,0);}
.m9f_c01036{transform:matrix(0.191890,0.008067,-0.010501,0.249779,0,0);-ms-transform:matrix(0.191890,0.008067,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.191890,0.008067,-0.010501,0.249779,0,0);}
.m136_c01036{transform:matrix(0.192032,0.008842,-0.011499,0.249735,0,0);-ms-transform:matrix(0.192032,0.008842,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.192032,0.008842,-0.011499,0.249735,0,0);}
.m13a_c01036{transform:matrix(0.192836,0.008879,-0.011499,0.249735,0,0);-ms-transform:matrix(0.192836,0.008879,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.192836,0.008879,-0.011499,0.249735,0,0);}
.mc_c01036{transform:matrix(0.193185,0.006962,-0.009003,0.249838,0,0);-ms-transform:matrix(0.193185,0.006962,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.193185,0.006962,-0.009003,0.249838,0,0);}
.m76_c01036{transform:matrix(0.193254,0.008125,-0.010501,0.249779,0,0);-ms-transform:matrix(0.193254,0.008125,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.193254,0.008125,-0.010501,0.249779,0,0);}
.m85_c01036{transform:matrix(0.193634,0.008141,-0.010501,0.249779,0,0);-ms-transform:matrix(0.193634,0.008141,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.193634,0.008141,-0.010501,0.249779,0,0);}
.m160_c01036{transform:matrix(0.193768,0.019279,-0.024752,0.248772,0,0);-ms-transform:matrix(0.193768,0.019279,-0.024752,0.248772,0,0);-webkit-transform:matrix(0.193768,0.019279,-0.024752,0.248772,0,0);}
.ma4_c01036{transform:matrix(0.194873,0.008193,-0.010501,0.249779,0,0);-ms-transform:matrix(0.194873,0.008193,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.194873,0.008193,-0.010501,0.249779,0,0);}
.m6c_c01036{transform:matrix(0.194897,0.007609,-0.009752,0.249810,0,0);-ms-transform:matrix(0.194897,0.007609,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.194897,0.007609,-0.009752,0.249810,0,0);}
.m66_c01036{transform:matrix(0.195726,0.007641,-0.009752,0.249810,0,0);-ms-transform:matrix(0.195726,0.007641,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.195726,0.007641,-0.009752,0.249810,0,0);}
.m14d_c01036{transform:matrix(0.195982,0.009024,-0.011499,0.249735,0,0);-ms-transform:matrix(0.195982,0.009024,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.195982,0.009024,-0.011499,0.249735,0,0);}
.m155_c01036{transform:matrix(0.195983,0.007455,-0.009503,0.249819,0,0);-ms-transform:matrix(0.195983,0.007455,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.195983,0.007455,-0.009503,0.249819,0,0);}
.m15f_c01036{transform:matrix(0.196142,0.019516,-0.024752,0.248772,0,0);-ms-transform:matrix(0.196142,0.019516,-0.024752,0.248772,0,0);-webkit-transform:matrix(0.196142,0.019516,-0.024752,0.248772,0,0);}
.m164_c01036{transform:matrix(0.196261,0.019527,-0.024752,0.248772,0,0);-ms-transform:matrix(0.196261,0.019527,-0.024752,0.248772,0,0);-webkit-transform:matrix(0.196261,0.019527,-0.024752,0.248772,0,0);}
.m47_c01036{transform:matrix(0.196517,0.007082,-0.009003,0.249838,0,0);-ms-transform:matrix(0.196517,0.007082,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.196517,0.007082,-0.009003,0.249838,0,0);}
.m40_c01036{transform:matrix(0.197647,0.007122,-0.009003,0.249838,0,0);-ms-transform:matrix(0.197647,0.007122,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.197647,0.007122,-0.009003,0.249838,0,0);}
.m133_c01036{transform:matrix(0.198390,0.009135,-0.011499,0.249735,0,0);-ms-transform:matrix(0.198390,0.009135,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.198390,0.009135,-0.011499,0.249735,0,0);}
.mb3_c01036{transform:matrix(0.198635,0.008351,-0.010501,0.249779,0,0);-ms-transform:matrix(0.198635,0.008351,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.198635,0.008351,-0.010501,0.249779,0,0);}
.m12c_c01036{transform:matrix(0.200048,0.008410,-0.010501,0.249779,0,0);-ms-transform:matrix(0.200048,0.008410,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.200048,0.008410,-0.010501,0.249779,0,0);}
.m7b_c01036{transform:matrix(0.200198,0.008417,-0.010501,0.249779,0,0);-ms-transform:matrix(0.200198,0.008417,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.200198,0.008417,-0.010501,0.249779,0,0);}
.m71_c01036{transform:matrix(0.201092,0.007850,-0.009752,0.249810,0,0);-ms-transform:matrix(0.201092,0.007850,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.201092,0.007850,-0.009752,0.249810,0,0);}
.mf_c01036{transform:matrix(0.201399,0.007258,-0.009003,0.249838,0,0);-ms-transform:matrix(0.201399,0.007258,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.201399,0.007258,-0.009003,0.249838,0,0);}
.m13e_c01036{transform:matrix(0.201402,0.009274,-0.011499,0.249735,0,0);-ms-transform:matrix(0.201402,0.009274,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.201402,0.009274,-0.011499,0.249735,0,0);}
.m139_c01036{transform:matrix(0.201736,0.009289,-0.011499,0.249735,0,0);-ms-transform:matrix(0.201736,0.009289,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.201736,0.009289,-0.011499,0.249735,0,0);}
.m83_c01036{transform:matrix(0.202106,0.008497,-0.010501,0.249779,0,0);-ms-transform:matrix(0.202106,0.008497,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.202106,0.008497,-0.010501,0.249779,0,0);}
.m3f_c01036{transform:matrix(0.202509,0.007298,-0.009003,0.249838,0,0);-ms-transform:matrix(0.202509,0.007298,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.202509,0.007298,-0.009003,0.249838,0,0);}
.m7d_c01036{transform:matrix(0.203006,0.008535,-0.010501,0.249779,0,0);-ms-transform:matrix(0.203006,0.008535,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.203006,0.008535,-0.010501,0.249779,0,0);}
.m96_c01036{transform:matrix(0.204255,0.008587,-0.010501,0.249779,0,0);-ms-transform:matrix(0.204255,0.008587,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.204255,0.008587,-0.010501,0.249779,0,0);}
.m13b_c01036{transform:matrix(0.204823,0.009431,-0.011499,0.249735,0,0);-ms-transform:matrix(0.204823,0.009431,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.204823,0.009431,-0.011499,0.249735,0,0);}
.m6f_c01036{transform:matrix(0.204969,0.008002,-0.009752,0.249810,0,0);-ms-transform:matrix(0.204969,0.008002,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.204969,0.008002,-0.009752,0.249810,0,0);}
.m15b_c01036{transform:matrix(0.206121,0.007840,-0.009503,0.249819,0,0);-ms-transform:matrix(0.206121,0.007840,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.206121,0.007840,-0.009503,0.249819,0,0);}
.m100_c01036{transform:matrix(0.206223,0.008670,-0.010501,0.249779,0,0);-ms-transform:matrix(0.206223,0.008670,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.206223,0.008670,-0.010501,0.249779,0,0);}
.m4d_c01036{transform:matrix(0.207006,0.007460,-0.009003,0.249838,0,0);-ms-transform:matrix(0.207006,0.007460,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.207006,0.007460,-0.009003,0.249838,0,0);}
.m137_c01036{transform:matrix(0.207061,0.009534,-0.011499,0.249735,0,0);-ms-transform:matrix(0.207061,0.009534,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.207061,0.009534,-0.011499,0.249735,0,0);}
.m13c_c01036{transform:matrix(0.207405,0.009550,-0.011499,0.249735,0,0);-ms-transform:matrix(0.207405,0.009550,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.207405,0.009550,-0.011499,0.249735,0,0);}
.mb_c01036{transform:matrix(0.207915,0.007492,-0.009003,0.249838,0,0);-ms-transform:matrix(0.207915,0.007492,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.207915,0.007492,-0.009003,0.249838,0,0);}
.ma2_c01036{transform:matrix(0.208121,0.008750,-0.010501,0.249779,0,0);-ms-transform:matrix(0.208121,0.008750,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.208121,0.008750,-0.010501,0.249779,0,0);}
.m141_c01036{transform:matrix(0.208254,0.009589,-0.011499,0.249735,0,0);-ms-transform:matrix(0.208254,0.009589,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.208254,0.009589,-0.011499,0.249735,0,0);}
.m98_c01036{transform:matrix(0.208531,0.008767,-0.010501,0.249779,0,0);-ms-transform:matrix(0.208531,0.008767,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.208531,0.008767,-0.010501,0.249779,0,0);}
.m150_c01036{transform:matrix(0.208579,0.007934,-0.009503,0.249819,0,0);-ms-transform:matrix(0.208579,0.007934,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.208579,0.007934,-0.009503,0.249819,0,0);}
.md_c01036{transform:matrix(0.209119,0.007536,-0.009003,0.249838,0,0);-ms-transform:matrix(0.209119,0.007536,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.209119,0.007536,-0.009003,0.249838,0,0);}
.m11_c01036{transform:matrix(0.210259,0.007577,-0.009003,0.249838,0,0);-ms-transform:matrix(0.210259,0.007577,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.210259,0.007577,-0.009003,0.249838,0,0);}
.m102_c01036{transform:matrix(0.210424,0.008847,-0.010501,0.249779,0,0);-ms-transform:matrix(0.210424,0.008847,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.210424,0.008847,-0.010501,0.249779,0,0);}
.m13f_c01036{transform:matrix(0.211341,0.009731,-0.011499,0.249735,0,0);-ms-transform:matrix(0.211341,0.009731,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.211341,0.009731,-0.011499,0.249735,0,0);}
.m7a_c01036{transform:matrix(0.212113,0.008918,-0.010501,0.249779,0,0);-ms-transform:matrix(0.212113,0.008918,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.212113,0.008918,-0.010501,0.249779,0,0);}
.mfd_c01036{transform:matrix(0.212183,0.008921,-0.010501,0.249779,0,0);-ms-transform:matrix(0.212183,0.008921,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.212183,0.008921,-0.010501,0.249779,0,0);}
.m154_c01036{transform:matrix(0.212187,0.008071,-0.009503,0.249819,0,0);-ms-transform:matrix(0.212187,0.008071,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.212187,0.008071,-0.009503,0.249819,0,0);}
.m79_c01036{transform:matrix(0.213112,0.008960,-0.010501,0.249779,0,0);-ms-transform:matrix(0.213112,0.008960,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.213112,0.008960,-0.010501,0.249779,0,0);}
.m134_c01036{transform:matrix(0.213239,0.009819,-0.011499,0.249735,0,0);-ms-transform:matrix(0.213239,0.009819,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.213239,0.009819,-0.011499,0.249735,0,0);}
.m7e_c01036{transform:matrix(0.213277,0.008967,-0.010501,0.249779,0,0);-ms-transform:matrix(0.213277,0.008967,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.213277,0.008967,-0.010501,0.249779,0,0);}
.m148_c01036{transform:matrix(0.213439,0.009828,-0.011499,0.249735,0,0);-ms-transform:matrix(0.213439,0.009828,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.213439,0.009828,-0.011499,0.249735,0,0);}
.m153_c01036{transform:matrix(0.213705,0.008129,-0.009503,0.249819,0,0);-ms-transform:matrix(0.213705,0.008129,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.213705,0.008129,-0.009503,0.249819,0,0);}
.m9a_c01036{transform:matrix(0.213816,0.008989,-0.010501,0.249779,0,0);-ms-transform:matrix(0.213816,0.008989,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.213816,0.008989,-0.010501,0.249779,0,0);}
.mfb_c01036{transform:matrix(0.213951,0.008995,-0.010501,0.249779,0,0);-ms-transform:matrix(0.213951,0.008995,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.213951,0.008995,-0.010501,0.249779,0,0);}
.m6d_c01036{transform:matrix(0.214257,0.008364,-0.009752,0.249810,0,0);-ms-transform:matrix(0.214257,0.008364,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.214257,0.008364,-0.009752,0.249810,0,0);}
.m151_c01036{transform:matrix(0.214995,0.008178,-0.009503,0.249819,0,0);-ms-transform:matrix(0.214995,0.008178,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.214995,0.008178,-0.009503,0.249819,0,0);}
.m77_c01036{transform:matrix(0.215010,0.009039,-0.010501,0.249779,0,0);-ms-transform:matrix(0.215010,0.009039,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.215010,0.009039,-0.010501,0.249779,0,0);}
.m15a_c01036{transform:matrix(0.215349,0.008191,-0.009503,0.249819,0,0);-ms-transform:matrix(0.215349,0.008191,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.215349,0.008191,-0.009503,0.249819,0,0);}
.m156_c01036{transform:matrix(0.215464,0.008196,-0.009503,0.249819,0,0);-ms-transform:matrix(0.215464,0.008196,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.215464,0.008196,-0.009503,0.249819,0,0);}
.m61_c01036{transform:matrix(0.215551,0.008415,-0.009752,0.249810,0,0);-ms-transform:matrix(0.215551,0.008415,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.215551,0.008415,-0.009752,0.249810,0,0);}
.m14f_c01036{transform:matrix(0.215569,0.008200,-0.009503,0.249819,0,0);-ms-transform:matrix(0.215569,0.008200,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.215569,0.008200,-0.009503,0.249819,0,0);}
.m138_c01036{transform:matrix(0.216815,0.009983,-0.011499,0.249735,0,0);-ms-transform:matrix(0.216815,0.009983,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.216815,0.009983,-0.011499,0.249735,0,0);}
.m42_c01036{transform:matrix(0.217244,0.007829,-0.009003,0.249838,0,0);-ms-transform:matrix(0.217244,0.007829,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.217244,0.007829,-0.009003,0.249838,0,0);}
.m3c_c01036{transform:matrix(0.217959,0.007854,-0.009003,0.249838,0,0);-ms-transform:matrix(0.217959,0.007854,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.217959,0.007854,-0.009003,0.249838,0,0);}
.m3b_c01036{transform:matrix(0.218693,0.007881,-0.009003,0.249838,0,0);-ms-transform:matrix(0.218693,0.007881,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.218693,0.007881,-0.009003,0.249838,0,0);}
.m14a_c01036{transform:matrix(0.218748,0.010072,-0.011499,0.249735,0,0);-ms-transform:matrix(0.218748,0.010072,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.218748,0.010072,-0.011499,0.249735,0,0);}
.me_c01036{transform:matrix(0.219293,0.007902,-0.009003,0.249838,0,0);-ms-transform:matrix(0.219293,0.007902,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.219293,0.007902,-0.009003,0.249838,0,0);}
.m81_c01036{transform:matrix(0.219356,0.009222,-0.010501,0.249779,0,0);-ms-transform:matrix(0.219356,0.009222,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.219356,0.009222,-0.010501,0.249779,0,0);}
.m82_c01036{transform:matrix(0.219386,0.009223,-0.010501,0.249779,0,0);-ms-transform:matrix(0.219386,0.009223,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.219386,0.009223,-0.010501,0.249779,0,0);}
.m166_c01036{transform:matrix(0.219486,0.021838,-0.024752,0.248772,0,0);-ms-transform:matrix(0.219486,0.021838,-0.024752,0.248772,0,0);-webkit-transform:matrix(0.219486,0.021838,-0.024752,0.248772,0,0);}
.m14b_c01036{transform:matrix(0.219507,0.010107,-0.011499,0.249735,0,0);-ms-transform:matrix(0.219507,0.010107,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.219507,0.010107,-0.011499,0.249735,0,0);}
.mea_c01036{transform:matrix(0.220061,0.009252,-0.010501,0.249779,0,0);-ms-transform:matrix(0.220061,0.009252,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.220061,0.009252,-0.010501,0.249779,0,0);}
.m12d_c01036{transform:matrix(0.220635,0.009276,-0.010501,0.249779,0,0);-ms-transform:matrix(0.220635,0.009276,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.220635,0.009276,-0.010501,0.249779,0,0);}
.m9c_c01036{transform:matrix(0.221020,0.009292,-0.010501,0.249779,0,0);-ms-transform:matrix(0.221020,0.009292,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.221020,0.009292,-0.010501,0.249779,0,0);}
.m88_c01036{transform:matrix(0.221220,0.009301,-0.010501,0.249779,0,0);-ms-transform:matrix(0.221220,0.009301,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.221220,0.009301,-0.010501,0.249779,0,0);}
.m6a_c01036{transform:matrix(0.221426,0.008644,-0.009752,0.249810,0,0);-ms-transform:matrix(0.221426,0.008644,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.221426,0.008644,-0.009752,0.249810,0,0);}
.m14e_c01036{transform:matrix(0.221580,0.010203,-0.011499,0.249735,0,0);-ms-transform:matrix(0.221580,0.010203,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.221580,0.010203,-0.011499,0.249735,0,0);}
.m10f_c01036{transform:matrix(0.221674,0.009320,-0.010501,0.249779,0,0);-ms-transform:matrix(0.221674,0.009320,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.221674,0.009320,-0.010501,0.249779,0,0);}
.m10a_c01036{transform:matrix(0.221684,0.009320,-0.010501,0.249779,0,0);-ms-transform:matrix(0.221684,0.009320,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.221684,0.009320,-0.010501,0.249779,0,0);}
.m135_c01036{transform:matrix(0.222105,0.010227,-0.011499,0.249735,0,0);-ms-transform:matrix(0.222105,0.010227,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.222105,0.010227,-0.011499,0.249735,0,0);}
.m72_c01036{transform:matrix(0.222231,0.008676,-0.009752,0.249810,0,0);-ms-transform:matrix(0.222231,0.008676,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.222231,0.008676,-0.009752,0.249810,0,0);}
.m16_c01036{transform:matrix(0.222321,0.008012,-0.009003,0.249838,0,0);-ms-transform:matrix(0.222321,0.008012,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.222321,0.008012,-0.009003,0.249838,0,0);}
.ma1_c01036{transform:matrix(0.222878,0.009370,-0.010501,0.249779,0,0);-ms-transform:matrix(0.222878,0.009370,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.222878,0.009370,-0.010501,0.249779,0,0);}
.m84_c01036{transform:matrix(0.222918,0.009372,-0.010501,0.249779,0,0);-ms-transform:matrix(0.222918,0.009372,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.222918,0.009372,-0.010501,0.249779,0,0);}
.m45_c01036{transform:matrix(0.222925,0.008033,-0.009003,0.249838,0,0);-ms-transform:matrix(0.222925,0.008033,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.222925,0.008033,-0.009003,0.249838,0,0);}
.ma8_c01036{transform:matrix(0.223078,0.009379,-0.010501,0.249779,0,0);-ms-transform:matrix(0.223078,0.009379,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.223078,0.009379,-0.010501,0.249779,0,0);}
.md3_c01036{transform:matrix(0.223408,0.009393,-0.010501,0.249779,0,0);-ms-transform:matrix(0.223408,0.009393,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.223408,0.009393,-0.010501,0.249779,0,0);}
.m41_c01036{transform:matrix(0.223580,0.008057,-0.009003,0.249838,0,0);-ms-transform:matrix(0.223580,0.008057,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.223580,0.008057,-0.009003,0.249838,0,0);}
.m158_c01036{transform:matrix(0.223733,0.008510,-0.009503,0.249819,0,0);-ms-transform:matrix(0.223733,0.008510,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.223733,0.008510,-0.009503,0.249819,0,0);}
.m75_c01036{transform:matrix(0.225011,0.009460,-0.010501,0.249779,0,0);-ms-transform:matrix(0.225011,0.009460,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.225011,0.009460,-0.010501,0.249779,0,0);}
.ma0_c01036{transform:matrix(0.225026,0.009461,-0.010501,0.249779,0,0);-ms-transform:matrix(0.225026,0.009461,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.225026,0.009461,-0.010501,0.249779,0,0);}
.me6_c01036{transform:matrix(0.225146,0.009466,-0.010501,0.249779,0,0);-ms-transform:matrix(0.225146,0.009466,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.225146,0.009466,-0.010501,0.249779,0,0);}
.m14_c01036{transform:matrix(0.225324,0.008120,-0.009003,0.249838,0,0);-ms-transform:matrix(0.225324,0.008120,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.225324,0.008120,-0.009003,0.249838,0,0);}
.m13_c01036{transform:matrix(0.225514,0.008127,-0.009003,0.249838,0,0);-ms-transform:matrix(0.225514,0.008127,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.225514,0.008127,-0.009003,0.249838,0,0);}
.m93_c01036{transform:matrix(0.225736,0.009490,-0.010501,0.249779,0,0);-ms-transform:matrix(0.225736,0.009490,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.225736,0.009490,-0.010501,0.249779,0,0);}
.m51_c01036{transform:matrix(0.225738,0.008135,-0.009003,0.249838,0,0);-ms-transform:matrix(0.225738,0.008135,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.225738,0.008135,-0.009003,0.249838,0,0);}
.m7f_c01036{transform:matrix(0.226415,0.009519,-0.010501,0.249779,0,0);-ms-transform:matrix(0.226415,0.009519,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.226415,0.009519,-0.010501,0.249779,0,0);}
.m9d_c01036{transform:matrix(0.226695,0.009531,-0.010501,0.249779,0,0);-ms-transform:matrix(0.226695,0.009531,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.226695,0.009531,-0.010501,0.249779,0,0);}
.m121_c01036{transform:matrix(0.227484,0.009564,-0.010501,0.249779,0,0);-ms-transform:matrix(0.227484,0.009564,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.227484,0.009564,-0.010501,0.249779,0,0);}
.m62_c01036{transform:matrix(0.227512,0.008882,-0.009752,0.249810,0,0);-ms-transform:matrix(0.227512,0.008882,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.227512,0.008882,-0.009752,0.249810,0,0);}
.m5f_c01036{transform:matrix(0.227577,0.008884,-0.009752,0.249810,0,0);-ms-transform:matrix(0.227577,0.008884,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.227577,0.008884,-0.009752,0.249810,0,0);}
.m12e_c01036{transform:matrix(0.227924,0.009582,-0.010501,0.249779,0,0);-ms-transform:matrix(0.227924,0.009582,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.227924,0.009582,-0.010501,0.249779,0,0);}
.m5c_c01036{transform:matrix(0.227966,0.008900,-0.009752,0.249810,0,0);-ms-transform:matrix(0.227966,0.008900,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.227966,0.008900,-0.009752,0.249810,0,0);}
.m4f_c01036{transform:matrix(0.228012,0.008217,-0.009003,0.249838,0,0);-ms-transform:matrix(0.228012,0.008217,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.228012,0.008217,-0.009003,0.249838,0,0);}
.m106_c01036{transform:matrix(0.228143,0.009592,-0.010501,0.249779,0,0);-ms-transform:matrix(0.228143,0.009592,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.228143,0.009592,-0.010501,0.249779,0,0);}
.m159_c01036{transform:matrix(0.228590,0.008695,-0.009503,0.249819,0,0);-ms-transform:matrix(0.228590,0.008695,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.228590,0.008695,-0.009503,0.249819,0,0);}
.mcc_c01036{transform:matrix(0.228763,0.009618,-0.010501,0.249779,0,0);-ms-transform:matrix(0.228763,0.009618,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.228763,0.009618,-0.010501,0.249779,0,0);}
.m43_c01036{transform:matrix(0.228816,0.008246,-0.009003,0.249838,0,0);-ms-transform:matrix(0.228816,0.008246,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.228816,0.008246,-0.009003,0.249838,0,0);}
.ma5_c01036{transform:matrix(0.228993,0.009627,-0.010501,0.249779,0,0);-ms-transform:matrix(0.228993,0.009627,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.228993,0.009627,-0.010501,0.249779,0,0);}
.m6e_c01036{transform:matrix(0.229021,0.008941,-0.009752,0.249810,0,0);-ms-transform:matrix(0.229021,0.008941,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.229021,0.008941,-0.009752,0.249810,0,0);}
.m117_c01036{transform:matrix(0.229507,0.009649,-0.010501,0.249779,0,0);-ms-transform:matrix(0.229507,0.009649,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.229507,0.009649,-0.010501,0.249779,0,0);}
.m9e_c01036{transform:matrix(0.229622,0.009654,-0.010501,0.249779,0,0);-ms-transform:matrix(0.229622,0.009654,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.229622,0.009654,-0.010501,0.249779,0,0);}
.m116_c01036{transform:matrix(0.229867,0.009664,-0.010501,0.249779,0,0);-ms-transform:matrix(0.229867,0.009664,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.229867,0.009664,-0.010501,0.249779,0,0);}
.m111_c01036{transform:matrix(0.230012,0.009670,-0.010501,0.249779,0,0);-ms-transform:matrix(0.230012,0.009670,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.230012,0.009670,-0.010501,0.249779,0,0);}
.m70_c01036{transform:matrix(0.230225,0.008988,-0.009752,0.249810,0,0);-ms-transform:matrix(0.230225,0.008988,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.230225,0.008988,-0.009752,0.249810,0,0);}
.m124_c01036{transform:matrix(0.230481,0.009690,-0.010501,0.249779,0,0);-ms-transform:matrix(0.230481,0.009690,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.230481,0.009690,-0.010501,0.249779,0,0);}
.mff_c01036{transform:matrix(0.230711,0.009700,-0.010501,0.249779,0,0);-ms-transform:matrix(0.230711,0.009700,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.230711,0.009700,-0.010501,0.249779,0,0);}
.m65_c01036{transform:matrix(0.230739,0.009008,-0.009752,0.249810,0,0);-ms-transform:matrix(0.230739,0.009008,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.230739,0.009008,-0.009752,0.249810,0,0);}
.ma3_c01036{transform:matrix(0.231261,0.009723,-0.010501,0.249779,0,0);-ms-transform:matrix(0.231261,0.009723,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.231261,0.009723,-0.010501,0.249779,0,0);}
.mc8_c01036{transform:matrix(0.231436,0.009730,-0.010501,0.249779,0,0);-ms-transform:matrix(0.231436,0.009730,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.231436,0.009730,-0.010501,0.249779,0,0);}
.m5d_c01036{transform:matrix(0.231454,0.009036,-0.009752,0.249810,0,0);-ms-transform:matrix(0.231454,0.009036,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.231454,0.009036,-0.009752,0.249810,0,0);}
.m80_c01036{transform:matrix(0.231700,0.009741,-0.010501,0.249779,0,0);-ms-transform:matrix(0.231700,0.009741,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.231700,0.009741,-0.010501,0.249779,0,0);}
.md5_c01036{transform:matrix(0.232080,0.009757,-0.010501,0.249779,0,0);-ms-transform:matrix(0.232080,0.009757,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.232080,0.009757,-0.010501,0.249779,0,0);}
.m157_c01036{transform:matrix(0.232152,0.008831,-0.009503,0.249819,0,0);-ms-transform:matrix(0.232152,0.008831,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.232152,0.008831,-0.009503,0.249819,0,0);}
.m113_c01036{transform:matrix(0.232250,0.009764,-0.010501,0.249779,0,0);-ms-transform:matrix(0.232250,0.009764,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.232250,0.009764,-0.010501,0.249779,0,0);}
.mef_c01036{transform:matrix(0.232874,0.009791,-0.010501,0.249779,0,0);-ms-transform:matrix(0.232874,0.009791,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.232874,0.009791,-0.010501,0.249779,0,0);}
.mfe_c01036{transform:matrix(0.233169,0.009803,-0.010501,0.249779,0,0);-ms-transform:matrix(0.233169,0.009803,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.233169,0.009803,-0.010501,0.249779,0,0);}
.m10_c01036{transform:matrix(0.233438,0.008412,-0.009003,0.249838,0,0);-ms-transform:matrix(0.233438,0.008412,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.233438,0.008412,-0.009003,0.249838,0,0);}
.md0_c01036{transform:matrix(0.233489,0.009816,-0.010501,0.249779,0,0);-ms-transform:matrix(0.233489,0.009816,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.233489,0.009816,-0.010501,0.249779,0,0);}
.m63_c01036{transform:matrix(0.233597,0.009119,-0.009752,0.249810,0,0);-ms-transform:matrix(0.233597,0.009119,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.233597,0.009119,-0.009752,0.249810,0,0);}
.m30_c01036{transform:matrix(0.234173,0.008439,-0.009003,0.249838,0,0);-ms-transform:matrix(0.234173,0.008439,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.234173,0.008439,-0.009003,0.249838,0,0);}
.m11d_c01036{transform:matrix(0.234328,0.009852,-0.010501,0.249779,0,0);-ms-transform:matrix(0.234328,0.009852,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.234328,0.009852,-0.010501,0.249779,0,0);}
.m4b_c01036{transform:matrix(0.234633,0.008455,-0.009003,0.249838,0,0);-ms-transform:matrix(0.234633,0.008455,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.234633,0.008455,-0.009003,0.249838,0,0);}
.m144_c01036{transform:matrix(0.234761,0.010810,-0.011499,0.249735,0,0);-ms-transform:matrix(0.234761,0.010810,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.234761,0.010810,-0.011499,0.249735,0,0);}
.m12f_c01036{transform:matrix(0.234997,0.009880,-0.010501,0.249779,0,0);-ms-transform:matrix(0.234997,0.009880,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.234997,0.009880,-0.010501,0.249779,0,0);}
.m12b_c01036{transform:matrix(0.235542,0.009903,-0.010501,0.249779,0,0);-ms-transform:matrix(0.235542,0.009903,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.235542,0.009903,-0.010501,0.249779,0,0);}
.m105_c01036{transform:matrix(0.235592,0.009905,-0.010501,0.249779,0,0);-ms-transform:matrix(0.235592,0.009905,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.235592,0.009905,-0.010501,0.249779,0,0);}
.m69_c01036{transform:matrix(0.235631,0.009199,-0.009752,0.249810,0,0);-ms-transform:matrix(0.235631,0.009199,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.235631,0.009199,-0.009752,0.249810,0,0);}
.m114_c01036{transform:matrix(0.235672,0.009908,-0.010501,0.249779,0,0);-ms-transform:matrix(0.235672,0.009908,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.235672,0.009908,-0.010501,0.249779,0,0);}
.m101_c01036{transform:matrix(0.236002,0.009922,-0.010501,0.249779,0,0);-ms-transform:matrix(0.236002,0.009922,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.236002,0.009922,-0.010501,0.249779,0,0);}
.m4c_c01036{transform:matrix(0.236262,0.008514,-0.009003,0.249838,0,0);-ms-transform:matrix(0.236262,0.008514,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.236262,0.008514,-0.009003,0.249838,0,0);}
.m86_c01036{transform:matrix(0.237345,0.009978,-0.010501,0.249779,0,0);-ms-transform:matrix(0.237345,0.009978,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.237345,0.009978,-0.010501,0.249779,0,0);}
.ma6_c01036{transform:matrix(0.237725,0.009994,-0.010501,0.249779,0,0);-ms-transform:matrix(0.237725,0.009994,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.237725,0.009994,-0.010501,0.249779,0,0);}
.m15_c01036{transform:matrix(0.237971,0.008576,-0.009003,0.249838,0,0);-ms-transform:matrix(0.237971,0.008576,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.237971,0.008576,-0.009003,0.249838,0,0);}
.m12_c01036{transform:matrix(0.238750,0.008604,-0.009003,0.249838,0,0);-ms-transform:matrix(0.238750,0.008604,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.238750,0.008604,-0.009003,0.249838,0,0);}
.mfa_c01036{transform:matrix(0.238999,0.010048,-0.010501,0.249779,0,0);-ms-transform:matrix(0.238999,0.010048,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.238999,0.010048,-0.010501,0.249779,0,0);}
.m1c_c01036{transform:matrix(0.239495,0.008630,-0.009003,0.249838,0,0);-ms-transform:matrix(0.239495,0.008630,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.239495,0.008630,-0.009003,0.249838,0,0);}
.med_c01036{transform:matrix(0.240548,0.010113,-0.010501,0.249779,0,0);-ms-transform:matrix(0.240548,0.010113,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.240548,0.010113,-0.010501,0.249779,0,0);}
.m168_c01036{transform:matrix(0.240874,0.008680,-0.009003,0.249838,0,0);-ms-transform:matrix(0.240874,0.008680,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.240874,0.008680,-0.009003,0.249838,0,0);}
.m6b_c01036{transform:matrix(0.240897,0.009404,-0.009752,0.249810,0,0);-ms-transform:matrix(0.240897,0.009404,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.240897,0.009404,-0.009752,0.249810,0,0);}
.m9b_c01036{transform:matrix(0.240952,0.010130,-0.010501,0.249779,0,0);-ms-transform:matrix(0.240952,0.010130,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.240952,0.010130,-0.010501,0.249779,0,0);}
.mdb_c01036{transform:matrix(0.241287,0.010144,-0.010501,0.249779,0,0);-ms-transform:matrix(0.241287,0.010144,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.241287,0.010144,-0.010501,0.249779,0,0);}
.m123_c01036{transform:matrix(0.241292,0.010144,-0.010501,0.249779,0,0);-ms-transform:matrix(0.241292,0.010144,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.241292,0.010144,-0.010501,0.249779,0,0);}
.m49_c01036{transform:matrix(0.241623,0.008707,-0.009003,0.249838,0,0);-ms-transform:matrix(0.241623,0.008707,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.241623,0.008707,-0.009003,0.249838,0,0);}
.m54_c01036{transform:matrix(0.241836,0.009441,-0.009752,0.249810,0,0);-ms-transform:matrix(0.241836,0.009441,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.241836,0.009441,-0.009752,0.249810,0,0);}
.mdd_c01036{transform:matrix(0.241836,0.010167,-0.010501,0.249779,0,0);-ms-transform:matrix(0.241836,0.010167,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.241836,0.010167,-0.010501,0.249779,0,0);}
.m21_c01036{transform:matrix(0.242588,0.008742,-0.009003,0.249838,0,0);-ms-transform:matrix(0.242588,0.008742,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.242588,0.008742,-0.009003,0.249838,0,0);}
.m103_c01036{transform:matrix(0.242840,0.010210,-0.010501,0.249779,0,0);-ms-transform:matrix(0.242840,0.010210,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.242840,0.010210,-0.010501,0.249779,0,0);}
.m95_c01036{transform:matrix(0.243070,0.010219,-0.010501,0.249779,0,0);-ms-transform:matrix(0.243070,0.010219,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.243070,0.010219,-0.010501,0.249779,0,0);}
.m97_c01036{transform:matrix(0.243190,0.010224,-0.010501,0.249779,0,0);-ms-transform:matrix(0.243190,0.010224,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.243190,0.010224,-0.010501,0.249779,0,0);}
.m11b_c01036{transform:matrix(0.243280,0.010228,-0.010501,0.249779,0,0);-ms-transform:matrix(0.243280,0.010228,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.243280,0.010228,-0.010501,0.249779,0,0);}
.mf1_c01036{transform:matrix(0.243355,0.010231,-0.010501,0.249779,0,0);-ms-transform:matrix(0.243355,0.010231,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.243355,0.010231,-0.010501,0.249779,0,0);}
.m1b_c01036{transform:matrix(0.243657,0.008780,-0.009003,0.249838,0,0);-ms-transform:matrix(0.243657,0.008780,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.243657,0.008780,-0.009003,0.249838,0,0);}
.m130_c01036{transform:matrix(0.243890,0.010254,-0.010501,0.249779,0,0);-ms-transform:matrix(0.243890,0.010254,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.243890,0.010254,-0.010501,0.249779,0,0);}
.mee_c01036{transform:matrix(0.243964,0.010257,-0.010501,0.249779,0,0);-ms-transform:matrix(0.243964,0.010257,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.243964,0.010257,-0.010501,0.249779,0,0);}
.md7_c01036{transform:matrix(0.244039,0.010260,-0.010501,0.249779,0,0);-ms-transform:matrix(0.244039,0.010260,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.244039,0.010260,-0.010501,0.249779,0,0);}
.md9_c01036{transform:matrix(0.244114,0.010263,-0.010501,0.249779,0,0);-ms-transform:matrix(0.244114,0.010263,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.244114,0.010263,-0.010501,0.249779,0,0);}
.mc2_c01036{transform:matrix(0.244989,0.010300,-0.010501,0.249779,0,0);-ms-transform:matrix(0.244989,0.010300,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.244989,0.010300,-0.010501,0.249779,0,0);}
.m99_c01036{transform:matrix(0.245138,0.010306,-0.010501,0.249779,0,0);-ms-transform:matrix(0.245138,0.010306,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.245138,0.010306,-0.010501,0.249779,0,0);}
.m87_c01036{transform:matrix(0.245223,0.010310,-0.010501,0.249779,0,0);-ms-transform:matrix(0.245223,0.010310,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.245223,0.010310,-0.010501,0.249779,0,0);}
.m107_c01036{transform:matrix(0.245543,0.010323,-0.010501,0.249779,0,0);-ms-transform:matrix(0.245543,0.010323,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.245543,0.010323,-0.010501,0.249779,0,0);}
.m8f_c01036{transform:matrix(0.245618,0.010326,-0.010501,0.249779,0,0);-ms-transform:matrix(0.245618,0.010326,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.245618,0.010326,-0.010501,0.249779,0,0);}
.m64_c01036{transform:matrix(0.246003,0.009604,-0.009752,0.249810,0,0);-ms-transform:matrix(0.246003,0.009604,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.246003,0.009604,-0.009752,0.249810,0,0);}
.m110_c01036{transform:matrix(0.246208,0.010351,-0.010501,0.249779,0,0);-ms-transform:matrix(0.246208,0.010351,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.246208,0.010351,-0.010501,0.249779,0,0);}
.m104_c01036{transform:matrix(0.246442,0.010361,-0.010501,0.249779,0,0);-ms-transform:matrix(0.246442,0.010361,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.246442,0.010361,-0.010501,0.249779,0,0);}
.mce_c01036{transform:matrix(0.246937,0.010382,-0.010501,0.249779,0,0);-ms-transform:matrix(0.246937,0.010382,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.246937,0.010382,-0.010501,0.249779,0,0);}
.m5b_c01036{transform:matrix(0.247062,0.009645,-0.009752,0.249810,0,0);-ms-transform:matrix(0.247062,0.009645,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.247062,0.009645,-0.009752,0.249810,0,0);}
.m32_c01036{transform:matrix(0.247195,0.008908,-0.009003,0.249838,0,0);-ms-transform:matrix(0.247195,0.008908,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.247195,0.008908,-0.009003,0.249838,0,0);}
.m56_c01036{transform:matrix(0.247496,0.009662,-0.009752,0.249810,0,0);-ms-transform:matrix(0.247496,0.009662,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.247496,0.009662,-0.009752,0.249810,0,0);}
.m142_c01036{transform:matrix(0.247503,0.011397,-0.011499,0.249735,0,0);-ms-transform:matrix(0.247503,0.011397,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.247503,0.011397,-0.011499,0.249735,0,0);}
.m67_c01036{transform:matrix(0.247506,0.009662,-0.009752,0.249810,0,0);-ms-transform:matrix(0.247506,0.009662,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.247506,0.009662,-0.009752,0.249810,0,0);}
.mba_c01036{transform:matrix(0.248021,0.010427,-0.010501,0.249779,0,0);-ms-transform:matrix(0.248021,0.010427,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.248021,0.010427,-0.010501,0.249779,0,0);}
.m169_c01036{transform:matrix(0.248349,0.008950,-0.009003,0.249838,0,0);-ms-transform:matrix(0.248349,0.008950,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.248349,0.008950,-0.009003,0.249838,0,0);}
.m35_c01036{transform:matrix(0.248739,0.008964,-0.009003,0.249838,0,0);-ms-transform:matrix(0.248739,0.008964,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.248739,0.008964,-0.009003,0.249838,0,0);}
.m132_c01036{transform:matrix(0.248800,0.010460,-0.010501,0.249779,0,0);-ms-transform:matrix(0.248800,0.010460,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.248800,0.010460,-0.010501,0.249779,0,0);}
.m128_c01036{transform:matrix(0.248825,0.010461,-0.010501,0.249779,0,0);-ms-transform:matrix(0.248825,0.010461,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.248825,0.010461,-0.010501,0.249779,0,0);}
.m1a_c01036{transform:matrix(0.248878,0.008969,-0.009003,0.249838,0,0);-ms-transform:matrix(0.248878,0.008969,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.248878,0.008969,-0.009003,0.249838,0,0);}
.m108_c01036{transform:matrix(0.249520,0.010490,-0.010501,0.249779,0,0);-ms-transform:matrix(0.249520,0.010490,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.249520,0.010490,-0.010501,0.249779,0,0);}
.m60_c01036{transform:matrix(0.249870,0.009755,-0.009752,0.249810,0,0);-ms-transform:matrix(0.249870,0.009755,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.249870,0.009755,-0.009752,0.249810,0,0);}
.mf5_c01036{transform:matrix(0.250104,0.010515,-0.010501,0.249779,0,0);-ms-transform:matrix(0.250104,0.010515,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.250104,0.010515,-0.010501,0.249779,0,0);}
.m19_c01036{transform:matrix(0.250627,0.009032,-0.009003,0.249838,0,0);-ms-transform:matrix(0.250627,0.009032,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.250627,0.009032,-0.009003,0.249838,0,0);}
.mc3_c01036{transform:matrix(0.250709,0.010540,-0.010501,0.249779,0,0);-ms-transform:matrix(0.250709,0.010540,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.250709,0.010540,-0.010501,0.249779,0,0);}
.m140_c01036{transform:matrix(0.250899,0.011553,-0.011499,0.249735,0,0);-ms-transform:matrix(0.250899,0.011553,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.250899,0.011553,-0.011499,0.249735,0,0);}
.m94_c01036{transform:matrix(0.250908,0.010549,-0.010501,0.249779,0,0);-ms-transform:matrix(0.250908,0.010549,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.250908,0.010549,-0.010501,0.249779,0,0);}
.m2d_c01036{transform:matrix(0.250982,0.009044,-0.009003,0.249838,0,0);-ms-transform:matrix(0.250982,0.009044,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.250982,0.009044,-0.009003,0.249838,0,0);}
.m18_c01036{transform:matrix(0.251012,0.009045,-0.009003,0.249838,0,0);-ms-transform:matrix(0.251012,0.009045,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.251012,0.009045,-0.009003,0.249838,0,0);}
.mbd_c01036{transform:matrix(0.251043,0.010554,-0.010501,0.249779,0,0);-ms-transform:matrix(0.251043,0.010554,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.251043,0.010554,-0.010501,0.249779,0,0);}
.m122_c01036{transform:matrix(0.251208,0.010561,-0.010501,0.249779,0,0);-ms-transform:matrix(0.251208,0.010561,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.251208,0.010561,-0.010501,0.249779,0,0);}
.m143_c01036{transform:matrix(0.251464,0.011579,-0.011499,0.249735,0,0);-ms-transform:matrix(0.251464,0.011579,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.251464,0.011579,-0.011499,0.249735,0,0);}
.m16a_c01036{transform:matrix(0.251577,0.009066,-0.009003,0.249838,0,0);-ms-transform:matrix(0.251577,0.009066,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.251577,0.009066,-0.009003,0.249838,0,0);}
.m145_c01036{transform:matrix(0.251988,0.011603,-0.011499,0.249735,0,0);-ms-transform:matrix(0.251988,0.011603,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.251988,0.011603,-0.011499,0.249735,0,0);}
.m25_c01036{transform:matrix(0.252356,0.009094,-0.009003,0.249838,0,0);-ms-transform:matrix(0.252356,0.009094,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.252356,0.009094,-0.009003,0.249838,0,0);}
.mc6_c01036{transform:matrix(0.252367,0.010610,-0.010501,0.249779,0,0);-ms-transform:matrix(0.252367,0.010610,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.252367,0.010610,-0.010501,0.249779,0,0);}
.m38_c01036{transform:matrix(0.252531,0.009100,-0.009003,0.249838,0,0);-ms-transform:matrix(0.252531,0.009100,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.252531,0.009100,-0.009003,0.249838,0,0);}
.m13d_c01036{transform:matrix(0.252572,0.011630,-0.011499,0.249735,0,0);-ms-transform:matrix(0.252572,0.011630,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.252572,0.011630,-0.011499,0.249735,0,0);}
.m120_c01036{transform:matrix(0.252812,0.010629,-0.010501,0.249779,0,0);-ms-transform:matrix(0.252812,0.010629,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.252812,0.010629,-0.010501,0.249779,0,0);}
.m147_c01036{transform:matrix(0.252982,0.011649,-0.011499,0.249735,0,0);-ms-transform:matrix(0.252982,0.011649,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.252982,0.011649,-0.011499,0.249735,0,0);}
.mcd_c01036{transform:matrix(0.253101,0.010641,-0.010501,0.249779,0,0);-ms-transform:matrix(0.253101,0.010641,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.253101,0.010641,-0.010501,0.249779,0,0);}
.mdf_c01036{transform:matrix(0.253176,0.010644,-0.010501,0.249779,0,0);-ms-transform:matrix(0.253176,0.010644,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.253176,0.010644,-0.010501,0.249779,0,0);}
.m119_c01036{transform:matrix(0.253561,0.010660,-0.010501,0.249779,0,0);-ms-transform:matrix(0.253561,0.010660,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.253561,0.010660,-0.010501,0.249779,0,0);}
.m5e_c01036{transform:matrix(0.253997,0.009916,-0.009752,0.249810,0,0);-ms-transform:matrix(0.253997,0.009916,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.253997,0.009916,-0.009752,0.249810,0,0);}
.m127_c01036{transform:matrix(0.254081,0.010682,-0.010501,0.249779,0,0);-ms-transform:matrix(0.254081,0.010682,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.254081,0.010682,-0.010501,0.249779,0,0);}
.m17_c01036{transform:matrix(0.254085,0.009156,-0.009003,0.249838,0,0);-ms-transform:matrix(0.254085,0.009156,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.254085,0.009156,-0.009003,0.249838,0,0);}
.mdc_c01036{transform:matrix(0.254400,0.010696,-0.010501,0.249779,0,0);-ms-transform:matrix(0.254400,0.010696,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.254400,0.010696,-0.010501,0.249779,0,0);}
.md2_c01036{transform:matrix(0.254485,0.010699,-0.010501,0.249779,0,0);-ms-transform:matrix(0.254485,0.010699,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.254485,0.010699,-0.010501,0.249779,0,0);}
.meb_c01036{transform:matrix(0.255110,0.010725,-0.010501,0.249779,0,0);-ms-transform:matrix(0.255110,0.010725,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.255110,0.010725,-0.010501,0.249779,0,0);}
.m126_c01036{transform:matrix(0.255215,0.010730,-0.010501,0.249779,0,0);-ms-transform:matrix(0.255215,0.010730,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.255215,0.010730,-0.010501,0.249779,0,0);}
.m73_c01036{transform:matrix(0.255266,0.009965,-0.009752,0.249810,0,0);-ms-transform:matrix(0.255266,0.009965,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.255266,0.009965,-0.009752,0.249810,0,0);}
.m167_c01036{transform:matrix(0.255289,0.009200,-0.009003,0.249838,0,0);-ms-transform:matrix(0.255289,0.009200,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.255289,0.009200,-0.009003,0.249838,0,0);}
.mb8_c01036{transform:matrix(0.255294,0.010733,-0.010501,0.249779,0,0);-ms-transform:matrix(0.255294,0.010733,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.255294,0.010733,-0.010501,0.249779,0,0);}
.m129_c01036{transform:matrix(0.255464,0.010740,-0.010501,0.249779,0,0);-ms-transform:matrix(0.255464,0.010740,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.255464,0.010740,-0.010501,0.249779,0,0);}
.m59_c01036{transform:matrix(0.255480,0.009974,-0.009752,0.249810,0,0);-ms-transform:matrix(0.255480,0.009974,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.255480,0.009974,-0.009752,0.249810,0,0);}
.mc1_c01036{transform:matrix(0.257193,0.010813,-0.010501,0.249779,0,0);-ms-transform:matrix(0.257193,0.010813,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.257193,0.010813,-0.010501,0.249779,0,0);}
.m10e_c01036{transform:matrix(0.257498,0.010826,-0.010501,0.249779,0,0);-ms-transform:matrix(0.257498,0.010826,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.257498,0.010826,-0.010501,0.249779,0,0);}
.m11e_c01036{transform:matrix(0.257817,0.010839,-0.010501,0.249779,0,0);-ms-transform:matrix(0.257817,0.010839,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.257817,0.010839,-0.010501,0.249779,0,0);}
.me8_c01036{transform:matrix(0.258492,0.010868,-0.010501,0.249779,0,0);-ms-transform:matrix(0.258492,0.010868,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.258492,0.010868,-0.010501,0.249779,0,0);}
.m15c_c01036{transform:matrix(0.258941,0.025764,-0.024752,0.248772,0,0);-ms-transform:matrix(0.258941,0.025764,-0.024752,0.248772,0,0);-webkit-transform:matrix(0.258941,0.025764,-0.024752,0.248772,0,0);}
.m89_c01036{transform:matrix(0.259231,0.010899,-0.010501,0.249779,0,0);-ms-transform:matrix(0.259231,0.010899,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.259231,0.010899,-0.010501,0.249779,0,0);}
.m8b_c01036{transform:matrix(0.259791,0.010922,-0.010501,0.249779,0,0);-ms-transform:matrix(0.259791,0.010922,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.259791,0.010922,-0.010501,0.249779,0,0);}
.m112_c01036{transform:matrix(0.260150,0.010937,-0.010501,0.249779,0,0);-ms-transform:matrix(0.260150,0.010937,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.260150,0.010937,-0.010501,0.249779,0,0);}
.m8d_c01036{transform:matrix(0.260505,0.010952,-0.010501,0.249779,0,0);-ms-transform:matrix(0.260505,0.010952,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.260505,0.010952,-0.010501,0.249779,0,0);}
.m52_c01036{transform:matrix(0.260761,0.009397,-0.009003,0.249838,0,0);-ms-transform:matrix(0.260761,0.009397,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.260761,0.009397,-0.009003,0.249838,0,0);}
.me3_c01036{transform:matrix(0.260835,0.010966,-0.010501,0.249779,0,0);-ms-transform:matrix(0.260835,0.010966,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.260835,0.010966,-0.010501,0.249779,0,0);}
.m55_c01036{transform:matrix(0.260971,0.010188,-0.009752,0.249810,0,0);-ms-transform:matrix(0.260971,0.010188,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.260971,0.010188,-0.009752,0.249810,0,0);}
.m118_c01036{transform:matrix(0.260979,0.010972,-0.010501,0.249779,0,0);-ms-transform:matrix(0.260979,0.010972,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.260979,0.010972,-0.010501,0.249779,0,0);}
.mbe_c01036{transform:matrix(0.261114,0.010978,-0.010501,0.249779,0,0);-ms-transform:matrix(0.261114,0.010978,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.261114,0.010978,-0.010501,0.249779,0,0);}
.mc4_c01036{transform:matrix(0.263068,0.011060,-0.010501,0.249779,0,0);-ms-transform:matrix(0.263068,0.011060,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.263068,0.011060,-0.010501,0.249779,0,0);}
.mf4_c01036{transform:matrix(0.263527,0.011079,-0.010501,0.249779,0,0);-ms-transform:matrix(0.263527,0.011079,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.263527,0.011079,-0.010501,0.249779,0,0);}
.m10d_c01036{transform:matrix(0.263552,0.011080,-0.010501,0.249779,0,0);-ms-transform:matrix(0.263552,0.011080,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.263552,0.011080,-0.010501,0.249779,0,0);}
.mf0_c01036{transform:matrix(0.263707,0.011087,-0.010501,0.249779,0,0);-ms-transform:matrix(0.263707,0.011087,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.263707,0.011087,-0.010501,0.249779,0,0);}
.m5a_c01036{transform:matrix(0.264074,0.010309,-0.009752,0.249810,0,0);-ms-transform:matrix(0.264074,0.010309,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.264074,0.010309,-0.009752,0.249810,0,0);}
.mc0_c01036{transform:matrix(0.264496,0.011120,-0.010501,0.249779,0,0);-ms-transform:matrix(0.264496,0.011120,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.264496,0.011120,-0.010501,0.249779,0,0);}
.md6_c01036{transform:matrix(0.264696,0.011128,-0.010501,0.249779,0,0);-ms-transform:matrix(0.264696,0.011128,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.264696,0.011128,-0.010501,0.249779,0,0);}
.me7_c01036{transform:matrix(0.265196,0.011149,-0.010501,0.249779,0,0);-ms-transform:matrix(0.265196,0.011149,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.265196,0.011149,-0.010501,0.249779,0,0);}
.mf3_c01036{transform:matrix(0.265675,0.011170,-0.010501,0.249779,0,0);-ms-transform:matrix(0.265675,0.011170,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.265675,0.011170,-0.010501,0.249779,0,0);}
.me9_c01036{transform:matrix(0.265955,0.011181,-0.010501,0.249779,0,0);-ms-transform:matrix(0.265955,0.011181,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.265955,0.011181,-0.010501,0.249779,0,0);}
.m11f_c01036{transform:matrix(0.266360,0.011198,-0.010501,0.249779,0,0);-ms-transform:matrix(0.266360,0.011198,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.266360,0.011198,-0.010501,0.249779,0,0);}
.m15d_c01036{transform:matrix(0.266459,0.026512,-0.024752,0.248772,0,0);-ms-transform:matrix(0.266459,0.026512,-0.024752,0.248772,0,0);-webkit-transform:matrix(0.266459,0.026512,-0.024752,0.248772,0,0);}
.m125_c01036{transform:matrix(0.266505,0.011204,-0.010501,0.249779,0,0);-ms-transform:matrix(0.266505,0.011204,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.266505,0.011204,-0.010501,0.249779,0,0);}
.m29_c01036{transform:matrix(0.266947,0.009620,-0.009003,0.249838,0,0);-ms-transform:matrix(0.266947,0.009620,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.266947,0.009620,-0.009003,0.249838,0,0);}
.m1f_c01036{transform:matrix(0.267401,0.009636,-0.009003,0.249838,0,0);-ms-transform:matrix(0.267401,0.009636,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.267401,0.009636,-0.009003,0.249838,0,0);}
.md1_c01036{transform:matrix(0.268198,0.011276,-0.010501,0.249779,0,0);-ms-transform:matrix(0.268198,0.011276,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.268198,0.011276,-0.010501,0.249779,0,0);}
.m53_c01036{transform:matrix(0.268231,0.010471,-0.009752,0.249810,0,0);-ms-transform:matrix(0.268231,0.010471,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.268231,0.010471,-0.009752,0.249810,0,0);}
.m11a_c01036{transform:matrix(0.268488,0.011288,-0.010501,0.249779,0,0);-ms-transform:matrix(0.268488,0.011288,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.268488,0.011288,-0.010501,0.249779,0,0);}
.me5_c01036{transform:matrix(0.268623,0.011293,-0.010501,0.249779,0,0);-ms-transform:matrix(0.268623,0.011293,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.268623,0.011293,-0.010501,0.249779,0,0);}
.m115_c01036{transform:matrix(0.269127,0.011315,-0.010501,0.249779,0,0);-ms-transform:matrix(0.269127,0.011315,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.269127,0.011315,-0.010501,0.249779,0,0);}
.m1d_c01036{transform:matrix(0.269470,0.009711,-0.009003,0.249838,0,0);-ms-transform:matrix(0.269470,0.009711,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.269470,0.009711,-0.009003,0.249838,0,0);}
.m20_c01036{transform:matrix(0.269670,0.009718,-0.009003,0.249838,0,0);-ms-transform:matrix(0.269670,0.009718,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.269670,0.009718,-0.009003,0.249838,0,0);}
.mcf_c01036{transform:matrix(0.269862,0.011346,-0.010501,0.249779,0,0);-ms-transform:matrix(0.269862,0.011346,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.269862,0.011346,-0.010501,0.249779,0,0);}
.m58_c01036{transform:matrix(0.269894,0.010536,-0.009752,0.249810,0,0);-ms-transform:matrix(0.269894,0.010536,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.269894,0.010536,-0.009752,0.249810,0,0);}
.m37_c01036{transform:matrix(0.270644,0.009753,-0.009003,0.249838,0,0);-ms-transform:matrix(0.270644,0.009753,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.270644,0.009753,-0.009003,0.249838,0,0);}
.m4e_c01036{transform:matrix(0.270649,0.009753,-0.009003,0.249838,0,0);-ms-transform:matrix(0.270649,0.009753,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.270649,0.009753,-0.009003,0.249838,0,0);}
.m48_c01036{transform:matrix(0.270944,0.009764,-0.009003,0.249838,0,0);-ms-transform:matrix(0.270944,0.009764,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.270944,0.009764,-0.009003,0.249838,0,0);}
.m24_c01036{transform:matrix(0.271094,0.009769,-0.009003,0.249838,0,0);-ms-transform:matrix(0.271094,0.009769,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.271094,0.009769,-0.009003,0.249838,0,0);}
.mc9_c01036{transform:matrix(0.271150,0.011400,-0.010501,0.249779,0,0);-ms-transform:matrix(0.271150,0.011400,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.271150,0.011400,-0.010501,0.249779,0,0);}
.mec_c01036{transform:matrix(0.271470,0.011413,-0.010501,0.249779,0,0);-ms-transform:matrix(0.271470,0.011413,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.271470,0.011413,-0.010501,0.249779,0,0);}
.m22_c01036{transform:matrix(0.271824,0.009795,-0.009003,0.249838,0,0);-ms-transform:matrix(0.271824,0.009795,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.271824,0.009795,-0.009003,0.249838,0,0);}
.mc5_c01036{transform:matrix(0.273194,0.011486,-0.010501,0.249779,0,0);-ms-transform:matrix(0.273194,0.011486,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.273194,0.011486,-0.010501,0.249779,0,0);}
.m10b_c01036{transform:matrix(0.273518,0.011499,-0.010501,0.249779,0,0);-ms-transform:matrix(0.273518,0.011499,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.273518,0.011499,-0.010501,0.249779,0,0);}
.mb9_c01036{transform:matrix(0.274028,0.011521,-0.010501,0.249779,0,0);-ms-transform:matrix(0.274028,0.011521,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.274028,0.011521,-0.010501,0.249779,0,0);}
.m4a_c01036{transform:matrix(0.274322,0.009885,-0.009003,0.249838,0,0);-ms-transform:matrix(0.274322,0.009885,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.274322,0.009885,-0.009003,0.249838,0,0);}
.m57_c01036{transform:matrix(0.274881,0.010731,-0.009752,0.249810,0,0);-ms-transform:matrix(0.274881,0.010731,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.274881,0.010731,-0.009752,0.249810,0,0);}
.me0_c01036{transform:matrix(0.275057,0.011564,-0.010501,0.249779,0,0);-ms-transform:matrix(0.275057,0.011564,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.275057,0.011564,-0.010501,0.249779,0,0);}
.m10c_c01036{transform:matrix(0.275072,0.011565,-0.010501,0.249779,0,0);-ms-transform:matrix(0.275072,0.011565,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.275072,0.011565,-0.010501,0.249779,0,0);}
.m50_c01036{transform:matrix(0.275386,0.009924,-0.009003,0.249838,0,0);-ms-transform:matrix(0.275386,0.009924,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.275386,0.009924,-0.009003,0.249838,0,0);}
.m26_c01036{transform:matrix(0.275936,0.009944,-0.009003,0.249838,0,0);-ms-transform:matrix(0.275936,0.009944,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.275936,0.009944,-0.009003,0.249838,0,0);}
.ma_c01036{transform:matrix(0.276935,0.009980,-0.009003,0.249838,0,0);-ms-transform:matrix(0.276935,0.009980,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.276935,0.009980,-0.009003,0.249838,0,0);}
.m1e_c01036{transform:matrix(0.277175,0.009988,-0.009003,0.249838,0,0);-ms-transform:matrix(0.277175,0.009988,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.277175,0.009988,-0.009003,0.249838,0,0);}
.md4_c01036{transform:matrix(0.277625,0.011672,-0.010501,0.249779,0,0);-ms-transform:matrix(0.277625,0.011672,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.277625,0.011672,-0.010501,0.249779,0,0);}
.m131_c01036{transform:matrix(0.278229,0.011697,-0.010501,0.249779,0,0);-ms-transform:matrix(0.278229,0.011697,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.278229,0.011697,-0.010501,0.249779,0,0);}
.m33_c01036{transform:matrix(0.279638,0.010077,-0.009003,0.249838,0,0);-ms-transform:matrix(0.279638,0.010077,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.279638,0.010077,-0.009003,0.249838,0,0);}
.m11c_c01036{transform:matrix(0.279643,0.011757,-0.010501,0.249779,0,0);-ms-transform:matrix(0.279643,0.011757,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.279643,0.011757,-0.010501,0.249779,0,0);}
.mb7_c01036{transform:matrix(0.279703,0.011759,-0.010501,0.249779,0,0);-ms-transform:matrix(0.279703,0.011759,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.279703,0.011759,-0.010501,0.249779,0,0);}
.me2_c01036{transform:matrix(0.280227,0.011781,-0.010501,0.249779,0,0);-ms-transform:matrix(0.280227,0.011781,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.280227,0.011781,-0.010501,0.249779,0,0);}
.mbb_c01036{transform:matrix(0.280337,0.011786,-0.010501,0.249779,0,0);-ms-transform:matrix(0.280337,0.011786,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.280337,0.011786,-0.010501,0.249779,0,0);}
.m23_c01036{transform:matrix(0.280378,0.010104,-0.009003,0.249838,0,0);-ms-transform:matrix(0.280378,0.010104,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.280378,0.010104,-0.009003,0.249838,0,0);}
.mc7_c01036{transform:matrix(0.280772,0.011804,-0.010501,0.249779,0,0);-ms-transform:matrix(0.280772,0.011804,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.280772,0.011804,-0.010501,0.249779,0,0);}
.m8e_c01036{transform:matrix(0.282196,0.011864,-0.010501,0.249779,0,0);-ms-transform:matrix(0.282196,0.011864,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.282196,0.011864,-0.010501,0.249779,0,0);}
.m2e_c01036{transform:matrix(0.283396,0.010212,-0.009003,0.249838,0,0);-ms-transform:matrix(0.283396,0.010212,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.283396,0.010212,-0.009003,0.249838,0,0);}
.mf8_c01036{transform:matrix(0.283674,0.011926,-0.010501,0.249779,0,0);-ms-transform:matrix(0.283674,0.011926,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.283674,0.011926,-0.010501,0.249779,0,0);}
.m2b_c01036{transform:matrix(0.283926,0.010232,-0.009003,0.249838,0,0);-ms-transform:matrix(0.283926,0.010232,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.283926,0.010232,-0.009003,0.249838,0,0);}
.mda_c01036{transform:matrix(0.284024,0.011941,-0.010501,0.249779,0,0);-ms-transform:matrix(0.284024,0.011941,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.284024,0.011941,-0.010501,0.249779,0,0);}
.m2c_c01036{transform:matrix(0.284345,0.010247,-0.009003,0.249838,0,0);-ms-transform:matrix(0.284345,0.010247,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.284345,0.010247,-0.009003,0.249838,0,0);}
.mb6_c01036{transform:matrix(0.284813,0.011974,-0.010501,0.249779,0,0);-ms-transform:matrix(0.284813,0.011974,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.284813,0.011974,-0.010501,0.249779,0,0);}
.mb4_c01036{transform:matrix(0.287511,0.012088,-0.010501,0.249779,0,0);-ms-transform:matrix(0.287511,0.012088,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.287511,0.012088,-0.010501,0.249779,0,0);}
.m146_c01036{transform:matrix(0.287815,0.013253,-0.011499,0.249735,0,0);-ms-transform:matrix(0.287815,0.013253,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.287815,0.013253,-0.011499,0.249735,0,0);}
.m2a_c01036{transform:matrix(0.288548,0.010398,-0.009003,0.249838,0,0);-ms-transform:matrix(0.288548,0.010398,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.288548,0.010398,-0.009003,0.249838,0,0);}
.m34_c01036{transform:matrix(0.289127,0.010419,-0.009003,0.249838,0,0);-ms-transform:matrix(0.289127,0.010419,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.289127,0.010419,-0.009003,0.249838,0,0);}
.m91_c01036{transform:matrix(0.289464,0.012170,-0.010501,0.249779,0,0);-ms-transform:matrix(0.289464,0.012170,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.289464,0.012170,-0.010501,0.249779,0,0);}
.m8c_c01036{transform:matrix(0.289999,0.012192,-0.010501,0.249779,0,0);-ms-transform:matrix(0.289999,0.012192,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.289999,0.012192,-0.010501,0.249779,0,0);}
.m36_c01036{transform:matrix(0.291076,0.010489,-0.009003,0.249838,0,0);-ms-transform:matrix(0.291076,0.010489,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.291076,0.010489,-0.009003,0.249838,0,0);}
.mf9_c01036{transform:matrix(0.291113,0.012239,-0.010501,0.249779,0,0);-ms-transform:matrix(0.291113,0.012239,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.291113,0.012239,-0.010501,0.249779,0,0);}
.m39_c01036{transform:matrix(0.292495,0.010540,-0.009003,0.249838,0,0);-ms-transform:matrix(0.292495,0.010540,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.292495,0.010540,-0.009003,0.249838,0,0);}
.mde_c01036{transform:matrix(0.292731,0.012307,-0.010501,0.249779,0,0);-ms-transform:matrix(0.292731,0.012307,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.292731,0.012307,-0.010501,0.249779,0,0);}
.m27_c01036{transform:matrix(0.292935,0.010556,-0.009003,0.249838,0,0);-ms-transform:matrix(0.292935,0.010556,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.292935,0.010556,-0.009003,0.249838,0,0);}
.mbf_c01036{transform:matrix(0.293231,0.012328,-0.010501,0.249779,0,0);-ms-transform:matrix(0.293231,0.012328,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.293231,0.012328,-0.010501,0.249779,0,0);}
.mf2_c01036{transform:matrix(0.293306,0.012331,-0.010501,0.249779,0,0);-ms-transform:matrix(0.293306,0.012331,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.293306,0.012331,-0.010501,0.249779,0,0);}
.mb5_c01036{transform:matrix(0.294015,0.012361,-0.010501,0.249779,0,0);-ms-transform:matrix(0.294015,0.012361,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.294015,0.012361,-0.010501,0.249779,0,0);}
.mbc_c01036{transform:matrix(0.296428,0.012462,-0.010501,0.249779,0,0);-ms-transform:matrix(0.296428,0.012462,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.296428,0.012462,-0.010501,0.249779,0,0);}
.mf7_c01036{transform:matrix(0.297407,0.012504,-0.010501,0.249779,0,0);-ms-transform:matrix(0.297407,0.012504,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.297407,0.012504,-0.010501,0.249779,0,0);}
.m8a_c01036{transform:matrix(0.297557,0.012510,-0.010501,0.249779,0,0);-ms-transform:matrix(0.297557,0.012510,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.297557,0.012510,-0.010501,0.249779,0,0);}
.md8_c01036{transform:matrix(0.298287,0.012541,-0.010501,0.249779,0,0);-ms-transform:matrix(0.298287,0.012541,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.298287,0.012541,-0.010501,0.249779,0,0);}
.m28_c01036{transform:matrix(0.298466,0.010756,-0.009003,0.249838,0,0);-ms-transform:matrix(0.298466,0.010756,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.298466,0.010756,-0.009003,0.249838,0,0);}
.m15e_c01036{transform:matrix(0.299516,0.029801,-0.024752,0.248772,0,0);-ms-transform:matrix(0.299516,0.029801,-0.024752,0.248772,0,0);-webkit-transform:matrix(0.299516,0.029801,-0.024752,0.248772,0,0);}
.m31_c01036{transform:matrix(0.302753,0.010910,-0.009003,0.249838,0,0);-ms-transform:matrix(0.302753,0.010910,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.302753,0.010910,-0.009003,0.249838,0,0);}
.mcb_c01036{transform:matrix(0.304301,0.012793,-0.010501,0.249779,0,0);-ms-transform:matrix(0.304301,0.012793,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.304301,0.012793,-0.010501,0.249779,0,0);}
.m90_c01036{transform:matrix(0.304551,0.012804,-0.010501,0.249779,0,0);-ms-transform:matrix(0.304551,0.012804,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.304551,0.012804,-0.010501,0.249779,0,0);}
.m3a_c01036{transform:matrix(0.305257,0.011000,-0.009003,0.249838,0,0);-ms-transform:matrix(0.305257,0.011000,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.305257,0.011000,-0.009003,0.249838,0,0);}
.mf6_c01036{transform:matrix(0.307009,0.012907,-0.010501,0.249779,0,0);-ms-transform:matrix(0.307009,0.012907,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.307009,0.012907,-0.010501,0.249779,0,0);}
.m9_c01036{transform:matrix(0.309804,0.011164,-0.009003,0.249838,0,0);-ms-transform:matrix(0.309804,0.011164,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.309804,0.011164,-0.009003,0.249838,0,0);}
.m1_c01036{transform:matrix(0.310437,0.011498,-0.009253,0.249829,0,0);-ms-transform:matrix(0.310437,0.011498,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.310437,0.011498,-0.009253,0.249829,0,0);}
.m12a_c01036{transform:matrix(0.312109,0.013122,-0.010501,0.249779,0,0);-ms-transform:matrix(0.312109,0.013122,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.312109,0.013122,-0.010501,0.249779,0,0);}
.mca_c01036{transform:matrix(0.340769,0.014327,-0.010501,0.249779,0,0);-ms-transform:matrix(0.340769,0.014327,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.340769,0.014327,-0.010501,0.249779,0,0);}
.mfc_c01036{transform:matrix(0.344910,0.014501,-0.010501,0.249779,0,0);-ms-transform:matrix(0.344910,0.014501,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.344910,0.014501,-0.010501,0.249779,0,0);}
.me4_c01036{transform:matrix(0.367455,0.015449,-0.010501,0.249779,0,0);-ms-transform:matrix(0.367455,0.015449,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.367455,0.015449,-0.010501,0.249779,0,0);}
.m92_c01036{transform:matrix(0.384400,0.016161,-0.010501,0.249779,0,0);-ms-transform:matrix(0.384400,0.016161,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.384400,0.016161,-0.010501,0.249779,0,0);}
.m7_c01036{transform:matrix(0.387920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387920,0.000000,0.000000,0.250000,0,0);}
.me1_c01036{transform:matrix(0.470195,0.019768,-0.010501,0.249779,0,0);-ms-transform:matrix(0.470195,0.019768,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.470195,0.019768,-0.010501,0.249779,0,0);}
.m2f_c01036{transform:matrix(0.486659,0.017537,-0.009003,0.249838,0,0);-ms-transform:matrix(0.486659,0.017537,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.486659,0.017537,-0.009003,0.249838,0,0);}
.m6_c01036{transform:matrix(0.609157,0.020732,-0.008504,0.249855,0,0);-ms-transform:matrix(0.609157,0.020732,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.609157,0.020732,-0.008504,0.249855,0,0);}
.m8_c01036{transform:matrix(0.674915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.674915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.674915,0.000000,0.000000,0.250000,0,0);}
.m0_c01036{transform:matrix(0.810454,0.030017,-0.009253,0.249829,0,0);-ms-transform:matrix(0.810454,0.030017,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.810454,0.030017,-0.009253,0.249829,0,0);}
.m2_c01036{transform:matrix(1.738113,0.064375,-0.009253,0.249829,0,0);-ms-transform:matrix(1.738113,0.064375,-0.009253,0.249829,0,0);-webkit-transform:matrix(1.738113,0.064375,-0.009253,0.249829,0,0);}
.v0_c01036{vertical-align:0.000000px;}
.ls0_c01036{letter-spacing:0.000000px;}
.sc__c01036{text-shadow:none;}
.sc0_c01036{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__c01036{-webkit-text-stroke:0px transparent;}
.sc0_c01036{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01036{word-spacing:0.000000px;}
.fc0_c01036{color:transparent;}
.fs2_c01036{font-size:12.000000px;}
.fs3_c01036{font-size:24.000000px;}
.fs0_c01036{font-size:59.981097px;}
.fs6_c01036{font-size:65.976797px;}
.fsd_c01036{font-size:65.992245px;}
.fs15_c01036{font-size:65.994258px;}
.fs5_c01036{font-size:71.974688px;}
.fs8_c01036{font-size:71.982790px;}
.fs10_c01036{font-size:71.991540px;}
.fs9_c01036{font-size:77.981356px;}
.fse_c01036{font-size:77.990834px;}
.fs12_c01036{font-size:78.004563px;}
.fs4_c01036{font-size:83.970469px;}
.fs14_c01036{font-size:83.976687px;}
.fsa_c01036{font-size:83.979922px;}
.fsc_c01036{font-size:83.990129px;}
.fs7_c01036{font-size:89.968359px;}
.fs13_c01036{font-size:89.975022px;}
.fsb_c01036{font-size:89.989424px;}
.fs11_c01036{font-size:90.005265px;}
.fs16_c01036{font-size:95.991648px;}
.fsf_c01036{font-size:101.988014px;}
.fs1_c01036{font-size:131.944350px;}
.y168_c01036{bottom:-0.087581px;}
.y0_c01036{bottom:0.000000px;}
.y167_c01036{bottom:4.150509px;}
.y166_c01036{bottom:9.221025px;}
.y165_c01036{bottom:11.658126px;}
.y164_c01036{bottom:17.385811px;}
.y163_c01036{bottom:19.205035px;}
.y162_c01036{bottom:24.986544px;}
.y161_c01036{bottom:32.543098px;}
.y160_c01036{bottom:52.425116px;}
.y15f_c01036{bottom:55.763247px;}
.y16c_c01036{bottom:56.388708px;}
.y16b_c01036{bottom:57.591180px;}
.y15e_c01036{bottom:58.926000px;}
.y16a_c01036{bottom:59.172408px;}
.y169_c01036{bottom:61.578000px;}
.y15d_c01036{bottom:69.901504px;}
.y15c_c01036{bottom:70.974541px;}
.y15b_c01036{bottom:73.095699px;}
.y15a_c01036{bottom:73.828170px;}
.y159_c01036{bottom:76.637340px;}
.y158_c01036{bottom:78.022436px;}
.y157_c01036{bottom:79.085457px;}
.y156_c01036{bottom:82.543375px;}
.y155_c01036{bottom:84.286144px;}
.y154_c01036{bottom:85.353498px;}
.y153_c01036{bottom:92.575374px;}
.y152_c01036{bottom:95.498391px;}
.y151_c01036{bottom:98.037000px;}
.y150_c01036{bottom:107.567972px;}
.y14f_c01036{bottom:109.672911px;}
.y14e_c01036{bottom:110.946534px;}
.y14d_c01036{bottom:114.271002px;}
.y14c_c01036{bottom:118.028373px;}
.y14b_c01036{bottom:119.638203px;}
.y14a_c01036{bottom:122.600186px;}
.y149_c01036{bottom:132.431940px;}
.y148_c01036{bottom:133.880112px;}
.y147_c01036{bottom:138.004708px;}
.y146_c01036{bottom:140.333516px;}
.y145_c01036{bottom:144.571497px;}
.y144_c01036{bottom:147.346521px;}
.y143_c01036{bottom:148.723250px;}
.y142_c01036{bottom:151.963623px;}
.y141_c01036{bottom:153.287439px;}
.y140_c01036{bottom:154.638342px;}
.y13f_c01036{bottom:158.785886px;}
.y13e_c01036{bottom:169.951359px;}
.y13d_c01036{bottom:171.997347px;}
.y13c_c01036{bottom:174.024774px;}
.y13b_c01036{bottom:176.562042px;}
.y13a_c01036{bottom:180.128652px;}
.y139_c01036{bottom:183.112005px;}
.y138_c01036{bottom:185.211054px;}
.y137_c01036{bottom:190.289040px;}
.y136_c01036{bottom:194.301183px;}
.y135_c01036{bottom:196.315500px;}
.y134_c01036{bottom:221.839915px;}
.y133_c01036{bottom:222.536263px;}
.y132_c01036{bottom:224.530020px;}
.y131_c01036{bottom:226.560676px;}
.y130_c01036{bottom:228.244117px;}
.y12f_c01036{bottom:229.274424px;}
.y12e_c01036{bottom:230.266557px;}
.y12d_c01036{bottom:232.287106px;}
.y12c_c01036{bottom:241.336593px;}
.y12b_c01036{bottom:243.626108px;}
.y12a_c01036{bottom:245.547266px;}
.y129_c01036{bottom:248.347476px;}
.y128_c01036{bottom:249.387705px;}
.y127_c01036{bottom:253.100849px;}
.y126_c01036{bottom:254.978235px;}
.y125_c01036{bottom:257.215712px;}
.y124_c01036{bottom:261.154656px;}
.y123_c01036{bottom:262.997582px;}
.y122_c01036{bottom:264.031322px;}
.y121_c01036{bottom:267.737661px;}
.y120_c01036{bottom:270.090540px;}
.y11f_c01036{bottom:276.379902px;}
.y11e_c01036{bottom:281.103003px;}
.y11d_c01036{bottom:282.866643px;}
.y11c_c01036{bottom:286.763940px;}
.y11b_c01036{bottom:288.865440px;}
.y11a_c01036{bottom:289.778630px;}
.y119_c01036{bottom:292.742501px;}
.y118_c01036{bottom:294.415304px;}
.y117_c01036{bottom:299.128563px;}
.y116_c01036{bottom:300.800925px;}
.y115_c01036{bottom:302.481099px;}
.y114_c01036{bottom:316.913643px;}
.y113_c01036{bottom:318.116709px;}
.y112_c01036{bottom:320.015480px;}
.y111_c01036{bottom:321.521234px;}
.y110_c01036{bottom:323.494151px;}
.y10f_c01036{bottom:326.636186px;}
.y10e_c01036{bottom:331.218284px;}
.y10d_c01036{bottom:335.415065px;}
.y10c_c01036{bottom:336.558173px;}
.y10b_c01036{bottom:338.117585px;}
.y10a_c01036{bottom:349.478195px;}
.y109_c01036{bottom:353.146370px;}
.y108_c01036{bottom:355.445051px;}
.y107_c01036{bottom:357.749339px;}
.y106_c01036{bottom:361.990562px;}
.y105_c01036{bottom:365.618165px;}
.y104_c01036{bottom:367.047635px;}
.y103_c01036{bottom:369.825872px;}
.y102_c01036{bottom:371.170796px;}
.y101_c01036{bottom:372.134318px;}
.y100_c01036{bottom:374.379071px;}
.yff_c01036{bottom:376.180052px;}
.yfe_c01036{bottom:385.504767px;}
.yfd_c01036{bottom:388.445157px;}
.yfc_c01036{bottom:389.585079px;}
.yfb_c01036{bottom:391.672616px;}
.yfa_c01036{bottom:394.437924px;}
.yf9_c01036{bottom:397.617512px;}
.yf8_c01036{bottom:401.546219px;}
.yf7_c01036{bottom:403.075886px;}
.yf6_c01036{bottom:404.646620px;}
.yf5_c01036{bottom:405.119885px;}
.yf4_c01036{bottom:408.217878px;}
.yf3_c01036{bottom:409.391748px;}
.yf2_c01036{bottom:420.375942px;}
.yf1_c01036{bottom:422.165583px;}
.yf0_c01036{bottom:424.543460px;}
.yef_c01036{bottom:425.108196px;}
.yee_c01036{bottom:429.821123px;}
.yed_c01036{bottom:432.621333px;}
.yec_c01036{bottom:434.022219px;}
.yeb_c01036{bottom:436.953317px;}
.yea_c01036{bottom:441.069755px;}
.ye9_c01036{bottom:444.471165px;}
.ye8_c01036{bottom:445.828658px;}
.ye7_c01036{bottom:447.746287px;}
.ye6_c01036{bottom:454.999995px;}
.ye5_c01036{bottom:456.713483px;}
.ye4_c01036{bottom:459.361301px;}
.ye3_c01036{bottom:461.225930px;}
.ye2_c01036{bottom:463.342793px;}
.ye1_c01036{bottom:464.685363px;}
.ye0_c01036{bottom:467.807787px;}
.ydf_c01036{bottom:469.073709px;}
.yde_c01036{bottom:470.809701px;}
.ydd_c01036{bottom:472.117545px;}
.ydc_c01036{bottom:475.666794px;}
.ydb_c01036{bottom:476.974197px;}
.yda_c01036{bottom:481.746452px;}
.yd9_c01036{bottom:489.574386px;}
.yd8_c01036{bottom:493.472619px;}
.yd7_c01036{bottom:494.925687px;}
.yd6_c01036{bottom:499.335026px;}
.yd5_c01036{bottom:500.723483px;}
.yd4_c01036{bottom:503.676918px;}
.yd3_c01036{bottom:507.515013px;}
.yd2_c01036{bottom:508.981374px;}
.yd1_c01036{bottom:512.864753px;}
.yd0_c01036{bottom:515.230123px;}
.ycf_c01036{bottom:517.616663px;}
.yce_c01036{bottom:519.539395px;}
.ycd_c01036{bottom:523.712498px;}
.ycc_c01036{bottom:527.419188px;}
.ycb_c01036{bottom:530.531658px;}
.yca_c01036{bottom:531.839502px;}
.yc9_c01036{bottom:536.718330px;}
.yc8_c01036{bottom:537.631983px;}
.yc7_c01036{bottom:541.127592px;}
.yc6_c01036{bottom:544.593389px;}
.yc5_c01036{bottom:547.238939px;}
.yc4_c01036{bottom:549.891733px;}
.yc3_c01036{bottom:552.465500px;}
.yc2_c01036{bottom:553.825773px;}
.yc1_c01036{bottom:565.871324px;}
.yc0_c01036{bottom:567.652500px;}
.ybf_c01036{bottom:568.959903px;}
.ybe_c01036{bottom:571.656384px;}
.ybd_c01036{bottom:573.830541px;}
.ybc_c01036{bottom:575.129867px;}
.ybb_c01036{bottom:577.340023px;}
.yba_c01036{bottom:579.068771px;}
.yb9_c01036{bottom:581.278928px;}
.yb8_c01036{bottom:584.792064px;}
.yb7_c01036{bottom:588.334509px;}
.yb6_c01036{bottom:591.346881px;}
.yb5_c01036{bottom:600.848118px;}
.yb4_c01036{bottom:603.800383px;}
.yb3_c01036{bottom:605.972295px;}
.yb2_c01036{bottom:609.009223px;}
.yb1_c01036{bottom:610.682027px;}
.yb0_c01036{bottom:613.720543px;}
.yaf_c01036{bottom:615.829414px;}
.yae_c01036{bottom:618.892011px;}
.yad_c01036{bottom:620.129551px;}
.yac_c01036{bottom:623.084274px;}
.yab_c01036{bottom:624.826292px;}
.yaa_c01036{bottom:634.422141px;}
.ya9_c01036{bottom:636.019857px;}
.ya8_c01036{bottom:639.224865px;}
.ya7_c01036{bottom:642.203554px;}
.ya6_c01036{bottom:643.479426px;}
.ya5_c01036{bottom:647.315622px;}
.ya4_c01036{bottom:649.472841px;}
.ya3_c01036{bottom:652.882558px;}
.ya2_c01036{bottom:655.896100px;}
.ya1_c01036{bottom:657.159813px;}
.ya0_c01036{bottom:660.190504px;}
.y9f_c01036{bottom:670.293679px;}
.y9e_c01036{bottom:672.019830px;}
.y9d_c01036{bottom:675.579474px;}
.y9c_c01036{bottom:677.339357px;}
.y9b_c01036{bottom:680.903424px;}
.y9a_c01036{bottom:682.199159px;}
.y99_c01036{bottom:684.818550px;}
.y98_c01036{bottom:686.140443px;}
.y97_c01036{bottom:690.068624px;}
.y96_c01036{bottom:694.486341px;}
.y95_c01036{bottom:696.635285px;}
.y94_c01036{bottom:701.351523px;}
.y93_c01036{bottom:707.129240px;}
.y92_c01036{bottom:710.942139px;}
.y91_c01036{bottom:712.193751px;}
.y90_c01036{bottom:714.747542px;}
.y8f_c01036{bottom:716.375741px;}
.y8e_c01036{bottom:718.035530px;}
.y8d_c01036{bottom:721.385262px;}
.y8c_c01036{bottom:723.063019px;}
.y8b_c01036{bottom:728.439363px;}
.y8a_c01036{bottom:730.111514px;}
.y89_c01036{bottom:738.843894px;}
.y88_c01036{bottom:743.197225px;}
.y87_c01036{bottom:746.787740px;}
.y86_c01036{bottom:747.938461px;}
.y85_c01036{bottom:750.294720px;}
.y84_c01036{bottom:751.895811px;}
.y83_c01036{bottom:754.682818px;}
.y82_c01036{bottom:756.659187px;}
.y81_c01036{bottom:759.471750px;}
.y80_c01036{bottom:762.172956px;}
.y7f_c01036{bottom:764.125609px;}
.y7e_c01036{bottom:775.396197px;}
.y7d_c01036{bottom:776.794041px;}
.y7c_c01036{bottom:779.096880px;}
.y7b_c01036{bottom:783.264015px;}
.y7a_c01036{bottom:786.545496px;}
.y79_c01036{bottom:787.917825px;}
.y78_c01036{bottom:791.621847px;}
.y77_c01036{bottom:793.468629px;}
.y76_c01036{bottom:799.492500px;}
.y75_c01036{bottom:827.771268px;}
.y74_c01036{bottom:835.695498px;}
.y73_c01036{bottom:847.374204px;}
.y72_c01036{bottom:848.590883px;}
.y71_c01036{bottom:851.452680px;}
.y70_c01036{bottom:853.102070px;}
.y6f_c01036{bottom:855.967377px;}
.y6e_c01036{bottom:857.596526px;}
.y6d_c01036{bottom:858.785862px;}
.y6c_c01036{bottom:863.656005px;}
.y6b_c01036{bottom:865.734325px;}
.y6a_c01036{bottom:870.129944px;}
.y69_c01036{bottom:871.328991px;}
.y68_c01036{bottom:885.365670px;}
.y67_c01036{bottom:886.188085px;}
.y66_c01036{bottom:887.050713px;}
.y65_c01036{bottom:889.981599px;}
.y64_c01036{bottom:891.637860px;}
.y63_c01036{bottom:893.721972px;}
.y62_c01036{bottom:895.016509px;}
.y61_c01036{bottom:899.154863px;}
.y60_c01036{bottom:900.839087px;}
.y5f_c01036{bottom:904.977440px;}
.y5e_c01036{bottom:907.057164px;}
.y5d_c01036{bottom:909.117818px;}
.y5c_c01036{bottom:918.830541px;}
.y5b_c01036{bottom:921.839956px;}
.y5a_c01036{bottom:923.967016px;}
.y59_c01036{bottom:927.392425px;}
.y58_c01036{bottom:930.881483px;}
.y57_c01036{bottom:932.577865px;}
.y56_c01036{bottom:935.529366px;}
.y55_c01036{bottom:937.294603px;}
.y54_c01036{bottom:940.701000px;}
.y53_c01036{bottom:956.072417px;}
.y52_c01036{bottom:957.150810px;}
.y51_c01036{bottom:960.453558px;}
.y50_c01036{bottom:961.551459px;}
.y4f_c01036{bottom:964.512968px;}
.y4e_c01036{bottom:965.535647px;}
.y4d_c01036{bottom:967.032945px;}
.y4c_c01036{bottom:968.120856px;}
.y4b_c01036{bottom:971.690094px;}
.y4a_c01036{bottom:973.169775px;}
.y49_c01036{bottom:976.395236px;}
.y48_c01036{bottom:989.338293px;}
.y47_c01036{bottom:990.448803px;}
.y46_c01036{bottom:993.876426px;}
.y45_c01036{bottom:994.952403px;}
.y44_c01036{bottom:995.729706px;}
.y43_c01036{bottom:998.711222px;}
.y42_c01036{bottom:1002.138521px;}
.y41_c01036{bottom:1003.596372px;}
.y40_c01036{bottom:1005.455552px;}
.y3f_c01036{bottom:1006.544826px;}
.y3e_c01036{bottom:1007.316189px;}
.y3d_c01036{bottom:1011.000177px;}
.y3c_c01036{bottom:1011.756744px;}
.y3b_c01036{bottom:1028.099898px;}
.y3a_c01036{bottom:1031.008379px;}
.y39_c01036{bottom:1032.336346px;}
.y38_c01036{bottom:1034.070381px;}
.y37_c01036{bottom:1037.922404px;}
.y36_c01036{bottom:1039.206983px;}
.y35_c01036{bottom:1042.229052px;}
.y34_c01036{bottom:1045.191762px;}
.y33_c01036{bottom:1046.476719px;}
.y32_c01036{bottom:1050.333534px;}
.y31_c01036{bottom:1051.154307px;}
.y30_c01036{bottom:1059.335037px;}
.y2f_c01036{bottom:1061.194811px;}
.y2e_c01036{bottom:1062.288027px;}
.y2d_c01036{bottom:1064.539503px;}
.y2c_c01036{bottom:1066.441316px;}
.y2b_c01036{bottom:1068.719427px;}
.y2a_c01036{bottom:1069.823336px;}
.y29_c01036{bottom:1073.177748px;}
.y28_c01036{bottom:1075.806995px;}
.y27_c01036{bottom:1078.038531px;}
.y26_c01036{bottom:1079.108892px;}
.y25_c01036{bottom:1080.623687px;}
.y24_c01036{bottom:1082.471027px;}
.y23_c01036{bottom:1096.488077px;}
.y22_c01036{bottom:1097.753283px;}
.y21_c01036{bottom:1100.817932px;}
.y20_c01036{bottom:1102.528165px;}
.y1f_c01036{bottom:1106.412939px;}
.y1e_c01036{bottom:1110.280986px;}
.y1d_c01036{bottom:1111.965003px;}
.y1c_c01036{bottom:1113.660995px;}
.y1b_c01036{bottom:1115.851289px;}
.y1a_c01036{bottom:1117.551816px;}
.y19_c01036{bottom:1119.214895px;}
.y18_c01036{bottom:1121.331856px;}
.y17_c01036{bottom:1131.562872px;}
.y16_c01036{bottom:1132.749792px;}
.y15_c01036{bottom:1135.152144px;}
.y14_c01036{bottom:1137.155976px;}
.y13_c01036{bottom:1140.696648px;}
.y12_c01036{bottom:1141.922340px;}
.y11_c01036{bottom:1145.085930px;}
.y9_c01036{bottom:1146.150000px;}
.y10_c01036{bottom:1146.272418px;}
.yf_c01036{bottom:1148.625954px;}
.ye_c01036{bottom:1149.833232px;}
.yd_c01036{bottom:1150.998876px;}
.yc_c01036{bottom:1152.919062px;}
.yb_c01036{bottom:1154.152854px;}
.ya_c01036{bottom:1155.883500px;}
.y8_c01036{bottom:1163.700000px;}
.y7_c01036{bottom:1188.793449px;}
.y6_c01036{bottom:1195.210728px;}
.y5_c01036{bottom:1196.755875px;}
.y4_c01036{bottom:1197.463500px;}
.y2_c01036{bottom:1239.071763px;}
.y3_c01036{bottom:1239.858198px;}
.y1_c01036{bottom:1246.050000px;}
.h4_c01036{height:12.000000px;}
.h5_c01036{height:24.000000px;}
.h2_c01036{height:59.981097px;}
.h8_c01036{height:65.976797px;}
.hf_c01036{height:65.992245px;}
.h17_c01036{height:65.994258px;}
.h7_c01036{height:71.974688px;}
.ha_c01036{height:71.982790px;}
.h12_c01036{height:71.991540px;}
.hb_c01036{height:77.981356px;}
.h10_c01036{height:77.990834px;}
.h14_c01036{height:78.004563px;}
.h6_c01036{height:83.970469px;}
.h16_c01036{height:83.976687px;}
.hc_c01036{height:83.979922px;}
.he_c01036{height:83.990129px;}
.h9_c01036{height:89.968359px;}
.h15_c01036{height:89.975022px;}
.hd_c01036{height:89.989424px;}
.h13_c01036{height:90.005265px;}
.h18_c01036{height:95.991648px;}
.h11_c01036{height:101.988014px;}
.h3_c01036{height:131.944350px;}
.h0_c01036{height:1246.320000px;}
.h1_c01036{height:1246.500000px;}
.w1_c01036{width:887.250000px;}
.w0_c01036{width:887.490000px;}
.x0_c01036{left:0.000000px;}
.xdf_c01036{left:101.575347px;}
.xda_c01036{left:103.373703px;}
.xca_c01036{left:106.175963px;}
.xbe_c01036{left:108.330419px;}
.xaf_c01036{left:111.262650px;}
.xac_c01036{left:113.996585px;}
.xa0_c01036{left:115.099472px;}
.x97_c01036{left:117.065733px;}
.x88_c01036{left:118.364339px;}
.xa_c01036{left:120.852000px;}
.x78_c01036{left:122.137098px;}
.x70_c01036{left:123.182826px;}
.x6b_c01036{left:124.826064px;}
.x61_c01036{left:126.969054px;}
.x57_c01036{left:128.145637px;}
.x45_c01036{left:129.940578px;}
.x39_c01036{left:131.175855px;}
.x2e_c01036{left:132.873170px;}
.x23_c01036{left:134.013704px;}
.x17_c01036{left:135.532629px;}
.xb6_c01036{left:143.866014px;}
.xa1_c01036{left:149.061314px;}
.xbf_c01036{left:152.848973px;}
.x2f_c01036{left:153.900851px;}
.xb0_c01036{left:155.803673px;}
.x62_c01036{left:159.336172px;}
.xcb_c01036{left:160.855458px;}
.x90_c01036{left:162.123995px;}
.x79_c01036{left:166.087982px;}
.xb_c01036{left:168.877426px;}
.xd2_c01036{left:171.910761px;}
.x80_c01036{left:175.015451px;}
.x71_c01036{left:177.376263px;}
.xe0_c01036{left:179.436072px;}
.x58_c01036{left:182.314023px;}
.xc0_c01036{left:185.465909px;}
.x24_c01036{left:188.275280px;}
.x18_c01036{left:189.781488px;}
.x98_c01036{left:192.287742px;}
.xc4_c01036{left:194.802662px;}
.x89_c01036{left:195.985914px;}
.xdb_c01036{left:202.024619px;}
.xc_c01036{left:203.115154px;}
.xba_c01036{left:207.147570px;}
.xa2_c01036{left:213.350883px;}
.xe1_c01036{left:221.767808px;}
.x46_c01036{left:227.566395px;}
.xb7_c01036{left:229.801124px;}
.x19_c01036{left:232.392740px;}
.xdc_c01036{left:234.167384px;}
.x4f_c01036{left:237.345000px;}
.xb8_c01036{left:242.914776px;}
.xcc_c01036{left:246.978155px;}
.x30_c01036{left:252.683267px;}
.xd_c01036{left:256.400316px;}
.x3a_c01036{left:261.646160px;}
.x25_c01036{left:264.218720px;}
.xa6_c01036{left:266.401478px;}
.x91_c01036{left:269.481026px;}
.xcd_c01036{left:270.995105px;}
.x47_c01036{left:272.374907px;}
.x1a_c01036{left:275.959926px;}
.x63_c01036{left:278.005636px;}
.xa3_c01036{left:279.591626px;}
.x99_c01036{left:280.760622px;}
.x3b_c01036{left:284.300604px;}
.x31_c01036{left:285.592757px;}
.xe_c01036{left:288.746937px;}
.xd3_c01036{left:291.300432px;}
.xec_c01036{left:295.795673px;}
.xe6_c01036{left:297.227844px;}
.x8a_c01036{left:305.543058px;}
.x7a_c01036{left:307.429274px;}
.xce_c01036{left:313.794933px;}
.x3c_c01036{left:316.318379px;}
.xe2_c01036{left:320.522285px;}
.xf_c01036{left:322.248901px;}
.x50_c01036{left:324.601157px;}
.xbb_c01036{left:328.137959px;}
.x26_c01036{left:329.766309px;}
.x1b_c01036{left:332.077199px;}
.x64_c01036{left:334.125852px;}
.xd6_c01036{left:343.608990px;}
.x59_c01036{left:345.782773px;}
.x92_c01036{left:347.932896px;}
.x6c_c01036{left:350.989485px;}
.xa7_c01036{left:354.592820px;}
.xd4_c01036{left:356.704170px;}
.xc5_c01036{left:358.375547px;}
.x32_c01036{left:361.479078px;}
.x9a_c01036{left:368.500673px;}
.x51_c01036{left:369.818394px;}
.x3d_c01036{left:370.950138px;}
.xe7_c01036{left:373.659795px;}
.x1c_c01036{left:375.518511px;}
.x48_c01036{left:380.414934px;}
.xed_c01036{left:382.126242px;}
.x81_c01036{left:383.454834px;}
.x72_c01036{left:385.206130px;}
.x10_c01036{left:387.559526px;}
.x5a_c01036{left:390.039670px;}
.x8b_c01036{left:392.894156px;}
.x93_c01036{left:401.950136px;}
.xcf_c01036{left:405.307482px;}
.x27_c01036{left:407.016549px;}
.x3e_c01036{left:413.778848px;}
.x82_c01036{left:416.468063px;}
.x1d_c01036{left:418.669169px;}
.x11_c01036{left:420.484568px;}
.x3_c01036{left:422.661534px;}
.x9b_c01036{left:423.713072px;}
.xad_c01036{left:430.530410px;}
.x4_c01036{left:432.667500px;}
.xc6_c01036{left:434.300631px;}
.xc1_c01036{left:435.982299px;}
.x33_c01036{left:438.887714px;}
.xdd_c01036{left:441.457013px;}
.xd5_c01036{left:443.363469px;}
.x52_c01036{left:445.422214px;}
.x8c_c01036{left:448.132799px;}
.x5_c01036{left:453.459187px;}
.xd0_c01036{left:457.277753px;}
.x49_c01036{left:458.691566px;}
.xe8_c01036{left:461.319517px;}
.x73_c01036{left:462.530215px;}
.x65_c01036{left:465.603990px;}
.x9c_c01036{left:466.903496px;}
.x34_c01036{left:471.786714px;}
.xa8_c01036{left:475.050152px;}
.x94_c01036{left:479.793552px;}
.x83_c01036{left:481.878573px;}
.x7b_c01036{left:483.201339px;}
.xe9_c01036{left:484.205358px;}
.x4a_c01036{left:489.652425px;}
.xe3_c01036{left:496.717768px;}
.x66_c01036{left:497.722357px;}
.x6_c01036{left:498.859242px;}
.xd1_c01036{left:500.897261px;}
.x28_c01036{left:505.555992px;}
.x74_c01036{left:506.968957px;}
.x12_c01036{left:508.274190px;}
.xc7_c01036{left:511.541588px;}
.x3f_c01036{left:514.465803px;}
.x1e_c01036{left:517.763273px;}
.xa4_c01036{left:519.490104px;}
.x95_c01036{left:522.653073px;}
.x7c_c01036{left:525.999687px;}
.xb1_c01036{left:527.699265px;}
.x5b_c01036{left:532.895793px;}
.xee_c01036{left:535.670347px;}
.x29_c01036{left:537.979860px;}
.x6d_c01036{left:540.150738px;}
.x13_c01036{left:542.287143px;}
.x8d_c01036{left:546.377816px;}
.xbc_c01036{left:549.304571px;}
.xea_c01036{left:550.424193px;}
.x9d_c01036{left:554.556633px;}
.xd7_c01036{left:564.266112px;}
.x35_c01036{left:570.477776px;}
.x75_c01036{left:572.333487px;}
.xa9_c01036{left:573.647694px;}
.x53_c01036{left:578.249255px;}
.x4b_c01036{left:579.287376px;}
.xc2_c01036{left:581.925093px;}
.xeb_c01036{left:583.920309px;}
.x5c_c01036{left:587.665077px;}
.x7d_c01036{left:593.134773px;}
.xde_c01036{left:597.669945px;}
.x96_c01036{left:600.423000px;}
.x40_c01036{left:602.074431px;}
.x84_c01036{left:603.256790px;}
.x2a_c01036{left:604.903181px;}
.xe4_c01036{left:606.264000px;}
.x9e_c01036{left:608.841335px;}
.xc8_c01036{left:611.382759px;}
.x4c_c01036{left:612.502196px;}
.x36_c01036{left:614.891507px;}
.x1f_c01036{left:617.279900px;}
.x67_c01036{left:619.077367px;}
.x41_c01036{left:624.893710px;}
.x7e_c01036{left:626.047377px;}
.x5d_c01036{left:631.205691px;}
.xb2_c01036{left:637.193058px;}
.x1_c01036{left:640.699500px;}
.xd8_c01036{left:641.723577px;}
.x85_c01036{left:647.223500px;}
.x37_c01036{left:648.911277px;}
.xb3_c01036{left:650.304366px;}
.x8e_c01036{left:655.359473px;}
.x42_c01036{left:656.500842px;}
.xbd_c01036{left:658.789476px;}
.x20_c01036{left:661.074804px;}
.x68_c01036{left:663.595260px;}
.x54_c01036{left:665.992424px;}
.xef_c01036{left:672.390678px;}
.xaa_c01036{left:673.778076px;}
.x9f_c01036{left:676.192592px;}
.xc3_c01036{left:679.078910px;}
.x7_c01036{left:687.413998px;}
.xb9_c01036{left:692.441624px;}
.x14_c01036{left:696.147129px;}
.x76_c01036{left:703.888472px;}
.xb4_c01036{left:705.542739px;}
.xab_c01036{left:706.769277px;}
.x5e_c01036{left:708.242064px;}
.x4d_c01036{left:712.480928px;}
.xf0_c01036{left:716.269755px;}
.x6e_c01036{left:717.321390px;}
.x55_c01036{left:720.477883px;}
.x38_c01036{left:723.417642px;}
.x2b_c01036{left:726.943829px;}
.x5f_c01036{left:730.915246px;}
.x86_c01036{left:736.105470px;}
.x8f_c01036{left:737.448644px;}
.x21_c01036{left:739.581732px;}
.x69_c01036{left:740.860948px;}
.x4e_c01036{left:745.112777px;}
.xb5_c01036{left:747.110864px;}
.xe5_c01036{left:749.847273px;}
.x60_c01036{left:752.519940px;}
.x43_c01036{left:757.196789px;}
.x2c_c01036{left:759.070994px;}
.x15_c01036{left:762.812397px;}
.x22_c01036{left:771.984783px;}
.x6a_c01036{left:773.718135px;}
.xc9_c01036{left:777.528884px;}
.x87_c01036{left:779.198429px;}
.xae_c01036{left:781.994108px;}
.xd9_c01036{left:785.290367px;}
.x44_c01036{left:789.845485px;}
.x16_c01036{left:795.749427px;}
.x56_c01036{left:797.565219px;}
.x6f_c01036{left:805.344779px;}
.x2d_c01036{left:813.719237px;}
.x77_c01036{left:824.681517px;}
.x2_c01036{left:829.111899px;}
.xa5_c01036{left:867.106838px;}
.x8_c01036{left:875.340000px;}
.x7f_c01036{left:878.161389px;}
.x9_c01036{left:881.280000px;}
@media print{
.v0_c01036{vertical-align:0.000000pt;}
.ls0_c01036{letter-spacing:0.000000pt;}
.ws0_c01036{word-spacing:0.000000pt;}
.fs2_c01036{font-size:10.666667pt;}
.fs3_c01036{font-size:21.333333pt;}
.fs0_c01036{font-size:53.316531pt;}
.fs6_c01036{font-size:58.646042pt;}
.fsd_c01036{font-size:58.659773pt;}
.fs15_c01036{font-size:58.661562pt;}
.fs5_c01036{font-size:63.977500pt;}
.fs8_c01036{font-size:63.984702pt;}
.fs10_c01036{font-size:63.992480pt;}
.fs9_c01036{font-size:69.316761pt;}
.fse_c01036{font-size:69.325186pt;}
.fs12_c01036{font-size:69.337389pt;}
.fs4_c01036{font-size:74.640417pt;}
.fs14_c01036{font-size:74.645944pt;}
.fsa_c01036{font-size:74.648819pt;}
.fsc_c01036{font-size:74.657893pt;}
.fs7_c01036{font-size:79.971875pt;}
.fs13_c01036{font-size:79.977797pt;}
.fsb_c01036{font-size:79.990599pt;}
.fs11_c01036{font-size:80.004680pt;}
.fs16_c01036{font-size:85.325909pt;}
.fsf_c01036{font-size:90.656013pt;}
.fs1_c01036{font-size:117.283867pt;}
.y168_c01036{bottom:-0.077849pt;}
.y0_c01036{bottom:0.000000pt;}
.y167_c01036{bottom:3.689341pt;}
.y166_c01036{bottom:8.196467pt;}
.y165_c01036{bottom:10.362779pt;}
.y164_c01036{bottom:15.454055pt;}
.y163_c01036{bottom:17.071143pt;}
.y162_c01036{bottom:22.210261pt;}
.y161_c01036{bottom:28.927199pt;}
.y160_c01036{bottom:46.600103pt;}
.y15f_c01036{bottom:49.567331pt;}
.y16c_c01036{bottom:50.123296pt;}
.y16b_c01036{bottom:51.192160pt;}
.y15e_c01036{bottom:52.378667pt;}
.y16a_c01036{bottom:52.597696pt;}
.y169_c01036{bottom:54.736000pt;}
.y15d_c01036{bottom:62.134671pt;}
.y15c_c01036{bottom:63.088481pt;}
.y15b_c01036{bottom:64.973955pt;}
.y15a_c01036{bottom:65.625040pt;}
.y159_c01036{bottom:68.122080pt;}
.y158_c01036{bottom:69.353276pt;}
.y157_c01036{bottom:70.298184pt;}
.y156_c01036{bottom:73.371889pt;}
.y155_c01036{bottom:74.921017pt;}
.y154_c01036{bottom:75.869776pt;}
.y153_c01036{bottom:82.289221pt;}
.y152_c01036{bottom:84.887459pt;}
.y151_c01036{bottom:87.144000pt;}
.y150_c01036{bottom:95.615975pt;}
.y14f_c01036{bottom:97.487032pt;}
.y14e_c01036{bottom:98.619141pt;}
.y14d_c01036{bottom:101.574224pt;}
.y14c_c01036{bottom:104.914109pt;}
.y14b_c01036{bottom:106.345069pt;}
.y14a_c01036{bottom:108.977943pt;}
.y149_c01036{bottom:117.717280pt;}
.y148_c01036{bottom:119.004544pt;}
.y147_c01036{bottom:122.670852pt;}
.y146_c01036{bottom:124.740903pt;}
.y145_c01036{bottom:128.507997pt;}
.y144_c01036{bottom:130.974685pt;}
.y143_c01036{bottom:132.198444pt;}
.y142_c01036{bottom:135.078776pt;}
.y141_c01036{bottom:136.255501pt;}
.y140_c01036{bottom:137.456304pt;}
.y13f_c01036{bottom:141.143009pt;}
.y13e_c01036{bottom:151.067875pt;}
.y13d_c01036{bottom:152.886531pt;}
.y13c_c01036{bottom:154.688688pt;}
.y13b_c01036{bottom:156.944037pt;}
.y13a_c01036{bottom:160.114357pt;}
.y139_c01036{bottom:162.766227pt;}
.y138_c01036{bottom:164.632048pt;}
.y137_c01036{bottom:169.145813pt;}
.y136_c01036{bottom:172.712163pt;}
.y135_c01036{bottom:174.502667pt;}
.y134_c01036{bottom:197.191036pt;}
.y133_c01036{bottom:197.810012pt;}
.y132_c01036{bottom:199.582240pt;}
.y131_c01036{bottom:201.387268pt;}
.y130_c01036{bottom:202.883660pt;}
.y12f_c01036{bottom:203.799488pt;}
.y12e_c01036{bottom:204.681384pt;}
.y12d_c01036{bottom:206.477428pt;}
.y12c_c01036{bottom:214.521416pt;}
.y12b_c01036{bottom:216.556540pt;}
.y12a_c01036{bottom:218.264236pt;}
.y129_c01036{bottom:220.753312pt;}
.y128_c01036{bottom:221.677960pt;}
.y127_c01036{bottom:224.978532pt;}
.y126_c01036{bottom:226.647320pt;}
.y125_c01036{bottom:228.636188pt;}
.y124_c01036{bottom:232.137472pt;}
.y123_c01036{bottom:233.775628pt;}
.y122_c01036{bottom:234.694508pt;}
.y121_c01036{bottom:237.989032pt;}
.y120_c01036{bottom:240.080480pt;}
.y11f_c01036{bottom:245.671024pt;}
.y11e_c01036{bottom:249.869336pt;}
.y11d_c01036{bottom:251.437016pt;}
.y11c_c01036{bottom:254.901280pt;}
.y11b_c01036{bottom:256.769280pt;}
.y11a_c01036{bottom:257.581004pt;}
.y119_c01036{bottom:260.215556pt;}
.y118_c01036{bottom:261.702492pt;}
.y117_c01036{bottom:265.892056pt;}
.y116_c01036{bottom:267.378600pt;}
.y115_c01036{bottom:268.872088pt;}
.y114_c01036{bottom:281.701016pt;}
.y113_c01036{bottom:282.770408pt;}
.y112_c01036{bottom:284.458204pt;}
.y111_c01036{bottom:285.796652pt;}
.y110_c01036{bottom:287.550356pt;}
.y10f_c01036{bottom:290.343276pt;}
.y10e_c01036{bottom:294.416252pt;}
.y10d_c01036{bottom:298.146724pt;}
.y10c_c01036{bottom:299.162820pt;}
.y10b_c01036{bottom:300.548964pt;}
.y10a_c01036{bottom:310.647284pt;}
.y109_c01036{bottom:313.907884pt;}
.y108_c01036{bottom:315.951156pt;}
.y107_c01036{bottom:317.999412pt;}
.y106_c01036{bottom:321.769388pt;}
.y105_c01036{bottom:324.993924pt;}
.y104_c01036{bottom:326.264564pt;}
.y103_c01036{bottom:328.734108pt;}
.y102_c01036{bottom:329.929596pt;}
.y101_c01036{bottom:330.786060pt;}
.y100_c01036{bottom:332.781396pt;}
.yff_c01036{bottom:334.382268pt;}
.yfe_c01036{bottom:342.670904pt;}
.yfd_c01036{bottom:345.284584pt;}
.yfc_c01036{bottom:346.297848pt;}
.yfb_c01036{bottom:348.153436pt;}
.yfa_c01036{bottom:350.611488pt;}
.yf9_c01036{bottom:353.437788pt;}
.yf8_c01036{bottom:356.929972pt;}
.yf7_c01036{bottom:358.289676pt;}
.yf6_c01036{bottom:359.685884pt;}
.yf5_c01036{bottom:360.106564pt;}
.yf4_c01036{bottom:362.860336pt;}
.yf3_c01036{bottom:363.903776pt;}
.yf2_c01036{bottom:373.667504pt;}
.yf1_c01036{bottom:375.258296pt;}
.yf0_c01036{bottom:377.371964pt;}
.yef_c01036{bottom:377.873952pt;}
.yee_c01036{bottom:382.063220pt;}
.yed_c01036{bottom:384.552296pt;}
.yec_c01036{bottom:385.797528pt;}
.yeb_c01036{bottom:388.402948pt;}
.yea_c01036{bottom:392.062004pt;}
.ye9_c01036{bottom:395.085480pt;}
.ye8_c01036{bottom:396.292140pt;}
.ye7_c01036{bottom:397.996700pt;}
.ye6_c01036{bottom:404.444440pt;}
.ye5_c01036{bottom:405.967540pt;}
.ye4_c01036{bottom:408.321156pt;}
.ye3_c01036{bottom:409.978604pt;}
.ye2_c01036{bottom:411.860260pt;}
.ye1_c01036{bottom:413.053656pt;}
.ye0_c01036{bottom:415.829144pt;}
.ydf_c01036{bottom:416.954408pt;}
.yde_c01036{bottom:418.497512pt;}
.ydd_c01036{bottom:419.660040pt;}
.ydc_c01036{bottom:422.814928pt;}
.ydb_c01036{bottom:423.977064pt;}
.yda_c01036{bottom:428.219068pt;}
.yd9_c01036{bottom:435.177232pt;}
.yd8_c01036{bottom:438.642328pt;}
.yd7_c01036{bottom:439.933944pt;}
.yd6_c01036{bottom:443.853356pt;}
.yd5_c01036{bottom:445.087540pt;}
.yd4_c01036{bottom:447.712816pt;}
.yd3_c01036{bottom:451.124456pt;}
.yd2_c01036{bottom:452.427888pt;}
.yd1_c01036{bottom:455.879780pt;}
.yd0_c01036{bottom:457.982332pt;}
.ycf_c01036{bottom:460.103700pt;}
.yce_c01036{bottom:461.812796pt;}
.ycd_c01036{bottom:465.522220pt;}
.ycc_c01036{bottom:468.817056pt;}
.ycb_c01036{bottom:471.583696pt;}
.yca_c01036{bottom:472.746224pt;}
.yc9_c01036{bottom:477.082960pt;}
.yc8_c01036{bottom:477.895096pt;}
.yc7_c01036{bottom:481.002304pt;}
.yc6_c01036{bottom:484.083012pt;}
.yc5_c01036{bottom:486.434612pt;}
.yc4_c01036{bottom:488.792652pt;}
.yc3_c01036{bottom:491.080444pt;}
.yc2_c01036{bottom:492.289576pt;}
.yc1_c01036{bottom:502.996732pt;}
.yc0_c01036{bottom:504.580000pt;}
.ybf_c01036{bottom:505.742136pt;}
.ybe_c01036{bottom:508.139008pt;}
.ybd_c01036{bottom:510.071592pt;}
.ybc_c01036{bottom:511.226548pt;}
.ybb_c01036{bottom:513.191132pt;}
.yba_c01036{bottom:514.727796pt;}
.yb9_c01036{bottom:516.692380pt;}
.yb8_c01036{bottom:519.815168pt;}
.yb7_c01036{bottom:522.964008pt;}
.yb6_c01036{bottom:525.641672pt;}
.yb5_c01036{bottom:534.087216pt;}
.yb4_c01036{bottom:536.711452pt;}
.yb3_c01036{bottom:538.642040pt;}
.yb2_c01036{bottom:541.341532pt;}
.yb1_c01036{bottom:542.828468pt;}
.yb0_c01036{bottom:545.529372pt;}
.yaf_c01036{bottom:547.403924pt;}
.yae_c01036{bottom:550.126232pt;}
.yad_c01036{bottom:551.226268pt;}
.yac_c01036{bottom:553.852688pt;}
.yab_c01036{bottom:555.401148pt;}
.yaa_c01036{bottom:563.930792pt;}
.ya9_c01036{bottom:565.350984pt;}
.ya8_c01036{bottom:568.199880pt;}
.ya7_c01036{bottom:570.847604pt;}
.ya6_c01036{bottom:571.981712pt;}
.ya5_c01036{bottom:575.391664pt;}
.ya4_c01036{bottom:577.309192pt;}
.ya3_c01036{bottom:580.340052pt;}
.ya2_c01036{bottom:583.018756pt;}
.ya1_c01036{bottom:584.142056pt;}
.ya0_c01036{bottom:586.836004pt;}
.y9f_c01036{bottom:595.816604pt;}
.y9e_c01036{bottom:597.350960pt;}
.y9d_c01036{bottom:600.515088pt;}
.y9c_c01036{bottom:602.079428pt;}
.y9b_c01036{bottom:605.247488pt;}
.y9a_c01036{bottom:606.399252pt;}
.y99_c01036{bottom:608.727600pt;}
.y98_c01036{bottom:609.902616pt;}
.y97_c01036{bottom:613.394332pt;}
.y96_c01036{bottom:617.321192pt;}
.y95_c01036{bottom:619.231364pt;}
.y94_c01036{bottom:623.423576pt;}
.y93_c01036{bottom:628.559324pt;}
.y92_c01036{bottom:631.948568pt;}
.y91_c01036{bottom:633.061112pt;}
.y90_c01036{bottom:635.331148pt;}
.y8f_c01036{bottom:636.778436pt;}
.y8e_c01036{bottom:638.253804pt;}
.y8d_c01036{bottom:641.231344pt;}
.y8c_c01036{bottom:642.722684pt;}
.y8b_c01036{bottom:647.501656pt;}
.y8a_c01036{bottom:648.988012pt;}
.y89_c01036{bottom:656.750128pt;}
.y88_c01036{bottom:660.619756pt;}
.y87_c01036{bottom:663.811324pt;}
.y86_c01036{bottom:664.834188pt;}
.y85_c01036{bottom:666.928640pt;}
.y84_c01036{bottom:668.351832pt;}
.y83_c01036{bottom:670.829172pt;}
.y82_c01036{bottom:672.585944pt;}
.y81_c01036{bottom:675.086000pt;}
.y80_c01036{bottom:677.487072pt;}
.y7f_c01036{bottom:679.222764pt;}
.y7e_c01036{bottom:689.241064pt;}
.y7d_c01036{bottom:690.483592pt;}
.y7c_c01036{bottom:692.530560pt;}
.y7b_c01036{bottom:696.234680pt;}
.y7a_c01036{bottom:699.151552pt;}
.y79_c01036{bottom:700.371400pt;}
.y78_c01036{bottom:703.663864pt;}
.y77_c01036{bottom:705.305448pt;}
.y76_c01036{bottom:710.660000pt;}
.y75_c01036{bottom:735.796683pt;}
.y74_c01036{bottom:742.840443pt;}
.y73_c01036{bottom:753.221515pt;}
.y72_c01036{bottom:754.303007pt;}
.y71_c01036{bottom:756.846827pt;}
.y70_c01036{bottom:758.312951pt;}
.y6f_c01036{bottom:760.859891pt;}
.y6e_c01036{bottom:762.308023pt;}
.y6d_c01036{bottom:763.365211pt;}
.y6c_c01036{bottom:767.694227pt;}
.y6b_c01036{bottom:769.541623pt;}
.y6a_c01036{bottom:773.448839pt;}
.y69_c01036{bottom:774.514659pt;}
.y68_c01036{bottom:786.991707pt;}
.y67_c01036{bottom:787.722743pt;}
.y66_c01036{bottom:788.489523pt;}
.y65_c01036{bottom:791.094755pt;}
.y64_c01036{bottom:792.566987pt;}
.y63_c01036{bottom:794.419531pt;}
.y62_c01036{bottom:795.570231pt;}
.y61_c01036{bottom:799.248767pt;}
.y60_c01036{bottom:800.745855pt;}
.y5f_c01036{bottom:804.424391pt;}
.y5e_c01036{bottom:806.273035pt;}
.y5d_c01036{bottom:808.104727pt;}
.y5c_c01036{bottom:816.738259pt;}
.y5b_c01036{bottom:819.413295pt;}
.y5a_c01036{bottom:821.304015pt;}
.y59_c01036{bottom:824.348823pt;}
.y58_c01036{bottom:827.450207pt;}
.y57_c01036{bottom:828.958103pt;}
.y56_c01036{bottom:831.581659pt;}
.y55_c01036{bottom:833.150759pt;}
.y54_c01036{bottom:836.178667pt;}
.y53_c01036{bottom:849.842148pt;}
.y52_c01036{bottom:850.800720pt;}
.y51_c01036{bottom:853.736496pt;}
.y50_c01036{bottom:854.712408pt;}
.y4f_c01036{bottom:857.344860pt;}
.y4e_c01036{bottom:858.253908pt;}
.y4d_c01036{bottom:859.584840pt;}
.y4c_c01036{bottom:860.551872pt;}
.y4b_c01036{bottom:863.724528pt;}
.y4a_c01036{bottom:865.039800pt;}
.y49_c01036{bottom:867.906876pt;}
.y48_c01036{bottom:879.411816pt;}
.y47_c01036{bottom:880.398936pt;}
.y46_c01036{bottom:883.445712pt;}
.y45_c01036{bottom:884.402136pt;}
.y44_c01036{bottom:885.093072pt;}
.y43_c01036{bottom:887.743308pt;}
.y42_c01036{bottom:890.789796pt;}
.y41_c01036{bottom:892.085664pt;}
.y40_c01036{bottom:893.738268pt;}
.y3f_c01036{bottom:894.706512pt;}
.y3e_c01036{bottom:895.392168pt;}
.y3d_c01036{bottom:898.666824pt;}
.y3c_c01036{bottom:899.339328pt;}
.y3b_c01036{bottom:913.866576pt;}
.y3a_c01036{bottom:916.451892pt;}
.y39_c01036{bottom:917.632308pt;}
.y38_c01036{bottom:919.173672pt;}
.y37_c01036{bottom:922.597692pt;}
.y36_c01036{bottom:923.739540pt;}
.y35_c01036{bottom:926.425824pt;}
.y34_c01036{bottom:929.059344pt;}
.y33_c01036{bottom:930.201528pt;}
.y32_c01036{bottom:933.629808pt;}
.y31_c01036{bottom:934.359384pt;}
.y30_c01036{bottom:941.631144pt;}
.y2f_c01036{bottom:943.284276pt;}
.y2e_c01036{bottom:944.256024pt;}
.y2d_c01036{bottom:946.257336pt;}
.y2c_c01036{bottom:947.947836pt;}
.y2b_c01036{bottom:949.972824pt;}
.y2a_c01036{bottom:950.954076pt;}
.y29_c01036{bottom:953.935776pt;}
.y28_c01036{bottom:956.272884pt;}
.y27_c01036{bottom:958.256472pt;}
.y26_c01036{bottom:959.207904pt;}
.y25_c01036{bottom:960.554388pt;}
.y24_c01036{bottom:962.196468pt;}
.y23_c01036{bottom:974.656068pt;}
.y22_c01036{bottom:975.780696pt;}
.y21_c01036{bottom:978.504828pt;}
.y20_c01036{bottom:980.025036pt;}
.y1f_c01036{bottom:983.478168pt;}
.y1e_c01036{bottom:986.916432pt;}
.y1d_c01036{bottom:988.413336pt;}
.y1c_c01036{bottom:989.920884pt;}
.y1b_c01036{bottom:991.867812pt;}
.y1a_c01036{bottom:993.379392pt;}
.y19_c01036{bottom:994.857684pt;}
.y18_c01036{bottom:996.739428pt;}
.y17_c01036{bottom:1005.833664pt;}
.y16_c01036{bottom:1006.888704pt;}
.y15_c01036{bottom:1009.024128pt;}
.y14_c01036{bottom:1010.805312pt;}
.y13_c01036{bottom:1013.952576pt;}
.y12_c01036{bottom:1015.042080pt;}
.y11_c01036{bottom:1017.854160pt;}
.y9_c01036{bottom:1018.800000pt;}
.y10_c01036{bottom:1018.908816pt;}
.yf_c01036{bottom:1021.000848pt;}
.ye_c01036{bottom:1022.073984pt;}
.yd_c01036{bottom:1023.110112pt;}
.yc_c01036{bottom:1024.816944pt;}
.yb_c01036{bottom:1025.913648pt;}
.ya_c01036{bottom:1027.452000pt;}
.y8_c01036{bottom:1034.400000pt;}
.y7_c01036{bottom:1056.705288pt;}
.y6_c01036{bottom:1062.409536pt;}
.y5_c01036{bottom:1063.783000pt;}
.y4_c01036{bottom:1064.412000pt;}
.y2_c01036{bottom:1101.397123pt;}
.y3_c01036{bottom:1102.096176pt;}
.y1_c01036{bottom:1107.600000pt;}
.h4_c01036{height:10.666667pt;}
.h5_c01036{height:21.333333pt;}
.h2_c01036{height:53.316531pt;}
.h8_c01036{height:58.646042pt;}
.hf_c01036{height:58.659773pt;}
.h17_c01036{height:58.661562pt;}
.h7_c01036{height:63.977500pt;}
.ha_c01036{height:63.984702pt;}
.h12_c01036{height:63.992480pt;}
.hb_c01036{height:69.316761pt;}
.h10_c01036{height:69.325186pt;}
.h14_c01036{height:69.337389pt;}
.h6_c01036{height:74.640417pt;}
.h16_c01036{height:74.645944pt;}
.hc_c01036{height:74.648819pt;}
.he_c01036{height:74.657893pt;}
.h9_c01036{height:79.971875pt;}
.h15_c01036{height:79.977797pt;}
.hd_c01036{height:79.990599pt;}
.h13_c01036{height:80.004680pt;}
.h18_c01036{height:85.325909pt;}
.h11_c01036{height:90.656013pt;}
.h3_c01036{height:117.283867pt;}
.h0_c01036{height:1107.840000pt;}
.h1_c01036{height:1108.000000pt;}
.w1_c01036{width:788.666667pt;}
.w0_c01036{width:788.880000pt;}
.x0_c01036{left:0.000000pt;}
.xdf_c01036{left:90.289197pt;}
.xda_c01036{left:91.887736pt;}
.xca_c01036{left:94.378633pt;}
.xbe_c01036{left:96.293705pt;}
.xaf_c01036{left:98.900133pt;}
.xac_c01036{left:101.330297pt;}
.xa0_c01036{left:102.310641pt;}
.x97_c01036{left:104.058429pt;}
.x88_c01036{left:105.212745pt;}
.xa_c01036{left:107.424000pt;}
.x78_c01036{left:108.566309pt;}
.x70_c01036{left:109.495845pt;}
.x6b_c01036{left:110.956501pt;}
.x61_c01036{left:112.861381pt;}
.x57_c01036{left:113.907233pt;}
.x45_c01036{left:115.502736pt;}
.x39_c01036{left:116.600760pt;}
.x2e_c01036{left:118.109484pt;}
.x23_c01036{left:119.123292pt;}
.x17_c01036{left:120.473448pt;}
.xb6_c01036{left:127.880901pt;}
.xa1_c01036{left:132.498945pt;}
.xbf_c01036{left:135.865753pt;}
.x2f_c01036{left:136.800756pt;}
.xb0_c01036{left:138.492153pt;}
.x62_c01036{left:141.632153pt;}
.xcb_c01036{left:142.982629pt;}
.x90_c01036{left:144.110217pt;}
.x79_c01036{left:147.633761pt;}
.xb_c01036{left:150.113268pt;}
.xd2_c01036{left:152.809565pt;}
.x80_c01036{left:155.569289pt;}
.x71_c01036{left:157.667789pt;}
.xe0_c01036{left:159.498731pt;}
.x58_c01036{left:162.056909pt;}
.xc0_c01036{left:164.858585pt;}
.x24_c01036{left:167.355804pt;}
.x18_c01036{left:168.694656pt;}
.x98_c01036{left:170.922437pt;}
.xc4_c01036{left:173.157921pt;}
.x89_c01036{left:174.209701pt;}
.xdb_c01036{left:179.577439pt;}
.xc_c01036{left:180.546804pt;}
.xba_c01036{left:184.131173pt;}
.xa2_c01036{left:189.645229pt;}
.xe1_c01036{left:197.126940pt;}
.x46_c01036{left:202.281240pt;}
.xb7_c01036{left:204.267665pt;}
.x19_c01036{left:206.571324pt;}
.xdc_c01036{left:208.148785pt;}
.x4f_c01036{left:210.973333pt;}
.xb8_c01036{left:215.924245pt;}
.xcc_c01036{left:219.536137pt;}
.x30_c01036{left:224.607348pt;}
.xd_c01036{left:227.911392pt;}
.x3a_c01036{left:232.574364pt;}
.x25_c01036{left:234.861084pt;}
.xa6_c01036{left:236.801313pt;}
.x91_c01036{left:239.538689pt;}
.xcd_c01036{left:240.884537pt;}
.x47_c01036{left:242.111028pt;}
.x1a_c01036{left:245.297712pt;}
.x63_c01036{left:247.116121pt;}
.xa3_c01036{left:248.525889pt;}
.x99_c01036{left:249.564997pt;}
.x3b_c01036{left:252.711648pt;}
.x31_c01036{left:253.860228pt;}
.xe_c01036{left:256.663944pt;}
.xd3_c01036{left:258.933717pt;}
.xec_c01036{left:262.929487pt;}
.xe6_c01036{left:264.202528pt;}
.x8a_c01036{left:271.593829pt;}
.x7a_c01036{left:273.270465pt;}
.xce_c01036{left:278.928829pt;}
.x3c_c01036{left:281.171892pt;}
.xe2_c01036{left:284.908697pt;}
.xf_c01036{left:286.443468pt;}
.x50_c01036{left:288.534361pt;}
.xbb_c01036{left:291.678185pt;}
.x26_c01036{left:293.125608pt;}
.x1b_c01036{left:295.179732pt;}
.x64_c01036{left:297.000757pt;}
.xd6_c01036{left:305.430213pt;}
.x59_c01036{left:307.362465pt;}
.x92_c01036{left:309.273685pt;}
.x6c_c01036{left:311.990653pt;}
.xa7_c01036{left:315.193617pt;}
.xd4_c01036{left:317.070373pt;}
.xc5_c01036{left:318.556041pt;}
.x32_c01036{left:321.314736pt;}
.x9a_c01036{left:327.556153pt;}
.x51_c01036{left:328.727461pt;}
.x3d_c01036{left:329.733456pt;}
.xe7_c01036{left:332.142040pt;}
.x1c_c01036{left:333.794232pt;}
.x48_c01036{left:338.146608pt;}
.xed_c01036{left:339.667771pt;}
.x81_c01036{left:340.848741pt;}
.x72_c01036{left:342.405449pt;}
.x10_c01036{left:344.497356pt;}
.x5a_c01036{left:346.701929pt;}
.x8b_c01036{left:349.239249pt;}
.x93_c01036{left:357.289009pt;}
.xcf_c01036{left:360.273317pt;}
.x27_c01036{left:361.792488pt;}
.x3e_c01036{left:367.803420pt;}
.x82_c01036{left:370.193833pt;}
.x1d_c01036{left:372.150372pt;}
.x11_c01036{left:373.764060pt;}
.x3_c01036{left:375.699141pt;}
.x9b_c01036{left:376.633841pt;}
.xad_c01036{left:382.693697pt;}
.x4_c01036{left:384.593333pt;}
.xc6_c01036{left:386.045005pt;}
.xc1_c01036{left:387.539821pt;}
.x33_c01036{left:390.122412pt;}
.xdd_c01036{left:392.406233pt;}
.xd5_c01036{left:394.100861pt;}
.x52_c01036{left:395.930857pt;}
.x8c_c01036{left:398.340265pt;}
.x5_c01036{left:403.074833pt;}
.xd0_c01036{left:406.469113pt;}
.x49_c01036{left:407.725836pt;}
.xe8_c01036{left:410.061793pt;}
.x73_c01036{left:411.137969pt;}
.x65_c01036{left:413.870213pt;}
.x9c_c01036{left:415.025329pt;}
.x34_c01036{left:419.365968pt;}
.xa8_c01036{left:422.266801pt;}
.x94_c01036{left:426.483157pt;}
.x83_c01036{left:428.336509pt;}
.x7b_c01036{left:429.512301pt;}
.xe9_c01036{left:430.404763pt;}
.x4a_c01036{left:435.246600pt;}
.xe3_c01036{left:441.526905pt;}
.x66_c01036{left:442.419873pt;}
.x6_c01036{left:443.430437pt;}
.xd1_c01036{left:445.242009pt;}
.x28_c01036{left:449.383104pt;}
.x74_c01036{left:450.639073pt;}
.x12_c01036{left:451.799280pt;}
.xc7_c01036{left:454.703633pt;}
.x3f_c01036{left:457.302936pt;}
.x1e_c01036{left:460.234020pt;}
.xa4_c01036{left:461.768981pt;}
.x95_c01036{left:464.580509pt;}
.x7c_c01036{left:467.555277pt;}
.xb1_c01036{left:469.066013pt;}
.x5b_c01036{left:473.685149pt;}
.xee_c01036{left:476.151420pt;}
.x29_c01036{left:478.204320pt;}
.x6d_c01036{left:480.133989pt;}
.x13_c01036{left:482.033016pt;}
.x8d_c01036{left:485.669169pt;}
.xbc_c01036{left:488.270729pt;}
.xea_c01036{left:489.265949pt;}
.x9d_c01036{left:492.939229pt;}
.xd7_c01036{left:501.569877pt;}
.x35_c01036{left:507.091356pt;}
.x75_c01036{left:508.740877pt;}
.xa9_c01036{left:509.909061pt;}
.x53_c01036{left:513.999337pt;}
.x4b_c01036{left:514.922112pt;}
.xc2_c01036{left:517.266749pt;}
.xeb_c01036{left:519.040275pt;}
.x5c_c01036{left:522.368957pt;}
.x7d_c01036{left:527.230909pt;}
.xde_c01036{left:531.262173pt;}
.x96_c01036{left:533.709333pt;}
.x40_c01036{left:535.177272pt;}
.x84_c01036{left:536.228257pt;}
.x2a_c01036{left:537.691716pt;}
.xe4_c01036{left:538.901333pt;}
.x9e_c01036{left:541.192297pt;}
.xc8_c01036{left:543.451341pt;}
.x4c_c01036{left:544.446396pt;}
.x36_c01036{left:546.570228pt;}
.x1f_c01036{left:548.693244pt;}
.x67_c01036{left:550.290993pt;}
.x41_c01036{left:555.461076pt;}
.x7e_c01036{left:556.486557pt;}
.x5d_c01036{left:561.071725pt;}
.xb2_c01036{left:566.393829pt;}
.x1_c01036{left:569.510667pt;}
.xd8_c01036{left:570.420957pt;}
.x85_c01036{left:575.309777pt;}
.x37_c01036{left:576.810024pt;}
.xb3_c01036{left:578.048325pt;}
.x8e_c01036{left:582.541753pt;}
.x42_c01036{left:583.556304pt;}
.xbd_c01036{left:585.590645pt;}
.x20_c01036{left:587.622048pt;}
.x68_c01036{left:589.862453pt;}
.x54_c01036{left:591.993265pt;}
.xef_c01036{left:597.680603pt;}
.xaa_c01036{left:598.913845pt;}
.x9f_c01036{left:601.060081pt;}
.xc3_c01036{left:603.625697pt;}
.x7_c01036{left:611.034665pt;}
.xb9_c01036{left:615.503665pt;}
.x14_c01036{left:618.797448pt;}
.x76_c01036{left:625.678641pt;}
.xb4_c01036{left:627.149101pt;}
.xab_c01036{left:628.239357pt;}
.x5e_c01036{left:629.548501pt;}
.x4d_c01036{left:633.316380pt;}
.xf0_c01036{left:636.684227pt;}
.x6e_c01036{left:637.619013pt;}
.x55_c01036{left:640.424785pt;}
.x38_c01036{left:643.037904pt;}
.x2b_c01036{left:646.172292pt;}
.x5f_c01036{left:649.702441pt;}
.x86_c01036{left:654.315973pt;}
.x8f_c01036{left:655.509905pt;}
.x21_c01036{left:657.405984pt;}
.x69_c01036{left:658.543065pt;}
.x4e_c01036{left:662.322468pt;}
.xb5_c01036{left:664.098545pt;}
.xe5_c01036{left:666.530909pt;}
.x60_c01036{left:668.906613pt;}
.x43_c01036{left:673.063812pt;}
.x2c_c01036{left:674.729772pt;}
.x15_c01036{left:678.055464pt;}
.x22_c01036{left:686.208696pt;}
.x6a_c01036{left:687.749453pt;}
.xc9_c01036{left:691.136785pt;}
.x87_c01036{left:692.620825pt;}
.xae_c01036{left:695.105873pt;}
.xd9_c01036{left:698.035881pt;}
.x44_c01036{left:702.084876pt;}
.x16_c01036{left:707.332824pt;}
.x56_c01036{left:708.946861pt;}
.x6f_c01036{left:715.862025pt;}
.x2d_c01036{left:723.305988pt;}
.x77_c01036{left:733.050237pt;}
.x2_c01036{left:736.988355pt;}
.xa5_c01036{left:770.761633pt;}
.x8_c01036{left:778.080000pt;}
.x7f_c01036{left:780.587901pt;}
.x9_c01036{left:783.360000pt;}
}





/* 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_c01037 {
    display:none;
  }
  .loading-indicator_c01037.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01037 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_c01037 { 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_c01037" -> "#page-container .classname_c01037")
 */
.pf_c01037 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01037 { /* 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_c01037.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01037 { /* 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_c01037 { /* 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_c01037 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01037 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01037 {overflow:visible;}
  }
}
.c_c01037 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01037 { /* 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_c01037:after { /* webkit #35443 */
  content: '';
}
.t_c01037:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01037 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 */
}
.__c01037 { /* 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_c01037 { /* info for Javascript */
  display:none;
}
.l_c01037 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01037 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01037 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01037: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_c01037 {
    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_c01037.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01037.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_c01037 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01037{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01037;src:url('chunks/assets/font_bfe6362fd3009c591583128f.woff2')format("woff");}.ff1_c01037{font-family:ff1_c01037;line-height:1.000000;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;}
.m2_c01037{transform:matrix(0.115825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115825,0.000000,0.000000,0.250000,0,0);}
.m0_c01037{transform:matrix(0.199035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199035,0.000000,0.000000,0.250000,0,0);}
.m1_c01037{transform:matrix(0.207780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207780,0.000000,0.000000,0.250000,0,0);}
.m3_c01037{transform:matrix(0.221600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221600,0.000000,0.000000,0.250000,0,0);}
.v0_c01037{vertical-align:0.000000px;}
.ls0_c01037{letter-spacing:0.000000px;}
.sc__c01037{text-shadow:none;}
.sc0_c01037{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__c01037{-webkit-text-stroke:0px transparent;}
.sc0_c01037{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01037{word-spacing:0.000000px;}
.fc0_c01037{color:transparent;}
.fs0_c01037{font-size:24.000000px;}
.fs1_c01037{font-size:30.000000px;}
.y0_c01037{bottom:0.000000px;}
.y5_c01037{bottom:674.190000px;}
.y4_c01037{bottom:680.400000px;}
.y3_c01037{bottom:687.420000px;}
.y2_c01037{bottom:691.740000px;}
.y1_c01037{bottom:751.680000px;}
.h2_c01037{height:24.000000px;}
.h3_c01037{height:30.000000px;}
.h0_c01037{height:1246.320000px;}
.h1_c01037{height:1246.500000px;}
.w1_c01037{width:887.250000px;}
.w0_c01037{width:887.490000px;}
.x0_c01037{left:0.000000px;}
.x1_c01037{left:873.450000px;}
.x3_c01037{left:883.980000px;}
.x2_c01037{left:885.600000px;}
@media print{
.v0_c01037{vertical-align:0.000000pt;}
.ls0_c01037{letter-spacing:0.000000pt;}
.ws0_c01037{word-spacing:0.000000pt;}
.fs0_c01037{font-size:21.333333pt;}
.fs1_c01037{font-size:26.666667pt;}
.y0_c01037{bottom:0.000000pt;}
.y5_c01037{bottom:599.280000pt;}
.y4_c01037{bottom:604.800000pt;}
.y3_c01037{bottom:611.040000pt;}
.y2_c01037{bottom:614.880000pt;}
.y1_c01037{bottom:668.160000pt;}
.h2_c01037{height:21.333333pt;}
.h3_c01037{height:26.666667pt;}
.h0_c01037{height:1107.840000pt;}
.h1_c01037{height:1108.000000pt;}
.w1_c01037{width:788.666667pt;}
.w0_c01037{width:788.880000pt;}
.x0_c01037{left:0.000000pt;}
.x1_c01037{left:776.400000pt;}
.x3_c01037{left:785.760000pt;}
.x2_c01037{left:787.200000pt;}
}





/* 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_c01038 {
    display:none;
  }
  .loading-indicator_c01038.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01038 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_c01038 { 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_c01038" -> "#page-container .classname_c01038")
 */
.pf_c01038 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01038 { /* 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_c01038.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01038 { /* 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_c01038 { /* 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_c01038 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01038 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01038 {overflow:visible;}
  }
}
.c_c01038 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01038 { /* 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_c01038:after { /* webkit #35443 */
  content: '';
}
.t_c01038:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01038 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 */
}
.__c01038 { /* 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_c01038 { /* info for Javascript */
  display:none;
}
.l_c01038 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01038 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01038 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01038: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_c01038 {
    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_c01038.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01038.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_c01038 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01038{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01038;src:url('chunks/assets/font_92d6bb63cbc780ceff7db400.woff2')format("woff");}.ff1_c01038{font-family:ff1_c01038;line-height:1.000000;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;}
.m19_c01038{transform:matrix(0.009089,-0.000136,0.003750,0.249972,0,0);-ms-transform:matrix(0.009089,-0.000136,0.003750,0.249972,0,0);-webkit-transform:matrix(0.009089,-0.000136,0.003750,0.249972,0,0);}
.m1_c01038{transform:matrix(0.010164,-0.000152,0.003750,0.249972,0,0);-ms-transform:matrix(0.010164,-0.000152,0.003750,0.249972,0,0);-webkit-transform:matrix(0.010164,-0.000152,0.003750,0.249972,0,0);}
.m18_c01038{transform:matrix(0.011589,-0.000174,0.003750,0.249972,0,0);-ms-transform:matrix(0.011589,-0.000174,0.003750,0.249972,0,0);-webkit-transform:matrix(0.011589,-0.000174,0.003750,0.249972,0,0);}
.m0_c01038{transform:matrix(0.013633,-0.000205,0.003750,0.249972,0,0);-ms-transform:matrix(0.013633,-0.000205,0.003750,0.249972,0,0);-webkit-transform:matrix(0.013633,-0.000205,0.003750,0.249972,0,0);}
.m17_c01038{transform:matrix(0.014373,-0.000216,0.003750,0.249972,0,0);-ms-transform:matrix(0.014373,-0.000216,0.003750,0.249972,0,0);-webkit-transform:matrix(0.014373,-0.000216,0.003750,0.249972,0,0);}
.m32_c01038{transform:matrix(0.186364,-0.002795,0.003750,0.249972,0,0);-ms-transform:matrix(0.186364,-0.002795,0.003750,0.249972,0,0);-webkit-transform:matrix(0.186364,-0.002795,0.003750,0.249972,0,0);}
.m34_c01038{transform:matrix(0.200997,-0.003015,0.003750,0.249972,0,0);-ms-transform:matrix(0.200997,-0.003015,0.003750,0.249972,0,0);-webkit-transform:matrix(0.200997,-0.003015,0.003750,0.249972,0,0);}
.mc_c01038{transform:matrix(0.206642,-0.003100,0.003750,0.249972,0,0);-ms-transform:matrix(0.206642,-0.003100,0.003750,0.249972,0,0);-webkit-transform:matrix(0.206642,-0.003100,0.003750,0.249972,0,0);}
.m31_c01038{transform:matrix(0.210256,-0.003154,0.003750,0.249972,0,0);-ms-transform:matrix(0.210256,-0.003154,0.003750,0.249972,0,0);-webkit-transform:matrix(0.210256,-0.003154,0.003750,0.249972,0,0);}
.md_c01038{transform:matrix(0.212486,-0.003187,0.003750,0.249972,0,0);-ms-transform:matrix(0.212486,-0.003187,0.003750,0.249972,0,0);-webkit-transform:matrix(0.212486,-0.003187,0.003750,0.249972,0,0);}
.m33_c01038{transform:matrix(0.215781,-0.003237,0.003750,0.249972,0,0);-ms-transform:matrix(0.215781,-0.003237,0.003750,0.249972,0,0);-webkit-transform:matrix(0.215781,-0.003237,0.003750,0.249972,0,0);}
.m36_c01038{transform:matrix(0.217351,-0.003260,0.003750,0.249972,0,0);-ms-transform:matrix(0.217351,-0.003260,0.003750,0.249972,0,0);-webkit-transform:matrix(0.217351,-0.003260,0.003750,0.249972,0,0);}
.m39_c01038{transform:matrix(0.219580,-0.003294,0.003750,0.249972,0,0);-ms-transform:matrix(0.219580,-0.003294,0.003750,0.249972,0,0);-webkit-transform:matrix(0.219580,-0.003294,0.003750,0.249972,0,0);}
.m35_c01038{transform:matrix(0.221145,-0.003317,0.003750,0.249972,0,0);-ms-transform:matrix(0.221145,-0.003317,0.003750,0.249972,0,0);-webkit-transform:matrix(0.221145,-0.003317,0.003750,0.249972,0,0);}
.m14_c01038{transform:matrix(0.224010,-0.003360,0.003750,0.249972,0,0);-ms-transform:matrix(0.224010,-0.003360,0.003750,0.249972,0,0);-webkit-transform:matrix(0.224010,-0.003360,0.003750,0.249972,0,0);}
.m38_c01038{transform:matrix(0.226250,-0.003394,0.003750,0.249972,0,0);-ms-transform:matrix(0.226250,-0.003394,0.003750,0.249972,0,0);-webkit-transform:matrix(0.226250,-0.003394,0.003750,0.249972,0,0);}
.m3_c01038{transform:matrix(0.228419,-0.003426,0.003750,0.249972,0,0);-ms-transform:matrix(0.228419,-0.003426,0.003750,0.249972,0,0);-webkit-transform:matrix(0.228419,-0.003426,0.003750,0.249972,0,0);}
.m2e_c01038{transform:matrix(0.228789,-0.003432,0.003750,0.249972,0,0);-ms-transform:matrix(0.228789,-0.003432,0.003750,0.249972,0,0);-webkit-transform:matrix(0.228789,-0.003432,0.003750,0.249972,0,0);}
.m20_c01038{transform:matrix(0.229239,-0.003439,0.003750,0.249972,0,0);-ms-transform:matrix(0.229239,-0.003439,0.003750,0.249972,0,0);-webkit-transform:matrix(0.229239,-0.003439,0.003750,0.249972,0,0);}
.m2b_c01038{transform:matrix(0.232379,-0.003486,0.003750,0.249972,0,0);-ms-transform:matrix(0.232379,-0.003486,0.003750,0.249972,0,0);-webkit-transform:matrix(0.232379,-0.003486,0.003750,0.249972,0,0);}
.m37_c01038{transform:matrix(0.233784,-0.003507,0.003750,0.249972,0,0);-ms-transform:matrix(0.233784,-0.003507,0.003750,0.249972,0,0);-webkit-transform:matrix(0.233784,-0.003507,0.003750,0.249972,0,0);}
.m12_c01038{transform:matrix(0.235104,-0.003527,0.003750,0.249972,0,0);-ms-transform:matrix(0.235104,-0.003527,0.003750,0.249972,0,0);-webkit-transform:matrix(0.235104,-0.003527,0.003750,0.249972,0,0);}
.mb_c01038{transform:matrix(0.235279,-0.003529,0.003750,0.249972,0,0);-ms-transform:matrix(0.235279,-0.003529,0.003750,0.249972,0,0);-webkit-transform:matrix(0.235279,-0.003529,0.003750,0.249972,0,0);}
.m11_c01038{transform:matrix(0.237493,-0.003562,0.003750,0.249972,0,0);-ms-transform:matrix(0.237493,-0.003562,0.003750,0.249972,0,0);-webkit-transform:matrix(0.237493,-0.003562,0.003750,0.249972,0,0);}
.m1c_c01038{transform:matrix(0.237803,-0.003567,0.003750,0.249972,0,0);-ms-transform:matrix(0.237803,-0.003567,0.003750,0.249972,0,0);-webkit-transform:matrix(0.237803,-0.003567,0.003750,0.249972,0,0);}
.m5_c01038{transform:matrix(0.238983,-0.003585,0.003750,0.249972,0,0);-ms-transform:matrix(0.238983,-0.003585,0.003750,0.249972,0,0);-webkit-transform:matrix(0.238983,-0.003585,0.003750,0.249972,0,0);}
.m16_c01038{transform:matrix(0.240163,-0.003602,0.003750,0.249972,0,0);-ms-transform:matrix(0.240163,-0.003602,0.003750,0.249972,0,0);-webkit-transform:matrix(0.240163,-0.003602,0.003750,0.249972,0,0);}
.m15_c01038{transform:matrix(0.241488,-0.003622,0.003750,0.249972,0,0);-ms-transform:matrix(0.241488,-0.003622,0.003750,0.249972,0,0);-webkit-transform:matrix(0.241488,-0.003622,0.003750,0.249972,0,0);}
.m29_c01038{transform:matrix(0.241968,-0.003630,0.003750,0.249972,0,0);-ms-transform:matrix(0.241968,-0.003630,0.003750,0.249972,0,0);-webkit-transform:matrix(0.241968,-0.003630,0.003750,0.249972,0,0);}
.m2f_c01038{transform:matrix(0.243008,-0.003645,0.003750,0.249972,0,0);-ms-transform:matrix(0.243008,-0.003645,0.003750,0.249972,0,0);-webkit-transform:matrix(0.243008,-0.003645,0.003750,0.249972,0,0);}
.m2a_c01038{transform:matrix(0.245452,-0.003682,0.003750,0.249972,0,0);-ms-transform:matrix(0.245452,-0.003682,0.003750,0.249972,0,0);-webkit-transform:matrix(0.245452,-0.003682,0.003750,0.249972,0,0);}
.me_c01038{transform:matrix(0.247422,-0.003711,0.003750,0.249972,0,0);-ms-transform:matrix(0.247422,-0.003711,0.003750,0.249972,0,0);-webkit-transform:matrix(0.247422,-0.003711,0.003750,0.249972,0,0);}
.m13_c01038{transform:matrix(0.248247,-0.003724,0.003750,0.249972,0,0);-ms-transform:matrix(0.248247,-0.003724,0.003750,0.249972,0,0);-webkit-transform:matrix(0.248247,-0.003724,0.003750,0.249972,0,0);}
.m22_c01038{transform:matrix(0.250902,-0.003764,0.003750,0.249972,0,0);-ms-transform:matrix(0.250902,-0.003764,0.003750,0.249972,0,0);-webkit-transform:matrix(0.250902,-0.003764,0.003750,0.249972,0,0);}
.m4_c01038{transform:matrix(0.252987,-0.003795,0.003750,0.249972,0,0);-ms-transform:matrix(0.252987,-0.003795,0.003750,0.249972,0,0);-webkit-transform:matrix(0.252987,-0.003795,0.003750,0.249972,0,0);}
.m1e_c01038{transform:matrix(0.255281,-0.003829,0.003750,0.249972,0,0);-ms-transform:matrix(0.255281,-0.003829,0.003750,0.249972,0,0);-webkit-transform:matrix(0.255281,-0.003829,0.003750,0.249972,0,0);}
.m28_c01038{transform:matrix(0.256031,-0.003840,0.003750,0.249972,0,0);-ms-transform:matrix(0.256031,-0.003840,0.003750,0.249972,0,0);-webkit-transform:matrix(0.256031,-0.003840,0.003750,0.249972,0,0);}
.m1f_c01038{transform:matrix(0.257541,-0.003863,0.003750,0.249972,0,0);-ms-transform:matrix(0.257541,-0.003863,0.003750,0.249972,0,0);-webkit-transform:matrix(0.257541,-0.003863,0.003750,0.249972,0,0);}
.m30_c01038{transform:matrix(0.258356,-0.003875,0.003750,0.249972,0,0);-ms-transform:matrix(0.258356,-0.003875,0.003750,0.249972,0,0);-webkit-transform:matrix(0.258356,-0.003875,0.003750,0.249972,0,0);}
.m10_c01038{transform:matrix(0.259911,-0.003899,0.003750,0.249972,0,0);-ms-transform:matrix(0.259911,-0.003899,0.003750,0.249972,0,0);-webkit-transform:matrix(0.259911,-0.003899,0.003750,0.249972,0,0);}
.m8_c01038{transform:matrix(0.260831,-0.003912,0.003750,0.249972,0,0);-ms-transform:matrix(0.260831,-0.003912,0.003750,0.249972,0,0);-webkit-transform:matrix(0.260831,-0.003912,0.003750,0.249972,0,0);}
.m27_c01038{transform:matrix(0.262370,-0.003936,0.003750,0.249972,0,0);-ms-transform:matrix(0.262370,-0.003936,0.003750,0.249972,0,0);-webkit-transform:matrix(0.262370,-0.003936,0.003750,0.249972,0,0);}
.m9_c01038{transform:matrix(0.266615,-0.003999,0.003750,0.249972,0,0);-ms-transform:matrix(0.266615,-0.003999,0.003750,0.249972,0,0);-webkit-transform:matrix(0.266615,-0.003999,0.003750,0.249972,0,0);}
.m26_c01038{transform:matrix(0.269150,-0.004037,0.003750,0.249972,0,0);-ms-transform:matrix(0.269150,-0.004037,0.003750,0.249972,0,0);-webkit-transform:matrix(0.269150,-0.004037,0.003750,0.249972,0,0);}
.m21_c01038{transform:matrix(0.270990,-0.004065,0.003750,0.249972,0,0);-ms-transform:matrix(0.270990,-0.004065,0.003750,0.249972,0,0);-webkit-transform:matrix(0.270990,-0.004065,0.003750,0.249972,0,0);}
.m2d_c01038{transform:matrix(0.272659,-0.004090,0.003750,0.249972,0,0);-ms-transform:matrix(0.272659,-0.004090,0.003750,0.249972,0,0);-webkit-transform:matrix(0.272659,-0.004090,0.003750,0.249972,0,0);}
.m24_c01038{transform:matrix(0.273349,-0.004100,0.003750,0.249972,0,0);-ms-transform:matrix(0.273349,-0.004100,0.003750,0.249972,0,0);-webkit-transform:matrix(0.273349,-0.004100,0.003750,0.249972,0,0);}
.m23_c01038{transform:matrix(0.278809,-0.004182,0.003750,0.249972,0,0);-ms-transform:matrix(0.278809,-0.004182,0.003750,0.249972,0,0);-webkit-transform:matrix(0.278809,-0.004182,0.003750,0.249972,0,0);}
.mf_c01038{transform:matrix(0.279274,-0.004189,0.003750,0.249972,0,0);-ms-transform:matrix(0.279274,-0.004189,0.003750,0.249972,0,0);-webkit-transform:matrix(0.279274,-0.004189,0.003750,0.249972,0,0);}
.m1d_c01038{transform:matrix(0.280043,-0.004201,0.003750,0.249972,0,0);-ms-transform:matrix(0.280043,-0.004201,0.003750,0.249972,0,0);-webkit-transform:matrix(0.280043,-0.004201,0.003750,0.249972,0,0);}
.m6_c01038{transform:matrix(0.294257,-0.004414,0.003750,0.249972,0,0);-ms-transform:matrix(0.294257,-0.004414,0.003750,0.249972,0,0);-webkit-transform:matrix(0.294257,-0.004414,0.003750,0.249972,0,0);}
.m2_c01038{transform:matrix(0.301506,-0.004523,0.003750,0.249972,0,0);-ms-transform:matrix(0.301506,-0.004523,0.003750,0.249972,0,0);-webkit-transform:matrix(0.301506,-0.004523,0.003750,0.249972,0,0);}
.m25_c01038{transform:matrix(0.310780,-0.004662,0.003750,0.249972,0,0);-ms-transform:matrix(0.310780,-0.004662,0.003750,0.249972,0,0);-webkit-transform:matrix(0.310780,-0.004662,0.003750,0.249972,0,0);}
.ma_c01038{transform:matrix(0.327753,-0.004916,0.003750,0.249972,0,0);-ms-transform:matrix(0.327753,-0.004916,0.003750,0.249972,0,0);-webkit-transform:matrix(0.327753,-0.004916,0.003750,0.249972,0,0);}
.m1b_c01038{transform:matrix(0.330663,-0.004960,0.003750,0.249972,0,0);-ms-transform:matrix(0.330663,-0.004960,0.003750,0.249972,0,0);-webkit-transform:matrix(0.330663,-0.004960,0.003750,0.249972,0,0);}
.m2c_c01038{transform:matrix(0.331858,-0.004978,0.003750,0.249972,0,0);-ms-transform:matrix(0.331858,-0.004978,0.003750,0.249972,0,0);-webkit-transform:matrix(0.331858,-0.004978,0.003750,0.249972,0,0);}
.m7_c01038{transform:matrix(0.344956,-0.005174,0.003750,0.249972,0,0);-ms-transform:matrix(0.344956,-0.005174,0.003750,0.249972,0,0);-webkit-transform:matrix(0.344956,-0.005174,0.003750,0.249972,0,0);}
.m1a_c01038{transform:matrix(0.467622,-0.007014,0.003750,0.249972,0,0);-ms-transform:matrix(0.467622,-0.007014,0.003750,0.249972,0,0);-webkit-transform:matrix(0.467622,-0.007014,0.003750,0.249972,0,0);}
.v0_c01038{vertical-align:0.000000px;}
.ls0_c01038{letter-spacing:0.000000px;}
.sc__c01038{text-shadow:none;}
.sc0_c01038{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__c01038{-webkit-text-stroke:0px transparent;}
.sc0_c01038{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01038{word-spacing:0.000000px;}
.fc0_c01038{color:transparent;}
.fs2_c01038{font-size:72.008100px;}
.fs1_c01038{font-size:78.008775px;}
.fs0_c01038{font-size:84.009449px;}
.fs3_c01038{font-size:90.010124px;}
.y0_c01038{bottom:0.000000px;}
.y35_c01038{bottom:920.417160px;}
.y36_c01038{bottom:921.945473px;}
.y37_c01038{bottom:922.691850px;}
.y38_c01038{bottom:924.447510px;}
.y39_c01038{bottom:924.970515px;}
.y3a_c01038{bottom:927.752528px;}
.y3b_c01038{bottom:929.759280px;}
.y3c_c01038{bottom:930.302025px;}
.y3d_c01038{bottom:931.012800px;}
.y28_c01038{bottom:955.527038px;}
.y29_c01038{bottom:956.198400px;}
.y2a_c01038{bottom:958.036230px;}
.y2b_c01038{bottom:959.854717px;}
.y2c_c01038{bottom:960.785363px;}
.y2d_c01038{bottom:961.463985px;}
.y2e_c01038{bottom:962.388833px;}
.y2f_c01038{bottom:963.087067px;}
.y30_c01038{bottom:964.935097px;}
.y31_c01038{bottom:966.805710px;}
.y32_c01038{bottom:967.508708px;}
.y33_c01038{bottom:968.187330px;}
.y34_c01038{bottom:969.111840px;}
.y1e_c01038{bottom:995.487292px;}
.y1f_c01038{bottom:996.094155px;}
.y20_c01038{bottom:996.621908px;}
.y21_c01038{bottom:997.662278px;}
.y22_c01038{bottom:998.357805px;}
.y23_c01038{bottom:999.254895px;}
.y24_c01038{bottom:999.787147px;}
.y25_c01038{bottom:1001.195767px;}
.y26_c01038{bottom:1002.077490px;}
.y27_c01038{bottom:1003.663110px;}
.y18_c01038{bottom:1025.458710px;}
.y19_c01038{bottom:1027.768590px;}
.y1a_c01038{bottom:1028.890717px;}
.y1b_c01038{bottom:1029.752242px;}
.y1c_c01038{bottom:1032.289815px;}
.y1d_c01038{bottom:1036.616962px;}
.yc_c01038{bottom:1063.530360px;}
.yd_c01038{bottom:1064.272807px;}
.ye_c01038{bottom:1065.186375px;}
.yf_c01038{bottom:1065.743258px;}
.y10_c01038{bottom:1066.312958px;}
.y11_c01038{bottom:1067.780940px;}
.y12_c01038{bottom:1068.540585px;}
.y13_c01038{bottom:1070.945430px;}
.y14_c01038{bottom:1071.711892px;}
.y15_c01038{bottom:1072.667557px;}
.y16_c01038{bottom:1073.980470px;}
.y17_c01038{bottom:1074.545228px;}
.y1_c01038{bottom:1102.138500px;}
.y2_c01038{bottom:1102.460858px;}
.y3_c01038{bottom:1102.639643px;}
.y4_c01038{bottom:1103.240955px;}
.y5_c01038{bottom:1104.169148px;}
.y6_c01038{bottom:1105.550355px;}
.y7_c01038{bottom:1106.696438px;}
.y8_c01038{bottom:1108.332705px;}
.y9_c01038{bottom:1108.633575px;}
.ya_c01038{bottom:1109.426902px;}
.yb_c01038{bottom:1109.530538px;}
.h4_c01038{height:72.008100px;}
.h3_c01038{height:78.008775px;}
.h2_c01038{height:84.009449px;}
.h5_c01038{height:90.010124px;}
.h0_c01038{height:1246.320000px;}
.h1_c01038{height:1246.500000px;}
.w1_c01038{width:887.250000px;}
.w0_c01038{width:887.490000px;}
.x0_c01038{left:0.000000px;}
.xc_c01038{left:110.169712px;}
.x17_c01038{left:120.733035px;}
.x32_c01038{left:122.338665px;}
.x25_c01038{left:123.370867px;}
.xd_c01038{left:153.864908px;}
.x26_c01038{left:155.325487px;}
.x1_c01038{left:186.984000px;}
.x33_c01038{left:188.818200px;}
.x2_c01038{left:208.474500px;}
.x3_c01038{left:220.393500px;}
.x1c_c01038{left:225.811642px;}
.xe_c01038{left:240.292297px;}
.x27_c01038{left:242.839612px;}
.x18_c01038{left:249.019252px;}
.x4_c01038{left:260.481000px;}
.x1d_c01038{left:263.768580px;}
.xf_c01038{left:273.771285px;}
.x1e_c01038{left:296.751585px;}
.x19_c01038{left:311.324940px;}
.x34_c01038{left:320.371928px;}
.x5_c01038{left:322.360500px;}
.x28_c01038{left:329.464327px;}
.x10_c01038{left:360.134197px;}
.x1f_c01038{left:361.808617px;}
.x29_c01038{left:373.803345px;}
.x11_c01038{left:404.775847px;}
.x2a_c01038{left:406.141942px;}
.x6_c01038{left:414.441000px;}
.x35_c01038{left:441.324915px;}
.x2b_c01038{left:450.194483px;}
.x20_c01038{left:461.381632px;}
.x2c_c01038{left:483.440490px;}
.x7_c01038{left:490.846500px;}
.x21_c01038{left:494.664637px;}
.x1a_c01038{left:500.122935px;}
.x36_c01038{left:528.597952px;}
.x12_c01038{left:546.194595px;}
.x37_c01038{left:552.178117px;}
.x2d_c01038{left:571.434570px;}
.x22_c01038{left:582.671310px;}
.x13_c01038{left:591.290745px;}
.x8_c01038{left:599.931000px;}
.x9_c01038{left:619.989000px;}
.x23_c01038{left:637.751977px;}
.x14_c01038{left:647.500057px;}
.x2e_c01038{left:660.534060px;}
.xa_c01038{left:672.877500px;}
.xb_c01038{left:679.786500px;}
.x2f_c01038{left:693.997545px;}
.x15_c01038{left:724.725240px;}
.x30_c01038{left:726.336142px;}
.x24_c01038{left:736.858493px;}
.x1b_c01038{left:740.488612px;}
.x16_c01038{left:757.974750px;}
.x31_c01038{left:770.366182px;}
@media print{
.v0_c01038{vertical-align:0.000000pt;}
.ls0_c01038{letter-spacing:0.000000pt;}
.ws0_c01038{word-spacing:0.000000pt;}
.fs2_c01038{font-size:64.007200pt;}
.fs1_c01038{font-size:69.341133pt;}
.fs0_c01038{font-size:74.675066pt;}
.fs3_c01038{font-size:80.008999pt;}
.y0_c01038{bottom:0.000000pt;}
.y35_c01038{bottom:818.148587pt;}
.y36_c01038{bottom:819.507087pt;}
.y37_c01038{bottom:820.170533pt;}
.y38_c01038{bottom:821.731120pt;}
.y39_c01038{bottom:822.196013pt;}
.y3a_c01038{bottom:824.668913pt;}
.y3b_c01038{bottom:826.452693pt;}
.y3c_c01038{bottom:826.935133pt;}
.y3d_c01038{bottom:827.566933pt;}
.y28_c01038{bottom:849.357367pt;}
.y29_c01038{bottom:849.954133pt;}
.y2a_c01038{bottom:851.587760pt;}
.y2b_c01038{bottom:853.204193pt;}
.y2c_c01038{bottom:854.031433pt;}
.y2d_c01038{bottom:854.634653pt;}
.y2e_c01038{bottom:855.456740pt;}
.y2f_c01038{bottom:856.077393pt;}
.y30_c01038{bottom:857.720087pt;}
.y31_c01038{bottom:859.382853pt;}
.y32_c01038{bottom:860.007740pt;}
.y33_c01038{bottom:860.610960pt;}
.y34_c01038{bottom:861.432747pt;}
.y1e_c01038{bottom:884.877593pt;}
.y1f_c01038{bottom:885.417027pt;}
.y20_c01038{bottom:885.886140pt;}
.y21_c01038{bottom:886.810913pt;}
.y22_c01038{bottom:887.429160pt;}
.y23_c01038{bottom:888.226573pt;}
.y24_c01038{bottom:888.699687pt;}
.y25_c01038{bottom:889.951793pt;}
.y26_c01038{bottom:890.735547pt;}
.y27_c01038{bottom:892.144987pt;}
.y18_c01038{bottom:911.518853pt;}
.y19_c01038{bottom:913.572080pt;}
.y1a_c01038{bottom:914.569527pt;}
.y1b_c01038{bottom:915.335327pt;}
.y1c_c01038{bottom:917.590947pt;}
.y1d_c01038{bottom:921.437300pt;}
.yc_c01038{bottom:945.360320pt;}
.yd_c01038{bottom:946.020273pt;}
.ye_c01038{bottom:946.832333pt;}
.yf_c01038{bottom:947.327340pt;}
.y10_c01038{bottom:947.833740pt;}
.y11_c01038{bottom:949.138613pt;}
.y12_c01038{bottom:949.813853pt;}
.y13_c01038{bottom:951.951493pt;}
.y14_c01038{bottom:952.632793pt;}
.y15_c01038{bottom:953.482273pt;}
.y16_c01038{bottom:954.649307pt;}
.y17_c01038{bottom:955.151313pt;}
.y1_c01038{bottom:979.678667pt;}
.y2_c01038{bottom:979.965207pt;}
.y3_c01038{bottom:980.124127pt;}
.y4_c01038{bottom:980.658627pt;}
.y5_c01038{bottom:981.483687pt;}
.y6_c01038{bottom:982.711427pt;}
.y7_c01038{bottom:983.730167pt;}
.y8_c01038{bottom:985.184627pt;}
.y9_c01038{bottom:985.452067pt;}
.ya_c01038{bottom:986.157247pt;}
.yb_c01038{bottom:986.249367pt;}
.h4_c01038{height:64.007200pt;}
.h3_c01038{height:69.341133pt;}
.h2_c01038{height:74.675066pt;}
.h5_c01038{height:80.008999pt;}
.h0_c01038{height:1107.840000pt;}
.h1_c01038{height:1108.000000pt;}
.w1_c01038{width:788.666667pt;}
.w0_c01038{width:788.880000pt;}
.x0_c01038{left:0.000000pt;}
.xc_c01038{left:97.928633pt;}
.x17_c01038{left:107.318253pt;}
.x32_c01038{left:108.745480pt;}
.x25_c01038{left:109.662993pt;}
.xd_c01038{left:136.768807pt;}
.x26_c01038{left:138.067100pt;}
.x1_c01038{left:166.208000pt;}
.x33_c01038{left:167.838400pt;}
.x2_c01038{left:185.310667pt;}
.x3_c01038{left:195.905333pt;}
.x1c_c01038{left:200.721460pt;}
.xe_c01038{left:213.593153pt;}
.x27_c01038{left:215.857433pt;}
.x18_c01038{left:221.350447pt;}
.x4_c01038{left:231.538667pt;}
.x1d_c01038{left:234.460960pt;}
.xf_c01038{left:243.352253pt;}
.x1e_c01038{left:263.779187pt;}
.x19_c01038{left:276.733280pt;}
.x34_c01038{left:284.775047pt;}
.x5_c01038{left:286.542667pt;}
.x28_c01038{left:292.857180pt;}
.x10_c01038{left:320.119287pt;}
.x1f_c01038{left:321.607660pt;}
.x29_c01038{left:332.269640pt;}
.x11_c01038{left:359.800753pt;}
.x2a_c01038{left:361.015060pt;}
.x6_c01038{left:368.392000pt;}
.x35_c01038{left:392.288813pt;}
.x2b_c01038{left:400.172873pt;}
.x20_c01038{left:410.117007pt;}
.x2c_c01038{left:429.724880pt;}
.x7_c01038{left:436.308000pt;}
.x21_c01038{left:439.701900pt;}
.x1a_c01038{left:444.553720pt;}
.x36_c01038{left:469.864847pt;}
.x12_c01038{left:485.506307pt;}
.x37_c01038{left:490.824993pt;}
.x2d_c01038{left:507.941840pt;}
.x22_c01038{left:517.930053pt;}
.x13_c01038{left:525.591773pt;}
.x8_c01038{left:533.272000pt;}
.x9_c01038{left:551.101333pt;}
.x23_c01038{left:566.890647pt;}
.x14_c01038{left:575.555607pt;}
.x2e_c01038{left:587.141387pt;}
.xa_c01038{left:598.113333pt;}
.xb_c01038{left:604.254667pt;}
.x2f_c01038{left:616.886707pt;}
.x15_c01038{left:644.200213pt;}
.x30_c01038{left:645.632127pt;}
.x24_c01038{left:654.985327pt;}
.x1b_c01038{left:658.212100pt;}
.x16_c01038{left:673.755333pt;}
.x31_c01038{left:684.769940pt;}
}





/* 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_c01039 {
    display:none;
  }
  .loading-indicator_c01039.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01039 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_c01039 { 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_c01039" -> "#page-container .classname_c01039")
 */
.pf_c01039 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01039 { /* 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_c01039.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01039 { /* 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_c01039 { /* 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_c01039 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01039 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01039 {overflow:visible;}
  }
}
.c_c01039 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01039 { /* 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_c01039:after { /* webkit #35443 */
  content: '';
}
.t_c01039:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01039 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 */
}
.__c01039 { /* 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_c01039 { /* info for Javascript */
  display:none;
}
.l_c01039 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01039 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01039 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01039: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_c01039 {
    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_c01039.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01039.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_c01039 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01039{font-family:sans-serif;visibility:hidden;}
.sc__c01039{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01039{-webkit-text-stroke:0px transparent;}
}
.y0_c01039{bottom:0.000000px;}
.h0_c01039{height:1246.320000px;}
.h1_c01039{height:1246.500000px;}
.w1_c01039{width:887.250000px;}
.w0_c01039{width:887.490000px;}
.x0_c01039{left:0.000000px;}
@media print{
.y0_c01039{bottom:0.000000pt;}
.h0_c01039{height:1107.840000pt;}
.h1_c01039{height:1108.000000pt;}
.w1_c01039{width:788.666667pt;}
.w0_c01039{width:788.880000pt;}
.x0_c01039{left:0.000000pt;}
}





/* 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_c01040 {
    display:none;
  }
  .loading-indicator_c01040.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01040 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_c01040 { 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_c01040" -> "#page-container .classname_c01040")
 */
.pf_c01040 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01040 { /* 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_c01040.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01040 { /* 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_c01040 { /* 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_c01040 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01040 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01040 {overflow:visible;}
  }
}
.c_c01040 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01040 { /* 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_c01040:after { /* webkit #35443 */
  content: '';
}
.t_c01040:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01040 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 */
}
.__c01040 { /* 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_c01040 { /* info for Javascript */
  display:none;
}
.l_c01040 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01040 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01040 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01040: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_c01040 {
    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_c01040.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01040.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_c01040 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01040{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01040;src:url('chunks/assets/font_cfe63ee56e9e10a97d33a3db.woff2')format("woff");}.ff1_c01040{font-family:ff1_c01040;line-height:1.000000;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;}
.m0_c01040{transform:matrix(0.123655,0.005570,-0.011250,0.249747,0,0);-ms-transform:matrix(0.123655,0.005570,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.123655,0.005570,-0.011250,0.249747,0,0);}
.m3d_c01040{transform:matrix(0.159228,0.004458,-0.006997,0.249902,0,0);-ms-transform:matrix(0.159228,0.004458,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.159228,0.004458,-0.006997,0.249902,0,0);}
.m3f_c01040{transform:matrix(0.159992,0.004480,-0.006997,0.249902,0,0);-ms-transform:matrix(0.159992,0.004480,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.159992,0.004480,-0.006997,0.249902,0,0);}
.m30_c01040{transform:matrix(0.165430,0.005299,-0.008004,0.249872,0,0);-ms-transform:matrix(0.165430,0.005299,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.165430,0.005299,-0.008004,0.249872,0,0);}
.m3c_c01040{transform:matrix(0.166410,0.004659,-0.006997,0.249902,0,0);-ms-transform:matrix(0.166410,0.004659,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.166410,0.004659,-0.006997,0.249902,0,0);}
.m2b_c01040{transform:matrix(0.166778,0.008013,-0.011998,0.249712,0,0);-ms-transform:matrix(0.166778,0.008013,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.166778,0.008013,-0.011998,0.249712,0,0);}
.m3e_c01040{transform:matrix(0.171728,0.004808,-0.006997,0.249902,0,0);-ms-transform:matrix(0.171728,0.004808,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.171728,0.004808,-0.006997,0.249902,0,0);}
.m40_c01040{transform:matrix(0.177670,0.004975,-0.006997,0.249902,0,0);-ms-transform:matrix(0.177670,0.004975,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.177670,0.004975,-0.006997,0.249902,0,0);}
.m32_c01040{transform:matrix(0.179163,0.005739,-0.008004,0.249872,0,0);-ms-transform:matrix(0.179163,0.005739,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.179163,0.005739,-0.008004,0.249872,0,0);}
.m2c_c01040{transform:matrix(0.179528,0.008626,-0.011998,0.249712,0,0);-ms-transform:matrix(0.179528,0.008626,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.179528,0.008626,-0.011998,0.249712,0,0);}
.m29_c01040{transform:matrix(0.182320,0.008760,-0.011998,0.249712,0,0);-ms-transform:matrix(0.182320,0.008760,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.182320,0.008760,-0.011998,0.249712,0,0);}
.m2e_c01040{transform:matrix(0.182724,0.008780,-0.011998,0.249712,0,0);-ms-transform:matrix(0.182724,0.008780,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.182724,0.008780,-0.011998,0.249712,0,0);}
.m43_c01040{transform:matrix(0.188350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188350,0.000000,0.000000,0.250000,0,0);}
.m3b_c01040{transform:matrix(0.188706,0.005284,-0.006997,0.249902,0,0);-ms-transform:matrix(0.188706,0.005284,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.188706,0.005284,-0.006997,0.249902,0,0);}
.m1a_c01040{transform:matrix(0.191556,0.008053,-0.010501,0.249779,0,0);-ms-transform:matrix(0.191556,0.008053,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.191556,0.008053,-0.010501,0.249779,0,0);}
.m1d_c01040{transform:matrix(0.193599,0.008139,-0.010501,0.249779,0,0);-ms-transform:matrix(0.193599,0.008139,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.193599,0.008139,-0.010501,0.249779,0,0);}
.m22_c01040{transform:matrix(0.193634,0.008141,-0.010501,0.249779,0,0);-ms-transform:matrix(0.193634,0.008141,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.193634,0.008141,-0.010501,0.249779,0,0);}
.m2d_c01040{transform:matrix(0.201233,0.009669,-0.011998,0.249712,0,0);-ms-transform:matrix(0.201233,0.009669,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.201233,0.009669,-0.011998,0.249712,0,0);}
.m33_c01040{transform:matrix(0.204600,0.006554,-0.008004,0.249872,0,0);-ms-transform:matrix(0.204600,0.006554,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.204600,0.006554,-0.008004,0.249872,0,0);}
.m3_c01040{transform:matrix(0.205848,0.010097,-0.012248,0.249700,0,0);-ms-transform:matrix(0.205848,0.010097,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.205848,0.010097,-0.012248,0.249700,0,0);}
.m3a_c01040{transform:matrix(0.206989,0.005796,-0.006997,0.249902,0,0);-ms-transform:matrix(0.206989,0.005796,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.206989,0.005796,-0.006997,0.249902,0,0);}
.m2a_c01040{transform:matrix(0.207296,0.009960,-0.011998,0.249712,0,0);-ms-transform:matrix(0.207296,0.009960,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.207296,0.009960,-0.011998,0.249712,0,0);}
.m20_c01040{transform:matrix(0.213162,0.008962,-0.010501,0.249779,0,0);-ms-transform:matrix(0.213162,0.008962,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.213162,0.008962,-0.010501,0.249779,0,0);}
.m23_c01040{transform:matrix(0.215814,0.009073,-0.010501,0.249779,0,0);-ms-transform:matrix(0.215814,0.009073,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.215814,0.009073,-0.010501,0.249779,0,0);}
.me_c01040{transform:matrix(0.220022,0.010131,-0.011499,0.249735,0,0);-ms-transform:matrix(0.220022,0.010131,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.220022,0.010131,-0.011499,0.249735,0,0);}
.m2f_c01040{transform:matrix(0.221391,0.007092,-0.008004,0.249872,0,0);-ms-transform:matrix(0.221391,0.007092,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.221391,0.007092,-0.008004,0.249872,0,0);}
.m31_c01040{transform:matrix(0.221431,0.007093,-0.008004,0.249872,0,0);-ms-transform:matrix(0.221431,0.007093,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.221431,0.007093,-0.008004,0.249872,0,0);}
.m15_c01040{transform:matrix(0.221645,0.010206,-0.011499,0.249735,0,0);-ms-transform:matrix(0.221645,0.010206,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.221645,0.010206,-0.011499,0.249735,0,0);}
.m13_c01040{transform:matrix(0.223034,0.010270,-0.011499,0.249735,0,0);-ms-transform:matrix(0.223034,0.010270,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.223034,0.010270,-0.011499,0.249735,0,0);}
.m25_c01040{transform:matrix(0.223712,0.010749,-0.011998,0.249712,0,0);-ms-transform:matrix(0.223712,0.010749,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.223712,0.010749,-0.011998,0.249712,0,0);}
.m34_c01040{transform:matrix(0.224399,0.011231,-0.012497,0.249687,0,0);-ms-transform:matrix(0.224399,0.011231,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.224399,0.011231,-0.012497,0.249687,0,0);}
.m28_c01040{transform:matrix(0.225849,0.010852,-0.011998,0.249712,0,0);-ms-transform:matrix(0.225849,0.010852,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.225849,0.010852,-0.011998,0.249712,0,0);}
.m21_c01040{transform:matrix(0.229218,0.009637,-0.010501,0.249779,0,0);-ms-transform:matrix(0.229218,0.009637,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.229218,0.009637,-0.010501,0.249779,0,0);}
.m11_c01040{transform:matrix(0.230081,0.010594,-0.011499,0.249735,0,0);-ms-transform:matrix(0.230081,0.010594,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.230081,0.010594,-0.011499,0.249735,0,0);}
.m1e_c01040{transform:matrix(0.231680,0.009740,-0.010501,0.249779,0,0);-ms-transform:matrix(0.231680,0.009740,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.231680,0.009740,-0.010501,0.249779,0,0);}
.m1b_c01040{transform:matrix(0.232774,0.009786,-0.010501,0.249779,0,0);-ms-transform:matrix(0.232774,0.009786,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.232774,0.009786,-0.010501,0.249779,0,0);}
.m7_c01040{transform:matrix(0.232833,0.010721,-0.011499,0.249735,0,0);-ms-transform:matrix(0.232833,0.010721,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.232833,0.010721,-0.011499,0.249735,0,0);}
.m1c_c01040{transform:matrix(0.233754,0.009827,-0.010501,0.249779,0,0);-ms-transform:matrix(0.233754,0.009827,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.233754,0.009827,-0.010501,0.249779,0,0);}
.m4_c01040{transform:matrix(0.234163,0.011485,-0.012248,0.249700,0,0);-ms-transform:matrix(0.234163,0.011485,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.234163,0.011485,-0.012248,0.249700,0,0);}
.m5_c01040{transform:matrix(0.235447,0.011548,-0.012248,0.249700,0,0);-ms-transform:matrix(0.235447,0.011548,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.235447,0.011548,-0.012248,0.249700,0,0);}
.m18_c01040{transform:matrix(0.236934,0.010910,-0.011499,0.249735,0,0);-ms-transform:matrix(0.236934,0.010910,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.236934,0.010910,-0.011499,0.249735,0,0);}
.m1f_c01040{transform:matrix(0.237525,0.009986,-0.010501,0.249779,0,0);-ms-transform:matrix(0.237525,0.009986,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.237525,0.009986,-0.010501,0.249779,0,0);}
.mb_c01040{transform:matrix(0.239042,0.011007,-0.011499,0.249735,0,0);-ms-transform:matrix(0.239042,0.011007,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.239042,0.011007,-0.011499,0.249735,0,0);}
.m17_c01040{transform:matrix(0.246893,0.011368,-0.011499,0.249735,0,0);-ms-transform:matrix(0.246893,0.011368,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.246893,0.011368,-0.011499,0.249735,0,0);}
.m6_c01040{transform:matrix(0.248846,0.011458,-0.011499,0.249735,0,0);-ms-transform:matrix(0.248846,0.011458,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.248846,0.011458,-0.011499,0.249735,0,0);}
.mf_c01040{transform:matrix(0.249241,0.011477,-0.011499,0.249735,0,0);-ms-transform:matrix(0.249241,0.011477,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.249241,0.011477,-0.011499,0.249735,0,0);}
.m12_c01040{transform:matrix(0.253766,0.011685,-0.011499,0.249735,0,0);-ms-transform:matrix(0.253766,0.011685,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.253766,0.011685,-0.011499,0.249735,0,0);}
.m36_c01040{transform:matrix(0.255825,0.012804,-0.012497,0.249687,0,0);-ms-transform:matrix(0.255825,0.012804,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.255825,0.012804,-0.012497,0.249687,0,0);}
.m37_c01040{transform:matrix(0.255870,0.012806,-0.012497,0.249687,0,0);-ms-transform:matrix(0.255870,0.012806,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.255870,0.012806,-0.012497,0.249687,0,0);}
.ma_c01040{transform:matrix(0.257757,0.011869,-0.011499,0.249735,0,0);-ms-transform:matrix(0.257757,0.011869,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.257757,0.011869,-0.011499,0.249735,0,0);}
.m39_c01040{transform:matrix(0.258367,0.012931,-0.012497,0.249687,0,0);-ms-transform:matrix(0.258367,0.012931,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.258367,0.012931,-0.012497,0.249687,0,0);}
.m2_c01040{transform:matrix(0.259024,0.012705,-0.012248,0.249700,0,0);-ms-transform:matrix(0.259024,0.012705,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.259024,0.012705,-0.012248,0.249700,0,0);}
.m16_c01040{transform:matrix(0.262712,0.012097,-0.011499,0.249735,0,0);-ms-transform:matrix(0.262712,0.012097,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.262712,0.012097,-0.011499,0.249735,0,0);}
.m26_c01040{transform:matrix(0.264240,0.012696,-0.011998,0.249712,0,0);-ms-transform:matrix(0.264240,0.012696,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.264240,0.012696,-0.011998,0.249712,0,0);}
.m35_c01040{transform:matrix(0.267076,0.013367,-0.012497,0.249687,0,0);-ms-transform:matrix(0.267076,0.013367,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.267076,0.013367,-0.012497,0.249687,0,0);}
.m27_c01040{transform:matrix(0.268405,0.012896,-0.011998,0.249712,0,0);-ms-transform:matrix(0.268405,0.012896,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.268405,0.012896,-0.011998,0.249712,0,0);}
.m19_c01040{transform:matrix(0.274394,0.012635,-0.011499,0.249735,0,0);-ms-transform:matrix(0.274394,0.012635,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.274394,0.012635,-0.011499,0.249735,0,0);}
.m38_c01040{transform:matrix(0.274711,0.013749,-0.012497,0.249687,0,0);-ms-transform:matrix(0.274711,0.013749,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.274711,0.013749,-0.012497,0.249687,0,0);}
.md_c01040{transform:matrix(0.275213,0.012672,-0.011499,0.249735,0,0);-ms-transform:matrix(0.275213,0.012672,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.275213,0.012672,-0.011499,0.249735,0,0);}
.m24_c01040{transform:matrix(0.275717,0.013248,-0.011998,0.249712,0,0);-ms-transform:matrix(0.275717,0.013248,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.275717,0.013248,-0.011998,0.249712,0,0);}
.m14_c01040{transform:matrix(0.276162,0.012716,-0.011499,0.249735,0,0);-ms-transform:matrix(0.276162,0.012716,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.276162,0.012716,-0.011499,0.249735,0,0);}
.mc_c01040{transform:matrix(0.276237,0.012720,-0.011499,0.249735,0,0);-ms-transform:matrix(0.276237,0.012720,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.276237,0.012720,-0.011499,0.249735,0,0);}
.m8_c01040{transform:matrix(0.278140,0.012807,-0.011499,0.249735,0,0);-ms-transform:matrix(0.278140,0.012807,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.278140,0.012807,-0.011499,0.249735,0,0);}
.m9_c01040{transform:matrix(0.278205,0.012810,-0.011499,0.249735,0,0);-ms-transform:matrix(0.278205,0.012810,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.278205,0.012810,-0.011499,0.249735,0,0);}
.m10_c01040{transform:matrix(0.279504,0.012870,-0.011499,0.249735,0,0);-ms-transform:matrix(0.279504,0.012870,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.279504,0.012870,-0.011499,0.249735,0,0);}
.m42_c01040{transform:matrix(0.284260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284260,0.000000,0.000000,0.250000,0,0);}
.m1_c01040{transform:matrix(0.299876,0.013508,-0.011250,0.249747,0,0);-ms-transform:matrix(0.299876,0.013508,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.299876,0.013508,-0.011250,0.249747,0,0);}
.m41_c01040{transform:matrix(0.328025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328025,0.000000,0.000000,0.250000,0,0);}
.v0_c01040{vertical-align:0.000000px;}
.ls0_c01040{letter-spacing:0.000000px;}
.sc__c01040{text-shadow:none;}
.sc0_c01040{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__c01040{-webkit-text-stroke:0px transparent;}
.sc0_c01040{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01040{word-spacing:0.000000px;}
.fc0_c01040{color:transparent;}
.fs9_c01040{font-size:36.000000px;}
.fsa_c01040{font-size:72.000000px;}
.fs2_c01040{font-size:72.004212px;}
.fs4_c01040{font-size:72.010979px;}
.fs7_c01040{font-size:72.018034px;}
.fs1_c01040{font-size:78.015676px;}
.fs3_c01040{font-size:83.990129px;}
.fs6_c01040{font-size:89.956114px;}
.fsb_c01040{font-size:90.000000px;}
.fs0_c01040{font-size:96.001248px;}
.fs5_c01040{font-size:96.014639px;}
.fs8_c01040{font-size:102.039976px;}
.y0_c01040{bottom:0.000000px;}
.y44_c01040{bottom:507.462000px;}
.y43_c01040{bottom:579.556500px;}
.y42_c01040{bottom:685.533000px;}
.y41_c01040{bottom:761.414394px;}
.y40_c01040{bottom:762.329238px;}
.y3f_c01040{bottom:762.942396px;}
.y3e_c01040{bottom:764.168334px;}
.y3d_c01040{bottom:765.417582px;}
.y3c_c01040{bottom:767.534592px;}
.y3b_c01040{bottom:770.862000px;}
.y3a_c01040{bottom:859.008597px;}
.y39_c01040{bottom:873.034200px;}
.y38_c01040{bottom:875.778675px;}
.y37_c01040{bottom:878.538000px;}
.y36_c01040{bottom:881.860275px;}
.y35_c01040{bottom:883.471500px;}
.y2f_c01040{bottom:885.449445px;}
.y2e_c01040{bottom:889.097879px;}
.y2d_c01040{bottom:890.641784px;}
.y2c_c01040{bottom:891.833132px;}
.y2b_c01040{bottom:895.757429px;}
.y2a_c01040{bottom:896.969436px;}
.y29_c01040{bottom:905.325396px;}
.y28_c01040{bottom:909.632508px;}
.y27_c01040{bottom:913.317612px;}
.y26_c01040{bottom:914.899380px;}
.y25_c01040{bottom:919.648500px;}
.y34_c01040{bottom:922.126512px;}
.y33_c01040{bottom:923.161392px;}
.y32_c01040{bottom:926.715312px;}
.y31_c01040{bottom:927.386112px;}
.y30_c01040{bottom:931.242000px;}
.y24_c01040{bottom:940.108389px;}
.y23_c01040{bottom:941.532756px;}
.y22_c01040{bottom:945.208932px;}
.y21_c01040{bottom:947.554737px;}
.y20_c01040{bottom:951.794133px;}
.y1f_c01040{bottom:956.790789px;}
.y1e_c01040{bottom:958.219818px;}
.y1d_c01040{bottom:962.373723px;}
.y1c_c01040{bottom:966.069681px;}
.y1b_c01040{bottom:967.425000px;}
.y1a_c01040{bottom:978.076112px;}
.y19_c01040{bottom:979.474963px;}
.y18_c01040{bottom:981.711954px;}
.y17_c01040{bottom:983.987318px;}
.y16_c01040{bottom:985.316638px;}
.y15_c01040{bottom:990.291757px;}
.y14_c01040{bottom:991.646440px;}
.y13_c01040{bottom:992.511548px;}
.y12_c01040{bottom:993.914195px;}
.y11_c01040{bottom:998.417697px;}
.y10_c01040{bottom:1000.642267px;}
.yf_c01040{bottom:1001.986788px;}
.ye_c01040{bottom:1013.616075px;}
.yd_c01040{bottom:1018.665840px;}
.yc_c01040{bottom:1020.257325px;}
.yb_c01040{bottom:1022.316837px;}
.ya_c01040{bottom:1026.860211px;}
.y9_c01040{bottom:1031.929641px;}
.y8_c01040{bottom:1033.866816px;}
.y7_c01040{bottom:1035.477000px;}
.y6_c01040{bottom:1110.526407px;}
.y5_c01040{bottom:1113.749088px;}
.y4_c01040{bottom:1115.330882px;}
.y3_c01040{bottom:1120.804500px;}
.y2_c01040{bottom:1171.623157px;}
.y1_c01040{bottom:1172.617500px;}
.hb_c01040{height:36.000000px;}
.hc_c01040{height:72.000000px;}
.h4_c01040{height:72.004212px;}
.h6_c01040{height:72.010979px;}
.h9_c01040{height:72.018034px;}
.h3_c01040{height:78.015676px;}
.h5_c01040{height:83.990129px;}
.h8_c01040{height:89.956114px;}
.hd_c01040{height:90.000000px;}
.h2_c01040{height:96.001248px;}
.h7_c01040{height:96.014639px;}
.ha_c01040{height:102.039976px;}
.h0_c01040{height:1246.320000px;}
.h1_c01040{height:1246.500000px;}
.w1_c01040{width:887.250000px;}
.w0_c01040{width:887.490000px;}
.x0_c01040{left:0.000000px;}
.x37_c01040{left:101.074500px;}
.x29_c01040{left:146.919199px;}
.x2f_c01040{left:148.381500px;}
.x1b_c01040{left:149.488500px;}
.xf_c01040{left:151.107960px;}
.x2a_c01040{left:180.552919px;}
.x1c_c01040{left:181.725730px;}
.x10_c01040{left:183.862201px;}
.x38_c01040{left:219.910500px;}
.x11_c01040{left:238.076934px;}
.x7_c01040{left:260.494500px;}
.x1d_c01040{left:269.636731px;}
.x2b_c01040{left:289.423143px;}
.x8_c01040{left:295.463496px;}
.x2c_c01040{left:322.470589px;}
.x3_c01040{left:329.511000px;}
.x9_c01040{left:337.533884px;}
.x39_c01040{left:340.134000px;}
.x12_c01040{left:347.784826px;}
.x2d_c01040{left:365.293872px;}
.x1e_c01040{left:368.440329px;}
.x13_c01040{left:381.964486px;}
.x3a_c01040{left:383.917500px;}
.x30_c01040{left:400.647981px;}
.x14_c01040{left:403.035229px;}
.x3b_c01040{left:405.816000px;}
.x1_c01040{left:431.548500px;}
.x31_c01040{left:432.955641px;}
.x15_c01040{left:436.042786px;}
.x3c_c01040{left:438.489000px;}
.x4_c01040{left:441.105793px;}
.xa_c01040{left:447.628678px;}
.x2_c01040{left:453.622904px;}
.x2e_c01040{left:466.515855px;}
.x5_c01040{left:473.355012px;}
.x24_c01040{left:499.162500px;}
.x32_c01040{left:519.657000px;}
.x1f_c01040{left:521.279836px;}
.x6_c01040{left:539.058243px;}
.xb_c01040{left:546.298909px;}
.x33_c01040{left:551.849275px;}
.x16_c01040{left:557.264847px;}
.x17_c01040{left:589.656382px;}
.xc_c01040{left:591.026138px;}
.x25_c01040{left:598.003560px;}
.x34_c01040{left:618.228330px;}
.x20_c01040{left:622.116898px;}
.xd_c01040{left:625.589040px;}
.x26_c01040{left:630.924106px;}
.x18_c01040{left:645.104656px;}
.x35_c01040{left:673.359643px;}
.x21_c01040{left:677.913546px;}
.x19_c01040{left:699.589119px;}
.x27_c01040{left:707.620333px;}
.x36_c01040{left:728.194254px;}
.x1a_c01040{left:733.686361px;}
.xe_c01040{left:735.256762px;}
.x22_c01040{left:765.354018px;}
.x28_c01040{left:797.262102px;}
.x23_c01040{left:799.233604px;}
.x3e_c01040{left:871.020000px;}
.x3d_c01040{left:873.450000px;}
@media print{
.v0_c01040{vertical-align:0.000000pt;}
.ls0_c01040{letter-spacing:0.000000pt;}
.ws0_c01040{word-spacing:0.000000pt;}
.fs9_c01040{font-size:32.000000pt;}
.fsa_c01040{font-size:64.000000pt;}
.fs2_c01040{font-size:64.003744pt;}
.fs4_c01040{font-size:64.009759pt;}
.fs7_c01040{font-size:64.016030pt;}
.fs1_c01040{font-size:69.347268pt;}
.fs3_c01040{font-size:74.657893pt;}
.fs6_c01040{font-size:79.960990pt;}
.fsb_c01040{font-size:80.000000pt;}
.fs0_c01040{font-size:85.334443pt;}
.fs5_c01040{font-size:85.346346pt;}
.fs8_c01040{font-size:90.702201pt;}
.y0_c01040{bottom:0.000000pt;}
.y44_c01040{bottom:451.077333pt;}
.y43_c01040{bottom:515.161333pt;}
.y42_c01040{bottom:609.362667pt;}
.y41_c01040{bottom:676.812795pt;}
.y40_c01040{bottom:677.625989pt;}
.y3f_c01040{bottom:678.171019pt;}
.y3e_c01040{bottom:679.260741pt;}
.y3d_c01040{bottom:680.371184pt;}
.y3c_c01040{bottom:682.252971pt;}
.y3b_c01040{bottom:685.210667pt;}
.y3a_c01040{bottom:763.563197pt;}
.y39_c01040{bottom:776.030400pt;}
.y38_c01040{bottom:778.469933pt;}
.y37_c01040{bottom:780.922667pt;}
.y36_c01040{bottom:783.875800pt;}
.y35_c01040{bottom:785.308000pt;}
.y2f_c01040{bottom:787.066173pt;}
.y2e_c01040{bottom:790.309225pt;}
.y2d_c01040{bottom:791.681585pt;}
.y2c_c01040{bottom:792.740561pt;}
.y2b_c01040{bottom:796.228825pt;}
.y2a_c01040{bottom:797.306165pt;}
.y29_c01040{bottom:804.733685pt;}
.y28_c01040{bottom:808.562229pt;}
.y27_c01040{bottom:811.837877pt;}
.y26_c01040{bottom:813.243893pt;}
.y25_c01040{bottom:817.465333pt;}
.y34_c01040{bottom:819.668011pt;}
.y33_c01040{bottom:820.587904pt;}
.y32_c01040{bottom:823.746944pt;}
.y31_c01040{bottom:824.343211pt;}
.y30_c01040{bottom:827.770667pt;}
.y24_c01040{bottom:835.651901pt;}
.y23_c01040{bottom:836.918005pt;}
.y22_c01040{bottom:840.185717pt;}
.y21_c01040{bottom:842.270877pt;}
.y20_c01040{bottom:846.039229pt;}
.y1f_c01040{bottom:850.480701pt;}
.y1e_c01040{bottom:851.750949pt;}
.y1d_c01040{bottom:855.443309pt;}
.y1c_c01040{bottom:858.728605pt;}
.y1b_c01040{bottom:859.933333pt;}
.y1a_c01040{bottom:869.400988pt;}
.y19_c01040{bottom:870.644412pt;}
.y18_c01040{bottom:872.632848pt;}
.y17_c01040{bottom:874.655393pt;}
.y16_c01040{bottom:875.837012pt;}
.y15_c01040{bottom:880.259340pt;}
.y14_c01040{bottom:881.463503pt;}
.y13_c01040{bottom:882.232487pt;}
.y12_c01040{bottom:883.479284pt;}
.y11_c01040{bottom:887.482397pt;}
.y10_c01040{bottom:889.459793pt;}
.yf_c01040{bottom:890.654923pt;}
.ye_c01040{bottom:900.992067pt;}
.yd_c01040{bottom:905.480747pt;}
.yc_c01040{bottom:906.895400pt;}
.yb_c01040{bottom:908.726077pt;}
.ya_c01040{bottom:912.764632pt;}
.y9_c01040{bottom:917.270792pt;}
.y8_c01040{bottom:918.992725pt;}
.y7_c01040{bottom:920.424000pt;}
.y6_c01040{bottom:987.134584pt;}
.y5_c01040{bottom:989.999189pt;}
.y4_c01040{bottom:991.405228pt;}
.y3_c01040{bottom:996.270667pt;}
.y2_c01040{bottom:1041.442807pt;}
.y1_c01040{bottom:1042.326667pt;}
.hb_c01040{height:32.000000pt;}
.hc_c01040{height:64.000000pt;}
.h4_c01040{height:64.003744pt;}
.h6_c01040{height:64.009759pt;}
.h9_c01040{height:64.016030pt;}
.h3_c01040{height:69.347268pt;}
.h5_c01040{height:74.657893pt;}
.h8_c01040{height:79.960990pt;}
.hd_c01040{height:80.000000pt;}
.h2_c01040{height:85.334443pt;}
.h7_c01040{height:85.346346pt;}
.ha_c01040{height:90.702201pt;}
.h0_c01040{height:1107.840000pt;}
.h1_c01040{height:1108.000000pt;}
.w1_c01040{width:788.666667pt;}
.w0_c01040{width:788.880000pt;}
.x0_c01040{left:0.000000pt;}
.x37_c01040{left:89.844000pt;}
.x29_c01040{left:130.594844pt;}
.x2f_c01040{left:131.894667pt;}
.x1b_c01040{left:132.878667pt;}
.xf_c01040{left:134.318187pt;}
.x2a_c01040{left:160.491484pt;}
.x1c_c01040{left:161.533983pt;}
.x10_c01040{left:163.433068pt;}
.x38_c01040{left:195.476000pt;}
.x11_c01040{left:211.623941pt;}
.x7_c01040{left:231.550667pt;}
.x1d_c01040{left:239.677095pt;}
.x2b_c01040{left:257.265016pt;}
.x8_c01040{left:262.634219pt;}
.x2c_c01040{left:286.640524pt;}
.x3_c01040{left:292.898667pt;}
.x9_c01040{left:300.030119pt;}
.x39_c01040{left:302.341333pt;}
.x12_c01040{left:309.142068pt;}
.x2d_c01040{left:324.705664pt;}
.x1e_c01040{left:327.502515pt;}
.x13_c01040{left:339.523988pt;}
.x3a_c01040{left:341.260000pt;}
.x30_c01040{left:356.131539pt;}
.x14_c01040{left:358.253537pt;}
.x3b_c01040{left:360.725333pt;}
.x1_c01040{left:383.598667pt;}
.x31_c01040{left:384.849459pt;}
.x15_c01040{left:387.593588pt;}
.x3c_c01040{left:389.768000pt;}
.x4_c01040{left:392.094039pt;}
.xa_c01040{left:397.892159pt;}
.x2_c01040{left:403.220359pt;}
.x2e_c01040{left:414.680760pt;}
.x5_c01040{left:420.760011pt;}
.x24_c01040{left:443.700000pt;}
.x32_c01040{left:461.917333pt;}
.x1f_c01040{left:463.359855pt;}
.x6_c01040{left:479.162883pt;}
.xb_c01040{left:485.599031pt;}
.x33_c01040{left:490.532689pt;}
.x16_c01040{left:495.346531pt;}
.x17_c01040{left:524.139007pt;}
.xc_c01040{left:525.356567pt;}
.x25_c01040{left:531.558720pt;}
.x34_c01040{left:549.536293pt;}
.x20_c01040{left:552.992799pt;}
.xd_c01040{left:556.079147pt;}
.x26_c01040{left:560.821428pt;}
.x18_c01040{left:573.426361pt;}
.x35_c01040{left:598.541905pt;}
.x21_c01040{left:602.589819pt;}
.x19_c01040{left:621.856995pt;}
.x27_c01040{left:628.995852pt;}
.x36_c01040{left:647.283781pt;}
.x1a_c01040{left:652.165655pt;}
.xe_c01040{left:653.561567pt;}
.x22_c01040{left:680.314683pt;}
.x28_c01040{left:708.677424pt;}
.x23_c01040{left:710.429871pt;}
.x3e_c01040{left:774.240000pt;}
.x3d_c01040{left:776.400000pt;}
}





/* 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_c01041 {
    display:none;
  }
  .loading-indicator_c01041.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01041 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_c01041 { 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_c01041" -> "#page-container .classname_c01041")
 */
.pf_c01041 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01041 { /* 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_c01041.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01041 { /* 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_c01041 { /* 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_c01041 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01041 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01041 {overflow:visible;}
  }
}
.c_c01041 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01041 { /* 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_c01041:after { /* webkit #35443 */
  content: '';
}
.t_c01041:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01041 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 */
}
.__c01041 { /* 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_c01041 { /* info for Javascript */
  display:none;
}
.l_c01041 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01041 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01041 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01041: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_c01041 {
    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_c01041.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01041.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_c01041 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01041{font-family:sans-serif;visibility:hidden;}
.sc__c01041{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01041{-webkit-text-stroke:0px transparent;}
}
.y0_c01041{bottom:0.000000px;}
.h0_c01041{height:1246.320000px;}
.h1_c01041{height:1246.500000px;}
.w1_c01041{width:887.250000px;}
.w0_c01041{width:887.490000px;}
.x0_c01041{left:0.000000px;}
@media print{
.y0_c01041{bottom:0.000000pt;}
.h0_c01041{height:1107.840000pt;}
.h1_c01041{height:1108.000000pt;}
.w1_c01041{width:788.666667pt;}
.w0_c01041{width:788.880000pt;}
.x0_c01041{left:0.000000pt;}
}





/* 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_c01042 {
    display:none;
  }
  .loading-indicator_c01042.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01042 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_c01042 { 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_c01042" -> "#page-container .classname_c01042")
 */
.pf_c01042 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01042 { /* 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_c01042.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01042 { /* 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_c01042 { /* 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_c01042 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01042 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01042 {overflow:visible;}
  }
}
.c_c01042 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01042 { /* 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_c01042:after { /* webkit #35443 */
  content: '';
}
.t_c01042:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01042 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 */
}
.__c01042 { /* 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_c01042 { /* info for Javascript */
  display:none;
}
.l_c01042 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01042 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01042 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01042: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_c01042 {
    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_c01042.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01042.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_c01042 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01042{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01042;src:url('chunks/assets/font_dbd529e162d5851c7bfb6d27.woff2')format("woff");}.ff1_c01042{font-family:ff1_c01042;line-height:1.000000;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;}
.m4_c01042{transform:matrix(0.132256,0.001058,-0.002000,0.249992,0,0);-ms-transform:matrix(0.132256,0.001058,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.132256,0.001058,-0.002000,0.249992,0,0);}
.m1_c01042{transform:matrix(0.137396,0.001099,-0.002000,0.249992,0,0);-ms-transform:matrix(0.137396,0.001099,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.137396,0.001099,-0.002000,0.249992,0,0);}
.m2_c01042{transform:matrix(0.139241,0.001114,-0.002000,0.249992,0,0);-ms-transform:matrix(0.139241,0.001114,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.139241,0.001114,-0.002000,0.249992,0,0);}
.m3_c01042{transform:matrix(0.140231,0.001122,-0.002000,0.249992,0,0);-ms-transform:matrix(0.140231,0.001122,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.140231,0.001122,-0.002000,0.249992,0,0);}
.m0_c01042{transform:matrix(0.143055,0.001144,-0.002000,0.249992,0,0);-ms-transform:matrix(0.143055,0.001144,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.143055,0.001144,-0.002000,0.249992,0,0);}
.m7_c01042{transform:matrix(0.144245,0.001154,-0.002000,0.249992,0,0);-ms-transform:matrix(0.144245,0.001154,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.144245,0.001154,-0.002000,0.249992,0,0);}
.m6_c01042{transform:matrix(0.151945,0.001216,-0.002000,0.249992,0,0);-ms-transform:matrix(0.151945,0.001216,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.151945,0.001216,-0.002000,0.249992,0,0);}
.m5_c01042{transform:matrix(0.152975,0.001224,-0.002000,0.249992,0,0);-ms-transform:matrix(0.152975,0.001224,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.152975,0.001224,-0.002000,0.249992,0,0);}
.m9_c01042{transform:matrix(0.271280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271280,0.000000,0.000000,0.250000,0,0);}
.m8_c01042{transform:matrix(0.341210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341210,0.000000,0.000000,0.250000,0,0);}
.v0_c01042{vertical-align:0.000000px;}
.ls0_c01042{letter-spacing:0.000000px;}
.sc__c01042{text-shadow:none;}
.sc0_c01042{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__c01042{-webkit-text-stroke:0px transparent;}
.sc0_c01042{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01042{word-spacing:0.000000px;}
.fc0_c01042{color:transparent;}
.fs1_c01042{font-size:36.000000px;}
.fs2_c01042{font-size:60.000000px;}
.fs0_c01042{font-size:132.004224px;}
.y0_c01042{bottom:0.000000px;}
.ya_c01042{bottom:508.003500px;}
.y9_c01042{bottom:544.723500px;}
.y8_c01042{bottom:955.186152px;}
.y7_c01042{bottom:956.334756px;}
.y6_c01042{bottom:957.296064px;}
.y5_c01042{bottom:957.483792px;}
.y4_c01042{bottom:957.916068px;}
.y3_c01042{bottom:958.797336px;}
.y2_c01042{bottom:959.229300px;}
.y1_c01042{bottom:959.851500px;}
.h3_c01042{height:36.000000px;}
.h4_c01042{height:60.000000px;}
.h2_c01042{height:132.004224px;}
.h0_c01042{height:1246.320000px;}
.h1_c01042{height:1246.500000px;}
.w1_c01042{width:887.250000px;}
.w0_c01042{width:887.490000px;}
.x0_c01042{left:0.000000px;}
.x1_c01042{left:164.289000px;}
.x2_c01042{left:242.064000px;}
.x3_c01042{left:296.059500px;}
.x4_c01042{left:406.218000px;}
.x5_c01042{left:460.252500px;}
.x6_c01042{left:483.718500px;}
.x7_c01042{left:603.882000px;}
.x8_c01042{left:747.457500px;}
.x9_c01042{left:872.370000px;}
@media print{
.v0_c01042{vertical-align:0.000000pt;}
.ls0_c01042{letter-spacing:0.000000pt;}
.ws0_c01042{word-spacing:0.000000pt;}
.fs1_c01042{font-size:32.000000pt;}
.fs2_c01042{font-size:53.333333pt;}
.fs0_c01042{font-size:117.337088pt;}
.y0_c01042{bottom:0.000000pt;}
.ya_c01042{bottom:451.558667pt;}
.y9_c01042{bottom:484.198667pt;}
.y8_c01042{bottom:849.054357pt;}
.y7_c01042{bottom:850.075339pt;}
.y6_c01042{bottom:850.929835pt;}
.y5_c01042{bottom:851.096704pt;}
.y4_c01042{bottom:851.480949pt;}
.y3_c01042{bottom:852.264299pt;}
.y2_c01042{bottom:852.648267pt;}
.y1_c01042{bottom:853.201333pt;}
.h3_c01042{height:32.000000pt;}
.h4_c01042{height:53.333333pt;}
.h2_c01042{height:117.337088pt;}
.h0_c01042{height:1107.840000pt;}
.h1_c01042{height:1108.000000pt;}
.w1_c01042{width:788.666667pt;}
.w0_c01042{width:788.880000pt;}
.x0_c01042{left:0.000000pt;}
.x1_c01042{left:146.034667pt;}
.x2_c01042{left:215.168000pt;}
.x3_c01042{left:263.164000pt;}
.x4_c01042{left:361.082667pt;}
.x5_c01042{left:409.113333pt;}
.x6_c01042{left:429.972000pt;}
.x7_c01042{left:536.784000pt;}
.x8_c01042{left:664.406667pt;}
.x9_c01042{left:775.440000pt;}
}





/* 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_c01043 {
    display:none;
  }
  .loading-indicator_c01043.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01043 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_c01043 { 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_c01043" -> "#page-container .classname_c01043")
 */
.pf_c01043 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01043 { /* 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_c01043.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01043 { /* 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_c01043 { /* 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_c01043 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01043 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01043 {overflow:visible;}
  }
}
.c_c01043 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01043 { /* 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_c01043:after { /* webkit #35443 */
  content: '';
}
.t_c01043:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01043 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 */
}
.__c01043 { /* 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_c01043 { /* info for Javascript */
  display:none;
}
.l_c01043 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01043 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01043 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01043: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_c01043 {
    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_c01043.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01043.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_c01043 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01043{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01043;src:url('chunks/assets/font_9f1332c6c654e944e53d568b.woff2')format("woff");}.ff1_c01043{font-family:ff1_c01043;line-height:1.000000;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;}
.m0_c01043{transform:matrix(0.638905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.638905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.638905,0.000000,0.000000,0.250000,0,0);}
.v0_c01043{vertical-align:0.000000px;}
.ls0_c01043{letter-spacing:0.000000px;}
.sc__c01043{text-shadow:none;}
.sc0_c01043{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__c01043{-webkit-text-stroke:0px transparent;}
.sc0_c01043{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01043{word-spacing:0.000000px;}
.fc0_c01043{color:transparent;}
.fs0_c01043{font-size:18.000000px;}
.y0_c01043{bottom:0.000000px;}
.y1_c01043{bottom:915.438000px;}
.h2_c01043{height:18.000000px;}
.h0_c01043{height:1246.320000px;}
.h1_c01043{height:1246.500000px;}
.w1_c01043{width:887.250000px;}
.w0_c01043{width:887.490000px;}
.x0_c01043{left:0.000000px;}
.x1_c01043{left:441.720000px;}
@media print{
.v0_c01043{vertical-align:0.000000pt;}
.ls0_c01043{letter-spacing:0.000000pt;}
.ws0_c01043{word-spacing:0.000000pt;}
.fs0_c01043{font-size:16.000000pt;}
.y0_c01043{bottom:0.000000pt;}
.y1_c01043{bottom:813.722667pt;}
.h2_c01043{height:16.000000pt;}
.h0_c01043{height:1107.840000pt;}
.h1_c01043{height:1108.000000pt;}
.w1_c01043{width:788.666667pt;}
.w0_c01043{width:788.880000pt;}
.x0_c01043{left:0.000000pt;}
.x1_c01043{left:392.640000pt;}
}





/* 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_c01044 {
    display:none;
  }
  .loading-indicator_c01044.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01044 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_c01044 { 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_c01044" -> "#page-container .classname_c01044")
 */
.pf_c01044 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01044 { /* 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_c01044.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01044 { /* 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_c01044 { /* 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_c01044 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01044 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01044 {overflow:visible;}
  }
}
.c_c01044 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01044 { /* 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_c01044:after { /* webkit #35443 */
  content: '';
}
.t_c01044:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01044 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 */
}
.__c01044 { /* 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_c01044 { /* info for Javascript */
  display:none;
}
.l_c01044 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01044 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01044 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01044: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_c01044 {
    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_c01044.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01044.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_c01044 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01044{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01044;src:url('chunks/assets/font_b11a17f404e7258299fdf971.woff2')format("woff");}.ff1_c01044{font-family:ff1_c01044;line-height:1.000000;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;}
.m8e_c01044{transform:matrix(0.009542,0.000239,-0.006248,0.249922,0,0);-ms-transform:matrix(0.009542,0.000239,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.009542,0.000239,-0.006248,0.249922,0,0);}
.m13_c01044{transform:matrix(0.077200,0.001544,-0.004999,0.249950,0,0);-ms-transform:matrix(0.077200,0.001544,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.077200,0.001544,-0.004999,0.249950,0,0);}
.m14_c01044{transform:matrix(0.089427,0.001789,-0.004999,0.249950,0,0);-ms-transform:matrix(0.089427,0.001789,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.089427,0.001789,-0.004999,0.249950,0,0);}
.m12_c01044{transform:matrix(0.094851,0.001897,-0.004999,0.249950,0,0);-ms-transform:matrix(0.094851,0.001897,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.094851,0.001897,-0.004999,0.249950,0,0);}
.m8f_c01044{transform:matrix(0.127730,0.003193,-0.006248,0.249922,0,0);-ms-transform:matrix(0.127730,0.003193,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.127730,0.003193,-0.006248,0.249922,0,0);}
.m8c_c01044{transform:matrix(0.146849,0.003671,-0.006248,0.249922,0,0);-ms-transform:matrix(0.146849,0.003671,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.146849,0.003671,-0.006248,0.249922,0,0);}
.m64_c01044{transform:matrix(0.156795,0.003763,-0.005998,0.249928,0,0);-ms-transform:matrix(0.156795,0.003763,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.156795,0.003763,-0.005998,0.249928,0,0);}
.m7e_c01044{transform:matrix(0.158031,0.003951,-0.006248,0.249922,0,0);-ms-transform:matrix(0.158031,0.003951,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.158031,0.003951,-0.006248,0.249922,0,0);}
.m60_c01044{transform:matrix(0.159494,0.003828,-0.005998,0.249928,0,0);-ms-transform:matrix(0.159494,0.003828,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.159494,0.003828,-0.005998,0.249928,0,0);}
.m95_c01044{transform:matrix(0.161160,0.004029,-0.006248,0.249922,0,0);-ms-transform:matrix(0.161160,0.004029,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.161160,0.004029,-0.006248,0.249922,0,0);}
.m8a_c01044{transform:matrix(0.164154,0.004104,-0.006248,0.249922,0,0);-ms-transform:matrix(0.164154,0.004104,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.164154,0.004104,-0.006248,0.249922,0,0);}
.m90_c01044{transform:matrix(0.173296,0.004332,-0.006248,0.249922,0,0);-ms-transform:matrix(0.173296,0.004332,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.173296,0.004332,-0.006248,0.249922,0,0);}
.m66_c01044{transform:matrix(0.175210,0.004205,-0.005998,0.249928,0,0);-ms-transform:matrix(0.175210,0.004205,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.175210,0.004205,-0.005998,0.249928,0,0);}
.m5c_c01044{transform:matrix(0.178714,0.004289,-0.005998,0.249928,0,0);-ms-transform:matrix(0.178714,0.004289,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.178714,0.004289,-0.005998,0.249928,0,0);}
.m5b_c01044{transform:matrix(0.178873,0.004293,-0.005998,0.249928,0,0);-ms-transform:matrix(0.178873,0.004293,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.178873,0.004293,-0.005998,0.249928,0,0);}
.m5f_c01044{transform:matrix(0.179623,0.004311,-0.005998,0.249928,0,0);-ms-transform:matrix(0.179623,0.004311,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.179623,0.004311,-0.005998,0.249928,0,0);}
.m52_c01044{transform:matrix(0.181093,0.004346,-0.005998,0.249928,0,0);-ms-transform:matrix(0.181093,0.004346,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.181093,0.004346,-0.005998,0.249928,0,0);}
.m94_c01044{transform:matrix(0.181098,0.004527,-0.006248,0.249922,0,0);-ms-transform:matrix(0.181098,0.004527,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.181098,0.004527,-0.006248,0.249922,0,0);}
.m62_c01044{transform:matrix(0.181448,0.004355,-0.005998,0.249928,0,0);-ms-transform:matrix(0.181448,0.004355,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.181448,0.004355,-0.005998,0.249928,0,0);}
.m8b_c01044{transform:matrix(0.183448,0.004586,-0.006248,0.249922,0,0);-ms-transform:matrix(0.183448,0.004586,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.183448,0.004586,-0.006248,0.249922,0,0);}
.m98_c01044{transform:matrix(0.184402,0.004610,-0.006248,0.249922,0,0);-ms-transform:matrix(0.184402,0.004610,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.184402,0.004610,-0.006248,0.249922,0,0);}
.m5a_c01044{transform:matrix(0.189695,0.004553,-0.005998,0.249928,0,0);-ms-transform:matrix(0.189695,0.004553,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.189695,0.004553,-0.005998,0.249928,0,0);}
.m8d_c01044{transform:matrix(0.190046,0.004751,-0.006248,0.249922,0,0);-ms-transform:matrix(0.190046,0.004751,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.190046,0.004751,-0.006248,0.249922,0,0);}
.md_c01044{transform:matrix(0.192057,0.003841,-0.004999,0.249950,0,0);-ms-transform:matrix(0.192057,0.003841,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.192057,0.003841,-0.004999,0.249950,0,0);}
.m93_c01044{transform:matrix(0.194989,0.004875,-0.006248,0.249922,0,0);-ms-transform:matrix(0.194989,0.004875,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.194989,0.004875,-0.006248,0.249922,0,0);}
.m5d_c01044{transform:matrix(0.197108,0.004731,-0.005998,0.249928,0,0);-ms-transform:matrix(0.197108,0.004731,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.197108,0.004731,-0.005998,0.249928,0,0);}
.m61_c01044{transform:matrix(0.200717,0.004817,-0.005998,0.249928,0,0);-ms-transform:matrix(0.200717,0.004817,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.200717,0.004817,-0.005998,0.249928,0,0);}
.m56_c01044{transform:matrix(0.201707,0.004841,-0.005998,0.249928,0,0);-ms-transform:matrix(0.201707,0.004841,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.201707,0.004841,-0.005998,0.249928,0,0);}
.m51_c01044{transform:matrix(0.202322,0.004856,-0.005998,0.249928,0,0);-ms-transform:matrix(0.202322,0.004856,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.202322,0.004856,-0.005998,0.249928,0,0);}
.m45_c01044{transform:matrix(0.204131,0.004899,-0.005998,0.249928,0,0);-ms-transform:matrix(0.204131,0.004899,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.204131,0.004899,-0.005998,0.249928,0,0);}
.m48_c01044{transform:matrix(0.204286,0.004903,-0.005998,0.249928,0,0);-ms-transform:matrix(0.204286,0.004903,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.204286,0.004903,-0.005998,0.249928,0,0);}
.m3c_c01044{transform:matrix(0.205664,0.005759,-0.006997,0.249902,0,0);-ms-transform:matrix(0.205664,0.005759,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.205664,0.005759,-0.006997,0.249902,0,0);}
.m54_c01044{transform:matrix(0.206161,0.004948,-0.005998,0.249928,0,0);-ms-transform:matrix(0.206161,0.004948,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.206161,0.004948,-0.005998,0.249928,0,0);}
.m4b_c01044{transform:matrix(0.207195,0.004973,-0.005998,0.249928,0,0);-ms-transform:matrix(0.207195,0.004973,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.207195,0.004973,-0.005998,0.249928,0,0);}
.m43_c01044{transform:matrix(0.208120,0.004995,-0.005998,0.249928,0,0);-ms-transform:matrix(0.208120,0.004995,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.208120,0.004995,-0.005998,0.249928,0,0);}
.m65_c01044{transform:matrix(0.209590,0.005030,-0.005998,0.249928,0,0);-ms-transform:matrix(0.209590,0.005030,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.209590,0.005030,-0.005998,0.249928,0,0);}
.m63_c01044{transform:matrix(0.210154,0.005044,-0.005998,0.249928,0,0);-ms-transform:matrix(0.210154,0.005044,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.210154,0.005044,-0.005998,0.249928,0,0);}
.m78_c01044{transform:matrix(0.210229,0.005256,-0.006248,0.249922,0,0);-ms-transform:matrix(0.210229,0.005256,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.210229,0.005256,-0.006248,0.249922,0,0);}
.m58_c01044{transform:matrix(0.210334,0.005048,-0.005998,0.249928,0,0);-ms-transform:matrix(0.210334,0.005048,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.210334,0.005048,-0.005998,0.249928,0,0);}
.m6d_c01044{transform:matrix(0.214833,0.005371,-0.006248,0.249922,0,0);-ms-transform:matrix(0.214833,0.005371,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.214833,0.005371,-0.006248,0.249922,0,0);}
.m57_c01044{transform:matrix(0.215023,0.005161,-0.005998,0.249928,0,0);-ms-transform:matrix(0.215023,0.005161,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.215023,0.005161,-0.005998,0.249928,0,0);}
.m32_c01044{transform:matrix(0.215953,0.005183,-0.005998,0.249928,0,0);-ms-transform:matrix(0.215953,0.005183,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.215953,0.005183,-0.005998,0.249928,0,0);}
.m4f_c01044{transform:matrix(0.216933,0.005206,-0.005998,0.249928,0,0);-ms-transform:matrix(0.216933,0.005206,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.216933,0.005206,-0.005998,0.249928,0,0);}
.m3a_c01044{transform:matrix(0.217930,0.006102,-0.006997,0.249902,0,0);-ms-transform:matrix(0.217930,0.006102,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.217930,0.006102,-0.006997,0.249902,0,0);}
.m5e_c01044{transform:matrix(0.219402,0.005266,-0.005998,0.249928,0,0);-ms-transform:matrix(0.219402,0.005266,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.219402,0.005266,-0.005998,0.249928,0,0);}
.m33_c01044{transform:matrix(0.220152,0.005284,-0.005998,0.249928,0,0);-ms-transform:matrix(0.220152,0.005284,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.220152,0.005284,-0.005998,0.249928,0,0);}
.m72_c01044{transform:matrix(0.220951,0.005524,-0.006248,0.249922,0,0);-ms-transform:matrix(0.220951,0.005524,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.220951,0.005524,-0.006248,0.249922,0,0);}
.m75_c01044{transform:matrix(0.221306,0.005533,-0.006248,0.249922,0,0);-ms-transform:matrix(0.221306,0.005533,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.221306,0.005533,-0.006248,0.249922,0,0);}
.m2a_c01044{transform:matrix(0.223206,0.005357,-0.005998,0.249928,0,0);-ms-transform:matrix(0.223206,0.005357,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.223206,0.005357,-0.005998,0.249928,0,0);}
.m6b_c01044{transform:matrix(0.223535,0.005588,-0.006248,0.249922,0,0);-ms-transform:matrix(0.223535,0.005588,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.223535,0.005588,-0.006248,0.249922,0,0);}
.m92_c01044{transform:matrix(0.223540,0.005589,-0.006248,0.249922,0,0);-ms-transform:matrix(0.223540,0.005589,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.223540,0.005589,-0.006248,0.249922,0,0);}
.m30_c01044{transform:matrix(0.223681,0.005368,-0.005998,0.249928,0,0);-ms-transform:matrix(0.223681,0.005368,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.223681,0.005368,-0.005998,0.249928,0,0);}
.m1b_c01044{transform:matrix(0.223700,0.004474,-0.004999,0.249950,0,0);-ms-transform:matrix(0.223700,0.004474,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.223700,0.004474,-0.004999,0.249950,0,0);}
.m4a_c01044{transform:matrix(0.224700,0.005393,-0.005998,0.249928,0,0);-ms-transform:matrix(0.224700,0.005393,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.224700,0.005393,-0.005998,0.249928,0,0);}
.m4_c01044{transform:matrix(0.226230,0.004525,-0.004999,0.249950,0,0);-ms-transform:matrix(0.226230,0.004525,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.226230,0.004525,-0.004999,0.249950,0,0);}
.m59_c01044{transform:matrix(0.227070,0.005450,-0.005998,0.249928,0,0);-ms-transform:matrix(0.227070,0.005450,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.227070,0.005450,-0.005998,0.249928,0,0);}
.m4e_c01044{transform:matrix(0.227684,0.005464,-0.005998,0.249928,0,0);-ms-transform:matrix(0.227684,0.005464,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.227684,0.005464,-0.005998,0.249928,0,0);}
.m34_c01044{transform:matrix(0.228934,0.005494,-0.005998,0.249928,0,0);-ms-transform:matrix(0.228934,0.005494,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.228934,0.005494,-0.005998,0.249928,0,0);}
.m53_c01044{transform:matrix(0.228974,0.005495,-0.005998,0.249928,0,0);-ms-transform:matrix(0.228974,0.005495,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.228974,0.005495,-0.005998,0.249928,0,0);}
.m91_c01044{transform:matrix(0.229203,0.005730,-0.006248,0.249922,0,0);-ms-transform:matrix(0.229203,0.005730,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.229203,0.005730,-0.006248,0.249922,0,0);}
.m7c_c01044{transform:matrix(0.229393,0.005735,-0.006248,0.249922,0,0);-ms-transform:matrix(0.229393,0.005735,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.229393,0.005735,-0.006248,0.249922,0,0);}
.m36_c01044{transform:matrix(0.229435,0.006424,-0.006997,0.249902,0,0);-ms-transform:matrix(0.229435,0.006424,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.229435,0.006424,-0.006997,0.249902,0,0);}
.m9_c01044{transform:matrix(0.229789,0.004596,-0.004999,0.249950,0,0);-ms-transform:matrix(0.229789,0.004596,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.229789,0.004596,-0.004999,0.249950,0,0);}
.m40_c01044{transform:matrix(0.230565,0.006456,-0.006997,0.249902,0,0);-ms-transform:matrix(0.230565,0.006456,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.230565,0.006456,-0.006997,0.249902,0,0);}
.m2d_c01044{transform:matrix(0.230849,0.005540,-0.005998,0.249928,0,0);-ms-transform:matrix(0.230849,0.005540,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.230849,0.005540,-0.005998,0.249928,0,0);}
.m55_c01044{transform:matrix(0.230943,0.005543,-0.005998,0.249928,0,0);-ms-transform:matrix(0.230943,0.005543,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.230943,0.005543,-0.005998,0.249928,0,0);}
.m3e_c01044{transform:matrix(0.231439,0.006480,-0.006997,0.249902,0,0);-ms-transform:matrix(0.231439,0.006480,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.231439,0.006480,-0.006997,0.249902,0,0);}
.m27_c01044{transform:matrix(0.234777,0.005635,-0.005998,0.249928,0,0);-ms-transform:matrix(0.234777,0.005635,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.234777,0.005635,-0.005998,0.249928,0,0);}
.m6c_c01044{transform:matrix(0.235681,0.005892,-0.006248,0.249922,0,0);-ms-transform:matrix(0.235681,0.005892,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.235681,0.005892,-0.006248,0.249922,0,0);}
.m47_c01044{transform:matrix(0.237971,0.005711,-0.005998,0.249928,0,0);-ms-transform:matrix(0.237971,0.005711,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.237971,0.005711,-0.005998,0.249928,0,0);}
.m1d_c01044{transform:matrix(0.238147,0.004763,-0.004999,0.249950,0,0);-ms-transform:matrix(0.238147,0.004763,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.238147,0.004763,-0.004999,0.249950,0,0);}
.m6f_c01044{transform:matrix(0.238460,0.005962,-0.006248,0.249922,0,0);-ms-transform:matrix(0.238460,0.005962,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.238460,0.005962,-0.006248,0.249922,0,0);}
.m76_c01044{transform:matrix(0.238780,0.005970,-0.006248,0.249922,0,0);-ms-transform:matrix(0.238780,0.005970,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.238780,0.005970,-0.006248,0.249922,0,0);}
.m2f_c01044{transform:matrix(0.240471,0.005771,-0.005998,0.249928,0,0);-ms-transform:matrix(0.240471,0.005771,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.240471,0.005771,-0.005998,0.249928,0,0);}
.m6_c01044{transform:matrix(0.240782,0.004816,-0.004999,0.249950,0,0);-ms-transform:matrix(0.240782,0.004816,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.240782,0.004816,-0.004999,0.249950,0,0);}
.m19_c01044{transform:matrix(0.242027,0.004841,-0.004999,0.249950,0,0);-ms-transform:matrix(0.242027,0.004841,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.242027,0.004841,-0.004999,0.249950,0,0);}
.m39_c01044{transform:matrix(0.242235,0.006783,-0.006997,0.249902,0,0);-ms-transform:matrix(0.242235,0.006783,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.242235,0.006783,-0.006997,0.249902,0,0);}
.m4c_c01044{transform:matrix(0.242950,0.005831,-0.005998,0.249928,0,0);-ms-transform:matrix(0.242950,0.005831,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.242950,0.005831,-0.005998,0.249928,0,0);}
.m49_c01044{transform:matrix(0.243165,0.005836,-0.005998,0.249928,0,0);-ms-transform:matrix(0.243165,0.005836,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.243165,0.005836,-0.005998,0.249928,0,0);}
.m71_c01044{transform:matrix(0.243419,0.006085,-0.006248,0.249922,0,0);-ms-transform:matrix(0.243419,0.006085,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.243419,0.006085,-0.006248,0.249922,0,0);}
.m50_c01044{transform:matrix(0.243580,0.005846,-0.005998,0.249928,0,0);-ms-transform:matrix(0.243580,0.005846,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.243580,0.005846,-0.005998,0.249928,0,0);}
.m97_c01044{transform:matrix(0.243979,0.006099,-0.006248,0.249922,0,0);-ms-transform:matrix(0.243979,0.006099,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.243979,0.006099,-0.006248,0.249922,0,0);}
.m4d_c01044{transform:matrix(0.244170,0.005860,-0.005998,0.249928,0,0);-ms-transform:matrix(0.244170,0.005860,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.244170,0.005860,-0.005998,0.249928,0,0);}
.m42_c01044{transform:matrix(0.244929,0.006858,-0.006997,0.249902,0,0);-ms-transform:matrix(0.244929,0.006858,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.244929,0.006858,-0.006997,0.249902,0,0);}
.m7a_c01044{transform:matrix(0.245598,0.006140,-0.006248,0.249922,0,0);-ms-transform:matrix(0.245598,0.006140,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.245598,0.006140,-0.006248,0.249922,0,0);}
.m82_c01044{transform:matrix(0.246298,0.006157,-0.006248,0.249922,0,0);-ms-transform:matrix(0.246298,0.006157,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.246298,0.006157,-0.006248,0.249922,0,0);}
.m38_c01044{transform:matrix(0.247203,0.006922,-0.006997,0.249902,0,0);-ms-transform:matrix(0.247203,0.006922,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.247203,0.006922,-0.006997,0.249902,0,0);}
.m88_c01044{transform:matrix(0.249957,0.006249,-0.006248,0.249922,0,0);-ms-transform:matrix(0.249957,0.006249,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.249957,0.006249,-0.006248,0.249922,0,0);}
.m69_c01044{transform:matrix(0.250077,0.006252,-0.006248,0.249922,0,0);-ms-transform:matrix(0.250077,0.006252,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.250077,0.006252,-0.006248,0.249922,0,0);}
.m2e_c01044{transform:matrix(0.251473,0.006035,-0.005998,0.249928,0,0);-ms-transform:matrix(0.251473,0.006035,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.251473,0.006035,-0.005998,0.249928,0,0);}
.m2c_c01044{transform:matrix(0.251488,0.006036,-0.005998,0.249928,0,0);-ms-transform:matrix(0.251488,0.006036,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.251488,0.006036,-0.005998,0.249928,0,0);}
.m35_c01044{transform:matrix(0.251673,0.006040,-0.005998,0.249928,0,0);-ms-transform:matrix(0.251673,0.006040,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.251673,0.006040,-0.005998,0.249928,0,0);}
.m46_c01044{transform:matrix(0.253142,0.006075,-0.005998,0.249928,0,0);-ms-transform:matrix(0.253142,0.006075,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.253142,0.006075,-0.005998,0.249928,0,0);}
.m23_c01044{transform:matrix(0.253252,0.006078,-0.005998,0.249928,0,0);-ms-transform:matrix(0.253252,0.006078,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.253252,0.006078,-0.005998,0.249928,0,0);}
.m44_c01044{transform:matrix(0.253702,0.006089,-0.005998,0.249928,0,0);-ms-transform:matrix(0.253702,0.006089,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.253702,0.006089,-0.005998,0.249928,0,0);}
.m3f_c01044{transform:matrix(0.253950,0.007111,-0.006997,0.249902,0,0);-ms-transform:matrix(0.253950,0.007111,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.253950,0.007111,-0.006997,0.249902,0,0);}
.m31_c01044{transform:matrix(0.255256,0.006126,-0.005998,0.249928,0,0);-ms-transform:matrix(0.255256,0.006126,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.255256,0.006126,-0.005998,0.249928,0,0);}
.m3b_c01044{transform:matrix(0.256045,0.007169,-0.006997,0.249902,0,0);-ms-transform:matrix(0.256045,0.007169,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.256045,0.007169,-0.006997,0.249902,0,0);}
.m77_c01044{transform:matrix(0.258149,0.006454,-0.006248,0.249922,0,0);-ms-transform:matrix(0.258149,0.006454,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.258149,0.006454,-0.006248,0.249922,0,0);}
.m86_c01044{transform:matrix(0.260139,0.006503,-0.006248,0.249922,0,0);-ms-transform:matrix(0.260139,0.006503,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.260139,0.006503,-0.006248,0.249922,0,0);}
.m24_c01044{transform:matrix(0.260965,0.006263,-0.005998,0.249928,0,0);-ms-transform:matrix(0.260965,0.006263,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.260965,0.006263,-0.005998,0.249928,0,0);}
.m68_c01044{transform:matrix(0.261858,0.006546,-0.006248,0.249922,0,0);-ms-transform:matrix(0.261858,0.006546,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.261858,0.006546,-0.006248,0.249922,0,0);}
.m67_c01044{transform:matrix(0.262788,0.006570,-0.006248,0.249922,0,0);-ms-transform:matrix(0.262788,0.006570,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.262788,0.006570,-0.006248,0.249922,0,0);}
.m73_c01044{transform:matrix(0.263903,0.006598,-0.006248,0.249922,0,0);-ms-transform:matrix(0.263903,0.006598,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.263903,0.006598,-0.006248,0.249922,0,0);}
.m74_c01044{transform:matrix(0.266337,0.006658,-0.006248,0.249922,0,0);-ms-transform:matrix(0.266337,0.006658,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.266337,0.006658,-0.006248,0.249922,0,0);}
.m26_c01044{transform:matrix(0.267098,0.006410,-0.005998,0.249928,0,0);-ms-transform:matrix(0.267098,0.006410,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.267098,0.006410,-0.005998,0.249928,0,0);}
.m7d_c01044{transform:matrix(0.267311,0.006683,-0.006248,0.249922,0,0);-ms-transform:matrix(0.267311,0.006683,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.267311,0.006683,-0.006248,0.249922,0,0);}
.m37_c01044{transform:matrix(0.268070,0.007506,-0.006997,0.249902,0,0);-ms-transform:matrix(0.268070,0.007506,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.268070,0.007506,-0.006997,0.249902,0,0);}
.m25_c01044{transform:matrix(0.269003,0.006456,-0.005998,0.249928,0,0);-ms-transform:matrix(0.269003,0.006456,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.269003,0.006456,-0.005998,0.249928,0,0);}
.m2b_c01044{transform:matrix(0.269617,0.006471,-0.005998,0.249928,0,0);-ms-transform:matrix(0.269617,0.006471,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.269617,0.006471,-0.005998,0.249928,0,0);}
.m29_c01044{transform:matrix(0.269677,0.006472,-0.005998,0.249928,0,0);-ms-transform:matrix(0.269677,0.006472,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.269677,0.006472,-0.005998,0.249928,0,0);}
.m83_c01044{transform:matrix(0.270051,0.006751,-0.006248,0.249922,0,0);-ms-transform:matrix(0.270051,0.006751,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.270051,0.006751,-0.006248,0.249922,0,0);}
.m70_c01044{transform:matrix(0.271020,0.006776,-0.006248,0.249922,0,0);-ms-transform:matrix(0.271020,0.006776,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.271020,0.006776,-0.006248,0.249922,0,0);}
.m89_c01044{transform:matrix(0.272130,0.006803,-0.006248,0.249922,0,0);-ms-transform:matrix(0.272130,0.006803,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.272130,0.006803,-0.006248,0.249922,0,0);}
.m6e_c01044{transform:matrix(0.273225,0.006831,-0.006248,0.249922,0,0);-ms-transform:matrix(0.273225,0.006831,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.273225,0.006831,-0.006248,0.249922,0,0);}
.m8_c01044{transform:matrix(0.275750,0.005515,-0.004999,0.249950,0,0);-ms-transform:matrix(0.275750,0.005515,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.275750,0.005515,-0.004999,0.249950,0,0);}
.m81_c01044{transform:matrix(0.277828,0.006946,-0.006248,0.249922,0,0);-ms-transform:matrix(0.277828,0.006946,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.277828,0.006946,-0.006248,0.249922,0,0);}
.m79_c01044{transform:matrix(0.277888,0.006947,-0.006248,0.249922,0,0);-ms-transform:matrix(0.277888,0.006947,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.277888,0.006947,-0.006248,0.249922,0,0);}
.m41_c01044{transform:matrix(0.278431,0.007796,-0.006997,0.249902,0,0);-ms-transform:matrix(0.278431,0.007796,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.278431,0.007796,-0.006997,0.249902,0,0);}
.m9b_c01044{transform:matrix(0.279580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279580,0.000000,0.000000,0.250000,0,0);}
.m28_c01044{transform:matrix(0.279669,0.006712,-0.005998,0.249928,0,0);-ms-transform:matrix(0.279669,0.006712,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.279669,0.006712,-0.005998,0.249928,0,0);}
.m3d_c01044{transform:matrix(0.280790,0.007862,-0.006997,0.249902,0,0);-ms-transform:matrix(0.280790,0.007862,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.280790,0.007862,-0.006997,0.249902,0,0);}
.m7b_c01044{transform:matrix(0.284391,0.007110,-0.006248,0.249922,0,0);-ms-transform:matrix(0.284391,0.007110,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.284391,0.007110,-0.006248,0.249922,0,0);}
.m85_c01044{transform:matrix(0.284441,0.007111,-0.006248,0.249922,0,0);-ms-transform:matrix(0.284441,0.007111,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.284441,0.007111,-0.006248,0.249922,0,0);}
.m7f_c01044{transform:matrix(0.285036,0.007126,-0.006248,0.249922,0,0);-ms-transform:matrix(0.285036,0.007126,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.285036,0.007126,-0.006248,0.249922,0,0);}
.m84_c01044{transform:matrix(0.290309,0.007258,-0.006248,0.249922,0,0);-ms-transform:matrix(0.290309,0.007258,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.290309,0.007258,-0.006248,0.249922,0,0);}
.m18_c01044{transform:matrix(0.297680,0.005954,-0.004999,0.249950,0,0);-ms-transform:matrix(0.297680,0.005954,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.297680,0.005954,-0.004999,0.249950,0,0);}
.m80_c01044{transform:matrix(0.298317,0.007458,-0.006248,0.249922,0,0);-ms-transform:matrix(0.298317,0.007458,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.298317,0.007458,-0.006248,0.249922,0,0);}
.m6a_c01044{transform:matrix(0.304670,0.007617,-0.006248,0.249922,0,0);-ms-transform:matrix(0.304670,0.007617,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.304670,0.007617,-0.006248,0.249922,0,0);}
.m87_c01044{transform:matrix(0.307839,0.007696,-0.006248,0.249922,0,0);-ms-transform:matrix(0.307839,0.007696,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.307839,0.007696,-0.006248,0.249922,0,0);}
.m2_c01044{transform:matrix(0.309173,0.006183,-0.004999,0.249950,0,0);-ms-transform:matrix(0.309173,0.006183,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.309173,0.006183,-0.004999,0.249950,0,0);}
.m5_c01044{transform:matrix(0.313952,0.006279,-0.004999,0.249950,0,0);-ms-transform:matrix(0.313952,0.006279,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.313952,0.006279,-0.004999,0.249950,0,0);}
.m17_c01044{transform:matrix(0.316167,0.006323,-0.004999,0.249950,0,0);-ms-transform:matrix(0.316167,0.006323,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.316167,0.006323,-0.004999,0.249950,0,0);}
.m15_c01044{transform:matrix(0.318136,0.006363,-0.004999,0.249950,0,0);-ms-transform:matrix(0.318136,0.006363,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.318136,0.006363,-0.004999,0.249950,0,0);}
.m16_c01044{transform:matrix(0.326890,0.006538,-0.004999,0.249950,0,0);-ms-transform:matrix(0.326890,0.006538,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.326890,0.006538,-0.004999,0.249950,0,0);}
.m1a_c01044{transform:matrix(0.337018,0.006740,-0.004999,0.249950,0,0);-ms-transform:matrix(0.337018,0.006740,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.337018,0.006740,-0.004999,0.249950,0,0);}
.m20_c01044{transform:matrix(0.345666,0.006913,-0.004999,0.249950,0,0);-ms-transform:matrix(0.345666,0.006913,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.345666,0.006913,-0.004999,0.249950,0,0);}
.m1e_c01044{transform:matrix(0.363037,0.007261,-0.004999,0.249950,0,0);-ms-transform:matrix(0.363037,0.007261,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.363037,0.007261,-0.004999,0.249950,0,0);}
.m21_c01044{transform:matrix(0.377944,0.007559,-0.004999,0.249950,0,0);-ms-transform:matrix(0.377944,0.007559,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.377944,0.007559,-0.004999,0.249950,0,0);}
.m7_c01044{transform:matrix(0.388252,0.007765,-0.004999,0.249950,0,0);-ms-transform:matrix(0.388252,0.007765,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.388252,0.007765,-0.004999,0.249950,0,0);}
.ma_c01044{transform:matrix(0.425120,0.008502,-0.004999,0.249950,0,0);-ms-transform:matrix(0.425120,0.008502,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.425120,0.008502,-0.004999,0.249950,0,0);}
.m22_c01044{transform:matrix(0.431309,0.008626,-0.004999,0.249950,0,0);-ms-transform:matrix(0.431309,0.008626,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.431309,0.008626,-0.004999,0.249950,0,0);}
.m1f_c01044{transform:matrix(0.438547,0.008771,-0.004999,0.249950,0,0);-ms-transform:matrix(0.438547,0.008771,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.438547,0.008771,-0.004999,0.249950,0,0);}
.m96_c01044{transform:matrix(0.459826,0.011496,-0.006248,0.249922,0,0);-ms-transform:matrix(0.459826,0.011496,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.459826,0.011496,-0.006248,0.249922,0,0);}
.m1c_c01044{transform:matrix(0.492347,0.009847,-0.004999,0.249950,0,0);-ms-transform:matrix(0.492347,0.009847,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.492347,0.009847,-0.004999,0.249950,0,0);}
.m9a_c01044{transform:matrix(0.527360,0.013184,-0.006248,0.249922,0,0);-ms-transform:matrix(0.527360,0.013184,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.527360,0.013184,-0.006248,0.249922,0,0);}
.m11_c01044{transform:matrix(0.535918,0.010718,-0.004999,0.249950,0,0);-ms-transform:matrix(0.535918,0.010718,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.535918,0.010718,-0.004999,0.249950,0,0);}
.m3_c01044{transform:matrix(0.556759,0.011135,-0.004999,0.249950,0,0);-ms-transform:matrix(0.556759,0.011135,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.556759,0.011135,-0.004999,0.249950,0,0);}
.m99_c01044{transform:matrix(0.618917,0.015473,-0.006248,0.249922,0,0);-ms-transform:matrix(0.618917,0.015473,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.618917,0.015473,-0.006248,0.249922,0,0);}
.mf_c01044{transform:matrix(0.644171,0.012883,-0.004999,0.249950,0,0);-ms-transform:matrix(0.644171,0.012883,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.644171,0.012883,-0.004999,0.249950,0,0);}
.m1_c01044{transform:matrix(0.704414,0.014088,-0.004999,0.249950,0,0);-ms-transform:matrix(0.704414,0.014088,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.704414,0.014088,-0.004999,0.249950,0,0);}
.m10_c01044{transform:matrix(0.724285,0.014486,-0.004999,0.249950,0,0);-ms-transform:matrix(0.724285,0.014486,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.724285,0.014486,-0.004999,0.249950,0,0);}
.me_c01044{transform:matrix(0.766397,0.015328,-0.004999,0.249950,0,0);-ms-transform:matrix(0.766397,0.015328,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.766397,0.015328,-0.004999,0.249950,0,0);}
.mc_c01044{transform:matrix(1.088292,0.021766,-0.004999,0.249950,0,0);-ms-transform:matrix(1.088292,0.021766,-0.004999,0.249950,0,0);-webkit-transform:matrix(1.088292,0.021766,-0.004999,0.249950,0,0);}
.m0_c01044{transform:matrix(1.136808,0.022736,-0.004999,0.249950,0,0);-ms-transform:matrix(1.136808,0.022736,-0.004999,0.249950,0,0);-webkit-transform:matrix(1.136808,0.022736,-0.004999,0.249950,0,0);}
.mb_c01044{transform:matrix(1.763852,0.035277,-0.004999,0.249950,0,0);-ms-transform:matrix(1.763852,0.035277,-0.004999,0.249950,0,0);-webkit-transform:matrix(1.763852,0.035277,-0.004999,0.249950,0,0);}
.v0_c01044{vertical-align:0.000000px;}
.ls0_c01044{letter-spacing:0.000000px;}
.sc__c01044{text-shadow:none;}
.sc0_c01044{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__c01044{-webkit-text-stroke:0px transparent;}
.sc0_c01044{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01044{word-spacing:0.000000px;}
.fc0_c01044{color:transparent;}
.fs0_c01044{font-size:18.003600px;}
.fsb_c01044{font-size:18.005624px;}
.fsa_c01044{font-size:30.009374px;}
.fsc_c01044{font-size:60.000000px;}
.fs7_c01044{font-size:66.020622px;}
.fs1_c01044{font-size:72.020733px;}
.fs6_c01044{font-size:72.022496px;}
.fs3_c01044{font-size:72.028218px;}
.fs2_c01044{font-size:78.022461px;}
.fs4_c01044{font-size:84.024189px;}
.fs9_c01044{font-size:90.028121px;}
.fs5_c01044{font-size:96.027644px;}
.fs8_c01044{font-size:102.031870px;}
.y0_c01044{bottom:0.000000px;}
.ya0_c01044{bottom:147.420000px;}
.y9f_c01044{bottom:330.498150px;}
.y9e_c01044{bottom:437.169037px;}
.y9d_c01044{bottom:468.907125px;}
.y9c_c01044{bottom:507.930750px;}
.y9b_c01044{bottom:544.663950px;}
.y9a_c01044{bottom:580.756575px;}
.y99_c01044{bottom:589.404937px;}
.y98_c01044{bottom:590.689575px;}
.y97_c01044{bottom:593.984137px;}
.y96_c01044{bottom:597.742575px;}
.y95_c01044{bottom:647.836913px;}
.y94_c01044{bottom:668.480738px;}
.y93_c01044{bottom:671.327100px;}
.y92_c01044{bottom:679.790625px;}
.y91_c01044{bottom:680.371800px;}
.y90_c01044{bottom:681.733162px;}
.y8f_c01044{bottom:699.159450px;}
.y8e_c01044{bottom:702.073537px;}
.y8d_c01044{bottom:702.889612px;}
.y8c_c01044{bottom:705.524025px;}
.y8b_c01044{bottom:706.333838px;}
.y8a_c01044{bottom:707.947912px;}
.y89_c01044{bottom:709.515263px;}
.y88_c01044{bottom:710.819250px;}
.y87_c01044{bottom:711.633862px;}
.y86_c01044{bottom:712.944112px;}
.y85_c01044{bottom:715.544362px;}
.y84_c01044{bottom:716.849325px;}
.y83_c01044{bottom:734.580150px;}
.y82_c01044{bottom:737.900287px;}
.y81_c01044{bottom:738.985500px;}
.y80_c01044{bottom:743.154525px;}
.y7f_c01044{bottom:744.026175px;}
.y7e_c01044{bottom:747.550950px;}
.y7d_c01044{bottom:748.373175px;}
.y7c_c01044{bottom:749.754450px;}
.y7b_c01044{bottom:750.857212px;}
.y7a_c01044{bottom:751.667137px;}
.y79_c01044{bottom:753.040500px;}
.y78_c01044{bottom:773.304562px;}
.y77_c01044{bottom:774.141975px;}
.y76_c01044{bottom:775.222125px;}
.y75_c01044{bottom:777.148800px;}
.y74_c01044{bottom:778.004925px;}
.y73_c01044{bottom:780.207600px;}
.y72_c01044{bottom:781.001663px;}
.y71_c01044{bottom:781.840950px;}
.y70_c01044{bottom:782.655937px;}
.y6f_c01044{bottom:783.784350px;}
.y6e_c01044{bottom:784.337325px;}
.y6d_c01044{bottom:786.749025px;}
.y6c_c01044{bottom:788.409000px;}
.y6b_c01044{bottom:808.390896px;}
.y6a_c01044{bottom:811.935516px;}
.y69_c01044{bottom:812.838528px;}
.y68_c01044{bottom:815.562564px;}
.y67_c01044{bottom:816.444036px;}
.y66_c01044{bottom:818.812968px;}
.y65_c01044{bottom:819.687240px;}
.y64_c01044{bottom:820.889724px;}
.y63_c01044{bottom:821.479344px;}
.y62_c01044{bottom:823.554192px;}
.y61_c01044{bottom:824.713296px;}
.y60_c01044{bottom:825.913512px;}
.y5f_c01044{bottom:845.647524px;}
.y5e_c01044{bottom:847.091928px;}
.y5d_c01044{bottom:848.083116px;}
.y5c_c01044{bottom:848.798304px;}
.y5b_c01044{bottom:849.993036px;}
.y5a_c01044{bottom:850.966140px;}
.y59_c01044{bottom:852.679044px;}
.y58_c01044{bottom:853.658772px;}
.y57_c01044{bottom:855.829740px;}
.y56_c01044{bottom:856.535028px;}
.y55_c01044{bottom:857.497392px;}
.y54_c01044{bottom:857.982480px;}
.y53_c01044{bottom:859.406016px;}
.y52_c01044{bottom:880.292748px;}
.y51_c01044{bottom:882.424992px;}
.y50_c01044{bottom:883.189884px;}
.y4f_c01044{bottom:884.538264px;}
.y4e_c01044{bottom:885.335700px;}
.y4d_c01044{bottom:886.379448px;}
.y4c_c01044{bottom:888.194892px;}
.y4b_c01044{bottom:888.996792px;}
.y4a_c01044{bottom:889.580460px;}
.y49_c01044{bottom:891.682644px;}
.y48_c01044{bottom:892.434108px;}
.y47_c01044{bottom:895.077480px;}
.y46_c01044{bottom:895.867500px;}
.y45_c01044{bottom:915.487572px;}
.y44_c01044{bottom:918.285570px;}
.y43_c01044{bottom:919.492776px;}
.y42_c01044{bottom:921.077058px;}
.y41_c01044{bottom:922.004040px;}
.y40_c01044{bottom:925.674924px;}
.y3f_c01044{bottom:926.603166px;}
.y3e_c01044{bottom:928.171068px;}
.y3d_c01044{bottom:929.068230px;}
.y3c_c01044{bottom:930.323316px;}
.y3b_c01044{bottom:930.935214px;}
.y3a_c01044{bottom:933.060876px;}
.y39_c01044{bottom:933.937500px;}
.y38_c01044{bottom:952.410240px;}
.y37_c01044{bottom:953.905536px;}
.y36_c01044{bottom:955.129560px;}
.y35_c01044{bottom:956.241372px;}
.y34_c01044{bottom:959.018532px;}
.y33_c01044{bottom:960.454668px;}
.y32_c01044{bottom:962.831940px;}
.y31_c01044{bottom:965.785272px;}
.y30_c01044{bottom:966.408888px;}
.y2f_c01044{bottom:968.757780px;}
.y2e_c01044{bottom:987.372588px;}
.y2d_c01044{bottom:988.195620px;}
.y2c_c01044{bottom:990.334344px;}
.y2b_c01044{bottom:991.387380px;}
.y2a_c01044{bottom:992.414136px;}
.y29_c01044{bottom:994.530504px;}
.y28_c01044{bottom:996.907188px;}
.y27_c01044{bottom:999.253992px;}
.y26_c01044{bottom:1000.627500px;}
.y25_c01044{bottom:1082.917350px;}
.y24_c01044{bottom:1083.172290px;}
.y23_c01044{bottom:1083.411030px;}
.y22_c01044{bottom:1083.637470px;}
.y21_c01044{bottom:1083.881610px;}
.y20_c01044{bottom:1084.108050px;}
.y1f_c01044{bottom:1084.458030px;}
.y1e_c01044{bottom:1084.798560px;}
.y1d_c01044{bottom:1085.042700px;}
.y1c_c01044{bottom:1085.282580px;}
.y1b_c01044{bottom:1085.498220px;}
.y1a_c01044{bottom:1085.594490px;}
.y19_c01044{bottom:1085.724660px;}
.y18_c01044{bottom:1085.963400px;}
.y17_c01044{bottom:1086.189060px;}
.y16_c01044{bottom:1086.420900px;}
.yd_c01044{bottom:1086.468990px;}
.y15_c01044{bottom:1086.636660px;}
.yc_c01044{bottom:1086.755130px;}
.yb_c01044{bottom:1086.971100px;}
.ya_c01044{bottom:1087.187070px;}
.y9_c01044{bottom:1087.403040px;}
.y8_c01044{bottom:1087.602810px;}
.y14_c01044{bottom:1087.739370px;}
.y7_c01044{bottom:1087.851150px;}
.y6_c01044{bottom:1088.034720px;}
.y13_c01044{bottom:1088.281110px;}
.y5_c01044{bottom:1088.293860px;}
.y12_c01044{bottom:1088.627160px;}
.y4_c01044{bottom:1088.741970px;}
.y3_c01044{bottom:1089.113730px;}
.y11_c01044{bottom:1089.438300px;}
.y10_c01044{bottom:1089.982200px;}
.y2_c01044{bottom:1090.042440px;}
.yf_c01044{bottom:1090.560780px;}
.ye_c01044{bottom:1092.420330px;}
.y1_c01044{bottom:1095.546000px;}
.h2_c01044{height:18.003600px;}
.hd_c01044{height:18.005624px;}
.hc_c01044{height:30.009374px;}
.he_c01044{height:60.000000px;}
.h9_c01044{height:66.020622px;}
.h3_c01044{height:72.020733px;}
.h8_c01044{height:72.022496px;}
.h5_c01044{height:72.028218px;}
.h4_c01044{height:78.022461px;}
.h6_c01044{height:84.024189px;}
.hb_c01044{height:90.028121px;}
.h7_c01044{height:96.027644px;}
.ha_c01044{height:102.031870px;}
.h0_c01044{height:1246.320000px;}
.h1_c01044{height:1246.500000px;}
.w1_c01044{width:887.250000px;}
.w0_c01044{width:887.490000px;}
.x0_c01044{left:0.000000px;}
.x6f_c01044{left:131.160337px;}
.x5b_c01044{left:133.785000px;}
.x4c_c01044{left:135.050676px;}
.x38_c01044{left:136.605000px;}
.x24_c01044{left:138.500040px;}
.x39_c01044{left:169.522500px;}
.x2c_c01044{left:170.649000px;}
.x4d_c01044{left:179.493972px;}
.x5c_c01044{left:188.719500px;}
.x1e_c01044{left:193.266000px;}
.x44_c01044{left:201.838836px;}
.x6b_c01044{left:210.125100px;}
.x5d_c01044{left:221.116500px;}
.x4e_c01044{left:222.411876px;}
.x45_c01044{left:223.864380px;}
.x25_c01044{left:225.489276px;}
.x6c_c01044{left:242.437762px;}
.x2d_c01044{left:246.565500px;}
.x26_c01044{left:248.596620px;}
.x1_c01044{left:249.715500px;}
.x5e_c01044{left:265.227000px;}
.x2e_c01044{left:268.419000px;}
.x3a_c01044{left:279.663000px;}
.x70_c01044{left:294.586012px;}
.x53_c01044{left:297.799500px;}
.x46_c01044{left:299.666016px;}
.x3b_c01044{left:310.974000px;}
.x2f_c01044{left:313.243500px;}
.x54_c01044{left:319.918500px;}
.x4f_c01044{left:321.049248px;}
.xe_c01044{left:338.262240px;}
.x30_c01044{left:345.285000px;}
.x1f_c01044{left:348.279000px;}
.x63_c01044{left:351.552000px;}
.x5f_c01044{left:353.367000px;}
.x27_c01044{left:357.956736px;}
.xf_c01044{left:365.840700px;}
.x64_c01044{left:385.517362px;}
.x10_c01044{left:391.760190px;}
.x3c_c01044{left:398.565000px;}
.x31_c01044{left:401.281500px;}
.x3d_c01044{left:422.884500px;}
.x11_c01044{left:430.366410px;}
.x32_c01044{left:434.433000px;}
.x71_c01044{left:437.835675px;}
.x65_c01044{left:439.838212px;}
.x47_c01044{left:442.826856px;}
.x12_c01044{left:446.843580px;}
.x3e_c01044{left:456.297000px;}
.x55_c01044{left:462.988500px;}
.x13_c01044{left:472.655070px;}
.x50_c01044{left:485.711904px;}
.x60_c01044{left:494.358000px;}
.x28_c01044{left:499.213584px;}
.x66_c01044{left:505.173862px;}
.x51_c01044{left:518.375064px;}
.x48_c01044{left:520.701600px;}
.x2_c01044{left:524.893500px;}
.x61_c01044{left:529.224000px;}
.x3f_c01044{left:531.940500px;}
.x14_c01044{left:535.427310px;}
.x15_c01044{left:546.494100px;}
.x56_c01044{left:551.095500px;}
.x16_c01044{left:557.251890px;}
.x33_c01044{left:565.536000px;}
.x17_c01044{left:568.588650px;}
.x3_c01044{left:571.329000px;}
.x67_c01044{left:572.438550px;}
.x18_c01044{left:574.797030px;}
.x20_c01044{left:578.271000px;}
.x19_c01044{left:579.385440px;}
.x57_c01044{left:585.340500px;}
.x4_c01044{left:589.917000px;}
.x34_c01044{left:598.642500px;}
.x1a_c01044{left:601.035990px;}
.x29_c01044{left:602.046168px;}
.x68_c01044{left:606.211912px;}
.x40_c01044{left:608.656500px;}
.x5_c01044{left:612.322500px;}
.x49_c01044{left:619.220316px;}
.x21_c01044{left:622.147500px;}
.x6_c01044{left:625.279500px;}
.x1b_c01044{left:628.843920px;}
.x7_c01044{left:634.458000px;}
.x2a_c01044{left:643.243716px;}
.x1c_c01044{left:645.517590px;}
.x8_c01044{left:646.875000px;}
.x4a_c01044{left:651.708864px;}
.x35_c01044{left:655.224000px;}
.x9_c01044{left:656.863500px;}
.x58_c01044{left:662.407500px;}
.x41_c01044{left:664.839000px;}
.xa_c01044{left:667.662000px;}
.xb_c01044{left:678.460500px;}
.xc_c01044{left:689.259000px;}
.x42_c01044{left:696.709500px;}
.x36_c01044{left:698.338500px;}
.x1d_c01044{left:702.201450px;}
.xd_c01044{left:703.566000px;}
.x59_c01044{left:705.613500px;}
.x22_c01044{left:711.261000px;}
.x6d_c01044{left:712.641000px;}
.x69_c01044{left:715.971150px;}
.x5a_c01044{left:739.110000px;}
.x2b_c01044{left:743.916444px;}
.x23_c01044{left:745.554000px;}
.x6a_c01044{left:749.995012px;}
.x4b_c01044{left:762.447192px;}
.x52_c01044{left:783.987948px;}
.x43_c01044{left:785.553000px;}
.x37_c01044{left:798.267000px;}
.x73_c01044{left:867.200137px;}
.x72_c01044{left:869.677237px;}
.x6e_c01044{left:870.803175px;}
.x62_c01044{left:872.199000px;}
@media print{
.v0_c01044{vertical-align:0.000000pt;}
.ls0_c01044{letter-spacing:0.000000pt;}
.ws0_c01044{word-spacing:0.000000pt;}
.fs0_c01044{font-size:16.003200pt;}
.fsb_c01044{font-size:16.004999pt;}
.fsa_c01044{font-size:26.674999pt;}
.fsc_c01044{font-size:53.333333pt;}
.fs7_c01044{font-size:58.684997pt;}
.fs1_c01044{font-size:64.018429pt;}
.fs6_c01044{font-size:64.019997pt;}
.fs3_c01044{font-size:64.025083pt;}
.fs2_c01044{font-size:69.353298pt;}
.fs4_c01044{font-size:74.688168pt;}
.fs9_c01044{font-size:80.024996pt;}
.fs5_c01044{font-size:85.357906pt;}
.fs8_c01044{font-size:90.694996pt;}
.y0_c01044{bottom:0.000000pt;}
.ya0_c01044{bottom:131.040000pt;}
.y9f_c01044{bottom:293.776133pt;}
.y9e_c01044{bottom:388.594700pt;}
.y9d_c01044{bottom:416.806333pt;}
.y9c_c01044{bottom:451.494000pt;}
.y9b_c01044{bottom:484.145733pt;}
.y9a_c01044{bottom:516.228067pt;}
.y99_c01044{bottom:523.915500pt;}
.y98_c01044{bottom:525.057400pt;}
.y97_c01044{bottom:527.985900pt;}
.y96_c01044{bottom:531.326733pt;}
.y95_c01044{bottom:575.855033pt;}
.y94_c01044{bottom:594.205100pt;}
.y93_c01044{bottom:596.735200pt;}
.y92_c01044{bottom:604.258333pt;}
.y91_c01044{bottom:604.774933pt;}
.y90_c01044{bottom:605.985033pt;}
.y8f_c01044{bottom:621.475067pt;}
.y8e_c01044{bottom:624.065367pt;}
.y8d_c01044{bottom:624.790767pt;}
.y8c_c01044{bottom:627.132467pt;}
.y8b_c01044{bottom:627.852300pt;}
.y8a_c01044{bottom:629.287033pt;}
.y89_c01044{bottom:630.680233pt;}
.y88_c01044{bottom:631.839333pt;}
.y87_c01044{bottom:632.563433pt;}
.y86_c01044{bottom:633.728100pt;}
.y85_c01044{bottom:636.039433pt;}
.y84_c01044{bottom:637.199400pt;}
.y83_c01044{bottom:652.960133pt;}
.y82_c01044{bottom:655.911367pt;}
.y81_c01044{bottom:656.876000pt;}
.y80_c01044{bottom:660.581800pt;}
.y7f_c01044{bottom:661.356600pt;}
.y7e_c01044{bottom:664.489733pt;}
.y7d_c01044{bottom:665.220600pt;}
.y7c_c01044{bottom:666.448400pt;}
.y7b_c01044{bottom:667.428633pt;}
.y7a_c01044{bottom:668.148567pt;}
.y79_c01044{bottom:669.369333pt;}
.y78_c01044{bottom:687.381833pt;}
.y77_c01044{bottom:688.126200pt;}
.y76_c01044{bottom:689.086333pt;}
.y75_c01044{bottom:690.798933pt;}
.y74_c01044{bottom:691.559933pt;}
.y73_c01044{bottom:693.517867pt;}
.y72_c01044{bottom:694.223700pt;}
.y71_c01044{bottom:694.969733pt;}
.y70_c01044{bottom:695.694167pt;}
.y6f_c01044{bottom:696.697200pt;}
.y6e_c01044{bottom:697.188733pt;}
.y6d_c01044{bottom:699.332467pt;}
.y6c_c01044{bottom:700.808000pt;}
.y6b_c01044{bottom:718.569685pt;}
.y6a_c01044{bottom:721.720459pt;}
.y69_c01044{bottom:722.523136pt;}
.y68_c01044{bottom:724.944501pt;}
.y67_c01044{bottom:725.728032pt;}
.y66_c01044{bottom:727.833749pt;}
.y65_c01044{bottom:728.610880pt;}
.y64_c01044{bottom:729.679755pt;}
.y63_c01044{bottom:730.203861pt;}
.y62_c01044{bottom:732.048171pt;}
.y61_c01044{bottom:733.078485pt;}
.y60_c01044{bottom:734.145344pt;}
.y5f_c01044{bottom:751.686688pt;}
.y5e_c01044{bottom:752.970603pt;}
.y5d_c01044{bottom:753.851659pt;}
.y5c_c01044{bottom:754.487381pt;}
.y5b_c01044{bottom:755.549365pt;}
.y5a_c01044{bottom:756.414347pt;}
.y59_c01044{bottom:757.936928pt;}
.y58_c01044{bottom:758.807797pt;}
.y57_c01044{bottom:760.737547pt;}
.y56_c01044{bottom:761.364469pt;}
.y55_c01044{bottom:762.219904pt;}
.y54_c01044{bottom:762.651093pt;}
.y53_c01044{bottom:763.916459pt;}
.y52_c01044{bottom:782.482443pt;}
.y51_c01044{bottom:784.377771pt;}
.y50_c01044{bottom:785.057675pt;}
.y4f_c01044{bottom:786.256235pt;}
.y4e_c01044{bottom:786.965067pt;}
.y4d_c01044{bottom:787.892843pt;}
.y4c_c01044{bottom:789.506571pt;}
.y4b_c01044{bottom:790.219371pt;}
.y4a_c01044{bottom:790.738187pt;}
.y49_c01044{bottom:792.606795pt;}
.y48_c01044{bottom:793.274763pt;}
.y47_c01044{bottom:795.624427pt;}
.y46_c01044{bottom:796.326667pt;}
.y45_c01044{bottom:813.766731pt;}
.y44_c01044{bottom:816.253840pt;}
.y43_c01044{bottom:817.326912pt;}
.y42_c01044{bottom:818.735163pt;}
.y41_c01044{bottom:819.559147pt;}
.y40_c01044{bottom:822.822155pt;}
.y3f_c01044{bottom:823.647259pt;}
.y3e_c01044{bottom:825.040949pt;}
.y3d_c01044{bottom:825.838427pt;}
.y3c_c01044{bottom:826.954059pt;}
.y3b_c01044{bottom:827.497968pt;}
.y3a_c01044{bottom:829.387445pt;}
.y39_c01044{bottom:830.166667pt;}
.y38_c01044{bottom:846.586880pt;}
.y37_c01044{bottom:847.916032pt;}
.y36_c01044{bottom:849.004053pt;}
.y35_c01044{bottom:849.992331pt;}
.y34_c01044{bottom:852.460917pt;}
.y33_c01044{bottom:853.737483pt;}
.y32_c01044{bottom:855.850613pt;}
.y31_c01044{bottom:858.475797pt;}
.y30_c01044{bottom:859.030123pt;}
.y2f_c01044{bottom:861.118027pt;}
.y2e_c01044{bottom:877.664523pt;}
.y2d_c01044{bottom:878.396107pt;}
.y2c_c01044{bottom:880.297195pt;}
.y2b_c01044{bottom:881.233227pt;}
.y2a_c01044{bottom:882.145899pt;}
.y29_c01044{bottom:884.027115pt;}
.y28_c01044{bottom:886.139723pt;}
.y27_c01044{bottom:888.225771pt;}
.y26_c01044{bottom:889.446667pt;}
.y25_c01044{bottom:962.593200pt;}
.y24_c01044{bottom:962.819813pt;}
.y23_c01044{bottom:963.032027pt;}
.y22_c01044{bottom:963.233307pt;}
.y21_c01044{bottom:963.450320pt;}
.y20_c01044{bottom:963.651600pt;}
.y1f_c01044{bottom:963.962693pt;}
.y1e_c01044{bottom:964.265387pt;}
.y1d_c01044{bottom:964.482400pt;}
.y1c_c01044{bottom:964.695627pt;}
.y1b_c01044{bottom:964.887307pt;}
.y1a_c01044{bottom:964.972880pt;}
.y19_c01044{bottom:965.088587pt;}
.y18_c01044{bottom:965.300800pt;}
.y17_c01044{bottom:965.501387pt;}
.y16_c01044{bottom:965.707467pt;}
.yd_c01044{bottom:965.750213pt;}
.y15_c01044{bottom:965.899253pt;}
.yc_c01044{bottom:966.004560pt;}
.yb_c01044{bottom:966.196533pt;}
.ya_c01044{bottom:966.388507pt;}
.y9_c01044{bottom:966.580480pt;}
.y8_c01044{bottom:966.758053pt;}
.y14_c01044{bottom:966.879440pt;}
.y7_c01044{bottom:966.978800pt;}
.y6_c01044{bottom:967.141973pt;}
.y13_c01044{bottom:967.360987pt;}
.y5_c01044{bottom:967.372320pt;}
.y12_c01044{bottom:967.668587pt;}
.y4_c01044{bottom:967.770640pt;}
.y3_c01044{bottom:968.101093pt;}
.y11_c01044{bottom:968.389600pt;}
.y10_c01044{bottom:968.873067pt;}
.y2_c01044{bottom:968.926613pt;}
.yf_c01044{bottom:969.387360pt;}
.ye_c01044{bottom:971.040293pt;}
.y1_c01044{bottom:973.818667pt;}
.h2_c01044{height:16.003200pt;}
.hd_c01044{height:16.004999pt;}
.hc_c01044{height:26.674999pt;}
.he_c01044{height:53.333333pt;}
.h9_c01044{height:58.684997pt;}
.h3_c01044{height:64.018429pt;}
.h8_c01044{height:64.019997pt;}
.h5_c01044{height:64.025083pt;}
.h4_c01044{height:69.353298pt;}
.h6_c01044{height:74.688168pt;}
.hb_c01044{height:80.024996pt;}
.h7_c01044{height:85.357906pt;}
.ha_c01044{height:90.694996pt;}
.h0_c01044{height:1107.840000pt;}
.h1_c01044{height:1108.000000pt;}
.w1_c01044{width:788.666667pt;}
.w0_c01044{width:788.880000pt;}
.x0_c01044{left:0.000000pt;}
.x6f_c01044{left:116.586967pt;}
.x5b_c01044{left:118.920000pt;}
.x4c_c01044{left:120.045045pt;}
.x38_c01044{left:121.426667pt;}
.x24_c01044{left:123.111147pt;}
.x39_c01044{left:150.686667pt;}
.x2c_c01044{left:151.688000pt;}
.x4d_c01044{left:159.550197pt;}
.x5c_c01044{left:167.750667pt;}
.x1e_c01044{left:171.792000pt;}
.x44_c01044{left:179.412299pt;}
.x6b_c01044{left:186.777867pt;}
.x5d_c01044{left:196.548000pt;}
.x4e_c01044{left:197.699445pt;}
.x45_c01044{left:198.990560pt;}
.x25_c01044{left:200.434912pt;}
.x6c_c01044{left:215.500233pt;}
.x2d_c01044{left:219.169333pt;}
.x26_c01044{left:220.974773pt;}
.x1_c01044{left:221.969333pt;}
.x5e_c01044{left:235.757333pt;}
.x2e_c01044{left:238.594667pt;}
.x3a_c01044{left:248.589333pt;}
.x70_c01044{left:261.854233pt;}
.x53_c01044{left:264.710667pt;}
.x46_c01044{left:266.369792pt;}
.x3b_c01044{left:276.421333pt;}
.x2f_c01044{left:278.438667pt;}
.x54_c01044{left:284.372000pt;}
.x4f_c01044{left:285.377109pt;}
.xe_c01044{left:300.677547pt;}
.x30_c01044{left:306.920000pt;}
.x1f_c01044{left:309.581333pt;}
.x63_c01044{left:312.490667pt;}
.x5f_c01044{left:314.104000pt;}
.x27_c01044{left:318.183765pt;}
.xf_c01044{left:325.191733pt;}
.x64_c01044{left:342.682100pt;}
.x10_c01044{left:348.231280pt;}
.x3c_c01044{left:354.280000pt;}
.x31_c01044{left:356.694667pt;}
.x3d_c01044{left:375.897333pt;}
.x11_c01044{left:382.547920pt;}
.x32_c01044{left:386.162667pt;}
.x71_c01044{left:389.187267pt;}
.x65_c01044{left:390.967300pt;}
.x47_c01044{left:393.623872pt;}
.x12_c01044{left:397.194293pt;}
.x3e_c01044{left:405.597333pt;}
.x55_c01044{left:411.545333pt;}
.x13_c01044{left:420.137840pt;}
.x50_c01044{left:431.743915pt;}
.x60_c01044{left:439.429333pt;}
.x28_c01044{left:443.745408pt;}
.x66_c01044{left:449.043433pt;}
.x51_c01044{left:460.777835pt;}
.x48_c01044{left:462.845867pt;}
.x2_c01044{left:466.572000pt;}
.x61_c01044{left:470.421333pt;}
.x3f_c01044{left:472.836000pt;}
.x14_c01044{left:475.935387pt;}
.x15_c01044{left:485.772533pt;}
.x56_c01044{left:489.862667pt;}
.x16_c01044{left:495.335013pt;}
.x33_c01044{left:502.698667pt;}
.x17_c01044{left:505.412133pt;}
.x3_c01044{left:507.848000pt;}
.x67_c01044{left:508.834267pt;}
.x18_c01044{left:510.930693pt;}
.x20_c01044{left:514.018667pt;}
.x19_c01044{left:515.009280pt;}
.x57_c01044{left:520.302667pt;}
.x4_c01044{left:524.370667pt;}
.x34_c01044{left:532.126667pt;}
.x1a_c01044{left:534.254213pt;}
.x29_c01044{left:535.152149pt;}
.x68_c01044{left:538.855033pt;}
.x40_c01044{left:541.028000pt;}
.x5_c01044{left:544.286667pt;}
.x49_c01044{left:550.418059pt;}
.x21_c01044{left:553.020000pt;}
.x6_c01044{left:555.804000pt;}
.x1b_c01044{left:558.972373pt;}
.x7_c01044{left:563.962667pt;}
.x2a_c01044{left:571.772192pt;}
.x1c_c01044{left:573.793413pt;}
.x8_c01044{left:575.000000pt;}
.x4a_c01044{left:579.296768pt;}
.x35_c01044{left:582.421333pt;}
.x9_c01044{left:583.878667pt;}
.x58_c01044{left:588.806667pt;}
.x41_c01044{left:590.968000pt;}
.xa_c01044{left:593.477333pt;}
.xb_c01044{left:603.076000pt;}
.xc_c01044{left:612.674667pt;}
.x42_c01044{left:619.297333pt;}
.x36_c01044{left:620.745333pt;}
.x1d_c01044{left:624.179067pt;}
.xd_c01044{left:625.392000pt;}
.x59_c01044{left:627.212000pt;}
.x22_c01044{left:632.232000pt;}
.x6d_c01044{left:633.458667pt;}
.x69_c01044{left:636.418800pt;}
.x5a_c01044{left:656.986667pt;}
.x2b_c01044{left:661.259061pt;}
.x23_c01044{left:662.714667pt;}
.x6a_c01044{left:666.662233pt;}
.x4b_c01044{left:677.730837pt;}
.x52_c01044{left:696.878176pt;}
.x43_c01044{left:698.269333pt;}
.x37_c01044{left:709.570667pt;}
.x73_c01044{left:770.844567pt;}
.x72_c01044{left:773.046433pt;}
.x6e_c01044{left:774.047267pt;}
.x62_c01044{left:775.288000pt;}
}





/* 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_c01045 {
    display:none;
  }
  .loading-indicator_c01045.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01045 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_c01045 { 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_c01045" -> "#page-container .classname_c01045")
 */
.pf_c01045 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01045 { /* 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_c01045.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01045 { /* 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_c01045 { /* 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_c01045 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01045 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01045 {overflow:visible;}
  }
}
.c_c01045 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01045 { /* 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_c01045:after { /* webkit #35443 */
  content: '';
}
.t_c01045:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01045 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 */
}
.__c01045 { /* 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_c01045 { /* info for Javascript */
  display:none;
}
.l_c01045 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01045 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01045 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01045: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_c01045 {
    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_c01045.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01045.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_c01045 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01045{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01045;src:url('chunks/assets/font_cfe63ee56e9e10a97d33a3db.woff2')format("woff");}.ff1_c01045{font-family:ff1_c01045;line-height:1.000000;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;}
.m15_c01045{transform:matrix(0.010140,-0.000071,0.001750,0.249994,0,0);-ms-transform:matrix(0.010140,-0.000071,0.001750,0.249994,0,0);-webkit-transform:matrix(0.010140,-0.000071,0.001750,0.249994,0,0);}
.m11_c01045{transform:matrix(0.021964,-0.000154,0.001750,0.249994,0,0);-ms-transform:matrix(0.021964,-0.000154,0.001750,0.249994,0,0);-webkit-transform:matrix(0.021964,-0.000154,0.001750,0.249994,0,0);}
.m7_c01045{transform:matrix(0.060585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060585,0.000000,0.000000,0.250000,0,0);}
.m5_c01045{transform:matrix(0.128160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128160,0.000000,0.000000,0.250000,0,0);}
.md_c01045{transform:matrix(0.165170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165170,0.000000,0.000000,0.250000,0,0);}
.m1f_c01045{transform:matrix(0.165936,-0.001162,0.001750,0.249994,0,0);-ms-transform:matrix(0.165936,-0.001162,0.001750,0.249994,0,0);-webkit-transform:matrix(0.165936,-0.001162,0.001750,0.249994,0,0);}
.m21_c01045{transform:matrix(0.185660,-0.001300,0.001750,0.249994,0,0);-ms-transform:matrix(0.185660,-0.001300,0.001750,0.249994,0,0);-webkit-transform:matrix(0.185660,-0.001300,0.001750,0.249994,0,0);}
.m8_c01045{transform:matrix(0.191655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191655,0.000000,0.000000,0.250000,0,0);}
.m22_c01045{transform:matrix(0.192580,-0.001348,0.001750,0.249994,0,0);-ms-transform:matrix(0.192580,-0.001348,0.001750,0.249994,0,0);-webkit-transform:matrix(0.192580,-0.001348,0.001750,0.249994,0,0);}
.m1a_c01045{transform:matrix(0.196385,-0.001375,0.001750,0.249994,0,0);-ms-transform:matrix(0.196385,-0.001375,0.001750,0.249994,0,0);-webkit-transform:matrix(0.196385,-0.001375,0.001750,0.249994,0,0);}
.m25_c01045{transform:matrix(0.198320,-0.001388,0.001750,0.249994,0,0);-ms-transform:matrix(0.198320,-0.001388,0.001750,0.249994,0,0);-webkit-transform:matrix(0.198320,-0.001388,0.001750,0.249994,0,0);}
.m1b_c01045{transform:matrix(0.199450,-0.001396,0.001750,0.249994,0,0);-ms-transform:matrix(0.199450,-0.001396,0.001750,0.249994,0,0);-webkit-transform:matrix(0.199450,-0.001396,0.001750,0.249994,0,0);}
.m1e_c01045{transform:matrix(0.204260,-0.001430,0.001750,0.249994,0,0);-ms-transform:matrix(0.204260,-0.001430,0.001750,0.249994,0,0);-webkit-transform:matrix(0.204260,-0.001430,0.001750,0.249994,0,0);}
.m10_c01045{transform:matrix(0.211820,-0.001483,0.001750,0.249994,0,0);-ms-transform:matrix(0.211820,-0.001483,0.001750,0.249994,0,0);-webkit-transform:matrix(0.211820,-0.001483,0.001750,0.249994,0,0);}
.m1c_c01045{transform:matrix(0.212380,-0.001487,0.001750,0.249994,0,0);-ms-transform:matrix(0.212380,-0.001487,0.001750,0.249994,0,0);-webkit-transform:matrix(0.212380,-0.001487,0.001750,0.249994,0,0);}
.m14_c01045{transform:matrix(0.213095,-0.001492,0.001750,0.249994,0,0);-ms-transform:matrix(0.213095,-0.001492,0.001750,0.249994,0,0);-webkit-transform:matrix(0.213095,-0.001492,0.001750,0.249994,0,0);}
.m12_c01045{transform:matrix(0.218820,-0.001532,0.001750,0.249994,0,0);-ms-transform:matrix(0.218820,-0.001532,0.001750,0.249994,0,0);-webkit-transform:matrix(0.218820,-0.001532,0.001750,0.249994,0,0);}
.m20_c01045{transform:matrix(0.219425,-0.001536,0.001750,0.249994,0,0);-ms-transform:matrix(0.219425,-0.001536,0.001750,0.249994,0,0);-webkit-transform:matrix(0.219425,-0.001536,0.001750,0.249994,0,0);}
.m17_c01045{transform:matrix(0.220740,-0.001545,0.001750,0.249994,0,0);-ms-transform:matrix(0.220740,-0.001545,0.001750,0.249994,0,0);-webkit-transform:matrix(0.220740,-0.001545,0.001750,0.249994,0,0);}
.m4_c01045{transform:matrix(0.230070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230070,0.000000,0.000000,0.250000,0,0);}
.m16_c01045{transform:matrix(0.241579,-0.001691,0.001750,0.249994,0,0);-ms-transform:matrix(0.241579,-0.001691,0.001750,0.249994,0,0);-webkit-transform:matrix(0.241579,-0.001691,0.001750,0.249994,0,0);}
.m19_c01045{transform:matrix(0.250149,-0.001751,0.001750,0.249994,0,0);-ms-transform:matrix(0.250149,-0.001751,0.001750,0.249994,0,0);-webkit-transform:matrix(0.250149,-0.001751,0.001750,0.249994,0,0);}
.m2a_c01045{transform:matrix(0.257169,-0.001800,0.001750,0.249994,0,0);-ms-transform:matrix(0.257169,-0.001800,0.001750,0.249994,0,0);-webkit-transform:matrix(0.257169,-0.001800,0.001750,0.249994,0,0);}
.m1d_c01045{transform:matrix(0.258629,-0.001810,0.001750,0.249994,0,0);-ms-transform:matrix(0.258629,-0.001810,0.001750,0.249994,0,0);-webkit-transform:matrix(0.258629,-0.001810,0.001750,0.249994,0,0);}
.m1_c01045{transform:matrix(0.260730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260730,0.000000,0.000000,0.250000,0,0);}
.m0_c01045{transform:matrix(0.287780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287780,0.000000,0.000000,0.250000,0,0);}
.m6_c01045{transform:matrix(0.292115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292115,0.000000,0.000000,0.250000,0,0);}
.me_c01045{transform:matrix(0.292578,-0.002048,0.001750,0.249994,0,0);-ms-transform:matrix(0.292578,-0.002048,0.001750,0.249994,0,0);-webkit-transform:matrix(0.292578,-0.002048,0.001750,0.249994,0,0);}
.m18_c01045{transform:matrix(0.299068,-0.002093,0.001750,0.249994,0,0);-ms-transform:matrix(0.299068,-0.002093,0.001750,0.249994,0,0);-webkit-transform:matrix(0.299068,-0.002093,0.001750,0.249994,0,0);}
.m24_c01045{transform:matrix(0.299648,-0.002098,0.001750,0.249994,0,0);-ms-transform:matrix(0.299648,-0.002098,0.001750,0.249994,0,0);-webkit-transform:matrix(0.299648,-0.002098,0.001750,0.249994,0,0);}
.m29_c01045{transform:matrix(0.314262,-0.002200,0.001750,0.249994,0,0);-ms-transform:matrix(0.314262,-0.002200,0.001750,0.249994,0,0);-webkit-transform:matrix(0.314262,-0.002200,0.001750,0.249994,0,0);}
.m2_c01045{transform:matrix(0.323585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323585,0.000000,0.000000,0.250000,0,0);}
.m27_c01045{transform:matrix(0.362116,-0.002535,0.001750,0.249994,0,0);-ms-transform:matrix(0.362116,-0.002535,0.001750,0.249994,0,0);-webkit-transform:matrix(0.362116,-0.002535,0.001750,0.249994,0,0);}
.m3_c01045{transform:matrix(0.404305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404305,0.000000,0.000000,0.250000,0,0);}
.mc_c01045{transform:matrix(0.469410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469410,0.000000,0.000000,0.250000,0,0);}
.m2c_c01045{transform:matrix(0.475878,-0.003331,0.001750,0.249994,0,0);-ms-transform:matrix(0.475878,-0.003331,0.001750,0.249994,0,0);-webkit-transform:matrix(0.475878,-0.003331,0.001750,0.249994,0,0);}
.m2e_c01045{transform:matrix(0.542472,-0.003797,0.001750,0.249994,0,0);-ms-transform:matrix(0.542472,-0.003797,0.001750,0.249994,0,0);-webkit-transform:matrix(0.542472,-0.003797,0.001750,0.249994,0,0);}
.m2d_c01045{transform:matrix(0.625530,-0.004379,0.001750,0.249994,0,0);-ms-transform:matrix(0.625530,-0.004379,0.001750,0.249994,0,0);-webkit-transform:matrix(0.625530,-0.004379,0.001750,0.249994,0,0);}
.m2f_c01045{transform:matrix(0.637214,-0.004461,0.001750,0.249994,0,0);-ms-transform:matrix(0.637214,-0.004461,0.001750,0.249994,0,0);-webkit-transform:matrix(0.637214,-0.004461,0.001750,0.249994,0,0);}
.m26_c01045{transform:matrix(0.668064,-0.004676,0.001750,0.249994,0,0);-ms-transform:matrix(0.668064,-0.004676,0.001750,0.249994,0,0);-webkit-transform:matrix(0.668064,-0.004676,0.001750,0.249994,0,0);}
.mb_c01045{transform:matrix(0.773230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.773230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.773230,0.000000,0.000000,0.250000,0,0);}
.m2b_c01045{transform:matrix(0.810025,-0.005670,0.001750,0.249994,0,0);-ms-transform:matrix(0.810025,-0.005670,0.001750,0.249994,0,0);-webkit-transform:matrix(0.810025,-0.005670,0.001750,0.249994,0,0);}
.mf_c01045{transform:matrix(0.835930,-0.005852,0.001750,0.249994,0,0);-ms-transform:matrix(0.835930,-0.005852,0.001750,0.249994,0,0);-webkit-transform:matrix(0.835930,-0.005852,0.001750,0.249994,0,0);}
.m23_c01045{transform:matrix(0.851979,-0.005964,0.001750,0.249994,0,0);-ms-transform:matrix(0.851979,-0.005964,0.001750,0.249994,0,0);-webkit-transform:matrix(0.851979,-0.005964,0.001750,0.249994,0,0);}
.m28_c01045{transform:matrix(1.022695,-0.007159,0.001750,0.249994,0,0);-ms-transform:matrix(1.022695,-0.007159,0.001750,0.249994,0,0);-webkit-transform:matrix(1.022695,-0.007159,0.001750,0.249994,0,0);}
.ma_c01045{transform:matrix(1.111850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.111850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.111850,0.000000,0.000000,0.250000,0,0);}
.m30_c01045{transform:matrix(1.235870,-0.008651,0.001750,0.249994,0,0);-ms-transform:matrix(1.235870,-0.008651,0.001750,0.249994,0,0);-webkit-transform:matrix(1.235870,-0.008651,0.001750,0.249994,0,0);}
.m13_c01045{transform:matrix(1.311458,-0.009180,0.001750,0.249994,0,0);-ms-transform:matrix(1.311458,-0.009180,0.001750,0.249994,0,0);-webkit-transform:matrix(1.311458,-0.009180,0.001750,0.249994,0,0);}
.m9_c01045{transform:matrix(1.352480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.352480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.352480,0.000000,0.000000,0.250000,0,0);}
.v0_c01045{vertical-align:0.000000px;}
.ls0_c01045{letter-spacing:0.000000px;}
.sc__c01045{text-shadow:none;}
.sc0_c01045{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__c01045{-webkit-text-stroke:0px transparent;}
.sc0_c01045{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01045{word-spacing:0.000000px;}
.fc0_c01045{color:transparent;}
.fs1_c01045{font-size:24.000000px;}
.fs0_c01045{font-size:72.000000px;}
.fs4_c01045{font-size:78.001911px;}
.fs2_c01045{font-size:96.002352px;}
.fs3_c01045{font-size:102.002499px;}
.y0_c01045{bottom:0.000000px;}
.y22_c01045{bottom:701.005666px;}
.y23_c01045{bottom:701.721078px;}
.y24_c01045{bottom:702.410244px;}
.y25_c01045{bottom:702.615722px;}
.y26_c01045{bottom:703.028766px;}
.y27_c01045{bottom:703.384692px;}
.y1a_c01045{bottom:772.057478px;}
.y1b_c01045{bottom:772.834603px;}
.y1c_c01045{bottom:773.086068px;}
.y1d_c01045{bottom:773.443603px;}
.y1e_c01045{bottom:773.929480px;}
.y1f_c01045{bottom:774.156333px;}
.y20_c01045{bottom:774.764755px;}
.y21_c01045{bottom:774.955352px;}
.y15_c01045{bottom:810.622963px;}
.y19_c01045{bottom:810.623091px;}
.y18_c01045{bottom:810.623401px;}
.y16_c01045{bottom:810.623603px;}
.y17_c01045{bottom:810.623782px;}
.y11_c01045{bottom:846.118635px;}
.y14_c01045{bottom:846.118783px;}
.y10_c01045{bottom:846.119005px;}
.yc_c01045{bottom:846.119067px;}
.y12_c01045{bottom:846.119075px;}
.ye_c01045{bottom:846.119176px;}
.y13_c01045{bottom:846.119334px;}
.yf_c01045{bottom:846.119616px;}
.yd_c01045{bottom:846.119757px;}
.y5_c01045{bottom:917.172000px;}
.y6_c01045{bottom:917.467134px;}
.y7_c01045{bottom:918.193829px;}
.y8_c01045{bottom:918.398536px;}
.y9_c01045{bottom:918.536213px;}
.ya_c01045{bottom:918.735408px;}
.yb_c01045{bottom:920.087062px;}
.y4_c01045{bottom:1086.474000px;}
.y3_c01045{bottom:1090.660500px;}
.y2_c01045{bottom:1096.470000px;}
.y1_c01045{bottom:1100.677500px;}
.h3_c01045{height:24.000000px;}
.h2_c01045{height:72.000000px;}
.h6_c01045{height:78.001911px;}
.h4_c01045{height:96.002352px;}
.h5_c01045{height:102.002499px;}
.h0_c01045{height:1246.320000px;}
.h1_c01045{height:1246.500000px;}
.w1_c01045{width:887.250000px;}
.w0_c01045{width:887.490000px;}
.x0_c01045{left:0.000000px;}
.x20_c01045{left:8.437570px;}
.xd_c01045{left:12.139500px;}
.x27_c01045{left:19.462449px;}
.x13_c01045{left:50.219712px;}
.xe_c01045{left:54.301500px;}
.x14_c01045{left:55.889985px;}
.x1c_c01045{left:73.168797px;}
.x15_c01045{left:92.880302px;}
.x21_c01045{left:119.455570px;}
.x28_c01045{left:138.807789px;}
.x22_c01045{left:155.379070px;}
.xf_c01045{left:158.115000px;}
.x16_c01045{left:161.732172px;}
.x10_c01045{left:187.359000px;}
.x17_c01045{left:204.932793px;}
.x11_c01045{left:207.027000px;}
.x12_c01045{left:235.483500px;}
.x1d_c01045{left:236.793808px;}
.x18_c01045{left:238.952963px;}
.x29_c01045{left:253.546587px;}
.x23_c01045{left:275.866570px;}
.x2a_c01045{left:287.829328px;}
.x19_c01045{left:294.304171px;}
.x24_c01045{left:308.274070px;}
.x1e_c01045{left:338.315785px;}
.x1a_c01045{left:346.415223px;}
.x2b_c01045{left:356.693311px;}
.x1f_c01045{left:373.416007px;}
.x9_c01045{left:383.400000px;}
.x1_c01045{left:387.990000px;}
.x5_c01045{left:389.070000px;}
.x25_c01045{left:395.191570px;}
.x2c_c01045{left:416.111732px;}
.x1b_c01045{left:417.697219px;}
.x2_c01045{left:419.580000px;}
.x26_c01045{left:422.419570px;}
.xa_c01045{left:429.300000px;}
.x6_c01045{left:430.650000px;}
.xb_c01045{left:464.130000px;}
.x3_c01045{left:469.530000px;}
.x7_c01045{left:481.410000px;}
.xc_c01045{left:486.270000px;}
.x8_c01045{left:500.310000px;}
.x4_c01045{left:514.890000px;}
@media print{
.v0_c01045{vertical-align:0.000000pt;}
.ls0_c01045{letter-spacing:0.000000pt;}
.ws0_c01045{word-spacing:0.000000pt;}
.fs1_c01045{font-size:21.333333pt;}
.fs0_c01045{font-size:64.000000pt;}
.fs4_c01045{font-size:69.335032pt;}
.fs2_c01045{font-size:85.335424pt;}
.fs3_c01045{font-size:90.668888pt;}
.y0_c01045{bottom:0.000000pt;}
.y22_c01045{bottom:623.116148pt;}
.y23_c01045{bottom:623.752069pt;}
.y24_c01045{bottom:624.364661pt;}
.y25_c01045{bottom:624.547308pt;}
.y26_c01045{bottom:624.914459pt;}
.y27_c01045{bottom:625.230837pt;}
.y1a_c01045{bottom:686.273313pt;}
.y1b_c01045{bottom:686.964092pt;}
.y1c_c01045{bottom:687.187616pt;}
.y1d_c01045{bottom:687.505425pt;}
.y1e_c01045{bottom:687.937316pt;}
.y1f_c01045{bottom:688.138963pt;}
.y20_c01045{bottom:688.679783pt;}
.y21_c01045{bottom:688.849201pt;}
.y15_c01045{bottom:720.553745pt;}
.y19_c01045{bottom:720.553859pt;}
.y18_c01045{bottom:720.554135pt;}
.y16_c01045{bottom:720.554313pt;}
.y17_c01045{bottom:720.554473pt;}
.y11_c01045{bottom:752.105453pt;}
.y14_c01045{bottom:752.105585pt;}
.y10_c01045{bottom:752.105783pt;}
.yc_c01045{bottom:752.105837pt;}
.y12_c01045{bottom:752.105844pt;}
.ye_c01045{bottom:752.105935pt;}
.y13_c01045{bottom:752.106075pt;}
.yf_c01045{bottom:752.106325pt;}
.yd_c01045{bottom:752.106451pt;}
.y5_c01045{bottom:815.264000pt;}
.y6_c01045{bottom:815.526341pt;}
.y7_c01045{bottom:816.172292pt;}
.y8_c01045{bottom:816.354255pt;}
.y9_c01045{bottom:816.476633pt;}
.ya_c01045{bottom:816.653696pt;}
.yb_c01045{bottom:817.855167pt;}
.y4_c01045{bottom:965.754667pt;}
.y3_c01045{bottom:969.476000pt;}
.y2_c01045{bottom:974.640000pt;}
.y1_c01045{bottom:978.380000pt;}
.h3_c01045{height:21.333333pt;}
.h2_c01045{height:64.000000pt;}
.h6_c01045{height:69.335032pt;}
.h4_c01045{height:85.335424pt;}
.h5_c01045{height:90.668888pt;}
.h0_c01045{height:1107.840000pt;}
.h1_c01045{height:1108.000000pt;}
.w1_c01045{width:788.666667pt;}
.w0_c01045{width:788.880000pt;}
.x0_c01045{left:0.000000pt;}
.x20_c01045{left:7.500063pt;}
.xd_c01045{left:10.790667pt;}
.x27_c01045{left:17.299955pt;}
.x13_c01045{left:44.639744pt;}
.xe_c01045{left:48.268000pt;}
.x14_c01045{left:49.679987pt;}
.x1c_c01045{left:65.038931pt;}
.x15_c01045{left:82.560268pt;}
.x21_c01045{left:106.182729pt;}
.x28_c01045{left:123.384701pt;}
.x22_c01045{left:138.114729pt;}
.xf_c01045{left:140.546667pt;}
.x16_c01045{left:143.761931pt;}
.x10_c01045{left:166.541333pt;}
.x17_c01045{left:182.162483pt;}
.x11_c01045{left:184.024000pt;}
.x12_c01045{left:209.318667pt;}
.x1d_c01045{left:210.483385pt;}
.x18_c01045{left:212.402633pt;}
.x29_c01045{left:225.374744pt;}
.x23_c01045{left:245.214729pt;}
.x2a_c01045{left:255.848292pt;}
.x19_c01045{left:261.603708pt;}
.x24_c01045{left:274.021396pt;}
.x1e_c01045{left:300.725143pt;}
.x1a_c01045{left:307.924643pt;}
.x2b_c01045{left:317.060721pt;}
.x1f_c01045{left:331.925340pt;}
.x9_c01045{left:340.800000pt;}
.x1_c01045{left:344.880000pt;}
.x5_c01045{left:345.840000pt;}
.x25_c01045{left:351.281396pt;}
.x2c_c01045{left:369.877095pt;}
.x1b_c01045{left:371.286417pt;}
.x2_c01045{left:372.960000pt;}
.x26_c01045{left:375.484063pt;}
.xa_c01045{left:381.600000pt;}
.x6_c01045{left:382.800000pt;}
.xb_c01045{left:412.560000pt;}
.x3_c01045{left:417.360000pt;}
.x7_c01045{left:427.920000pt;}
.xc_c01045{left:432.240000pt;}
.x8_c01045{left:444.720000pt;}
.x4_c01045{left:457.680000pt;}
}





/* 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_c01046 {
    display:none;
  }
  .loading-indicator_c01046.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01046 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_c01046 { 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_c01046" -> "#page-container .classname_c01046")
 */
.pf_c01046 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01046 { /* 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_c01046.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01046 { /* 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_c01046 { /* 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_c01046 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01046 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01046 {overflow:visible;}
  }
}
.c_c01046 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01046 { /* 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_c01046:after { /* webkit #35443 */
  content: '';
}
.t_c01046:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01046 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 */
}
.__c01046 { /* 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_c01046 { /* info for Javascript */
  display:none;
}
.l_c01046 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01046 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01046 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01046: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_c01046 {
    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_c01046.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01046.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_c01046 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01046{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01046;src:url('chunks/assets/font_b11a17f404e7258299fdf971.woff2')format("woff");}.ff1_c01046{font-family:ff1_c01046;line-height:1.000000;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;}
.ma1_c01046{transform:matrix(0.010154,0.000478,-0.011749,0.249724,0,0);-ms-transform:matrix(0.010154,0.000478,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.010154,0.000478,-0.011749,0.249724,0,0);}
.m51_c01046{transform:matrix(0.010593,0.000498,-0.011749,0.249724,0,0);-ms-transform:matrix(0.010593,0.000498,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.010593,0.000498,-0.011749,0.249724,0,0);}
.m2d_c01046{transform:matrix(0.178210,0.007671,-0.010751,0.249769,0,0);-ms-transform:matrix(0.178210,0.007671,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.178210,0.007671,-0.010751,0.249769,0,0);}
.m72_c01046{transform:matrix(0.181369,0.008533,-0.011749,0.249724,0,0);-ms-transform:matrix(0.181369,0.008533,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.181369,0.008533,-0.011749,0.249724,0,0);}
.m33_c01046{transform:matrix(0.189430,0.008154,-0.010751,0.249769,0,0);-ms-transform:matrix(0.189430,0.008154,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.189430,0.008154,-0.010751,0.249769,0,0);}
.m9b_c01046{transform:matrix(0.189625,0.008921,-0.011749,0.249724,0,0);-ms-transform:matrix(0.189625,0.008921,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.189625,0.008921,-0.011749,0.249724,0,0);}
.m78_c01046{transform:matrix(0.190379,0.008957,-0.011749,0.249724,0,0);-ms-transform:matrix(0.190379,0.008957,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.190379,0.008957,-0.011749,0.249724,0,0);}
.mb_c01046{transform:matrix(0.190818,0.008213,-0.010751,0.249769,0,0);-ms-transform:matrix(0.190818,0.008213,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.190818,0.008213,-0.010751,0.249769,0,0);}
.m55_c01046{transform:matrix(0.191164,0.008994,-0.011749,0.249724,0,0);-ms-transform:matrix(0.191164,0.008994,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.191164,0.008994,-0.011749,0.249724,0,0);}
.m22_c01046{transform:matrix(0.191488,0.008242,-0.010751,0.249769,0,0);-ms-transform:matrix(0.191488,0.008242,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.191488,0.008242,-0.010751,0.249769,0,0);}
.m77_c01046{transform:matrix(0.191713,0.009020,-0.011749,0.249724,0,0);-ms-transform:matrix(0.191713,0.009020,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.191713,0.009020,-0.011749,0.249724,0,0);}
.m96_c01046{transform:matrix(0.194135,0.009133,-0.011749,0.249724,0,0);-ms-transform:matrix(0.194135,0.009133,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.194135,0.009133,-0.011749,0.249724,0,0);}
.m27_c01046{transform:matrix(0.196273,0.008448,-0.010751,0.249769,0,0);-ms-transform:matrix(0.196273,0.008448,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.196273,0.008448,-0.010751,0.249769,0,0);}
.m2f_c01046{transform:matrix(0.197237,0.008490,-0.010751,0.249769,0,0);-ms-transform:matrix(0.197237,0.008490,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.197237,0.008490,-0.010751,0.249769,0,0);}
.m56_c01046{transform:matrix(0.198880,0.009357,-0.011749,0.249724,0,0);-ms-transform:matrix(0.198880,0.009357,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.198880,0.009357,-0.011749,0.249724,0,0);}
.m42_c01046{transform:matrix(0.199146,0.008572,-0.010751,0.249769,0,0);-ms-transform:matrix(0.199146,0.008572,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.199146,0.008572,-0.010751,0.249769,0,0);}
.m76_c01046{transform:matrix(0.200328,0.009425,-0.011749,0.249724,0,0);-ms-transform:matrix(0.200328,0.009425,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.200328,0.009425,-0.011749,0.249724,0,0);}
.m3f_c01046{transform:matrix(0.201309,0.008665,-0.010751,0.249769,0,0);-ms-transform:matrix(0.201309,0.008665,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.201309,0.008665,-0.010751,0.249769,0,0);}
.m37_c01046{transform:matrix(0.203666,0.008766,-0.010751,0.249769,0,0);-ms-transform:matrix(0.203666,0.008766,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.203666,0.008766,-0.010751,0.249769,0,0);}
.mb0_c01046{transform:matrix(0.203929,0.010411,-0.012746,0.249675,0,0);-ms-transform:matrix(0.203929,0.010411,-0.012746,0.249675,0,0);-webkit-transform:matrix(0.203929,0.010411,-0.012746,0.249675,0,0);}
.m28_c01046{transform:matrix(0.204116,0.008786,-0.010751,0.249769,0,0);-ms-transform:matrix(0.204116,0.008786,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.204116,0.008786,-0.010751,0.249769,0,0);}
.m94_c01046{transform:matrix(0.204234,0.009609,-0.011749,0.249724,0,0);-ms-transform:matrix(0.204234,0.009609,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.204234,0.009609,-0.011749,0.249724,0,0);}
.m6c_c01046{transform:matrix(0.204239,0.009609,-0.011749,0.249724,0,0);-ms-transform:matrix(0.204239,0.009609,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.204239,0.009609,-0.011749,0.249724,0,0);}
.m9_c01046{transform:matrix(0.204626,0.008808,-0.010751,0.249769,0,0);-ms-transform:matrix(0.204626,0.008808,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.204626,0.008808,-0.010751,0.249769,0,0);}
.m70_c01046{transform:matrix(0.204828,0.009637,-0.011749,0.249724,0,0);-ms-transform:matrix(0.204828,0.009637,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.204828,0.009637,-0.011749,0.249724,0,0);}
.m25_c01046{transform:matrix(0.205155,0.008830,-0.010751,0.249769,0,0);-ms-transform:matrix(0.205155,0.008830,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.205155,0.008830,-0.010751,0.249769,0,0);}
.m74_c01046{transform:matrix(0.205268,0.009657,-0.011749,0.249724,0,0);-ms-transform:matrix(0.205268,0.009657,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.205268,0.009657,-0.011749,0.249724,0,0);}
.m53_c01046{transform:matrix(0.207011,0.009739,-0.011749,0.249724,0,0);-ms-transform:matrix(0.207011,0.009739,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.207011,0.009739,-0.011749,0.249724,0,0);}
.m91_c01046{transform:matrix(0.207545,0.009764,-0.011749,0.249724,0,0);-ms-transform:matrix(0.207545,0.009764,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.207545,0.009764,-0.011749,0.249724,0,0);}
.m97_c01046{transform:matrix(0.207665,0.009770,-0.011749,0.249724,0,0);-ms-transform:matrix(0.207665,0.009770,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.207665,0.009770,-0.011749,0.249724,0,0);}
.m34_c01046{transform:matrix(0.208362,0.008969,-0.010751,0.249769,0,0);-ms-transform:matrix(0.208362,0.008969,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.208362,0.008969,-0.010751,0.249769,0,0);}
.m79_c01046{transform:matrix(0.209563,0.009859,-0.011749,0.249724,0,0);-ms-transform:matrix(0.209563,0.009859,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.209563,0.009859,-0.011749,0.249724,0,0);}
.m2a_c01046{transform:matrix(0.209611,0.009022,-0.010751,0.249769,0,0);-ms-transform:matrix(0.209611,0.009022,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.209611,0.009022,-0.010751,0.249769,0,0);}
.m9f_c01046{transform:matrix(0.210377,0.009898,-0.011749,0.249724,0,0);-ms-transform:matrix(0.210377,0.009898,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.210377,0.009898,-0.011749,0.249724,0,0);}
.m5b_c01046{transform:matrix(0.211077,0.009931,-0.011749,0.249724,0,0);-ms-transform:matrix(0.211077,0.009931,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.211077,0.009931,-0.011749,0.249724,0,0);}
.m5c_c01046{transform:matrix(0.211331,0.009943,-0.011749,0.249724,0,0);-ms-transform:matrix(0.211331,0.009943,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.211331,0.009943,-0.011749,0.249724,0,0);}
.m6b_c01046{transform:matrix(0.211736,0.009962,-0.011749,0.249724,0,0);-ms-transform:matrix(0.211736,0.009962,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.211736,0.009962,-0.011749,0.249724,0,0);}
.m63_c01046{transform:matrix(0.212375,0.009992,-0.011749,0.249724,0,0);-ms-transform:matrix(0.212375,0.009992,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.212375,0.009992,-0.011749,0.249724,0,0);}
.m31_c01046{transform:matrix(0.213188,0.009176,-0.010751,0.249769,0,0);-ms-transform:matrix(0.213188,0.009176,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.213188,0.009176,-0.010751,0.249769,0,0);}
.m99_c01046{transform:matrix(0.213843,0.010061,-0.011749,0.249724,0,0);-ms-transform:matrix(0.213843,0.010061,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.213843,0.010061,-0.011749,0.249724,0,0);}
.m58_c01046{transform:matrix(0.214028,0.010069,-0.011749,0.249724,0,0);-ms-transform:matrix(0.214028,0.010069,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.214028,0.010069,-0.011749,0.249724,0,0);}
.m44_c01046{transform:matrix(0.214082,0.009215,-0.010751,0.249769,0,0);-ms-transform:matrix(0.214082,0.009215,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.214082,0.009215,-0.010751,0.249769,0,0);}
.m73_c01046{transform:matrix(0.214448,0.010089,-0.011749,0.249724,0,0);-ms-transform:matrix(0.214448,0.010089,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.214448,0.010089,-0.011749,0.249724,0,0);}
.m4e_c01046{transform:matrix(0.215547,0.010141,-0.011749,0.249724,0,0);-ms-transform:matrix(0.215547,0.010141,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.215547,0.010141,-0.011749,0.249724,0,0);}
.m2c_c01046{transform:matrix(0.215590,0.009280,-0.010751,0.249769,0,0);-ms-transform:matrix(0.215590,0.009280,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.215590,0.009280,-0.010751,0.249769,0,0);}
.m65_c01046{transform:matrix(0.215617,0.010144,-0.011749,0.249724,0,0);-ms-transform:matrix(0.215617,0.010144,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.215617,0.010144,-0.011749,0.249724,0,0);}
.m75_c01046{transform:matrix(0.216535,0.010187,-0.011749,0.249724,0,0);-ms-transform:matrix(0.216535,0.010187,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.216535,0.010187,-0.011749,0.249724,0,0);}
.m7b_c01046{transform:matrix(0.217849,0.010249,-0.011749,0.249724,0,0);-ms-transform:matrix(0.217849,0.010249,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.217849,0.010249,-0.011749,0.249724,0,0);}
.m67_c01046{transform:matrix(0.218378,0.010274,-0.011749,0.249724,0,0);-ms-transform:matrix(0.218378,0.010274,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.218378,0.010274,-0.011749,0.249724,0,0);}
.m71_c01046{transform:matrix(0.218493,0.010279,-0.011749,0.249724,0,0);-ms-transform:matrix(0.218493,0.010279,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.218493,0.010279,-0.011749,0.249724,0,0);}
.m93_c01046{transform:matrix(0.218513,0.010280,-0.011749,0.249724,0,0);-ms-transform:matrix(0.218513,0.010280,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.218513,0.010280,-0.011749,0.249724,0,0);}
.m6d_c01046{transform:matrix(0.219347,0.010320,-0.011749,0.249724,0,0);-ms-transform:matrix(0.219347,0.010320,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.219347,0.010320,-0.011749,0.249724,0,0);}
.m9d_c01046{transform:matrix(0.220336,0.010366,-0.011749,0.249724,0,0);-ms-transform:matrix(0.220336,0.010366,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.220336,0.010366,-0.011749,0.249724,0,0);}
.m40_c01046{transform:matrix(0.220681,0.009499,-0.010751,0.249769,0,0);-ms-transform:matrix(0.220681,0.009499,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.220681,0.009499,-0.010751,0.249769,0,0);}
.ma0_c01046{transform:matrix(0.220816,0.010389,-0.011749,0.249724,0,0);-ms-transform:matrix(0.220816,0.010389,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.220816,0.010389,-0.011749,0.249724,0,0);}
.m46_c01046{transform:matrix(0.222034,0.009557,-0.010751,0.249769,0,0);-ms-transform:matrix(0.222034,0.009557,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.222034,0.009557,-0.010751,0.249769,0,0);}
.m47_c01046{transform:matrix(0.222254,0.010456,-0.011749,0.249724,0,0);-ms-transform:matrix(0.222254,0.010456,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.222254,0.010456,-0.011749,0.249724,0,0);}
.m23_c01046{transform:matrix(0.222824,0.009591,-0.010751,0.249769,0,0);-ms-transform:matrix(0.222824,0.009591,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.222824,0.009591,-0.010751,0.249769,0,0);}
.me_c01046{transform:matrix(0.222974,0.009597,-0.010751,0.249769,0,0);-ms-transform:matrix(0.222974,0.009597,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.222974,0.009597,-0.010751,0.249769,0,0);}
.m5_c01046{transform:matrix(0.223063,0.009601,-0.010751,0.249769,0,0);-ms-transform:matrix(0.223063,0.009601,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.223063,0.009601,-0.010751,0.249769,0,0);}
.m39_c01046{transform:matrix(0.223176,0.006472,-0.007247,0.249895,0,0);-ms-transform:matrix(0.223176,0.006472,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.223176,0.006472,-0.007247,0.249895,0,0);}
.m92_c01046{transform:matrix(0.223288,0.010505,-0.011749,0.249724,0,0);-ms-transform:matrix(0.223288,0.010505,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.223288,0.010505,-0.011749,0.249724,0,0);}
.m10_c01046{transform:matrix(0.223678,0.009628,-0.010751,0.249769,0,0);-ms-transform:matrix(0.223678,0.009628,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.223678,0.009628,-0.010751,0.249769,0,0);}
.m2b_c01046{transform:matrix(0.224237,0.009652,-0.010751,0.249769,0,0);-ms-transform:matrix(0.224237,0.009652,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.224237,0.009652,-0.010751,0.249769,0,0);}
.m48_c01046{transform:matrix(0.224477,0.010561,-0.011749,0.249724,0,0);-ms-transform:matrix(0.224477,0.010561,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.224477,0.010561,-0.011749,0.249724,0,0);}
.m4b_c01046{transform:matrix(0.224487,0.010561,-0.011749,0.249724,0,0);-ms-transform:matrix(0.224487,0.010561,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.224487,0.010561,-0.011749,0.249724,0,0);}
.m84_c01046{transform:matrix(0.224502,0.010562,-0.011749,0.249724,0,0);-ms-transform:matrix(0.224502,0.010562,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.224502,0.010562,-0.011749,0.249724,0,0);}
.m43_c01046{transform:matrix(0.224662,0.009670,-0.010751,0.249769,0,0);-ms-transform:matrix(0.224662,0.009670,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.224662,0.009670,-0.010751,0.249769,0,0);}
.m29_c01046{transform:matrix(0.224682,0.009671,-0.010751,0.249769,0,0);-ms-transform:matrix(0.224682,0.009671,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.224682,0.009671,-0.010751,0.249769,0,0);}
.m24_c01046{transform:matrix(0.225186,0.009693,-0.010751,0.249769,0,0);-ms-transform:matrix(0.225186,0.009693,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.225186,0.009693,-0.010751,0.249769,0,0);}
.m45_c01046{transform:matrix(0.225241,0.009695,-0.010751,0.249769,0,0);-ms-transform:matrix(0.225241,0.009695,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.225241,0.009695,-0.010751,0.249769,0,0);}
.m35_c01046{transform:matrix(0.225306,0.009698,-0.010751,0.249769,0,0);-ms-transform:matrix(0.225306,0.009698,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.225306,0.009698,-0.010751,0.249769,0,0);}
.m66_c01046{transform:matrix(0.225471,0.010608,-0.011749,0.249724,0,0);-ms-transform:matrix(0.225471,0.010608,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.225471,0.010608,-0.011749,0.249724,0,0);}
.m52_c01046{transform:matrix(0.225870,0.010627,-0.011749,0.249724,0,0);-ms-transform:matrix(0.225870,0.010627,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.225870,0.010627,-0.011749,0.249724,0,0);}
.m54_c01046{transform:matrix(0.226290,0.010646,-0.011749,0.249724,0,0);-ms-transform:matrix(0.226290,0.010646,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.226290,0.010646,-0.011749,0.249724,0,0);}
.m7a_c01046{transform:matrix(0.226455,0.010654,-0.011749,0.249724,0,0);-ms-transform:matrix(0.226455,0.010654,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.226455,0.010654,-0.011749,0.249724,0,0);}
.m3b_c01046{transform:matrix(0.226870,0.006579,-0.007247,0.249895,0,0);-ms-transform:matrix(0.226870,0.006579,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.226870,0.006579,-0.007247,0.249895,0,0);}
.m9e_c01046{transform:matrix(0.227483,0.010702,-0.011749,0.249724,0,0);-ms-transform:matrix(0.227483,0.010702,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.227483,0.010702,-0.011749,0.249724,0,0);}
.m49_c01046{transform:matrix(0.227908,0.010722,-0.011749,0.249724,0,0);-ms-transform:matrix(0.227908,0.010722,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.227908,0.010722,-0.011749,0.249724,0,0);}
.m30_c01046{transform:matrix(0.228493,0.009835,-0.010751,0.249769,0,0);-ms-transform:matrix(0.228493,0.009835,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.228493,0.009835,-0.010751,0.249769,0,0);}
.maa_c01046{transform:matrix(0.229226,0.011702,-0.012746,0.249675,0,0);-ms-transform:matrix(0.229226,0.011702,-0.012746,0.249675,0,0);-webkit-transform:matrix(0.229226,0.011702,-0.012746,0.249675,0,0);}
.m6f_c01046{transform:matrix(0.229686,0.010806,-0.011749,0.249724,0,0);-ms-transform:matrix(0.229686,0.010806,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.229686,0.010806,-0.011749,0.249724,0,0);}
.m41_c01046{transform:matrix(0.229987,0.009899,-0.010751,0.249769,0,0);-ms-transform:matrix(0.229987,0.009899,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.229987,0.009899,-0.010751,0.249769,0,0);}
.m5a_c01046{transform:matrix(0.230285,0.010834,-0.011749,0.249724,0,0);-ms-transform:matrix(0.230285,0.010834,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.230285,0.010834,-0.011749,0.249724,0,0);}
.m26_c01046{transform:matrix(0.230412,0.009918,-0.010751,0.249769,0,0);-ms-transform:matrix(0.230412,0.009918,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.230412,0.009918,-0.010751,0.249769,0,0);}
.m6e_c01046{transform:matrix(0.230690,0.010853,-0.011749,0.249724,0,0);-ms-transform:matrix(0.230690,0.010853,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.230690,0.010853,-0.011749,0.249724,0,0);}
.m32_c01046{transform:matrix(0.231036,0.009944,-0.010751,0.249769,0,0);-ms-transform:matrix(0.231036,0.009944,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.231036,0.009944,-0.010751,0.249769,0,0);}
.m2e_c01046{transform:matrix(0.231670,0.009972,-0.010751,0.249769,0,0);-ms-transform:matrix(0.231670,0.009972,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.231670,0.009972,-0.010751,0.249769,0,0);}
.m3c_c01046{transform:matrix(0.232417,0.006740,-0.007247,0.249895,0,0);-ms-transform:matrix(0.232417,0.006740,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.232417,0.006740,-0.007247,0.249895,0,0);}
.m59_c01046{transform:matrix(0.232857,0.010955,-0.011749,0.249724,0,0);-ms-transform:matrix(0.232857,0.010955,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.232857,0.010955,-0.011749,0.249724,0,0);}
.ma2_c01046{transform:matrix(0.233431,0.011917,-0.012746,0.249675,0,0);-ms-transform:matrix(0.233431,0.011917,-0.012746,0.249675,0,0);-webkit-transform:matrix(0.233431,0.011917,-0.012746,0.249675,0,0);}
.m21_c01046{transform:matrix(0.234433,0.010091,-0.010751,0.249769,0,0);-ms-transform:matrix(0.234433,0.010091,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.234433,0.010091,-0.010751,0.249769,0,0);}
.m9a_c01046{transform:matrix(0.234820,0.011048,-0.011749,0.249724,0,0);-ms-transform:matrix(0.234820,0.011048,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.234820,0.011048,-0.011749,0.249724,0,0);}
.m5e_c01046{transform:matrix(0.235005,0.011056,-0.011749,0.249724,0,0);-ms-transform:matrix(0.235005,0.011056,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.235005,0.011056,-0.011749,0.249724,0,0);}
.mb1_c01046{transform:matrix(0.235448,0.012020,-0.012746,0.249675,0,0);-ms-transform:matrix(0.235448,0.012020,-0.012746,0.249675,0,0);-webkit-transform:matrix(0.235448,0.012020,-0.012746,0.249675,0,0);}
.md_c01046{transform:matrix(0.236256,0.010169,-0.010751,0.249769,0,0);-ms-transform:matrix(0.236256,0.010169,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.236256,0.010169,-0.010751,0.249769,0,0);}
.mf_c01046{transform:matrix(0.236286,0.010170,-0.010751,0.249769,0,0);-ms-transform:matrix(0.236286,0.010170,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.236286,0.010170,-0.010751,0.249769,0,0);}
.m98_c01046{transform:matrix(0.236553,0.011129,-0.011749,0.249724,0,0);-ms-transform:matrix(0.236553,0.011129,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.236553,0.011129,-0.011749,0.249724,0,0);}
.m9c_c01046{transform:matrix(0.237477,0.011173,-0.011749,0.249724,0,0);-ms-transform:matrix(0.237477,0.011173,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.237477,0.011173,-0.011749,0.249724,0,0);}
.m38_c01046{transform:matrix(0.238755,0.006924,-0.007247,0.249895,0,0);-ms-transform:matrix(0.238755,0.006924,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.238755,0.006924,-0.007247,0.249895,0,0);}
.m6a_c01046{transform:matrix(0.238936,0.011241,-0.011749,0.249724,0,0);-ms-transform:matrix(0.238936,0.011241,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.238936,0.011241,-0.011749,0.249724,0,0);}
.ma3_c01046{transform:matrix(0.238984,0.012200,-0.012746,0.249675,0,0);-ms-transform:matrix(0.238984,0.012200,-0.012746,0.249675,0,0);-webkit-transform:matrix(0.238984,0.012200,-0.012746,0.249675,0,0);}
.m64_c01046{transform:matrix(0.239380,0.011262,-0.011749,0.249724,0,0);-ms-transform:matrix(0.239380,0.011262,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.239380,0.011262,-0.011749,0.249724,0,0);}
.mab_c01046{transform:matrix(0.239753,0.012240,-0.012746,0.249675,0,0);-ms-transform:matrix(0.239753,0.012240,-0.012746,0.249675,0,0);-webkit-transform:matrix(0.239753,0.012240,-0.012746,0.249675,0,0);}
.m95_c01046{transform:matrix(0.240034,0.011293,-0.011749,0.249724,0,0);-ms-transform:matrix(0.240034,0.011293,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.240034,0.011293,-0.011749,0.249724,0,0);}
.m0_c01046{transform:matrix(0.240412,0.010348,-0.010751,0.249769,0,0);-ms-transform:matrix(0.240412,0.010348,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.240412,0.010348,-0.010751,0.249769,0,0);}
.m83_c01046{transform:matrix(0.241753,0.011374,-0.011749,0.249724,0,0);-ms-transform:matrix(0.241753,0.011374,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.241753,0.011374,-0.011749,0.249724,0,0);}
.m3d_c01046{transform:matrix(0.241913,0.007015,-0.007247,0.249895,0,0);-ms-transform:matrix(0.241913,0.007015,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.241913,0.007015,-0.007247,0.249895,0,0);}
.ma_c01046{transform:matrix(0.241916,0.010413,-0.010751,0.249769,0,0);-ms-transform:matrix(0.241916,0.010413,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.241916,0.010413,-0.010751,0.249769,0,0);}
.m11_c01046{transform:matrix(0.242271,0.010428,-0.010751,0.249769,0,0);-ms-transform:matrix(0.242271,0.010428,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.242271,0.010428,-0.010751,0.249769,0,0);}
.m1d_c01046{transform:matrix(0.242321,0.010430,-0.010751,0.249769,0,0);-ms-transform:matrix(0.242321,0.010430,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.242321,0.010430,-0.010751,0.249769,0,0);}
.m57_c01046{transform:matrix(0.242387,0.011404,-0.011749,0.249724,0,0);-ms-transform:matrix(0.242387,0.011404,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.242387,0.011404,-0.011749,0.249724,0,0);}
.m80_c01046{transform:matrix(0.243226,0.011443,-0.011749,0.249724,0,0);-ms-transform:matrix(0.243226,0.011443,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.243226,0.011443,-0.011749,0.249724,0,0);}
.m18_c01046{transform:matrix(0.243270,0.010471,-0.010751,0.249769,0,0);-ms-transform:matrix(0.243270,0.010471,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.243270,0.010471,-0.010751,0.249769,0,0);}
.m3e_c01046{transform:matrix(0.243273,0.007055,-0.007247,0.249895,0,0);-ms-transform:matrix(0.243273,0.007055,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.243273,0.007055,-0.007247,0.249895,0,0);}
.m16_c01046{transform:matrix(0.243904,0.010498,-0.010751,0.249769,0,0);-ms-transform:matrix(0.243904,0.010498,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.243904,0.010498,-0.010751,0.249769,0,0);}
.m1b_c01046{transform:matrix(0.244244,0.010513,-0.010751,0.249769,0,0);-ms-transform:matrix(0.244244,0.010513,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.244244,0.010513,-0.010751,0.249769,0,0);}
.m61_c01046{transform:matrix(0.244335,0.011495,-0.011749,0.249724,0,0);-ms-transform:matrix(0.244335,0.011495,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.244335,0.011495,-0.011749,0.249724,0,0);}
.m12_c01046{transform:matrix(0.244554,0.010526,-0.010751,0.249769,0,0);-ms-transform:matrix(0.244554,0.010526,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.244554,0.010526,-0.010751,0.249769,0,0);}
.mae_c01046{transform:matrix(0.244706,0.012493,-0.012746,0.249675,0,0);-ms-transform:matrix(0.244706,0.012493,-0.012746,0.249675,0,0);-webkit-transform:matrix(0.244706,0.012493,-0.012746,0.249675,0,0);}
.m7f_c01046{transform:matrix(0.245119,0.011532,-0.011749,0.249724,0,0);-ms-transform:matrix(0.245119,0.011532,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.245119,0.011532,-0.011749,0.249724,0,0);}
.m60_c01046{transform:matrix(0.246567,0.011600,-0.011749,0.249724,0,0);-ms-transform:matrix(0.246567,0.011600,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.246567,0.011600,-0.011749,0.249724,0,0);}
.m5f_c01046{transform:matrix(0.246582,0.011601,-0.011749,0.249724,0,0);-ms-transform:matrix(0.246582,0.011601,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.246582,0.011601,-0.011749,0.249724,0,0);}
.m5d_c01046{transform:matrix(0.248700,0.011701,-0.011749,0.249724,0,0);-ms-transform:matrix(0.248700,0.011701,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.248700,0.011701,-0.011749,0.249724,0,0);}
.m14_c01046{transform:matrix(0.249274,0.010730,-0.010751,0.249769,0,0);-ms-transform:matrix(0.249274,0.010730,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.249274,0.010730,-0.010751,0.249769,0,0);}
.mb7_c01046{transform:matrix(0.249485,0.009490,-0.009503,0.249819,0,0);-ms-transform:matrix(0.249485,0.009490,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.249485,0.009490,-0.009503,0.249819,0,0);}
.m36_c01046{transform:matrix(0.249824,0.010753,-0.010751,0.249769,0,0);-ms-transform:matrix(0.249824,0.010753,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.249824,0.010753,-0.010751,0.249769,0,0);}
.m85_c01046{transform:matrix(0.250113,0.011767,-0.011749,0.249724,0,0);-ms-transform:matrix(0.250113,0.011767,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.250113,0.011767,-0.011749,0.249724,0,0);}
.m3a_c01046{transform:matrix(0.251539,0.007295,-0.007247,0.249895,0,0);-ms-transform:matrix(0.251539,0.007295,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.251539,0.007295,-0.007247,0.249895,0,0);}
.m20_c01046{transform:matrix(0.252022,0.010848,-0.010751,0.249769,0,0);-ms-transform:matrix(0.252022,0.010848,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.252022,0.010848,-0.010751,0.249769,0,0);}
.mad_c01046{transform:matrix(0.252261,0.012878,-0.012746,0.249675,0,0);-ms-transform:matrix(0.252261,0.012878,-0.012746,0.249675,0,0);-webkit-transform:matrix(0.252261,0.012878,-0.012746,0.249675,0,0);}
.m62_c01046{transform:matrix(0.252436,0.011876,-0.011749,0.249724,0,0);-ms-transform:matrix(0.252436,0.011876,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.252436,0.011876,-0.011749,0.249724,0,0);}
.ma5_c01046{transform:matrix(0.252551,0.012893,-0.012746,0.249675,0,0);-ms-transform:matrix(0.252551,0.012893,-0.012746,0.249675,0,0);-webkit-transform:matrix(0.252551,0.012893,-0.012746,0.249675,0,0);}
.mb3_c01046{transform:matrix(0.252801,0.012906,-0.012746,0.249675,0,0);-ms-transform:matrix(0.252801,0.012906,-0.012746,0.249675,0,0);-webkit-transform:matrix(0.252801,0.012906,-0.012746,0.249675,0,0);}
.m7_c01046{transform:matrix(0.252976,0.010889,-0.010751,0.249769,0,0);-ms-transform:matrix(0.252976,0.010889,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.252976,0.010889,-0.010751,0.249769,0,0);}
.m15_c01046{transform:matrix(0.253305,0.010903,-0.010751,0.249769,0,0);-ms-transform:matrix(0.253305,0.010903,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.253305,0.010903,-0.010751,0.249769,0,0);}
.m8f_c01046{transform:matrix(0.253415,0.011922,-0.011749,0.249724,0,0);-ms-transform:matrix(0.253415,0.011922,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.253415,0.011922,-0.011749,0.249724,0,0);}
.maf_c01046{transform:matrix(0.255003,0.013018,-0.012746,0.249675,0,0);-ms-transform:matrix(0.255003,0.013018,-0.012746,0.249675,0,0);-webkit-transform:matrix(0.255003,0.013018,-0.012746,0.249675,0,0);}
.mc_c01046{transform:matrix(0.255468,0.010996,-0.010751,0.249769,0,0);-ms-transform:matrix(0.255468,0.010996,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.255468,0.010996,-0.010751,0.249769,0,0);}
.m19_c01046{transform:matrix(0.256403,0.011036,-0.010751,0.249769,0,0);-ms-transform:matrix(0.256403,0.011036,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.256403,0.011036,-0.010751,0.249769,0,0);}
.m81_c01046{transform:matrix(0.257320,0.012106,-0.011749,0.249724,0,0);-ms-transform:matrix(0.257320,0.012106,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.257320,0.012106,-0.011749,0.249724,0,0);}
.m4d_c01046{transform:matrix(0.257475,0.012113,-0.011749,0.249724,0,0);-ms-transform:matrix(0.257475,0.012113,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.257475,0.012113,-0.011749,0.249724,0,0);}
.mac_c01046{transform:matrix(0.261629,0.013356,-0.012746,0.249675,0,0);-ms-transform:matrix(0.261629,0.013356,-0.012746,0.249675,0,0);-webkit-transform:matrix(0.261629,0.013356,-0.012746,0.249675,0,0);}
.m4_c01046{transform:matrix(0.263326,0.011334,-0.010751,0.249769,0,0);-ms-transform:matrix(0.263326,0.011334,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.263326,0.011334,-0.010751,0.249769,0,0);}
.m4c_c01046{transform:matrix(0.263958,0.012418,-0.011749,0.249724,0,0);-ms-transform:matrix(0.263958,0.012418,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.263958,0.012418,-0.011749,0.249724,0,0);}
.mb9_c01046{transform:matrix(0.265398,0.010095,-0.009503,0.249819,0,0);-ms-transform:matrix(0.265398,0.010095,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.265398,0.010095,-0.009503,0.249819,0,0);}
.m1e_c01046{transform:matrix(0.265414,0.011424,-0.010751,0.249769,0,0);-ms-transform:matrix(0.265414,0.011424,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.265414,0.011424,-0.010751,0.249769,0,0);}
.mb8_c01046{transform:matrix(0.265708,0.010107,-0.009503,0.249819,0,0);-ms-transform:matrix(0.265708,0.010107,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.265708,0.010107,-0.009503,0.249819,0,0);}
.m4a_c01046{transform:matrix(0.267100,0.012566,-0.011749,0.249724,0,0);-ms-transform:matrix(0.267100,0.012566,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.267100,0.012566,-0.011749,0.249724,0,0);}
.m8_c01046{transform:matrix(0.267687,0.011522,-0.010751,0.249769,0,0);-ms-transform:matrix(0.267687,0.011522,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.267687,0.011522,-0.010751,0.249769,0,0);}
.mb6_c01046{transform:matrix(0.268161,0.010200,-0.009503,0.249819,0,0);-ms-transform:matrix(0.268161,0.010200,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.268161,0.010200,-0.009503,0.249819,0,0);}
.m17_c01046{transform:matrix(0.269001,0.011579,-0.010751,0.249769,0,0);-ms-transform:matrix(0.269001,0.011579,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.269001,0.011579,-0.010751,0.249769,0,0);}
.mb4_c01046{transform:matrix(0.269384,0.013752,-0.012746,0.249675,0,0);-ms-transform:matrix(0.269384,0.013752,-0.012746,0.249675,0,0);-webkit-transform:matrix(0.269384,0.013752,-0.012746,0.249675,0,0);}
.m4f_c01046{transform:matrix(0.269532,0.012681,-0.011749,0.249724,0,0);-ms-transform:matrix(0.269532,0.012681,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.269532,0.012681,-0.011749,0.249724,0,0);}
.m2_c01046{transform:matrix(0.270205,0.011630,-0.010751,0.249769,0,0);-ms-transform:matrix(0.270205,0.011630,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.270205,0.011630,-0.010751,0.249769,0,0);}
.m82_c01046{transform:matrix(0.270741,0.012738,-0.011749,0.249724,0,0);-ms-transform:matrix(0.270741,0.012738,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.270741,0.012738,-0.011749,0.249724,0,0);}
.ma8_c01046{transform:matrix(0.271601,0.013866,-0.012746,0.249675,0,0);-ms-transform:matrix(0.271601,0.013866,-0.012746,0.249675,0,0);-webkit-transform:matrix(0.271601,0.013866,-0.012746,0.249675,0,0);}
.ma4_c01046{transform:matrix(0.272445,0.013909,-0.012746,0.249675,0,0);-ms-transform:matrix(0.272445,0.013909,-0.012746,0.249675,0,0);-webkit-transform:matrix(0.272445,0.013909,-0.012746,0.249675,0,0);}
.ma9_c01046{transform:matrix(0.272775,0.013925,-0.012746,0.249675,0,0);-ms-transform:matrix(0.272775,0.013925,-0.012746,0.249675,0,0);-webkit-transform:matrix(0.272775,0.013925,-0.012746,0.249675,0,0);}
.ma6_c01046{transform:matrix(0.273024,0.013938,-0.012746,0.249675,0,0);-ms-transform:matrix(0.273024,0.013938,-0.012746,0.249675,0,0);-webkit-transform:matrix(0.273024,0.013938,-0.012746,0.249675,0,0);}
.m69_c01046{transform:matrix(0.273512,0.012868,-0.011749,0.249724,0,0);-ms-transform:matrix(0.273512,0.012868,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.273512,0.012868,-0.011749,0.249724,0,0);}
.m13_c01046{transform:matrix(0.273622,0.011778,-0.010751,0.249769,0,0);-ms-transform:matrix(0.273622,0.011778,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.273622,0.011778,-0.010751,0.249769,0,0);}
.m8a_c01046{transform:matrix(0.275006,0.012938,-0.011749,0.249724,0,0);-ms-transform:matrix(0.275006,0.012938,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.275006,0.012938,-0.011749,0.249724,0,0);}
.m1f_c01046{transform:matrix(0.275780,0.011870,-0.010751,0.249769,0,0);-ms-transform:matrix(0.275780,0.011870,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.275780,0.011870,-0.010751,0.249769,0,0);}
.ma7_c01046{transform:matrix(0.275836,0.014082,-0.012746,0.249675,0,0);-ms-transform:matrix(0.275836,0.014082,-0.012746,0.249675,0,0);-webkit-transform:matrix(0.275836,0.014082,-0.012746,0.249675,0,0);}
.m50_c01046{transform:matrix(0.277163,0.013040,-0.011749,0.249724,0,0);-ms-transform:matrix(0.277163,0.013040,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.277163,0.013040,-0.011749,0.249724,0,0);}
.m1_c01046{transform:matrix(0.277488,0.011944,-0.010751,0.249769,0,0);-ms-transform:matrix(0.277488,0.011944,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.277488,0.011944,-0.010751,0.249769,0,0);}
.m1a_c01046{transform:matrix(0.277823,0.011958,-0.010751,0.249769,0,0);-ms-transform:matrix(0.277823,0.011958,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.277823,0.011958,-0.010751,0.249769,0,0);}
.mb2_c01046{transform:matrix(0.279201,0.014254,-0.012746,0.249675,0,0);-ms-transform:matrix(0.279201,0.014254,-0.012746,0.249675,0,0);-webkit-transform:matrix(0.279201,0.014254,-0.012746,0.249675,0,0);}
.m89_c01046{transform:matrix(0.279236,0.013137,-0.011749,0.249724,0,0);-ms-transform:matrix(0.279236,0.013137,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.279236,0.013137,-0.011749,0.249724,0,0);}
.m7e_c01046{transform:matrix(0.279531,0.013151,-0.011749,0.249724,0,0);-ms-transform:matrix(0.279531,0.013151,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.279531,0.013151,-0.011749,0.249724,0,0);}
.m1c_c01046{transform:matrix(0.279841,0.012045,-0.010751,0.249769,0,0);-ms-transform:matrix(0.279841,0.012045,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.279841,0.012045,-0.010751,0.249769,0,0);}
.m87_c01046{transform:matrix(0.280515,0.013197,-0.011749,0.249724,0,0);-ms-transform:matrix(0.280515,0.013197,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.280515,0.013197,-0.011749,0.249724,0,0);}
.m7c_c01046{transform:matrix(0.280974,0.013219,-0.011749,0.249724,0,0);-ms-transform:matrix(0.280974,0.013219,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.280974,0.013219,-0.011749,0.249724,0,0);}
.m6_c01046{transform:matrix(0.281909,0.012134,-0.010751,0.249769,0,0);-ms-transform:matrix(0.281909,0.012134,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.281909,0.012134,-0.010751,0.249769,0,0);}
.m7d_c01046{transform:matrix(0.283207,0.013324,-0.011749,0.249724,0,0);-ms-transform:matrix(0.283207,0.013324,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.283207,0.013324,-0.011749,0.249724,0,0);}
.mb5_c01046{transform:matrix(0.291715,0.014892,-0.012746,0.249675,0,0);-ms-transform:matrix(0.291715,0.014892,-0.012746,0.249675,0,0);-webkit-transform:matrix(0.291715,0.014892,-0.012746,0.249675,0,0);}
.m8e_c01046{transform:matrix(0.293565,0.013811,-0.011749,0.249724,0,0);-ms-transform:matrix(0.293565,0.013811,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.293565,0.013811,-0.011749,0.249724,0,0);}
.m8b_c01046{transform:matrix(0.296018,0.013927,-0.011749,0.249724,0,0);-ms-transform:matrix(0.296018,0.013927,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.296018,0.013927,-0.011749,0.249724,0,0);}
.m90_c01046{transform:matrix(0.303170,0.014263,-0.011749,0.249724,0,0);-ms-transform:matrix(0.303170,0.014263,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.303170,0.014263,-0.011749,0.249724,0,0);}
.m8d_c01046{transform:matrix(0.307315,0.014458,-0.011749,0.249724,0,0);-ms-transform:matrix(0.307315,0.014458,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.307315,0.014458,-0.011749,0.249724,0,0);}
.m86_c01046{transform:matrix(0.320491,0.015078,-0.011749,0.249724,0,0);-ms-transform:matrix(0.320491,0.015078,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.320491,0.015078,-0.011749,0.249724,0,0);}
.m8c_c01046{transform:matrix(0.335978,0.015807,-0.011749,0.249724,0,0);-ms-transform:matrix(0.335978,0.015807,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.335978,0.015807,-0.011749,0.249724,0,0);}
.m3_c01046{transform:matrix(0.358593,0.015435,-0.010751,0.249769,0,0);-ms-transform:matrix(0.358593,0.015435,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.358593,0.015435,-0.010751,0.249769,0,0);}
.m88_c01046{transform:matrix(0.407594,0.019176,-0.011749,0.249724,0,0);-ms-transform:matrix(0.407594,0.019176,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.407594,0.019176,-0.011749,0.249724,0,0);}
.m68_c01046{transform:matrix(0.637700,0.030002,-0.011749,0.249724,0,0);-ms-transform:matrix(0.637700,0.030002,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.637700,0.030002,-0.011749,0.249724,0,0);}
.v0_c01046{vertical-align:0.000000px;}
.ls0_c01046{letter-spacing:0.000000px;}
.sc__c01046{text-shadow:none;}
.sc0_c01046{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__c01046{-webkit-text-stroke:0px transparent;}
.sc0_c01046{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01046{word-spacing:0.000000px;}
._0_c01046{width:28.904350px;}
._1_c01046{width:31.701435px;}
.fc0_c01046{color:transparent;}
.fs8_c01046{font-size:66.006930px;}
.fsa_c01046{font-size:71.980017px;}
.fs0_c01046{font-size:71.994600px;}
.fs4_c01046{font-size:72.007560px;}
.fs9_c01046{font-size:72.021669px;}
.fs3_c01046{font-size:72.030270px;}
.fs1_c01046{font-size:77.994150px;}
.fs6_c01046{font-size:78.008190px;}
.fs2_c01046{font-size:83.993700px;}
.fs5_c01046{font-size:84.008820px;}
.fs7_c01046{font-size:90.009450px;}
.y0_c01046{bottom:0.000000px;}
.ybd_c01046{bottom:374.294076px;}
.ybc_c01046{bottom:377.271243px;}
.ybb_c01046{bottom:378.909708px;}
.yba_c01046{bottom:382.606500px;}
.yb9_c01046{bottom:391.569656px;}
.yb8_c01046{bottom:395.064954px;}
.yb7_c01046{bottom:397.110866px;}
.yb6_c01046{bottom:402.676663px;}
.yb5_c01046{bottom:404.157020px;}
.yb4_c01046{bottom:405.171108px;}
.yb3_c01046{bottom:408.174908px;}
.yb2_c01046{bottom:410.254236px;}
.yb1_c01046{bottom:411.279372px;}
.yb0_c01046{bottom:415.275655px;}
.yaf_c01046{bottom:417.287966px;}
.yae_c01046{bottom:418.789040px;}
.yad_c01046{bottom:427.375363px;}
.yac_c01046{bottom:431.832713px;}
.yab_c01046{bottom:436.906116px;}
.yaa_c01046{bottom:440.860019px;}
.ya9_c01046{bottom:443.650968px;}
.ya8_c01046{bottom:448.661259px;}
.ya7_c01046{bottom:450.358411px;}
.ya6_c01046{bottom:452.011500px;}
.ya5_c01046{bottom:468.119638px;}
.ya4_c01046{bottom:478.102738px;}
.ya3_c01046{bottom:479.798547px;}
.ya2_c01046{bottom:482.416625px;}
.ya1_c01046{bottom:484.889955px;}
.ya0_c01046{bottom:489.240111px;}
.y9f_c01046{bottom:499.258259px;}
.y9e_c01046{bottom:502.787432px;}
.y9d_c01046{bottom:503.677483px;}
.y9c_c01046{bottom:508.790429px;}
.y9b_c01046{bottom:510.499385px;}
.y9a_c01046{bottom:511.795796px;}
.y99_c01046{bottom:516.499914px;}
.y98_c01046{bottom:517.819113px;}
.y97_c01046{bottom:519.957551px;}
.y96_c01046{bottom:522.970584px;}
.y95_c01046{bottom:524.615476px;}
.y94_c01046{bottom:534.088428px;}
.y93_c01046{bottom:535.639428px;}
.y92_c01046{bottom:538.797969px;}
.y91_c01046{bottom:544.489928px;}
.y90_c01046{bottom:546.504254px;}
.y8f_c01046{bottom:551.663796px;}
.y8e_c01046{bottom:554.260452px;}
.y8d_c01046{bottom:557.353428px;}
.y8c_c01046{bottom:558.442019px;}
.y8b_c01046{bottom:561.483812px;}
.y8a_c01046{bottom:563.242646px;}
.y89_c01046{bottom:569.006907px;}
.y88_c01046{bottom:570.564252px;}
.y87_c01046{bottom:572.636388px;}
.y86_c01046{bottom:576.264530px;}
.y85_c01046{bottom:578.844900px;}
.y84_c01046{bottom:580.889330px;}
.y83_c01046{bottom:581.975876px;}
.y82_c01046{bottom:587.078031px;}
.y81_c01046{bottom:593.328138px;}
.y80_c01046{bottom:597.978248px;}
.y7f_c01046{bottom:599.409750px;}
.y7e_c01046{bottom:608.327012px;}
.y7d_c01046{bottom:611.834597px;}
.y7c_c01046{bottom:613.358551px;}
.y7b_c01046{bottom:614.882013px;}
.y7a_c01046{bottom:616.939016px;}
.y79_c01046{bottom:621.419178px;}
.y78_c01046{bottom:624.466030px;}
.y77_c01046{bottom:628.507739px;}
.y76_c01046{bottom:630.005115px;}
.y75_c01046{bottom:634.518060px;}
.y74_c01046{bottom:640.452276px;}
.y73_c01046{bottom:642.978054px;}
.y72_c01046{bottom:647.720033px;}
.y71_c01046{bottom:650.147553px;}
.y70_c01046{bottom:652.081053px;}
.y6f_c01046{bottom:653.127907px;}
.y6e_c01046{bottom:658.410171px;}
.y6d_c01046{bottom:659.864667px;}
.y6c_c01046{bottom:664.191601px;}
.y6b_c01046{bottom:665.196949px;}
.y6a_c01046{bottom:668.539438px;}
.y69_c01046{bottom:676.415801px;}
.y68_c01046{bottom:679.303219px;}
.y67_c01046{bottom:680.738689px;}
.y66_c01046{bottom:684.544843px;}
.y65_c01046{bottom:687.405508px;}
.y64_c01046{bottom:691.115520px;}
.y63_c01046{bottom:694.497662px;}
.y62_c01046{bottom:696.387212px;}
.y61_c01046{bottom:700.099973px;}
.y60_c01046{bottom:701.533257px;}
.y5f_c01046{bottom:703.368171px;}
.y5e_c01046{bottom:711.933779px;}
.y5d_c01046{bottom:715.102612px;}
.y5c_c01046{bottom:717.624538px;}
.y5b_c01046{bottom:723.413716px;}
.y5a_c01046{bottom:724.920795px;}
.y59_c01046{bottom:726.442538px;}
.y58_c01046{bottom:730.085343px;}
.y57_c01046{bottom:732.145988px;}
.y56_c01046{bottom:735.778500px;}
.y55_c01046{bottom:746.070696px;}
.y54_c01046{bottom:755.652210px;}
.y53_c01046{bottom:758.832253px;}
.y52_c01046{bottom:760.267633px;}
.y51_c01046{bottom:762.921113px;}
.y50_c01046{bottom:766.004218px;}
.y4f_c01046{bottom:767.533857px;}
.y4e_c01046{bottom:771.175253px;}
.y4d_c01046{bottom:772.683670px;}
.y4c_c01046{bottom:774.725069px;}
.y4b_c01046{bottom:776.265000px;}
.y4a_c01046{bottom:783.725266px;}
.y49_c01046{bottom:785.136913px;}
.y48_c01046{bottom:788.511166px;}
.y47_c01046{bottom:789.872245px;}
.y46_c01046{bottom:791.807310px;}
.y45_c01046{bottom:795.999036px;}
.y44_c01046{bottom:797.456542px;}
.y43_c01046{bottom:801.183288px;}
.y42_c01046{bottom:804.548059px;}
.y41_c01046{bottom:808.266291px;}
.y40_c01046{bottom:809.752500px;}
.y3f_c01046{bottom:836.841133px;}
.y3e_c01046{bottom:837.504117px;}
.y3d_c01046{bottom:838.416094px;}
.y3c_c01046{bottom:839.369353px;}
.y3b_c01046{bottom:841.276002px;}
.y3a_c01046{bottom:842.222562px;}
.y39_c01046{bottom:843.490500px;}
.y38_c01046{bottom:854.317509px;}
.y37_c01046{bottom:855.703611px;}
.y36_c01046{bottom:859.175115px;}
.y35_c01046{bottom:860.968735px;}
.y34_c01046{bottom:862.264791px;}
.y33_c01046{bottom:865.415518px;}
.y32_c01046{bottom:867.137217px;}
.y31_c01046{bottom:870.614332px;}
.y30_c01046{bottom:871.971811px;}
.y2f_c01046{bottom:875.868814px;}
.y2e_c01046{bottom:877.179705px;}
.y2d_c01046{bottom:879.413659px;}
.y2c_c01046{bottom:888.952042px;}
.y2b_c01046{bottom:890.329497px;}
.y2a_c01046{bottom:894.071934px;}
.y29_c01046{bottom:895.891754px;}
.y28_c01046{bottom:897.282624px;}
.y27_c01046{bottom:900.978234px;}
.y26_c01046{bottom:902.856411px;}
.y25_c01046{bottom:906.527913px;}
.y24_c01046{bottom:909.725574px;}
.y23_c01046{bottom:911.106318px;}
.y22_c01046{bottom:916.133409px;}
.y21_c01046{bottom:924.562962px;}
.y20_c01046{bottom:928.776876px;}
.y1f_c01046{bottom:932.133585px;}
.y1e_c01046{bottom:934.030272px;}
.y1d_c01046{bottom:940.154547px;}
.y1c_c01046{bottom:941.160167px;}
.y1b_c01046{bottom:946.787211px;}
.y1a_c01046{bottom:949.134753px;}
.y19_c01046{bottom:952.855500px;}
.y18_c01046{bottom:976.870019px;}
.y17_c01046{bottom:978.064086px;}
.y16_c01046{bottom:980.382096px;}
.y15_c01046{bottom:982.254384px;}
.y14_c01046{bottom:986.065389px;}
.y13_c01046{bottom:996.166638px;}
.y12_c01046{bottom:998.781815px;}
.y11_c01046{bottom:1000.458266px;}
.y10_c01046{bottom:1003.041302px;}
.yf_c01046{bottom:1004.792224px;}
.ye_c01046{bottom:1007.372100px;}
.yd_c01046{bottom:1011.262119px;}
.yc_c01046{bottom:1012.471862px;}
.yb_c01046{bottom:1015.913862px;}
.ya_c01046{bottom:1017.187658px;}
.y9_c01046{bottom:1021.705713px;}
.y8_c01046{bottom:1032.177428px;}
.y7_c01046{bottom:1037.420697px;}
.y6_c01046{bottom:1038.831183px;}
.y5_c01046{bottom:1041.707302px;}
.y4_c01046{bottom:1042.615914px;}
.y3_c01046{bottom:1046.418512px;}
.y2_c01046{bottom:1052.010210px;}
.y1_c01046{bottom:1054.914000px;}
.ha_c01046{height:66.006930px;}
.hc_c01046{height:71.980017px;}
.h2_c01046{height:71.994600px;}
.h6_c01046{height:72.007560px;}
.hb_c01046{height:72.021669px;}
.h5_c01046{height:72.030270px;}
.h3_c01046{height:77.994150px;}
.h8_c01046{height:78.008190px;}
.h4_c01046{height:83.993700px;}
.h7_c01046{height:84.008820px;}
.h9_c01046{height:90.009450px;}
.h0_c01046{height:1246.320000px;}
.h1_c01046{height:1246.500000px;}
.w1_c01046{width:887.250000px;}
.w0_c01046{width:887.490000px;}
.x0_c01046{left:0.000000px;}
.x73_c01046{left:143.991347px;}
.x81_c01046{left:145.566363px;}
.x7b_c01046{left:148.214360px;}
.x5e_c01046{left:152.037491px;}
.x54_c01046{left:154.844493px;}
.x3c_c01046{left:156.618000px;}
.x9_c01046{left:159.653766px;}
.x20_c01046{left:162.873663px;}
.x17_c01046{left:164.109000px;}
.x13_c01046{left:165.618573px;}
.x8c_c01046{left:176.764679px;}
.x6b_c01046{left:181.784798px;}
.x46_c01046{left:189.837236px;}
.x3d_c01046{left:191.146437px;}
.x55_c01046{left:197.453316px;}
.x36_c01046{left:203.194500px;}
.x2b_c01046{left:215.786385px;}
.x8d_c01046{left:220.449554px;}
.x5f_c01046{left:227.935244px;}
.x56_c01046{left:230.759258px;}
.x47_c01046{left:233.227802px;}
.x37_c01046{left:235.834500px;}
.x92_c01046{left:240.915216px;}
.x74_c01046{left:246.030206px;}
.x2c_c01046{left:248.508827px;}
.x18_c01046{left:250.551471px;}
.x87_c01046{left:254.518500px;}
.x82_c01046{left:256.991745px;}
.x4e_c01046{left:263.992500px;}
.x48_c01046{left:265.289707px;}
.x7c_c01046{left:267.490277px;}
.x75_c01046{left:269.168544px;}
.x14_c01046{left:274.352613px;}
.x1_c01046{left:276.181500px;}
.x3e_c01046{left:277.530466px;}
.x6c_c01046{left:280.624359px;}
.x21_c01046{left:282.456126px;}
.x93_c01046{left:283.989598px;}
.x88_c01046{left:286.899586px;}
.x38_c01046{left:301.581000px;}
.x19_c01046{left:305.090877px;}
.xa_c01046{left:307.990284px;}
.x22_c01046{left:315.301668px;}
.x57_c01046{left:317.017145px;}
.x83_c01046{left:320.352674px;}
.x7d_c01046{left:322.264554px;}
.x15_c01046{left:327.791022px;}
.x8e_c01046{left:329.493198px;}
.x39_c01046{left:334.452000px;}
.x4f_c01046{left:341.202713px;}
.x2_c01046{left:343.643970px;}
.x2d_c01046{left:345.847481px;}
.x60_c01046{left:348.999636px;}
.x3f_c01046{left:355.702716px;}
.x58_c01046{left:360.914960px;}
.x94_c01046{left:362.257752px;}
.x3a_c01046{left:365.899500px;}
.x67_c01046{left:370.340567px;}
.x49_c01046{left:375.201685px;}
.x2e_c01046{left:379.756928px;}
.x61_c01046{left:382.022238px;}
.x50_c01046{left:385.002369px;}
.x84_c01046{left:387.396756px;}
.x3b_c01046{left:388.761000px;}
.x76_c01046{left:390.103488px;}
.x23_c01046{left:391.370316px;}
.x16_c01046{left:393.921552px;}
.xb_c01046{left:396.153205px;}
.x6d_c01046{left:413.472378px;}
.x89_c01046{left:418.286568px;}
.xc_c01046{left:427.153533px;}
.x85_c01046{left:430.815596px;}
.x1a_c01046{left:435.821516px;}
.x59_c01046{left:439.475070px;}
.x4a_c01046{left:440.734087px;}
.x40_c01046{left:442.284547px;}
.x1b_c01046{left:459.184629px;}
.x51_c01046{left:462.431362px;}
.x2f_c01046{left:466.573194px;}
.x3_c01046{left:473.553430px;}
.x41_c01046{left:476.146152px;}
.x24_c01046{left:478.691652px;}
.x52_c01046{left:494.776485px;}
.x4b_c01046{left:497.134631px;}
.x77_c01046{left:499.771211px;}
.x62_c01046{left:501.959618px;}
.x30_c01046{left:509.572205px;}
.x6e_c01046{left:521.920322px;}
.x25_c01046{left:523.372863px;}
.x5a_c01046{left:525.674515px;}
.xd_c01046{left:526.771425px;}
.x68_c01046{left:533.809127px;}
.x78_c01046{left:542.586353px;}
.x6f_c01046{left:545.015204px;}
.x8a_c01046{left:550.406316px;}
.x7e_c01046{left:553.499531px;}
.x4_c01046{left:561.897498px;}
.x63_c01046{left:569.617419px;}
.x42_c01046{left:573.530670px;}
.x69_c01046{left:578.489019px;}
.x5_c01046{left:583.006867px;}
.x31_c01046{left:588.247587px;}
.xe_c01046{left:592.847147px;}
.x4c_c01046{left:595.236930px;}
.x1c_c01046{left:601.467204px;}
.x26_c01046{left:611.289168px;}
.x8f_c01046{left:614.877200px;}
.x43_c01046{left:618.487169px;}
.x32_c01046{left:620.625374px;}
.x64_c01046{left:624.726518px;}
.xf_c01046{left:637.710985px;}
.x70_c01046{left:643.316804px;}
.x27_c01046{left:644.369975px;}
.x1d_c01046{left:645.532095px;}
.x6_c01046{left:649.826481px;}
.x90_c01046{left:659.308557px;}
.x79_c01046{left:663.570747px;}
.x33_c01046{left:665.434830px;}
.x5b_c01046{left:680.531579px;}
.x7_c01046{left:682.595679px;}
.x7f_c01046{left:684.426161px;}
.x86_c01046{left:686.486786px;}
.x28_c01046{left:687.660513px;}
.x10_c01046{left:703.860134px;}
.x80_c01046{left:707.238935px;}
.x5c_c01046{left:713.883974px;}
.x6a_c01046{left:720.850220px;}
.x1e_c01046{left:723.517032px;}
.x44_c01046{left:728.501044px;}
.x7a_c01046{left:730.706544px;}
.x65_c01046{left:732.381927px;}
.x91_c01046{left:735.220943px;}
.x8b_c01046{left:737.096939px;}
.x11_c01046{left:746.784526px;}
.x34_c01046{left:752.120727px;}
.x45_c01046{left:761.297215px;}
.x71_c01046{left:764.478021px;}
.x53_c01046{left:770.819665px;}
.x29_c01046{left:776.664729px;}
.x5d_c01046{left:780.970951px;}
.x35_c01046{left:786.730038px;}
.x66_c01046{left:789.739128px;}
.x72_c01046{left:797.579886px;}
.x4d_c01046{left:798.895068px;}
.x8_c01046{left:804.410243px;}
.x2a_c01046{left:809.433847px;}
.x12_c01046{left:813.785016px;}
.x1f_c01046{left:821.417034px;}
@media print{
.v0_c01046{vertical-align:0.000000pt;}
.ls0_c01046{letter-spacing:0.000000pt;}
.ws0_c01046{word-spacing:0.000000pt;}
._0_c01046{width:25.692756pt;}
._1_c01046{width:28.179054pt;}
.fs8_c01046{font-size:58.672826pt;}
.fsa_c01046{font-size:63.982238pt;}
.fs0_c01046{font-size:63.995200pt;}
.fs4_c01046{font-size:64.006720pt;}
.fs9_c01046{font-size:64.019261pt;}
.fs3_c01046{font-size:64.026906pt;}
.fs1_c01046{font-size:69.328133pt;}
.fs6_c01046{font-size:69.340613pt;}
.fs2_c01046{font-size:74.661066pt;}
.fs5_c01046{font-size:74.674506pt;}
.fs7_c01046{font-size:80.008400pt;}
.y0_c01046{bottom:0.000000pt;}
.ybd_c01046{bottom:332.705845pt;}
.ybc_c01046{bottom:335.352216pt;}
.ybb_c01046{bottom:336.808629pt;}
.yba_c01046{bottom:340.094667pt;}
.yb9_c01046{bottom:348.061916pt;}
.yb8_c01046{bottom:351.168848pt;}
.yb7_c01046{bottom:352.987436pt;}
.yb6_c01046{bottom:357.934812pt;}
.yb5_c01046{bottom:359.250684pt;}
.yb4_c01046{bottom:360.152096pt;}
.yb3_c01046{bottom:362.822140pt;}
.yb2_c01046{bottom:364.670432pt;}
.yb1_c01046{bottom:365.581664pt;}
.yb0_c01046{bottom:369.133916pt;}
.yaf_c01046{bottom:370.922636pt;}
.yae_c01046{bottom:372.256924pt;}
.yad_c01046{bottom:379.889212pt;}
.yac_c01046{bottom:383.851300pt;}
.yab_c01046{bottom:388.360992pt;}
.yaa_c01046{bottom:391.875572pt;}
.ya9_c01046{bottom:394.356416pt;}
.ya8_c01046{bottom:398.810008pt;}
.ya7_c01046{bottom:400.318588pt;}
.ya6_c01046{bottom:401.788000pt;}
.ya5_c01046{bottom:416.106345pt;}
.ya4_c01046{bottom:424.980212pt;}
.ya3_c01046{bottom:426.487597pt;}
.ya2_c01046{bottom:428.814777pt;}
.ya1_c01046{bottom:431.013293pt;}
.ya0_c01046{bottom:434.880099pt;}
.y9f_c01046{bottom:443.785119pt;}
.y9e_c01046{bottom:446.922161pt;}
.y9d_c01046{bottom:447.713319pt;}
.y9c_c01046{bottom:452.258159pt;}
.y9b_c01046{bottom:453.777231pt;}
.y9a_c01046{bottom:454.929596pt;}
.y99_c01046{bottom:459.111035pt;}
.y98_c01046{bottom:460.283656pt;}
.y97_c01046{bottom:462.184489pt;}
.y96_c01046{bottom:464.862741pt;}
.y95_c01046{bottom:466.324868pt;}
.y94_c01046{bottom:474.745269pt;}
.y93_c01046{bottom:476.123936pt;}
.y92_c01046{bottom:478.931528pt;}
.y91_c01046{bottom:483.991047pt;}
.y90_c01046{bottom:485.781559pt;}
.y8f_c01046{bottom:490.367819pt;}
.y8e_c01046{bottom:492.675957pt;}
.y8d_c01046{bottom:495.425269pt;}
.y8c_c01046{bottom:496.392905pt;}
.y8b_c01046{bottom:499.096721pt;}
.y8a_c01046{bottom:500.660129pt;}
.y89_c01046{bottom:505.783917pt;}
.y88_c01046{bottom:507.168224pt;}
.y87_c01046{bottom:509.010123pt;}
.y86_c01046{bottom:512.235137pt;}
.y85_c01046{bottom:514.528800pt;}
.y84_c01046{bottom:516.346071pt;}
.y83_c01046{bottom:517.311889pt;}
.y82_c01046{bottom:521.847139pt;}
.y81_c01046{bottom:527.402789pt;}
.y80_c01046{bottom:531.536220pt;}
.y7f_c01046{bottom:532.808667pt;}
.y7e_c01046{bottom:540.735121pt;}
.y7d_c01046{bottom:543.852975pt;}
.y7c_c01046{bottom:545.207601pt;}
.y7b_c01046{bottom:546.561789pt;}
.y7a_c01046{bottom:548.390236pt;}
.y79_c01046{bottom:552.372603pt;}
.y78_c01046{bottom:555.080916pt;}
.y77_c01046{bottom:558.673545pt;}
.y76_c01046{bottom:560.004547pt;}
.y75_c01046{bottom:564.016053pt;}
.y74_c01046{bottom:569.290912pt;}
.y73_c01046{bottom:571.536048pt;}
.y72_c01046{bottom:575.751140pt;}
.y71_c01046{bottom:577.908936pt;}
.y70_c01046{bottom:579.627603pt;}
.y6f_c01046{bottom:580.558140pt;}
.y6e_c01046{bottom:585.253485pt;}
.y6d_c01046{bottom:586.546371pt;}
.y6c_c01046{bottom:590.392535pt;}
.y6b_c01046{bottom:591.286177pt;}
.y6a_c01046{bottom:594.257279pt;}
.y69_c01046{bottom:601.258489pt;}
.y68_c01046{bottom:603.825084pt;}
.y67_c01046{bottom:605.101057pt;}
.y66_c01046{bottom:608.484305pt;}
.y65_c01046{bottom:611.027119pt;}
.y64_c01046{bottom:614.324907pt;}
.y63_c01046{bottom:617.331255pt;}
.y62_c01046{bottom:619.010855pt;}
.y61_c01046{bottom:622.311087pt;}
.y60_c01046{bottom:623.585117pt;}
.y5f_c01046{bottom:625.216152pt;}
.y5e_c01046{bottom:632.830025pt;}
.y5d_c01046{bottom:635.646767pt;}
.y5c_c01046{bottom:637.888479pt;}
.y5b_c01046{bottom:643.034415pt;}
.y5a_c01046{bottom:644.374040pt;}
.y59_c01046{bottom:645.726700pt;}
.y58_c01046{bottom:648.964749pt;}
.y57_c01046{bottom:650.796433pt;}
.y56_c01046{bottom:654.025333pt;}
.y55_c01046{bottom:663.173952pt;}
.y54_c01046{bottom:671.690853pt;}
.y53_c01046{bottom:674.517559pt;}
.y52_c01046{bottom:675.793452pt;}
.y51_c01046{bottom:678.152100pt;}
.y50_c01046{bottom:680.892639pt;}
.y4f_c01046{bottom:682.252317pt;}
.y4e_c01046{bottom:685.489113pt;}
.y4d_c01046{bottom:686.829929pt;}
.y4c_c01046{bottom:688.644505pt;}
.y4b_c01046{bottom:690.013333pt;}
.y4a_c01046{bottom:696.644681pt;}
.y49_c01046{bottom:697.899479pt;}
.y48_c01046{bottom:700.898815pt;}
.y47_c01046{bottom:702.108663pt;}
.y46_c01046{bottom:703.828720pt;}
.y45_c01046{bottom:707.554699pt;}
.y44_c01046{bottom:708.850260pt;}
.y43_c01046{bottom:712.162923pt;}
.y42_c01046{bottom:715.153831pt;}
.y41_c01046{bottom:718.458925pt;}
.y40_c01046{bottom:719.780000pt;}
.y3f_c01046{bottom:743.858785pt;}
.y3e_c01046{bottom:744.448104pt;}
.y3d_c01046{bottom:745.258751pt;}
.y3c_c01046{bottom:746.106092pt;}
.y3b_c01046{bottom:747.800891pt;}
.y3a_c01046{bottom:748.642277pt;}
.y39_c01046{bottom:749.769333pt;}
.y38_c01046{bottom:759.393341pt;}
.y37_c01046{bottom:760.625432pt;}
.y36_c01046{bottom:763.711213pt;}
.y35_c01046{bottom:765.305543pt;}
.y34_c01046{bottom:766.457592pt;}
.y33_c01046{bottom:769.258239pt;}
.y32_c01046{bottom:770.788637pt;}
.y31_c01046{bottom:773.879407pt;}
.y30_c01046{bottom:775.086055pt;}
.y2f_c01046{bottom:778.550057pt;}
.y2e_c01046{bottom:779.715293pt;}
.y2d_c01046{bottom:781.701031pt;}
.y2c_c01046{bottom:790.179593pt;}
.y2b_c01046{bottom:791.403997pt;}
.y2a_c01046{bottom:794.730608pt;}
.y29_c01046{bottom:796.348225pt;}
.y28_c01046{bottom:797.584555pt;}
.y27_c01046{bottom:800.869541pt;}
.y26_c01046{bottom:802.539032pt;}
.y25_c01046{bottom:805.802589pt;}
.y24_c01046{bottom:808.644955pt;}
.y23_c01046{bottom:809.872283pt;}
.y22_c01046{bottom:814.340808pt;}
.y21_c01046{bottom:821.833744pt;}
.y20_c01046{bottom:825.579445pt;}
.y1f_c01046{bottom:828.563187pt;}
.y1e_c01046{bottom:830.249131pt;}
.y1d_c01046{bottom:835.692931pt;}
.y1c_c01046{bottom:836.586815pt;}
.y1b_c01046{bottom:841.588632pt;}
.y1a_c01046{bottom:843.675336pt;}
.y19_c01046{bottom:846.982667pt;}
.y18_c01046{bottom:868.328905pt;}
.y17_c01046{bottom:869.390299pt;}
.y16_c01046{bottom:871.450752pt;}
.y15_c01046{bottom:873.115008pt;}
.y14_c01046{bottom:876.502568pt;}
.y13_c01046{bottom:885.481456pt;}
.y12_c01046{bottom:887.806057pt;}
.y11_c01046{bottom:889.296236pt;}
.y10_c01046{bottom:891.592268pt;}
.yf_c01046{bottom:893.148644pt;}
.ye_c01046{bottom:895.441867pt;}
.yd_c01046{bottom:898.899661pt;}
.yc_c01046{bottom:899.974988pt;}
.yb_c01046{bottom:903.034544pt;}
.ya_c01046{bottom:904.166807pt;}
.y9_c01046{bottom:908.182856pt;}
.y8_c01046{bottom:917.491047pt;}
.y7_c01046{bottom:922.151731pt;}
.y6_c01046{bottom:923.405496pt;}
.y5_c01046{bottom:925.962047pt;}
.y4_c01046{bottom:926.769701pt;}
.y3_c01046{bottom:930.149788pt;}
.y2_c01046{bottom:935.120187pt;}
.y1_c01046{bottom:937.701333pt;}
.ha_c01046{height:58.672826pt;}
.hc_c01046{height:63.982238pt;}
.h2_c01046{height:63.995200pt;}
.h6_c01046{height:64.006720pt;}
.hb_c01046{height:64.019261pt;}
.h5_c01046{height:64.026906pt;}
.h3_c01046{height:69.328133pt;}
.h8_c01046{height:69.340613pt;}
.h4_c01046{height:74.661066pt;}
.h7_c01046{height:74.674506pt;}
.h9_c01046{height:80.008400pt;}
.h0_c01046{height:1107.840000pt;}
.h1_c01046{height:1108.000000pt;}
.w1_c01046{width:788.666667pt;}
.w0_c01046{width:788.880000pt;}
.x0_c01046{left:0.000000pt;}
.x73_c01046{left:127.992308pt;}
.x81_c01046{left:129.392323pt;}
.x7b_c01046{left:131.746097pt;}
.x5e_c01046{left:135.144436pt;}
.x54_c01046{left:137.639549pt;}
.x3c_c01046{left:139.216000pt;}
.x9_c01046{left:141.914459pt;}
.x20_c01046{left:144.776589pt;}
.x17_c01046{left:145.874667pt;}
.x13_c01046{left:147.216509pt;}
.x8c_c01046{left:157.124159pt;}
.x6b_c01046{left:161.586487pt;}
.x46_c01046{left:168.744209pt;}
.x3d_c01046{left:169.907944pt;}
.x55_c01046{left:175.514059pt;}
.x36_c01046{left:180.617333pt;}
.x2b_c01046{left:191.810120pt;}
.x8d_c01046{left:195.955159pt;}
.x5f_c01046{left:202.609105pt;}
.x56_c01046{left:205.119340pt;}
.x47_c01046{left:207.313601pt;}
.x37_c01046{left:209.630667pt;}
.x92_c01046{left:214.146859pt;}
.x74_c01046{left:218.693516pt;}
.x2c_c01046{left:220.896735pt;}
.x18_c01046{left:222.712419pt;}
.x87_c01046{left:226.238667pt;}
.x82_c01046{left:228.437107pt;}
.x4e_c01046{left:234.660000pt;}
.x48_c01046{left:235.813073pt;}
.x7c_c01046{left:237.769135pt;}
.x75_c01046{left:239.260928pt;}
.x14_c01046{left:243.868989pt;}
.x1_c01046{left:245.494667pt;}
.x3e_c01046{left:246.693748pt;}
.x6c_c01046{left:249.443875pt;}
.x21_c01046{left:251.072112pt;}
.x93_c01046{left:252.435199pt;}
.x88_c01046{left:255.021855pt;}
.x38_c01046{left:268.072000pt;}
.x19_c01046{left:271.191891pt;}
.xa_c01046{left:273.769141pt;}
.x22_c01046{left:280.268149pt;}
.x57_c01046{left:281.793017pt;}
.x83_c01046{left:284.757932pt;}
.x7d_c01046{left:286.457381pt;}
.x15_c01046{left:291.369797pt;}
.x8e_c01046{left:292.882843pt;}
.x39_c01046{left:297.290667pt;}
.x4f_c01046{left:303.291300pt;}
.x2_c01046{left:305.461307pt;}
.x2d_c01046{left:307.419983pt;}
.x60_c01046{left:310.221899pt;}
.x3f_c01046{left:316.180192pt;}
.x58_c01046{left:320.813297pt;}
.x94_c01046{left:322.006891pt;}
.x3a_c01046{left:325.244000pt;}
.x67_c01046{left:329.191615pt;}
.x49_c01046{left:333.512609pt;}
.x2e_c01046{left:337.561713pt;}
.x61_c01046{left:339.575323pt;}
.x50_c01046{left:342.224328pt;}
.x84_c01046{left:344.352672pt;}
.x3b_c01046{left:345.565333pt;}
.x76_c01046{left:346.758656pt;}
.x23_c01046{left:347.884725pt;}
.x16_c01046{left:350.152491pt;}
.xb_c01046{left:352.136183pt;}
.x6d_c01046{left:367.531003pt;}
.x89_c01046{left:371.810283pt;}
.xc_c01046{left:379.692029pt;}
.x85_c01046{left:382.947196pt;}
.x1a_c01046{left:387.396903pt;}
.x59_c01046{left:390.644507pt;}
.x4a_c01046{left:391.763633pt;}
.x40_c01046{left:393.141820pt;}
.x1b_c01046{left:408.164115pt;}
.x51_c01046{left:411.050100pt;}
.x2f_c01046{left:414.731728pt;}
.x3_c01046{left:420.936383pt;}
.x41_c01046{left:423.241024pt;}
.x24_c01046{left:425.503691pt;}
.x52_c01046{left:439.801320pt;}
.x4b_c01046{left:441.897449pt;}
.x77_c01046{left:444.241076pt;}
.x62_c01046{left:446.186327pt;}
.x30_c01046{left:452.953071pt;}
.x6e_c01046{left:463.929175pt;}
.x25_c01046{left:465.220323pt;}
.x5a_c01046{left:467.266236pt;}
.xd_c01046{left:468.241267pt;}
.x68_c01046{left:474.497001pt;}
.x78_c01046{left:482.298980pt;}
.x6f_c01046{left:484.457959pt;}
.x8a_c01046{left:489.250059pt;}
.x7e_c01046{left:491.999583pt;}
.x4_c01046{left:499.464443pt;}
.x63_c01046{left:506.326595pt;}
.x42_c01046{left:509.805040pt;}
.x69_c01046{left:514.212461pt;}
.x5_c01046{left:518.228327pt;}
.x31_c01046{left:522.886744pt;}
.xe_c01046{left:526.975241pt;}
.x4c_c01046{left:529.099493pt;}
.x1c_c01046{left:534.637515pt;}
.x26_c01046{left:543.368149pt;}
.x8f_c01046{left:546.557511pt;}
.x43_c01046{left:549.766372pt;}
.x32_c01046{left:551.666999pt;}
.x64_c01046{left:555.312460pt;}
.xf_c01046{left:566.854209pt;}
.x70_c01046{left:571.837159pt;}
.x27_c01046{left:572.773311pt;}
.x1d_c01046{left:573.806307pt;}
.x6_c01046{left:577.623539pt;}
.x90_c01046{left:586.052051pt;}
.x79_c01046{left:589.840664pt;}
.x33_c01046{left:591.497627pt;}
.x5b_c01046{left:604.916959pt;}
.x7_c01046{left:606.751715pt;}
.x7f_c01046{left:608.378809pt;}
.x86_c01046{left:610.210476pt;}
.x28_c01046{left:611.253789pt;}
.x10_c01046{left:625.653452pt;}
.x80_c01046{left:628.656831pt;}
.x5c_c01046{left:634.563532pt;}
.x6a_c01046{left:640.755751pt;}
.x1e_c01046{left:643.126251pt;}
.x44_c01046{left:647.556484pt;}
.x7a_c01046{left:649.516928pt;}
.x65_c01046{left:651.006157pt;}
.x91_c01046{left:653.529727pt;}
.x8b_c01046{left:655.197279pt;}
.x11_c01046{left:663.808468pt;}
.x34_c01046{left:668.551757pt;}
.x45_c01046{left:676.708636pt;}
.x71_c01046{left:679.536019pt;}
.x53_c01046{left:685.173036pt;}
.x29_c01046{left:690.368648pt;}
.x5d_c01046{left:694.196401pt;}
.x35_c01046{left:699.315589pt;}
.x66_c01046{left:701.990336pt;}
.x72_c01046{left:708.959899pt;}
.x4d_c01046{left:710.128949pt;}
.x8_c01046{left:715.031327pt;}
.x2a_c01046{left:719.496753pt;}
.x12_c01046{left:723.364459pt;}
.x1f_c01046{left:730.148475pt;}
}





/* 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_c01047 {
    display:none;
  }
  .loading-indicator_c01047.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01047 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_c01047 { 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_c01047" -> "#page-container .classname_c01047")
 */
.pf_c01047 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01047 { /* 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_c01047.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01047 { /* 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_c01047 { /* 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_c01047 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01047 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01047 {overflow:visible;}
  }
}
.c_c01047 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01047 { /* 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_c01047:after { /* webkit #35443 */
  content: '';
}
.t_c01047:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01047 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 */
}
.__c01047 { /* 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_c01047 { /* info for Javascript */
  display:none;
}
.l_c01047 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01047 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01047 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01047: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_c01047 {
    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_c01047.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01047.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_c01047 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01047{font-family:sans-serif;visibility:hidden;}
.sc__c01047{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01047{-webkit-text-stroke:0px transparent;}
}
.y0_c01047{bottom:0.000000px;}
.h0_c01047{height:1246.320000px;}
.h1_c01047{height:1246.500000px;}
.w1_c01047{width:887.250000px;}
.w0_c01047{width:887.490000px;}
.x0_c01047{left:0.000000px;}
@media print{
.y0_c01047{bottom:0.000000pt;}
.h0_c01047{height:1107.840000pt;}
.h1_c01047{height:1108.000000pt;}
.w1_c01047{width:788.666667pt;}
.w0_c01047{width:788.880000pt;}
.x0_c01047{left:0.000000pt;}
}





/* 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_c01048 {
    display:none;
  }
  .loading-indicator_c01048.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01048 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_c01048 { 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_c01048" -> "#page-container .classname_c01048")
 */
.pf_c01048 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01048 { /* 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_c01048.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01048 { /* 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_c01048 { /* 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_c01048 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01048 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01048 {overflow:visible;}
  }
}
.c_c01048 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01048 { /* 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_c01048:after { /* webkit #35443 */
  content: '';
}
.t_c01048:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01048 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 */
}
.__c01048 { /* 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_c01048 { /* info for Javascript */
  display:none;
}
.l_c01048 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01048 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01048 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01048: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_c01048 {
    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_c01048.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01048.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_c01048 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01048{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01048;src:url('chunks/assets/font_cfe63ee56e9e10a97d33a3db.woff2')format("woff");}.ff1_c01048{font-family:ff1_c01048;line-height:1.000000;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;}
.m62_c01048{transform:matrix(0.014366,0.000518,-0.009003,0.249838,0,0);-ms-transform:matrix(0.014366,0.000518,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.014366,0.000518,-0.009003,0.249838,0,0);}
.m92_c01048{transform:matrix(0.015800,0.000569,-0.009003,0.249838,0,0);-ms-transform:matrix(0.015800,0.000569,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.015800,0.000569,-0.009003,0.249838,0,0);}
.m61_c01048{transform:matrix(0.025089,0.000904,-0.009003,0.249838,0,0);-ms-transform:matrix(0.025089,0.000904,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.025089,0.000904,-0.009003,0.249838,0,0);}
.m1b_c01048{transform:matrix(0.087513,0.003154,-0.009003,0.249838,0,0);-ms-transform:matrix(0.087513,0.003154,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.087513,0.003154,-0.009003,0.249838,0,0);}
.m120_c01048{transform:matrix(0.119648,0.002034,-0.004249,0.249964,0,0);-ms-transform:matrix(0.119648,0.002034,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.119648,0.002034,-0.004249,0.249964,0,0);}
.mf4_c01048{transform:matrix(0.122637,0.005156,-0.010501,0.249779,0,0);-ms-transform:matrix(0.122637,0.005156,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.122637,0.005156,-0.010501,0.249779,0,0);}
.mf2_c01048{transform:matrix(0.137429,0.005778,-0.010501,0.249779,0,0);-ms-transform:matrix(0.137429,0.005778,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.137429,0.005778,-0.010501,0.249779,0,0);}
.m2_c01048{transform:matrix(0.144551,0.005209,-0.009003,0.249838,0,0);-ms-transform:matrix(0.144551,0.005209,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.144551,0.005209,-0.009003,0.249838,0,0);}
.m8e_c01048{transform:matrix(0.160321,0.005777,-0.009003,0.249838,0,0);-ms-transform:matrix(0.160321,0.005777,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.160321,0.005777,-0.009003,0.249838,0,0);}
.m1_c01048{transform:matrix(0.161645,0.005825,-0.009003,0.249838,0,0);-ms-transform:matrix(0.161645,0.005825,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.161645,0.005825,-0.009003,0.249838,0,0);}
.m8c_c01048{transform:matrix(0.162759,0.005865,-0.009003,0.249838,0,0);-ms-transform:matrix(0.162759,0.005865,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.162759,0.005865,-0.009003,0.249838,0,0);}
.m95_c01048{transform:matrix(0.163366,0.006868,-0.010501,0.249779,0,0);-ms-transform:matrix(0.163366,0.006868,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.163366,0.006868,-0.010501,0.249779,0,0);}
.m3_c01048{transform:matrix(0.165083,0.005949,-0.009003,0.249838,0,0);-ms-transform:matrix(0.165083,0.005949,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.165083,0.005949,-0.009003,0.249838,0,0);}
.m103_c01048{transform:matrix(0.166448,0.006998,-0.010501,0.249779,0,0);-ms-transform:matrix(0.166448,0.006998,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.166448,0.006998,-0.010501,0.249779,0,0);}
.m97_c01048{transform:matrix(0.166838,0.007014,-0.010501,0.249779,0,0);-ms-transform:matrix(0.166838,0.007014,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.166838,0.007014,-0.010501,0.249779,0,0);}
.m101_c01048{transform:matrix(0.168721,0.007093,-0.010501,0.249779,0,0);-ms-transform:matrix(0.168721,0.007093,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.168721,0.007093,-0.010501,0.249779,0,0);}
.mf9_c01048{transform:matrix(0.168776,0.007096,-0.010501,0.249779,0,0);-ms-transform:matrix(0.168776,0.007096,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.168776,0.007096,-0.010501,0.249779,0,0);}
.m102_c01048{transform:matrix(0.170714,0.007177,-0.010501,0.249779,0,0);-ms-transform:matrix(0.170714,0.007177,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.170714,0.007177,-0.010501,0.249779,0,0);}
.m9d_c01048{transform:matrix(0.171169,0.007196,-0.010501,0.249779,0,0);-ms-transform:matrix(0.171169,0.007196,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.171169,0.007196,-0.010501,0.249779,0,0);}
.ma_c01048{transform:matrix(0.171729,0.006188,-0.009003,0.249838,0,0);-ms-transform:matrix(0.171729,0.006188,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.171729,0.006188,-0.009003,0.249838,0,0);}
.m4c_c01048{transform:matrix(0.173492,0.006252,-0.009003,0.249838,0,0);-ms-transform:matrix(0.173492,0.006252,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.173492,0.006252,-0.009003,0.249838,0,0);}
.mfb_c01048{transform:matrix(0.174576,0.007340,-0.010501,0.249779,0,0);-ms-transform:matrix(0.174576,0.007340,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.174576,0.007340,-0.010501,0.249779,0,0);}
.mb8_c01048{transform:matrix(0.175115,0.007362,-0.010501,0.249779,0,0);-ms-transform:matrix(0.175115,0.007362,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.175115,0.007362,-0.010501,0.249779,0,0);}
.m4a_c01048{transform:matrix(0.175156,0.006312,-0.009003,0.249838,0,0);-ms-transform:matrix(0.175156,0.006312,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.175156,0.006312,-0.009003,0.249838,0,0);}
.m9a_c01048{transform:matrix(0.175555,0.007381,-0.010501,0.249779,0,0);-ms-transform:matrix(0.175555,0.007381,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.175555,0.007381,-0.010501,0.249779,0,0);}
.m99_c01048{transform:matrix(0.177024,0.007442,-0.010501,0.249779,0,0);-ms-transform:matrix(0.177024,0.007442,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.177024,0.007442,-0.010501,0.249779,0,0);}
.m6_c01048{transform:matrix(0.177255,0.006388,-0.009003,0.249838,0,0);-ms-transform:matrix(0.177255,0.006388,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.177255,0.006388,-0.009003,0.249838,0,0);}
.mfd_c01048{transform:matrix(0.178642,0.007510,-0.010501,0.249779,0,0);-ms-transform:matrix(0.178642,0.007510,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.178642,0.007510,-0.010501,0.249779,0,0);}
.mfc_c01048{transform:matrix(0.178982,0.007525,-0.010501,0.249779,0,0);-ms-transform:matrix(0.178982,0.007525,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.178982,0.007525,-0.010501,0.249779,0,0);}
.m93_c01048{transform:matrix(0.179471,0.007545,-0.010501,0.249779,0,0);-ms-transform:matrix(0.179471,0.007545,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.179471,0.007545,-0.010501,0.249779,0,0);}
.mb_c01048{transform:matrix(0.180593,0.006508,-0.009003,0.249838,0,0);-ms-transform:matrix(0.180593,0.006508,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.180593,0.006508,-0.009003,0.249838,0,0);}
.m94_c01048{transform:matrix(0.180635,0.007594,-0.010501,0.249779,0,0);-ms-transform:matrix(0.180635,0.007594,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.180635,0.007594,-0.010501,0.249779,0,0);}
.m8d_c01048{transform:matrix(0.181307,0.006534,-0.009003,0.249838,0,0);-ms-transform:matrix(0.181307,0.006534,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.181307,0.006534,-0.009003,0.249838,0,0);}
.m3f_c01048{transform:matrix(0.181912,0.006555,-0.009003,0.249838,0,0);-ms-transform:matrix(0.181912,0.006555,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.181912,0.006555,-0.009003,0.249838,0,0);}
.m98_c01048{transform:matrix(0.183363,0.007709,-0.010501,0.249779,0,0);-ms-transform:matrix(0.183363,0.007709,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.183363,0.007709,-0.010501,0.249779,0,0);}
.mb1_c01048{transform:matrix(0.184657,0.007763,-0.010501,0.249779,0,0);-ms-transform:matrix(0.184657,0.007763,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.184657,0.007763,-0.010501,0.249779,0,0);}
.m54_c01048{transform:matrix(0.186699,0.006728,-0.009003,0.249838,0,0);-ms-transform:matrix(0.186699,0.006728,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.186699,0.006728,-0.009003,0.249838,0,0);}
.m7_c01048{transform:matrix(0.186834,0.006733,-0.009003,0.249838,0,0);-ms-transform:matrix(0.186834,0.006733,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.186834,0.006733,-0.009003,0.249838,0,0);}
.m48_c01048{transform:matrix(0.187943,0.006773,-0.009003,0.249838,0,0);-ms-transform:matrix(0.187943,0.006773,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.187943,0.006773,-0.009003,0.249838,0,0);}
.m96_c01048{transform:matrix(0.188189,0.007912,-0.010501,0.249779,0,0);-ms-transform:matrix(0.188189,0.007912,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.188189,0.007912,-0.010501,0.249779,0,0);}
.mfa_c01048{transform:matrix(0.188763,0.007936,-0.010501,0.249779,0,0);-ms-transform:matrix(0.188763,0.007936,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.188763,0.007936,-0.010501,0.249779,0,0);}
.m55_c01048{transform:matrix(0.189352,0.006823,-0.009003,0.249838,0,0);-ms-transform:matrix(0.189352,0.006823,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.189352,0.006823,-0.009003,0.249838,0,0);}
.m4b_c01048{transform:matrix(0.189827,0.006841,-0.009003,0.249838,0,0);-ms-transform:matrix(0.189827,0.006841,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.189827,0.006841,-0.009003,0.249838,0,0);}
.mfe_c01048{transform:matrix(0.190577,0.008012,-0.010501,0.249779,0,0);-ms-transform:matrix(0.190577,0.008012,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.190577,0.008012,-0.010501,0.249779,0,0);}
.md_c01048{transform:matrix(0.190706,0.006872,-0.009003,0.249838,0,0);-ms-transform:matrix(0.190706,0.006872,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.190706,0.006872,-0.009003,0.249838,0,0);}
.m47_c01048{transform:matrix(0.193464,0.006972,-0.009003,0.249838,0,0);-ms-transform:matrix(0.193464,0.006972,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.193464,0.006972,-0.009003,0.249838,0,0);}
.m32_c01048{transform:matrix(0.193494,0.006973,-0.009003,0.249838,0,0);-ms-transform:matrix(0.193494,0.006973,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.193494,0.006973,-0.009003,0.249838,0,0);}
.m100_c01048{transform:matrix(0.193754,0.008146,-0.010501,0.249779,0,0);-ms-transform:matrix(0.193754,0.008146,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.193754,0.008146,-0.010501,0.249779,0,0);}
.m4d_c01048{transform:matrix(0.194224,0.006999,-0.009003,0.249838,0,0);-ms-transform:matrix(0.194224,0.006999,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.194224,0.006999,-0.009003,0.249838,0,0);}
.m41_c01048{transform:matrix(0.194534,0.007010,-0.009003,0.249838,0,0);-ms-transform:matrix(0.194534,0.007010,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.194534,0.007010,-0.009003,0.249838,0,0);}
.mb4_c01048{transform:matrix(0.195088,0.008202,-0.010501,0.249779,0,0);-ms-transform:matrix(0.195088,0.008202,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.195088,0.008202,-0.010501,0.249779,0,0);}
.m105_c01048{transform:matrix(0.196132,0.008246,-0.010501,0.249779,0,0);-ms-transform:matrix(0.196132,0.008246,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.196132,0.008246,-0.010501,0.249779,0,0);}
.m3e_c01048{transform:matrix(0.196168,0.007069,-0.009003,0.249838,0,0);-ms-transform:matrix(0.196168,0.007069,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.196168,0.007069,-0.009003,0.249838,0,0);}
.m5_c01048{transform:matrix(0.196238,0.007072,-0.009003,0.249838,0,0);-ms-transform:matrix(0.196238,0.007072,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.196238,0.007072,-0.009003,0.249838,0,0);}
.mf6_c01048{transform:matrix(0.196516,0.008262,-0.010501,0.249779,0,0);-ms-transform:matrix(0.196516,0.008262,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.196516,0.008262,-0.010501,0.249779,0,0);}
.m43_c01048{transform:matrix(0.197567,0.007120,-0.009003,0.249838,0,0);-ms-transform:matrix(0.197567,0.007120,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.197567,0.007120,-0.009003,0.249838,0,0);}
.m38_c01048{transform:matrix(0.197782,0.007127,-0.009003,0.249838,0,0);-ms-transform:matrix(0.197782,0.007127,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.197782,0.007127,-0.009003,0.249838,0,0);}
.m9b_c01048{transform:matrix(0.198350,0.008339,-0.010501,0.249779,0,0);-ms-transform:matrix(0.198350,0.008339,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.198350,0.008339,-0.010501,0.249779,0,0);}
.m11b_c01048{transform:matrix(0.198406,0.003373,-0.004249,0.249964,0,0);-ms-transform:matrix(0.198406,0.003373,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.198406,0.003373,-0.004249,0.249964,0,0);}
.m3a_c01048{transform:matrix(0.198416,0.007150,-0.009003,0.249838,0,0);-ms-transform:matrix(0.198416,0.007150,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.198416,0.007150,-0.009003,0.249838,0,0);}
.mff_c01048{transform:matrix(0.198465,0.008344,-0.010501,0.249779,0,0);-ms-transform:matrix(0.198465,0.008344,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.198465,0.008344,-0.010501,0.249779,0,0);}
.mb5_c01048{transform:matrix(0.198655,0.008352,-0.010501,0.249779,0,0);-ms-transform:matrix(0.198655,0.008352,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.198655,0.008352,-0.010501,0.249779,0,0);}
.m65_c01048{transform:matrix(0.199076,0.007174,-0.009003,0.249838,0,0);-ms-transform:matrix(0.199076,0.007174,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.199076,0.007174,-0.009003,0.249838,0,0);}
.m4f_c01048{transform:matrix(0.199900,0.007204,-0.009003,0.249838,0,0);-ms-transform:matrix(0.199900,0.007204,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.199900,0.007204,-0.009003,0.249838,0,0);}
.m9c_c01048{transform:matrix(0.200178,0.008416,-0.010501,0.249779,0,0);-ms-transform:matrix(0.200178,0.008416,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.200178,0.008416,-0.010501,0.249779,0,0);}
.m5c_c01048{transform:matrix(0.200180,0.007214,-0.009003,0.249838,0,0);-ms-transform:matrix(0.200180,0.007214,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.200180,0.007214,-0.009003,0.249838,0,0);}
.m5b_c01048{transform:matrix(0.200750,0.007234,-0.009003,0.249838,0,0);-ms-transform:matrix(0.200750,0.007234,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.200750,0.007234,-0.009003,0.249838,0,0);}
.m46_c01048{transform:matrix(0.200805,0.007236,-0.009003,0.249838,0,0);-ms-transform:matrix(0.200805,0.007236,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.200805,0.007236,-0.009003,0.249838,0,0);}
.m50_c01048{transform:matrix(0.201010,0.007244,-0.009003,0.249838,0,0);-ms-transform:matrix(0.201010,0.007244,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.201010,0.007244,-0.009003,0.249838,0,0);}
.m69_c01048{transform:matrix(0.201399,0.007258,-0.009003,0.249838,0,0);-ms-transform:matrix(0.201399,0.007258,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.201399,0.007258,-0.009003,0.249838,0,0);}
.m4e_c01048{transform:matrix(0.201819,0.007273,-0.009003,0.249838,0,0);-ms-transform:matrix(0.201819,0.007273,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.201819,0.007273,-0.009003,0.249838,0,0);}
.mb6_c01048{transform:matrix(0.202346,0.008507,-0.010501,0.249779,0,0);-ms-transform:matrix(0.202346,0.008507,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.202346,0.008507,-0.010501,0.249779,0,0);}
.m49_c01048{transform:matrix(0.203083,0.007318,-0.009003,0.249838,0,0);-ms-transform:matrix(0.203083,0.007318,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.203083,0.007318,-0.009003,0.249838,0,0);}
.m44_c01048{transform:matrix(0.203343,0.007328,-0.009003,0.249838,0,0);-ms-transform:matrix(0.203343,0.007328,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.203343,0.007328,-0.009003,0.249838,0,0);}
.me_c01048{transform:matrix(0.204038,0.007353,-0.009003,0.249838,0,0);-ms-transform:matrix(0.204038,0.007353,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.204038,0.007353,-0.009003,0.249838,0,0);}
.m42_c01048{transform:matrix(0.204088,0.007355,-0.009003,0.249838,0,0);-ms-transform:matrix(0.204088,0.007355,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.204088,0.007355,-0.009003,0.249838,0,0);}
.m53_c01048{transform:matrix(0.204187,0.007358,-0.009003,0.249838,0,0);-ms-transform:matrix(0.204187,0.007358,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.204187,0.007358,-0.009003,0.249838,0,0);}
.ma0_c01048{transform:matrix(0.206642,0.008688,-0.010501,0.249779,0,0);-ms-transform:matrix(0.206642,0.008688,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.206642,0.008688,-0.010501,0.249779,0,0);}
.m3d_c01048{transform:matrix(0.206986,0.007459,-0.009003,0.249838,0,0);-ms-transform:matrix(0.206986,0.007459,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.206986,0.007459,-0.009003,0.249838,0,0);}
.m40_c01048{transform:matrix(0.207016,0.007460,-0.009003,0.249838,0,0);-ms-transform:matrix(0.207016,0.007460,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.207016,0.007460,-0.009003,0.249838,0,0);}
.m108_c01048{transform:matrix(0.207292,0.008715,-0.010501,0.249779,0,0);-ms-transform:matrix(0.207292,0.008715,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.207292,0.008715,-0.010501,0.249779,0,0);}
.m119_c01048{transform:matrix(0.207475,0.003527,-0.004249,0.249964,0,0);-ms-transform:matrix(0.207475,0.003527,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.207475,0.003527,-0.004249,0.249964,0,0);}
.m51_c01048{transform:matrix(0.207855,0.007490,-0.009003,0.249838,0,0);-ms-transform:matrix(0.207855,0.007490,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.207855,0.007490,-0.009003,0.249838,0,0);}
.mb0_c01048{transform:matrix(0.207926,0.008742,-0.010501,0.249779,0,0);-ms-transform:matrix(0.207926,0.008742,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.207926,0.008742,-0.010501,0.249779,0,0);}
.mb3_c01048{transform:matrix(0.208281,0.008757,-0.010501,0.249779,0,0);-ms-transform:matrix(0.208281,0.008757,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.208281,0.008757,-0.010501,0.249779,0,0);}
.m6c_c01048{transform:matrix(0.208300,0.007506,-0.009003,0.249838,0,0);-ms-transform:matrix(0.208300,0.007506,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.208300,0.007506,-0.009003,0.249838,0,0);}
.m10a_c01048{transform:matrix(0.209360,0.008802,-0.010501,0.249779,0,0);-ms-transform:matrix(0.209360,0.008802,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.209360,0.008802,-0.010501,0.249779,0,0);}
.m52_c01048{transform:matrix(0.209799,0.007560,-0.009003,0.249838,0,0);-ms-transform:matrix(0.209799,0.007560,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.209799,0.007560,-0.009003,0.249838,0,0);}
.m3c_c01048{transform:matrix(0.211443,0.007620,-0.009003,0.249838,0,0);-ms-transform:matrix(0.211443,0.007620,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.211443,0.007620,-0.009003,0.249838,0,0);}
.ma6_c01048{transform:matrix(0.211743,0.008902,-0.010501,0.249779,0,0);-ms-transform:matrix(0.211743,0.008902,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.211743,0.008902,-0.010501,0.249779,0,0);}
.m104_c01048{transform:matrix(0.212282,0.008925,-0.010501,0.249779,0,0);-ms-transform:matrix(0.212282,0.008925,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.212282,0.008925,-0.010501,0.249779,0,0);}
.ma9_c01048{transform:matrix(0.212322,0.008926,-0.010501,0.249779,0,0);-ms-transform:matrix(0.212322,0.008926,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.212322,0.008926,-0.010501,0.249779,0,0);}
.mb2_c01048{transform:matrix(0.212632,0.008939,-0.010501,0.249779,0,0);-ms-transform:matrix(0.212632,0.008939,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.212632,0.008939,-0.010501,0.249779,0,0);}
.m37_c01048{transform:matrix(0.212642,0.007663,-0.009003,0.249838,0,0);-ms-transform:matrix(0.212642,0.007663,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.212642,0.007663,-0.009003,0.249838,0,0);}
.m11c_c01048{transform:matrix(0.213454,0.003629,-0.004249,0.249964,0,0);-ms-transform:matrix(0.213454,0.003629,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.213454,0.003629,-0.004249,0.249964,0,0);}
.mb7_c01048{transform:matrix(0.213456,0.008974,-0.010501,0.249779,0,0);-ms-transform:matrix(0.213456,0.008974,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.213456,0.008974,-0.010501,0.249779,0,0);}
.m19_c01048{transform:matrix(0.213681,0.007700,-0.009003,0.249838,0,0);-ms-transform:matrix(0.213681,0.007700,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.213681,0.007700,-0.009003,0.249838,0,0);}
.m87_c01048{transform:matrix(0.213691,0.007701,-0.009003,0.249838,0,0);-ms-transform:matrix(0.213691,0.007701,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.213691,0.007701,-0.009003,0.249838,0,0);}
.m33_c01048{transform:matrix(0.213846,0.007706,-0.009003,0.249838,0,0);-ms-transform:matrix(0.213846,0.007706,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.213846,0.007706,-0.009003,0.249838,0,0);}
.m13_c01048{transform:matrix(0.214276,0.007722,-0.009003,0.249838,0,0);-ms-transform:matrix(0.214276,0.007722,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.214276,0.007722,-0.009003,0.249838,0,0);}
.m6f_c01048{transform:matrix(0.214526,0.007731,-0.009003,0.249838,0,0);-ms-transform:matrix(0.214526,0.007731,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.214526,0.007731,-0.009003,0.249838,0,0);}
.mc3_c01048{transform:matrix(0.214560,0.009021,-0.010501,0.249779,0,0);-ms-transform:matrix(0.214560,0.009021,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.214560,0.009021,-0.010501,0.249779,0,0);}
.md9_c01048{transform:matrix(0.215525,0.009061,-0.010501,0.249779,0,0);-ms-transform:matrix(0.215525,0.009061,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.215525,0.009061,-0.010501,0.249779,0,0);}
.m67_c01048{transform:matrix(0.216195,0.007791,-0.009003,0.249838,0,0);-ms-transform:matrix(0.216195,0.007791,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.216195,0.007791,-0.009003,0.249838,0,0);}
.mc_c01048{transform:matrix(0.216689,0.007809,-0.009003,0.249838,0,0);-ms-transform:matrix(0.216689,0.007809,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.216689,0.007809,-0.009003,0.249838,0,0);}
.m15_c01048{transform:matrix(0.217479,0.007837,-0.009003,0.249838,0,0);-ms-transform:matrix(0.217479,0.007837,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.217479,0.007837,-0.009003,0.249838,0,0);}
.m7f_c01048{transform:matrix(0.217639,0.007843,-0.009003,0.249838,0,0);-ms-transform:matrix(0.217639,0.007843,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.217639,0.007843,-0.009003,0.249838,0,0);}
.mf0_c01048{transform:matrix(0.218362,0.009180,-0.010501,0.249779,0,0);-ms-transform:matrix(0.218362,0.009180,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.218362,0.009180,-0.010501,0.249779,0,0);}
.m111_c01048{transform:matrix(0.218426,0.007215,-0.008254,0.249864,0,0);-ms-transform:matrix(0.218426,0.007215,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.218426,0.007215,-0.008254,0.249864,0,0);}
.m6d_c01048{transform:matrix(0.218653,0.007879,-0.009003,0.249838,0,0);-ms-transform:matrix(0.218653,0.007879,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.218653,0.007879,-0.009003,0.249838,0,0);}
.m7b_c01048{transform:matrix(0.218688,0.007881,-0.009003,0.249838,0,0);-ms-transform:matrix(0.218688,0.007881,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.218688,0.007881,-0.009003,0.249838,0,0);}
.m78_c01048{transform:matrix(0.218783,0.007884,-0.009003,0.249838,0,0);-ms-transform:matrix(0.218783,0.007884,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.218783,0.007884,-0.009003,0.249838,0,0);}
.m31_c01048{transform:matrix(0.219078,0.007895,-0.009003,0.249838,0,0);-ms-transform:matrix(0.219078,0.007895,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.219078,0.007895,-0.009003,0.249838,0,0);}
.m16_c01048{transform:matrix(0.219682,0.007916,-0.009003,0.249838,0,0);-ms-transform:matrix(0.219682,0.007916,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.219682,0.007916,-0.009003,0.249838,0,0);}
.m35_c01048{transform:matrix(0.219767,0.007920,-0.009003,0.249838,0,0);-ms-transform:matrix(0.219767,0.007920,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.219767,0.007920,-0.009003,0.249838,0,0);}
.m10b_c01048{transform:matrix(0.219816,0.009242,-0.010501,0.249779,0,0);-ms-transform:matrix(0.219816,0.009242,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.219816,0.009242,-0.010501,0.249779,0,0);}
.m11_c01048{transform:matrix(0.219902,0.007924,-0.009003,0.249838,0,0);-ms-transform:matrix(0.219902,0.007924,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.219902,0.007924,-0.009003,0.249838,0,0);}
.me0_c01048{transform:matrix(0.220056,0.009252,-0.010501,0.249779,0,0);-ms-transform:matrix(0.220056,0.009252,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.220056,0.009252,-0.010501,0.249779,0,0);}
.ma4_c01048{transform:matrix(0.220605,0.009275,-0.010501,0.249779,0,0);-ms-transform:matrix(0.220605,0.009275,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.220605,0.009275,-0.010501,0.249779,0,0);}
.m73_c01048{transform:matrix(0.220672,0.007952,-0.009003,0.249838,0,0);-ms-transform:matrix(0.220672,0.007952,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.220672,0.007952,-0.009003,0.249838,0,0);}
.m85_c01048{transform:matrix(0.220687,0.007953,-0.009003,0.249838,0,0);-ms-transform:matrix(0.220687,0.007953,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.220687,0.007953,-0.009003,0.249838,0,0);}
.m107_c01048{transform:matrix(0.221205,0.009300,-0.010501,0.249779,0,0);-ms-transform:matrix(0.221205,0.009300,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.221205,0.009300,-0.010501,0.249779,0,0);}
.m2f_c01048{transform:matrix(0.221326,0.007976,-0.009003,0.249838,0,0);-ms-transform:matrix(0.221326,0.007976,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.221326,0.007976,-0.009003,0.249838,0,0);}
.m8_c01048{transform:matrix(0.221571,0.007985,-0.009003,0.249838,0,0);-ms-transform:matrix(0.221571,0.007985,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.221571,0.007985,-0.009003,0.249838,0,0);}
.m39_c01048{transform:matrix(0.221591,0.007985,-0.009003,0.249838,0,0);-ms-transform:matrix(0.221591,0.007985,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.221591,0.007985,-0.009003,0.249838,0,0);}
.mab_c01048{transform:matrix(0.221689,0.009320,-0.010501,0.249779,0,0);-ms-transform:matrix(0.221689,0.009320,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.221689,0.009320,-0.010501,0.249779,0,0);}
.mdd_c01048{transform:matrix(0.221749,0.009323,-0.010501,0.249779,0,0);-ms-transform:matrix(0.221749,0.009323,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.221749,0.009323,-0.010501,0.249779,0,0);}
.mf1_c01048{transform:matrix(0.221819,0.009326,-0.010501,0.249779,0,0);-ms-transform:matrix(0.221819,0.009326,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.221819,0.009326,-0.010501,0.249779,0,0);}
.m116_c01048{transform:matrix(0.222208,0.003778,-0.004249,0.249964,0,0);-ms-transform:matrix(0.222208,0.003778,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.222208,0.003778,-0.004249,0.249964,0,0);}
.mf_c01048{transform:matrix(0.222655,0.008024,-0.009003,0.249838,0,0);-ms-transform:matrix(0.222655,0.008024,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.222655,0.008024,-0.009003,0.249838,0,0);}
.me2_c01048{transform:matrix(0.222838,0.009369,-0.010501,0.249779,0,0);-ms-transform:matrix(0.222838,0.009369,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.222838,0.009369,-0.010501,0.249779,0,0);}
.m9_c01048{transform:matrix(0.223075,0.008039,-0.009003,0.249838,0,0);-ms-transform:matrix(0.223075,0.008039,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.223075,0.008039,-0.009003,0.249838,0,0);}
.m64_c01048{transform:matrix(0.223090,0.008039,-0.009003,0.249838,0,0);-ms-transform:matrix(0.223090,0.008039,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.223090,0.008039,-0.009003,0.249838,0,0);}
.mf5_c01048{transform:matrix(0.223338,0.009390,-0.010501,0.249779,0,0);-ms-transform:matrix(0.223338,0.009390,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.223338,0.009390,-0.010501,0.249779,0,0);}
.m5a_c01048{transform:matrix(0.223750,0.008063,-0.009003,0.249838,0,0);-ms-transform:matrix(0.223750,0.008063,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.223750,0.008063,-0.009003,0.249838,0,0);}
.mde_c01048{transform:matrix(0.224801,0.009451,-0.010501,0.249779,0,0);-ms-transform:matrix(0.224801,0.009451,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.224801,0.009451,-0.010501,0.249779,0,0);}
.m88_c01048{transform:matrix(0.224839,0.008102,-0.009003,0.249838,0,0);-ms-transform:matrix(0.224839,0.008102,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.224839,0.008102,-0.009003,0.249838,0,0);}
.mf8_c01048{transform:matrix(0.224906,0.009456,-0.010501,0.249779,0,0);-ms-transform:matrix(0.224906,0.009456,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.224906,0.009456,-0.010501,0.249779,0,0);}
.m11a_c01048{transform:matrix(0.226067,0.003843,-0.004249,0.249964,0,0);-ms-transform:matrix(0.226067,0.003843,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.226067,0.003843,-0.004249,0.249964,0,0);}
.m122_c01048{transform:matrix(0.226497,0.003850,-0.004249,0.249964,0,0);-ms-transform:matrix(0.226497,0.003850,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.226497,0.003850,-0.004249,0.249964,0,0);}
.mef_c01048{transform:matrix(0.226555,0.009525,-0.010501,0.249779,0,0);-ms-transform:matrix(0.226555,0.009525,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.226555,0.009525,-0.010501,0.249779,0,0);}
.m60_c01048{transform:matrix(0.226718,0.008170,-0.009003,0.249838,0,0);-ms-transform:matrix(0.226718,0.008170,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.226718,0.008170,-0.009003,0.249838,0,0);}
.m45_c01048{transform:matrix(0.226848,0.008175,-0.009003,0.249838,0,0);-ms-transform:matrix(0.226848,0.008175,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.226848,0.008175,-0.009003,0.249838,0,0);}
.me6_c01048{transform:matrix(0.226860,0.009538,-0.010501,0.249779,0,0);-ms-transform:matrix(0.226860,0.009538,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.226860,0.009538,-0.010501,0.249779,0,0);}
.mf3_c01048{transform:matrix(0.227034,0.009545,-0.010501,0.249779,0,0);-ms-transform:matrix(0.227034,0.009545,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.227034,0.009545,-0.010501,0.249779,0,0);}
.m115_c01048{transform:matrix(0.227102,0.003861,-0.004249,0.249964,0,0);-ms-transform:matrix(0.227102,0.003861,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.227102,0.003861,-0.004249,0.249964,0,0);}
.m6b_c01048{transform:matrix(0.227302,0.008191,-0.009003,0.249838,0,0);-ms-transform:matrix(0.227302,0.008191,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.227302,0.008191,-0.009003,0.249838,0,0);}
.mcc_c01048{transform:matrix(0.227349,0.009558,-0.010501,0.249779,0,0);-ms-transform:matrix(0.227349,0.009558,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.227349,0.009558,-0.010501,0.249779,0,0);}
.m84_c01048{transform:matrix(0.227797,0.008209,-0.009003,0.249838,0,0);-ms-transform:matrix(0.227797,0.008209,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.227797,0.008209,-0.009003,0.249838,0,0);}
.m9f_c01048{transform:matrix(0.227969,0.009584,-0.010501,0.249779,0,0);-ms-transform:matrix(0.227969,0.009584,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.227969,0.009584,-0.010501,0.249779,0,0);}
.m1e_c01048{transform:matrix(0.228012,0.008217,-0.009003,0.249838,0,0);-ms-transform:matrix(0.228012,0.008217,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.228012,0.008217,-0.009003,0.249838,0,0);}
.mda_c01048{transform:matrix(0.228308,0.009599,-0.010501,0.249779,0,0);-ms-transform:matrix(0.228308,0.009599,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.228308,0.009599,-0.010501,0.249779,0,0);}
.m72_c01048{transform:matrix(0.229031,0.008253,-0.009003,0.249838,0,0);-ms-transform:matrix(0.229031,0.008253,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.229031,0.008253,-0.009003,0.249838,0,0);}
.m109_c01048{transform:matrix(0.229208,0.009636,-0.010501,0.249779,0,0);-ms-transform:matrix(0.229208,0.009636,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.229208,0.009636,-0.010501,0.249779,0,0);}
.mc7_c01048{transform:matrix(0.229597,0.009653,-0.010501,0.249779,0,0);-ms-transform:matrix(0.229597,0.009653,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.229597,0.009653,-0.010501,0.249779,0,0);}
.m10_c01048{transform:matrix(0.229626,0.008275,-0.009003,0.249838,0,0);-ms-transform:matrix(0.229626,0.008275,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.229626,0.008275,-0.009003,0.249838,0,0);}
.mac_c01048{transform:matrix(0.230856,0.009706,-0.010501,0.249779,0,0);-ms-transform:matrix(0.230856,0.009706,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.230856,0.009706,-0.010501,0.249779,0,0);}
.m117_c01048{transform:matrix(0.230862,0.003925,-0.004249,0.249964,0,0);-ms-transform:matrix(0.230862,0.003925,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.230862,0.003925,-0.004249,0.249964,0,0);}
.m112_c01048{transform:matrix(0.231259,0.007639,-0.008254,0.249864,0,0);-ms-transform:matrix(0.231259,0.007639,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.231259,0.007639,-0.008254,0.249864,0,0);}
.m68_c01048{transform:matrix(0.231345,0.008337,-0.009003,0.249838,0,0);-ms-transform:matrix(0.231345,0.008337,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.231345,0.008337,-0.009003,0.249838,0,0);}
.m118_c01048{transform:matrix(0.231487,0.003935,-0.004249,0.249964,0,0);-ms-transform:matrix(0.231487,0.003935,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.231487,0.003935,-0.004249,0.249964,0,0);}
.m113_c01048{transform:matrix(0.231539,0.007648,-0.008254,0.249864,0,0);-ms-transform:matrix(0.231539,0.007648,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.231539,0.007648,-0.008254,0.249864,0,0);}
.m79_c01048{transform:matrix(0.231550,0.008344,-0.009003,0.249838,0,0);-ms-transform:matrix(0.231550,0.008344,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.231550,0.008344,-0.009003,0.249838,0,0);}
.m63_c01048{transform:matrix(0.231680,0.008349,-0.009003,0.249838,0,0);-ms-transform:matrix(0.231680,0.008349,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.231680,0.008349,-0.009003,0.249838,0,0);}
.m56_c01048{transform:matrix(0.231850,0.008355,-0.009003,0.249838,0,0);-ms-transform:matrix(0.231850,0.008355,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.231850,0.008355,-0.009003,0.249838,0,0);}
.mbf_c01048{transform:matrix(0.232080,0.009757,-0.010501,0.249779,0,0);-ms-transform:matrix(0.232080,0.009757,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.232080,0.009757,-0.010501,0.249779,0,0);}
.ma1_c01048{transform:matrix(0.232255,0.009764,-0.010501,0.249779,0,0);-ms-transform:matrix(0.232255,0.009764,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.232255,0.009764,-0.010501,0.249779,0,0);}
.m2c_c01048{transform:matrix(0.232834,0.008390,-0.009003,0.249838,0,0);-ms-transform:matrix(0.232834,0.008390,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.232834,0.008390,-0.009003,0.249838,0,0);}
.m58_c01048{transform:matrix(0.233374,0.008410,-0.009003,0.249838,0,0);-ms-transform:matrix(0.233374,0.008410,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.233374,0.008410,-0.009003,0.249838,0,0);}
.m80_c01048{transform:matrix(0.233404,0.008411,-0.009003,0.249838,0,0);-ms-transform:matrix(0.233404,0.008411,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.233404,0.008411,-0.009003,0.249838,0,0);}
.mba_c01048{transform:matrix(0.233489,0.009816,-0.010501,0.249779,0,0);-ms-transform:matrix(0.233489,0.009816,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.233489,0.009816,-0.010501,0.249779,0,0);}
.m20_c01048{transform:matrix(0.233543,0.008416,-0.009003,0.249838,0,0);-ms-transform:matrix(0.233543,0.008416,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.233543,0.008416,-0.009003,0.249838,0,0);}
.m114_c01048{transform:matrix(0.233678,0.007719,-0.008254,0.249864,0,0);-ms-transform:matrix(0.233678,0.007719,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.233678,0.007719,-0.008254,0.249864,0,0);}
.m74_c01048{transform:matrix(0.233933,0.008430,-0.009003,0.249838,0,0);-ms-transform:matrix(0.233933,0.008430,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.233933,0.008430,-0.009003,0.249838,0,0);}
.m77_c01048{transform:matrix(0.234108,0.008436,-0.009003,0.249838,0,0);-ms-transform:matrix(0.234108,0.008436,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.234108,0.008436,-0.009003,0.249838,0,0);}
.m36_c01048{transform:matrix(0.234113,0.008437,-0.009003,0.249838,0,0);-ms-transform:matrix(0.234113,0.008437,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.234113,0.008437,-0.009003,0.249838,0,0);}
.m5f_c01048{transform:matrix(0.234448,0.008449,-0.009003,0.249838,0,0);-ms-transform:matrix(0.234448,0.008449,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.234448,0.008449,-0.009003,0.249838,0,0);}
.m121_c01048{transform:matrix(0.234516,0.003987,-0.004249,0.249964,0,0);-ms-transform:matrix(0.234516,0.003987,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.234516,0.003987,-0.004249,0.249964,0,0);}
.m34_c01048{transform:matrix(0.234773,0.008460,-0.009003,0.249838,0,0);-ms-transform:matrix(0.234773,0.008460,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.234773,0.008460,-0.009003,0.249838,0,0);}
.m10e_c01048{transform:matrix(0.234872,0.007759,-0.008254,0.249864,0,0);-ms-transform:matrix(0.234872,0.007759,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.234872,0.007759,-0.008254,0.249864,0,0);}
.m9e_c01048{transform:matrix(0.235227,0.009889,-0.010501,0.249779,0,0);-ms-transform:matrix(0.235227,0.009889,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.235227,0.009889,-0.010501,0.249779,0,0);}
.m57_c01048{transform:matrix(0.235527,0.008487,-0.009003,0.249838,0,0);-ms-transform:matrix(0.235527,0.008487,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.235527,0.008487,-0.009003,0.249838,0,0);}
.m5d_c01048{transform:matrix(0.236247,0.008513,-0.009003,0.249838,0,0);-ms-transform:matrix(0.236247,0.008513,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.236247,0.008513,-0.009003,0.249838,0,0);}
.m5e_c01048{transform:matrix(0.236806,0.008534,-0.009003,0.249838,0,0);-ms-transform:matrix(0.236806,0.008534,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.236806,0.008534,-0.009003,0.249838,0,0);}
.m3b_c01048{transform:matrix(0.237396,0.008555,-0.009003,0.249838,0,0);-ms-transform:matrix(0.237396,0.008555,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.237396,0.008555,-0.009003,0.249838,0,0);}
.mdc_c01048{transform:matrix(0.237480,0.009984,-0.010501,0.249779,0,0);-ms-transform:matrix(0.237480,0.009984,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.237480,0.009984,-0.010501,0.249779,0,0);}
.mdf_c01048{transform:matrix(0.237660,0.009992,-0.010501,0.249779,0,0);-ms-transform:matrix(0.237660,0.009992,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.237660,0.009992,-0.010501,0.249779,0,0);}
.m75_c01048{transform:matrix(0.237666,0.008565,-0.009003,0.249838,0,0);-ms-transform:matrix(0.237666,0.008565,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.237666,0.008565,-0.009003,0.249838,0,0);}
.mca_c01048{transform:matrix(0.238235,0.010016,-0.010501,0.249779,0,0);-ms-transform:matrix(0.238235,0.010016,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.238235,0.010016,-0.010501,0.249779,0,0);}
.mee_c01048{transform:matrix(0.238729,0.010037,-0.010501,0.249779,0,0);-ms-transform:matrix(0.238729,0.010037,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.238729,0.010037,-0.010501,0.249779,0,0);}
.md8_c01048{transform:matrix(0.238779,0.010039,-0.010501,0.249779,0,0);-ms-transform:matrix(0.238779,0.010039,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.238779,0.010039,-0.010501,0.249779,0,0);}
.ma5_c01048{transform:matrix(0.239059,0.010051,-0.010501,0.249779,0,0);-ms-transform:matrix(0.239059,0.010051,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.239059,0.010051,-0.010501,0.249779,0,0);}
.mad_c01048{transform:matrix(0.239194,0.010056,-0.010501,0.249779,0,0);-ms-transform:matrix(0.239194,0.010056,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.239194,0.010056,-0.010501,0.249779,0,0);}
.ma3_c01048{transform:matrix(0.239753,0.010080,-0.010501,0.249779,0,0);-ms-transform:matrix(0.239753,0.010080,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.239753,0.010080,-0.010501,0.249779,0,0);}
.m23_c01048{transform:matrix(0.240129,0.008653,-0.009003,0.249838,0,0);-ms-transform:matrix(0.240129,0.008653,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.240129,0.008653,-0.009003,0.249838,0,0);}
.m66_c01048{transform:matrix(0.240174,0.008655,-0.009003,0.249838,0,0);-ms-transform:matrix(0.240174,0.008655,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.240174,0.008655,-0.009003,0.249838,0,0);}
.m59_c01048{transform:matrix(0.240179,0.008655,-0.009003,0.249838,0,0);-ms-transform:matrix(0.240179,0.008655,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.240179,0.008655,-0.009003,0.249838,0,0);}
.m6a_c01048{transform:matrix(0.241069,0.008687,-0.009003,0.249838,0,0);-ms-transform:matrix(0.241069,0.008687,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.241069,0.008687,-0.009003,0.249838,0,0);}
.m10d_c01048{transform:matrix(0.241472,0.010152,-0.010501,0.249779,0,0);-ms-transform:matrix(0.241472,0.010152,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.241472,0.010152,-0.010501,0.249779,0,0);}
.m10c_c01048{transform:matrix(0.241477,0.010152,-0.010501,0.249779,0,0);-ms-transform:matrix(0.241477,0.010152,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.241477,0.010152,-0.010501,0.249779,0,0);}
.m22_c01048{transform:matrix(0.241863,0.008716,-0.009003,0.249838,0,0);-ms-transform:matrix(0.241863,0.008716,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.241863,0.008716,-0.009003,0.249838,0,0);}
.md3_c01048{transform:matrix(0.242126,0.010179,-0.010501,0.249779,0,0);-ms-transform:matrix(0.242126,0.010179,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.242126,0.010179,-0.010501,0.249779,0,0);}
.mcd_c01048{transform:matrix(0.242491,0.010195,-0.010501,0.249779,0,0);-ms-transform:matrix(0.242491,0.010195,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.242491,0.010195,-0.010501,0.249779,0,0);}
.mc5_c01048{transform:matrix(0.242711,0.010204,-0.010501,0.249779,0,0);-ms-transform:matrix(0.242711,0.010204,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.242711,0.010204,-0.010501,0.249779,0,0);}
.m71_c01048{transform:matrix(0.242767,0.008748,-0.009003,0.249838,0,0);-ms-transform:matrix(0.242767,0.008748,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.242767,0.008748,-0.009003,0.249838,0,0);}
.ma7_c01048{transform:matrix(0.243055,0.010219,-0.010501,0.249779,0,0);-ms-transform:matrix(0.243055,0.010219,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.243055,0.010219,-0.010501,0.249779,0,0);}
.mea_c01048{transform:matrix(0.243160,0.010223,-0.010501,0.249779,0,0);-ms-transform:matrix(0.243160,0.010223,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.243160,0.010223,-0.010501,0.249779,0,0);}
.m123_c01048{transform:matrix(0.244025,0.004148,-0.004249,0.249964,0,0);-ms-transform:matrix(0.244025,0.004148,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.244025,0.004148,-0.004249,0.249964,0,0);}
.ma2_c01048{transform:matrix(0.244199,0.010267,-0.010501,0.249779,0,0);-ms-transform:matrix(0.244199,0.010267,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.244199,0.010267,-0.010501,0.249779,0,0);}
.mdb_c01048{transform:matrix(0.245228,0.010310,-0.010501,0.249779,0,0);-ms-transform:matrix(0.245228,0.010310,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.245228,0.010310,-0.010501,0.249779,0,0);}
.me3_c01048{transform:matrix(0.246572,0.010366,-0.010501,0.249779,0,0);-ms-transform:matrix(0.246572,0.010366,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.246572,0.010366,-0.010501,0.249779,0,0);}
.m7c_c01048{transform:matrix(0.246920,0.008898,-0.009003,0.249838,0,0);-ms-transform:matrix(0.246920,0.008898,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.246920,0.008898,-0.009003,0.249838,0,0);}
.m18_c01048{transform:matrix(0.246940,0.008899,-0.009003,0.249838,0,0);-ms-transform:matrix(0.246940,0.008899,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.246940,0.008899,-0.009003,0.249838,0,0);}
.m2d_c01048{transform:matrix(0.247175,0.008907,-0.009003,0.249838,0,0);-ms-transform:matrix(0.247175,0.008907,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.247175,0.008907,-0.009003,0.249838,0,0);}
.maa_c01048{transform:matrix(0.248101,0.010431,-0.010501,0.249779,0,0);-ms-transform:matrix(0.248101,0.010431,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.248101,0.010431,-0.010501,0.249779,0,0);}
.mae_c01048{transform:matrix(0.248341,0.010441,-0.010501,0.249779,0,0);-ms-transform:matrix(0.248341,0.010441,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.248341,0.010441,-0.010501,0.249779,0,0);}
.mc4_c01048{transform:matrix(0.248660,0.010454,-0.010501,0.249779,0,0);-ms-transform:matrix(0.248660,0.010454,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.248660,0.010454,-0.010501,0.249779,0,0);}
.m83_c01048{transform:matrix(0.248913,0.008970,-0.009003,0.249838,0,0);-ms-transform:matrix(0.248913,0.008970,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.248913,0.008970,-0.009003,0.249838,0,0);}
.m7a_c01048{transform:matrix(0.250243,0.009018,-0.009003,0.249838,0,0);-ms-transform:matrix(0.250243,0.009018,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.250243,0.009018,-0.009003,0.249838,0,0);}
.m70_c01048{transform:matrix(0.250582,0.009030,-0.009003,0.249838,0,0);-ms-transform:matrix(0.250582,0.009030,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.250582,0.009030,-0.009003,0.249838,0,0);}
.m7d_c01048{transform:matrix(0.250717,0.009035,-0.009003,0.249838,0,0);-ms-transform:matrix(0.250717,0.009035,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.250717,0.009035,-0.009003,0.249838,0,0);}
.ma8_c01048{transform:matrix(0.251228,0.010562,-0.010501,0.249779,0,0);-ms-transform:matrix(0.251228,0.010562,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.251228,0.010562,-0.010501,0.249779,0,0);}
.m27_c01048{transform:matrix(0.251707,0.009071,-0.009003,0.249838,0,0);-ms-transform:matrix(0.251707,0.009071,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.251707,0.009071,-0.009003,0.249838,0,0);}
.m11f_c01048{transform:matrix(0.252274,0.004289,-0.004249,0.249964,0,0);-ms-transform:matrix(0.252274,0.004289,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.252274,0.004289,-0.004249,0.249964,0,0);}
.m89_c01048{transform:matrix(0.253096,0.009121,-0.009003,0.249838,0,0);-ms-transform:matrix(0.253096,0.009121,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.253096,0.009121,-0.009003,0.249838,0,0);}
.m10f_c01048{transform:matrix(0.253307,0.008367,-0.008254,0.249864,0,0);-ms-transform:matrix(0.253307,0.008367,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.253307,0.008367,-0.008254,0.249864,0,0);}
.m17_c01048{transform:matrix(0.254470,0.009170,-0.009003,0.249838,0,0);-ms-transform:matrix(0.254470,0.009170,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.254470,0.009170,-0.009003,0.249838,0,0);}
.mc2_c01048{transform:matrix(0.254530,0.010701,-0.010501,0.249779,0,0);-ms-transform:matrix(0.254530,0.010701,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.254530,0.010701,-0.010501,0.249779,0,0);}
.md6_c01048{transform:matrix(0.254690,0.010708,-0.010501,0.249779,0,0);-ms-transform:matrix(0.254690,0.010708,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.254690,0.010708,-0.010501,0.249779,0,0);}
.m12_c01048{transform:matrix(0.254775,0.009181,-0.009003,0.249838,0,0);-ms-transform:matrix(0.254775,0.009181,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.254775,0.009181,-0.009003,0.249838,0,0);}
.m110_c01048{transform:matrix(0.255036,0.008425,-0.008254,0.249864,0,0);-ms-transform:matrix(0.255036,0.008425,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.255036,0.008425,-0.008254,0.249864,0,0);}
.m86_c01048{transform:matrix(0.255139,0.009194,-0.009003,0.249838,0,0);-ms-transform:matrix(0.255139,0.009194,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.255139,0.009194,-0.009003,0.249838,0,0);}
.m6e_c01048{transform:matrix(0.255539,0.009209,-0.009003,0.249838,0,0);-ms-transform:matrix(0.255539,0.009209,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.255539,0.009209,-0.009003,0.249838,0,0);}
.maf_c01048{transform:matrix(0.255564,0.010744,-0.010501,0.249779,0,0);-ms-transform:matrix(0.255564,0.010744,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.255564,0.010744,-0.010501,0.249779,0,0);}
.mc0_c01048{transform:matrix(0.256374,0.010778,-0.010501,0.249779,0,0);-ms-transform:matrix(0.256374,0.010778,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.256374,0.010778,-0.010501,0.249779,0,0);}
.me8_c01048{transform:matrix(0.256428,0.010781,-0.010501,0.249779,0,0);-ms-transform:matrix(0.256428,0.010781,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.256428,0.010781,-0.010501,0.249779,0,0);}
.mc8_c01048{transform:matrix(0.256553,0.010786,-0.010501,0.249779,0,0);-ms-transform:matrix(0.256553,0.010786,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.256553,0.010786,-0.010501,0.249779,0,0);}
.m21_c01048{transform:matrix(0.256793,0.009254,-0.009003,0.249838,0,0);-ms-transform:matrix(0.256793,0.009254,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.256793,0.009254,-0.009003,0.249838,0,0);}
.m7e_c01048{transform:matrix(0.257163,0.009267,-0.009003,0.249838,0,0);-ms-transform:matrix(0.257163,0.009267,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.257163,0.009267,-0.009003,0.249838,0,0);}
.mbe_c01048{transform:matrix(0.257208,0.010814,-0.010501,0.249779,0,0);-ms-transform:matrix(0.257208,0.010814,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.257208,0.010814,-0.010501,0.249779,0,0);}
.m8b_c01048{transform:matrix(0.257703,0.009287,-0.009003,0.249838,0,0);-ms-transform:matrix(0.257703,0.009287,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.257703,0.009287,-0.009003,0.249838,0,0);}
.m24_c01048{transform:matrix(0.257863,0.009292,-0.009003,0.249838,0,0);-ms-transform:matrix(0.257863,0.009292,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.257863,0.009292,-0.009003,0.249838,0,0);}
.m1a_c01048{transform:matrix(0.258262,0.009307,-0.009003,0.249838,0,0);-ms-transform:matrix(0.258262,0.009307,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.258262,0.009307,-0.009003,0.249838,0,0);}
.m14_c01048{transform:matrix(0.258407,0.009312,-0.009003,0.249838,0,0);-ms-transform:matrix(0.258407,0.009312,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.258407,0.009312,-0.009003,0.249838,0,0);}
.mcb_c01048{transform:matrix(0.258512,0.010868,-0.010501,0.249779,0,0);-ms-transform:matrix(0.258512,0.010868,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.258512,0.010868,-0.010501,0.249779,0,0);}
.mc9_c01048{transform:matrix(0.258602,0.010872,-0.010501,0.249779,0,0);-ms-transform:matrix(0.258602,0.010872,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.258602,0.010872,-0.010501,0.249779,0,0);}
.mbd_c01048{transform:matrix(0.258791,0.010880,-0.010501,0.249779,0,0);-ms-transform:matrix(0.258791,0.010880,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.258791,0.010880,-0.010501,0.249779,0,0);}
.m90_c01048{transform:matrix(0.259157,0.009339,-0.009003,0.249838,0,0);-ms-transform:matrix(0.259157,0.009339,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.259157,0.009339,-0.009003,0.249838,0,0);}
.mce_c01048{transform:matrix(0.259291,0.010901,-0.010501,0.249779,0,0);-ms-transform:matrix(0.259291,0.010901,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.259291,0.010901,-0.010501,0.249779,0,0);}
.me5_c01048{transform:matrix(0.259336,0.010903,-0.010501,0.249779,0,0);-ms-transform:matrix(0.259336,0.010903,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.259336,0.010903,-0.010501,0.249779,0,0);}
.me1_c01048{transform:matrix(0.259686,0.010918,-0.010501,0.249779,0,0);-ms-transform:matrix(0.259686,0.010918,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.259686,0.010918,-0.010501,0.249779,0,0);}
.md0_c01048{transform:matrix(0.260070,0.010934,-0.010501,0.249779,0,0);-ms-transform:matrix(0.260070,0.010934,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.260070,0.010934,-0.010501,0.249779,0,0);}
.mc6_c01048{transform:matrix(0.261134,0.010979,-0.010501,0.249779,0,0);-ms-transform:matrix(0.261134,0.010979,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.261134,0.010979,-0.010501,0.249779,0,0);}
.m106_c01048{transform:matrix(0.261249,0.010983,-0.010501,0.249779,0,0);-ms-transform:matrix(0.261249,0.010983,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.261249,0.010983,-0.010501,0.249779,0,0);}
.md1_c01048{transform:matrix(0.261699,0.011002,-0.010501,0.249779,0,0);-ms-transform:matrix(0.261699,0.011002,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.261699,0.011002,-0.010501,0.249779,0,0);}
.meb_c01048{transform:matrix(0.262333,0.011029,-0.010501,0.249779,0,0);-ms-transform:matrix(0.262333,0.011029,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.262333,0.011029,-0.010501,0.249779,0,0);}
.mb9_c01048{transform:matrix(0.262688,0.011044,-0.010501,0.249779,0,0);-ms-transform:matrix(0.262688,0.011044,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.262688,0.011044,-0.010501,0.249779,0,0);}
.mcf_c01048{transform:matrix(0.262728,0.011046,-0.010501,0.249779,0,0);-ms-transform:matrix(0.262728,0.011046,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.262728,0.011046,-0.010501,0.249779,0,0);}
.m81_c01048{transform:matrix(0.263109,0.009481,-0.009003,0.249838,0,0);-ms-transform:matrix(0.263109,0.009481,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.263109,0.009481,-0.009003,0.249838,0,0);}
.m8a_c01048{transform:matrix(0.263224,0.009486,-0.009003,0.249838,0,0);-ms-transform:matrix(0.263224,0.009486,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.263224,0.009486,-0.009003,0.249838,0,0);}
.m76_c01048{transform:matrix(0.264468,0.009530,-0.009003,0.249838,0,0);-ms-transform:matrix(0.264468,0.009530,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.264468,0.009530,-0.009003,0.249838,0,0);}
.m2e_c01048{transform:matrix(0.266212,0.009593,-0.009003,0.249838,0,0);-ms-transform:matrix(0.266212,0.009593,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.266212,0.009593,-0.009003,0.249838,0,0);}
.md2_c01048{transform:matrix(0.266325,0.011197,-0.010501,0.249779,0,0);-ms-transform:matrix(0.266325,0.011197,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.266325,0.011197,-0.010501,0.249779,0,0);}
.mec_c01048{transform:matrix(0.266649,0.011210,-0.010501,0.249779,0,0);-ms-transform:matrix(0.266649,0.011210,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.266649,0.011210,-0.010501,0.249779,0,0);}
.me7_c01048{transform:matrix(0.266994,0.011225,-0.010501,0.249779,0,0);-ms-transform:matrix(0.266994,0.011225,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.266994,0.011225,-0.010501,0.249779,0,0);}
.m25_c01048{transform:matrix(0.268826,0.009687,-0.009003,0.249838,0,0);-ms-transform:matrix(0.268826,0.009687,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.268826,0.009687,-0.009003,0.249838,0,0);}
.me9_c01048{transform:matrix(0.269297,0.011322,-0.010501,0.249779,0,0);-ms-transform:matrix(0.269297,0.011322,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.269297,0.011322,-0.010501,0.249779,0,0);}
.mf7_c01048{transform:matrix(0.270451,0.011370,-0.010501,0.249779,0,0);-ms-transform:matrix(0.270451,0.011370,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.270451,0.011370,-0.010501,0.249779,0,0);}
.md7_c01048{transform:matrix(0.270536,0.011374,-0.010501,0.249779,0,0);-ms-transform:matrix(0.270536,0.011374,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.270536,0.011374,-0.010501,0.249779,0,0);}
.me4_c01048{transform:matrix(0.270836,0.011386,-0.010501,0.249779,0,0);-ms-transform:matrix(0.270836,0.011386,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.270836,0.011386,-0.010501,0.249779,0,0);}
.mbc_c01048{transform:matrix(0.270886,0.011389,-0.010501,0.249779,0,0);-ms-transform:matrix(0.270886,0.011389,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.270886,0.011389,-0.010501,0.249779,0,0);}
.m11e_c01048{transform:matrix(0.270971,0.004607,-0.004249,0.249964,0,0);-ms-transform:matrix(0.270971,0.004607,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.270971,0.004607,-0.004249,0.249964,0,0);}
.m29_c01048{transform:matrix(0.271539,0.009785,-0.009003,0.249838,0,0);-ms-transform:matrix(0.271539,0.009785,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.271539,0.009785,-0.009003,0.249838,0,0);}
.m2a_c01048{transform:matrix(0.272178,0.009808,-0.009003,0.249838,0,0);-ms-transform:matrix(0.272178,0.009808,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.272178,0.009808,-0.009003,0.249838,0,0);}
.mc1_c01048{transform:matrix(0.273743,0.011509,-0.010501,0.249779,0,0);-ms-transform:matrix(0.273743,0.011509,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.273743,0.011509,-0.010501,0.249779,0,0);}
.mbb_c01048{transform:matrix(0.274997,0.011561,-0.010501,0.249779,0,0);-ms-transform:matrix(0.274997,0.011561,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.274997,0.011561,-0.010501,0.249779,0,0);}
.m28_c01048{transform:matrix(0.276506,0.009964,-0.009003,0.249838,0,0);-ms-transform:matrix(0.276506,0.009964,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.276506,0.009964,-0.009003,0.249838,0,0);}
.m91_c01048{transform:matrix(0.276835,0.009976,-0.009003,0.249838,0,0);-ms-transform:matrix(0.276835,0.009976,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.276835,0.009976,-0.009003,0.249838,0,0);}
.m2b_c01048{transform:matrix(0.281227,0.010134,-0.009003,0.249838,0,0);-ms-transform:matrix(0.281227,0.010134,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.281227,0.010134,-0.009003,0.249838,0,0);}
.m1f_c01048{transform:matrix(0.281567,0.010147,-0.009003,0.249838,0,0);-ms-transform:matrix(0.281567,0.010147,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.281567,0.010147,-0.009003,0.249838,0,0);}
.m26_c01048{transform:matrix(0.282252,0.010171,-0.009003,0.249838,0,0);-ms-transform:matrix(0.282252,0.010171,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.282252,0.010171,-0.009003,0.249838,0,0);}
.med_c01048{transform:matrix(0.283839,0.011933,-0.010501,0.249779,0,0);-ms-transform:matrix(0.283839,0.011933,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.283839,0.011933,-0.010501,0.249779,0,0);}
.m30_c01048{transform:matrix(0.285834,0.010300,-0.009003,0.249838,0,0);-ms-transform:matrix(0.285834,0.010300,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.285834,0.010300,-0.009003,0.249838,0,0);}
.md4_c01048{transform:matrix(0.287821,0.012101,-0.010501,0.249779,0,0);-ms-transform:matrix(0.287821,0.012101,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.287821,0.012101,-0.010501,0.249779,0,0);}
.m4_c01048{transform:matrix(0.288728,0.010405,-0.009003,0.249838,0,0);-ms-transform:matrix(0.288728,0.010405,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.288728,0.010405,-0.009003,0.249838,0,0);}
.m82_c01048{transform:matrix(0.305821,0.011021,-0.009003,0.249838,0,0);-ms-transform:matrix(0.305821,0.011021,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.305821,0.011021,-0.009003,0.249838,0,0);}
.m8f_c01048{transform:matrix(0.318788,0.011488,-0.009003,0.249838,0,0);-ms-transform:matrix(0.318788,0.011488,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.318788,0.011488,-0.009003,0.249838,0,0);}
.m1d_c01048{transform:matrix(0.325174,0.011718,-0.009003,0.249838,0,0);-ms-transform:matrix(0.325174,0.011718,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.325174,0.011718,-0.009003,0.249838,0,0);}
.md5_c01048{transform:matrix(0.336768,0.014158,-0.010501,0.249779,0,0);-ms-transform:matrix(0.336768,0.014158,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.336768,0.014158,-0.010501,0.249779,0,0);}
.m0_c01048{transform:matrix(0.362510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362510,0.000000,0.000000,0.250000,0,0);}
.m1c_c01048{transform:matrix(0.401759,0.014478,-0.009003,0.249838,0,0);-ms-transform:matrix(0.401759,0.014478,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.401759,0.014478,-0.009003,0.249838,0,0);}
.m11d_c01048{transform:matrix(0.723885,0.012306,-0.004249,0.249964,0,0);-ms-transform:matrix(0.723885,0.012306,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.723885,0.012306,-0.004249,0.249964,0,0);}
.v0_c01048{vertical-align:0.000000px;}
.ls0_c01048{letter-spacing:0.000000px;}
.sc__c01048{text-shadow:none;}
.sc0_c01048{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__c01048{-webkit-text-stroke:0px transparent;}
.sc0_c01048{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01048{word-spacing:0.000000px;}
.fc0_c01048{color:transparent;}
.fs5_c01048{font-size:71.974688px;}
.fsc_c01048{font-size:71.991540px;}
.fsd_c01048{font-size:77.964502px;}
.fs4_c01048{font-size:77.972578px;}
.fsa_c01048{font-size:77.990834px;}
.fs0_c01048{font-size:78.000000px;}
.fsf_c01048{font-size:78.011270px;}
.fs2_c01048{font-size:83.970469px;}
.fs9_c01048{font-size:83.990129px;}
.fse_c01048{font-size:84.012137px;}
.fs3_c01048{font-size:89.968359px;}
.fs6_c01048{font-size:95.966250px;}
.fsb_c01048{font-size:95.988719px;}
.fs8_c01048{font-size:101.988014px;}
.fs7_c01048{font-size:107.962031px;}
.fs1_c01048{font-size:125.955703px;}
.y0_c01048{bottom:0.000000px;}
.y12a_c01048{bottom:48.347192px;}
.y129_c01048{bottom:49.777527px;}
.y128_c01048{bottom:50.673126px;}
.y127_c01048{bottom:51.208190px;}
.y126_c01048{bottom:55.273242px;}
.y125_c01048{bottom:56.701946px;}
.y124_c01048{bottom:58.056783px;}
.y123_c01048{bottom:68.595251px;}
.y122_c01048{bottom:69.371241px;}
.y121_c01048{bottom:70.675872px;}
.y120_c01048{bottom:71.263775px;}
.y11f_c01048{bottom:72.398270px;}
.y11e_c01048{bottom:73.881401px;}
.y11d_c01048{bottom:75.010847px;}
.y11c_c01048{bottom:76.144500px;}
.y11b_c01048{bottom:99.789591px;}
.y11a_c01048{bottom:101.608023px;}
.y119_c01048{bottom:103.080005px;}
.y118_c01048{bottom:104.506891px;}
.y117_c01048{bottom:108.545646px;}
.y116_c01048{bottom:111.769334px;}
.y115_c01048{bottom:112.876500px;}
.y114_c01048{bottom:145.195602px;}
.y113_c01048{bottom:150.527854px;}
.y112_c01048{bottom:152.359080px;}
.y111_c01048{bottom:154.083907px;}
.y110_c01048{bottom:158.052232px;}
.y10f_c01048{bottom:159.812115px;}
.y10e_c01048{bottom:162.966997px;}
.y10d_c01048{bottom:166.814434px;}
.y10c_c01048{bottom:167.741961px;}
.y10b_c01048{bottom:178.815214px;}
.y10a_c01048{bottom:179.860659px;}
.y109_c01048{bottom:181.586220px;}
.y108_c01048{bottom:182.940328px;}
.y107_c01048{bottom:185.569251px;}
.y106_c01048{bottom:189.825765px;}
.y105_c01048{bottom:192.428830px;}
.y104_c01048{bottom:194.567955px;}
.y103_c01048{bottom:195.908959px;}
.y102_c01048{bottom:197.966949px;}
.y101_c01048{bottom:201.436494px;}
.y100_c01048{bottom:203.106651px;}
.yff_c01048{bottom:215.603866px;}
.yfe_c01048{bottom:219.637675px;}
.yfd_c01048{bottom:220.536334px;}
.yfc_c01048{bottom:222.317070px;}
.yfb_c01048{bottom:223.197319px;}
.yfa_c01048{bottom:225.002386px;}
.yf9_c01048{bottom:227.608674px;}
.yf8_c01048{bottom:230.295376px;}
.yf7_c01048{bottom:233.830576px;}
.yf6_c01048{bottom:236.855940px;}
.yf5_c01048{bottom:241.710765px;}
.yf4_c01048{bottom:254.532079px;}
.yf3_c01048{bottom:256.763400px;}
.yf2_c01048{bottom:258.922788px;}
.yf1_c01048{bottom:260.038977px;}
.yf0_c01048{bottom:262.934502px;}
.yef_c01048{bottom:264.441885px;}
.yee_c01048{bottom:266.625393px;}
.yed_c01048{bottom:267.663336px;}
.yec_c01048{bottom:270.234622px;}
.yeb_c01048{bottom:271.322079px;}
.yea_c01048{bottom:273.842263px;}
.ye9_c01048{bottom:291.002446px;}
.ye8_c01048{bottom:292.055955px;}
.ye7_c01048{bottom:295.841332px;}
.ye6_c01048{bottom:296.889598px;}
.ye5_c01048{bottom:298.247599px;}
.ye4_c01048{bottom:299.644417px;}
.ye3_c01048{bottom:300.667074px;}
.ye2_c01048{bottom:303.016969px;}
.ye1_c01048{bottom:304.081656px;}
.ye0_c01048{bottom:306.461130px;}
.ydf_c01048{bottom:307.517473px;}
.yde_c01048{bottom:308.522058px;}
.ydd_c01048{bottom:310.547535px;}
.ydc_c01048{bottom:325.808713px;}
.ydb_c01048{bottom:327.245298px;}
.yda_c01048{bottom:328.490457px;}
.yd9_c01048{bottom:331.775133px;}
.yd8_c01048{bottom:333.171730px;}
.yd7_c01048{bottom:336.302686px;}
.yd6_c01048{bottom:338.640418px;}
.yd5_c01048{bottom:339.719923px;}
.yd4_c01048{bottom:341.942145px;}
.yd3_c01048{bottom:343.733905px;}
.yd2_c01048{bottom:345.925504px;}
.yd1_c01048{bottom:346.995532px;}
.yd0_c01048{bottom:357.399784px;}
.ycf_c01048{bottom:362.054908px;}
.yce_c01048{bottom:362.989333px;}
.ycd_c01048{bottom:367.950997px;}
.ycc_c01048{bottom:371.383453px;}
.ycb_c01048{bottom:373.064626px;}
.yca_c01048{bottom:377.639785px;}
.yc9_c01048{bottom:378.537819px;}
.yc8_c01048{bottom:381.415096px;}
.yc7_c01048{bottom:382.631892px;}
.yc6_c01048{bottom:396.923802px;}
.yc5_c01048{bottom:400.099924px;}
.yc4_c01048{bottom:401.621910px;}
.yc3_c01048{bottom:402.794619px;}
.yc2_c01048{bottom:406.679437px;}
.yc1_c01048{bottom:408.603763px;}
.yc0_c01048{bottom:411.345726px;}
.ybf_c01048{bottom:415.170145px;}
.ybe_c01048{bottom:416.331816px;}
.ybd_c01048{bottom:419.346865px;}
.ybc_c01048{bottom:432.721725px;}
.ybb_c01048{bottom:436.180357px;}
.yba_c01048{bottom:438.838777px;}
.yb9_c01048{bottom:441.070930px;}
.yb8_c01048{bottom:441.866103px;}
.yb7_c01048{bottom:445.189317px;}
.yb6_c01048{bottom:448.992721px;}
.yb5_c01048{bottom:450.809583px;}
.yb4_c01048{bottom:454.982446px;}
.yb3_c01048{bottom:468.523450px;}
.yb2_c01048{bottom:470.755981px;}
.yb1_c01048{bottom:471.885882px;}
.yb0_c01048{bottom:475.663605px;}
.yaf_c01048{bottom:476.813580px;}
.yae_c01048{bottom:477.939939px;}
.yad_c01048{bottom:481.298703px;}
.yac_c01048{bottom:482.438445px;}
.yab_c01048{bottom:485.112327px;}
.yaa_c01048{bottom:488.428912px;}
.ya9_c01048{bottom:489.539872px;}
.ya8_c01048{bottom:505.763997px;}
.ya7_c01048{bottom:507.695622px;}
.ya6_c01048{bottom:511.115631px;}
.ya5_c01048{bottom:516.312717px;}
.ya4_c01048{bottom:519.395527px;}
.ya3_c01048{bottom:520.497402px;}
.ya2_c01048{bottom:522.766226px;}
.ya1_c01048{bottom:525.713743px;}
.ya0_c01048{bottom:536.680770px;}
.y9f_c01048{bottom:540.490569px;}
.y9e_c01048{bottom:545.112753px;}
.y9d_c01048{bottom:546.513495px;}
.y9c_c01048{bottom:548.824335px;}
.y9b_c01048{bottom:551.630481px;}
.y9a_c01048{bottom:552.990588px;}
.y99_c01048{bottom:555.822627px;}
.y98_c01048{bottom:557.167677px;}
.y97_c01048{bottom:558.587256px;}
.y96_c01048{bottom:560.004000px;}
.y95_c01048{bottom:579.673533px;}
.y94_c01048{bottom:590.969145px;}
.y93_c01048{bottom:592.156767px;}
.y92_c01048{bottom:593.740047px;}
.y91_c01048{bottom:594.936579px;}
.y90_c01048{bottom:597.698085px;}
.y8f_c01048{bottom:599.305989px;}
.y8e_c01048{bottom:611.926343px;}
.y8d_c01048{bottom:616.744762px;}
.y8c_c01048{bottom:618.351047px;}
.y8b_c01048{bottom:622.326743px;}
.y8a_c01048{bottom:623.510045px;}
.y89_c01048{bottom:624.667373px;}
.y88_c01048{bottom:628.667045px;}
.y87_c01048{bottom:629.894465px;}
.y86_c01048{bottom:631.484711px;}
.y85_c01048{bottom:633.855905px;}
.y84_c01048{bottom:645.520769px;}
.y83_c01048{bottom:649.824596px;}
.y82_c01048{bottom:651.743823px;}
.y81_c01048{bottom:652.964534px;}
.y80_c01048{bottom:656.070168px;}
.y7f_c01048{bottom:659.463866px;}
.y7e_c01048{bottom:662.204042px;}
.y7d_c01048{bottom:663.357185px;}
.y7c_c01048{bottom:664.532522px;}
.y7b_c01048{bottom:667.291760px;}
.y7a_c01048{bottom:668.409627px;}
.y79_c01048{bottom:679.112778px;}
.y78_c01048{bottom:680.418579px;}
.y77_c01048{bottom:686.370824px;}
.y76_c01048{bottom:688.480630px;}
.y75_c01048{bottom:690.153348px;}
.y74_c01048{bottom:691.812309px;}
.y73_c01048{bottom:693.864633px;}
.y72_c01048{bottom:694.787493px;}
.y71_c01048{bottom:698.519555px;}
.y70_c01048{bottom:699.766793px;}
.y6f_c01048{bottom:703.526165px;}
.y6e_c01048{bottom:704.845466px;}
.y6d_c01048{bottom:715.830699px;}
.y6c_c01048{bottom:717.595122px;}
.y6b_c01048{bottom:721.536393px;}
.y6a_c01048{bottom:722.810888px;}
.y69_c01048{bottom:725.886755px;}
.y68_c01048{bottom:727.174735px;}
.y67_c01048{bottom:731.458569px;}
.y66_c01048{bottom:732.711801px;}
.y65_c01048{bottom:734.905929px;}
.y64_c01048{bottom:737.505368px;}
.y63_c01048{bottom:768.336479px;}
.y62_c01048{bottom:770.572619px;}
.y61_c01048{bottom:775.294122px;}
.y60_c01048{bottom:790.314343px;}
.y5f_c01048{bottom:792.676803px;}
.y5e_c01048{bottom:795.741978px;}
.y5d_c01048{bottom:796.885077px;}
.y5c_c01048{bottom:798.079003px;}
.y5b_c01048{bottom:798.889530px;}
.y5a_c01048{bottom:801.975400px;}
.y59_c01048{bottom:805.398906px;}
.y58_c01048{bottom:809.263767px;}
.y57_c01048{bottom:811.991523px;}
.y56_c01048{bottom:823.448136px;}
.y55_c01048{bottom:825.034602px;}
.y54_c01048{bottom:827.096700px;}
.y53_c01048{bottom:830.298468px;}
.y52_c01048{bottom:834.227724px;}
.y51_c01048{bottom:835.847886px;}
.y50_c01048{bottom:838.621434px;}
.y4f_c01048{bottom:841.413450px;}
.y4e_c01048{bottom:843.428730px;}
.y4d_c01048{bottom:844.570776px;}
.y4c_c01048{bottom:846.204060px;}
.y4b_c01048{bottom:847.353774px;}
.y4a_c01048{bottom:860.962584px;}
.y49_c01048{bottom:862.913658px;}
.y48_c01048{bottom:865.364988px;}
.y47_c01048{bottom:868.527174px;}
.y46_c01048{bottom:869.362608px;}
.y45_c01048{bottom:872.148360px;}
.y44_c01048{bottom:872.961870px;}
.y43_c01048{bottom:876.095976px;}
.y42_c01048{bottom:877.682820px;}
.y41_c01048{bottom:881.250222px;}
.y40_c01048{bottom:882.447132px;}
.y3f_c01048{bottom:884.063460px;}
.y3e_c01048{bottom:897.135780px;}
.y3d_c01048{bottom:898.702442px;}
.y3c_c01048{bottom:902.120669px;}
.y3b_c01048{bottom:903.204692px;}
.y3a_c01048{bottom:905.461244px;}
.y39_c01048{bottom:906.603357px;}
.y38_c01048{bottom:907.753193px;}
.y37_c01048{bottom:910.727958px;}
.y36_c01048{bottom:911.904429px;}
.y35_c01048{bottom:915.219840px;}
.y34_c01048{bottom:916.395015px;}
.y33_c01048{bottom:917.482940px;}
.y32_c01048{bottom:918.610730px;}
.y31_c01048{bottom:933.553677px;}
.y30_c01048{bottom:934.717593px;}
.y2f_c01048{bottom:938.281539px;}
.y2e_c01048{bottom:939.911691px;}
.y2d_c01048{bottom:941.131173px;}
.y2c_c01048{bottom:945.090939px;}
.y2b_c01048{bottom:947.092719px;}
.y2a_c01048{bottom:949.921779px;}
.y29_c01048{bottom:954.278391px;}
.y28_c01048{bottom:955.852005px;}
.y27_c01048{bottom:967.805161px;}
.y26_c01048{bottom:969.847496px;}
.y25_c01048{bottom:971.468306px;}
.y24_c01048{bottom:975.857210px;}
.y23_c01048{bottom:977.440867px;}
.y22_c01048{bottom:982.201724px;}
.y21_c01048{bottom:983.386808px;}
.y20_c01048{bottom:987.401708px;}
.y1f_c01048{bottom:988.529174px;}
.y1e_c01048{bottom:989.366660px;}
.y1d_c01048{bottom:990.938870px;}
.y1c_c01048{bottom:1002.824202px;}
.y1b_c01048{bottom:1006.085249px;}
.y1a_c01048{bottom:1007.113706px;}
.y19_c01048{bottom:1008.929766px;}
.y18_c01048{bottom:1012.476149px;}
.y17_c01048{bottom:1013.527043px;}
.y16_c01048{bottom:1014.576843px;}
.y15_c01048{bottom:1017.803559px;}
.y14_c01048{bottom:1018.831098px;}
.y13_c01048{bottom:1021.656958px;}
.y12_c01048{bottom:1023.020418px;}
.y11_c01048{bottom:1024.138664px;}
.y10_c01048{bottom:1041.491010px;}
.yf_c01048{bottom:1043.542362px;}
.ye_c01048{bottom:1044.739920px;}
.yd_c01048{bottom:1046.753472px;}
.yc_c01048{bottom:1047.877482px;}
.yb_c01048{bottom:1048.723986px;}
.ya_c01048{bottom:1052.734404px;}
.y9_c01048{bottom:1055.131302px;}
.y8_c01048{bottom:1056.275400px;}
.y7_c01048{bottom:1057.478142px;}
.y6_c01048{bottom:1058.686500px;}
.y5_c01048{bottom:1113.222710px;}
.y4_c01048{bottom:1122.227952px;}
.y3_c01048{bottom:1124.180700px;}
.y2_c01048{bottom:1127.809500px;}
.y1_c01048{bottom:1175.571000px;}
.h7_c01048{height:71.974688px;}
.he_c01048{height:71.991540px;}
.hf_c01048{height:77.964502px;}
.h6_c01048{height:77.972578px;}
.hc_c01048{height:77.990834px;}
.h2_c01048{height:78.000000px;}
.h11_c01048{height:78.011270px;}
.h4_c01048{height:83.970469px;}
.hb_c01048{height:83.990129px;}
.h10_c01048{height:84.012137px;}
.h5_c01048{height:89.968359px;}
.h8_c01048{height:95.966250px;}
.hd_c01048{height:95.988719px;}
.ha_c01048{height:101.988014px;}
.h9_c01048{height:107.962031px;}
.h3_c01048{height:125.955703px;}
.h0_c01048{height:1246.320000px;}
.h1_c01048{height:1246.500000px;}
.w1_c01048{width:887.250000px;}
.w0_c01048{width:887.490000px;}
.x0_c01048{left:0.000000px;}
.xd3_c01048{left:154.732500px;}
.xcd_c01048{left:156.084000px;}
.xc8_c01048{left:158.014623px;}
.xc2_c01048{left:159.699833px;}
.xba_c01048{left:160.785003px;}
.xa6_c01048{left:161.872995px;}
.x91_c01048{left:163.223045px;}
.x89_c01048{left:165.627638px;}
.x7a_c01048{left:167.117793px;}
.x73_c01048{left:168.140769px;}
.x5f_c01048{left:169.210509px;}
.x54_c01048{left:171.425103px;}
.x4a_c01048{left:172.771539px;}
.x36_c01048{left:174.450453px;}
.x23_c01048{left:176.498768px;}
.xf_c01048{left:178.084788px;}
.xd4_c01048{left:179.533263px;}
.xc9_c01048{left:181.183386px;}
.xce_c01048{left:189.600950px;}
.xa7_c01048{left:194.251319px;}
.x9f_c01048{left:195.264507px;}
.x8a_c01048{left:198.265440px;}
.x6a_c01048{left:200.703485px;}
.xc5_c01048{left:202.724337px;}
.x60_c01048{left:203.905793px;}
.x40_c01048{left:206.432061px;}
.x2b_c01048{left:209.174721px;}
.x7b_c01048{left:211.737129px;}
.x10_c01048{left:212.988376px;}
.x24_c01048{left:220.166556px;}
.x1a_c01048{left:221.489516px;}
.xb1_c01048{left:226.870464px;}
.x74_c01048{left:233.941403px;}
.xbb_c01048{left:237.046985px;}
.x2c_c01048{left:241.155033px;}
.x1b_c01048{left:244.729752px;}
.x4b_c01048{left:250.631912px;}
.x37_c01048{left:252.517808px;}
.x11_c01048{left:255.529401px;}
.xb2_c01048{left:259.227521px;}
.xa8_c01048{left:260.591012px;}
.xd5_c01048{left:264.172191px;}
.xa0_c01048{left:270.879492px;}
.x1c_c01048{left:276.016934px;}
.x75_c01048{left:278.070729px;}
.x6b_c01048{left:279.437483px;}
.x56_c01048{left:280.515674px;}
.x41_c01048{left:283.447469px;}
.x98_c01048{left:284.595407px;}
.x92_c01048{left:285.793532px;}
.xcf_c01048{left:287.190762px;}
.x7c_c01048{left:288.368921px;}
.x4_c01048{left:289.504500px;}
.xc6_c01048{left:291.605592px;}
.xb3_c01048{left:293.244173px;}
.xa1_c01048{left:294.489332px;}
.x8b_c01048{left:295.684154px;}
.x61_c01048{left:302.732232px;}
.x55_c01048{left:310.149740px;}
.x6c_c01048{left:312.969107px;}
.xa9_c01048{left:314.813730px;}
.x85_c01048{left:319.678536px;}
.x7d_c01048{left:321.572684px;}
.x5_c01048{left:323.036434px;}
.x62_c01048{left:335.511042px;}
.x42_c01048{left:339.371489px;}
.x25_c01048{left:341.062539px;}
.x12_c01048{left:343.731813px;}
.x2_c01048{left:345.876000px;}
.x57_c01048{left:347.112321px;}
.x38_c01048{left:351.513213px;}
.xd6_c01048{left:353.509221px;}
.x6_c01048{left:356.412525px;}
.x4c_c01048{left:360.962970px;}
.x7e_c01048{left:365.508704px;}
.xb4_c01048{left:369.908373px;}
.x2d_c01048{left:373.096973px;}
.x8c_c01048{left:374.209410px;}
.x13_c01048{left:375.826835px;}
.xbc_c01048{left:379.182437px;}
.xaa_c01048{left:382.060331px;}
.x7_c01048{left:388.161244px;}
.x99_c01048{left:393.736256px;}
.x39_c01048{left:395.548134px;}
.x7f_c01048{left:398.465214px;}
.xca_c01048{left:400.024740px;}
.x58_c01048{left:403.335987px;}
.x2e_c01048{left:407.659362px;}
.xd0_c01048{left:409.454876px;}
.xa2_c01048{left:414.738642px;}
.x43_c01048{left:416.849933px;}
.x1d_c01048{left:420.316490px;}
.x6d_c01048{left:424.089875px;}
.x63_c01048{left:433.621253px;}
.x59_c01048{left:435.448383px;}
.x81_c01048{left:442.451514px;}
.xbd_c01048{left:445.258268px;}
.x1_c01048{left:447.390000px;}
.x93_c01048{left:450.896759px;}
.xd1_c01048{left:452.650637px;}
.x8_c01048{left:454.675164px;}
.x4d_c01048{left:458.671677px;}
.x9a_c01048{left:471.988443px;}
.x26_c01048{left:475.118349px;}
.x14_c01048{left:476.527020px;}
.xb5_c01048{left:479.905595px;}
.x3a_c01048{left:482.519576px;}
.xab_c01048{left:485.479407px;}
.x76_c01048{left:488.075015px;}
.xbe_c01048{left:490.895864px;}
.x44_c01048{left:493.815890px;}
.x2f_c01048{left:495.080678px;}
.xd2_c01048{left:497.211531px;}
.xcb_c01048{left:499.127363px;}
.x3_c01048{left:500.763957px;}
.x3b_c01048{left:505.094478px;}
.x8d_c01048{left:506.346537px;}
.x15_c01048{left:509.281435px;}
.x64_c01048{left:511.852322px;}
.x6e_c01048{left:520.971410px;}
.x9b_c01048{left:526.900620px;}
.x30_c01048{left:528.862295px;}
.x45_c01048{left:538.775385px;}
.x16_c01048{left:542.107833px;}
.x5a_c01048{left:545.206178px;}
.x4e_c01048{left:546.761189px;}
.x94_c01048{left:548.508842px;}
.x1e_c01048{left:552.430243px;}
.x65_c01048{left:555.473522px;}
.xb6_c01048{left:557.842589px;}
.x31_c01048{left:562.429626px;}
.x9_c01048{left:565.964263px;}
.x4f_c01048{left:569.877860px;}
.x95_c01048{left:571.885824px;}
.x8e_c01048{left:573.202065px;}
.xc3_c01048{left:577.008732px;}
.x5b_c01048{left:578.199584px;}
.xac_c01048{left:580.232379px;}
.x3c_c01048{left:582.399096px;}
.x27_c01048{left:585.001856px;}
.xcc_c01048{left:587.923919px;}
.xa_c01048{left:589.454749px;}
.x86_c01048{left:595.318323px;}
.x1f_c01048{left:596.376753px;}
.x77_c01048{left:598.400579px;}
.x66_c01048{left:599.434827px;}
.xb7_c01048{left:601.569498px;}
.x50_c01048{left:603.966980px;}
.x3d_c01048{left:605.582390px;}
.xd7_c01048{left:607.546031px;}
.x6f_c01048{left:609.609372px;}
.xbf_c01048{left:612.311237px;}
.x28_c01048{left:618.842481px;}
.xb_c01048{left:620.646027px;}
.xad_c01048{left:622.485039px;}
.x32_c01048{left:628.713033px;}
.x82_c01048{left:629.831447px;}
.xb8_c01048{left:635.358315px;}
.x51_c01048{left:636.603999px;}
.x9c_c01048{left:637.763750px;}
.xd8_c01048{left:640.962092px;}
.x78_c01048{left:642.974960px;}
.x70_c01048{left:644.441748px;}
.x46_c01048{left:647.812239px;}
.x17_c01048{left:652.802973px;}
.x67_c01048{left:654.900806px;}
.x5c_c01048{left:656.976188px;}
.x33_c01048{left:660.543441px;}
.x29_c01048{left:664.079199px;}
.x9d_c01048{left:671.227590px;}
.xc_c01048{left:676.522095px;}
.xc0_c01048{left:677.670533px;}
.xa3_c01048{left:679.595043px;}
.x8f_c01048{left:684.195794px;}
.xc4_c01048{left:688.521441px;}
.x5d_c01048{left:689.636981px;}
.x3e_c01048{left:693.333051px;}
.x87_c01048{left:695.804039px;}
.xd9_c01048{left:696.910035px;}
.x71_c01048{left:699.240894px;}
.xa4_c01048{left:704.177598px;}
.xd_c01048{left:709.754330px;}
.x80_c01048{left:711.918447px;}
.x96_c01048{left:715.562310px;}
.x20_c01048{left:718.168839px;}
.xae_c01048{left:721.894116px;}
.x52_c01048{left:724.077573px;}
.x47_c01048{left:736.661301px;}
.x83_c01048{left:739.773394px;}
.x18_c01048{left:741.606391px;}
.xc1_c01048{left:745.204971px;}
.x88_c01048{left:752.532299px;}
.xc7_c01048{left:755.340290px;}
.xb9_c01048{left:757.281585px;}
.xaf_c01048{left:759.580644px;}
.x34_c01048{left:760.978649px;}
.x21_c01048{left:763.146317px;}
.xe_c01048{left:766.679347px;}
.x79_c01048{left:776.686115px;}
.x90_c01048{left:782.990634px;}
.xda_c01048{left:786.343065px;}
.x53_c01048{left:791.509506px;}
.x48_c01048{left:793.884521px;}
.x2a_c01048{left:795.277370px;}
.xb0_c01048{left:803.070071px;}
.x9e_c01048{left:805.327334px;}
.x35_c01048{left:806.993385px;}
.x68_c01048{left:811.373379px;}
.x3f_c01048{left:815.499762px;}
.x97_c01048{left:817.145242px;}
.x22_c01048{left:819.821085px;}
.x72_c01048{left:822.086358px;}
.xa5_c01048{left:826.543169px;}
.x84_c01048{left:830.392185px;}
.x5e_c01048{left:835.811876px;}
.x49_c01048{left:837.908952px;}
.x19_c01048{left:843.384161px;}
.x69_c01048{left:845.694038px;}
@media print{
.v0_c01048{vertical-align:0.000000pt;}
.ls0_c01048{letter-spacing:0.000000pt;}
.ws0_c01048{word-spacing:0.000000pt;}
.fs5_c01048{font-size:63.977500pt;}
.fsc_c01048{font-size:63.992480pt;}
.fsd_c01048{font-size:69.301779pt;}
.fs4_c01048{font-size:69.308958pt;}
.fsa_c01048{font-size:69.325186pt;}
.fs0_c01048{font-size:69.333333pt;}
.fsf_c01048{font-size:69.343351pt;}
.fs2_c01048{font-size:74.640417pt;}
.fs9_c01048{font-size:74.657893pt;}
.fse_c01048{font-size:74.677455pt;}
.fs3_c01048{font-size:79.971875pt;}
.fs6_c01048{font-size:85.303333pt;}
.fsb_c01048{font-size:85.323306pt;}
.fs8_c01048{font-size:90.656013pt;}
.fs7_c01048{font-size:95.966250pt;}
.fs1_c01048{font-size:111.960625pt;}
.y0_c01048{bottom:0.000000pt;}
.y12a_c01048{bottom:42.975281pt;}
.y129_c01048{bottom:44.246691pt;}
.y128_c01048{bottom:45.042779pt;}
.y127_c01048{bottom:45.518391pt;}
.y126_c01048{bottom:49.131771pt;}
.y125_c01048{bottom:50.401729pt;}
.y124_c01048{bottom:51.606029pt;}
.y123_c01048{bottom:60.973556pt;}
.y122_c01048{bottom:61.663325pt;}
.y121_c01048{bottom:62.822997pt;}
.y120_c01048{bottom:63.345577pt;}
.y11f_c01048{bottom:64.354017pt;}
.y11e_c01048{bottom:65.672356pt;}
.y11d_c01048{bottom:66.676308pt;}
.y11c_c01048{bottom:67.684000pt;}
.y11b_c01048{bottom:88.701859pt;}
.y11a_c01048{bottom:90.318243pt;}
.y119_c01048{bottom:91.626671pt;}
.y118_c01048{bottom:92.895015pt;}
.y117_c01048{bottom:96.485019pt;}
.y116_c01048{bottom:99.350519pt;}
.y115_c01048{bottom:100.334667pt;}
.y114_c01048{bottom:129.062757pt;}
.y113_c01048{bottom:133.802537pt;}
.y112_c01048{bottom:135.430293pt;}
.y111_c01048{bottom:136.963473pt;}
.y110_c01048{bottom:140.490873pt;}
.y10f_c01048{bottom:142.055213pt;}
.y10e_c01048{bottom:144.859553pt;}
.y10d_c01048{bottom:148.279497pt;}
.y10c_c01048{bottom:149.103965pt;}
.y10b_c01048{bottom:158.946857pt;}
.y10a_c01048{bottom:159.876141pt;}
.y109_c01048{bottom:161.409973pt;}
.y108_c01048{bottom:162.613625pt;}
.y107_c01048{bottom:164.950445pt;}
.y106_c01048{bottom:168.734013pt;}
.y105_c01048{bottom:171.047849pt;}
.y104_c01048{bottom:172.949293pt;}
.y103_c01048{bottom:174.141297pt;}
.y102_c01048{bottom:175.970621pt;}
.y101_c01048{bottom:179.054661pt;}
.y100_c01048{bottom:180.539245pt;}
.yff_c01048{bottom:191.647881pt;}
.yfe_c01048{bottom:195.233489pt;}
.yfd_c01048{bottom:196.032297pt;}
.yfc_c01048{bottom:197.615173pt;}
.yfb_c01048{bottom:198.397617pt;}
.yfa_c01048{bottom:200.002121pt;}
.yf9_c01048{bottom:202.318821pt;}
.yf8_c01048{bottom:204.707001pt;}
.yf7_c01048{bottom:207.849401pt;}
.yf6_c01048{bottom:210.538613pt;}
.yf5_c01048{bottom:214.854013pt;}
.yf4_c01048{bottom:226.250737pt;}
.yf3_c01048{bottom:228.234133pt;}
.yf2_c01048{bottom:230.153589pt;}
.yf1_c01048{bottom:231.145757pt;}
.yf0_c01048{bottom:233.719557pt;}
.yef_c01048{bottom:235.059453pt;}
.yee_c01048{bottom:237.000349pt;}
.yed_c01048{bottom:237.922965pt;}
.yec_c01048{bottom:240.208553pt;}
.yeb_c01048{bottom:241.175181pt;}
.yea_c01048{bottom:243.415345pt;}
.ye9_c01048{bottom:258.668841pt;}
.ye8_c01048{bottom:259.605293pt;}
.ye7_c01048{bottom:262.970073pt;}
.ye6_c01048{bottom:263.901865pt;}
.ye5_c01048{bottom:265.108977pt;}
.ye4_c01048{bottom:266.350593pt;}
.ye3_c01048{bottom:267.259621pt;}
.ye2_c01048{bottom:269.348417pt;}
.ye1_c01048{bottom:270.294805pt;}
.ye0_c01048{bottom:272.409893pt;}
.ydf_c01048{bottom:273.348865pt;}
.yde_c01048{bottom:274.241829pt;}
.ydd_c01048{bottom:276.042253pt;}
.ydc_c01048{bottom:289.607745pt;}
.ydb_c01048{bottom:290.884709pt;}
.yda_c01048{bottom:291.991517pt;}
.yd9_c01048{bottom:294.911229pt;}
.yd8_c01048{bottom:296.152649pt;}
.yd7_c01048{bottom:298.935721pt;}
.yd6_c01048{bottom:301.013705pt;}
.yd5_c01048{bottom:301.973265pt;}
.yd4_c01048{bottom:303.948573pt;}
.yd3_c01048{bottom:305.541249pt;}
.yd2_c01048{bottom:307.489337pt;}
.yd1_c01048{bottom:308.440473pt;}
.yd0_c01048{bottom:317.688697pt;}
.ycf_c01048{bottom:321.826585pt;}
.yce_c01048{bottom:322.657185pt;}
.ycd_c01048{bottom:327.067553pt;}
.ycc_c01048{bottom:330.118625pt;}
.ycb_c01048{bottom:331.613001pt;}
.yca_c01048{bottom:335.679809pt;}
.yc9_c01048{bottom:336.478061pt;}
.yc8_c01048{bottom:339.035641pt;}
.yc7_c01048{bottom:340.117237pt;}
.yc6_c01048{bottom:352.821157pt;}
.yc5_c01048{bottom:355.644377pt;}
.yc4_c01048{bottom:356.997253pt;}
.yc3_c01048{bottom:358.039661pt;}
.yc2_c01048{bottom:361.492833pt;}
.yc1_c01048{bottom:363.203345pt;}
.yc0_c01048{bottom:365.640645pt;}
.ybf_c01048{bottom:369.040129pt;}
.ybe_c01048{bottom:370.072725pt;}
.ybd_c01048{bottom:372.752769pt;}
.ybc_c01048{bottom:384.641533pt;}
.ybb_c01048{bottom:387.715873pt;}
.yba_c01048{bottom:390.078913pt;}
.yb9_c01048{bottom:392.063049pt;}
.yb8_c01048{bottom:392.769869pt;}
.yb7_c01048{bottom:395.723837pt;}
.yb6_c01048{bottom:399.104641pt;}
.yb5_c01048{bottom:400.719629pt;}
.yb4_c01048{bottom:404.428841pt;}
.yb3_c01048{bottom:416.465289pt;}
.yb2_c01048{bottom:418.449761pt;}
.yb1_c01048{bottom:419.454117pt;}
.yb0_c01048{bottom:422.812093pt;}
.yaf_c01048{bottom:423.834293pt;}
.yae_c01048{bottom:424.835501pt;}
.yad_c01048{bottom:427.821069pt;}
.yac_c01048{bottom:428.834173pt;}
.yab_c01048{bottom:431.210957pt;}
.yaa_c01048{bottom:434.159033pt;}
.ya9_c01048{bottom:435.146553pt;}
.ya8_c01048{bottom:449.567997pt;}
.ya7_c01048{bottom:451.284997pt;}
.ya6_c01048{bottom:454.325005pt;}
.ya5_c01048{bottom:458.944637pt;}
.ya4_c01048{bottom:461.684913pt;}
.ya3_c01048{bottom:462.664357pt;}
.ya2_c01048{bottom:464.681089pt;}
.ya1_c01048{bottom:467.301105pt;}
.ya0_c01048{bottom:477.049573pt;}
.y9f_c01048{bottom:480.436061pt;}
.y9e_c01048{bottom:484.544669pt;}
.y9d_c01048{bottom:485.789773pt;}
.y9c_c01048{bottom:487.843853pt;}
.y9b_c01048{bottom:490.338205pt;}
.y9a_c01048{bottom:491.547189pt;}
.y99_c01048{bottom:494.064557pt;}
.y98_c01048{bottom:495.260157pt;}
.y97_c01048{bottom:496.522005pt;}
.y96_c01048{bottom:497.781333pt;}
.y95_c01048{bottom:515.265363pt;}
.y94_c01048{bottom:525.305907pt;}
.y93_c01048{bottom:526.361571pt;}
.y92_c01048{bottom:527.768931pt;}
.y91_c01048{bottom:528.832515pt;}
.y90_c01048{bottom:531.287187pt;}
.y8f_c01048{bottom:532.716435pt;}
.y8e_c01048{bottom:543.934527pt;}
.y8d_c01048{bottom:548.217567pt;}
.y8c_c01048{bottom:549.645375pt;}
.y8b_c01048{bottom:553.179327pt;}
.y8a_c01048{bottom:554.231151pt;}
.y89_c01048{bottom:555.259887pt;}
.y88_c01048{bottom:558.815151pt;}
.y87_c01048{bottom:559.906191pt;}
.y86_c01048{bottom:561.319743pt;}
.y85_c01048{bottom:563.427471pt;}
.y84_c01048{bottom:573.796239pt;}
.y83_c01048{bottom:577.621863pt;}
.y82_c01048{bottom:579.327843pt;}
.y81_c01048{bottom:580.412919pt;}
.y80_c01048{bottom:583.173483pt;}
.y7f_c01048{bottom:586.190103pt;}
.y7e_c01048{bottom:588.625815pt;}
.y7d_c01048{bottom:589.650831pt;}
.y7c_c01048{bottom:590.695575pt;}
.y7b_c01048{bottom:593.148231pt;}
.y7a_c01048{bottom:594.141891pt;}
.y79_c01048{bottom:603.655803pt;}
.y78_c01048{bottom:604.816515pt;}
.y77_c01048{bottom:610.107399pt;}
.y76_c01048{bottom:611.982783pt;}
.y75_c01048{bottom:613.469643pt;}
.y74_c01048{bottom:614.944275pt;}
.y73_c01048{bottom:616.768563pt;}
.y72_c01048{bottom:617.588883pt;}
.y71_c01048{bottom:620.906271pt;}
.y70_c01048{bottom:622.014927pt;}
.y6f_c01048{bottom:625.356591pt;}
.y6e_c01048{bottom:626.529303pt;}
.y6d_c01048{bottom:636.293955pt;}
.y6c_c01048{bottom:637.862331pt;}
.y6b_c01048{bottom:641.365683pt;}
.y6a_c01048{bottom:642.498567pt;}
.y69_c01048{bottom:645.232671pt;}
.y68_c01048{bottom:646.377543pt;}
.y67_c01048{bottom:650.185395pt;}
.y66_c01048{bottom:651.299379pt;}
.y65_c01048{bottom:653.249715pt;}
.y64_c01048{bottom:655.560327pt;}
.y63_c01048{bottom:682.965759pt;}
.y62_c01048{bottom:684.953439pt;}
.y61_c01048{bottom:689.150331pt;}
.y60_c01048{bottom:702.501639pt;}
.y5f_c01048{bottom:704.601603pt;}
.y5e_c01048{bottom:707.326203pt;}
.y5d_c01048{bottom:708.342291pt;}
.y5c_c01048{bottom:709.403559pt;}
.y5b_c01048{bottom:710.124027pt;}
.y5a_c01048{bottom:712.867023pt;}
.y59_c01048{bottom:715.910139pt;}
.y58_c01048{bottom:719.345571pt;}
.y57_c01048{bottom:721.770243pt;}
.y56_c01048{bottom:731.953899pt;}
.y55_c01048{bottom:733.364091pt;}
.y54_c01048{bottom:735.197067pt;}
.y53_c01048{bottom:738.043083pt;}
.y52_c01048{bottom:741.535755pt;}
.y51_c01048{bottom:742.975899pt;}
.y50_c01048{bottom:745.441275pt;}
.y4f_c01048{bottom:747.923067pt;}
.y4e_c01048{bottom:749.714427pt;}
.y4d_c01048{bottom:750.729579pt;}
.y4c_c01048{bottom:752.181387pt;}
.y4b_c01048{bottom:753.203355pt;}
.y4a_c01048{bottom:765.300075pt;}
.y49_c01048{bottom:767.034363pt;}
.y48_c01048{bottom:769.213323pt;}
.y47_c01048{bottom:772.024155pt;}
.y46_c01048{bottom:772.766763pt;}
.y45_c01048{bottom:775.242987pt;}
.y44_c01048{bottom:775.966107pt;}
.y43_c01048{bottom:778.751979pt;}
.y42_c01048{bottom:780.162507pt;}
.y41_c01048{bottom:783.333531pt;}
.y40_c01048{bottom:784.397451pt;}
.y3f_c01048{bottom:785.834187pt;}
.y3e_c01048{bottom:797.454027pt;}
.y3d_c01048{bottom:798.846615pt;}
.y3c_c01048{bottom:801.885039pt;}
.y3b_c01048{bottom:802.848615pt;}
.y3a_c01048{bottom:804.854439pt;}
.y39_c01048{bottom:805.869651pt;}
.y38_c01048{bottom:806.891727pt;}
.y37_c01048{bottom:809.535963pt;}
.y36_c01048{bottom:810.581715pt;}
.y35_c01048{bottom:813.528747pt;}
.y34_c01048{bottom:814.573347pt;}
.y33_c01048{bottom:815.540391pt;}
.y32_c01048{bottom:816.542871pt;}
.y31_c01048{bottom:829.825491pt;}
.y30_c01048{bottom:830.860083pt;}
.y2f_c01048{bottom:834.028035pt;}
.y2e_c01048{bottom:835.477059pt;}
.y2d_c01048{bottom:836.561043pt;}
.y2c_c01048{bottom:840.080835pt;}
.y2b_c01048{bottom:841.860195pt;}
.y2a_c01048{bottom:844.374915pt;}
.y29_c01048{bottom:848.247459pt;}
.y28_c01048{bottom:849.646227pt;}
.y27_c01048{bottom:860.271255pt;}
.y26_c01048{bottom:862.086663pt;}
.y25_c01048{bottom:863.527383pt;}
.y24_c01048{bottom:867.428631pt;}
.y23_c01048{bottom:868.836327pt;}
.y22_c01048{bottom:873.068199pt;}
.y21_c01048{bottom:874.121607pt;}
.y20_c01048{bottom:877.690407pt;}
.y1f_c01048{bottom:878.692599pt;}
.y1e_c01048{bottom:879.437031pt;}
.y1d_c01048{bottom:880.834551pt;}
.y1c_c01048{bottom:891.399291pt;}
.y1b_c01048{bottom:894.297999pt;}
.y1a_c01048{bottom:895.212183pt;}
.y19_c01048{bottom:896.826459pt;}
.y18_c01048{bottom:899.978799pt;}
.y17_c01048{bottom:900.912927pt;}
.y16_c01048{bottom:901.846083pt;}
.y15_c01048{bottom:904.714275pt;}
.y14_c01048{bottom:905.627643pt;}
.y13_c01048{bottom:908.139519pt;}
.y12_c01048{bottom:909.351483pt;}
.y11_c01048{bottom:910.345479pt;}
.y10_c01048{bottom:925.769787pt;}
.yf_c01048{bottom:927.593211pt;}
.ye_c01048{bottom:928.657707pt;}
.yd_c01048{bottom:930.447531pt;}
.yc_c01048{bottom:931.446651pt;}
.yb_c01048{bottom:932.199099pt;}
.ya_c01048{bottom:935.763915pt;}
.y9_c01048{bottom:937.894491pt;}
.y8_c01048{bottom:938.911467pt;}
.y7_c01048{bottom:939.980571pt;}
.y6_c01048{bottom:941.054667pt;}
.y5_c01048{bottom:989.531297pt;}
.y4_c01048{bottom:997.535957pt;}
.y3_c01048{bottom:999.271733pt;}
.y2_c01048{bottom:1002.497333pt;}
.y1_c01048{bottom:1044.952000pt;}
.h7_c01048{height:63.977500pt;}
.he_c01048{height:63.992480pt;}
.hf_c01048{height:69.301779pt;}
.h6_c01048{height:69.308958pt;}
.hc_c01048{height:69.325186pt;}
.h2_c01048{height:69.333333pt;}
.h11_c01048{height:69.343351pt;}
.h4_c01048{height:74.640417pt;}
.hb_c01048{height:74.657893pt;}
.h10_c01048{height:74.677455pt;}
.h5_c01048{height:79.971875pt;}
.h8_c01048{height:85.303333pt;}
.hd_c01048{height:85.323306pt;}
.ha_c01048{height:90.656013pt;}
.h9_c01048{height:95.966250pt;}
.h3_c01048{height:111.960625pt;}
.h0_c01048{height:1107.840000pt;}
.h1_c01048{height:1108.000000pt;}
.w1_c01048{width:788.666667pt;}
.w0_c01048{width:788.880000pt;}
.x0_c01048{left:0.000000pt;}
.xd3_c01048{left:137.540000pt;}
.xcd_c01048{left:138.741333pt;}
.xc8_c01048{left:140.457443pt;}
.xc2_c01048{left:141.955407pt;}
.xba_c01048{left:142.920003pt;}
.xa6_c01048{left:143.887107pt;}
.x91_c01048{left:145.087151pt;}
.x89_c01048{left:147.224567pt;}
.x7a_c01048{left:148.549149pt;}
.x73_c01048{left:149.458461pt;}
.x5f_c01048{left:150.409341pt;}
.x54_c01048{left:152.377869pt;}
.x4a_c01048{left:153.574701pt;}
.x36_c01048{left:155.067069pt;}
.x23_c01048{left:156.887793pt;}
.xf_c01048{left:158.297589pt;}
.xd4_c01048{left:159.585123pt;}
.xc9_c01048{left:161.051899pt;}
.xce_c01048{left:168.534177pt;}
.xa7_c01048{left:172.667839pt;}
.x9f_c01048{left:173.568451pt;}
.x8a_c01048{left:176.235947pt;}
.x6a_c01048{left:178.403097pt;}
.xc5_c01048{left:180.199411pt;}
.x60_c01048{left:181.249593pt;}
.x40_c01048{left:183.495165pt;}
.x2b_c01048{left:185.933085pt;}
.x7b_c01048{left:188.210781pt;}
.x10_c01048{left:189.323001pt;}
.x24_c01048{left:195.703605pt;}
.x1a_c01048{left:196.879569pt;}
.xb1_c01048{left:201.662635pt;}
.x74_c01048{left:207.947913pt;}
.xbb_c01048{left:210.708431pt;}
.x2c_c01048{left:214.360029pt;}
.x1b_c01048{left:217.537557pt;}
.x4b_c01048{left:222.783921pt;}
.x37_c01048{left:224.460273pt;}
.x11_c01048{left:227.137245pt;}
.xb2_c01048{left:230.424463pt;}
.xa8_c01048{left:231.636455pt;}
.xd5_c01048{left:234.819725pt;}
.xa0_c01048{left:240.781771pt;}
.x1c_c01048{left:245.348385pt;}
.x75_c01048{left:247.173981pt;}
.x6b_c01048{left:248.388873pt;}
.x56_c01048{left:249.347265pt;}
.x41_c01048{left:251.953305pt;}
.x98_c01048{left:252.973695pt;}
.x92_c01048{left:254.038695pt;}
.xcf_c01048{left:255.280677pt;}
.x7c_c01048{left:256.327929pt;}
.x4_c01048{left:257.337333pt;}
.xc6_c01048{left:259.204971pt;}
.xb3_c01048{left:260.661487pt;}
.xa1_c01048{left:261.768295pt;}
.x8b_c01048{left:262.830359pt;}
.x61_c01048{left:269.095317pt;}
.x55_c01048{left:275.688657pt;}
.x6c_c01048{left:278.194761pt;}
.xa9_c01048{left:279.834427pt;}
.x85_c01048{left:284.158699pt;}
.x7d_c01048{left:285.842385pt;}
.x5_c01048{left:287.143497pt;}
.x62_c01048{left:298.232037pt;}
.x42_c01048{left:301.663545pt;}
.x25_c01048{left:303.166701pt;}
.x12_c01048{left:305.539389pt;}
.x2_c01048{left:307.445333pt;}
.x57_c01048{left:308.544285pt;}
.x38_c01048{left:312.456189pt;}
.xd6_c01048{left:314.230419pt;}
.x6_c01048{left:316.811133pt;}
.x4c_c01048{left:320.855973pt;}
.x7e_c01048{left:324.896625pt;}
.xb4_c01048{left:328.807443pt;}
.x2d_c01048{left:331.641753pt;}
.x8c_c01048{left:332.630587pt;}
.x13_c01048{left:334.068297pt;}
.xbc_c01048{left:337.051055pt;}
.xaa_c01048{left:339.609183pt;}
.x7_c01048{left:345.032217pt;}
.x99_c01048{left:349.987783pt;}
.x39_c01048{left:351.598341pt;}
.x7f_c01048{left:354.191301pt;}
.xca_c01048{left:355.577547pt;}
.x58_c01048{left:358.520877pt;}
.x2e_c01048{left:362.363877pt;}
.xd0_c01048{left:363.959889pt;}
.xa2_c01048{left:368.656571pt;}
.x43_c01048{left:370.533273pt;}
.x1d_c01048{left:373.614657pt;}
.x6d_c01048{left:376.968777pt;}
.x63_c01048{left:385.441113pt;}
.x59_c01048{left:387.065229pt;}
.x81_c01048{left:393.290235pt;}
.xbd_c01048{left:395.785127pt;}
.x1_c01048{left:397.680000pt;}
.x93_c01048{left:400.797119pt;}
.xd1_c01048{left:402.356121pt;}
.x8_c01048{left:404.155701pt;}
.x4d_c01048{left:407.708157pt;}
.x9a_c01048{left:419.545283pt;}
.x26_c01048{left:422.327421pt;}
.x14_c01048{left:423.579573pt;}
.xb5_c01048{left:426.582751pt;}
.x3a_c01048{left:428.906289pt;}
.xab_c01048{left:431.537251pt;}
.x76_c01048{left:433.844457pt;}
.xbe_c01048{left:436.351879pt;}
.x44_c01048{left:438.947457pt;}
.x2f_c01048{left:440.071713pt;}
.xd2_c01048{left:441.965805pt;}
.xcb_c01048{left:443.668767pt;}
.x3_c01048{left:445.123517pt;}
.x3b_c01048{left:448.972869pt;}
.x8d_c01048{left:450.085811pt;}
.x15_c01048{left:452.694609pt;}
.x64_c01048{left:454.979841pt;}
.x6e_c01048{left:463.085697pt;}
.x9b_c01048{left:468.356107pt;}
.x30_c01048{left:470.099817pt;}
.x45_c01048{left:478.911453pt;}
.x16_c01048{left:481.873629pt;}
.x5a_c01048{left:484.627713pt;}
.x4e_c01048{left:486.009945pt;}
.x94_c01048{left:487.563415pt;}
.x1e_c01048{left:491.049105pt;}
.x65_c01048{left:493.754241pt;}
.xb6_c01048{left:495.860079pt;}
.x31_c01048{left:499.937445pt;}
.x9_c01048{left:503.079345pt;}
.x4f_c01048{left:506.558097pt;}
.x95_c01048{left:508.342955pt;}
.x8e_c01048{left:509.512947pt;}
.xc3_c01048{left:512.896651pt;}
.x5b_c01048{left:513.955185pt;}
.xac_c01048{left:515.762115pt;}
.x3c_c01048{left:517.688085pt;}
.x27_c01048{left:520.001649pt;}
.xcc_c01048{left:522.599039pt;}
.xa_c01048{left:523.959777pt;}
.x86_c01048{left:529.171843pt;}
.x1f_c01048{left:530.112669pt;}
.x77_c01048{left:531.911625pt;}
.x66_c01048{left:532.830957pt;}
.xb7_c01048{left:534.728443pt;}
.x50_c01048{left:536.859537pt;}
.x3d_c01048{left:538.295457pt;}
.xd7_c01048{left:540.040916pt;}
.x6f_c01048{left:541.874997pt;}
.xbf_c01048{left:544.276655pt;}
.x28_c01048{left:550.082205pt;}
.xb_c01048{left:551.685357pt;}
.xad_c01048{left:553.320035pt;}
.x32_c01048{left:558.856029pt;}
.x82_c01048{left:559.850175pt;}
.xb8_c01048{left:564.762947pt;}
.x51_c01048{left:565.870221pt;}
.x9c_c01048{left:566.901111pt;}
.xd8_c01048{left:569.744081pt;}
.x78_c01048{left:571.533297pt;}
.x70_c01048{left:572.837109pt;}
.x46_c01048{left:575.833101pt;}
.x17_c01048{left:580.269309pt;}
.x67_c01048{left:582.134049pt;}
.x5c_c01048{left:583.978833pt;}
.x33_c01048{left:587.149725pt;}
.x29_c01048{left:590.292621pt;}
.x9d_c01048{left:596.646747pt;}
.xc_c01048{left:601.352973pt;}
.xc0_c01048{left:602.373807pt;}
.xa3_c01048{left:604.084483pt;}
.x8f_c01048{left:608.174039pt;}
.xc4_c01048{left:612.019059pt;}
.x5d_c01048{left:613.010649pt;}
.x3e_c01048{left:616.296045pt;}
.x87_c01048{left:618.492479pt;}
.xd9_c01048{left:619.475587pt;}
.x71_c01048{left:621.547461pt;}
.xa4_c01048{left:625.935643pt;}
.xd_c01048{left:630.892737pt;}
.x80_c01048{left:632.816397pt;}
.x96_c01048{left:636.055387pt;}
.x20_c01048{left:638.372301pt;}
.xae_c01048{left:641.683659pt;}
.x52_c01048{left:643.624509pt;}
.x47_c01048{left:654.810045pt;}
.x83_c01048{left:657.576351pt;}
.x18_c01048{left:659.205681pt;}
.xc1_c01048{left:662.404419pt;}
.x88_c01048{left:668.917599pt;}
.xc7_c01048{left:671.413591pt;}
.xb9_c01048{left:673.139187pt;}
.xaf_c01048{left:675.182795pt;}
.x34_c01048{left:676.425465pt;}
.x21_c01048{left:678.352281pt;}
.xe_c01048{left:681.492753pt;}
.x79_c01048{left:690.387657pt;}
.x90_c01048{left:695.991675pt;}
.xda_c01048{left:698.971613pt;}
.x53_c01048{left:703.564005pt;}
.x48_c01048{left:705.675129pt;}
.x2a_c01048{left:706.913217pt;}
.xb0_c01048{left:713.840063pt;}
.x9e_c01048{left:715.846519pt;}
.x35_c01048{left:717.327453pt;}
.x68_c01048{left:721.220781pt;}
.x3f_c01048{left:724.888677pt;}
.x97_c01048{left:726.351327pt;}
.x22_c01048{left:728.729853pt;}
.x72_c01048{left:730.743429pt;}
.xa5_c01048{left:734.705039pt;}
.x84_c01048{left:738.126387pt;}
.x5e_c01048{left:742.943889pt;}
.x49_c01048{left:744.807957pt;}
.x19_c01048{left:749.674809pt;}
.x69_c01048{left:751.728033pt;}
}





/* 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_c01049 {
    display:none;
  }
  .loading-indicator_c01049.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01049 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_c01049 { 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_c01049" -> "#page-container .classname_c01049")
 */
.pf_c01049 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01049 { /* 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_c01049.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01049 { /* 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_c01049 { /* 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_c01049 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01049 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01049 {overflow:visible;}
  }
}
.c_c01049 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01049 { /* 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_c01049:after { /* webkit #35443 */
  content: '';
}
.t_c01049:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01049 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 */
}
.__c01049 { /* 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_c01049 { /* info for Javascript */
  display:none;
}
.l_c01049 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01049 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01049 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01049: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_c01049 {
    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_c01049.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01049.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_c01049 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01049{font-family:sans-serif;visibility:hidden;}
.sc__c01049{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01049{-webkit-text-stroke:0px transparent;}
}
.y0_c01049{bottom:0.000000px;}
.h0_c01049{height:1246.320000px;}
.h1_c01049{height:1246.500000px;}
.w1_c01049{width:887.250000px;}
.w0_c01049{width:887.490000px;}
.x0_c01049{left:0.000000px;}
@media print{
.y0_c01049{bottom:0.000000pt;}
.h0_c01049{height:1107.840000pt;}
.h1_c01049{height:1108.000000pt;}
.w1_c01049{width:788.666667pt;}
.w0_c01049{width:788.880000pt;}
.x0_c01049{left:0.000000pt;}
}





/* 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_c01050 {
    display:none;
  }
  .loading-indicator_c01050.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01050 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_c01050 { 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_c01050" -> "#page-container .classname_c01050")
 */
.pf_c01050 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01050 { /* 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_c01050.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01050 { /* 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_c01050 { /* 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_c01050 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01050 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01050 {overflow:visible;}
  }
}
.c_c01050 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01050 { /* 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_c01050:after { /* webkit #35443 */
  content: '';
}
.t_c01050:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01050 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 */
}
.__c01050 { /* 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_c01050 { /* info for Javascript */
  display:none;
}
.l_c01050 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01050 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01050 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01050: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_c01050 {
    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_c01050.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01050.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_c01050 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01050{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01050;src:url('chunks/assets/font_b11a17f404e7258299fdf971.woff2')format("woff");}.ff1_c01050{font-family:ff1_c01050;line-height:1.000000;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;}
.mef_c01050{transform:matrix(0.110104,0.003968,-0.009003,0.249838,0,0);-ms-transform:matrix(0.110104,0.003968,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.110104,0.003968,-0.009003,0.249838,0,0);}
.m3_c01050{transform:matrix(0.143057,0.005442,-0.009503,0.249819,0,0);-ms-transform:matrix(0.143057,0.005442,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.143057,0.005442,-0.009503,0.249819,0,0);}
.m4_c01050{transform:matrix(0.148293,0.005641,-0.009503,0.249819,0,0);-ms-transform:matrix(0.148293,0.005641,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.148293,0.005641,-0.009503,0.249819,0,0);}
.m5b_c01050{transform:matrix(0.156127,0.005939,-0.009503,0.249819,0,0);-ms-transform:matrix(0.156127,0.005939,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.156127,0.005939,-0.009503,0.249819,0,0);}
.m5c_c01050{transform:matrix(0.157931,0.006007,-0.009503,0.249819,0,0);-ms-transform:matrix(0.157931,0.006007,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.157931,0.006007,-0.009503,0.249819,0,0);}
.m8_c01050{transform:matrix(0.159485,0.006066,-0.009503,0.249819,0,0);-ms-transform:matrix(0.159485,0.006066,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.159485,0.006066,-0.009503,0.249819,0,0);}
.m9_c01050{transform:matrix(0.160084,0.006089,-0.009503,0.249819,0,0);-ms-transform:matrix(0.160084,0.006089,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.160084,0.006089,-0.009503,0.249819,0,0);}
.m58_c01050{transform:matrix(0.160959,0.006123,-0.009503,0.249819,0,0);-ms-transform:matrix(0.160959,0.006123,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.160959,0.006123,-0.009503,0.249819,0,0);}
.ma_c01050{transform:matrix(0.161948,0.006160,-0.009503,0.249819,0,0);-ms-transform:matrix(0.161948,0.006160,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.161948,0.006160,-0.009503,0.249819,0,0);}
.m3c_c01050{transform:matrix(0.164841,0.006270,-0.009503,0.249819,0,0);-ms-transform:matrix(0.164841,0.006270,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.164841,0.006270,-0.009503,0.249819,0,0);}
.m3e_c01050{transform:matrix(0.166410,0.006330,-0.009503,0.249819,0,0);-ms-transform:matrix(0.166410,0.006330,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.166410,0.006330,-0.009503,0.249819,0,0);}
.m7_c01050{transform:matrix(0.167464,0.006370,-0.009503,0.249819,0,0);-ms-transform:matrix(0.167464,0.006370,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.167464,0.006370,-0.009503,0.249819,0,0);}
.m5_c01050{transform:matrix(0.167679,0.006378,-0.009503,0.249819,0,0);-ms-transform:matrix(0.167679,0.006378,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.167679,0.006378,-0.009503,0.249819,0,0);}
.m54_c01050{transform:matrix(0.169378,0.006443,-0.009503,0.249819,0,0);-ms-transform:matrix(0.169378,0.006443,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.169378,0.006443,-0.009503,0.249819,0,0);}
.m44_c01050{transform:matrix(0.170282,0.006477,-0.009503,0.249819,0,0);-ms-transform:matrix(0.170282,0.006477,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.170282,0.006477,-0.009503,0.249819,0,0);}
.m3d_c01050{transform:matrix(0.171526,0.006525,-0.009503,0.249819,0,0);-ms-transform:matrix(0.171526,0.006525,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.171526,0.006525,-0.009503,0.249819,0,0);}
.m43_c01050{transform:matrix(0.171981,0.006542,-0.009503,0.249819,0,0);-ms-transform:matrix(0.171981,0.006542,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.171981,0.006542,-0.009503,0.249819,0,0);}
.m53_c01050{transform:matrix(0.172445,0.006559,-0.009503,0.249819,0,0);-ms-transform:matrix(0.172445,0.006559,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.172445,0.006559,-0.009503,0.249819,0,0);}
.m5a_c01050{transform:matrix(0.173639,0.006605,-0.009503,0.249819,0,0);-ms-transform:matrix(0.173639,0.006605,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.173639,0.006605,-0.009503,0.249819,0,0);}
.m3f_c01050{transform:matrix(0.173944,0.006616,-0.009503,0.249819,0,0);-ms-transform:matrix(0.173944,0.006616,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.173944,0.006616,-0.009503,0.249819,0,0);}
.m57_c01050{transform:matrix(0.175603,0.006680,-0.009503,0.249819,0,0);-ms-transform:matrix(0.175603,0.006680,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.175603,0.006680,-0.009503,0.249819,0,0);}
.m2_c01050{transform:matrix(0.177417,0.006749,-0.009503,0.249819,0,0);-ms-transform:matrix(0.177417,0.006749,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.177417,0.006749,-0.009503,0.249819,0,0);}
.m5d_c01050{transform:matrix(0.177602,0.006756,-0.009503,0.249819,0,0);-ms-transform:matrix(0.177602,0.006756,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.177602,0.006756,-0.009503,0.249819,0,0);}
.m59_c01050{transform:matrix(0.178526,0.006791,-0.009503,0.249819,0,0);-ms-transform:matrix(0.178526,0.006791,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.178526,0.006791,-0.009503,0.249819,0,0);}
.m1_c01050{transform:matrix(0.181494,0.006904,-0.009503,0.249819,0,0);-ms-transform:matrix(0.181494,0.006904,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.181494,0.006904,-0.009503,0.249819,0,0);}
.m52_c01050{transform:matrix(0.181614,0.006908,-0.009503,0.249819,0,0);-ms-transform:matrix(0.181614,0.006908,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.181614,0.006908,-0.009503,0.249819,0,0);}
.m56_c01050{transform:matrix(0.181684,0.006911,-0.009503,0.249819,0,0);-ms-transform:matrix(0.181684,0.006911,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.181684,0.006911,-0.009503,0.249819,0,0);}
.m41_c01050{transform:matrix(0.182358,0.006937,-0.009503,0.249819,0,0);-ms-transform:matrix(0.182358,0.006937,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.182358,0.006937,-0.009503,0.249819,0,0);}
.mbc_c01050{transform:matrix(0.183549,0.006798,-0.009253,0.249829,0,0);-ms-transform:matrix(0.183549,0.006798,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.183549,0.006798,-0.009253,0.249829,0,0);}
.mb7_c01050{transform:matrix(0.185053,0.006854,-0.009253,0.249829,0,0);-ms-transform:matrix(0.185053,0.006854,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.185053,0.006854,-0.009253,0.249829,0,0);}
.m19_c01050{transform:matrix(0.185176,0.007044,-0.009503,0.249819,0,0);-ms-transform:matrix(0.185176,0.007044,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.185176,0.007044,-0.009503,0.249819,0,0);}
.m9d_c01050{transform:matrix(0.185443,0.006868,-0.009253,0.249829,0,0);-ms-transform:matrix(0.185443,0.006868,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.185443,0.006868,-0.009253,0.249829,0,0);}
.m7b_c01050{transform:matrix(0.186302,0.006900,-0.009253,0.249829,0,0);-ms-transform:matrix(0.186302,0.006900,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.186302,0.006900,-0.009253,0.249829,0,0);}
.m33_c01050{transform:matrix(0.186325,0.007087,-0.009503,0.249819,0,0);-ms-transform:matrix(0.186325,0.007087,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.186325,0.007087,-0.009503,0.249819,0,0);}
.m29_c01050{transform:matrix(0.186820,0.007106,-0.009503,0.249819,0,0);-ms-transform:matrix(0.186820,0.007106,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.186820,0.007106,-0.009503,0.249819,0,0);}
.m30_c01050{transform:matrix(0.187959,0.007150,-0.009503,0.249819,0,0);-ms-transform:matrix(0.187959,0.007150,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.187959,0.007150,-0.009503,0.249819,0,0);}
.m15_c01050{transform:matrix(0.188174,0.007158,-0.009503,0.249819,0,0);-ms-transform:matrix(0.188174,0.007158,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.188174,0.007158,-0.009503,0.249819,0,0);}
.m55_c01050{transform:matrix(0.188763,0.007180,-0.009503,0.249819,0,0);-ms-transform:matrix(0.188763,0.007180,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.188763,0.007180,-0.009503,0.249819,0,0);}
.m21_c01050{transform:matrix(0.191247,0.007275,-0.009503,0.249819,0,0);-ms-transform:matrix(0.191247,0.007275,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.191247,0.007275,-0.009503,0.249819,0,0);}
.mbe_c01050{transform:matrix(0.191254,0.007083,-0.009253,0.249829,0,0);-ms-transform:matrix(0.191254,0.007083,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.191254,0.007083,-0.009253,0.249829,0,0);}
.m25_c01050{transform:matrix(0.192900,0.007338,-0.009503,0.249819,0,0);-ms-transform:matrix(0.192900,0.007338,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.192900,0.007338,-0.009503,0.249819,0,0);}
.m131_c01050{transform:matrix(0.192915,0.006952,-0.009003,0.249838,0,0);-ms-transform:matrix(0.192915,0.006952,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.192915,0.006952,-0.009003,0.249838,0,0);}
.m18_c01050{transform:matrix(0.193120,0.007346,-0.009503,0.249819,0,0);-ms-transform:matrix(0.193120,0.007346,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.193120,0.007346,-0.009503,0.249819,0,0);}
.mb_c01050{transform:matrix(0.194399,0.007395,-0.009503,0.249819,0,0);-ms-transform:matrix(0.194399,0.007395,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.194399,0.007395,-0.009503,0.249819,0,0);}
.m27_c01050{transform:matrix(0.194559,0.007401,-0.009503,0.249819,0,0);-ms-transform:matrix(0.194559,0.007401,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.194559,0.007401,-0.009503,0.249819,0,0);}
.m45_c01050{transform:matrix(0.194734,0.007407,-0.009503,0.249819,0,0);-ms-transform:matrix(0.194734,0.007407,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.194734,0.007407,-0.009503,0.249819,0,0);}
.m128_c01050{transform:matrix(0.195438,0.007043,-0.009003,0.249838,0,0);-ms-transform:matrix(0.195438,0.007043,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.195438,0.007043,-0.009003,0.249838,0,0);}
.md_c01050{transform:matrix(0.195878,0.007451,-0.009503,0.249819,0,0);-ms-transform:matrix(0.195878,0.007451,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.195878,0.007451,-0.009503,0.249819,0,0);}
.m37_c01050{transform:matrix(0.196318,0.007468,-0.009503,0.249819,0,0);-ms-transform:matrix(0.196318,0.007468,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.196318,0.007468,-0.009503,0.249819,0,0);}
.m3b_c01050{transform:matrix(0.196448,0.007472,-0.009503,0.249819,0,0);-ms-transform:matrix(0.196448,0.007472,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.196448,0.007472,-0.009503,0.249819,0,0);}
.m72_c01050{transform:matrix(0.197195,0.007304,-0.009253,0.249829,0,0);-ms-transform:matrix(0.197195,0.007304,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.197195,0.007304,-0.009253,0.249829,0,0);}
.m16_c01050{transform:matrix(0.197332,0.007506,-0.009503,0.249819,0,0);-ms-transform:matrix(0.197332,0.007506,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.197332,0.007506,-0.009503,0.249819,0,0);}
.m8d_c01050{transform:matrix(0.197774,0.007325,-0.009253,0.249829,0,0);-ms-transform:matrix(0.197774,0.007325,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.197774,0.007325,-0.009253,0.249829,0,0);}
.m36_c01050{transform:matrix(0.198202,0.007539,-0.009503,0.249819,0,0);-ms-transform:matrix(0.198202,0.007539,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.198202,0.007539,-0.009503,0.249819,0,0);}
.m9f_c01050{transform:matrix(0.198499,0.007352,-0.009253,0.249829,0,0);-ms-transform:matrix(0.198499,0.007352,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.198499,0.007352,-0.009253,0.249829,0,0);}
.m3a_c01050{transform:matrix(0.198601,0.007554,-0.009503,0.249819,0,0);-ms-transform:matrix(0.198601,0.007554,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.198601,0.007554,-0.009503,0.249819,0,0);}
.ma3_c01050{transform:matrix(0.199593,0.007392,-0.009253,0.249829,0,0);-ms-transform:matrix(0.199593,0.007392,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.199593,0.007392,-0.009253,0.249829,0,0);}
.m122_c01050{transform:matrix(0.200180,0.007214,-0.009003,0.249838,0,0);-ms-transform:matrix(0.200180,0.007214,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.200180,0.007214,-0.009003,0.249838,0,0);}
.mf6_c01050{transform:matrix(0.200640,0.007230,-0.009003,0.249838,0,0);-ms-transform:matrix(0.200640,0.007230,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.200640,0.007230,-0.009003,0.249838,0,0);}
.m12b_c01050{transform:matrix(0.201174,0.007250,-0.009003,0.249838,0,0);-ms-transform:matrix(0.201174,0.007250,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.201174,0.007250,-0.009003,0.249838,0,0);}
.m31_c01050{transform:matrix(0.201214,0.007654,-0.009503,0.249819,0,0);-ms-transform:matrix(0.201214,0.007654,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.201214,0.007654,-0.009503,0.249819,0,0);}
.m1d_c01050{transform:matrix(0.201779,0.007675,-0.009503,0.249819,0,0);-ms-transform:matrix(0.201779,0.007675,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.201779,0.007675,-0.009503,0.249819,0,0);}
.mf_c01050{transform:matrix(0.202284,0.007694,-0.009503,0.249819,0,0);-ms-transform:matrix(0.202284,0.007694,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.202284,0.007694,-0.009503,0.249819,0,0);}
.m2e_c01050{transform:matrix(0.202574,0.007705,-0.009503,0.249819,0,0);-ms-transform:matrix(0.202574,0.007705,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.202574,0.007705,-0.009503,0.249819,0,0);}
.ma2_c01050{transform:matrix(0.202961,0.007517,-0.009253,0.249829,0,0);-ms-transform:matrix(0.202961,0.007517,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.202961,0.007517,-0.009253,0.249829,0,0);}
.m126_c01050{transform:matrix(0.203068,0.007318,-0.009003,0.249838,0,0);-ms-transform:matrix(0.203068,0.007318,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.203068,0.007318,-0.009003,0.249838,0,0);}
.m11f_c01050{transform:matrix(0.203693,0.007340,-0.009003,0.249838,0,0);-ms-transform:matrix(0.203693,0.007340,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.203693,0.007340,-0.009003,0.249838,0,0);}
.mc_c01050{transform:matrix(0.203858,0.007754,-0.009503,0.249819,0,0);-ms-transform:matrix(0.203858,0.007754,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.203858,0.007754,-0.009503,0.249819,0,0);}
.m8b_c01050{transform:matrix(0.203985,0.007555,-0.009253,0.249829,0,0);-ms-transform:matrix(0.203985,0.007555,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.203985,0.007555,-0.009253,0.249829,0,0);}
.mbf_c01050{transform:matrix(0.204490,0.007574,-0.009253,0.249829,0,0);-ms-transform:matrix(0.204490,0.007574,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.204490,0.007574,-0.009253,0.249829,0,0);}
.mc7_c01050{transform:matrix(0.204915,0.007589,-0.009253,0.249829,0,0);-ms-transform:matrix(0.204915,0.007589,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.204915,0.007589,-0.009253,0.249829,0,0);}
.m100_c01050{transform:matrix(0.205472,0.007404,-0.009003,0.249838,0,0);-ms-transform:matrix(0.205472,0.007404,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.205472,0.007404,-0.009003,0.249838,0,0);}
.m8f_c01050{transform:matrix(0.205494,0.007611,-0.009253,0.249829,0,0);-ms-transform:matrix(0.205494,0.007611,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.205494,0.007611,-0.009253,0.249829,0,0);}
.m10b_c01050{transform:matrix(0.205786,0.007416,-0.009003,0.249838,0,0);-ms-transform:matrix(0.205786,0.007416,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.205786,0.007416,-0.009003,0.249838,0,0);}
.md5_c01050{transform:matrix(0.205961,0.007422,-0.009003,0.249838,0,0);-ms-transform:matrix(0.205961,0.007422,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.205961,0.007422,-0.009003,0.249838,0,0);}
.m9e_c01050{transform:matrix(0.206678,0.007655,-0.009253,0.249829,0,0);-ms-transform:matrix(0.206678,0.007655,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.206678,0.007655,-0.009253,0.249829,0,0);}
.m26_c01050{transform:matrix(0.206701,0.007862,-0.009503,0.249819,0,0);-ms-transform:matrix(0.206701,0.007862,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.206701,0.007862,-0.009503,0.249819,0,0);}
.mca_c01050{transform:matrix(0.207283,0.007677,-0.009253,0.249829,0,0);-ms-transform:matrix(0.207283,0.007677,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.207283,0.007677,-0.009253,0.249829,0,0);}
.ma6_c01050{transform:matrix(0.207553,0.007687,-0.009253,0.249829,0,0);-ms-transform:matrix(0.207553,0.007687,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.207553,0.007687,-0.009253,0.249829,0,0);}
.m42_c01050{transform:matrix(0.207835,0.007906,-0.009503,0.249819,0,0);-ms-transform:matrix(0.207835,0.007906,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.207835,0.007906,-0.009503,0.249819,0,0);}
.mde_c01050{transform:matrix(0.207900,0.007492,-0.009003,0.249838,0,0);-ms-transform:matrix(0.207900,0.007492,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.207900,0.007492,-0.009003,0.249838,0,0);}
.ma4_c01050{transform:matrix(0.208247,0.007713,-0.009253,0.249829,0,0);-ms-transform:matrix(0.208247,0.007713,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.208247,0.007713,-0.009253,0.249829,0,0);}
.ma1_c01050{transform:matrix(0.208437,0.007720,-0.009253,0.249829,0,0);-ms-transform:matrix(0.208437,0.007720,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.208437,0.007720,-0.009253,0.249829,0,0);}
.m124_c01050{transform:matrix(0.209669,0.007556,-0.009003,0.249838,0,0);-ms-transform:matrix(0.209669,0.007556,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.209669,0.007556,-0.009003,0.249838,0,0);}
.m13_c01050{transform:matrix(0.210128,0.007993,-0.009503,0.249819,0,0);-ms-transform:matrix(0.210128,0.007993,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.210128,0.007993,-0.009503,0.249819,0,0);}
.m1f_c01050{transform:matrix(0.210383,0.008003,-0.009503,0.249819,0,0);-ms-transform:matrix(0.210383,0.008003,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.210383,0.008003,-0.009503,0.249819,0,0);}
.m1a_c01050{transform:matrix(0.210698,0.008015,-0.009503,0.249819,0,0);-ms-transform:matrix(0.210698,0.008015,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.210698,0.008015,-0.009503,0.249819,0,0);}
.mba_c01050{transform:matrix(0.210706,0.007804,-0.009253,0.249829,0,0);-ms-transform:matrix(0.210706,0.007804,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.210706,0.007804,-0.009253,0.249829,0,0);}
.m6b_c01050{transform:matrix(0.211070,0.007817,-0.009253,0.249829,0,0);-ms-transform:matrix(0.211070,0.007817,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.211070,0.007817,-0.009253,0.249829,0,0);}
.md1_c01050{transform:matrix(0.211443,0.007620,-0.009003,0.249838,0,0);-ms-transform:matrix(0.211443,0.007620,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.211443,0.007620,-0.009003,0.249838,0,0);}
.m87_c01050{transform:matrix(0.211515,0.007834,-0.009253,0.249829,0,0);-ms-transform:matrix(0.211515,0.007834,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.211515,0.007834,-0.009253,0.249829,0,0);}
.mda_c01050{transform:matrix(0.211523,0.007622,-0.009003,0.249838,0,0);-ms-transform:matrix(0.211523,0.007622,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.211523,0.007622,-0.009003,0.249838,0,0);}
.m14d_c01050{transform:matrix(0.211733,0.007630,-0.009003,0.249838,0,0);-ms-transform:matrix(0.211733,0.007630,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.211733,0.007630,-0.009003,0.249838,0,0);}
.m13e_c01050{transform:matrix(0.211992,0.007639,-0.009003,0.249838,0,0);-ms-transform:matrix(0.211992,0.007639,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.211992,0.007639,-0.009003,0.249838,0,0);}
.md4_c01050{transform:matrix(0.212037,0.007641,-0.009003,0.249838,0,0);-ms-transform:matrix(0.212037,0.007641,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.212037,0.007641,-0.009003,0.249838,0,0);}
.m2d_c01050{transform:matrix(0.212361,0.008078,-0.009503,0.249819,0,0);-ms-transform:matrix(0.212361,0.008078,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.212361,0.008078,-0.009503,0.249819,0,0);}
.mea_c01050{transform:matrix(0.212372,0.007653,-0.009003,0.249838,0,0);-ms-transform:matrix(0.212372,0.007653,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.212372,0.007653,-0.009003,0.249838,0,0);}
.m22_c01050{transform:matrix(0.212771,0.008093,-0.009503,0.249819,0,0);-ms-transform:matrix(0.212771,0.008093,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.212771,0.008093,-0.009503,0.249819,0,0);}
.mc1_c01050{transform:matrix(0.213044,0.007891,-0.009253,0.249829,0,0);-ms-transform:matrix(0.213044,0.007891,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.213044,0.007891,-0.009253,0.249829,0,0);}
.m28_c01050{transform:matrix(0.213071,0.008105,-0.009503,0.249819,0,0);-ms-transform:matrix(0.213071,0.008105,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.213071,0.008105,-0.009503,0.249819,0,0);}
.m6_c01050{transform:matrix(0.213206,0.008110,-0.009503,0.249819,0,0);-ms-transform:matrix(0.213206,0.008110,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.213206,0.008110,-0.009503,0.249819,0,0);}
.m75_c01050{transform:matrix(0.213214,0.007897,-0.009253,0.249829,0,0);-ms-transform:matrix(0.213214,0.007897,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.213214,0.007897,-0.009253,0.249829,0,0);}
.m23_c01050{transform:matrix(0.213755,0.008131,-0.009503,0.249819,0,0);-ms-transform:matrix(0.213755,0.008131,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.213755,0.008131,-0.009503,0.249819,0,0);}
.m1c_c01050{transform:matrix(0.214175,0.008147,-0.009503,0.249819,0,0);-ms-transform:matrix(0.214175,0.008147,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.214175,0.008147,-0.009503,0.249819,0,0);}
.mc0_c01050{transform:matrix(0.214393,0.007940,-0.009253,0.249829,0,0);-ms-transform:matrix(0.214393,0.007940,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.214393,0.007940,-0.009253,0.249829,0,0);}
.ma0_c01050{transform:matrix(0.214558,0.007947,-0.009253,0.249829,0,0);-ms-transform:matrix(0.214558,0.007947,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.214558,0.007947,-0.009253,0.249829,0,0);}
.m132_c01050{transform:matrix(0.214761,0.007739,-0.009003,0.249838,0,0);-ms-transform:matrix(0.214761,0.007739,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.214761,0.007739,-0.009003,0.249838,0,0);}
.m2a_c01050{transform:matrix(0.215364,0.008192,-0.009503,0.249819,0,0);-ms-transform:matrix(0.215364,0.008192,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.215364,0.008192,-0.009503,0.249819,0,0);}
.mbb_c01050{transform:matrix(0.215367,0.007977,-0.009253,0.249829,0,0);-ms-transform:matrix(0.215367,0.007977,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.215367,0.007977,-0.009253,0.249829,0,0);}
.m12_c01050{transform:matrix(0.215504,0.008197,-0.009503,0.249819,0,0);-ms-transform:matrix(0.215504,0.008197,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.215504,0.008197,-0.009503,0.249819,0,0);}
.mfe_c01050{transform:matrix(0.215575,0.007768,-0.009003,0.249838,0,0);-ms-transform:matrix(0.215575,0.007768,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.215575,0.007768,-0.009003,0.249838,0,0);}
.m110_c01050{transform:matrix(0.215745,0.007775,-0.009003,0.249838,0,0);-ms-transform:matrix(0.215745,0.007775,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.215745,0.007775,-0.009003,0.249838,0,0);}
.m34_c01050{transform:matrix(0.215929,0.008214,-0.009503,0.249819,0,0);-ms-transform:matrix(0.215929,0.008214,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.215929,0.008214,-0.009503,0.249819,0,0);}
.me_c01050{transform:matrix(0.216049,0.008218,-0.009503,0.249819,0,0);-ms-transform:matrix(0.216049,0.008218,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.216049,0.008218,-0.009503,0.249819,0,0);}
.mc3_c01050{transform:matrix(0.216392,0.008015,-0.009253,0.249829,0,0);-ms-transform:matrix(0.216392,0.008015,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.216392,0.008015,-0.009253,0.249829,0,0);}
.md8_c01050{transform:matrix(0.216809,0.007813,-0.009003,0.249838,0,0);-ms-transform:matrix(0.216809,0.007813,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.216809,0.007813,-0.009003,0.249838,0,0);}
.m93_c01050{transform:matrix(0.216936,0.008035,-0.009253,0.249829,0,0);-ms-transform:matrix(0.216936,0.008035,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.216936,0.008035,-0.009253,0.249829,0,0);}
.md7_c01050{transform:matrix(0.216974,0.007819,-0.009003,0.249838,0,0);-ms-transform:matrix(0.216974,0.007819,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.216974,0.007819,-0.009003,0.249838,0,0);}
.m1b_c01050{transform:matrix(0.217283,0.008265,-0.009503,0.249819,0,0);-ms-transform:matrix(0.217283,0.008265,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.217283,0.008265,-0.009503,0.249819,0,0);}
.m35_c01050{transform:matrix(0.217892,0.008288,-0.009503,0.249819,0,0);-ms-transform:matrix(0.217892,0.008288,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.217892,0.008288,-0.009503,0.249819,0,0);}
.m2c_c01050{transform:matrix(0.218077,0.008295,-0.009503,0.249819,0,0);-ms-transform:matrix(0.218077,0.008295,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.218077,0.008295,-0.009503,0.249819,0,0);}
.m147_c01050{transform:matrix(0.218113,0.007860,-0.009003,0.249838,0,0);-ms-transform:matrix(0.218113,0.007860,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.218113,0.007860,-0.009003,0.249838,0,0);}
.m14b_c01050{transform:matrix(0.218223,0.007864,-0.009003,0.249838,0,0);-ms-transform:matrix(0.218223,0.007864,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.218223,0.007864,-0.009003,0.249838,0,0);}
.m40_c01050{transform:matrix(0.218672,0.008318,-0.009503,0.249819,0,0);-ms-transform:matrix(0.218672,0.008318,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.218672,0.008318,-0.009503,0.249819,0,0);}
.me4_c01050{transform:matrix(0.219078,0.007895,-0.009003,0.249838,0,0);-ms-transform:matrix(0.219078,0.007895,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.219078,0.007895,-0.009003,0.249838,0,0);}
.mb9_c01050{transform:matrix(0.219115,0.008115,-0.009253,0.249829,0,0);-ms-transform:matrix(0.219115,0.008115,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.219115,0.008115,-0.009253,0.249829,0,0);}
.m5e_c01050{transform:matrix(0.219117,0.008335,-0.009503,0.249819,0,0);-ms-transform:matrix(0.219117,0.008335,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.219117,0.008335,-0.009503,0.249819,0,0);}
.m24_c01050{transform:matrix(0.219206,0.008338,-0.009503,0.249819,0,0);-ms-transform:matrix(0.219206,0.008338,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.219206,0.008338,-0.009503,0.249819,0,0);}
.m68_c01050{transform:matrix(0.219385,0.008125,-0.009253,0.249829,0,0);-ms-transform:matrix(0.219385,0.008125,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.219385,0.008125,-0.009253,0.249829,0,0);}
.m20_c01050{transform:matrix(0.219951,0.008367,-0.009503,0.249819,0,0);-ms-transform:matrix(0.219951,0.008367,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.219951,0.008367,-0.009503,0.249819,0,0);}
.ma7_c01050{transform:matrix(0.220019,0.008149,-0.009253,0.249829,0,0);-ms-transform:matrix(0.220019,0.008149,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.220019,0.008149,-0.009253,0.249829,0,0);}
.m6d_c01050{transform:matrix(0.220099,0.008152,-0.009253,0.249829,0,0);-ms-transform:matrix(0.220099,0.008152,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.220099,0.008152,-0.009253,0.249829,0,0);}
.m129_c01050{transform:matrix(0.220192,0.007935,-0.009003,0.249838,0,0);-ms-transform:matrix(0.220192,0.007935,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.220192,0.007935,-0.009003,0.249838,0,0);}
.m10_c01050{transform:matrix(0.220610,0.008392,-0.009503,0.249819,0,0);-ms-transform:matrix(0.220610,0.008392,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.220610,0.008392,-0.009503,0.249819,0,0);}
.mb8_c01050{transform:matrix(0.220679,0.008173,-0.009253,0.249829,0,0);-ms-transform:matrix(0.220679,0.008173,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.220679,0.008173,-0.009253,0.249829,0,0);}
.m104_c01050{transform:matrix(0.220772,0.007956,-0.009003,0.249838,0,0);-ms-transform:matrix(0.220772,0.007956,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.220772,0.007956,-0.009003,0.249838,0,0);}
.md6_c01050{transform:matrix(0.220872,0.007959,-0.009003,0.249838,0,0);-ms-transform:matrix(0.220872,0.007959,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.220872,0.007959,-0.009003,0.249838,0,0);}
.m79_c01050{transform:matrix(0.221263,0.008195,-0.009253,0.249829,0,0);-ms-transform:matrix(0.221263,0.008195,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.221263,0.008195,-0.009253,0.249829,0,0);}
.mc6_c01050{transform:matrix(0.221443,0.008202,-0.009253,0.249829,0,0);-ms-transform:matrix(0.221443,0.008202,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.221443,0.008202,-0.009253,0.249829,0,0);}
.m32_c01050{transform:matrix(0.221765,0.008435,-0.009503,0.249819,0,0);-ms-transform:matrix(0.221765,0.008435,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.221765,0.008435,-0.009503,0.249819,0,0);}
.m91_c01050{transform:matrix(0.221958,0.008221,-0.009253,0.249829,0,0);-ms-transform:matrix(0.221958,0.008221,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.221958,0.008221,-0.009253,0.249829,0,0);}
.m38_c01050{transform:matrix(0.222024,0.008445,-0.009503,0.249819,0,0);-ms-transform:matrix(0.222024,0.008445,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.222024,0.008445,-0.009503,0.249819,0,0);}
.m146_c01050{transform:matrix(0.222346,0.008012,-0.009003,0.249838,0,0);-ms-transform:matrix(0.222346,0.008012,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.222346,0.008012,-0.009003,0.249838,0,0);}
.m1e_c01050{transform:matrix(0.222569,0.008466,-0.009503,0.249819,0,0);-ms-transform:matrix(0.222569,0.008466,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.222569,0.008466,-0.009503,0.249819,0,0);}
.m8e_c01050{transform:matrix(0.222852,0.008254,-0.009253,0.249829,0,0);-ms-transform:matrix(0.222852,0.008254,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.222852,0.008254,-0.009253,0.249829,0,0);}
.mdd_c01050{transform:matrix(0.223070,0.008039,-0.009003,0.249838,0,0);-ms-transform:matrix(0.223070,0.008039,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.223070,0.008039,-0.009003,0.249838,0,0);}
.m89_c01050{transform:matrix(0.223327,0.008271,-0.009253,0.249829,0,0);-ms-transform:matrix(0.223327,0.008271,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.223327,0.008271,-0.009253,0.249829,0,0);}
.m12a_c01050{transform:matrix(0.223335,0.008048,-0.009003,0.249838,0,0);-ms-transform:matrix(0.223335,0.008048,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.223335,0.008048,-0.009003,0.249838,0,0);}
.m2b_c01050{transform:matrix(0.223558,0.008504,-0.009503,0.249819,0,0);-ms-transform:matrix(0.223558,0.008504,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.223558,0.008504,-0.009503,0.249819,0,0);}
.m121_c01050{transform:matrix(0.223610,0.008058,-0.009003,0.249838,0,0);-ms-transform:matrix(0.223610,0.008058,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.223610,0.008058,-0.009003,0.249838,0,0);}
.mbd_c01050{transform:matrix(0.223757,0.008287,-0.009253,0.249829,0,0);-ms-transform:matrix(0.223757,0.008287,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.223757,0.008287,-0.009253,0.249829,0,0);}
.maa_c01050{transform:matrix(0.224706,0.008322,-0.009253,0.249829,0,0);-ms-transform:matrix(0.224706,0.008322,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.224706,0.008322,-0.009253,0.249829,0,0);}
.m6c_c01050{transform:matrix(0.224801,0.008326,-0.009253,0.249829,0,0);-ms-transform:matrix(0.224801,0.008326,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.224801,0.008326,-0.009253,0.249829,0,0);}
.mf1_c01050{transform:matrix(0.224809,0.008101,-0.009003,0.249838,0,0);-ms-transform:matrix(0.224809,0.008101,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.224809,0.008101,-0.009003,0.249838,0,0);}
.mfc_c01050{transform:matrix(0.224854,0.008103,-0.009003,0.249838,0,0);-ms-transform:matrix(0.224854,0.008103,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.224854,0.008103,-0.009003,0.249838,0,0);}
.m2f_c01050{transform:matrix(0.225187,0.008566,-0.009503,0.249819,0,0);-ms-transform:matrix(0.225187,0.008566,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.225187,0.008566,-0.009503,0.249819,0,0);}
.mc8_c01050{transform:matrix(0.225565,0.008354,-0.009253,0.249829,0,0);-ms-transform:matrix(0.225565,0.008354,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.225565,0.008354,-0.009253,0.249829,0,0);}
.mdb_c01050{transform:matrix(0.225629,0.008131,-0.009003,0.249838,0,0);-ms-transform:matrix(0.225629,0.008131,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.225629,0.008131,-0.009003,0.249838,0,0);}
.m74_c01050{transform:matrix(0.225785,0.008362,-0.009253,0.249829,0,0);-ms-transform:matrix(0.225785,0.008362,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.225785,0.008362,-0.009253,0.249829,0,0);}
.me1_c01050{transform:matrix(0.225793,0.008137,-0.009003,0.249838,0,0);-ms-transform:matrix(0.225793,0.008137,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.225793,0.008137,-0.009003,0.249838,0,0);}
.me5_c01050{transform:matrix(0.225868,0.008139,-0.009003,0.249838,0,0);-ms-transform:matrix(0.225868,0.008139,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.225868,0.008139,-0.009003,0.249838,0,0);}
.ma8_c01050{transform:matrix(0.225895,0.008366,-0.009253,0.249829,0,0);-ms-transform:matrix(0.225895,0.008366,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.225895,0.008366,-0.009253,0.249829,0,0);}
.m12c_c01050{transform:matrix(0.226353,0.008157,-0.009003,0.249838,0,0);-ms-transform:matrix(0.226353,0.008157,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.226353,0.008157,-0.009003,0.249838,0,0);}
.mf8_c01050{transform:matrix(0.226428,0.008160,-0.009003,0.249838,0,0);-ms-transform:matrix(0.226428,0.008160,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.226428,0.008160,-0.009003,0.249838,0,0);}
.m77_c01050{transform:matrix(0.226645,0.008394,-0.009253,0.249829,0,0);-ms-transform:matrix(0.226645,0.008394,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.226645,0.008394,-0.009253,0.249829,0,0);}
.ma5_c01050{transform:matrix(0.227434,0.008423,-0.009253,0.249829,0,0);-ms-transform:matrix(0.227434,0.008423,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.227434,0.008423,-0.009253,0.249829,0,0);}
.m14e_c01050{transform:matrix(0.227477,0.008197,-0.009003,0.249838,0,0);-ms-transform:matrix(0.227477,0.008197,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.227477,0.008197,-0.009003,0.249838,0,0);}
.m14a_c01050{transform:matrix(0.227602,0.008202,-0.009003,0.249838,0,0);-ms-transform:matrix(0.227602,0.008202,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.227602,0.008202,-0.009003,0.249838,0,0);}
.mf3_c01050{transform:matrix(0.227707,0.008206,-0.009003,0.249838,0,0);-ms-transform:matrix(0.227707,0.008206,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.227707,0.008206,-0.009003,0.249838,0,0);}
.m123_c01050{transform:matrix(0.228022,0.008217,-0.009003,0.249838,0,0);-ms-transform:matrix(0.228022,0.008217,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.228022,0.008217,-0.009003,0.249838,0,0);}
.me0_c01050{transform:matrix(0.228092,0.008220,-0.009003,0.249838,0,0);-ms-transform:matrix(0.228092,0.008220,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.228092,0.008220,-0.009003,0.249838,0,0);}
.m73_c01050{transform:matrix(0.228858,0.008476,-0.009253,0.249829,0,0);-ms-transform:matrix(0.228858,0.008476,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.228858,0.008476,-0.009253,0.249829,0,0);}
.m102_c01050{transform:matrix(0.229001,0.008252,-0.009003,0.249838,0,0);-ms-transform:matrix(0.229001,0.008252,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.229001,0.008252,-0.009003,0.249838,0,0);}
.m14_c01050{transform:matrix(0.229249,0.008720,-0.009503,0.249819,0,0);-ms-transform:matrix(0.229249,0.008720,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.229249,0.008720,-0.009503,0.249819,0,0);}
.m5f_c01050{transform:matrix(0.229304,0.008722,-0.009503,0.249819,0,0);-ms-transform:matrix(0.229304,0.008722,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.229304,0.008722,-0.009503,0.249819,0,0);}
.m4c_c01050{transform:matrix(0.229424,0.008727,-0.009503,0.249819,0,0);-ms-transform:matrix(0.229424,0.008727,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.229424,0.008727,-0.009503,0.249819,0,0);}
.m127_c01050{transform:matrix(0.229496,0.008270,-0.009003,0.249838,0,0);-ms-transform:matrix(0.229496,0.008270,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.229496,0.008270,-0.009003,0.249838,0,0);}
.m78_c01050{transform:matrix(0.229752,0.008509,-0.009253,0.249829,0,0);-ms-transform:matrix(0.229752,0.008509,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.229752,0.008509,-0.009253,0.249829,0,0);}
.m92_c01050{transform:matrix(0.230057,0.008521,-0.009253,0.249829,0,0);-ms-transform:matrix(0.230057,0.008521,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.230057,0.008521,-0.009253,0.249829,0,0);}
.md2_c01050{transform:matrix(0.230096,0.008292,-0.009003,0.249838,0,0);-ms-transform:matrix(0.230096,0.008292,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.230096,0.008292,-0.009003,0.249838,0,0);}
.m107_c01050{transform:matrix(0.230306,0.008299,-0.009003,0.249838,0,0);-ms-transform:matrix(0.230306,0.008299,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.230306,0.008299,-0.009003,0.249838,0,0);}
.mf2_c01050{transform:matrix(0.230600,0.008310,-0.009003,0.249838,0,0);-ms-transform:matrix(0.230600,0.008310,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.230600,0.008310,-0.009003,0.249838,0,0);}
.m149_c01050{transform:matrix(0.230615,0.008310,-0.009003,0.249838,0,0);-ms-transform:matrix(0.230615,0.008310,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.230615,0.008310,-0.009003,0.249838,0,0);}
.md9_c01050{transform:matrix(0.230765,0.008316,-0.009003,0.249838,0,0);-ms-transform:matrix(0.230765,0.008316,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.230765,0.008316,-0.009003,0.249838,0,0);}
.m151_c01050{transform:matrix(0.230975,0.008323,-0.009003,0.249838,0,0);-ms-transform:matrix(0.230975,0.008323,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.230975,0.008323,-0.009003,0.249838,0,0);}
.m8c_c01050{transform:matrix(0.231196,0.008563,-0.009253,0.249829,0,0);-ms-transform:matrix(0.231196,0.008563,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.231196,0.008563,-0.009253,0.249829,0,0);}
.mc4_c01050{transform:matrix(0.231356,0.008569,-0.009253,0.249829,0,0);-ms-transform:matrix(0.231356,0.008569,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.231356,0.008569,-0.009253,0.249829,0,0);}
.m9a_c01050{transform:matrix(0.231481,0.008573,-0.009253,0.249829,0,0);-ms-transform:matrix(0.231481,0.008573,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.231481,0.008573,-0.009253,0.249829,0,0);}
.me2_c01050{transform:matrix(0.232004,0.008361,-0.009003,0.249838,0,0);-ms-transform:matrix(0.232004,0.008361,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.232004,0.008361,-0.009003,0.249838,0,0);}
.m88_c01050{transform:matrix(0.232146,0.008598,-0.009253,0.249829,0,0);-ms-transform:matrix(0.232146,0.008598,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.232146,0.008598,-0.009253,0.249829,0,0);}
.mfa_c01050{transform:matrix(0.232184,0.008367,-0.009003,0.249838,0,0);-ms-transform:matrix(0.232184,0.008367,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.232184,0.008367,-0.009003,0.249838,0,0);}
.m11_c01050{transform:matrix(0.232452,0.008842,-0.009503,0.249819,0,0);-ms-transform:matrix(0.232452,0.008842,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.232452,0.008842,-0.009503,0.249819,0,0);}
.md3_c01050{transform:matrix(0.232644,0.008384,-0.009003,0.249838,0,0);-ms-transform:matrix(0.232644,0.008384,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.232644,0.008384,-0.009003,0.249838,0,0);}
.med_c01050{transform:matrix(0.233049,0.008398,-0.009003,0.249838,0,0);-ms-transform:matrix(0.233049,0.008398,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.233049,0.008398,-0.009003,0.249838,0,0);}
.me3_c01050{transform:matrix(0.233753,0.008424,-0.009003,0.249838,0,0);-ms-transform:matrix(0.233753,0.008424,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.233753,0.008424,-0.009003,0.249838,0,0);}
.m109_c01050{transform:matrix(0.234543,0.008452,-0.009003,0.249838,0,0);-ms-transform:matrix(0.234543,0.008452,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.234543,0.008452,-0.009003,0.249838,0,0);}
.m10c_c01050{transform:matrix(0.235602,0.008490,-0.009003,0.249838,0,0);-ms-transform:matrix(0.235602,0.008490,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.235602,0.008490,-0.009003,0.249838,0,0);}
.mcc_c01050{transform:matrix(0.235753,0.008732,-0.009253,0.249829,0,0);-ms-transform:matrix(0.235753,0.008732,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.235753,0.008732,-0.009253,0.249829,0,0);}
.m106_c01050{transform:matrix(0.235917,0.008502,-0.009003,0.249838,0,0);-ms-transform:matrix(0.235917,0.008502,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.235917,0.008502,-0.009003,0.249838,0,0);}
.mdf_c01050{transform:matrix(0.236097,0.008508,-0.009003,0.249838,0,0);-ms-transform:matrix(0.236097,0.008508,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.236097,0.008508,-0.009003,0.249838,0,0);}
.m90_c01050{transform:matrix(0.236338,0.008753,-0.009253,0.249829,0,0);-ms-transform:matrix(0.236338,0.008753,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.236338,0.008753,-0.009253,0.249829,0,0);}
.m7c_c01050{transform:matrix(0.236698,0.008767,-0.009253,0.249829,0,0);-ms-transform:matrix(0.236698,0.008767,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.236698,0.008767,-0.009253,0.249829,0,0);}
.m11d_c01050{transform:matrix(0.236901,0.008537,-0.009003,0.249838,0,0);-ms-transform:matrix(0.236901,0.008537,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.236901,0.008537,-0.009003,0.249838,0,0);}
.m134_c01050{transform:matrix(0.236911,0.008537,-0.009003,0.249838,0,0);-ms-transform:matrix(0.236911,0.008537,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.236911,0.008537,-0.009003,0.249838,0,0);}
.mb1_c01050{transform:matrix(0.237022,0.008779,-0.009253,0.249829,0,0);-ms-transform:matrix(0.237022,0.008779,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.237022,0.008779,-0.009253,0.249829,0,0);}
.m101_c01050{transform:matrix(0.237586,0.008562,-0.009003,0.249838,0,0);-ms-transform:matrix(0.237586,0.008562,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.237586,0.008562,-0.009003,0.249838,0,0);}
.m6e_c01050{transform:matrix(0.237787,0.008807,-0.009253,0.249829,0,0);-ms-transform:matrix(0.237787,0.008807,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.237787,0.008807,-0.009253,0.249829,0,0);}
.m76_c01050{transform:matrix(0.238407,0.008830,-0.009253,0.249829,0,0);-ms-transform:matrix(0.238407,0.008830,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.238407,0.008830,-0.009253,0.249829,0,0);}
.me9_c01050{transform:matrix(0.238965,0.008611,-0.009003,0.249838,0,0);-ms-transform:matrix(0.238965,0.008611,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.238965,0.008611,-0.009003,0.249838,0,0);}
.m7a_c01050{transform:matrix(0.238976,0.008851,-0.009253,0.249829,0,0);-ms-transform:matrix(0.238976,0.008851,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.238976,0.008851,-0.009253,0.249829,0,0);}
.mdc_c01050{transform:matrix(0.239405,0.008627,-0.009003,0.249838,0,0);-ms-transform:matrix(0.239405,0.008627,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.239405,0.008627,-0.009003,0.249838,0,0);}
.m125_c01050{transform:matrix(0.239674,0.008637,-0.009003,0.249838,0,0);-ms-transform:matrix(0.239674,0.008637,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.239674,0.008637,-0.009003,0.249838,0,0);}
.m11c_c01050{transform:matrix(0.240119,0.008653,-0.009003,0.249838,0,0);-ms-transform:matrix(0.240119,0.008653,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.240119,0.008653,-0.009003,0.249838,0,0);}
.m112_c01050{transform:matrix(0.240219,0.008657,-0.009003,0.249838,0,0);-ms-transform:matrix(0.240219,0.008657,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.240219,0.008657,-0.009003,0.249838,0,0);}
.m6f_c01050{transform:matrix(0.240505,0.008908,-0.009253,0.249829,0,0);-ms-transform:matrix(0.240505,0.008908,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.240505,0.008908,-0.009253,0.249829,0,0);}
.me6_c01050{transform:matrix(0.240514,0.008667,-0.009003,0.249838,0,0);-ms-transform:matrix(0.240514,0.008667,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.240514,0.008667,-0.009003,0.249838,0,0);}
.mcb_c01050{transform:matrix(0.240645,0.008913,-0.009253,0.249829,0,0);-ms-transform:matrix(0.240645,0.008913,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.240645,0.008913,-0.009253,0.249829,0,0);}
.m63_c01050{transform:matrix(0.240856,0.009162,-0.009503,0.249819,0,0);-ms-transform:matrix(0.240856,0.009162,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.240856,0.009162,-0.009503,0.249819,0,0);}
.mec_c01050{transform:matrix(0.241118,0.008689,-0.009003,0.249838,0,0);-ms-transform:matrix(0.241118,0.008689,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.241118,0.008689,-0.009003,0.249838,0,0);}
.m118_c01050{transform:matrix(0.241223,0.008693,-0.009003,0.249838,0,0);-ms-transform:matrix(0.241223,0.008693,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.241223,0.008693,-0.009003,0.249838,0,0);}
.m62_c01050{transform:matrix(0.241330,0.009180,-0.009503,0.249819,0,0);-ms-transform:matrix(0.241330,0.009180,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.241330,0.009180,-0.009503,0.249819,0,0);}
.m140_c01050{transform:matrix(0.241458,0.008701,-0.009003,0.249838,0,0);-ms-transform:matrix(0.241458,0.008701,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.241458,0.008701,-0.009003,0.249838,0,0);}
.mb3_c01050{transform:matrix(0.241794,0.008955,-0.009253,0.249829,0,0);-ms-transform:matrix(0.241794,0.008955,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.241794,0.008955,-0.009253,0.249829,0,0);}
.m12f_c01050{transform:matrix(0.241838,0.008715,-0.009003,0.249838,0,0);-ms-transform:matrix(0.241838,0.008715,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.241838,0.008715,-0.009003,0.249838,0,0);}
.mc5_c01050{transform:matrix(0.241859,0.008958,-0.009253,0.249829,0,0);-ms-transform:matrix(0.241859,0.008958,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.241859,0.008958,-0.009253,0.249829,0,0);}
.m8a_c01050{transform:matrix(0.242369,0.008977,-0.009253,0.249829,0,0);-ms-transform:matrix(0.242369,0.008977,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.242369,0.008977,-0.009253,0.249829,0,0);}
.mad_c01050{transform:matrix(0.242379,0.008977,-0.009253,0.249829,0,0);-ms-transform:matrix(0.242379,0.008977,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.242379,0.008977,-0.009253,0.249829,0,0);}
.m114_c01050{transform:matrix(0.243217,0.008765,-0.009003,0.249838,0,0);-ms-transform:matrix(0.243217,0.008765,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.243217,0.008765,-0.009003,0.249838,0,0);}
.mc9_c01050{transform:matrix(0.243358,0.009013,-0.009253,0.249829,0,0);-ms-transform:matrix(0.243358,0.009013,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.243358,0.009013,-0.009253,0.249829,0,0);}
.m142_c01050{transform:matrix(0.243972,0.008792,-0.009003,0.249838,0,0);-ms-transform:matrix(0.243972,0.008792,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.243972,0.008792,-0.009003,0.249838,0,0);}
.m6a_c01050{transform:matrix(0.244083,0.009040,-0.009253,0.249829,0,0);-ms-transform:matrix(0.244083,0.009040,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.244083,0.009040,-0.009253,0.249829,0,0);}
.m119_c01050{transform:matrix(0.244261,0.008802,-0.009003,0.249838,0,0);-ms-transform:matrix(0.244261,0.008802,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.244261,0.008802,-0.009003,0.249838,0,0);}
.m120_c01050{transform:matrix(0.244511,0.008811,-0.009003,0.249838,0,0);-ms-transform:matrix(0.244511,0.008811,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.244511,0.008811,-0.009003,0.249838,0,0);}
.mf9_c01050{transform:matrix(0.244556,0.008813,-0.009003,0.249838,0,0);-ms-transform:matrix(0.244556,0.008813,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.244556,0.008813,-0.009003,0.249838,0,0);}
.mae_c01050{transform:matrix(0.244602,0.009059,-0.009253,0.249829,0,0);-ms-transform:matrix(0.244602,0.009059,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.244602,0.009059,-0.009253,0.249829,0,0);}
.mf4_c01050{transform:matrix(0.244711,0.008818,-0.009003,0.249838,0,0);-ms-transform:matrix(0.244711,0.008818,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.244711,0.008818,-0.009003,0.249838,0,0);}
.m50_c01050{transform:matrix(0.244848,0.009314,-0.009503,0.249819,0,0);-ms-transform:matrix(0.244848,0.009314,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.244848,0.009314,-0.009503,0.249819,0,0);}
.m12e_c01050{transform:matrix(0.245556,0.008849,-0.009003,0.249838,0,0);-ms-transform:matrix(0.245556,0.008849,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.245556,0.008849,-0.009003,0.249838,0,0);}
.m10f_c01050{transform:matrix(0.246045,0.008866,-0.009003,0.249838,0,0);-ms-transform:matrix(0.246045,0.008866,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.246045,0.008866,-0.009003,0.249838,0,0);}
.m138_c01050{transform:matrix(0.246060,0.008867,-0.009003,0.249838,0,0);-ms-transform:matrix(0.246060,0.008867,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.246060,0.008867,-0.009003,0.249838,0,0);}
.m11b_c01050{transform:matrix(0.246425,0.008880,-0.009003,0.249838,0,0);-ms-transform:matrix(0.246425,0.008880,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.246425,0.008880,-0.009003,0.249838,0,0);}
.mfb_c01050{transform:matrix(0.246630,0.008888,-0.009003,0.249838,0,0);-ms-transform:matrix(0.246630,0.008888,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.246630,0.008888,-0.009003,0.249838,0,0);}
.m13a_c01050{transform:matrix(0.246685,0.008890,-0.009003,0.249838,0,0);-ms-transform:matrix(0.246685,0.008890,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.246685,0.008890,-0.009003,0.249838,0,0);}
.meb_c01050{transform:matrix(0.247639,0.008924,-0.009003,0.249838,0,0);-ms-transform:matrix(0.247639,0.008924,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.247639,0.008924,-0.009003,0.249838,0,0);}
.m153_c01050{transform:matrix(0.247709,0.008926,-0.009003,0.249838,0,0);-ms-transform:matrix(0.247709,0.008926,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.247709,0.008926,-0.009003,0.249838,0,0);}
.m10a_c01050{transform:matrix(0.248384,0.008951,-0.009003,0.249838,0,0);-ms-transform:matrix(0.248384,0.008951,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.248384,0.008951,-0.009003,0.249838,0,0);}
.m141_c01050{transform:matrix(0.248539,0.008956,-0.009003,0.249838,0,0);-ms-transform:matrix(0.248539,0.008956,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.248539,0.008956,-0.009003,0.249838,0,0);}
.m95_c01050{transform:matrix(0.248754,0.009213,-0.009253,0.249829,0,0);-ms-transform:matrix(0.248754,0.009213,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.248754,0.009213,-0.009253,0.249829,0,0);}
.mf7_c01050{transform:matrix(0.248993,0.008973,-0.009003,0.249838,0,0);-ms-transform:matrix(0.248993,0.008973,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.248993,0.008973,-0.009003,0.249838,0,0);}
.m7e_c01050{transform:matrix(0.249044,0.009224,-0.009253,0.249829,0,0);-ms-transform:matrix(0.249044,0.009224,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.249044,0.009224,-0.009253,0.249829,0,0);}
.me8_c01050{transform:matrix(0.249203,0.008980,-0.009003,0.249838,0,0);-ms-transform:matrix(0.249203,0.008980,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.249203,0.008980,-0.009003,0.249838,0,0);}
.mff_c01050{transform:matrix(0.249323,0.008985,-0.009003,0.249838,0,0);-ms-transform:matrix(0.249323,0.008985,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.249323,0.008985,-0.009003,0.249838,0,0);}
.m136_c01050{transform:matrix(0.249498,0.008991,-0.009003,0.249838,0,0);-ms-transform:matrix(0.249498,0.008991,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.249498,0.008991,-0.009003,0.249838,0,0);}
.m13c_c01050{transform:matrix(0.250497,0.009027,-0.009003,0.249838,0,0);-ms-transform:matrix(0.250497,0.009027,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.250497,0.009027,-0.009003,0.249838,0,0);}
.mee_c01050{transform:matrix(0.250617,0.009031,-0.009003,0.249838,0,0);-ms-transform:matrix(0.250617,0.009031,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.250617,0.009031,-0.009003,0.249838,0,0);}
.m148_c01050{transform:matrix(0.250677,0.009033,-0.009003,0.249838,0,0);-ms-transform:matrix(0.250677,0.009033,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.250677,0.009033,-0.009003,0.249838,0,0);}
.m86_c01050{transform:matrix(0.251328,0.009308,-0.009253,0.249829,0,0);-ms-transform:matrix(0.251328,0.009308,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.251328,0.009308,-0.009253,0.249829,0,0);}
.m82_c01050{transform:matrix(0.251697,0.009322,-0.009253,0.249829,0,0);-ms-transform:matrix(0.251697,0.009322,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.251697,0.009322,-0.009253,0.249829,0,0);}
.m103_c01050{transform:matrix(0.251737,0.009072,-0.009003,0.249838,0,0);-ms-transform:matrix(0.251737,0.009072,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.251737,0.009072,-0.009003,0.249838,0,0);}
.m71_c01050{transform:matrix(0.252047,0.009335,-0.009253,0.249829,0,0);-ms-transform:matrix(0.252047,0.009335,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.252047,0.009335,-0.009253,0.249829,0,0);}
.mac_c01050{transform:matrix(0.252672,0.009358,-0.009253,0.249829,0,0);-ms-transform:matrix(0.252672,0.009358,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.252672,0.009358,-0.009253,0.249829,0,0);}
.m14c_c01050{transform:matrix(0.252886,0.009113,-0.009003,0.249838,0,0);-ms-transform:matrix(0.252886,0.009113,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.252886,0.009113,-0.009003,0.249838,0,0);}
.mfd_c01050{transform:matrix(0.252996,0.009117,-0.009003,0.249838,0,0);-ms-transform:matrix(0.252996,0.009117,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.252996,0.009117,-0.009003,0.249838,0,0);}
.m13b_c01050{transform:matrix(0.253620,0.009139,-0.009003,0.249838,0,0);-ms-transform:matrix(0.253620,0.009139,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.253620,0.009139,-0.009003,0.249838,0,0);}
.m61_c01050{transform:matrix(0.253627,0.009647,-0.009503,0.249819,0,0);-ms-transform:matrix(0.253627,0.009647,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.253627,0.009647,-0.009503,0.249819,0,0);}
.m14f_c01050{transform:matrix(0.253775,0.009145,-0.009003,0.249838,0,0);-ms-transform:matrix(0.253775,0.009145,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.253775,0.009145,-0.009003,0.249838,0,0);}
.me7_c01050{transform:matrix(0.254595,0.009175,-0.009003,0.249838,0,0);-ms-transform:matrix(0.254595,0.009175,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.254595,0.009175,-0.009003,0.249838,0,0);}
.m105_c01050{transform:matrix(0.254845,0.009184,-0.009003,0.249838,0,0);-ms-transform:matrix(0.254845,0.009184,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.254845,0.009184,-0.009003,0.249838,0,0);}
.m49_c01050{transform:matrix(0.255026,0.009701,-0.009503,0.249819,0,0);-ms-transform:matrix(0.255026,0.009701,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.255026,0.009701,-0.009503,0.249819,0,0);}
.m69_c01050{transform:matrix(0.255935,0.009479,-0.009253,0.249829,0,0);-ms-transform:matrix(0.255935,0.009479,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.255935,0.009479,-0.009253,0.249829,0,0);}
.mf5_c01050{transform:matrix(0.255999,0.009225,-0.009003,0.249838,0,0);-ms-transform:matrix(0.255999,0.009225,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.255999,0.009225,-0.009003,0.249838,0,0);}
.m17_c01050{transform:matrix(0.256115,0.009742,-0.009503,0.249819,0,0);-ms-transform:matrix(0.256115,0.009742,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.256115,0.009742,-0.009503,0.249819,0,0);}
.mf0_c01050{transform:matrix(0.256119,0.009230,-0.009003,0.249838,0,0);-ms-transform:matrix(0.256119,0.009230,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.256119,0.009230,-0.009003,0.249838,0,0);}
.m46_c01050{transform:matrix(0.256844,0.009770,-0.009503,0.249819,0,0);-ms-transform:matrix(0.256844,0.009770,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.256844,0.009770,-0.009503,0.249819,0,0);}
.mb5_c01050{transform:matrix(0.256924,0.009516,-0.009253,0.249829,0,0);-ms-transform:matrix(0.256924,0.009516,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.256924,0.009516,-0.009253,0.249829,0,0);}
.m150_c01050{transform:matrix(0.257508,0.009280,-0.009003,0.249838,0,0);-ms-transform:matrix(0.257508,0.009280,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.257508,0.009280,-0.009003,0.249838,0,0);}
.m11e_c01050{transform:matrix(0.257853,0.009292,-0.009003,0.249838,0,0);-ms-transform:matrix(0.257853,0.009292,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.257853,0.009292,-0.009003,0.249838,0,0);}
.m11a_c01050{transform:matrix(0.257968,0.009296,-0.009003,0.249838,0,0);-ms-transform:matrix(0.257968,0.009296,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.257968,0.009296,-0.009003,0.249838,0,0);}
.mab_c01050{transform:matrix(0.258453,0.009572,-0.009253,0.249829,0,0);-ms-transform:matrix(0.258453,0.009572,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.258453,0.009572,-0.009253,0.249829,0,0);}
.m108_c01050{transform:matrix(0.259302,0.009344,-0.009003,0.249838,0,0);-ms-transform:matrix(0.259302,0.009344,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.259302,0.009344,-0.009003,0.249838,0,0);}
.mce_c01050{transform:matrix(0.259777,0.009621,-0.009253,0.249829,0,0);-ms-transform:matrix(0.259777,0.009621,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.259777,0.009621,-0.009253,0.249829,0,0);}
.m48_c01050{transform:matrix(0.260537,0.009910,-0.009503,0.249819,0,0);-ms-transform:matrix(0.260537,0.009910,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.260537,0.009910,-0.009503,0.249819,0,0);}
.m9c_c01050{transform:matrix(0.261326,0.009679,-0.009253,0.249829,0,0);-ms-transform:matrix(0.261326,0.009679,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.261326,0.009679,-0.009253,0.249829,0,0);}
.m67_c01050{transform:matrix(0.261531,0.009948,-0.009503,0.249819,0,0);-ms-transform:matrix(0.261531,0.009948,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.261531,0.009948,-0.009503,0.249819,0,0);}
.m115_c01050{transform:matrix(0.261680,0.009430,-0.009003,0.249838,0,0);-ms-transform:matrix(0.261680,0.009430,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.261680,0.009430,-0.009003,0.249838,0,0);}
.m64_c01050{transform:matrix(0.262280,0.009977,-0.009503,0.249819,0,0);-ms-transform:matrix(0.262280,0.009977,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.262280,0.009977,-0.009503,0.249819,0,0);}
.m0_c01050{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m85_c01050{transform:matrix(0.262615,0.009726,-0.009253,0.249829,0,0);-ms-transform:matrix(0.262615,0.009726,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.262615,0.009726,-0.009253,0.249829,0,0);}
.mb6_c01050{transform:matrix(0.262815,0.009734,-0.009253,0.249829,0,0);-ms-transform:matrix(0.262815,0.009734,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.262815,0.009734,-0.009253,0.249829,0,0);}
.m4b_c01050{transform:matrix(0.262860,0.009999,-0.009503,0.249819,0,0);-ms-transform:matrix(0.262860,0.009999,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.262860,0.009999,-0.009503,0.249819,0,0);}
.m10d_c01050{transform:matrix(0.262999,0.009477,-0.009003,0.249838,0,0);-ms-transform:matrix(0.262999,0.009477,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.262999,0.009477,-0.009003,0.249838,0,0);}
.m83_c01050{transform:matrix(0.264584,0.009799,-0.009253,0.249829,0,0);-ms-transform:matrix(0.264584,0.009799,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.264584,0.009799,-0.009253,0.249829,0,0);}
.m47_c01050{transform:matrix(0.264799,0.010072,-0.009503,0.249819,0,0);-ms-transform:matrix(0.264799,0.010072,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.264799,0.010072,-0.009503,0.249819,0,0);}
.m4f_c01050{transform:matrix(0.265818,0.010111,-0.009503,0.249819,0,0);-ms-transform:matrix(0.265818,0.010111,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.265818,0.010111,-0.009503,0.249819,0,0);}
.m154_c01050{transform:matrix(0.265862,0.009581,-0.009003,0.249838,0,0);-ms-transform:matrix(0.265862,0.009581,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.265862,0.009581,-0.009003,0.249838,0,0);}
.m9b_c01050{transform:matrix(0.266128,0.009857,-0.009253,0.249829,0,0);-ms-transform:matrix(0.266128,0.009857,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.266128,0.009857,-0.009253,0.249829,0,0);}
.m39_c01050{transform:matrix(0.266372,0.010132,-0.009503,0.249819,0,0);-ms-transform:matrix(0.266372,0.010132,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.266372,0.010132,-0.009503,0.249819,0,0);}
.m143_c01050{transform:matrix(0.266712,0.009611,-0.009003,0.249838,0,0);-ms-transform:matrix(0.266712,0.009611,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.266712,0.009611,-0.009003,0.249838,0,0);}
.m116_c01050{transform:matrix(0.266817,0.009615,-0.009003,0.249838,0,0);-ms-transform:matrix(0.266817,0.009615,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.266817,0.009615,-0.009003,0.249838,0,0);}
.m12d_c01050{transform:matrix(0.266922,0.009619,-0.009003,0.249838,0,0);-ms-transform:matrix(0.266922,0.009619,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.266922,0.009619,-0.009003,0.249838,0,0);}
.m10e_c01050{transform:matrix(0.266962,0.009620,-0.009003,0.249838,0,0);-ms-transform:matrix(0.266962,0.009620,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.266962,0.009620,-0.009003,0.249838,0,0);}
.mb2_c01050{transform:matrix(0.267117,0.009893,-0.009253,0.249829,0,0);-ms-transform:matrix(0.267117,0.009893,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.267117,0.009893,-0.009253,0.249829,0,0);}
.m99_c01050{transform:matrix(0.267327,0.009901,-0.009253,0.249829,0,0);-ms-transform:matrix(0.267327,0.009901,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.267327,0.009901,-0.009253,0.249829,0,0);}
.m13f_c01050{transform:matrix(0.267851,0.009652,-0.009003,0.249838,0,0);-ms-transform:matrix(0.267851,0.009652,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.267851,0.009652,-0.009003,0.249838,0,0);}
.m94_c01050{transform:matrix(0.268436,0.009942,-0.009253,0.249829,0,0);-ms-transform:matrix(0.268436,0.009942,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.268436,0.009942,-0.009253,0.249829,0,0);}
.m144_c01050{transform:matrix(0.268706,0.009683,-0.009003,0.249838,0,0);-ms-transform:matrix(0.268706,0.009683,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.268706,0.009683,-0.009003,0.249838,0,0);}
.md0_c01050{transform:matrix(0.268901,0.009959,-0.009253,0.249829,0,0);-ms-transform:matrix(0.268901,0.009959,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.268901,0.009959,-0.009253,0.249829,0,0);}
.m152_c01050{transform:matrix(0.269040,0.009695,-0.009003,0.249838,0,0);-ms-transform:matrix(0.269040,0.009695,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.269040,0.009695,-0.009003,0.249838,0,0);}
.m130_c01050{transform:matrix(0.269150,0.009699,-0.009003,0.249838,0,0);-ms-transform:matrix(0.269150,0.009699,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.269150,0.009699,-0.009003,0.249838,0,0);}
.m80_c01050{transform:matrix(0.270749,0.010028,-0.009253,0.249829,0,0);-ms-transform:matrix(0.270749,0.010028,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.270749,0.010028,-0.009253,0.249829,0,0);}
.m70_c01050{transform:matrix(0.270794,0.010029,-0.009253,0.249829,0,0);-ms-transform:matrix(0.270794,0.010029,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.270794,0.010029,-0.009253,0.249829,0,0);}
.m7d_c01050{transform:matrix(0.270854,0.010032,-0.009253,0.249829,0,0);-ms-transform:matrix(0.270854,0.010032,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.270854,0.010032,-0.009253,0.249829,0,0);}
.mcf_c01050{transform:matrix(0.271024,0.010038,-0.009253,0.249829,0,0);-ms-transform:matrix(0.271024,0.010038,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.271024,0.010038,-0.009253,0.249829,0,0);}
.m4a_c01050{transform:matrix(0.271928,0.010344,-0.009503,0.249819,0,0);-ms-transform:matrix(0.271928,0.010344,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.271928,0.010344,-0.009503,0.249819,0,0);}
.m60_c01050{transform:matrix(0.272893,0.010380,-0.009503,0.249819,0,0);-ms-transform:matrix(0.272893,0.010380,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.272893,0.010380,-0.009503,0.249819,0,0);}
.m117_c01050{transform:matrix(0.273458,0.009854,-0.009003,0.249838,0,0);-ms-transform:matrix(0.273458,0.009854,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.273458,0.009854,-0.009003,0.249838,0,0);}
.m7f_c01050{transform:matrix(0.274032,0.010149,-0.009253,0.249829,0,0);-ms-transform:matrix(0.274032,0.010149,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.274032,0.010149,-0.009253,0.249829,0,0);}
.maf_c01050{transform:matrix(0.274182,0.010155,-0.009253,0.249829,0,0);-ms-transform:matrix(0.274182,0.010155,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.274182,0.010155,-0.009253,0.249829,0,0);}
.m135_c01050{transform:matrix(0.274242,0.009883,-0.009003,0.249838,0,0);-ms-transform:matrix(0.274242,0.009883,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.274242,0.009883,-0.009003,0.249838,0,0);}
.m97_c01050{transform:matrix(0.275601,0.010207,-0.009253,0.249829,0,0);-ms-transform:matrix(0.275601,0.010207,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.275601,0.010207,-0.009253,0.249829,0,0);}
.m96_c01050{transform:matrix(0.275961,0.010221,-0.009253,0.249829,0,0);-ms-transform:matrix(0.275961,0.010221,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.275961,0.010221,-0.009253,0.249829,0,0);}
.m139_c01050{transform:matrix(0.276516,0.009965,-0.009003,0.249838,0,0);-ms-transform:matrix(0.276516,0.009965,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.276516,0.009965,-0.009003,0.249838,0,0);}
.m65_c01050{transform:matrix(0.276900,0.010533,-0.009503,0.249819,0,0);-ms-transform:matrix(0.276900,0.010533,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.276900,0.010533,-0.009503,0.249819,0,0);}
.m111_c01050{transform:matrix(0.278129,0.010023,-0.009003,0.249838,0,0);-ms-transform:matrix(0.278129,0.010023,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.278129,0.010023,-0.009003,0.249838,0,0);}
.m133_c01050{transform:matrix(0.278814,0.010047,-0.009003,0.249838,0,0);-ms-transform:matrix(0.278814,0.010047,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.278814,0.010047,-0.009003,0.249838,0,0);}
.m137_c01050{transform:matrix(0.278844,0.010048,-0.009003,0.249838,0,0);-ms-transform:matrix(0.278844,0.010048,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.278844,0.010048,-0.009003,0.249838,0,0);}
.m113_c01050{transform:matrix(0.279094,0.010057,-0.009003,0.249838,0,0);-ms-transform:matrix(0.279094,0.010057,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.279094,0.010057,-0.009003,0.249838,0,0);}
.m13d_c01050{transform:matrix(0.279628,0.010077,-0.009003,0.249838,0,0);-ms-transform:matrix(0.279628,0.010077,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.279628,0.010077,-0.009003,0.249838,0,0);}
.m81_c01050{transform:matrix(0.280718,0.010397,-0.009253,0.249829,0,0);-ms-transform:matrix(0.280718,0.010397,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.280718,0.010397,-0.009253,0.249829,0,0);}
.mc2_c01050{transform:matrix(0.281787,0.010437,-0.009253,0.249829,0,0);-ms-transform:matrix(0.281787,0.010437,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.281787,0.010437,-0.009253,0.249829,0,0);}
.m4e_c01050{transform:matrix(0.281906,0.010723,-0.009503,0.249819,0,0);-ms-transform:matrix(0.281906,0.010723,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.281906,0.010723,-0.009503,0.249819,0,0);}
.m4d_c01050{transform:matrix(0.282516,0.010746,-0.009503,0.249819,0,0);-ms-transform:matrix(0.282516,0.010746,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.282516,0.010746,-0.009503,0.249819,0,0);}
.m66_c01050{transform:matrix(0.285489,0.010859,-0.009503,0.249819,0,0);-ms-transform:matrix(0.285489,0.010859,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.285489,0.010859,-0.009503,0.249819,0,0);}
.m84_c01050{transform:matrix(0.288182,0.010673,-0.009253,0.249829,0,0);-ms-transform:matrix(0.288182,0.010673,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.288182,0.010673,-0.009253,0.249829,0,0);}
.m145_c01050{transform:matrix(0.289312,0.010426,-0.009003,0.249838,0,0);-ms-transform:matrix(0.289312,0.010426,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.289312,0.010426,-0.009003,0.249838,0,0);}
.ma9_c01050{transform:matrix(0.302707,0.011211,-0.009253,0.249829,0,0);-ms-transform:matrix(0.302707,0.011211,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.302707,0.011211,-0.009253,0.249829,0,0);}
.mcd_c01050{transform:matrix(0.306025,0.011334,-0.009253,0.249829,0,0);-ms-transform:matrix(0.306025,0.011334,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.306025,0.011334,-0.009253,0.249829,0,0);}
.mb0_c01050{transform:matrix(0.308848,0.011439,-0.009253,0.249829,0,0);-ms-transform:matrix(0.308848,0.011439,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.308848,0.011439,-0.009253,0.249829,0,0);}
.m51_c01050{transform:matrix(0.322747,0.012277,-0.009503,0.249819,0,0);-ms-transform:matrix(0.322747,0.012277,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.322747,0.012277,-0.009503,0.249819,0,0);}
.m98_c01050{transform:matrix(0.323863,0.011995,-0.009253,0.249829,0,0);-ms-transform:matrix(0.323863,0.011995,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.323863,0.011995,-0.009253,0.249829,0,0);}
.mb4_c01050{transform:matrix(0.348716,0.012915,-0.009253,0.249829,0,0);-ms-transform:matrix(0.348716,0.012915,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.348716,0.012915,-0.009253,0.249829,0,0);}
.v0_c01050{vertical-align:0.000000px;}
.ls0_c01050{letter-spacing:0.000000px;}
.sc__c01050{text-shadow:none;}
.sc0_c01050{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__c01050{-webkit-text-stroke:0px transparent;}
.sc0_c01050{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01050{word-spacing:0.000000px;}
.fc0_c01050{color:transparent;}
.fsc_c01050{font-size:71.974688px;}
.fs8_c01050{font-size:71.977316px;}
.fs4_c01050{font-size:71.980017px;}
.fs0_c01050{font-size:72.000000px;}
.fsb_c01050{font-size:77.972578px;}
.fs6_c01050{font-size:77.975426px;}
.fsa_c01050{font-size:83.970469px;}
.fs7_c01050{font-size:83.973536px;}
.fs9_c01050{font-size:89.971646px;}
.fs2_c01050{font-size:89.975022px;}
.fs3_c01050{font-size:101.971691px;}
.fs5_c01050{font-size:107.970026px;}
.fs1_c01050{font-size:119.966695px;}
.y0_c01050{bottom:0.000000px;}
.y15e_c01050{bottom:52.673319px;}
.y15d_c01050{bottom:54.399591px;}
.y15c_c01050{bottom:56.577749px;}
.y15b_c01050{bottom:63.626422px;}
.y15a_c01050{bottom:67.971289px;}
.y159_c01050{bottom:72.844762px;}
.y158_c01050{bottom:74.843437px;}
.y157_c01050{bottom:76.302612px;}
.y156_c01050{bottom:80.223943px;}
.y155_c01050{bottom:81.618858px;}
.y154_c01050{bottom:83.622757px;}
.y153_c01050{bottom:85.505035px;}
.y152_c01050{bottom:89.425503px;}
.y151_c01050{bottom:90.885973px;}
.y150_c01050{bottom:92.760813px;}
.y14f_c01050{bottom:101.801587px;}
.y14e_c01050{bottom:102.703441px;}
.y14d_c01050{bottom:105.359040px;}
.y14c_c01050{bottom:106.666933px;}
.y14b_c01050{bottom:108.856876px;}
.y14a_c01050{bottom:110.654752px;}
.y149_c01050{bottom:114.623644px;}
.y148_c01050{bottom:115.524688px;}
.y147_c01050{bottom:119.538468px;}
.y146_c01050{bottom:120.842041px;}
.y145_c01050{bottom:121.739251px;}
.y144_c01050{bottom:123.895147px;}
.y143_c01050{bottom:125.266923px;}
.y142_c01050{bottom:129.192493px;}
.y141_c01050{bottom:137.956018px;}
.y140_c01050{bottom:141.631555px;}
.y13f_c01050{bottom:142.903215px;}
.y13e_c01050{bottom:145.774233px;}
.y13d_c01050{bottom:147.008430px;}
.y13c_c01050{bottom:151.480602px;}
.y13b_c01050{bottom:152.706861px;}
.y13a_c01050{bottom:154.376082px;}
.y139_c01050{bottom:157.199593px;}
.y138_c01050{bottom:158.447830px;}
.y137_c01050{bottom:160.425364px;}
.y136_c01050{bottom:162.930465px;}
.y135_c01050{bottom:176.475339px;}
.y134_c01050{bottom:178.984773px;}
.y133_c01050{bottom:180.116937px;}
.y132_c01050{bottom:180.884736px;}
.y131_c01050{bottom:183.021583px;}
.y130_c01050{bottom:184.137102px;}
.y12f_c01050{bottom:186.687603px;}
.y12e_c01050{bottom:187.812315px;}
.y12d_c01050{bottom:188.906706px;}
.y12c_c01050{bottom:192.531010px;}
.y12b_c01050{bottom:193.628911px;}
.y12a_c01050{bottom:195.838294px;}
.y129_c01050{bottom:196.880805px;}
.y128_c01050{bottom:199.098936px;}
.y127_c01050{bottom:208.936885px;}
.y126_c01050{bottom:210.409668px;}
.y125_c01050{bottom:213.531408px;}
.y124_c01050{bottom:216.549832px;}
.y123_c01050{bottom:219.638268px;}
.y122_c01050{bottom:223.190253px;}
.y121_c01050{bottom:227.813179px;}
.y120_c01050{bottom:228.835345px;}
.y11f_c01050{bottom:236.283106px;}
.y11e_c01050{bottom:240.395058px;}
.y11d_c01050{bottom:249.001699px;}
.y11c_c01050{bottom:252.127975px;}
.y11b_c01050{bottom:254.754549px;}
.y11a_c01050{bottom:256.105764px;}
.y119_c01050{bottom:260.547642px;}
.y118_c01050{bottom:261.860179px;}
.y117_c01050{bottom:265.771399px;}
.y116_c01050{bottom:267.122236px;}
.y115_c01050{bottom:268.937163px;}
.y114_c01050{bottom:271.984072px;}
.y113_c01050{bottom:272.897145px;}
.y112_c01050{bottom:274.132260px;}
.y111_c01050{bottom:283.846806px;}
.y110_c01050{bottom:285.148098px;}
.y10f_c01050{bottom:285.911982px;}
.y10e_c01050{bottom:289.876986px;}
.y10d_c01050{bottom:291.084966px;}
.y10c_c01050{bottom:293.073138px;}
.y10b_c01050{bottom:295.917912px;}
.y10a_c01050{bottom:296.613810px;}
.y109_c01050{bottom:299.425266px;}
.y108_c01050{bottom:300.627036px;}
.y107_c01050{bottom:302.979870px;}
.y106_c01050{bottom:303.802020px;}
.y105_c01050{bottom:306.934398px;}
.y104_c01050{bottom:308.139624px;}
.y103_c01050{bottom:323.311545px;}
.y102_c01050{bottom:324.789862px;}
.y101_c01050{bottom:327.014217px;}
.y100_c01050{bottom:328.431906px;}
.yff_c01050{bottom:330.652629px;}
.yfe_c01050{bottom:331.731994px;}
.yfd_c01050{bottom:333.922194px;}
.yfc_c01050{bottom:334.644120px;}
.yfb_c01050{bottom:337.910985px;}
.yfa_c01050{bottom:340.111553px;}
.yf9_c01050{bottom:341.190918px;}
.yf8_c01050{bottom:342.954383px;}
.yf7_c01050{bottom:356.394605px;}
.yf6_c01050{bottom:359.502939px;}
.yf5_c01050{bottom:360.219384px;}
.yf4_c01050{bottom:363.019891px;}
.yf3_c01050{bottom:364.591535px;}
.yf2_c01050{bottom:366.506807px;}
.yf1_c01050{bottom:368.836637px;}
.yf0_c01050{bottom:369.971744px;}
.yef_c01050{bottom:371.944715px;}
.yee_c01050{bottom:374.274545px;}
.yed_c01050{bottom:378.867555px;}
.yec_c01050{bottom:379.657994px;}
.yeb_c01050{bottom:392.431221px;}
.yea_c01050{bottom:393.483897px;}
.ye9_c01050{bottom:396.446054px;}
.ye8_c01050{bottom:399.325415px;}
.ye7_c01050{bottom:400.110507px;}
.ye6_c01050{bottom:403.347699px;}
.ye5_c01050{bottom:407.364800px;}
.ye4_c01050{bottom:408.470328px;}
.ye3_c01050{bottom:410.302643px;}
.ye2_c01050{bottom:413.940083px;}
.ye1_c01050{bottom:429.612354px;}
.ye0_c01050{bottom:431.234190px;}
.ydf_c01050{bottom:433.658520px;}
.yde_c01050{bottom:434.848842px;}
.ydd_c01050{bottom:436.803750px;}
.ydc_c01050{bottom:439.565958px;}
.ydb_c01050{bottom:440.797482px;}
.yda_c01050{bottom:442.755900px;}
.yd9_c01050{bottom:445.160088px;}
.yd8_c01050{bottom:447.570486px;}
.yd7_c01050{bottom:448.758000px;}
.yd6_c01050{bottom:478.486278px;}
.yd5_c01050{bottom:480.953475px;}
.yd4_c01050{bottom:481.900083px;}
.yd3_c01050{bottom:483.455360px;}
.yd2_c01050{bottom:484.381211px;}
.yd1_c01050{bottom:485.301123px;}
.yd0_c01050{bottom:500.679896px;}
.ycf_c01050{bottom:501.829578px;}
.yce_c01050{bottom:506.351330px;}
.ycd_c01050{bottom:509.016051px;}
.ycc_c01050{bottom:510.109623px;}
.ycb_c01050{bottom:512.007501px;}
.yca_c01050{bottom:515.768348px;}
.yc9_c01050{bottom:518.762850px;}
.yc8_c01050{bottom:520.277889px;}
.yc7_c01050{bottom:521.746142px;}
.yc6_c01050{bottom:532.975068px;}
.yc5_c01050{bottom:535.713383px;}
.yc4_c01050{bottom:537.349967px;}
.yc3_c01050{bottom:538.536057px;}
.yc2_c01050{bottom:542.923721px;}
.yc1_c01050{bottom:544.100543px;}
.yc0_c01050{bottom:546.926769px;}
.ybf_c01050{bottom:549.262709px;}
.ybe_c01050{bottom:552.799058px;}
.ybd_c01050{bottom:556.443188px;}
.ybc_c01050{bottom:557.645318px;}
.ybb_c01050{bottom:569.916035px;}
.yba_c01050{bottom:571.972199px;}
.yb9_c01050{bottom:574.964925px;}
.yb8_c01050{bottom:576.893939px;}
.yb7_c01050{bottom:579.811629px;}
.yb6_c01050{bottom:581.034738px;}
.yb5_c01050{bottom:583.443993px;}
.yb4_c01050{bottom:585.929450px;}
.yb3_c01050{bottom:587.134854px;}
.yb2_c01050{bottom:588.770273px;}
.yb1_c01050{bottom:590.391983px;}
.yb0_c01050{bottom:592.809396px;}
.yaf_c01050{bottom:594.035502px;}
.yae_c01050{bottom:594.903633px;}
.yad_c01050{bottom:607.972551px;}
.yac_c01050{bottom:610.410333px;}
.yab_c01050{bottom:612.426093px;}
.yaa_c01050{bottom:616.427754px;}
.ya9_c01050{bottom:618.771852px;}
.ya8_c01050{bottom:619.979699px;}
.ya7_c01050{bottom:621.924974px;}
.ya6_c01050{bottom:622.796657px;}
.ya5_c01050{bottom:625.164287px;}
.ya4_c01050{bottom:626.729609px;}
.ya3_c01050{bottom:628.707185px;}
.ya2_c01050{bottom:630.252527px;}
.ya1_c01050{bottom:644.465522px;}
.ya0_c01050{bottom:646.961745px;}
.y9f_c01050{bottom:648.049656px;}
.y9e_c01050{bottom:650.288471px;}
.y9d_c01050{bottom:651.415676px;}
.y9c_c01050{bottom:654.637229px;}
.y9b_c01050{bottom:658.617855px;}
.y9a_c01050{bottom:659.741508px;}
.y99_c01050{bottom:662.655258px;}
.y98_c01050{bottom:663.713421px;}
.y97_c01050{bottom:664.803275px;}
.y96_c01050{bottom:676.559229px;}
.y95_c01050{bottom:678.934851px;}
.y94_c01050{bottom:680.078040px;}
.y93_c01050{bottom:681.267183px;}
.y92_c01050{bottom:683.561664px;}
.y91_c01050{bottom:684.742538px;}
.y90_c01050{bottom:687.441281px;}
.y8f_c01050{bottom:688.638194px;}
.y8e_c01050{bottom:689.787155px;}
.y8d_c01050{bottom:694.784430px;}
.y8c_c01050{bottom:695.612268px;}
.y8b_c01050{bottom:698.658497px;}
.y8a_c01050{bottom:700.161548px;}
.y89_c01050{bottom:713.000862px;}
.y88_c01050{bottom:714.093879px;}
.y87_c01050{bottom:719.074949px;}
.y86_c01050{bottom:721.879142px;}
.y85_c01050{bottom:723.314927px;}
.y84_c01050{bottom:727.154417px;}
.y83_c01050{bottom:727.937910px;}
.y82_c01050{bottom:731.390565px;}
.y81_c01050{bottom:732.835785px;}
.y80_c01050{bottom:734.977863px;}
.y7f_c01050{bottom:751.396706px;}
.y7e_c01050{bottom:752.154003px;}
.y7d_c01050{bottom:755.210000px;}
.y7c_c01050{bottom:756.710664px;}
.y7b_c01050{bottom:759.297741px;}
.y7a_c01050{bottom:760.437101px;}
.y79_c01050{bottom:762.715764px;}
.y78_c01050{bottom:766.060694px;}
.y77_c01050{bottom:767.218146px;}
.y76_c01050{bottom:767.985656px;}
.y75_c01050{bottom:770.579559px;}
.y74_c01050{bottom:771.690225px;}
.y73_c01050{bottom:786.311645px;}
.y72_c01050{bottom:790.931243px;}
.y71_c01050{bottom:791.720675px;}
.y70_c01050{bottom:793.364585px;}
.y6f_c01050{bottom:794.534469px;}
.y6e_c01050{bottom:796.159121px;}
.y6d_c01050{bottom:797.402210px;}
.y6c_c01050{bottom:799.862136px;}
.y6b_c01050{bottom:803.890160px;}
.y6a_c01050{bottom:805.159500px;}
.y69_c01050{bottom:827.736906px;}
.y68_c01050{bottom:830.154271px;}
.y67_c01050{bottom:832.877082px;}
.y66_c01050{bottom:834.904270px;}
.y65_c01050{bottom:836.284530px;}
.y64_c01050{bottom:837.323631px;}
.y63_c01050{bottom:839.342929px;}
.y62_c01050{bottom:840.758316px;}
.y61_c01050{bottom:841.713499px;}
.y60_c01050{bottom:842.768527px;}
.y5f_c01050{bottom:857.017068px;}
.y5e_c01050{bottom:858.144330px;}
.y5d_c01050{bottom:860.398324px;}
.y5c_c01050{bottom:862.651366px;}
.y5b_c01050{bottom:865.693006px;}
.y5a_c01050{bottom:867.163077px;}
.y59_c01050{bottom:867.976665px;}
.y58_c01050{bottom:870.911391px;}
.y57_c01050{bottom:873.982393px;}
.y56_c01050{bottom:875.788335px;}
.y55_c01050{bottom:876.584400px;}
.y54_c01050{bottom:879.213945px;}
.y53_c01050{bottom:893.847138px;}
.y52_c01050{bottom:895.373701px;}
.y51_c01050{bottom:896.230857px;}
.y50_c01050{bottom:900.093651px;}
.y4f_c01050{bottom:902.783066px;}
.y4e_c01050{bottom:903.926553px;}
.y4d_c01050{bottom:906.252865px;}
.y4c_c01050{bottom:909.326667px;}
.y4b_c01050{bottom:911.263405px;}
.y4a_c01050{bottom:912.082176px;}
.y49_c01050{bottom:914.382871px;}
.y48_c01050{bottom:915.919108px;}
.y47_c01050{bottom:928.913924px;}
.y46_c01050{bottom:930.399823px;}
.y45_c01050{bottom:931.935190px;}
.y44_c01050{bottom:934.259554px;}
.y43_c01050{bottom:936.100444px;}
.y42_c01050{bottom:939.482727px;}
.y41_c01050{bottom:940.989627px;}
.y40_c01050{bottom:942.116547px;}
.y3f_c01050{bottom:943.604483px;}
.y3e_c01050{bottom:944.764983px;}
.y3d_c01050{bottom:947.008335px;}
.y3c_c01050{bottom:950.745208px;}
.y3b_c01050{bottom:966.372072px;}
.y3a_c01050{bottom:969.284026px;}
.y39_c01050{bottom:970.425987px;}
.y38_c01050{bottom:971.593596px;}
.y37_c01050{bottom:973.329970px;}
.y36_c01050{bottom:975.040583px;}
.y35_c01050{bottom:975.890706px;}
.y34_c01050{bottom:978.745159px;}
.y33_c01050{bottom:979.932261px;}
.y32_c01050{bottom:980.767574px;}
.y31_c01050{bottom:983.935140px;}
.y30_c01050{bottom:997.825627px;}
.y2f_c01050{bottom:998.598173px;}
.y2e_c01050{bottom:1001.881497px;}
.y2d_c01050{bottom:1004.456286px;}
.y2c_c01050{bottom:1006.638606px;}
.y2b_c01050{bottom:1007.716729px;}
.y2a_c01050{bottom:1010.674615px;}
.y29_c01050{bottom:1011.748709px;}
.y28_c01050{bottom:1013.893531px;}
.y27_c01050{bottom:1014.986572px;}
.y26_c01050{bottom:1017.565864px;}
.y25_c01050{bottom:1020.114825px;}
.y24_c01050{bottom:1034.764754px;}
.y23_c01050{bottom:1035.948222px;}
.y22_c01050{bottom:1039.045246px;}
.y21_c01050{bottom:1039.878023px;}
.y20_c01050{bottom:1043.710110px;}
.y1f_c01050{bottom:1045.283478px;}
.y1e_c01050{bottom:1048.741495px;}
.y1d_c01050{bottom:1051.109442px;}
.y1c_c01050{bottom:1053.378478px;}
.y1b_c01050{bottom:1054.541158px;}
.y1a_c01050{bottom:1055.674215px;}
.y19_c01050{bottom:1057.626458px;}
.y18_c01050{bottom:1069.859286px;}
.y17_c01050{bottom:1070.639453px;}
.y16_c01050{bottom:1071.705736px;}
.y15_c01050{bottom:1075.747315px;}
.y14_c01050{bottom:1076.503706px;}
.y13_c01050{bottom:1079.361607px;}
.y12_c01050{bottom:1080.893792px;}
.y11_c01050{bottom:1083.070354px;}
.y10_c01050{bottom:1083.798962px;}
.yf_c01050{bottom:1086.326922px;}
.ye_c01050{bottom:1087.760929px;}
.yd_c01050{bottom:1089.907047px;}
.yc_c01050{bottom:1091.365759px;}
.yb_c01050{bottom:1106.828337px;}
.ya_c01050{bottom:1109.363469px;}
.y9_c01050{bottom:1110.650472px;}
.y8_c01050{bottom:1114.414353px;}
.y7_c01050{bottom:1115.300247px;}
.y6_c01050{bottom:1119.055920px;}
.y5_c01050{bottom:1120.725165px;}
.y4_c01050{bottom:1122.002307px;}
.y3_c01050{bottom:1124.568960px;}
.y2_c01050{bottom:1126.206000px;}
.y1_c01050{bottom:1196.080500px;}
.hf_c01050{height:71.974688px;}
.hb_c01050{height:71.977316px;}
.h6_c01050{height:71.980017px;}
.h2_c01050{height:72.000000px;}
.he_c01050{height:77.972578px;}
.h9_c01050{height:77.975426px;}
.hd_c01050{height:83.970469px;}
.ha_c01050{height:83.973536px;}
.hc_c01050{height:89.971646px;}
.h4_c01050{height:89.975022px;}
.h5_c01050{height:101.971691px;}
.h7_c01050{height:107.970026px;}
.h8_c01050{height:108.509876px;}
.h3_c01050{height:119.966695px;}
.h0_c01050{height:1246.320000px;}
.h1_c01050{height:1246.500000px;}
.w1_c01050{width:887.250000px;}
.w0_c01050{width:887.490000px;}
.x0_c01050{left:0.000000px;}
.xe5_c01050{left:129.579350px;}
.xa1_c01050{left:131.083355px;}
.xda_c01050{left:132.683742px;}
.xd2_c01050{left:133.789473px;}
.xce_c01050{left:136.014341px;}
.xb8_c01050{left:137.706336px;}
.xb3_c01050{left:138.958231px;}
.xa8_c01050{left:141.199284px;}
.x9c_c01050{left:142.471178px;}
.x93_c01050{left:143.578014px;}
.x88_c01050{left:146.000645px;}
.x71_c01050{left:147.011799px;}
.x79_c01050{left:148.076678px;}
.x66_c01050{left:149.165310px;}
.x4b_c01050{left:151.041780px;}
.x3f_c01050{left:152.532515px;}
.x2b_c01050{left:154.393388px;}
.x21_c01050{left:155.535488px;}
.x17_c01050{left:156.891825px;}
.xc_c01050{left:158.988564px;}
.xb9_c01050{left:160.265565px;}
.x94_c01050{left:167.017551px;}
.xcc_c01050{left:168.174297px;}
.xc8_c01050{left:170.724258px;}
.xa2_c01050{left:174.210462px;}
.x9d_c01050{left:175.820018px;}
.x80_c01050{left:179.465868px;}
.x67_c01050{left:181.786767px;}
.x56_c01050{left:185.134652px;}
.x89_c01050{left:188.899814px;}
.x7a_c01050{left:190.968410px;}
.xc3_c01050{left:192.588359px;}
.x40_c01050{left:196.391133px;}
.xe6_c01050{left:197.559585px;}
.x95_c01050{left:200.122413px;}
.xd_c01050{left:203.136759px;}
.xa9_c01050{left:207.038324px;}
.xe2_c01050{left:208.066028px;}
.x81_c01050{left:211.480044px;}
.x18_c01050{left:212.594400px;}
.x72_c01050{left:213.882750px;}
.x57_c01050{left:215.887527px;}
.xa3_c01050{left:218.722350px;}
.xc4_c01050{left:225.247181px;}
.x4c_c01050{left:228.298200px;}
.xdb_c01050{left:230.750969px;}
.x22_c01050{left:232.685424px;}
.x8a_c01050{left:243.793421px;}
.x19_c01050{left:244.946225px;}
.xac_c01050{left:249.795000px;}
.x4d_c01050{left:251.672340px;}
.xd8_c01050{left:253.941714px;}
.x68_c01050{left:257.980441px;}
.x73_c01050{left:258.980940px;}
.x5e_c01050{left:260.031000px;}
.x41_c01050{left:262.043390px;}
.x35_c01050{left:263.473957px;}
.x96_c01050{left:265.392578px;}
.xcd_c01050{left:267.071531px;}
.x2_c01050{left:268.527000px;}
.x2c_c01050{left:276.053622px;}
.x1a_c01050{left:278.116287px;}
.x69_c01050{left:280.526373px;}
.xad_c01050{left:282.748514px;}
.x42_c01050{left:285.422669px;}
.x8b_c01050{left:287.232050px;}
.xba_c01050{left:291.344058px;}
.x5f_c01050{left:294.303194px;}
.xaa_c01050{left:296.264730px;}
.x82_c01050{left:299.672319px;}
.x7b_c01050{left:301.564425px;}
.x4e_c01050{left:304.712292px;}
.xa4_c01050{left:306.704558px;}
.x2d_c01050{left:308.152655px;}
.x97_c01050{left:309.178748px;}
.x3_c01050{left:311.563920px;}
.x6a_c01050{left:314.532610px;}
.xdc_c01050{left:318.859070px;}
.x58_c01050{left:326.540705px;}
.x36_c01050{left:329.394014px;}
.xd3_c01050{left:332.579444px;}
.x83_c01050{left:333.697815px;}
.xb4_c01050{left:337.994010px;}
.x43_c01050{left:340.717651px;}
.x1b_c01050{left:342.857342px;}
.xc9_c01050{left:345.753554px;}
.xae_c01050{left:349.637058px;}
.x2e_c01050{left:353.760827px;}
.xbb_c01050{left:357.828885px;}
.x59_c01050{left:360.012600px;}
.x37_c01050{left:363.493072px;}
.x74_c01050{left:366.747510px;}
.xdd_c01050{left:373.810118px;}
.x9e_c01050{left:375.040931px;}
.x8c_c01050{left:377.124401px;}
.x4_c01050{left:379.039876px;}
.xab_c01050{left:384.270969px;}
.x98_c01050{left:385.880969px;}
.xe_c01050{left:388.056858px;}
.x75_c01050{left:391.224065px;}
.x4f_c01050{left:394.955210px;}
.x60_c01050{left:403.059828px;}
.x5a_c01050{left:404.465414px;}
.x38_c01050{left:407.225971px;}
.x23_c01050{left:408.734135px;}
.xf_c01050{left:410.130984px;}
.x5_c01050{left:412.615267px;}
.xbc_c01050{left:414.161050px;}
.xa5_c01050{left:417.201228px;}
.x44_c01050{left:428.430336px;}
.x8d_c01050{left:431.105366px;}
.x9f_c01050{left:439.853442px;}
.x24_c01050{left:441.232266px;}
.xd4_c01050{left:442.272479px;}
.x7c_c01050{left:444.188714px;}
.xbd_c01050{left:446.576292px;}
.x1_c01050{left:453.600000px;}
.x6_c01050{left:456.498840px;}
.xb5_c01050{left:459.586431px;}
.x2f_c01050{left:463.402115px;}
.x8e_c01050{left:464.608551px;}
.x5b_c01050{left:469.791924px;}
.xa6_c01050{left:472.981614px;}
.xde_c01050{left:474.075320px;}
.x10_c01050{left:476.031070px;}
.x6b_c01050{left:479.739571px;}
.x50_c01050{left:481.181520px;}
.x39_c01050{left:484.594779px;}
.x45_c01050{left:494.834953px;}
.x30_c01050{left:496.048328px;}
.x61_c01050{left:503.041247px;}
.x51_c01050{left:505.095234px;}
.x1c_c01050{left:509.116859px;}
.x76_c01050{left:511.055779px;}
.x6c_c01050{left:513.216783px;}
.x99_c01050{left:518.038179px;}
.x11_c01050{left:522.386955px;}
.x46_c01050{left:527.461004px;}
.x8f_c01050{left:529.641342px;}
.x25_c01050{left:530.750162px;}
.xe3_c01050{left:539.145104px;}
.x62_c01050{left:546.906837px;}
.x52_c01050{left:548.279568px;}
.x84_c01050{left:551.695877px;}
.x1d_c01050{left:554.030535px;}
.x7_c01050{left:555.233506px;}
.x5c_c01050{left:557.508955px;}
.x31_c01050{left:561.771051px;}
.x26_c01050{left:563.393705px;}
.xbe_c01050{left:567.708863px;}
.x8_c01050{left:578.523194px;}
.xaf_c01050{left:581.525437px;}
.x3a_c01050{left:583.967926px;}
.x85_c01050{left:585.817276px;}
.xcf_c01050{left:586.936589px;}
.x7d_c01050{left:588.212767px;}
.x6d_c01050{left:589.226142px;}
.xd9_c01050{left:596.182361px;}
.x47_c01050{left:604.200417px;}
.x12_c01050{left:608.881806px;}
.xca_c01050{left:610.545996px;}
.xbf_c01050{left:612.571077px;}
.xd5_c01050{left:620.365896px;}
.xc5_c01050{left:621.716679px;}
.x63_c01050{left:622.879289px;}
.x27_c01050{left:629.445140px;}
.x13_c01050{left:631.765236px;}
.x6e_c01050{left:633.309404px;}
.x5d_c01050{left:635.381217px;}
.x3b_c01050{left:638.045011px;}
.x90_c01050{left:640.684299px;}
.x64_c01050{left:644.193953px;}
.x86_c01050{left:653.598483px;}
.x1e_c01050{left:663.414038px;}
.xb0_c01050{left:668.805570px;}
.x32_c01050{left:673.266781px;}
.x9_c01050{left:677.473644px;}
.x9a_c01050{left:681.923130px;}
.xd6_c01050{left:685.034635px;}
.x1f_c01050{left:687.200966px;}
.xc6_c01050{left:689.063562px;}
.xc0_c01050{left:692.491941px;}
.xdf_c01050{left:695.311970px;}
.x91_c01050{left:696.608874px;}
.x53_c01050{left:703.807007px;}
.x3c_c01050{left:706.331541px;}
.x28_c01050{left:707.392449px;}
.xa_c01050{left:711.308276px;}
.xc1_c01050{left:712.956213px;}
.x48_c01050{left:714.430629px;}
.x33_c01050{left:717.135896px;}
.xd0_c01050{left:719.594514px;}
.x7e_c01050{left:721.325355px;}
.x6f_c01050{left:723.073494px;}
.xe0_c01050{left:727.983563px;}
.xc7_c01050{left:733.792599px;}
.xb1_c01050{left:736.080727px;}
.x49_c01050{left:738.897933px;}
.xd7_c01050{left:742.505270px;}
.x70_c01050{left:745.303187px;}
.xa7_c01050{left:749.989052px;}
.x3d_c01050{left:751.429744px;}
.x14_c01050{left:754.112546px;}
.xb6_c01050{left:758.122812px;}
.x87_c01050{left:762.078950px;}
.x92_c01050{left:764.252163px;}
.x65_c01050{left:768.923099px;}
.x54_c01050{left:770.046300px;}
.x20_c01050{left:775.603074px;}
.xb_c01050{left:777.955561px;}
.xb2_c01050{left:781.086676px;}
.x4a_c01050{left:782.462789px;}
.x15_c01050{left:786.405383px;}
.xb7_c01050{left:789.999363px;}
.xe4_c01050{left:793.873715px;}
.x3e_c01050{left:795.069680px;}
.x77_c01050{left:798.877947px;}
.xc2_c01050{left:801.669101px;}
.x55_c01050{left:803.153181px;}
.x29_c01050{left:806.767860px;}
.x16_c01050{left:810.032239px;}
.xcb_c01050{left:811.404936px;}
.xe1_c01050{left:816.834812px;}
.x9b_c01050{left:818.243174px;}
.xd1_c01050{left:819.403659px;}
.x7f_c01050{left:821.762262px;}
.xa0_c01050{left:827.002239px;}
.x34_c01050{left:828.998987px;}
.x2a_c01050{left:830.154900px;}
.x78_c01050{left:833.008116px;}
@media print{
.v0_c01050{vertical-align:0.000000pt;}
.ls0_c01050{letter-spacing:0.000000pt;}
.ws0_c01050{word-spacing:0.000000pt;}
.fsc_c01050{font-size:63.977500pt;}
.fs8_c01050{font-size:63.979837pt;}
.fs4_c01050{font-size:63.982238pt;}
.fs0_c01050{font-size:64.000000pt;}
.fsb_c01050{font-size:69.308958pt;}
.fs6_c01050{font-size:69.311490pt;}
.fsa_c01050{font-size:74.640417pt;}
.fs7_c01050{font-size:74.643143pt;}
.fs9_c01050{font-size:79.974796pt;}
.fs2_c01050{font-size:79.977797pt;}
.fs3_c01050{font-size:90.641503pt;}
.fs5_c01050{font-size:95.973356pt;}
.fs1_c01050{font-size:106.637063pt;}
.y0_c01050{bottom:0.000000pt;}
.y15e_c01050{bottom:46.820728pt;}
.y15d_c01050{bottom:48.355192pt;}
.y15c_c01050{bottom:50.291332pt;}
.y15b_c01050{bottom:56.556820pt;}
.y15a_c01050{bottom:60.418924pt;}
.y159_c01050{bottom:64.750900pt;}
.y158_c01050{bottom:66.527500pt;}
.y157_c01050{bottom:67.824544pt;}
.y156_c01050{bottom:71.310172pt;}
.y155_c01050{bottom:72.550096pt;}
.y154_c01050{bottom:74.331340pt;}
.y153_c01050{bottom:76.004476pt;}
.y152_c01050{bottom:79.489336pt;}
.y151_c01050{bottom:80.787532pt;}
.y150_c01050{bottom:82.454056pt;}
.y14f_c01050{bottom:90.490300pt;}
.y14e_c01050{bottom:91.291948pt;}
.y14d_c01050{bottom:93.652480pt;}
.y14c_c01050{bottom:94.815052pt;}
.y14b_c01050{bottom:96.761668pt;}
.y14a_c01050{bottom:98.359780pt;}
.y149_c01050{bottom:101.887684pt;}
.y148_c01050{bottom:102.688612pt;}
.y147_c01050{bottom:106.256416pt;}
.y146_c01050{bottom:107.415148pt;}
.y145_c01050{bottom:108.212668pt;}
.y144_c01050{bottom:110.129020pt;}
.y143_c01050{bottom:111.348376pt;}
.y142_c01050{bottom:114.837772pt;}
.y141_c01050{bottom:122.627572pt;}
.y140_c01050{bottom:125.894716pt;}
.y13f_c01050{bottom:127.025080pt;}
.y13e_c01050{bottom:129.577096pt;}
.y13d_c01050{bottom:130.674160pt;}
.y13c_c01050{bottom:134.649424pt;}
.y13b_c01050{bottom:135.739432pt;}
.y13a_c01050{bottom:137.223184pt;}
.y139_c01050{bottom:139.732972pt;}
.y138_c01050{bottom:140.842516pt;}
.y137_c01050{bottom:142.600324pt;}
.y136_c01050{bottom:144.827080pt;}
.y135_c01050{bottom:156.866968pt;}
.y134_c01050{bottom:159.097576pt;}
.y133_c01050{bottom:160.103944pt;}
.y132_c01050{bottom:160.786432pt;}
.y131_c01050{bottom:162.685852pt;}
.y130_c01050{bottom:163.677424pt;}
.y12f_c01050{bottom:165.944536pt;}
.y12e_c01050{bottom:166.944280pt;}
.y12d_c01050{bottom:167.917072pt;}
.y12c_c01050{bottom:171.138676pt;}
.y12b_c01050{bottom:172.114588pt;}
.y12a_c01050{bottom:174.078484pt;}
.y129_c01050{bottom:175.005160pt;}
.y128_c01050{bottom:176.976832pt;}
.y127_c01050{bottom:185.721676pt;}
.y126_c01050{bottom:187.030816pt;}
.y125_c01050{bottom:189.805696pt;}
.y124_c01050{bottom:192.488740pt;}
.y123_c01050{bottom:195.234016pt;}
.y122_c01050{bottom:198.391336pt;}
.y121_c01050{bottom:202.500604pt;}
.y120_c01050{bottom:203.409196pt;}
.y11f_c01050{bottom:210.029428pt;}
.y11e_c01050{bottom:213.684496pt;}
.y11d_c01050{bottom:221.334844pt;}
.y11c_c01050{bottom:224.113756pt;}
.y11b_c01050{bottom:226.448488pt;}
.y11a_c01050{bottom:227.649568pt;}
.y119_c01050{bottom:231.597904pt;}
.y118_c01050{bottom:232.764604pt;}
.y117_c01050{bottom:236.241244pt;}
.y116_c01050{bottom:237.441988pt;}
.y115_c01050{bottom:239.055256pt;}
.y114_c01050{bottom:241.763620pt;}
.y113_c01050{bottom:242.575240pt;}
.y112_c01050{bottom:243.673120pt;}
.y111_c01050{bottom:252.308272pt;}
.y110_c01050{bottom:253.464976pt;}
.y10f_c01050{bottom:254.143984pt;}
.y10e_c01050{bottom:257.668432pt;}
.y10d_c01050{bottom:258.742192pt;}
.y10c_c01050{bottom:260.509456pt;}
.y10b_c01050{bottom:263.038144pt;}
.y10a_c01050{bottom:263.656720pt;}
.y109_c01050{bottom:266.155792pt;}
.y108_c01050{bottom:267.224032pt;}
.y107_c01050{bottom:269.315440pt;}
.y106_c01050{bottom:270.046240pt;}
.y105_c01050{bottom:272.830576pt;}
.y104_c01050{bottom:273.901888pt;}
.y103_c01050{bottom:287.388040pt;}
.y102_c01050{bottom:288.702100pt;}
.y101_c01050{bottom:290.679304pt;}
.y100_c01050{bottom:291.939472pt;}
.yff_c01050{bottom:293.913448pt;}
.yfe_c01050{bottom:294.872884pt;}
.yfd_c01050{bottom:296.819728pt;}
.yfc_c01050{bottom:297.461440pt;}
.yfb_c01050{bottom:300.365320pt;}
.yfa_c01050{bottom:302.321380pt;}
.yf9_c01050{bottom:303.280816pt;}
.yf8_c01050{bottom:304.848340pt;}
.yf7_c01050{bottom:316.795204pt;}
.yf6_c01050{bottom:319.558168pt;}
.yf5_c01050{bottom:320.195008pt;}
.yf4_c01050{bottom:322.684348pt;}
.yf3_c01050{bottom:324.081364pt;}
.yf2_c01050{bottom:325.783828pt;}
.yf1_c01050{bottom:327.854788pt;}
.yf0_c01050{bottom:328.863772pt;}
.yef_c01050{bottom:330.617524pt;}
.yee_c01050{bottom:332.688484pt;}
.yed_c01050{bottom:336.771160pt;}
.yec_c01050{bottom:337.473772pt;}
.yeb_c01050{bottom:348.827752pt;}
.yea_c01050{bottom:349.763464pt;}
.ye9_c01050{bottom:352.396492pt;}
.ye8_c01050{bottom:354.955924pt;}
.ye7_c01050{bottom:355.653784pt;}
.ye6_c01050{bottom:358.531288pt;}
.ye5_c01050{bottom:362.102044pt;}
.ye4_c01050{bottom:363.084736pt;}
.ye3_c01050{bottom:364.713460pt;}
.ye2_c01050{bottom:367.946740pt;}
.ye1_c01050{bottom:381.877648pt;}
.ye0_c01050{bottom:383.319280pt;}
.ydf_c01050{bottom:385.474240pt;}
.yde_c01050{bottom:386.532304pt;}
.ydd_c01050{bottom:388.270000pt;}
.ydc_c01050{bottom:390.725296pt;}
.ydb_c01050{bottom:391.819984pt;}
.yda_c01050{bottom:393.560800pt;}
.yd9_c01050{bottom:395.697856pt;}
.yd8_c01050{bottom:397.840432pt;}
.yd7_c01050{bottom:398.896000pt;}
.yd6_c01050{bottom:425.321136pt;}
.yd5_c01050{bottom:427.514200pt;}
.yd4_c01050{bottom:428.355629pt;}
.yd3_c01050{bottom:429.738097pt;}
.yd2_c01050{bottom:430.561076pt;}
.yd1_c01050{bottom:431.378776pt;}
.yd0_c01050{bottom:445.048796pt;}
.ycf_c01050{bottom:446.070736pt;}
.yce_c01050{bottom:450.090071pt;}
.ycd_c01050{bottom:452.458712pt;}
.ycc_c01050{bottom:453.430776pt;}
.ycb_c01050{bottom:455.117779pt;}
.yca_c01050{bottom:458.460753pt;}
.yc9_c01050{bottom:461.122533pt;}
.yc8_c01050{bottom:462.469235pt;}
.yc7_c01050{bottom:463.774348pt;}
.yc6_c01050{bottom:473.755616pt;}
.yc5_c01050{bottom:476.189673pt;}
.yc4_c01050{bottom:477.644415pt;}
.yc3_c01050{bottom:478.698717pt;}
.yc2_c01050{bottom:482.598863pt;}
.yc1_c01050{bottom:483.644927pt;}
.yc0_c01050{bottom:486.157128pt;}
.ybf_c01050{bottom:488.233519pt;}
.ybe_c01050{bottom:491.376940pt;}
.ybd_c01050{bottom:494.616167pt;}
.ybc_c01050{bottom:495.684727pt;}
.ybb_c01050{bottom:506.592031pt;}
.yba_c01050{bottom:508.419732pt;}
.yb9_c01050{bottom:511.079933pt;}
.yb8_c01050{bottom:512.794612pt;}
.yb7_c01050{bottom:515.388115pt;}
.yb6_c01050{bottom:516.475323pt;}
.yb5_c01050{bottom:518.616883pt;}
.yb4_c01050{bottom:520.826177pt;}
.yb3_c01050{bottom:521.897648pt;}
.yb2_c01050{bottom:523.351353pt;}
.yb1_c01050{bottom:524.792873pt;}
.yb0_c01050{bottom:526.941685pt;}
.yaf_c01050{bottom:528.031557pt;}
.yae_c01050{bottom:528.803229pt;}
.yad_c01050{bottom:540.420045pt;}
.yac_c01050{bottom:542.586963pt;}
.yab_c01050{bottom:544.378749pt;}
.yaa_c01050{bottom:547.935781pt;}
.ya9_c01050{bottom:550.019424pt;}
.ya8_c01050{bottom:551.093065pt;}
.ya7_c01050{bottom:552.822199pt;}
.ya6_c01050{bottom:553.597028pt;}
.ya5_c01050{bottom:555.701588pt;}
.ya4_c01050{bottom:557.092985pt;}
.ya3_c01050{bottom:558.850831pt;}
.ya2_c01050{bottom:560.224468pt;}
.ya1_c01050{bottom:572.858241pt;}
.ya0_c01050{bottom:575.077107pt;}
.y9f_c01050{bottom:576.044139pt;}
.y9e_c01050{bottom:578.034196pt;}
.y9d_c01050{bottom:579.036156pt;}
.y9c_c01050{bottom:581.899759pt;}
.y9b_c01050{bottom:585.438093pt;}
.y9a_c01050{bottom:586.436896pt;}
.y99_c01050{bottom:589.026896pt;}
.y98_c01050{bottom:589.967485pt;}
.y97_c01050{bottom:590.936244pt;}
.y96_c01050{bottom:601.385981pt;}
.y95_c01050{bottom:603.497645pt;}
.y94_c01050{bottom:604.513813pt;}
.y93_c01050{bottom:605.570829pt;}
.y92_c01050{bottom:607.610368pt;}
.y91_c01050{bottom:608.660033pt;}
.y90_c01050{bottom:611.058916pt;}
.y8f_c01050{bottom:612.122839pt;}
.y8e_c01050{bottom:613.144137pt;}
.y8d_c01050{bottom:617.586160pt;}
.y8c_c01050{bottom:618.322016pt;}
.y8b_c01050{bottom:621.029775pt;}
.y8a_c01050{bottom:622.365820pt;}
.y89_c01050{bottom:633.778544pt;}
.y88_c01050{bottom:634.750115pt;}
.y87_c01050{bottom:639.177732pt;}
.y86_c01050{bottom:641.670348pt;}
.y85_c01050{bottom:642.946601pt;}
.y84_c01050{bottom:646.359481pt;}
.y83_c01050{bottom:647.055920pt;}
.y82_c01050{bottom:650.124947pt;}
.y81_c01050{bottom:651.409587pt;}
.y80_c01050{bottom:653.313656pt;}
.y7f_c01050{bottom:667.908183pt;}
.y7e_c01050{bottom:668.581336pt;}
.y7d_c01050{bottom:671.297777pt;}
.y7c_c01050{bottom:672.631701pt;}
.y7b_c01050{bottom:674.931325pt;}
.y7a_c01050{bottom:675.944089pt;}
.y79_c01050{bottom:677.969568pt;}
.y78_c01050{bottom:680.942839pt;}
.y77_c01050{bottom:681.971685pt;}
.y76_c01050{bottom:682.653916pt;}
.y75_c01050{bottom:684.959608pt;}
.y74_c01050{bottom:685.946867pt;}
.y73_c01050{bottom:698.943684pt;}
.y72_c01050{bottom:703.049993pt;}
.y71_c01050{bottom:703.751711pt;}
.y70_c01050{bottom:705.212964pt;}
.y6f_c01050{bottom:706.252861pt;}
.y6e_c01050{bottom:707.696996pt;}
.y6d_c01050{bottom:708.801964pt;}
.y6c_c01050{bottom:710.988565pt;}
.y6b_c01050{bottom:714.569031pt;}
.y6a_c01050{bottom:715.697333pt;}
.y69_c01050{bottom:735.766139pt;}
.y68_c01050{bottom:737.914908pt;}
.y67_c01050{bottom:740.335184pt;}
.y66_c01050{bottom:742.137129pt;}
.y65_c01050{bottom:743.364027pt;}
.y64_c01050{bottom:744.287672pt;}
.y63_c01050{bottom:746.082604pt;}
.y62_c01050{bottom:747.340725pt;}
.y61_c01050{bottom:748.189777pt;}
.y60_c01050{bottom:749.127580pt;}
.y5f_c01050{bottom:761.792949pt;}
.y5e_c01050{bottom:762.794960pt;}
.y5d_c01050{bottom:764.798511pt;}
.y5c_c01050{bottom:766.801215pt;}
.y5b_c01050{bottom:769.504895pt;}
.y5a_c01050{bottom:770.811624pt;}
.y59_c01050{bottom:771.534813pt;}
.y58_c01050{bottom:774.143459pt;}
.y57_c01050{bottom:776.873239pt;}
.y56_c01050{bottom:778.478520pt;}
.y55_c01050{bottom:779.186133pt;}
.y54_c01050{bottom:781.523507pt;}
.y53_c01050{bottom:794.530789pt;}
.y52_c01050{bottom:795.887735pt;}
.y51_c01050{bottom:796.649651pt;}
.y50_c01050{bottom:800.083245pt;}
.y4f_c01050{bottom:802.473836pt;}
.y4e_c01050{bottom:803.490269pt;}
.y4d_c01050{bottom:805.558103pt;}
.y4c_c01050{bottom:808.290371pt;}
.y4b_c01050{bottom:810.011916pt;}
.y4a_c01050{bottom:810.739712pt;}
.y49_c01050{bottom:812.784775pt;}
.y48_c01050{bottom:814.150319pt;}
.y47_c01050{bottom:825.701265pt;}
.y46_c01050{bottom:827.022065pt;}
.y45_c01050{bottom:828.386836pt;}
.y44_c01050{bottom:830.452937pt;}
.y43_c01050{bottom:832.089284pt;}
.y42_c01050{bottom:835.095757pt;}
.y41_c01050{bottom:836.435224pt;}
.y40_c01050{bottom:837.436931pt;}
.y3f_c01050{bottom:838.759540pt;}
.y3e_c01050{bottom:839.791096pt;}
.y3d_c01050{bottom:841.785187pt;}
.y3c_c01050{bottom:845.106852pt;}
.y3b_c01050{bottom:858.997397pt;}
.y3a_c01050{bottom:861.585801pt;}
.y39_c01050{bottom:862.600877pt;}
.y38_c01050{bottom:863.638752pt;}
.y37_c01050{bottom:865.182196pt;}
.y36_c01050{bottom:866.702740pt;}
.y35_c01050{bottom:867.458405pt;}
.y34_c01050{bottom:869.995697pt;}
.y33_c01050{bottom:871.050899pt;}
.y32_c01050{bottom:871.793399pt;}
.y31_c01050{bottom:874.609013pt;}
.y30_c01050{bottom:886.956113pt;}
.y2f_c01050{bottom:887.642820pt;}
.y2e_c01050{bottom:890.561331pt;}
.y2d_c01050{bottom:892.850032pt;}
.y2c_c01050{bottom:894.789872pt;}
.y2b_c01050{bottom:895.748204pt;}
.y2a_c01050{bottom:898.377436pt;}
.y29_c01050{bottom:899.332185pt;}
.y28_c01050{bottom:901.238695pt;}
.y27_c01050{bottom:902.210287pt;}
.y26_c01050{bottom:904.502991pt;}
.y25_c01050{bottom:906.768733pt;}
.y24_c01050{bottom:919.790892pt;}
.y23_c01050{bottom:920.842864pt;}
.y22_c01050{bottom:923.595775pt;}
.y21_c01050{bottom:924.336020pt;}
.y20_c01050{bottom:927.742320pt;}
.y1f_c01050{bottom:929.140869pt;}
.y1e_c01050{bottom:932.214663pt;}
.y1d_c01050{bottom:934.319504pt;}
.y1c_c01050{bottom:936.336425pt;}
.y1b_c01050{bottom:937.369919pt;}
.y1a_c01050{bottom:938.377080pt;}
.y19_c01050{bottom:940.112407pt;}
.y18_c01050{bottom:950.986032pt;}
.y17_c01050{bottom:951.679513pt;}
.y16_c01050{bottom:952.627321pt;}
.y15_c01050{bottom:956.219836pt;}
.y14_c01050{bottom:956.892183pt;}
.y13_c01050{bottom:959.432540pt;}
.y12_c01050{bottom:960.794481pt;}
.y11_c01050{bottom:962.729204pt;}
.y10_c01050{bottom:963.376855pt;}
.yf_c01050{bottom:965.623931pt;}
.ye_c01050{bottom:966.898604pt;}
.yd_c01050{bottom:968.806264pt;}
.yc_c01050{bottom:970.102897pt;}
.yb_c01050{bottom:983.847411pt;}
.ya_c01050{bottom:986.100861pt;}
.y9_c01050{bottom:987.244864pt;}
.y8_c01050{bottom:990.590536pt;}
.y7_c01050{bottom:991.377997pt;}
.y6_c01050{bottom:994.716373pt;}
.y5_c01050{bottom:996.200147pt;}
.y4_c01050{bottom:997.335384pt;}
.y3_c01050{bottom:999.616853pt;}
.y2_c01050{bottom:1001.072000pt;}
.y1_c01050{bottom:1063.182667pt;}
.hf_c01050{height:63.977500pt;}
.hb_c01050{height:63.979837pt;}
.h6_c01050{height:63.982238pt;}
.h2_c01050{height:64.000000pt;}
.he_c01050{height:69.308958pt;}
.h9_c01050{height:69.311490pt;}
.hd_c01050{height:74.640417pt;}
.ha_c01050{height:74.643143pt;}
.hc_c01050{height:79.974796pt;}
.h4_c01050{height:79.977797pt;}
.h5_c01050{height:90.641503pt;}
.h7_c01050{height:95.973356pt;}
.h8_c01050{height:96.453223pt;}
.h3_c01050{height:106.637063pt;}
.h0_c01050{height:1107.840000pt;}
.h1_c01050{height:1108.000000pt;}
.w1_c01050{width:788.666667pt;}
.w0_c01050{width:788.880000pt;}
.x0_c01050{left:0.000000pt;}
.xe5_c01050{left:115.181644pt;}
.xa1_c01050{left:116.518537pt;}
.xda_c01050{left:117.941104pt;}
.xd2_c01050{left:118.923976pt;}
.xce_c01050{left:120.901636pt;}
.xb8_c01050{left:122.405632pt;}
.xb3_c01050{left:123.518428pt;}
.xa8_c01050{left:125.510475pt;}
.x9c_c01050{left:126.641047pt;}
.x93_c01050{left:127.624901pt;}
.x88_c01050{left:129.778351pt;}
.x71_c01050{left:130.677155pt;}
.x79_c01050{left:131.623713pt;}
.x66_c01050{left:132.591387pt;}
.x4b_c01050{left:134.259360pt;}
.x3f_c01050{left:135.584457pt;}
.x2b_c01050{left:137.238567pt;}
.x21_c01050{left:138.253767pt;}
.x17_c01050{left:139.459400pt;}
.xc_c01050{left:141.323168pt;}
.xb9_c01050{left:142.458280pt;}
.x94_c01050{left:148.460045pt;}
.xcc_c01050{left:149.488264pt;}
.xc8_c01050{left:151.754896pt;}
.xa2_c01050{left:154.853744pt;}
.x9d_c01050{left:156.284460pt;}
.x80_c01050{left:159.525216pt;}
.x67_c01050{left:161.588237pt;}
.x56_c01050{left:164.564135pt;}
.x89_c01050{left:167.910945pt;}
.x7a_c01050{left:169.749697pt;}
.xc3_c01050{left:171.189652pt;}
.x40_c01050{left:174.569896pt;}
.xe6_c01050{left:175.608520pt;}
.x95_c01050{left:177.886589pt;}
.xd_c01050{left:180.566008pt;}
.xa9_c01050{left:184.034065pt;}
.xe2_c01050{left:184.947580pt;}
.x81_c01050{left:187.982261pt;}
.x18_c01050{left:188.972800pt;}
.x72_c01050{left:190.118000pt;}
.x57_c01050{left:191.900024pt;}
.xa3_c01050{left:194.419867pt;}
.xc4_c01050{left:200.219716pt;}
.x4c_c01050{left:202.931733pt;}
.xdb_c01050{left:205.111972pt;}
.x22_c01050{left:206.831488pt;}
.x8a_c01050{left:216.705263pt;}
.x19_c01050{left:217.729977pt;}
.xac_c01050{left:222.040000pt;}
.x4d_c01050{left:223.708747pt;}
.xd8_c01050{left:225.725968pt;}
.x68_c01050{left:229.315948pt;}
.x73_c01050{left:230.205280pt;}
.x5e_c01050{left:231.138667pt;}
.x41_c01050{left:232.927457pt;}
.x35_c01050{left:234.199073pt;}
.x96_c01050{left:235.904513pt;}
.xcd_c01050{left:237.396916pt;}
.x2_c01050{left:238.690667pt;}
.x2c_c01050{left:245.380997pt;}
.x1a_c01050{left:247.214477pt;}
.x69_c01050{left:249.356776pt;}
.xad_c01050{left:251.332012pt;}
.x42_c01050{left:253.709039pt;}
.x8b_c01050{left:255.317377pt;}
.xba_c01050{left:258.972496pt;}
.x5f_c01050{left:261.602839pt;}
.xaa_c01050{left:263.346427pt;}
.x82_c01050{left:266.375395pt;}
.x7b_c01050{left:268.057267pt;}
.x4e_c01050{left:270.855371pt;}
.xa4_c01050{left:272.626273pt;}
.x2d_c01050{left:273.913471pt;}
.x97_c01050{left:274.825553pt;}
.x3_c01050{left:276.945707pt;}
.x6a_c01050{left:279.584543pt;}
.xdc_c01050{left:283.430284pt;}
.x58_c01050{left:290.258404pt;}
.x36_c01050{left:292.794679pt;}
.xd3_c01050{left:295.626172pt;}
.x83_c01050{left:296.620280pt;}
.xb4_c01050{left:300.439120pt;}
.x43_c01050{left:302.860135pt;}
.x1b_c01050{left:304.762081pt;}
.xc9_c01050{left:307.336492pt;}
.xae_c01050{left:310.788496pt;}
.x2e_c01050{left:314.454068pt;}
.xbb_c01050{left:318.070120pt;}
.x59_c01050{left:320.011200pt;}
.x37_c01050{left:323.104953pt;}
.x74_c01050{left:325.997787pt;}
.xdd_c01050{left:332.275660pt;}
.x9e_c01050{left:333.369716pt;}
.x8c_c01050{left:335.221689pt;}
.x4_c01050{left:336.924335pt;}
.xab_c01050{left:341.574195pt;}
.x98_c01050{left:343.005305pt;}
.xe_c01050{left:344.939429pt;}
.x75_c01050{left:347.754724pt;}
.x4f_c01050{left:351.071297pt;}
.x60_c01050{left:358.275403pt;}
.x5a_c01050{left:359.524812pt;}
.x38_c01050{left:361.978641pt;}
.x23_c01050{left:363.319231pt;}
.xf_c01050{left:364.560875pt;}
.x5_c01050{left:366.769127pt;}
.xbc_c01050{left:368.143156pt;}
.xa5_c01050{left:370.845536pt;}
.x44_c01050{left:380.826965pt;}
.x8d_c01050{left:383.204769pt;}
.x9f_c01050{left:390.980837pt;}
.x24_c01050{left:392.206459pt;}
.xd4_c01050{left:393.131092pt;}
.x7c_c01050{left:394.834412pt;}
.xbd_c01050{left:396.956704pt;}
.x1_c01050{left:403.200000pt;}
.x6_c01050{left:405.776747pt;}
.xb5_c01050{left:408.521272pt;}
.x2f_c01050{left:411.912991pt;}
.x8e_c01050{left:412.985379pt;}
.x5b_c01050{left:417.592821pt;}
.xa6_c01050{left:420.428101pt;}
.xde_c01050{left:421.400284pt;}
.x10_c01050{left:423.138729pt;}
.x6b_c01050{left:426.435175pt;}
.x50_c01050{left:427.716907pt;}
.x39_c01050{left:430.750915pt;}
.x45_c01050{left:439.853292pt;}
.x30_c01050{left:440.931847pt;}
.x61_c01050{left:447.147775pt;}
.x51_c01050{left:448.973541pt;}
.x1c_c01050{left:452.548319pt;}
.x76_c01050{left:454.271804pt;}
.x6c_c01050{left:456.192696pt;}
.x99_c01050{left:460.478381pt;}
.x11_c01050{left:464.343960pt;}
.x46_c01050{left:468.854225pt;}
.x8f_c01050{left:470.792304pt;}
.x25_c01050{left:471.777921pt;}
.xe3_c01050{left:479.240092pt;}
.x62_c01050{left:486.139411pt;}
.x52_c01050{left:487.359616pt;}
.x84_c01050{left:490.396335pt;}
.x1d_c01050{left:492.471587pt;}
.x7_c01050{left:493.540895pt;}
.x5c_c01050{left:495.563516pt;}
.x31_c01050{left:499.352045pt;}
.x26_c01050{left:500.794404pt;}
.xbe_c01050{left:504.630100pt;}
.x8_c01050{left:514.242839pt;}
.xaf_c01050{left:516.911500pt;}
.x3a_c01050{left:519.082601pt;}
.x85_c01050{left:520.726468pt;}
.xcf_c01050{left:521.721412pt;}
.x7d_c01050{left:522.855793pt;}
.x6d_c01050{left:523.756571pt;}
.xd9_c01050{left:529.939876pt;}
.x47_c01050{left:537.067037pt;}
.x12_c01050{left:541.228272pt;}
.xca_c01050{left:542.707552pt;}
.xbf_c01050{left:544.507624pt;}
.xd5_c01050{left:551.436352pt;}
.xc5_c01050{left:552.637048pt;}
.x63_c01050{left:553.670479pt;}
.x27_c01050{left:559.506791pt;}
.x13_c01050{left:561.569099pt;}
.x6e_c01050{left:562.941692pt;}
.x5d_c01050{left:564.783304pt;}
.x3b_c01050{left:567.151121pt;}
.x90_c01050{left:569.497155pt;}
.x64_c01050{left:572.616847pt;}
.x86_c01050{left:580.976429pt;}
.x1e_c01050{left:589.701367pt;}
.xb0_c01050{left:594.493840pt;}
.x32_c01050{left:598.459361pt;}
.x9_c01050{left:602.198795pt;}
.x9a_c01050{left:606.153893pt;}
.xd6_c01050{left:608.919676pt;}
.x1f_c01050{left:610.845303pt;}
.xc6_c01050{left:612.500944pt;}
.xc0_c01050{left:615.548392pt;}
.xdf_c01050{left:618.055084pt;}
.x91_c01050{left:619.207888pt;}
.x53_c01050{left:625.606228pt;}
.x3c_c01050{left:627.850259pt;}
.x28_c01050{left:628.793288pt;}
.xa_c01050{left:632.274023pt;}
.xc1_c01050{left:633.738856pt;}
.x48_c01050{left:635.049448pt;}
.x33_c01050{left:637.454129pt;}
.xd0_c01050{left:639.639568pt;}
.x7e_c01050{left:641.178093pt;}
.x6f_c01050{left:642.731995pt;}
.xe0_c01050{left:647.096500pt;}
.xc7_c01050{left:652.260088pt;}
.xb1_c01050{left:654.293980pt;}
.x49_c01050{left:656.798163pt;}
.xd7_c01050{left:660.004684pt;}
.x70_c01050{left:662.491721pt;}
.xa7_c01050{left:666.656935pt;}
.x3d_c01050{left:667.937551pt;}
.x14_c01050{left:670.322263pt;}
.xb6_c01050{left:673.886944pt;}
.x87_c01050{left:677.403511pt;}
.x92_c01050{left:679.335256pt;}
.x65_c01050{left:683.487199pt;}
.x54_c01050{left:684.485600pt;}
.x20_c01050{left:689.424955pt;}
.xb_c01050{left:691.516055pt;}
.xb2_c01050{left:694.299268pt;}
.x4a_c01050{left:695.522479pt;}
.x15_c01050{left:699.027007pt;}
.xb7_c01050{left:702.221656pt;}
.xe4_c01050{left:705.665524pt;}
.x3e_c01050{left:706.728604pt;}
.x77_c01050{left:710.113731pt;}
.xc2_c01050{left:712.594756pt;}
.x55_c01050{left:713.913939pt;}
.x29_c01050{left:717.126987pt;}
.x16_c01050{left:720.028657pt;}
.xcb_c01050{left:721.248832pt;}
.xe1_c01050{left:726.075388pt;}
.x9b_c01050{left:727.327265pt;}
.xd1_c01050{left:728.358808pt;}
.x7f_c01050{left:730.455344pt;}
.xa0_c01050{left:735.113101pt;}
.x34_c01050{left:736.887988pt;}
.x2a_c01050{left:737.915467pt;}
.x78_c01050{left:740.451659pt;}
}





/* 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_c01051 {
    display:none;
  }
  .loading-indicator_c01051.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01051 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_c01051 { 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_c01051" -> "#page-container .classname_c01051")
 */
.pf_c01051 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01051 { /* 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_c01051.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01051 { /* 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_c01051 { /* 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_c01051 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01051 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01051 {overflow:visible;}
  }
}
.c_c01051 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01051 { /* 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_c01051:after { /* webkit #35443 */
  content: '';
}
.t_c01051:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01051 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 */
}
.__c01051 { /* 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_c01051 { /* info for Javascript */
  display:none;
}
.l_c01051 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01051 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01051 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01051: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_c01051 {
    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_c01051.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01051.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_c01051 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01051{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01051;src:url('chunks/assets/font_f0a3d74d16b34518ba33e2f8.woff2')format("woff");}.ff1_c01051{font-family:ff1_c01051;line-height:1.000000;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;}
.m0_c01051{transform:matrix(0.080775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080775,0.000000,0.000000,0.250000,0,0);}
.m1_c01051{transform:matrix(0.129035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129035,0.000000,0.000000,0.250000,0,0);}
.m4_c01051{transform:matrix(0.179323,-0.001614,0.002250,0.249990,0,0);-ms-transform:matrix(0.179323,-0.001614,0.002250,0.249990,0,0);-webkit-transform:matrix(0.179323,-0.001614,0.002250,0.249990,0,0);}
.m2_c01051{transform:matrix(0.181143,-0.001630,0.002250,0.249990,0,0);-ms-transform:matrix(0.181143,-0.001630,0.002250,0.249990,0,0);-webkit-transform:matrix(0.181143,-0.001630,0.002250,0.249990,0,0);}
.m3_c01051{transform:matrix(0.206707,-0.001860,0.002250,0.249990,0,0);-ms-transform:matrix(0.206707,-0.001860,0.002250,0.249990,0,0);-webkit-transform:matrix(0.206707,-0.001860,0.002250,0.249990,0,0);}
.m5_c01051{transform:matrix(0.212961,-0.001917,0.002250,0.249990,0,0);-ms-transform:matrix(0.212961,-0.001917,0.002250,0.249990,0,0);-webkit-transform:matrix(0.212961,-0.001917,0.002250,0.249990,0,0);}
.m6_c01051{transform:matrix(0.217776,-0.001960,0.002250,0.249990,0,0);-ms-transform:matrix(0.217776,-0.001960,0.002250,0.249990,0,0);-webkit-transform:matrix(0.217776,-0.001960,0.002250,0.249990,0,0);}
.m7_c01051{transform:matrix(0.374420,-0.003370,0.002250,0.249990,0,0);-ms-transform:matrix(0.374420,-0.003370,0.002250,0.249990,0,0);-webkit-transform:matrix(0.374420,-0.003370,0.002250,0.249990,0,0);}
.v0_c01051{vertical-align:0.000000px;}
.ls0_c01051{letter-spacing:0.000000px;}
.sc__c01051{text-shadow:none;}
.sc0_c01051{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__c01051{-webkit-text-stroke:0px transparent;}
.sc0_c01051{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01051{word-spacing:0.000000px;}
.fc0_c01051{color:transparent;}
.fs0_c01051{font-size:18.000000px;}
.fs1_c01051{font-size:114.004617px;}
.y0_c01051{bottom:0.000000px;}
.y2_c01051{bottom:332.101500px;}
.y3_c01051{bottom:332.257668px;}
.y4_c01051{bottom:332.899026px;}
.y5_c01051{bottom:333.309871px;}
.y6_c01051{bottom:333.900362px;}
.y7_c01051{bottom:335.897714px;}
.y1_c01051{bottom:355.860000px;}
.h2_c01051{height:18.000000px;}
.h3_c01051{height:114.004617px;}
.h0_c01051{height:1246.320000px;}
.h1_c01051{height:1246.500000px;}
.w1_c01051{width:887.250000px;}
.w0_c01051{width:887.490000px;}
.x0_c01051{left:0.000000px;}
.x3_c01051{left:183.198000px;}
.x4_c01051{left:200.550000px;}
.x5_c01051{left:271.812000px;}
.x6_c01051{left:317.461500px;}
.x7_c01051{left:383.071500px;}
.x8_c01051{left:604.999500px;}
.x1_c01051{left:611.010000px;}
.x2_c01051{left:627.210000px;}
@media print{
.v0_c01051{vertical-align:0.000000pt;}
.ls0_c01051{letter-spacing:0.000000pt;}
.ws0_c01051{word-spacing:0.000000pt;}
.fs0_c01051{font-size:16.000000pt;}
.fs1_c01051{font-size:101.337437pt;}
.y0_c01051{bottom:0.000000pt;}
.y2_c01051{bottom:295.201333pt;}
.y3_c01051{bottom:295.340149pt;}
.y4_c01051{bottom:295.910245pt;}
.y5_c01051{bottom:296.275441pt;}
.y6_c01051{bottom:296.800321pt;}
.y7_c01051{bottom:298.575745pt;}
.y1_c01051{bottom:316.320000pt;}
.h2_c01051{height:16.000000pt;}
.h3_c01051{height:101.337437pt;}
.h0_c01051{height:1107.840000pt;}
.h1_c01051{height:1108.000000pt;}
.w1_c01051{width:788.666667pt;}
.w0_c01051{width:788.880000pt;}
.x0_c01051{left:0.000000pt;}
.x3_c01051{left:162.842667pt;}
.x4_c01051{left:178.266667pt;}
.x5_c01051{left:241.610667pt;}
.x6_c01051{left:282.188000pt;}
.x7_c01051{left:340.508000pt;}
.x8_c01051{left:537.777333pt;}
.x1_c01051{left:543.120000pt;}
.x2_c01051{left:557.520000pt;}
}





/* 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_c01052 {
    display:none;
  }
  .loading-indicator_c01052.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01052 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_c01052 { 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_c01052" -> "#page-container .classname_c01052")
 */
.pf_c01052 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01052 { /* 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_c01052.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01052 { /* 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_c01052 { /* 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_c01052 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01052 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01052 {overflow:visible;}
  }
}
.c_c01052 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01052 { /* 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_c01052:after { /* webkit #35443 */
  content: '';
}
.t_c01052:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01052 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 */
}
.__c01052 { /* 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_c01052 { /* info for Javascript */
  display:none;
}
.l_c01052 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01052 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01052 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01052: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_c01052 {
    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_c01052.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01052.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_c01052 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01052{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01052;src:url('chunks/assets/font_cfe63ee56e9e10a97d33a3db.woff2')format("woff");}.ff1_c01052{font-family:ff1_c01052;line-height:1.000000;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;}
.mcd_c01052{transform:matrix(0.155025,0.002790,-0.004499,0.249960,0,0);-ms-transform:matrix(0.155025,0.002790,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.155025,0.002790,-0.004499,0.249960,0,0);}
.m121_c01052{transform:matrix(0.159060,0.003977,-0.006248,0.249922,0,0);-ms-transform:matrix(0.159060,0.003977,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.159060,0.003977,-0.006248,0.249922,0,0);}
.m6_c01052{transform:matrix(0.160994,0.002576,-0.003999,0.249968,0,0);-ms-transform:matrix(0.160994,0.002576,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.160994,0.002576,-0.003999,0.249968,0,0);}
.m12a_c01052{transform:matrix(0.163459,0.004086,-0.006248,0.249922,0,0);-ms-transform:matrix(0.163459,0.004086,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.163459,0.004086,-0.006248,0.249922,0,0);}
.m9f_c01052{transform:matrix(0.164927,0.003299,-0.004999,0.249950,0,0);-ms-transform:matrix(0.164927,0.003299,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.164927,0.003299,-0.004999,0.249950,0,0);}
.m4_c01052{transform:matrix(0.165944,0.002655,-0.003999,0.249968,0,0);-ms-transform:matrix(0.165944,0.002655,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.165944,0.002655,-0.003999,0.249968,0,0);}
.m1e_c01052{transform:matrix(0.167189,0.002675,-0.003999,0.249968,0,0);-ms-transform:matrix(0.167189,0.002675,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.167189,0.002675,-0.003999,0.249968,0,0);}
.m12c_c01052{transform:matrix(0.170432,0.004261,-0.006248,0.249922,0,0);-ms-transform:matrix(0.170432,0.004261,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.170432,0.004261,-0.006248,0.249922,0,0);}
.m123_c01052{transform:matrix(0.171836,0.004296,-0.006248,0.249922,0,0);-ms-transform:matrix(0.171836,0.004296,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.171836,0.004296,-0.006248,0.249922,0,0);}
.m128_c01052{transform:matrix(0.175655,0.004391,-0.006248,0.249922,0,0);-ms-transform:matrix(0.175655,0.004391,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.175655,0.004391,-0.006248,0.249922,0,0);}
.m5_c01052{transform:matrix(0.177097,0.002834,-0.003999,0.249968,0,0);-ms-transform:matrix(0.177097,0.002834,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.177097,0.002834,-0.003999,0.249968,0,0);}
.ma4_c01052{transform:matrix(0.177759,0.003555,-0.004999,0.249950,0,0);-ms-transform:matrix(0.177759,0.003555,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.177759,0.003555,-0.004999,0.249950,0,0);}
.m1_c01052{transform:matrix(0.178642,0.002858,-0.003999,0.249968,0,0);-ms-transform:matrix(0.178642,0.002858,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.178642,0.002858,-0.003999,0.249968,0,0);}
.m9d_c01052{transform:matrix(0.180044,0.003601,-0.004999,0.249950,0,0);-ms-transform:matrix(0.180044,0.003601,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.180044,0.003601,-0.004999,0.249950,0,0);}
.m129_c01052{transform:matrix(0.180739,0.004518,-0.006248,0.249922,0,0);-ms-transform:matrix(0.180739,0.004518,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.180739,0.004518,-0.006248,0.249922,0,0);}
.md0_c01052{transform:matrix(0.180826,0.003255,-0.004499,0.249960,0,0);-ms-transform:matrix(0.180826,0.003255,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.180826,0.003255,-0.004499,0.249960,0,0);}
.m127_c01052{transform:matrix(0.182668,0.004567,-0.006248,0.249922,0,0);-ms-transform:matrix(0.182668,0.004567,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.182668,0.004567,-0.006248,0.249922,0,0);}
.mc7_c01052{transform:matrix(0.182785,0.003290,-0.004499,0.249960,0,0);-ms-transform:matrix(0.182785,0.003290,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.182785,0.003290,-0.004499,0.249960,0,0);}
.m9e_c01052{transform:matrix(0.183238,0.003665,-0.004999,0.249950,0,0);-ms-transform:matrix(0.183238,0.003665,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.183238,0.003665,-0.004999,0.249950,0,0);}
.me9_c01052{transform:matrix(0.184420,0.003320,-0.004499,0.249960,0,0);-ms-transform:matrix(0.184420,0.003320,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.184420,0.003320,-0.004499,0.249960,0,0);}
.m122_c01052{transform:matrix(0.184632,0.004616,-0.006248,0.249922,0,0);-ms-transform:matrix(0.184632,0.004616,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.184632,0.004616,-0.006248,0.249922,0,0);}
.m12b_c01052{transform:matrix(0.187077,0.004677,-0.006248,0.249922,0,0);-ms-transform:matrix(0.187077,0.004677,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.187077,0.004677,-0.006248,0.249922,0,0);}
.m126_c01052{transform:matrix(0.187411,0.004685,-0.006248,0.249922,0,0);-ms-transform:matrix(0.187411,0.004685,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.187411,0.004685,-0.006248,0.249922,0,0);}
.mad_c01052{transform:matrix(0.188065,0.003385,-0.004499,0.249960,0,0);-ms-transform:matrix(0.188065,0.003385,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.188065,0.003385,-0.004499,0.249960,0,0);}
.m8_c01052{transform:matrix(0.189476,0.003032,-0.003999,0.249968,0,0);-ms-transform:matrix(0.189476,0.003032,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.189476,0.003032,-0.003999,0.249968,0,0);}
.m3_c01052{transform:matrix(0.190666,0.003051,-0.003999,0.249968,0,0);-ms-transform:matrix(0.190666,0.003051,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.190666,0.003051,-0.003999,0.249968,0,0);}
.m1c_c01052{transform:matrix(0.192715,0.003083,-0.003999,0.249968,0,0);-ms-transform:matrix(0.192715,0.003083,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.192715,0.003083,-0.003999,0.249968,0,0);}
.m75_c01052{transform:matrix(0.192721,0.003854,-0.004999,0.249950,0,0);-ms-transform:matrix(0.192721,0.003854,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.192721,0.003854,-0.004999,0.249950,0,0);}
.mab_c01052{transform:matrix(0.193174,0.003477,-0.004499,0.249960,0,0);-ms-transform:matrix(0.193174,0.003477,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.193174,0.003477,-0.004499,0.249960,0,0);}
.ma2_c01052{transform:matrix(0.193706,0.003874,-0.004999,0.249950,0,0);-ms-transform:matrix(0.193706,0.003874,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.193706,0.003874,-0.004999,0.249950,0,0);}
.m125_c01052{transform:matrix(0.193884,0.004847,-0.006248,0.249922,0,0);-ms-transform:matrix(0.193884,0.004847,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.193884,0.004847,-0.006248,0.249922,0,0);}
.m7_c01052{transform:matrix(0.195030,0.003120,-0.003999,0.249968,0,0);-ms-transform:matrix(0.195030,0.003120,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.195030,0.003120,-0.003999,0.249968,0,0);}
.mca_c01052{transform:matrix(0.196743,0.003541,-0.004499,0.249960,0,0);-ms-transform:matrix(0.196743,0.003541,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.196743,0.003541,-0.004499,0.249960,0,0);}
.mc9_c01052{transform:matrix(0.197538,0.003556,-0.004499,0.249960,0,0);-ms-transform:matrix(0.197538,0.003556,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.197538,0.003556,-0.004499,0.249960,0,0);}
.m5a_c01052{transform:matrix(0.198015,0.003168,-0.003999,0.249968,0,0);-ms-transform:matrix(0.198015,0.003168,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.198015,0.003168,-0.003999,0.249968,0,0);}
.ma8_c01052{transform:matrix(0.198263,0.003569,-0.004499,0.249960,0,0);-ms-transform:matrix(0.198263,0.003569,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.198263,0.003569,-0.004499,0.249960,0,0);}
.m6c_c01052{transform:matrix(0.198330,0.003967,-0.004999,0.249950,0,0);-ms-transform:matrix(0.198330,0.003967,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.198330,0.003967,-0.004999,0.249950,0,0);}
.m10b_c01052{transform:matrix(0.199038,0.004976,-0.006248,0.249922,0,0);-ms-transform:matrix(0.199038,0.004976,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.199038,0.004976,-0.006248,0.249922,0,0);}
.mc8_c01052{transform:matrix(0.199108,0.003584,-0.004499,0.249960,0,0);-ms-transform:matrix(0.199108,0.003584,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.199108,0.003584,-0.004499,0.249960,0,0);}
.ma0_c01052{transform:matrix(0.199320,0.003986,-0.004999,0.249950,0,0);-ms-transform:matrix(0.199320,0.003986,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.199320,0.003986,-0.004999,0.249950,0,0);}
.mea_c01052{transform:matrix(0.200278,0.003605,-0.004499,0.249960,0,0);-ms-transform:matrix(0.200278,0.003605,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.200278,0.003605,-0.004499,0.249960,0,0);}
.m2_c01052{transform:matrix(0.200839,0.003213,-0.003999,0.249968,0,0);-ms-transform:matrix(0.200839,0.003213,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.200839,0.003213,-0.003999,0.249968,0,0);}
.m10_c01052{transform:matrix(0.200854,0.003214,-0.003999,0.249968,0,0);-ms-transform:matrix(0.200854,0.003214,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.200854,0.003214,-0.003999,0.249968,0,0);}
.ma6_c01052{transform:matrix(0.200865,0.004017,-0.004999,0.249950,0,0);-ms-transform:matrix(0.200865,0.004017,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.200865,0.004017,-0.004999,0.249950,0,0);}
.m124_c01052{transform:matrix(0.201062,0.005027,-0.006248,0.249922,0,0);-ms-transform:matrix(0.201062,0.005027,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.201062,0.005027,-0.006248,0.249922,0,0);}
.m85_c01052{transform:matrix(0.201205,0.004024,-0.004999,0.249950,0,0);-ms-transform:matrix(0.201205,0.004024,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.201205,0.004024,-0.004999,0.249950,0,0);}
.md4_c01052{transform:matrix(0.201372,0.003625,-0.004499,0.249960,0,0);-ms-transform:matrix(0.201372,0.003625,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.201372,0.003625,-0.004499,0.249960,0,0);}
.ma1_c01052{transform:matrix(0.201555,0.004031,-0.004999,0.249950,0,0);-ms-transform:matrix(0.201555,0.004031,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.201555,0.004031,-0.004999,0.249950,0,0);}
.me5_c01052{transform:matrix(0.202042,0.003637,-0.004499,0.249960,0,0);-ms-transform:matrix(0.202042,0.003637,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.202042,0.003637,-0.004499,0.249960,0,0);}
.mb4_c01052{transform:matrix(0.202182,0.003639,-0.004499,0.249960,0,0);-ms-transform:matrix(0.202182,0.003639,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.202182,0.003639,-0.004499,0.249960,0,0);}
.mb1_c01052{transform:matrix(0.202482,0.003645,-0.004499,0.249960,0,0);-ms-transform:matrix(0.202482,0.003645,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.202482,0.003645,-0.004499,0.249960,0,0);}
.m113_c01052{transform:matrix(0.202602,0.005065,-0.006248,0.249922,0,0);-ms-transform:matrix(0.202602,0.005065,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.202602,0.005065,-0.006248,0.249922,0,0);}
.ma5_c01052{transform:matrix(0.202769,0.004055,-0.004999,0.249950,0,0);-ms-transform:matrix(0.202769,0.004055,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.202769,0.004055,-0.004999,0.249950,0,0);}
.m61_c01052{transform:matrix(0.203139,0.003250,-0.003999,0.249968,0,0);-ms-transform:matrix(0.203139,0.003250,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.203139,0.003250,-0.003999,0.249968,0,0);}
.m5f_c01052{transform:matrix(0.203174,0.003251,-0.003999,0.249968,0,0);-ms-transform:matrix(0.203174,0.003251,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.203174,0.003251,-0.003999,0.249968,0,0);}
.m9_c01052{transform:matrix(0.204259,0.003268,-0.003999,0.249968,0,0);-ms-transform:matrix(0.204259,0.003268,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.204259,0.003268,-0.003999,0.249968,0,0);}
.mb9_c01052{transform:matrix(0.204427,0.003680,-0.004499,0.249960,0,0);-ms-transform:matrix(0.204427,0.003680,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.204427,0.003680,-0.004499,0.249960,0,0);}
.mb7_c01052{transform:matrix(0.204482,0.003681,-0.004499,0.249960,0,0);-ms-transform:matrix(0.204482,0.003681,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.204482,0.003681,-0.004499,0.249960,0,0);}
.mcf_c01052{transform:matrix(0.205007,0.003690,-0.004499,0.249960,0,0);-ms-transform:matrix(0.205007,0.003690,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.205007,0.003690,-0.004499,0.249960,0,0);}
.m88_c01052{transform:matrix(0.205249,0.004105,-0.004999,0.249950,0,0);-ms-transform:matrix(0.205249,0.004105,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.205249,0.004105,-0.004999,0.249950,0,0);}
.me1_c01052{transform:matrix(0.206567,0.003718,-0.004499,0.249960,0,0);-ms-transform:matrix(0.206567,0.003718,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.206567,0.003718,-0.004499,0.249960,0,0);}
.md2_c01052{transform:matrix(0.206617,0.003719,-0.004499,0.249960,0,0);-ms-transform:matrix(0.206617,0.003719,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.206617,0.003719,-0.004499,0.249960,0,0);}
.md1_c01052{transform:matrix(0.208111,0.003746,-0.004499,0.249960,0,0);-ms-transform:matrix(0.208111,0.003746,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.208111,0.003746,-0.004499,0.249960,0,0);}
.m7c_c01052{transform:matrix(0.208563,0.004171,-0.004999,0.249950,0,0);-ms-transform:matrix(0.208563,0.004171,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.208563,0.004171,-0.004999,0.249950,0,0);}
.mfa_c01052{transform:matrix(0.210489,0.005262,-0.006248,0.249922,0,0);-ms-transform:matrix(0.210489,0.005262,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.210489,0.005262,-0.006248,0.249922,0,0);}
.m10a_c01052{transform:matrix(0.211419,0.005285,-0.006248,0.249922,0,0);-ms-transform:matrix(0.211419,0.005285,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.211419,0.005285,-0.006248,0.249922,0,0);}
.md_c01052{transform:matrix(0.211873,0.003390,-0.003999,0.249968,0,0);-ms-transform:matrix(0.211873,0.003390,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.211873,0.003390,-0.003999,0.249968,0,0);}
.m110_c01052{transform:matrix(0.211939,0.005298,-0.006248,0.249922,0,0);-ms-transform:matrix(0.211939,0.005298,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.211939,0.005298,-0.006248,0.249922,0,0);}
.m43_c01052{transform:matrix(0.212473,0.003400,-0.003999,0.249968,0,0);-ms-transform:matrix(0.212473,0.003400,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.212473,0.003400,-0.003999,0.249968,0,0);}
.me2_c01052{transform:matrix(0.212746,0.003829,-0.004499,0.249960,0,0);-ms-transform:matrix(0.212746,0.003829,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.212746,0.003829,-0.004499,0.249960,0,0);}
.m7d_c01052{transform:matrix(0.212972,0.004259,-0.004999,0.249950,0,0);-ms-transform:matrix(0.212972,0.004259,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.212972,0.004259,-0.004999,0.249950,0,0);}
.m19_c01052{transform:matrix(0.213423,0.003415,-0.003999,0.249968,0,0);-ms-transform:matrix(0.213423,0.003415,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.213423,0.003415,-0.003999,0.249968,0,0);}
.m13a_c01052{transform:matrix(0.213633,0.005341,-0.006248,0.249922,0,0);-ms-transform:matrix(0.213633,0.005341,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.213633,0.005341,-0.006248,0.249922,0,0);}
.mf5_c01052{transform:matrix(0.213753,0.005344,-0.006248,0.249922,0,0);-ms-transform:matrix(0.213753,0.005344,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.213753,0.005344,-0.006248,0.249922,0,0);}
.ma3_c01052{transform:matrix(0.213782,0.004276,-0.004999,0.249950,0,0);-ms-transform:matrix(0.213782,0.004276,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.213782,0.004276,-0.004999,0.249950,0,0);}
.m10d_c01052{transform:matrix(0.213818,0.005345,-0.006248,0.249922,0,0);-ms-transform:matrix(0.213818,0.005345,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.213818,0.005345,-0.006248,0.249922,0,0);}
.m5c_c01052{transform:matrix(0.213828,0.003421,-0.003999,0.249968,0,0);-ms-transform:matrix(0.213828,0.003421,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.213828,0.003421,-0.003999,0.249968,0,0);}
.mae_c01052{transform:matrix(0.213905,0.003850,-0.004499,0.249960,0,0);-ms-transform:matrix(0.213905,0.003850,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.213905,0.003850,-0.004499,0.249960,0,0);}
.m10e_c01052{transform:matrix(0.213918,0.005348,-0.006248,0.249922,0,0);-ms-transform:matrix(0.213918,0.005348,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.213918,0.005348,-0.006248,0.249922,0,0);}
.me6_c01052{transform:matrix(0.213930,0.003851,-0.004499,0.249960,0,0);-ms-transform:matrix(0.213930,0.003851,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.213930,0.003851,-0.004499,0.249960,0,0);}
.m120_c01052{transform:matrix(0.214068,0.005352,-0.006248,0.249922,0,0);-ms-transform:matrix(0.214068,0.005352,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.214068,0.005352,-0.006248,0.249922,0,0);}
.ma_c01052{transform:matrix(0.214253,0.003428,-0.003999,0.249968,0,0);-ms-transform:matrix(0.214253,0.003428,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.214253,0.003428,-0.003999,0.249968,0,0);}
.mf0_c01052{transform:matrix(0.214348,0.005359,-0.006248,0.249922,0,0);-ms-transform:matrix(0.214348,0.005359,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.214348,0.005359,-0.006248,0.249922,0,0);}
.m80_c01052{transform:matrix(0.214377,0.004288,-0.004999,0.249950,0,0);-ms-transform:matrix(0.214377,0.004288,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.214377,0.004288,-0.004999,0.249950,0,0);}
.m26_c01052{transform:matrix(0.214388,0.003430,-0.003999,0.249968,0,0);-ms-transform:matrix(0.214388,0.003430,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.214388,0.003430,-0.003999,0.249968,0,0);}
.m13b_c01052{transform:matrix(0.214748,0.005369,-0.006248,0.249922,0,0);-ms-transform:matrix(0.214748,0.005369,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.214748,0.005369,-0.006248,0.249922,0,0);}
.m3d_c01052{transform:matrix(0.215677,0.003451,-0.003999,0.249968,0,0);-ms-transform:matrix(0.215677,0.003451,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.215677,0.003451,-0.003999,0.249968,0,0);}
.m2a_c01052{transform:matrix(0.215687,0.003451,-0.003999,0.249968,0,0);-ms-transform:matrix(0.215687,0.003451,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.215687,0.003451,-0.003999,0.249968,0,0);}
.md3_c01052{transform:matrix(0.215950,0.003887,-0.004499,0.249960,0,0);-ms-transform:matrix(0.215950,0.003887,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.215950,0.003887,-0.004499,0.249960,0,0);}
.mcb_c01052{transform:matrix(0.216030,0.003889,-0.004499,0.249960,0,0);-ms-transform:matrix(0.216030,0.003889,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.216030,0.003889,-0.004499,0.249960,0,0);}
.maf_c01052{transform:matrix(0.216265,0.003893,-0.004499,0.249960,0,0);-ms-transform:matrix(0.216265,0.003893,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.216265,0.003893,-0.004499,0.249960,0,0);}
.mbc_c01052{transform:matrix(0.216300,0.003893,-0.004499,0.249960,0,0);-ms-transform:matrix(0.216300,0.003893,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.216300,0.003893,-0.004499,0.249960,0,0);}
.m3f_c01052{transform:matrix(0.216307,0.003461,-0.003999,0.249968,0,0);-ms-transform:matrix(0.216307,0.003461,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.216307,0.003461,-0.003999,0.249968,0,0);}
.m114_c01052{transform:matrix(0.216472,0.005412,-0.006248,0.249922,0,0);-ms-transform:matrix(0.216472,0.005412,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.216472,0.005412,-0.006248,0.249922,0,0);}
.ma9_c01052{transform:matrix(0.217540,0.003916,-0.004499,0.249960,0,0);-ms-transform:matrix(0.217540,0.003916,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.217540,0.003916,-0.004499,0.249960,0,0);}
.m134_c01052{transform:matrix(0.218297,0.005457,-0.006248,0.249922,0,0);-ms-transform:matrix(0.218297,0.005457,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.218297,0.005457,-0.006248,0.249922,0,0);}
.m68_c01052{transform:matrix(0.218447,0.003495,-0.003999,0.249968,0,0);-ms-transform:matrix(0.218447,0.003495,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.218447,0.003495,-0.003999,0.249968,0,0);}
.m7e_c01052{transform:matrix(0.218791,0.004376,-0.004999,0.249950,0,0);-ms-transform:matrix(0.218791,0.004376,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.218791,0.004376,-0.004999,0.249950,0,0);}
.m8f_c01052{transform:matrix(0.218896,0.004378,-0.004999,0.249950,0,0);-ms-transform:matrix(0.218896,0.004378,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.218896,0.004378,-0.004999,0.249950,0,0);}
.me_c01052{transform:matrix(0.219657,0.003515,-0.003999,0.249968,0,0);-ms-transform:matrix(0.219657,0.003515,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.219657,0.003515,-0.003999,0.249968,0,0);}
.m8a_c01052{transform:matrix(0.220146,0.004403,-0.004999,0.249950,0,0);-ms-transform:matrix(0.220146,0.004403,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.220146,0.004403,-0.004999,0.249950,0,0);}
.mc0_c01052{transform:matrix(0.220794,0.003974,-0.004499,0.249960,0,0);-ms-transform:matrix(0.220794,0.003974,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.220794,0.003974,-0.004499,0.249960,0,0);}
.m111_c01052{transform:matrix(0.221021,0.005526,-0.006248,0.249922,0,0);-ms-transform:matrix(0.221021,0.005526,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.221021,0.005526,-0.006248,0.249922,0,0);}
.m81_c01052{transform:matrix(0.221636,0.004433,-0.004999,0.249950,0,0);-ms-transform:matrix(0.221636,0.004433,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.221636,0.004433,-0.004999,0.249950,0,0);}
.mf2_c01052{transform:matrix(0.221816,0.005545,-0.006248,0.249922,0,0);-ms-transform:matrix(0.221816,0.005545,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.221816,0.005545,-0.006248,0.249922,0,0);}
.meb_c01052{transform:matrix(0.222044,0.003997,-0.004499,0.249960,0,0);-ms-transform:matrix(0.222044,0.003997,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.222044,0.003997,-0.004499,0.249960,0,0);}
.mfe_c01052{transform:matrix(0.222071,0.005552,-0.006248,0.249922,0,0);-ms-transform:matrix(0.222071,0.005552,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.222071,0.005552,-0.006248,0.249922,0,0);}
.m15_c01052{transform:matrix(0.222227,0.003556,-0.003999,0.249968,0,0);-ms-transform:matrix(0.222227,0.003556,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.222227,0.003556,-0.003999,0.249968,0,0);}
.m87_c01052{transform:matrix(0.222331,0.004447,-0.004999,0.249950,0,0);-ms-transform:matrix(0.222331,0.004447,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.222331,0.004447,-0.004999,0.249950,0,0);}
.m11_c01052{transform:matrix(0.222372,0.003558,-0.003999,0.249968,0,0);-ms-transform:matrix(0.222372,0.003558,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.222372,0.003558,-0.003999,0.249968,0,0);}
.m83_c01052{transform:matrix(0.222401,0.004448,-0.004999,0.249950,0,0);-ms-transform:matrix(0.222401,0.004448,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.222401,0.004448,-0.004999,0.249950,0,0);}
.m5d_c01052{transform:matrix(0.222522,0.003560,-0.003999,0.249968,0,0);-ms-transform:matrix(0.222522,0.003560,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.222522,0.003560,-0.003999,0.249968,0,0);}
.m1f_c01052{transform:matrix(0.223126,0.003570,-0.003999,0.249968,0,0);-ms-transform:matrix(0.223126,0.003570,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.223126,0.003570,-0.003999,0.249968,0,0);}
.mcc_c01052{transform:matrix(0.223279,0.004019,-0.004499,0.249960,0,0);-ms-transform:matrix(0.223279,0.004019,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.223279,0.004019,-0.004499,0.249960,0,0);}
.mc3_c01052{transform:matrix(0.223344,0.004020,-0.004499,0.249960,0,0);-ms-transform:matrix(0.223344,0.004020,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.223344,0.004020,-0.004499,0.249960,0,0);}
.mce_c01052{transform:matrix(0.223449,0.004022,-0.004499,0.249960,0,0);-ms-transform:matrix(0.223449,0.004022,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.223449,0.004022,-0.004499,0.249960,0,0);}
.m5b_c01052{transform:matrix(0.223456,0.003575,-0.003999,0.249968,0,0);-ms-transform:matrix(0.223456,0.003575,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.223456,0.003575,-0.003999,0.249968,0,0);}
.m16_c01052{transform:matrix(0.223866,0.003582,-0.003999,0.249968,0,0);-ms-transform:matrix(0.223866,0.003582,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.223866,0.003582,-0.003999,0.249968,0,0);}
.m52_c01052{transform:matrix(0.224051,0.003585,-0.003999,0.249968,0,0);-ms-transform:matrix(0.224051,0.003585,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.224051,0.003585,-0.003999,0.249968,0,0);}
.mf8_c01052{transform:matrix(0.224270,0.005607,-0.006248,0.249922,0,0);-ms-transform:matrix(0.224270,0.005607,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.224270,0.005607,-0.006248,0.249922,0,0);}
.mac_c01052{transform:matrix(0.224414,0.004039,-0.004499,0.249960,0,0);-ms-transform:matrix(0.224414,0.004039,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.224414,0.004039,-0.004499,0.249960,0,0);}
.m11e_c01052{transform:matrix(0.225055,0.005626,-0.006248,0.249922,0,0);-ms-transform:matrix(0.225055,0.005626,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.225055,0.005626,-0.006248,0.249922,0,0);}
.m41_c01052{transform:matrix(0.225236,0.003604,-0.003999,0.249968,0,0);-ms-transform:matrix(0.225236,0.003604,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.225236,0.003604,-0.003999,0.249968,0,0);}
.m12_c01052{transform:matrix(0.225271,0.003604,-0.003999,0.249968,0,0);-ms-transform:matrix(0.225271,0.003604,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.225271,0.003604,-0.003999,0.249968,0,0);}
.mbe_c01052{transform:matrix(0.225428,0.004058,-0.004499,0.249960,0,0);-ms-transform:matrix(0.225428,0.004058,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.225428,0.004058,-0.004499,0.249960,0,0);}
.m62_c01052{transform:matrix(0.225476,0.003608,-0.003999,0.249968,0,0);-ms-transform:matrix(0.225476,0.003608,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.225476,0.003608,-0.003999,0.249968,0,0);}
.m13e_c01052{transform:matrix(0.225734,0.005643,-0.006248,0.249922,0,0);-ms-transform:matrix(0.225734,0.005643,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.225734,0.005643,-0.006248,0.249922,0,0);}
.m3a_c01052{transform:matrix(0.225911,0.003615,-0.003999,0.249968,0,0);-ms-transform:matrix(0.225911,0.003615,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.225911,0.003615,-0.003999,0.249968,0,0);}
.mb_c01052{transform:matrix(0.226071,0.003617,-0.003999,0.249968,0,0);-ms-transform:matrix(0.226071,0.003617,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.226071,0.003617,-0.003999,0.249968,0,0);}
.maa_c01052{transform:matrix(0.226358,0.004074,-0.004499,0.249960,0,0);-ms-transform:matrix(0.226358,0.004074,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.226358,0.004074,-0.004499,0.249960,0,0);}
.mc5_c01052{transform:matrix(0.226648,0.004080,-0.004499,0.249960,0,0);-ms-transform:matrix(0.226648,0.004080,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.226648,0.004080,-0.004499,0.249960,0,0);}
.m7f_c01052{transform:matrix(0.226665,0.004533,-0.004999,0.249950,0,0);-ms-transform:matrix(0.226665,0.004533,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.226665,0.004533,-0.004999,0.249950,0,0);}
.m58_c01052{transform:matrix(0.227046,0.003633,-0.003999,0.249968,0,0);-ms-transform:matrix(0.227046,0.003633,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.227046,0.003633,-0.003999,0.249968,0,0);}
.mc2_c01052{transform:matrix(0.227773,0.004100,-0.004499,0.249960,0,0);-ms-transform:matrix(0.227773,0.004100,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.227773,0.004100,-0.004499,0.249960,0,0);}
.me4_c01052{transform:matrix(0.227973,0.004104,-0.004499,0.249960,0,0);-ms-transform:matrix(0.227973,0.004104,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.227973,0.004104,-0.004499,0.249960,0,0);}
.m5e_c01052{transform:matrix(0.228141,0.003650,-0.003999,0.249968,0,0);-ms-transform:matrix(0.228141,0.003650,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.228141,0.003650,-0.003999,0.249968,0,0);}
.m37_c01052{transform:matrix(0.228481,0.003656,-0.003999,0.249968,0,0);-ms-transform:matrix(0.228481,0.003656,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.228481,0.003656,-0.003999,0.249968,0,0);}
.m136_c01052{transform:matrix(0.228524,0.005713,-0.006248,0.249922,0,0);-ms-transform:matrix(0.228524,0.005713,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.228524,0.005713,-0.006248,0.249922,0,0);}
.m4f_c01052{transform:matrix(0.228601,0.003658,-0.003999,0.249968,0,0);-ms-transform:matrix(0.228601,0.003658,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.228601,0.003658,-0.003999,0.249968,0,0);}
.m115_c01052{transform:matrix(0.228654,0.005716,-0.006248,0.249922,0,0);-ms-transform:matrix(0.228654,0.005716,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.228654,0.005716,-0.006248,0.249922,0,0);}
.m12f_c01052{transform:matrix(0.228664,0.005717,-0.006248,0.249922,0,0);-ms-transform:matrix(0.228664,0.005717,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.228664,0.005717,-0.006248,0.249922,0,0);}
.m42_c01052{transform:matrix(0.228771,0.003660,-0.003999,0.249968,0,0);-ms-transform:matrix(0.228771,0.003660,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.228771,0.003660,-0.003999,0.249968,0,0);}
.med_c01052{transform:matrix(0.228958,0.005724,-0.006248,0.249922,0,0);-ms-transform:matrix(0.228958,0.005724,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.228958,0.005724,-0.006248,0.249922,0,0);}
.m31_c01052{transform:matrix(0.229561,0.003673,-0.003999,0.249968,0,0);-ms-transform:matrix(0.229561,0.003673,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.229561,0.003673,-0.003999,0.249968,0,0);}
.m4e_c01052{transform:matrix(0.229746,0.003676,-0.003999,0.249968,0,0);-ms-transform:matrix(0.229746,0.003676,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.229746,0.003676,-0.003999,0.249968,0,0);}
.md5_c01052{transform:matrix(0.229808,0.004137,-0.004499,0.249960,0,0);-ms-transform:matrix(0.229808,0.004137,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.229808,0.004137,-0.004499,0.249960,0,0);}
.ma7_c01052{transform:matrix(0.229948,0.004139,-0.004499,0.249960,0,0);-ms-transform:matrix(0.229948,0.004139,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.229948,0.004139,-0.004499,0.249960,0,0);}
.mf_c01052{transform:matrix(0.230306,0.003685,-0.003999,0.249968,0,0);-ms-transform:matrix(0.230306,0.003685,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.230306,0.003685,-0.003999,0.249968,0,0);}
.m139_c01052{transform:matrix(0.230373,0.005759,-0.006248,0.249922,0,0);-ms-transform:matrix(0.230373,0.005759,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.230373,0.005759,-0.006248,0.249922,0,0);}
.me8_c01052{transform:matrix(0.230383,0.004147,-0.004499,0.249960,0,0);-ms-transform:matrix(0.230383,0.004147,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.230383,0.004147,-0.004499,0.249960,0,0);}
.m66_c01052{transform:matrix(0.230431,0.003687,-0.003999,0.249968,0,0);-ms-transform:matrix(0.230431,0.003687,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.230431,0.003687,-0.003999,0.249968,0,0);}
.mbb_c01052{transform:matrix(0.230493,0.004149,-0.004499,0.249960,0,0);-ms-transform:matrix(0.230493,0.004149,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.230493,0.004149,-0.004499,0.249960,0,0);}
.m69_c01052{transform:matrix(0.230869,0.004617,-0.004999,0.249950,0,0);-ms-transform:matrix(0.230869,0.004617,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.230869,0.004617,-0.004999,0.249950,0,0);}
.me3_c01052{transform:matrix(0.231108,0.004160,-0.004499,0.249960,0,0);-ms-transform:matrix(0.231108,0.004160,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.231108,0.004160,-0.004499,0.249960,0,0);}
.mc_c01052{transform:matrix(0.231195,0.003699,-0.003999,0.249968,0,0);-ms-transform:matrix(0.231195,0.003699,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.231195,0.003699,-0.003999,0.249968,0,0);}
.m17_c01052{transform:matrix(0.231525,0.003704,-0.003999,0.249968,0,0);-ms-transform:matrix(0.231525,0.003704,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.231525,0.003704,-0.003999,0.249968,0,0);}
.m116_c01052{transform:matrix(0.232212,0.005805,-0.006248,0.249922,0,0);-ms-transform:matrix(0.232212,0.005805,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.232212,0.005805,-0.006248,0.249922,0,0);}
.m10c_c01052{transform:matrix(0.232247,0.005806,-0.006248,0.249922,0,0);-ms-transform:matrix(0.232247,0.005806,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.232247,0.005806,-0.006248,0.249922,0,0);}
.m35_c01052{transform:matrix(0.232255,0.003716,-0.003999,0.249968,0,0);-ms-transform:matrix(0.232255,0.003716,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.232255,0.003716,-0.003999,0.249968,0,0);}
.mf3_c01052{transform:matrix(0.232317,0.005808,-0.006248,0.249922,0,0);-ms-transform:matrix(0.232317,0.005808,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.232317,0.005808,-0.006248,0.249922,0,0);}
.m84_c01052{transform:matrix(0.232688,0.004654,-0.004999,0.249950,0,0);-ms-transform:matrix(0.232688,0.004654,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.232688,0.004654,-0.004999,0.249950,0,0);}
.m60_c01052{transform:matrix(0.232885,0.003726,-0.003999,0.249968,0,0);-ms-transform:matrix(0.232885,0.003726,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.232885,0.003726,-0.003999,0.249968,0,0);}
.m1b_c01052{transform:matrix(0.233140,0.003730,-0.003999,0.249968,0,0);-ms-transform:matrix(0.233140,0.003730,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.233140,0.003730,-0.003999,0.249968,0,0);}
.m20_c01052{transform:matrix(0.233715,0.003739,-0.003999,0.249968,0,0);-ms-transform:matrix(0.233715,0.003739,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.233715,0.003739,-0.003999,0.249968,0,0);}
.mfb_c01052{transform:matrix(0.233767,0.005844,-0.006248,0.249922,0,0);-ms-transform:matrix(0.233767,0.005844,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.233767,0.005844,-0.006248,0.249922,0,0);}
.mb5_c01052{transform:matrix(0.234462,0.004220,-0.004499,0.249960,0,0);-ms-transform:matrix(0.234462,0.004220,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.234462,0.004220,-0.004499,0.249960,0,0);}
.m59_c01052{transform:matrix(0.234800,0.003757,-0.003999,0.249968,0,0);-ms-transform:matrix(0.234800,0.003757,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.234800,0.003757,-0.003999,0.249968,0,0);}
.m9b_c01052{transform:matrix(0.234808,0.004696,-0.004999,0.249950,0,0);-ms-transform:matrix(0.234808,0.004696,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.234808,0.004696,-0.004999,0.249950,0,0);}
.m89_c01052{transform:matrix(0.235308,0.004706,-0.004999,0.249950,0,0);-ms-transform:matrix(0.235308,0.004706,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.235308,0.004706,-0.004999,0.249950,0,0);}
.m9a_c01052{transform:matrix(0.235708,0.004714,-0.004999,0.249950,0,0);-ms-transform:matrix(0.235708,0.004714,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.235708,0.004714,-0.004999,0.249950,0,0);}
.m28_c01052{transform:matrix(0.235760,0.003772,-0.003999,0.249968,0,0);-ms-transform:matrix(0.235760,0.003772,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.235760,0.003772,-0.003999,0.249968,0,0);}
.m10f_c01052{transform:matrix(0.236046,0.005901,-0.006248,0.249922,0,0);-ms-transform:matrix(0.236046,0.005901,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.236046,0.005901,-0.006248,0.249922,0,0);}
.m23_c01052{transform:matrix(0.236335,0.003781,-0.003999,0.249968,0,0);-ms-transform:matrix(0.236335,0.003781,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.236335,0.003781,-0.003999,0.249968,0,0);}
.m13d_c01052{transform:matrix(0.236486,0.005912,-0.006248,0.249922,0,0);-ms-transform:matrix(0.236486,0.005912,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.236486,0.005912,-0.006248,0.249922,0,0);}
.m7b_c01052{transform:matrix(0.236588,0.004732,-0.004999,0.249950,0,0);-ms-transform:matrix(0.236588,0.004732,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.236588,0.004732,-0.004999,0.249950,0,0);}
.m39_c01052{transform:matrix(0.236775,0.003788,-0.003999,0.249968,0,0);-ms-transform:matrix(0.236775,0.003788,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.236775,0.003788,-0.003999,0.249968,0,0);}
.m8d_c01052{transform:matrix(0.236853,0.004737,-0.004999,0.249950,0,0);-ms-transform:matrix(0.236853,0.004737,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.236853,0.004737,-0.004999,0.249950,0,0);}
.m24_c01052{transform:matrix(0.236870,0.003790,-0.003999,0.249968,0,0);-ms-transform:matrix(0.236870,0.003790,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.236870,0.003790,-0.003999,0.249968,0,0);}
.m86_c01052{transform:matrix(0.236973,0.004739,-0.004999,0.249950,0,0);-ms-transform:matrix(0.236973,0.004739,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.236973,0.004739,-0.004999,0.249950,0,0);}
.m27_c01052{transform:matrix(0.237230,0.003796,-0.003999,0.249968,0,0);-ms-transform:matrix(0.237230,0.003796,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.237230,0.003796,-0.003999,0.249968,0,0);}
.m90_c01052{transform:matrix(0.237637,0.004753,-0.004999,0.249950,0,0);-ms-transform:matrix(0.237637,0.004753,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.237637,0.004753,-0.004999,0.249950,0,0);}
.me0_c01052{transform:matrix(0.237791,0.004280,-0.004499,0.249960,0,0);-ms-transform:matrix(0.237791,0.004280,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.237791,0.004280,-0.004499,0.249960,0,0);}
.m2b_c01052{transform:matrix(0.239094,0.003826,-0.003999,0.249968,0,0);-ms-transform:matrix(0.239094,0.003826,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.239094,0.003826,-0.003999,0.249968,0,0);}
.m2f_c01052{transform:matrix(0.239279,0.003828,-0.003999,0.249968,0,0);-ms-transform:matrix(0.239279,0.003828,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.239279,0.003828,-0.003999,0.249968,0,0);}
.m3e_c01052{transform:matrix(0.239504,0.003832,-0.003999,0.249968,0,0);-ms-transform:matrix(0.239504,0.003832,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.239504,0.003832,-0.003999,0.249968,0,0);}
.m40_c01052{transform:matrix(0.239509,0.003832,-0.003999,0.249968,0,0);-ms-transform:matrix(0.239509,0.003832,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.239509,0.003832,-0.003999,0.249968,0,0);}
.m4b_c01052{transform:matrix(0.239534,0.003833,-0.003999,0.249968,0,0);-ms-transform:matrix(0.239534,0.003833,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.239534,0.003833,-0.003999,0.249968,0,0);}
.m137_c01052{transform:matrix(0.239555,0.005989,-0.006248,0.249922,0,0);-ms-transform:matrix(0.239555,0.005989,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.239555,0.005989,-0.006248,0.249922,0,0);}
.m77_c01052{transform:matrix(0.240327,0.004807,-0.004999,0.249950,0,0);-ms-transform:matrix(0.240327,0.004807,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.240327,0.004807,-0.004999,0.249950,0,0);}
.m64_c01052{transform:matrix(0.240359,0.003846,-0.003999,0.249968,0,0);-ms-transform:matrix(0.240359,0.003846,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.240359,0.003846,-0.003999,0.249968,0,0);}
.mdf_c01052{transform:matrix(0.240656,0.004332,-0.004499,0.249960,0,0);-ms-transform:matrix(0.240656,0.004332,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.240656,0.004332,-0.004499,0.249960,0,0);}
.mbd_c01052{transform:matrix(0.241146,0.004341,-0.004499,0.249960,0,0);-ms-transform:matrix(0.241146,0.004341,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.241146,0.004341,-0.004499,0.249960,0,0);}
.m13c_c01052{transform:matrix(0.241185,0.006030,-0.006248,0.249922,0,0);-ms-transform:matrix(0.241185,0.006030,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.241185,0.006030,-0.006248,0.249922,0,0);}
.m46_c01052{transform:matrix(0.241964,0.003871,-0.003999,0.249968,0,0);-ms-transform:matrix(0.241964,0.003871,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.241964,0.003871,-0.003999,0.249968,0,0);}
.m6a_c01052{transform:matrix(0.242327,0.004847,-0.004999,0.249950,0,0);-ms-transform:matrix(0.242327,0.004847,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.242327,0.004847,-0.004999,0.249950,0,0);}
.mde_c01052{transform:matrix(0.242711,0.004369,-0.004499,0.249960,0,0);-ms-transform:matrix(0.242711,0.004369,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.242711,0.004369,-0.004499,0.249960,0,0);}
.m6f_c01052{transform:matrix(0.242876,0.004858,-0.004999,0.249950,0,0);-ms-transform:matrix(0.242876,0.004858,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.242876,0.004858,-0.004999,0.249950,0,0);}
.m138_c01052{transform:matrix(0.243219,0.006080,-0.006248,0.249922,0,0);-ms-transform:matrix(0.243219,0.006080,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.243219,0.006080,-0.006248,0.249922,0,0);}
.md8_c01052{transform:matrix(0.243456,0.004382,-0.004499,0.249960,0,0);-ms-transform:matrix(0.243456,0.004382,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.243456,0.004382,-0.004499,0.249960,0,0);}
.mb6_c01052{transform:matrix(0.243711,0.004387,-0.004499,0.249960,0,0);-ms-transform:matrix(0.243711,0.004387,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.243711,0.004387,-0.004499,0.249960,0,0);}
.mf6_c01052{transform:matrix(0.243984,0.006100,-0.006248,0.249922,0,0);-ms-transform:matrix(0.243984,0.006100,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.243984,0.006100,-0.006248,0.249922,0,0);}
.m55_c01052{transform:matrix(0.244059,0.003905,-0.003999,0.249968,0,0);-ms-transform:matrix(0.244059,0.003905,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.244059,0.003905,-0.003999,0.249968,0,0);}
.m78_c01052{transform:matrix(0.244081,0.004882,-0.004999,0.249950,0,0);-ms-transform:matrix(0.244081,0.004882,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.244081,0.004882,-0.004999,0.249950,0,0);}
.mba_c01052{transform:matrix(0.244095,0.004394,-0.004499,0.249960,0,0);-ms-transform:matrix(0.244095,0.004394,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.244095,0.004394,-0.004499,0.249960,0,0);}
.m12e_c01052{transform:matrix(0.244239,0.006106,-0.006248,0.249922,0,0);-ms-transform:matrix(0.244239,0.006106,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.244239,0.006106,-0.006248,0.249922,0,0);}
.m72_c01052{transform:matrix(0.244426,0.004889,-0.004999,0.249950,0,0);-ms-transform:matrix(0.244426,0.004889,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.244426,0.004889,-0.004999,0.249950,0,0);}
.m47_c01052{transform:matrix(0.244444,0.003911,-0.003999,0.249968,0,0);-ms-transform:matrix(0.244444,0.003911,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.244444,0.003911,-0.003999,0.249968,0,0);}
.m112_c01052{transform:matrix(0.244634,0.006116,-0.006248,0.249922,0,0);-ms-transform:matrix(0.244634,0.006116,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.244634,0.006116,-0.006248,0.249922,0,0);}
.mc1_c01052{transform:matrix(0.244675,0.004404,-0.004499,0.249960,0,0);-ms-transform:matrix(0.244675,0.004404,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.244675,0.004404,-0.004499,0.249960,0,0);}
.m21_c01052{transform:matrix(0.244699,0.003915,-0.003999,0.249968,0,0);-ms-transform:matrix(0.244699,0.003915,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.244699,0.003915,-0.003999,0.249968,0,0);}
.m2c_c01052{transform:matrix(0.244854,0.003918,-0.003999,0.249968,0,0);-ms-transform:matrix(0.244854,0.003918,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.244854,0.003918,-0.003999,0.249968,0,0);}
.m106_c01052{transform:matrix(0.245383,0.006135,-0.006248,0.249922,0,0);-ms-transform:matrix(0.245383,0.006135,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.245383,0.006135,-0.006248,0.249922,0,0);}
.m132_c01052{transform:matrix(0.246098,0.006152,-0.006248,0.249922,0,0);-ms-transform:matrix(0.246098,0.006152,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.246098,0.006152,-0.006248,0.249922,0,0);}
.m135_c01052{transform:matrix(0.246718,0.006168,-0.006248,0.249922,0,0);-ms-transform:matrix(0.246718,0.006168,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.246718,0.006168,-0.006248,0.249922,0,0);}
.mdd_c01052{transform:matrix(0.246850,0.004443,-0.004499,0.249960,0,0);-ms-transform:matrix(0.246850,0.004443,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.246850,0.004443,-0.004499,0.249960,0,0);}
.me7_c01052{transform:matrix(0.247070,0.004447,-0.004499,0.249960,0,0);-ms-transform:matrix(0.247070,0.004447,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.247070,0.004447,-0.004499,0.249960,0,0);}
.m91_c01052{transform:matrix(0.247111,0.004942,-0.004999,0.249950,0,0);-ms-transform:matrix(0.247111,0.004942,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.247111,0.004942,-0.004999,0.249950,0,0);}
.mb0_c01052{transform:matrix(0.247195,0.004450,-0.004499,0.249960,0,0);-ms-transform:matrix(0.247195,0.004450,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.247195,0.004450,-0.004499,0.249960,0,0);}
.mec_c01052{transform:matrix(0.247353,0.006184,-0.006248,0.249922,0,0);-ms-transform:matrix(0.247353,0.006184,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.247353,0.006184,-0.006248,0.249922,0,0);}
.m57_c01052{transform:matrix(0.248048,0.003969,-0.003999,0.249968,0,0);-ms-transform:matrix(0.248048,0.003969,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.248048,0.003969,-0.003999,0.249968,0,0);}
.m65_c01052{transform:matrix(0.248163,0.003971,-0.003999,0.249968,0,0);-ms-transform:matrix(0.248163,0.003971,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.248163,0.003971,-0.003999,0.249968,0,0);}
.m7a_c01052{transform:matrix(0.248245,0.004965,-0.004999,0.249950,0,0);-ms-transform:matrix(0.248245,0.004965,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.248245,0.004965,-0.004999,0.249950,0,0);}
.mef_c01052{transform:matrix(0.248392,0.006210,-0.006248,0.249922,0,0);-ms-transform:matrix(0.248392,0.006210,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.248392,0.006210,-0.006248,0.249922,0,0);}
.m11d_c01052{transform:matrix(0.248582,0.006215,-0.006248,0.249922,0,0);-ms-transform:matrix(0.248582,0.006215,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.248582,0.006215,-0.006248,0.249922,0,0);}
.m4d_c01052{transform:matrix(0.248628,0.003978,-0.003999,0.249968,0,0);-ms-transform:matrix(0.248628,0.003978,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.248628,0.003978,-0.003999,0.249968,0,0);}
.mb8_c01052{transform:matrix(0.248645,0.004476,-0.004499,0.249960,0,0);-ms-transform:matrix(0.248645,0.004476,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.248645,0.004476,-0.004499,0.249960,0,0);}
.m1a_c01052{transform:matrix(0.248798,0.003981,-0.003999,0.249968,0,0);-ms-transform:matrix(0.248798,0.003981,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.248798,0.003981,-0.003999,0.249968,0,0);}
.m12d_c01052{transform:matrix(0.248822,0.006221,-0.006248,0.249922,0,0);-ms-transform:matrix(0.248822,0.006221,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.248822,0.006221,-0.006248,0.249922,0,0);}
.m56_c01052{transform:matrix(0.249123,0.003986,-0.003999,0.249968,0,0);-ms-transform:matrix(0.249123,0.003986,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.249123,0.003986,-0.003999,0.249968,0,0);}
.m11a_c01052{transform:matrix(0.249137,0.006228,-0.006248,0.249922,0,0);-ms-transform:matrix(0.249137,0.006228,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.249137,0.006228,-0.006248,0.249922,0,0);}
.m22_c01052{transform:matrix(0.249203,0.003987,-0.003999,0.249968,0,0);-ms-transform:matrix(0.249203,0.003987,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.249203,0.003987,-0.003999,0.249968,0,0);}
.m3c_c01052{transform:matrix(0.249488,0.003992,-0.003999,0.249968,0,0);-ms-transform:matrix(0.249488,0.003992,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.249488,0.003992,-0.003999,0.249968,0,0);}
.md9_c01052{transform:matrix(0.249610,0.004493,-0.004499,0.249960,0,0);-ms-transform:matrix(0.249610,0.004493,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.249610,0.004493,-0.004499,0.249960,0,0);}
.m105_c01052{transform:matrix(0.251316,0.006283,-0.006248,0.249922,0,0);-ms-transform:matrix(0.251316,0.006283,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.251316,0.006283,-0.006248,0.249922,0,0);}
.md6_c01052{transform:matrix(0.251379,0.004525,-0.004499,0.249960,0,0);-ms-transform:matrix(0.251379,0.004525,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.251379,0.004525,-0.004499,0.249960,0,0);}
.m133_c01052{transform:matrix(0.251461,0.006287,-0.006248,0.249922,0,0);-ms-transform:matrix(0.251461,0.006287,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.251461,0.006287,-0.006248,0.249922,0,0);}
.m63_c01052{transform:matrix(0.252188,0.004035,-0.003999,0.249968,0,0);-ms-transform:matrix(0.252188,0.004035,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.252188,0.004035,-0.003999,0.249968,0,0);}
.m70_c01052{transform:matrix(0.252195,0.005044,-0.004999,0.249950,0,0);-ms-transform:matrix(0.252195,0.005044,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.252195,0.005044,-0.004999,0.249950,0,0);}
.m67_c01052{transform:matrix(0.252823,0.004045,-0.003999,0.249968,0,0);-ms-transform:matrix(0.252823,0.004045,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.252823,0.004045,-0.003999,0.249968,0,0);}
.m131_c01052{transform:matrix(0.253836,0.006346,-0.006248,0.249922,0,0);-ms-transform:matrix(0.253836,0.006346,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.253836,0.006346,-0.006248,0.249922,0,0);}
.m25_c01052{transform:matrix(0.254037,0.004065,-0.003999,0.249968,0,0);-ms-transform:matrix(0.254037,0.004065,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.254037,0.004065,-0.003999,0.249968,0,0);}
.mee_c01052{transform:matrix(0.254316,0.006358,-0.006248,0.249922,0,0);-ms-transform:matrix(0.254316,0.006358,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.254316,0.006358,-0.006248,0.249922,0,0);}
.m98_c01052{transform:matrix(0.254559,0.005091,-0.004999,0.249950,0,0);-ms-transform:matrix(0.254559,0.005091,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.254559,0.005091,-0.004999,0.249950,0,0);}
.m103_c01052{transform:matrix(0.255125,0.006378,-0.006248,0.249922,0,0);-ms-transform:matrix(0.255125,0.006378,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.255125,0.006378,-0.006248,0.249922,0,0);}
.m100_c01052{transform:matrix(0.255360,0.006384,-0.006248,0.249922,0,0);-ms-transform:matrix(0.255360,0.006384,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.255360,0.006384,-0.006248,0.249922,0,0);}
.m51_c01052{transform:matrix(0.255442,0.004087,-0.003999,0.249968,0,0);-ms-transform:matrix(0.255442,0.004087,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.255442,0.004087,-0.003999,0.249968,0,0);}
.m53_c01052{transform:matrix(0.255567,0.004089,-0.003999,0.249968,0,0);-ms-transform:matrix(0.255567,0.004089,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.255567,0.004089,-0.003999,0.249968,0,0);}
.m8c_c01052{transform:matrix(0.255919,0.005118,-0.004999,0.249950,0,0);-ms-transform:matrix(0.255919,0.005118,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.255919,0.005118,-0.004999,0.249950,0,0);}
.m3b_c01052{transform:matrix(0.256502,0.004104,-0.003999,0.249968,0,0);-ms-transform:matrix(0.256502,0.004104,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.256502,0.004104,-0.003999,0.249968,0,0);}
.mc6_c01052{transform:matrix(0.256568,0.004618,-0.004499,0.249960,0,0);-ms-transform:matrix(0.256568,0.004618,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.256568,0.004618,-0.004499,0.249960,0,0);}
.mf9_c01052{transform:matrix(0.256590,0.006415,-0.006248,0.249922,0,0);-ms-transform:matrix(0.256590,0.006415,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.256590,0.006415,-0.006248,0.249922,0,0);}
.mf7_c01052{transform:matrix(0.257130,0.006428,-0.006248,0.249922,0,0);-ms-transform:matrix(0.257130,0.006428,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.257130,0.006428,-0.006248,0.249922,0,0);}
.m50_c01052{transform:matrix(0.257352,0.004118,-0.003999,0.249968,0,0);-ms-transform:matrix(0.257352,0.004118,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.257352,0.004118,-0.003999,0.249968,0,0);}
.m74_c01052{transform:matrix(0.257648,0.005153,-0.004999,0.249950,0,0);-ms-transform:matrix(0.257648,0.005153,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.257648,0.005153,-0.004999,0.249950,0,0);}
.mdc_c01052{transform:matrix(0.257718,0.004639,-0.004499,0.249960,0,0);-ms-transform:matrix(0.257718,0.004639,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.257718,0.004639,-0.004499,0.249960,0,0);}
.m18_c01052{transform:matrix(0.258572,0.004137,-0.003999,0.249968,0,0);-ms-transform:matrix(0.258572,0.004137,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.258572,0.004137,-0.003999,0.249968,0,0);}
.m93_c01052{transform:matrix(0.258703,0.005174,-0.004999,0.249950,0,0);-ms-transform:matrix(0.258703,0.005174,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.258703,0.005174,-0.004999,0.249950,0,0);}
.mc4_c01052{transform:matrix(0.258838,0.004659,-0.004499,0.249960,0,0);-ms-transform:matrix(0.258838,0.004659,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.258838,0.004659,-0.004499,0.249960,0,0);}
.m6b_c01052{transform:matrix(0.258848,0.005177,-0.004999,0.249950,0,0);-ms-transform:matrix(0.258848,0.005177,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.258848,0.005177,-0.004999,0.249950,0,0);}
.m6e_c01052{transform:matrix(0.259608,0.005192,-0.004999,0.249950,0,0);-ms-transform:matrix(0.259608,0.005192,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.259608,0.005192,-0.004999,0.249950,0,0);}
.m92_c01052{transform:matrix(0.259788,0.005196,-0.004999,0.249950,0,0);-ms-transform:matrix(0.259788,0.005196,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.259788,0.005196,-0.004999,0.249950,0,0);}
.mfc_c01052{transform:matrix(0.260729,0.006518,-0.006248,0.249922,0,0);-ms-transform:matrix(0.260729,0.006518,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.260729,0.006518,-0.006248,0.249922,0,0);}
.mfd_c01052{transform:matrix(0.260918,0.006523,-0.006248,0.249922,0,0);-ms-transform:matrix(0.260918,0.006523,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.260918,0.006523,-0.006248,0.249922,0,0);}
.m33_c01052{transform:matrix(0.261352,0.004182,-0.003999,0.249968,0,0);-ms-transform:matrix(0.261352,0.004182,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.261352,0.004182,-0.003999,0.249968,0,0);}
.m107_c01052{transform:matrix(0.261418,0.006535,-0.006248,0.249922,0,0);-ms-transform:matrix(0.261418,0.006535,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.261418,0.006535,-0.006248,0.249922,0,0);}
.m73_c01052{transform:matrix(0.261678,0.005234,-0.004999,0.249950,0,0);-ms-transform:matrix(0.261678,0.005234,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.261678,0.005234,-0.004999,0.249950,0,0);}
.m130_c01052{transform:matrix(0.262388,0.006560,-0.006248,0.249922,0,0);-ms-transform:matrix(0.262388,0.006560,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.262388,0.006560,-0.006248,0.249922,0,0);}
.m44_c01052{transform:matrix(0.263121,0.004210,-0.003999,0.249968,0,0);-ms-transform:matrix(0.263121,0.004210,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.263121,0.004210,-0.003999,0.249968,0,0);}
.m99_c01052{transform:matrix(0.263852,0.005277,-0.004999,0.249950,0,0);-ms-transform:matrix(0.263852,0.005277,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.263852,0.005277,-0.004999,0.249950,0,0);}
.m8b_c01052{transform:matrix(0.263987,0.005280,-0.004999,0.249950,0,0);-ms-transform:matrix(0.263987,0.005280,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.263987,0.005280,-0.004999,0.249950,0,0);}
.m8e_c01052{transform:matrix(0.264027,0.005281,-0.004999,0.249950,0,0);-ms-transform:matrix(0.264027,0.005281,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.264027,0.005281,-0.004999,0.249950,0,0);}
.mbf_c01052{transform:matrix(0.264052,0.004753,-0.004499,0.249960,0,0);-ms-transform:matrix(0.264052,0.004753,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.264052,0.004753,-0.004499,0.249960,0,0);}
.m54_c01052{transform:matrix(0.264101,0.004226,-0.003999,0.249968,0,0);-ms-transform:matrix(0.264101,0.004226,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.264101,0.004226,-0.003999,0.249968,0,0);}
.m29_c01052{transform:matrix(0.264256,0.004228,-0.003999,0.249968,0,0);-ms-transform:matrix(0.264256,0.004228,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.264256,0.004228,-0.003999,0.249968,0,0);}
.m9c_c01052{transform:matrix(0.264712,0.005294,-0.004999,0.249950,0,0);-ms-transform:matrix(0.264712,0.005294,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.264712,0.005294,-0.004999,0.249950,0,0);}
.m2e_c01052{transform:matrix(0.265326,0.004245,-0.003999,0.249968,0,0);-ms-transform:matrix(0.265326,0.004245,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.265326,0.004245,-0.003999,0.249968,0,0);}
.mda_c01052{transform:matrix(0.265532,0.004780,-0.004499,0.249960,0,0);-ms-transform:matrix(0.265532,0.004780,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.265532,0.004780,-0.004499,0.249960,0,0);}
.m102_c01052{transform:matrix(0.266182,0.006655,-0.006248,0.249922,0,0);-ms-transform:matrix(0.266182,0.006655,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.266182,0.006655,-0.006248,0.249922,0,0);}
.m32_c01052{transform:matrix(0.266431,0.004263,-0.003999,0.249968,0,0);-ms-transform:matrix(0.266431,0.004263,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.266431,0.004263,-0.003999,0.249968,0,0);}
.m49_c01052{transform:matrix(0.266906,0.004270,-0.003999,0.249968,0,0);-ms-transform:matrix(0.266906,0.004270,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.266906,0.004270,-0.003999,0.249968,0,0);}
.m11c_c01052{transform:matrix(0.268141,0.006704,-0.006248,0.249922,0,0);-ms-transform:matrix(0.268141,0.006704,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.268141,0.006704,-0.006248,0.249922,0,0);}
.m96_c01052{transform:matrix(0.268661,0.005373,-0.004999,0.249950,0,0);-ms-transform:matrix(0.268661,0.005373,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.268661,0.005373,-0.004999,0.249950,0,0);}
.m108_c01052{transform:matrix(0.269801,0.006745,-0.006248,0.249922,0,0);-ms-transform:matrix(0.269801,0.006745,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.269801,0.006745,-0.006248,0.249922,0,0);}
.m2d_c01052{transform:matrix(0.270420,0.004327,-0.003999,0.249968,0,0);-ms-transform:matrix(0.270420,0.004327,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.270420,0.004327,-0.003999,0.249968,0,0);}
.mf1_c01052{transform:matrix(0.270880,0.006772,-0.006248,0.249922,0,0);-ms-transform:matrix(0.270880,0.006772,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.270880,0.006772,-0.006248,0.249922,0,0);}
.m48_c01052{transform:matrix(0.271600,0.004346,-0.003999,0.249968,0,0);-ms-transform:matrix(0.271600,0.004346,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.271600,0.004346,-0.003999,0.249968,0,0);}
.m94_c01052{transform:matrix(0.271926,0.005439,-0.004999,0.249950,0,0);-ms-transform:matrix(0.271926,0.005439,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.271926,0.005439,-0.004999,0.249950,0,0);}
.m34_c01052{transform:matrix(0.271995,0.004352,-0.003999,0.249968,0,0);-ms-transform:matrix(0.271995,0.004352,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.271995,0.004352,-0.003999,0.249968,0,0);}
.mf4_c01052{transform:matrix(0.272075,0.006802,-0.006248,0.249922,0,0);-ms-transform:matrix(0.272075,0.006802,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.272075,0.006802,-0.006248,0.249922,0,0);}
.m1d_c01052{transform:matrix(0.272820,0.004365,-0.003999,0.249968,0,0);-ms-transform:matrix(0.272820,0.004365,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.272820,0.004365,-0.003999,0.249968,0,0);}
.m95_c01052{transform:matrix(0.272825,0.005457,-0.004999,0.249950,0,0);-ms-transform:matrix(0.272825,0.005457,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.272825,0.005457,-0.004999,0.249950,0,0);}
.m4a_c01052{transform:matrix(0.274050,0.004385,-0.003999,0.249968,0,0);-ms-transform:matrix(0.274050,0.004385,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.274050,0.004385,-0.003999,0.249968,0,0);}
.m6d_c01052{transform:matrix(0.274565,0.005491,-0.004999,0.249950,0,0);-ms-transform:matrix(0.274565,0.005491,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.274565,0.005491,-0.004999,0.249950,0,0);}
.m97_c01052{transform:matrix(0.274650,0.005493,-0.004999,0.249950,0,0);-ms-transform:matrix(0.274650,0.005493,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.274650,0.005493,-0.004999,0.249950,0,0);}
.m45_c01052{transform:matrix(0.275340,0.004405,-0.003999,0.249968,0,0);-ms-transform:matrix(0.275340,0.004405,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.275340,0.004405,-0.003999,0.249968,0,0);}
.m104_c01052{transform:matrix(0.275709,0.006893,-0.006248,0.249922,0,0);-ms-transform:matrix(0.275709,0.006893,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.275709,0.006893,-0.006248,0.249922,0,0);}
.m101_c01052{transform:matrix(0.276199,0.006905,-0.006248,0.249922,0,0);-ms-transform:matrix(0.276199,0.006905,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.276199,0.006905,-0.006248,0.249922,0,0);}
.md7_c01052{transform:matrix(0.276575,0.004978,-0.004499,0.249960,0,0);-ms-transform:matrix(0.276575,0.004978,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.276575,0.004978,-0.004499,0.249960,0,0);}
.m4c_c01052{transform:matrix(0.276685,0.004427,-0.003999,0.249968,0,0);-ms-transform:matrix(0.276685,0.004427,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.276685,0.004427,-0.003999,0.249968,0,0);}
.mdb_c01052{transform:matrix(0.277055,0.004987,-0.004499,0.249960,0,0);-ms-transform:matrix(0.277055,0.004987,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.277055,0.004987,-0.004499,0.249960,0,0);}
.m76_c01052{transform:matrix(0.277779,0.005556,-0.004999,0.249950,0,0);-ms-transform:matrix(0.277779,0.005556,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.277779,0.005556,-0.004999,0.249950,0,0);}
.m38_c01052{transform:matrix(0.277974,0.004448,-0.003999,0.249968,0,0);-ms-transform:matrix(0.277974,0.004448,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.277974,0.004448,-0.003999,0.249968,0,0);}
.m30_c01052{transform:matrix(0.279499,0.004472,-0.003999,0.249968,0,0);-ms-transform:matrix(0.279499,0.004472,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.279499,0.004472,-0.003999,0.249968,0,0);}
.m11b_c01052{transform:matrix(0.280217,0.007005,-0.006248,0.249922,0,0);-ms-transform:matrix(0.280217,0.007005,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.280217,0.007005,-0.006248,0.249922,0,0);}
.m118_c01052{transform:matrix(0.283107,0.007078,-0.006248,0.249922,0,0);-ms-transform:matrix(0.283107,0.007078,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.283107,0.007078,-0.006248,0.249922,0,0);}
.m117_c01052{transform:matrix(0.285501,0.007138,-0.006248,0.249922,0,0);-ms-transform:matrix(0.285501,0.007138,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.285501,0.007138,-0.006248,0.249922,0,0);}
.m11f_c01052{transform:matrix(0.286076,0.007152,-0.006248,0.249922,0,0);-ms-transform:matrix(0.286076,0.007152,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.286076,0.007152,-0.006248,0.249922,0,0);}
.m119_c01052{transform:matrix(0.288090,0.007202,-0.006248,0.249922,0,0);-ms-transform:matrix(0.288090,0.007202,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.288090,0.007202,-0.006248,0.249922,0,0);}
.m36_c01052{transform:matrix(0.291888,0.004670,-0.003999,0.249968,0,0);-ms-transform:matrix(0.291888,0.004670,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.291888,0.004670,-0.003999,0.249968,0,0);}
.mb2_c01052{transform:matrix(0.292508,0.005265,-0.004499,0.249960,0,0);-ms-transform:matrix(0.292508,0.005265,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.292508,0.005265,-0.004499,0.249960,0,0);}
.m79_c01052{transform:matrix(0.297066,0.005941,-0.004999,0.249950,0,0);-ms-transform:matrix(0.297066,0.005941,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.297066,0.005941,-0.004999,0.249950,0,0);}
.m13_c01052{transform:matrix(0.298252,0.004772,-0.003999,0.249968,0,0);-ms-transform:matrix(0.298252,0.004772,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.298252,0.004772,-0.003999,0.249968,0,0);}
.m71_c01052{transform:matrix(0.300140,0.006003,-0.004999,0.249950,0,0);-ms-transform:matrix(0.300140,0.006003,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.300140,0.006003,-0.004999,0.249950,0,0);}
.m82_c01052{transform:matrix(0.302115,0.006042,-0.004999,0.249950,0,0);-ms-transform:matrix(0.302115,0.006042,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.302115,0.006042,-0.004999,0.249950,0,0);}
.m0_c01052{transform:matrix(0.309555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309555,0.000000,0.000000,0.250000,0,0);}
.mff_c01052{transform:matrix(0.314907,0.007873,-0.006248,0.249922,0,0);-ms-transform:matrix(0.314907,0.007873,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.314907,0.007873,-0.006248,0.249922,0,0);}
.m14_c01052{transform:matrix(0.355754,0.005692,-0.003999,0.249968,0,0);-ms-transform:matrix(0.355754,0.005692,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.355754,0.005692,-0.003999,0.249968,0,0);}
.mb3_c01052{transform:matrix(0.359772,0.006476,-0.004499,0.249960,0,0);-ms-transform:matrix(0.359772,0.006476,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.359772,0.006476,-0.004499,0.249960,0,0);}
.m109_c01052{transform:matrix(0.745497,0.018637,-0.006248,0.249922,0,0);-ms-transform:matrix(0.745497,0.018637,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.745497,0.018637,-0.006248,0.249922,0,0);}
.v0_c01052{vertical-align:0.000000px;}
.ls0_c01052{letter-spacing:0.000000px;}
.sc__c01052{text-shadow:none;}
.sc0_c01052{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__c01052{-webkit-text-stroke:0px transparent;}
.sc0_c01052{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01052{word-spacing:0.000000px;}
.fc0_c01052{color:transparent;}
.fs4_c01052{font-size:72.009215px;}
.fsc_c01052{font-size:72.011663px;}
.fs6_c01052{font-size:72.014399px;}
.fse_c01052{font-size:72.022496px;}
.fs3_c01052{font-size:78.009983px;}
.fsb_c01052{font-size:78.012635px;}
.fs5_c01052{font-size:78.015598px;}
.fsd_c01052{font-size:78.024371px;}
.fs2_c01052{font-size:84.010751px;}
.fsa_c01052{font-size:84.013607px;}
.fs7_c01052{font-size:84.016798px;}
.fsf_c01052{font-size:84.026246px;}
.fs9_c01052{font-size:90.014579px;}
.fs0_c01052{font-size:96.000000px;}
.fs1_c01052{font-size:102.013055px;}
.fs8_c01052{font-size:102.020398px;}
.fs10_c01052{font-size:102.031870px;}
.y0_c01052{bottom:0.000000px;}
.y145_c01052{bottom:72.007650px;}
.y144_c01052{bottom:73.432987px;}
.y143_c01052{bottom:75.094837px;}
.y142_c01052{bottom:75.911512px;}
.y141_c01052{bottom:76.748925px;}
.y140_c01052{bottom:77.829262px;}
.y13f_c01052{bottom:78.956850px;}
.y13e_c01052{bottom:80.860087px;}
.y13d_c01052{bottom:82.803487px;}
.y13c_c01052{bottom:83.911500px;}
.y13b_c01052{bottom:119.868900px;}
.y13a_c01052{bottom:120.614813px;}
.y139_c01052{bottom:122.194538px;}
.y138_c01052{bottom:123.456488px;}
.y137_c01052{bottom:125.482463px;}
.y136_c01052{bottom:126.264000px;}
.y135_c01052{bottom:129.801338px;}
.y134_c01052{bottom:131.079075px;}
.y133_c01052{bottom:132.611437px;}
.y132_c01052{bottom:134.132888px;}
.y131_c01052{bottom:155.396513px;}
.y130_c01052{bottom:156.937800px;}
.y12f_c01052{bottom:157.714913px;}
.y12e_c01052{bottom:158.492025px;}
.y12d_c01052{bottom:159.268687px;}
.y12c_c01052{bottom:159.789450px;}
.y12b_c01052{bottom:162.051150px;}
.y12a_c01052{bottom:164.114663px;}
.y129_c01052{bottom:166.140488px;}
.y128_c01052{bottom:167.358825px;}
.y127_c01052{bottom:168.431400px;}
.y126_c01052{bottom:168.925575px;}
.y125_c01052{bottom:171.403500px;}
.y124_c01052{bottom:196.962037px;}
.y123_c01052{bottom:197.431387px;}
.y122_c01052{bottom:198.066450px;}
.y121_c01052{bottom:199.140337px;}
.y120_c01052{bottom:200.841900px;}
.y11f_c01052{bottom:201.469388px;}
.y11e_c01052{bottom:203.464313px;}
.y11d_c01052{bottom:203.922863px;}
.y11c_c01052{bottom:204.704175px;}
.y11b_c01052{bottom:205.159538px;}
.y11a_c01052{bottom:228.529538px;}
.y119_c01052{bottom:229.437187px;}
.y118_c01052{bottom:230.086650px;}
.y117_c01052{bottom:232.534575px;}
.y116_c01052{bottom:233.203950px;}
.y115_c01052{bottom:234.071625px;}
.y114_c01052{bottom:236.713687px;}
.y113_c01052{bottom:237.411450px;}
.y112_c01052{bottom:238.475700px;}
.y111_c01052{bottom:239.830463px;}
.y110_c01052{bottom:240.467100px;}
.y10f_c01052{bottom:241.353113px;}
.y10e_c01052{bottom:266.979413px;}
.y10d_c01052{bottom:267.870450px;}
.y10c_c01052{bottom:268.933050px;}
.y10b_c01052{bottom:269.472713px;}
.y10a_c01052{bottom:270.194025px;}
.y109_c01052{bottom:271.428450px;}
.y108_c01052{bottom:272.849213px;}
.y107_c01052{bottom:273.712650px;}
.y106_c01052{bottom:275.135475px;}
.y105_c01052{bottom:276.549075px;}
.y104_c01052{bottom:276.906487px;}
.y103_c01052{bottom:278.084475px;}
.y102_c01052{bottom:303.476625px;}
.y101_c01052{bottom:305.508713px;}
.y100_c01052{bottom:308.593425px;}
.yff_c01052{bottom:309.711788px;}
.yfe_c01052{bottom:310.158600px;}
.yfd_c01052{bottom:312.347625px;}
.yfc_c01052{bottom:313.242638px;}
.yfb_c01052{bottom:315.658538px;}
.yfa_c01052{bottom:316.316325px;}
.yf9_c01052{bottom:316.973850px;}
.yf8_c01052{bottom:339.067650px;}
.yf7_c01052{bottom:339.936450px;}
.yf6_c01052{bottom:340.765275px;}
.yf5_c01052{bottom:342.971175px;}
.yf4_c01052{bottom:343.798988px;}
.yf3_c01052{bottom:345.756038px;}
.yf2_c01052{bottom:348.781275px;}
.yf1_c01052{bottom:349.597950px;}
.yf0_c01052{bottom:351.279000px;}
.yef_c01052{bottom:376.272969px;}
.yee_c01052{bottom:377.150118px;}
.yed_c01052{bottom:377.746191px;}
.yec_c01052{bottom:379.456776px;}
.yeb_c01052{bottom:382.212663px;}
.yea_c01052{bottom:383.236332px;}
.ye9_c01052{bottom:384.045528px;}
.ye8_c01052{bottom:384.661290px;}
.ye7_c01052{bottom:386.101494px;}
.ye6_c01052{bottom:386.936496px;}
.ye5_c01052{bottom:388.063404px;}
.ye4_c01052{bottom:390.393195px;}
.ye3_c01052{bottom:409.666284px;}
.ye2_c01052{bottom:410.672556px;}
.ye1_c01052{bottom:411.433938px;}
.ye0_c01052{bottom:413.692854px;}
.ydf_c01052{bottom:415.221666px;}
.yde_c01052{bottom:416.341668px;}
.ydd_c01052{bottom:416.915154px;}
.ydc_c01052{bottom:417.648390px;}
.ydb_c01052{bottom:419.507973px;}
.yda_c01052{bottom:420.636939px;}
.yd9_c01052{bottom:447.875463px;}
.yd8_c01052{bottom:448.447074px;}
.yd7_c01052{bottom:449.567157px;}
.yd6_c01052{bottom:449.975130px;}
.yd5_c01052{bottom:451.082457px;}
.yd4_c01052{bottom:451.642701px;}
.yd3_c01052{bottom:452.419014px;}
.yd2_c01052{bottom:453.907653px;}
.yd1_c01052{bottom:454.276641px;}
.yd0_c01052{bottom:455.978607px;}
.ycf_c01052{bottom:457.282401px;}
.yce_c01052{bottom:458.042973px;}
.ycd_c01052{bottom:458.418777px;}
.ycc_c01052{bottom:458.984286px;}
.ycb_c01052{bottom:480.064170px;}
.yca_c01052{bottom:482.464503px;}
.yc9_c01052{bottom:483.287844px;}
.yc8_c01052{bottom:486.204330px;}
.yc7_c01052{bottom:487.020852px;}
.yc6_c01052{bottom:488.587284px;}
.yc5_c01052{bottom:490.195941px;}
.yc4_c01052{bottom:490.993383px;}
.yc3_c01052{bottom:492.840321px;}
.yc2_c01052{bottom:493.920834px;}
.yc1_c01052{bottom:495.457356px;}
.yc0_c01052{bottom:496.254096px;}
.ybf_c01052{bottom:515.986773px;}
.ybe_c01052{bottom:518.187687px;}
.ybd_c01052{bottom:518.928540px;}
.ybc_c01052{bottom:521.855940px;}
.ybb_c01052{bottom:522.576957px;}
.yba_c01052{bottom:525.237453px;}
.yb9_c01052{bottom:527.174556px;}
.yb8_c01052{bottom:527.933529px;}
.yb7_c01052{bottom:528.381729px;}
.yb6_c01052{bottom:530.822271px;}
.yb5_c01052{bottom:552.892614px;}
.yb4_c01052{bottom:554.512209px;}
.yb3_c01052{bottom:555.708444px;}
.yb2_c01052{bottom:557.102778px;}
.yb1_c01052{bottom:557.700450px;}
.yb0_c01052{bottom:559.873032px;}
.yaf_c01052{bottom:560.489631px;}
.yae_c01052{bottom:561.485013px;}
.yad_c01052{bottom:563.460171px;}
.yac_c01052{bottom:564.440757px;}
.yab_c01052{bottom:564.846000px;}
.yaa_c01052{bottom:590.251590px;}
.ya9_c01052{bottom:592.648050px;}
.ya8_c01052{bottom:593.634870px;}
.ya7_c01052{bottom:594.034140px;}
.ya6_c01052{bottom:595.846830px;}
.ya5_c01052{bottom:596.221140px;}
.ya4_c01052{bottom:598.422060px;}
.ya3_c01052{bottom:599.009460px;}
.ya2_c01052{bottom:600.199260px;}
.ya1_c01052{bottom:600.996210px;}
.ya0_c01052{bottom:625.743510px;}
.y9f_c01052{bottom:626.373780px;}
.y9e_c01052{bottom:626.995290px;}
.y9d_c01052{bottom:628.273080px;}
.y9c_c01052{bottom:629.535870px;}
.y9b_c01052{bottom:631.229460px;}
.y9a_c01052{bottom:632.486730px;}
.y99_c01052{bottom:633.758790px;}
.y98_c01052{bottom:635.630640px;}
.y97_c01052{bottom:636.480960px;}
.y96_c01052{bottom:637.722660px;}
.y95_c01052{bottom:663.075330px;}
.y94_c01052{bottom:664.147410px;}
.y93_c01052{bottom:664.708560px;}
.y92_c01052{bottom:666.457770px;}
.y91_c01052{bottom:667.344570px;}
.y90_c01052{bottom:668.769660px;}
.y8f_c01052{bottom:671.233110px;}
.y8e_c01052{bottom:671.769210px;}
.y8d_c01052{bottom:672.828120px;}
.y8c_c01052{bottom:694.849170px;}
.y8b_c01052{bottom:696.055650px;}
.y8a_c01052{bottom:697.917330px;}
.y89_c01052{bottom:698.618880px;}
.y88_c01052{bottom:700.706670px;}
.y87_c01052{bottom:702.106740px;}
.y86_c01052{bottom:702.837060px;}
.y85_c01052{bottom:704.187330px;}
.y84_c01052{bottom:705.118650px;}
.y83_c01052{bottom:706.512750px;}
.y82_c01052{bottom:707.430060px;}
.y81_c01052{bottom:708.574620px;}
.y80_c01052{bottom:709.282230px;}
.y7f_c01052{bottom:730.909770px;}
.y7e_c01052{bottom:731.637210px;}
.y7d_c01052{bottom:733.634280px;}
.y7c_c01052{bottom:734.135040px;}
.y7b_c01052{bottom:734.693730px;}
.y7a_c01052{bottom:736.379520px;}
.y79_c01052{bottom:736.761540px;}
.y78_c01052{bottom:738.808260px;}
.y77_c01052{bottom:739.569240px;}
.y76_c01052{bottom:740.329680px;}
.y75_c01052{bottom:742.499820px;}
.y74_c01052{bottom:768.797070px;}
.y73_c01052{bottom:769.249290px;}
.y72_c01052{bottom:771.248940px;}
.y71_c01052{bottom:773.448030px;}
.y70_c01052{bottom:774.099900px;}
.y6f_c01052{bottom:776.746980px;}
.y6e_c01052{bottom:778.091850px;}
.y6d_c01052{bottom:778.956000px;}
.y68_c01052{bottom:812.185152px;}
.y69_c01052{bottom:812.185716px;}
.y6c_c01052{bottom:812.186148px;}
.y6a_c01052{bottom:812.186244px;}
.y6b_c01052{bottom:812.186460px;}
.y67_c01052{bottom:840.100776px;}
.y66_c01052{bottom:841.251396px;}
.y65_c01052{bottom:841.772760px;}
.y64_c01052{bottom:843.097908px;}
.y63_c01052{bottom:843.587052px;}
.y62_c01052{bottom:844.599552px;}
.y61_c01052{bottom:845.038476px;}
.y60_c01052{bottom:846.150984px;}
.y5f_c01052{bottom:847.072140px;}
.y5e_c01052{bottom:847.566324px;}
.y5d_c01052{bottom:848.583024px;}
.y5c_c01052{bottom:849.385128px;}
.y5b_c01052{bottom:876.447720px;}
.y5a_c01052{bottom:877.599972px;}
.y59_c01052{bottom:878.168868px;}
.y58_c01052{bottom:879.316512px;}
.y57_c01052{bottom:880.062252px;}
.y56_c01052{bottom:881.565456px;}
.y55_c01052{bottom:882.308100px;}
.y54_c01052{bottom:883.653696px;}
.y53_c01052{bottom:884.182812px;}
.y52_c01052{bottom:885.884280px;}
.y51_c01052{bottom:886.628316px;}
.y50_c01052{bottom:887.188932px;}
.y4f_c01052{bottom:912.093276px;}
.y4e_c01052{bottom:913.329684px;}
.y4d_c01052{bottom:913.953480px;}
.y4c_c01052{bottom:915.057660px;}
.y4b_c01052{bottom:915.497964px;}
.y4a_c01052{bottom:916.918416px;}
.y49_c01052{bottom:917.526624px;}
.y48_c01052{bottom:917.976948px;}
.y47_c01052{bottom:919.825332px;}
.y46_c01052{bottom:920.765844px;}
.y45_c01052{bottom:921.211764px;}
.y44_c01052{bottom:948.006372px;}
.y43_c01052{bottom:948.796776px;}
.y42_c01052{bottom:949.576512px;}
.y41_c01052{bottom:950.044932px;}
.y40_c01052{bottom:950.672220px;}
.y3f_c01052{bottom:951.129792px;}
.y3e_c01052{bottom:952.529004px;}
.y3d_c01052{bottom:953.149104px;}
.y3c_c01052{bottom:954.541740px;}
.y3b_c01052{bottom:955.001148px;}
.y3a_c01052{bottom:955.313820px;}
.y39_c01052{bottom:956.538528px;}
.y38_c01052{bottom:956.856240px;}
.y37_c01052{bottom:983.268384px;}
.y36_c01052{bottom:983.627016px;}
.y35_c01052{bottom:984.366768px;}
.y34_c01052{bottom:984.978876px;}
.y33_c01052{bottom:986.067096px;}
.y32_c01052{bottom:986.432148px;}
.y31_c01052{bottom:987.652764px;}
.y30_c01052{bottom:988.140312px;}
.y2f_c01052{bottom:989.109588px;}
.y2e_c01052{bottom:990.072528px;}
.y2d_c01052{bottom:1020.545784px;}
.y2c_c01052{bottom:1021.483020px;}
.y2b_c01052{bottom:1022.051244px;}
.y2a_c01052{bottom:1024.323288px;}
.y29_c01052{bottom:1024.695876px;}
.y28_c01052{bottom:1025.454684px;}
.y27_c01052{bottom:1025.991696px;}
.y26_c01052{bottom:1027.322760px;}
.y25_c01052{bottom:1028.249064px;}
.y24_c01052{bottom:1029.006024px;}
.y23_c01052{bottom:1030.309884px;}
.y22_c01052{bottom:1056.750684px;}
.y21_c01052{bottom:1058.439804px;}
.y20_c01052{bottom:1059.550644px;}
.y1f_c01052{bottom:1059.933552px;}
.y1e_c01052{bottom:1061.250408px;}
.y1d_c01052{bottom:1061.612040px;}
.y1c_c01052{bottom:1062.764868px;}
.y1b_c01052{bottom:1063.119492px;}
.y1a_c01052{bottom:1064.063688px;}
.y19_c01052{bottom:1064.441412px;}
.y18_c01052{bottom:1065.572244px;}
.y17_c01052{bottom:1065.952968px;}
.y16_c01052{bottom:1090.346388px;}
.y15_c01052{bottom:1090.711788px;}
.y14_c01052{bottom:1092.299676px;}
.y13_c01052{bottom:1093.366164px;}
.y12_c01052{bottom:1094.260836px;}
.y11_c01052{bottom:1094.787948px;}
.y10_c01052{bottom:1095.871716px;}
.yf_c01052{bottom:1096.571604px;}
.ye_c01052{bottom:1097.280060px;}
.yd_c01052{bottom:1099.026156px;}
.yc_c01052{bottom:1100.101572px;}
.yb_c01052{bottom:1100.788236px;}
.ya_c01052{bottom:1128.157656px;}
.y9_c01052{bottom:1128.540840px;}
.y8_c01052{bottom:1130.109768px;}
.y7_c01052{bottom:1130.480904px;}
.y6_c01052{bottom:1131.177312px;}
.y5_c01052{bottom:1131.712992px;}
.y4_c01052{bottom:1132.788744px;}
.y3_c01052{bottom:1134.544176px;}
.y2_c01052{bottom:1135.083000px;}
.y1_c01052{bottom:1193.805000px;}
.h6_c01052{height:72.009215px;}
.he_c01052{height:72.011663px;}
.h8_c01052{height:72.014399px;}
.h10_c01052{height:72.022496px;}
.h5_c01052{height:78.009983px;}
.hd_c01052{height:78.012635px;}
.h7_c01052{height:78.015598px;}
.hf_c01052{height:78.024371px;}
.h4_c01052{height:84.010751px;}
.hc_c01052{height:84.013607px;}
.h9_c01052{height:84.016798px;}
.h11_c01052{height:84.026246px;}
.hb_c01052{height:90.014579px;}
.h2_c01052{height:96.000000px;}
.h3_c01052{height:102.013055px;}
.ha_c01052{height:102.020398px;}
.h12_c01052{height:102.031870px;}
.h0_c01052{height:1246.320000px;}
.h1_c01052{height:1246.500000px;}
.w1_c01052{width:887.250000px;}
.w0_c01052{width:887.490000px;}
.x0_c01052{left:0.000000px;}
.xc9_c01052{left:140.077725px;}
.xb2_c01052{left:141.865200px;}
.x55_c01052{left:147.257430px;}
.x9e_c01052{left:149.685954px;}
.x92_c01052{left:150.721029px;}
.x84_c01052{left:151.931586px;}
.x5d_c01052{left:153.425310px;}
.x39_c01052{left:155.296896px;}
.x16_c01052{left:156.748260px;}
.xb_c01052{left:158.570448px;}
.x7c_c01052{left:175.017000px;}
.x17_c01052{left:179.136900px;}
.xc2_c01052{left:182.128988px;}
.x93_c01052{left:183.972123px;}
.x8b_c01052{left:186.023766px;}
.x5e_c01052{left:187.155150px;}
.x31_c01052{left:188.785560px;}
.xda_c01052{left:192.205500px;}
.xbb_c01052{left:194.072963px;}
.x75_c01052{left:196.860390px;}
.xc_c01052{left:201.486948px;}
.x94_c01052{left:206.100528px;}
.x41_c01052{left:209.281176px;}
.xd2_c01052{left:213.757050px;}
.xac_c01052{left:216.448050px;}
.x6f_c01052{left:217.934160px;}
.x6a_c01052{left:219.277680px;}
.x4a_c01052{left:220.314792px;}
.xbc_c01052{left:225.902438px;}
.x7d_c01052{left:229.494000px;}
.x3a_c01052{left:232.055172px;}
.x1f_c01052{left:233.923512px;}
.xb3_c01052{left:237.862800px;}
.x9f_c01052{left:239.272548px;}
.x5f_c01052{left:241.682070px;}
.x4b_c01052{left:243.537744px;}
.x18_c01052{left:245.687844px;}
.xca_c01052{left:247.840125px;}
.x8c_c01052{left:250.045854px;}
.x6b_c01052{left:252.760350px;}
.x32_c01052{left:256.007220px;}
.xa6_c01052{left:259.666500px;}
.x70_c01052{left:262.701060px;}
.x2b_c01052{left:266.046960px;}
.x2_c01052{left:267.880500px;}
.xcb_c01052{left:269.348212px;}
.xc3_c01052{left:270.687825px;}
.x56_c01052{left:274.897080px;}
.x42_c01052{left:277.044756px;}
.x20_c01052{left:278.420292px;}
.xd3_c01052{left:280.394888px;}
.x85_c01052{left:283.241136px;}
.x60_c01052{left:285.371700px;}
.x4c_c01052{left:286.472736px;}
.x2c_c01052{left:288.402180px;}
.xbd_c01052{left:293.661412px;}
.x76_c01052{left:295.624350px;}
.x3_c01052{left:301.557000px;}
.x4e_c01052{left:308.607000px;}
.x43_c01052{left:309.994284px;}
.xa0_c01052{left:314.756694px;}
.xcc_c01052{left:315.973537px;}
.x86_c01052{left:317.737152px;}
.x57_c01052{left:319.671780px;}
.x2d_c01052{left:321.241236px;}
.x19_c01052{left:323.431596px;}
.xb4_c01052{left:326.166637px;}
.x95_c01052{left:327.539715px;}
.x21_c01052{left:332.938428px;}
.xd4_c01052{left:335.947163px;}
.xad_c01052{left:337.279162px;}
.x7e_c01052{left:339.225000px;}
.x1a_c01052{left:344.282760px;}
.xbe_c01052{left:346.858050px;}
.x61_c01052{left:351.775380px;}
.xa7_c01052{left:359.575500px;}
.x71_c01052{left:361.245540px;}
.x3b_c01052{left:363.214560px;}
.x4d_c01052{left:364.512204px;}
.xcd_c01052{left:368.969700px;}
.xa1_c01052{left:370.176729px;}
.x44_c01052{left:371.411268px;}
.x4f_c01052{left:375.850500px;}
.xd_c01052{left:377.831448px;}
.xae_c01052{left:382.025250px;}
.x33_c01052{left:388.035444px;}
.xdb_c01052{left:391.174500px;}
.x7f_c01052{left:394.524000px;}
.x62_c01052{left:396.090480px;}
.x8d_c01052{left:405.217587px;}
.x6c_c01052{left:406.695150px;}
.x4_c01052{left:411.271500px;}
.xc4_c01052{left:413.163975px;}
.xb5_c01052{left:415.079625px;}
.x77_c01052{left:417.900240px;}
.x1_c01052{left:419.310000px;}
.x2e_c01052{left:420.752928px;}
.xe_c01052{left:422.109948px;}
.xa2_c01052{left:424.999845px;}
.x72_c01052{left:428.224890px;}
.x1b_c01052{left:433.403844px;}
.x78_c01052{left:438.716580px;}
.x22_c01052{left:442.847676px;}
.x45_c01052{left:445.537944px;}
.x96_c01052{left:449.344902px;}
.xc5_c01052{left:458.015813px;}
.x63_c01052{left:460.377690px;}
.x34_c01052{left:463.664868px;}
.xf_c01052{left:465.852948px;}
.xdc_c01052{left:467.884500px;}
.xb6_c01052{left:469.069275px;}
.x9b_c01052{left:470.377092px;}
.x8e_c01052{left:472.246851px;}
.x46_c01052{left:474.752400px;}
.x5_c01052{left:478.506000px;}
.xa8_c01052{left:480.585000px;}
.x58_c01052{left:484.891710px;}
.x3c_c01052{left:486.040092px;}
.x23_c01052{left:487.459956px;}
.xd5_c01052{left:489.748350px;}
.xaf_c01052{left:491.499937px;}
.x64_c01052{left:495.168000px;}
.xdd_c01052{left:500.551500px;}
.x50_c01052{left:508.204500px;}
.x24_c01052{left:509.340096px;}
.x1c_c01052{left:510.831096px;}
.x6_c01052{left:511.986000px;}
.xb0_c01052{left:513.875250px;}
.x27_c01052{left:521.493264px;}
.xd6_c01052{left:523.711538px;}
.x87_c01052{left:526.727613px;}
.x10_c01052{left:533.588448px;}
.x8f_c01052{left:537.513804px;}
.x79_c01052{left:539.405100px;}
.x51_c01052{left:540.798000px;}
.x47_c01052{left:542.253480px;}
.xce_c01052{left:546.772087px;}
.x80_c01052{left:549.478500px;}
.x6d_c01052{left:551.251230px;}
.x7_c01052{left:555.511500px;}
.xb7_c01052{left:557.839725px;}
.x88_c01052{left:559.531764px;}
.x65_c01052{left:561.870180px;}
.x2f_c01052{left:564.964536px;}
.x11_c01052{left:566.532948px;}
.xa3_c01052{left:570.370920px;}
.x90_c01052{left:571.539132px;}
.x3d_c01052{left:574.457676px;}
.x8_c01052{left:578.707500px;}
.x73_c01052{left:583.495980px;}
.xbf_c01052{left:590.743538px;}
.xa9_c01052{left:591.979500px;}
.x35_c01052{left:596.560116px;}
.x30_c01052{left:597.595068px;}
.x1d_c01052{left:598.657680px;}
.x59_c01052{left:606.514500px;}
.xd7_c01052{left:611.774925px;}
.x7a_c01052{left:616.437690px;}
.x3e_c01052{left:618.346980px;}
.x28_c01052{left:620.358660px;}
.x12_c01052{left:622.449948px;}
.xde_c01052{left:624.039000px;}
.xb8_c01052{left:634.954050px;}
.xa4_c01052{left:636.143943px;}
.x5a_c01052{left:639.400980px;}
.x25_c01052{left:642.996960px;}
.xcf_c01052{left:645.105000px;}
.x52_c01052{left:650.752500px;}
.xc6_c01052{left:656.328338px;}
.xa5_c01052{left:659.089149px;}
.x81_c01052{left:660.145500px;}
.x66_c01052{left:661.307700px;}
.x48_c01052{left:663.242424px;}
.xd8_c01052{left:666.635662px;}
.xd0_c01052{left:667.736625px;}
.x5b_c01052{left:668.865750px;}
.x36_c01052{left:675.417636px;}
.x9_c01052{left:676.765500px;}
.x97_c01052{left:680.572533px;}
.x3f_c01052{left:685.854900px;}
.x13_c01052{left:689.105448px;}
.x89_c01052{left:692.572179px;}
.x67_c01052{left:694.734540px;}
.x1e_c01052{left:698.038596px;}
.xa_c01052{left:700.714500px;}
.xc7_c01052{left:701.723325px;}
.x98_c01052{left:704.571465px;}
.xaa_c01052{left:713.368500px;}
.x74_c01052{left:717.202650px;}
.x37_c01052{left:719.937552px;}
.xb1_c01052{left:724.024500px;}
.x82_c01052{left:726.603000px;}
.x26_c01052{left:731.555544px;}
.xc8_c01052{left:735.206513px;}
.x9c_c01052{left:738.026925px;}
.x29_c01052{left:743.203476px;}
.xc0_c01052{left:745.618388px;}
.xab_c01052{left:748.120500px;}
.x7b_c01052{left:749.541000px;}
.x53_c01052{left:750.735000px;}
.x6e_c01052{left:762.690150px;}
.xd9_c01052{left:767.706187px;}
.xd1_c01052{left:769.077188px;}
.x99_c01052{left:770.466153px;}
.x54_c01052{left:773.346000px;}
.x49_c01052{left:774.680700px;}
.x2a_c01052{left:775.745568px;}
.xb9_c01052{left:780.249750px;}
.x68_c01052{left:783.391770px;}
.x40_c01052{left:787.143792px;}
.x14_c01052{left:788.348448px;}
.xc1_c01052{left:790.990050px;}
.x9d_c01052{left:797.181978px;}
.x9a_c01052{left:804.056247px;}
.x38_c01052{left:808.278384px;}
.x15_c01052{left:811.185948px;}
.x83_c01052{left:816.580500px;}
.x8a_c01052{left:826.244040px;}
.x91_c01052{left:827.381511px;}
.x5c_c01052{left:829.175880px;}
.xba_c01052{left:835.943775px;}
.x69_c01052{left:840.864630px;}
@media print{
.v0_c01052{vertical-align:0.000000pt;}
.ls0_c01052{letter-spacing:0.000000pt;}
.ws0_c01052{word-spacing:0.000000pt;}
.fs4_c01052{font-size:64.008191pt;}
.fsc_c01052{font-size:64.010367pt;}
.fs6_c01052{font-size:64.012799pt;}
.fse_c01052{font-size:64.019997pt;}
.fs3_c01052{font-size:69.342207pt;}
.fsb_c01052{font-size:69.344564pt;}
.fs5_c01052{font-size:69.347199pt;}
.fsd_c01052{font-size:69.354997pt;}
.fs2_c01052{font-size:74.676223pt;}
.fsa_c01052{font-size:74.678762pt;}
.fs7_c01052{font-size:74.681599pt;}
.fsf_c01052{font-size:74.689996pt;}
.fs9_c01052{font-size:80.012959pt;}
.fs0_c01052{font-size:85.333333pt;}
.fs1_c01052{font-size:90.678271pt;}
.fs8_c01052{font-size:90.684798pt;}
.fs10_c01052{font-size:90.694996pt;}
.y0_c01052{bottom:0.000000pt;}
.y145_c01052{bottom:64.006800pt;}
.y144_c01052{bottom:65.273767pt;}
.y143_c01052{bottom:66.750967pt;}
.y142_c01052{bottom:67.476900pt;}
.y141_c01052{bottom:68.221267pt;}
.y140_c01052{bottom:69.181567pt;}
.y13f_c01052{bottom:70.183867pt;}
.y13e_c01052{bottom:71.875633pt;}
.y13d_c01052{bottom:73.603100pt;}
.y13c_c01052{bottom:74.588000pt;}
.y13b_c01052{bottom:106.550133pt;}
.y13a_c01052{bottom:107.213167pt;}
.y139_c01052{bottom:108.617367pt;}
.y138_c01052{bottom:109.739100pt;}
.y137_c01052{bottom:111.539967pt;}
.y136_c01052{bottom:112.234667pt;}
.y135_c01052{bottom:115.378967pt;}
.y134_c01052{bottom:116.514733pt;}
.y133_c01052{bottom:117.876833pt;}
.y132_c01052{bottom:119.229233pt;}
.y131_c01052{bottom:138.130233pt;}
.y130_c01052{bottom:139.500267pt;}
.y12f_c01052{bottom:140.191033pt;}
.y12e_c01052{bottom:140.881800pt;}
.y12d_c01052{bottom:141.572167pt;}
.y12c_c01052{bottom:142.035067pt;}
.y12b_c01052{bottom:144.045467pt;}
.y12a_c01052{bottom:145.879700pt;}
.y129_c01052{bottom:147.680433pt;}
.y128_c01052{bottom:148.763400pt;}
.y127_c01052{bottom:149.716800pt;}
.y126_c01052{bottom:150.156067pt;}
.y125_c01052{bottom:152.358667pt;}
.y124_c01052{bottom:175.077367pt;}
.y123_c01052{bottom:175.494567pt;}
.y122_c01052{bottom:176.059067pt;}
.y121_c01052{bottom:177.013633pt;}
.y120_c01052{bottom:178.526133pt;}
.y11f_c01052{bottom:179.083900pt;}
.y11e_c01052{bottom:180.857167pt;}
.y11d_c01052{bottom:181.264767pt;}
.y11c_c01052{bottom:181.959267pt;}
.y11b_c01052{bottom:182.364033pt;}
.y11a_c01052{bottom:203.137367pt;}
.y119_c01052{bottom:203.944167pt;}
.y118_c01052{bottom:204.521467pt;}
.y117_c01052{bottom:206.697400pt;}
.y116_c01052{bottom:207.292400pt;}
.y115_c01052{bottom:208.063667pt;}
.y114_c01052{bottom:210.412167pt;}
.y113_c01052{bottom:211.032400pt;}
.y112_c01052{bottom:211.978400pt;}
.y111_c01052{bottom:213.182633pt;}
.y110_c01052{bottom:213.748533pt;}
.y10f_c01052{bottom:214.536100pt;}
.y10e_c01052{bottom:237.315033pt;}
.y10d_c01052{bottom:238.107067pt;}
.y10c_c01052{bottom:239.051600pt;}
.y10b_c01052{bottom:239.531300pt;}
.y10a_c01052{bottom:240.172467pt;}
.y109_c01052{bottom:241.269733pt;}
.y108_c01052{bottom:242.532633pt;}
.y107_c01052{bottom:243.300133pt;}
.y106_c01052{bottom:244.564867pt;}
.y105_c01052{bottom:245.821400pt;}
.y104_c01052{bottom:246.139100pt;}
.y103_c01052{bottom:247.186200pt;}
.y102_c01052{bottom:269.757000pt;}
.y101_c01052{bottom:271.563300pt;}
.y100_c01052{bottom:274.305267pt;}
.yff_c01052{bottom:275.299367pt;}
.yfe_c01052{bottom:275.696533pt;}
.yfd_c01052{bottom:277.642333pt;}
.yfc_c01052{bottom:278.437900pt;}
.yfb_c01052{bottom:280.585367pt;}
.yfa_c01052{bottom:281.170067pt;}
.yf9_c01052{bottom:281.754533pt;}
.yf8_c01052{bottom:301.393467pt;}
.yf7_c01052{bottom:302.165733pt;}
.yf6_c01052{bottom:302.902467pt;}
.yf5_c01052{bottom:304.863267pt;}
.yf4_c01052{bottom:305.599100pt;}
.yf3_c01052{bottom:307.338700pt;}
.yf2_c01052{bottom:310.027800pt;}
.yf1_c01052{bottom:310.753733pt;}
.yf0_c01052{bottom:312.248000pt;}
.yef_c01052{bottom:334.464861pt;}
.yee_c01052{bottom:335.244549pt;}
.yed_c01052{bottom:335.774392pt;}
.yec_c01052{bottom:337.294912pt;}
.yeb_c01052{bottom:339.744589pt;}
.yea_c01052{bottom:340.654517pt;}
.ye9_c01052{bottom:341.373803pt;}
.ye8_c01052{bottom:341.921147pt;}
.ye7_c01052{bottom:343.201328pt;}
.ye6_c01052{bottom:343.943552pt;}
.ye5_c01052{bottom:344.945248pt;}
.ye4_c01052{bottom:347.016173pt;}
.ye3_c01052{bottom:364.147808pt;}
.ye2_c01052{bottom:365.042272pt;}
.ye1_c01052{bottom:365.719056pt;}
.ye0_c01052{bottom:367.726981pt;}
.ydf_c01052{bottom:369.085925pt;}
.yde_c01052{bottom:370.081483pt;}
.ydd_c01052{bottom:370.591248pt;}
.ydc_c01052{bottom:371.243013pt;}
.ydb_c01052{bottom:372.895976pt;}
.yda_c01052{bottom:373.899501pt;}
.yd9_c01052{bottom:398.111523pt;}
.yd8_c01052{bottom:398.619621pt;}
.yd7_c01052{bottom:399.615251pt;}
.yd6_c01052{bottom:399.977893pt;}
.yd5_c01052{bottom:400.962184pt;}
.yd4_c01052{bottom:401.460179pt;}
.yd3_c01052{bottom:402.150235pt;}
.yd2_c01052{bottom:403.473469pt;}
.yd1_c01052{bottom:403.801459pt;}
.yd0_c01052{bottom:405.314317pt;}
.ycf_c01052{bottom:406.473245pt;}
.yce_c01052{bottom:407.149309pt;}
.ycd_c01052{bottom:407.483357pt;}
.ycc_c01052{bottom:407.986032pt;}
.ycb_c01052{bottom:426.723707pt;}
.yca_c01052{bottom:428.857336pt;}
.yc9_c01052{bottom:429.589195pt;}
.yc8_c01052{bottom:432.181627pt;}
.yc7_c01052{bottom:432.907424pt;}
.yc6_c01052{bottom:434.299808pt;}
.yc5_c01052{bottom:435.729725pt;}
.yc4_c01052{bottom:436.438563pt;}
.yc3_c01052{bottom:438.080285pt;}
.yc2_c01052{bottom:439.040741pt;}
.yc1_c01052{bottom:440.406539pt;}
.yc0_c01052{bottom:441.114752pt;}
.ybf_c01052{bottom:458.654909pt;}
.ybe_c01052{bottom:460.611277pt;}
.ybd_c01052{bottom:461.269813pt;}
.ybc_c01052{bottom:463.871947pt;}
.ybb_c01052{bottom:464.512851pt;}
.yba_c01052{bottom:466.877736pt;}
.yb9_c01052{bottom:468.599605pt;}
.yb8_c01052{bottom:469.274248pt;}
.yb7_c01052{bottom:469.672648pt;}
.yb6_c01052{bottom:471.842019pt;}
.yb5_c01052{bottom:491.460101pt;}
.yb4_c01052{bottom:492.899741pt;}
.yb3_c01052{bottom:493.963061pt;}
.yb2_c01052{bottom:495.202469pt;}
.yb1_c01052{bottom:495.733733pt;}
.yb0_c01052{bottom:497.664917pt;}
.yaf_c01052{bottom:498.213005pt;}
.yae_c01052{bottom:499.097789pt;}
.yad_c01052{bottom:500.853485pt;}
.yac_c01052{bottom:501.725117pt;}
.yab_c01052{bottom:502.085333pt;}
.yaa_c01052{bottom:524.668080pt;}
.ya9_c01052{bottom:526.798267pt;}
.ya8_c01052{bottom:527.675440pt;}
.ya7_c01052{bottom:528.030347pt;}
.ya6_c01052{bottom:529.641627pt;}
.ya5_c01052{bottom:529.974347pt;}
.ya4_c01052{bottom:531.930720pt;}
.ya3_c01052{bottom:532.452853pt;}
.ya2_c01052{bottom:533.510453pt;}
.ya1_c01052{bottom:534.218853pt;}
.ya0_c01052{bottom:556.216453pt;}
.y9f_c01052{bottom:556.776693pt;}
.y9e_c01052{bottom:557.329147pt;}
.y9d_c01052{bottom:558.464960pt;}
.y9c_c01052{bottom:559.587440pt;}
.y9b_c01052{bottom:561.092853pt;}
.y9a_c01052{bottom:562.210427pt;}
.y99_c01052{bottom:563.341147pt;}
.y98_c01052{bottom:565.005013pt;}
.y97_c01052{bottom:565.760853pt;}
.y96_c01052{bottom:566.864587pt;}
.y95_c01052{bottom:589.400293pt;}
.y94_c01052{bottom:590.353253pt;}
.y93_c01052{bottom:590.852053pt;}
.y92_c01052{bottom:592.406907pt;}
.y91_c01052{bottom:593.195173pt;}
.y90_c01052{bottom:594.461920pt;}
.y8f_c01052{bottom:596.651653pt;}
.y8e_c01052{bottom:597.128187pt;}
.y8d_c01052{bottom:598.069440pt;}
.y8c_c01052{bottom:617.643707pt;}
.y8b_c01052{bottom:618.716133pt;}
.y8a_c01052{bottom:620.370960pt;}
.y89_c01052{bottom:620.994560pt;}
.y88_c01052{bottom:622.850373pt;}
.y87_c01052{bottom:624.094880pt;}
.y86_c01052{bottom:624.744053pt;}
.y85_c01052{bottom:625.944293pt;}
.y84_c01052{bottom:626.772133pt;}
.y83_c01052{bottom:628.011333pt;}
.y82_c01052{bottom:628.826720pt;}
.y81_c01052{bottom:629.844107pt;}
.y80_c01052{bottom:630.473093pt;}
.y7f_c01052{bottom:649.697573pt;}
.y7e_c01052{bottom:650.344187pt;}
.y7d_c01052{bottom:652.119360pt;}
.y7c_c01052{bottom:652.564480pt;}
.y7b_c01052{bottom:653.061093pt;}
.y7a_c01052{bottom:654.559573pt;}
.y79_c01052{bottom:654.899147pt;}
.y78_c01052{bottom:656.718453pt;}
.y77_c01052{bottom:657.394880pt;}
.y76_c01052{bottom:658.070827pt;}
.y75_c01052{bottom:659.999840pt;}
.y74_c01052{bottom:683.375173pt;}
.y73_c01052{bottom:683.777147pt;}
.y72_c01052{bottom:685.554613pt;}
.y71_c01052{bottom:687.509360pt;}
.y70_c01052{bottom:688.088800pt;}
.y6f_c01052{bottom:690.441760pt;}
.y6e_c01052{bottom:691.637200pt;}
.y6d_c01052{bottom:692.405333pt;}
.y68_c01052{bottom:721.942357pt;}
.y69_c01052{bottom:721.942859pt;}
.y6c_c01052{bottom:721.943243pt;}
.y6a_c01052{bottom:721.943328pt;}
.y6b_c01052{bottom:721.943520pt;}
.y67_c01052{bottom:746.756245pt;}
.y66_c01052{bottom:747.779019pt;}
.y65_c01052{bottom:748.242453pt;}
.y64_c01052{bottom:749.420363pt;}
.y63_c01052{bottom:749.855157pt;}
.y62_c01052{bottom:750.755157pt;}
.y61_c01052{bottom:751.145312pt;}
.y60_c01052{bottom:752.134208pt;}
.y5f_c01052{bottom:752.953013pt;}
.y5e_c01052{bottom:753.392288pt;}
.y5d_c01052{bottom:754.296021pt;}
.y5c_c01052{bottom:755.009003pt;}
.y5b_c01052{bottom:779.064640pt;}
.y5a_c01052{bottom:780.088864pt;}
.y59_c01052{bottom:780.594549pt;}
.y58_c01052{bottom:781.614677pt;}
.y57_c01052{bottom:782.277557pt;}
.y56_c01052{bottom:783.613739pt;}
.y55_c01052{bottom:784.273867pt;}
.y54_c01052{bottom:785.469952pt;}
.y53_c01052{bottom:785.940277pt;}
.y52_c01052{bottom:787.452693pt;}
.y51_c01052{bottom:788.114059pt;}
.y50_c01052{bottom:788.612384pt;}
.y4f_c01052{bottom:810.749579pt;}
.y4e_c01052{bottom:811.848608pt;}
.y4d_c01052{bottom:812.403093pt;}
.y4c_c01052{bottom:813.384587pt;}
.y4b_c01052{bottom:813.775968pt;}
.y4a_c01052{bottom:815.038592pt;}
.y49_c01052{bottom:815.579221pt;}
.y48_c01052{bottom:815.979509pt;}
.y47_c01052{bottom:817.622517pt;}
.y46_c01052{bottom:818.458528pt;}
.y45_c01052{bottom:818.854901pt;}
.y44_c01052{bottom:842.672331pt;}
.y43_c01052{bottom:843.374912pt;}
.y42_c01052{bottom:844.068011pt;}
.y41_c01052{bottom:844.484384pt;}
.y40_c01052{bottom:845.041973pt;}
.y3f_c01052{bottom:845.448704pt;}
.y3e_c01052{bottom:846.692448pt;}
.y3d_c01052{bottom:847.243648pt;}
.y3c_c01052{bottom:848.481547pt;}
.y3b_c01052{bottom:848.889909pt;}
.y3a_c01052{bottom:849.167840pt;}
.y39_c01052{bottom:850.256469pt;}
.y38_c01052{bottom:850.538880pt;}
.y37_c01052{bottom:874.016341pt;}
.y36_c01052{bottom:874.335125pt;}
.y35_c01052{bottom:874.992683pt;}
.y34_c01052{bottom:875.536779pt;}
.y33_c01052{bottom:876.504085pt;}
.y32_c01052{bottom:876.828576pt;}
.y31_c01052{bottom:877.913568pt;}
.y30_c01052{bottom:878.346944pt;}
.y2f_c01052{bottom:879.208523pt;}
.y2e_c01052{bottom:880.064469pt;}
.y2d_c01052{bottom:907.151808pt;}
.y2c_c01052{bottom:907.984907pt;}
.y2b_c01052{bottom:908.489995pt;}
.y2a_c01052{bottom:910.509589pt;}
.y29_c01052{bottom:910.840779pt;}
.y28_c01052{bottom:911.515275pt;}
.y27_c01052{bottom:911.992619pt;}
.y26_c01052{bottom:913.175787pt;}
.y25_c01052{bottom:913.999168pt;}
.y24_c01052{bottom:914.672021pt;}
.y23_c01052{bottom:915.831008pt;}
.y22_c01052{bottom:939.333941pt;}
.y21_c01052{bottom:940.835381pt;}
.y20_c01052{bottom:941.822795pt;}
.y1f_c01052{bottom:942.163157pt;}
.y1e_c01052{bottom:943.333696pt;}
.y1d_c01052{bottom:943.655147pt;}
.y1c_c01052{bottom:944.679883pt;}
.y1b_c01052{bottom:944.995104pt;}
.y1a_c01052{bottom:945.834389pt;}
.y19_c01052{bottom:946.170144pt;}
.y18_c01052{bottom:947.175328pt;}
.y17_c01052{bottom:947.513749pt;}
.y16_c01052{bottom:969.196789pt;}
.y15_c01052{bottom:969.521589pt;}
.y14_c01052{bottom:970.933045pt;}
.y13_c01052{bottom:971.881035pt;}
.y12_c01052{bottom:972.676299pt;}
.y11_c01052{bottom:973.144843pt;}
.y10_c01052{bottom:974.108192pt;}
.yf_c01052{bottom:974.730315pt;}
.ye_c01052{bottom:975.360053pt;}
.yd_c01052{bottom:976.912139pt;}
.yc_c01052{bottom:977.868064pt;}
.yb_c01052{bottom:978.478432pt;}
.ya_c01052{bottom:1002.806805pt;}
.y9_c01052{bottom:1003.147413pt;}
.y8_c01052{bottom:1004.542016pt;}
.y7_c01052{bottom:1004.871915pt;}
.y6_c01052{bottom:1005.490944pt;}
.y5_c01052{bottom:1005.967104pt;}
.y4_c01052{bottom:1006.923328pt;}
.y3_c01052{bottom:1008.483712pt;}
.y2_c01052{bottom:1008.962667pt;}
.y1_c01052{bottom:1061.160000pt;}
.h6_c01052{height:64.008191pt;}
.he_c01052{height:64.010367pt;}
.h8_c01052{height:64.012799pt;}
.h10_c01052{height:64.019997pt;}
.h5_c01052{height:69.342207pt;}
.hd_c01052{height:69.344564pt;}
.h7_c01052{height:69.347199pt;}
.hf_c01052{height:69.354997pt;}
.h4_c01052{height:74.676223pt;}
.hc_c01052{height:74.678762pt;}
.h9_c01052{height:74.681599pt;}
.h11_c01052{height:74.689996pt;}
.hb_c01052{height:80.012959pt;}
.h2_c01052{height:85.333333pt;}
.h3_c01052{height:90.678271pt;}
.ha_c01052{height:90.684798pt;}
.h12_c01052{height:90.694996pt;}
.h0_c01052{height:1107.840000pt;}
.h1_c01052{height:1108.000000pt;}
.w1_c01052{width:788.666667pt;}
.w0_c01052{width:788.880000pt;}
.x0_c01052{left:0.000000pt;}
.xc9_c01052{left:124.513533pt;}
.xb2_c01052{left:126.102400pt;}
.x55_c01052{left:130.895493pt;}
.x9e_c01052{left:133.054181pt;}
.x92_c01052{left:133.974248pt;}
.x84_c01052{left:135.050299pt;}
.x5d_c01052{left:136.378053pt;}
.x39_c01052{left:138.041685pt;}
.x16_c01052{left:139.331787pt;}
.xb_c01052{left:140.951509pt;}
.x7c_c01052{left:155.570667pt;}
.x17_c01052{left:159.232800pt;}
.xc2_c01052{left:161.892433pt;}
.x93_c01052{left:163.530776pt;}
.x8b_c01052{left:165.354459pt;}
.x5e_c01052{left:166.360133pt;}
.x31_c01052{left:167.809387pt;}
.xda_c01052{left:170.849333pt;}
.xbb_c01052{left:172.509300pt;}
.x75_c01052{left:174.987013pt;}
.xc_c01052{left:179.099509pt;}
.x94_c01052{left:183.200469pt;}
.x41_c01052{left:186.027712pt;}
.xd2_c01052{left:190.006267pt;}
.xac_c01052{left:192.398267pt;}
.x6f_c01052{left:193.719253pt;}
.x6a_c01052{left:194.913493pt;}
.x4a_c01052{left:195.835371pt;}
.xbc_c01052{left:200.802167pt;}
.x7d_c01052{left:203.994667pt;}
.x3a_c01052{left:206.271264pt;}
.x1f_c01052{left:207.932011pt;}
.xb3_c01052{left:211.433600pt;}
.x9f_c01052{left:212.686709pt;}
.x5f_c01052{left:214.828507pt;}
.x4b_c01052{left:216.477995pt;}
.x18_c01052{left:218.389195pt;}
.xca_c01052{left:220.302333pt;}
.x8c_c01052{left:222.262981pt;}
.x6b_c01052{left:224.675867pt;}
.x32_c01052{left:227.561973pt;}
.xa6_c01052{left:230.814667pt;}
.x70_c01052{left:233.512053pt;}
.x2b_c01052{left:236.486187pt;}
.x2_c01052{left:238.116000pt;}
.xcb_c01052{left:239.420633pt;}
.xc3_c01052{left:240.611400pt;}
.x56_c01052{left:244.352960pt;}
.x42_c01052{left:246.262005pt;}
.x20_c01052{left:247.484704pt;}
.xd3_c01052{left:249.239900pt;}
.x85_c01052{left:251.769899pt;}
.x60_c01052{left:253.663733pt;}
.x4c_c01052{left:254.642432pt;}
.x2c_c01052{left:256.357493pt;}
.xbd_c01052{left:261.032367pt;}
.x76_c01052{left:262.777200pt;}
.x3_c01052{left:268.050667pt;}
.x4e_c01052{left:274.317333pt;}
.x43_c01052{left:275.550475pt;}
.xa0_c01052{left:279.783728pt;}
.xcc_c01052{left:280.865367pt;}
.x86_c01052{left:282.433024pt;}
.x57_c01052{left:284.152693pt;}
.x2d_c01052{left:285.547765pt;}
.x19_c01052{left:287.494752pt;}
.xb4_c01052{left:289.925900pt;}
.x95_c01052{left:291.146413pt;}
.x21_c01052{left:295.945269pt;}
.xd4_c01052{left:298.619700pt;}
.xad_c01052{left:299.803700pt;}
.x7e_c01052{left:301.533333pt;}
.x1a_c01052{left:306.029120pt;}
.xbe_c01052{left:308.318267pt;}
.x61_c01052{left:312.689227pt;}
.xa7_c01052{left:319.622667pt;}
.x71_c01052{left:321.107147pt;}
.x3b_c01052{left:322.857387pt;}
.x4d_c01052{left:324.010848pt;}
.xcd_c01052{left:327.973067pt;}
.xa1_c01052{left:329.045981pt;}
.x44_c01052{left:330.143349pt;}
.x4f_c01052{left:334.089333pt;}
.xd_c01052{left:335.850176pt;}
.xae_c01052{left:339.578000pt;}
.x33_c01052{left:344.920395pt;}
.xdb_c01052{left:347.710667pt;}
.x7f_c01052{left:350.688000pt;}
.x62_c01052{left:352.080427pt;}
.x8d_c01052{left:360.193411pt;}
.x6c_c01052{left:361.506800pt;}
.x4_c01052{left:365.574667pt;}
.xc4_c01052{left:367.256867pt;}
.xb5_c01052{left:368.959667pt;}
.x77_c01052{left:371.466880pt;}
.x1_c01052{left:372.720000pt;}
.x2e_c01052{left:374.002603pt;}
.xe_c01052{left:375.208843pt;}
.xa2_c01052{left:377.777640pt;}
.x72_c01052{left:380.644347pt;}
.x1b_c01052{left:385.247861pt;}
.x78_c01052{left:389.970293pt;}
.x22_c01052{left:393.642379pt;}
.x45_c01052{left:396.033728pt;}
.x96_c01052{left:399.417691pt;}
.xc5_c01052{left:407.125167pt;}
.x63_c01052{left:409.224613pt;}
.x34_c01052{left:412.146549pt;}
.xf_c01052{left:414.091509pt;}
.xdc_c01052{left:415.897333pt;}
.xb6_c01052{left:416.950467pt;}
.x9b_c01052{left:418.112971pt;}
.x8e_c01052{left:419.774979pt;}
.x46_c01052{left:422.002133pt;}
.x5_c01052{left:425.338667pt;}
.xa8_c01052{left:427.186667pt;}
.x58_c01052{left:431.014853pt;}
.x3c_c01052{left:432.035637pt;}
.x23_c01052{left:433.297739pt;}
.xd5_c01052{left:435.331867pt;}
.xaf_c01052{left:436.888833pt;}
.x64_c01052{left:440.149333pt;}
.xdd_c01052{left:444.934667pt;}
.x50_c01052{left:451.737333pt;}
.x24_c01052{left:452.746752pt;}
.x1c_c01052{left:454.072085pt;}
.x6_c01052{left:455.098667pt;}
.xb0_c01052{left:456.778000pt;}
.x27_c01052{left:463.549568pt;}
.xd6_c01052{left:465.521367pt;}
.x87_c01052{left:468.202323pt;}
.x10_c01052{left:474.300843pt;}
.x8f_c01052{left:477.790048pt;}
.x79_c01052{left:479.471200pt;}
.x51_c01052{left:480.709333pt;}
.x47_c01052{left:482.003093pt;}
.xce_c01052{left:486.019633pt;}
.x80_c01052{left:488.425333pt;}
.x6d_c01052{left:490.001093pt;}
.x7_c01052{left:493.788000pt;}
.xb7_c01052{left:495.857533pt;}
.x88_c01052{left:497.361568pt;}
.x65_c01052{left:499.440160pt;}
.x2f_c01052{left:502.190699pt;}
.x11_c01052{left:503.584843pt;}
.xa3_c01052{left:506.996373pt;}
.x90_c01052{left:508.034784pt;}
.x3d_c01052{left:510.629045pt;}
.x8_c01052{left:514.406667pt;}
.x73_c01052{left:518.663093pt;}
.xbf_c01052{left:525.105367pt;}
.xa9_c01052{left:526.204000pt;}
.x35_c01052{left:530.275659pt;}
.x30_c01052{left:531.195616pt;}
.x1d_c01052{left:532.140160pt;}
.x59_c01052{left:539.124000pt;}
.xd7_c01052{left:543.799933pt;}
.x7a_c01052{left:547.944613pt;}
.x3e_c01052{left:549.641760pt;}
.x28_c01052{left:551.429920pt;}
.x12_c01052{left:553.288843pt;}
.xde_c01052{left:554.701333pt;}
.xb8_c01052{left:564.403600pt;}
.xa4_c01052{left:565.461283pt;}
.x5a_c01052{left:568.356427pt;}
.x25_c01052{left:571.552853pt;}
.xcf_c01052{left:573.426667pt;}
.x52_c01052{left:578.446667pt;}
.xc6_c01052{left:583.402967pt;}
.xa5_c01052{left:585.857021pt;}
.x81_c01052{left:586.796000pt;}
.x66_c01052{left:587.829067pt;}
.x48_c01052{left:589.548821pt;}
.xd8_c01052{left:592.565033pt;}
.xd0_c01052{left:593.543667pt;}
.x5b_c01052{left:594.547333pt;}
.x36_c01052{left:600.371232pt;}
.x9_c01052{left:601.569333pt;}
.x97_c01052{left:604.953363pt;}
.x3f_c01052{left:609.648800pt;}
.x13_c01052{left:612.538176pt;}
.x89_c01052{left:615.619715pt;}
.x67_c01052{left:617.541813pt;}
.x1e_c01052{left:620.478752pt;}
.xa_c01052{left:622.857333pt;}
.xc7_c01052{left:623.754067pt;}
.x98_c01052{left:626.285747pt;}
.xaa_c01052{left:634.105333pt;}
.x74_c01052{left:637.513467pt;}
.x37_c01052{left:639.944491pt;}
.xb1_c01052{left:643.577333pt;}
.x82_c01052{left:645.869333pt;}
.x26_c01052{left:650.271595pt;}
.xc8_c01052{left:653.516900pt;}
.x9c_c01052{left:656.023933pt;}
.x29_c01052{left:660.625312pt;}
.xc0_c01052{left:662.771900pt;}
.xab_c01052{left:664.996000pt;}
.x7b_c01052{left:666.258667pt;}
.x53_c01052{left:667.320000pt;}
.x6e_c01052{left:677.946800pt;}
.xd9_c01052{left:682.405500pt;}
.xd1_c01052{left:683.624167pt;}
.x99_c01052{left:684.858803pt;}
.x54_c01052{left:687.418667pt;}
.x49_c01052{left:688.605067pt;}
.x2a_c01052{left:689.551616pt;}
.xb9_c01052{left:693.555333pt;}
.x68_c01052{left:696.348240pt;}
.x40_c01052{left:699.683371pt;}
.x14_c01052{left:700.754176pt;}
.xc1_c01052{left:703.102267pt;}
.x9d_c01052{left:708.606203pt;}
.x9a_c01052{left:714.716664pt;}
.x38_c01052{left:718.469675pt;}
.x15_c01052{left:721.054176pt;}
.x83_c01052{left:725.849333pt;}
.x8a_c01052{left:734.439147pt;}
.x91_c01052{left:735.450232pt;}
.x5c_c01052{left:737.045227pt;}
.xba_c01052{left:743.061133pt;}
.x69_c01052{left:747.435227pt;}
}





/* 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_c01053 {
    display:none;
  }
  .loading-indicator_c01053.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01053 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_c01053 { 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_c01053" -> "#page-container .classname_c01053")
 */
.pf_c01053 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01053 { /* 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_c01053.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01053 { /* 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_c01053 { /* 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_c01053 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01053 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01053 {overflow:visible;}
  }
}
.c_c01053 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01053 { /* 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_c01053:after { /* webkit #35443 */
  content: '';
}
.t_c01053:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01053 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 */
}
.__c01053 { /* 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_c01053 { /* info for Javascript */
  display:none;
}
.l_c01053 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01053 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01053 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01053: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_c01053 {
    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_c01053.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01053.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_c01053 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01053{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01053;src:url('chunks/assets/font_ffdda91d43f5751d6c5cd797.woff2')format("woff");}.ff1_c01053{font-family:ff1_c01053;line-height:1.000000;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;}
.m26_c01053{transform:matrix(0.148620,0.001189,-0.002000,0.249992,0,0);-ms-transform:matrix(0.148620,0.001189,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.148620,0.001189,-0.002000,0.249992,0,0);}
.m3f_c01053{transform:matrix(0.180220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180220,0.000000,0.000000,0.250000,0,0);}
.m3c_c01053{transform:matrix(0.215530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215530,0.000000,0.000000,0.250000,0,0);}
.m2e_c01053{transform:matrix(0.219318,0.003728,-0.004249,0.249964,0,0);-ms-transform:matrix(0.219318,0.003728,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.219318,0.003728,-0.004249,0.249964,0,0);}
.m38_c01053{transform:matrix(0.228230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228230,0.000000,0.000000,0.250000,0,0);}
.ma_c01053{transform:matrix(0.237610,0.009990,-0.010501,0.249779,0,0);-ms-transform:matrix(0.237610,0.009990,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.237610,0.009990,-0.010501,0.249779,0,0);}
.m1b_c01053{transform:matrix(0.248567,0.001989,-0.002000,0.249992,0,0);-ms-transform:matrix(0.248567,0.001989,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.248567,0.001989,-0.002000,0.249992,0,0);}
.m30_c01053{transform:matrix(0.261377,0.004443,-0.004249,0.249964,0,0);-ms-transform:matrix(0.261377,0.004443,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.261377,0.004443,-0.004249,0.249964,0,0);}
.m3a_c01053{transform:matrix(0.281620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281620,0.000000,0.000000,0.250000,0,0);}
.m3b_c01053{transform:matrix(0.286755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286755,0.000000,0.000000,0.250000,0,0);}
.m1e_c01053{transform:matrix(0.288076,0.002305,-0.002000,0.249992,0,0);-ms-transform:matrix(0.288076,0.002305,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.288076,0.002305,-0.002000,0.249992,0,0);}
.m8_c01053{transform:matrix(0.293571,0.012342,-0.010501,0.249779,0,0);-ms-transform:matrix(0.293571,0.012342,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.293571,0.012342,-0.010501,0.249779,0,0);}
.m3_c01053{transform:matrix(0.294510,0.012382,-0.010501,0.249779,0,0);-ms-transform:matrix(0.294510,0.012382,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.294510,0.012382,-0.010501,0.249779,0,0);}
.m40_c01053{transform:matrix(0.300340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300340,0.000000,0.000000,0.250000,0,0);}
.m1d_c01053{transform:matrix(0.306340,0.002451,-0.002000,0.249992,0,0);-ms-transform:matrix(0.306340,0.002451,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.306340,0.002451,-0.002000,0.249992,0,0);}
.m9_c01053{transform:matrix(0.312799,0.013151,-0.010501,0.249779,0,0);-ms-transform:matrix(0.312799,0.013151,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.312799,0.013151,-0.010501,0.249779,0,0);}
.m1c_c01053{transform:matrix(0.316540,0.002532,-0.002000,0.249992,0,0);-ms-transform:matrix(0.316540,0.002532,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.316540,0.002532,-0.002000,0.249992,0,0);}
.m1f_c01053{transform:matrix(0.331854,0.002655,-0.002000,0.249992,0,0);-ms-transform:matrix(0.331854,0.002655,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.331854,0.002655,-0.002000,0.249992,0,0);}
.m35_c01053{transform:matrix(0.340720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340720,0.000000,0.000000,0.250000,0,0);}
.m41_c01053{transform:matrix(0.347220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347220,0.000000,0.000000,0.250000,0,0);}
.m28_c01053{transform:matrix(0.350000,-0.005600,0.003999,0.249968,0,0);-ms-transform:matrix(0.350000,-0.005600,0.003999,0.249968,0,0);-webkit-transform:matrix(0.350000,-0.005600,0.003999,0.249968,0,0);}
.m2a_c01053{transform:matrix(0.357759,-0.005724,0.003999,0.249968,0,0);-ms-transform:matrix(0.357759,-0.005724,0.003999,0.249968,0,0);-webkit-transform:matrix(0.357759,-0.005724,0.003999,0.249968,0,0);}
.m1_c01053{transform:matrix(0.363702,0.007274,-0.004999,0.249950,0,0);-ms-transform:matrix(0.363702,0.007274,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.363702,0.007274,-0.004999,0.249950,0,0);}
.m24_c01053{transform:matrix(0.374088,0.002993,-0.002000,0.249992,0,0);-ms-transform:matrix(0.374088,0.002993,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.374088,0.002993,-0.002000,0.249992,0,0);}
.m39_c01053{transform:matrix(0.376560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376560,0.000000,0.000000,0.250000,0,0);}
.m22_c01053{transform:matrix(0.383343,0.003067,-0.002000,0.249992,0,0);-ms-transform:matrix(0.383343,0.003067,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.383343,0.003067,-0.002000,0.249992,0,0);}
.m5_c01053{transform:matrix(0.395725,0.016637,-0.010501,0.249779,0,0);-ms-transform:matrix(0.395725,0.016637,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.395725,0.016637,-0.010501,0.249779,0,0);}
.m43_c01053{transform:matrix(0.400095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400095,0.000000,0.000000,0.250000,0,0);}
.m13_c01053{transform:matrix(0.405692,0.003246,-0.002000,0.249992,0,0);-ms-transform:matrix(0.405692,0.003246,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.405692,0.003246,-0.002000,0.249992,0,0);}
.mb_c01053{transform:matrix(0.410667,0.017265,-0.010501,0.249779,0,0);-ms-transform:matrix(0.410667,0.017265,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.410667,0.017265,-0.010501,0.249779,0,0);}
.m25_c01053{transform:matrix(0.418292,0.003346,-0.002000,0.249992,0,0);-ms-transform:matrix(0.418292,0.003346,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.418292,0.003346,-0.002000,0.249992,0,0);}
.m27_c01053{transform:matrix(0.427406,0.003419,-0.002000,0.249992,0,0);-ms-transform:matrix(0.427406,0.003419,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.427406,0.003419,-0.002000,0.249992,0,0);}
.m19_c01053{transform:matrix(0.431626,0.003453,-0.002000,0.249992,0,0);-ms-transform:matrix(0.431626,0.003453,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.431626,0.003453,-0.002000,0.249992,0,0);}
.m33_c01053{transform:matrix(0.433859,-0.031767,0.018256,0.249333,0,0);-ms-transform:matrix(0.433859,-0.031767,0.018256,0.249333,0,0);-webkit-transform:matrix(0.433859,-0.031767,0.018256,0.249333,0,0);}
.m14_c01053{transform:matrix(0.435951,0.003488,-0.002000,0.249992,0,0);-ms-transform:matrix(0.435951,0.003488,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.435951,0.003488,-0.002000,0.249992,0,0);}
.m7_c01053{transform:matrix(0.449833,0.018912,-0.010501,0.249779,0,0);-ms-transform:matrix(0.449833,0.018912,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.449833,0.018912,-0.010501,0.249779,0,0);}
.m6_c01053{transform:matrix(0.463975,0.019506,-0.010501,0.249779,0,0);-ms-transform:matrix(0.463975,0.019506,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.463975,0.019506,-0.010501,0.249779,0,0);}
.m21_c01053{transform:matrix(0.465835,0.003727,-0.002000,0.249992,0,0);-ms-transform:matrix(0.465835,0.003727,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.465835,0.003727,-0.002000,0.249992,0,0);}
.m2b_c01053{transform:matrix(0.472370,-0.007558,0.003999,0.249968,0,0);-ms-transform:matrix(0.472370,-0.007558,0.003999,0.249968,0,0);-webkit-transform:matrix(0.472370,-0.007558,0.003999,0.249968,0,0);}
.m32_c01053{transform:matrix(0.472512,0.008033,-0.004249,0.249964,0,0);-ms-transform:matrix(0.472512,0.008033,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.472512,0.008033,-0.004249,0.249964,0,0);}
.m31_c01053{transform:matrix(0.480371,0.008166,-0.004249,0.249964,0,0);-ms-transform:matrix(0.480371,0.008166,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.480371,0.008166,-0.004249,0.249964,0,0);}
.m3d_c01053{transform:matrix(0.504155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504155,0.000000,0.000000,0.250000,0,0);}
.mf_c01053{transform:matrix(0.509109,0.004073,-0.002000,0.249992,0,0);-ms-transform:matrix(0.509109,0.004073,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.509109,0.004073,-0.002000,0.249992,0,0);}
.m29_c01053{transform:matrix(0.513184,-0.008211,0.003999,0.249968,0,0);-ms-transform:matrix(0.513184,-0.008211,0.003999,0.249968,0,0);-webkit-transform:matrix(0.513184,-0.008211,0.003999,0.249968,0,0);}
.md_c01053{transform:matrix(0.519498,0.004156,-0.002000,0.249992,0,0);-ms-transform:matrix(0.519498,0.004156,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.519498,0.004156,-0.002000,0.249992,0,0);}
.m12_c01053{transform:matrix(0.524298,0.004194,-0.002000,0.249992,0,0);-ms-transform:matrix(0.524298,0.004194,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.524298,0.004194,-0.002000,0.249992,0,0);}
.m0_c01053{transform:matrix(0.525360,0.010507,-0.004999,0.249950,0,0);-ms-transform:matrix(0.525360,0.010507,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.525360,0.010507,-0.004999,0.249950,0,0);}
.m20_c01053{transform:matrix(0.533483,0.004268,-0.002000,0.249992,0,0);-ms-transform:matrix(0.533483,0.004268,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.533483,0.004268,-0.002000,0.249992,0,0);}
.m34_c01053{transform:matrix(0.538414,-0.039422,0.018256,0.249333,0,0);-ms-transform:matrix(0.538414,-0.039422,0.018256,0.249333,0,0);-webkit-transform:matrix(0.538414,-0.039422,0.018256,0.249333,0,0);}
.m17_c01053{transform:matrix(0.549577,0.004397,-0.002000,0.249992,0,0);-ms-transform:matrix(0.549577,0.004397,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.549577,0.004397,-0.002000,0.249992,0,0);}
.m2c_c01053{transform:matrix(0.592529,-0.009480,0.003999,0.249968,0,0);-ms-transform:matrix(0.592529,-0.009480,0.003999,0.249968,0,0);-webkit-transform:matrix(0.592529,-0.009480,0.003999,0.249968,0,0);}
.m10_c01053{transform:matrix(0.594166,0.004753,-0.002000,0.249992,0,0);-ms-transform:matrix(0.594166,0.004753,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.594166,0.004753,-0.002000,0.249992,0,0);}
.m4_c01053{transform:matrix(0.606349,0.025492,-0.010501,0.249779,0,0);-ms-transform:matrix(0.606349,0.025492,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.606349,0.025492,-0.010501,0.249779,0,0);}
.m42_c01053{transform:matrix(0.630215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630215,0.000000,0.000000,0.250000,0,0);}
.m23_c01053{transform:matrix(0.652074,0.005217,-0.002000,0.249992,0,0);-ms-transform:matrix(0.652074,0.005217,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.652074,0.005217,-0.002000,0.249992,0,0);}
.m2d_c01053{transform:matrix(0.661860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.661860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.661860,0.000000,0.000000,0.250000,0,0);}
.m2f_c01053{transform:matrix(0.683221,0.011615,-0.004249,0.249964,0,0);-ms-transform:matrix(0.683221,0.011615,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.683221,0.011615,-0.004249,0.249964,0,0);}
.m18_c01053{transform:matrix(0.696303,0.005570,-0.002000,0.249992,0,0);-ms-transform:matrix(0.696303,0.005570,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.696303,0.005570,-0.002000,0.249992,0,0);}
.m16_c01053{transform:matrix(0.699043,0.005592,-0.002000,0.249992,0,0);-ms-transform:matrix(0.699043,0.005592,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.699043,0.005592,-0.002000,0.249992,0,0);}
.m3e_c01053{transform:matrix(0.729795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.729795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.729795,0.000000,0.000000,0.250000,0,0);}
.m37_c01053{transform:matrix(0.743665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.743665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.743665,0.000000,0.000000,0.250000,0,0);}
.me_c01053{transform:matrix(0.775890,0.006207,-0.002000,0.249992,0,0);-ms-transform:matrix(0.775890,0.006207,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.775890,0.006207,-0.002000,0.249992,0,0);}
.m11_c01053{transform:matrix(0.792405,0.006339,-0.002000,0.249992,0,0);-ms-transform:matrix(0.792405,0.006339,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.792405,0.006339,-0.002000,0.249992,0,0);}
.m2_c01053{transform:matrix(0.812163,0.016243,-0.004999,0.249950,0,0);-ms-transform:matrix(0.812163,0.016243,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.812163,0.016243,-0.004999,0.249950,0,0);}
.m36_c01053{transform:matrix(0.905860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.905860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.905860,0.000000,0.000000,0.250000,0,0);}
.mc_c01053{transform:matrix(0.907338,0.038146,-0.010501,0.249779,0,0);-ms-transform:matrix(0.907338,0.038146,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.907338,0.038146,-0.010501,0.249779,0,0);}
.m15_c01053{transform:matrix(1.106945,0.008856,-0.002000,0.249992,0,0);-ms-transform:matrix(1.106945,0.008856,-0.002000,0.249992,0,0);-webkit-transform:matrix(1.106945,0.008856,-0.002000,0.249992,0,0);}
.m1a_c01053{transform:matrix(1.246645,0.009973,-0.002000,0.249992,0,0);-ms-transform:matrix(1.246645,0.009973,-0.002000,0.249992,0,0);-webkit-transform:matrix(1.246645,0.009973,-0.002000,0.249992,0,0);}
.v0_c01053{vertical-align:0.000000px;}
.ls0_c01053{letter-spacing:0.000000px;}
.sc__c01053{text-shadow:none;}
.sc0_c01053{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__c01053{-webkit-text-stroke:0px transparent;}
.sc0_c01053{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01053{word-spacing:0.000000px;}
.fc0_c01053{color:transparent;}
.fs5_c01053{font-size:42.000000px;}
.fs7_c01053{font-size:47.984109px;}
.fs2_c01053{font-size:48.001536px;}
.fs4_c01053{font-size:72.009215px;}
.fs1_c01053{font-size:83.990129px;}
.fs8_c01053{font-size:84.000000px;}
.fs3_c01053{font-size:84.002688px;}
.fs6_c01053{font-size:84.012137px;}
.fs0_c01053{font-size:84.016798px;}
.fs9_c01053{font-size:96.000000px;}
.y0_c01053{bottom:0.000000px;}
.y38_c01053{bottom:435.301500px;}
.y37_c01053{bottom:469.656000px;}
.y36_c01053{bottom:565.387500px;}
.y34_c01053{bottom:585.858000px;}
.y35_c01053{bottom:587.058996px;}
.y33_c01053{bottom:601.543503px;}
.y32_c01053{bottom:602.691845px;}
.y31_c01053{bottom:603.251264px;}
.y30_c01053{bottom:605.269589px;}
.y2f_c01053{bottom:605.835000px;}
.y2e_c01053{bottom:630.180000px;}
.y29_c01053{bottom:758.238000px;}
.y2a_c01053{bottom:759.140760px;}
.y2b_c01053{bottom:759.757680px;}
.y2c_c01053{bottom:768.399240px;}
.y2d_c01053{bottom:770.779056px;}
.y1d_c01053{bottom:858.565884px;}
.y1e_c01053{bottom:858.776520px;}
.y1f_c01053{bottom:859.354296px;}
.y20_c01053{bottom:859.433448px;}
.y21_c01053{bottom:859.841844px;}
.y23_c01053{bottom:860.623956px;}
.y22_c01053{bottom:860.630280px;}
.y24_c01053{bottom:861.122712px;}
.y25_c01053{bottom:862.241028px;}
.y26_c01053{bottom:862.659672px;}
.y27_c01053{bottom:867.192204px;}
.y28_c01053{bottom:868.283256px;}
.y1c_c01053{bottom:896.824680px;}
.y1b_c01053{bottom:897.279504px;}
.y1a_c01053{bottom:897.384948px;}
.y19_c01053{bottom:898.539456px;}
.y18_c01053{bottom:899.232708px;}
.y17_c01053{bottom:899.801352px;}
.y16_c01053{bottom:900.131808px;}
.y15_c01053{bottom:900.853680px;}
.y14_c01053{bottom:900.984300px;}
.y13_c01053{bottom:901.160172px;}
.y12_c01053{bottom:901.743480px;}
.y11_c01053{bottom:901.989648px;}
.y10_c01053{bottom:902.517264px;}
.yf_c01053{bottom:903.253008px;}
.ye_c01053{bottom:903.421500px;}
.y3_c01053{bottom:924.032520px;}
.y2_c01053{bottom:925.349850px;}
.y1_c01053{bottom:926.160000px;}
.yd_c01053{bottom:926.317071px;}
.yc_c01053{bottom:926.992620px;}
.yb_c01053{bottom:927.790767px;}
.ya_c01053{bottom:928.851624px;}
.y9_c01053{bottom:932.861133px;}
.y8_c01053{bottom:934.466751px;}
.y7_c01053{bottom:937.546128px;}
.y6_c01053{bottom:938.043576px;}
.y5_c01053{bottom:939.881034px;}
.y4_c01053{bottom:940.428000px;}
.h7_c01053{height:42.000000px;}
.h9_c01053{height:47.984109px;}
.h4_c01053{height:48.001536px;}
.h6_c01053{height:72.009215px;}
.h3_c01053{height:83.990129px;}
.ha_c01053{height:84.000000px;}
.h5_c01053{height:84.002688px;}
.h8_c01053{height:84.012137px;}
.h2_c01053{height:84.016798px;}
.hb_c01053{height:96.000000px;}
.h0_c01053{height:1246.320000px;}
.h1_c01053{height:1246.500000px;}
.w0_c01053{width:900.450000px;}
.w1_c01053{width:900.750000px;}
.x0_c01053{left:0.000000px;}
.xe_c01053{left:26.592000px;}
.x28_c01053{left:37.750500px;}
.xf_c01053{left:47.653500px;}
.x1d_c01053{left:68.375352px;}
.x1e_c01053{left:84.611076px;}
.x29_c01053{left:94.173000px;}
.x1f_c01053{left:129.021540px;}
.x2a_c01053{left:132.730500px;}
.x3e_c01053{left:133.920000px;}
.x20_c01053{left:135.066060px;}
.x10_c01053{left:139.621500px;}
.x38_c01053{left:152.010000px;}
.x3f_c01053{left:160.380000px;}
.x21_c01053{left:166.521840px;}
.x4_c01053{left:183.969000px;}
.x5_c01053{left:196.978977px;}
.x11_c01053{left:205.573500px;}
.x40_c01053{left:223.290000px;}
.x22_c01053{left:227.165028px;}
.x39_c01053{left:230.040000px;}
.x12_c01053{left:236.344500px;}
.x6_c01053{left:240.684228px;}
.x7_c01053{left:252.516384px;}
.x23_c01053{left:264.992388px;}
.x3a_c01053{left:292.410000px;}
.x13_c01053{left:309.258000px;}
.x3b_c01053{left:323.730000px;}
.x8_c01053{left:325.761565px;}
.x14_c01053{left:331.242000px;}
.x15_c01053{left:347.569500px;}
.x24_c01053{left:350.967336px;}
.x9_c01053{left:363.952337px;}
.x3c_c01053{left:366.660000px;}
.x25_c01053{left:383.204748px;}
.x16_c01053{left:437.803500px;}
.x3d_c01053{left:456.300000px;}
.xa_c01053{left:459.321372px;}
.x2d_c01053{left:460.777500px;}
.x34_c01053{left:464.130000px;}
.x32_c01053{left:475.813500px;}
.x17_c01053{left:479.110500px;}
.xb_c01053{left:484.554613px;}
.x33_c01053{left:492.216144px;}
.x2e_c01053{left:494.037000px;}
.xc_c01053{left:503.539110px;}
.x35_c01053{left:508.680000px;}
.xd_c01053{left:519.607525px;}
.x18_c01053{left:550.191000px;}
.x36_c01053{left:566.460000px;}
.x2f_c01053{left:612.762000px;}
.x1_c01053{left:627.228000px;}
.x19_c01053{left:636.847500px;}
.x30_c01053{left:645.669000px;}
.x2_c01053{left:667.735500px;}
.x2b_c01053{left:672.828000px;}
.x37_c01053{left:683.100000px;}
.x31_c01053{left:713.218500px;}
.x26_c01053{left:731.884320px;}
.x3_c01053{left:733.602000px;}
.x1a_c01053{left:781.161000px;}
.x1b_c01053{left:794.341500px;}
.x27_c01053{left:815.829420px;}
.x2c_c01053{left:821.566500px;}
.x1c_c01053{left:851.194500px;}
@media print{
.v0_c01053{vertical-align:0.000000pt;}
.ls0_c01053{letter-spacing:0.000000pt;}
.ws0_c01053{word-spacing:0.000000pt;}
.fs5_c01053{font-size:37.333333pt;}
.fs7_c01053{font-size:42.652542pt;}
.fs2_c01053{font-size:42.668032pt;}
.fs4_c01053{font-size:64.008191pt;}
.fs1_c01053{font-size:74.657893pt;}
.fs8_c01053{font-size:74.666667pt;}
.fs3_c01053{font-size:74.669056pt;}
.fs6_c01053{font-size:74.677455pt;}
.fs0_c01053{font-size:74.681599pt;}
.fs9_c01053{font-size:85.333333pt;}
.y0_c01053{bottom:0.000000pt;}
.y38_c01053{bottom:386.934667pt;}
.y37_c01053{bottom:417.472000pt;}
.y36_c01053{bottom:502.566667pt;}
.y34_c01053{bottom:520.762667pt;}
.y35_c01053{bottom:521.830219pt;}
.y33_c01053{bottom:534.705336pt;}
.y32_c01053{bottom:535.726084pt;}
.y31_c01053{bottom:536.223345pt;}
.y30_c01053{bottom:538.017412pt;}
.y2f_c01053{bottom:538.520000pt;}
.y2e_c01053{bottom:560.160000pt;}
.y29_c01053{bottom:673.989333pt;}
.y2a_c01053{bottom:674.791787pt;}
.y2b_c01053{bottom:675.340160pt;}
.y2c_c01053{bottom:683.021547pt;}
.y2d_c01053{bottom:685.136939pt;}
.y1d_c01053{bottom:763.169675pt;}
.y1e_c01053{bottom:763.356907pt;}
.y1f_c01053{bottom:763.870485pt;}
.y20_c01053{bottom:763.940843pt;}
.y21_c01053{bottom:764.303861pt;}
.y23_c01053{bottom:764.999072pt;}
.y22_c01053{bottom:765.004693pt;}
.y24_c01053{bottom:765.442411pt;}
.y25_c01053{bottom:766.436469pt;}
.y26_c01053{bottom:766.808597pt;}
.y27_c01053{bottom:770.837515pt;}
.y28_c01053{bottom:771.807339pt;}
.y1c_c01053{bottom:797.177493pt;}
.y1b_c01053{bottom:797.581781pt;}
.y1a_c01053{bottom:797.675509pt;}
.y19_c01053{bottom:798.701739pt;}
.y18_c01053{bottom:799.317963pt;}
.y17_c01053{bottom:799.823424pt;}
.y16_c01053{bottom:800.117163pt;}
.y15_c01053{bottom:800.758827pt;}
.y14_c01053{bottom:800.874933pt;}
.y13_c01053{bottom:801.031264pt;}
.y12_c01053{bottom:801.549760pt;}
.y11_c01053{bottom:801.768576pt;}
.y10_c01053{bottom:802.237568pt;}
.yf_c01053{bottom:802.891563pt;}
.ye_c01053{bottom:803.041333pt;}
.y3_c01053{bottom:821.362240pt;}
.y2_c01053{bottom:822.533200pt;}
.y1_c01053{bottom:823.253333pt;}
.yd_c01053{bottom:823.392952pt;}
.yc_c01053{bottom:823.993440pt;}
.yb_c01053{bottom:824.702904pt;}
.ya_c01053{bottom:825.645888pt;}
.y9_c01053{bottom:829.209896pt;}
.y8_c01053{bottom:830.637112pt;}
.y7_c01053{bottom:833.374336pt;}
.y6_c01053{bottom:833.816512pt;}
.y5_c01053{bottom:835.449808pt;}
.y4_c01053{bottom:835.936000pt;}
.h7_c01053{height:37.333333pt;}
.h9_c01053{height:42.652542pt;}
.h4_c01053{height:42.668032pt;}
.h6_c01053{height:64.008191pt;}
.h3_c01053{height:74.657893pt;}
.ha_c01053{height:74.666667pt;}
.h5_c01053{height:74.669056pt;}
.h8_c01053{height:74.677455pt;}
.h2_c01053{height:74.681599pt;}
.hb_c01053{height:85.333333pt;}
.h0_c01053{height:1107.840000pt;}
.h1_c01053{height:1108.000000pt;}
.w0_c01053{width:800.400000pt;}
.w1_c01053{width:800.666667pt;}
.x0_c01053{left:0.000000pt;}
.xe_c01053{left:23.637333pt;}
.x28_c01053{left:33.556000pt;}
.xf_c01053{left:42.358667pt;}
.x1d_c01053{left:60.778091pt;}
.x1e_c01053{left:75.209845pt;}
.x29_c01053{left:83.709333pt;}
.x1f_c01053{left:114.685813pt;}
.x2a_c01053{left:117.982667pt;}
.x3e_c01053{left:119.040000pt;}
.x20_c01053{left:120.058720pt;}
.x10_c01053{left:124.108000pt;}
.x38_c01053{left:135.120000pt;}
.x3f_c01053{left:142.560000pt;}
.x21_c01053{left:148.019413pt;}
.x4_c01053{left:163.528000pt;}
.x5_c01053{left:175.092424pt;}
.x11_c01053{left:182.732000pt;}
.x40_c01053{left:198.480000pt;}
.x22_c01053{left:201.924469pt;}
.x39_c01053{left:204.480000pt;}
.x12_c01053{left:210.084000pt;}
.x6_c01053{left:213.941536pt;}
.x7_c01053{left:224.459008pt;}
.x23_c01053{left:235.548789pt;}
.x3a_c01053{left:259.920000pt;}
.x13_c01053{left:274.896000pt;}
.x3b_c01053{left:287.760000pt;}
.x8_c01053{left:289.565836pt;}
.x14_c01053{left:294.437333pt;}
.x15_c01053{left:308.950667pt;}
.x24_c01053{left:311.970965pt;}
.x9_c01053{left:323.513188pt;}
.x3c_c01053{left:325.920000pt;}
.x25_c01053{left:340.626443pt;}
.x16_c01053{left:389.158667pt;}
.x3d_c01053{left:405.600000pt;}
.xa_c01053{left:408.285664pt;}
.x2d_c01053{left:409.580000pt;}
.x34_c01053{left:412.560000pt;}
.x32_c01053{left:422.945333pt;}
.x17_c01053{left:425.876000pt;}
.xb_c01053{left:430.715212pt;}
.x33_c01053{left:437.525461pt;}
.x2e_c01053{left:439.144000pt;}
.xc_c01053{left:447.590320pt;}
.x35_c01053{left:452.160000pt;}
.xd_c01053{left:461.873356pt;}
.x18_c01053{left:489.058667pt;}
.x36_c01053{left:503.520000pt;}
.x2f_c01053{left:544.677333pt;}
.x1_c01053{left:557.536000pt;}
.x19_c01053{left:566.086667pt;}
.x30_c01053{left:573.928000pt;}
.x2_c01053{left:593.542667pt;}
.x2b_c01053{left:598.069333pt;}
.x37_c01053{left:607.200000pt;}
.x31_c01053{left:633.972000pt;}
.x26_c01053{left:650.563840pt;}
.x3_c01053{left:652.090667pt;}
.x1a_c01053{left:694.365333pt;}
.x1b_c01053{left:706.081333pt;}
.x27_c01053{left:725.181707pt;}
.x2c_c01053{left:730.281333pt;}
.x1c_c01053{left:756.617333pt;}
}





/* 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_c01054 {
    display:none;
  }
  .loading-indicator_c01054.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01054 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_c01054 { 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_c01054" -> "#page-container .classname_c01054")
 */
.pf_c01054 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01054 { /* 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_c01054.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01054 { /* 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_c01054 { /* 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_c01054 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01054 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01054 {overflow:visible;}
  }
}
.c_c01054 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01054 { /* 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_c01054:after { /* webkit #35443 */
  content: '';
}
.t_c01054:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01054 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 */
}
.__c01054 { /* 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_c01054 { /* info for Javascript */
  display:none;
}
.l_c01054 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01054 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01054 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01054: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_c01054 {
    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_c01054.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01054.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_c01054 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01054{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01054;src:url('chunks/assets/font_c605e72f209fc835e906f064.woff2')format("woff");}.ff1_c01054{font-family:ff1_c01054;line-height:1.000000;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;}
.mfe_c01054{transform:matrix(0.009541,0.000277,-0.007247,0.249895,0,0);-ms-transform:matrix(0.009541,0.000277,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.009541,0.000277,-0.007247,0.249895,0,0);}
.mfd_c01054{transform:matrix(0.014969,0.000434,-0.007247,0.249895,0,0);-ms-transform:matrix(0.014969,0.000434,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.014969,0.000434,-0.007247,0.249895,0,0);}
.m83_c01054{transform:matrix(0.015905,0.000398,-0.006248,0.249922,0,0);-ms-transform:matrix(0.015905,0.000398,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.015905,0.000398,-0.006248,0.249922,0,0);}
.mc5_c01054{transform:matrix(0.016065,0.000402,-0.006248,0.249922,0,0);-ms-transform:matrix(0.016065,0.000402,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.016065,0.000402,-0.006248,0.249922,0,0);}
.mc6_c01054{transform:matrix(0.018179,0.000454,-0.006248,0.249922,0,0);-ms-transform:matrix(0.018179,0.000454,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.018179,0.000454,-0.006248,0.249922,0,0);}
.m130_c01054{transform:matrix(0.094729,0.001989,-0.005249,0.249945,0,0);-ms-transform:matrix(0.094729,0.001989,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.094729,0.001989,-0.005249,0.249945,0,0);}
.m45_c01054{transform:matrix(0.137062,0.003427,-0.006248,0.249922,0,0);-ms-transform:matrix(0.137062,0.003427,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.137062,0.003427,-0.006248,0.249922,0,0);}
.m48_c01054{transform:matrix(0.154977,0.003874,-0.006248,0.249922,0,0);-ms-transform:matrix(0.154977,0.003874,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.154977,0.003874,-0.006248,0.249922,0,0);}
.m52_c01054{transform:matrix(0.157581,0.003940,-0.006248,0.249922,0,0);-ms-transform:matrix(0.157581,0.003940,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.157581,0.003940,-0.006248,0.249922,0,0);}
.m57_c01054{transform:matrix(0.158066,0.003952,-0.006248,0.249922,0,0);-ms-transform:matrix(0.158066,0.003952,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.158066,0.003952,-0.006248,0.249922,0,0);}
.m4c_c01054{transform:matrix(0.158425,0.003961,-0.006248,0.249922,0,0);-ms-transform:matrix(0.158425,0.003961,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.158425,0.003961,-0.006248,0.249922,0,0);}
.m54_c01054{transform:matrix(0.158500,0.003963,-0.006248,0.249922,0,0);-ms-transform:matrix(0.158500,0.003963,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.158500,0.003963,-0.006248,0.249922,0,0);}
.m47_c01054{transform:matrix(0.159335,0.003983,-0.006248,0.249922,0,0);-ms-transform:matrix(0.159335,0.003983,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.159335,0.003983,-0.006248,0.249922,0,0);}
.m4e_c01054{transform:matrix(0.160465,0.004012,-0.006248,0.249922,0,0);-ms-transform:matrix(0.160465,0.004012,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.160465,0.004012,-0.006248,0.249922,0,0);}
.m4f_c01054{transform:matrix(0.163589,0.004090,-0.006248,0.249922,0,0);-ms-transform:matrix(0.163589,0.004090,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.163589,0.004090,-0.006248,0.249922,0,0);}
.m2a_c01054{transform:matrix(0.163914,0.004098,-0.006248,0.249922,0,0);-ms-transform:matrix(0.163914,0.004098,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.163914,0.004098,-0.006248,0.249922,0,0);}
.m26_c01054{transform:matrix(0.166363,0.004159,-0.006248,0.249922,0,0);-ms-transform:matrix(0.166363,0.004159,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.166363,0.004159,-0.006248,0.249922,0,0);}
.m56_c01054{transform:matrix(0.167538,0.004188,-0.006248,0.249922,0,0);-ms-transform:matrix(0.167538,0.004188,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.167538,0.004188,-0.006248,0.249922,0,0);}
.m4b_c01054{transform:matrix(0.170972,0.004274,-0.006248,0.249922,0,0);-ms-transform:matrix(0.170972,0.004274,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.170972,0.004274,-0.006248,0.249922,0,0);}
.m29_c01054{transform:matrix(0.173041,0.004326,-0.006248,0.249922,0,0);-ms-transform:matrix(0.173041,0.004326,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.173041,0.004326,-0.006248,0.249922,0,0);}
.m46_c01054{transform:matrix(0.173586,0.004340,-0.006248,0.249922,0,0);-ms-transform:matrix(0.173586,0.004340,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.173586,0.004340,-0.006248,0.249922,0,0);}
.m4d_c01054{transform:matrix(0.174421,0.004361,-0.006248,0.249922,0,0);-ms-transform:matrix(0.174421,0.004361,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.174421,0.004361,-0.006248,0.249922,0,0);}
.mee_c01054{transform:matrix(0.175196,0.005081,-0.007247,0.249895,0,0);-ms-transform:matrix(0.175196,0.005081,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.175196,0.005081,-0.007247,0.249895,0,0);}
.m50_c01054{transform:matrix(0.176015,0.004400,-0.006248,0.249922,0,0);-ms-transform:matrix(0.176015,0.004400,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.176015,0.004400,-0.006248,0.249922,0,0);}
.m6_c01054{transform:matrix(0.176142,0.003875,-0.005499,0.249940,0,0);-ms-transform:matrix(0.176142,0.003875,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.176142,0.003875,-0.005499,0.249940,0,0);}
.m4a_c01054{transform:matrix(0.176160,0.004404,-0.006248,0.249922,0,0);-ms-transform:matrix(0.176160,0.004404,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.176160,0.004404,-0.006248,0.249922,0,0);}
.ma7_c01054{transform:matrix(0.176330,0.004408,-0.006248,0.249922,0,0);-ms-transform:matrix(0.176330,0.004408,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.176330,0.004408,-0.006248,0.249922,0,0);}
.m49_c01054{transform:matrix(0.176735,0.004418,-0.006248,0.249922,0,0);-ms-transform:matrix(0.176735,0.004418,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.176735,0.004418,-0.006248,0.249922,0,0);}
.m44_c01054{transform:matrix(0.177974,0.004449,-0.006248,0.249922,0,0);-ms-transform:matrix(0.177974,0.004449,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.177974,0.004449,-0.006248,0.249922,0,0);}
.m58_c01054{transform:matrix(0.178654,0.004466,-0.006248,0.249922,0,0);-ms-transform:matrix(0.178654,0.004466,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.178654,0.004466,-0.006248,0.249922,0,0);}
.m24_c01054{transform:matrix(0.180084,0.004502,-0.006248,0.249922,0,0);-ms-transform:matrix(0.180084,0.004502,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.180084,0.004502,-0.006248,0.249922,0,0);}
.m51_c01054{transform:matrix(0.180474,0.004512,-0.006248,0.249922,0,0);-ms-transform:matrix(0.180474,0.004512,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.180474,0.004512,-0.006248,0.249922,0,0);}
.m9d_c01054{transform:matrix(0.180799,0.004520,-0.006248,0.249922,0,0);-ms-transform:matrix(0.180799,0.004520,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.180799,0.004520,-0.006248,0.249922,0,0);}
.m91_c01054{transform:matrix(0.180928,0.004523,-0.006248,0.249922,0,0);-ms-transform:matrix(0.180928,0.004523,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.180928,0.004523,-0.006248,0.249922,0,0);}
.m20_c01054{transform:matrix(0.181228,0.004531,-0.006248,0.249922,0,0);-ms-transform:matrix(0.181228,0.004531,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.181228,0.004531,-0.006248,0.249922,0,0);}
.m43_c01054{transform:matrix(0.182548,0.004564,-0.006248,0.249922,0,0);-ms-transform:matrix(0.182548,0.004564,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.182548,0.004564,-0.006248,0.249922,0,0);}
.m22_c01054{transform:matrix(0.184902,0.004623,-0.006248,0.249922,0,0);-ms-transform:matrix(0.184902,0.004623,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.184902,0.004623,-0.006248,0.249922,0,0);}
.m25_c01054{transform:matrix(0.185227,0.004631,-0.006248,0.249922,0,0);-ms-transform:matrix(0.185227,0.004631,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.185227,0.004631,-0.006248,0.249922,0,0);}
.m31_c01054{transform:matrix(0.185987,0.004650,-0.006248,0.249922,0,0);-ms-transform:matrix(0.185987,0.004650,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.185987,0.004650,-0.006248,0.249922,0,0);}
.m40_c01054{transform:matrix(0.186327,0.004658,-0.006248,0.249922,0,0);-ms-transform:matrix(0.186327,0.004658,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.186327,0.004658,-0.006248,0.249922,0,0);}
.m55_c01054{transform:matrix(0.187416,0.004685,-0.006248,0.249922,0,0);-ms-transform:matrix(0.187416,0.004685,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.187416,0.004685,-0.006248,0.249922,0,0);}
.m37_c01054{transform:matrix(0.187826,0.004696,-0.006248,0.249922,0,0);-ms-transform:matrix(0.187826,0.004696,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.187826,0.004696,-0.006248,0.249922,0,0);}
.m53_c01054{transform:matrix(0.187951,0.004699,-0.006248,0.249922,0,0);-ms-transform:matrix(0.187951,0.004699,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.187951,0.004699,-0.006248,0.249922,0,0);}
.m36_c01054{transform:matrix(0.188036,0.004701,-0.006248,0.249922,0,0);-ms-transform:matrix(0.188036,0.004701,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.188036,0.004701,-0.006248,0.249922,0,0);}
.m12_c01054{transform:matrix(0.188144,0.004139,-0.005499,0.249940,0,0);-ms-transform:matrix(0.188144,0.004139,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.188144,0.004139,-0.005499,0.249940,0,0);}
.m2e_c01054{transform:matrix(0.188676,0.004717,-0.006248,0.249922,0,0);-ms-transform:matrix(0.188676,0.004717,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.188676,0.004717,-0.006248,0.249922,0,0);}
.maa_c01054{transform:matrix(0.188771,0.004719,-0.006248,0.249922,0,0);-ms-transform:matrix(0.188771,0.004719,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.188771,0.004719,-0.006248,0.249922,0,0);}
.m21_c01054{transform:matrix(0.188946,0.004724,-0.006248,0.249922,0,0);-ms-transform:matrix(0.188946,0.004724,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.188946,0.004724,-0.006248,0.249922,0,0);}
.mea_c01054{transform:matrix(0.189580,0.005498,-0.007247,0.249895,0,0);-ms-transform:matrix(0.189580,0.005498,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.189580,0.005498,-0.007247,0.249895,0,0);}
.m34_c01054{transform:matrix(0.189591,0.004740,-0.006248,0.249922,0,0);-ms-transform:matrix(0.189591,0.004740,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.189591,0.004740,-0.006248,0.249922,0,0);}
.m0_c01054{transform:matrix(0.189625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189625,0.000000,0.000000,0.250000,0,0);}
.m27_c01054{transform:matrix(0.189761,0.004744,-0.006248,0.249922,0,0);-ms-transform:matrix(0.189761,0.004744,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.189761,0.004744,-0.006248,0.249922,0,0);}
.m23_c01054{transform:matrix(0.190201,0.004755,-0.006248,0.249922,0,0);-ms-transform:matrix(0.190201,0.004755,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.190201,0.004755,-0.006248,0.249922,0,0);}
.mfc_c01054{transform:matrix(0.190525,0.005525,-0.007247,0.249895,0,0);-ms-transform:matrix(0.190525,0.005525,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.190525,0.005525,-0.007247,0.249895,0,0);}
.ma8_c01054{transform:matrix(0.190530,0.004763,-0.006248,0.249922,0,0);-ms-transform:matrix(0.190530,0.004763,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.190530,0.004763,-0.006248,0.249922,0,0);}
.m4_c01054{transform:matrix(0.190544,0.004192,-0.005499,0.249940,0,0);-ms-transform:matrix(0.190544,0.004192,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.190544,0.004192,-0.005499,0.249940,0,0);}
.m3d_c01054{transform:matrix(0.190770,0.004769,-0.006248,0.249922,0,0);-ms-transform:matrix(0.190770,0.004769,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.190770,0.004769,-0.006248,0.249922,0,0);}
.mcd_c01054{transform:matrix(0.190800,0.005533,-0.007247,0.249895,0,0);-ms-transform:matrix(0.190800,0.005533,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.190800,0.005533,-0.007247,0.249895,0,0);}
.mb7_c01054{transform:matrix(0.190800,0.004770,-0.006248,0.249922,0,0);-ms-transform:matrix(0.190800,0.004770,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.190800,0.004770,-0.006248,0.249922,0,0);}
.m28_c01054{transform:matrix(0.191710,0.004793,-0.006248,0.249922,0,0);-ms-transform:matrix(0.191710,0.004793,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.191710,0.004793,-0.006248,0.249922,0,0);}
.m1f_c01054{transform:matrix(0.195279,0.004882,-0.006248,0.249922,0,0);-ms-transform:matrix(0.195279,0.004882,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.195279,0.004882,-0.006248,0.249922,0,0);}
.m15_c01054{transform:matrix(0.196304,0.004908,-0.006248,0.249922,0,0);-ms-transform:matrix(0.196304,0.004908,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.196304,0.004908,-0.006248,0.249922,0,0);}
.ma0_c01054{transform:matrix(0.196903,0.004923,-0.006248,0.249922,0,0);-ms-transform:matrix(0.196903,0.004923,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.196903,0.004923,-0.006248,0.249922,0,0);}
.m3e_c01054{transform:matrix(0.197978,0.004949,-0.006248,0.249922,0,0);-ms-transform:matrix(0.197978,0.004949,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.197978,0.004949,-0.006248,0.249922,0,0);}
.me8_c01054{transform:matrix(0.198012,0.005742,-0.007247,0.249895,0,0);-ms-transform:matrix(0.198012,0.005742,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.198012,0.005742,-0.007247,0.249895,0,0);}
.m9c_c01054{transform:matrix(0.198573,0.004964,-0.006248,0.249922,0,0);-ms-transform:matrix(0.198573,0.004964,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.198573,0.004964,-0.006248,0.249922,0,0);}
.ma6_c01054{transform:matrix(0.199463,0.004987,-0.006248,0.249922,0,0);-ms-transform:matrix(0.199463,0.004987,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.199463,0.004987,-0.006248,0.249922,0,0);}
.m1b_c01054{transform:matrix(0.199658,0.004991,-0.006248,0.249922,0,0);-ms-transform:matrix(0.199658,0.004991,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.199658,0.004991,-0.006248,0.249922,0,0);}
.m7_c01054{transform:matrix(0.200202,0.004404,-0.005499,0.249940,0,0);-ms-transform:matrix(0.200202,0.004404,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.200202,0.004404,-0.005499,0.249940,0,0);}
.mc3_c01054{transform:matrix(0.200232,0.005006,-0.006248,0.249922,0,0);-ms-transform:matrix(0.200232,0.005006,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.200232,0.005006,-0.006248,0.249922,0,0);}
.mc_c01054{transform:matrix(0.200262,0.004406,-0.005499,0.249940,0,0);-ms-transform:matrix(0.200262,0.004406,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.200262,0.004406,-0.005499,0.249940,0,0);}
.me7_c01054{transform:matrix(0.200606,0.005818,-0.007247,0.249895,0,0);-ms-transform:matrix(0.200606,0.005818,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.200606,0.005818,-0.007247,0.249895,0,0);}
.md_c01054{transform:matrix(0.200716,0.004416,-0.005499,0.249940,0,0);-ms-transform:matrix(0.200716,0.004416,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.200716,0.004416,-0.005499,0.249940,0,0);}
.m1e_c01054{transform:matrix(0.200792,0.005020,-0.006248,0.249922,0,0);-ms-transform:matrix(0.200792,0.005020,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.200792,0.005020,-0.006248,0.249922,0,0);}
.m9b_c01054{transform:matrix(0.200837,0.005021,-0.006248,0.249922,0,0);-ms-transform:matrix(0.200837,0.005021,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.200837,0.005021,-0.006248,0.249922,0,0);}
.mb1_c01054{transform:matrix(0.202012,0.005050,-0.006248,0.249922,0,0);-ms-transform:matrix(0.202012,0.005050,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.202012,0.005050,-0.006248,0.249922,0,0);}
.mb3_c01054{transform:matrix(0.202152,0.005054,-0.006248,0.249922,0,0);-ms-transform:matrix(0.202152,0.005054,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.202152,0.005054,-0.006248,0.249922,0,0);}
.m127_c01054{transform:matrix(0.202181,0.006476,-0.008004,0.249872,0,0);-ms-transform:matrix(0.202181,0.006476,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.202181,0.006476,-0.008004,0.249872,0,0);}
.mef_c01054{transform:matrix(0.202215,0.005864,-0.007247,0.249895,0,0);-ms-transform:matrix(0.202215,0.005864,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.202215,0.005864,-0.007247,0.249895,0,0);}
.m9a_c01054{transform:matrix(0.202967,0.005074,-0.006248,0.249922,0,0);-ms-transform:matrix(0.202967,0.005074,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.202967,0.005074,-0.006248,0.249922,0,0);}
.m102_c01054{transform:matrix(0.203061,0.006504,-0.008004,0.249872,0,0);-ms-transform:matrix(0.203061,0.006504,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.203061,0.006504,-0.008004,0.249872,0,0);}
.m109_c01054{transform:matrix(0.203186,0.006508,-0.008004,0.249872,0,0);-ms-transform:matrix(0.203186,0.006508,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.203186,0.006508,-0.008004,0.249872,0,0);}
.md1_c01054{transform:matrix(0.203270,0.005895,-0.007247,0.249895,0,0);-ms-transform:matrix(0.203270,0.005895,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.203270,0.005895,-0.007247,0.249895,0,0);}
.m8e_c01054{transform:matrix(0.203341,0.005084,-0.006248,0.249922,0,0);-ms-transform:matrix(0.203341,0.005084,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.203341,0.005084,-0.006248,0.249922,0,0);}
.mab_c01054{transform:matrix(0.203411,0.005085,-0.006248,0.249922,0,0);-ms-transform:matrix(0.203411,0.005085,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.203411,0.005085,-0.006248,0.249922,0,0);}
.m106_c01054{transform:matrix(0.203750,0.006527,-0.008004,0.249872,0,0);-ms-transform:matrix(0.203750,0.006527,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.203750,0.006527,-0.008004,0.249872,0,0);}
.md0_c01054{transform:matrix(0.203769,0.005909,-0.007247,0.249895,0,0);-ms-transform:matrix(0.203769,0.005909,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.203769,0.005909,-0.007247,0.249895,0,0);}
.m87_c01054{transform:matrix(0.204091,0.005102,-0.006248,0.249922,0,0);-ms-transform:matrix(0.204091,0.005102,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.204091,0.005102,-0.006248,0.249922,0,0);}
.m12b_c01054{transform:matrix(0.204095,0.006538,-0.008004,0.249872,0,0);-ms-transform:matrix(0.204095,0.006538,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.204095,0.006538,-0.008004,0.249872,0,0);}
.m30_c01054{transform:matrix(0.204686,0.005117,-0.006248,0.249922,0,0);-ms-transform:matrix(0.204686,0.005117,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.204686,0.005117,-0.006248,0.249922,0,0);}
.mff_c01054{transform:matrix(0.204860,0.006562,-0.008004,0.249872,0,0);-ms-transform:matrix(0.204860,0.006562,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.204860,0.006562,-0.008004,0.249872,0,0);}
.m126_c01054{transform:matrix(0.204985,0.006566,-0.008004,0.249872,0,0);-ms-transform:matrix(0.204985,0.006566,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.204985,0.006566,-0.008004,0.249872,0,0);}
.mf_c01054{transform:matrix(0.205000,0.004510,-0.005499,0.249940,0,0);-ms-transform:matrix(0.205000,0.004510,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.205000,0.004510,-0.005499,0.249940,0,0);}
.m33_c01054{transform:matrix(0.205656,0.005141,-0.006248,0.249922,0,0);-ms-transform:matrix(0.205656,0.005141,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.205656,0.005141,-0.006248,0.249922,0,0);}
.m97_c01054{transform:matrix(0.205746,0.005144,-0.006248,0.249922,0,0);-ms-transform:matrix(0.205746,0.005144,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.205746,0.005144,-0.006248,0.249922,0,0);}
.m8_c01054{transform:matrix(0.206020,0.004532,-0.005499,0.249940,0,0);-ms-transform:matrix(0.206020,0.004532,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.206020,0.004532,-0.005499,0.249940,0,0);}
.m8f_c01054{transform:matrix(0.206071,0.005152,-0.006248,0.249922,0,0);-ms-transform:matrix(0.206071,0.005152,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.206071,0.005152,-0.006248,0.249922,0,0);}
.m90_c01054{transform:matrix(0.206191,0.005155,-0.006248,0.249922,0,0);-ms-transform:matrix(0.206191,0.005155,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.206191,0.005155,-0.006248,0.249922,0,0);}
.m14_c01054{transform:matrix(0.206590,0.004545,-0.005499,0.249940,0,0);-ms-transform:matrix(0.206590,0.004545,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.206590,0.004545,-0.005499,0.249940,0,0);}
.m2d_c01054{transform:matrix(0.206680,0.005167,-0.006248,0.249922,0,0);-ms-transform:matrix(0.206680,0.005167,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.206680,0.005167,-0.006248,0.249922,0,0);}
.mec_c01054{transform:matrix(0.206778,0.005997,-0.007247,0.249895,0,0);-ms-transform:matrix(0.206778,0.005997,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.206778,0.005997,-0.007247,0.249895,0,0);}
.ma3_c01054{transform:matrix(0.206825,0.005171,-0.006248,0.249922,0,0);-ms-transform:matrix(0.206825,0.005171,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.206825,0.005171,-0.006248,0.249922,0,0);}
.md6_c01054{transform:matrix(0.206918,0.006001,-0.007247,0.249895,0,0);-ms-transform:matrix(0.206918,0.006001,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.206918,0.006001,-0.007247,0.249895,0,0);}
.med_c01054{transform:matrix(0.207283,0.006011,-0.007247,0.249895,0,0);-ms-transform:matrix(0.207283,0.006011,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.207283,0.006011,-0.007247,0.249895,0,0);}
.ma_c01054{transform:matrix(0.207410,0.004563,-0.005499,0.249940,0,0);-ms-transform:matrix(0.207410,0.004563,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.207410,0.004563,-0.005499,0.249940,0,0);}
.mae_c01054{transform:matrix(0.207745,0.005194,-0.006248,0.249922,0,0);-ms-transform:matrix(0.207745,0.005194,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.207745,0.005194,-0.006248,0.249922,0,0);}
.m18_c01054{transform:matrix(0.207900,0.005198,-0.006248,0.249922,0,0);-ms-transform:matrix(0.207900,0.005198,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.207900,0.005198,-0.006248,0.249922,0,0);}
.mbc_c01054{transform:matrix(0.207925,0.005198,-0.006248,0.249922,0,0);-ms-transform:matrix(0.207925,0.005198,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.207925,0.005198,-0.006248,0.249922,0,0);}
.md8_c01054{transform:matrix(0.208227,0.006039,-0.007247,0.249895,0,0);-ms-transform:matrix(0.208227,0.006039,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.208227,0.006039,-0.007247,0.249895,0,0);}
.m107_c01054{transform:matrix(0.208448,0.006677,-0.008004,0.249872,0,0);-ms-transform:matrix(0.208448,0.006677,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.208448,0.006677,-0.008004,0.249872,0,0);}
.m2b_c01054{transform:matrix(0.208680,0.005217,-0.006248,0.249922,0,0);-ms-transform:matrix(0.208680,0.005217,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.208680,0.005217,-0.006248,0.249922,0,0);}
.m128_c01054{transform:matrix(0.208823,0.006689,-0.008004,0.249872,0,0);-ms-transform:matrix(0.208823,0.006689,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.208823,0.006689,-0.008004,0.249872,0,0);}
.mcb_c01054{transform:matrix(0.209387,0.006072,-0.007247,0.249895,0,0);-ms-transform:matrix(0.209387,0.006072,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.209387,0.006072,-0.007247,0.249895,0,0);}
.m13_c01054{transform:matrix(0.209559,0.004610,-0.005499,0.249940,0,0);-ms-transform:matrix(0.209559,0.004610,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.209559,0.004610,-0.005499,0.249940,0,0);}
.mc1_c01054{transform:matrix(0.209739,0.005243,-0.006248,0.249922,0,0);-ms-transform:matrix(0.209739,0.005243,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.209739,0.005243,-0.006248,0.249922,0,0);}
.m19_c01054{transform:matrix(0.209824,0.005246,-0.006248,0.249922,0,0);-ms-transform:matrix(0.209824,0.005246,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.209824,0.005246,-0.006248,0.249922,0,0);}
.m123_c01054{transform:matrix(0.209837,0.006722,-0.008004,0.249872,0,0);-ms-transform:matrix(0.209837,0.006722,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.209837,0.006722,-0.008004,0.249872,0,0);}
.mc8_c01054{transform:matrix(0.210007,0.006090,-0.007247,0.249895,0,0);-ms-transform:matrix(0.210007,0.006090,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.210007,0.006090,-0.007247,0.249895,0,0);}
.me_c01054{transform:matrix(0.210189,0.004624,-0.005499,0.249940,0,0);-ms-transform:matrix(0.210189,0.004624,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.210189,0.004624,-0.005499,0.249940,0,0);}
.m104_c01054{transform:matrix(0.210287,0.006736,-0.008004,0.249872,0,0);-ms-transform:matrix(0.210287,0.006736,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.210287,0.006736,-0.008004,0.249872,0,0);}
.m100_c01054{transform:matrix(0.210297,0.006736,-0.008004,0.249872,0,0);-ms-transform:matrix(0.210297,0.006736,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.210297,0.006736,-0.008004,0.249872,0,0);}
.m35_c01054{transform:matrix(0.210459,0.005261,-0.006248,0.249922,0,0);-ms-transform:matrix(0.210459,0.005261,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.210459,0.005261,-0.006248,0.249922,0,0);}
.ma5_c01054{transform:matrix(0.210469,0.005262,-0.006248,0.249922,0,0);-ms-transform:matrix(0.210469,0.005262,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.210469,0.005262,-0.006248,0.249922,0,0);}
.meb_c01054{transform:matrix(0.210631,0.006108,-0.007247,0.249895,0,0);-ms-transform:matrix(0.210631,0.006108,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.210631,0.006108,-0.007247,0.249895,0,0);}
.mda_c01054{transform:matrix(0.212096,0.006151,-0.007247,0.249895,0,0);-ms-transform:matrix(0.212096,0.006151,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.212096,0.006151,-0.007247,0.249895,0,0);}
.m32_c01054{transform:matrix(0.212444,0.005311,-0.006248,0.249922,0,0);-ms-transform:matrix(0.212444,0.005311,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.212444,0.005311,-0.006248,0.249922,0,0);}
.m41_c01054{transform:matrix(0.213253,0.005331,-0.006248,0.249922,0,0);-ms-transform:matrix(0.213253,0.005331,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.213253,0.005331,-0.006248,0.249922,0,0);}
.m42_c01054{transform:matrix(0.213293,0.005332,-0.006248,0.249922,0,0);-ms-transform:matrix(0.213293,0.005332,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.213293,0.005332,-0.006248,0.249922,0,0);}
.m11_c01054{transform:matrix(0.213938,0.004707,-0.005499,0.249940,0,0);-ms-transform:matrix(0.213938,0.004707,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.213938,0.004707,-0.005499,0.249940,0,0);}
.m3b_c01054{transform:matrix(0.214323,0.005358,-0.006248,0.249922,0,0);-ms-transform:matrix(0.214323,0.005358,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.214323,0.005358,-0.006248,0.249922,0,0);}
.m84_c01054{transform:matrix(0.214733,0.005368,-0.006248,0.249922,0,0);-ms-transform:matrix(0.214733,0.005368,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.214733,0.005368,-0.006248,0.249922,0,0);}
.mba_c01054{transform:matrix(0.215083,0.005377,-0.006248,0.249922,0,0);-ms-transform:matrix(0.215083,0.005377,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.215083,0.005377,-0.006248,0.249922,0,0);}
.me9_c01054{transform:matrix(0.215364,0.006246,-0.007247,0.249895,0,0);-ms-transform:matrix(0.215364,0.006246,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.215364,0.006246,-0.007247,0.249895,0,0);}
.me2_c01054{transform:matrix(0.215624,0.006253,-0.007247,0.249895,0,0);-ms-transform:matrix(0.215624,0.006253,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.215624,0.006253,-0.007247,0.249895,0,0);}
.md7_c01054{transform:matrix(0.215669,0.006254,-0.007247,0.249895,0,0);-ms-transform:matrix(0.215669,0.006254,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.215669,0.006254,-0.007247,0.249895,0,0);}
.mc9_c01054{transform:matrix(0.215709,0.006256,-0.007247,0.249895,0,0);-ms-transform:matrix(0.215709,0.006256,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.215709,0.006256,-0.007247,0.249895,0,0);}
.mb4_c01054{transform:matrix(0.215823,0.005396,-0.006248,0.249922,0,0);-ms-transform:matrix(0.215823,0.005396,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.215823,0.005396,-0.006248,0.249922,0,0);}
.mf0_c01054{transform:matrix(0.215874,0.006260,-0.007247,0.249895,0,0);-ms-transform:matrix(0.215874,0.006260,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.215874,0.006260,-0.007247,0.249895,0,0);}
.mac_c01054{transform:matrix(0.216142,0.005404,-0.006248,0.249922,0,0);-ms-transform:matrix(0.216142,0.005404,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.216142,0.005404,-0.006248,0.249922,0,0);}
.m2c_c01054{transform:matrix(0.216287,0.005407,-0.006248,0.249922,0,0);-ms-transform:matrix(0.216287,0.005407,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.216287,0.005407,-0.006248,0.249922,0,0);}
.md9_c01054{transform:matrix(0.216324,0.006273,-0.007247,0.249895,0,0);-ms-transform:matrix(0.216324,0.006273,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.216324,0.006273,-0.007247,0.249895,0,0);}
.mdc_c01054{transform:matrix(0.216449,0.006277,-0.007247,0.249895,0,0);-ms-transform:matrix(0.216449,0.006277,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.216449,0.006277,-0.007247,0.249895,0,0);}
.mce_c01054{transform:matrix(0.217629,0.006311,-0.007247,0.249895,0,0);-ms-transform:matrix(0.217629,0.006311,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.217629,0.006311,-0.007247,0.249895,0,0);}
.m3a_c01054{transform:matrix(0.217802,0.005445,-0.006248,0.249922,0,0);-ms-transform:matrix(0.217802,0.005445,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.217802,0.005445,-0.006248,0.249922,0,0);}
.m8d_c01054{transform:matrix(0.218267,0.005457,-0.006248,0.249922,0,0);-ms-transform:matrix(0.218267,0.005457,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.218267,0.005457,-0.006248,0.249922,0,0);}
.m2f_c01054{transform:matrix(0.218402,0.005460,-0.006248,0.249922,0,0);-ms-transform:matrix(0.218402,0.005460,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.218402,0.005460,-0.006248,0.249922,0,0);}
.mcc_c01054{transform:matrix(0.218583,0.006339,-0.007247,0.249895,0,0);-ms-transform:matrix(0.218583,0.006339,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.218583,0.006339,-0.007247,0.249895,0,0);}
.mca_c01054{transform:matrix(0.219003,0.006351,-0.007247,0.249895,0,0);-ms-transform:matrix(0.219003,0.006351,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.219003,0.006351,-0.007247,0.249895,0,0);}
.m89_c01054{transform:matrix(0.219481,0.005487,-0.006248,0.249922,0,0);-ms-transform:matrix(0.219481,0.005487,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.219481,0.005487,-0.006248,0.249922,0,0);}
.m3c_c01054{transform:matrix(0.219556,0.005489,-0.006248,0.249922,0,0);-ms-transform:matrix(0.219556,0.005489,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.219556,0.005489,-0.006248,0.249922,0,0);}
.m16_c01054{transform:matrix(0.219816,0.005495,-0.006248,0.249922,0,0);-ms-transform:matrix(0.219816,0.005495,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.219816,0.005495,-0.006248,0.249922,0,0);}
.mb2_c01054{transform:matrix(0.219896,0.005497,-0.006248,0.249922,0,0);-ms-transform:matrix(0.219896,0.005497,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.219896,0.005497,-0.006248,0.249922,0,0);}
.m6d_c01054{transform:matrix(0.220181,0.005505,-0.006248,0.249922,0,0);-ms-transform:matrix(0.220181,0.005505,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.220181,0.005505,-0.006248,0.249922,0,0);}
.m3_c01054{transform:matrix(0.220312,0.004847,-0.005499,0.249940,0,0);-ms-transform:matrix(0.220312,0.004847,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.220312,0.004847,-0.005499,0.249940,0,0);}
.m8a_c01054{transform:matrix(0.220346,0.005509,-0.006248,0.249922,0,0);-ms-transform:matrix(0.220346,0.005509,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.220346,0.005509,-0.006248,0.249922,0,0);}
.mc4_c01054{transform:matrix(0.220511,0.005513,-0.006248,0.249922,0,0);-ms-transform:matrix(0.220511,0.005513,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.220511,0.005513,-0.006248,0.249922,0,0);}
.m94_c01054{transform:matrix(0.220806,0.005520,-0.006248,0.249922,0,0);-ms-transform:matrix(0.220806,0.005520,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.220806,0.005520,-0.006248,0.249922,0,0);}
.m39_c01054{transform:matrix(0.221316,0.005533,-0.006248,0.249922,0,0);-ms-transform:matrix(0.221316,0.005533,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.221316,0.005533,-0.006248,0.249922,0,0);}
.m85_c01054{transform:matrix(0.221556,0.005539,-0.006248,0.249922,0,0);-ms-transform:matrix(0.221556,0.005539,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.221556,0.005539,-0.006248,0.249922,0,0);}
.mc7_c01054{transform:matrix(0.221967,0.006437,-0.007247,0.249895,0,0);-ms-transform:matrix(0.221967,0.006437,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.221967,0.006437,-0.007247,0.249895,0,0);}
.mf5_c01054{transform:matrix(0.222032,0.006439,-0.007247,0.249895,0,0);-ms-transform:matrix(0.222032,0.006439,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.222032,0.006439,-0.007247,0.249895,0,0);}
.m103_c01054{transform:matrix(0.222126,0.007115,-0.008004,0.249872,0,0);-ms-transform:matrix(0.222126,0.007115,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.222126,0.007115,-0.008004,0.249872,0,0);}
.md4_c01054{transform:matrix(0.222431,0.006451,-0.007247,0.249895,0,0);-ms-transform:matrix(0.222431,0.006451,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.222431,0.006451,-0.007247,0.249895,0,0);}
.ma9_c01054{transform:matrix(0.222505,0.005563,-0.006248,0.249922,0,0);-ms-transform:matrix(0.222505,0.005563,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.222505,0.005563,-0.006248,0.249922,0,0);}
.mcf_c01054{transform:matrix(0.222676,0.006458,-0.007247,0.249895,0,0);-ms-transform:matrix(0.222676,0.006458,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.222676,0.006458,-0.007247,0.249895,0,0);}
.m124_c01054{transform:matrix(0.222706,0.007134,-0.008004,0.249872,0,0);-ms-transform:matrix(0.222706,0.007134,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.222706,0.007134,-0.008004,0.249872,0,0);}
.m1a_c01054{transform:matrix(0.223590,0.005590,-0.006248,0.249922,0,0);-ms-transform:matrix(0.223590,0.005590,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.223590,0.005590,-0.006248,0.249922,0,0);}
.m105_c01054{transform:matrix(0.223735,0.007167,-0.008004,0.249872,0,0);-ms-transform:matrix(0.223735,0.007167,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.223735,0.007167,-0.008004,0.249872,0,0);}
.m1c_c01054{transform:matrix(0.224075,0.005602,-0.006248,0.249922,0,0);-ms-transform:matrix(0.224075,0.005602,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.224075,0.005602,-0.006248,0.249922,0,0);}
.m9_c01054{transform:matrix(0.224746,0.004944,-0.005499,0.249940,0,0);-ms-transform:matrix(0.224746,0.004944,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.224746,0.004944,-0.005499,0.249940,0,0);}
.mb_c01054{transform:matrix(0.224896,0.004948,-0.005499,0.249940,0,0);-ms-transform:matrix(0.224896,0.004948,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.224896,0.004948,-0.005499,0.249940,0,0);}
.mf8_c01054{transform:matrix(0.225220,0.006531,-0.007247,0.249895,0,0);-ms-transform:matrix(0.225220,0.006531,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.225220,0.006531,-0.007247,0.249895,0,0);}
.mbd_c01054{transform:matrix(0.225250,0.005631,-0.006248,0.249922,0,0);-ms-transform:matrix(0.225250,0.005631,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.225250,0.005631,-0.006248,0.249922,0,0);}
.m11c_c01054{transform:matrix(0.225289,0.007216,-0.008004,0.249872,0,0);-ms-transform:matrix(0.225289,0.007216,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.225289,0.007216,-0.008004,0.249872,0,0);}
.m3f_c01054{transform:matrix(0.225520,0.005638,-0.006248,0.249922,0,0);-ms-transform:matrix(0.225520,0.005638,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.225520,0.005638,-0.006248,0.249922,0,0);}
.mb8_c01054{transform:matrix(0.225550,0.005639,-0.006248,0.249922,0,0);-ms-transform:matrix(0.225550,0.005639,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.225550,0.005639,-0.006248,0.249922,0,0);}
.mdf_c01054{transform:matrix(0.225845,0.006550,-0.007247,0.249895,0,0);-ms-transform:matrix(0.225845,0.006550,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.225845,0.006550,-0.007247,0.249895,0,0);}
.maf_c01054{transform:matrix(0.225869,0.005647,-0.006248,0.249922,0,0);-ms-transform:matrix(0.225869,0.005647,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.225869,0.005647,-0.006248,0.249922,0,0);}
.m1d_c01054{transform:matrix(0.225949,0.005649,-0.006248,0.249922,0,0);-ms-transform:matrix(0.225949,0.005649,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.225949,0.005649,-0.006248,0.249922,0,0);}
.m8c_c01054{transform:matrix(0.226029,0.005651,-0.006248,0.249922,0,0);-ms-transform:matrix(0.226029,0.005651,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.226029,0.005651,-0.006248,0.249922,0,0);}
.m67_c01054{transform:matrix(0.226529,0.005663,-0.006248,0.249922,0,0);-ms-transform:matrix(0.226529,0.005663,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.226529,0.005663,-0.006248,0.249922,0,0);}
.me6_c01054{transform:matrix(0.226950,0.006582,-0.007247,0.249895,0,0);-ms-transform:matrix(0.226950,0.006582,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.226950,0.006582,-0.007247,0.249895,0,0);}
.m5_c01054{transform:matrix(0.227005,0.004994,-0.005499,0.249940,0,0);-ms-transform:matrix(0.227005,0.004994,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.227005,0.004994,-0.005499,0.249940,0,0);}
.mf1_c01054{transform:matrix(0.227169,0.006588,-0.007247,0.249895,0,0);-ms-transform:matrix(0.227169,0.006588,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.227169,0.006588,-0.007247,0.249895,0,0);}
.m9f_c01054{transform:matrix(0.227179,0.005679,-0.006248,0.249922,0,0);-ms-transform:matrix(0.227179,0.005679,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.227179,0.005679,-0.006248,0.249922,0,0);}
.mad_c01054{transform:matrix(0.227614,0.005690,-0.006248,0.249922,0,0);-ms-transform:matrix(0.227614,0.005690,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.227614,0.005690,-0.006248,0.249922,0,0);}
.mf4_c01054{transform:matrix(0.227654,0.006602,-0.007247,0.249895,0,0);-ms-transform:matrix(0.227654,0.006602,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.227654,0.006602,-0.007247,0.249895,0,0);}
.m5b_c01054{transform:matrix(0.228744,0.005719,-0.006248,0.249922,0,0);-ms-transform:matrix(0.228744,0.005719,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.228744,0.005719,-0.006248,0.249922,0,0);}
.m10_c01054{transform:matrix(0.229539,0.005050,-0.005499,0.249940,0,0);-ms-transform:matrix(0.229539,0.005050,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.229539,0.005050,-0.005499,0.249940,0,0);}
.ma4_c01054{transform:matrix(0.229633,0.005741,-0.006248,0.249922,0,0);-ms-transform:matrix(0.229633,0.005741,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.229633,0.005741,-0.006248,0.249922,0,0);}
.m108_c01054{transform:matrix(0.229767,0.007360,-0.008004,0.249872,0,0);-ms-transform:matrix(0.229767,0.007360,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.229767,0.007360,-0.008004,0.249872,0,0);}
.m5f_c01054{transform:matrix(0.230253,0.005756,-0.006248,0.249922,0,0);-ms-transform:matrix(0.230253,0.005756,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.230253,0.005756,-0.006248,0.249922,0,0);}
.mb9_c01054{transform:matrix(0.230393,0.005760,-0.006248,0.249922,0,0);-ms-transform:matrix(0.230393,0.005760,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.230393,0.005760,-0.006248,0.249922,0,0);}
.mdb_c01054{transform:matrix(0.230443,0.006683,-0.007247,0.249895,0,0);-ms-transform:matrix(0.230443,0.006683,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.230443,0.006683,-0.007247,0.249895,0,0);}
.m92_c01054{transform:matrix(0.231558,0.005789,-0.006248,0.249922,0,0);-ms-transform:matrix(0.231558,0.005789,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.231558,0.005789,-0.006248,0.249922,0,0);}
.m6a_c01054{transform:matrix(0.231628,0.005791,-0.006248,0.249922,0,0);-ms-transform:matrix(0.231628,0.005791,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.231628,0.005791,-0.006248,0.249922,0,0);}
.m12d_c01054{transform:matrix(0.233050,0.007465,-0.008004,0.249872,0,0);-ms-transform:matrix(0.233050,0.007465,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.233050,0.007465,-0.008004,0.249872,0,0);}
.m99_c01054{transform:matrix(0.233837,0.005846,-0.006248,0.249922,0,0);-ms-transform:matrix(0.233837,0.005846,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.233837,0.005846,-0.006248,0.249922,0,0);}
.m101_c01054{transform:matrix(0.234175,0.007501,-0.008004,0.249872,0,0);-ms-transform:matrix(0.234175,0.007501,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.234175,0.007501,-0.008004,0.249872,0,0);}
.m10f_c01054{transform:matrix(0.234240,0.007503,-0.008004,0.249872,0,0);-ms-transform:matrix(0.234240,0.007503,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.234240,0.007503,-0.008004,0.249872,0,0);}
.m77_c01054{transform:matrix(0.234287,0.005857,-0.006248,0.249922,0,0);-ms-transform:matrix(0.234287,0.005857,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.234287,0.005857,-0.006248,0.249922,0,0);}
.m12a_c01054{transform:matrix(0.234495,0.007511,-0.008004,0.249872,0,0);-ms-transform:matrix(0.234495,0.007511,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.234495,0.007511,-0.008004,0.249872,0,0);}
.m9e_c01054{transform:matrix(0.234497,0.005862,-0.006248,0.249922,0,0);-ms-transform:matrix(0.234497,0.005862,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.234497,0.005862,-0.006248,0.249922,0,0);}
.m88_c01054{transform:matrix(0.234722,0.005868,-0.006248,0.249922,0,0);-ms-transform:matrix(0.234722,0.005868,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.234722,0.005868,-0.006248,0.249922,0,0);}
.m38_c01054{transform:matrix(0.235506,0.005888,-0.006248,0.249922,0,0);-ms-transform:matrix(0.235506,0.005888,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.235506,0.005888,-0.006248,0.249922,0,0);}
.m75_c01054{transform:matrix(0.235681,0.005892,-0.006248,0.249922,0,0);-ms-transform:matrix(0.235681,0.005892,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.235681,0.005892,-0.006248,0.249922,0,0);}
.m10a_c01054{transform:matrix(0.236119,0.007563,-0.008004,0.249872,0,0);-ms-transform:matrix(0.236119,0.007563,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.236119,0.007563,-0.008004,0.249872,0,0);}
.mbb_c01054{transform:matrix(0.236381,0.005910,-0.006248,0.249922,0,0);-ms-transform:matrix(0.236381,0.005910,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.236381,0.005910,-0.006248,0.249922,0,0);}
.m11e_c01054{transform:matrix(0.237048,0.007593,-0.008004,0.249872,0,0);-ms-transform:matrix(0.237048,0.007593,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.237048,0.007593,-0.008004,0.249872,0,0);}
.m95_c01054{transform:matrix(0.237451,0.005936,-0.006248,0.249922,0,0);-ms-transform:matrix(0.237451,0.005936,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.237451,0.005936,-0.006248,0.249922,0,0);}
.m8b_c01054{transform:matrix(0.237661,0.005942,-0.006248,0.249922,0,0);-ms-transform:matrix(0.237661,0.005942,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.237661,0.005942,-0.006248,0.249922,0,0);}
.m62_c01054{transform:matrix(0.237756,0.005944,-0.006248,0.249922,0,0);-ms-transform:matrix(0.237756,0.005944,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.237756,0.005944,-0.006248,0.249922,0,0);}
.m125_c01054{transform:matrix(0.237798,0.007617,-0.008004,0.249872,0,0);-ms-transform:matrix(0.237798,0.007617,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.237798,0.007617,-0.008004,0.249872,0,0);}
.mf2_c01054{transform:matrix(0.237995,0.006902,-0.007247,0.249895,0,0);-ms-transform:matrix(0.237995,0.006902,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.237995,0.006902,-0.007247,0.249895,0,0);}
.mde_c01054{transform:matrix(0.238095,0.006905,-0.007247,0.249895,0,0);-ms-transform:matrix(0.238095,0.006905,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.238095,0.006905,-0.007247,0.249895,0,0);}
.mb6_c01054{transform:matrix(0.238226,0.005956,-0.006248,0.249922,0,0);-ms-transform:matrix(0.238226,0.005956,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.238226,0.005956,-0.006248,0.249922,0,0);}
.mfb_c01054{transform:matrix(0.238540,0.006918,-0.007247,0.249895,0,0);-ms-transform:matrix(0.238540,0.006918,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.238540,0.006918,-0.007247,0.249895,0,0);}
.m17_c01054{transform:matrix(0.238760,0.005969,-0.006248,0.249922,0,0);-ms-transform:matrix(0.238760,0.005969,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.238760,0.005969,-0.006248,0.249922,0,0);}
.mc2_c01054{transform:matrix(0.238845,0.005971,-0.006248,0.249922,0,0);-ms-transform:matrix(0.238845,0.005971,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.238845,0.005971,-0.006248,0.249922,0,0);}
.mc0_c01054{transform:matrix(0.238870,0.005972,-0.006248,0.249922,0,0);-ms-transform:matrix(0.238870,0.005972,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.238870,0.005972,-0.006248,0.249922,0,0);}
.mf3_c01054{transform:matrix(0.239020,0.006932,-0.007247,0.249895,0,0);-ms-transform:matrix(0.239020,0.006932,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.239020,0.006932,-0.007247,0.249895,0,0);}
.m66_c01054{transform:matrix(0.239050,0.005976,-0.006248,0.249922,0,0);-ms-transform:matrix(0.239050,0.005976,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.239050,0.005976,-0.006248,0.249922,0,0);}
.m6e_c01054{transform:matrix(0.239280,0.005982,-0.006248,0.249922,0,0);-ms-transform:matrix(0.239280,0.005982,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.239280,0.005982,-0.006248,0.249922,0,0);}
.mbe_c01054{transform:matrix(0.239505,0.005988,-0.006248,0.249922,0,0);-ms-transform:matrix(0.239505,0.005988,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.239505,0.005988,-0.006248,0.249922,0,0);}
.m73_c01054{transform:matrix(0.239835,0.005996,-0.006248,0.249922,0,0);-ms-transform:matrix(0.239835,0.005996,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.239835,0.005996,-0.006248,0.249922,0,0);}
.m6c_c01054{transform:matrix(0.239875,0.005997,-0.006248,0.249922,0,0);-ms-transform:matrix(0.239875,0.005997,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.239875,0.005997,-0.006248,0.249922,0,0);}
.m129_c01054{transform:matrix(0.239887,0.007684,-0.008004,0.249872,0,0);-ms-transform:matrix(0.239887,0.007684,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.239887,0.007684,-0.008004,0.249872,0,0);}
.md5_c01054{transform:matrix(0.240764,0.006982,-0.007247,0.249895,0,0);-ms-transform:matrix(0.240764,0.006982,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.240764,0.006982,-0.007247,0.249895,0,0);}
.m86_c01054{transform:matrix(0.241829,0.006046,-0.006248,0.249922,0,0);-ms-transform:matrix(0.241829,0.006046,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.241829,0.006046,-0.006248,0.249922,0,0);}
.m115_c01054{transform:matrix(0.242581,0.007770,-0.008004,0.249872,0,0);-ms-transform:matrix(0.242581,0.007770,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.242581,0.007770,-0.008004,0.249872,0,0);}
.m121_c01054{transform:matrix(0.243190,0.007790,-0.008004,0.249872,0,0);-ms-transform:matrix(0.243190,0.007790,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.243190,0.007790,-0.008004,0.249872,0,0);}
.m10b_c01054{transform:matrix(0.243625,0.007804,-0.008004,0.249872,0,0);-ms-transform:matrix(0.243625,0.007804,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.243625,0.007804,-0.008004,0.249872,0,0);}
.m10d_c01054{transform:matrix(0.245334,0.007859,-0.008004,0.249872,0,0);-ms-transform:matrix(0.245334,0.007859,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.245334,0.007859,-0.008004,0.249872,0,0);}
.m98_c01054{transform:matrix(0.245748,0.006144,-0.006248,0.249922,0,0);-ms-transform:matrix(0.245748,0.006144,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.245748,0.006144,-0.006248,0.249922,0,0);}
.me3_c01054{transform:matrix(0.246087,0.007137,-0.007247,0.249895,0,0);-ms-transform:matrix(0.246087,0.007137,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.246087,0.007137,-0.007247,0.249895,0,0);}
.mb5_c01054{transform:matrix(0.246118,0.006153,-0.006248,0.249922,0,0);-ms-transform:matrix(0.246118,0.006153,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.246118,0.006153,-0.006248,0.249922,0,0);}
.mf7_c01054{transform:matrix(0.246731,0.007155,-0.007247,0.249895,0,0);-ms-transform:matrix(0.246731,0.007155,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.246731,0.007155,-0.007247,0.249895,0,0);}
.m5c_c01054{transform:matrix(0.248217,0.006205,-0.006248,0.249922,0,0);-ms-transform:matrix(0.248217,0.006205,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.248217,0.006205,-0.006248,0.249922,0,0);}
.m82_c01054{transform:matrix(0.248827,0.006221,-0.006248,0.249922,0,0);-ms-transform:matrix(0.248827,0.006221,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.248827,0.006221,-0.006248,0.249922,0,0);}
.m7b_c01054{transform:matrix(0.250842,0.006271,-0.006248,0.249922,0,0);-ms-transform:matrix(0.250842,0.006271,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.250842,0.006271,-0.006248,0.249922,0,0);}
.mbf_c01054{transform:matrix(0.251766,0.006294,-0.006248,0.249922,0,0);-ms-transform:matrix(0.251766,0.006294,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.251766,0.006294,-0.006248,0.249922,0,0);}
.m70_c01054{transform:matrix(0.251791,0.006295,-0.006248,0.249922,0,0);-ms-transform:matrix(0.251791,0.006295,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.251791,0.006295,-0.006248,0.249922,0,0);}
.me4_c01054{transform:matrix(0.252889,0.007334,-0.007247,0.249895,0,0);-ms-transform:matrix(0.252889,0.007334,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.252889,0.007334,-0.007247,0.249895,0,0);}
.me0_c01054{transform:matrix(0.253493,0.007351,-0.007247,0.249895,0,0);-ms-transform:matrix(0.253493,0.007351,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.253493,0.007351,-0.007247,0.249895,0,0);}
.m7e_c01054{transform:matrix(0.253511,0.006338,-0.006248,0.249922,0,0);-ms-transform:matrix(0.253511,0.006338,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.253511,0.006338,-0.006248,0.249922,0,0);}
.ma2_c01054{transform:matrix(0.255895,0.006397,-0.006248,0.249922,0,0);-ms-transform:matrix(0.255895,0.006397,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.255895,0.006397,-0.006248,0.249922,0,0);}
.m68_c01054{transform:matrix(0.256275,0.006407,-0.006248,0.249922,0,0);-ms-transform:matrix(0.256275,0.006407,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.256275,0.006407,-0.006248,0.249922,0,0);}
.mf9_c01054{transform:matrix(0.256502,0.007439,-0.007247,0.249895,0,0);-ms-transform:matrix(0.256502,0.007439,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.256502,0.007439,-0.007247,0.249895,0,0);}
.me5_c01054{transform:matrix(0.257427,0.007465,-0.007247,0.249895,0,0);-ms-transform:matrix(0.257427,0.007465,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.257427,0.007465,-0.007247,0.249895,0,0);}
.me1_c01054{transform:matrix(0.258381,0.007493,-0.007247,0.249895,0,0);-ms-transform:matrix(0.258381,0.007493,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.258381,0.007493,-0.007247,0.249895,0,0);}
.m118_c01054{transform:matrix(0.258402,0.008277,-0.008004,0.249872,0,0);-ms-transform:matrix(0.258402,0.008277,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.258402,0.008277,-0.008004,0.249872,0,0);}
.m119_c01054{transform:matrix(0.258817,0.008290,-0.008004,0.249872,0,0);-ms-transform:matrix(0.258817,0.008290,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.258817,0.008290,-0.008004,0.249872,0,0);}
.m93_c01054{transform:matrix(0.259144,0.006479,-0.006248,0.249922,0,0);-ms-transform:matrix(0.259144,0.006479,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.259144,0.006479,-0.006248,0.249922,0,0);}
.m11a_c01054{transform:matrix(0.259202,0.008303,-0.008004,0.249872,0,0);-ms-transform:matrix(0.259202,0.008303,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.259202,0.008303,-0.008004,0.249872,0,0);}
.m69_c01054{transform:matrix(0.259499,0.006487,-0.006248,0.249922,0,0);-ms-transform:matrix(0.259499,0.006487,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.259499,0.006487,-0.006248,0.249922,0,0);}
.mfa_c01054{transform:matrix(0.259501,0.007526,-0.007247,0.249895,0,0);-ms-transform:matrix(0.259501,0.007526,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.259501,0.007526,-0.007247,0.249895,0,0);}
.m7d_c01054{transform:matrix(0.260344,0.006509,-0.006248,0.249922,0,0);-ms-transform:matrix(0.260344,0.006509,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.260344,0.006509,-0.006248,0.249922,0,0);}
.m96_c01054{transform:matrix(0.260464,0.006512,-0.006248,0.249922,0,0);-ms-transform:matrix(0.260464,0.006512,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.260464,0.006512,-0.006248,0.249922,0,0);}
.m7a_c01054{transform:matrix(0.260644,0.006516,-0.006248,0.249922,0,0);-ms-transform:matrix(0.260644,0.006516,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.260644,0.006516,-0.006248,0.249922,0,0);}
.m63_c01054{transform:matrix(0.260714,0.006518,-0.006248,0.249922,0,0);-ms-transform:matrix(0.260714,0.006518,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.260714,0.006518,-0.006248,0.249922,0,0);}
.m110_c01054{transform:matrix(0.261141,0.008365,-0.008004,0.249872,0,0);-ms-transform:matrix(0.261141,0.008365,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.261141,0.008365,-0.008004,0.249872,0,0);}
.m113_c01054{transform:matrix(0.261501,0.008376,-0.008004,0.249872,0,0);-ms-transform:matrix(0.261501,0.008376,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.261501,0.008376,-0.008004,0.249872,0,0);}
.m80_c01054{transform:matrix(0.262663,0.006567,-0.006248,0.249922,0,0);-ms-transform:matrix(0.262663,0.006567,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.262663,0.006567,-0.006248,0.249922,0,0);}
.m7f_c01054{transform:matrix(0.262768,0.006569,-0.006248,0.249922,0,0);-ms-transform:matrix(0.262768,0.006569,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.262768,0.006569,-0.006248,0.249922,0,0);}
.m6b_c01054{transform:matrix(0.262923,0.006573,-0.006248,0.249922,0,0);-ms-transform:matrix(0.262923,0.006573,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.262923,0.006573,-0.006248,0.249922,0,0);}
.mf6_c01054{transform:matrix(0.263069,0.007629,-0.007247,0.249895,0,0);-ms-transform:matrix(0.263069,0.007629,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.263069,0.007629,-0.007247,0.249895,0,0);}
.m5d_c01054{transform:matrix(0.263283,0.006582,-0.006248,0.249922,0,0);-ms-transform:matrix(0.263283,0.006582,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.263283,0.006582,-0.006248,0.249922,0,0);}
.m111_c01054{transform:matrix(0.263460,0.008439,-0.008004,0.249872,0,0);-ms-transform:matrix(0.263460,0.008439,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.263460,0.008439,-0.008004,0.249872,0,0);}
.m11f_c01054{transform:matrix(0.263925,0.008454,-0.008004,0.249872,0,0);-ms-transform:matrix(0.263925,0.008454,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.263925,0.008454,-0.008004,0.249872,0,0);}
.m10c_c01054{transform:matrix(0.263970,0.008455,-0.008004,0.249872,0,0);-ms-transform:matrix(0.263970,0.008455,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.263970,0.008455,-0.008004,0.249872,0,0);}
.m79_c01054{transform:matrix(0.264192,0.006605,-0.006248,0.249922,0,0);-ms-transform:matrix(0.264192,0.006605,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.264192,0.006605,-0.006248,0.249922,0,0);}
.m114_c01054{transform:matrix(0.264629,0.008477,-0.008004,0.249872,0,0);-ms-transform:matrix(0.264629,0.008477,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.264629,0.008477,-0.008004,0.249872,0,0);}
.m10e_c01054{transform:matrix(0.266383,0.008533,-0.008004,0.249872,0,0);-ms-transform:matrix(0.266383,0.008533,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.266383,0.008533,-0.008004,0.249872,0,0);}
.m120_c01054{transform:matrix(0.266673,0.008542,-0.008004,0.249872,0,0);-ms-transform:matrix(0.266673,0.008542,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.266673,0.008542,-0.008004,0.249872,0,0);}
.m74_c01054{transform:matrix(0.267092,0.006677,-0.006248,0.249922,0,0);-ms-transform:matrix(0.267092,0.006677,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.267092,0.006677,-0.006248,0.249922,0,0);}
.m72_c01054{transform:matrix(0.269451,0.006736,-0.006248,0.249922,0,0);-ms-transform:matrix(0.269451,0.006736,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.269451,0.006736,-0.006248,0.249922,0,0);}
.m116_c01054{transform:matrix(0.270116,0.008652,-0.008004,0.249872,0,0);-ms-transform:matrix(0.270116,0.008652,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.270116,0.008652,-0.008004,0.249872,0,0);}
.m11d_c01054{transform:matrix(0.271986,0.008712,-0.008004,0.249872,0,0);-ms-transform:matrix(0.271986,0.008712,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.271986,0.008712,-0.008004,0.249872,0,0);}
.m78_c01054{transform:matrix(0.272960,0.006824,-0.006248,0.249922,0,0);-ms-transform:matrix(0.272960,0.006824,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.272960,0.006824,-0.006248,0.249922,0,0);}
.m76_c01054{transform:matrix(0.273615,0.006840,-0.006248,0.249922,0,0);-ms-transform:matrix(0.273615,0.006840,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.273615,0.006840,-0.006248,0.249922,0,0);}
.m5a_c01054{transform:matrix(0.273874,0.006847,-0.006248,0.249922,0,0);-ms-transform:matrix(0.273874,0.006847,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.273874,0.006847,-0.006248,0.249922,0,0);}
.m112_c01054{transform:matrix(0.275674,0.008830,-0.008004,0.249872,0,0);-ms-transform:matrix(0.275674,0.008830,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.275674,0.008830,-0.008004,0.249872,0,0);}
.m71_c01054{transform:matrix(0.276109,0.006903,-0.006248,0.249922,0,0);-ms-transform:matrix(0.276109,0.006903,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.276109,0.006903,-0.006248,0.249922,0,0);}
.m5e_c01054{transform:matrix(0.277383,0.006935,-0.006248,0.249922,0,0);-ms-transform:matrix(0.277383,0.006935,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.277383,0.006935,-0.006248,0.249922,0,0);}
.m117_c01054{transform:matrix(0.277927,0.008903,-0.008004,0.249872,0,0);-ms-transform:matrix(0.277927,0.008903,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.277927,0.008903,-0.008004,0.249872,0,0);}
.mb0_c01054{transform:matrix(0.278483,0.006962,-0.006248,0.249922,0,0);-ms-transform:matrix(0.278483,0.006962,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.278483,0.006962,-0.006248,0.249922,0,0);}
.m11b_c01054{transform:matrix(0.279202,0.008943,-0.008004,0.249872,0,0);-ms-transform:matrix(0.279202,0.008943,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.279202,0.008943,-0.008004,0.249872,0,0);}
.m7c_c01054{transform:matrix(0.280107,0.007003,-0.006248,0.249922,0,0);-ms-transform:matrix(0.280107,0.007003,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.280107,0.007003,-0.006248,0.249922,0,0);}
.m59_c01054{transform:matrix(0.281962,0.007049,-0.006248,0.249922,0,0);-ms-transform:matrix(0.281962,0.007049,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.281962,0.007049,-0.006248,0.249922,0,0);}
.m122_c01054{transform:matrix(0.282005,0.009033,-0.008004,0.249872,0,0);-ms-transform:matrix(0.282005,0.009033,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.282005,0.009033,-0.008004,0.249872,0,0);}
.m6f_c01054{transform:matrix(0.285056,0.007126,-0.006248,0.249922,0,0);-ms-transform:matrix(0.285056,0.007126,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.285056,0.007126,-0.006248,0.249922,0,0);}
.m81_c01054{transform:matrix(0.295293,0.007382,-0.006248,0.249922,0,0);-ms-transform:matrix(0.295293,0.007382,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.295293,0.007382,-0.006248,0.249922,0,0);}
.m60_c01054{transform:matrix(0.296662,0.007417,-0.006248,0.249922,0,0);-ms-transform:matrix(0.296662,0.007417,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.296662,0.007417,-0.006248,0.249922,0,0);}
.m61_c01054{transform:matrix(0.297847,0.007446,-0.006248,0.249922,0,0);-ms-transform:matrix(0.297847,0.007446,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.297847,0.007446,-0.006248,0.249922,0,0);}
.md2_c01054{transform:matrix(0.299684,0.008691,-0.007247,0.249895,0,0);-ms-transform:matrix(0.299684,0.008691,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.299684,0.008691,-0.007247,0.249895,0,0);}
.m131_c01054{transform:matrix(0.302223,0.006347,-0.005249,0.249945,0,0);-ms-transform:matrix(0.302223,0.006347,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.302223,0.006347,-0.005249,0.249945,0,0);}
.m136_c01054{transform:matrix(0.305018,0.006405,-0.005249,0.249945,0,0);-ms-transform:matrix(0.305018,0.006405,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.305018,0.006405,-0.005249,0.249945,0,0);}
.m65_c01054{transform:matrix(0.307889,0.007697,-0.006248,0.249922,0,0);-ms-transform:matrix(0.307889,0.007697,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.307889,0.007697,-0.006248,0.249922,0,0);}
.ma1_c01054{transform:matrix(0.320070,0.008002,-0.006248,0.249922,0,0);-ms-transform:matrix(0.320070,0.008002,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.320070,0.008002,-0.006248,0.249922,0,0);}
.m134_c01054{transform:matrix(0.321184,0.006745,-0.005249,0.249945,0,0);-ms-transform:matrix(0.321184,0.006745,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.321184,0.006745,-0.005249,0.249945,0,0);}
.m139_c01054{transform:matrix(0.329002,0.006909,-0.005249,0.249945,0,0);-ms-transform:matrix(0.329002,0.006909,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.329002,0.006909,-0.005249,0.249945,0,0);}
.m1_c01054{transform:matrix(0.334700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334700,0.000000,0.000000,0.250000,0,0);}
.md3_c01054{transform:matrix(0.338353,0.009812,-0.007247,0.249895,0,0);-ms-transform:matrix(0.338353,0.009812,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.338353,0.009812,-0.007247,0.249895,0,0);}
.m138_c01054{transform:matrix(0.338700,0.007113,-0.005249,0.249945,0,0);-ms-transform:matrix(0.338700,0.007113,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.338700,0.007113,-0.005249,0.249945,0,0);}
.m133_c01054{transform:matrix(0.342449,0.007191,-0.005249,0.249945,0,0);-ms-transform:matrix(0.342449,0.007191,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.342449,0.007191,-0.005249,0.249945,0,0);}
.m137_c01054{transform:matrix(0.344259,0.007229,-0.005249,0.249945,0,0);-ms-transform:matrix(0.344259,0.007229,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.344259,0.007229,-0.005249,0.249945,0,0);}
.m132_c01054{transform:matrix(0.356101,0.007478,-0.005249,0.249945,0,0);-ms-transform:matrix(0.356101,0.007478,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.356101,0.007478,-0.005249,0.249945,0,0);}
.m135_c01054{transform:matrix(0.362720,0.007617,-0.005249,0.249945,0,0);-ms-transform:matrix(0.362720,0.007617,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.362720,0.007617,-0.005249,0.249945,0,0);}
.mdd_c01054{transform:matrix(0.375177,0.010880,-0.007247,0.249895,0,0);-ms-transform:matrix(0.375177,0.010880,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.375177,0.010880,-0.007247,0.249895,0,0);}
.m12f_c01054{transform:matrix(0.400192,0.008404,-0.005249,0.249945,0,0);-ms-transform:matrix(0.400192,0.008404,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.400192,0.008404,-0.005249,0.249945,0,0);}
.m64_c01054{transform:matrix(0.404219,0.010105,-0.006248,0.249922,0,0);-ms-transform:matrix(0.404219,0.010105,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.404219,0.010105,-0.006248,0.249922,0,0);}
.m12e_c01054{transform:matrix(0.486168,0.010210,-0.005249,0.249945,0,0);-ms-transform:matrix(0.486168,0.010210,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.486168,0.010210,-0.005249,0.249945,0,0);}
.m2_c01054{transform:matrix(0.521910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521910,0.000000,0.000000,0.250000,0,0);}
.m12c_c01054{transform:matrix(0.590637,0.018919,-0.008004,0.249872,0,0);-ms-transform:matrix(0.590637,0.018919,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.590637,0.018919,-0.008004,0.249872,0,0);}
.v0_c01054{vertical-align:0.000000px;}
.ls0_c01054{letter-spacing:0.000000px;}
.sc__c01054{text-shadow:none;}
.sc0_c01054{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__c01054{-webkit-text-stroke:0px transparent;}
.sc0_c01054{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01054{word-spacing:0.000000px;}
.fc0_c01054{color:transparent;}
.fs12_c01054{font-size:54.011906px;}
.fs11_c01054{font-size:71.964891px;}
.fs0_c01054{font-size:72.000000px;}
.fs7_c01054{font-size:72.022496px;}
.fs8_c01054{font-size:78.024371px;}
.fsd_c01054{font-size:78.032792px;}
.fs10_c01054{font-size:83.959040px;}
.fs9_c01054{font-size:84.026246px;}
.fsc_c01054{font-size:84.035315px;}
.fs1_c01054{font-size:90.021777px;}
.fs3_c01054{font-size:90.028121px;}
.fsb_c01054{font-size:90.037837px;}
.fs2_c01054{font-size:96.023229px;}
.fsa_c01054{font-size:96.029995px;}
.fse_c01054{font-size:96.040360px;}
.fs4_c01054{font-size:102.031870px;}
.fsf_c01054{font-size:102.042882px;}
.fs6_c01054{font-size:108.033745px;}
.fs5_c01054{font-size:114.035619px;}
.y0_c01054{bottom:0.000000px;}
.y13c_c01054{bottom:65.813577px;}
.y13b_c01054{bottom:66.993882px;}
.y13a_c01054{bottom:68.151381px;}
.y139_c01054{bottom:68.837168px;}
.y138_c01054{bottom:69.279932px;}
.y137_c01054{bottom:70.233248px;}
.y136_c01054{bottom:70.698093px;}
.y135_c01054{bottom:72.309098px;}
.y134_c01054{bottom:73.000806px;}
.y133_c01054{bottom:73.421678px;}
.y132_c01054{bottom:74.181804px;}
.y131_c01054{bottom:75.340500px;}
.y130_c01054{bottom:111.714841px;}
.y12f_c01054{bottom:113.640624px;}
.y12e_c01054{bottom:114.220050px;}
.y12d_c01054{bottom:116.730672px;}
.y12c_c01054{bottom:118.392153px;}
.y12b_c01054{bottom:119.209485px;}
.y12a_c01054{bottom:120.317514px;}
.y129_c01054{bottom:121.430082px;}
.y128_c01054{bottom:122.275297px;}
.y127_c01054{bottom:124.750185px;}
.y126_c01054{bottom:126.375307px;}
.y125_c01054{bottom:127.772497px;}
.y124_c01054{bottom:152.579995px;}
.y123_c01054{bottom:153.428278px;}
.y122_c01054{bottom:154.307422px;}
.y121_c01054{bottom:155.555544px;}
.y120_c01054{bottom:156.187416px;}
.y11f_c01054{bottom:157.867063px;}
.y11e_c01054{bottom:158.302600px;}
.y11d_c01054{bottom:160.188583px;}
.y11c_c01054{bottom:161.017089px;}
.y11b_c01054{bottom:162.269557px;}
.y11a_c01054{bottom:163.932825px;}
.y119_c01054{bottom:185.094286px;}
.y118_c01054{bottom:186.976551px;}
.y117_c01054{bottom:187.902699px;}
.y116_c01054{bottom:189.757587px;}
.y115_c01054{bottom:191.618128px;}
.y114_c01054{bottom:194.107560px;}
.y113_c01054{bottom:194.747575px;}
.y112_c01054{bottom:196.263439px;}
.y111_c01054{bottom:197.185699px;}
.y110_c01054{bottom:199.077025px;}
.y10f_c01054{bottom:199.976410px;}
.y10e_c01054{bottom:201.820749px;}
.y10d_c01054{bottom:203.065110px;}
.y10c_c01054{bottom:219.647964px;}
.y10b_c01054{bottom:220.720716px;}
.y10a_c01054{bottom:222.882924px;}
.y109_c01054{bottom:224.319180px;}
.y108_c01054{bottom:225.373548px;}
.y107_c01054{bottom:227.482860px;}
.y106_c01054{bottom:228.563148px;}
.y105_c01054{bottom:230.654316px;}
.y104_c01054{bottom:231.748524px;}
.y103_c01054{bottom:234.552252px;}
.y102_c01054{bottom:236.001660px;}
.y101_c01054{bottom:237.343500px;}
.y100_c01054{bottom:264.432923px;}
.yff_c01054{bottom:265.652922px;}
.yfe_c01054{bottom:272.385944px;}
.yfd_c01054{bottom:294.624527px;}
.yfc_c01054{bottom:297.426608px;}
.yfb_c01054{bottom:299.927883px;}
.yfa_c01054{bottom:300.772503px;}
.yf9_c01054{bottom:301.603289px;}
.yf8_c01054{bottom:304.896002px;}
.yf7_c01054{bottom:305.749301px;}
.yf6_c01054{bottom:306.857378px;}
.yf5_c01054{bottom:308.228520px;}
.yf4_c01054{bottom:309.065810px;}
.yf3_c01054{bottom:310.163250px;}
.yf2_c01054{bottom:311.256536px;}
.yf1_c01054{bottom:328.695546px;}
.yf0_c01054{bottom:329.462877px;}
.yef_c01054{bottom:331.418361px;}
.yee_c01054{bottom:333.842871px;}
.yed_c01054{bottom:336.039035px;}
.yec_c01054{bottom:337.259643px;}
.yeb_c01054{bottom:341.145681px;}
.yea_c01054{bottom:341.648991px;}
.ye9_c01054{bottom:342.862812px;}
.ye8_c01054{bottom:365.863554px;}
.ye7_c01054{bottom:368.170296px;}
.ye6_c01054{bottom:370.755324px;}
.ye5_c01054{bottom:372.776298px;}
.ye4_c01054{bottom:373.632645px;}
.ye3_c01054{bottom:376.519515px;}
.ye2_c01054{bottom:378.556803px;}
.ye1_c01054{bottom:379.407429px;}
.ye0_c01054{bottom:380.830635px;}
.ydf_c01054{bottom:382.848738px;}
.yde_c01054{bottom:403.223589px;}
.ydd_c01054{bottom:404.614883px;}
.ydc_c01054{bottom:405.252722px;}
.ydb_c01054{bottom:406.050342px;}
.yda_c01054{bottom:406.847200px;}
.yd9_c01054{bottom:407.436936px;}
.yd8_c01054{bottom:408.043403px;}
.yd7_c01054{bottom:410.027870px;}
.yd6_c01054{bottom:411.204795px;}
.yd5_c01054{bottom:411.584471px;}
.yd4_c01054{bottom:413.663905px;}
.yd3_c01054{bottom:414.372063px;}
.yd2_c01054{bottom:414.979857px;}
.yd1_c01054{bottom:436.560423px;}
.yd0_c01054{bottom:438.570993px;}
.ycf_c01054{bottom:439.518945px;}
.yce_c01054{bottom:442.104237px;}
.ycd_c01054{bottom:443.723220px;}
.ycc_c01054{bottom:445.666495px;}
.ycb_c01054{bottom:447.586760px;}
.yca_c01054{bottom:448.832121px;}
.yc9_c01054{bottom:451.722000px;}
.yc8_c01054{bottom:474.800550px;}
.yc7_c01054{bottom:477.914212px;}
.yc6_c01054{bottom:480.130762px;}
.yc5_c01054{bottom:480.815137px;}
.yc4_c01054{bottom:483.114075px;}
.yc3_c01054{bottom:483.827887px;}
.yc2_c01054{bottom:485.694487px;}
.yc1_c01054{bottom:486.832875px;}
.yc0_c01054{bottom:488.254800px;}
.ybf_c01054{bottom:488.929162px;}
.ybe_c01054{bottom:506.258962px;}
.ybd_c01054{bottom:507.134025px;}
.ybc_c01054{bottom:509.139937px;}
.ybb_c01054{bottom:510.036562px;}
.yba_c01054{bottom:510.631387px;}
.yb9_c01054{bottom:512.051925px;}
.yb8_c01054{bottom:512.892713px;}
.yb7_c01054{bottom:515.232150px;}
.yb6_c01054{bottom:518.105437px;}
.yb5_c01054{bottom:519.236025px;}
.yb4_c01054{bottom:520.097587px;}
.yb3_c01054{bottom:521.812125px;}
.yb2_c01054{bottom:522.654487px;}
.yb1_c01054{bottom:523.508175px;}
.yb0_c01054{bottom:544.425488px;}
.yaf_c01054{bottom:545.506425px;}
.yae_c01054{bottom:546.830775px;}
.yad_c01054{bottom:547.907100px;}
.yac_c01054{bottom:548.969325px;}
.yab_c01054{bottom:549.773587px;}
.yaa_c01054{bottom:551.901862px;}
.ya9_c01054{bottom:552.683100px;}
.ya8_c01054{bottom:556.112588px;}
.ya7_c01054{bottom:557.201587px;}
.ya6_c01054{bottom:557.738700px;}
.ya5_c01054{bottom:559.425450px;}
.ya4_c01054{bottom:579.125100px;}
.ya3_c01054{bottom:580.020262px;}
.ya2_c01054{bottom:582.039337px;}
.ya1_c01054{bottom:583.218637px;}
.ya0_c01054{bottom:587.244300px;}
.y9f_c01054{bottom:593.275913px;}
.y9e_c01054{bottom:594.132488px;}
.y9d_c01054{bottom:595.262888px;}
.y9c_c01054{bottom:596.427488px;}
.y9b_c01054{bottom:616.852762px;}
.y9a_c01054{bottom:617.967187px;}
.y99_c01054{bottom:619.621425px;}
.y98_c01054{bottom:620.471137px;}
.y97_c01054{bottom:623.261062px;}
.y96_c01054{bottom:625.746638px;}
.y95_c01054{bottom:626.583375px;}
.y94_c01054{bottom:627.398512px;}
.y93_c01054{bottom:628.531988px;}
.y92_c01054{bottom:630.999000px;}
.y91_c01054{bottom:662.299987px;}
.y90_c01054{bottom:664.766175px;}
.y8f_c01054{bottom:666.927075px;}
.y8e_c01054{bottom:668.407012px;}
.y8d_c01054{bottom:687.523387px;}
.y8c_c01054{bottom:688.924387px;}
.y8b_c01054{bottom:691.052325px;}
.y8a_c01054{bottom:692.206087px;}
.y89_c01054{bottom:693.360862px;}
.y88_c01054{bottom:695.005125px;}
.y87_c01054{bottom:695.695012px;}
.y86_c01054{bottom:698.457975px;}
.y85_c01054{bottom:700.095300px;}
.y84_c01054{bottom:700.816275px;}
.y83_c01054{bottom:720.533062px;}
.y82_c01054{bottom:722.608200px;}
.y81_c01054{bottom:724.961925px;}
.y80_c01054{bottom:725.544337px;}
.y7f_c01054{bottom:727.248600px;}
.y7e_c01054{bottom:728.711137px;}
.y7d_c01054{bottom:729.214575px;}
.y7c_c01054{bottom:730.641262px;}
.y7b_c01054{bottom:733.826662px;}
.y7a_c01054{bottom:734.795400px;}
.y79_c01054{bottom:735.286087px;}
.y78_c01054{bottom:736.734975px;}
.y77_c01054{bottom:764.040412px;}
.y76_c01054{bottom:764.492625px;}
.y75_c01054{bottom:765.378487px;}
.y74_c01054{bottom:765.803700px;}
.y73_c01054{bottom:766.959637px;}
.y72_c01054{bottom:767.394937px;}
.y71_c01054{bottom:768.529800px;}
.y70_c01054{bottom:769.411387px;}
.y6f_c01054{bottom:769.979962px;}
.y6e_c01054{bottom:772.113900px;}
.y6d_c01054{bottom:793.746000px;}
.y6c_c01054{bottom:794.596012px;}
.y6b_c01054{bottom:796.042612px;}
.y6a_c01054{bottom:798.085687px;}
.y69_c01054{bottom:798.956362px;}
.y68_c01054{bottom:802.096800px;}
.y67_c01054{bottom:804.706387px;}
.y66_c01054{bottom:805.854750px;}
.y65_c01054{bottom:807.280725px;}
.y64_c01054{bottom:808.913850px;}
.y63_c01054{bottom:811.013025px;}
.y62_c01054{bottom:830.288025px;}
.y61_c01054{bottom:830.934487px;}
.y60_c01054{bottom:832.746937px;}
.y5f_c01054{bottom:833.249550px;}
.y5e_c01054{bottom:833.889600px;}
.y5d_c01054{bottom:836.004712px;}
.y5c_c01054{bottom:837.667800px;}
.y5b_c01054{bottom:838.515112px;}
.y5a_c01054{bottom:839.155950px;}
.y59_c01054{bottom:840.839137px;}
.y58_c01054{bottom:843.147412px;}
.y57_c01054{bottom:866.766412px;}
.y56_c01054{bottom:867.512475px;}
.y55_c01054{bottom:869.811375px;}
.y54_c01054{bottom:870.597000px;}
.y53_c01054{bottom:871.364512px;}
.y52_c01054{bottom:873.668662px;}
.y51_c01054{bottom:874.419487px;}
.y50_c01054{bottom:876.196200px;}
.y4f_c01054{bottom:877.741950px;}
.y4e_c01054{bottom:878.487712px;}
.y4d_c01054{bottom:879.473625px;}
.y4c_c01054{bottom:881.499450px;}
.y4b_c01054{bottom:902.515987px;}
.y4a_c01054{bottom:904.013737px;}
.y49_c01054{bottom:905.958075px;}
.y48_c01054{bottom:908.404650px;}
.y47_c01054{bottom:909.142125px;}
.y46_c01054{bottom:910.353937px;}
.y45_c01054{bottom:913.016137px;}
.y44_c01054{bottom:913.746000px;}
.y43_c01054{bottom:916.188637px;}
.y42_c01054{bottom:917.155500px;}
.y41_c01054{bottom:938.141887px;}
.y40_c01054{bottom:939.453037px;}
.y3f_c01054{bottom:940.121737px;}
.y3e_c01054{bottom:942.342000px;}
.y3d_c01054{bottom:943.018125px;}
.y3c_c01054{bottom:943.693950px;}
.y3b_c01054{bottom:945.470775px;}
.y3a_c01054{bottom:946.988700px;}
.y39_c01054{bottom:949.009612px;}
.y38_c01054{bottom:951.179550px;}
.y37_c01054{bottom:973.505212px;}
.y36_c01054{bottom:974.161912px;}
.y35_c01054{bottom:974.815162px;}
.y34_c01054{bottom:976.072837px;}
.y33_c01054{bottom:976.718925px;}
.y32_c01054{bottom:977.767612px;}
.y31_c01054{bottom:979.034887px;}
.y30_c01054{bottom:979.664325px;}
.y2f_c01054{bottom:980.100075px;}
.y2e_c01054{bottom:981.749737px;}
.y2d_c01054{bottom:982.404262px;}
.y2c_c01054{bottom:983.225962px;}
.y2b_c01054{bottom:984.713587px;}
.y2a_c01054{bottom:985.750462px;}
.y29_c01054{bottom:1008.561675px;}
.y28_c01054{bottom:1009.403587px;}
.y27_c01054{bottom:1010.713012px;}
.y26_c01054{bottom:1011.965812px;}
.y25_c01054{bottom:1012.591912px;}
.y24_c01054{bottom:1013.839350px;}
.y23_c01054{bottom:1014.516825px;}
.y22_c01054{bottom:1015.122787px;}
.y21_c01054{bottom:1015.754512px;}
.y20_c01054{bottom:1017.216600px;}
.y1f_c01054{bottom:1018.068112px;}
.y1e_c01054{bottom:1020.152625px;}
.y1d_c01054{bottom:1021.409062px;}
.y1c_c01054{bottom:1046.214000px;}
.y1b_c01054{bottom:1048.740562px;}
.y1a_c01054{bottom:1049.584875px;}
.y19_c01054{bottom:1051.774913px;}
.y18_c01054{bottom:1053.188250px;}
.y17_c01054{bottom:1054.810950px;}
.y16_c01054{bottom:1055.393962px;}
.y15_c01054{bottom:1057.348837px;}
.y14_c01054{bottom:1058.139000px;}
.y13_c01054{bottom:1086.181128px;}
.y12_c01054{bottom:1087.687440px;}
.y11_c01054{bottom:1088.344314px;}
.y10_c01054{bottom:1090.487064px;}
.yf_c01054{bottom:1090.827684px;}
.ye_c01054{bottom:1092.143001px;}
.yd_c01054{bottom:1116.477135px;}
.yc_c01054{bottom:1117.410672px;}
.yb_c01054{bottom:1118.424201px;}
.ya_c01054{bottom:1119.660975px;}
.y9_c01054{bottom:1120.392717px;}
.y8_c01054{bottom:1122.584709px;}
.y7_c01054{bottom:1124.866824px;}
.y6_c01054{bottom:1125.502239px;}
.y5_c01054{bottom:1125.975624px;}
.y4_c01054{bottom:1128.882462px;}
.y3_c01054{bottom:1129.611861px;}
.y2_c01054{bottom:1131.307500px;}
.y1_c01054{bottom:1188.531000px;}
.h14_c01054{height:54.011906px;}
.h13_c01054{height:71.964891px;}
.h2_c01054{height:72.000000px;}
.h9_c01054{height:72.022496px;}
.ha_c01054{height:78.024371px;}
.hf_c01054{height:78.032792px;}
.h12_c01054{height:83.959040px;}
.hb_c01054{height:84.026246px;}
.he_c01054{height:84.035315px;}
.h3_c01054{height:90.021777px;}
.h5_c01054{height:90.028121px;}
.hd_c01054{height:90.037837px;}
.h4_c01054{height:96.023229px;}
.hc_c01054{height:96.029995px;}
.h10_c01054{height:96.040360px;}
.h6_c01054{height:102.031870px;}
.h11_c01054{height:102.042882px;}
.h8_c01054{height:108.033745px;}
.h7_c01054{height:114.035619px;}
.h0_c01054{height:1246.320000px;}
.h1_c01054{height:1246.500000px;}
.w0_c01054{width:900.450000px;}
.w1_c01054{width:900.750000px;}
.x0_c01054{left:0.000000px;}
.x85_c01054{left:145.670400px;}
.xaf_c01054{left:148.099651px;}
.x9c_c01054{left:149.823187px;}
.x6b_c01054{left:151.705012px;}
.x61_c01054{left:152.795100px;}
.x47_c01054{left:154.397250px;}
.x35_c01054{left:155.783663px;}
.x19_c01054{left:157.947225px;}
.x4_c01054{left:159.754500px;}
.x9d_c01054{left:181.960912px;}
.x91_c01054{left:184.014150px;}
.x6c_c01054{left:186.007425px;}
.xbb_c01054{left:191.702182px;}
.x7e_c01054{left:195.879638px;}
.x36_c01054{left:199.741463px;}
.xcf_c01054{left:201.356123px;}
.xb6_c01054{left:202.994991px;}
.x22_c01054{left:211.642950px;}
.x86_c01054{left:215.962163px;}
.x62_c01054{left:218.675550px;}
.xa8_c01054{left:222.997977px;}
.x1a_c01054{left:224.054625px;}
.xb0_c01054{left:225.713394px;}
.x50_c01054{left:234.734625px;}
.x5_c01054{left:236.829000px;}
.x87_c01054{left:238.347225px;}
.x7f_c01054{left:239.354550px;}
.x63_c01054{left:241.004738px;}
.x3e_c01054{left:244.612688px;}
.x10_c01054{left:247.034598px;}
.x9e_c01054{left:249.704700px;}
.xc6_c01054{left:256.606539px;}
.xc1_c01054{left:258.490500px;}
.xa4_c01054{left:259.611000px;}
.x74_c01054{left:261.549000px;}
.x6d_c01054{left:263.988225px;}
.x2d_c01054{left:265.903800px;}
.x12_c01054{left:268.576500px;}
.x6_c01054{left:269.983500px;}
.x80_c01054{left:272.296725px;}
.x48_c01054{left:275.906475px;}
.xb1_c01054{left:280.432135px;}
.x92_c01054{left:282.327675px;}
.x88_c01054{left:283.708350px;}
.x64_c01054{left:285.037537px;}
.x3f_c01054{left:287.471325px;}
.xc7_c01054{left:288.711534px;}
.x23_c01054{left:289.939688px;}
.x51_c01054{left:297.538050px;}
.x13_c01054{left:300.183000px;}
.x9f_c01054{left:303.945637px;}
.x37_c01054{left:310.775288px;}
.xb2_c01054{left:313.128963px;}
.x93_c01054{left:315.469350px;}
.x73_c01054{left:317.431838px;}
.x40_c01054{left:319.883438px;}
.xbc_c01054{left:323.919995px;}
.x1b_c01054{left:333.731550px;}
.xa9_c01054{left:338.549822px;}
.x38_c01054{left:343.932263px;}
.xc2_c01054{left:345.629774px;}
.x52_c01054{left:352.355663px;}
.xc8_c01054{left:356.185641px;}
.x94_c01054{left:358.951762px;}
.x75_c01054{left:360.229500px;}
.x59_c01054{left:362.706113px;}
.x49_c01054{left:364.487250px;}
.xd3_c01054{left:365.833500px;}
.x24_c01054{left:367.660350px;}
.x14_c01054{left:378.378000px;}
.x41_c01054{left:387.116813px;}
.xc9_c01054{left:389.098423px;}
.xb3_c01054{left:391.507792px;}
.xa0_c01054{left:392.838525px;}
.x53_c01054{left:396.549075px;}
.x4a_c01054{left:398.225813px;}
.x7_c01054{left:402.112500px;}
.x76_c01054{left:405.568500px;}
.x1_c01054{left:412.830000px;}
.x8_c01054{left:423.630000px;}
.xaa_c01054{left:425.046401px;}
.x89_c01054{left:426.591412px;}
.x6e_c01054{left:428.458687px;}
.x5a_c01054{left:430.509938px;}
.xc3_c01054{left:433.158657px;}
.x2_c01054{left:435.510000px;}
.x77_c01054{left:438.174000px;}
.x2e_c01054{left:442.819388px;}
.x9_c01054{left:452.512500px;}
.x25_c01054{left:454.479863px;}
.x11_c01054{left:456.418839px;}
.xb7_c01054{left:458.045256px;}
.x8a_c01054{left:459.161738px;}
.x39_c01054{left:464.949338px;}
.x15_c01054{left:466.606500px;}
.xa5_c01054{left:468.421500px;}
.x95_c01054{left:469.440487px;}
.x78_c01054{left:471.643500px;}
.x3_c01054{left:478.170000px;}
.xd0_c01054{left:487.581255px;}
.x1c_c01054{left:488.707763px;}
.x65_c01054{left:494.676750px;}
.x42_c01054{left:497.043825px;}
.xb4_c01054{left:502.547449px;}
.x81_c01054{left:504.255412px;}
.x6f_c01054{left:506.777025px;}
.xc0_c01054{left:508.741023px;}
.x26_c01054{left:510.595800px;}
.x5b_c01054{left:517.750575px;}
.x1d_c01054{left:520.571025px;}
.x16_c01054{left:523.140000px;}
.x4b_c01054{left:530.341613px;}
.x2f_c01054{left:531.663488px;}
.xbd_c01054{left:534.085354px;}
.xab_c01054{left:535.304549px;}
.xa1_c01054{left:536.342887px;}
.xd4_c01054{left:542.224500px;}
.x8b_c01054{left:547.834950px;}
.x5c_c01054{left:551.252625px;}
.x3a_c01054{left:553.547475px;}
.xca_c01054{left:554.817775px;}
.xa_c01054{left:556.245000px;}
.xb8_c01054{left:557.846983px;}
.x96_c01054{left:559.415737px;}
.x70_c01054{left:561.793537px;}
.x30_c01054{left:565.420688px;}
.xbe_c01054{left:567.288683px;}
.xa2_c01054{left:568.941150px;}
.x79_c01054{left:571.066500px;}
.x27_c01054{left:577.256775px;}
.x8c_c01054{left:581.326275px;}
.x66_c01054{left:584.062462px;}
.xd1_c01054{left:586.601833px;}
.xcc_c01054{left:587.603967px;}
.x97_c01054{left:591.726412px;}
.x43_c01054{left:597.254850px;}
.x31_c01054{left:599.189888px;}
.xac_c01054{left:601.763733px;}
.x17_c01054{left:610.741500px;}
.xb5_c01054{left:613.206063px;}
.x71_c01054{left:616.709513px;}
.x54_c01054{left:617.724563px;}
.x1e_c01054{left:621.882713px;}
.x8d_c01054{left:625.556362px;}
.x44_c01054{left:630.597000px;}
.x28_c01054{left:632.472563px;}
.x5d_c01054{left:640.116750px;}
.x4c_c01054{left:641.662800px;}
.x18_c01054{left:644.514000px;}
.x98_c01054{left:646.386562px;}
.x55_c01054{left:651.230738px;}
.xcd_c01054{left:653.214630px;}
.x1f_c01054{left:654.851663px;}
.xb_c01054{left:655.881000px;}
.x82_c01054{left:659.098050px;}
.x67_c01054{left:661.538775px;}
.x3b_c01054{left:664.738800px;}
.x29_c01054{left:666.481163px;}
.xb9_c01054{left:668.059342px;}
.x99_c01054{left:669.279000px;}
.x8e_c01054{left:670.410488px;}
.x5e_c01054{left:672.795038px;}
.x4d_c01054{left:675.369862px;}
.xa6_c01054{left:680.406000px;}
.x7a_c01054{left:682.663500px;}
.xd2_c01054{left:686.896425px;}
.x68_c01054{left:688.017263px;}
.xc_c01054{left:689.142000px;}
.xad_c01054{left:690.342965px;}
.xce_c01054{left:699.392125px;}
.x4e_c01054{left:701.838338px;}
.x83_c01054{left:704.468925px;}
.x32_c01054{left:710.214263px;}
.xa7_c01054{left:713.094000px;}
.x7b_c01054{left:716.652000px;}
.x72_c01054{left:718.037137px;}
.x20_c01054{left:720.753525px;}
.x8f_c01054{left:725.605875px;}
.x56_c01054{left:729.831788px;}
.x2a_c01054{left:732.638063px;}
.x5f_c01054{left:740.889938px;}
.x33_c01054{left:743.686463px;}
.xd_c01054{left:745.359000px;}
.x3c_c01054{left:753.138937px;}
.xba_c01054{left:756.973395px;}
.x45_c01054{left:764.724713px;}
.x2b_c01054{left:766.993200px;}
.x90_c01054{left:770.644500px;}
.x60_c01054{left:775.728900px;}
.xc4_c01054{left:777.433038px;}
.x9a_c01054{left:780.937725px;}
.x7c_c01054{left:782.821500px;}
.x57_c01054{left:785.474400px;}
.xcb_c01054{left:787.518132px;}
.x21_c01054{left:789.640838px;}
.xe_c01054{left:791.428500px;}
.x69_c01054{left:795.014287px;}
.x46_c01054{left:797.148825px;}
.x2c_c01054{left:801.546375px;}
.xae_c01054{left:803.021352px;}
.x34_c01054{left:809.280675px;}
.xc5_c01054{left:810.923014px;}
.xbf_c01054{left:813.195675px;}
.x9b_c01054{left:814.619400px;}
.x84_c01054{left:816.535613px;}
.x58_c01054{left:818.154075px;}
.x3d_c01054{left:821.214038px;}
.xa3_c01054{left:822.735000px;}
.x7d_c01054{left:827.398500px;}
.x4f_c01054{left:831.234225px;}
.xf_c01054{left:833.862000px;}
.x6a_c01054{left:889.366875px;}
@media print{
.v0_c01054{vertical-align:0.000000pt;}
.ls0_c01054{letter-spacing:0.000000pt;}
.ws0_c01054{word-spacing:0.000000pt;}
.fs12_c01054{font-size:48.010583pt;}
.fs11_c01054{font-size:63.968792pt;}
.fs0_c01054{font-size:64.000000pt;}
.fs7_c01054{font-size:64.019997pt;}
.fs8_c01054{font-size:69.354997pt;}
.fsd_c01054{font-size:69.362482pt;}
.fs10_c01054{font-size:74.630258pt;}
.fs9_c01054{font-size:74.689996pt;}
.fsc_c01054{font-size:74.698057pt;}
.fs1_c01054{font-size:80.019358pt;}
.fs3_c01054{font-size:80.024996pt;}
.fsb_c01054{font-size:80.033633pt;}
.fs2_c01054{font-size:85.353982pt;}
.fsa_c01054{font-size:85.359996pt;}
.fse_c01054{font-size:85.369208pt;}
.fs4_c01054{font-size:90.694996pt;}
.fsf_c01054{font-size:90.704784pt;}
.fs6_c01054{font-size:96.029995pt;}
.fs5_c01054{font-size:101.364995pt;}
.y0_c01054{bottom:0.000000pt;}
.y13c_c01054{bottom:58.500957pt;}
.y13b_c01054{bottom:59.550117pt;}
.y13a_c01054{bottom:60.579005pt;}
.y139_c01054{bottom:61.188593pt;}
.y138_c01054{bottom:61.582161pt;}
.y137_c01054{bottom:62.429553pt;}
.y136_c01054{bottom:62.842749pt;}
.y135_c01054{bottom:64.274753pt;}
.y134_c01054{bottom:64.889605pt;}
.y133_c01054{bottom:65.263713pt;}
.y132_c01054{bottom:65.939381pt;}
.y131_c01054{bottom:66.969333pt;}
.y130_c01054{bottom:99.302081pt;}
.y12f_c01054{bottom:101.013888pt;}
.y12e_c01054{bottom:101.528933pt;}
.y12d_c01054{bottom:103.760597pt;}
.y12c_c01054{bottom:105.237469pt;}
.y12b_c01054{bottom:105.963987pt;}
.y12a_c01054{bottom:106.948901pt;}
.y129_c01054{bottom:107.937851pt;}
.y128_c01054{bottom:108.689153pt;}
.y127_c01054{bottom:110.889053pt;}
.y126_c01054{bottom:112.333607pt;}
.y125_c01054{bottom:113.575553pt;}
.y124_c01054{bottom:135.626663pt;}
.y123_c01054{bottom:136.380692pt;}
.y122_c01054{bottom:137.162153pt;}
.y121_c01054{bottom:138.271595pt;}
.y120_c01054{bottom:138.833259pt;}
.y11f_c01054{bottom:140.326279pt;}
.y11e_c01054{bottom:140.713423pt;}
.y11d_c01054{bottom:142.389852pt;}
.y11c_c01054{bottom:143.126301pt;}
.y11b_c01054{bottom:144.239607pt;}
.y11a_c01054{bottom:145.718067pt;}
.y119_c01054{bottom:164.528255pt;}
.y118_c01054{bottom:166.201379pt;}
.y117_c01054{bottom:167.024621pt;}
.y116_c01054{bottom:168.673411pt;}
.y115_c01054{bottom:170.327225pt;}
.y114_c01054{bottom:172.540053pt;}
.y113_c01054{bottom:173.108956pt;}
.y112_c01054{bottom:174.456391pt;}
.y111_c01054{bottom:175.276177pt;}
.y110_c01054{bottom:176.957356pt;}
.y10f_c01054{bottom:177.756809pt;}
.y10e_c01054{bottom:179.396221pt;}
.y10d_c01054{bottom:180.502320pt;}
.y10c_c01054{bottom:195.242635pt;}
.y10b_c01054{bottom:196.196192pt;}
.y10a_c01054{bottom:198.118155pt;}
.y109_c01054{bottom:199.394827pt;}
.y108_c01054{bottom:200.332043pt;}
.y107_c01054{bottom:202.206987pt;}
.y106_c01054{bottom:203.167243pt;}
.y105_c01054{bottom:205.026059pt;}
.y104_c01054{bottom:205.998688pt;}
.y103_c01054{bottom:208.490891pt;}
.y102_c01054{bottom:209.779253pt;}
.y101_c01054{bottom:210.972000pt;}
.y100_c01054{bottom:235.051487pt;}
.yff_c01054{bottom:236.135931pt;}
.yfe_c01054{bottom:242.120839pt;}
.yfd_c01054{bottom:261.888468pt;}
.yfc_c01054{bottom:264.379207pt;}
.yfb_c01054{bottom:266.602563pt;}
.yfa_c01054{bottom:267.353336pt;}
.yf9_c01054{bottom:268.091812pt;}
.yf8_c01054{bottom:271.018668pt;}
.yf7_c01054{bottom:271.777156pt;}
.yf6_c01054{bottom:272.762113pt;}
.yf5_c01054{bottom:273.980907pt;}
.yf4_c01054{bottom:274.725164pt;}
.yf3_c01054{bottom:275.700667pt;}
.yf2_c01054{bottom:276.672476pt;}
.yf1_c01054{bottom:292.173819pt;}
.yf0_c01054{bottom:292.855891pt;}
.yef_c01054{bottom:294.594099pt;}
.yee_c01054{bottom:296.749219pt;}
.yed_c01054{bottom:298.701364pt;}
.yec_c01054{bottom:299.786349pt;}
.yeb_c01054{bottom:303.240605pt;}
.yea_c01054{bottom:303.687992pt;}
.ye9_c01054{bottom:304.766944pt;}
.ye8_c01054{bottom:325.212048pt;}
.ye7_c01054{bottom:327.262485pt;}
.ye6_c01054{bottom:329.560288pt;}
.ye5_c01054{bottom:331.356709pt;}
.ye4_c01054{bottom:332.117907pt;}
.ye3_c01054{bottom:334.684013pt;}
.ye2_c01054{bottom:336.494936pt;}
.ye1_c01054{bottom:337.251048pt;}
.ye0_c01054{bottom:338.516120pt;}
.ydf_c01054{bottom:340.309989pt;}
.yde_c01054{bottom:358.420968pt;}
.ydd_c01054{bottom:359.657673pt;}
.ydc_c01054{bottom:360.224641pt;}
.ydb_c01054{bottom:360.933637pt;}
.yda_c01054{bottom:361.641956pt;}
.yd9_c01054{bottom:362.166165pt;}
.yd8_c01054{bottom:362.705247pt;}
.yd7_c01054{bottom:364.469217pt;}
.yd6_c01054{bottom:365.515373pt;}
.yd5_c01054{bottom:365.852863pt;}
.yd4_c01054{bottom:367.701249pt;}
.yd3_c01054{bottom:368.330723pt;}
.yd2_c01054{bottom:368.870984pt;}
.yd1_c01054{bottom:388.053709pt;}
.yd0_c01054{bottom:389.840883pt;}
.ycf_c01054{bottom:390.683507pt;}
.yce_c01054{bottom:392.981544pt;}
.ycd_c01054{bottom:394.420640pt;}
.ycc_c01054{bottom:396.147996pt;}
.ycb_c01054{bottom:397.854897pt;}
.yca_c01054{bottom:398.961885pt;}
.yc9_c01054{bottom:401.530667pt;}
.yc8_c01054{bottom:422.044933pt;}
.yc7_c01054{bottom:424.812633pt;}
.yc6_c01054{bottom:426.782900pt;}
.yc5_c01054{bottom:427.391233pt;}
.yc4_c01054{bottom:429.434733pt;}
.yc3_c01054{bottom:430.069233pt;}
.yc2_c01054{bottom:431.728433pt;}
.yc1_c01054{bottom:432.740333pt;}
.yc0_c01054{bottom:434.004267pt;}
.ybf_c01054{bottom:434.603700pt;}
.ybe_c01054{bottom:450.007967pt;}
.ybd_c01054{bottom:450.785800pt;}
.ybc_c01054{bottom:452.568833pt;}
.ybb_c01054{bottom:453.365833pt;}
.yba_c01054{bottom:453.894567pt;}
.yb9_c01054{bottom:455.157267pt;}
.yb8_c01054{bottom:455.904633pt;}
.yb7_c01054{bottom:457.984133pt;}
.yb6_c01054{bottom:460.538167pt;}
.yb5_c01054{bottom:461.543133pt;}
.yb4_c01054{bottom:462.308967pt;}
.yb3_c01054{bottom:463.833000pt;}
.yb2_c01054{bottom:464.581767pt;}
.yb1_c01054{bottom:465.340600pt;}
.yb0_c01054{bottom:483.933767pt;}
.yaf_c01054{bottom:484.894600pt;}
.yae_c01054{bottom:486.071800pt;}
.yad_c01054{bottom:487.028533pt;}
.yac_c01054{bottom:487.972733pt;}
.yab_c01054{bottom:488.687633pt;}
.yaa_c01054{bottom:490.579433pt;}
.ya9_c01054{bottom:491.273867pt;}
.ya8_c01054{bottom:494.322300pt;}
.ya7_c01054{bottom:495.290300pt;}
.ya6_c01054{bottom:495.767733pt;}
.ya5_c01054{bottom:497.267067pt;}
.ya4_c01054{bottom:514.777867pt;}
.ya3_c01054{bottom:515.573567pt;}
.ya2_c01054{bottom:517.368300pt;}
.ya1_c01054{bottom:518.416567pt;}
.ya0_c01054{bottom:521.994933pt;}
.y9f_c01054{bottom:527.356367pt;}
.y9e_c01054{bottom:528.117767pt;}
.y9d_c01054{bottom:529.122567pt;}
.y9c_c01054{bottom:530.157767pt;}
.y9b_c01054{bottom:548.313567pt;}
.y9a_c01054{bottom:549.304167pt;}
.y99_c01054{bottom:550.774600pt;}
.y98_c01054{bottom:551.529900pt;}
.y97_c01054{bottom:554.009833pt;}
.y96_c01054{bottom:556.219233pt;}
.y95_c01054{bottom:556.963000pt;}
.y94_c01054{bottom:557.687567pt;}
.y93_c01054{bottom:558.695100pt;}
.y92_c01054{bottom:560.888000pt;}
.y91_c01054{bottom:588.711100pt;}
.y90_c01054{bottom:590.903267pt;}
.y8f_c01054{bottom:592.824067pt;}
.y8e_c01054{bottom:594.139567pt;}
.y8d_c01054{bottom:611.131900pt;}
.y8c_c01054{bottom:612.377233pt;}
.y8b_c01054{bottom:614.268733pt;}
.y8a_c01054{bottom:615.294300pt;}
.y89_c01054{bottom:616.320767pt;}
.y88_c01054{bottom:617.782333pt;}
.y87_c01054{bottom:618.395567pt;}
.y86_c01054{bottom:620.851533pt;}
.y85_c01054{bottom:622.306933pt;}
.y84_c01054{bottom:622.947800pt;}
.y83_c01054{bottom:640.473833pt;}
.y82_c01054{bottom:642.318400pt;}
.y81_c01054{bottom:644.410600pt;}
.y80_c01054{bottom:644.928300pt;}
.y7f_c01054{bottom:646.443200pt;}
.y7e_c01054{bottom:647.743233pt;}
.y7d_c01054{bottom:648.190733pt;}
.y7c_c01054{bottom:649.458900pt;}
.y7b_c01054{bottom:652.290367pt;}
.y7a_c01054{bottom:653.151467pt;}
.y79_c01054{bottom:653.587633pt;}
.y78_c01054{bottom:654.875533pt;}
.y77_c01054{bottom:679.147033pt;}
.y76_c01054{bottom:679.549000pt;}
.y75_c01054{bottom:680.336433pt;}
.y74_c01054{bottom:680.714400pt;}
.y73_c01054{bottom:681.741900pt;}
.y72_c01054{bottom:682.128833pt;}
.y71_c01054{bottom:683.137600pt;}
.y70_c01054{bottom:683.921233pt;}
.y6f_c01054{bottom:684.426633pt;}
.y6e_c01054{bottom:686.323467pt;}
.y6d_c01054{bottom:705.552000pt;}
.y6c_c01054{bottom:706.307567pt;}
.y6b_c01054{bottom:707.593433pt;}
.y6a_c01054{bottom:709.409500pt;}
.y69_c01054{bottom:710.183433pt;}
.y68_c01054{bottom:712.974933pt;}
.y67_c01054{bottom:715.294567pt;}
.y66_c01054{bottom:716.315333pt;}
.y65_c01054{bottom:717.582867pt;}
.y64_c01054{bottom:719.034533pt;}
.y63_c01054{bottom:720.900467pt;}
.y62_c01054{bottom:738.033800pt;}
.y61_c01054{bottom:738.608433pt;}
.y60_c01054{bottom:740.219500pt;}
.y5f_c01054{bottom:740.666267pt;}
.y5e_c01054{bottom:741.235200pt;}
.y5d_c01054{bottom:743.115300pt;}
.y5c_c01054{bottom:744.593600pt;}
.y5b_c01054{bottom:745.346767pt;}
.y5a_c01054{bottom:745.916400pt;}
.y59_c01054{bottom:747.412567pt;}
.y58_c01054{bottom:749.464367pt;}
.y57_c01054{bottom:770.459033pt;}
.y56_c01054{bottom:771.122200pt;}
.y55_c01054{bottom:773.165667pt;}
.y54_c01054{bottom:773.864000pt;}
.y53_c01054{bottom:774.546233pt;}
.y52_c01054{bottom:776.594367pt;}
.y51_c01054{bottom:777.261767pt;}
.y50_c01054{bottom:778.841067pt;}
.y4f_c01054{bottom:780.215067pt;}
.y4e_c01054{bottom:780.877967pt;}
.y4d_c01054{bottom:781.754333pt;}
.y4c_c01054{bottom:783.555067pt;}
.y4b_c01054{bottom:802.236433pt;}
.y4a_c01054{bottom:803.567767pt;}
.y49_c01054{bottom:805.296067pt;}
.y48_c01054{bottom:807.470800pt;}
.y47_c01054{bottom:808.126333pt;}
.y46_c01054{bottom:809.203500pt;}
.y45_c01054{bottom:811.569900pt;}
.y44_c01054{bottom:812.218667pt;}
.y43_c01054{bottom:814.389900pt;}
.y42_c01054{bottom:815.249333pt;}
.y41_c01054{bottom:833.903900pt;}
.y40_c01054{bottom:835.069367pt;}
.y3f_c01054{bottom:835.663767pt;}
.y3e_c01054{bottom:837.637333pt;}
.y3d_c01054{bottom:838.238333pt;}
.y3c_c01054{bottom:838.839067pt;}
.y3b_c01054{bottom:840.418467pt;}
.y3a_c01054{bottom:841.767733pt;}
.y39_c01054{bottom:843.564100pt;}
.y38_c01054{bottom:845.492933pt;}
.y37_c01054{bottom:865.337967pt;}
.y36_c01054{bottom:865.921700pt;}
.y35_c01054{bottom:866.502367pt;}
.y34_c01054{bottom:867.620300pt;}
.y33_c01054{bottom:868.194600pt;}
.y32_c01054{bottom:869.126767pt;}
.y31_c01054{bottom:870.253233pt;}
.y30_c01054{bottom:870.812733pt;}
.y2f_c01054{bottom:871.200067pt;}
.y2e_c01054{bottom:872.666433pt;}
.y2d_c01054{bottom:873.248233pt;}
.y2c_c01054{bottom:873.978633pt;}
.y2b_c01054{bottom:875.300967pt;}
.y2a_c01054{bottom:876.222633pt;}
.y29_c01054{bottom:896.499267pt;}
.y28_c01054{bottom:897.247633pt;}
.y27_c01054{bottom:898.411567pt;}
.y26_c01054{bottom:899.525167pt;}
.y25_c01054{bottom:900.081700pt;}
.y24_c01054{bottom:901.190533pt;}
.y23_c01054{bottom:901.792733pt;}
.y22_c01054{bottom:902.331367pt;}
.y21_c01054{bottom:902.892900pt;}
.y20_c01054{bottom:904.192533pt;}
.y1f_c01054{bottom:904.949433pt;}
.y1e_c01054{bottom:906.802333pt;}
.y1d_c01054{bottom:907.919167pt;}
.y1c_c01054{bottom:929.968000pt;}
.y1b_c01054{bottom:932.213833pt;}
.y1a_c01054{bottom:932.964333pt;}
.y19_c01054{bottom:934.911033pt;}
.y18_c01054{bottom:936.167333pt;}
.y17_c01054{bottom:937.609733pt;}
.y16_c01054{bottom:938.127967pt;}
.y15_c01054{bottom:939.865633pt;}
.y14_c01054{bottom:940.568000pt;}
.y13_c01054{bottom:965.494336pt;}
.y12_c01054{bottom:966.833280pt;}
.y11_c01054{bottom:967.417168pt;}
.y10_c01054{bottom:969.321835pt;}
.yf_c01054{bottom:969.624608pt;}
.ye_c01054{bottom:970.793779pt;}
.yd_c01054{bottom:992.424120pt;}
.yc_c01054{bottom:993.253931pt;}
.yb_c01054{bottom:994.154845pt;}
.ya_c01054{bottom:995.254200pt;}
.y9_c01054{bottom:995.904637pt;}
.y8_c01054{bottom:997.853075pt;}
.y7_c01054{bottom:999.881621pt;}
.y6_c01054{bottom:1000.446435pt;}
.y5_c01054{bottom:1000.867221pt;}
.y4_c01054{bottom:1003.451077pt;}
.y3_c01054{bottom:1004.099432pt;}
.y2_c01054{bottom:1005.606667pt;}
.y1_c01054{bottom:1056.472000pt;}
.h14_c01054{height:48.010583pt;}
.h13_c01054{height:63.968792pt;}
.h2_c01054{height:64.000000pt;}
.h9_c01054{height:64.019997pt;}
.ha_c01054{height:69.354997pt;}
.hf_c01054{height:69.362482pt;}
.h12_c01054{height:74.630258pt;}
.hb_c01054{height:74.689996pt;}
.he_c01054{height:74.698057pt;}
.h3_c01054{height:80.019358pt;}
.h5_c01054{height:80.024996pt;}
.hd_c01054{height:80.033633pt;}
.h4_c01054{height:85.353982pt;}
.hc_c01054{height:85.359996pt;}
.h10_c01054{height:85.369208pt;}
.h6_c01054{height:90.694996pt;}
.h11_c01054{height:90.704784pt;}
.h8_c01054{height:96.029995pt;}
.h7_c01054{height:101.364995pt;}
.h0_c01054{height:1107.840000pt;}
.h1_c01054{height:1108.000000pt;}
.w0_c01054{width:800.400000pt;}
.w1_c01054{width:800.666667pt;}
.x0_c01054{left:0.000000pt;}
.x85_c01054{left:129.484800pt;}
.xaf_c01054{left:131.644135pt;}
.x9c_c01054{left:133.176167pt;}
.x6b_c01054{left:134.848900pt;}
.x61_c01054{left:135.817867pt;}
.x47_c01054{left:137.242000pt;}
.x35_c01054{left:138.474367pt;}
.x19_c01054{left:140.397533pt;}
.x4_c01054{left:142.004000pt;}
.x9d_c01054{left:161.743033pt;}
.x91_c01054{left:163.568133pt;}
.x6c_c01054{left:165.339933pt;}
.xbb_c01054{left:170.401940pt;}
.x7e_c01054{left:174.115233pt;}
.x36_c01054{left:177.547967pt;}
.xcf_c01054{left:178.983220pt;}
.xb6_c01054{left:180.439992pt;}
.x22_c01054{left:188.127067pt;}
.x86_c01054{left:191.966367pt;}
.x62_c01054{left:194.378267pt;}
.xa8_c01054{left:198.220424pt;}
.x1a_c01054{left:199.159667pt;}
.xb0_c01054{left:200.634128pt;}
.x50_c01054{left:208.653000pt;}
.x5_c01054{left:210.514667pt;}
.x87_c01054{left:211.864200pt;}
.x7f_c01054{left:212.759600pt;}
.x63_c01054{left:214.226433pt;}
.x3e_c01054{left:217.433500pt;}
.x10_c01054{left:219.586309pt;}
.x9e_c01054{left:221.959733pt;}
.xc6_c01054{left:228.094701pt;}
.xc1_c01054{left:229.769333pt;}
.xa4_c01054{left:230.765333pt;}
.x74_c01054{left:232.488000pt;}
.x6d_c01054{left:234.656200pt;}
.x2d_c01054{left:236.358933pt;}
.x12_c01054{left:238.734667pt;}
.x6_c01054{left:239.985333pt;}
.x80_c01054{left:242.041533pt;}
.x48_c01054{left:245.250200pt;}
.xb1_c01054{left:249.273009pt;}
.x92_c01054{left:250.957933pt;}
.x88_c01054{left:252.185200pt;}
.x64_c01054{left:253.366700pt;}
.x3f_c01054{left:255.530067pt;}
.xc7_c01054{left:256.632475pt;}
.x23_c01054{left:257.724167pt;}
.x51_c01054{left:264.478267pt;}
.x13_c01054{left:266.829333pt;}
.x9f_c01054{left:270.173900pt;}
.x37_c01054{left:276.244700pt;}
.xb2_c01054{left:278.336856pt;}
.x93_c01054{left:280.417200pt;}
.x73_c01054{left:282.161633pt;}
.x40_c01054{left:284.340833pt;}
.xbc_c01054{left:287.928884pt;}
.x1b_c01054{left:296.650267pt;}
.xa9_c01054{left:300.933175pt;}
.x38_c01054{left:305.717567pt;}
.xc2_c01054{left:307.226465pt;}
.x52_c01054{left:313.205033pt;}
.xc8_c01054{left:316.609459pt;}
.x94_c01054{left:319.068233pt;}
.x75_c01054{left:320.204000pt;}
.x59_c01054{left:322.405433pt;}
.x49_c01054{left:323.988667pt;}
.xd3_c01054{left:325.185333pt;}
.x24_c01054{left:326.809200pt;}
.x14_c01054{left:336.336000pt;}
.x41_c01054{left:344.103833pt;}
.xc9_c01054{left:345.865265pt;}
.xb3_c01054{left:348.006927pt;}
.xa0_c01054{left:349.189800pt;}
.x53_c01054{left:352.488067pt;}
.x4a_c01054{left:353.978500pt;}
.x7_c01054{left:357.433333pt;}
.x76_c01054{left:360.505333pt;}
.x1_c01054{left:366.960000pt;}
.x8_c01054{left:376.560000pt;}
.xaa_c01054{left:377.819023pt;}
.x89_c01054{left:379.192367pt;}
.x6e_c01054{left:380.852167pt;}
.x5a_c01054{left:382.675500pt;}
.xc3_c01054{left:385.029917pt;}
.x2_c01054{left:387.120000pt;}
.x77_c01054{left:389.488000pt;}
.x2e_c01054{left:393.617233pt;}
.x9_c01054{left:402.233333pt;}
.x25_c01054{left:403.982100pt;}
.x11_c01054{left:405.705635pt;}
.xb7_c01054{left:407.151339pt;}
.x8a_c01054{left:408.143767pt;}
.x39_c01054{left:413.288300pt;}
.x15_c01054{left:414.761333pt;}
.xa5_c01054{left:416.374667pt;}
.x95_c01054{left:417.280433pt;}
.x78_c01054{left:419.238667pt;}
.x3_c01054{left:425.040000pt;}
.xd0_c01054{left:433.405560pt;}
.x1c_c01054{left:434.406900pt;}
.x65_c01054{left:439.712667pt;}
.x42_c01054{left:441.816733pt;}
.xb4_c01054{left:446.708844pt;}
.x81_c01054{left:448.227033pt;}
.x6f_c01054{left:450.468467pt;}
.xc0_c01054{left:452.214243pt;}
.x26_c01054{left:453.862933pt;}
.x5b_c01054{left:460.222733pt;}
.x1d_c01054{left:462.729800pt;}
.x16_c01054{left:465.013333pt;}
.x4b_c01054{left:471.414767pt;}
.x2f_c01054{left:472.589767pt;}
.xbd_c01054{left:474.742537pt;}
.xab_c01054{left:475.826265pt;}
.xa1_c01054{left:476.749233pt;}
.xd4_c01054{left:481.977333pt;}
.x8b_c01054{left:486.964400pt;}
.x5c_c01054{left:490.002333pt;}
.x3a_c01054{left:492.042200pt;}
.xca_c01054{left:493.171356pt;}
.xa_c01054{left:494.440000pt;}
.xb8_c01054{left:495.863985pt;}
.x96_c01054{left:497.258433pt;}
.x70_c01054{left:499.372033pt;}
.x30_c01054{left:502.596167pt;}
.xbe_c01054{left:504.256607pt;}
.xa2_c01054{left:505.725467pt;}
.x79_c01054{left:507.614667pt;}
.x27_c01054{left:513.117133pt;}
.x8c_c01054{left:516.734467pt;}
.x66_c01054{left:519.166633pt;}
.xd1_c01054{left:521.423852pt;}
.xcc_c01054{left:522.314637pt;}
.x97_c01054{left:525.979033pt;}
.x43_c01054{left:530.893200pt;}
.x31_c01054{left:532.613233pt;}
.xac_c01054{left:534.901096pt;}
.x17_c01054{left:542.881333pt;}
.xb5_c01054{left:545.072056pt;}
.x71_c01054{left:548.186233pt;}
.x54_c01054{left:549.088500pt;}
.x1e_c01054{left:552.784633pt;}
.x8d_c01054{left:556.050100pt;}
.x44_c01054{left:560.530667pt;}
.x28_c01054{left:562.197833pt;}
.x5d_c01054{left:568.992667pt;}
.x4c_c01054{left:570.366933pt;}
.x18_c01054{left:572.901333pt;}
.x98_c01054{left:574.565833pt;}
.x55_c01054{left:578.871767pt;}
.xcd_c01054{left:580.635227pt;}
.x1f_c01054{left:582.090367pt;}
.xb_c01054{left:583.005333pt;}
.x82_c01054{left:585.864933pt;}
.x67_c01054{left:588.034467pt;}
.x3b_c01054{left:590.878933pt;}
.x29_c01054{left:592.427700pt;}
.xb9_c01054{left:593.830527pt;}
.x99_c01054{left:594.914667pt;}
.x8e_c01054{left:595.920433pt;}
.x5e_c01054{left:598.040033pt;}
.x4d_c01054{left:600.328767pt;}
.xa6_c01054{left:604.805333pt;}
.x7a_c01054{left:606.812000pt;}
.xd2_c01054{left:610.574600pt;}
.x68_c01054{left:611.570900pt;}
.xc_c01054{left:612.570667pt;}
.xad_c01054{left:613.638191pt;}
.xce_c01054{left:621.681889pt;}
.x4e_c01054{left:623.856300pt;}
.x83_c01054{left:626.194600pt;}
.x32_c01054{left:631.301567pt;}
.xa7_c01054{left:633.861333pt;}
.x7b_c01054{left:637.024000pt;}
.x72_c01054{left:638.255233pt;}
.x20_c01054{left:640.669800pt;}
.x8f_c01054{left:644.983000pt;}
.x56_c01054{left:648.739367pt;}
.x2a_c01054{left:651.233833pt;}
.x5f_c01054{left:658.568833pt;}
.x33_c01054{left:661.054633pt;}
.xd_c01054{left:662.541333pt;}
.x3c_c01054{left:669.456833pt;}
.xba_c01054{left:672.865240pt;}
.x45_c01054{left:679.755300pt;}
.x2b_c01054{left:681.771733pt;}
.x90_c01054{left:685.017333pt;}
.x60_c01054{left:689.536800pt;}
.xc4_c01054{left:691.051589pt;}
.x9a_c01054{left:694.166867pt;}
.x7c_c01054{left:695.841333pt;}
.x57_c01054{left:698.199467pt;}
.xcb_c01054{left:700.016117pt;}
.x21_c01054{left:701.902967pt;}
.xe_c01054{left:703.492000pt;}
.x69_c01054{left:706.679367pt;}
.x46_c01054{left:708.576733pt;}
.x2c_c01054{left:712.485667pt;}
.xae_c01054{left:713.796757pt;}
.x34_c01054{left:719.360600pt;}
.xc5_c01054{left:720.820457pt;}
.xbf_c01054{left:722.840600pt;}
.x9b_c01054{left:724.106133pt;}
.x84_c01054{left:725.809433pt;}
.x58_c01054{left:727.248067pt;}
.x3d_c01054{left:729.968033pt;}
.xa3_c01054{left:731.320000pt;}
.x7d_c01054{left:735.465333pt;}
.x4f_c01054{left:738.874867pt;}
.xf_c01054{left:741.210667pt;}
.x6a_c01054{left:790.548333pt;}
}





/* 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_c01055 {
    display:none;
  }
  .loading-indicator_c01055.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01055 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_c01055 { 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_c01055" -> "#page-container .classname_c01055")
 */
.pf_c01055 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01055 { /* 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_c01055.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01055 { /* 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_c01055 { /* 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_c01055 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01055 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01055 {overflow:visible;}
  }
}
.c_c01055 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01055 { /* 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_c01055:after { /* webkit #35443 */
  content: '';
}
.t_c01055:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01055 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 */
}
.__c01055 { /* 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_c01055 { /* info for Javascript */
  display:none;
}
.l_c01055 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01055 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01055 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01055: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_c01055 {
    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_c01055.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01055.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_c01055 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01055{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01055;src:url('chunks/assets/font_74d7e987f08e4505b74f4479.woff2')format("woff");}.ff1_c01055{font-family:ff1_c01055;line-height:1.000000;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;}
.me_c01055{transform:matrix(0.007489,0.000150,-0.004999,0.249950,0,0);-ms-transform:matrix(0.007489,0.000150,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.007489,0.000150,-0.004999,0.249950,0,0);}
.m3_c01055{transform:matrix(0.095239,0.003813,-0.010002,0.249800,0,0);-ms-transform:matrix(0.095239,0.003813,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.095239,0.003813,-0.010002,0.249800,0,0);}
.m4_c01055{transform:matrix(0.112365,0.004499,-0.010002,0.249800,0,0);-ms-transform:matrix(0.112365,0.004499,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.112365,0.004499,-0.010002,0.249800,0,0);}
.m9_c01055{transform:matrix(0.119959,0.004803,-0.010002,0.249800,0,0);-ms-transform:matrix(0.119959,0.004803,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.119959,0.004803,-0.010002,0.249800,0,0);}
.m0_c01055{transform:matrix(0.131085,0.005249,-0.010002,0.249800,0,0);-ms-transform:matrix(0.131085,0.005249,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.131085,0.005249,-0.010002,0.249800,0,0);}
.mb_c01055{transform:matrix(0.131655,0.005271,-0.010002,0.249800,0,0);-ms-transform:matrix(0.131655,0.005271,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.131655,0.005271,-0.010002,0.249800,0,0);}
.m5_c01055{transform:matrix(0.133848,0.005359,-0.010002,0.249800,0,0);-ms-transform:matrix(0.133848,0.005359,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.133848,0.005359,-0.010002,0.249800,0,0);}
.md_c01055{transform:matrix(0.165358,0.006621,-0.010002,0.249800,0,0);-ms-transform:matrix(0.165358,0.006621,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.165358,0.006621,-0.010002,0.249800,0,0);}
.m11_c01055{transform:matrix(0.169231,0.003385,-0.004999,0.249950,0,0);-ms-transform:matrix(0.169231,0.003385,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.169231,0.003385,-0.004999,0.249950,0,0);}
.mc_c01055{transform:matrix(0.180615,0.007232,-0.010002,0.249800,0,0);-ms-transform:matrix(0.180615,0.007232,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.180615,0.007232,-0.010002,0.249800,0,0);}
.mf_c01055{transform:matrix(0.200065,0.004001,-0.004999,0.249950,0,0);-ms-transform:matrix(0.200065,0.004001,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.200065,0.004001,-0.004999,0.249950,0,0);}
.m10_c01055{transform:matrix(0.208598,0.004172,-0.004999,0.249950,0,0);-ms-transform:matrix(0.208598,0.004172,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.208598,0.004172,-0.004999,0.249950,0,0);}
.m2_c01055{transform:matrix(0.209962,0.008407,-0.010002,0.249800,0,0);-ms-transform:matrix(0.209962,0.008407,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.209962,0.008407,-0.010002,0.249800,0,0);}
.ma_c01055{transform:matrix(0.215352,0.008623,-0.010002,0.249800,0,0);-ms-transform:matrix(0.215352,0.008623,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.215352,0.008623,-0.010002,0.249800,0,0);}
.m6_c01055{transform:matrix(0.267321,0.010704,-0.010002,0.249800,0,0);-ms-transform:matrix(0.267321,0.010704,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.267321,0.010704,-0.010002,0.249800,0,0);}
.m7_c01055{transform:matrix(0.303926,0.012169,-0.010002,0.249800,0,0);-ms-transform:matrix(0.303926,0.012169,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.303926,0.012169,-0.010002,0.249800,0,0);}
.m1_c01055{transform:matrix(0.306045,0.012254,-0.010002,0.249800,0,0);-ms-transform:matrix(0.306045,0.012254,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.306045,0.012254,-0.010002,0.249800,0,0);}
.m8_c01055{transform:matrix(0.371168,0.014862,-0.010002,0.249800,0,0);-ms-transform:matrix(0.371168,0.014862,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.371168,0.014862,-0.010002,0.249800,0,0);}
.v0_c01055{vertical-align:0.000000px;}
.ls0_c01055{letter-spacing:0.000000px;}
.sc__c01055{text-shadow:none;}
.sc0_c01055{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__c01055{-webkit-text-stroke:0px transparent;}
.sc0_c01055{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01055{word-spacing:0.000000px;}
.fc0_c01055{color:transparent;}
.fs2_c01055{font-size:114.022798px;}
.fs1_c01055{font-size:131.973663px;}
.fs0_c01055{font-size:209.958101px;}
.y0_c01055{bottom:0.000000px;}
.y12_c01055{bottom:925.117950px;}
.y11_c01055{bottom:926.328270px;}
.y10_c01055{bottom:926.907900px;}
.yf_c01055{bottom:927.456000px;}
.ye_c01055{bottom:961.366929px;}
.yd_c01055{bottom:962.851649px;}
.yc_c01055{bottom:964.664685px;}
.yb_c01055{bottom:965.654018px;}
.ya_c01055{bottom:965.944439px;}
.y9_c01055{bottom:968.234786px;}
.y8_c01055{bottom:986.209680px;}
.y7_c01055{bottom:987.443340px;}
.y6_c01055{bottom:991.483620px;}
.y5_c01055{bottom:991.841040px;}
.y4_c01055{bottom:993.263760px;}
.y3_c01055{bottom:996.125220px;}
.y2_c01055{bottom:999.960900px;}
.y1_c01055{bottom:1001.211000px;}
.h4_c01055{height:114.022798px;}
.h3_c01055{height:131.973663px;}
.h2_c01055{height:209.958101px;}
.h0_c01055{height:1246.320000px;}
.h1_c01055{height:1246.500000px;}
.w0_c01055{width:900.450000px;}
.w1_c01055{width:900.750000px;}
.x0_c01055{left:0.000000px;}
.x1_c01055{left:214.728000px;}
.x9_c01055{left:223.496697px;}
.x2_c01055{left:245.949248px;}
.xa_c01055{left:332.352495px;}
.x3_c01055{left:341.745356px;}
.xf_c01055{left:343.110000px;}
.xb_c01055{left:346.128156px;}
.x10_c01055{left:370.515000px;}
.xc_c01055{left:393.140332px;}
.x11_c01055{left:399.496500px;}
.x4_c01055{left:413.210319px;}
.x5_c01055{left:448.742751px;}
.x6_c01055{left:457.669316px;}
.x12_c01055{left:460.012500px;}
.xd_c01055{left:479.317095px;}
.xe_c01055{left:549.872103px;}
.x7_c01055{left:558.575309px;}
.x8_c01055{left:589.385967px;}
@media print{
.v0_c01055{vertical-align:0.000000pt;}
.ls0_c01055{letter-spacing:0.000000pt;}
.ws0_c01055{word-spacing:0.000000pt;}
.fs2_c01055{font-size:101.353598pt;}
.fs1_c01055{font-size:117.309923pt;}
.fs0_c01055{font-size:186.629423pt;}
.y0_c01055{bottom:0.000000pt;}
.y12_c01055{bottom:822.327067pt;}
.y11_c01055{bottom:823.402907pt;}
.y10_c01055{bottom:823.918133pt;}
.yf_c01055{bottom:824.405333pt;}
.ye_c01055{bottom:854.548381pt;}
.yd_c01055{bottom:855.868132pt;}
.yc_c01055{bottom:857.479720pt;}
.yb_c01055{bottom:858.359127pt;}
.ya_c01055{bottom:858.617279pt;}
.y9_c01055{bottom:860.653143pt;}
.y8_c01055{bottom:876.630827pt;}
.y7_c01055{bottom:877.727413pt;}
.y6_c01055{bottom:881.318773pt;}
.y5_c01055{bottom:881.636480pt;}
.y4_c01055{bottom:882.901120pt;}
.y3_c01055{bottom:885.444640pt;}
.y2_c01055{bottom:888.854133pt;}
.y1_c01055{bottom:889.965333pt;}
.h4_c01055{height:101.353598pt;}
.h3_c01055{height:117.309923pt;}
.h2_c01055{height:186.629423pt;}
.h0_c01055{height:1107.840000pt;}
.h1_c01055{height:1108.000000pt;}
.w0_c01055{width:800.400000pt;}
.w1_c01055{width:800.666667pt;}
.x0_c01055{left:0.000000pt;}
.x1_c01055{left:190.869333pt;}
.x9_c01055{left:198.663731pt;}
.x2_c01055{left:218.621553pt;}
.xa_c01055{left:295.424440pt;}
.x3_c01055{left:303.773649pt;}
.xf_c01055{left:304.986667pt;}
.xb_c01055{left:307.669472pt;}
.x10_c01055{left:329.346667pt;}
.xc_c01055{left:349.458073pt;}
.x11_c01055{left:355.108000pt;}
.x4_c01055{left:367.298061pt;}
.x5_c01055{left:398.882445pt;}
.x6_c01055{left:406.817169pt;}
.x12_c01055{left:408.900000pt;}
.xd_c01055{left:426.059640pt;}
.xe_c01055{left:488.775203pt;}
.x7_c01055{left:496.511385pt;}
.x8_c01055{left:523.898637pt;}
}





/* 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_c01056 {
    display:none;
  }
  .loading-indicator_c01056.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01056 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_c01056 { 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_c01056" -> "#page-container .classname_c01056")
 */
.pf_c01056 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01056 { /* 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_c01056.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01056 { /* 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_c01056 { /* 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_c01056 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01056 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01056 {overflow:visible;}
  }
}
.c_c01056 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01056 { /* 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_c01056:after { /* webkit #35443 */
  content: '';
}
.t_c01056:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01056 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 */
}
.__c01056 { /* 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_c01056 { /* info for Javascript */
  display:none;
}
.l_c01056 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01056 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01056 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01056: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_c01056 {
    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_c01056.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01056.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_c01056 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01056{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01056;src:url('chunks/assets/font_cfe63ee56e9e10a97d33a3db.woff2')format("woff");}.ff1_c01056{font-family:ff1_c01056;line-height:1.000000;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;}
.me8_c01056{transform:matrix(0.017305,0.000398,-0.005748,0.249934,0,0);-ms-transform:matrix(0.017305,0.000398,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.017305,0.000398,-0.005748,0.249934,0,0);}
.m3_c01056{transform:matrix(0.137150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137150,0.000000,0.000000,0.250000,0,0);}
.m2_c01056{transform:matrix(0.141075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141075,0.000000,0.000000,0.250000,0,0);}
.m69_c01056{transform:matrix(0.153496,0.003223,-0.005249,0.249945,0,0);-ms-transform:matrix(0.153496,0.003223,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.153496,0.003223,-0.005249,0.249945,0,0);}
.mc1_c01056{transform:matrix(0.159450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159450,0.000000,0.000000,0.250000,0,0);}
.m6d_c01056{transform:matrix(0.163474,0.003433,-0.005249,0.249945,0,0);-ms-transform:matrix(0.163474,0.003433,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.163474,0.003433,-0.005249,0.249945,0,0);}
.m6e_c01056{transform:matrix(0.165693,0.003480,-0.005249,0.249945,0,0);-ms-transform:matrix(0.165693,0.003480,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.165693,0.003480,-0.005249,0.249945,0,0);}
.m64_c01056{transform:matrix(0.166123,0.003489,-0.005249,0.249945,0,0);-ms-transform:matrix(0.166123,0.003489,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.166123,0.003489,-0.005249,0.249945,0,0);}
.m7a_c01056{transform:matrix(0.169163,0.003552,-0.005249,0.249945,0,0);-ms-transform:matrix(0.169163,0.003552,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.169163,0.003552,-0.005249,0.249945,0,0);}
.m67_c01056{transform:matrix(0.171147,0.003594,-0.005249,0.249945,0,0);-ms-transform:matrix(0.171147,0.003594,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.171147,0.003594,-0.005249,0.249945,0,0);}
.m6b_c01056{transform:matrix(0.171312,0.003598,-0.005249,0.249945,0,0);-ms-transform:matrix(0.171312,0.003598,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.171312,0.003598,-0.005249,0.249945,0,0);}
.m66_c01056{transform:matrix(0.175331,0.003682,-0.005249,0.249945,0,0);-ms-transform:matrix(0.175331,0.003682,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.175331,0.003682,-0.005249,0.249945,0,0);}
.m68_c01056{transform:matrix(0.176186,0.003700,-0.005249,0.249945,0,0);-ms-transform:matrix(0.176186,0.003700,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.176186,0.003700,-0.005249,0.249945,0,0);}
.md0_c01056{transform:matrix(0.178845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178845,0.000000,0.000000,0.250000,0,0);}
.md4_c01056{transform:matrix(0.180040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180040,0.000000,0.000000,0.250000,0,0);}
.m71_c01056{transform:matrix(0.180180,0.003784,-0.005249,0.249945,0,0);-ms-transform:matrix(0.180180,0.003784,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.180180,0.003784,-0.005249,0.249945,0,0);}
.m84_c01056{transform:matrix(0.183580,0.003855,-0.005249,0.249945,0,0);-ms-transform:matrix(0.183580,0.003855,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.183580,0.003855,-0.005249,0.249945,0,0);}
.m7c_c01056{transform:matrix(0.183635,0.003856,-0.005249,0.249945,0,0);-ms-transform:matrix(0.183635,0.003856,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.183635,0.003856,-0.005249,0.249945,0,0);}
.md2_c01056{transform:matrix(0.184095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184095,0.000000,0.000000,0.250000,0,0);}
.md6_c01056{transform:matrix(0.184110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184110,0.000000,0.000000,0.250000,0,0);}
.mc6_c01056{transform:matrix(0.184115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184115,0.000000,0.000000,0.250000,0,0);}
.m2b_c01056{transform:matrix(0.184192,0.003500,-0.004749,0.249955,0,0);-ms-transform:matrix(0.184192,0.003500,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.184192,0.003500,-0.004749,0.249955,0,0);}
.md3_c01056{transform:matrix(0.184655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184655,0.000000,0.000000,0.250000,0,0);}
.m72_c01056{transform:matrix(0.185009,0.003885,-0.005249,0.249945,0,0);-ms-transform:matrix(0.185009,0.003885,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.185009,0.003885,-0.005249,0.249945,0,0);}
.m82_c01056{transform:matrix(0.185789,0.003902,-0.005249,0.249945,0,0);-ms-transform:matrix(0.185789,0.003902,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.185789,0.003902,-0.005249,0.249945,0,0);}
.m70_c01056{transform:matrix(0.185859,0.003903,-0.005249,0.249945,0,0);-ms-transform:matrix(0.185859,0.003903,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.185859,0.003903,-0.005249,0.249945,0,0);}
.m86_c01056{transform:matrix(0.187064,0.003928,-0.005249,0.249945,0,0);-ms-transform:matrix(0.187064,0.003928,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.187064,0.003928,-0.005249,0.249945,0,0);}
.md1_c01056{transform:matrix(0.187485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187485,0.000000,0.000000,0.250000,0,0);}
.m31_c01056{transform:matrix(0.187916,0.003570,-0.004749,0.249955,0,0);-ms-transform:matrix(0.187916,0.003570,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.187916,0.003570,-0.004749,0.249955,0,0);}
.m6c_c01056{transform:matrix(0.188558,0.003960,-0.005249,0.249945,0,0);-ms-transform:matrix(0.188558,0.003960,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.188558,0.003960,-0.005249,0.249945,0,0);}
.m29_c01056{transform:matrix(0.188626,0.003584,-0.004749,0.249955,0,0);-ms-transform:matrix(0.188626,0.003584,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.188626,0.003584,-0.004749,0.249955,0,0);}
.mdd_c01056{transform:matrix(0.189028,0.003970,-0.005249,0.249945,0,0);-ms-transform:matrix(0.189028,0.003970,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.189028,0.003970,-0.005249,0.249945,0,0);}
.m6f_c01056{transform:matrix(0.191123,0.004014,-0.005249,0.249945,0,0);-ms-transform:matrix(0.191123,0.004014,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.191123,0.004014,-0.005249,0.249945,0,0);}
.m76_c01056{transform:matrix(0.191363,0.004019,-0.005249,0.249945,0,0);-ms-transform:matrix(0.191363,0.004019,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.191363,0.004019,-0.005249,0.249945,0,0);}
.m14b_c01056{transform:matrix(0.191704,0.005559,-0.007247,0.249895,0,0);-ms-transform:matrix(0.191704,0.005559,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.191704,0.005559,-0.007247,0.249895,0,0);}
.m6a_c01056{transform:matrix(0.191868,0.004029,-0.005249,0.249945,0,0);-ms-transform:matrix(0.191868,0.004029,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.191868,0.004029,-0.005249,0.249945,0,0);}
.m113_c01056{transform:matrix(0.192093,0.004034,-0.005249,0.249945,0,0);-ms-transform:matrix(0.192093,0.004034,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.192093,0.004034,-0.005249,0.249945,0,0);}
.m79_c01056{transform:matrix(0.193067,0.004054,-0.005249,0.249945,0,0);-ms-transform:matrix(0.193067,0.004054,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.193067,0.004054,-0.005249,0.249945,0,0);}
.m150_c01056{transform:matrix(0.193229,0.005604,-0.007247,0.249895,0,0);-ms-transform:matrix(0.193229,0.005604,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.193229,0.005604,-0.007247,0.249895,0,0);}
.m111_c01056{transform:matrix(0.194122,0.004077,-0.005249,0.249945,0,0);-ms-transform:matrix(0.194122,0.004077,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.194122,0.004077,-0.005249,0.249945,0,0);}
.m14e_c01056{transform:matrix(0.194963,0.005654,-0.007247,0.249895,0,0);-ms-transform:matrix(0.194963,0.005654,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.194963,0.005654,-0.007247,0.249895,0,0);}
.m110_c01056{transform:matrix(0.195772,0.004111,-0.005249,0.249945,0,0);-ms-transform:matrix(0.195772,0.004111,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.195772,0.004111,-0.005249,0.249945,0,0);}
.m45_c01056{transform:matrix(0.195853,0.002938,-0.003750,0.249972,0,0);-ms-transform:matrix(0.195853,0.002938,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.195853,0.002938,-0.003750,0.249972,0,0);}
.m8d_c01056{transform:matrix(0.196097,0.003334,-0.004249,0.249964,0,0);-ms-transform:matrix(0.196097,0.003334,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.196097,0.003334,-0.004249,0.249964,0,0);}
.m90_c01056{transform:matrix(0.196487,0.003340,-0.004249,0.249964,0,0);-ms-transform:matrix(0.196487,0.003340,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.196487,0.003340,-0.004249,0.249964,0,0);}
.m65_c01056{transform:matrix(0.196867,0.004134,-0.005249,0.249945,0,0);-ms-transform:matrix(0.196867,0.004134,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.196867,0.004134,-0.005249,0.249945,0,0);}
.md9_c01056{transform:matrix(0.197375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197375,0.000000,0.000000,0.250000,0,0);}
.m122_c01056{transform:matrix(0.197866,0.004155,-0.005249,0.249945,0,0);-ms-transform:matrix(0.197866,0.004155,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.197866,0.004155,-0.005249,0.249945,0,0);}
.md7_c01056{transform:matrix(0.198080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198080,0.000000,0.000000,0.250000,0,0);}
.m10f_c01056{transform:matrix(0.198251,0.004163,-0.005249,0.249945,0,0);-ms-transform:matrix(0.198251,0.004163,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.198251,0.004163,-0.005249,0.249945,0,0);}
.mc3_c01056{transform:matrix(0.198545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198545,0.000000,0.000000,0.250000,0,0);}
.m2d_c01056{transform:matrix(0.199064,0.003782,-0.004749,0.249955,0,0);-ms-transform:matrix(0.199064,0.003782,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.199064,0.003782,-0.004749,0.249955,0,0);}
.mdb_c01056{transform:matrix(0.199255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199255,0.000000,0.000000,0.250000,0,0);}
.mcf_c01056{transform:matrix(0.199830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199830,0.000000,0.000000,0.250000,0,0);}
.m62_c01056{transform:matrix(0.199846,0.004197,-0.005249,0.249945,0,0);-ms-transform:matrix(0.199846,0.004197,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.199846,0.004197,-0.005249,0.249945,0,0);}
.m80_c01056{transform:matrix(0.200206,0.004204,-0.005249,0.249945,0,0);-ms-transform:matrix(0.200206,0.004204,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.200206,0.004204,-0.005249,0.249945,0,0);}
.mee_c01056{transform:matrix(0.202237,0.004651,-0.005748,0.249934,0,0);-ms-transform:matrix(0.202237,0.004651,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.202237,0.004651,-0.005748,0.249934,0,0);}
.m10b_c01056{transform:matrix(0.202440,0.004251,-0.005249,0.249945,0,0);-ms-transform:matrix(0.202440,0.004251,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.202440,0.004251,-0.005249,0.249945,0,0);}
.m2f_c01056{transform:matrix(0.203253,0.003862,-0.004749,0.249955,0,0);-ms-transform:matrix(0.203253,0.003862,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.203253,0.003862,-0.004749,0.249955,0,0);}
.m63_c01056{transform:matrix(0.203385,0.004271,-0.005249,0.249945,0,0);-ms-transform:matrix(0.203385,0.004271,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.203385,0.004271,-0.005249,0.249945,0,0);}
.mda_c01056{transform:matrix(0.203510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203510,0.000000,0.000000,0.250000,0,0);}
.m129_c01056{transform:matrix(0.203525,0.004274,-0.005249,0.249945,0,0);-ms-transform:matrix(0.203525,0.004274,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.203525,0.004274,-0.005249,0.249945,0,0);}
.m12e_c01056{transform:matrix(0.203735,0.004278,-0.005249,0.249945,0,0);-ms-transform:matrix(0.203735,0.004278,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.203735,0.004278,-0.005249,0.249945,0,0);}
.m9e_c01056{transform:matrix(0.203757,0.006316,-0.007746,0.249880,0,0);-ms-transform:matrix(0.203757,0.006316,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.203757,0.006316,-0.007746,0.249880,0,0);}
.me3_c01056{transform:matrix(0.204080,0.004286,-0.005249,0.249945,0,0);-ms-transform:matrix(0.204080,0.004286,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.204080,0.004286,-0.005249,0.249945,0,0);}
.m3a_c01056{transform:matrix(0.204397,0.003679,-0.004499,0.249960,0,0);-ms-transform:matrix(0.204397,0.003679,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.204397,0.003679,-0.004499,0.249960,0,0);}
.m77_c01056{transform:matrix(0.204545,0.004295,-0.005249,0.249945,0,0);-ms-transform:matrix(0.204545,0.004295,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.204545,0.004295,-0.005249,0.249945,0,0);}
.md5_c01056{transform:matrix(0.204910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204910,0.000000,0.000000,0.250000,0,0);}
.m114_c01056{transform:matrix(0.205205,0.004309,-0.005249,0.249945,0,0);-ms-transform:matrix(0.205205,0.004309,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.205205,0.004309,-0.005249,0.249945,0,0);}
.me4_c01056{transform:matrix(0.206175,0.004330,-0.005249,0.249945,0,0);-ms-transform:matrix(0.206175,0.004330,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.206175,0.004330,-0.005249,0.249945,0,0);}
.m75_c01056{transform:matrix(0.206514,0.004337,-0.005249,0.249945,0,0);-ms-transform:matrix(0.206514,0.004337,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.206514,0.004337,-0.005249,0.249945,0,0);}
.m73_c01056{transform:matrix(0.207499,0.004357,-0.005249,0.249945,0,0);-ms-transform:matrix(0.207499,0.004357,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.207499,0.004357,-0.005249,0.249945,0,0);}
.mcd_c01056{transform:matrix(0.207505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207505,0.000000,0.000000,0.250000,0,0);}
.m74_c01056{transform:matrix(0.207594,0.004359,-0.005249,0.249945,0,0);-ms-transform:matrix(0.207594,0.004359,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.207594,0.004359,-0.005249,0.249945,0,0);}
.m78_c01056{transform:matrix(0.208134,0.004371,-0.005249,0.249945,0,0);-ms-transform:matrix(0.208134,0.004371,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.208134,0.004371,-0.005249,0.249945,0,0);}
.md8_c01056{transform:matrix(0.208370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208370,0.000000,0.000000,0.250000,0,0);}
.m7e_c01056{transform:matrix(0.208534,0.004379,-0.005249,0.249945,0,0);-ms-transform:matrix(0.208534,0.004379,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.208534,0.004379,-0.005249,0.249945,0,0);}
.ma4_c01056{transform:matrix(0.208830,0.006474,-0.007746,0.249880,0,0);-ms-transform:matrix(0.208830,0.006474,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.208830,0.006474,-0.007746,0.249880,0,0);}
.m14a_c01056{transform:matrix(0.209387,0.006072,-0.007247,0.249895,0,0);-ms-transform:matrix(0.209387,0.006072,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.209387,0.006072,-0.007247,0.249895,0,0);}
.m49_c01056{transform:matrix(0.209481,0.003142,-0.003750,0.249972,0,0);-ms-transform:matrix(0.209481,0.003142,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.209481,0.003142,-0.003750,0.249972,0,0);}
.m85_c01056{transform:matrix(0.210799,0.004427,-0.005249,0.249945,0,0);-ms-transform:matrix(0.210799,0.004427,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.210799,0.004427,-0.005249,0.249945,0,0);}
.ma6_c01056{transform:matrix(0.210914,0.006538,-0.007746,0.249880,0,0);-ms-transform:matrix(0.210914,0.006538,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.210914,0.006538,-0.007746,0.249880,0,0);}
.mc4_c01056{transform:matrix(0.211485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211485,0.000000,0.000000,0.250000,0,0);}
.m112_c01056{transform:matrix(0.211498,0.004441,-0.005249,0.249945,0,0);-ms-transform:matrix(0.211498,0.004441,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.211498,0.004441,-0.005249,0.249945,0,0);}
.ma1_c01056{transform:matrix(0.211558,0.006558,-0.007746,0.249880,0,0);-ms-transform:matrix(0.211558,0.006558,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.211558,0.006558,-0.007746,0.249880,0,0);}
.m88_c01056{transform:matrix(0.211739,0.003600,-0.004249,0.249964,0,0);-ms-transform:matrix(0.211739,0.003600,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.211739,0.003600,-0.004249,0.249964,0,0);}
.m123_c01056{transform:matrix(0.212138,0.004455,-0.005249,0.249945,0,0);-ms-transform:matrix(0.212138,0.004455,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.212138,0.004455,-0.005249,0.249945,0,0);}
.m8f_c01056{transform:matrix(0.212179,0.003607,-0.004249,0.249964,0,0);-ms-transform:matrix(0.212179,0.003607,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.212179,0.003607,-0.004249,0.249964,0,0);}
.m43_c01056{transform:matrix(0.212486,0.003187,-0.003750,0.249972,0,0);-ms-transform:matrix(0.212486,0.003187,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.212486,0.003187,-0.003750,0.249972,0,0);}
.m152_c01056{transform:matrix(0.212651,0.006167,-0.007247,0.249895,0,0);-ms-transform:matrix(0.212651,0.006167,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.212651,0.006167,-0.007247,0.249895,0,0);}
.m153_c01056{transform:matrix(0.213005,0.006177,-0.007247,0.249895,0,0);-ms-transform:matrix(0.213005,0.006177,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.213005,0.006177,-0.007247,0.249895,0,0);}
.m81_c01056{transform:matrix(0.213508,0.004484,-0.005249,0.249945,0,0);-ms-transform:matrix(0.213508,0.004484,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.213508,0.004484,-0.005249,0.249945,0,0);}
.m132_c01056{transform:matrix(0.213648,0.004487,-0.005249,0.249945,0,0);-ms-transform:matrix(0.213648,0.004487,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.213648,0.004487,-0.005249,0.249945,0,0);}
.m36_c01056{transform:matrix(0.213785,0.003848,-0.004499,0.249960,0,0);-ms-transform:matrix(0.213785,0.003848,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.213785,0.003848,-0.004499,0.249960,0,0);}
.m4a_c01056{transform:matrix(0.214551,0.003218,-0.003750,0.249972,0,0);-ms-transform:matrix(0.214551,0.003218,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.214551,0.003218,-0.003750,0.249972,0,0);}
.m3b_c01056{transform:matrix(0.214595,0.003863,-0.004499,0.249960,0,0);-ms-transform:matrix(0.214595,0.003863,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.214595,0.003863,-0.004499,0.249960,0,0);}
.m10d_c01056{transform:matrix(0.214623,0.004507,-0.005249,0.249945,0,0);-ms-transform:matrix(0.214623,0.004507,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.214623,0.004507,-0.005249,0.249945,0,0);}
.m4_c01056{transform:matrix(0.214626,0.004078,-0.004749,0.249955,0,0);-ms-transform:matrix(0.214626,0.004078,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.214626,0.004078,-0.004749,0.249955,0,0);}
.m83_c01056{transform:matrix(0.214658,0.004508,-0.005249,0.249945,0,0);-ms-transform:matrix(0.214658,0.004508,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.214658,0.004508,-0.005249,0.249945,0,0);}
.me1_c01056{transform:matrix(0.214888,0.004513,-0.005249,0.249945,0,0);-ms-transform:matrix(0.214888,0.004513,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.214888,0.004513,-0.005249,0.249945,0,0);}
.mdc_c01056{transform:matrix(0.215438,0.004524,-0.005249,0.249945,0,0);-ms-transform:matrix(0.215438,0.004524,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.215438,0.004524,-0.005249,0.249945,0,0);}
.mb_c01056{transform:matrix(0.215676,0.004098,-0.004749,0.249955,0,0);-ms-transform:matrix(0.215676,0.004098,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.215676,0.004098,-0.004749,0.249955,0,0);}
.mc9_c01056{transform:matrix(0.215790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215790,0.000000,0.000000,0.250000,0,0);}
.m10e_c01056{transform:matrix(0.215957,0.004535,-0.005249,0.249945,0,0);-ms-transform:matrix(0.215957,0.004535,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.215957,0.004535,-0.005249,0.249945,0,0);}
.m96_c01056{transform:matrix(0.216087,0.004322,-0.004999,0.249950,0,0);-ms-transform:matrix(0.216087,0.004322,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.216087,0.004322,-0.004999,0.249950,0,0);}
.m9_c01056{transform:matrix(0.216296,0.004110,-0.004749,0.249955,0,0);-ms-transform:matrix(0.216296,0.004110,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.216296,0.004110,-0.004749,0.249955,0,0);}
.m7f_c01056{transform:matrix(0.216307,0.004542,-0.005249,0.249945,0,0);-ms-transform:matrix(0.216307,0.004542,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.216307,0.004542,-0.005249,0.249945,0,0);}
.m133_c01056{transform:matrix(0.216422,0.004545,-0.005249,0.249945,0,0);-ms-transform:matrix(0.216422,0.004545,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.216422,0.004545,-0.005249,0.249945,0,0);}
.m41_c01056{transform:matrix(0.216701,0.003251,-0.003750,0.249972,0,0);-ms-transform:matrix(0.216701,0.003251,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.216701,0.003251,-0.003750,0.249972,0,0);}
.m13f_c01056{transform:matrix(0.216725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216725,0.000000,0.000000,0.250000,0,0);}
.ma3_c01056{transform:matrix(0.216846,0.006722,-0.007746,0.249880,0,0);-ms-transform:matrix(0.216846,0.006722,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.216846,0.006722,-0.007746,0.249880,0,0);}
.m14d_c01056{transform:matrix(0.217653,0.006312,-0.007247,0.249895,0,0);-ms-transform:matrix(0.217653,0.006312,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.217653,0.006312,-0.007247,0.249895,0,0);}
.m7d_c01056{transform:matrix(0.218502,0.004589,-0.005249,0.249945,0,0);-ms-transform:matrix(0.218502,0.004589,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.218502,0.004589,-0.005249,0.249945,0,0);}
.mc5_c01056{transform:matrix(0.218835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218835,0.000000,0.000000,0.250000,0,0);}
.m125_c01056{transform:matrix(0.218902,0.004597,-0.005249,0.249945,0,0);-ms-transform:matrix(0.218902,0.004597,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.218902,0.004597,-0.005249,0.249945,0,0);}
.m99_c01056{transform:matrix(0.219101,0.004382,-0.004999,0.249950,0,0);-ms-transform:matrix(0.219101,0.004382,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.219101,0.004382,-0.004999,0.249950,0,0);}
.m149_c01056{transform:matrix(0.219748,0.006373,-0.007247,0.249895,0,0);-ms-transform:matrix(0.219748,0.006373,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.219748,0.006373,-0.007247,0.249895,0,0);}
.mce_c01056{transform:matrix(0.219975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219975,0.000000,0.000000,0.250000,0,0);}
.m9f_c01056{transform:matrix(0.220149,0.006825,-0.007746,0.249880,0,0);-ms-transform:matrix(0.220149,0.006825,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.220149,0.006825,-0.007746,0.249880,0,0);}
.m151_c01056{transform:matrix(0.220157,0.006385,-0.007247,0.249895,0,0);-ms-transform:matrix(0.220157,0.006385,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.220157,0.006385,-0.007247,0.249895,0,0);}
.m8a_c01056{transform:matrix(0.221383,0.003764,-0.004249,0.249964,0,0);-ms-transform:matrix(0.221383,0.003764,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.221383,0.003764,-0.004249,0.249964,0,0);}
.mc8_c01056{transform:matrix(0.222085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222085,0.000000,0.000000,0.250000,0,0);}
.m40_c01056{transform:matrix(0.222230,0.003333,-0.003750,0.249972,0,0);-ms-transform:matrix(0.222230,0.003333,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.222230,0.003333,-0.003750,0.249972,0,0);}
.m7b_c01056{transform:matrix(0.222311,0.004669,-0.005249,0.249945,0,0);-ms-transform:matrix(0.222311,0.004669,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.222311,0.004669,-0.005249,0.249945,0,0);}
.me9_c01056{transform:matrix(0.222661,0.005121,-0.005748,0.249934,0,0);-ms-transform:matrix(0.222661,0.005121,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.222661,0.005121,-0.005748,0.249934,0,0);}
.m30_c01056{transform:matrix(0.222680,0.004231,-0.004749,0.249955,0,0);-ms-transform:matrix(0.222680,0.004231,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.222680,0.004231,-0.004749,0.249955,0,0);}
.m12d_c01056{transform:matrix(0.222916,0.004681,-0.005249,0.249945,0,0);-ms-transform:matrix(0.222916,0.004681,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.222916,0.004681,-0.005249,0.249945,0,0);}
.m115_c01056{transform:matrix(0.223631,0.004696,-0.005249,0.249945,0,0);-ms-transform:matrix(0.223631,0.004696,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.223631,0.004696,-0.005249,0.249945,0,0);}
.mcb_c01056{transform:matrix(0.223655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223655,0.000000,0.000000,0.250000,0,0);}
.ma7_c01056{transform:matrix(0.223792,0.006938,-0.007746,0.249880,0,0);-ms-transform:matrix(0.223792,0.006938,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.223792,0.006938,-0.007746,0.249880,0,0);}
.ma5_c01056{transform:matrix(0.223832,0.006939,-0.007746,0.249880,0,0);-ms-transform:matrix(0.223832,0.006939,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.223832,0.006939,-0.007746,0.249880,0,0);}
.ma0_c01056{transform:matrix(0.223937,0.006942,-0.007746,0.249880,0,0);-ms-transform:matrix(0.223937,0.006942,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.223937,0.006942,-0.007746,0.249880,0,0);}
.m10_c01056{transform:matrix(0.223995,0.004256,-0.004749,0.249955,0,0);-ms-transform:matrix(0.223995,0.004256,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.223995,0.004256,-0.004749,0.249955,0,0);}
.m120_c01056{transform:matrix(0.223996,0.004704,-0.005249,0.249945,0,0);-ms-transform:matrix(0.223996,0.004704,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.223996,0.004704,-0.005249,0.249945,0,0);}
.m14f_c01056{transform:matrix(0.225595,0.006542,-0.007247,0.249895,0,0);-ms-transform:matrix(0.225595,0.006542,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.225595,0.006542,-0.007247,0.249895,0,0);}
.ma2_c01056{transform:matrix(0.225991,0.007006,-0.007746,0.249880,0,0);-ms-transform:matrix(0.225991,0.007006,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.225991,0.007006,-0.007746,0.249880,0,0);}
.m116_c01056{transform:matrix(0.226260,0.004751,-0.005249,0.249945,0,0);-ms-transform:matrix(0.226260,0.004751,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.226260,0.004751,-0.005249,0.249945,0,0);}
.me0_c01056{transform:matrix(0.226545,0.004757,-0.005249,0.249945,0,0);-ms-transform:matrix(0.226545,0.004757,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.226545,0.004757,-0.005249,0.249945,0,0);}
.m89_c01056{transform:matrix(0.226677,0.003854,-0.004249,0.249964,0,0);-ms-transform:matrix(0.226677,0.003854,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.226677,0.003854,-0.004249,0.249964,0,0);}
.m95_c01056{transform:matrix(0.226700,0.004534,-0.004999,0.249950,0,0);-ms-transform:matrix(0.226700,0.004534,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.226700,0.004534,-0.004999,0.249950,0,0);}
.m26_c01056{transform:matrix(0.227009,0.004313,-0.004749,0.249955,0,0);-ms-transform:matrix(0.227009,0.004313,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.227009,0.004313,-0.004749,0.249955,0,0);}
.mc2_c01056{transform:matrix(0.227225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227225,0.000000,0.000000,0.250000,0,0);}
.me6_c01056{transform:matrix(0.227645,0.004781,-0.005249,0.249945,0,0);-ms-transform:matrix(0.227645,0.004781,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.227645,0.004781,-0.005249,0.249945,0,0);}
.m10c_c01056{transform:matrix(0.228035,0.004789,-0.005249,0.249945,0,0);-ms-transform:matrix(0.228035,0.004789,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.228035,0.004789,-0.005249,0.249945,0,0);}
.m131_c01056{transform:matrix(0.228440,0.004797,-0.005249,0.249945,0,0);-ms-transform:matrix(0.228440,0.004797,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.228440,0.004797,-0.005249,0.249945,0,0);}
.mea_c01056{transform:matrix(0.228570,0.005257,-0.005748,0.249934,0,0);-ms-transform:matrix(0.228570,0.005257,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.228570,0.005257,-0.005748,0.249934,0,0);}
.mca_c01056{transform:matrix(0.229480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229480,0.000000,0.000000,0.250000,0,0);}
.mc7_c01056{transform:matrix(0.229825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229825,0.000000,0.000000,0.250000,0,0);}
.m14c_c01056{transform:matrix(0.230218,0.006676,-0.007247,0.249895,0,0);-ms-transform:matrix(0.230218,0.006676,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.230218,0.006676,-0.007247,0.249895,0,0);}
.m130_c01056{transform:matrix(0.230549,0.004842,-0.005249,0.249945,0,0);-ms-transform:matrix(0.230549,0.004842,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.230549,0.004842,-0.005249,0.249945,0,0);}
.m121_c01056{transform:matrix(0.231049,0.004852,-0.005249,0.249945,0,0);-ms-transform:matrix(0.231049,0.004852,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.231049,0.004852,-0.005249,0.249945,0,0);}
.me2_c01056{transform:matrix(0.231229,0.004856,-0.005249,0.249945,0,0);-ms-transform:matrix(0.231229,0.004856,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.231229,0.004856,-0.005249,0.249945,0,0);}
.m12c_c01056{transform:matrix(0.231474,0.004861,-0.005249,0.249945,0,0);-ms-transform:matrix(0.231474,0.004861,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.231474,0.004861,-0.005249,0.249945,0,0);}
.mf6_c01056{transform:matrix(0.231589,0.004863,-0.005249,0.249945,0,0);-ms-transform:matrix(0.231589,0.004863,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.231589,0.004863,-0.005249,0.249945,0,0);}
.m13_c01056{transform:matrix(0.231598,0.004400,-0.004749,0.249955,0,0);-ms-transform:matrix(0.231598,0.004400,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.231598,0.004400,-0.004749,0.249955,0,0);}
.mf_c01056{transform:matrix(0.232293,0.004414,-0.004749,0.249955,0,0);-ms-transform:matrix(0.232293,0.004414,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.232293,0.004414,-0.004749,0.249955,0,0);}
.mec_c01056{transform:matrix(0.232434,0.005346,-0.005748,0.249934,0,0);-ms-transform:matrix(0.232434,0.005346,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.232434,0.005346,-0.005748,0.249934,0,0);}
.m11_c01056{transform:matrix(0.232453,0.004417,-0.004749,0.249955,0,0);-ms-transform:matrix(0.232453,0.004417,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.232453,0.004417,-0.004749,0.249955,0,0);}
.ma8_c01056{transform:matrix(0.232688,0.007213,-0.007746,0.249880,0,0);-ms-transform:matrix(0.232688,0.007213,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.232688,0.007213,-0.007746,0.249880,0,0);}
.mf1_c01056{transform:matrix(0.232893,0.005357,-0.005748,0.249934,0,0);-ms-transform:matrix(0.232893,0.005357,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.232893,0.005357,-0.005748,0.249934,0,0);}
.m7_c01056{transform:matrix(0.232933,0.004426,-0.004749,0.249955,0,0);-ms-transform:matrix(0.232933,0.004426,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.232933,0.004426,-0.004749,0.249955,0,0);}
.mac_c01056{transform:matrix(0.232963,0.007222,-0.007746,0.249880,0,0);-ms-transform:matrix(0.232963,0.007222,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.232963,0.007222,-0.007746,0.249880,0,0);}
.m60_c01056{transform:matrix(0.233024,0.004893,-0.005249,0.249945,0,0);-ms-transform:matrix(0.233024,0.004893,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.233024,0.004893,-0.005249,0.249945,0,0);}
.m8e_c01056{transform:matrix(0.233491,0.003969,-0.004249,0.249964,0,0);-ms-transform:matrix(0.233491,0.003969,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.233491,0.003969,-0.004249,0.249964,0,0);}
.m55_c01056{transform:matrix(0.233643,0.004907,-0.005249,0.249945,0,0);-ms-transform:matrix(0.233643,0.004907,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.233643,0.004907,-0.005249,0.249945,0,0);}
.m17_c01056{transform:matrix(0.233653,0.004439,-0.004749,0.249955,0,0);-ms-transform:matrix(0.233653,0.004439,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.233653,0.004439,-0.004749,0.249955,0,0);}
.m1f_c01056{transform:matrix(0.234218,0.004450,-0.004749,0.249955,0,0);-ms-transform:matrix(0.234218,0.004450,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.234218,0.004450,-0.004749,0.249955,0,0);}
.m11a_c01056{transform:matrix(0.234308,0.004920,-0.005249,0.249945,0,0);-ms-transform:matrix(0.234308,0.004920,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.234308,0.004920,-0.005249,0.249945,0,0);}
.mf8_c01056{transform:matrix(0.234733,0.004929,-0.005249,0.249945,0,0);-ms-transform:matrix(0.234733,0.004929,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.234733,0.004929,-0.005249,0.249945,0,0);}
.m33_c01056{transform:matrix(0.234753,0.004460,-0.004749,0.249955,0,0);-ms-transform:matrix(0.234753,0.004460,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.234753,0.004460,-0.004749,0.249955,0,0);}
.m126_c01056{transform:matrix(0.235398,0.004943,-0.005249,0.249945,0,0);-ms-transform:matrix(0.235398,0.004943,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.235398,0.004943,-0.005249,0.249945,0,0);}
.m12f_c01056{transform:matrix(0.235573,0.004947,-0.005249,0.249945,0,0);-ms-transform:matrix(0.235573,0.004947,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.235573,0.004947,-0.005249,0.249945,0,0);}
.m25_c01056{transform:matrix(0.235627,0.004477,-0.004749,0.249955,0,0);-ms-transform:matrix(0.235627,0.004477,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.235627,0.004477,-0.004749,0.249955,0,0);}
.mbb_c01056{transform:matrix(0.235721,0.004007,-0.004249,0.249964,0,0);-ms-transform:matrix(0.235721,0.004007,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.235721,0.004007,-0.004249,0.249964,0,0);}
.m10a_c01056{transform:matrix(0.235983,0.004956,-0.005249,0.249945,0,0);-ms-transform:matrix(0.235983,0.004956,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.235983,0.004956,-0.005249,0.249945,0,0);}
.m32_c01056{transform:matrix(0.236032,0.004485,-0.004749,0.249955,0,0);-ms-transform:matrix(0.236032,0.004485,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.236032,0.004485,-0.004749,0.249955,0,0);}
.m134_c01056{transform:matrix(0.236053,0.004957,-0.005249,0.249945,0,0);-ms-transform:matrix(0.236053,0.004957,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.236053,0.004957,-0.005249,0.249945,0,0);}
.m42_c01056{transform:matrix(0.236233,0.003544,-0.003750,0.249972,0,0);-ms-transform:matrix(0.236233,0.003544,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.236233,0.003544,-0.003750,0.249972,0,0);}
.m3c_c01056{transform:matrix(0.236327,0.004254,-0.004499,0.249960,0,0);-ms-transform:matrix(0.236327,0.004254,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.236327,0.004254,-0.004499,0.249960,0,0);}
.mf4_c01056{transform:matrix(0.236393,0.004964,-0.005249,0.249945,0,0);-ms-transform:matrix(0.236393,0.004964,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.236393,0.004964,-0.005249,0.249945,0,0);}
.me5_c01056{transform:matrix(0.236473,0.004966,-0.005249,0.249945,0,0);-ms-transform:matrix(0.236473,0.004966,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.236473,0.004966,-0.005249,0.249945,0,0);}
.m128_c01056{transform:matrix(0.236518,0.004967,-0.005249,0.249945,0,0);-ms-transform:matrix(0.236518,0.004967,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.236518,0.004967,-0.005249,0.249945,0,0);}
.m2e_c01056{transform:matrix(0.236752,0.004498,-0.004749,0.249955,0,0);-ms-transform:matrix(0.236752,0.004498,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.236752,0.004498,-0.004749,0.249955,0,0);}
.mae_c01056{transform:matrix(0.237056,0.007349,-0.007746,0.249880,0,0);-ms-transform:matrix(0.237056,0.007349,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.237056,0.007349,-0.007746,0.249880,0,0);}
.m2a_c01056{transform:matrix(0.237397,0.004511,-0.004749,0.249955,0,0);-ms-transform:matrix(0.237397,0.004511,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.237397,0.004511,-0.004749,0.249955,0,0);}
.m2c_c01056{transform:matrix(0.237972,0.004521,-0.004749,0.249955,0,0);-ms-transform:matrix(0.237972,0.004521,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.237972,0.004521,-0.004749,0.249955,0,0);}
.m38_c01056{transform:matrix(0.238056,0.004285,-0.004499,0.249960,0,0);-ms-transform:matrix(0.238056,0.004285,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.238056,0.004285,-0.004499,0.249960,0,0);}
.mc_c01056{transform:matrix(0.238187,0.004526,-0.004749,0.249955,0,0);-ms-transform:matrix(0.238187,0.004526,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.238187,0.004526,-0.004749,0.249955,0,0);}
.m46_c01056{transform:matrix(0.238238,0.003574,-0.003750,0.249972,0,0);-ms-transform:matrix(0.238238,0.003574,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.238238,0.003574,-0.003750,0.249972,0,0);}
.m24_c01056{transform:matrix(0.238722,0.004536,-0.004749,0.249955,0,0);-ms-transform:matrix(0.238722,0.004536,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.238722,0.004536,-0.004749,0.249955,0,0);}
.m50_c01056{transform:matrix(0.239177,0.005023,-0.005249,0.249945,0,0);-ms-transform:matrix(0.239177,0.005023,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.239177,0.005023,-0.005249,0.249945,0,0);}
.mb8_c01056{transform:matrix(0.239195,0.004066,-0.004249,0.249964,0,0);-ms-transform:matrix(0.239195,0.004066,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.239195,0.004066,-0.004249,0.249964,0,0);}
.m140_c01056{transform:matrix(0.239380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239380,0.000000,0.000000,0.250000,0,0);}
.m8b_c01056{transform:matrix(0.240140,0.004082,-0.004249,0.249964,0,0);-ms-transform:matrix(0.240140,0.004082,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.240140,0.004082,-0.004249,0.249964,0,0);}
.m3f_c01056{transform:matrix(0.240361,0.004326,-0.004499,0.249960,0,0);-ms-transform:matrix(0.240361,0.004326,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.240361,0.004326,-0.004499,0.249960,0,0);}
.m1d_c01056{transform:matrix(0.240572,0.004571,-0.004749,0.249955,0,0);-ms-transform:matrix(0.240572,0.004571,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.240572,0.004571,-0.004749,0.249955,0,0);}
.m5c_c01056{transform:matrix(0.241247,0.005066,-0.005249,0.249945,0,0);-ms-transform:matrix(0.241247,0.005066,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.241247,0.005066,-0.005249,0.249945,0,0);}
.m139_c01056{transform:matrix(0.241962,0.005081,-0.005249,0.249945,0,0);-ms-transform:matrix(0.241962,0.005081,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.241962,0.005081,-0.005249,0.249945,0,0);}
.m35_c01056{transform:matrix(0.242611,0.004367,-0.004499,0.249960,0,0);-ms-transform:matrix(0.242611,0.004367,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.242611,0.004367,-0.004499,0.249960,0,0);}
.ma_c01056{transform:matrix(0.242631,0.004610,-0.004749,0.249955,0,0);-ms-transform:matrix(0.242631,0.004610,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.242631,0.004610,-0.004749,0.249955,0,0);}
.m124_c01056{transform:matrix(0.242936,0.005102,-0.005249,0.249945,0,0);-ms-transform:matrix(0.242936,0.005102,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.242936,0.005102,-0.005249,0.249945,0,0);}
.m44_c01056{transform:matrix(0.242948,0.003644,-0.003750,0.249972,0,0);-ms-transform:matrix(0.242948,0.003644,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.242948,0.003644,-0.003750,0.249972,0,0);}
.mb0_c01056{transform:matrix(0.243053,0.007535,-0.007746,0.249880,0,0);-ms-transform:matrix(0.243053,0.007535,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.243053,0.007535,-0.007746,0.249880,0,0);}
.m58_c01056{transform:matrix(0.243321,0.005110,-0.005249,0.249945,0,0);-ms-transform:matrix(0.243321,0.005110,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.243321,0.005110,-0.005249,0.249945,0,0);}
.m12a_c01056{transform:matrix(0.243396,0.005111,-0.005249,0.249945,0,0);-ms-transform:matrix(0.243396,0.005111,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.243396,0.005111,-0.005249,0.249945,0,0);}
.me7_c01056{transform:matrix(0.243556,0.005115,-0.005249,0.249945,0,0);-ms-transform:matrix(0.243556,0.005115,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.243556,0.005115,-0.005249,0.249945,0,0);}
.m92_c01056{transform:matrix(0.243701,0.004874,-0.004999,0.249950,0,0);-ms-transform:matrix(0.243701,0.004874,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.243701,0.004874,-0.004999,0.249950,0,0);}
.med_c01056{transform:matrix(0.243995,0.005612,-0.005748,0.249934,0,0);-ms-transform:matrix(0.243995,0.005612,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.243995,0.005612,-0.005748,0.249934,0,0);}
.mcc_c01056{transform:matrix(0.244035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244035,0.000000,0.000000,0.250000,0,0);}
.mab_c01056{transform:matrix(0.244672,0.007585,-0.007746,0.249880,0,0);-ms-transform:matrix(0.244672,0.007585,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.244672,0.007585,-0.007746,0.249880,0,0);}
.m9b_c01056{transform:matrix(0.244721,0.004894,-0.004999,0.249950,0,0);-ms-transform:matrix(0.244721,0.004894,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.244721,0.004894,-0.004999,0.249950,0,0);}
.m27_c01056{transform:matrix(0.245361,0.004662,-0.004749,0.249955,0,0);-ms-transform:matrix(0.245361,0.004662,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.245361,0.004662,-0.004749,0.249955,0,0);}
.m16_c01056{transform:matrix(0.245436,0.004663,-0.004749,0.249955,0,0);-ms-transform:matrix(0.245436,0.004663,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.245436,0.004663,-0.004749,0.249955,0,0);}
.m1e_c01056{transform:matrix(0.245506,0.004665,-0.004749,0.249955,0,0);-ms-transform:matrix(0.245506,0.004665,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.245506,0.004665,-0.004749,0.249955,0,0);}
.mbc_c01056{transform:matrix(0.245540,0.004174,-0.004249,0.249964,0,0);-ms-transform:matrix(0.245540,0.004174,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.245540,0.004174,-0.004249,0.249964,0,0);}
.m107_c01056{transform:matrix(0.245751,0.005161,-0.005249,0.249945,0,0);-ms-transform:matrix(0.245751,0.005161,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.245751,0.005161,-0.005249,0.249945,0,0);}
.mff_c01056{transform:matrix(0.246171,0.005170,-0.005249,0.249945,0,0);-ms-transform:matrix(0.246171,0.005170,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.246171,0.005170,-0.005249,0.249945,0,0);}
.m8c_c01056{transform:matrix(0.246514,0.004191,-0.004249,0.249964,0,0);-ms-transform:matrix(0.246514,0.004191,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.246514,0.004191,-0.004249,0.249964,0,0);}
.m5_c01056{transform:matrix(0.246541,0.004684,-0.004749,0.249955,0,0);-ms-transform:matrix(0.246541,0.004684,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.246541,0.004684,-0.004749,0.249955,0,0);}
.m104_c01056{transform:matrix(0.246791,0.005183,-0.005249,0.249945,0,0);-ms-transform:matrix(0.246791,0.005183,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.246791,0.005183,-0.005249,0.249945,0,0);}
.m118_c01056{transform:matrix(0.247016,0.005187,-0.005249,0.249945,0,0);-ms-transform:matrix(0.247016,0.005187,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.247016,0.005187,-0.005249,0.249945,0,0);}
.m127_c01056{transform:matrix(0.247215,0.005192,-0.005249,0.249945,0,0);-ms-transform:matrix(0.247215,0.005192,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.247215,0.005192,-0.005249,0.249945,0,0);}
.mf0_c01056{transform:matrix(0.247749,0.005698,-0.005748,0.249934,0,0);-ms-transform:matrix(0.247749,0.005698,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.247749,0.005698,-0.005748,0.249934,0,0);}
.mbf_c01056{transform:matrix(0.247899,0.004214,-0.004249,0.249964,0,0);-ms-transform:matrix(0.247899,0.004214,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.247899,0.004214,-0.004249,0.249964,0,0);}
.m9d_c01056{transform:matrix(0.247906,0.007685,-0.007746,0.249880,0,0);-ms-transform:matrix(0.247906,0.007685,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.247906,0.007685,-0.007746,0.249880,0,0);}
.m48_c01056{transform:matrix(0.247927,0.003719,-0.003750,0.249972,0,0);-ms-transform:matrix(0.247927,0.003719,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.247927,0.003719,-0.003750,0.249972,0,0);}
.m9c_c01056{transform:matrix(0.247930,0.004959,-0.004999,0.249950,0,0);-ms-transform:matrix(0.247930,0.004959,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.247930,0.004959,-0.004999,0.249950,0,0);}
.m13c_c01056{transform:matrix(0.248190,0.005212,-0.005249,0.249945,0,0);-ms-transform:matrix(0.248190,0.005212,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.248190,0.005212,-0.005249,0.249945,0,0);}
.m1b_c01056{transform:matrix(0.248880,0.004729,-0.004749,0.249955,0,0);-ms-transform:matrix(0.248880,0.004729,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.248880,0.004729,-0.004749,0.249955,0,0);}
.maa_c01056{transform:matrix(0.248940,0.007717,-0.007746,0.249880,0,0);-ms-transform:matrix(0.248940,0.007717,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.248940,0.007717,-0.007746,0.249880,0,0);}
.m8_c01056{transform:matrix(0.248960,0.004730,-0.004749,0.249955,0,0);-ms-transform:matrix(0.248960,0.004730,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.248960,0.004730,-0.004749,0.249955,0,0);}
.m47_c01056{transform:matrix(0.249122,0.003737,-0.003750,0.249972,0,0);-ms-transform:matrix(0.249122,0.003737,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.249122,0.003737,-0.003750,0.249972,0,0);}
.m11d_c01056{transform:matrix(0.249160,0.005232,-0.005249,0.249945,0,0);-ms-transform:matrix(0.249160,0.005232,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.249160,0.005232,-0.005249,0.249945,0,0);}
.mfc_c01056{transform:matrix(0.249940,0.005249,-0.005249,0.249945,0,0);-ms-transform:matrix(0.249940,0.005249,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.249940,0.005249,-0.005249,0.249945,0,0);}
.m4e_c01056{transform:matrix(0.250100,0.005252,-0.005249,0.249945,0,0);-ms-transform:matrix(0.250100,0.005252,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.250100,0.005252,-0.005249,0.249945,0,0);}
.m20_c01056{transform:matrix(0.250350,0.004757,-0.004749,0.249955,0,0);-ms-transform:matrix(0.250350,0.004757,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.250350,0.004757,-0.004749,0.249955,0,0);}
.m21_c01056{transform:matrix(0.250730,0.004764,-0.004749,0.249955,0,0);-ms-transform:matrix(0.250730,0.004764,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.250730,0.004764,-0.004749,0.249955,0,0);}
.mb4_c01056{transform:matrix(0.250800,0.007775,-0.007746,0.249880,0,0);-ms-transform:matrix(0.250800,0.007775,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.250800,0.007775,-0.007746,0.249880,0,0);}
.m3d_c01056{transform:matrix(0.251164,0.004521,-0.004499,0.249960,0,0);-ms-transform:matrix(0.251164,0.004521,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.251164,0.004521,-0.004499,0.249960,0,0);}
.m87_c01056{transform:matrix(0.251924,0.004283,-0.004249,0.249964,0,0);-ms-transform:matrix(0.251924,0.004283,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.251924,0.004283,-0.004249,0.249964,0,0);}
.md_c01056{transform:matrix(0.252364,0.004795,-0.004749,0.249955,0,0);-ms-transform:matrix(0.252364,0.004795,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.252364,0.004795,-0.004749,0.249955,0,0);}
.m108_c01056{transform:matrix(0.252824,0.005309,-0.005249,0.249945,0,0);-ms-transform:matrix(0.252824,0.005309,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.252824,0.005309,-0.005249,0.249945,0,0);}
.m14_c01056{transform:matrix(0.253059,0.004808,-0.004749,0.249955,0,0);-ms-transform:matrix(0.253059,0.004808,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.253059,0.004808,-0.004749,0.249955,0,0);}
.mb9_c01056{transform:matrix(0.253748,0.004314,-0.004249,0.249964,0,0);-ms-transform:matrix(0.253748,0.004314,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.253748,0.004314,-0.004249,0.249964,0,0);}
.m59_c01056{transform:matrix(0.254259,0.005339,-0.005249,0.249945,0,0);-ms-transform:matrix(0.254259,0.005339,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.254259,0.005339,-0.005249,0.249945,0,0);}
.m138_c01056{transform:matrix(0.255299,0.005361,-0.005249,0.249945,0,0);-ms-transform:matrix(0.255299,0.005361,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.255299,0.005361,-0.005249,0.249945,0,0);}
.mf2_c01056{transform:matrix(0.255477,0.005876,-0.005748,0.249934,0,0);-ms-transform:matrix(0.255477,0.005876,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.255477,0.005876,-0.005748,0.249934,0,0);}
.mf7_c01056{transform:matrix(0.255609,0.005368,-0.005249,0.249945,0,0);-ms-transform:matrix(0.255609,0.005368,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.255609,0.005368,-0.005249,0.249945,0,0);}
.m5b_c01056{transform:matrix(0.255619,0.005368,-0.005249,0.249945,0,0);-ms-transform:matrix(0.255619,0.005368,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.255619,0.005368,-0.005249,0.249945,0,0);}
.m37_c01056{transform:matrix(0.256114,0.004610,-0.004499,0.249960,0,0);-ms-transform:matrix(0.256114,0.004610,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.256114,0.004610,-0.004499,0.249960,0,0);}
.m4c_c01056{transform:matrix(0.256130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256130,0.000000,0.000000,0.250000,0,0);}
.mc0_c01056{transform:matrix(0.256993,0.004369,-0.004249,0.249964,0,0);-ms-transform:matrix(0.256993,0.004369,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.256993,0.004369,-0.004249,0.249964,0,0);}
.m101_c01056{transform:matrix(0.257373,0.005405,-0.005249,0.249945,0,0);-ms-transform:matrix(0.257373,0.005405,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.257373,0.005405,-0.005249,0.249945,0,0);}
.me_c01056{transform:matrix(0.258283,0.004907,-0.004749,0.249955,0,0);-ms-transform:matrix(0.258283,0.004907,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.258283,0.004907,-0.004749,0.249955,0,0);}
.m13b_c01056{transform:matrix(0.258558,0.005430,-0.005249,0.249945,0,0);-ms-transform:matrix(0.258558,0.005430,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.258558,0.005430,-0.005249,0.249945,0,0);}
.mef_c01056{transform:matrix(0.259211,0.005962,-0.005748,0.249934,0,0);-ms-transform:matrix(0.259211,0.005962,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.259211,0.005962,-0.005748,0.249934,0,0);}
.m105_c01056{transform:matrix(0.259243,0.005444,-0.005249,0.249945,0,0);-ms-transform:matrix(0.259243,0.005444,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.259243,0.005444,-0.005249,0.249945,0,0);}
.mfb_c01056{transform:matrix(0.259558,0.005451,-0.005249,0.249945,0,0);-ms-transform:matrix(0.259558,0.005451,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.259558,0.005451,-0.005249,0.249945,0,0);}
.m22_c01056{transform:matrix(0.259588,0.004932,-0.004749,0.249955,0,0);-ms-transform:matrix(0.259588,0.004932,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.259588,0.004932,-0.004749,0.249955,0,0);}
.m13e_c01056{transform:matrix(0.259710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259710,0.000000,0.000000,0.250000,0,0);}
.m3e_c01056{transform:matrix(0.260513,0.004689,-0.004499,0.249960,0,0);-ms-transform:matrix(0.260513,0.004689,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.260513,0.004689,-0.004499,0.249960,0,0);}
.m5a_c01056{transform:matrix(0.260548,0.005471,-0.005249,0.249945,0,0);-ms-transform:matrix(0.260548,0.005471,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.260548,0.005471,-0.005249,0.249945,0,0);}
.m103_c01056{transform:matrix(0.260763,0.005476,-0.005249,0.249945,0,0);-ms-transform:matrix(0.260763,0.005476,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.260763,0.005476,-0.005249,0.249945,0,0);}
.m137_c01056{transform:matrix(0.260862,0.005478,-0.005249,0.249945,0,0);-ms-transform:matrix(0.260862,0.005478,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.260862,0.005478,-0.005249,0.249945,0,0);}
.m23_c01056{transform:matrix(0.261223,0.004963,-0.004749,0.249955,0,0);-ms-transform:matrix(0.261223,0.004963,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.261223,0.004963,-0.004749,0.249955,0,0);}
.m51_c01056{transform:matrix(0.261517,0.005492,-0.005249,0.249945,0,0);-ms-transform:matrix(0.261517,0.005492,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.261517,0.005492,-0.005249,0.249945,0,0);}
.m34_c01056{transform:matrix(0.261803,0.004712,-0.004499,0.249960,0,0);-ms-transform:matrix(0.261803,0.004712,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.261803,0.004712,-0.004499,0.249960,0,0);}
.mbe_c01056{transform:matrix(0.261807,0.004451,-0.004249,0.249964,0,0);-ms-transform:matrix(0.261807,0.004451,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.261807,0.004451,-0.004249,0.249964,0,0);}
.m9a_c01056{transform:matrix(0.261878,0.005238,-0.004999,0.249950,0,0);-ms-transform:matrix(0.261878,0.005238,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.261878,0.005238,-0.004999,0.249950,0,0);}
.mf9_c01056{transform:matrix(0.262842,0.005520,-0.005249,0.249945,0,0);-ms-transform:matrix(0.262842,0.005520,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.262842,0.005520,-0.005249,0.249945,0,0);}
.mb5_c01056{transform:matrix(0.262862,0.004469,-0.004249,0.249964,0,0);-ms-transform:matrix(0.262862,0.004469,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.262862,0.004469,-0.004249,0.249964,0,0);}
.m91_c01056{transform:matrix(0.263172,0.005263,-0.004999,0.249950,0,0);-ms-transform:matrix(0.263172,0.005263,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.263172,0.005263,-0.004999,0.249950,0,0);}
.mb6_c01056{transform:matrix(0.263272,0.004476,-0.004249,0.249964,0,0);-ms-transform:matrix(0.263272,0.004476,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.263272,0.004476,-0.004249,0.249964,0,0);}
.m57_c01056{transform:matrix(0.263537,0.005534,-0.005249,0.249945,0,0);-ms-transform:matrix(0.263537,0.005534,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.263537,0.005534,-0.005249,0.249945,0,0);}
.m19_c01056{transform:matrix(0.264542,0.005026,-0.004749,0.249955,0,0);-ms-transform:matrix(0.264542,0.005026,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.264542,0.005026,-0.004749,0.249955,0,0);}
.m1c_c01056{transform:matrix(0.264627,0.005028,-0.004749,0.249955,0,0);-ms-transform:matrix(0.264627,0.005028,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.264627,0.005028,-0.004749,0.249955,0,0);}
.m93_c01056{transform:matrix(0.265607,0.005312,-0.004999,0.249950,0,0);-ms-transform:matrix(0.265607,0.005312,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.265607,0.005312,-0.004999,0.249950,0,0);}
.mfe_c01056{transform:matrix(0.265951,0.005585,-0.005249,0.249945,0,0);-ms-transform:matrix(0.265951,0.005585,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.265951,0.005585,-0.005249,0.249945,0,0);}
.m100_c01056{transform:matrix(0.266381,0.005594,-0.005249,0.249945,0,0);-ms-transform:matrix(0.266381,0.005594,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.266381,0.005594,-0.005249,0.249945,0,0);}
.m54_c01056{transform:matrix(0.266751,0.005602,-0.005249,0.249945,0,0);-ms-transform:matrix(0.266751,0.005602,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.266751,0.005602,-0.005249,0.249945,0,0);}
.mfd_c01056{transform:matrix(0.267611,0.005620,-0.005249,0.249945,0,0);-ms-transform:matrix(0.267611,0.005620,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.267611,0.005620,-0.005249,0.249945,0,0);}
.m4b_c01056{transform:matrix(0.267670,0.004015,-0.003750,0.249972,0,0);-ms-transform:matrix(0.267670,0.004015,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.267670,0.004015,-0.003750,0.249972,0,0);}
.m52_c01056{transform:matrix(0.267696,0.005622,-0.005249,0.249945,0,0);-ms-transform:matrix(0.267696,0.005622,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.267696,0.005622,-0.005249,0.249945,0,0);}
.mb1_c01056{transform:matrix(0.268441,0.008322,-0.007746,0.249880,0,0);-ms-transform:matrix(0.268441,0.008322,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.268441,0.008322,-0.007746,0.249880,0,0);}
.mfa_c01056{transform:matrix(0.268981,0.005649,-0.005249,0.249945,0,0);-ms-transform:matrix(0.268981,0.005649,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.268981,0.005649,-0.005249,0.249945,0,0);}
.m28_c01056{transform:matrix(0.269156,0.005114,-0.004749,0.249955,0,0);-ms-transform:matrix(0.269156,0.005114,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.269156,0.005114,-0.004749,0.249955,0,0);}
.maf_c01056{transform:matrix(0.270185,0.008376,-0.007746,0.249880,0,0);-ms-transform:matrix(0.270185,0.008376,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.270185,0.008376,-0.007746,0.249880,0,0);}
.m13a_c01056{transform:matrix(0.270590,0.005682,-0.005249,0.249945,0,0);-ms-transform:matrix(0.270590,0.005682,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.270590,0.005682,-0.005249,0.249945,0,0);}
.mb7_c01056{transform:matrix(0.270626,0.004601,-0.004249,0.249964,0,0);-ms-transform:matrix(0.270626,0.004601,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.270626,0.004601,-0.004249,0.249964,0,0);}
.mb2_c01056{transform:matrix(0.270645,0.008390,-0.007746,0.249880,0,0);-ms-transform:matrix(0.270645,0.008390,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.270645,0.008390,-0.007746,0.249880,0,0);}
.m11f_c01056{transform:matrix(0.270890,0.005689,-0.005249,0.249945,0,0);-ms-transform:matrix(0.270890,0.005689,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.270890,0.005689,-0.005249,0.249945,0,0);}
.m136_c01056{transform:matrix(0.271315,0.005698,-0.005249,0.249945,0,0);-ms-transform:matrix(0.271315,0.005698,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.271315,0.005698,-0.005249,0.249945,0,0);}
.m15_c01056{transform:matrix(0.271621,0.005161,-0.004749,0.249955,0,0);-ms-transform:matrix(0.271621,0.005161,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.271621,0.005161,-0.004749,0.249955,0,0);}
.m94_c01056{transform:matrix(0.271626,0.005433,-0.004999,0.249950,0,0);-ms-transform:matrix(0.271626,0.005433,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.271626,0.005433,-0.004999,0.249950,0,0);}
.m119_c01056{transform:matrix(0.272050,0.005713,-0.005249,0.249945,0,0);-ms-transform:matrix(0.272050,0.005713,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.272050,0.005713,-0.005249,0.249945,0,0);}
.meb_c01056{transform:matrix(0.272278,0.006262,-0.005748,0.249934,0,0);-ms-transform:matrix(0.272278,0.006262,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.272278,0.006262,-0.005748,0.249934,0,0);}
.ma9_c01056{transform:matrix(0.273309,0.008473,-0.007746,0.249880,0,0);-ms-transform:matrix(0.273309,0.008473,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.273309,0.008473,-0.007746,0.249880,0,0);}
.m5f_c01056{transform:matrix(0.273870,0.005751,-0.005249,0.249945,0,0);-ms-transform:matrix(0.273870,0.005751,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.273870,0.005751,-0.005249,0.249945,0,0);}
.m98_c01056{transform:matrix(0.274410,0.005488,-0.004999,0.249950,0,0);-ms-transform:matrix(0.274410,0.005488,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.274410,0.005488,-0.004999,0.249950,0,0);}
.mbd_c01056{transform:matrix(0.275765,0.004688,-0.004249,0.249964,0,0);-ms-transform:matrix(0.275765,0.004688,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.275765,0.004688,-0.004249,0.249964,0,0);}
.m56_c01056{transform:matrix(0.276124,0.005799,-0.005249,0.249945,0,0);-ms-transform:matrix(0.276124,0.005799,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.276124,0.005799,-0.005249,0.249945,0,0);}
.mf5_c01056{transform:matrix(0.276199,0.005800,-0.005249,0.249945,0,0);-ms-transform:matrix(0.276199,0.005800,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.276199,0.005800,-0.005249,0.249945,0,0);}
.m61_c01056{transform:matrix(0.276214,0.005800,-0.005249,0.249945,0,0);-ms-transform:matrix(0.276214,0.005800,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.276214,0.005800,-0.005249,0.249945,0,0);}
.m53_c01056{transform:matrix(0.276839,0.005814,-0.005249,0.249945,0,0);-ms-transform:matrix(0.276839,0.005814,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.276839,0.005814,-0.005249,0.249945,0,0);}
.m12_c01056{transform:matrix(0.277375,0.005270,-0.004749,0.249955,0,0);-ms-transform:matrix(0.277375,0.005270,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.277375,0.005270,-0.004749,0.249955,0,0);}
.mad_c01056{transform:matrix(0.277377,0.008599,-0.007746,0.249880,0,0);-ms-transform:matrix(0.277377,0.008599,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.277377,0.008599,-0.007746,0.249880,0,0);}
.m135_c01056{transform:matrix(0.277849,0.005835,-0.005249,0.249945,0,0);-ms-transform:matrix(0.277849,0.005835,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.277849,0.005835,-0.005249,0.249945,0,0);}
.m11c_c01056{transform:matrix(0.277934,0.005837,-0.005249,0.249945,0,0);-ms-transform:matrix(0.277934,0.005837,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.277934,0.005837,-0.005249,0.249945,0,0);}
.m109_c01056{transform:matrix(0.278049,0.005839,-0.005249,0.249945,0,0);-ms-transform:matrix(0.278049,0.005839,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.278049,0.005839,-0.005249,0.249945,0,0);}
.mb3_c01056{transform:matrix(0.278256,0.008626,-0.007746,0.249880,0,0);-ms-transform:matrix(0.278256,0.008626,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.278256,0.008626,-0.007746,0.249880,0,0);}
.m117_c01056{transform:matrix(0.279273,0.005865,-0.005249,0.249945,0,0);-ms-transform:matrix(0.279273,0.005865,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.279273,0.005865,-0.005249,0.249945,0,0);}
.mba_c01056{transform:matrix(0.280225,0.004764,-0.004249,0.249964,0,0);-ms-transform:matrix(0.280225,0.004764,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.280225,0.004764,-0.004249,0.249964,0,0);}
.m5e_c01056{transform:matrix(0.281063,0.005902,-0.005249,0.249945,0,0);-ms-transform:matrix(0.281063,0.005902,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.281063,0.005902,-0.005249,0.249945,0,0);}
.m106_c01056{transform:matrix(0.281153,0.005904,-0.005249,0.249945,0,0);-ms-transform:matrix(0.281153,0.005904,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.281153,0.005904,-0.005249,0.249945,0,0);}
.m5d_c01056{transform:matrix(0.282658,0.005936,-0.005249,0.249945,0,0);-ms-transform:matrix(0.282658,0.005936,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.282658,0.005936,-0.005249,0.249945,0,0);}
.m4f_c01056{transform:matrix(0.282973,0.005942,-0.005249,0.249945,0,0);-ms-transform:matrix(0.282973,0.005942,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.282973,0.005942,-0.005249,0.249945,0,0);}
.m11e_c01056{transform:matrix(0.283288,0.005949,-0.005249,0.249945,0,0);-ms-transform:matrix(0.283288,0.005949,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.283288,0.005949,-0.005249,0.249945,0,0);}
.m11b_c01056{transform:matrix(0.285047,0.005986,-0.005249,0.249945,0,0);-ms-transform:matrix(0.285047,0.005986,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.285047,0.005986,-0.005249,0.249945,0,0);}
.m4d_c01056{transform:matrix(0.286820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286820,0.000000,0.000000,0.250000,0,0);}
.m1a_c01056{transform:matrix(0.287238,0.005458,-0.004749,0.249955,0,0);-ms-transform:matrix(0.287238,0.005458,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.287238,0.005458,-0.004749,0.249955,0,0);}
.m6_c01056{transform:matrix(0.292032,0.005549,-0.004749,0.249955,0,0);-ms-transform:matrix(0.292032,0.005549,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.292032,0.005549,-0.004749,0.249955,0,0);}
.m13d_c01056{transform:matrix(0.293695,0.006168,-0.005249,0.249945,0,0);-ms-transform:matrix(0.293695,0.006168,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.293695,0.006168,-0.005249,0.249945,0,0);}
.m12b_c01056{transform:matrix(0.297164,0.006240,-0.005249,0.249945,0,0);-ms-transform:matrix(0.297164,0.006240,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.297164,0.006240,-0.005249,0.249945,0,0);}
.m102_c01056{transform:matrix(0.303143,0.006366,-0.005249,0.249945,0,0);-ms-transform:matrix(0.303143,0.006366,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.303143,0.006366,-0.005249,0.249945,0,0);}
.m39_c01056{transform:matrix(0.307090,0.005528,-0.004499,0.249960,0,0);-ms-transform:matrix(0.307090,0.005528,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.307090,0.005528,-0.004499,0.249960,0,0);}
.m18_c01056{transform:matrix(0.307619,0.005845,-0.004749,0.249955,0,0);-ms-transform:matrix(0.307619,0.005845,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.307619,0.005845,-0.004749,0.249955,0,0);}
.mde_c01056{transform:matrix(0.307767,0.006463,-0.005249,0.249945,0,0);-ms-transform:matrix(0.307767,0.006463,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.307767,0.006463,-0.005249,0.249945,0,0);}
.m146_c01056{transform:matrix(0.312580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312580,0.000000,0.000000,0.250000,0,0);}
.m97_c01056{transform:matrix(0.317052,0.006341,-0.004999,0.249950,0,0);-ms-transform:matrix(0.317052,0.006341,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.317052,0.006341,-0.004999,0.249950,0,0);}
.mdf_c01056{transform:matrix(0.342634,0.007195,-0.005249,0.249945,0,0);-ms-transform:matrix(0.342634,0.007195,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.342634,0.007195,-0.005249,0.249945,0,0);}
.m143_c01056{transform:matrix(0.362245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362245,0.000000,0.000000,0.250000,0,0);}
.m148_c01056{transform:matrix(0.366275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366275,0.000000,0.000000,0.250000,0,0);}
.mf3_c01056{transform:matrix(0.405033,0.009316,-0.005748,0.249934,0,0);-ms-transform:matrix(0.405033,0.009316,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.405033,0.009316,-0.005748,0.249934,0,0);}
.m147_c01056{transform:matrix(0.408150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408150,0.000000,0.000000,0.250000,0,0);}
.m1_c01056{transform:matrix(0.450000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450000,0.000000,0.000000,0.250000,0,0);}
.m145_c01056{transform:matrix(0.675000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.675000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.675000,0.000000,0.000000,0.250000,0,0);}
.m144_c01056{transform:matrix(0.775600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.775600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.775600,0.000000,0.000000,0.250000,0,0);}
.m142_c01056{transform:matrix(0.802230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.802230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.802230,0.000000,0.000000,0.250000,0,0);}
.m141_c01056{transform:matrix(0.966455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.966455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.966455,0.000000,0.000000,0.250000,0,0);}
.m0_c01056{transform:matrix(1.988165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.988165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.988165,0.000000,0.000000,0.250000,0,0);}
.v0_c01056{vertical-align:0.000000px;}
.ls0_c01056{letter-spacing:0.000000px;}
.sc__c01056{text-shadow:none;}
.sc0_c01056{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__c01056{-webkit-text-stroke:0px transparent;}
.sc0_c01056{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01056{word-spacing:0.000000px;}
.fc0_c01056{color:transparent;}
.fs0_c01056{font-size:24.000000px;}
.fs11_c01056{font-size:36.000000px;}
.fs7_c01056{font-size:66.000000px;}
.fs10_c01056{font-size:72.010403px;}
.fs3_c01056{font-size:72.012995px;}
.fsd_c01056{font-size:72.014399px;}
.fs8_c01056{font-size:72.015874px;}
.fsf_c01056{font-size:72.034588px;}
.fs15_c01056{font-size:78.000000px;}
.fs6_c01056{font-size:78.008775px;}
.fs5_c01056{font-size:78.012635px;}
.fs2_c01056{font-size:78.014078px;}
.fs14_c01056{font-size:78.020628px;}
.fs12_c01056{font-size:84.000000px;}
.fsc_c01056{font-size:84.012137px;}
.fs4_c01056{font-size:84.015161px;}
.fs13_c01056{font-size:84.018520px;}
.fs16_c01056{font-size:84.035315px;}
.fse_c01056{font-size:84.040352px;}
.fsb_c01056{font-size:90.019843px;}
.fs1_c01056{font-size:96.000000px;}
.fsa_c01056{font-size:96.021166px;}
.fs9_c01056{font-size:102.022489px;}
.y0_c01056{bottom:0.000000px;}
.y13c_c01056{bottom:64.946399px;}
.y13b_c01056{bottom:66.599442px;}
.y13a_c01056{bottom:68.526840px;}
.y139_c01056{bottom:69.458436px;}
.y138_c01056{bottom:70.124856px;}
.y137_c01056{bottom:71.080160px;}
.y136_c01056{bottom:71.714564px;}
.y135_c01056{bottom:73.979000px;}
.y134_c01056{bottom:74.918643px;}
.y133_c01056{bottom:76.530710px;}
.y132_c01056{bottom:77.503500px;}
.y131_c01056{bottom:104.187000px;}
.y130_c01056{bottom:104.668500px;}
.y12f_c01056{bottom:105.096000px;}
.y12e_c01056{bottom:105.666000px;}
.y12d_c01056{bottom:106.395000px;}
.y12c_c01056{bottom:107.001000px;}
.y12b_c01056{bottom:107.962500px;}
.y12a_c01056{bottom:108.835500px;}
.y129_c01056{bottom:129.057000px;}
.y128_c01056{bottom:152.393352px;}
.y127_c01056{bottom:153.498621px;}
.y126_c01056{bottom:154.942350px;}
.y125_c01056{bottom:158.213874px;}
.y124_c01056{bottom:158.988471px;}
.y123_c01056{bottom:161.183055px;}
.y122_c01056{bottom:163.349562px;}
.y121_c01056{bottom:166.251348px;}
.y120_c01056{bottom:167.352251px;}
.y11f_c01056{bottom:170.608892px;}
.y11e_c01056{bottom:189.008888px;}
.y11d_c01056{bottom:189.660292px;}
.y11c_c01056{bottom:190.681378px;}
.y11b_c01056{bottom:192.381790px;}
.y11a_c01056{bottom:193.864862px;}
.y119_c01056{bottom:196.364660px;}
.y118_c01056{bottom:197.627996px;}
.y117_c01056{bottom:199.113398px;}
.y116_c01056{bottom:199.730148px;}
.y115_c01056{bottom:200.578206px;}
.y114_c01056{bottom:221.489386px;}
.y113_c01056{bottom:223.262862px;}
.y112_c01056{bottom:224.160434px;}
.y111_c01056{bottom:226.310052px;}
.y110_c01056{bottom:228.099978px;}
.y10f_c01056{bottom:230.482560px;}
.y10e_c01056{bottom:231.092422px;}
.y10d_c01056{bottom:234.069929px;}
.y10c_c01056{bottom:234.952688px;}
.y10b_c01056{bottom:235.835163px;}
.y10a_c01056{bottom:237.941320px;}
.y109_c01056{bottom:240.009844px;}
.y108_c01056{bottom:259.629964px;}
.y107_c01056{bottom:262.668504px;}
.y106_c01056{bottom:263.796654px;}
.y105_c01056{bottom:264.604699px;}
.y104_c01056{bottom:268.187083px;}
.y103_c01056{bottom:269.029038px;}
.y102_c01056{bottom:271.486107px;}
.y101_c01056{bottom:272.881942px;}
.y100_c01056{bottom:275.116091px;}
.yff_c01056{bottom:298.708608px;}
.yfe_c01056{bottom:299.535216px;}
.yfd_c01056{bottom:300.045058px;}
.yfc_c01056{bottom:300.946264px;}
.yfb_c01056{bottom:302.103195px;}
.yfa_c01056{bottom:302.677417px;}
.yf9_c01056{bottom:303.241422px;}
.yf8_c01056{bottom:304.162836px;}
.yf7_c01056{bottom:305.499476px;}
.yf6_c01056{bottom:306.110247px;}
.yf5_c01056{bottom:308.290843px;}
.yf4_c01056{bottom:308.868531px;}
.yf3_c01056{bottom:330.553980px;}
.yf2_c01056{bottom:332.670559px;}
.yf1_c01056{bottom:333.839525px;}
.yf0_c01056{bottom:335.695347px;}
.yef_c01056{bottom:336.392725px;}
.yee_c01056{bottom:337.345664px;}
.yed_c01056{bottom:338.037498px;}
.yec_c01056{bottom:339.409827px;}
.yeb_c01056{bottom:342.205231px;}
.yea_c01056{bottom:343.082948px;}
.ye9_c01056{bottom:344.518088px;}
.ye8_c01056{bottom:367.023611px;}
.ye7_c01056{bottom:367.528241px;}
.ye6_c01056{bottom:369.129102px;}
.ye5_c01056{bottom:370.082639px;}
.ye4_c01056{bottom:371.460858px;}
.ye3_c01056{bottom:373.088495px;}
.ye2_c01056{bottom:374.500734px;}
.ye1_c01056{bottom:375.197042px;}
.ye0_c01056{bottom:376.576679px;}
.ydf_c01056{bottom:377.280074px;}
.yde_c01056{bottom:380.273298px;}
.ydd_c01056{bottom:380.976000px;}
.ydc_c01056{bottom:400.440794px;}
.ydb_c01056{bottom:400.945321px;}
.yda_c01056{bottom:402.229446px;}
.yd9_c01056{bottom:404.043146px;}
.yd8_c01056{bottom:406.615120px;}
.yd7_c01056{bottom:407.353213px;}
.yd6_c01056{bottom:409.367013px;}
.yd5_c01056{bottom:410.403220px;}
.yd4_c01056{bottom:413.839731px;}
.yd3_c01056{bottom:414.721171px;}
.yd2_c01056{bottom:415.961136px;}
.yd1_c01056{bottom:416.344500px;}
.yd0_c01056{bottom:439.662444px;}
.ycf_c01056{bottom:440.177217px;}
.yce_c01056{bottom:442.475930px;}
.ycd_c01056{bottom:443.422126px;}
.ycc_c01056{bottom:444.119631px;}
.ycb_c01056{bottom:445.531618px;}
.yca_c01056{bottom:446.648955px;}
.yc9_c01056{bottom:448.300689px;}
.yc8_c01056{bottom:448.772275px;}
.yc7_c01056{bottom:450.125327px;}
.yc6_c01056{bottom:450.806766px;}
.yc5_c01056{bottom:451.986000px;}
.yc4_c01056{bottom:485.908500px;}
.yc3_c01056{bottom:525.000000px;}
.yc2_c01056{bottom:533.790000px;}
.yc1_c01056{bottom:548.163555px;}
.yc0_c01056{bottom:548.925928px;}
.ybf_c01056{bottom:549.867210px;}
.ybe_c01056{bottom:551.199916px;}
.ybd_c01056{bottom:551.929165px;}
.ybc_c01056{bottom:552.503757px;}
.ybb_c01056{bottom:554.376757px;}
.yba_c01056{bottom:554.955250px;}
.yb9_c01056{bottom:555.515307px;}
.yb8_c01056{bottom:556.846534px;}
.yb7_c01056{bottom:558.320179px;}
.yb6_c01056{bottom:559.444500px;}
.yb5_c01056{bottom:581.976950px;}
.yb4_c01056{bottom:583.791862px;}
.yb3_c01056{bottom:585.343110px;}
.yb2_c01056{bottom:586.893532px;}
.yb1_c01056{bottom:587.751828px;}
.yb0_c01056{bottom:589.325358px;}
.yaf_c01056{bottom:589.974351px;}
.yae_c01056{bottom:591.957839px;}
.yad_c01056{bottom:592.628637px;}
.yac_c01056{bottom:593.713589px;}
.yab_c01056{bottom:594.395453px;}
.yaa_c01056{bottom:595.335600px;}
.ya9_c01056{bottom:619.733397px;}
.ya8_c01056{bottom:621.131280px;}
.ya7_c01056{bottom:622.864847px;}
.ya6_c01056{bottom:623.890404px;}
.ya5_c01056{bottom:626.261625px;}
.ya4_c01056{bottom:627.661647px;}
.ya3_c01056{bottom:628.694551px;}
.ya2_c01056{bottom:630.719627px;}
.ya1_c01056{bottom:632.092679px;}
.ya0_c01056{bottom:633.848751px;}
.y9f_c01056{bottom:635.884800px;}
.y9e_c01056{bottom:636.897617px;}
.y9d_c01056{bottom:639.363000px;}
.y9c_c01056{bottom:654.648600px;}
.y9b_c01056{bottom:655.534440px;}
.y9a_c01056{bottom:657.091380px;}
.y99_c01056{bottom:657.760080px;}
.y98_c01056{bottom:659.991780px;}
.y97_c01056{bottom:661.520010px;}
.y96_c01056{bottom:661.929780px;}
.y95_c01056{bottom:662.616630px;}
.y94_c01056{bottom:664.172490px;}
.y93_c01056{bottom:665.711610px;}
.y92_c01056{bottom:666.612030px;}
.y91_c01056{bottom:667.714500px;}
.y90_c01056{bottom:691.007962px;}
.y8f_c01056{bottom:691.959367px;}
.y8e_c01056{bottom:693.653766px;}
.y8d_c01056{bottom:694.236849px;}
.y8c_c01056{bottom:696.880919px;}
.y8b_c01056{bottom:698.575955px;}
.y8a_c01056{bottom:698.955318px;}
.y89_c01056{bottom:700.080888px;}
.y88_c01056{bottom:700.988943px;}
.y87_c01056{bottom:702.274500px;}
.y86_c01056{bottom:725.810004px;}
.y85_c01056{bottom:726.503256px;}
.y84_c01056{bottom:727.199217px;}
.y83_c01056{bottom:728.623269px;}
.y82_c01056{bottom:729.303889px;}
.y81_c01056{bottom:730.925856px;}
.y80_c01056{bottom:731.646513px;}
.y7f_c01056{bottom:732.320959px;}
.y7e_c01056{bottom:733.970551px;}
.y7d_c01056{bottom:734.446012px;}
.y7c_c01056{bottom:736.047094px;}
.y7b_c01056{bottom:736.733133px;}
.y7a_c01056{bottom:738.814873px;}
.y79_c01056{bottom:739.503841px;}
.y78_c01056{bottom:762.333595px;}
.y77_c01056{bottom:764.693103px;}
.y76_c01056{bottom:765.855799px;}
.y75_c01056{bottom:766.558974px;}
.y74_c01056{bottom:769.082029px;}
.y73_c01056{bottom:771.163518px;}
.y72_c01056{bottom:773.013796px;}
.y71_c01056{bottom:773.964592px;}
.y70_c01056{bottom:774.881494px;}
.y6f_c01056{bottom:797.026669px;}
.y6e_c01056{bottom:798.100806px;}
.y6d_c01056{bottom:798.721399px;}
.y6c_c01056{bottom:799.358586px;}
.y6b_c01056{bottom:800.847233px;}
.y6a_c01056{bottom:801.467617px;}
.y69_c01056{bottom:803.139655px;}
.y68_c01056{bottom:803.575011px;}
.y67_c01056{bottom:804.202137px;}
.y66_c01056{bottom:805.052097px;}
.y65_c01056{bottom:805.894075px;}
.y64_c01056{bottom:807.978072px;}
.y63_c01056{bottom:808.787077px;}
.y62_c01056{bottom:809.450905px;}
.y61_c01056{bottom:833.115736px;}
.y60_c01056{bottom:834.852105px;}
.y5f_c01056{bottom:835.571395px;}
.y5e_c01056{bottom:837.299964px;}
.y5d_c01056{bottom:839.261611px;}
.y5c_c01056{bottom:841.676565px;}
.y5b_c01056{bottom:842.402439px;}
.y5a_c01056{bottom:843.637141px;}
.y59_c01056{bottom:845.080006px;}
.y58_c01056{bottom:846.269487px;}
.y57_c01056{bottom:847.023541px;}
.y56_c01056{bottom:847.526133px;}
.y55_c01056{bottom:870.757332px;}
.y54_c01056{bottom:871.464601px;}
.y53_c01056{bottom:872.413192px;}
.y52_c01056{bottom:874.506021px;}
.y51_c01056{bottom:876.133311px;}
.y50_c01056{bottom:877.296480px;}
.y4f_c01056{bottom:877.993732px;}
.y4e_c01056{bottom:880.556478px;}
.y4d_c01056{bottom:881.016000px;}
.y4c_c01056{bottom:916.384500px;}
.y4b_c01056{bottom:943.457745px;}
.y4a_c01056{bottom:944.101807px;}
.y49_c01056{bottom:944.616225px;}
.y48_c01056{bottom:945.625530px;}
.y47_c01056{bottom:946.772827px;}
.y46_c01056{bottom:947.776800px;}
.y45_c01056{bottom:948.099720px;}
.y44_c01056{bottom:948.943290px;}
.y43_c01056{bottom:949.429042px;}
.y42_c01056{bottom:950.571142px;}
.y41_c01056{bottom:951.088867px;}
.y40_c01056{bottom:951.753000px;}
.y3f_c01056{bottom:975.662103px;}
.y3e_c01056{bottom:977.473668px;}
.y3d_c01056{bottom:978.871647px;}
.y3c_c01056{bottom:979.686345px;}
.y3b_c01056{bottom:980.303565px;}
.y3a_c01056{bottom:981.481251px;}
.y39_c01056{bottom:981.897915px;}
.y38_c01056{bottom:982.871589px;}
.y37_c01056{bottom:984.072090px;}
.y36_c01056{bottom:984.655209px;}
.y35_c01056{bottom:985.845639px;}
.y34_c01056{bottom:987.213000px;}
.y33_c01056{bottom:1013.701929px;}
.y32_c01056{bottom:1015.042531px;}
.y31_c01056{bottom:1015.540249px;}
.y30_c01056{bottom:1016.544987px;}
.y2f_c01056{bottom:1017.042790px;}
.y2e_c01056{bottom:1018.878393px;}
.y2d_c01056{bottom:1019.368309px;}
.y2c_c01056{bottom:1020.856245px;}
.y2b_c01056{bottom:1021.195113px;}
.y2a_c01056{bottom:1022.673747px;}
.y29_c01056{bottom:1023.013527px;}
.y28_c01056{bottom:1049.576395px;}
.y27_c01056{bottom:1050.754785px;}
.y26_c01056{bottom:1051.404054px;}
.y25_c01056{bottom:1052.080108px;}
.y24_c01056{bottom:1053.081301px;}
.y23_c01056{bottom:1053.561450px;}
.y22_c01056{bottom:1054.578891px;}
.y21_c01056{bottom:1055.588398px;}
.y20_c01056{bottom:1056.876495px;}
.y1f_c01056{bottom:1057.714791px;}
.y1e_c01056{bottom:1058.067046px;}
.y1d_c01056{bottom:1059.201130px;}
.y1c_c01056{bottom:1085.156824px;}
.y1b_c01056{bottom:1085.634274px;}
.y1a_c01056{bottom:1086.095134px;}
.y19_c01056{bottom:1087.679646px;}
.y18_c01056{bottom:1088.748337px;}
.y17_c01056{bottom:1089.221085px;}
.y16_c01056{bottom:1089.693537px;}
.y15_c01056{bottom:1090.313056px;}
.y14_c01056{bottom:1091.853021px;}
.y13_c01056{bottom:1092.324999px;}
.y12_c01056{bottom:1092.778456px;}
.y11_c01056{bottom:1094.306106px;}
.y10_c01056{bottom:1118.413171px;}
.yf_c01056{bottom:1119.049662px;}
.ye_c01056{bottom:1119.911730px;}
.yd_c01056{bottom:1121.192663px;}
.yc_c01056{bottom:1123.293056px;}
.yb_c01056{bottom:1123.908826px;}
.ya_c01056{bottom:1124.550048px;}
.y9_c01056{bottom:1125.822544px;}
.y8_c01056{bottom:1126.443360px;}
.y7_c01056{bottom:1127.905638px;}
.y6_c01056{bottom:1128.557519px;}
.y5_c01056{bottom:1128.974530px;}
.y4_c01056{bottom:1130.409021px;}
.y3_c01056{bottom:1131.033000px;}
.y2_c01056{bottom:1200.027000px;}
.y1_c01056{bottom:1241.589000px;}
.h2_c01056{height:24.000000px;}
.h13_c01056{height:36.000000px;}
.h9_c01056{height:66.000000px;}
.h12_c01056{height:72.010403px;}
.h5_c01056{height:72.012995px;}
.hf_c01056{height:72.014399px;}
.ha_c01056{height:72.015874px;}
.h11_c01056{height:72.034588px;}
.h17_c01056{height:78.000000px;}
.h8_c01056{height:78.008775px;}
.h7_c01056{height:78.012635px;}
.h4_c01056{height:78.014078px;}
.h16_c01056{height:78.020628px;}
.h14_c01056{height:84.000000px;}
.he_c01056{height:84.012137px;}
.h6_c01056{height:84.015161px;}
.h15_c01056{height:84.018520px;}
.h18_c01056{height:84.035315px;}
.h10_c01056{height:84.040352px;}
.hd_c01056{height:90.019843px;}
.h3_c01056{height:96.000000px;}
.hc_c01056{height:96.021166px;}
.hb_c01056{height:102.022489px;}
.h0_c01056{height:1246.320000px;}
.h1_c01056{height:1246.500000px;}
.w0_c01056{width:900.450000px;}
.w1_c01056{width:900.750000px;}
.x0_c01056{left:0.000000px;}
.xb4_c01056{left:139.410000px;}
.x7a_c01056{left:144.063000px;}
.x6a_c01056{left:149.620500px;}
.xe3_c01056{left:151.024500px;}
.xcb_c01056{left:152.774951px;}
.x85_c01056{left:154.109106px;}
.xa2_c01056{left:155.250000px;}
.x72_c01056{left:157.420500px;}
.x46_c01056{left:158.555406px;}
.x32_c01056{left:160.750500px;}
.x1b_c01056{left:162.886493px;}
.x5_c01056{left:164.811000px;}
.x47_c01056{left:181.416434px;}
.x24_c01056{left:184.747111px;}
.xbc_c01056{left:188.440500px;}
.x5f_c01056{left:192.157788px;}
.x3c_c01056{left:193.590000px;}
.x6_c01056{left:197.652000px;}
.x86_c01056{left:201.097602px;}
.x5a_c01056{left:202.461149px;}
.x33_c01056{left:205.026000px;}
.xb5_c01056{left:209.989500px;}
.x73_c01056{left:212.544000px;}
.x48_c01056{left:215.680209px;}
.xa3_c01056{left:222.210000px;}
.x7b_c01056{left:223.591500px;}
.x6b_c01056{left:225.241500px;}
.xd2_c01056{left:229.398401px;}
.xe0_c01056{left:232.071000px;}
.x99_c01056{left:234.090000px;}
.x87_c01056{left:235.153180px;}
.x51_c01056{left:236.500622px;}
.x1c_c01056{left:238.528250px;}
.x34_c01056{left:239.541000px;}
.xcc_c01056{left:242.155454px;}
.xab_c01056{left:244.363500px;}
.x5b_c01056{left:247.737149px;}
.xdc_c01056{left:251.596469px;}
.x7c_c01056{left:256.263000px;}
.x74_c01056{left:257.565000px;}
.xe1_c01056{left:259.621500px;}
.x1d_c01056{left:261.964517px;}
.xc1_c01056{left:264.011235px;}
.x9a_c01056{left:267.030000px;}
.x3d_c01056{left:269.980500px;}
.x7_c01056{left:273.151500px;}
.x6c_c01056{left:278.656500px;}
.x25_c01056{left:283.340607px;}
.xdd_c01056{left:284.940558px;}
.x88_c01056{left:289.428187px;}
.x3e_c01056{left:291.862500px;}
.x8_c01056{left:295.099500px;}
.xcd_c01056{left:297.976260px;}
.x12_c01056{left:305.705658px;}
.xd3_c01056{left:307.396073px;}
.xac_c01056{left:308.794500px;}
.x8f_c01056{left:309.984000px;}
.x35_c01056{left:315.681000px;}
.x1e_c01056{left:317.852763px;}
.x7d_c01056{left:321.942000px;}
.x60_c01056{left:323.956788px;}
.x9_c01056{left:329.409000px;}
.xad_c01056{left:331.251000px;}
.x49_c01056{left:335.313189px;}
.x2c_c01056{left:337.492500px;}
.x13_c01056{left:339.470879px;}
.xa4_c01056{left:342.630000px;}
.x6d_c01056{left:344.866500px;}
.x52_c01056{left:346.171721px;}
.x36_c01056{left:348.064500px;}
.xe4_c01056{left:350.643000px;}
.xc6_c01056{left:351.815459px;}
.xe2_c01056{left:359.989500px;}
.xbd_c01056{left:364.470000px;}
.x9b_c01056{left:365.850000px;}
.x6e_c01056{left:367.182000px;}
.x98_c01056{left:370.170000px;}
.xd4_c01056{left:372.732320px;}
.xd8_c01056{left:373.930386px;}
.x7e_c01056{left:378.589500px;}
.x90_c01056{left:388.291500px;}
.x4a_c01056{left:391.464524px;}
.xce_c01056{left:396.257007px;}
.xb6_c01056{left:397.726500px;}
.x61_c01056{left:400.198788px;}
.x1f_c01056{left:403.732789px;}
.x26_c01056{left:405.076341px;}
.xa_c01056{left:406.371000px;}
.xae_c01056{left:409.905000px;}
.x75_c01056{left:412.314000px;}
.x3f_c01056{left:413.898000px;}
.xa5_c01056{left:419.850000px;}
.x91_c01056{left:421.236000px;}
.x62_c01056{left:422.839788px;}
.x4b_c01056{left:424.457831px;}
.x37_c01056{left:425.830500px;}
.xe5_c01056{left:428.440500px;}
.xbe_c01056{left:430.167000px;}
.x53_c01056{left:435.243969px;}
.x27_c01056{left:437.732320px;}
.xb_c01056{left:439.045500px;}
.x3_c01056{left:440.100000px;}
.xb7_c01056{left:442.779000px;}
.x40_c01056{left:447.100500px;}
.x14_c01056{left:449.426810px;}
.x89_c01056{left:454.493359px;}
.x2d_c01056{left:458.280000px;}
.xe6_c01056{left:460.564500px;}
.xaf_c01056{left:463.111500px;}
.x9c_c01056{left:465.750000px;}
.x6f_c01056{left:466.890000px;}
.x54_c01056{left:468.251355px;}
.x20_c01056{left:471.080420px;}
.x1_c01056{left:481.680000px;}
.xd5_c01056{left:483.004428px;}
.xc7_c01056{left:484.710141px;}
.x7f_c01056{left:488.206500px;}
.x55_c01056{left:491.197832px;}
.x15_c01056{left:493.721528px;}
.xc2_c01056{left:495.419235px;}
.x63_c01056{left:501.391788px;}
.x41_c01056{left:502.489500px;}
.xd9_c01056{left:505.473899px;}
.x4_c01056{left:506.520000px;}
.xa6_c01056{left:508.410000px;}
.xc8_c01056{left:517.927445px;}
.x80_c01056{left:521.526000px;}
.x2_c01056{left:525.960000px;}
.x16_c01056{left:527.432720px;}
.xde_c01056{left:528.473196px;}
.x9d_c01056{left:531.090000px;}
.x8a_c01056{left:533.150143px;}
.x4c_c01056{left:534.239031px;}
.xc_c01056{left:539.767500px;}
.xc3_c01056{left:540.797235px;}
.x76_c01056{left:543.556500px;}
.x2e_c01056{left:546.855000px;}
.xa7_c01056{left:552.690000px;}
.x5c_c01056{left:555.109649px;}
.x28_c01056{left:560.089111px;}
.x17_c01056{left:561.238440px;}
.xb8_c01056{left:562.426500px;}
.xb0_c01056{left:563.563500px;}
.x92_c01056{left:565.441500px;}
.x81_c01056{left:566.688000px;}
.x64_c01056{left:567.825288px;}
.x38_c01056{left:569.248500px;}
.x21_c01056{left:570.908501px;}
.xd_c01056{left:572.176500px;}
.xc4_c01056{left:574.005735px;}
.x8b_c01056{left:576.045244px;}
.x42_c01056{left:579.979500px;}
.x2f_c01056{left:581.145000px;}
.xda_c01056{left:583.528175px;}
.x5d_c01056{left:588.594149px;}
.x29_c01056{left:593.318148px;}
.x93_c01056{left:599.241000px;}
.xcf_c01056{left:605.543430px;}
.xb1_c01056{left:608.620500px;}
.x56_c01056{left:611.865903px;}
.xa8_c01056{left:619.110000px;}
.x70_c01056{left:622.423500px;}
.x4d_c01056{left:623.434673px;}
.x30_c01056{left:626.406000px;}
.xdf_c01056{left:627.592217px;}
.x9e_c01056{left:631.530000px;}
.x39_c01056{left:636.535500px;}
.x18_c01056{left:637.624208px;}
.x94_c01056{left:642.138000px;}
.x5e_c01056{left:643.960648px;}
.x65_c01056{left:645.061788px;}
.xd0_c01056{left:650.689650px;}
.x8c_c01056{left:653.569156px;}
.x77_c01056{left:655.141500px;}
.x71_c01056{left:656.722500px;}
.x2a_c01056{left:660.335750px;}
.xc5_c01056{left:662.378235px;}
.x3a_c01056{left:670.830000px;}
.xc9_c01056{left:672.719423px;}
.xb9_c01056{left:674.251500px;}
.x82_c01056{left:676.261500px;}
.x66_c01056{left:677.472288px;}
.x43_c01056{left:679.638000px;}
.xe_c01056{left:682.723500px;}
.x9f_c01056{left:686.610000px;}
.x78_c01056{left:688.576500px;}
.x57_c01056{left:690.185679px;}
.x2b_c01056{left:693.560286px;}
.x4e_c01056{left:702.031535px;}
.x31_c01056{left:704.071500px;}
.xa9_c01056{left:707.400000px;}
.x3b_c01056{left:713.767500px;}
.xb2_c01056{left:718.083000px;}
.xbf_c01056{left:719.116500px;}
.x95_c01056{left:720.532500px;}
.x58_c01056{left:723.743597px;}
.x44_c01056{left:724.809000px;}
.x22_c01056{left:725.973771px;}
.x8d_c01056{left:731.168115px;}
.x83_c01056{left:732.183000px;}
.x4f_c01056{left:734.711342px;}
.xd6_c01056{left:739.781109px;}
.xb3_c01056{left:742.596000px;}
.x67_c01056{left:745.284288px;}
.xf_c01056{left:750.141000px;}
.xca_c01056{left:751.366538px;}
.xba_c01056{left:753.108000px;}
.x59_c01056{left:756.368451px;}
.x45_c01056{left:758.488500px;}
.xdb_c01056{left:761.078640px;}
.x79_c01056{left:766.423500px;}
.xd1_c01056{left:772.228944px;}
.x96_c01056{left:775.902000px;}
.x84_c01056{left:777.276000px;}
.x68_c01056{left:778.425288px;}
.x19_c01056{left:783.736587px;}
.x10_c01056{left:795.513000px;}
.xa0_c01056{left:798.390000px;}
.x23_c01056{left:804.500227px;}
.xbb_c01056{left:808.939500px;}
.x69_c01056{left:811.437288px;}
.x50_c01056{left:813.608172px;}
.x1a_c01056{left:817.789808px;}
.xc0_c01056{left:819.378000px;}
.x97_c01056{left:820.747500px;}
.x8e_c01056{left:821.922037px;}
.x11_c01056{left:829.012500px;}
.xaa_c01056{left:831.600000px;}
.xa1_c01056{left:832.950000px;}
.xd7_c01056{left:838.675635px;}
@media print{
.v0_c01056{vertical-align:0.000000pt;}
.ls0_c01056{letter-spacing:0.000000pt;}
.ws0_c01056{word-spacing:0.000000pt;}
.fs0_c01056{font-size:21.333333pt;}
.fs11_c01056{font-size:32.000000pt;}
.fs7_c01056{font-size:58.666667pt;}
.fs10_c01056{font-size:64.009247pt;}
.fs3_c01056{font-size:64.011551pt;}
.fsd_c01056{font-size:64.012799pt;}
.fs8_c01056{font-size:64.014110pt;}
.fsf_c01056{font-size:64.030745pt;}
.fs15_c01056{font-size:69.333333pt;}
.fs6_c01056{font-size:69.341133pt;}
.fs5_c01056{font-size:69.344564pt;}
.fs2_c01056{font-size:69.345847pt;}
.fs14_c01056{font-size:69.351670pt;}
.fs12_c01056{font-size:74.666667pt;}
.fsc_c01056{font-size:74.677455pt;}
.fs4_c01056{font-size:74.680143pt;}
.fs13_c01056{font-size:74.683129pt;}
.fs16_c01056{font-size:74.698057pt;}
.fse_c01056{font-size:74.702535pt;}
.fsb_c01056{font-size:80.017638pt;}
.fs1_c01056{font-size:85.333333pt;}
.fsa_c01056{font-size:85.352147pt;}
.fs9_c01056{font-size:90.686656pt;}
.y0_c01056{bottom:0.000000pt;}
.y13c_c01056{bottom:57.730132pt;}
.y13b_c01056{bottom:59.199504pt;}
.y13a_c01056{bottom:60.912747pt;}
.y139_c01056{bottom:61.740832pt;}
.y138_c01056{bottom:62.333205pt;}
.y137_c01056{bottom:63.182364pt;}
.y136_c01056{bottom:63.746279pt;}
.y135_c01056{bottom:65.759111pt;}
.y134_c01056{bottom:66.594349pt;}
.y133_c01056{bottom:68.027297pt;}
.y132_c01056{bottom:68.892000pt;}
.y131_c01056{bottom:92.610667pt;}
.y130_c01056{bottom:93.038667pt;}
.y12f_c01056{bottom:93.418667pt;}
.y12e_c01056{bottom:93.925333pt;}
.y12d_c01056{bottom:94.573333pt;}
.y12c_c01056{bottom:95.112000pt;}
.y12b_c01056{bottom:95.966667pt;}
.y12a_c01056{bottom:96.742667pt;}
.y129_c01056{bottom:114.717333pt;}
.y128_c01056{bottom:135.460757pt;}
.y127_c01056{bottom:136.443219pt;}
.y126_c01056{bottom:137.726533pt;}
.y125_c01056{bottom:140.634555pt;}
.y124_c01056{bottom:141.323085pt;}
.y123_c01056{bottom:143.273827pt;}
.y122_c01056{bottom:145.199611pt;}
.y121_c01056{bottom:147.778976pt;}
.y120_c01056{bottom:148.757556pt;}
.y11f_c01056{bottom:151.652348pt;}
.y11e_c01056{bottom:168.007900pt;}
.y11d_c01056{bottom:168.586927pt;}
.y11c_c01056{bottom:169.494559pt;}
.y11b_c01056{bottom:171.006036pt;}
.y11a_c01056{bottom:172.324321pt;}
.y119_c01056{bottom:174.546364pt;}
.y118_c01056{bottom:175.669329pt;}
.y117_c01056{bottom:176.989687pt;}
.y116_c01056{bottom:177.537909pt;}
.y115_c01056{bottom:178.291739pt;}
.y114_c01056{bottom:196.879455pt;}
.y113_c01056{bottom:198.455877pt;}
.y112_c01056{bottom:199.253719pt;}
.y111_c01056{bottom:201.164491pt;}
.y110_c01056{bottom:202.755536pt;}
.y10f_c01056{bottom:204.873387pt;}
.y10e_c01056{bottom:205.415487pt;}
.y10d_c01056{bottom:208.062159pt;}
.y10c_c01056{bottom:208.846833pt;}
.y10b_c01056{bottom:209.631256pt;}
.y10a_c01056{bottom:211.503396pt;}
.y109_c01056{bottom:213.342084pt;}
.y108_c01056{bottom:230.782191pt;}
.y107_c01056{bottom:233.483115pt;}
.y106_c01056{bottom:234.485915pt;}
.y105_c01056{bottom:235.204177pt;}
.y104_c01056{bottom:238.388519pt;}
.y103_c01056{bottom:239.136923pt;}
.y102_c01056{bottom:241.320984pt;}
.y101_c01056{bottom:242.561727pt;}
.y100_c01056{bottom:244.547636pt;}
.yff_c01056{bottom:265.518763pt;}
.yfe_c01056{bottom:266.253525pt;}
.yfd_c01056{bottom:266.706719pt;}
.yfc_c01056{bottom:267.507791pt;}
.yfb_c01056{bottom:268.536173pt;}
.yfa_c01056{bottom:269.046593pt;}
.yf9_c01056{bottom:269.547931pt;}
.yf8_c01056{bottom:270.366965pt;}
.yf7_c01056{bottom:271.555089pt;}
.yf6_c01056{bottom:272.097997pt;}
.yf5_c01056{bottom:274.036305pt;}
.yf4_c01056{bottom:274.549805pt;}
.yf3_c01056{bottom:293.825760pt;}
.yf2_c01056{bottom:295.707164pt;}
.yf1_c01056{bottom:296.746244pt;}
.yf0_c01056{bottom:298.395864pt;}
.yef_c01056{bottom:299.015756pt;}
.yee_c01056{bottom:299.862812pt;}
.yed_c01056{bottom:300.477776pt;}
.yec_c01056{bottom:301.697624pt;}
.yeb_c01056{bottom:304.182428pt;}
.yea_c01056{bottom:304.962620pt;}
.ye9_c01056{bottom:306.238300pt;}
.ye8_c01056{bottom:326.243209pt;}
.ye7_c01056{bottom:326.691769pt;}
.ye6_c01056{bottom:328.114757pt;}
.ye5_c01056{bottom:328.962345pt;}
.ye4_c01056{bottom:330.187429pt;}
.ye3_c01056{bottom:331.634217pt;}
.ye2_c01056{bottom:332.889541pt;}
.ye1_c01056{bottom:333.508481pt;}
.ye0_c01056{bottom:334.734825pt;}
.ydf_c01056{bottom:335.360065pt;}
.yde_c01056{bottom:338.020709pt;}
.ydd_c01056{bottom:338.645333pt;}
.ydc_c01056{bottom:355.947372pt;}
.ydb_c01056{bottom:356.395841pt;}
.yda_c01056{bottom:357.537285pt;}
.yd9_c01056{bottom:359.149463pt;}
.yd8_c01056{bottom:361.435663pt;}
.yd7_c01056{bottom:362.091745pt;}
.yd6_c01056{bottom:363.881789pt;}
.yd5_c01056{bottom:364.802863pt;}
.yd4_c01056{bottom:367.857539pt;}
.yd3_c01056{bottom:368.641041pt;}
.yd2_c01056{bottom:369.743232pt;}
.yd1_c01056{bottom:370.084000pt;}
.yd0_c01056{bottom:390.811061pt;}
.ycf_c01056{bottom:391.268637pt;}
.yce_c01056{bottom:393.311937pt;}
.ycd_c01056{bottom:394.153001pt;}
.ycc_c01056{bottom:394.773005pt;}
.ycb_c01056{bottom:396.028105pt;}
.yca_c01056{bottom:397.021293pt;}
.yc9_c01056{bottom:398.489501pt;}
.yc8_c01056{bottom:398.908689pt;}
.yc7_c01056{bottom:400.111401pt;}
.yc6_c01056{bottom:400.717125pt;}
.yc5_c01056{bottom:401.765333pt;}
.yc4_c01056{bottom:431.918667pt;}
.yc3_c01056{bottom:466.666667pt;}
.yc2_c01056{bottom:474.480000pt;}
.yc1_c01056{bottom:487.256493pt;}
.yc0_c01056{bottom:487.934159pt;}
.ybf_c01056{bottom:488.770853pt;}
.ybe_c01056{bottom:489.955481pt;}
.ybd_c01056{bottom:490.603703pt;}
.ybc_c01056{bottom:491.114451pt;}
.ybb_c01056{bottom:492.779340pt;}
.yba_c01056{bottom:493.293556pt;}
.yb9_c01056{bottom:493.791384pt;}
.yb8_c01056{bottom:494.974697pt;}
.yb7_c01056{bottom:496.284604pt;}
.yb6_c01056{bottom:497.284000pt;}
.yb5_c01056{bottom:517.312844pt;}
.yb4_c01056{bottom:518.926100pt;}
.yb3_c01056{bottom:520.304987pt;}
.yb2_c01056{bottom:521.683140pt;}
.yb1_c01056{bottom:522.446069pt;}
.yb0_c01056{bottom:523.844763pt;}
.yaf_c01056{bottom:524.421645pt;}
.yae_c01056{bottom:526.184745pt;}
.yad_c01056{bottom:526.781011pt;}
.yac_c01056{bottom:527.745412pt;}
.yab_c01056{bottom:528.351513pt;}
.yaa_c01056{bottom:529.187200pt;}
.ya9_c01056{bottom:550.874131pt;}
.ya8_c01056{bottom:552.116693pt;}
.ya7_c01056{bottom:553.657641pt;}
.ya6_c01056{bottom:554.569248pt;}
.ya5_c01056{bottom:556.677000pt;}
.ya4_c01056{bottom:557.921464pt;}
.ya3_c01056{bottom:558.839601pt;}
.ya2_c01056{bottom:560.639668pt;}
.ya1_c01056{bottom:561.860159pt;}
.ya0_c01056{bottom:563.421112pt;}
.y9f_c01056{bottom:565.230933pt;}
.y9e_c01056{bottom:566.131215pt;}
.y9d_c01056{bottom:568.322667pt;}
.y9c_c01056{bottom:581.909867pt;}
.y9b_c01056{bottom:582.697280pt;}
.y9a_c01056{bottom:584.081227pt;}
.y99_c01056{bottom:584.675627pt;}
.y98_c01056{bottom:586.659360pt;}
.y97_c01056{bottom:588.017787pt;}
.y96_c01056{bottom:588.382027pt;}
.y95_c01056{bottom:588.992560pt;}
.y94_c01056{bottom:590.375547pt;}
.y93_c01056{bottom:591.743653pt;}
.y92_c01056{bottom:592.544027pt;}
.y91_c01056{bottom:593.524000pt;}
.y90_c01056{bottom:614.229300pt;}
.y8f_c01056{bottom:615.074993pt;}
.y8e_c01056{bottom:616.581125pt;}
.y8d_c01056{bottom:617.099421pt;}
.y8c_c01056{bottom:619.449705pt;}
.y8b_c01056{bottom:620.956404pt;}
.y8a_c01056{bottom:621.293616pt;}
.y89_c01056{bottom:622.294123pt;}
.y88_c01056{bottom:623.101283pt;}
.y87_c01056{bottom:624.244000pt;}
.y86_c01056{bottom:645.164448pt;}
.y85_c01056{bottom:645.780672pt;}
.y84_c01056{bottom:646.399304pt;}
.y83_c01056{bottom:647.665128pt;}
.y82_c01056{bottom:648.270124pt;}
.y81_c01056{bottom:649.711872pt;}
.y80_c01056{bottom:650.352456pt;}
.y7f_c01056{bottom:650.951964pt;}
.y7e_c01056{bottom:652.418268pt;}
.y7d_c01056{bottom:652.840900pt;}
.y7c_c01056{bottom:654.264084pt;}
.y7b_c01056{bottom:654.873896pt;}
.y7a_c01056{bottom:656.724332pt;}
.y79_c01056{bottom:657.336748pt;}
.y78_c01056{bottom:677.629863pt;}
.y77_c01056{bottom:679.727203pt;}
.y76_c01056{bottom:680.760711pt;}
.y75_c01056{bottom:681.385755pt;}
.y74_c01056{bottom:683.628471pt;}
.y73_c01056{bottom:685.478683pt;}
.y72_c01056{bottom:687.123375pt;}
.y71_c01056{bottom:687.968527pt;}
.y70_c01056{bottom:688.783551pt;}
.y6f_c01056{bottom:708.468151pt;}
.y6e_c01056{bottom:709.422939pt;}
.y6d_c01056{bottom:709.974577pt;}
.y6c_c01056{bottom:710.540965pt;}
.y6b_c01056{bottom:711.864207pt;}
.y6a_c01056{bottom:712.415660pt;}
.y69_c01056{bottom:713.901916pt;}
.y68_c01056{bottom:714.288899pt;}
.y67_c01056{bottom:714.846344pt;}
.y66_c01056{bottom:715.601864pt;}
.y65_c01056{bottom:716.350289pt;}
.y64_c01056{bottom:718.202731pt;}
.y63_c01056{bottom:718.921847pt;}
.y62_c01056{bottom:719.511916pt;}
.y61_c01056{bottom:740.547321pt;}
.y60_c01056{bottom:742.090760pt;}
.y5f_c01056{bottom:742.730129pt;}
.y5e_c01056{bottom:744.266635pt;}
.y5d_c01056{bottom:746.010321pt;}
.y5c_c01056{bottom:748.156947pt;}
.y5b_c01056{bottom:748.802168pt;}
.y5a_c01056{bottom:749.899681pt;}
.y59_c01056{bottom:751.182228pt;}
.y58_c01056{bottom:752.239544pt;}
.y57_c01056{bottom:752.909815pt;}
.y56_c01056{bottom:753.356563pt;}
.y55_c01056{bottom:774.006517pt;}
.y54_c01056{bottom:774.635201pt;}
.y53_c01056{bottom:775.478393pt;}
.y52_c01056{bottom:777.338685pt;}
.y51_c01056{bottom:778.785165pt;}
.y50_c01056{bottom:779.819093pt;}
.y4f_c01056{bottom:780.438873pt;}
.y4e_c01056{bottom:782.716869pt;}
.y4d_c01056{bottom:783.125333pt;}
.y4c_c01056{bottom:814.564000pt;}
.y4b_c01056{bottom:838.629107pt;}
.y4a_c01056{bottom:839.201607pt;}
.y49_c01056{bottom:839.658867pt;}
.y48_c01056{bottom:840.556027pt;}
.y47_c01056{bottom:841.575847pt;}
.y46_c01056{bottom:842.468267pt;}
.y45_c01056{bottom:842.755307pt;}
.y44_c01056{bottom:843.505147pt;}
.y43_c01056{bottom:843.936927pt;}
.y42_c01056{bottom:844.952127pt;}
.y41_c01056{bottom:845.412327pt;}
.y40_c01056{bottom:846.002667pt;}
.y3f_c01056{bottom:867.255203pt;}
.y3e_c01056{bottom:868.865483pt;}
.y3d_c01056{bottom:870.108131pt;}
.y3c_c01056{bottom:870.832307pt;}
.y3b_c01056{bottom:871.380947pt;}
.y3a_c01056{bottom:872.427779pt;}
.y39_c01056{bottom:872.798147pt;}
.y38_c01056{bottom:873.663635pt;}
.y37_c01056{bottom:874.730747pt;}
.y36_c01056{bottom:875.249075pt;}
.y35_c01056{bottom:876.307235pt;}
.y34_c01056{bottom:877.522667pt;}
.y33_c01056{bottom:901.068381pt;}
.y32_c01056{bottom:902.260028pt;}
.y31_c01056{bottom:902.702444pt;}
.y30_c01056{bottom:903.595544pt;}
.y2f_c01056{bottom:904.038036pt;}
.y2e_c01056{bottom:905.669683pt;}
.y2d_c01056{bottom:906.105164pt;}
.y2c_c01056{bottom:907.427773pt;}
.y2b_c01056{bottom:907.728989pt;}
.y2a_c01056{bottom:909.043331pt;}
.y29_c01056{bottom:909.345357pt;}
.y28_c01056{bottom:932.956796pt;}
.y27_c01056{bottom:934.004253pt;}
.y26_c01056{bottom:934.581381pt;}
.y25_c01056{bottom:935.182319pt;}
.y24_c01056{bottom:936.072268pt;}
.y23_c01056{bottom:936.499067pt;}
.y22_c01056{bottom:937.403459pt;}
.y21_c01056{bottom:938.300799pt;}
.y20_c01056{bottom:939.445773pt;}
.y1f_c01056{bottom:940.190925pt;}
.y1e_c01056{bottom:940.504041pt;}
.y1d_c01056{bottom:941.512116pt;}
.y1c_c01056{bottom:964.583844pt;}
.y1b_c01056{bottom:965.008244pt;}
.y1a_c01056{bottom:965.417897pt;}
.y19_c01056{bottom:966.826352pt;}
.y18_c01056{bottom:967.776300pt;}
.y17_c01056{bottom:968.196520pt;}
.y16_c01056{bottom:968.616477pt;}
.y15_c01056{bottom:969.167161pt;}
.y14_c01056{bottom:970.536019pt;}
.y13_c01056{bottom:970.955555pt;}
.y12_c01056{bottom:971.358628pt;}
.y11_c01056{bottom:972.716539pt;}
.y10_c01056{bottom:994.145041pt;}
.yf_c01056{bottom:994.710811pt;}
.ye_c01056{bottom:995.477093pt;}
.yd_c01056{bottom:996.615700pt;}
.yc_c01056{bottom:998.482716pt;}
.yb_c01056{bottom:999.030068pt;}
.ya_c01056{bottom:999.600043pt;}
.y9_c01056{bottom:1000.731151pt;}
.y8_c01056{bottom:1001.282987pt;}
.y7_c01056{bottom:1002.582789pt;}
.y6_c01056{bottom:1003.162239pt;}
.y5_c01056{bottom:1003.532916pt;}
.y4_c01056{bottom:1004.808019pt;}
.y3_c01056{bottom:1005.362667pt;}
.y2_c01056{bottom:1066.690667pt;}
.y1_c01056{bottom:1103.634667pt;}
.h2_c01056{height:21.333333pt;}
.h13_c01056{height:32.000000pt;}
.h9_c01056{height:58.666667pt;}
.h12_c01056{height:64.009247pt;}
.h5_c01056{height:64.011551pt;}
.hf_c01056{height:64.012799pt;}
.ha_c01056{height:64.014110pt;}
.h11_c01056{height:64.030745pt;}
.h17_c01056{height:69.333333pt;}
.h8_c01056{height:69.341133pt;}
.h7_c01056{height:69.344564pt;}
.h4_c01056{height:69.345847pt;}
.h16_c01056{height:69.351670pt;}
.h14_c01056{height:74.666667pt;}
.he_c01056{height:74.677455pt;}
.h6_c01056{height:74.680143pt;}
.h15_c01056{height:74.683129pt;}
.h18_c01056{height:74.698057pt;}
.h10_c01056{height:74.702535pt;}
.hd_c01056{height:80.017638pt;}
.h3_c01056{height:85.333333pt;}
.hc_c01056{height:85.352147pt;}
.hb_c01056{height:90.686656pt;}
.h0_c01056{height:1107.840000pt;}
.h1_c01056{height:1108.000000pt;}
.w0_c01056{width:800.400000pt;}
.w1_c01056{width:800.666667pt;}
.x0_c01056{left:0.000000pt;}
.xb4_c01056{left:123.920000pt;}
.x7a_c01056{left:128.056000pt;}
.x6a_c01056{left:132.996000pt;}
.xe3_c01056{left:134.244000pt;}
.xcb_c01056{left:135.799956pt;}
.x85_c01056{left:136.985872pt;}
.xa2_c01056{left:138.000000pt;}
.x72_c01056{left:139.929333pt;}
.x46_c01056{left:140.938139pt;}
.x32_c01056{left:142.889333pt;}
.x1b_c01056{left:144.787993pt;}
.x5_c01056{left:146.498667pt;}
.x47_c01056{left:161.259052pt;}
.x24_c01056{left:164.219655pt;}
.xbc_c01056{left:167.502667pt;}
.x5f_c01056{left:170.806923pt;}
.x3c_c01056{left:172.080000pt;}
.x6_c01056{left:175.690667pt;}
.x86_c01056{left:178.753424pt;}
.x5a_c01056{left:179.965465pt;}
.x33_c01056{left:182.245333pt;}
.xb5_c01056{left:186.657333pt;}
.x73_c01056{left:188.928000pt;}
.x48_c01056{left:191.715741pt;}
.xa3_c01056{left:197.520000pt;}
.x7b_c01056{left:198.748000pt;}
.x6b_c01056{left:200.214667pt;}
.xd2_c01056{left:203.909689pt;}
.xe0_c01056{left:206.285333pt;}
.x99_c01056{left:208.080000pt;}
.x87_c01056{left:209.025049pt;}
.x51_c01056{left:210.222775pt;}
.x1c_c01056{left:212.025111pt;}
.x34_c01056{left:212.925333pt;}
.xcc_c01056{left:215.249292pt;}
.xab_c01056{left:217.212000pt;}
.x5b_c01056{left:220.210799pt;}
.xdc_c01056{left:223.641305pt;}
.x7c_c01056{left:227.789333pt;}
.x74_c01056{left:228.946667pt;}
.xe1_c01056{left:230.774667pt;}
.x1d_c01056{left:232.857348pt;}
.xc1_c01056{left:234.676653pt;}
.x9a_c01056{left:237.360000pt;}
.x3d_c01056{left:239.982667pt;}
.x7_c01056{left:242.801333pt;}
.x6c_c01056{left:247.694667pt;}
.x25_c01056{left:251.858317pt;}
.xdd_c01056{left:253.280496pt;}
.x88_c01056{left:257.269500pt;}
.x3e_c01056{left:259.433333pt;}
.x8_c01056{left:262.310667pt;}
.xcd_c01056{left:264.867787pt;}
.x12_c01056{left:271.738363pt;}
.xd3_c01056{left:273.240953pt;}
.xac_c01056{left:274.484000pt;}
.x8f_c01056{left:275.541333pt;}
.x35_c01056{left:280.605333pt;}
.x1e_c01056{left:282.535789pt;}
.x7d_c01056{left:286.170667pt;}
.x60_c01056{left:287.961589pt;}
.x9_c01056{left:292.808000pt;}
.xad_c01056{left:294.445333pt;}
.x49_c01056{left:298.056168pt;}
.x2c_c01056{left:299.993333pt;}
.x13_c01056{left:301.751892pt;}
.xa4_c01056{left:304.560000pt;}
.x6d_c01056{left:306.548000pt;}
.x52_c01056{left:307.708196pt;}
.x36_c01056{left:309.390667pt;}
.xe4_c01056{left:311.682667pt;}
.xc6_c01056{left:312.724852pt;}
.xe2_c01056{left:319.990667pt;}
.xbd_c01056{left:323.973333pt;}
.x9b_c01056{left:325.200000pt;}
.x6e_c01056{left:326.384000pt;}
.x98_c01056{left:329.040000pt;}
.xd4_c01056{left:331.317617pt;}
.xd8_c01056{left:332.382565pt;}
.x7e_c01056{left:336.524000pt;}
.x90_c01056{left:345.148000pt;}
.x4a_c01056{left:347.968465pt;}
.xce_c01056{left:352.228451pt;}
.xb6_c01056{left:353.534667pt;}
.x61_c01056{left:355.732256pt;}
.x1f_c01056{left:358.873591pt;}
.x26_c01056{left:360.067859pt;}
.xa_c01056{left:361.218667pt;}
.xae_c01056{left:364.360000pt;}
.x75_c01056{left:366.501333pt;}
.x3f_c01056{left:367.909333pt;}
.xa5_c01056{left:373.200000pt;}
.x91_c01056{left:374.432000pt;}
.x62_c01056{left:375.857589pt;}
.x4b_c01056{left:377.295849pt;}
.x37_c01056{left:378.516000pt;}
.xe5_c01056{left:380.836000pt;}
.xbe_c01056{left:382.370667pt;}
.x53_c01056{left:386.883528pt;}
.x27_c01056{left:389.095396pt;}
.xb_c01056{left:390.262667pt;}
.x3_c01056{left:391.200000pt;}
.xb7_c01056{left:393.581333pt;}
.x40_c01056{left:397.422667pt;}
.x14_c01056{left:399.490497pt;}
.x89_c01056{left:403.994097pt;}
.x2d_c01056{left:407.360000pt;}
.xe6_c01056{left:409.390667pt;}
.xaf_c01056{left:411.654667pt;}
.x9c_c01056{left:414.000000pt;}
.x6f_c01056{left:415.013333pt;}
.x54_c01056{left:416.223427pt;}
.x20_c01056{left:418.738151pt;}
.x1_c01056{left:428.160000pt;}
.xd5_c01056{left:429.337269pt;}
.xc7_c01056{left:430.853459pt;}
.x7f_c01056{left:433.961333pt;}
.x55_c01056{left:436.620295pt;}
.x15_c01056{left:438.863580pt;}
.xc2_c01056{left:440.372653pt;}
.x63_c01056{left:445.681589pt;}
.x41_c01056{left:446.657333pt;}
.xd9_c01056{left:449.310132pt;}
.x4_c01056{left:450.240000pt;}
.xa6_c01056{left:451.920000pt;}
.xc8_c01056{left:460.379951pt;}
.x80_c01056{left:463.578667pt;}
.x2_c01056{left:467.520000pt;}
.x16_c01056{left:468.829084pt;}
.xde_c01056{left:469.753952pt;}
.x9d_c01056{left:472.080000pt;}
.x8a_c01056{left:473.911239pt;}
.x4c_c01056{left:474.879139pt;}
.xc_c01056{left:479.793333pt;}
.xc3_c01056{left:480.708653pt;}
.x76_c01056{left:483.161333pt;}
.x2e_c01056{left:486.093333pt;}
.xa7_c01056{left:491.280000pt;}
.x5c_c01056{left:493.430799pt;}
.x28_c01056{left:497.856988pt;}
.x17_c01056{left:498.878613pt;}
.xb8_c01056{left:499.934667pt;}
.xb0_c01056{left:500.945333pt;}
.x92_c01056{left:502.614667pt;}
.x81_c01056{left:503.722667pt;}
.x64_c01056{left:504.733589pt;}
.x38_c01056{left:505.998667pt;}
.x21_c01056{left:507.474223pt;}
.xd_c01056{left:508.601333pt;}
.xc4_c01056{left:510.227320pt;}
.x8b_c01056{left:512.040217pt;}
.x42_c01056{left:515.537333pt;}
.x2f_c01056{left:516.573333pt;}
.xda_c01056{left:518.691711pt;}
.x5d_c01056{left:523.194799pt;}
.x29_c01056{left:527.393909pt;}
.x93_c01056{left:532.658667pt;}
.xcf_c01056{left:538.260827pt;}
.xb1_c01056{left:540.996000pt;}
.x56_c01056{left:543.880803pt;}
.xa8_c01056{left:550.320000pt;}
.x70_c01056{left:553.265333pt;}
.x4d_c01056{left:554.164153pt;}
.x30_c01056{left:556.805333pt;}
.xdf_c01056{left:557.859748pt;}
.x9e_c01056{left:561.360000pt;}
.x39_c01056{left:565.809333pt;}
.x18_c01056{left:566.777073pt;}
.x94_c01056{left:570.789333pt;}
.x5e_c01056{left:572.409465pt;}
.x65_c01056{left:573.388256pt;}
.xd0_c01056{left:578.390800pt;}
.x8c_c01056{left:580.950361pt;}
.x77_c01056{left:582.348000pt;}
.x71_c01056{left:583.753333pt;}
.x2a_c01056{left:586.965111pt;}
.xc5_c01056{left:588.780653pt;}
.x3a_c01056{left:596.293333pt;}
.xc9_c01056{left:597.972820pt;}
.xb9_c01056{left:599.334667pt;}
.x82_c01056{left:601.121333pt;}
.x66_c01056{left:602.197589pt;}
.x43_c01056{left:604.122667pt;}
.xe_c01056{left:606.865333pt;}
.x9f_c01056{left:610.320000pt;}
.x78_c01056{left:612.068000pt;}
.x57_c01056{left:613.498381pt;}
.x2b_c01056{left:616.498032pt;}
.x4e_c01056{left:624.028031pt;}
.x31_c01056{left:625.841333pt;}
.xa9_c01056{left:628.800000pt;}
.x3b_c01056{left:634.460000pt;}
.xb2_c01056{left:638.296000pt;}
.xbf_c01056{left:639.214667pt;}
.x95_c01056{left:640.473333pt;}
.x58_c01056{left:643.327641pt;}
.x44_c01056{left:644.274667pt;}
.x22_c01056{left:645.310019pt;}
.x8d_c01056{left:649.927213pt;}
.x83_c01056{left:650.829333pt;}
.x4f_c01056{left:653.076748pt;}
.xd6_c01056{left:657.583208pt;}
.xb3_c01056{left:660.085333pt;}
.x67_c01056{left:662.474923pt;}
.xf_c01056{left:666.792000pt;}
.xca_c01056{left:667.881367pt;}
.xba_c01056{left:669.429333pt;}
.x59_c01056{left:672.327512pt;}
.x45_c01056{left:674.212000pt;}
.xdb_c01056{left:676.514347pt;}
.x79_c01056{left:681.265333pt;}
.xd1_c01056{left:686.425728pt;}
.x96_c01056{left:689.690667pt;}
.x84_c01056{left:690.912000pt;}
.x68_c01056{left:691.933589pt;}
.x19_c01056{left:696.654744pt;}
.x10_c01056{left:707.122667pt;}
.xa0_c01056{left:709.680000pt;}
.x23_c01056{left:715.111313pt;}
.xbb_c01056{left:719.057333pt;}
.x69_c01056{left:721.277589pt;}
.x50_c01056{left:723.207264pt;}
.x1a_c01056{left:726.924273pt;}
.xc0_c01056{left:728.336000pt;}
.x97_c01056{left:729.553333pt;}
.x8e_c01056{left:730.597367pt;}
.x11_c01056{left:736.900000pt;}
.xaa_c01056{left:739.200000pt;}
.xa1_c01056{left:740.400000pt;}
.xd7_c01056{left:745.489453pt;}
}





/* 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_c01057 {
    display:none;
  }
  .loading-indicator_c01057.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01057 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_c01057 { 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_c01057" -> "#page-container .classname_c01057")
 */
.pf_c01057 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01057 { /* 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_c01057.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01057 { /* 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_c01057 { /* 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_c01057 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01057 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01057 {overflow:visible;}
  }
}
.c_c01057 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01057 { /* 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_c01057:after { /* webkit #35443 */
  content: '';
}
.t_c01057:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01057 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 */
}
.__c01057 { /* 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_c01057 { /* info for Javascript */
  display:none;
}
.l_c01057 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01057 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01057 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01057: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_c01057 {
    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_c01057.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01057.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_c01057 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01057{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01057;src:url('chunks/assets/font_bfe6362fd3009c591583128f.woff2')format("woff");}.ff1_c01057{font-family:ff1_c01057;line-height:1.000000;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;}
.m6_c01057{transform:matrix(0.147735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147735,0.000000,0.000000,0.250000,0,0);}
.m2_c01057{transform:matrix(0.165965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165965,0.000000,0.000000,0.250000,0,0);}
.m3_c01057{transform:matrix(0.191265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191265,0.000000,0.000000,0.250000,0,0);}
.m1_c01057{transform:matrix(0.274660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274660,0.000000,0.000000,0.250000,0,0);}
.m5_c01057{transform:matrix(0.476470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.476470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.476470,0.000000,0.000000,0.250000,0,0);}
.m0_c01057{transform:matrix(0.516960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516960,0.000000,0.000000,0.250000,0,0);}
.m4_c01057{transform:matrix(0.589770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.589770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.589770,0.000000,0.000000,0.250000,0,0);}
.v0_c01057{vertical-align:0.000000px;}
.ls0_c01057{letter-spacing:0.000000px;}
.sc__c01057{text-shadow:none;}
.sc0_c01057{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__c01057{-webkit-text-stroke:0px transparent;}
.sc0_c01057{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01057{word-spacing:0.000000px;}
.fc0_c01057{color:transparent;}
.fs2_c01057{font-size:12.000000px;}
.fs1_c01057{font-size:138.000000px;}
.fs0_c01057{font-size:174.000000px;}
.y0_c01057{bottom:0.000000px;}
.y3_c01057{bottom:241.380000px;}
.y2_c01057{bottom:965.946000px;}
.y1_c01057{bottom:996.186000px;}
.h4_c01057{height:12.000000px;}
.h3_c01057{height:138.000000px;}
.h2_c01057{height:174.000000px;}
.h0_c01057{height:1246.320000px;}
.h1_c01057{height:1246.500000px;}
.w0_c01057{width:900.450000px;}
.w1_c01057{width:900.750000px;}
.x0_c01057{left:0.000000px;}
.x4_c01057{left:144.450000px;}
.x6_c01057{left:202.770000px;}
.x5_c01057{left:210.060000px;}
.x7_c01057{left:230.310000px;}
.x1_c01057{left:248.670000px;}
.x2_c01057{left:309.690000px;}
.x3_c01057{left:346.410000px;}
@media print{
.v0_c01057{vertical-align:0.000000pt;}
.ls0_c01057{letter-spacing:0.000000pt;}
.ws0_c01057{word-spacing:0.000000pt;}
.fs2_c01057{font-size:10.666667pt;}
.fs1_c01057{font-size:122.666667pt;}
.fs0_c01057{font-size:154.666667pt;}
.y0_c01057{bottom:0.000000pt;}
.y3_c01057{bottom:214.560000pt;}
.y2_c01057{bottom:858.618667pt;}
.y1_c01057{bottom:885.498667pt;}
.h4_c01057{height:10.666667pt;}
.h3_c01057{height:122.666667pt;}
.h2_c01057{height:154.666667pt;}
.h0_c01057{height:1107.840000pt;}
.h1_c01057{height:1108.000000pt;}
.w0_c01057{width:800.400000pt;}
.w1_c01057{width:800.666667pt;}
.x0_c01057{left:0.000000pt;}
.x4_c01057{left:128.400000pt;}
.x6_c01057{left:180.240000pt;}
.x5_c01057{left:186.720000pt;}
.x7_c01057{left:204.720000pt;}
.x1_c01057{left:221.040000pt;}
.x2_c01057{left:275.280000pt;}
.x3_c01057{left:307.920000pt;}
}





/* 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_c01058 {
    display:none;
  }
  .loading-indicator_c01058.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01058 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_c01058 { 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_c01058" -> "#page-container .classname_c01058")
 */
.pf_c01058 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01058 { /* 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_c01058.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01058 { /* 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_c01058 { /* 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_c01058 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01058 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01058 {overflow:visible;}
  }
}
.c_c01058 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01058 { /* 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_c01058:after { /* webkit #35443 */
  content: '';
}
.t_c01058:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01058 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 */
}
.__c01058 { /* 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_c01058 { /* info for Javascript */
  display:none;
}
.l_c01058 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01058 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01058 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01058: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_c01058 {
    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_c01058.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01058.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_c01058 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01058{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01058;src:url('chunks/assets/font_c3e4ad8bbd860aacb2f1cb75.woff2')format("woff");}.ff1_c01058{font-family:ff1_c01058;line-height:1.000000;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;}
.m19_c01058{transform:matrix(0.022707,0.001023,-0.011250,0.249747,0,0);-ms-transform:matrix(0.022707,0.001023,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.022707,0.001023,-0.011250,0.249747,0,0);}
.m0_c01058{transform:matrix(0.168594,0.007594,-0.011250,0.249747,0,0);-ms-transform:matrix(0.168594,0.007594,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.168594,0.007594,-0.011250,0.249747,0,0);}
.m22_c01058{transform:matrix(0.203084,0.009148,-0.011250,0.249747,0,0);-ms-transform:matrix(0.203084,0.009148,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.203084,0.009148,-0.011250,0.249747,0,0);}
.mb_c01058{transform:matrix(0.206691,0.011391,-0.013757,0.249621,0,0);-ms-transform:matrix(0.206691,0.011391,-0.013757,0.249621,0,0);-webkit-transform:matrix(0.206691,0.011391,-0.013757,0.249621,0,0);}
.m1f_c01058{transform:matrix(0.210182,0.009468,-0.011250,0.249747,0,0);-ms-transform:matrix(0.210182,0.009468,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.210182,0.009468,-0.011250,0.249747,0,0);}
.m18_c01058{transform:matrix(0.210456,0.010744,-0.012746,0.249675,0,0);-ms-transform:matrix(0.210456,0.010744,-0.012746,0.249675,0,0);-webkit-transform:matrix(0.210456,0.010744,-0.012746,0.249675,0,0);}
.m1b_c01058{transform:matrix(0.213394,0.009612,-0.011250,0.249747,0,0);-ms-transform:matrix(0.213394,0.009612,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.213394,0.009612,-0.011250,0.249747,0,0);}
.ma_c01058{transform:matrix(0.214759,0.011835,-0.013757,0.249621,0,0);-ms-transform:matrix(0.214759,0.011835,-0.013757,0.249621,0,0);-webkit-transform:matrix(0.214759,0.011835,-0.013757,0.249621,0,0);}
.m1e_c01058{transform:matrix(0.220332,0.009925,-0.011250,0.249747,0,0);-ms-transform:matrix(0.220332,0.009925,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.220332,0.009925,-0.011250,0.249747,0,0);}
.mc_c01058{transform:matrix(0.224684,0.012382,-0.013757,0.249621,0,0);-ms-transform:matrix(0.224684,0.012382,-0.013757,0.249621,0,0);-webkit-transform:matrix(0.224684,0.012382,-0.013757,0.249621,0,0);}
.m24_c01058{transform:matrix(0.224772,0.010125,-0.011250,0.249747,0,0);-ms-transform:matrix(0.224772,0.010125,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.224772,0.010125,-0.011250,0.249747,0,0);}
.m1c_c01058{transform:matrix(0.226800,0.010216,-0.011250,0.249747,0,0);-ms-transform:matrix(0.226800,0.010216,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.226800,0.010216,-0.011250,0.249747,0,0);}
.m3_c01058{transform:matrix(0.227874,0.010265,-0.011250,0.249747,0,0);-ms-transform:matrix(0.227874,0.010265,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.227874,0.010265,-0.011250,0.249747,0,0);}
.m23_c01058{transform:matrix(0.228643,0.010299,-0.011250,0.249747,0,0);-ms-transform:matrix(0.228643,0.010299,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.228643,0.010299,-0.011250,0.249747,0,0);}
.m2a_c01058{transform:matrix(0.232006,0.011380,-0.012248,0.249700,0,0);-ms-transform:matrix(0.232006,0.011380,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.232006,0.011380,-0.012248,0.249700,0,0);}
.m6_c01058{transform:matrix(0.233458,0.010516,-0.011250,0.249747,0,0);-ms-transform:matrix(0.233458,0.010516,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.233458,0.010516,-0.011250,0.249747,0,0);}
.m1d_c01058{transform:matrix(0.235301,0.010599,-0.011250,0.249747,0,0);-ms-transform:matrix(0.235301,0.010599,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.235301,0.010599,-0.011250,0.249747,0,0);}
.m1_c01058{transform:matrix(0.237384,0.010693,-0.011250,0.249747,0,0);-ms-transform:matrix(0.237384,0.010693,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.237384,0.010693,-0.011250,0.249747,0,0);}
.m2e_c01058{transform:matrix(0.237385,0.011643,-0.012248,0.249700,0,0);-ms-transform:matrix(0.237385,0.011643,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.237385,0.011643,-0.012248,0.249700,0,0);}
.m1a_c01058{transform:matrix(0.237434,0.010695,-0.011250,0.249747,0,0);-ms-transform:matrix(0.237434,0.010695,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.237434,0.010695,-0.011250,0.249747,0,0);}
.m25_c01058{transform:matrix(0.238233,0.010731,-0.011250,0.249747,0,0);-ms-transform:matrix(0.238233,0.010731,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.238233,0.010731,-0.011250,0.249747,0,0);}
.m21_c01058{transform:matrix(0.241935,0.010898,-0.011250,0.249747,0,0);-ms-transform:matrix(0.241935,0.010898,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.241935,0.010898,-0.011250,0.249747,0,0);}
.m29_c01058{transform:matrix(0.242464,0.011893,-0.012248,0.249700,0,0);-ms-transform:matrix(0.242464,0.011893,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.242464,0.011893,-0.012248,0.249700,0,0);}
.m27_c01058{transform:matrix(0.245510,0.012042,-0.012248,0.249700,0,0);-ms-transform:matrix(0.245510,0.012042,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.245510,0.012042,-0.012248,0.249700,0,0);}
.m20_c01058{transform:matrix(0.247094,0.011130,-0.011250,0.249747,0,0);-ms-transform:matrix(0.247094,0.011130,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.247094,0.011130,-0.011250,0.249747,0,0);}
.m17_c01058{transform:matrix(0.250803,0.012804,-0.012746,0.249675,0,0);-ms-transform:matrix(0.250803,0.012804,-0.012746,0.249675,0,0);-webkit-transform:matrix(0.250803,0.012804,-0.012746,0.249675,0,0);}
.m8_c01058{transform:matrix(0.252874,0.011391,-0.011250,0.249747,0,0);-ms-transform:matrix(0.252874,0.011391,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.252874,0.011391,-0.011250,0.249747,0,0);}
.m12_c01058{transform:matrix(0.255278,0.014068,-0.013757,0.249621,0,0);-ms-transform:matrix(0.255278,0.014068,-0.013757,0.249621,0,0);-webkit-transform:matrix(0.255278,0.014068,-0.013757,0.249621,0,0);}
.m16_c01058{transform:matrix(0.258223,0.014231,-0.013757,0.249621,0,0);-ms-transform:matrix(0.258223,0.014231,-0.013757,0.249621,0,0);-webkit-transform:matrix(0.258223,0.014231,-0.013757,0.249621,0,0);}
.md_c01058{transform:matrix(0.259122,0.014280,-0.013757,0.249621,0,0);-ms-transform:matrix(0.259122,0.014280,-0.013757,0.249621,0,0);-webkit-transform:matrix(0.259122,0.014280,-0.013757,0.249621,0,0);}
.m2_c01058{transform:matrix(0.259762,0.011701,-0.011250,0.249747,0,0);-ms-transform:matrix(0.259762,0.011701,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.259762,0.011701,-0.011250,0.249747,0,0);}
.m7_c01058{transform:matrix(0.261585,0.011783,-0.011250,0.249747,0,0);-ms-transform:matrix(0.261585,0.011783,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.261585,0.011783,-0.011250,0.249747,0,0);}
.me_c01058{transform:matrix(0.267369,0.014735,-0.013757,0.249621,0,0);-ms-transform:matrix(0.267369,0.014735,-0.013757,0.249621,0,0);-webkit-transform:matrix(0.267369,0.014735,-0.013757,0.249621,0,0);}
.m2d_c01058{transform:matrix(0.267953,0.013143,-0.012248,0.249700,0,0);-ms-transform:matrix(0.267953,0.013143,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.267953,0.013143,-0.012248,0.249700,0,0);}
.m4_c01058{transform:matrix(0.269831,0.012155,-0.011250,0.249747,0,0);-ms-transform:matrix(0.269831,0.012155,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.269831,0.012155,-0.011250,0.249747,0,0);}
.m5_c01058{transform:matrix(0.271460,0.012228,-0.011250,0.249747,0,0);-ms-transform:matrix(0.271460,0.012228,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.271460,0.012228,-0.011250,0.249747,0,0);}
.m13_c01058{transform:matrix(0.274164,0.015109,-0.013757,0.249621,0,0);-ms-transform:matrix(0.274164,0.015109,-0.013757,0.249621,0,0);-webkit-transform:matrix(0.274164,0.015109,-0.013757,0.249621,0,0);}
.m2c_c01058{transform:matrix(0.276887,0.013581,-0.012248,0.249700,0,0);-ms-transform:matrix(0.276887,0.013581,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.276887,0.013581,-0.012248,0.249700,0,0);}
.m2b_c01058{transform:matrix(0.279459,0.013707,-0.012248,0.249700,0,0);-ms-transform:matrix(0.279459,0.013707,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.279459,0.013707,-0.012248,0.249700,0,0);}
.m9_c01058{transform:matrix(0.280660,0.012642,-0.011250,0.249747,0,0);-ms-transform:matrix(0.280660,0.012642,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.280660,0.012642,-0.011250,0.249747,0,0);}
.m28_c01058{transform:matrix(0.280922,0.013779,-0.012248,0.249700,0,0);-ms-transform:matrix(0.280922,0.013779,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.280922,0.013779,-0.012248,0.249700,0,0);}
.mf_c01058{transform:matrix(0.289196,0.015938,-0.013757,0.249621,0,0);-ms-transform:matrix(0.289196,0.015938,-0.013757,0.249621,0,0);-webkit-transform:matrix(0.289196,0.015938,-0.013757,0.249621,0,0);}
.m11_c01058{transform:matrix(0.290050,0.015985,-0.013757,0.249621,0,0);-ms-transform:matrix(0.290050,0.015985,-0.013757,0.249621,0,0);-webkit-transform:matrix(0.290050,0.015985,-0.013757,0.249621,0,0);}
.m15_c01058{transform:matrix(0.292242,0.016105,-0.013757,0.249621,0,0);-ms-transform:matrix(0.292242,0.016105,-0.013757,0.249621,0,0);-webkit-transform:matrix(0.292242,0.016105,-0.013757,0.249621,0,0);}
.m14_c01058{transform:matrix(0.292406,0.016115,-0.013757,0.249621,0,0);-ms-transform:matrix(0.292406,0.016115,-0.013757,0.249621,0,0);-webkit-transform:matrix(0.292406,0.016115,-0.013757,0.249621,0,0);}
.m10_c01058{transform:matrix(0.309026,0.017030,-0.013757,0.249621,0,0);-ms-transform:matrix(0.309026,0.017030,-0.013757,0.249621,0,0);-webkit-transform:matrix(0.309026,0.017030,-0.013757,0.249621,0,0);}
.m26_c01058{transform:matrix(0.335260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335260,0.000000,0.000000,0.250000,0,0);}
.v0_c01058{vertical-align:0.000000px;}
.ls0_c01058{letter-spacing:0.000000px;}
.sc__c01058{text-shadow:none;}
.sc0_c01058{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__c01058{-webkit-text-stroke:0px transparent;}
.sc0_c01058{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01058{word-spacing:0.000000px;}
.fc0_c01058{color:transparent;}
.fs6_c01058{font-size:54.000000px;}
.fs3_c01058{font-size:65.967949px;}
.fs1_c01058{font-size:72.000936px;}
.fs7_c01058{font-size:72.014471px;}
.fs0_c01058{font-size:78.001014px;}
.fs4_c01058{font-size:78.023474px;}
.fs2_c01058{font-size:83.959208px;}
.fs5_c01058{font-size:84.001092px;}
.y0_c01058{bottom:0.000000px;}
.y2f_c01058{bottom:957.267033px;}
.y2e_c01058{bottom:962.196310px;}
.y2d_c01058{bottom:964.470842px;}
.y2c_c01058{bottom:969.344627px;}
.y2b_c01058{bottom:970.932888px;}
.y2a_c01058{bottom:973.125172px;}
.y29_c01058{bottom:979.566639px;}
.y28_c01058{bottom:981.751500px;}
.y27_c01058{bottom:1017.222000px;}
.y26_c01058{bottom:1025.138985px;}
.y25_c01058{bottom:1026.243487px;}
.y24_c01058{bottom:1027.809285px;}
.y23_c01058{bottom:1029.255337px;}
.y22_c01058{bottom:1032.782820px;}
.y21_c01058{bottom:1037.298030px;}
.y20_c01058{bottom:1038.767775px;}
.y1f_c01058{bottom:1040.781030px;}
.y1e_c01058{bottom:1045.748490px;}
.y1d_c01058{bottom:1048.704518px;}
.y1c_c01058{bottom:1050.686250px;}
.y1b_c01058{bottom:1055.192618px;}
.y1a_c01058{bottom:1055.985000px;}
.y19_c01058{bottom:1060.374181px;}
.y18_c01058{bottom:1065.456000px;}
.y17_c01058{bottom:1066.570264px;}
.y16_c01058{bottom:1070.018431px;}
.y15_c01058{bottom:1072.213581px;}
.y14_c01058{bottom:1074.601350px;}
.y13_c01058{bottom:1076.061577px;}
.y12_c01058{bottom:1079.111977px;}
.y11_c01058{bottom:1085.000712px;}
.y10_c01058{bottom:1088.057782px;}
.yf_c01058{bottom:1089.500049px;}
.ye_c01058{bottom:1091.426716px;}
.yd_c01058{bottom:1096.227225px;}
.yc_c01058{bottom:1098.074977px;}
.yb_c01058{bottom:1101.100500px;}
.ya_c01058{bottom:1106.038005px;}
.y9_c01058{bottom:1108.126104px;}
.y8_c01058{bottom:1111.182936px;}
.y7_c01058{bottom:1112.775599px;}
.y6_c01058{bottom:1116.922826px;}
.y5_c01058{bottom:1120.100388px;}
.y4_c01058{bottom:1121.605071px;}
.y3_c01058{bottom:1123.237775px;}
.y2_c01058{bottom:1181.339655px;}
.y1_c01058{bottom:1182.345000px;}
.h8_c01058{height:54.000000px;}
.h5_c01058{height:65.967949px;}
.h3_c01058{height:72.000936px;}
.h9_c01058{height:72.014471px;}
.h2_c01058{height:78.001014px;}
.h6_c01058{height:78.023474px;}
.h4_c01058{height:83.959208px;}
.h7_c01058{height:84.001092px;}
.h0_c01058{height:1246.320000px;}
.h1_c01058{height:1246.500000px;}
.w0_c01058{width:900.450000px;}
.w1_c01058{width:900.750000px;}
.x0_c01058{left:0.000000px;}
.x19_c01058{left:151.143000px;}
.x1a_c01058{left:168.733891px;}
.xe_c01058{left:172.654629px;}
.xf_c01058{left:215.380066px;}
.x10_c01058{left:247.354098px;}
.x1b_c01058{left:268.775250px;}
.x25_c01058{left:276.643500px;}
.x3_c01058{left:281.462024px;}
.x1c_c01058{left:312.769712px;}
.x11_c01058{left:315.114088px;}
.x4_c01058{left:316.174668px;}
.x26_c01058{left:321.187911px;}
.x5_c01058{left:348.145260px;}
.x1d_c01058{left:378.393522px;}
.x6_c01058{left:415.687070px;}
.x1_c01058{left:432.753000px;}
.x12_c01058{left:445.644840px;}
.x27_c01058{left:452.514952px;}
.x2_c01058{left:455.071659px;}
.x1e_c01058{left:488.671134px;}
.x28_c01058{left:497.210712px;}
.x7_c01058{left:503.855408px;}
.x13_c01058{left:513.256545px;}
.x29_c01058{left:529.591798px;}
.x1f_c01058{left:533.365395px;}
.x8_c01058{left:537.712476px;}
.x14_c01058{left:545.610979px;}
.x20_c01058{left:565.993734px;}
.x15_c01058{left:598.556058px;}
.x9_c01058{left:602.674071px;}
.x2a_c01058{left:628.957334px;}
.xa_c01058{left:647.063151px;}
.x21_c01058{left:666.231396px;}
.x2b_c01058{left:675.329915px;}
.x16_c01058{left:723.652723px;}
.x22_c01058{left:744.541508px;}
.xb_c01058{left:747.699000px;}
.x17_c01058{left:757.189500px;}
.x23_c01058{left:776.643873px;}
.xc_c01058{left:802.598481px;}
.x24_c01058{left:811.404578px;}
.xd_c01058{left:836.126790px;}
.x18_c01058{left:856.733357px;}
@media print{
.v0_c01058{vertical-align:0.000000pt;}
.ls0_c01058{letter-spacing:0.000000pt;}
.ws0_c01058{word-spacing:0.000000pt;}
.fs6_c01058{font-size:48.000000pt;}
.fs3_c01058{font-size:58.638177pt;}
.fs1_c01058{font-size:64.000832pt;}
.fs7_c01058{font-size:64.012863pt;}
.fs0_c01058{font-size:69.334235pt;}
.fs4_c01058{font-size:69.354200pt;}
.fs2_c01058{font-size:74.630407pt;}
.fs5_c01058{font-size:74.667637pt;}
.y0_c01058{bottom:0.000000pt;}
.y2f_c01058{bottom:850.904029pt;}
.y2e_c01058{bottom:855.285609pt;}
.y2d_c01058{bottom:857.307415pt;}
.y2c_c01058{bottom:861.639668pt;}
.y2b_c01058{bottom:863.051456pt;}
.y2a_c01058{bottom:865.000153pt;}
.y29_c01058{bottom:870.725901pt;}
.y28_c01058{bottom:872.668000pt;}
.y27_c01058{bottom:904.197333pt;}
.y26_c01058{bottom:911.234653pt;}
.y25_c01058{bottom:912.216433pt;}
.y24_c01058{bottom:913.608253pt;}
.y23_c01058{bottom:914.893633pt;}
.y22_c01058{bottom:918.029173pt;}
.y21_c01058{bottom:922.042693pt;}
.y20_c01058{bottom:923.349133pt;}
.y1f_c01058{bottom:925.138693pt;}
.y1e_c01058{bottom:929.554213pt;}
.y1d_c01058{bottom:932.181793pt;}
.y1c_c01058{bottom:933.943333pt;}
.y1b_c01058{bottom:937.948993pt;}
.y1a_c01058{bottom:938.653333pt;}
.y19_c01058{bottom:942.554828pt;}
.y18_c01058{bottom:947.072000pt;}
.y17_c01058{bottom:948.062457pt;}
.y16_c01058{bottom:951.127495pt;}
.y15_c01058{bottom:953.078739pt;}
.y14_c01058{bottom:955.201200pt;}
.y13_c01058{bottom:956.499180pt;}
.y12_c01058{bottom:959.210647pt;}
.y11_c01058{bottom:964.445077pt;}
.y10_c01058{bottom:967.162473pt;}
.yf_c01058{bottom:968.444488pt;}
.ye_c01058{bottom:970.157081pt;}
.yd_c01058{bottom:974.424200pt;}
.yc_c01058{bottom:976.066647pt;}
.yb_c01058{bottom:978.756000pt;}
.ya_c01058{bottom:983.144893pt;}
.y9_c01058{bottom:985.000981pt;}
.y8_c01058{bottom:987.718165pt;}
.y7_c01058{bottom:989.133865pt;}
.y6_c01058{bottom:992.820289pt;}
.y5_c01058{bottom:995.644789pt;}
.y4_c01058{bottom:996.982285pt;}
.y3_c01058{bottom:998.433577pt;}
.y2_c01058{bottom:1050.079693pt;}
.y1_c01058{bottom:1050.973333pt;}
.h8_c01058{height:48.000000pt;}
.h5_c01058{height:58.638177pt;}
.h3_c01058{height:64.000832pt;}
.h9_c01058{height:64.012863pt;}
.h2_c01058{height:69.334235pt;}
.h6_c01058{height:69.354200pt;}
.h4_c01058{height:74.630407pt;}
.h7_c01058{height:74.667637pt;}
.h0_c01058{height:1107.840000pt;}
.h1_c01058{height:1108.000000pt;}
.w0_c01058{width:800.400000pt;}
.w1_c01058{width:800.666667pt;}
.x0_c01058{left:0.000000pt;}
.x19_c01058{left:134.349333pt;}
.x1a_c01058{left:149.985681pt;}
.xe_c01058{left:153.470781pt;}
.xf_c01058{left:191.448948pt;}
.x10_c01058{left:219.870309pt;}
.x1b_c01058{left:238.911333pt;}
.x25_c01058{left:245.905333pt;}
.x3_c01058{left:250.188465pt;}
.x1c_c01058{left:278.017521pt;}
.x11_c01058{left:280.101412pt;}
.x4_c01058{left:281.044149pt;}
.x26_c01058{left:285.500365pt;}
.x5_c01058{left:309.462453pt;}
.x1d_c01058{left:336.349797pt;}
.x6_c01058{left:369.499617pt;}
.x1_c01058{left:384.669333pt;}
.x12_c01058{left:396.128747pt;}
.x27_c01058{left:402.235513pt;}
.x2_c01058{left:404.508141pt;}
.x1e_c01058{left:434.374341pt;}
.x28_c01058{left:441.965077pt;}
.x7_c01058{left:447.871473pt;}
.x13_c01058{left:456.228040pt;}
.x29_c01058{left:470.748265pt;}
.x1f_c01058{left:474.102573pt;}
.x8_c01058{left:477.966645pt;}
.x14_c01058{left:484.987537pt;}
.x20_c01058{left:503.105541pt;}
.x15_c01058{left:532.049829pt;}
.x9_c01058{left:535.710285pt;}
.x2a_c01058{left:559.073185pt;}
.xa_c01058{left:575.167245pt;}
.x21_c01058{left:592.205685pt;}
.x2b_c01058{left:600.293257pt;}
.x16_c01058{left:643.246865pt;}
.x22_c01058{left:661.814673pt;}
.xb_c01058{left:664.621333pt;}
.x17_c01058{left:673.057333pt;}
.x23_c01058{left:690.350109pt;}
.xc_c01058{left:713.420872pt;}
.x24_c01058{left:721.248513pt;}
.xd_c01058{left:743.223813pt;}
.x18_c01058{left:761.540761pt;}
}





/* 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_c01059 {
    display:none;
  }
  .loading-indicator_c01059.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01059 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_c01059 { 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_c01059" -> "#page-container .classname_c01059")
 */
.pf_c01059 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01059 { /* 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_c01059.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01059 { /* 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_c01059 { /* 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_c01059 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01059 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01059 {overflow:visible;}
  }
}
.c_c01059 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01059 { /* 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_c01059:after { /* webkit #35443 */
  content: '';
}
.t_c01059:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01059 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 */
}
.__c01059 { /* 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_c01059 { /* info for Javascript */
  display:none;
}
.l_c01059 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01059 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01059 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01059: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_c01059 {
    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_c01059.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01059.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_c01059 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01059{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01059;src:url('chunks/assets/font_bfe6362fd3009c591583128f.woff2')format("woff");}.ff1_c01059{font-family:ff1_c01059;line-height:1.000000;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;}
.m2_c01059{transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);}
.m7_c01059{transform:matrix(0.146030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146030,0.000000,0.000000,0.250000,0,0);}
.m8_c01059{transform:matrix(0.200300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200300,0.000000,0.000000,0.250000,0,0);}
.m5_c01059{transform:matrix(0.294440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294440,0.000000,0.000000,0.250000,0,0);}
.m6_c01059{transform:matrix(0.336155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336155,0.000000,0.000000,0.250000,0,0);}
.m1_c01059{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.m0_c01059{transform:matrix(0.527730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527730,0.000000,0.000000,0.250000,0,0);}
.m4_c01059{transform:matrix(0.619055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.619055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.619055,0.000000,0.000000,0.250000,0,0);}
.mb_c01059{transform:matrix(0.663680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.663680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.663680,0.000000,0.000000,0.250000,0,0);}
.ma_c01059{transform:matrix(0.778160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.778160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.778160,0.000000,0.000000,0.250000,0,0);}
.m9_c01059{transform:matrix(0.921215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.921215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.921215,0.000000,0.000000,0.250000,0,0);}
.m3_c01059{transform:matrix(1.374410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.374410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.374410,0.000000,0.000000,0.250000,0,0);}
.v0_c01059{vertical-align:0.000000px;}
.ls0_c01059{letter-spacing:0.000000px;}
.sc__c01059{text-shadow:none;}
.sc0_c01059{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__c01059{-webkit-text-stroke:0px transparent;}
.sc0_c01059{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01059{word-spacing:0.000000px;}
.fc0_c01059{color:transparent;}
.fs0_c01059{font-size:18.000000px;}
.fs1_c01059{font-size:24.000000px;}
.fs3_c01059{font-size:30.000000px;}
.fs2_c01059{font-size:72.000000px;}
.y0_c01059{bottom:0.000000px;}
.y9_c01059{bottom:431.595000px;}
.y8_c01059{bottom:435.642000px;}
.y5_c01059{bottom:438.480000px;}
.y7_c01059{bottom:439.563000px;}
.y6_c01059{bottom:446.040000px;}
.y4_c01059{bottom:446.850000px;}
.y3_c01059{bottom:954.720000px;}
.y1_c01059{bottom:989.550000px;}
.y2_c01059{bottom:991.170000px;}
.h2_c01059{height:18.000000px;}
.h3_c01059{height:24.000000px;}
.h5_c01059{height:30.000000px;}
.h4_c01059{height:72.000000px;}
.h0_c01059{height:1246.320000px;}
.h1_c01059{height:1246.500000px;}
.w0_c01059{width:900.450000px;}
.w1_c01059{width:900.750000px;}
.x0_c01059{left:0.000000px;}
.x5_c01059{left:553.500000px;}
.x6_c01059{left:559.170000px;}
.x4_c01059{left:573.210000px;}
.x3_c01059{left:580.770000px;}
.x1_c01059{left:891.000000px;}
.x2_c01059{left:893.700000px;}
@media print{
.v0_c01059{vertical-align:0.000000pt;}
.ls0_c01059{letter-spacing:0.000000pt;}
.ws0_c01059{word-spacing:0.000000pt;}
.fs0_c01059{font-size:16.000000pt;}
.fs1_c01059{font-size:21.333333pt;}
.fs3_c01059{font-size:26.666667pt;}
.fs2_c01059{font-size:64.000000pt;}
.y0_c01059{bottom:0.000000pt;}
.y9_c01059{bottom:383.640000pt;}
.y8_c01059{bottom:387.237333pt;}
.y5_c01059{bottom:389.760000pt;}
.y7_c01059{bottom:390.722667pt;}
.y6_c01059{bottom:396.480000pt;}
.y4_c01059{bottom:397.200000pt;}
.y3_c01059{bottom:848.640000pt;}
.y1_c01059{bottom:879.600000pt;}
.y2_c01059{bottom:881.040000pt;}
.h2_c01059{height:16.000000pt;}
.h3_c01059{height:21.333333pt;}
.h5_c01059{height:26.666667pt;}
.h4_c01059{height:64.000000pt;}
.h0_c01059{height:1107.840000pt;}
.h1_c01059{height:1108.000000pt;}
.w0_c01059{width:800.400000pt;}
.w1_c01059{width:800.666667pt;}
.x0_c01059{left:0.000000pt;}
.x5_c01059{left:492.000000pt;}
.x6_c01059{left:497.040000pt;}
.x4_c01059{left:509.520000pt;}
.x3_c01059{left:516.240000pt;}
.x1_c01059{left:792.000000pt;}
.x2_c01059{left:794.400000pt;}
}





/* 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_c01060 {
    display:none;
  }
  .loading-indicator_c01060.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01060 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_c01060 { 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_c01060" -> "#page-container .classname_c01060")
 */
.pf_c01060 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01060 { /* 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_c01060.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01060 { /* 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_c01060 { /* 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_c01060 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01060 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01060 {overflow:visible;}
  }
}
.c_c01060 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01060 { /* 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_c01060:after { /* webkit #35443 */
  content: '';
}
.t_c01060:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01060 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 */
}
.__c01060 { /* 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_c01060 { /* info for Javascript */
  display:none;
}
.l_c01060 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01060 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01060 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01060: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_c01060 {
    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_c01060.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01060.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_c01060 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01060{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01060;src:url('chunks/assets/font_c605e72f209fc835e906f064.woff2')format("woff");}.ff1_c01060{font-family:ff1_c01060;line-height:1.000000;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;}
.m49_c01060{transform:matrix(0.010604,0.000127,-0.003000,0.249982,0,0);-ms-transform:matrix(0.010604,0.000127,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.010604,0.000127,-0.003000,0.249982,0,0);}
.mc8_c01060{transform:matrix(0.018183,0.000273,-0.003750,0.249972,0,0);-ms-transform:matrix(0.018183,0.000273,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.018183,0.000273,-0.003750,0.249972,0,0);}
.m7d_c01060{transform:matrix(0.022165,-0.000133,0.001500,0.249996,0,0);-ms-transform:matrix(0.022165,-0.000133,0.001500,0.249996,0,0);-webkit-transform:matrix(0.022165,-0.000133,0.001500,0.249996,0,0);}
.m82_c01060{transform:matrix(0.096648,-0.000580,0.001500,0.249996,0,0);-ms-transform:matrix(0.096648,-0.000580,0.001500,0.249996,0,0);-webkit-transform:matrix(0.096648,-0.000580,0.001500,0.249996,0,0);}
.m4b_c01060{transform:matrix(0.120336,0.001444,-0.003000,0.249982,0,0);-ms-transform:matrix(0.120336,0.001444,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.120336,0.001444,-0.003000,0.249982,0,0);}
.m83_c01060{transform:matrix(0.127264,0.002036,-0.003999,0.249968,0,0);-ms-transform:matrix(0.127264,0.002036,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.127264,0.002036,-0.003999,0.249968,0,0);}
.m84_c01060{transform:matrix(0.129803,0.002077,-0.003999,0.249968,0,0);-ms-transform:matrix(0.129803,0.002077,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.129803,0.002077,-0.003999,0.249968,0,0);}
.m53_c01060{transform:matrix(0.140550,0.001687,-0.003000,0.249982,0,0);-ms-transform:matrix(0.140550,0.001687,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.140550,0.001687,-0.003000,0.249982,0,0);}
.m25_c01060{transform:matrix(0.144598,0.000723,-0.001250,0.249997,0,0);-ms-transform:matrix(0.144598,0.000723,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.144598,0.000723,-0.001250,0.249997,0,0);}
.m3e_c01060{transform:matrix(0.145854,0.001750,-0.003000,0.249982,0,0);-ms-transform:matrix(0.145854,0.001750,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.145854,0.001750,-0.003000,0.249982,0,0);}
.m77_c01060{transform:matrix(0.150167,-0.000901,0.001500,0.249996,0,0);-ms-transform:matrix(0.150167,-0.000901,0.001500,0.249996,0,0);-webkit-transform:matrix(0.150167,-0.000901,0.001500,0.249996,0,0);}
.mf_c01060{transform:matrix(0.160488,0.000802,-0.001250,0.249997,0,0);-ms-transform:matrix(0.160488,0.000802,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.160488,0.000802,-0.001250,0.249997,0,0);}
.m8_c01060{transform:matrix(0.174848,0.000874,-0.001250,0.249997,0,0);-ms-transform:matrix(0.174848,0.000874,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.174848,0.000874,-0.001250,0.249997,0,0);}
.me_c01060{transform:matrix(0.183683,0.000918,-0.001250,0.249997,0,0);-ms-transform:matrix(0.183683,0.000918,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.183683,0.000918,-0.001250,0.249997,0,0);}
.m26_c01060{transform:matrix(0.185148,0.000926,-0.001250,0.249997,0,0);-ms-transform:matrix(0.185148,0.000926,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.185148,0.000926,-0.001250,0.249997,0,0);}
.mc2_c01060{transform:matrix(0.188589,0.002829,-0.003750,0.249972,0,0);-ms-transform:matrix(0.188589,0.002829,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.188589,0.002829,-0.003750,0.249972,0,0);}
.m86_c01060{transform:matrix(0.196710,0.003147,-0.003999,0.249968,0,0);-ms-transform:matrix(0.196710,0.003147,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.196710,0.003147,-0.003999,0.249968,0,0);}
.m9c_c01060{transform:matrix(0.198455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198455,0.000000,0.000000,0.250000,0,0);}
.m1e_c01060{transform:matrix(0.198588,0.000993,-0.001250,0.249997,0,0);-ms-transform:matrix(0.198588,0.000993,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.198588,0.000993,-0.001250,0.249997,0,0);}
.m54_c01060{transform:matrix(0.199611,0.002395,-0.003000,0.249982,0,0);-ms-transform:matrix(0.199611,0.002395,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.199611,0.002395,-0.003000,0.249982,0,0);}
.mbf_c01060{transform:matrix(0.201352,0.003020,-0.003750,0.249972,0,0);-ms-transform:matrix(0.201352,0.003020,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.201352,0.003020,-0.003750,0.249972,0,0);}
.m6b_c01060{transform:matrix(0.202035,-0.004041,0.004999,0.249950,0,0);-ms-transform:matrix(0.202035,-0.004041,0.004999,0.249950,0,0);-webkit-transform:matrix(0.202035,-0.004041,0.004999,0.249950,0,0);}
.m7_c01060{transform:matrix(0.202807,0.001014,-0.001250,0.249997,0,0);-ms-transform:matrix(0.202807,0.001014,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.202807,0.001014,-0.001250,0.249997,0,0);}
.m3f_c01060{transform:matrix(0.203345,0.002440,-0.003000,0.249982,0,0);-ms-transform:matrix(0.203345,0.002440,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.203345,0.002440,-0.003000,0.249982,0,0);}
.m9_c01060{transform:matrix(0.204442,0.001022,-0.001250,0.249997,0,0);-ms-transform:matrix(0.204442,0.001022,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.204442,0.001022,-0.001250,0.249997,0,0);}
.maf_c01060{transform:matrix(0.204615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204615,0.000000,0.000000,0.250000,0,0);}
.mc4_c01060{transform:matrix(0.206257,0.003094,-0.003750,0.249972,0,0);-ms-transform:matrix(0.206257,0.003094,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.206257,0.003094,-0.003750,0.249972,0,0);}
.m89_c01060{transform:matrix(0.207693,0.003323,-0.003999,0.249968,0,0);-ms-transform:matrix(0.207693,0.003323,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.207693,0.003323,-0.003999,0.249968,0,0);}
.mac_c01060{transform:matrix(0.207840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207840,0.000000,0.000000,0.250000,0,0);}
.ma_c01060{transform:matrix(0.208817,0.001044,-0.001250,0.249997,0,0);-ms-transform:matrix(0.208817,0.001044,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.208817,0.001044,-0.001250,0.249997,0,0);}
.m76_c01060{transform:matrix(0.209931,-0.001260,0.001500,0.249996,0,0);-ms-transform:matrix(0.209931,-0.001260,0.001500,0.249996,0,0);-webkit-transform:matrix(0.209931,-0.001260,0.001500,0.249996,0,0);}
.m81_c01060{transform:matrix(0.214731,-0.001288,0.001500,0.249996,0,0);-ms-transform:matrix(0.214731,-0.001288,0.001500,0.249996,0,0);-webkit-transform:matrix(0.214731,-0.001288,0.001500,0.249996,0,0);}
.m29_c01060{transform:matrix(0.215197,0.001076,-0.001250,0.249997,0,0);-ms-transform:matrix(0.215197,0.001076,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.215197,0.001076,-0.001250,0.249997,0,0);}
.md_c01060{transform:matrix(0.217142,0.001086,-0.001250,0.249997,0,0);-ms-transform:matrix(0.217142,0.001086,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.217142,0.001086,-0.001250,0.249997,0,0);}
.m74_c01060{transform:matrix(0.217586,-0.001306,0.001500,0.249996,0,0);-ms-transform:matrix(0.217586,-0.001306,0.001500,0.249996,0,0);-webkit-transform:matrix(0.217586,-0.001306,0.001500,0.249996,0,0);}
.m2b_c01060{transform:matrix(0.218322,0.001092,-0.001250,0.249997,0,0);-ms-transform:matrix(0.218322,0.001092,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.218322,0.001092,-0.001250,0.249997,0,0);}
.m87_c01060{transform:matrix(0.218527,0.003496,-0.003999,0.249968,0,0);-ms-transform:matrix(0.218527,0.003496,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.218527,0.003496,-0.003999,0.249968,0,0);}
.m22_c01060{transform:matrix(0.218592,0.001093,-0.001250,0.249997,0,0);-ms-transform:matrix(0.218592,0.001093,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.218592,0.001093,-0.001250,0.249997,0,0);}
.m21_c01060{transform:matrix(0.220452,0.001102,-0.001250,0.249997,0,0);-ms-transform:matrix(0.220452,0.001102,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.220452,0.001102,-0.001250,0.249997,0,0);}
.m80_c01060{transform:matrix(0.221061,-0.001326,0.001500,0.249996,0,0);-ms-transform:matrix(0.221061,-0.001326,0.001500,0.249996,0,0);-webkit-transform:matrix(0.221061,-0.001326,0.001500,0.249996,0,0);}
.ma0_c01060{transform:matrix(0.223646,0.003578,-0.003999,0.249968,0,0);-ms-transform:matrix(0.223646,0.003578,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.223646,0.003578,-0.003999,0.249968,0,0);}
.m8e_c01060{transform:matrix(0.223796,0.003581,-0.003999,0.249968,0,0);-ms-transform:matrix(0.223796,0.003581,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.223796,0.003581,-0.003999,0.249968,0,0);}
.m88_c01060{transform:matrix(0.225026,0.003600,-0.003999,0.249968,0,0);-ms-transform:matrix(0.225026,0.003600,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.225026,0.003600,-0.003999,0.249968,0,0);}
.m6c_c01060{transform:matrix(0.225180,-0.004504,0.004999,0.249950,0,0);-ms-transform:matrix(0.225180,-0.004504,0.004999,0.249950,0,0);-webkit-transform:matrix(0.225180,-0.004504,0.004999,0.249950,0,0);}
.m9b_c01060{transform:matrix(0.225245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225245,0.000000,0.000000,0.250000,0,0);}
.m7b_c01060{transform:matrix(0.226441,-0.001359,0.001500,0.249996,0,0);-ms-transform:matrix(0.226441,-0.001359,0.001500,0.249996,0,0);-webkit-transform:matrix(0.226441,-0.001359,0.001500,0.249996,0,0);}
.mae_c01060{transform:matrix(0.226625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226625,0.000000,0.000000,0.250000,0,0);}
.m8d_c01060{transform:matrix(0.227106,0.003634,-0.003999,0.249968,0,0);-ms-transform:matrix(0.227106,0.003634,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.227106,0.003634,-0.003999,0.249968,0,0);}
.m46_c01060{transform:matrix(0.227414,0.002729,-0.003000,0.249982,0,0);-ms-transform:matrix(0.227414,0.002729,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.227414,0.002729,-0.003000,0.249982,0,0);}
.m65_c01060{transform:matrix(0.228671,0.002973,-0.003250,0.249979,0,0);-ms-transform:matrix(0.228671,0.002973,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.228671,0.002973,-0.003250,0.249979,0,0);}
.m69_c01060{transform:matrix(0.228779,-0.004576,0.004999,0.249950,0,0);-ms-transform:matrix(0.228779,-0.004576,0.004999,0.249950,0,0);-webkit-transform:matrix(0.228779,-0.004576,0.004999,0.249950,0,0);}
.m7a_c01060{transform:matrix(0.229771,-0.001379,0.001500,0.249996,0,0);-ms-transform:matrix(0.229771,-0.001379,0.001500,0.249996,0,0);-webkit-transform:matrix(0.229771,-0.001379,0.001500,0.249996,0,0);}
.m1f_c01060{transform:matrix(0.229782,0.001149,-0.001250,0.249997,0,0);-ms-transform:matrix(0.229782,0.001149,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.229782,0.001149,-0.001250,0.249997,0,0);}
.m8f_c01060{transform:matrix(0.229916,0.003679,-0.003999,0.249968,0,0);-ms-transform:matrix(0.229916,0.003679,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.229916,0.003679,-0.003999,0.249968,0,0);}
.m85_c01060{transform:matrix(0.230041,0.003681,-0.003999,0.249968,0,0);-ms-transform:matrix(0.230041,0.003681,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.230041,0.003681,-0.003999,0.249968,0,0);}
.m7f_c01060{transform:matrix(0.230226,-0.001381,0.001500,0.249996,0,0);-ms-transform:matrix(0.230226,-0.001381,0.001500,0.249996,0,0);-webkit-transform:matrix(0.230226,-0.001381,0.001500,0.249996,0,0);}
.m30_c01060{transform:matrix(0.230325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230325,0.000000,0.000000,0.250000,0,0);}
.m9a_c01060{transform:matrix(0.230440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230440,0.000000,0.000000,0.250000,0,0);}
.m72_c01060{transform:matrix(0.230456,-0.001383,0.001500,0.249996,0,0);-ms-transform:matrix(0.230456,-0.001383,0.001500,0.249996,0,0);-webkit-transform:matrix(0.230456,-0.001383,0.001500,0.249996,0,0);}
.m67_c01060{transform:matrix(0.230829,-0.004617,0.004999,0.249950,0,0);-ms-transform:matrix(0.230829,-0.004617,0.004999,0.249950,0,0);-webkit-transform:matrix(0.230829,-0.004617,0.004999,0.249950,0,0);}
.m79_c01060{transform:matrix(0.230911,-0.001385,0.001500,0.249996,0,0);-ms-transform:matrix(0.230911,-0.001385,0.001500,0.249996,0,0);-webkit-transform:matrix(0.230911,-0.001385,0.001500,0.249996,0,0);}
.m66_c01060{transform:matrix(0.231159,-0.004623,0.004999,0.249950,0,0);-ms-transform:matrix(0.231159,-0.004623,0.004999,0.249950,0,0);-webkit-transform:matrix(0.231159,-0.004623,0.004999,0.249950,0,0);}
.ma2_c01060{transform:matrix(0.232255,0.003716,-0.003999,0.249968,0,0);-ms-transform:matrix(0.232255,0.003716,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.232255,0.003716,-0.003999,0.249968,0,0);}
.m24_c01060{transform:matrix(0.232502,0.001163,-0.001250,0.249997,0,0);-ms-transform:matrix(0.232502,0.001163,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.232502,0.001163,-0.001250,0.249997,0,0);}
.m16_c01060{transform:matrix(0.232982,0.001165,-0.001250,0.249997,0,0);-ms-transform:matrix(0.232982,0.001165,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.232982,0.001165,-0.001250,0.249997,0,0);}
.m68_c01060{transform:matrix(0.233113,-0.004662,0.004999,0.249950,0,0);-ms-transform:matrix(0.233113,-0.004662,0.004999,0.249950,0,0);-webkit-transform:matrix(0.233113,-0.004662,0.004999,0.249950,0,0);}
.m14_c01060{transform:matrix(0.233162,0.001166,-0.001250,0.249997,0,0);-ms-transform:matrix(0.233162,0.001166,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.233162,0.001166,-0.001250,0.249997,0,0);}
.mc0_c01060{transform:matrix(0.233219,0.003498,-0.003750,0.249972,0,0);-ms-transform:matrix(0.233219,0.003498,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.233219,0.003498,-0.003750,0.249972,0,0);}
.m20_c01060{transform:matrix(0.233252,0.001166,-0.001250,0.249997,0,0);-ms-transform:matrix(0.233252,0.001166,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.233252,0.001166,-0.001250,0.249997,0,0);}
.mbe_c01060{transform:matrix(0.233649,0.003505,-0.003750,0.249972,0,0);-ms-transform:matrix(0.233649,0.003505,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.233649,0.003505,-0.003750,0.249972,0,0);}
.m1d_c01060{transform:matrix(0.233877,0.001169,-0.001250,0.249997,0,0);-ms-transform:matrix(0.233877,0.001169,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.233877,0.001169,-0.001250,0.249997,0,0);}
.m12_c01060{transform:matrix(0.234162,0.001171,-0.001250,0.249997,0,0);-ms-transform:matrix(0.234162,0.001171,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.234162,0.001171,-0.001250,0.249997,0,0);}
.m5f_c01060{transform:matrix(0.235490,0.003061,-0.003250,0.249979,0,0);-ms-transform:matrix(0.235490,0.003061,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.235490,0.003061,-0.003250,0.249979,0,0);}
.m99_c01060{transform:matrix(0.235625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235625,0.000000,0.000000,0.250000,0,0);}
.m96_c01060{transform:matrix(0.235790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235790,0.000000,0.000000,0.250000,0,0);}
.m78_c01060{transform:matrix(0.235871,-0.001415,0.001500,0.249996,0,0);-ms-transform:matrix(0.235871,-0.001415,0.001500,0.249996,0,0);-webkit-transform:matrix(0.235871,-0.001415,0.001500,0.249996,0,0);}
.m8b_c01060{transform:matrix(0.235930,0.003775,-0.003999,0.249968,0,0);-ms-transform:matrix(0.235930,0.003775,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.235930,0.003775,-0.003999,0.249968,0,0);}
.mc1_c01060{transform:matrix(0.236078,0.003541,-0.003750,0.249972,0,0);-ms-transform:matrix(0.236078,0.003541,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.236078,0.003541,-0.003750,0.249972,0,0);}
.m8c_c01060{transform:matrix(0.236245,0.003780,-0.003999,0.249968,0,0);-ms-transform:matrix(0.236245,0.003780,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.236245,0.003780,-0.003999,0.249968,0,0);}
.m47_c01060{transform:matrix(0.236428,0.002837,-0.003000,0.249982,0,0);-ms-transform:matrix(0.236428,0.002837,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.236428,0.002837,-0.003000,0.249982,0,0);}
.mc3_c01060{transform:matrix(0.238698,0.003580,-0.003750,0.249972,0,0);-ms-transform:matrix(0.238698,0.003580,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.238698,0.003580,-0.003750,0.249972,0,0);}
.m94_c01060{transform:matrix(0.238700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238700,0.000000,0.000000,0.250000,0,0);}
.mab_c01060{transform:matrix(0.238865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238865,0.000000,0.000000,0.250000,0,0);}
.m2d_c01060{transform:matrix(0.239332,0.001197,-0.001250,0.249997,0,0);-ms-transform:matrix(0.239332,0.001197,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.239332,0.001197,-0.001250,0.249997,0,0);}
.m2a_c01060{transform:matrix(0.240397,0.001202,-0.001250,0.249997,0,0);-ms-transform:matrix(0.240397,0.001202,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.240397,0.001202,-0.001250,0.249997,0,0);}
.m8a_c01060{transform:matrix(0.240529,0.003848,-0.003999,0.249968,0,0);-ms-transform:matrix(0.240529,0.003848,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.240529,0.003848,-0.003999,0.249968,0,0);}
.ma3_c01060{transform:matrix(0.240604,0.003850,-0.003999,0.249968,0,0);-ms-transform:matrix(0.240604,0.003850,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.240604,0.003850,-0.003999,0.249968,0,0);}
.m6_c01060{transform:matrix(0.240792,0.001204,-0.001250,0.249997,0,0);-ms-transform:matrix(0.240792,0.001204,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.240792,0.001204,-0.001250,0.249997,0,0);}
.m28_c01060{transform:matrix(0.240997,0.001205,-0.001250,0.249997,0,0);-ms-transform:matrix(0.240997,0.001205,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.240997,0.001205,-0.001250,0.249997,0,0);}
.m23_c01060{transform:matrix(0.241082,0.001205,-0.001250,0.249997,0,0);-ms-transform:matrix(0.241082,0.001205,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.241082,0.001205,-0.001250,0.249997,0,0);}
.m17_c01060{transform:matrix(0.242237,0.001211,-0.001250,0.249997,0,0);-ms-transform:matrix(0.242237,0.001211,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.242237,0.001211,-0.001250,0.249997,0,0);}
.m91_c01060{transform:matrix(0.242270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242270,0.000000,0.000000,0.250000,0,0);}
.m1b_c01060{transform:matrix(0.242627,0.001213,-0.001250,0.249997,0,0);-ms-transform:matrix(0.242627,0.001213,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.242627,0.001213,-0.001250,0.249997,0,0);}
.m27_c01060{transform:matrix(0.243197,0.001216,-0.001250,0.249997,0,0);-ms-transform:matrix(0.243197,0.001216,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.243197,0.001216,-0.001250,0.249997,0,0);}
.mb0_c01060{transform:matrix(0.243490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243490,0.000000,0.000000,0.250000,0,0);}
.m9e_c01060{transform:matrix(0.243740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243740,0.000000,0.000000,0.250000,0,0);}
.mad_c01060{transform:matrix(0.244100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244100,0.000000,0.000000,0.250000,0,0);}
.mb5_c01060{transform:matrix(0.244269,0.003908,-0.003999,0.249968,0,0);-ms-transform:matrix(0.244269,0.003908,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.244269,0.003908,-0.003999,0.249968,0,0);}
.m37_c01060{transform:matrix(0.244445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244445,0.000000,0.000000,0.250000,0,0);}
.m93_c01060{transform:matrix(0.244800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244800,0.000000,0.000000,0.250000,0,0);}
.mc5_c01060{transform:matrix(0.245352,0.003680,-0.003750,0.249972,0,0);-ms-transform:matrix(0.245352,0.003680,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.245352,0.003680,-0.003750,0.249972,0,0);}
.m6a_c01060{transform:matrix(0.245546,-0.004911,0.004999,0.249950,0,0);-ms-transform:matrix(0.245546,-0.004911,0.004999,0.249950,0,0);-webkit-transform:matrix(0.245546,-0.004911,0.004999,0.249950,0,0);}
.m5a_c01060{transform:matrix(0.245692,0.002948,-0.003000,0.249982,0,0);-ms-transform:matrix(0.245692,0.002948,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.245692,0.002948,-0.003000,0.249982,0,0);}
.m9d_c01060{transform:matrix(0.245920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245920,0.000000,0.000000,0.250000,0,0);}
.m6e_c01060{transform:matrix(0.246856,-0.004937,0.004999,0.249950,0,0);-ms-transform:matrix(0.246856,-0.004937,0.004999,0.249950,0,0);-webkit-transform:matrix(0.246856,-0.004937,0.004999,0.249950,0,0);}
.m1a_c01060{transform:matrix(0.248227,0.001241,-0.001250,0.249997,0,0);-ms-transform:matrix(0.248227,0.001241,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.248227,0.001241,-0.001250,0.249997,0,0);}
.m7c_c01060{transform:matrix(0.248431,-0.001491,0.001500,0.249996,0,0);-ms-transform:matrix(0.248431,-0.001491,0.001500,0.249996,0,0);-webkit-transform:matrix(0.248431,-0.001491,0.001500,0.249996,0,0);}
.m7e_c01060{transform:matrix(0.249251,-0.001496,0.001500,0.249996,0,0);-ms-transform:matrix(0.249251,-0.001496,0.001500,0.249996,0,0);-webkit-transform:matrix(0.249251,-0.001496,0.001500,0.249996,0,0);}
.m71_c01060{transform:matrix(0.249466,-0.001497,0.001500,0.249996,0,0);-ms-transform:matrix(0.249466,-0.001497,0.001500,0.249996,0,0);-webkit-transform:matrix(0.249466,-0.001497,0.001500,0.249996,0,0);}
.mc_c01060{transform:matrix(0.250047,0.001250,-0.001250,0.249997,0,0);-ms-transform:matrix(0.250047,0.001250,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.250047,0.001250,-0.001250,0.249997,0,0);}
.m73_c01060{transform:matrix(0.250120,-0.001501,0.001500,0.249996,0,0);-ms-transform:matrix(0.250120,-0.001501,0.001500,0.249996,0,0);-webkit-transform:matrix(0.250120,-0.001501,0.001500,0.249996,0,0);}
.m5b_c01060{transform:matrix(0.250372,0.003004,-0.003000,0.249982,0,0);-ms-transform:matrix(0.250372,0.003004,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.250372,0.003004,-0.003000,0.249982,0,0);}
.m50_c01060{transform:matrix(0.251877,0.003023,-0.003000,0.249982,0,0);-ms-transform:matrix(0.251877,0.003023,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.251877,0.003023,-0.003000,0.249982,0,0);}
.m44_c01060{transform:matrix(0.252827,0.003034,-0.003000,0.249982,0,0);-ms-transform:matrix(0.252827,0.003034,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.252827,0.003034,-0.003000,0.249982,0,0);}
.m60_c01060{transform:matrix(0.254439,0.003308,-0.003250,0.249979,0,0);-ms-transform:matrix(0.254439,0.003308,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.254439,0.003308,-0.003250,0.249979,0,0);}
.m58_c01060{transform:matrix(0.254757,0.003057,-0.003000,0.249982,0,0);-ms-transform:matrix(0.254757,0.003057,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.254757,0.003057,-0.003000,0.249982,0,0);}
.mb7_c01060{transform:matrix(0.254907,0.004079,-0.003999,0.249968,0,0);-ms-transform:matrix(0.254907,0.004079,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.254907,0.004079,-0.003999,0.249968,0,0);}
.m75_c01060{transform:matrix(0.256125,-0.001537,0.001500,0.249996,0,0);-ms-transform:matrix(0.256125,-0.001537,0.001500,0.249996,0,0);-webkit-transform:matrix(0.256125,-0.001537,0.001500,0.249996,0,0);}
.m3b_c01060{transform:matrix(0.256450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256450,0.000000,0.000000,0.250000,0,0);}
.m2c_c01060{transform:matrix(0.257152,0.001286,-0.001250,0.249997,0,0);-ms-transform:matrix(0.257152,0.001286,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.257152,0.001286,-0.001250,0.249997,0,0);}
.m92_c01060{transform:matrix(0.258045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258045,0.000000,0.000000,0.250000,0,0);}
.m51_c01060{transform:matrix(0.258051,0.003097,-0.003000,0.249982,0,0);-ms-transform:matrix(0.258051,0.003097,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.258051,0.003097,-0.003000,0.249982,0,0);}
.m4e_c01060{transform:matrix(0.258236,0.003099,-0.003000,0.249982,0,0);-ms-transform:matrix(0.258236,0.003099,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.258236,0.003099,-0.003000,0.249982,0,0);}
.m95_c01060{transform:matrix(0.258465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258465,0.000000,0.000000,0.250000,0,0);}
.m18_c01060{transform:matrix(0.258827,0.001294,-0.001250,0.249997,0,0);-ms-transform:matrix(0.258827,0.001294,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.258827,0.001294,-0.001250,0.249997,0,0);}
.m3_c01060{transform:matrix(0.259795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259795,0.000000,0.000000,0.250000,0,0);}
.m35_c01060{transform:matrix(0.259870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259870,0.000000,0.000000,0.250000,0,0);}
.m97_c01060{transform:matrix(0.260225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260225,0.000000,0.000000,0.250000,0,0);}
.m5e_c01060{transform:matrix(0.260766,0.003129,-0.003000,0.249982,0,0);-ms-transform:matrix(0.260766,0.003129,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.260766,0.003129,-0.003000,0.249982,0,0);}
.m1c_c01060{transform:matrix(0.260952,0.001305,-0.001250,0.249997,0,0);-ms-transform:matrix(0.260952,0.001305,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.260952,0.001305,-0.001250,0.249997,0,0);}
.m90_c01060{transform:matrix(0.261335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261335,0.000000,0.000000,0.250000,0,0);}
.m11_c01060{transform:matrix(0.262452,0.001312,-0.001250,0.249997,0,0);-ms-transform:matrix(0.262452,0.001312,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.262452,0.001312,-0.001250,0.249997,0,0);}
.m57_c01060{transform:matrix(0.264381,0.003173,-0.003000,0.249982,0,0);-ms-transform:matrix(0.264381,0.003173,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.264381,0.003173,-0.003000,0.249982,0,0);}
.m3c_c01060{transform:matrix(0.264810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264810,0.000000,0.000000,0.250000,0,0);}
.m5d_c01060{transform:matrix(0.266051,0.003193,-0.003000,0.249982,0,0);-ms-transform:matrix(0.266051,0.003193,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.266051,0.003193,-0.003000,0.249982,0,0);}
.m4c_c01060{transform:matrix(0.266701,0.003200,-0.003000,0.249982,0,0);-ms-transform:matrix(0.266701,0.003200,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.266701,0.003200,-0.003000,0.249982,0,0);}
.m52_c01060{transform:matrix(0.268061,0.003217,-0.003000,0.249982,0,0);-ms-transform:matrix(0.268061,0.003217,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.268061,0.003217,-0.003000,0.249982,0,0);}
.m4d_c01060{transform:matrix(0.268741,0.003225,-0.003000,0.249982,0,0);-ms-transform:matrix(0.268741,0.003225,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.268741,0.003225,-0.003000,0.249982,0,0);}
.m13_c01060{transform:matrix(0.270662,0.001353,-0.001250,0.249997,0,0);-ms-transform:matrix(0.270662,0.001353,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.270662,0.001353,-0.001250,0.249997,0,0);}
.m41_c01060{transform:matrix(0.270870,0.003250,-0.003000,0.249982,0,0);-ms-transform:matrix(0.270870,0.003250,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.270870,0.003250,-0.003000,0.249982,0,0);}
.maa_c01060{transform:matrix(0.271045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271045,0.000000,0.000000,0.250000,0,0);}
.m64_c01060{transform:matrix(0.271242,0.003526,-0.003250,0.249979,0,0);-ms-transform:matrix(0.271242,0.003526,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.271242,0.003526,-0.003250,0.249979,0,0);}
.m42_c01060{transform:matrix(0.271860,0.003262,-0.003000,0.249982,0,0);-ms-transform:matrix(0.271860,0.003262,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.271860,0.003262,-0.003000,0.249982,0,0);}
.m98_c01060{transform:matrix(0.272075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272075,0.000000,0.000000,0.250000,0,0);}
.m6d_c01060{transform:matrix(0.272286,-0.005446,0.004999,0.249950,0,0);-ms-transform:matrix(0.272286,-0.005446,0.004999,0.249950,0,0);-webkit-transform:matrix(0.272286,-0.005446,0.004999,0.249950,0,0);}
.mbd_c01060{transform:matrix(0.272309,0.004085,-0.003750,0.249972,0,0);-ms-transform:matrix(0.272309,0.004085,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.272309,0.004085,-0.003750,0.249972,0,0);}
.mba_c01060{transform:matrix(0.272325,0.004357,-0.003999,0.249968,0,0);-ms-transform:matrix(0.272325,0.004357,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.272325,0.004357,-0.003999,0.249968,0,0);}
.m63_c01060{transform:matrix(0.273127,0.003551,-0.003250,0.249979,0,0);-ms-transform:matrix(0.273127,0.003551,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.273127,0.003551,-0.003250,0.249979,0,0);}
.m43_c01060{transform:matrix(0.273290,0.003279,-0.003000,0.249982,0,0);-ms-transform:matrix(0.273290,0.003279,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.273290,0.003279,-0.003000,0.249982,0,0);}
.m39_c01060{transform:matrix(0.273955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273955,0.000000,0.000000,0.250000,0,0);}
.m15_c01060{transform:matrix(0.274217,0.001371,-0.001250,0.249997,0,0);-ms-transform:matrix(0.274217,0.001371,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.274217,0.001371,-0.001250,0.249997,0,0);}
.m2f_c01060{transform:matrix(0.274400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274400,0.000000,0.000000,0.250000,0,0);}
.m9f_c01060{transform:matrix(0.275180,0.004403,-0.003999,0.249968,0,0);-ms-transform:matrix(0.275180,0.004403,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.275180,0.004403,-0.003999,0.249968,0,0);}
.m48_c01060{transform:matrix(0.275435,0.003305,-0.003000,0.249982,0,0);-ms-transform:matrix(0.275435,0.003305,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.275435,0.003305,-0.003000,0.249982,0,0);}
.m31_c01060{transform:matrix(0.275975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275975,0.000000,0.000000,0.250000,0,0);}
.m5c_c01060{transform:matrix(0.276020,0.003312,-0.003000,0.249982,0,0);-ms-transform:matrix(0.276020,0.003312,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.276020,0.003312,-0.003000,0.249982,0,0);}
.m45_c01060{transform:matrix(0.276210,0.003315,-0.003000,0.249982,0,0);-ms-transform:matrix(0.276210,0.003315,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.276210,0.003315,-0.003000,0.249982,0,0);}
.m59_c01060{transform:matrix(0.276470,0.003318,-0.003000,0.249982,0,0);-ms-transform:matrix(0.276470,0.003318,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.276470,0.003318,-0.003000,0.249982,0,0);}
.ma4_c01060{transform:matrix(0.276545,0.004425,-0.003999,0.249968,0,0);-ms-transform:matrix(0.276545,0.004425,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.276545,0.004425,-0.003999,0.249968,0,0);}
.m61_c01060{transform:matrix(0.276847,0.003599,-0.003250,0.249979,0,0);-ms-transform:matrix(0.276847,0.003599,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.276847,0.003599,-0.003250,0.249979,0,0);}
.m56_c01060{transform:matrix(0.276850,0.003322,-0.003000,0.249982,0,0);-ms-transform:matrix(0.276850,0.003322,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.276850,0.003322,-0.003000,0.249982,0,0);}
.m6f_c01060{transform:matrix(0.277170,-0.005543,0.004999,0.249950,0,0);-ms-transform:matrix(0.277170,-0.005543,0.004999,0.249950,0,0);-webkit-transform:matrix(0.277170,-0.005543,0.004999,0.249950,0,0);}
.m40_c01060{transform:matrix(0.278375,0.003340,-0.003000,0.249982,0,0);-ms-transform:matrix(0.278375,0.003340,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.278375,0.003340,-0.003000,0.249982,0,0);}
.m55_c01060{transform:matrix(0.278430,0.003341,-0.003000,0.249982,0,0);-ms-transform:matrix(0.278430,0.003341,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.278430,0.003341,-0.003000,0.249982,0,0);}
.m4f_c01060{transform:matrix(0.278560,0.003343,-0.003000,0.249982,0,0);-ms-transform:matrix(0.278560,0.003343,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.278560,0.003343,-0.003000,0.249982,0,0);}
.m38_c01060{transform:matrix(0.279265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279265,0.000000,0.000000,0.250000,0,0);}
.m2e_c01060{transform:matrix(0.279372,0.001397,-0.001250,0.249997,0,0);-ms-transform:matrix(0.279372,0.001397,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.279372,0.001397,-0.001250,0.249997,0,0);}
.m4a_c01060{transform:matrix(0.280570,0.003367,-0.003000,0.249982,0,0);-ms-transform:matrix(0.280570,0.003367,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.280570,0.003367,-0.003000,0.249982,0,0);}
.m70_c01060{transform:matrix(0.280984,-0.005620,0.004999,0.249950,0,0);-ms-transform:matrix(0.280984,-0.005620,0.004999,0.249950,0,0);-webkit-transform:matrix(0.280984,-0.005620,0.004999,0.249950,0,0);}
.mb9_c01060{transform:matrix(0.281449,0.004503,-0.003999,0.249968,0,0);-ms-transform:matrix(0.281449,0.004503,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.281449,0.004503,-0.003999,0.249968,0,0);}
.m19_c01060{transform:matrix(0.284511,0.001423,-0.001250,0.249997,0,0);-ms-transform:matrix(0.284511,0.001423,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.284511,0.001423,-0.001250,0.249997,0,0);}
.m36_c01060{transform:matrix(0.286095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286095,0.000000,0.000000,0.250000,0,0);}
.mb3_c01060{transform:matrix(0.286738,0.004588,-0.003999,0.249968,0,0);-ms-transform:matrix(0.286738,0.004588,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.286738,0.004588,-0.003999,0.249968,0,0);}
.mb4_c01060{transform:matrix(0.287673,0.004603,-0.003999,0.249968,0,0);-ms-transform:matrix(0.287673,0.004603,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.287673,0.004603,-0.003999,0.249968,0,0);}
.mb6_c01060{transform:matrix(0.289463,0.004631,-0.003999,0.249968,0,0);-ms-transform:matrix(0.289463,0.004631,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.289463,0.004631,-0.003999,0.249968,0,0);}
.m4_c01060{transform:matrix(0.291435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291435,0.000000,0.000000,0.250000,0,0);}
.m62_c01060{transform:matrix(0.291575,0.003790,-0.003250,0.249979,0,0);-ms-transform:matrix(0.291575,0.003790,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.291575,0.003790,-0.003250,0.249979,0,0);}
.mb8_c01060{transform:matrix(0.297067,0.004753,-0.003999,0.249968,0,0);-ms-transform:matrix(0.297067,0.004753,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.297067,0.004753,-0.003999,0.249968,0,0);}
.mb2_c01060{transform:matrix(0.299357,0.004790,-0.003999,0.249968,0,0);-ms-transform:matrix(0.299357,0.004790,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.299357,0.004790,-0.003999,0.249968,0,0);}
.m34_c01060{transform:matrix(0.299755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299755,0.000000,0.000000,0.250000,0,0);}
.m3d_c01060{transform:matrix(0.301655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301655,0.000000,0.000000,0.250000,0,0);}
.m2_c01060{transform:matrix(0.301845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301845,0.000000,0.000000,0.250000,0,0);}
.m3a_c01060{transform:matrix(0.304275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304275,0.000000,0.000000,0.250000,0,0);}
.m1_c01060{transform:matrix(0.316085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316085,0.000000,0.000000,0.250000,0,0);}
.ma1_c01060{transform:matrix(0.317764,0.005084,-0.003999,0.249968,0,0);-ms-transform:matrix(0.317764,0.005084,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.317764,0.005084,-0.003999,0.249968,0,0);}
.mbb_c01060{transform:matrix(0.329145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329145,0.000000,0.000000,0.250000,0,0);}
.mb1_c01060{transform:matrix(0.344606,0.005514,-0.003999,0.249968,0,0);-ms-transform:matrix(0.344606,0.005514,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.344606,0.005514,-0.003999,0.249968,0,0);}
.m33_c01060{transform:matrix(0.345615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345615,0.000000,0.000000,0.250000,0,0);}
.mbc_c01060{transform:matrix(0.346475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346475,0.000000,0.000000,0.250000,0,0);}
.m10_c01060{transform:matrix(0.366875,0.001834,-0.001250,0.249997,0,0);-ms-transform:matrix(0.366875,0.001834,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.366875,0.001834,-0.001250,0.249997,0,0);}
.mc6_c01060{transform:matrix(0.430277,0.006454,-0.003750,0.249972,0,0);-ms-transform:matrix(0.430277,0.006454,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.430277,0.006454,-0.003750,0.249972,0,0);}
.mc7_c01060{transform:matrix(0.472217,0.007083,-0.003750,0.249972,0,0);-ms-transform:matrix(0.472217,0.007083,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.472217,0.007083,-0.003750,0.249972,0,0);}
.ma8_c01060{transform:matrix(0.539238,0.010246,-0.004749,0.249955,0,0);-ms-transform:matrix(0.539238,0.010246,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.539238,0.010246,-0.004749,0.249955,0,0);}
.ma5_c01060{transform:matrix(0.588414,0.011180,-0.004749,0.249955,0,0);-ms-transform:matrix(0.588414,0.011180,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.588414,0.011180,-0.004749,0.249955,0,0);}
.m0_c01060{transform:matrix(0.629680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.629680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.629680,0.000000,0.000000,0.250000,0,0);}
.mb_c01060{transform:matrix(0.793500,0.003968,-0.001250,0.249997,0,0);-ms-transform:matrix(0.793500,0.003968,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.793500,0.003968,-0.001250,0.249997,0,0);}
.ma6_c01060{transform:matrix(2.503508,0.047567,-0.004749,0.249955,0,0);-ms-transform:matrix(2.503508,0.047567,-0.004749,0.249955,0,0);-webkit-transform:matrix(2.503508,0.047567,-0.004749,0.249955,0,0);}
.ma9_c01060{transform:matrix(2.582724,0.049072,-0.004749,0.249955,0,0);-ms-transform:matrix(2.582724,0.049072,-0.004749,0.249955,0,0);-webkit-transform:matrix(2.582724,0.049072,-0.004749,0.249955,0,0);}
.m32_c01060{transform:matrix(3.227375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.227375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.227375,0.000000,0.000000,0.250000,0,0);}
.ma7_c01060{transform:matrix(5.864582,0.111427,-0.004749,0.249955,0,0);-ms-transform:matrix(5.864582,0.111427,-0.004749,0.249955,0,0);-webkit-transform:matrix(5.864582,0.111427,-0.004749,0.249955,0,0);}
.m5_c01060{transform:matrix(7.367990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(7.367990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(7.367990,0.000000,0.000000,0.250000,0,0);}
.v0_c01060{vertical-align:0.000000px;}
.ls0_c01060{letter-spacing:0.000000px;}
.sc__c01060{text-shadow:none;}
.sc0_c01060{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__c01060{-webkit-text-stroke:0px transparent;}
.sc0_c01060{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01060{word-spacing:0.000000px;}
.fc0_c01060{color:transparent;}
.fs0_c01060{font-size:18.000000px;}
.fs3_c01060{font-size:30.000000px;}
.fs15_c01060{font-size:30.005415px;}
.fsa_c01060{font-size:36.000000px;}
.fs18_c01060{font-size:42.004725px;}
.fs2_c01060{font-size:66.000000px;}
.fsc_c01060{font-size:66.005577px;}
.fs16_c01060{font-size:66.008447px;}
.fs9_c01060{font-size:72.000000px;}
.fs6_c01060{font-size:72.000900px;}
.fsb_c01060{font-size:72.005184px;}
.fs14_c01060{font-size:72.009215px;}
.fse_c01060{font-size:72.014399px;}
.fs12_c01060{font-size:78.000000px;}
.fs8_c01060{font-size:78.000975px;}
.fsf_c01060{font-size:78.001404px;}
.fs13_c01060{font-size:84.000000px;}
.fs7_c01060{font-size:84.001050px;}
.fs17_c01060{font-size:84.009449px;}
.fs11_c01060{font-size:84.010751px;}
.fsd_c01060{font-size:84.016798px;}
.fs1_c01060{font-size:90.000000px;}
.fs4_c01060{font-size:96.001200px;}
.fs10_c01060{font-size:96.001728px;}
.fs5_c01060{font-size:132.001650px;}
.y0_c01060{bottom:0.000000px;}
.yaf_c01060{bottom:42.390518px;}
.yae_c01060{bottom:47.236515px;}
.yad_c01060{bottom:47.789130px;}
.yac_c01060{bottom:61.617540px;}
.yab_c01060{bottom:62.281965px;}
.yaa_c01060{bottom:64.275060px;}
.ya9_c01060{bottom:65.071493px;}
.ya8_c01060{bottom:66.418252px;}
.ya7_c01060{bottom:68.099295px;}
.ya6_c01060{bottom:68.751143px;}
.ya5_c01060{bottom:70.406850px;}
.ya4_c01060{bottom:71.553000px;}
.ya3_c01060{bottom:112.320000px;}
.ya2_c01060{bottom:134.770848px;}
.ya1_c01060{bottom:135.811632px;}
.ya0_c01060{bottom:137.623416px;}
.y9f_c01060{bottom:138.141960px;}
.y9e_c01060{bottom:140.963664px;}
.y9d_c01060{bottom:141.680688px;}
.y9c_c01060{bottom:142.579536px;}
.y9b_c01060{bottom:143.970336px;}
.y9a_c01060{bottom:145.369560px;}
.y99_c01060{bottom:146.613000px;}
.y98_c01060{bottom:183.697500px;}
.y97_c01060{bottom:217.764123px;}
.y96_c01060{bottom:218.161014px;}
.y95_c01060{bottom:221.129574px;}
.y94_c01060{bottom:222.674018px;}
.y93_c01060{bottom:223.023000px;}
.y92_c01060{bottom:234.191928px;}
.y91_c01060{bottom:234.710328px;}
.y90_c01060{bottom:235.241760px;}
.y8f_c01060{bottom:236.490432px;}
.y8e_c01060{bottom:236.835216px;}
.y8d_c01060{bottom:238.413000px;}
.y8c_c01060{bottom:306.091500px;}
.y86_c01060{bottom:340.474500px;}
.y87_c01060{bottom:341.470500px;}
.y88_c01060{bottom:342.604500px;}
.y89_c01060{bottom:343.629000px;}
.y8a_c01060{bottom:345.190500px;}
.y8b_c01060{bottom:345.633000px;}
.y85_c01060{bottom:379.923000px;}
.y84_c01060{bottom:407.027604px;}
.y83_c01060{bottom:407.369460px;}
.y82_c01060{bottom:408.453780px;}
.y81_c01060{bottom:408.976500px;}
.y80_c01060{bottom:410.735268px;}
.y7f_c01060{bottom:411.296172px;}
.y7e_c01060{bottom:412.878132px;}
.y7d_c01060{bottom:413.572932px;}
.y7c_c01060{bottom:414.627300px;}
.y7b_c01060{bottom:415.348452px;}
.y7a_c01060{bottom:415.867260px;}
.y79_c01060{bottom:416.929908px;}
.y78_c01060{bottom:417.416004px;}
.y77_c01060{bottom:417.961500px;}
.y72_c01060{bottom:446.304384px;}
.y73_c01060{bottom:446.483844px;}
.y74_c01060{bottom:446.653344px;}
.y75_c01060{bottom:446.874024px;}
.y76_c01060{bottom:449.303934px;}
.y65_c01060{bottom:483.300000px;}
.y66_c01060{bottom:483.763311px;}
.y67_c01060{bottom:484.020936px;}
.y68_c01060{bottom:484.615485px;}
.y69_c01060{bottom:484.887591px;}
.y6a_c01060{bottom:485.548488px;}
.y6b_c01060{bottom:485.762238px;}
.y6c_c01060{bottom:485.883855px;}
.y6d_c01060{bottom:486.672696px;}
.y6e_c01060{bottom:486.807156px;}
.y6f_c01060{bottom:487.075986px;}
.y70_c01060{bottom:487.610604px;}
.y71_c01060{bottom:488.008431px;}
.y61_c01060{bottom:518.938290px;}
.y62_c01060{bottom:520.714860px;}
.y63_c01060{bottom:522.054120px;}
.y64_c01060{bottom:524.648100px;}
.y5a_c01060{bottom:555.126000px;}
.y5b_c01060{bottom:556.665030px;}
.y5c_c01060{bottom:558.419790px;}
.y5d_c01060{bottom:560.600850px;}
.y5e_c01060{bottom:562.414470px;}
.y5f_c01060{bottom:565.923240px;}
.y60_c01060{bottom:566.586870px;}
.y59_c01060{bottom:588.595443px;}
.y58_c01060{bottom:589.374409px;}
.y57_c01060{bottom:590.533431px;}
.y56_c01060{bottom:591.519702px;}
.y55_c01060{bottom:592.811362px;}
.y54_c01060{bottom:594.120748px;}
.y53_c01060{bottom:594.541500px;}
.y52_c01060{bottom:624.102360px;}
.y51_c01060{bottom:624.537108px;}
.y50_c01060{bottom:625.419768px;}
.y4f_c01060{bottom:625.875990px;}
.y4e_c01060{bottom:626.310378px;}
.y4d_c01060{bottom:627.196494px;}
.y4c_c01060{bottom:627.740988px;}
.y4b_c01060{bottom:628.078884px;}
.y4a_c01060{bottom:628.413162px;}
.y49_c01060{bottom:629.401110px;}
.y48_c01060{bottom:630.599562px;}
.y47_c01060{bottom:630.917928px;}
.y46_c01060{bottom:631.259262px;}
.y45_c01060{bottom:662.315298px;}
.y44_c01060{bottom:662.570736px;}
.y43_c01060{bottom:663.234882px;}
.y42_c01060{bottom:664.297998px;}
.y41_c01060{bottom:664.949040px;}
.y40_c01060{bottom:666.005712px;}
.y3f_c01060{bottom:667.200948px;}
.y3e_c01060{bottom:667.572630px;}
.y3d_c01060{bottom:667.981500px;}
.y3b_c01060{bottom:698.901630px;}
.y3c_c01060{bottom:698.902068px;}
.y3a_c01060{bottom:728.897892px;}
.y39_c01060{bottom:729.293190px;}
.y38_c01060{bottom:729.698208px;}
.y37_c01060{bottom:730.900590px;}
.y36_c01060{bottom:731.431986px;}
.y35_c01060{bottom:732.478434px;}
.y34_c01060{bottom:733.819884px;}
.y33_c01060{bottom:735.131868px;}
.y32_c01060{bottom:736.337094px;}
.y31_c01060{bottom:736.695744px;}
.y30_c01060{bottom:737.101500px;}
.y2f_c01060{bottom:768.526500px;}
.y2e_c01060{bottom:789.864000px;}
.y2d_c01060{bottom:805.098000px;}
.y2c_c01060{bottom:856.912298px;}
.y2b_c01060{bottom:857.340960px;}
.y2a_c01060{bottom:858.759420px;}
.y29_c01060{bottom:859.352040px;}
.y28_c01060{bottom:860.068515px;}
.y27_c01060{bottom:860.643840px;}
.y26_c01060{bottom:861.640733px;}
.y25_c01060{bottom:862.489290px;}
.y24_c01060{bottom:862.895932px;}
.y23_c01060{bottom:863.191170px;}
.y18_c01060{bottom:926.909055px;}
.y19_c01060{bottom:927.213915px;}
.y1a_c01060{bottom:927.524340px;}
.y1b_c01060{bottom:927.832605px;}
.y1c_c01060{bottom:928.184550px;}
.y1d_c01060{bottom:928.367408px;}
.y1e_c01060{bottom:928.710495px;}
.y1f_c01060{bottom:928.853257px;}
.y20_c01060{bottom:929.290687px;}
.y21_c01060{bottom:929.379428px;}
.y22_c01060{bottom:929.745180px;}
.yf_c01060{bottom:961.371075px;}
.y17_c01060{bottom:961.371112px;}
.y10_c01060{bottom:961.371232px;}
.y13_c01060{bottom:961.371247px;}
.y11_c01060{bottom:961.371690px;}
.y16_c01060{bottom:961.371705px;}
.y12_c01060{bottom:961.371847px;}
.y14_c01060{bottom:961.371855px;}
.y15_c01060{bottom:961.372155px;}
.ye_c01060{bottom:996.273960px;}
.yd_c01060{bottom:996.274110px;}
.yc_c01060{bottom:1028.039940px;}
.yb_c01060{bottom:1028.362635px;}
.ya_c01060{bottom:1029.326475px;}
.y9_c01060{bottom:1029.362970px;}
.y8_c01060{bottom:1029.971782px;}
.y7_c01060{bottom:1030.195882px;}
.y6_c01060{bottom:1030.742595px;}
.y5_c01060{bottom:1031.130000px;}
.y4_c01060{bottom:1091.856000px;}
.y3_c01060{bottom:1106.766000px;}
.y2_c01060{bottom:1191.664500px;}
.y1_c01060{bottom:1228.770000px;}
.h2_c01060{height:18.000000px;}
.h5_c01060{height:30.000000px;}
.h17_c01060{height:30.005415px;}
.hc_c01060{height:36.000000px;}
.h1a_c01060{height:42.004725px;}
.h4_c01060{height:66.000000px;}
.he_c01060{height:66.005577px;}
.h18_c01060{height:66.008447px;}
.hb_c01060{height:72.000000px;}
.h8_c01060{height:72.000900px;}
.hd_c01060{height:72.005184px;}
.h16_c01060{height:72.009215px;}
.h10_c01060{height:72.014399px;}
.h14_c01060{height:78.000000px;}
.ha_c01060{height:78.000975px;}
.h11_c01060{height:78.001404px;}
.h15_c01060{height:84.000000px;}
.h9_c01060{height:84.001050px;}
.h19_c01060{height:84.009449px;}
.h13_c01060{height:84.010751px;}
.hf_c01060{height:84.016798px;}
.h3_c01060{height:90.000000px;}
.h6_c01060{height:96.001200px;}
.h12_c01060{height:96.001728px;}
.h7_c01060{height:132.001650px;}
.h0_c01060{height:1246.320000px;}
.h1_c01060{height:1246.500000px;}
.w0_c01060{width:900.450000px;}
.w1_c01060{width:900.750000px;}
.x0_c01060{left:0.000000px;}
.x11_c01060{left:86.670480px;}
.x5a_c01060{left:94.572000px;}
.x7_c01060{left:96.034500px;}
.x31_c01060{left:107.346000px;}
.x22_c01060{left:118.961400px;}
.x23_c01060{left:141.707992px;}
.x1a_c01060{left:171.833827px;}
.x8_c01060{left:173.515500px;}
.x45_c01060{left:183.919860px;}
.x47_c01060{left:215.289000px;}
.x24_c01060{left:238.244130px;}
.x1b_c01060{left:249.552322px;}
.x46_c01060{left:250.882860px;}
.x38_c01060{left:252.731100px;}
.x51_c01060{left:259.137000px;}
.x12_c01060{left:260.551830px;}
.xf_c01060{left:267.842520px;}
.x4e_c01060{left:270.384000px;}
.x32_c01060{left:271.482000px;}
.x5e_c01060{left:281.322000px;}
.x9_c01060{left:282.858000px;}
.x58_c01060{left:291.600000px;}
.x2a_c01060{left:292.680000px;}
.x13_c01060{left:303.752910px;}
.x10_c01060{left:313.473660px;}
.x25_c01060{left:314.919562px;}
.x55_c01060{left:324.412500px;}
.x1c_c01060{left:326.502787px;}
.xa_c01060{left:327.678000px;}
.x4c_c01060{left:337.335591px;}
.x56_c01060{left:342.780000px;}
.x5b_c01060{left:346.663500px;}
.x29_c01060{left:358.020000px;}
.x6_c01060{left:359.100000px;}
.x3_c01060{left:360.180000px;}
.x42_c01060{left:369.096000px;}
.x33_c01060{left:380.814000px;}
.x14_c01060{left:382.323375px;}
.x3b_c01060{left:391.925718px;}
.x5c_c01060{left:402.841500px;}
.x2b_c01060{left:405.270000px;}
.x1d_c01060{left:414.517747px;}
.x2_c01060{left:417.960000px;}
.x57_c01060{left:424.066500px;}
.x3c_c01060{left:425.408028px;}
.x15_c01060{left:427.144492px;}
.x5f_c01060{left:436.848000px;}
.x53_c01060{left:446.091000px;}
.x2c_c01060{left:447.660000px;}
.xb_c01060{left:449.440500px;}
.x1_c01060{left:452.520000px;}
.xc_c01060{left:456.739500px;}
.x52_c01060{left:458.058000px;}
.x4_c01060{left:459.540000px;}
.x28_c01060{left:469.530000px;}
.x2d_c01060{left:492.210000px;}
.x5_c01060{left:493.830000px;}
.x39_c01060{left:502.924500px;}
.x48_c01060{left:505.506000px;}
.x59_c01060{left:513.000000px;}
.x16_c01060{left:514.625182px;}
.x4f_c01060{left:523.651500px;}
.x49_c01060{left:525.775500px;}
.x1e_c01060{left:545.734657px;}
.x17_c01060{left:547.566007px;}
.x3a_c01060{left:558.270000px;}
.x26_c01060{left:568.985400px;}
.x61_c01060{left:572.067082px;}
.x34_c01060{left:579.805500px;}
.x18_c01060{left:581.856862px;}
.x54_c01060{left:589.747500px;}
.x2e_c01060{left:591.030000px;}
.x27_c01060{left:601.916580px;}
.x2f_c01060{left:624.510000px;}
.x43_c01060{left:635.215500px;}
.x3d_c01060{left:645.737820px;}
.xd_c01060{left:649.507500px;}
.x30_c01060{left:656.910000px;}
.x44_c01060{left:668.397000px;}
.x40_c01060{left:679.477500px;}
.x1f_c01060{left:690.702682px;}
.x19_c01060{left:702.278370px;}
.x20_c01060{left:712.855680px;}
.xe_c01060{left:714.046500px;}
.x35_c01060{left:724.287000px;}
.x41_c01060{left:739.398000px;}
.x60_c01060{left:756.895500px;}
.x36_c01060{left:758.038500px;}
.x50_c01060{left:769.071000px;}
.x3e_c01060{left:779.689542px;}
.x37_c01060{left:790.980000px;}
.x21_c01060{left:804.109290px;}
.x4a_c01060{left:813.567000px;}
.x3f_c01060{left:823.169586px;}
.x5d_c01060{left:834.706500px;}
.x4d_c01060{left:867.603777px;}
.x4b_c01060{left:879.871500px;}
@media print{
.v0_c01060{vertical-align:0.000000pt;}
.ls0_c01060{letter-spacing:0.000000pt;}
.ws0_c01060{word-spacing:0.000000pt;}
.fs0_c01060{font-size:16.000000pt;}
.fs3_c01060{font-size:26.666667pt;}
.fs15_c01060{font-size:26.671480pt;}
.fsa_c01060{font-size:32.000000pt;}
.fs18_c01060{font-size:37.337533pt;}
.fs2_c01060{font-size:58.666667pt;}
.fsc_c01060{font-size:58.671624pt;}
.fs16_c01060{font-size:58.674176pt;}
.fs9_c01060{font-size:64.000000pt;}
.fs6_c01060{font-size:64.000800pt;}
.fsb_c01060{font-size:64.004608pt;}
.fs14_c01060{font-size:64.008191pt;}
.fse_c01060{font-size:64.012799pt;}
.fs12_c01060{font-size:69.333333pt;}
.fs8_c01060{font-size:69.334200pt;}
.fsf_c01060{font-size:69.334581pt;}
.fs13_c01060{font-size:74.666667pt;}
.fs7_c01060{font-size:74.667600pt;}
.fs17_c01060{font-size:74.675066pt;}
.fs11_c01060{font-size:74.676223pt;}
.fsd_c01060{font-size:74.681599pt;}
.fs1_c01060{font-size:80.000000pt;}
.fs4_c01060{font-size:85.334400pt;}
.fs10_c01060{font-size:85.334869pt;}
.fs5_c01060{font-size:117.334800pt;}
.y0_c01060{bottom:0.000000pt;}
.yaf_c01060{bottom:37.680460pt;}
.yae_c01060{bottom:41.988013pt;}
.yad_c01060{bottom:42.479227pt;}
.yac_c01060{bottom:54.771147pt;}
.yab_c01060{bottom:55.361747pt;}
.yaa_c01060{bottom:57.133387pt;}
.ya9_c01060{bottom:57.841327pt;}
.ya8_c01060{bottom:59.038447pt;}
.ya7_c01060{bottom:60.532707pt;}
.ya6_c01060{bottom:61.112127pt;}
.ya5_c01060{bottom:62.583867pt;}
.ya4_c01060{bottom:63.602667pt;}
.ya3_c01060{bottom:99.840000pt;}
.ya2_c01060{bottom:119.796309pt;}
.ya1_c01060{bottom:120.721451pt;}
.ya0_c01060{bottom:122.331925pt;}
.y9f_c01060{bottom:122.792853pt;}
.y9e_c01060{bottom:125.301035pt;}
.y9d_c01060{bottom:125.938389pt;}
.y9c_c01060{bottom:126.737365pt;}
.y9b_c01060{bottom:127.973632pt;}
.y9a_c01060{bottom:129.217387pt;}
.y99_c01060{bottom:130.322667pt;}
.y98_c01060{bottom:163.286667pt;}
.y97_c01060{bottom:193.568109pt;}
.y96_c01060{bottom:193.920901pt;}
.y95_c01060{bottom:196.559621pt;}
.y94_c01060{bottom:197.932460pt;}
.y93_c01060{bottom:198.242667pt;}
.y92_c01060{bottom:208.170603pt;}
.y91_c01060{bottom:208.631403pt;}
.y90_c01060{bottom:209.103787pt;}
.y8f_c01060{bottom:210.213717pt;}
.y8e_c01060{bottom:210.520192pt;}
.y8d_c01060{bottom:211.922667pt;}
.y8c_c01060{bottom:272.081333pt;}
.y86_c01060{bottom:302.644000pt;}
.y87_c01060{bottom:303.529333pt;}
.y88_c01060{bottom:304.537333pt;}
.y89_c01060{bottom:305.448000pt;}
.y8a_c01060{bottom:306.836000pt;}
.y8b_c01060{bottom:307.229333pt;}
.y85_c01060{bottom:337.709333pt;}
.y84_c01060{bottom:361.802315pt;}
.y83_c01060{bottom:362.106187pt;}
.y82_c01060{bottom:363.070027pt;}
.y81_c01060{bottom:363.534667pt;}
.y80_c01060{bottom:365.098016pt;}
.y7f_c01060{bottom:365.596597pt;}
.y7e_c01060{bottom:367.002784pt;}
.y7d_c01060{bottom:367.620384pt;}
.y7c_c01060{bottom:368.557600pt;}
.y7b_c01060{bottom:369.198624pt;}
.y7a_c01060{bottom:369.659787pt;}
.y79_c01060{bottom:370.604363pt;}
.y78_c01060{bottom:371.036448pt;}
.y77_c01060{bottom:371.521333pt;}
.y72_c01060{bottom:396.715008pt;}
.y73_c01060{bottom:396.874528pt;}
.y74_c01060{bottom:397.025195pt;}
.y75_c01060{bottom:397.221355pt;}
.y76_c01060{bottom:399.381275pt;}
.y65_c01060{bottom:429.600000pt;}
.y66_c01060{bottom:430.011832pt;}
.y67_c01060{bottom:430.240832pt;}
.y68_c01060{bottom:430.769320pt;}
.y69_c01060{bottom:431.011192pt;}
.y6a_c01060{bottom:431.598656pt;}
.y6b_c01060{bottom:431.788656pt;}
.y6c_c01060{bottom:431.896760pt;}
.y6d_c01060{bottom:432.597952pt;}
.y6e_c01060{bottom:432.717472pt;}
.y6f_c01060{bottom:432.956432pt;}
.y70_c01060{bottom:433.431648pt;}
.y71_c01060{bottom:433.785272pt;}
.y61_c01060{bottom:461.278480pt;}
.y62_c01060{bottom:462.857653pt;}
.y63_c01060{bottom:464.048107pt;}
.y64_c01060{bottom:466.353867pt;}
.y5a_c01060{bottom:493.445333pt;}
.y5b_c01060{bottom:494.813360pt;}
.y5c_c01060{bottom:496.373147pt;}
.y5d_c01060{bottom:498.311867pt;}
.y5e_c01060{bottom:499.923973pt;}
.y5f_c01060{bottom:503.042880pt;}
.y60_c01060{bottom:503.632773pt;}
.y59_c01060{bottom:523.195949pt;}
.y58_c01060{bottom:523.888364pt;}
.y57_c01060{bottom:524.918605pt;}
.y56_c01060{bottom:525.795291pt;}
.y55_c01060{bottom:526.943433pt;}
.y54_c01060{bottom:528.107332pt;}
.y53_c01060{bottom:528.481333pt;}
.y52_c01060{bottom:554.757653pt;}
.y51_c01060{bottom:555.144096pt;}
.y50_c01060{bottom:555.928683pt;}
.y4f_c01060{bottom:556.334213pt;}
.y4e_c01060{bottom:556.720336pt;}
.y4d_c01060{bottom:557.507995pt;}
.y4c_c01060{bottom:557.991989pt;}
.y4b_c01060{bottom:558.292341pt;}
.y4a_c01060{bottom:558.589477pt;}
.y49_c01060{bottom:559.467653pt;}
.y48_c01060{bottom:560.532944pt;}
.y47_c01060{bottom:560.815936pt;}
.y46_c01060{bottom:561.119344pt;}
.y45_c01060{bottom:588.724709pt;}
.y44_c01060{bottom:588.951765pt;}
.y43_c01060{bottom:589.542117pt;}
.y42_c01060{bottom:590.487109pt;}
.y41_c01060{bottom:591.065813pt;}
.y40_c01060{bottom:592.005077pt;}
.y3f_c01060{bottom:593.067509pt;}
.y3e_c01060{bottom:593.397893pt;}
.y3d_c01060{bottom:593.761333pt;}
.y3b_c01060{bottom:621.245893pt;}
.y3c_c01060{bottom:621.246283pt;}
.y3a_c01060{bottom:647.909237pt;}
.y39_c01060{bottom:648.260613pt;}
.y38_c01060{bottom:648.620629pt;}
.y37_c01060{bottom:649.689413pt;}
.y36_c01060{bottom:650.161765pt;}
.y35_c01060{bottom:651.091941pt;}
.y34_c01060{bottom:652.284341pt;}
.y33_c01060{bottom:653.450549pt;}
.y32_c01060{bottom:654.521861pt;}
.y31_c01060{bottom:654.840661pt;}
.y30_c01060{bottom:655.201333pt;}
.y2f_c01060{bottom:683.134667pt;}
.y2e_c01060{bottom:702.101333pt;}
.y2d_c01060{bottom:715.642667pt;}
.y2c_c01060{bottom:761.699820pt;}
.y2b_c01060{bottom:762.080853pt;}
.y2a_c01060{bottom:763.341707pt;}
.y29_c01060{bottom:763.868480pt;}
.y28_c01060{bottom:764.505347pt;}
.y27_c01060{bottom:765.016747pt;}
.y26_c01060{bottom:765.902873pt;}
.y25_c01060{bottom:766.657147pt;}
.y24_c01060{bottom:767.018607pt;}
.y23_c01060{bottom:767.281040pt;}
.y18_c01060{bottom:823.919160pt;}
.y19_c01060{bottom:824.190147pt;}
.y1a_c01060{bottom:824.466080pt;}
.y1b_c01060{bottom:824.740093pt;}
.y1c_c01060{bottom:825.052933pt;}
.y1d_c01060{bottom:825.215473pt;}
.y1e_c01060{bottom:825.520440pt;}
.y1f_c01060{bottom:825.647340pt;}
.y20_c01060{bottom:826.036167pt;}
.y21_c01060{bottom:826.115047pt;}
.y22_c01060{bottom:826.440160pt;}
.yf_c01060{bottom:854.552067pt;}
.y17_c01060{bottom:854.552100pt;}
.y10_c01060{bottom:854.552207pt;}
.y13_c01060{bottom:854.552220pt;}
.y11_c01060{bottom:854.552613pt;}
.y16_c01060{bottom:854.552627pt;}
.y12_c01060{bottom:854.552753pt;}
.y14_c01060{bottom:854.552760pt;}
.y15_c01060{bottom:854.553027pt;}
.ye_c01060{bottom:885.576853pt;}
.yd_c01060{bottom:885.576987pt;}
.yc_c01060{bottom:913.813280pt;}
.yb_c01060{bottom:914.100120pt;}
.ya_c01060{bottom:914.956867pt;}
.y9_c01060{bottom:914.989307pt;}
.y8_c01060{bottom:915.530473pt;}
.y7_c01060{bottom:915.729673pt;}
.y6_c01060{bottom:916.215640pt;}
.y5_c01060{bottom:916.560000pt;}
.y4_c01060{bottom:970.538667pt;}
.y3_c01060{bottom:983.792000pt;}
.y2_c01060{bottom:1059.257333pt;}
.y1_c01060{bottom:1092.240000pt;}
.h2_c01060{height:16.000000pt;}
.h5_c01060{height:26.666667pt;}
.h17_c01060{height:26.671480pt;}
.hc_c01060{height:32.000000pt;}
.h1a_c01060{height:37.337533pt;}
.h4_c01060{height:58.666667pt;}
.he_c01060{height:58.671624pt;}
.h18_c01060{height:58.674176pt;}
.hb_c01060{height:64.000000pt;}
.h8_c01060{height:64.000800pt;}
.hd_c01060{height:64.004608pt;}
.h16_c01060{height:64.008191pt;}
.h10_c01060{height:64.012799pt;}
.h14_c01060{height:69.333333pt;}
.ha_c01060{height:69.334200pt;}
.h11_c01060{height:69.334581pt;}
.h15_c01060{height:74.666667pt;}
.h9_c01060{height:74.667600pt;}
.h19_c01060{height:74.675066pt;}
.h13_c01060{height:74.676223pt;}
.hf_c01060{height:74.681599pt;}
.h3_c01060{height:80.000000pt;}
.h6_c01060{height:85.334400pt;}
.h12_c01060{height:85.334869pt;}
.h7_c01060{height:117.334800pt;}
.h0_c01060{height:1107.840000pt;}
.h1_c01060{height:1108.000000pt;}
.w0_c01060{width:800.400000pt;}
.w1_c01060{width:800.666667pt;}
.x0_c01060{left:0.000000pt;}
.x11_c01060{left:77.040427pt;}
.x5a_c01060{left:84.064000pt;}
.x7_c01060{left:85.364000pt;}
.x31_c01060{left:95.418667pt;}
.x22_c01060{left:105.743467pt;}
.x23_c01060{left:125.962660pt;}
.x1a_c01060{left:152.741180pt;}
.x8_c01060{left:154.236000pt;}
.x45_c01060{left:163.484320pt;}
.x47_c01060{left:191.368000pt;}
.x24_c01060{left:211.772560pt;}
.x1b_c01060{left:221.824287pt;}
.x46_c01060{left:223.006987pt;}
.x38_c01060{left:224.649867pt;}
.x51_c01060{left:230.344000pt;}
.x12_c01060{left:231.601627pt;}
.xf_c01060{left:238.082240pt;}
.x4e_c01060{left:240.341333pt;}
.x32_c01060{left:241.317333pt;}
.x5e_c01060{left:250.064000pt;}
.x9_c01060{left:251.429333pt;}
.x58_c01060{left:259.200000pt;}
.x2a_c01060{left:260.160000pt;}
.x13_c01060{left:270.002587pt;}
.x10_c01060{left:278.643253pt;}
.x25_c01060{left:279.928500pt;}
.x55_c01060{left:288.366667pt;}
.x1c_c01060{left:290.224700pt;}
.xa_c01060{left:291.269333pt;}
.x4c_c01060{left:299.853859pt;}
.x56_c01060{left:304.693333pt;}
.x5b_c01060{left:308.145333pt;}
.x29_c01060{left:318.240000pt;}
.x6_c01060{left:319.200000pt;}
.x3_c01060{left:320.160000pt;}
.x42_c01060{left:328.085333pt;}
.x33_c01060{left:338.501333pt;}
.x14_c01060{left:339.843000pt;}
.x3b_c01060{left:348.378416pt;}
.x5c_c01060{left:358.081333pt;}
.x2b_c01060{left:360.240000pt;}
.x1d_c01060{left:368.460220pt;}
.x2_c01060{left:371.520000pt;}
.x57_c01060{left:376.948000pt;}
.x3c_c01060{left:378.140469pt;}
.x15_c01060{left:379.683993pt;}
.x5f_c01060{left:388.309333pt;}
.x53_c01060{left:396.525333pt;}
.x2c_c01060{left:397.920000pt;}
.xb_c01060{left:399.502667pt;}
.x1_c01060{left:402.240000pt;}
.xc_c01060{left:405.990667pt;}
.x52_c01060{left:407.162667pt;}
.x4_c01060{left:408.480000pt;}
.x28_c01060{left:417.360000pt;}
.x2d_c01060{left:437.520000pt;}
.x5_c01060{left:438.960000pt;}
.x39_c01060{left:447.044000pt;}
.x48_c01060{left:449.338667pt;}
.x59_c01060{left:456.000000pt;}
.x16_c01060{left:457.444607pt;}
.x4f_c01060{left:465.468000pt;}
.x49_c01060{left:467.356000pt;}
.x1e_c01060{left:485.097473pt;}
.x17_c01060{left:486.725340pt;}
.x3a_c01060{left:496.240000pt;}
.x26_c01060{left:505.764800pt;}
.x61_c01060{left:508.504073pt;}
.x34_c01060{left:515.382667pt;}
.x18_c01060{left:517.206100pt;}
.x54_c01060{left:524.220000pt;}
.x2e_c01060{left:525.360000pt;}
.x27_c01060{left:535.036960pt;}
.x2f_c01060{left:555.120000pt;}
.x43_c01060{left:564.636000pt;}
.x3d_c01060{left:573.989173pt;}
.xd_c01060{left:577.340000pt;}
.x30_c01060{left:583.920000pt;}
.x44_c01060{left:594.130667pt;}
.x40_c01060{left:603.980000pt;}
.x1f_c01060{left:613.957940pt;}
.x19_c01060{left:624.247440pt;}
.x20_c01060{left:633.649493pt;}
.xe_c01060{left:634.708000pt;}
.x35_c01060{left:643.810667pt;}
.x41_c01060{left:657.242667pt;}
.x60_c01060{left:672.796000pt;}
.x36_c01060{left:673.812000pt;}
.x50_c01060{left:683.618667pt;}
.x3e_c01060{left:693.057371pt;}
.x37_c01060{left:703.093333pt;}
.x21_c01060{left:714.763813pt;}
.x4a_c01060{left:723.170667pt;}
.x3f_c01060{left:731.706299pt;}
.x5d_c01060{left:741.961333pt;}
.x4d_c01060{left:771.203357pt;}
.x4b_c01060{left:782.108000pt;}
}





/* 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_c01061 {
    display:none;
  }
  .loading-indicator_c01061.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01061 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_c01061 { 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_c01061" -> "#page-container .classname_c01061")
 */
.pf_c01061 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01061 { /* 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_c01061.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01061 { /* 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_c01061 { /* 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_c01061 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01061 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01061 {overflow:visible;}
  }
}
.c_c01061 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01061 { /* 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_c01061:after { /* webkit #35443 */
  content: '';
}
.t_c01061:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01061 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 */
}
.__c01061 { /* 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_c01061 { /* info for Javascript */
  display:none;
}
.l_c01061 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01061 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01061 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01061: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_c01061 {
    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_c01061.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01061.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_c01061 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01061{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01061;src:url('chunks/assets/font_a922ad9dd70ab389832b6583.woff2')format("woff");}.ff1_c01061{font-family:ff1_c01061;line-height:1.000000;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;}
.mb_c01061{transform:matrix(0.096745,0.002419,-0.006248,0.249922,0,0);-ms-transform:matrix(0.096745,0.002419,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.096745,0.002419,-0.006248,0.249922,0,0);}
.m7_c01061{transform:matrix(0.120260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120260,0.000000,0.000000,0.250000,0,0);}
.m3_c01061{transform:matrix(0.181400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181400,0.000000,0.000000,0.250000,0,0);}
.m6_c01061{transform:matrix(0.230775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230775,0.000000,0.000000,0.250000,0,0);}
.ma_c01061{transform:matrix(0.256460,0.006411,-0.006248,0.249922,0,0);-ms-transform:matrix(0.256460,0.006411,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.256460,0.006411,-0.006248,0.249922,0,0);}
.m0_c01061{transform:matrix(0.312580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312580,0.000000,0.000000,0.250000,0,0);}
.m9_c01061{transform:matrix(0.355644,0.008891,-0.006248,0.249922,0,0);-ms-transform:matrix(0.355644,0.008891,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.355644,0.008891,-0.006248,0.249922,0,0);}
.mc_c01061{transform:matrix(0.367690,0.009192,-0.006248,0.249922,0,0);-ms-transform:matrix(0.367690,0.009192,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.367690,0.009192,-0.006248,0.249922,0,0);}
.m5_c01061{transform:matrix(0.404555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404555,0.000000,0.000000,0.250000,0,0);}
.m8_c01061{transform:matrix(0.443615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443615,0.000000,0.000000,0.250000,0,0);}
.m1_c01061{transform:matrix(0.468195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468195,0.000000,0.000000,0.250000,0,0);}
.m4_c01061{transform:matrix(0.840670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.840670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.840670,0.000000,0.000000,0.250000,0,0);}
.m2_c01061{transform:matrix(0.930175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.930175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.930175,0.000000,0.000000,0.250000,0,0);}
.v0_c01061{vertical-align:0.000000px;}
.ls0_c01061{letter-spacing:0.000000px;}
.sc__c01061{text-shadow:none;}
.sc0_c01061{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__c01061{-webkit-text-stroke:0px transparent;}
.sc0_c01061{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01061{word-spacing:0.000000px;}
.fc0_c01061{color:transparent;}
.fs0_c01061{font-size:12.000000px;}
.fs1_c01061{font-size:18.000000px;}
.fs3_c01061{font-size:24.007499px;}
.fs2_c01061{font-size:72.000000px;}
.y0_c01061{bottom:0.000000px;}
.y8_c01061{bottom:131.011162px;}
.y7_c01061{bottom:132.446100px;}
.y6_c01061{bottom:133.131338px;}
.y5_c01061{bottom:133.920000px;}
.y4_c01061{bottom:135.795000px;}
.y3_c01061{bottom:358.432500px;}
.y2_c01061{bottom:364.104000px;}
.y1_c01061{bottom:366.931500px;}
.h2_c01061{height:12.000000px;}
.h3_c01061{height:18.000000px;}
.h5_c01061{height:24.007499px;}
.h4_c01061{height:72.000000px;}
.h0_c01061{height:1246.320000px;}
.h1_c01061{height:1246.500000px;}
.w0_c01061{width:900.450000px;}
.w1_c01061{width:900.750000px;}
.x0_c01061{left:0.000000px;}
.x4_c01061{left:169.020000px;}
.x8_c01061{left:224.113500px;}
.x5_c01061{left:248.400000px;}
.x9_c01061{left:255.660000px;}
.xa_c01061{left:283.069500px;}
.x6_c01061{left:295.380000px;}
.x7_c01061{left:309.690000px;}
.xb_c01061{left:340.467000px;}
.x3_c01061{left:536.220000px;}
.x1_c01061{left:556.740000px;}
.x2_c01061{left:569.430000px;}
@media print{
.v0_c01061{vertical-align:0.000000pt;}
.ls0_c01061{letter-spacing:0.000000pt;}
.ws0_c01061{word-spacing:0.000000pt;}
.fs0_c01061{font-size:10.666667pt;}
.fs1_c01061{font-size:16.000000pt;}
.fs3_c01061{font-size:21.339999pt;}
.fs2_c01061{font-size:64.000000pt;}
.y0_c01061{bottom:0.000000pt;}
.y8_c01061{bottom:116.454367pt;}
.y7_c01061{bottom:117.729867pt;}
.y6_c01061{bottom:118.338967pt;}
.y5_c01061{bottom:119.040000pt;}
.y4_c01061{bottom:120.706667pt;}
.y3_c01061{bottom:318.606667pt;}
.y2_c01061{bottom:323.648000pt;}
.y1_c01061{bottom:326.161333pt;}
.h2_c01061{height:10.666667pt;}
.h3_c01061{height:16.000000pt;}
.h5_c01061{height:21.339999pt;}
.h4_c01061{height:64.000000pt;}
.h0_c01061{height:1107.840000pt;}
.h1_c01061{height:1108.000000pt;}
.w0_c01061{width:800.400000pt;}
.w1_c01061{width:800.666667pt;}
.x0_c01061{left:0.000000pt;}
.x4_c01061{left:150.240000pt;}
.x8_c01061{left:199.212000pt;}
.x5_c01061{left:220.800000pt;}
.x9_c01061{left:227.253333pt;}
.xa_c01061{left:251.617333pt;}
.x6_c01061{left:262.560000pt;}
.x7_c01061{left:275.280000pt;}
.xb_c01061{left:302.637333pt;}
.x3_c01061{left:476.640000pt;}
.x1_c01061{left:494.880000pt;}
.x2_c01061{left:506.160000pt;}
}





/* 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_c01062 {
    display:none;
  }
  .loading-indicator_c01062.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01062 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_c01062 { 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_c01062" -> "#page-container .classname_c01062")
 */
.pf_c01062 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01062 { /* 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_c01062.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01062 { /* 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_c01062 { /* 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_c01062 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01062 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01062 {overflow:visible;}
  }
}
.c_c01062 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01062 { /* 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_c01062:after { /* webkit #35443 */
  content: '';
}
.t_c01062:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01062 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 */
}
.__c01062 { /* 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_c01062 { /* info for Javascript */
  display:none;
}
.l_c01062 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01062 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01062 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01062: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_c01062 {
    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_c01062.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01062.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_c01062 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01062{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01062;src:url('chunks/assets/font_c605e72f209fc835e906f064.woff2')format("woff");}.ff1_c01062{font-family:ff1_c01062;line-height:1.000000;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;}
.m5f_c01062{transform:matrix(0.007070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.007070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.007070,0.000000,0.000000,0.250000,0,0);}
.m63_c01062{transform:matrix(0.007905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.007905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.007905,0.000000,0.000000,0.250000,0,0);}
.m4f_c01062{transform:matrix(0.009790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.009790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.009790,0.000000,0.000000,0.250000,0,0);}
.m1f_c01062{transform:matrix(0.010942,-0.000252,0.005748,0.249934,0,0);-ms-transform:matrix(0.010942,-0.000252,0.005748,0.249934,0,0);-webkit-transform:matrix(0.010942,-0.000252,0.005748,0.249934,0,0);}
.m92_c01062{transform:matrix(0.012478,-0.000250,0.004999,0.249950,0,0);-ms-transform:matrix(0.012478,-0.000250,0.004999,0.249950,0,0);-webkit-transform:matrix(0.012478,-0.000250,0.004999,0.249950,0,0);}
.m1a_c01062{transform:matrix(0.024469,-0.000563,0.005748,0.249934,0,0);-ms-transform:matrix(0.024469,-0.000563,0.005748,0.249934,0,0);-webkit-transform:matrix(0.024469,-0.000563,0.005748,0.249934,0,0);}
.m1b_c01062{transform:matrix(0.071341,-0.001641,0.005748,0.249934,0,0);-ms-transform:matrix(0.071341,-0.001641,0.005748,0.249934,0,0);-webkit-transform:matrix(0.071341,-0.001641,0.005748,0.249934,0,0);}
.m53_c01062{transform:matrix(0.100780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100780,0.000000,0.000000,0.250000,0,0);}
.m33_c01062{transform:matrix(0.121255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121255,0.000000,0.000000,0.250000,0,0);}
.m85_c01062{transform:matrix(0.123805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123805,0.000000,0.000000,0.250000,0,0);}
.m43_c01062{transform:matrix(0.132175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132175,0.000000,0.000000,0.250000,0,0);}
.m8c_c01062{transform:matrix(0.138302,-0.002766,0.004999,0.249950,0,0);-ms-transform:matrix(0.138302,-0.002766,0.004999,0.249950,0,0);-webkit-transform:matrix(0.138302,-0.002766,0.004999,0.249950,0,0);}
.m2a_c01062{transform:matrix(0.139440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139440,0.000000,0.000000,0.250000,0,0);}
.m90_c01062{transform:matrix(0.140817,-0.002816,0.004999,0.249950,0,0);-ms-transform:matrix(0.140817,-0.002816,0.004999,0.249950,0,0);-webkit-transform:matrix(0.140817,-0.002816,0.004999,0.249950,0,0);}
.m35_c01062{transform:matrix(0.140960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140960,0.000000,0.000000,0.250000,0,0);}
.m44_c01062{transform:matrix(0.141130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141130,0.000000,0.000000,0.250000,0,0);}
.m8f_c01062{transform:matrix(0.142022,-0.002840,0.004999,0.249950,0,0);-ms-transform:matrix(0.142022,-0.002840,0.004999,0.249950,0,0);-webkit-transform:matrix(0.142022,-0.002840,0.004999,0.249950,0,0);}
.m7_c01062{transform:matrix(0.146216,-0.002047,0.003500,0.249976,0,0);-ms-transform:matrix(0.146216,-0.002047,0.003500,0.249976,0,0);-webkit-transform:matrix(0.146216,-0.002047,0.003500,0.249976,0,0);}
.m99_c01062{transform:matrix(0.151575,-0.003031,0.004999,0.249950,0,0);-ms-transform:matrix(0.151575,-0.003031,0.004999,0.249950,0,0);-webkit-transform:matrix(0.151575,-0.003031,0.004999,0.249950,0,0);}
.m5_c01062{transform:matrix(0.168593,-0.002360,0.003500,0.249976,0,0);-ms-transform:matrix(0.168593,-0.002360,0.003500,0.249976,0,0);-webkit-transform:matrix(0.168593,-0.002360,0.003500,0.249976,0,0);}
.m4_c01062{transform:matrix(0.170343,-0.002385,0.003500,0.249976,0,0);-ms-transform:matrix(0.170343,-0.002385,0.003500,0.249976,0,0);-webkit-transform:matrix(0.170343,-0.002385,0.003500,0.249976,0,0);}
.m3a_c01062{transform:matrix(0.171120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171120,0.000000,0.000000,0.250000,0,0);}
.m9_c01062{transform:matrix(0.171758,-0.002405,0.003500,0.249976,0,0);-ms-transform:matrix(0.171758,-0.002405,0.003500,0.249976,0,0);-webkit-transform:matrix(0.171758,-0.002405,0.003500,0.249976,0,0);}
.m6_c01062{transform:matrix(0.174363,-0.002441,0.003500,0.249976,0,0);-ms-transform:matrix(0.174363,-0.002441,0.003500,0.249976,0,0);-webkit-transform:matrix(0.174363,-0.002441,0.003500,0.249976,0,0);}
.m32_c01062{transform:matrix(0.175140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175140,0.000000,0.000000,0.250000,0,0);}
.m8_c01062{transform:matrix(0.178228,-0.002495,0.003500,0.249976,0,0);-ms-transform:matrix(0.178228,-0.002495,0.003500,0.249976,0,0);-webkit-transform:matrix(0.178228,-0.002495,0.003500,0.249976,0,0);}
.m60_c01062{transform:matrix(0.179060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179060,0.000000,0.000000,0.250000,0,0);}
.m61_c01062{transform:matrix(0.180260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180260,0.000000,0.000000,0.250000,0,0);}
.m8d_c01062{transform:matrix(0.187243,-0.003745,0.004999,0.249950,0,0);-ms-transform:matrix(0.187243,-0.003745,0.004999,0.249950,0,0);-webkit-transform:matrix(0.187243,-0.003745,0.004999,0.249950,0,0);}
.m62_c01062{transform:matrix(0.187655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187655,0.000000,0.000000,0.250000,0,0);}
.m4d_c01062{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m13_c01062{transform:matrix(0.197733,-0.004548,0.005748,0.249934,0,0);-ms-transform:matrix(0.197733,-0.004548,0.005748,0.249934,0,0);-webkit-transform:matrix(0.197733,-0.004548,0.005748,0.249934,0,0);}
.m71_c01062{transform:matrix(0.197910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197910,0.000000,0.000000,0.250000,0,0);}
.m98_c01062{transform:matrix(0.198550,-0.003971,0.004999,0.249950,0,0);-ms-transform:matrix(0.198550,-0.003971,0.004999,0.249950,0,0);-webkit-transform:matrix(0.198550,-0.003971,0.004999,0.249950,0,0);}
.mf_c01062{transform:matrix(0.202172,-0.003033,0.003750,0.249972,0,0);-ms-transform:matrix(0.202172,-0.003033,0.003750,0.249972,0,0);-webkit-transform:matrix(0.202172,-0.003033,0.003750,0.249972,0,0);}
.m9a_c01062{transform:matrix(0.202624,-0.004052,0.004999,0.249950,0,0);-ms-transform:matrix(0.202624,-0.004052,0.004999,0.249950,0,0);-webkit-transform:matrix(0.202624,-0.004052,0.004999,0.249950,0,0);}
.m28_c01062{transform:matrix(0.202730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202730,0.000000,0.000000,0.250000,0,0);}
.m96_c01062{transform:matrix(0.202799,-0.004056,0.004999,0.249950,0,0);-ms-transform:matrix(0.202799,-0.004056,0.004999,0.249950,0,0);-webkit-transform:matrix(0.202799,-0.004056,0.004999,0.249950,0,0);}
.m6f_c01062{transform:matrix(0.206040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206040,0.000000,0.000000,0.250000,0,0);}
.m54_c01062{transform:matrix(0.206835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206835,0.000000,0.000000,0.250000,0,0);}
.m1d_c01062{transform:matrix(0.210564,-0.004843,0.005748,0.249934,0,0);-ms-transform:matrix(0.210564,-0.004843,0.005748,0.249934,0,0);-webkit-transform:matrix(0.210564,-0.004843,0.005748,0.249934,0,0);}
.m36_c01062{transform:matrix(0.214620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214620,0.000000,0.000000,0.250000,0,0);}
.me_c01062{transform:matrix(0.215921,-0.003239,0.003750,0.249972,0,0);-ms-transform:matrix(0.215921,-0.003239,0.003750,0.249972,0,0);-webkit-transform:matrix(0.215921,-0.003239,0.003750,0.249972,0,0);}
.m1c_c01062{transform:matrix(0.216093,-0.004970,0.005748,0.249934,0,0);-ms-transform:matrix(0.216093,-0.004970,0.005748,0.249934,0,0);-webkit-transform:matrix(0.216093,-0.004970,0.005748,0.249934,0,0);}
.m34_c01062{transform:matrix(0.216125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216125,0.000000,0.000000,0.250000,0,0);}
.m31_c01062{transform:matrix(0.219330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219330,0.000000,0.000000,0.250000,0,0);}
.m2c_c01062{transform:matrix(0.220340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220340,0.000000,0.000000,0.250000,0,0);}
.m2d_c01062{transform:matrix(0.224445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224445,0.000000,0.000000,0.250000,0,0);}
.m12_c01062{transform:matrix(0.225500,-0.005187,0.005748,0.249934,0,0);-ms-transform:matrix(0.225500,-0.005187,0.005748,0.249934,0,0);-webkit-transform:matrix(0.225500,-0.005187,0.005748,0.249934,0,0);}
.m4c_c01062{transform:matrix(0.226790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226790,0.000000,0.000000,0.250000,0,0);}
.m24_c01062{transform:matrix(0.227430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227430,0.000000,0.000000,0.250000,0,0);}
.m8e_c01062{transform:matrix(0.227554,-0.004551,0.004999,0.249950,0,0);-ms-transform:matrix(0.227554,-0.004551,0.004999,0.249950,0,0);-webkit-transform:matrix(0.227554,-0.004551,0.004999,0.249950,0,0);}
.m51_c01062{transform:matrix(0.227855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227855,0.000000,0.000000,0.250000,0,0);}
.m3c_c01062{transform:matrix(0.228135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228135,0.000000,0.000000,0.250000,0,0);}
.m94_c01062{transform:matrix(0.229569,-0.004591,0.004999,0.249950,0,0);-ms-transform:matrix(0.229569,-0.004591,0.004999,0.249950,0,0);-webkit-transform:matrix(0.229569,-0.004591,0.004999,0.249950,0,0);}
.m26_c01062{transform:matrix(0.230755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230755,0.000000,0.000000,0.250000,0,0);}
.m9d_c01062{transform:matrix(0.231304,-0.004626,0.004999,0.249950,0,0);-ms-transform:matrix(0.231304,-0.004626,0.004999,0.249950,0,0);-webkit-transform:matrix(0.231304,-0.004626,0.004999,0.249950,0,0);}
.m29_c01062{transform:matrix(0.231860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231860,0.000000,0.000000,0.250000,0,0);}
.m95_c01062{transform:matrix(0.232354,-0.004647,0.004999,0.249950,0,0);-ms-transform:matrix(0.232354,-0.004647,0.004999,0.249950,0,0);-webkit-transform:matrix(0.232354,-0.004647,0.004999,0.249950,0,0);}
.m10_c01062{transform:matrix(0.232489,-0.005347,0.005748,0.249934,0,0);-ms-transform:matrix(0.232489,-0.005347,0.005748,0.249934,0,0);-webkit-transform:matrix(0.232489,-0.005347,0.005748,0.249934,0,0);}
.m97_c01062{transform:matrix(0.233868,-0.004677,0.004999,0.249950,0,0);-ms-transform:matrix(0.233868,-0.004677,0.004999,0.249950,0,0);-webkit-transform:matrix(0.233868,-0.004677,0.004999,0.249950,0,0);}
.m70_c01062{transform:matrix(0.234035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234035,0.000000,0.000000,0.250000,0,0);}
.m27_c01062{transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);}
.m2e_c01062{transform:matrix(0.234265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234265,0.000000,0.000000,0.250000,0,0);}
.m9b_c01062{transform:matrix(0.235238,-0.004705,0.004999,0.249950,0,0);-ms-transform:matrix(0.235238,-0.004705,0.004999,0.249950,0,0);-webkit-transform:matrix(0.235238,-0.004705,0.004999,0.249950,0,0);}
.m6b_c01062{transform:matrix(0.236445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236445,0.000000,0.000000,0.250000,0,0);}
.m2b_c01062{transform:matrix(0.236640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236640,0.000000,0.000000,0.250000,0,0);}
.m6e_c01062{transform:matrix(0.236820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236820,0.000000,0.000000,0.250000,0,0);}
.m11_c01062{transform:matrix(0.236962,-0.005450,0.005748,0.249934,0,0);-ms-transform:matrix(0.236962,-0.005450,0.005748,0.249934,0,0);-webkit-transform:matrix(0.236962,-0.005450,0.005748,0.249934,0,0);}
.m4a_c01062{transform:matrix(0.237215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237215,0.000000,0.000000,0.250000,0,0);}
.m49_c01062{transform:matrix(0.237290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237290,0.000000,0.000000,0.250000,0,0);}
.m57_c01062{transform:matrix(0.237830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237830,0.000000,0.000000,0.250000,0,0);}
.m4e_c01062{transform:matrix(0.237950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237950,0.000000,0.000000,0.250000,0,0);}
.m37_c01062{transform:matrix(0.238015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238015,0.000000,0.000000,0.250000,0,0);}
.m7e_c01062{transform:matrix(0.238145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238145,0.000000,0.000000,0.250000,0,0);}
.m84_c01062{transform:matrix(0.239590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239590,0.000000,0.000000,0.250000,0,0);}
.m83_c01062{transform:matrix(0.240065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240065,0.000000,0.000000,0.250000,0,0);}
.m3f_c01062{transform:matrix(0.241415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241415,0.000000,0.000000,0.250000,0,0);}
.m1e_c01062{transform:matrix(0.241841,-0.005562,0.005748,0.249934,0,0);-ms-transform:matrix(0.241841,-0.005562,0.005748,0.249934,0,0);-webkit-transform:matrix(0.241841,-0.005562,0.005748,0.249934,0,0);}
.m82_c01062{transform:matrix(0.242545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242545,0.000000,0.000000,0.250000,0,0);}
.m17_c01062{transform:matrix(0.242631,-0.005581,0.005748,0.249934,0,0);-ms-transform:matrix(0.242631,-0.005581,0.005748,0.249934,0,0);-webkit-transform:matrix(0.242631,-0.005581,0.005748,0.249934,0,0);}
.m6c_c01062{transform:matrix(0.242745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242745,0.000000,0.000000,0.250000,0,0);}
.m2f_c01062{transform:matrix(0.243175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243175,0.000000,0.000000,0.250000,0,0);}
.m7c_c01062{transform:matrix(0.245390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245390,0.000000,0.000000,0.250000,0,0);}
.m5c_c01062{transform:matrix(0.248115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248115,0.000000,0.000000,0.250000,0,0);}
.m45_c01062{transform:matrix(0.248155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248155,0.000000,0.000000,0.250000,0,0);}
.m50_c01062{transform:matrix(0.248610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248610,0.000000,0.000000,0.250000,0,0);}
.m5d_c01062{transform:matrix(0.249650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249650,0.000000,0.000000,0.250000,0,0);}
.m5b_c01062{transform:matrix(0.249905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249905,0.000000,0.000000,0.250000,0,0);}
.m39_c01062{transform:matrix(0.250630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250630,0.000000,0.000000,0.250000,0,0);}
.m52_c01062{transform:matrix(0.250680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250680,0.000000,0.000000,0.250000,0,0);}
.m4b_c01062{transform:matrix(0.252200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252200,0.000000,0.000000,0.250000,0,0);}
.m47_c01062{transform:matrix(0.252785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252785,0.000000,0.000000,0.250000,0,0);}
.m5a_c01062{transform:matrix(0.253485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253485,0.000000,0.000000,0.250000,0,0);}
.m3e_c01062{transform:matrix(0.255030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255030,0.000000,0.000000,0.250000,0,0);}
.m18_c01062{transform:matrix(0.255223,-0.005870,0.005748,0.249934,0,0);-ms-transform:matrix(0.255223,-0.005870,0.005748,0.249934,0,0);-webkit-transform:matrix(0.255223,-0.005870,0.005748,0.249934,0,0);}
.m19_c01062{transform:matrix(0.255992,-0.005888,0.005748,0.249934,0,0);-ms-transform:matrix(0.255992,-0.005888,0.005748,0.249934,0,0);-webkit-transform:matrix(0.255992,-0.005888,0.005748,0.249934,0,0);}
.m48_c01062{transform:matrix(0.256205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256205,0.000000,0.000000,0.250000,0,0);}
.m55_c01062{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m93_c01062{transform:matrix(0.258003,-0.005160,0.004999,0.249950,0,0);-ms-transform:matrix(0.258003,-0.005160,0.004999,0.249950,0,0);-webkit-transform:matrix(0.258003,-0.005160,0.004999,0.249950,0,0);}
.m88_c01062{transform:matrix(0.258643,-0.005173,0.004999,0.249950,0,0);-ms-transform:matrix(0.258643,-0.005173,0.004999,0.249950,0,0);-webkit-transform:matrix(0.258643,-0.005173,0.004999,0.249950,0,0);}
.m8a_c01062{transform:matrix(0.258648,-0.005173,0.004999,0.249950,0,0);-ms-transform:matrix(0.258648,-0.005173,0.004999,0.249950,0,0);-webkit-transform:matrix(0.258648,-0.005173,0.004999,0.249950,0,0);}
.m91_c01062{transform:matrix(0.258828,-0.005177,0.004999,0.249950,0,0);-ms-transform:matrix(0.258828,-0.005177,0.004999,0.249950,0,0);-webkit-transform:matrix(0.258828,-0.005177,0.004999,0.249950,0,0);}
.m42_c01062{transform:matrix(0.263690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263690,0.000000,0.000000,0.250000,0,0);}
.mb_c01062{transform:matrix(0.263835,-0.003958,0.003750,0.249972,0,0);-ms-transform:matrix(0.263835,-0.003958,0.003750,0.249972,0,0);-webkit-transform:matrix(0.263835,-0.003958,0.003750,0.249972,0,0);}
.m58_c01062{transform:matrix(0.264115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264115,0.000000,0.000000,0.250000,0,0);}
.m81_c01062{transform:matrix(0.264975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264975,0.000000,0.000000,0.250000,0,0);}
.m66_c01062{transform:matrix(0.266045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266045,0.000000,0.000000,0.250000,0,0);}
.m40_c01062{transform:matrix(0.268005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268005,0.000000,0.000000,0.250000,0,0);}
.m7b_c01062{transform:matrix(0.269180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269180,0.000000,0.000000,0.250000,0,0);}
.m72_c01062{transform:matrix(0.269585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269585,0.000000,0.000000,0.250000,0,0);}
.m89_c01062{transform:matrix(0.269616,-0.005392,0.004999,0.249950,0,0);-ms-transform:matrix(0.269616,-0.005392,0.004999,0.249950,0,0);-webkit-transform:matrix(0.269616,-0.005392,0.004999,0.249950,0,0);}
.m6a_c01062{transform:matrix(0.269640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269640,0.000000,0.000000,0.250000,0,0);}
.m7d_c01062{transform:matrix(0.271130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271130,0.000000,0.000000,0.250000,0,0);}
.m22_c01062{transform:matrix(0.271415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271415,0.000000,0.000000,0.250000,0,0);}
.m64_c01062{transform:matrix(0.271815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271815,0.000000,0.000000,0.250000,0,0);}
.m86_c01062{transform:matrix(0.272286,-0.005446,0.004999,0.249950,0,0);-ms-transform:matrix(0.272286,-0.005446,0.004999,0.249950,0,0);-webkit-transform:matrix(0.272286,-0.005446,0.004999,0.249950,0,0);}
.m41_c01062{transform:matrix(0.272365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272365,0.000000,0.000000,0.250000,0,0);}
.m59_c01062{transform:matrix(0.273300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273300,0.000000,0.000000,0.250000,0,0);}
.m8b_c01062{transform:matrix(0.273820,-0.005476,0.004999,0.249950,0,0);-ms-transform:matrix(0.273820,-0.005476,0.004999,0.249950,0,0);-webkit-transform:matrix(0.273820,-0.005476,0.004999,0.249950,0,0);}
.m87_c01062{transform:matrix(0.273920,-0.005478,0.004999,0.249950,0,0);-ms-transform:matrix(0.273920,-0.005478,0.004999,0.249950,0,0);-webkit-transform:matrix(0.273920,-0.005478,0.004999,0.249950,0,0);}
.m30_c01062{transform:matrix(0.274155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274155,0.000000,0.000000,0.250000,0,0);}
.m65_c01062{transform:matrix(0.274535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274535,0.000000,0.000000,0.250000,0,0);}
.m25_c01062{transform:matrix(0.275205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275205,0.000000,0.000000,0.250000,0,0);}
.m3b_c01062{transform:matrix(0.275770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275770,0.000000,0.000000,0.250000,0,0);}
.m20_c01062{transform:matrix(0.275795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275795,0.000000,0.000000,0.250000,0,0);}
.m21_c01062{transform:matrix(0.277490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277490,0.000000,0.000000,0.250000,0,0);}
.m3d_c01062{transform:matrix(0.279025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279025,0.000000,0.000000,0.250000,0,0);}
.mc_c01062{transform:matrix(0.279444,-0.004192,0.003750,0.249972,0,0);-ms-transform:matrix(0.279444,-0.004192,0.003750,0.249972,0,0);-webkit-transform:matrix(0.279444,-0.004192,0.003750,0.249972,0,0);}
.md_c01062{transform:matrix(0.280038,-0.004201,0.003750,0.249972,0,0);-ms-transform:matrix(0.280038,-0.004201,0.003750,0.249972,0,0);-webkit-transform:matrix(0.280038,-0.004201,0.003750,0.249972,0,0);}
.m6d_c01062{transform:matrix(0.280640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280640,0.000000,0.000000,0.250000,0,0);}
.m56_c01062{transform:matrix(0.281295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281295,0.000000,0.000000,0.250000,0,0);}
.m5e_c01062{transform:matrix(0.281505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281505,0.000000,0.000000,0.250000,0,0);}
.m69_c01062{transform:matrix(0.283040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283040,0.000000,0.000000,0.250000,0,0);}
.m46_c01062{transform:matrix(0.283090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283090,0.000000,0.000000,0.250000,0,0);}
.m23_c01062{transform:matrix(0.285475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285475,0.000000,0.000000,0.250000,0,0);}
.ma_c01062{transform:matrix(0.290037,-0.004351,0.003750,0.249972,0,0);-ms-transform:matrix(0.290037,-0.004351,0.003750,0.249972,0,0);-webkit-transform:matrix(0.290037,-0.004351,0.003750,0.249972,0,0);}
.m2_c01062{transform:matrix(0.297910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297910,0.000000,0.000000,0.250000,0,0);}
.m68_c01062{transform:matrix(0.305570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305570,0.000000,0.000000,0.250000,0,0);}
.m67_c01062{transform:matrix(0.305625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305625,0.000000,0.000000,0.250000,0,0);}
.m3_c01062{transform:matrix(0.306985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306985,0.000000,0.000000,0.250000,0,0);}
.m9c_c01062{transform:matrix(0.310443,-0.006209,0.004999,0.249950,0,0);-ms-transform:matrix(0.310443,-0.006209,0.004999,0.249950,0,0);-webkit-transform:matrix(0.310443,-0.006209,0.004999,0.249950,0,0);}
.m1_c01062{transform:matrix(0.310590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310590,0.000000,0.000000,0.250000,0,0);}
.m80_c01062{transform:matrix(0.314150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314150,0.000000,0.000000,0.250000,0,0);}
.m7a_c01062{transform:matrix(0.316865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316865,0.000000,0.000000,0.250000,0,0);}
.m16_c01062{transform:matrix(0.317926,-0.007312,0.005748,0.249934,0,0);-ms-transform:matrix(0.317926,-0.007312,0.005748,0.249934,0,0);-webkit-transform:matrix(0.317926,-0.007312,0.005748,0.249934,0,0);}
.m38_c01062{transform:matrix(0.318635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318635,0.000000,0.000000,0.250000,0,0);}
.m0_c01062{transform:matrix(0.350585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350585,0.000000,0.000000,0.250000,0,0);}
.m7f_c01062{transform:matrix(0.355765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355765,0.000000,0.000000,0.250000,0,0);}
.m15_c01062{transform:matrix(0.400379,-0.009209,0.005748,0.249934,0,0);-ms-transform:matrix(0.400379,-0.009209,0.005748,0.249934,0,0);-webkit-transform:matrix(0.400379,-0.009209,0.005748,0.249934,0,0);}
.m79_c01062{transform:matrix(0.439325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439325,0.000000,0.000000,0.250000,0,0);}
.m75_c01062{transform:matrix(0.685420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.685420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.685420,0.000000,0.000000,0.250000,0,0);}
.m78_c01062{transform:matrix(0.721910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.721910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.721910,0.000000,0.000000,0.250000,0,0);}
.m14_c01062{transform:matrix(0.922981,-0.021229,0.005748,0.249934,0,0);-ms-transform:matrix(0.922981,-0.021229,0.005748,0.249934,0,0);-webkit-transform:matrix(0.922981,-0.021229,0.005748,0.249934,0,0);}
.m77_c01062{transform:matrix(0.972005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.972005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.972005,0.000000,0.000000,0.250000,0,0);}
.m76_c01062{transform:matrix(1.117095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.117095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.117095,0.000000,0.000000,0.250000,0,0);}
.m74_c01062{transform:matrix(1.973405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.973405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.973405,0.000000,0.000000,0.250000,0,0);}
.m73_c01062{transform:matrix(2.278675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.278675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.278675,0.000000,0.000000,0.250000,0,0);}
.v0_c01062{vertical-align:0.000000px;}
.ls0_c01062{letter-spacing:0.000000px;}
.sc__c01062{text-shadow:none;}
.sc0_c01062{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__c01062{-webkit-text-stroke:0px transparent;}
.sc0_c01062{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01062{word-spacing:0.000000px;}
.fc0_c01062{color:transparent;}
.fs9_c01062{font-size:24.000000px;}
.fs0_c01062{font-size:66.000000px;}
.fs5_c01062{font-size:72.000000px;}
.fs2_c01062{font-size:72.008100px;}
.fsa_c01062{font-size:72.014399px;}
.fs7_c01062{font-size:78.000000px;}
.fsb_c01062{font-size:78.015598px;}
.fs4_c01062{font-size:78.020628px;}
.fs6_c01062{font-size:84.000000px;}
.fsc_c01062{font-size:84.016798px;}
.fs3_c01062{font-size:84.022215px;}
.fs8_c01062{font-size:108.000000px;}
.fs1_c01062{font-size:114.011171px;}
.y0_c01062{bottom:0.000000px;}
.y4c_c01062{bottom:386.357160px;}
.y4d_c01062{bottom:386.981820px;}
.y4e_c01062{bottom:387.670860px;}
.y4f_c01062{bottom:388.462950px;}
.y50_c01062{bottom:388.822170px;}
.y51_c01062{bottom:389.615580px;}
.y52_c01062{bottom:389.978430px;}
.y53_c01062{bottom:390.587280px;}
.y54_c01062{bottom:390.852270px;}
.y55_c01062{bottom:391.565280px;}
.y56_c01062{bottom:391.743900px;}
.y45_c01062{bottom:422.817090px;}
.y46_c01062{bottom:423.398940px;}
.y47_c01062{bottom:423.933210px;}
.y48_c01062{bottom:425.067780px;}
.y49_c01062{bottom:426.541410px;}
.y4a_c01062{bottom:427.092000px;}
.y4b_c01062{bottom:433.929420px;}
.y3f_c01062{bottom:458.466000px;}
.y40_c01062{bottom:459.988920px;}
.y41_c01062{bottom:462.181530px;}
.y42_c01062{bottom:463.763400px;}
.y43_c01062{bottom:465.501540px;}
.y44_c01062{bottom:466.166040px;}
.y33_c01062{bottom:530.550000px;}
.y34_c01062{bottom:530.859000px;}
.y35_c01062{bottom:531.208500px;}
.y36_c01062{bottom:531.295500px;}
.y37_c01062{bottom:531.694500px;}
.y38_c01062{bottom:531.871500px;}
.y39_c01062{bottom:532.147500px;}
.y3a_c01062{bottom:532.225500px;}
.y3b_c01062{bottom:532.759500px;}
.y3c_c01062{bottom:533.029500px;}
.y3d_c01062{bottom:533.199000px;}
.y3e_c01062{bottom:533.515500px;}
.y32_c01062{bottom:573.298500px;}
.y31_c01062{bottom:587.904000px;}
.y30_c01062{bottom:639.630000px;}
.y2f_c01062{bottom:675.819000px;}
.y2e_c01062{bottom:709.455000px;}
.y2d_c01062{bottom:746.631000px;}
.y2c_c01062{bottom:780.681000px;}
.y21_c01062{bottom:814.591500px;}
.y22_c01062{bottom:815.058000px;}
.y23_c01062{bottom:815.443500px;}
.y24_c01062{bottom:815.644500px;}
.y25_c01062{bottom:816.307500px;}
.y26_c01062{bottom:816.577500px;}
.y27_c01062{bottom:817.237500px;}
.y28_c01062{bottom:817.366500px;}
.y29_c01062{bottom:817.573500px;}
.y2a_c01062{bottom:818.032500px;}
.y2b_c01062{bottom:818.425500px;}
.y20_c01062{bottom:852.748500px;}
.y1f_c01062{bottom:886.780500px;}
.y1e_c01062{bottom:925.251000px;}
.y18_c01062{bottom:956.607909px;}
.y19_c01062{bottom:959.493741px;}
.y1a_c01062{bottom:959.859496px;}
.y1b_c01062{bottom:961.332180px;}
.y1c_c01062{bottom:963.004002px;}
.y1d_c01062{bottom:969.065875px;}
.ye_c01062{bottom:989.019000px;}
.yf_c01062{bottom:990.765976px;}
.y10_c01062{bottom:993.279646px;}
.y11_c01062{bottom:994.819312px;}
.y12_c01062{bottom:995.863041px;}
.y13_c01062{bottom:998.889933px;}
.y14_c01062{bottom:999.374175px;}
.y15_c01062{bottom:1000.165432px;}
.y16_c01062{bottom:1003.223374px;}
.y17_c01062{bottom:1004.750620px;}
.y8_c01062{bottom:1023.577500px;}
.y9_c01062{bottom:1025.866740px;}
.ya_c01062{bottom:1027.686203px;}
.yb_c01062{bottom:1029.317317px;}
.yc_c01062{bottom:1030.717672px;}
.yd_c01062{bottom:1031.385247px;}
.y2_c01062{bottom:1058.133000px;}
.y3_c01062{bottom:1059.200451px;}
.y4_c01062{bottom:1060.424520px;}
.y5_c01062{bottom:1061.962833px;}
.y6_c01062{bottom:1062.601695px;}
.y7_c01062{bottom:1064.597241px;}
.y1_c01062{bottom:1102.264500px;}
.hb_c01062{height:24.000000px;}
.h2_c01062{height:66.000000px;}
.h7_c01062{height:72.000000px;}
.h4_c01062{height:72.008100px;}
.hc_c01062{height:72.014399px;}
.h9_c01062{height:78.000000px;}
.hd_c01062{height:78.015598px;}
.h6_c01062{height:78.020628px;}
.h8_c01062{height:84.000000px;}
.he_c01062{height:84.016798px;}
.h5_c01062{height:84.022215px;}
.ha_c01062{height:108.000000px;}
.h3_c01062{height:114.011171px;}
.h0_c01062{height:1246.320000px;}
.h1_c01062{height:1246.500000px;}
.w0_c01062{width:900.450000px;}
.w1_c01062{width:900.750000px;}
.x0_c01062{left:0.000000px;}
.x1d_c01062{left:91.800000px;}
.x5_c01062{left:92.848500px;}
.x2f_c01062{left:104.488500px;}
.x3d_c01062{left:108.268500px;}
.x30_c01062{left:137.968500px;}
.x38_c01062{left:150.388500px;}
.x17_c01062{left:151.590681px;}
.x6_c01062{left:169.095000px;}
.x1e_c01062{left:170.100000px;}
.x27_c01062{left:233.914500px;}
.x1_c01062{left:235.440000px;}
.x51_c01062{left:237.081840px;}
.xb_c01062{left:245.442000px;}
.x39_c01062{left:246.778500px;}
.x31_c01062{left:255.418500px;}
.x7_c01062{left:256.528500px;}
.x28_c01062{left:267.396000px;}
.xf_c01062{left:277.977000px;}
.x2_c01062{left:287.820000px;}
.x1f_c01062{left:289.170000px;}
.x46_c01062{left:299.970000px;}
.x43_c01062{left:301.590000px;}
.x18_c01062{left:303.488654px;}
.x19_c01062{left:322.718913px;}
.x52_c01062{left:323.743530px;}
.x21_c01062{left:333.450000px;}
.x10_c01062{left:344.919000px;}
.x32_c01062{left:355.048500px;}
.x53_c01062{left:356.149980px;}
.x50_c01062{left:357.787500px;}
.x8_c01062{left:366.408000px;}
.x29_c01062{left:377.821500px;}
.x3e_c01062{left:388.528500px;}
.x11_c01062{left:390.298500px;}
.x22_c01062{left:391.500000px;}
.x1a_c01062{left:400.190520px;}
.x47_c01062{left:402.300000px;}
.x3_c01062{left:410.670000px;}
.x9_c01062{left:412.041000px;}
.x40_c01062{left:421.198500px;}
.x2a_c01062{left:422.913000px;}
.x44_c01062{left:434.160000px;}
.x20_c01062{left:444.150000px;}
.x48_c01062{left:461.160000px;}
.xc_c01062{left:475.480500px;}
.x24_c01062{left:476.820000px;}
.x33_c01062{left:478.168500px;}
.x1b_c01062{left:488.212628px;}
.x4c_c01062{left:491.202000px;}
.x4_c01062{left:499.500000px;}
.x25_c01062{left:509.760000px;}
.x12_c01062{left:521.902500px;}
.x2b_c01062{left:532.804500px;}
.x13_c01062{left:542.956500px;}
.x55_c01062{left:545.339100px;}
.xa_c01062{left:554.580000px;}
.x45_c01062{left:564.570000px;}
.xd_c01062{left:568.837500px;}
.x49_c01062{left:574.290000px;}
.x14_c01062{left:577.359000px;}
.x34_c01062{left:587.788500px;}
.x2c_c01062{left:588.952500px;}
.x41_c01062{left:598.318500px;}
.x26_c01062{left:599.400000px;}
.xe_c01062{left:613.342500px;}
.x4a_c01062{left:618.300000px;}
.x23_c01062{left:621.540000px;}
.x3a_c01062{left:643.138500px;}
.x4d_c01062{left:644.275500px;}
.x4b_c01062{left:651.510000px;}
.x56_c01062{left:654.682350px;}
.x2d_c01062{left:665.358000px;}
.x3b_c01062{left:688.768500px;}
.x42_c01062{left:698.758500px;}
.x15_c01062{left:710.313000px;}
.x4e_c01062{left:711.766500px;}
.x2e_c01062{left:730.960500px;}
.x3c_c01062{left:743.038500px;}
.x35_c01062{left:754.378500px;}
.x54_c01062{left:758.345100px;}
.x57_c01062{left:766.190610px;}
.x16_c01062{left:776.715000px;}
.x3f_c01062{left:778.138500px;}
.x36_c01062{left:799.468500px;}
.x1c_c01062{left:807.236453px;}
.x37_c01062{left:832.138500px;}
.x4f_c01062{left:833.259000px;}
@media print{
.v0_c01062{vertical-align:0.000000pt;}
.ls0_c01062{letter-spacing:0.000000pt;}
.ws0_c01062{word-spacing:0.000000pt;}
.fs9_c01062{font-size:21.333333pt;}
.fs0_c01062{font-size:58.666667pt;}
.fs5_c01062{font-size:64.000000pt;}
.fs2_c01062{font-size:64.007200pt;}
.fsa_c01062{font-size:64.012799pt;}
.fs7_c01062{font-size:69.333333pt;}
.fsb_c01062{font-size:69.347199pt;}
.fs4_c01062{font-size:69.351670pt;}
.fs6_c01062{font-size:74.666667pt;}
.fsc_c01062{font-size:74.681599pt;}
.fs3_c01062{font-size:74.686413pt;}
.fs8_c01062{font-size:96.000000pt;}
.fs1_c01062{font-size:101.343264pt;}
.y0_c01062{bottom:0.000000pt;}
.y4c_c01062{bottom:343.428587pt;}
.y4d_c01062{bottom:343.983840pt;}
.y4e_c01062{bottom:344.596320pt;}
.y4f_c01062{bottom:345.300400pt;}
.y50_c01062{bottom:345.619707pt;}
.y51_c01062{bottom:346.324960pt;}
.y52_c01062{bottom:346.647493pt;}
.y53_c01062{bottom:347.188693pt;}
.y54_c01062{bottom:347.424240pt;}
.y55_c01062{bottom:348.058027pt;}
.y56_c01062{bottom:348.216800pt;}
.y45_c01062{bottom:375.837413pt;}
.y46_c01062{bottom:376.354613pt;}
.y47_c01062{bottom:376.829520pt;}
.y48_c01062{bottom:377.838027pt;}
.y49_c01062{bottom:379.147920pt;}
.y4a_c01062{bottom:379.637333pt;}
.y4b_c01062{bottom:385.715040pt;}
.y3f_c01062{bottom:407.525333pt;}
.y40_c01062{bottom:408.879040pt;}
.y41_c01062{bottom:410.828027pt;}
.y42_c01062{bottom:412.234133pt;}
.y43_c01062{bottom:413.779147pt;}
.y44_c01062{bottom:414.369813pt;}
.y33_c01062{bottom:471.600000pt;}
.y34_c01062{bottom:471.874667pt;}
.y35_c01062{bottom:472.185333pt;}
.y36_c01062{bottom:472.262667pt;}
.y37_c01062{bottom:472.617333pt;}
.y38_c01062{bottom:472.774667pt;}
.y39_c01062{bottom:473.020000pt;}
.y3a_c01062{bottom:473.089333pt;}
.y3b_c01062{bottom:473.564000pt;}
.y3c_c01062{bottom:473.804000pt;}
.y3d_c01062{bottom:473.954667pt;}
.y3e_c01062{bottom:474.236000pt;}
.y32_c01062{bottom:509.598667pt;}
.y31_c01062{bottom:522.581333pt;}
.y30_c01062{bottom:568.560000pt;}
.y2f_c01062{bottom:600.728000pt;}
.y2e_c01062{bottom:630.626667pt;}
.y2d_c01062{bottom:663.672000pt;}
.y2c_c01062{bottom:693.938667pt;}
.y21_c01062{bottom:724.081333pt;}
.y22_c01062{bottom:724.496000pt;}
.y23_c01062{bottom:724.838667pt;}
.y24_c01062{bottom:725.017333pt;}
.y25_c01062{bottom:725.606667pt;}
.y26_c01062{bottom:725.846667pt;}
.y27_c01062{bottom:726.433333pt;}
.y28_c01062{bottom:726.548000pt;}
.y29_c01062{bottom:726.732000pt;}
.y2a_c01062{bottom:727.140000pt;}
.y2b_c01062{bottom:727.489333pt;}
.y20_c01062{bottom:757.998667pt;}
.y1f_c01062{bottom:788.249333pt;}
.y1e_c01062{bottom:822.445333pt;}
.y18_c01062{bottom:850.318141pt;}
.y19_c01062{bottom:852.883325pt;}
.y1a_c01062{bottom:853.208441pt;}
.y1b_c01062{bottom:854.517493pt;}
.y1c_c01062{bottom:856.003557pt;}
.y1d_c01062{bottom:861.391889pt;}
.ye_c01062{bottom:879.128000pt;}
.yf_c01062{bottom:880.680868pt;}
.y10_c01062{bottom:882.915241pt;}
.y11_c01062{bottom:884.283833pt;}
.y12_c01062{bottom:885.211592pt;}
.y13_c01062{bottom:887.902163pt;}
.y14_c01062{bottom:888.332600pt;}
.y15_c01062{bottom:889.035940pt;}
.y16_c01062{bottom:891.754111pt;}
.y17_c01062{bottom:893.111663pt;}
.y8_c01062{bottom:909.846667pt;}
.y9_c01062{bottom:911.881547pt;}
.ya_c01062{bottom:913.498847pt;}
.yb_c01062{bottom:914.948727pt;}
.yc_c01062{bottom:916.193487pt;}
.yd_c01062{bottom:916.786887pt;}
.y2_c01062{bottom:940.562667pt;}
.y3_c01062{bottom:941.511512pt;}
.y4_c01062{bottom:942.599573pt;}
.y5_c01062{bottom:943.966963pt;}
.y6_c01062{bottom:944.534840pt;}
.y7_c01062{bottom:946.308659pt;}
.y1_c01062{bottom:979.790667pt;}
.hb_c01062{height:21.333333pt;}
.h2_c01062{height:58.666667pt;}
.h7_c01062{height:64.000000pt;}
.h4_c01062{height:64.007200pt;}
.hc_c01062{height:64.012799pt;}
.h9_c01062{height:69.333333pt;}
.hd_c01062{height:69.347199pt;}
.h6_c01062{height:69.351670pt;}
.h8_c01062{height:74.666667pt;}
.he_c01062{height:74.681599pt;}
.h5_c01062{height:74.686413pt;}
.ha_c01062{height:96.000000pt;}
.h3_c01062{height:101.343264pt;}
.h0_c01062{height:1107.840000pt;}
.h1_c01062{height:1108.000000pt;}
.w0_c01062{width:800.400000pt;}
.w1_c01062{width:800.666667pt;}
.x0_c01062{left:0.000000pt;}
.x1d_c01062{left:81.600000pt;}
.x5_c01062{left:82.532000pt;}
.x2f_c01062{left:92.878667pt;}
.x3d_c01062{left:96.238667pt;}
.x30_c01062{left:122.638667pt;}
.x38_c01062{left:133.678667pt;}
.x17_c01062{left:134.747272pt;}
.x6_c01062{left:150.306667pt;}
.x1e_c01062{left:151.200000pt;}
.x27_c01062{left:207.924000pt;}
.x1_c01062{left:209.280000pt;}
.x51_c01062{left:210.739413pt;}
.xb_c01062{left:218.170667pt;}
.x39_c01062{left:219.358667pt;}
.x31_c01062{left:227.038667pt;}
.x7_c01062{left:228.025333pt;}
.x28_c01062{left:237.685333pt;}
.xf_c01062{left:247.090667pt;}
.x2_c01062{left:255.840000pt;}
.x1f_c01062{left:257.040000pt;}
.x46_c01062{left:266.640000pt;}
.x43_c01062{left:268.080000pt;}
.x18_c01062{left:269.767692pt;}
.x19_c01062{left:286.861256pt;}
.x52_c01062{left:287.772027pt;}
.x21_c01062{left:296.400000pt;}
.x10_c01062{left:306.594667pt;}
.x32_c01062{left:315.598667pt;}
.x53_c01062{left:316.577760pt;}
.x50_c01062{left:318.033333pt;}
.x8_c01062{left:325.696000pt;}
.x29_c01062{left:335.841333pt;}
.x3e_c01062{left:345.358667pt;}
.x11_c01062{left:346.932000pt;}
.x22_c01062{left:348.000000pt;}
.x1a_c01062{left:355.724907pt;}
.x47_c01062{left:357.600000pt;}
.x3_c01062{left:365.040000pt;}
.x9_c01062{left:366.258667pt;}
.x40_c01062{left:374.398667pt;}
.x2a_c01062{left:375.922667pt;}
.x44_c01062{left:385.920000pt;}
.x20_c01062{left:394.800000pt;}
.x48_c01062{left:409.920000pt;}
.xc_c01062{left:422.649333pt;}
.x24_c01062{left:423.840000pt;}
.x33_c01062{left:425.038667pt;}
.x1b_c01062{left:433.966780pt;}
.x4c_c01062{left:436.624000pt;}
.x4_c01062{left:444.000000pt;}
.x25_c01062{left:453.120000pt;}
.x12_c01062{left:463.913333pt;}
.x2b_c01062{left:473.604000pt;}
.x13_c01062{left:482.628000pt;}
.x55_c01062{left:484.745867pt;}
.xa_c01062{left:492.960000pt;}
.x45_c01062{left:501.840000pt;}
.xd_c01062{left:505.633333pt;}
.x49_c01062{left:510.480000pt;}
.x14_c01062{left:513.208000pt;}
.x34_c01062{left:522.478667pt;}
.x2c_c01062{left:523.513333pt;}
.x41_c01062{left:531.838667pt;}
.x26_c01062{left:532.800000pt;}
.xe_c01062{left:545.193333pt;}
.x4a_c01062{left:549.600000pt;}
.x23_c01062{left:552.480000pt;}
.x3a_c01062{left:571.678667pt;}
.x4d_c01062{left:572.689333pt;}
.x4b_c01062{left:579.120000pt;}
.x56_c01062{left:581.939867pt;}
.x2d_c01062{left:591.429333pt;}
.x3b_c01062{left:612.238667pt;}
.x42_c01062{left:621.118667pt;}
.x15_c01062{left:631.389333pt;}
.x4e_c01062{left:632.681333pt;}
.x2e_c01062{left:649.742667pt;}
.x3c_c01062{left:660.478667pt;}
.x35_c01062{left:670.558667pt;}
.x54_c01062{left:674.084533pt;}
.x57_c01062{left:681.058320pt;}
.x16_c01062{left:690.413333pt;}
.x3f_c01062{left:691.678667pt;}
.x36_c01062{left:710.638667pt;}
.x1c_c01062{left:717.543513pt;}
.x37_c01062{left:739.678667pt;}
.x4f_c01062{left:740.674667pt;}
}





/* 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_c01063 {
    display:none;
  }
  .loading-indicator_c01063.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01063 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_c01063 { 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_c01063" -> "#page-container .classname_c01063")
 */
.pf_c01063 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01063 { /* 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_c01063.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01063 { /* 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_c01063 { /* 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_c01063 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01063 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01063 {overflow:visible;}
  }
}
.c_c01063 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01063 { /* 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_c01063:after { /* webkit #35443 */
  content: '';
}
.t_c01063:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01063 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 */
}
.__c01063 { /* 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_c01063 { /* info for Javascript */
  display:none;
}
.l_c01063 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01063 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01063 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01063: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_c01063 {
    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_c01063.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01063.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_c01063 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01063{font-family:sans-serif;visibility:hidden;}
.sc__c01063{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01063{-webkit-text-stroke:0px transparent;}
}
.y0_c01063{bottom:0.000000px;}
.h0_c01063{height:1246.320000px;}
.h1_c01063{height:1246.500000px;}
.w0_c01063{width:900.450000px;}
.w1_c01063{width:900.750000px;}
.x0_c01063{left:0.000000px;}
@media print{
.y0_c01063{bottom:0.000000pt;}
.h0_c01063{height:1107.840000pt;}
.h1_c01063{height:1108.000000pt;}
.w0_c01063{width:800.400000pt;}
.w1_c01063{width:800.666667pt;}
.x0_c01063{left:0.000000pt;}
}





/* 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_c01064 {
    display:none;
  }
  .loading-indicator_c01064.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01064 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_c01064 { 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_c01064" -> "#page-container .classname_c01064")
 */
.pf_c01064 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01064 { /* 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_c01064.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01064 { /* 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_c01064 { /* 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_c01064 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01064 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01064 {overflow:visible;}
  }
}
.c_c01064 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01064 { /* 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_c01064:after { /* webkit #35443 */
  content: '';
}
.t_c01064:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01064 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 */
}
.__c01064 { /* 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_c01064 { /* info for Javascript */
  display:none;
}
.l_c01064 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01064 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01064 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01064: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_c01064 {
    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_c01064.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01064.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_c01064 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01064{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01064;src:url('chunks/assets/font_cfe63ee56e9e10a97d33a3db.woff2')format("woff");}.ff1_c01064{font-family:ff1_c01064;line-height:1.000000;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;}
.mad_c01064{transform:matrix(0.025792,0.000826,-0.008004,0.249872,0,0);-ms-transform:matrix(0.025792,0.000826,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.025792,0.000826,-0.008004,0.249872,0,0);}
.m52_c01064{transform:matrix(0.060344,0.002356,-0.009752,0.249810,0,0);-ms-transform:matrix(0.060344,0.002356,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.060344,0.002356,-0.009752,0.249810,0,0);}
.m1e_c01064{transform:matrix(0.142192,0.005551,-0.009752,0.249810,0,0);-ms-transform:matrix(0.142192,0.005551,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.142192,0.005551,-0.009752,0.249810,0,0);}
.m20_c01064{transform:matrix(0.160882,0.006281,-0.009752,0.249810,0,0);-ms-transform:matrix(0.160882,0.006281,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.160882,0.006281,-0.009752,0.249810,0,0);}
.m1c_c01064{transform:matrix(0.162211,0.006333,-0.009752,0.249810,0,0);-ms-transform:matrix(0.162211,0.006333,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.162211,0.006333,-0.009752,0.249810,0,0);}
.m97_c01064{transform:matrix(0.168401,0.006068,-0.009003,0.249838,0,0);-ms-transform:matrix(0.168401,0.006068,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.168401,0.006068,-0.009003,0.249838,0,0);}
.m1a_c01064{transform:matrix(0.168786,0.006589,-0.009752,0.249810,0,0);-ms-transform:matrix(0.168786,0.006589,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.168786,0.006589,-0.009752,0.249810,0,0);}
.m21_c01064{transform:matrix(0.169216,0.006606,-0.009752,0.249810,0,0);-ms-transform:matrix(0.169216,0.006606,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.169216,0.006606,-0.009752,0.249810,0,0);}
.m23_c01064{transform:matrix(0.170280,0.006648,-0.009752,0.249810,0,0);-ms-transform:matrix(0.170280,0.006648,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.170280,0.006648,-0.009752,0.249810,0,0);}
.m1f_c01064{transform:matrix(0.171974,0.006714,-0.009752,0.249810,0,0);-ms-transform:matrix(0.171974,0.006714,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.171974,0.006714,-0.009752,0.249810,0,0);}
.m95_c01064{transform:matrix(0.173492,0.006252,-0.009003,0.249838,0,0);-ms-transform:matrix(0.173492,0.006252,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.173492,0.006252,-0.009003,0.249838,0,0);}
.mb1_c01064{transform:matrix(0.175542,0.007204,-0.010252,0.249790,0,0);-ms-transform:matrix(0.175542,0.007204,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.175542,0.007204,-0.010252,0.249790,0,0);}
.m92_c01064{transform:matrix(0.176226,0.006350,-0.009003,0.249838,0,0);-ms-transform:matrix(0.176226,0.006350,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.176226,0.006350,-0.009003,0.249838,0,0);}
.m11d_c01064{transform:matrix(0.177630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177630,0.000000,0.000000,0.250000,0,0);}
.m8e_c01064{transform:matrix(0.178762,0.007158,-0.010002,0.249800,0,0);-ms-transform:matrix(0.178762,0.007158,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.178762,0.007158,-0.010002,0.249800,0,0);}
.m11a_c01064{transform:matrix(0.181085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181085,0.000000,0.000000,0.250000,0,0);}
.maa_c01064{transform:matrix(0.181477,0.005813,-0.008004,0.249872,0,0);-ms-transform:matrix(0.181477,0.005813,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.181477,0.005813,-0.008004,0.249872,0,0);}
.m96_c01064{transform:matrix(0.181927,0.006556,-0.009003,0.249838,0,0);-ms-transform:matrix(0.181927,0.006556,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.181927,0.006556,-0.009003,0.249838,0,0);}
.m99_c01064{transform:matrix(0.183311,0.006606,-0.009003,0.249838,0,0);-ms-transform:matrix(0.183311,0.006606,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.183311,0.006606,-0.009003,0.249838,0,0);}
.m11f_c01064{transform:matrix(0.183675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183675,0.000000,0.000000,0.250000,0,0);}
.m11e_c01064{transform:matrix(0.183885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183885,0.000000,0.000000,0.250000,0,0);}
.m22_c01064{transform:matrix(0.184395,0.007199,-0.009752,0.249810,0,0);-ms-transform:matrix(0.184395,0.007199,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.184395,0.007199,-0.009752,0.249810,0,0);}
.m8f_c01064{transform:matrix(0.185476,0.007426,-0.010002,0.249800,0,0);-ms-transform:matrix(0.185476,0.007426,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.185476,0.007426,-0.010002,0.249800,0,0);}
.m75_c01064{transform:matrix(0.186257,0.006898,-0.009253,0.249829,0,0);-ms-transform:matrix(0.186257,0.006898,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.186257,0.006898,-0.009253,0.249829,0,0);}
.m19_c01064{transform:matrix(0.187807,0.007332,-0.009752,0.249810,0,0);-ms-transform:matrix(0.187807,0.007332,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.187807,0.007332,-0.009752,0.249810,0,0);}
.m24_c01064{transform:matrix(0.187862,0.007334,-0.009752,0.249810,0,0);-ms-transform:matrix(0.187862,0.007334,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.187862,0.007334,-0.009752,0.249810,0,0);}
.mfd_c01064{transform:matrix(0.188334,0.007541,-0.010002,0.249800,0,0);-ms-transform:matrix(0.188334,0.007541,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.188334,0.007541,-0.010002,0.249800,0,0);}
.m9b_c01064{transform:matrix(0.188338,0.006787,-0.009003,0.249838,0,0);-ms-transform:matrix(0.188338,0.006787,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.188338,0.006787,-0.009003,0.249838,0,0);}
.m1d_c01064{transform:matrix(0.189071,0.007381,-0.009752,0.249810,0,0);-ms-transform:matrix(0.189071,0.007381,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.189071,0.007381,-0.009752,0.249810,0,0);}
.m71_c01064{transform:matrix(0.189615,0.007023,-0.009253,0.249829,0,0);-ms-transform:matrix(0.189615,0.007023,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.189615,0.007023,-0.009253,0.249829,0,0);}
.m18_c01064{transform:matrix(0.190095,0.007421,-0.009752,0.249810,0,0);-ms-transform:matrix(0.190095,0.007421,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.190095,0.007421,-0.009752,0.249810,0,0);}
.m11c_c01064{transform:matrix(0.190590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190590,0.000000,0.000000,0.250000,0,0);}
.m80_c01064{transform:matrix(0.190856,0.006878,-0.009003,0.249838,0,0);-ms-transform:matrix(0.190856,0.006878,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.190856,0.006878,-0.009003,0.249838,0,0);}
.m91_c01064{transform:matrix(0.192155,0.006925,-0.009003,0.249838,0,0);-ms-transform:matrix(0.192155,0.006925,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.192155,0.006925,-0.009003,0.249838,0,0);}
.m1b_c01064{transform:matrix(0.192413,0.007512,-0.009752,0.249810,0,0);-ms-transform:matrix(0.192413,0.007512,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.192413,0.007512,-0.009752,0.249810,0,0);}
.m122_c01064{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.mac_c01064{transform:matrix(0.193096,0.006185,-0.008004,0.249872,0,0);-ms-transform:matrix(0.193096,0.006185,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.193096,0.006185,-0.008004,0.249872,0,0);}
.maf_c01064{transform:matrix(0.193417,0.007938,-0.010252,0.249790,0,0);-ms-transform:matrix(0.193417,0.007938,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.193417,0.007938,-0.010252,0.249790,0,0);}
.me_c01064{transform:matrix(0.193623,0.007559,-0.009752,0.249810,0,0);-ms-transform:matrix(0.193623,0.007559,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.193623,0.007559,-0.009752,0.249810,0,0);}
.m0_c01064{transform:matrix(0.194285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194285,0.000000,0.000000,0.250000,0,0);}
.m70_c01064{transform:matrix(0.194537,0.007205,-0.009253,0.249829,0,0);-ms-transform:matrix(0.194537,0.007205,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.194537,0.007205,-0.009253,0.249829,0,0);}
.m121_c01064{transform:matrix(0.195230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195230,0.000000,0.000000,0.250000,0,0);}
.m9d_c01064{transform:matrix(0.195628,0.007050,-0.009003,0.249838,0,0);-ms-transform:matrix(0.195628,0.007050,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.195628,0.007050,-0.009003,0.249838,0,0);}
.m15_c01064{transform:matrix(0.196585,0.007674,-0.009752,0.249810,0,0);-ms-transform:matrix(0.196585,0.007674,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.196585,0.007674,-0.009752,0.249810,0,0);}
.m9c_c01064{transform:matrix(0.197422,0.007114,-0.009003,0.249838,0,0);-ms-transform:matrix(0.197422,0.007114,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.197422,0.007114,-0.009003,0.249838,0,0);}
.mb6_c01064{transform:matrix(0.197744,0.008116,-0.010252,0.249790,0,0);-ms-transform:matrix(0.197744,0.008116,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.197744,0.008116,-0.010252,0.249790,0,0);}
.m98_c01064{transform:matrix(0.200250,0.007216,-0.009003,0.249838,0,0);-ms-transform:matrix(0.200250,0.007216,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.200250,0.007216,-0.009003,0.249838,0,0);}
.m94_c01064{transform:matrix(0.200490,0.007225,-0.009003,0.249838,0,0);-ms-transform:matrix(0.200490,0.007225,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.200490,0.007225,-0.009003,0.249838,0,0);}
.me9_c01064{transform:matrix(0.200677,0.009039,-0.011250,0.249747,0,0);-ms-transform:matrix(0.200677,0.009039,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.200677,0.009039,-0.011250,0.249747,0,0);}
.ma1_c01064{transform:matrix(0.201404,0.007258,-0.009003,0.249838,0,0);-ms-transform:matrix(0.201404,0.007258,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.201404,0.007258,-0.009003,0.249838,0,0);}
.mbe_c01064{transform:matrix(0.201417,0.007460,-0.009253,0.249829,0,0);-ms-transform:matrix(0.201417,0.007460,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.201417,0.007460,-0.009253,0.249829,0,0);}
.m55_c01064{transform:matrix(0.201611,0.007871,-0.009752,0.249810,0,0);-ms-transform:matrix(0.201611,0.007871,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.201611,0.007871,-0.009752,0.249810,0,0);}
.ma6_c01064{transform:matrix(0.201944,0.007277,-0.009003,0.249838,0,0);-ms-transform:matrix(0.201944,0.007277,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.201944,0.007277,-0.009003,0.249838,0,0);}
.m93_c01064{transform:matrix(0.202024,0.007280,-0.009003,0.249838,0,0);-ms-transform:matrix(0.202024,0.007280,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.202024,0.007280,-0.009003,0.249838,0,0);}
.m57_c01064{transform:matrix(0.202616,0.007910,-0.009752,0.249810,0,0);-ms-transform:matrix(0.202616,0.007910,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.202616,0.007910,-0.009752,0.249810,0,0);}
.m9e_c01064{transform:matrix(0.203268,0.007325,-0.009003,0.249838,0,0);-ms-transform:matrix(0.203268,0.007325,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.203268,0.007325,-0.009003,0.249838,0,0);}
.md_c01064{transform:matrix(0.204709,0.007992,-0.009752,0.249810,0,0);-ms-transform:matrix(0.204709,0.007992,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.204709,0.007992,-0.009752,0.249810,0,0);}
.mf1_c01064{transform:matrix(0.205054,0.011917,-0.014505,0.249579,0,0);-ms-transform:matrix(0.205054,0.011917,-0.014505,0.249579,0,0);-webkit-transform:matrix(0.205054,0.011917,-0.014505,0.249579,0,0);}
.m12_c01064{transform:matrix(0.205478,0.008022,-0.009752,0.249810,0,0);-ms-transform:matrix(0.205478,0.008022,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.205478,0.008022,-0.009752,0.249810,0,0);}
.m120_c01064{transform:matrix(0.205935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205935,0.000000,0.000000,0.250000,0,0);}
.mee_c01064{transform:matrix(0.206057,0.011975,-0.014505,0.249579,0,0);-ms-transform:matrix(0.206057,0.011975,-0.014505,0.249579,0,0);-webkit-transform:matrix(0.206057,0.011975,-0.014505,0.249579,0,0);}
.m6f_c01064{transform:matrix(0.206344,0.007642,-0.009253,0.249829,0,0);-ms-transform:matrix(0.206344,0.007642,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.206344,0.007642,-0.009253,0.249829,0,0);}
.mdf_c01064{transform:matrix(0.206817,0.006205,-0.007497,0.249888,0,0);-ms-transform:matrix(0.206817,0.006205,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.206817,0.006205,-0.007497,0.249888,0,0);}
.m9a_c01064{transform:matrix(0.206926,0.007457,-0.009003,0.249838,0,0);-ms-transform:matrix(0.206926,0.007457,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.206926,0.007457,-0.009003,0.249838,0,0);}
.ma3_c01064{transform:matrix(0.207290,0.007470,-0.009003,0.249838,0,0);-ms-transform:matrix(0.207290,0.007470,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.207290,0.007470,-0.009003,0.249838,0,0);}
.mf8_c01064{transform:matrix(0.207294,0.008300,-0.010002,0.249800,0,0);-ms-transform:matrix(0.207294,0.008300,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.207294,0.008300,-0.010002,0.249800,0,0);}
.me6_c01064{transform:matrix(0.208344,0.009385,-0.011250,0.249747,0,0);-ms-transform:matrix(0.208344,0.009385,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.208344,0.009385,-0.011250,0.249747,0,0);}
.m6b_c01064{transform:matrix(0.208354,0.007091,-0.008504,0.249855,0,0);-ms-transform:matrix(0.208354,0.007091,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.208354,0.007091,-0.008504,0.249855,0,0);}
.me5_c01064{transform:matrix(0.209263,0.009426,-0.011250,0.249747,0,0);-ms-transform:matrix(0.209263,0.009426,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.209263,0.009426,-0.011250,0.249747,0,0);}
.m79_c01064{transform:matrix(0.211078,0.007606,-0.009003,0.249838,0,0);-ms-transform:matrix(0.211078,0.007606,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.211078,0.007606,-0.009003,0.249838,0,0);}
.m77_c01064{transform:matrix(0.211280,0.007825,-0.009253,0.249829,0,0);-ms-transform:matrix(0.211280,0.007825,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.211280,0.007825,-0.009253,0.249829,0,0);}
.mab_c01064{transform:matrix(0.211576,0.006777,-0.008004,0.249872,0,0);-ms-transform:matrix(0.211576,0.006777,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.211576,0.006777,-0.008004,0.249872,0,0);}
.m11_c01064{transform:matrix(0.212078,0.008279,-0.009752,0.249810,0,0);-ms-transform:matrix(0.212078,0.008279,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.212078,0.008279,-0.009752,0.249810,0,0);}
.mea_c01064{transform:matrix(0.212854,0.009588,-0.011250,0.249747,0,0);-ms-transform:matrix(0.212854,0.009588,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.212854,0.009588,-0.011250,0.249747,0,0);}
.m68_c01064{transform:matrix(0.213012,0.007250,-0.008504,0.249855,0,0);-ms-transform:matrix(0.213012,0.007250,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.213012,0.007250,-0.008504,0.249855,0,0);}
.md6_c01064{transform:matrix(0.213474,0.010257,-0.011998,0.249712,0,0);-ms-transform:matrix(0.213474,0.010257,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.213474,0.010257,-0.011998,0.249712,0,0);}
.m54_c01064{transform:matrix(0.213697,0.008343,-0.009752,0.249810,0,0);-ms-transform:matrix(0.213697,0.008343,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.213697,0.008343,-0.009752,0.249810,0,0);}
.m11b_c01064{transform:matrix(0.213745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213745,0.000000,0.000000,0.250000,0,0);}
.mc4_c01064{transform:matrix(0.213818,0.007919,-0.009253,0.249829,0,0);-ms-transform:matrix(0.213818,0.007919,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.213818,0.007919,-0.009253,0.249829,0,0);}
.m10_c01064{transform:matrix(0.215151,0.008399,-0.009752,0.249810,0,0);-ms-transform:matrix(0.215151,0.008399,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.215151,0.008399,-0.009752,0.249810,0,0);}
.me8_c01064{transform:matrix(0.215267,0.009697,-0.011250,0.249747,0,0);-ms-transform:matrix(0.215267,0.009697,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.215267,0.009697,-0.011250,0.249747,0,0);}
.ma0_c01064{transform:matrix(0.215280,0.007758,-0.009003,0.249838,0,0);-ms-transform:matrix(0.215280,0.007758,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.215280,0.007758,-0.009003,0.249838,0,0);}
.mfb_c01064{transform:matrix(0.215542,0.008630,-0.010002,0.249800,0,0);-ms-transform:matrix(0.215542,0.008630,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.215542,0.008630,-0.010002,0.249800,0,0);}
.m90_c01064{transform:matrix(0.215712,0.008637,-0.010002,0.249800,0,0);-ms-transform:matrix(0.215712,0.008637,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.215712,0.008637,-0.010002,0.249800,0,0);}
.m107_c01064{transform:matrix(0.216065,0.010814,-0.012497,0.249687,0,0);-ms-transform:matrix(0.216065,0.010814,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.216065,0.010814,-0.012497,0.249687,0,0);}
.m66_c01064{transform:matrix(0.216665,0.007374,-0.008504,0.249855,0,0);-ms-transform:matrix(0.216665,0.007374,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.216665,0.007374,-0.008504,0.249855,0,0);}
.m105_c01064{transform:matrix(0.216751,0.008679,-0.010002,0.249800,0,0);-ms-transform:matrix(0.216751,0.008679,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.216751,0.008679,-0.010002,0.249800,0,0);}
.m56_c01064{transform:matrix(0.216915,0.008468,-0.009752,0.249810,0,0);-ms-transform:matrix(0.216915,0.008468,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.216915,0.008468,-0.009752,0.249810,0,0);}
.ma9_c01064{transform:matrix(0.216934,0.006949,-0.008004,0.249872,0,0);-ms-transform:matrix(0.216934,0.006949,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.216934,0.006949,-0.008004,0.249872,0,0);}
.mb0_c01064{transform:matrix(0.216987,0.008905,-0.010252,0.249790,0,0);-ms-transform:matrix(0.216987,0.008905,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.216987,0.008905,-0.010252,0.249790,0,0);}
.m73_c01064{transform:matrix(0.217461,0.008054,-0.009253,0.249829,0,0);-ms-transform:matrix(0.217461,0.008054,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.217461,0.008054,-0.009253,0.249829,0,0);}
.m76_c01064{transform:matrix(0.219754,0.008139,-0.009253,0.249829,0,0);-ms-transform:matrix(0.219754,0.008139,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.219754,0.008139,-0.009253,0.249829,0,0);}
.md3_c01064{transform:matrix(0.219776,0.010560,-0.011998,0.249712,0,0);-ms-transform:matrix(0.219776,0.010560,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.219776,0.010560,-0.011998,0.249712,0,0);}
.m72_c01064{transform:matrix(0.219819,0.008141,-0.009253,0.249829,0,0);-ms-transform:matrix(0.219819,0.008141,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.219819,0.008141,-0.009253,0.249829,0,0);}
.m10d_c01064{transform:matrix(0.220554,0.011039,-0.012497,0.249687,0,0);-ms-transform:matrix(0.220554,0.011039,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.220554,0.011039,-0.012497,0.249687,0,0);}
.mf_c01064{transform:matrix(0.220977,0.008627,-0.009752,0.249810,0,0);-ms-transform:matrix(0.220977,0.008627,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.220977,0.008627,-0.009752,0.249810,0,0);}
.meb_c01064{transform:matrix(0.221021,0.009956,-0.011250,0.249747,0,0);-ms-transform:matrix(0.221021,0.009956,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.221021,0.009956,-0.011250,0.249747,0,0);}
.m74_c01064{transform:matrix(0.221043,0.008187,-0.009253,0.249829,0,0);-ms-transform:matrix(0.221043,0.008187,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.221043,0.008187,-0.009253,0.249829,0,0);}
.mb7_c01064{transform:matrix(0.222068,0.009114,-0.010252,0.249790,0,0);-ms-transform:matrix(0.222068,0.009114,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.222068,0.009114,-0.010252,0.249790,0,0);}
.mdc_c01064{transform:matrix(0.222265,0.006668,-0.007497,0.249888,0,0);-ms-transform:matrix(0.222265,0.006668,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.222265,0.006668,-0.007497,0.249888,0,0);}
.m78_c01064{transform:matrix(0.222328,0.008234,-0.009253,0.249829,0,0);-ms-transform:matrix(0.222328,0.008234,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.222328,0.008234,-0.009253,0.249829,0,0);}
.ma7_c01064{transform:matrix(0.223270,0.008046,-0.009003,0.249838,0,0);-ms-transform:matrix(0.223270,0.008046,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.223270,0.008046,-0.009003,0.249838,0,0);}
.m82_c01064{transform:matrix(0.223290,0.008046,-0.009003,0.249838,0,0);-ms-transform:matrix(0.223290,0.008046,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.223290,0.008046,-0.009003,0.249838,0,0);}
.m67_c01064{transform:matrix(0.223695,0.007613,-0.008504,0.249855,0,0);-ms-transform:matrix(0.223695,0.007613,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.223695,0.007613,-0.008504,0.249855,0,0);}
.me1_c01064{transform:matrix(0.223969,0.006719,-0.007497,0.249888,0,0);-ms-transform:matrix(0.223969,0.006719,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.223969,0.006719,-0.007497,0.249888,0,0);}
.ma4_c01064{transform:matrix(0.224659,0.008096,-0.009003,0.249838,0,0);-ms-transform:matrix(0.224659,0.008096,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.224659,0.008096,-0.009003,0.249838,0,0);}
.m5f_c01064{transform:matrix(0.225173,0.008791,-0.009752,0.249810,0,0);-ms-transform:matrix(0.225173,0.008791,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.225173,0.008791,-0.009752,0.249810,0,0);}
.m102_c01064{transform:matrix(0.225409,0.009025,-0.010002,0.249800,0,0);-ms-transform:matrix(0.225409,0.009025,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.225409,0.009025,-0.010002,0.249800,0,0);}
.ma5_c01064{transform:matrix(0.225479,0.008125,-0.009003,0.249838,0,0);-ms-transform:matrix(0.225479,0.008125,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.225479,0.008125,-0.009003,0.249838,0,0);}
.mff_c01064{transform:matrix(0.225854,0.009043,-0.010002,0.249800,0,0);-ms-transform:matrix(0.225854,0.009043,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.225854,0.009043,-0.010002,0.249800,0,0);}
.m8a_c01064{transform:matrix(0.225884,0.009044,-0.010002,0.249800,0,0);-ms-transform:matrix(0.225884,0.009044,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.225884,0.009044,-0.010002,0.249800,0,0);}
.mf3_c01064{transform:matrix(0.226433,0.013159,-0.014505,0.249579,0,0);-ms-transform:matrix(0.226433,0.013159,-0.014505,0.249579,0,0);-webkit-transform:matrix(0.226433,0.013159,-0.014505,0.249579,0,0);}
.m119_c01064{transform:matrix(0.226715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226715,0.000000,0.000000,0.250000,0,0);}
.m6c_c01064{transform:matrix(0.227024,0.007727,-0.008504,0.249855,0,0);-ms-transform:matrix(0.227024,0.007727,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.227024,0.007727,-0.008504,0.249855,0,0);}
.m1_c01064{transform:matrix(0.227071,0.008637,-0.009503,0.249819,0,0);-ms-transform:matrix(0.227071,0.008637,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.227071,0.008637,-0.009503,0.249819,0,0);}
.m84_c01064{transform:matrix(0.227248,0.009099,-0.010002,0.249800,0,0);-ms-transform:matrix(0.227248,0.009099,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.227248,0.009099,-0.010002,0.249800,0,0);}
.mb3_c01064{transform:matrix(0.227339,0.009330,-0.010252,0.249790,0,0);-ms-transform:matrix(0.227339,0.009330,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.227339,0.009330,-0.010252,0.249790,0,0);}
.m10a_c01064{transform:matrix(0.227465,0.011385,-0.012497,0.249687,0,0);-ms-transform:matrix(0.227465,0.011385,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.227465,0.011385,-0.012497,0.249687,0,0);}
.mdb_c01064{transform:matrix(0.228047,0.010957,-0.011998,0.249712,0,0);-ms-transform:matrix(0.228047,0.010957,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.228047,0.010957,-0.011998,0.249712,0,0);}
.mec_c01064{transform:matrix(0.228623,0.010298,-0.011250,0.249747,0,0);-ms-transform:matrix(0.228623,0.010298,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.228623,0.010298,-0.011250,0.249747,0,0);}
.m45_c01064{transform:matrix(0.228675,0.008012,-0.008753,0.249847,0,0);-ms-transform:matrix(0.228675,0.008012,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.228675,0.008012,-0.008753,0.249847,0,0);}
.m108_c01064{transform:matrix(0.228764,0.011450,-0.012497,0.249687,0,0);-ms-transform:matrix(0.228764,0.011450,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.228764,0.011450,-0.012497,0.249687,0,0);}
.m104_c01064{transform:matrix(0.229011,0.009170,-0.010002,0.249800,0,0);-ms-transform:matrix(0.229011,0.009170,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.229011,0.009170,-0.010002,0.249800,0,0);}
.mbc_c01064{transform:matrix(0.229038,0.008483,-0.009253,0.249829,0,0);-ms-transform:matrix(0.229038,0.008483,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.229038,0.008483,-0.009253,0.249829,0,0);}
.m4c_c01064{transform:matrix(0.229054,0.008025,-0.008753,0.249847,0,0);-ms-transform:matrix(0.229054,0.008025,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.229054,0.008025,-0.008753,0.249847,0,0);}
.m7e_c01064{transform:matrix(0.229296,0.008263,-0.009003,0.249838,0,0);-ms-transform:matrix(0.229296,0.008263,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.229296,0.008263,-0.009003,0.249838,0,0);}
.m4a_c01064{transform:matrix(0.229384,0.008036,-0.008753,0.249847,0,0);-ms-transform:matrix(0.229384,0.008036,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.229384,0.008036,-0.008753,0.249847,0,0);}
.md4_c01064{transform:matrix(0.229620,0.011033,-0.011998,0.249712,0,0);-ms-transform:matrix(0.229620,0.011033,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.229620,0.011033,-0.011998,0.249712,0,0);}
.m81_c01064{transform:matrix(0.229626,0.008275,-0.009003,0.249838,0,0);-ms-transform:matrix(0.229626,0.008275,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.229626,0.008275,-0.009003,0.249838,0,0);}
.mf0_c01064{transform:matrix(0.230162,0.013376,-0.014505,0.249579,0,0);-ms-transform:matrix(0.230162,0.013376,-0.014505,0.249579,0,0);-webkit-transform:matrix(0.230162,0.013376,-0.014505,0.249579,0,0);}
.mae_c01064{transform:matrix(0.230346,0.009454,-0.010252,0.249790,0,0);-ms-transform:matrix(0.230346,0.009454,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.230346,0.009454,-0.010252,0.249790,0,0);}
.mb9_c01064{transform:matrix(0.230737,0.008546,-0.009253,0.249829,0,0);-ms-transform:matrix(0.230737,0.008546,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.230737,0.008546,-0.009253,0.249829,0,0);}
.m4f_c01064{transform:matrix(0.230753,0.008084,-0.008753,0.249847,0,0);-ms-transform:matrix(0.230753,0.008084,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.230753,0.008084,-0.008753,0.249847,0,0);}
.ma2_c01064{transform:matrix(0.230880,0.008320,-0.009003,0.249838,0,0);-ms-transform:matrix(0.230880,0.008320,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.230880,0.008320,-0.009003,0.249838,0,0);}
.m9f_c01064{transform:matrix(0.231190,0.008331,-0.009003,0.249838,0,0);-ms-transform:matrix(0.231190,0.008331,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.231190,0.008331,-0.009003,0.249838,0,0);}
.m86_c01064{transform:matrix(0.232099,0.009293,-0.010002,0.249800,0,0);-ms-transform:matrix(0.232099,0.009293,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.232099,0.009293,-0.010002,0.249800,0,0);}
.m62_c01064{transform:matrix(0.232108,0.009061,-0.009752,0.249810,0,0);-ms-transform:matrix(0.232108,0.009061,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.232108,0.009061,-0.009752,0.249810,0,0);}
.mda_c01064{transform:matrix(0.232237,0.011159,-0.011998,0.249712,0,0);-ms-transform:matrix(0.232237,0.011159,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.232237,0.011159,-0.011998,0.249712,0,0);}
.m7b_c01064{transform:matrix(0.232344,0.008373,-0.009003,0.249838,0,0);-ms-transform:matrix(0.232344,0.008373,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.232344,0.008373,-0.009003,0.249838,0,0);}
.mb2_c01064{transform:matrix(0.232569,0.009545,-0.010252,0.249790,0,0);-ms-transform:matrix(0.232569,0.009545,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.232569,0.009545,-0.010252,0.249790,0,0);}
.ma8_c01064{transform:matrix(0.232584,0.008381,-0.009003,0.249838,0,0);-ms-transform:matrix(0.232584,0.008381,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.232584,0.008381,-0.009003,0.249838,0,0);}
.mc_c01064{transform:matrix(0.233237,0.009105,-0.009752,0.249810,0,0);-ms-transform:matrix(0.233237,0.009105,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.233237,0.009105,-0.009752,0.249810,0,0);}
.m6a_c01064{transform:matrix(0.233500,0.007947,-0.008504,0.249855,0,0);-ms-transform:matrix(0.233500,0.007947,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.233500,0.007947,-0.008504,0.249855,0,0);}
.m3e_c01064{transform:matrix(0.233592,0.008184,-0.008753,0.249847,0,0);-ms-transform:matrix(0.233592,0.008184,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.233592,0.008184,-0.008753,0.249847,0,0);}
.m109_c01064{transform:matrix(0.233997,0.011712,-0.012497,0.249687,0,0);-ms-transform:matrix(0.233997,0.011712,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.233997,0.011712,-0.012497,0.249687,0,0);}
.mc2_c01064{transform:matrix(0.234065,0.008669,-0.009253,0.249829,0,0);-ms-transform:matrix(0.234065,0.008669,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.234065,0.008669,-0.009253,0.249829,0,0);}
.mbb_c01064{transform:matrix(0.234144,0.008672,-0.009253,0.249829,0,0);-ms-transform:matrix(0.234144,0.008672,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.234144,0.008672,-0.009253,0.249829,0,0);}
.m47_c01064{transform:matrix(0.234216,0.008206,-0.008753,0.249847,0,0);-ms-transform:matrix(0.234216,0.008206,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.234216,0.008206,-0.008753,0.249847,0,0);}
.me7_c01064{transform:matrix(0.234292,0.010554,-0.011250,0.249747,0,0);-ms-transform:matrix(0.234292,0.010554,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.234292,0.010554,-0.011250,0.249747,0,0);}
.m14_c01064{transform:matrix(0.234366,0.009149,-0.009752,0.249810,0,0);-ms-transform:matrix(0.234366,0.009149,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.234366,0.009149,-0.009752,0.249810,0,0);}
.m69_c01064{transform:matrix(0.235024,0.007999,-0.008504,0.249855,0,0);-ms-transform:matrix(0.235024,0.007999,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.235024,0.007999,-0.008504,0.249855,0,0);}
.m13_c01064{transform:matrix(0.236035,0.009215,-0.009752,0.249810,0,0);-ms-transform:matrix(0.236035,0.009215,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.236035,0.009215,-0.009752,0.249810,0,0);}
.m16_c01064{transform:matrix(0.236385,0.009228,-0.009752,0.249810,0,0);-ms-transform:matrix(0.236385,0.009228,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.236385,0.009228,-0.009752,0.249810,0,0);}
.mfc_c01064{transform:matrix(0.237230,0.009499,-0.010002,0.249800,0,0);-ms-transform:matrix(0.237230,0.009499,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.237230,0.009499,-0.010002,0.249800,0,0);}
.m60_c01064{transform:matrix(0.238353,0.009305,-0.009752,0.249810,0,0);-ms-transform:matrix(0.238353,0.009305,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.238353,0.009305,-0.009752,0.249810,0,0);}
.mb4_c01064{transform:matrix(0.238569,0.009791,-0.010252,0.249790,0,0);-ms-transform:matrix(0.238569,0.009791,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.238569,0.009791,-0.010252,0.249790,0,0);}
.med_c01064{transform:matrix(0.238798,0.010757,-0.011250,0.249747,0,0);-ms-transform:matrix(0.238798,0.010757,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.238798,0.010757,-0.011250,0.249747,0,0);}
.mfe_c01064{transform:matrix(0.239188,0.009577,-0.010002,0.249800,0,0);-ms-transform:matrix(0.239188,0.009577,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.239188,0.009577,-0.010002,0.249800,0,0);}
.md5_c01064{transform:matrix(0.239639,0.011514,-0.011998,0.249712,0,0);-ms-transform:matrix(0.239639,0.011514,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.239639,0.011514,-0.011998,0.249712,0,0);}
.md1_c01064{transform:matrix(0.240113,0.011537,-0.011998,0.249712,0,0);-ms-transform:matrix(0.240113,0.011537,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.240113,0.011537,-0.011998,0.249712,0,0);}
.m3_c01064{transform:matrix(0.240251,0.009139,-0.009503,0.249819,0,0);-ms-transform:matrix(0.240251,0.009139,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.240251,0.009139,-0.009503,0.249819,0,0);}
.m58_c01064{transform:matrix(0.240297,0.009381,-0.009752,0.249810,0,0);-ms-transform:matrix(0.240297,0.009381,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.240297,0.009381,-0.009752,0.249810,0,0);}
.mf6_c01064{transform:matrix(0.240439,0.013973,-0.014505,0.249579,0,0);-ms-transform:matrix(0.240439,0.013973,-0.014505,0.249579,0,0);-webkit-transform:matrix(0.240439,0.013973,-0.014505,0.249579,0,0);}
.m59_c01064{transform:matrix(0.240867,0.009403,-0.009752,0.249810,0,0);-ms-transform:matrix(0.240867,0.009403,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.240867,0.009403,-0.009752,0.249810,0,0);}
.md7_c01064{transform:matrix(0.240872,0.011573,-0.011998,0.249712,0,0);-ms-transform:matrix(0.240872,0.011573,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.240872,0.011573,-0.011998,0.249712,0,0);}
.m87_c01064{transform:matrix(0.241107,0.009654,-0.010002,0.249800,0,0);-ms-transform:matrix(0.241107,0.009654,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.241107,0.009654,-0.010002,0.249800,0,0);}
.m53_c01064{transform:matrix(0.241401,0.009424,-0.009752,0.249810,0,0);-ms-transform:matrix(0.241401,0.009424,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.241401,0.009424,-0.009752,0.249810,0,0);}
.mb5_c01064{transform:matrix(0.241457,0.009910,-0.010252,0.249790,0,0);-ms-transform:matrix(0.241457,0.009910,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.241457,0.009910,-0.010252,0.249790,0,0);}
.m5c_c01064{transform:matrix(0.241831,0.009441,-0.009752,0.249810,0,0);-ms-transform:matrix(0.241831,0.009441,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.241831,0.009441,-0.009752,0.249810,0,0);}
.mc1_c01064{transform:matrix(0.242579,0.008984,-0.009253,0.249829,0,0);-ms-transform:matrix(0.242579,0.008984,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.242579,0.008984,-0.009253,0.249829,0,0);}
.md2_c01064{transform:matrix(0.242770,0.011665,-0.011998,0.249712,0,0);-ms-transform:matrix(0.242770,0.011665,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.242770,0.011665,-0.011998,0.249712,0,0);}
.m100_c01064{transform:matrix(0.243865,0.009764,-0.010002,0.249800,0,0);-ms-transform:matrix(0.243865,0.009764,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.243865,0.009764,-0.010002,0.249800,0,0);}
.m2_c01064{transform:matrix(0.244049,0.009283,-0.009503,0.249819,0,0);-ms-transform:matrix(0.244049,0.009283,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.244049,0.009283,-0.009503,0.249819,0,0);}
.m83_c01064{transform:matrix(0.244249,0.009780,-0.010002,0.249800,0,0);-ms-transform:matrix(0.244249,0.009780,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.244249,0.009780,-0.010002,0.249800,0,0);}
.m123_c01064{transform:matrix(0.244329,0.014689,-0.015003,0.249549,0,0);-ms-transform:matrix(0.244329,0.014689,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.244329,0.014689,-0.015003,0.249549,0,0);}
.m64_c01064{transform:matrix(0.244463,0.008320,-0.008504,0.249855,0,0);-ms-transform:matrix(0.244463,0.008320,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.244463,0.008320,-0.008504,0.249855,0,0);}
.me2_c01064{transform:matrix(0.245465,0.007364,-0.007497,0.249888,0,0);-ms-transform:matrix(0.245465,0.007364,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.245465,0.007364,-0.007497,0.249888,0,0);}
.mcc_c01064{transform:matrix(0.246223,0.009859,-0.010002,0.249800,0,0);-ms-transform:matrix(0.246223,0.009859,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.246223,0.009859,-0.010002,0.249800,0,0);}
.m34_c01064{transform:matrix(0.246469,0.008635,-0.008753,0.249847,0,0);-ms-transform:matrix(0.246469,0.008635,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.246469,0.008635,-0.008753,0.249847,0,0);}
.m118_c01064{transform:matrix(0.247085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247085,0.000000,0.000000,0.250000,0,0);}
.m101_c01064{transform:matrix(0.247247,0.009900,-0.010002,0.249800,0,0);-ms-transform:matrix(0.247247,0.009900,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.247247,0.009900,-0.010002,0.249800,0,0);}
.m4d_c01064{transform:matrix(0.247398,0.008668,-0.008753,0.249847,0,0);-ms-transform:matrix(0.247398,0.008668,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.247398,0.008668,-0.008753,0.249847,0,0);}
.m89_c01064{transform:matrix(0.247557,0.009912,-0.010002,0.249800,0,0);-ms-transform:matrix(0.247557,0.009912,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.247557,0.009912,-0.010002,0.249800,0,0);}
.mf9_c01064{transform:matrix(0.247587,0.009913,-0.010002,0.249800,0,0);-ms-transform:matrix(0.247587,0.009913,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.247587,0.009913,-0.010002,0.249800,0,0);}
.m6e_c01064{transform:matrix(0.248401,0.008454,-0.008504,0.249855,0,0);-ms-transform:matrix(0.248401,0.008454,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.248401,0.008454,-0.008504,0.249855,0,0);}
.m40_c01064{transform:matrix(0.248508,0.008706,-0.008753,0.249847,0,0);-ms-transform:matrix(0.248508,0.008706,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.248508,0.008706,-0.008753,0.249847,0,0);}
.m10e_c01064{transform:matrix(0.249248,0.012475,-0.012497,0.249687,0,0);-ms-transform:matrix(0.249248,0.012475,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.249248,0.012475,-0.012497,0.249687,0,0);}
.m103_c01064{transform:matrix(0.249620,0.009995,-0.010002,0.249800,0,0);-ms-transform:matrix(0.249620,0.009995,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.249620,0.009995,-0.010002,0.249800,0,0);}
.m10b_c01064{transform:matrix(0.249922,0.012509,-0.012497,0.249687,0,0);-ms-transform:matrix(0.249922,0.012509,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.249922,0.012509,-0.012497,0.249687,0,0);}
.m36_c01064{transform:matrix(0.250047,0.008760,-0.008753,0.249847,0,0);-ms-transform:matrix(0.250047,0.008760,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.250047,0.008760,-0.008753,0.249847,0,0);}
.md0_c01064{transform:matrix(0.250294,0.010022,-0.010002,0.249800,0,0);-ms-transform:matrix(0.250294,0.010022,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.250294,0.010022,-0.010002,0.249800,0,0);}
.md8_c01064{transform:matrix(0.250641,0.012043,-0.011998,0.249712,0,0);-ms-transform:matrix(0.250641,0.012043,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.250641,0.012043,-0.011998,0.249712,0,0);}
.m112_c01064{transform:matrix(0.250722,0.009035,-0.009003,0.249838,0,0);-ms-transform:matrix(0.250722,0.009035,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.250722,0.009035,-0.009003,0.249838,0,0);}
.mf5_c01064{transform:matrix(0.251251,0.014602,-0.014505,0.249579,0,0);-ms-transform:matrix(0.251251,0.014602,-0.014505,0.249579,0,0);-webkit-transform:matrix(0.251251,0.014602,-0.014505,0.249579,0,0);}
.mf7_c01064{transform:matrix(0.251700,0.014628,-0.014505,0.249579,0,0);-ms-transform:matrix(0.251700,0.014628,-0.014505,0.249579,0,0);-webkit-transform:matrix(0.251700,0.014628,-0.014505,0.249579,0,0);}
.me3_c01064{transform:matrix(0.252252,0.007568,-0.007497,0.249888,0,0);-ms-transform:matrix(0.252252,0.007568,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.252252,0.007568,-0.007497,0.249888,0,0);}
.m2a_c01064{transform:matrix(0.252542,0.008342,-0.008254,0.249864,0,0);-ms-transform:matrix(0.252542,0.008342,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.252542,0.008342,-0.008254,0.249864,0,0);}
.m65_c01064{transform:matrix(0.253168,0.008616,-0.008504,0.249855,0,0);-ms-transform:matrix(0.253168,0.008616,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.253168,0.008616,-0.008504,0.249855,0,0);}
.mfa_c01064{transform:matrix(0.253242,0.010140,-0.010002,0.249800,0,0);-ms-transform:matrix(0.253242,0.010140,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.253242,0.010140,-0.010002,0.249800,0,0);}
.m7_c01064{transform:matrix(0.253342,0.009890,-0.009752,0.249810,0,0);-ms-transform:matrix(0.253342,0.009890,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.253342,0.009890,-0.009752,0.249810,0,0);}
.m3a_c01064{transform:matrix(0.253539,0.008883,-0.008753,0.249847,0,0);-ms-transform:matrix(0.253539,0.008883,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.253539,0.008883,-0.008753,0.249847,0,0);}
.m3d_c01064{transform:matrix(0.253679,0.008888,-0.008753,0.249847,0,0);-ms-transform:matrix(0.253679,0.008888,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.253679,0.008888,-0.008753,0.249847,0,0);}
.m7f_c01064{transform:matrix(0.253900,0.009150,-0.009003,0.249838,0,0);-ms-transform:matrix(0.253900,0.009150,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.253900,0.009150,-0.009003,0.249838,0,0);}
.mf4_c01064{transform:matrix(0.254076,0.014766,-0.014505,0.249579,0,0);-ms-transform:matrix(0.254076,0.014766,-0.014505,0.249579,0,0);-webkit-transform:matrix(0.254076,0.014766,-0.014505,0.249579,0,0);}
.mf2_c01064{transform:matrix(0.254161,0.014771,-0.014505,0.249579,0,0);-ms-transform:matrix(0.254161,0.014771,-0.014505,0.249579,0,0);-webkit-transform:matrix(0.254161,0.014771,-0.014505,0.249579,0,0);}
.mcf_c01064{transform:matrix(0.254736,0.010200,-0.010002,0.249800,0,0);-ms-transform:matrix(0.254736,0.010200,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.254736,0.010200,-0.010002,0.249800,0,0);}
.m50_c01064{transform:matrix(0.254954,0.008932,-0.008753,0.249847,0,0);-ms-transform:matrix(0.254954,0.008932,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.254954,0.008932,-0.008753,0.249847,0,0);}
.m106_c01064{transform:matrix(0.255021,0.010211,-0.010002,0.249800,0,0);-ms-transform:matrix(0.255021,0.010211,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.255021,0.010211,-0.010002,0.249800,0,0);}
.mdd_c01064{transform:matrix(0.255465,0.007664,-0.007497,0.249888,0,0);-ms-transform:matrix(0.255465,0.007664,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.255465,0.007664,-0.007497,0.249888,0,0);}
.m7d_c01064{transform:matrix(0.255574,0.009210,-0.009003,0.249838,0,0);-ms-transform:matrix(0.255574,0.009210,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.255574,0.009210,-0.009003,0.249838,0,0);}
.m117_c01064{transform:matrix(0.257023,0.009262,-0.009003,0.249838,0,0);-ms-transform:matrix(0.257023,0.009262,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.257023,0.009262,-0.009003,0.249838,0,0);}
.m7a_c01064{transform:matrix(0.257378,0.009275,-0.009003,0.249838,0,0);-ms-transform:matrix(0.257378,0.009275,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.257378,0.009275,-0.009003,0.249838,0,0);}
.me0_c01064{transform:matrix(0.257434,0.007723,-0.007497,0.249888,0,0);-ms-transform:matrix(0.257434,0.007723,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.257434,0.007723,-0.007497,0.249888,0,0);}
.md9_c01064{transform:matrix(0.258377,0.012415,-0.011998,0.249712,0,0);-ms-transform:matrix(0.258377,0.012415,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.258377,0.012415,-0.011998,0.249712,0,0);}
.mca_c01064{transform:matrix(0.258538,0.010352,-0.010002,0.249800,0,0);-ms-transform:matrix(0.258538,0.010352,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.258538,0.010352,-0.010002,0.249800,0,0);}
.m5_c01064{transform:matrix(0.258548,0.010093,-0.009752,0.249810,0,0);-ms-transform:matrix(0.258548,0.010093,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.258548,0.010093,-0.009752,0.249810,0,0);}
.m7c_c01064{transform:matrix(0.258572,0.009318,-0.009003,0.249838,0,0);-ms-transform:matrix(0.258572,0.009318,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.258572,0.009318,-0.009003,0.249838,0,0);}
.mbd_c01064{transform:matrix(0.258873,0.009588,-0.009253,0.249829,0,0);-ms-transform:matrix(0.258873,0.009588,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.258873,0.009588,-0.009253,0.249829,0,0);}
.m6d_c01064{transform:matrix(0.259460,0.008830,-0.008504,0.249855,0,0);-ms-transform:matrix(0.259460,0.008830,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.259460,0.008830,-0.008504,0.249855,0,0);}
.mef_c01064{transform:matrix(0.259582,0.015086,-0.014505,0.249579,0,0);-ms-transform:matrix(0.259582,0.015086,-0.014505,0.249579,0,0);-webkit-transform:matrix(0.259582,0.015086,-0.014505,0.249579,0,0);}
.mde_c01064{transform:matrix(0.260043,0.007801,-0.007497,0.249888,0,0);-ms-transform:matrix(0.260043,0.007801,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.260043,0.007801,-0.007497,0.249888,0,0);}
.m38_c01064{transform:matrix(0.260060,0.009111,-0.008753,0.249847,0,0);-ms-transform:matrix(0.260060,0.009111,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.260060,0.009111,-0.008753,0.249847,0,0);}
.m2b_c01064{transform:matrix(0.260078,0.008591,-0.008254,0.249864,0,0);-ms-transform:matrix(0.260078,0.008591,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.260078,0.008591,-0.008254,0.249864,0,0);}
.m5d_c01064{transform:matrix(0.260701,0.010178,-0.009752,0.249810,0,0);-ms-transform:matrix(0.260701,0.010178,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.260701,0.010178,-0.009752,0.249810,0,0);}
.m63_c01064{transform:matrix(0.262500,0.010248,-0.009752,0.249810,0,0);-ms-transform:matrix(0.262500,0.010248,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.262500,0.010248,-0.009752,0.249810,0,0);}
.m49_c01064{transform:matrix(0.262604,0.009200,-0.008753,0.249847,0,0);-ms-transform:matrix(0.262604,0.009200,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.262604,0.009200,-0.008753,0.249847,0,0);}
.m85_c01064{transform:matrix(0.262690,0.010518,-0.010002,0.249800,0,0);-ms-transform:matrix(0.262690,0.010518,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.262690,0.010518,-0.010002,0.249800,0,0);}
.m27_c01064{transform:matrix(0.263436,0.008702,-0.008254,0.249864,0,0);-ms-transform:matrix(0.263436,0.008702,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.263436,0.008702,-0.008254,0.249864,0,0);}
.m5e_c01064{transform:matrix(0.263609,0.010291,-0.009752,0.249810,0,0);-ms-transform:matrix(0.263609,0.010291,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.263609,0.010291,-0.009752,0.249810,0,0);}
.mbf_c01064{transform:matrix(0.263924,0.009775,-0.009253,0.249829,0,0);-ms-transform:matrix(0.263924,0.009775,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.263924,0.009775,-0.009253,0.249829,0,0);}
.m43_c01064{transform:matrix(0.264308,0.009260,-0.008753,0.249847,0,0);-ms-transform:matrix(0.264308,0.009260,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.264308,0.009260,-0.008753,0.249847,0,0);}
.mc8_c01064{transform:matrix(0.264308,0.010583,-0.010002,0.249800,0,0);-ms-transform:matrix(0.264308,0.010583,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.264308,0.010583,-0.010002,0.249800,0,0);}
.mc5_c01064{transform:matrix(0.264598,0.010595,-0.010002,0.249800,0,0);-ms-transform:matrix(0.264598,0.010595,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.264598,0.010595,-0.010002,0.249800,0,0);}
.m42_c01064{transform:matrix(0.264603,0.009270,-0.008753,0.249847,0,0);-ms-transform:matrix(0.264603,0.009270,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.264603,0.009270,-0.008753,0.249847,0,0);}
.mb8_c01064{transform:matrix(0.265048,0.009817,-0.009253,0.249829,0,0);-ms-transform:matrix(0.265048,0.009817,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.265048,0.009817,-0.009253,0.249829,0,0);}
.m10c_c01064{transform:matrix(0.265568,0.013292,-0.012497,0.249687,0,0);-ms-transform:matrix(0.265568,0.013292,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.265568,0.013292,-0.012497,0.249687,0,0);}
.m46_c01064{transform:matrix(0.267276,0.009364,-0.008753,0.249847,0,0);-ms-transform:matrix(0.267276,0.009364,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.267276,0.009364,-0.008753,0.249847,0,0);}
.m8b_c01064{transform:matrix(0.268130,0.010736,-0.010002,0.249800,0,0);-ms-transform:matrix(0.268130,0.010736,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.268130,0.010736,-0.010002,0.249800,0,0);}
.m25_c01064{transform:matrix(0.268439,0.008867,-0.008254,0.249864,0,0);-ms-transform:matrix(0.268439,0.008867,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.268439,0.008867,-0.008254,0.249864,0,0);}
.m8c_c01064{transform:matrix(0.268825,0.010764,-0.010002,0.249800,0,0);-ms-transform:matrix(0.268825,0.010764,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.268825,0.010764,-0.010002,0.249800,0,0);}
.m3f_c01064{transform:matrix(0.270389,0.009473,-0.008753,0.249847,0,0);-ms-transform:matrix(0.270389,0.009473,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.270389,0.009473,-0.008753,0.249847,0,0);}
.m8_c01064{transform:matrix(0.270429,0.010557,-0.009752,0.249810,0,0);-ms-transform:matrix(0.270429,0.010557,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.270429,0.010557,-0.009752,0.249810,0,0);}
.m51_c01064{transform:matrix(0.270439,0.009475,-0.008753,0.249847,0,0);-ms-transform:matrix(0.270439,0.009475,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.270439,0.009475,-0.008753,0.249847,0,0);}
.m41_c01064{transform:matrix(0.270614,0.009481,-0.008753,0.249847,0,0);-ms-transform:matrix(0.270614,0.009481,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.270614,0.009481,-0.008753,0.249847,0,0);}
.m4b_c01064{transform:matrix(0.271044,0.009496,-0.008753,0.249847,0,0);-ms-transform:matrix(0.271044,0.009496,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.271044,0.009496,-0.008753,0.249847,0,0);}
.mc0_c01064{transform:matrix(0.272009,0.010074,-0.009253,0.249829,0,0);-ms-transform:matrix(0.272009,0.010074,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.272009,0.010074,-0.009253,0.249829,0,0);}
.me4_c01064{transform:matrix(0.272098,0.008163,-0.007497,0.249888,0,0);-ms-transform:matrix(0.272098,0.008163,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.272098,0.008163,-0.007497,0.249888,0,0);}
.m48_c01064{transform:matrix(0.273677,0.009588,-0.008753,0.249847,0,0);-ms-transform:matrix(0.273677,0.009588,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.273677,0.009588,-0.008753,0.249847,0,0);}
.mb_c01064{transform:matrix(0.273961,0.010695,-0.009752,0.249810,0,0);-ms-transform:matrix(0.273961,0.010695,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.273961,0.010695,-0.009752,0.249810,0,0);}
.m110_c01064{transform:matrix(0.274077,0.009877,-0.009003,0.249838,0,0);-ms-transform:matrix(0.274077,0.009877,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.274077,0.009877,-0.009003,0.249838,0,0);}
.m124_c01064{transform:matrix(0.274235,0.016487,-0.015003,0.249549,0,0);-ms-transform:matrix(0.274235,0.016487,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.274235,0.016487,-0.015003,0.249549,0,0);}
.m2f_c01064{transform:matrix(0.274620,0.009072,-0.008254,0.249864,0,0);-ms-transform:matrix(0.274620,0.009072,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.274620,0.009072,-0.008254,0.249864,0,0);}
.m5b_c01064{transform:matrix(0.275170,0.010742,-0.009752,0.249810,0,0);-ms-transform:matrix(0.275170,0.010742,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.275170,0.010742,-0.009752,0.249810,0,0);}
.mba_c01064{transform:matrix(0.275191,0.010192,-0.009253,0.249829,0,0);-ms-transform:matrix(0.275191,0.010192,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.275191,0.010192,-0.009253,0.249829,0,0);}
.mc3_c01064{transform:matrix(0.275266,0.010195,-0.009253,0.249829,0,0);-ms-transform:matrix(0.275266,0.010195,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.275266,0.010195,-0.009253,0.249829,0,0);}
.m17_c01064{transform:matrix(0.275310,0.010748,-0.009752,0.249810,0,0);-ms-transform:matrix(0.275310,0.010748,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.275310,0.010748,-0.009752,0.249810,0,0);}
.m116_c01064{transform:matrix(0.276306,0.009957,-0.009003,0.249838,0,0);-ms-transform:matrix(0.276306,0.009957,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.276306,0.009957,-0.009003,0.249838,0,0);}
.mcd_c01064{transform:matrix(0.276728,0.011080,-0.010002,0.249800,0,0);-ms-transform:matrix(0.276728,0.011080,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.276728,0.011080,-0.010002,0.249800,0,0);}
.m61_c01064{transform:matrix(0.276979,0.010813,-0.009752,0.249810,0,0);-ms-transform:matrix(0.276979,0.010813,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.276979,0.010813,-0.009752,0.249810,0,0);}
.m88_c01064{transform:matrix(0.277288,0.011103,-0.010002,0.249800,0,0);-ms-transform:matrix(0.277288,0.011103,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.277288,0.011103,-0.010002,0.249800,0,0);}
.m4e_c01064{transform:matrix(0.278239,0.009748,-0.008753,0.249847,0,0);-ms-transform:matrix(0.278239,0.009748,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.278239,0.009748,-0.008753,0.249847,0,0);}
.m44_c01064{transform:matrix(0.278319,0.009751,-0.008753,0.249847,0,0);-ms-transform:matrix(0.278319,0.009751,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.278319,0.009751,-0.008753,0.249847,0,0);}
.m8d_c01064{transform:matrix(0.278922,0.011168,-0.010002,0.249800,0,0);-ms-transform:matrix(0.278922,0.011168,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.278922,0.011168,-0.010002,0.249800,0,0);}
.m113_c01064{transform:matrix(0.278964,0.010053,-0.009003,0.249838,0,0);-ms-transform:matrix(0.278964,0.010053,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.278964,0.010053,-0.009003,0.249838,0,0);}
.m26_c01064{transform:matrix(0.279707,0.009240,-0.008254,0.249864,0,0);-ms-transform:matrix(0.279707,0.009240,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.279707,0.009240,-0.008254,0.249864,0,0);}
.m114_c01064{transform:matrix(0.280638,0.010113,-0.009003,0.249838,0,0);-ms-transform:matrix(0.280638,0.010113,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.280638,0.010113,-0.009003,0.249838,0,0);}
.m32_c01064{transform:matrix(0.282732,0.009906,-0.008753,0.249847,0,0);-ms-transform:matrix(0.282732,0.009906,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.282732,0.009906,-0.008753,0.249847,0,0);}
.m115_c01064{transform:matrix(0.282856,0.010193,-0.009003,0.249838,0,0);-ms-transform:matrix(0.282856,0.010193,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.282856,0.010193,-0.009003,0.249838,0,0);}
.m33_c01064{transform:matrix(0.283636,0.009937,-0.008753,0.249847,0,0);-ms-transform:matrix(0.283636,0.009937,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.283636,0.009937,-0.008753,0.249847,0,0);}
.m28_c01064{transform:matrix(0.284760,0.009406,-0.008254,0.249864,0,0);-ms-transform:matrix(0.284760,0.009406,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.284760,0.009406,-0.008254,0.249864,0,0);}
.mc7_c01064{transform:matrix(0.285616,0.011436,-0.010002,0.249800,0,0);-ms-transform:matrix(0.285616,0.011436,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.285616,0.011436,-0.010002,0.249800,0,0);}
.m127_c01064{transform:matrix(0.288159,0.014422,-0.012497,0.249687,0,0);-ms-transform:matrix(0.288159,0.014422,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.288159,0.014422,-0.012497,0.249687,0,0);}
.m30_c01064{transform:matrix(0.288318,0.009524,-0.008254,0.249864,0,0);-ms-transform:matrix(0.288318,0.009524,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.288318,0.009524,-0.008254,0.249864,0,0);}
.m35_c01064{transform:matrix(0.288818,0.010119,-0.008753,0.249847,0,0);-ms-transform:matrix(0.288818,0.010119,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.288818,0.010119,-0.008753,0.249847,0,0);}
.m10f_c01064{transform:matrix(0.288992,0.010414,-0.009003,0.249838,0,0);-ms-transform:matrix(0.288992,0.010414,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.288992,0.010414,-0.009003,0.249838,0,0);}
.m2e_c01064{transform:matrix(0.289282,0.009556,-0.008254,0.249864,0,0);-ms-transform:matrix(0.289282,0.009556,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.289282,0.009556,-0.008254,0.249864,0,0);}
.mc9_c01064{transform:matrix(0.291716,0.011680,-0.010002,0.249800,0,0);-ms-transform:matrix(0.291716,0.011680,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.291716,0.011680,-0.010002,0.249800,0,0);}
.mce_c01064{transform:matrix(0.294419,0.011789,-0.010002,0.249800,0,0);-ms-transform:matrix(0.294419,0.011789,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.294419,0.011789,-0.010002,0.249800,0,0);}
.m9_c01064{transform:matrix(0.298922,0.011670,-0.009752,0.249810,0,0);-ms-transform:matrix(0.298922,0.011670,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.298922,0.011670,-0.009752,0.249810,0,0);}
.m29_c01064{transform:matrix(0.300251,0.009918,-0.008254,0.249864,0,0);-ms-transform:matrix(0.300251,0.009918,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.300251,0.009918,-0.008254,0.249864,0,0);}
.mc6_c01064{transform:matrix(0.300269,0.012023,-0.010002,0.249800,0,0);-ms-transform:matrix(0.300269,0.012023,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.300269,0.012023,-0.010002,0.249800,0,0);}
.m111_c01064{transform:matrix(0.301125,0.010851,-0.009003,0.249838,0,0);-ms-transform:matrix(0.301125,0.010851,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.301125,0.010851,-0.009003,0.249838,0,0);}
.m37_c01064{transform:matrix(0.301825,0.010574,-0.008753,0.249847,0,0);-ms-transform:matrix(0.301825,0.010574,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.301825,0.010574,-0.008753,0.249847,0,0);}
.m2c_c01064{transform:matrix(0.302795,0.010002,-0.008254,0.249864,0,0);-ms-transform:matrix(0.302795,0.010002,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.302795,0.010002,-0.008254,0.249864,0,0);}
.m2d_c01064{transform:matrix(0.302915,0.010006,-0.008254,0.249864,0,0);-ms-transform:matrix(0.302915,0.010006,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.302915,0.010006,-0.008254,0.249864,0,0);}
.m6_c01064{transform:matrix(0.303894,0.011864,-0.009752,0.249810,0,0);-ms-transform:matrix(0.303894,0.011864,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.303894,0.011864,-0.009752,0.249810,0,0);}
.mcb_c01064{transform:matrix(0.304366,0.012187,-0.010002,0.249800,0,0);-ms-transform:matrix(0.304366,0.012187,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.304366,0.012187,-0.010002,0.249800,0,0);}
.ma_c01064{transform:matrix(0.307706,0.012013,-0.009752,0.249810,0,0);-ms-transform:matrix(0.307706,0.012013,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.307706,0.012013,-0.009752,0.249810,0,0);}
.m39_c01064{transform:matrix(0.307951,0.010789,-0.008753,0.249847,0,0);-ms-transform:matrix(0.307951,0.010789,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.307951,0.010789,-0.008753,0.249847,0,0);}
.m128_c01064{transform:matrix(0.311560,0.015594,-0.012497,0.249687,0,0);-ms-transform:matrix(0.311560,0.015594,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.311560,0.015594,-0.012497,0.249687,0,0);}
.m12a_c01064{transform:matrix(0.315026,0.015767,-0.012497,0.249687,0,0);-ms-transform:matrix(0.315026,0.015767,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.315026,0.015767,-0.012497,0.249687,0,0);}
.m3c_c01064{transform:matrix(0.321818,0.011275,-0.008753,0.249847,0,0);-ms-transform:matrix(0.321818,0.011275,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.321818,0.011275,-0.008753,0.249847,0,0);}
.m12d_c01064{transform:matrix(0.321872,0.016110,-0.012497,0.249687,0,0);-ms-transform:matrix(0.321872,0.016110,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.321872,0.016110,-0.012497,0.249687,0,0);}
.m12c_c01064{transform:matrix(0.327345,0.016384,-0.012497,0.249687,0,0);-ms-transform:matrix(0.327345,0.016384,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.327345,0.016384,-0.012497,0.249687,0,0);}
.m3b_c01064{transform:matrix(0.334730,0.011727,-0.008753,0.249847,0,0);-ms-transform:matrix(0.334730,0.011727,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.334730,0.011727,-0.008753,0.249847,0,0);}
.m129_c01064{transform:matrix(0.336699,0.016852,-0.012497,0.249687,0,0);-ms-transform:matrix(0.336699,0.016852,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.336699,0.016852,-0.012497,0.249687,0,0);}
.m12b_c01064{transform:matrix(0.349597,0.017497,-0.012497,0.249687,0,0);-ms-transform:matrix(0.349597,0.017497,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.349597,0.017497,-0.012497,0.249687,0,0);}
.m126_c01064{transform:matrix(0.355061,0.017771,-0.012497,0.249687,0,0);-ms-transform:matrix(0.355061,0.017771,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.355061,0.017771,-0.012497,0.249687,0,0);}
.m125_c01064{transform:matrix(0.361577,0.018097,-0.012497,0.249687,0,0);-ms-transform:matrix(0.361577,0.018097,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.361577,0.018097,-0.012497,0.249687,0,0);}
.m31_c01064{transform:matrix(0.439845,0.015410,-0.008753,0.249847,0,0);-ms-transform:matrix(0.439845,0.015410,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.439845,0.015410,-0.008753,0.249847,0,0);}
.m5a_c01064{transform:matrix(0.617275,0.024098,-0.009752,0.249810,0,0);-ms-transform:matrix(0.617275,0.024098,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.617275,0.024098,-0.009752,0.249810,0,0);}
.m4_c01064{transform:matrix(4.237664,0.152709,-0.009003,0.249838,0,0);-ms-transform:matrix(4.237664,0.152709,-0.009003,0.249838,0,0);-webkit-transform:matrix(4.237664,0.152709,-0.009003,0.249838,0,0);}
.v0_c01064{vertical-align:0.000000px;}
.ls0_c01064{letter-spacing:0.000000px;}
.sc__c01064{text-shadow:none;}
.sc0_c01064{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__c01064{-webkit-text-stroke:0px transparent;}
.sc0_c01064{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01064{word-spacing:0.000000px;}
.fc0_c01064{color:transparent;}
.fs2_c01064{font-size:29.989453px;}
.fs0_c01064{font-size:30.000000px;}
.fs1e_c01064{font-size:54.013525px;}
.fs6_c01064{font-size:65.969963px;}
.fs7_c01064{font-size:65.974453px;}
.fs1a_c01064{font-size:65.976797px;}
.fs3_c01064{font-size:65.984224px;}
.fs13_c01064{font-size:65.986832px;}
.fs8_c01064{font-size:71.972131px;}
.fs12_c01064{font-size:71.977316px;}
.fs9_c01064{font-size:71.982790px;}
.fsd_c01064{font-size:71.985635px;}
.fs1d_c01064{font-size:71.985743px;}
.fs15_c01064{font-size:72.032393px;}
.fsa_c01064{font-size:77.967116px;}
.fsc_c01064{font-size:77.972578px;}
.fs17_c01064{font-size:77.975348px;}
.fs18_c01064{font-size:77.984437px;}
.fs14_c01064{font-size:78.011894px;}
.fs19_c01064{font-size:78.019537px;}
.fsf_c01064{font-size:83.970469px;}
.fs1_c01064{font-size:83.976687px;}
.fs4_c01064{font-size:83.979922px;}
.fs11_c01064{font-size:83.986643px;}
.fs16_c01064{font-size:84.001092px;}
.fs10_c01064{font-size:89.956114px;}
.fsb_c01064{font-size:89.971646px;}
.fs1c_c01064{font-size:90.000000px;}
.fse_c01064{font-size:95.966250px;}
.fs5_c01064{font-size:101.975619px;}
.fs1b_c01064{font-size:102.000000px;}
.y0_c01064{bottom:0.000000px;}
.y130_c01064{bottom:15.939375px;}
.y12f_c01064{bottom:18.753300px;}
.y12e_c01064{bottom:22.135575px;}
.y12d_c01064{bottom:23.798025px;}
.y12c_c01064{bottom:24.868575px;}
.y12b_c01064{bottom:27.125625px;}
.y12a_c01064{bottom:28.706550px;}
.y129_c01064{bottom:32.638275px;}
.y128_c01064{bottom:38.103000px;}
.y125_c01064{bottom:57.156000px;}
.y124_c01064{bottom:59.115000px;}
.y123_c01064{bottom:61.441500px;}
.y122_c01064{bottom:62.613000px;}
.y121_c01064{bottom:63.331500px;}
.y120_c01064{bottom:64.570500px;}
.y11f_c01064{bottom:66.102000px;}
.y11e_c01064{bottom:68.823000px;}
.y11d_c01064{bottom:71.494500px;}
.y11c_c01064{bottom:72.654000px;}
.y11b_c01064{bottom:94.342500px;}
.y127_c01064{bottom:110.385990px;}
.y126_c01064{bottom:112.369500px;}
.y11a_c01064{bottom:114.237180px;}
.y119_c01064{bottom:116.189658px;}
.y118_c01064{bottom:118.587960px;}
.y117_c01064{bottom:120.972708px;}
.y116_c01064{bottom:123.391422px;}
.y115_c01064{bottom:124.967142px;}
.y114_c01064{bottom:128.917566px;}
.y113_c01064{bottom:130.962330px;}
.y112_c01064{bottom:134.478000px;}
.y111_c01064{bottom:147.312600px;}
.y110_c01064{bottom:149.061375px;}
.y10f_c01064{bottom:156.858000px;}
.y10e_c01064{bottom:162.319350px;}
.y10d_c01064{bottom:164.552175px;}
.y10c_c01064{bottom:167.786100px;}
.y10b_c01064{bottom:170.609475px;}
.y10a_c01064{bottom:172.291500px;}
.y109_c01064{bottom:205.132403px;}
.y108_c01064{bottom:206.086119px;}
.y107_c01064{bottom:207.107238px;}
.y106_c01064{bottom:218.419200px;}
.y105_c01064{bottom:220.637040px;}
.y104_c01064{bottom:223.854180px;}
.y103_c01064{bottom:226.040520px;}
.y102_c01064{bottom:227.386860px;}
.y101_c01064{bottom:229.553760px;}
.y100_c01064{bottom:230.455500px;}
.yff_c01064{bottom:232.645260px;}
.yfe_c01064{bottom:233.984280px;}
.yfd_c01064{bottom:237.907620px;}
.yfc_c01064{bottom:241.415700px;}
.yfb_c01064{bottom:242.746500px;}
.yfa_c01064{bottom:252.192906px;}
.yf9_c01064{bottom:255.891276px;}
.yf8_c01064{bottom:266.166759px;}
.yf7_c01064{bottom:271.904148px;}
.yf6_c01064{bottom:275.095221px;}
.yf5_c01064{bottom:279.689517px;}
.yf4_c01064{bottom:281.511384px;}
.yf3_c01064{bottom:282.811686px;}
.yf2_c01064{bottom:289.227675px;}
.yf1_c01064{bottom:291.052500px;}
.yf0_c01064{bottom:293.802577px;}
.yef_c01064{bottom:296.845208px;}
.yee_c01064{bottom:299.802315px;}
.yed_c01064{bottom:302.353950px;}
.yec_c01064{bottom:303.851235px;}
.yeb_c01064{bottom:306.293115px;}
.yea_c01064{bottom:310.792800px;}
.ye9_c01064{bottom:312.764003px;}
.ye8_c01064{bottom:314.305500px;}
.ye7_c01064{bottom:338.067915px;}
.ye6_c01064{bottom:339.667260px;}
.ye5_c01064{bottom:341.018610px;}
.ye4_c01064{bottom:341.993580px;}
.ye3_c01064{bottom:343.955310px;}
.ye2_c01064{bottom:344.965650px;}
.ye1_c01064{bottom:346.970310px;}
.ye0_c01064{bottom:348.929610px;}
.ydf_c01064{bottom:350.200500px;}
.yde_c01064{bottom:361.000536px;}
.ydd_c01064{bottom:363.640200px;}
.ydc_c01064{bottom:369.547008px;}
.ydb_c01064{bottom:373.282656px;}
.yda_c01064{bottom:376.946088px;}
.yd9_c01064{bottom:379.033944px;}
.yd8_c01064{bottom:382.237584px;}
.yd7_c01064{bottom:384.914832px;}
.yd6_c01064{bottom:387.060000px;}
.yd5_c01064{bottom:389.152824px;}
.yd4_c01064{bottom:392.325000px;}
.yd3_c01064{bottom:396.308280px;}
.yd2_c01064{bottom:397.636920px;}
.yd1_c01064{bottom:401.135460px;}
.yd0_c01064{bottom:402.535740px;}
.ycf_c01064{bottom:403.839360px;}
.yce_c01064{bottom:409.549260px;}
.ycd_c01064{bottom:410.966400px;}
.ycc_c01064{bottom:414.414900px;}
.ycb_c01064{bottom:415.339500px;}
.yca_c01064{bottom:418.003680px;}
.yc9_c01064{bottom:421.522980px;}
.yc8_c01064{bottom:422.839500px;}
.yc7_c01064{bottom:435.186885px;}
.yc6_c01064{bottom:438.082376px;}
.yc5_c01064{bottom:439.677834px;}
.yc4_c01064{bottom:440.973038px;}
.yc3_c01064{bottom:445.044684px;}
.yc2_c01064{bottom:447.522371px;}
.yc1_c01064{bottom:448.698194px;}
.yc0_c01064{bottom:450.782829px;}
.ybf_c01064{bottom:452.007437px;}
.ybe_c01064{bottom:452.826783px;}
.ybd_c01064{bottom:456.469914px;}
.ybc_c01064{bottom:457.717831px;}
.ybb_c01064{bottom:459.825000px;}
.yba_c01064{bottom:470.035225px;}
.yb9_c01064{bottom:471.397512px;}
.yb8_c01064{bottom:475.511923px;}
.yb7_c01064{bottom:478.293138px;}
.yb6_c01064{bottom:481.019986px;}
.yb5_c01064{bottom:484.585141px;}
.yb4_c01064{bottom:485.887158px;}
.yb3_c01064{bottom:488.197774px;}
.yb2_c01064{bottom:489.565227px;}
.yb1_c01064{bottom:492.769500px;}
.yb0_c01064{bottom:522.701760px;}
.yaf_c01064{bottom:524.413536px;}
.yae_c01064{bottom:527.298096px;}
.yad_c01064{bottom:528.366720px;}
.yac_c01064{bottom:530.832000px;}
.yab_c01064{bottom:543.801199px;}
.yaa_c01064{bottom:546.372680px;}
.ya9_c01064{bottom:547.754823px;}
.ya8_c01064{bottom:550.336725px;}
.ya7_c01064{bottom:553.306833px;}
.ya6_c01064{bottom:554.634045px;}
.ya5_c01064{bottom:558.087655px;}
.ya4_c01064{bottom:559.782135px;}
.ya3_c01064{bottom:561.977019px;}
.ya2_c01064{bottom:565.808751px;}
.ya1_c01064{bottom:567.030569px;}
.ya0_c01064{bottom:577.357974px;}
.y9f_c01064{bottom:578.494566px;}
.y9e_c01064{bottom:579.324330px;}
.y9d_c01064{bottom:583.358670px;}
.y9c_c01064{bottom:585.294840px;}
.y9b_c01064{bottom:588.528198px;}
.y9a_c01064{bottom:589.694544px;}
.y99_c01064{bottom:591.635898px;}
.y98_c01064{bottom:592.881354px;}
.y97_c01064{bottom:594.510210px;}
.y96_c01064{bottom:597.612402px;}
.y95_c01064{bottom:598.818276px;}
.y94_c01064{bottom:601.578000px;}
.y93_c01064{bottom:614.121180px;}
.y92_c01064{bottom:614.938320px;}
.y91_c01064{bottom:615.841320px;}
.y90_c01064{bottom:619.880340px;}
.y8f_c01064{bottom:623.481180px;}
.y8e_c01064{bottom:626.602500px;}
.y8d_c01064{bottom:627.888420px;}
.y8c_c01064{bottom:628.770300px;}
.y8b_c01064{bottom:632.752740px;}
.y8a_c01064{bottom:634.072320px;}
.y89_c01064{bottom:635.400960px;}
.y88_c01064{bottom:638.058660px;}
.y87_c01064{bottom:639.342840px;}
.y86_c01064{bottom:641.536500px;}
.y85_c01064{bottom:649.175664px;}
.y84_c01064{bottom:650.435700px;}
.y83_c01064{bottom:651.208926px;}
.y82_c01064{bottom:655.224636px;}
.y81_c01064{bottom:657.246828px;}
.y80_c01064{bottom:660.845118px;}
.y7f_c01064{bottom:665.200002px;}
.y7e_c01064{bottom:666.788250px;}
.y7d_c01064{bottom:671.872026px;}
.y7c_c01064{bottom:673.126500px;}
.y7b_c01064{bottom:685.046211px;}
.y7a_c01064{bottom:687.916560px;}
.y79_c01064{bottom:691.281247px;}
.y78_c01064{bottom:692.476273px;}
.y77_c01064{bottom:695.384695px;}
.y76_c01064{bottom:698.604472px;}
.y75_c01064{bottom:702.670569px;}
.y74_c01064{bottom:703.911438px;}
.y73_c01064{bottom:705.908827px;}
.y72_c01064{bottom:707.956500px;}
.y71_c01064{bottom:722.685318px;}
.y70_c01064{bottom:726.479769px;}
.y6f_c01064{bottom:728.004312px;}
.y6e_c01064{bottom:729.105912px;}
.y6d_c01064{bottom:731.351697px;}
.y6c_c01064{bottom:732.498534px;}
.y6b_c01064{bottom:734.745390px;}
.y6a_c01064{bottom:735.878865px;}
.y69_c01064{bottom:736.595415px;}
.y68_c01064{bottom:737.768517px;}
.y67_c01064{bottom:741.885645px;}
.y66_c01064{bottom:744.135000px;}
.y65_c01064{bottom:758.151097px;}
.y64_c01064{bottom:759.386005px;}
.y63_c01064{bottom:763.337050px;}
.y62_c01064{bottom:764.564448px;}
.y61_c01064{bottom:765.769300px;}
.y60_c01064{bottom:768.551164px;}
.y5f_c01064{bottom:771.304867px;}
.y5e_c01064{bottom:772.117567px;}
.y5d_c01064{bottom:775.673535px;}
.y5c_c01064{bottom:780.072024px;}
.y5b_c01064{bottom:795.095656px;}
.y5a_c01064{bottom:800.262084px;}
.y59_c01064{bottom:801.583891px;}
.y58_c01064{bottom:804.121738px;}
.y57_c01064{bottom:805.875627px;}
.y56_c01064{bottom:808.029889px;}
.y55_c01064{bottom:812.844615px;}
.y54_c01064{bottom:813.535500px;}
.y53_c01064{bottom:830.871534px;}
.y52_c01064{bottom:832.308066px;}
.y51_c01064{bottom:833.413063px;}
.y50_c01064{bottom:837.033555px;}
.y4f_c01064{bottom:838.176061px;}
.y4e_c01064{bottom:839.251348px;}
.y4d_c01064{bottom:842.152786px;}
.y4c_c01064{bottom:843.276316px;}
.y4b_c01064{bottom:845.798869px;}
.y4a_c01064{bottom:849.419256px;}
.y49_c01064{bottom:850.541053px;}
.y48_c01064{bottom:865.113337px;}
.y47_c01064{bottom:866.247652px;}
.y46_c01064{bottom:869.767515px;}
.y1_c01064{bottom:872.100000px;}
.y45_c01064{bottom:872.509327px;}
.y44_c01064{bottom:874.835602px;}
.y43_c01064{bottom:878.995702px;}
.y42_c01064{bottom:880.612335px;}
.y41_c01064{bottom:883.288365px;}
.y40_c01064{bottom:884.469247px;}
.y3f_c01064{bottom:886.707847px;}
.y3e_c01064{bottom:898.804372px;}
.y3d_c01064{bottom:899.949975px;}
.y3c_c01064{bottom:901.180680px;}
.y3b_c01064{bottom:906.612907px;}
.y3a_c01064{bottom:907.776885px;}
.y39_c01064{bottom:911.622667px;}
.y38_c01064{bottom:913.112355px;}
.y37_c01064{bottom:915.955072px;}
.y36_c01064{bottom:917.080252px;}
.y35_c01064{bottom:919.415610px;}
.y34_c01064{bottom:921.296002px;}
.y33_c01064{bottom:922.893000px;}
.y32_c01064{bottom:935.295984px;}
.y31_c01064{bottom:936.740691px;}
.y30_c01064{bottom:939.647579px;}
.y2f_c01064{bottom:942.625994px;}
.y2e_c01064{bottom:945.184698px;}
.y2d_c01064{bottom:946.245879px;}
.y2c_c01064{bottom:947.359926px;}
.y2b_c01064{bottom:950.622421px;}
.y2a_c01064{bottom:952.093809px;}
.y29_c01064{bottom:953.493372px;}
.y28_c01064{bottom:955.702755px;}
.y27_c01064{bottom:957.163500px;}
.y26_c01064{bottom:971.784479px;}
.y25_c01064{bottom:972.899777px;}
.y24_c01064{bottom:975.423741px;}
.y23_c01064{bottom:976.556751px;}
.y22_c01064{bottom:977.650629px;}
.y21_c01064{bottom:979.437692px;}
.y20_c01064{bottom:980.210369px;}
.y1f_c01064{bottom:982.416678px;}
.y1e_c01064{bottom:983.841045px;}
.y1d_c01064{bottom:987.858353px;}
.y1c_c01064{bottom:988.980576px;}
.y1b_c01064{bottom:991.895091px;}
.y1a_c01064{bottom:993.372383px;}
.y19_c01064{bottom:1005.912830px;}
.y18_c01064{bottom:1008.914996px;}
.y17_c01064{bottom:1010.053527px;}
.y16_c01064{bottom:1013.087409px;}
.y15_c01064{bottom:1016.833641px;}
.y14_c01064{bottom:1017.965306px;}
.y13_c01064{bottom:1019.839376px;}
.y12_c01064{bottom:1022.064473px;}
.y11_c01064{bottom:1023.220401px;}
.y10_c01064{bottom:1025.442632px;}
.yf_c01064{bottom:1026.572226px;}
.ye_c01064{bottom:1027.647947px;}
.yd_c01064{bottom:1039.742043px;}
.yc_c01064{bottom:1041.948956px;}
.yb_c01064{bottom:1045.870679px;}
.ya_c01064{bottom:1050.114152px;}
.y9_c01064{bottom:1054.404425px;}
.y8_c01064{bottom:1055.763380px;}
.y7_c01064{bottom:1060.018787px;}
.y6_c01064{bottom:1061.389500px;}
.y5_c01064{bottom:1115.920500px;}
.y4_c01064{bottom:1124.015223px;}
.y3_c01064{bottom:1127.191434px;}
.y2_c01064{bottom:1129.969500px;}
.h4_c01064{height:29.989453px;}
.h2_c01064{height:30.000000px;}
.h20_c01064{height:54.013525px;}
.h8_c01064{height:65.969963px;}
.h9_c01064{height:65.974453px;}
.h1c_c01064{height:65.976797px;}
.h5_c01064{height:65.984224px;}
.h15_c01064{height:65.986832px;}
.ha_c01064{height:71.972131px;}
.h14_c01064{height:71.977316px;}
.hb_c01064{height:71.982790px;}
.hf_c01064{height:71.985635px;}
.h1f_c01064{height:71.985743px;}
.h17_c01064{height:72.032393px;}
.hc_c01064{height:77.967116px;}
.he_c01064{height:77.972578px;}
.h19_c01064{height:77.975348px;}
.h1a_c01064{height:77.984437px;}
.h16_c01064{height:78.011894px;}
.h1b_c01064{height:78.019537px;}
.h11_c01064{height:83.970469px;}
.h3_c01064{height:83.976687px;}
.h6_c01064{height:83.979922px;}
.h13_c01064{height:83.986643px;}
.h18_c01064{height:84.001092px;}
.h12_c01064{height:89.956114px;}
.hd_c01064{height:89.971646px;}
.h1e_c01064{height:90.000000px;}
.h10_c01064{height:95.966250px;}
.h7_c01064{height:101.975619px;}
.h1d_c01064{height:102.000000px;}
.h0_c01064{height:1246.320000px;}
.h1_c01064{height:1246.500000px;}
.w0_c01064{width:900.450000px;}
.w1_c01064{width:900.750000px;}
.x0_c01064{left:0.000000px;}
.x1_c01064{left:17.280000px;}
.xce_c01064{left:154.170000px;}
.xcb_c01064{left:157.444500px;}
.xc7_c01064{left:159.247257px;}
.xc3_c01064{left:160.251000px;}
.xbe_c01064{left:161.871000px;}
.x9b_c01064{left:163.741500px;}
.xb4_c01064{left:165.138000px;}
.x91_c01064{left:167.821500px;}
.x19_c01064{left:169.520438px;}
.x87_c01064{left:170.695840px;}
.x6e_c01064{left:171.804000px;}
.x5d_c01064{left:173.710500px;}
.x54_c01064{left:175.204044px;}
.x43_c01064{left:177.243476px;}
.x31_c01064{left:178.326000px;}
.x25_c01064{left:180.760500px;}
.xd_c01064{left:184.803806px;}
.xcf_c01064{left:187.455000px;}
.xbf_c01064{left:193.270575px;}
.xa5_c01064{left:197.376087px;}
.x88_c01064{left:201.978121px;}
.x6f_c01064{left:206.615654px;}
.x44_c01064{left:211.189860px;}
.x1a_c01064{left:214.243152px;}
.xe_c01064{left:216.395331px;}
.x9c_c01064{left:220.635050px;}
.x32_c01064{left:223.908872px;}
.x26_c01064{left:224.981235px;}
.x76_c01064{left:226.377658px;}
.x67_c01064{left:228.708157px;}
.x5e_c01064{left:239.801843px;}
.x3b_c01064{left:243.848447px;}
.x7f_c01064{left:247.537341px;}
.xf_c01064{left:249.559076px;}
.x9d_c01064{left:254.328822px;}
.x77_c01064{left:258.450054px;}
.xd0_c01064{left:263.772000px;}
.x4c_c01064{left:266.647500px;}
.xb8_c01064{left:270.240000px;}
.xab_c01064{left:272.887313px;}
.x94_c01064{left:275.746500px;}
.x33_c01064{left:277.580646px;}
.x80_c01064{left:281.000345px;}
.x68_c01064{left:282.637674px;}
.x4d_c01064{left:284.344785px;}
.x27_c01064{left:291.865284px;}
.x5_c01064{left:293.266500px;}
.x55_c01064{left:297.253161px;}
.x89_c01064{left:300.147759px;}
.x1b_c01064{left:302.470008px;}
.xb9_c01064{left:304.461245px;}
.xcc_c01064{left:311.746544px;}
.x10_c01064{left:314.862972px;}
.x69_c01064{left:316.141137px;}
.xac_c01064{left:317.533621px;}
.x45_c01064{left:320.778335px;}
.x78_c01064{left:324.826112px;}
.xc0_c01064{left:326.043996px;}
.x6_c01064{left:328.377854px;}
.x28_c01064{left:334.233873px;}
.x1c_c01064{left:336.444464px;}
.xb5_c01064{left:339.633000px;}
.xd1_c01064{left:341.503500px;}
.x34_c01064{left:344.238421px;}
.x70_c01064{left:347.690438px;}
.x11_c01064{left:348.816602px;}
.x9e_c01064{left:352.693359px;}
.x3c_c01064{left:353.935749px;}
.x8a_c01064{left:356.392404px;}
.x79_c01064{left:358.008896px;}
.x2_c01064{left:360.738000px;}
.x81_c01064{left:367.086173px;}
.x92_c01064{left:368.197923px;}
.xad_c01064{left:373.253846px;}
.x9f_c01064{left:374.815715px;}
.x35_c01064{left:376.354273px;}
.x29_c01064{left:378.776785px;}
.xd2_c01064{left:385.255500px;}
.x95_c01064{left:387.140494px;}
.x71_c01064{left:391.764320px;}
.x56_c01064{left:395.913938px;}
.x46_c01064{left:397.147250px;}
.x3d_c01064{left:400.079060px;}
.x4e_c01064{left:407.675830px;}
.x82_c01064{left:412.286927px;}
.x12_c01064{left:414.193925px;}
.x5f_c01064{left:416.295173px;}
.x57_c01064{left:418.461503px;}
.x93_c01064{left:421.637430px;}
.x6a_c01064{left:425.925742px;}
.x47_c01064{left:431.143085px;}
.x3_c01064{left:433.771893px;}
.x7_c01064{left:437.381740px;}
.xb6_c01064{left:438.702000px;}
.xae_c01064{left:439.929603px;}
.xd3_c01064{left:441.189000px;}
.x96_c01064{left:443.440638px;}
.x83_c01064{left:446.848331px;}
.xba_c01064{left:448.114947px;}
.x60_c01064{left:449.599335px;}
.x1d_c01064{left:458.032713px;}
.xa6_c01064{left:461.026673px;}
.x4f_c01064{left:462.858093px;}
.xa0_c01064{left:464.165276px;}
.xc8_c01064{left:466.180557px;}
.xc4_c01064{left:467.218725px;}
.x13_c01064{left:469.234046px;}
.x8_c01064{left:472.191895px;}
.x97_c01064{left:475.165382px;}
.x2a_c01064{left:477.541422px;}
.xaf_c01064{left:483.383106px;}
.x8b_c01064{left:488.259634px;}
.x7a_c01064{left:490.426845px;}
.x58_c01064{left:494.880467px;}
.xa1_c01064{left:495.912497px;}
.x36_c01064{left:500.013490px;}
.x1e_c01064{left:501.130644px;}
.x14_c01064{left:502.489257px;}
.x50_c01064{left:507.784621px;}
.x2b_c01064{left:511.266663px;}
.x6b_c01064{left:512.859721px;}
.x61_c01064{left:515.617251px;}
.x4_c01064{left:517.272808px;}
.x3e_c01064{left:518.820199px;}
.x8c_c01064{left:522.258426px;}
.x84_c01064{left:533.087006px;}
.xbb_c01064{left:535.564410px;}
.xd4_c01064{left:541.146000px;}
.x2c_c01064{left:543.391506px;}
.x7b_c01064{left:544.567650px;}
.x62_c01064{left:549.314020px;}
.x48_c01064{left:551.502014px;}
.xb0_c01064{left:559.628284px;}
.x98_c01064{left:562.033427px;}
.x1f_c01064{left:567.910433px;}
.xb7_c01064{left:569.557500px;}
.x51_c01064{left:572.792548px;}
.xc9_c01064{left:575.298330px;}
.xc5_c01064{left:577.482851px;}
.x9_c01064{left:582.088888px;}
.x3f_c01064{left:585.218734px;}
.xc1_c01064{left:590.077371px;}
.x20_c01064{left:591.316508px;}
.xd5_c01064{left:597.100500px;}
.x8d_c01064{left:598.350042px;}
.x59_c01064{left:605.497680px;}
.x52_c01064{left:606.651156px;}
.x37_c01064{left:609.783111px;}
.x15_c01064{left:612.559068px;}
.x63_c01064{left:615.300468px;}
.x2d_c01064{left:620.850470px;}
.x7c_c01064{left:622.522617px;}
.x6c_c01064{left:623.652818px;}
.x99_c01064{left:628.475418px;}
.xc6_c01064{left:632.086692px;}
.xb1_c01064{left:637.376459px;}
.x5a_c01064{left:639.552074px;}
.x38_c01064{left:643.006355px;}
.x21_c01064{left:645.396522px;}
.x64_c01064{left:647.668068px;}
.xbc_c01064{left:657.858493px;}
.x40_c01064{left:663.477897px;}
.x8e_c01064{left:664.501689px;}
.x72_c01064{left:668.580726px;}
.xa7_c01064{left:671.582406px;}
.xa2_c01064{left:672.744487px;}
.x85_c01064{left:676.541407px;}
.x22_c01064{left:678.491124px;}
.xa_c01064{left:690.787081px;}
.x65_c01064{left:692.462729px;}
.x49_c01064{left:695.673788px;}
.x8f_c01064{left:699.899917px;}
.x16_c01064{left:701.690739px;}
.xa8_c01064{left:706.554399px;}
.xa3_c01064{left:707.714982px;}
.x2e_c01064{left:711.015215px;}
.x23_c01064{left:712.780323px;}
.x6d_c01064{left:714.499380px;}
.xcd_c01064{left:719.127255px;}
.xbd_c01064{left:725.404879px;}
.x4a_c01064{left:729.140652px;}
.xca_c01064{left:731.074898px;}
.x17_c01064{left:735.160295px;}
.x53_c01064{left:738.991184px;}
.x5b_c01064{left:749.178662px;}
.xa4_c01064{left:750.792362px;}
.xd6_c01064{left:753.016500px;}
.xb2_c01064{left:760.311900px;}
.x41_c01064{left:763.944830px;}
.x90_c01064{left:765.762354px;}
.xc2_c01064{left:766.886544px;}
.x4b_c01064{left:772.627170px;}
.x73_c01064{left:780.016679px;}
.x5c_c01064{left:783.463883px;}
.xd7_c01064{left:786.008883px;}
.x24_c01064{left:789.196250px;}
.xb_c01064{left:791.243524px;}
.xa9_c01064{left:793.930436px;}
.x42_c01064{left:796.321420px;}
.x2f_c01064{left:799.014627px;}
.x74_c01064{left:801.473700px;}
.x66_c01064{left:803.952627px;}
.x86_c01064{left:811.520293px;}
.x7d_c01064{left:813.328121px;}
.xb3_c01064{left:815.249907px;}
.x18_c01064{left:823.364219px;}
.xaa_c01064{left:827.113220px;}
.x9a_c01064{left:829.686505px;}
.x39_c01064{left:833.185485px;}
.x75_c01064{left:836.439699px;}
.x30_c01064{left:842.749848px;}
.xc_c01064{left:847.774437px;}
.x7e_c01064{left:856.288617px;}
.x3a_c01064{left:865.884253px;}
@media print{
.v0_c01064{vertical-align:0.000000pt;}
.ls0_c01064{letter-spacing:0.000000pt;}
.ws0_c01064{word-spacing:0.000000pt;}
.fs2_c01064{font-size:26.657292pt;}
.fs0_c01064{font-size:26.666667pt;}
.fs1e_c01064{font-size:48.012022pt;}
.fs6_c01064{font-size:58.639967pt;}
.fs7_c01064{font-size:58.643958pt;}
.fs1a_c01064{font-size:58.646042pt;}
.fs3_c01064{font-size:58.652644pt;}
.fs13_c01064{font-size:58.654961pt;}
.fs8_c01064{font-size:63.975227pt;}
.fs12_c01064{font-size:63.979837pt;}
.fs9_c01064{font-size:63.984702pt;}
.fsd_c01064{font-size:63.987231pt;}
.fs1d_c01064{font-size:63.987327pt;}
.fs15_c01064{font-size:64.028794pt;}
.fsa_c01064{font-size:69.304103pt;}
.fsc_c01064{font-size:69.308958pt;}
.fs17_c01064{font-size:69.311421pt;}
.fs18_c01064{font-size:69.319500pt;}
.fs14_c01064{font-size:69.343906pt;}
.fs19_c01064{font-size:69.350699pt;}
.fsf_c01064{font-size:74.640417pt;}
.fs1_c01064{font-size:74.645944pt;}
.fs4_c01064{font-size:74.648819pt;}
.fs11_c01064{font-size:74.654794pt;}
.fs16_c01064{font-size:74.667637pt;}
.fs10_c01064{font-size:79.960990pt;}
.fsb_c01064{font-size:79.974796pt;}
.fs1c_c01064{font-size:80.000000pt;}
.fse_c01064{font-size:85.303333pt;}
.fs5_c01064{font-size:90.644995pt;}
.fs1b_c01064{font-size:90.666667pt;}
.y0_c01064{bottom:0.000000pt;}
.y130_c01064{bottom:14.168333pt;}
.y12f_c01064{bottom:16.669600pt;}
.y12e_c01064{bottom:19.676067pt;}
.y12d_c01064{bottom:21.153800pt;}
.y12c_c01064{bottom:22.105400pt;}
.y12b_c01064{bottom:24.111667pt;}
.y12a_c01064{bottom:25.516933pt;}
.y129_c01064{bottom:29.011800pt;}
.y128_c01064{bottom:33.869333pt;}
.y125_c01064{bottom:50.805333pt;}
.y124_c01064{bottom:52.546667pt;}
.y123_c01064{bottom:54.614667pt;}
.y122_c01064{bottom:55.656000pt;}
.y121_c01064{bottom:56.294667pt;}
.y120_c01064{bottom:57.396000pt;}
.y11f_c01064{bottom:58.757333pt;}
.y11e_c01064{bottom:61.176000pt;}
.y11d_c01064{bottom:63.550667pt;}
.y11c_c01064{bottom:64.581333pt;}
.y11b_c01064{bottom:83.860000pt;}
.y127_c01064{bottom:98.120880pt;}
.y126_c01064{bottom:99.884000pt;}
.y11a_c01064{bottom:101.544160pt;}
.y119_c01064{bottom:103.279696pt;}
.y118_c01064{bottom:105.411520pt;}
.y117_c01064{bottom:107.531296pt;}
.y116_c01064{bottom:109.681264pt;}
.y115_c01064{bottom:111.081904pt;}
.y114_c01064{bottom:114.593392pt;}
.y113_c01064{bottom:116.410960pt;}
.y112_c01064{bottom:119.536000pt;}
.y111_c01064{bottom:130.944533pt;}
.y110_c01064{bottom:132.499000pt;}
.y10f_c01064{bottom:139.429333pt;}
.y10e_c01064{bottom:144.283867pt;}
.y10d_c01064{bottom:146.268600pt;}
.y10c_c01064{bottom:149.143200pt;}
.y10b_c01064{bottom:151.652867pt;}
.y10a_c01064{bottom:153.148000pt;}
.y109_c01064{bottom:182.339913pt;}
.y108_c01064{bottom:183.187661pt;}
.y107_c01064{bottom:184.095323pt;}
.y106_c01064{bottom:194.150400pt;}
.y105_c01064{bottom:196.121813pt;}
.y104_c01064{bottom:198.981493pt;}
.y103_c01064{bottom:200.924907pt;}
.y102_c01064{bottom:202.121653pt;}
.y101_c01064{bottom:204.047787pt;}
.y100_c01064{bottom:204.849333pt;}
.yff_c01064{bottom:206.795787pt;}
.yfe_c01064{bottom:207.986027pt;}
.yfd_c01064{bottom:211.473440pt;}
.yfc_c01064{bottom:214.591733pt;}
.yfb_c01064{bottom:215.774667pt;}
.yfa_c01064{bottom:224.171472pt;}
.yf9_c01064{bottom:227.458912pt;}
.yf8_c01064{bottom:236.592675pt;}
.yf7_c01064{bottom:241.692576pt;}
.yf6_c01064{bottom:244.529085pt;}
.yf5_c01064{bottom:248.612904pt;}
.yf4_c01064{bottom:250.232341pt;}
.yf3_c01064{bottom:251.388165pt;}
.yf2_c01064{bottom:257.091267pt;}
.yf1_c01064{bottom:258.713333pt;}
.yf0_c01064{bottom:261.157847pt;}
.yef_c01064{bottom:263.862407pt;}
.yee_c01064{bottom:266.490947pt;}
.yed_c01064{bottom:268.759067pt;}
.yec_c01064{bottom:270.089987pt;}
.yeb_c01064{bottom:272.260547pt;}
.yea_c01064{bottom:276.260267pt;}
.ye9_c01064{bottom:278.012447pt;}
.ye8_c01064{bottom:279.382667pt;}
.ye7_c01064{bottom:300.504813pt;}
.ye6_c01064{bottom:301.926453pt;}
.ye5_c01064{bottom:303.127653pt;}
.ye4_c01064{bottom:303.994293pt;}
.ye3_c01064{bottom:305.738053pt;}
.ye2_c01064{bottom:306.636133pt;}
.ye1_c01064{bottom:308.418053pt;}
.ye0_c01064{bottom:310.159653pt;}
.ydf_c01064{bottom:311.289333pt;}
.yde_c01064{bottom:320.889365pt;}
.ydd_c01064{bottom:323.235733pt;}
.ydc_c01064{bottom:328.486229pt;}
.ydb_c01064{bottom:331.806805pt;}
.yda_c01064{bottom:335.063189pt;}
.yd9_c01064{bottom:336.919061pt;}
.yd8_c01064{bottom:339.766741pt;}
.yd7_c01064{bottom:342.146517pt;}
.yd6_c01064{bottom:344.053333pt;}
.yd5_c01064{bottom:345.913621pt;}
.yd4_c01064{bottom:348.733333pt;}
.yd3_c01064{bottom:352.274027pt;}
.yd2_c01064{bottom:353.455040pt;}
.yd1_c01064{bottom:356.564853pt;}
.yd0_c01064{bottom:357.809547pt;}
.ycf_c01064{bottom:358.968320pt;}
.yce_c01064{bottom:364.043787pt;}
.ycd_c01064{bottom:365.303467pt;}
.ycc_c01064{bottom:368.368800pt;}
.ycb_c01064{bottom:369.190667pt;}
.yca_c01064{bottom:371.558827pt;}
.yc9_c01064{bottom:374.687093pt;}
.yc8_c01064{bottom:375.857333pt;}
.yc7_c01064{bottom:386.832787pt;}
.yc6_c01064{bottom:389.406556pt;}
.yc5_c01064{bottom:390.824741pt;}
.yc4_c01064{bottom:391.976033pt;}
.yc3_c01064{bottom:395.595275pt;}
.yc2_c01064{bottom:397.797663pt;}
.yc1_c01064{bottom:398.842839pt;}
.yc0_c01064{bottom:400.695848pt;}
.ybf_c01064{bottom:401.784388pt;}
.ybe_c01064{bottom:402.512696pt;}
.ybd_c01064{bottom:405.751035pt;}
.ybc_c01064{bottom:406.860295pt;}
.ybb_c01064{bottom:408.733333pt;}
.yba_c01064{bottom:417.809089pt;}
.yb9_c01064{bottom:419.020011pt;}
.yb8_c01064{bottom:422.677265pt;}
.yb7_c01064{bottom:425.149456pt;}
.yb6_c01064{bottom:427.573321pt;}
.yb5_c01064{bottom:430.742348pt;}
.yb4_c01064{bottom:431.899696pt;}
.yb3_c01064{bottom:433.953577pt;}
.yb2_c01064{bottom:435.169091pt;}
.yb1_c01064{bottom:438.017333pt;}
.yb0_c01064{bottom:464.623787pt;}
.yaf_c01064{bottom:466.145365pt;}
.yae_c01064{bottom:468.709419pt;}
.yad_c01064{bottom:469.659307pt;}
.yac_c01064{bottom:471.850667pt;}
.yab_c01064{bottom:483.378844pt;}
.yaa_c01064{bottom:485.664604pt;}
.ya9_c01064{bottom:486.893176pt;}
.ya8_c01064{bottom:489.188200pt;}
.ya7_c01064{bottom:491.828296pt;}
.ya6_c01064{bottom:493.008040pt;}
.ya5_c01064{bottom:496.077916pt;}
.ya4_c01064{bottom:497.584120pt;}
.ya3_c01064{bottom:499.535128pt;}
.ya2_c01064{bottom:502.941112pt;}
.ya1_c01064{bottom:504.027172pt;}
.ya0_c01064{bottom:513.207088pt;}
.y9f_c01064{bottom:514.217392pt;}
.y9e_c01064{bottom:514.954960pt;}
.y9d_c01064{bottom:518.541040pt;}
.y9c_c01064{bottom:520.262080pt;}
.y9b_c01064{bottom:523.136176pt;}
.y9a_c01064{bottom:524.172928pt;}
.y99_c01064{bottom:525.898576pt;}
.y98_c01064{bottom:527.005648pt;}
.y97_c01064{bottom:528.453520pt;}
.y96_c01064{bottom:531.211024pt;}
.y95_c01064{bottom:532.282912pt;}
.y94_c01064{bottom:534.736000pt;}
.y93_c01064{bottom:545.885493pt;}
.y92_c01064{bottom:546.611840pt;}
.y91_c01064{bottom:547.414507pt;}
.y90_c01064{bottom:551.004747pt;}
.y8f_c01064{bottom:554.205493pt;}
.y8e_c01064{bottom:556.980000pt;}
.y8d_c01064{bottom:558.123040pt;}
.y8c_c01064{bottom:558.906933pt;}
.y8b_c01064{bottom:562.446880pt;}
.y8a_c01064{bottom:563.619840pt;}
.y89_c01064{bottom:564.800853pt;}
.y88_c01064{bottom:567.163253pt;}
.y87_c01064{bottom:568.304747pt;}
.y86_c01064{bottom:570.254667pt;}
.y85_c01064{bottom:577.045035pt;}
.y84_c01064{bottom:578.165067pt;}
.y83_c01064{bottom:578.852379pt;}
.y82_c01064{bottom:582.421899pt;}
.y81_c01064{bottom:584.219403pt;}
.y80_c01064{bottom:587.417883pt;}
.y7f_c01064{bottom:591.288891pt;}
.y7e_c01064{bottom:592.700667pt;}
.y7d_c01064{bottom:597.219579pt;}
.y7c_c01064{bottom:598.334667pt;}
.y7b_c01064{bottom:608.929965pt;}
.y7a_c01064{bottom:611.481387pt;}
.y79_c01064{bottom:614.472220pt;}
.y78_c01064{bottom:615.534465pt;}
.y77_c01064{bottom:618.119729pt;}
.y76_c01064{bottom:620.981753pt;}
.y75_c01064{bottom:624.596061pt;}
.y74_c01064{bottom:625.699056pt;}
.y73_c01064{bottom:627.474513pt;}
.y72_c01064{bottom:629.294667pt;}
.y71_c01064{bottom:642.386949pt;}
.y70_c01064{bottom:645.759795pt;}
.y6f_c01064{bottom:647.114944pt;}
.y6e_c01064{bottom:648.094144pt;}
.y6d_c01064{bottom:650.090397pt;}
.y6c_c01064{bottom:651.109808pt;}
.y6b_c01064{bottom:653.107013pt;}
.y6a_c01064{bottom:654.114547pt;}
.y69_c01064{bottom:654.751480pt;}
.y68_c01064{bottom:655.794237pt;}
.y67_c01064{bottom:659.453907pt;}
.y66_c01064{bottom:661.453333pt;}
.y65_c01064{bottom:673.912087pt;}
.y64_c01064{bottom:675.009783pt;}
.y63_c01064{bottom:678.521823pt;}
.y62_c01064{bottom:679.612843pt;}
.y61_c01064{bottom:680.683823pt;}
.y60_c01064{bottom:683.156591pt;}
.y5f_c01064{bottom:685.604327pt;}
.y5e_c01064{bottom:686.326727pt;}
.y5d_c01064{bottom:689.487587pt;}
.y5c_c01064{bottom:693.397355pt;}
.y5b_c01064{bottom:706.751695pt;}
.y5a_c01064{bottom:711.344075pt;}
.y59_c01064{bottom:712.519015pt;}
.y58_c01064{bottom:714.774879pt;}
.y57_c01064{bottom:716.333891pt;}
.y56_c01064{bottom:718.248791pt;}
.y55_c01064{bottom:722.528547pt;}
.y54_c01064{bottom:723.142667pt;}
.y53_c01064{bottom:738.552475pt;}
.y52_c01064{bottom:739.829392pt;}
.y51_c01064{bottom:740.811612pt;}
.y50_c01064{bottom:744.029827pt;}
.y4f_c01064{bottom:745.045388pt;}
.y4e_c01064{bottom:746.001199pt;}
.y4d_c01064{bottom:748.580255pt;}
.y4c_c01064{bottom:749.578948pt;}
.y4b_c01064{bottom:751.821217pt;}
.y4a_c01064{bottom:755.039339pt;}
.y49_c01064{bottom:756.036492pt;}
.y48_c01064{bottom:768.989633pt;}
.y47_c01064{bottom:769.997913pt;}
.y46_c01064{bottom:773.126680pt;}
.y1_c01064{bottom:775.200000pt;}
.y45_c01064{bottom:775.563847pt;}
.y44_c01064{bottom:777.631647pt;}
.y43_c01064{bottom:781.329513pt;}
.y42_c01064{bottom:782.766520pt;}
.y41_c01064{bottom:785.145213pt;}
.y40_c01064{bottom:786.194887pt;}
.y3f_c01064{bottom:788.184753pt;}
.y3e_c01064{bottom:798.937220pt;}
.y3d_c01064{bottom:799.955533pt;}
.y3c_c01064{bottom:801.049493pt;}
.y3b_c01064{bottom:805.878140pt;}
.y3a_c01064{bottom:806.912787pt;}
.y39_c01064{bottom:810.331260pt;}
.y38_c01064{bottom:811.655427pt;}
.y37_c01064{bottom:814.182287pt;}
.y36_c01064{bottom:815.182447pt;}
.y35_c01064{bottom:817.258320pt;}
.y34_c01064{bottom:818.929780pt;}
.y33_c01064{bottom:820.349333pt;}
.y32_c01064{bottom:831.374208pt;}
.y31_c01064{bottom:832.658392pt;}
.y30_c01064{bottom:835.242292pt;}
.y2f_c01064{bottom:837.889772pt;}
.y2e_c01064{bottom:840.164176pt;}
.y2d_c01064{bottom:841.107448pt;}
.y2c_c01064{bottom:842.097712pt;}
.y2b_c01064{bottom:844.997708pt;}
.y2a_c01064{bottom:846.305608pt;}
.y29_c01064{bottom:847.549664pt;}
.y28_c01064{bottom:849.513560pt;}
.y27_c01064{bottom:850.812000pt;}
.y26_c01064{bottom:863.808425pt;}
.y25_c01064{bottom:864.799801pt;}
.y24_c01064{bottom:867.043325pt;}
.y23_c01064{bottom:868.050445pt;}
.y22_c01064{bottom:869.022781pt;}
.y21_c01064{bottom:870.611281pt;}
.y20_c01064{bottom:871.298105pt;}
.y1f_c01064{bottom:873.259269pt;}
.y1e_c01064{bottom:874.525373pt;}
.y1d_c01064{bottom:878.096313pt;}
.y1c_c01064{bottom:879.093845pt;}
.y1b_c01064{bottom:881.684525pt;}
.y1a_c01064{bottom:882.997673pt;}
.y19_c01064{bottom:894.144737pt;}
.y18_c01064{bottom:896.813329pt;}
.y17_c01064{bottom:897.825357pt;}
.y16_c01064{bottom:900.522141pt;}
.y15_c01064{bottom:903.852125pt;}
.y14_c01064{bottom:904.858049pt;}
.y13_c01064{bottom:906.523889pt;}
.y12_c01064{bottom:908.501753pt;}
.y11_c01064{bottom:909.529245pt;}
.y10_c01064{bottom:911.504561pt;}
.yf_c01064{bottom:912.508645pt;}
.ye_c01064{bottom:913.464841pt;}
.yd_c01064{bottom:924.215149pt;}
.yc_c01064{bottom:926.176849pt;}
.yb_c01064{bottom:929.662825pt;}
.ya_c01064{bottom:933.434801pt;}
.y9_c01064{bottom:937.248377pt;}
.y8_c01064{bottom:938.456337pt;}
.y7_c01064{bottom:942.238921pt;}
.y6_c01064{bottom:943.457333pt;}
.y5_c01064{bottom:991.929333pt;}
.y4_c01064{bottom:999.124643pt;}
.y3_c01064{bottom:1001.947941pt;}
.y2_c01064{bottom:1004.417333pt;}
.h4_c01064{height:26.657292pt;}
.h2_c01064{height:26.666667pt;}
.h20_c01064{height:48.012022pt;}
.h8_c01064{height:58.639967pt;}
.h9_c01064{height:58.643958pt;}
.h1c_c01064{height:58.646042pt;}
.h5_c01064{height:58.652644pt;}
.h15_c01064{height:58.654961pt;}
.ha_c01064{height:63.975227pt;}
.h14_c01064{height:63.979837pt;}
.hb_c01064{height:63.984702pt;}
.hf_c01064{height:63.987231pt;}
.h1f_c01064{height:63.987327pt;}
.h17_c01064{height:64.028794pt;}
.hc_c01064{height:69.304103pt;}
.he_c01064{height:69.308958pt;}
.h19_c01064{height:69.311421pt;}
.h1a_c01064{height:69.319500pt;}
.h16_c01064{height:69.343906pt;}
.h1b_c01064{height:69.350699pt;}
.h11_c01064{height:74.640417pt;}
.h3_c01064{height:74.645944pt;}
.h6_c01064{height:74.648819pt;}
.h13_c01064{height:74.654794pt;}
.h18_c01064{height:74.667637pt;}
.h12_c01064{height:79.960990pt;}
.hd_c01064{height:79.974796pt;}
.h1e_c01064{height:80.000000pt;}
.h10_c01064{height:85.303333pt;}
.h7_c01064{height:90.644995pt;}
.h1d_c01064{height:90.666667pt;}
.h0_c01064{height:1107.840000pt;}
.h1_c01064{height:1108.000000pt;}
.w0_c01064{width:800.400000pt;}
.w1_c01064{width:800.666667pt;}
.x0_c01064{left:0.000000pt;}
.x1_c01064{left:15.360000pt;}
.xce_c01064{left:137.040000pt;}
.xcb_c01064{left:139.950667pt;}
.xc7_c01064{left:141.553117pt;}
.xc3_c01064{left:142.445333pt;}
.xbe_c01064{left:143.885333pt;}
.x9b_c01064{left:145.548000pt;}
.xb4_c01064{left:146.789333pt;}
.x91_c01064{left:149.174667pt;}
.x19_c01064{left:150.684833pt;}
.x87_c01064{left:151.729636pt;}
.x6e_c01064{left:152.714667pt;}
.x5d_c01064{left:154.409333pt;}
.x54_c01064{left:155.736928pt;}
.x43_c01064{left:157.549756pt;}
.x31_c01064{left:158.512000pt;}
.x25_c01064{left:160.676000pt;}
.xd_c01064{left:164.270049pt;}
.xcf_c01064{left:166.626667pt;}
.xbf_c01064{left:171.796067pt;}
.xa5_c01064{left:175.445411pt;}
.x88_c01064{left:179.536108pt;}
.x6f_c01064{left:183.658359pt;}
.x44_c01064{left:187.724320pt;}
.x1a_c01064{left:190.438357pt;}
.xe_c01064{left:192.351405pt;}
.x9c_c01064{left:196.120044pt;}
.x32_c01064{left:199.030108pt;}
.x26_c01064{left:199.983320pt;}
.x76_c01064{left:201.224585pt;}
.x67_c01064{left:203.296140pt;}
.x5e_c01064{left:213.157193pt;}
.x3b_c01064{left:216.754175pt;}
.x7f_c01064{left:220.033192pt;}
.xf_c01064{left:221.830289pt;}
.x9d_c01064{left:226.070064pt;}
.x77_c01064{left:229.733381pt;}
.xd0_c01064{left:234.464000pt;}
.x4c_c01064{left:237.020000pt;}
.xb8_c01064{left:240.213333pt;}
.xab_c01064{left:242.566500pt;}
.x94_c01064{left:245.108000pt;}
.x33_c01064{left:246.738352pt;}
.x80_c01064{left:249.778084pt;}
.x68_c01064{left:251.233488pt;}
.x4d_c01064{left:252.750920pt;}
.x27_c01064{left:259.435808pt;}
.x5_c01064{left:260.681333pt;}
.x55_c01064{left:264.225032pt;}
.x89_c01064{left:266.798008pt;}
.x1b_c01064{left:268.862229pt;}
.xb9_c01064{left:270.632217pt;}
.xcc_c01064{left:277.108039pt;}
.x10_c01064{left:279.878197pt;}
.x69_c01064{left:281.014344pt;}
.xac_c01064{left:282.252108pt;}
.x45_c01064{left:285.136297pt;}
.x78_c01064{left:288.734321pt;}
.xc0_c01064{left:289.816885pt;}
.x6_c01064{left:291.891425pt;}
.x28_c01064{left:297.096776pt;}
.x1c_c01064{left:299.061745pt;}
.xb5_c01064{left:301.896000pt;}
.xd1_c01064{left:303.558667pt;}
.x34_c01064{left:305.989708pt;}
.x70_c01064{left:309.058167pt;}
.x11_c01064{left:310.059201pt;}
.x9e_c01064{left:313.505208pt;}
.x3c_c01064{left:314.609555pt;}
.x8a_c01064{left:316.793248pt;}
.x79_c01064{left:318.230129pt;}
.x2_c01064{left:320.656000pt;}
.x81_c01064{left:326.298820pt;}
.x92_c01064{left:327.287043pt;}
.xad_c01064{left:331.781196pt;}
.x9f_c01064{left:333.169524pt;}
.x35_c01064{left:334.537132pt;}
.x29_c01064{left:336.690476pt;}
.xd2_c01064{left:342.449333pt;}
.x95_c01064{left:344.124884pt;}
.x71_c01064{left:348.234951pt;}
.x56_c01064{left:351.923500pt;}
.x46_c01064{left:353.019777pt;}
.x3d_c01064{left:355.625831pt;}
.x4e_c01064{left:362.378516pt;}
.x82_c01064{left:366.477268pt;}
.x12_c01064{left:368.172377pt;}
.x5f_c01064{left:370.040153pt;}
.x57_c01064{left:371.965780pt;}
.x93_c01064{left:374.788827pt;}
.x6a_c01064{left:378.600660pt;}
.x47_c01064{left:383.238297pt;}
.x3_c01064{left:385.575016pt;}
.x7_c01064{left:388.783769pt;}
.xb6_c01064{left:389.957333pt;}
.xae_c01064{left:391.048536pt;}
.xd3_c01064{left:392.168000pt;}
.x96_c01064{left:394.169456pt;}
.x83_c01064{left:397.198516pt;}
.xba_c01064{left:398.324397pt;}
.x60_c01064{left:399.643853pt;}
.x1d_c01064{left:407.140189pt;}
.xa6_c01064{left:409.801487pt;}
.x4f_c01064{left:411.429416pt;}
.xa0_c01064{left:412.591356pt;}
.xc8_c01064{left:414.382717pt;}
.xc4_c01064{left:415.305533pt;}
.x13_c01064{left:417.096929pt;}
.x8_c01064{left:419.726129pt;}
.x97_c01064{left:422.369228pt;}
.x2a_c01064{left:424.481264pt;}
.xaf_c01064{left:429.673872pt;}
.x8b_c01064{left:434.008564pt;}
.x7a_c01064{left:435.934973pt;}
.x58_c01064{left:439.893748pt;}
.xa1_c01064{left:440.811108pt;}
.x36_c01064{left:444.456436pt;}
.x1e_c01064{left:445.449461pt;}
.x14_c01064{left:446.657117pt;}
.x50_c01064{left:451.364108pt;}
.x2b_c01064{left:454.459256pt;}
.x6b_c01064{left:455.875308pt;}
.x61_c01064{left:458.326445pt;}
.x4_c01064{left:459.798052pt;}
.x3e_c01064{left:461.173511pt;}
.x8c_c01064{left:464.229712pt;}
.x84_c01064{left:473.855116pt;}
.xbb_c01064{left:476.057253pt;}
.xd4_c01064{left:481.018667pt;}
.x2c_c01064{left:483.014672pt;}
.x7b_c01064{left:484.060133pt;}
.x62_c01064{left:488.279129pt;}
.x48_c01064{left:490.224012pt;}
.xb0_c01064{left:497.447364pt;}
.x98_c01064{left:499.585268pt;}
.x1f_c01064{left:504.809273pt;}
.xb7_c01064{left:506.273333pt;}
.x51_c01064{left:509.148932pt;}
.xc9_c01064{left:511.376293pt;}
.xc5_c01064{left:513.318089pt;}
.x9_c01064{left:517.412345pt;}
.x3f_c01064{left:520.194431pt;}
.xc1_c01064{left:524.513219pt;}
.x20_c01064{left:525.614673pt;}
.xd5_c01064{left:530.756000pt;}
.x8d_c01064{left:531.866704pt;}
.x59_c01064{left:538.220160pt;}
.x52_c01064{left:539.245472pt;}
.x37_c01064{left:542.029432pt;}
.x15_c01064{left:544.496949pt;}
.x63_c01064{left:546.933749pt;}
.x2d_c01064{left:551.867084pt;}
.x7c_c01064{left:553.353437pt;}
.x6c_c01064{left:554.358060pt;}
.x99_c01064{left:558.644816pt;}
.xc6_c01064{left:561.854837pt;}
.xb1_c01064{left:566.556852pt;}
.x5a_c01064{left:568.490732pt;}
.x38_c01064{left:571.561204pt;}
.x21_c01064{left:573.685797pt;}
.x64_c01064{left:575.704949pt;}
.xbc_c01064{left:584.763105pt;}
.x40_c01064{left:589.758131pt;}
.x8e_c01064{left:590.668168pt;}
.x72_c01064{left:594.293979pt;}
.xa7_c01064{left:596.962139pt;}
.xa2_c01064{left:597.995100pt;}
.x85_c01064{left:601.370140pt;}
.x22_c01064{left:603.103221pt;}
.xa_c01064{left:614.032961pt;}
.x65_c01064{left:615.522425pt;}
.x49_c01064{left:618.376700pt;}
.x8f_c01064{left:622.133260pt;}
.x16_c01064{left:623.725101pt;}
.xa8_c01064{left:628.048355pt;}
.xa3_c01064{left:629.079984pt;}
.x2e_c01064{left:632.013524pt;}
.x23_c01064{left:633.582509pt;}
.x6d_c01064{left:635.110560pt;}
.xcd_c01064{left:639.224227pt;}
.xbd_c01064{left:644.804337pt;}
.x4a_c01064{left:648.125024pt;}
.xca_c01064{left:649.844353pt;}
.x17_c01064{left:653.475817pt;}
.x53_c01064{left:656.881052pt;}
.x5b_c01064{left:665.936588pt;}
.xa4_c01064{left:667.370988pt;}
.xd6_c01064{left:669.348000pt;}
.xb2_c01064{left:675.832800pt;}
.x41_c01064{left:679.062071pt;}
.x90_c01064{left:680.677648pt;}
.xc2_c01064{left:681.676928pt;}
.x4b_c01064{left:686.779707pt;}
.x73_c01064{left:693.348159pt;}
.x5c_c01064{left:696.412340pt;}
.xd7_c01064{left:698.674563pt;}
.x24_c01064{left:701.507777pt;}
.xb_c01064{left:703.327577pt;}
.xa9_c01064{left:705.715943pt;}
.x42_c01064{left:707.841263pt;}
.x2f_c01064{left:710.235224pt;}
.x74_c01064{left:712.421067pt;}
.x66_c01064{left:714.624557pt;}
.x86_c01064{left:721.351372pt;}
.x7d_c01064{left:722.958329pt;}
.xb3_c01064{left:724.666584pt;}
.x18_c01064{left:731.879305pt;}
.xaa_c01064{left:735.211751pt;}
.x9a_c01064{left:737.499116pt;}
.x39_c01064{left:740.609320pt;}
.x75_c01064{left:743.501955pt;}
.x30_c01064{left:749.110976pt;}
.xc_c01064{left:753.577277pt;}
.x7e_c01064{left:761.145437pt;}
.x3a_c01064{left:769.674892pt;}
}





/* 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_c01065 {
    display:none;
  }
  .loading-indicator_c01065.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01065 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_c01065 { 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_c01065" -> "#page-container .classname_c01065")
 */
.pf_c01065 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01065 { /* 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_c01065.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01065 { /* 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_c01065 { /* 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_c01065 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01065 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01065 {overflow:visible;}
  }
}
.c_c01065 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01065 { /* 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_c01065:after { /* webkit #35443 */
  content: '';
}
.t_c01065:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01065 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 */
}
.__c01065 { /* 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_c01065 { /* info for Javascript */
  display:none;
}
.l_c01065 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01065 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01065 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01065: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_c01065 {
    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_c01065.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01065.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_c01065 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01065{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01065;src:url('chunks/assets/font_59dc3ab2e04ed21d4ac9992b.woff2')format("woff");}.ff1_c01065{font-family:ff1_c01065;line-height:1.000000;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;}
.m2_c01065{transform:matrix(0.008540,-0.000043,0.001250,0.249997,0,0);-ms-transform:matrix(0.008540,-0.000043,0.001250,0.249997,0,0);-webkit-transform:matrix(0.008540,-0.000043,0.001250,0.249997,0,0);}
.m6_c01065{transform:matrix(0.324946,-0.001625,0.001250,0.249997,0,0);-ms-transform:matrix(0.324946,-0.001625,0.001250,0.249997,0,0);-webkit-transform:matrix(0.324946,-0.001625,0.001250,0.249997,0,0);}
.m7_c01065{transform:matrix(0.337241,-0.001686,0.001250,0.249997,0,0);-ms-transform:matrix(0.337241,-0.001686,0.001250,0.249997,0,0);-webkit-transform:matrix(0.337241,-0.001686,0.001250,0.249997,0,0);}
.m5_c01065{transform:matrix(0.402680,-0.002013,0.001250,0.249997,0,0);-ms-transform:matrix(0.402680,-0.002013,0.001250,0.249997,0,0);-webkit-transform:matrix(0.402680,-0.002013,0.001250,0.249997,0,0);}
.m3_c01065{transform:matrix(0.437750,-0.002189,0.001250,0.249997,0,0);-ms-transform:matrix(0.437750,-0.002189,0.001250,0.249997,0,0);-webkit-transform:matrix(0.437750,-0.002189,0.001250,0.249997,0,0);}
.m1_c01065{transform:matrix(0.479914,-0.002400,0.001250,0.249997,0,0);-ms-transform:matrix(0.479914,-0.002400,0.001250,0.249997,0,0);-webkit-transform:matrix(0.479914,-0.002400,0.001250,0.249997,0,0);}
.m0_c01065{transform:matrix(0.484774,-0.002424,0.001250,0.249997,0,0);-ms-transform:matrix(0.484774,-0.002424,0.001250,0.249997,0,0);-webkit-transform:matrix(0.484774,-0.002424,0.001250,0.249997,0,0);}
.m4_c01065{transform:matrix(0.750781,-0.003754,0.001250,0.249997,0,0);-ms-transform:matrix(0.750781,-0.003754,0.001250,0.249997,0,0);-webkit-transform:matrix(0.750781,-0.003754,0.001250,0.249997,0,0);}
.v0_c01065{vertical-align:0.000000px;}
.ls0_c01065{letter-spacing:0.000000px;}
.sc__c01065{text-shadow:none;}
.sc0_c01065{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__c01065{-webkit-text-stroke:0px transparent;}
.sc0_c01065{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01065{word-spacing:0.000000px;}
.fc0_c01065{color:transparent;}
.fs0_c01065{font-size:114.001425px;}
.y0_c01065{bottom:0.000000px;}
.y1_c01065{bottom:936.360000px;}
.y2_c01065{bottom:936.555772px;}
.y3_c01065{bottom:937.153650px;}
.y4_c01065{bottom:937.215893px;}
.y5_c01065{bottom:937.592557px;}
.y6_c01065{bottom:938.324280px;}
.y7_c01065{bottom:939.092370px;}
.y8_c01065{bottom:939.385313px;}
.h2_c01065{height:114.001425px;}
.h0_c01065{height:1246.320000px;}
.h1_c01065{height:1246.500000px;}
.w0_c01065{width:900.450000px;}
.w1_c01065{width:900.750000px;}
.x0_c01065{left:0.000000px;}
.x1_c01065{left:64.639500px;}
.x2_c01065{left:103.794000px;}
.x3_c01065{left:223.369500px;}
.x4_c01065{left:235.818000px;}
.x5_c01065{left:311.151000px;}
.x6_c01065{left:457.495500px;}
.x7_c01065{left:611.113500px;}
.x8_c01065{left:669.702000px;}
@media print{
.v0_c01065{vertical-align:0.000000pt;}
.ls0_c01065{letter-spacing:0.000000pt;}
.ws0_c01065{word-spacing:0.000000pt;}
.fs0_c01065{font-size:101.334600pt;}
.y0_c01065{bottom:0.000000pt;}
.y1_c01065{bottom:832.320000pt;}
.y2_c01065{bottom:832.494020pt;}
.y3_c01065{bottom:833.025467pt;}
.y4_c01065{bottom:833.080793pt;}
.y5_c01065{bottom:833.415607pt;}
.y6_c01065{bottom:834.066027pt;}
.y7_c01065{bottom:834.748773pt;}
.y8_c01065{bottom:835.009167pt;}
.h2_c01065{height:101.334600pt;}
.h0_c01065{height:1107.840000pt;}
.h1_c01065{height:1108.000000pt;}
.w0_c01065{width:800.400000pt;}
.w1_c01065{width:800.666667pt;}
.x0_c01065{left:0.000000pt;}
.x1_c01065{left:57.457333pt;}
.x2_c01065{left:92.261333pt;}
.x3_c01065{left:198.550667pt;}
.x4_c01065{left:209.616000pt;}
.x5_c01065{left:276.578667pt;}
.x6_c01065{left:406.662667pt;}
.x7_c01065{left:543.212000pt;}
.x8_c01065{left:595.290667pt;}
}





/* 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_c01066 {
    display:none;
  }
  .loading-indicator_c01066.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01066 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_c01066 { 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_c01066" -> "#page-container .classname_c01066")
 */
.pf_c01066 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01066 { /* 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_c01066.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01066 { /* 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_c01066 { /* 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_c01066 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01066 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01066 {overflow:visible;}
  }
}
.c_c01066 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01066 { /* 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_c01066:after { /* webkit #35443 */
  content: '';
}
.t_c01066:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01066 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 */
}
.__c01066 { /* 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_c01066 { /* info for Javascript */
  display:none;
}
.l_c01066 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01066 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01066 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01066: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_c01066 {
    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_c01066.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01066.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_c01066 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01066{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01066;src:url('chunks/assets/font_7c6b9abe6ee2a268480c528b.woff2')format("woff");}.ff1_c01066{font-family:ff1_c01066;line-height:1.000000;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;}
.m9_c01066{transform:matrix(0.011569,0.000185,-0.003999,0.249968,0,0);-ms-transform:matrix(0.011569,0.000185,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.011569,0.000185,-0.003999,0.249968,0,0);}
.mc8_c01066{transform:matrix(0.144521,0.002023,-0.003500,0.249976,0,0);-ms-transform:matrix(0.144521,0.002023,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.144521,0.002023,-0.003500,0.249976,0,0);}
.me4_c01066{transform:matrix(0.150580,0.003012,-0.004999,0.249950,0,0);-ms-transform:matrix(0.150580,0.003012,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.150580,0.003012,-0.004999,0.249950,0,0);}
.m0_c01066{transform:matrix(0.169580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169580,0.000000,0.000000,0.250000,0,0);}
.m2_c01066{transform:matrix(0.174325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174325,0.000000,0.000000,0.250000,0,0);}
.mf0_c01066{transform:matrix(0.178594,0.003572,-0.004999,0.249950,0,0);-ms-transform:matrix(0.178594,0.003572,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.178594,0.003572,-0.004999,0.249950,0,0);}
.me2_c01066{transform:matrix(0.178677,0.002501,-0.003500,0.249976,0,0);-ms-transform:matrix(0.178677,0.002501,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.178677,0.002501,-0.003500,0.249976,0,0);}
.m71_c01066{transform:matrix(0.178812,0.002503,-0.003500,0.249976,0,0);-ms-transform:matrix(0.178812,0.002503,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.178812,0.002503,-0.003500,0.249976,0,0);}
.m9d_c01066{transform:matrix(0.179082,0.002507,-0.003500,0.249976,0,0);-ms-transform:matrix(0.179082,0.002507,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.179082,0.002507,-0.003500,0.249976,0,0);}
.m79_c01066{transform:matrix(0.188267,0.002636,-0.003500,0.249976,0,0);-ms-transform:matrix(0.188267,0.002636,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.188267,0.002636,-0.003500,0.249976,0,0);}
.m92_c01066{transform:matrix(0.188417,0.002638,-0.003500,0.249976,0,0);-ms-transform:matrix(0.188417,0.002638,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.188417,0.002638,-0.003500,0.249976,0,0);}
.m8d_c01066{transform:matrix(0.191180,0.003632,-0.004749,0.249955,0,0);-ms-transform:matrix(0.191180,0.003632,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.191180,0.003632,-0.004749,0.249955,0,0);}
.mf2_c01066{transform:matrix(0.193696,0.003874,-0.004999,0.249950,0,0);-ms-transform:matrix(0.193696,0.003874,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.193696,0.003874,-0.004999,0.249950,0,0);}
.m7d_c01066{transform:matrix(0.193716,0.002712,-0.003500,0.249976,0,0);-ms-transform:matrix(0.193716,0.002712,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.193716,0.002712,-0.003500,0.249976,0,0);}
.m4f_c01066{transform:matrix(0.196276,0.002748,-0.003500,0.249976,0,0);-ms-transform:matrix(0.196276,0.002748,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.196276,0.002748,-0.003500,0.249976,0,0);}
.mf9_c01066{transform:matrix(0.196696,0.003934,-0.004999,0.249950,0,0);-ms-transform:matrix(0.196696,0.003934,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.196696,0.003934,-0.004999,0.249950,0,0);}
.ma5_c01066{transform:matrix(0.200205,0.002803,-0.003500,0.249976,0,0);-ms-transform:matrix(0.200205,0.002803,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.200205,0.002803,-0.003500,0.249976,0,0);}
.m5c_c01066{transform:matrix(0.201305,0.002818,-0.003500,0.249976,0,0);-ms-transform:matrix(0.201305,0.002818,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.201305,0.002818,-0.003500,0.249976,0,0);}
.mf7_c01066{transform:matrix(0.202140,0.004043,-0.004999,0.249950,0,0);-ms-transform:matrix(0.202140,0.004043,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.202140,0.004043,-0.004999,0.249950,0,0);}
.ma1_c01066{transform:matrix(0.205470,0.002877,-0.003500,0.249976,0,0);-ms-transform:matrix(0.205470,0.002877,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.205470,0.002877,-0.003500,0.249976,0,0);}
.mdf_c01066{transform:matrix(0.207440,0.002904,-0.003500,0.249976,0,0);-ms-transform:matrix(0.207440,0.002904,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.207440,0.002904,-0.003500,0.249976,0,0);}
.m80_c01066{transform:matrix(0.207995,0.002912,-0.003500,0.249976,0,0);-ms-transform:matrix(0.207995,0.002912,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.207995,0.002912,-0.003500,0.249976,0,0);}
.m105_c01066{transform:matrix(0.208498,0.004170,-0.004999,0.249950,0,0);-ms-transform:matrix(0.208498,0.004170,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.208498,0.004170,-0.004999,0.249950,0,0);}
.m66_c01066{transform:matrix(0.208655,0.002921,-0.003500,0.249976,0,0);-ms-transform:matrix(0.208655,0.002921,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.208655,0.002921,-0.003500,0.249976,0,0);}
.mf1_c01066{transform:matrix(0.210328,0.004207,-0.004999,0.249950,0,0);-ms-transform:matrix(0.210328,0.004207,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.210328,0.004207,-0.004999,0.249950,0,0);}
.mfb_c01066{transform:matrix(0.210738,0.004215,-0.004999,0.249950,0,0);-ms-transform:matrix(0.210738,0.004215,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.210738,0.004215,-0.004999,0.249950,0,0);}
.m9f_c01066{transform:matrix(0.211194,0.002957,-0.003500,0.249976,0,0);-ms-transform:matrix(0.211194,0.002957,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.211194,0.002957,-0.003500,0.249976,0,0);}
.mf6_c01066{transform:matrix(0.211618,0.004232,-0.004999,0.249950,0,0);-ms-transform:matrix(0.211618,0.004232,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.211618,0.004232,-0.004999,0.249950,0,0);}
.m130_c01066{transform:matrix(0.212483,0.003400,-0.003999,0.249968,0,0);-ms-transform:matrix(0.212483,0.003400,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.212483,0.003400,-0.003999,0.249968,0,0);}
.m6e_c01066{transform:matrix(0.212599,0.002976,-0.003500,0.249976,0,0);-ms-transform:matrix(0.212599,0.002976,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.212599,0.002976,-0.003500,0.249976,0,0);}
.m8_c01066{transform:matrix(0.212633,0.003402,-0.003999,0.249968,0,0);-ms-transform:matrix(0.212633,0.003402,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.212633,0.003402,-0.003999,0.249968,0,0);}
.m62_c01066{transform:matrix(0.212844,0.002980,-0.003500,0.249976,0,0);-ms-transform:matrix(0.212844,0.002980,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.212844,0.002980,-0.003500,0.249976,0,0);}
.mb0_c01066{transform:matrix(0.213579,0.002990,-0.003500,0.249976,0,0);-ms-transform:matrix(0.213579,0.002990,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.213579,0.002990,-0.003500,0.249976,0,0);}
.mf8_c01066{transform:matrix(0.213652,0.004273,-0.004999,0.249950,0,0);-ms-transform:matrix(0.213652,0.004273,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.213652,0.004273,-0.004999,0.249950,0,0);}
.ma4_c01066{transform:matrix(0.215039,0.003011,-0.003500,0.249976,0,0);-ms-transform:matrix(0.215039,0.003011,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.215039,0.003011,-0.003500,0.249976,0,0);}
.mf4_c01066{transform:matrix(0.215957,0.004319,-0.004999,0.249950,0,0);-ms-transform:matrix(0.215957,0.004319,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.215957,0.004319,-0.004999,0.249950,0,0);}
.m2b_c01066{transform:matrix(0.216889,0.003036,-0.003500,0.249976,0,0);-ms-transform:matrix(0.216889,0.003036,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.216889,0.003036,-0.003500,0.249976,0,0);}
.m65_c01066{transform:matrix(0.216974,0.003038,-0.003500,0.249976,0,0);-ms-transform:matrix(0.216974,0.003038,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.216974,0.003038,-0.003500,0.249976,0,0);}
.m136_c01066{transform:matrix(0.217592,0.003481,-0.003999,0.249968,0,0);-ms-transform:matrix(0.217592,0.003481,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.217592,0.003481,-0.003999,0.249968,0,0);}
.m6a_c01066{transform:matrix(0.217714,0.003048,-0.003500,0.249976,0,0);-ms-transform:matrix(0.217714,0.003048,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.217714,0.003048,-0.003500,0.249976,0,0);}
.m8b_c01066{transform:matrix(0.217976,0.004142,-0.004749,0.249955,0,0);-ms-transform:matrix(0.217976,0.004142,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.217976,0.004142,-0.004749,0.249955,0,0);}
.m6f_c01066{transform:matrix(0.218444,0.003058,-0.003500,0.249976,0,0);-ms-transform:matrix(0.218444,0.003058,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.218444,0.003058,-0.003500,0.249976,0,0);}
.m23_c01066{transform:matrix(0.219141,0.002849,-0.003250,0.249979,0,0);-ms-transform:matrix(0.219141,0.002849,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.219141,0.002849,-0.003250,0.249979,0,0);}
.md9_c01066{transform:matrix(0.219349,0.003071,-0.003500,0.249976,0,0);-ms-transform:matrix(0.219349,0.003071,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.219349,0.003071,-0.003500,0.249976,0,0);}
.m12c_c01066{transform:matrix(0.219507,0.003512,-0.003999,0.249968,0,0);-ms-transform:matrix(0.219507,0.003512,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.219507,0.003512,-0.003999,0.249968,0,0);}
.m6c_c01066{transform:matrix(0.219648,0.003075,-0.003500,0.249976,0,0);-ms-transform:matrix(0.219648,0.003075,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.219648,0.003075,-0.003500,0.249976,0,0);}
.mbc_c01066{transform:matrix(0.220233,0.003083,-0.003500,0.249976,0,0);-ms-transform:matrix(0.220233,0.003083,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.220233,0.003083,-0.003500,0.249976,0,0);}
.mdb_c01066{transform:matrix(0.220878,0.003092,-0.003500,0.249976,0,0);-ms-transform:matrix(0.220878,0.003092,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.220878,0.003092,-0.003500,0.249976,0,0);}
.m6d_c01066{transform:matrix(0.221138,0.003096,-0.003500,0.249976,0,0);-ms-transform:matrix(0.221138,0.003096,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.221138,0.003096,-0.003500,0.249976,0,0);}
.mf5_c01066{transform:matrix(0.221366,0.004427,-0.004999,0.249950,0,0);-ms-transform:matrix(0.221366,0.004427,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.221366,0.004427,-0.004999,0.249950,0,0);}
.mfa_c01066{transform:matrix(0.221551,0.004431,-0.004999,0.249950,0,0);-ms-transform:matrix(0.221551,0.004431,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.221551,0.004431,-0.004999,0.249950,0,0);}
.ma8_c01066{transform:matrix(0.221788,0.003105,-0.003500,0.249976,0,0);-ms-transform:matrix(0.221788,0.003105,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.221788,0.003105,-0.003500,0.249976,0,0);}
.m43_c01066{transform:matrix(0.221808,0.003105,-0.003500,0.249976,0,0);-ms-transform:matrix(0.221808,0.003105,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.221808,0.003105,-0.003500,0.249976,0,0);}
.m11a_c01066{transform:matrix(0.222456,0.004449,-0.004999,0.249950,0,0);-ms-transform:matrix(0.222456,0.004449,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.222456,0.004449,-0.004999,0.249950,0,0);}
.m5a_c01066{transform:matrix(0.222478,0.003115,-0.003500,0.249976,0,0);-ms-transform:matrix(0.222478,0.003115,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.222478,0.003115,-0.003500,0.249976,0,0);}
.md2_c01066{transform:matrix(0.222588,0.003116,-0.003500,0.249976,0,0);-ms-transform:matrix(0.222588,0.003116,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.222588,0.003116,-0.003500,0.249976,0,0);}
.m81_c01066{transform:matrix(0.222603,0.003116,-0.003500,0.249976,0,0);-ms-transform:matrix(0.222603,0.003116,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.222603,0.003116,-0.003500,0.249976,0,0);}
.mda_c01066{transform:matrix(0.223358,0.003127,-0.003500,0.249976,0,0);-ms-transform:matrix(0.223358,0.003127,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.223358,0.003127,-0.003500,0.249976,0,0);}
.m87_c01066{transform:matrix(0.223565,0.004248,-0.004749,0.249955,0,0);-ms-transform:matrix(0.223565,0.004248,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.223565,0.004248,-0.004749,0.249955,0,0);}
.m134_c01066{transform:matrix(0.223796,0.003581,-0.003999,0.249968,0,0);-ms-transform:matrix(0.223796,0.003581,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.223796,0.003581,-0.003999,0.249968,0,0);}
.m86_c01066{transform:matrix(0.223930,0.004255,-0.004749,0.249955,0,0);-ms-transform:matrix(0.223930,0.004255,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.223930,0.004255,-0.004749,0.249955,0,0);}
.m10_c01066{transform:matrix(0.223941,0.003583,-0.003999,0.249968,0,0);-ms-transform:matrix(0.223941,0.003583,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.223941,0.003583,-0.003999,0.249968,0,0);}
.mb1_c01066{transform:matrix(0.223948,0.003135,-0.003500,0.249976,0,0);-ms-transform:matrix(0.223948,0.003135,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.223948,0.003135,-0.003500,0.249976,0,0);}
.ma9_c01066{transform:matrix(0.224728,0.003146,-0.003500,0.249976,0,0);-ms-transform:matrix(0.224728,0.003146,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.224728,0.003146,-0.003500,0.249976,0,0);}
.m108_c01066{transform:matrix(0.225625,0.004512,-0.004999,0.249950,0,0);-ms-transform:matrix(0.225625,0.004512,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.225625,0.004512,-0.004999,0.249950,0,0);}
.m103_c01066{transform:matrix(0.225660,0.004513,-0.004999,0.249950,0,0);-ms-transform:matrix(0.225660,0.004513,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.225660,0.004513,-0.004999,0.249950,0,0);}
.meb_c01066{transform:matrix(0.226020,0.004520,-0.004999,0.249950,0,0);-ms-transform:matrix(0.226020,0.004520,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.226020,0.004520,-0.004999,0.249950,0,0);}
.m2c_c01066{transform:matrix(0.226043,0.003165,-0.003500,0.249976,0,0);-ms-transform:matrix(0.226043,0.003165,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.226043,0.003165,-0.003500,0.249976,0,0);}
.mef_c01066{transform:matrix(0.226920,0.004538,-0.004999,0.249950,0,0);-ms-transform:matrix(0.226920,0.004538,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.226920,0.004538,-0.004999,0.249950,0,0);}
.mb6_c01066{transform:matrix(0.226983,0.003178,-0.003500,0.249976,0,0);-ms-transform:matrix(0.226983,0.003178,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.226983,0.003178,-0.003500,0.249976,0,0);}
.me5_c01066{transform:matrix(0.227385,0.004548,-0.004999,0.249950,0,0);-ms-transform:matrix(0.227385,0.004548,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.227385,0.004548,-0.004999,0.249950,0,0);}
.m29_c01066{transform:matrix(0.227411,0.002956,-0.003250,0.249979,0,0);-ms-transform:matrix(0.227411,0.002956,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.227411,0.002956,-0.003250,0.249979,0,0);}
.mae_c01066{transform:matrix(0.228148,0.003194,-0.003500,0.249976,0,0);-ms-transform:matrix(0.228148,0.003194,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.228148,0.003194,-0.003500,0.249976,0,0);}
.m46_c01066{transform:matrix(0.228793,0.003203,-0.003500,0.249976,0,0);-ms-transform:matrix(0.228793,0.003203,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.228793,0.003203,-0.003500,0.249976,0,0);}
.m8a_c01066{transform:matrix(0.229154,0.004354,-0.004749,0.249955,0,0);-ms-transform:matrix(0.229154,0.004354,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.229154,0.004354,-0.004749,0.249955,0,0);}
.m48_c01066{transform:matrix(0.229243,0.003209,-0.003500,0.249976,0,0);-ms-transform:matrix(0.229243,0.003209,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.229243,0.003209,-0.003500,0.249976,0,0);}
.mad_c01066{transform:matrix(0.229503,0.003213,-0.003500,0.249976,0,0);-ms-transform:matrix(0.229503,0.003213,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.229503,0.003213,-0.003500,0.249976,0,0);}
.m12e_c01066{transform:matrix(0.229816,0.003677,-0.003999,0.249968,0,0);-ms-transform:matrix(0.229816,0.003677,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.229816,0.003677,-0.003999,0.249968,0,0);}
.m94_c01066{transform:matrix(0.230047,0.003221,-0.003500,0.249976,0,0);-ms-transform:matrix(0.230047,0.003221,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.230047,0.003221,-0.003500,0.249976,0,0);}
.m41_c01066{transform:matrix(0.230262,0.003224,-0.003500,0.249976,0,0);-ms-transform:matrix(0.230262,0.003224,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.230262,0.003224,-0.003500,0.249976,0,0);}
.m9c_c01066{transform:matrix(0.230762,0.003231,-0.003500,0.249976,0,0);-ms-transform:matrix(0.230762,0.003231,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.230762,0.003231,-0.003500,0.249976,0,0);}
.m8e_c01066{transform:matrix(0.231583,0.004400,-0.004749,0.249955,0,0);-ms-transform:matrix(0.231583,0.004400,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.231583,0.004400,-0.004749,0.249955,0,0);}
.m75_c01066{transform:matrix(0.231602,0.003242,-0.003500,0.249976,0,0);-ms-transform:matrix(0.231602,0.003242,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.231602,0.003242,-0.003500,0.249976,0,0);}
.m22_c01066{transform:matrix(0.231670,0.003012,-0.003250,0.249979,0,0);-ms-transform:matrix(0.231670,0.003012,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.231670,0.003012,-0.003250,0.249979,0,0);}
.m7_c01066{transform:matrix(0.231675,0.003707,-0.003999,0.249968,0,0);-ms-transform:matrix(0.231675,0.003707,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.231675,0.003707,-0.003999,0.249968,0,0);}
.m50_c01066{transform:matrix(0.232882,0.003260,-0.003500,0.249976,0,0);-ms-transform:matrix(0.232882,0.003260,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.232882,0.003260,-0.003500,0.249976,0,0);}
.mb4_c01066{transform:matrix(0.232962,0.003261,-0.003500,0.249976,0,0);-ms-transform:matrix(0.232962,0.003261,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.232962,0.003261,-0.003500,0.249976,0,0);}
.m28_c01066{transform:matrix(0.233500,0.003036,-0.003250,0.249979,0,0);-ms-transform:matrix(0.233500,0.003036,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.233500,0.003036,-0.003250,0.249979,0,0);}
.m11f_c01066{transform:matrix(0.233688,0.004674,-0.004999,0.249950,0,0);-ms-transform:matrix(0.233688,0.004674,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.233688,0.004674,-0.004999,0.249950,0,0);}
.mb_c01066{transform:matrix(0.233705,0.003739,-0.003999,0.249968,0,0);-ms-transform:matrix(0.233705,0.003739,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.233705,0.003739,-0.003999,0.249968,0,0);}
.m9a_c01066{transform:matrix(0.234512,0.003283,-0.003500,0.249976,0,0);-ms-transform:matrix(0.234512,0.003283,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.234512,0.003283,-0.003500,0.249976,0,0);}
.mc0_c01066{transform:matrix(0.234762,0.003287,-0.003500,0.249976,0,0);-ms-transform:matrix(0.234762,0.003287,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.234762,0.003287,-0.003500,0.249976,0,0);}
.ma2_c01066{transform:matrix(0.234907,0.003289,-0.003500,0.249976,0,0);-ms-transform:matrix(0.234907,0.003289,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.234907,0.003289,-0.003500,0.249976,0,0);}
.m51_c01066{transform:matrix(0.235102,0.003291,-0.003500,0.249976,0,0);-ms-transform:matrix(0.235102,0.003291,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.235102,0.003291,-0.003500,0.249976,0,0);}
.m69_c01066{transform:matrix(0.235252,0.003294,-0.003500,0.249976,0,0);-ms-transform:matrix(0.235252,0.003294,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.235252,0.003294,-0.003500,0.249976,0,0);}
.m99_c01066{transform:matrix(0.236087,0.003305,-0.003500,0.249976,0,0);-ms-transform:matrix(0.236087,0.003305,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.236087,0.003305,-0.003500,0.249976,0,0);}
.me8_c01066{transform:matrix(0.236398,0.004728,-0.004999,0.249950,0,0);-ms-transform:matrix(0.236398,0.004728,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.236398,0.004728,-0.004999,0.249950,0,0);}
.m63_c01066{transform:matrix(0.236422,0.003310,-0.003500,0.249976,0,0);-ms-transform:matrix(0.236422,0.003310,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.236422,0.003310,-0.003500,0.249976,0,0);}
.mb9_c01066{transform:matrix(0.236822,0.003316,-0.003500,0.249976,0,0);-ms-transform:matrix(0.236822,0.003316,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.236822,0.003316,-0.003500,0.249976,0,0);}
.mde_c01066{transform:matrix(0.237302,0.003322,-0.003500,0.249976,0,0);-ms-transform:matrix(0.237302,0.003322,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.237302,0.003322,-0.003500,0.249976,0,0);}
.mc6_c01066{transform:matrix(0.237892,0.003330,-0.003500,0.249976,0,0);-ms-transform:matrix(0.237892,0.003330,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.237892,0.003330,-0.003500,0.249976,0,0);}
.m53_c01066{transform:matrix(0.237952,0.003331,-0.003500,0.249976,0,0);-ms-transform:matrix(0.237952,0.003331,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.237952,0.003331,-0.003500,0.249976,0,0);}
.m12f_c01066{transform:matrix(0.238195,0.003811,-0.003999,0.249968,0,0);-ms-transform:matrix(0.238195,0.003811,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.238195,0.003811,-0.003999,0.249968,0,0);}
.ma7_c01066{transform:matrix(0.238302,0.003336,-0.003500,0.249976,0,0);-ms-transform:matrix(0.238302,0.003336,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.238302,0.003336,-0.003500,0.249976,0,0);}
.m91_c01066{transform:matrix(0.238347,0.003337,-0.003500,0.249976,0,0);-ms-transform:matrix(0.238347,0.003337,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.238347,0.003337,-0.003500,0.249976,0,0);}
.ma0_c01066{transform:matrix(0.238397,0.003338,-0.003500,0.249976,0,0);-ms-transform:matrix(0.238397,0.003338,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.238397,0.003338,-0.003500,0.249976,0,0);}
.m131_c01066{transform:matrix(0.238609,0.003818,-0.003999,0.249968,0,0);-ms-transform:matrix(0.238609,0.003818,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.238609,0.003818,-0.003999,0.249968,0,0);}
.m106_c01066{transform:matrix(0.238987,0.004780,-0.004999,0.249950,0,0);-ms-transform:matrix(0.238987,0.004780,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.238987,0.004780,-0.004999,0.249950,0,0);}
.m72_c01066{transform:matrix(0.239157,0.003348,-0.003500,0.249976,0,0);-ms-transform:matrix(0.239157,0.003348,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.239157,0.003348,-0.003500,0.249976,0,0);}
.m127_c01066{transform:matrix(0.239222,0.004784,-0.004999,0.249950,0,0);-ms-transform:matrix(0.239222,0.004784,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.239222,0.004784,-0.004999,0.249950,0,0);}
.m2f_c01066{transform:matrix(0.239272,0.003350,-0.003500,0.249976,0,0);-ms-transform:matrix(0.239272,0.003350,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.239272,0.003350,-0.003500,0.249976,0,0);}
.m20_c01066{transform:matrix(0.239275,0.003111,-0.003250,0.249979,0,0);-ms-transform:matrix(0.239275,0.003111,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.239275,0.003111,-0.003250,0.249979,0,0);}
.m5b_c01066{transform:matrix(0.239542,0.003354,-0.003500,0.249976,0,0);-ms-transform:matrix(0.239542,0.003354,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.239542,0.003354,-0.003500,0.249976,0,0);}
.m36_c01066{transform:matrix(0.240021,0.003360,-0.003500,0.249976,0,0);-ms-transform:matrix(0.240021,0.003360,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.240021,0.003360,-0.003500,0.249976,0,0);}
.m59_c01066{transform:matrix(0.240091,0.003361,-0.003500,0.249976,0,0);-ms-transform:matrix(0.240091,0.003361,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.240091,0.003361,-0.003500,0.249976,0,0);}
.m8f_c01066{transform:matrix(0.240112,0.004562,-0.004749,0.249955,0,0);-ms-transform:matrix(0.240112,0.004562,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.240112,0.004562,-0.004749,0.249955,0,0);}
.m114_c01066{transform:matrix(0.240277,0.004806,-0.004999,0.249950,0,0);-ms-transform:matrix(0.240277,0.004806,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.240277,0.004806,-0.004999,0.249950,0,0);}
.mfc_c01066{transform:matrix(0.240367,0.004807,-0.004999,0.249950,0,0);-ms-transform:matrix(0.240367,0.004807,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.240367,0.004807,-0.004999,0.249950,0,0);}
.m4c_c01066{transform:matrix(0.241391,0.003379,-0.003500,0.249976,0,0);-ms-transform:matrix(0.241391,0.003379,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.241391,0.003379,-0.003500,0.249976,0,0);}
.m27_c01066{transform:matrix(0.241395,0.003138,-0.003250,0.249979,0,0);-ms-transform:matrix(0.241395,0.003138,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.241395,0.003138,-0.003250,0.249979,0,0);}
.m12b_c01066{transform:matrix(0.242249,0.003876,-0.003999,0.249968,0,0);-ms-transform:matrix(0.242249,0.003876,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.242249,0.003876,-0.003999,0.249968,0,0);}
.m124_c01066{transform:matrix(0.242357,0.004847,-0.004999,0.249950,0,0);-ms-transform:matrix(0.242357,0.004847,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.242357,0.004847,-0.004999,0.249950,0,0);}
.m24_c01066{transform:matrix(0.242495,0.003152,-0.003250,0.249979,0,0);-ms-transform:matrix(0.242495,0.003152,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.242495,0.003152,-0.003250,0.249979,0,0);}
.me0_c01066{transform:matrix(0.242526,0.003395,-0.003500,0.249976,0,0);-ms-transform:matrix(0.242526,0.003395,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.242526,0.003395,-0.003500,0.249976,0,0);}
.mb2_c01066{transform:matrix(0.243351,0.003407,-0.003500,0.249976,0,0);-ms-transform:matrix(0.243351,0.003407,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.243351,0.003407,-0.003500,0.249976,0,0);}
.m57_c01066{transform:matrix(0.243471,0.003409,-0.003500,0.249976,0,0);-ms-transform:matrix(0.243471,0.003409,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.243471,0.003409,-0.003500,0.249976,0,0);}
.m111_c01066{transform:matrix(0.243521,0.004870,-0.004999,0.249950,0,0);-ms-transform:matrix(0.243521,0.004870,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.243521,0.004870,-0.004999,0.249950,0,0);}
.ma3_c01066{transform:matrix(0.243561,0.003410,-0.003500,0.249976,0,0);-ms-transform:matrix(0.243561,0.003410,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.243561,0.003410,-0.003500,0.249976,0,0);}
.m1c_c01066{transform:matrix(0.243904,0.003902,-0.003999,0.249968,0,0);-ms-transform:matrix(0.243904,0.003902,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.243904,0.003902,-0.003999,0.249968,0,0);}
.m7b_c01066{transform:matrix(0.244051,0.003417,-0.003500,0.249976,0,0);-ms-transform:matrix(0.244051,0.003417,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.244051,0.003417,-0.003500,0.249976,0,0);}
.me9_c01066{transform:matrix(0.244206,0.004884,-0.004999,0.249950,0,0);-ms-transform:matrix(0.244206,0.004884,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.244206,0.004884,-0.004999,0.249950,0,0);}
.m14_c01066{transform:matrix(0.244404,0.003910,-0.003999,0.249968,0,0);-ms-transform:matrix(0.244404,0.003910,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.244404,0.003910,-0.003999,0.249968,0,0);}
.md3_c01066{transform:matrix(0.244451,0.003422,-0.003500,0.249976,0,0);-ms-transform:matrix(0.244451,0.003422,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.244451,0.003422,-0.003500,0.249976,0,0);}
.m9e_c01066{transform:matrix(0.244776,0.003427,-0.003500,0.249976,0,0);-ms-transform:matrix(0.244776,0.003427,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.244776,0.003427,-0.003500,0.249976,0,0);}
.mba_c01066{transform:matrix(0.244826,0.003428,-0.003500,0.249976,0,0);-ms-transform:matrix(0.244826,0.003428,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.244826,0.003428,-0.003500,0.249976,0,0);}
.m56_c01066{transform:matrix(0.244846,0.003428,-0.003500,0.249976,0,0);-ms-transform:matrix(0.244846,0.003428,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.244846,0.003428,-0.003500,0.249976,0,0);}
.m132_c01066{transform:matrix(0.245129,0.003922,-0.003999,0.249968,0,0);-ms-transform:matrix(0.245129,0.003922,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.245129,0.003922,-0.003999,0.249968,0,0);}
.m107_c01066{transform:matrix(0.245241,0.004905,-0.004999,0.249950,0,0);-ms-transform:matrix(0.245241,0.004905,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.245241,0.004905,-0.004999,0.249950,0,0);}
.m2e_c01066{transform:matrix(0.245246,0.003433,-0.003500,0.249976,0,0);-ms-transform:matrix(0.245246,0.003433,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.245246,0.003433,-0.003500,0.249976,0,0);}
.me7_c01066{transform:matrix(0.245676,0.004914,-0.004999,0.249950,0,0);-ms-transform:matrix(0.245676,0.004914,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.245676,0.004914,-0.004999,0.249950,0,0);}
.mc9_c01066{transform:matrix(0.245811,0.003441,-0.003500,0.249976,0,0);-ms-transform:matrix(0.245811,0.003441,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.245811,0.003441,-0.003500,0.249976,0,0);}
.mab_c01066{transform:matrix(0.245946,0.003443,-0.003500,0.249976,0,0);-ms-transform:matrix(0.245946,0.003443,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.245946,0.003443,-0.003500,0.249976,0,0);}
.m118_c01066{transform:matrix(0.246156,0.004923,-0.004999,0.249950,0,0);-ms-transform:matrix(0.246156,0.004923,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.246156,0.004923,-0.004999,0.249950,0,0);}
.mbb_c01066{transform:matrix(0.246706,0.003454,-0.003500,0.249976,0,0);-ms-transform:matrix(0.246706,0.003454,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.246706,0.003454,-0.003500,0.249976,0,0);}
.m6b_c01066{transform:matrix(0.247096,0.003459,-0.003500,0.249976,0,0);-ms-transform:matrix(0.247096,0.003459,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.247096,0.003459,-0.003500,0.249976,0,0);}
.m70_c01066{transform:matrix(0.247276,0.003462,-0.003500,0.249976,0,0);-ms-transform:matrix(0.247276,0.003462,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.247276,0.003462,-0.003500,0.249976,0,0);}
.m4_c01066{transform:matrix(0.247424,0.004206,-0.004249,0.249964,0,0);-ms-transform:matrix(0.247424,0.004206,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.247424,0.004206,-0.004249,0.249964,0,0);}
.m135_c01066{transform:matrix(0.247513,0.003960,-0.003999,0.249968,0,0);-ms-transform:matrix(0.247513,0.003960,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.247513,0.003960,-0.003999,0.249968,0,0);}
.m11e_c01066{transform:matrix(0.247565,0.004951,-0.004999,0.249950,0,0);-ms-transform:matrix(0.247565,0.004951,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.247565,0.004951,-0.004999,0.249950,0,0);}
.mf3_c01066{transform:matrix(0.247575,0.004952,-0.004999,0.249950,0,0);-ms-transform:matrix(0.247575,0.004952,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.247575,0.004952,-0.004999,0.249950,0,0);}
.m52_c01066{transform:matrix(0.247661,0.003467,-0.003500,0.249976,0,0);-ms-transform:matrix(0.247661,0.003467,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.247661,0.003467,-0.003500,0.249976,0,0);}
.m11_c01066{transform:matrix(0.247663,0.003963,-0.003999,0.249968,0,0);-ms-transform:matrix(0.247663,0.003963,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.247663,0.003963,-0.003999,0.249968,0,0);}
.m10d_c01066{transform:matrix(0.248160,0.004963,-0.004999,0.249950,0,0);-ms-transform:matrix(0.248160,0.004963,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.248160,0.004963,-0.004999,0.249950,0,0);}
.m10b_c01066{transform:matrix(0.248505,0.004970,-0.004999,0.249950,0,0);-ms-transform:matrix(0.248505,0.004970,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.248505,0.004970,-0.004999,0.249950,0,0);}
.ma6_c01066{transform:matrix(0.248716,0.003482,-0.003500,0.249976,0,0);-ms-transform:matrix(0.248716,0.003482,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.248716,0.003482,-0.003500,0.249976,0,0);}
.me6_c01066{transform:matrix(0.248900,0.004978,-0.004999,0.249950,0,0);-ms-transform:matrix(0.248900,0.004978,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.248900,0.004978,-0.004999,0.249950,0,0);}
.m33_c01066{transform:matrix(0.248926,0.003485,-0.003500,0.249976,0,0);-ms-transform:matrix(0.248926,0.003485,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.248926,0.003485,-0.003500,0.249976,0,0);}
.mce_c01066{transform:matrix(0.249106,0.003487,-0.003500,0.249976,0,0);-ms-transform:matrix(0.249106,0.003487,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.249106,0.003487,-0.003500,0.249976,0,0);}
.me1_c01066{transform:matrix(0.249186,0.003489,-0.003500,0.249976,0,0);-ms-transform:matrix(0.249186,0.003489,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.249186,0.003489,-0.003500,0.249976,0,0);}
.md7_c01066{transform:matrix(0.249381,0.003491,-0.003500,0.249976,0,0);-ms-transform:matrix(0.249381,0.003491,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.249381,0.003491,-0.003500,0.249976,0,0);}
.mdc_c01066{transform:matrix(0.249576,0.003494,-0.003500,0.249976,0,0);-ms-transform:matrix(0.249576,0.003494,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.249576,0.003494,-0.003500,0.249976,0,0);}
.m49_c01066{transform:matrix(0.249626,0.003495,-0.003500,0.249976,0,0);-ms-transform:matrix(0.249626,0.003495,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.249626,0.003495,-0.003500,0.249976,0,0);}
.m83_c01066{transform:matrix(0.249810,0.004746,-0.004749,0.249955,0,0);-ms-transform:matrix(0.249810,0.004746,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.249810,0.004746,-0.004749,0.249955,0,0);}
.m11d_c01066{transform:matrix(0.249945,0.004999,-0.004999,0.249950,0,0);-ms-transform:matrix(0.249945,0.004999,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.249945,0.004999,-0.004999,0.249950,0,0);}
.m12d_c01066{transform:matrix(0.249948,0.003999,-0.003999,0.249968,0,0);-ms-transform:matrix(0.249948,0.003999,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.249948,0.003999,-0.003999,0.249968,0,0);}
.mff_c01066{transform:matrix(0.250340,0.005007,-0.004999,0.249950,0,0);-ms-transform:matrix(0.250340,0.005007,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.250340,0.005007,-0.004999,0.249950,0,0);}
.m7f_c01066{transform:matrix(0.250365,0.003505,-0.003500,0.249976,0,0);-ms-transform:matrix(0.250365,0.003505,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.250365,0.003505,-0.003500,0.249976,0,0);}
.m67_c01066{transform:matrix(0.250375,0.003505,-0.003500,0.249976,0,0);-ms-transform:matrix(0.250375,0.003505,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.250375,0.003505,-0.003500,0.249976,0,0);}
.mbf_c01066{transform:matrix(0.250665,0.003509,-0.003500,0.249976,0,0);-ms-transform:matrix(0.250665,0.003509,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.250665,0.003509,-0.003500,0.249976,0,0);}
.mc5_c01066{transform:matrix(0.251195,0.003517,-0.003500,0.249976,0,0);-ms-transform:matrix(0.251195,0.003517,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.251195,0.003517,-0.003500,0.249976,0,0);}
.me3_c01066{transform:matrix(0.251620,0.003523,-0.003500,0.249976,0,0);-ms-transform:matrix(0.251620,0.003523,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.251620,0.003523,-0.003500,0.249976,0,0);}
.mdd_c01066{transform:matrix(0.251860,0.003526,-0.003500,0.249976,0,0);-ms-transform:matrix(0.251860,0.003526,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.251860,0.003526,-0.003500,0.249976,0,0);}
.m10a_c01066{transform:matrix(0.252285,0.005046,-0.004999,0.249950,0,0);-ms-transform:matrix(0.252285,0.005046,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.252285,0.005046,-0.004999,0.249950,0,0);}
.maf_c01066{transform:matrix(0.252490,0.003535,-0.003500,0.249976,0,0);-ms-transform:matrix(0.252490,0.003535,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.252490,0.003535,-0.003500,0.249976,0,0);}
.m8c_c01066{transform:matrix(0.252494,0.004797,-0.004749,0.249955,0,0);-ms-transform:matrix(0.252494,0.004797,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.252494,0.004797,-0.004749,0.249955,0,0);}
.m3e_c01066{transform:matrix(0.252555,0.003536,-0.003500,0.249976,0,0);-ms-transform:matrix(0.252555,0.003536,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.252555,0.003536,-0.003500,0.249976,0,0);}
.m74_c01066{transform:matrix(0.252585,0.003536,-0.003500,0.249976,0,0);-ms-transform:matrix(0.252585,0.003536,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.252585,0.003536,-0.003500,0.249976,0,0);}
.m11b_c01066{transform:matrix(0.253344,0.005067,-0.004999,0.249950,0,0);-ms-transform:matrix(0.253344,0.005067,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.253344,0.005067,-0.004999,0.249950,0,0);}
.m17_c01066{transform:matrix(0.253778,0.004060,-0.003999,0.249968,0,0);-ms-transform:matrix(0.253778,0.004060,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.253778,0.004060,-0.003999,0.249968,0,0);}
.m3d_c01066{transform:matrix(0.254140,0.003558,-0.003500,0.249976,0,0);-ms-transform:matrix(0.254140,0.003558,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.254140,0.003558,-0.003500,0.249976,0,0);}
.m109_c01066{transform:matrix(0.254144,0.005083,-0.004999,0.249950,0,0);-ms-transform:matrix(0.254144,0.005083,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.254144,0.005083,-0.004999,0.249950,0,0);}
.m5e_c01066{transform:matrix(0.254230,0.003559,-0.003500,0.249976,0,0);-ms-transform:matrix(0.254230,0.003559,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.254230,0.003559,-0.003500,0.249976,0,0);}
.md5_c01066{transform:matrix(0.254545,0.003564,-0.003500,0.249976,0,0);-ms-transform:matrix(0.254545,0.003564,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.254545,0.003564,-0.003500,0.249976,0,0);}
.mec_c01066{transform:matrix(0.255149,0.005103,-0.004999,0.249950,0,0);-ms-transform:matrix(0.255149,0.005103,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.255149,0.005103,-0.004999,0.249950,0,0);}
.m35_c01066{transform:matrix(0.255650,0.003579,-0.003500,0.249976,0,0);-ms-transform:matrix(0.255650,0.003579,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.255650,0.003579,-0.003500,0.249976,0,0);}
.m2d_c01066{transform:matrix(0.255665,0.003579,-0.003500,0.249976,0,0);-ms-transform:matrix(0.255665,0.003579,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.255665,0.003579,-0.003500,0.249976,0,0);}
.m133_c01066{transform:matrix(0.255672,0.004091,-0.003999,0.249968,0,0);-ms-transform:matrix(0.255672,0.004091,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.255672,0.004091,-0.003999,0.249968,0,0);}
.m2a_c01066{transform:matrix(0.256103,0.003329,-0.003250,0.249979,0,0);-ms-transform:matrix(0.256103,0.003329,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.256103,0.003329,-0.003250,0.249979,0,0);}
.m76_c01066{transform:matrix(0.256765,0.003595,-0.003500,0.249976,0,0);-ms-transform:matrix(0.256765,0.003595,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.256765,0.003595,-0.003500,0.249976,0,0);}
.m11c_c01066{transform:matrix(0.257059,0.005141,-0.004999,0.249950,0,0);-ms-transform:matrix(0.257059,0.005141,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.257059,0.005141,-0.004999,0.249950,0,0);}
.mbd_c01066{transform:matrix(0.257085,0.003599,-0.003500,0.249976,0,0);-ms-transform:matrix(0.257085,0.003599,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.257085,0.003599,-0.003500,0.249976,0,0);}
.m1_c01066{transform:matrix(0.257775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257775,0.000000,0.000000,0.250000,0,0);}
.m96_c01066{transform:matrix(0.258045,0.003613,-0.003500,0.249976,0,0);-ms-transform:matrix(0.258045,0.003613,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.258045,0.003613,-0.003500,0.249976,0,0);}
.md6_c01066{transform:matrix(0.259105,0.003627,-0.003500,0.249976,0,0);-ms-transform:matrix(0.259105,0.003627,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.259105,0.003627,-0.003500,0.249976,0,0);}
.m119_c01066{transform:matrix(0.259338,0.005187,-0.004999,0.249950,0,0);-ms-transform:matrix(0.259338,0.005187,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.259338,0.005187,-0.004999,0.249950,0,0);}
.m10c_c01066{transform:matrix(0.259588,0.005192,-0.004999,0.249950,0,0);-ms-transform:matrix(0.259588,0.005192,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.259588,0.005192,-0.004999,0.249950,0,0);}
.mea_c01066{transform:matrix(0.259893,0.005198,-0.004999,0.249950,0,0);-ms-transform:matrix(0.259893,0.005198,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.259893,0.005198,-0.004999,0.249950,0,0);}
.m128_c01066{transform:matrix(0.260133,0.005203,-0.004999,0.249950,0,0);-ms-transform:matrix(0.260133,0.005203,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.260133,0.005203,-0.004999,0.249950,0,0);}
.m122_c01066{transform:matrix(0.260733,0.005215,-0.004999,0.249950,0,0);-ms-transform:matrix(0.260733,0.005215,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.260733,0.005215,-0.004999,0.249950,0,0);}
.maa_c01066{transform:matrix(0.260764,0.003651,-0.003500,0.249976,0,0);-ms-transform:matrix(0.260764,0.003651,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.260764,0.003651,-0.003500,0.249976,0,0);}
.m68_c01066{transform:matrix(0.261224,0.003657,-0.003500,0.249976,0,0);-ms-transform:matrix(0.261224,0.003657,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.261224,0.003657,-0.003500,0.249976,0,0);}
.m9b_c01066{transform:matrix(0.261339,0.003659,-0.003500,0.249976,0,0);-ms-transform:matrix(0.261339,0.003659,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.261339,0.003659,-0.003500,0.249976,0,0);}
.m93_c01066{transform:matrix(0.261344,0.003659,-0.003500,0.249976,0,0);-ms-transform:matrix(0.261344,0.003659,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.261344,0.003659,-0.003500,0.249976,0,0);}
.mc_c01066{transform:matrix(0.261697,0.004187,-0.003999,0.249968,0,0);-ms-transform:matrix(0.261697,0.004187,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.261697,0.004187,-0.003999,0.249968,0,0);}
.m112_c01066{transform:matrix(0.261818,0.005236,-0.004999,0.249950,0,0);-ms-transform:matrix(0.261818,0.005236,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.261818,0.005236,-0.004999,0.249950,0,0);}
.m3c_c01066{transform:matrix(0.261919,0.003667,-0.003500,0.249976,0,0);-ms-transform:matrix(0.261919,0.003667,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.261919,0.003667,-0.003500,0.249976,0,0);}
.med_c01066{transform:matrix(0.262158,0.005243,-0.004999,0.249950,0,0);-ms-transform:matrix(0.262158,0.005243,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.262158,0.005243,-0.004999,0.249950,0,0);}
.m120_c01066{transform:matrix(0.262308,0.005246,-0.004999,0.249950,0,0);-ms-transform:matrix(0.262308,0.005246,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.262308,0.005246,-0.004999,0.249950,0,0);}
.m123_c01066{transform:matrix(0.262348,0.005247,-0.004999,0.249950,0,0);-ms-transform:matrix(0.262348,0.005247,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.262348,0.005247,-0.004999,0.249950,0,0);}
.m1a_c01066{transform:matrix(0.262431,0.004199,-0.003999,0.249968,0,0);-ms-transform:matrix(0.262431,0.004199,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.262431,0.004199,-0.003999,0.249968,0,0);}
.m4e_c01066{transform:matrix(0.262449,0.003674,-0.003500,0.249976,0,0);-ms-transform:matrix(0.262449,0.003674,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.262449,0.003674,-0.003500,0.249976,0,0);}
.m77_c01066{transform:matrix(0.262674,0.003677,-0.003500,0.249976,0,0);-ms-transform:matrix(0.262674,0.003677,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.262674,0.003677,-0.003500,0.249976,0,0);}
.m125_c01066{transform:matrix(0.262732,0.005255,-0.004999,0.249950,0,0);-ms-transform:matrix(0.262732,0.005255,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.262732,0.005255,-0.004999,0.249950,0,0);}
.m129_c01066{transform:matrix(0.262797,0.005256,-0.004999,0.249950,0,0);-ms-transform:matrix(0.262797,0.005256,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.262797,0.005256,-0.004999,0.249950,0,0);}
.m84_c01066{transform:matrix(0.262838,0.004994,-0.004749,0.249955,0,0);-ms-transform:matrix(0.262838,0.004994,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.262838,0.004994,-0.004749,0.249955,0,0);}
.m10f_c01066{transform:matrix(0.263342,0.005267,-0.004999,0.249950,0,0);-ms-transform:matrix(0.263342,0.005267,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.263342,0.005267,-0.004999,0.249950,0,0);}
.m32_c01066{transform:matrix(0.263439,0.003688,-0.003500,0.249976,0,0);-ms-transform:matrix(0.263439,0.003688,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.263439,0.003688,-0.003500,0.249976,0,0);}
.mac_c01066{transform:matrix(0.263629,0.003691,-0.003500,0.249976,0,0);-ms-transform:matrix(0.263629,0.003691,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.263629,0.003691,-0.003500,0.249976,0,0);}
.m44_c01066{transform:matrix(0.264649,0.003705,-0.003500,0.249976,0,0);-ms-transform:matrix(0.264649,0.003705,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.264649,0.003705,-0.003500,0.249976,0,0);}
.m5f_c01066{transform:matrix(0.266004,0.003724,-0.003500,0.249976,0,0);-ms-transform:matrix(0.266004,0.003724,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.266004,0.003724,-0.003500,0.249976,0,0);}
.m85_c01066{transform:matrix(0.266192,0.005058,-0.004749,0.249955,0,0);-ms-transform:matrix(0.266192,0.005058,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.266192,0.005058,-0.004749,0.249955,0,0);}
.m97_c01066{transform:matrix(0.266624,0.003733,-0.003500,0.249976,0,0);-ms-transform:matrix(0.266624,0.003733,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.266624,0.003733,-0.003500,0.249976,0,0);}
.m42_c01066{transform:matrix(0.266684,0.003734,-0.003500,0.249976,0,0);-ms-transform:matrix(0.266684,0.003734,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.266684,0.003734,-0.003500,0.249976,0,0);}
.mb3_c01066{transform:matrix(0.266819,0.003735,-0.003500,0.249976,0,0);-ms-transform:matrix(0.266819,0.003735,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.266819,0.003735,-0.003500,0.249976,0,0);}
.m54_c01066{transform:matrix(0.266974,0.003738,-0.003500,0.249976,0,0);-ms-transform:matrix(0.266974,0.003738,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.266974,0.003738,-0.003500,0.249976,0,0);}
.md8_c01066{transform:matrix(0.267039,0.003739,-0.003500,0.249976,0,0);-ms-transform:matrix(0.267039,0.003739,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.267039,0.003739,-0.003500,0.249976,0,0);}
.m78_c01066{transform:matrix(0.267484,0.003745,-0.003500,0.249976,0,0);-ms-transform:matrix(0.267484,0.003745,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.267484,0.003745,-0.003500,0.249976,0,0);}
.m15_c01066{transform:matrix(0.268031,0.004288,-0.003999,0.249968,0,0);-ms-transform:matrix(0.268031,0.004288,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.268031,0.004288,-0.003999,0.249968,0,0);}
.mbe_c01066{transform:matrix(0.268284,0.003756,-0.003500,0.249976,0,0);-ms-transform:matrix(0.268284,0.003756,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.268284,0.003756,-0.003500,0.249976,0,0);}
.m126_c01066{transform:matrix(0.268396,0.005368,-0.004999,0.249950,0,0);-ms-transform:matrix(0.268396,0.005368,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.268396,0.005368,-0.004999,0.249950,0,0);}
.m95_c01066{transform:matrix(0.268594,0.003760,-0.003500,0.249976,0,0);-ms-transform:matrix(0.268594,0.003760,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.268594,0.003760,-0.003500,0.249976,0,0);}
.me_c01066{transform:matrix(0.268621,0.004298,-0.003999,0.249968,0,0);-ms-transform:matrix(0.268621,0.004298,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.268621,0.004298,-0.003999,0.249968,0,0);}
.m34_c01066{transform:matrix(0.268674,0.003761,-0.003500,0.249976,0,0);-ms-transform:matrix(0.268674,0.003761,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.268674,0.003761,-0.003500,0.249976,0,0);}
.mb8_c01066{transform:matrix(0.268774,0.003763,-0.003500,0.249976,0,0);-ms-transform:matrix(0.268774,0.003763,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.268774,0.003763,-0.003500,0.249976,0,0);}
.md4_c01066{transform:matrix(0.269244,0.003769,-0.003500,0.249976,0,0);-ms-transform:matrix(0.269244,0.003769,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.269244,0.003769,-0.003500,0.249976,0,0);}
.mfd_c01066{transform:matrix(0.269331,0.005387,-0.004999,0.249950,0,0);-ms-transform:matrix(0.269331,0.005387,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.269331,0.005387,-0.004999,0.249950,0,0);}
.m47_c01066{transform:matrix(0.269729,0.003776,-0.003500,0.249976,0,0);-ms-transform:matrix(0.269729,0.003776,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.269729,0.003776,-0.003500,0.249976,0,0);}
.md1_c01066{transform:matrix(0.270074,0.003781,-0.003500,0.249976,0,0);-ms-transform:matrix(0.270074,0.003781,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.270074,0.003781,-0.003500,0.249976,0,0);}
.m7e_c01066{transform:matrix(0.271273,0.003798,-0.003500,0.249976,0,0);-ms-transform:matrix(0.271273,0.003798,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.271273,0.003798,-0.003500,0.249976,0,0);}
.mf_c01066{transform:matrix(0.271615,0.004346,-0.003999,0.249968,0,0);-ms-transform:matrix(0.271615,0.004346,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.271615,0.004346,-0.003999,0.249968,0,0);}
.mcf_c01066{transform:matrix(0.271918,0.003807,-0.003500,0.249976,0,0);-ms-transform:matrix(0.271918,0.003807,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.271918,0.003807,-0.003500,0.249976,0,0);}
.m31_c01066{transform:matrix(0.272193,0.003811,-0.003500,0.249976,0,0);-ms-transform:matrix(0.272193,0.003811,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.272193,0.003811,-0.003500,0.249976,0,0);}
.m21_c01066{transform:matrix(0.272297,0.003540,-0.003250,0.249979,0,0);-ms-transform:matrix(0.272297,0.003540,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.272297,0.003540,-0.003250,0.249979,0,0);}
.m64_c01066{transform:matrix(0.272853,0.003820,-0.003500,0.249976,0,0);-ms-transform:matrix(0.272853,0.003820,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.272853,0.003820,-0.003500,0.249976,0,0);}
.m58_c01066{transform:matrix(0.273153,0.003824,-0.003500,0.249976,0,0);-ms-transform:matrix(0.273153,0.003824,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.273153,0.003824,-0.003500,0.249976,0,0);}
.md0_c01066{transform:matrix(0.273558,0.003830,-0.003500,0.249976,0,0);-ms-transform:matrix(0.273558,0.003830,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.273558,0.003830,-0.003500,0.249976,0,0);}
.m40_c01066{transform:matrix(0.273563,0.003830,-0.003500,0.249976,0,0);-ms-transform:matrix(0.273563,0.003830,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.273563,0.003830,-0.003500,0.249976,0,0);}
.m1b_c01066{transform:matrix(0.274140,0.004386,-0.003999,0.249968,0,0);-ms-transform:matrix(0.274140,0.004386,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.274140,0.004386,-0.003999,0.249968,0,0);}
.mb5_c01066{transform:matrix(0.274473,0.003843,-0.003500,0.249976,0,0);-ms-transform:matrix(0.274473,0.003843,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.274473,0.003843,-0.003500,0.249976,0,0);}
.md_c01066{transform:matrix(0.274640,0.004394,-0.003999,0.249968,0,0);-ms-transform:matrix(0.274640,0.004394,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.274640,0.004394,-0.003999,0.249968,0,0);}
.m30_c01066{transform:matrix(0.275003,0.003850,-0.003500,0.249976,0,0);-ms-transform:matrix(0.275003,0.003850,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.275003,0.003850,-0.003500,0.249976,0,0);}
.m89_c01066{transform:matrix(0.275115,0.005227,-0.004749,0.249955,0,0);-ms-transform:matrix(0.275115,0.005227,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.275115,0.005227,-0.004749,0.249955,0,0);}
.m39_c01066{transform:matrix(0.275838,0.003862,-0.003500,0.249976,0,0);-ms-transform:matrix(0.275838,0.003862,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.275838,0.003862,-0.003500,0.249976,0,0);}
.m61_c01066{transform:matrix(0.276313,0.003868,-0.003500,0.249976,0,0);-ms-transform:matrix(0.276313,0.003868,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.276313,0.003868,-0.003500,0.249976,0,0);}
.m26_c01066{transform:matrix(0.276357,0.003593,-0.003250,0.249979,0,0);-ms-transform:matrix(0.276357,0.003593,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.276357,0.003593,-0.003250,0.249979,0,0);}
.m5d_c01066{transform:matrix(0.276538,0.003872,-0.003500,0.249976,0,0);-ms-transform:matrix(0.276538,0.003872,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.276538,0.003872,-0.003500,0.249976,0,0);}
.m7a_c01066{transform:matrix(0.277543,0.003886,-0.003500,0.249976,0,0);-ms-transform:matrix(0.277543,0.003886,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.277543,0.003886,-0.003500,0.249976,0,0);}
.m12_c01066{transform:matrix(0.278019,0.004448,-0.003999,0.249968,0,0);-ms-transform:matrix(0.278019,0.004448,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.278019,0.004448,-0.003999,0.249968,0,0);}
.m116_c01066{transform:matrix(0.278464,0.005569,-0.004999,0.249950,0,0);-ms-transform:matrix(0.278464,0.005569,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.278464,0.005569,-0.004999,0.249950,0,0);}
.m25_c01066{transform:matrix(0.278826,0.003625,-0.003250,0.249979,0,0);-ms-transform:matrix(0.278826,0.003625,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.278826,0.003625,-0.003250,0.249979,0,0);}
.m10e_c01066{transform:matrix(0.278989,0.005580,-0.004999,0.249950,0,0);-ms-transform:matrix(0.278989,0.005580,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.278989,0.005580,-0.004999,0.249950,0,0);}
.m98_c01066{transform:matrix(0.279123,0.003908,-0.003500,0.249976,0,0);-ms-transform:matrix(0.279123,0.003908,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.279123,0.003908,-0.003500,0.249976,0,0);}
.m121_c01066{transform:matrix(0.279709,0.005594,-0.004999,0.249950,0,0);-ms-transform:matrix(0.279709,0.005594,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.279709,0.005594,-0.004999,0.249950,0,0);}
.mc3_c01066{transform:matrix(0.279943,0.003919,-0.003500,0.249976,0,0);-ms-transform:matrix(0.279943,0.003919,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.279943,0.003919,-0.003500,0.249976,0,0);}
.mca_c01066{transform:matrix(0.280712,0.003930,-0.003500,0.249976,0,0);-ms-transform:matrix(0.280712,0.003930,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.280712,0.003930,-0.003500,0.249976,0,0);}
.m60_c01066{transform:matrix(0.280852,0.003932,-0.003500,0.249976,0,0);-ms-transform:matrix(0.280852,0.003932,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.280852,0.003932,-0.003500,0.249976,0,0);}
.mb7_c01066{transform:matrix(0.281707,0.003944,-0.003500,0.249976,0,0);-ms-transform:matrix(0.281707,0.003944,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.281707,0.003944,-0.003500,0.249976,0,0);}
.m73_c01066{transform:matrix(0.281722,0.003944,-0.003500,0.249976,0,0);-ms-transform:matrix(0.281722,0.003944,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.281722,0.003944,-0.003500,0.249976,0,0);}
.m6_c01066{transform:matrix(0.282274,0.004799,-0.004249,0.249964,0,0);-ms-transform:matrix(0.282274,0.004799,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.282274,0.004799,-0.004249,0.249964,0,0);}
.m12a_c01066{transform:matrix(0.283318,0.005666,-0.004999,0.249950,0,0);-ms-transform:matrix(0.283318,0.005666,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.283318,0.005666,-0.004999,0.249950,0,0);}
.m110_c01066{transform:matrix(0.286038,0.005721,-0.004999,0.249950,0,0);-ms-transform:matrix(0.286038,0.005721,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.286038,0.005721,-0.004999,0.249950,0,0);}
.m113_c01066{transform:matrix(0.286688,0.005734,-0.004999,0.249950,0,0);-ms-transform:matrix(0.286688,0.005734,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.286688,0.005734,-0.004999,0.249950,0,0);}
.m5_c01066{transform:matrix(0.287978,0.004896,-0.004249,0.249964,0,0);-ms-transform:matrix(0.287978,0.004896,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.287978,0.004896,-0.004249,0.249964,0,0);}
.m104_c01066{transform:matrix(0.288217,0.005764,-0.004999,0.249950,0,0);-ms-transform:matrix(0.288217,0.005764,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.288217,0.005764,-0.004999,0.249950,0,0);}
.m37_c01066{transform:matrix(0.289702,0.004056,-0.003500,0.249976,0,0);-ms-transform:matrix(0.289702,0.004056,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.289702,0.004056,-0.003500,0.249976,0,0);}
.m3a_c01066{transform:matrix(0.289912,0.004059,-0.003500,0.249976,0,0);-ms-transform:matrix(0.289912,0.004059,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.289912,0.004059,-0.003500,0.249976,0,0);}
.m19_c01066{transform:matrix(0.293087,0.004689,-0.003999,0.249968,0,0);-ms-transform:matrix(0.293087,0.004689,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.293087,0.004689,-0.003999,0.249968,0,0);}
.m3b_c01066{transform:matrix(0.293461,0.004108,-0.003500,0.249976,0,0);-ms-transform:matrix(0.293461,0.004108,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.293461,0.004108,-0.003500,0.249976,0,0);}
.m38_c01066{transform:matrix(0.294011,0.004116,-0.003500,0.249976,0,0);-ms-transform:matrix(0.294011,0.004116,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.294011,0.004116,-0.003500,0.249976,0,0);}
.mcd_c01066{transform:matrix(0.294071,0.004117,-0.003500,0.249976,0,0);-ms-transform:matrix(0.294071,0.004117,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.294071,0.004117,-0.003500,0.249976,0,0);}
.mcc_c01066{transform:matrix(0.294416,0.004122,-0.003500,0.249976,0,0);-ms-transform:matrix(0.294416,0.004122,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.294416,0.004122,-0.003500,0.249976,0,0);}
.m3f_c01066{transform:matrix(0.296331,0.004149,-0.003500,0.249976,0,0);-ms-transform:matrix(0.296331,0.004149,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.296331,0.004149,-0.003500,0.249976,0,0);}
.m102_c01066{transform:matrix(0.296351,0.005927,-0.004999,0.249950,0,0);-ms-transform:matrix(0.296351,0.005927,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.296351,0.005927,-0.004999,0.249950,0,0);}
.m100_c01066{transform:matrix(0.296466,0.005929,-0.004999,0.249950,0,0);-ms-transform:matrix(0.296466,0.005929,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.296466,0.005929,-0.004999,0.249950,0,0);}
.m18_c01066{transform:matrix(0.299417,0.004791,-0.003999,0.249968,0,0);-ms-transform:matrix(0.299417,0.004791,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.299417,0.004791,-0.003999,0.249968,0,0);}
.mfe_c01066{transform:matrix(0.300030,0.006001,-0.004999,0.249950,0,0);-ms-transform:matrix(0.300030,0.006001,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.300030,0.006001,-0.004999,0.249950,0,0);}
.m1d_c01066{transform:matrix(0.300197,0.004803,-0.003999,0.249968,0,0);-ms-transform:matrix(0.300197,0.004803,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.300197,0.004803,-0.003999,0.249968,0,0);}
.m4b_c01066{transform:matrix(0.302265,0.004232,-0.003500,0.249976,0,0);-ms-transform:matrix(0.302265,0.004232,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.302265,0.004232,-0.003500,0.249976,0,0);}
.m115_c01066{transform:matrix(0.303399,0.006068,-0.004999,0.249950,0,0);-ms-transform:matrix(0.303399,0.006068,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.303399,0.006068,-0.004999,0.249950,0,0);}
.mc2_c01066{transform:matrix(0.303780,0.004253,-0.003500,0.249976,0,0);-ms-transform:matrix(0.303780,0.004253,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.303780,0.004253,-0.003500,0.249976,0,0);}
.m117_c01066{transform:matrix(0.304874,0.006097,-0.004999,0.249950,0,0);-ms-transform:matrix(0.304874,0.006097,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.304874,0.006097,-0.004999,0.249950,0,0);}
.m139_c01066{transform:matrix(0.305939,0.007648,-0.006248,0.249922,0,0);-ms-transform:matrix(0.305939,0.007648,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.305939,0.007648,-0.006248,0.249922,0,0);}
.m16_c01066{transform:matrix(0.306816,0.004909,-0.003999,0.249968,0,0);-ms-transform:matrix(0.306816,0.004909,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.306816,0.004909,-0.003999,0.249968,0,0);}
.m101_c01066{transform:matrix(0.307304,0.006146,-0.004999,0.249950,0,0);-ms-transform:matrix(0.307304,0.006146,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.307304,0.006146,-0.004999,0.249950,0,0);}
.m45_c01066{transform:matrix(0.307625,0.004307,-0.003500,0.249976,0,0);-ms-transform:matrix(0.307625,0.004307,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.307625,0.004307,-0.003500,0.249976,0,0);}
.mcb_c01066{transform:matrix(0.308805,0.004323,-0.003500,0.249976,0,0);-ms-transform:matrix(0.308805,0.004323,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.308805,0.004323,-0.003500,0.249976,0,0);}
.mc4_c01066{transform:matrix(0.312594,0.004376,-0.003500,0.249976,0,0);-ms-transform:matrix(0.312594,0.004376,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.312594,0.004376,-0.003500,0.249976,0,0);}
.m7c_c01066{transform:matrix(0.313469,0.004389,-0.003500,0.249976,0,0);-ms-transform:matrix(0.313469,0.004389,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.313469,0.004389,-0.003500,0.249976,0,0);}
.m13b_c01066{transform:matrix(0.314412,0.007860,-0.006248,0.249922,0,0);-ms-transform:matrix(0.314412,0.007860,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.314412,0.007860,-0.006248,0.249922,0,0);}
.mc1_c01066{transform:matrix(0.320944,0.004493,-0.003500,0.249976,0,0);-ms-transform:matrix(0.320944,0.004493,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.320944,0.004493,-0.003500,0.249976,0,0);}
.m55_c01066{transform:matrix(0.322178,0.004510,-0.003500,0.249976,0,0);-ms-transform:matrix(0.322178,0.004510,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.322178,0.004510,-0.003500,0.249976,0,0);}
.m3_c01066{transform:matrix(0.326393,0.005549,-0.004249,0.249964,0,0);-ms-transform:matrix(0.326393,0.005549,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.326393,0.005549,-0.004249,0.249964,0,0);}
.m13c_c01066{transform:matrix(0.330767,0.008269,-0.006248,0.249922,0,0);-ms-transform:matrix(0.330767,0.008269,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.330767,0.008269,-0.006248,0.249922,0,0);}
.mee_c01066{transform:matrix(0.332953,0.006659,-0.004999,0.249950,0,0);-ms-transform:matrix(0.332953,0.006659,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.332953,0.006659,-0.004999,0.249950,0,0);}
.m88_c01066{transform:matrix(0.343778,0.006532,-0.004749,0.249955,0,0);-ms-transform:matrix(0.343778,0.006532,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.343778,0.006532,-0.004749,0.249955,0,0);}
.m13e_c01066{transform:matrix(0.349366,0.008734,-0.006248,0.249922,0,0);-ms-transform:matrix(0.349366,0.008734,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.349366,0.008734,-0.006248,0.249922,0,0);}
.m13_c01066{transform:matrix(0.361574,0.005785,-0.003999,0.249968,0,0);-ms-transform:matrix(0.361574,0.005785,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.361574,0.005785,-0.003999,0.249968,0,0);}
.m142_c01066{transform:matrix(0.364356,0.009109,-0.006248,0.249922,0,0);-ms-transform:matrix(0.364356,0.009109,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.364356,0.009109,-0.006248,0.249922,0,0);}
.m138_c01066{transform:matrix(0.364946,0.009124,-0.006248,0.249922,0,0);-ms-transform:matrix(0.364946,0.009124,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.364946,0.009124,-0.006248,0.249922,0,0);}
.m140_c01066{transform:matrix(0.365936,0.009148,-0.006248,0.249922,0,0);-ms-transform:matrix(0.365936,0.009148,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.365936,0.009148,-0.006248,0.249922,0,0);}
.m4a_c01066{transform:matrix(0.368354,0.005157,-0.003500,0.249976,0,0);-ms-transform:matrix(0.368354,0.005157,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.368354,0.005157,-0.003500,0.249976,0,0);}
.m13d_c01066{transform:matrix(0.370024,0.009251,-0.006248,0.249922,0,0);-ms-transform:matrix(0.370024,0.009251,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.370024,0.009251,-0.006248,0.249922,0,0);}
.m137_c01066{transform:matrix(0.371154,0.009279,-0.006248,0.249922,0,0);-ms-transform:matrix(0.371154,0.009279,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.371154,0.009279,-0.006248,0.249922,0,0);}
.m141_c01066{transform:matrix(0.373478,0.009337,-0.006248,0.249922,0,0);-ms-transform:matrix(0.373478,0.009337,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.373478,0.009337,-0.006248,0.249922,0,0);}
.mc7_c01066{transform:matrix(0.375708,0.005260,-0.003500,0.249976,0,0);-ms-transform:matrix(0.375708,0.005260,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.375708,0.005260,-0.003500,0.249976,0,0);}
.m13f_c01066{transform:matrix(0.384920,0.009623,-0.006248,0.249922,0,0);-ms-transform:matrix(0.384920,0.009623,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.384920,0.009623,-0.006248,0.249922,0,0);}
.m13a_c01066{transform:matrix(0.403074,0.010077,-0.006248,0.249922,0,0);-ms-transform:matrix(0.403074,0.010077,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.403074,0.010077,-0.006248,0.249922,0,0);}
.m1f_c01066{transform:matrix(0.409240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409240,0.000000,0.000000,0.250000,0,0);}
.m1e_c01066{transform:matrix(0.410725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410725,0.000000,0.000000,0.250000,0,0);}
.m4d_c01066{transform:matrix(0.414069,0.005797,-0.003500,0.249976,0,0);-ms-transform:matrix(0.414069,0.005797,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.414069,0.005797,-0.003500,0.249976,0,0);}
.m90_c01066{transform:matrix(0.475859,0.009041,-0.004749,0.249955,0,0);-ms-transform:matrix(0.475859,0.009041,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.475859,0.009041,-0.004749,0.249955,0,0);}
.m82_c01066{transform:matrix(0.483803,0.006773,-0.003500,0.249976,0,0);-ms-transform:matrix(0.483803,0.006773,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.483803,0.006773,-0.003500,0.249976,0,0);}
.ma_c01066{transform:matrix(1.773513,0.028376,-0.003999,0.249968,0,0);-ms-transform:matrix(1.773513,0.028376,-0.003999,0.249968,0,0);-webkit-transform:matrix(1.773513,0.028376,-0.003999,0.249968,0,0);}
.v0_c01066{vertical-align:0.000000px;}
.ls0_c01066{letter-spacing:0.000000px;}
.sc__c01066{text-shadow:none;}
.sc0_c01066{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__c01066{-webkit-text-stroke:0px transparent;}
.sc0_c01066{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01066{word-spacing:0.000000px;}
._0_c01066{width:34.595898px;}
.fc0_c01066{color:transparent;}
.fs4_c01066{font-size:42.000000px;}
.fsf_c01066{font-size:48.014998px;}
.fs7_c01066{font-size:66.006468px;}
.fs2_c01066{font-size:66.008447px;}
.fs1_c01066{font-size:66.009536px;}
.fsc_c01066{font-size:66.013199px;}
.fs0_c01066{font-size:72.000000px;}
.fs5_c01066{font-size:72.006084px;}
.fs6_c01066{font-size:72.007056px;}
.fs3_c01066{font-size:72.009215px;}
.fs9_c01066{font-size:72.012995px;}
.fsa_c01066{font-size:72.014399px;}
.fs8_c01066{font-size:78.007644px;}
.fse_c01066{font-size:78.009983px;}
.fsd_c01066{font-size:78.015598px;}
.fsb_c01066{font-size:84.016798px;}
.y0_c01066{bottom:0.000000px;}
.y14f_c01066{bottom:62.394225px;}
.y14e_c01066{bottom:63.488887px;}
.y14d_c01066{bottom:64.887037px;}
.y14c_c01066{bottom:66.285525px;}
.y14b_c01066{bottom:67.122450px;}
.y14a_c01066{bottom:67.669687px;}
.y149_c01066{bottom:68.507100px;}
.y148_c01066{bottom:69.283125px;}
.y147_c01066{bottom:71.281837px;}
.y146_c01066{bottom:72.043500px;}
.y145_c01066{bottom:73.447237px;}
.y144_c01066{bottom:74.257500px;}
.y143_c01066{bottom:117.294048px;}
.y142_c01066{bottom:118.538808px;}
.y141_c01066{bottom:118.905624px;}
.y140_c01066{bottom:120.492864px;}
.y13f_c01066{bottom:122.074608px;}
.y13e_c01066{bottom:122.995200px;}
.y13d_c01066{bottom:123.518064px;}
.y13c_c01066{bottom:124.563792px;}
.y13b_c01066{bottom:124.927104px;}
.y13a_c01066{bottom:126.689496px;}
.y139_c01066{bottom:127.207824px;}
.y138_c01066{bottom:128.253000px;}
.y137_c01066{bottom:150.652770px;}
.y136_c01066{bottom:152.214690px;}
.y135_c01066{bottom:153.559230px;}
.y134_c01066{bottom:154.229250px;}
.y133_c01066{bottom:155.553810px;}
.y132_c01066{bottom:156.201900px;}
.y131_c01066{bottom:157.309530px;}
.y130_c01066{bottom:158.184600px;}
.y12f_c01066{bottom:159.939480px;}
.y12e_c01066{bottom:161.704080px;}
.y12d_c01066{bottom:184.049220px;}
.y12c_c01066{bottom:186.375210px;}
.y12b_c01066{bottom:187.788720px;}
.y12a_c01066{bottom:188.470140px;}
.y129_c01066{bottom:189.638370px;}
.y128_c01066{bottom:190.573710px;}
.y127_c01066{bottom:191.743860px;}
.y126_c01066{bottom:192.429900px;}
.y125_c01066{bottom:193.791030px;}
.y124_c01066{bottom:194.516580px;}
.y123_c01066{bottom:195.208680px;}
.y122_c01066{bottom:195.904500px;}
.y121_c01066{bottom:197.492640px;}
.y120_c01066{bottom:198.431580px;}
.y11f_c01066{bottom:222.074520px;}
.y11e_c01066{bottom:223.331010px;}
.y11d_c01066{bottom:226.121520px;}
.y11c_c01066{bottom:227.065170px;}
.y11b_c01066{bottom:229.237890px;}
.y11a_c01066{bottom:230.160870px;}
.y119_c01066{bottom:231.693540px;}
.y118_c01066{bottom:232.611270px;}
.y117_c01066{bottom:234.501450px;}
.y116_c01066{bottom:235.965750px;}
.y115_c01066{bottom:238.135440px;}
.y114_c01066{bottom:259.189830px;}
.y113_c01066{bottom:261.879570px;}
.y112_c01066{bottom:263.746350px;}
.y111_c01066{bottom:266.351040px;}
.y110_c01066{bottom:268.743600px;}
.y10f_c01066{bottom:269.818230px;}
.y10e_c01066{bottom:271.930740px;}
.y10d_c01066{bottom:273.508770px;}
.y10c_c01066{bottom:294.846090px;}
.y10b_c01066{bottom:296.192580px;}
.y10a_c01066{bottom:296.667030px;}
.y109_c01066{bottom:298.672740px;}
.y108_c01066{bottom:300.898290px;}
.y107_c01066{bottom:302.432220px;}
.y106_c01066{bottom:303.096510px;}
.y105_c01066{bottom:305.278440px;}
.y104_c01066{bottom:306.186000px;}
.y103_c01066{bottom:335.984310px;}
.y102_c01066{bottom:337.236180px;}
.y101_c01066{bottom:338.313390px;}
.y100_c01066{bottom:338.933970px;}
.yff_c01066{bottom:339.985470px;}
.yfe_c01066{bottom:340.806030px;}
.yfd_c01066{bottom:341.646780px;}
.yfc_c01066{bottom:342.896700px;}
.yfb_c01066{bottom:364.933740px;}
.yfa_c01066{bottom:366.019800px;}
.yf9_c01066{bottom:366.493920px;}
.yf8_c01066{bottom:367.087920px;}
.yf7_c01066{bottom:367.374600px;}
.yf6_c01066{bottom:368.055390px;}
.yf5_c01066{bottom:369.176640px;}
.yf4_c01066{bottom:370.935720px;}
.yf3_c01066{bottom:372.257910px;}
.yf2_c01066{bottom:372.923160px;}
.yf1_c01066{bottom:374.041590px;}
.yf0_c01066{bottom:374.916540px;}
.yef_c01066{bottom:375.575220px;}
.yee_c01066{bottom:376.671210px;}
.yed_c01066{bottom:377.549940px;}
.yec_c01066{bottom:378.209460px;}
.yeb_c01066{bottom:381.243000px;}
.yea_c01066{bottom:399.689859px;}
.ye9_c01066{bottom:400.158963px;}
.ye8_c01066{bottom:401.927724px;}
.ye7_c01066{bottom:403.477794px;}
.ye6_c01066{bottom:404.146884px;}
.ye5_c01066{bottom:405.271653px;}
.ye4_c01066{bottom:405.935169px;}
.ye3_c01066{bottom:407.462178px;}
.ye2_c01066{bottom:409.651632px;}
.ye1_c01066{bottom:410.558109px;}
.ye0_c01066{bottom:411.217311px;}
.ydf_c01066{bottom:412.274229px;}
.yde_c01066{bottom:435.812349px;}
.ydd_c01066{bottom:436.590636px;}
.ydc_c01066{bottom:437.568063px;}
.ydb_c01066{bottom:438.390261px;}
.yda_c01066{bottom:439.961373px;}
.yd9_c01066{bottom:440.783424px;}
.yd8_c01066{bottom:441.376437px;}
.yd7_c01066{bottom:442.956000px;}
.yd6_c01066{bottom:444.578646px;}
.yd5_c01066{bottom:445.147305px;}
.yd4_c01066{bottom:446.930523px;}
.yd3_c01066{bottom:447.916401px;}
.yd2_c01066{bottom:470.499906px;}
.yd1_c01066{bottom:472.131219px;}
.yd0_c01066{bottom:474.485844px;}
.ycf_c01066{bottom:475.712814px;}
.yce_c01066{bottom:476.369196px;}
.ycd_c01066{bottom:477.161538px;}
.ycc_c01066{bottom:478.271673px;}
.ycb_c01066{bottom:478.866405px;}
.yca_c01066{bottom:479.523522px;}
.yc9_c01066{bottom:480.157461px;}
.yc8_c01066{bottom:480.974556px;}
.yc7_c01066{bottom:483.288000px;}
.yc6_c01066{bottom:508.512240px;}
.yc5_c01066{bottom:509.184819px;}
.yc4_c01066{bottom:510.026760px;}
.yc3_c01066{bottom:511.293882px;}
.yc2_c01066{bottom:512.358207px;}
.yc1_c01066{bottom:512.998119px;}
.yc0_c01066{bottom:513.830445px;}
.ybf_c01066{bottom:514.855584px;}
.ybe_c01066{bottom:515.498424px;}
.ybd_c01066{bottom:516.332808px;}
.ybc_c01066{bottom:517.826859px;}
.ybb_c01066{bottom:520.715457px;}
.yba_c01066{bottom:521.360208px;}
.yb9_c01066{bottom:542.675043px;}
.yb8_c01066{bottom:543.407289px;}
.yb7_c01066{bottom:544.802505px;}
.yb6_c01066{bottom:545.500470px;}
.yb5_c01066{bottom:546.197868px;}
.yb4_c01066{bottom:546.912858px;}
.yb3_c01066{bottom:548.074086px;}
.yb2_c01066{bottom:548.767086px;}
.yb1_c01066{bottom:550.156623px;}
.yb0_c01066{bottom:550.854189px;}
.yaf_c01066{bottom:552.673905px;}
.yae_c01066{bottom:553.627113px;}
.yad_c01066{bottom:555.242577px;}
.yac_c01066{bottom:555.926823px;}
.yab_c01066{bottom:582.584841px;}
.yaa_c01066{bottom:583.375050px;}
.ya9_c01066{bottom:584.311272px;}
.ya8_c01066{bottom:584.759139px;}
.ya7_c01066{bottom:585.247620px;}
.ya6_c01066{bottom:586.476162px;}
.ya5_c01066{bottom:587.552979px;}
.ya4_c01066{bottom:588.018507px;}
.ya3_c01066{bottom:588.806469px;}
.ya2_c01066{bottom:589.262589px;}
.ya1_c01066{bottom:590.472168px;}
.ya0_c01066{bottom:590.792754px;}
.y9f_c01066{bottom:591.568116px;}
.y9e_c01066{bottom:617.911986px;}
.y9d_c01066{bottom:618.388329px;}
.y9c_c01066{bottom:618.849657px;}
.y9b_c01066{bottom:619.469136px;}
.y9a_c01066{bottom:620.872587px;}
.y99_c01066{bottom:621.806373px;}
.y98_c01066{bottom:622.270851px;}
.y97_c01066{bottom:623.042580px;}
.y96_c01066{bottom:624.278829px;}
.y95_c01066{bottom:624.875586px;}
.y94_c01066{bottom:625.810002px;}
.y93_c01066{bottom:626.282355px;}
.y92_c01066{bottom:626.584083px;}
.y91_c01066{bottom:627.211500px;}
.y90_c01066{bottom:649.827216px;}
.y8f_c01066{bottom:650.628864px;}
.y8e_c01066{bottom:651.276384px;}
.y8d_c01066{bottom:651.685729px;}
.y8c_c01066{bottom:652.943719px;}
.y8b_c01066{bottom:653.579725px;}
.y8a_c01066{bottom:654.231520px;}
.y89_c01066{bottom:655.919319px;}
.y88_c01066{bottom:656.980659px;}
.y87_c01066{bottom:657.571436px;}
.y86_c01066{bottom:658.213654px;}
.y85_c01066{bottom:659.886319px;}
.y84_c01066{bottom:661.353528px;}
.y83_c01066{bottom:662.584500px;}
.y82_c01066{bottom:684.800688px;}
.y81_c01066{bottom:685.505058px;}
.y80_c01066{bottom:686.203854px;}
.y7f_c01066{bottom:686.905443px;}
.y7e_c01066{bottom:687.796311px;}
.y7d_c01066{bottom:689.341479px;}
.y7c_c01066{bottom:689.793180px;}
.y7b_c01066{bottom:690.669048px;}
.y7a_c01066{bottom:691.564125px;}
.y79_c01066{bottom:693.558285px;}
.y78_c01066{bottom:693.994209px;}
.y77_c01066{bottom:695.324013px;}
.y76_c01066{bottom:696.640938px;}
.y75_c01066{bottom:697.964559px;}
.y74_c01066{bottom:698.615847px;}
.y73_c01066{bottom:699.287352px;}
.y72_c01066{bottom:721.596618px;}
.y71_c01066{bottom:722.541552px;}
.y70_c01066{bottom:722.874696px;}
.y6f_c01066{bottom:724.142055px;}
.y6e_c01066{bottom:724.669572px;}
.y6d_c01066{bottom:725.200092px;}
.y6c_c01066{bottom:725.558916px;}
.y6b_c01066{bottom:726.096039px;}
.y6a_c01066{bottom:726.801267px;}
.y69_c01066{bottom:727.486674px;}
.y68_c01066{bottom:728.380029px;}
.y67_c01066{bottom:730.855893px;}
.y66_c01066{bottom:732.272754px;}
.y65_c01066{bottom:732.790791px;}
.y64_c01066{bottom:733.308954px;}
.y63_c01066{bottom:760.988139px;}
.y62_c01066{bottom:761.486310px;}
.y61_c01066{bottom:761.980470px;}
.y60_c01066{bottom:763.316916px;}
.y5f_c01066{bottom:764.985507px;}
.y5e_c01066{bottom:766.123557px;}
.y5d_c01066{bottom:766.456941px;}
.y5c_c01066{bottom:768.104775px;}
.y5b_c01066{bottom:768.598431px;}
.y5a_c01066{bottom:769.275300px;}
.y59_c01066{bottom:769.761228px;}
.y58_c01066{bottom:770.571081px;}
.y57_c01066{bottom:797.249985px;}
.y56_c01066{bottom:797.815317px;}
.y55_c01066{bottom:798.119715px;}
.y54_c01066{bottom:799.119339px;}
.y53_c01066{bottom:799.995096px;}
.y52_c01066{bottom:800.433243px;}
.y51_c01066{bottom:801.002208px;}
.y50_c01066{bottom:801.566700px;}
.y4f_c01066{bottom:802.276827px;}
.y4e_c01066{bottom:802.581267px;}
.y4d_c01066{bottom:803.571315px;}
.y4c_c01066{bottom:804.438714px;}
.y4b_c01066{bottom:804.861687px;}
.y4a_c01066{bottom:830.644035px;}
.y49_c01066{bottom:832.383657px;}
.y48_c01066{bottom:832.940571px;}
.y47_c01066{bottom:833.470776px;}
.y46_c01066{bottom:834.875700px;}
.y45_c01066{bottom:835.419606px;}
.y44_c01066{bottom:836.466735px;}
.y43_c01066{bottom:837.544971px;}
.y42_c01066{bottom:838.240467px;}
.y41_c01066{bottom:839.485443px;}
.y40_c01066{bottom:840.021537px;}
.y3f_c01066{bottom:841.583994px;}
.y3e_c01066{bottom:866.364768px;}
.y3d_c01066{bottom:866.996397px;}
.y3c_c01066{bottom:867.838632px;}
.y3b_c01066{bottom:868.467690px;}
.y3a_c01066{bottom:869.493837px;}
.y39_c01066{bottom:870.993252px;}
.y38_c01066{bottom:872.226426px;}
.y37_c01066{bottom:873.296283px;}
.y36_c01066{bottom:874.968042px;}
.y35_c01066{bottom:876.420660px;}
.y34_c01066{bottom:901.845072px;}
.y33_c01066{bottom:902.635281px;}
.y32_c01066{bottom:903.724194px;}
.y31_c01066{bottom:904.351779px;}
.y30_c01066{bottom:905.289387px;}
.y2f_c01066{bottom:906.510684px;}
.y2e_c01066{bottom:908.056452px;}
.y2d_c01066{bottom:908.525382px;}
.y2c_c01066{bottom:909.288858px;}
.y2b_c01066{bottom:910.064052px;}
.y2a_c01066{bottom:910.524792px;}
.y29_c01066{bottom:910.981500px;}
.y28_c01066{bottom:939.684008px;}
.y27_c01066{bottom:940.116342px;}
.y26_c01066{bottom:940.534266px;}
.y25_c01066{bottom:940.987114px;}
.y24_c01066{bottom:942.282421px;}
.y23_c01066{bottom:943.728775px;}
.y22_c01066{bottom:944.311065px;}
.y21_c01066{bottom:944.732187px;}
.y20_c01066{bottom:945.297336px;}
.y1f_c01066{bottom:946.463280px;}
.y1e_c01066{bottom:946.891500px;}
.y1d_c01066{bottom:982.255500px;}
.y1c_c01066{bottom:1008.994056px;}
.y1b_c01066{bottom:1009.572156px;}
.y1a_c01066{bottom:1010.769048px;}
.y19_c01066{bottom:1011.590964px;}
.y18_c01066{bottom:1012.981176px;}
.y17_c01066{bottom:1014.574992px;}
.y16_c01066{bottom:1015.367220px;}
.y15_c01066{bottom:1017.569592px;}
.y14_c01066{bottom:1018.531476px;}
.y13_c01066{bottom:1019.120268px;}
.y12_c01066{bottom:1020.326976px;}
.y11_c01066{bottom:1044.742164px;}
.y10_c01066{bottom:1045.753080px;}
.yf_c01066{bottom:1046.350656px;}
.ye_c01066{bottom:1048.323912px;}
.yd_c01066{bottom:1049.932572px;}
.yc_c01066{bottom:1051.355928px;}
.yb_c01066{bottom:1052.899920px;}
.ya_c01066{bottom:1053.537252px;}
.y9_c01066{bottom:1100.970660px;}
.y8_c01066{bottom:1103.306796px;}
.y7_c01066{bottom:1104.262644px;}
.y6_c01066{bottom:1104.571500px;}
.y5_c01066{bottom:1128.480920px;}
.y4_c01066{bottom:1129.825739px;}
.y3_c01066{bottom:1130.372025px;}
.y2_c01066{bottom:1131.327000px;}
.y1_c01066{bottom:1200.286500px;}
.h6_c01066{height:42.000000px;}
.h11_c01066{height:48.014998px;}
.h9_c01066{height:66.006468px;}
.h4_c01066{height:66.008447px;}
.h3_c01066{height:66.009536px;}
.he_c01066{height:66.013199px;}
.h2_c01066{height:72.000000px;}
.h7_c01066{height:72.006084px;}
.h8_c01066{height:72.007056px;}
.h5_c01066{height:72.009215px;}
.hb_c01066{height:72.012995px;}
.hc_c01066{height:72.014399px;}
.ha_c01066{height:78.007644px;}
.h10_c01066{height:78.009983px;}
.hf_c01066{height:78.015598px;}
.hd_c01066{height:84.016798px;}
.h0_c01066{height:1246.320000px;}
.h1_c01066{height:1246.500000px;}
.w0_c01066{width:900.450000px;}
.w1_c01066{width:900.750000px;}
.x0_c01066{left:0.000000px;}
.xb7_c01066{left:7.711500px;}
.x8_c01066{left:108.672000px;}
.x9_c01066{left:127.975500px;}
.x13_c01066{left:156.275616px;}
.xcd_c01066{left:158.023920px;}
.xa0_c01066{left:159.841071px;}
.x8c_c01066{left:161.513643px;}
.x65_c01066{left:162.774249px;}
.x45_c01066{left:164.799897px;}
.x29_c01066{left:165.906000px;}
.x1e_c01066{left:167.400000px;}
.xa_c01066{left:187.716000px;}
.x1f_c01066{left:189.270000px;}
.xb8_c01066{left:192.364500px;}
.x8d_c01066{left:194.099451px;}
.x46_c01066{left:197.369859px;}
.x2a_c01066{left:198.528000px;}
.xd5_c01066{left:202.153350px;}
.x79_c01066{left:206.671500px;}
.xaa_c01066{left:215.198514px;}
.x81_c01066{left:217.196082px;}
.x50_c01066{left:219.637833px;}
.x14_c01066{left:223.348980px;}
.xc2_c01066{left:224.692650px;}
.x59_c01066{left:229.005933px;}
.x2b_c01066{left:231.438000px;}
.xb9_c01066{left:236.301000px;}
.x82_c01066{left:240.095082px;}
.xdd_c01066{left:244.802640px;}
.xb0_c01066{left:247.296690px;}
.x51_c01066{left:251.989371px;}
.x15_c01066{left:256.022424px;}
.x7a_c01066{left:261.963000px;}
.x3c_c01066{left:263.036289px;}
.x47_c01066{left:264.149304px;}
.xc6_c01066{left:267.559500px;}
.xc3_c01066{left:268.981050px;}
.x8e_c01066{left:271.017912px;}
.x20_c01066{left:275.497500px;}
.xc_c01066{left:276.539124px;}
.xd6_c01066{left:277.808850px;}
.xa1_c01066{left:281.578545px;}
.x2c_c01066{left:286.809000px;}
.xcf_c01066{left:288.237150px;}
.xba_c01066{left:291.100500px;}
.xb1_c01066{left:292.648389px;}
.x66_c01066{left:295.114140px;}
.x3d_c01066{left:296.506344px;}
.x71_c01066{left:306.183000px;}
.x21_c01066{left:308.437500px;}
.x16_c01066{left:309.482220px;}
.x4_c01066{left:311.076000px;}
.xc4_c01066{left:312.184920px;}
.xab_c01066{left:314.279970px;}
.x8f_c01066{left:316.385460px;}
.x5a_c01066{left:317.564955px;}
.xa2_c01066{left:324.618042px;}
.x83_c01066{left:326.493582px;}
.x7b_c01066{left:328.707000px;}
.x52_c01066{left:330.025779px;}
.xde_c01066{left:332.546640px;}
.xb_c01066{left:333.724500px;}
.x48_c01066{left:340.332375px;}
.x2d_c01066{left:341.343000px;}
.xd7_c01066{left:343.903530px;}
.x99_c01066{left:346.692636px;}
.x35_c01066{left:352.935561px;}
.xe7_c01066{left:354.981000px;}
.xce_c01066{left:356.591550px;}
.xa3_c01066{left:358.004211px;}
.x84_c01066{left:359.073582px;}
.x67_c01066{left:360.996117px;}
.x49_c01066{left:363.792711px;}
.xe2_c01066{left:365.611500px;}
.x5_c01066{left:367.251000px;}
.x7c_c01066{left:371.332500px;}
.x2e_c01066{left:374.838000px;}
.xdf_c01066{left:376.300140px;}
.xd8_c01066{left:378.455340px;}
.xe8_c01066{left:386.022000px;}
.xd0_c01066{left:388.491600px;}
.xa4_c01066{left:392.617296px;}
.x72_c01066{left:394.218000px;}
.xd_c01066{left:397.774260px;}
.x6_c01066{left:399.385500px;}
.x90_c01066{left:403.070976px;}
.x85_c01066{left:415.356582px;}
.x3e_c01066{left:417.750942px;}
.xe9_c01066{left:419.518500px;}
.xc7_c01066{left:422.034000px;}
.x1_c01066{left:423.900000px;}
.x9a_c01066{left:425.333634px;}
.x68_c01066{left:427.476531px;}
.x17_c01066{left:431.845308px;}
.x91_c01066{left:436.286721px;}
.x53_c01066{left:439.905246px;}
.x22_c01066{left:441.598500px;}
.xd1_c01066{left:443.216340px;}
.x2_c01066{left:445.500000px;}
.x69_c01066{left:449.290704px;}
.xe3_c01066{left:453.676500px;}
.xc8_c01066{left:455.248500px;}
.xbb_c01066{left:456.966000px;}
.x73_c01066{left:459.112500px;}
.x4a_c01066{left:461.802576px;}
.xe0_c01066{left:464.086140px;}
.x9b_c01066{left:469.286568px;}
.x5b_c01066{left:472.336629px;}
.x23_c01066{left:473.992500px;}
.x18_c01066{left:475.826892px;}
.xe_c01066{left:476.887740px;}
.x7_c01066{left:478.492500px;}
.xa5_c01066{left:482.351517px;}
.x2f_c01066{left:485.250000px;}
.xe4_c01066{left:486.355500px;}
.x3_c01066{left:490.320000px;}
.x36_c01066{left:497.219460px;}
.x92_c01066{left:502.425732px;}
.x4b_c01066{left:505.550685px;}
.xb2_c01066{left:511.628493px;}
.x74_c01066{left:514.972500px;}
.x24_c01066{left:518.784000px;}
.xc5_c01066{left:522.822150px;}
.xa6_c01066{left:524.051598px;}
.x86_c01066{left:525.524082px;}
.x5c_c01066{left:528.217575px;}
.xe1_c01066{left:530.314140px;}
.xc9_c01066{left:531.945000px;}
.x93_c01066{left:535.422498px;}
.x54_c01066{left:537.934860px;}
.x4c_c01066{left:539.311668px;}
.xe5_c01066{left:543.892500px;}
.x7d_c01066{left:547.936500px;}
.x6a_c01066{left:548.972325px;}
.x3f_c01066{left:550.594725px;}
.xd2_c01066{left:553.733640px;}
.x9c_c01066{left:557.028915px;}
.xa7_c01066{left:558.612183px;}
.x37_c01066{left:562.155924px;}
.x19_c01066{left:564.375060px;}
.xf_c01066{left:566.269884px;}
.xb3_c01066{left:567.857268px;}
.x5d_c01066{left:571.066878px;}
.x30_c01066{left:572.485500px;}
.xd9_c01066{left:576.184380px;}
.x40_c01066{left:584.622780px;}
.xd3_c01066{left:587.410740px;}
.x94_c01066{left:590.719080px;}
.x6b_c01066{left:593.724066px;}
.x9d_c01066{left:600.834849px;}
.xac_c01066{left:602.401842px;}
.x75_c01066{left:603.804000px;}
.x4d_c01066{left:606.688113px;}
.xbc_c01066{left:611.029500px;}
.x87_c01066{left:613.277082px;}
.x5e_c01066{left:615.117639px;}
.xa8_c01066{left:623.212668px;}
.x95_c01066{left:624.750741px;}
.x25_c01066{left:630.042000px;}
.xda_c01066{left:631.819770px;}
.x9e_c01066{left:634.540497px;}
.x6c_c01066{left:637.532391px;}
.x31_c01066{left:639.457500px;}
.x1a_c01066{left:641.604588px;}
.xca_c01066{left:643.222500px;}
.x88_c01066{left:648.168582px;}
.x55_c01066{left:649.189806px;}
.x96_c01066{left:657.954486px;}
.x6d_c01066{left:660.152001px;}
.xdb_c01066{left:664.240110px;}
.xbd_c01066{left:667.092000px;}
.x5f_c01066{left:671.076564px;}
.x41_c01066{left:672.436323px;}
.x10_c01066{left:675.907380px;}
.xb4_c01066{left:678.787944px;}
.x89_c01066{left:680.159082px;}
.x32_c01066{left:684.285000px;}
.x1b_c01066{left:687.254124px;}
.xad_c01066{left:689.654949px;}
.x97_c01066{left:691.198731px;}
.x38_c01066{left:695.079621px;}
.xbe_c01066{left:701.131500px;}
.x60_c01066{left:704.255640px;}
.x42_c01066{left:705.592899px;}
.x4e_c01066{left:707.012520px;}
.x11_c01066{left:709.129824px;}
.x7e_c01066{left:714.882000px;}
.x39_c01066{left:728.224311px;}
.x26_c01066{left:729.681000px;}
.xd4_c01066{left:731.987640px;}
.xae_c01066{left:735.309387px;}
.x61_c01066{left:737.220216px;}
.x56_c01066{left:738.327567px;}
.x43_c01066{left:740.442933px;}
.xe6_c01066{left:741.954000px;}
.xcb_c01066{left:743.508000px;}
.xbf_c01066{left:745.165500px;}
.x8a_c01066{left:747.032082px;}
.x4f_c01066{left:750.501129px;}
.x1c_c01066{left:753.713988px;}
.x98_c01066{left:757.636221px;}
.x76_c01066{left:759.337500px;}
.x33_c01066{left:762.064500px;}
.x12_c01066{left:765.279024px;}
.xb5_c01066{left:767.192010px;}
.xc0_c01066{left:768.871500px;}
.x57_c01066{left:771.267105px;}
.x3a_c01066{left:772.523703px;}
.x6e_c01066{left:781.965774px;}
.x1d_c01066{left:785.812956px;}
.xaf_c01066{left:789.586842px;}
.xb6_c01066{left:790.626036px;}
.x7f_c01066{left:792.082500px;}
.x77_c01066{left:793.417500px;}
.x27_c01066{left:796.663500px;}
.x9f_c01066{left:801.520800px;}
.x8b_c01066{left:803.475582px;}
.x58_c01066{left:804.493143px;}
.x3b_c01066{left:805.744872px;}
.x62_c01066{left:816.386490px;}
.x34_c01066{left:818.508000px;}
.xc1_c01066{left:823.174500px;}
.x80_c01066{left:826.107000px;}
.x28_c01066{left:829.920000px;}
.xa9_c01066{left:833.014989px;}
.xcc_c01066{left:834.555000px;}
.x78_c01066{left:835.609500px;}
.x63_c01066{left:837.181902px;}
.xdc_c01066{left:842.286540px;}
.x44_c01066{left:849.162888px;}
.x6f_c01066{left:851.987394px;}
.x70_c01066{left:887.189433px;}
.x64_c01066{left:896.211243px;}
@media print{
.v0_c01066{vertical-align:0.000000pt;}
.ls0_c01066{letter-spacing:0.000000pt;}
.ws0_c01066{word-spacing:0.000000pt;}
._0_c01066{width:30.751909pt;}
.fs4_c01066{font-size:37.333333pt;}
.fsf_c01066{font-size:42.679998pt;}
.fs7_c01066{font-size:58.672416pt;}
.fs2_c01066{font-size:58.674176pt;}
.fs1_c01066{font-size:58.675143pt;}
.fsc_c01066{font-size:58.678399pt;}
.fs0_c01066{font-size:64.000000pt;}
.fs5_c01066{font-size:64.005408pt;}
.fs6_c01066{font-size:64.006272pt;}
.fs3_c01066{font-size:64.008191pt;}
.fs9_c01066{font-size:64.011551pt;}
.fsa_c01066{font-size:64.012799pt;}
.fs8_c01066{font-size:69.340128pt;}
.fse_c01066{font-size:69.342207pt;}
.fsd_c01066{font-size:69.347199pt;}
.fsb_c01066{font-size:74.681599pt;}
.y0_c01066{bottom:0.000000pt;}
.y14f_c01066{bottom:55.461533pt;}
.y14e_c01066{bottom:56.434567pt;}
.y14d_c01066{bottom:57.677367pt;}
.y14c_c01066{bottom:58.920467pt;}
.y14b_c01066{bottom:59.664400pt;}
.y14a_c01066{bottom:60.150833pt;}
.y149_c01066{bottom:60.895200pt;}
.y148_c01066{bottom:61.585000pt;}
.y147_c01066{bottom:63.361633pt;}
.y146_c01066{bottom:64.038667pt;}
.y145_c01066{bottom:65.286433pt;}
.y144_c01066{bottom:66.006667pt;}
.y143_c01066{bottom:104.261376pt;}
.y142_c01066{bottom:105.367829pt;}
.y141_c01066{bottom:105.693888pt;}
.y140_c01066{bottom:107.104768pt;}
.y13f_c01066{bottom:108.510763pt;}
.y13e_c01066{bottom:109.329067pt;}
.y13d_c01066{bottom:109.793835pt;}
.y13c_c01066{bottom:110.723371pt;}
.y13b_c01066{bottom:111.046315pt;}
.y13a_c01066{bottom:112.612885pt;}
.y139_c01066{bottom:113.073621pt;}
.y138_c01066{bottom:114.002667pt;}
.y137_c01066{bottom:133.913573pt;}
.y136_c01066{bottom:135.301947pt;}
.y135_c01066{bottom:136.497093pt;}
.y134_c01066{bottom:137.092667pt;}
.y133_c01066{bottom:138.270053pt;}
.y132_c01066{bottom:138.846133pt;}
.y131_c01066{bottom:139.830693pt;}
.y130_c01066{bottom:140.608533pt;}
.y12f_c01066{bottom:142.168427pt;}
.y12e_c01066{bottom:143.736960pt;}
.y12d_c01066{bottom:163.599307pt;}
.y12c_c01066{bottom:165.666853pt;}
.y12b_c01066{bottom:166.923307pt;}
.y12a_c01066{bottom:167.529013pt;}
.y129_c01066{bottom:168.567440pt;}
.y128_c01066{bottom:169.398853pt;}
.y127_c01066{bottom:170.438987pt;}
.y126_c01066{bottom:171.048800pt;}
.y125_c01066{bottom:172.258693pt;}
.y124_c01066{bottom:172.903627pt;}
.y123_c01066{bottom:173.518827pt;}
.y122_c01066{bottom:174.137333pt;}
.y121_c01066{bottom:175.549013pt;}
.y120_c01066{bottom:176.383627pt;}
.y11f_c01066{bottom:197.399573pt;}
.y11e_c01066{bottom:198.516453pt;}
.y11d_c01066{bottom:200.996907pt;}
.y11c_c01066{bottom:201.835707pt;}
.y11b_c01066{bottom:203.767013pt;}
.y11a_c01066{bottom:204.587440pt;}
.y119_c01066{bottom:205.949813pt;}
.y118_c01066{bottom:206.765573pt;}
.y117_c01066{bottom:208.445733pt;}
.y116_c01066{bottom:209.747333pt;}
.y115_c01066{bottom:211.675947pt;}
.y114_c01066{bottom:230.390960pt;}
.y113_c01066{bottom:232.781840pt;}
.y112_c01066{bottom:234.441200pt;}
.y111_c01066{bottom:236.756480pt;}
.y110_c01066{bottom:238.883200pt;}
.y10f_c01066{bottom:239.838427pt;}
.y10e_c01066{bottom:241.716213pt;}
.y10d_c01066{bottom:243.118907pt;}
.y10c_c01066{bottom:262.085413pt;}
.y10b_c01066{bottom:263.282293pt;}
.y10a_c01066{bottom:263.704027pt;}
.y109_c01066{bottom:265.486880pt;}
.y108_c01066{bottom:267.465147pt;}
.y107_c01066{bottom:268.828640pt;}
.y106_c01066{bottom:269.419120pt;}
.y105_c01066{bottom:271.358613pt;}
.y104_c01066{bottom:272.165333pt;}
.y103_c01066{bottom:298.652720pt;}
.y102_c01066{bottom:299.765493pt;}
.y101_c01066{bottom:300.723013pt;}
.y100_c01066{bottom:301.274640pt;}
.yff_c01066{bottom:302.209307pt;}
.yfe_c01066{bottom:302.938693pt;}
.yfd_c01066{bottom:303.686027pt;}
.yfc_c01066{bottom:304.797067pt;}
.yfb_c01066{bottom:324.385547pt;}
.yfa_c01066{bottom:325.350933pt;}
.yf9_c01066{bottom:325.772373pt;}
.yf8_c01066{bottom:326.300373pt;}
.yf7_c01066{bottom:326.555200pt;}
.yf6_c01066{bottom:327.160347pt;}
.yf5_c01066{bottom:328.157013pt;}
.yf4_c01066{bottom:329.720640pt;}
.yf3_c01066{bottom:330.895920pt;}
.yf2_c01066{bottom:331.487253pt;}
.yf1_c01066{bottom:332.481413pt;}
.yf0_c01066{bottom:333.259147pt;}
.yef_c01066{bottom:333.844640pt;}
.yee_c01066{bottom:334.818853pt;}
.yed_c01066{bottom:335.599947pt;}
.yec_c01066{bottom:336.186187pt;}
.yeb_c01066{bottom:338.882667pt;}
.yea_c01066{bottom:355.279875pt;}
.ye9_c01066{bottom:355.696856pt;}
.ye8_c01066{bottom:357.269088pt;}
.ye7_c01066{bottom:358.646928pt;}
.ye6_c01066{bottom:359.241675pt;}
.ye5_c01066{bottom:360.241469pt;}
.ye4_c01066{bottom:360.831261pt;}
.ye3_c01066{bottom:362.188603pt;}
.ye2_c01066{bottom:364.134784pt;}
.ye1_c01066{bottom:364.940541pt;}
.ye0_c01066{bottom:365.526499pt;}
.ydf_c01066{bottom:366.465981pt;}
.yde_c01066{bottom:387.388755pt;}
.ydd_c01066{bottom:388.080565pt;}
.ydc_c01066{bottom:388.949389pt;}
.ydb_c01066{bottom:389.680232pt;}
.yda_c01066{bottom:391.076776pt;}
.yd9_c01066{bottom:391.807488pt;}
.yd8_c01066{bottom:392.334611pt;}
.yd7_c01066{bottom:393.738667pt;}
.yd6_c01066{bottom:395.181019pt;}
.yd5_c01066{bottom:395.686493pt;}
.yd4_c01066{bottom:397.271576pt;}
.yd3_c01066{bottom:398.147912pt;}
.yd2_c01066{bottom:418.222139pt;}
.yd1_c01066{bottom:419.672195pt;}
.yd0_c01066{bottom:421.765195pt;}
.ycf_c01066{bottom:422.855835pt;}
.yce_c01066{bottom:423.439285pt;}
.ycd_c01066{bottom:424.143589pt;}
.ycc_c01066{bottom:425.130376pt;}
.ycb_c01066{bottom:425.659027pt;}
.yca_c01066{bottom:426.243131pt;}
.yc9_c01066{bottom:426.806632pt;}
.yc8_c01066{bottom:427.532939pt;}
.yc7_c01066{bottom:429.589333pt;}
.yc6_c01066{bottom:452.010880pt;}
.yc5_c01066{bottom:452.608728pt;}
.yc4_c01066{bottom:453.357120pt;}
.yc3_c01066{bottom:454.483451pt;}
.yc2_c01066{bottom:455.429517pt;}
.yc1_c01066{bottom:455.998328pt;}
.yc0_c01066{bottom:456.738173pt;}
.ybf_c01066{bottom:457.649408pt;}
.ybe_c01066{bottom:458.220821pt;}
.ybd_c01066{bottom:458.962496pt;}
.ybc_c01066{bottom:460.290541pt;}
.ybb_c01066{bottom:462.858184pt;}
.yba_c01066{bottom:463.431296pt;}
.yb9_c01066{bottom:482.377816pt;}
.yb8_c01066{bottom:483.028701pt;}
.yb7_c01066{bottom:484.268893pt;}
.yb6_c01066{bottom:484.889307pt;}
.yb5_c01066{bottom:485.509216pt;}
.yb4_c01066{bottom:486.144763pt;}
.yb3_c01066{bottom:487.176965pt;}
.yb2_c01066{bottom:487.792965pt;}
.yb1_c01066{bottom:489.028109pt;}
.yb0_c01066{bottom:489.648168pt;}
.yaf_c01066{bottom:491.265693pt;}
.yae_c01066{bottom:492.112989pt;}
.yad_c01066{bottom:493.548957pt;}
.yac_c01066{bottom:494.157176pt;}
.yab_c01066{bottom:517.853192pt;}
.yaa_c01066{bottom:518.555600pt;}
.ya9_c01066{bottom:519.387797pt;}
.ya8_c01066{bottom:519.785901pt;}
.ya7_c01066{bottom:520.220107pt;}
.ya6_c01066{bottom:521.312144pt;}
.ya5_c01066{bottom:522.269315pt;}
.ya4_c01066{bottom:522.683117pt;}
.ya3_c01066{bottom:523.383528pt;}
.ya2_c01066{bottom:523.788968pt;}
.ya1_c01066{bottom:524.864149pt;}
.ya0_c01066{bottom:525.149115pt;}
.y9f_c01066{bottom:525.838325pt;}
.y9e_c01066{bottom:549.255099pt;}
.y9d_c01066{bottom:549.678515pt;}
.y9c_c01066{bottom:550.088584pt;}
.y9b_c01066{bottom:550.639232pt;}
.y9a_c01066{bottom:551.886744pt;}
.y99_c01066{bottom:552.716776pt;}
.y98_c01066{bottom:553.129645pt;}
.y97_c01066{bottom:553.815627pt;}
.y96_c01066{bottom:554.914515pt;}
.y95_c01066{bottom:555.444965pt;}
.y94_c01066{bottom:556.275557pt;}
.y93_c01066{bottom:556.695427pt;}
.y92_c01066{bottom:556.963629pt;}
.y91_c01066{bottom:557.521333pt;}
.y90_c01066{bottom:577.624192pt;}
.y8f_c01066{bottom:578.336768pt;}
.y8e_c01066{bottom:578.912341pt;}
.y8d_c01066{bottom:579.276204pt;}
.y8c_c01066{bottom:580.394417pt;}
.y8b_c01066{bottom:580.959756pt;}
.y8a_c01066{bottom:581.539129pt;}
.y89_c01066{bottom:583.039395pt;}
.y88_c01066{bottom:583.982808pt;}
.y87_c01066{bottom:584.507943pt;}
.y86_c01066{bottom:585.078804pt;}
.y85_c01066{bottom:586.565617pt;}
.y84_c01066{bottom:587.869803pt;}
.y83_c01066{bottom:588.964000pt;}
.y82_c01066{bottom:608.711723pt;}
.y81_c01066{bottom:609.337829pt;}
.y80_c01066{bottom:609.958981pt;}
.y7f_c01066{bottom:610.582616pt;}
.y7e_c01066{bottom:611.374499pt;}
.y7d_c01066{bottom:612.747981pt;}
.y7c_c01066{bottom:613.149493pt;}
.y7b_c01066{bottom:613.928043pt;}
.y7a_c01066{bottom:614.723667pt;}
.y79_c01066{bottom:616.496253pt;}
.y78_c01066{bottom:616.883741pt;}
.y77_c01066{bottom:618.065789pt;}
.y76_c01066{bottom:619.236389pt;}
.y75_c01066{bottom:620.412941pt;}
.y74_c01066{bottom:620.991864pt;}
.y73_c01066{bottom:621.588757pt;}
.y72_c01066{bottom:641.419216pt;}
.y71_c01066{bottom:642.259157pt;}
.y70_c01066{bottom:642.555285pt;}
.y6f_c01066{bottom:643.681827pt;}
.y6e_c01066{bottom:644.150731pt;}
.y6d_c01066{bottom:644.622304pt;}
.y6c_c01066{bottom:644.941259pt;}
.y6b_c01066{bottom:645.418701pt;}
.y6a_c01066{bottom:646.045571pt;}
.y69_c01066{bottom:646.654821pt;}
.y68_c01066{bottom:647.448915pt;}
.y67_c01066{bottom:649.649683pt;}
.y66_c01066{bottom:650.909115pt;}
.y65_c01066{bottom:651.369592pt;}
.y64_c01066{bottom:651.830181pt;}
.y63_c01066{bottom:676.433901pt;}
.y62_c01066{bottom:676.876720pt;}
.y61_c01066{bottom:677.315973pt;}
.y60_c01066{bottom:678.503925pt;}
.y5f_c01066{bottom:679.987117pt;}
.y5e_c01066{bottom:680.998717pt;}
.y5d_c01066{bottom:681.295059pt;}
.y5c_c01066{bottom:682.759800pt;}
.y5b_c01066{bottom:683.198605pt;}
.y5a_c01066{bottom:683.800267pt;}
.y59_c01066{bottom:684.232203pt;}
.y58_c01066{bottom:684.952072pt;}
.y57_c01066{bottom:708.666653pt;}
.y56_c01066{bottom:709.169171pt;}
.y55_c01066{bottom:709.439747pt;}
.y54_c01066{bottom:710.328301pt;}
.y53_c01066{bottom:711.106752pt;}
.y52_c01066{bottom:711.496216pt;}
.y51_c01066{bottom:712.001963pt;}
.y50_c01066{bottom:712.503733pt;}
.y4f_c01066{bottom:713.134957pt;}
.y4e_c01066{bottom:713.405571pt;}
.y4d_c01066{bottom:714.285613pt;}
.y4c_c01066{bottom:715.056635pt;}
.y4b_c01066{bottom:715.432611pt;}
.y4a_c01066{bottom:738.350253pt;}
.y49_c01066{bottom:739.896584pt;}
.y48_c01066{bottom:740.391619pt;}
.y47_c01066{bottom:740.862912pt;}
.y46_c01066{bottom:742.111733pt;}
.y45_c01066{bottom:742.595205pt;}
.y44_c01066{bottom:743.525987pt;}
.y43_c01066{bottom:744.484419pt;}
.y42_c01066{bottom:745.102637pt;}
.y41_c01066{bottom:746.209283pt;}
.y40_c01066{bottom:746.685811pt;}
.y3f_c01066{bottom:748.074661pt;}
.y3e_c01066{bottom:770.102016pt;}
.y3d_c01066{bottom:770.663464pt;}
.y3c_c01066{bottom:771.412117pt;}
.y3b_c01066{bottom:771.971280pt;}
.y3a_c01066{bottom:772.883411pt;}
.y39_c01066{bottom:774.216224pt;}
.y38_c01066{bottom:775.312379pt;}
.y37_c01066{bottom:776.263363pt;}
.y36_c01066{bottom:777.749371pt;}
.y35_c01066{bottom:779.040587pt;}
.y34_c01066{bottom:801.640064pt;}
.y33_c01066{bottom:802.342472pt;}
.y32_c01066{bottom:803.310395pt;}
.y31_c01066{bottom:803.868248pt;}
.y30_c01066{bottom:804.701677pt;}
.y2f_c01066{bottom:805.787275pt;}
.y2e_c01066{bottom:807.161291pt;}
.y2d_c01066{bottom:807.578117pt;}
.y2c_c01066{bottom:808.256763pt;}
.y2b_c01066{bottom:808.945824pt;}
.y2a_c01066{bottom:809.355371pt;}
.y29_c01066{bottom:809.761333pt;}
.y28_c01066{bottom:835.274673pt;}
.y27_c01066{bottom:835.658971pt;}
.y26_c01066{bottom:836.030459pt;}
.y25_c01066{bottom:836.432991pt;}
.y24_c01066{bottom:837.584375pt;}
.y23_c01066{bottom:838.870023pt;}
.y22_c01066{bottom:839.387613pt;}
.y21_c01066{bottom:839.761944pt;}
.y20_c01066{bottom:840.264299pt;}
.y1f_c01066{bottom:841.300693pt;}
.y1e_c01066{bottom:841.681333pt;}
.y1d_c01066{bottom:873.116000pt;}
.y1c_c01066{bottom:896.883605pt;}
.y1b_c01066{bottom:897.397472pt;}
.y1a_c01066{bottom:898.461376pt;}
.y19_c01066{bottom:899.191968pt;}
.y18_c01066{bottom:900.427712pt;}
.y17_c01066{bottom:901.844437pt;}
.y16_c01066{bottom:902.548640pt;}
.y15_c01066{bottom:904.506304pt;}
.y14_c01066{bottom:905.361312pt;}
.y13_c01066{bottom:905.884683pt;}
.y12_c01066{bottom:906.957312pt;}
.y11_c01066{bottom:928.659701pt;}
.y10_c01066{bottom:929.558293pt;}
.yf_c01066{bottom:930.089472pt;}
.ye_c01066{bottom:931.843477pt;}
.yd_c01066{bottom:933.273397pt;}
.yc_c01066{bottom:934.538603pt;}
.yb_c01066{bottom:935.911040pt;}
.ya_c01066{bottom:936.477557pt;}
.y9_c01066{bottom:978.640587pt;}
.y8_c01066{bottom:980.717152pt;}
.y7_c01066{bottom:981.566795pt;}
.y6_c01066{bottom:981.841333pt;}
.y5_c01066{bottom:1003.094151pt;}
.y4_c01066{bottom:1004.289545pt;}
.y3_c01066{bottom:1004.775133pt;}
.y2_c01066{bottom:1005.624000pt;}
.y1_c01066{bottom:1066.921333pt;}
.h6_c01066{height:37.333333pt;}
.h11_c01066{height:42.679998pt;}
.h9_c01066{height:58.672416pt;}
.h4_c01066{height:58.674176pt;}
.h3_c01066{height:58.675143pt;}
.he_c01066{height:58.678399pt;}
.h2_c01066{height:64.000000pt;}
.h7_c01066{height:64.005408pt;}
.h8_c01066{height:64.006272pt;}
.h5_c01066{height:64.008191pt;}
.hb_c01066{height:64.011551pt;}
.hc_c01066{height:64.012799pt;}
.ha_c01066{height:69.340128pt;}
.h10_c01066{height:69.342207pt;}
.hf_c01066{height:69.347199pt;}
.hd_c01066{height:74.681599pt;}
.h0_c01066{height:1107.840000pt;}
.h1_c01066{height:1108.000000pt;}
.w0_c01066{width:800.400000pt;}
.w1_c01066{width:800.666667pt;}
.x0_c01066{left:0.000000pt;}
.xb7_c01066{left:6.854667pt;}
.x8_c01066{left:96.597333pt;}
.x9_c01066{left:113.756000pt;}
.x13_c01066{left:138.911659pt;}
.xcd_c01066{left:140.465707pt;}
.xa0_c01066{left:142.080952pt;}
.x8c_c01066{left:143.567683pt;}
.x65_c01066{left:144.688221pt;}
.x45_c01066{left:146.488797pt;}
.x29_c01066{left:147.472000pt;}
.x1e_c01066{left:148.800000pt;}
.xa_c01066{left:166.858667pt;}
.x1f_c01066{left:168.240000pt;}
.xb8_c01066{left:170.990667pt;}
.x8d_c01066{left:172.532845pt;}
.x46_c01066{left:175.439875pt;}
.x2a_c01066{left:176.469333pt;}
.xd5_c01066{left:179.691867pt;}
.x79_c01066{left:183.708000pt;}
.xaa_c01066{left:191.287568pt;}
.x81_c01066{left:193.063184pt;}
.x50_c01066{left:195.233629pt;}
.x14_c01066{left:198.532427pt;}
.xc2_c01066{left:199.726800pt;}
.x59_c01066{left:203.560829pt;}
.x2b_c01066{left:205.722667pt;}
.xb9_c01066{left:210.045333pt;}
.x82_c01066{left:213.417851pt;}
.xdd_c01066{left:217.602347pt;}
.xb0_c01066{left:219.819280pt;}
.x51_c01066{left:223.990552pt;}
.x15_c01066{left:227.575488pt;}
.x7a_c01066{left:232.856000pt;}
.x3c_c01066{left:233.810035pt;}
.x47_c01066{left:234.799381pt;}
.xc6_c01066{left:237.830667pt;}
.xc3_c01066{left:239.094267pt;}
.x8e_c01066{left:240.904811pt;}
.x20_c01066{left:244.886667pt;}
.xc_c01066{left:245.812555pt;}
.xd6_c01066{left:246.941200pt;}
.xa1_c01066{left:250.292040pt;}
.x2c_c01066{left:254.941333pt;}
.xcf_c01066{left:256.210800pt;}
.xba_c01066{left:258.756000pt;}
.xb1_c01066{left:260.131901pt;}
.x66_c01066{left:262.323680pt;}
.x3d_c01066{left:263.561195pt;}
.x71_c01066{left:272.162667pt;}
.x21_c01066{left:274.166667pt;}
.x16_c01066{left:275.095307pt;}
.x4_c01066{left:276.512000pt;}
.xc4_c01066{left:277.497707pt;}
.xab_c01066{left:279.359973pt;}
.x8f_c01066{left:281.231520pt;}
.x5a_c01066{left:282.279960pt;}
.xa2_c01066{left:288.549371pt;}
.x83_c01066{left:290.216517pt;}
.x7b_c01066{left:292.184000pt;}
.x52_c01066{left:293.356248pt;}
.xde_c01066{left:295.597013pt;}
.xb_c01066{left:296.644000pt;}
.x48_c01066{left:302.517667pt;}
.x2d_c01066{left:303.416000pt;}
.xd7_c01066{left:305.692027pt;}
.x99_c01066{left:308.171232pt;}
.x35_c01066{left:313.720499pt;}
.xe7_c01066{left:315.538667pt;}
.xce_c01066{left:316.970267pt;}
.xa3_c01066{left:318.225965pt;}
.x84_c01066{left:319.176517pt;}
.x67_c01066{left:320.885437pt;}
.x49_c01066{left:323.371299pt;}
.xe2_c01066{left:324.988000pt;}
.x5_c01066{left:326.445333pt;}
.x7c_c01066{left:330.073333pt;}
.x2e_c01066{left:333.189333pt;}
.xdf_c01066{left:334.489013pt;}
.xd8_c01066{left:336.404747pt;}
.xe8_c01066{left:343.130667pt;}
.xd0_c01066{left:345.325867pt;}
.xa4_c01066{left:348.993152pt;}
.x72_c01066{left:350.416000pt;}
.xd_c01066{left:353.577120pt;}
.x6_c01066{left:355.009333pt;}
.x90_c01066{left:358.285312pt;}
.x85_c01066{left:369.205851pt;}
.x3e_c01066{left:371.334171pt;}
.xe9_c01066{left:372.905333pt;}
.xc7_c01066{left:375.141333pt;}
.x1_c01066{left:376.800000pt;}
.x9a_c01066{left:378.074341pt;}
.x68_c01066{left:379.979139pt;}
.x17_c01066{left:383.862496pt;}
.x91_c01066{left:387.810419pt;}
.x53_c01066{left:391.026885pt;}
.x22_c01066{left:392.532000pt;}
.xd1_c01066{left:393.970080pt;}
.x2_c01066{left:396.000000pt;}
.x69_c01066{left:399.369515pt;}
.xe3_c01066{left:403.268000pt;}
.xc8_c01066{left:404.665333pt;}
.xbb_c01066{left:406.192000pt;}
.x73_c01066{left:408.100000pt;}
.x4a_c01066{left:410.491179pt;}
.xe0_c01066{left:412.521013pt;}
.x9b_c01066{left:417.143616pt;}
.x5b_c01066{left:419.854781pt;}
.x23_c01066{left:421.326667pt;}
.x18_c01066{left:422.957237pt;}
.xe_c01066{left:423.900213pt;}
.x7_c01066{left:425.326667pt;}
.xa5_c01066{left:428.756904pt;}
.x2f_c01066{left:431.333333pt;}
.xe4_c01066{left:432.316000pt;}
.x3_c01066{left:435.840000pt;}
.x36_c01066{left:441.972853pt;}
.x92_c01066{left:446.600651pt;}
.x4b_c01066{left:449.378387pt;}
.xb2_c01066{left:454.780883pt;}
.x74_c01066{left:457.753333pt;}
.x24_c01066{left:461.141333pt;}
.xc5_c01066{left:464.730800pt;}
.xa6_c01066{left:465.823643pt;}
.x86_c01066{left:467.132517pt;}
.x5c_c01066{left:469.526733pt;}
.xe1_c01066{left:471.390347pt;}
.xc9_c01066{left:472.840000pt;}
.x93_c01066{left:475.931109pt;}
.x54_c01066{left:478.164320pt;}
.x4c_c01066{left:479.388149pt;}
.xe5_c01066{left:483.460000pt;}
.x7d_c01066{left:487.054667pt;}
.x6a_c01066{left:487.975400pt;}
.x3f_c01066{left:489.417533pt;}
.xd2_c01066{left:492.207680pt;}
.x9c_c01066{left:495.136813pt;}
.xa7_c01066{left:496.544163pt;}
.x37_c01066{left:499.694155pt;}
.x19_c01066{left:501.666720pt;}
.xf_c01066{left:503.351008pt;}
.xb3_c01066{left:504.762016pt;}
.x5d_c01066{left:507.615003pt;}
.x30_c01066{left:508.876000pt;}
.xd9_c01066{left:512.163893pt;}
.x40_c01066{left:519.664693pt;}
.xd3_c01066{left:522.142880pt;}
.x94_c01066{left:525.083627pt;}
.x6b_c01066{left:527.754725pt;}
.x9d_c01066{left:534.075421pt;}
.xac_c01066{left:535.468304pt;}
.x75_c01066{left:536.714667pt;}
.x4d_c01066{left:539.278323pt;}
.xbc_c01066{left:543.137333pt;}
.x87_c01066{left:545.135184pt;}
.x5e_c01066{left:546.771235pt;}
.xa8_c01066{left:553.966816pt;}
.x95_c01066{left:555.333992pt;}
.x25_c01066{left:560.037333pt;}
.xda_c01066{left:561.617573pt;}
.x9e_c01066{left:564.035997pt;}
.x6c_c01066{left:566.695459pt;}
.x31_c01066{left:568.406667pt;}
.x1a_c01066{left:570.315189pt;}
.xca_c01066{left:571.753333pt;}
.x88_c01066{left:576.149851pt;}
.x55_c01066{left:577.057605pt;}
.x96_c01066{left:584.848432pt;}
.x6d_c01066{left:586.801779pt;}
.xdb_c01066{left:590.435653pt;}
.xbd_c01066{left:592.970667pt;}
.x5f_c01066{left:596.512501pt;}
.x41_c01066{left:597.721176pt;}
.x10_c01066{left:600.806560pt;}
.xb4_c01066{left:603.367061pt;}
.x89_c01066{left:604.585851pt;}
.x32_c01066{left:608.253333pt;}
.x1b_c01066{left:610.892555pt;}
.xad_c01066{left:613.026621pt;}
.x97_c01066{left:614.398872pt;}
.x38_c01066{left:617.848552pt;}
.xbe_c01066{left:623.228000pt;}
.x60_c01066{left:626.005013pt;}
.x42_c01066{left:627.193688pt;}
.x4e_c01066{left:628.455573pt;}
.x11_c01066{left:630.337621pt;}
.x7e_c01066{left:635.450667pt;}
.x39_c01066{left:647.310499pt;}
.x26_c01066{left:648.605333pt;}
.xd4_c01066{left:650.655680pt;}
.xae_c01066{left:653.608344pt;}
.x61_c01066{left:655.306859pt;}
.x56_c01066{left:656.291171pt;}
.x43_c01066{left:658.171496pt;}
.xe6_c01066{left:659.514667pt;}
.xcb_c01066{left:660.896000pt;}
.xbf_c01066{left:662.369333pt;}
.x8a_c01066{left:664.028517pt;}
.x4f_c01066{left:667.112115pt;}
.x1c_c01066{left:669.967989pt;}
.x98_c01066{left:673.454419pt;}
.x76_c01066{left:674.966667pt;}
.x33_c01066{left:677.390667pt;}
.x12_c01066{left:680.248021pt;}
.xb5_c01066{left:681.948453pt;}
.xc0_c01066{left:683.441333pt;}
.x57_c01066{left:685.570760pt;}
.x3a_c01066{left:686.687736pt;}
.x6e_c01066{left:695.080688pt;}
.x1d_c01066{left:698.500405pt;}
.xaf_c01066{left:701.854971pt;}
.xb6_c01066{left:702.778699pt;}
.x7f_c01066{left:704.073333pt;}
.x77_c01066{left:705.260000pt;}
.x27_c01066{left:708.145333pt;}
.x9f_c01066{left:712.462933pt;}
.x8b_c01066{left:714.200517pt;}
.x58_c01066{left:715.105016pt;}
.x3b_c01066{left:716.217664pt;}
.x62_c01066{left:725.676880pt;}
.x34_c01066{left:727.562667pt;}
.xc1_c01066{left:731.710667pt;}
.x80_c01066{left:734.317333pt;}
.x28_c01066{left:737.706667pt;}
.xa9_c01066{left:740.457768pt;}
.xcc_c01066{left:741.826667pt;}
.x78_c01066{left:742.764000pt;}
.x63_c01066{left:744.161691pt;}
.xdc_c01066{left:748.699147pt;}
.x44_c01066{left:754.811456pt;}
.x6f_c01066{left:757.322128pt;}
.x70_c01066{left:788.612829pt;}
.x64_c01066{left:796.632216pt;}
}





/* 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_c01067 {
    display:none;
  }
  .loading-indicator_c01067.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01067 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_c01067 { 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_c01067" -> "#page-container .classname_c01067")
 */
.pf_c01067 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01067 { /* 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_c01067.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01067 { /* 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_c01067 { /* 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_c01067 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01067 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01067 {overflow:visible;}
  }
}
.c_c01067 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01067 { /* 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_c01067:after { /* webkit #35443 */
  content: '';
}
.t_c01067:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01067 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 */
}
.__c01067 { /* 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_c01067 { /* info for Javascript */
  display:none;
}
.l_c01067 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01067 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01067 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01067: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_c01067 {
    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_c01067.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01067.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_c01067 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01067{font-family:sans-serif;visibility:hidden;}
.sc__c01067{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01067{-webkit-text-stroke:0px transparent;}
}
.y0_c01067{bottom:0.000000px;}
.h0_c01067{height:1246.320000px;}
.h1_c01067{height:1246.500000px;}
.w0_c01067{width:900.450000px;}
.w1_c01067{width:900.750000px;}
.x0_c01067{left:0.000000px;}
@media print{
.y0_c01067{bottom:0.000000pt;}
.h0_c01067{height:1107.840000pt;}
.h1_c01067{height:1108.000000pt;}
.w0_c01067{width:800.400000pt;}
.w1_c01067{width:800.666667pt;}
.x0_c01067{left:0.000000pt;}
}





/* 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_c01068 {
    display:none;
  }
  .loading-indicator_c01068.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01068 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_c01068 { 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_c01068" -> "#page-container .classname_c01068")
 */
.pf_c01068 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01068 { /* 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_c01068.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01068 { /* 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_c01068 { /* 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_c01068 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01068 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01068 {overflow:visible;}
  }
}
.c_c01068 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01068 { /* 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_c01068:after { /* webkit #35443 */
  content: '';
}
.t_c01068:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01068 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 */
}
.__c01068 { /* 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_c01068 { /* info for Javascript */
  display:none;
}
.l_c01068 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01068 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01068 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01068: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_c01068 {
    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_c01068.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01068.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_c01068 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01068{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01068;src:url('chunks/assets/font_cfe63ee56e9e10a97d33a3db.woff2')format("woff");}.ff1_c01068{font-family:ff1_c01068;line-height:1.000000;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;}
.m93_c01068{transform:matrix(0.012471,0.000462,-0.009253,0.249829,0,0);-ms-transform:matrix(0.012471,0.000462,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.012471,0.000462,-0.009253,0.249829,0,0);}
.m0_c01068{transform:matrix(0.067725,0.002847,-0.010501,0.249779,0,0);-ms-transform:matrix(0.067725,0.002847,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.067725,0.002847,-0.010501,0.249779,0,0);}
.m2_c01068{transform:matrix(0.152895,0.006428,-0.010501,0.249779,0,0);-ms-transform:matrix(0.152895,0.006428,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.152895,0.006428,-0.010501,0.249779,0,0);}
.m1_c01068{transform:matrix(0.156896,0.006596,-0.010501,0.249779,0,0);-ms-transform:matrix(0.156896,0.006596,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.156896,0.006596,-0.010501,0.249779,0,0);}
.m13d_c01068{transform:matrix(0.157599,0.006310,-0.010002,0.249800,0,0);-ms-transform:matrix(0.157599,0.006310,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.157599,0.006310,-0.010002,0.249800,0,0);}
.m13e_c01068{transform:matrix(0.170983,0.006846,-0.010002,0.249800,0,0);-ms-transform:matrix(0.170983,0.006846,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.170983,0.006846,-0.010002,0.249800,0,0);}
.mc1_c01068{transform:matrix(0.171871,0.004125,-0.005998,0.249928,0,0);-ms-transform:matrix(0.171871,0.004125,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.171871,0.004125,-0.005998,0.249928,0,0);}
.mc2_c01068{transform:matrix(0.173950,0.004175,-0.005998,0.249928,0,0);-ms-transform:matrix(0.173950,0.004175,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.173950,0.004175,-0.005998,0.249928,0,0);}
.m142_c01068{transform:matrix(0.175130,0.007012,-0.010002,0.249800,0,0);-ms-transform:matrix(0.175130,0.007012,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.175130,0.007012,-0.010002,0.249800,0,0);}
.me2_c01068{transform:matrix(0.179273,0.006999,-0.009752,0.249810,0,0);-ms-transform:matrix(0.179273,0.006999,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.179273,0.006999,-0.009752,0.249810,0,0);}
.m13b_c01068{transform:matrix(0.180630,0.007232,-0.010002,0.249800,0,0);-ms-transform:matrix(0.180630,0.007232,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.180630,0.007232,-0.010002,0.249800,0,0);}
.m131_c01068{transform:matrix(0.181050,0.007249,-0.010002,0.249800,0,0);-ms-transform:matrix(0.181050,0.007249,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.181050,0.007249,-0.010002,0.249800,0,0);}
.m119_c01068{transform:matrix(0.181140,0.007253,-0.010002,0.249800,0,0);-ms-transform:matrix(0.181140,0.007253,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.181140,0.007253,-0.010002,0.249800,0,0);}
.m82_c01068{transform:matrix(0.181277,0.006533,-0.009003,0.249838,0,0);-ms-transform:matrix(0.181277,0.006533,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.181277,0.006533,-0.009003,0.249838,0,0);}
.m138_c01068{transform:matrix(0.182129,0.007292,-0.010002,0.249800,0,0);-ms-transform:matrix(0.182129,0.007292,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.182129,0.007292,-0.010002,0.249800,0,0);}
.m13a_c01068{transform:matrix(0.182923,0.007324,-0.010002,0.249800,0,0);-ms-transform:matrix(0.182923,0.007324,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.182923,0.007324,-0.010002,0.249800,0,0);}
.m11b_c01068{transform:matrix(0.184078,0.007370,-0.010002,0.249800,0,0);-ms-transform:matrix(0.184078,0.007370,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.184078,0.007370,-0.010002,0.249800,0,0);}
.m155_c01068{transform:matrix(0.184864,0.007957,-0.010751,0.249769,0,0);-ms-transform:matrix(0.184864,0.007957,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.184864,0.007957,-0.010751,0.249769,0,0);}
.m139_c01068{transform:matrix(0.186685,0.007475,-0.010002,0.249800,0,0);-ms-transform:matrix(0.186685,0.007475,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.186685,0.007475,-0.010002,0.249800,0,0);}
.ma6_c01068{transform:matrix(0.186785,0.007479,-0.010002,0.249800,0,0);-ms-transform:matrix(0.186785,0.007479,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.186785,0.007479,-0.010002,0.249800,0,0);}
.ma2_c01068{transform:matrix(0.188249,0.007538,-0.010002,0.249800,0,0);-ms-transform:matrix(0.188249,0.007538,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.188249,0.007538,-0.010002,0.249800,0,0);}
.m5_c01068{transform:matrix(0.189440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189440,0.000000,0.000000,0.250000,0,0);}
.m141_c01068{transform:matrix(0.189623,0.007593,-0.010002,0.249800,0,0);-ms-transform:matrix(0.189623,0.007593,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.189623,0.007593,-0.010002,0.249800,0,0);}
.m7f_c01068{transform:matrix(0.191221,0.006891,-0.009003,0.249838,0,0);-ms-transform:matrix(0.191221,0.006891,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.191221,0.006891,-0.009003,0.249838,0,0);}
.m12_c01068{transform:matrix(0.191277,0.006127,-0.008004,0.249872,0,0);-ms-transform:matrix(0.191277,0.006127,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.191277,0.006127,-0.008004,0.249872,0,0);}
.mbb_c01068{transform:matrix(0.192769,0.004626,-0.005998,0.249928,0,0);-ms-transform:matrix(0.192769,0.004626,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.192769,0.004626,-0.005998,0.249928,0,0);}
.m111_c01068{transform:matrix(0.193000,0.007728,-0.010002,0.249800,0,0);-ms-transform:matrix(0.193000,0.007728,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.193000,0.007728,-0.010002,0.249800,0,0);}
.mbf_c01068{transform:matrix(0.193739,0.004650,-0.005998,0.249928,0,0);-ms-transform:matrix(0.193739,0.004650,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.193739,0.004650,-0.005998,0.249928,0,0);}
.mb9_c01068{transform:matrix(0.194139,0.004659,-0.005998,0.249928,0,0);-ms-transform:matrix(0.194139,0.004659,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.194139,0.004659,-0.005998,0.249928,0,0);}
.mbc_c01068{transform:matrix(0.194599,0.004670,-0.005998,0.249928,0,0);-ms-transform:matrix(0.194599,0.004670,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.194599,0.004670,-0.005998,0.249928,0,0);}
.mca_c01068{transform:matrix(0.196629,0.008070,-0.010252,0.249790,0,0);-ms-transform:matrix(0.196629,0.008070,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.196629,0.008070,-0.010252,0.249790,0,0);}
.m32_c01068{transform:matrix(0.197755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197755,0.000000,0.000000,0.250000,0,0);}
.ma4_c01068{transform:matrix(0.198376,0.007943,-0.010002,0.249800,0,0);-ms-transform:matrix(0.198376,0.007943,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.198376,0.007943,-0.010002,0.249800,0,0);}
.me6_c01068{transform:matrix(0.200158,0.007814,-0.009752,0.249810,0,0);-ms-transform:matrix(0.200158,0.007814,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.200158,0.007814,-0.009752,0.249810,0,0);}
.m7d_c01068{transform:matrix(0.200990,0.007243,-0.009003,0.249838,0,0);-ms-transform:matrix(0.200990,0.007243,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.200990,0.007243,-0.009003,0.249838,0,0);}
.m114_c01068{transform:matrix(0.201883,0.008083,-0.010002,0.249800,0,0);-ms-transform:matrix(0.201883,0.008083,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.201883,0.008083,-0.010002,0.249800,0,0);}
.ma3_c01068{transform:matrix(0.202018,0.008089,-0.010002,0.249800,0,0);-ms-transform:matrix(0.202018,0.008089,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.202018,0.008089,-0.010002,0.249800,0,0);}
.m13c_c01068{transform:matrix(0.202153,0.008094,-0.010002,0.249800,0,0);-ms-transform:matrix(0.202153,0.008094,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.202153,0.008094,-0.010002,0.249800,0,0);}
.m115_c01068{transform:matrix(0.202503,0.008108,-0.010002,0.249800,0,0);-ms-transform:matrix(0.202503,0.008108,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.202503,0.008108,-0.010002,0.249800,0,0);}
.mb8_c01068{transform:matrix(0.203017,0.004872,-0.005998,0.249928,0,0);-ms-transform:matrix(0.203017,0.004872,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.203017,0.004872,-0.005998,0.249928,0,0);}
.mc7_c01068{transform:matrix(0.203684,0.008359,-0.010252,0.249790,0,0);-ms-transform:matrix(0.203684,0.008359,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.203684,0.008359,-0.010252,0.249790,0,0);}
.m130_c01068{transform:matrix(0.204181,0.008175,-0.010002,0.249800,0,0);-ms-transform:matrix(0.204181,0.008175,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.204181,0.008175,-0.010002,0.249800,0,0);}
.mab_c01068{transform:matrix(0.204891,0.008204,-0.010002,0.249800,0,0);-ms-transform:matrix(0.204891,0.008204,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.204891,0.008204,-0.010002,0.249800,0,0);}
.me0_c01068{transform:matrix(0.205204,0.008011,-0.009752,0.249810,0,0);-ms-transform:matrix(0.205204,0.008011,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.205204,0.008011,-0.009752,0.249810,0,0);}
.m150_c01068{transform:matrix(0.205627,0.009468,-0.011499,0.249735,0,0);-ms-transform:matrix(0.205627,0.009468,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.205627,0.009468,-0.011499,0.249735,0,0);}
.me7_c01068{transform:matrix(0.206103,0.008046,-0.009752,0.249810,0,0);-ms-transform:matrix(0.206103,0.008046,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.206103,0.008046,-0.009752,0.249810,0,0);}
.m12d_c01068{transform:matrix(0.206240,0.008258,-0.010002,0.249800,0,0);-ms-transform:matrix(0.206240,0.008258,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.206240,0.008258,-0.010002,0.249800,0,0);}
.m27_c01068{transform:matrix(0.206613,0.007239,-0.008753,0.249847,0,0);-ms-transform:matrix(0.206613,0.007239,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.206613,0.007239,-0.008753,0.249847,0,0);}
.m10_c01068{transform:matrix(0.206724,0.006622,-0.008004,0.249872,0,0);-ms-transform:matrix(0.206724,0.006622,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.206724,0.006622,-0.008004,0.249872,0,0);}
.m68_c01068{transform:matrix(0.207237,0.008090,-0.009752,0.249810,0,0);-ms-transform:matrix(0.207237,0.008090,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.207237,0.008090,-0.009752,0.249810,0,0);}
.m140_c01068{transform:matrix(0.207779,0.008319,-0.010002,0.249800,0,0);-ms-transform:matrix(0.207779,0.008319,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.207779,0.008319,-0.010002,0.249800,0,0);}
.m25_c01068{transform:matrix(0.207887,0.007283,-0.008753,0.249847,0,0);-ms-transform:matrix(0.207887,0.007283,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.207887,0.007283,-0.008753,0.249847,0,0);}
.m15a_c01068{transform:matrix(0.208522,0.008975,-0.010751,0.249769,0,0);-ms-transform:matrix(0.208522,0.008975,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.208522,0.008975,-0.010751,0.249769,0,0);}
.m133_c01068{transform:matrix(0.208548,0.008350,-0.010002,0.249800,0,0);-ms-transform:matrix(0.208548,0.008350,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.208548,0.008350,-0.010002,0.249800,0,0);}
.mfb_c01068{transform:matrix(0.209479,0.007968,-0.009503,0.249819,0,0);-ms-transform:matrix(0.209479,0.007968,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.209479,0.007968,-0.009503,0.249819,0,0);}
.mc8_c01068{transform:matrix(0.210008,0.008619,-0.010252,0.249790,0,0);-ms-transform:matrix(0.210008,0.008619,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.210008,0.008619,-0.010252,0.249790,0,0);}
.m13_c01068{transform:matrix(0.210287,0.006736,-0.008004,0.249872,0,0);-ms-transform:matrix(0.210287,0.006736,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.210287,0.006736,-0.008004,0.249872,0,0);}
.m65_c01068{transform:matrix(0.211104,0.008241,-0.009752,0.249810,0,0);-ms-transform:matrix(0.211104,0.008241,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.211104,0.008241,-0.009752,0.249810,0,0);}
.me8_c01068{transform:matrix(0.211324,0.008250,-0.009752,0.249810,0,0);-ms-transform:matrix(0.211324,0.008250,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.211324,0.008250,-0.009752,0.249810,0,0);}
.m85_c01068{transform:matrix(0.211828,0.007633,-0.009003,0.249838,0,0);-ms-transform:matrix(0.211828,0.007633,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.211828,0.007633,-0.009003,0.249838,0,0);}
.m153_c01068{transform:matrix(0.212075,0.009765,-0.011499,0.249735,0,0);-ms-transform:matrix(0.212075,0.009765,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.212075,0.009765,-0.011499,0.249735,0,0);}
.m116_c01068{transform:matrix(0.212130,0.008494,-0.010002,0.249800,0,0);-ms-transform:matrix(0.212130,0.008494,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.212130,0.008494,-0.010002,0.249800,0,0);}
.m63_c01068{transform:matrix(0.212490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212490,0.000000,0.000000,0.250000,0,0);}
.mba_c01068{transform:matrix(0.213429,0.005122,-0.005998,0.249928,0,0);-ms-transform:matrix(0.213429,0.005122,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.213429,0.005122,-0.005998,0.249928,0,0);}
.m11a_c01068{transform:matrix(0.213439,0.008546,-0.010002,0.249800,0,0);-ms-transform:matrix(0.213439,0.008546,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.213439,0.008546,-0.010002,0.249800,0,0);}
.m4_c01068{transform:matrix(0.213840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213840,0.000000,0.000000,0.250000,0,0);}
.m13f_c01068{transform:matrix(0.214143,0.008574,-0.010002,0.249800,0,0);-ms-transform:matrix(0.214143,0.008574,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.214143,0.008574,-0.010002,0.249800,0,0);}
.m113_c01068{transform:matrix(0.214248,0.008579,-0.010002,0.249800,0,0);-ms-transform:matrix(0.214248,0.008579,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.214248,0.008579,-0.010002,0.249800,0,0);}
.m94_c01068{transform:matrix(0.214498,0.007944,-0.009253,0.249829,0,0);-ms-transform:matrix(0.214498,0.007944,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.214498,0.007944,-0.009253,0.249829,0,0);}
.m9d_c01068{transform:matrix(0.214541,0.007302,-0.008504,0.249855,0,0);-ms-transform:matrix(0.214541,0.007302,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.214541,0.007302,-0.008504,0.249855,0,0);}
.m17_c01068{transform:matrix(0.214975,0.006886,-0.008004,0.249872,0,0);-ms-transform:matrix(0.214975,0.006886,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.214975,0.006886,-0.008004,0.249872,0,0);}
.m134_c01068{transform:matrix(0.214978,0.008608,-0.010002,0.249800,0,0);-ms-transform:matrix(0.214978,0.008608,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.214978,0.008608,-0.010002,0.249800,0,0);}
.m15_c01068{transform:matrix(0.215629,0.006907,-0.008004,0.249872,0,0);-ms-transform:matrix(0.215629,0.006907,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.215629,0.006907,-0.008004,0.249872,0,0);}
.m5a_c01068{transform:matrix(0.215785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215785,0.000000,0.000000,0.250000,0,0);}
.ma8_c01068{transform:matrix(0.216197,0.008657,-0.010002,0.249800,0,0);-ms-transform:matrix(0.216197,0.008657,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.216197,0.008657,-0.010002,0.249800,0,0);}
.ma9_c01068{transform:matrix(0.217236,0.008698,-0.010002,0.249800,0,0);-ms-transform:matrix(0.217236,0.008698,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.217236,0.008698,-0.010002,0.249800,0,0);}
.m12c_c01068{transform:matrix(0.217596,0.008713,-0.010002,0.249800,0,0);-ms-transform:matrix(0.217596,0.008713,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.217596,0.008713,-0.010002,0.249800,0,0);}
.mbe_c01068{transform:matrix(0.217782,0.005227,-0.005998,0.249928,0,0);-ms-transform:matrix(0.217782,0.005227,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.217782,0.005227,-0.005998,0.249928,0,0);}
.m88_c01068{transform:matrix(0.217866,0.008069,-0.009253,0.249829,0,0);-ms-transform:matrix(0.217866,0.008069,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.217866,0.008069,-0.009253,0.249829,0,0);}
.mdd_c01068{transform:matrix(0.218034,0.008512,-0.009752,0.249810,0,0);-ms-transform:matrix(0.218034,0.008512,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.218034,0.008512,-0.009752,0.249810,0,0);}
.m7e_c01068{transform:matrix(0.218593,0.007877,-0.009003,0.249838,0,0);-ms-transform:matrix(0.218593,0.007877,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.218593,0.007877,-0.009003,0.249838,0,0);}
.m118_c01068{transform:matrix(0.218825,0.008762,-0.010002,0.249800,0,0);-ms-transform:matrix(0.218825,0.008762,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.218825,0.008762,-0.010002,0.249800,0,0);}
.m87_c01068{transform:matrix(0.219649,0.008135,-0.009253,0.249829,0,0);-ms-transform:matrix(0.219649,0.008135,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.219649,0.008135,-0.009253,0.249829,0,0);}
.m81_c01068{transform:matrix(0.219732,0.007918,-0.009003,0.249838,0,0);-ms-transform:matrix(0.219732,0.007918,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.219732,0.007918,-0.009003,0.249838,0,0);}
.m11c_c01068{transform:matrix(0.220139,0.008814,-0.010002,0.249800,0,0);-ms-transform:matrix(0.220139,0.008814,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.220139,0.008814,-0.010002,0.249800,0,0);}
.ma0_c01068{transform:matrix(0.221058,0.008851,-0.010002,0.249800,0,0);-ms-transform:matrix(0.221058,0.008851,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.221058,0.008851,-0.010002,0.249800,0,0);}
.m1e_c01068{transform:matrix(0.221069,0.007745,-0.008753,0.249847,0,0);-ms-transform:matrix(0.221069,0.007745,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.221069,0.007745,-0.008753,0.249847,0,0);}
.m151_c01068{transform:matrix(0.221181,0.010184,-0.011499,0.249735,0,0);-ms-transform:matrix(0.221181,0.010184,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.221181,0.010184,-0.011499,0.249735,0,0);}
.m56_c01068{transform:matrix(0.221205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221205,0.000000,0.000000,0.250000,0,0);}
.mc0_c01068{transform:matrix(0.221206,0.005309,-0.005998,0.249928,0,0);-ms-transform:matrix(0.221206,0.005309,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.221206,0.005309,-0.005998,0.249928,0,0);}
.mfd_c01068{transform:matrix(0.221215,0.008415,-0.009503,0.249819,0,0);-ms-transform:matrix(0.221215,0.008415,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.221215,0.008415,-0.009503,0.249819,0,0);}
.m11d_c01068{transform:matrix(0.221293,0.008861,-0.010002,0.249800,0,0);-ms-transform:matrix(0.221293,0.008861,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.221293,0.008861,-0.010002,0.249800,0,0);}
.mcd_c01068{transform:matrix(0.221783,0.009102,-0.010252,0.249790,0,0);-ms-transform:matrix(0.221783,0.009102,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.221783,0.009102,-0.010252,0.249790,0,0);}
.m5e_c01068{transform:matrix(0.221880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221880,0.000000,0.000000,0.250000,0,0);}
.m6d_c01068{transform:matrix(0.221981,0.008666,-0.009752,0.249810,0,0);-ms-transform:matrix(0.221981,0.008666,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.221981,0.008666,-0.009752,0.249810,0,0);}
.m80_c01068{transform:matrix(0.222066,0.008002,-0.009003,0.249838,0,0);-ms-transform:matrix(0.222066,0.008002,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.222066,0.008002,-0.009003,0.249838,0,0);}
.mb_c01068{transform:matrix(0.222348,0.008235,-0.009253,0.249829,0,0);-ms-transform:matrix(0.222348,0.008235,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.222348,0.008235,-0.009253,0.249829,0,0);}
.mdf_c01068{transform:matrix(0.222535,0.008688,-0.009752,0.249810,0,0);-ms-transform:matrix(0.222535,0.008688,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.222535,0.008688,-0.009752,0.249810,0,0);}
.mbd_c01068{transform:matrix(0.222971,0.005351,-0.005998,0.249928,0,0);-ms-transform:matrix(0.222971,0.005351,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.222971,0.005351,-0.005998,0.249928,0,0);}
.m8c_c01068{transform:matrix(0.223452,0.008276,-0.009253,0.249829,0,0);-ms-transform:matrix(0.223452,0.008276,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.223452,0.008276,-0.009253,0.249829,0,0);}
.m109_c01068{transform:matrix(0.224509,0.008765,-0.009752,0.249810,0,0);-ms-transform:matrix(0.224509,0.008765,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.224509,0.008765,-0.009752,0.249810,0,0);}
.mc6_c01068{transform:matrix(0.224586,0.009217,-0.010252,0.249790,0,0);-ms-transform:matrix(0.224586,0.009217,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.224586,0.009217,-0.010252,0.249790,0,0);}
.m2e_c01068{transform:matrix(0.224627,0.007870,-0.008753,0.249847,0,0);-ms-transform:matrix(0.224627,0.007870,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.224627,0.007870,-0.008753,0.249847,0,0);}
.m41_c01068{transform:matrix(0.224680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224680,0.000000,0.000000,0.250000,0,0);}
.m11e_c01068{transform:matrix(0.225289,0.009021,-0.010002,0.249800,0,0);-ms-transform:matrix(0.225289,0.009021,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.225289,0.009021,-0.010002,0.249800,0,0);}
.m44_c01068{transform:matrix(0.225345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225345,0.000000,0.000000,0.250000,0,0);}
.m6a_c01068{transform:matrix(0.225773,0.008814,-0.009752,0.249810,0,0);-ms-transform:matrix(0.225773,0.008814,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.225773,0.008814,-0.009752,0.249810,0,0);}
.m117_c01068{transform:matrix(0.225809,0.009041,-0.010002,0.249800,0,0);-ms-transform:matrix(0.225809,0.009041,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.225809,0.009041,-0.010002,0.249800,0,0);}
.mce_c01068{transform:matrix(0.226554,0.009298,-0.010252,0.249790,0,0);-ms-transform:matrix(0.226554,0.009298,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.226554,0.009298,-0.010252,0.249790,0,0);}
.m2b_c01068{transform:matrix(0.226636,0.007940,-0.008753,0.249847,0,0);-ms-transform:matrix(0.226636,0.007940,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.226636,0.007940,-0.008753,0.249847,0,0);}
.m62_c01068{transform:matrix(0.226745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226745,0.000000,0.000000,0.250000,0,0);}
.m148_c01068{transform:matrix(0.226850,0.009764,-0.010751,0.249769,0,0);-ms-transform:matrix(0.226850,0.009764,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.226850,0.009764,-0.010751,0.249769,0,0);}
.m9c_c01068{transform:matrix(0.227133,0.007730,-0.008504,0.249855,0,0);-ms-transform:matrix(0.227133,0.007730,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.227133,0.007730,-0.008504,0.249855,0,0);}
.m50_c01068{transform:matrix(0.227555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227555,0.000000,0.000000,0.250000,0,0);}
.me1_c01068{transform:matrix(0.227851,0.008895,-0.009752,0.249810,0,0);-ms-transform:matrix(0.227851,0.008895,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.227851,0.008895,-0.009752,0.249810,0,0);}
.m29_c01068{transform:matrix(0.228000,0.007988,-0.008753,0.249847,0,0);-ms-transform:matrix(0.228000,0.007988,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.228000,0.007988,-0.008753,0.249847,0,0);}
.m5b_c01068{transform:matrix(0.228105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228105,0.000000,0.000000,0.250000,0,0);}
.m36_c01068{transform:matrix(0.228160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228160,0.000000,0.000000,0.250000,0,0);}
.med_c01068{transform:matrix(0.228366,0.008915,-0.009752,0.249810,0,0);-ms-transform:matrix(0.228366,0.008915,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.228366,0.008915,-0.009752,0.249810,0,0);}
.m9f_c01068{transform:matrix(0.228378,0.007773,-0.008504,0.249855,0,0);-ms-transform:matrix(0.228378,0.007773,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.228378,0.007773,-0.008504,0.249855,0,0);}
.m96_c01068{transform:matrix(0.228508,0.007777,-0.008504,0.249855,0,0);-ms-transform:matrix(0.228508,0.007777,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.228508,0.007777,-0.008504,0.249855,0,0);}
.m9b_c01068{transform:matrix(0.229197,0.007801,-0.008504,0.249855,0,0);-ms-transform:matrix(0.229197,0.007801,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.229197,0.007801,-0.008504,0.249855,0,0);}
.m73_c01068{transform:matrix(0.229299,0.015164,-0.016497,0.249455,0,0);-ms-transform:matrix(0.229299,0.015164,-0.016497,0.249455,0,0);-webkit-transform:matrix(0.229299,0.015164,-0.016497,0.249455,0,0);}
.m11_c01068{transform:matrix(0.229692,0.007358,-0.008004,0.249872,0,0);-ms-transform:matrix(0.229692,0.007358,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.229692,0.007358,-0.008004,0.249872,0,0);}
.m112_c01068{transform:matrix(0.229751,0.009199,-0.010002,0.249800,0,0);-ms-transform:matrix(0.229751,0.009199,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.229751,0.009199,-0.010002,0.249800,0,0);}
.m154_c01068{transform:matrix(0.229922,0.009897,-0.010751,0.249769,0,0);-ms-transform:matrix(0.229922,0.009897,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.229922,0.009897,-0.010751,0.249769,0,0);}
.m91_c01068{transform:matrix(0.230057,0.008521,-0.009253,0.249829,0,0);-ms-transform:matrix(0.230057,0.008521,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.230057,0.008521,-0.009253,0.249829,0,0);}
.m107_c01068{transform:matrix(0.230150,0.008985,-0.009752,0.249810,0,0);-ms-transform:matrix(0.230150,0.008985,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.230150,0.008985,-0.009752,0.249810,0,0);}
.me3_c01068{transform:matrix(0.230340,0.008992,-0.009752,0.249810,0,0);-ms-transform:matrix(0.230340,0.008992,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.230340,0.008992,-0.009752,0.249810,0,0);}
.m30_c01068{transform:matrix(0.230409,0.008072,-0.008753,0.249847,0,0);-ms-transform:matrix(0.230409,0.008072,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.230409,0.008072,-0.008753,0.249847,0,0);}
.m71_c01068{transform:matrix(0.230596,0.015250,-0.016497,0.249455,0,0);-ms-transform:matrix(0.230596,0.015250,-0.016497,0.249455,0,0);-webkit-transform:matrix(0.230596,0.015250,-0.016497,0.249455,0,0);}
.m14f_c01068{transform:matrix(0.230661,0.010621,-0.011499,0.249735,0,0);-ms-transform:matrix(0.230661,0.010621,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.230661,0.010621,-0.011499,0.249735,0,0);}
.mc4_c01068{transform:matrix(0.230786,0.009472,-0.010252,0.249790,0,0);-ms-transform:matrix(0.230786,0.009472,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.230786,0.009472,-0.010252,0.249790,0,0);}
.m53_c01068{transform:matrix(0.230895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230895,0.000000,0.000000,0.250000,0,0);}
.m147_c01068{transform:matrix(0.231261,0.009954,-0.010751,0.249769,0,0);-ms-transform:matrix(0.231261,0.009954,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.231261,0.009954,-0.010751,0.249769,0,0);}
.m15c_c01068{transform:matrix(0.231451,0.009962,-0.010751,0.249769,0,0);-ms-transform:matrix(0.231451,0.009962,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.231451,0.009962,-0.010751,0.249769,0,0);}
.mad_c01068{transform:matrix(0.231466,0.008573,-0.009253,0.249829,0,0);-ms-transform:matrix(0.231466,0.008573,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.231466,0.008573,-0.009253,0.249829,0,0);}
.m46_c01068{transform:matrix(0.231625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231625,0.000000,0.000000,0.250000,0,0);}
.md5_c01068{transform:matrix(0.232090,0.009525,-0.010252,0.249790,0,0);-ms-transform:matrix(0.232090,0.009525,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.232090,0.009525,-0.010252,0.249790,0,0);}
.m34_c01068{transform:matrix(0.232285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232285,0.000000,0.000000,0.250000,0,0);}
.mde_c01068{transform:matrix(0.232443,0.009074,-0.009752,0.249810,0,0);-ms-transform:matrix(0.232443,0.009074,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.232443,0.009074,-0.009752,0.249810,0,0);}
.m16_c01068{transform:matrix(0.232506,0.007448,-0.008004,0.249872,0,0);-ms-transform:matrix(0.232506,0.007448,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.232506,0.007448,-0.008004,0.249872,0,0);}
.me4_c01068{transform:matrix(0.232608,0.009081,-0.009752,0.249810,0,0);-ms-transform:matrix(0.232608,0.009081,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.232608,0.009081,-0.009752,0.249810,0,0);}
.maa_c01068{transform:matrix(0.232714,0.009318,-0.010002,0.249800,0,0);-ms-transform:matrix(0.232714,0.009318,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.232714,0.009318,-0.010002,0.249800,0,0);}
.m95_c01068{transform:matrix(0.232715,0.007920,-0.008504,0.249855,0,0);-ms-transform:matrix(0.232715,0.007920,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.232715,0.007920,-0.008504,0.249855,0,0);}
.me5_c01068{transform:matrix(0.232803,0.009088,-0.009752,0.249810,0,0);-ms-transform:matrix(0.232803,0.009088,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.232803,0.009088,-0.009752,0.249810,0,0);}
.m8e_c01068{transform:matrix(0.232915,0.008626,-0.009253,0.249829,0,0);-ms-transform:matrix(0.232915,0.008626,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.232915,0.008626,-0.009253,0.249829,0,0);}
.ma5_c01068{transform:matrix(0.233523,0.009350,-0.010002,0.249800,0,0);-ms-transform:matrix(0.233523,0.009350,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.233523,0.009350,-0.010002,0.249800,0,0);}
.m31_c01068{transform:matrix(0.233672,0.008187,-0.008753,0.249847,0,0);-ms-transform:matrix(0.233672,0.008187,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.233672,0.008187,-0.008753,0.249847,0,0);}
.me9_c01068{transform:matrix(0.233972,0.009134,-0.009752,0.249810,0,0);-ms-transform:matrix(0.233972,0.009134,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.233972,0.009134,-0.009752,0.249810,0,0);}
.mcb_c01068{transform:matrix(0.234038,0.009605,-0.010252,0.249790,0,0);-ms-transform:matrix(0.234038,0.009605,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.234038,0.009605,-0.010252,0.249790,0,0);}
.m18_c01068{transform:matrix(0.234175,0.007501,-0.008004,0.249872,0,0);-ms-transform:matrix(0.234175,0.007501,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.234175,0.007501,-0.008004,0.249872,0,0);}
.m1a_c01068{transform:matrix(0.234216,0.008206,-0.008753,0.249847,0,0);-ms-transform:matrix(0.234216,0.008206,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.234216,0.008206,-0.008753,0.249847,0,0);}
.mda_c01068{transform:matrix(0.234588,0.009628,-0.010252,0.249790,0,0);-ms-transform:matrix(0.234588,0.009628,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.234588,0.009628,-0.010252,0.249790,0,0);}
.mf_c01068{transform:matrix(0.234935,0.007525,-0.008004,0.249872,0,0);-ms-transform:matrix(0.234935,0.007525,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.234935,0.007525,-0.008004,0.249872,0,0);}
.mc5_c01068{transform:matrix(0.235427,0.009662,-0.010252,0.249790,0,0);-ms-transform:matrix(0.235427,0.009662,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.235427,0.009662,-0.010252,0.249790,0,0);}
.m14a_c01068{transform:matrix(0.235697,0.010145,-0.010751,0.249769,0,0);-ms-transform:matrix(0.235697,0.010145,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.235697,0.010145,-0.010751,0.249769,0,0);}
.m4b_c01068{transform:matrix(0.235755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235755,0.000000,0.000000,0.250000,0,0);}
.m8b_c01068{transform:matrix(0.235833,0.008735,-0.009253,0.249829,0,0);-ms-transform:matrix(0.235833,0.008735,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.235833,0.008735,-0.009253,0.249829,0,0);}
.m152_c01068{transform:matrix(0.236055,0.010869,-0.011499,0.249735,0,0);-ms-transform:matrix(0.236055,0.010869,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.236055,0.010869,-0.011499,0.249735,0,0);}
.mfc_c01068{transform:matrix(0.236244,0.008986,-0.009503,0.249819,0,0);-ms-transform:matrix(0.236244,0.008986,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.236244,0.008986,-0.009503,0.249819,0,0);}
.m120_c01068{transform:matrix(0.236645,0.009475,-0.010002,0.249800,0,0);-ms-transform:matrix(0.236645,0.009475,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.236645,0.009475,-0.010002,0.249800,0,0);}
.meb_c01068{transform:matrix(0.236655,0.009239,-0.009752,0.249810,0,0);-ms-transform:matrix(0.236655,0.009239,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.236655,0.009239,-0.009752,0.249810,0,0);}
.ma1_c01068{transform:matrix(0.236660,0.009476,-0.010002,0.249800,0,0);-ms-transform:matrix(0.236660,0.009476,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.236660,0.009476,-0.010002,0.249800,0,0);}
.m59_c01068{transform:matrix(0.237120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237120,0.000000,0.000000,0.250000,0,0);}
.m15d_c01068{transform:matrix(0.237245,0.010212,-0.010751,0.249769,0,0);-ms-transform:matrix(0.237245,0.010212,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.237245,0.010212,-0.010751,0.249769,0,0);}
.m28_c01068{transform:matrix(0.237444,0.008319,-0.008753,0.249847,0,0);-ms-transform:matrix(0.237444,0.008319,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.237444,0.008319,-0.008753,0.249847,0,0);}
.mc9_c01068{transform:matrix(0.237455,0.009745,-0.010252,0.249790,0,0);-ms-transform:matrix(0.237455,0.009745,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.237455,0.009745,-0.010252,0.249790,0,0);}
.md8_c01068{transform:matrix(0.237630,0.009753,-0.010252,0.249790,0,0);-ms-transform:matrix(0.237630,0.009753,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.237630,0.009753,-0.010252,0.249790,0,0);}
.m106_c01068{transform:matrix(0.237654,0.009278,-0.009752,0.249810,0,0);-ms-transform:matrix(0.237654,0.009278,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.237654,0.009278,-0.009752,0.249810,0,0);}
.m14_c01068{transform:matrix(0.237688,0.007614,-0.008004,0.249872,0,0);-ms-transform:matrix(0.237688,0.007614,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.237688,0.007614,-0.008004,0.249872,0,0);}
.m5c_c01068{transform:matrix(0.237830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237830,0.000000,0.000000,0.250000,0,0);}
.m26_c01068{transform:matrix(0.238009,0.008339,-0.008753,0.249847,0,0);-ms-transform:matrix(0.238009,0.008339,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.238009,0.008339,-0.008753,0.249847,0,0);}
.m7a_c01068{transform:matrix(0.238015,0.015740,-0.016497,0.249455,0,0);-ms-transform:matrix(0.238015,0.015740,-0.016497,0.249455,0,0);-webkit-transform:matrix(0.238015,0.015740,-0.016497,0.249455,0,0);}
.m49_c01068{transform:matrix(0.238370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238370,0.000000,0.000000,0.250000,0,0);}
.ma7_c01068{transform:matrix(0.238469,0.009548,-0.010002,0.249800,0,0);-ms-transform:matrix(0.238469,0.009548,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.238469,0.009548,-0.010002,0.249800,0,0);}
.m15b_c01068{transform:matrix(0.238469,0.010264,-0.010751,0.249769,0,0);-ms-transform:matrix(0.238469,0.010264,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.238469,0.010264,-0.010751,0.249769,0,0);}
.mcc_c01068{transform:matrix(0.238504,0.009788,-0.010252,0.249790,0,0);-ms-transform:matrix(0.238504,0.009788,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.238504,0.009788,-0.010252,0.249790,0,0);}
.md6_c01068{transform:matrix(0.239109,0.009813,-0.010252,0.249790,0,0);-ms-transform:matrix(0.239109,0.009813,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.239109,0.009813,-0.010252,0.249790,0,0);}
.m23_c01068{transform:matrix(0.239123,0.008378,-0.008753,0.249847,0,0);-ms-transform:matrix(0.239123,0.008378,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.239123,0.008378,-0.008753,0.249847,0,0);}
.mac_c01068{transform:matrix(0.239146,0.008857,-0.009253,0.249829,0,0);-ms-transform:matrix(0.239146,0.008857,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.239146,0.008857,-0.009253,0.249829,0,0);}
.m3f_c01068{transform:matrix(0.239295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239295,0.000000,0.000000,0.250000,0,0);}
.md7_c01068{transform:matrix(0.239448,0.009827,-0.010252,0.249790,0,0);-ms-transform:matrix(0.239448,0.009827,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.239448,0.009827,-0.010252,0.249790,0,0);}
.m12f_c01068{transform:matrix(0.239453,0.009588,-0.010002,0.249800,0,0);-ms-transform:matrix(0.239453,0.009588,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.239453,0.009588,-0.010002,0.249800,0,0);}
.m77_c01068{transform:matrix(0.239771,0.015857,-0.016497,0.249455,0,0);-ms-transform:matrix(0.239771,0.015857,-0.016497,0.249455,0,0);-webkit-transform:matrix(0.239771,0.015857,-0.016497,0.249455,0,0);}
.md0_c01068{transform:matrix(0.239863,0.009844,-0.010252,0.249790,0,0);-ms-transform:matrix(0.239863,0.009844,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.239863,0.009844,-0.010252,0.249790,0,0);}
.m57_c01068{transform:matrix(0.239910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239910,0.000000,0.000000,0.250000,0,0);}
.m9a_c01068{transform:matrix(0.240311,0.008179,-0.008504,0.249855,0,0);-ms-transform:matrix(0.240311,0.008179,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.240311,0.008179,-0.008504,0.249855,0,0);}
.m2a_c01068{transform:matrix(0.240398,0.008422,-0.008753,0.249847,0,0);-ms-transform:matrix(0.240398,0.008422,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.240398,0.008422,-0.008753,0.249847,0,0);}
.m103_c01068{transform:matrix(0.240452,0.009387,-0.009752,0.249810,0,0);-ms-transform:matrix(0.240452,0.009387,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.240452,0.009387,-0.009752,0.249810,0,0);}
.m8a_c01068{transform:matrix(0.241135,0.008931,-0.009253,0.249829,0,0);-ms-transform:matrix(0.241135,0.008931,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.241135,0.008931,-0.009253,0.249829,0,0);}
.m12e_c01068{transform:matrix(0.241297,0.009662,-0.010002,0.249800,0,0);-ms-transform:matrix(0.241297,0.009662,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.241297,0.009662,-0.010002,0.249800,0,0);}
.m6f_c01068{transform:matrix(0.241318,0.015959,-0.016497,0.249455,0,0);-ms-transform:matrix(0.241318,0.015959,-0.016497,0.249455,0,0);-webkit-transform:matrix(0.241318,0.015959,-0.016497,0.249455,0,0);}
.md1_c01068{transform:matrix(0.241577,0.009915,-0.010252,0.249790,0,0);-ms-transform:matrix(0.241577,0.009915,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.241577,0.009915,-0.010252,0.249790,0,0);}
.m157_c01068{transform:matrix(0.241786,0.010407,-0.010751,0.249769,0,0);-ms-transform:matrix(0.241786,0.010407,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.241786,0.010407,-0.010751,0.249769,0,0);}
.m10a_c01068{transform:matrix(0.241811,0.009440,-0.009752,0.249810,0,0);-ms-transform:matrix(0.241811,0.009440,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.241811,0.009440,-0.009752,0.249810,0,0);}
.md3_c01068{transform:matrix(0.241816,0.009924,-0.010252,0.249790,0,0);-ms-transform:matrix(0.241816,0.009924,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.241816,0.009924,-0.010252,0.249790,0,0);}
.m10e_c01068{transform:matrix(0.241901,0.009444,-0.009752,0.249810,0,0);-ms-transform:matrix(0.241901,0.009444,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.241901,0.009444,-0.009752,0.249810,0,0);}
.m159_c01068{transform:matrix(0.241986,0.010416,-0.010751,0.249769,0,0);-ms-transform:matrix(0.241986,0.010416,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.241986,0.010416,-0.010751,0.249769,0,0);}
.m10f_c01068{transform:matrix(0.242360,0.009462,-0.009752,0.249810,0,0);-ms-transform:matrix(0.242360,0.009462,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.242360,0.009462,-0.009752,0.249810,0,0);}
.mc3_c01068{transform:matrix(0.242365,0.005817,-0.005998,0.249928,0,0);-ms-transform:matrix(0.242365,0.005817,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.242365,0.005817,-0.005998,0.249928,0,0);}
.mf5_c01068{transform:matrix(0.242580,0.009227,-0.009503,0.249819,0,0);-ms-transform:matrix(0.242580,0.009227,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.242580,0.009227,-0.009503,0.249819,0,0);}
.m70_c01068{transform:matrix(0.242640,0.016046,-0.016497,0.249455,0,0);-ms-transform:matrix(0.242640,0.016046,-0.016497,0.249455,0,0);-webkit-transform:matrix(0.242640,0.016046,-0.016497,0.249455,0,0);}
.m97_c01068{transform:matrix(0.243059,0.008272,-0.008504,0.249855,0,0);-ms-transform:matrix(0.243059,0.008272,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.243059,0.008272,-0.008504,0.249855,0,0);}
.m2d_c01068{transform:matrix(0.243141,0.008518,-0.008753,0.249847,0,0);-ms-transform:matrix(0.243141,0.008518,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.243141,0.008518,-0.008753,0.249847,0,0);}
.m10b_c01068{transform:matrix(0.243310,0.009499,-0.009752,0.249810,0,0);-ms-transform:matrix(0.243310,0.009499,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.243310,0.009499,-0.009752,0.249810,0,0);}
.m54_c01068{transform:matrix(0.243375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243375,0.000000,0.000000,0.250000,0,0);}
.m3e_c01068{transform:matrix(0.243400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243400,0.000000,0.000000,0.250000,0,0);}
.m1f_c01068{transform:matrix(0.243945,0.008547,-0.008753,0.249847,0,0);-ms-transform:matrix(0.243945,0.008547,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.243945,0.008547,-0.008753,0.249847,0,0);}
.mb5_c01068{transform:matrix(0.244307,0.009048,-0.009253,0.249829,0,0);-ms-transform:matrix(0.244307,0.009048,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.244307,0.009048,-0.009253,0.249829,0,0);}
.mb2_c01068{transform:matrix(0.244622,0.009060,-0.009253,0.249829,0,0);-ms-transform:matrix(0.244622,0.009060,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.244622,0.009060,-0.009253,0.249829,0,0);}
.m33_c01068{transform:matrix(0.245025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245025,0.000000,0.000000,0.250000,0,0);}
.m2f_c01068{transform:matrix(0.245070,0.008586,-0.008753,0.249847,0,0);-ms-transform:matrix(0.245070,0.008586,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.245070,0.008586,-0.008753,0.249847,0,0);}
.m64_c01068{transform:matrix(0.245498,0.009584,-0.009752,0.249810,0,0);-ms-transform:matrix(0.245498,0.009584,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.245498,0.009584,-0.009752,0.249810,0,0);}
.m9e_c01068{transform:matrix(0.245523,0.008356,-0.008504,0.249855,0,0);-ms-transform:matrix(0.245523,0.008356,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.245523,0.008356,-0.008504,0.249855,0,0);}
.m143_c01068{transform:matrix(0.245957,0.010587,-0.010751,0.249769,0,0);-ms-transform:matrix(0.245957,0.010587,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.245957,0.010587,-0.010751,0.249769,0,0);}
.m6b_c01068{transform:matrix(0.246432,0.009620,-0.009752,0.249810,0,0);-ms-transform:matrix(0.246432,0.009620,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.246432,0.009620,-0.009752,0.249810,0,0);}
.m137_c01068{transform:matrix(0.246463,0.009868,-0.010002,0.249800,0,0);-ms-transform:matrix(0.246463,0.009868,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.246463,0.009868,-0.010002,0.249800,0,0);}
.me_c01068{transform:matrix(0.246561,0.009132,-0.009253,0.249829,0,0);-ms-transform:matrix(0.246561,0.009132,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.246561,0.009132,-0.009253,0.249829,0,0);}
.m14c_c01068{transform:matrix(0.246617,0.010615,-0.010751,0.249769,0,0);-ms-transform:matrix(0.246617,0.010615,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.246617,0.010615,-0.010751,0.249769,0,0);}
.m6_c01068{transform:matrix(0.246811,0.009141,-0.009253,0.249829,0,0);-ms-transform:matrix(0.246811,0.009141,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.246811,0.009141,-0.009253,0.249829,0,0);}
.m66_c01068{transform:matrix(0.246862,0.009637,-0.009752,0.249810,0,0);-ms-transform:matrix(0.246862,0.009637,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.246862,0.009637,-0.009752,0.249810,0,0);}
.mdb_c01068{transform:matrix(0.247342,0.010151,-0.010252,0.249790,0,0);-ms-transform:matrix(0.247342,0.010151,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.247342,0.010151,-0.010252,0.249790,0,0);}
.mdc_c01068{transform:matrix(0.247647,0.010164,-0.010252,0.249790,0,0);-ms-transform:matrix(0.247647,0.010164,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.247647,0.010164,-0.010252,0.249790,0,0);}
.m8f_c01068{transform:matrix(0.248125,0.009190,-0.009253,0.249829,0,0);-ms-transform:matrix(0.248125,0.009190,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.248125,0.009190,-0.009253,0.249829,0,0);}
.m38_c01068{transform:matrix(0.248300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248300,0.000000,0.000000,0.250000,0,0);}
.m10d_c01068{transform:matrix(0.248431,0.009698,-0.009752,0.249810,0,0);-ms-transform:matrix(0.248431,0.009698,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.248431,0.009698,-0.009752,0.249810,0,0);}
.m7c_c01068{transform:matrix(0.248552,0.016437,-0.016497,0.249455,0,0);-ms-transform:matrix(0.248552,0.016437,-0.016497,0.249455,0,0);-webkit-transform:matrix(0.248552,0.016437,-0.016497,0.249455,0,0);}
.m99_c01068{transform:matrix(0.249091,0.008478,-0.008504,0.249855,0,0);-ms-transform:matrix(0.249091,0.008478,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.249091,0.008478,-0.008504,0.249855,0,0);}
.md4_c01068{transform:matrix(0.249360,0.010234,-0.010252,0.249790,0,0);-ms-transform:matrix(0.249360,0.010234,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.249360,0.010234,-0.010252,0.249790,0,0);}
.m110_c01068{transform:matrix(0.249420,0.009987,-0.010002,0.249800,0,0);-ms-transform:matrix(0.249420,0.009987,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.249420,0.009987,-0.010002,0.249800,0,0);}
.m37_c01068{transform:matrix(0.249505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249505,0.000000,0.000000,0.250000,0,0);}
.m6e_c01068{transform:matrix(0.249540,0.009742,-0.009752,0.249810,0,0);-ms-transform:matrix(0.249540,0.009742,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.249540,0.009742,-0.009752,0.249810,0,0);}
.mb1_c01068{transform:matrix(0.249589,0.009244,-0.009253,0.249829,0,0);-ms-transform:matrix(0.249589,0.009244,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.249589,0.009244,-0.009253,0.249829,0,0);}
.m79_c01068{transform:matrix(0.249904,0.016527,-0.016497,0.249455,0,0);-ms-transform:matrix(0.249904,0.016527,-0.016497,0.249455,0,0);-webkit-transform:matrix(0.249904,0.016527,-0.016497,0.249455,0,0);}
.mb3_c01068{transform:matrix(0.249984,0.009259,-0.009253,0.249829,0,0);-ms-transform:matrix(0.249984,0.009259,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.249984,0.009259,-0.009253,0.249829,0,0);}
.m14b_c01068{transform:matrix(0.250078,0.010764,-0.010751,0.249769,0,0);-ms-transform:matrix(0.250078,0.010764,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.250078,0.010764,-0.010751,0.249769,0,0);}
.m98_c01068{transform:matrix(0.250580,0.008528,-0.008504,0.249855,0,0);-ms-transform:matrix(0.250580,0.008528,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.250580,0.008528,-0.008504,0.249855,0,0);}
.mb6_c01068{transform:matrix(0.251568,0.009317,-0.009253,0.249829,0,0);-ms-transform:matrix(0.251568,0.009317,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.251568,0.009317,-0.009253,0.249829,0,0);}
.mfa_c01068{transform:matrix(0.251768,0.009577,-0.009503,0.249819,0,0);-ms-transform:matrix(0.251768,0.009577,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.251768,0.009577,-0.009503,0.249819,0,0);}
.m4a_c01068{transform:matrix(0.252270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252270,0.000000,0.000000,0.250000,0,0);}
.m12a_c01068{transform:matrix(0.252478,0.010109,-0.010002,0.249800,0,0);-ms-transform:matrix(0.252478,0.010109,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.252478,0.010109,-0.010002,0.249800,0,0);}
.m145_c01068{transform:matrix(0.252801,0.010881,-0.010751,0.249769,0,0);-ms-transform:matrix(0.252801,0.010881,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.252801,0.010881,-0.010751,0.249769,0,0);}
.mc_c01068{transform:matrix(0.253126,0.009375,-0.009253,0.249829,0,0);-ms-transform:matrix(0.253126,0.009375,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.253126,0.009375,-0.009253,0.249829,0,0);}
.m19_c01068{transform:matrix(0.253170,0.008870,-0.008753,0.249847,0,0);-ms-transform:matrix(0.253170,0.008870,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.253170,0.008870,-0.008753,0.249847,0,0);}
.m4e_c01068{transform:matrix(0.253325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253325,0.000000,0.000000,0.250000,0,0);}
.m48_c01068{transform:matrix(0.254370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254370,0.000000,0.000000,0.250000,0,0);}
.m121_c01068{transform:matrix(0.254651,0.010196,-0.010002,0.249800,0,0);-ms-transform:matrix(0.254651,0.010196,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.254651,0.010196,-0.010002,0.249800,0,0);}
.mff_c01068{transform:matrix(0.255255,0.009709,-0.009503,0.249819,0,0);-ms-transform:matrix(0.255255,0.009709,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.255255,0.009709,-0.009503,0.249819,0,0);}
.m104_c01068{transform:matrix(0.255550,0.009976,-0.009752,0.249810,0,0);-ms-transform:matrix(0.255550,0.009976,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.255550,0.009976,-0.009752,0.249810,0,0);}
.m1c_c01068{transform:matrix(0.257052,0.009006,-0.008753,0.249847,0,0);-ms-transform:matrix(0.257052,0.009006,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.257052,0.009006,-0.008753,0.249847,0,0);}
.m67_c01068{transform:matrix(0.257169,0.010040,-0.009752,0.249810,0,0);-ms-transform:matrix(0.257169,0.010040,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.257169,0.010040,-0.009752,0.249810,0,0);}
.m132_c01068{transform:matrix(0.257394,0.010306,-0.010002,0.249800,0,0);-ms-transform:matrix(0.257394,0.010306,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.257394,0.010306,-0.010002,0.249800,0,0);}
.m135_c01068{transform:matrix(0.257803,0.010322,-0.010002,0.249800,0,0);-ms-transform:matrix(0.257803,0.010322,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.257803,0.010322,-0.010002,0.249800,0,0);}
.m92_c01068{transform:matrix(0.257808,0.009548,-0.009253,0.249829,0,0);-ms-transform:matrix(0.257808,0.009548,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.257808,0.009548,-0.009253,0.249829,0,0);}
.m20_c01068{transform:matrix(0.257952,0.009037,-0.008753,0.249847,0,0);-ms-transform:matrix(0.257952,0.009037,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.257952,0.009037,-0.008753,0.249847,0,0);}
.m102_c01068{transform:matrix(0.259322,0.010124,-0.009752,0.249810,0,0);-ms-transform:matrix(0.259322,0.010124,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.259322,0.010124,-0.009752,0.249810,0,0);}
.m78_c01068{transform:matrix(0.259433,0.017157,-0.016497,0.249455,0,0);-ms-transform:matrix(0.259433,0.017157,-0.016497,0.249455,0,0);-webkit-transform:matrix(0.259433,0.017157,-0.016497,0.249455,0,0);}
.m3b_c01068{transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);}
.m6c_c01068{transform:matrix(0.259932,0.010147,-0.009752,0.249810,0,0);-ms-transform:matrix(0.259932,0.010147,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.259932,0.010147,-0.009752,0.249810,0,0);}
.m21_c01068{transform:matrix(0.260275,0.009119,-0.008753,0.249847,0,0);-ms-transform:matrix(0.260275,0.009119,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.260275,0.009119,-0.008753,0.249847,0,0);}
.m2c_c01068{transform:matrix(0.260900,0.009141,-0.008753,0.249847,0,0);-ms-transform:matrix(0.260900,0.009141,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.260900,0.009141,-0.008753,0.249847,0,0);}
.m24_c01068{transform:matrix(0.260970,0.009143,-0.008753,0.249847,0,0);-ms-transform:matrix(0.260970,0.009143,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.260970,0.009143,-0.008753,0.249847,0,0);}
.mb4_c01068{transform:matrix(0.261396,0.009681,-0.009253,0.249829,0,0);-ms-transform:matrix(0.261396,0.009681,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.261396,0.009681,-0.009253,0.249829,0,0);}
.m105_c01068{transform:matrix(0.262290,0.010240,-0.009752,0.249810,0,0);-ms-transform:matrix(0.262290,0.010240,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.262290,0.010240,-0.009752,0.249810,0,0);}
.m136_c01068{transform:matrix(0.262395,0.010506,-0.010002,0.249800,0,0);-ms-transform:matrix(0.262395,0.010506,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.262395,0.010506,-0.010002,0.249800,0,0);}
.m5d_c01068{transform:matrix(0.262575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262575,0.000000,0.000000,0.250000,0,0);}
.mea_c01068{transform:matrix(0.263035,0.010269,-0.009752,0.249810,0,0);-ms-transform:matrix(0.263035,0.010269,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.263035,0.010269,-0.009752,0.249810,0,0);}
.m35_c01068{transform:matrix(0.263110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263110,0.000000,0.000000,0.250000,0,0);}
.m89_c01068{transform:matrix(0.263499,0.009759,-0.009253,0.249829,0,0);-ms-transform:matrix(0.263499,0.009759,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.263499,0.009759,-0.009253,0.249829,0,0);}
.mf6_c01068{transform:matrix(0.263609,0.010027,-0.009503,0.249819,0,0);-ms-transform:matrix(0.263609,0.010027,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.263609,0.010027,-0.009503,0.249819,0,0);}
.m7_c01068{transform:matrix(0.264114,0.009782,-0.009253,0.249829,0,0);-ms-transform:matrix(0.264114,0.009782,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.264114,0.009782,-0.009253,0.249829,0,0);}
.m3c_c01068{transform:matrix(0.264450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264450,0.000000,0.000000,0.250000,0,0);}
.m4f_c01068{transform:matrix(0.265095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265095,0.000000,0.000000,0.250000,0,0);}
.m3_c01068{transform:matrix(0.265465,0.011161,-0.010501,0.249779,0,0);-ms-transform:matrix(0.265465,0.011161,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.265465,0.011161,-0.010501,0.249779,0,0);}
.m122_c01068{transform:matrix(0.265732,0.010640,-0.010002,0.249800,0,0);-ms-transform:matrix(0.265732,0.010640,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.265732,0.010640,-0.010002,0.249800,0,0);}
.m60_c01068{transform:matrix(0.265735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265735,0.000000,0.000000,0.250000,0,0);}
.m100_c01068{transform:matrix(0.266297,0.010129,-0.009503,0.249819,0,0);-ms-transform:matrix(0.266297,0.010129,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.266297,0.010129,-0.009503,0.249819,0,0);}
.mb0_c01068{transform:matrix(0.266507,0.009871,-0.009253,0.249829,0,0);-ms-transform:matrix(0.266507,0.009871,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.266507,0.009871,-0.009253,0.249829,0,0);}
.m45_c01068{transform:matrix(0.266880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266880,0.000000,0.000000,0.250000,0,0);}
.m156_c01068{transform:matrix(0.267178,0.011500,-0.010751,0.249769,0,0);-ms-transform:matrix(0.267178,0.011500,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.267178,0.011500,-0.010751,0.249769,0,0);}
.m47_c01068{transform:matrix(0.267220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267220,0.000000,0.000000,0.250000,0,0);}
.m51_c01068{transform:matrix(0.267460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267460,0.000000,0.000000,0.250000,0,0);}
.m69_c01068{transform:matrix(0.267681,0.010450,-0.009752,0.249810,0,0);-ms-transform:matrix(0.267681,0.010450,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.267681,0.010450,-0.009752,0.249810,0,0);}
.m72_c01068{transform:matrix(0.267690,0.017703,-0.016497,0.249455,0,0);-ms-transform:matrix(0.267690,0.017703,-0.016497,0.249455,0,0);-webkit-transform:matrix(0.267690,0.017703,-0.016497,0.249455,0,0);}
.m10c_c01068{transform:matrix(0.268141,0.010468,-0.009752,0.249810,0,0);-ms-transform:matrix(0.268141,0.010468,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.268141,0.010468,-0.009752,0.249810,0,0);}
.m149_c01068{transform:matrix(0.268466,0.011556,-0.010751,0.249769,0,0);-ms-transform:matrix(0.268466,0.011556,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.268466,0.011556,-0.010751,0.249769,0,0);}
.m40_c01068{transform:matrix(0.268970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268970,0.000000,0.000000,0.250000,0,0);}
.m3d_c01068{transform:matrix(0.269175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269175,0.000000,0.000000,0.250000,0,0);}
.mef_c01068{transform:matrix(0.269580,0.010524,-0.009752,0.249810,0,0);-ms-transform:matrix(0.269580,0.010524,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.269580,0.010524,-0.009752,0.249810,0,0);}
.mb7_c01068{transform:matrix(0.269660,0.009987,-0.009253,0.249829,0,0);-ms-transform:matrix(0.269660,0.009987,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.269660,0.009987,-0.009253,0.249829,0,0);}
.m84_c01068{transform:matrix(0.269825,0.009723,-0.009003,0.249838,0,0);-ms-transform:matrix(0.269825,0.009723,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.269825,0.009723,-0.009003,0.249838,0,0);}
.m1b_c01068{transform:matrix(0.269934,0.009457,-0.008753,0.249847,0,0);-ms-transform:matrix(0.269934,0.009457,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.269934,0.009457,-0.008753,0.249847,0,0);}
.m86_c01068{transform:matrix(0.269980,0.009999,-0.009253,0.249829,0,0);-ms-transform:matrix(0.269980,0.009999,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.269980,0.009999,-0.009253,0.249829,0,0);}
.m42_c01068{transform:matrix(0.270375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270375,0.000000,0.000000,0.250000,0,0);}
.m158_c01068{transform:matrix(0.271589,0.011690,-0.010751,0.249769,0,0);-ms-transform:matrix(0.271589,0.011690,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.271589,0.011690,-0.010751,0.249769,0,0);}
.mf8_c01068{transform:matrix(0.272073,0.010349,-0.009503,0.249819,0,0);-ms-transform:matrix(0.272073,0.010349,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.272073,0.010349,-0.009503,0.249819,0,0);}
.m76_c01068{transform:matrix(0.272195,0.018001,-0.016497,0.249455,0,0);-ms-transform:matrix(0.272195,0.018001,-0.016497,0.249455,0,0);-webkit-transform:matrix(0.272195,0.018001,-0.016497,0.249455,0,0);}
.m55_c01068{transform:matrix(0.272330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272330,0.000000,0.000000,0.250000,0,0);}
.mf9_c01068{transform:matrix(0.272468,0.010364,-0.009503,0.249819,0,0);-ms-transform:matrix(0.272468,0.010364,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.272468,0.010364,-0.009503,0.249819,0,0);}
.m3a_c01068{transform:matrix(0.272520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272520,0.000000,0.000000,0.250000,0,0);}
.mf2_c01068{transform:matrix(0.272537,0.010640,-0.009752,0.249810,0,0);-ms-transform:matrix(0.272537,0.010640,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.272537,0.010640,-0.009752,0.249810,0,0);}
.mae_c01068{transform:matrix(0.272853,0.010106,-0.009253,0.249829,0,0);-ms-transform:matrix(0.272853,0.010106,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.272853,0.010106,-0.009253,0.249829,0,0);}
.m108_c01068{transform:matrix(0.273172,0.010664,-0.009752,0.249810,0,0);-ms-transform:matrix(0.273172,0.010664,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.273172,0.010664,-0.009752,0.249810,0,0);}
.m58_c01068{transform:matrix(0.274545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274545,0.000000,0.000000,0.250000,0,0);}
.m8_c01068{transform:matrix(0.274917,0.010182,-0.009253,0.249829,0,0);-ms-transform:matrix(0.274917,0.010182,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.274917,0.010182,-0.009253,0.249829,0,0);}
.m144_c01068{transform:matrix(0.274985,0.011836,-0.010751,0.249769,0,0);-ms-transform:matrix(0.274985,0.011836,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.274985,0.011836,-0.010751,0.249769,0,0);}
.mfe_c01068{transform:matrix(0.275086,0.010464,-0.009503,0.249819,0,0);-ms-transform:matrix(0.275086,0.010464,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.275086,0.010464,-0.009503,0.249819,0,0);}
.m8d_c01068{transform:matrix(0.275181,0.010192,-0.009253,0.249829,0,0);-ms-transform:matrix(0.275181,0.010192,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.275181,0.010192,-0.009253,0.249829,0,0);}
.m52_c01068{transform:matrix(0.275605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275605,0.000000,0.000000,0.250000,0,0);}
.m127_c01068{transform:matrix(0.275819,0.011044,-0.010002,0.249800,0,0);-ms-transform:matrix(0.275819,0.011044,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.275819,0.011044,-0.010002,0.249800,0,0);}
.m43_c01068{transform:matrix(0.276035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276035,0.000000,0.000000,0.250000,0,0);}
.md2_c01068{transform:matrix(0.277077,0.011372,-0.010252,0.249790,0,0);-ms-transform:matrix(0.277077,0.011372,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.277077,0.011372,-0.010252,0.249790,0,0);}
.m61_c01068{transform:matrix(0.277345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277345,0.000000,0.000000,0.250000,0,0);}
.m22_c01068{transform:matrix(0.277660,0.009728,-0.008753,0.249847,0,0);-ms-transform:matrix(0.277660,0.009728,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.277660,0.009728,-0.008753,0.249847,0,0);}
.md_c01068{transform:matrix(0.277730,0.010286,-0.009253,0.249829,0,0);-ms-transform:matrix(0.277730,0.010286,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.277730,0.010286,-0.009253,0.249829,0,0);}
.m75_c01068{transform:matrix(0.277893,0.018378,-0.016497,0.249455,0,0);-ms-transform:matrix(0.277893,0.018378,-0.016497,0.249455,0,0);-webkit-transform:matrix(0.277893,0.018378,-0.016497,0.249455,0,0);}
.m146_c01068{transform:matrix(0.278068,0.011969,-0.010751,0.249769,0,0);-ms-transform:matrix(0.278068,0.011969,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.278068,0.011969,-0.010751,0.249769,0,0);}
.m39_c01068{transform:matrix(0.279030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279030,0.000000,0.000000,0.250000,0,0);}
.m1d_c01068{transform:matrix(0.279034,0.009776,-0.008753,0.249847,0,0);-ms-transform:matrix(0.279034,0.009776,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.279034,0.009776,-0.008753,0.249847,0,0);}
.maf_c01068{transform:matrix(0.279134,0.010338,-0.009253,0.249829,0,0);-ms-transform:matrix(0.279134,0.010338,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.279134,0.010338,-0.009253,0.249829,0,0);}
.m4d_c01068{transform:matrix(0.279510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279510,0.000000,0.000000,0.250000,0,0);}
.m74_c01068{transform:matrix(0.280258,0.018534,-0.016497,0.249455,0,0);-ms-transform:matrix(0.280258,0.018534,-0.016497,0.249455,0,0);-webkit-transform:matrix(0.280258,0.018534,-0.016497,0.249455,0,0);}
.mf0_c01068{transform:matrix(0.280826,0.010963,-0.009752,0.249810,0,0);-ms-transform:matrix(0.280826,0.010963,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.280826,0.010963,-0.009752,0.249810,0,0);}
.m90_c01068{transform:matrix(0.281207,0.010415,-0.009253,0.249829,0,0);-ms-transform:matrix(0.281207,0.010415,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.281207,0.010415,-0.009253,0.249829,0,0);}
.m7b_c01068{transform:matrix(0.281435,0.018612,-0.016497,0.249455,0,0);-ms-transform:matrix(0.281435,0.018612,-0.016497,0.249455,0,0);-webkit-transform:matrix(0.281435,0.018612,-0.016497,0.249455,0,0);}
.md9_c01068{transform:matrix(0.282552,0.011596,-0.010252,0.249790,0,0);-ms-transform:matrix(0.282552,0.011596,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.282552,0.011596,-0.010252,0.249790,0,0);}
.m11f_c01068{transform:matrix(0.282678,0.011318,-0.010002,0.249800,0,0);-ms-transform:matrix(0.282678,0.011318,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.282678,0.011318,-0.010002,0.249800,0,0);}
.m5f_c01068{transform:matrix(0.283730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283730,0.000000,0.000000,0.250000,0,0);}
.m14e_c01068{transform:matrix(0.286402,0.013188,-0.011499,0.249735,0,0);-ms-transform:matrix(0.286402,0.013188,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.286402,0.013188,-0.011499,0.249735,0,0);}
.ma_c01068{transform:matrix(0.287928,0.010664,-0.009253,0.249829,0,0);-ms-transform:matrix(0.287928,0.010664,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.287928,0.010664,-0.009253,0.249829,0,0);}
.m9_c01068{transform:matrix(0.289716,0.010730,-0.009253,0.249829,0,0);-ms-transform:matrix(0.289716,0.010730,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.289716,0.010730,-0.009253,0.249829,0,0);}
.m123_c01068{transform:matrix(0.289918,0.011608,-0.010002,0.249800,0,0);-ms-transform:matrix(0.289918,0.011608,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.289918,0.011608,-0.010002,0.249800,0,0);}
.mf4_c01068{transform:matrix(0.290674,0.011348,-0.009752,0.249810,0,0);-ms-transform:matrix(0.290674,0.011348,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.290674,0.011348,-0.009752,0.249810,0,0);}
.mee_c01068{transform:matrix(0.290988,0.011360,-0.009752,0.249810,0,0);-ms-transform:matrix(0.290988,0.011360,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.290988,0.011360,-0.009752,0.249810,0,0);}
.m126_c01068{transform:matrix(0.291217,0.011660,-0.010002,0.249800,0,0);-ms-transform:matrix(0.291217,0.011660,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.291217,0.011660,-0.010002,0.249800,0,0);}
.m14d_c01068{transform:matrix(0.292695,0.013477,-0.011499,0.249735,0,0);-ms-transform:matrix(0.292695,0.013477,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.292695,0.013477,-0.011499,0.249735,0,0);}
.m125_c01068{transform:matrix(0.296812,0.011884,-0.010002,0.249800,0,0);-ms-transform:matrix(0.296812,0.011884,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.296812,0.011884,-0.010002,0.249800,0,0);}
.m124_c01068{transform:matrix(0.296887,0.011887,-0.010002,0.249800,0,0);-ms-transform:matrix(0.296887,0.011887,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.296887,0.011887,-0.010002,0.249800,0,0);}
.mec_c01068{transform:matrix(0.296949,0.011593,-0.009752,0.249810,0,0);-ms-transform:matrix(0.296949,0.011593,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.296949,0.011593,-0.009752,0.249810,0,0);}
.m83_c01068{transform:matrix(0.298511,0.010757,-0.009003,0.249838,0,0);-ms-transform:matrix(0.298511,0.010757,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.298511,0.010757,-0.009003,0.249838,0,0);}
.mf3_c01068{transform:matrix(0.300186,0.011719,-0.009752,0.249810,0,0);-ms-transform:matrix(0.300186,0.011719,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.300186,0.011719,-0.009752,0.249810,0,0);}
.mf1_c01068{transform:matrix(0.300286,0.011723,-0.009752,0.249810,0,0);-ms-transform:matrix(0.300286,0.011723,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.300286,0.011723,-0.009752,0.249810,0,0);}
.mcf_c01068{transform:matrix(0.300422,0.012330,-0.010252,0.249790,0,0);-ms-transform:matrix(0.300422,0.012330,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.300422,0.012330,-0.010252,0.249790,0,0);}
.m128_c01068{transform:matrix(0.306190,0.012260,-0.010002,0.249800,0,0);-ms-transform:matrix(0.306190,0.012260,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.306190,0.012260,-0.010002,0.249800,0,0);}
.m101_c01068{transform:matrix(0.308487,0.011734,-0.009503,0.249819,0,0);-ms-transform:matrix(0.308487,0.011734,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.308487,0.011734,-0.009503,0.249819,0,0);}
.m129_c01068{transform:matrix(0.315462,0.012631,-0.010002,0.249800,0,0);-ms-transform:matrix(0.315462,0.012631,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.315462,0.012631,-0.010002,0.249800,0,0);}
.m12b_c01068{transform:matrix(0.342995,0.013734,-0.010002,0.249800,0,0);-ms-transform:matrix(0.342995,0.013734,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.342995,0.013734,-0.010002,0.249800,0,0);}
.m4c_c01068{transform:matrix(0.378520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378520,0.000000,0.000000,0.250000,0,0);}
.mf7_c01068{transform:matrix(0.419042,0.015940,-0.009503,0.249819,0,0);-ms-transform:matrix(0.419042,0.015940,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.419042,0.015940,-0.009503,0.249819,0,0);}
.v0_c01068{vertical-align:0.000000px;}
.ls0_c01068{letter-spacing:0.000000px;}
.sc__c01068{text-shadow:none;}
.sc0_c01068{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__c01068{-webkit-text-stroke:0px transparent;}
.sc0_c01068{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01068{word-spacing:0.000000px;}
.fc0_c01068{color:transparent;}
.fs12_c01068{font-size:65.984224px;}
.fs15_c01068{font-size:65.986832px;}
.fs19_c01068{font-size:66.003861px;}
.fs4_c01068{font-size:71.972131px;}
.fs2_c01068{font-size:71.977316px;}
.fs13_c01068{font-size:71.980017px;}
.fs14_c01068{font-size:71.982790px;}
.fs10_c01068{font-size:71.988551px;}
.fs18_c01068{font-size:71.994600px;}
.fs6_c01068{font-size:72.000000px;}
.fs9_c01068{font-size:72.012959px;}
.fsc_c01068{font-size:77.967116px;}
.fs5_c01068{font-size:77.969808px;}
.fsb_c01068{font-size:77.975426px;}
.fs7_c01068{font-size:77.981356px;}
.fs16_c01068{font-size:77.984437px;}
.fs1b_c01068{font-size:77.994150px;}
.fs8_c01068{font-size:78.014039px;}
.fs3_c01068{font-size:83.959040px;}
.fs11_c01068{font-size:83.979922px;}
.fsd_c01068{font-size:83.983240px;}
.fsf_c01068{font-size:83.986643px;}
.fs1a_c01068{font-size:84.004914px;}
.fsa_c01068{font-size:89.968359px;}
.fs0_c01068{font-size:89.989424px;}
.fs1_c01068{font-size:90.000000px;}
.fse_c01068{font-size:90.025916px;}
.fs17_c01068{font-size:95.980846px;}
.y0_c01068{bottom:0.000000px;}
.y15e_c01068{bottom:70.280428px;}
.y15d_c01068{bottom:72.697050px;}
.y15c_c01068{bottom:75.545886px;}
.y15b_c01068{bottom:76.928185px;}
.y15a_c01068{bottom:77.858147px;}
.y159_c01068{bottom:79.335261px;}
.y158_c01068{bottom:83.098900px;}
.y157_c01068{bottom:84.502937px;}
.y156_c01068{bottom:86.903498px;}
.y155_c01068{bottom:88.312500px;}
.y154_c01068{bottom:111.116049px;}
.y153_c01068{bottom:114.735030px;}
.y152_c01068{bottom:115.755816px;}
.y151_c01068{bottom:117.745500px;}
.y14d_c01068{bottom:121.536661px;}
.y14c_c01068{bottom:122.944632px;}
.y14b_c01068{bottom:124.367824px;}
.y14a_c01068{bottom:127.268002px;}
.y149_c01068{bottom:128.622116px;}
.y148_c01068{bottom:130.074526px;}
.y147_c01068{bottom:134.821984px;}
.y146_c01068{bottom:135.803416px;}
.y145_c01068{bottom:139.990112px;}
.y144_c01068{bottom:142.306500px;}
.y150_c01068{bottom:148.862619px;}
.y14f_c01068{bottom:151.485585px;}
.y14e_c01068{bottom:155.007000px;}
.y143_c01068{bottom:159.300885px;}
.y142_c01068{bottom:160.145754px;}
.y141_c01068{bottom:163.428440px;}
.y140_c01068{bottom:166.790691px;}
.y13f_c01068{bottom:167.893880px;}
.y13e_c01068{bottom:169.088817px;}
.y13d_c01068{bottom:171.969590px;}
.y13c_c01068{bottom:173.562719px;}
.y13b_c01068{bottom:174.841962px;}
.y13a_c01068{bottom:176.065341px;}
.y139_c01068{bottom:177.684152px;}
.y138_c01068{bottom:184.825386px;}
.y137_c01068{bottom:189.778626px;}
.y136_c01068{bottom:193.768866px;}
.y135_c01068{bottom:195.102246px;}
.y134_c01068{bottom:196.409706px;}
.y133_c01068{bottom:200.869986px;}
.y132_c01068{bottom:201.712146px;}
.y131_c01068{bottom:203.084406px;}
.y130_c01068{bottom:205.661826px;}
.y12f_c01068{bottom:208.727886px;}
.y12e_c01068{bottom:210.126906px;}
.y12d_c01068{bottom:211.433526px;}
.y12c_c01068{bottom:220.304280px;}
.y12b_c01068{bottom:221.681280px;}
.y12a_c01068{bottom:222.586440px;}
.y129_c01068{bottom:227.886300px;}
.y128_c01068{bottom:228.848040px;}
.y127_c01068{bottom:231.911520px;}
.y126_c01068{bottom:235.466640px;}
.y125_c01068{bottom:237.258420px;}
.y124_c01068{bottom:239.868660px;}
.y123_c01068{bottom:242.025180px;}
.y122_c01068{bottom:243.785880px;}
.y121_c01068{bottom:245.096400px;}
.y120_c01068{bottom:247.341000px;}
.y11f_c01068{bottom:256.440960px;}
.y11e_c01068{bottom:258.679980px;}
.y11d_c01068{bottom:260.489880px;}
.y11c_c01068{bottom:261.350580px;}
.y11b_c01068{bottom:263.119080px;}
.y11a_c01068{bottom:264.422700px;}
.y119_c01068{bottom:265.821240px;}
.y118_c01068{bottom:268.448700px;}
.y117_c01068{bottom:270.210720px;}
.y116_c01068{bottom:271.540200px;}
.y115_c01068{bottom:273.307800px;}
.y114_c01068{bottom:274.216020px;}
.y113_c01068{bottom:277.699920px;}
.y112_c01068{bottom:279.018180px;}
.y111_c01068{bottom:284.065500px;}
.y110_c01068{bottom:294.488325px;}
.y10f_c01068{bottom:295.828326px;}
.y10e_c01068{bottom:297.936023px;}
.y10d_c01068{bottom:301.064369px;}
.y10c_c01068{bottom:302.733023px;}
.y10b_c01068{bottom:304.061674px;}
.y10a_c01068{bottom:305.325977px;}
.y109_c01068{bottom:308.366397px;}
.y108_c01068{bottom:309.641638px;}
.y107_c01068{bottom:311.391549px;}
.y106_c01068{bottom:313.913718px;}
.y105_c01068{bottom:316.100682px;}
.y104_c01068{bottom:317.400611px;}
.y103_c01068{bottom:319.968000px;}
.y102_c01068{bottom:330.043458px;}
.y101_c01068{bottom:332.631372px;}
.y100_c01068{bottom:333.494523px;}
.yff_c01068{bottom:337.697988px;}
.yfe_c01068{bottom:338.978379px;}
.yfd_c01068{bottom:340.610118px;}
.yfc_c01068{bottom:341.463009px;}
.yfb_c01068{bottom:343.949976px;}
.yfa_c01068{bottom:346.540626px;}
.yf9_c01068{bottom:349.441983px;}
.yf8_c01068{bottom:350.403288px;}
.yf7_c01068{bottom:352.312617px;}
.yf6_c01068{bottom:353.989500px;}
.yf5_c01068{bottom:368.357096px;}
.yf4_c01068{bottom:372.138032px;}
.yf3_c01068{bottom:373.443509px;}
.yf2_c01068{bottom:375.567423px;}
.yf1_c01068{bottom:379.756788px;}
.yf0_c01068{bottom:381.862041px;}
.yef_c01068{bottom:382.732390px;}
.yee_c01068{bottom:385.651518px;}
.yed_c01068{bottom:386.460596px;}
.yec_c01068{bottom:389.399928px;}
.yeb_c01068{bottom:390.620769px;}
.yea_c01068{bottom:392.329468px;}
.ye9_c01068{bottom:401.063379px;}
.ye8_c01068{bottom:402.771228px;}
.ye7_c01068{bottom:404.099471px;}
.ye6_c01068{bottom:405.392437px;}
.ye5_c01068{bottom:408.834109px;}
.ye4_c01068{bottom:409.756362px;}
.ye3_c01068{bottom:413.552485px;}
.ye2_c01068{bottom:414.845862px;}
.ye1_c01068{bottom:417.485792px;}
.ye0_c01068{bottom:419.229150px;}
.ydf_c01068{bottom:420.926469px;}
.yde_c01068{bottom:423.474554px;}
.ydd_c01068{bottom:426.079500px;}
.ydc_c01068{bottom:435.219387px;}
.ydb_c01068{bottom:436.600000px;}
.yda_c01068{bottom:437.956383px;}
.yd9_c01068{bottom:442.137153px;}
.yd8_c01068{bottom:443.426562px;}
.yd7_c01068{bottom:445.217504px;}
.yd6_c01068{bottom:447.060843px;}
.yd5_c01068{bottom:448.445700px;}
.yd4_c01068{bottom:450.691003px;}
.yd3_c01068{bottom:452.528439px;}
.yd2_c01068{bottom:455.249015px;}
.yd1_c01068{bottom:457.008776px;}
.yd0_c01068{bottom:458.813493px;}
.ycf_c01068{bottom:462.342793px;}
.yce_c01068{bottom:463.341000px;}
.ycd_c01068{bottom:471.549223px;}
.ycc_c01068{bottom:475.677411px;}
.ycb_c01068{bottom:479.809842px;}
.yca_c01068{bottom:481.143469px;}
.yc9_c01068{bottom:485.694408px;}
.yc8_c01068{bottom:487.488486px;}
.yc7_c01068{bottom:488.862765px;}
.yc6_c01068{bottom:491.972635px;}
.yc5_c01068{bottom:496.049778px;}
.yc4_c01068{bottom:499.249500px;}
.yc3_c01068{bottom:520.797336px;}
.yc2_c01068{bottom:521.354904px;}
.yc1_c01068{bottom:522.133368px;}
.yc0_c01068{bottom:524.301576px;}
.ybf_c01068{bottom:525.118128px;}
.ybe_c01068{bottom:526.664112px;}
.ybd_c01068{bottom:529.333260px;}
.ybc_c01068{bottom:530.364048px;}
.ybb_c01068{bottom:531.420756px;}
.yba_c01068{bottom:533.312988px;}
.yb9_c01068{bottom:534.084972px;}
.yb8_c01068{bottom:535.146000px;}
.yb7_c01068{bottom:548.070123px;}
.yb6_c01068{bottom:549.708483px;}
.yb5_c01068{bottom:551.359774px;}
.yb4_c01068{bottom:553.384858px;}
.yb3_c01068{bottom:554.260815px;}
.yb2_c01068{bottom:556.253376px;}
.yb1_c01068{bottom:557.130054px;}
.yb0_c01068{bottom:559.912047px;}
.yaf_c01068{bottom:565.261192px;}
.yae_c01068{bottom:568.549345px;}
.yad_c01068{bottom:569.777671px;}
.yac_c01068{bottom:571.336500px;}
.yab_c01068{bottom:580.489020px;}
.yaa_c01068{bottom:583.664280px;}
.ya9_c01068{bottom:585.846300px;}
.ya8_c01068{bottom:587.652360px;}
.ya7_c01068{bottom:592.108740px;}
.ya6_c01068{bottom:593.423580px;}
.ya5_c01068{bottom:596.951940px;}
.ya4_c01068{bottom:598.281000px;}
.ya3_c01068{bottom:599.978700px;}
.ya2_c01068{bottom:601.307760px;}
.ya1_c01068{bottom:605.325600px;}
.ya0_c01068{bottom:607.518000px;}
.y9f_c01068{bottom:618.444810px;}
.y9e_c01068{bottom:621.034896px;}
.y9d_c01068{bottom:622.208304px;}
.y9c_c01068{bottom:624.086175px;}
.y9b_c01068{bottom:625.612299px;}
.y9a_c01068{bottom:627.853443px;}
.y99_c01068{bottom:630.524517px;}
.y98_c01068{bottom:634.602783px;}
.y97_c01068{bottom:636.918846px;}
.y94_c01068{bottom:637.423648px;}
.y96_c01068{bottom:638.745564px;}
.y95_c01068{bottom:640.996500px;}
.y93_c01068{bottom:646.918311px;}
.y92_c01068{bottom:651.441894px;}
.y91_c01068{bottom:652.666834px;}
.y90_c01068{bottom:656.821675px;}
.y8f_c01068{bottom:658.417522px;}
.y8e_c01068{bottom:659.687584px;}
.y8d_c01068{bottom:663.373228px;}
.y8c_c01068{bottom:664.539783px;}
.y8b_c01068{bottom:666.179586px;}
.y8a_c01068{bottom:667.860070px;}
.y89_c01068{bottom:670.312615px;}
.y88_c01068{bottom:671.478060px;}
.y87_c01068{bottom:672.711159px;}
.y86_c01068{bottom:676.366500px;}
.y7c_c01068{bottom:686.931894px;}
.y7b_c01068{bottom:691.018272px;}
.y7a_c01068{bottom:692.330469px;}
.y79_c01068{bottom:693.724800px;}
.y78_c01068{bottom:696.327807px;}
.y77_c01068{bottom:698.096307px;}
.y76_c01068{bottom:700.315491px;}
.y75_c01068{bottom:701.720157px;}
.y74_c01068{bottom:704.350851px;}
.y73_c01068{bottom:706.054446px;}
.y72_c01068{bottom:710.079471px;}
.y71_c01068{bottom:711.411075px;}
.y70_c01068{bottom:713.978238px;}
.y6f_c01068{bottom:726.075000px;}
.y85_c01068{bottom:728.438154px;}
.y84_c01068{bottom:729.661794px;}
.y83_c01068{bottom:733.642998px;}
.y82_c01068{bottom:734.800326px;}
.y81_c01068{bottom:738.766680px;}
.y80_c01068{bottom:742.377120px;}
.y7f_c01068{bottom:743.170488px;}
.y7e_c01068{bottom:746.723310px;}
.y7d_c01068{bottom:748.720500px;}
.y6e_c01068{bottom:759.841327px;}
.y6d_c01068{bottom:761.942881px;}
.y6c_c01068{bottom:766.311310px;}
.y6b_c01068{bottom:769.787263px;}
.y6a_c01068{bottom:771.525883px;}
.y69_c01068{bottom:775.931460px;}
.y68_c01068{bottom:777.080400px;}
.y67_c01068{bottom:780.988960px;}
.y66_c01068{bottom:782.305035px;}
.y65_c01068{bottom:783.069045px;}
.y64_c01068{bottom:785.715000px;}
.y63_c01068{bottom:796.045500px;}
.y62_c01068{bottom:797.149500px;}
.y61_c01068{bottom:800.466000px;}
.y60_c01068{bottom:802.329000px;}
.y5f_c01068{bottom:805.261500px;}
.y5e_c01068{bottom:806.311500px;}
.y5d_c01068{bottom:808.518000px;}
.y5c_c01068{bottom:809.590500px;}
.y5b_c01068{bottom:810.682500px;}
.y5a_c01068{bottom:811.779000px;}
.y59_c01068{bottom:813.238500px;}
.y58_c01068{bottom:816.511500px;}
.y57_c01068{bottom:817.590000px;}
.y56_c01068{bottom:818.658000px;}
.y55_c01068{bottom:831.804000px;}
.y54_c01068{bottom:832.950000px;}
.y53_c01068{bottom:834.112500px;}
.y52_c01068{bottom:837.249000px;}
.y51_c01068{bottom:840.708000px;}
.y50_c01068{bottom:841.863000px;}
.y4f_c01068{bottom:844.555500px;}
.y4e_c01068{bottom:846.501000px;}
.y4d_c01068{bottom:847.642500px;}
.y4c_c01068{bottom:851.157000px;}
.y4b_c01068{bottom:852.303000px;}
.y4a_c01068{bottom:854.568000px;}
.y49_c01068{bottom:868.965000px;}
.y48_c01068{bottom:871.282500px;}
.y47_c01068{bottom:872.539500px;}
.y46_c01068{bottom:873.685500px;}
.y45_c01068{bottom:876.370500px;}
.y44_c01068{bottom:877.522500px;}
.y43_c01068{bottom:880.999500px;}
.y42_c01068{bottom:883.362000px;}
.y41_c01068{bottom:884.476500px;}
.y40_c01068{bottom:886.056000px;}
.y3f_c01068{bottom:887.223000px;}
.y3e_c01068{bottom:889.084500px;}
.y3d_c01068{bottom:891.825000px;}
.y3c_c01068{bottom:905.002500px;}
.y3b_c01068{bottom:907.173000px;}
.y3a_c01068{bottom:910.558500px;}
.y39_c01068{bottom:913.066500px;}
.y38_c01068{bottom:915.595500px;}
.y37_c01068{bottom:917.671500px;}
.y36_c01068{bottom:918.933000px;}
.y35_c01068{bottom:921.906000px;}
.y34_c01068{bottom:923.128500px;}
.y33_c01068{bottom:924.769500px;}
.y32_c01068{bottom:961.062000px;}
.y31_c01068{bottom:976.151499px;}
.y30_c01068{bottom:976.956393px;}
.y2f_c01068{bottom:979.533663px;}
.y2e_c01068{bottom:981.058090px;}
.y2d_c01068{bottom:983.365075px;}
.y2c_c01068{bottom:987.524967px;}
.y2b_c01068{bottom:988.643902px;}
.y2a_c01068{bottom:989.731681px;}
.y29_c01068{bottom:991.603879px;}
.y28_c01068{bottom:993.488415px;}
.y27_c01068{bottom:994.598215px;}
.y26_c01068{bottom:996.847479px;}
.y25_c01068{bottom:997.947882px;}
.y24_c01068{bottom:1009.449945px;}
.y23_c01068{bottom:1010.619068px;}
.y22_c01068{bottom:1014.102810px;}
.y21_c01068{bottom:1016.080642px;}
.y20_c01068{bottom:1018.800247px;}
.y1f_c01068{bottom:1019.967165px;}
.y1e_c01068{bottom:1021.091662px;}
.y1d_c01068{bottom:1025.345002px;}
.y1c_c01068{bottom:1027.664295px;}
.y1b_c01068{bottom:1030.773765px;}
.y1a_c01068{bottom:1031.918160px;}
.y19_c01068{bottom:1033.840500px;}
.y18_c01068{bottom:1048.296324px;}
.y17_c01068{bottom:1050.092532px;}
.y16_c01068{bottom:1053.663444px;}
.y15_c01068{bottom:1055.099700px;}
.y14_c01068{bottom:1057.951908px;}
.y13_c01068{bottom:1058.990388px;}
.y12_c01068{bottom:1060.027188px;}
.y11_c01068{bottom:1063.190292px;}
.y10_c01068{bottom:1064.649444px;}
.yf_c01068{bottom:1068.136500px;}
.ye_c01068{bottom:1082.815650px;}
.yd_c01068{bottom:1084.507956px;}
.yc_c01068{bottom:1086.503458px;}
.yb_c01068{bottom:1087.768359px;}
.ya_c01068{bottom:1094.299210px;}
.y9_c01068{bottom:1095.601074px;}
.y8_c01068{bottom:1099.649077px;}
.y7_c01068{bottom:1102.458765px;}
.y6_c01068{bottom:1103.778000px;}
.y5_c01068{bottom:1137.943500px;}
.y4_c01068{bottom:1186.101801px;}
.y3_c01068{bottom:1186.182567px;}
.y2_c01068{bottom:1186.693371px;}
.y1_c01068{bottom:1188.009000px;}
.h14_c01068{height:65.984224px;}
.h17_c01068{height:65.986832px;}
.h1b_c01068{height:66.003861px;}
.h6_c01068{height:71.972131px;}
.h4_c01068{height:71.977316px;}
.h15_c01068{height:71.980017px;}
.h16_c01068{height:71.982790px;}
.h12_c01068{height:71.988551px;}
.h1a_c01068{height:71.994600px;}
.h8_c01068{height:72.000000px;}
.hb_c01068{height:72.012959px;}
.he_c01068{height:77.967116px;}
.h7_c01068{height:77.969808px;}
.hd_c01068{height:77.975426px;}
.h9_c01068{height:77.981356px;}
.h18_c01068{height:77.984437px;}
.h1d_c01068{height:77.994150px;}
.ha_c01068{height:78.014039px;}
.h5_c01068{height:83.959040px;}
.h13_c01068{height:83.979922px;}
.hf_c01068{height:83.983240px;}
.h11_c01068{height:83.986643px;}
.h1c_c01068{height:84.004914px;}
.hc_c01068{height:89.968359px;}
.h2_c01068{height:89.989424px;}
.h3_c01068{height:90.000000px;}
.h10_c01068{height:90.025916px;}
.h19_c01068{height:95.980846px;}
.h0_c01068{height:1246.320000px;}
.h1_c01068{height:1246.500000px;}
.w0_c01068{width:900.450000px;}
.w1_c01068{width:900.750000px;}
.x0_c01068{left:0.000000px;}
.xce_c01068{left:125.724000px;}
.xf0_c01068{left:136.638000px;}
.xde_c01068{left:139.190224px;}
.xd5_c01068{left:140.692500px;}
.xc6_c01068{left:142.368000px;}
.xb1_c01068{left:144.745500px;}
.xa3_c01068{left:146.112000px;}
.x97_c01068{left:147.463500px;}
.x85_c01068{left:149.386500px;}
.x7f_c01068{left:150.732000px;}
.x10_c01068{left:151.744500px;}
.x5d_c01068{left:153.781500px;}
.x3c_c01068{left:156.994500px;}
.x31_c01068{left:160.110000px;}
.x1a_c01068{left:161.698500px;}
.x5_c01068{left:164.160000px;}
.xf1_c01068{left:169.372732px;}
.xa4_c01068{left:170.434154px;}
.xdf_c01068{left:171.823059px;}
.xe6_c01068{left:182.470954px;}
.x54_c01068{left:188.796000px;}
.x8f_c01068{left:191.759870px;}
.x25_c01068{left:193.406913px;}
.xd6_c01068{left:196.751385px;}
.x86_c01068{left:204.141690px;}
.xe0_c01068{left:206.763583px;}
.x70_c01068{left:208.471523px;}
.xb2_c01068{left:211.472207px;}
.xe7_c01068{left:215.498857px;}
.x1b_c01068{left:216.567576px;}
.x65_c01068{left:217.847415px;}
.xb6_c01068{left:221.142711px;}
.x49_c01068{left:222.216000px;}
.x98_c01068{left:223.839000px;}
.x90_c01068{left:224.924671px;}
.xd7_c01068{left:229.481622px;}
.x3d_c01068{left:235.312500px;}
.xbd_c01068{left:238.486626px;}
.x5e_c01068{left:241.129065px;}
.x6_c01068{left:243.540000px;}
.x1c_c01068{left:249.231879px;}
.x66_c01068{left:251.010297px;}
.x4a_c01068{left:254.968500px;}
.xa5_c01068{left:256.428573px;}
.xf2_c01068{left:257.763254px;}
.x26_c01068{left:259.491574px;}
.x11_c01068{left:260.606029px;}
.xbe_c01068{left:263.758828px;}
.x32_c01068{left:269.467500px;}
.x80_c01068{left:270.543069px;}
.x7_c01068{left:271.951500px;}
.xd8_c01068{left:273.455105px;}
.x5f_c01068{left:274.840820px;}
.xb3_c01068{left:276.742371px;}
.xe1_c01068{left:283.338432px;}
.x76_c01068{left:284.618880px;}
.x3e_c01068{left:288.484500px;}
.xea_c01068{left:291.088766px;}
.x27_c01068{left:292.110579px;}
.xb7_c01068{left:298.433887px;}
.xa6_c01068{left:300.402055px;}
.x99_c01068{left:302.682000px;}
.x87_c01068{left:304.487244px;}
.x12_c01068{left:306.158931px;}
.x8_c01068{left:307.570845px;}
.x33_c01068{left:312.657000px;}
.x91_c01068{left:313.704803px;}
.x77_c01068{left:316.085882px;}
.x55_c01068{left:320.626500px;}
.x3f_c01068{left:321.825000px;}
.x9c_c01068{left:323.971016px;}
.xd9_c01068{left:327.314191px;}
.x71_c01068{left:329.078295px;}
.x1d_c01068{left:337.985037px;}
.xbf_c01068{left:340.033977px;}
.xa7_c01068{left:343.280135px;}
.x34_c01068{left:344.842500px;}
.x28_c01068{left:347.485093px;}
.x67_c01068{left:351.296832px;}
.x4b_c01068{left:355.386000px;}
.xc7_c01068{left:362.057091px;}
.x56_c01068{left:364.876500px;}
.x40_c01068{left:366.939000px;}
.xcf_c01068{left:371.714763px;}
.x60_c01068{left:374.960100px;}
.x88_c01068{left:380.080575px;}
.x78_c01068{left:382.304597px;}
.x9_c01068{left:383.432408px;}
.x4c_c01068{left:388.000500px;}
.x9a_c01068{left:389.661000px;}
.xda_c01068{left:392.504935px;}
.x68_c01068{left:393.745077px;}
.xb8_c01068{left:396.432097px;}
.x41_c01068{left:398.788500px;}
.xf3_c01068{left:401.124749px;}
.x29_c01068{left:402.507460px;}
.x13_c01068{left:404.907084px;}
.xc8_c01068{left:406.881722px;}
.xc0_c01068{left:408.140802px;}
.xa8_c01068{left:409.569279px;}
.x89_c01068{left:413.273849px;}
.xb9_c01068{left:419.303082px;}
.x35_c01068{left:423.081000px;}
.xeb_c01068{left:424.185536px;}
.x79_c01068{left:427.677678px;}
.x72_c01068{left:429.268005px;}
.x57_c01068{left:431.215500px;}
.x9d_c01068{left:433.231146px;}
.x2a_c01068{left:434.455084px;}
.x14_c01068{left:437.274684px;}
.xd0_c01068{left:438.543368px;}
.xc9_c01068{left:439.547523px;}
.x1_c01068{left:441.246000px;}
.x4d_c01068{left:443.599500px;}
.xa9_c01068{left:454.339963px;}
.x36_c01068{left:456.283500px;}
.x92_c01068{left:458.131731px;}
.x69_c01068{left:459.283629px;}
.x58_c01068{left:463.731000px;}
.x42_c01068{left:466.309500px;}
.x2b_c01068{left:467.334828px;}
.x15_c01068{left:469.694731px;}
.x2_c01068{left:472.539176px;}
.xba_c01068{left:474.652344px;}
.x9e_c01068{left:476.945388px;}
.x7e_c01068{left:478.568403px;}
.x3_c01068{left:484.689014px;}
.x4_c01068{left:486.610091px;}
.xec_c01068{left:489.388267px;}
.xa_c01068{left:492.728502px;}
.x6a_c01068{left:494.301567px;}
.xc1_c01068{left:495.943911px;}
.xf4_c01068{left:499.424850px;}
.x8a_c01068{left:501.394640px;}
.x7a_c01068{left:503.449330px;}
.xaa_c01068{left:509.048700px;}
.x37_c01068{left:510.930000px;}
.xe2_c01068{left:514.410129px;}
.xd1_c01068{left:515.753580px;}
.x61_c01068{left:517.241176px;}
.x4e_c01068{left:520.521000px;}
.xe8_c01068{left:523.604880px;}
.x1e_c01068{left:525.586748px;}
.xb_c01068{left:527.878817px;}
.x59_c01068{left:530.592000px;}
.x8b_c01068{left:534.232769px;}
.x81_c01068{left:536.905940px;}
.x73_c01068{left:539.334328px;}
.xab_c01068{left:542.791923px;}
.xe3_c01068{left:547.063942px;}
.x6b_c01068{left:549.616149px;}
.x4f_c01068{left:553.515000px;}
.xf5_c01068{left:555.569149px;}
.x1f_c01068{left:557.683119px;}
.x16_c01068{left:558.737100px;}
.x5a_c01068{left:562.420500px;}
.x43_c01068{left:565.660500px;}
.x74_c01068{left:571.450180px;}
.xc2_c01068{left:572.502276px;}
.x38_c01068{left:577.465500px;}
.xe4_c01068{left:580.365108px;}
.xd2_c01068{left:581.374393px;}
.xbb_c01068{left:584.770890px;}
.xb4_c01068{left:586.492811px;}
.x9f_c01068{left:587.832890px;}
.x2c_c01068{left:589.538759px;}
.x20_c01068{left:590.990278px;}
.x6c_c01068{left:593.682429px;}
.x44_c01068{left:598.588500px;}
.xdb_c01068{left:602.554176px;}
.x17_c01068{left:603.575217px;}
.x93_c01068{left:610.714995px;}
.xe9_c01068{left:612.224802px;}
.xd3_c01068{left:616.302930px;}
.xa0_c01068{left:620.327862px;}
.xed_c01068{left:622.541981px;}
.xca_c01068{left:626.591791px;}
.xac_c01068{left:631.344282px;}
.x94_c01068{left:634.365821px;}
.x7b_c01068{left:637.253393px;}
.xbc_c01068{left:640.598174px;}
.x39_c01068{left:643.462500px;}
.x8c_c01068{left:645.530859px;}
.x82_c01068{left:647.597138px;}
.xd4_c01068{left:648.860839px;}
.x5b_c01068{left:651.294000px;}
.x50_c01068{left:652.336500px;}
.x2d_c01068{left:657.313780px;}
.x6d_c01068{left:658.552230px;}
.xad_c01068{left:662.761833px;}
.x21_c01068{left:668.615576px;}
.x45_c01068{left:675.307500px;}
.x7c_c01068{left:680.341262px;}
.x75_c01068{left:681.928592px;}
.xc3_c01068{left:683.009159px;}
.x95_c01068{left:689.043089px;}
.x8d_c01068{left:690.637208px;}
.x6e_c01068{left:693.300213px;}
.x2e_c01068{left:702.110016px;}
.xc_c01068{left:704.211807px;}
.xc4_c01068{left:705.700944px;}
.xcb_c01068{left:706.725578px;}
.x46_c01068{left:708.055500px;}
.xef_c01068{left:711.189555px;}
.x18_c01068{left:715.054626px;}
.xa1_c01068{left:721.018071px;}
.x9b_c01068{left:722.092500px;}
.x22_c01068{left:725.068566px;}
.x3a_c01068{left:732.537000px;}
.x96_c01068{left:733.627959px;}
.x83_c01068{left:737.250894px;}
.xd_c01068{left:738.364121px;}
.x51_c01068{left:741.970500px;}
.x47_c01068{left:743.953500px;}
.x8e_c01068{left:745.133157px;}
.xdc_c01068{left:758.937636px;}
.xcc_c01068{left:760.715034px;}
.x62_c01068{left:762.713459px;}
.xae_c01068{left:764.629863px;}
.x19_c01068{left:771.129995px;}
.xc5_c01068{left:773.735841px;}
.x52_c01068{left:775.186500px;}
.x2f_c01068{left:777.813864px;}
.xdd_c01068{left:781.544007px;}
.xb5_c01068{left:785.543061px;}
.x64_c01068{left:787.168500px;}
.x3b_c01068{left:789.673500px;}
.xe_c01068{left:792.242688px;}
.xcd_c01068{left:795.039675px;}
.xaf_c01068{left:797.679280px;}
.x30_c01068{left:801.473022px;}
.xee_c01068{left:802.727927px;}
.xe5_c01068{left:803.728521px;}
.x53_c01068{left:807.921000px;}
.x48_c01068{left:810.183000px;}
.x84_c01068{left:813.353715px;}
.x63_c01068{left:816.545572px;}
.xa2_c01068{left:821.604884px;}
.x23_c01068{left:824.504530px;}
.x7d_c01068{left:825.595362px;}
.x6f_c01068{left:827.815878px;}
.xb0_c01068{left:831.319107px;}
.xf_c01068{left:837.934950px;}
.x5c_c01068{left:841.687500px;}
.x24_c01068{left:857.874627px;}
@media print{
.v0_c01068{vertical-align:0.000000pt;}
.ls0_c01068{letter-spacing:0.000000pt;}
.ws0_c01068{word-spacing:0.000000pt;}
.fs12_c01068{font-size:58.652644pt;}
.fs15_c01068{font-size:58.654961pt;}
.fs19_c01068{font-size:58.670099pt;}
.fs4_c01068{font-size:63.975227pt;}
.fs2_c01068{font-size:63.979837pt;}
.fs13_c01068{font-size:63.982238pt;}
.fs14_c01068{font-size:63.984702pt;}
.fs10_c01068{font-size:63.989823pt;}
.fs18_c01068{font-size:63.995200pt;}
.fs6_c01068{font-size:64.000000pt;}
.fs9_c01068{font-size:64.011519pt;}
.fsc_c01068{font-size:69.304103pt;}
.fs5_c01068{font-size:69.306496pt;}
.fsb_c01068{font-size:69.311490pt;}
.fs7_c01068{font-size:69.316761pt;}
.fs16_c01068{font-size:69.319500pt;}
.fs1b_c01068{font-size:69.328133pt;}
.fs8_c01068{font-size:69.345812pt;}
.fs3_c01068{font-size:74.630258pt;}
.fs11_c01068{font-size:74.648819pt;}
.fsd_c01068{font-size:74.651769pt;}
.fsf_c01068{font-size:74.654794pt;}
.fs1a_c01068{font-size:74.671035pt;}
.fsa_c01068{font-size:79.971875pt;}
.fs0_c01068{font-size:79.990599pt;}
.fs1_c01068{font-size:80.000000pt;}
.fse_c01068{font-size:80.023037pt;}
.fs17_c01068{font-size:85.316308pt;}
.y0_c01068{bottom:0.000000pt;}
.y15e_c01068{bottom:62.471492pt;}
.y15d_c01068{bottom:64.619600pt;}
.y15c_c01068{bottom:67.151899pt;}
.y15b_c01068{bottom:68.380609pt;}
.y15a_c01068{bottom:69.207241pt;}
.y159_c01068{bottom:70.520232pt;}
.y158_c01068{bottom:73.865689pt;}
.y157_c01068{bottom:75.113721pt;}
.y156_c01068{bottom:77.247553pt;}
.y155_c01068{bottom:78.500000pt;}
.y154_c01068{bottom:98.769821pt;}
.y153_c01068{bottom:101.986693pt;}
.y152_c01068{bottom:102.894059pt;}
.y151_c01068{bottom:104.662667pt;}
.y14d_c01068{bottom:108.032588pt;}
.y14c_c01068{bottom:109.284117pt;}
.y14b_c01068{bottom:110.549177pt;}
.y14a_c01068{bottom:113.127113pt;}
.y149_c01068{bottom:114.330769pt;}
.y148_c01068{bottom:115.621801pt;}
.y147_c01068{bottom:119.841764pt;}
.y146_c01068{bottom:120.714148pt;}
.y145_c01068{bottom:124.435655pt;}
.y144_c01068{bottom:126.494667pt;}
.y150_c01068{bottom:132.322328pt;}
.y14f_c01068{bottom:134.653853pt;}
.y14e_c01068{bottom:137.784000pt;}
.y143_c01068{bottom:141.600787pt;}
.y142_c01068{bottom:142.351781pt;}
.y141_c01068{bottom:145.269724pt;}
.y140_c01068{bottom:148.258392pt;}
.y13f_c01068{bottom:149.239004pt;}
.y13e_c01068{bottom:150.301171pt;}
.y13d_c01068{bottom:152.861857pt;}
.y13c_c01068{bottom:154.277972pt;}
.y13b_c01068{bottom:155.415077pt;}
.y13a_c01068{bottom:156.502525pt;}
.y139_c01068{bottom:157.941468pt;}
.y138_c01068{bottom:164.289232pt;}
.y137_c01068{bottom:168.692112pt;}
.y136_c01068{bottom:172.238992pt;}
.y135_c01068{bottom:173.424219pt;}
.y134_c01068{bottom:174.586405pt;}
.y133_c01068{bottom:178.551099pt;}
.y132_c01068{bottom:179.299685pt;}
.y131_c01068{bottom:180.519472pt;}
.y130_c01068{bottom:182.810512pt;}
.y12f_c01068{bottom:185.535899pt;}
.y12e_c01068{bottom:186.779472pt;}
.y12d_c01068{bottom:187.940912pt;}
.y12c_c01068{bottom:195.826027pt;}
.y12b_c01068{bottom:197.050027pt;}
.y12a_c01068{bottom:197.854613pt;}
.y129_c01068{bottom:202.565600pt;}
.y128_c01068{bottom:203.420480pt;}
.y127_c01068{bottom:206.143573pt;}
.y126_c01068{bottom:209.303680pt;}
.y125_c01068{bottom:210.896373pt;}
.y124_c01068{bottom:213.216587pt;}
.y123_c01068{bottom:215.133493pt;}
.y122_c01068{bottom:216.698560pt;}
.y121_c01068{bottom:217.863467pt;}
.y120_c01068{bottom:219.858667pt;}
.y11f_c01068{bottom:227.947520pt;}
.y11e_c01068{bottom:229.937760pt;}
.y11d_c01068{bottom:231.546560pt;}
.y11c_c01068{bottom:232.311627pt;}
.y11b_c01068{bottom:233.883627pt;}
.y11a_c01068{bottom:235.042400pt;}
.y119_c01068{bottom:236.285547pt;}
.y118_c01068{bottom:238.621067pt;}
.y117_c01068{bottom:240.187307pt;}
.y116_c01068{bottom:241.369067pt;}
.y115_c01068{bottom:242.940267pt;}
.y114_c01068{bottom:243.747573pt;}
.y113_c01068{bottom:246.844373pt;}
.y112_c01068{bottom:248.016160pt;}
.y111_c01068{bottom:252.502667pt;}
.y110_c01068{bottom:261.767400pt;}
.y10f_c01068{bottom:262.958512pt;}
.y10e_c01068{bottom:264.832020pt;}
.y10d_c01068{bottom:267.612772pt;}
.y10c_c01068{bottom:269.096020pt;}
.y10b_c01068{bottom:270.277044pt;}
.y10a_c01068{bottom:271.400868pt;}
.y109_c01068{bottom:274.103464pt;}
.y108_c01068{bottom:275.237012pt;}
.y107_c01068{bottom:276.792488pt;}
.y106_c01068{bottom:279.034416pt;}
.y105_c01068{bottom:280.978384pt;}
.y104_c01068{bottom:282.133876pt;}
.y103_c01068{bottom:284.416000pt;}
.y102_c01068{bottom:293.371963pt;}
.y101_c01068{bottom:295.672331pt;}
.y100_c01068{bottom:296.439576pt;}
.yff_c01068{bottom:300.175989pt;}
.yfe_c01068{bottom:301.314115pt;}
.yfd_c01068{bottom:302.764549pt;}
.yfc_c01068{bottom:303.522675pt;}
.yfb_c01068{bottom:305.733312pt;}
.yfa_c01068{bottom:308.036112pt;}
.yf9_c01068{bottom:310.615096pt;}
.yf8_c01068{bottom:311.469589pt;}
.yf7_c01068{bottom:313.166771pt;}
.yf6_c01068{bottom:314.657333pt;}
.yf5_c01068{bottom:327.428529pt;}
.yf4_c01068{bottom:330.789361pt;}
.yf3_c01068{bottom:331.949785pt;}
.yf2_c01068{bottom:333.837709pt;}
.yf1_c01068{bottom:337.561589pt;}
.yf0_c01068{bottom:339.432925pt;}
.yef_c01068{bottom:340.206569pt;}
.yee_c01068{bottom:342.801349pt;}
.yed_c01068{bottom:343.520529pt;}
.yec_c01068{bottom:346.133269pt;}
.yeb_c01068{bottom:347.218461pt;}
.yea_c01068{bottom:348.737305pt;}
.ye9_c01068{bottom:356.500781pt;}
.ye8_c01068{bottom:358.018869pt;}
.ye7_c01068{bottom:359.199529pt;}
.ye6_c01068{bottom:360.348833pt;}
.ye5_c01068{bottom:363.408097pt;}
.ye4_c01068{bottom:364.227877pt;}
.ye3_c01068{bottom:367.602209pt;}
.ye2_c01068{bottom:368.751877pt;}
.ye1_c01068{bottom:371.098481pt;}
.ye0_c01068{bottom:372.648133pt;}
.ydf_c01068{bottom:374.156861pt;}
.yde_c01068{bottom:376.421825pt;}
.ydd_c01068{bottom:378.737333pt;}
.ydc_c01068{bottom:386.861677pt;}
.ydb_c01068{bottom:388.088889pt;}
.yda_c01068{bottom:389.294563pt;}
.yd9_c01068{bottom:393.010803pt;}
.yd8_c01068{bottom:394.156944pt;}
.yd7_c01068{bottom:395.748892pt;}
.yd6_c01068{bottom:397.387416pt;}
.yd5_c01068{bottom:398.618400pt;}
.yd4_c01068{bottom:400.614225pt;}
.yd3_c01068{bottom:402.247501pt;}
.yd2_c01068{bottom:404.665791pt;}
.yd1_c01068{bottom:406.230023pt;}
.yd0_c01068{bottom:407.834216pt;}
.ycf_c01068{bottom:410.971372pt;}
.yce_c01068{bottom:411.858667pt;}
.ycd_c01068{bottom:419.154865pt;}
.ycc_c01068{bottom:422.824365pt;}
.ycb_c01068{bottom:426.497637pt;}
.yca_c01068{bottom:427.683084pt;}
.yc9_c01068{bottom:431.728363pt;}
.yc8_c01068{bottom:433.323099pt;}
.yc7_c01068{bottom:434.544680pt;}
.yc6_c01068{bottom:437.309009pt;}
.yc5_c01068{bottom:440.933136pt;}
.yc4_c01068{bottom:443.777333pt;}
.yc3_c01068{bottom:462.930965pt;}
.yc2_c01068{bottom:463.426581pt;}
.yc1_c01068{bottom:464.118549pt;}
.yc0_c01068{bottom:466.045845pt;}
.ybf_c01068{bottom:466.771669pt;}
.ybe_c01068{bottom:468.145877pt;}
.ybd_c01068{bottom:470.518453pt;}
.ybc_c01068{bottom:471.434709pt;}
.ybb_c01068{bottom:472.374005pt;}
.yba_c01068{bottom:474.055989pt;}
.yb9_c01068{bottom:474.742197pt;}
.yb8_c01068{bottom:475.685333pt;}
.yb7_c01068{bottom:487.173443pt;}
.yb6_c01068{bottom:488.629763pt;}
.yb5_c01068{bottom:490.097577pt;}
.yb4_c01068{bottom:491.897652pt;}
.yb3_c01068{bottom:492.676280pt;}
.yb2_c01068{bottom:494.447445pt;}
.yb1_c01068{bottom:495.226715pt;}
.yb0_c01068{bottom:497.699597pt;}
.yaf_c01068{bottom:502.454393pt;}
.yae_c01068{bottom:505.377196pt;}
.yad_c01068{bottom:506.469041pt;}
.yac_c01068{bottom:507.854667pt;}
.yab_c01068{bottom:515.990240pt;}
.yaa_c01068{bottom:518.812693pt;}
.ya9_c01068{bottom:520.752267pt;}
.ya8_c01068{bottom:522.357653pt;}
.ya7_c01068{bottom:526.318880pt;}
.ya6_c01068{bottom:527.487627pt;}
.ya5_c01068{bottom:530.623947pt;}
.ya4_c01068{bottom:531.805333pt;}
.ya3_c01068{bottom:533.314400pt;}
.ya2_c01068{bottom:534.495787pt;}
.ya1_c01068{bottom:538.067200pt;}
.ya0_c01068{bottom:540.016000pt;}
.y9f_c01068{bottom:549.728720pt;}
.y9e_c01068{bottom:552.031019pt;}
.y9d_c01068{bottom:553.074048pt;}
.y9c_c01068{bottom:554.743267pt;}
.y9b_c01068{bottom:556.099821pt;}
.y9a_c01068{bottom:558.091949pt;}
.y99_c01068{bottom:560.466237pt;}
.y98_c01068{bottom:564.091363pt;}
.y97_c01068{bottom:566.150085pt;}
.y94_c01068{bottom:566.598799pt;}
.y96_c01068{bottom:567.773835pt;}
.y95_c01068{bottom:569.774667pt;}
.y93_c01068{bottom:575.038499pt;}
.y92_c01068{bottom:579.059461pt;}
.y91_c01068{bottom:580.148297pt;}
.y90_c01068{bottom:583.841489pt;}
.y8f_c01068{bottom:585.260020pt;}
.y8e_c01068{bottom:586.388964pt;}
.y8d_c01068{bottom:589.665092pt;}
.y8c_c01068{bottom:590.702029pt;}
.y8b_c01068{bottom:592.159632pt;}
.y8a_c01068{bottom:593.653396pt;}
.y89_c01068{bottom:595.833436pt;}
.y88_c01068{bottom:596.869387pt;}
.y87_c01068{bottom:597.965475pt;}
.y86_c01068{bottom:601.214667pt;}
.y7c_c01068{bottom:610.606128pt;}
.y7b_c01068{bottom:614.238464pt;}
.y7a_c01068{bottom:615.404861pt;}
.y79_c01068{bottom:616.644267pt;}
.y78_c01068{bottom:618.958051pt;}
.y77_c01068{bottom:620.530051pt;}
.y76_c01068{bottom:622.502659pt;}
.y75_c01068{bottom:623.751251pt;}
.y74_c01068{bottom:626.089645pt;}
.y73_c01068{bottom:627.603952pt;}
.y72_c01068{bottom:631.181752pt;}
.y71_c01068{bottom:632.365400pt;}
.y70_c01068{bottom:634.647323pt;}
.y6f_c01068{bottom:645.400000pt;}
.y85_c01068{bottom:647.500581pt;}
.y84_c01068{bottom:648.588261pt;}
.y83_c01068{bottom:652.127109pt;}
.y82_c01068{bottom:653.155845pt;}
.y81_c01068{bottom:656.681493pt;}
.y80_c01068{bottom:659.890773pt;}
.y7f_c01068{bottom:660.595989pt;}
.y7e_c01068{bottom:663.754053pt;}
.y7d_c01068{bottom:665.529333pt;}
.y6e_c01068{bottom:675.414513pt;}
.y6d_c01068{bottom:677.282561pt;}
.y6c_c01068{bottom:681.165609pt;}
.y6b_c01068{bottom:684.255345pt;}
.y6a_c01068{bottom:685.800785pt;}
.y69_c01068{bottom:689.716853pt;}
.y68_c01068{bottom:690.738133pt;}
.y67_c01068{bottom:694.212409pt;}
.y66_c01068{bottom:695.382253pt;}
.y65_c01068{bottom:696.061373pt;}
.y64_c01068{bottom:698.413333pt;}
.y63_c01068{bottom:707.596000pt;}
.y62_c01068{bottom:708.577333pt;}
.y61_c01068{bottom:711.525333pt;}
.y60_c01068{bottom:713.181333pt;}
.y5f_c01068{bottom:715.788000pt;}
.y5e_c01068{bottom:716.721333pt;}
.y5d_c01068{bottom:718.682667pt;}
.y5c_c01068{bottom:719.636000pt;}
.y5b_c01068{bottom:720.606667pt;}
.y5a_c01068{bottom:721.581333pt;}
.y59_c01068{bottom:722.878667pt;}
.y58_c01068{bottom:725.788000pt;}
.y57_c01068{bottom:726.746667pt;}
.y56_c01068{bottom:727.696000pt;}
.y55_c01068{bottom:739.381333pt;}
.y54_c01068{bottom:740.400000pt;}
.y53_c01068{bottom:741.433333pt;}
.y52_c01068{bottom:744.221333pt;}
.y51_c01068{bottom:747.296000pt;}
.y50_c01068{bottom:748.322667pt;}
.y4f_c01068{bottom:750.716000pt;}
.y4e_c01068{bottom:752.445333pt;}
.y4d_c01068{bottom:753.460000pt;}
.y4c_c01068{bottom:756.584000pt;}
.y4b_c01068{bottom:757.602667pt;}
.y4a_c01068{bottom:759.616000pt;}
.y49_c01068{bottom:772.413333pt;}
.y48_c01068{bottom:774.473333pt;}
.y47_c01068{bottom:775.590667pt;}
.y46_c01068{bottom:776.609333pt;}
.y45_c01068{bottom:778.996000pt;}
.y44_c01068{bottom:780.020000pt;}
.y43_c01068{bottom:783.110667pt;}
.y42_c01068{bottom:785.210667pt;}
.y41_c01068{bottom:786.201333pt;}
.y40_c01068{bottom:787.605333pt;}
.y3f_c01068{bottom:788.642667pt;}
.y3e_c01068{bottom:790.297333pt;}
.y3d_c01068{bottom:792.733333pt;}
.y3c_c01068{bottom:804.446667pt;}
.y3b_c01068{bottom:806.376000pt;}
.y3a_c01068{bottom:809.385333pt;}
.y39_c01068{bottom:811.614667pt;}
.y38_c01068{bottom:813.862667pt;}
.y37_c01068{bottom:815.708000pt;}
.y36_c01068{bottom:816.829333pt;}
.y35_c01068{bottom:819.472000pt;}
.y34_c01068{bottom:820.558667pt;}
.y33_c01068{bottom:822.017333pt;}
.y32_c01068{bottom:854.277333pt;}
.y31_c01068{bottom:867.690221pt;}
.y30_c01068{bottom:868.405683pt;}
.y2f_c01068{bottom:870.696589pt;}
.y2e_c01068{bottom:872.051636pt;}
.y2d_c01068{bottom:874.102289pt;}
.y2c_c01068{bottom:877.799971pt;}
.y2b_c01068{bottom:878.794580pt;}
.y2a_c01068{bottom:879.761495pt;}
.y29_c01068{bottom:881.425671pt;}
.y28_c01068{bottom:883.100813pt;}
.y27_c01068{bottom:884.087303pt;}
.y26_c01068{bottom:886.086648pt;}
.y25_c01068{bottom:887.064784pt;}
.y24_c01068{bottom:897.288840pt;}
.y23_c01068{bottom:898.328060pt;}
.y22_c01068{bottom:901.424720pt;}
.y21_c01068{bottom:903.182793pt;}
.y20_c01068{bottom:905.600220pt;}
.y1f_c01068{bottom:906.637480pt;}
.y1e_c01068{bottom:907.637033pt;}
.y1d_c01068{bottom:911.417780pt;}
.y1c_c01068{bottom:913.479373pt;}
.y1b_c01068{bottom:916.243347pt;}
.y1a_c01068{bottom:917.260587pt;}
.y19_c01068{bottom:918.969333pt;}
.y18_c01068{bottom:931.818955pt;}
.y17_c01068{bottom:933.415584pt;}
.y16_c01068{bottom:936.589728pt;}
.y15_c01068{bottom:937.866400pt;}
.y14_c01068{bottom:940.401696pt;}
.y13_c01068{bottom:941.324789pt;}
.y12_c01068{bottom:942.246389pt;}
.y11_c01068{bottom:945.058037pt;}
.y10_c01068{bottom:946.355061pt;}
.yf_c01068{bottom:949.454667pt;}
.ye_c01068{bottom:962.502800pt;}
.yd_c01068{bottom:964.007072pt;}
.yc_c01068{bottom:965.780852pt;}
.yb_c01068{bottom:966.905208pt;}
.ya_c01068{bottom:972.710409pt;}
.y9_c01068{bottom:973.867621pt;}
.y8_c01068{bottom:977.465847pt;}
.y7_c01068{bottom:979.963347pt;}
.y6_c01068{bottom:981.136000pt;}
.y5_c01068{bottom:1011.505333pt;}
.y4_c01068{bottom:1054.312712pt;}
.y3_c01068{bottom:1054.384504pt;}
.y2_c01068{bottom:1054.838552pt;}
.y1_c01068{bottom:1056.008000pt;}
.h14_c01068{height:58.652644pt;}
.h17_c01068{height:58.654961pt;}
.h1b_c01068{height:58.670099pt;}
.h6_c01068{height:63.975227pt;}
.h4_c01068{height:63.979837pt;}
.h15_c01068{height:63.982238pt;}
.h16_c01068{height:63.984702pt;}
.h12_c01068{height:63.989823pt;}
.h1a_c01068{height:63.995200pt;}
.h8_c01068{height:64.000000pt;}
.hb_c01068{height:64.011519pt;}
.he_c01068{height:69.304103pt;}
.h7_c01068{height:69.306496pt;}
.hd_c01068{height:69.311490pt;}
.h9_c01068{height:69.316761pt;}
.h18_c01068{height:69.319500pt;}
.h1d_c01068{height:69.328133pt;}
.ha_c01068{height:69.345812pt;}
.h5_c01068{height:74.630258pt;}
.h13_c01068{height:74.648819pt;}
.hf_c01068{height:74.651769pt;}
.h11_c01068{height:74.654794pt;}
.h1c_c01068{height:74.671035pt;}
.hc_c01068{height:79.971875pt;}
.h2_c01068{height:79.990599pt;}
.h3_c01068{height:80.000000pt;}
.h10_c01068{height:80.023037pt;}
.h19_c01068{height:85.316308pt;}
.h0_c01068{height:1107.840000pt;}
.h1_c01068{height:1108.000000pt;}
.w0_c01068{width:800.400000pt;}
.w1_c01068{width:800.666667pt;}
.x0_c01068{left:0.000000pt;}
.xce_c01068{left:111.754667pt;}
.xf0_c01068{left:121.456000pt;}
.xde_c01068{left:123.724644pt;}
.xd5_c01068{left:125.060000pt;}
.xc6_c01068{left:126.549333pt;}
.xb1_c01068{left:128.662667pt;}
.xa3_c01068{left:129.877333pt;}
.x97_c01068{left:131.078667pt;}
.x85_c01068{left:132.788000pt;}
.x7f_c01068{left:133.984000pt;}
.x10_c01068{left:134.884000pt;}
.x5d_c01068{left:136.694667pt;}
.x3c_c01068{left:139.550667pt;}
.x31_c01068{left:142.320000pt;}
.x1a_c01068{left:143.732000pt;}
.x5_c01068{left:145.920000pt;}
.xf1_c01068{left:150.553540pt;}
.xa4_c01068{left:151.497025pt;}
.xdf_c01068{left:152.731608pt;}
.xe6_c01068{left:162.196404pt;}
.x54_c01068{left:167.818667pt;}
.x8f_c01068{left:170.453217pt;}
.x25_c01068{left:171.917256pt;}
.xd6_c01068{left:174.890120pt;}
.x86_c01068{left:181.459280pt;}
.xe0_c01068{left:183.789852pt;}
.x70_c01068{left:185.308020pt;}
.xb2_c01068{left:187.975295pt;}
.xe7_c01068{left:191.554540pt;}
.x1b_c01068{left:192.504512pt;}
.x65_c01068{left:193.642147pt;}
.xb6_c01068{left:196.571299pt;}
.x49_c01068{left:197.525333pt;}
.x98_c01068{left:198.968000pt;}
.x90_c01068{left:199.933041pt;}
.xd7_c01068{left:203.983664pt;}
.x3d_c01068{left:209.166667pt;}
.xbd_c01068{left:211.988112pt;}
.x5e_c01068{left:214.336947pt;}
.x6_c01068{left:216.480000pt;}
.x1c_c01068{left:221.539448pt;}
.x66_c01068{left:223.120264pt;}
.x4a_c01068{left:226.638667pt;}
.xa5_c01068{left:227.936509pt;}
.xf2_c01068{left:229.122892pt;}
.x26_c01068{left:230.659177pt;}
.x11_c01068{left:231.649804pt;}
.xbe_c01068{left:234.452292pt;}
.x32_c01068{left:239.526667pt;}
.x80_c01068{left:240.482728pt;}
.x7_c01068{left:241.734667pt;}
.xd8_c01068{left:243.071204pt;}
.x5f_c01068{left:244.302951pt;}
.xb3_c01068{left:245.993219pt;}
.xe1_c01068{left:251.856384pt;}
.x76_c01068{left:252.994560pt;}
.x3e_c01068{left:256.430667pt;}
.xea_c01068{left:258.745569pt;}
.x27_c01068{left:259.653848pt;}
.xb7_c01068{left:265.274567pt;}
.xa6_c01068{left:267.024049pt;}
.x99_c01068{left:269.050667pt;}
.x87_c01068{left:270.655328pt;}
.x12_c01068{left:272.141272pt;}
.x8_c01068{left:273.396307pt;}
.x33_c01068{left:277.917333pt;}
.x91_c01068{left:278.848713pt;}
.x77_c01068{left:280.965228pt;}
.x55_c01068{left:285.001333pt;}
.x3f_c01068{left:286.066667pt;}
.x9c_c01068{left:287.974236pt;}
.xd9_c01068{left:290.945948pt;}
.x71_c01068{left:292.514040pt;}
.x1d_c01068{left:300.431144pt;}
.xbf_c01068{left:302.252424pt;}
.xa7_c01068{left:305.137897pt;}
.x34_c01068{left:306.526667pt;}
.x28_c01068{left:308.875639pt;}
.x67_c01068{left:312.263851pt;}
.x4b_c01068{left:315.898667pt;}
.xc7_c01068{left:321.828525pt;}
.x56_c01068{left:324.334667pt;}
.x40_c01068{left:326.168000pt;}
.xcf_c01068{left:330.413123pt;}
.x60_c01068{left:333.297867pt;}
.x88_c01068{left:337.849400pt;}
.x78_c01068{left:339.826308pt;}
.x9_c01068{left:340.828807pt;}
.x4c_c01068{left:344.889333pt;}
.x9a_c01068{left:346.365333pt;}
.xda_c01068{left:348.893276pt;}
.x68_c01068{left:349.995624pt;}
.xb8_c01068{left:352.384087pt;}
.x41_c01068{left:354.478667pt;}
.xf3_c01068{left:356.555332pt;}
.x29_c01068{left:357.784409pt;}
.x13_c01068{left:359.917408pt;}
.xc8_c01068{left:361.672641pt;}
.xc0_c01068{left:362.791824pt;}
.xa8_c01068{left:364.061581pt;}
.x89_c01068{left:367.354532pt;}
.xb9_c01068{left:372.713851pt;}
.x35_c01068{left:376.072000pt;}
.xeb_c01068{left:377.053809pt;}
.x79_c01068{left:380.157936pt;}
.x72_c01068{left:381.571560pt;}
.x57_c01068{left:383.302667pt;}
.x9d_c01068{left:385.094352pt;}
.x2a_c01068{left:386.182297pt;}
.x14_c01068{left:388.688608pt;}
.xd0_c01068{left:389.816327pt;}
.xc9_c01068{left:390.708909pt;}
.x1_c01068{left:392.218667pt;}
.x4d_c01068{left:394.310667pt;}
.xa9_c01068{left:403.857745pt;}
.x36_c01068{left:405.585333pt;}
.x92_c01068{left:407.228205pt;}
.x69_c01068{left:408.252115pt;}
.x58_c01068{left:412.205333pt;}
.x42_c01068{left:414.497333pt;}
.x2b_c01068{left:415.408736pt;}
.x15_c01068{left:417.506428pt;}
.x2_c01068{left:420.034823pt;}
.xba_c01068{left:421.913195pt;}
.x9e_c01068{left:423.951456pt;}
.x7e_c01068{left:425.394136pt;}
.x3_c01068{left:430.834679pt;}
.x4_c01068{left:432.542303pt;}
.xec_c01068{left:435.011793pt;}
.xa_c01068{left:437.980891pt;}
.x6a_c01068{left:439.379171pt;}
.xc1_c01068{left:440.839032pt;}
.xf4_c01068{left:443.933200pt;}
.x8a_c01068{left:445.684124pt;}
.x7a_c01068{left:447.510516pt;}
.xaa_c01068{left:452.487733pt;}
.x37_c01068{left:454.160000pt;}
.xe2_c01068{left:457.253448pt;}
.xd1_c01068{left:458.447627pt;}
.x61_c01068{left:459.769935pt;}
.x4e_c01068{left:462.685333pt;}
.xe8_c01068{left:465.426560pt;}
.x1e_c01068{left:467.188220pt;}
.xb_c01068{left:469.225615pt;}
.x59_c01068{left:471.637333pt;}
.x8b_c01068{left:474.873572pt;}
.x81_c01068{left:477.249724pt;}
.x73_c01068{left:479.408292pt;}
.xab_c01068{left:482.481709pt;}
.xe3_c01068{left:486.279060pt;}
.x6b_c01068{left:488.547688pt;}
.x4f_c01068{left:492.013333pt;}
.xf5_c01068{left:493.839244pt;}
.x1f_c01068{left:495.718328pt;}
.x16_c01068{left:496.655200pt;}
.x5a_c01068{left:499.929333pt;}
.x43_c01068{left:502.809333pt;}
.x74_c01068{left:507.955716pt;}
.xc2_c01068{left:508.890912pt;}
.x38_c01068{left:513.302667pt;}
.xe4_c01068{left:515.880096pt;}
.xd2_c01068{left:516.777239pt;}
.xbb_c01068{left:519.796347pt;}
.xb4_c01068{left:521.326943pt;}
.x9f_c01068{left:522.518124pt;}
.x2c_c01068{left:524.034452pt;}
.x20_c01068{left:525.324692pt;}
.x6c_c01068{left:527.717715pt;}
.x44_c01068{left:532.078667pt;}
.xdb_c01068{left:535.603712pt;}
.x17_c01068{left:536.511304pt;}
.x93_c01068{left:542.857773pt;}
.xe9_c01068{left:544.199824pt;}
.xd3_c01068{left:547.824827pt;}
.xa0_c01068{left:551.402544pt;}
.xed_c01068{left:553.370649pt;}
.xca_c01068{left:556.970481pt;}
.xac_c01068{left:561.194917pt;}
.x94_c01068{left:563.880729pt;}
.x7b_c01068{left:566.447460pt;}
.xbc_c01068{left:569.420599pt;}
.x39_c01068{left:571.966667pt;}
.x8c_c01068{left:573.805208pt;}
.x82_c01068{left:575.641900pt;}
.xd4_c01068{left:576.765191pt;}
.x5b_c01068{left:578.928000pt;}
.x50_c01068{left:579.854667pt;}
.x2d_c01068{left:584.278916pt;}
.x6d_c01068{left:585.379760pt;}
.xad_c01068{left:589.121629pt;}
.x21_c01068{left:594.324956pt;}
.x45_c01068{left:600.273333pt;}
.x7c_c01068{left:604.747788pt;}
.x75_c01068{left:606.158748pt;}
.xc3_c01068{left:607.119252pt;}
.x95_c01068{left:612.482745pt;}
.x8d_c01068{left:613.899740pt;}
.x6e_c01068{left:616.266856pt;}
.x2e_c01068{left:624.097792pt;}
.xc_c01068{left:625.966051pt;}
.xc4_c01068{left:627.289728pt;}
.xcb_c01068{left:628.200513pt;}
.x46_c01068{left:629.382667pt;}
.xef_c01068{left:632.168493pt;}
.x18_c01068{left:635.604112pt;}
.xa1_c01068{left:640.904952pt;}
.x9b_c01068{left:641.860000pt;}
.x22_c01068{left:644.505392pt;}
.x3a_c01068{left:651.144000pt;}
.x96_c01068{left:652.113741pt;}
.x83_c01068{left:655.334128pt;}
.xd_c01068{left:656.323663pt;}
.x51_c01068{left:659.529333pt;}
.x47_c01068{left:661.292000pt;}
.x8e_c01068{left:662.340584pt;}
.xdc_c01068{left:674.611232pt;}
.xcc_c01068{left:676.191141pt;}
.x62_c01068{left:677.967519pt;}
.xae_c01068{left:679.670989pt;}
.x19_c01068{left:685.448884pt;}
.xc5_c01068{left:687.765192pt;}
.x52_c01068{left:689.054667pt;}
.x2f_c01068{left:691.390101pt;}
.xdd_c01068{left:694.705784pt;}
.xb5_c01068{left:698.260499pt;}
.x64_c01068{left:699.705333pt;}
.x3b_c01068{left:701.932000pt;}
.xe_c01068{left:704.215723pt;}
.xcd_c01068{left:706.701933pt;}
.xaf_c01068{left:709.048249pt;}
.x30_c01068{left:712.420464pt;}
.xee_c01068{left:713.535935pt;}
.xe5_c01068{left:714.425352pt;}
.x53_c01068{left:718.152000pt;}
.x48_c01068{left:720.162667pt;}
.x84_c01068{left:722.981080pt;}
.x63_c01068{left:725.818287pt;}
.xa2_c01068{left:730.315452pt;}
.x23_c01068{left:732.892916pt;}
.x7d_c01068{left:733.862544pt;}
.x6f_c01068{left:735.836336pt;}
.xb0_c01068{left:738.950317pt;}
.xf_c01068{left:744.831067pt;}
.x5c_c01068{left:748.166667pt;}
.x24_c01068{left:762.555224pt;}
}





/* 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_c01069 {
    display:none;
  }
  .loading-indicator_c01069.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01069 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_c01069 { 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_c01069" -> "#page-container .classname_c01069")
 */
.pf_c01069 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01069 { /* 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_c01069.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01069 { /* 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_c01069 { /* 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_c01069 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01069 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01069 {overflow:visible;}
  }
}
.c_c01069 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01069 { /* 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_c01069:after { /* webkit #35443 */
  content: '';
}
.t_c01069:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01069 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 */
}
.__c01069 { /* 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_c01069 { /* info for Javascript */
  display:none;
}
.l_c01069 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01069 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01069 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01069: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_c01069 {
    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_c01069.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01069.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_c01069 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01069{font-family:sans-serif;visibility:hidden;}
.sc__c01069{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01069{-webkit-text-stroke:0px transparent;}
}
.y0_c01069{bottom:0.000000px;}
.h0_c01069{height:1246.320000px;}
.h1_c01069{height:1246.500000px;}
.w0_c01069{width:900.450000px;}
.w1_c01069{width:900.750000px;}
.x0_c01069{left:0.000000px;}
@media print{
.y0_c01069{bottom:0.000000pt;}
.h0_c01069{height:1107.840000pt;}
.h1_c01069{height:1108.000000pt;}
.w0_c01069{width:800.400000pt;}
.w1_c01069{width:800.666667pt;}
.x0_c01069{left:0.000000pt;}
}





/* 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_c01070 {
    display:none;
  }
  .loading-indicator_c01070.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01070 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_c01070 { 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_c01070" -> "#page-container .classname_c01070")
 */
.pf_c01070 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01070 { /* 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_c01070.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01070 { /* 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_c01070 { /* 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_c01070 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01070 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01070 {overflow:visible;}
  }
}
.c_c01070 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01070 { /* 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_c01070:after { /* webkit #35443 */
  content: '';
}
.t_c01070:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01070 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 */
}
.__c01070 { /* 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_c01070 { /* info for Javascript */
  display:none;
}
.l_c01070 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01070 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01070 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01070: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_c01070 {
    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_c01070.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01070.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_c01070 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01070{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01070;src:url('chunks/assets/font_c605e72f209fc835e906f064.woff2')format("woff");}.ff1_c01070{font-family:ff1_c01070;line-height:1.000000;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;}
.m1_c01070{transform:matrix(0.122795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122795,0.000000,0.000000,0.250000,0,0);}
.m0_c01070{transform:matrix(0.132775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132775,0.000000,0.000000,0.250000,0,0);}
.m165_c01070{transform:matrix(0.133297,0.000933,-0.001750,0.249994,0,0);-ms-transform:matrix(0.133297,0.000933,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.133297,0.000933,-0.001750,0.249994,0,0);}
.m4_c01070{transform:matrix(0.135565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135565,0.000000,0.000000,0.250000,0,0);}
.m168_c01070{transform:matrix(0.135662,0.000950,-0.001750,0.249994,0,0);-ms-transform:matrix(0.135662,0.000950,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.135662,0.000950,-0.001750,0.249994,0,0);}
.m167_c01070{transform:matrix(0.139787,0.000979,-0.001750,0.249994,0,0);-ms-transform:matrix(0.139787,0.000979,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.139787,0.000979,-0.001750,0.249994,0,0);}
.m16b_c01070{transform:matrix(0.147601,0.001033,-0.001750,0.249994,0,0);-ms-transform:matrix(0.147601,0.001033,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.147601,0.001033,-0.001750,0.249994,0,0);}
.m16a_c01070{transform:matrix(0.149071,0.001043,-0.001750,0.249994,0,0);-ms-transform:matrix(0.149071,0.001043,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.149071,0.001043,-0.001750,0.249994,0,0);}
.m169_c01070{transform:matrix(0.155766,0.001090,-0.001750,0.249994,0,0);-ms-transform:matrix(0.155766,0.001090,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.155766,0.001090,-0.001750,0.249994,0,0);}
.m164_c01070{transform:matrix(0.157371,0.001102,-0.001750,0.249994,0,0);-ms-transform:matrix(0.157371,0.001102,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.157371,0.001102,-0.001750,0.249994,0,0);}
.m73_c01070{transform:matrix(0.158645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158645,0.000000,0.000000,0.250000,0,0);}
.m76_c01070{transform:matrix(0.159070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159070,0.000000,0.000000,0.250000,0,0);}
.m163_c01070{transform:matrix(0.161766,0.001132,-0.001750,0.249994,0,0);-ms-transform:matrix(0.161766,0.001132,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.161766,0.001132,-0.001750,0.249994,0,0);}
.m166_c01070{transform:matrix(0.162046,0.001134,-0.001750,0.249994,0,0);-ms-transform:matrix(0.162046,0.001134,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.162046,0.001134,-0.001750,0.249994,0,0);}
.m13a_c01070{transform:matrix(0.165509,0.002648,-0.003999,0.249968,0,0);-ms-transform:matrix(0.165509,0.002648,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.165509,0.002648,-0.003999,0.249968,0,0);}
.m74_c01070{transform:matrix(0.165940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165940,0.000000,0.000000,0.250000,0,0);}
.m77_c01070{transform:matrix(0.166900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166900,0.000000,0.000000,0.250000,0,0);}
.m79_c01070{transform:matrix(0.174265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174265,0.000000,0.000000,0.250000,0,0);}
.m6f_c01070{transform:matrix(0.175060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175060,0.000000,0.000000,0.250000,0,0);}
.m2_c01070{transform:matrix(0.175425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175425,0.000000,0.000000,0.250000,0,0);}
.mff_c01070{transform:matrix(0.178085,0.002315,-0.003250,0.249979,0,0);-ms-transform:matrix(0.178085,0.002315,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.178085,0.002315,-0.003250,0.249979,0,0);}
.m103_c01070{transform:matrix(0.181380,0.002358,-0.003250,0.249979,0,0);-ms-transform:matrix(0.181380,0.002358,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.181380,0.002358,-0.003250,0.249979,0,0);}
.m142_c01070{transform:matrix(0.182502,0.002920,-0.003999,0.249968,0,0);-ms-transform:matrix(0.182502,0.002920,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.182502,0.002920,-0.003999,0.249968,0,0);}
.m70_c01070{transform:matrix(0.182975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182975,0.000000,0.000000,0.250000,0,0);}
.m71_c01070{transform:matrix(0.184540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184540,0.000000,0.000000,0.250000,0,0);}
.m72_c01070{transform:matrix(0.184825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184825,0.000000,0.000000,0.250000,0,0);}
.m140_c01070{transform:matrix(0.188041,0.003009,-0.003999,0.249968,0,0);-ms-transform:matrix(0.188041,0.003009,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.188041,0.003009,-0.003999,0.249968,0,0);}
.m2a_c01070{transform:matrix(0.189739,0.002087,-0.002750,0.249985,0,0);-ms-transform:matrix(0.189739,0.002087,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.189739,0.002087,-0.002750,0.249985,0,0);}
.m131_c01070{transform:matrix(0.190161,0.003043,-0.003999,0.249968,0,0);-ms-transform:matrix(0.190161,0.003043,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.190161,0.003043,-0.003999,0.249968,0,0);}
.m39_c01070{transform:matrix(0.190805,0.001336,-0.001750,0.249994,0,0);-ms-transform:matrix(0.190805,0.001336,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.190805,0.001336,-0.001750,0.249994,0,0);}
.m154_c01070{transform:matrix(0.191944,0.003455,-0.004499,0.249960,0,0);-ms-transform:matrix(0.191944,0.003455,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.191944,0.003455,-0.004499,0.249960,0,0);}
.m152_c01070{transform:matrix(0.192599,0.003467,-0.004499,0.249960,0,0);-ms-transform:matrix(0.192599,0.003467,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.192599,0.003467,-0.004499,0.249960,0,0);}
.m3_c01070{transform:matrix(0.193305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193305,0.000000,0.000000,0.250000,0,0);}
.m26_c01070{transform:matrix(0.194338,0.002138,-0.002750,0.249985,0,0);-ms-transform:matrix(0.194338,0.002138,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.194338,0.002138,-0.002750,0.249985,0,0);}
.m7a_c01070{transform:matrix(0.194715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194715,0.000000,0.000000,0.250000,0,0);}
.m133_c01070{transform:matrix(0.194915,0.003119,-0.003999,0.249968,0,0);-ms-transform:matrix(0.194915,0.003119,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.194915,0.003119,-0.003999,0.249968,0,0);}
.m7e_c01070{transform:matrix(0.195150,0.001952,-0.002500,0.249988,0,0);-ms-transform:matrix(0.195150,0.001952,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.195150,0.001952,-0.002500,0.249988,0,0);}
.m75_c01070{transform:matrix(0.196385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196385,0.000000,0.000000,0.250000,0,0);}
.mdc_c01070{transform:matrix(0.196438,0.002554,-0.003250,0.249979,0,0);-ms-transform:matrix(0.196438,0.002554,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.196438,0.002554,-0.003250,0.249979,0,0);}
.m13d_c01070{transform:matrix(0.196940,0.003151,-0.003999,0.249968,0,0);-ms-transform:matrix(0.196940,0.003151,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.196940,0.003151,-0.003999,0.249968,0,0);}
.m159_c01070{transform:matrix(0.197298,0.003551,-0.004499,0.249960,0,0);-ms-transform:matrix(0.197298,0.003551,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.197298,0.003551,-0.004499,0.249960,0,0);}
.m13e_c01070{transform:matrix(0.198180,0.003171,-0.003999,0.249968,0,0);-ms-transform:matrix(0.198180,0.003171,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.198180,0.003171,-0.003999,0.249968,0,0);}
.m2b_c01070{transform:matrix(0.198273,0.000991,-0.001250,0.249997,0,0);-ms-transform:matrix(0.198273,0.000991,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.198273,0.000991,-0.001250,0.249997,0,0);}
.m101_c01070{transform:matrix(0.198288,0.002578,-0.003250,0.249979,0,0);-ms-transform:matrix(0.198288,0.002578,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.198288,0.002578,-0.003250,0.249979,0,0);}
.m55_c01070{transform:matrix(0.198388,0.002182,-0.002750,0.249985,0,0);-ms-transform:matrix(0.198388,0.002182,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.198388,0.002182,-0.002750,0.249985,0,0);}
.m78_c01070{transform:matrix(0.199525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199525,0.000000,0.000000,0.250000,0,0);}
.md6_c01070{transform:matrix(0.200753,0.002610,-0.003250,0.249979,0,0);-ms-transform:matrix(0.200753,0.002610,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.200753,0.002610,-0.003250,0.249979,0,0);}
.m138_c01070{transform:matrix(0.201474,0.003224,-0.003999,0.249968,0,0);-ms-transform:matrix(0.201474,0.003224,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.201474,0.003224,-0.003999,0.249968,0,0);}
.mfb_c01070{transform:matrix(0.201503,0.002620,-0.003250,0.249979,0,0);-ms-transform:matrix(0.201503,0.002620,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.201503,0.002620,-0.003250,0.249979,0,0);}
.m37_c01070{transform:matrix(0.203005,0.001421,-0.001750,0.249994,0,0);-ms-transform:matrix(0.203005,0.001421,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.203005,0.001421,-0.001750,0.249994,0,0);}
.mdf_c01070{transform:matrix(0.203273,0.002643,-0.003250,0.249979,0,0);-ms-transform:matrix(0.203273,0.002643,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.203273,0.002643,-0.003250,0.249979,0,0);}
.m12c_c01070{transform:matrix(0.203994,0.003264,-0.003999,0.249968,0,0);-ms-transform:matrix(0.203994,0.003264,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.203994,0.003264,-0.003999,0.249968,0,0);}
.m97_c01070{transform:matrix(0.204170,0.002858,-0.003500,0.249976,0,0);-ms-transform:matrix(0.204170,0.002858,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.204170,0.002858,-0.003500,0.249976,0,0);}
.m2e_c01070{transform:matrix(0.204187,0.001021,-0.001250,0.249997,0,0);-ms-transform:matrix(0.204187,0.001021,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.204187,0.001021,-0.001250,0.249997,0,0);}
.m15_c01070{transform:matrix(0.204190,0.001429,-0.001750,0.249994,0,0);-ms-transform:matrix(0.204190,0.001429,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.204190,0.001429,-0.001750,0.249994,0,0);}
.me6_c01070{transform:matrix(0.204443,0.002658,-0.003250,0.249979,0,0);-ms-transform:matrix(0.204443,0.002658,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.204443,0.002658,-0.003250,0.249979,0,0);}
.m23_c01070{transform:matrix(0.204448,0.002249,-0.002750,0.249985,0,0);-ms-transform:matrix(0.204448,0.002249,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.204448,0.002249,-0.002750,0.249985,0,0);}
.m20_c01070{transform:matrix(0.204558,0.002250,-0.002750,0.249985,0,0);-ms-transform:matrix(0.204558,0.002250,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.204558,0.002250,-0.002750,0.249985,0,0);}
.m95_c01070{transform:matrix(0.204795,0.002867,-0.003500,0.249976,0,0);-ms-transform:matrix(0.204795,0.002867,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.204795,0.002867,-0.003500,0.249976,0,0);}
.mf4_c01070{transform:matrix(0.204798,0.002662,-0.003250,0.249979,0,0);-ms-transform:matrix(0.204798,0.002662,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.204798,0.002662,-0.003250,0.249979,0,0);}
.m7d_c01070{transform:matrix(0.204805,0.002048,-0.002500,0.249988,0,0);-ms-transform:matrix(0.204805,0.002048,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.204805,0.002048,-0.002500,0.249988,0,0);}
.m125_c01070{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.med_c01070{transform:matrix(0.205828,0.002676,-0.003250,0.249979,0,0);-ms-transform:matrix(0.205828,0.002676,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.205828,0.002676,-0.003250,0.249979,0,0);}
.me8_c01070{transform:matrix(0.206203,0.002681,-0.003250,0.249979,0,0);-ms-transform:matrix(0.206203,0.002681,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.206203,0.002681,-0.003250,0.249979,0,0);}
.m3a_c01070{transform:matrix(0.206530,0.001446,-0.001750,0.249994,0,0);-ms-transform:matrix(0.206530,0.001446,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.206530,0.001446,-0.001750,0.249994,0,0);}
.m10b_c01070{transform:matrix(0.206723,0.002687,-0.003250,0.249979,0,0);-ms-transform:matrix(0.206723,0.002687,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.206723,0.002687,-0.003250,0.249979,0,0);}
.m66_c01070{transform:matrix(0.206882,0.002276,-0.002750,0.249985,0,0);-ms-transform:matrix(0.206882,0.002276,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.206882,0.002276,-0.002750,0.249985,0,0);}
.m36_c01070{transform:matrix(0.207235,0.001451,-0.001750,0.249994,0,0);-ms-transform:matrix(0.207235,0.001451,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.207235,0.001451,-0.001750,0.249994,0,0);}
.mf3_c01070{transform:matrix(0.207377,0.002696,-0.003250,0.249979,0,0);-ms-transform:matrix(0.207377,0.002696,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.207377,0.002696,-0.003250,0.249979,0,0);}
.mcd_c01070{transform:matrix(0.207442,0.002697,-0.003250,0.249979,0,0);-ms-transform:matrix(0.207442,0.002697,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.207442,0.002697,-0.003250,0.249979,0,0);}
.m123_c01070{transform:matrix(0.207450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207450,0.000000,0.000000,0.250000,0,0);}
.m92_c01070{transform:matrix(0.207995,0.002912,-0.003500,0.249976,0,0);-ms-transform:matrix(0.207995,0.002912,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.207995,0.002912,-0.003500,0.249976,0,0);}
.m106_c01070{transform:matrix(0.207997,0.002704,-0.003250,0.249979,0,0);-ms-transform:matrix(0.207997,0.002704,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.207997,0.002704,-0.003250,0.249979,0,0);}
.m100_c01070{transform:matrix(0.208107,0.002705,-0.003250,0.249979,0,0);-ms-transform:matrix(0.208107,0.002705,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.208107,0.002705,-0.003250,0.249979,0,0);}
.m102_c01070{transform:matrix(0.208317,0.002708,-0.003250,0.249979,0,0);-ms-transform:matrix(0.208317,0.002708,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.208317,0.002708,-0.003250,0.249979,0,0);}
.m10f_c01070{transform:matrix(0.208457,0.002710,-0.003250,0.249979,0,0);-ms-transform:matrix(0.208457,0.002710,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.208457,0.002710,-0.003250,0.249979,0,0);}
.m12f_c01070{transform:matrix(0.208683,0.003339,-0.003999,0.249968,0,0);-ms-transform:matrix(0.208683,0.003339,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.208683,0.003339,-0.003999,0.249968,0,0);}
.m3e_c01070{transform:matrix(0.208745,0.001461,-0.001750,0.249994,0,0);-ms-transform:matrix(0.208745,0.001461,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.208745,0.001461,-0.001750,0.249994,0,0);}
.m157_c01070{transform:matrix(0.209326,0.003768,-0.004499,0.249960,0,0);-ms-transform:matrix(0.209326,0.003768,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.209326,0.003768,-0.004499,0.249960,0,0);}
.m132_c01070{transform:matrix(0.209333,0.003349,-0.003999,0.249968,0,0);-ms-transform:matrix(0.209333,0.003349,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.209333,0.003349,-0.003999,0.249968,0,0);}
.m139_c01070{transform:matrix(0.209543,0.003353,-0.003999,0.249968,0,0);-ms-transform:matrix(0.209543,0.003353,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.209543,0.003353,-0.003999,0.249968,0,0);}
.mab_c01070{transform:matrix(0.209612,0.002725,-0.003250,0.249979,0,0);-ms-transform:matrix(0.209612,0.002725,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.209612,0.002725,-0.003250,0.249979,0,0);}
.m28_c01070{transform:matrix(0.209867,0.002309,-0.002750,0.249985,0,0);-ms-transform:matrix(0.209867,0.002309,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.209867,0.002309,-0.002750,0.249985,0,0);}
.mcb_c01070{transform:matrix(0.209917,0.002729,-0.003250,0.249979,0,0);-ms-transform:matrix(0.209917,0.002729,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.209917,0.002729,-0.003250,0.249979,0,0);}
.m24_c01070{transform:matrix(0.210007,0.002310,-0.002750,0.249985,0,0);-ms-transform:matrix(0.210007,0.002310,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.210007,0.002310,-0.002750,0.249985,0,0);}
.m14b_c01070{transform:matrix(0.210583,0.003369,-0.003999,0.249968,0,0);-ms-transform:matrix(0.210583,0.003369,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.210583,0.003369,-0.003999,0.249968,0,0);}
.m104_c01070{transform:matrix(0.210652,0.002738,-0.003250,0.249979,0,0);-ms-transform:matrix(0.210652,0.002738,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.210652,0.002738,-0.003250,0.249979,0,0);}
.me1_c01070{transform:matrix(0.210782,0.002740,-0.003250,0.249979,0,0);-ms-transform:matrix(0.210782,0.002740,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.210782,0.002740,-0.003250,0.249979,0,0);}
.mfd_c01070{transform:matrix(0.211022,0.002743,-0.003250,0.249979,0,0);-ms-transform:matrix(0.211022,0.002743,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.211022,0.002743,-0.003250,0.249979,0,0);}
.m128_c01070{transform:matrix(0.211215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211215,0.000000,0.000000,0.250000,0,0);}
.m13f_c01070{transform:matrix(0.211463,0.003383,-0.003999,0.249968,0,0);-ms-transform:matrix(0.211463,0.003383,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.211463,0.003383,-0.003999,0.249968,0,0);}
.m8b_c01070{transform:matrix(0.212179,0.002971,-0.003500,0.249976,0,0);-ms-transform:matrix(0.212179,0.002971,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.212179,0.002971,-0.003500,0.249976,0,0);}
.m156_c01070{transform:matrix(0.212326,0.003822,-0.004499,0.249960,0,0);-ms-transform:matrix(0.212326,0.003822,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.212326,0.003822,-0.004499,0.249960,0,0);}
.m88_c01070{transform:matrix(0.212479,0.002975,-0.003500,0.249976,0,0);-ms-transform:matrix(0.212479,0.002975,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.212479,0.002975,-0.003500,0.249976,0,0);}
.m7b_c01070{transform:matrix(0.212504,0.002125,-0.002500,0.249988,0,0);-ms-transform:matrix(0.212504,0.002125,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.212504,0.002125,-0.002500,0.249988,0,0);}
.mfc_c01070{transform:matrix(0.214667,0.002791,-0.003250,0.249979,0,0);-ms-transform:matrix(0.214667,0.002791,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.214667,0.002791,-0.003250,0.249979,0,0);}
.mbd_c01070{transform:matrix(0.214917,0.002364,-0.002750,0.249985,0,0);-ms-transform:matrix(0.214917,0.002364,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.214917,0.002364,-0.002750,0.249985,0,0);}
.m22_c01070{transform:matrix(0.215237,0.002368,-0.002750,0.249985,0,0);-ms-transform:matrix(0.215237,0.002368,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.215237,0.002368,-0.002750,0.249985,0,0);}
.m4c_c01070{transform:matrix(0.215742,0.002373,-0.002750,0.249985,0,0);-ms-transform:matrix(0.215742,0.002373,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.215742,0.002373,-0.002750,0.249985,0,0);}
.mfe_c01070{transform:matrix(0.215962,0.002808,-0.003250,0.249979,0,0);-ms-transform:matrix(0.215962,0.002808,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.215962,0.002808,-0.003250,0.249979,0,0);}
.m144_c01070{transform:matrix(0.216037,0.003457,-0.003999,0.249968,0,0);-ms-transform:matrix(0.216037,0.003457,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.216037,0.003457,-0.003999,0.249968,0,0);}
.m4e_c01070{transform:matrix(0.216482,0.002381,-0.002750,0.249985,0,0);-ms-transform:matrix(0.216482,0.002381,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.216482,0.002381,-0.002750,0.249985,0,0);}
.m13b_c01070{transform:matrix(0.216572,0.003465,-0.003999,0.249968,0,0);-ms-transform:matrix(0.216572,0.003465,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.216572,0.003465,-0.003999,0.249968,0,0);}
.m15b_c01070{transform:matrix(0.216850,0.003903,-0.004499,0.249960,0,0);-ms-transform:matrix(0.216850,0.003903,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.216850,0.003903,-0.004499,0.249960,0,0);}
.me2_c01070{transform:matrix(0.216867,0.002819,-0.003250,0.249979,0,0);-ms-transform:matrix(0.216867,0.002819,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.216867,0.002819,-0.003250,0.249979,0,0);}
.m9a_c01070{transform:matrix(0.216974,0.003038,-0.003500,0.249976,0,0);-ms-transform:matrix(0.216974,0.003038,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.216974,0.003038,-0.003500,0.249976,0,0);}
.m158_c01070{transform:matrix(0.217285,0.003911,-0.004499,0.249960,0,0);-ms-transform:matrix(0.217285,0.003911,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.217285,0.003911,-0.004499,0.249960,0,0);}
.m109_c01070{transform:matrix(0.217687,0.002830,-0.003250,0.249979,0,0);-ms-transform:matrix(0.217687,0.002830,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.217687,0.002830,-0.003250,0.249979,0,0);}
.m50_c01070{transform:matrix(0.217692,0.002395,-0.002750,0.249985,0,0);-ms-transform:matrix(0.217692,0.002395,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.217692,0.002395,-0.002750,0.249985,0,0);}
.mf0_c01070{transform:matrix(0.217762,0.002831,-0.003250,0.249979,0,0);-ms-transform:matrix(0.217762,0.002831,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.217762,0.002831,-0.003250,0.249979,0,0);}
.m89_c01070{transform:matrix(0.217994,0.003052,-0.003500,0.249976,0,0);-ms-transform:matrix(0.217994,0.003052,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.217994,0.003052,-0.003500,0.249976,0,0);}
.mf9_c01070{transform:matrix(0.218922,0.002846,-0.003250,0.249979,0,0);-ms-transform:matrix(0.218922,0.002846,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.218922,0.002846,-0.003250,0.249979,0,0);}
.mc3_c01070{transform:matrix(0.219081,0.002848,-0.003250,0.249979,0,0);-ms-transform:matrix(0.219081,0.002848,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.219081,0.002848,-0.003250,0.249979,0,0);}
.m143_c01070{transform:matrix(0.219297,0.003509,-0.003999,0.249968,0,0);-ms-transform:matrix(0.219297,0.003509,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.219297,0.003509,-0.003999,0.249968,0,0);}
.m14f_c01070{transform:matrix(0.219339,0.003948,-0.004499,0.249960,0,0);-ms-transform:matrix(0.219339,0.003948,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.219339,0.003948,-0.004499,0.249960,0,0);}
.m14c_c01070{transform:matrix(0.219452,0.003511,-0.003999,0.249968,0,0);-ms-transform:matrix(0.219452,0.003511,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.219452,0.003511,-0.003999,0.249968,0,0);}
.m8f_c01070{transform:matrix(0.219488,0.003073,-0.003500,0.249976,0,0);-ms-transform:matrix(0.219488,0.003073,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.219488,0.003073,-0.003500,0.249976,0,0);}
.mda_c01070{transform:matrix(0.219591,0.002855,-0.003250,0.249979,0,0);-ms-transform:matrix(0.219591,0.002855,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.219591,0.002855,-0.003250,0.249979,0,0);}
.mf2_c01070{transform:matrix(0.219651,0.002855,-0.003250,0.249979,0,0);-ms-transform:matrix(0.219651,0.002855,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.219651,0.002855,-0.003250,0.249979,0,0);}
.mec_c01070{transform:matrix(0.219666,0.002856,-0.003250,0.249979,0,0);-ms-transform:matrix(0.219666,0.002856,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.219666,0.002856,-0.003250,0.249979,0,0);}
.meb_c01070{transform:matrix(0.219871,0.002858,-0.003250,0.249979,0,0);-ms-transform:matrix(0.219871,0.002858,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.219871,0.002858,-0.003250,0.249979,0,0);}
.m137_c01070{transform:matrix(0.219932,0.003519,-0.003999,0.249968,0,0);-ms-transform:matrix(0.219932,0.003519,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.219932,0.003519,-0.003999,0.249968,0,0);}
.m151_c01070{transform:matrix(0.219954,0.003959,-0.004499,0.249960,0,0);-ms-transform:matrix(0.219954,0.003959,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.219954,0.003959,-0.004499,0.249960,0,0);}
.ma8_c01070{transform:matrix(0.220281,0.002864,-0.003250,0.249979,0,0);-ms-transform:matrix(0.220281,0.002864,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.220281,0.002864,-0.003250,0.249979,0,0);}
.m7c_c01070{transform:matrix(0.220364,0.002204,-0.002500,0.249988,0,0);-ms-transform:matrix(0.220364,0.002204,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.220364,0.002204,-0.002500,0.249988,0,0);}
.m3d_c01070{transform:matrix(0.220435,0.001543,-0.001750,0.249994,0,0);-ms-transform:matrix(0.220435,0.001543,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.220435,0.001543,-0.001750,0.249994,0,0);}
.m2d_c01070{transform:matrix(0.220727,0.001104,-0.001250,0.249997,0,0);-ms-transform:matrix(0.220727,0.001104,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.220727,0.001104,-0.001250,0.249997,0,0);}
.md0_c01070{transform:matrix(0.220881,0.002871,-0.003250,0.249979,0,0);-ms-transform:matrix(0.220881,0.002871,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.220881,0.002871,-0.003250,0.249979,0,0);}
.m13_c01070{transform:matrix(0.221200,0.001548,-0.001750,0.249994,0,0);-ms-transform:matrix(0.221200,0.001548,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.221200,0.001548,-0.001750,0.249994,0,0);}
.m141_c01070{transform:matrix(0.221327,0.003541,-0.003999,0.249968,0,0);-ms-transform:matrix(0.221327,0.003541,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.221327,0.003541,-0.003999,0.249968,0,0);}
.mdd_c01070{transform:matrix(0.221661,0.002882,-0.003250,0.249979,0,0);-ms-transform:matrix(0.221661,0.002882,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.221661,0.002882,-0.003250,0.249979,0,0);}
.m122_c01070{transform:matrix(0.221810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221810,0.000000,0.000000,0.250000,0,0);}
.m68_c01070{transform:matrix(0.221867,0.002441,-0.002750,0.249985,0,0);-ms-transform:matrix(0.221867,0.002441,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.221867,0.002441,-0.002750,0.249985,0,0);}
.me3_c01070{transform:matrix(0.222116,0.002888,-0.003250,0.249979,0,0);-ms-transform:matrix(0.222116,0.002888,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.222116,0.002888,-0.003250,0.249979,0,0);}
.m11f_c01070{transform:matrix(0.222310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222310,0.000000,0.000000,0.250000,0,0);}
.m105_c01070{transform:matrix(0.222521,0.002893,-0.003250,0.249979,0,0);-ms-transform:matrix(0.222521,0.002893,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.222521,0.002893,-0.003250,0.249979,0,0);}
.m1f_c01070{transform:matrix(0.222707,0.002450,-0.002750,0.249985,0,0);-ms-transform:matrix(0.222707,0.002450,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.222707,0.002450,-0.002750,0.249985,0,0);}
.m13c_c01070{transform:matrix(0.223266,0.003572,-0.003999,0.249968,0,0);-ms-transform:matrix(0.223266,0.003572,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.223266,0.003572,-0.003999,0.249968,0,0);}
.m90_c01070{transform:matrix(0.223588,0.003130,-0.003500,0.249976,0,0);-ms-transform:matrix(0.223588,0.003130,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.223588,0.003130,-0.003500,0.249976,0,0);}
.mc2_c01070{transform:matrix(0.224321,0.002916,-0.003250,0.249979,0,0);-ms-transform:matrix(0.224321,0.002916,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.224321,0.002916,-0.003250,0.249979,0,0);}
.me0_c01070{transform:matrix(0.225041,0.002926,-0.003250,0.249979,0,0);-ms-transform:matrix(0.225041,0.002926,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.225041,0.002926,-0.003250,0.249979,0,0);}
.md5_c01070{transform:matrix(0.225501,0.002932,-0.003250,0.249979,0,0);-ms-transform:matrix(0.225501,0.002932,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.225501,0.002932,-0.003250,0.249979,0,0);}
.m153_c01070{transform:matrix(0.226193,0.004071,-0.004499,0.249960,0,0);-ms-transform:matrix(0.226193,0.004071,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.226193,0.004071,-0.004499,0.249960,0,0);}
.m51_c01070{transform:matrix(0.226341,0.002490,-0.002750,0.249985,0,0);-ms-transform:matrix(0.226341,0.002490,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.226341,0.002490,-0.002750,0.249985,0,0);}
.m120_c01070{transform:matrix(0.226810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226810,0.000000,0.000000,0.250000,0,0);}
.m21_c01070{transform:matrix(0.226931,0.002496,-0.002750,0.249985,0,0);-ms-transform:matrix(0.226931,0.002496,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.226931,0.002496,-0.002750,0.249985,0,0);}
.m135_c01070{transform:matrix(0.226986,0.003632,-0.003999,0.249968,0,0);-ms-transform:matrix(0.226986,0.003632,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.226986,0.003632,-0.003999,0.249968,0,0);}
.mb8_c01070{transform:matrix(0.226991,0.002497,-0.002750,0.249985,0,0);-ms-transform:matrix(0.226991,0.002497,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.226991,0.002497,-0.002750,0.249985,0,0);}
.m33_c01070{transform:matrix(0.227262,0.001136,-0.001250,0.249997,0,0);-ms-transform:matrix(0.227262,0.001136,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.227262,0.001136,-0.001250,0.249997,0,0);}
.me9_c01070{transform:matrix(0.227341,0.002955,-0.003250,0.249979,0,0);-ms-transform:matrix(0.227341,0.002955,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.227341,0.002955,-0.003250,0.249979,0,0);}
.m8d_c01070{transform:matrix(0.227408,0.003184,-0.003500,0.249976,0,0);-ms-transform:matrix(0.227408,0.003184,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.227408,0.003184,-0.003500,0.249976,0,0);}
.m6b_c01070{transform:matrix(0.227416,0.002502,-0.002750,0.249985,0,0);-ms-transform:matrix(0.227416,0.002502,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.227416,0.002502,-0.002750,0.249985,0,0);}
.m60_c01070{transform:matrix(0.227541,0.002503,-0.002750,0.249985,0,0);-ms-transform:matrix(0.227541,0.002503,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.227541,0.002503,-0.002750,0.249985,0,0);}
.md9_c01070{transform:matrix(0.228716,0.002973,-0.003250,0.249979,0,0);-ms-transform:matrix(0.228716,0.002973,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.228716,0.002973,-0.003250,0.249979,0,0);}
.m155_c01070{transform:matrix(0.228773,0.004118,-0.004499,0.249960,0,0);-ms-transform:matrix(0.228773,0.004118,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.228773,0.004118,-0.004499,0.249960,0,0);}
.m136_c01070{transform:matrix(0.228981,0.003664,-0.003999,0.249968,0,0);-ms-transform:matrix(0.228981,0.003664,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.228981,0.003664,-0.003999,0.249968,0,0);}
.m2c_c01070{transform:matrix(0.228997,0.001145,-0.001250,0.249997,0,0);-ms-transform:matrix(0.228997,0.001145,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.228997,0.001145,-0.001250,0.249997,0,0);}
.me5_c01070{transform:matrix(0.229056,0.002978,-0.003250,0.249979,0,0);-ms-transform:matrix(0.229056,0.002978,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.229056,0.002978,-0.003250,0.249979,0,0);}
.m81_c01070{transform:matrix(0.229294,0.002293,-0.002500,0.249988,0,0);-ms-transform:matrix(0.229294,0.002293,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.229294,0.002293,-0.002500,0.249988,0,0);}
.mf8_c01070{transform:matrix(0.229441,0.002983,-0.003250,0.249979,0,0);-ms-transform:matrix(0.229441,0.002983,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.229441,0.002983,-0.003250,0.249979,0,0);}
.m149_c01070{transform:matrix(0.229771,0.003676,-0.003999,0.249968,0,0);-ms-transform:matrix(0.229771,0.003676,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.229771,0.003676,-0.003999,0.249968,0,0);}
.m124_c01070{transform:matrix(0.229935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229935,0.000000,0.000000,0.250000,0,0);}
.mc0_c01070{transform:matrix(0.230201,0.002532,-0.002750,0.249985,0,0);-ms-transform:matrix(0.230201,0.002532,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.230201,0.002532,-0.002750,0.249985,0,0);}
.mbb_c01070{transform:matrix(0.230311,0.002533,-0.002750,0.249985,0,0);-ms-transform:matrix(0.230311,0.002533,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.230311,0.002533,-0.002750,0.249985,0,0);}
.m99_c01070{transform:matrix(0.230892,0.003232,-0.003500,0.249976,0,0);-ms-transform:matrix(0.230892,0.003232,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.230892,0.003232,-0.003500,0.249976,0,0);}
.m10d_c01070{transform:matrix(0.230895,0.003002,-0.003250,0.249979,0,0);-ms-transform:matrix(0.230895,0.003002,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.230895,0.003002,-0.003250,0.249979,0,0);}
.m9c_c01070{transform:matrix(0.231102,0.003235,-0.003500,0.249976,0,0);-ms-transform:matrix(0.231102,0.003235,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.231102,0.003235,-0.003500,0.249976,0,0);}
.m130_c01070{transform:matrix(0.231220,0.003700,-0.003999,0.249968,0,0);-ms-transform:matrix(0.231220,0.003700,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.231220,0.003700,-0.003999,0.249968,0,0);}
.mc_c01070{transform:matrix(0.231527,0.001158,-0.001250,0.249997,0,0);-ms-transform:matrix(0.231527,0.001158,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.231527,0.001158,-0.001250,0.249997,0,0);}
.m31_c01070{transform:matrix(0.231627,0.001158,-0.001250,0.249997,0,0);-ms-transform:matrix(0.231627,0.001158,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.231627,0.001158,-0.001250,0.249997,0,0);}
.m15a_c01070{transform:matrix(0.232502,0.004185,-0.004499,0.249960,0,0);-ms-transform:matrix(0.232502,0.004185,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.232502,0.004185,-0.004499,0.249960,0,0);}
.maf_c01070{transform:matrix(0.232575,0.003023,-0.003250,0.249979,0,0);-ms-transform:matrix(0.232575,0.003023,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.232575,0.003023,-0.003250,0.249979,0,0);}
.m3c_c01070{transform:matrix(0.232649,0.001629,-0.001750,0.249994,0,0);-ms-transform:matrix(0.232649,0.001629,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.232649,0.001629,-0.001750,0.249994,0,0);}
.m150_c01070{transform:matrix(0.232877,0.004192,-0.004499,0.249960,0,0);-ms-transform:matrix(0.232877,0.004192,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.232877,0.004192,-0.004499,0.249960,0,0);}
.m83_c01070{transform:matrix(0.233088,0.002331,-0.002500,0.249988,0,0);-ms-transform:matrix(0.233088,0.002331,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.233088,0.002331,-0.002500,0.249988,0,0);}
.m12b_c01070{transform:matrix(0.233425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233425,0.000000,0.000000,0.250000,0,0);}
.m53_c01070{transform:matrix(0.233556,0.002569,-0.002750,0.249985,0,0);-ms-transform:matrix(0.233556,0.002569,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.233556,0.002569,-0.002750,0.249985,0,0);}
.m62_c01070{transform:matrix(0.233666,0.002570,-0.002750,0.249985,0,0);-ms-transform:matrix(0.233666,0.002570,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.233666,0.002570,-0.002750,0.249985,0,0);}
.mc4_c01070{transform:matrix(0.233760,0.003039,-0.003250,0.249979,0,0);-ms-transform:matrix(0.233760,0.003039,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.233760,0.003039,-0.003250,0.249979,0,0);}
.md4_c01070{transform:matrix(0.234240,0.003045,-0.003250,0.249979,0,0);-ms-transform:matrix(0.234240,0.003045,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.234240,0.003045,-0.003250,0.249979,0,0);}
.me7_c01070{transform:matrix(0.235040,0.003056,-0.003250,0.249979,0,0);-ms-transform:matrix(0.235040,0.003056,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.235040,0.003056,-0.003250,0.249979,0,0);}
.m134_c01070{transform:matrix(0.235255,0.003764,-0.003999,0.249968,0,0);-ms-transform:matrix(0.235255,0.003764,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.235255,0.003764,-0.003999,0.249968,0,0);}
.m27_c01070{transform:matrix(0.235471,0.002590,-0.002750,0.249985,0,0);-ms-transform:matrix(0.235471,0.002590,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.235471,0.002590,-0.002750,0.249985,0,0);}
.m96_c01070{transform:matrix(0.235572,0.003298,-0.003500,0.249976,0,0);-ms-transform:matrix(0.235572,0.003298,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.235572,0.003298,-0.003500,0.249976,0,0);}
.m10c_c01070{transform:matrix(0.235675,0.003064,-0.003250,0.249979,0,0);-ms-transform:matrix(0.235675,0.003064,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.235675,0.003064,-0.003250,0.249979,0,0);}
.m29_c01070{transform:matrix(0.235751,0.002593,-0.002750,0.249985,0,0);-ms-transform:matrix(0.235751,0.002593,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.235751,0.002593,-0.002750,0.249985,0,0);}
.m14e_c01070{transform:matrix(0.235810,0.003773,-0.003999,0.249968,0,0);-ms-transform:matrix(0.235810,0.003773,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.235810,0.003773,-0.003999,0.249968,0,0);}
.m111_c01070{transform:matrix(0.235920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235920,0.000000,0.000000,0.250000,0,0);}
.m98_c01070{transform:matrix(0.236187,0.003307,-0.003500,0.249976,0,0);-ms-transform:matrix(0.236187,0.003307,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.236187,0.003307,-0.003500,0.249976,0,0);}
.md8_c01070{transform:matrix(0.236420,0.003073,-0.003250,0.249979,0,0);-ms-transform:matrix(0.236420,0.003073,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.236420,0.003073,-0.003250,0.249979,0,0);}
.m5e_c01070{transform:matrix(0.236431,0.002601,-0.002750,0.249985,0,0);-ms-transform:matrix(0.236431,0.002601,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.236431,0.002601,-0.002750,0.249985,0,0);}
.m12e_c01070{transform:matrix(0.236850,0.003790,-0.003999,0.249968,0,0);-ms-transform:matrix(0.236850,0.003790,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.236850,0.003790,-0.003999,0.249968,0,0);}
.m5c_c01070{transform:matrix(0.237171,0.002609,-0.002750,0.249985,0,0);-ms-transform:matrix(0.237171,0.002609,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.237171,0.002609,-0.002750,0.249985,0,0);}
.m3b_c01070{transform:matrix(0.237464,0.001662,-0.001750,0.249994,0,0);-ms-transform:matrix(0.237464,0.001662,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.237464,0.001662,-0.001750,0.249994,0,0);}
.me4_c01070{transform:matrix(0.237690,0.003090,-0.003250,0.249979,0,0);-ms-transform:matrix(0.237690,0.003090,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.237690,0.003090,-0.003250,0.249979,0,0);}
.mc8_c01070{transform:matrix(0.238020,0.003094,-0.003250,0.249979,0,0);-ms-transform:matrix(0.238020,0.003094,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.238020,0.003094,-0.003250,0.249979,0,0);}
.mf7_c01070{transform:matrix(0.238075,0.003095,-0.003250,0.249979,0,0);-ms-transform:matrix(0.238075,0.003095,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.238075,0.003095,-0.003250,0.249979,0,0);}
.mc9_c01070{transform:matrix(0.238280,0.003098,-0.003250,0.249979,0,0);-ms-transform:matrix(0.238280,0.003098,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.238280,0.003098,-0.003250,0.249979,0,0);}
.m85_c01070{transform:matrix(0.238512,0.003339,-0.003500,0.249976,0,0);-ms-transform:matrix(0.238512,0.003339,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.238512,0.003339,-0.003500,0.249976,0,0);}
.mdb_c01070{transform:matrix(0.238590,0.003102,-0.003250,0.249979,0,0);-ms-transform:matrix(0.238590,0.003102,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.238590,0.003102,-0.003250,0.249979,0,0);}
.m147_c01070{transform:matrix(0.238689,0.003819,-0.003999,0.249968,0,0);-ms-transform:matrix(0.238689,0.003819,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.238689,0.003819,-0.003999,0.249968,0,0);}
.m38_c01070{transform:matrix(0.238739,0.001671,-0.001750,0.249994,0,0);-ms-transform:matrix(0.238739,0.001671,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.238739,0.001671,-0.001750,0.249994,0,0);}
.m82_c01070{transform:matrix(0.238843,0.002388,-0.002500,0.249988,0,0);-ms-transform:matrix(0.238843,0.002388,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.238843,0.002388,-0.002500,0.249988,0,0);}
.m80_c01070{transform:matrix(0.239028,0.002390,-0.002500,0.249988,0,0);-ms-transform:matrix(0.239028,0.002390,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.239028,0.002390,-0.002500,0.249988,0,0);}
.m1a_c01070{transform:matrix(0.239209,0.001674,-0.001750,0.249994,0,0);-ms-transform:matrix(0.239209,0.001674,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.239209,0.001674,-0.001750,0.249994,0,0);}
.mf5_c01070{transform:matrix(0.239340,0.003111,-0.003250,0.249979,0,0);-ms-transform:matrix(0.239340,0.003111,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.239340,0.003111,-0.003250,0.249979,0,0);}
.m12d_c01070{transform:matrix(0.239384,0.003830,-0.003999,0.249968,0,0);-ms-transform:matrix(0.239384,0.003830,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.239384,0.003830,-0.003999,0.249968,0,0);}
.m8a_c01070{transform:matrix(0.239542,0.003354,-0.003500,0.249976,0,0);-ms-transform:matrix(0.239542,0.003354,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.239542,0.003354,-0.003500,0.249976,0,0);}
.m107_c01070{transform:matrix(0.239715,0.003116,-0.003250,0.249979,0,0);-ms-transform:matrix(0.239715,0.003116,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.239715,0.003116,-0.003250,0.249979,0,0);}
.m61_c01070{transform:matrix(0.239895,0.002639,-0.002750,0.249985,0,0);-ms-transform:matrix(0.239895,0.002639,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.239895,0.002639,-0.002750,0.249985,0,0);}
.m25_c01070{transform:matrix(0.239905,0.002639,-0.002750,0.249985,0,0);-ms-transform:matrix(0.239905,0.002639,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.239905,0.002639,-0.002750,0.249985,0,0);}
.m7f_c01070{transform:matrix(0.240088,0.002401,-0.002500,0.249988,0,0);-ms-transform:matrix(0.240088,0.002401,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.240088,0.002401,-0.002500,0.249988,0,0);}
.mb4_c01070{transform:matrix(0.240155,0.002642,-0.002750,0.249985,0,0);-ms-transform:matrix(0.240155,0.002642,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.240155,0.002642,-0.002750,0.249985,0,0);}
.m91_c01070{transform:matrix(0.240426,0.003366,-0.003500,0.249976,0,0);-ms-transform:matrix(0.240426,0.003366,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.240426,0.003366,-0.003500,0.249976,0,0);}
.mb3_c01070{transform:matrix(0.240580,0.002646,-0.002750,0.249985,0,0);-ms-transform:matrix(0.240580,0.002646,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.240580,0.002646,-0.002750,0.249985,0,0);}
.maa_c01070{transform:matrix(0.242000,0.003146,-0.003250,0.249979,0,0);-ms-transform:matrix(0.242000,0.003146,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.242000,0.003146,-0.003250,0.249979,0,0);}
.mea_c01070{transform:matrix(0.242570,0.003153,-0.003250,0.249979,0,0);-ms-transform:matrix(0.242570,0.003153,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.242570,0.003153,-0.003250,0.249979,0,0);}
.mc5_c01070{transform:matrix(0.242610,0.003154,-0.003250,0.249979,0,0);-ms-transform:matrix(0.242610,0.003154,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.242610,0.003154,-0.003250,0.249979,0,0);}
.mb5_c01070{transform:matrix(0.242640,0.002669,-0.002750,0.249985,0,0);-ms-transform:matrix(0.242640,0.002669,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.242640,0.002669,-0.002750,0.249985,0,0);}
.mc7_c01070{transform:matrix(0.242684,0.003155,-0.003250,0.249979,0,0);-ms-transform:matrix(0.242684,0.003155,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.242684,0.003155,-0.003250,0.249979,0,0);}
.m10a_c01070{transform:matrix(0.243059,0.003160,-0.003250,0.249979,0,0);-ms-transform:matrix(0.243059,0.003160,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.243059,0.003160,-0.003250,0.249979,0,0);}
.m34_c01070{transform:matrix(0.243467,0.001217,-0.001250,0.249997,0,0);-ms-transform:matrix(0.243467,0.001217,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.243467,0.001217,-0.001250,0.249997,0,0);}
.mde_c01070{transform:matrix(0.243489,0.003165,-0.003250,0.249979,0,0);-ms-transform:matrix(0.243489,0.003165,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.243489,0.003165,-0.003250,0.249979,0,0);}
.m49_c01070{transform:matrix(0.243927,0.001951,-0.002000,0.249992,0,0);-ms-transform:matrix(0.243927,0.001951,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.243927,0.001951,-0.002000,0.249992,0,0);}
.m57_c01070{transform:matrix(0.244015,0.002684,-0.002750,0.249985,0,0);-ms-transform:matrix(0.244015,0.002684,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.244015,0.002684,-0.002750,0.249985,0,0);}
.m32_c01070{transform:matrix(0.244027,0.001220,-0.001250,0.249997,0,0);-ms-transform:matrix(0.244027,0.001220,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.244027,0.001220,-0.001250,0.249997,0,0);}
.m4d_c01070{transform:matrix(0.244130,0.002685,-0.002750,0.249985,0,0);-ms-transform:matrix(0.244130,0.002685,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.244130,0.002685,-0.002750,0.249985,0,0);}
.m11b_c01070{transform:matrix(0.244330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244330,0.000000,0.000000,0.250000,0,0);}
.m14a_c01070{transform:matrix(0.244394,0.003910,-0.003999,0.249968,0,0);-ms-transform:matrix(0.244394,0.003910,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.244394,0.003910,-0.003999,0.249968,0,0);}
.m3f_c01070{transform:matrix(0.244764,0.001713,-0.001750,0.249994,0,0);-ms-transform:matrix(0.244764,0.001713,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.244764,0.001713,-0.001750,0.249994,0,0);}
.m121_c01070{transform:matrix(0.244910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244910,0.000000,0.000000,0.250000,0,0);}
.m54_c01070{transform:matrix(0.245000,0.002695,-0.002750,0.249985,0,0);-ms-transform:matrix(0.245000,0.002695,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.245000,0.002695,-0.002750,0.249985,0,0);}
.m114_c01070{transform:matrix(0.245180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245180,0.000000,0.000000,0.250000,0,0);}
.m148_c01070{transform:matrix(0.245534,0.003929,-0.003999,0.249968,0,0);-ms-transform:matrix(0.245534,0.003929,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.245534,0.003929,-0.003999,0.249968,0,0);}
.m116_c01070{transform:matrix(0.245835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245835,0.000000,0.000000,0.250000,0,0);}
.m9_c01070{transform:matrix(0.246202,0.001231,-0.001250,0.249997,0,0);-ms-transform:matrix(0.246202,0.001231,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.246202,0.001231,-0.001250,0.249997,0,0);}
.m126_c01070{transform:matrix(0.246215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246215,0.000000,0.000000,0.250000,0,0);}
.m93_c01070{transform:matrix(0.246331,0.003449,-0.003500,0.249976,0,0);-ms-transform:matrix(0.246331,0.003449,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.246331,0.003449,-0.003500,0.249976,0,0);}
.m2f_c01070{transform:matrix(0.246382,0.001232,-0.001250,0.249997,0,0);-ms-transform:matrix(0.246382,0.001232,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.246382,0.001232,-0.001250,0.249997,0,0);}
.m108_c01070{transform:matrix(0.247084,0.003212,-0.003250,0.249979,0,0);-ms-transform:matrix(0.247084,0.003212,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.247084,0.003212,-0.003250,0.249979,0,0);}
.mee_c01070{transform:matrix(0.247124,0.003213,-0.003250,0.249979,0,0);-ms-transform:matrix(0.247124,0.003213,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.247124,0.003213,-0.003250,0.249979,0,0);}
.m129_c01070{transform:matrix(0.247135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247135,0.000000,0.000000,0.250000,0,0);}
.m84_c01070{transform:matrix(0.247191,0.003461,-0.003500,0.249976,0,0);-ms-transform:matrix(0.247191,0.003461,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.247191,0.003461,-0.003500,0.249976,0,0);}
.m94_c01070{transform:matrix(0.247276,0.003462,-0.003500,0.249976,0,0);-ms-transform:matrix(0.247276,0.003462,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.247276,0.003462,-0.003500,0.249976,0,0);}
.md1_c01070{transform:matrix(0.247279,0.003215,-0.003250,0.249979,0,0);-ms-transform:matrix(0.247279,0.003215,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.247279,0.003215,-0.003250,0.249979,0,0);}
.m6d_c01070{transform:matrix(0.247285,0.002720,-0.002750,0.249985,0,0);-ms-transform:matrix(0.247285,0.002720,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.247285,0.002720,-0.002750,0.249985,0,0);}
.m112_c01070{transform:matrix(0.247355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247355,0.000000,0.000000,0.250000,0,0);}
.m10e_c01070{transform:matrix(0.247604,0.003219,-0.003250,0.249979,0,0);-ms-transform:matrix(0.247604,0.003219,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.247604,0.003219,-0.003250,0.249979,0,0);}
.m12_c01070{transform:matrix(0.247749,0.001734,-0.001750,0.249994,0,0);-ms-transform:matrix(0.247749,0.001734,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.247749,0.001734,-0.001750,0.249994,0,0);}
.mf_c01070{transform:matrix(0.247752,0.001239,-0.001250,0.249997,0,0);-ms-transform:matrix(0.247752,0.001239,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.247752,0.001239,-0.001250,0.249997,0,0);}
.m5b_c01070{transform:matrix(0.247920,0.002727,-0.002750,0.249985,0,0);-ms-transform:matrix(0.247920,0.002727,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.247920,0.002727,-0.002750,0.249985,0,0);}
.ma4_c01070{transform:matrix(0.248081,0.003473,-0.003500,0.249976,0,0);-ms-transform:matrix(0.248081,0.003473,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.248081,0.003473,-0.003500,0.249976,0,0);}
.mc1_c01070{transform:matrix(0.248124,0.003226,-0.003250,0.249979,0,0);-ms-transform:matrix(0.248124,0.003226,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.248124,0.003226,-0.003250,0.249979,0,0);}
.mce_c01070{transform:matrix(0.248449,0.003230,-0.003250,0.249979,0,0);-ms-transform:matrix(0.248449,0.003230,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.248449,0.003230,-0.003250,0.249979,0,0);}
.mfa_c01070{transform:matrix(0.248654,0.003233,-0.003250,0.249979,0,0);-ms-transform:matrix(0.248654,0.003233,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.248654,0.003233,-0.003250,0.249979,0,0);}
.m59_c01070{transform:matrix(0.249140,0.002741,-0.002750,0.249985,0,0);-ms-transform:matrix(0.249140,0.002741,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.249140,0.002741,-0.002750,0.249985,0,0);}
.m14d_c01070{transform:matrix(0.249488,0.003992,-0.003999,0.249968,0,0);-ms-transform:matrix(0.249488,0.003992,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.249488,0.003992,-0.003999,0.249968,0,0);}
.m7_c01070{transform:matrix(0.249577,0.001248,-0.001250,0.249997,0,0);-ms-transform:matrix(0.249577,0.001248,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.249577,0.001248,-0.001250,0.249997,0,0);}
.m18_c01070{transform:matrix(0.249754,0.001748,-0.001750,0.249994,0,0);-ms-transform:matrix(0.249754,0.001748,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.249754,0.001748,-0.001750,0.249994,0,0);}
.md3_c01070{transform:matrix(0.249824,0.003248,-0.003250,0.249979,0,0);-ms-transform:matrix(0.249824,0.003248,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.249824,0.003248,-0.003250,0.249979,0,0);}
.m30_c01070{transform:matrix(0.249927,0.001250,-0.001250,0.249997,0,0);-ms-transform:matrix(0.249927,0.001250,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.249927,0.001250,-0.001250,0.249997,0,0);}
.m110_c01070{transform:matrix(0.249989,0.003250,-0.003250,0.249979,0,0);-ms-transform:matrix(0.249989,0.003250,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.249989,0.003250,-0.003250,0.249979,0,0);}
.me_c01070{transform:matrix(0.250152,0.001251,-0.001250,0.249997,0,0);-ms-transform:matrix(0.250152,0.001251,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.250152,0.001251,-0.001250,0.249997,0,0);}
.m9b_c01070{transform:matrix(0.250255,0.003504,-0.003500,0.249976,0,0);-ms-transform:matrix(0.250255,0.003504,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.250255,0.003504,-0.003500,0.249976,0,0);}
.ma0_c01070{transform:matrix(0.250300,0.003504,-0.003500,0.249976,0,0);-ms-transform:matrix(0.250300,0.003504,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.250300,0.003504,-0.003500,0.249976,0,0);}
.md2_c01070{transform:matrix(0.250324,0.003254,-0.003250,0.249979,0,0);-ms-transform:matrix(0.250324,0.003254,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.250324,0.003254,-0.003250,0.249979,0,0);}
.mb9_c01070{transform:matrix(0.250455,0.002755,-0.002750,0.249985,0,0);-ms-transform:matrix(0.250455,0.002755,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.250455,0.002755,-0.002750,0.249985,0,0);}
.m52_c01070{transform:matrix(0.250520,0.002756,-0.002750,0.249985,0,0);-ms-transform:matrix(0.250520,0.002756,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.250520,0.002756,-0.002750,0.249985,0,0);}
.mf1_c01070{transform:matrix(0.250649,0.003258,-0.003250,0.249979,0,0);-ms-transform:matrix(0.250649,0.003258,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.250649,0.003258,-0.003250,0.249979,0,0);}
.mca_c01070{transform:matrix(0.250994,0.003263,-0.003250,0.249979,0,0);-ms-transform:matrix(0.250994,0.003263,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.250994,0.003263,-0.003250,0.249979,0,0);}
.mef_c01070{transform:matrix(0.251934,0.003275,-0.003250,0.249979,0,0);-ms-transform:matrix(0.251934,0.003275,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.251934,0.003275,-0.003250,0.249979,0,0);}
.m11d_c01070{transform:matrix(0.253695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253695,0.000000,0.000000,0.250000,0,0);}
.mc6_c01070{transform:matrix(0.253929,0.003301,-0.003250,0.249979,0,0);-ms-transform:matrix(0.253929,0.003301,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.253929,0.003301,-0.003250,0.249979,0,0);}
.m12a_c01070{transform:matrix(0.254045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254045,0.000000,0.000000,0.250000,0,0);}
.mbe_c01070{transform:matrix(0.254295,0.002797,-0.002750,0.249985,0,0);-ms-transform:matrix(0.254295,0.002797,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.254295,0.002797,-0.002750,0.249985,0,0);}
.m35_c01070{transform:matrix(0.255432,0.001277,-0.001250,0.249997,0,0);-ms-transform:matrix(0.255432,0.001277,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.255432,0.001277,-0.001250,0.249997,0,0);}
.m127_c01070{transform:matrix(0.255460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255460,0.000000,0.000000,0.250000,0,0);}
.m1d_c01070{transform:matrix(0.255574,0.001789,-0.001750,0.249994,0,0);-ms-transform:matrix(0.255574,0.001789,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.255574,0.001789,-0.001750,0.249994,0,0);}
.mcc_c01070{transform:matrix(0.255668,0.003324,-0.003250,0.249979,0,0);-ms-transform:matrix(0.255668,0.003324,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.255668,0.003324,-0.003250,0.249979,0,0);}
.md7_c01070{transform:matrix(0.256438,0.003334,-0.003250,0.249979,0,0);-ms-transform:matrix(0.256438,0.003334,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.256438,0.003334,-0.003250,0.249979,0,0);}
.mf6_c01070{transform:matrix(0.256588,0.003336,-0.003250,0.249979,0,0);-ms-transform:matrix(0.256588,0.003336,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.256588,0.003336,-0.003250,0.249979,0,0);}
.ma7_c01070{transform:matrix(0.256765,0.003595,-0.003500,0.249976,0,0);-ms-transform:matrix(0.256765,0.003595,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.256765,0.003595,-0.003500,0.249976,0,0);}
.m146_c01070{transform:matrix(0.256887,0.004110,-0.003999,0.249968,0,0);-ms-transform:matrix(0.256887,0.004110,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.256887,0.004110,-0.003999,0.249968,0,0);}
.mb2_c01070{transform:matrix(0.257518,0.003348,-0.003250,0.249979,0,0);-ms-transform:matrix(0.257518,0.003348,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.257518,0.003348,-0.003250,0.249979,0,0);}
.m1c_c01070{transform:matrix(0.258179,0.001807,-0.001750,0.249994,0,0);-ms-transform:matrix(0.258179,0.001807,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.258179,0.001807,-0.001750,0.249994,0,0);}
.mba_c01070{transform:matrix(0.258289,0.002841,-0.002750,0.249985,0,0);-ms-transform:matrix(0.258289,0.002841,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.258289,0.002841,-0.002750,0.249985,0,0);}
.m145_c01070{transform:matrix(0.258892,0.004142,-0.003999,0.249968,0,0);-ms-transform:matrix(0.258892,0.004142,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.258892,0.004142,-0.003999,0.249968,0,0);}
.m4f_c01070{transform:matrix(0.259214,0.002851,-0.002750,0.249985,0,0);-ms-transform:matrix(0.259214,0.002851,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.259214,0.002851,-0.002750,0.249985,0,0);}
.mb6_c01070{transform:matrix(0.260104,0.002861,-0.002750,0.249985,0,0);-ms-transform:matrix(0.260104,0.002861,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.260104,0.002861,-0.002750,0.249985,0,0);}
.mb0_c01070{transform:matrix(0.260278,0.003384,-0.003250,0.249979,0,0);-ms-transform:matrix(0.260278,0.003384,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.260278,0.003384,-0.003250,0.249979,0,0);}
.ma6_c01070{transform:matrix(0.260494,0.003647,-0.003500,0.249976,0,0);-ms-transform:matrix(0.260494,0.003647,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.260494,0.003647,-0.003500,0.249976,0,0);}
.m56_c01070{transform:matrix(0.260579,0.002866,-0.002750,0.249985,0,0);-ms-transform:matrix(0.260579,0.002866,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.260579,0.002866,-0.002750,0.249985,0,0);}
.m8e_c01070{transform:matrix(0.260704,0.003650,-0.003500,0.249976,0,0);-ms-transform:matrix(0.260704,0.003650,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.260704,0.003650,-0.003500,0.249976,0,0);}
.md_c01070{transform:matrix(0.261042,0.001305,-0.001250,0.249997,0,0);-ms-transform:matrix(0.261042,0.001305,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.261042,0.001305,-0.001250,0.249997,0,0);}
.m63_c01070{transform:matrix(0.262349,0.002886,-0.002750,0.249985,0,0);-ms-transform:matrix(0.262349,0.002886,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.262349,0.002886,-0.002750,0.249985,0,0);}
.m162_c01070{transform:matrix(0.263017,0.004734,-0.004499,0.249960,0,0);-ms-transform:matrix(0.263017,0.004734,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.263017,0.004734,-0.004499,0.249960,0,0);}
.mbc_c01070{transform:matrix(0.263224,0.002895,-0.002750,0.249985,0,0);-ms-transform:matrix(0.263224,0.002895,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.263224,0.002895,-0.002750,0.249985,0,0);}
.mae_c01070{transform:matrix(0.263693,0.003428,-0.003250,0.249979,0,0);-ms-transform:matrix(0.263693,0.003428,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.263693,0.003428,-0.003250,0.249979,0,0);}
.mb7_c01070{transform:matrix(0.263744,0.002901,-0.002750,0.249985,0,0);-ms-transform:matrix(0.263744,0.002901,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.263744,0.002901,-0.002750,0.249985,0,0);}
.m46_c01070{transform:matrix(0.264512,0.002116,-0.002000,0.249992,0,0);-ms-transform:matrix(0.264512,0.002116,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.264512,0.002116,-0.002000,0.249992,0,0);}
.mbf_c01070{transform:matrix(0.264684,0.002912,-0.002750,0.249985,0,0);-ms-transform:matrix(0.264684,0.002912,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.264684,0.002912,-0.002750,0.249985,0,0);}
.m11_c01070{transform:matrix(0.264957,0.001325,-0.001250,0.249997,0,0);-ms-transform:matrix(0.264957,0.001325,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.264957,0.001325,-0.001250,0.249997,0,0);}
.m19_c01070{transform:matrix(0.265294,0.001857,-0.001750,0.249994,0,0);-ms-transform:matrix(0.265294,0.001857,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.265294,0.001857,-0.001750,0.249994,0,0);}
.m17_c01070{transform:matrix(0.265578,0.001859,-0.001750,0.249994,0,0);-ms-transform:matrix(0.265578,0.001859,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.265578,0.001859,-0.001750,0.249994,0,0);}
.m47_c01070{transform:matrix(0.265627,0.002125,-0.002000,0.249992,0,0);-ms-transform:matrix(0.265627,0.002125,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.265627,0.002125,-0.002000,0.249992,0,0);}
.m16_c01070{transform:matrix(0.265683,0.001860,-0.001750,0.249994,0,0);-ms-transform:matrix(0.265683,0.001860,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.265683,0.001860,-0.001750,0.249994,0,0);}
.m14_c01070{transform:matrix(0.266233,0.001864,-0.001750,0.249994,0,0);-ms-transform:matrix(0.266233,0.001864,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.266233,0.001864,-0.001750,0.249994,0,0);}
.ma1_c01070{transform:matrix(0.266479,0.003731,-0.003500,0.249976,0,0);-ms-transform:matrix(0.266479,0.003731,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.266479,0.003731,-0.003500,0.249976,0,0);}
.m6c_c01070{transform:matrix(0.266929,0.002936,-0.002750,0.249985,0,0);-ms-transform:matrix(0.266929,0.002936,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.266929,0.002936,-0.002750,0.249985,0,0);}
.m15c_c01070{transform:matrix(0.267367,0.004813,-0.004499,0.249960,0,0);-ms-transform:matrix(0.267367,0.004813,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.267367,0.004813,-0.004499,0.249960,0,0);}
.m42_c01070{transform:matrix(0.267686,0.002141,-0.002000,0.249992,0,0);-ms-transform:matrix(0.267686,0.002141,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.267686,0.002141,-0.002000,0.249992,0,0);}
.m5a_c01070{transform:matrix(0.267929,0.002947,-0.002750,0.249985,0,0);-ms-transform:matrix(0.267929,0.002947,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.267929,0.002947,-0.002750,0.249985,0,0);}
.m5d_c01070{transform:matrix(0.268109,0.002949,-0.002750,0.249985,0,0);-ms-transform:matrix(0.268109,0.002949,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.268109,0.002949,-0.002750,0.249985,0,0);}
.ma_c01070{transform:matrix(0.268222,0.001341,-0.001250,0.249997,0,0);-ms-transform:matrix(0.268222,0.001341,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.268222,0.001341,-0.001250,0.249997,0,0);}
.m67_c01070{transform:matrix(0.268554,0.002954,-0.002750,0.249985,0,0);-ms-transform:matrix(0.268554,0.002954,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.268554,0.002954,-0.002750,0.249985,0,0);}
.mac_c01070{transform:matrix(0.268912,0.003496,-0.003250,0.249979,0,0);-ms-transform:matrix(0.268912,0.003496,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.268912,0.003496,-0.003250,0.249979,0,0);}
.m6e_c01070{transform:matrix(0.269159,0.002961,-0.002750,0.249985,0,0);-ms-transform:matrix(0.269159,0.002961,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.269159,0.002961,-0.002750,0.249985,0,0);}
.m9e_c01070{transform:matrix(0.270254,0.003784,-0.003500,0.249976,0,0);-ms-transform:matrix(0.270254,0.003784,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.270254,0.003784,-0.003500,0.249976,0,0);}
.m58_c01070{transform:matrix(0.271244,0.002984,-0.002750,0.249985,0,0);-ms-transform:matrix(0.271244,0.002984,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.271244,0.002984,-0.002750,0.249985,0,0);}
.m4a_c01070{transform:matrix(0.272676,0.002181,-0.002000,0.249992,0,0);-ms-transform:matrix(0.272676,0.002181,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.272676,0.002181,-0.002000,0.249992,0,0);}
.m69_c01070{transform:matrix(0.273098,0.003004,-0.002750,0.249985,0,0);-ms-transform:matrix(0.273098,0.003004,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.273098,0.003004,-0.002750,0.249985,0,0);}
.m43_c01070{transform:matrix(0.273536,0.002188,-0.002000,0.249992,0,0);-ms-transform:matrix(0.273536,0.002188,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.273536,0.002188,-0.002000,0.249992,0,0);}
.m86_c01070{transform:matrix(0.274943,0.003849,-0.003500,0.249976,0,0);-ms-transform:matrix(0.274943,0.003849,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.274943,0.003849,-0.003500,0.249976,0,0);}
.ma9_c01070{transform:matrix(0.275032,0.003575,-0.003250,0.249979,0,0);-ms-transform:matrix(0.275032,0.003575,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.275032,0.003575,-0.003250,0.249979,0,0);}
.m65_c01070{transform:matrix(0.275218,0.003027,-0.002750,0.249985,0,0);-ms-transform:matrix(0.275218,0.003027,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.275218,0.003027,-0.002750,0.249985,0,0);}
.m10_c01070{transform:matrix(0.275252,0.001376,-0.001250,0.249997,0,0);-ms-transform:matrix(0.275252,0.001376,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.275252,0.001376,-0.001250,0.249997,0,0);}
.mad_c01070{transform:matrix(0.275447,0.003581,-0.003250,0.249979,0,0);-ms-transform:matrix(0.275447,0.003581,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.275447,0.003581,-0.003250,0.249979,0,0);}
.m8_c01070{transform:matrix(0.275987,0.001380,-0.001250,0.249997,0,0);-ms-transform:matrix(0.275987,0.001380,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.275987,0.001380,-0.001250,0.249997,0,0);}
.m1b_c01070{transform:matrix(0.276083,0.001933,-0.001750,0.249994,0,0);-ms-transform:matrix(0.276083,0.001933,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.276083,0.001933,-0.001750,0.249994,0,0);}
.m64_c01070{transform:matrix(0.276498,0.003041,-0.002750,0.249985,0,0);-ms-transform:matrix(0.276498,0.003041,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.276498,0.003041,-0.002750,0.249985,0,0);}
.m87_c01070{transform:matrix(0.277338,0.003883,-0.003500,0.249976,0,0);-ms-transform:matrix(0.277338,0.003883,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.277338,0.003883,-0.003500,0.249976,0,0);}
.mb1_c01070{transform:matrix(0.278087,0.003615,-0.003250,0.249979,0,0);-ms-transform:matrix(0.278087,0.003615,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.278087,0.003615,-0.003250,0.249979,0,0);}
.m113_c01070{transform:matrix(0.278665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278665,0.000000,0.000000,0.250000,0,0);}
.m9f_c01070{transform:matrix(0.279638,0.003915,-0.003500,0.249976,0,0);-ms-transform:matrix(0.279638,0.003915,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.279638,0.003915,-0.003500,0.249976,0,0);}
.m6a_c01070{transform:matrix(0.279893,0.003079,-0.002750,0.249985,0,0);-ms-transform:matrix(0.279893,0.003079,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.279893,0.003079,-0.002750,0.249985,0,0);}
.m1e_c01070{transform:matrix(0.281538,0.003097,-0.002750,0.249985,0,0);-ms-transform:matrix(0.281538,0.003097,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.281538,0.003097,-0.002750,0.249985,0,0);}
.m11c_c01070{transform:matrix(0.281695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281695,0.000000,0.000000,0.250000,0,0);}
.m48_c01070{transform:matrix(0.282116,0.002257,-0.002000,0.249992,0,0);-ms-transform:matrix(0.282116,0.002257,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.282116,0.002257,-0.002000,0.249992,0,0);}
.m41_c01070{transform:matrix(0.282706,0.002262,-0.002000,0.249992,0,0);-ms-transform:matrix(0.282706,0.002262,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.282706,0.002262,-0.002000,0.249992,0,0);}
.mb_c01070{transform:matrix(0.283001,0.001415,-0.001250,0.249997,0,0);-ms-transform:matrix(0.283001,0.001415,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.283001,0.001415,-0.001250,0.249997,0,0);}
.m11e_c01070{transform:matrix(0.283090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283090,0.000000,0.000000,0.250000,0,0);}
.m5f_c01070{transform:matrix(0.283288,0.003116,-0.002750,0.249985,0,0);-ms-transform:matrix(0.283288,0.003116,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.283288,0.003116,-0.002750,0.249985,0,0);}
.m44_c01070{transform:matrix(0.283756,0.002270,-0.002000,0.249992,0,0);-ms-transform:matrix(0.283756,0.002270,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.283756,0.002270,-0.002000,0.249992,0,0);}
.m115_c01070{transform:matrix(0.287030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287030,0.000000,0.000000,0.250000,0,0);}
.mcf_c01070{transform:matrix(0.288511,0.003751,-0.003250,0.249979,0,0);-ms-transform:matrix(0.288511,0.003751,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.288511,0.003751,-0.003250,0.249979,0,0);}
.m117_c01070{transform:matrix(0.289195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289195,0.000000,0.000000,0.250000,0,0);}
.m118_c01070{transform:matrix(0.292795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292795,0.000000,0.000000,0.250000,0,0);}
.m9d_c01070{transform:matrix(0.293206,0.004105,-0.003500,0.249976,0,0);-ms-transform:matrix(0.293206,0.004105,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.293206,0.004105,-0.003500,0.249976,0,0);}
.ma5_c01070{transform:matrix(0.295411,0.004136,-0.003500,0.249976,0,0);-ms-transform:matrix(0.295411,0.004136,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.295411,0.004136,-0.003500,0.249976,0,0);}
.m45_c01070{transform:matrix(0.297125,0.002377,-0.002000,0.249992,0,0);-ms-transform:matrix(0.297125,0.002377,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.297125,0.002377,-0.002000,0.249992,0,0);}
.m119_c01070{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m8c_c01070{transform:matrix(0.297536,0.004166,-0.003500,0.249976,0,0);-ms-transform:matrix(0.297536,0.004166,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.297536,0.004166,-0.003500,0.249976,0,0);}
.m40_c01070{transform:matrix(0.298775,0.002390,-0.002000,0.249992,0,0);-ms-transform:matrix(0.298775,0.002390,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.298775,0.002390,-0.002000,0.249992,0,0);}
.m4b_c01070{transform:matrix(0.299405,0.002395,-0.002000,0.249992,0,0);-ms-transform:matrix(0.299405,0.002395,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.299405,0.002395,-0.002000,0.249992,0,0);}
.m6_c01070{transform:matrix(0.303225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303225,0.000000,0.000000,0.250000,0,0);}
.m11a_c01070{transform:matrix(0.303835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303835,0.000000,0.000000,0.250000,0,0);}
.ma3_c01070{transform:matrix(0.307225,0.004301,-0.003500,0.249976,0,0);-ms-transform:matrix(0.307225,0.004301,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.307225,0.004301,-0.003500,0.249976,0,0);}
.ma2_c01070{transform:matrix(0.315654,0.004419,-0.003500,0.249976,0,0);-ms-transform:matrix(0.315654,0.004419,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.315654,0.004419,-0.003500,0.249976,0,0);}
.m5_c01070{transform:matrix(0.322865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322865,0.000000,0.000000,0.250000,0,0);}
.m15f_c01070{transform:matrix(0.342170,0.006159,-0.004499,0.249960,0,0);-ms-transform:matrix(0.342170,0.006159,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.342170,0.006159,-0.004499,0.249960,0,0);}
.m160_c01070{transform:matrix(0.359342,0.006468,-0.004499,0.249960,0,0);-ms-transform:matrix(0.359342,0.006468,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.359342,0.006468,-0.004499,0.249960,0,0);}
.m15d_c01070{transform:matrix(0.372645,0.006708,-0.004499,0.249960,0,0);-ms-transform:matrix(0.372645,0.006708,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.372645,0.006708,-0.004499,0.249960,0,0);}
.m161_c01070{transform:matrix(0.380528,0.006850,-0.004499,0.249960,0,0);-ms-transform:matrix(0.380528,0.006850,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.380528,0.006850,-0.004499,0.249960,0,0);}
.m15e_c01070{transform:matrix(0.484841,0.008727,-0.004499,0.249960,0,0);-ms-transform:matrix(0.484841,0.008727,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.484841,0.008727,-0.004499,0.249960,0,0);}
.v0_c01070{vertical-align:0.000000px;}
.ls0_c01070{letter-spacing:0.000000px;}
.sc__c01070{text-shadow:none;}
.sc0_c01070{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__c01070{-webkit-text-stroke:0px transparent;}
.sc0_c01070{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01070{word-spacing:0.000000px;}
.fc0_c01070{color:transparent;}
.fs19_c01070{font-size:42.006803px;}
.fs1_c01070{font-size:48.000000px;}
.fs14_c01070{font-size:66.000000px;}
.fs8_c01070{font-size:66.002112px;}
.fse_c01070{font-size:66.006468px;}
.fs3_c01070{font-size:72.000900px;}
.fs4_c01070{font-size:72.001764px;}
.fsa_c01070{font-size:72.004356px;}
.fsf_c01070{font-size:72.006084px;}
.fsc_c01070{font-size:72.007056px;}
.fs13_c01070{font-size:78.000000px;}
.fs6_c01070{font-size:78.000975px;}
.fs9_c01070{font-size:78.004719px;}
.fs10_c01070{font-size:78.006591px;}
.fsd_c01070{font-size:78.007644px;}
.fs17_c01070{font-size:78.009983px;}
.fs7_c01070{font-size:84.002058px;}
.fsb_c01070{font-size:84.004200px;}
.fs5_c01070{font-size:84.005082px;}
.fs11_c01070{font-size:84.007098px;}
.fs15_c01070{font-size:84.010751px;}
.fs18_c01070{font-size:84.013607px;}
.fs2_c01070{font-size:90.000000px;}
.fs12_c01070{font-size:90.007605px;}
.fs16_c01070{font-size:90.011519px;}
.fs0_c01070{font-size:102.000000px;}
.fs1a_c01070{font-size:120.002940px;}
.y0_c01070{bottom:0.000000px;}
.y163_c01070{bottom:65.916057px;}
.y162_c01070{bottom:66.309261px;}
.y161_c01070{bottom:66.693057px;}
.y160_c01070{bottom:66.923605px;}
.y15f_c01070{bottom:67.078659px;}
.y15e_c01070{bottom:67.390992px;}
.y15d_c01070{bottom:67.617351px;}
.y15c_c01070{bottom:68.154079px;}
.y15b_c01070{bottom:68.851500px;}
.y15a_c01070{bottom:96.878109px;}
.y159_c01070{bottom:97.273515px;}
.y158_c01070{bottom:98.191380px;}
.y157_c01070{bottom:98.481006px;}
.y156_c01070{bottom:99.018045px;}
.y155_c01070{bottom:99.646257px;}
.y154_c01070{bottom:111.207387px;}
.y153_c01070{bottom:111.640197px;}
.y152_c01070{bottom:113.032020px;}
.y151_c01070{bottom:113.634741px;}
.y150_c01070{bottom:114.820203px;}
.y14f_c01070{bottom:115.637952px;}
.y14e_c01070{bottom:116.054886px;}
.y14d_c01070{bottom:117.451218px;}
.y14c_c01070{bottom:118.024617px;}
.y14b_c01070{bottom:119.409933px;}
.y14a_c01070{bottom:120.002232px;}
.y149_c01070{bottom:120.796383px;}
.y148_c01070{bottom:122.962539px;}
.y147_c01070{bottom:123.393000px;}
.y146_c01070{bottom:151.977156px;}
.y145_c01070{bottom:153.560352px;}
.y144_c01070{bottom:154.440372px;}
.y143_c01070{bottom:155.106408px;}
.y142_c01070{bottom:156.450012px;}
.y141_c01070{bottom:157.341432px;}
.y140_c01070{bottom:158.892804px;}
.y13f_c01070{bottom:159.983544px;}
.y13e_c01070{bottom:161.959524px;}
.y13d_c01070{bottom:164.158536px;}
.y13c_c01070{bottom:185.752392px;}
.y13b_c01070{bottom:187.262988px;}
.y13a_c01070{bottom:187.831812px;}
.y139_c01070{bottom:189.531144px;}
.y138_c01070{bottom:190.105860px;}
.y137_c01070{bottom:191.233908px;}
.y136_c01070{bottom:191.619312px;}
.y135_c01070{bottom:192.350628px;}
.y134_c01070{bottom:192.732960px;}
.y133_c01070{bottom:194.040492px;}
.y132_c01070{bottom:194.590116px;}
.y131_c01070{bottom:196.104672px;}
.y130_c01070{bottom:196.829640px;}
.y12f_c01070{bottom:221.322024px;}
.y12e_c01070{bottom:222.411072px;}
.y12d_c01070{bottom:223.642464px;}
.y12c_c01070{bottom:225.072816px;}
.y12b_c01070{bottom:225.600144px;}
.y12a_c01070{bottom:226.313256px;}
.y129_c01070{bottom:226.835904px;}
.y128_c01070{bottom:228.085464px;}
.y127_c01070{bottom:228.780144px;}
.y126_c01070{bottom:230.202696px;}
.y125_c01070{bottom:231.959400px;}
.y124_c01070{bottom:232.473000px;}
.y123_c01070{bottom:258.421500px;}
.y122_c01070{bottom:259.717500px;}
.y121_c01070{bottom:260.605500px;}
.y120_c01070{bottom:261.027000px;}
.y11f_c01070{bottom:262.326000px;}
.y11e_c01070{bottom:263.169000px;}
.y11d_c01070{bottom:263.608500px;}
.y11c_c01070{bottom:264.051000px;}
.y11b_c01070{bottom:264.468000px;}
.y11a_c01070{bottom:265.054500px;}
.y119_c01070{bottom:265.908000px;}
.y118_c01070{bottom:266.473500px;}
.y117_c01070{bottom:267.034500px;}
.y116_c01070{bottom:294.825000px;}
.y115_c01070{bottom:295.380000px;}
.y114_c01070{bottom:296.698500px;}
.y113_c01070{bottom:297.271500px;}
.y112_c01070{bottom:298.618500px;}
.y111_c01070{bottom:300.489000px;}
.y110_c01070{bottom:301.806000px;}
.y10f_c01070{bottom:303.109500px;}
.y10e_c01070{bottom:303.655500px;}
.y10d_c01070{bottom:304.981500px;}
.y10c_c01070{bottom:305.530500px;}
.y10b_c01070{bottom:305.929500px;}
.y10a_c01070{bottom:306.453000px;}
.y109_c01070{bottom:330.208500px;}
.y108_c01070{bottom:332.440448px;}
.y107_c01070{bottom:332.774778px;}
.y106_c01070{bottom:333.663094px;}
.y105_c01070{bottom:333.897672px;}
.y104_c01070{bottom:334.543608px;}
.y103_c01070{bottom:334.881799px;}
.y102_c01070{bottom:335.649257px;}
.y101_c01070{bottom:335.989536px;}
.y100_c01070{bottom:336.316824px;}
.yff_c01070{bottom:337.099126px;}
.yfe_c01070{bottom:337.968210px;}
.yfd_c01070{bottom:338.295264px;}
.yfc_c01070{bottom:368.707696px;}
.yfb_c01070{bottom:369.338331px;}
.yfa_c01070{bottom:369.599599px;}
.yf9_c01070{bottom:370.049257px;}
.yf8_c01070{bottom:370.569706px;}
.yf7_c01070{bottom:371.103774px;}
.yf6_c01070{bottom:371.368985px;}
.yf5_c01070{bottom:372.077901px;}
.yf4_c01070{bottom:372.514447px;}
.yf3_c01070{bottom:373.218544px;}
.yf2_c01070{bottom:373.667929px;}
.yf1_c01070{bottom:402.572989px;}
.yf0_c01070{bottom:402.977454px;}
.yef_c01070{bottom:403.648563px;}
.yee_c01070{bottom:404.313062px;}
.yed_c01070{bottom:404.711811px;}
.yec_c01070{bottom:405.495328px;}
.yeb_c01070{bottom:405.901039px;}
.yea_c01070{bottom:406.299867px;}
.ye9_c01070{bottom:406.707549px;}
.ye8_c01070{bottom:407.760091px;}
.ye7_c01070{bottom:408.165354px;}
.ye6_c01070{bottom:409.335295px;}
.ye5_c01070{bottom:410.390802px;}
.ye4_c01070{bottom:441.457071px;}
.ye3_c01070{bottom:441.804661px;}
.ye2_c01070{bottom:442.174320px;}
.ye1_c01070{bottom:442.785365px;}
.ye0_c01070{bottom:442.968643px;}
.ydf_c01070{bottom:443.500642px;}
.yde_c01070{bottom:443.859159px;}
.ydd_c01070{bottom:444.643101px;}
.ydc_c01070{bottom:444.912448px;}
.ydb_c01070{bottom:445.446438px;}
.yda_c01070{bottom:446.237988px;}
.yd9_c01070{bottom:446.842242px;}
.yd8_c01070{bottom:474.421320px;}
.yd7_c01070{bottom:475.344408px;}
.yd6_c01070{bottom:476.305278px;}
.yd5_c01070{bottom:477.070999px;}
.yd4_c01070{bottom:479.508901px;}
.yd3_c01070{bottom:480.650787px;}
.yd2_c01070{bottom:481.216017px;}
.yd1_c01070{bottom:483.255295px;}
.yd0_c01070{bottom:484.379285px;}
.ycf_c01070{bottom:509.734183px;}
.yce_c01070{bottom:510.580293px;}
.ycd_c01070{bottom:512.075353px;}
.ycc_c01070{bottom:512.419794px;}
.ycb_c01070{bottom:513.096256px;}
.yca_c01070{bottom:513.906861px;}
.yc9_c01070{bottom:515.085712px;}
.yc8_c01070{bottom:516.077663px;}
.yc7_c01070{bottom:517.236022px;}
.yc6_c01070{bottom:517.887801px;}
.yc5_c01070{bottom:518.228499px;}
.yc4_c01070{bottom:519.527163px;}
.yc3_c01070{bottom:520.020447px;}
.yc2_c01070{bottom:547.077534px;}
.yc1_c01070{bottom:547.502303px;}
.yc0_c01070{bottom:548.657502px;}
.ybf_c01070{bottom:549.527689px;}
.ybe_c01070{bottom:549.829569px;}
.ybd_c01070{bottom:550.672398px;}
.ybc_c01070{bottom:551.252913px;}
.ybb_c01070{bottom:552.122126px;}
.yba_c01070{bottom:552.954327px;}
.yb9_c01070{bottom:553.662645px;}
.y5_c01070{bottom:554.040000px;}
.yb8_c01070{bottom:554.266228px;}
.yb7_c01070{bottom:555.123000px;}
.y4_c01070{bottom:563.760000px;}
.y3_c01070{bottom:576.990000px;}
.yb6_c01070{bottom:583.350931px;}
.yb5_c01070{bottom:583.971760px;}
.yb4_c01070{bottom:584.586517px;}
.yb3_c01070{bottom:584.829843px;}
.yb2_c01070{bottom:585.694360px;}
.yb1_c01070{bottom:586.044969px;}
.yb0_c01070{bottom:586.903744px;}
.yaf_c01070{bottom:587.503585px;}
.yae_c01070{bottom:587.871519px;}
.yad_c01070{bottom:588.611428px;}
.yac_c01070{bottom:589.336224px;}
.yab_c01070{bottom:589.926891px;}
.yaa_c01070{bottom:590.541516px;}
.ya9_c01070{bottom:591.031500px;}
.y2_c01070{bottom:595.350000px;}
.y1_c01070{bottom:609.930000px;}
.ya8_c01070{bottom:619.670940px;}
.ya7_c01070{bottom:620.983895px;}
.ya6_c01070{bottom:621.833646px;}
.ya5_c01070{bottom:622.282439px;}
.ya4_c01070{bottom:623.269295px;}
.ya3_c01070{bottom:624.445222px;}
.ya2_c01070{bottom:625.712450px;}
.ya1_c01070{bottom:626.010273px;}
.ya0_c01070{bottom:626.589462px;}
.y9f_c01070{bottom:627.863904px;}
.y9e_c01070{bottom:628.291500px;}
.y9d_c01070{bottom:654.323349px;}
.y9c_c01070{bottom:654.710295px;}
.y9b_c01070{bottom:655.790883px;}
.y9a_c01070{bottom:656.167527px;}
.y99_c01070{bottom:657.272880px;}
.y98_c01070{bottom:659.025555px;}
.y97_c01070{bottom:659.566725px;}
.y96_c01070{bottom:660.054267px;}
.y95_c01070{bottom:660.657846px;}
.y94_c01070{bottom:660.920796px;}
.y93_c01070{bottom:661.764795px;}
.y92_c01070{bottom:689.985801px;}
.y91_c01070{bottom:690.839211px;}
.y90_c01070{bottom:691.212630px;}
.y8f_c01070{bottom:691.715202px;}
.y8e_c01070{bottom:692.433525px;}
.y8d_c01070{bottom:692.795790px;}
.y8c_c01070{bottom:693.642153px;}
.y8b_c01070{bottom:694.014090px;}
.y8a_c01070{bottom:694.878549px;}
.y89_c01070{bottom:695.603100px;}
.y88_c01070{bottom:695.956899px;}
.y87_c01070{bottom:696.571233px;}
.y86_c01070{bottom:696.938844px;}
.y85_c01070{bottom:697.408542px;}
.y84_c01070{bottom:725.792049px;}
.y83_c01070{bottom:726.257052px;}
.y82_c01070{bottom:728.060154px;}
.y81_c01070{bottom:728.286618px;}
.y80_c01070{bottom:728.918088px;}
.y7f_c01070{bottom:729.383091px;}
.y7e_c01070{bottom:729.836754px;}
.y7d_c01070{bottom:731.379477px;}
.y7c_c01070{bottom:732.778098px;}
.y7b_c01070{bottom:733.243248px;}
.y7a_c01070{bottom:733.863000px;}
.y79_c01070{bottom:762.502920px;}
.y78_c01070{bottom:763.612725px;}
.y77_c01070{bottom:764.395875px;}
.y76_c01070{bottom:765.497715px;}
.y75_c01070{bottom:766.717980px;}
.y74_c01070{bottom:767.144310px;}
.y73_c01070{bottom:767.587095px;}
.y72_c01070{bottom:768.254145px;}
.y71_c01070{bottom:768.691500px;}
.y70_c01070{bottom:802.507500px;}
.y6f_c01070{bottom:835.331775px;}
.y6e_c01070{bottom:835.492577px;}
.y6d_c01070{bottom:836.028903px;}
.y6c_c01070{bottom:836.260730px;}
.y6b_c01070{bottom:836.969315px;}
.y6a_c01070{bottom:837.583597px;}
.y69_c01070{bottom:837.806772px;}
.y68_c01070{bottom:838.356125px;}
.y67_c01070{bottom:838.506494px;}
.y66_c01070{bottom:839.200764px;}
.y65_c01070{bottom:839.968402px;}
.y64_c01070{bottom:870.700240px;}
.y63_c01070{bottom:870.931886px;}
.y62_c01070{bottom:871.168432px;}
.y61_c01070{bottom:871.397336px;}
.y60_c01070{bottom:872.404411px;}
.y5f_c01070{bottom:872.642181px;}
.y5e_c01070{bottom:873.184038px;}
.y5d_c01070{bottom:873.421774px;}
.y5c_c01070{bottom:873.725763px;}
.y5b_c01070{bottom:874.334301px;}
.y5a_c01070{bottom:874.645851px;}
.y59_c01070{bottom:875.338272px;}
.y58_c01070{bottom:906.499990px;}
.y57_c01070{bottom:907.246434px;}
.y56_c01070{bottom:907.488819px;}
.y55_c01070{bottom:908.332744px;}
.y54_c01070{bottom:908.590788px;}
.y53_c01070{bottom:909.803059px;}
.y52_c01070{bottom:910.281196px;}
.y51_c01070{bottom:910.649460px;}
.y50_c01070{bottom:911.989376px;}
.y4f_c01070{bottom:912.354240px;}
.y4e_c01070{bottom:913.301555px;}
.y4d_c01070{bottom:913.681500px;}
.y4c_c01070{bottom:942.271200px;}
.y4b_c01070{bottom:942.549888px;}
.y4a_c01070{bottom:942.804636px;}
.y49_c01070{bottom:943.325388px;}
.y48_c01070{bottom:943.690500px;}
.y47_c01070{bottom:943.871724px;}
.y46_c01070{bottom:944.662500px;}
.y45_c01070{bottom:945.196020px;}
.y44_c01070{bottom:946.066524px;}
.y43_c01070{bottom:946.254228px;}
.y42_c01070{bottom:946.854876px;}
.y41_c01070{bottom:947.161500px;}
.y40_c01070{bottom:977.584693px;}
.y3f_c01070{bottom:977.816848px;}
.y3e_c01070{bottom:978.207921px;}
.y3d_c01070{bottom:978.828040px;}
.y3c_c01070{bottom:979.672933px;}
.y3b_c01070{bottom:980.376024px;}
.y3a_c01070{bottom:980.604703px;}
.y39_c01070{bottom:981.385441px;}
.y38_c01070{bottom:981.680061px;}
.y37_c01070{bottom:981.990000px;}
.y36_c01070{bottom:1013.943195px;}
.y35_c01070{bottom:1014.381967px;}
.y34_c01070{bottom:1014.606082px;}
.y33_c01070{bottom:1014.940897px;}
.y32_c01070{bottom:1015.220362px;}
.y31_c01070{bottom:1015.821067px;}
.y30_c01070{bottom:1016.321985px;}
.y2f_c01070{bottom:1016.483985px;}
.y2e_c01070{bottom:1016.708085px;}
.y2d_c01070{bottom:1016.978048px;}
.y2c_c01070{bottom:1017.090000px;}
.y2b_c01070{bottom:1050.192812px;}
.y2a_c01070{bottom:1051.176409px;}
.y29_c01070{bottom:1051.550679px;}
.y28_c01070{bottom:1052.281381px;}
.y27_c01070{bottom:1052.634795px;}
.y26_c01070{bottom:1053.861784px;}
.y25_c01070{bottom:1054.336720px;}
.y24_c01070{bottom:1054.707987px;}
.y23_c01070{bottom:1055.197641px;}
.y22_c01070{bottom:1055.928772px;}
.y21_c01070{bottom:1056.513301px;}
.y20_c01070{bottom:1057.247139px;}
.y1f_c01070{bottom:1057.861500px;}
.y1e_c01070{bottom:1085.886459px;}
.y1d_c01070{bottom:1086.271882px;}
.y1c_c01070{bottom:1086.434433px;}
.y1b_c01070{bottom:1087.285153px;}
.y1a_c01070{bottom:1087.594945px;}
.y19_c01070{bottom:1088.203546px;}
.y18_c01070{bottom:1088.373625px;}
.y17_c01070{bottom:1088.903025px;}
.y16_c01070{bottom:1089.369897px;}
.y15_c01070{bottom:1089.522808px;}
.y14_c01070{bottom:1090.137184px;}
.y13_c01070{bottom:1090.367649px;}
.y12_c01070{bottom:1090.530000px;}
.y11_c01070{bottom:1122.909818px;}
.y10_c01070{bottom:1123.251368px;}
.yf_c01070{bottom:1123.519965px;}
.ye_c01070{bottom:1123.637400px;}
.yd_c01070{bottom:1123.965540px;}
.yc_c01070{bottom:1124.132858px;}
.yb_c01070{bottom:1124.743148px;}
.ya_c01070{bottom:1125.130620px;}
.y9_c01070{bottom:1125.347925px;}
.y8_c01070{bottom:1125.897435px;}
.y7_c01070{bottom:1126.170000px;}
.y6_c01070{bottom:1190.844000px;}
.h1b_c01070{height:42.006803px;}
.h3_c01070{height:48.000000px;}
.h16_c01070{height:66.000000px;}
.ha_c01070{height:66.002112px;}
.h10_c01070{height:66.006468px;}
.h5_c01070{height:72.000900px;}
.h6_c01070{height:72.001764px;}
.hc_c01070{height:72.004356px;}
.h11_c01070{height:72.006084px;}
.he_c01070{height:72.007056px;}
.h15_c01070{height:78.000000px;}
.h8_c01070{height:78.000975px;}
.hb_c01070{height:78.004719px;}
.h12_c01070{height:78.006591px;}
.hf_c01070{height:78.007644px;}
.h19_c01070{height:78.009983px;}
.h9_c01070{height:84.002058px;}
.hd_c01070{height:84.004200px;}
.h7_c01070{height:84.005082px;}
.h13_c01070{height:84.007098px;}
.h17_c01070{height:84.010751px;}
.h1a_c01070{height:84.013607px;}
.h4_c01070{height:90.000000px;}
.h14_c01070{height:90.007605px;}
.h18_c01070{height:90.011519px;}
.h2_c01070{height:102.000000px;}
.h1c_c01070{height:120.002940px;}
.h0_c01070{height:1246.320000px;}
.h1_c01070{height:1246.500000px;}
.w0_c01070{width:900.450000px;}
.w1_c01070{width:900.750000px;}
.x0_c01070{left:0.000000px;}
.x1_c01070{left:11.880000px;}
.x2_c01070{left:12.960000px;}
.x1a_c01070{left:134.920500px;}
.x31_c01070{left:141.376500px;}
.x68_c01070{left:143.524500px;}
.x4c_c01070{left:144.720000px;}
.x10_c01070{left:145.744500px;}
.x6_c01070{left:147.913500px;}
.x94_c01070{left:167.385000px;}
.x11_c01070{left:168.937500px;}
.x88_c01070{left:175.899000px;}
.x84_c01070{left:177.244628px;}
.x4d_c01070{left:178.470000px;}
.x32_c01070{left:179.704500px;}
.x5c_c01070{left:187.529607px;}
.x54_c01070{left:188.863500px;}
.x1b_c01070{left:190.771500px;}
.x82_c01070{left:199.950141px;}
.x7_c01070{left:202.426500px;}
.x6d_c01070{left:209.637000px;}
.x5d_c01070{left:220.967514px;}
.x24_c01070{left:222.129000px;}
.x96_c01070{left:226.383873px;}
.x2c_c01070{left:232.336500px;}
.x41_c01070{left:244.516215px;}
.x33_c01070{left:254.785500px;}
.x6e_c01070{left:256.066500px;}
.x1c_c01070{left:257.484000px;}
.x72_c01070{left:264.349334px;}
.x3a_c01070{left:265.534500px;}
.x25_c01070{left:266.949000px;}
.x64_c01070{left:275.800500px;}
.x5e_c01070{left:276.850866px;}
.x34_c01070{left:278.248500px;}
.x97_c01070{left:280.377345px;}
.x73_c01070{left:287.094749px;}
.x12_c01070{left:289.629000px;}
.x69_c01070{left:297.640500px;}
.x26_c01070{left:299.349000px;}
.x98_c01070{left:303.594750px;}
.x5f_c01070{left:308.980710px;}
.x1d_c01070{left:310.623000px;}
.x8_c01070{left:312.328500px;}
.x65_c01070{left:320.353500px;}
.x74_c01070{left:330.538118px;}
.x59_c01070{left:331.648500px;}
.x55_c01070{left:342.480000px;}
.x2d_c01070{left:343.870500px;}
.x93_c01070{left:353.151792px;}
.x46_c01070{left:354.164496px;}
.x9_c01070{left:355.789500px;}
.x6a_c01070{left:363.531000px;}
.x4e_c01070{left:365.580000px;}
.x60_c01070{left:374.879982px;}
.x42_c01070{left:376.030007px;}
.x1e_c01070{left:377.089500px;}
.x13_c01070{left:378.169500px;}
.x91_c01070{left:386.033064px;}
.x35_c01070{left:387.061500px;}
.x63_c01070{left:392.702631px;}
.x4f_c01070{left:398.520000px;}
.x27_c01070{left:399.532500px;}
.x75_c01070{left:407.756109px;}
.x85_c01070{left:409.173176px;}
.x43_c01070{left:419.485421px;}
.x3b_c01070{left:420.514500px;}
.x1f_c01070{left:421.603500px;}
.x6b_c01070{left:430.795500px;}
.x50_c01070{left:432.000000px;}
.x3_c01070{left:433.620000px;}
.x66_c01070{left:440.742000px;}
.x8c_c01070{left:442.563000px;}
.x7f_c01070{left:452.081527px;}
.x14_c01070{left:453.798000px;}
.x4_c01070{left:456.030000px;}
.x56_c01070{left:464.506500px;}
.x76_c01070{left:473.904393px;}
.x2e_c01070{left:476.980500px;}
.x15_c01070{left:478.095000px;}
.x47_c01070{left:486.206321px;}
.x89_c01070{left:496.017000px;}
.x3c_c01070{left:497.460000px;}
.x5_c01070{left:499.230000px;}
.x8d_c01070{left:507.373500px;}
.x7c_c01070{left:518.605658px;}
.x28_c01070{left:519.673500px;}
.x8f_c01070{left:529.776000px;}
.x44_c01070{left:530.998838px;}
.x92_c01070{left:540.568092px;}
.x51_c01070{left:542.160000px;}
.x6f_c01070{left:550.918500px;}
.x36_c01070{left:552.598500px;}
.xa_c01070{left:555.342000px;}
.x7d_c01070{left:563.379063px;}
.x16_c01070{left:565.038000px;}
.x48_c01070{left:573.963182px;}
.x29_c01070{left:575.566500px;}
.x86_c01070{left:584.186481px;}
.xb_c01070{left:588.805500px;}
.x83_c01070{left:596.074881px;}
.x2f_c01070{left:597.679500px;}
.x77_c01070{left:606.512941px;}
.x3d_c01070{left:607.666500px;}
.x17_c01070{left:609.294000px;}
.x80_c01070{left:618.409692px;}
.x95_c01070{left:619.737000px;}
.x37_c01070{left:620.890500px;}
.x6c_c01070{left:628.719000px;}
.x7e_c01070{left:629.806373px;}
.x3e_c01070{left:631.125000px;}
.x8e_c01070{left:639.676500px;}
.x70_c01070{left:641.077500px;}
.x20_c01070{left:642.204000px;}
.x78_c01070{left:651.624272px;}
.x57_c01070{left:653.005500px;}
.xc_c01070{left:654.433500px;}
.x61_c01070{left:662.452557px;}
.x5a_c01070{left:668.644500px;}
.x49_c01070{left:675.202637px;}
.xd_c01070{left:677.920500px;}
.x79_c01070{left:684.846928px;}
.x30_c01070{left:686.268000px;}
.x2a_c01070{left:687.352500px;}
.x87_c01070{left:696.528869px;}
.x67_c01070{left:706.998000px;}
.x21_c01070{left:708.631500px;}
.x38_c01070{left:717.828000px;}
.x8a_c01070{left:719.022000px;}
.x3f_c01070{left:729.880500px;}
.xe_c01070{left:731.640000px;}
.x45_c01070{left:741.621611px;}
.x22_c01070{left:742.656000px;}
.x39_c01070{left:752.664000px;}
.x18_c01070{left:754.047000px;}
.x52_c01070{left:755.460000px;}
.x71_c01070{left:762.613500px;}
.x58_c01070{left:763.986000px;}
.x90_c01070{left:773.662500px;}
.x2b_c01070{left:775.107000px;}
.x4a_c01070{left:785.130488px;}
.x7a_c01070{left:786.387144px;}
.x81_c01070{left:796.667512px;}
.x40_c01070{left:797.739000px;}
.xf_c01070{left:799.950000px;}
.x4b_c01070{left:808.067994px;}
.x19_c01070{left:809.107500px;}
.x62_c01070{left:819.630651px;}
.x8b_c01070{left:829.213500px;}
.x5b_c01070{left:830.652000px;}
.x23_c01070{left:832.074000px;}
.x7b_c01070{left:840.660316px;}
.x53_c01070{left:841.860000px;}
@media print{
.v0_c01070{vertical-align:0.000000pt;}
.ls0_c01070{letter-spacing:0.000000pt;}
.ws0_c01070{word-spacing:0.000000pt;}
.fs19_c01070{font-size:37.339381pt;}
.fs1_c01070{font-size:42.666667pt;}
.fs14_c01070{font-size:58.666667pt;}
.fs8_c01070{font-size:58.668544pt;}
.fse_c01070{font-size:58.672416pt;}
.fs3_c01070{font-size:64.000800pt;}
.fs4_c01070{font-size:64.001568pt;}
.fsa_c01070{font-size:64.003872pt;}
.fsf_c01070{font-size:64.005408pt;}
.fsc_c01070{font-size:64.006272pt;}
.fs13_c01070{font-size:69.333333pt;}
.fs6_c01070{font-size:69.334200pt;}
.fs9_c01070{font-size:69.337528pt;}
.fs10_c01070{font-size:69.339192pt;}
.fsd_c01070{font-size:69.340128pt;}
.fs17_c01070{font-size:69.342207pt;}
.fs7_c01070{font-size:74.668496pt;}
.fsb_c01070{font-size:74.670400pt;}
.fs5_c01070{font-size:74.671184pt;}
.fs11_c01070{font-size:74.672976pt;}
.fs15_c01070{font-size:74.676223pt;}
.fs18_c01070{font-size:74.678762pt;}
.fs2_c01070{font-size:80.000000pt;}
.fs12_c01070{font-size:80.006760pt;}
.fs16_c01070{font-size:80.010239pt;}
.fs0_c01070{font-size:90.666667pt;}
.fs1a_c01070{font-size:106.669280pt;}
.y0_c01070{bottom:0.000000pt;}
.y163_c01070{bottom:58.592051pt;}
.y162_c01070{bottom:58.941565pt;}
.y161_c01070{bottom:59.282717pt;}
.y160_c01070{bottom:59.487649pt;}
.y15f_c01070{bottom:59.625475pt;}
.y15e_c01070{bottom:59.903104pt;}
.y15d_c01070{bottom:60.104312pt;}
.y15c_c01070{bottom:60.581404pt;}
.y15b_c01070{bottom:61.201333pt;}
.y15a_c01070{bottom:86.113875pt;}
.y159_c01070{bottom:86.465347pt;}
.y158_c01070{bottom:87.281227pt;}
.y157_c01070{bottom:87.538672pt;}
.y156_c01070{bottom:88.016040pt;}
.y155_c01070{bottom:88.574451pt;}
.y154_c01070{bottom:98.851011pt;}
.y153_c01070{bottom:99.235731pt;}
.y152_c01070{bottom:100.472907pt;}
.y151_c01070{bottom:101.008659pt;}
.y150_c01070{bottom:102.062403pt;}
.y14f_c01070{bottom:102.789291pt;}
.y14e_c01070{bottom:103.159899pt;}
.y14d_c01070{bottom:104.401083pt;}
.y14c_c01070{bottom:104.910771pt;}
.y14b_c01070{bottom:106.142163pt;}
.y14a_c01070{bottom:106.668651pt;}
.y149_c01070{bottom:107.374563pt;}
.y148_c01070{bottom:109.300035pt;}
.y147_c01070{bottom:109.682667pt;}
.y146_c01070{bottom:135.090805pt;}
.y145_c01070{bottom:136.498091pt;}
.y144_c01070{bottom:137.280331pt;}
.y143_c01070{bottom:137.872363pt;}
.y142_c01070{bottom:139.066677pt;}
.y141_c01070{bottom:139.859051pt;}
.y140_c01070{bottom:141.238048pt;}
.y13f_c01070{bottom:142.207595pt;}
.y13e_c01070{bottom:143.964021pt;}
.y13d_c01070{bottom:145.918699pt;}
.y13c_c01070{bottom:165.113237pt;}
.y13b_c01070{bottom:166.455989pt;}
.y13a_c01070{bottom:166.961611pt;}
.y139_c01070{bottom:168.472128pt;}
.y138_c01070{bottom:168.982987pt;}
.y137_c01070{bottom:169.985696pt;}
.y136_c01070{bottom:170.328277pt;}
.y135_c01070{bottom:170.978336pt;}
.y134_c01070{bottom:171.318187pt;}
.y133_c01070{bottom:172.480437pt;}
.y132_c01070{bottom:172.968992pt;}
.y131_c01070{bottom:174.315264pt;}
.y130_c01070{bottom:174.959680pt;}
.y12f_c01070{bottom:196.730688pt;}
.y12e_c01070{bottom:197.698731pt;}
.y12d_c01070{bottom:198.793301pt;}
.y12c_c01070{bottom:200.064725pt;}
.y12b_c01070{bottom:200.533461pt;}
.y12a_c01070{bottom:201.167339pt;}
.y129_c01070{bottom:201.631915pt;}
.y128_c01070{bottom:202.742635pt;}
.y127_c01070{bottom:203.360128pt;}
.y126_c01070{bottom:204.624619pt;}
.y125_c01070{bottom:206.186133pt;}
.y124_c01070{bottom:206.642667pt;}
.y123_c01070{bottom:229.708000pt;}
.y122_c01070{bottom:230.860000pt;}
.y121_c01070{bottom:231.649333pt;}
.y120_c01070{bottom:232.024000pt;}
.y11f_c01070{bottom:233.178667pt;}
.y11e_c01070{bottom:233.928000pt;}
.y11d_c01070{bottom:234.318667pt;}
.y11c_c01070{bottom:234.712000pt;}
.y11b_c01070{bottom:235.082667pt;}
.y11a_c01070{bottom:235.604000pt;}
.y119_c01070{bottom:236.362667pt;}
.y118_c01070{bottom:236.865333pt;}
.y117_c01070{bottom:237.364000pt;}
.y116_c01070{bottom:262.066667pt;}
.y115_c01070{bottom:262.560000pt;}
.y114_c01070{bottom:263.732000pt;}
.y113_c01070{bottom:264.241333pt;}
.y112_c01070{bottom:265.438667pt;}
.y111_c01070{bottom:267.101333pt;}
.y110_c01070{bottom:268.272000pt;}
.y10f_c01070{bottom:269.430667pt;}
.y10e_c01070{bottom:269.916000pt;}
.y10d_c01070{bottom:271.094667pt;}
.y10c_c01070{bottom:271.582667pt;}
.y10b_c01070{bottom:271.937333pt;}
.y10a_c01070{bottom:272.402667pt;}
.y109_c01070{bottom:293.518667pt;}
.y108_c01070{bottom:295.502620pt;}
.y107_c01070{bottom:295.799803pt;}
.y106_c01070{bottom:296.589417pt;}
.y105_c01070{bottom:296.797931pt;}
.y104_c01070{bottom:297.372096pt;}
.y103_c01070{bottom:297.672711pt;}
.y102_c01070{bottom:298.354895pt;}
.y101_c01070{bottom:298.657365pt;}
.y100_c01070{bottom:298.948288pt;}
.yff_c01070{bottom:299.643668pt;}
.yfe_c01070{bottom:300.416187pt;}
.yfd_c01070{bottom:300.706901pt;}
.yfc_c01070{bottom:327.740175pt;}
.yfb_c01070{bottom:328.300739pt;}
.yfa_c01070{bottom:328.532977pt;}
.yf9_c01070{bottom:328.932673pt;}
.yf8_c01070{bottom:329.395295pt;}
.yf7_c01070{bottom:329.870021pt;}
.yf6_c01070{bottom:330.105764pt;}
.yf5_c01070{bottom:330.735912pt;}
.yf4_c01070{bottom:331.123953pt;}
.yf3_c01070{bottom:331.749817pt;}
.yf2_c01070{bottom:332.149271pt;}
.yf1_c01070{bottom:357.842657pt;}
.yf0_c01070{bottom:358.202181pt;}
.yef_c01070{bottom:358.798723pt;}
.yee_c01070{bottom:359.389388pt;}
.yed_c01070{bottom:359.743832pt;}
.yec_c01070{bottom:360.440292pt;}
.yeb_c01070{bottom:360.800924pt;}
.yea_c01070{bottom:361.155437pt;}
.ye9_c01070{bottom:361.517821pt;}
.ye8_c01070{bottom:362.453415pt;}
.ye7_c01070{bottom:362.813648pt;}
.ye6_c01070{bottom:363.853596pt;}
.ye5_c01070{bottom:364.791824pt;}
.ye4_c01070{bottom:392.406285pt;}
.ye3_c01070{bottom:392.715255pt;}
.ye2_c01070{bottom:393.043840pt;}
.ye1_c01070{bottom:393.586991pt;}
.ye0_c01070{bottom:393.749905pt;}
.ydf_c01070{bottom:394.222793pt;}
.yde_c01070{bottom:394.541475pt;}
.ydd_c01070{bottom:395.238312pt;}
.ydc_c01070{bottom:395.477732pt;}
.ydb_c01070{bottom:395.952389pt;}
.yda_c01070{bottom:396.655989pt;}
.yd9_c01070{bottom:397.193104pt;}
.yd8_c01070{bottom:421.707840pt;}
.yd7_c01070{bottom:422.528363pt;}
.yd6_c01070{bottom:423.382469pt;}
.yd5_c01070{bottom:424.063111pt;}
.yd4_c01070{bottom:426.230135pt;}
.yd3_c01070{bottom:427.245144pt;}
.yd2_c01070{bottom:427.747571pt;}
.yd1_c01070{bottom:429.560263pt;}
.yd0_c01070{bottom:430.559364pt;}
.ycf_c01070{bottom:453.097052pt;}
.yce_c01070{bottom:453.849149pt;}
.ycd_c01070{bottom:455.178092pt;}
.ycc_c01070{bottom:455.484261pt;}
.ycb_c01070{bottom:456.085561pt;}
.yca_c01070{bottom:456.806099pt;}
.yc9_c01070{bottom:457.853967pt;}
.yc8_c01070{bottom:458.735700pt;}
.yc7_c01070{bottom:459.765353pt;}
.yc6_c01070{bottom:460.344712pt;}
.yc5_c01070{bottom:460.647555pt;}
.yc4_c01070{bottom:461.801923pt;}
.yc3_c01070{bottom:462.240397pt;}
.yc2_c01070{bottom:486.291141pt;}
.yc1_c01070{bottom:486.668713pt;}
.yc0_c01070{bottom:487.695557pt;}
.ybf_c01070{bottom:488.469057pt;}
.ybe_c01070{bottom:488.737395pt;}
.ybd_c01070{bottom:489.486576pt;}
.ybc_c01070{bottom:490.002589pt;}
.ybb_c01070{bottom:490.775223pt;}
.yba_c01070{bottom:491.514957pt;}
.yb9_c01070{bottom:492.144573pt;}
.y5_c01070{bottom:492.480000pt;}
.yb8_c01070{bottom:492.681092pt;}
.yb7_c01070{bottom:493.442667pt;}
.y4_c01070{bottom:501.120000pt;}
.y3_c01070{bottom:512.880000pt;}
.yb6_c01070{bottom:518.534161pt;}
.yb5_c01070{bottom:519.086009pt;}
.yb4_c01070{bottom:519.632460pt;}
.yb3_c01070{bottom:519.848749pt;}
.yb2_c01070{bottom:520.617209pt;}
.yb1_c01070{bottom:520.928861pt;}
.yb0_c01070{bottom:521.692217pt;}
.yaf_c01070{bottom:522.225409pt;}
.yae_c01070{bottom:522.552461pt;}
.yad_c01070{bottom:523.210159pt;}
.yac_c01070{bottom:523.854421pt;}
.yab_c01070{bottom:524.379459pt;}
.yaa_c01070{bottom:524.925792pt;}
.ya9_c01070{bottom:525.361333pt;}
.y2_c01070{bottom:529.200000pt;}
.y1_c01070{bottom:542.160000pt;}
.ya8_c01070{bottom:550.818613pt;}
.ya7_c01070{bottom:551.985684pt;}
.ya6_c01070{bottom:552.741019pt;}
.ya5_c01070{bottom:553.139945pt;}
.ya4_c01070{bottom:554.017151pt;}
.ya3_c01070{bottom:555.062420pt;}
.ya2_c01070{bottom:556.188844pt;}
.ya1_c01070{bottom:556.453576pt;}
.ya0_c01070{bottom:556.968411pt;}
.y9f_c01070{bottom:558.101248pt;}
.y9e_c01070{bottom:558.481333pt;}
.y9d_c01070{bottom:581.620755pt;}
.y9c_c01070{bottom:581.964707pt;}
.y9b_c01070{bottom:582.925229pt;}
.y9a_c01070{bottom:583.260024pt;}
.y99_c01070{bottom:584.242560pt;}
.y98_c01070{bottom:585.800493pt;}
.y97_c01070{bottom:586.281533pt;}
.y96_c01070{bottom:586.714904pt;}
.y95_c01070{bottom:587.251419pt;}
.y94_c01070{bottom:587.485152pt;}
.y93_c01070{bottom:588.235373pt;}
.y92_c01070{bottom:613.320712pt;}
.y91_c01070{bottom:614.079299pt;}
.y90_c01070{bottom:614.411227pt;}
.y8f_c01070{bottom:614.857957pt;}
.y8e_c01070{bottom:615.496467pt;}
.y8d_c01070{bottom:615.818480pt;}
.y8c_c01070{bottom:616.570803pt;}
.y8b_c01070{bottom:616.901413pt;}
.y8a_c01070{bottom:617.669821pt;}
.y89_c01070{bottom:618.313867pt;}
.y88_c01070{bottom:618.628355pt;}
.y87_c01070{bottom:619.174429pt;}
.y86_c01070{bottom:619.501195pt;}
.y85_c01070{bottom:619.918704pt;}
.y84_c01070{bottom:645.148488pt;}
.y83_c01070{bottom:645.561824pt;}
.y82_c01070{bottom:647.164581pt;}
.y81_c01070{bottom:647.365883pt;}
.y80_c01070{bottom:647.927189pt;}
.y7f_c01070{bottom:648.340525pt;}
.y7e_c01070{bottom:648.743781pt;}
.y7d_c01070{bottom:650.115091pt;}
.y7c_c01070{bottom:651.358309pt;}
.y7b_c01070{bottom:651.771776pt;}
.y7a_c01070{bottom:652.322667pt;}
.y79_c01070{bottom:677.780373pt;}
.y78_c01070{bottom:678.766867pt;}
.y77_c01070{bottom:679.463000pt;}
.y76_c01070{bottom:680.442413pt;}
.y75_c01070{bottom:681.527093pt;}
.y74_c01070{bottom:681.906053pt;}
.y73_c01070{bottom:682.299640pt;}
.y72_c01070{bottom:682.892573pt;}
.y71_c01070{bottom:683.281333pt;}
.y70_c01070{bottom:713.340000pt;}
.y6f_c01070{bottom:742.517133pt;}
.y6e_c01070{bottom:742.660068pt;}
.y6d_c01070{bottom:743.136803pt;}
.y6c_c01070{bottom:743.342871pt;}
.y6b_c01070{bottom:743.972724pt;}
.y6a_c01070{bottom:744.518753pt;}
.y69_c01070{bottom:744.717131pt;}
.y68_c01070{bottom:745.205444pt;}
.y67_c01070{bottom:745.339105pt;}
.y66_c01070{bottom:745.956235pt;}
.y65_c01070{bottom:746.638580pt;}
.y64_c01070{bottom:773.955769pt;}
.y63_c01070{bottom:774.161676pt;}
.y62_c01070{bottom:774.371940pt;}
.y61_c01070{bottom:774.575409pt;}
.y60_c01070{bottom:775.470588pt;}
.y5f_c01070{bottom:775.681939pt;}
.y5e_c01070{bottom:776.163589pt;}
.y5d_c01070{bottom:776.374911pt;}
.y5c_c01070{bottom:776.645123pt;}
.y5b_c01070{bottom:777.186045pt;}
.y5a_c01070{bottom:777.462979pt;}
.y59_c01070{bottom:778.078464pt;}
.y58_c01070{bottom:805.777769pt;}
.y57_c01070{bottom:806.441275pt;}
.y56_c01070{bottom:806.656728pt;}
.y55_c01070{bottom:807.406884pt;}
.y54_c01070{bottom:807.636256pt;}
.y53_c01070{bottom:808.713831pt;}
.y52_c01070{bottom:809.138841pt;}
.y51_c01070{bottom:809.466187pt;}
.y50_c01070{bottom:810.657223pt;}
.y4f_c01070{bottom:810.981547pt;}
.y4e_c01070{bottom:811.823604pt;}
.y4d_c01070{bottom:812.161333pt;}
.y4c_c01070{bottom:837.574400pt;}
.y4b_c01070{bottom:837.822123pt;}
.y4a_c01070{bottom:838.048565pt;}
.y49_c01070{bottom:838.511456pt;}
.y48_c01070{bottom:838.836000pt;}
.y47_c01070{bottom:838.997088pt;}
.y46_c01070{bottom:839.700000pt;}
.y45_c01070{bottom:840.174240pt;}
.y44_c01070{bottom:840.948021pt;}
.y43_c01070{bottom:841.114869pt;}
.y42_c01070{bottom:841.648779pt;}
.y41_c01070{bottom:841.921333pt;}
.y40_c01070{bottom:868.964172pt;}
.y3f_c01070{bottom:869.170532pt;}
.y3e_c01070{bottom:869.518152pt;}
.y3d_c01070{bottom:870.069369pt;}
.y3c_c01070{bottom:870.820385pt;}
.y3b_c01070{bottom:871.445355pt;}
.y3a_c01070{bottom:871.648625pt;}
.y39_c01070{bottom:872.342615pt;}
.y38_c01070{bottom:872.604499pt;}
.y37_c01070{bottom:872.880000pt;}
.y36_c01070{bottom:901.282840pt;}
.y35_c01070{bottom:901.672860pt;}
.y34_c01070{bottom:901.872073pt;}
.y33_c01070{bottom:902.169687pt;}
.y32_c01070{bottom:902.418100pt;}
.y31_c01070{bottom:902.952060pt;}
.y30_c01070{bottom:903.397320pt;}
.y2f_c01070{bottom:903.541320pt;}
.y2e_c01070{bottom:903.740520pt;}
.y2d_c01070{bottom:903.980487pt;}
.y2c_c01070{bottom:904.080000pt;}
.y2b_c01070{bottom:933.504721pt;}
.y2a_c01070{bottom:934.379031pt;}
.y29_c01070{bottom:934.711715pt;}
.y28_c01070{bottom:935.361228pt;}
.y27_c01070{bottom:935.675373pt;}
.y26_c01070{bottom:936.766031pt;}
.y25_c01070{bottom:937.188196pt;}
.y24_c01070{bottom:937.518211pt;}
.y23_c01070{bottom:937.953459pt;}
.y22_c01070{bottom:938.603353pt;}
.y21_c01070{bottom:939.122935pt;}
.y20_c01070{bottom:939.775235pt;}
.y1f_c01070{bottom:940.321333pt;}
.y1e_c01070{bottom:965.232408pt;}
.y1d_c01070{bottom:965.575007pt;}
.y1c_c01070{bottom:965.719496pt;}
.y1b_c01070{bottom:966.475692pt;}
.y1a_c01070{bottom:966.751063pt;}
.y19_c01070{bottom:967.292041pt;}
.y18_c01070{bottom:967.443223pt;}
.y17_c01070{bottom:967.913800pt;}
.y16_c01070{bottom:968.328797pt;}
.y15_c01070{bottom:968.464719pt;}
.y14_c01070{bottom:969.010831pt;}
.y13_c01070{bottom:969.215688pt;}
.y12_c01070{bottom:969.360000pt;}
.y11_c01070{bottom:998.142060pt;}
.y10_c01070{bottom:998.445660pt;}
.yf_c01070{bottom:998.684413pt;}
.ye_c01070{bottom:998.788800pt;}
.yd_c01070{bottom:999.080480pt;}
.yc_c01070{bottom:999.229207pt;}
.yb_c01070{bottom:999.771687pt;}
.ya_c01070{bottom:1000.116107pt;}
.y9_c01070{bottom:1000.309267pt;}
.y8_c01070{bottom:1000.797720pt;}
.y7_c01070{bottom:1001.040000pt;}
.y6_c01070{bottom:1058.528000pt;}
.h1b_c01070{height:37.339381pt;}
.h3_c01070{height:42.666667pt;}
.h16_c01070{height:58.666667pt;}
.ha_c01070{height:58.668544pt;}
.h10_c01070{height:58.672416pt;}
.h5_c01070{height:64.000800pt;}
.h6_c01070{height:64.001568pt;}
.hc_c01070{height:64.003872pt;}
.h11_c01070{height:64.005408pt;}
.he_c01070{height:64.006272pt;}
.h15_c01070{height:69.333333pt;}
.h8_c01070{height:69.334200pt;}
.hb_c01070{height:69.337528pt;}
.h12_c01070{height:69.339192pt;}
.hf_c01070{height:69.340128pt;}
.h19_c01070{height:69.342207pt;}
.h9_c01070{height:74.668496pt;}
.hd_c01070{height:74.670400pt;}
.h7_c01070{height:74.671184pt;}
.h13_c01070{height:74.672976pt;}
.h17_c01070{height:74.676223pt;}
.h1a_c01070{height:74.678762pt;}
.h4_c01070{height:80.000000pt;}
.h14_c01070{height:80.006760pt;}
.h18_c01070{height:80.010239pt;}
.h2_c01070{height:90.666667pt;}
.h1c_c01070{height:106.669280pt;}
.h0_c01070{height:1107.840000pt;}
.h1_c01070{height:1108.000000pt;}
.w0_c01070{width:800.400000pt;}
.w1_c01070{width:800.666667pt;}
.x0_c01070{left:0.000000pt;}
.x1_c01070{left:10.560000pt;}
.x2_c01070{left:11.520000pt;}
.x1a_c01070{left:119.929333pt;}
.x31_c01070{left:125.668000pt;}
.x68_c01070{left:127.577333pt;}
.x4c_c01070{left:128.640000pt;}
.x10_c01070{left:129.550667pt;}
.x6_c01070{left:131.478667pt;}
.x94_c01070{left:148.786667pt;}
.x11_c01070{left:150.166667pt;}
.x88_c01070{left:156.354667pt;}
.x84_c01070{left:157.550780pt;}
.x4d_c01070{left:158.640000pt;}
.x32_c01070{left:159.737333pt;}
.x5c_c01070{left:166.692984pt;}
.x54_c01070{left:167.878667pt;}
.x1b_c01070{left:169.574667pt;}
.x82_c01070{left:177.733459pt;}
.x7_c01070{left:179.934667pt;}
.x6d_c01070{left:186.344000pt;}
.x5d_c01070{left:196.415568pt;}
.x24_c01070{left:197.448000pt;}
.x96_c01070{left:201.230109pt;}
.x2c_c01070{left:206.521333pt;}
.x41_c01070{left:217.347747pt;}
.x33_c01070{left:226.476000pt;}
.x6e_c01070{left:227.614667pt;}
.x1c_c01070{left:228.874667pt;}
.x72_c01070{left:234.977185pt;}
.x3a_c01070{left:236.030667pt;}
.x25_c01070{left:237.288000pt;}
.x64_c01070{left:245.156000pt;}
.x5e_c01070{left:246.089659pt;}
.x34_c01070{left:247.332000pt;}
.x97_c01070{left:249.224307pt;}
.x73_c01070{left:255.195332pt;}
.x12_c01070{left:257.448000pt;}
.x69_c01070{left:264.569333pt;}
.x26_c01070{left:266.088000pt;}
.x98_c01070{left:269.862000pt;}
.x5f_c01070{left:274.649520pt;}
.x1d_c01070{left:276.109333pt;}
.x8_c01070{left:277.625333pt;}
.x65_c01070{left:284.758667pt;}
.x74_c01070{left:293.811660pt;}
.x59_c01070{left:294.798667pt;}
.x55_c01070{left:304.426667pt;}
.x2d_c01070{left:305.662667pt;}
.x93_c01070{left:313.912704pt;}
.x46_c01070{left:314.812885pt;}
.x9_c01070{left:316.257333pt;}
.x6a_c01070{left:323.138667pt;}
.x4e_c01070{left:324.960000pt;}
.x60_c01070{left:333.226651pt;}
.x42_c01070{left:334.248895pt;}
.x1e_c01070{left:335.190667pt;}
.x13_c01070{left:336.150667pt;}
.x91_c01070{left:343.140501pt;}
.x35_c01070{left:344.054667pt;}
.x63_c01070{left:349.069005pt;}
.x4f_c01070{left:354.240000pt;}
.x27_c01070{left:355.140000pt;}
.x75_c01070{left:362.449875pt;}
.x85_c01070{left:363.709489pt;}
.x43_c01070{left:372.875929pt;}
.x3b_c01070{left:373.790667pt;}
.x1f_c01070{left:374.758667pt;}
.x6b_c01070{left:382.929333pt;}
.x50_c01070{left:384.000000pt;}
.x3_c01070{left:385.440000pt;}
.x66_c01070{left:391.770667pt;}
.x8c_c01070{left:393.389333pt;}
.x7f_c01070{left:401.850247pt;}
.x14_c01070{left:403.376000pt;}
.x4_c01070{left:405.360000pt;}
.x56_c01070{left:412.894667pt;}
.x76_c01070{left:421.248349pt;}
.x2e_c01070{left:423.982667pt;}
.x15_c01070{left:424.973333pt;}
.x47_c01070{left:432.183396pt;}
.x89_c01070{left:440.904000pt;}
.x3c_c01070{left:442.186667pt;}
.x5_c01070{left:443.760000pt;}
.x8d_c01070{left:450.998667pt;}
.x7c_c01070{left:460.982807pt;}
.x28_c01070{left:461.932000pt;}
.x8f_c01070{left:470.912000pt;}
.x44_c01070{left:471.998967pt;}
.x92_c01070{left:480.504971pt;}
.x51_c01070{left:481.920000pt;}
.x6f_c01070{left:489.705333pt;}
.x36_c01070{left:491.198667pt;}
.xa_c01070{left:493.637333pt;}
.x7d_c01070{left:500.781389pt;}
.x16_c01070{left:502.256000pt;}
.x48_c01070{left:510.189495pt;}
.x29_c01070{left:511.614667pt;}
.x86_c01070{left:519.276872pt;}
.xb_c01070{left:523.382667pt;}
.x83_c01070{left:529.844339pt;}
.x2f_c01070{left:531.270667pt;}
.x77_c01070{left:539.122615pt;}
.x3d_c01070{left:540.148000pt;}
.x17_c01070{left:541.594667pt;}
.x80_c01070{left:549.697504pt;}
.x95_c01070{left:550.877333pt;}
.x37_c01070{left:551.902667pt;}
.x6c_c01070{left:558.861333pt;}
.x7e_c01070{left:559.827887pt;}
.x3e_c01070{left:561.000000pt;}
.x8e_c01070{left:568.601333pt;}
.x70_c01070{left:569.846667pt;}
.x20_c01070{left:570.848000pt;}
.x78_c01070{left:579.221575pt;}
.x57_c01070{left:580.449333pt;}
.xc_c01070{left:581.718667pt;}
.x61_c01070{left:588.846717pt;}
.x5a_c01070{left:594.350667pt;}
.x49_c01070{left:600.180121pt;}
.xd_c01070{left:602.596000pt;}
.x79_c01070{left:608.752825pt;}
.x30_c01070{left:610.016000pt;}
.x2a_c01070{left:610.980000pt;}
.x87_c01070{left:619.136772pt;}
.x67_c01070{left:628.442667pt;}
.x21_c01070{left:629.894667pt;}
.x38_c01070{left:638.069333pt;}
.x8a_c01070{left:639.130667pt;}
.x3f_c01070{left:648.782667pt;}
.xe_c01070{left:650.346667pt;}
.x45_c01070{left:659.219209pt;}
.x22_c01070{left:660.138667pt;}
.x39_c01070{left:669.034667pt;}
.x18_c01070{left:670.264000pt;}
.x52_c01070{left:671.520000pt;}
.x71_c01070{left:677.878667pt;}
.x58_c01070{left:679.098667pt;}
.x90_c01070{left:687.700000pt;}
.x2b_c01070{left:688.984000pt;}
.x4a_c01070{left:697.893767pt;}
.x7a_c01070{left:699.010795pt;}
.x81_c01070{left:708.148900pt;}
.x40_c01070{left:709.101333pt;}
.xf_c01070{left:711.066667pt;}
.x4b_c01070{left:718.282661pt;}
.x19_c01070{left:719.206667pt;}
.x62_c01070{left:728.560579pt;}
.x8b_c01070{left:737.078667pt;}
.x5b_c01070{left:738.357333pt;}
.x23_c01070{left:739.621333pt;}
.x7b_c01070{left:747.253615pt;}
.x53_c01070{left:748.320000pt;}
}





/* 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_c01071 {
    display:none;
  }
  .loading-indicator_c01071.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01071 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_c01071 { 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_c01071" -> "#page-container .classname_c01071")
 */
.pf_c01071 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01071 { /* 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_c01071.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01071 { /* 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_c01071 { /* 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_c01071 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01071 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01071 {overflow:visible;}
  }
}
.c_c01071 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01071 { /* 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_c01071:after { /* webkit #35443 */
  content: '';
}
.t_c01071:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01071 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 */
}
.__c01071 { /* 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_c01071 { /* info for Javascript */
  display:none;
}
.l_c01071 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01071 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01071 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01071: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_c01071 {
    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_c01071.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01071.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_c01071 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01071{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01071;src:url('chunks/assets/font_59dc3ab2e04ed21d4ac9992b.woff2')format("woff");}.ff1_c01071{font-family:ff1_c01071;line-height:1.000000;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;}
.m2_c01071{transform:matrix(0.012730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.012730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.012730,0.000000,0.000000,0.250000,0,0);}
.m0_c01071{transform:matrix(0.169305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169305,0.000000,0.000000,0.250000,0,0);}
.m5_c01071{transform:matrix(0.196465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196465,0.000000,0.000000,0.250000,0,0);}
.m4_c01071{transform:matrix(0.199125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199125,0.000000,0.000000,0.250000,0,0);}
.m1_c01071{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m6_c01071{transform:matrix(0.224540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224540,0.000000,0.000000,0.250000,0,0);}
.m7_c01071{transform:matrix(0.236070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236070,0.000000,0.000000,0.250000,0,0);}
.m3_c01071{transform:matrix(0.325400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325400,0.000000,0.000000,0.250000,0,0);}
.m8_c01071{transform:matrix(0.371140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371140,0.000000,0.000000,0.250000,0,0);}
.v0_c01071{vertical-align:0.000000px;}
.ls0_c01071{letter-spacing:0.000000px;}
.sc__c01071{text-shadow:none;}
.sc0_c01071{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__c01071{-webkit-text-stroke:0px transparent;}
.sc0_c01071{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01071{word-spacing:0.000000px;}
.fc0_c01071{color:transparent;}
.fs0_c01071{font-size:90.000000px;}
.y0_c01071{bottom:0.000000px;}
.y1_c01071{bottom:1024.807500px;}
.h2_c01071{height:90.000000px;}
.h0_c01071{height:1246.320000px;}
.h1_c01071{height:1246.500000px;}
.w0_c01071{width:900.450000px;}
.w1_c01071{width:900.750000px;}
.x0_c01071{left:0.000000px;}
.x1_c01071{left:53.730000px;}
.x2_c01071{left:65.340000px;}
.x3_c01071{left:166.050000px;}
.x4_c01071{left:174.690000px;}
.x5_c01071{left:185.490000px;}
.x6_c01071{left:242.730000px;}
.x7_c01071{left:286.740000px;}
.x8_c01071{left:354.780000px;}
.x9_c01071{left:411.210000px;}
@media print{
.v0_c01071{vertical-align:0.000000pt;}
.ls0_c01071{letter-spacing:0.000000pt;}
.ws0_c01071{word-spacing:0.000000pt;}
.fs0_c01071{font-size:80.000000pt;}
.y0_c01071{bottom:0.000000pt;}
.y1_c01071{bottom:910.940000pt;}
.h2_c01071{height:80.000000pt;}
.h0_c01071{height:1107.840000pt;}
.h1_c01071{height:1108.000000pt;}
.w0_c01071{width:800.400000pt;}
.w1_c01071{width:800.666667pt;}
.x0_c01071{left:0.000000pt;}
.x1_c01071{left:47.760000pt;}
.x2_c01071{left:58.080000pt;}
.x3_c01071{left:147.600000pt;}
.x4_c01071{left:155.280000pt;}
.x5_c01071{left:164.880000pt;}
.x6_c01071{left:215.760000pt;}
.x7_c01071{left:254.880000pt;}
.x8_c01071{left:315.360000pt;}
.x9_c01071{left:365.520000pt;}
}





/* 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_c01072 {
    display:none;
  }
  .loading-indicator_c01072.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01072 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_c01072 { 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_c01072" -> "#page-container .classname_c01072")
 */
.pf_c01072 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01072 { /* 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_c01072.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01072 { /* 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_c01072 { /* 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_c01072 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01072 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01072 {overflow:visible;}
  }
}
.c_c01072 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01072 { /* 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_c01072:after { /* webkit #35443 */
  content: '';
}
.t_c01072:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01072 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 */
}
.__c01072 { /* 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_c01072 { /* info for Javascript */
  display:none;
}
.l_c01072 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01072 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01072 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01072: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_c01072 {
    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_c01072.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01072.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_c01072 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01072{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01072;src:url('chunks/assets/font_cfe63ee56e9e10a97d33a3db.woff2')format("woff");}.ff1_c01072{font-family:ff1_c01072;line-height:1.000000;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;}
.me9_c01072{transform:matrix(0.107516,0.003552,-0.008254,0.249864,0,0);-ms-transform:matrix(0.107516,0.003552,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.107516,0.003552,-0.008254,0.249864,0,0);}
.m155_c01072{transform:matrix(0.116965,0.004449,-0.009503,0.249819,0,0);-ms-transform:matrix(0.116965,0.004449,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.116965,0.004449,-0.009503,0.249819,0,0);}
.mff_c01072{transform:matrix(0.156617,0.005957,-0.009503,0.249819,0,0);-ms-transform:matrix(0.156617,0.005957,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.156617,0.005957,-0.009503,0.249819,0,0);}
.mef_c01072{transform:matrix(0.156645,0.005174,-0.008254,0.249864,0,0);-ms-transform:matrix(0.156645,0.005174,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.156645,0.005174,-0.008254,0.249864,0,0);}
.m102_c01072{transform:matrix(0.161668,0.006150,-0.009503,0.249819,0,0);-ms-transform:matrix(0.161668,0.006150,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.161668,0.006150,-0.009503,0.249819,0,0);}
.mbb_c01072{transform:matrix(0.163266,0.005393,-0.008254,0.249864,0,0);-ms-transform:matrix(0.163266,0.005393,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.163266,0.005393,-0.008254,0.249864,0,0);}
.m13d_c01072{transform:matrix(0.163901,0.004589,-0.006997,0.249902,0,0);-ms-transform:matrix(0.163901,0.004589,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.163901,0.004589,-0.006997,0.249902,0,0);}
.m104_c01072{transform:matrix(0.166215,0.006322,-0.009503,0.249819,0,0);-ms-transform:matrix(0.166215,0.006322,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.166215,0.006322,-0.009503,0.249819,0,0);}
.m13b_c01072{transform:matrix(0.167479,0.004689,-0.006997,0.249902,0,0);-ms-transform:matrix(0.167479,0.004689,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.167479,0.004689,-0.006997,0.249902,0,0);}
.m13a_c01072{transform:matrix(0.168654,0.004722,-0.006997,0.249902,0,0);-ms-transform:matrix(0.168654,0.004722,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.168654,0.004722,-0.006997,0.249902,0,0);}
.m140_c01072{transform:matrix(0.169803,0.004754,-0.006997,0.249902,0,0);-ms-transform:matrix(0.169803,0.004754,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.169803,0.004754,-0.006997,0.249902,0,0);}
.m100_c01072{transform:matrix(0.170207,0.006474,-0.009503,0.249819,0,0);-ms-transform:matrix(0.170207,0.006474,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.170207,0.006474,-0.009503,0.249819,0,0);}
.mfb_c01072{transform:matrix(0.172620,0.006566,-0.009503,0.249819,0,0);-ms-transform:matrix(0.172620,0.006566,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.172620,0.006566,-0.009503,0.249819,0,0);}
.mee_c01072{transform:matrix(0.173001,0.005715,-0.008254,0.249864,0,0);-ms-transform:matrix(0.173001,0.005715,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.173001,0.005715,-0.008254,0.249864,0,0);}
.m13c_c01072{transform:matrix(0.173207,0.004850,-0.006997,0.249902,0,0);-ms-transform:matrix(0.173207,0.004850,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.173207,0.004850,-0.006997,0.249902,0,0);}
.m106_c01072{transform:matrix(0.173664,0.006606,-0.009503,0.249819,0,0);-ms-transform:matrix(0.173664,0.006606,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.173664,0.006606,-0.009503,0.249819,0,0);}
.m108_c01072{transform:matrix(0.174709,0.006646,-0.009503,0.249819,0,0);-ms-transform:matrix(0.174709,0.006646,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.174709,0.006646,-0.009503,0.249819,0,0);}
.md7_c01072{transform:matrix(0.175174,0.005787,-0.008254,0.249864,0,0);-ms-transform:matrix(0.175174,0.005787,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.175174,0.005787,-0.008254,0.249864,0,0);}
.m141_c01072{transform:matrix(0.175916,0.004926,-0.006997,0.249902,0,0);-ms-transform:matrix(0.175916,0.004926,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.175916,0.004926,-0.006997,0.249902,0,0);}
.m157_c01072{transform:matrix(0.176213,0.006703,-0.009503,0.249819,0,0);-ms-transform:matrix(0.176213,0.006703,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.176213,0.006703,-0.009503,0.249819,0,0);}
.m12f_c01072{transform:matrix(0.176885,0.005307,-0.007497,0.249888,0,0);-ms-transform:matrix(0.176885,0.005307,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.176885,0.005307,-0.007497,0.249888,0,0);}
.m156_c01072{transform:matrix(0.177422,0.006749,-0.009503,0.249819,0,0);-ms-transform:matrix(0.177422,0.006749,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.177422,0.006749,-0.009503,0.249819,0,0);}
.meb_c01072{transform:matrix(0.177498,0.005863,-0.008254,0.249864,0,0);-ms-transform:matrix(0.177498,0.005863,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.177498,0.005863,-0.008254,0.249864,0,0);}
.m13f_c01072{transform:matrix(0.178660,0.005002,-0.006997,0.249902,0,0);-ms-transform:matrix(0.178660,0.005002,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.178660,0.005002,-0.006997,0.249902,0,0);}
.mfc_c01072{transform:matrix(0.178716,0.006798,-0.009503,0.249819,0,0);-ms-transform:matrix(0.178716,0.006798,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.178716,0.006798,-0.009503,0.249819,0,0);}
.mf1_c01072{transform:matrix(0.178827,0.005907,-0.008254,0.249864,0,0);-ms-transform:matrix(0.178827,0.005907,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.178827,0.005907,-0.008254,0.249864,0,0);}
.mce_c01072{transform:matrix(0.179312,0.005923,-0.008254,0.249864,0,0);-ms-transform:matrix(0.179312,0.005923,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.179312,0.005923,-0.008254,0.249864,0,0);}
.mb5_c01072{transform:matrix(0.179587,0.005932,-0.008254,0.249864,0,0);-ms-transform:matrix(0.179587,0.005932,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.179587,0.005932,-0.008254,0.249864,0,0);}
.mf4_c01072{transform:matrix(0.179800,0.006839,-0.009503,0.249819,0,0);-ms-transform:matrix(0.179800,0.006839,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.179800,0.006839,-0.009503,0.249819,0,0);}
.mf9_c01072{transform:matrix(0.180200,0.006854,-0.009503,0.249819,0,0);-ms-transform:matrix(0.180200,0.006854,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.180200,0.006854,-0.009503,0.249819,0,0);}
.m154_c01072{transform:matrix(0.180390,0.006862,-0.009503,0.249819,0,0);-ms-transform:matrix(0.180390,0.006862,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.180390,0.006862,-0.009503,0.249819,0,0);}
.m13e_c01072{transform:matrix(0.180984,0.005068,-0.006997,0.249902,0,0);-ms-transform:matrix(0.180984,0.005068,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.180984,0.005068,-0.006997,0.249902,0,0);}
.mc0_c01072{transform:matrix(0.181296,0.005989,-0.008254,0.249864,0,0);-ms-transform:matrix(0.181296,0.005989,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.181296,0.005989,-0.008254,0.249864,0,0);}
.mdb_c01072{transform:matrix(0.182555,0.006030,-0.008254,0.249864,0,0);-ms-transform:matrix(0.182555,0.006030,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.182555,0.006030,-0.008254,0.249864,0,0);}
.mfd_c01072{transform:matrix(0.183272,0.006971,-0.009503,0.249819,0,0);-ms-transform:matrix(0.183272,0.006971,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.183272,0.006971,-0.009503,0.249819,0,0);}
.m4c_c01072{transform:matrix(0.183805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183805,0.000000,0.000000,0.250000,0,0);}
.mc7_c01072{transform:matrix(0.184614,0.006098,-0.008254,0.249864,0,0);-ms-transform:matrix(0.184614,0.006098,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.184614,0.006098,-0.008254,0.249864,0,0);}
.mbd_c01072{transform:matrix(0.184734,0.006102,-0.008254,0.249864,0,0);-ms-transform:matrix(0.184734,0.006102,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.184734,0.006102,-0.008254,0.249864,0,0);}
.m153_c01072{transform:matrix(0.184891,0.007033,-0.009503,0.249819,0,0);-ms-transform:matrix(0.184891,0.007033,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.184891,0.007033,-0.009503,0.249819,0,0);}
.m136_c01072{transform:matrix(0.185097,0.005553,-0.007497,0.249888,0,0);-ms-transform:matrix(0.185097,0.005553,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.185097,0.005553,-0.007497,0.249888,0,0);}
.mec_c01072{transform:matrix(0.185169,0.006117,-0.008254,0.249864,0,0);-ms-transform:matrix(0.185169,0.006117,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.185169,0.006117,-0.008254,0.249864,0,0);}
.m139_c01072{transform:matrix(0.185752,0.005201,-0.006997,0.249902,0,0);-ms-transform:matrix(0.185752,0.005201,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.185752,0.005201,-0.006997,0.249902,0,0);}
.med_c01072{transform:matrix(0.186943,0.006175,-0.008254,0.249864,0,0);-ms-transform:matrix(0.186943,0.006175,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.186943,0.006175,-0.008254,0.249864,0,0);}
.md6_c01072{transform:matrix(0.187028,0.006178,-0.008254,0.249864,0,0);-ms-transform:matrix(0.187028,0.006178,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.187028,0.006178,-0.008254,0.249864,0,0);}
.m151_c01072{transform:matrix(0.188064,0.007154,-0.009503,0.249819,0,0);-ms-transform:matrix(0.188064,0.007154,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.188064,0.007154,-0.009503,0.249819,0,0);}
.m10b_c01072{transform:matrix(0.188264,0.007161,-0.009503,0.249819,0,0);-ms-transform:matrix(0.188264,0.007161,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.188264,0.007161,-0.009503,0.249819,0,0);}
.m56_c01072{transform:matrix(0.188400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188400,0.000000,0.000000,0.250000,0,0);}
.m101_c01072{transform:matrix(0.188419,0.007167,-0.009503,0.249819,0,0);-ms-transform:matrix(0.188419,0.007167,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.188419,0.007167,-0.009503,0.249819,0,0);}
.m103_c01072{transform:matrix(0.188624,0.007175,-0.009503,0.249819,0,0);-ms-transform:matrix(0.188624,0.007175,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.188624,0.007175,-0.009503,0.249819,0,0);}
.mea_c01072{transform:matrix(0.188902,0.006240,-0.008254,0.249864,0,0);-ms-transform:matrix(0.188902,0.006240,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.188902,0.006240,-0.008254,0.249864,0,0);}
.ma3_c01072{transform:matrix(0.188907,0.006240,-0.008254,0.249864,0,0);-ms-transform:matrix(0.188907,0.006240,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.188907,0.006240,-0.008254,0.249864,0,0);}
.md3_c01072{transform:matrix(0.189227,0.006251,-0.008254,0.249864,0,0);-ms-transform:matrix(0.189227,0.006251,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.189227,0.006251,-0.008254,0.249864,0,0);}
.ma6_c01072{transform:matrix(0.189502,0.006260,-0.008254,0.249864,0,0);-ms-transform:matrix(0.189502,0.006260,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.189502,0.006260,-0.008254,0.249864,0,0);}
.mc5_c01072{transform:matrix(0.189517,0.006260,-0.008254,0.249864,0,0);-ms-transform:matrix(0.189517,0.006260,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.189517,0.006260,-0.008254,0.249864,0,0);}
.m3_c01072{transform:matrix(0.189605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189605,0.000000,0.000000,0.250000,0,0);}
.m158_c01072{transform:matrix(0.190247,0.007237,-0.009503,0.249819,0,0);-ms-transform:matrix(0.190247,0.007237,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.190247,0.007237,-0.009503,0.249819,0,0);}
.m107_c01072{transform:matrix(0.190337,0.007240,-0.009503,0.249819,0,0);-ms-transform:matrix(0.190337,0.007240,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.190337,0.007240,-0.009503,0.249819,0,0);}
.ma1_c01072{transform:matrix(0.190721,0.006300,-0.008254,0.249864,0,0);-ms-transform:matrix(0.190721,0.006300,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.190721,0.006300,-0.008254,0.249864,0,0);}
.me0_c01072{transform:matrix(0.191271,0.006318,-0.008254,0.249864,0,0);-ms-transform:matrix(0.191271,0.006318,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.191271,0.006318,-0.008254,0.249864,0,0);}
.maf_c01072{transform:matrix(0.191561,0.006328,-0.008254,0.249864,0,0);-ms-transform:matrix(0.191561,0.006328,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.191561,0.006328,-0.008254,0.249864,0,0);}
.me8_c01072{transform:matrix(0.191600,0.006329,-0.008254,0.249864,0,0);-ms-transform:matrix(0.191600,0.006329,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.191600,0.006329,-0.008254,0.249864,0,0);}
.mca_c01072{transform:matrix(0.192480,0.006358,-0.008254,0.249864,0,0);-ms-transform:matrix(0.192480,0.006358,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.192480,0.006358,-0.008254,0.249864,0,0);}
.m12d_c01072{transform:matrix(0.192578,0.005777,-0.007497,0.249888,0,0);-ms-transform:matrix(0.192578,0.005777,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.192578,0.005777,-0.007497,0.249888,0,0);}
.m150_c01072{transform:matrix(0.192915,0.007338,-0.009503,0.249819,0,0);-ms-transform:matrix(0.192915,0.007338,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.192915,0.007338,-0.009503,0.249819,0,0);}
.mad_c01072{transform:matrix(0.193050,0.006377,-0.008254,0.249864,0,0);-ms-transform:matrix(0.193050,0.006377,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.193050,0.006377,-0.008254,0.249864,0,0);}
.mf6_c01072{transform:matrix(0.193415,0.007357,-0.009503,0.249819,0,0);-ms-transform:matrix(0.193415,0.007357,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.193415,0.007357,-0.009503,0.249819,0,0);}
.mf7_c01072{transform:matrix(0.194010,0.007380,-0.009503,0.249819,0,0);-ms-transform:matrix(0.194010,0.007380,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.194010,0.007380,-0.009503,0.249819,0,0);}
.mb1_c01072{transform:matrix(0.194244,0.006416,-0.008254,0.249864,0,0);-ms-transform:matrix(0.194244,0.006416,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.194244,0.006416,-0.008254,0.249864,0,0);}
.mfa_c01072{transform:matrix(0.195084,0.007421,-0.009503,0.249819,0,0);-ms-transform:matrix(0.195084,0.007421,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.195084,0.007421,-0.009503,0.249819,0,0);}
.m138_c01072{transform:matrix(0.195363,0.005470,-0.006997,0.249902,0,0);-ms-transform:matrix(0.195363,0.005470,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.195363,0.005470,-0.006997,0.249902,0,0);}
.m111_c01072{transform:matrix(0.195424,0.007434,-0.009503,0.249819,0,0);-ms-transform:matrix(0.195424,0.007434,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.195424,0.007434,-0.009503,0.249819,0,0);}
.mbe_c01072{transform:matrix(0.195708,0.006465,-0.008254,0.249864,0,0);-ms-transform:matrix(0.195708,0.006465,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.195708,0.006465,-0.008254,0.249864,0,0);}
.m31_c01072{transform:matrix(0.196125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196125,0.000000,0.000000,0.250000,0,0);}
.mf2_c01072{transform:matrix(0.196668,0.007481,-0.009503,0.249819,0,0);-ms-transform:matrix(0.196668,0.007481,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.196668,0.007481,-0.009503,0.249819,0,0);}
.me_c01072{transform:matrix(0.197200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197200,0.000000,0.000000,0.250000,0,0);}
.mf5_c01072{transform:matrix(0.199136,0.007575,-0.009503,0.249819,0,0);-ms-transform:matrix(0.199136,0.007575,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.199136,0.007575,-0.009503,0.249819,0,0);}
.mc4_c01072{transform:matrix(0.199666,0.006596,-0.008254,0.249864,0,0);-ms-transform:matrix(0.199666,0.006596,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.199666,0.006596,-0.008254,0.249864,0,0);}
.mfe_c01072{transform:matrix(0.199900,0.007604,-0.009503,0.249819,0,0);-ms-transform:matrix(0.199900,0.007604,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.199900,0.007604,-0.009503,0.249819,0,0);}
.md5_c01072{transform:matrix(0.200136,0.006611,-0.008254,0.249864,0,0);-ms-transform:matrix(0.200136,0.006611,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.200136,0.006611,-0.008254,0.249864,0,0);}
.ma8_c01072{transform:matrix(0.200186,0.006613,-0.008254,0.249864,0,0);-ms-transform:matrix(0.200186,0.006613,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.200186,0.006613,-0.008254,0.249864,0,0);}
.mda_c01072{transform:matrix(0.200461,0.006622,-0.008254,0.249864,0,0);-ms-transform:matrix(0.200461,0.006622,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.200461,0.006622,-0.008254,0.249864,0,0);}
.m152_c01072{transform:matrix(0.200465,0.007625,-0.009503,0.249819,0,0);-ms-transform:matrix(0.200465,0.007625,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.200465,0.007625,-0.009503,0.249819,0,0);}
.m10f_c01072{transform:matrix(0.201349,0.007659,-0.009503,0.249819,0,0);-ms-transform:matrix(0.201349,0.007659,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.201349,0.007659,-0.009503,0.249819,0,0);}
.m134_c01072{transform:matrix(0.201804,0.006054,-0.007497,0.249888,0,0);-ms-transform:matrix(0.201804,0.006054,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.201804,0.006054,-0.007497,0.249888,0,0);}
.md4_c01072{transform:matrix(0.202465,0.006688,-0.008254,0.249864,0,0);-ms-transform:matrix(0.202465,0.006688,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.202465,0.006688,-0.008254,0.249864,0,0);}
.m2b_c01072{transform:matrix(0.202665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202665,0.000000,0.000000,0.250000,0,0);}
.m10c_c01072{transform:matrix(0.203153,0.007728,-0.009503,0.249819,0,0);-ms-transform:matrix(0.203153,0.007728,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.203153,0.007728,-0.009503,0.249819,0,0);}
.mcd_c01072{transform:matrix(0.203694,0.006729,-0.008254,0.249864,0,0);-ms-transform:matrix(0.203694,0.006729,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.203694,0.006729,-0.008254,0.249864,0,0);}
.mcc_c01072{transform:matrix(0.204019,0.006739,-0.008254,0.249864,0,0);-ms-transform:matrix(0.204019,0.006739,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.204019,0.006739,-0.008254,0.249864,0,0);}
.mac_c01072{transform:matrix(0.204349,0.006750,-0.008254,0.249864,0,0);-ms-transform:matrix(0.204349,0.006750,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.204349,0.006750,-0.008254,0.249864,0,0);}
.mdc_c01072{transform:matrix(0.204389,0.006752,-0.008254,0.249864,0,0);-ms-transform:matrix(0.204389,0.006752,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.204389,0.006752,-0.008254,0.249864,0,0);}
.m131_c01072{transform:matrix(0.204858,0.006146,-0.007497,0.249888,0,0);-ms-transform:matrix(0.204858,0.006146,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.204858,0.006146,-0.007497,0.249888,0,0);}
.md1_c01072{transform:matrix(0.204943,0.006770,-0.008254,0.249864,0,0);-ms-transform:matrix(0.204943,0.006770,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.204943,0.006770,-0.008254,0.249864,0,0);}
.mf3_c01072{transform:matrix(0.205062,0.007800,-0.009503,0.249819,0,0);-ms-transform:matrix(0.205062,0.007800,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.205062,0.007800,-0.009503,0.249819,0,0);}
.m88_c01072{transform:matrix(0.205633,0.006793,-0.008254,0.249864,0,0);-ms-transform:matrix(0.205633,0.006793,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.205633,0.006793,-0.008254,0.249864,0,0);}
.m10e_c01072{transform:matrix(0.205696,0.007824,-0.009503,0.249819,0,0);-ms-transform:matrix(0.205696,0.007824,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.205696,0.007824,-0.009503,0.249819,0,0);}
.m14_c01072{transform:matrix(0.206895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206895,0.000000,0.000000,0.250000,0,0);}
.m58_c01072{transform:matrix(0.206925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206925,0.000000,0.000000,0.250000,0,0);}
.mf8_c01072{transform:matrix(0.207610,0.007897,-0.009503,0.249819,0,0);-ms-transform:matrix(0.207610,0.007897,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.207610,0.007897,-0.009503,0.249819,0,0);}
.m4e_c01072{transform:matrix(0.208015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208015,0.000000,0.000000,0.250000,0,0);}
.mf0_c01072{transform:matrix(0.208746,0.006896,-0.008254,0.249864,0,0);-ms-transform:matrix(0.208746,0.006896,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.208746,0.006896,-0.008254,0.249864,0,0);}
.md8_c01072{transform:matrix(0.208896,0.006900,-0.008254,0.249864,0,0);-ms-transform:matrix(0.208896,0.006900,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.208896,0.006900,-0.008254,0.249864,0,0);}
.m5c_c01072{transform:matrix(0.209290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209290,0.000000,0.000000,0.250000,0,0);}
.md_c01072{transform:matrix(0.209550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209550,0.000000,0.000000,0.250000,0,0);}
.ma9_c01072{transform:matrix(0.209766,0.006929,-0.008254,0.249864,0,0);-ms-transform:matrix(0.209766,0.006929,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.209766,0.006929,-0.008254,0.249864,0,0);}
.mb9_c01072{transform:matrix(0.209861,0.006932,-0.008254,0.249864,0,0);-ms-transform:matrix(0.209861,0.006932,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.209861,0.006932,-0.008254,0.249864,0,0);}
.mb_c01072{transform:matrix(0.209880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209880,0.000000,0.000000,0.250000,0,0);}
.mbc_c01072{transform:matrix(0.210195,0.006943,-0.008254,0.249864,0,0);-ms-transform:matrix(0.210195,0.006943,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.210195,0.006943,-0.008254,0.249864,0,0);}
.md9_c01072{transform:matrix(0.210365,0.006949,-0.008254,0.249864,0,0);-ms-transform:matrix(0.210365,0.006949,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.210365,0.006949,-0.008254,0.249864,0,0);}
.mbf_c01072{transform:matrix(0.210470,0.006952,-0.008254,0.249864,0,0);-ms-transform:matrix(0.210470,0.006952,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.210470,0.006952,-0.008254,0.249864,0,0);}
.m51_c01072{transform:matrix(0.210620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210620,0.000000,0.000000,0.250000,0,0);}
.m115_c01072{transform:matrix(0.210678,0.008014,-0.009503,0.249819,0,0);-ms-transform:matrix(0.210678,0.008014,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.210678,0.008014,-0.009503,0.249819,0,0);}
.m2a_c01072{transform:matrix(0.211020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211020,0.000000,0.000000,0.250000,0,0);}
.m130_c01072{transform:matrix(0.211245,0.006337,-0.007497,0.249888,0,0);-ms-transform:matrix(0.211245,0.006337,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.211245,0.006337,-0.007497,0.249888,0,0);}
.mc6_c01072{transform:matrix(0.211250,0.006978,-0.008254,0.249864,0,0);-ms-transform:matrix(0.211250,0.006978,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.211250,0.006978,-0.008254,0.249864,0,0);}
.m0_c01072{transform:matrix(0.211550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211550,0.000000,0.000000,0.250000,0,0);}
.m12e_c01072{transform:matrix(0.211600,0.006348,-0.007497,0.249888,0,0);-ms-transform:matrix(0.211600,0.006348,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.211600,0.006348,-0.007497,0.249888,0,0);}
.mdd_c01072{transform:matrix(0.211625,0.006991,-0.008254,0.249864,0,0);-ms-transform:matrix(0.211625,0.006991,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.211625,0.006991,-0.008254,0.249864,0,0);}
.m6c_c01072{transform:matrix(0.211630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211630,0.000000,0.000000,0.250000,0,0);}
.m3a_c01072{transform:matrix(0.212395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212395,0.000000,0.000000,0.250000,0,0);}
.m14c_c01072{transform:matrix(0.212671,0.008090,-0.009503,0.249819,0,0);-ms-transform:matrix(0.212671,0.008090,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.212671,0.008090,-0.009503,0.249819,0,0);}
.mba_c01072{transform:matrix(0.212709,0.007026,-0.008254,0.249864,0,0);-ms-transform:matrix(0.212709,0.007026,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.212709,0.007026,-0.008254,0.249864,0,0);}
.mc_c01072{transform:matrix(0.213840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213840,0.000000,0.000000,0.250000,0,0);}
.m105_c01072{transform:matrix(0.213845,0.008134,-0.009503,0.249819,0,0);-ms-transform:matrix(0.213845,0.008134,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.213845,0.008134,-0.009503,0.249819,0,0);}
.m2_c01072{transform:matrix(0.214300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214300,0.000000,0.000000,0.250000,0,0);}
.me5_c01072{transform:matrix(0.214303,0.007079,-0.008254,0.249864,0,0);-ms-transform:matrix(0.214303,0.007079,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.214303,0.007079,-0.008254,0.249864,0,0);}
.m5_c01072{transform:matrix(0.214420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214420,0.000000,0.000000,0.250000,0,0);}
.m14f_c01072{transform:matrix(0.215224,0.008187,-0.009503,0.249819,0,0);-ms-transform:matrix(0.215224,0.008187,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.215224,0.008187,-0.009503,0.249819,0,0);}
.m118_c01072{transform:matrix(0.215549,0.008199,-0.009503,0.249819,0,0);-ms-transform:matrix(0.215549,0.008199,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.215549,0.008199,-0.009503,0.249819,0,0);}
.mc1_c01072{transform:matrix(0.215552,0.007120,-0.008254,0.249864,0,0);-ms-transform:matrix(0.215552,0.007120,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.215552,0.007120,-0.008254,0.249864,0,0);}
.m2d_c01072{transform:matrix(0.216505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216505,0.000000,0.000000,0.250000,0,0);}
.m59_c01072{transform:matrix(0.216755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216755,0.000000,0.000000,0.250000,0,0);}
.m133_c01072{transform:matrix(0.216837,0.006505,-0.007497,0.249888,0,0);-ms-transform:matrix(0.216837,0.006505,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.216837,0.006505,-0.007497,0.249888,0,0);}
.m132_c01072{transform:matrix(0.217452,0.006524,-0.007497,0.249888,0,0);-ms-transform:matrix(0.217452,0.006524,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.217452,0.006524,-0.007497,0.249888,0,0);}
.m11f_c01072{transform:matrix(0.217723,0.008282,-0.009503,0.249819,0,0);-ms-transform:matrix(0.217723,0.008282,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.217723,0.008282,-0.009503,0.249819,0,0);}
.m6_c01072{transform:matrix(0.218300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218300,0.000000,0.000000,0.250000,0,0);}
.m114_c01072{transform:matrix(0.218792,0.008322,-0.009503,0.249819,0,0);-ms-transform:matrix(0.218792,0.008322,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.218792,0.008322,-0.009503,0.249819,0,0);}
.me2_c01072{transform:matrix(0.219090,0.007237,-0.008254,0.249864,0,0);-ms-transform:matrix(0.219090,0.007237,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.219090,0.007237,-0.008254,0.249864,0,0);}
.m14e_c01072{transform:matrix(0.219152,0.008336,-0.009503,0.249819,0,0);-ms-transform:matrix(0.219152,0.008336,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.219152,0.008336,-0.009503,0.249819,0,0);}
.m2c_c01072{transform:matrix(0.220380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220380,0.000000,0.000000,0.250000,0,0);}
.m137_c01072{transform:matrix(0.220381,0.006611,-0.007497,0.249888,0,0);-ms-transform:matrix(0.220381,0.006611,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.220381,0.006611,-0.007497,0.249888,0,0);}
.m4b_c01072{transform:matrix(0.221140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221140,0.000000,0.000000,0.250000,0,0);}
.m52_c01072{transform:matrix(0.221600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221600,0.000000,0.000000,0.250000,0,0);}
.m135_c01072{transform:matrix(0.222165,0.006665,-0.007497,0.249888,0,0);-ms-transform:matrix(0.222165,0.006665,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.222165,0.006665,-0.007497,0.249888,0,0);}
.m49_c01072{transform:matrix(0.222490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222490,0.000000,0.000000,0.250000,0,0);}
.m33_c01072{transform:matrix(0.222780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222780,0.000000,0.000000,0.250000,0,0);}
.mae_c01072{transform:matrix(0.222838,0.007361,-0.008254,0.249864,0,0);-ms-transform:matrix(0.222838,0.007361,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.222838,0.007361,-0.008254,0.249864,0,0);}
.mc9_c01072{transform:matrix(0.222873,0.007362,-0.008254,0.249864,0,0);-ms-transform:matrix(0.222873,0.007362,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.222873,0.007362,-0.008254,0.249864,0,0);}
.m11e_c01072{transform:matrix(0.223019,0.008483,-0.009503,0.249819,0,0);-ms-transform:matrix(0.223019,0.008483,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.223019,0.008483,-0.009503,0.249819,0,0);}
.m126_c01072{transform:matrix(0.223109,0.008487,-0.009503,0.249819,0,0);-ms-transform:matrix(0.223109,0.008487,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.223109,0.008487,-0.009503,0.249819,0,0);}
.m110_c01072{transform:matrix(0.223483,0.008501,-0.009503,0.249819,0,0);-ms-transform:matrix(0.223483,0.008501,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.223483,0.008501,-0.009503,0.249819,0,0);}
.m82_c01072{transform:matrix(0.223848,0.007394,-0.008254,0.249864,0,0);-ms-transform:matrix(0.223848,0.007394,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.223848,0.007394,-0.008254,0.249864,0,0);}
.mab_c01072{transform:matrix(0.223923,0.007397,-0.008254,0.249864,0,0);-ms-transform:matrix(0.223923,0.007397,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.223923,0.007397,-0.008254,0.249864,0,0);}
.m57_c01072{transform:matrix(0.224045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224045,0.000000,0.000000,0.250000,0,0);}
.mcb_c01072{transform:matrix(0.224223,0.007407,-0.008254,0.249864,0,0);-ms-transform:matrix(0.224223,0.007407,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.224223,0.007407,-0.008254,0.249864,0,0);}
.m76_c01072{transform:matrix(0.224328,0.007410,-0.008254,0.249864,0,0);-ms-transform:matrix(0.224328,0.007410,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.224328,0.007410,-0.008254,0.249864,0,0);}
.m61_c01072{transform:matrix(0.224680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224680,0.000000,0.000000,0.250000,0,0);}
.m112_c01072{transform:matrix(0.224707,0.008547,-0.009503,0.249819,0,0);-ms-transform:matrix(0.224707,0.008547,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.224707,0.008547,-0.009503,0.249819,0,0);}
.md2_c01072{transform:matrix(0.225062,0.007434,-0.008254,0.249864,0,0);-ms-transform:matrix(0.225062,0.007434,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.225062,0.007434,-0.008254,0.249864,0,0);}
.m11b_c01072{transform:matrix(0.225152,0.008564,-0.009503,0.249819,0,0);-ms-transform:matrix(0.225152,0.008564,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.225152,0.008564,-0.009503,0.249819,0,0);}
.mb0_c01072{transform:matrix(0.225207,0.007439,-0.008254,0.249864,0,0);-ms-transform:matrix(0.225207,0.007439,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.225207,0.007439,-0.008254,0.249864,0,0);}
.mdf_c01072{transform:matrix(0.225217,0.007440,-0.008254,0.249864,0,0);-ms-transform:matrix(0.225217,0.007440,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.225217,0.007440,-0.008254,0.249864,0,0);}
.m92_c01072{transform:matrix(0.225222,0.007440,-0.008254,0.249864,0,0);-ms-transform:matrix(0.225222,0.007440,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.225222,0.007440,-0.008254,0.249864,0,0);}
.m66_c01072{transform:matrix(0.225320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225320,0.000000,0.000000,0.250000,0,0);}
.m10d_c01072{transform:matrix(0.225482,0.008577,-0.009503,0.249819,0,0);-ms-transform:matrix(0.225482,0.008577,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.225482,0.008577,-0.009503,0.249819,0,0);}
.m149_c01072{transform:matrix(0.225572,0.008580,-0.009503,0.249819,0,0);-ms-transform:matrix(0.225572,0.008580,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.225572,0.008580,-0.009503,0.249819,0,0);}
.m8_c01072{transform:matrix(0.225735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225735,0.000000,0.000000,0.250000,0,0);}
.m116_c01072{transform:matrix(0.226191,0.008604,-0.009503,0.249819,0,0);-ms-transform:matrix(0.226191,0.008604,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.226191,0.008604,-0.009503,0.249819,0,0);}
.m50_c01072{transform:matrix(0.226355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226355,0.000000,0.000000,0.250000,0,0);}
.m11_c01072{transform:matrix(0.226745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226745,0.000000,0.000000,0.250000,0,0);}
.m3c_c01072{transform:matrix(0.226965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226965,0.000000,0.000000,0.250000,0,0);}
.m6d_c01072{transform:matrix(0.227015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227015,0.000000,0.000000,0.250000,0,0);}
.mb4_c01072{transform:matrix(0.227806,0.007525,-0.008254,0.249864,0,0);-ms-transform:matrix(0.227806,0.007525,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.227806,0.007525,-0.008254,0.249864,0,0);}
.m2f_c01072{transform:matrix(0.228205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228205,0.000000,0.000000,0.250000,0,0);}
.m109_c01072{transform:matrix(0.228215,0.008681,-0.009503,0.249819,0,0);-ms-transform:matrix(0.228215,0.008681,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.228215,0.008681,-0.009503,0.249819,0,0);}
.m14a_c01072{transform:matrix(0.228245,0.008682,-0.009503,0.249819,0,0);-ms-transform:matrix(0.228245,0.008682,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.228245,0.008682,-0.009503,0.249819,0,0);}
.m29_c01072{transform:matrix(0.228845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228845,0.000000,0.000000,0.250000,0,0);}
.m30_c01072{transform:matrix(0.229220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229220,0.000000,0.000000,0.250000,0,0);}
.m8b_c01072{transform:matrix(0.229400,0.007578,-0.008254,0.249864,0,0);-ms-transform:matrix(0.229400,0.007578,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.229400,0.007578,-0.008254,0.249864,0,0);}
.m6e_c01072{transform:matrix(0.229885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229885,0.000000,0.000000,0.250000,0,0);}
.mcf_c01072{transform:matrix(0.230274,0.007607,-0.008254,0.249864,0,0);-ms-transform:matrix(0.230274,0.007607,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.230274,0.007607,-0.008254,0.249864,0,0);}
.mb3_c01072{transform:matrix(0.230474,0.007613,-0.008254,0.249864,0,0);-ms-transform:matrix(0.230474,0.007613,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.230474,0.007613,-0.008254,0.249864,0,0);}
.m94_c01072{transform:matrix(0.230769,0.007623,-0.008254,0.249864,0,0);-ms-transform:matrix(0.230769,0.007623,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.230769,0.007623,-0.008254,0.249864,0,0);}
.ma2_c01072{transform:matrix(0.230809,0.007624,-0.008254,0.249864,0,0);-ms-transform:matrix(0.230809,0.007624,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.230809,0.007624,-0.008254,0.249864,0,0);}
.m1b_c01072{transform:matrix(0.230895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230895,0.000000,0.000000,0.250000,0,0);}
.mb2_c01072{transform:matrix(0.230974,0.007630,-0.008254,0.249864,0,0);-ms-transform:matrix(0.230974,0.007630,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.230974,0.007630,-0.008254,0.249864,0,0);}
.m2e_c01072{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.ma5_c01072{transform:matrix(0.231494,0.007647,-0.008254,0.249864,0,0);-ms-transform:matrix(0.231494,0.007647,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.231494,0.007647,-0.008254,0.249864,0,0);}
.me3_c01072{transform:matrix(0.231819,0.007658,-0.008254,0.249864,0,0);-ms-transform:matrix(0.231819,0.007658,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.231819,0.007658,-0.008254,0.249864,0,0);}
.ma7_c01072{transform:matrix(0.232393,0.007677,-0.008254,0.249864,0,0);-ms-transform:matrix(0.232393,0.007677,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.232393,0.007677,-0.008254,0.249864,0,0);}
.m90_c01072{transform:matrix(0.232468,0.007679,-0.008254,0.249864,0,0);-ms-transform:matrix(0.232468,0.007679,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.232468,0.007679,-0.008254,0.249864,0,0);}
.m7_c01072{transform:matrix(0.232595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232595,0.000000,0.000000,0.250000,0,0);}
.m5f_c01072{transform:matrix(0.232655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232655,0.000000,0.000000,0.250000,0,0);}
.m34_c01072{transform:matrix(0.232660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232660,0.000000,0.000000,0.250000,0,0);}
.ma4_c01072{transform:matrix(0.232998,0.007697,-0.008254,0.249864,0,0);-ms-transform:matrix(0.232998,0.007697,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.232998,0.007697,-0.008254,0.249864,0,0);}
.mb6_c01072{transform:matrix(0.233093,0.007700,-0.008254,0.249864,0,0);-ms-transform:matrix(0.233093,0.007700,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.233093,0.007700,-0.008254,0.249864,0,0);}
.m119_c01072{transform:matrix(0.233351,0.008876,-0.009503,0.249819,0,0);-ms-transform:matrix(0.233351,0.008876,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.233351,0.008876,-0.009503,0.249819,0,0);}
.m69_c01072{transform:matrix(0.233695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233695,0.000000,0.000000,0.250000,0,0);}
.m10a_c01072{transform:matrix(0.233791,0.008893,-0.009503,0.249819,0,0);-ms-transform:matrix(0.233791,0.008893,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.233791,0.008893,-0.009503,0.249819,0,0);}
.mf_c01072{transform:matrix(0.234165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234165,0.000000,0.000000,0.250000,0,0);}
.m10_c01072{transform:matrix(0.234560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234560,0.000000,0.000000,0.250000,0,0);}
.m128_c01072{transform:matrix(0.234615,0.008924,-0.009503,0.249819,0,0);-ms-transform:matrix(0.234615,0.008924,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.234615,0.008924,-0.009503,0.249819,0,0);}
.m12b_c01072{transform:matrix(0.234885,0.008935,-0.009503,0.249819,0,0);-ms-transform:matrix(0.234885,0.008935,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.234885,0.008935,-0.009503,0.249819,0,0);}
.m6b_c01072{transform:matrix(0.235390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235390,0.000000,0.000000,0.250000,0,0);}
.m11c_c01072{transform:matrix(0.235750,0.008967,-0.009503,0.249819,0,0);-ms-transform:matrix(0.235750,0.008967,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.235750,0.008967,-0.009503,0.249819,0,0);}
.mde_c01072{transform:matrix(0.236861,0.007824,-0.008254,0.249864,0,0);-ms-transform:matrix(0.236861,0.007824,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.236861,0.007824,-0.008254,0.249864,0,0);}
.m122_c01072{transform:matrix(0.237663,0.009040,-0.009503,0.249819,0,0);-ms-transform:matrix(0.237663,0.009040,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.237663,0.009040,-0.009503,0.249819,0,0);}
.m9_c01072{transform:matrix(0.238045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238045,0.000000,0.000000,0.250000,0,0);}
.m55_c01072{transform:matrix(0.238325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238325,0.000000,0.000000,0.250000,0,0);}
.me4_c01072{transform:matrix(0.238575,0.007881,-0.008254,0.249864,0,0);-ms-transform:matrix(0.238575,0.007881,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.238575,0.007881,-0.008254,0.249864,0,0);}
.m5b_c01072{transform:matrix(0.238715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238715,0.000000,0.000000,0.250000,0,0);}
.m4_c01072{transform:matrix(0.239325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239325,0.000000,0.000000,0.250000,0,0);}
.m14d_c01072{transform:matrix(0.239352,0.009104,-0.009503,0.249819,0,0);-ms-transform:matrix(0.239352,0.009104,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.239352,0.009104,-0.009503,0.249819,0,0);}
.m14b_c01072{transform:matrix(0.239422,0.009107,-0.009503,0.249819,0,0);-ms-transform:matrix(0.239422,0.009107,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.239422,0.009107,-0.009503,0.249819,0,0);}
.m5a_c01072{transform:matrix(0.239650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239650,0.000000,0.000000,0.250000,0,0);}
.me1_c01072{transform:matrix(0.240254,0.007936,-0.008254,0.249864,0,0);-ms-transform:matrix(0.240254,0.007936,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.240254,0.007936,-0.008254,0.249864,0,0);}
.mb7_c01072{transform:matrix(0.240544,0.007946,-0.008254,0.249864,0,0);-ms-transform:matrix(0.240544,0.007946,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.240544,0.007946,-0.008254,0.249864,0,0);}
.m8f_c01072{transform:matrix(0.240644,0.007949,-0.008254,0.249864,0,0);-ms-transform:matrix(0.240644,0.007949,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.240644,0.007949,-0.008254,0.249864,0,0);}
.m80_c01072{transform:matrix(0.240704,0.007951,-0.008254,0.249864,0,0);-ms-transform:matrix(0.240704,0.007951,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.240704,0.007951,-0.008254,0.249864,0,0);}
.m113_c01072{transform:matrix(0.240746,0.009158,-0.009503,0.249819,0,0);-ms-transform:matrix(0.240746,0.009158,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.240746,0.009158,-0.009503,0.249819,0,0);}
.mb8_c01072{transform:matrix(0.240774,0.007953,-0.008254,0.249864,0,0);-ms-transform:matrix(0.240774,0.007953,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.240774,0.007953,-0.008254,0.249864,0,0);}
.m4f_c01072{transform:matrix(0.242180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242180,0.000000,0.000000,0.250000,0,0);}
.md0_c01072{transform:matrix(0.242203,0.008001,-0.008254,0.249864,0,0);-ms-transform:matrix(0.242203,0.008001,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.242203,0.008001,-0.008254,0.249864,0,0);}
.m53_c01072{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.maa_c01072{transform:matrix(0.242523,0.008011,-0.008254,0.249864,0,0);-ms-transform:matrix(0.242523,0.008011,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.242523,0.008011,-0.008254,0.249864,0,0);}
.m32_c01072{transform:matrix(0.242990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242990,0.000000,0.000000,0.250000,0,0);}
.m11d_c01072{transform:matrix(0.243114,0.009248,-0.009503,0.249819,0,0);-ms-transform:matrix(0.243114,0.009248,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.243114,0.009248,-0.009503,0.249819,0,0);}
.m124_c01072{transform:matrix(0.243604,0.009266,-0.009503,0.249819,0,0);-ms-transform:matrix(0.243604,0.009266,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.243604,0.009266,-0.009503,0.249819,0,0);}
.m24_c01072{transform:matrix(0.244330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244330,0.000000,0.000000,0.250000,0,0);}
.m16_c01072{transform:matrix(0.244475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244475,0.000000,0.000000,0.250000,0,0);}
.m7d_c01072{transform:matrix(0.244747,0.008085,-0.008254,0.249864,0,0);-ms-transform:matrix(0.244747,0.008085,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.244747,0.008085,-0.008254,0.249864,0,0);}
.m9a_c01072{transform:matrix(0.244971,0.008092,-0.008254,0.249864,0,0);-ms-transform:matrix(0.244971,0.008092,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.244971,0.008092,-0.008254,0.249864,0,0);}
.m117_c01072{transform:matrix(0.244973,0.009318,-0.009503,0.249819,0,0);-ms-transform:matrix(0.244973,0.009318,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.244973,0.009318,-0.009503,0.249819,0,0);}
.m83_c01072{transform:matrix(0.245326,0.008104,-0.008254,0.249864,0,0);-ms-transform:matrix(0.245326,0.008104,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.245326,0.008104,-0.008254,0.249864,0,0);}
.m72_c01072{transform:matrix(0.245550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245550,0.000000,0.000000,0.250000,0,0);}
.m20_c01072{transform:matrix(0.245835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245835,0.000000,0.000000,0.250000,0,0);}
.m38_c01072{transform:matrix(0.245970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245970,0.000000,0.000000,0.250000,0,0);}
.m15_c01072{transform:matrix(0.246195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246195,0.000000,0.000000,0.250000,0,0);}
.m7b_c01072{transform:matrix(0.246241,0.008134,-0.008254,0.249864,0,0);-ms-transform:matrix(0.246241,0.008134,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.246241,0.008134,-0.008254,0.249864,0,0);}
.m22_c01072{transform:matrix(0.246620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246620,0.000000,0.000000,0.250000,0,0);}
.m65_c01072{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m6f_c01072{transform:matrix(0.247815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247815,0.000000,0.000000,0.250000,0,0);}
.m89_c01072{transform:matrix(0.247945,0.008190,-0.008254,0.249864,0,0);-ms-transform:matrix(0.247945,0.008190,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.247945,0.008190,-0.008254,0.249864,0,0);}
.m9d_c01072{transform:matrix(0.247970,0.008191,-0.008254,0.249864,0,0);-ms-transform:matrix(0.247970,0.008191,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.247970,0.008191,-0.008254,0.249864,0,0);}
.m46_c01072{transform:matrix(0.248105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248105,0.000000,0.000000,0.250000,0,0);}
.m78_c01072{transform:matrix(0.248764,0.008217,-0.008254,0.249864,0,0);-ms-transform:matrix(0.248764,0.008217,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.248764,0.008217,-0.008254,0.249864,0,0);}
.m35_c01072{transform:matrix(0.250155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250155,0.000000,0.000000,0.250000,0,0);}
.m5e_c01072{transform:matrix(0.253265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253265,0.000000,0.000000,0.250000,0,0);}
.m120_c01072{transform:matrix(0.253627,0.009647,-0.009503,0.249819,0,0);-ms-transform:matrix(0.253627,0.009647,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.253627,0.009647,-0.009503,0.249819,0,0);}
.m18_c01072{transform:matrix(0.255055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255055,0.000000,0.000000,0.250000,0,0);}
.m7f_c01072{transform:matrix(0.255131,0.008428,-0.008254,0.249864,0,0);-ms-transform:matrix(0.255131,0.008428,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.255131,0.008428,-0.008254,0.249864,0,0);}
.m11a_c01072{transform:matrix(0.255230,0.009708,-0.009503,0.249819,0,0);-ms-transform:matrix(0.255230,0.009708,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.255230,0.009708,-0.009503,0.249819,0,0);}
.m4a_c01072{transform:matrix(0.255265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255265,0.000000,0.000000,0.250000,0,0);}
.m54_c01072{transform:matrix(0.255895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255895,0.000000,0.000000,0.250000,0,0);}
.m70_c01072{transform:matrix(0.256110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256110,0.000000,0.000000,0.250000,0,0);}
.m91_c01072{transform:matrix(0.256860,0.008485,-0.008254,0.249864,0,0);-ms-transform:matrix(0.256860,0.008485,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.256860,0.008485,-0.008254,0.249864,0,0);}
.m121_c01072{transform:matrix(0.257849,0.009808,-0.009503,0.249819,0,0);-ms-transform:matrix(0.257849,0.009808,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.257849,0.009808,-0.009503,0.249819,0,0);}
.m93_c01072{transform:matrix(0.258019,0.008523,-0.008254,0.249864,0,0);-ms-transform:matrix(0.258019,0.008523,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.258019,0.008523,-0.008254,0.249864,0,0);}
.m97_c01072{transform:matrix(0.258604,0.008542,-0.008254,0.249864,0,0);-ms-transform:matrix(0.258604,0.008542,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.258604,0.008542,-0.008254,0.249864,0,0);}
.m4d_c01072{transform:matrix(0.259175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259175,0.000000,0.000000,0.250000,0,0);}
.m8c_c01072{transform:matrix(0.259473,0.008571,-0.008254,0.249864,0,0);-ms-transform:matrix(0.259473,0.008571,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.259473,0.008571,-0.008254,0.249864,0,0);}
.m67_c01072{transform:matrix(0.260910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260910,0.000000,0.000000,0.250000,0,0);}
.m75_c01072{transform:matrix(0.260923,0.008619,-0.008254,0.249864,0,0);-ms-transform:matrix(0.260923,0.008619,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.260923,0.008619,-0.008254,0.249864,0,0);}
.m95_c01072{transform:matrix(0.261692,0.008644,-0.008254,0.249864,0,0);-ms-transform:matrix(0.261692,0.008644,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.261692,0.008644,-0.008254,0.249864,0,0);}
.m6a_c01072{transform:matrix(0.261965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261965,0.000000,0.000000,0.250000,0,0);}
.m123_c01072{transform:matrix(0.262365,0.009980,-0.009503,0.249819,0,0);-ms-transform:matrix(0.262365,0.009980,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.262365,0.009980,-0.009503,0.249819,0,0);}
.m9f_c01072{transform:matrix(0.262372,0.008667,-0.008254,0.249864,0,0);-ms-transform:matrix(0.262372,0.008667,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.262372,0.008667,-0.008254,0.249864,0,0);}
.m73_c01072{transform:matrix(0.262797,0.008681,-0.008254,0.249864,0,0);-ms-transform:matrix(0.262797,0.008681,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.262797,0.008681,-0.008254,0.249864,0,0);}
.m26_c01072{transform:matrix(0.263235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263235,0.000000,0.000000,0.250000,0,0);}
.m3d_c01072{transform:matrix(0.265450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265450,0.000000,0.000000,0.250000,0,0);}
.m129_c01072{transform:matrix(0.265963,0.010117,-0.009503,0.249819,0,0);-ms-transform:matrix(0.265963,0.010117,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.265963,0.010117,-0.009503,0.249819,0,0);}
.m3b_c01072{transform:matrix(0.266190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266190,0.000000,0.000000,0.250000,0,0);}
.m8a_c01072{transform:matrix(0.266680,0.008809,-0.008254,0.249864,0,0);-ms-transform:matrix(0.266680,0.008809,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.266680,0.008809,-0.008254,0.249864,0,0);}
.m3e_c01072{transform:matrix(0.267510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267510,0.000000,0.000000,0.250000,0,0);}
.m1e_c01072{transform:matrix(0.267790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267790,0.000000,0.000000,0.250000,0,0);}
.m1a_c01072{transform:matrix(0.268380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268380,0.000000,0.000000,0.250000,0,0);}
.m12a_c01072{transform:matrix(0.269205,0.010240,-0.009503,0.249819,0,0);-ms-transform:matrix(0.269205,0.010240,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.269205,0.010240,-0.009503,0.249819,0,0);}
.m86_c01072{transform:matrix(0.269278,0.008895,-0.008254,0.249864,0,0);-ms-transform:matrix(0.269278,0.008895,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.269278,0.008895,-0.008254,0.249864,0,0);}
.m62_c01072{transform:matrix(0.269640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269640,0.000000,0.000000,0.250000,0,0);}
.m96_c01072{transform:matrix(0.270547,0.008937,-0.008254,0.249864,0,0);-ms-transform:matrix(0.270547,0.008937,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.270547,0.008937,-0.008254,0.249864,0,0);}
.m64_c01072{transform:matrix(0.270825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270825,0.000000,0.000000,0.250000,0,0);}
.m37_c01072{transform:matrix(0.270845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270845,0.000000,0.000000,0.250000,0,0);}
.m7e_c01072{transform:matrix(0.270892,0.008948,-0.008254,0.249864,0,0);-ms-transform:matrix(0.270892,0.008948,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.270892,0.008948,-0.008254,0.249864,0,0);}
.m17_c01072{transform:matrix(0.271060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271060,0.000000,0.000000,0.250000,0,0);}
.m79_c01072{transform:matrix(0.271927,0.008983,-0.008254,0.249864,0,0);-ms-transform:matrix(0.271927,0.008983,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.271927,0.008983,-0.008254,0.249864,0,0);}
.m63_c01072{transform:matrix(0.272295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272295,0.000000,0.000000,0.250000,0,0);}
.m85_c01072{transform:matrix(0.272991,0.009018,-0.008254,0.249864,0,0);-ms-transform:matrix(0.272991,0.009018,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.272991,0.009018,-0.008254,0.249864,0,0);}
.m19_c01072{transform:matrix(0.273035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273035,0.000000,0.000000,0.250000,0,0);}
.m125_c01072{transform:matrix(0.273083,0.010388,-0.009503,0.249819,0,0);-ms-transform:matrix(0.273083,0.010388,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.273083,0.010388,-0.009503,0.249819,0,0);}
.m127_c01072{transform:matrix(0.273547,0.010405,-0.009503,0.249819,0,0);-ms-transform:matrix(0.273547,0.010405,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.273547,0.010405,-0.009503,0.249819,0,0);}
.m8e_c01072{transform:matrix(0.273831,0.009045,-0.008254,0.249864,0,0);-ms-transform:matrix(0.273831,0.009045,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.273831,0.009045,-0.008254,0.249864,0,0);}
.m28_c01072{transform:matrix(0.274780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274780,0.000000,0.000000,0.250000,0,0);}
.m40_c01072{transform:matrix(0.275035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275035,0.000000,0.000000,0.250000,0,0);}
.m1d_c01072{transform:matrix(0.275550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275550,0.000000,0.000000,0.250000,0,0);}
.me7_c01072{transform:matrix(0.276684,0.009140,-0.008254,0.249864,0,0);-ms-transform:matrix(0.276684,0.009140,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.276684,0.009140,-0.008254,0.249864,0,0);}
.ma_c01072{transform:matrix(0.276725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276725,0.000000,0.000000,0.250000,0,0);}
.m84_c01072{transform:matrix(0.278698,0.009206,-0.008254,0.249864,0,0);-ms-transform:matrix(0.278698,0.009206,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.278698,0.009206,-0.008254,0.249864,0,0);}
.m60_c01072{transform:matrix(0.280290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280290,0.000000,0.000000,0.250000,0,0);}
.m68_c01072{transform:matrix(0.280450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280450,0.000000,0.000000,0.250000,0,0);}
.m39_c01072{transform:matrix(0.280640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280640,0.000000,0.000000,0.250000,0,0);}
.m23_c01072{transform:matrix(0.280825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280825,0.000000,0.000000,0.250000,0,0);}
.m87_c01072{transform:matrix(0.280927,0.009280,-0.008254,0.249864,0,0);-ms-transform:matrix(0.280927,0.009280,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.280927,0.009280,-0.008254,0.249864,0,0);}
.m12c_c01072{transform:matrix(0.281167,0.010695,-0.009503,0.249819,0,0);-ms-transform:matrix(0.281167,0.010695,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.281167,0.010695,-0.009503,0.249819,0,0);}
.m27_c01072{transform:matrix(0.281195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281195,0.000000,0.000000,0.250000,0,0);}
.m8d_c01072{transform:matrix(0.282646,0.009337,-0.008254,0.249864,0,0);-ms-transform:matrix(0.282646,0.009337,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.282646,0.009337,-0.008254,0.249864,0,0);}
.m45_c01072{transform:matrix(0.283125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283125,0.000000,0.000000,0.250000,0,0);}
.m12_c01072{transform:matrix(0.283265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283265,0.000000,0.000000,0.250000,0,0);}
.m81_c01072{transform:matrix(0.283265,0.009357,-0.008254,0.249864,0,0);-ms-transform:matrix(0.283265,0.009357,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.283265,0.009357,-0.008254,0.249864,0,0);}
.m47_c01072{transform:matrix(0.283445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283445,0.000000,0.000000,0.250000,0,0);}
.m1f_c01072{transform:matrix(0.283585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283585,0.000000,0.000000,0.250000,0,0);}
.mc8_c01072{transform:matrix(0.284450,0.009396,-0.008254,0.249864,0,0);-ms-transform:matrix(0.284450,0.009396,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.284450,0.009396,-0.008254,0.249864,0,0);}
.m9c_c01072{transform:matrix(0.286004,0.009448,-0.008254,0.249864,0,0);-ms-transform:matrix(0.286004,0.009448,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.286004,0.009448,-0.008254,0.249864,0,0);}
.m36_c01072{transform:matrix(0.286440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286440,0.000000,0.000000,0.250000,0,0);}
.m42_c01072{transform:matrix(0.286965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286965,0.000000,0.000000,0.250000,0,0);}
.m13_c01072{transform:matrix(0.287675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287675,0.000000,0.000000,0.250000,0,0);}
.m5d_c01072{transform:matrix(0.287990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287990,0.000000,0.000000,0.250000,0,0);}
.m7a_c01072{transform:matrix(0.288438,0.009528,-0.008254,0.249864,0,0);-ms-transform:matrix(0.288438,0.009528,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.288438,0.009528,-0.008254,0.249864,0,0);}
.m21_c01072{transform:matrix(0.293090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293090,0.000000,0.000000,0.250000,0,0);}
.m43_c01072{transform:matrix(0.293300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293300,0.000000,0.000000,0.250000,0,0);}
.m25_c01072{transform:matrix(0.293460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293460,0.000000,0.000000,0.250000,0,0);}
.m9b_c01072{transform:matrix(0.294080,0.009714,-0.008254,0.249864,0,0);-ms-transform:matrix(0.294080,0.009714,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.294080,0.009714,-0.008254,0.249864,0,0);}
.ma0_c01072{transform:matrix(0.295689,0.009767,-0.008254,0.249864,0,0);-ms-transform:matrix(0.295689,0.009767,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.295689,0.009767,-0.008254,0.249864,0,0);}
.m44_c01072{transform:matrix(0.296840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296840,0.000000,0.000000,0.250000,0,0);}
.m41_c01072{transform:matrix(0.298215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298215,0.000000,0.000000,0.250000,0,0);}
.m74_c01072{transform:matrix(0.298497,0.009860,-0.008254,0.249864,0,0);-ms-transform:matrix(0.298497,0.009860,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.298497,0.009860,-0.008254,0.249864,0,0);}
.m98_c01072{transform:matrix(0.298942,0.009875,-0.008254,0.249864,0,0);-ms-transform:matrix(0.298942,0.009875,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.298942,0.009875,-0.008254,0.249864,0,0);}
.m99_c01072{transform:matrix(0.301765,0.009968,-0.008254,0.249864,0,0);-ms-transform:matrix(0.301765,0.009968,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.301765,0.009968,-0.008254,0.249864,0,0);}
.m77_c01072{transform:matrix(0.304769,0.010067,-0.008254,0.249864,0,0);-ms-transform:matrix(0.304769,0.010067,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.304769,0.010067,-0.008254,0.249864,0,0);}
.m48_c01072{transform:matrix(0.306835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306835,0.000000,0.000000,0.250000,0,0);}
.mc2_c01072{transform:matrix(0.306838,0.010136,-0.008254,0.249864,0,0);-ms-transform:matrix(0.306838,0.010136,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.306838,0.010136,-0.008254,0.249864,0,0);}
.m9e_c01072{transform:matrix(0.324338,0.010714,-0.008254,0.249864,0,0);-ms-transform:matrix(0.324338,0.010714,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.324338,0.010714,-0.008254,0.249864,0,0);}
.m3f_c01072{transform:matrix(0.326190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326190,0.000000,0.000000,0.250000,0,0);}
.mc3_c01072{transform:matrix(0.341354,0.011276,-0.008254,0.249864,0,0);-ms-transform:matrix(0.341354,0.011276,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.341354,0.011276,-0.008254,0.249864,0,0);}
.m71_c01072{transform:matrix(0.346250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346250,0.000000,0.000000,0.250000,0,0);}
.m7c_c01072{transform:matrix(0.346506,0.011446,-0.008254,0.249864,0,0);-ms-transform:matrix(0.346506,0.011446,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.346506,0.011446,-0.008254,0.249864,0,0);}
.m145_c01072{transform:matrix(0.392101,0.010979,-0.006997,0.249902,0,0);-ms-transform:matrix(0.392101,0.010979,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.392101,0.010979,-0.006997,0.249902,0,0);}
.m147_c01072{transform:matrix(0.394505,0.011046,-0.006997,0.249902,0,0);-ms-transform:matrix(0.394505,0.011046,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.394505,0.011046,-0.006997,0.249902,0,0);}
.me6_c01072{transform:matrix(0.399622,0.013201,-0.008254,0.249864,0,0);-ms-transform:matrix(0.399622,0.013201,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.399622,0.013201,-0.008254,0.249864,0,0);}
.m144_c01072{transform:matrix(0.405416,0.011352,-0.006997,0.249902,0,0);-ms-transform:matrix(0.405416,0.011352,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.405416,0.011352,-0.006997,0.249902,0,0);}
.m148_c01072{transform:matrix(0.434875,0.012176,-0.006997,0.249902,0,0);-ms-transform:matrix(0.434875,0.012176,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.434875,0.012176,-0.006997,0.249902,0,0);}
.m146_c01072{transform:matrix(0.449824,0.012595,-0.006997,0.249902,0,0);-ms-transform:matrix(0.449824,0.012595,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.449824,0.012595,-0.006997,0.249902,0,0);}
.m143_c01072{transform:matrix(0.456731,0.012788,-0.006997,0.249902,0,0);-ms-transform:matrix(0.456731,0.012788,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.456731,0.012788,-0.006997,0.249902,0,0);}
.m142_c01072{transform:matrix(0.474654,0.013290,-0.006997,0.249902,0,0);-ms-transform:matrix(0.474654,0.013290,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.474654,0.013290,-0.006997,0.249902,0,0);}
.m1_c01072{transform:matrix(0.487080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487080,0.000000,0.000000,0.250000,0,0);}
.m1c_c01072{transform:matrix(0.559905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559905,0.000000,0.000000,0.250000,0,0);}
.v0_c01072{vertical-align:0.000000px;}
.ls0_c01072{letter-spacing:0.000000px;}
.sc__c01072{text-shadow:none;}
.sc0_c01072{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__c01072{-webkit-text-stroke:0px transparent;}
.sc0_c01072{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01072{word-spacing:0.000000px;}
.fc0_c01072{color:transparent;}
.fs12_c01072{font-size:42.016461px;}
.fs0_c01072{font-size:60.000000px;}
.fs5_c01072{font-size:65.969963px;}
.fs3_c01072{font-size:66.000000px;}
.fs6_c01072{font-size:71.967233px;}
.fsf_c01072{font-size:71.980017px;}
.fs2_c01072{font-size:72.000000px;}
.fse_c01072{font-size:77.978352px;}
.fs4_c01072{font-size:78.000000px;}
.fs7_c01072{font-size:83.961771px;}
.fsd_c01072{font-size:83.976687px;}
.fs1_c01072{font-size:84.000000px;}
.fs8_c01072{font-size:89.959041px;}
.fs10_c01072{font-size:90.040491px;}
.fs9_c01072{font-size:95.956310px;}
.fsb_c01072{font-size:95.973356px;}
.fsa_c01072{font-size:101.953579px;}
.fsc_c01072{font-size:101.971691px;}
.fs11_c01072{font-size:102.039976px;}
.y0_c01072{bottom:0.000000px;}
.y160_c01072{bottom:71.381716px;}
.y15f_c01072{bottom:71.745510px;}
.y15e_c01072{bottom:72.606528px;}
.y15d_c01072{bottom:72.966960px;}
.y15c_c01072{bottom:75.413107px;}
.y15b_c01072{bottom:76.042249px;}
.y15a_c01072{bottom:77.014696px;}
.y159_c01072{bottom:77.611026px;}
.y158_c01072{bottom:78.577042px;}
.y157_c01072{bottom:79.549071px;}
.y156_c01072{bottom:82.456413px;}
.y155_c01072{bottom:83.770320px;}
.y154_c01072{bottom:88.383102px;}
.y153_c01072{bottom:90.098802px;}
.y152_c01072{bottom:91.329888px;}
.y151_c01072{bottom:95.558262px;}
.y150_c01072{bottom:98.450670px;}
.y14f_c01072{bottom:100.998000px;}
.y14e_c01072{bottom:146.789628px;}
.y14d_c01072{bottom:148.007616px;}
.y14c_c01072{bottom:148.839108px;}
.y14b_c01072{bottom:150.057096px;}
.y14a_c01072{bottom:151.686720px;}
.y149_c01072{bottom:154.504812px;}
.y148_c01072{bottom:159.038754px;}
.y147_c01072{bottom:164.834406px;}
.y146_c01072{bottom:165.758700px;}
.y145_c01072{bottom:167.347140px;}
.y144_c01072{bottom:169.178256px;}
.y143_c01072{bottom:170.100618px;}
.y142_c01072{bottom:170.720916px;}
.y141_c01072{bottom:171.954624px;}
.y140_c01072{bottom:173.210592px;}
.y13f_c01072{bottom:175.327602px;}
.y13e_c01072{bottom:178.753500px;}
.y13d_c01072{bottom:205.204935px;}
.y13c_c01072{bottom:206.231475px;}
.y13b_c01072{bottom:209.225820px;}
.y13a_c01072{bottom:210.879435px;}
.y139_c01072{bottom:212.917215px;}
.y138_c01072{bottom:215.565195px;}
.y137_c01072{bottom:217.227135px;}
.y136_c01072{bottom:219.536805px;}
.y135_c01072{bottom:220.484325px;}
.y134_c01072{bottom:222.792285px;}
.y133_c01072{bottom:224.112000px;}
.y132_c01072{bottom:240.854292px;}
.y131_c01072{bottom:241.918909px;}
.y130_c01072{bottom:244.094232px;}
.y12f_c01072{bottom:246.222213px;}
.y12e_c01072{bottom:247.274323px;}
.y12d_c01072{bottom:250.434685px;}
.y12c_c01072{bottom:251.497707px;}
.y12b_c01072{bottom:254.376496px;}
.y12a_c01072{bottom:256.079635px;}
.y129_c01072{bottom:258.879474px;}
.y128_c01072{bottom:260.331698px;}
.y127_c01072{bottom:276.074298px;}
.y126_c01072{bottom:278.849474px;}
.y125_c01072{bottom:279.844002px;}
.y124_c01072{bottom:281.251995px;}
.y123_c01072{bottom:283.316208px;}
.y122_c01072{bottom:285.326118px;}
.y121_c01072{bottom:286.400362px;}
.y120_c01072{bottom:289.458859px;}
.y11f_c01072{bottom:291.519880px;}
.y11e_c01072{bottom:292.555065px;}
.y11d_c01072{bottom:294.616713px;}
.y11c_c01072{bottom:295.964206px;}
.y11b_c01072{bottom:310.973344px;}
.y11a_c01072{bottom:311.691769px;}
.y119_c01072{bottom:315.041646px;}
.y118_c01072{bottom:316.675725px;}
.y117_c01072{bottom:317.664922px;}
.y116_c01072{bottom:319.967244px;}
.y115_c01072{bottom:320.989402px;}
.y114_c01072{bottom:322.300035px;}
.y113_c01072{bottom:324.613895px;}
.y112_c01072{bottom:325.636338px;}
.y111_c01072{bottom:326.608012px;}
.y110_c01072{bottom:329.574676px;}
.y10f_c01072{bottom:331.595160px;}
.y10e_c01072{bottom:349.324245px;}
.y10d_c01072{bottom:350.266817px;}
.y10c_c01072{bottom:351.411741px;}
.y10b_c01072{bottom:354.174333px;}
.y10a_c01072{bottom:355.120821px;}
.y109_c01072{bottom:356.610882px;}
.y108_c01072{bottom:357.445299px;}
.y107_c01072{bottom:359.732070px;}
.y106_c01072{bottom:360.611058px;}
.y105_c01072{bottom:361.454431px;}
.y104_c01072{bottom:364.917483px;}
.y103_c01072{bottom:366.061894px;}
.y102_c01072{bottom:367.492476px;}
.y101_c01072{bottom:380.243202px;}
.y100_c01072{bottom:382.773888px;}
.yff_c01072{bottom:384.083520px;}
.yfe_c01072{bottom:387.857547px;}
.yfd_c01072{bottom:390.746307px;}
.yfc_c01072{bottom:393.308286px;}
.yfb_c01072{bottom:395.811498px;}
.yfa_c01072{bottom:397.117482px;}
.yf9_c01072{bottom:399.667548px;}
.yf8_c01072{bottom:402.588000px;}
.yf7_c01072{bottom:426.483378px;}
.yf6_c01072{bottom:428.030451px;}
.yf5_c01072{bottom:428.507073px;}
.yf4_c01072{bottom:429.323944px;}
.yf3_c01072{bottom:430.712334px;}
.yf2_c01072{bottom:431.706231px;}
.yf1_c01072{bottom:432.503734px;}
.yf0_c01072{bottom:433.895251px;}
.yef_c01072{bottom:434.371144px;}
.yee_c01072{bottom:435.690288px;}
.yed_c01072{bottom:458.948358px;}
.yec_c01072{bottom:460.466554px;}
.yeb_c01072{bottom:461.041582px;}
.yea_c01072{bottom:463.690696px;}
.ye9_c01072{bottom:465.311650px;}
.ye8_c01072{bottom:466.619778px;}
.ye7_c01072{bottom:469.534360px;}
.ye6_c01072{bottom:470.312703px;}
.ye5_c01072{bottom:471.928783px;}
.ye4_c01072{bottom:474.314769px;}
.ye3_c01072{bottom:475.093543px;}
.ye2_c01072{bottom:491.221557px;}
.ye1_c01072{bottom:492.215233px;}
.ye0_c01072{bottom:494.648388px;}
.ydf_c01072{bottom:498.779334px;}
.yde_c01072{bottom:502.198096px;}
.ydd_c01072{bottom:503.234527px;}
.ydc_c01072{bottom:504.959593px;}
.ydb_c01072{bottom:507.316806px;}
.yda_c01072{bottom:510.075715px;}
.yd9_c01072{bottom:511.796376px;}
.yd8_c01072{bottom:526.884147px;}
.yd7_c01072{bottom:529.407684px;}
.yd6_c01072{bottom:530.455995px;}
.yd5_c01072{bottom:534.346641px;}
.yd4_c01072{bottom:537.207277px;}
.yd3_c01072{bottom:538.224367px;}
.yd2_c01072{bottom:539.331223px;}
.yd1_c01072{bottom:540.722970px;}
.yd0_c01072{bottom:542.134813px;}
.ycf_c01072{bottom:544.252968px;}
.yce_c01072{bottom:545.297863px;}
.ycd_c01072{bottom:547.423789px;}
.ycc_c01072{bottom:566.131806px;}
.ycb_c01072{bottom:566.966844px;}
.yca_c01072{bottom:567.826713px;}
.yc9_c01072{bottom:568.655640px;}
.yc8_c01072{bottom:570.020980px;}
.yc7_c01072{bottom:570.614503px;}
.yc6_c01072{bottom:571.950126px;}
.yc5_c01072{bottom:573.657466px;}
.yc4_c01072{bottom:574.467723px;}
.yc3_c01072{bottom:576.116136px;}
.yc2_c01072{bottom:576.953932px;}
.yc1_c01072{bottom:577.777513px;}
.yc0_c01072{bottom:579.689154px;}
.ybf_c01072{bottom:580.262103px;}
.ybe_c01072{bottom:582.208780px;}
.ybd_c01072{bottom:583.581978px;}
.ybc_c01072{bottom:600.299366px;}
.ybb_c01072{bottom:603.521680px;}
.yba_c01072{bottom:605.810448px;}
.yb9_c01072{bottom:606.435210px;}
.yb8_c01072{bottom:608.053581px;}
.yb7_c01072{bottom:610.300179px;}
.yb6_c01072{bottom:612.534069px;}
.yb5_c01072{bottom:613.466082px;}
.yb4_c01072{bottom:615.721923px;}
.yb3_c01072{bottom:616.652316px;}
.yb2_c01072{bottom:619.207452px;}
.yb1_c01072{bottom:633.654436px;}
.yb0_c01072{bottom:634.445037px;}
.yaf_c01072{bottom:636.154078px;}
.yae_c01072{bottom:639.597528px;}
.yad_c01072{bottom:640.654686px;}
.yac_c01072{bottom:641.682207px;}
.yab_c01072{bottom:644.364940px;}
.yaa_c01072{bottom:645.420168px;}
.ya9_c01072{bottom:647.864694px;}
.ya8_c01072{bottom:650.873493px;}
.ya7_c01072{bottom:651.928176px;}
.ya6_c01072{bottom:654.673239px;}
.ya5_c01072{bottom:655.644208px;}
.ya4_c01072{bottom:671.334309px;}
.ya3_c01072{bottom:672.340293px;}
.ya2_c01072{bottom:675.421263px;}
.ya1_c01072{bottom:676.197355px;}
.ya0_c01072{bottom:677.826850px;}
.y9f_c01072{bottom:680.349307px;}
.y9e_c01072{bottom:681.328489px;}
.y9d_c01072{bottom:683.925250px;}
.y9c_c01072{bottom:687.077307px;}
.y9b_c01072{bottom:688.056736px;}
.y9a_c01072{bottom:689.645893px;}
.y99_c01072{bottom:705.318705px;}
.y98_c01072{bottom:706.323442px;}
.y97_c01072{bottom:708.322288px;}
.y96_c01072{bottom:709.258932px;}
.y95_c01072{bottom:710.346316px;}
.y94_c01072{bottom:711.340969px;}
.y93_c01072{bottom:712.645803px;}
.y92_c01072{bottom:713.324781px;}
.y91_c01072{bottom:717.315196px;}
.y90_c01072{bottom:719.294701px;}
.y8f_c01072{bottom:720.283117px;}
.y8e_c01072{bottom:722.907225px;}
.y8d_c01072{bottom:724.567689px;}
.y8c_c01072{bottom:725.536318px;}
.y8b_c01072{bottom:746.972788px;}
.y8a_c01072{bottom:747.433683px;}
.y89_c01072{bottom:749.772671px;}
.y88_c01072{bottom:752.101132px;}
.y87_c01072{bottom:752.812416px;}
.y86_c01072{bottom:753.493207px;}
.y85_c01072{bottom:756.302157px;}
.y84_c01072{bottom:757.205393px;}
.y83_c01072{bottom:758.595388px;}
.y82_c01072{bottom:760.229599px;}
.y81_c01072{bottom:761.153827px;}
.y80_c01072{bottom:779.083434px;}
.y7f_c01072{bottom:780.185304px;}
.y7e_c01072{bottom:782.721436px;}
.y7d_c01072{bottom:784.228464px;}
.y7c_c01072{bottom:785.298258px;}
.y7b_c01072{bottom:788.950863px;}
.y7a_c01072{bottom:790.027488px;}
.y79_c01072{bottom:791.525902px;}
.y78_c01072{bottom:794.799684px;}
.y77_c01072{bottom:796.243500px;}
.y76_c01072{bottom:818.854500px;}
.y75_c01072{bottom:821.230500px;}
.y74_c01072{bottom:824.094000px;}
.y73_c01072{bottom:826.123500px;}
.y72_c01072{bottom:827.247000px;}
.y71_c01072{bottom:828.406500px;}
.y70_c01072{bottom:829.813500px;}
.y6f_c01072{bottom:830.691000px;}
.y6e_c01072{bottom:832.419000px;}
.y6d_c01072{bottom:850.141500px;}
.y6c_c01072{bottom:851.008500px;}
.y6b_c01072{bottom:854.296500px;}
.y6a_c01072{bottom:856.411500px;}
.y69_c01072{bottom:858.204000px;}
.y68_c01072{bottom:858.828000px;}
.y67_c01072{bottom:860.887500px;}
.y66_c01072{bottom:863.277000px;}
.y65_c01072{bottom:865.069500px;}
.y64_c01072{bottom:865.921500px;}
.y63_c01072{bottom:868.063500px;}
.y62_c01072{bottom:887.053500px;}
.y61_c01072{bottom:887.851500px;}
.y60_c01072{bottom:890.517000px;}
.y5f_c01072{bottom:891.961500px;}
.y5e_c01072{bottom:894.570000px;}
.y5d_c01072{bottom:897.459000px;}
.y5c_c01072{bottom:898.870500px;}
.y5b_c01072{bottom:899.734500px;}
.y5a_c01072{bottom:901.749000px;}
.y59_c01072{bottom:902.583000px;}
.y58_c01072{bottom:903.424500px;}
.y57_c01072{bottom:922.873500px;}
.y56_c01072{bottom:923.395500px;}
.y55_c01072{bottom:925.533000px;}
.y54_c01072{bottom:926.608500px;}
.y53_c01072{bottom:927.412500px;}
.y52_c01072{bottom:928.747500px;}
.y51_c01072{bottom:930.342000px;}
.y50_c01072{bottom:931.126500px;}
.y4f_c01072{bottom:933.796500px;}
.y4e_c01072{bottom:934.540500px;}
.y4d_c01072{bottom:935.643000px;}
.y4c_c01072{bottom:938.028000px;}
.y4b_c01072{bottom:939.064500px;}
.y4a_c01072{bottom:959.731500px;}
.y49_c01072{bottom:961.471500px;}
.y48_c01072{bottom:962.335500px;}
.y47_c01072{bottom:964.069500px;}
.y46_c01072{bottom:964.635000px;}
.y45_c01072{bottom:965.803500px;}
.y44_c01072{bottom:967.524000px;}
.y43_c01072{bottom:968.367000px;}
.y42_c01072{bottom:971.238000px;}
.y41_c01072{bottom:972.100500px;}
.y40_c01072{bottom:973.258500px;}
.y3f_c01072{bottom:974.107500px;}
.y3e_c01072{bottom:975.244500px;}
.y3d_c01072{bottom:993.462000px;}
.y3c_c01072{bottom:994.411500px;}
.y3b_c01072{bottom:996.286500px;}
.y3a_c01072{bottom:996.915000px;}
.y39_c01072{bottom:1000.621500px;}
.y38_c01072{bottom:1001.854500px;}
.y37_c01072{bottom:1004.341500px;}
.y36_c01072{bottom:1009.881000px;}
.y35_c01072{bottom:1010.536500px;}
.y34_c01072{bottom:1011.694500px;}
.y33_c01072{bottom:1029.271500px;}
.y32_c01072{bottom:1032.475500px;}
.y31_c01072{bottom:1033.339500px;}
.y30_c01072{bottom:1035.376500px;}
.y2f_c01072{bottom:1037.643000px;}
.y2e_c01072{bottom:1039.681500px;}
.y2d_c01072{bottom:1040.274000px;}
.y2c_c01072{bottom:1041.694500px;}
.y2b_c01072{bottom:1042.545000px;}
.y2a_c01072{bottom:1043.949000px;}
.y29_c01072{bottom:1046.257500px;}
.y28_c01072{bottom:1064.668500px;}
.y27_c01072{bottom:1066.134000px;}
.y26_c01072{bottom:1067.293500px;}
.y25_c01072{bottom:1069.288500px;}
.y24_c01072{bottom:1070.160000px;}
.y23_c01072{bottom:1071.894000px;}
.y22_c01072{bottom:1072.750500px;}
.y21_c01072{bottom:1075.032000px;}
.y20_c01072{bottom:1075.903500px;}
.y1f_c01072{bottom:1077.361500px;}
.y1e_c01072{bottom:1078.506000px;}
.y1d_c01072{bottom:1079.095500px;}
.y1c_c01072{bottom:1081.641000px;}
.y1b_c01072{bottom:1100.572500px;}
.y1a_c01072{bottom:1102.329000px;}
.y19_c01072{bottom:1103.499000px;}
.y18_c01072{bottom:1104.081000px;}
.y17_c01072{bottom:1106.089500px;}
.y16_c01072{bottom:1107.222000px;}
.y15_c01072{bottom:1108.099500px;}
.y14_c01072{bottom:1108.672500px;}
.y13_c01072{bottom:1112.992500px;}
.y12_c01072{bottom:1115.020500px;}
.y11_c01072{bottom:1115.829000px;}
.y10_c01072{bottom:1116.918000px;}
.yf_c01072{bottom:1118.079000px;}
.ye_c01072{bottom:1137.027000px;}
.yd_c01072{bottom:1138.291500px;}
.yc_c01072{bottom:1138.954500px;}
.yb_c01072{bottom:1141.420500px;}
.ya_c01072{bottom:1142.058000px;}
.y9_c01072{bottom:1144.852500px;}
.y8_c01072{bottom:1146.387000px;}
.y7_c01072{bottom:1148.580000px;}
.y6_c01072{bottom:1150.372500px;}
.y5_c01072{bottom:1151.035500px;}
.y4_c01072{bottom:1153.185000px;}
.y3_c01072{bottom:1154.083500px;}
.y2_c01072{bottom:1155.609000px;}
.y1_c01072{bottom:1220.145000px;}
.h14_c01072{height:42.016461px;}
.h2_c01072{height:60.000000px;}
.h7_c01072{height:65.969963px;}
.h5_c01072{height:66.000000px;}
.h8_c01072{height:71.967233px;}
.h11_c01072{height:71.980017px;}
.h4_c01072{height:72.000000px;}
.h10_c01072{height:77.978352px;}
.h6_c01072{height:78.000000px;}
.h9_c01072{height:83.961771px;}
.hf_c01072{height:83.976687px;}
.h3_c01072{height:84.000000px;}
.ha_c01072{height:89.959041px;}
.h12_c01072{height:90.040491px;}
.hb_c01072{height:95.956310px;}
.hd_c01072{height:95.973356px;}
.hc_c01072{height:101.953579px;}
.he_c01072{height:101.971691px;}
.h13_c01072{height:102.039976px;}
.h0_c01072{height:1246.320000px;}
.h1_c01072{height:1246.500000px;}
.w0_c01072{width:900.450000px;}
.w1_c01072{width:900.750000px;}
.x0_c01072{left:0.000000px;}
.xe1_c01072{left:125.359500px;}
.xd9_c01072{left:127.227000px;}
.xc5_c01072{left:130.199370px;}
.xb2_c01072{left:132.033816px;}
.xa7_c01072{left:133.949277px;}
.x94_c01072{left:135.186471px;}
.x7f_c01072{left:137.642990px;}
.x51_c01072{left:139.507500px;}
.x36_c01072{left:143.569500px;}
.x1a_c01072{left:145.597500px;}
.x3_c01072{left:148.228500px;}
.xe6_c01072{left:160.221053px;}
.xac_c01072{left:165.760623px;}
.x85_c01072{left:169.750233px;}
.x74_c01072{left:171.607518px;}
.xcb_c01072{left:173.175044px;}
.x4a_c01072{left:175.401000px;}
.x6a_c01072{left:182.803442px;}
.x40_c01072{left:185.946000px;}
.x2d_c01072{left:187.119000px;}
.x95_c01072{left:190.017554px;}
.x10_c01072{left:192.877500px;}
.xc6_c01072{left:197.480006px;}
.x9f_c01072{left:201.237395px;}
.x4_c01072{left:202.695000px;}
.xb3_c01072{left:205.210337px;}
.x4b_c01072{left:207.502500px;}
.x2e_c01072{left:210.529500px;}
.x52_c01072{left:218.836500px;}
.x37_c01072{left:219.942000px;}
.x8d_c01072{left:224.836362px;}
.x75_c01072{left:226.915155px;}
.xbd_c01072{left:230.288886px;}
.xb4_c01072{left:231.605996px;}
.x5_c01072{left:234.784500px;}
.x5c_c01072{left:240.259500px;}
.x1b_c01072{left:243.492000px;}
.xe7_c01072{left:247.674762px;}
.xdf_c01072{left:248.989956px;}
.x53_c01072{left:250.411500px;}
.x8e_c01072{left:256.862016px;}
.x86_c01072{left:258.209532px;}
.x6b_c01072{left:260.522465px;}
.xcf_c01072{left:261.978861px;}
.x38_c01072{left:264.490500px;}
.x11_c01072{left:265.878000px;}
.x96_c01072{left:267.795261px;}
.xcc_c01072{left:272.934216px;}
.xa8_c01072{left:278.322822px;}
.xd3_c01072{left:281.964000px;}
.x41_c01072{left:285.346500px;}
.x25_c01072{left:287.953500px;}
.x97_c01072{left:290.680398px;}
.x87_c01072{left:292.181256px;}
.x61_c01072{left:293.309748px;}
.x5d_c01072{left:294.381000px;}
.xc7_c01072{left:296.223675px;}
.x39_c01072{left:297.691500px;}
.xa0_c01072{left:299.988815px;}
.xe8_c01072{left:301.659626px;}
.xb5_c01072{left:308.789987px;}
.x1c_c01072{left:310.165500px;}
.x6_c01072{left:311.541000px;}
.x76_c01072{left:314.301353px;}
.x54_c01072{left:316.827000px;}
.x4c_c01072{left:318.190500px;}
.x26_c01072{left:320.643000px;}
.xda_c01072{left:325.188000px;}
.x6c_c01072{left:326.625008px;}
.xc8_c01072{left:328.593644px;}
.x42_c01072{left:331.258500px;}
.x7_c01072{left:335.221500px;}
.x5e_c01072{left:338.977500px;}
.x12_c01072{left:343.879500px;}
.x77_c01072{left:347.220671px;}
.xb6_c01072{left:353.050632px;}
.xa9_c01072{left:354.268805px;}
.xd4_c01072{left:358.953000px;}
.x43_c01072{left:362.265000px;}
.xbe_c01072{left:363.267926px;}
.xad_c01072{left:364.609139px;}
.x1d_c01072{left:366.252000px;}
.x6d_c01072{left:369.590544px;}
.x4d_c01072{left:372.493500px;}
.x27_c01072{left:375.258000px;}
.xe2_c01072{left:379.529076px;}
.x5f_c01072{left:382.191000px;}
.xb9_c01072{left:384.975039px;}
.xa1_c01072{left:387.495095px;}
.x88_c01072{left:389.124108px;}
.x62_c01072{left:392.416043px;}
.xbf_c01072{left:395.657781px;}
.x28_c01072{left:398.031000px;}
.x8_c01072{left:399.214500px;}
.xe0_c01072{left:402.119400px;}
.x55_c01072{left:405.315000px;}
.x2f_c01072{left:408.390000px;}
.xaa_c01072{left:409.851833px;}
.xe3_c01072{left:411.893679px;}
.x78_c01072{left:413.140226px;}
.xd5_c01072{left:414.351000px;}
.xba_c01072{left:419.308671px;}
.xa2_c01072{left:422.047148px;}
.x80_c01072{left:424.174577px;}
.x1_c01072{left:429.300000px;}
.x98_c01072{left:433.450242px;}
.xdb_c01072{left:436.258500px;}
.x63_c01072{left:437.777136px;}
.x3a_c01072{left:440.538000px;}
.x8f_c01072{left:443.608758px;}
.xe9_c01072{left:446.654790px;}
.x2_c01072{left:451.710000px;}
.xa3_c01072{left:453.790913px;}
.x81_c01072{left:457.904273px;}
.x60_c01072{left:460.239000px;}
.x89_c01072{left:467.894961px;}
.xdc_c01072{left:469.200000px;}
.x64_c01072{left:470.369511px;}
.x44_c01072{left:473.487000px;}
.x29_c01072{left:476.439000px;}
.x9_c01072{left:477.559500px;}
.x56_c01072{left:481.618500px;}
.x4e_c01072{left:483.616500px;}
.xae_c01072{left:485.902296px;}
.x1e_c01072{left:487.504500px;}
.x30_c01072{left:497.188500px;}
.x99_c01072{left:499.292226px;}
.x8a_c01072{left:501.883169px;}
.x6e_c01072{left:503.171798px;}
.x57_c01072{left:504.741000px;}
.x3b_c01072{left:506.737500px;}
.x13_c01072{left:510.013500px;}
.xc0_c01072{left:517.231046px;}
.x1f_c01072{left:520.429500px;}
.xb7_c01072{left:530.415441px;}
.xa_c01072{left:532.365000px;}
.x6f_c01072{left:535.543227px;}
.xcd_c01072{left:537.248489px;}
.x31_c01072{left:541.201500px;}
.xa4_c01072{left:543.114972px;}
.x82_c01072{left:544.801784px;}
.x79_c01072{left:546.020892px;}
.xc1_c01072{left:549.267084px;}
.x3c_c01072{left:551.667000px;}
.xab_c01072{left:553.396608px;}
.xb8_c01072{left:556.878582px;}
.x2a_c01072{left:563.625000px;}
.x14_c01072{left:565.818000px;}
.x70_c01072{left:569.337278px;}
.x58_c01072{left:571.156500px;}
.x3d_c01072{left:573.399000px;}
.x90_c01072{left:576.733590px;}
.xe4_c01072{left:578.266140px;}
.x65_c01072{left:580.943826px;}
.x4f_c01072{left:583.950000px;}
.x20_c01072{left:587.130000px;}
.x8b_c01072{left:588.319344px;}
.xdd_c01072{left:591.327000px;}
.xc9_c01072{left:593.982225px;}
.x91_c01072{left:598.235391px;}
.x9a_c01072{left:599.893632px;}
.x83_c01072{left:600.943019px;}
.xce_c01072{left:603.745613px;}
.xc2_c01072{left:606.508917px;}
.xaf_c01072{left:607.816031px;}
.x15_c01072{left:609.364500px;}
.x7a_c01072{left:612.070817px;}
.x66_c01072{left:613.329408px;}
.x21_c01072{left:620.653500px;}
.xde_c01072{left:624.337500px;}
.xd6_c01072{left:625.663500px;}
.xca_c01072{left:626.891768px;}
.x45_c01072{left:628.218000px;}
.xb_c01072{left:632.149500px;}
.xd0_c01072{left:636.049217px;}
.x3e_c01072{left:640.072500px;}
.x2b_c01072{left:641.949000px;}
.x7b_c01072{left:645.178946px;}
.x59_c01072{left:649.479000px;}
.x9b_c01072{left:653.269325px;}
.xc_c01072{left:654.933000px;}
.x67_c01072{left:658.951241px;}
.x46_c01072{left:661.692000px;}
.xa5_c01072{left:664.573905px;}
.xea_c01072{left:668.256953px;}
.x32_c01072{left:673.602000px;}
.x2c_c01072{left:675.165000px;}
.x92_c01072{left:677.059394px;}
.x71_c01072{left:680.016839px;}
.x7c_c01072{left:681.366789px;}
.x16_c01072{left:686.595000px;}
.xe5_c01072{left:689.240554px;}
.x33_c01072{left:696.031500px;}
.x22_c01072{left:697.369500px;}
.xeb_c01072{left:700.851261px;}
.xd1_c01072{left:703.928732px;}
.x47_c01072{left:706.525500px;}
.x17_c01072{left:709.003500px;}
.x7d_c01072{left:712.537160px;}
.xb0_c01072{left:718.075463px;}
.xd7_c01072{left:725.475000px;}
.xbb_c01072{left:727.631040px;}
.x9c_c01072{left:731.552175px;}
.x84_c01072{left:733.783086px;}
.x68_c01072{left:735.726888px;}
.xd2_c01072{left:737.164052px;}
.x3f_c01072{left:740.238000px;}
.x23_c01072{left:741.945000px;}
.xd_c01072{left:743.020500px;}
.xc3_c01072{left:748.914800px;}
.x18_c01072{left:754.006500px;}
.xd8_c01072{left:759.693000px;}
.x34_c01072{left:762.984000px;}
.x9d_c01072{left:764.638776px;}
.xe_c01072{left:766.693500px;}
.x69_c01072{left:769.083498px;}
.x5a_c01072{left:771.283500px;}
.x50_c01072{left:772.714500px;}
.xa6_c01072{left:776.109474px;}
.x7e_c01072{left:779.087633px;}
.x93_c01072{left:788.049959px;}
.x72_c01072{left:791.242101px;}
.xc4_c01072{left:792.861836px;}
.x48_c01072{left:795.574500px;}
.x35_c01072{left:796.917000px;}
.x24_c01072{left:798.301500px;}
.x5b_c01072{left:803.412000px;}
.xb1_c01072{left:805.194171px;}
.xf_c01072{left:811.869000px;}
.x73_c01072{left:813.187355px;}
.x49_c01072{left:817.350000px;}
.x19_c01072{left:821.538000px;}
.xbc_c01072{left:828.590979px;}
.x9e_c01072{left:832.342392px;}
.x8c_c01072{left:846.963986px;}
@media print{
.v0_c01072{vertical-align:0.000000pt;}
.ls0_c01072{letter-spacing:0.000000pt;}
.ws0_c01072{word-spacing:0.000000pt;}
.fs12_c01072{font-size:37.347965pt;}
.fs0_c01072{font-size:53.333333pt;}
.fs5_c01072{font-size:58.639967pt;}
.fs3_c01072{font-size:58.666667pt;}
.fs6_c01072{font-size:63.970873pt;}
.fsf_c01072{font-size:63.982238pt;}
.fs2_c01072{font-size:64.000000pt;}
.fse_c01072{font-size:69.314091pt;}
.fs4_c01072{font-size:69.333333pt;}
.fs7_c01072{font-size:74.632686pt;}
.fsd_c01072{font-size:74.645944pt;}
.fs1_c01072{font-size:74.666667pt;}
.fs8_c01072{font-size:79.963592pt;}
.fs10_c01072{font-size:80.035992pt;}
.fs9_c01072{font-size:85.294498pt;}
.fsb_c01072{font-size:85.309650pt;}
.fsa_c01072{font-size:90.625404pt;}
.fsc_c01072{font-size:90.641503pt;}
.fs11_c01072{font-size:90.702201pt;}
.y0_c01072{bottom:0.000000pt;}
.y160_c01072{bottom:63.450415pt;}
.y15f_c01072{bottom:63.773787pt;}
.y15e_c01072{bottom:64.539136pt;}
.y15d_c01072{bottom:64.859520pt;}
.y15c_c01072{bottom:67.033873pt;}
.y15b_c01072{bottom:67.593111pt;}
.y15a_c01072{bottom:68.457508pt;}
.y159_c01072{bottom:68.987579pt;}
.y158_c01072{bottom:69.846260pt;}
.y157_c01072{bottom:70.710285pt;}
.y156_c01072{bottom:73.294589pt;}
.y155_c01072{bottom:74.462507pt;}
.y154_c01072{bottom:78.562757pt;}
.y153_c01072{bottom:80.087824pt;}
.y152_c01072{bottom:81.182123pt;}
.y151_c01072{bottom:84.940677pt;}
.y150_c01072{bottom:87.511707pt;}
.y14f_c01072{bottom:89.776000pt;}
.y14e_c01072{bottom:130.479669pt;}
.y14d_c01072{bottom:131.562325pt;}
.y14c_c01072{bottom:132.301429pt;}
.y14b_c01072{bottom:133.384085pt;}
.y14a_c01072{bottom:134.832640pt;}
.y149_c01072{bottom:137.337611pt;}
.y148_c01072{bottom:141.367781pt;}
.y147_c01072{bottom:146.519472pt;}
.y146_c01072{bottom:147.341067pt;}
.y145_c01072{bottom:148.753013pt;}
.y144_c01072{bottom:150.380672pt;}
.y143_c01072{bottom:151.200549pt;}
.y142_c01072{bottom:151.751925pt;}
.y141_c01072{bottom:152.848555pt;}
.y140_c01072{bottom:153.964971pt;}
.y13f_c01072{bottom:155.846757pt;}
.y13e_c01072{bottom:158.892000pt;}
.y13d_c01072{bottom:182.404387pt;}
.y13c_c01072{bottom:183.316867pt;}
.y13b_c01072{bottom:185.978507pt;}
.y13a_c01072{bottom:187.448387pt;}
.y139_c01072{bottom:189.259747pt;}
.y138_c01072{bottom:191.613507pt;}
.y137_c01072{bottom:193.090787pt;}
.y136_c01072{bottom:195.143827pt;}
.y135_c01072{bottom:195.986067pt;}
.y134_c01072{bottom:198.037587pt;}
.y133_c01072{bottom:199.210667pt;}
.y132_c01072{bottom:214.092704pt;}
.y131_c01072{bottom:215.039031pt;}
.y130_c01072{bottom:216.972651pt;}
.y12f_c01072{bottom:218.864189pt;}
.y12e_c01072{bottom:219.799399pt;}
.y12d_c01072{bottom:222.608609pt;}
.y12c_c01072{bottom:223.553517pt;}
.y12b_c01072{bottom:226.112441pt;}
.y12a_c01072{bottom:227.626343pt;}
.y129_c01072{bottom:230.115088pt;}
.y128_c01072{bottom:231.405953pt;}
.y127_c01072{bottom:245.399376pt;}
.y126_c01072{bottom:247.866199pt;}
.y125_c01072{bottom:248.750224pt;}
.y124_c01072{bottom:250.001773pt;}
.y123_c01072{bottom:251.836629pt;}
.y122_c01072{bottom:253.623216pt;}
.y121_c01072{bottom:254.578100pt;}
.y120_c01072{bottom:257.296764pt;}
.y11f_c01072{bottom:259.128783pt;}
.y11e_c01072{bottom:260.048947pt;}
.y11d_c01072{bottom:261.881523pt;}
.y11c_c01072{bottom:263.079295pt;}
.y11b_c01072{bottom:276.420751pt;}
.y11a_c01072{bottom:277.059351pt;}
.y119_c01072{bottom:280.037019pt;}
.y118_c01072{bottom:281.489533pt;}
.y117_c01072{bottom:282.368820pt;}
.y116_c01072{bottom:284.415328pt;}
.y115_c01072{bottom:285.323913pt;}
.y114_c01072{bottom:286.488920pt;}
.y113_c01072{bottom:288.545684pt;}
.y112_c01072{bottom:289.454523pt;}
.y111_c01072{bottom:290.318233pt;}
.y110_c01072{bottom:292.955268pt;}
.y10f_c01072{bottom:294.751253pt;}
.y10e_c01072{bottom:310.510440pt;}
.y10d_c01072{bottom:311.348281pt;}
.y10c_c01072{bottom:312.365992pt;}
.y10b_c01072{bottom:314.821629pt;}
.y10a_c01072{bottom:315.662952pt;}
.y109_c01072{bottom:316.987451pt;}
.y108_c01072{bottom:317.729155pt;}
.y107_c01072{bottom:319.761840pt;}
.y106_c01072{bottom:320.543163pt;}
.y105_c01072{bottom:321.292828pt;}
.y104_c01072{bottom:324.371096pt;}
.y103_c01072{bottom:325.388351pt;}
.y102_c01072{bottom:326.659979pt;}
.y101_c01072{bottom:337.993957pt;}
.y100_c01072{bottom:340.243456pt;}
.yff_c01072{bottom:341.407573pt;}
.yfe_c01072{bottom:344.762264pt;}
.yfd_c01072{bottom:347.330051pt;}
.yfc_c01072{bottom:349.607365pt;}
.yfb_c01072{bottom:351.832443pt;}
.yfa_c01072{bottom:352.993317pt;}
.yf9_c01072{bottom:355.260043pt;}
.yf8_c01072{bottom:357.856000pt;}
.yf7_c01072{bottom:379.096336pt;}
.yf6_c01072{bottom:380.471512pt;}
.yf5_c01072{bottom:380.895176pt;}
.yf4_c01072{bottom:381.621284pt;}
.yf3_c01072{bottom:382.855408pt;}
.yf2_c01072{bottom:383.738872pt;}
.yf1_c01072{bottom:384.447764pt;}
.yf0_c01072{bottom:385.684668pt;}
.yef_c01072{bottom:386.107684pt;}
.yee_c01072{bottom:387.280256pt;}
.yed_c01072{bottom:407.954096pt;}
.yec_c01072{bottom:409.303604pt;}
.yeb_c01072{bottom:409.814740pt;}
.yea_c01072{bottom:412.169508pt;}
.ye9_c01072{bottom:413.610356pt;}
.ye8_c01072{bottom:414.773136pt;}
.ye7_c01072{bottom:417.363876pt;}
.ye6_c01072{bottom:418.055736pt;}
.ye5_c01072{bottom:419.492252pt;}
.ye4_c01072{bottom:421.613128pt;}
.ye3_c01072{bottom:422.305372pt;}
.ye2_c01072{bottom:436.641384pt;}
.ye1_c01072{bottom:437.524652pt;}
.ye0_c01072{bottom:439.687456pt;}
.ydf_c01072{bottom:443.359408pt;}
.yde_c01072{bottom:446.398308pt;}
.ydd_c01072{bottom:447.319580pt;}
.ydc_c01072{bottom:448.852972pt;}
.ydb_c01072{bottom:450.948272pt;}
.yda_c01072{bottom:453.400636pt;}
.yd9_c01072{bottom:454.930112pt;}
.yd8_c01072{bottom:468.341464pt;}
.yd7_c01072{bottom:470.584608pt;}
.yd6_c01072{bottom:471.516440pt;}
.yd5_c01072{bottom:474.974792pt;}
.yd4_c01072{bottom:477.517580pt;}
.yd3_c01072{bottom:478.421660pt;}
.yd2_c01072{bottom:479.405532pt;}
.yd1_c01072{bottom:480.642640pt;}
.yd0_c01072{bottom:481.897612pt;}
.ycf_c01072{bottom:483.780416pt;}
.yce_c01072{bottom:484.709212pt;}
.ycd_c01072{bottom:486.598924pt;}
.ycc_c01072{bottom:503.228272pt;}
.ycb_c01072{bottom:503.970528pt;}
.yca_c01072{bottom:504.734856pt;}
.yc9_c01072{bottom:505.471680pt;}
.yc8_c01072{bottom:506.685316pt;}
.yc7_c01072{bottom:507.212892pt;}
.yc6_c01072{bottom:508.400112pt;}
.yc5_c01072{bottom:509.917748pt;}
.yc4_c01072{bottom:510.637976pt;}
.yc3_c01072{bottom:512.103232pt;}
.yc2_c01072{bottom:512.847940pt;}
.yc1_c01072{bottom:513.580012pt;}
.yc0_c01072{bottom:515.279248pt;}
.ybf_c01072{bottom:515.788536pt;}
.ybe_c01072{bottom:517.518916pt;}
.ybd_c01072{bottom:518.739536pt;}
.ybc_c01072{bottom:533.599436pt;}
.ybb_c01072{bottom:536.463716pt;}
.yba_c01072{bottom:538.498176pt;}
.yb9_c01072{bottom:539.053520pt;}
.yb8_c01072{bottom:540.492072pt;}
.yb7_c01072{bottom:542.489048pt;}
.yb6_c01072{bottom:544.474728pt;}
.yb5_c01072{bottom:545.303184pt;}
.yb4_c01072{bottom:547.308376pt;}
.yb3_c01072{bottom:548.135392pt;}
.yb2_c01072{bottom:550.406624pt;}
.yb1_c01072{bottom:563.248388pt;}
.yb0_c01072{bottom:563.951144pt;}
.yaf_c01072{bottom:565.470292pt;}
.yae_c01072{bottom:568.531136pt;}
.yad_c01072{bottom:569.470832pt;}
.yac_c01072{bottom:570.384184pt;}
.yab_c01072{bottom:572.768836pt;}
.yaa_c01072{bottom:573.706816pt;}
.ya9_c01072{bottom:575.879728pt;}
.ya8_c01072{bottom:578.554216pt;}
.ya7_c01072{bottom:579.491712pt;}
.ya6_c01072{bottom:581.931768pt;}
.ya5_c01072{bottom:582.794852pt;}
.ya4_c01072{bottom:596.741608pt;}
.ya3_c01072{bottom:597.635816pt;}
.ya2_c01072{bottom:600.374456pt;}
.ya1_c01072{bottom:601.064316pt;}
.ya0_c01072{bottom:602.512756pt;}
.y9f_c01072{bottom:604.754940pt;}
.y9e_c01072{bottom:605.625324pt;}
.y9d_c01072{bottom:607.933556pt;}
.y9c_c01072{bottom:610.735384pt;}
.y9b_c01072{bottom:611.605988pt;}
.y9a_c01072{bottom:613.018572pt;}
.y99_c01072{bottom:626.949960pt;}
.y98_c01072{bottom:627.843060pt;}
.y97_c01072{bottom:629.619812pt;}
.y96_c01072{bottom:630.452384pt;}
.y95_c01072{bottom:631.418948pt;}
.y94_c01072{bottom:632.303084pt;}
.y93_c01072{bottom:633.462936pt;}
.y92_c01072{bottom:634.066472pt;}
.y91_c01072{bottom:637.613508pt;}
.y90_c01072{bottom:639.373068pt;}
.y8f_c01072{bottom:640.251660pt;}
.y8e_c01072{bottom:642.584200pt;}
.y8d_c01072{bottom:644.060168pt;}
.y8c_c01072{bottom:644.921172pt;}
.y8b_c01072{bottom:663.975812pt;}
.y8a_c01072{bottom:664.385496pt;}
.y89_c01072{bottom:666.464596pt;}
.y88_c01072{bottom:668.534340pt;}
.y87_c01072{bottom:669.166592pt;}
.y86_c01072{bottom:669.771740pt;}
.y85_c01072{bottom:672.268584pt;}
.y84_c01072{bottom:673.071460pt;}
.y83_c01072{bottom:674.307012pt;}
.y82_c01072{bottom:675.759644pt;}
.y81_c01072{bottom:676.581180pt;}
.y80_c01072{bottom:692.518608pt;}
.y7f_c01072{bottom:693.498048pt;}
.y7e_c01072{bottom:695.752388pt;}
.y7d_c01072{bottom:697.091968pt;}
.y7c_c01072{bottom:698.042896pt;}
.y7b_c01072{bottom:701.289656pt;}
.y7a_c01072{bottom:702.246656pt;}
.y79_c01072{bottom:703.578580pt;}
.y78_c01072{bottom:706.488608pt;}
.y77_c01072{bottom:707.772000pt;}
.y76_c01072{bottom:727.870667pt;}
.y75_c01072{bottom:729.982667pt;}
.y74_c01072{bottom:732.528000pt;}
.y73_c01072{bottom:734.332000pt;}
.y72_c01072{bottom:735.330667pt;}
.y71_c01072{bottom:736.361333pt;}
.y70_c01072{bottom:737.612000pt;}
.y6f_c01072{bottom:738.392000pt;}
.y6e_c01072{bottom:739.928000pt;}
.y6d_c01072{bottom:755.681333pt;}
.y6c_c01072{bottom:756.452000pt;}
.y6b_c01072{bottom:759.374667pt;}
.y6a_c01072{bottom:761.254667pt;}
.y69_c01072{bottom:762.848000pt;}
.y68_c01072{bottom:763.402667pt;}
.y67_c01072{bottom:765.233333pt;}
.y66_c01072{bottom:767.357333pt;}
.y65_c01072{bottom:768.950667pt;}
.y64_c01072{bottom:769.708000pt;}
.y63_c01072{bottom:771.612000pt;}
.y62_c01072{bottom:788.492000pt;}
.y61_c01072{bottom:789.201333pt;}
.y60_c01072{bottom:791.570667pt;}
.y5f_c01072{bottom:792.854667pt;}
.y5e_c01072{bottom:795.173333pt;}
.y5d_c01072{bottom:797.741333pt;}
.y5c_c01072{bottom:798.996000pt;}
.y5b_c01072{bottom:799.764000pt;}
.y5a_c01072{bottom:801.554667pt;}
.y59_c01072{bottom:802.296000pt;}
.y58_c01072{bottom:803.044000pt;}
.y57_c01072{bottom:820.332000pt;}
.y56_c01072{bottom:820.796000pt;}
.y55_c01072{bottom:822.696000pt;}
.y54_c01072{bottom:823.652000pt;}
.y53_c01072{bottom:824.366667pt;}
.y52_c01072{bottom:825.553333pt;}
.y51_c01072{bottom:826.970667pt;}
.y50_c01072{bottom:827.668000pt;}
.y4f_c01072{bottom:830.041333pt;}
.y4e_c01072{bottom:830.702667pt;}
.y4d_c01072{bottom:831.682667pt;}
.y4c_c01072{bottom:833.802667pt;}
.y4b_c01072{bottom:834.724000pt;}
.y4a_c01072{bottom:853.094667pt;}
.y49_c01072{bottom:854.641333pt;}
.y48_c01072{bottom:855.409333pt;}
.y47_c01072{bottom:856.950667pt;}
.y46_c01072{bottom:857.453333pt;}
.y45_c01072{bottom:858.492000pt;}
.y44_c01072{bottom:860.021333pt;}
.y43_c01072{bottom:860.770667pt;}
.y42_c01072{bottom:863.322667pt;}
.y41_c01072{bottom:864.089333pt;}
.y40_c01072{bottom:865.118667pt;}
.y3f_c01072{bottom:865.873333pt;}
.y3e_c01072{bottom:866.884000pt;}
.y3d_c01072{bottom:883.077333pt;}
.y3c_c01072{bottom:883.921333pt;}
.y3b_c01072{bottom:885.588000pt;}
.y3a_c01072{bottom:886.146667pt;}
.y39_c01072{bottom:889.441333pt;}
.y38_c01072{bottom:890.537333pt;}
.y37_c01072{bottom:892.748000pt;}
.y36_c01072{bottom:897.672000pt;}
.y35_c01072{bottom:898.254667pt;}
.y34_c01072{bottom:899.284000pt;}
.y33_c01072{bottom:914.908000pt;}
.y32_c01072{bottom:917.756000pt;}
.y31_c01072{bottom:918.524000pt;}
.y30_c01072{bottom:920.334667pt;}
.y2f_c01072{bottom:922.349333pt;}
.y2e_c01072{bottom:924.161333pt;}
.y2d_c01072{bottom:924.688000pt;}
.y2c_c01072{bottom:925.950667pt;}
.y2b_c01072{bottom:926.706667pt;}
.y2a_c01072{bottom:927.954667pt;}
.y29_c01072{bottom:930.006667pt;}
.y28_c01072{bottom:946.372000pt;}
.y27_c01072{bottom:947.674667pt;}
.y26_c01072{bottom:948.705333pt;}
.y25_c01072{bottom:950.478667pt;}
.y24_c01072{bottom:951.253333pt;}
.y23_c01072{bottom:952.794667pt;}
.y22_c01072{bottom:953.556000pt;}
.y21_c01072{bottom:955.584000pt;}
.y20_c01072{bottom:956.358667pt;}
.y1f_c01072{bottom:957.654667pt;}
.y1e_c01072{bottom:958.672000pt;}
.y1d_c01072{bottom:959.196000pt;}
.y1c_c01072{bottom:961.458667pt;}
.y1b_c01072{bottom:978.286667pt;}
.y1a_c01072{bottom:979.848000pt;}
.y19_c01072{bottom:980.888000pt;}
.y18_c01072{bottom:981.405333pt;}
.y17_c01072{bottom:983.190667pt;}
.y16_c01072{bottom:984.197333pt;}
.y15_c01072{bottom:984.977333pt;}
.y14_c01072{bottom:985.486667pt;}
.y13_c01072{bottom:989.326667pt;}
.y12_c01072{bottom:991.129333pt;}
.y11_c01072{bottom:991.848000pt;}
.y10_c01072{bottom:992.816000pt;}
.yf_c01072{bottom:993.848000pt;}
.ye_c01072{bottom:1010.690667pt;}
.yd_c01072{bottom:1011.814667pt;}
.yc_c01072{bottom:1012.404000pt;}
.yb_c01072{bottom:1014.596000pt;}
.ya_c01072{bottom:1015.162667pt;}
.y9_c01072{bottom:1017.646667pt;}
.y8_c01072{bottom:1019.010667pt;}
.y7_c01072{bottom:1020.960000pt;}
.y6_c01072{bottom:1022.553333pt;}
.y5_c01072{bottom:1023.142667pt;}
.y4_c01072{bottom:1025.053333pt;}
.y3_c01072{bottom:1025.852000pt;}
.y2_c01072{bottom:1027.208000pt;}
.y1_c01072{bottom:1084.573333pt;}
.h14_c01072{height:37.347965pt;}
.h2_c01072{height:53.333333pt;}
.h7_c01072{height:58.639967pt;}
.h5_c01072{height:58.666667pt;}
.h8_c01072{height:63.970873pt;}
.h11_c01072{height:63.982238pt;}
.h4_c01072{height:64.000000pt;}
.h10_c01072{height:69.314091pt;}
.h6_c01072{height:69.333333pt;}
.h9_c01072{height:74.632686pt;}
.hf_c01072{height:74.645944pt;}
.h3_c01072{height:74.666667pt;}
.ha_c01072{height:79.963592pt;}
.h12_c01072{height:80.035992pt;}
.hb_c01072{height:85.294498pt;}
.hd_c01072{height:85.309650pt;}
.hc_c01072{height:90.625404pt;}
.he_c01072{height:90.641503pt;}
.h13_c01072{height:90.702201pt;}
.h0_c01072{height:1107.840000pt;}
.h1_c01072{height:1108.000000pt;}
.w0_c01072{width:800.400000pt;}
.w1_c01072{width:800.666667pt;}
.x0_c01072{left:0.000000pt;}
.xe1_c01072{left:111.430667pt;}
.xd9_c01072{left:113.090667pt;}
.xc5_c01072{left:115.732773pt;}
.xb2_c01072{left:117.363392pt;}
.xa7_c01072{left:119.066024pt;}
.x94_c01072{left:120.165752pt;}
.x7f_c01072{left:122.349324pt;}
.x51_c01072{left:124.006667pt;}
.x36_c01072{left:127.617333pt;}
.x1a_c01072{left:129.420000pt;}
.x3_c01072{left:131.758667pt;}
.xe6_c01072{left:142.418713pt;}
.xac_c01072{left:147.342776pt;}
.x85_c01072{left:150.889096pt;}
.x74_c01072{left:152.540016pt;}
.xcb_c01072{left:153.933372pt;}
.x4a_c01072{left:155.912000pt;}
.x6a_c01072{left:162.491948pt;}
.x40_c01072{left:165.285333pt;}
.x2d_c01072{left:166.328000pt;}
.x95_c01072{left:168.904492pt;}
.x10_c01072{left:171.446667pt;}
.xc6_c01072{left:175.537783pt;}
.x9f_c01072{left:178.877684pt;}
.x4_c01072{left:180.173333pt;}
.xb3_c01072{left:182.409188pt;}
.x4b_c01072{left:184.446667pt;}
.x2e_c01072{left:187.137333pt;}
.x52_c01072{left:194.521333pt;}
.x37_c01072{left:195.504000pt;}
.x8d_c01072{left:199.854544pt;}
.x75_c01072{left:201.702360pt;}
.xbd_c01072{left:204.701232pt;}
.xb4_c01072{left:205.871996pt;}
.x5_c01072{left:208.697333pt;}
.x5c_c01072{left:213.564000pt;}
.x1b_c01072{left:216.437333pt;}
.xe7_c01072{left:220.155344pt;}
.xdf_c01072{left:221.324405pt;}
.x53_c01072{left:222.588000pt;}
.x8e_c01072{left:228.321792pt;}
.x86_c01072{left:229.519584pt;}
.x6b_c01072{left:231.575524pt;}
.xcf_c01072{left:232.870099pt;}
.x38_c01072{left:235.102667pt;}
.x11_c01072{left:236.336000pt;}
.x96_c01072{left:238.040232pt;}
.xcc_c01072{left:242.608192pt;}
.xa8_c01072{left:247.398064pt;}
.xd3_c01072{left:250.634667pt;}
.x41_c01072{left:253.641333pt;}
.x25_c01072{left:255.958667pt;}
.x97_c01072{left:258.382576pt;}
.x87_c01072{left:259.716672pt;}
.x61_c01072{left:260.719776pt;}
.x5d_c01072{left:261.672000pt;}
.xc7_c01072{left:263.309933pt;}
.x39_c01072{left:264.614667pt;}
.xa0_c01072{left:266.656724pt;}
.xe8_c01072{left:268.141889pt;}
.xb5_c01072{left:274.479988pt;}
.x1c_c01072{left:275.702667pt;}
.x6_c01072{left:276.925333pt;}
.x76_c01072{left:279.378980pt;}
.x54_c01072{left:281.624000pt;}
.x4c_c01072{left:282.836000pt;}
.x26_c01072{left:285.016000pt;}
.xda_c01072{left:289.056000pt;}
.x6c_c01072{left:290.333340pt;}
.xc8_c01072{left:292.083239pt;}
.x42_c01072{left:294.452000pt;}
.x7_c01072{left:297.974667pt;}
.x5e_c01072{left:301.313333pt;}
.x12_c01072{left:305.670667pt;}
.x77_c01072{left:308.640596pt;}
.xb6_c01072{left:313.822784pt;}
.xa9_c01072{left:314.905604pt;}
.xd4_c01072{left:319.069333pt;}
.x43_c01072{left:322.013333pt;}
.xbe_c01072{left:322.904823pt;}
.xad_c01072{left:324.097012pt;}
.x1d_c01072{left:325.557333pt;}
.x6d_c01072{left:328.524928pt;}
.x4d_c01072{left:331.105333pt;}
.x27_c01072{left:333.562667pt;}
.xe2_c01072{left:337.359179pt;}
.x5f_c01072{left:339.725333pt;}
.xb9_c01072{left:342.200035pt;}
.xa1_c01072{left:344.440084pt;}
.x88_c01072{left:345.888096pt;}
.x62_c01072{left:348.814260pt;}
.xbf_c01072{left:351.695805pt;}
.x28_c01072{left:353.805333pt;}
.x8_c01072{left:354.857333pt;}
.xe0_c01072{left:357.439467pt;}
.x55_c01072{left:360.280000pt;}
.x2f_c01072{left:363.013333pt;}
.xaa_c01072{left:364.312740pt;}
.xe3_c01072{left:366.127715pt;}
.x78_c01072{left:367.235756pt;}
.xd5_c01072{left:368.312000pt;}
.xba_c01072{left:372.718819pt;}
.xa2_c01072{left:375.153020pt;}
.x80_c01072{left:377.044068pt;}
.x1_c01072{left:381.600000pt;}
.x98_c01072{left:385.289104pt;}
.xdb_c01072{left:387.785333pt;}
.x63_c01072{left:389.135232pt;}
.x3a_c01072{left:391.589333pt;}
.x8f_c01072{left:394.318896pt;}
.xe9_c01072{left:397.026480pt;}
.x2_c01072{left:401.520000pt;}
.xa3_c01072{left:403.369700pt;}
.x81_c01072{left:407.026020pt;}
.x60_c01072{left:409.101333pt;}
.x89_c01072{left:415.906632pt;}
.xdc_c01072{left:417.066667pt;}
.x64_c01072{left:418.106232pt;}
.x44_c01072{left:420.877333pt;}
.x29_c01072{left:423.501333pt;}
.x9_c01072{left:424.497333pt;}
.x56_c01072{left:428.105333pt;}
.x4e_c01072{left:429.881333pt;}
.xae_c01072{left:431.913152pt;}
.x1e_c01072{left:433.337333pt;}
.x30_c01072{left:441.945333pt;}
.x99_c01072{left:443.815312pt;}
.x8a_c01072{left:446.118372pt;}
.x6e_c01072{left:447.263820pt;}
.x57_c01072{left:448.658667pt;}
.x3b_c01072{left:450.433333pt;}
.x13_c01072{left:453.345333pt;}
.xc0_c01072{left:459.760929pt;}
.x1f_c01072{left:462.604000pt;}
.xb7_c01072{left:471.480392pt;}
.xa_c01072{left:473.213333pt;}
.x6f_c01072{left:476.038424pt;}
.xcd_c01072{left:477.554212pt;}
.x31_c01072{left:481.068000pt;}
.xa4_c01072{left:482.768864pt;}
.x82_c01072{left:484.268252pt;}
.x79_c01072{left:485.351904pt;}
.xc1_c01072{left:488.237408pt;}
.x3c_c01072{left:490.370667pt;}
.xab_c01072{left:491.908096pt;}
.xb8_c01072{left:495.003184pt;}
.x2a_c01072{left:501.000000pt;}
.x14_c01072{left:502.949333pt;}
.x70_c01072{left:506.077580pt;}
.x58_c01072{left:507.694667pt;}
.x3d_c01072{left:509.688000pt;}
.x90_c01072{left:512.652080pt;}
.xe4_c01072{left:514.014347pt;}
.x65_c01072{left:516.394512pt;}
.x4f_c01072{left:519.066667pt;}
.x20_c01072{left:521.893333pt;}
.x8b_c01072{left:522.950528pt;}
.xdd_c01072{left:525.624000pt;}
.xc9_c01072{left:527.984200pt;}
.x91_c01072{left:531.764792pt;}
.x9a_c01072{left:533.238784pt;}
.x83_c01072{left:534.171572pt;}
.xce_c01072{left:536.662767pt;}
.xc2_c01072{left:539.119037pt;}
.xaf_c01072{left:540.280916pt;}
.x15_c01072{left:541.657333pt;}
.x7a_c01072{left:544.062948pt;}
.x66_c01072{left:545.181696pt;}
.x21_c01072{left:551.692000pt;}
.xde_c01072{left:554.966667pt;}
.xd6_c01072{left:556.145333pt;}
.xca_c01072{left:557.237127pt;}
.x45_c01072{left:558.416000pt;}
.xb_c01072{left:561.910667pt;}
.xd0_c01072{left:565.377081pt;}
.x3e_c01072{left:568.953333pt;}
.x2b_c01072{left:570.621333pt;}
.x7b_c01072{left:573.492396pt;}
.x59_c01072{left:577.314667pt;}
.x9b_c01072{left:580.683844pt;}
.xc_c01072{left:582.162667pt;}
.x67_c01072{left:585.734436pt;}
.x46_c01072{left:588.170667pt;}
.xa5_c01072{left:590.732360pt;}
.xea_c01072{left:594.006180pt;}
.x32_c01072{left:598.757333pt;}
.x2c_c01072{left:600.146667pt;}
.x92_c01072{left:601.830572pt;}
.x71_c01072{left:604.459412pt;}
.x7c_c01072{left:605.659368pt;}
.x16_c01072{left:610.306667pt;}
.xe5_c01072{left:612.658271pt;}
.x33_c01072{left:618.694667pt;}
.x22_c01072{left:619.884000pt;}
.xeb_c01072{left:622.978899pt;}
.xd1_c01072{left:625.714428pt;}
.x47_c01072{left:628.022667pt;}
.x17_c01072{left:630.225333pt;}
.x7d_c01072{left:633.366364pt;}
.xb0_c01072{left:638.289300pt;}
.xd7_c01072{left:644.866667pt;}
.xbb_c01072{left:646.783147pt;}
.x9c_c01072{left:650.268600pt;}
.x84_c01072{left:652.251632pt;}
.x68_c01072{left:653.979456pt;}
.xd2_c01072{left:655.256935pt;}
.x3f_c01072{left:657.989333pt;}
.x23_c01072{left:659.506667pt;}
.xd_c01072{left:660.462667pt;}
.xc3_c01072{left:665.702044pt;}
.x18_c01072{left:670.228000pt;}
.xd8_c01072{left:675.282667pt;}
.x34_c01072{left:678.208000pt;}
.x9d_c01072{left:679.678912pt;}
.xe_c01072{left:681.505333pt;}
.x69_c01072{left:683.629776pt;}
.x5a_c01072{left:685.585333pt;}
.x50_c01072{left:686.857333pt;}
.xa6_c01072{left:689.875088pt;}
.x7e_c01072{left:692.522340pt;}
.x93_c01072{left:700.488852pt;}
.x72_c01072{left:703.326312pt;}
.xc4_c01072{left:704.766076pt;}
.x48_c01072{left:707.177333pt;}
.x35_c01072{left:708.370667pt;}
.x24_c01072{left:709.601333pt;}
.x5b_c01072{left:714.144000pt;}
.xb1_c01072{left:715.728152pt;}
.xf_c01072{left:721.661333pt;}
.x73_c01072{left:722.833204pt;}
.x49_c01072{left:726.533333pt;}
.x19_c01072{left:730.256000pt;}
.xbc_c01072{left:736.525315pt;}
.x9e_c01072{left:739.859904pt;}
.x8c_c01072{left:752.856876pt;}
}





/* 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_c01073 {
    display:none;
  }
  .loading-indicator_c01073.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01073 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_c01073 { 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_c01073" -> "#page-container .classname_c01073")
 */
.pf_c01073 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01073 { /* 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_c01073.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01073 { /* 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_c01073 { /* 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_c01073 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01073 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01073 {overflow:visible;}
  }
}
.c_c01073 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01073 { /* 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_c01073:after { /* webkit #35443 */
  content: '';
}
.t_c01073:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01073 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 */
}
.__c01073 { /* 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_c01073 { /* info for Javascript */
  display:none;
}
.l_c01073 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01073 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01073 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01073: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_c01073 {
    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_c01073.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01073.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_c01073 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01073{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01073;src:url('chunks/assets/font_6bbd15de30fdc229d5d5ff82.woff2')format("woff");}.ff1_c01073{font-family:ff1_c01073;line-height:1.000000;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;}
.m0_c01073{transform:matrix(0.171025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171025,0.000000,0.000000,0.250000,0,0);}
.m1_c01073{transform:matrix(0.172695,-0.017703,0.025495,0.248697,0,0);-ms-transform:matrix(0.172695,-0.017703,0.025495,0.248697,0,0);-webkit-transform:matrix(0.172695,-0.017703,0.025495,0.248697,0,0);}
.m2_c01073{transform:matrix(0.263788,-0.027042,0.025495,0.248697,0,0);-ms-transform:matrix(0.263788,-0.027042,0.025495,0.248697,0,0);-webkit-transform:matrix(0.263788,-0.027042,0.025495,0.248697,0,0);}
.v0_c01073{vertical-align:0.000000px;}
.ls0_c01073{letter-spacing:0.000000px;}
.sc__c01073{text-shadow:none;}
.sc0_c01073{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__c01073{-webkit-text-stroke:0px transparent;}
.sc0_c01073{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01073{word-spacing:0.000000px;}
.fc0_c01073{color:transparent;}
.fs0_c01073{font-size:18.000000px;}
.fs1_c01073{font-size:102.021877px;}
.y0_c01073{bottom:0.000000px;}
.y2_c01073{bottom:1132.104000px;}
.y3_c01073{bottom:1140.479220px;}
.y1_c01073{bottom:1166.400000px;}
.h2_c01073{height:18.000000px;}
.h3_c01073{height:102.021877px;}
.h0_c01073{height:1246.320000px;}
.h1_c01073{height:1246.500000px;}
.w0_c01073{width:900.450000px;}
.w1_c01073{width:900.750000px;}
.x0_c01073{left:0.000000px;}
.x2_c01073{left:515.019000px;}
.x1_c01073{left:535.950000px;}
.x3_c01073{left:596.718450px;}
@media print{
.v0_c01073{vertical-align:0.000000pt;}
.ls0_c01073{letter-spacing:0.000000pt;}
.ws0_c01073{word-spacing:0.000000pt;}
.fs0_c01073{font-size:16.000000pt;}
.fs1_c01073{font-size:90.686113pt;}
.y0_c01073{bottom:0.000000pt;}
.y2_c01073{bottom:1006.314667pt;}
.y3_c01073{bottom:1013.759307pt;}
.y1_c01073{bottom:1036.800000pt;}
.h2_c01073{height:16.000000pt;}
.h3_c01073{height:90.686113pt;}
.h0_c01073{height:1107.840000pt;}
.h1_c01073{height:1108.000000pt;}
.w0_c01073{width:800.400000pt;}
.w1_c01073{width:800.666667pt;}
.x0_c01073{left:0.000000pt;}
.x2_c01073{left:457.794667pt;}
.x1_c01073{left:476.400000pt;}
.x3_c01073{left:530.416400pt;}
}





/* 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_c01074 {
    display:none;
  }
  .loading-indicator_c01074.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01074 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_c01074 { 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_c01074" -> "#page-container .classname_c01074")
 */
.pf_c01074 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01074 { /* 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_c01074.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01074 { /* 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_c01074 { /* 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_c01074 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01074 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01074 {overflow:visible;}
  }
}
.c_c01074 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01074 { /* 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_c01074:after { /* webkit #35443 */
  content: '';
}
.t_c01074:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01074 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 */
}
.__c01074 { /* 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_c01074 { /* info for Javascript */
  display:none;
}
.l_c01074 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01074 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01074 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01074: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_c01074 {
    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_c01074.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01074.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_c01074 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01074{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01074;src:url('chunks/assets/font_b11a17f404e7258299fdf971.woff2')format("woff");}.ff1_c01074{font-family:ff1_c01074;line-height:1.000000;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;}
.m61_c01074{transform:matrix(0.007954,-0.000095,0.003000,0.249982,0,0);-ms-transform:matrix(0.007954,-0.000095,0.003000,0.249982,0,0);-webkit-transform:matrix(0.007954,-0.000095,0.003000,0.249982,0,0);}
.m60_c01074{transform:matrix(0.010139,-0.000122,0.003000,0.249982,0,0);-ms-transform:matrix(0.010139,-0.000122,0.003000,0.249982,0,0);-webkit-transform:matrix(0.010139,-0.000122,0.003000,0.249982,0,0);}
.m95_c01074{transform:matrix(0.013519,-0.000135,0.002500,0.249988,0,0);-ms-transform:matrix(0.013519,-0.000135,0.002500,0.249988,0,0);-webkit-transform:matrix(0.013519,-0.000135,0.002500,0.249988,0,0);}
.med_c01074{transform:matrix(0.014685,-0.000073,0.001250,0.249997,0,0);-ms-transform:matrix(0.014685,-0.000073,0.001250,0.249997,0,0);-webkit-transform:matrix(0.014685,-0.000073,0.001250,0.249997,0,0);}
.m96_c01074{transform:matrix(0.015909,-0.000159,0.002500,0.249988,0,0);-ms-transform:matrix(0.015909,-0.000159,0.002500,0.249988,0,0);-webkit-transform:matrix(0.015909,-0.000159,0.002500,0.249988,0,0);}
.mbf_c01074{transform:matrix(0.015910,-0.000080,0.001250,0.249997,0,0);-ms-transform:matrix(0.015910,-0.000080,0.001250,0.249997,0,0);-webkit-transform:matrix(0.015910,-0.000080,0.001250,0.249997,0,0);}
.m97_c01074{transform:matrix(0.018749,-0.000187,0.002500,0.249988,0,0);-ms-transform:matrix(0.018749,-0.000187,0.002500,0.249988,0,0);-webkit-transform:matrix(0.018749,-0.000187,0.002500,0.249988,0,0);}
.mf9_c01074{transform:matrix(0.046669,-0.000233,0.001250,0.249997,0,0);-ms-transform:matrix(0.046669,-0.000233,0.001250,0.249997,0,0);-webkit-transform:matrix(0.046669,-0.000233,0.001250,0.249997,0,0);}
.m2_c01074{transform:matrix(0.132545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132545,0.000000,0.000000,0.250000,0,0);}
.mdf_c01074{transform:matrix(0.151163,-0.000756,0.001250,0.249997,0,0);-ms-transform:matrix(0.151163,-0.000756,0.001250,0.249997,0,0);-webkit-transform:matrix(0.151163,-0.000756,0.001250,0.249997,0,0);}
.mc5_c01074{transform:matrix(0.156618,-0.000783,0.001250,0.249997,0,0);-ms-transform:matrix(0.156618,-0.000783,0.001250,0.249997,0,0);-webkit-transform:matrix(0.156618,-0.000783,0.001250,0.249997,0,0);}
.m6a_c01074{transform:matrix(0.162007,-0.001620,0.002500,0.249988,0,0);-ms-transform:matrix(0.162007,-0.001620,0.002500,0.249988,0,0);-webkit-transform:matrix(0.162007,-0.001620,0.002500,0.249988,0,0);}
.mc2_c01074{transform:matrix(0.162503,-0.000813,0.001250,0.249997,0,0);-ms-transform:matrix(0.162503,-0.000813,0.001250,0.249997,0,0);-webkit-transform:matrix(0.162503,-0.000813,0.001250,0.249997,0,0);}
.m67_c01074{transform:matrix(0.162692,-0.001627,0.002500,0.249988,0,0);-ms-transform:matrix(0.162692,-0.001627,0.002500,0.249988,0,0);-webkit-transform:matrix(0.162692,-0.001627,0.002500,0.249988,0,0);}
.m55_c01074{transform:matrix(0.165518,-0.001986,0.003000,0.249982,0,0);-ms-transform:matrix(0.165518,-0.001986,0.003000,0.249982,0,0);-webkit-transform:matrix(0.165518,-0.001986,0.003000,0.249982,0,0);}
.m68_c01074{transform:matrix(0.169852,-0.001699,0.002500,0.249988,0,0);-ms-transform:matrix(0.169852,-0.001699,0.002500,0.249988,0,0);-webkit-transform:matrix(0.169852,-0.001699,0.002500,0.249988,0,0);}
.m100_c01074{transform:matrix(0.173660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173660,0.000000,0.000000,0.250000,0,0);}
.m6b_c01074{transform:matrix(0.174301,-0.001743,0.002500,0.249988,0,0);-ms-transform:matrix(0.174301,-0.001743,0.002500,0.249988,0,0);-webkit-transform:matrix(0.174301,-0.001743,0.002500,0.249988,0,0);}
.m7_c01074{transform:matrix(0.174396,-0.004534,0.006498,0.249916,0,0);-ms-transform:matrix(0.174396,-0.004534,0.006498,0.249916,0,0);-webkit-transform:matrix(0.174396,-0.004534,0.006498,0.249916,0,0);}
.mdc_c01074{transform:matrix(0.177503,-0.000888,0.001250,0.249997,0,0);-ms-transform:matrix(0.177503,-0.000888,0.001250,0.249997,0,0);-webkit-transform:matrix(0.177503,-0.000888,0.001250,0.249997,0,0);}
.m63_c01074{transform:matrix(0.178176,-0.001782,0.002500,0.249988,0,0);-ms-transform:matrix(0.178176,-0.001782,0.002500,0.249988,0,0);-webkit-transform:matrix(0.178176,-0.001782,0.002500,0.249988,0,0);}
.m64_c01074{transform:matrix(0.181706,-0.001817,0.002500,0.249988,0,0);-ms-transform:matrix(0.181706,-0.001817,0.002500,0.249988,0,0);-webkit-transform:matrix(0.181706,-0.001817,0.002500,0.249988,0,0);}
.mc4_c01074{transform:matrix(0.185143,-0.000926,0.001250,0.249997,0,0);-ms-transform:matrix(0.185143,-0.000926,0.001250,0.249997,0,0);-webkit-transform:matrix(0.185143,-0.000926,0.001250,0.249997,0,0);}
.m5f_c01074{transform:matrix(0.186292,-0.002235,0.003000,0.249982,0,0);-ms-transform:matrix(0.186292,-0.002235,0.003000,0.249982,0,0);-webkit-transform:matrix(0.186292,-0.002235,0.003000,0.249982,0,0);}
.m66_c01074{transform:matrix(0.186841,-0.001868,0.002500,0.249988,0,0);-ms-transform:matrix(0.186841,-0.001868,0.002500,0.249988,0,0);-webkit-transform:matrix(0.186841,-0.001868,0.002500,0.249988,0,0);}
.mda_c01074{transform:matrix(0.188698,-0.000943,0.001250,0.249997,0,0);-ms-transform:matrix(0.188698,-0.000943,0.001250,0.249997,0,0);-webkit-transform:matrix(0.188698,-0.000943,0.001250,0.249997,0,0);}
.m25_c01074{transform:matrix(0.188996,-0.002268,0.003000,0.249982,0,0);-ms-transform:matrix(0.188996,-0.002268,0.003000,0.249982,0,0);-webkit-transform:matrix(0.188996,-0.002268,0.003000,0.249982,0,0);}
.m52_c01074{transform:matrix(0.189591,-0.002275,0.003000,0.249982,0,0);-ms-transform:matrix(0.189591,-0.002275,0.003000,0.249982,0,0);-webkit-transform:matrix(0.189591,-0.002275,0.003000,0.249982,0,0);}
.mc0_c01074{transform:matrix(0.189853,-0.000949,0.001250,0.249997,0,0);-ms-transform:matrix(0.189853,-0.000949,0.001250,0.249997,0,0);-webkit-transform:matrix(0.189853,-0.000949,0.001250,0.249997,0,0);}
.m69_c01074{transform:matrix(0.189996,-0.001900,0.002500,0.249988,0,0);-ms-transform:matrix(0.189996,-0.001900,0.002500,0.249988,0,0);-webkit-transform:matrix(0.189996,-0.001900,0.002500,0.249988,0,0);}
.m6c_c01074{transform:matrix(0.190065,-0.001901,0.002500,0.249988,0,0);-ms-transform:matrix(0.190065,-0.001901,0.002500,0.249988,0,0);-webkit-transform:matrix(0.190065,-0.001901,0.002500,0.249988,0,0);}
.mfe_c01074{transform:matrix(0.190670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190670,0.000000,0.000000,0.250000,0,0);}
.m4a_c01074{transform:matrix(0.190796,-0.002290,0.003000,0.249982,0,0);-ms-transform:matrix(0.190796,-0.002290,0.003000,0.249982,0,0);-webkit-transform:matrix(0.190796,-0.002290,0.003000,0.249982,0,0);}
.m8d_c01074{transform:matrix(0.190985,-0.001910,0.002500,0.249988,0,0);-ms-transform:matrix(0.190985,-0.001910,0.002500,0.249988,0,0);-webkit-transform:matrix(0.190985,-0.001910,0.002500,0.249988,0,0);}
.m5_c01074{transform:matrix(0.191310,-0.004974,0.006498,0.249916,0,0);-ms-transform:matrix(0.191310,-0.004974,0.006498,0.249916,0,0);-webkit-transform:matrix(0.191310,-0.004974,0.006498,0.249916,0,0);}
.mfd_c01074{transform:matrix(0.191375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191375,0.000000,0.000000,0.250000,0,0);}
.m2c_c01074{transform:matrix(0.191961,-0.002304,0.003000,0.249982,0,0);-ms-transform:matrix(0.191961,-0.002304,0.003000,0.249982,0,0);-webkit-transform:matrix(0.191961,-0.002304,0.003000,0.249982,0,0);}
.m9d_c01074{transform:matrix(0.191972,-0.001152,0.001500,0.249996,0,0);-ms-transform:matrix(0.191972,-0.001152,0.001500,0.249996,0,0);-webkit-transform:matrix(0.191972,-0.001152,0.001500,0.249996,0,0);}
.mf7_c01074{transform:matrix(0.192823,-0.000964,0.001250,0.249997,0,0);-ms-transform:matrix(0.192823,-0.000964,0.001250,0.249997,0,0);-webkit-transform:matrix(0.192823,-0.000964,0.001250,0.249997,0,0);}
.m9b_c01074{transform:matrix(0.193152,-0.001159,0.001500,0.249996,0,0);-ms-transform:matrix(0.193152,-0.001159,0.001500,0.249996,0,0);-webkit-transform:matrix(0.193152,-0.001159,0.001500,0.249996,0,0);}
.m5b_c01074{transform:matrix(0.193411,-0.002321,0.003000,0.249982,0,0);-ms-transform:matrix(0.193411,-0.002321,0.003000,0.249982,0,0);-webkit-transform:matrix(0.193411,-0.002321,0.003000,0.249982,0,0);}
.m65_c01074{transform:matrix(0.193825,-0.001938,0.002500,0.249988,0,0);-ms-transform:matrix(0.193825,-0.001938,0.002500,0.249988,0,0);-webkit-transform:matrix(0.193825,-0.001938,0.002500,0.249988,0,0);}
.me0_c01074{transform:matrix(0.194998,-0.000975,0.001250,0.249997,0,0);-ms-transform:matrix(0.194998,-0.000975,0.001250,0.249997,0,0);-webkit-transform:matrix(0.194998,-0.000975,0.001250,0.249997,0,0);}
.m62_c01074{transform:matrix(0.196375,-0.001964,0.002500,0.249988,0,0);-ms-transform:matrix(0.196375,-0.001964,0.002500,0.249988,0,0);-webkit-transform:matrix(0.196375,-0.001964,0.002500,0.249988,0,0);}
.m0_c01074{transform:matrix(0.196475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196475,0.000000,0.000000,0.250000,0,0);}
.ma2_c01074{transform:matrix(0.197381,-0.001184,0.001500,0.249996,0,0);-ms-transform:matrix(0.197381,-0.001184,0.001500,0.249996,0,0);-webkit-transform:matrix(0.197381,-0.001184,0.001500,0.249996,0,0);}
.m29_c01074{transform:matrix(0.198441,-0.002381,0.003000,0.249982,0,0);-ms-transform:matrix(0.198441,-0.002381,0.003000,0.249982,0,0);-webkit-transform:matrix(0.198441,-0.002381,0.003000,0.249982,0,0);}
.mc3_c01074{transform:matrix(0.199068,-0.000995,0.001250,0.249997,0,0);-ms-transform:matrix(0.199068,-0.000995,0.001250,0.249997,0,0);-webkit-transform:matrix(0.199068,-0.000995,0.001250,0.249997,0,0);}
.m4f_c01074{transform:matrix(0.199221,-0.002391,0.003000,0.249982,0,0);-ms-transform:matrix(0.199221,-0.002391,0.003000,0.249982,0,0);-webkit-transform:matrix(0.199221,-0.002391,0.003000,0.249982,0,0);}
.m9_c01074{transform:matrix(0.199298,-0.005182,0.006498,0.249916,0,0);-ms-transform:matrix(0.199298,-0.005182,0.006498,0.249916,0,0);-webkit-transform:matrix(0.199298,-0.005182,0.006498,0.249916,0,0);}
.m58_c01074{transform:matrix(0.201106,-0.002413,0.003000,0.249982,0,0);-ms-transform:matrix(0.201106,-0.002413,0.003000,0.249982,0,0);-webkit-transform:matrix(0.201106,-0.002413,0.003000,0.249982,0,0);}
.mc1_c01074{transform:matrix(0.201397,-0.001007,0.001250,0.249997,0,0);-ms-transform:matrix(0.201397,-0.001007,0.001250,0.249997,0,0);-webkit-transform:matrix(0.201397,-0.001007,0.001250,0.249997,0,0);}
.m50_c01074{transform:matrix(0.201480,-0.002418,0.003000,0.249982,0,0);-ms-transform:matrix(0.201480,-0.002418,0.003000,0.249982,0,0);-webkit-transform:matrix(0.201480,-0.002418,0.003000,0.249982,0,0);}
.m59_c01074{transform:matrix(0.203320,-0.002440,0.003000,0.249982,0,0);-ms-transform:matrix(0.203320,-0.002440,0.003000,0.249982,0,0);-webkit-transform:matrix(0.203320,-0.002440,0.003000,0.249982,0,0);}
.ma9_c01074{transform:matrix(0.203801,-0.001223,0.001500,0.249996,0,0);-ms-transform:matrix(0.203801,-0.001223,0.001500,0.249996,0,0);-webkit-transform:matrix(0.203801,-0.001223,0.001500,0.249996,0,0);}
.m98_c01074{transform:matrix(0.205766,-0.001235,0.001500,0.249996,0,0);-ms-transform:matrix(0.205766,-0.001235,0.001500,0.249996,0,0);-webkit-transform:matrix(0.205766,-0.001235,0.001500,0.249996,0,0);}
.m48_c01074{transform:matrix(0.205790,-0.002469,0.003000,0.249982,0,0);-ms-transform:matrix(0.205790,-0.002469,0.003000,0.249982,0,0);-webkit-transform:matrix(0.205790,-0.002469,0.003000,0.249982,0,0);}
.maa_c01074{transform:matrix(0.205961,-0.001236,0.001500,0.249996,0,0);-ms-transform:matrix(0.205961,-0.001236,0.001500,0.249996,0,0);-webkit-transform:matrix(0.205961,-0.001236,0.001500,0.249996,0,0);}
.m4b_c01074{transform:matrix(0.206205,-0.002474,0.003000,0.249982,0,0);-ms-transform:matrix(0.206205,-0.002474,0.003000,0.249982,0,0);-webkit-transform:matrix(0.206205,-0.002474,0.003000,0.249982,0,0);}
.m6_c01074{transform:matrix(0.206755,-0.005376,0.006498,0.249916,0,0);-ms-transform:matrix(0.206755,-0.005376,0.006498,0.249916,0,0);-webkit-transform:matrix(0.206755,-0.005376,0.006498,0.249916,0,0);}
.m5d_c01074{transform:matrix(0.207225,-0.002487,0.003000,0.249982,0,0);-ms-transform:matrix(0.207225,-0.002487,0.003000,0.249982,0,0);-webkit-transform:matrix(0.207225,-0.002487,0.003000,0.249982,0,0);}
.m8f_c01074{transform:matrix(0.207385,-0.002074,0.002500,0.249988,0,0);-ms-transform:matrix(0.207385,-0.002074,0.002500,0.249988,0,0);-webkit-transform:matrix(0.207385,-0.002074,0.002500,0.249988,0,0);}
.m56_c01074{transform:matrix(0.207600,-0.002491,0.003000,0.249982,0,0);-ms-transform:matrix(0.207600,-0.002491,0.003000,0.249982,0,0);-webkit-transform:matrix(0.207600,-0.002491,0.003000,0.249982,0,0);}
.m57_c01074{transform:matrix(0.208095,-0.002497,0.003000,0.249982,0,0);-ms-transform:matrix(0.208095,-0.002497,0.003000,0.249982,0,0);-webkit-transform:matrix(0.208095,-0.002497,0.003000,0.249982,0,0);}
.m53_c01074{transform:matrix(0.208300,-0.002500,0.003000,0.249982,0,0);-ms-transform:matrix(0.208300,-0.002500,0.003000,0.249982,0,0);-webkit-transform:matrix(0.208300,-0.002500,0.003000,0.249982,0,0);}
.m2a_c01074{transform:matrix(0.208735,-0.002505,0.003000,0.249982,0,0);-ms-transform:matrix(0.208735,-0.002505,0.003000,0.249982,0,0);-webkit-transform:matrix(0.208735,-0.002505,0.003000,0.249982,0,0);}
.mf1_c01074{transform:matrix(0.209297,-0.001046,0.001250,0.249997,0,0);-ms-transform:matrix(0.209297,-0.001046,0.001250,0.249997,0,0);-webkit-transform:matrix(0.209297,-0.001046,0.001250,0.249997,0,0);}
.m9a_c01074{transform:matrix(0.209546,-0.001257,0.001500,0.249996,0,0);-ms-transform:matrix(0.209546,-0.001257,0.001500,0.249996,0,0);-webkit-transform:matrix(0.209546,-0.001257,0.001500,0.249996,0,0);}
.m101_c01074{transform:matrix(0.211060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211060,0.000000,0.000000,0.250000,0,0);}
.ma_c01074{transform:matrix(0.211773,-0.005506,0.006498,0.249916,0,0);-ms-transform:matrix(0.211773,-0.005506,0.006498,0.249916,0,0);-webkit-transform:matrix(0.211773,-0.005506,0.006498,0.249916,0,0);}
.mdb_c01074{transform:matrix(0.211892,-0.001059,0.001250,0.249997,0,0);-ms-transform:matrix(0.211892,-0.001059,0.001250,0.249997,0,0);-webkit-transform:matrix(0.211892,-0.001059,0.001250,0.249997,0,0);}
.m54_c01074{transform:matrix(0.211980,-0.002544,0.003000,0.249982,0,0);-ms-transform:matrix(0.211980,-0.002544,0.003000,0.249982,0,0);-webkit-transform:matrix(0.211980,-0.002544,0.003000,0.249982,0,0);}
.m4_c01074{transform:matrix(0.212778,-0.005532,0.006498,0.249916,0,0);-ms-transform:matrix(0.212778,-0.005532,0.006498,0.249916,0,0);-webkit-transform:matrix(0.212778,-0.005532,0.006498,0.249916,0,0);}
.mf2_c01074{transform:matrix(0.212912,-0.001065,0.001250,0.249997,0,0);-ms-transform:matrix(0.212912,-0.001065,0.001250,0.249997,0,0);-webkit-transform:matrix(0.212912,-0.001065,0.001250,0.249997,0,0);}
.m2e_c01074{transform:matrix(0.213680,-0.002564,0.003000,0.249982,0,0);-ms-transform:matrix(0.213680,-0.002564,0.003000,0.249982,0,0);-webkit-transform:matrix(0.213680,-0.002564,0.003000,0.249982,0,0);}
.meb_c01074{transform:matrix(0.213817,-0.001069,0.001250,0.249997,0,0);-ms-transform:matrix(0.213817,-0.001069,0.001250,0.249997,0,0);-webkit-transform:matrix(0.213817,-0.001069,0.001250,0.249997,0,0);}
.md7_c01074{transform:matrix(0.213937,-0.001070,0.001250,0.249997,0,0);-ms-transform:matrix(0.213937,-0.001070,0.001250,0.249997,0,0);-webkit-transform:matrix(0.213937,-0.001070,0.001250,0.249997,0,0);}
.m5a_c01074{transform:matrix(0.214000,-0.002568,0.003000,0.249982,0,0);-ms-transform:matrix(0.214000,-0.002568,0.003000,0.249982,0,0);-webkit-transform:matrix(0.214000,-0.002568,0.003000,0.249982,0,0);}
.md8_c01074{transform:matrix(0.215132,-0.001076,0.001250,0.249997,0,0);-ms-transform:matrix(0.215132,-0.001076,0.001250,0.249997,0,0);-webkit-transform:matrix(0.215132,-0.001076,0.001250,0.249997,0,0);}
.m4c_c01074{transform:matrix(0.216739,-0.002601,0.003000,0.249982,0,0);-ms-transform:matrix(0.216739,-0.002601,0.003000,0.249982,0,0);-webkit-transform:matrix(0.216739,-0.002601,0.003000,0.249982,0,0);}
.m92_c01074{transform:matrix(0.217014,-0.002170,0.002500,0.249988,0,0);-ms-transform:matrix(0.217014,-0.002170,0.002500,0.249988,0,0);-webkit-transform:matrix(0.217014,-0.002170,0.002500,0.249988,0,0);}
.ma5_c01074{transform:matrix(0.217761,-0.001307,0.001500,0.249996,0,0);-ms-transform:matrix(0.217761,-0.001307,0.001500,0.249996,0,0);-webkit-transform:matrix(0.217761,-0.001307,0.001500,0.249996,0,0);}
.mf8_c01074{transform:matrix(0.218872,-0.001094,0.001250,0.249997,0,0);-ms-transform:matrix(0.218872,-0.001094,0.001250,0.249997,0,0);-webkit-transform:matrix(0.218872,-0.001094,0.001250,0.249997,0,0);}
.ma4_c01074{transform:matrix(0.219001,-0.001314,0.001500,0.249996,0,0);-ms-transform:matrix(0.219001,-0.001314,0.001500,0.249996,0,0);-webkit-transform:matrix(0.219001,-0.001314,0.001500,0.249996,0,0);}
.m5c_c01074{transform:matrix(0.219214,-0.002631,0.003000,0.249982,0,0);-ms-transform:matrix(0.219214,-0.002631,0.003000,0.249982,0,0);-webkit-transform:matrix(0.219214,-0.002631,0.003000,0.249982,0,0);}
.m9c_c01074{transform:matrix(0.219586,-0.001318,0.001500,0.249996,0,0);-ms-transform:matrix(0.219586,-0.001318,0.001500,0.249996,0,0);-webkit-transform:matrix(0.219586,-0.001318,0.001500,0.249996,0,0);}
.m17_c01074{transform:matrix(0.219784,-0.002637,0.003000,0.249982,0,0);-ms-transform:matrix(0.219784,-0.002637,0.003000,0.249982,0,0);-webkit-transform:matrix(0.219784,-0.002637,0.003000,0.249982,0,0);}
.m32_c01074{transform:matrix(0.220494,-0.002646,0.003000,0.249982,0,0);-ms-transform:matrix(0.220494,-0.002646,0.003000,0.249982,0,0);-webkit-transform:matrix(0.220494,-0.002646,0.003000,0.249982,0,0);}
.ma6_c01074{transform:matrix(0.221141,-0.001327,0.001500,0.249996,0,0);-ms-transform:matrix(0.221141,-0.001327,0.001500,0.249996,0,0);-webkit-transform:matrix(0.221141,-0.001327,0.001500,0.249996,0,0);}
.md9_c01074{transform:matrix(0.221237,-0.001106,0.001250,0.249997,0,0);-ms-transform:matrix(0.221237,-0.001106,0.001250,0.249997,0,0);-webkit-transform:matrix(0.221237,-0.001106,0.001250,0.249997,0,0);}
.m14_c01074{transform:matrix(0.221399,-0.002657,0.003000,0.249982,0,0);-ms-transform:matrix(0.221399,-0.002657,0.003000,0.249982,0,0);-webkit-transform:matrix(0.221399,-0.002657,0.003000,0.249982,0,0);}
.ma3_c01074{transform:matrix(0.221436,-0.001329,0.001500,0.249996,0,0);-ms-transform:matrix(0.221436,-0.001329,0.001500,0.249996,0,0);-webkit-transform:matrix(0.221436,-0.001329,0.001500,0.249996,0,0);}
.mf5_c01074{transform:matrix(0.221587,-0.001108,0.001250,0.249997,0,0);-ms-transform:matrix(0.221587,-0.001108,0.001250,0.249997,0,0);-webkit-transform:matrix(0.221587,-0.001108,0.001250,0.249997,0,0);}
.m1b_c01074{transform:matrix(0.221864,-0.002662,0.003000,0.249982,0,0);-ms-transform:matrix(0.221864,-0.002662,0.003000,0.249982,0,0);-webkit-transform:matrix(0.221864,-0.002662,0.003000,0.249982,0,0);}
.mde_c01074{transform:matrix(0.222357,-0.001112,0.001250,0.249997,0,0);-ms-transform:matrix(0.222357,-0.001112,0.001250,0.249997,0,0);-webkit-transform:matrix(0.222357,-0.001112,0.001250,0.249997,0,0);}
.mfb_c01074{transform:matrix(0.222435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222435,0.000000,0.000000,0.250000,0,0);}
.m23_c01074{transform:matrix(0.223254,-0.002679,0.003000,0.249982,0,0);-ms-transform:matrix(0.223254,-0.002679,0.003000,0.249982,0,0);-webkit-transform:matrix(0.223254,-0.002679,0.003000,0.249982,0,0);}
.m78_c01074{transform:matrix(0.223259,-0.002233,0.002500,0.249988,0,0);-ms-transform:matrix(0.223259,-0.002233,0.002500,0.249988,0,0);-webkit-transform:matrix(0.223259,-0.002233,0.002500,0.249988,0,0);}
.mae_c01074{transform:matrix(0.223267,-0.001116,0.001250,0.249997,0,0);-ms-transform:matrix(0.223267,-0.001116,0.001250,0.249997,0,0);-webkit-transform:matrix(0.223267,-0.001116,0.001250,0.249997,0,0);}
.m10_c01074{transform:matrix(0.223954,-0.002687,0.003000,0.249982,0,0);-ms-transform:matrix(0.223954,-0.002687,0.003000,0.249982,0,0);-webkit-transform:matrix(0.223954,-0.002687,0.003000,0.249982,0,0);}
.m9f_c01074{transform:matrix(0.224131,-0.001345,0.001500,0.249996,0,0);-ms-transform:matrix(0.224131,-0.001345,0.001500,0.249996,0,0);-webkit-transform:matrix(0.224131,-0.001345,0.001500,0.249996,0,0);}
.m6e_c01074{transform:matrix(0.225334,-0.002253,0.002500,0.249988,0,0);-ms-transform:matrix(0.225334,-0.002253,0.002500,0.249988,0,0);-webkit-transform:matrix(0.225334,-0.002253,0.002500,0.249988,0,0);}
.mbd_c01074{transform:matrix(0.225342,-0.001127,0.001250,0.249997,0,0);-ms-transform:matrix(0.225342,-0.001127,0.001250,0.249997,0,0);-webkit-transform:matrix(0.225342,-0.001127,0.001250,0.249997,0,0);}
.m30_c01074{transform:matrix(0.225829,-0.002710,0.003000,0.249982,0,0);-ms-transform:matrix(0.225829,-0.002710,0.003000,0.249982,0,0);-webkit-transform:matrix(0.225829,-0.002710,0.003000,0.249982,0,0);}
.m7c_c01074{transform:matrix(0.225874,-0.002259,0.002500,0.249988,0,0);-ms-transform:matrix(0.225874,-0.002259,0.002500,0.249988,0,0);-webkit-transform:matrix(0.225874,-0.002259,0.002500,0.249988,0,0);}
.mdd_c01074{transform:matrix(0.226152,-0.001131,0.001250,0.249997,0,0);-ms-transform:matrix(0.226152,-0.001131,0.001250,0.249997,0,0);-webkit-transform:matrix(0.226152,-0.001131,0.001250,0.249997,0,0);}
.mb_c01074{transform:matrix(0.226259,-0.005883,0.006498,0.249916,0,0);-ms-transform:matrix(0.226259,-0.005883,0.006498,0.249916,0,0);-webkit-transform:matrix(0.226259,-0.005883,0.006498,0.249916,0,0);}
.m8a_c01074{transform:matrix(0.226504,-0.002265,0.002500,0.249988,0,0);-ms-transform:matrix(0.226504,-0.002265,0.002500,0.249988,0,0);-webkit-transform:matrix(0.226504,-0.002265,0.002500,0.249988,0,0);}
.mb9_c01074{transform:matrix(0.226742,-0.001134,0.001250,0.249997,0,0);-ms-transform:matrix(0.226742,-0.001134,0.001250,0.249997,0,0);-webkit-transform:matrix(0.226742,-0.001134,0.001250,0.249997,0,0);}
.m5e_c01074{transform:matrix(0.227544,-0.002731,0.003000,0.249982,0,0);-ms-transform:matrix(0.227544,-0.002731,0.003000,0.249982,0,0);-webkit-transform:matrix(0.227544,-0.002731,0.003000,0.249982,0,0);}
.m2d_c01074{transform:matrix(0.227884,-0.002735,0.003000,0.249982,0,0);-ms-transform:matrix(0.227884,-0.002735,0.003000,0.249982,0,0);-webkit-transform:matrix(0.227884,-0.002735,0.003000,0.249982,0,0);}
.m91_c01074{transform:matrix(0.227934,-0.002279,0.002500,0.249988,0,0);-ms-transform:matrix(0.227934,-0.002279,0.002500,0.249988,0,0);-webkit-transform:matrix(0.227934,-0.002279,0.002500,0.249988,0,0);}
.m47_c01074{transform:matrix(0.228879,-0.002747,0.003000,0.249982,0,0);-ms-transform:matrix(0.228879,-0.002747,0.003000,0.249982,0,0);-webkit-transform:matrix(0.228879,-0.002747,0.003000,0.249982,0,0);}
.m8e_c01074{transform:matrix(0.228914,-0.002289,0.002500,0.249988,0,0);-ms-transform:matrix(0.228914,-0.002289,0.002500,0.249988,0,0);-webkit-transform:matrix(0.228914,-0.002289,0.002500,0.249988,0,0);}
.m9e_c01074{transform:matrix(0.229156,-0.001375,0.001500,0.249996,0,0);-ms-transform:matrix(0.229156,-0.001375,0.001500,0.249996,0,0);-webkit-transform:matrix(0.229156,-0.001375,0.001500,0.249996,0,0);}
.mef_c01074{transform:matrix(0.229217,-0.001146,0.001250,0.249997,0,0);-ms-transform:matrix(0.229217,-0.001146,0.001250,0.249997,0,0);-webkit-transform:matrix(0.229217,-0.001146,0.001250,0.249997,0,0);}
.m46_c01074{transform:matrix(0.229283,-0.002751,0.003000,0.249982,0,0);-ms-transform:matrix(0.229283,-0.002751,0.003000,0.249982,0,0);-webkit-transform:matrix(0.229283,-0.002751,0.003000,0.249982,0,0);}
.m4d_c01074{transform:matrix(0.229453,-0.002753,0.003000,0.249982,0,0);-ms-transform:matrix(0.229453,-0.002753,0.003000,0.249982,0,0);-webkit-transform:matrix(0.229453,-0.002753,0.003000,0.249982,0,0);}
.m26_c01074{transform:matrix(0.229723,-0.002757,0.003000,0.249982,0,0);-ms-transform:matrix(0.229723,-0.002757,0.003000,0.249982,0,0);-webkit-transform:matrix(0.229723,-0.002757,0.003000,0.249982,0,0);}
.m1d_c01074{transform:matrix(0.230268,-0.002763,0.003000,0.249982,0,0);-ms-transform:matrix(0.230268,-0.002763,0.003000,0.249982,0,0);-webkit-transform:matrix(0.230268,-0.002763,0.003000,0.249982,0,0);}
.m73_c01074{transform:matrix(0.230273,-0.002303,0.002500,0.249988,0,0);-ms-transform:matrix(0.230273,-0.002303,0.002500,0.249988,0,0);-webkit-transform:matrix(0.230273,-0.002303,0.002500,0.249988,0,0);}
.m7f_c01074{transform:matrix(0.230328,-0.002303,0.002500,0.249988,0,0);-ms-transform:matrix(0.230328,-0.002303,0.002500,0.249988,0,0);-webkit-transform:matrix(0.230328,-0.002303,0.002500,0.249988,0,0);}
.mfa_c01074{transform:matrix(0.230540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230540,0.000000,0.000000,0.250000,0,0);}
.mb2_c01074{transform:matrix(0.230892,-0.001154,0.001250,0.249997,0,0);-ms-transform:matrix(0.230892,-0.001154,0.001250,0.249997,0,0);-webkit-transform:matrix(0.230892,-0.001154,0.001250,0.249997,0,0);}
.ma7_c01074{transform:matrix(0.231871,-0.001391,0.001500,0.249996,0,0);-ms-transform:matrix(0.231871,-0.001391,0.001500,0.249996,0,0);-webkit-transform:matrix(0.231871,-0.001391,0.001500,0.249996,0,0);}
.m51_c01074{transform:matrix(0.232838,-0.002794,0.003000,0.249982,0,0);-ms-transform:matrix(0.232838,-0.002794,0.003000,0.249982,0,0);-webkit-transform:matrix(0.232838,-0.002794,0.003000,0.249982,0,0);}
.mab_c01074{transform:matrix(0.234781,-0.001409,0.001500,0.249996,0,0);-ms-transform:matrix(0.234781,-0.001409,0.001500,0.249996,0,0);-webkit-transform:matrix(0.234781,-0.001409,0.001500,0.249996,0,0);}
.ma0_c01074{transform:matrix(0.235326,-0.001412,0.001500,0.249996,0,0);-ms-transform:matrix(0.235326,-0.001412,0.001500,0.249996,0,0);-webkit-transform:matrix(0.235326,-0.001412,0.001500,0.249996,0,0);}
.m27_c01074{transform:matrix(0.235353,-0.002824,0.003000,0.249982,0,0);-ms-transform:matrix(0.235353,-0.002824,0.003000,0.249982,0,0);-webkit-transform:matrix(0.235353,-0.002824,0.003000,0.249982,0,0);}
.m6f_c01074{transform:matrix(0.235838,-0.002358,0.002500,0.249988,0,0);-ms-transform:matrix(0.235838,-0.002358,0.002500,0.249988,0,0);-webkit-transform:matrix(0.235838,-0.002358,0.002500,0.249988,0,0);}
.mf6_c01074{transform:matrix(0.235917,-0.001180,0.001250,0.249997,0,0);-ms-transform:matrix(0.235917,-0.001180,0.001250,0.249997,0,0);-webkit-transform:matrix(0.235917,-0.001180,0.001250,0.249997,0,0);}
.m4e_c01074{transform:matrix(0.235928,-0.002831,0.003000,0.249982,0,0);-ms-transform:matrix(0.235928,-0.002831,0.003000,0.249982,0,0);-webkit-transform:matrix(0.235928,-0.002831,0.003000,0.249982,0,0);}
.m49_c01074{transform:matrix(0.236108,-0.002833,0.003000,0.249982,0,0);-ms-transform:matrix(0.236108,-0.002833,0.003000,0.249982,0,0);-webkit-transform:matrix(0.236108,-0.002833,0.003000,0.249982,0,0);}
.m8_c01074{transform:matrix(0.236695,-0.006154,0.006498,0.249916,0,0);-ms-transform:matrix(0.236695,-0.006154,0.006498,0.249916,0,0);-webkit-transform:matrix(0.236695,-0.006154,0.006498,0.249916,0,0);}
.ma1_c01074{transform:matrix(0.238156,-0.001429,0.001500,0.249996,0,0);-ms-transform:matrix(0.238156,-0.001429,0.001500,0.249996,0,0);-webkit-transform:matrix(0.238156,-0.001429,0.001500,0.249996,0,0);}
.m3d_c01074{transform:matrix(0.238258,-0.002859,0.003000,0.249982,0,0);-ms-transform:matrix(0.238258,-0.002859,0.003000,0.249982,0,0);-webkit-transform:matrix(0.238258,-0.002859,0.003000,0.249982,0,0);}
.me_c01074{transform:matrix(0.238518,-0.002862,0.003000,0.249982,0,0);-ms-transform:matrix(0.238518,-0.002862,0.003000,0.249982,0,0);-webkit-transform:matrix(0.238518,-0.002862,0.003000,0.249982,0,0);}
.m3b_c01074{transform:matrix(0.238678,-0.002864,0.003000,0.249982,0,0);-ms-transform:matrix(0.238678,-0.002864,0.003000,0.249982,0,0);-webkit-transform:matrix(0.238678,-0.002864,0.003000,0.249982,0,0);}
.mc7_c01074{transform:matrix(0.238852,-0.001194,0.001250,0.249997,0,0);-ms-transform:matrix(0.238852,-0.001194,0.001250,0.249997,0,0);-webkit-transform:matrix(0.238852,-0.001194,0.001250,0.249997,0,0);}
.m24_c01074{transform:matrix(0.239433,-0.002873,0.003000,0.249982,0,0);-ms-transform:matrix(0.239433,-0.002873,0.003000,0.249982,0,0);-webkit-transform:matrix(0.239433,-0.002873,0.003000,0.249982,0,0);}
.m13_c01074{transform:matrix(0.239548,-0.002875,0.003000,0.249982,0,0);-ms-transform:matrix(0.239548,-0.002875,0.003000,0.249982,0,0);-webkit-transform:matrix(0.239548,-0.002875,0.003000,0.249982,0,0);}
.m82_c01074{transform:matrix(0.239553,-0.002396,0.002500,0.249988,0,0);-ms-transform:matrix(0.239553,-0.002396,0.002500,0.249988,0,0);-webkit-transform:matrix(0.239553,-0.002396,0.002500,0.249988,0,0);}
.m99_c01074{transform:matrix(0.239631,-0.001438,0.001500,0.249996,0,0);-ms-transform:matrix(0.239631,-0.001438,0.001500,0.249996,0,0);-webkit-transform:matrix(0.239631,-0.001438,0.001500,0.249996,0,0);}
.maf_c01074{transform:matrix(0.239907,-0.001200,0.001250,0.249997,0,0);-ms-transform:matrix(0.239907,-0.001200,0.001250,0.249997,0,0);-webkit-transform:matrix(0.239907,-0.001200,0.001250,0.249997,0,0);}
.m36_c01074{transform:matrix(0.240138,-0.002882,0.003000,0.249982,0,0);-ms-transform:matrix(0.240138,-0.002882,0.003000,0.249982,0,0);-webkit-transform:matrix(0.240138,-0.002882,0.003000,0.249982,0,0);}
.m42_c01074{transform:matrix(0.240538,-0.002886,0.003000,0.249982,0,0);-ms-transform:matrix(0.240538,-0.002886,0.003000,0.249982,0,0);-webkit-transform:matrix(0.240538,-0.002886,0.003000,0.249982,0,0);}
.m8c_c01074{transform:matrix(0.240948,-0.002409,0.002500,0.249988,0,0);-ms-transform:matrix(0.240948,-0.002409,0.002500,0.249988,0,0);-webkit-transform:matrix(0.240948,-0.002409,0.002500,0.249988,0,0);}
.m28_c01074{transform:matrix(0.241368,-0.002896,0.003000,0.249982,0,0);-ms-transform:matrix(0.241368,-0.002896,0.003000,0.249982,0,0);-webkit-transform:matrix(0.241368,-0.002896,0.003000,0.249982,0,0);}
.m88_c01074{transform:matrix(0.243068,-0.002431,0.002500,0.249988,0,0);-ms-transform:matrix(0.243068,-0.002431,0.002500,0.249988,0,0);-webkit-transform:matrix(0.243068,-0.002431,0.002500,0.249988,0,0);}
.m2b_c01074{transform:matrix(0.243382,-0.002921,0.003000,0.249982,0,0);-ms-transform:matrix(0.243382,-0.002921,0.003000,0.249982,0,0);-webkit-transform:matrix(0.243382,-0.002921,0.003000,0.249982,0,0);}
.m8b_c01074{transform:matrix(0.243683,-0.002437,0.002500,0.249988,0,0);-ms-transform:matrix(0.243683,-0.002437,0.002500,0.249988,0,0);-webkit-transform:matrix(0.243683,-0.002437,0.002500,0.249988,0,0);}
.mff_c01074{transform:matrix(0.244060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244060,0.000000,0.000000,0.250000,0,0);}
.m31_c01074{transform:matrix(0.244482,-0.002934,0.003000,0.249982,0,0);-ms-transform:matrix(0.244482,-0.002934,0.003000,0.249982,0,0);-webkit-transform:matrix(0.244482,-0.002934,0.003000,0.249982,0,0);}
.mb5_c01074{transform:matrix(0.244857,-0.001224,0.001250,0.249997,0,0);-ms-transform:matrix(0.244857,-0.001224,0.001250,0.249997,0,0);-webkit-transform:matrix(0.244857,-0.001224,0.001250,0.249997,0,0);}
.mfc_c01074{transform:matrix(0.245210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245210,0.000000,0.000000,0.250000,0,0);}
.m22_c01074{transform:matrix(0.245372,-0.002944,0.003000,0.249982,0,0);-ms-transform:matrix(0.245372,-0.002944,0.003000,0.249982,0,0);-webkit-transform:matrix(0.245372,-0.002944,0.003000,0.249982,0,0);}
.mec_c01074{transform:matrix(0.245382,-0.001227,0.001250,0.249997,0,0);-ms-transform:matrix(0.245382,-0.001227,0.001250,0.249997,0,0);-webkit-transform:matrix(0.245382,-0.001227,0.001250,0.249997,0,0);}
.mbc_c01074{transform:matrix(0.245477,-0.001227,0.001250,0.249997,0,0);-ms-transform:matrix(0.245477,-0.001227,0.001250,0.249997,0,0);-webkit-transform:matrix(0.245477,-0.001227,0.001250,0.249997,0,0);}
.m6d_c01074{transform:matrix(0.246583,-0.002466,0.002500,0.249988,0,0);-ms-transform:matrix(0.246583,-0.002466,0.002500,0.249988,0,0);-webkit-transform:matrix(0.246583,-0.002466,0.002500,0.249988,0,0);}
.m105_c01074{transform:matrix(0.246855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246855,0.000000,0.000000,0.250000,0,0);}
.m83_c01074{transform:matrix(0.246878,-0.002469,0.002500,0.249988,0,0);-ms-transform:matrix(0.246878,-0.002469,0.002500,0.249988,0,0);-webkit-transform:matrix(0.246878,-0.002469,0.002500,0.249988,0,0);}
.m86_c01074{transform:matrix(0.246928,-0.002469,0.002500,0.249988,0,0);-ms-transform:matrix(0.246928,-0.002469,0.002500,0.249988,0,0);-webkit-transform:matrix(0.246928,-0.002469,0.002500,0.249988,0,0);}
.mc6_c01074{transform:matrix(0.247332,-0.001237,0.001250,0.249997,0,0);-ms-transform:matrix(0.247332,-0.001237,0.001250,0.249997,0,0);-webkit-transform:matrix(0.247332,-0.001237,0.001250,0.249997,0,0);}
.m89_c01074{transform:matrix(0.247443,-0.002474,0.002500,0.249988,0,0);-ms-transform:matrix(0.247443,-0.002474,0.002500,0.249988,0,0);-webkit-transform:matrix(0.247443,-0.002474,0.002500,0.249988,0,0);}
.mee_c01074{transform:matrix(0.248007,-0.001240,0.001250,0.249997,0,0);-ms-transform:matrix(0.248007,-0.001240,0.001250,0.249997,0,0);-webkit-transform:matrix(0.248007,-0.001240,0.001250,0.249997,0,0);}
.mcd_c01074{transform:matrix(0.248102,-0.001241,0.001250,0.249997,0,0);-ms-transform:matrix(0.248102,-0.001241,0.001250,0.249997,0,0);-webkit-transform:matrix(0.248102,-0.001241,0.001250,0.249997,0,0);}
.mb0_c01074{transform:matrix(0.248207,-0.001241,0.001250,0.249997,0,0);-ms-transform:matrix(0.248207,-0.001241,0.001250,0.249997,0,0);-webkit-transform:matrix(0.248207,-0.001241,0.001250,0.249997,0,0);}
.mcb_c01074{transform:matrix(0.249012,-0.001245,0.001250,0.249997,0,0);-ms-transform:matrix(0.249012,-0.001245,0.001250,0.249997,0,0);-webkit-transform:matrix(0.249012,-0.001245,0.001250,0.249997,0,0);}
.m18_c01074{transform:matrix(0.249022,-0.002988,0.003000,0.249982,0,0);-ms-transform:matrix(0.249022,-0.002988,0.003000,0.249982,0,0);-webkit-transform:matrix(0.249022,-0.002988,0.003000,0.249982,0,0);}
.m7e_c01074{transform:matrix(0.250142,-0.002501,0.002500,0.249988,0,0);-ms-transform:matrix(0.250142,-0.002501,0.002500,0.249988,0,0);-webkit-transform:matrix(0.250142,-0.002501,0.002500,0.249988,0,0);}
.m108_c01074{transform:matrix(0.250642,-0.007018,0.006997,0.249902,0,0);-ms-transform:matrix(0.250642,-0.007018,0.006997,0.249902,0,0);-webkit-transform:matrix(0.250642,-0.007018,0.006997,0.249902,0,0);}
.me3_c01074{transform:matrix(0.250737,-0.001254,0.001250,0.249997,0,0);-ms-transform:matrix(0.250737,-0.001254,0.001250,0.249997,0,0);-webkit-transform:matrix(0.250737,-0.001254,0.001250,0.249997,0,0);}
.mf0_c01074{transform:matrix(0.250827,-0.001254,0.001250,0.249997,0,0);-ms-transform:matrix(0.250827,-0.001254,0.001250,0.249997,0,0);-webkit-transform:matrix(0.250827,-0.001254,0.001250,0.249997,0,0);}
.mb8_c01074{transform:matrix(0.251392,-0.001257,0.001250,0.249997,0,0);-ms-transform:matrix(0.251392,-0.001257,0.001250,0.249997,0,0);-webkit-transform:matrix(0.251392,-0.001257,0.001250,0.249997,0,0);}
.mea_c01074{transform:matrix(0.251807,-0.001259,0.001250,0.249997,0,0);-ms-transform:matrix(0.251807,-0.001259,0.001250,0.249997,0,0);-webkit-transform:matrix(0.251807,-0.001259,0.001250,0.249997,0,0);}
.me7_c01074{transform:matrix(0.254652,-0.001273,0.001250,0.249997,0,0);-ms-transform:matrix(0.254652,-0.001273,0.001250,0.249997,0,0);-webkit-transform:matrix(0.254652,-0.001273,0.001250,0.249997,0,0);}
.ma8_c01074{transform:matrix(0.254825,-0.001529,0.001500,0.249996,0,0);-ms-transform:matrix(0.254825,-0.001529,0.001500,0.249996,0,0);-webkit-transform:matrix(0.254825,-0.001529,0.001500,0.249996,0,0);}
.me9_c01074{transform:matrix(0.255402,-0.001277,0.001250,0.249997,0,0);-ms-transform:matrix(0.255402,-0.001277,0.001250,0.249997,0,0);-webkit-transform:matrix(0.255402,-0.001277,0.001250,0.249997,0,0);}
.m81_c01074{transform:matrix(0.256532,-0.002565,0.002500,0.249988,0,0);-ms-transform:matrix(0.256532,-0.002565,0.002500,0.249988,0,0);-webkit-transform:matrix(0.256532,-0.002565,0.002500,0.249988,0,0);}
.md_c01074{transform:matrix(0.257081,-0.003085,0.003000,0.249982,0,0);-ms-transform:matrix(0.257081,-0.003085,0.003000,0.249982,0,0);-webkit-transform:matrix(0.257081,-0.003085,0.003000,0.249982,0,0);}
.m7a_c01074{transform:matrix(0.257537,-0.002575,0.002500,0.249988,0,0);-ms-transform:matrix(0.257537,-0.002575,0.002500,0.249988,0,0);-webkit-transform:matrix(0.257537,-0.002575,0.002500,0.249988,0,0);}
.mf4_c01074{transform:matrix(0.258497,-0.001292,0.001250,0.249997,0,0);-ms-transform:matrix(0.258497,-0.001292,0.001250,0.249997,0,0);-webkit-transform:matrix(0.258497,-0.001292,0.001250,0.249997,0,0);}
.m76_c01074{transform:matrix(0.258647,-0.002586,0.002500,0.249988,0,0);-ms-transform:matrix(0.258647,-0.002586,0.002500,0.249988,0,0);-webkit-transform:matrix(0.258647,-0.002586,0.002500,0.249988,0,0);}
.m35_c01074{transform:matrix(0.258771,-0.003105,0.003000,0.249982,0,0);-ms-transform:matrix(0.258771,-0.003105,0.003000,0.249982,0,0);-webkit-transform:matrix(0.258771,-0.003105,0.003000,0.249982,0,0);}
.m87_c01074{transform:matrix(0.259042,-0.002590,0.002500,0.249988,0,0);-ms-transform:matrix(0.259042,-0.002590,0.002500,0.249988,0,0);-webkit-transform:matrix(0.259042,-0.002590,0.002500,0.249988,0,0);}
.mbb_c01074{transform:matrix(0.259207,-0.001296,0.001250,0.249997,0,0);-ms-transform:matrix(0.259207,-0.001296,0.001250,0.249997,0,0);-webkit-transform:matrix(0.259207,-0.001296,0.001250,0.249997,0,0);}
.m19_c01074{transform:matrix(0.259696,-0.003116,0.003000,0.249982,0,0);-ms-transform:matrix(0.259696,-0.003116,0.003000,0.249982,0,0);-webkit-transform:matrix(0.259696,-0.003116,0.003000,0.249982,0,0);}
.m85_c01074{transform:matrix(0.260067,-0.002601,0.002500,0.249988,0,0);-ms-transform:matrix(0.260067,-0.002601,0.002500,0.249988,0,0);-webkit-transform:matrix(0.260067,-0.002601,0.002500,0.249988,0,0);}
.m80_c01074{transform:matrix(0.260177,-0.002602,0.002500,0.249988,0,0);-ms-transform:matrix(0.260177,-0.002602,0.002500,0.249988,0,0);-webkit-transform:matrix(0.260177,-0.002602,0.002500,0.249988,0,0);}
.m15_c01074{transform:matrix(0.260406,-0.003125,0.003000,0.249982,0,0);-ms-transform:matrix(0.260406,-0.003125,0.003000,0.249982,0,0);-webkit-transform:matrix(0.260406,-0.003125,0.003000,0.249982,0,0);}
.m70_c01074{transform:matrix(0.261027,-0.002610,0.002500,0.249988,0,0);-ms-transform:matrix(0.261027,-0.002610,0.002500,0.249988,0,0);-webkit-transform:matrix(0.261027,-0.002610,0.002500,0.249988,0,0);}
.m7b_c01074{transform:matrix(0.261037,-0.002610,0.002500,0.249988,0,0);-ms-transform:matrix(0.261037,-0.002610,0.002500,0.249988,0,0);-webkit-transform:matrix(0.261037,-0.002610,0.002500,0.249988,0,0);}
.mce_c01074{transform:matrix(0.261047,-0.001305,0.001250,0.249997,0,0);-ms-transform:matrix(0.261047,-0.001305,0.001250,0.249997,0,0);-webkit-transform:matrix(0.261047,-0.001305,0.001250,0.249997,0,0);}
.m93_c01074{transform:matrix(0.261142,-0.002611,0.002500,0.249988,0,0);-ms-transform:matrix(0.261142,-0.002611,0.002500,0.249988,0,0);-webkit-transform:matrix(0.261142,-0.002611,0.002500,0.249988,0,0);}
.m1a_c01074{transform:matrix(0.261571,-0.003139,0.003000,0.249982,0,0);-ms-transform:matrix(0.261571,-0.003139,0.003000,0.249982,0,0);-webkit-transform:matrix(0.261571,-0.003139,0.003000,0.249982,0,0);}
.me4_c01074{transform:matrix(0.261832,-0.001309,0.001250,0.249997,0,0);-ms-transform:matrix(0.261832,-0.001309,0.001250,0.249997,0,0);-webkit-transform:matrix(0.261832,-0.001309,0.001250,0.249997,0,0);}
.m1c_c01074{transform:matrix(0.261901,-0.003143,0.003000,0.249982,0,0);-ms-transform:matrix(0.261901,-0.003143,0.003000,0.249982,0,0);-webkit-transform:matrix(0.261901,-0.003143,0.003000,0.249982,0,0);}
.m90_c01074{transform:matrix(0.262347,-0.002623,0.002500,0.249988,0,0);-ms-transform:matrix(0.262347,-0.002623,0.002500,0.249988,0,0);-webkit-transform:matrix(0.262347,-0.002623,0.002500,0.249988,0,0);}
.mb3_c01074{transform:matrix(0.263047,-0.001315,0.001250,0.249997,0,0);-ms-transform:matrix(0.263047,-0.001315,0.001250,0.249997,0,0);-webkit-transform:matrix(0.263047,-0.001315,0.001250,0.249997,0,0);}
.me2_c01074{transform:matrix(0.263072,-0.001315,0.001250,0.249997,0,0);-ms-transform:matrix(0.263072,-0.001315,0.001250,0.249997,0,0);-webkit-transform:matrix(0.263072,-0.001315,0.001250,0.249997,0,0);}
.m16_c01074{transform:matrix(0.263446,-0.003161,0.003000,0.249982,0,0);-ms-transform:matrix(0.263446,-0.003161,0.003000,0.249982,0,0);-webkit-transform:matrix(0.263446,-0.003161,0.003000,0.249982,0,0);}
.m71_c01074{transform:matrix(0.263777,-0.002638,0.002500,0.249988,0,0);-ms-transform:matrix(0.263777,-0.002638,0.002500,0.249988,0,0);-webkit-transform:matrix(0.263777,-0.002638,0.002500,0.249988,0,0);}
.mc_c01074{transform:matrix(0.264231,-0.003171,0.003000,0.249982,0,0);-ms-transform:matrix(0.264231,-0.003171,0.003000,0.249982,0,0);-webkit-transform:matrix(0.264231,-0.003171,0.003000,0.249982,0,0);}
.m7d_c01074{transform:matrix(0.264352,-0.002644,0.002500,0.249988,0,0);-ms-transform:matrix(0.264352,-0.002644,0.002500,0.249988,0,0);-webkit-transform:matrix(0.264352,-0.002644,0.002500,0.249988,0,0);}
.mb7_c01074{transform:matrix(0.264432,-0.001322,0.001250,0.249997,0,0);-ms-transform:matrix(0.264432,-0.001322,0.001250,0.249997,0,0);-webkit-transform:matrix(0.264432,-0.001322,0.001250,0.249997,0,0);}
.m109_c01074{transform:matrix(0.264511,-0.007406,0.006997,0.249902,0,0);-ms-transform:matrix(0.264511,-0.007406,0.006997,0.249902,0,0);-webkit-transform:matrix(0.264511,-0.007406,0.006997,0.249902,0,0);}
.m2f_c01074{transform:matrix(0.264526,-0.003174,0.003000,0.249982,0,0);-ms-transform:matrix(0.264526,-0.003174,0.003000,0.249982,0,0);-webkit-transform:matrix(0.264526,-0.003174,0.003000,0.249982,0,0);}
.mf3_c01074{transform:matrix(0.264647,-0.001323,0.001250,0.249997,0,0);-ms-transform:matrix(0.264647,-0.001323,0.001250,0.249997,0,0);-webkit-transform:matrix(0.264647,-0.001323,0.001250,0.249997,0,0);}
.m39_c01074{transform:matrix(0.264741,-0.003177,0.003000,0.249982,0,0);-ms-transform:matrix(0.264741,-0.003177,0.003000,0.249982,0,0);-webkit-transform:matrix(0.264741,-0.003177,0.003000,0.249982,0,0);}
.m11_c01074{transform:matrix(0.266011,-0.003192,0.003000,0.249982,0,0);-ms-transform:matrix(0.266011,-0.003192,0.003000,0.249982,0,0);-webkit-transform:matrix(0.266011,-0.003192,0.003000,0.249982,0,0);}
.m33_c01074{transform:matrix(0.266336,-0.003196,0.003000,0.249982,0,0);-ms-transform:matrix(0.266336,-0.003196,0.003000,0.249982,0,0);-webkit-transform:matrix(0.266336,-0.003196,0.003000,0.249982,0,0);}
.mb1_c01074{transform:matrix(0.266987,-0.001335,0.001250,0.249997,0,0);-ms-transform:matrix(0.266987,-0.001335,0.001250,0.249997,0,0);-webkit-transform:matrix(0.266987,-0.001335,0.001250,0.249997,0,0);}
.m79_c01074{transform:matrix(0.267342,-0.002673,0.002500,0.249988,0,0);-ms-transform:matrix(0.267342,-0.002673,0.002500,0.249988,0,0);-webkit-transform:matrix(0.267342,-0.002673,0.002500,0.249988,0,0);}
.m1e_c01074{transform:matrix(0.268531,-0.003222,0.003000,0.249982,0,0);-ms-transform:matrix(0.268531,-0.003222,0.003000,0.249982,0,0);-webkit-transform:matrix(0.268531,-0.003222,0.003000,0.249982,0,0);}
.md3_c01074{transform:matrix(0.268567,-0.001343,0.001250,0.249997,0,0);-ms-transform:matrix(0.268567,-0.001343,0.001250,0.249997,0,0);-webkit-transform:matrix(0.268567,-0.001343,0.001250,0.249997,0,0);}
.m106_c01074{transform:matrix(0.268860,-0.007528,0.006997,0.249902,0,0);-ms-transform:matrix(0.268860,-0.007528,0.006997,0.249902,0,0);-webkit-transform:matrix(0.268860,-0.007528,0.006997,0.249902,0,0);}
.mb4_c01074{transform:matrix(0.268957,-0.001345,0.001250,0.249997,0,0);-ms-transform:matrix(0.268957,-0.001345,0.001250,0.249997,0,0);-webkit-transform:matrix(0.268957,-0.001345,0.001250,0.249997,0,0);}
.mac_c01074{transform:matrix(0.269212,-0.001346,0.001250,0.249997,0,0);-ms-transform:matrix(0.269212,-0.001346,0.001250,0.249997,0,0);-webkit-transform:matrix(0.269212,-0.001346,0.001250,0.249997,0,0);}
.md5_c01074{transform:matrix(0.269422,-0.001347,0.001250,0.249997,0,0);-ms-transform:matrix(0.269422,-0.001347,0.001250,0.249997,0,0);-webkit-transform:matrix(0.269422,-0.001347,0.001250,0.249997,0,0);}
.m84_c01074{transform:matrix(0.270736,-0.002707,0.002500,0.249988,0,0);-ms-transform:matrix(0.270736,-0.002707,0.002500,0.249988,0,0);-webkit-transform:matrix(0.270736,-0.002707,0.002500,0.249988,0,0);}
.md4_c01074{transform:matrix(0.270982,-0.001355,0.001250,0.249997,0,0);-ms-transform:matrix(0.270982,-0.001355,0.001250,0.249997,0,0);-webkit-transform:matrix(0.270982,-0.001355,0.001250,0.249997,0,0);}
.mbe_c01074{transform:matrix(0.271847,-0.001359,0.001250,0.249997,0,0);-ms-transform:matrix(0.271847,-0.001359,0.001250,0.249997,0,0);-webkit-transform:matrix(0.271847,-0.001359,0.001250,0.249997,0,0);}
.m38_c01074{transform:matrix(0.272730,-0.003273,0.003000,0.249982,0,0);-ms-transform:matrix(0.272730,-0.003273,0.003000,0.249982,0,0);-webkit-transform:matrix(0.272730,-0.003273,0.003000,0.249982,0,0);}
.mf_c01074{transform:matrix(0.272740,-0.003273,0.003000,0.249982,0,0);-ms-transform:matrix(0.272740,-0.003273,0.003000,0.249982,0,0);-webkit-transform:matrix(0.272740,-0.003273,0.003000,0.249982,0,0);}
.me1_c01074{transform:matrix(0.272852,-0.001364,0.001250,0.249997,0,0);-ms-transform:matrix(0.272852,-0.001364,0.001250,0.249997,0,0);-webkit-transform:matrix(0.272852,-0.001364,0.001250,0.249997,0,0);}
.m74_c01074{transform:matrix(0.273781,-0.002738,0.002500,0.249988,0,0);-ms-transform:matrix(0.273781,-0.002738,0.002500,0.249988,0,0);-webkit-transform:matrix(0.273781,-0.002738,0.002500,0.249988,0,0);}
.m37_c01074{transform:matrix(0.274015,-0.003288,0.003000,0.249982,0,0);-ms-transform:matrix(0.274015,-0.003288,0.003000,0.249982,0,0);-webkit-transform:matrix(0.274015,-0.003288,0.003000,0.249982,0,0);}
.m21_c01074{transform:matrix(0.274345,-0.003292,0.003000,0.249982,0,0);-ms-transform:matrix(0.274345,-0.003292,0.003000,0.249982,0,0);-webkit-transform:matrix(0.274345,-0.003292,0.003000,0.249982,0,0);}
.m107_c01074{transform:matrix(0.274947,-0.007699,0.006997,0.249902,0,0);-ms-transform:matrix(0.274947,-0.007699,0.006997,0.249902,0,0);-webkit-transform:matrix(0.274947,-0.007699,0.006997,0.249902,0,0);}
.m41_c01074{transform:matrix(0.275580,-0.003307,0.003000,0.249982,0,0);-ms-transform:matrix(0.275580,-0.003307,0.003000,0.249982,0,0);-webkit-transform:matrix(0.275580,-0.003307,0.003000,0.249982,0,0);}
.m40_c01074{transform:matrix(0.277340,-0.003328,0.003000,0.249982,0,0);-ms-transform:matrix(0.277340,-0.003328,0.003000,0.249982,0,0);-webkit-transform:matrix(0.277340,-0.003328,0.003000,0.249982,0,0);}
.mad_c01074{transform:matrix(0.277577,-0.001388,0.001250,0.249997,0,0);-ms-transform:matrix(0.277577,-0.001388,0.001250,0.249997,0,0);-webkit-transform:matrix(0.277577,-0.001388,0.001250,0.249997,0,0);}
.m12_c01074{transform:matrix(0.278395,-0.003341,0.003000,0.249982,0,0);-ms-transform:matrix(0.278395,-0.003341,0.003000,0.249982,0,0);-webkit-transform:matrix(0.278395,-0.003341,0.003000,0.249982,0,0);}
.mba_c01074{transform:matrix(0.278447,-0.001392,0.001250,0.249997,0,0);-ms-transform:matrix(0.278447,-0.001392,0.001250,0.249997,0,0);-webkit-transform:matrix(0.278447,-0.001392,0.001250,0.249997,0,0);}
.m77_c01074{transform:matrix(0.279366,-0.002794,0.002500,0.249988,0,0);-ms-transform:matrix(0.279366,-0.002794,0.002500,0.249988,0,0);-webkit-transform:matrix(0.279366,-0.002794,0.002500,0.249988,0,0);}
.me6_c01074{transform:matrix(0.279842,-0.001399,0.001250,0.249997,0,0);-ms-transform:matrix(0.279842,-0.001399,0.001250,0.249997,0,0);-webkit-transform:matrix(0.279842,-0.001399,0.001250,0.249997,0,0);}
.m10a_c01074{transform:matrix(0.279905,-0.007837,0.006997,0.249902,0,0);-ms-transform:matrix(0.279905,-0.007837,0.006997,0.249902,0,0);-webkit-transform:matrix(0.279905,-0.007837,0.006997,0.249902,0,0);}
.m3c_c01074{transform:matrix(0.280540,-0.003366,0.003000,0.249982,0,0);-ms-transform:matrix(0.280540,-0.003366,0.003000,0.249982,0,0);-webkit-transform:matrix(0.280540,-0.003366,0.003000,0.249982,0,0);}
.me5_c01074{transform:matrix(0.280606,-0.001403,0.001250,0.249997,0,0);-ms-transform:matrix(0.280606,-0.001403,0.001250,0.249997,0,0);-webkit-transform:matrix(0.280606,-0.001403,0.001250,0.249997,0,0);}
.m43_c01074{transform:matrix(0.281780,-0.003381,0.003000,0.249982,0,0);-ms-transform:matrix(0.281780,-0.003381,0.003000,0.249982,0,0);-webkit-transform:matrix(0.281780,-0.003381,0.003000,0.249982,0,0);}
.m45_c01074{transform:matrix(0.282010,-0.003384,0.003000,0.249982,0,0);-ms-transform:matrix(0.282010,-0.003384,0.003000,0.249982,0,0);-webkit-transform:matrix(0.282010,-0.003384,0.003000,0.249982,0,0);}
.m3f_c01074{transform:matrix(0.283995,-0.003408,0.003000,0.249982,0,0);-ms-transform:matrix(0.283995,-0.003408,0.003000,0.249982,0,0);-webkit-transform:matrix(0.283995,-0.003408,0.003000,0.249982,0,0);}
.mb6_c01074{transform:matrix(0.284936,-0.001425,0.001250,0.249997,0,0);-ms-transform:matrix(0.284936,-0.001425,0.001250,0.249997,0,0);-webkit-transform:matrix(0.284936,-0.001425,0.001250,0.249997,0,0);}
.m44_c01074{transform:matrix(0.285599,-0.003427,0.003000,0.249982,0,0);-ms-transform:matrix(0.285599,-0.003427,0.003000,0.249982,0,0);-webkit-transform:matrix(0.285599,-0.003427,0.003000,0.249982,0,0);}
.m20_c01074{transform:matrix(0.286704,-0.003440,0.003000,0.249982,0,0);-ms-transform:matrix(0.286704,-0.003440,0.003000,0.249982,0,0);-webkit-transform:matrix(0.286704,-0.003440,0.003000,0.249982,0,0);}
.md0_c01074{transform:matrix(0.286821,-0.001434,0.001250,0.249997,0,0);-ms-transform:matrix(0.286821,-0.001434,0.001250,0.249997,0,0);-webkit-transform:matrix(0.286821,-0.001434,0.001250,0.249997,0,0);}
.m3e_c01074{transform:matrix(0.288114,-0.003457,0.003000,0.249982,0,0);-ms-transform:matrix(0.288114,-0.003457,0.003000,0.249982,0,0);-webkit-transform:matrix(0.288114,-0.003457,0.003000,0.249982,0,0);}
.m103_c01074{transform:matrix(0.289390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289390,0.000000,0.000000,0.250000,0,0);}
.mc9_c01074{transform:matrix(0.291011,-0.001455,0.001250,0.249997,0,0);-ms-transform:matrix(0.291011,-0.001455,0.001250,0.249997,0,0);-webkit-transform:matrix(0.291011,-0.001455,0.001250,0.249997,0,0);}
.m75_c01074{transform:matrix(0.292245,-0.002922,0.002500,0.249988,0,0);-ms-transform:matrix(0.292245,-0.002922,0.002500,0.249988,0,0);-webkit-transform:matrix(0.292245,-0.002922,0.002500,0.249988,0,0);}
.m94_c01074{transform:matrix(0.292295,-0.002923,0.002500,0.249988,0,0);-ms-transform:matrix(0.292295,-0.002923,0.002500,0.249988,0,0);-webkit-transform:matrix(0.292295,-0.002923,0.002500,0.249988,0,0);}
.mc8_c01074{transform:matrix(0.292836,-0.001464,0.001250,0.249997,0,0);-ms-transform:matrix(0.292836,-0.001464,0.001250,0.249997,0,0);-webkit-transform:matrix(0.292836,-0.001464,0.001250,0.249997,0,0);}
.md1_c01074{transform:matrix(0.292946,-0.001465,0.001250,0.249997,0,0);-ms-transform:matrix(0.292946,-0.001465,0.001250,0.249997,0,0);-webkit-transform:matrix(0.292946,-0.001465,0.001250,0.249997,0,0);}
.md2_c01074{transform:matrix(0.295246,-0.001476,0.001250,0.249997,0,0);-ms-transform:matrix(0.295246,-0.001476,0.001250,0.249997,0,0);-webkit-transform:matrix(0.295246,-0.001476,0.001250,0.249997,0,0);}
.m34_c01074{transform:matrix(0.296724,-0.003561,0.003000,0.249982,0,0);-ms-transform:matrix(0.296724,-0.003561,0.003000,0.249982,0,0);-webkit-transform:matrix(0.296724,-0.003561,0.003000,0.249982,0,0);}
.m104_c01074{transform:matrix(0.297280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297280,0.000000,0.000000,0.250000,0,0);}
.mcc_c01074{transform:matrix(0.300146,-0.001501,0.001250,0.249997,0,0);-ms-transform:matrix(0.300146,-0.001501,0.001250,0.249997,0,0);-webkit-transform:matrix(0.300146,-0.001501,0.001250,0.249997,0,0);}
.m102_c01074{transform:matrix(0.300575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300575,0.000000,0.000000,0.250000,0,0);}
.mca_c01074{transform:matrix(0.301291,-0.001506,0.001250,0.249997,0,0);-ms-transform:matrix(0.301291,-0.001506,0.001250,0.249997,0,0);-webkit-transform:matrix(0.301291,-0.001506,0.001250,0.249997,0,0);}
.md6_c01074{transform:matrix(0.302876,-0.001514,0.001250,0.249997,0,0);-ms-transform:matrix(0.302876,-0.001514,0.001250,0.249997,0,0);-webkit-transform:matrix(0.302876,-0.001514,0.001250,0.249997,0,0);}
.mcf_c01074{transform:matrix(0.303501,-0.001518,0.001250,0.249997,0,0);-ms-transform:matrix(0.303501,-0.001518,0.001250,0.249997,0,0);-webkit-transform:matrix(0.303501,-0.001518,0.001250,0.249997,0,0);}
.m72_c01074{transform:matrix(0.304025,-0.003040,0.002500,0.249988,0,0);-ms-transform:matrix(0.304025,-0.003040,0.002500,0.249988,0,0);-webkit-transform:matrix(0.304025,-0.003040,0.002500,0.249988,0,0);}
.m3a_c01074{transform:matrix(0.328656,-0.003944,0.003000,0.249982,0,0);-ms-transform:matrix(0.328656,-0.003944,0.003000,0.249982,0,0);-webkit-transform:matrix(0.328656,-0.003944,0.003000,0.249982,0,0);}
.me8_c01074{transform:matrix(0.329406,-0.001647,0.001250,0.249997,0,0);-ms-transform:matrix(0.329406,-0.001647,0.001250,0.249997,0,0);-webkit-transform:matrix(0.329406,-0.001647,0.001250,0.249997,0,0);}
.m1f_c01074{transform:matrix(0.395901,-0.004751,0.003000,0.249982,0,0);-ms-transform:matrix(0.395901,-0.004751,0.003000,0.249982,0,0);-webkit-transform:matrix(0.395901,-0.004751,0.003000,0.249982,0,0);}
.m3_c01074{transform:matrix(0.423225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423225,0.000000,0.000000,0.250000,0,0);}
.m1_c01074{transform:matrix(7.612155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(7.612155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(7.612155,0.000000,0.000000,0.250000,0,0);}
.v0_c01074{vertical-align:0.000000px;}
.ls0_c01074{letter-spacing:0.000000px;}
.sc__c01074{text-shadow:none;}
.sc0_c01074{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__c01074{-webkit-text-stroke:0px transparent;}
.sc0_c01074{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01074{word-spacing:0.000000px;}
.fc0_c01074{color:transparent;}
.fs1_c01074{font-size:18.000000px;}
.fs0_c01074{font-size:24.000000px;}
.fs13_c01074{font-size:66.000000px;}
.fsf_c01074{font-size:66.000825px;}
.fs6_c01074{font-size:66.004752px;}
.fsd_c01074{font-size:72.000900px;}
.fsa_c01074{font-size:72.003600px;}
.fs4_c01074{font-size:72.005184px;}
.fs15_c01074{font-size:72.028218px;}
.fs14_c01074{font-size:78.000000px;}
.fs11_c01074{font-size:78.000975px;}
.fsb_c01074{font-size:78.003900px;}
.fs12_c01074{font-size:84.000000px;}
.fsc_c01074{font-size:84.001512px;}
.fs5_c01074{font-size:84.006048px;}
.fs3_c01074{font-size:84.028387px;}
.fs10_c01074{font-size:90.001125px;}
.fs7_c01074{font-size:90.006480px;}
.fs2_c01074{font-size:96.000000px;}
.fs8_c01074{font-size:96.006912px;}
.fse_c01074{font-size:102.001275px;}
.fs9_c01074{font-size:102.005100px;}
.y0_c01074{bottom:0.000000px;}
.y2_c01074{bottom:113.130000px;}
.y101_c01074{bottom:130.150500px;}
.y102_c01074{bottom:132.292122px;}
.y103_c01074{bottom:134.764536px;}
.y104_c01074{bottom:136.654410px;}
.y105_c01074{bottom:138.777720px;}
.yff_c01074{bottom:171.270000px;}
.yfe_c01074{bottom:205.846500px;}
.yfb_c01074{bottom:241.378395px;}
.yfc_c01074{bottom:242.035282px;}
.yfd_c01074{bottom:246.382020px;}
.y100_c01074{bottom:274.723500px;}
.yf9_c01074{bottom:277.887645px;}
.yf5_c01074{bottom:277.887960px;}
.yf3_c01074{bottom:277.887975px;}
.yf2_c01074{bottom:277.888132px;}
.yf8_c01074{bottom:277.888252px;}
.yf7_c01074{bottom:277.888260px;}
.yf4_c01074{bottom:277.888267px;}
.yfa_c01074{bottom:277.888387px;}
.yf6_c01074{bottom:277.888410px;}
.yed_c01074{bottom:314.237040px;}
.yee_c01074{bottom:314.237790px;}
.yf0_c01074{bottom:314.238382px;}
.yef_c01074{bottom:314.238532px;}
.yf1_c01074{bottom:314.238675px;}
.ye2_c01074{bottom:347.484472px;}
.ye3_c01074{bottom:347.600422px;}
.ye4_c01074{bottom:347.750490px;}
.ye5_c01074{bottom:348.194678px;}
.ye6_c01074{bottom:348.360742px;}
.ye7_c01074{bottom:348.798120px;}
.ye8_c01074{bottom:349.137000px;}
.ye9_c01074{bottom:349.520400px;}
.yea_c01074{bottom:350.130570px;}
.yeb_c01074{bottom:350.746140px;}
.yec_c01074{bottom:350.851365px;}
.yda_c01074{bottom:382.586625px;}
.ydb_c01074{bottom:383.047920px;}
.ydc_c01074{bottom:383.706953px;}
.ydd_c01074{bottom:384.444202px;}
.yde_c01074{bottom:384.696817px;}
.ydf_c01074{bottom:385.101818px;}
.ye0_c01074{bottom:385.292633px;}
.ye1_c01074{bottom:386.110928px;}
.yd8_c01074{bottom:420.798488px;}
.yd7_c01074{bottom:420.798945px;}
.yd9_c01074{bottom:420.799088px;}
.yd6_c01074{bottom:420.799103px;}
.y1_c01074{bottom:442.800000px;}
.ycb_c01074{bottom:454.677840px;}
.ycc_c01074{bottom:455.367285px;}
.ycd_c01074{bottom:456.258832px;}
.yce_c01074{bottom:457.055610px;}
.ycf_c01074{bottom:457.463947px;}
.yd0_c01074{bottom:458.445848px;}
.yd1_c01074{bottom:458.745428px;}
.yd2_c01074{bottom:459.046335px;}
.yd3_c01074{bottom:459.933487px;}
.yd4_c01074{bottom:460.439115px;}
.yd5_c01074{bottom:460.641270px;}
.yc3_c01074{bottom:489.511230px;}
.yc4_c01074{bottom:490.739363px;}
.yc5_c01074{bottom:493.213725px;}
.yc6_c01074{bottom:493.724468px;}
.yc7_c01074{bottom:494.284980px;}
.yc8_c01074{bottom:495.511372px;}
.yc9_c01074{bottom:496.048282px;}
.yca_c01074{bottom:497.313847px;}
.yba_c01074{bottom:528.119790px;}
.ybb_c01074{bottom:528.651435px;}
.ybc_c01074{bottom:529.007685px;}
.ybd_c01074{bottom:529.272750px;}
.ybe_c01074{bottom:530.232150px;}
.ybf_c01074{bottom:530.767972px;}
.yc0_c01074{bottom:531.124245px;}
.yc1_c01074{bottom:531.389325px;}
.yc2_c01074{bottom:532.213102px;}
.yaf_c01074{bottom:562.680000px;}
.yb0_c01074{bottom:563.070210px;}
.yb1_c01074{bottom:563.618325px;}
.yb2_c01074{bottom:563.780340px;}
.yb3_c01074{bottom:563.944957px;}
.yb4_c01074{bottom:564.166425px;}
.yb5_c01074{bottom:564.389190px;}
.yb6_c01074{bottom:564.552615px;}
.yb7_c01074{bottom:564.884677px;}
.yb8_c01074{bottom:565.273478px;}
.yb9_c01074{bottom:565.444912px;}
.ya7_c01074{bottom:596.431854px;}
.ya8_c01074{bottom:597.586698px;}
.ya9_c01074{bottom:598.566900px;}
.yaa_c01074{bottom:599.562411px;}
.yab_c01074{bottom:599.894733px;}
.yac_c01074{bottom:601.226934px;}
.yad_c01074{bottom:601.874886px;}
.yae_c01074{bottom:602.551980px;}
.y9b_c01074{bottom:635.310000px;}
.y9c_c01074{bottom:635.575716px;}
.y9d_c01074{bottom:636.361335px;}
.y9e_c01074{bottom:636.633576px;}
.y9f_c01074{bottom:636.827994px;}
.ya0_c01074{bottom:637.160121px;}
.ya1_c01074{bottom:637.357770px;}
.ya2_c01074{bottom:637.749819px;}
.ya3_c01074{bottom:638.023572px;}
.ya4_c01074{bottom:638.561511px;}
.ya5_c01074{bottom:638.692596px;}
.ya6_c01074{bottom:638.886996px;}
.y96_c01074{bottom:667.977180px;}
.y97_c01074{bottom:668.592210px;}
.y98_c01074{bottom:672.513480px;}
.y99_c01074{bottom:676.626435px;}
.y9a_c01074{bottom:678.192465px;}
.y8b_c01074{bottom:702.539655px;}
.y8c_c01074{bottom:703.605780px;}
.y8d_c01074{bottom:704.530905px;}
.y8e_c01074{bottom:704.850810px;}
.y8f_c01074{bottom:706.080930px;}
.y90_c01074{bottom:707.025555px;}
.y91_c01074{bottom:707.491575px;}
.y92_c01074{bottom:708.406050px;}
.y93_c01074{bottom:708.874350px;}
.y94_c01074{bottom:711.043485px;}
.y95_c01074{bottom:711.674265px;}
.y7c_c01074{bottom:738.720165px;}
.y7d_c01074{bottom:739.638390px;}
.y7e_c01074{bottom:739.957425px;}
.y7f_c01074{bottom:741.207840px;}
.y80_c01074{bottom:741.647460px;}
.y81_c01074{bottom:742.565580px;}
.y82_c01074{bottom:742.897770px;}
.y83_c01074{bottom:743.348445px;}
.y84_c01074{bottom:744.119805px;}
.y85_c01074{bottom:745.049130px;}
.y86_c01074{bottom:745.688715px;}
.y87_c01074{bottom:746.139585px;}
.y88_c01074{bottom:746.917725px;}
.y89_c01074{bottom:747.543885px;}
.y8a_c01074{bottom:748.167345px;}
.y70_c01074{bottom:775.979475px;}
.y71_c01074{bottom:776.591235px;}
.y72_c01074{bottom:776.953740px;}
.y73_c01074{bottom:777.316215px;}
.y74_c01074{bottom:778.035750px;}
.y75_c01074{bottom:779.020785px;}
.y76_c01074{bottom:780.587670px;}
.y77_c01074{bottom:780.956430px;}
.y78_c01074{bottom:781.564950px;}
.y79_c01074{bottom:781.808535px;}
.y7a_c01074{bottom:782.545440px;}
.y7b_c01074{bottom:783.783675px;}
.y65_c01074{bottom:813.781500px;}
.y66_c01074{bottom:814.434240px;}
.y67_c01074{bottom:814.880235px;}
.y68_c01074{bottom:815.438790px;}
.y69_c01074{bottom:816.305505px;}
.y6a_c01074{bottom:817.193520px;}
.y6b_c01074{bottom:817.528680px;}
.y6c_c01074{bottom:817.858065px;}
.y6d_c01074{bottom:818.641005px;}
.y6e_c01074{bottom:818.973135px;}
.y6f_c01074{bottom:819.418560px;}
.y62_c01074{bottom:846.162726px;}
.y63_c01074{bottom:849.364278px;}
.y64_c01074{bottom:851.362962px;}
.y57_c01074{bottom:882.616080px;}
.y58_c01074{bottom:883.220640px;}
.y59_c01074{bottom:883.586772px;}
.y5a_c01074{bottom:884.304618px;}
.y5b_c01074{bottom:885.156516px;}
.y5c_c01074{bottom:885.747312px;}
.y5d_c01074{bottom:886.252152px;}
.y5e_c01074{bottom:887.218188px;}
.y5f_c01074{bottom:887.693052px;}
.y60_c01074{bottom:888.673338px;}
.y61_c01074{bottom:889.288896px;}
.y4a_c01074{bottom:916.908252px;}
.y4b_c01074{bottom:917.901042px;}
.y4c_c01074{bottom:918.347274px;}
.y4d_c01074{bottom:919.620876px;}
.y4e_c01074{bottom:920.045592px;}
.y4f_c01074{bottom:920.617752px;}
.y50_c01074{bottom:921.334248px;}
.y51_c01074{bottom:922.197306px;}
.y52_c01074{bottom:923.365848px;}
.y53_c01074{bottom:923.931456px;}
.y54_c01074{bottom:924.356460px;}
.y55_c01074{bottom:925.245108px;}
.y56_c01074{bottom:925.666458px;}
.y3e_c01074{bottom:952.280394px;}
.y3f_c01074{bottom:953.130744px;}
.y40_c01074{bottom:953.853882px;}
.y41_c01074{bottom:954.296712px;}
.y42_c01074{bottom:955.142106px;}
.y43_c01074{bottom:956.145552px;}
.y44_c01074{bottom:956.865234px;}
.y45_c01074{bottom:958.296546px;}
.y46_c01074{bottom:958.734600px;}
.y47_c01074{bottom:959.591808px;}
.y48_c01074{bottom:960.602298px;}
.y49_c01074{bottom:961.345566px;}
.y30_c01074{bottom:987.388530px;}
.y31_c01074{bottom:987.944286px;}
.y32_c01074{bottom:989.251542px;}
.y33_c01074{bottom:989.802990px;}
.y34_c01074{bottom:990.376044px;}
.y35_c01074{bottom:990.936432px;}
.y36_c01074{bottom:992.247780px;}
.y37_c01074{bottom:992.809248px;}
.y38_c01074{bottom:993.753486px;}
.y39_c01074{bottom:994.489686px;}
.y3a_c01074{bottom:995.638968px;}
.y3b_c01074{bottom:996.210762px;}
.y3c_c01074{bottom:997.905510px;}
.y3d_c01074{bottom:999.221634px;}
.y25_c01074{bottom:1022.492574px;}
.y26_c01074{bottom:1023.553350px;}
.y27_c01074{bottom:1024.071672px;}
.y28_c01074{bottom:1025.679978px;}
.y29_c01074{bottom:1027.238844px;}
.y2a_c01074{bottom:1029.190320px;}
.y2b_c01074{bottom:1029.722916px;}
.y2c_c01074{bottom:1030.250250px;}
.y2d_c01074{bottom:1032.043224px;}
.y2e_c01074{bottom:1032.578538px;}
.y2f_c01074{bottom:1033.645494px;}
.y17_c01074{bottom:1057.860336px;}
.y18_c01074{bottom:1058.932608px;}
.y19_c01074{bottom:1059.460194px;}
.y1a_c01074{bottom:1060.341816px;}
.y1b_c01074{bottom:1061.737944px;}
.y1c_c01074{bottom:1062.640122px;}
.y1d_c01074{bottom:1063.154682px;}
.y1e_c01074{bottom:1064.040846px;}
.y1f_c01074{bottom:1064.572974px;}
.y20_c01074{bottom:1065.630882px;}
.y21_c01074{bottom:1066.862070px;}
.y22_c01074{bottom:1067.424000px;}
.y23_c01074{bottom:1068.839910px;}
.y24_c01074{bottom:1069.220070px;}
.yc_c01074{bottom:1098.901500px;}
.yd_c01074{bottom:1099.698630px;}
.ye_c01074{bottom:1100.482818px;}
.yf_c01074{bottom:1100.871672px;}
.y10_c01074{bottom:1101.814332px;}
.y11_c01074{bottom:1102.206570px;}
.y12_c01074{bottom:1103.139744px;}
.y13_c01074{bottom:1103.531910px;}
.y14_c01074{bottom:1104.597402px;}
.y15_c01074{bottom:1105.148166px;}
.y16_c01074{bottom:1105.547154px;}
.y4_c01074{bottom:1129.416000px;}
.y5_c01074{bottom:1130.015430px;}
.y6_c01074{bottom:1130.859195px;}
.y7_c01074{bottom:1131.742155px;}
.y8_c01074{bottom:1132.564236px;}
.y9_c01074{bottom:1134.291390px;}
.ya_c01074{bottom:1135.184997px;}
.yb_c01074{bottom:1136.596251px;}
.y3_c01074{bottom:1211.641500px;}
.h3_c01074{height:18.000000px;}
.h2_c01074{height:24.000000px;}
.h15_c01074{height:66.000000px;}
.h11_c01074{height:66.000825px;}
.h8_c01074{height:66.004752px;}
.hf_c01074{height:72.000900px;}
.hc_c01074{height:72.003600px;}
.h6_c01074{height:72.005184px;}
.h17_c01074{height:72.028218px;}
.h16_c01074{height:78.000000px;}
.h13_c01074{height:78.000975px;}
.hd_c01074{height:78.003900px;}
.h14_c01074{height:84.000000px;}
.he_c01074{height:84.001512px;}
.h7_c01074{height:84.006048px;}
.h5_c01074{height:84.028387px;}
.h12_c01074{height:90.001125px;}
.h9_c01074{height:90.006480px;}
.h4_c01074{height:96.000000px;}
.ha_c01074{height:96.006912px;}
.h10_c01074{height:102.001275px;}
.hb_c01074{height:102.005100px;}
.h0_c01074{height:1246.320000px;}
.h1_c01074{height:1246.500000px;}
.w0_c01074{width:900.450000px;}
.w1_c01074{width:900.750000px;}
.x0_c01074{left:0.000000px;}
.x1_c01074{left:4.590000px;}
.x2_c01074{left:26.730000px;}
.x5_c01074{left:123.919500px;}
.x17_c01074{left:124.964532px;}
.x23_c01074{left:126.200562px;}
.x27_c01074{left:127.659960px;}
.x3f_c01074{left:128.774262px;}
.x5d_c01074{left:130.544460px;}
.x71_c01074{left:132.496980px;}
.x7c_c01074{left:133.645185px;}
.x88_c01074{left:135.202338px;}
.x9d_c01074{left:136.304872px;}
.xa6_c01074{left:138.318532px;}
.xbd_c01074{left:140.670000px;}
.xb6_c01074{left:142.290000px;}
.xbe_c01074{left:143.755500px;}
.x6_c01074{left:146.974500px;}
.x28_c01074{left:160.345998px;}
.xab_c01074{left:162.064133px;}
.xb8_c01074{left:165.780000px;}
.x7d_c01074{left:177.596430px;}
.x7_c01074{left:179.427000px;}
.x4a_c01074{left:184.260444px;}
.x5e_c01074{left:186.169905px;}
.xb9_c01074{left:189.270000px;}
.x18_c01074{left:191.942310px;}
.x34_c01074{left:193.514976px;}
.x66_c01074{left:196.705950px;}
.x40_c01074{left:205.130844px;}
.x72_c01074{left:208.656435px;}
.x89_c01074{left:212.172180px;}
.x8_c01074{left:213.387000px;}
.xa7_c01074{left:215.277150px;}
.x4b_c01074{left:217.521840px;}
.x5f_c01074{left:219.120075px;}
.xba_c01074{left:220.860000px;}
.x96_c01074{left:223.126005px;}
.x19_c01074{left:224.906226px;}
.xae_c01074{left:227.345498px;}
.xb4_c01074{left:229.980848px;}
.xd_c01074{left:235.335000px;}
.x29_c01074{left:237.279390px;}
.x41_c01074{left:239.441430px;}
.x52_c01074{left:240.780000px;}
.x9_c01074{left:245.005500px;}
.x35_c01074{left:249.150810px;}
.xaf_c01074{left:250.296068px;}
.x60_c01074{left:252.067245px;}
.x2a_c01074{left:269.731446px;}
.xb5_c01074{left:273.756158px;}
.x73_c01074{left:274.766295px;}
.x8a_c01074{left:277.535652px;}
.x1a_c01074{left:279.997080px;}
.x36_c01074{left:283.177896px;}
.x81_c01074{left:288.450000px;}
.x97_c01074{left:289.554008px;}
.x74_c01074{left:297.605880px;}
.xe_c01074{left:301.762500px;}
.x2b_c01074{left:303.483930px;}
.x53_c01074{left:306.054000px;}
.x67_c01074{left:308.796465px;}
.xa_c01074{left:311.434500px;}
.x9f_c01074{left:312.796042px;}
.x61_c01074{left:317.420085px;}
.x8e_c01074{left:322.458000px;}
.x24_c01074{left:325.433004px;}
.x98_c01074{left:334.103340px;}
.x2c_c01074{left:336.430950px;}
.x42_c01074{left:337.448760px;}
.x68_c01074{left:340.157205px;}
.x8b_c01074{left:343.950570px;}
.xb_c01074{left:345.804000px;}
.x37_c01074{left:348.251622px;}
.x54_c01074{left:350.653500px;}
.x8f_c01074{left:354.861000px;}
.x4c_c01074{left:360.335568px;}
.xbb_c01074{left:362.070000px;}
.x8c_c01074{left:366.086373px;}
.xf_c01074{left:367.111500px;}
.x43_c01074{left:370.091364px;}
.xbf_c01074{left:376.038000px;}
.xb0_c01074{left:381.517845px;}
.xb1_c01074{left:383.676645px;}
.x75_c01074{left:385.514370px;}
.x90_c01074{left:387.784500px;}
.x3_c01074{left:396.900000px;}
.xc_c01074{left:400.083000px;}
.xa0_c01074{left:401.349772px;}
.x55_c01074{left:406.509000px;}
.x2d_c01074{left:413.580324px;}
.x4_c01074{left:420.120000px;}
.x1b_c01074{left:423.640686px;}
.x38_c01074{left:425.496204px;}
.xbc_c01074{left:427.680000px;}
.x69_c01074{left:429.484635px;}
.x91_c01074{left:432.078000px;}
.x9e_c01074{left:434.638462px;}
.x2e_c01074{left:446.617344px;}
.xa8_c01074{left:448.032487px;}
.xc0_c01074{left:451.870500px;}
.x76_c01074{left:452.974170px;}
.x1c_c01074{left:455.769138px;}
.x7e_c01074{left:457.662225px;}
.x4d_c01074{left:460.014774px;}
.x6a_c01074{left:461.650845px;}
.x82_c01074{left:464.760000px;}
.x44_c01074{left:469.228176px;}
.xb7_c01074{left:472.770000px;}
.x92_c01074{left:476.631000px;}
.x10_c01074{left:478.071000px;}
.x39_c01074{left:480.844038px;}
.x77_c01074{left:486.224835px;}
.xa9_c01074{left:490.155277px;}
.x56_c01074{left:493.180500px;}
.x83_c01074{left:497.163000px;}
.x2f_c01074{left:502.175514px;}
.x93_c01074{left:509.316000px;}
.x11_c01074{left:510.757500px;}
.x6b_c01074{left:516.734640px;}
.x45_c01074{left:535.648884px;}
.xb2_c01074{left:537.578993px;}
.x8d_c01074{left:543.201306px;}
.x1d_c01074{left:544.330872px;}
.x30_c01074{left:545.522922px;}
.x4e_c01074{left:547.768818px;}
.x62_c01074{left:549.359760px;}
.x78_c01074{left:551.569725px;}
.x99_c01074{left:554.157540px;}
.xa1_c01074{left:555.794183px;}
.xaa_c01074{left:557.654940px;}
.x51_c01074{left:562.890696px;}
.xac_c01074{left:569.249633px;}
.x94_c01074{left:575.728500px;}
.x25_c01074{left:578.082372px;}
.x57_c01074{left:581.982000px;}
.x6c_c01074{left:583.114485px;}
.x79_c01074{left:585.048390px;}
.x12_c01074{left:588.522000px;}
.x3a_c01074{left:590.993724px;}
.x9a_c01074{left:598.711372px;}
.x1e_c01074{left:610.486704px;}
.x31_c01074{left:613.167372px;}
.x58_c01074{left:615.498000px;}
.x13_c01074{left:621.202500px;}
.xa2_c01074{left:622.490347px;}
.x3b_c01074{left:624.747828px;}
.x6d_c01074{left:628.771155px;}
.x9b_c01074{left:631.926878px;}
.x63_c01074{left:638.236875px;}
.x32_c01074{left:646.814856px;}
.x59_c01074{left:648.436500px;}
.x84_c01074{left:650.800500px;}
.x95_c01074{left:653.488500px;}
.x64_c01074{left:660.345150px;}
.x46_c01074{left:669.034782px;}
.x4f_c01074{left:680.032902px;}
.x1f_c01074{left:687.457014px;}
.x3c_c01074{left:690.681036px;}
.x85_c01074{left:696.426000px;}
.x47_c01074{left:701.701386px;}
.x14_c01074{left:709.993500px;}
.x6e_c01074{left:716.568645px;}
.xa3_c01074{left:721.018875px;}
.x20_c01074{left:722.532822px;}
.x5a_c01074{left:726.730500px;}
.x9c_c01074{left:734.880832px;}
.x50_c01074{left:735.955068px;}
.x7a_c01074{left:740.005695px;}
.x33_c01074{left:746.537880px;}
.x7f_c01074{left:751.495980px;}
.x15_c01074{left:755.890500px;}
.x5b_c01074{left:759.943500px;}
.x6f_c01074{left:761.332860px;}
.x3d_c01074{left:768.387600px;}
.x48_c01074{left:770.004558px;}
.xa4_c01074{left:777.143250px;}
.x7b_c01074{left:785.081895px;}
.x86_c01074{left:786.082500px;}
.x16_c01074{left:789.139500px;}
.xa5_c01074{left:799.573800px;}
.x49_c01074{left:802.366662px;}
.x5c_c01074{left:804.486000px;}
.x70_c01074{left:805.827075px;}
.x87_c01074{left:807.930000px;}
.x21_c01074{left:811.021074px;}
.xad_c01074{left:814.397633px;}
.x26_c01074{left:823.202100px;}
.x3e_c01074{left:825.575916px;}
.x22_c01074{left:834.824940px;}
.x65_c01074{left:839.857350px;}
.xb3_c01074{left:847.812248px;}
.x80_c01074{left:863.394510px;}
@media print{
.v0_c01074{vertical-align:0.000000pt;}
.ls0_c01074{letter-spacing:0.000000pt;}
.ws0_c01074{word-spacing:0.000000pt;}
.fs1_c01074{font-size:16.000000pt;}
.fs0_c01074{font-size:21.333333pt;}
.fs13_c01074{font-size:58.666667pt;}
.fsf_c01074{font-size:58.667400pt;}
.fs6_c01074{font-size:58.670891pt;}
.fsd_c01074{font-size:64.000800pt;}
.fsa_c01074{font-size:64.003200pt;}
.fs4_c01074{font-size:64.004608pt;}
.fs15_c01074{font-size:64.025083pt;}
.fs14_c01074{font-size:69.333333pt;}
.fs11_c01074{font-size:69.334200pt;}
.fsb_c01074{font-size:69.336800pt;}
.fs12_c01074{font-size:74.666667pt;}
.fsc_c01074{font-size:74.668011pt;}
.fs5_c01074{font-size:74.672042pt;}
.fs3_c01074{font-size:74.691900pt;}
.fs10_c01074{font-size:80.001000pt;}
.fs7_c01074{font-size:80.005760pt;}
.fs2_c01074{font-size:85.333333pt;}
.fs8_c01074{font-size:85.339477pt;}
.fse_c01074{font-size:90.667800pt;}
.fs9_c01074{font-size:90.671200pt;}
.y0_c01074{bottom:0.000000pt;}
.y2_c01074{bottom:100.560000pt;}
.y101_c01074{bottom:115.689333pt;}
.y102_c01074{bottom:117.592997pt;}
.y103_c01074{bottom:119.790699pt;}
.y104_c01074{bottom:121.470587pt;}
.y105_c01074{bottom:123.357973pt;}
.yff_c01074{bottom:152.240000pt;}
.yfe_c01074{bottom:182.974667pt;}
.yfb_c01074{bottom:214.558573pt;}
.yfc_c01074{bottom:215.142473pt;}
.yfd_c01074{bottom:219.006240pt;}
.y100_c01074{bottom:244.198667pt;}
.yf9_c01074{bottom:247.011240pt;}
.yf5_c01074{bottom:247.011520pt;}
.yf3_c01074{bottom:247.011533pt;}
.yf2_c01074{bottom:247.011673pt;}
.yf8_c01074{bottom:247.011780pt;}
.yf7_c01074{bottom:247.011787pt;}
.yf4_c01074{bottom:247.011793pt;}
.yfa_c01074{bottom:247.011900pt;}
.yf6_c01074{bottom:247.011920pt;}
.yed_c01074{bottom:279.321813pt;}
.yee_c01074{bottom:279.322480pt;}
.yf0_c01074{bottom:279.323007pt;}
.yef_c01074{bottom:279.323140pt;}
.yf1_c01074{bottom:279.323267pt;}
.ye2_c01074{bottom:308.875087pt;}
.ye3_c01074{bottom:308.978153pt;}
.ye4_c01074{bottom:309.111547pt;}
.ye5_c01074{bottom:309.506380pt;}
.ye6_c01074{bottom:309.653993pt;}
.ye7_c01074{bottom:310.042773pt;}
.ye8_c01074{bottom:310.344000pt;}
.ye9_c01074{bottom:310.684800pt;}
.yea_c01074{bottom:311.227173pt;}
.yeb_c01074{bottom:311.774347pt;}
.yec_c01074{bottom:311.867880pt;}
.yda_c01074{bottom:340.077000pt;}
.ydb_c01074{bottom:340.487040pt;}
.ydc_c01074{bottom:341.072847pt;}
.ydd_c01074{bottom:341.728180pt;}
.yde_c01074{bottom:341.952727pt;}
.ydf_c01074{bottom:342.312727pt;}
.ye0_c01074{bottom:342.482340pt;}
.ye1_c01074{bottom:343.209713pt;}
.yd8_c01074{bottom:374.043100pt;}
.yd7_c01074{bottom:374.043507pt;}
.yd9_c01074{bottom:374.043633pt;}
.yd6_c01074{bottom:374.043647pt;}
.y1_c01074{bottom:393.600000pt;}
.ycb_c01074{bottom:404.158080pt;}
.ycc_c01074{bottom:404.770920pt;}
.ycd_c01074{bottom:405.563407pt;}
.yce_c01074{bottom:406.271653pt;}
.ycf_c01074{bottom:406.634620pt;}
.yd0_c01074{bottom:407.507420pt;}
.yd1_c01074{bottom:407.773713pt;}
.yd2_c01074{bottom:408.041187pt;}
.yd3_c01074{bottom:408.829767pt;}
.yd4_c01074{bottom:409.279213pt;}
.yd5_c01074{bottom:409.458907pt;}
.yc3_c01074{bottom:435.121093pt;}
.yc4_c01074{bottom:436.212767pt;}
.yc5_c01074{bottom:438.412200pt;}
.yc6_c01074{bottom:438.866193pt;}
.yc7_c01074{bottom:439.364427pt;}
.yc8_c01074{bottom:440.454553pt;}
.yc9_c01074{bottom:440.931807pt;}
.yca_c01074{bottom:442.056753pt;}
.yba_c01074{bottom:469.439813pt;}
.ybb_c01074{bottom:469.912387pt;}
.ybc_c01074{bottom:470.229053pt;}
.ybd_c01074{bottom:470.464667pt;}
.ybe_c01074{bottom:471.317467pt;}
.ybf_c01074{bottom:471.793753pt;}
.yc0_c01074{bottom:472.110440pt;}
.yc1_c01074{bottom:472.346067pt;}
.yc2_c01074{bottom:473.078313pt;}
.yaf_c01074{bottom:500.160000pt;}
.yb0_c01074{bottom:500.506853pt;}
.yb1_c01074{bottom:500.994067pt;}
.yb2_c01074{bottom:501.138080pt;}
.yb3_c01074{bottom:501.284407pt;}
.yb4_c01074{bottom:501.481267pt;}
.yb5_c01074{bottom:501.679280pt;}
.yb6_c01074{bottom:501.824547pt;}
.yb7_c01074{bottom:502.119713pt;}
.yb8_c01074{bottom:502.465313pt;}
.yb9_c01074{bottom:502.617700pt;}
.ya7_c01074{bottom:530.161648pt;}
.ya8_c01074{bottom:531.188176pt;}
.ya9_c01074{bottom:532.059467pt;}
.yaa_c01074{bottom:532.944365pt;}
.yab_c01074{bottom:533.239763pt;}
.yac_c01074{bottom:534.423941pt;}
.yad_c01074{bottom:534.999899pt;}
.yae_c01074{bottom:535.601760pt;}
.y9b_c01074{bottom:564.720000pt;}
.y9c_c01074{bottom:564.956192pt;}
.y9d_c01074{bottom:565.654520pt;}
.y9e_c01074{bottom:565.896512pt;}
.y9f_c01074{bottom:566.069328pt;}
.ya0_c01074{bottom:566.364552pt;}
.ya1_c01074{bottom:566.540240pt;}
.ya2_c01074{bottom:566.888728pt;}
.ya3_c01074{bottom:567.132064pt;}
.ya4_c01074{bottom:567.610232pt;}
.ya5_c01074{bottom:567.726752pt;}
.ya6_c01074{bottom:567.899552pt;}
.y96_c01074{bottom:593.757493pt;}
.y97_c01074{bottom:594.304187pt;}
.y98_c01074{bottom:597.789760pt;}
.y99_c01074{bottom:601.445720pt;}
.y9a_c01074{bottom:602.837747pt;}
.y8b_c01074{bottom:624.479693pt;}
.y8c_c01074{bottom:625.427360pt;}
.y8d_c01074{bottom:626.249693pt;}
.y8e_c01074{bottom:626.534053pt;}
.y8f_c01074{bottom:627.627493pt;}
.y90_c01074{bottom:628.467160pt;}
.y91_c01074{bottom:628.881400pt;}
.y92_c01074{bottom:629.694267pt;}
.y93_c01074{bottom:630.110533pt;}
.y94_c01074{bottom:632.038653pt;}
.y95_c01074{bottom:632.599347pt;}
.y7c_c01074{bottom:656.640147pt;}
.y7d_c01074{bottom:657.456347pt;}
.y7e_c01074{bottom:657.739933pt;}
.y7f_c01074{bottom:658.851413pt;}
.y80_c01074{bottom:659.242187pt;}
.y81_c01074{bottom:660.058293pt;}
.y82_c01074{bottom:660.353573pt;}
.y83_c01074{bottom:660.754173pt;}
.y84_c01074{bottom:661.439827pt;}
.y85_c01074{bottom:662.265893pt;}
.y86_c01074{bottom:662.834413pt;}
.y87_c01074{bottom:663.235187pt;}
.y88_c01074{bottom:663.926867pt;}
.y89_c01074{bottom:664.483453pt;}
.y8a_c01074{bottom:665.037640pt;}
.y70_c01074{bottom:689.759533pt;}
.y71_c01074{bottom:690.303320pt;}
.y72_c01074{bottom:690.625547pt;}
.y73_c01074{bottom:690.947747pt;}
.y74_c01074{bottom:691.587333pt;}
.y75_c01074{bottom:692.462920pt;}
.y76_c01074{bottom:693.855707pt;}
.y77_c01074{bottom:694.183493pt;}
.y78_c01074{bottom:694.724400pt;}
.y79_c01074{bottom:694.940920pt;}
.y7a_c01074{bottom:695.595947pt;}
.y7b_c01074{bottom:696.696600pt;}
.y65_c01074{bottom:723.361333pt;}
.y66_c01074{bottom:723.941547pt;}
.y67_c01074{bottom:724.337987pt;}
.y68_c01074{bottom:724.834480pt;}
.y69_c01074{bottom:725.604893pt;}
.y6a_c01074{bottom:726.394240pt;}
.y6b_c01074{bottom:726.692160pt;}
.y6c_c01074{bottom:726.984947pt;}
.y6d_c01074{bottom:727.680893pt;}
.y6e_c01074{bottom:727.976120pt;}
.y6f_c01074{bottom:728.372053pt;}
.y62_c01074{bottom:752.144645pt;}
.y63_c01074{bottom:754.990469pt;}
.y64_c01074{bottom:756.767077pt;}
.y57_c01074{bottom:784.547627pt;}
.y58_c01074{bottom:785.085013pt;}
.y59_c01074{bottom:785.410464pt;}
.y5a_c01074{bottom:786.048549pt;}
.y5b_c01074{bottom:786.805792pt;}
.y5c_c01074{bottom:787.330944pt;}
.y5d_c01074{bottom:787.779691pt;}
.y5e_c01074{bottom:788.638389pt;}
.y5f_c01074{bottom:789.060491pt;}
.y60_c01074{bottom:789.931856pt;}
.y61_c01074{bottom:790.479019pt;}
.y4a_c01074{bottom:815.029557pt;}
.y4b_c01074{bottom:815.912037pt;}
.y4c_c01074{bottom:816.308688pt;}
.y4d_c01074{bottom:817.440779pt;}
.y4e_c01074{bottom:817.818304pt;}
.y4f_c01074{bottom:818.326891pt;}
.y50_c01074{bottom:818.963776pt;}
.y51_c01074{bottom:819.730939pt;}
.y52_c01074{bottom:820.769643pt;}
.y53_c01074{bottom:821.272405pt;}
.y54_c01074{bottom:821.650187pt;}
.y55_c01074{bottom:822.440096pt;}
.y56_c01074{bottom:822.814629pt;}
.y3e_c01074{bottom:846.471461pt;}
.y3f_c01074{bottom:847.227328pt;}
.y40_c01074{bottom:847.870117pt;}
.y41_c01074{bottom:848.263744pt;}
.y42_c01074{bottom:849.015205pt;}
.y43_c01074{bottom:849.907157pt;}
.y44_c01074{bottom:850.546875pt;}
.y45_c01074{bottom:851.819152pt;}
.y46_c01074{bottom:852.208533pt;}
.y47_c01074{bottom:852.970496pt;}
.y48_c01074{bottom:853.868709pt;}
.y49_c01074{bottom:854.529392pt;}
.y30_c01074{bottom:877.678693pt;}
.y31_c01074{bottom:878.172699pt;}
.y32_c01074{bottom:879.334704pt;}
.y33_c01074{bottom:879.824880pt;}
.y34_c01074{bottom:880.334261pt;}
.y35_c01074{bottom:880.832384pt;}
.y36_c01074{bottom:881.998027pt;}
.y37_c01074{bottom:882.497109pt;}
.y38_c01074{bottom:883.336432pt;}
.y39_c01074{bottom:883.990832pt;}
.y3a_c01074{bottom:885.012416pt;}
.y3b_c01074{bottom:885.520677pt;}
.y3c_c01074{bottom:887.027120pt;}
.y3d_c01074{bottom:888.197008pt;}
.y25_c01074{bottom:908.882288pt;}
.y26_c01074{bottom:909.825200pt;}
.y27_c01074{bottom:910.285931pt;}
.y28_c01074{bottom:911.715536pt;}
.y29_c01074{bottom:913.101195pt;}
.y2a_c01074{bottom:914.835840pt;}
.y2b_c01074{bottom:915.309259pt;}
.y2c_c01074{bottom:915.778000pt;}
.y2d_c01074{bottom:917.371755pt;}
.y2e_c01074{bottom:917.847589pt;}
.y2f_c01074{bottom:918.795995pt;}
.y17_c01074{bottom:940.320299pt;}
.y18_c01074{bottom:941.273429pt;}
.y19_c01074{bottom:941.742395pt;}
.y1a_c01074{bottom:942.526059pt;}
.y1b_c01074{bottom:943.767061pt;}
.y1c_c01074{bottom:944.568997pt;}
.y1d_c01074{bottom:945.026384pt;}
.y1e_c01074{bottom:945.814085pt;}
.y1f_c01074{bottom:946.287088pt;}
.y20_c01074{bottom:947.227451pt;}
.y21_c01074{bottom:948.321840pt;}
.y22_c01074{bottom:948.821333pt;}
.y23_c01074{bottom:950.079920pt;}
.y24_c01074{bottom:950.417840pt;}
.yc_c01074{bottom:976.801333pt;}
.yd_c01074{bottom:977.509893pt;}
.ye_c01074{bottom:978.206949pt;}
.yf_c01074{bottom:978.552597pt;}
.y10_c01074{bottom:979.390517pt;}
.y11_c01074{bottom:979.739173pt;}
.y12_c01074{bottom:980.568661pt;}
.y13_c01074{bottom:980.917253pt;}
.y14_c01074{bottom:981.864357pt;}
.y15_c01074{bottom:982.353925pt;}
.y16_c01074{bottom:982.708581pt;}
.y4_c01074{bottom:1003.925333pt;}
.y5_c01074{bottom:1004.458160pt;}
.y6_c01074{bottom:1005.208173pt;}
.y7_c01074{bottom:1005.993027pt;}
.y8_c01074{bottom:1006.723765pt;}
.y9_c01074{bottom:1008.259013pt;}
.ya_c01074{bottom:1009.053331pt;}
.yb_c01074{bottom:1010.307779pt;}
.y3_c01074{bottom:1077.014667pt;}
.h3_c01074{height:16.000000pt;}
.h2_c01074{height:21.333333pt;}
.h15_c01074{height:58.666667pt;}
.h11_c01074{height:58.667400pt;}
.h8_c01074{height:58.670891pt;}
.hf_c01074{height:64.000800pt;}
.hc_c01074{height:64.003200pt;}
.h6_c01074{height:64.004608pt;}
.h17_c01074{height:64.025083pt;}
.h16_c01074{height:69.333333pt;}
.h13_c01074{height:69.334200pt;}
.hd_c01074{height:69.336800pt;}
.h14_c01074{height:74.666667pt;}
.he_c01074{height:74.668011pt;}
.h7_c01074{height:74.672042pt;}
.h5_c01074{height:74.691900pt;}
.h12_c01074{height:80.001000pt;}
.h9_c01074{height:80.005760pt;}
.h4_c01074{height:85.333333pt;}
.ha_c01074{height:85.339477pt;}
.h10_c01074{height:90.667800pt;}
.hb_c01074{height:90.671200pt;}
.h0_c01074{height:1107.840000pt;}
.h1_c01074{height:1108.000000pt;}
.w0_c01074{width:800.400000pt;}
.w1_c01074{width:800.666667pt;}
.x0_c01074{left:0.000000pt;}
.x1_c01074{left:4.080000pt;}
.x2_c01074{left:23.760000pt;}
.x5_c01074{left:110.150667pt;}
.x17_c01074{left:111.079584pt;}
.x23_c01074{left:112.178277pt;}
.x27_c01074{left:113.475520pt;}
.x3f_c01074{left:114.466011pt;}
.x5d_c01074{left:116.039520pt;}
.x71_c01074{left:117.775093pt;}
.x7c_c01074{left:118.795720pt;}
.x88_c01074{left:120.179856pt;}
.x9d_c01074{left:121.159887pt;}
.xa6_c01074{left:122.949807pt;}
.xbd_c01074{left:125.040000pt;}
.xb6_c01074{left:126.480000pt;}
.xbe_c01074{left:127.782667pt;}
.x6_c01074{left:130.644000pt;}
.x28_c01074{left:142.529776pt;}
.xab_c01074{left:144.057007pt;}
.xb8_c01074{left:147.360000pt;}
.x7d_c01074{left:157.863493pt;}
.x7_c01074{left:159.490667pt;}
.x4a_c01074{left:163.787061pt;}
.x5e_c01074{left:165.484360pt;}
.xb9_c01074{left:168.240000pt;}
.x18_c01074{left:170.615387pt;}
.x34_c01074{left:172.013312pt;}
.x66_c01074{left:174.849733pt;}
.x40_c01074{left:182.338528pt;}
.x72_c01074{left:185.472387pt;}
.x89_c01074{left:188.597493pt;}
.x8_c01074{left:189.677333pt;}
.xa7_c01074{left:191.357467pt;}
.x4b_c01074{left:193.352747pt;}
.x5f_c01074{left:194.773400pt;}
.xba_c01074{left:196.320000pt;}
.x96_c01074{left:198.334227pt;}
.x19_c01074{left:199.916645pt;}
.xae_c01074{left:202.084887pt;}
.xb4_c01074{left:204.427420pt;}
.xd_c01074{left:209.186667pt;}
.x29_c01074{left:210.915013pt;}
.x41_c01074{left:212.836827pt;}
.x52_c01074{left:214.026667pt;}
.x9_c01074{left:217.782667pt;}
.x35_c01074{left:221.467387pt;}
.xaf_c01074{left:222.485393pt;}
.x60_c01074{left:224.059773pt;}
.x2a_c01074{left:239.761285pt;}
.xb5_c01074{left:243.338807pt;}
.x73_c01074{left:244.236707pt;}
.x8a_c01074{left:246.698357pt;}
.x1a_c01074{left:248.886293pt;}
.x36_c01074{left:251.713685pt;}
.x81_c01074{left:256.400000pt;}
.x97_c01074{left:257.381340pt;}
.x74_c01074{left:264.538560pt;}
.xe_c01074{left:268.233333pt;}
.x2b_c01074{left:269.763493pt;}
.x53_c01074{left:272.048000pt;}
.x67_c01074{left:274.485747pt;}
.xa_c01074{left:276.830667pt;}
.x9f_c01074{left:278.040927pt;}
.x61_c01074{left:282.151187pt;}
.x8e_c01074{left:286.629333pt;}
.x24_c01074{left:289.273781pt;}
.x98_c01074{left:296.980747pt;}
.x2c_c01074{left:299.049733pt;}
.x42_c01074{left:299.954453pt;}
.x68_c01074{left:302.361960pt;}
.x8b_c01074{left:305.733840pt;}
.xb_c01074{left:307.381333pt;}
.x37_c01074{left:309.556997pt;}
.x54_c01074{left:311.692000pt;}
.x8f_c01074{left:315.432000pt;}
.x4c_c01074{left:320.298283pt;}
.xbb_c01074{left:321.840000pt;}
.x8c_c01074{left:325.410109pt;}
.xf_c01074{left:326.321333pt;}
.x43_c01074{left:328.970101pt;}
.xbf_c01074{left:334.256000pt;}
.xb0_c01074{left:339.126973pt;}
.xb1_c01074{left:341.045907pt;}
.x75_c01074{left:342.679440pt;}
.x90_c01074{left:344.697333pt;}
.x3_c01074{left:352.800000pt;}
.xc_c01074{left:355.629333pt;}
.xa0_c01074{left:356.755353pt;}
.x55_c01074{left:361.341333pt;}
.x2d_c01074{left:367.626955pt;}
.x4_c01074{left:373.440000pt;}
.x1b_c01074{left:376.569499pt;}
.x38_c01074{left:378.218848pt;}
.xbc_c01074{left:380.160000pt;}
.x69_c01074{left:381.764120pt;}
.x91_c01074{left:384.069333pt;}
.x9e_c01074{left:386.345300pt;}
.x2e_c01074{left:396.993195pt;}
.xa8_c01074{left:398.251100pt;}
.xc0_c01074{left:401.662667pt;}
.x76_c01074{left:402.643707pt;}
.x1c_c01074{left:405.128123pt;}
.x7e_c01074{left:406.810867pt;}
.x4d_c01074{left:408.902021pt;}
.x6a_c01074{left:410.356307pt;}
.x82_c01074{left:413.120000pt;}
.x44_c01074{left:417.091712pt;}
.xb7_c01074{left:420.240000pt;}
.x92_c01074{left:423.672000pt;}
.x10_c01074{left:424.952000pt;}
.x39_c01074{left:427.416923pt;}
.x77_c01074{left:432.199853pt;}
.xa9_c01074{left:435.693580pt;}
.x56_c01074{left:438.382667pt;}
.x83_c01074{left:441.922667pt;}
.x2f_c01074{left:446.378235pt;}
.x93_c01074{left:452.725333pt;}
.x11_c01074{left:454.006667pt;}
.x6b_c01074{left:459.319680pt;}
.x45_c01074{left:476.132341pt;}
.xb2_c01074{left:477.847993pt;}
.x8d_c01074{left:482.845605pt;}
.x1d_c01074{left:483.849664pt;}
.x30_c01074{left:484.909264pt;}
.x4e_c01074{left:486.905616pt;}
.x62_c01074{left:488.319787pt;}
.x78_c01074{left:490.284200pt;}
.x99_c01074{left:492.584480pt;}
.xa1_c01074{left:494.039273pt;}
.xaa_c01074{left:495.693280pt;}
.x51_c01074{left:500.347285pt;}
.xac_c01074{left:505.999673pt;}
.x94_c01074{left:511.758667pt;}
.x25_c01074{left:513.850997pt;}
.x57_c01074{left:517.317333pt;}
.x6c_c01074{left:518.323987pt;}
.x79_c01074{left:520.043013pt;}
.x12_c01074{left:523.130667pt;}
.x3a_c01074{left:525.327755pt;}
.x9a_c01074{left:532.187887pt;}
.x1e_c01074{left:542.654848pt;}
.x31_c01074{left:545.037664pt;}
.x58_c01074{left:547.109333pt;}
.x13_c01074{left:552.180000pt;}
.xa2_c01074{left:553.324753pt;}
.x3b_c01074{left:555.331403pt;}
.x6d_c01074{left:558.907693pt;}
.x9b_c01074{left:561.712780pt;}
.x63_c01074{left:567.321667pt;}
.x32_c01074{left:574.946539pt;}
.x59_c01074{left:576.388000pt;}
.x84_c01074{left:578.489333pt;}
.x95_c01074{left:580.878667pt;}
.x64_c01074{left:586.973467pt;}
.x46_c01074{left:594.697584pt;}
.x4f_c01074{left:604.473691pt;}
.x1f_c01074{left:611.072901pt;}
.x3c_c01074{left:613.938699pt;}
.x85_c01074{left:619.045333pt;}
.x47_c01074{left:623.734565pt;}
.x14_c01074{left:631.105333pt;}
.x6e_c01074{left:636.949907pt;}
.xa3_c01074{left:640.905667pt;}
.x20_c01074{left:642.251397pt;}
.x5a_c01074{left:645.982667pt;}
.x9c_c01074{left:653.227407pt;}
.x50_c01074{left:654.182283pt;}
.x7a_c01074{left:657.782840pt;}
.x33_c01074{left:663.589227pt;}
.x7f_c01074{left:667.996427pt;}
.x15_c01074{left:671.902667pt;}
.x5b_c01074{left:675.505333pt;}
.x6f_c01074{left:676.740320pt;}
.x3d_c01074{left:683.011200pt;}
.x48_c01074{left:684.448496pt;}
.xa4_c01074{left:690.794000pt;}
.x7b_c01074{left:697.850573pt;}
.x86_c01074{left:698.740000pt;}
.x16_c01074{left:701.457333pt;}
.xa5_c01074{left:710.732267pt;}
.x49_c01074{left:713.214811pt;}
.x5c_c01074{left:715.098667pt;}
.x70_c01074{left:716.290733pt;}
.x87_c01074{left:718.160000pt;}
.x21_c01074{left:720.907621pt;}
.xad_c01074{left:723.909007pt;}
.x26_c01074{left:731.735200pt;}
.x3e_c01074{left:733.845259pt;}
.x22_c01074{left:742.066613pt;}
.x65_c01074{left:746.539867pt;}
.xb3_c01074{left:753.610887pt;}
.x80_c01074{left:767.461787pt;}
}





/* 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_c01075 {
    display:none;
  }
  .loading-indicator_c01075.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01075 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_c01075 { 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_c01075" -> "#page-container .classname_c01075")
 */
.pf_c01075 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01075 { /* 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_c01075.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01075 { /* 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_c01075 { /* 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_c01075 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01075 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01075 {overflow:visible;}
  }
}
.c_c01075 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01075 { /* 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_c01075:after { /* webkit #35443 */
  content: '';
}
.t_c01075:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01075 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 */
}
.__c01075 { /* 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_c01075 { /* info for Javascript */
  display:none;
}
.l_c01075 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01075 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01075 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01075: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_c01075 {
    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_c01075.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01075.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_c01075 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01075{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01075;src:url('chunks/assets/font_b11a17f404e7258299fdf971.woff2')format("woff");}.ff1_c01075{font-family:ff1_c01075;line-height:1.000000;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;}
.mc_c01075{transform:matrix(0.100625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100625,0.000000,0.000000,0.250000,0,0);}
.me_c01075{transform:matrix(0.112500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112500,0.000000,0.000000,0.250000,0,0);}
.m4_c01075{transform:matrix(0.166985,-0.003674,0.005499,0.249940,0,0);-ms-transform:matrix(0.166985,-0.003674,0.005499,0.249940,0,0);-webkit-transform:matrix(0.166985,-0.003674,0.005499,0.249940,0,0);}
.m5_c01075{transform:matrix(0.175463,-0.003860,0.005499,0.249940,0,0);-ms-transform:matrix(0.175463,-0.003860,0.005499,0.249940,0,0);-webkit-transform:matrix(0.175463,-0.003860,0.005499,0.249940,0,0);}
.m3_c01075{transform:matrix(0.179941,-0.003959,0.005499,0.249940,0,0);-ms-transform:matrix(0.179941,-0.003959,0.005499,0.249940,0,0);-webkit-transform:matrix(0.179941,-0.003959,0.005499,0.249940,0,0);}
.m6_c01075{transform:matrix(0.184725,-0.004064,0.005499,0.249940,0,0);-ms-transform:matrix(0.184725,-0.004064,0.005499,0.249940,0,0);-webkit-transform:matrix(0.184725,-0.004064,0.005499,0.249940,0,0);}
.m7_c01075{transform:matrix(0.204675,-0.004503,0.005499,0.249940,0,0);-ms-transform:matrix(0.204675,-0.004503,0.005499,0.249940,0,0);-webkit-transform:matrix(0.204675,-0.004503,0.005499,0.249940,0,0);}
.m9_c01075{transform:matrix(0.212530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212530,0.000000,0.000000,0.250000,0,0);}
.m2_c01075{transform:matrix(0.214203,-0.004712,0.005499,0.249940,0,0);-ms-transform:matrix(0.214203,-0.004712,0.005499,0.249940,0,0);-webkit-transform:matrix(0.214203,-0.004712,0.005499,0.249940,0,0);}
.m8_c01075{transform:matrix(0.270685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270685,0.000000,0.000000,0.250000,0,0);}
.m1_c01075{transform:matrix(0.301582,-0.006635,0.005499,0.249940,0,0);-ms-transform:matrix(0.301582,-0.006635,0.005499,0.249940,0,0);-webkit-transform:matrix(0.301582,-0.006635,0.005499,0.249940,0,0);}
.ma_c01075{transform:matrix(0.369025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369025,0.000000,0.000000,0.250000,0,0);}
.mb_c01075{transform:matrix(0.600375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.600375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.600375,0.000000,0.000000,0.250000,0,0);}
.md_c01075{transform:matrix(0.605830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605830,0.000000,0.000000,0.250000,0,0);}
.m0_c01075{transform:matrix(2.834894,-0.062368,0.005499,0.249940,0,0);-ms-transform:matrix(2.834894,-0.062368,0.005499,0.249940,0,0);-webkit-transform:matrix(2.834894,-0.062368,0.005499,0.249940,0,0);}
.v0_c01075{vertical-align:0.000000px;}
.ls0_c01075{letter-spacing:0.000000px;}
.sc__c01075{text-shadow:none;}
.sc0_c01075{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__c01075{-webkit-text-stroke:0px transparent;}
.sc0_c01075{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01075{word-spacing:0.000000px;}
.fc0_c01075{color:transparent;}
.fs2_c01075{font-size:12.000000px;}
.fs3_c01075{font-size:24.000000px;}
.fs1_c01075{font-size:120.000000px;}
.fs0_c01075{font-size:120.029036px;}
.y0_c01075{bottom:0.000000px;}
.y2_c01075{bottom:1052.194653px;}
.yc_c01075{bottom:1052.860500px;}
.y3_c01075{bottom:1053.400044px;}
.y4_c01075{bottom:1054.111755px;}
.y5_c01075{bottom:1055.814819px;}
.y9_c01075{bottom:1056.012000px;}
.y6_c01075{bottom:1057.216329px;}
.y7_c01075{bottom:1057.913223px;}
.y8_c01075{bottom:1059.069543px;}
.yb_c01075{bottom:1071.763500px;}
.ya_c01075{bottom:1075.680000px;}
.y1_c01075{bottom:1088.923500px;}
.h4_c01075{height:12.000000px;}
.h5_c01075{height:24.000000px;}
.h3_c01075{height:120.000000px;}
.h2_c01075{height:120.029036px;}
.h0_c01075{height:1246.320000px;}
.h1_c01075{height:1246.500000px;}
.w1_c01075{width:885.750000px;}
.w0_c01075{width:885.870000px;}
.x0_c01075{left:0.000000px;}
.x9_c01075{left:62.100000px;}
.xa_c01075{left:78.570000px;}
.xd_c01075{left:94.500000px;}
.xb_c01075{left:97.740000px;}
.xc_c01075{left:100.170000px;}
.xe_c01075{left:103.140000px;}
.xf_c01075{left:117.180000px;}
.x2_c01075{left:122.417658px;}
.x1_c01075{left:146.160000px;}
.x3_c01075{left:177.208158px;}
.x4_c01075{left:209.558658px;}
.x5_c01075{left:286.970658px;}
.x6_c01075{left:350.675658px;}
.x7_c01075{left:382.352658px;}
.x8_c01075{left:434.912658px;}
@media print{
.v0_c01075{vertical-align:0.000000pt;}
.ls0_c01075{letter-spacing:0.000000pt;}
.ws0_c01075{word-spacing:0.000000pt;}
.fs2_c01075{font-size:10.666667pt;}
.fs3_c01075{font-size:21.333333pt;}
.fs1_c01075{font-size:106.666667pt;}
.fs0_c01075{font-size:106.692477pt;}
.y0_c01075{bottom:0.000000pt;}
.y2_c01075{bottom:935.284136pt;}
.yc_c01075{bottom:935.876000pt;}
.y3_c01075{bottom:936.355595pt;}
.y4_c01075{bottom:936.988227pt;}
.y5_c01075{bottom:938.502061pt;}
.y9_c01075{bottom:938.677333pt;}
.y6_c01075{bottom:939.747848pt;}
.y7_c01075{bottom:940.367309pt;}
.y8_c01075{bottom:941.395149pt;}
.yb_c01075{bottom:952.678667pt;}
.ya_c01075{bottom:956.160000pt;}
.y1_c01075{bottom:967.932000pt;}
.h4_c01075{height:10.666667pt;}
.h5_c01075{height:21.333333pt;}
.h3_c01075{height:106.666667pt;}
.h2_c01075{height:106.692477pt;}
.h0_c01075{height:1107.840000pt;}
.h1_c01075{height:1108.000000pt;}
.w1_c01075{width:787.333333pt;}
.w0_c01075{width:787.440000pt;}
.x0_c01075{left:0.000000pt;}
.x9_c01075{left:55.200000pt;}
.xa_c01075{left:69.840000pt;}
.xd_c01075{left:84.000000pt;}
.xb_c01075{left:86.880000pt;}
.xc_c01075{left:89.040000pt;}
.xe_c01075{left:91.680000pt;}
.xf_c01075{left:104.160000pt;}
.x2_c01075{left:108.815696pt;}
.x1_c01075{left:129.920000pt;}
.x3_c01075{left:157.518363pt;}
.x4_c01075{left:186.274363pt;}
.x5_c01075{left:255.085029pt;}
.x6_c01075{left:311.711696pt;}
.x7_c01075{left:339.869029pt;}
.x8_c01075{left:386.589029pt;}
}





/* 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_c01076 {
    display:none;
  }
  .loading-indicator_c01076.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01076 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_c01076 { 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_c01076" -> "#page-container .classname_c01076")
 */
.pf_c01076 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01076 { /* 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_c01076.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01076 { /* 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_c01076 { /* 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_c01076 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01076 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01076 {overflow:visible;}
  }
}
.c_c01076 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01076 { /* 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_c01076:after { /* webkit #35443 */
  content: '';
}
.t_c01076:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01076 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 */
}
.__c01076 { /* 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_c01076 { /* info for Javascript */
  display:none;
}
.l_c01076 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01076 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01076 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01076: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_c01076 {
    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_c01076.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01076.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_c01076 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01076{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01076;src:url('chunks/assets/font_7c6b9abe6ee2a268480c528b.woff2')format("woff");}.ff1_c01076{font-family:ff1_c01076;line-height:1.000000;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;}
.md5_c01076{transform:matrix(0.017306,0.000381,-0.005499,0.249940,0,0);-ms-transform:matrix(0.017306,0.000381,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.017306,0.000381,-0.005499,0.249940,0,0);}
.m85_c01076{transform:matrix(0.062389,0.001622,-0.006498,0.249916,0,0);-ms-transform:matrix(0.062389,0.001622,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.062389,0.001622,-0.006498,0.249916,0,0);}
.m137_c01076{transform:matrix(0.156602,0.004072,-0.006498,0.249916,0,0);-ms-transform:matrix(0.156602,0.004072,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.156602,0.004072,-0.006498,0.249916,0,0);}
.mac_c01076{transform:matrix(0.158529,0.004756,-0.007497,0.249888,0,0);-ms-transform:matrix(0.158529,0.004756,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.158529,0.004756,-0.007497,0.249888,0,0);}
.m134_c01076{transform:matrix(0.159016,0.004134,-0.006498,0.249916,0,0);-ms-transform:matrix(0.159016,0.004134,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.159016,0.004134,-0.006498,0.249916,0,0);}
.mb0_c01076{transform:matrix(0.159348,0.004780,-0.007497,0.249888,0,0);-ms-transform:matrix(0.159348,0.004780,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.159348,0.004780,-0.007497,0.249888,0,0);}
.mb1_c01076{transform:matrix(0.160138,0.004804,-0.007497,0.249888,0,0);-ms-transform:matrix(0.160138,0.004804,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.160138,0.004804,-0.007497,0.249888,0,0);}
.m13c_c01076{transform:matrix(0.164165,0.004268,-0.006498,0.249916,0,0);-ms-transform:matrix(0.164165,0.004268,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.164165,0.004268,-0.006498,0.249916,0,0);}
.m138_c01076{transform:matrix(0.167823,0.004363,-0.006498,0.249916,0,0);-ms-transform:matrix(0.167823,0.004363,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.167823,0.004363,-0.006498,0.249916,0,0);}
.m39_c01076{transform:matrix(0.169410,0.003896,-0.005748,0.249934,0,0);-ms-transform:matrix(0.169410,0.003896,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.169410,0.003896,-0.005748,0.249934,0,0);}
.m32_c01076{transform:matrix(0.170010,0.003910,-0.005748,0.249934,0,0);-ms-transform:matrix(0.170010,0.003910,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.170010,0.003910,-0.005748,0.249934,0,0);}
.mae_c01076{transform:matrix(0.170708,0.005121,-0.007497,0.249888,0,0);-ms-transform:matrix(0.170708,0.005121,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.170708,0.005121,-0.007497,0.249888,0,0);}
.m30_c01076{transform:matrix(0.172709,0.003972,-0.005748,0.249934,0,0);-ms-transform:matrix(0.172709,0.003972,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.172709,0.003972,-0.005748,0.249934,0,0);}
.m10a_c01076{transform:matrix(0.173941,0.004522,-0.006498,0.249916,0,0);-ms-transform:matrix(0.173941,0.004522,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.173941,0.004522,-0.006498,0.249916,0,0);}
.m34_c01076{transform:matrix(0.175214,0.004030,-0.005748,0.249934,0,0);-ms-transform:matrix(0.175214,0.004030,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.175214,0.004030,-0.005748,0.249934,0,0);}
.m2e_c01076{transform:matrix(0.177263,0.004077,-0.005748,0.249934,0,0);-ms-transform:matrix(0.177263,0.004077,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.177263,0.004077,-0.005748,0.249934,0,0);}
.mee_c01076{transform:matrix(0.178044,0.004451,-0.006248,0.249922,0,0);-ms-transform:matrix(0.178044,0.004451,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.178044,0.004451,-0.006248,0.249922,0,0);}
.mad_c01076{transform:matrix(0.178280,0.005348,-0.007497,0.249888,0,0);-ms-transform:matrix(0.178280,0.005348,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.178280,0.005348,-0.007497,0.249888,0,0);}
.m133_c01076{transform:matrix(0.178480,0.004640,-0.006498,0.249916,0,0);-ms-transform:matrix(0.178480,0.004640,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.178480,0.004640,-0.006498,0.249916,0,0);}
.m144_c01076{transform:matrix(0.179684,0.004672,-0.006498,0.249916,0,0);-ms-transform:matrix(0.179684,0.004672,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.179684,0.004672,-0.006498,0.249916,0,0);}
.me8_c01076{transform:matrix(0.181319,0.005258,-0.007247,0.249895,0,0);-ms-transform:matrix(0.181319,0.005258,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.181319,0.005258,-0.007247,0.249895,0,0);}
.m136_c01076{transform:matrix(0.181419,0.004717,-0.006498,0.249916,0,0);-ms-transform:matrix(0.181419,0.004717,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.181419,0.004717,-0.006498,0.249916,0,0);}
.ma9_c01076{transform:matrix(0.181768,0.005453,-0.007497,0.249888,0,0);-ms-transform:matrix(0.181768,0.005453,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.181768,0.005453,-0.007497,0.249888,0,0);}
.m132_c01076{transform:matrix(0.183553,0.004772,-0.006498,0.249916,0,0);-ms-transform:matrix(0.183553,0.004772,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.183553,0.004772,-0.006498,0.249916,0,0);}
.m13a_c01076{transform:matrix(0.183678,0.004776,-0.006498,0.249916,0,0);-ms-transform:matrix(0.183678,0.004776,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.183678,0.004776,-0.006498,0.249916,0,0);}
.mb2_c01076{transform:matrix(0.184937,0.005548,-0.007497,0.249888,0,0);-ms-transform:matrix(0.184937,0.005548,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.184937,0.005548,-0.007497,0.249888,0,0);}
.m148_c01076{transform:matrix(0.185247,0.004816,-0.006498,0.249916,0,0);-ms-transform:matrix(0.185247,0.004816,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.185247,0.004816,-0.006498,0.249916,0,0);}
.m36_c01076{transform:matrix(0.185426,0.004265,-0.005748,0.249934,0,0);-ms-transform:matrix(0.185426,0.004265,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.185426,0.004265,-0.005748,0.249934,0,0);}
.m10d_c01076{transform:matrix(0.185982,0.004836,-0.006498,0.249916,0,0);-ms-transform:matrix(0.185982,0.004836,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.185982,0.004836,-0.006498,0.249916,0,0);}
.mf6_c01076{transform:matrix(0.186017,0.004650,-0.006248,0.249922,0,0);-ms-transform:matrix(0.186017,0.004650,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.186017,0.004650,-0.006248,0.249922,0,0);}
.m13_c01076{transform:matrix(0.186576,0.004291,-0.005748,0.249934,0,0);-ms-transform:matrix(0.186576,0.004291,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.186576,0.004291,-0.005748,0.249934,0,0);}
.me3_c01076{transform:matrix(0.187411,0.005435,-0.007247,0.249895,0,0);-ms-transform:matrix(0.187411,0.005435,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.187411,0.005435,-0.007247,0.249895,0,0);}
.m149_c01076{transform:matrix(0.188541,0.004902,-0.006498,0.249916,0,0);-ms-transform:matrix(0.188541,0.004902,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.188541,0.004902,-0.006498,0.249916,0,0);}
.m33_c01076{transform:matrix(0.188635,0.004339,-0.005748,0.249934,0,0);-ms-transform:matrix(0.188635,0.004339,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.188635,0.004339,-0.005748,0.249934,0,0);}
.m4b_c01076{transform:matrix(0.188960,0.004346,-0.005748,0.249934,0,0);-ms-transform:matrix(0.188960,0.004346,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.188960,0.004346,-0.005748,0.249934,0,0);}
.me7_c01076{transform:matrix(0.189860,0.005506,-0.007247,0.249895,0,0);-ms-transform:matrix(0.189860,0.005506,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.189860,0.005506,-0.007247,0.249895,0,0);}
.m4f_c01076{transform:matrix(0.190665,0.004385,-0.005748,0.249934,0,0);-ms-transform:matrix(0.190665,0.004385,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.190665,0.004385,-0.005748,0.249934,0,0);}
.maf_c01076{transform:matrix(0.190854,0.005726,-0.007497,0.249888,0,0);-ms-transform:matrix(0.190854,0.005726,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.190854,0.005726,-0.007497,0.249888,0,0);}
.m95_c01076{transform:matrix(0.191289,0.005739,-0.007497,0.249888,0,0);-ms-transform:matrix(0.191289,0.005739,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.191289,0.005739,-0.007497,0.249888,0,0);}
.m1b_c01076{transform:matrix(0.191324,0.004400,-0.005748,0.249934,0,0);-ms-transform:matrix(0.191324,0.004400,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.191324,0.004400,-0.005748,0.249934,0,0);}
.me2_c01076{transform:matrix(0.191574,0.005556,-0.007247,0.249895,0,0);-ms-transform:matrix(0.191574,0.005556,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.191574,0.005556,-0.007247,0.249895,0,0);}
.m135_c01076{transform:matrix(0.191755,0.004986,-0.006498,0.249916,0,0);-ms-transform:matrix(0.191755,0.004986,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.191755,0.004986,-0.006498,0.249916,0,0);}
.mbf_c01076{transform:matrix(0.191929,0.004222,-0.005499,0.249940,0,0);-ms-transform:matrix(0.191929,0.004222,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.191929,0.004222,-0.005499,0.249940,0,0);}
.m19_c01076{transform:matrix(0.192534,0.004428,-0.005748,0.249934,0,0);-ms-transform:matrix(0.192534,0.004428,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.192534,0.004428,-0.005748,0.249934,0,0);}
.m139_c01076{transform:matrix(0.192745,0.005011,-0.006498,0.249916,0,0);-ms-transform:matrix(0.192745,0.005011,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.192745,0.005011,-0.006498,0.249916,0,0);}
.m97_c01076{transform:matrix(0.193068,0.005792,-0.007497,0.249888,0,0);-ms-transform:matrix(0.193068,0.005792,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.193068,0.005792,-0.007497,0.249888,0,0);}
.maa_c01076{transform:matrix(0.193453,0.005804,-0.007497,0.249888,0,0);-ms-transform:matrix(0.193453,0.005804,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.193453,0.005804,-0.007497,0.249888,0,0);}
.m13b_c01076{transform:matrix(0.193725,0.005037,-0.006498,0.249916,0,0);-ms-transform:matrix(0.193725,0.005037,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.193725,0.005037,-0.006498,0.249916,0,0);}
.m3_c01076{transform:matrix(0.193818,0.004264,-0.005499,0.249940,0,0);-ms-transform:matrix(0.193818,0.004264,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.193818,0.004264,-0.005499,0.249940,0,0);}
.m13f_c01076{transform:matrix(0.194129,0.005047,-0.006498,0.249916,0,0);-ms-transform:matrix(0.194129,0.005047,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.194129,0.005047,-0.006498,0.249916,0,0);}
.m58_c01076{transform:matrix(0.194284,0.005051,-0.006498,0.249916,0,0);-ms-transform:matrix(0.194284,0.005051,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.194284,0.005051,-0.006498,0.249916,0,0);}
.me_c01076{transform:matrix(0.194299,0.004469,-0.005748,0.249934,0,0);-ms-transform:matrix(0.194299,0.004469,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.194299,0.004469,-0.005748,0.249934,0,0);}
.m145_c01076{transform:matrix(0.195214,0.005076,-0.006498,0.249916,0,0);-ms-transform:matrix(0.195214,0.005076,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.195214,0.005076,-0.006498,0.249916,0,0);}
.md7_c01076{transform:matrix(0.195423,0.005667,-0.007247,0.249895,0,0);-ms-transform:matrix(0.195423,0.005667,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.195423,0.005667,-0.007247,0.249895,0,0);}
.mdd_c01076{transform:matrix(0.195483,0.005669,-0.007247,0.249895,0,0);-ms-transform:matrix(0.195483,0.005669,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.195483,0.005669,-0.007247,0.249895,0,0);}
.mab_c01076{transform:matrix(0.195902,0.005877,-0.007497,0.249888,0,0);-ms-transform:matrix(0.195902,0.005877,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.195902,0.005877,-0.007497,0.249888,0,0);}
.m126_c01076{transform:matrix(0.196037,0.005881,-0.007497,0.249888,0,0);-ms-transform:matrix(0.196037,0.005881,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.196037,0.005881,-0.007497,0.249888,0,0);}
.m142_c01076{transform:matrix(0.196299,0.005104,-0.006498,0.249916,0,0);-ms-transform:matrix(0.196299,0.005104,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.196299,0.005104,-0.006498,0.249916,0,0);}
.m110_c01076{transform:matrix(0.196504,0.005109,-0.006498,0.249916,0,0);-ms-transform:matrix(0.196504,0.005109,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.196504,0.005109,-0.006498,0.249916,0,0);}
.m37_c01076{transform:matrix(0.197213,0.004536,-0.005748,0.249934,0,0);-ms-transform:matrix(0.197213,0.004536,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.197213,0.004536,-0.005748,0.249934,0,0);}
.me6_c01076{transform:matrix(0.197392,0.005724,-0.007247,0.249895,0,0);-ms-transform:matrix(0.197392,0.005724,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.197392,0.005724,-0.007247,0.249895,0,0);}
.m3a_c01076{transform:matrix(0.197748,0.004548,-0.005748,0.249934,0,0);-ms-transform:matrix(0.197748,0.004548,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.197748,0.004548,-0.005748,0.249934,0,0);}
.m52_c01076{transform:matrix(0.197843,0.005144,-0.006498,0.249916,0,0);-ms-transform:matrix(0.197843,0.005144,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.197843,0.005144,-0.006498,0.249916,0,0);}
.m10b_c01076{transform:matrix(0.197938,0.005146,-0.006498,0.249916,0,0);-ms-transform:matrix(0.197938,0.005146,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.197938,0.005146,-0.006498,0.249916,0,0);}
.m8c_c01076{transform:matrix(0.198311,0.005949,-0.007497,0.249888,0,0);-ms-transform:matrix(0.198311,0.005949,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.198311,0.005949,-0.007497,0.249888,0,0);}
.m38_c01076{transform:matrix(0.198692,0.004570,-0.005748,0.249934,0,0);-ms-transform:matrix(0.198692,0.004570,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.198692,0.004570,-0.005748,0.249934,0,0);}
.m1e_c01076{transform:matrix(0.199047,0.004578,-0.005748,0.249934,0,0);-ms-transform:matrix(0.199047,0.004578,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.199047,0.004578,-0.005748,0.249934,0,0);}
.m4c_c01076{transform:matrix(0.199312,0.004584,-0.005748,0.249934,0,0);-ms-transform:matrix(0.199312,0.004584,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.199312,0.004584,-0.005748,0.249934,0,0);}
.m13e_c01076{transform:matrix(0.199742,0.005193,-0.006498,0.249916,0,0);-ms-transform:matrix(0.199742,0.005193,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.199742,0.005193,-0.006498,0.249916,0,0);}
.m31_c01076{transform:matrix(0.199807,0.004596,-0.005748,0.249934,0,0);-ms-transform:matrix(0.199807,0.004596,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.199807,0.004596,-0.005748,0.249934,0,0);}
.m124_c01076{transform:matrix(0.200220,0.006007,-0.007497,0.249888,0,0);-ms-transform:matrix(0.200220,0.006007,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.200220,0.006007,-0.007497,0.249888,0,0);}
.m111_c01076{transform:matrix(0.201307,0.005234,-0.006498,0.249916,0,0);-ms-transform:matrix(0.201307,0.005234,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.201307,0.005234,-0.006498,0.249916,0,0);}
.m12c_c01076{transform:matrix(0.201439,0.006043,-0.007497,0.249888,0,0);-ms-transform:matrix(0.201439,0.006043,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.201439,0.006043,-0.007497,0.249888,0,0);}
.m88_c01076{transform:matrix(0.202199,0.006066,-0.007497,0.249888,0,0);-ms-transform:matrix(0.202199,0.006066,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.202199,0.006066,-0.007497,0.249888,0,0);}
.mc7_c01076{transform:matrix(0.202616,0.004458,-0.005499,0.249940,0,0);-ms-transform:matrix(0.202616,0.004458,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.202616,0.004458,-0.005499,0.249940,0,0);}
.me0_c01076{transform:matrix(0.202720,0.005879,-0.007247,0.249895,0,0);-ms-transform:matrix(0.202720,0.005879,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.202720,0.005879,-0.007247,0.249895,0,0);}
.m14_c01076{transform:matrix(0.203246,0.004675,-0.005748,0.249934,0,0);-ms-transform:matrix(0.203246,0.004675,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.203246,0.004675,-0.005748,0.249934,0,0);}
.m35_c01076{transform:matrix(0.203496,0.004680,-0.005748,0.249934,0,0);-ms-transform:matrix(0.203496,0.004680,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.203496,0.004680,-0.005748,0.249934,0,0);}
.mf7_c01076{transform:matrix(0.203756,0.005094,-0.006248,0.249922,0,0);-ms-transform:matrix(0.203756,0.005094,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.203756,0.005094,-0.006248,0.249922,0,0);}
.mc5_c01076{transform:matrix(0.203806,0.004484,-0.005499,0.249940,0,0);-ms-transform:matrix(0.203806,0.004484,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.203806,0.004484,-0.005499,0.249940,0,0);}
.m13d_c01076{transform:matrix(0.204156,0.005308,-0.006498,0.249916,0,0);-ms-transform:matrix(0.204156,0.005308,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.204156,0.005308,-0.006498,0.249916,0,0);}
.m5a_c01076{transform:matrix(0.204316,0.005312,-0.006498,0.249916,0,0);-ms-transform:matrix(0.204316,0.005312,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.204316,0.005312,-0.006498,0.249916,0,0);}
.mf5_c01076{transform:matrix(0.204531,0.005113,-0.006248,0.249922,0,0);-ms-transform:matrix(0.204531,0.005113,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.204531,0.005113,-0.006248,0.249922,0,0);}
.mf0_c01076{transform:matrix(0.205121,0.005128,-0.006248,0.249922,0,0);-ms-transform:matrix(0.205121,0.005128,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.205121,0.005128,-0.006248,0.249922,0,0);}
.m5e_c01076{transform:matrix(0.205316,0.005338,-0.006498,0.249916,0,0);-ms-transform:matrix(0.205316,0.005338,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.205316,0.005338,-0.006498,0.249916,0,0);}
.m143_c01076{transform:matrix(0.205695,0.005348,-0.006498,0.249916,0,0);-ms-transform:matrix(0.205695,0.005348,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.205695,0.005348,-0.006498,0.249916,0,0);}
.m2f_c01076{transform:matrix(0.205976,0.004737,-0.005748,0.249934,0,0);-ms-transform:matrix(0.205976,0.004737,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.205976,0.004737,-0.005748,0.249934,0,0);}
.m12_c01076{transform:matrix(0.206375,0.004747,-0.005748,0.249934,0,0);-ms-transform:matrix(0.206375,0.004747,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.206375,0.004747,-0.005748,0.249934,0,0);}
.m8a_c01076{transform:matrix(0.207302,0.006219,-0.007497,0.249888,0,0);-ms-transform:matrix(0.207302,0.006219,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.207302,0.006219,-0.007497,0.249888,0,0);}
.mef_c01076{transform:matrix(0.207490,0.005187,-0.006248,0.249922,0,0);-ms-transform:matrix(0.207490,0.005187,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.207490,0.005187,-0.006248,0.249922,0,0);}
.m42_c01076{transform:matrix(0.207960,0.004783,-0.005748,0.249934,0,0);-ms-transform:matrix(0.207960,0.004783,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.207960,0.004783,-0.005748,0.249934,0,0);}
.m40_c01076{transform:matrix(0.208505,0.004796,-0.005748,0.249934,0,0);-ms-transform:matrix(0.208505,0.004796,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.208505,0.004796,-0.005748,0.249934,0,0);}
.m9b_c01076{transform:matrix(0.209711,0.006291,-0.007497,0.249888,0,0);-ms-transform:matrix(0.209711,0.006291,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.209711,0.006291,-0.007497,0.249888,0,0);}
.m7_c01076{transform:matrix(0.209897,0.003988,-0.004749,0.249955,0,0);-ms-transform:matrix(0.209897,0.003988,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.209897,0.003988,-0.004749,0.249955,0,0);}
.m60_c01076{transform:matrix(0.210474,0.005472,-0.006498,0.249916,0,0);-ms-transform:matrix(0.210474,0.005472,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.210474,0.005472,-0.006498,0.249916,0,0);}
.m82_c01076{transform:matrix(0.210509,0.005473,-0.006498,0.249916,0,0);-ms-transform:matrix(0.210509,0.005473,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.210509,0.005473,-0.006498,0.249916,0,0);}
.me1_c01076{transform:matrix(0.210581,0.006107,-0.007247,0.249895,0,0);-ms-transform:matrix(0.210581,0.006107,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.210581,0.006107,-0.007247,0.249895,0,0);}
.m129_c01076{transform:matrix(0.210595,0.006318,-0.007497,0.249888,0,0);-ms-transform:matrix(0.210595,0.006318,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.210595,0.006318,-0.007497,0.249888,0,0);}
.m121_c01076{transform:matrix(0.210930,0.006328,-0.007497,0.249888,0,0);-ms-transform:matrix(0.210930,0.006328,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.210930,0.006328,-0.007497,0.249888,0,0);}
.m106_c01076{transform:matrix(0.210999,0.005486,-0.006498,0.249916,0,0);-ms-transform:matrix(0.210999,0.005486,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.210999,0.005486,-0.006498,0.249916,0,0);}
.med_c01076{transform:matrix(0.211079,0.005277,-0.006248,0.249922,0,0);-ms-transform:matrix(0.211079,0.005277,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.211079,0.005277,-0.006248,0.249922,0,0);}
.m6d_c01076{transform:matrix(0.211144,0.005490,-0.006498,0.249916,0,0);-ms-transform:matrix(0.211144,0.005490,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.211144,0.005490,-0.006498,0.249916,0,0);}
.mb_c01076{transform:matrix(0.211789,0.004871,-0.005748,0.249934,0,0);-ms-transform:matrix(0.211789,0.004871,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.211789,0.004871,-0.005748,0.249934,0,0);}
.m1d_c01076{transform:matrix(0.212304,0.004883,-0.005748,0.249934,0,0);-ms-transform:matrix(0.212304,0.004883,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.212304,0.004883,-0.005748,0.249934,0,0);}
.m101_c01076{transform:matrix(0.212329,0.005308,-0.006248,0.249922,0,0);-ms-transform:matrix(0.212329,0.005308,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.212329,0.005308,-0.006248,0.249922,0,0);}
.ma_c01076{transform:matrix(0.212339,0.004884,-0.005748,0.249934,0,0);-ms-transform:matrix(0.212339,0.004884,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.212339,0.004884,-0.005748,0.249934,0,0);}
.m46_c01076{transform:matrix(0.212564,0.004889,-0.005748,0.249934,0,0);-ms-transform:matrix(0.212564,0.004889,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.212564,0.004889,-0.005748,0.249934,0,0);}
.m9c_c01076{transform:matrix(0.212854,0.006386,-0.007497,0.249888,0,0);-ms-transform:matrix(0.212854,0.006386,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.212854,0.006386,-0.007497,0.249888,0,0);}
.mc4_c01076{transform:matrix(0.212868,0.004683,-0.005499,0.249940,0,0);-ms-transform:matrix(0.212868,0.004683,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.212868,0.004683,-0.005499,0.249940,0,0);}
.md9_c01076{transform:matrix(0.212980,0.006176,-0.007247,0.249895,0,0);-ms-transform:matrix(0.212980,0.006176,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.212980,0.006176,-0.007247,0.249895,0,0);}
.m63_c01076{transform:matrix(0.213063,0.005540,-0.006498,0.249916,0,0);-ms-transform:matrix(0.213063,0.005540,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.213063,0.005540,-0.006498,0.249916,0,0);}
.m12a_c01076{transform:matrix(0.213264,0.006398,-0.007497,0.249888,0,0);-ms-transform:matrix(0.213264,0.006398,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.213264,0.006398,-0.007497,0.249888,0,0);}
.md6_c01076{transform:matrix(0.213435,0.006190,-0.007247,0.249895,0,0);-ms-transform:matrix(0.213435,0.006190,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.213435,0.006190,-0.007247,0.249895,0,0);}
.m109_c01076{transform:matrix(0.213563,0.005553,-0.006498,0.249916,0,0);-ms-transform:matrix(0.213563,0.005553,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.213563,0.005553,-0.006498,0.249916,0,0);}
.m10f_c01076{transform:matrix(0.213858,0.005560,-0.006498,0.249916,0,0);-ms-transform:matrix(0.213858,0.005560,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.213858,0.005560,-0.006498,0.249916,0,0);}
.m128_c01076{transform:matrix(0.214324,0.006430,-0.007497,0.249888,0,0);-ms-transform:matrix(0.214324,0.006430,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.214324,0.006430,-0.007497,0.249888,0,0);}
.mdf_c01076{transform:matrix(0.214330,0.006216,-0.007247,0.249895,0,0);-ms-transform:matrix(0.214330,0.006216,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.214330,0.006216,-0.007247,0.249895,0,0);}
.m12d_c01076{transform:matrix(0.215643,0.006469,-0.007497,0.249888,0,0);-ms-transform:matrix(0.215643,0.006469,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.215643,0.006469,-0.007497,0.249888,0,0);}
.m10e_c01076{transform:matrix(0.215672,0.005607,-0.006498,0.249916,0,0);-ms-transform:matrix(0.215672,0.005607,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.215672,0.005607,-0.006498,0.249916,0,0);}
.m98_c01076{transform:matrix(0.215848,0.006475,-0.007497,0.249888,0,0);-ms-transform:matrix(0.215848,0.006475,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.215848,0.006475,-0.007497,0.249888,0,0);}
.m147_c01076{transform:matrix(0.216137,0.005620,-0.006498,0.249916,0,0);-ms-transform:matrix(0.216137,0.005620,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.216137,0.005620,-0.006498,0.249916,0,0);}
.m49_c01076{transform:matrix(0.216258,0.004974,-0.005748,0.249934,0,0);-ms-transform:matrix(0.216258,0.004974,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.216258,0.004974,-0.005748,0.249934,0,0);}
.m7b_c01076{transform:matrix(0.216632,0.005632,-0.006498,0.249916,0,0);-ms-transform:matrix(0.216632,0.005632,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.216632,0.005632,-0.006498,0.249916,0,0);}
.mf2_c01076{transform:matrix(0.216842,0.005421,-0.006248,0.249922,0,0);-ms-transform:matrix(0.216842,0.005421,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.216842,0.005421,-0.006248,0.249922,0,0);}
.m23_c01076{transform:matrix(0.216853,0.004988,-0.005748,0.249934,0,0);-ms-transform:matrix(0.216853,0.004988,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.216853,0.004988,-0.005748,0.249934,0,0);}
.m123_c01076{transform:matrix(0.216982,0.006509,-0.007497,0.249888,0,0);-ms-transform:matrix(0.216982,0.006509,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.216982,0.006509,-0.007497,0.249888,0,0);}
.m80_c01076{transform:matrix(0.217457,0.005654,-0.006498,0.249916,0,0);-ms-transform:matrix(0.217457,0.005654,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.217457,0.005654,-0.006498,0.249916,0,0);}
.m140_c01076{transform:matrix(0.217482,0.005655,-0.006498,0.249916,0,0);-ms-transform:matrix(0.217482,0.005655,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.217482,0.005655,-0.006498,0.249916,0,0);}
.m8f_c01076{transform:matrix(0.217682,0.006530,-0.007497,0.249888,0,0);-ms-transform:matrix(0.217682,0.006530,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.217682,0.006530,-0.007497,0.249888,0,0);}
.m48_c01076{transform:matrix(0.217722,0.005008,-0.005748,0.249934,0,0);-ms-transform:matrix(0.217722,0.005008,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.217722,0.005008,-0.005748,0.249934,0,0);}
.m141_c01076{transform:matrix(0.217731,0.005661,-0.006498,0.249916,0,0);-ms-transform:matrix(0.217731,0.005661,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.217731,0.005661,-0.006498,0.249916,0,0);}
.me5_c01076{transform:matrix(0.218023,0.006323,-0.007247,0.249895,0,0);-ms-transform:matrix(0.218023,0.006323,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.218023,0.006323,-0.007247,0.249895,0,0);}
.mf3_c01076{transform:matrix(0.218182,0.005455,-0.006248,0.249922,0,0);-ms-transform:matrix(0.218182,0.005455,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.218182,0.005455,-0.006248,0.249922,0,0);}
.me4_c01076{transform:matrix(0.218188,0.006327,-0.007247,0.249895,0,0);-ms-transform:matrix(0.218188,0.006327,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.218188,0.006327,-0.007247,0.249895,0,0);}
.m7c_c01076{transform:matrix(0.218726,0.005687,-0.006498,0.249916,0,0);-ms-transform:matrix(0.218726,0.005687,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.218726,0.005687,-0.006498,0.249916,0,0);}
.m99_c01076{transform:matrix(0.218737,0.006562,-0.007497,0.249888,0,0);-ms-transform:matrix(0.218737,0.006562,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.218737,0.006562,-0.007497,0.249888,0,0);}
.m11_c01076{transform:matrix(0.218742,0.005031,-0.005748,0.249934,0,0);-ms-transform:matrix(0.218742,0.005031,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.218742,0.005031,-0.005748,0.249934,0,0);}
.m67_c01076{transform:matrix(0.218866,0.005691,-0.006498,0.249916,0,0);-ms-transform:matrix(0.218866,0.005691,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.218866,0.005691,-0.006498,0.249916,0,0);}
.mf8_c01076{transform:matrix(0.219107,0.005478,-0.006248,0.249922,0,0);-ms-transform:matrix(0.219107,0.005478,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.219107,0.005478,-0.006248,0.249922,0,0);}
.m81_c01076{transform:matrix(0.219136,0.005698,-0.006498,0.249916,0,0);-ms-transform:matrix(0.219136,0.005698,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.219136,0.005698,-0.006498,0.249916,0,0);}
.m10c_c01076{transform:matrix(0.219181,0.005699,-0.006498,0.249916,0,0);-ms-transform:matrix(0.219181,0.005699,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.219181,0.005699,-0.006498,0.249916,0,0);}
.m3f_c01076{transform:matrix(0.219482,0.005048,-0.005748,0.249934,0,0);-ms-transform:matrix(0.219482,0.005048,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.219482,0.005048,-0.005748,0.249934,0,0);}
.me9_c01076{transform:matrix(0.219533,0.006366,-0.007247,0.249895,0,0);-ms-transform:matrix(0.219533,0.006366,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.219533,0.006366,-0.007247,0.249895,0,0);}
.mc3_c01076{transform:matrix(0.219537,0.004830,-0.005499,0.249940,0,0);-ms-transform:matrix(0.219537,0.004830,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.219537,0.004830,-0.005499,0.249940,0,0);}
.mf1_c01076{transform:matrix(0.219686,0.005492,-0.006248,0.249922,0,0);-ms-transform:matrix(0.219686,0.005492,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.219686,0.005492,-0.006248,0.249922,0,0);}
.m65_c01076{transform:matrix(0.219956,0.005719,-0.006498,0.249916,0,0);-ms-transform:matrix(0.219956,0.005719,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.219956,0.005719,-0.006498,0.249916,0,0);}
.m12b_c01076{transform:matrix(0.220366,0.006611,-0.007497,0.249888,0,0);-ms-transform:matrix(0.220366,0.006611,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.220366,0.006611,-0.007497,0.249888,0,0);}
.m4e_c01076{transform:matrix(0.220997,0.005083,-0.005748,0.249934,0,0);-ms-transform:matrix(0.220997,0.005083,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.220997,0.005083,-0.005748,0.249934,0,0);}
.m20_c01076{transform:matrix(0.221147,0.005086,-0.005748,0.249934,0,0);-ms-transform:matrix(0.221147,0.005086,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.221147,0.005086,-0.005748,0.249934,0,0);}
.m84_c01076{transform:matrix(0.222135,0.005776,-0.006498,0.249916,0,0);-ms-transform:matrix(0.222135,0.005776,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.222135,0.005776,-0.006498,0.249916,0,0);}
.m108_c01076{transform:matrix(0.222240,0.005778,-0.006498,0.249916,0,0);-ms-transform:matrix(0.222240,0.005778,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.222240,0.005778,-0.006498,0.249916,0,0);}
.m1c_c01076{transform:matrix(0.222341,0.005114,-0.005748,0.249934,0,0);-ms-transform:matrix(0.222341,0.005114,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.222341,0.005114,-0.005748,0.249934,0,0);}
.m4a_c01076{transform:matrix(0.222386,0.005115,-0.005748,0.249934,0,0);-ms-transform:matrix(0.222386,0.005115,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.222386,0.005115,-0.005748,0.249934,0,0);}
.mb4_c01076{transform:matrix(0.222446,0.004894,-0.005499,0.249940,0,0);-ms-transform:matrix(0.222446,0.004894,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.222446,0.004894,-0.005499,0.249940,0,0);}
.m2c_c01076{transform:matrix(0.222566,0.005119,-0.005748,0.249934,0,0);-ms-transform:matrix(0.222566,0.005119,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.222566,0.005119,-0.005748,0.249934,0,0);}
.m14e_c01076{transform:matrix(0.222915,0.005796,-0.006498,0.249916,0,0);-ms-transform:matrix(0.222915,0.005796,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.222915,0.005796,-0.006498,0.249916,0,0);}
.m113_c01076{transform:matrix(0.223189,0.006026,-0.006748,0.249909,0,0);-ms-transform:matrix(0.223189,0.006026,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.223189,0.006026,-0.006748,0.249909,0,0);}
.mf4_c01076{transform:matrix(0.223660,0.005592,-0.006248,0.249922,0,0);-ms-transform:matrix(0.223660,0.005592,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.223660,0.005592,-0.006248,0.249922,0,0);}
.m127_c01076{transform:matrix(0.223864,0.006716,-0.007497,0.249888,0,0);-ms-transform:matrix(0.223864,0.006716,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.223864,0.006716,-0.007497,0.249888,0,0);}
.m51_c01076{transform:matrix(0.223924,0.005822,-0.006498,0.249916,0,0);-ms-transform:matrix(0.223924,0.005822,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.223924,0.005822,-0.006498,0.249916,0,0);}
.m44_c01076{transform:matrix(0.224281,0.005158,-0.005748,0.249934,0,0);-ms-transform:matrix(0.224281,0.005158,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.224281,0.005158,-0.005748,0.249934,0,0);}
.mdc_c01076{transform:matrix(0.224551,0.006512,-0.007247,0.249895,0,0);-ms-transform:matrix(0.224551,0.006512,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.224551,0.006512,-0.007247,0.249895,0,0);}
.mb6_c01076{transform:matrix(0.224626,0.004942,-0.005499,0.249940,0,0);-ms-transform:matrix(0.224626,0.004942,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.224626,0.004942,-0.005499,0.249940,0,0);}
.mb9_c01076{transform:matrix(0.224696,0.004943,-0.005499,0.249940,0,0);-ms-transform:matrix(0.224696,0.004943,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.224696,0.004943,-0.005499,0.249940,0,0);}
.m125_c01076{transform:matrix(0.224739,0.006742,-0.007497,0.249888,0,0);-ms-transform:matrix(0.224739,0.006742,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.224739,0.006742,-0.007497,0.249888,0,0);}
.m11f_c01076{transform:matrix(0.224889,0.006747,-0.007497,0.249888,0,0);-ms-transform:matrix(0.224889,0.006747,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.224889,0.006747,-0.007497,0.249888,0,0);}
.m53_c01076{transform:matrix(0.225224,0.005856,-0.006498,0.249916,0,0);-ms-transform:matrix(0.225224,0.005856,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.225224,0.005856,-0.006498,0.249916,0,0);}
.m70_c01076{transform:matrix(0.225269,0.005857,-0.006498,0.249916,0,0);-ms-transform:matrix(0.225269,0.005857,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.225269,0.005857,-0.006498,0.249916,0,0);}
.m17_c01076{transform:matrix(0.225435,0.005185,-0.005748,0.249934,0,0);-ms-transform:matrix(0.225435,0.005185,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.225435,0.005185,-0.005748,0.249934,0,0);}
.ma4_c01076{transform:matrix(0.225529,0.006766,-0.007497,0.249888,0,0);-ms-transform:matrix(0.225529,0.006766,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.225529,0.006766,-0.007497,0.249888,0,0);}
.mda_c01076{transform:matrix(0.226845,0.006578,-0.007247,0.249895,0,0);-ms-transform:matrix(0.226845,0.006578,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.226845,0.006578,-0.007247,0.249895,0,0);}
.m28_c01076{transform:matrix(0.226945,0.005220,-0.005748,0.249934,0,0);-ms-transform:matrix(0.226945,0.005220,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.226945,0.005220,-0.005748,0.249934,0,0);}
.m94_c01076{transform:matrix(0.227218,0.006817,-0.007497,0.249888,0,0);-ms-transform:matrix(0.227218,0.006817,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.227218,0.006817,-0.007497,0.249888,0,0);}
.m18_c01076{transform:matrix(0.227230,0.005226,-0.005748,0.249934,0,0);-ms-transform:matrix(0.227230,0.005226,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.227230,0.005226,-0.005748,0.249934,0,0);}
.mf_c01076{transform:matrix(0.227260,0.005227,-0.005748,0.249934,0,0);-ms-transform:matrix(0.227260,0.005227,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.227260,0.005227,-0.005748,0.249934,0,0);}
.md8_c01076{transform:matrix(0.227264,0.006591,-0.007247,0.249895,0,0);-ms-transform:matrix(0.227264,0.006591,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.227264,0.006591,-0.007247,0.249895,0,0);}
.m3e_c01076{transform:matrix(0.227295,0.005228,-0.005748,0.249934,0,0);-ms-transform:matrix(0.227295,0.005228,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.227295,0.005228,-0.005748,0.249934,0,0);}
.m24_c01076{transform:matrix(0.227370,0.005230,-0.005748,0.249934,0,0);-ms-transform:matrix(0.227370,0.005230,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.227370,0.005230,-0.005748,0.249934,0,0);}
.m7d_c01076{transform:matrix(0.227633,0.005918,-0.006498,0.249916,0,0);-ms-transform:matrix(0.227633,0.005918,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.227633,0.005918,-0.006498,0.249916,0,0);}
.m107_c01076{transform:matrix(0.228103,0.005931,-0.006498,0.249916,0,0);-ms-transform:matrix(0.228103,0.005931,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.228103,0.005931,-0.006498,0.249916,0,0);}
.m122_c01076{transform:matrix(0.228112,0.006843,-0.007497,0.249888,0,0);-ms-transform:matrix(0.228112,0.006843,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.228112,0.006843,-0.007497,0.249888,0,0);}
.m3b_c01076{transform:matrix(0.228220,0.005249,-0.005748,0.249934,0,0);-ms-transform:matrix(0.228220,0.005249,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.228220,0.005249,-0.005748,0.249934,0,0);}
.mf9_c01076{transform:matrix(0.229193,0.005730,-0.006248,0.249922,0,0);-ms-transform:matrix(0.229193,0.005730,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.229193,0.005730,-0.006248,0.249922,0,0);}
.mca_c01076{transform:matrix(0.229469,0.005048,-0.005499,0.249940,0,0);-ms-transform:matrix(0.229469,0.005048,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.229469,0.005048,-0.005499,0.249940,0,0);}
.mdb_c01076{transform:matrix(0.229543,0.006657,-0.007247,0.249895,0,0);-ms-transform:matrix(0.229543,0.006657,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.229543,0.006657,-0.007247,0.249895,0,0);}
.m50_c01076{transform:matrix(0.229684,0.005283,-0.005748,0.249934,0,0);-ms-transform:matrix(0.229684,0.005283,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.229684,0.005283,-0.005748,0.249934,0,0);}
.m4d_c01076{transform:matrix(0.230204,0.005295,-0.005748,0.249934,0,0);-ms-transform:matrix(0.230204,0.005295,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.230204,0.005295,-0.005748,0.249934,0,0);}
.m1a_c01076{transform:matrix(0.230539,0.005302,-0.005748,0.249934,0,0);-ms-transform:matrix(0.230539,0.005302,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.230539,0.005302,-0.005748,0.249934,0,0);}
.mb7_c01076{transform:matrix(0.230629,0.005074,-0.005499,0.249940,0,0);-ms-transform:matrix(0.230629,0.005074,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.230629,0.005074,-0.005499,0.249940,0,0);}
.m91_c01076{transform:matrix(0.230661,0.006920,-0.007497,0.249888,0,0);-ms-transform:matrix(0.230661,0.006920,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.230661,0.006920,-0.007497,0.249888,0,0);}
.m3d_c01076{transform:matrix(0.230754,0.005307,-0.005748,0.249934,0,0);-ms-transform:matrix(0.230754,0.005307,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.230754,0.005307,-0.005748,0.249934,0,0);}
.mc0_c01076{transform:matrix(0.230804,0.005078,-0.005499,0.249940,0,0);-ms-transform:matrix(0.230804,0.005078,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.230804,0.005078,-0.005499,0.249940,0,0);}
.m104_c01076{transform:matrix(0.230823,0.005771,-0.006248,0.249922,0,0);-ms-transform:matrix(0.230823,0.005771,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.230823,0.005771,-0.006248,0.249922,0,0);}
.m8_c01076{transform:matrix(0.231053,0.004390,-0.004749,0.249955,0,0);-ms-transform:matrix(0.231053,0.004390,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.231053,0.004390,-0.004749,0.249955,0,0);}
.m146_c01076{transform:matrix(0.231162,0.006010,-0.006498,0.249916,0,0);-ms-transform:matrix(0.231162,0.006010,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.231162,0.006010,-0.006498,0.249916,0,0);}
.mc_c01076{transform:matrix(0.231234,0.005318,-0.005748,0.249934,0,0);-ms-transform:matrix(0.231234,0.005318,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.231234,0.005318,-0.005748,0.249934,0,0);}
.m89_c01076{transform:matrix(0.231976,0.006959,-0.007497,0.249888,0,0);-ms-transform:matrix(0.231976,0.006959,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.231976,0.006959,-0.007497,0.249888,0,0);}
.mc8_c01076{transform:matrix(0.232554,0.005116,-0.005499,0.249940,0,0);-ms-transform:matrix(0.232554,0.005116,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.232554,0.005116,-0.005499,0.249940,0,0);}
.m1f_c01076{transform:matrix(0.232738,0.005353,-0.005748,0.249934,0,0);-ms-transform:matrix(0.232738,0.005353,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.232738,0.005353,-0.005748,0.249934,0,0);}
.ma5_c01076{transform:matrix(0.232865,0.006986,-0.007497,0.249888,0,0);-ms-transform:matrix(0.232865,0.006986,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.232865,0.006986,-0.007497,0.249888,0,0);}
.m6b_c01076{transform:matrix(0.233296,0.006066,-0.006498,0.249916,0,0);-ms-transform:matrix(0.233296,0.006066,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.233296,0.006066,-0.006498,0.249916,0,0);}
.m3c_c01076{transform:matrix(0.233488,0.005370,-0.005748,0.249934,0,0);-ms-transform:matrix(0.233488,0.005370,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.233488,0.005370,-0.005748,0.249934,0,0);}
.m116_c01076{transform:matrix(0.233595,0.006307,-0.006748,0.249909,0,0);-ms-transform:matrix(0.233595,0.006307,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.233595,0.006307,-0.006748,0.249909,0,0);}
.mbc_c01076{transform:matrix(0.233638,0.005140,-0.005499,0.249940,0,0);-ms-transform:matrix(0.233638,0.005140,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.233638,0.005140,-0.005499,0.249940,0,0);}
.m8b_c01076{transform:matrix(0.233905,0.007017,-0.007497,0.249888,0,0);-ms-transform:matrix(0.233905,0.007017,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.233905,0.007017,-0.007497,0.249888,0,0);}
.m5_c01076{transform:matrix(0.234038,0.005149,-0.005499,0.249940,0,0);-ms-transform:matrix(0.234038,0.005149,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.234038,0.005149,-0.005499,0.249940,0,0);}
.m119_c01076{transform:matrix(0.234470,0.006331,-0.006748,0.249909,0,0);-ms-transform:matrix(0.234470,0.006331,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.234470,0.006331,-0.006748,0.249909,0,0);}
.m59_c01076{transform:matrix(0.234526,0.006098,-0.006498,0.249916,0,0);-ms-transform:matrix(0.234526,0.006098,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.234526,0.006098,-0.006498,0.249916,0,0);}
.m9a_c01076{transform:matrix(0.234754,0.007043,-0.007497,0.249888,0,0);-ms-transform:matrix(0.234754,0.007043,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.234754,0.007043,-0.007497,0.249888,0,0);}
.m61_c01076{transform:matrix(0.234776,0.006104,-0.006498,0.249916,0,0);-ms-transform:matrix(0.234776,0.006104,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.234776,0.006104,-0.006498,0.249916,0,0);}
.mde_c01076{transform:matrix(0.234981,0.006814,-0.007247,0.249895,0,0);-ms-transform:matrix(0.234981,0.006814,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.234981,0.006814,-0.007247,0.249895,0,0);}
.m43_c01076{transform:matrix(0.235068,0.005407,-0.005748,0.249934,0,0);-ms-transform:matrix(0.235068,0.005407,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.235068,0.005407,-0.005748,0.249934,0,0);}
.m56_c01076{transform:matrix(0.235600,0.006126,-0.006498,0.249916,0,0);-ms-transform:matrix(0.235600,0.006126,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.235600,0.006126,-0.006498,0.249916,0,0);}
.m117_c01076{transform:matrix(0.235669,0.006363,-0.006748,0.249909,0,0);-ms-transform:matrix(0.235669,0.006363,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.235669,0.006363,-0.006748,0.249909,0,0);}
.m41_c01076{transform:matrix(0.235943,0.005427,-0.005748,0.249934,0,0);-ms-transform:matrix(0.235943,0.005427,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.235943,0.005427,-0.005748,0.249934,0,0);}
.m7f_c01076{transform:matrix(0.236025,0.006137,-0.006498,0.249916,0,0);-ms-transform:matrix(0.236025,0.006137,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.236025,0.006137,-0.006498,0.249916,0,0);}
.md_c01076{transform:matrix(0.236268,0.005434,-0.005748,0.249934,0,0);-ms-transform:matrix(0.236268,0.005434,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.236268,0.005434,-0.005748,0.249934,0,0);}
.m83_c01076{transform:matrix(0.236325,0.006144,-0.006498,0.249916,0,0);-ms-transform:matrix(0.236325,0.006144,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.236325,0.006144,-0.006498,0.249916,0,0);}
.m5d_c01076{transform:matrix(0.236390,0.006146,-0.006498,0.249916,0,0);-ms-transform:matrix(0.236390,0.006146,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.236390,0.006146,-0.006498,0.249916,0,0);}
.m8d_c01076{transform:matrix(0.236499,0.007095,-0.007497,0.249888,0,0);-ms-transform:matrix(0.236499,0.007095,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.236499,0.007095,-0.007497,0.249888,0,0);}
.mc6_c01076{transform:matrix(0.237013,0.005214,-0.005499,0.249940,0,0);-ms-transform:matrix(0.237013,0.005214,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.237013,0.005214,-0.005499,0.249940,0,0);}
.m7a_c01076{transform:matrix(0.237055,0.006163,-0.006498,0.249916,0,0);-ms-transform:matrix(0.237055,0.006163,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.237055,0.006163,-0.006498,0.249916,0,0);}
.m68_c01076{transform:matrix(0.237245,0.006168,-0.006498,0.249916,0,0);-ms-transform:matrix(0.237245,0.006168,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.237245,0.006168,-0.006498,0.249916,0,0);}
.mc9_c01076{transform:matrix(0.237458,0.005224,-0.005499,0.249940,0,0);-ms-transform:matrix(0.237458,0.005224,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.237458,0.005224,-0.005499,0.249940,0,0);}
.m7e_c01076{transform:matrix(0.237600,0.006178,-0.006498,0.249916,0,0);-ms-transform:matrix(0.237600,0.006178,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.237600,0.006178,-0.006498,0.249916,0,0);}
.m87_c01076{transform:matrix(0.237933,0.007138,-0.007497,0.249888,0,0);-ms-transform:matrix(0.237933,0.007138,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.237933,0.007138,-0.007497,0.249888,0,0);}
.m96_c01076{transform:matrix(0.238113,0.007143,-0.007497,0.249888,0,0);-ms-transform:matrix(0.238113,0.007143,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.238113,0.007143,-0.007497,0.249888,0,0);}
.m92_c01076{transform:matrix(0.238468,0.007154,-0.007497,0.249888,0,0);-ms-transform:matrix(0.238468,0.007154,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.238468,0.007154,-0.007497,0.249888,0,0);}
.m2a_c01076{transform:matrix(0.238472,0.005485,-0.005748,0.249934,0,0);-ms-transform:matrix(0.238472,0.005485,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.238472,0.005485,-0.005748,0.249934,0,0);}
.m10_c01076{transform:matrix(0.238567,0.005487,-0.005748,0.249934,0,0);-ms-transform:matrix(0.238567,0.005487,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.238567,0.005487,-0.005748,0.249934,0,0);}
.m120_c01076{transform:matrix(0.239137,0.007174,-0.007497,0.249888,0,0);-ms-transform:matrix(0.239137,0.007174,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.239137,0.007174,-0.007497,0.249888,0,0);}
.m55_c01076{transform:matrix(0.239269,0.006221,-0.006498,0.249916,0,0);-ms-transform:matrix(0.239269,0.006221,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.239269,0.006221,-0.006498,0.249916,0,0);}
.m69_c01076{transform:matrix(0.239459,0.006226,-0.006498,0.249916,0,0);-ms-transform:matrix(0.239459,0.006226,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.239459,0.006226,-0.006498,0.249916,0,0);}
.md1_c01076{transform:matrix(0.239487,0.005269,-0.005499,0.249940,0,0);-ms-transform:matrix(0.239487,0.005269,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.239487,0.005269,-0.005499,0.249940,0,0);}
.m57_c01076{transform:matrix(0.239719,0.006233,-0.006498,0.249916,0,0);-ms-transform:matrix(0.239719,0.006233,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.239719,0.006233,-0.006498,0.249916,0,0);}
.m5f_c01076{transform:matrix(0.239874,0.006237,-0.006498,0.249916,0,0);-ms-transform:matrix(0.239874,0.006237,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.239874,0.006237,-0.006498,0.249916,0,0);}
.m77_c01076{transform:matrix(0.240554,0.006254,-0.006498,0.249916,0,0);-ms-transform:matrix(0.240554,0.006254,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.240554,0.006254,-0.006498,0.249916,0,0);}
.m5b_c01076{transform:matrix(0.240659,0.006257,-0.006498,0.249916,0,0);-ms-transform:matrix(0.240659,0.006257,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.240659,0.006257,-0.006498,0.249916,0,0);}
.m66_c01076{transform:matrix(0.240879,0.006263,-0.006498,0.249916,0,0);-ms-transform:matrix(0.240879,0.006263,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.240879,0.006263,-0.006498,0.249916,0,0);}
.m9d_c01076{transform:matrix(0.241206,0.007236,-0.007497,0.249888,0,0);-ms-transform:matrix(0.241206,0.007236,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.241206,0.007236,-0.007497,0.249888,0,0);}
.m26_c01076{transform:matrix(0.241236,0.005548,-0.005748,0.249934,0,0);-ms-transform:matrix(0.241236,0.005548,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.241236,0.005548,-0.005748,0.249934,0,0);}
.mb5_c01076{transform:matrix(0.241582,0.005315,-0.005499,0.249940,0,0);-ms-transform:matrix(0.241582,0.005315,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.241582,0.005315,-0.005499,0.249940,0,0);}
.mea_c01076{transform:matrix(0.241863,0.008716,-0.009003,0.249838,0,0);-ms-transform:matrix(0.241863,0.008716,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.241863,0.008716,-0.009003,0.249838,0,0);}
.m11d_c01076{transform:matrix(0.241932,0.006532,-0.006748,0.249909,0,0);-ms-transform:matrix(0.241932,0.006532,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.241932,0.006532,-0.006748,0.249909,0,0);}
.md2_c01076{transform:matrix(0.241936,0.005323,-0.005499,0.249940,0,0);-ms-transform:matrix(0.241936,0.005323,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.241936,0.005323,-0.005499,0.249940,0,0);}
.m114_c01076{transform:matrix(0.243406,0.006572,-0.006748,0.249909,0,0);-ms-transform:matrix(0.243406,0.006572,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.243406,0.006572,-0.006748,0.249909,0,0);}
.m54_c01076{transform:matrix(0.243568,0.006333,-0.006498,0.249916,0,0);-ms-transform:matrix(0.243568,0.006333,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.243568,0.006333,-0.006498,0.249916,0,0);}
.m5c_c01076{transform:matrix(0.243753,0.006338,-0.006498,0.249916,0,0);-ms-transform:matrix(0.243753,0.006338,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.243753,0.006338,-0.006498,0.249916,0,0);}
.m6a_c01076{transform:matrix(0.243978,0.006343,-0.006498,0.249916,0,0);-ms-transform:matrix(0.243978,0.006343,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.243978,0.006343,-0.006498,0.249916,0,0);}
.mfc_c01076{transform:matrix(0.244019,0.006100,-0.006248,0.249922,0,0);-ms-transform:matrix(0.244019,0.006100,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.244019,0.006100,-0.006248,0.249922,0,0);}
.mfd_c01076{transform:matrix(0.244399,0.006110,-0.006248,0.249922,0,0);-ms-transform:matrix(0.244399,0.006110,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.244399,0.006110,-0.006248,0.249922,0,0);}
.m79_c01076{transform:matrix(0.244687,0.006362,-0.006498,0.249916,0,0);-ms-transform:matrix(0.244687,0.006362,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.244687,0.006362,-0.006498,0.249916,0,0);}
.m93_c01076{transform:matrix(0.245210,0.007356,-0.007497,0.249888,0,0);-ms-transform:matrix(0.245210,0.007356,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.245210,0.007356,-0.007497,0.249888,0,0);}
.mfa_c01076{transform:matrix(0.245383,0.006135,-0.006248,0.249922,0,0);-ms-transform:matrix(0.245383,0.006135,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.245383,0.006135,-0.006248,0.249922,0,0);}
.mba_c01076{transform:matrix(0.246670,0.005427,-0.005499,0.249940,0,0);-ms-transform:matrix(0.246670,0.005427,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.246670,0.005427,-0.005499,0.249940,0,0);}
.m11a_c01076{transform:matrix(0.247415,0.006680,-0.006748,0.249909,0,0);-ms-transform:matrix(0.247415,0.006680,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.247415,0.006680,-0.006748,0.249909,0,0);}
.m105_c01076{transform:matrix(0.247473,0.006187,-0.006248,0.249922,0,0);-ms-transform:matrix(0.247473,0.006187,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.247473,0.006187,-0.006248,0.249922,0,0);}
.m118_c01076{transform:matrix(0.249564,0.006738,-0.006748,0.249909,0,0);-ms-transform:matrix(0.249564,0.006738,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.249564,0.006738,-0.006748,0.249909,0,0);}
.m22_c01076{transform:matrix(0.249694,0.005743,-0.005748,0.249934,0,0);-ms-transform:matrix(0.249694,0.005743,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.249694,0.005743,-0.005748,0.249934,0,0);}
.mb3_c01076{transform:matrix(0.249920,0.005498,-0.005499,0.249940,0,0);-ms-transform:matrix(0.249920,0.005498,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.249920,0.005498,-0.005499,0.249940,0,0);}
.m72_c01076{transform:matrix(0.250070,0.006502,-0.006498,0.249916,0,0);-ms-transform:matrix(0.250070,0.006502,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.250070,0.006502,-0.006498,0.249916,0,0);}
.m6f_c01076{transform:matrix(0.250755,0.006520,-0.006498,0.249916,0,0);-ms-transform:matrix(0.250755,0.006520,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.250755,0.006520,-0.006498,0.249916,0,0);}
.m112_c01076{transform:matrix(0.250764,0.006771,-0.006748,0.249909,0,0);-ms-transform:matrix(0.250764,0.006771,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.250764,0.006771,-0.006748,0.249909,0,0);}
.m102_c01076{transform:matrix(0.250842,0.006271,-0.006248,0.249922,0,0);-ms-transform:matrix(0.250842,0.006271,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.250842,0.006271,-0.006248,0.249922,0,0);}
.m47_c01076{transform:matrix(0.251324,0.005780,-0.005748,0.249934,0,0);-ms-transform:matrix(0.251324,0.005780,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.251324,0.005780,-0.005748,0.249934,0,0);}
.m86_c01076{transform:matrix(0.252057,0.007562,-0.007497,0.249888,0,0);-ms-transform:matrix(0.252057,0.007562,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.252057,0.007562,-0.007497,0.249888,0,0);}
.md4_c01076{transform:matrix(0.252554,0.005556,-0.005499,0.249940,0,0);-ms-transform:matrix(0.252554,0.005556,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.252554,0.005556,-0.005499,0.249940,0,0);}
.m90_c01076{transform:matrix(0.252951,0.007589,-0.007497,0.249888,0,0);-ms-transform:matrix(0.252951,0.007589,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.252951,0.007589,-0.007497,0.249888,0,0);}
.md3_c01076{transform:matrix(0.253084,0.005568,-0.005499,0.249940,0,0);-ms-transform:matrix(0.253084,0.005568,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.253084,0.005568,-0.005499,0.249940,0,0);}
.m21_c01076{transform:matrix(0.253823,0.005838,-0.005748,0.249934,0,0);-ms-transform:matrix(0.253823,0.005838,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.253823,0.005838,-0.005748,0.249934,0,0);}
.m8e_c01076{transform:matrix(0.254221,0.007627,-0.007497,0.249888,0,0);-ms-transform:matrix(0.254221,0.007627,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.254221,0.007627,-0.007497,0.249888,0,0);}
.m9_c01076{transform:matrix(0.254384,0.004833,-0.004749,0.249955,0,0);-ms-transform:matrix(0.254384,0.004833,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.254384,0.004833,-0.004749,0.249955,0,0);}
.m62_c01076{transform:matrix(0.254479,0.006616,-0.006498,0.249916,0,0);-ms-transform:matrix(0.254479,0.006616,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.254479,0.006616,-0.006498,0.249916,0,0);}
.m71_c01076{transform:matrix(0.254919,0.006628,-0.006498,0.249916,0,0);-ms-transform:matrix(0.254919,0.006628,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.254919,0.006628,-0.006498,0.249916,0,0);}
.mec_c01076{transform:matrix(0.255599,0.009211,-0.009003,0.249838,0,0);-ms-transform:matrix(0.255599,0.009211,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.255599,0.009211,-0.009003,0.249838,0,0);}
.m45_c01076{transform:matrix(0.256257,0.005894,-0.005748,0.249934,0,0);-ms-transform:matrix(0.256257,0.005894,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.256257,0.005894,-0.005748,0.249934,0,0);}
.mcc_c01076{transform:matrix(0.256563,0.005644,-0.005499,0.249940,0,0);-ms-transform:matrix(0.256563,0.005644,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.256563,0.005644,-0.005499,0.249940,0,0);}
.m6_c01076{transform:matrix(0.256719,0.004878,-0.004749,0.249955,0,0);-ms-transform:matrix(0.256719,0.004878,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.256719,0.004878,-0.004749,0.249955,0,0);}
.md0_c01076{transform:matrix(0.257118,0.005657,-0.005499,0.249940,0,0);-ms-transform:matrix(0.257118,0.005657,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.257118,0.005657,-0.005499,0.249940,0,0);}
.m2d_c01076{transform:matrix(0.257537,0.005923,-0.005748,0.249934,0,0);-ms-transform:matrix(0.257537,0.005923,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.257537,0.005923,-0.005748,0.249934,0,0);}
.m29_c01076{transform:matrix(0.257717,0.005927,-0.005748,0.249934,0,0);-ms-transform:matrix(0.257717,0.005927,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.257717,0.005927,-0.005748,0.249934,0,0);}
.m9e_c01076{transform:matrix(0.258259,0.007748,-0.007497,0.249888,0,0);-ms-transform:matrix(0.258259,0.007748,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.258259,0.007748,-0.007497,0.249888,0,0);}
.m27_c01076{transform:matrix(0.258562,0.005947,-0.005748,0.249934,0,0);-ms-transform:matrix(0.258562,0.005947,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.258562,0.005947,-0.005748,0.249934,0,0);}
.mbd_c01076{transform:matrix(0.258692,0.005691,-0.005499,0.249940,0,0);-ms-transform:matrix(0.258692,0.005691,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.258692,0.005691,-0.005499,0.249940,0,0);}
.m6c_c01076{transform:matrix(0.260072,0.006762,-0.006498,0.249916,0,0);-ms-transform:matrix(0.260072,0.006762,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.260072,0.006762,-0.006498,0.249916,0,0);}
.m6e_c01076{transform:matrix(0.260547,0.006774,-0.006498,0.249916,0,0);-ms-transform:matrix(0.260547,0.006774,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.260547,0.006774,-0.006498,0.249916,0,0);}
.m73_c01076{transform:matrix(0.261147,0.006790,-0.006498,0.249916,0,0);-ms-transform:matrix(0.261147,0.006790,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.261147,0.006790,-0.006498,0.249916,0,0);}
.m115_c01076{transform:matrix(0.261540,0.007062,-0.006748,0.249909,0,0);-ms-transform:matrix(0.261540,0.007062,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.261540,0.007062,-0.006748,0.249909,0,0);}
.mce_c01076{transform:matrix(0.262142,0.005767,-0.005499,0.249940,0,0);-ms-transform:matrix(0.262142,0.005767,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.262142,0.005767,-0.005499,0.249940,0,0);}
.m100_c01076{transform:matrix(0.264912,0.006623,-0.006248,0.249922,0,0);-ms-transform:matrix(0.264912,0.006623,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.264912,0.006623,-0.006248,0.249922,0,0);}
.mcb_c01076{transform:matrix(0.266336,0.005859,-0.005499,0.249940,0,0);-ms-transform:matrix(0.266336,0.005859,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.266336,0.005859,-0.005499,0.249940,0,0);}
.m74_c01076{transform:matrix(0.266505,0.006929,-0.006498,0.249916,0,0);-ms-transform:matrix(0.266505,0.006929,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.266505,0.006929,-0.006498,0.249916,0,0);}
.mfe_c01076{transform:matrix(0.266512,0.006663,-0.006248,0.249922,0,0);-ms-transform:matrix(0.266512,0.006663,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.266512,0.006663,-0.006248,0.249922,0,0);}
.m11c_c01076{transform:matrix(0.266643,0.007199,-0.006748,0.249909,0,0);-ms-transform:matrix(0.266643,0.007199,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.266643,0.007199,-0.006748,0.249909,0,0);}
.m2_c01076{transform:matrix(0.267865,0.005893,-0.005499,0.249940,0,0);-ms-transform:matrix(0.267865,0.005893,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.267865,0.005893,-0.005499,0.249940,0,0);}
.mb8_c01076{transform:matrix(0.268225,0.005901,-0.005499,0.249940,0,0);-ms-transform:matrix(0.268225,0.005901,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.268225,0.005901,-0.005499,0.249940,0,0);}
.m25_c01076{transform:matrix(0.269514,0.006199,-0.005748,0.249934,0,0);-ms-transform:matrix(0.269514,0.006199,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.269514,0.006199,-0.005748,0.249934,0,0);}
.meb_c01076{transform:matrix(0.269935,0.009727,-0.009003,0.249838,0,0);-ms-transform:matrix(0.269935,0.009727,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.269935,0.009727,-0.009003,0.249838,0,0);}
.m11e_c01076{transform:matrix(0.270851,0.007313,-0.006748,0.249909,0,0);-ms-transform:matrix(0.270851,0.007313,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.270851,0.007313,-0.006748,0.249909,0,0);}
.m2b_c01076{transform:matrix(0.271288,0.006240,-0.005748,0.249934,0,0);-ms-transform:matrix(0.271288,0.006240,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.271288,0.006240,-0.005748,0.249934,0,0);}
.m78_c01076{transform:matrix(0.271653,0.007063,-0.006498,0.249916,0,0);-ms-transform:matrix(0.271653,0.007063,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.271653,0.007063,-0.006498,0.249916,0,0);}
.m11b_c01076{transform:matrix(0.271656,0.007335,-0.006748,0.249909,0,0);-ms-transform:matrix(0.271656,0.007335,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.271656,0.007335,-0.006748,0.249909,0,0);}
.mfb_c01076{transform:matrix(0.271685,0.006792,-0.006248,0.249922,0,0);-ms-transform:matrix(0.271685,0.006792,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.271685,0.006792,-0.006248,0.249922,0,0);}
.m75_c01076{transform:matrix(0.271938,0.007070,-0.006498,0.249916,0,0);-ms-transform:matrix(0.271938,0.007070,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.271938,0.007070,-0.006498,0.249916,0,0);}
.mcf_c01076{transform:matrix(0.272639,0.005998,-0.005499,0.249940,0,0);-ms-transform:matrix(0.272639,0.005998,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.272639,0.005998,-0.005499,0.249940,0,0);}
.mff_c01076{transform:matrix(0.272865,0.006822,-0.006248,0.249922,0,0);-ms-transform:matrix(0.272865,0.006822,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.272865,0.006822,-0.006248,0.249922,0,0);}
.m76_c01076{transform:matrix(0.273523,0.007112,-0.006498,0.249916,0,0);-ms-transform:matrix(0.273523,0.007112,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.273523,0.007112,-0.006498,0.249916,0,0);}
.ma1_c01076{transform:matrix(0.275061,0.008252,-0.007497,0.249888,0,0);-ms-transform:matrix(0.275061,0.008252,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.275061,0.008252,-0.007497,0.249888,0,0);}
.m16_c01076{transform:matrix(0.276762,0.006366,-0.005748,0.249934,0,0);-ms-transform:matrix(0.276762,0.006366,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.276762,0.006366,-0.005748,0.249934,0,0);}
.m9f_c01076{transform:matrix(0.277030,0.008311,-0.007497,0.249888,0,0);-ms-transform:matrix(0.277030,0.008311,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.277030,0.008311,-0.007497,0.249888,0,0);}
.m103_c01076{transform:matrix(0.278403,0.006960,-0.006248,0.249922,0,0);-ms-transform:matrix(0.278403,0.006960,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.278403,0.006960,-0.006248,0.249922,0,0);}
.m1_c01076{transform:matrix(0.281825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281825,0.000000,0.000000,0.250000,0,0);}
.ma8_c01076{transform:matrix(0.281903,0.008457,-0.007497,0.249888,0,0);-ms-transform:matrix(0.281903,0.008457,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.281903,0.008457,-0.007497,0.249888,0,0);}
.mcd_c01076{transform:matrix(0.283971,0.006247,-0.005499,0.249940,0,0);-ms-transform:matrix(0.283971,0.006247,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.283971,0.006247,-0.005499,0.249940,0,0);}
.mbb_c01076{transform:matrix(0.285746,0.006286,-0.005499,0.249940,0,0);-ms-transform:matrix(0.285746,0.006286,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.285746,0.006286,-0.005499,0.249940,0,0);}
.mc2_c01076{transform:matrix(0.286506,0.006303,-0.005499,0.249940,0,0);-ms-transform:matrix(0.286506,0.006303,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.286506,0.006303,-0.005499,0.249940,0,0);}
.ma2_c01076{transform:matrix(0.287636,0.008629,-0.007497,0.249888,0,0);-ms-transform:matrix(0.287636,0.008629,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.287636,0.008629,-0.007497,0.249888,0,0);}
.ma6_c01076{transform:matrix(0.290389,0.008712,-0.007497,0.249888,0,0);-ms-transform:matrix(0.290389,0.008712,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.290389,0.008712,-0.007497,0.249888,0,0);}
.ma0_c01076{transform:matrix(0.293063,0.008792,-0.007497,0.249888,0,0);-ms-transform:matrix(0.293063,0.008792,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.293063,0.008792,-0.007497,0.249888,0,0);}
.m64_c01076{transform:matrix(0.300923,0.007824,-0.006498,0.249916,0,0);-ms-transform:matrix(0.300923,0.007824,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.300923,0.007824,-0.006498,0.249916,0,0);}
.ma3_c01076{transform:matrix(0.307906,0.009237,-0.007497,0.249888,0,0);-ms-transform:matrix(0.307906,0.009237,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.307906,0.009237,-0.007497,0.249888,0,0);}
.mbe_c01076{transform:matrix(0.315404,0.006939,-0.005499,0.249940,0,0);-ms-transform:matrix(0.315404,0.006939,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.315404,0.006939,-0.005499,0.249940,0,0);}
.ma7_c01076{transform:matrix(0.320621,0.009619,-0.007497,0.249888,0,0);-ms-transform:matrix(0.320621,0.009619,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.320621,0.009619,-0.007497,0.249888,0,0);}
.mc1_c01076{transform:matrix(0.323807,0.007124,-0.005499,0.249940,0,0);-ms-transform:matrix(0.323807,0.007124,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.323807,0.007124,-0.005499,0.249940,0,0);}
.m15_c01076{transform:matrix(0.334332,0.007690,-0.005748,0.249934,0,0);-ms-transform:matrix(0.334332,0.007690,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.334332,0.007690,-0.005748,0.249934,0,0);}
.m4_c01076{transform:matrix(0.471216,0.010367,-0.005499,0.249940,0,0);-ms-transform:matrix(0.471216,0.010367,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.471216,0.010367,-0.005499,0.249940,0,0);}
.m14b_c01076{transform:matrix(0.533585,0.013873,-0.006498,0.249916,0,0);-ms-transform:matrix(0.533585,0.013873,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.533585,0.013873,-0.006498,0.249916,0,0);}
.m14c_c01076{transform:matrix(0.908708,0.023626,-0.006498,0.249916,0,0);-ms-transform:matrix(0.908708,0.023626,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.908708,0.023626,-0.006498,0.249916,0,0);}
.m131_c01076{transform:matrix(0.935579,0.028067,-0.007497,0.249888,0,0);-ms-transform:matrix(0.935579,0.028067,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.935579,0.028067,-0.007497,0.249888,0,0);}
.m0_c01076{transform:matrix(1.037715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.037715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.037715,0.000000,0.000000,0.250000,0,0);}
.m12f_c01076{transform:matrix(1.175611,0.035268,-0.007497,0.249888,0,0);-ms-transform:matrix(1.175611,0.035268,-0.007497,0.249888,0,0);-webkit-transform:matrix(1.175611,0.035268,-0.007497,0.249888,0,0);}
.m14d_c01076{transform:matrix(1.409889,0.036657,-0.006498,0.249916,0,0);-ms-transform:matrix(1.409889,0.036657,-0.006498,0.249916,0,0);-webkit-transform:matrix(1.409889,0.036657,-0.006498,0.249916,0,0);}
.m130_c01076{transform:matrix(1.563012,0.046890,-0.007497,0.249888,0,0);-ms-transform:matrix(1.563012,0.046890,-0.007497,0.249888,0,0);-webkit-transform:matrix(1.563012,0.046890,-0.007497,0.249888,0,0);}
.m12e_c01076{transform:matrix(5.048074,0.151442,-0.007497,0.249888,0,0);-ms-transform:matrix(5.048074,0.151442,-0.007497,0.249888,0,0);-webkit-transform:matrix(5.048074,0.151442,-0.007497,0.249888,0,0);}
.m14a_c01076{transform:matrix(7.016589,0.182431,-0.006498,0.249916,0,0);-ms-transform:matrix(7.016589,0.182431,-0.006498,0.249916,0,0);-webkit-transform:matrix(7.016589,0.182431,-0.006498,0.249916,0,0);}
.v0_c01076{vertical-align:0.000000px;}
.ls0_c01076{letter-spacing:0.000000px;}
.sc__c01076{text-shadow:none;}
.sc0_c01076{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__c01076{-webkit-text-stroke:0px transparent;}
.sc0_c01076{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01076{word-spacing:0.000000px;}
.fc0_c01076{color:transparent;}
.fs0_c01076{font-size:18.000000px;}
.fs18_c01076{font-size:18.008098px;}
.fs1a_c01076{font-size:36.012166px;}
.fs1_c01076{font-size:60.014518px;}
.fsc_c01076{font-size:66.029693px;}
.fs13_c01076{font-size:71.974688px;}
.fse_c01076{font-size:72.017422px;}
.fs4_c01076{font-size:72.019041px;}
.fs15_c01076{font-size:72.022496px;}
.fs9_c01076{font-size:72.024332px;}
.fs17_c01076{font-size:72.026239px;}
.fs2_c01076{font-size:78.014078px;}
.fs10_c01076{font-size:78.018874px;}
.fs6_c01076{font-size:78.020628px;}
.fs8_c01076{font-size:78.026360px;}
.fsa_c01076{font-size:78.035092px;}
.fsf_c01076{font-size:84.020326px;}
.fs3_c01076{font-size:84.022215px;}
.fs7_c01076{font-size:84.028387px;}
.fs11_c01076{font-size:84.035315px;}
.fsb_c01076{font-size:84.037791px;}
.fs14_c01076{font-size:90.028121px;}
.fs16_c01076{font-size:90.030415px;}
.fs12_c01076{font-size:90.037837px;}
.fs5_c01076{font-size:96.025389px;}
.fs19_c01076{font-size:102.034470px;}
.fsd_c01076{font-size:102.045890px;}
.y0_c01076{bottom:0.000000px;}
.y152_c01076{bottom:51.705351px;}
.y14d_c01076{bottom:53.453688px;}
.y14c_c01076{bottom:54.245064px;}
.y14b_c01076{bottom:55.348290px;}
.y151_c01076{bottom:57.419742px;}
.y150_c01076{bottom:58.463610px;}
.y14a_c01076{bottom:59.069805px;}
.y14f_c01076{bottom:59.070594px;}
.y149_c01076{bottom:60.113883px;}
.y148_c01076{bottom:60.904596px;}
.y147_c01076{bottom:62.499186px;}
.y146_c01076{bottom:63.317142px;}
.y145_c01076{bottom:64.095471px;}
.y14e_c01076{bottom:64.518669px;}
.y144_c01076{bottom:66.214206px;}
.y143_c01076{bottom:67.004412px;}
.y142_c01076{bottom:67.757682px;}
.y141_c01076{bottom:69.116925px;}
.y140_c01076{bottom:86.915229px;}
.y13f_c01076{bottom:90.086397px;}
.y13e_c01076{bottom:91.835781px;}
.y13d_c01076{bottom:94.132725px;}
.y13c_c01076{bottom:95.017869px;}
.y13b_c01076{bottom:96.717606px;}
.y13a_c01076{bottom:98.489142px;}
.y139_c01076{bottom:100.777272px;}
.y138_c01076{bottom:101.612184px;}
.y137_c01076{bottom:102.982254px;}
.y136_c01076{bottom:104.769000px;}
.y135_c01076{bottom:119.204445px;}
.y134_c01076{bottom:120.789435px;}
.y133_c01076{bottom:121.785060px;}
.y131_c01076{bottom:122.915805px;}
.y130_c01076{bottom:123.921195px;}
.y132_c01076{bottom:125.312985px;}
.y12f_c01076{bottom:125.906730px;}
.y12e_c01076{bottom:126.937410px;}
.y12d_c01076{bottom:128.217615px;}
.y12c_c01076{bottom:128.952195px;}
.y12b_c01076{bottom:131.265015px;}
.y12a_c01076{bottom:132.237555px;}
.y129_c01076{bottom:133.915425px;}
.y128_c01076{bottom:134.912715px;}
.y127_c01076{bottom:136.857525px;}
.y126_c01076{bottom:139.198110px;}
.y125_c01076{bottom:140.194185px;}
.y124_c01076{bottom:140.836470px;}
.y123_c01076{bottom:142.840500px;}
.y122_c01076{bottom:160.100723px;}
.y121_c01076{bottom:161.333866px;}
.y120_c01076{bottom:163.692222px;}
.y11f_c01076{bottom:166.092130px;}
.y11e_c01076{bottom:167.303404px;}
.y11d_c01076{bottom:168.375237px;}
.y11c_c01076{bottom:169.980009px;}
.y11b_c01076{bottom:170.891705px;}
.y11a_c01076{bottom:171.793964px;}
.y119_c01076{bottom:173.582120px;}
.y118_c01076{bottom:174.763059px;}
.y117_c01076{bottom:175.636968px;}
.y116_c01076{bottom:177.400500px;}
.y115_c01076{bottom:194.922933px;}
.y114_c01076{bottom:196.046835px;}
.y113_c01076{bottom:197.837052px;}
.y112_c01076{bottom:199.273929px;}
.y111_c01076{bottom:200.132709px;}
.y110_c01076{bottom:203.043123px;}
.y10f_c01076{bottom:204.173889px;}
.y10e_c01076{bottom:204.747345px;}
.y10d_c01076{bottom:206.716299px;}
.y10c_c01076{bottom:210.170451px;}
.y10b_c01076{bottom:210.748470px;}
.y10a_c01076{bottom:213.040500px;}
.y109_c01076{bottom:232.067888px;}
.y108_c01076{bottom:232.898212px;}
.y107_c01076{bottom:235.424625px;}
.y106_c01076{bottom:236.539200px;}
.y105_c01076{bottom:237.077175px;}
.y104_c01076{bottom:238.970625px;}
.y103_c01076{bottom:241.489275px;}
.y102_c01076{bottom:243.661763px;}
.y101_c01076{bottom:244.823063px;}
.y100_c01076{bottom:245.649000px;}
.yff_c01076{bottom:247.841887px;}
.yfe_c01076{bottom:248.665125px;}
.yfd_c01076{bottom:249.486000px;}
.yfc_c01076{bottom:268.844963px;}
.yfb_c01076{bottom:270.221700px;}
.yfa_c01076{bottom:271.063650px;}
.yf9_c01076{bottom:272.454900px;}
.yf8_c01076{bottom:274.961063px;}
.yf7_c01076{bottom:275.779763px;}
.yf6_c01076{bottom:277.690425px;}
.yf5_c01076{bottom:278.582175px;}
.yf4_c01076{bottom:280.358213px;}
.yf3_c01076{bottom:282.362850px;}
.yf2_c01076{bottom:283.199438px;}
.yf1_c01076{bottom:285.129000px;}
.yf0_c01076{bottom:304.584774px;}
.yef_c01076{bottom:306.223674px;}
.yee_c01076{bottom:307.815000px;}
.yed_c01076{bottom:311.780840px;}
.yec_c01076{bottom:312.466815px;}
.yeb_c01076{bottom:313.331420px;}
.yea_c01076{bottom:314.023856px;}
.ye9_c01076{bottom:315.573957px;}
.ye8_c01076{bottom:317.341041px;}
.ye7_c01076{bottom:317.984181px;}
.ye6_c01076{bottom:318.880091px;}
.ye5_c01076{bottom:320.413289px;}
.ye4_c01076{bottom:321.290685px;}
.ye3_c01076{bottom:341.123538px;}
.ye2_c01076{bottom:344.636468px;}
.ye1_c01076{bottom:345.616392px;}
.ye0_c01076{bottom:347.572631px;}
.ydf_c01076{bottom:349.822059px;}
.yde_c01076{bottom:352.014894px;}
.ydd_c01076{bottom:353.605515px;}
.ydc_c01076{bottom:355.564668px;}
.ydb_c01076{bottom:356.501832px;}
.yda_c01076{bottom:357.490500px;}
.yd9_c01076{bottom:379.348890px;}
.yd8_c01076{bottom:390.432402px;}
.yd7_c01076{bottom:392.286948px;}
.yd6_c01076{bottom:412.720311px;}
.yd5_c01076{bottom:413.825283px;}
.yd4_c01076{bottom:414.676086px;}
.yd3_c01076{bottom:416.067018px;}
.yd2_c01076{bottom:418.838520px;}
.yd1_c01076{bottom:420.499227px;}
.yd0_c01076{bottom:421.335000px;}
.ycf_c01076{bottom:424.637706px;}
.yce_c01076{bottom:426.000855px;}
.ycd_c01076{bottom:428.492139px;}
.ycc_c01076{bottom:429.288531px;}
.ycb_c01076{bottom:449.392275px;}
.yca_c01076{bottom:451.429524px;}
.yc9_c01076{bottom:452.200668px;}
.yc8_c01076{bottom:454.742250px;}
.yc7_c01076{bottom:455.512173px;}
.yc6_c01076{bottom:456.507723px;}
.yc5_c01076{bottom:457.811100px;}
.yc4_c01076{bottom:458.576700px;}
.yc3_c01076{bottom:460.842414px;}
.yc2_c01076{bottom:463.382379px;}
.yc1_c01076{bottom:464.127717px;}
.yc0_c01076{bottom:488.671218px;}
.ybf_c01076{bottom:489.663990px;}
.ybe_c01076{bottom:490.383324px;}
.ybd_c01076{bottom:491.898717px;}
.ybc_c01076{bottom:492.844266px;}
.ybb_c01076{bottom:493.555449px;}
.yba_c01076{bottom:495.980619px;}
.yb9_c01076{bottom:496.942008px;}
.yb8_c01076{bottom:497.680218px;}
.yb7_c01076{bottom:498.624447px;}
.yb6_c01076{bottom:499.378266px;}
.yb5_c01076{bottom:500.586000px;}
.yb4_c01076{bottom:524.900895px;}
.yb3_c01076{bottom:525.542265px;}
.yb2_c01076{bottom:526.222770px;}
.yb1_c01076{bottom:528.027930px;}
.yb0_c01076{bottom:529.085940px;}
.yaf_c01076{bottom:530.426310px;}
.yae_c01076{bottom:531.084735px;}
.yad_c01076{bottom:532.859535px;}
.yac_c01076{bottom:535.055820px;}
.yab_c01076{bottom:536.179035px;}
.yaa_c01076{bottom:558.614205px;}
.ya9_c01076{bottom:559.769400px;}
.ya8_c01076{bottom:560.868480px;}
.ya7_c01076{bottom:561.494730px;}
.ya6_c01076{bottom:561.964380px;}
.ya5_c01076{bottom:564.822945px;}
.ya4_c01076{bottom:566.164185px;}
.ya3_c01076{bottom:567.492600px;}
.ya2_c01076{bottom:569.244735px;}
.ya1_c01076{bottom:570.566310px;}
.ya0_c01076{bottom:571.451895px;}
.y9f_c01076{bottom:572.104590px;}
.y9e_c01076{bottom:592.128540px;}
.y9d_c01076{bottom:593.216265px;}
.y9c_c01076{bottom:595.590390px;}
.y9b_c01076{bottom:596.951520px;}
.y9a_c01076{bottom:598.528605px;}
.y99_c01076{bottom:599.325090px;}
.y98_c01076{bottom:601.989135px;}
.y97_c01076{bottom:602.761125px;}
.y96_c01076{bottom:604.641075px;}
.y95_c01076{bottom:605.155485px;}
.y94_c01076{bottom:608.301765px;}
.y93_c01076{bottom:626.694330px;}
.y92_c01076{bottom:629.353110px;}
.y91_c01076{bottom:630.395580px;}
.y90_c01076{bottom:632.382015px;}
.y8f_c01076{bottom:634.062180px;}
.y8e_c01076{bottom:634.723185px;}
.y8d_c01076{bottom:636.371355px;}
.y8c_c01076{bottom:637.350510px;}
.y8b_c01076{bottom:639.359130px;}
.y8a_c01076{bottom:640.313040px;}
.y89_c01076{bottom:641.042445px;}
.y88_c01076{bottom:643.962000px;}
.y87_c01076{bottom:660.327660px;}
.y86_c01076{bottom:678.726729px;}
.y85_c01076{bottom:700.340295px;}
.y84_c01076{bottom:701.157549px;}
.y83_c01076{bottom:702.473187px;}
.y82_c01076{bottom:703.790346px;}
.y81_c01076{bottom:705.960858px;}
.y80_c01076{bottom:708.064401px;}
.y7f_c01076{bottom:709.929069px;}
.y7e_c01076{bottom:711.488400px;}
.y7d_c01076{bottom:712.829625px;}
.y7c_c01076{bottom:715.725324px;}
.y7b_c01076{bottom:736.005048px;}
.y7a_c01076{bottom:738.152508px;}
.y79_c01076{bottom:738.963951px;}
.y78_c01076{bottom:741.861678px;}
.y77_c01076{bottom:744.006135px;}
.y76_c01076{bottom:746.086920px;}
.y75_c01076{bottom:746.897154px;}
.y74_c01076{bottom:748.729410px;}
.y73_c01076{bottom:749.313015px;}
.y72_c01076{bottom:750.831567px;}
.y71_c01076{bottom:751.648002px;}
.y70_c01076{bottom:773.052366px;}
.y6f_c01076{bottom:774.880008px;}
.y6e_c01076{bottom:775.631460px;}
.y6d_c01076{bottom:777.922560px;}
.y6c_c01076{bottom:779.191746px;}
.y6b_c01076{bottom:781.471671px;}
.y6a_c01076{bottom:782.769429px;}
.y69_c01076{bottom:784.304376px;}
.y68_c01076{bottom:785.056374px;}
.y67_c01076{bottom:786.565266px;}
.y66_c01076{bottom:787.570095px;}
.y65_c01076{bottom:807.988812px;}
.y64_c01076{bottom:808.742019px;}
.y63_c01076{bottom:811.805049px;}
.y62_c01076{bottom:812.586672px;}
.y61_c01076{bottom:814.116861px;}
.y60_c01076{bottom:814.879332px;}
.y5f_c01076{bottom:816.664107px;}
.y5e_c01076{bottom:817.401342px;}
.y5d_c01076{bottom:818.954193px;}
.y5c_c01076{bottom:820.700685px;}
.y5b_c01076{bottom:822.738096px;}
.y5a_c01076{bottom:823.493352px;}
.y59_c01076{bottom:845.056968px;}
.y58_c01076{bottom:845.927682px;}
.y57_c01076{bottom:848.842542px;}
.y56_c01076{bottom:851.406714px;}
.y55_c01076{bottom:853.733025px;}
.y54_c01076{bottom:854.286864px;}
.y53_c01076{bottom:856.017840px;}
.y52_c01076{bottom:856.868079px;}
.y51_c01076{bottom:858.609000px;}
.y50_c01076{bottom:887.600328px;}
.y4f_c01076{bottom:888.168259px;}
.y4e_c01076{bottom:889.383673px;}
.y4d_c01076{bottom:891.174282px;}
.y4c_c01076{bottom:891.751530px;}
.y4b_c01076{bottom:892.350068px;}
.y4a_c01076{bottom:893.560633px;}
.y49_c01076{bottom:894.736764px;}
.y48_c01076{bottom:916.822844px;}
.y47_c01076{bottom:918.379807px;}
.y46_c01076{bottom:919.047933px;}
.y45_c01076{bottom:921.043925px;}
.y44_c01076{bottom:921.948738px;}
.y43_c01076{bottom:923.030601px;}
.y42_c01076{bottom:923.700245px;}
.y41_c01076{bottom:924.807036px;}
.y40_c01076{bottom:925.470348px;}
.y3f_c01076{bottom:926.362050px;}
.y3e_c01076{bottom:927.442050px;}
.y3d_c01076{bottom:928.340912px;}
.y3c_c01076{bottom:929.667657px;}
.y3b_c01076{bottom:930.113482px;}
.y3a_c01076{bottom:952.882419px;}
.y39_c01076{bottom:953.545834px;}
.y38_c01076{bottom:954.886950px;}
.y37_c01076{bottom:955.561561px;}
.y36_c01076{bottom:956.020550px;}
.y35_c01076{bottom:957.987525px;}
.y34_c01076{bottom:958.656030px;}
.y33_c01076{bottom:959.753626px;}
.y32_c01076{bottom:960.418180px;}
.y31_c01076{bottom:961.963482px;}
.y30_c01076{bottom:962.626898px;}
.y2f_c01076{bottom:964.600946px;}
.y2e_c01076{bottom:965.495131px;}
.y2d_c01076{bottom:987.564162px;}
.y2c_c01076{bottom:988.307619px;}
.y2b_c01076{bottom:990.054514px;}
.y2a_c01076{bottom:990.773304px;}
.y29_c01076{bottom:992.216506px;}
.y28_c01076{bottom:992.939988px;}
.y27_c01076{bottom:994.433130px;}
.y26_c01076{bottom:995.406862px;}
.y25_c01076{bottom:997.313480px;}
.y24_c01076{bottom:998.062889px;}
.y23_c01076{bottom:998.786094px;}
.y22_c01076{bottom:999.302226px;}
.y21_c01076{bottom:1000.955365px;}
.y20_c01076{bottom:1001.685609px;}
.y1f_c01076{bottom:1023.802408px;}
.y1e_c01076{bottom:1024.511641px;}
.y1d_c01076{bottom:1024.997787px;}
.y1c_c01076{bottom:1026.144915px;}
.y1b_c01076{bottom:1026.836501px;}
.y1a_c01076{bottom:1028.492838px;}
.y19_c01076{bottom:1029.162963px;}
.y18_c01076{bottom:1030.359514px;}
.y17_c01076{bottom:1032.191689px;}
.y16_c01076{bottom:1032.891693px;}
.y15_c01076{bottom:1034.490516px;}
.y14_c01076{bottom:1035.198196px;}
.y13_c01076{bottom:1035.878483px;}
.y12_c01076{bottom:1036.797675px;}
.y11_c01076{bottom:1059.074460px;}
.y10_c01076{bottom:1061.703739px;}
.yf_c01076{bottom:1063.964283px;}
.ye_c01076{bottom:1064.740464px;}
.yd_c01076{bottom:1067.026123px;}
.yc_c01076{bottom:1068.833751px;}
.yb_c01076{bottom:1070.075716px;}
.ya_c01076{bottom:1071.367500px;}
.y1_c01076{bottom:1135.350000px;}
.y9_c01076{bottom:1137.577863px;}
.y8_c01076{bottom:1138.829640px;}
.y7_c01076{bottom:1139.465731px;}
.y6_c01076{bottom:1141.564500px;}
.y5_c01076{bottom:1213.123788px;}
.y4_c01076{bottom:1214.097189px;}
.y3_c01076{bottom:1214.587074px;}
.y2_c01076{bottom:1216.894500px;}
.h2_c01076{height:18.000000px;}
.h1a_c01076{height:18.008098px;}
.h1c_c01076{height:36.012166px;}
.h3_c01076{height:60.014518px;}
.he_c01076{height:66.029693px;}
.h15_c01076{height:71.974688px;}
.h10_c01076{height:72.017422px;}
.h6_c01076{height:72.019041px;}
.h17_c01076{height:72.022496px;}
.hb_c01076{height:72.024332px;}
.h19_c01076{height:72.026239px;}
.h4_c01076{height:78.014078px;}
.h12_c01076{height:78.018874px;}
.h8_c01076{height:78.020628px;}
.ha_c01076{height:78.026360px;}
.hc_c01076{height:78.035092px;}
.h11_c01076{height:84.020326px;}
.h5_c01076{height:84.022215px;}
.h9_c01076{height:84.028387px;}
.h13_c01076{height:84.035315px;}
.hd_c01076{height:84.037791px;}
.h16_c01076{height:90.028121px;}
.h18_c01076{height:90.030415px;}
.h14_c01076{height:90.037837px;}
.h7_c01076{height:96.025389px;}
.h1b_c01076{height:102.034470px;}
.hf_c01076{height:102.045890px;}
.h0_c01076{height:1246.320000px;}
.h1_c01076{height:1246.500000px;}
.w1_c01076{width:885.750000px;}
.w0_c01076{width:885.870000px;}
.x0_c01076{left:0.000000px;}
.x1_c01076{left:37.260000px;}
.x2_c01076{left:38.340000px;}
.xcd_c01076{left:113.854500px;}
.xc4_c01076{left:115.720500px;}
.xb5_c01076{left:117.049734px;}
.xaf_c01076{left:118.233237px;}
.x8e_c01076{left:119.567025px;}
.x86_c01076{left:121.727265px;}
.x6a_c01076{left:123.328203px;}
.x5c_c01076{left:124.762374px;}
.x35_c01076{left:125.867244px;}
.x2c_c01076{left:127.218306px;}
.x1f_c01076{left:128.508429px;}
.x13_c01076{left:129.574143px;}
.x36_c01076{left:148.187297px;}
.xa6_c01076{left:151.104768px;}
.x9c_c01076{left:152.202513px;}
.x87_c01076{left:154.393575px;}
.x52_c01076{left:158.160186px;}
.x20_c01076{left:161.693688px;}
.x5d_c01076{left:168.432267px;}
.xd7_c01076{left:169.915902px;}
.x2d_c01076{left:171.903377px;}
.x14_c01076{left:173.323644px;}
.x8f_c01076{left:175.724355px;}
.xdc_c01076{left:177.587427px;}
.xce_c01076{left:180.655500px;}
.xc0_c01076{left:181.872000px;}
.x42_c01076{left:191.424635px;}
.xbb_c01076{left:193.741500px;}
.x88_c01076{left:198.676350px;}
.xcf_c01076{left:202.065000px;}
.xc5_c01076{left:203.875500px;}
.x15_c01076{left:205.707128px;}
.x37_c01076{left:214.550385px;}
.xb0_c01076{left:215.832672px;}
.x64_c01076{left:221.663823px;}
.xb1_c01076{left:226.956000px;}
.x94_c01076{left:230.553000px;}
.x73_c01076{left:232.884000px;}
.x49_c01076{left:234.840000px;}
.x21_c01076{left:236.831913px;}
.xb_c01076{left:238.651500px;}
.x6b_c01076{left:243.995982px;}
.x53_c01076{left:246.740589px;}
.xa7_c01076{left:250.770201px;}
.x7f_c01076{left:253.589970px;}
.xcb_c01076{left:257.419500px;}
.x43_c01076{left:258.674363px;}
.x22_c01076{left:260.316465px;}
.x9d_c01076{left:262.607571px;}
.x89_c01076{left:264.748650px;}
.x5e_c01076{left:266.704911px;}
.x2e_c01076{left:270.586173px;}
.x80_c01076{left:275.040840px;}
.xb6_c01076{left:282.368843px;}
.x90_c01076{left:285.516750px;}
.x44_c01076{left:291.940692px;}
.x23_c01076{left:293.195724px;}
.xc_c01076{left:294.816000px;}
.x6c_c01076{left:299.911407px;}
.x4a_c01076{left:301.798500px;}
.x3_c01076{left:303.031500px;}
.xa8_c01076{left:305.296104px;}
.xbc_c01076{left:307.390500px;}
.x38_c01076{left:313.507716px;}
.x16_c01076{left:315.516665px;}
.x95_c01076{left:319.714500px;}
.x54_c01076{left:322.688517px;}
.x45_c01076{left:324.020384px;}
.x24_c01076{left:327.279518px;}
.x7_c01076{left:328.599000px;}
.x74_c01076{left:330.202500px;}
.x5f_c01076{left:333.419598px;}
.x4b_c01076{left:334.500000px;}
.xd_c01076{left:348.814500px;}
.x81_c01076{left:353.369925px;}
.x75_c01076{left:354.516000px;}
.x65_c01076{left:356.078304px;}
.x39_c01076{left:358.084787px;}
.x9e_c01076{left:361.092393px;}
.x96_c01076{left:362.634000px;}
.x6d_c01076{left:364.908300px;}
.x91_c01076{left:374.253345px;}
.xbd_c01076{left:378.432000px;}
.x2f_c01076{left:380.972763px;}
.x76_c01076{left:386.313000px;}
.xd8_c01076{left:389.023290px;}
.x55_c01076{left:390.207282px;}
.x3a_c01076{left:391.231064px;}
.x9f_c01076{left:394.391667px;}
.x97_c01076{left:396.189000px;}
.x4c_c01076{left:401.076000px;}
.xb7_c01076{left:402.856249px;}
.x4_c01076{left:407.914500px;}
.xd0_c01076{left:411.357000px;}
.x25_c01076{left:413.960519px;}
.xb2_c01076{left:415.770000px;}
.x8a_c01076{left:418.829865px;}
.x4d_c01076{left:422.377500px;}
.x46_c01076{left:423.471303px;}
.xe_c01076{left:427.407000px;}
.x5_c01076{left:430.182000px;}
.xc6_c01076{left:434.688000px;}
.x17_c01076{left:436.051685px;}
.xa9_c01076{left:437.410392px;}
.x8_c01076{left:439.060500px;}
.x66_c01076{left:442.805328px;}
.x3b_c01076{left:446.595393px;}
.xa0_c01076{left:451.043913px;}
.x77_c01076{left:453.267000px;}
.xd9_c01076{left:455.491761px;}
.xc7_c01076{left:456.744000px;}
.x26_c01076{left:458.189019px;}
.xdd_c01076{left:465.896367px;}
.xd1_c01076{left:467.286000px;}
.x30_c01076{left:469.072335px;}
.xaa_c01076{left:470.829681px;}
.x9_c01076{left:472.539000px;}
.x6_c01076{left:474.427500px;}
.x3c_c01076{left:480.082205px;}
.x78_c01076{left:485.905500px;}
.x60_c01076{left:488.977227px;}
.x47_c01076{left:490.997066px;}
.x18_c01076{left:493.034807px;}
.xa1_c01076{left:494.317956px;}
.x82_c01076{left:496.530165px;}
.x56_c01076{left:499.850823px;}
.x31_c01076{left:502.509647px;}
.x4e_c01076{left:511.851000px;}
.xb8_c01076{left:514.972982px;}
.x48_c01076{left:522.541188px;}
.x19_c01076{left:524.911256px;}
.xf_c01076{left:526.783500px;}
.xa2_c01076{left:527.813730px;}
.x6e_c01076{left:530.290419px;}
.xda_c01076{left:531.949239px;}
.x57_c01076{left:532.986897px;}
.x3d_c01076{left:534.166931px;}
.xab_c01076{left:537.243792px;}
.xa_c01076{left:538.422000px;}
.x79_c01076{left:540.844500px;}
.x61_c01076{left:544.142517px;}
.x98_c01076{left:550.123500px;}
.x27_c01076{left:558.935831px;}
.x10_c01076{left:560.530500px;}
.x7a_c01076{left:562.878000px;}
.xb3_c01076{left:568.951500px;}
.xd2_c01076{left:576.798000px;}
.x3e_c01076{left:579.444570px;}
.x99_c01076{left:582.450000px;}
.xb9_c01076{left:592.513209px;}
.x83_c01076{left:595.466985px;}
.x58_c01076{left:599.518584px;}
.x32_c01076{left:600.884943px;}
.x1a_c01076{left:603.777378px;}
.xd5_c01076{left:607.823820px;}
.x4f_c01076{left:610.473000px;}
.xc1_c01076{left:612.460500px;}
.x92_c01076{left:617.441790px;}
.x7b_c01076{left:618.883500px;}
.x6f_c01076{left:620.757138px;}
.xbe_c01076{left:623.523000px;}
.x28_c01076{left:624.554849px;}
.x8b_c01076{left:628.786275px;}
.x59_c01076{left:633.506736px;}
.x1b_c01076{left:636.717396px;}
.xa3_c01076{left:638.292288px;}
.x62_c01076{left:643.750278px;}
.xc8_c01076{left:645.204000px;}
.xac_c01076{left:648.077466px;}
.x93_c01076{left:651.485505px;}
.x67_c01076{left:652.900248px;}
.x29_c01076{left:657.242108px;}
.x11_c01076{left:658.815000px;}
.xb4_c01076{left:670.198500px;}
.xa4_c01076{left:671.843562px;}
.x63_c01076{left:676.404813px;}
.x3f_c01076{left:679.211936px;}
.x8c_c01076{left:683.582700px;}
.x7c_c01076{left:685.098000px;}
.x68_c01076{left:686.707503px;}
.x1c_c01076{left:691.355915px;}
.x9a_c01076{left:694.311000px;}
.xc9_c01076{left:700.468500px;}
.xad_c01076{left:703.729803px;}
.xcc_c01076{left:711.058500px;}
.x40_c01076{left:712.632747px;}
.x1d_c01076{left:714.515484px;}
.x7d_c01076{left:719.847000px;}
.x50_c01076{left:722.583000px;}
.x33_c01076{left:724.598465px;}
.x9b_c01076{left:727.008000px;}
.x70_c01076{left:730.447332px;}
.xdb_c01076{left:732.988191px;}
.x2a_c01076{left:736.652436px;}
.x8d_c01076{left:738.535170px;}
.xd3_c01076{left:744.498000px;}
.x1e_c01076{left:748.288037px;}
.x84_c01076{left:751.103475px;}
.x51_c01076{left:756.072000px;}
.x34_c01076{left:757.749242px;}
.xa5_c01076{left:760.421115px;}
.x71_c01076{left:764.478087px;}
.x5a_c01076{left:766.672110px;}
.xbf_c01076{left:767.920500px;}
.xca_c01076{left:769.323000px;}
.x2b_c01076{left:770.412195px;}
.x12_c01076{left:773.131500px;}
.x69_c01076{left:776.172144px;}
.xd4_c01076{left:778.011000px;}
.xc2_c01076{left:779.619000px;}
.xae_c01076{left:781.987155px;}
.xde_c01076{left:787.659636px;}
.x41_c01076{left:790.506129px;}
.xd6_c01076{left:792.925170px;}
.x85_c01076{left:796.419120px;}
.x5b_c01076{left:799.394145px;}
.xba_c01076{left:802.311271px;}
.x7e_c01076{left:808.473000px;}
.xc3_c01076{left:812.832000px;}
.x72_c01076{left:830.930853px;}
@media print{
.v0_c01076{vertical-align:0.000000pt;}
.ls0_c01076{letter-spacing:0.000000pt;}
.ws0_c01076{word-spacing:0.000000pt;}
.fs0_c01076{font-size:16.000000pt;}
.fs18_c01076{font-size:16.007198pt;}
.fs1a_c01076{font-size:32.010814pt;}
.fs1_c01076{font-size:53.346238pt;}
.fsc_c01076{font-size:58.693061pt;}
.fs13_c01076{font-size:63.977500pt;}
.fse_c01076{font-size:64.015486pt;}
.fs4_c01076{font-size:64.016926pt;}
.fs15_c01076{font-size:64.019997pt;}
.fs9_c01076{font-size:64.021628pt;}
.fs17_c01076{font-size:64.023324pt;}
.fs2_c01076{font-size:69.345847pt;}
.fs10_c01076{font-size:69.350110pt;}
.fs6_c01076{font-size:69.351670pt;}
.fs8_c01076{font-size:69.356764pt;}
.fsa_c01076{font-size:69.364526pt;}
.fsf_c01076{font-size:74.684734pt;}
.fs3_c01076{font-size:74.686413pt;}
.fs7_c01076{font-size:74.691900pt;}
.fs11_c01076{font-size:74.698057pt;}
.fsb_c01076{font-size:74.700259pt;}
.fs14_c01076{font-size:80.024996pt;}
.fs16_c01076{font-size:80.027035pt;}
.fs12_c01076{font-size:80.033633pt;}
.fs5_c01076{font-size:85.355901pt;}
.fs19_c01076{font-size:90.697307pt;}
.fsd_c01076{font-size:90.707457pt;}
.y0_c01076{bottom:0.000000pt;}
.y152_c01076{bottom:45.960312pt;}
.y14d_c01076{bottom:47.514389pt;}
.y14c_c01076{bottom:48.217835pt;}
.y14b_c01076{bottom:49.198480pt;}
.y151_c01076{bottom:51.039771pt;}
.y150_c01076{bottom:51.967653pt;}
.y14a_c01076{bottom:52.506493pt;}
.y14f_c01076{bottom:52.507195pt;}
.y149_c01076{bottom:53.434563pt;}
.y148_c01076{bottom:54.137419pt;}
.y147_c01076{bottom:55.554832pt;}
.y146_c01076{bottom:56.281904pt;}
.y145_c01076{bottom:56.973752pt;}
.y14e_c01076{bottom:57.349928pt;}
.y144_c01076{bottom:58.857072pt;}
.y143_c01076{bottom:59.559477pt;}
.y142_c01076{bottom:60.229051pt;}
.y141_c01076{bottom:61.437267pt;}
.y140_c01076{bottom:77.257981pt;}
.y13f_c01076{bottom:80.076797pt;}
.y13e_c01076{bottom:81.631805pt;}
.y13d_c01076{bottom:83.673533pt;}
.y13c_c01076{bottom:84.460328pt;}
.y13b_c01076{bottom:85.971205pt;}
.y13a_c01076{bottom:87.545904pt;}
.y139_c01076{bottom:89.579797pt;}
.y138_c01076{bottom:90.321941pt;}
.y137_c01076{bottom:91.539781pt;}
.y136_c01076{bottom:93.128000pt;}
.y135_c01076{bottom:105.959507pt;}
.y134_c01076{bottom:107.368387pt;}
.y133_c01076{bottom:108.253387pt;}
.y131_c01076{bottom:109.258493pt;}
.y130_c01076{bottom:110.152173pt;}
.y132_c01076{bottom:111.389320pt;}
.y12f_c01076{bottom:111.917093pt;}
.y12e_c01076{bottom:112.833253pt;}
.y12d_c01076{bottom:113.971213pt;}
.y12c_c01076{bottom:114.624173pt;}
.y12b_c01076{bottom:116.680013pt;}
.y12a_c01076{bottom:117.544493pt;}
.y129_c01076{bottom:119.035933pt;}
.y128_c01076{bottom:119.922413pt;}
.y127_c01076{bottom:121.651133pt;}
.y126_c01076{bottom:123.731653pt;}
.y125_c01076{bottom:124.617053pt;}
.y124_c01076{bottom:125.187973pt;}
.y123_c01076{bottom:126.969333pt;}
.y122_c01076{bottom:142.311753pt;}
.y121_c01076{bottom:143.407881pt;}
.y120_c01076{bottom:145.504197pt;}
.y11f_c01076{bottom:147.637449pt;}
.y11e_c01076{bottom:148.714137pt;}
.y11d_c01076{bottom:149.666877pt;}
.y11c_c01076{bottom:151.093341pt;}
.y11b_c01076{bottom:151.903737pt;}
.y11a_c01076{bottom:152.705745pt;}
.y119_c01076{bottom:154.295217pt;}
.y118_c01076{bottom:155.344941pt;}
.y117_c01076{bottom:156.121749pt;}
.y116_c01076{bottom:157.689333pt;}
.y115_c01076{bottom:173.264829pt;}
.y114_c01076{bottom:174.263853pt;}
.y113_c01076{bottom:175.855157pt;}
.y112_c01076{bottom:177.132381pt;}
.y111_c01076{bottom:177.895741pt;}
.y110_c01076{bottom:180.482776pt;}
.y10f_c01076{bottom:181.487901pt;}
.y10e_c01076{bottom:181.997640pt;}
.y10d_c01076{bottom:183.747821pt;}
.y10c_c01076{bottom:186.818179pt;}
.y10b_c01076{bottom:187.331973pt;}
.y10a_c01076{bottom:189.369333pt;}
.y109_c01076{bottom:206.282567pt;}
.y108_c01076{bottom:207.020633pt;}
.y107_c01076{bottom:209.266333pt;}
.y106_c01076{bottom:210.257067pt;}
.y105_c01076{bottom:210.735267pt;}
.y104_c01076{bottom:212.418333pt;}
.y103_c01076{bottom:214.657133pt;}
.y102_c01076{bottom:216.588233pt;}
.y101_c01076{bottom:217.620500pt;}
.y100_c01076{bottom:218.354667pt;}
.yff_c01076{bottom:220.303900pt;}
.yfe_c01076{bottom:221.035667pt;}
.yfd_c01076{bottom:221.765333pt;}
.yfc_c01076{bottom:238.973300pt;}
.yfb_c01076{bottom:240.197067pt;}
.yfa_c01076{bottom:240.945467pt;}
.yf9_c01076{bottom:242.182133pt;}
.yf8_c01076{bottom:244.409833pt;}
.yf7_c01076{bottom:245.137567pt;}
.yf6_c01076{bottom:246.835933pt;}
.yf5_c01076{bottom:247.628600pt;}
.yf4_c01076{bottom:249.207300pt;}
.yf3_c01076{bottom:250.989200pt;}
.yf2_c01076{bottom:251.732833pt;}
.yf1_c01076{bottom:253.448000pt;}
.yf0_c01076{bottom:270.742021pt;}
.yef_c01076{bottom:272.198821pt;}
.yee_c01076{bottom:273.613333pt;}
.yed_c01076{bottom:277.138524pt;}
.yec_c01076{bottom:277.748280pt;}
.yeb_c01076{bottom:278.516817pt;}
.yea_c01076{bottom:279.132316pt;}
.ye9_c01076{bottom:280.510184pt;}
.ye8_c01076{bottom:282.080925pt;}
.ye7_c01076{bottom:282.652605pt;}
.ye6_c01076{bottom:283.448969pt;}
.ye5_c01076{bottom:284.811812pt;}
.ye4_c01076{bottom:285.591720pt;}
.ye3_c01076{bottom:303.220923pt;}
.ye2_c01076{bottom:306.343527pt;}
.ye1_c01076{bottom:307.214571pt;}
.ye0_c01076{bottom:308.953449pt;}
.ydf_c01076{bottom:310.952941pt;}
.yde_c01076{bottom:312.902128pt;}
.ydd_c01076{bottom:314.316013pt;}
.ydc_c01076{bottom:316.057483pt;}
.ydb_c01076{bottom:316.890517pt;}
.yda_c01076{bottom:317.769333pt;}
.yd9_c01076{bottom:337.199013pt;}
.yd8_c01076{bottom:347.051024pt;}
.yd7_c01076{bottom:348.699509pt;}
.yd6_c01076{bottom:366.862499pt;}
.yd5_c01076{bottom:367.844696pt;}
.yd4_c01076{bottom:368.600965pt;}
.yd3_c01076{bottom:369.837349pt;}
.yd2_c01076{bottom:372.300907pt;}
.yd1_c01076{bottom:373.777091pt;}
.yd0_c01076{bottom:374.520000pt;}
.ycf_c01076{bottom:377.455739pt;}
.yce_c01076{bottom:378.667427pt;}
.ycd_c01076{bottom:380.881901pt;}
.ycc_c01076{bottom:381.589805pt;}
.ycb_c01076{bottom:399.459800pt;}
.yca_c01076{bottom:401.270688pt;}
.yc9_c01076{bottom:401.956149pt;}
.yc8_c01076{bottom:404.215333pt;}
.yc7_c01076{bottom:404.899709pt;}
.yc6_c01076{bottom:405.784643pt;}
.yc5_c01076{bottom:406.943200pt;}
.yc4_c01076{bottom:407.623733pt;}
.yc3_c01076{bottom:409.637701pt;}
.yc2_c01076{bottom:411.895448pt;}
.yc1_c01076{bottom:412.557971pt;}
.yc0_c01076{bottom:434.374416pt;}
.ybf_c01076{bottom:435.256880pt;}
.ybe_c01076{bottom:435.896288pt;}
.ybd_c01076{bottom:437.243304pt;}
.ybc_c01076{bottom:438.083792pt;}
.ybb_c01076{bottom:438.715955pt;}
.yba_c01076{bottom:440.871661pt;}
.yb9_c01076{bottom:441.726229pt;}
.yb8_c01076{bottom:442.382416pt;}
.yb7_c01076{bottom:443.221731pt;}
.yb6_c01076{bottom:443.891792pt;}
.yb5_c01076{bottom:444.965333pt;}
.yb4_c01076{bottom:466.578573pt;}
.yb3_c01076{bottom:467.148680pt;}
.yb2_c01076{bottom:467.753573pt;}
.yb1_c01076{bottom:469.358160pt;}
.yb0_c01076{bottom:470.298613pt;}
.yaf_c01076{bottom:471.490053pt;}
.yae_c01076{bottom:472.075320pt;}
.yad_c01076{bottom:473.652920pt;}
.yac_c01076{bottom:475.605173pt;}
.yab_c01076{bottom:476.603587pt;}
.yaa_c01076{bottom:496.545960pt;}
.ya9_c01076{bottom:497.572800pt;}
.ya8_c01076{bottom:498.549760pt;}
.ya7_c01076{bottom:499.106427pt;}
.ya6_c01076{bottom:499.523893pt;}
.ya5_c01076{bottom:502.064840pt;}
.ya4_c01076{bottom:503.257053pt;}
.ya3_c01076{bottom:504.437867pt;}
.ya2_c01076{bottom:505.995320pt;}
.ya1_c01076{bottom:507.170053pt;}
.ya0_c01076{bottom:507.957240pt;}
.y9f_c01076{bottom:508.537413pt;}
.y9e_c01076{bottom:526.336480pt;}
.y9d_c01076{bottom:527.303347pt;}
.y9c_c01076{bottom:529.413680pt;}
.y9b_c01076{bottom:530.623573pt;}
.y9a_c01076{bottom:532.025427pt;}
.y99_c01076{bottom:532.733413pt;}
.y98_c01076{bottom:535.101453pt;}
.y97_c01076{bottom:535.787667pt;}
.y96_c01076{bottom:537.458733pt;}
.y95_c01076{bottom:537.915987pt;}
.y94_c01076{bottom:540.712680pt;}
.y93_c01076{bottom:557.061627pt;}
.y92_c01076{bottom:559.424987pt;}
.y91_c01076{bottom:560.351627pt;}
.y90_c01076{bottom:562.117347pt;}
.y8f_c01076{bottom:563.610827pt;}
.y8e_c01076{bottom:564.198387pt;}
.y8d_c01076{bottom:565.663427pt;}
.y8c_c01076{bottom:566.533787pt;}
.y8b_c01076{bottom:568.319227pt;}
.y8a_c01076{bottom:569.167147pt;}
.y89_c01076{bottom:569.815507pt;}
.y88_c01076{bottom:572.410667pt;}
.y87_c01076{bottom:586.957920pt;}
.y86_c01076{bottom:603.312648pt;}
.y85_c01076{bottom:622.524707pt;}
.y84_c01076{bottom:623.251155pt;}
.y83_c01076{bottom:624.420611pt;}
.y82_c01076{bottom:625.591419pt;}
.y81_c01076{bottom:627.520763pt;}
.y80_c01076{bottom:629.390579pt;}
.y7f_c01076{bottom:631.048061pt;}
.y7e_c01076{bottom:632.434133pt;}
.y7d_c01076{bottom:633.626333pt;}
.y7c_c01076{bottom:636.200288pt;}
.y7b_c01076{bottom:654.226709pt;}
.y7a_c01076{bottom:656.135563pt;}
.y79_c01076{bottom:656.856845pt;}
.y78_c01076{bottom:659.432603pt;}
.y77_c01076{bottom:661.338787pt;}
.y76_c01076{bottom:663.188373pt;}
.y75_c01076{bottom:663.908581pt;}
.y74_c01076{bottom:665.537253pt;}
.y73_c01076{bottom:666.056013pt;}
.y72_c01076{bottom:667.405837pt;}
.y71_c01076{bottom:668.131557pt;}
.y70_c01076{bottom:687.157659pt;}
.y6f_c01076{bottom:688.782229pt;}
.y6e_c01076{bottom:689.450187pt;}
.y6d_c01076{bottom:691.486720pt;}
.y6c_c01076{bottom:692.614885pt;}
.y6b_c01076{bottom:694.641485pt;}
.y6a_c01076{bottom:695.795048pt;}
.y69_c01076{bottom:697.159445pt;}
.y68_c01076{bottom:697.827888pt;}
.y67_c01076{bottom:699.169125pt;}
.y66_c01076{bottom:700.062307pt;}
.y65_c01076{bottom:718.212277pt;}
.y64_c01076{bottom:718.881795pt;}
.y63_c01076{bottom:721.604488pt;}
.y62_c01076{bottom:722.299264pt;}
.y61_c01076{bottom:723.659432pt;}
.y60_c01076{bottom:724.337184pt;}
.y5f_c01076{bottom:725.923651pt;}
.y5e_c01076{bottom:726.578971pt;}
.y5d_c01076{bottom:727.959283pt;}
.y5c_c01076{bottom:729.511720pt;}
.y5b_c01076{bottom:731.322752pt;}
.y5a_c01076{bottom:731.994091pt;}
.y59_c01076{bottom:751.161749pt;}
.y58_c01076{bottom:751.935717pt;}
.y57_c01076{bottom:754.526704pt;}
.y56_c01076{bottom:756.805968pt;}
.y55_c01076{bottom:758.873800pt;}
.y54_c01076{bottom:759.366101pt;}
.y53_c01076{bottom:760.904747pt;}
.y52_c01076{bottom:761.660515pt;}
.y51_c01076{bottom:763.208000pt;}
.y50_c01076{bottom:788.978069pt;}
.y4f_c01076{bottom:789.482897pt;}
.y4e_c01076{bottom:790.563265pt;}
.y4d_c01076{bottom:792.154917pt;}
.y4c_c01076{bottom:792.668027pt;}
.y4b_c01076{bottom:793.200060pt;}
.y4a_c01076{bottom:794.276119pt;}
.y49_c01076{bottom:795.321568pt;}
.y48_c01076{bottom:814.953639pt;}
.y47_c01076{bottom:816.337607pt;}
.y46_c01076{bottom:816.931496pt;}
.y45_c01076{bottom:818.705711pt;}
.y44_c01076{bottom:819.509989pt;}
.y43_c01076{bottom:820.471645pt;}
.y42_c01076{bottom:821.066884pt;}
.y41_c01076{bottom:822.050699pt;}
.y40_c01076{bottom:822.640309pt;}
.y3f_c01076{bottom:823.432933pt;}
.y3e_c01076{bottom:824.392933pt;}
.y3d_c01076{bottom:825.191921pt;}
.y3c_c01076{bottom:826.371251pt;}
.y3b_c01076{bottom:826.767540pt;}
.y3a_c01076{bottom:847.006595pt;}
.y39_c01076{bottom:847.596297pt;}
.y38_c01076{bottom:848.788400pt;}
.y37_c01076{bottom:849.388055pt;}
.y36_c01076{bottom:849.796044pt;}
.y35_c01076{bottom:851.544467pt;}
.y34_c01076{bottom:852.138693pt;}
.y33_c01076{bottom:853.114335pt;}
.y32_c01076{bottom:853.705049pt;}
.y31_c01076{bottom:855.078651pt;}
.y30_c01076{bottom:855.668353pt;}
.y2f_c01076{bottom:857.423063pt;}
.y2e_c01076{bottom:858.217895pt;}
.y2d_c01076{bottom:877.834811pt;}
.y2c_c01076{bottom:878.495661pt;}
.y2b_c01076{bottom:880.048457pt;}
.y2a_c01076{bottom:880.687381pt;}
.y29_c01076{bottom:881.970228pt;}
.y28_c01076{bottom:882.613323pt;}
.y27_c01076{bottom:883.940560pt;}
.y26_c01076{bottom:884.806100pt;}
.y25_c01076{bottom:886.500871pt;}
.y24_c01076{bottom:887.167012pt;}
.y23_c01076{bottom:887.809861pt;}
.y22_c01076{bottom:888.268645pt;}
.y21_c01076{bottom:889.738103pt;}
.y20_c01076{bottom:890.387208pt;}
.y1f_c01076{bottom:910.046585pt;}
.y1e_c01076{bottom:910.677015pt;}
.y1d_c01076{bottom:911.109144pt;}
.y1c_c01076{bottom:912.128813pt;}
.y1b_c01076{bottom:912.743556pt;}
.y1a_c01076{bottom:914.215856pt;}
.y19_c01076{bottom:914.811523pt;}
.y18_c01076{bottom:915.875124pt;}
.y17_c01076{bottom:917.503724pt;}
.y16_c01076{bottom:918.125949pt;}
.y15_c01076{bottom:919.547125pt;}
.y14_c01076{bottom:920.176175pt;}
.y13_c01076{bottom:920.780873pt;}
.y12_c01076{bottom:921.597933pt;}
.y11_c01076{bottom:941.399520pt;}
.y10_c01076{bottom:943.736657pt;}
.yf_c01076{bottom:945.746029pt;}
.ye_c01076{bottom:946.435968pt;}
.yd_c01076{bottom:948.467665pt;}
.yc_c01076{bottom:950.074445pt;}
.yb_c01076{bottom:951.178415pt;}
.ya_c01076{bottom:952.326667pt;}
.y1_c01076{bottom:1009.200000pt;}
.y9_c01076{bottom:1011.180323pt;}
.y8_c01076{bottom:1012.293013pt;}
.y7_c01076{bottom:1012.858428pt;}
.y6_c01076{bottom:1014.724000pt;}
.y5_c01076{bottom:1078.332256pt;}
.y4_c01076{bottom:1079.197501pt;}
.y3_c01076{bottom:1079.632955pt;}
.y2_c01076{bottom:1081.684000pt;}
.h2_c01076{height:16.000000pt;}
.h1a_c01076{height:16.007198pt;}
.h1c_c01076{height:32.010814pt;}
.h3_c01076{height:53.346238pt;}
.he_c01076{height:58.693061pt;}
.h15_c01076{height:63.977500pt;}
.h10_c01076{height:64.015486pt;}
.h6_c01076{height:64.016926pt;}
.h17_c01076{height:64.019997pt;}
.hb_c01076{height:64.021628pt;}
.h19_c01076{height:64.023324pt;}
.h4_c01076{height:69.345847pt;}
.h12_c01076{height:69.350110pt;}
.h8_c01076{height:69.351670pt;}
.ha_c01076{height:69.356764pt;}
.hc_c01076{height:69.364526pt;}
.h11_c01076{height:74.684734pt;}
.h5_c01076{height:74.686413pt;}
.h9_c01076{height:74.691900pt;}
.h13_c01076{height:74.698057pt;}
.hd_c01076{height:74.700259pt;}
.h16_c01076{height:80.024996pt;}
.h18_c01076{height:80.027035pt;}
.h14_c01076{height:80.033633pt;}
.h7_c01076{height:85.355901pt;}
.h1b_c01076{height:90.697307pt;}
.hf_c01076{height:90.707457pt;}
.h0_c01076{height:1107.840000pt;}
.h1_c01076{height:1108.000000pt;}
.w1_c01076{width:787.333333pt;}
.w0_c01076{width:787.440000pt;}
.x0_c01076{left:0.000000pt;}
.x1_c01076{left:33.120000pt;}
.x2_c01076{left:34.080000pt;}
.xcd_c01076{left:101.204000pt;}
.xc4_c01076{left:102.862667pt;}
.xb5_c01076{left:104.044208pt;}
.xaf_c01076{left:105.096211pt;}
.x8e_c01076{left:106.281800pt;}
.x86_c01076{left:108.202013pt;}
.x6a_c01076{left:109.625069pt;}
.x5c_c01076{left:110.899888pt;}
.x35_c01076{left:111.881995pt;}
.x2c_c01076{left:113.082939pt;}
.x1f_c01076{left:114.229715pt;}
.x13_c01076{left:115.177016pt;}
.x36_c01076{left:131.722041pt;}
.xa6_c01076{left:134.315349pt;}
.x9c_c01076{left:135.291123pt;}
.x87_c01076{left:137.238733pt;}
.x52_c01076{left:140.586832pt;}
.x20_c01076{left:143.727723pt;}
.x5d_c01076{left:149.717571pt;}
.xd7_c01076{left:151.036357pt;}
.x2d_c01076{left:152.803001pt;}
.x14_c01076{left:154.065461pt;}
.x8f_c01076{left:156.199427pt;}
.xdc_c01076{left:157.855491pt;}
.xce_c01076{left:160.582667pt;}
.xc0_c01076{left:161.664000pt;}
.x42_c01076{left:170.155231pt;}
.xbb_c01076{left:172.214667pt;}
.x88_c01076{left:176.601200pt;}
.xcf_c01076{left:179.613333pt;}
.xc5_c01076{left:181.222667pt;}
.x15_c01076{left:182.850780pt;}
.x37_c01076{left:190.711453pt;}
.xb0_c01076{left:191.851264pt;}
.x64_c01076{left:197.034509pt;}
.xb1_c01076{left:201.738667pt;}
.x94_c01076{left:204.936000pt;}
.x73_c01076{left:207.008000pt;}
.x49_c01076{left:208.746667pt;}
.x21_c01076{left:210.517256pt;}
.xb_c01076{left:212.134667pt;}
.x6b_c01076{left:216.885317pt;}
.x53_c01076{left:219.324968pt;}
.xa7_c01076{left:222.906845pt;}
.x7f_c01076{left:225.413307pt;}
.xcb_c01076{left:228.817333pt;}
.x43_c01076{left:229.932767pt;}
.x22_c01076{left:231.392413pt;}
.x9d_c01076{left:233.428952pt;}
.x89_c01076{left:235.332133pt;}
.x5e_c01076{left:237.071032pt;}
.x2e_c01076{left:240.521043pt;}
.x80_c01076{left:244.480747pt;}
.xb6_c01076{left:250.994527pt;}
.x90_c01076{left:253.792667pt;}
.x44_c01076{left:259.502837pt;}
.x23_c01076{left:260.618421pt;}
.xc_c01076{left:262.058667pt;}
.x6c_c01076{left:266.587917pt;}
.x4a_c01076{left:268.265333pt;}
.x3_c01076{left:269.361333pt;}
.xa8_c01076{left:271.374315pt;}
.xbc_c01076{left:273.236000pt;}
.x38_c01076{left:278.673525pt;}
.x16_c01076{left:280.459257pt;}
.x95_c01076{left:284.190667pt;}
.x54_c01076{left:286.834237pt;}
.x45_c01076{left:288.018119pt;}
.x24_c01076{left:290.915127pt;}
.x7_c01076{left:292.088000pt;}
.x74_c01076{left:293.513333pt;}
.x5f_c01076{left:296.372976pt;}
.x4b_c01076{left:297.333333pt;}
.xd_c01076{left:310.057333pt;}
.x81_c01076{left:314.106600pt;}
.x75_c01076{left:315.125333pt;}
.x65_c01076{left:316.514048pt;}
.x39_c01076{left:318.297588pt;}
.x9e_c01076{left:320.971016pt;}
.x96_c01076{left:322.341333pt;}
.x6d_c01076{left:324.362933pt;}
.x91_c01076{left:332.669640pt;}
.xbd_c01076{left:336.384000pt;}
.x2f_c01076{left:338.642456pt;}
.x76_c01076{left:343.389333pt;}
.xd8_c01076{left:345.798480pt;}
.x55_c01076{left:346.850917pt;}
.x3a_c01076{left:347.760945pt;}
.x9f_c01076{left:350.570371pt;}
.x97_c01076{left:352.168000pt;}
.x4c_c01076{left:356.512000pt;}
.xb7_c01076{left:358.094444pt;}
.x4_c01076{left:362.590667pt;}
.xd0_c01076{left:365.650667pt;}
.x25_c01076{left:367.964905pt;}
.xb2_c01076{left:369.573333pt;}
.x8a_c01076{left:372.293213pt;}
.x4d_c01076{left:375.446667pt;}
.x46_c01076{left:376.418936pt;}
.xe_c01076{left:379.917333pt;}
.x5_c01076{left:382.384000pt;}
.xc6_c01076{left:386.389333pt;}
.x17_c01076{left:387.601497pt;}
.xa9_c01076{left:388.809237pt;}
.x8_c01076{left:390.276000pt;}
.x66_c01076{left:393.604736pt;}
.x3b_c01076{left:396.973683pt;}
.xa0_c01076{left:400.927923pt;}
.x77_c01076{left:402.904000pt;}
.xd9_c01076{left:404.881565pt;}
.xc7_c01076{left:405.994667pt;}
.x26_c01076{left:407.279128pt;}
.xdd_c01076{left:414.130104pt;}
.xd1_c01076{left:415.365333pt;}
.x30_c01076{left:416.953187pt;}
.xaa_c01076{left:418.515272pt;}
.x9_c01076{left:420.034667pt;}
.x6_c01076{left:421.713333pt;}
.x3c_c01076{left:426.739737pt;}
.x78_c01076{left:431.916000pt;}
.x60_c01076{left:434.646424pt;}
.x47_c01076{left:436.441836pt;}
.x18_c01076{left:438.253161pt;}
.xa1_c01076{left:439.393739pt;}
.x82_c01076{left:441.360147pt;}
.x56_c01076{left:444.311843pt;}
.x31_c01076{left:446.675241pt;}
.x4e_c01076{left:454.978667pt;}
.xb8_c01076{left:457.753761pt;}
.x48_c01076{left:464.481056pt;}
.x19_c01076{left:466.587783pt;}
.xf_c01076{left:468.252000pt;}
.xa2_c01076{left:469.167760pt;}
.x6e_c01076{left:471.369261pt;}
.xda_c01076{left:472.843768pt;}
.x57_c01076{left:473.766131pt;}
.x3d_c01076{left:474.815049pt;}
.xab_c01076{left:477.550037pt;}
.xa_c01076{left:478.597333pt;}
.x79_c01076{left:480.750667pt;}
.x61_c01076{left:483.682237pt;}
.x98_c01076{left:488.998667pt;}
.x27_c01076{left:496.831849pt;}
.x10_c01076{left:498.249333pt;}
.x7a_c01076{left:500.336000pt;}
.xb3_c01076{left:505.734667pt;}
.xd2_c01076{left:512.709333pt;}
.x3e_c01076{left:515.061840pt;}
.x99_c01076{left:517.733333pt;}
.xb9_c01076{left:526.678408pt;}
.x83_c01076{left:529.303987pt;}
.x58_c01076{left:532.905408pt;}
.x32_c01076{left:534.119949pt;}
.x1a_c01076{left:536.691003pt;}
.xd5_c01076{left:540.287840pt;}
.x4f_c01076{left:542.642667pt;}
.xc1_c01076{left:544.409333pt;}
.x92_c01076{left:548.837147pt;}
.x7b_c01076{left:550.118667pt;}
.x6f_c01076{left:551.784123pt;}
.xbe_c01076{left:554.242667pt;}
.x28_c01076{left:555.159865pt;}
.x8b_c01076{left:558.921133pt;}
.x59_c01076{left:563.117099pt;}
.x1b_c01076{left:565.971019pt;}
.xa3_c01076{left:567.370923pt;}
.x62_c01076{left:572.222469pt;}
.xc8_c01076{left:573.514667pt;}
.xac_c01076{left:576.068859pt;}
.x93_c01076{left:579.098227pt;}
.x67_c01076{left:580.355776pt;}
.x29_c01076{left:584.215207pt;}
.x11_c01076{left:585.613333pt;}
.xb4_c01076{left:595.732000pt;}
.xa4_c01076{left:597.194277pt;}
.x63_c01076{left:601.248723pt;}
.x3f_c01076{left:603.743943pt;}
.x8c_c01076{left:607.629067pt;}
.x7c_c01076{left:608.976000pt;}
.x68_c01076{left:610.406669pt;}
.x1c_c01076{left:614.538591pt;}
.x9a_c01076{left:617.165333pt;}
.xc9_c01076{left:622.638667pt;}
.xad_c01076{left:625.537603pt;}
.xcc_c01076{left:632.052000pt;}
.x40_c01076{left:633.451331pt;}
.x1d_c01076{left:635.124875pt;}
.x7d_c01076{left:639.864000pt;}
.x50_c01076{left:642.296000pt;}
.x33_c01076{left:644.087524pt;}
.x9b_c01076{left:646.229333pt;}
.x70_c01076{left:649.286517pt;}
.xdb_c01076{left:651.545059pt;}
.x2a_c01076{left:654.802165pt;}
.x8d_c01076{left:656.475707pt;}
.xd3_c01076{left:661.776000pt;}
.x1e_c01076{left:665.144921pt;}
.x84_c01076{left:667.647533pt;}
.x51_c01076{left:672.064000pt;}
.x34_c01076{left:673.554881pt;}
.xa5_c01076{left:675.929880pt;}
.x71_c01076{left:679.536077pt;}
.x5a_c01076{left:681.486320pt;}
.xbf_c01076{left:682.596000pt;}
.xca_c01076{left:683.842667pt;}
.x2b_c01076{left:684.810840pt;}
.x12_c01076{left:687.228000pt;}
.x69_c01076{left:689.930795pt;}
.xd4_c01076{left:691.565333pt;}
.xc2_c01076{left:692.994667pt;}
.xae_c01076{left:695.099693pt;}
.xde_c01076{left:700.141899pt;}
.x41_c01076{left:702.672115pt;}
.xd6_c01076{left:704.822373pt;}
.x85_c01076{left:707.928107pt;}
.x5b_c01076{left:710.572573pt;}
.xba_c01076{left:713.165575pt;}
.x7e_c01076{left:718.642667pt;}
.xc3_c01076{left:722.517333pt;}
.x72_c01076{left:738.605203pt;}
}





/* 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_c01077 {
    display:none;
  }
  .loading-indicator_c01077.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01077 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_c01077 { 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_c01077" -> "#page-container .classname_c01077")
 */
.pf_c01077 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01077 { /* 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_c01077.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01077 { /* 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_c01077 { /* 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_c01077 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01077 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01077 {overflow:visible;}
  }
}
.c_c01077 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01077 { /* 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_c01077:after { /* webkit #35443 */
  content: '';
}
.t_c01077:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01077 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 */
}
.__c01077 { /* 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_c01077 { /* info for Javascript */
  display:none;
}
.l_c01077 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01077 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01077 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01077: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_c01077 {
    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_c01077.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01077.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_c01077 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01077{font-family:sans-serif;visibility:hidden;}
.sc__c01077{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01077{-webkit-text-stroke:0px transparent;}
}
.y0_c01077{bottom:0.000000px;}
.h0_c01077{height:1246.320000px;}
.h1_c01077{height:1246.500000px;}
.w1_c01077{width:885.750000px;}
.w0_c01077{width:885.870000px;}
.x0_c01077{left:0.000000px;}
@media print{
.y0_c01077{bottom:0.000000pt;}
.h0_c01077{height:1107.840000pt;}
.h1_c01077{height:1108.000000pt;}
.w1_c01077{width:787.333333pt;}
.w0_c01077{width:787.440000pt;}
.x0_c01077{left:0.000000pt;}
}





/* 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_c01078 {
    display:none;
  }
  .loading-indicator_c01078.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01078 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_c01078 { 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_c01078" -> "#page-container .classname_c01078")
 */
.pf_c01078 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01078 { /* 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_c01078.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01078 { /* 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_c01078 { /* 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_c01078 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01078 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01078 {overflow:visible;}
  }
}
.c_c01078 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01078 { /* 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_c01078:after { /* webkit #35443 */
  content: '';
}
.t_c01078:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01078 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 */
}
.__c01078 { /* 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_c01078 { /* info for Javascript */
  display:none;
}
.l_c01078 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01078 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01078 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01078: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_c01078 {
    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_c01078.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01078.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_c01078 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01078{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01078;src:url('chunks/assets/font_fabf4b590f7fb32aea93ffb2.woff2')format("woff");}.ff1_c01078{font-family:ff1_c01078;line-height:1.000000;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;}
.m99_c01078{transform:matrix(0.025898,0.000933,-0.009003,0.249838,0,0);-ms-transform:matrix(0.025898,0.000933,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.025898,0.000933,-0.009003,0.249838,0,0);}
.m106_c01078{transform:matrix(0.043209,0.001773,-0.010252,0.249790,0,0);-ms-transform:matrix(0.043209,0.001773,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.043209,0.001773,-0.010252,0.249790,0,0);}
.m80_c01078{transform:matrix(0.157503,0.005676,-0.009003,0.249838,0,0);-ms-transform:matrix(0.157503,0.005676,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.157503,0.005676,-0.009003,0.249838,0,0);}
.m142_c01078{transform:matrix(0.165772,0.006638,-0.010002,0.249800,0,0);-ms-transform:matrix(0.165772,0.006638,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.165772,0.006638,-0.010002,0.249800,0,0);}
.m84_c01078{transform:matrix(0.167356,0.006031,-0.009003,0.249838,0,0);-ms-transform:matrix(0.167356,0.006031,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.167356,0.006031,-0.009003,0.249838,0,0);}
.m13f_c01078{transform:matrix(0.169919,0.006804,-0.010002,0.249800,0,0);-ms-transform:matrix(0.169919,0.006804,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.169919,0.006804,-0.010002,0.249800,0,0);}
.m7e_c01078{transform:matrix(0.170030,0.006127,-0.009003,0.249838,0,0);-ms-transform:matrix(0.170030,0.006127,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.170030,0.006127,-0.009003,0.249838,0,0);}
.m147_c01078{transform:matrix(0.171627,0.006872,-0.010002,0.249800,0,0);-ms-transform:matrix(0.171627,0.006872,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.171627,0.006872,-0.010002,0.249800,0,0);}
.m0_c01078{transform:matrix(0.173370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173370,0.000000,0.000000,0.250000,0,0);}
.m7b_c01078{transform:matrix(0.174452,0.006287,-0.009003,0.249838,0,0);-ms-transform:matrix(0.174452,0.006287,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.174452,0.006287,-0.009003,0.249838,0,0);}
.m79_c01078{transform:matrix(0.175151,0.006312,-0.009003,0.249838,0,0);-ms-transform:matrix(0.175151,0.006312,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.175151,0.006312,-0.009003,0.249838,0,0);}
.m7d_c01078{transform:matrix(0.177235,0.006387,-0.009003,0.249838,0,0);-ms-transform:matrix(0.177235,0.006387,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.177235,0.006387,-0.009003,0.249838,0,0);}
.m82_c01078{transform:matrix(0.178094,0.006418,-0.009003,0.249838,0,0);-ms-transform:matrix(0.178094,0.006418,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.178094,0.006418,-0.009003,0.249838,0,0);}
.m47_c01078{transform:matrix(0.179454,0.006467,-0.009003,0.249838,0,0);-ms-transform:matrix(0.179454,0.006467,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.179454,0.006467,-0.009003,0.249838,0,0);}
.m97_c01078{transform:matrix(0.179568,0.006471,-0.009003,0.249838,0,0);-ms-transform:matrix(0.179568,0.006471,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.179568,0.006471,-0.009003,0.249838,0,0);}
.md8_c01078{transform:matrix(0.179622,0.006653,-0.009253,0.249829,0,0);-ms-transform:matrix(0.179622,0.006653,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.179622,0.006653,-0.009253,0.249829,0,0);}
.m105_c01078{transform:matrix(0.179899,0.007383,-0.010252,0.249790,0,0);-ms-transform:matrix(0.179899,0.007383,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.179899,0.007383,-0.010252,0.249790,0,0);}
.m50_c01078{transform:matrix(0.180558,0.006507,-0.009003,0.249838,0,0);-ms-transform:matrix(0.180558,0.006507,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.180558,0.006507,-0.009003,0.249838,0,0);}
.m13e_c01078{transform:matrix(0.181919,0.007284,-0.010002,0.249800,0,0);-ms-transform:matrix(0.181919,0.007284,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.181919,0.007284,-0.010002,0.249800,0,0);}
.m83_c01078{transform:matrix(0.182901,0.006591,-0.009003,0.249838,0,0);-ms-transform:matrix(0.182901,0.006591,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.182901,0.006591,-0.009003,0.249838,0,0);}
.m149_c01078{transform:matrix(0.183768,0.007358,-0.010002,0.249800,0,0);-ms-transform:matrix(0.183768,0.007358,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.183768,0.007358,-0.010002,0.249800,0,0);}
.mde_c01078{transform:matrix(0.184134,0.006820,-0.009253,0.249829,0,0);-ms-transform:matrix(0.184134,0.006820,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.184134,0.006820,-0.009253,0.249829,0,0);}
.m85_c01078{transform:matrix(0.185065,0.006669,-0.009003,0.249838,0,0);-ms-transform:matrix(0.185065,0.006669,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.185065,0.006669,-0.009003,0.249838,0,0);}
.mdb_c01078{transform:matrix(0.186827,0.006920,-0.009253,0.249829,0,0);-ms-transform:matrix(0.186827,0.006920,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.186827,0.006920,-0.009253,0.249829,0,0);}
.m145_c01078{transform:matrix(0.187100,0.007491,-0.010002,0.249800,0,0);-ms-transform:matrix(0.187100,0.007491,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.187100,0.007491,-0.010002,0.249800,0,0);}
.m7c_c01078{transform:matrix(0.187783,0.006767,-0.009003,0.249838,0,0);-ms-transform:matrix(0.187783,0.006767,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.187783,0.006767,-0.009003,0.249838,0,0);}
.m7a_c01078{transform:matrix(0.188263,0.006784,-0.009003,0.249838,0,0);-ms-transform:matrix(0.188263,0.006784,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.188263,0.006784,-0.009003,0.249838,0,0);}
.m54_c01078{transform:matrix(0.190187,0.006854,-0.009003,0.249838,0,0);-ms-transform:matrix(0.190187,0.006854,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.190187,0.006854,-0.009003,0.249838,0,0);}
.m140_c01078{transform:matrix(0.190188,0.007615,-0.010002,0.249800,0,0);-ms-transform:matrix(0.190188,0.007615,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.190188,0.007615,-0.010002,0.249800,0,0);}
.m7f_c01078{transform:matrix(0.190481,0.006864,-0.009003,0.249838,0,0);-ms-transform:matrix(0.190481,0.006864,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.190481,0.006864,-0.009003,0.249838,0,0);}
.m44_c01078{transform:matrix(0.191251,0.006892,-0.009003,0.249838,0,0);-ms-transform:matrix(0.191251,0.006892,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.191251,0.006892,-0.009003,0.249838,0,0);}
.m4e_c01078{transform:matrix(0.191531,0.006902,-0.009003,0.249838,0,0);-ms-transform:matrix(0.191531,0.006902,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.191531,0.006902,-0.009003,0.249838,0,0);}
.m90_c01078{transform:matrix(0.191601,0.006905,-0.009003,0.249838,0,0);-ms-transform:matrix(0.191601,0.006905,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.191601,0.006905,-0.009003,0.249838,0,0);}
.m4c_c01078{transform:matrix(0.194069,0.006993,-0.009003,0.249838,0,0);-ms-transform:matrix(0.194069,0.006993,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.194069,0.006993,-0.009003,0.249838,0,0);}
.m41_c01078{transform:matrix(0.194814,0.007020,-0.009003,0.249838,0,0);-ms-transform:matrix(0.194814,0.007020,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.194814,0.007020,-0.009003,0.249838,0,0);}
.me2_c01078{transform:matrix(0.194916,0.007219,-0.009253,0.249829,0,0);-ms-transform:matrix(0.194916,0.007219,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.194916,0.007219,-0.009253,0.249829,0,0);}
.m51_c01078{transform:matrix(0.195148,0.007032,-0.009003,0.249838,0,0);-ms-transform:matrix(0.195148,0.007032,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.195148,0.007032,-0.009003,0.249838,0,0);}
.m81_c01078{transform:matrix(0.195873,0.007058,-0.009003,0.249838,0,0);-ms-transform:matrix(0.195873,0.007058,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.195873,0.007058,-0.009003,0.249838,0,0);}
.m11e_c01078{transform:matrix(0.195908,0.009217,-0.011749,0.249724,0,0);-ms-transform:matrix(0.195908,0.009217,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.195908,0.009217,-0.011749,0.249724,0,0);}
.m93_c01078{transform:matrix(0.196178,0.007069,-0.009003,0.249838,0,0);-ms-transform:matrix(0.196178,0.007069,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.196178,0.007069,-0.009003,0.249838,0,0);}
.mba_c01078{transform:matrix(0.196401,0.006684,-0.008504,0.249855,0,0);-ms-transform:matrix(0.196401,0.006684,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.196401,0.006684,-0.008504,0.249855,0,0);}
.m11a_c01078{transform:matrix(0.196578,0.009248,-0.011749,0.249724,0,0);-ms-transform:matrix(0.196578,0.009248,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.196578,0.009248,-0.011749,0.249724,0,0);}
.mbc_c01078{transform:matrix(0.196621,0.006692,-0.008504,0.249855,0,0);-ms-transform:matrix(0.196621,0.006692,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.196621,0.006692,-0.008504,0.249855,0,0);}
.m30_c01078{transform:matrix(0.197149,0.006315,-0.008004,0.249872,0,0);-ms-transform:matrix(0.197149,0.006315,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.197149,0.006315,-0.008004,0.249872,0,0);}
.m4d_c01078{transform:matrix(0.197217,0.007107,-0.009003,0.249838,0,0);-ms-transform:matrix(0.197217,0.007107,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.197217,0.007107,-0.009003,0.249838,0,0);}
.m10b_c01078{transform:matrix(0.198108,0.008131,-0.010252,0.249790,0,0);-ms-transform:matrix(0.198108,0.008131,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.198108,0.008131,-0.010252,0.249790,0,0);}
.mbe_c01078{transform:matrix(0.198430,0.006753,-0.008504,0.249855,0,0);-ms-transform:matrix(0.198430,0.006753,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.198430,0.006753,-0.008504,0.249855,0,0);}
.m32_c01078{transform:matrix(0.201142,0.006443,-0.008004,0.249872,0,0);-ms-transform:matrix(0.201142,0.006443,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.201142,0.006443,-0.008004,0.249872,0,0);}
.m98_c01078{transform:matrix(0.201664,0.007267,-0.009003,0.249838,0,0);-ms-transform:matrix(0.201664,0.007267,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.201664,0.007267,-0.009003,0.249838,0,0);}
.me0_c01078{transform:matrix(0.201932,0.007479,-0.009253,0.249829,0,0);-ms-transform:matrix(0.201932,0.007479,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.201932,0.007479,-0.009253,0.249829,0,0);}
.mb6_c01078{transform:matrix(0.201958,0.006873,-0.008504,0.249855,0,0);-ms-transform:matrix(0.201958,0.006873,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.201958,0.006873,-0.008504,0.249855,0,0);}
.m143_c01078{transform:matrix(0.202128,0.008093,-0.010002,0.249800,0,0);-ms-transform:matrix(0.202128,0.008093,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.202128,0.008093,-0.010002,0.249800,0,0);}
.m141_c01078{transform:matrix(0.202283,0.008099,-0.010002,0.249800,0,0);-ms-transform:matrix(0.202283,0.008099,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.202283,0.008099,-0.010002,0.249800,0,0);}
.m144_c01078{transform:matrix(0.202942,0.008126,-0.010002,0.249800,0,0);-ms-transform:matrix(0.202942,0.008126,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.202942,0.008126,-0.010002,0.249800,0,0);}
.m1e_c01078{transform:matrix(0.204225,0.006542,-0.008004,0.249872,0,0);-ms-transform:matrix(0.204225,0.006542,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.204225,0.006542,-0.008004,0.249872,0,0);}
.m117_c01078{transform:matrix(0.204644,0.009628,-0.011749,0.249724,0,0);-ms-transform:matrix(0.204644,0.009628,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.204644,0.009628,-0.011749,0.249724,0,0);}
.m33_c01078{transform:matrix(0.205395,0.006579,-0.008004,0.249872,0,0);-ms-transform:matrix(0.205395,0.006579,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.205395,0.006579,-0.008004,0.249872,0,0);}
.m49_c01078{transform:matrix(0.205492,0.007405,-0.009003,0.249838,0,0);-ms-transform:matrix(0.205492,0.007405,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.205492,0.007405,-0.009003,0.249838,0,0);}
.m148_c01078{transform:matrix(0.205955,0.008246,-0.010002,0.249800,0,0);-ms-transform:matrix(0.205955,0.008246,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.205955,0.008246,-0.010002,0.249800,0,0);}
.m13b_c01078{transform:matrix(0.206664,0.008275,-0.010002,0.249800,0,0);-ms-transform:matrix(0.206664,0.008275,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.206664,0.008275,-0.010002,0.249800,0,0);}
.m68_c01078{transform:matrix(0.206761,0.007451,-0.009003,0.249838,0,0);-ms-transform:matrix(0.206761,0.007451,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.206761,0.007451,-0.009003,0.249838,0,0);}
.m146_c01078{transform:matrix(0.207234,0.008298,-0.010002,0.249800,0,0);-ms-transform:matrix(0.207234,0.008298,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.207234,0.008298,-0.010002,0.249800,0,0);}
.m2e_c01078{transform:matrix(0.207289,0.006640,-0.008004,0.249872,0,0);-ms-transform:matrix(0.207289,0.006640,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.207289,0.006640,-0.008004,0.249872,0,0);}
.m4a_c01078{transform:matrix(0.208959,0.007530,-0.009003,0.249838,0,0);-ms-transform:matrix(0.208959,0.007530,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.208959,0.007530,-0.009003,0.249838,0,0);}
.m6a_c01078{transform:matrix(0.209494,0.007549,-0.009003,0.249838,0,0);-ms-transform:matrix(0.209494,0.007549,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.209494,0.007549,-0.009003,0.249838,0,0);}
.m42_c01078{transform:matrix(0.209744,0.007558,-0.009003,0.249838,0,0);-ms-transform:matrix(0.209744,0.007558,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.209744,0.007558,-0.009003,0.249838,0,0);}
.mfe_c01078{transform:matrix(0.210008,0.008619,-0.010252,0.249790,0,0);-ms-transform:matrix(0.210008,0.008619,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.210008,0.008619,-0.010252,0.249790,0,0);}
.m103_c01078{transform:matrix(0.210218,0.008628,-0.010252,0.249790,0,0);-ms-transform:matrix(0.210218,0.008628,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.210218,0.008628,-0.010252,0.249790,0,0);}
.m5e_c01078{transform:matrix(0.210473,0.007585,-0.009003,0.249838,0,0);-ms-transform:matrix(0.210473,0.007585,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.210473,0.007585,-0.009003,0.249838,0,0);}
.m138_c01078{transform:matrix(0.211760,0.008479,-0.010002,0.249800,0,0);-ms-transform:matrix(0.211760,0.008479,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.211760,0.008479,-0.010002,0.249800,0,0);}
.m112_c01078{transform:matrix(0.212331,0.008714,-0.010252,0.249790,0,0);-ms-transform:matrix(0.212331,0.008714,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.212331,0.008714,-0.010252,0.249790,0,0);}
.mda_c01078{transform:matrix(0.212574,0.007873,-0.009253,0.249829,0,0);-ms-transform:matrix(0.212574,0.007873,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.212574,0.007873,-0.009253,0.249829,0,0);}
.m48_c01078{transform:matrix(0.212697,0.007665,-0.009003,0.249838,0,0);-ms-transform:matrix(0.212697,0.007665,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.212697,0.007665,-0.009003,0.249838,0,0);}
.mdf_c01078{transform:matrix(0.213554,0.007909,-0.009253,0.249829,0,0);-ms-transform:matrix(0.213554,0.007909,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.213554,0.007909,-0.009253,0.249829,0,0);}
.m5c_c01078{transform:matrix(0.213681,0.007700,-0.009003,0.249838,0,0);-ms-transform:matrix(0.213681,0.007700,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.213681,0.007700,-0.009003,0.249838,0,0);}
.m3_c01078{transform:matrix(0.213909,0.006417,-0.007497,0.249888,0,0);-ms-transform:matrix(0.213909,0.006417,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.213909,0.006417,-0.007497,0.249888,0,0);}
.m92_c01078{transform:matrix(0.214086,0.007715,-0.009003,0.249838,0,0);-ms-transform:matrix(0.214086,0.007715,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.214086,0.007715,-0.009003,0.249838,0,0);}
.mb5_c01078{transform:matrix(0.214296,0.007293,-0.008504,0.249855,0,0);-ms-transform:matrix(0.214296,0.007293,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.214296,0.007293,-0.008504,0.249855,0,0);}
.m134_c01078{transform:matrix(0.214888,0.008604,-0.010002,0.249800,0,0);-ms-transform:matrix(0.214888,0.008604,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.214888,0.008604,-0.010002,0.249800,0,0);}
.m45_c01078{transform:matrix(0.214935,0.007745,-0.009003,0.249838,0,0);-ms-transform:matrix(0.214935,0.007745,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.214935,0.007745,-0.009003,0.249838,0,0);}
.mfc_c01078{transform:matrix(0.215713,0.008853,-0.010252,0.249790,0,0);-ms-transform:matrix(0.215713,0.008853,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.215713,0.008853,-0.010252,0.249790,0,0);}
.m53_c01078{transform:matrix(0.215920,0.007781,-0.009003,0.249838,0,0);-ms-transform:matrix(0.215920,0.007781,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.215920,0.007781,-0.009003,0.249838,0,0);}
.mf3_c01078{transform:matrix(0.215990,0.007783,-0.009003,0.249838,0,0);-ms-transform:matrix(0.215990,0.007783,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.215990,0.007783,-0.009003,0.249838,0,0);}
.m113_c01078{transform:matrix(0.216598,0.008889,-0.010252,0.249790,0,0);-ms-transform:matrix(0.216598,0.008889,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.216598,0.008889,-0.010252,0.249790,0,0);}
.m5a_c01078{transform:matrix(0.216649,0.007807,-0.009003,0.249838,0,0);-ms-transform:matrix(0.216649,0.007807,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.216649,0.007807,-0.009003,0.249838,0,0);}
.m9_c01078{transform:matrix(0.216693,0.006501,-0.007497,0.249888,0,0);-ms-transform:matrix(0.216693,0.006501,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.216693,0.006501,-0.007497,0.249888,0,0);}
.mb8_c01078{transform:matrix(0.216759,0.007377,-0.008504,0.249855,0,0);-ms-transform:matrix(0.216759,0.007377,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.216759,0.007377,-0.008504,0.249855,0,0);}
.m4f_c01078{transform:matrix(0.216904,0.007816,-0.009003,0.249838,0,0);-ms-transform:matrix(0.216904,0.007816,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.216904,0.007816,-0.009003,0.249838,0,0);}
.m108_c01078{transform:matrix(0.217762,0.008937,-0.010252,0.249790,0,0);-ms-transform:matrix(0.217762,0.008937,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.217762,0.008937,-0.010252,0.249790,0,0);}
.m116_c01078{transform:matrix(0.217877,0.008942,-0.010252,0.249790,0,0);-ms-transform:matrix(0.217877,0.008942,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.217877,0.008942,-0.010252,0.249790,0,0);}
.m14c_c01078{transform:matrix(0.218231,0.005674,-0.006498,0.249916,0,0);-ms-transform:matrix(0.218231,0.005674,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.218231,0.005674,-0.006498,0.249916,0,0);}
.me1_c01078{transform:matrix(0.218495,0.008092,-0.009253,0.249829,0,0);-ms-transform:matrix(0.218495,0.008092,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.218495,0.008092,-0.009253,0.249829,0,0);}
.m10d_c01078{transform:matrix(0.218611,0.008972,-0.010252,0.249790,0,0);-ms-transform:matrix(0.218611,0.008972,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.218611,0.008972,-0.010252,0.249790,0,0);}
.m102_c01078{transform:matrix(0.218766,0.008978,-0.010252,0.249790,0,0);-ms-transform:matrix(0.218766,0.008978,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.218766,0.008978,-0.010252,0.249790,0,0);}
.m5b_c01078{transform:matrix(0.219088,0.007895,-0.009003,0.249838,0,0);-ms-transform:matrix(0.219088,0.007895,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.219088,0.007895,-0.009003,0.249838,0,0);}
.md9_c01078{transform:matrix(0.219370,0.008125,-0.009253,0.249829,0,0);-ms-transform:matrix(0.219370,0.008125,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.219370,0.008125,-0.009253,0.249829,0,0);}
.m100_c01078{transform:matrix(0.219405,0.009005,-0.010252,0.249790,0,0);-ms-transform:matrix(0.219405,0.009005,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.219405,0.009005,-0.010252,0.249790,0,0);}
.m11b_c01078{transform:matrix(0.219412,0.010323,-0.011749,0.249724,0,0);-ms-transform:matrix(0.219412,0.010323,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.219412,0.010323,-0.011749,0.249724,0,0);}
.m2f_c01078{transform:matrix(0.219422,0.007029,-0.008004,0.249872,0,0);-ms-transform:matrix(0.219422,0.007029,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.219422,0.007029,-0.008004,0.249872,0,0);}
.m10a_c01078{transform:matrix(0.220005,0.009029,-0.010252,0.249790,0,0);-ms-transform:matrix(0.220005,0.009029,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.220005,0.009029,-0.010252,0.249790,0,0);}
.m11c_c01078{transform:matrix(0.220137,0.010357,-0.011749,0.249724,0,0);-ms-transform:matrix(0.220137,0.010357,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.220137,0.010357,-0.011749,0.249724,0,0);}
.m109_c01078{transform:matrix(0.220384,0.009045,-0.010252,0.249790,0,0);-ms-transform:matrix(0.220384,0.009045,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.220384,0.009045,-0.010252,0.249790,0,0);}
.m52_c01078{transform:matrix(0.221077,0.007967,-0.009003,0.249838,0,0);-ms-transform:matrix(0.221077,0.007967,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.221077,0.007967,-0.009003,0.249838,0,0);}
.mbf_c01078{transform:matrix(0.221337,0.007533,-0.008504,0.249855,0,0);-ms-transform:matrix(0.221337,0.007533,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.221337,0.007533,-0.008504,0.249855,0,0);}
.mbb_c01078{transform:matrix(0.221472,0.007538,-0.008504,0.249855,0,0);-ms-transform:matrix(0.221472,0.007538,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.221472,0.007538,-0.008504,0.249855,0,0);}
.m2d_c01078{transform:matrix(0.221696,0.007101,-0.008004,0.249872,0,0);-ms-transform:matrix(0.221696,0.007101,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.221696,0.007101,-0.008004,0.249872,0,0);}
.me_c01078{transform:matrix(0.221985,0.006660,-0.007497,0.249888,0,0);-ms-transform:matrix(0.221985,0.006660,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.221985,0.006660,-0.007497,0.249888,0,0);}
.m1a_c01078{transform:matrix(0.222525,0.006676,-0.007497,0.249888,0,0);-ms-transform:matrix(0.222525,0.006676,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.222525,0.006676,-0.007497,0.249888,0,0);}
.mdd_c01078{transform:matrix(0.223067,0.008262,-0.009253,0.249829,0,0);-ms-transform:matrix(0.223067,0.008262,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.223067,0.008262,-0.009253,0.249829,0,0);}
.m70_c01078{transform:matrix(0.223125,0.008041,-0.009003,0.249838,0,0);-ms-transform:matrix(0.223125,0.008041,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.223125,0.008041,-0.009003,0.249838,0,0);}
.m2b_c01078{transform:matrix(0.223216,0.007150,-0.008004,0.249872,0,0);-ms-transform:matrix(0.223216,0.007150,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.223216,0.007150,-0.008004,0.249872,0,0);}
.mfd_c01078{transform:matrix(0.223297,0.009164,-0.010252,0.249790,0,0);-ms-transform:matrix(0.223297,0.009164,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.223297,0.009164,-0.010252,0.249790,0,0);}
.mae_c01078{transform:matrix(0.223337,0.010954,-0.012248,0.249700,0,0);-ms-transform:matrix(0.223337,0.010954,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.223337,0.010954,-0.012248,0.249700,0,0);}
.maa_c01078{transform:matrix(0.224410,0.011007,-0.012248,0.249700,0,0);-ms-transform:matrix(0.224410,0.011007,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.224410,0.011007,-0.012248,0.249700,0,0);}
.m12_c01078{transform:matrix(0.224579,0.006737,-0.007497,0.249888,0,0);-ms-transform:matrix(0.224579,0.006737,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.224579,0.006737,-0.007497,0.249888,0,0);}
.m9f_c01078{transform:matrix(0.225074,0.011040,-0.012248,0.249700,0,0);-ms-transform:matrix(0.225074,0.011040,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.225074,0.011040,-0.012248,0.249700,0,0);}
.mce_c01078{transform:matrix(0.225191,0.008340,-0.009253,0.249829,0,0);-ms-transform:matrix(0.225191,0.008340,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.225191,0.008340,-0.009253,0.249829,0,0);}
.m4_c01078{transform:matrix(0.225364,0.006761,-0.007497,0.249888,0,0);-ms-transform:matrix(0.225364,0.006761,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.225364,0.006761,-0.007497,0.249888,0,0);}
.m9e_c01078{transform:matrix(0.225639,0.011067,-0.012248,0.249700,0,0);-ms-transform:matrix(0.225639,0.011067,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.225639,0.011067,-0.012248,0.249700,0,0);}
.mfa_c01078{transform:matrix(0.226598,0.008166,-0.009003,0.249838,0,0);-ms-transform:matrix(0.226598,0.008166,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.226598,0.008166,-0.009003,0.249838,0,0);}
.m3c_c01078{transform:matrix(0.226629,0.007259,-0.008004,0.249872,0,0);-ms-transform:matrix(0.226629,0.007259,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.226629,0.007259,-0.008004,0.249872,0,0);}
.m4b_c01078{transform:matrix(0.226668,0.008168,-0.009003,0.249838,0,0);-ms-transform:matrix(0.226668,0.008168,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.226668,0.008168,-0.009003,0.249838,0,0);}
.me3_c01078{transform:matrix(0.226801,0.008627,-0.009503,0.249819,0,0);-ms-transform:matrix(0.226801,0.008627,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.226801,0.008627,-0.009503,0.249819,0,0);}
.m110_c01078{transform:matrix(0.226859,0.009311,-0.010252,0.249790,0,0);-ms-transform:matrix(0.226859,0.009311,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.226859,0.009311,-0.010252,0.249790,0,0);}
.m39_c01078{transform:matrix(0.226889,0.007268,-0.008004,0.249872,0,0);-ms-transform:matrix(0.226889,0.007268,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.226889,0.007268,-0.008004,0.249872,0,0);}
.m58_c01078{transform:matrix(0.226903,0.008177,-0.009003,0.249838,0,0);-ms-transform:matrix(0.226903,0.008177,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.226903,0.008177,-0.009003,0.249838,0,0);}
.m17_c01078{transform:matrix(0.226903,0.006807,-0.007497,0.249888,0,0);-ms-transform:matrix(0.226903,0.006807,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.226903,0.006807,-0.007497,0.249888,0,0);}
.m133_c01078{transform:matrix(0.227078,0.009092,-0.010002,0.249800,0,0);-ms-transform:matrix(0.227078,0.009092,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.227078,0.009092,-0.010002,0.249800,0,0);}
.m8d_c01078{transform:matrix(0.227282,0.008190,-0.009003,0.249838,0,0);-ms-transform:matrix(0.227282,0.008190,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.227282,0.008190,-0.009003,0.249838,0,0);}
.m151_c01078{transform:matrix(0.227478,0.005914,-0.006498,0.249916,0,0);-ms-transform:matrix(0.227478,0.005914,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.227478,0.005914,-0.006498,0.249916,0,0);}
.m115_c01078{transform:matrix(0.227493,0.009337,-0.010252,0.249790,0,0);-ms-transform:matrix(0.227493,0.009337,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.227493,0.009337,-0.010252,0.249790,0,0);}
.m14f_c01078{transform:matrix(0.227608,0.005918,-0.006498,0.249916,0,0);-ms-transform:matrix(0.227608,0.005918,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.227608,0.005918,-0.006498,0.249916,0,0);}
.mb9_c01078{transform:matrix(0.227883,0.007756,-0.008504,0.249855,0,0);-ms-transform:matrix(0.227883,0.007756,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.227883,0.007756,-0.008504,0.249855,0,0);}
.m26_c01078{transform:matrix(0.227988,0.007303,-0.008004,0.249872,0,0);-ms-transform:matrix(0.227988,0.007303,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.227988,0.007303,-0.008004,0.249872,0,0);}
.m35_c01078{transform:matrix(0.228163,0.007309,-0.008004,0.249872,0,0);-ms-transform:matrix(0.228163,0.007309,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.228163,0.007309,-0.008004,0.249872,0,0);}
.m132_c01078{transform:matrix(0.228382,0.009144,-0.010002,0.249800,0,0);-ms-transform:matrix(0.228382,0.009144,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.228382,0.009144,-0.010002,0.249800,0,0);}
.ma_c01078{transform:matrix(0.228407,0.006852,-0.007497,0.249888,0,0);-ms-transform:matrix(0.228407,0.006852,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.228407,0.006852,-0.007497,0.249888,0,0);}
.m131_c01078{transform:matrix(0.228512,0.009150,-0.010002,0.249800,0,0);-ms-transform:matrix(0.228512,0.009150,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.228512,0.009150,-0.010002,0.249800,0,0);}
.m40_c01078{transform:matrix(0.228777,0.008244,-0.009003,0.249838,0,0);-ms-transform:matrix(0.228777,0.008244,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.228777,0.008244,-0.009003,0.249838,0,0);}
.mb2_c01078{transform:matrix(0.229314,0.011248,-0.012248,0.249700,0,0);-ms-transform:matrix(0.229314,0.011248,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.229314,0.011248,-0.012248,0.249700,0,0);}
.mb7_c01078{transform:matrix(0.229977,0.007827,-0.008504,0.249855,0,0);-ms-transform:matrix(0.229977,0.007827,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.229977,0.007827,-0.008504,0.249855,0,0);}
.m6c_c01078{transform:matrix(0.230066,0.008291,-0.009003,0.249838,0,0);-ms-transform:matrix(0.230066,0.008291,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.230066,0.008291,-0.009003,0.249838,0,0);}
.m95_c01078{transform:matrix(0.230201,0.008296,-0.009003,0.249838,0,0);-ms-transform:matrix(0.230201,0.008296,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.230201,0.008296,-0.009003,0.249838,0,0);}
.m15_c01078{transform:matrix(0.230236,0.006907,-0.007497,0.249888,0,0);-ms-transform:matrix(0.230236,0.006907,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.230236,0.006907,-0.007497,0.249888,0,0);}
.m11d_c01078{transform:matrix(0.230500,0.010844,-0.011749,0.249724,0,0);-ms-transform:matrix(0.230500,0.010844,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.230500,0.010844,-0.011749,0.249724,0,0);}
.m126_c01078{transform:matrix(0.230701,0.009468,-0.010252,0.249790,0,0);-ms-transform:matrix(0.230701,0.009468,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.230701,0.009468,-0.010252,0.249790,0,0);}
.m61_c01078{transform:matrix(0.230910,0.008321,-0.009003,0.249838,0,0);-ms-transform:matrix(0.230910,0.008321,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.230910,0.008321,-0.009003,0.249838,0,0);}
.m37_c01078{transform:matrix(0.231007,0.007400,-0.008004,0.249872,0,0);-ms-transform:matrix(0.231007,0.007400,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.231007,0.007400,-0.008004,0.249872,0,0);}
.m130_c01078{transform:matrix(0.231015,0.009250,-0.010002,0.249800,0,0);-ms-transform:matrix(0.231015,0.009250,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.231015,0.009250,-0.010002,0.249800,0,0);}
.m60_c01078{transform:matrix(0.231255,0.008334,-0.009003,0.249838,0,0);-ms-transform:matrix(0.231255,0.008334,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.231255,0.008334,-0.009003,0.249838,0,0);}
.m128_c01078{transform:matrix(0.231445,0.009499,-0.010252,0.249790,0,0);-ms-transform:matrix(0.231445,0.009499,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.231445,0.009499,-0.010252,0.249790,0,0);}
.m118_c01078{transform:matrix(0.231938,0.010912,-0.011749,0.249724,0,0);-ms-transform:matrix(0.231938,0.010912,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.231938,0.010912,-0.011749,0.249724,0,0);}
.mb0_c01078{transform:matrix(0.232006,0.011380,-0.012248,0.249700,0,0);-ms-transform:matrix(0.232006,0.011380,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.232006,0.011380,-0.012248,0.249700,0,0);}
.m56_c01078{transform:matrix(0.232369,0.008374,-0.009003,0.249838,0,0);-ms-transform:matrix(0.232369,0.008374,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.232369,0.008374,-0.009003,0.249838,0,0);}
.m13a_c01078{transform:matrix(0.232434,0.009307,-0.010002,0.249800,0,0);-ms-transform:matrix(0.232434,0.009307,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.232434,0.009307,-0.010002,0.249800,0,0);}
.m10f_c01078{transform:matrix(0.232964,0.009561,-0.010252,0.249790,0,0);-ms-transform:matrix(0.232964,0.009561,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.232964,0.009561,-0.010252,0.249790,0,0);}
.mb_c01078{transform:matrix(0.233365,0.007001,-0.007497,0.249888,0,0);-ms-transform:matrix(0.233365,0.007001,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.233365,0.007001,-0.007497,0.249888,0,0);}
.mbd_c01078{transform:matrix(0.233420,0.007944,-0.008504,0.249855,0,0);-ms-transform:matrix(0.233420,0.007944,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.233420,0.007944,-0.008504,0.249855,0,0);}
.m120_c01078{transform:matrix(0.233483,0.009582,-0.010252,0.249790,0,0);-ms-transform:matrix(0.233483,0.009582,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.233483,0.009582,-0.010252,0.249790,0,0);}
.mff_c01078{transform:matrix(0.233883,0.009599,-0.010252,0.249790,0,0);-ms-transform:matrix(0.233883,0.009599,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.233883,0.009599,-0.010252,0.249790,0,0);}
.m3f_c01078{transform:matrix(0.234538,0.008452,-0.009003,0.249838,0,0);-ms-transform:matrix(0.234538,0.008452,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.234538,0.008452,-0.009003,0.249838,0,0);}
.m91_c01078{transform:matrix(0.234773,0.008460,-0.009003,0.249838,0,0);-ms-transform:matrix(0.234773,0.008460,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.234773,0.008460,-0.009003,0.249838,0,0);}
.m36_c01078{transform:matrix(0.235039,0.007529,-0.008004,0.249872,0,0);-ms-transform:matrix(0.235039,0.007529,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.235039,0.007529,-0.008004,0.249872,0,0);}
.m11f_c01078{transform:matrix(0.235280,0.011069,-0.011749,0.249724,0,0);-ms-transform:matrix(0.235280,0.011069,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.235280,0.011069,-0.011749,0.249724,0,0);}
.mc_c01078{transform:matrix(0.235464,0.007064,-0.007497,0.249888,0,0);-ms-transform:matrix(0.235464,0.007064,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.235464,0.007064,-0.007497,0.249888,0,0);}
.m10_c01078{transform:matrix(0.235639,0.007069,-0.007497,0.249888,0,0);-ms-transform:matrix(0.235639,0.007069,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.235639,0.007069,-0.007497,0.249888,0,0);}
.ma4_c01078{transform:matrix(0.235647,0.011558,-0.012248,0.249700,0,0);-ms-transform:matrix(0.235647,0.011558,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.235647,0.011558,-0.012248,0.249700,0,0);}
.mdc_c01078{transform:matrix(0.235863,0.008736,-0.009253,0.249829,0,0);-ms-transform:matrix(0.235863,0.008736,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.235863,0.008736,-0.009253,0.249829,0,0);}
.m62_c01078{transform:matrix(0.235957,0.008503,-0.009003,0.249838,0,0);-ms-transform:matrix(0.235957,0.008503,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.235957,0.008503,-0.009003,0.249838,0,0);}
.m94_c01078{transform:matrix(0.236012,0.008505,-0.009003,0.249838,0,0);-ms-transform:matrix(0.236012,0.008505,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.236012,0.008505,-0.009003,0.249838,0,0);}
.mc0_c01078{transform:matrix(0.236278,0.008042,-0.008504,0.249855,0,0);-ms-transform:matrix(0.236278,0.008042,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.236278,0.008042,-0.008504,0.249855,0,0);}
.ma0_c01078{transform:matrix(0.236900,0.011620,-0.012248,0.249700,0,0);-ms-transform:matrix(0.236900,0.011620,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.236900,0.011620,-0.012248,0.249700,0,0);}
.m31_c01078{transform:matrix(0.237488,0.007607,-0.008004,0.249872,0,0);-ms-transform:matrix(0.237488,0.007607,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.237488,0.007607,-0.008004,0.249872,0,0);}
.m46_c01078{transform:matrix(0.238220,0.008585,-0.009003,0.249838,0,0);-ms-transform:matrix(0.238220,0.008585,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.238220,0.008585,-0.009003,0.249838,0,0);}
.m34_c01078{transform:matrix(0.238263,0.007632,-0.008004,0.249872,0,0);-ms-transform:matrix(0.238263,0.007632,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.238263,0.007632,-0.008004,0.249872,0,0);}
.m5f_c01078{transform:matrix(0.238565,0.008597,-0.009003,0.249838,0,0);-ms-transform:matrix(0.238565,0.008597,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.238565,0.008597,-0.009003,0.249838,0,0);}
.m14e_c01078{transform:matrix(0.238574,0.006203,-0.006498,0.249916,0,0);-ms-transform:matrix(0.238574,0.006203,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.238574,0.006203,-0.006498,0.249916,0,0);}
.me7_c01078{transform:matrix(0.238837,0.009085,-0.009503,0.249819,0,0);-ms-transform:matrix(0.238837,0.009085,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.238837,0.009085,-0.009503,0.249819,0,0);}
.mc3_c01078{transform:matrix(0.238987,0.008134,-0.008504,0.249855,0,0);-ms-transform:matrix(0.238987,0.008134,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.238987,0.008134,-0.008504,0.249855,0,0);}
.m43_c01078{transform:matrix(0.239445,0.008629,-0.009003,0.249838,0,0);-ms-transform:matrix(0.239445,0.008629,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.239445,0.008629,-0.009003,0.249838,0,0);}
.mc1_c01078{transform:matrix(0.239461,0.008150,-0.008504,0.249855,0,0);-ms-transform:matrix(0.239461,0.008150,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.239461,0.008150,-0.008504,0.249855,0,0);}
.m155_c01078{transform:matrix(0.239749,0.006233,-0.006498,0.249916,0,0);-ms-transform:matrix(0.239749,0.006233,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.239749,0.006233,-0.006498,0.249916,0,0);}
.m1f_c01078{transform:matrix(0.239787,0.007681,-0.008004,0.249872,0,0);-ms-transform:matrix(0.239787,0.007681,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.239787,0.007681,-0.008004,0.249872,0,0);}
.m96_c01078{transform:matrix(0.239864,0.008644,-0.009003,0.249838,0,0);-ms-transform:matrix(0.239864,0.008644,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.239864,0.008644,-0.009003,0.249838,0,0);}
.m119_c01078{transform:matrix(0.239970,0.011290,-0.011749,0.249724,0,0);-ms-transform:matrix(0.239970,0.011290,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.239970,0.011290,-0.011749,0.249724,0,0);}
.m38_c01078{transform:matrix(0.240172,0.007693,-0.008004,0.249872,0,0);-ms-transform:matrix(0.240172,0.007693,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.240172,0.007693,-0.008004,0.249872,0,0);}
.mac_c01078{transform:matrix(0.240346,0.011789,-0.012248,0.249700,0,0);-ms-transform:matrix(0.240346,0.011789,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.240346,0.011789,-0.012248,0.249700,0,0);}
.ma7_c01078{transform:matrix(0.240441,0.011793,-0.012248,0.249700,0,0);-ms-transform:matrix(0.240441,0.011793,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.240441,0.011793,-0.012248,0.249700,0,0);}
.m3a_c01078{transform:matrix(0.240512,0.007704,-0.008004,0.249872,0,0);-ms-transform:matrix(0.240512,0.007704,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.240512,0.007704,-0.008004,0.249872,0,0);}
.md2_c01078{transform:matrix(0.240670,0.008914,-0.009253,0.249829,0,0);-ms-transform:matrix(0.240670,0.008914,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.240670,0.008914,-0.009253,0.249829,0,0);}
.m5_c01078{transform:matrix(0.240712,0.007221,-0.007497,0.249888,0,0);-ms-transform:matrix(0.240712,0.007221,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.240712,0.007221,-0.007497,0.249888,0,0);}
.m13c_c01078{transform:matrix(0.241067,0.009652,-0.010002,0.249800,0,0);-ms-transform:matrix(0.241067,0.009652,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.241067,0.009652,-0.010002,0.249800,0,0);}
.m8_c01078{transform:matrix(0.241216,0.007236,-0.007497,0.249888,0,0);-ms-transform:matrix(0.241216,0.007236,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.241216,0.007236,-0.007497,0.249888,0,0);}
.m139_c01078{transform:matrix(0.241357,0.009664,-0.010002,0.249800,0,0);-ms-transform:matrix(0.241357,0.009664,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.241357,0.009664,-0.010002,0.249800,0,0);}
.m137_c01078{transform:matrix(0.241501,0.009670,-0.010002,0.249800,0,0);-ms-transform:matrix(0.241501,0.009670,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.241501,0.009670,-0.010002,0.249800,0,0);}
.m125_c01078{transform:matrix(0.241736,0.009921,-0.010252,0.249790,0,0);-ms-transform:matrix(0.241736,0.009921,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.241736,0.009921,-0.010252,0.249790,0,0);}
.ma8_c01078{transform:matrix(0.241764,0.011858,-0.012248,0.249700,0,0);-ms-transform:matrix(0.241764,0.011858,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.241764,0.011858,-0.012248,0.249700,0,0);}
.m29_c01078{transform:matrix(0.241871,0.007748,-0.008004,0.249872,0,0);-ms-transform:matrix(0.241871,0.007748,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.241871,0.007748,-0.008004,0.249872,0,0);}
.m57_c01078{transform:matrix(0.242023,0.008722,-0.009003,0.249838,0,0);-ms-transform:matrix(0.242023,0.008722,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.242023,0.008722,-0.009003,0.249838,0,0);}
.m101_c01078{transform:matrix(0.242306,0.009944,-0.010252,0.249790,0,0);-ms-transform:matrix(0.242306,0.009944,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.242306,0.009944,-0.010252,0.249790,0,0);}
.m75_c01078{transform:matrix(0.242388,0.008735,-0.009003,0.249838,0,0);-ms-transform:matrix(0.242388,0.008735,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.242388,0.008735,-0.009003,0.249838,0,0);}
.m22_c01078{transform:matrix(0.242631,0.007772,-0.008004,0.249872,0,0);-ms-transform:matrix(0.242631,0.007772,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.242631,0.007772,-0.008004,0.249872,0,0);}
.m73_c01078{transform:matrix(0.243937,0.008791,-0.009003,0.249838,0,0);-ms-transform:matrix(0.243937,0.008791,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.243937,0.008791,-0.009003,0.249838,0,0);}
.m1b_c01078{transform:matrix(0.243985,0.007320,-0.007497,0.249888,0,0);-ms-transform:matrix(0.243985,0.007320,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.243985,0.007320,-0.007497,0.249888,0,0);}
.mc8_c01078{transform:matrix(0.244044,0.008306,-0.008504,0.249855,0,0);-ms-transform:matrix(0.244044,0.008306,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.244044,0.008306,-0.008504,0.249855,0,0);}
.m124_c01078{transform:matrix(0.244050,0.010016,-0.010252,0.249790,0,0);-ms-transform:matrix(0.244050,0.010016,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.244050,0.010016,-0.010252,0.249790,0,0);}
.m59_c01078{transform:matrix(0.244376,0.008806,-0.009003,0.249838,0,0);-ms-transform:matrix(0.244376,0.008806,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.244376,0.008806,-0.009003,0.249838,0,0);}
.m104_c01078{transform:matrix(0.244779,0.010046,-0.010252,0.249790,0,0);-ms-transform:matrix(0.244779,0.010046,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.244779,0.010046,-0.010252,0.249790,0,0);}
.m20_c01078{transform:matrix(0.245089,0.007851,-0.008004,0.249872,0,0);-ms-transform:matrix(0.245089,0.007851,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.245089,0.007851,-0.008004,0.249872,0,0);}
.md_c01078{transform:matrix(0.245155,0.007355,-0.007497,0.249888,0,0);-ms-transform:matrix(0.245155,0.007355,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.245155,0.007355,-0.007497,0.249888,0,0);}
.mb4_c01078{transform:matrix(0.245185,0.012026,-0.012248,0.249700,0,0);-ms-transform:matrix(0.245185,0.012026,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.245185,0.012026,-0.012248,0.249700,0,0);}
.mc6_c01078{transform:matrix(0.245318,0.008349,-0.008504,0.249855,0,0);-ms-transform:matrix(0.245318,0.008349,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.245318,0.008349,-0.008504,0.249855,0,0);}
.m18_c01078{transform:matrix(0.245350,0.007360,-0.007497,0.249888,0,0);-ms-transform:matrix(0.245350,0.007360,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.245350,0.007360,-0.007497,0.249888,0,0);}
.m114_c01078{transform:matrix(0.245663,0.010082,-0.010252,0.249790,0,0);-ms-transform:matrix(0.245663,0.010082,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.245663,0.010082,-0.010252,0.249790,0,0);}
.m9a_c01078{transform:matrix(0.246299,0.012081,-0.012248,0.249700,0,0);-ms-transform:matrix(0.246299,0.012081,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.246299,0.012081,-0.012248,0.249700,0,0);}
.m8f_c01078{transform:matrix(0.246350,0.008877,-0.009003,0.249838,0,0);-ms-transform:matrix(0.246350,0.008877,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.246350,0.008877,-0.009003,0.249838,0,0);}
.m153_c01078{transform:matrix(0.246727,0.006415,-0.006498,0.249916,0,0);-ms-transform:matrix(0.246727,0.006415,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.246727,0.006415,-0.006498,0.249916,0,0);}
.mf_c01078{transform:matrix(0.246879,0.007406,-0.007497,0.249888,0,0);-ms-transform:matrix(0.246879,0.007406,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.246879,0.007406,-0.007497,0.249888,0,0);}
.md4_c01078{transform:matrix(0.247335,0.009161,-0.009253,0.249829,0,0);-ms-transform:matrix(0.247335,0.009161,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.247335,0.009161,-0.009253,0.249829,0,0);}
.ma6_c01078{transform:matrix(0.247388,0.012134,-0.012248,0.249700,0,0);-ms-transform:matrix(0.247388,0.012134,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.247388,0.012134,-0.012248,0.249700,0,0);}
.mf6_c01078{transform:matrix(0.247389,0.008915,-0.009003,0.249838,0,0);-ms-transform:matrix(0.247389,0.008915,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.247389,0.008915,-0.009003,0.249838,0,0);}
.m10c_c01078{transform:matrix(0.247487,0.010157,-0.010252,0.249790,0,0);-ms-transform:matrix(0.247487,0.010157,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.247487,0.010157,-0.010252,0.249790,0,0);}
.m136_c01078{transform:matrix(0.247587,0.009913,-0.010002,0.249800,0,0);-ms-transform:matrix(0.247587,0.009913,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.247587,0.009913,-0.010002,0.249800,0,0);}
.mf2_c01078{transform:matrix(0.247709,0.008926,-0.009003,0.249838,0,0);-ms-transform:matrix(0.247709,0.008926,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.247709,0.008926,-0.009003,0.249838,0,0);}
.m123_c01078{transform:matrix(0.247871,0.010173,-0.010252,0.249790,0,0);-ms-transform:matrix(0.247871,0.010173,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.247871,0.010173,-0.010252,0.249790,0,0);}
.m25_c01078{transform:matrix(0.247953,0.007942,-0.008004,0.249872,0,0);-ms-transform:matrix(0.247953,0.007942,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.247953,0.007942,-0.008004,0.249872,0,0);}
.m5d_c01078{transform:matrix(0.247964,0.008936,-0.009003,0.249838,0,0);-ms-transform:matrix(0.247964,0.008936,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.247964,0.008936,-0.009003,0.249838,0,0);}
.m9d_c01078{transform:matrix(0.248287,0.012178,-0.012248,0.249700,0,0);-ms-transform:matrix(0.248287,0.012178,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.248287,0.012178,-0.012248,0.249700,0,0);}
.m150_c01078{transform:matrix(0.249566,0.006489,-0.006498,0.249916,0,0);-ms-transform:matrix(0.249566,0.006489,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.249566,0.006489,-0.006498,0.249916,0,0);}
.m14_c01078{transform:matrix(0.249648,0.007489,-0.007497,0.249888,0,0);-ms-transform:matrix(0.249648,0.007489,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.249648,0.007489,-0.007497,0.249888,0,0);}
.md6_c01078{transform:matrix(0.249824,0.009253,-0.009253,0.249829,0,0);-ms-transform:matrix(0.249824,0.009253,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.249824,0.009253,-0.009253,0.249829,0,0);}
.m3d_c01078{transform:matrix(0.249867,0.008004,-0.008004,0.249872,0,0);-ms-transform:matrix(0.249867,0.008004,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.249867,0.008004,-0.008004,0.249872,0,0);}
.me6_c01078{transform:matrix(0.249974,0.009509,-0.009503,0.249819,0,0);-ms-transform:matrix(0.249974,0.009509,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.249974,0.009509,-0.009503,0.249819,0,0);}
.m88_c01078{transform:matrix(0.249993,0.009009,-0.009003,0.249838,0,0);-ms-transform:matrix(0.249993,0.009009,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.249993,0.009009,-0.009003,0.249838,0,0);}
.mf4_c01078{transform:matrix(0.250263,0.009018,-0.009003,0.249838,0,0);-ms-transform:matrix(0.250263,0.009018,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.250263,0.009018,-0.009003,0.249838,0,0);}
.m10e_c01078{transform:matrix(0.250494,0.010281,-0.010252,0.249790,0,0);-ms-transform:matrix(0.250494,0.010281,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.250494,0.010281,-0.010252,0.249790,0,0);}
.m107_c01078{transform:matrix(0.251518,0.010323,-0.010252,0.249790,0,0);-ms-transform:matrix(0.251518,0.010323,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.251518,0.010323,-0.010252,0.249790,0,0);}
.me5_c01078{transform:matrix(0.251713,0.009575,-0.009503,0.249819,0,0);-ms-transform:matrix(0.251713,0.009575,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.251713,0.009575,-0.009503,0.249819,0,0);}
.m111_c01078{transform:matrix(0.251823,0.010335,-0.010252,0.249790,0,0);-ms-transform:matrix(0.251823,0.010335,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.251823,0.010335,-0.010252,0.249790,0,0);}
.mf8_c01078{transform:matrix(0.252661,0.009105,-0.009003,0.249838,0,0);-ms-transform:matrix(0.252661,0.009105,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.252661,0.009105,-0.009003,0.249838,0,0);}
.mc2_c01078{transform:matrix(0.253014,0.008611,-0.008504,0.249855,0,0);-ms-transform:matrix(0.253014,0.008611,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.253014,0.008611,-0.008504,0.249855,0,0);}
.m2c_c01078{transform:matrix(0.253305,0.008114,-0.008004,0.249872,0,0);-ms-transform:matrix(0.253305,0.008114,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.253305,0.008114,-0.008004,0.249872,0,0);}
.md7_c01078{transform:matrix(0.253311,0.009382,-0.009253,0.249829,0,0);-ms-transform:matrix(0.253311,0.009382,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.253311,0.009382,-0.009253,0.249829,0,0);}
.m135_c01078{transform:matrix(0.253372,0.010145,-0.010002,0.249800,0,0);-ms-transform:matrix(0.253372,0.010145,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.253372,0.010145,-0.010002,0.249800,0,0);}
.mea_c01078{transform:matrix(0.253407,0.009639,-0.009503,0.249819,0,0);-ms-transform:matrix(0.253407,0.009639,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.253407,0.009639,-0.009503,0.249819,0,0);}
.m13d_c01078{transform:matrix(0.253552,0.010152,-0.010002,0.249800,0,0);-ms-transform:matrix(0.253552,0.010152,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.253552,0.010152,-0.010002,0.249800,0,0);}
.mcc_c01078{transform:matrix(0.253638,0.008632,-0.008504,0.249855,0,0);-ms-transform:matrix(0.253638,0.008632,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.253638,0.008632,-0.008504,0.249855,0,0);}
.m122_c01078{transform:matrix(0.254156,0.010431,-0.010252,0.249790,0,0);-ms-transform:matrix(0.254156,0.010431,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.254156,0.010431,-0.010252,0.249790,0,0);}
.m8a_c01078{transform:matrix(0.254890,0.009185,-0.009003,0.249838,0,0);-ms-transform:matrix(0.254890,0.009185,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.254890,0.009185,-0.009003,0.249838,0,0);}
.md0_c01078{transform:matrix(0.255215,0.009452,-0.009253,0.249829,0,0);-ms-transform:matrix(0.255215,0.009452,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.255215,0.009452,-0.009253,0.249829,0,0);}
.m65_c01078{transform:matrix(0.255274,0.009199,-0.009003,0.249838,0,0);-ms-transform:matrix(0.255274,0.009199,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.255274,0.009199,-0.009003,0.249838,0,0);}
.med_c01078{transform:matrix(0.255509,0.009208,-0.009003,0.249838,0,0);-ms-transform:matrix(0.255509,0.009208,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.255509,0.009208,-0.009003,0.249838,0,0);}
.m78_c01078{transform:matrix(0.255599,0.009211,-0.009003,0.249838,0,0);-ms-transform:matrix(0.255599,0.009211,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.255599,0.009211,-0.009003,0.249838,0,0);}
.mc5_c01078{transform:matrix(0.255787,0.008705,-0.008504,0.249855,0,0);-ms-transform:matrix(0.255787,0.008705,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.255787,0.008705,-0.008504,0.249855,0,0);}
.m55_c01078{transform:matrix(0.255864,0.009220,-0.009003,0.249838,0,0);-ms-transform:matrix(0.255864,0.009220,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.255864,0.009220,-0.009003,0.249838,0,0);}
.m19_c01078{transform:matrix(0.256100,0.007683,-0.007497,0.249888,0,0);-ms-transform:matrix(0.256100,0.007683,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.256100,0.007683,-0.007497,0.249888,0,0);}
.m2a_c01078{transform:matrix(0.256179,0.008206,-0.008004,0.249872,0,0);-ms-transform:matrix(0.256179,0.008206,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.256179,0.008206,-0.008004,0.249872,0,0);}
.ma5_c01078{transform:matrix(0.256721,0.012592,-0.012248,0.249700,0,0);-ms-transform:matrix(0.256721,0.012592,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.256721,0.012592,-0.012248,0.249700,0,0);}
.m12d_c01078{transform:matrix(0.256735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256735,0.000000,0.000000,0.250000,0,0);}
.m152_c01078{transform:matrix(0.257123,0.006685,-0.006498,0.249916,0,0);-ms-transform:matrix(0.257123,0.006685,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.257123,0.006685,-0.006498,0.249916,0,0);}
.m66_c01078{transform:matrix(0.257228,0.009269,-0.009003,0.249838,0,0);-ms-transform:matrix(0.257228,0.009269,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.257228,0.009269,-0.009003,0.249838,0,0);}
.m12a_c01078{transform:matrix(0.257663,0.010575,-0.010252,0.249790,0,0);-ms-transform:matrix(0.257663,0.010575,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.257663,0.010575,-0.010252,0.249790,0,0);}
.me8_c01078{transform:matrix(0.257918,0.009811,-0.009503,0.249819,0,0);-ms-transform:matrix(0.257918,0.009811,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.257918,0.009811,-0.009503,0.249819,0,0);}
.m121_c01078{transform:matrix(0.258093,0.010592,-0.010252,0.249790,0,0);-ms-transform:matrix(0.258093,0.010592,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.258093,0.010592,-0.010252,0.249790,0,0);}
.m154_c01078{transform:matrix(0.258778,0.006728,-0.006498,0.249916,0,0);-ms-transform:matrix(0.258778,0.006728,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.258778,0.006728,-0.006498,0.249916,0,0);}
.m129_c01078{transform:matrix(0.259247,0.010640,-0.010252,0.249790,0,0);-ms-transform:matrix(0.259247,0.010640,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.259247,0.010640,-0.010252,0.249790,0,0);}
.m6e_c01078{transform:matrix(0.259297,0.009344,-0.009003,0.249838,0,0);-ms-transform:matrix(0.259297,0.009344,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.259297,0.009344,-0.009003,0.249838,0,0);}
.m9b_c01078{transform:matrix(0.259633,0.012735,-0.012248,0.249700,0,0);-ms-transform:matrix(0.259633,0.012735,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.259633,0.012735,-0.012248,0.249700,0,0);}
.maf_c01078{transform:matrix(0.260172,0.012761,-0.012248,0.249700,0,0);-ms-transform:matrix(0.260172,0.012761,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.260172,0.012761,-0.012248,0.249700,0,0);}
.mf5_c01078{transform:matrix(0.260986,0.009405,-0.009003,0.249838,0,0);-ms-transform:matrix(0.260986,0.009405,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.260986,0.009405,-0.009003,0.249838,0,0);}
.m12c_c01078{transform:matrix(0.260990,0.010711,-0.010252,0.249790,0,0);-ms-transform:matrix(0.260990,0.010711,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.260990,0.010711,-0.010252,0.249790,0,0);}
.mcb_c01078{transform:matrix(0.261059,0.008885,-0.008504,0.249855,0,0);-ms-transform:matrix(0.261059,0.008885,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.261059,0.008885,-0.008504,0.249855,0,0);}
.m64_c01078{transform:matrix(0.261520,0.009424,-0.009003,0.249838,0,0);-ms-transform:matrix(0.261520,0.009424,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.261520,0.009424,-0.009003,0.249838,0,0);}
.m9c_c01078{transform:matrix(0.261630,0.012833,-0.012248,0.249700,0,0);-ms-transform:matrix(0.261630,0.012833,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.261630,0.012833,-0.012248,0.249700,0,0);}
.m16_c01078{transform:matrix(0.261712,0.007851,-0.007497,0.249888,0,0);-ms-transform:matrix(0.261712,0.007851,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.261712,0.007851,-0.007497,0.249888,0,0);}
.m14d_c01078{transform:matrix(0.262676,0.006830,-0.006498,0.249916,0,0);-ms-transform:matrix(0.262676,0.006830,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.262676,0.006830,-0.006498,0.249916,0,0);}
.mf9_c01078{transform:matrix(0.263059,0.009480,-0.009003,0.249838,0,0);-ms-transform:matrix(0.263059,0.009480,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.263059,0.009480,-0.009003,0.249838,0,0);}
.m86_c01078{transform:matrix(0.263129,0.009482,-0.009003,0.249838,0,0);-ms-transform:matrix(0.263129,0.009482,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.263129,0.009482,-0.009003,0.249838,0,0);}
.m23_c01078{transform:matrix(0.263360,0.008436,-0.008004,0.249872,0,0);-ms-transform:matrix(0.263360,0.008436,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.263360,0.008436,-0.008004,0.249872,0,0);}
.m72_c01078{transform:matrix(0.263384,0.009491,-0.009003,0.249838,0,0);-ms-transform:matrix(0.263384,0.009491,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.263384,0.009491,-0.009003,0.249838,0,0);}
.ma2_c01078{transform:matrix(0.263978,0.012948,-0.012248,0.249700,0,0);-ms-transform:matrix(0.263978,0.012948,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.263978,0.012948,-0.012248,0.249700,0,0);}
.mf0_c01078{transform:matrix(0.263984,0.009513,-0.009003,0.249838,0,0);-ms-transform:matrix(0.263984,0.009513,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.263984,0.009513,-0.009003,0.249838,0,0);}
.m27_c01078{transform:matrix(0.264160,0.008462,-0.008004,0.249872,0,0);-ms-transform:matrix(0.264160,0.008462,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.264160,0.008462,-0.008004,0.249872,0,0);}
.mec_c01078{transform:matrix(0.264503,0.009532,-0.009003,0.249838,0,0);-ms-transform:matrix(0.264503,0.009532,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.264503,0.009532,-0.009003,0.249838,0,0);}
.ma1_c01078{transform:matrix(0.264777,0.012987,-0.012248,0.249700,0,0);-ms-transform:matrix(0.264777,0.012987,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.264777,0.012987,-0.012248,0.249700,0,0);}
.mab_c01078{transform:matrix(0.264892,0.012993,-0.012248,0.249700,0,0);-ms-transform:matrix(0.264892,0.012993,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.264892,0.012993,-0.012248,0.249700,0,0);}
.m69_c01078{transform:matrix(0.265138,0.009555,-0.009003,0.249838,0,0);-ms-transform:matrix(0.265138,0.009555,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.265138,0.009555,-0.009003,0.249838,0,0);}
.mc9_c01078{transform:matrix(0.265156,0.009024,-0.008504,0.249855,0,0);-ms-transform:matrix(0.265156,0.009024,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.265156,0.009024,-0.008504,0.249855,0,0);}
.ma9_c01078{transform:matrix(0.265411,0.013018,-0.012248,0.249700,0,0);-ms-transform:matrix(0.265411,0.013018,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.265411,0.013018,-0.012248,0.249700,0,0);}
.m6f_c01078{transform:matrix(0.265428,0.009565,-0.009003,0.249838,0,0);-ms-transform:matrix(0.265428,0.009565,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.265428,0.009565,-0.009003,0.249838,0,0);}
.m11_c01078{transform:matrix(0.265910,0.007977,-0.007497,0.249888,0,0);-ms-transform:matrix(0.265910,0.007977,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.265910,0.007977,-0.007497,0.249888,0,0);}
.m8e_c01078{transform:matrix(0.265982,0.009585,-0.009003,0.249838,0,0);-ms-transform:matrix(0.265982,0.009585,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.265982,0.009585,-0.009003,0.249838,0,0);}
.m77_c01078{transform:matrix(0.266157,0.009591,-0.009003,0.249838,0,0);-ms-transform:matrix(0.266157,0.009591,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.266157,0.009591,-0.009003,0.249838,0,0);}
.mef_c01078{transform:matrix(0.266672,0.009610,-0.009003,0.249838,0,0);-ms-transform:matrix(0.266672,0.009610,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.266672,0.009610,-0.009003,0.249838,0,0);}
.me4_c01078{transform:matrix(0.267661,0.010181,-0.009503,0.249819,0,0);-ms-transform:matrix(0.267661,0.010181,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.267661,0.010181,-0.009503,0.249819,0,0);}
.m1c_c01078{transform:matrix(0.268174,0.008045,-0.007497,0.249888,0,0);-ms-transform:matrix(0.268174,0.008045,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.268174,0.008045,-0.007497,0.249888,0,0);}
.mad_c01078{transform:matrix(0.268297,0.013160,-0.012248,0.249700,0,0);-ms-transform:matrix(0.268297,0.013160,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.268297,0.013160,-0.012248,0.249700,0,0);}
.mc7_c01078{transform:matrix(0.268395,0.009135,-0.008504,0.249855,0,0);-ms-transform:matrix(0.268395,0.009135,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.268395,0.009135,-0.008504,0.249855,0,0);}
.mca_c01078{transform:matrix(0.269104,0.009159,-0.008504,0.249855,0,0);-ms-transform:matrix(0.269104,0.009159,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.269104,0.009159,-0.008504,0.249855,0,0);}
.mfb_c01078{transform:matrix(0.269185,0.009700,-0.009003,0.249838,0,0);-ms-transform:matrix(0.269185,0.009700,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.269185,0.009700,-0.009003,0.249838,0,0);}
.mb3_c01078{transform:matrix(0.269261,0.013207,-0.012248,0.249700,0,0);-ms-transform:matrix(0.269261,0.013207,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.269261,0.013207,-0.012248,0.249700,0,0);}
.m24_c01078{transform:matrix(0.269447,0.008631,-0.008004,0.249872,0,0);-ms-transform:matrix(0.269447,0.008631,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.269447,0.008631,-0.008004,0.249872,0,0);}
.md5_c01078{transform:matrix(0.269815,0.009993,-0.009253,0.249829,0,0);-ms-transform:matrix(0.269815,0.009993,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.269815,0.009993,-0.009253,0.249829,0,0);}
.m6b_c01078{transform:matrix(0.269830,0.009724,-0.009003,0.249838,0,0);-ms-transform:matrix(0.269830,0.009724,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.269830,0.009724,-0.009003,0.249838,0,0);}
.m71_c01078{transform:matrix(0.270120,0.009734,-0.009003,0.249838,0,0);-ms-transform:matrix(0.270120,0.009734,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.270120,0.009734,-0.009003,0.249838,0,0);}
.m3e_c01078{transform:matrix(0.270176,0.008654,-0.008004,0.249872,0,0);-ms-transform:matrix(0.270176,0.008654,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.270176,0.008654,-0.008004,0.249872,0,0);}
.m8c_c01078{transform:matrix(0.270499,0.009748,-0.009003,0.249838,0,0);-ms-transform:matrix(0.270499,0.009748,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.270499,0.009748,-0.009003,0.249838,0,0);}
.md3_c01078{transform:matrix(0.271359,0.010050,-0.009253,0.249829,0,0);-ms-transform:matrix(0.271359,0.010050,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.271359,0.010050,-0.009253,0.249829,0,0);}
.m76_c01078{transform:matrix(0.271639,0.009789,-0.009003,0.249838,0,0);-ms-transform:matrix(0.271639,0.009789,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.271639,0.009789,-0.009003,0.249838,0,0);}
.m3b_c01078{transform:matrix(0.271691,0.008703,-0.008004,0.249872,0,0);-ms-transform:matrix(0.271691,0.008703,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.271691,0.008703,-0.008004,0.249872,0,0);}
.mc4_c01078{transform:matrix(0.272197,0.009264,-0.008504,0.249855,0,0);-ms-transform:matrix(0.272197,0.009264,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.272197,0.009264,-0.008504,0.249855,0,0);}
.me9_c01078{transform:matrix(0.272228,0.010355,-0.009503,0.249819,0,0);-ms-transform:matrix(0.272228,0.010355,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.272228,0.010355,-0.009503,0.249819,0,0);}
.mf7_c01078{transform:matrix(0.272228,0.009810,-0.009003,0.249838,0,0);-ms-transform:matrix(0.272228,0.009810,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.272228,0.009810,-0.009003,0.249838,0,0);}
.ma3_c01078{transform:matrix(0.272338,0.013358,-0.012248,0.249700,0,0);-ms-transform:matrix(0.272338,0.013358,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.272338,0.013358,-0.012248,0.249700,0,0);}
.m21_c01078{transform:matrix(0.272415,0.008726,-0.008004,0.249872,0,0);-ms-transform:matrix(0.272415,0.008726,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.272415,0.008726,-0.008004,0.249872,0,0);}
.m67_c01078{transform:matrix(0.273088,0.009841,-0.009003,0.249838,0,0);-ms-transform:matrix(0.273088,0.009841,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.273088,0.009841,-0.009003,0.249838,0,0);}
.m28_c01078{transform:matrix(0.273930,0.008775,-0.008004,0.249872,0,0);-ms-transform:matrix(0.273930,0.008775,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.273930,0.008775,-0.008004,0.249872,0,0);}
.mcf_c01078{transform:matrix(0.274052,0.010150,-0.009253,0.249829,0,0);-ms-transform:matrix(0.274052,0.010150,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.274052,0.010150,-0.009253,0.249829,0,0);}
.m6d_c01078{transform:matrix(0.274702,0.009899,-0.009003,0.249838,0,0);-ms-transform:matrix(0.274702,0.009899,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.274702,0.009899,-0.009003,0.249838,0,0);}
.m127_c01078{transform:matrix(0.274874,0.011281,-0.010252,0.249790,0,0);-ms-transform:matrix(0.274874,0.011281,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.274874,0.011281,-0.010252,0.249790,0,0);}
.m1d_c01078{transform:matrix(0.275501,0.008265,-0.007497,0.249888,0,0);-ms-transform:matrix(0.275501,0.008265,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.275501,0.008265,-0.007497,0.249888,0,0);}
.mee_c01078{transform:matrix(0.275621,0.009932,-0.009003,0.249838,0,0);-ms-transform:matrix(0.275621,0.009932,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.275621,0.009932,-0.009003,0.249838,0,0);}
.m89_c01078{transform:matrix(0.276341,0.009958,-0.009003,0.249838,0,0);-ms-transform:matrix(0.276341,0.009958,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.276341,0.009958,-0.009003,0.249838,0,0);}
.mb1_c01078{transform:matrix(0.276518,0.013563,-0.012248,0.249700,0,0);-ms-transform:matrix(0.276518,0.013563,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.276518,0.013563,-0.012248,0.249700,0,0);}
.m13_c01078{transform:matrix(0.277060,0.008312,-0.007497,0.249888,0,0);-ms-transform:matrix(0.277060,0.008312,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.277060,0.008312,-0.007497,0.249888,0,0);}
.m63_c01078{transform:matrix(0.277615,0.010004,-0.009003,0.249838,0,0);-ms-transform:matrix(0.277615,0.010004,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.277615,0.010004,-0.009003,0.249838,0,0);}
.m74_c01078{transform:matrix(0.278010,0.010018,-0.009003,0.249838,0,0);-ms-transform:matrix(0.278010,0.010018,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.278010,0.010018,-0.009003,0.249838,0,0);}
.m87_c01078{transform:matrix(0.278994,0.010054,-0.009003,0.249838,0,0);-ms-transform:matrix(0.278994,0.010054,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.278994,0.010054,-0.009003,0.249838,0,0);}
.mf1_c01078{transform:matrix(0.279424,0.010069,-0.009003,0.249838,0,0);-ms-transform:matrix(0.279424,0.010069,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.279424,0.010069,-0.009003,0.249838,0,0);}
.m8b_c01078{transform:matrix(0.283556,0.010218,-0.009003,0.249838,0,0);-ms-transform:matrix(0.283556,0.010218,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.283556,0.010218,-0.009003,0.249838,0,0);}
.meb_c01078{transform:matrix(0.283840,0.010797,-0.009503,0.249819,0,0);-ms-transform:matrix(0.283840,0.010797,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.283840,0.010797,-0.009503,0.249819,0,0);}
.m12b_c01078{transform:matrix(0.284021,0.011657,-0.010252,0.249790,0,0);-ms-transform:matrix(0.284021,0.011657,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.284021,0.011657,-0.010252,0.249790,0,0);}
.md1_c01078{transform:matrix(0.285120,0.010560,-0.009253,0.249829,0,0);-ms-transform:matrix(0.285120,0.010560,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.285120,0.010560,-0.009253,0.249829,0,0);}
.m7_c01078{transform:matrix(0.288250,0.008648,-0.007497,0.249888,0,0);-ms-transform:matrix(0.288250,0.008648,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.288250,0.008648,-0.007497,0.249888,0,0);}
.mcd_c01078{transform:matrix(0.288533,0.009820,-0.008504,0.249855,0,0);-ms-transform:matrix(0.288533,0.009820,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.288533,0.009820,-0.008504,0.249855,0,0);}
.m12e_c01078{transform:matrix(0.294440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294440,0.000000,0.000000,0.250000,0,0);}
.m2_c01078{transform:matrix(0.322740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322740,0.000000,0.000000,0.250000,0,0);}
.m14a_c01078{transform:matrix(0.330888,0.008603,-0.006498,0.249916,0,0);-ms-transform:matrix(0.330888,0.008603,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.330888,0.008603,-0.006498,0.249916,0,0);}
.m6_c01078{transform:matrix(0.373227,0.011197,-0.007497,0.249888,0,0);-ms-transform:matrix(0.373227,0.011197,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.373227,0.011197,-0.007497,0.249888,0,0);}
.m1_c01078{transform:matrix(0.430735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430735,0.000000,0.000000,0.250000,0,0);}
.m14b_c01078{transform:matrix(0.437417,0.011373,-0.006498,0.249916,0,0);-ms-transform:matrix(0.437417,0.011373,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.437417,0.011373,-0.006498,0.249916,0,0);}
.m12f_c01078{transform:matrix(0.465240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465240,0.000000,0.000000,0.250000,0,0);}
.v0_c01078{vertical-align:0.000000px;}
.ls0_c01078{letter-spacing:0.000000px;}
.sc__c01078{text-shadow:none;}
.sc0_c01078{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__c01078{-webkit-text-stroke:0px transparent;}
.sc0_c01078{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01078{word-spacing:0.000000px;}
.fc0_c01078{color:transparent;}
.fs15_c01078{font-size:24.000000px;}
.fs14_c01078{font-size:54.000000px;}
.fs0_c01078{font-size:66.000000px;}
.fs3_c01078{font-size:71.964891px;}
.fsc_c01078{font-size:71.969646px;}
.fs8_c01078{font-size:71.974688px;}
.fsd_c01078{font-size:71.977316px;}
.fsf_c01078{font-size:71.980017px;}
.fs13_c01078{font-size:71.988551px;}
.fsa_c01078{font-size:72.014471px;}
.fs18_c01078{font-size:72.024332px;}
.fs2_c01078{font-size:72.032393px;}
.fs4_c01078{font-size:77.961966px;}
.fs7_c01078{font-size:77.972578px;}
.fs16_c01078{font-size:77.984437px;}
.fs11_c01078{font-size:77.987597px;}
.fs1_c01078{font-size:78.035092px;}
.fsb_c01078{font-size:83.964587px;}
.fs5_c01078{font-size:83.970469px;}
.fs10_c01078{font-size:83.986643px;}
.fs12_c01078{font-size:84.008820px;}
.fs6_c01078{font-size:89.968359px;}
.fse_c01078{font-size:89.971646px;}
.fs17_c01078{font-size:95.980846px;}
.fs9_c01078{font-size:101.964141px;}
.y0_c01078{bottom:0.000000px;}
.y158_c01078{bottom:41.626995px;}
.y157_c01078{bottom:42.759945px;}
.y156_c01078{bottom:44.213514px;}
.y155_c01078{bottom:45.935754px;}
.y154_c01078{bottom:46.785603px;}
.y153_c01078{bottom:47.361945px;}
.y152_c01078{bottom:48.500628px;}
.y151_c01078{bottom:49.371537px;}
.y150_c01078{bottom:51.358977px;}
.y14f_c01078{bottom:52.229145px;}
.y14e_c01078{bottom:53.675070px;}
.y14d_c01078{bottom:54.820500px;}
.y14c_c01078{bottom:81.069060px;}
.y14b_c01078{bottom:85.092540px;}
.y14a_c01078{bottom:86.407380px;}
.y149_c01078{bottom:90.450720px;}
.y148_c01078{bottom:92.220060px;}
.y147_c01078{bottom:95.729400px;}
.y146_c01078{bottom:99.250860px;}
.y145_c01078{bottom:100.582920px;}
.y144_c01078{bottom:104.168700px;}
.y143_c01078{bottom:106.305840px;}
.y142_c01078{bottom:107.633160px;}
.y141_c01078{bottom:109.371000px;}
.y140_c01078{bottom:118.019880px;}
.y13f_c01078{bottom:120.194100px;}
.y13e_c01078{bottom:121.515420px;}
.y13d_c01078{bottom:123.738900px;}
.y13c_c01078{bottom:126.826080px;}
.y13b_c01078{bottom:128.199180px;}
.y13a_c01078{bottom:131.255280px;}
.y139_c01078{bottom:134.405040px;}
.y138_c01078{bottom:137.980860px;}
.y137_c01078{bottom:139.236540px;}
.y136_c01078{bottom:140.613540px;}
.y135_c01078{bottom:142.733400px;}
.y134_c01078{bottom:143.667060px;}
.y133_c01078{bottom:145.821000px;}
.y132_c01078{bottom:151.066500px;}
.y131_c01078{bottom:154.170000px;}
.y12f_c01078{bottom:155.627278px;}
.y12e_c01078{bottom:161.061541px;}
.y12d_c01078{bottom:162.023340px;}
.y12c_c01078{bottom:164.299886px;}
.y12b_c01078{bottom:165.620167px;}
.y12a_c01078{bottom:170.141525px;}
.y129_c01078{bottom:171.526382px;}
.y128_c01078{bottom:173.371259px;}
.y127_c01078{bottom:175.116383px;}
.y126_c01078{bottom:177.364453px;}
.y125_c01078{bottom:180.052680px;}
.y124_c01078{bottom:182.797118px;}
.y123_c01078{bottom:184.153500px;}
.y130_c01078{bottom:185.350500px;}
.y122_c01078{bottom:195.151151px;}
.y121_c01078{bottom:196.730703px;}
.y120_c01078{bottom:199.916528px;}
.y11f_c01078{bottom:202.449170px;}
.y11e_c01078{bottom:205.601154px;}
.y11d_c01078{bottom:207.149405px;}
.y11c_c01078{bottom:212.395944px;}
.y11b_c01078{bottom:217.058179px;}
.y11a_c01078{bottom:218.997000px;}
.y119_c01078{bottom:253.410705px;}
.y118_c01078{bottom:253.412754px;}
.y117_c01078{bottom:253.416373px;}
.y116_c01078{bottom:268.154184px;}
.y115_c01078{bottom:269.340987px;}
.y114_c01078{bottom:272.472529px;}
.y113_c01078{bottom:274.017877px;}
.y112_c01078{bottom:274.818405px;}
.y111_c01078{bottom:277.517598px;}
.y110_c01078{bottom:278.651461px;}
.y10f_c01078{bottom:281.726005px;}
.y10e_c01078{bottom:282.529647px;}
.y10d_c01078{bottom:283.668962px;}
.y10c_c01078{bottom:285.244416px;}
.y10b_c01078{bottom:286.766008px;}
.y10a_c01078{bottom:291.353273px;}
.y109_c01078{bottom:299.972238px;}
.y108_c01078{bottom:301.272225px;}
.y107_c01078{bottom:304.979937px;}
.y106_c01078{bottom:306.338287px;}
.y105_c01078{bottom:307.274809px;}
.y104_c01078{bottom:312.265288px;}
.y103_c01078{bottom:314.483347px;}
.y102_c01078{bottom:318.534291px;}
.y101_c01078{bottom:320.397925px;}
.y100_c01078{bottom:323.122499px;}
.yff_c01078{bottom:325.371000px;}
.yfe_c01078{bottom:355.228513px;}
.yfd_c01078{bottom:356.033370px;}
.yfc_c01078{bottom:357.689293px;}
.yfb_c01078{bottom:359.052847px;}
.yfa_c01078{bottom:361.011454px;}
.yf9_c01078{bottom:372.231264px;}
.yf8_c01078{bottom:374.614986px;}
.yf7_c01078{bottom:375.861144px;}
.yf6_c01078{bottom:377.016042px;}
.yf5_c01078{bottom:379.010478px;}
.yf4_c01078{bottom:384.208086px;}
.yf3_c01078{bottom:386.968512px;}
.yf2_c01078{bottom:389.413308px;}
.yf1_c01078{bottom:392.582784px;}
.yf0_c01078{bottom:394.526568px;}
.yef_c01078{bottom:396.916500px;}
.yee_c01078{bottom:410.029410px;}
.yed_c01078{bottom:410.867424px;}
.yec_c01078{bottom:412.998654px;}
.yeb_c01078{bottom:415.038912px;}
.yea_c01078{bottom:416.712033px;}
.ye9_c01078{bottom:417.625686px;}
.ye8_c01078{bottom:430.133994px;}
.ye7_c01078{bottom:432.697512px;}
.ye6_c01078{bottom:433.905000px;}
.ye5_c01078{bottom:445.801121px;}
.ye4_c01078{bottom:448.866330px;}
.ye3_c01078{bottom:449.671802px;}
.ye2_c01078{bottom:451.541930px;}
.ye1_c01078{bottom:452.650264px;}
.ye0_c01078{bottom:456.429593px;}
.ydf_c01078{bottom:459.587321px;}
.yde_c01078{bottom:460.564787px;}
.ydd_c01078{bottom:461.658359px;}
.ydc_c01078{bottom:464.294608px;}
.ydb_c01078{bottom:467.636153px;}
.yda_c01078{bottom:468.747540px;}
.yd9_c01078{bottom:481.237260px;}
.yd8_c01078{bottom:482.877452px;}
.yd7_c01078{bottom:485.728931px;}
.yd6_c01078{bottom:487.408694px;}
.yd5_c01078{bottom:490.286424px;}
.yd4_c01078{bottom:491.886711px;}
.yd3_c01078{bottom:498.013023px;}
.yd2_c01078{bottom:500.070297px;}
.yd1_c01078{bottom:503.699331px;}
.yd0_c01078{bottom:504.918000px;}
.ycf_c01078{bottom:520.272735px;}
.yce_c01078{bottom:522.138774px;}
.ycd_c01078{bottom:522.909435px;}
.ycc_c01078{bottom:525.894975px;}
.ycb_c01078{bottom:528.186048px;}
.yca_c01078{bottom:529.952586px;}
.yc9_c01078{bottom:532.283898px;}
.yc8_c01078{bottom:533.413956px;}
.yc7_c01078{bottom:534.181812px;}
.yc6_c01078{bottom:537.165771px;}
.yc5_c01078{bottom:538.629216px;}
.yc4_c01078{bottom:540.840321px;}
.yc3_c01078{bottom:555.854754px;}
.yc2_c01078{bottom:558.861102px;}
.yc1_c01078{bottom:561.149676px;}
.yc0_c01078{bottom:562.261068px;}
.ybf_c01078{bottom:565.291233px;}
.ybe_c01078{bottom:566.375085px;}
.ybd_c01078{bottom:567.909420px;}
.ybc_c01078{bottom:568.999647px;}
.ybb_c01078{bottom:571.598760px;}
.yba_c01078{bottom:572.407518px;}
.yb9_c01078{bottom:575.350932px;}
.yb8_c01078{bottom:576.486702px;}
.yb7_c01078{bottom:577.272000px;}
.yb6_c01078{bottom:590.762658px;}
.yb5_c01078{bottom:593.138173px;}
.yb4_c01078{bottom:594.268800px;}
.yb3_c01078{bottom:598.169997px;}
.yb2_c01078{bottom:599.342765px;}
.yb1_c01078{bottom:600.913307px;}
.yb0_c01078{bottom:602.016864px;}
.yaf_c01078{bottom:605.122879px;}
.yae_c01078{bottom:606.318629px;}
.yad_c01078{bottom:609.744005px;}
.yac_c01078{bottom:610.917654px;}
.yab_c01078{bottom:614.017745px;}
.yaa_c01078{bottom:625.171552px;}
.ya9_c01078{bottom:626.871952px;}
.ya8_c01078{bottom:628.507116px;}
.ya7_c01078{bottom:630.169553px;}
.ya6_c01078{bottom:631.396580px;}
.ya5_c01078{bottom:634.691783px;}
.ya4_c01078{bottom:635.903709px;}
.ya3_c01078{bottom:638.772266px;}
.ya2_c01078{bottom:641.585304px;}
.ya1_c01078{bottom:642.846824px;}
.ya0_c01078{bottom:644.066998px;}
.y9f_c01078{bottom:645.662802px;}
.y9e_c01078{bottom:647.705220px;}
.y9d_c01078{bottom:650.200574px;}
.y9c_c01078{bottom:659.682231px;}
.y9b_c01078{bottom:661.803000px;}
.y9a_c01078{bottom:664.447769px;}
.y99_c01078{bottom:666.181493px;}
.y98_c01078{bottom:667.249302px;}
.y97_c01078{bottom:667.946523px;}
.y96_c01078{bottom:672.170768px;}
.y95_c01078{bottom:675.705203px;}
.y94_c01078{bottom:677.876394px;}
.y93_c01078{bottom:678.899168px;}
.y92_c01078{bottom:680.322851px;}
.y91_c01078{bottom:683.471131px;}
.y90_c01078{bottom:684.547811px;}
.y8f_c01078{bottom:695.402540px;}
.y8e_c01078{bottom:697.811264px;}
.y8d_c01078{bottom:699.016490px;}
.y8c_c01078{bottom:702.235214px;}
.y8b_c01078{bottom:707.041106px;}
.y8a_c01078{bottom:707.836256px;}
.y89_c01078{bottom:712.545380px;}
.y88_c01078{bottom:713.399822px;}
.y87_c01078{bottom:717.390152px;}
.y86_c01078{bottom:720.451358px;}
.y85_c01078{bottom:733.435104px;}
.y84_c01078{bottom:734.897100px;}
.y83_c01078{bottom:737.094320px;}
.y82_c01078{bottom:738.897177px;}
.y81_c01078{bottom:742.231596px;}
.y80_c01078{bottom:743.319183px;}
.y7f_c01078{bottom:746.267664px;}
.y7e_c01078{bottom:747.707129px;}
.y7d_c01078{bottom:748.800764px;}
.y7c_c01078{bottom:751.015385px;}
.y7b_c01078{bottom:751.743143px;}
.y7a_c01078{bottom:754.267926px;}
.y79_c01078{bottom:756.078033px;}
.y78_c01078{bottom:770.976039px;}
.y77_c01078{bottom:772.770905px;}
.y76_c01078{bottom:775.280028px;}
.y75_c01078{bottom:776.659607px;}
.y74_c01078{bottom:777.725526px;}
.y73_c01078{bottom:781.254561px;}
.y72_c01078{bottom:782.352638px;}
.y71_c01078{bottom:783.410984px;}
.y70_c01078{bottom:786.192726px;}
.y6f_c01078{bottom:787.272861px;}
.y6e_c01078{bottom:789.769713px;}
.y6d_c01078{bottom:792.241374px;}
.y6c_c01078{bottom:805.802448px;}
.y6b_c01078{bottom:806.976381px;}
.y6a_c01078{bottom:809.729679px;}
.y69_c01078{bottom:810.492132px;}
.y68_c01078{bottom:812.819586px;}
.y67_c01078{bottom:813.584267px;}
.y66_c01078{bottom:817.029764px;}
.y65_c01078{bottom:819.363860px;}
.y64_c01078{bottom:820.194056px;}
.y63_c01078{bottom:822.457722px;}
.y62_c01078{bottom:826.340349px;}
.y61_c01078{bottom:827.870561px;}
.y60_c01078{bottom:840.689418px;}
.y5f_c01078{bottom:842.254959px;}
.y5e_c01078{bottom:844.218466px;}
.y5d_c01078{bottom:845.351846px;}
.y5c_c01078{bottom:848.462772px;}
.y5b_c01078{bottom:849.637083px;}
.y5a_c01078{bottom:850.802322px;}
.y59_c01078{bottom:851.969829px;}
.y58_c01078{bottom:854.629856px;}
.y57_c01078{bottom:856.208843px;}
.y56_c01078{bottom:858.545315px;}
.y55_c01078{bottom:860.464367px;}
.y54_c01078{bottom:864.310638px;}
.y53_c01078{bottom:878.643413px;}
.y52_c01078{bottom:881.242176px;}
.y51_c01078{bottom:884.204333px;}
.y50_c01078{bottom:885.302234px;}
.y4f_c01078{bottom:886.367721px;}
.y4e_c01078{bottom:888.968699px;}
.y4d_c01078{bottom:890.407947px;}
.y4c_c01078{bottom:892.190973px;}
.y4b_c01078{bottom:893.318547px;}
.y4a_c01078{bottom:898.022123px;}
.y49_c01078{bottom:900.208583px;}
.y48_c01078{bottom:913.900890px;}
.y47_c01078{bottom:915.122424px;}
.y46_c01078{bottom:915.896352px;}
.y45_c01078{bottom:918.750522px;}
.y44_c01078{bottom:920.288442px;}
.y43_c01078{bottom:921.483570px;}
.y42_c01078{bottom:925.453056px;}
.y41_c01078{bottom:926.687388px;}
.y40_c01078{bottom:927.863778px;}
.y3f_c01078{bottom:930.662706px;}
.y3e_c01078{bottom:933.406500px;}
.y3d_c01078{bottom:962.171856px;}
.y3c_c01078{bottom:963.376179px;}
.y3b_c01078{bottom:964.291057px;}
.y3a_c01078{bottom:967.060104px;}
.y39_c01078{bottom:968.028450px;}
.y38_c01078{bottom:968.940688px;}
.y37_c01078{bottom:970.153353px;}
.y36_c01078{bottom:984.965236px;}
.y35_c01078{bottom:986.672832px;}
.y34_c01078{bottom:987.398856px;}
.y33_c01078{bottom:989.086878px;}
.y32_c01078{bottom:990.108039px;}
.y31_c01078{bottom:991.168453px;}
.y30_c01078{bottom:993.529998px;}
.y2f_c01078{bottom:994.569207px;}
.y2e_c01078{bottom:995.602752px;}
.y2d_c01078{bottom:996.641433px;}
.y2c_c01078{bottom:998.028942px;}
.y2b_c01078{bottom:1000.752717px;}
.y2a_c01078{bottom:1002.148626px;}
.y29_c01078{bottom:1005.508542px;}
.y28_c01078{bottom:1019.437704px;}
.y27_c01078{bottom:1023.354600px;}
.y26_c01078{bottom:1025.836056px;}
.y25_c01078{bottom:1026.914136px;}
.y24_c01078{bottom:1028.679960px;}
.y23_c01078{bottom:1030.850808px;}
.y22_c01078{bottom:1033.310568px;}
.y21_c01078{bottom:1034.728728px;}
.y20_c01078{bottom:1038.257304px;}
.y1f_c01078{bottom:1039.648728px;}
.y1e_c01078{bottom:1040.703384px;}
.y1d_c01078{bottom:1041.399000px;}
.y1c_c01078{bottom:1058.505405px;}
.y1b_c01078{bottom:1060.826055px;}
.y1a_c01078{bottom:1061.855745px;}
.y19_c01078{bottom:1062.836115px;}
.y18_c01078{bottom:1064.821425px;}
.y17_c01078{bottom:1065.835185px;}
.y16_c01078{bottom:1066.812180px;}
.y15_c01078{bottom:1068.484875px;}
.y14_c01078{bottom:1069.478790px;}
.y13_c01078{bottom:1070.167470px;}
.y12_c01078{bottom:1073.435910px;}
.y11_c01078{bottom:1074.424155px;}
.y10_c01078{bottom:1076.756370px;}
.yf_c01078{bottom:1092.792555px;}
.ye_c01078{bottom:1094.149485px;}
.yd_c01078{bottom:1095.476310px;}
.yc_c01078{bottom:1097.828865px;}
.yb_c01078{bottom:1099.442205px;}
.ya_c01078{bottom:1101.419415px;}
.y9_c01078{bottom:1102.449105px;}
.y8_c01078{bottom:1103.450400px;}
.y7_c01078{bottom:1105.107165px;}
.y6_c01078{bottom:1106.108370px;}
.y5_c01078{bottom:1108.421505px;}
.y4_c01078{bottom:1110.057930px;}
.y3_c01078{bottom:1111.370040px;}
.y2_c01078{bottom:1112.679000px;}
.y1_c01078{bottom:1184.913000px;}
.h17_c01078{height:24.000000px;}
.h16_c01078{height:54.000000px;}
.h2_c01078{height:66.000000px;}
.h5_c01078{height:71.964891px;}
.he_c01078{height:71.969646px;}
.ha_c01078{height:71.974688px;}
.hf_c01078{height:71.977316px;}
.h11_c01078{height:71.980017px;}
.h15_c01078{height:71.988551px;}
.hc_c01078{height:72.014471px;}
.h1a_c01078{height:72.024332px;}
.h4_c01078{height:72.032393px;}
.h6_c01078{height:77.961966px;}
.h9_c01078{height:77.972578px;}
.h18_c01078{height:77.984437px;}
.h13_c01078{height:77.987597px;}
.h3_c01078{height:78.035092px;}
.hd_c01078{height:83.964587px;}
.h7_c01078{height:83.970469px;}
.h12_c01078{height:83.986643px;}
.h14_c01078{height:84.008820px;}
.h8_c01078{height:89.968359px;}
.h10_c01078{height:89.971646px;}
.h19_c01078{height:95.980846px;}
.hb_c01078{height:101.964141px;}
.h0_c01078{height:1246.320000px;}
.h1_c01078{height:1246.500000px;}
.w1_c01078{width:885.750000px;}
.w0_c01078{width:885.870000px;}
.x0_c01078{left:0.000000px;}
.xe5_c01078{left:81.928500px;}
.xde_c01078{left:84.543000px;}
.xcf_c01078{left:85.798500px;}
.xc9_c01078{left:87.765220px;}
.xbb_c01078{left:89.559645px;}
.xb5_c01078{left:90.784500px;}
.xaf_c01078{left:92.770500px;}
.xa9_c01078{left:94.039560px;}
.x96_c01078{left:95.241000px;}
.x88_c01078{left:97.310956px;}
.x7c_c01078{left:98.821356px;}
.x64_c01078{left:101.179253px;}
.x59_c01078{left:102.814291px;}
.x4d_c01078{left:103.848364px;}
.x44_c01078{left:105.186998px;}
.x29_c01078{left:108.417869px;}
.x12_c01078{left:109.517760px;}
.x4_c01078{left:111.775500px;}
.x97_c01078{left:118.314903px;}
.xb0_c01078{left:124.514724px;}
.xaa_c01078{left:126.680498px;}
.xa3_c01078{left:127.725063px;}
.x1e_c01078{left:130.772262px;}
.x7d_c01078{left:132.446562px;}
.xd7_c01078{left:139.126652px;}
.x5a_c01078{left:146.485144px;}
.x36_c01078{left:150.890118px;}
.x5_c01078{left:155.407500px;}
.xb6_c01078{left:157.105113px;}
.x9f_c01078{left:161.176898px;}
.xd8_c01078{left:162.444810px;}
.x1f_c01078{left:163.697304px;}
.xca_c01078{left:165.243429px;}
.xbc_c01078{left:167.810843px;}
.x45_c01078{left:171.357396px;}
.x65_c01078{left:178.345145px;}
.xe6_c01078{left:181.596000px;}
.x37_c01078{left:183.443213px;}
.x90_c01078{left:185.139453px;}
.x13_c01078{left:187.258260px;}
.xb1_c01078{left:191.908263px;}
.x6_c01078{left:199.144500px;}
.xa0_c01078{left:204.176355px;}
.x20_c01078{left:207.135822px;}
.xb7_c01078{left:211.045119px;}
.x4e_c01078{left:213.621927px;}
.xd9_c01078{left:215.388313px;}
.x2a_c01078{left:216.681956px;}
.x38_c01078{left:217.982059px;}
.x14_c01078{left:220.199760px;}
.xbd_c01078{left:222.304416px;}
.xa4_c01078{left:225.708981px;}
.x7e_c01078{left:230.720352px;}
.x70_c01078{left:232.078695px;}
.x98_c01078{left:238.170927px;}
.xcb_c01078{left:239.360249px;}
.xda_c01078{left:249.778888px;}
.xd0_c01078{left:251.219414px;}
.x7_c01078{left:253.692000px;}
.x66_c01078{left:256.293362px;}
.x5b_c01078{left:257.309209px;}
.x2b_c01078{left:261.665369px;}
.x89_c01078{left:262.877062px;}
.x4f_c01078{left:268.374565px;}
.x7f_c01078{left:275.140766px;}
.xa5_c01078{left:281.255379px;}
.xbe_c01078{left:288.450420px;}
.x67_c01078{left:290.014472px;}
.x3a_c01078{left:292.483783px;}
.x8a_c01078{left:295.807948px;}
.x77_c01078{left:297.058677px;}
.xb8_c01078{left:298.998078px;}
.xab_c01078{left:302.301701px;}
.xdf_c01078{left:304.025298px;}
.xd1_c01078{left:305.995583px;}
.x80_c01078{left:307.061907px;}
.xc4_c01078{left:308.830286px;}
.x46_c01078{left:313.748268px;}
.x21_c01078{left:317.293554px;}
.x78_c01078{left:320.769443px;}
.x5c_c01078{left:321.916362px;}
.xe7_c01078{left:325.000500px;}
.x15_c01078{left:329.147760px;}
.x8_c01078{left:330.796500px;}
.x50_c01078{left:335.043708px;}
.xe0_c01078{left:337.293497px;}
.x99_c01078{left:338.302195px;}
.xc5_c01078{left:341.345241px;}
.x5d_c01078{left:345.620499px;}
.x47_c01078{left:347.869788px;}
.x2c_c01078{left:349.414319px;}
.x91_c01078{left:350.474329px;}
.x16_c01078{left:352.103760px;}
.x71_c01078{left:354.237603px;}
.x22_c01078{left:361.566736px;}
.xac_c01078{left:363.122042px;}
.x9_c01078{left:364.170000px;}
.xbf_c01078{left:365.311251px;}
.xb9_c01078{left:366.841167px;}
.xe8_c01078{left:368.796000px;}
.x3b_c01078{left:370.154035px;}
.x81_c01078{left:374.848836px;}
.x68_c01078{left:376.826060px;}
.x51_c01078{left:380.109718px;}
.x17_c01078{left:385.234260px;}
.xe9_c01078{left:390.963000px;}
.x39_c01078{left:392.315846px;}
.x1_c01078{left:394.200000px;}
.x72_c01078{left:397.805195px;}
.x3c_c01078{left:402.798858px;}
.x8b_c01078{left:405.798020px;}
.x69_c01078{left:409.859250px;}
.x5e_c01078{left:412.223707px;}
.x9a_c01078{left:415.418003px;}
.x2_c01078{left:416.610000px;}
.xa_c01078{left:419.395500px;}
.xea_c01078{left:423.649500px;}
.xe1_c01078{left:425.241960px;}
.x2d_c01078{left:427.592061px;}
.x3d_c01078{left:437.051571px;}
.x23_c01078{left:438.357369px;}
.x18_c01078{left:440.990760px;}
.x6a_c01078{left:444.119874px;}
.x48_c01078{left:445.407194px;}
.x9b_c01078{left:447.264125px;}
.xcc_c01078{left:449.974424px;}
.x79_c01078{left:451.447634px;}
.xb_c01078{left:452.772000px;}
.x52_c01078{left:456.048960px;}
.x2e_c01078{left:460.888289px;}
.x3_c01078{left:461.970000px;}
.xc0_c01078{left:464.015948px;}
.xa1_c01078{left:468.021746px;}
.x92_c01078{left:470.566945px;}
.x19_c01078{left:473.557260px;}
.x8c_c01078{left:483.238044px;}
.x82_c01078{left:485.170796px;}
.xc_c01078{left:487.095000px;}
.x53_c01078{left:489.363302px;}
.x2f_c01078{left:494.361339px;}
.x24_c01078{left:506.128530px;}
.x1a_c01078{left:507.349260px;}
.x5f_c01078{left:510.584316px;}
.xe2_c01078{left:512.887727px;}
.x8d_c01078{left:515.939512px;}
.xc1_c01078{left:518.060849px;}
.x73_c01078{left:519.965601px;}
.x54_c01078{left:522.614706px;}
.x49_c01078{left:524.121387px;}
.xdb_c01078{left:525.436954px;}
.x60_c01078{left:532.428760px;}
.x9c_c01078{left:536.297502px;}
.xd2_c01078{left:537.378968px;}
.xb2_c01078{left:544.764553px;}
.xeb_c01078{left:545.796000px;}
.x3e_c01078{left:547.204808px;}
.x93_c01078{left:548.852790px;}
.xcd_c01078{left:549.879418px;}
.xd_c01078{left:553.002000px;}
.x6b_c01078{left:554.291984px;}
.x4a_c01078{left:556.395095px;}
.xdc_c01078{left:559.730127px;}
.x25_c01078{left:561.255348px;}
.xa6_c01078{left:567.572276px;}
.x9d_c01078{left:568.952814px;}
.x30_c01078{left:570.474100px;}
.x1b_c01078{left:573.526260px;}
.x3f_c01078{left:580.369610px;}
.xc6_c01078{left:584.254864px;}
.x6c_c01078{left:587.576976px;}
.x4b_c01078{left:589.609914px;}
.x26_c01078{left:594.911658px;}
.x61_c01078{left:598.847653px;}
.x31_c01078{left:604.655990px;}
.xe_c01078{left:606.780000px;}
.xa7_c01078{left:612.925876px;}
.x83_c01078{left:617.008299px;}
.x62_c01078{left:620.588647px;}
.x40_c01078{left:623.046890px;}
.xd3_c01078{left:625.018740px;}
.xc7_c01078{left:628.345564px;}
.x6d_c01078{left:630.648577px;}
.x9e_c01078{left:636.196503px;}
.x32_c01078{left:637.565604px;}
.x84_c01078{left:638.771150px;}
.x1c_c01078{left:640.528260px;}
.xb3_c01078{left:642.387333px;}
.x55_c01078{left:644.902674px;}
.xd4_c01078{left:648.453782px;}
.xad_c01078{left:654.461299px;}
.xe3_c01078{left:658.059410px;}
.x94_c01078{left:660.177723px;}
.xc2_c01078{left:662.477287px;}
.x27_c01078{left:672.379613px;}
.x74_c01078{left:675.474248px;}
.x56_c01078{left:677.269964px;}
.x4c_c01078{left:679.262847px;}
.x8e_c01078{left:682.853505px;}
.xf_c01078{left:685.198500px;}
.xa8_c01078{left:689.915810px;}
.x33_c01078{left:691.949395px;}
.x7a_c01078{left:696.196140px;}
.x63_c01078{left:699.157810px;}
.xa2_c01078{left:700.533501px;}
.x41_c01078{left:702.250107px;}
.xce_c01078{left:705.001142px;}
.x6e_c01078{left:708.978966px;}
.x34_c01078{left:715.364226px;}
.x1d_c01078{left:717.883260px;}
.xb4_c01078{left:720.447195px;}
.x42_c01078{left:723.726609px;}
.x85_c01078{left:726.215213px;}
.x10_c01078{left:729.426000px;}
.x57_c01078{left:733.297879px;}
.x86_c01078{left:740.760000px;}
.x75_c01078{left:741.984860px;}
.xc8_c01078{left:751.560015px;}
.x43_c01078{left:757.624177px;}
.x95_c01078{left:760.202169px;}
.x6f_c01078{left:764.990453px;}
.xae_c01078{left:768.166591px;}
.x35_c01078{left:770.405907px;}
.x8f_c01078{left:772.907833px;}
.x11_c01078{left:774.657000px;}
.xba_c01078{left:775.799799px;}
.x58_c01078{left:777.990763px;}
.xdd_c01078{left:779.664972px;}
.xd5_c01078{left:780.864238px;}
.x87_c01078{left:783.997719px;}
.x76_c01078{left:786.219338px;}
.xe4_c01078{left:791.383951px;}
.x28_c01078{left:794.660209px;}
.x7b_c01078{left:796.483253px;}
.xc3_c01078{left:817.591518px;}
.xd6_c01078{left:843.480000px;}
@media print{
.v0_c01078{vertical-align:0.000000pt;}
.ls0_c01078{letter-spacing:0.000000pt;}
.ws0_c01078{word-spacing:0.000000pt;}
.fs15_c01078{font-size:21.333333pt;}
.fs14_c01078{font-size:48.000000pt;}
.fs0_c01078{font-size:58.666667pt;}
.fs3_c01078{font-size:63.968792pt;}
.fsc_c01078{font-size:63.973018pt;}
.fs8_c01078{font-size:63.977500pt;}
.fsd_c01078{font-size:63.979837pt;}
.fsf_c01078{font-size:63.982238pt;}
.fs13_c01078{font-size:63.989823pt;}
.fsa_c01078{font-size:64.012863pt;}
.fs18_c01078{font-size:64.021628pt;}
.fs2_c01078{font-size:64.028794pt;}
.fs4_c01078{font-size:69.299525pt;}
.fs7_c01078{font-size:69.308958pt;}
.fs16_c01078{font-size:69.319500pt;}
.fs11_c01078{font-size:69.322308pt;}
.fs1_c01078{font-size:69.364526pt;}
.fsb_c01078{font-size:74.635188pt;}
.fs5_c01078{font-size:74.640417pt;}
.fs10_c01078{font-size:74.654794pt;}
.fs12_c01078{font-size:74.674506pt;}
.fs6_c01078{font-size:79.971875pt;}
.fse_c01078{font-size:79.974796pt;}
.fs17_c01078{font-size:85.316308pt;}
.fs9_c01078{font-size:90.634792pt;}
.y0_c01078{bottom:0.000000pt;}
.y158_c01078{bottom:37.001773pt;}
.y157_c01078{bottom:38.008840pt;}
.y156_c01078{bottom:39.300901pt;}
.y155_c01078{bottom:40.831781pt;}
.y154_c01078{bottom:41.587203pt;}
.y153_c01078{bottom:42.099507pt;}
.y152_c01078{bottom:43.111669pt;}
.y151_c01078{bottom:43.885811pt;}
.y150_c01078{bottom:45.652424pt;}
.y14f_c01078{bottom:46.425907pt;}
.y14e_c01078{bottom:47.711173pt;}
.y14d_c01078{bottom:48.729333pt;}
.y14c_c01078{bottom:72.061387pt;}
.y14b_c01078{bottom:75.637813pt;}
.y14a_c01078{bottom:76.806560pt;}
.y149_c01078{bottom:80.400640pt;}
.y148_c01078{bottom:81.973387pt;}
.y147_c01078{bottom:85.092800pt;}
.y146_c01078{bottom:88.222987pt;}
.y145_c01078{bottom:89.407040pt;}
.y144_c01078{bottom:92.594400pt;}
.y143_c01078{bottom:94.494080pt;}
.y142_c01078{bottom:95.673920pt;}
.y141_c01078{bottom:97.218667pt;}
.y140_c01078{bottom:104.906560pt;}
.y13f_c01078{bottom:106.839200pt;}
.y13e_c01078{bottom:108.013707pt;}
.y13d_c01078{bottom:109.990133pt;}
.y13c_c01078{bottom:112.734293pt;}
.y13b_c01078{bottom:113.954827pt;}
.y13a_c01078{bottom:116.671360pt;}
.y139_c01078{bottom:119.471147pt;}
.y138_c01078{bottom:122.649653pt;}
.y137_c01078{bottom:123.765813pt;}
.y136_c01078{bottom:124.989813pt;}
.y135_c01078{bottom:126.874133pt;}
.y134_c01078{bottom:127.704053pt;}
.y133_c01078{bottom:129.618667pt;}
.y132_c01078{bottom:134.281333pt;}
.y131_c01078{bottom:137.040000pt;}
.y12f_c01078{bottom:138.335359pt;}
.y12e_c01078{bottom:143.165815pt;}
.y12d_c01078{bottom:144.020747pt;}
.y12c_c01078{bottom:146.044343pt;}
.y12b_c01078{bottom:147.217927pt;}
.y12a_c01078{bottom:151.236911pt;}
.y129_c01078{bottom:152.467895pt;}
.y128_c01078{bottom:154.107785pt;}
.y127_c01078{bottom:155.659007pt;}
.y126_c01078{bottom:157.657292pt;}
.y125_c01078{bottom:160.046827pt;}
.y124_c01078{bottom:162.486327pt;}
.y123_c01078{bottom:163.692000pt;}
.y130_c01078{bottom:164.756000pt;}
.y122_c01078{bottom:173.467689pt;}
.y121_c01078{bottom:174.871736pt;}
.y120_c01078{bottom:177.703580pt;}
.y11f_c01078{bottom:179.954817pt;}
.y11e_c01078{bottom:182.756581pt;}
.y11d_c01078{bottom:184.132804pt;}
.y11c_c01078{bottom:188.796395pt;}
.y11b_c01078{bottom:192.940604pt;}
.y11a_c01078{bottom:194.664000pt;}
.y119_c01078{bottom:225.253960pt;}
.y118_c01078{bottom:225.255781pt;}
.y117_c01078{bottom:225.258999pt;}
.y116_c01078{bottom:238.359275pt;}
.y115_c01078{bottom:239.414211pt;}
.y114_c01078{bottom:242.197804pt;}
.y113_c01078{bottom:243.571447pt;}
.y112_c01078{bottom:244.283027pt;}
.y111_c01078{bottom:246.682309pt;}
.y110_c01078{bottom:247.690188pt;}
.y10f_c01078{bottom:250.423116pt;}
.y10e_c01078{bottom:251.137464pt;}
.y10d_c01078{bottom:252.150188pt;}
.y10c_c01078{bottom:253.550592pt;}
.y10b_c01078{bottom:254.903119pt;}
.y10a_c01078{bottom:258.980687pt;}
.y109_c01078{bottom:266.641989pt;}
.y108_c01078{bottom:267.797533pt;}
.y107_c01078{bottom:271.093277pt;}
.y106_c01078{bottom:272.300700pt;}
.y105_c01078{bottom:273.133164pt;}
.y104_c01078{bottom:277.569145pt;}
.y103_c01078{bottom:279.540753pt;}
.y102_c01078{bottom:283.141592pt;}
.y101_c01078{bottom:284.798156pt;}
.y100_c01078{bottom:287.219999pt;}
.yff_c01078{bottom:289.218667pt;}
.yfe_c01078{bottom:315.758679pt;}
.yfd_c01078{bottom:316.474107pt;}
.yfc_c01078{bottom:317.946039pt;}
.yfb_c01078{bottom:319.158087pt;}
.yfa_c01078{bottom:320.899071pt;}
.yf9_c01078{bottom:330.872235pt;}
.yf8_c01078{bottom:332.991099pt;}
.yf7_c01078{bottom:334.098795pt;}
.yf6_c01078{bottom:335.125371pt;}
.yf5_c01078{bottom:336.898203pt;}
.yf4_c01078{bottom:341.518299pt;}
.yf3_c01078{bottom:343.972011pt;}
.yf2_c01078{bottom:346.145163pt;}
.yf1_c01078{bottom:348.962475pt;}
.yf0_c01078{bottom:350.690283pt;}
.yef_c01078{bottom:352.814667pt;}
.yee_c01078{bottom:364.470587pt;}
.yed_c01078{bottom:365.215488pt;}
.yec_c01078{bottom:367.109915pt;}
.yeb_c01078{bottom:368.923477pt;}
.yea_c01078{bottom:370.410696pt;}
.ye9_c01078{bottom:371.222832pt;}
.ye8_c01078{bottom:382.341328pt;}
.ye7_c01078{bottom:384.620011pt;}
.ye6_c01078{bottom:385.693333pt;}
.ye5_c01078{bottom:396.267663pt;}
.ye4_c01078{bottom:398.992293pt;}
.ye3_c01078{bottom:399.708268pt;}
.ye2_c01078{bottom:401.370604pt;}
.ye1_c01078{bottom:402.355791pt;}
.ye0_c01078{bottom:405.715193pt;}
.ydf_c01078{bottom:408.522063pt;}
.yde_c01078{bottom:409.390921pt;}
.ydd_c01078{bottom:410.362985pt;}
.ydc_c01078{bottom:412.706319pt;}
.ydb_c01078{bottom:415.676580pt;}
.yda_c01078{bottom:416.664480pt;}
.yd9_c01078{bottom:427.766453pt;}
.yd8_c01078{bottom:429.224401pt;}
.yd7_c01078{bottom:431.759049pt;}
.yd6_c01078{bottom:433.252172pt;}
.yd5_c01078{bottom:435.810155pt;}
.yd4_c01078{bottom:437.232632pt;}
.yd3_c01078{bottom:442.678243pt;}
.yd2_c01078{bottom:444.506931pt;}
.yd1_c01078{bottom:447.732739pt;}
.yd0_c01078{bottom:448.816000pt;}
.ycf_c01078{bottom:462.464653pt;}
.yce_c01078{bottom:464.123355pt;}
.ycd_c01078{bottom:464.808387pt;}
.ycc_c01078{bottom:467.462200pt;}
.ycb_c01078{bottom:469.498709pt;}
.yca_c01078{bottom:471.068965pt;}
.yc9_c01078{bottom:473.141243pt;}
.yc8_c01078{bottom:474.145739pt;}
.yc7_c01078{bottom:474.828277pt;}
.yc6_c01078{bottom:477.480685pt;}
.yc5_c01078{bottom:478.781525pt;}
.yc4_c01078{bottom:480.746952pt;}
.yc3_c01078{bottom:494.093115pt;}
.yc2_c01078{bottom:496.765424pt;}
.yc1_c01078{bottom:498.799712pt;}
.yc0_c01078{bottom:499.787616pt;}
.ybf_c01078{bottom:502.481096pt;}
.ybe_c01078{bottom:503.444520pt;}
.ybd_c01078{bottom:504.808373pt;}
.ybc_c01078{bottom:505.777464pt;}
.ybb_c01078{bottom:508.087787pt;}
.yba_c01078{bottom:508.806683pt;}
.yb9_c01078{bottom:511.423051pt;}
.yb8_c01078{bottom:512.432624pt;}
.yb7_c01078{bottom:513.130667pt;}
.yb6_c01078{bottom:525.122363pt;}
.yb5_c01078{bottom:527.233932pt;}
.yb4_c01078{bottom:528.238933pt;}
.yb3_c01078{bottom:531.706664pt;}
.yb2_c01078{bottom:532.749124pt;}
.yb1_c01078{bottom:534.145161pt;}
.yb0_c01078{bottom:535.126101pt;}
.yaf_c01078{bottom:537.887004pt;}
.yae_c01078{bottom:538.949892pt;}
.yad_c01078{bottom:541.994671pt;}
.yac_c01078{bottom:543.037915pt;}
.yab_c01078{bottom:545.793551pt;}
.yaa_c01078{bottom:555.708047pt;}
.ya9_c01078{bottom:557.219513pt;}
.ya8_c01078{bottom:558.672992pt;}
.ya7_c01078{bottom:560.150713pt;}
.ya6_c01078{bottom:561.241404pt;}
.ya5_c01078{bottom:564.170473pt;}
.ya4_c01078{bottom:565.247741pt;}
.ya3_c01078{bottom:567.797569pt;}
.ya2_c01078{bottom:570.298048pt;}
.ya1_c01078{bottom:571.419399pt;}
.ya0_c01078{bottom:572.503999pt;}
.y9f_c01078{bottom:573.922491pt;}
.y9e_c01078{bottom:575.737973pt;}
.y9d_c01078{bottom:577.956065pt;}
.y9c_c01078{bottom:586.384205pt;}
.y9b_c01078{bottom:588.269333pt;}
.y9a_c01078{bottom:590.620239pt;}
.y99_c01078{bottom:592.161327pt;}
.y98_c01078{bottom:593.110491pt;}
.y97_c01078{bottom:593.730243pt;}
.y96_c01078{bottom:597.485127pt;}
.y95_c01078{bottom:600.626847pt;}
.y94_c01078{bottom:602.556795pt;}
.y93_c01078{bottom:603.465927pt;}
.y92_c01078{bottom:604.731423pt;}
.y91_c01078{bottom:607.529895pt;}
.y90_c01078{bottom:608.486943pt;}
.y8f_c01078{bottom:618.135591pt;}
.y8e_c01078{bottom:620.276679pt;}
.y8d_c01078{bottom:621.347991pt;}
.y8c_c01078{bottom:624.209079pt;}
.y8b_c01078{bottom:628.480983pt;}
.y8a_c01078{bottom:629.187783pt;}
.y89_c01078{bottom:633.373671pt;}
.y88_c01078{bottom:634.133175pt;}
.y87_c01078{bottom:637.680135pt;}
.y86_c01078{bottom:640.401207pt;}
.y85_c01078{bottom:651.942315pt;}
.y84_c01078{bottom:653.241867pt;}
.y83_c01078{bottom:655.194951pt;}
.y82_c01078{bottom:656.797491pt;}
.y81_c01078{bottom:659.761419pt;}
.y80_c01078{bottom:660.728163pt;}
.y7f_c01078{bottom:663.349035pt;}
.y7e_c01078{bottom:664.628559pt;}
.y7d_c01078{bottom:665.600679pt;}
.y7c_c01078{bottom:667.569231pt;}
.y7b_c01078{bottom:668.216127pt;}
.y7a_c01078{bottom:670.460379pt;}
.y79_c01078{bottom:672.069363pt;}
.y78_c01078{bottom:685.312035pt;}
.y77_c01078{bottom:686.907471pt;}
.y76_c01078{bottom:689.137803pt;}
.y75_c01078{bottom:690.364095pt;}
.y74_c01078{bottom:691.311579pt;}
.y73_c01078{bottom:694.448499pt;}
.y72_c01078{bottom:695.424567pt;}
.y71_c01078{bottom:696.365319pt;}
.y70_c01078{bottom:698.837979pt;}
.y6f_c01078{bottom:699.798099pt;}
.y6e_c01078{bottom:702.017523pt;}
.y6d_c01078{bottom:704.214555pt;}
.y6c_c01078{bottom:716.268843pt;}
.y6b_c01078{bottom:717.312339pt;}
.y6a_c01078{bottom:719.759715pt;}
.y69_c01078{bottom:720.437451pt;}
.y68_c01078{bottom:722.506299pt;}
.y67_c01078{bottom:723.186015pt;}
.y66_c01078{bottom:726.248679pt;}
.y65_c01078{bottom:728.323431pt;}
.y64_c01078{bottom:729.061383pt;}
.y63_c01078{bottom:731.073531pt;}
.y62_c01078{bottom:734.524755pt;}
.y61_c01078{bottom:735.884943pt;}
.y60_c01078{bottom:747.279483pt;}
.y5f_c01078{bottom:748.671075pt;}
.y5e_c01078{bottom:750.416415pt;}
.y5d_c01078{bottom:751.423863pt;}
.y5c_c01078{bottom:754.189131pt;}
.y5b_c01078{bottom:755.232963pt;}
.y5a_c01078{bottom:756.268731pt;}
.y59_c01078{bottom:757.306515pt;}
.y58_c01078{bottom:759.670983pt;}
.y57_c01078{bottom:761.074527pt;}
.y56_c01078{bottom:763.151391pt;}
.y55_c01078{bottom:764.857215pt;}
.y54_c01078{bottom:768.276123pt;}
.y53_c01078{bottom:781.016367pt;}
.y52_c01078{bottom:783.326379pt;}
.y51_c01078{bottom:785.959407pt;}
.y50_c01078{bottom:786.935319pt;}
.y4f_c01078{bottom:787.882419pt;}
.y4e_c01078{bottom:790.194399pt;}
.y4d_c01078{bottom:791.473731pt;}
.y4c_c01078{bottom:793.058643pt;}
.y4b_c01078{bottom:794.060931pt;}
.y4a_c01078{bottom:798.241887pt;}
.y49_c01078{bottom:800.185407pt;}
.y48_c01078{bottom:812.356347pt;}
.y47_c01078{bottom:813.442155pt;}
.y46_c01078{bottom:814.130091pt;}
.y45_c01078{bottom:816.667131pt;}
.y44_c01078{bottom:818.034171pt;}
.y43_c01078{bottom:819.096507pt;}
.y42_c01078{bottom:822.624939pt;}
.y41_c01078{bottom:823.722123pt;}
.y40_c01078{bottom:824.767803pt;}
.y3f_c01078{bottom:827.255739pt;}
.y3e_c01078{bottom:829.694667pt;}
.y3d_c01078{bottom:855.263872pt;}
.y3c_c01078{bottom:856.334381pt;}
.y3b_c01078{bottom:857.147607pt;}
.y3a_c01078{bottom:859.608981pt;}
.y39_c01078{bottom:860.469733pt;}
.y38_c01078{bottom:861.280612pt;}
.y37_c01078{bottom:862.358536pt;}
.y36_c01078{bottom:875.524655pt;}
.y35_c01078{bottom:877.042517pt;}
.y34_c01078{bottom:877.687872pt;}
.y33_c01078{bottom:879.188336pt;}
.y32_c01078{bottom:880.096035pt;}
.y31_c01078{bottom:881.038625pt;}
.y30_c01078{bottom:883.137776pt;}
.y2f_c01078{bottom:884.061517pt;}
.y2e_c01078{bottom:884.980224pt;}
.y2d_c01078{bottom:885.903496pt;}
.y2c_c01078{bottom:887.136837pt;}
.y2b_c01078{bottom:889.557971pt;}
.y2a_c01078{bottom:890.798779pt;}
.y29_c01078{bottom:893.785371pt;}
.y28_c01078{bottom:906.166848pt;}
.y27_c01078{bottom:909.648533pt;}
.y26_c01078{bottom:911.854272pt;}
.y25_c01078{bottom:912.812565pt;}
.y24_c01078{bottom:914.382187pt;}
.y23_c01078{bottom:916.311829pt;}
.y22_c01078{bottom:918.498283pt;}
.y21_c01078{bottom:919.758869pt;}
.y20_c01078{bottom:922.895381pt;}
.y1f_c01078{bottom:924.132203pt;}
.y1e_c01078{bottom:925.069675pt;}
.y1d_c01078{bottom:925.688000pt;}
.y1c_c01078{bottom:940.893693pt;}
.y1b_c01078{bottom:942.956493pt;}
.y1a_c01078{bottom:943.871773pt;}
.y19_c01078{bottom:944.743213pt;}
.y18_c01078{bottom:946.507933pt;}
.y17_c01078{bottom:947.409053pt;}
.y16_c01078{bottom:948.277493pt;}
.y15_c01078{bottom:949.764333pt;}
.y14_c01078{bottom:950.647813pt;}
.y13_c01078{bottom:951.259973pt;}
.y12_c01078{bottom:954.165253pt;}
.y11_c01078{bottom:955.043693pt;}
.y10_c01078{bottom:957.116773pt;}
.yf_c01078{bottom:971.371160pt;}
.ye_c01078{bottom:972.577320pt;}
.yd_c01078{bottom:973.756720pt;}
.yc_c01078{bottom:975.847880pt;}
.yb_c01078{bottom:977.281960pt;}
.ya_c01078{bottom:979.039480pt;}
.y9_c01078{bottom:979.954760pt;}
.y8_c01078{bottom:980.844800pt;}
.y7_c01078{bottom:982.317480pt;}
.y6_c01078{bottom:983.207440pt;}
.y5_c01078{bottom:985.263560pt;}
.y4_c01078{bottom:986.718160pt;}
.y3_c01078{bottom:987.884480pt;}
.y2_c01078{bottom:989.048000pt;}
.y1_c01078{bottom:1053.256000pt;}
.h17_c01078{height:21.333333pt;}
.h16_c01078{height:48.000000pt;}
.h2_c01078{height:58.666667pt;}
.h5_c01078{height:63.968792pt;}
.he_c01078{height:63.973018pt;}
.ha_c01078{height:63.977500pt;}
.hf_c01078{height:63.979837pt;}
.h11_c01078{height:63.982238pt;}
.h15_c01078{height:63.989823pt;}
.hc_c01078{height:64.012863pt;}
.h1a_c01078{height:64.021628pt;}
.h4_c01078{height:64.028794pt;}
.h6_c01078{height:69.299525pt;}
.h9_c01078{height:69.308958pt;}
.h18_c01078{height:69.319500pt;}
.h13_c01078{height:69.322308pt;}
.h3_c01078{height:69.364526pt;}
.hd_c01078{height:74.635188pt;}
.h7_c01078{height:74.640417pt;}
.h12_c01078{height:74.654794pt;}
.h14_c01078{height:74.674506pt;}
.h8_c01078{height:79.971875pt;}
.h10_c01078{height:79.974796pt;}
.h19_c01078{height:85.316308pt;}
.hb_c01078{height:90.634792pt;}
.h0_c01078{height:1107.840000pt;}
.h1_c01078{height:1108.000000pt;}
.w1_c01078{width:787.333333pt;}
.w0_c01078{width:787.440000pt;}
.x0_c01078{left:0.000000pt;}
.xe5_c01078{left:72.825333pt;}
.xde_c01078{left:75.149333pt;}
.xcf_c01078{left:76.265333pt;}
.xc9_c01078{left:78.013529pt;}
.xbb_c01078{left:79.608573pt;}
.xb5_c01078{left:80.697333pt;}
.xaf_c01078{left:82.462667pt;}
.xa9_c01078{left:83.590720pt;}
.x96_c01078{left:84.658667pt;}
.x88_c01078{left:86.498628pt;}
.x7c_c01078{left:87.841205pt;}
.x64_c01078{left:89.937113pt;}
.x59_c01078{left:91.390481pt;}
.x4d_c01078{left:92.309657pt;}
.x44_c01078{left:93.499553pt;}
.x29_c01078{left:96.371439pt;}
.x12_c01078{left:97.349120pt;}
.x4_c01078{left:99.356000pt;}
.x97_c01078{left:105.168803pt;}
.xb0_c01078{left:110.679755pt;}
.xaa_c01078{left:112.604887pt;}
.xa3_c01078{left:113.533389pt;}
.x1e_c01078{left:116.242011pt;}
.x7d_c01078{left:117.730277pt;}
.xd7_c01078{left:123.668135pt;}
.x5a_c01078{left:130.209017pt;}
.x36_c01078{left:134.124549pt;}
.x5_c01078{left:138.140000pt;}
.xb6_c01078{left:139.648989pt;}
.x9f_c01078{left:143.268353pt;}
.xd8_c01078{left:144.395387pt;}
.x1f_c01078{left:145.508715pt;}
.xca_c01078{left:146.883048pt;}
.xbc_c01078{left:149.165193pt;}
.x45_c01078{left:152.317685pt;}
.x65_c01078{left:158.529017pt;}
.xe6_c01078{left:161.418667pt;}
.x37_c01078{left:163.060633pt;}
.x90_c01078{left:164.568403pt;}
.x13_c01078{left:166.451787pt;}
.xb1_c01078{left:170.585123pt;}
.x6_c01078{left:177.017333pt;}
.xa0_c01078{left:181.490093pt;}
.x20_c01078{left:184.120731pt;}
.xb7_c01078{left:187.595661pt;}
.x4e_c01078{left:189.886157pt;}
.xd9_c01078{left:191.456279pt;}
.x2a_c01078{left:192.606183pt;}
.x38_c01078{left:193.761831pt;}
.x14_c01078{left:195.733120pt;}
.xbd_c01078{left:197.603925pt;}
.xa4_c01078{left:200.630205pt;}
.x7e_c01078{left:205.084757pt;}
.x70_c01078{left:206.292173pt;}
.x98_c01078{left:211.707491pt;}
.xcb_c01078{left:212.764665pt;}
.xda_c01078{left:222.025679pt;}
.xd0_c01078{left:223.306145pt;}
.x7_c01078{left:225.504000pt;}
.x66_c01078{left:227.816321pt;}
.x5b_c01078{left:228.719297pt;}
.x2b_c01078{left:232.591439pt;}
.x89_c01078{left:233.668500pt;}
.x4f_c01078{left:238.555169pt;}
.x7f_c01078{left:244.569569pt;}
.xa5_c01078{left:250.004781pt;}
.xbe_c01078{left:256.400373pt;}
.x67_c01078{left:257.790641pt;}
.x3a_c01078{left:259.985585pt;}
.x8a_c01078{left:262.940399pt;}
.x77_c01078{left:264.052157pt;}
.xb8_c01078{left:265.776069pt;}
.xab_c01078{left:268.712623pt;}
.xdf_c01078{left:270.244709pt;}
.xd1_c01078{left:271.996073pt;}
.x80_c01078{left:272.943917pt;}
.xc4_c01078{left:274.515809pt;}
.x46_c01078{left:278.887349pt;}
.x21_c01078{left:282.038715pt;}
.x78_c01078{left:285.128393pt;}
.x5c_c01078{left:286.147877pt;}
.xe7_c01078{left:288.889333pt;}
.x15_c01078{left:292.575787pt;}
.x8_c01078{left:294.041333pt;}
.x50_c01078{left:297.816629pt;}
.xe0_c01078{left:299.816441pt;}
.x99_c01078{left:300.713063pt;}
.xc5_c01078{left:303.417992pt;}
.x5d_c01078{left:307.218221pt;}
.x47_c01078{left:309.217589pt;}
.x2c_c01078{left:310.590505pt;}
.x91_c01078{left:311.532737pt;}
.x16_c01078{left:312.981120pt;}
.x71_c01078{left:314.877869pt;}
.x22_c01078{left:321.392655pt;}
.xac_c01078{left:322.775148pt;}
.x9_c01078{left:323.706667pt;}
.xbf_c01078{left:324.721112pt;}
.xb9_c01078{left:326.081037pt;}
.xe8_c01078{left:327.818667pt;}
.x3b_c01078{left:329.025809pt;}
.x81_c01078{left:333.198965pt;}
.x68_c01078{left:334.956497pt;}
.x51_c01078{left:337.875305pt;}
.x17_c01078{left:342.430453pt;}
.xe9_c01078{left:347.522667pt;}
.x39_c01078{left:348.725196pt;}
.x1_c01078{left:350.400000pt;}
.x72_c01078{left:353.604617pt;}
.x3c_c01078{left:358.043429pt;}
.x8b_c01078{left:360.709351pt;}
.x69_c01078{left:364.319333pt;}
.x5e_c01078{left:366.421073pt;}
.x9a_c01078{left:369.260447pt;}
.x2_c01078{left:370.320000pt;}
.xa_c01078{left:372.796000pt;}
.xea_c01078{left:376.577333pt;}
.xe1_c01078{left:377.992853pt;}
.x2d_c01078{left:380.081832pt;}
.x3d_c01078{left:388.490285pt;}
.x23_c01078{left:389.650995pt;}
.x18_c01078{left:391.991787pt;}
.x6a_c01078{left:394.773221pt;}
.x48_c01078{left:395.917505pt;}
.x9b_c01078{left:397.568111pt;}
.xcc_c01078{left:399.977265pt;}
.x79_c01078{left:401.286785pt;}
.xb_c01078{left:402.464000pt;}
.x52_c01078{left:405.376853pt;}
.x2e_c01078{left:409.678479pt;}
.x3_c01078{left:410.640000pt;}
.xc0_c01078{left:412.458620pt;}
.xa1_c01078{left:416.019329pt;}
.x92_c01078{left:418.281729pt;}
.x19_c01078{left:420.939787pt;}
.x8c_c01078{left:429.544928pt;}
.x82_c01078{left:431.262929pt;}
.xc_c01078{left:432.973333pt;}
.x53_c01078{left:434.989601pt;}
.x2f_c01078{left:439.432301pt;}
.x24_c01078{left:449.892027pt;}
.x1a_c01078{left:450.977120pt;}
.x5f_c01078{left:453.852725pt;}
.xe2_c01078{left:455.900201pt;}
.x8d_c01078{left:458.612900pt;}
.xc1_c01078{left:460.498532pt;}
.x73_c01078{left:462.191645pt;}
.x54_c01078{left:464.546405pt;}
.x49_c01078{left:465.885677pt;}
.xdb_c01078{left:467.055071pt;}
.x60_c01078{left:473.270009pt;}
.x9c_c01078{left:476.708891pt;}
.xd2_c01078{left:477.670193pt;}
.xb2_c01078{left:484.235159pt;}
.xeb_c01078{left:485.152000pt;}
.x3e_c01078{left:486.404273pt;}
.x93_c01078{left:487.869147pt;}
.xcd_c01078{left:488.781705pt;}
.xd_c01078{left:491.557333pt;}
.x6b_c01078{left:492.703985pt;}
.x4a_c01078{left:494.573417pt;}
.xdc_c01078{left:497.537891pt;}
.x25_c01078{left:498.893643pt;}
.xa6_c01078{left:504.508689pt;}
.x9d_c01078{left:505.735835pt;}
.x30_c01078{left:507.088089pt;}
.x1b_c01078{left:509.801120pt;}
.x3f_c01078{left:515.884097pt;}
.xc6_c01078{left:519.337657pt;}
.x6c_c01078{left:522.290645pt;}
.x4b_c01078{left:524.097701pt;}
.x26_c01078{left:528.810363pt;}
.x61_c01078{left:532.309025pt;}
.x31_c01078{left:537.471991pt;}
.xe_c01078{left:539.360000pt;}
.xa7_c01078{left:544.823001pt;}
.x83_c01078{left:548.451821pt;}
.x62_c01078{left:551.634353pt;}
.x40_c01078{left:553.819457pt;}
.xd3_c01078{left:555.572213pt;}
.xc7_c01078{left:558.529391pt;}
.x6d_c01078{left:560.576513pt;}
.x9e_c01078{left:565.508003pt;}
.x32_c01078{left:566.724981pt;}
.x84_c01078{left:567.796577pt;}
.x1c_c01078{left:569.358453pt;}
.xb3_c01078{left:571.010963pt;}
.x55_c01078{left:573.246821pt;}
.xd4_c01078{left:576.403361pt;}
.xad_c01078{left:581.743377pt;}
.xe3_c01078{left:584.941697pt;}
.x94_c01078{left:586.824643pt;}
.xc2_c01078{left:588.868700pt;}
.x27_c01078{left:597.670767pt;}
.x74_c01078{left:600.421553pt;}
.x56_c01078{left:602.017745pt;}
.x4c_c01078{left:603.789197pt;}
.x8e_c01078{left:606.980893pt;}
.xf_c01078{left:609.065333pt;}
.xa8_c01078{left:613.258497pt;}
.x33_c01078{left:615.066129pt;}
.x7a_c01078{left:618.841013pt;}
.x63_c01078{left:621.473609pt;}
.xa2_c01078{left:622.696445pt;}
.x41_c01078{left:624.222317pt;}
.xce_c01078{left:626.667681pt;}
.x6e_c01078{left:630.203525pt;}
.x34_c01078{left:635.879312pt;}
.x1d_c01078{left:638.118453pt;}
.xb4_c01078{left:640.397507pt;}
.x42_c01078{left:643.312541pt;}
.x85_c01078{left:645.524633pt;}
.x10_c01078{left:648.378667pt;}
.x57_c01078{left:651.820337pt;}
.x86_c01078{left:658.453333pt;}
.x75_c01078{left:659.542097pt;}
.xc8_c01078{left:668.053347pt;}
.x43_c01078{left:673.443713pt;}
.x95_c01078{left:675.735261pt;}
.x6f_c01078{left:679.991513pt;}
.xae_c01078{left:682.814748pt;}
.x35_c01078{left:684.805251pt;}
.x8f_c01078{left:687.029185pt;}
.x11_c01078{left:688.584000pt;}
.xba_c01078{left:689.599821pt;}
.x58_c01078{left:691.547345pt;}
.xdd_c01078{left:693.035531pt;}
.xd5_c01078{left:694.101545pt;}
.x87_c01078{left:696.886861pt;}
.x76_c01078{left:698.861633pt;}
.xe4_c01078{left:703.452401pt;}
.x28_c01078{left:706.364631pt;}
.x7b_c01078{left:707.985113pt;}
.xc3_c01078{left:726.748016pt;}
.xd6_c01078{left:749.760000pt;}
}





/* 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_c01079 {
    display:none;
  }
  .loading-indicator_c01079.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01079 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_c01079 { 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_c01079" -> "#page-container .classname_c01079")
 */
.pf_c01079 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01079 { /* 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_c01079.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01079 { /* 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_c01079 { /* 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_c01079 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01079 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01079 {overflow:visible;}
  }
}
.c_c01079 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01079 { /* 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_c01079:after { /* webkit #35443 */
  content: '';
}
.t_c01079:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01079 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 */
}
.__c01079 { /* 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_c01079 { /* info for Javascript */
  display:none;
}
.l_c01079 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01079 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01079 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01079: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_c01079 {
    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_c01079.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01079.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_c01079 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01079{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01079;src:url('chunks/assets/font_fe3cd3c6b9706b260f6e1774.woff2')format("woff");}.ff1_c01079{font-family:ff1_c01079;line-height:1.000000;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;}
.m2_c01079{transform:matrix(0.150935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150935,0.000000,0.000000,0.250000,0,0);}
.m0_c01079{transform:matrix(0.555430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555430,0.000000,0.000000,0.250000,0,0);}
.m1_c01079{transform:matrix(0.900800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.900800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.900800,0.000000,0.000000,0.250000,0,0);}
.v0_c01079{vertical-align:0.000000px;}
.ls0_c01079{letter-spacing:0.000000px;}
.sc__c01079{text-shadow:none;}
.sc0_c01079{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__c01079{-webkit-text-stroke:0px transparent;}
.sc0_c01079{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01079{word-spacing:0.000000px;}
.fc0_c01079{color:transparent;}
.fs0_c01079{font-size:18.000000px;}
.fs1_c01079{font-size:84.000000px;}
.y0_c01079{bottom:0.000000px;}
.y2_c01079{bottom:207.892500px;}
.y1_c01079{bottom:224.502000px;}
.h2_c01079{height:18.000000px;}
.h3_c01079{height:84.000000px;}
.h0_c01079{height:1246.320000px;}
.h1_c01079{height:1246.500000px;}
.w1_c01079{width:885.750000px;}
.w0_c01079{width:885.870000px;}
.x0_c01079{left:0.000000px;}
.x2_c01079{left:405.000000px;}
.x1_c01079{left:456.300000px;}
.x3_c01079{left:519.210000px;}
@media print{
.v0_c01079{vertical-align:0.000000pt;}
.ls0_c01079{letter-spacing:0.000000pt;}
.ws0_c01079{word-spacing:0.000000pt;}
.fs0_c01079{font-size:16.000000pt;}
.fs1_c01079{font-size:74.666667pt;}
.y0_c01079{bottom:0.000000pt;}
.y2_c01079{bottom:184.793333pt;}
.y1_c01079{bottom:199.557333pt;}
.h2_c01079{height:16.000000pt;}
.h3_c01079{height:74.666667pt;}
.h0_c01079{height:1107.840000pt;}
.h1_c01079{height:1108.000000pt;}
.w1_c01079{width:787.333333pt;}
.w0_c01079{width:787.440000pt;}
.x0_c01079{left:0.000000pt;}
.x2_c01079{left:360.000000pt;}
.x1_c01079{left:405.600000pt;}
.x3_c01079{left:461.520000pt;}
}





/* 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_c01080 {
    display:none;
  }
  .loading-indicator_c01080.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01080 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_c01080 { 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_c01080" -> "#page-container .classname_c01080")
 */
.pf_c01080 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01080 { /* 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_c01080.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01080 { /* 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_c01080 { /* 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_c01080 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01080 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01080 {overflow:visible;}
  }
}
.c_c01080 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01080 { /* 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_c01080:after { /* webkit #35443 */
  content: '';
}
.t_c01080:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01080 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 */
}
.__c01080 { /* 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_c01080 { /* info for Javascript */
  display:none;
}
.l_c01080 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01080 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01080 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01080: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_c01080 {
    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_c01080.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01080.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_c01080 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01080{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01080;src:url('chunks/assets/font_7c6b9abe6ee2a268480c528b.woff2')format("woff");}.ff1_c01080{font-family:ff1_c01080;line-height:1.000000;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;}
.m4_c01080{transform:matrix(0.157202,0.002672,-0.004249,0.249964,0,0);-ms-transform:matrix(0.157202,0.002672,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.157202,0.002672,-0.004249,0.249964,0,0);}
.m9_c01080{transform:matrix(0.166946,0.002838,-0.004249,0.249964,0,0);-ms-transform:matrix(0.166946,0.002838,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.166946,0.002838,-0.004249,0.249964,0,0);}
.m6_c01080{transform:matrix(0.172170,0.002927,-0.004249,0.249964,0,0);-ms-transform:matrix(0.172170,0.002927,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.172170,0.002927,-0.004249,0.249964,0,0);}
.m26_c01080{transform:matrix(0.177303,0.003369,-0.004749,0.249955,0,0);-ms-transform:matrix(0.177303,0.003369,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.177303,0.003369,-0.004749,0.249955,0,0);}
.mb9_c01080{transform:matrix(0.181338,0.004533,-0.006248,0.249922,0,0);-ms-transform:matrix(0.181338,0.004533,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.181338,0.004533,-0.006248,0.249922,0,0);}
.m23_c01080{transform:matrix(0.183157,0.003480,-0.004749,0.249955,0,0);-ms-transform:matrix(0.183157,0.003480,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.183157,0.003480,-0.004749,0.249955,0,0);}
.mb6_c01080{transform:matrix(0.184117,0.004603,-0.006248,0.249922,0,0);-ms-transform:matrix(0.184117,0.004603,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.184117,0.004603,-0.006248,0.249922,0,0);}
.mbe_c01080{transform:matrix(0.185772,0.004644,-0.006248,0.249922,0,0);-ms-transform:matrix(0.185772,0.004644,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.185772,0.004644,-0.006248,0.249922,0,0);}
.m7b_c01080{transform:matrix(0.185877,0.004647,-0.006248,0.249922,0,0);-ms-transform:matrix(0.185877,0.004647,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.185877,0.004647,-0.006248,0.249922,0,0);}
.m123_c01080{transform:matrix(0.188811,0.004720,-0.006248,0.249922,0,0);-ms-transform:matrix(0.188811,0.004720,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.188811,0.004720,-0.006248,0.249922,0,0);}
.m131_c01080{transform:matrix(0.189276,0.004732,-0.006248,0.249922,0,0);-ms-transform:matrix(0.189276,0.004732,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.189276,0.004732,-0.006248,0.249922,0,0);}
.m138_c01080{transform:matrix(0.189636,0.004741,-0.006248,0.249922,0,0);-ms-transform:matrix(0.189636,0.004741,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.189636,0.004741,-0.006248,0.249922,0,0);}
.m89_c01080{transform:matrix(0.190126,0.004753,-0.006248,0.249922,0,0);-ms-transform:matrix(0.190126,0.004753,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.190126,0.004753,-0.006248,0.249922,0,0);}
.m133_c01080{transform:matrix(0.190770,0.004769,-0.006248,0.249922,0,0);-ms-transform:matrix(0.190770,0.004769,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.190770,0.004769,-0.006248,0.249922,0,0);}
.m111_c01080{transform:matrix(0.191155,0.004779,-0.006248,0.249922,0,0);-ms-transform:matrix(0.191155,0.004779,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.191155,0.004779,-0.006248,0.249922,0,0);}
.m7c_c01080{transform:matrix(0.191315,0.004783,-0.006248,0.249922,0,0);-ms-transform:matrix(0.191315,0.004783,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.191315,0.004783,-0.006248,0.249922,0,0);}
.m12f_c01080{transform:matrix(0.192175,0.004804,-0.006248,0.249922,0,0);-ms-transform:matrix(0.192175,0.004804,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.192175,0.004804,-0.006248,0.249922,0,0);}
.md3_c01080{transform:matrix(0.192525,0.004813,-0.006248,0.249922,0,0);-ms-transform:matrix(0.192525,0.004813,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.192525,0.004813,-0.006248,0.249922,0,0);}
.m7e_c01080{transform:matrix(0.193095,0.004827,-0.006248,0.249922,0,0);-ms-transform:matrix(0.193095,0.004827,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.193095,0.004827,-0.006248,0.249922,0,0);}
.m2c_c01080{transform:matrix(0.193545,0.003677,-0.004749,0.249955,0,0);-ms-transform:matrix(0.193545,0.003677,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.193545,0.003677,-0.004749,0.249955,0,0);}
.m33_c01080{transform:matrix(0.193735,0.003681,-0.004749,0.249955,0,0);-ms-transform:matrix(0.193735,0.003681,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.193735,0.003681,-0.004749,0.249955,0,0);}
.m7_c01080{transform:matrix(0.193867,0.003296,-0.004249,0.249964,0,0);-ms-transform:matrix(0.193867,0.003296,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.193867,0.003296,-0.004249,0.249964,0,0);}
.mbc_c01080{transform:matrix(0.193974,0.004849,-0.006248,0.249922,0,0);-ms-transform:matrix(0.193974,0.004849,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.193974,0.004849,-0.006248,0.249922,0,0);}
.m27_c01080{transform:matrix(0.194030,0.003687,-0.004749,0.249955,0,0);-ms-transform:matrix(0.194030,0.003687,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.194030,0.003687,-0.004749,0.249955,0,0);}
.mbf_c01080{transform:matrix(0.194104,0.004853,-0.006248,0.249922,0,0);-ms-transform:matrix(0.194104,0.004853,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.194104,0.004853,-0.006248,0.249922,0,0);}
.m13e_c01080{transform:matrix(0.195528,0.005475,-0.006997,0.249902,0,0);-ms-transform:matrix(0.195528,0.005475,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.195528,0.005475,-0.006997,0.249902,0,0);}
.m65_c01080{transform:matrix(0.195530,0.003715,-0.004749,0.249955,0,0);-ms-transform:matrix(0.195530,0.003715,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.195530,0.003715,-0.004749,0.249955,0,0);}
.m94_c01080{transform:matrix(0.195754,0.004894,-0.006248,0.249922,0,0);-ms-transform:matrix(0.195754,0.004894,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.195754,0.004894,-0.006248,0.249922,0,0);}
.m80_c01080{transform:matrix(0.196674,0.004917,-0.006248,0.249922,0,0);-ms-transform:matrix(0.196674,0.004917,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.196674,0.004917,-0.006248,0.249922,0,0);}
.m8e_c01080{transform:matrix(0.196734,0.004918,-0.006248,0.249922,0,0);-ms-transform:matrix(0.196734,0.004918,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.196734,0.004918,-0.006248,0.249922,0,0);}
.me4_c01080{transform:matrix(0.197713,0.004943,-0.006248,0.249922,0,0);-ms-transform:matrix(0.197713,0.004943,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.197713,0.004943,-0.006248,0.249922,0,0);}
.mb7_c01080{transform:matrix(0.199923,0.004998,-0.006248,0.249922,0,0);-ms-transform:matrix(0.199923,0.004998,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.199923,0.004998,-0.006248,0.249922,0,0);}
.m25_c01080{transform:matrix(0.200469,0.003809,-0.004749,0.249955,0,0);-ms-transform:matrix(0.200469,0.003809,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.200469,0.003809,-0.004749,0.249955,0,0);}
.m21_c01080{transform:matrix(0.201589,0.003830,-0.004749,0.249955,0,0);-ms-transform:matrix(0.201589,0.003830,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.201589,0.003830,-0.004749,0.249955,0,0);}
.m68_c01080{transform:matrix(0.202343,0.003845,-0.004749,0.249955,0,0);-ms-transform:matrix(0.202343,0.003845,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.202343,0.003845,-0.004749,0.249955,0,0);}
.m99_c01080{transform:matrix(0.202832,0.005071,-0.006248,0.249922,0,0);-ms-transform:matrix(0.202832,0.005071,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.202832,0.005071,-0.006248,0.249922,0,0);}
.m12e_c01080{transform:matrix(0.204106,0.005103,-0.006248,0.249922,0,0);-ms-transform:matrix(0.204106,0.005103,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.204106,0.005103,-0.006248,0.249922,0,0);}
.m28_c01080{transform:matrix(0.204438,0.003884,-0.004749,0.249955,0,0);-ms-transform:matrix(0.204438,0.003884,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.204438,0.003884,-0.004749,0.249955,0,0);}
.m118_c01080{transform:matrix(0.204541,0.005114,-0.006248,0.249922,0,0);-ms-transform:matrix(0.204541,0.005114,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.204541,0.005114,-0.006248,0.249922,0,0);}
.m83_c01080{transform:matrix(0.205026,0.005126,-0.006248,0.249922,0,0);-ms-transform:matrix(0.205026,0.005126,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.205026,0.005126,-0.006248,0.249922,0,0);}
.m61_c01080{transform:matrix(0.205073,0.003896,-0.004749,0.249955,0,0);-ms-transform:matrix(0.205073,0.003896,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.205073,0.003896,-0.004749,0.249955,0,0);}
.m29_c01080{transform:matrix(0.205148,0.003898,-0.004749,0.249955,0,0);-ms-transform:matrix(0.205148,0.003898,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.205148,0.003898,-0.004749,0.249955,0,0);}
.m7d_c01080{transform:matrix(0.205226,0.005131,-0.006248,0.249922,0,0);-ms-transform:matrix(0.205226,0.005131,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.205226,0.005131,-0.006248,0.249922,0,0);}
.mc0_c01080{transform:matrix(0.205621,0.005141,-0.006248,0.249922,0,0);-ms-transform:matrix(0.205621,0.005141,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.205621,0.005141,-0.006248,0.249922,0,0);}
.m132_c01080{transform:matrix(0.206520,0.005163,-0.006248,0.249922,0,0);-ms-transform:matrix(0.206520,0.005163,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.206520,0.005163,-0.006248,0.249922,0,0);}
.m8_c01080{transform:matrix(0.206690,0.003514,-0.004249,0.249964,0,0);-ms-transform:matrix(0.206690,0.003514,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.206690,0.003514,-0.004249,0.249964,0,0);}
.m11e_c01080{transform:matrix(0.207035,0.005176,-0.006248,0.249922,0,0);-ms-transform:matrix(0.207035,0.005176,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.207035,0.005176,-0.006248,0.249922,0,0);}
.m134_c01080{transform:matrix(0.207460,0.005187,-0.006248,0.249922,0,0);-ms-transform:matrix(0.207460,0.005187,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.207460,0.005187,-0.006248,0.249922,0,0);}
.m96_c01080{transform:matrix(0.208115,0.005203,-0.006248,0.249922,0,0);-ms-transform:matrix(0.208115,0.005203,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.208115,0.005203,-0.006248,0.249922,0,0);}
.m14_c01080{transform:matrix(0.208677,0.003965,-0.004749,0.249955,0,0);-ms-transform:matrix(0.208677,0.003965,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.208677,0.003965,-0.004749,0.249955,0,0);}
.mc5_c01080{transform:matrix(0.209055,0.005226,-0.006248,0.249922,0,0);-ms-transform:matrix(0.209055,0.005226,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.209055,0.005226,-0.006248,0.249922,0,0);}
.mf_c01080{transform:matrix(0.209262,0.003976,-0.004749,0.249955,0,0);-ms-transform:matrix(0.209262,0.003976,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.209262,0.003976,-0.004749,0.249955,0,0);}
.m1_c01080{transform:matrix(0.209380,0.003559,-0.004249,0.249964,0,0);-ms-transform:matrix(0.209380,0.003559,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.209380,0.003559,-0.004249,0.249964,0,0);}
.mdf_c01080{transform:matrix(0.209430,0.005236,-0.006248,0.249922,0,0);-ms-transform:matrix(0.209430,0.005236,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.209430,0.005236,-0.006248,0.249922,0,0);}
.mcd_c01080{transform:matrix(0.209565,0.005239,-0.006248,0.249922,0,0);-ms-transform:matrix(0.209565,0.005239,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.209565,0.005239,-0.006248,0.249922,0,0);}
.m2_c01080{transform:matrix(0.209745,0.003566,-0.004249,0.249964,0,0);-ms-transform:matrix(0.209745,0.003566,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.209745,0.003566,-0.004249,0.249964,0,0);}
.mc_c01080{transform:matrix(0.209897,0.003988,-0.004749,0.249955,0,0);-ms-transform:matrix(0.209897,0.003988,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.209897,0.003988,-0.004749,0.249955,0,0);}
.md4_c01080{transform:matrix(0.209954,0.005249,-0.006248,0.249922,0,0);-ms-transform:matrix(0.209954,0.005249,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.209954,0.005249,-0.006248,0.249922,0,0);}
.m22_c01080{transform:matrix(0.210252,0.003995,-0.004749,0.249955,0,0);-ms-transform:matrix(0.210252,0.003995,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.210252,0.003995,-0.004749,0.249955,0,0);}
.m24_c01080{transform:matrix(0.210352,0.003997,-0.004749,0.249955,0,0);-ms-transform:matrix(0.210352,0.003997,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.210352,0.003997,-0.004749,0.249955,0,0);}
.m9b_c01080{transform:matrix(0.210629,0.005266,-0.006248,0.249922,0,0);-ms-transform:matrix(0.210629,0.005266,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.210629,0.005266,-0.006248,0.249922,0,0);}
.m5_c01080{transform:matrix(0.210895,0.003585,-0.004249,0.249964,0,0);-ms-transform:matrix(0.210895,0.003585,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.210895,0.003585,-0.004249,0.249964,0,0);}
.m87_c01080{transform:matrix(0.210964,0.005274,-0.006248,0.249922,0,0);-ms-transform:matrix(0.210964,0.005274,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.210964,0.005274,-0.006248,0.249922,0,0);}
.m127_c01080{transform:matrix(0.211149,0.005279,-0.006248,0.249922,0,0);-ms-transform:matrix(0.211149,0.005279,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.211149,0.005279,-0.006248,0.249922,0,0);}
.m2b_c01080{transform:matrix(0.211932,0.004027,-0.004749,0.249955,0,0);-ms-transform:matrix(0.211932,0.004027,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.211932,0.004027,-0.004749,0.249955,0,0);}
.m3_c01080{transform:matrix(0.212389,0.003611,-0.004249,0.249964,0,0);-ms-transform:matrix(0.212389,0.003611,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.212389,0.003611,-0.004249,0.249964,0,0);}
.m140_c01080{transform:matrix(0.212882,0.005961,-0.006997,0.249902,0,0);-ms-transform:matrix(0.212882,0.005961,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.212882,0.005961,-0.006997,0.249902,0,0);}
.mbd_c01080{transform:matrix(0.213488,0.005337,-0.006248,0.249922,0,0);-ms-transform:matrix(0.213488,0.005337,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.213488,0.005337,-0.006248,0.249922,0,0);}
.mcb_c01080{transform:matrix(0.213623,0.005341,-0.006248,0.249922,0,0);-ms-transform:matrix(0.213623,0.005341,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.213623,0.005341,-0.006248,0.249922,0,0);}
.m13f_c01080{transform:matrix(0.213901,0.005989,-0.006997,0.249902,0,0);-ms-transform:matrix(0.213901,0.005989,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.213901,0.005989,-0.006997,0.249902,0,0);}
.m2a_c01080{transform:matrix(0.214126,0.004068,-0.004749,0.249955,0,0);-ms-transform:matrix(0.214126,0.004068,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.214126,0.004068,-0.004749,0.249955,0,0);}
.m8f_c01080{transform:matrix(0.214213,0.005355,-0.006248,0.249922,0,0);-ms-transform:matrix(0.214213,0.005355,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.214213,0.005355,-0.006248,0.249922,0,0);}
.mb8_c01080{transform:matrix(0.214968,0.005374,-0.006248,0.249922,0,0);-ms-transform:matrix(0.214968,0.005374,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.214968,0.005374,-0.006248,0.249922,0,0);}
.m31_c01080{transform:matrix(0.215446,0.004093,-0.004749,0.249955,0,0);-ms-transform:matrix(0.215446,0.004093,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.215446,0.004093,-0.004749,0.249955,0,0);}
.mbb_c01080{transform:matrix(0.215563,0.005389,-0.006248,0.249922,0,0);-ms-transform:matrix(0.215563,0.005389,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.215563,0.005389,-0.006248,0.249922,0,0);}
.m12b_c01080{transform:matrix(0.215648,0.005391,-0.006248,0.249922,0,0);-ms-transform:matrix(0.215648,0.005391,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.215648,0.005391,-0.006248,0.249922,0,0);}
.m30_c01080{transform:matrix(0.216466,0.004113,-0.004749,0.249955,0,0);-ms-transform:matrix(0.216466,0.004113,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.216466,0.004113,-0.004749,0.249955,0,0);}
.m67_c01080{transform:matrix(0.216956,0.004122,-0.004749,0.249955,0,0);-ms-transform:matrix(0.216956,0.004122,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.216956,0.004122,-0.004749,0.249955,0,0);}
.m10b_c01080{transform:matrix(0.217337,0.005433,-0.006248,0.249922,0,0);-ms-transform:matrix(0.217337,0.005433,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.217337,0.005433,-0.006248,0.249922,0,0);}
.mfb_c01080{transform:matrix(0.217947,0.005449,-0.006248,0.249922,0,0);-ms-transform:matrix(0.217947,0.005449,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.217947,0.005449,-0.006248,0.249922,0,0);}
.m130_c01080{transform:matrix(0.218007,0.005450,-0.006248,0.249922,0,0);-ms-transform:matrix(0.218007,0.005450,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.218007,0.005450,-0.006248,0.249922,0,0);}
.mcf_c01080{transform:matrix(0.218137,0.005453,-0.006248,0.249922,0,0);-ms-transform:matrix(0.218137,0.005453,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.218137,0.005453,-0.006248,0.249922,0,0);}
.m73_c01080{transform:matrix(0.218187,0.005455,-0.006248,0.249922,0,0);-ms-transform:matrix(0.218187,0.005455,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.218187,0.005455,-0.006248,0.249922,0,0);}
.m82_c01080{transform:matrix(0.218552,0.005464,-0.006248,0.249922,0,0);-ms-transform:matrix(0.218552,0.005464,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.218552,0.005464,-0.006248,0.249922,0,0);}
.m141_c01080{transform:matrix(0.218609,0.006121,-0.006997,0.249902,0,0);-ms-transform:matrix(0.218609,0.006121,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.218609,0.006121,-0.006997,0.249902,0,0);}
.m86_c01080{transform:matrix(0.219012,0.005475,-0.006248,0.249922,0,0);-ms-transform:matrix(0.219012,0.005475,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.219012,0.005475,-0.006248,0.249922,0,0);}
.m8c_c01080{transform:matrix(0.219481,0.005487,-0.006248,0.249922,0,0);-ms-transform:matrix(0.219481,0.005487,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.219481,0.005487,-0.006248,0.249922,0,0);}
.m9d_c01080{transform:matrix(0.220126,0.005503,-0.006248,0.249922,0,0);-ms-transform:matrix(0.220126,0.005503,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.220126,0.005503,-0.006248,0.249922,0,0);}
.m79_c01080{transform:matrix(0.220821,0.005521,-0.006248,0.249922,0,0);-ms-transform:matrix(0.220821,0.005521,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.220821,0.005521,-0.006248,0.249922,0,0);}
.m81_c01080{transform:matrix(0.221016,0.005525,-0.006248,0.249922,0,0);-ms-transform:matrix(0.221016,0.005525,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.221016,0.005525,-0.006248,0.249922,0,0);}
.mde_c01080{transform:matrix(0.221136,0.005528,-0.006248,0.249922,0,0);-ms-transform:matrix(0.221136,0.005528,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.221136,0.005528,-0.006248,0.249922,0,0);}
.m1e_c01080{transform:matrix(0.221165,0.004202,-0.004749,0.249955,0,0);-ms-transform:matrix(0.221165,0.004202,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.221165,0.004202,-0.004749,0.249955,0,0);}
.me7_c01080{transform:matrix(0.221306,0.005533,-0.006248,0.249922,0,0);-ms-transform:matrix(0.221306,0.005533,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.221306,0.005533,-0.006248,0.249922,0,0);}
.m84_c01080{transform:matrix(0.221526,0.005538,-0.006248,0.249922,0,0);-ms-transform:matrix(0.221526,0.005538,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.221526,0.005538,-0.006248,0.249922,0,0);}
.m34_c01080{transform:matrix(0.222610,0.004230,-0.004749,0.249955,0,0);-ms-transform:matrix(0.222610,0.004230,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.222610,0.004230,-0.004749,0.249955,0,0);}
.m135_c01080{transform:matrix(0.223000,0.005575,-0.006248,0.249922,0,0);-ms-transform:matrix(0.223000,0.005575,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.223000,0.005575,-0.006248,0.249922,0,0);}
.mc2_c01080{transform:matrix(0.223200,0.005580,-0.006248,0.249922,0,0);-ms-transform:matrix(0.223200,0.005580,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.223200,0.005580,-0.006248,0.249922,0,0);}
.m19_c01080{transform:matrix(0.223230,0.004241,-0.004749,0.249955,0,0);-ms-transform:matrix(0.223230,0.004241,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.223230,0.004241,-0.004749,0.249955,0,0);}
.m66_c01080{transform:matrix(0.223690,0.004250,-0.004749,0.249955,0,0);-ms-transform:matrix(0.223690,0.004250,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.223690,0.004250,-0.004749,0.249955,0,0);}
.m39_c01080{transform:matrix(0.223930,0.004255,-0.004749,0.249955,0,0);-ms-transform:matrix(0.223930,0.004255,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.223930,0.004255,-0.004749,0.249955,0,0);}
.m2e_c01080{transform:matrix(0.224220,0.004260,-0.004749,0.249955,0,0);-ms-transform:matrix(0.224220,0.004260,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.224220,0.004260,-0.004749,0.249955,0,0);}
.m137_c01080{transform:matrix(0.224560,0.005614,-0.006248,0.249922,0,0);-ms-transform:matrix(0.224560,0.005614,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.224560,0.005614,-0.006248,0.249922,0,0);}
.ma_c01080{transform:matrix(0.225274,0.004280,-0.004749,0.249955,0,0);-ms-transform:matrix(0.225274,0.004280,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.225274,0.004280,-0.004749,0.249955,0,0);}
.ma2_c01080{transform:matrix(0.225275,0.005632,-0.006248,0.249922,0,0);-ms-transform:matrix(0.225275,0.005632,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.225275,0.005632,-0.006248,0.249922,0,0);}
.m59_c01080{transform:matrix(0.225304,0.004281,-0.004749,0.249955,0,0);-ms-transform:matrix(0.225304,0.004281,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.225304,0.004281,-0.004749,0.249955,0,0);}
.m77_c01080{transform:matrix(0.225395,0.005635,-0.006248,0.249922,0,0);-ms-transform:matrix(0.225395,0.005635,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.225395,0.005635,-0.006248,0.249922,0,0);}
.m136_c01080{transform:matrix(0.225470,0.005637,-0.006248,0.249922,0,0);-ms-transform:matrix(0.225470,0.005637,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.225470,0.005637,-0.006248,0.249922,0,0);}
.m12a_c01080{transform:matrix(0.225600,0.005640,-0.006248,0.249922,0,0);-ms-transform:matrix(0.225600,0.005640,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.225600,0.005640,-0.006248,0.249922,0,0);}
.mc7_c01080{transform:matrix(0.225774,0.005644,-0.006248,0.249922,0,0);-ms-transform:matrix(0.225774,0.005644,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.225774,0.005644,-0.006248,0.249922,0,0);}
.m128_c01080{transform:matrix(0.225994,0.005650,-0.006248,0.249922,0,0);-ms-transform:matrix(0.225994,0.005650,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.225994,0.005650,-0.006248,0.249922,0,0);}
.m64_c01080{transform:matrix(0.225999,0.004294,-0.004749,0.249955,0,0);-ms-transform:matrix(0.225999,0.004294,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.225999,0.004294,-0.004749,0.249955,0,0);}
.m1c_c01080{transform:matrix(0.226024,0.004294,-0.004749,0.249955,0,0);-ms-transform:matrix(0.226024,0.004294,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.226024,0.004294,-0.004749,0.249955,0,0);}
.mba_c01080{transform:matrix(0.226219,0.005655,-0.006248,0.249922,0,0);-ms-transform:matrix(0.226219,0.005655,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.226219,0.005655,-0.006248,0.249922,0,0);}
.m8a_c01080{transform:matrix(0.226234,0.005656,-0.006248,0.249922,0,0);-ms-transform:matrix(0.226234,0.005656,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.226234,0.005656,-0.006248,0.249922,0,0);}
.ma7_c01080{transform:matrix(0.226674,0.005667,-0.006248,0.249922,0,0);-ms-transform:matrix(0.226674,0.005667,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.226674,0.005667,-0.006248,0.249922,0,0);}
.mfe_c01080{transform:matrix(0.227359,0.005684,-0.006248,0.249922,0,0);-ms-transform:matrix(0.227359,0.005684,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.227359,0.005684,-0.006248,0.249922,0,0);}
.m3c_c01080{transform:matrix(0.228049,0.004333,-0.004749,0.249955,0,0);-ms-transform:matrix(0.228049,0.004333,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.228049,0.004333,-0.004749,0.249955,0,0);}
.maa_c01080{transform:matrix(0.228744,0.005719,-0.006248,0.249922,0,0);-ms-transform:matrix(0.228744,0.005719,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.228744,0.005719,-0.006248,0.249922,0,0);}
.m63_c01080{transform:matrix(0.228974,0.004350,-0.004749,0.249955,0,0);-ms-transform:matrix(0.228974,0.004350,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.228974,0.004350,-0.004749,0.249955,0,0);}
.me6_c01080{transform:matrix(0.229123,0.005728,-0.006248,0.249922,0,0);-ms-transform:matrix(0.229123,0.005728,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.229123,0.005728,-0.006248,0.249922,0,0);}
.md2_c01080{transform:matrix(0.229138,0.005728,-0.006248,0.249922,0,0);-ms-transform:matrix(0.229138,0.005728,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.229138,0.005728,-0.006248,0.249922,0,0);}
.m13c_c01080{transform:matrix(0.229395,0.006423,-0.006997,0.249902,0,0);-ms-transform:matrix(0.229395,0.006423,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.229395,0.006423,-0.006997,0.249902,0,0);}
.m43_c01080{transform:matrix(0.230173,0.004373,-0.004749,0.249955,0,0);-ms-transform:matrix(0.230173,0.004373,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.230173,0.004373,-0.004749,0.249955,0,0);}
.m5f_c01080{transform:matrix(0.230243,0.004375,-0.004749,0.249955,0,0);-ms-transform:matrix(0.230243,0.004375,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.230243,0.004375,-0.004749,0.249955,0,0);}
.m11c_c01080{transform:matrix(0.230253,0.005756,-0.006248,0.249922,0,0);-ms-transform:matrix(0.230253,0.005756,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.230253,0.005756,-0.006248,0.249922,0,0);}
.m90_c01080{transform:matrix(0.230323,0.005758,-0.006248,0.249922,0,0);-ms-transform:matrix(0.230323,0.005758,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.230323,0.005758,-0.006248,0.249922,0,0);}
.ma4_c01080{transform:matrix(0.230823,0.005771,-0.006248,0.249922,0,0);-ms-transform:matrix(0.230823,0.005771,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.230823,0.005771,-0.006248,0.249922,0,0);}
.m88_c01080{transform:matrix(0.231028,0.005776,-0.006248,0.249922,0,0);-ms-transform:matrix(0.231028,0.005776,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.231028,0.005776,-0.006248,0.249922,0,0);}
.m124_c01080{transform:matrix(0.231128,0.005778,-0.006248,0.249922,0,0);-ms-transform:matrix(0.231128,0.005778,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.231128,0.005778,-0.006248,0.249922,0,0);}
.mc1_c01080{transform:matrix(0.231173,0.005779,-0.006248,0.249922,0,0);-ms-transform:matrix(0.231173,0.005779,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.231173,0.005779,-0.006248,0.249922,0,0);}
.m8b_c01080{transform:matrix(0.231368,0.005784,-0.006248,0.249922,0,0);-ms-transform:matrix(0.231368,0.005784,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.231368,0.005784,-0.006248,0.249922,0,0);}
.m3e_c01080{transform:matrix(0.231393,0.004396,-0.004749,0.249955,0,0);-ms-transform:matrix(0.231393,0.004396,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.231393,0.004396,-0.004749,0.249955,0,0);}
.m48_c01080{transform:matrix(0.231488,0.004398,-0.004749,0.249955,0,0);-ms-transform:matrix(0.231488,0.004398,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.231488,0.004398,-0.004749,0.249955,0,0);}
.me1_c01080{transform:matrix(0.231568,0.005789,-0.006248,0.249922,0,0);-ms-transform:matrix(0.231568,0.005789,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.231568,0.005789,-0.006248,0.249922,0,0);}
.m71_c01080{transform:matrix(0.231688,0.005792,-0.006248,0.249922,0,0);-ms-transform:matrix(0.231688,0.005792,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.231688,0.005792,-0.006248,0.249922,0,0);}
.m70_c01080{transform:matrix(0.231733,0.005793,-0.006248,0.249922,0,0);-ms-transform:matrix(0.231733,0.005793,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.231733,0.005793,-0.006248,0.249922,0,0);}
.md0_c01080{transform:matrix(0.231823,0.005796,-0.006248,0.249922,0,0);-ms-transform:matrix(0.231823,0.005796,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.231823,0.005796,-0.006248,0.249922,0,0);}
.m2d_c01080{transform:matrix(0.231968,0.004407,-0.004749,0.249955,0,0);-ms-transform:matrix(0.231968,0.004407,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.231968,0.004407,-0.004749,0.249955,0,0);}
.m72_c01080{transform:matrix(0.232033,0.005801,-0.006248,0.249922,0,0);-ms-transform:matrix(0.232033,0.005801,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.232033,0.005801,-0.006248,0.249922,0,0);}
.m109_c01080{transform:matrix(0.232522,0.005813,-0.006248,0.249922,0,0);-ms-transform:matrix(0.232522,0.005813,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.232522,0.005813,-0.006248,0.249922,0,0);}
.md6_c01080{transform:matrix(0.232637,0.005816,-0.006248,0.249922,0,0);-ms-transform:matrix(0.232637,0.005816,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.232637,0.005816,-0.006248,0.249922,0,0);}
.md1_c01080{transform:matrix(0.232687,0.005817,-0.006248,0.249922,0,0);-ms-transform:matrix(0.232687,0.005817,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.232687,0.005817,-0.006248,0.249922,0,0);}
.m129_c01080{transform:matrix(0.232837,0.005821,-0.006248,0.249922,0,0);-ms-transform:matrix(0.232837,0.005821,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.232837,0.005821,-0.006248,0.249922,0,0);}
.m32_c01080{transform:matrix(0.233048,0.004428,-0.004749,0.249955,0,0);-ms-transform:matrix(0.233048,0.004428,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.233048,0.004428,-0.004749,0.249955,0,0);}
.m97_c01080{transform:matrix(0.233302,0.005833,-0.006248,0.249922,0,0);-ms-transform:matrix(0.233302,0.005833,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.233302,0.005833,-0.006248,0.249922,0,0);}
.m7f_c01080{transform:matrix(0.233482,0.005837,-0.006248,0.249922,0,0);-ms-transform:matrix(0.233482,0.005837,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.233482,0.005837,-0.006248,0.249922,0,0);}
.m92_c01080{transform:matrix(0.233497,0.005837,-0.006248,0.249922,0,0);-ms-transform:matrix(0.233497,0.005837,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.233497,0.005837,-0.006248,0.249922,0,0);}
.m91_c01080{transform:matrix(0.234077,0.005852,-0.006248,0.249922,0,0);-ms-transform:matrix(0.234077,0.005852,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.234077,0.005852,-0.006248,0.249922,0,0);}
.md5_c01080{transform:matrix(0.234307,0.005858,-0.006248,0.249922,0,0);-ms-transform:matrix(0.234307,0.005858,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.234307,0.005858,-0.006248,0.249922,0,0);}
.m4b_c01080{transform:matrix(0.234318,0.004452,-0.004749,0.249955,0,0);-ms-transform:matrix(0.234318,0.004452,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.234318,0.004452,-0.004749,0.249955,0,0);}
.m12_c01080{transform:matrix(0.235393,0.004472,-0.004749,0.249955,0,0);-ms-transform:matrix(0.235393,0.004472,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.235393,0.004472,-0.004749,0.249955,0,0);}
.m93_c01080{transform:matrix(0.236026,0.005901,-0.006248,0.249922,0,0);-ms-transform:matrix(0.236026,0.005901,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.236026,0.005901,-0.006248,0.249922,0,0);}
.mea_c01080{transform:matrix(0.236371,0.005909,-0.006248,0.249922,0,0);-ms-transform:matrix(0.236371,0.005909,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.236371,0.005909,-0.006248,0.249922,0,0);}
.m16_c01080{transform:matrix(0.236572,0.004495,-0.004749,0.249955,0,0);-ms-transform:matrix(0.236572,0.004495,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.236572,0.004495,-0.004749,0.249955,0,0);}
.md8_c01080{transform:matrix(0.238281,0.005957,-0.006248,0.249922,0,0);-ms-transform:matrix(0.238281,0.005957,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.238281,0.005957,-0.006248,0.249922,0,0);}
.m36_c01080{transform:matrix(0.238527,0.004532,-0.004749,0.249955,0,0);-ms-transform:matrix(0.238527,0.004532,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.238527,0.004532,-0.004749,0.249955,0,0);}
.m8d_c01080{transform:matrix(0.238890,0.005972,-0.006248,0.249922,0,0);-ms-transform:matrix(0.238890,0.005972,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.238890,0.005972,-0.006248,0.249922,0,0);}
.m62_c01080{transform:matrix(0.239397,0.004549,-0.004749,0.249955,0,0);-ms-transform:matrix(0.239397,0.004549,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.239397,0.004549,-0.004749,0.249955,0,0);}
.m11_c01080{transform:matrix(0.239462,0.004550,-0.004749,0.249955,0,0);-ms-transform:matrix(0.239462,0.004550,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.239462,0.004550,-0.004749,0.249955,0,0);}
.md7_c01080{transform:matrix(0.240805,0.006020,-0.006248,0.249922,0,0);-ms-transform:matrix(0.240805,0.006020,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.240805,0.006020,-0.006248,0.249922,0,0);}
.m85_c01080{transform:matrix(0.240890,0.006022,-0.006248,0.249922,0,0);-ms-transform:matrix(0.240890,0.006022,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.240890,0.006022,-0.006248,0.249922,0,0);}
.ma8_c01080{transform:matrix(0.241225,0.006031,-0.006248,0.249922,0,0);-ms-transform:matrix(0.241225,0.006031,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.241225,0.006031,-0.006248,0.249922,0,0);}
.m42_c01080{transform:matrix(0.241276,0.004584,-0.004749,0.249955,0,0);-ms-transform:matrix(0.241276,0.004584,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.241276,0.004584,-0.004749,0.249955,0,0);}
.m3a_c01080{transform:matrix(0.241371,0.004586,-0.004749,0.249955,0,0);-ms-transform:matrix(0.241371,0.004586,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.241371,0.004586,-0.004749,0.249955,0,0);}
.ma0_c01080{transform:matrix(0.241919,0.006048,-0.006248,0.249922,0,0);-ms-transform:matrix(0.241919,0.006048,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.241919,0.006048,-0.006248,0.249922,0,0);}
.m13d_c01080{transform:matrix(0.242045,0.006777,-0.006997,0.249902,0,0);-ms-transform:matrix(0.242045,0.006777,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.242045,0.006777,-0.006997,0.249902,0,0);}
.m9e_c01080{transform:matrix(0.242089,0.006052,-0.006248,0.249922,0,0);-ms-transform:matrix(0.242089,0.006052,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.242089,0.006052,-0.006248,0.249922,0,0);}
.m2f_c01080{transform:matrix(0.242316,0.004604,-0.004749,0.249955,0,0);-ms-transform:matrix(0.242316,0.004604,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.242316,0.004604,-0.004749,0.249955,0,0);}
.m10f_c01080{transform:matrix(0.242679,0.006067,-0.006248,0.249922,0,0);-ms-transform:matrix(0.242679,0.006067,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.242679,0.006067,-0.006248,0.249922,0,0);}
.m49_c01080{transform:matrix(0.242701,0.004611,-0.004749,0.249955,0,0);-ms-transform:matrix(0.242701,0.004611,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.242701,0.004611,-0.004749,0.249955,0,0);}
.m76_c01080{transform:matrix(0.242904,0.006073,-0.006248,0.249922,0,0);-ms-transform:matrix(0.242904,0.006073,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.242904,0.006073,-0.006248,0.249922,0,0);}
.md_c01080{transform:matrix(0.243636,0.004629,-0.004749,0.249955,0,0);-ms-transform:matrix(0.243636,0.004629,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.243636,0.004629,-0.004749,0.249955,0,0);}
.m116_c01080{transform:matrix(0.243739,0.006093,-0.006248,0.249922,0,0);-ms-transform:matrix(0.243739,0.006093,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.243739,0.006093,-0.006248,0.249922,0,0);}
.mb_c01080{transform:matrix(0.243791,0.004632,-0.004749,0.249955,0,0);-ms-transform:matrix(0.243791,0.004632,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.243791,0.004632,-0.004749,0.249955,0,0);}
.m74_c01080{transform:matrix(0.243954,0.006099,-0.006248,0.249922,0,0);-ms-transform:matrix(0.243954,0.006099,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.243954,0.006099,-0.006248,0.249922,0,0);}
.mc9_c01080{transform:matrix(0.244019,0.006100,-0.006248,0.249922,0,0);-ms-transform:matrix(0.244019,0.006100,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.244019,0.006100,-0.006248,0.249922,0,0);}
.mae_c01080{transform:matrix(0.244399,0.006110,-0.006248,0.249922,0,0);-ms-transform:matrix(0.244399,0.006110,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.244399,0.006110,-0.006248,0.249922,0,0);}
.m95_c01080{transform:matrix(0.245128,0.006128,-0.006248,0.249922,0,0);-ms-transform:matrix(0.245128,0.006128,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.245128,0.006128,-0.006248,0.249922,0,0);}
.m15_c01080{transform:matrix(0.245311,0.004661,-0.004749,0.249955,0,0);-ms-transform:matrix(0.245311,0.004661,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.245311,0.004661,-0.004749,0.249955,0,0);}
.m45_c01080{transform:matrix(0.245436,0.004663,-0.004749,0.249955,0,0);-ms-transform:matrix(0.245436,0.004663,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.245436,0.004663,-0.004749,0.249955,0,0);}
.m4e_c01080{transform:matrix(0.245791,0.004670,-0.004749,0.249955,0,0);-ms-transform:matrix(0.245791,0.004670,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.245791,0.004670,-0.004749,0.249955,0,0);}
.m113_c01080{transform:matrix(0.246128,0.006153,-0.006248,0.249922,0,0);-ms-transform:matrix(0.246128,0.006153,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.246128,0.006153,-0.006248,0.249922,0,0);}
.me_c01080{transform:matrix(0.246291,0.004680,-0.004749,0.249955,0,0);-ms-transform:matrix(0.246291,0.004680,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.246291,0.004680,-0.004749,0.249955,0,0);}
.m9c_c01080{transform:matrix(0.246373,0.006159,-0.006248,0.249922,0,0);-ms-transform:matrix(0.246373,0.006159,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.246373,0.006159,-0.006248,0.249922,0,0);}
.m60_c01080{transform:matrix(0.246560,0.004685,-0.004749,0.249955,0,0);-ms-transform:matrix(0.246560,0.004685,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.246560,0.004685,-0.004749,0.249955,0,0);}
.m102_c01080{transform:matrix(0.246603,0.006165,-0.006248,0.249922,0,0);-ms-transform:matrix(0.246603,0.006165,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.246603,0.006165,-0.006248,0.249922,0,0);}
.mab_c01080{transform:matrix(0.246653,0.006166,-0.006248,0.249922,0,0);-ms-transform:matrix(0.246653,0.006166,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.246653,0.006166,-0.006248,0.249922,0,0);}
.m78_c01080{transform:matrix(0.247053,0.006176,-0.006248,0.249922,0,0);-ms-transform:matrix(0.247053,0.006176,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.247053,0.006176,-0.006248,0.249922,0,0);}
.m11a_c01080{transform:matrix(0.247138,0.006178,-0.006248,0.249922,0,0);-ms-transform:matrix(0.247138,0.006178,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.247138,0.006178,-0.006248,0.249922,0,0);}
.me2_c01080{transform:matrix(0.247428,0.006186,-0.006248,0.249922,0,0);-ms-transform:matrix(0.247428,0.006186,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.247428,0.006186,-0.006248,0.249922,0,0);}
.ma1_c01080{transform:matrix(0.247608,0.006190,-0.006248,0.249922,0,0);-ms-transform:matrix(0.247608,0.006190,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.247608,0.006190,-0.006248,0.249922,0,0);}
.m122_c01080{transform:matrix(0.247838,0.006196,-0.006248,0.249922,0,0);-ms-transform:matrix(0.247838,0.006196,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.247838,0.006196,-0.006248,0.249922,0,0);}
.mff_c01080{transform:matrix(0.248003,0.006200,-0.006248,0.249922,0,0);-ms-transform:matrix(0.248003,0.006200,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.248003,0.006200,-0.006248,0.249922,0,0);}
.m11f_c01080{transform:matrix(0.248582,0.006215,-0.006248,0.249922,0,0);-ms-transform:matrix(0.248582,0.006215,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.248582,0.006215,-0.006248,0.249922,0,0);}
.m10_c01080{transform:matrix(0.249045,0.004732,-0.004749,0.249955,0,0);-ms-transform:matrix(0.249045,0.004732,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.249045,0.004732,-0.004749,0.249955,0,0);}
.mb3_c01080{transform:matrix(0.249137,0.006228,-0.006248,0.249922,0,0);-ms-transform:matrix(0.249137,0.006228,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.249137,0.006228,-0.006248,0.249922,0,0);}
.m103_c01080{transform:matrix(0.249917,0.006248,-0.006248,0.249922,0,0);-ms-transform:matrix(0.249917,0.006248,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.249917,0.006248,-0.006248,0.249922,0,0);}
.m126_c01080{transform:matrix(0.250177,0.006254,-0.006248,0.249922,0,0);-ms-transform:matrix(0.250177,0.006254,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.250177,0.006254,-0.006248,0.249922,0,0);}
.mc8_c01080{transform:matrix(0.250392,0.006260,-0.006248,0.249922,0,0);-ms-transform:matrix(0.250392,0.006260,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.250392,0.006260,-0.006248,0.249922,0,0);}
.m9f_c01080{transform:matrix(0.250582,0.006265,-0.006248,0.249922,0,0);-ms-transform:matrix(0.250582,0.006265,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.250582,0.006265,-0.006248,0.249922,0,0);}
.m40_c01080{transform:matrix(0.251080,0.004771,-0.004749,0.249955,0,0);-ms-transform:matrix(0.251080,0.004771,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.251080,0.004771,-0.004749,0.249955,0,0);}
.mdc_c01080{transform:matrix(0.251481,0.006287,-0.006248,0.249922,0,0);-ms-transform:matrix(0.251481,0.006287,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.251481,0.006287,-0.006248,0.249922,0,0);}
.m13_c01080{transform:matrix(0.251625,0.004781,-0.004749,0.249955,0,0);-ms-transform:matrix(0.251625,0.004781,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.251625,0.004781,-0.004749,0.249955,0,0);}
.maf_c01080{transform:matrix(0.252036,0.006301,-0.006248,0.249922,0,0);-ms-transform:matrix(0.252036,0.006301,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.252036,0.006301,-0.006248,0.249922,0,0);}
.mc3_c01080{transform:matrix(0.252276,0.006307,-0.006248,0.249922,0,0);-ms-transform:matrix(0.252276,0.006307,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.252276,0.006307,-0.006248,0.249922,0,0);}
.m12c_c01080{transform:matrix(0.252511,0.006313,-0.006248,0.249922,0,0);-ms-transform:matrix(0.252511,0.006313,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.252511,0.006313,-0.006248,0.249922,0,0);}
.m5b_c01080{transform:matrix(0.252544,0.004798,-0.004749,0.249955,0,0);-ms-transform:matrix(0.252544,0.004798,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.252544,0.004798,-0.004749,0.249955,0,0);}
.m110_c01080{transform:matrix(0.252801,0.006320,-0.006248,0.249922,0,0);-ms-transform:matrix(0.252801,0.006320,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.252801,0.006320,-0.006248,0.249922,0,0);}
.m38_c01080{transform:matrix(0.253154,0.004810,-0.004749,0.249955,0,0);-ms-transform:matrix(0.253154,0.004810,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.253154,0.004810,-0.004749,0.249955,0,0);}
.m52_c01080{transform:matrix(0.253354,0.004814,-0.004749,0.249955,0,0);-ms-transform:matrix(0.253354,0.004814,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.253354,0.004814,-0.004749,0.249955,0,0);}
.me8_c01080{transform:matrix(0.253386,0.006335,-0.006248,0.249922,0,0);-ms-transform:matrix(0.253386,0.006335,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.253386,0.006335,-0.006248,0.249922,0,0);}
.m100_c01080{transform:matrix(0.253766,0.006344,-0.006248,0.249922,0,0);-ms-transform:matrix(0.253766,0.006344,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.253766,0.006344,-0.006248,0.249922,0,0);}
.mca_c01080{transform:matrix(0.254171,0.006354,-0.006248,0.249922,0,0);-ms-transform:matrix(0.254171,0.006354,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.254171,0.006354,-0.006248,0.249922,0,0);}
.mfa_c01080{transform:matrix(0.254860,0.006372,-0.006248,0.249922,0,0);-ms-transform:matrix(0.254860,0.006372,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.254860,0.006372,-0.006248,0.249922,0,0);}
.m46_c01080{transform:matrix(0.255394,0.004852,-0.004749,0.249955,0,0);-ms-transform:matrix(0.255394,0.004852,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.255394,0.004852,-0.004749,0.249955,0,0);}
.m75_c01080{transform:matrix(0.255465,0.006387,-0.006248,0.249922,0,0);-ms-transform:matrix(0.255465,0.006387,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.255465,0.006387,-0.006248,0.249922,0,0);}
.mce_c01080{transform:matrix(0.255595,0.006390,-0.006248,0.249922,0,0);-ms-transform:matrix(0.255595,0.006390,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.255595,0.006390,-0.006248,0.249922,0,0);}
.me3_c01080{transform:matrix(0.255705,0.006393,-0.006248,0.249922,0,0);-ms-transform:matrix(0.255705,0.006393,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.255705,0.006393,-0.006248,0.249922,0,0);}
.mb1_c01080{transform:matrix(0.256220,0.006405,-0.006248,0.249922,0,0);-ms-transform:matrix(0.256220,0.006405,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.256220,0.006405,-0.006248,0.249922,0,0);}
.m5c_c01080{transform:matrix(0.256744,0.004878,-0.004749,0.249955,0,0);-ms-transform:matrix(0.256744,0.004878,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.256744,0.004878,-0.004749,0.249955,0,0);}
.mfd_c01080{transform:matrix(0.257020,0.006425,-0.006248,0.249922,0,0);-ms-transform:matrix(0.257020,0.006425,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.257020,0.006425,-0.006248,0.249922,0,0);}
.m13b_c01080{transform:matrix(0.257044,0.007197,-0.006997,0.249902,0,0);-ms-transform:matrix(0.257044,0.007197,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.257044,0.007197,-0.006997,0.249902,0,0);}
.m17_c01080{transform:matrix(0.257524,0.004893,-0.004749,0.249955,0,0);-ms-transform:matrix(0.257524,0.004893,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.257524,0.004893,-0.004749,0.249955,0,0);}
.m11d_c01080{transform:matrix(0.257654,0.006441,-0.006248,0.249922,0,0);-ms-transform:matrix(0.257654,0.006441,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.257654,0.006441,-0.006248,0.249922,0,0);}
.m41_c01080{transform:matrix(0.257953,0.004901,-0.004749,0.249955,0,0);-ms-transform:matrix(0.257953,0.004901,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.257953,0.004901,-0.004749,0.249955,0,0);}
.mf8_c01080{transform:matrix(0.258494,0.006462,-0.006248,0.249922,0,0);-ms-transform:matrix(0.258494,0.006462,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.258494,0.006462,-0.006248,0.249922,0,0);}
.m37_c01080{transform:matrix(0.258563,0.004913,-0.004749,0.249955,0,0);-ms-transform:matrix(0.258563,0.004913,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.258563,0.004913,-0.004749,0.249955,0,0);}
.m44_c01080{transform:matrix(0.258583,0.004913,-0.004749,0.249955,0,0);-ms-transform:matrix(0.258583,0.004913,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.258583,0.004913,-0.004749,0.249955,0,0);}
.m6d_c01080{transform:matrix(0.258664,0.006467,-0.006248,0.249922,0,0);-ms-transform:matrix(0.258664,0.006467,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.258664,0.006467,-0.006248,0.249922,0,0);}
.mac_c01080{transform:matrix(0.258674,0.006467,-0.006248,0.249922,0,0);-ms-transform:matrix(0.258674,0.006467,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.258674,0.006467,-0.006248,0.249922,0,0);}
.m4c_c01080{transform:matrix(0.258683,0.004915,-0.004749,0.249955,0,0);-ms-transform:matrix(0.258683,0.004915,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.258683,0.004915,-0.004749,0.249955,0,0);}
.m106_c01080{transform:matrix(0.258869,0.006472,-0.006248,0.249922,0,0);-ms-transform:matrix(0.258869,0.006472,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.258869,0.006472,-0.006248,0.249922,0,0);}
.m125_c01080{transform:matrix(0.258879,0.006472,-0.006248,0.249922,0,0);-ms-transform:matrix(0.258879,0.006472,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.258879,0.006472,-0.006248,0.249922,0,0);}
.m7a_c01080{transform:matrix(0.258914,0.006473,-0.006248,0.249922,0,0);-ms-transform:matrix(0.258914,0.006473,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.258914,0.006473,-0.006248,0.249922,0,0);}
.mdb_c01080{transform:matrix(0.258939,0.006473,-0.006248,0.249922,0,0);-ms-transform:matrix(0.258939,0.006473,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.258939,0.006473,-0.006248,0.249922,0,0);}
.mdd_c01080{transform:matrix(0.259129,0.006478,-0.006248,0.249922,0,0);-ms-transform:matrix(0.259129,0.006478,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.259129,0.006478,-0.006248,0.249922,0,0);}
.m10e_c01080{transform:matrix(0.260029,0.006501,-0.006248,0.249922,0,0);-ms-transform:matrix(0.260029,0.006501,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.260029,0.006501,-0.006248,0.249922,0,0);}
.m56_c01080{transform:matrix(0.260378,0.004947,-0.004749,0.249955,0,0);-ms-transform:matrix(0.260378,0.004947,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.260378,0.004947,-0.004749,0.249955,0,0);}
.m9a_c01080{transform:matrix(0.260454,0.006511,-0.006248,0.249922,0,0);-ms-transform:matrix(0.260454,0.006511,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.260454,0.006511,-0.006248,0.249922,0,0);}
.m3f_c01080{transform:matrix(0.260683,0.004953,-0.004749,0.249955,0,0);-ms-transform:matrix(0.260683,0.004953,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.260683,0.004953,-0.004749,0.249955,0,0);}
.m101_c01080{transform:matrix(0.261283,0.006532,-0.006248,0.249922,0,0);-ms-transform:matrix(0.261283,0.006532,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.261283,0.006532,-0.006248,0.249922,0,0);}
.m98_c01080{transform:matrix(0.261883,0.006547,-0.006248,0.249922,0,0);-ms-transform:matrix(0.261883,0.006547,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.261883,0.006547,-0.006248,0.249922,0,0);}
.mef_c01080{transform:matrix(0.261903,0.006548,-0.006248,0.249922,0,0);-ms-transform:matrix(0.261903,0.006548,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.261903,0.006548,-0.006248,0.249922,0,0);}
.meb_c01080{transform:matrix(0.261943,0.006549,-0.006248,0.249922,0,0);-ms-transform:matrix(0.261943,0.006549,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.261943,0.006549,-0.006248,0.249922,0,0);}
.m5a_c01080{transform:matrix(0.262013,0.004978,-0.004749,0.249955,0,0);-ms-transform:matrix(0.262013,0.004978,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.262013,0.004978,-0.004749,0.249955,0,0);}
.mb0_c01080{transform:matrix(0.263028,0.006576,-0.006248,0.249922,0,0);-ms-transform:matrix(0.263028,0.006576,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.263028,0.006576,-0.006248,0.249922,0,0);}
.mf0_c01080{transform:matrix(0.263153,0.006579,-0.006248,0.249922,0,0);-ms-transform:matrix(0.263153,0.006579,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.263153,0.006579,-0.006248,0.249922,0,0);}
.mb4_c01080{transform:matrix(0.263703,0.006593,-0.006248,0.249922,0,0);-ms-transform:matrix(0.263703,0.006593,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.263703,0.006593,-0.006248,0.249922,0,0);}
.m11b_c01080{transform:matrix(0.264677,0.006617,-0.006248,0.249922,0,0);-ms-transform:matrix(0.264677,0.006617,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.264677,0.006617,-0.006248,0.249922,0,0);}
.mad_c01080{transform:matrix(0.265752,0.006644,-0.006248,0.249922,0,0);-ms-transform:matrix(0.265752,0.006644,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.265752,0.006644,-0.006248,0.249922,0,0);}
.mc4_c01080{transform:matrix(0.266397,0.006660,-0.006248,0.249922,0,0);-ms-transform:matrix(0.266397,0.006660,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.266397,0.006660,-0.006248,0.249922,0,0);}
.m57_c01080{transform:matrix(0.266777,0.005069,-0.004749,0.249955,0,0);-ms-transform:matrix(0.266777,0.005069,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.266777,0.005069,-0.004749,0.249955,0,0);}
.m112_c01080{transform:matrix(0.266862,0.006672,-0.006248,0.249922,0,0);-ms-transform:matrix(0.266862,0.006672,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.266862,0.006672,-0.006248,0.249922,0,0);}
.m18_c01080{transform:matrix(0.267067,0.005074,-0.004749,0.249955,0,0);-ms-transform:matrix(0.267067,0.005074,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.267067,0.005074,-0.004749,0.249955,0,0);}
.m3d_c01080{transform:matrix(0.267362,0.005080,-0.004749,0.249955,0,0);-ms-transform:matrix(0.267362,0.005080,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.267362,0.005080,-0.004749,0.249955,0,0);}
.ma6_c01080{transform:matrix(0.267576,0.006689,-0.006248,0.249922,0,0);-ms-transform:matrix(0.267576,0.006689,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.267576,0.006689,-0.006248,0.249922,0,0);}
.m1b_c01080{transform:matrix(0.267652,0.005085,-0.004749,0.249955,0,0);-ms-transform:matrix(0.267652,0.005085,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.267652,0.005085,-0.004749,0.249955,0,0);}
.m5e_c01080{transform:matrix(0.267807,0.005088,-0.004749,0.249955,0,0);-ms-transform:matrix(0.267807,0.005088,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.267807,0.005088,-0.004749,0.249955,0,0);}
.ma5_c01080{transform:matrix(0.268226,0.006706,-0.006248,0.249922,0,0);-ms-transform:matrix(0.268226,0.006706,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.268226,0.006706,-0.006248,0.249922,0,0);}
.m104_c01080{transform:matrix(0.268881,0.006722,-0.006248,0.249922,0,0);-ms-transform:matrix(0.268881,0.006722,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.268881,0.006722,-0.006248,0.249922,0,0);}
.m10a_c01080{transform:matrix(0.269176,0.006729,-0.006248,0.249922,0,0);-ms-transform:matrix(0.269176,0.006729,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.269176,0.006729,-0.006248,0.249922,0,0);}
.mfc_c01080{transform:matrix(0.269316,0.006733,-0.006248,0.249922,0,0);-ms-transform:matrix(0.269316,0.006733,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.269316,0.006733,-0.006248,0.249922,0,0);}
.m3b_c01080{transform:matrix(0.269526,0.005121,-0.004749,0.249955,0,0);-ms-transform:matrix(0.269526,0.005121,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.269526,0.005121,-0.004749,0.249955,0,0);}
.mee_c01080{transform:matrix(0.269861,0.006747,-0.006248,0.249922,0,0);-ms-transform:matrix(0.269861,0.006747,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.269861,0.006747,-0.006248,0.249922,0,0);}
.m10c_c01080{transform:matrix(0.270381,0.006760,-0.006248,0.249922,0,0);-ms-transform:matrix(0.270381,0.006760,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.270381,0.006760,-0.006248,0.249922,0,0);}
.m5d_c01080{transform:matrix(0.270396,0.005138,-0.004749,0.249955,0,0);-ms-transform:matrix(0.270396,0.005138,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.270396,0.005138,-0.004749,0.249955,0,0);}
.m105_c01080{transform:matrix(0.270515,0.006763,-0.006248,0.249922,0,0);-ms-transform:matrix(0.270515,0.006763,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.270515,0.006763,-0.006248,0.249922,0,0);}
.me5_c01080{transform:matrix(0.270760,0.006769,-0.006248,0.249922,0,0);-ms-transform:matrix(0.270760,0.006769,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.270760,0.006769,-0.006248,0.249922,0,0);}
.ma9_c01080{transform:matrix(0.271025,0.006776,-0.006248,0.249922,0,0);-ms-transform:matrix(0.271025,0.006776,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.271025,0.006776,-0.006248,0.249922,0,0);}
.m108_c01080{transform:matrix(0.271175,0.006779,-0.006248,0.249922,0,0);-ms-transform:matrix(0.271175,0.006779,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.271175,0.006779,-0.006248,0.249922,0,0);}
.ma3_c01080{transform:matrix(0.271290,0.006782,-0.006248,0.249922,0,0);-ms-transform:matrix(0.271290,0.006782,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.271290,0.006782,-0.006248,0.249922,0,0);}
.m1d_c01080{transform:matrix(0.271721,0.005163,-0.004749,0.249955,0,0);-ms-transform:matrix(0.271721,0.005163,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.271721,0.005163,-0.004749,0.249955,0,0);}
.m35_c01080{transform:matrix(0.271761,0.005163,-0.004749,0.249955,0,0);-ms-transform:matrix(0.271761,0.005163,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.271761,0.005163,-0.004749,0.249955,0,0);}
.m117_c01080{transform:matrix(0.272135,0.006803,-0.006248,0.249922,0,0);-ms-transform:matrix(0.272135,0.006803,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.272135,0.006803,-0.006248,0.249922,0,0);}
.m114_c01080{transform:matrix(0.274114,0.006853,-0.006248,0.249922,0,0);-ms-transform:matrix(0.274114,0.006853,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.274114,0.006853,-0.006248,0.249922,0,0);}
.m1f_c01080{transform:matrix(0.274445,0.005214,-0.004749,0.249955,0,0);-ms-transform:matrix(0.274445,0.005214,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.274445,0.005214,-0.004749,0.249955,0,0);}
.m20_c01080{transform:matrix(0.274640,0.005218,-0.004749,0.249955,0,0);-ms-transform:matrix(0.274640,0.005218,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.274640,0.005218,-0.004749,0.249955,0,0);}
.m4a_c01080{transform:matrix(0.275025,0.005225,-0.004749,0.249955,0,0);-ms-transform:matrix(0.275025,0.005225,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.275025,0.005225,-0.004749,0.249955,0,0);}
.mb2_c01080{transform:matrix(0.275369,0.006884,-0.006248,0.249922,0,0);-ms-transform:matrix(0.275369,0.006884,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.275369,0.006884,-0.006248,0.249922,0,0);}
.mf2_c01080{transform:matrix(0.275464,0.006887,-0.006248,0.249922,0,0);-ms-transform:matrix(0.275464,0.006887,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.275464,0.006887,-0.006248,0.249922,0,0);}
.m10d_c01080{transform:matrix(0.275629,0.006891,-0.006248,0.249922,0,0);-ms-transform:matrix(0.275629,0.006891,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.275629,0.006891,-0.006248,0.249922,0,0);}
.m58_c01080{transform:matrix(0.275745,0.005239,-0.004749,0.249955,0,0);-ms-transform:matrix(0.275745,0.005239,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.275745,0.005239,-0.004749,0.249955,0,0);}
.m120_c01080{transform:matrix(0.276259,0.006906,-0.006248,0.249922,0,0);-ms-transform:matrix(0.276259,0.006906,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.276259,0.006906,-0.006248,0.249922,0,0);}
.md9_c01080{transform:matrix(0.276843,0.006921,-0.006248,0.249922,0,0);-ms-transform:matrix(0.276843,0.006921,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.276843,0.006921,-0.006248,0.249922,0,0);}
.m1a_c01080{transform:matrix(0.276850,0.005260,-0.004749,0.249955,0,0);-ms-transform:matrix(0.276850,0.005260,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.276850,0.005260,-0.004749,0.249955,0,0);}
.mc6_c01080{transform:matrix(0.278103,0.006953,-0.006248,0.249922,0,0);-ms-transform:matrix(0.278103,0.006953,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.278103,0.006953,-0.006248,0.249922,0,0);}
.mf4_c01080{transform:matrix(0.278728,0.006968,-0.006248,0.249922,0,0);-ms-transform:matrix(0.278728,0.006968,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.278728,0.006968,-0.006248,0.249922,0,0);}
.m107_c01080{transform:matrix(0.278868,0.006972,-0.006248,0.249922,0,0);-ms-transform:matrix(0.278868,0.006972,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.278868,0.006972,-0.006248,0.249922,0,0);}
.mf5_c01080{transform:matrix(0.278873,0.006972,-0.006248,0.249922,0,0);-ms-transform:matrix(0.278873,0.006972,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.278873,0.006972,-0.006248,0.249922,0,0);}
.m119_c01080{transform:matrix(0.279113,0.006978,-0.006248,0.249922,0,0);-ms-transform:matrix(0.279113,0.006978,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.279113,0.006978,-0.006248,0.249922,0,0);}
.mf7_c01080{transform:matrix(0.281412,0.007035,-0.006248,0.249922,0,0);-ms-transform:matrix(0.281412,0.007035,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.281412,0.007035,-0.006248,0.249922,0,0);}
.m47_c01080{transform:matrix(0.281904,0.005356,-0.004749,0.249955,0,0);-ms-transform:matrix(0.281904,0.005356,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.281904,0.005356,-0.004749,0.249955,0,0);}
.m4f_c01080{transform:matrix(0.283039,0.005378,-0.004749,0.249955,0,0);-ms-transform:matrix(0.283039,0.005378,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.283039,0.005378,-0.004749,0.249955,0,0);}
.mb5_c01080{transform:matrix(0.283866,0.007097,-0.006248,0.249922,0,0);-ms-transform:matrix(0.283866,0.007097,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.283866,0.007097,-0.006248,0.249922,0,0);}
.m50_c01080{transform:matrix(0.284224,0.005400,-0.004749,0.249955,0,0);-ms-transform:matrix(0.284224,0.005400,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.284224,0.005400,-0.004749,0.249955,0,0);}
.m115_c01080{transform:matrix(0.284361,0.007109,-0.006248,0.249922,0,0);-ms-transform:matrix(0.284361,0.007109,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.284361,0.007109,-0.006248,0.249922,0,0);}
.m6f_c01080{transform:matrix(0.286406,0.007160,-0.006248,0.249922,0,0);-ms-transform:matrix(0.286406,0.007160,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.286406,0.007160,-0.006248,0.249922,0,0);}
.mda_c01080{transform:matrix(0.286975,0.007174,-0.006248,0.249922,0,0);-ms-transform:matrix(0.286975,0.007174,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.286975,0.007174,-0.006248,0.249922,0,0);}
.mcc_c01080{transform:matrix(0.288685,0.007217,-0.006248,0.249922,0,0);-ms-transform:matrix(0.288685,0.007217,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.288685,0.007217,-0.006248,0.249922,0,0);}
.m55_c01080{transform:matrix(0.289028,0.005492,-0.004749,0.249955,0,0);-ms-transform:matrix(0.289028,0.005492,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.289028,0.005492,-0.004749,0.249955,0,0);}
.mf9_c01080{transform:matrix(0.291974,0.007299,-0.006248,0.249922,0,0);-ms-transform:matrix(0.291974,0.007299,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.291974,0.007299,-0.006248,0.249922,0,0);}
.mf1_c01080{transform:matrix(0.293458,0.007336,-0.006248,0.249922,0,0);-ms-transform:matrix(0.293458,0.007336,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.293458,0.007336,-0.006248,0.249922,0,0);}
.m51_c01080{transform:matrix(0.294157,0.005589,-0.004749,0.249955,0,0);-ms-transform:matrix(0.294157,0.005589,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.294157,0.005589,-0.004749,0.249955,0,0);}
.mf3_c01080{transform:matrix(0.295223,0.007381,-0.006248,0.249922,0,0);-ms-transform:matrix(0.295223,0.007381,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.295223,0.007381,-0.006248,0.249922,0,0);}
.me0_c01080{transform:matrix(0.295388,0.007385,-0.006248,0.249922,0,0);-ms-transform:matrix(0.295388,0.007385,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.295388,0.007385,-0.006248,0.249922,0,0);}
.m6b_c01080{transform:matrix(0.296642,0.007416,-0.006248,0.249922,0,0);-ms-transform:matrix(0.296642,0.007416,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.296642,0.007416,-0.006248,0.249922,0,0);}
.me9_c01080{transform:matrix(0.296777,0.007419,-0.006248,0.249922,0,0);-ms-transform:matrix(0.296777,0.007419,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.296777,0.007419,-0.006248,0.249922,0,0);}
.med_c01080{transform:matrix(0.296892,0.007422,-0.006248,0.249922,0,0);-ms-transform:matrix(0.296892,0.007422,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.296892,0.007422,-0.006248,0.249922,0,0);}
.mf6_c01080{transform:matrix(0.298012,0.007450,-0.006248,0.249922,0,0);-ms-transform:matrix(0.298012,0.007450,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.298012,0.007450,-0.006248,0.249922,0,0);}
.m4d_c01080{transform:matrix(0.298406,0.005670,-0.004749,0.249955,0,0);-ms-transform:matrix(0.298406,0.005670,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.298406,0.005670,-0.004749,0.249955,0,0);}
.m12d_c01080{transform:matrix(0.298812,0.007470,-0.006248,0.249922,0,0);-ms-transform:matrix(0.298812,0.007470,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.298812,0.007470,-0.006248,0.249922,0,0);}
.m53_c01080{transform:matrix(0.300026,0.005700,-0.004749,0.249955,0,0);-ms-transform:matrix(0.300026,0.005700,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.300026,0.005700,-0.004749,0.249955,0,0);}
.m6e_c01080{transform:matrix(0.300401,0.007510,-0.006248,0.249922,0,0);-ms-transform:matrix(0.300401,0.007510,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.300401,0.007510,-0.006248,0.249922,0,0);}
.m6c_c01080{transform:matrix(0.302955,0.007574,-0.006248,0.249922,0,0);-ms-transform:matrix(0.302955,0.007574,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.302955,0.007574,-0.006248,0.249922,0,0);}
.m6a_c01080{transform:matrix(0.303715,0.007593,-0.006248,0.249922,0,0);-ms-transform:matrix(0.303715,0.007593,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.303715,0.007593,-0.006248,0.249922,0,0);}
.m54_c01080{transform:matrix(0.306085,0.005816,-0.004749,0.249955,0,0);-ms-transform:matrix(0.306085,0.005816,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.306085,0.005816,-0.004749,0.249955,0,0);}
.m69_c01080{transform:matrix(0.310448,0.007761,-0.006248,0.249922,0,0);-ms-transform:matrix(0.310448,0.007761,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.310448,0.007761,-0.006248,0.249922,0,0);}
.m139_c01080{transform:matrix(0.334176,0.008354,-0.006248,0.249922,0,0);-ms-transform:matrix(0.334176,0.008354,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.334176,0.008354,-0.006248,0.249922,0,0);}
.mec_c01080{transform:matrix(0.386279,0.009657,-0.006248,0.249922,0,0);-ms-transform:matrix(0.386279,0.009657,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.386279,0.009657,-0.006248,0.249922,0,0);}
.m0_c01080{transform:matrix(0.391855,0.018043,-0.011499,0.249735,0,0);-ms-transform:matrix(0.391855,0.018043,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.391855,0.018043,-0.011499,0.249735,0,0);}
.m13a_c01080{transform:matrix(0.450458,0.012613,-0.006997,0.249902,0,0);-ms-transform:matrix(0.450458,0.012613,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.450458,0.012613,-0.006997,0.249902,0,0);}
.m121_c01080{transform:matrix(0.456932,0.011423,-0.006248,0.249922,0,0);-ms-transform:matrix(0.456932,0.011423,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.456932,0.011423,-0.006248,0.249922,0,0);}
.v0_c01080{vertical-align:0.000000px;}
.ls0_c01080{letter-spacing:0.000000px;}
.sc__c01080{text-shadow:none;}
.sc0_c01080{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__c01080{-webkit-text-stroke:0px transparent;}
.sc0_c01080{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01080{word-spacing:0.000000px;}
.fc0_c01080{color:transparent;}
.fs6_c01080{font-size:66.011912px;}
.fs7_c01080{font-size:66.020622px;}
.fs3_c01080{font-size:72.012995px;}
.fsa_c01080{font-size:72.022496px;}
.fs0_c01080{font-size:78.004563px;}
.fs2_c01080{font-size:78.014078px;}
.fs8_c01080{font-size:78.024371px;}
.fs5_c01080{font-size:84.015161px;}
.fs9_c01080{font-size:84.026246px;}
.fsc_c01080{font-size:84.032922px;}
.fsb_c01080{font-size:90.028121px;}
.fs1_c01080{font-size:96.013871px;}
.fs4_c01080{font-size:96.017326px;}
.y0_c01080{bottom:0.000000px;}
.y153_c01080{bottom:71.164092px;}
.y152_c01080{bottom:72.729474px;}
.y151_c01080{bottom:73.312854px;}
.y150_c01080{bottom:74.552652px;}
.y14f_c01080{bottom:78.281874px;}
.y14e_c01080{bottom:81.063912px;}
.y14d_c01080{bottom:81.905298px;}
.y14c_c01080{bottom:82.902000px;}
.y14b_c01080{bottom:119.271675px;}
.y14a_c01080{bottom:120.145800px;}
.y149_c01080{bottom:122.163075px;}
.y148_c01080{bottom:122.586900px;}
.y147_c01080{bottom:124.611975px;}
.y146_c01080{bottom:125.936437px;}
.y145_c01080{bottom:126.600262px;}
.y144_c01080{bottom:127.930275px;}
.y143_c01080{bottom:128.588737px;}
.y142_c01080{bottom:130.128900px;}
.y141_c01080{bottom:131.001937px;}
.y140_c01080{bottom:132.108975px;}
.y13f_c01080{bottom:153.595875px;}
.y13e_c01080{bottom:155.999400px;}
.y13d_c01080{bottom:156.896062px;}
.y13c_c01080{bottom:158.119087px;}
.y13b_c01080{bottom:159.877012px;}
.y13a_c01080{bottom:161.105925px;}
.y139_c01080{bottom:161.995125px;}
.y138_c01080{bottom:164.115787px;}
.y137_c01080{bottom:166.200637px;}
.y136_c01080{bottom:167.646975px;}
.y135_c01080{bottom:168.862725px;}
.y134_c01080{bottom:169.424475px;}
.y133_c01080{bottom:171.546975px;}
.y132_c01080{bottom:190.273875px;}
.y131_c01080{bottom:190.923600px;}
.y130_c01080{bottom:194.270625px;}
.y12f_c01080{bottom:195.609450px;}
.y12e_c01080{bottom:196.258012px;}
.y12d_c01080{bottom:198.301950px;}
.y12c_c01080{bottom:199.256287px;}
.y12b_c01080{bottom:199.904850px;}
.y12a_c01080{bottom:202.280100px;}
.y129_c01080{bottom:203.583862px;}
.y128_c01080{bottom:206.558212px;}
.y127_c01080{bottom:207.188662px;}
.y126_c01080{bottom:210.170025px;}
.y125_c01080{bottom:226.429875px;}
.y124_c01080{bottom:229.655437px;}
.y123_c01080{bottom:231.965325px;}
.y122_c01080{bottom:233.109412px;}
.y121_c01080{bottom:235.111125px;}
.y120_c01080{bottom:235.664475px;}
.y11f_c01080{bottom:237.099150px;}
.y11e_c01080{bottom:238.277400px;}
.y11d_c01080{bottom:239.950837px;}
.y11c_c01080{bottom:242.548162px;}
.y11b_c01080{bottom:243.390525px;}
.y11a_c01080{bottom:264.159825px;}
.y119_c01080{bottom:265.537762px;}
.y118_c01080{bottom:266.354775px;}
.y117_c01080{bottom:268.056937px;}
.y116_c01080{bottom:268.872262px;}
.y115_c01080{bottom:271.331550px;}
.y114_c01080{bottom:274.126200px;}
.y113_c01080{bottom:274.931550px;}
.y112_c01080{bottom:276.057262px;}
.y111_c01080{bottom:277.686037px;}
.y110_c01080{bottom:279.311925px;}
.y10f_c01080{bottom:299.706525px;}
.y10e_c01080{bottom:301.707187px;}
.y10d_c01080{bottom:303.441787px;}
.y10c_c01080{bottom:304.626262px;}
.y10b_c01080{bottom:306.311775px;}
.y10a_c01080{bottom:308.055337px;}
.y109_c01080{bottom:309.232912px;}
.y108_c01080{bottom:310.639275px;}
.y107_c01080{bottom:311.502937px;}
.y106_c01080{bottom:313.194150px;}
.y105_c01080{bottom:314.968837px;}
.y104_c01080{bottom:315.766162px;}
.y103_c01080{bottom:334.396837px;}
.y102_c01080{bottom:336.355387px;}
.y101_c01080{bottom:337.324350px;}
.y100_c01080{bottom:338.916937px;}
.yff_c01080{bottom:341.807775px;}
.yfe_c01080{bottom:343.732087px;}
.yfd_c01080{bottom:345.637087px;}
.yfc_c01080{bottom:347.282137px;}
.yfb_c01080{bottom:347.937037px;}
.yfa_c01080{bottom:350.806012px;}
.yf9_c01080{bottom:352.071075px;}
.yf8_c01080{bottom:353.308125px;}
.yf7_c01080{bottom:371.350912px;}
.yf6_c01080{bottom:372.199950px;}
.yf5_c01080{bottom:374.403975px;}
.yf4_c01080{bottom:376.058550px;}
.yf3_c01080{bottom:376.895812px;}
.yf2_c01080{bottom:381.182250px;}
.yf1_c01080{bottom:382.634737px;}
.yf0_c01080{bottom:383.490862px;}
.yef_c01080{bottom:384.341250px;}
.yee_c01080{bottom:386.529600px;}
.yed_c01080{bottom:406.991212px;}
.yec_c01080{bottom:408.183375px;}
.yeb_c01080{bottom:409.394175px;}
.yea_c01080{bottom:410.290837px;}
.ye9_c01080{bottom:412.404900px;}
.ye8_c01080{bottom:413.856937px;}
.ye7_c01080{bottom:414.482250px;}
.ye6_c01080{bottom:415.359000px;}
.ye5_c01080{bottom:417.171525px;}
.ye4_c01080{bottom:418.354912px;}
.ye3_c01080{bottom:419.842012px;}
.ye2_c01080{bottom:420.449625px;}
.ye1_c01080{bottom:423.421312px;}
.ye0_c01080{bottom:424.607850px;}
.ydf_c01080{bottom:443.252925px;}
.yde_c01080{bottom:444.189712px;}
.ydd_c01080{bottom:446.413050px;}
.ydc_c01080{bottom:449.499562px;}
.ydb_c01080{bottom:450.732150px;}
.yda_c01080{bottom:451.639312px;}
.yd9_c01080{bottom:453.527512px;}
.yd8_c01080{bottom:455.685262px;}
.yd7_c01080{bottom:457.847512px;}
.yd6_c01080{bottom:458.739337px;}
.yd5_c01080{bottom:459.990637px;}
.yd4_c01080{bottom:478.018912px;}
.yd3_c01080{bottom:478.622325px;}
.yd2_c01080{bottom:481.076287px;}
.yd1_c01080{bottom:481.927125px;}
.yd0_c01080{bottom:483.424087px;}
.ycf_c01080{bottom:484.358212px;}
.yce_c01080{bottom:485.551837px;}
.ycd_c01080{bottom:487.018275px;}
.ycc_c01080{bottom:487.890675px;}
.ycb_c01080{bottom:490.318312px;}
.yca_c01080{bottom:491.172975px;}
.yc9_c01080{bottom:493.266937px;}
.yc8_c01080{bottom:494.753475px;}
.yc7_c01080{bottom:495.641962px;}
.yc6_c01080{bottom:515.017612px;}
.yc5_c01080{bottom:516.452175px;}
.yc4_c01080{bottom:517.309987px;}
.yc3_c01080{bottom:518.186962px;}
.yc2_c01080{bottom:520.180875px;}
.yc1_c01080{bottom:521.340300px;}
.yc0_c01080{bottom:523.649662px;}
.ybf_c01080{bottom:525.380512px;}
.ybe_c01080{bottom:526.220437px;}
.ybd_c01080{bottom:527.971462px;}
.ybc_c01080{bottom:529.372537px;}
.ybb_c01080{bottom:530.214900px;}
.yba_c01080{bottom:551.151675px;}
.yb9_c01080{bottom:552.885412px;}
.yb8_c01080{bottom:554.052450px;}
.yb7_c01080{bottom:556.397250px;}
.yb6_c01080{bottom:557.533162px;}
.yb5_c01080{bottom:559.499625px;}
.yb4_c01080{bottom:560.677725px;}
.yb3_c01080{bottom:561.837150px;}
.yb2_c01080{bottom:564.387412px;}
.yb1_c01080{bottom:566.675475px;}
.yb0_c01080{bottom:587.233725px;}
.yaf_c01080{bottom:588.097050px;}
.yae_c01080{bottom:590.405887px;}
.yad_c01080{bottom:591.293925px;}
.yac_c01080{bottom:592.164150px;}
.yab_c01080{bottom:594.186712px;}
.yaa_c01080{bottom:596.502675px;}
.ya9_c01080{bottom:597.330937px;}
.ya8_c01080{bottom:599.640825px;}
.ya7_c01080{bottom:600.484425px;}
.ya6_c01080{bottom:601.657162px;}
.ya5_c01080{bottom:602.506800px;}
.ya4_c01080{bottom:603.943312px;}
.ya3_c01080{bottom:624.259837px;}
.ya2_c01080{bottom:625.284337px;}
.ya1_c01080{bottom:627.102112px;}
.ya0_c01080{bottom:627.833850px;}
.y9f_c01080{bottom:630.165337px;}
.y9e_c01080{bottom:630.884662px;}
.y9d_c01080{bottom:632.455387px;}
.y9c_c01080{bottom:633.686812px;}
.y9b_c01080{bottom:634.444725px;}
.y9a_c01080{bottom:635.991112px;}
.y99_c01080{bottom:636.485775px;}
.y98_c01080{bottom:638.237587px;}
.y97_c01080{bottom:638.782950px;}
.y96_c01080{bottom:658.858537px;}
.y95_c01080{bottom:661.211662px;}
.y94_c01080{bottom:662.329462px;}
.y93_c01080{bottom:663.214687px;}
.y92_c01080{bottom:666.073312px;}
.y91_c01080{bottom:667.518150px;}
.y90_c01080{bottom:669.568162px;}
.y8f_c01080{bottom:671.837475px;}
.y8e_c01080{bottom:672.679837px;}
.y8d_c01080{bottom:674.706525px;}
.y8c_c01080{bottom:695.924212px;}
.y8b_c01080{bottom:697.398600px;}
.y8a_c01080{bottom:698.135175px;}
.y89_c01080{bottom:700.613812px;}
.y88_c01080{bottom:701.819475px;}
.y87_c01080{bottom:702.549187px;}
.y86_c01080{bottom:703.048537px;}
.y85_c01080{bottom:704.244412px;}
.y84_c01080{bottom:704.968575px;}
.y83_c01080{bottom:706.923112px;}
.y82_c01080{bottom:707.623725px;}
.y81_c01080{bottom:708.372450px;}
.y80_c01080{bottom:709.084612px;}
.y7f_c01080{bottom:709.814175px;}
.y7e_c01080{bottom:731.058787px;}
.y7d_c01080{bottom:731.890462px;}
.y7c_c01080{bottom:734.085037px;}
.y7b_c01080{bottom:735.212775px;}
.y7a_c01080{bottom:736.894350px;}
.y79_c01080{bottom:739.648162px;}
.y78_c01080{bottom:741.322650px;}
.y77_c01080{bottom:742.126650px;}
.y76_c01080{bottom:743.516887px;}
.y75_c01080{bottom:745.150725px;}
.y74_c01080{bottom:746.275762px;}
.y73_c01080{bottom:766.311787px;}
.y72_c01080{bottom:769.087200px;}
.y71_c01080{bottom:769.938450px;}
.y70_c01080{bottom:772.706775px;}
.y6f_c01080{bottom:775.453012px;}
.y6e_c01080{bottom:778.512525px;}
.y6d_c01080{bottom:779.769000px;}
.y6c_c01080{bottom:806.921154px;}
.y6b_c01080{bottom:808.292291px;}
.y6a_c01080{bottom:809.831268px;}
.y69_c01080{bottom:810.507303px;}
.y68_c01080{bottom:812.045654px;}
.y67_c01080{bottom:813.607164px;}
.y66_c01080{bottom:816.032177px;}
.y65_c01080{bottom:816.701268px;}
.y64_c01080{bottom:840.914828px;}
.y63_c01080{bottom:841.583406px;}
.y62_c01080{bottom:842.944549px;}
.y61_c01080{bottom:844.510249px;}
.y60_c01080{bottom:845.806320px;}
.y5f_c01080{bottom:846.275718px;}
.y5e_c01080{bottom:847.788372px;}
.y5d_c01080{bottom:848.457891px;}
.y5c_c01080{bottom:850.239462px;}
.y5b_c01080{bottom:851.562996px;}
.y5a_c01080{bottom:852.885504px;}
.y59_c01080{bottom:874.836840px;}
.y58_c01080{bottom:877.410253px;}
.y57_c01080{bottom:879.435276px;}
.y56_c01080{bottom:880.200308px;}
.y55_c01080{bottom:882.225444px;}
.y54_c01080{bottom:884.250695px;}
.y53_c01080{bottom:885.547922px;}
.y52_c01080{bottom:886.292721px;}
.y51_c01080{bottom:888.105624px;}
.y50_c01080{bottom:889.072736px;}
.y4f_c01080{bottom:910.862109px;}
.y4e_c01080{bottom:912.829237px;}
.y4d_c01080{bottom:913.573115px;}
.y4c_c01080{bottom:914.301822px;}
.y4b_c01080{bottom:917.231195px;}
.y4a_c01080{bottom:918.948876px;}
.y49_c01080{bottom:919.440941px;}
.y48_c01080{bottom:920.398625px;}
.y47_c01080{bottom:921.842085px;}
.y46_c01080{bottom:922.578762px;}
.y45_c01080{bottom:923.562731px;}
.y44_c01080{bottom:924.989871px;}
.y43_c01080{bottom:946.473765px;}
.y42_c01080{bottom:947.935616px;}
.y41_c01080{bottom:948.676653px;}
.y40_c01080{bottom:950.158233px;}
.y3f_c01080{bottom:950.863535px;}
.y3e_c01080{bottom:952.808055px;}
.y3d_c01080{bottom:953.568480px;}
.y3c_c01080{bottom:954.281552px;}
.y3b_c01080{bottom:955.481511px;}
.y3a_c01080{bottom:956.942906px;}
.y39_c01080{bottom:957.911466px;}
.y38_c01080{bottom:960.097692px;}
.y37_c01080{bottom:981.793719px;}
.y36_c01080{bottom:982.475301px;}
.y35_c01080{bottom:984.143148px;}
.y34_c01080{bottom:985.067125px;}
.y33_c01080{bottom:985.543160px;}
.y32_c01080{bottom:988.317439px;}
.y31_c01080{bottom:989.956209px;}
.y30_c01080{bottom:991.345315px;}
.y2f_c01080{bottom:993.188237px;}
.y2e_c01080{bottom:993.890859px;}
.y2d_c01080{bottom:994.361564px;}
.y2c_c01080{bottom:995.476023px;}
.y2b_c01080{bottom:1018.660851px;}
.y2a_c01080{bottom:1020.664809px;}
.y29_c01080{bottom:1022.005518px;}
.y28_c01080{bottom:1022.679854px;}
.y27_c01080{bottom:1023.583558px;}
.y26_c01080{bottom:1026.016893px;}
.y25_c01080{bottom:1026.887093px;}
.y24_c01080{bottom:1029.100965px;}
.y23_c01080{bottom:1030.850370px;}
.y22_c01080{bottom:1054.555189px;}
.y21_c01080{bottom:1056.138293px;}
.y20_c01080{bottom:1056.775218px;}
.y1f_c01080{bottom:1058.568663px;}
.y1e_c01080{bottom:1059.227808px;}
.y1d_c01080{bottom:1060.572821px;}
.y1c_c01080{bottom:1062.544299px;}
.y1b_c01080{bottom:1063.198513px;}
.y1a_c01080{bottom:1064.553387px;}
.y19_c01080{bottom:1065.628770px;}
.y18_c01080{bottom:1066.497003px;}
.y17_c01080{bottom:1090.343818px;}
.y16_c01080{bottom:1090.984869px;}
.y15_c01080{bottom:1092.483428px;}
.y14_c01080{bottom:1092.918338px;}
.y13_c01080{bottom:1093.956165px;}
.y12_c01080{bottom:1094.587041px;}
.y11_c01080{bottom:1096.075055px;}
.y10_c01080{bottom:1096.680395px;}
.yf_c01080{bottom:1097.757780px;}
.ye_c01080{bottom:1099.399865px;}
.yd_c01080{bottom:1100.041086px;}
.yc_c01080{bottom:1101.492819px;}
.yb_c01080{bottom:1102.144500px;}
.ya_c01080{bottom:1126.565565px;}
.y9_c01080{bottom:1128.108060px;}
.y8_c01080{bottom:1129.040315px;}
.y7_c01080{bottom:1129.605037px;}
.y6_c01080{bottom:1131.506751px;}
.y5_c01080{bottom:1131.867270px;}
.y4_c01080{bottom:1133.956740px;}
.y3_c01080{bottom:1135.820714px;}
.y2_c01080{bottom:1137.514500px;}
.y1_c01080{bottom:1210.698000px;}
.h8_c01080{height:66.011912px;}
.h9_c01080{height:66.020622px;}
.h5_c01080{height:72.012995px;}
.hc_c01080{height:72.022496px;}
.h2_c01080{height:78.004563px;}
.h4_c01080{height:78.014078px;}
.ha_c01080{height:78.024371px;}
.h7_c01080{height:84.015161px;}
.hb_c01080{height:84.026246px;}
.he_c01080{height:84.032922px;}
.hd_c01080{height:90.028121px;}
.h3_c01080{height:96.013871px;}
.h6_c01080{height:96.017326px;}
.h0_c01080{height:1246.320000px;}
.h1_c01080{height:1246.500000px;}
.w1_c01080{width:885.750000px;}
.w0_c01080{width:885.870000px;}
.x0_c01080{left:0.000000px;}
.xd1_c01080{left:147.024750px;}
.xca_c01080{left:148.668750px;}
.xc3_c01080{left:149.739413px;}
.xa0_c01080{left:151.187438px;}
.x77_c01080{left:152.842988px;}
.x5a_c01080{left:154.457138px;}
.x4a_c01080{left:156.067326px;}
.x38_c01080{left:157.944492px;}
.x20_c01080{left:159.034509px;}
.x2_c01080{left:160.686000px;}
.x78_c01080{left:176.578688px;}
.xb9_c01080{left:181.615163px;}
.x91_c01080{left:185.606400px;}
.x64_c01080{left:187.874813px;}
.x52_c01080{left:189.001750px;}
.xb_c01080{left:194.418000px;}
.xa1_c01080{left:195.896100px;}
.x43_c01080{left:199.772038px;}
.xd8_c01080{left:201.907538px;}
.x17_c01080{left:204.111327px;}
.x82_c01080{left:207.776963px;}
.x28_c01080{left:212.824383px;}
.xbf_c01080{left:215.576888px;}
.x65_c01080{left:220.263750px;}
.x39_c01080{left:222.790287px;}
.xd2_c01080{left:225.620813px;}
.xa2_c01080{left:227.726700px;}
.x71_c01080{left:231.563550px;}
.x29_c01080{left:235.229028px;}
.xb4_c01080{left:237.478425px;}
.xaf_c01080{left:238.627500px;}
.x83_c01080{left:240.441638px;}
.x21_c01080{left:246.527856px;}
.xcb_c01080{left:248.050838px;}
.xba_c01080{left:249.900975px;}
.x79_c01080{left:252.714975px;}
.x66_c01080{left:254.295300px;}
.x18_c01080{left:257.867301px;}
.x3_c01080{left:260.320500px;}
.x5b_c01080{left:264.812138px;}
.x3a_c01080{left:267.549251px;}
.x2a_c01080{left:268.655245px;}
.xc_c01080{left:270.825000px;}
.xb0_c01080{left:272.643000px;}
.x7a_c01080{left:274.242563px;}
.x44_c01080{left:278.603053px;}
.xc0_c01080{left:280.727888px;}
.xc4_c01080{left:281.983575px;}
.x67_c01080{left:286.162200px;}
.x4b_c01080{left:288.382818px;}
.xd3_c01080{left:291.437513px;}
.x3b_c01080{left:301.030341px;}
.x31_c01080{left:302.127912px;}
.xd_c01080{left:304.573500px;}
.x92_c01080{left:306.827363px;}
.x56_c01080{left:309.669000px;}
.x45_c01080{left:311.011102px;}
.xbb_c01080{left:314.967863px;}
.x84_c01080{left:317.973188px;}
.x5c_c01080{left:320.421638px;}
.xd9_c01080{left:322.570613px;}
.x19_c01080{left:325.622519px;}
.xa9_c01080{left:327.399413px;}
.xb5_c01080{left:336.387525px;}
.x8b_c01080{left:339.329025px;}
.x7b_c01080{left:341.501438px;}
.xd4_c01080{left:345.028350px;}
.xc5_c01080{left:346.339463px;}
.xbc_c01080{left:348.193538px;}
.x9a_c01080{left:349.682138px;}
.x72_c01080{left:351.227550px;}
.x5d_c01080{left:352.581638px;}
.xda_c01080{left:355.513238px;}
.x22_c01080{left:357.203247px;}
.x1a_c01080{left:358.317392px;}
.xb1_c01080{left:364.987500px;}
.x3c_c01080{left:366.656108px;}
.x32_c01080{left:368.539621px;}
.x4_c01080{left:369.966000px;}
.x68_c01080{left:375.030375px;}
.x4c_c01080{left:377.490136px;}
.xa3_c01080{left:382.035150px;}
.x8c_c01080{left:383.904900px;}
.x53_c01080{left:388.314960px;}
.xe_c01080{left:390.999000px;}
.x23_c01080{left:400.712920px;}
.xbd_c01080{left:402.286688px;}
.x93_c01080{left:405.695888px;}
.x85_c01080{left:406.826475px;}
.x69_c01080{left:407.959350px;}
.x3d_c01080{left:410.189628px;}
.xcc_c01080{left:411.672900px;}
.xb6_c01080{left:415.717613px;}
.x5e_c01080{left:419.561138px;}
.xdb_c01080{left:421.982025px;}
.x1_c01080{left:423.234000px;}
.xaa_c01080{left:426.354000px;}
.x7c_c01080{left:427.979250px;}
.x73_c01080{left:430.046063px;}
.x3e_c01080{left:432.533846px;}
.x86_c01080{left:438.696188px;}
.xe0_c01080{left:444.640500px;}
.xf_c01080{left:447.703500px;}
.xa4_c01080{left:449.458088px;}
.x33_c01080{left:455.483662px;}
.x1b_c01080{left:456.867011px;}
.x6a_c01080{left:462.338438px;}
.x54_c01080{left:465.253007px;}
.xc6_c01080{left:468.127425px;}
.xc1_c01080{left:469.756388px;}
.x9b_c01080{left:471.897525px;}
.x10_c01080{left:479.563500px;}
.xa5_c01080{left:481.842150px;}
.x6b_c01080{left:485.014125px;}
.x4d_c01080{left:486.655084px;}
.xe1_c01080{left:488.919000px;}
.x34_c01080{left:490.056696px;}
.x5_c01080{left:492.876000px;}
.x94_c01080{left:494.528175px;}
.x7d_c01080{left:496.271663px;}
.x55_c01080{left:499.017351px;}
.x2b_c01080{left:500.609439px;}
.x8d_c01080{left:504.884400px;}
.x3f_c01080{left:510.617900px;}
.xcd_c01080{left:512.452800px;}
.x6_c01080{left:514.083000px;}
.x6c_c01080{left:518.165100px;}
.xdc_c01080{left:521.385938px;}
.x24_c01080{left:522.386112px;}
.x1c_c01080{left:524.103228px;}
.x9c_c01080{left:526.232325px;}
.x7e_c01080{left:527.566238px;}
.x5f_c01080{left:529.713638px;}
.xd5_c01080{left:533.687400px;}
.xb2_c01080{left:536.445000px;}
.x95_c01080{left:539.104050px;}
.x57_c01080{left:541.899000px;}
.x46_c01080{left:543.499433px;}
.xc7_c01080{left:545.134013px;}
.x8e_c01080{left:548.579813px;}
.x11_c01080{left:557.880000px;}
.xe2_c01080{left:565.660500px;}
.x25_c01080{left:567.580257px;}
.x9d_c01080{left:570.435113px;}
.x6d_c01080{left:572.995725px;}
.x4e_c01080{left:574.914903px;}
.x47_c01080{left:576.735396px;}
.x35_c01080{left:578.421151px;}
.xbe_c01080{left:579.468263px;}
.xc8_c01080{left:589.156425px;}
.x12_c01080{left:591.084000px;}
.x74_c01080{left:595.580438px;}
.x60_c01080{left:596.976638px;}
.x26_c01080{left:601.334130px;}
.xab_c01080{left:602.910188px;}
.x87_c01080{left:605.573025px;}
.x36_c01080{left:610.487827px;}
.xce_c01080{left:612.391313px;}
.x96_c01080{left:615.798638px;}
.xdd_c01080{left:622.621575px;}
.x7_c01080{left:625.948500px;}
.x75_c01080{left:629.608575px;}
.x2c_c01080{left:632.724423px;}
.xcf_c01080{left:634.011113px;}
.xa6_c01080{left:636.114600px;}
.x88_c01080{left:639.061200px;}
.x61_c01080{left:642.086138px;}
.x40_c01080{left:643.787819px;}
.x13_c01080{left:645.706500px;}
.x1d_c01080{left:646.710891px;}
.x97_c01080{left:649.556813px;}
.x4f_c01080{left:653.213421px;}
.x2d_c01080{left:655.409568px;}
.x8_c01080{left:659.167500px;}
.x7f_c01080{left:660.721875px;}
.x48_c01080{left:664.756198px;}
.x14_c01080{left:668.596500px;}
.x76_c01080{left:672.579488px;}
.x41_c01080{left:676.928437px;}
.x1e_c01080{left:678.574793px;}
.xac_c01080{left:681.228788px;}
.x98_c01080{left:682.548488px;}
.x8f_c01080{left:683.649938px;}
.x6e_c01080{left:685.649663px;}
.x58_c01080{left:686.682000px;}
.xd6_c01080{left:689.594100px;}
.x9e_c01080{left:691.986038px;}
.x2e_c01080{left:699.380386px;}
.xb7_c01080{left:702.358463px;}
.x37_c01080{left:711.514570px;}
.x9_c01080{left:714.006000px;}
.xa7_c01080{left:715.502138px;}
.x6f_c01080{left:719.135175px;}
.x50_c01080{left:721.298638px;}
.xd7_c01080{left:722.818950px;}
.xb3_c01080{left:724.279500px;}
.x62_c01080{left:729.869138px;}
.xb8_c01080{left:735.773625px;}
.x99_c01080{left:737.709600px;}
.x80_c01080{left:739.736813px;}
.xde_c01080{left:744.640800px;}
.x15_c01080{left:747.468000px;}
.xa8_c01080{left:748.951125px;}
.x90_c01080{left:750.357788px;}
.x51_c01080{left:754.749511px;}
.xc2_c01080{left:756.625388px;}
.x1f_c01080{left:757.710282px;}
.xad_c01080{left:759.283388px;}
.x89_c01080{left:762.013125px;}
.x63_c01080{left:763.136138px;}
.x27_c01080{left:768.523938px;}
.x49_c01080{left:776.664205px;}
.x2f_c01080{left:778.790366px;}
.x16_c01080{left:781.207500px;}
.x9f_c01080{left:782.880000px;}
.x81_c01080{left:784.259025px;}
.x70_c01080{left:786.155700px;}
.xdf_c01080{left:788.371275px;}
.xd0_c01080{left:790.165575px;}
.x8a_c01080{left:795.225300px;}
.x59_c01080{left:797.698500px;}
.x42_c01080{left:800.105898px;}
.xc9_c01080{left:802.049100px;}
.xae_c01080{left:803.427675px;}
.xa_c01080{left:804.741000px;}
.x30_c01080{left:811.267140px;}
@media print{
.v0_c01080{vertical-align:0.000000pt;}
.ls0_c01080{letter-spacing:0.000000pt;}
.ws0_c01080{word-spacing:0.000000pt;}
.fs6_c01080{font-size:58.677255pt;}
.fs7_c01080{font-size:58.684997pt;}
.fs3_c01080{font-size:64.011551pt;}
.fsa_c01080{font-size:64.019997pt;}
.fs0_c01080{font-size:69.337389pt;}
.fs2_c01080{font-size:69.345847pt;}
.fs8_c01080{font-size:69.354997pt;}
.fs5_c01080{font-size:74.680143pt;}
.fs9_c01080{font-size:74.689996pt;}
.fsc_c01080{font-size:74.695930pt;}
.fsb_c01080{font-size:80.024996pt;}
.fs1_c01080{font-size:85.345663pt;}
.fs4_c01080{font-size:85.348735pt;}
.y0_c01080{bottom:0.000000pt;}
.y153_c01080{bottom:63.256971pt;}
.y152_c01080{bottom:64.648421pt;}
.y151_c01080{bottom:65.166981pt;}
.y150_c01080{bottom:66.269024pt;}
.y14f_c01080{bottom:69.583888pt;}
.y14e_c01080{bottom:72.056811pt;}
.y14d_c01080{bottom:72.804709pt;}
.y14c_c01080{bottom:73.690667pt;}
.y14b_c01080{bottom:106.019267pt;}
.y14a_c01080{bottom:106.796267pt;}
.y149_c01080{bottom:108.589400pt;}
.y148_c01080{bottom:108.966133pt;}
.y147_c01080{bottom:110.766200pt;}
.y146_c01080{bottom:111.943500pt;}
.y145_c01080{bottom:112.533567pt;}
.y144_c01080{bottom:113.715800pt;}
.y143_c01080{bottom:114.301100pt;}
.y142_c01080{bottom:115.670133pt;}
.y141_c01080{bottom:116.446167pt;}
.y140_c01080{bottom:117.430200pt;}
.y13f_c01080{bottom:136.529667pt;}
.y13e_c01080{bottom:138.666133pt;}
.y13d_c01080{bottom:139.463167pt;}
.y13c_c01080{bottom:140.550300pt;}
.y13b_c01080{bottom:142.112900pt;}
.y13a_c01080{bottom:143.205267pt;}
.y139_c01080{bottom:143.995667pt;}
.y138_c01080{bottom:145.880700pt;}
.y137_c01080{bottom:147.733900pt;}
.y136_c01080{bottom:149.019533pt;}
.y135_c01080{bottom:150.100200pt;}
.y134_c01080{bottom:150.599533pt;}
.y133_c01080{bottom:152.486200pt;}
.y132_c01080{bottom:169.132333pt;}
.y131_c01080{bottom:169.709867pt;}
.y130_c01080{bottom:172.685000pt;}
.y12f_c01080{bottom:173.875067pt;}
.y12e_c01080{bottom:174.451567pt;}
.y12d_c01080{bottom:176.268400pt;}
.y12c_c01080{bottom:177.116700pt;}
.y12b_c01080{bottom:177.693200pt;}
.y12a_c01080{bottom:179.804533pt;}
.y129_c01080{bottom:180.963433pt;}
.y128_c01080{bottom:183.607300pt;}
.y127_c01080{bottom:184.167700pt;}
.y126_c01080{bottom:186.817800pt;}
.y125_c01080{bottom:201.271000pt;}
.y124_c01080{bottom:204.138167pt;}
.y123_c01080{bottom:206.191400pt;}
.y122_c01080{bottom:207.208367pt;}
.y121_c01080{bottom:208.987667pt;}
.y120_c01080{bottom:209.479533pt;}
.y11f_c01080{bottom:210.754800pt;}
.y11e_c01080{bottom:211.802133pt;}
.y11d_c01080{bottom:213.289633pt;}
.y11c_c01080{bottom:215.598367pt;}
.y11b_c01080{bottom:216.347133pt;}
.y11a_c01080{bottom:234.808733pt;}
.y119_c01080{bottom:236.033567pt;}
.y118_c01080{bottom:236.759800pt;}
.y117_c01080{bottom:238.272833pt;}
.y116_c01080{bottom:238.997567pt;}
.y115_c01080{bottom:241.183600pt;}
.y114_c01080{bottom:243.667733pt;}
.y113_c01080{bottom:244.383600pt;}
.y112_c01080{bottom:245.384233pt;}
.y111_c01080{bottom:246.832033pt;}
.y110_c01080{bottom:248.277267pt;}
.y10f_c01080{bottom:266.405800pt;}
.y10e_c01080{bottom:268.184167pt;}
.y10d_c01080{bottom:269.726033pt;}
.y10c_c01080{bottom:270.778900pt;}
.y10b_c01080{bottom:272.277133pt;}
.y10a_c01080{bottom:273.826967pt;}
.y109_c01080{bottom:274.873700pt;}
.y108_c01080{bottom:276.123800pt;}
.y107_c01080{bottom:276.891500pt;}
.y106_c01080{bottom:278.394800pt;}
.y105_c01080{bottom:279.972300pt;}
.y104_c01080{bottom:280.681033pt;}
.y103_c01080{bottom:297.241633pt;}
.y102_c01080{bottom:298.982567pt;}
.y101_c01080{bottom:299.843867pt;}
.y100_c01080{bottom:301.259500pt;}
.yff_c01080{bottom:303.829133pt;}
.yfe_c01080{bottom:305.539633pt;}
.yfd_c01080{bottom:307.232967pt;}
.yfc_c01080{bottom:308.695233pt;}
.yfb_c01080{bottom:309.277367pt;}
.yfa_c01080{bottom:311.827567pt;}
.yf9_c01080{bottom:312.952067pt;}
.yf8_c01080{bottom:314.051667pt;}
.yf7_c01080{bottom:330.089700pt;}
.yf6_c01080{bottom:330.844400pt;}
.yf5_c01080{bottom:332.803533pt;}
.yf4_c01080{bottom:334.274267pt;}
.yf3_c01080{bottom:335.018500pt;}
.yf2_c01080{bottom:338.828667pt;}
.yf1_c01080{bottom:340.119767pt;}
.yf0_c01080{bottom:340.880767pt;}
.yef_c01080{bottom:341.636667pt;}
.yee_c01080{bottom:343.581867pt;}
.yed_c01080{bottom:361.769967pt;}
.yec_c01080{bottom:362.829667pt;}
.yeb_c01080{bottom:363.905933pt;}
.yea_c01080{bottom:364.702967pt;}
.ye9_c01080{bottom:366.582133pt;}
.ye8_c01080{bottom:367.872833pt;}
.ye7_c01080{bottom:368.428667pt;}
.ye6_c01080{bottom:369.208000pt;}
.ye5_c01080{bottom:370.819133pt;}
.ye4_c01080{bottom:371.871033pt;}
.ye3_c01080{bottom:373.192900pt;}
.ye2_c01080{bottom:373.733000pt;}
.ye1_c01080{bottom:376.374500pt;}
.ye0_c01080{bottom:377.429200pt;}
.ydf_c01080{bottom:394.002600pt;}
.yde_c01080{bottom:394.835300pt;}
.ydd_c01080{bottom:396.811600pt;}
.ydc_c01080{bottom:399.555167pt;}
.ydb_c01080{bottom:400.650800pt;}
.yda_c01080{bottom:401.457167pt;}
.yd9_c01080{bottom:403.135567pt;}
.yd8_c01080{bottom:405.053567pt;}
.yd7_c01080{bottom:406.975567pt;}
.yd6_c01080{bottom:407.768300pt;}
.yd5_c01080{bottom:408.880567pt;}
.yd4_c01080{bottom:424.905700pt;}
.yd3_c01080{bottom:425.442067pt;}
.yd2_c01080{bottom:427.623367pt;}
.yd1_c01080{bottom:428.379667pt;}
.yd0_c01080{bottom:429.710300pt;}
.ycf_c01080{bottom:430.540633pt;}
.yce_c01080{bottom:431.601633pt;}
.ycd_c01080{bottom:432.905133pt;}
.ycc_c01080{bottom:433.680600pt;}
.ycb_c01080{bottom:435.838500pt;}
.yca_c01080{bottom:436.598200pt;}
.yc9_c01080{bottom:438.459500pt;}
.yc8_c01080{bottom:439.780867pt;}
.yc7_c01080{bottom:440.570633pt;}
.yc6_c01080{bottom:457.793433pt;}
.yc5_c01080{bottom:459.068600pt;}
.yc4_c01080{bottom:459.831100pt;}
.yc3_c01080{bottom:460.610633pt;}
.yc2_c01080{bottom:462.383000pt;}
.yc1_c01080{bottom:463.413600pt;}
.yc0_c01080{bottom:465.466367pt;}
.ybf_c01080{bottom:467.004900pt;}
.ybe_c01080{bottom:467.751500pt;}
.ybd_c01080{bottom:469.307967pt;}
.ybc_c01080{bottom:470.553367pt;}
.ybb_c01080{bottom:471.302133pt;}
.yba_c01080{bottom:489.912600pt;}
.yb9_c01080{bottom:491.453700pt;}
.yb8_c01080{bottom:492.491067pt;}
.yb7_c01080{bottom:494.575333pt;}
.yb6_c01080{bottom:495.585033pt;}
.yb5_c01080{bottom:497.333000pt;}
.yb4_c01080{bottom:498.380200pt;}
.yb3_c01080{bottom:499.410800pt;}
.yb2_c01080{bottom:501.677700pt;}
.yb1_c01080{bottom:503.711533pt;}
.yb0_c01080{bottom:521.985533pt;}
.yaf_c01080{bottom:522.752933pt;}
.yae_c01080{bottom:524.805233pt;}
.yad_c01080{bottom:525.594600pt;}
.yac_c01080{bottom:526.368133pt;}
.yab_c01080{bottom:528.165967pt;}
.yaa_c01080{bottom:530.224600pt;}
.ya9_c01080{bottom:530.960833pt;}
.ya8_c01080{bottom:533.014067pt;}
.ya7_c01080{bottom:533.763933pt;}
.ya6_c01080{bottom:534.806367pt;}
.ya5_c01080{bottom:535.561600pt;}
.ya4_c01080{bottom:536.838500pt;}
.ya3_c01080{bottom:554.897633pt;}
.ya2_c01080{bottom:555.808300pt;}
.ya1_c01080{bottom:557.424100pt;}
.ya0_c01080{bottom:558.074533pt;}
.y9f_c01080{bottom:560.146967pt;}
.y9e_c01080{bottom:560.786367pt;}
.y9d_c01080{bottom:562.182567pt;}
.y9c_c01080{bottom:563.277167pt;}
.y9b_c01080{bottom:563.950867pt;}
.y9a_c01080{bottom:565.325433pt;}
.y99_c01080{bottom:565.765133pt;}
.y98_c01080{bottom:567.322300pt;}
.y97_c01080{bottom:567.807067pt;}
.y96_c01080{bottom:585.652033pt;}
.y95_c01080{bottom:587.743700pt;}
.y94_c01080{bottom:588.737300pt;}
.y93_c01080{bottom:589.524167pt;}
.y92_c01080{bottom:592.065167pt;}
.y91_c01080{bottom:593.349467pt;}
.y90_c01080{bottom:595.171700pt;}
.y8f_c01080{bottom:597.188867pt;}
.y8e_c01080{bottom:597.937633pt;}
.y8d_c01080{bottom:599.739133pt;}
.y8c_c01080{bottom:618.599300pt;}
.y8b_c01080{bottom:619.909867pt;}
.y8a_c01080{bottom:620.564600pt;}
.y89_c01080{bottom:622.767833pt;}
.y88_c01080{bottom:623.839533pt;}
.y87_c01080{bottom:624.488167pt;}
.y86_c01080{bottom:624.932033pt;}
.y85_c01080{bottom:625.995033pt;}
.y84_c01080{bottom:626.638733pt;}
.y83_c01080{bottom:628.376100pt;}
.y82_c01080{bottom:628.998867pt;}
.y81_c01080{bottom:629.664400pt;}
.y80_c01080{bottom:630.297433pt;}
.y7f_c01080{bottom:630.945933pt;}
.y7e_c01080{bottom:649.830033pt;}
.y7d_c01080{bottom:650.569300pt;}
.y7c_c01080{bottom:652.520033pt;}
.y7b_c01080{bottom:653.522467pt;}
.y7a_c01080{bottom:655.017200pt;}
.y79_c01080{bottom:657.465033pt;}
.y78_c01080{bottom:658.953467pt;}
.y77_c01080{bottom:659.668133pt;}
.y76_c01080{bottom:660.903900pt;}
.y75_c01080{bottom:662.356200pt;}
.y74_c01080{bottom:663.356233pt;}
.y73_c01080{bottom:681.166033pt;}
.y72_c01080{bottom:683.633067pt;}
.y71_c01080{bottom:684.389733pt;}
.y70_c01080{bottom:686.850467pt;}
.y6f_c01080{bottom:689.291567pt;}
.y6e_c01080{bottom:692.011133pt;}
.y6d_c01080{bottom:693.128000pt;}
.y6c_c01080{bottom:717.263248pt;}
.y6b_c01080{bottom:718.482036pt;}
.y6a_c01080{bottom:719.850016pt;}
.y69_c01080{bottom:720.450936pt;}
.y68_c01080{bottom:721.818359pt;}
.y67_c01080{bottom:723.206368pt;}
.y66_c01080{bottom:725.361935pt;}
.y65_c01080{bottom:725.956683pt;}
.y64_c01080{bottom:747.479847pt;}
.y63_c01080{bottom:748.074139pt;}
.y62_c01080{bottom:749.284044pt;}
.y61_c01080{bottom:750.675777pt;}
.y60_c01080{bottom:751.827840pt;}
.y5f_c01080{bottom:752.245083pt;}
.y5e_c01080{bottom:753.589664pt;}
.y5d_c01080{bottom:754.184792pt;}
.y5c_c01080{bottom:755.768411pt;}
.y5b_c01080{bottom:756.944885pt;}
.y5a_c01080{bottom:758.120448pt;}
.y59_c01080{bottom:777.632747pt;}
.y58_c01080{bottom:779.920225pt;}
.y57_c01080{bottom:781.720245pt;}
.y56_c01080{bottom:782.400273pt;}
.y55_c01080{bottom:784.200395pt;}
.y54_c01080{bottom:786.000617pt;}
.y53_c01080{bottom:787.153708pt;}
.y52_c01080{bottom:787.815752pt;}
.y51_c01080{bottom:789.427221pt;}
.y50_c01080{bottom:790.286876pt;}
.y4f_c01080{bottom:809.655208pt;}
.y4e_c01080{bottom:811.403767pt;}
.y4d_c01080{bottom:812.064991pt;}
.y4c_c01080{bottom:812.712731pt;}
.y4b_c01080{bottom:815.316617pt;}
.y4a_c01080{bottom:816.843445pt;}
.y49_c01080{bottom:817.280836pt;}
.y48_c01080{bottom:818.132111pt;}
.y47_c01080{bottom:819.415187pt;}
.y46_c01080{bottom:820.070011pt;}
.y45_c01080{bottom:820.944649pt;}
.y44_c01080{bottom:822.213219pt;}
.y43_c01080{bottom:841.310013pt;}
.y42_c01080{bottom:842.609436pt;}
.y41_c01080{bottom:843.268136pt;}
.y40_c01080{bottom:844.585096pt;}
.y3f_c01080{bottom:845.212031pt;}
.y3e_c01080{bottom:846.940493pt;}
.y3d_c01080{bottom:847.616427pt;}
.y3c_c01080{bottom:848.250268pt;}
.y3b_c01080{bottom:849.316899pt;}
.y3a_c01080{bottom:850.615916pt;}
.y39_c01080{bottom:851.476859pt;}
.y38_c01080{bottom:853.420171pt;}
.y37_c01080{bottom:872.705528pt;}
.y36_c01080{bottom:873.311379pt;}
.y35_c01080{bottom:874.793909pt;}
.y34_c01080{bottom:875.615223pt;}
.y33_c01080{bottom:876.038364pt;}
.y32_c01080{bottom:878.504391pt;}
.y31_c01080{bottom:879.961075pt;}
.y30_c01080{bottom:881.195836pt;}
.y2f_c01080{bottom:882.833988pt;}
.y2e_c01080{bottom:883.458541pt;}
.y2d_c01080{bottom:883.876945pt;}
.y2c_c01080{bottom:884.867576pt;}
.y2b_c01080{bottom:905.476312pt;}
.y2a_c01080{bottom:907.257608pt;}
.y29_c01080{bottom:908.449349pt;}
.y28_c01080{bottom:909.048759pt;}
.y27_c01080{bottom:909.852052pt;}
.y26_c01080{bottom:912.015016pt;}
.y25_c01080{bottom:912.788527pt;}
.y24_c01080{bottom:914.756413pt;}
.y23_c01080{bottom:916.311440pt;}
.y22_c01080{bottom:937.382391pt;}
.y21_c01080{bottom:938.789593pt;}
.y20_c01080{bottom:939.355749pt;}
.y1f_c01080{bottom:940.949923pt;}
.y1e_c01080{bottom:941.535829pt;}
.y1d_c01080{bottom:942.731396pt;}
.y1c_c01080{bottom:944.483821pt;}
.y1b_c01080{bottom:945.065345pt;}
.y1a_c01080{bottom:946.269677pt;}
.y19_c01080{bottom:947.225573pt;}
.y18_c01080{bottom:947.997336pt;}
.y17_c01080{bottom:969.194505pt;}
.y16_c01080{bottom:969.764328pt;}
.y15_c01080{bottom:971.096380pt;}
.y14_c01080{bottom:971.482967pt;}
.y13_c01080{bottom:972.405480pt;}
.y12_c01080{bottom:972.966259pt;}
.y11_c01080{bottom:974.288937pt;}
.y10_c01080{bottom:974.827017pt;}
.yf_c01080{bottom:975.784693pt;}
.ye_c01080{bottom:977.244324pt;}
.yd_c01080{bottom:977.814299pt;}
.yc_c01080{bottom:979.104728pt;}
.yb_c01080{bottom:979.684000pt;}
.ya_c01080{bottom:1001.391613pt;}
.y9_c01080{bottom:1002.762720pt;}
.y8_c01080{bottom:1003.591391pt;}
.y7_c01080{bottom:1004.093367pt;}
.y6_c01080{bottom:1005.783779pt;}
.y5_c01080{bottom:1006.104240pt;}
.y4_c01080{bottom:1007.961547pt;}
.y3_c01080{bottom:1009.618412pt;}
.y2_c01080{bottom:1011.124000pt;}
.y1_c01080{bottom:1076.176000pt;}
.h8_c01080{height:58.677255pt;}
.h9_c01080{height:58.684997pt;}
.h5_c01080{height:64.011551pt;}
.hc_c01080{height:64.019997pt;}
.h2_c01080{height:69.337389pt;}
.h4_c01080{height:69.345847pt;}
.ha_c01080{height:69.354997pt;}
.h7_c01080{height:74.680143pt;}
.hb_c01080{height:74.689996pt;}
.he_c01080{height:74.695930pt;}
.hd_c01080{height:80.024996pt;}
.h3_c01080{height:85.345663pt;}
.h6_c01080{height:85.348735pt;}
.h0_c01080{height:1107.840000pt;}
.h1_c01080{height:1108.000000pt;}
.w1_c01080{width:787.333333pt;}
.w0_c01080{width:787.440000pt;}
.x0_c01080{left:0.000000pt;}
.xd1_c01080{left:130.688667pt;}
.xca_c01080{left:132.150000pt;}
.xc3_c01080{left:133.101700pt;}
.xa0_c01080{left:134.388833pt;}
.x77_c01080{left:135.860433pt;}
.x5a_c01080{left:137.295233pt;}
.x4a_c01080{left:138.726512pt;}
.x38_c01080{left:140.395104pt;}
.x20_c01080{left:141.364008pt;}
.x2_c01080{left:142.832000pt;}
.x78_c01080{left:156.958833pt;}
.xb9_c01080{left:161.435700pt;}
.x91_c01080{left:164.983467pt;}
.x64_c01080{left:166.999833pt;}
.x52_c01080{left:168.001556pt;}
.xb_c01080{left:172.816000pt;}
.xa1_c01080{left:174.129867pt;}
.x43_c01080{left:177.575145pt;}
.xd8_c01080{left:179.473367pt;}
.x17_c01080{left:181.432291pt;}
.x82_c01080{left:184.690633pt;}
.x28_c01080{left:189.177229pt;}
.xbf_c01080{left:191.623900pt;}
.x65_c01080{left:195.790000pt;}
.x39_c01080{left:198.035811pt;}
.xd2_c01080{left:200.551833pt;}
.xa2_c01080{left:202.423733pt;}
.x71_c01080{left:205.834267pt;}
.x29_c01080{left:209.092469pt;}
.xb4_c01080{left:211.091933pt;}
.xaf_c01080{left:212.113333pt;}
.x83_c01080{left:213.725900pt;}
.x21_c01080{left:219.135872pt;}
.xcb_c01080{left:220.489633pt;}
.xba_c01080{left:222.134200pt;}
.x79_c01080{left:224.635533pt;}
.x66_c01080{left:226.040267pt;}
.x18_c01080{left:229.215379pt;}
.x3_c01080{left:231.396000pt;}
.x5b_c01080{left:235.388567pt;}
.x3a_c01080{left:237.821556pt;}
.x2a_c01080{left:238.804663pt;}
.xc_c01080{left:240.733333pt;}
.xb0_c01080{left:242.349333pt;}
.x7a_c01080{left:243.771167pt;}
.x44_c01080{left:247.647159pt;}
.xc0_c01080{left:249.535900pt;}
.xc4_c01080{left:250.652067pt;}
.x67_c01080{left:254.366400pt;}
.x4b_c01080{left:256.340283pt;}
.xd3_c01080{left:259.055567pt;}
.x3b_c01080{left:267.582525pt;}
.x31_c01080{left:268.558144pt;}
.xd_c01080{left:270.732000pt;}
.x92_c01080{left:272.735433pt;}
.x56_c01080{left:275.261333pt;}
.x45_c01080{left:276.454313pt;}
.xbb_c01080{left:279.971433pt;}
.x84_c01080{left:282.642833pt;}
.x5c_c01080{left:284.819233pt;}
.xd9_c01080{left:286.729433pt;}
.x19_c01080{left:289.442239pt;}
.xa9_c01080{left:291.021700pt;}
.xb5_c01080{left:299.011133pt;}
.x8b_c01080{left:301.625800pt;}
.x7b_c01080{left:303.556833pt;}
.xd4_c01080{left:306.691867pt;}
.xc5_c01080{left:307.857300pt;}
.xbc_c01080{left:309.505367pt;}
.x9a_c01080{left:310.828567pt;}
.x72_c01080{left:312.202267pt;}
.x5d_c01080{left:313.405900pt;}
.xda_c01080{left:316.011767pt;}
.x22_c01080{left:317.513997pt;}
.x1a_c01080{left:318.504348pt;}
.xb1_c01080{left:324.433333pt;}
.x3c_c01080{left:325.916540pt;}
.x32_c01080{left:327.590775pt;}
.x4_c01080{left:328.858667pt;}
.x68_c01080{left:333.360333pt;}
.x4c_c01080{left:335.546788pt;}
.xa3_c01080{left:339.586800pt;}
.x8c_c01080{left:341.248800pt;}
.x53_c01080{left:345.168853pt;}
.xe_c01080{left:347.554667pt;}
.x23_c01080{left:356.189263pt;}
.xbd_c01080{left:357.588167pt;}
.x93_c01080{left:360.618567pt;}
.x85_c01080{left:361.623533pt;}
.x69_c01080{left:362.630533pt;}
.x3d_c01080{left:364.613003pt;}
.xcc_c01080{left:365.931467pt;}
.xb6_c01080{left:369.526767pt;}
.x5e_c01080{left:372.943233pt;}
.xdb_c01080{left:375.095133pt;}
.x1_c01080{left:376.208000pt;}
.xaa_c01080{left:378.981333pt;}
.x7c_c01080{left:380.426000pt;}
.x73_c01080{left:382.263167pt;}
.x3e_c01080{left:384.474529pt;}
.x86_c01080{left:389.952167pt;}
.xe0_c01080{left:395.236000pt;}
.xf_c01080{left:397.958667pt;}
.xa4_c01080{left:399.518300pt;}
.x33_c01080{left:404.874367pt;}
.x1b_c01080{left:406.104009pt;}
.x6a_c01080{left:410.967500pt;}
.x54_c01080{left:413.558228pt;}
.xc6_c01080{left:416.113267pt;}
.xc1_c01080{left:417.561233pt;}
.x9b_c01080{left:419.464467pt;}
.x10_c01080{left:426.278667pt;}
.xa5_c01080{left:428.304133pt;}
.x6b_c01080{left:431.123667pt;}
.x4d_c01080{left:432.582297pt;}
.xe1_c01080{left:434.594667pt;}
.x34_c01080{left:435.605952pt;}
.x5_c01080{left:438.112000pt;}
.x94_c01080{left:439.580600pt;}
.x7d_c01080{left:441.130367pt;}
.x55_c01080{left:443.570979pt;}
.x2b_c01080{left:444.986168pt;}
.x8d_c01080{left:448.786133pt;}
.x3f_c01080{left:453.882577pt;}
.xcd_c01080{left:455.513600pt;}
.x6_c01080{left:456.962667pt;}
.x6c_c01080{left:460.591200pt;}
.xdc_c01080{left:463.454167pt;}
.x24_c01080{left:464.343211pt;}
.x1c_c01080{left:465.869536pt;}
.x9c_c01080{left:467.762067pt;}
.x7e_c01080{left:468.947767pt;}
.x5f_c01080{left:470.856567pt;}
.xd5_c01080{left:474.388800pt;}
.xb2_c01080{left:476.840000pt;}
.x95_c01080{left:479.203600pt;}
.x57_c01080{left:481.688000pt;}
.x46_c01080{left:483.110607pt;}
.xc7_c01080{left:484.563567pt;}
.x8e_c01080{left:487.626500pt;}
.x11_c01080{left:495.893333pt;}
.xe2_c01080{left:502.809333pt;}
.x25_c01080{left:504.515784pt;}
.x9d_c01080{left:507.053433pt;}
.x6d_c01080{left:509.329533pt;}
.x4e_c01080{left:511.035469pt;}
.x47_c01080{left:512.653685pt;}
.x35_c01080{left:514.152135pt;}
.xbe_c01080{left:515.082900pt;}
.xc8_c01080{left:523.694600pt;}
.x12_c01080{left:525.408000pt;}
.x74_c01080{left:529.404833pt;}
.x60_c01080{left:530.645900pt;}
.x26_c01080{left:534.519227pt;}
.xab_c01080{left:535.920167pt;}
.x87_c01080{left:538.287133pt;}
.x36_c01080{left:542.655847pt;}
.xce_c01080{left:544.347833pt;}
.x96_c01080{left:547.376567pt;}
.xdd_c01080{left:553.441400pt;}
.x7_c01080{left:556.398667pt;}
.x75_c01080{left:559.652067pt;}
.x2c_c01080{left:562.421709pt;}
.xcf_c01080{left:563.565433pt;}
.xa6_c01080{left:565.435200pt;}
.x88_c01080{left:568.054400pt;}
.x61_c01080{left:570.743233pt;}
.x40_c01080{left:572.255839pt;}
.x13_c01080{left:573.961333pt;}
.x1d_c01080{left:574.854125pt;}
.x97_c01080{left:577.383833pt;}
.x4f_c01080{left:580.634152pt;}
.x2d_c01080{left:582.586283pt;}
.x8_c01080{left:585.926667pt;}
.x7f_c01080{left:587.308333pt;}
.x48_c01080{left:590.894399pt;}
.x14_c01080{left:594.308000pt;}
.x76_c01080{left:597.848433pt;}
.x41_c01080{left:601.714167pt;}
.x1e_c01080{left:603.177593pt;}
.xac_c01080{left:605.536700pt;}
.x98_c01080{left:606.709767pt;}
.x8f_c01080{left:607.688833pt;}
.x6e_c01080{left:609.466367pt;}
.x58_c01080{left:610.384000pt;}
.xd6_c01080{left:612.972533pt;}
.x9e_c01080{left:615.098700pt;}
.x2e_c01080{left:621.671455pt;}
.xb7_c01080{left:624.318633pt;}
.x37_c01080{left:632.457396pt;}
.x9_c01080{left:634.672000pt;}
.xa7_c01080{left:636.001900pt;}
.x6f_c01080{left:639.231267pt;}
.x50_c01080{left:641.154345pt;}
.xd7_c01080{left:642.505733pt;}
.xb3_c01080{left:643.804000pt;}
.x62_c01080{left:648.772567pt;}
.xb8_c01080{left:654.021000pt;}
.x99_c01080{left:655.741867pt;}
.x80_c01080{left:657.543833pt;}
.xde_c01080{left:661.902933pt;}
.x15_c01080{left:664.416000pt;}
.xa8_c01080{left:665.734333pt;}
.x90_c01080{left:666.984700pt;}
.x51_c01080{left:670.888455pt;}
.xc2_c01080{left:672.555900pt;}
.x1f_c01080{left:673.520251pt;}
.xad_c01080{left:674.918567pt;}
.x89_c01080{left:677.345000pt;}
.x63_c01080{left:678.343233pt;}
.x27_c01080{left:683.132389pt;}
.x49_c01080{left:690.368183pt;}
.x2f_c01080{left:692.258103pt;}
.x16_c01080{left:694.406667pt;}
.x9f_c01080{left:695.893333pt;}
.x81_c01080{left:697.119133pt;}
.x70_c01080{left:698.805067pt;}
.xdf_c01080{left:700.774467pt;}
.xd0_c01080{left:702.369400pt;}
.x8a_c01080{left:706.866933pt;}
.x59_c01080{left:709.065333pt;}
.x42_c01080{left:711.205243pt;}
.xc9_c01080{left:712.932533pt;}
.xae_c01080{left:714.157933pt;}
.xa_c01080{left:715.325333pt;}
.x30_c01080{left:721.126347pt;}
}





/* 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_c01081 {
    display:none;
  }
  .loading-indicator_c01081.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01081 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_c01081 { 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_c01081" -> "#page-container .classname_c01081")
 */
.pf_c01081 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01081 { /* 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_c01081.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01081 { /* 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_c01081 { /* 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_c01081 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01081 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01081 {overflow:visible;}
  }
}
.c_c01081 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01081 { /* 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_c01081:after { /* webkit #35443 */
  content: '';
}
.t_c01081:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01081 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 */
}
.__c01081 { /* 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_c01081 { /* info for Javascript */
  display:none;
}
.l_c01081 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01081 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01081 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01081: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_c01081 {
    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_c01081.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01081.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_c01081 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01081{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01081;src:url('chunks/assets/font_74d7e987f08e4505b74f4479.woff2')format("woff");}.ff1_c01081{font-family:ff1_c01081;line-height:1.000000;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;}
.m0_c01081{transform:matrix(0.064030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.064030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.064030,0.000000,0.000000,0.250000,0,0);}
.md_c01081{transform:matrix(0.207810,-0.002078,0.002500,0.249988,0,0);-ms-transform:matrix(0.207810,-0.002078,0.002500,0.249988,0,0);-webkit-transform:matrix(0.207810,-0.002078,0.002500,0.249988,0,0);}
.m4_c01081{transform:matrix(0.237290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237290,0.000000,0.000000,0.250000,0,0);}
.mb_c01081{transform:matrix(0.241870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241870,0.000000,0.000000,0.250000,0,0);}
.m6_c01081{transform:matrix(0.262455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262455,0.000000,0.000000,0.250000,0,0);}
.m9_c01081{transform:matrix(0.273600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273600,0.000000,0.000000,0.250000,0,0);}
.m5_c01081{transform:matrix(0.288875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288875,0.000000,0.000000,0.250000,0,0);}
.m7_c01081{transform:matrix(0.302015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302015,0.000000,0.000000,0.250000,0,0);}
.ma_c01081{transform:matrix(0.340180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340180,0.000000,0.000000,0.250000,0,0);}
.m8_c01081{transform:matrix(0.364750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364750,0.000000,0.000000,0.250000,0,0);}
.m3_c01081{transform:matrix(0.376070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376070,0.000000,0.000000,0.250000,0,0);}
.m1_c01081{transform:matrix(0.737025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.737025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.737025,0.000000,0.000000,0.250000,0,0);}
.m2_c01081{transform:matrix(0.820695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.820695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.820695,0.000000,0.000000,0.250000,0,0);}
.mc_c01081{transform:matrix(0.841023,-0.008410,0.002500,0.249988,0,0);-ms-transform:matrix(0.841023,-0.008410,0.002500,0.249988,0,0);-webkit-transform:matrix(0.841023,-0.008410,0.002500,0.249988,0,0);}
.v0_c01081{vertical-align:0.000000px;}
.ls0_c01081{letter-spacing:0.000000px;}
.sc__c01081{text-shadow:none;}
.sc0_c01081{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__c01081{-webkit-text-stroke:0px transparent;}
.sc0_c01081{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01081{word-spacing:0.000000px;}
.fc0_c01081{color:transparent;}
.fs0_c01081{font-size:18.000000px;}
.fs1_c01081{font-size:84.000000px;}
.fs2_c01081{font-size:102.000000px;}
.fs3_c01081{font-size:120.006000px;}
.y0_c01081{bottom:0.000000px;}
.y5_c01081{bottom:520.563000px;}
.y6_c01081{bottom:523.012155px;}
.y4_c01081{bottom:550.800000px;}
.y3_c01081{bottom:560.356500px;}
.y2_c01081{bottom:809.890500px;}
.y1_c01081{bottom:826.329000px;}
.h2_c01081{height:18.000000px;}
.h3_c01081{height:84.000000px;}
.h4_c01081{height:102.000000px;}
.h5_c01081{height:120.006000px;}
.h0_c01081{height:1246.320000px;}
.h1_c01081{height:1246.500000px;}
.w1_c01081{width:885.750000px;}
.w0_c01081{width:885.870000px;}
.x0_c01081{left:0.000000px;}
.xd_c01081{left:141.501000px;}
.x3_c01081{left:192.240000px;}
.x4_c01081{left:248.400000px;}
.x5_c01081{left:314.550000px;}
.x8_c01081{left:336.150000px;}
.x9_c01081{left:381.240000px;}
.xe_c01081{left:386.416500px;}
.x6_c01081{left:389.340000px;}
.xc_c01081{left:407.160000px;}
.x7_c01081{left:423.090000px;}
.x1_c01081{left:448.470000px;}
.x2_c01081{left:454.140000px;}
.xa_c01081{left:457.920000px;}
.xb_c01081{left:504.360000px;}
@media print{
.v0_c01081{vertical-align:0.000000pt;}
.ls0_c01081{letter-spacing:0.000000pt;}
.ws0_c01081{word-spacing:0.000000pt;}
.fs0_c01081{font-size:16.000000pt;}
.fs1_c01081{font-size:74.666667pt;}
.fs2_c01081{font-size:90.666667pt;}
.fs3_c01081{font-size:106.672000pt;}
.y0_c01081{bottom:0.000000pt;}
.y5_c01081{bottom:462.722667pt;}
.y6_c01081{bottom:464.899693pt;}
.y4_c01081{bottom:489.600000pt;}
.y3_c01081{bottom:498.094667pt;}
.y2_c01081{bottom:719.902667pt;}
.y1_c01081{bottom:734.514667pt;}
.h2_c01081{height:16.000000pt;}
.h3_c01081{height:74.666667pt;}
.h4_c01081{height:90.666667pt;}
.h5_c01081{height:106.672000pt;}
.h0_c01081{height:1107.840000pt;}
.h1_c01081{height:1108.000000pt;}
.w1_c01081{width:787.333333pt;}
.w0_c01081{width:787.440000pt;}
.x0_c01081{left:0.000000pt;}
.xd_c01081{left:125.778667pt;}
.x3_c01081{left:170.880000pt;}
.x4_c01081{left:220.800000pt;}
.x5_c01081{left:279.600000pt;}
.x8_c01081{left:298.800000pt;}
.x9_c01081{left:338.880000pt;}
.xe_c01081{left:343.481333pt;}
.x6_c01081{left:346.080000pt;}
.xc_c01081{left:361.920000pt;}
.x7_c01081{left:376.080000pt;}
.x1_c01081{left:398.640000pt;}
.x2_c01081{left:403.680000pt;}
.xa_c01081{left:407.040000pt;}
.xb_c01081{left:448.320000pt;}
}





/* 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_c01082 {
    display:none;
  }
  .loading-indicator_c01082.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01082 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_c01082 { 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_c01082" -> "#page-container .classname_c01082")
 */
.pf_c01082 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01082 { /* 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_c01082.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01082 { /* 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_c01082 { /* 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_c01082 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01082 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01082 {overflow:visible;}
  }
}
.c_c01082 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01082 { /* 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_c01082:after { /* webkit #35443 */
  content: '';
}
.t_c01082:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01082 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 */
}
.__c01082 { /* 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_c01082 { /* info for Javascript */
  display:none;
}
.l_c01082 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01082 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01082 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01082: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_c01082 {
    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_c01082.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01082.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_c01082 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01082{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01082;src:url('chunks/assets/font_b11a17f404e7258299fdf971.woff2')format("woff");}.ff1_c01082{font-family:ff1_c01082;line-height:1.000000;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;}
.m6f_c01082{transform:matrix(0.010149,0.000569,-0.014006,0.249607,0,0);-ms-transform:matrix(0.010149,0.000569,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.010149,0.000569,-0.014006,0.249607,0,0);}
.m6e_c01082{transform:matrix(0.027232,0.001528,-0.014006,0.249607,0,0);-ms-transform:matrix(0.027232,0.001528,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.027232,0.001528,-0.014006,0.249607,0,0);}
.mfb_c01082{transform:matrix(0.032093,0.001833,-0.014255,0.249593,0,0);-ms-transform:matrix(0.032093,0.001833,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.032093,0.001833,-0.014255,0.249593,0,0);}
.mca_c01082{transform:matrix(0.033485,0.001912,-0.014255,0.249593,0,0);-ms-transform:matrix(0.033485,0.001912,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.033485,0.001912,-0.014255,0.249593,0,0);}
.m6_c01082{transform:matrix(0.147443,0.007822,-0.013245,0.249649,0,0);-ms-transform:matrix(0.147443,0.007822,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.147443,0.007822,-0.013245,0.249649,0,0);}
.m9_c01082{transform:matrix(0.168323,0.008930,-0.013245,0.249649,0,0);-ms-transform:matrix(0.168323,0.008930,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.168323,0.008930,-0.013245,0.249649,0,0);}
.m3_c01082{transform:matrix(0.171709,0.009110,-0.013245,0.249649,0,0);-ms-transform:matrix(0.171709,0.009110,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.171709,0.009110,-0.013245,0.249649,0,0);}
.m4_c01082{transform:matrix(0.176637,0.009371,-0.013245,0.249649,0,0);-ms-transform:matrix(0.176637,0.009371,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.176637,0.009371,-0.013245,0.249649,0,0);}
.mc_c01082{transform:matrix(0.178654,0.009478,-0.013245,0.249649,0,0);-ms-transform:matrix(0.178654,0.009478,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.178654,0.009478,-0.013245,0.249649,0,0);}
.ma1_c01082{transform:matrix(0.183815,0.010498,-0.014255,0.249593,0,0);-ms-transform:matrix(0.183815,0.010498,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.183815,0.010498,-0.014255,0.249593,0,0);}
.m8_c01082{transform:matrix(0.183926,0.009758,-0.013245,0.249649,0,0);-ms-transform:matrix(0.183926,0.009758,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.183926,0.009758,-0.013245,0.249649,0,0);}
.m2_c01082{transform:matrix(0.187262,0.009935,-0.013245,0.249649,0,0);-ms-transform:matrix(0.187262,0.009935,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.187262,0.009935,-0.013245,0.249649,0,0);}
.mf8_c01082{transform:matrix(0.188290,0.011320,-0.015003,0.249549,0,0);-ms-transform:matrix(0.188290,0.011320,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.188290,0.011320,-0.015003,0.249549,0,0);}
.m100_c01082{transform:matrix(0.189118,0.010422,-0.013757,0.249621,0,0);-ms-transform:matrix(0.189118,0.010422,-0.013757,0.249621,0,0);-webkit-transform:matrix(0.189118,0.010422,-0.013757,0.249621,0,0);}
.m0_c01082{transform:matrix(0.189209,0.010038,-0.013245,0.249649,0,0);-ms-transform:matrix(0.189209,0.010038,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.189209,0.010038,-0.013245,0.249649,0,0);}
.m73_c01082{transform:matrix(0.192238,0.011557,-0.015003,0.249549,0,0);-ms-transform:matrix(0.192238,0.011557,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.192238,0.011557,-0.015003,0.249549,0,0);}
.m6c_c01082{transform:matrix(0.194045,0.010888,-0.014006,0.249607,0,0);-ms-transform:matrix(0.194045,0.010888,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.194045,0.010888,-0.014006,0.249607,0,0);}
.m77_c01082{transform:matrix(0.194693,0.011705,-0.015003,0.249549,0,0);-ms-transform:matrix(0.194693,0.011705,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.194693,0.011705,-0.015003,0.249549,0,0);}
.m9f_c01082{transform:matrix(0.196195,0.011206,-0.014255,0.249593,0,0);-ms-transform:matrix(0.196195,0.011206,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.196195,0.011206,-0.014255,0.249593,0,0);}
.ma3_c01082{transform:matrix(0.197009,0.011252,-0.014255,0.249593,0,0);-ms-transform:matrix(0.197009,0.011252,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.197009,0.011252,-0.014255,0.249593,0,0);}
.m8c_c01082{transform:matrix(0.198052,0.011907,-0.015003,0.249549,0,0);-ms-transform:matrix(0.198052,0.011907,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.198052,0.011907,-0.015003,0.249549,0,0);}
.m5c_c01082{transform:matrix(0.198088,0.011115,-0.014006,0.249607,0,0);-ms-transform:matrix(0.198088,0.011115,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.198088,0.011115,-0.014006,0.249607,0,0);}
.m75_c01082{transform:matrix(0.198187,0.011915,-0.015003,0.249549,0,0);-ms-transform:matrix(0.198187,0.011915,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.198187,0.011915,-0.015003,0.249549,0,0);}
.ma_c01082{transform:matrix(0.198706,0.010542,-0.013245,0.249649,0,0);-ms-transform:matrix(0.198706,0.010542,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.198706,0.010542,-0.013245,0.249649,0,0);}
.m2f_c01082{transform:matrix(0.198722,0.011151,-0.014006,0.249607,0,0);-ms-transform:matrix(0.198722,0.011151,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.198722,0.011151,-0.014006,0.249607,0,0);}
.mac_c01082{transform:matrix(0.198776,0.011353,-0.014255,0.249593,0,0);-ms-transform:matrix(0.198776,0.011353,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.198776,0.011353,-0.014255,0.249593,0,0);}
.m8e_c01082{transform:matrix(0.199420,0.011989,-0.015003,0.249549,0,0);-ms-transform:matrix(0.199420,0.011989,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.199420,0.011989,-0.015003,0.249549,0,0);}
.m7_c01082{transform:matrix(0.199450,0.010581,-0.013245,0.249649,0,0);-ms-transform:matrix(0.199450,0.010581,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.199450,0.010581,-0.013245,0.249649,0,0);}
.m7a_c01082{transform:matrix(0.200518,0.012055,-0.015003,0.249549,0,0);-ms-transform:matrix(0.200518,0.012055,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.200518,0.012055,-0.015003,0.249549,0,0);}
.ma9_c01082{transform:matrix(0.200553,0.011454,-0.014255,0.249593,0,0);-ms-transform:matrix(0.200553,0.011454,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.200553,0.011454,-0.014255,0.249593,0,0);}
.m85_c01082{transform:matrix(0.201167,0.012094,-0.015003,0.249549,0,0);-ms-transform:matrix(0.201167,0.012094,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.201167,0.012094,-0.015003,0.249549,0,0);}
.m7c_c01082{transform:matrix(0.202405,0.012169,-0.015003,0.249549,0,0);-ms-transform:matrix(0.202405,0.012169,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.202405,0.012169,-0.015003,0.249549,0,0);}
.m89_c01082{transform:matrix(0.202834,0.012194,-0.015003,0.249549,0,0);-ms-transform:matrix(0.202834,0.012194,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.202834,0.012194,-0.015003,0.249549,0,0);}
.m27_c01082{transform:matrix(0.203005,0.010770,-0.013245,0.249649,0,0);-ms-transform:matrix(0.203005,0.010770,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.203005,0.010770,-0.013245,0.249649,0,0);}
.m9d_c01082{transform:matrix(0.203788,0.011639,-0.014255,0.249593,0,0);-ms-transform:matrix(0.203788,0.011639,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.203788,0.011639,-0.014255,0.249593,0,0);}
.mb9_c01082{transform:matrix(0.203998,0.011651,-0.014255,0.249593,0,0);-ms-transform:matrix(0.203998,0.011651,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.203998,0.011651,-0.014255,0.249593,0,0);}
.md0_c01082{transform:matrix(0.205760,0.011752,-0.014255,0.249593,0,0);-ms-transform:matrix(0.205760,0.011752,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.205760,0.011752,-0.014255,0.249593,0,0);}
.m33_c01082{transform:matrix(0.205771,0.011546,-0.014006,0.249607,0,0);-ms-transform:matrix(0.205771,0.011546,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.205771,0.011546,-0.014006,0.249607,0,0);}
.m8d_c01082{transform:matrix(0.206008,0.012385,-0.015003,0.249549,0,0);-ms-transform:matrix(0.206008,0.012385,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.206008,0.012385,-0.015003,0.249549,0,0);}
.mc4_c01082{transform:matrix(0.206558,0.011797,-0.014255,0.249593,0,0);-ms-transform:matrix(0.206558,0.011797,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.206558,0.011797,-0.014255,0.249593,0,0);}
.md5_c01082{transform:matrix(0.207058,0.011826,-0.014255,0.249593,0,0);-ms-transform:matrix(0.207058,0.011826,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.207058,0.011826,-0.014255,0.249593,0,0);}
.m9e_c01082{transform:matrix(0.207557,0.011854,-0.014255,0.249593,0,0);-ms-transform:matrix(0.207557,0.011854,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.207557,0.011854,-0.014255,0.249593,0,0);}
.m35_c01082{transform:matrix(0.207688,0.011654,-0.014006,0.249607,0,0);-ms-transform:matrix(0.207688,0.011654,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.207688,0.011654,-0.014006,0.249607,0,0);}
.mf0_c01082{transform:matrix(0.208938,0.012561,-0.015003,0.249549,0,0);-ms-transform:matrix(0.208938,0.012561,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.208938,0.012561,-0.015003,0.249549,0,0);}
.mde_c01082{transform:matrix(0.208954,0.011934,-0.014255,0.249593,0,0);-ms-transform:matrix(0.208954,0.011934,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.208954,0.011934,-0.014255,0.249593,0,0);}
.m6b_c01082{transform:matrix(0.209031,0.011729,-0.014006,0.249607,0,0);-ms-transform:matrix(0.209031,0.011729,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.209031,0.011729,-0.014006,0.249607,0,0);}
.md1_c01082{transform:matrix(0.209164,0.011946,-0.014255,0.249593,0,0);-ms-transform:matrix(0.209164,0.011946,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.209164,0.011946,-0.014255,0.249593,0,0);}
.maf_c01082{transform:matrix(0.209294,0.011954,-0.014255,0.249593,0,0);-ms-transform:matrix(0.209294,0.011954,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.209294,0.011954,-0.014255,0.249593,0,0);}
.m1_c01082{transform:matrix(0.209815,0.011131,-0.013245,0.249649,0,0);-ms-transform:matrix(0.209815,0.011131,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.209815,0.011131,-0.013245,0.249649,0,0);}
.m82_c01082{transform:matrix(0.210310,0.012644,-0.015003,0.249549,0,0);-ms-transform:matrix(0.210310,0.012644,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.210310,0.012644,-0.015003,0.249549,0,0);}
.m38_c01082{transform:matrix(0.210883,0.011833,-0.014006,0.249607,0,0);-ms-transform:matrix(0.210883,0.011833,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.210883,0.011833,-0.014006,0.249607,0,0);}
.m74_c01082{transform:matrix(0.210909,0.012680,-0.015003,0.249549,0,0);-ms-transform:matrix(0.210909,0.012680,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.210909,0.012680,-0.015003,0.249549,0,0);}
.m55_c01082{transform:matrix(0.211487,0.011867,-0.014006,0.249607,0,0);-ms-transform:matrix(0.211487,0.011867,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.211487,0.011867,-0.014006,0.249607,0,0);}
.mda_c01082{transform:matrix(0.211585,0.012085,-0.014255,0.249593,0,0);-ms-transform:matrix(0.211585,0.012085,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.211585,0.012085,-0.014255,0.249593,0,0);}
.m5b_c01082{transform:matrix(0.211597,0.011873,-0.014006,0.249607,0,0);-ms-transform:matrix(0.211597,0.011873,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.211597,0.011873,-0.014006,0.249607,0,0);}
.m7f_c01082{transform:matrix(0.212032,0.012747,-0.015003,0.249549,0,0);-ms-transform:matrix(0.212032,0.012747,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.212032,0.012747,-0.015003,0.249549,0,0);}
.ma8_c01082{transform:matrix(0.213118,0.012172,-0.014255,0.249593,0,0);-ms-transform:matrix(0.213118,0.012172,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.213118,0.012172,-0.014255,0.249593,0,0);}
.m7b_c01082{transform:matrix(0.213155,0.012815,-0.015003,0.249549,0,0);-ms-transform:matrix(0.213155,0.012815,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.213155,0.012815,-0.015003,0.249549,0,0);}
.m49_c01082{transform:matrix(0.214463,0.012034,-0.014006,0.249607,0,0);-ms-transform:matrix(0.214463,0.012034,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.214463,0.012034,-0.014006,0.249607,0,0);}
.maa_c01082{transform:matrix(0.215134,0.012287,-0.014255,0.249593,0,0);-ms-transform:matrix(0.215134,0.012287,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.215134,0.012287,-0.014255,0.249593,0,0);}
.mad_c01082{transform:matrix(0.215299,0.012297,-0.014255,0.249593,0,0);-ms-transform:matrix(0.215299,0.012297,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.215299,0.012297,-0.014255,0.249593,0,0);}
.m57_c01082{transform:matrix(0.215376,0.012085,-0.014006,0.249607,0,0);-ms-transform:matrix(0.215376,0.012085,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.215376,0.012085,-0.014006,0.249607,0,0);}
.mb2_c01082{transform:matrix(0.215998,0.012337,-0.014255,0.249593,0,0);-ms-transform:matrix(0.215998,0.012337,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.215998,0.012337,-0.014255,0.249593,0,0);}
.m5_c01082{transform:matrix(0.216635,0.011493,-0.013245,0.249649,0,0);-ms-transform:matrix(0.216635,0.011493,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.216635,0.011493,-0.013245,0.249649,0,0);}
.m106_c01082{transform:matrix(0.216946,0.011956,-0.013757,0.249621,0,0);-ms-transform:matrix(0.216946,0.011956,-0.013757,0.249621,0,0);-webkit-transform:matrix(0.216946,0.011956,-0.013757,0.249621,0,0);}
.m71_c01082{transform:matrix(0.217138,0.013054,-0.015003,0.249549,0,0);-ms-transform:matrix(0.217138,0.013054,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.217138,0.013054,-0.015003,0.249549,0,0);}
.m54_c01082{transform:matrix(0.217158,0.012185,-0.014006,0.249607,0,0);-ms-transform:matrix(0.217158,0.012185,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.217158,0.012185,-0.014006,0.249607,0,0);}
.m109_c01082{transform:matrix(0.217912,0.013101,-0.015003,0.249549,0,0);-ms-transform:matrix(0.217912,0.013101,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.217912,0.013101,-0.015003,0.249549,0,0);}
.m8b_c01082{transform:matrix(0.218226,0.013120,-0.015003,0.249549,0,0);-ms-transform:matrix(0.218226,0.013120,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.218226,0.013120,-0.015003,0.249549,0,0);}
.ma4_c01082{transform:matrix(0.219497,0.012536,-0.014255,0.249593,0,0);-ms-transform:matrix(0.219497,0.012536,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.219497,0.012536,-0.014255,0.249593,0,0);}
.m8f_c01082{transform:matrix(0.219613,0.013203,-0.015003,0.249549,0,0);-ms-transform:matrix(0.219613,0.013203,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.219613,0.013203,-0.015003,0.249549,0,0);}
.m70_c01082{transform:matrix(0.219918,0.013222,-0.015003,0.249549,0,0);-ms-transform:matrix(0.219918,0.013222,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.219918,0.013222,-0.015003,0.249549,0,0);}
.m63_c01082{transform:matrix(0.220793,0.012389,-0.014006,0.249607,0,0);-ms-transform:matrix(0.220793,0.012389,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.220793,0.012389,-0.014006,0.249607,0,0);}
.m78_c01082{transform:matrix(0.221056,0.013290,-0.015003,0.249549,0,0);-ms-transform:matrix(0.221056,0.013290,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.221056,0.013290,-0.015003,0.249549,0,0);}
.mdd_c01082{transform:matrix(0.221095,0.012628,-0.014255,0.249593,0,0);-ms-transform:matrix(0.221095,0.012628,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.221095,0.012628,-0.014255,0.249593,0,0);}
.m32_c01082{transform:matrix(0.221107,0.012407,-0.014006,0.249607,0,0);-ms-transform:matrix(0.221107,0.012407,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.221107,0.012407,-0.014006,0.249607,0,0);}
.ma6_c01082{transform:matrix(0.221195,0.012633,-0.014255,0.249593,0,0);-ms-transform:matrix(0.221195,0.012633,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.221195,0.012633,-0.014255,0.249593,0,0);}
.mb0_c01082{transform:matrix(0.222343,0.012699,-0.014255,0.249593,0,0);-ms-transform:matrix(0.222343,0.012699,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.222343,0.012699,-0.014255,0.249593,0,0);}
.m58_c01082{transform:matrix(0.222590,0.012490,-0.014006,0.249607,0,0);-ms-transform:matrix(0.222590,0.012490,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.222590,0.012490,-0.014006,0.249607,0,0);}
.m86_c01082{transform:matrix(0.223831,0.013457,-0.015003,0.249549,0,0);-ms-transform:matrix(0.223831,0.013457,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.223831,0.013457,-0.015003,0.249549,0,0);}
.m84_c01082{transform:matrix(0.224300,0.013485,-0.015003,0.249549,0,0);-ms-transform:matrix(0.224300,0.013485,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.224300,0.013485,-0.015003,0.249549,0,0);}
.m47_c01082{transform:matrix(0.224327,0.012587,-0.014006,0.249607,0,0);-ms-transform:matrix(0.224327,0.012587,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.224327,0.012587,-0.014006,0.249607,0,0);}
.m102_c01082{transform:matrix(0.224340,0.012363,-0.013757,0.249621,0,0);-ms-transform:matrix(0.224340,0.012363,-0.013757,0.249621,0,0);-webkit-transform:matrix(0.224340,0.012363,-0.013757,0.249621,0,0);}
.m3a_c01082{transform:matrix(0.225405,0.012648,-0.014006,0.249607,0,0);-ms-transform:matrix(0.225405,0.012648,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.225405,0.012648,-0.014006,0.249607,0,0);}
.m83_c01082{transform:matrix(0.225573,0.013561,-0.015003,0.249549,0,0);-ms-transform:matrix(0.225573,0.013561,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.225573,0.013561,-0.015003,0.249549,0,0);}
.m80_c01082{transform:matrix(0.225673,0.013567,-0.015003,0.249549,0,0);-ms-transform:matrix(0.225673,0.013567,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.225673,0.013567,-0.015003,0.249549,0,0);}
.m4d_c01082{transform:matrix(0.225755,0.012668,-0.014006,0.249607,0,0);-ms-transform:matrix(0.225755,0.012668,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.225755,0.012668,-0.014006,0.249607,0,0);}
.m26_c01082{transform:matrix(0.225987,0.011989,-0.013245,0.249649,0,0);-ms-transform:matrix(0.225987,0.011989,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.225987,0.011989,-0.013245,0.249649,0,0);}
.m10c_c01082{transform:matrix(0.226336,0.013607,-0.015003,0.249549,0,0);-ms-transform:matrix(0.226336,0.013607,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.226336,0.013607,-0.015003,0.249549,0,0);}
.mbe_c01082{transform:matrix(0.226376,0.012929,-0.014255,0.249593,0,0);-ms-transform:matrix(0.226376,0.012929,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.226376,0.012929,-0.014255,0.249593,0,0);}
.m40_c01082{transform:matrix(0.226389,0.012703,-0.014006,0.249607,0,0);-ms-transform:matrix(0.226389,0.012703,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.226389,0.012703,-0.014006,0.249607,0,0);}
.m21_c01082{transform:matrix(0.226427,0.012013,-0.013245,0.249649,0,0);-ms-transform:matrix(0.226427,0.012013,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.226427,0.012013,-0.013245,0.249649,0,0);}
.m8a_c01082{transform:matrix(0.226606,0.013624,-0.015003,0.249549,0,0);-ms-transform:matrix(0.226606,0.013624,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.226606,0.013624,-0.015003,0.249549,0,0);}
.md2_c01082{transform:matrix(0.226895,0.012959,-0.014255,0.249593,0,0);-ms-transform:matrix(0.226895,0.012959,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.226895,0.012959,-0.014255,0.249593,0,0);}
.me5_c01082{transform:matrix(0.226992,0.014102,-0.015501,0.249519,0,0);-ms-transform:matrix(0.226992,0.014102,-0.015501,0.249519,0,0);-webkit-transform:matrix(0.226992,0.014102,-0.015501,0.249519,0,0);}
.mf4_c01082{transform:matrix(0.227145,0.013656,-0.015003,0.249549,0,0);-ms-transform:matrix(0.227145,0.013656,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.227145,0.013656,-0.015003,0.249549,0,0);}
.m76_c01082{transform:matrix(0.227170,0.013658,-0.015003,0.249549,0,0);-ms-transform:matrix(0.227170,0.013658,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.227170,0.013658,-0.015003,0.249549,0,0);}
.med_c01082{transform:matrix(0.227275,0.013664,-0.015003,0.249549,0,0);-ms-transform:matrix(0.227275,0.013664,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.227275,0.013664,-0.015003,0.249549,0,0);}
.m4b_c01082{transform:matrix(0.227802,0.012782,-0.014006,0.249607,0,0);-ms-transform:matrix(0.227802,0.012782,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.227802,0.012782,-0.014006,0.249607,0,0);}
.m19_c01082{transform:matrix(0.227840,0.012088,-0.013245,0.249649,0,0);-ms-transform:matrix(0.227840,0.012088,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.227840,0.012088,-0.013245,0.249649,0,0);}
.m87_c01082{transform:matrix(0.227998,0.013707,-0.015003,0.249549,0,0);-ms-transform:matrix(0.227998,0.013707,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.227998,0.013707,-0.015003,0.249549,0,0);}
.m65_c01082{transform:matrix(0.228011,0.012794,-0.014006,0.249607,0,0);-ms-transform:matrix(0.228011,0.012794,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.228011,0.012794,-0.014006,0.249607,0,0);}
.m81_c01082{transform:matrix(0.228033,0.013709,-0.015003,0.249549,0,0);-ms-transform:matrix(0.228033,0.013709,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.228033,0.013709,-0.015003,0.249549,0,0);}
.m90_c01082{transform:matrix(0.228997,0.013767,-0.015003,0.249549,0,0);-ms-transform:matrix(0.228997,0.013767,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.228997,0.013767,-0.015003,0.249549,0,0);}
.m5d_c01082{transform:matrix(0.229524,0.012879,-0.014006,0.249607,0,0);-ms-transform:matrix(0.229524,0.012879,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.229524,0.012879,-0.014006,0.249607,0,0);}
.m3d_c01082{transform:matrix(0.229774,0.012893,-0.014006,0.249607,0,0);-ms-transform:matrix(0.229774,0.012893,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.229774,0.012893,-0.014006,0.249607,0,0);}
.m7d_c01082{transform:matrix(0.229910,0.013822,-0.015003,0.249549,0,0);-ms-transform:matrix(0.229910,0.013822,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.229910,0.013822,-0.015003,0.249549,0,0);}
.mb6_c01082{transform:matrix(0.230075,0.013141,-0.014255,0.249593,0,0);-ms-transform:matrix(0.230075,0.013141,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.230075,0.013141,-0.014255,0.249593,0,0);}
.m6a_c01082{transform:matrix(0.230403,0.012928,-0.014006,0.249607,0,0);-ms-transform:matrix(0.230403,0.012928,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.230403,0.012928,-0.014006,0.249607,0,0);}
.mec_c01082{transform:matrix(0.230479,0.013856,-0.015003,0.249549,0,0);-ms-transform:matrix(0.230479,0.013856,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.230479,0.013856,-0.015003,0.249549,0,0);}
.m43_c01082{transform:matrix(0.230532,0.012936,-0.014006,0.249607,0,0);-ms-transform:matrix(0.230532,0.012936,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.230532,0.012936,-0.014006,0.249607,0,0);}
.me9_c01082{transform:matrix(0.231030,0.014353,-0.015501,0.249519,0,0);-ms-transform:matrix(0.231030,0.014353,-0.015501,0.249519,0,0);-webkit-transform:matrix(0.231030,0.014353,-0.015501,0.249519,0,0);}
.mf7_c01082{transform:matrix(0.231058,0.013891,-0.015003,0.249549,0,0);-ms-transform:matrix(0.231058,0.013891,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.231058,0.013891,-0.015003,0.249549,0,0);}
.m10a_c01082{transform:matrix(0.231223,0.013901,-0.015003,0.249549,0,0);-ms-transform:matrix(0.231223,0.013901,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.231223,0.013901,-0.015003,0.249549,0,0);}
.m10_c01082{transform:matrix(0.231300,0.012271,-0.013245,0.249649,0,0);-ms-transform:matrix(0.231300,0.012271,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.231300,0.012271,-0.013245,0.249649,0,0);}
.mbc_c01082{transform:matrix(0.231907,0.013245,-0.014255,0.249593,0,0);-ms-transform:matrix(0.231907,0.013245,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.231907,0.013245,-0.014255,0.249593,0,0);}
.m39_c01082{transform:matrix(0.232110,0.013024,-0.014006,0.249607,0,0);-ms-transform:matrix(0.232110,0.013024,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.232110,0.013024,-0.014006,0.249607,0,0);}
.m31_c01082{transform:matrix(0.232190,0.013029,-0.014006,0.249607,0,0);-ms-transform:matrix(0.232190,0.013029,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.232190,0.013029,-0.014006,0.249607,0,0);}
.mae_c01082{transform:matrix(0.232406,0.013274,-0.014255,0.249593,0,0);-ms-transform:matrix(0.232406,0.013274,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.232406,0.013274,-0.014255,0.249593,0,0);}
.ma7_c01082{transform:matrix(0.232501,0.013279,-0.014255,0.249593,0,0);-ms-transform:matrix(0.232501,0.013279,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.232501,0.013279,-0.014255,0.249593,0,0);}
.m3c_c01082{transform:matrix(0.232794,0.013063,-0.014006,0.249607,0,0);-ms-transform:matrix(0.232794,0.013063,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.232794,0.013063,-0.014006,0.249607,0,0);}
.m88_c01082{transform:matrix(0.233274,0.014024,-0.015003,0.249549,0,0);-ms-transform:matrix(0.233274,0.014024,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.233274,0.014024,-0.015003,0.249549,0,0);}
.md8_c01082{transform:matrix(0.233280,0.013324,-0.014255,0.249593,0,0);-ms-transform:matrix(0.233280,0.013324,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.233280,0.013324,-0.014255,0.249593,0,0);}
.mce_c01082{transform:matrix(0.233604,0.013342,-0.014255,0.249593,0,0);-ms-transform:matrix(0.233604,0.013342,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.233604,0.013342,-0.014255,0.249593,0,0);}
.me4_c01082{transform:matrix(0.233909,0.014531,-0.015501,0.249519,0,0);-ms-transform:matrix(0.233909,0.014531,-0.015501,0.249519,0,0);-webkit-transform:matrix(0.233909,0.014531,-0.015501,0.249519,0,0);}
.m79_c01082{transform:matrix(0.234242,0.014083,-0.015003,0.249549,0,0);-ms-transform:matrix(0.234242,0.014083,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.234242,0.014083,-0.015003,0.249549,0,0);}
.m60_c01082{transform:matrix(0.235155,0.013195,-0.014006,0.249607,0,0);-ms-transform:matrix(0.235155,0.013195,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.235155,0.013195,-0.014006,0.249607,0,0);}
.mdb_c01082{transform:matrix(0.235187,0.013433,-0.014255,0.249593,0,0);-ms-transform:matrix(0.235187,0.013433,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.235187,0.013433,-0.014255,0.249593,0,0);}
.m25_c01082{transform:matrix(0.236288,0.012536,-0.013245,0.249649,0,0);-ms-transform:matrix(0.236288,0.012536,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.236288,0.012536,-0.013245,0.249649,0,0);}
.md7_c01082{transform:matrix(0.236559,0.013511,-0.014255,0.249593,0,0);-ms-transform:matrix(0.236559,0.013511,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.236559,0.013511,-0.014255,0.249593,0,0);}
.m7e_c01082{transform:matrix(0.236628,0.014226,-0.015003,0.249549,0,0);-ms-transform:matrix(0.236628,0.014226,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.236628,0.014226,-0.015003,0.249549,0,0);}
.m6d_c01082{transform:matrix(0.236678,0.013281,-0.014006,0.249607,0,0);-ms-transform:matrix(0.236678,0.013281,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.236678,0.013281,-0.014006,0.249607,0,0);}
.me_c01082{transform:matrix(0.236852,0.012566,-0.013245,0.249649,0,0);-ms-transform:matrix(0.236852,0.012566,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.236852,0.012566,-0.013245,0.249649,0,0);}
.ma2_c01082{transform:matrix(0.237029,0.013538,-0.014255,0.249593,0,0);-ms-transform:matrix(0.237029,0.013538,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.237029,0.013538,-0.014255,0.249593,0,0);}
.me3_c01082{transform:matrix(0.237432,0.014750,-0.015501,0.249519,0,0);-ms-transform:matrix(0.237432,0.014750,-0.015501,0.249519,0,0);-webkit-transform:matrix(0.237432,0.014750,-0.015501,0.249519,0,0);}
.m5f_c01082{transform:matrix(0.237666,0.013336,-0.014006,0.249607,0,0);-ms-transform:matrix(0.237666,0.013336,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.237666,0.013336,-0.014006,0.249607,0,0);}
.m1a_c01082{transform:matrix(0.237821,0.012617,-0.013245,0.249649,0,0);-ms-transform:matrix(0.237821,0.012617,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.237821,0.012617,-0.013245,0.249649,0,0);}
.m45_c01082{transform:matrix(0.238160,0.013364,-0.014006,0.249607,0,0);-ms-transform:matrix(0.238160,0.013364,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.238160,0.013364,-0.014006,0.249607,0,0);}
.m72_c01082{transform:matrix(0.238425,0.014334,-0.015003,0.249549,0,0);-ms-transform:matrix(0.238425,0.014334,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.238425,0.014334,-0.015003,0.249549,0,0);}
.mab_c01082{transform:matrix(0.238531,0.013624,-0.014255,0.249593,0,0);-ms-transform:matrix(0.238531,0.013624,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.238531,0.013624,-0.014255,0.249593,0,0);}
.mdf_c01082{transform:matrix(0.238546,0.013624,-0.014255,0.249593,0,0);-ms-transform:matrix(0.238546,0.013624,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.238546,0.013624,-0.014255,0.249593,0,0);}
.mc1_c01082{transform:matrix(0.238896,0.013644,-0.014255,0.249593,0,0);-ms-transform:matrix(0.238896,0.013644,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.238896,0.013644,-0.014255,0.249593,0,0);}
.m18_c01082{transform:matrix(0.239443,0.012703,-0.013245,0.249649,0,0);-ms-transform:matrix(0.239443,0.012703,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.239443,0.012703,-0.013245,0.249649,0,0);}
.ma5_c01082{transform:matrix(0.239475,0.013677,-0.014255,0.249593,0,0);-ms-transform:matrix(0.239475,0.013677,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.239475,0.013677,-0.014255,0.249593,0,0);}
.m1d_c01082{transform:matrix(0.239768,0.012720,-0.013245,0.249649,0,0);-ms-transform:matrix(0.239768,0.012720,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.239768,0.012720,-0.013245,0.249649,0,0);}
.md3_c01082{transform:matrix(0.239769,0.013694,-0.014255,0.249593,0,0);-ms-transform:matrix(0.239769,0.013694,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.239769,0.013694,-0.014255,0.249593,0,0);}
.m36_c01082{transform:matrix(0.240027,0.013468,-0.014006,0.249607,0,0);-ms-transform:matrix(0.240027,0.013468,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.240027,0.013468,-0.014006,0.249607,0,0);}
.m56_c01082{transform:matrix(0.240442,0.013492,-0.014006,0.249607,0,0);-ms-transform:matrix(0.240442,0.013492,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.240442,0.013492,-0.014006,0.249607,0,0);}
.mc8_c01082{transform:matrix(0.240907,0.013759,-0.014255,0.249593,0,0);-ms-transform:matrix(0.240907,0.013759,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.240907,0.013759,-0.014255,0.249593,0,0);}
.m30_c01082{transform:matrix(0.241031,0.013525,-0.014006,0.249607,0,0);-ms-transform:matrix(0.241031,0.013525,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.241031,0.013525,-0.014006,0.249607,0,0);}
.m2d_c01082{transform:matrix(0.241400,0.013546,-0.014006,0.249607,0,0);-ms-transform:matrix(0.241400,0.013546,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.241400,0.013546,-0.014006,0.249607,0,0);}
.mf2_c01082{transform:matrix(0.241559,0.014523,-0.015003,0.249549,0,0);-ms-transform:matrix(0.241559,0.014523,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.241559,0.014523,-0.015003,0.249549,0,0);}
.m2c_c01082{transform:matrix(0.241615,0.013558,-0.014006,0.249607,0,0);-ms-transform:matrix(0.241615,0.013558,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.241615,0.013558,-0.014006,0.249607,0,0);}
.m52_c01082{transform:matrix(0.241640,0.013559,-0.014006,0.249607,0,0);-ms-transform:matrix(0.241640,0.013559,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.241640,0.013559,-0.014006,0.249607,0,0);}
.mb_c01082{transform:matrix(0.241825,0.012830,-0.013245,0.249649,0,0);-ms-transform:matrix(0.241825,0.012830,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.241825,0.012830,-0.013245,0.249649,0,0);}
.m5a_c01082{transform:matrix(0.242249,0.013593,-0.014006,0.249607,0,0);-ms-transform:matrix(0.242249,0.013593,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.242249,0.013593,-0.014006,0.249607,0,0);}
.m62_c01082{transform:matrix(0.242673,0.013617,-0.014006,0.249607,0,0);-ms-transform:matrix(0.242673,0.013617,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.242673,0.013617,-0.014006,0.249607,0,0);}
.m1b_c01082{transform:matrix(0.243033,0.012894,-0.013245,0.249649,0,0);-ms-transform:matrix(0.243033,0.012894,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.243033,0.012894,-0.013245,0.249649,0,0);}
.m1f_c01082{transform:matrix(0.243048,0.012894,-0.013245,0.249649,0,0);-ms-transform:matrix(0.243048,0.012894,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.243048,0.012894,-0.013245,0.249649,0,0);}
.mc5_c01082{transform:matrix(0.243144,0.013887,-0.014255,0.249593,0,0);-ms-transform:matrix(0.243144,0.013887,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.243144,0.013887,-0.014255,0.249593,0,0);}
.m1c_c01082{transform:matrix(0.243153,0.012900,-0.013245,0.249649,0,0);-ms-transform:matrix(0.243153,0.012900,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.243153,0.012900,-0.013245,0.249649,0,0);}
.md6_c01082{transform:matrix(0.243343,0.013898,-0.014255,0.249593,0,0);-ms-transform:matrix(0.243343,0.013898,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.243343,0.013898,-0.014255,0.249593,0,0);}
.mcb_c01082{transform:matrix(0.243353,0.013899,-0.014255,0.249593,0,0);-ms-transform:matrix(0.243353,0.013899,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.243353,0.013899,-0.014255,0.249593,0,0);}
.mef_c01082{transform:matrix(0.244134,0.014677,-0.015003,0.249549,0,0);-ms-transform:matrix(0.244134,0.014677,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.244134,0.014677,-0.015003,0.249549,0,0);}
.mc2_c01082{transform:matrix(0.244502,0.013965,-0.014255,0.249593,0,0);-ms-transform:matrix(0.244502,0.013965,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.244502,0.013965,-0.014255,0.249593,0,0);}
.mbf_c01082{transform:matrix(0.244626,0.013972,-0.014255,0.249593,0,0);-ms-transform:matrix(0.244626,0.013972,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.244626,0.013972,-0.014255,0.249593,0,0);}
.ma0_c01082{transform:matrix(0.244686,0.013975,-0.014255,0.249593,0,0);-ms-transform:matrix(0.244686,0.013975,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.244686,0.013975,-0.014255,0.249593,0,0);}
.mcc_c01082{transform:matrix(0.245385,0.014015,-0.014255,0.249593,0,0);-ms-transform:matrix(0.245385,0.014015,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.245385,0.014015,-0.014255,0.249593,0,0);}
.mb1_c01082{transform:matrix(0.245495,0.014021,-0.014255,0.249593,0,0);-ms-transform:matrix(0.245495,0.014021,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.245495,0.014021,-0.014255,0.249593,0,0);}
.mba_c01082{transform:matrix(0.245784,0.014038,-0.014255,0.249593,0,0);-ms-transform:matrix(0.245784,0.014038,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.245784,0.014038,-0.014255,0.249593,0,0);}
.mc3_c01082{transform:matrix(0.245804,0.014039,-0.014255,0.249593,0,0);-ms-transform:matrix(0.245804,0.014039,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.245804,0.014039,-0.014255,0.249593,0,0);}
.mea_c01082{transform:matrix(0.246370,0.015306,-0.015501,0.249519,0,0);-ms-transform:matrix(0.246370,0.015306,-0.015501,0.249519,0,0);-webkit-transform:matrix(0.246370,0.015306,-0.015501,0.249519,0,0);}
.m64_c01082{transform:matrix(0.246437,0.013828,-0.014006,0.249607,0,0);-ms-transform:matrix(0.246437,0.013828,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.246437,0.013828,-0.014006,0.249607,0,0);}
.mcf_c01082{transform:matrix(0.247117,0.014114,-0.014255,0.249593,0,0);-ms-transform:matrix(0.247117,0.014114,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.247117,0.014114,-0.014255,0.249593,0,0);}
.m22_c01082{transform:matrix(0.247157,0.013112,-0.013245,0.249649,0,0);-ms-transform:matrix(0.247157,0.013112,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.247157,0.013112,-0.013245,0.249649,0,0);}
.mdc_c01082{transform:matrix(0.247771,0.014151,-0.014255,0.249593,0,0);-ms-transform:matrix(0.247771,0.014151,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.247771,0.014151,-0.014255,0.249593,0,0);}
.m5e_c01082{transform:matrix(0.247950,0.013913,-0.014006,0.249607,0,0);-ms-transform:matrix(0.247950,0.013913,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.247950,0.013913,-0.014006,0.249607,0,0);}
.m105_c01082{transform:matrix(0.248029,0.013669,-0.013757,0.249621,0,0);-ms-transform:matrix(0.248029,0.013669,-0.013757,0.249621,0,0);-webkit-transform:matrix(0.248029,0.013669,-0.013757,0.249621,0,0);}
.mff_c01082{transform:matrix(0.248198,0.013678,-0.013757,0.249621,0,0);-ms-transform:matrix(0.248198,0.013678,-0.013757,0.249621,0,0);-webkit-transform:matrix(0.248198,0.013678,-0.013757,0.249621,0,0);}
.m29_c01082{transform:matrix(0.248534,0.013946,-0.014006,0.249607,0,0);-ms-transform:matrix(0.248534,0.013946,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.248534,0.013946,-0.014006,0.249607,0,0);}
.m61_c01082{transform:matrix(0.249128,0.013979,-0.014006,0.249607,0,0);-ms-transform:matrix(0.249128,0.013979,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.249128,0.013979,-0.014006,0.249607,0,0);}
.m66_c01082{transform:matrix(0.249662,0.014009,-0.014006,0.249607,0,0);-ms-transform:matrix(0.249662,0.014009,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.249662,0.014009,-0.014006,0.249607,0,0);}
.mbd_c01082{transform:matrix(0.249773,0.014266,-0.014255,0.249593,0,0);-ms-transform:matrix(0.249773,0.014266,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.249773,0.014266,-0.014255,0.249593,0,0);}
.m104_c01082{transform:matrix(0.250031,0.013779,-0.013757,0.249621,0,0);-ms-transform:matrix(0.250031,0.013779,-0.013757,0.249621,0,0);-webkit-transform:matrix(0.250031,0.013779,-0.013757,0.249621,0,0);}
.me7_c01082{transform:matrix(0.250692,0.015574,-0.015501,0.249519,0,0);-ms-transform:matrix(0.250692,0.015574,-0.015501,0.249519,0,0);-webkit-transform:matrix(0.250692,0.015574,-0.015501,0.249519,0,0);}
.m16_c01082{transform:matrix(0.251042,0.013319,-0.013245,0.249649,0,0);-ms-transform:matrix(0.251042,0.013319,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.251042,0.013319,-0.013245,0.249649,0,0);}
.m41_c01082{transform:matrix(0.251484,0.014111,-0.014006,0.249607,0,0);-ms-transform:matrix(0.251484,0.014111,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.251484,0.014111,-0.014006,0.249607,0,0);}
.m91_c01082{transform:matrix(0.251696,0.015132,-0.015003,0.249549,0,0);-ms-transform:matrix(0.251696,0.015132,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.251696,0.015132,-0.015003,0.249549,0,0);}
.m24_c01082{transform:matrix(0.251901,0.013364,-0.013245,0.249649,0,0);-ms-transform:matrix(0.251901,0.013364,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.251901,0.013364,-0.013245,0.249649,0,0);}
.m15_c01082{transform:matrix(0.252011,0.013370,-0.013245,0.249649,0,0);-ms-transform:matrix(0.252011,0.013370,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.252011,0.013370,-0.013245,0.249649,0,0);}
.m67_c01082{transform:matrix(0.252378,0.014161,-0.014006,0.249607,0,0);-ms-transform:matrix(0.252378,0.014161,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.252378,0.014161,-0.014006,0.249607,0,0);}
.m50_c01082{transform:matrix(0.252638,0.014176,-0.014006,0.249607,0,0);-ms-transform:matrix(0.252638,0.014176,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.252638,0.014176,-0.014006,0.249607,0,0);}
.md4_c01082{transform:matrix(0.252653,0.014430,-0.014255,0.249593,0,0);-ms-transform:matrix(0.252653,0.014430,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.252653,0.014430,-0.014255,0.249593,0,0);}
.m3b_c01082{transform:matrix(0.252767,0.014183,-0.014006,0.249607,0,0);-ms-transform:matrix(0.252767,0.014183,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.252767,0.014183,-0.014006,0.249607,0,0);}
.me1_c01082{transform:matrix(0.252773,0.015703,-0.015501,0.249519,0,0);-ms-transform:matrix(0.252773,0.015703,-0.015501,0.249519,0,0);-webkit-transform:matrix(0.252773,0.015703,-0.015501,0.249519,0,0);}
.mee_c01082{transform:matrix(0.252843,0.015201,-0.015003,0.249549,0,0);-ms-transform:matrix(0.252843,0.015201,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.252843,0.015201,-0.015003,0.249549,0,0);}
.m10e_c01082{transform:matrix(0.253043,0.015213,-0.015003,0.249549,0,0);-ms-transform:matrix(0.253043,0.015213,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.253043,0.015213,-0.015003,0.249549,0,0);}
.m68_c01082{transform:matrix(0.253386,0.014218,-0.014006,0.249607,0,0);-ms-transform:matrix(0.253386,0.014218,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.253386,0.014218,-0.014006,0.249607,0,0);}
.m59_c01082{transform:matrix(0.253621,0.014231,-0.014006,0.249607,0,0);-ms-transform:matrix(0.253621,0.014231,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.253621,0.014231,-0.014006,0.249607,0,0);}
.m34_c01082{transform:matrix(0.253696,0.014235,-0.014006,0.249607,0,0);-ms-transform:matrix(0.253696,0.014235,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.253696,0.014235,-0.014006,0.249607,0,0);}
.m96_c01082{transform:matrix(0.254565,0.014539,-0.014255,0.249593,0,0);-ms-transform:matrix(0.254565,0.014539,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.254565,0.014539,-0.014255,0.249593,0,0);}
.m69_c01082{transform:matrix(0.255029,0.014310,-0.014006,0.249607,0,0);-ms-transform:matrix(0.255029,0.014310,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.255029,0.014310,-0.014006,0.249607,0,0);}
.m28_c01082{transform:matrix(0.255658,0.014346,-0.014006,0.249607,0,0);-ms-transform:matrix(0.255658,0.014346,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.255658,0.014346,-0.014006,0.249607,0,0);}
.mcd_c01082{transform:matrix(0.255993,0.014621,-0.014255,0.249593,0,0);-ms-transform:matrix(0.255993,0.014621,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.255993,0.014621,-0.014255,0.249593,0,0);}
.m95_c01082{transform:matrix(0.256078,0.014626,-0.014255,0.249593,0,0);-ms-transform:matrix(0.256078,0.014626,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.256078,0.014626,-0.014255,0.249593,0,0);}
.mb3_c01082{transform:matrix(0.256123,0.014628,-0.014255,0.249593,0,0);-ms-transform:matrix(0.256123,0.014628,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.256123,0.014628,-0.014255,0.249593,0,0);}
.m12_c01082{transform:matrix(0.256749,0.013621,-0.013245,0.249649,0,0);-ms-transform:matrix(0.256749,0.013621,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.256749,0.013621,-0.013245,0.249649,0,0);}
.m101_c01082{transform:matrix(0.256860,0.014156,-0.013757,0.249621,0,0);-ms-transform:matrix(0.256860,0.014156,-0.013757,0.249621,0,0);-webkit-transform:matrix(0.256860,0.014156,-0.013757,0.249621,0,0);}
.m99_c01082{transform:matrix(0.257046,0.014681,-0.014255,0.249593,0,0);-ms-transform:matrix(0.257046,0.014681,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.257046,0.014681,-0.014255,0.249593,0,0);}
.m37_c01082{transform:matrix(0.257315,0.014439,-0.014006,0.249607,0,0);-ms-transform:matrix(0.257315,0.014439,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.257315,0.014439,-0.014006,0.249607,0,0);}
.m10f_c01082{transform:matrix(0.257455,0.015478,-0.015003,0.249549,0,0);-ms-transform:matrix(0.257455,0.015478,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.257455,0.015478,-0.015003,0.249549,0,0);}
.me2_c01082{transform:matrix(0.257623,0.016005,-0.015501,0.249519,0,0);-ms-transform:matrix(0.257623,0.016005,-0.015501,0.249519,0,0);-webkit-transform:matrix(0.257623,0.016005,-0.015501,0.249519,0,0);}
.md_c01082{transform:matrix(0.258047,0.013690,-0.013245,0.249649,0,0);-ms-transform:matrix(0.258047,0.013690,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.258047,0.013690,-0.013245,0.249649,0,0);}
.md9_c01082{transform:matrix(0.258184,0.014746,-0.014255,0.249593,0,0);-ms-transform:matrix(0.258184,0.014746,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.258184,0.014746,-0.014255,0.249593,0,0);}
.m3e_c01082{transform:matrix(0.258209,0.014489,-0.014006,0.249607,0,0);-ms-transform:matrix(0.258209,0.014489,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.258209,0.014489,-0.014006,0.249607,0,0);}
.m46_c01082{transform:matrix(0.258498,0.014505,-0.014006,0.249607,0,0);-ms-transform:matrix(0.258498,0.014505,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.258498,0.014505,-0.014006,0.249607,0,0);}
.mfd_c01082{transform:matrix(0.259247,0.014287,-0.013757,0.249621,0,0);-ms-transform:matrix(0.259247,0.014287,-0.013757,0.249621,0,0);-webkit-transform:matrix(0.259247,0.014287,-0.013757,0.249621,0,0);}
.m10b_c01082{transform:matrix(0.259796,0.015619,-0.015003,0.249549,0,0);-ms-transform:matrix(0.259796,0.015619,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.259796,0.015619,-0.015003,0.249549,0,0);}
.mc6_c01082{transform:matrix(0.260001,0.014850,-0.014255,0.249593,0,0);-ms-transform:matrix(0.260001,0.014850,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.260001,0.014850,-0.014255,0.249593,0,0);}
.m48_c01082{transform:matrix(0.260006,0.014590,-0.014006,0.249607,0,0);-ms-transform:matrix(0.260006,0.014590,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.260006,0.014590,-0.014006,0.249607,0,0);}
.mf1_c01082{transform:matrix(0.260894,0.015685,-0.015003,0.249549,0,0);-ms-transform:matrix(0.260894,0.015685,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.260894,0.015685,-0.015003,0.249549,0,0);}
.m14_c01082{transform:matrix(0.261657,0.013882,-0.013245,0.249649,0,0);-ms-transform:matrix(0.261657,0.013882,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.261657,0.013882,-0.013245,0.249649,0,0);}
.mf5_c01082{transform:matrix(0.262426,0.015777,-0.015003,0.249549,0,0);-ms-transform:matrix(0.262426,0.015777,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.262426,0.015777,-0.015003,0.249549,0,0);}
.m103_c01082{transform:matrix(0.262562,0.014470,-0.013757,0.249621,0,0);-ms-transform:matrix(0.262562,0.014470,-0.013757,0.249621,0,0);-webkit-transform:matrix(0.262562,0.014470,-0.013757,0.249621,0,0);}
.mb7_c01082{transform:matrix(0.262976,0.015020,-0.014255,0.249593,0,0);-ms-transform:matrix(0.262976,0.015020,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.262976,0.015020,-0.014255,0.249593,0,0);}
.mfc_c01082{transform:matrix(0.263146,0.014502,-0.013757,0.249621,0,0);-ms-transform:matrix(0.263146,0.014502,-0.013757,0.249621,0,0);-webkit-transform:matrix(0.263146,0.014502,-0.013757,0.249621,0,0);}
.m9b_c01082{transform:matrix(0.263426,0.015045,-0.014255,0.249593,0,0);-ms-transform:matrix(0.263426,0.015045,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.263426,0.015045,-0.014255,0.249593,0,0);}
.mfe_c01082{transform:matrix(0.263615,0.014528,-0.013757,0.249621,0,0);-ms-transform:matrix(0.263615,0.014528,-0.013757,0.249621,0,0);-webkit-transform:matrix(0.263615,0.014528,-0.013757,0.249621,0,0);}
.mf_c01082{transform:matrix(0.264523,0.014034,-0.013245,0.249649,0,0);-ms-transform:matrix(0.264523,0.014034,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.264523,0.014034,-0.013245,0.249649,0,0);}
.m2a_c01082{transform:matrix(0.264873,0.014863,-0.014006,0.249607,0,0);-ms-transform:matrix(0.264873,0.014863,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.264873,0.014863,-0.014006,0.249607,0,0);}
.m4f_c01082{transform:matrix(0.265482,0.014897,-0.014006,0.249607,0,0);-ms-transform:matrix(0.265482,0.014897,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.265482,0.014897,-0.014006,0.249607,0,0);}
.m4e_c01082{transform:matrix(0.265677,0.014908,-0.014006,0.249607,0,0);-ms-transform:matrix(0.265677,0.014908,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.265677,0.014908,-0.014006,0.249607,0,0);}
.m92_c01082{transform:matrix(0.265862,0.015184,-0.014255,0.249593,0,0);-ms-transform:matrix(0.265862,0.015184,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.265862,0.015184,-0.014255,0.249593,0,0);}
.m17_c01082{transform:matrix(0.266610,0.014144,-0.013245,0.249649,0,0);-ms-transform:matrix(0.266610,0.014144,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.266610,0.014144,-0.013245,0.249649,0,0);}
.m108_c01082{transform:matrix(0.267692,0.016094,-0.015003,0.249549,0,0);-ms-transform:matrix(0.267692,0.016094,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.267692,0.016094,-0.015003,0.249549,0,0);}
.m51_c01082{transform:matrix(0.268198,0.015049,-0.014006,0.249607,0,0);-ms-transform:matrix(0.268198,0.015049,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.268198,0.015049,-0.014006,0.249607,0,0);}
.me6_c01082{transform:matrix(0.268447,0.016677,-0.015501,0.249519,0,0);-ms-transform:matrix(0.268447,0.016677,-0.015501,0.249519,0,0);-webkit-transform:matrix(0.268447,0.016677,-0.015501,0.249519,0,0);}
.m42_c01082{transform:matrix(0.268632,0.015074,-0.014006,0.249607,0,0);-ms-transform:matrix(0.268632,0.015074,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.268632,0.015074,-0.014006,0.249607,0,0);}
.m4c_c01082{transform:matrix(0.268762,0.015081,-0.014006,0.249607,0,0);-ms-transform:matrix(0.268762,0.015081,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.268762,0.015081,-0.014006,0.249607,0,0);}
.mc7_c01082{transform:matrix(0.268767,0.015350,-0.014255,0.249593,0,0);-ms-transform:matrix(0.268767,0.015350,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.268767,0.015350,-0.014255,0.249593,0,0);}
.m20_c01082{transform:matrix(0.268892,0.014266,-0.013245,0.249649,0,0);-ms-transform:matrix(0.268892,0.014266,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.268892,0.014266,-0.013245,0.249649,0,0);}
.mc0_c01082{transform:matrix(0.270334,0.015440,-0.014255,0.249593,0,0);-ms-transform:matrix(0.270334,0.015440,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.270334,0.015440,-0.014255,0.249593,0,0);}
.mb5_c01082{transform:matrix(0.270529,0.015451,-0.014255,0.249593,0,0);-ms-transform:matrix(0.270529,0.015451,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.270529,0.015451,-0.014255,0.249593,0,0);}
.m13_c01082{transform:matrix(0.271199,0.014388,-0.013245,0.249649,0,0);-ms-transform:matrix(0.271199,0.014388,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.271199,0.014388,-0.013245,0.249649,0,0);}
.m3f_c01082{transform:matrix(0.271603,0.015240,-0.014006,0.249607,0,0);-ms-transform:matrix(0.271603,0.015240,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.271603,0.015240,-0.014006,0.249607,0,0);}
.m4a_c01082{transform:matrix(0.271713,0.015246,-0.014006,0.249607,0,0);-ms-transform:matrix(0.271713,0.015246,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.271713,0.015246,-0.014006,0.249607,0,0);}
.m9c_c01082{transform:matrix(0.272546,0.015566,-0.014255,0.249593,0,0);-ms-transform:matrix(0.272546,0.015566,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.272546,0.015566,-0.014255,0.249593,0,0);}
.m107_c01082{transform:matrix(0.272797,0.016401,-0.015003,0.249549,0,0);-ms-transform:matrix(0.272797,0.016401,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.272797,0.016401,-0.015003,0.249549,0,0);}
.m44_c01082{transform:matrix(0.272831,0.015309,-0.014006,0.249607,0,0);-ms-transform:matrix(0.272831,0.015309,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.272831,0.015309,-0.014006,0.249607,0,0);}
.m10d_c01082{transform:matrix(0.272962,0.016411,-0.015003,0.249549,0,0);-ms-transform:matrix(0.272962,0.016411,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.272962,0.016411,-0.015003,0.249549,0,0);}
.m2e_c01082{transform:matrix(0.274673,0.015413,-0.014006,0.249607,0,0);-ms-transform:matrix(0.274673,0.015413,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.274673,0.015413,-0.014006,0.249607,0,0);}
.mbb_c01082{transform:matrix(0.275157,0.015715,-0.014255,0.249593,0,0);-ms-transform:matrix(0.275157,0.015715,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.275157,0.015715,-0.014255,0.249593,0,0);}
.m11_c01082{transform:matrix(0.275238,0.014602,-0.013245,0.249649,0,0);-ms-transform:matrix(0.275238,0.014602,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.275238,0.014602,-0.013245,0.249649,0,0);}
.m2b_c01082{transform:matrix(0.275277,0.015446,-0.014006,0.249607,0,0);-ms-transform:matrix(0.275277,0.015446,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.275277,0.015446,-0.014006,0.249607,0,0);}
.mf3_c01082{transform:matrix(0.276266,0.016609,-0.015003,0.249549,0,0);-ms-transform:matrix(0.276266,0.016609,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.276266,0.016609,-0.015003,0.249549,0,0);}
.meb_c01082{transform:matrix(0.276727,0.017191,-0.015501,0.249519,0,0);-ms-transform:matrix(0.276727,0.017191,-0.015501,0.249519,0,0);-webkit-transform:matrix(0.276727,0.017191,-0.015501,0.249519,0,0);}
.me8_c01082{transform:matrix(0.276891,0.017202,-0.015501,0.249519,0,0);-ms-transform:matrix(0.276891,0.017202,-0.015501,0.249519,0,0);-webkit-transform:matrix(0.276891,0.017202,-0.015501,0.249519,0,0);}
.m23_c01082{transform:matrix(0.278209,0.014760,-0.013245,0.249649,0,0);-ms-transform:matrix(0.278209,0.014760,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.278209,0.014760,-0.013245,0.249649,0,0);}
.mb4_c01082{transform:matrix(0.279070,0.015939,-0.014255,0.249593,0,0);-ms-transform:matrix(0.279070,0.015939,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.279070,0.015939,-0.014255,0.249593,0,0);}
.mf6_c01082{transform:matrix(0.279336,0.016794,-0.015003,0.249549,0,0);-ms-transform:matrix(0.279336,0.016794,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.279336,0.016794,-0.015003,0.249549,0,0);}
.mb8_c01082{transform:matrix(0.279345,0.015955,-0.014255,0.249593,0,0);-ms-transform:matrix(0.279345,0.015955,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.279345,0.015955,-0.014255,0.249593,0,0);}
.m1e_c01082{transform:matrix(0.279547,0.014831,-0.013245,0.249649,0,0);-ms-transform:matrix(0.279547,0.014831,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.279547,0.014831,-0.013245,0.249649,0,0);}
.mc9_c01082{transform:matrix(0.284222,0.016233,-0.014255,0.249593,0,0);-ms-transform:matrix(0.284222,0.016233,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.284222,0.016233,-0.014255,0.249593,0,0);}
.m53_c01082{transform:matrix(0.288491,0.016188,-0.014006,0.249607,0,0);-ms-transform:matrix(0.288491,0.016188,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.288491,0.016188,-0.014006,0.249607,0,0);}
.m97_c01082{transform:matrix(0.290047,0.016566,-0.014255,0.249593,0,0);-ms-transform:matrix(0.290047,0.016566,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.290047,0.016566,-0.014255,0.249593,0,0);}
.m93_c01082{transform:matrix(0.290996,0.016620,-0.014255,0.249593,0,0);-ms-transform:matrix(0.290996,0.016620,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.290996,0.016620,-0.014255,0.249593,0,0);}
.m98_c01082{transform:matrix(0.301019,0.017192,-0.014255,0.249593,0,0);-ms-transform:matrix(0.301019,0.017192,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.301019,0.017192,-0.014255,0.249593,0,0);}
.m9a_c01082{transform:matrix(0.304000,0.017363,-0.014255,0.249593,0,0);-ms-transform:matrix(0.304000,0.017363,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.304000,0.017363,-0.014255,0.249593,0,0);}
.m94_c01082{transform:matrix(0.308098,0.017597,-0.014255,0.249593,0,0);-ms-transform:matrix(0.308098,0.017597,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.308098,0.017597,-0.014255,0.249593,0,0);}
.me0_c01082{transform:matrix(0.337685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337685,0.000000,0.000000,0.250000,0,0);}
.mfa_c01082{transform:matrix(0.578647,0.033049,-0.014255,0.249593,0,0);-ms-transform:matrix(0.578647,0.033049,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.578647,0.033049,-0.014255,0.249593,0,0);}
.mf9_c01082{transform:matrix(0.921753,0.052645,-0.014255,0.249593,0,0);-ms-transform:matrix(0.921753,0.052645,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.921753,0.052645,-0.014255,0.249593,0,0);}
.v0_c01082{vertical-align:0.000000px;}
.ls0_c01082{letter-spacing:0.000000px;}
.sc__c01082{text-shadow:none;}
.sc0_c01082{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__c01082{-webkit-text-stroke:0px transparent;}
.sc0_c01082{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01082{word-spacing:0.000000px;}
.fc0_c01082{color:transparent;}
.fsb_c01082{font-size:36.000000px;}
.fse_c01082{font-size:41.984310px;}
.fs7_c01082{font-size:65.975344px;}
.fsf_c01082{font-size:71.965036px;}
.fs3_c01082{font-size:71.969033px;}
.fs9_c01082{font-size:71.973103px;}
.fsd_c01082{font-size:71.985743px;}
.fsc_c01082{font-size:71.994528px;}
.fs1_c01082{font-size:72.029154px;}
.fs4_c01082{font-size:77.966453px;}
.fsa_c01082{font-size:77.970862px;}
.fs5_c01082{font-size:83.963872px;}
.fs8_c01082{font-size:83.968620px;}
.fs6_c01082{font-size:83.983366px;}
.fs2_c01082{font-size:84.034013px;}
.fs0_c01082{font-size:96.038872px;}
.y0_c01082{bottom:0.000000px;}
.y117_c01082{bottom:153.066000px;}
.y116_c01082{bottom:156.488700px;}
.y115_c01082{bottom:161.101650px;}
.y114_c01082{bottom:163.029900px;}
.y113_c01082{bottom:164.415090px;}
.y112_c01082{bottom:166.376640px;}
.y10e_c01082{bottom:167.783130px;}
.y111_c01082{bottom:168.339180px;}
.y110_c01082{bottom:172.943400px;}
.y10f_c01082{bottom:179.589000px;}
.y10d_c01082{bottom:184.862115px;}
.y10c_c01082{bottom:187.968405px;}
.y103_c01082{bottom:188.774862px;}
.y10b_c01082{bottom:190.990628px;}
.y10a_c01082{bottom:192.759180px;}
.y109_c01082{bottom:194.026875px;}
.y108_c01082{bottom:196.436287px;}
.y107_c01082{bottom:197.610098px;}
.y106_c01082{bottom:201.831705px;}
.y105_c01082{bottom:206.108588px;}
.y104_c01082{bottom:207.940500px;}
.y100_c01082{bottom:211.195260px;}
.yff_c01082{bottom:215.139060px;}
.yfe_c01082{bottom:221.125860px;}
.y102_c01082{bottom:221.992040px;}
.yfd_c01082{bottom:225.144990px;}
.yfc_c01082{bottom:227.120130px;}
.y101_c01082{bottom:228.768000px;}
.yfb_c01082{bottom:231.860430px;}
.yfa_c01082{bottom:233.807760px;}
.yf9_c01082{bottom:237.070710px;}
.yf8_c01082{bottom:239.024520px;}
.yf7_c01082{bottom:246.957300px;}
.yf6_c01082{bottom:250.289820px;}
.yf5_c01082{bottom:252.836100px;}
.yf4_c01082{bottom:254.920500px;}
.yf3_c01082{bottom:255.521397px;}
.yf2_c01082{bottom:257.597157px;}
.yf1_c01082{bottom:259.649109px;}
.yf0_c01082{bottom:265.164567px;}
.yef_c01082{bottom:272.498082px;}
.ye8_c01082{bottom:273.508500px;}
.yee_c01082{bottom:277.491531px;}
.yed_c01082{bottom:279.518373px;}
.yec_c01082{bottom:281.565024px;}
.yeb_c01082{bottom:284.236263px;}
.yea_c01082{bottom:288.331611px;}
.ye9_c01082{bottom:292.449000px;}
.ye7_c01082{bottom:330.688080px;}
.ye6_c01082{bottom:333.132204px;}
.ye5_c01082{bottom:335.149387px;}
.ye4_c01082{bottom:340.073716px;}
.ye3_c01082{bottom:343.146816px;}
.ye2_c01082{bottom:345.043189px;}
.ye1_c01082{bottom:349.447426px;}
.ye0_c01082{bottom:351.881974px;}
.ydf_c01082{bottom:354.951825px;}
.yde_c01082{bottom:359.813653px;}
.ydd_c01082{bottom:361.645987px;}
.ydc_c01082{bottom:362.638006px;}
.ydb_c01082{bottom:366.556366px;}
.yda_c01082{bottom:369.186006px;}
.yd9_c01082{bottom:371.141595px;}
.yd8_c01082{bottom:373.065847px;}
.yd7_c01082{bottom:378.267541px;}
.yd6_c01082{bottom:380.950149px;}
.yd5_c01082{bottom:388.773360px;}
.yd2_c01082{bottom:392.239879px;}
.yd4_c01082{bottom:393.991941px;}
.yd3_c01082{bottom:397.813342px;}
.yd1_c01082{bottom:399.760543px;}
.yd0_c01082{bottom:401.739261px;}
.ycf_c01082{bottom:405.672712px;}
.yce_c01082{bottom:409.519978px;}
.ycd_c01082{bottom:411.511435px;}
.ycc_c01082{bottom:412.819137px;}
.ycb_c01082{bottom:415.467373px;}
.yca_c01082{bottom:418.034982px;}
.yc9_c01082{bottom:420.018231px;}
.yc8_c01082{bottom:424.576356px;}
.yc7_c01082{bottom:427.160209px;}
.yc6_c01082{bottom:429.052827px;}
.yc4_c01082{bottom:431.005542px;}
.yc3_c01082{bottom:432.901590px;}
.yc5_c01082{bottom:432.905479px;}
.yc2_c01082{bottom:438.033898px;}
.yc1_c01082{bottom:439.893438px;}
.yc0_c01082{bottom:441.176194px;}
.ybf_c01082{bottom:447.445054px;}
.ybe_c01082{bottom:451.237150px;}
.ybd_c01082{bottom:453.124392px;}
.ybc_c01082{bottom:458.743537px;}
.ybb_c01082{bottom:465.127053px;}
.yb9_c01082{bottom:466.419510px;}
.yba_c01082{bottom:468.799705px;}
.yb8_c01082{bottom:474.666639px;}
.yb7_c01082{bottom:478.638970px;}
.yb6_c01082{bottom:481.970287px;}
.yb5_c01082{bottom:486.810472px;}
.yb4_c01082{bottom:489.401677px;}
.yb3_c01082{bottom:491.462209px;}
.yb2_c01082{bottom:498.124843px;}
.yb1_c01082{bottom:501.503358px;}
.yae_c01082{bottom:503.190477px;}
.yb0_c01082{bottom:503.593260px;}
.yad_c01082{bottom:505.136563px;}
.yaf_c01082{bottom:506.852028px;}
.yac_c01082{bottom:511.211922px;}
.yab_c01082{bottom:515.290405px;}
.yaa_c01082{bottom:517.301859px;}
.ya9_c01082{bottom:524.045379px;}
.ya8_c01082{bottom:525.403035px;}
.ya7_c01082{bottom:534.804580px;}
.ya6_c01082{bottom:536.781405px;}
.ya5_c01082{bottom:539.475469px;}
.ya3_c01082{bottom:540.059628px;}
.ya2_c01082{bottom:541.897707px;}
.ya4_c01082{bottom:542.751124px;}
.ya1_c01082{bottom:547.620478px;}
.ya0_c01082{bottom:549.545511px;}
.y9f_c01082{bottom:554.647125px;}
.y9e_c01082{bottom:558.422976px;}
.y9d_c01082{bottom:560.273794px;}
.y9c_c01082{bottom:562.169842px;}
.y9b_c01082{bottom:568.527879px;}
.y9a_c01082{bottom:570.942313px;}
.y99_c01082{bottom:575.375317px;}
.y98_c01082{bottom:577.839000px;}
.y97_c01082{bottom:647.983257px;}
.y96_c01082{bottom:651.769188px;}
.y95_c01082{bottom:654.392418px;}
.y94_c01082{bottom:656.290980px;}
.y93_c01082{bottom:658.917270px;}
.y92_c01082{bottom:660.801129px;}
.y91_c01082{bottom:662.148372px;}
.y90_c01082{bottom:666.607548px;}
.y8f_c01082{bottom:668.517540px;}
.y8e_c01082{bottom:673.612431px;}
.y8d_c01082{bottom:675.508710px;}
.y8c_c01082{bottom:680.033562px;}
.y8a_c01082{bottom:681.083694px;}
.y89_c01082{bottom:684.365589px;}
.y8b_c01082{bottom:684.518871px;}
.y88_c01082{bottom:689.468130px;}
.y87_c01082{bottom:692.089470px;}
.y86_c01082{bottom:695.997720px;}
.y85_c01082{bottom:700.400433px;}
.y84_c01082{bottom:702.446874px;}
.y83_c01082{bottom:708.771819px;}
.y82_c01082{bottom:712.682859px;}
.y81_c01082{bottom:714.520605px;}
.y80_c01082{bottom:717.742347px;}
.y7f_c01082{bottom:719.610996px;}
.y7e_c01082{bottom:721.318440px;}
.y7d_c01082{bottom:725.399670px;}
.y7c_c01082{bottom:727.363110px;}
.y7b_c01082{bottom:732.648450px;}
.y7a_c01082{bottom:734.683440px;}
.y79_c01082{bottom:736.016250px;}
.y78_c01082{bottom:737.974830px;}
.y77_c01082{bottom:744.634650px;}
.y76_c01082{bottom:747.903450px;}
.y75_c01082{bottom:750.648000px;}
.y74_c01082{bottom:751.814796px;}
.y73_c01082{bottom:758.252520px;}
.y72_c01082{bottom:786.257898px;}
.y71_c01082{bottom:788.171430px;}
.y6f_c01082{bottom:790.523769px;}
.y70_c01082{bottom:790.709712px;}
.y6e_c01082{bottom:792.452247px;}
.y6d_c01082{bottom:797.530254px;}
.y6c_c01082{bottom:802.007262px;}
.y6b_c01082{bottom:803.840247px;}
.y6a_c01082{bottom:808.926402px;}
.y69_c01082{bottom:814.551396px;}
.y68_c01082{bottom:817.048869px;}
.y67_c01082{bottom:821.488833px;}
.y66_c01082{bottom:824.559249px;}
.y65_c01082{bottom:827.131131px;}
.y64_c01082{bottom:827.194968px;}
.y63_c01082{bottom:831.530964px;}
.y62_c01082{bottom:835.200336px;}
.y61_c01082{bottom:836.556432px;}
.y60_c01082{bottom:840.863280px;}
.y5f_c01082{bottom:843.878460px;}
.y5e_c01082{bottom:845.173404px;}
.y5d_c01082{bottom:847.016952px;}
.y5c_c01082{bottom:850.791912px;}
.y5b_c01082{bottom:853.319052px;}
.y5a_c01082{bottom:855.635520px;}
.y59_c01082{bottom:857.525100px;}
.y58_c01082{bottom:861.139872px;}
.y56_c01082{bottom:861.713403px;}
.y57_c01082{bottom:863.026092px;}
.y55_c01082{bottom:871.165197px;}
.y54_c01082{bottom:873.787296px;}
.y53_c01082{bottom:877.614669px;}
.y52_c01082{bottom:878.842371px;}
.y51_c01082{bottom:883.240686px;}
.y50_c01082{bottom:886.391895px;}
.y4f_c01082{bottom:888.222276px;}
.y4e_c01082{bottom:892.631427px;}
.y4d_c01082{bottom:894.523701px;}
.y4c_c01082{bottom:898.927644px;}
.y4b_c01082{bottom:899.400348px;}
.y4a_c01082{bottom:902.453361px;}
.y49_c01082{bottom:904.202802px;}
.y48_c01082{bottom:907.790838px;}
.y47_c01082{bottom:909.607845px;}
.y46_c01082{bottom:915.640509px;}
.y45_c01082{bottom:917.393562px;}
.y44_c01082{bottom:921.043956px;}
.y43_c01082{bottom:923.936049px;}
.y42_c01082{bottom:925.732125px;}
.y41_c01082{bottom:930.526011px;}
.y40_c01082{bottom:934.007673px;}
.y3f_c01082{bottom:936.774138px;}
.y3e_c01082{bottom:938.051658px;}
.y3d_c01082{bottom:942.212097px;}
.y3c_c01082{bottom:945.019203px;}
.y3b_c01082{bottom:948.569625px;}
.y3a_c01082{bottom:950.331171px;}
.y39_c01082{bottom:956.239533px;}
.y38_c01082{bottom:959.163795px;}
.y37_c01082{bottom:960.866343px;}
.y36_c01082{bottom:965.624772px;}
.y35_c01082{bottom:967.301013px;}
.y34_c01082{bottom:969.093654px;}
.y33_c01082{bottom:969.468144px;}
.y32_c01082{bottom:971.954964px;}
.y31_c01082{bottom:973.182036px;}
.y30_c01082{bottom:979.428780px;}
.y2f_c01082{bottom:981.929796px;}
.y2e_c01082{bottom:983.837856px;}
.y2d_c01082{bottom:989.348172px;}
.y2c_c01082{bottom:994.897800px;}
.y2b_c01082{bottom:996.815184px;}
.y2a_c01082{bottom:999.312000px;}
.y29_c01082{bottom:1030.627692px;}
.y28_c01082{bottom:1035.014891px;}
.y27_c01082{bottom:1039.750746px;}
.y26_c01082{bottom:1041.671596px;}
.y25_c01082{bottom:1047.502127px;}
.y24_c01082{bottom:1050.439890px;}
.y23_c01082{bottom:1052.848899px;}
.y22_c01082{bottom:1054.581761px;}
.y21_c01082{bottom:1058.731184px;}
.y20_c01082{bottom:1061.025156px;}
.y1f_c01082{bottom:1064.049495px;}
.y1e_c01082{bottom:1065.786809px;}
.y1d_c01082{bottom:1068.023621px;}
.y1c_c01082{bottom:1069.815948px;}
.y1b_c01082{bottom:1072.139177px;}
.y1a_c01082{bottom:1073.825451px;}
.y19_c01082{bottom:1075.702843px;}
.y18_c01082{bottom:1079.266670px;}
.y17_c01082{bottom:1081.595664px;}
.y16_c01082{bottom:1084.411032px;}
.y15_c01082{bottom:1087.897329px;}
.y14_c01082{bottom:1091.932737px;}
.y13_c01082{bottom:1094.788014px;}
.y12_c01082{bottom:1099.421505px;}
.y11_c01082{bottom:1101.142388px;}
.y10_c01082{bottom:1105.749485px;}
.yf_c01082{bottom:1107.482451px;}
.ye_c01082{bottom:1110.800252px;}
.yd_c01082{bottom:1113.562974px;}
.yc_c01082{bottom:1117.710171px;}
.yb_c01082{bottom:1121.229318px;}
.ya_c01082{bottom:1123.002009px;}
.y9_c01082{bottom:1125.906780px;}
.y8_c01082{bottom:1129.460509px;}
.y7_c01082{bottom:1130.542743px;}
.y6_c01082{bottom:1137.155632px;}
.y5_c01082{bottom:1138.874025px;}
.y4_c01082{bottom:1140.544400px;}
.y3_c01082{bottom:1143.460380px;}
.y2_c01082{bottom:1144.645804px;}
.y1_c01082{bottom:1146.987000px;}
.hd_c01082{height:36.000000px;}
.h10_c01082{height:41.984310px;}
.h9_c01082{height:65.975344px;}
.h11_c01082{height:71.965036px;}
.h5_c01082{height:71.969033px;}
.hb_c01082{height:71.973103px;}
.hf_c01082{height:71.985743px;}
.he_c01082{height:71.994528px;}
.h3_c01082{height:72.029154px;}
.h6_c01082{height:77.966453px;}
.hc_c01082{height:77.970862px;}
.h7_c01082{height:83.963872px;}
.ha_c01082{height:83.968620px;}
.h8_c01082{height:83.983366px;}
.h4_c01082{height:84.034013px;}
.h2_c01082{height:96.038872px;}
.h0_c01082{height:1246.320000px;}
.h1_c01082{height:1246.500000px;}
.w1_c01082{width:885.750000px;}
.w0_c01082{width:885.870000px;}
.x0_c01082{left:0.000000px;}
.xbe_c01082{left:101.502000px;}
.xc0_c01082{left:102.684000px;}
.xb8_c01082{left:105.702000px;}
.xb1_c01082{left:107.653500px;}
.xa1_c01082{left:111.938901px;}
.x9d_c01082{left:114.609998px;}
.x98_c01082{left:115.701867px;}
.x92_c01082{left:117.663431px;}
.x85_c01082{left:120.285000px;}
.x7c_c01082{left:124.352862px;}
.x71_c01082{left:127.296447px;}
.x63_c01082{left:130.231074px;}
.x5b_c01082{left:131.241582px;}
.x44_c01082{left:134.861778px;}
.xc1_c01082{left:135.924885px;}
.x30_c01082{left:138.127683px;}
.xb9_c01082{left:140.372520px;}
.x24_c01082{left:141.782322px;}
.x17_c01082{left:142.923305px;}
.x1_c01082{left:147.177000px;}
.x72_c01082{left:159.452883px;}
.x86_c01082{left:163.421055px;}
.x4f_c01082{left:167.809434px;}
.x31_c01082{left:171.868206px;}
.x64_c01082{left:173.914650px;}
.x5c_c01082{left:176.273313px;}
.x18_c01082{left:178.310382px;}
.x99_c01082{left:180.005502px;}
.xba_c01082{left:182.725644px;}
.x2_c01082{left:191.306326px;}
.x3b_c01082{left:202.235682px;}
.x32_c01082{left:203.427264px;}
.x93_c01082{left:205.185075px;}
.x65_c01082{left:206.838966px;}
.xe_c01082{left:210.730392px;}
.x45_c01082{left:211.981437px;}
.x3_c01082{left:213.650460px;}
.x73_c01082{left:214.890459px;}
.x8c_c01082{left:217.749181px;}
.xbf_c01082{left:220.140747px;}
.x5d_c01082{left:230.029056px;}
.x50_c01082{left:232.229835px;}
.x67_c01082{left:237.349500px;}
.x25_c01082{left:240.339269px;}
.xf_c01082{left:244.018322px;}
.x46_c01082{left:245.115684px;}
.x74_c01082{left:246.507885px;}
.x26_c01082{left:249.552000px;}
.x19_c01082{left:253.885731px;}
.x9e_c01082{left:255.499048px;}
.x94_c01082{left:260.473184px;}
.xa2_c01082{left:264.853482px;}
.x51_c01082{left:265.904850px;}
.x4_c01082{left:268.613942px;}
.x7d_c01082{left:279.394824px;}
.x68_c01082{left:283.000515px;}
.xaa_c01082{left:285.165071px;}
.x1a_c01082{left:287.669414px;}
.x3c_c01082{left:290.827575px;}
.x33_c01082{left:293.019786px;}
.x27_c01082{left:294.048828px;}
.x5_c01082{left:300.098925px;}
.x52_c01082{left:307.187619px;}
.x7e_c01082{left:312.010839px;}
.x75_c01082{left:313.810626px;}
.xb2_c01082{left:315.794883px;}
.xc5_c01082{left:321.164088px;}
.x47_c01082{left:322.328157px;}
.x3d_c01082{left:324.013773px;}
.x34_c01082{left:325.074435px;}
.x28_c01082{left:328.219350px;}
.x1b_c01082{left:329.831210px;}
.x6_c01082{left:332.489002px;}
.x69_c01082{left:337.371555px;}
.xb3_c01082{left:348.420501px;}
.x53_c01082{left:352.224864px;}
.x48_c01082{left:354.386145px;}
.x1c_c01082{left:362.577930px;}
.x10_c01082{left:365.589075px;}
.x95_c01082{left:369.501845px;}
.x3e_c01082{left:377.455152px;}
.x35_c01082{left:380.132856px;}
.x9a_c01082{left:390.157356px;}
.x87_c01082{left:394.632705px;}
.xa3_c01082{left:397.200180px;}
.x7f_c01082{left:399.679701px;}
.xbb_c01082{left:402.603507px;}
.x8d_c01082{left:403.927585px;}
.xab_c01082{left:407.033784px;}
.x49_c01082{left:409.554972px;}
.x1d_c01082{left:419.583867px;}
.x76_c01082{left:422.639109px;}
.x29_c01082{left:427.121649px;}
.xb4_c01082{left:428.798922px;}
.x80_c01082{left:432.548799px;}
.xac_c01082{left:440.815470px;}
.xa4_c01082{left:442.591575px;}
.x3f_c01082{left:444.919029px;}
.x6a_c01082{left:448.146561px;}
.x5e_c01082{left:449.975409px;}
.x54_c01082{left:452.354703px;}
.x11_c01082{left:454.597173px;}
.x7_c01082{left:457.135731px;}
.x88_c01082{left:460.235736px;}
.x1e_c01082{left:462.823085px;}
.xc2_c01082{left:465.086742px;}
.x55_c01082{left:475.432455px;}
.x9f_c01082{left:476.492403px;}
.x8_c01082{left:477.534811px;}
.x6b_c01082{left:480.724275px;}
.x4a_c01082{left:486.574332px;}
.x9b_c01082{left:489.595581px;}
.x36_c01082{left:491.369622px;}
.xad_c01082{left:495.568329px;}
.x6c_c01082{left:502.893348px;}
.x4b_c01082{left:508.079058px;}
.x12_c01082{left:509.436144px;}
.xc3_c01082{left:521.451786px;}
.x2a_c01082{left:525.323352px;}
.x89_c01082{left:526.346250px;}
.x56_c01082{left:529.167270px;}
.xa5_c01082{left:530.590202px;}
.x81_c01082{left:532.452585px;}
.x77_c01082{left:533.608572px;}
.x6d_c01082{left:536.742015px;}
.x5f_c01082{left:539.038959px;}
.x1f_c01082{left:541.035794px;}
.xc6_c01082{left:542.564400px;}
.x9_c01082{left:544.519260px;}
.xb5_c01082{left:546.844857px;}
.x2b_c01082{left:559.327707px;}
.xa6_c01082{left:563.150766px;}
.x82_c01082{left:564.862014px;}
.xbc_c01082{left:568.114821px;}
.x8e_c01082{left:569.390715px;}
.x60_c01082{left:571.143354px;}
.x20_c01082{left:573.698598px;}
.x4c_c01082{left:575.083992px;}
.x96_c01082{left:579.321474px;}
.xae_c01082{left:583.312458px;}
.x13_c01082{left:586.972668px;}
.x40_c01082{left:588.783300px;}
.x37_c01082{left:591.389016px;}
.xa7_c01082{left:596.233698px;}
.xa_c01082{left:599.271453px;}
.x78_c01082{left:600.864906px;}
.x2c_c01082{left:603.899385px;}
.x57_c01082{left:605.921454px;}
.x83_c01082{left:610.045377px;}
.x8a_c01082{left:615.669246px;}
.x21_c01082{left:619.106145px;}
.x4d_c01082{left:620.983899px;}
.x41_c01082{left:622.369281px;}
.x6e_c01082{left:624.654837px;}
.x58_c01082{left:630.089022px;}
.xb_c01082{left:632.685006px;}
.x8f_c01082{left:636.119241px;}
.xa8_c01082{left:640.723985px;}
.x84_c01082{left:642.724356px;}
.x38_c01082{left:644.252499px;}
.x79_c01082{left:645.965934px;}
.x61_c01082{left:649.538373px;}
.x14_c01082{left:653.960694px;}
.x6f_c01082{left:657.313389px;}
.xaf_c01082{left:662.818168px;}
.xb6_c01082{left:668.655747px;}
.x22_c01082{left:674.480216px;}
.x42_c01082{left:688.668324px;}
.x59_c01082{left:695.482473px;}
.xc_c01082{left:699.017607px;}
.xb7_c01082{left:702.068787px;}
.xa9_c01082{left:707.015597px;}
.x15_c01082{left:708.047418px;}
.x2d_c01082{left:715.225287px;}
.x43_c01082{left:720.996657px;}
.x39_c01082{left:722.599206px;}
.x70_c01082{left:725.197848px;}
.x7a_c01082{left:733.762041px;}
.x90_c01082{left:735.522832px;}
.x2e_c01082{left:737.093463px;}
.x62_c01082{left:738.456714px;}
.x9c_c01082{left:744.233784px;}
.x3a_c01082{left:746.651046px;}
.x8b_c01082{left:749.572902px;}
.x16_c01082{left:752.796512px;}
.x91_c01082{left:767.361246px;}
.x5a_c01082{left:772.756116px;}
.xd_c01082{left:777.188358px;}
.x97_c01082{left:779.279679px;}
.x2f_c01082{left:781.412148px;}
.x23_c01082{left:784.380206px;}
.x4e_c01082{left:786.484476px;}
.x7b_c01082{left:790.225152px;}
.x66_c01082{left:799.521732px;}
.xa0_c01082{left:802.474864px;}
.xc4_c01082{left:831.357732px;}
.xbd_c01082{left:832.998492px;}
.xb0_c01082{left:835.920000px;}
@media print{
.v0_c01082{vertical-align:0.000000pt;}
.ls0_c01082{letter-spacing:0.000000pt;}
.ws0_c01082{word-spacing:0.000000pt;}
.fsb_c01082{font-size:32.000000pt;}
.fse_c01082{font-size:37.319387pt;}
.fs7_c01082{font-size:58.644751pt;}
.fsf_c01082{font-size:63.968920pt;}
.fs3_c01082{font-size:63.972474pt;}
.fs9_c01082{font-size:63.976092pt;}
.fsd_c01082{font-size:63.987327pt;}
.fsc_c01082{font-size:63.995136pt;}
.fs1_c01082{font-size:64.025915pt;}
.fs4_c01082{font-size:69.303514pt;}
.fsa_c01082{font-size:69.307432pt;}
.fs5_c01082{font-size:74.634553pt;}
.fs8_c01082{font-size:74.638773pt;}
.fs6_c01082{font-size:74.651881pt;}
.fs2_c01082{font-size:74.696901pt;}
.fs0_c01082{font-size:85.367886pt;}
.y0_c01082{bottom:0.000000pt;}
.y117_c01082{bottom:136.058667pt;}
.y116_c01082{bottom:139.101067pt;}
.y115_c01082{bottom:143.201467pt;}
.y114_c01082{bottom:144.915467pt;}
.y113_c01082{bottom:146.146747pt;}
.y112_c01082{bottom:147.890347pt;}
.y10e_c01082{bottom:149.140560pt;}
.y111_c01082{bottom:149.634827pt;}
.y110_c01082{bottom:153.727467pt;}
.y10f_c01082{bottom:159.634667pt;}
.y10d_c01082{bottom:164.321880pt;}
.y10c_c01082{bottom:167.083027pt;}
.y103_c01082{bottom:167.799877pt;}
.y10b_c01082{bottom:169.769447pt;}
.y10a_c01082{bottom:171.341493pt;}
.y109_c01082{bottom:172.468333pt;}
.y108_c01082{bottom:174.610033pt;}
.y107_c01082{bottom:175.653420pt;}
.y106_c01082{bottom:179.405960pt;}
.y105_c01082{bottom:183.207633pt;}
.y104_c01082{bottom:184.836000pt;}
.y100_c01082{bottom:187.729120pt;}
.yff_c01082{bottom:191.234720pt;}
.yfe_c01082{bottom:196.556320pt;}
.y102_c01082{bottom:197.326257pt;}
.yfd_c01082{bottom:200.128880pt;}
.yfc_c01082{bottom:201.884560pt;}
.y101_c01082{bottom:203.349333pt;}
.yfb_c01082{bottom:206.098160pt;}
.yfa_c01082{bottom:207.829120pt;}
.yf9_c01082{bottom:210.729520pt;}
.yf8_c01082{bottom:212.466240pt;}
.yf7_c01082{bottom:219.517600pt;}
.yf6_c01082{bottom:222.479840pt;}
.yf5_c01082{bottom:224.743200pt;}
.yf4_c01082{bottom:226.596000pt;}
.yf3_c01082{bottom:227.130131pt;}
.yf2_c01082{bottom:228.975251pt;}
.yf1_c01082{bottom:230.799208pt;}
.yf0_c01082{bottom:235.701837pt;}
.yef_c01082{bottom:242.220517pt;}
.ye8_c01082{bottom:243.118667pt;}
.yee_c01082{bottom:246.659139pt;}
.yed_c01082{bottom:248.460776pt;}
.yec_c01082{bottom:250.280021pt;}
.yeb_c01082{bottom:252.654456pt;}
.yea_c01082{bottom:256.294765pt;}
.ye9_c01082{bottom:259.954667pt;}
.ye7_c01082{bottom:293.944960pt;}
.ye6_c01082{bottom:296.117515pt;}
.ye5_c01082{bottom:297.910567pt;}
.ye4_c01082{bottom:302.287748pt;}
.ye3_c01082{bottom:305.019392pt;}
.ye2_c01082{bottom:306.705057pt;}
.ye1_c01082{bottom:310.619935pt;}
.ye0_c01082{bottom:312.783977pt;}
.ydf_c01082{bottom:315.512733pt;}
.yde_c01082{bottom:319.834359pt;}
.ydd_c01082{bottom:321.463100pt;}
.ydc_c01082{bottom:322.344895pt;}
.ydb_c01082{bottom:325.827881pt;}
.yda_c01082{bottom:328.165339pt;}
.yd9_c01082{bottom:329.903640pt;}
.yd8_c01082{bottom:331.614087pt;}
.yd7_c01082{bottom:336.237815pt;}
.yd6_c01082{bottom:338.622355pt;}
.yd5_c01082{bottom:345.576320pt;}
.yd2_c01082{bottom:348.657671pt;}
.yd4_c01082{bottom:350.215059pt;}
.yd3_c01082{bottom:353.611860pt;}
.yd1_c01082{bottom:355.342705pt;}
.yd0_c01082{bottom:357.101565pt;}
.ycf_c01082{bottom:360.597967pt;}
.yce_c01082{bottom:364.017759pt;}
.ycd_c01082{bottom:365.787943pt;}
.ycc_c01082{bottom:366.950344pt;}
.ycb_c01082{bottom:369.304332pt;}
.yca_c01082{bottom:371.586651pt;}
.yc9_c01082{bottom:373.349539pt;}
.yc8_c01082{bottom:377.401205pt;}
.yc7_c01082{bottom:379.697964pt;}
.yc6_c01082{bottom:381.380291pt;}
.yc4_c01082{bottom:383.116037pt;}
.yc3_c01082{bottom:384.801413pt;}
.yc5_c01082{bottom:384.804871pt;}
.yc2_c01082{bottom:389.363465pt;}
.yc1_c01082{bottom:391.016389pt;}
.yc0_c01082{bottom:392.156617pt;}
.ybf_c01082{bottom:397.728937pt;}
.ybe_c01082{bottom:401.099689pt;}
.ybd_c01082{bottom:402.777237pt;}
.ybc_c01082{bottom:407.772033pt;}
.ybb_c01082{bottom:413.446269pt;}
.yb9_c01082{bottom:414.595120pt;}
.yba_c01082{bottom:416.710849pt;}
.yb8_c01082{bottom:421.925901pt;}
.yb7_c01082{bottom:425.456863pt;}
.yb6_c01082{bottom:428.418033pt;}
.yb5_c01082{bottom:432.720420pt;}
.yb4_c01082{bottom:435.023713pt;}
.yb3_c01082{bottom:436.855297pt;}
.yb2_c01082{bottom:442.777639pt;}
.yb1_c01082{bottom:445.780763pt;}
.yae_c01082{bottom:447.280424pt;}
.yb0_c01082{bottom:447.638453pt;}
.yad_c01082{bottom:449.010279pt;}
.yaf_c01082{bottom:450.535136pt;}
.yac_c01082{bottom:454.410597pt;}
.yab_c01082{bottom:458.035916pt;}
.yaa_c01082{bottom:459.823875pt;}
.ya9_c01082{bottom:465.818115pt;}
.ya8_c01082{bottom:467.024920pt;}
.ya7_c01082{bottom:475.381849pt;}
.ya6_c01082{bottom:477.139027pt;}
.ya5_c01082{bottom:479.533751pt;}
.ya3_c01082{bottom:480.053003pt;}
.ya2_c01082{bottom:481.686851pt;}
.ya4_c01082{bottom:482.445444pt;}
.ya1_c01082{bottom:486.773759pt;}
.ya0_c01082{bottom:488.484899pt;}
.y9f_c01082{bottom:493.019667pt;}
.y9e_c01082{bottom:496.375979pt;}
.y9d_c01082{bottom:498.021151pt;}
.y9c_c01082{bottom:499.706527pt;}
.y9b_c01082{bottom:505.358115pt;}
.y9a_c01082{bottom:507.504279pt;}
.y99_c01082{bottom:511.444727pt;}
.y98_c01082{bottom:513.634667pt;}
.y97_c01082{bottom:575.985117pt;}
.y96_c01082{bottom:579.350389pt;}
.y95_c01082{bottom:581.682149pt;}
.y94_c01082{bottom:583.369760pt;}
.y93_c01082{bottom:585.704240pt;}
.y92_c01082{bottom:587.378781pt;}
.y91_c01082{bottom:588.576331pt;}
.y90_c01082{bottom:592.540043pt;}
.y8f_c01082{bottom:594.237813pt;}
.y8e_c01082{bottom:598.766605pt;}
.y8d_c01082{bottom:600.452187pt;}
.y8c_c01082{bottom:604.474277pt;}
.y8a_c01082{bottom:605.407728pt;}
.y89_c01082{bottom:608.324968pt;}
.y8b_c01082{bottom:608.461219pt;}
.y88_c01082{bottom:612.860560pt;}
.y87_c01082{bottom:615.190640pt;}
.y86_c01082{bottom:618.664640pt;}
.y85_c01082{bottom:622.578163pt;}
.y84_c01082{bottom:624.397221pt;}
.y83_c01082{bottom:630.019395pt;}
.y82_c01082{bottom:633.495875pt;}
.y81_c01082{bottom:635.129427pt;}
.y80_c01082{bottom:637.993197pt;}
.y7f_c01082{bottom:639.654219pt;}
.y7e_c01082{bottom:641.171947pt;}
.y7d_c01082{bottom:644.799707pt;}
.y7c_c01082{bottom:646.544987pt;}
.y7b_c01082{bottom:651.243067pt;}
.y7a_c01082{bottom:653.051947pt;}
.y79_c01082{bottom:654.236667pt;}
.y78_c01082{bottom:655.977627pt;}
.y77_c01082{bottom:661.897467pt;}
.y76_c01082{bottom:664.803067pt;}
.y75_c01082{bottom:667.242667pt;}
.y74_c01082{bottom:668.279819pt;}
.y73_c01082{bottom:674.002240pt;}
.y72_c01082{bottom:698.895909pt;}
.y71_c01082{bottom:700.596827pt;}
.y6f_c01082{bottom:702.687795pt;}
.y70_c01082{bottom:702.853077pt;}
.y6e_c01082{bottom:704.401997pt;}
.y6d_c01082{bottom:708.915781pt;}
.y6c_c01082{bottom:712.895344pt;}
.y6b_c01082{bottom:714.524664pt;}
.y6a_c01082{bottom:719.045691pt;}
.y69_c01082{bottom:724.045685pt;}
.y68_c01082{bottom:726.265661pt;}
.y67_c01082{bottom:730.212296pt;}
.y66_c01082{bottom:732.941555pt;}
.y65_c01082{bottom:735.227672pt;}
.y64_c01082{bottom:735.284416pt;}
.y63_c01082{bottom:739.138635pt;}
.y62_c01082{bottom:742.400299pt;}
.y61_c01082{bottom:743.605717pt;}
.y60_c01082{bottom:747.434027pt;}
.y5f_c01082{bottom:750.114187pt;}
.y5e_c01082{bottom:751.265248pt;}
.y5d_c01082{bottom:752.903957pt;}
.y5c_c01082{bottom:756.259477pt;}
.y5b_c01082{bottom:758.505824pt;}
.y5a_c01082{bottom:760.564907pt;}
.y59_c01082{bottom:762.244533pt;}
.y58_c01082{bottom:765.457664pt;}
.y56_c01082{bottom:765.967469pt;}
.y57_c01082{bottom:767.134304pt;}
.y55_c01082{bottom:774.369064pt;}
.y54_c01082{bottom:776.699819pt;}
.y53_c01082{bottom:780.101928pt;}
.y52_c01082{bottom:781.193219pt;}
.y51_c01082{bottom:785.102832pt;}
.y50_c01082{bottom:787.903907pt;}
.y4f_c01082{bottom:789.530912pt;}
.y4e_c01082{bottom:793.450157pt;}
.y4d_c01082{bottom:795.132179pt;}
.y4c_c01082{bottom:799.046795pt;}
.y4b_c01082{bottom:799.466976pt;}
.y4a_c01082{bottom:802.180765pt;}
.y49_c01082{bottom:803.735824pt;}
.y48_c01082{bottom:806.925189pt;}
.y47_c01082{bottom:808.540307pt;}
.y46_c01082{bottom:813.902675pt;}
.y45_c01082{bottom:815.460944pt;}
.y44_c01082{bottom:818.705739pt;}
.y43_c01082{bottom:821.276488pt;}
.y42_c01082{bottom:822.873000pt;}
.y41_c01082{bottom:827.134232pt;}
.y40_c01082{bottom:830.229043pt;}
.y3f_c01082{bottom:832.688123pt;}
.y3e_c01082{bottom:833.823696pt;}
.y3d_c01082{bottom:837.521864pt;}
.y3c_c01082{bottom:840.017069pt;}
.y3b_c01082{bottom:843.173000pt;}
.y3a_c01082{bottom:844.738819pt;}
.y39_c01082{bottom:849.990696pt;}
.y38_c01082{bottom:852.590040pt;}
.y37_c01082{bottom:854.103416pt;}
.y36_c01082{bottom:858.333131pt;}
.y35_c01082{bottom:859.823123pt;}
.y34_c01082{bottom:861.416581pt;}
.y33_c01082{bottom:861.749461pt;}
.y32_c01082{bottom:863.959968pt;}
.y31_c01082{bottom:865.050699pt;}
.y30_c01082{bottom:870.603360pt;}
.y2f_c01082{bottom:872.826485pt;}
.y2e_c01082{bottom:874.522539pt;}
.y2d_c01082{bottom:879.420597pt;}
.y2c_c01082{bottom:884.353600pt;}
.y2b_c01082{bottom:886.057941pt;}
.y2a_c01082{bottom:888.277333pt;}
.y29_c01082{bottom:916.113504pt;}
.y28_c01082{bottom:920.013236pt;}
.y27_c01082{bottom:924.222885pt;}
.y26_c01082{bottom:925.930308pt;}
.y25_c01082{bottom:931.113001pt;}
.y24_c01082{bottom:933.724347pt;}
.y23_c01082{bottom:935.865688pt;}
.y22_c01082{bottom:937.406009pt;}
.y21_c01082{bottom:941.094385pt;}
.y20_c01082{bottom:943.133472pt;}
.y1f_c01082{bottom:945.821773pt;}
.y1e_c01082{bottom:947.366052pt;}
.y1d_c01082{bottom:949.354329pt;}
.y1c_c01082{bottom:950.947509pt;}
.y1b_c01082{bottom:953.012601pt;}
.y1a_c01082{bottom:954.511512pt;}
.y19_c01082{bottom:956.180305pt;}
.y18_c01082{bottom:959.348151pt;}
.y17_c01082{bottom:961.418368pt;}
.y16_c01082{bottom:963.920917pt;}
.y15_c01082{bottom:967.019848pt;}
.y14_c01082{bottom:970.606877pt;}
.y13_c01082{bottom:973.144901pt;}
.y12_c01082{bottom:977.263560pt;}
.y11_c01082{bottom:978.793233pt;}
.y10_c01082{bottom:982.888431pt;}
.yf_c01082{bottom:984.428845pt;}
.ye_c01082{bottom:987.378001pt;}
.yd_c01082{bottom:989.833755pt;}
.yc_c01082{bottom:993.520152pt;}
.yb_c01082{bottom:996.648283pt;}
.ya_c01082{bottom:998.224008pt;}
.y9_c01082{bottom:1000.806027pt;}
.y8_c01082{bottom:1003.964897pt;}
.y7_c01082{bottom:1004.926883pt;}
.y6_c01082{bottom:1010.805007pt;}
.y5_c01082{bottom:1012.332467pt;}
.y4_c01082{bottom:1013.817244pt;}
.y3_c01082{bottom:1016.409227pt;}
.y2_c01082{bottom:1017.462937pt;}
.y1_c01082{bottom:1019.544000pt;}
.hd_c01082{height:32.000000pt;}
.h10_c01082{height:37.319387pt;}
.h9_c01082{height:58.644751pt;}
.h11_c01082{height:63.968920pt;}
.h5_c01082{height:63.972474pt;}
.hb_c01082{height:63.976092pt;}
.hf_c01082{height:63.987327pt;}
.he_c01082{height:63.995136pt;}
.h3_c01082{height:64.025915pt;}
.h6_c01082{height:69.303514pt;}
.hc_c01082{height:69.307432pt;}
.h7_c01082{height:74.634553pt;}
.ha_c01082{height:74.638773pt;}
.h8_c01082{height:74.651881pt;}
.h4_c01082{height:74.696901pt;}
.h2_c01082{height:85.367886pt;}
.h0_c01082{height:1107.840000pt;}
.h1_c01082{height:1108.000000pt;}
.w1_c01082{width:787.333333pt;}
.w0_c01082{width:787.440000pt;}
.x0_c01082{left:0.000000pt;}
.xbe_c01082{left:90.224000pt;}
.xc0_c01082{left:91.274667pt;}
.xb8_c01082{left:93.957333pt;}
.xb1_c01082{left:95.692000pt;}
.xa1_c01082{left:99.501245pt;}
.x9d_c01082{left:101.875553pt;}
.x98_c01082{left:102.846104pt;}
.x92_c01082{left:104.589716pt;}
.x85_c01082{left:106.920000pt;}
.x7c_c01082{left:110.535877pt;}
.x71_c01082{left:113.152397pt;}
.x63_c01082{left:115.760955pt;}
.x5b_c01082{left:116.659184pt;}
.x44_c01082{left:119.877136pt;}
.xc1_c01082{left:120.822120pt;}
.x30_c01082{left:122.780163pt;}
.xb9_c01082{left:124.775573pt;}
.x24_c01082{left:126.028731pt;}
.x17_c01082{left:127.042937pt;}
.x1_c01082{left:130.824000pt;}
.x72_c01082{left:141.735896pt;}
.x86_c01082{left:145.263160pt;}
.x4f_c01082{left:149.163941pt;}
.x31_c01082{left:152.771739pt;}
.x64_c01082{left:154.590800pt;}
.x5c_c01082{left:156.687389pt;}
.x18_c01082{left:158.498117pt;}
.x99_c01082{left:160.004891pt;}
.xba_c01082{left:162.422795pt;}
.x2_c01082{left:170.050068pt;}
.x3b_c01082{left:179.765051pt;}
.x32_c01082{left:180.824235pt;}
.x93_c01082{left:182.386733pt;}
.x65_c01082{left:183.856859pt;}
.xe_c01082{left:187.315904pt;}
.x45_c01082{left:188.427944pt;}
.x3_c01082{left:189.911520pt;}
.x73_c01082{left:191.013741pt;}
.x8c_c01082{left:193.554828pt;}
.xbf_c01082{left:195.680664pt;}
.x5d_c01082{left:204.470272pt;}
.x50_c01082{left:206.426520pt;}
.x67_c01082{left:210.977333pt;}
.x25_c01082{left:213.634905pt;}
.xf_c01082{left:216.905175pt;}
.x46_c01082{left:217.880608pt;}
.x74_c01082{left:219.118120pt;}
.x26_c01082{left:221.824000pt;}
.x19_c01082{left:225.676205pt;}
.x9e_c01082{left:227.110265pt;}
.x94_c01082{left:231.531719pt;}
.xa2_c01082{left:235.425317pt;}
.x51_c01082{left:236.359867pt;}
.x4_c01082{left:238.767948pt;}
.x7d_c01082{left:248.350955pt;}
.x68_c01082{left:251.556013pt;}
.xaa_c01082{left:253.480063pt;}
.x1a_c01082{left:255.706145pt;}
.x3c_c01082{left:258.513400pt;}
.x33_c01082{left:260.462032pt;}
.x27_c01082{left:261.376736pt;}
.x5_c01082{left:266.754600pt;}
.x52_c01082{left:273.055661pt;}
.x7e_c01082{left:277.342968pt;}
.x75_c01082{left:278.942779pt;}
.xb2_c01082{left:280.706563pt;}
.xc5_c01082{left:285.479189pt;}
.x47_c01082{left:286.513917pt;}
.x3d_c01082{left:288.012243pt;}
.x34_c01082{left:288.955053pt;}
.x28_c01082{left:291.750533pt;}
.x1b_c01082{left:293.183297pt;}
.x6_c01082{left:295.545780pt;}
.x69_c01082{left:299.885827pt;}
.xb3_c01082{left:309.707112pt;}
.x53_c01082{left:313.088768pt;}
.x48_c01082{left:315.009907pt;}
.x1c_c01082{left:322.291493pt;}
.x10_c01082{left:324.968067pt;}
.x95_c01082{left:328.446084pt;}
.x3e_c01082{left:335.515691pt;}
.x35_c01082{left:337.895872pt;}
.x9a_c01082{left:346.806539pt;}
.x87_c01082{left:350.784627pt;}
.xa3_c01082{left:353.066827pt;}
.x7f_c01082{left:355.270845pt;}
.xbb_c01082{left:357.869784pt;}
.x8d_c01082{left:359.046743pt;}
.xab_c01082{left:361.807808pt;}
.x49_c01082{left:364.048864pt;}
.x1d_c01082{left:372.963437pt;}
.x76_c01082{left:375.679208pt;}
.x29_c01082{left:379.663688pt;}
.xb4_c01082{left:381.154597pt;}
.x80_c01082{left:384.487821pt;}
.xac_c01082{left:391.835973pt;}
.xa4_c01082{left:393.414733pt;}
.x3f_c01082{left:395.483581pt;}
.x6a_c01082{left:398.352499pt;}
.x5e_c01082{left:399.978141pt;}
.x54_c01082{left:402.093069pt;}
.x11_c01082{left:404.086376pt;}
.x7_c01082{left:406.342872pt;}
.x88_c01082{left:409.098432pt;}
.x1e_c01082{left:411.398297pt;}
.xc2_c01082{left:413.410437pt;}
.x55_c01082{left:422.606627pt;}
.x9f_c01082{left:423.548803pt;}
.x8_c01082{left:424.475388pt;}
.x6b_c01082{left:427.310467pt;}
.x4a_c01082{left:432.510517pt;}
.x9b_c01082{left:435.196072pt;}
.x36_c01082{left:436.772997pt;}
.xad_c01082{left:440.505181pt;}
.x6c_c01082{left:447.016309pt;}
.x4b_c01082{left:451.625829pt;}
.x12_c01082{left:452.832128pt;}
.xc3_c01082{left:463.512699pt;}
.x2a_c01082{left:466.954091pt;}
.x89_c01082{left:467.863333pt;}
.x56_c01082{left:470.370907pt;}
.xa5_c01082{left:471.635735pt;}
.x81_c01082{left:473.291187pt;}
.x77_c01082{left:474.318731pt;}
.x6d_c01082{left:477.104013pt;}
.x5f_c01082{left:479.145741pt;}
.x1f_c01082{left:480.920705pt;}
.xc6_c01082{left:482.279467pt;}
.x9_c01082{left:484.017120pt;}
.xb5_c01082{left:486.084317pt;}
.x2b_c01082{left:497.180184pt;}
.xa6_c01082{left:500.578459pt;}
.x82_c01082{left:502.099568pt;}
.xbc_c01082{left:504.990952pt;}
.x8e_c01082{left:506.125080pt;}
.x60_c01082{left:507.682981pt;}
.x20_c01082{left:509.954309pt;}
.x4c_c01082{left:511.185771pt;}
.x96_c01082{left:514.952421pt;}
.xae_c01082{left:518.499963pt;}
.x13_c01082{left:521.753483pt;}
.x40_c01082{left:523.362933pt;}
.x37_c01082{left:525.679125pt;}
.xa7_c01082{left:529.985509pt;}
.xa_c01082{left:532.685736pt;}
.x78_c01082{left:534.102139pt;}
.x2c_c01082{left:536.799453pt;}
.x57_c01082{left:538.596848pt;}
.x83_c01082{left:542.262557pt;}
.x8a_c01082{left:547.261552pt;}
.x21_c01082{left:550.316573pt;}
.x4d_c01082{left:551.985688pt;}
.x41_c01082{left:553.217139pt;}
.x6e_c01082{left:555.248744pt;}
.x58_c01082{left:560.079131pt;}
.xb_c01082{left:562.386672pt;}
.x8f_c01082{left:565.439325pt;}
.xa8_c01082{left:569.532431pt;}
.x84_c01082{left:571.310539pt;}
.x38_c01082{left:572.668888pt;}
.x79_c01082{left:574.191941pt;}
.x61_c01082{left:577.367443pt;}
.x14_c01082{left:581.298395pt;}
.x6f_c01082{left:584.278568pt;}
.xaf_c01082{left:589.171705pt;}
.xb6_c01082{left:594.360664pt;}
.x22_c01082{left:599.537969pt;}
.x42_c01082{left:612.149621pt;}
.x59_c01082{left:618.206643pt;}
.xc_c01082{left:621.348984pt;}
.xb7_c01082{left:624.061144pt;}
.xa9_c01082{left:628.458308pt;}
.x15_c01082{left:629.375483pt;}
.x2d_c01082{left:635.755811pt;}
.x43_c01082{left:640.885917pt;}
.x39_c01082{left:642.310405pt;}
.x70_c01082{left:644.620309pt;}
.x7a_c01082{left:652.232925pt;}
.x90_c01082{left:653.798073pt;}
.x2e_c01082{left:655.194189pt;}
.x62_c01082{left:656.405968pt;}
.x9c_c01082{left:661.541141pt;}
.x3a_c01082{left:663.689819pt;}
.x8b_c01082{left:666.287024pt;}
.x16_c01082{left:669.152455pt;}
.x91_c01082{left:682.098885pt;}
.x5a_c01082{left:686.894325pt;}
.xd_c01082{left:690.834096pt;}
.x97_c01082{left:692.693048pt;}
.x2f_c01082{left:694.588576pt;}
.x23_c01082{left:697.226849pt;}
.x4e_c01082{left:699.097312pt;}
.x7b_c01082{left:702.422357pt;}
.x66_c01082{left:710.685984pt;}
.xa0_c01082{left:713.310991pt;}
.xc4_c01082{left:738.984651pt;}
.xbd_c01082{left:740.443104pt;}
.xb0_c01082{left:743.040000pt;}
}





/* 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_c01083 {
    display:none;
  }
  .loading-indicator_c01083.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01083 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_c01083 { 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_c01083" -> "#page-container .classname_c01083")
 */
.pf_c01083 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01083 { /* 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_c01083.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01083 { /* 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_c01083 { /* 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_c01083 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01083 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01083 {overflow:visible;}
  }
}
.c_c01083 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01083 { /* 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_c01083:after { /* webkit #35443 */
  content: '';
}
.t_c01083:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01083 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 */
}
.__c01083 { /* 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_c01083 { /* info for Javascript */
  display:none;
}
.l_c01083 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01083 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01083 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01083: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_c01083 {
    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_c01083.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01083.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_c01083 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01083{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01083;src:url('chunks/assets/font_91338875028c1bc55e42d757.woff2')format("woff");}.ff1_c01083{font-family:ff1_c01083;line-height:1.000000;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;}
.m8_c01083{transform:matrix(0.101335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.101335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.101335,0.000000,0.000000,0.250000,0,0);}
.ma_c01083{transform:matrix(0.144495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144495,0.000000,0.000000,0.250000,0,0);}
.mb_c01083{transform:matrix(0.152280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152280,0.000000,0.000000,0.250000,0,0);}
.m9_c01083{transform:matrix(0.159715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159715,0.000000,0.000000,0.250000,0,0);}
.m14_c01083{transform:matrix(0.201978,-0.002222,0.002750,0.249985,0,0);-ms-transform:matrix(0.201978,-0.002222,0.002750,0.249985,0,0);-webkit-transform:matrix(0.201978,-0.002222,0.002750,0.249985,0,0);}
.m16_c01083{transform:matrix(0.241920,-0.002661,0.002750,0.249985,0,0);-ms-transform:matrix(0.241920,-0.002661,0.002750,0.249985,0,0);-webkit-transform:matrix(0.241920,-0.002661,0.002750,0.249985,0,0);}
.m15_c01083{transform:matrix(0.267314,-0.002940,0.002750,0.249985,0,0);-ms-transform:matrix(0.267314,-0.002940,0.002750,0.249985,0,0);-webkit-transform:matrix(0.267314,-0.002940,0.002750,0.249985,0,0);}
.m3_c01083{transform:matrix(0.289405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289405,0.000000,0.000000,0.250000,0,0);}
.mf_c01083{transform:matrix(0.294847,-0.003243,0.002750,0.249985,0,0);-ms-transform:matrix(0.294847,-0.003243,0.002750,0.249985,0,0);-webkit-transform:matrix(0.294847,-0.003243,0.002750,0.249985,0,0);}
.m13_c01083{transform:matrix(0.308396,-0.003392,0.002750,0.249985,0,0);-ms-transform:matrix(0.308396,-0.003392,0.002750,0.249985,0,0);-webkit-transform:matrix(0.308396,-0.003392,0.002750,0.249985,0,0);}
.m17_c01083{transform:matrix(0.359628,-0.003956,0.002750,0.249985,0,0);-ms-transform:matrix(0.359628,-0.003956,0.002750,0.249985,0,0);-webkit-transform:matrix(0.359628,-0.003956,0.002750,0.249985,0,0);}
.m6_c01083{transform:matrix(0.374060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374060,0.000000,0.000000,0.250000,0,0);}
.m10_c01083{transform:matrix(0.376677,-0.004143,0.002750,0.249985,0,0);-ms-transform:matrix(0.376677,-0.004143,0.002750,0.249985,0,0);-webkit-transform:matrix(0.376677,-0.004143,0.002750,0.249985,0,0);}
.m5_c01083{transform:matrix(0.385520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385520,0.000000,0.000000,0.250000,0,0);}
.me_c01083{transform:matrix(0.393181,-0.004325,0.002750,0.249985,0,0);-ms-transform:matrix(0.393181,-0.004325,0.002750,0.249985,0,0);-webkit-transform:matrix(0.393181,-0.004325,0.002750,0.249985,0,0);}
.m0_c01083{transform:matrix(0.399775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399775,0.000000,0.000000,0.250000,0,0);}
.m7_c01083{transform:matrix(0.455375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455375,0.000000,0.000000,0.250000,0,0);}
.m2_c01083{transform:matrix(0.475765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475765,0.000000,0.000000,0.250000,0,0);}
.mc_c01083{transform:matrix(0.510510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510510,0.000000,0.000000,0.250000,0,0);}
.m4_c01083{transform:matrix(0.534520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534520,0.000000,0.000000,0.250000,0,0);}
.m11_c01083{transform:matrix(0.556231,-0.006119,0.002750,0.249985,0,0);-ms-transform:matrix(0.556231,-0.006119,0.002750,0.249985,0,0);-webkit-transform:matrix(0.556231,-0.006119,0.002750,0.249985,0,0);}
.m18_c01083{transform:matrix(0.598499,-0.006583,0.002750,0.249985,0,0);-ms-transform:matrix(0.598499,-0.006583,0.002750,0.249985,0,0);-webkit-transform:matrix(0.598499,-0.006583,0.002750,0.249985,0,0);}
.m1_c01083{transform:matrix(0.615730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.615730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.615730,0.000000,0.000000,0.250000,0,0);}
.md_c01083{transform:matrix(0.675124,-0.007426,0.002750,0.249985,0,0);-ms-transform:matrix(0.675124,-0.007426,0.002750,0.249985,0,0);-webkit-transform:matrix(0.675124,-0.007426,0.002750,0.249985,0,0);}
.m12_c01083{transform:matrix(0.699433,-0.007694,0.002750,0.249985,0,0);-ms-transform:matrix(0.699433,-0.007694,0.002750,0.249985,0,0);-webkit-transform:matrix(0.699433,-0.007694,0.002750,0.249985,0,0);}
.v0_c01083{vertical-align:0.000000px;}
.ls0_c01083{letter-spacing:0.000000px;}
.sc__c01083{text-shadow:none;}
.sc0_c01083{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__c01083{-webkit-text-stroke:0px transparent;}
.sc0_c01083{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01083{word-spacing:0.000000px;}
.fc0_c01083{color:transparent;}
.fs0_c01083{font-size:72.000000px;}
.fs2_c01083{font-size:90.005445px;}
.fs1_c01083{font-size:156.000000px;}
.y0_c01083{bottom:0.000000px;}
.y3_c01083{bottom:663.268500px;}
.y4_c01083{bottom:663.862764px;}
.y5_c01083{bottom:664.269439px;}
.y6_c01083{bottom:664.699908px;}
.y7_c01083{bottom:664.999433px;}
.y8_c01083{bottom:665.292275px;}
.y9_c01083{bottom:666.205550px;}
.ya_c01083{bottom:666.576090px;}
.yb_c01083{bottom:667.028190px;}
.yc_c01083{bottom:667.544574px;}
.yd_c01083{bottom:667.870020px;}
.ye_c01083{bottom:668.756466px;}
.y2_c01083{bottom:908.397000px;}
.y1_c01083{bottom:949.930500px;}
.h2_c01083{height:72.000000px;}
.h4_c01083{height:90.005445px;}
.h3_c01083{height:156.000000px;}
.h0_c01083{height:1246.320000px;}
.h1_c01083{height:1246.500000px;}
.w1_c01083{width:885.750000px;}
.w0_c01083{width:885.870000px;}
.x0_c01083{left:0.000000px;}
.x1_c01083{left:85.860000px;}
.x2_c01083{left:100.170000px;}
.x3_c01083{left:130.410000px;}
.x9_c01083{left:143.370000px;}
.xe_c01083{left:145.552500px;}
.xa_c01083{left:157.140000px;}
.xf_c01083{left:199.576500px;}
.x4_c01083{left:210.330000px;}
.xb_c01083{left:233.550000px;}
.x10_c01083{left:236.547000px;}
.x5_c01083{left:261.090000px;}
.xc_c01083{left:268.650000px;}
.x11_c01083{left:275.680500px;}
.x12_c01083{left:302.910000px;}
.x6_c01083{left:330.210000px;}
.xd_c01083{left:355.320000px;}
.x7_c01083{left:362.340000px;}
.x13_c01083{left:412.557000px;}
.x14_c01083{left:446.242500px;}
.x8_c01083{left:476.550000px;}
.x15_c01083{left:487.342500px;}
.x16_c01083{left:534.286500px;}
.x17_c01083{left:563.872500px;}
.x18_c01083{left:644.458500px;}
@media print{
.v0_c01083{vertical-align:0.000000pt;}
.ls0_c01083{letter-spacing:0.000000pt;}
.ws0_c01083{word-spacing:0.000000pt;}
.fs0_c01083{font-size:64.000000pt;}
.fs2_c01083{font-size:80.004840pt;}
.fs1_c01083{font-size:138.666667pt;}
.y0_c01083{bottom:0.000000pt;}
.y3_c01083{bottom:589.572000pt;}
.y4_c01083{bottom:590.100235pt;}
.y5_c01083{bottom:590.461724pt;}
.y6_c01083{bottom:590.844363pt;}
.y7_c01083{bottom:591.110607pt;}
.y8_c01083{bottom:591.370911pt;}
.y9_c01083{bottom:592.182711pt;}
.ya_c01083{bottom:592.512080pt;}
.yb_c01083{bottom:592.913947pt;}
.yc_c01083{bottom:593.372955pt;}
.yd_c01083{bottom:593.662240pt;}
.ye_c01083{bottom:594.450192pt;}
.y2_c01083{bottom:807.464000pt;}
.y1_c01083{bottom:844.382667pt;}
.h2_c01083{height:64.000000pt;}
.h4_c01083{height:80.004840pt;}
.h3_c01083{height:138.666667pt;}
.h0_c01083{height:1107.840000pt;}
.h1_c01083{height:1108.000000pt;}
.w1_c01083{width:787.333333pt;}
.w0_c01083{width:787.440000pt;}
.x0_c01083{left:0.000000pt;}
.x1_c01083{left:76.320000pt;}
.x2_c01083{left:89.040000pt;}
.x3_c01083{left:115.920000pt;}
.x9_c01083{left:127.440000pt;}
.xe_c01083{left:129.380000pt;}
.xa_c01083{left:139.680000pt;}
.xf_c01083{left:177.401333pt;}
.x4_c01083{left:186.960000pt;}
.xb_c01083{left:207.600000pt;}
.x10_c01083{left:210.264000pt;}
.x5_c01083{left:232.080000pt;}
.xc_c01083{left:238.800000pt;}
.x11_c01083{left:245.049333pt;}
.x12_c01083{left:269.253333pt;}
.x6_c01083{left:293.520000pt;}
.xd_c01083{left:315.840000pt;}
.x7_c01083{left:322.080000pt;}
.x13_c01083{left:366.717333pt;}
.x14_c01083{left:396.660000pt;}
.x8_c01083{left:423.600000pt;}
.x15_c01083{left:433.193333pt;}
.x16_c01083{left:474.921333pt;}
.x17_c01083{left:501.220000pt;}
.x18_c01083{left:572.852000pt;}
}





/* 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_c01084 {
    display:none;
  }
  .loading-indicator_c01084.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01084 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_c01084 { 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_c01084" -> "#page-container .classname_c01084")
 */
.pf_c01084 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01084 { /* 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_c01084.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01084 { /* 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_c01084 { /* 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_c01084 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01084 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01084 {overflow:visible;}
  }
}
.c_c01084 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01084 { /* 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_c01084:after { /* webkit #35443 */
  content: '';
}
.t_c01084:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01084 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 */
}
.__c01084 { /* 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_c01084 { /* info for Javascript */
  display:none;
}
.l_c01084 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01084 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01084 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01084: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_c01084 {
    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_c01084.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01084.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_c01084 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01084{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01084;src:url('chunks/assets/font_7c6b9abe6ee2a268480c528b.woff2')format("woff");}.ff1_c01084{font-family:ff1_c01084;line-height:1.000000;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;}
.m108_c01084{transform:matrix(0.018140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.018140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.018140,0.000000,0.000000,0.250000,0,0);}
.m81_c01084{transform:matrix(0.149785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149785,0.000000,0.000000,0.250000,0,0);}
.m85_c01084{transform:matrix(0.160055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160055,0.000000,0.000000,0.250000,0,0);}
.m44_c01084{transform:matrix(0.161220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161220,0.000000,0.000000,0.250000,0,0);}
.mb7_c01084{transform:matrix(0.170840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170840,0.000000,0.000000,0.250000,0,0);}
.mf2_c01084{transform:matrix(0.175840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175840,0.000000,0.000000,0.250000,0,0);}
.m89_c01084{transform:matrix(0.176965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176965,0.000000,0.000000,0.250000,0,0);}
.m92_c01084{transform:matrix(0.179745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179745,0.000000,0.000000,0.250000,0,0);}
.m8c_c01084{transform:matrix(0.180280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180280,0.000000,0.000000,0.250000,0,0);}
.m107_c01084{transform:matrix(0.180625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180625,0.000000,0.000000,0.250000,0,0);}
.m40_c01084{transform:matrix(0.181395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181395,0.000000,0.000000,0.250000,0,0);}
.m102_c01084{transform:matrix(0.181885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181885,0.000000,0.000000,0.250000,0,0);}
.m88_c01084{transform:matrix(0.182485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182485,0.000000,0.000000,0.250000,0,0);}
.m12e_c01084{transform:matrix(0.182760,0.003290,-0.004499,0.249960,0,0);-ms-transform:matrix(0.182760,0.003290,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.182760,0.003290,-0.004499,0.249960,0,0);}
.mf6_c01084{transform:matrix(0.184270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184270,0.000000,0.000000,0.250000,0,0);}
.m82_c01084{transform:matrix(0.185195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185195,0.000000,0.000000,0.250000,0,0);}
.m7e_c01084{transform:matrix(0.185600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185600,0.000000,0.000000,0.250000,0,0);}
.m83_c01084{transform:matrix(0.186825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186825,0.000000,0.000000,0.250000,0,0);}
.mac_c01084{transform:matrix(0.186935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186935,0.000000,0.000000,0.250000,0,0);}
.md5_c01084{transform:matrix(0.186945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186945,0.000000,0.000000,0.250000,0,0);}
.m80_c01084{transform:matrix(0.186965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186965,0.000000,0.000000,0.250000,0,0);}
.m86_c01084{transform:matrix(0.189270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189270,0.000000,0.000000,0.250000,0,0);}
.mf0_c01084{transform:matrix(0.190265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190265,0.000000,0.000000,0.250000,0,0);}
.m7f_c01084{transform:matrix(0.190435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190435,0.000000,0.000000,0.250000,0,0);}
.m87_c01084{transform:matrix(0.190475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190475,0.000000,0.000000,0.250000,0,0);}
.m69_c01084{transform:matrix(0.191970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191970,0.000000,0.000000,0.250000,0,0);}
.mb2_c01084{transform:matrix(0.191975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191975,0.000000,0.000000,0.250000,0,0);}
.md6_c01084{transform:matrix(0.193040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193040,0.000000,0.000000,0.250000,0,0);}
.m6b_c01084{transform:matrix(0.193505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193505,0.000000,0.000000,0.250000,0,0);}
.m93_c01084{transform:matrix(0.193540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193540,0.000000,0.000000,0.250000,0,0);}
.m8a_c01084{transform:matrix(0.194195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194195,0.000000,0.000000,0.250000,0,0);}
.m10c_c01084{transform:matrix(0.194319,0.003498,-0.004499,0.249960,0,0);-ms-transform:matrix(0.194319,0.003498,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.194319,0.003498,-0.004499,0.249960,0,0);}
.m111_c01084{transform:matrix(0.194908,0.003508,-0.004499,0.249960,0,0);-ms-transform:matrix(0.194908,0.003508,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.194908,0.003508,-0.004499,0.249960,0,0);}
.md9_c01084{transform:matrix(0.195900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195900,0.000000,0.000000,0.250000,0,0);}
.mf9_c01084{transform:matrix(0.196175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196175,0.000000,0.000000,0.250000,0,0);}
.m26_c01084{transform:matrix(0.196370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196370,0.000000,0.000000,0.250000,0,0);}
.m84_c01084{transform:matrix(0.197005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197005,0.000000,0.000000,0.250000,0,0);}
.me3_c01084{transform:matrix(0.197330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197330,0.000000,0.000000,0.250000,0,0);}
.mfa_c01084{transform:matrix(0.198930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198930,0.000000,0.000000,0.250000,0,0);}
.mbe_c01084{transform:matrix(0.199100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199100,0.000000,0.000000,0.250000,0,0);}
.mff_c01084{transform:matrix(0.199700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199700,0.000000,0.000000,0.250000,0,0);}
.md3_c01084{transform:matrix(0.200125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200125,0.000000,0.000000,0.250000,0,0);}
.m8f_c01084{transform:matrix(0.200580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200580,0.000000,0.000000,0.250000,0,0);}
.m113_c01084{transform:matrix(0.201462,0.003626,-0.004499,0.249960,0,0);-ms-transform:matrix(0.201462,0.003626,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.201462,0.003626,-0.004499,0.249960,0,0);}
.m8d_c01084{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.mf8_c01084{transform:matrix(0.201990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201990,0.000000,0.000000,0.250000,0,0);}
.mb1_c01084{transform:matrix(0.202180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202180,0.000000,0.000000,0.250000,0,0);}
.m106_c01084{transform:matrix(0.202580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202580,0.000000,0.000000,0.250000,0,0);}
.mda_c01084{transform:matrix(0.203025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203025,0.000000,0.000000,0.250000,0,0);}
.m37_c01084{transform:matrix(0.203550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203550,0.000000,0.000000,0.250000,0,0);}
.mb8_c01084{transform:matrix(0.203805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203805,0.000000,0.000000,0.250000,0,0);}
.mf3_c01084{transform:matrix(0.204940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204940,0.000000,0.000000,0.250000,0,0);}
.m126_c01084{transform:matrix(0.205587,0.003701,-0.004499,0.249960,0,0);-ms-transform:matrix(0.205587,0.003701,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.205587,0.003701,-0.004499,0.249960,0,0);}
.maa_c01084{transform:matrix(0.206220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206220,0.000000,0.000000,0.250000,0,0);}
.m41_c01084{transform:matrix(0.206985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206985,0.000000,0.000000,0.250000,0,0);}
.m35_c01084{transform:matrix(0.207395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207395,0.000000,0.000000,0.250000,0,0);}
.m103_c01084{transform:matrix(0.207490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207490,0.000000,0.000000,0.250000,0,0);}
.m70_c01084{transform:matrix(0.208015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208015,0.000000,0.000000,0.250000,0,0);}
.mb9_c01084{transform:matrix(0.208065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208065,0.000000,0.000000,0.250000,0,0);}
.mba_c01084{transform:matrix(0.208605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208605,0.000000,0.000000,0.250000,0,0);}
.m10f_c01084{transform:matrix(0.209186,0.003765,-0.004499,0.249960,0,0);-ms-transform:matrix(0.209186,0.003765,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.209186,0.003765,-0.004499,0.249960,0,0);}
.m43_c01084{transform:matrix(0.209310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209310,0.000000,0.000000,0.250000,0,0);}
.mbb_c01084{transform:matrix(0.209360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209360,0.000000,0.000000,0.250000,0,0);}
.m10e_c01084{transform:matrix(0.209516,0.003771,-0.004499,0.249960,0,0);-ms-transform:matrix(0.209516,0.003771,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.209516,0.003771,-0.004499,0.249960,0,0);}
.m6d_c01084{transform:matrix(0.209545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209545,0.000000,0.000000,0.250000,0,0);}
.ma8_c01084{transform:matrix(0.209795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209795,0.000000,0.000000,0.250000,0,0);}
.m109_c01084{transform:matrix(0.209856,0.003777,-0.004499,0.249960,0,0);-ms-transform:matrix(0.209856,0.003777,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.209856,0.003777,-0.004499,0.249960,0,0);}
.mf5_c01084{transform:matrix(0.210040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210040,0.000000,0.000000,0.250000,0,0);}
.m3c_c01084{transform:matrix(0.210480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210480,0.000000,0.000000,0.250000,0,0);}
.m10b_c01084{transform:matrix(0.210546,0.003790,-0.004499,0.249960,0,0);-ms-transform:matrix(0.210546,0.003790,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.210546,0.003790,-0.004499,0.249960,0,0);}
.mfc_c01084{transform:matrix(0.210590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210590,0.000000,0.000000,0.250000,0,0);}
.m6e_c01084{transform:matrix(0.210610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210610,0.000000,0.000000,0.250000,0,0);}
.ma2_c01084{transform:matrix(0.211630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211630,0.000000,0.000000,0.250000,0,0);}
.m5_c01084{transform:matrix(0.211845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211845,0.000000,0.000000,0.250000,0,0);}
.mc_c01084{transform:matrix(0.211870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211870,0.000000,0.000000,0.250000,0,0);}
.md7_c01084{transform:matrix(0.212345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212345,0.000000,0.000000,0.250000,0,0);}
.mdd_c01084{transform:matrix(0.212360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212360,0.000000,0.000000,0.250000,0,0);}
.m90_c01084{transform:matrix(0.212460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212460,0.000000,0.000000,0.250000,0,0);}
.m3d_c01084{transform:matrix(0.212585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212585,0.000000,0.000000,0.250000,0,0);}
.md4_c01084{transform:matrix(0.212825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212825,0.000000,0.000000,0.250000,0,0);}
.mf4_c01084{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m8e_c01084{transform:matrix(0.213150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213150,0.000000,0.000000,0.250000,0,0);}
.m125_c01084{transform:matrix(0.213660,0.003846,-0.004499,0.249960,0,0);-ms-transform:matrix(0.213660,0.003846,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.213660,0.003846,-0.004499,0.249960,0,0);}
.mb4_c01084{transform:matrix(0.213860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213860,0.000000,0.000000,0.250000,0,0);}
.m12a_c01084{transform:matrix(0.214075,0.003853,-0.004499,0.249960,0,0);-ms-transform:matrix(0.214075,0.003853,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.214075,0.003853,-0.004499,0.249960,0,0);}
.mfe_c01084{transform:matrix(0.214080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214080,0.000000,0.000000,0.250000,0,0);}
.mab_c01084{transform:matrix(0.214265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214265,0.000000,0.000000,0.250000,0,0);}
.m33_c01084{transform:matrix(0.214560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214560,0.000000,0.000000,0.250000,0,0);}
.m9e_c01084{transform:matrix(0.214910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214910,0.000000,0.000000,0.250000,0,0);}
.m27_c01084{transform:matrix(0.215755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215755,0.000000,0.000000,0.250000,0,0);}
.m91_c01084{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.mf1_c01084{transform:matrix(0.216435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216435,0.000000,0.000000,0.250000,0,0);}
.mdf_c01084{transform:matrix(0.217135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217135,0.000000,0.000000,0.250000,0,0);}
.m3f_c01084{transform:matrix(0.217945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217945,0.000000,0.000000,0.250000,0,0);}
.mdb_c01084{transform:matrix(0.218075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218075,0.000000,0.000000,0.250000,0,0);}
.m10d_c01084{transform:matrix(0.218330,0.003930,-0.004499,0.249960,0,0);-ms-transform:matrix(0.218330,0.003930,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.218330,0.003930,-0.004499,0.249960,0,0);}
.m110_c01084{transform:matrix(0.218545,0.003934,-0.004499,0.249960,0,0);-ms-transform:matrix(0.218545,0.003934,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.218545,0.003934,-0.004499,0.249960,0,0);}
.m9_c01084{transform:matrix(0.218625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218625,0.000000,0.000000,0.250000,0,0);}
.mbd_c01084{transform:matrix(0.218835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218835,0.000000,0.000000,0.250000,0,0);}
.m68_c01084{transform:matrix(0.218880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218880,0.000000,0.000000,0.250000,0,0);}
.m12f_c01084{transform:matrix(0.218890,0.003940,-0.004499,0.249960,0,0);-ms-transform:matrix(0.218890,0.003940,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.218890,0.003940,-0.004499,0.249960,0,0);}
.m120_c01084{transform:matrix(0.219364,0.003949,-0.004499,0.249960,0,0);-ms-transform:matrix(0.219364,0.003949,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.219364,0.003949,-0.004499,0.249960,0,0);}
.m11f_c01084{transform:matrix(0.219679,0.003954,-0.004499,0.249960,0,0);-ms-transform:matrix(0.219679,0.003954,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.219679,0.003954,-0.004499,0.249960,0,0);}
.m1f_c01084{transform:matrix(0.220255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220255,0.000000,0.000000,0.250000,0,0);}
.m115_c01084{transform:matrix(0.220279,0.003965,-0.004499,0.249960,0,0);-ms-transform:matrix(0.220279,0.003965,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.220279,0.003965,-0.004499,0.249960,0,0);}
.md2_c01084{transform:matrix(0.220285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220285,0.000000,0.000000,0.250000,0,0);}
.m122_c01084{transform:matrix(0.220609,0.003971,-0.004499,0.249960,0,0);-ms-transform:matrix(0.220609,0.003971,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.220609,0.003971,-0.004499,0.249960,0,0);}
.md8_c01084{transform:matrix(0.220635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220635,0.000000,0.000000,0.250000,0,0);}
.m105_c01084{transform:matrix(0.220815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220815,0.000000,0.000000,0.250000,0,0);}
.mb5_c01084{transform:matrix(0.220850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220850,0.000000,0.000000,0.250000,0,0);}
.m3e_c01084{transform:matrix(0.220885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220885,0.000000,0.000000,0.250000,0,0);}
.mc9_c01084{transform:matrix(0.221205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221205,0.000000,0.000000,0.250000,0,0);}
.me5_c01084{transform:matrix(0.222040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222040,0.000000,0.000000,0.250000,0,0);}
.mf7_c01084{transform:matrix(0.222180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222180,0.000000,0.000000,0.250000,0,0);}
.mb3_c01084{transform:matrix(0.222205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222205,0.000000,0.000000,0.250000,0,0);}
.m114_c01084{transform:matrix(0.222409,0.004003,-0.004499,0.249960,0,0);-ms-transform:matrix(0.222409,0.004003,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.222409,0.004003,-0.004499,0.249960,0,0);}
.m49_c01084{transform:matrix(0.222625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222625,0.000000,0.000000,0.250000,0,0);}
.md_c01084{transform:matrix(0.222845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222845,0.000000,0.000000,0.250000,0,0);}
.m4c_c01084{transform:matrix(0.223270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223270,0.000000,0.000000,0.250000,0,0);}
.m42_c01084{transform:matrix(0.223525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223525,0.000000,0.000000,0.250000,0,0);}
.m10a_c01084{transform:matrix(0.223719,0.004027,-0.004499,0.249960,0,0);-ms-transform:matrix(0.223719,0.004027,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.223719,0.004027,-0.004499,0.249960,0,0);}
.me9_c01084{transform:matrix(0.224070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224070,0.000000,0.000000,0.250000,0,0);}
.m8b_c01084{transform:matrix(0.224220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224220,0.000000,0.000000,0.250000,0,0);}
.m29_c01084{transform:matrix(0.224340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224340,0.000000,0.000000,0.250000,0,0);}
.m123_c01084{transform:matrix(0.224434,0.004040,-0.004499,0.249960,0,0);-ms-transform:matrix(0.224434,0.004040,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.224434,0.004040,-0.004499,0.249960,0,0);}
.m11_c01084{transform:matrix(0.224765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224765,0.000000,0.000000,0.250000,0,0);}
.me4_c01084{transform:matrix(0.224915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224915,0.000000,0.000000,0.250000,0,0);}
.m131_c01084{transform:matrix(0.225229,0.004054,-0.004499,0.249960,0,0);-ms-transform:matrix(0.225229,0.004054,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.225229,0.004054,-0.004499,0.249960,0,0);}
.m4f_c01084{transform:matrix(0.225345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225345,0.000000,0.000000,0.250000,0,0);}
.m2a_c01084{transform:matrix(0.225350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225350,0.000000,0.000000,0.250000,0,0);}
.me2_c01084{transform:matrix(0.225660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225660,0.000000,0.000000,0.250000,0,0);}
.m121_c01084{transform:matrix(0.226578,0.004078,-0.004499,0.249960,0,0);-ms-transform:matrix(0.226578,0.004078,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.226578,0.004078,-0.004499,0.249960,0,0);}
.mdc_c01084{transform:matrix(0.227140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227140,0.000000,0.000000,0.250000,0,0);}
.m124_c01084{transform:matrix(0.227253,0.004091,-0.004499,0.249960,0,0);-ms-transform:matrix(0.227253,0.004091,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.227253,0.004091,-0.004499,0.249960,0,0);}
.mfd_c01084{transform:matrix(0.227320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227320,0.000000,0.000000,0.250000,0,0);}
.m55_c01084{transform:matrix(0.227430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227430,0.000000,0.000000,0.250000,0,0);}
.mb6_c01084{transform:matrix(0.227640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227640,0.000000,0.000000,0.250000,0,0);}
.mb0_c01084{transform:matrix(0.227695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227695,0.000000,0.000000,0.250000,0,0);}
.m1b_c01084{transform:matrix(0.228090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228090,0.000000,0.000000,0.250000,0,0);}
.m58_c01084{transform:matrix(0.228160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228160,0.000000,0.000000,0.250000,0,0);}
.m132_c01084{transform:matrix(0.228543,0.004114,-0.004499,0.249960,0,0);-ms-transform:matrix(0.228543,0.004114,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.228543,0.004114,-0.004499,0.249960,0,0);}
.m13_c01084{transform:matrix(0.228695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228695,0.000000,0.000000,0.250000,0,0);}
.m36_c01084{transform:matrix(0.230445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230445,0.000000,0.000000,0.250000,0,0);}
.m12d_c01084{transform:matrix(0.230893,0.004156,-0.004499,0.249960,0,0);-ms-transform:matrix(0.230893,0.004156,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.230893,0.004156,-0.004499,0.249960,0,0);}
.mad_c01084{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.mbc_c01084{transform:matrix(0.231280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231280,0.000000,0.000000,0.250000,0,0);}
.mec_c01084{transform:matrix(0.231625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231625,0.000000,0.000000,0.250000,0,0);}
.m63_c01084{transform:matrix(0.231640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231640,0.000000,0.000000,0.250000,0,0);}
.m2f_c01084{transform:matrix(0.231805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231805,0.000000,0.000000,0.250000,0,0);}
.m3_c01084{transform:matrix(0.231810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231810,0.000000,0.000000,0.250000,0,0);}
.m32_c01084{transform:matrix(0.232375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232375,0.000000,0.000000,0.250000,0,0);}
.m1_c01084{transform:matrix(0.232550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232550,0.000000,0.000000,0.250000,0,0);}
.mf_c01084{transform:matrix(0.232850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232850,0.000000,0.000000,0.250000,0,0);}
.me_c01084{transform:matrix(0.232945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232945,0.000000,0.000000,0.250000,0,0);}
.m2b_c01084{transform:matrix(0.232955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232955,0.000000,0.000000,0.250000,0,0);}
.m67_c01084{transform:matrix(0.233570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233570,0.000000,0.000000,0.250000,0,0);}
.m10_c01084{transform:matrix(0.234260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234260,0.000000,0.000000,0.250000,0,0);}
.m28_c01084{transform:matrix(0.234345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234345,0.000000,0.000000,0.250000,0,0);}
.m62_c01084{transform:matrix(0.234555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234555,0.000000,0.000000,0.250000,0,0);}
.ma3_c01084{transform:matrix(0.234990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234990,0.000000,0.000000,0.250000,0,0);}
.m5e_c01084{transform:matrix(0.235080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235080,0.000000,0.000000,0.250000,0,0);}
.m38_c01084{transform:matrix(0.235430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235430,0.000000,0.000000,0.250000,0,0);}
.m112_c01084{transform:matrix(0.235642,0.004242,-0.004499,0.249960,0,0);-ms-transform:matrix(0.235642,0.004242,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.235642,0.004242,-0.004499,0.249960,0,0);}
.me0_c01084{transform:matrix(0.235890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235890,0.000000,0.000000,0.250000,0,0);}
.m19_c01084{transform:matrix(0.235995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235995,0.000000,0.000000,0.250000,0,0);}
.ma9_c01084{transform:matrix(0.236020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236020,0.000000,0.000000,0.250000,0,0);}
.m130_c01084{transform:matrix(0.236727,0.004261,-0.004499,0.249960,0,0);-ms-transform:matrix(0.236727,0.004261,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.236727,0.004261,-0.004499,0.249960,0,0);}
.m6_c01084{transform:matrix(0.236770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236770,0.000000,0.000000,0.250000,0,0);}
.mde_c01084{transform:matrix(0.237175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237175,0.000000,0.000000,0.250000,0,0);}
.m17_c01084{transform:matrix(0.237185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237185,0.000000,0.000000,0.250000,0,0);}
.m1c_c01084{transform:matrix(0.237800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237800,0.000000,0.000000,0.250000,0,0);}
.m0_c01084{transform:matrix(0.238625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238625,0.000000,0.000000,0.250000,0,0);}
.ma7_c01084{transform:matrix(0.239210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239210,0.000000,0.000000,0.250000,0,0);}
.m2_c01084{transform:matrix(0.239245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239245,0.000000,0.000000,0.250000,0,0);}
.mea_c01084{transform:matrix(0.239295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239295,0.000000,0.000000,0.250000,0,0);}
.m129_c01084{transform:matrix(0.239361,0.004309,-0.004499,0.249960,0,0);-ms-transform:matrix(0.239361,0.004309,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.239361,0.004309,-0.004499,0.249960,0,0);}
.mfb_c01084{transform:matrix(0.239825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239825,0.000000,0.000000,0.250000,0,0);}
.m4d_c01084{transform:matrix(0.240105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240105,0.000000,0.000000,0.250000,0,0);}
.m1e_c01084{transform:matrix(0.240595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240595,0.000000,0.000000,0.250000,0,0);}
.m20_c01084{transform:matrix(0.242020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242020,0.000000,0.000000,0.250000,0,0);}
.m104_c01084{transform:matrix(0.242135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242135,0.000000,0.000000,0.250000,0,0);}
.m12b_c01084{transform:matrix(0.242881,0.004372,-0.004499,0.249960,0,0);-ms-transform:matrix(0.242881,0.004372,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.242881,0.004372,-0.004499,0.249960,0,0);}
.m5d_c01084{transform:matrix(0.242980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242980,0.000000,0.000000,0.250000,0,0);}
.m31_c01084{transform:matrix(0.243375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243375,0.000000,0.000000,0.250000,0,0);}
.m2c_c01084{transform:matrix(0.243435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243435,0.000000,0.000000,0.250000,0,0);}
.m128_c01084{transform:matrix(0.244220,0.004396,-0.004499,0.249960,0,0);-ms-transform:matrix(0.244220,0.004396,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.244220,0.004396,-0.004499,0.249960,0,0);}
.m95_c01084{transform:matrix(0.245835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245835,0.000000,0.000000,0.250000,0,0);}
.mcf_c01084{transform:matrix(0.246980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246980,0.000000,0.000000,0.250000,0,0);}
.me1_c01084{transform:matrix(0.247020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247020,0.000000,0.000000,0.250000,0,0);}
.m66_c01084{transform:matrix(0.247045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247045,0.000000,0.000000,0.250000,0,0);}
.m50_c01084{transform:matrix(0.247215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247215,0.000000,0.000000,0.250000,0,0);}
.m79_c01084{transform:matrix(0.247355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247355,0.000000,0.000000,0.250000,0,0);}
.m22_c01084{transform:matrix(0.247615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247615,0.000000,0.000000,0.250000,0,0);}
.mc0_c01084{transform:matrix(0.247640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247640,0.000000,0.000000,0.250000,0,0);}
.m6a_c01084{transform:matrix(0.247705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247705,0.000000,0.000000,0.250000,0,0);}
.ma1_c01084{transform:matrix(0.247990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247990,0.000000,0.000000,0.250000,0,0);}
.m12_c01084{transform:matrix(0.247995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247995,0.000000,0.000000,0.250000,0,0);}
.m2d_c01084{transform:matrix(0.248075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248075,0.000000,0.000000,0.250000,0,0);}
.mb_c01084{transform:matrix(0.248200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248200,0.000000,0.000000,0.250000,0,0);}
.m98_c01084{transform:matrix(0.248960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248960,0.000000,0.000000,0.250000,0,0);}
.m71_c01084{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m119_c01084{transform:matrix(0.249575,0.004492,-0.004499,0.249960,0,0);-ms-transform:matrix(0.249575,0.004492,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.249575,0.004492,-0.004499,0.249960,0,0);}
.m6c_c01084{transform:matrix(0.249865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249865,0.000000,0.000000,0.250000,0,0);}
.me7_c01084{transform:matrix(0.250240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250240,0.000000,0.000000,0.250000,0,0);}
.m65_c01084{transform:matrix(0.251415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251415,0.000000,0.000000,0.250000,0,0);}
.m127_c01084{transform:matrix(0.252119,0.004538,-0.004499,0.249960,0,0);-ms-transform:matrix(0.252119,0.004538,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.252119,0.004538,-0.004499,0.249960,0,0);}
.m12c_c01084{transform:matrix(0.252294,0.004541,-0.004499,0.249960,0,0);-ms-transform:matrix(0.252294,0.004541,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.252294,0.004541,-0.004499,0.249960,0,0);}
.m56_c01084{transform:matrix(0.252880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252880,0.000000,0.000000,0.250000,0,0);}
.m52_c01084{transform:matrix(0.253235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253235,0.000000,0.000000,0.250000,0,0);}
.m9b_c01084{transform:matrix(0.253400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253400,0.000000,0.000000,0.250000,0,0);}
.ma4_c01084{transform:matrix(0.254075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254075,0.000000,0.000000,0.250000,0,0);}
.m21_c01084{transform:matrix(0.254925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254925,0.000000,0.000000,0.250000,0,0);}
.m60_c01084{transform:matrix(0.254950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254950,0.000000,0.000000,0.250000,0,0);}
.m39_c01084{transform:matrix(0.254980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254980,0.000000,0.000000,0.250000,0,0);}
.ma_c01084{transform:matrix(0.255410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255410,0.000000,0.000000,0.250000,0,0);}
.m25_c01084{transform:matrix(0.255460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255460,0.000000,0.000000,0.250000,0,0);}
.m6f_c01084{transform:matrix(0.255660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255660,0.000000,0.000000,0.250000,0,0);}
.m2e_c01084{transform:matrix(0.256220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256220,0.000000,0.000000,0.250000,0,0);}
.m34_c01084{transform:matrix(0.256615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256615,0.000000,0.000000,0.250000,0,0);}
.m73_c01084{transform:matrix(0.257595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257595,0.000000,0.000000,0.250000,0,0);}
.m9f_c01084{transform:matrix(0.258070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258070,0.000000,0.000000,0.250000,0,0);}
.me6_c01084{transform:matrix(0.258310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258310,0.000000,0.000000,0.250000,0,0);}
.mca_c01084{transform:matrix(0.259055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259055,0.000000,0.000000,0.250000,0,0);}
.ma5_c01084{transform:matrix(0.259820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259820,0.000000,0.000000,0.250000,0,0);}
.mcb_c01084{transform:matrix(0.262415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262415,0.000000,0.000000,0.250000,0,0);}
.m77_c01084{transform:matrix(0.262515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262515,0.000000,0.000000,0.250000,0,0);}
.m18_c01084{transform:matrix(0.262550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262550,0.000000,0.000000,0.250000,0,0);}
.med_c01084{transform:matrix(0.263230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263230,0.000000,0.000000,0.250000,0,0);}
.m9a_c01084{transform:matrix(0.263610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263610,0.000000,0.000000,0.250000,0,0);}
.m53_c01084{transform:matrix(0.263985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263985,0.000000,0.000000,0.250000,0,0);}
.m54_c01084{transform:matrix(0.264675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264675,0.000000,0.000000,0.250000,0,0);}
.m57_c01084{transform:matrix(0.264920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264920,0.000000,0.000000,0.250000,0,0);}
.m61_c01084{transform:matrix(0.264980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264980,0.000000,0.000000,0.250000,0,0);}
.ma0_c01084{transform:matrix(0.265365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265365,0.000000,0.000000,0.250000,0,0);}
.m8_c01084{transform:matrix(0.265665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265665,0.000000,0.000000,0.250000,0,0);}
.m51_c01084{transform:matrix(0.267125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267125,0.000000,0.000000,0.250000,0,0);}
.m46_c01084{transform:matrix(0.267470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267470,0.000000,0.000000,0.250000,0,0);}
.mc8_c01084{transform:matrix(0.267755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267755,0.000000,0.000000,0.250000,0,0);}
.m15_c01084{transform:matrix(0.267910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267910,0.000000,0.000000,0.250000,0,0);}
.m4b_c01084{transform:matrix(0.268125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268125,0.000000,0.000000,0.250000,0,0);}
.m72_c01084{transform:matrix(0.268165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268165,0.000000,0.000000,0.250000,0,0);}
.m14_c01084{transform:matrix(0.268355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268355,0.000000,0.000000,0.250000,0,0);}
.m16_c01084{transform:matrix(0.268460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268460,0.000000,0.000000,0.250000,0,0);}
.mcd_c01084{transform:matrix(0.268600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268600,0.000000,0.000000,0.250000,0,0);}
.mc6_c01084{transform:matrix(0.269160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269160,0.000000,0.000000,0.250000,0,0);}
.m78_c01084{transform:matrix(0.269195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269195,0.000000,0.000000,0.250000,0,0);}
.m9d_c01084{transform:matrix(0.269655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269655,0.000000,0.000000,0.250000,0,0);}
.mce_c01084{transform:matrix(0.270445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270445,0.000000,0.000000,0.250000,0,0);}
.m1a_c01084{transform:matrix(0.270510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270510,0.000000,0.000000,0.250000,0,0);}
.mc4_c01084{transform:matrix(0.270695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270695,0.000000,0.000000,0.250000,0,0);}
.m5f_c01084{transform:matrix(0.270775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270775,0.000000,0.000000,0.250000,0,0);}
.mee_c01084{transform:matrix(0.271125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271125,0.000000,0.000000,0.250000,0,0);}
.m5a_c01084{transform:matrix(0.271600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271600,0.000000,0.000000,0.250000,0,0);}
.m75_c01084{transform:matrix(0.273345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273345,0.000000,0.000000,0.250000,0,0);}
.m7b_c01084{transform:matrix(0.273745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273745,0.000000,0.000000,0.250000,0,0);}
.maf_c01084{transform:matrix(0.273815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273815,0.000000,0.000000,0.250000,0,0);}
.m1d_c01084{transform:matrix(0.274155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274155,0.000000,0.000000,0.250000,0,0);}
.mcc_c01084{transform:matrix(0.274260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274260,0.000000,0.000000,0.250000,0,0);}
.mc1_c01084{transform:matrix(0.274795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274795,0.000000,0.000000,0.250000,0,0);}
.m47_c01084{transform:matrix(0.275605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275605,0.000000,0.000000,0.250000,0,0);}
.m23_c01084{transform:matrix(0.275670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275670,0.000000,0.000000,0.250000,0,0);}
.m4a_c01084{transform:matrix(0.275700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275700,0.000000,0.000000,0.250000,0,0);}
.m5c_c01084{transform:matrix(0.276935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276935,0.000000,0.000000,0.250000,0,0);}
.m64_c01084{transform:matrix(0.278120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278120,0.000000,0.000000,0.250000,0,0);}
.meb_c01084{transform:matrix(0.278325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278325,0.000000,0.000000,0.250000,0,0);}
.m48_c01084{transform:matrix(0.278525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278525,0.000000,0.000000,0.250000,0,0);}
.me8_c01084{transform:matrix(0.280020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280020,0.000000,0.000000,0.250000,0,0);}
.m7d_c01084{transform:matrix(0.280400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280400,0.000000,0.000000,0.250000,0,0);}
.m11c_c01084{transform:matrix(0.280435,0.005048,-0.004499,0.249960,0,0);-ms-transform:matrix(0.280435,0.005048,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.280435,0.005048,-0.004499,0.249960,0,0);}
.mef_c01084{transform:matrix(0.280670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280670,0.000000,0.000000,0.250000,0,0);}
.m99_c01084{transform:matrix(0.282575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282575,0.000000,0.000000,0.250000,0,0);}
.m101_c01084{transform:matrix(0.282865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282865,0.000000,0.000000,0.250000,0,0);}
.m24_c01084{transform:matrix(0.285055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285055,0.000000,0.000000,0.250000,0,0);}
.m3b_c01084{transform:matrix(0.286610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286610,0.000000,0.000000,0.250000,0,0);}
.mbf_c01084{transform:matrix(0.286690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286690,0.000000,0.000000,0.250000,0,0);}
.m96_c01084{transform:matrix(0.287280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287280,0.000000,0.000000,0.250000,0,0);}
.mc5_c01084{transform:matrix(0.287765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287765,0.000000,0.000000,0.250000,0,0);}
.m7a_c01084{transform:matrix(0.291185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291185,0.000000,0.000000,0.250000,0,0);}
.m4e_c01084{transform:matrix(0.291980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291980,0.000000,0.000000,0.250000,0,0);}
.m9c_c01084{transform:matrix(0.292065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292065,0.000000,0.000000,0.250000,0,0);}
.m11a_c01084{transform:matrix(0.292563,0.005266,-0.004499,0.249960,0,0);-ms-transform:matrix(0.292563,0.005266,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.292563,0.005266,-0.004499,0.249960,0,0);}
.m30_c01084{transform:matrix(0.296985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296985,0.000000,0.000000,0.250000,0,0);}
.mc3_c01084{transform:matrix(0.297935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297935,0.000000,0.000000,0.250000,0,0);}
.m97_c01084{transform:matrix(0.298800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298800,0.000000,0.000000,0.250000,0,0);}
.m76_c01084{transform:matrix(0.298825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298825,0.000000,0.000000,0.250000,0,0);}
.m116_c01084{transform:matrix(0.299611,0.005393,-0.004499,0.249960,0,0);-ms-transform:matrix(0.299611,0.005393,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.299611,0.005393,-0.004499,0.249960,0,0);}
.m59_c01084{transform:matrix(0.300500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300500,0.000000,0.000000,0.250000,0,0);}
.m117_c01084{transform:matrix(0.303456,0.005462,-0.004499,0.249960,0,0);-ms-transform:matrix(0.303456,0.005462,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.303456,0.005462,-0.004499,0.249960,0,0);}
.mc2_c01084{transform:matrix(0.304080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304080,0.000000,0.000000,0.250000,0,0);}
.m118_c01084{transform:matrix(0.304241,0.005476,-0.004499,0.249960,0,0);-ms-transform:matrix(0.304241,0.005476,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.304241,0.005476,-0.004499,0.249960,0,0);}
.m11b_c01084{transform:matrix(0.304731,0.005485,-0.004499,0.249960,0,0);-ms-transform:matrix(0.304731,0.005485,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.304731,0.005485,-0.004499,0.249960,0,0);}
.mc7_c01084{transform:matrix(0.306440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306440,0.000000,0.000000,0.250000,0,0);}
.m7c_c01084{transform:matrix(0.309555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309555,0.000000,0.000000,0.250000,0,0);}
.m94_c01084{transform:matrix(0.310385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310385,0.000000,0.000000,0.250000,0,0);}
.md1_c01084{transform:matrix(0.320205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320205,0.000000,0.000000,0.250000,0,0);}
.mae_c01084{transform:matrix(0.331620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331620,0.000000,0.000000,0.250000,0,0);}
.m11e_c01084{transform:matrix(0.339875,0.006118,-0.004499,0.249960,0,0);-ms-transform:matrix(0.339875,0.006118,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.339875,0.006118,-0.004499,0.249960,0,0);}
.m74_c01084{transform:matrix(0.343810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343810,0.000000,0.000000,0.250000,0,0);}
.m7_c01084{transform:matrix(0.346135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346135,0.000000,0.000000,0.250000,0,0);}
.ma6_c01084{transform:matrix(0.353405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353405,0.000000,0.000000,0.250000,0,0);}
.m5b_c01084{transform:matrix(0.355855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355855,0.000000,0.000000,0.250000,0,0);}
.m100_c01084{transform:matrix(0.358350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358350,0.000000,0.000000,0.250000,0,0);}
.m45_c01084{transform:matrix(0.359900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359900,0.000000,0.000000,0.250000,0,0);}
.m4_c01084{transform:matrix(0.397095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397095,0.000000,0.000000,0.250000,0,0);}
.md0_c01084{transform:matrix(0.588240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.588240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.588240,0.000000,0.000000,0.250000,0,0);}
.m3a_c01084{transform:matrix(0.642875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.642875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.642875,0.000000,0.000000,0.250000,0,0);}
.m11d_c01084{transform:matrix(0.643081,0.011575,-0.004499,0.249960,0,0);-ms-transform:matrix(0.643081,0.011575,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.643081,0.011575,-0.004499,0.249960,0,0);}
.v0_c01084{vertical-align:0.000000px;}
.ls0_c01084{letter-spacing:0.000000px;}
.sc__c01084{text-shadow:none;}
.sc0_c01084{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__c01084{-webkit-text-stroke:0px transparent;}
.sc0_c01084{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01084{word-spacing:0.000000px;}
.fc0_c01084{color:transparent;}
.fs4_c01084{font-size:66.000000px;}
.fs8_c01084{font-size:66.010691px;}
.fs2_c01084{font-size:72.000000px;}
.fs1_c01084{font-size:78.000000px;}
.fs9_c01084{font-size:78.012635px;}
.fs0_c01084{font-size:84.000000px;}
.fs7_c01084{font-size:84.013607px;}
.fs3_c01084{font-size:90.000000px;}
.fs5_c01084{font-size:102.000000px;}
.fs6_c01084{font-size:120.000000px;}
.y0_c01084{bottom:0.000000px;}
.y11c_c01084{bottom:52.430649px;}
.y11b_c01084{bottom:53.702787px;}
.y11a_c01084{bottom:55.225554px;}
.y119_c01084{bottom:55.989564px;}
.y118_c01084{bottom:56.492832px;}
.y117_c01084{bottom:57.760785px;}
.y116_c01084{bottom:62.082075px;}
.y115_c01084{bottom:92.488815px;}
.y114_c01084{bottom:92.926083px;}
.y113_c01084{bottom:94.260246px;}
.y112_c01084{bottom:95.788437px;}
.y111_c01084{bottom:97.997163px;}
.y110_c01084{bottom:125.667876px;}
.y10f_c01084{bottom:126.223590px;}
.y10e_c01084{bottom:127.097892px;}
.y10d_c01084{bottom:127.308891px;}
.y10c_c01084{bottom:127.987575px;}
.y10b_c01084{bottom:128.752239px;}
.y10a_c01084{bottom:129.527289px;}
.y109_c01084{bottom:129.859758px;}
.y108_c01084{bottom:157.998663px;}
.y107_c01084{bottom:159.234858px;}
.y106_c01084{bottom:160.212042px;}
.y105_c01084{bottom:162.223839px;}
.y104_c01084{bottom:163.624437px;}
.y103_c01084{bottom:164.212389px;}
.y102_c01084{bottom:166.015773px;}
.y101_c01084{bottom:167.974110px;}
.y100_c01084{bottom:169.558119px;}
.yff_c01084{bottom:193.339188px;}
.yfe_c01084{bottom:194.337081px;}
.yfd_c01084{bottom:194.949333px;}
.yfc_c01084{bottom:196.937721px;}
.yfb_c01084{bottom:197.535582px;}
.yfa_c01084{bottom:198.138465px;}
.yf9_c01084{bottom:198.741105px;}
.yf8_c01084{bottom:199.523538px;}
.yf7_c01084{bottom:200.539386px;}
.yf6_c01084{bottom:201.117807px;}
.yf5_c01084{bottom:201.729195px;}
.yf4_c01084{bottom:202.916142px;}
.yf3_c01084{bottom:203.314500px;}
.yf2_c01084{bottom:235.389000px;}
.yf1_c01084{bottom:265.930500px;}
.yf0_c01084{bottom:266.545500px;}
.yef_c01084{bottom:267.787500px;}
.yee_c01084{bottom:268.132500px;}
.yed_c01084{bottom:268.387500px;}
.yec_c01084{bottom:268.738500px;}
.yeb_c01084{bottom:269.487000px;}
.yea_c01084{bottom:269.847000px;}
.ye9_c01084{bottom:270.586500px;}
.ye8_c01084{bottom:270.832500px;}
.ye7_c01084{bottom:271.668000px;}
.ye6_c01084{bottom:272.149500px;}
.ye5_c01084{bottom:273.247500px;}
.ye4_c01084{bottom:301.747500px;}
.ye3_c01084{bottom:302.340000px;}
.ye2_c01084{bottom:303.052500px;}
.ye1_c01084{bottom:303.775500px;}
.ye0_c01084{bottom:305.215500px;}
.ydf_c01084{bottom:305.649000px;}
.yde_c01084{bottom:306.529500px;}
.ydd_c01084{bottom:307.524000px;}
.ydc_c01084{bottom:308.386500px;}
.ydb_c01084{bottom:308.800500px;}
.yda_c01084{bottom:309.817500px;}
.yd9_c01084{bottom:310.234500px;}
.yd8_c01084{bottom:339.042000px;}
.yd7_c01084{bottom:339.577500px;}
.yd6_c01084{bottom:340.098000px;}
.yd5_c01084{bottom:340.369500px;}
.yd4_c01084{bottom:341.247000px;}
.yd3_c01084{bottom:341.518500px;}
.yd2_c01084{bottom:341.778000px;}
.yd1_c01084{bottom:342.406500px;}
.yd0_c01084{bottom:342.924000px;}
.ycf_c01084{bottom:343.189500px;}
.yce_c01084{bottom:343.711500px;}
.ycd_c01084{bottom:373.597500px;}
.ycc_c01084{bottom:374.299500px;}
.ycb_c01084{bottom:374.574000px;}
.yca_c01084{bottom:375.021000px;}
.yc9_c01084{bottom:375.196500px;}
.yc8_c01084{bottom:376.072500px;}
.yc7_c01084{bottom:376.515000px;}
.yc6_c01084{bottom:376.785000px;}
.yc5_c01084{bottom:377.839500px;}
.yc4_c01084{bottom:378.027000px;}
.yc3_c01084{bottom:378.811500px;}
.yc2_c01084{bottom:408.259500px;}
.yc1_c01084{bottom:408.846000px;}
.yc0_c01084{bottom:409.462500px;}
.ybf_c01084{bottom:409.714500px;}
.ybe_c01084{bottom:410.799000px;}
.ybd_c01084{bottom:411.168000px;}
.ybc_c01084{bottom:412.014000px;}
.ybb_c01084{bottom:412.386000px;}
.yba_c01084{bottom:412.753500px;}
.yb9_c01084{bottom:413.731500px;}
.yb8_c01084{bottom:414.204000px;}
.yb7_c01084{bottom:414.562500px;}
.yb6_c01084{bottom:415.534500px;}
.yb5_c01084{bottom:446.755500px;}
.yb4_c01084{bottom:447.307500px;}
.yb3_c01084{bottom:447.570000px;}
.yb2_c01084{bottom:447.826500px;}
.yb1_c01084{bottom:448.461000px;}
.yb0_c01084{bottom:449.331000px;}
.yaf_c01084{bottom:450.037500px;}
.yae_c01084{bottom:450.667500px;}
.yad_c01084{bottom:451.104000px;}
.yac_c01084{bottom:451.363500px;}
.yab_c01084{bottom:451.981500px;}
.yaa_c01084{bottom:482.035500px;}
.ya9_c01084{bottom:482.397000px;}
.ya8_c01084{bottom:482.937000px;}
.ya7_c01084{bottom:483.375000px;}
.ya6_c01084{bottom:484.165500px;}
.ya5_c01084{bottom:485.053500px;}
.ya4_c01084{bottom:485.490000px;}
.ya3_c01084{bottom:485.757000px;}
.ya2_c01084{bottom:486.541500px;}
.ya1_c01084{bottom:517.390500px;}
.ya0_c01084{bottom:517.806000px;}
.y9f_c01084{bottom:518.409000px;}
.y9e_c01084{bottom:518.796000px;}
.y9d_c01084{bottom:519.000000px;}
.y9c_c01084{bottom:519.301500px;}
.y9b_c01084{bottom:519.693000px;}
.y9a_c01084{bottom:519.892500px;}
.y99_c01084{bottom:520.789500px;}
.y98_c01084{bottom:521.287500px;}
.y97_c01084{bottom:521.781000px;}
.y96_c01084{bottom:522.576000px;}
.y95_c01084{bottom:522.873000px;}
.y94_c01084{bottom:523.264500px;}
.y93_c01084{bottom:555.028500px;}
.y92_c01084{bottom:555.268500px;}
.y91_c01084{bottom:555.888000px;}
.y90_c01084{bottom:556.437000px;}
.y8f_c01084{bottom:556.669500px;}
.y8e_c01084{bottom:557.053500px;}
.y8d_c01084{bottom:557.367000px;}
.y8c_c01084{bottom:558.135000px;}
.y8b_c01084{bottom:558.522000px;}
.y8a_c01084{bottom:559.444500px;}
.y89_c01084{bottom:591.172500px;}
.y88_c01084{bottom:591.736500px;}
.y87_c01084{bottom:592.291500px;}
.y86_c01084{bottom:592.458000px;}
.y85_c01084{bottom:592.681500px;}
.y84_c01084{bottom:592.843500px;}
.y83_c01084{bottom:593.286000px;}
.y82_c01084{bottom:593.395500px;}
.y81_c01084{bottom:594.057000px;}
.y80_c01084{bottom:594.274500px;}
.y7f_c01084{bottom:627.948000px;}
.y7e_c01084{bottom:628.356000px;}
.y7d_c01084{bottom:628.552500px;}
.y7c_c01084{bottom:628.821000px;}
.y7b_c01084{bottom:629.284500px;}
.y7a_c01084{bottom:629.481000px;}
.y79_c01084{bottom:630.150000px;}
.y78_c01084{bottom:630.343500px;}
.y77_c01084{bottom:630.805500px;}
.y76_c01084{bottom:631.005000px;}
.y75_c01084{bottom:631.536000px;}
.y74_c01084{bottom:662.391000px;}
.y73_c01084{bottom:662.748000px;}
.y72_c01084{bottom:663.381000px;}
.y71_c01084{bottom:664.092000px;}
.y70_c01084{bottom:664.441500px;}
.y6f_c01084{bottom:665.149500px;}
.y6e_c01084{bottom:665.499000px;}
.y6d_c01084{bottom:665.763000px;}
.y6c_c01084{bottom:666.646500px;}
.y6b_c01084{bottom:666.913500px;}
.y6a_c01084{bottom:667.173000px;}
.y69_c01084{bottom:667.444500px;}
.y68_c01084{bottom:698.223000px;}
.y67_c01084{bottom:698.754000px;}
.y66_c01084{bottom:698.952000px;}
.y65_c01084{bottom:699.559500px;}
.y64_c01084{bottom:700.086000px;}
.y63_c01084{bottom:700.416000px;}
.y62_c01084{bottom:700.546500px;}
.y61_c01084{bottom:700.942500px;}
.y60_c01084{bottom:701.539500px;}
.y5f_c01084{bottom:702.003000px;}
.y5e_c01084{bottom:735.415500px;}
.y5d_c01084{bottom:736.087500px;}
.y5c_c01084{bottom:736.413000px;}
.y5b_c01084{bottom:737.011500px;}
.y5a_c01084{bottom:737.209500px;}
.y59_c01084{bottom:737.347500px;}
.y58_c01084{bottom:737.547000px;}
.y57_c01084{bottom:738.136500px;}
.y56_c01084{bottom:738.466500px;}
.y55_c01084{bottom:738.670500px;}
.y54_c01084{bottom:738.984000px;}
.y53_c01084{bottom:739.263000px;}
.y52_c01084{bottom:769.225500px;}
.y51_c01084{bottom:769.486500px;}
.y50_c01084{bottom:770.376000px;}
.y4f_c01084{bottom:770.644500px;}
.y4e_c01084{bottom:771.003000px;}
.y4d_c01084{bottom:771.264000px;}
.y4c_c01084{bottom:771.975000px;}
.y4b_c01084{bottom:772.149000px;}
.y4a_c01084{bottom:772.761000px;}
.y49_c01084{bottom:773.028000px;}
.y48_c01084{bottom:773.386500px;}
.y47_c01084{bottom:773.568000px;}
.y46_c01084{bottom:774.093000px;}
.y45_c01084{bottom:804.612000px;}
.y44_c01084{bottom:805.161000px;}
.y43_c01084{bottom:805.420500px;}
.y42_c01084{bottom:805.857000px;}
.y41_c01084{bottom:806.490000px;}
.y40_c01084{bottom:807.021000px;}
.y3f_c01084{bottom:807.280500px;}
.y3e_c01084{bottom:807.907500px;}
.y3d_c01084{bottom:808.167000px;}
.y3c_c01084{bottom:808.612500px;}
.y3b_c01084{bottom:809.403000px;}
.y3a_c01084{bottom:809.736000px;}
.y39_c01084{bottom:842.743500px;}
.y38_c01084{bottom:843.187500px;}
.y37_c01084{bottom:843.340500px;}
.y36_c01084{bottom:843.811500px;}
.y35_c01084{bottom:844.137000px;}
.y34_c01084{bottom:844.339500px;}
.y33_c01084{bottom:844.740000px;}
.y32_c01084{bottom:845.269500px;}
.y31_c01084{bottom:845.530500px;}
.y30_c01084{bottom:846.187500px;}
.y2f_c01084{bottom:846.454500px;}
.y2e_c01084{bottom:877.243500px;}
.y2d_c01084{bottom:878.049000px;}
.y2c_c01084{bottom:878.266500px;}
.y2b_c01084{bottom:878.493000px;}
.y2a_c01084{bottom:879.045000px;}
.y29_c01084{bottom:879.970500px;}
.y28_c01084{bottom:880.197000px;}
.y27_c01084{bottom:880.902000px;}
.y26_c01084{bottom:881.824500px;}
.y25_c01084{bottom:913.635000px;}
.y24_c01084{bottom:914.062500px;}
.y23_c01084{bottom:914.151000px;}
.y22_c01084{bottom:914.551500px;}
.y21_c01084{bottom:915.222000px;}
.y20_c01084{bottom:915.681000px;}
.y1f_c01084{bottom:915.880500px;}
.y1e_c01084{bottom:916.413000px;}
.y1d_c01084{bottom:916.942500px;}
.y1c_c01084{bottom:917.464500px;}
.y1b_c01084{bottom:949.357500px;}
.y1a_c01084{bottom:949.518000px;}
.y19_c01084{bottom:949.800000px;}
.y18_c01084{bottom:950.293500px;}
.y17_c01084{bottom:950.679000px;}
.y16_c01084{bottom:950.848500px;}
.y15_c01084{bottom:950.959500px;}
.y14_c01084{bottom:951.126000px;}
.y13_c01084{bottom:951.679500px;}
.y12_c01084{bottom:951.894000px;}
.y11_c01084{bottom:952.125000px;}
.y10_c01084{bottom:952.563000px;}
.yf_c01084{bottom:984.444000px;}
.ye_c01084{bottom:984.765000px;}
.yd_c01084{bottom:985.470000px;}
.yc_c01084{bottom:986.017500px;}
.yb_c01084{bottom:986.619000px;}
.ya_c01084{bottom:987.013500px;}
.y9_c01084{bottom:987.240000px;}
.y8_c01084{bottom:987.555000px;}
.y7_c01084{bottom:987.948000px;}
.y6_c01084{bottom:988.176000px;}
.y5_c01084{bottom:989.019000px;}
.y4_c01084{bottom:1023.300000px;}
.y3_c01084{bottom:1058.596500px;}
.y2_c01084{bottom:1092.937500px;}
.y1_c01084{bottom:1129.263000px;}
.h6_c01084{height:66.000000px;}
.ha_c01084{height:66.010691px;}
.h4_c01084{height:72.000000px;}
.h3_c01084{height:78.000000px;}
.hb_c01084{height:78.012635px;}
.h2_c01084{height:84.000000px;}
.h9_c01084{height:84.013607px;}
.h5_c01084{height:90.000000px;}
.h7_c01084{height:102.000000px;}
.h8_c01084{height:120.000000px;}
.h0_c01084{height:1246.320000px;}
.h1_c01084{height:1246.500000px;}
.w1_c01084{width:885.750000px;}
.w0_c01084{width:885.870000px;}
.x0_c01084{left:0.000000px;}
.x22_c01084{left:141.636000px;}
.x45_c01084{left:143.437500px;}
.x4d_c01084{left:151.633500px;}
.x1_c01084{left:152.820000px;}
.x6d_c01084{left:154.719000px;}
.x46_c01084{left:185.062500px;}
.xa_c01084{left:196.020000px;}
.x3c_c01084{left:197.289000px;}
.x54_c01084{left:198.624000px;}
.x4e_c01084{left:217.261500px;}
.x69_c01084{left:218.583000px;}
.x57_c01084{left:229.159500px;}
.x20_c01084{left:230.580000px;}
.x2b_c01084{left:239.691000px;}
.x15_c01084{left:241.110000px;}
.x55_c01084{left:250.948500px;}
.x2_c01084{left:252.450000px;}
.x23_c01084{left:262.077000px;}
.x72_c01084{left:263.350275px;}
.x5c_c01084{left:273.690000px;}
.x21_c01084{left:284.310000px;}
.x2c_c01084{left:285.876000px;}
.x24_c01084{left:294.745500px;}
.xb_c01084{left:296.190000px;}
.x3d_c01084{left:306.904500px;}
.x65_c01084{left:316.594500px;}
.x4f_c01084{left:318.181500px;}
.x16_c01084{left:329.130000px;}
.x3_c01084{left:330.210000px;}
.x47_c01084{left:339.538500px;}
.x6f_c01084{left:349.999500px;}
.x4_c01084{left:351.270000px;}
.x17_c01084{left:361.800000px;}
.x48_c01084{left:371.943000px;}
.xc_c01084{left:373.410000px;}
.x5d_c01084{left:382.774500px;}
.x37_c01084{left:384.376500px;}
.x50_c01084{left:394.648500px;}
.x25_c01084{left:395.991000px;}
.xd_c01084{left:406.350000px;}
.x73_c01084{left:407.557011px;}
.x70_c01084{left:416.100000px;}
.x32_c01084{left:417.331500px;}
.x18_c01084{left:428.220000px;}
.x5_c01084{left:429.570000px;}
.x3e_c01084{left:438.664500px;}
.xe_c01084{left:440.370000px;}
.x33_c01084{left:450.541500px;}
.x6a_c01084{left:461.580000px;}
.x19_c01084{left:472.230000px;}
.x49_c01084{left:482.662500px;}
.x66_c01084{left:483.729000px;}
.x26_c01084{left:484.822500px;}
.xf_c01084{left:493.830000px;}
.x2d_c01084{left:494.838000px;}
.x3f_c01084{left:505.357500px;}
.x71_c01084{left:516.004500px;}
.x10_c01084{left:517.320000px;}
.x34_c01084{left:526.932000px;}
.x2e_c01084{left:528.588000px;}
.x51_c01084{left:537.985500px;}
.x40_c01084{left:539.109000px;}
.x6_c01084{left:540.810000px;}
.x38_c01084{left:549.076500px;}
.x6e_c01084{left:555.129000px;}
.x58_c01084{left:559.356000px;}
.x1a_c01084{left:560.790000px;}
.x27_c01084{left:570.684000px;}
.x11_c01084{left:572.130000px;}
.x52_c01084{left:582.807000px;}
.x41_c01084{left:593.395500px;}
.x1b_c01084{left:594.540000px;}
.x7_c01084{left:595.620000px;}
.x5e_c01084{left:604.192500px;}
.x2f_c01084{left:605.809500px;}
.x53_c01084{left:616.287000px;}
.x12_c01084{left:617.760000px;}
.x60_c01084{left:626.796000px;}
.x39_c01084{left:627.915000px;}
.x1c_c01084{left:638.820000px;}
.x28_c01084{left:648.969000px;}
.x3a_c01084{left:660.313500px;}
.x6b_c01084{left:670.296000px;}
.x42_c01084{left:671.947500px;}
.x56_c01084{left:681.387000px;}
.x4a_c01084{left:682.704000px;}
.x3b_c01084{left:691.323000px;}
.x61_c01084{left:692.425500px;}
.x59_c01084{left:693.546000px;}
.x8_c01084{left:695.520000px;}
.x43_c01084{left:697.333500px;}
.x13_c01084{left:704.700000px;}
.x4b_c01084{left:715.056000px;}
.x64_c01084{left:716.739000px;}
.x35_c01084{left:720.258000px;}
.x14_c01084{left:726.030000px;}
.x1d_c01084{left:727.380000px;}
.x67_c01084{left:736.884000px;}
.x5b_c01084{left:738.886500px;}
.x29_c01084{left:749.691000px;}
.x62_c01084{left:759.418500px;}
.x30_c01084{left:761.049000px;}
.x44_c01084{left:771.322500px;}
.x1e_c01084{left:772.470000px;}
.x5f_c01084{left:773.475000px;}
.x5a_c01084{left:782.128500px;}
.x4c_c01084{left:783.723000px;}
.x36_c01084{left:791.505000px;}
.x31_c01084{left:793.191000px;}
.x2a_c01084{left:795.600000px;}
.x9_c01084{left:804.330000px;}
.x63_c01084{left:805.567500px;}
.x1f_c01084{left:806.760000px;}
.x68_c01084{left:813.880500px;}
.x6c_c01084{left:816.922500px;}
@media print{
.v0_c01084{vertical-align:0.000000pt;}
.ls0_c01084{letter-spacing:0.000000pt;}
.ws0_c01084{word-spacing:0.000000pt;}
.fs4_c01084{font-size:58.666667pt;}
.fs8_c01084{font-size:58.676170pt;}
.fs2_c01084{font-size:64.000000pt;}
.fs1_c01084{font-size:69.333333pt;}
.fs9_c01084{font-size:69.344564pt;}
.fs0_c01084{font-size:74.666667pt;}
.fs7_c01084{font-size:74.678762pt;}
.fs3_c01084{font-size:80.000000pt;}
.fs5_c01084{font-size:90.666667pt;}
.fs6_c01084{font-size:106.666667pt;}
.y0_c01084{bottom:0.000000pt;}
.y11c_c01084{bottom:46.605021pt;}
.y11b_c01084{bottom:47.735811pt;}
.y11a_c01084{bottom:49.089381pt;}
.y119_c01084{bottom:49.768501pt;}
.y118_c01084{bottom:50.215851pt;}
.y117_c01084{bottom:51.342920pt;}
.y116_c01084{bottom:55.184067pt;}
.y115_c01084{bottom:82.212280pt;}
.y114_c01084{bottom:82.600963pt;}
.y113_c01084{bottom:83.786885pt;}
.y112_c01084{bottom:85.145277pt;}
.y111_c01084{bottom:87.108589pt;}
.y110_c01084{bottom:111.704779pt;}
.y10f_c01084{bottom:112.198747pt;}
.y10e_c01084{bottom:112.975904pt;}
.y10d_c01084{bottom:113.163459pt;}
.y10c_c01084{bottom:113.766733pt;}
.y10b_c01084{bottom:114.446435pt;}
.y10a_c01084{bottom:115.135368pt;}
.y109_c01084{bottom:115.430896pt;}
.y108_c01084{bottom:140.443256pt;}
.y107_c01084{bottom:141.542096pt;}
.y106_c01084{bottom:142.410704pt;}
.y105_c01084{bottom:144.198968pt;}
.y104_c01084{bottom:145.443944pt;}
.y103_c01084{bottom:145.966568pt;}
.y102_c01084{bottom:147.569576pt;}
.y101_c01084{bottom:149.310320pt;}
.y100_c01084{bottom:150.718328pt;}
.yff_c01084{bottom:171.857056pt;}
.yfe_c01084{bottom:172.744072pt;}
.yfd_c01084{bottom:173.288296pt;}
.yfc_c01084{bottom:175.055752pt;}
.yfb_c01084{bottom:175.587184pt;}
.yfa_c01084{bottom:176.123080pt;}
.yf9_c01084{bottom:176.658760pt;}
.yf8_c01084{bottom:177.354256pt;}
.yf7_c01084{bottom:178.257232pt;}
.yf6_c01084{bottom:178.771384pt;}
.yf5_c01084{bottom:179.314840pt;}
.yf4_c01084{bottom:180.369904pt;}
.yf3_c01084{bottom:180.724000pt;}
.yf2_c01084{bottom:209.234667pt;}
.yf1_c01084{bottom:236.382667pt;}
.yf0_c01084{bottom:236.929333pt;}
.yef_c01084{bottom:238.033333pt;}
.yee_c01084{bottom:238.340000pt;}
.yed_c01084{bottom:238.566667pt;}
.yec_c01084{bottom:238.878667pt;}
.yeb_c01084{bottom:239.544000pt;}
.yea_c01084{bottom:239.864000pt;}
.ye9_c01084{bottom:240.521333pt;}
.ye8_c01084{bottom:240.740000pt;}
.ye7_c01084{bottom:241.482667pt;}
.ye6_c01084{bottom:241.910667pt;}
.ye5_c01084{bottom:242.886667pt;}
.ye4_c01084{bottom:268.220000pt;}
.ye3_c01084{bottom:268.746667pt;}
.ye2_c01084{bottom:269.380000pt;}
.ye1_c01084{bottom:270.022667pt;}
.ye0_c01084{bottom:271.302667pt;}
.ydf_c01084{bottom:271.688000pt;}
.yde_c01084{bottom:272.470667pt;}
.ydd_c01084{bottom:273.354667pt;}
.ydc_c01084{bottom:274.121333pt;}
.ydb_c01084{bottom:274.489333pt;}
.yda_c01084{bottom:275.393333pt;}
.yd9_c01084{bottom:275.764000pt;}
.yd8_c01084{bottom:301.370667pt;}
.yd7_c01084{bottom:301.846667pt;}
.yd6_c01084{bottom:302.309333pt;}
.yd5_c01084{bottom:302.550667pt;}
.yd4_c01084{bottom:303.330667pt;}
.yd3_c01084{bottom:303.572000pt;}
.yd2_c01084{bottom:303.802667pt;}
.yd1_c01084{bottom:304.361333pt;}
.yd0_c01084{bottom:304.821333pt;}
.ycf_c01084{bottom:305.057333pt;}
.yce_c01084{bottom:305.521333pt;}
.ycd_c01084{bottom:332.086667pt;}
.ycc_c01084{bottom:332.710667pt;}
.ycb_c01084{bottom:332.954667pt;}
.yca_c01084{bottom:333.352000pt;}
.yc9_c01084{bottom:333.508000pt;}
.yc8_c01084{bottom:334.286667pt;}
.yc7_c01084{bottom:334.680000pt;}
.yc6_c01084{bottom:334.920000pt;}
.yc5_c01084{bottom:335.857333pt;}
.yc4_c01084{bottom:336.024000pt;}
.yc3_c01084{bottom:336.721333pt;}
.yc2_c01084{bottom:362.897333pt;}
.yc1_c01084{bottom:363.418667pt;}
.yc0_c01084{bottom:363.966667pt;}
.ybf_c01084{bottom:364.190667pt;}
.ybe_c01084{bottom:365.154667pt;}
.ybd_c01084{bottom:365.482667pt;}
.ybc_c01084{bottom:366.234667pt;}
.ybb_c01084{bottom:366.565333pt;}
.yba_c01084{bottom:366.892000pt;}
.yb9_c01084{bottom:367.761333pt;}
.yb8_c01084{bottom:368.181333pt;}
.yb7_c01084{bottom:368.500000pt;}
.yb6_c01084{bottom:369.364000pt;}
.yb5_c01084{bottom:397.116000pt;}
.yb4_c01084{bottom:397.606667pt;}
.yb3_c01084{bottom:397.840000pt;}
.yb2_c01084{bottom:398.068000pt;}
.yb1_c01084{bottom:398.632000pt;}
.yb0_c01084{bottom:399.405333pt;}
.yaf_c01084{bottom:400.033333pt;}
.yae_c01084{bottom:400.593333pt;}
.yad_c01084{bottom:400.981333pt;}
.yac_c01084{bottom:401.212000pt;}
.yab_c01084{bottom:401.761333pt;}
.yaa_c01084{bottom:428.476000pt;}
.ya9_c01084{bottom:428.797333pt;}
.ya8_c01084{bottom:429.277333pt;}
.ya7_c01084{bottom:429.666667pt;}
.ya6_c01084{bottom:430.369333pt;}
.ya5_c01084{bottom:431.158667pt;}
.ya4_c01084{bottom:431.546667pt;}
.ya3_c01084{bottom:431.784000pt;}
.ya2_c01084{bottom:432.481333pt;}
.ya1_c01084{bottom:459.902667pt;}
.ya0_c01084{bottom:460.272000pt;}
.y9f_c01084{bottom:460.808000pt;}
.y9e_c01084{bottom:461.152000pt;}
.y9d_c01084{bottom:461.333333pt;}
.y9c_c01084{bottom:461.601333pt;}
.y9b_c01084{bottom:461.949333pt;}
.y9a_c01084{bottom:462.126667pt;}
.y99_c01084{bottom:462.924000pt;}
.y98_c01084{bottom:463.366667pt;}
.y97_c01084{bottom:463.805333pt;}
.y96_c01084{bottom:464.512000pt;}
.y95_c01084{bottom:464.776000pt;}
.y94_c01084{bottom:465.124000pt;}
.y93_c01084{bottom:493.358667pt;}
.y92_c01084{bottom:493.572000pt;}
.y91_c01084{bottom:494.122667pt;}
.y90_c01084{bottom:494.610667pt;}
.y8f_c01084{bottom:494.817333pt;}
.y8e_c01084{bottom:495.158667pt;}
.y8d_c01084{bottom:495.437333pt;}
.y8c_c01084{bottom:496.120000pt;}
.y8b_c01084{bottom:496.464000pt;}
.y8a_c01084{bottom:497.284000pt;}
.y89_c01084{bottom:525.486667pt;}
.y88_c01084{bottom:525.988000pt;}
.y87_c01084{bottom:526.481333pt;}
.y86_c01084{bottom:526.629333pt;}
.y85_c01084{bottom:526.828000pt;}
.y84_c01084{bottom:526.972000pt;}
.y83_c01084{bottom:527.365333pt;}
.y82_c01084{bottom:527.462667pt;}
.y81_c01084{bottom:528.050667pt;}
.y80_c01084{bottom:528.244000pt;}
.y7f_c01084{bottom:558.176000pt;}
.y7e_c01084{bottom:558.538667pt;}
.y7d_c01084{bottom:558.713333pt;}
.y7c_c01084{bottom:558.952000pt;}
.y7b_c01084{bottom:559.364000pt;}
.y7a_c01084{bottom:559.538667pt;}
.y79_c01084{bottom:560.133333pt;}
.y78_c01084{bottom:560.305333pt;}
.y77_c01084{bottom:560.716000pt;}
.y76_c01084{bottom:560.893333pt;}
.y75_c01084{bottom:561.365333pt;}
.y74_c01084{bottom:588.792000pt;}
.y73_c01084{bottom:589.109333pt;}
.y72_c01084{bottom:589.672000pt;}
.y71_c01084{bottom:590.304000pt;}
.y70_c01084{bottom:590.614667pt;}
.y6f_c01084{bottom:591.244000pt;}
.y6e_c01084{bottom:591.554667pt;}
.y6d_c01084{bottom:591.789333pt;}
.y6c_c01084{bottom:592.574667pt;}
.y6b_c01084{bottom:592.812000pt;}
.y6a_c01084{bottom:593.042667pt;}
.y69_c01084{bottom:593.284000pt;}
.y68_c01084{bottom:620.642667pt;}
.y67_c01084{bottom:621.114667pt;}
.y66_c01084{bottom:621.290667pt;}
.y65_c01084{bottom:621.830667pt;}
.y64_c01084{bottom:622.298667pt;}
.y63_c01084{bottom:622.592000pt;}
.y62_c01084{bottom:622.708000pt;}
.y61_c01084{bottom:623.060000pt;}
.y60_c01084{bottom:623.590667pt;}
.y5f_c01084{bottom:624.002667pt;}
.y5e_c01084{bottom:653.702667pt;}
.y5d_c01084{bottom:654.300000pt;}
.y5c_c01084{bottom:654.589333pt;}
.y5b_c01084{bottom:655.121333pt;}
.y5a_c01084{bottom:655.297333pt;}
.y59_c01084{bottom:655.420000pt;}
.y58_c01084{bottom:655.597333pt;}
.y57_c01084{bottom:656.121333pt;}
.y56_c01084{bottom:656.414667pt;}
.y55_c01084{bottom:656.596000pt;}
.y54_c01084{bottom:656.874667pt;}
.y53_c01084{bottom:657.122667pt;}
.y52_c01084{bottom:683.756000pt;}
.y51_c01084{bottom:683.988000pt;}
.y50_c01084{bottom:684.778667pt;}
.y4f_c01084{bottom:685.017333pt;}
.y4e_c01084{bottom:685.336000pt;}
.y4d_c01084{bottom:685.568000pt;}
.y4c_c01084{bottom:686.200000pt;}
.y4b_c01084{bottom:686.354667pt;}
.y4a_c01084{bottom:686.898667pt;}
.y49_c01084{bottom:687.136000pt;}
.y48_c01084{bottom:687.454667pt;}
.y47_c01084{bottom:687.616000pt;}
.y46_c01084{bottom:688.082667pt;}
.y45_c01084{bottom:715.210667pt;}
.y44_c01084{bottom:715.698667pt;}
.y43_c01084{bottom:715.929333pt;}
.y42_c01084{bottom:716.317333pt;}
.y41_c01084{bottom:716.880000pt;}
.y40_c01084{bottom:717.352000pt;}
.y3f_c01084{bottom:717.582667pt;}
.y3e_c01084{bottom:718.140000pt;}
.y3d_c01084{bottom:718.370667pt;}
.y3c_c01084{bottom:718.766667pt;}
.y3b_c01084{bottom:719.469333pt;}
.y3a_c01084{bottom:719.765333pt;}
.y39_c01084{bottom:749.105333pt;}
.y38_c01084{bottom:749.500000pt;}
.y37_c01084{bottom:749.636000pt;}
.y36_c01084{bottom:750.054667pt;}
.y35_c01084{bottom:750.344000pt;}
.y34_c01084{bottom:750.524000pt;}
.y33_c01084{bottom:750.880000pt;}
.y32_c01084{bottom:751.350667pt;}
.y31_c01084{bottom:751.582667pt;}
.y30_c01084{bottom:752.166667pt;}
.y2f_c01084{bottom:752.404000pt;}
.y2e_c01084{bottom:779.772000pt;}
.y2d_c01084{bottom:780.488000pt;}
.y2c_c01084{bottom:780.681333pt;}
.y2b_c01084{bottom:780.882667pt;}
.y2a_c01084{bottom:781.373333pt;}
.y29_c01084{bottom:782.196000pt;}
.y28_c01084{bottom:782.397333pt;}
.y27_c01084{bottom:783.024000pt;}
.y26_c01084{bottom:783.844000pt;}
.y25_c01084{bottom:812.120000pt;}
.y24_c01084{bottom:812.500000pt;}
.y23_c01084{bottom:812.578667pt;}
.y22_c01084{bottom:812.934667pt;}
.y21_c01084{bottom:813.530667pt;}
.y20_c01084{bottom:813.938667pt;}
.y1f_c01084{bottom:814.116000pt;}
.y1e_c01084{bottom:814.589333pt;}
.y1d_c01084{bottom:815.060000pt;}
.y1c_c01084{bottom:815.524000pt;}
.y1b_c01084{bottom:843.873333pt;}
.y1a_c01084{bottom:844.016000pt;}
.y19_c01084{bottom:844.266667pt;}
.y18_c01084{bottom:844.705333pt;}
.y17_c01084{bottom:845.048000pt;}
.y16_c01084{bottom:845.198667pt;}
.y15_c01084{bottom:845.297333pt;}
.y14_c01084{bottom:845.445333pt;}
.y13_c01084{bottom:845.937333pt;}
.y12_c01084{bottom:846.128000pt;}
.y11_c01084{bottom:846.333333pt;}
.y10_c01084{bottom:846.722667pt;}
.yf_c01084{bottom:875.061333pt;}
.ye_c01084{bottom:875.346667pt;}
.yd_c01084{bottom:875.973333pt;}
.yc_c01084{bottom:876.460000pt;}
.yb_c01084{bottom:876.994667pt;}
.ya_c01084{bottom:877.345333pt;}
.y9_c01084{bottom:877.546667pt;}
.y8_c01084{bottom:877.826667pt;}
.y7_c01084{bottom:878.176000pt;}
.y6_c01084{bottom:878.378667pt;}
.y5_c01084{bottom:879.128000pt;}
.y4_c01084{bottom:909.600000pt;}
.y3_c01084{bottom:940.974667pt;}
.y2_c01084{bottom:971.500000pt;}
.y1_c01084{bottom:1003.789333pt;}
.h6_c01084{height:58.666667pt;}
.ha_c01084{height:58.676170pt;}
.h4_c01084{height:64.000000pt;}
.h3_c01084{height:69.333333pt;}
.hb_c01084{height:69.344564pt;}
.h2_c01084{height:74.666667pt;}
.h9_c01084{height:74.678762pt;}
.h5_c01084{height:80.000000pt;}
.h7_c01084{height:90.666667pt;}
.h8_c01084{height:106.666667pt;}
.h0_c01084{height:1107.840000pt;}
.h1_c01084{height:1108.000000pt;}
.w1_c01084{width:787.333333pt;}
.w0_c01084{width:787.440000pt;}
.x0_c01084{left:0.000000pt;}
.x22_c01084{left:125.898667pt;}
.x45_c01084{left:127.500000pt;}
.x4d_c01084{left:134.785333pt;}
.x1_c01084{left:135.840000pt;}
.x6d_c01084{left:137.528000pt;}
.x46_c01084{left:164.500000pt;}
.xa_c01084{left:174.240000pt;}
.x3c_c01084{left:175.368000pt;}
.x54_c01084{left:176.554667pt;}
.x4e_c01084{left:193.121333pt;}
.x69_c01084{left:194.296000pt;}
.x57_c01084{left:203.697333pt;}
.x20_c01084{left:204.960000pt;}
.x2b_c01084{left:213.058667pt;}
.x15_c01084{left:214.320000pt;}
.x55_c01084{left:223.065333pt;}
.x2_c01084{left:224.400000pt;}
.x23_c01084{left:232.957333pt;}
.x72_c01084{left:234.089133pt;}
.x5c_c01084{left:243.280000pt;}
.x21_c01084{left:252.720000pt;}
.x2c_c01084{left:254.112000pt;}
.x24_c01084{left:261.996000pt;}
.xb_c01084{left:263.280000pt;}
.x3d_c01084{left:272.804000pt;}
.x65_c01084{left:281.417333pt;}
.x4f_c01084{left:282.828000pt;}
.x16_c01084{left:292.560000pt;}
.x3_c01084{left:293.520000pt;}
.x47_c01084{left:301.812000pt;}
.x6f_c01084{left:311.110667pt;}
.x4_c01084{left:312.240000pt;}
.x17_c01084{left:321.600000pt;}
.x48_c01084{left:330.616000pt;}
.xc_c01084{left:331.920000pt;}
.x5d_c01084{left:340.244000pt;}
.x37_c01084{left:341.668000pt;}
.x50_c01084{left:350.798667pt;}
.x25_c01084{left:351.992000pt;}
.xd_c01084{left:361.200000pt;}
.x73_c01084{left:362.272899pt;}
.x70_c01084{left:369.866667pt;}
.x32_c01084{left:370.961333pt;}
.x18_c01084{left:380.640000pt;}
.x5_c01084{left:381.840000pt;}
.x3e_c01084{left:389.924000pt;}
.xe_c01084{left:391.440000pt;}
.x33_c01084{left:400.481333pt;}
.x6a_c01084{left:410.293333pt;}
.x19_c01084{left:419.760000pt;}
.x49_c01084{left:429.033333pt;}
.x66_c01084{left:429.981333pt;}
.x26_c01084{left:430.953333pt;}
.xf_c01084{left:438.960000pt;}
.x2d_c01084{left:439.856000pt;}
.x3f_c01084{left:449.206667pt;}
.x71_c01084{left:458.670667pt;}
.x10_c01084{left:459.840000pt;}
.x34_c01084{left:468.384000pt;}
.x2e_c01084{left:469.856000pt;}
.x51_c01084{left:478.209333pt;}
.x40_c01084{left:479.208000pt;}
.x6_c01084{left:480.720000pt;}
.x38_c01084{left:488.068000pt;}
.x6e_c01084{left:493.448000pt;}
.x58_c01084{left:497.205333pt;}
.x1a_c01084{left:498.480000pt;}
.x27_c01084{left:507.274667pt;}
.x11_c01084{left:508.560000pt;}
.x52_c01084{left:518.050667pt;}
.x41_c01084{left:527.462667pt;}
.x1b_c01084{left:528.480000pt;}
.x7_c01084{left:529.440000pt;}
.x5e_c01084{left:537.060000pt;}
.x2f_c01084{left:538.497333pt;}
.x53_c01084{left:547.810667pt;}
.x12_c01084{left:549.120000pt;}
.x60_c01084{left:557.152000pt;}
.x39_c01084{left:558.146667pt;}
.x1c_c01084{left:567.840000pt;}
.x28_c01084{left:576.861333pt;}
.x3a_c01084{left:586.945333pt;}
.x6b_c01084{left:595.818667pt;}
.x42_c01084{left:597.286667pt;}
.x56_c01084{left:605.677333pt;}
.x4a_c01084{left:606.848000pt;}
.x3b_c01084{left:614.509333pt;}
.x61_c01084{left:615.489333pt;}
.x59_c01084{left:616.485333pt;}
.x8_c01084{left:618.240000pt;}
.x43_c01084{left:619.852000pt;}
.x13_c01084{left:626.400000pt;}
.x4b_c01084{left:635.605333pt;}
.x64_c01084{left:637.101333pt;}
.x35_c01084{left:640.229333pt;}
.x14_c01084{left:645.360000pt;}
.x1d_c01084{left:646.560000pt;}
.x67_c01084{left:655.008000pt;}
.x5b_c01084{left:656.788000pt;}
.x29_c01084{left:666.392000pt;}
.x62_c01084{left:675.038667pt;}
.x30_c01084{left:676.488000pt;}
.x44_c01084{left:685.620000pt;}
.x1e_c01084{left:686.640000pt;}
.x5f_c01084{left:687.533333pt;}
.x5a_c01084{left:695.225333pt;}
.x4c_c01084{left:696.642667pt;}
.x36_c01084{left:703.560000pt;}
.x31_c01084{left:705.058667pt;}
.x2a_c01084{left:707.200000pt;}
.x9_c01084{left:714.960000pt;}
.x63_c01084{left:716.060000pt;}
.x1f_c01084{left:717.120000pt;}
.x68_c01084{left:723.449333pt;}
.x6c_c01084{left:726.153333pt;}
}





/* 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_c01085 {
    display:none;
  }
  .loading-indicator_c01085.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01085 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_c01085 { 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_c01085" -> "#page-container .classname_c01085")
 */
.pf_c01085 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01085 { /* 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_c01085.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01085 { /* 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_c01085 { /* 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_c01085 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01085 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01085 {overflow:visible;}
  }
}
.c_c01085 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01085 { /* 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_c01085:after { /* webkit #35443 */
  content: '';
}
.t_c01085:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01085 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 */
}
.__c01085 { /* 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_c01085 { /* info for Javascript */
  display:none;
}
.l_c01085 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01085 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01085 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01085: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_c01085 {
    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_c01085.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01085.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_c01085 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01085{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01085;src:url('chunks/assets/font_b11a17f404e7258299fdf971.woff2')format("woff");}.ff1_c01085{font-family:ff1_c01085;line-height:1.000000;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;}
.m45_c01085{transform:matrix(0.141510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141510,0.000000,0.000000,0.250000,0,0);}
.m2_c01085{transform:matrix(0.154935,-0.002169,0.003500,0.249976,0,0);-ms-transform:matrix(0.154935,-0.002169,0.003500,0.249976,0,0);-webkit-transform:matrix(0.154935,-0.002169,0.003500,0.249976,0,0);}
.m9_c01085{transform:matrix(0.173463,-0.002428,0.003500,0.249976,0,0);-ms-transform:matrix(0.173463,-0.002428,0.003500,0.249976,0,0);-webkit-transform:matrix(0.173463,-0.002428,0.003500,0.249976,0,0);}
.m6_c01085{transform:matrix(0.176903,-0.002477,0.003500,0.249976,0,0);-ms-transform:matrix(0.176903,-0.002477,0.003500,0.249976,0,0);-webkit-transform:matrix(0.176903,-0.002477,0.003500,0.249976,0,0);}
.m3d_c01085{transform:matrix(0.177607,-0.003907,0.005499,0.249940,0,0);-ms-transform:matrix(0.177607,-0.003907,0.005499,0.249940,0,0);-webkit-transform:matrix(0.177607,-0.003907,0.005499,0.249940,0,0);}
.mf_c01085{transform:matrix(0.185647,-0.002599,0.003500,0.249976,0,0);-ms-transform:matrix(0.185647,-0.002599,0.003500,0.249976,0,0);-webkit-transform:matrix(0.185647,-0.002599,0.003500,0.249976,0,0);}
.m8_c01085{transform:matrix(0.196926,-0.002757,0.003500,0.249976,0,0);-ms-transform:matrix(0.196926,-0.002757,0.003500,0.249976,0,0);-webkit-transform:matrix(0.196926,-0.002757,0.003500,0.249976,0,0);}
.m1a_c01085{transform:matrix(0.201280,-0.002818,0.003500,0.249976,0,0);-ms-transform:matrix(0.201280,-0.002818,0.003500,0.249976,0,0);-webkit-transform:matrix(0.201280,-0.002818,0.003500,0.249976,0,0);}
.ma_c01085{transform:matrix(0.203820,-0.002853,0.003500,0.249976,0,0);-ms-transform:matrix(0.203820,-0.002853,0.003500,0.249976,0,0);-webkit-transform:matrix(0.203820,-0.002853,0.003500,0.249976,0,0);}
.me_c01085{transform:matrix(0.204995,-0.002870,0.003500,0.249976,0,0);-ms-transform:matrix(0.204995,-0.002870,0.003500,0.249976,0,0);-webkit-transform:matrix(0.204995,-0.002870,0.003500,0.249976,0,0);}
.m3e_c01085{transform:matrix(0.205585,-0.004523,0.005499,0.249940,0,0);-ms-transform:matrix(0.205585,-0.004523,0.005499,0.249940,0,0);-webkit-transform:matrix(0.205585,-0.004523,0.005499,0.249940,0,0);}
.m13_c01085{transform:matrix(0.207455,-0.002904,0.003500,0.249976,0,0);-ms-transform:matrix(0.207455,-0.002904,0.003500,0.249976,0,0);-webkit-transform:matrix(0.207455,-0.002904,0.003500,0.249976,0,0);}
.m35_c01085{transform:matrix(0.208045,-0.002913,0.003500,0.249976,0,0);-ms-transform:matrix(0.208045,-0.002913,0.003500,0.249976,0,0);-webkit-transform:matrix(0.208045,-0.002913,0.003500,0.249976,0,0);}
.m11_c01085{transform:matrix(0.211149,-0.002956,0.003500,0.249976,0,0);-ms-transform:matrix(0.211149,-0.002956,0.003500,0.249976,0,0);-webkit-transform:matrix(0.211149,-0.002956,0.003500,0.249976,0,0);}
.mb_c01085{transform:matrix(0.213529,-0.002989,0.003500,0.249976,0,0);-ms-transform:matrix(0.213529,-0.002989,0.003500,0.249976,0,0);-webkit-transform:matrix(0.213529,-0.002989,0.003500,0.249976,0,0);}
.m15_c01085{transform:matrix(0.216599,-0.003032,0.003500,0.249976,0,0);-ms-transform:matrix(0.216599,-0.003032,0.003500,0.249976,0,0);-webkit-transform:matrix(0.216599,-0.003032,0.003500,0.249976,0,0);}
.m37_c01085{transform:matrix(0.219214,-0.003069,0.003500,0.249976,0,0);-ms-transform:matrix(0.219214,-0.003069,0.003500,0.249976,0,0);-webkit-transform:matrix(0.219214,-0.003069,0.003500,0.249976,0,0);}
.m10_c01085{transform:matrix(0.219249,-0.003069,0.003500,0.249976,0,0);-ms-transform:matrix(0.219249,-0.003069,0.003500,0.249976,0,0);-webkit-transform:matrix(0.219249,-0.003069,0.003500,0.249976,0,0);}
.m16_c01085{transform:matrix(0.222968,-0.003122,0.003500,0.249976,0,0);-ms-transform:matrix(0.222968,-0.003122,0.003500,0.249976,0,0);-webkit-transform:matrix(0.222968,-0.003122,0.003500,0.249976,0,0);}
.m3_c01085{transform:matrix(0.226088,-0.003165,0.003500,0.249976,0,0);-ms-transform:matrix(0.226088,-0.003165,0.003500,0.249976,0,0);-webkit-transform:matrix(0.226088,-0.003165,0.003500,0.249976,0,0);}
.m12_c01085{transform:matrix(0.230242,-0.003223,0.003500,0.249976,0,0);-ms-transform:matrix(0.230242,-0.003223,0.003500,0.249976,0,0);-webkit-transform:matrix(0.230242,-0.003223,0.003500,0.249976,0,0);}
.m4_c01085{transform:matrix(0.231217,-0.003237,0.003500,0.249976,0,0);-ms-transform:matrix(0.231217,-0.003237,0.003500,0.249976,0,0);-webkit-transform:matrix(0.231217,-0.003237,0.003500,0.249976,0,0);}
.md_c01085{transform:matrix(0.233887,-0.003274,0.003500,0.249976,0,0);-ms-transform:matrix(0.233887,-0.003274,0.003500,0.249976,0,0);-webkit-transform:matrix(0.233887,-0.003274,0.003500,0.249976,0,0);}
.m19_c01085{transform:matrix(0.235232,-0.003293,0.003500,0.249976,0,0);-ms-transform:matrix(0.235232,-0.003293,0.003500,0.249976,0,0);-webkit-transform:matrix(0.235232,-0.003293,0.003500,0.249976,0,0);}
.m7_c01085{transform:matrix(0.236052,-0.003305,0.003500,0.249976,0,0);-ms-transform:matrix(0.236052,-0.003305,0.003500,0.249976,0,0);-webkit-transform:matrix(0.236052,-0.003305,0.003500,0.249976,0,0);}
.m0_c01085{transform:matrix(0.239692,-0.003356,0.003500,0.249976,0,0);-ms-transform:matrix(0.239692,-0.003356,0.003500,0.249976,0,0);-webkit-transform:matrix(0.239692,-0.003356,0.003500,0.249976,0,0);}
.m1e_c01085{transform:matrix(0.240916,-0.003373,0.003500,0.249976,0,0);-ms-transform:matrix(0.240916,-0.003373,0.003500,0.249976,0,0);-webkit-transform:matrix(0.240916,-0.003373,0.003500,0.249976,0,0);}
.m40_c01085{transform:matrix(0.247730,-0.005450,0.005499,0.249940,0,0);-ms-transform:matrix(0.247730,-0.005450,0.005499,0.249940,0,0);-webkit-transform:matrix(0.247730,-0.005450,0.005499,0.249940,0,0);}
.m18_c01085{transform:matrix(0.248406,-0.003478,0.003500,0.249976,0,0);-ms-transform:matrix(0.248406,-0.003478,0.003500,0.249976,0,0);-webkit-transform:matrix(0.248406,-0.003478,0.003500,0.249976,0,0);}
.m1d_c01085{transform:matrix(0.255100,-0.003571,0.003500,0.249976,0,0);-ms-transform:matrix(0.255100,-0.003571,0.003500,0.249976,0,0);-webkit-transform:matrix(0.255100,-0.003571,0.003500,0.249976,0,0);}
.m1c_c01085{transform:matrix(0.256570,-0.003592,0.003500,0.249976,0,0);-ms-transform:matrix(0.256570,-0.003592,0.003500,0.249976,0,0);-webkit-transform:matrix(0.256570,-0.003592,0.003500,0.249976,0,0);}
.m30_c01085{transform:matrix(0.259795,-0.003637,0.003500,0.249976,0,0);-ms-transform:matrix(0.259795,-0.003637,0.003500,0.249976,0,0);-webkit-transform:matrix(0.259795,-0.003637,0.003500,0.249976,0,0);}
.m1f_c01085{transform:matrix(0.261959,-0.003667,0.003500,0.249976,0,0);-ms-transform:matrix(0.261959,-0.003667,0.003500,0.249976,0,0);-webkit-transform:matrix(0.261959,-0.003667,0.003500,0.249976,0,0);}
.m36_c01085{transform:matrix(0.269754,-0.003777,0.003500,0.249976,0,0);-ms-transform:matrix(0.269754,-0.003777,0.003500,0.249976,0,0);-webkit-transform:matrix(0.269754,-0.003777,0.003500,0.249976,0,0);}
.m2f_c01085{transform:matrix(0.275863,-0.003862,0.003500,0.249976,0,0);-ms-transform:matrix(0.275863,-0.003862,0.003500,0.249976,0,0);-webkit-transform:matrix(0.275863,-0.003862,0.003500,0.249976,0,0);}
.m42_c01085{transform:matrix(0.277743,-0.006110,0.005499,0.249940,0,0);-ms-transform:matrix(0.277743,-0.006110,0.005499,0.249940,0,0);-webkit-transform:matrix(0.277743,-0.006110,0.005499,0.249940,0,0);}
.m33_c01085{transform:matrix(0.279583,-0.003914,0.003500,0.249976,0,0);-ms-transform:matrix(0.279583,-0.003914,0.003500,0.249976,0,0);-webkit-transform:matrix(0.279583,-0.003914,0.003500,0.249976,0,0);}
.m17_c01085{transform:matrix(0.283167,-0.003964,0.003500,0.249976,0,0);-ms-transform:matrix(0.283167,-0.003964,0.003500,0.249976,0,0);-webkit-transform:matrix(0.283167,-0.003964,0.003500,0.249976,0,0);}
.m2b_c01085{transform:matrix(0.284952,-0.003989,0.003500,0.249976,0,0);-ms-transform:matrix(0.284952,-0.003989,0.003500,0.249976,0,0);-webkit-transform:matrix(0.284952,-0.003989,0.003500,0.249976,0,0);}
.m2c_c01085{transform:matrix(0.288772,-0.004043,0.003500,0.249976,0,0);-ms-transform:matrix(0.288772,-0.004043,0.003500,0.249976,0,0);-webkit-transform:matrix(0.288772,-0.004043,0.003500,0.249976,0,0);}
.m3b_c01085{transform:matrix(0.289755,-0.006375,0.005499,0.249940,0,0);-ms-transform:matrix(0.289755,-0.006375,0.005499,0.249940,0,0);-webkit-transform:matrix(0.289755,-0.006375,0.005499,0.249940,0,0);}
.m20_c01085{transform:matrix(0.290467,-0.004067,0.003500,0.249976,0,0);-ms-transform:matrix(0.290467,-0.004067,0.003500,0.249976,0,0);-webkit-transform:matrix(0.290467,-0.004067,0.003500,0.249976,0,0);}
.m34_c01085{transform:matrix(0.291006,-0.004074,0.003500,0.249976,0,0);-ms-transform:matrix(0.291006,-0.004074,0.003500,0.249976,0,0);-webkit-transform:matrix(0.291006,-0.004074,0.003500,0.249976,0,0);}
.m3a_c01085{transform:matrix(0.294751,-0.004127,0.003500,0.249976,0,0);-ms-transform:matrix(0.294751,-0.004127,0.003500,0.249976,0,0);-webkit-transform:matrix(0.294751,-0.004127,0.003500,0.249976,0,0);}
.m3c_c01085{transform:matrix(0.296918,-0.006532,0.005499,0.249940,0,0);-ms-transform:matrix(0.296918,-0.006532,0.005499,0.249940,0,0);-webkit-transform:matrix(0.296918,-0.006532,0.005499,0.249940,0,0);}
.m2a_c01085{transform:matrix(0.300596,-0.004208,0.003500,0.249976,0,0);-ms-transform:matrix(0.300596,-0.004208,0.003500,0.249976,0,0);-webkit-transform:matrix(0.300596,-0.004208,0.003500,0.249976,0,0);}
.mc_c01085{transform:matrix(0.304910,-0.004269,0.003500,0.249976,0,0);-ms-transform:matrix(0.304910,-0.004269,0.003500,0.249976,0,0);-webkit-transform:matrix(0.304910,-0.004269,0.003500,0.249976,0,0);}
.m41_c01085{transform:matrix(0.306991,-0.006754,0.005499,0.249940,0,0);-ms-transform:matrix(0.306991,-0.006754,0.005499,0.249940,0,0);-webkit-transform:matrix(0.306991,-0.006754,0.005499,0.249940,0,0);}
.m44_c01085{transform:matrix(0.308185,-0.006780,0.005499,0.249940,0,0);-ms-transform:matrix(0.308185,-0.006780,0.005499,0.249940,0,0);-webkit-transform:matrix(0.308185,-0.006780,0.005499,0.249940,0,0);}
.m14_c01085{transform:matrix(0.310930,-0.004353,0.003500,0.249976,0,0);-ms-transform:matrix(0.310930,-0.004353,0.003500,0.249976,0,0);-webkit-transform:matrix(0.310930,-0.004353,0.003500,0.249976,0,0);}
.m32_c01085{transform:matrix(0.314059,-0.004397,0.003500,0.249976,0,0);-ms-transform:matrix(0.314059,-0.004397,0.003500,0.249976,0,0);-webkit-transform:matrix(0.314059,-0.004397,0.003500,0.249976,0,0);}
.m1b_c01085{transform:matrix(0.314179,-0.004399,0.003500,0.249976,0,0);-ms-transform:matrix(0.314179,-0.004399,0.003500,0.249976,0,0);-webkit-transform:matrix(0.314179,-0.004399,0.003500,0.249976,0,0);}
.m27_c01085{transform:matrix(0.322648,-0.004517,0.003500,0.249976,0,0);-ms-transform:matrix(0.322648,-0.004517,0.003500,0.249976,0,0);-webkit-transform:matrix(0.322648,-0.004517,0.003500,0.249976,0,0);}
.m2d_c01085{transform:matrix(0.325303,-0.004554,0.003500,0.249976,0,0);-ms-transform:matrix(0.325303,-0.004554,0.003500,0.249976,0,0);-webkit-transform:matrix(0.325303,-0.004554,0.003500,0.249976,0,0);}
.m24_c01085{transform:matrix(0.341167,-0.004776,0.003500,0.249976,0,0);-ms-transform:matrix(0.341167,-0.004776,0.003500,0.249976,0,0);-webkit-transform:matrix(0.341167,-0.004776,0.003500,0.249976,0,0);}
.m5_c01085{transform:matrix(0.342921,-0.004801,0.003500,0.249976,0,0);-ms-transform:matrix(0.342921,-0.004801,0.003500,0.249976,0,0);-webkit-transform:matrix(0.342921,-0.004801,0.003500,0.249976,0,0);}
.m28_c01085{transform:matrix(0.350831,-0.004912,0.003500,0.249976,0,0);-ms-transform:matrix(0.350831,-0.004912,0.003500,0.249976,0,0);-webkit-transform:matrix(0.350831,-0.004912,0.003500,0.249976,0,0);}
.m21_c01085{transform:matrix(0.356070,-0.004985,0.003500,0.249976,0,0);-ms-transform:matrix(0.356070,-0.004985,0.003500,0.249976,0,0);-webkit-transform:matrix(0.356070,-0.004985,0.003500,0.249976,0,0);}
.m31_c01085{transform:matrix(0.360445,-0.005046,0.003500,0.249976,0,0);-ms-transform:matrix(0.360445,-0.005046,0.003500,0.249976,0,0);-webkit-transform:matrix(0.360445,-0.005046,0.003500,0.249976,0,0);}
.m22_c01085{transform:matrix(0.363599,-0.005090,0.003500,0.249976,0,0);-ms-transform:matrix(0.363599,-0.005090,0.003500,0.249976,0,0);-webkit-transform:matrix(0.363599,-0.005090,0.003500,0.249976,0,0);}
.m2e_c01085{transform:matrix(0.414839,-0.005808,0.003500,0.249976,0,0);-ms-transform:matrix(0.414839,-0.005808,0.003500,0.249976,0,0);-webkit-transform:matrix(0.414839,-0.005808,0.003500,0.249976,0,0);}
.m38_c01085{transform:matrix(0.419354,-0.005871,0.003500,0.249976,0,0);-ms-transform:matrix(0.419354,-0.005871,0.003500,0.249976,0,0);-webkit-transform:matrix(0.419354,-0.005871,0.003500,0.249976,0,0);}
.m23_c01085{transform:matrix(0.504486,-0.007063,0.003500,0.249976,0,0);-ms-transform:matrix(0.504486,-0.007063,0.003500,0.249976,0,0);-webkit-transform:matrix(0.504486,-0.007063,0.003500,0.249976,0,0);}
.m43_c01085{transform:matrix(0.515415,-0.011339,0.005499,0.249940,0,0);-ms-transform:matrix(0.515415,-0.011339,0.005499,0.249940,0,0);-webkit-transform:matrix(0.515415,-0.011339,0.005499,0.249940,0,0);}
.m39_c01085{transform:matrix(0.535713,-0.007500,0.003500,0.249976,0,0);-ms-transform:matrix(0.535713,-0.007500,0.003500,0.249976,0,0);-webkit-transform:matrix(0.535713,-0.007500,0.003500,0.249976,0,0);}
.m1_c01085{transform:matrix(0.556610,-0.007793,0.003500,0.249976,0,0);-ms-transform:matrix(0.556610,-0.007793,0.003500,0.249976,0,0);-webkit-transform:matrix(0.556610,-0.007793,0.003500,0.249976,0,0);}
.m29_c01085{transform:matrix(0.637003,-0.008918,0.003500,0.249976,0,0);-ms-transform:matrix(0.637003,-0.008918,0.003500,0.249976,0,0);-webkit-transform:matrix(0.637003,-0.008918,0.003500,0.249976,0,0);}
.m25_c01085{transform:matrix(0.656221,-0.009187,0.003500,0.249976,0,0);-ms-transform:matrix(0.656221,-0.009187,0.003500,0.249976,0,0);-webkit-transform:matrix(0.656221,-0.009187,0.003500,0.249976,0,0);}
.m3f_c01085{transform:matrix(0.845046,-0.018591,0.005499,0.249940,0,0);-ms-transform:matrix(0.845046,-0.018591,0.005499,0.249940,0,0);-webkit-transform:matrix(0.845046,-0.018591,0.005499,0.249940,0,0);}
.m26_c01085{transform:matrix(0.927684,-0.012988,0.003500,0.249976,0,0);-ms-transform:matrix(0.927684,-0.012988,0.003500,0.249976,0,0);-webkit-transform:matrix(0.927684,-0.012988,0.003500,0.249976,0,0);}
.v0_c01085{vertical-align:0.000000px;}
.ls0_c01085{letter-spacing:0.000000px;}
.sc__c01085{text-shadow:none;}
.sc0_c01085{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__c01085{-webkit-text-stroke:0px transparent;}
.sc0_c01085{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01085{word-spacing:0.000000px;}
.fc0_c01085{color:transparent;}
.fs6_c01085{font-size:18.000000px;}
.fs3_c01085{font-size:72.007056px;}
.fs4_c01085{font-size:78.007644px;}
.fs2_c01085{font-size:90.008820px;}
.fs1_c01085{font-size:102.009996px;}
.fs5_c01085{font-size:120.029036px;}
.fs0_c01085{font-size:126.012347px;}
.y0_c01085{bottom:0.000000px;}
.y46_c01085{bottom:226.800000px;}
.y3c_c01085{bottom:726.313500px;}
.y3d_c01085{bottom:727.230009px;}
.y3e_c01085{bottom:728.138730px;}
.y3f_c01085{bottom:729.748998px;}
.y40_c01085{bottom:730.960065px;}
.y41_c01085{bottom:733.166874px;}
.y42_c01085{bottom:733.843209px;}
.y43_c01085{bottom:734.316396px;}
.y44_c01085{bottom:734.666625px;}
.y45_c01085{bottom:737.217525px;}
.y2e_c01085{bottom:767.058198px;}
.y2f_c01085{bottom:767.341269px;}
.y30_c01085{bottom:767.602998px;}
.y31_c01085{bottom:767.874489px;}
.y32_c01085{bottom:768.723840px;}
.y33_c01085{bottom:768.981450px;}
.y34_c01085{bottom:769.369758px;}
.y35_c01085{bottom:769.611165px;}
.y36_c01085{bottom:770.341716px;}
.y37_c01085{bottom:770.500584px;}
.y38_c01085{bottom:771.107277px;}
.y39_c01085{bottom:771.392346px;}
.y3a_c01085{bottom:771.709086px;}
.y3b_c01085{bottom:771.906570px;}
.y21_c01085{bottom:804.009063px;}
.y22_c01085{bottom:804.509751px;}
.y23_c01085{bottom:805.104780px;}
.y24_c01085{bottom:805.401738px;}
.y25_c01085{bottom:805.888242px;}
.y26_c01085{bottom:806.588193px;}
.y27_c01085{bottom:807.086223px;}
.y28_c01085{bottom:807.503295px;}
.y29_c01085{bottom:808.196427px;}
.y2a_c01085{bottom:808.453695px;}
.y2b_c01085{bottom:808.978860px;}
.y2c_c01085{bottom:809.636736px;}
.y2d_c01085{bottom:809.896734px;}
.y15_c01085{bottom:835.648308px;}
.y16_c01085{bottom:836.580465px;}
.y17_c01085{bottom:837.257250px;}
.y18_c01085{bottom:837.387063px;}
.y19_c01085{bottom:837.737727px;}
.y1a_c01085{bottom:838.660590px;}
.y1b_c01085{bottom:839.378091px;}
.y1c_c01085{bottom:839.729931px;}
.y1d_c01085{bottom:840.585414px;}
.y1e_c01085{bottom:841.622052px;}
.y1f_c01085{bottom:842.189220px;}
.y20_c01085{bottom:843.478467px;}
.yb_c01085{bottom:873.388695px;}
.yc_c01085{bottom:873.774939px;}
.yd_c01085{bottom:875.145627px;}
.ye_c01085{bottom:875.546541px;}
.yf_c01085{bottom:875.926683px;}
.y10_c01085{bottom:877.117119px;}
.y11_c01085{bottom:877.835670px;}
.y12_c01085{bottom:878.497059px;}
.y13_c01085{bottom:878.847492px;}
.y14_c01085{bottom:880.127655px;}
.y1_c01085{bottom:908.731500px;}
.y2_c01085{bottom:909.175125px;}
.y3_c01085{bottom:910.181340px;}
.y4_c01085{bottom:910.517025px;}
.y5_c01085{bottom:911.395854px;}
.y6_c01085{bottom:913.015836px;}
.y7_c01085{bottom:914.086710px;}
.y8_c01085{bottom:914.393100px;}
.y9_c01085{bottom:915.734076px;}
.ya_c01085{bottom:916.984710px;}
.h8_c01085{height:18.000000px;}
.h5_c01085{height:72.007056px;}
.h6_c01085{height:78.007644px;}
.h4_c01085{height:90.008820px;}
.h3_c01085{height:102.009996px;}
.h7_c01085{height:120.029036px;}
.h2_c01085{height:126.012347px;}
.h0_c01085{height:1246.320000px;}
.h1_c01085{height:1246.500000px;}
.w1_c01085{width:885.750000px;}
.w0_c01085{width:885.870000px;}
.x0_c01085{left:0.000000px;}
.x15_c01085{left:15.424386px;}
.xb_c01085{left:20.817681px;}
.x21_c01085{left:26.601939px;}
.x3a_c01085{left:27.858000px;}
.x1_c01085{left:31.132500px;}
.x2e_c01085{left:38.273937px;}
.xc_c01085{left:53.014584px;}
.x2_c01085{left:62.820000px;}
.x3b_c01085{left:69.517500px;}
.x2f_c01085{left:73.603398px;}
.x22_c01085{left:82.297845px;}
.x16_c01085{left:93.152070px;}
.x30_c01085{left:106.229628px;}
.x3c_c01085{left:110.823000px;}
.x3_c01085{left:134.692500px;}
.x31_c01085{left:140.088963px;}
.x23_c01085{left:148.375965px;}
.x17_c01085{left:149.531145px;}
.x4_c01085{left:158.670000px;}
.x18_c01085{left:160.410960px;}
.xd_c01085{left:167.209776px;}
.x24_c01085{left:181.375275px;}
.x3d_c01085{left:184.017000px;}
.x19_c01085{left:189.637779px;}
.xe_c01085{left:200.561700px;}
.x5_c01085{left:221.443500px;}
.xf_c01085{left:232.215582px;}
.x25_c01085{left:235.415055px;}
.x3e_c01085{left:239.065500px;}
.x32_c01085{left:246.194367px;}
.x1a_c01085{left:266.594442px;}
.x33_c01085{left:278.312055px;}
.x26_c01085{left:313.166994px;}
.x1b_c01085{left:326.417622px;}
.x10_c01085{left:331.392354px;}
.x6_c01085{left:337.156500px;}
.x3f_c01085{left:339.375000px;}
.x1c_c01085{left:355.728441px;}
.x34_c01085{left:356.941149px;}
.x27_c01085{left:368.565879px;}
.x40_c01085{left:370.117500px;}
.x11_c01085{left:391.290534px;}
.x43_c01085{left:405.000000px;}
.x41_c01085{left:407.545500px;}
.x7_c01085{left:413.647500px;}
.x28_c01085{left:414.967134px;}
.x1d_c01085{left:427.014936px;}
.x8_c01085{left:435.532500px;}
.x12_c01085{left:446.355567px;}
.x35_c01085{left:448.345335px;}
.x36_c01085{left:468.158994px;}
.x13_c01085{left:475.565886px;}
.x29_c01085{left:491.910510px;}
.x1e_c01085{left:513.384351px;}
.x2a_c01085{left:520.574526px;}
.x42_c01085{left:523.495500px;}
.x9_c01085{left:531.316500px;}
.x37_c01085{left:543.964857px;}
.x1f_c01085{left:560.647674px;}
.x2b_c01085{left:578.876100px;}
.x14_c01085{left:582.223368px;}
.x38_c01085{left:619.314699px;}
.xa_c01085{left:620.647500px;}
.x39_c01085{left:643.922757px;}
.x2c_c01085{left:652.015224px;}
.x20_c01085{left:668.061177px;}
.x2d_c01085{left:680.874240px;}
@media print{
.v0_c01085{vertical-align:0.000000pt;}
.ls0_c01085{letter-spacing:0.000000pt;}
.ws0_c01085{word-spacing:0.000000pt;}
.fs6_c01085{font-size:16.000000pt;}
.fs3_c01085{font-size:64.006272pt;}
.fs4_c01085{font-size:69.340128pt;}
.fs2_c01085{font-size:80.007840pt;}
.fs1_c01085{font-size:90.675552pt;}
.fs5_c01085{font-size:106.692477pt;}
.fs0_c01085{font-size:112.010975pt;}
.y0_c01085{bottom:0.000000pt;}
.y46_c01085{bottom:201.600000pt;}
.y3c_c01085{bottom:645.612000pt;}
.y3d_c01085{bottom:646.426675pt;}
.y3e_c01085{bottom:647.234427pt;}
.y3f_c01085{bottom:648.665776pt;}
.y40_c01085{bottom:649.742280pt;}
.y41_c01085{bottom:651.703888pt;}
.y42_c01085{bottom:652.305075pt;}
.y43_c01085{bottom:652.725685pt;}
.y44_c01085{bottom:653.037000pt;}
.y45_c01085{bottom:655.304467pt;}
.y2e_c01085{bottom:681.829509pt;}
.y2f_c01085{bottom:682.081128pt;}
.y30_c01085{bottom:682.313776pt;}
.y31_c01085{bottom:682.555101pt;}
.y32_c01085{bottom:683.310080pt;}
.y33_c01085{bottom:683.539067pt;}
.y34_c01085{bottom:683.884229pt;}
.y35_c01085{bottom:684.098813pt;}
.y36_c01085{bottom:684.748192pt;}
.y37_c01085{bottom:684.889408pt;}
.y38_c01085{bottom:685.428691pt;}
.y39_c01085{bottom:685.682085pt;}
.y3a_c01085{bottom:685.963632pt;}
.y3b_c01085{bottom:686.139173pt;}
.y21_c01085{bottom:714.674723pt;}
.y22_c01085{bottom:715.119779pt;}
.y23_c01085{bottom:715.648693pt;}
.y24_c01085{bottom:715.912656pt;}
.y25_c01085{bottom:716.345104pt;}
.y26_c01085{bottom:716.967283pt;}
.y27_c01085{bottom:717.409976pt;}
.y28_c01085{bottom:717.780707pt;}
.y29_c01085{bottom:718.396824pt;}
.y2a_c01085{bottom:718.625507pt;}
.y2b_c01085{bottom:719.092320pt;}
.y2c_c01085{bottom:719.677099pt;}
.y2d_c01085{bottom:719.908208pt;}
.y15_c01085{bottom:742.798496pt;}
.y16_c01085{bottom:743.627080pt;}
.y17_c01085{bottom:744.228667pt;}
.y18_c01085{bottom:744.344056pt;}
.y19_c01085{bottom:744.655757pt;}
.y1a_c01085{bottom:745.476080pt;}
.y1b_c01085{bottom:746.113859pt;}
.y1c_c01085{bottom:746.426605pt;}
.y1d_c01085{bottom:747.187035pt;}
.y1e_c01085{bottom:748.108491pt;}
.y1f_c01085{bottom:748.612640pt;}
.y20_c01085{bottom:749.758637pt;}
.yb_c01085{bottom:776.345507pt;}
.yc_c01085{bottom:776.688835pt;}
.yd_c01085{bottom:777.907224pt;}
.ye_c01085{bottom:778.263592pt;}
.yf_c01085{bottom:778.601496pt;}
.y10_c01085{bottom:779.659661pt;}
.y11_c01085{bottom:780.298373pt;}
.y12_c01085{bottom:780.886275pt;}
.y13_c01085{bottom:781.197771pt;}
.y14_c01085{bottom:782.335693pt;}
.y1_c01085{bottom:807.761333pt;}
.y2_c01085{bottom:808.155667pt;}
.y3_c01085{bottom:809.050080pt;}
.y4_c01085{bottom:809.348467pt;}
.y5_c01085{bottom:810.129648pt;}
.y6_c01085{bottom:811.569632pt;}
.y7_c01085{bottom:812.521520pt;}
.y8_c01085{bottom:812.793867pt;}
.y9_c01085{bottom:813.985845pt;}
.ya_c01085{bottom:815.097520pt;}
.h8_c01085{height:16.000000pt;}
.h5_c01085{height:64.006272pt;}
.h6_c01085{height:69.340128pt;}
.h4_c01085{height:80.007840pt;}
.h3_c01085{height:90.675552pt;}
.h7_c01085{height:106.692477pt;}
.h2_c01085{height:112.010975pt;}
.h0_c01085{height:1107.840000pt;}
.h1_c01085{height:1108.000000pt;}
.w1_c01085{width:787.333333pt;}
.w0_c01085{width:787.440000pt;}
.x0_c01085{left:0.000000pt;}
.x15_c01085{left:13.710565pt;}
.xb_c01085{left:18.504605pt;}
.x21_c01085{left:23.646168pt;}
.x3a_c01085{left:24.762667pt;}
.x1_c01085{left:27.673333pt;}
.x2e_c01085{left:34.021277pt;}
.xc_c01085{left:47.124075pt;}
.x2_c01085{left:55.840000pt;}
.x3b_c01085{left:61.793333pt;}
.x2f_c01085{left:65.425243pt;}
.x22_c01085{left:73.153640pt;}
.x16_c01085{left:82.801840pt;}
.x30_c01085{left:94.426336pt;}
.x3c_c01085{left:98.509333pt;}
.x3_c01085{left:119.726667pt;}
.x31_c01085{left:124.523523pt;}
.x23_c01085{left:131.889747pt;}
.x17_c01085{left:132.916573pt;}
.x4_c01085{left:141.040000pt;}
.x18_c01085{left:142.587520pt;}
.xd_c01085{left:148.630912pt;}
.x24_c01085{left:161.222467pt;}
.x3d_c01085{left:163.570667pt;}
.x19_c01085{left:168.566915pt;}
.xe_c01085{left:178.277067pt;}
.x5_c01085{left:196.838667pt;}
.xf_c01085{left:206.413851pt;}
.x25_c01085{left:209.257827pt;}
.x3e_c01085{left:212.502667pt;}
.x32_c01085{left:218.839437pt;}
.x1a_c01085{left:236.972837pt;}
.x33_c01085{left:247.388493pt;}
.x26_c01085{left:278.370661pt;}
.x1b_c01085{left:290.148997pt;}
.x10_c01085{left:294.570981pt;}
.x6_c01085{left:299.694667pt;}
.x3f_c01085{left:301.666667pt;}
.x1c_c01085{left:316.203059pt;}
.x34_c01085{left:317.281021pt;}
.x27_c01085{left:327.614115pt;}
.x40_c01085{left:328.993333pt;}
.x11_c01085{left:347.813808pt;}
.x43_c01085{left:360.000000pt;}
.x41_c01085{left:362.262667pt;}
.x7_c01085{left:367.686667pt;}
.x28_c01085{left:368.859675pt;}
.x1d_c01085{left:379.568832pt;}
.x8_c01085{left:387.140000pt;}
.x12_c01085{left:396.760504pt;}
.x35_c01085{left:398.529187pt;}
.x36_c01085{left:416.141328pt;}
.x13_c01085{left:422.725232pt;}
.x29_c01085{left:437.253787pt;}
.x1e_c01085{left:456.341645pt;}
.x2a_c01085{left:462.732912pt;}
.x42_c01085{left:465.329333pt;}
.x9_c01085{left:472.281333pt;}
.x37_c01085{left:483.524317pt;}
.x1f_c01085{left:498.353488pt;}
.x2b_c01085{left:514.556533pt;}
.x14_c01085{left:517.531883pt;}
.x38_c01085{left:550.501955pt;}
.xa_c01085{left:551.686667pt;}
.x39_c01085{left:572.375784pt;}
.x2c_c01085{left:579.569088pt;}
.x20_c01085{left:593.832157pt;}
.x2d_c01085{left:605.221547pt;}
}





/* 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_c01086 {
    display:none;
  }
  .loading-indicator_c01086.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01086 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_c01086 { 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_c01086" -> "#page-container .classname_c01086")
 */
.pf_c01086 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01086 { /* 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_c01086.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01086 { /* 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_c01086 { /* 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_c01086 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01086 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01086 {overflow:visible;}
  }
}
.c_c01086 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01086 { /* 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_c01086:after { /* webkit #35443 */
  content: '';
}
.t_c01086:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01086 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 */
}
.__c01086 { /* 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_c01086 { /* info for Javascript */
  display:none;
}
.l_c01086 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01086 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01086 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01086: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_c01086 {
    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_c01086.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01086.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_c01086 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01086{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01086;src:url('chunks/assets/font_c605e72f209fc835e906f064.woff2')format("woff");}.ff1_c01086{font-family:ff1_c01086;line-height:1.000000;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;}
.m0_c01086{transform:matrix(0.130975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130975,0.000000,0.000000,0.250000,0,0);}
.m13f_c01086{transform:matrix(0.136172,0.001498,-0.002750,0.249985,0,0);-ms-transform:matrix(0.136172,0.001498,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.136172,0.001498,-0.002750,0.249985,0,0);}
.m140_c01086{transform:matrix(0.138897,0.001528,-0.002750,0.249985,0,0);-ms-transform:matrix(0.138897,0.001528,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.138897,0.001528,-0.002750,0.249985,0,0);}
.m143_c01086{transform:matrix(0.148711,0.001636,-0.002750,0.249985,0,0);-ms-transform:matrix(0.148711,0.001636,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.148711,0.001636,-0.002750,0.249985,0,0);}
.m144_c01086{transform:matrix(0.148741,0.001636,-0.002750,0.249985,0,0);-ms-transform:matrix(0.148741,0.001636,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.148741,0.001636,-0.002750,0.249985,0,0);}
.m145_c01086{transform:matrix(0.149951,0.001649,-0.002750,0.249985,0,0);-ms-transform:matrix(0.149951,0.001649,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.149951,0.001649,-0.002750,0.249985,0,0);}
.m141_c01086{transform:matrix(0.152096,0.001673,-0.002750,0.249985,0,0);-ms-transform:matrix(0.152096,0.001673,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.152096,0.001673,-0.002750,0.249985,0,0);}
.m126_c01086{transform:matrix(0.155185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155185,0.000000,0.000000,0.250000,0,0);}
.m13d_c01086{transform:matrix(0.155776,0.001714,-0.002750,0.249985,0,0);-ms-transform:matrix(0.155776,0.001714,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.155776,0.001714,-0.002750,0.249985,0,0);}
.m13c_c01086{transform:matrix(0.155941,0.001715,-0.002750,0.249985,0,0);-ms-transform:matrix(0.155941,0.001715,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.155941,0.001715,-0.002750,0.249985,0,0);}
.m13e_c01086{transform:matrix(0.157090,0.001728,-0.002750,0.249985,0,0);-ms-transform:matrix(0.157090,0.001728,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.157090,0.001728,-0.002750,0.249985,0,0);}
.ma6_c01086{transform:matrix(0.157605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157605,0.000000,0.000000,0.250000,0,0);}
.mab_c01086{transform:matrix(0.158600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158600,0.000000,0.000000,0.250000,0,0);}
.m133_c01086{transform:matrix(0.160235,0.001282,-0.002000,0.249992,0,0);-ms-transform:matrix(0.160235,0.001282,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.160235,0.001282,-0.002000,0.249992,0,0);}
.m139_c01086{transform:matrix(0.162830,0.001303,-0.002000,0.249992,0,0);-ms-transform:matrix(0.162830,0.001303,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.162830,0.001303,-0.002000,0.249992,0,0);}
.m41_c01086{transform:matrix(0.163767,-0.000983,0.001500,0.249996,0,0);-ms-transform:matrix(0.163767,-0.000983,0.001500,0.249996,0,0);-webkit-transform:matrix(0.163767,-0.000983,0.001500,0.249996,0,0);}
.m131_c01086{transform:matrix(0.165030,0.001320,-0.002000,0.249992,0,0);-ms-transform:matrix(0.165030,0.001320,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.165030,0.001320,-0.002000,0.249992,0,0);}
.m136_c01086{transform:matrix(0.167710,0.001342,-0.002000,0.249992,0,0);-ms-transform:matrix(0.167710,0.001342,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.167710,0.001342,-0.002000,0.249992,0,0);}
.maf_c01086{transform:matrix(0.168895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168895,0.000000,0.000000,0.250000,0,0);}
.m138_c01086{transform:matrix(0.169515,0.001356,-0.002000,0.249992,0,0);-ms-transform:matrix(0.169515,0.001356,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.169515,0.001356,-0.002000,0.249992,0,0);}
.m142_c01086{transform:matrix(0.171025,0.001881,-0.002750,0.249985,0,0);-ms-transform:matrix(0.171025,0.001881,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.171025,0.001881,-0.002750,0.249985,0,0);}
.m5a_c01086{transform:matrix(0.178372,-0.001070,0.001500,0.249996,0,0);-ms-transform:matrix(0.178372,-0.001070,0.001500,0.249996,0,0);-webkit-transform:matrix(0.178372,-0.001070,0.001500,0.249996,0,0);}
.maa_c01086{transform:matrix(0.178615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178615,0.000000,0.000000,0.250000,0,0);}
.ma4_c01086{transform:matrix(0.179805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179805,0.000000,0.000000,0.250000,0,0);}
.m125_c01086{transform:matrix(0.180220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180220,0.000000,0.000000,0.250000,0,0);}
.m132_c01086{transform:matrix(0.180449,0.001444,-0.002000,0.249992,0,0);-ms-transform:matrix(0.180449,0.001444,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.180449,0.001444,-0.002000,0.249992,0,0);}
.m106_c01086{transform:matrix(0.181605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181605,0.000000,0.000000,0.250000,0,0);}
.ma8_c01086{transform:matrix(0.182120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182120,0.000000,0.000000,0.250000,0,0);}
.m135_c01086{transform:matrix(0.182719,0.001462,-0.002000,0.249992,0,0);-ms-transform:matrix(0.182719,0.001462,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.182719,0.001462,-0.002000,0.249992,0,0);}
.m12a_c01086{transform:matrix(0.183655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183655,0.000000,0.000000,0.250000,0,0);}
.ma5_c01086{transform:matrix(0.184650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184650,0.000000,0.000000,0.250000,0,0);}
.m2e_c01086{transform:matrix(0.186087,-0.001117,0.001500,0.249996,0,0);-ms-transform:matrix(0.186087,-0.001117,0.001500,0.249996,0,0);-webkit-transform:matrix(0.186087,-0.001117,0.001500,0.249996,0,0);}
.mac_c01086{transform:matrix(0.186305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186305,0.000000,0.000000,0.250000,0,0);}
.m72_c01086{transform:matrix(0.186932,-0.001122,0.001500,0.249996,0,0);-ms-transform:matrix(0.186932,-0.001122,0.001500,0.249996,0,0);-webkit-transform:matrix(0.186932,-0.001122,0.001500,0.249996,0,0);}
.mae_c01086{transform:matrix(0.187625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187625,0.000000,0.000000,0.250000,0,0);}
.m5c_c01086{transform:matrix(0.187752,-0.001127,0.001500,0.249996,0,0);-ms-transform:matrix(0.187752,-0.001127,0.001500,0.249996,0,0);-webkit-transform:matrix(0.187752,-0.001127,0.001500,0.249996,0,0);}
.m48_c01086{transform:matrix(0.187882,-0.001127,0.001500,0.249996,0,0);-ms-transform:matrix(0.187882,-0.001127,0.001500,0.249996,0,0);-webkit-transform:matrix(0.187882,-0.001127,0.001500,0.249996,0,0);}
.m12d_c01086{transform:matrix(0.187995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187995,0.000000,0.000000,0.250000,0,0);}
.m107_c01086{transform:matrix(0.188310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188310,0.000000,0.000000,0.250000,0,0);}
.ma9_c01086{transform:matrix(0.189115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189115,0.000000,0.000000,0.250000,0,0);}
.m130_c01086{transform:matrix(0.189579,0.001517,-0.002000,0.249992,0,0);-ms-transform:matrix(0.189579,0.001517,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.189579,0.001517,-0.002000,0.249992,0,0);}
.m137_c01086{transform:matrix(0.190529,0.001524,-0.002000,0.249992,0,0);-ms-transform:matrix(0.190529,0.001524,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.190529,0.001524,-0.002000,0.249992,0,0);}
.m134_c01086{transform:matrix(0.190554,0.001524,-0.002000,0.249992,0,0);-ms-transform:matrix(0.190554,0.001524,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.190554,0.001524,-0.002000,0.249992,0,0);}
.me_c01086{transform:matrix(0.191372,-0.001148,0.001500,0.249996,0,0);-ms-transform:matrix(0.191372,-0.001148,0.001500,0.249996,0,0);-webkit-transform:matrix(0.191372,-0.001148,0.001500,0.249996,0,0);}
.m13a_c01086{transform:matrix(0.191479,0.001532,-0.002000,0.249992,0,0);-ms-transform:matrix(0.191479,0.001532,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.191479,0.001532,-0.002000,0.249992,0,0);}
.m15_c01086{transform:matrix(0.191972,-0.001152,0.001500,0.249996,0,0);-ms-transform:matrix(0.191972,-0.001152,0.001500,0.249996,0,0);-webkit-transform:matrix(0.191972,-0.001152,0.001500,0.249996,0,0);}
.ma7_c01086{transform:matrix(0.192600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192600,0.000000,0.000000,0.250000,0,0);}
.md2_c01086{transform:matrix(0.193035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193035,0.000000,0.000000,0.250000,0,0);}
.m109_c01086{transform:matrix(0.193980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193980,0.000000,0.000000,0.250000,0,0);}
.m8b_c01086{transform:matrix(0.194350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194350,0.000000,0.000000,0.250000,0,0);}
.m17_c01086{transform:matrix(0.194936,-0.001170,0.001500,0.249996,0,0);-ms-transform:matrix(0.194936,-0.001170,0.001500,0.249996,0,0);-webkit-transform:matrix(0.194936,-0.001170,0.001500,0.249996,0,0);}
.m12f_c01086{transform:matrix(0.195054,0.001560,-0.002000,0.249992,0,0);-ms-transform:matrix(0.195054,0.001560,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.195054,0.001560,-0.002000,0.249992,0,0);}
.m10c_c01086{transform:matrix(0.195405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195405,0.000000,0.000000,0.250000,0,0);}
.m3d_c01086{transform:matrix(0.196121,-0.001177,0.001500,0.249996,0,0);-ms-transform:matrix(0.196121,-0.001177,0.001500,0.249996,0,0);-webkit-transform:matrix(0.196121,-0.001177,0.001500,0.249996,0,0);}
.m77_c01086{transform:matrix(0.196731,-0.001180,0.001500,0.249996,0,0);-ms-transform:matrix(0.196731,-0.001180,0.001500,0.249996,0,0);-webkit-transform:matrix(0.196731,-0.001180,0.001500,0.249996,0,0);}
.m105_c01086{transform:matrix(0.196745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196745,0.000000,0.000000,0.250000,0,0);}
.m103_c01086{transform:matrix(0.196815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196815,0.000000,0.000000,0.250000,0,0);}
.m128_c01086{transform:matrix(0.197060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197060,0.000000,0.000000,0.250000,0,0);}
.m49_c01086{transform:matrix(0.197721,-0.001186,0.001500,0.249996,0,0);-ms-transform:matrix(0.197721,-0.001186,0.001500,0.249996,0,0);-webkit-transform:matrix(0.197721,-0.001186,0.001500,0.249996,0,0);}
.m40_c01086{transform:matrix(0.198061,-0.001188,0.001500,0.249996,0,0);-ms-transform:matrix(0.198061,-0.001188,0.001500,0.249996,0,0);-webkit-transform:matrix(0.198061,-0.001188,0.001500,0.249996,0,0);}
.m104_c01086{transform:matrix(0.198205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198205,0.000000,0.000000,0.250000,0,0);}
.m87_c01086{transform:matrix(0.198535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198535,0.000000,0.000000,0.250000,0,0);}
.m44_c01086{transform:matrix(0.200306,-0.001202,0.001500,0.249996,0,0);-ms-transform:matrix(0.200306,-0.001202,0.001500,0.249996,0,0);-webkit-transform:matrix(0.200306,-0.001202,0.001500,0.249996,0,0);}
.m61_c01086{transform:matrix(0.200341,-0.001202,0.001500,0.249996,0,0);-ms-transform:matrix(0.200341,-0.001202,0.001500,0.249996,0,0);-webkit-transform:matrix(0.200341,-0.001202,0.001500,0.249996,0,0);}
.m62_c01086{transform:matrix(0.201491,-0.001209,0.001500,0.249996,0,0);-ms-transform:matrix(0.201491,-0.001209,0.001500,0.249996,0,0);-webkit-transform:matrix(0.201491,-0.001209,0.001500,0.249996,0,0);}
.m12e_c01086{transform:matrix(0.201950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201950,0.000000,0.000000,0.250000,0,0);}
.m12c_c01086{transform:matrix(0.202215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202215,0.000000,0.000000,0.250000,0,0);}
.m75_c01086{transform:matrix(0.202291,-0.001214,0.001500,0.249996,0,0);-ms-transform:matrix(0.202291,-0.001214,0.001500,0.249996,0,0);-webkit-transform:matrix(0.202291,-0.001214,0.001500,0.249996,0,0);}
.m60_c01086{transform:matrix(0.203546,-0.001221,0.001500,0.249996,0,0);-ms-transform:matrix(0.203546,-0.001221,0.001500,0.249996,0,0);-webkit-transform:matrix(0.203546,-0.001221,0.001500,0.249996,0,0);}
.m59_c01086{transform:matrix(0.203856,-0.001223,0.001500,0.249996,0,0);-ms-transform:matrix(0.203856,-0.001223,0.001500,0.249996,0,0);-webkit-transform:matrix(0.203856,-0.001223,0.001500,0.249996,0,0);}
.m46_c01086{transform:matrix(0.203981,-0.001224,0.001500,0.249996,0,0);-ms-transform:matrix(0.203981,-0.001224,0.001500,0.249996,0,0);-webkit-transform:matrix(0.203981,-0.001224,0.001500,0.249996,0,0);}
.m4a_c01086{transform:matrix(0.203996,-0.001224,0.001500,0.249996,0,0);-ms-transform:matrix(0.203996,-0.001224,0.001500,0.249996,0,0);-webkit-transform:matrix(0.203996,-0.001224,0.001500,0.249996,0,0);}
.m11b_c01086{transform:matrix(0.205490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205490,0.000000,0.000000,0.250000,0,0);}
.mc5_c01086{transform:matrix(0.205745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205745,0.000000,0.000000,0.250000,0,0);}
.m129_c01086{transform:matrix(0.206065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206065,0.000000,0.000000,0.250000,0,0);}
.m1f_c01086{transform:matrix(0.206891,-0.001241,0.001500,0.249996,0,0);-ms-transform:matrix(0.206891,-0.001241,0.001500,0.249996,0,0);-webkit-transform:matrix(0.206891,-0.001241,0.001500,0.249996,0,0);}
.m5e_c01086{transform:matrix(0.207421,-0.001245,0.001500,0.249996,0,0);-ms-transform:matrix(0.207421,-0.001245,0.001500,0.249996,0,0);-webkit-transform:matrix(0.207421,-0.001245,0.001500,0.249996,0,0);}
.m119_c01086{transform:matrix(0.207460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207460,0.000000,0.000000,0.250000,0,0);}
.m7e_c01086{transform:matrix(0.208015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208015,0.000000,0.000000,0.250000,0,0);}
.m127_c01086{transform:matrix(0.208395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208395,0.000000,0.000000,0.250000,0,0);}
.m12b_c01086{transform:matrix(0.208455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208455,0.000000,0.000000,0.250000,0,0);}
.mad_c01086{transform:matrix(0.208840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208840,0.000000,0.000000,0.250000,0,0);}
.m11d_c01086{transform:matrix(0.209300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209300,0.000000,0.000000,0.250000,0,0);}
.m4b_c01086{transform:matrix(0.209306,-0.001256,0.001500,0.249996,0,0);-ms-transform:matrix(0.209306,-0.001256,0.001500,0.249996,0,0);-webkit-transform:matrix(0.209306,-0.001256,0.001500,0.249996,0,0);}
.mf4_c01086{transform:matrix(0.209495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209495,0.000000,0.000000,0.250000,0,0);}
.m71_c01086{transform:matrix(0.209546,-0.001257,0.001500,0.249996,0,0);-ms-transform:matrix(0.209546,-0.001257,0.001500,0.249996,0,0);-webkit-transform:matrix(0.209546,-0.001257,0.001500,0.249996,0,0);}
.me8_c01086{transform:matrix(0.209630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209630,0.000000,0.000000,0.250000,0,0);}
.mce_c01086{transform:matrix(0.210050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210050,0.000000,0.000000,0.250000,0,0);}
.m58_c01086{transform:matrix(0.210411,-0.001262,0.001500,0.249996,0,0);-ms-transform:matrix(0.210411,-0.001262,0.001500,0.249996,0,0);-webkit-transform:matrix(0.210411,-0.001262,0.001500,0.249996,0,0);}
.m82_c01086{transform:matrix(0.211215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211215,0.000000,0.000000,0.250000,0,0);}
.m2b_c01086{transform:matrix(0.211866,-0.001271,0.001500,0.249996,0,0);-ms-transform:matrix(0.211866,-0.001271,0.001500,0.249996,0,0);-webkit-transform:matrix(0.211866,-0.001271,0.001500,0.249996,0,0);}
.m6f_c01086{transform:matrix(0.211876,-0.001271,0.001500,0.249996,0,0);-ms-transform:matrix(0.211876,-0.001271,0.001500,0.249996,0,0);-webkit-transform:matrix(0.211876,-0.001271,0.001500,0.249996,0,0);}
.m47_c01086{transform:matrix(0.212161,-0.001273,0.001500,0.249996,0,0);-ms-transform:matrix(0.212161,-0.001273,0.001500,0.249996,0,0);-webkit-transform:matrix(0.212161,-0.001273,0.001500,0.249996,0,0);}
.mdc_c01086{transform:matrix(0.212200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212200,0.000000,0.000000,0.250000,0,0);}
.m45_c01086{transform:matrix(0.212476,-0.001275,0.001500,0.249996,0,0);-ms-transform:matrix(0.212476,-0.001275,0.001500,0.249996,0,0);-webkit-transform:matrix(0.212476,-0.001275,0.001500,0.249996,0,0);}
.m42_c01086{transform:matrix(0.212831,-0.001277,0.001500,0.249996,0,0);-ms-transform:matrix(0.212831,-0.001277,0.001500,0.249996,0,0);-webkit-transform:matrix(0.212831,-0.001277,0.001500,0.249996,0,0);}
.m89_c01086{transform:matrix(0.213385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213385,0.000000,0.000000,0.250000,0,0);}
.m29_c01086{transform:matrix(0.213816,-0.001283,0.001500,0.249996,0,0);-ms-transform:matrix(0.213816,-0.001283,0.001500,0.249996,0,0);-webkit-transform:matrix(0.213816,-0.001283,0.001500,0.249996,0,0);}
.m86_c01086{transform:matrix(0.213860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213860,0.000000,0.000000,0.250000,0,0);}
.m3a_c01086{transform:matrix(0.214616,-0.001288,0.001500,0.249996,0,0);-ms-transform:matrix(0.214616,-0.001288,0.001500,0.249996,0,0);-webkit-transform:matrix(0.214616,-0.001288,0.001500,0.249996,0,0);}
.m74_c01086{transform:matrix(0.214681,-0.001288,0.001500,0.249996,0,0);-ms-transform:matrix(0.214681,-0.001288,0.001500,0.249996,0,0);-webkit-transform:matrix(0.214681,-0.001288,0.001500,0.249996,0,0);}
.m10a_c01086{transform:matrix(0.215695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215695,0.000000,0.000000,0.250000,0,0);}
.m80_c01086{transform:matrix(0.215705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215705,0.000000,0.000000,0.250000,0,0);}
.m27_c01086{transform:matrix(0.215811,-0.001295,0.001500,0.249996,0,0);-ms-transform:matrix(0.215811,-0.001295,0.001500,0.249996,0,0);-webkit-transform:matrix(0.215811,-0.001295,0.001500,0.249996,0,0);}
.m123_c01086{transform:matrix(0.217620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217620,0.000000,0.000000,0.250000,0,0);}
.m90_c01086{transform:matrix(0.217730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217730,0.000000,0.000000,0.250000,0,0);}
.m76_c01086{transform:matrix(0.218751,-0.001313,0.001500,0.249996,0,0);-ms-transform:matrix(0.218751,-0.001313,0.001500,0.249996,0,0);-webkit-transform:matrix(0.218751,-0.001313,0.001500,0.249996,0,0);}
.md4_c01086{transform:matrix(0.218940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218940,0.000000,0.000000,0.250000,0,0);}
.m108_c01086{transform:matrix(0.219940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219940,0.000000,0.000000,0.250000,0,0);}
.m13_c01086{transform:matrix(0.220616,-0.001324,0.001500,0.249996,0,0);-ms-transform:matrix(0.220616,-0.001324,0.001500,0.249996,0,0);-webkit-transform:matrix(0.220616,-0.001324,0.001500,0.249996,0,0);}
.m10b_c01086{transform:matrix(0.220635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220635,0.000000,0.000000,0.250000,0,0);}
.md0_c01086{transform:matrix(0.220660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220660,0.000000,0.000000,0.250000,0,0);}
.m70_c01086{transform:matrix(0.221591,-0.001330,0.001500,0.249996,0,0);-ms-transform:matrix(0.221591,-0.001330,0.001500,0.249996,0,0);-webkit-transform:matrix(0.221591,-0.001330,0.001500,0.249996,0,0);}
.m37_c01086{transform:matrix(0.221981,-0.001332,0.001500,0.249996,0,0);-ms-transform:matrix(0.221981,-0.001332,0.001500,0.249996,0,0);-webkit-transform:matrix(0.221981,-0.001332,0.001500,0.249996,0,0);}
.m32_c01086{transform:matrix(0.222121,-0.001333,0.001500,0.249996,0,0);-ms-transform:matrix(0.222121,-0.001333,0.001500,0.249996,0,0);-webkit-transform:matrix(0.222121,-0.001333,0.001500,0.249996,0,0);}
.m81_c01086{transform:matrix(0.222140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222140,0.000000,0.000000,0.250000,0,0);}
.m85_c01086{transform:matrix(0.222445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222445,0.000000,0.000000,0.250000,0,0);}
.m3c_c01086{transform:matrix(0.222526,-0.001335,0.001500,0.249996,0,0);-ms-transform:matrix(0.222526,-0.001335,0.001500,0.249996,0,0);-webkit-transform:matrix(0.222526,-0.001335,0.001500,0.249996,0,0);}
.md7_c01086{transform:matrix(0.222735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222735,0.000000,0.000000,0.250000,0,0);}
.m43_c01086{transform:matrix(0.222856,-0.001337,0.001500,0.249996,0,0);-ms-transform:matrix(0.222856,-0.001337,0.001500,0.249996,0,0);-webkit-transform:matrix(0.222856,-0.001337,0.001500,0.249996,0,0);}
.m7a_c01086{transform:matrix(0.223075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223075,0.000000,0.000000,0.250000,0,0);}
.m7c_c01086{transform:matrix(0.223180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223180,0.000000,0.000000,0.250000,0,0);}
.m19_c01086{transform:matrix(0.223266,-0.001340,0.001500,0.249996,0,0);-ms-transform:matrix(0.223266,-0.001340,0.001500,0.249996,0,0);-webkit-transform:matrix(0.223266,-0.001340,0.001500,0.249996,0,0);}
.m11_c01086{transform:matrix(0.223271,-0.001340,0.001500,0.249996,0,0);-ms-transform:matrix(0.223271,-0.001340,0.001500,0.249996,0,0);-webkit-transform:matrix(0.223271,-0.001340,0.001500,0.249996,0,0);}
.m11e_c01086{transform:matrix(0.223380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223380,0.000000,0.000000,0.250000,0,0);}
.m122_c01086{transform:matrix(0.223405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223405,0.000000,0.000000,0.250000,0,0);}
.m64_c01086{transform:matrix(0.223966,-0.001344,0.001500,0.249996,0,0);-ms-transform:matrix(0.223966,-0.001344,0.001500,0.249996,0,0);-webkit-transform:matrix(0.223966,-0.001344,0.001500,0.249996,0,0);}
.m7d_c01086{transform:matrix(0.224340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224340,0.000000,0.000000,0.250000,0,0);}
.m8a_c01086{transform:matrix(0.224520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224520,0.000000,0.000000,0.250000,0,0);}
.md1_c01086{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.mf_c01086{transform:matrix(0.225296,-0.001352,0.001500,0.249996,0,0);-ms-transform:matrix(0.225296,-0.001352,0.001500,0.249996,0,0);-webkit-transform:matrix(0.225296,-0.001352,0.001500,0.249996,0,0);}
.m1c_c01086{transform:matrix(0.225341,-0.001352,0.001500,0.249996,0,0);-ms-transform:matrix(0.225341,-0.001352,0.001500,0.249996,0,0);-webkit-transform:matrix(0.225341,-0.001352,0.001500,0.249996,0,0);}
.mf6_c01086{transform:matrix(0.225345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225345,0.000000,0.000000,0.250000,0,0);}
.md_c01086{transform:matrix(0.225391,-0.001352,0.001500,0.249996,0,0);-ms-transform:matrix(0.225391,-0.001352,0.001500,0.249996,0,0);-webkit-transform:matrix(0.225391,-0.001352,0.001500,0.249996,0,0);}
.m120_c01086{transform:matrix(0.225465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225465,0.000000,0.000000,0.250000,0,0);}
.ma0_c01086{transform:matrix(0.226065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226065,0.000000,0.000000,0.250000,0,0);}
.mcb_c01086{transform:matrix(0.226745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226745,0.000000,0.000000,0.250000,0,0);}
.m3b_c01086{transform:matrix(0.226811,-0.001361,0.001500,0.249996,0,0);-ms-transform:matrix(0.226811,-0.001361,0.001500,0.249996,0,0);-webkit-transform:matrix(0.226811,-0.001361,0.001500,0.249996,0,0);}
.m30_c01086{transform:matrix(0.227746,-0.001366,0.001500,0.249996,0,0);-ms-transform:matrix(0.227746,-0.001366,0.001500,0.249996,0,0);-webkit-transform:matrix(0.227746,-0.001366,0.001500,0.249996,0,0);}
.m5d_c01086{transform:matrix(0.227896,-0.001367,0.001500,0.249996,0,0);-ms-transform:matrix(0.227896,-0.001367,0.001500,0.249996,0,0);-webkit-transform:matrix(0.227896,-0.001367,0.001500,0.249996,0,0);}
.m14_c01086{transform:matrix(0.227906,-0.001367,0.001500,0.249996,0,0);-ms-transform:matrix(0.227906,-0.001367,0.001500,0.249996,0,0);-webkit-transform:matrix(0.227906,-0.001367,0.001500,0.249996,0,0);}
.m78_c01086{transform:matrix(0.227911,-0.001367,0.001500,0.249996,0,0);-ms-transform:matrix(0.227911,-0.001367,0.001500,0.249996,0,0);-webkit-transform:matrix(0.227911,-0.001367,0.001500,0.249996,0,0);}
.m9e_c01086{transform:matrix(0.228160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228160,0.000000,0.000000,0.250000,0,0);}
.m98_c01086{transform:matrix(0.228170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228170,0.000000,0.000000,0.250000,0,0);}
.m16_c01086{transform:matrix(0.229301,-0.001376,0.001500,0.249996,0,0);-ms-transform:matrix(0.229301,-0.001376,0.001500,0.249996,0,0);-webkit-transform:matrix(0.229301,-0.001376,0.001500,0.249996,0,0);}
.m8e_c01086{transform:matrix(0.229480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229480,0.000000,0.000000,0.250000,0,0);}
.mb8_c01086{transform:matrix(0.229590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229590,0.000000,0.000000,0.250000,0,0);}
.ma3_c01086{transform:matrix(0.230215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230215,0.000000,0.000000,0.250000,0,0);}
.md5_c01086{transform:matrix(0.230315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230315,0.000000,0.000000,0.250000,0,0);}
.m6c_c01086{transform:matrix(0.230486,-0.001383,0.001500,0.249996,0,0);-ms-transform:matrix(0.230486,-0.001383,0.001500,0.249996,0,0);-webkit-transform:matrix(0.230486,-0.001383,0.001500,0.249996,0,0);}
.m3e_c01086{transform:matrix(0.231116,-0.001387,0.001500,0.249996,0,0);-ms-transform:matrix(0.231116,-0.001387,0.001500,0.249996,0,0);-webkit-transform:matrix(0.231116,-0.001387,0.001500,0.249996,0,0);}
.m8c_c01086{transform:matrix(0.231205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231205,0.000000,0.000000,0.250000,0,0);}
.m10_c01086{transform:matrix(0.231211,-0.001387,0.001500,0.249996,0,0);-ms-transform:matrix(0.231211,-0.001387,0.001500,0.249996,0,0);-webkit-transform:matrix(0.231211,-0.001387,0.001500,0.249996,0,0);}
.m8d_c01086{transform:matrix(0.231685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231685,0.000000,0.000000,0.250000,0,0);}
.m36_c01086{transform:matrix(0.232061,-0.001392,0.001500,0.249996,0,0);-ms-transform:matrix(0.232061,-0.001392,0.001500,0.249996,0,0);-webkit-transform:matrix(0.232061,-0.001392,0.001500,0.249996,0,0);}
.mc6_c01086{transform:matrix(0.232285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232285,0.000000,0.000000,0.250000,0,0);}
.m93_c01086{transform:matrix(0.232595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232595,0.000000,0.000000,0.250000,0,0);}
.m5b_c01086{transform:matrix(0.232606,-0.001396,0.001500,0.249996,0,0);-ms-transform:matrix(0.232606,-0.001396,0.001500,0.249996,0,0);-webkit-transform:matrix(0.232606,-0.001396,0.001500,0.249996,0,0);}
.m35_c01086{transform:matrix(0.233566,-0.001401,0.001500,0.249996,0,0);-ms-transform:matrix(0.233566,-0.001401,0.001500,0.249996,0,0);-webkit-transform:matrix(0.233566,-0.001401,0.001500,0.249996,0,0);}
.m28_c01086{transform:matrix(0.234316,-0.001406,0.001500,0.249996,0,0);-ms-transform:matrix(0.234316,-0.001406,0.001500,0.249996,0,0);-webkit-transform:matrix(0.234316,-0.001406,0.001500,0.249996,0,0);}
.mb5_c01086{transform:matrix(0.234360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234360,0.000000,0.000000,0.250000,0,0);}
.m38_c01086{transform:matrix(0.234541,-0.001407,0.001500,0.249996,0,0);-ms-transform:matrix(0.234541,-0.001407,0.001500,0.249996,0,0);-webkit-transform:matrix(0.234541,-0.001407,0.001500,0.249996,0,0);}
.m110_c01086{transform:matrix(0.234785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234785,0.000000,0.000000,0.250000,0,0);}
.m2c_c01086{transform:matrix(0.235016,-0.001410,0.001500,0.249996,0,0);-ms-transform:matrix(0.235016,-0.001410,0.001500,0.249996,0,0);-webkit-transform:matrix(0.235016,-0.001410,0.001500,0.249996,0,0);}
.m7f_c01086{transform:matrix(0.235120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235120,0.000000,0.000000,0.250000,0,0);}
.m118_c01086{transform:matrix(0.235695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235695,0.000000,0.000000,0.250000,0,0);}
.m39_c01086{transform:matrix(0.235796,-0.001415,0.001500,0.249996,0,0);-ms-transform:matrix(0.235796,-0.001415,0.001500,0.249996,0,0);-webkit-transform:matrix(0.235796,-0.001415,0.001500,0.249996,0,0);}
.md3_c01086{transform:matrix(0.236075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236075,0.000000,0.000000,0.250000,0,0);}
.m21_c01086{transform:matrix(0.236206,-0.001417,0.001500,0.249996,0,0);-ms-transform:matrix(0.236206,-0.001417,0.001500,0.249996,0,0);-webkit-transform:matrix(0.236206,-0.001417,0.001500,0.249996,0,0);}
.m73_c01086{transform:matrix(0.236411,-0.001418,0.001500,0.249996,0,0);-ms-transform:matrix(0.236411,-0.001418,0.001500,0.249996,0,0);-webkit-transform:matrix(0.236411,-0.001418,0.001500,0.249996,0,0);}
.m69_c01086{transform:matrix(0.236441,-0.001419,0.001500,0.249996,0,0);-ms-transform:matrix(0.236441,-0.001419,0.001500,0.249996,0,0);-webkit-transform:matrix(0.236441,-0.001419,0.001500,0.249996,0,0);}
.m23_c01086{transform:matrix(0.236476,-0.001419,0.001500,0.249996,0,0);-ms-transform:matrix(0.236476,-0.001419,0.001500,0.249996,0,0);-webkit-transform:matrix(0.236476,-0.001419,0.001500,0.249996,0,0);}
.m79_c01086{transform:matrix(0.237006,-0.001422,0.001500,0.249996,0,0);-ms-transform:matrix(0.237006,-0.001422,0.001500,0.249996,0,0);-webkit-transform:matrix(0.237006,-0.001422,0.001500,0.249996,0,0);}
.mfb_c01086{transform:matrix(0.237120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237120,0.000000,0.000000,0.250000,0,0);}
.mc3_c01086{transform:matrix(0.237305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237305,0.000000,0.000000,0.250000,0,0);}
.m83_c01086{transform:matrix(0.237380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237380,0.000000,0.000000,0.250000,0,0);}
.m12_c01086{transform:matrix(0.237436,-0.001425,0.001500,0.249996,0,0);-ms-transform:matrix(0.237436,-0.001425,0.001500,0.249996,0,0);-webkit-transform:matrix(0.237436,-0.001425,0.001500,0.249996,0,0);}
.m68_c01086{transform:matrix(0.237826,-0.001427,0.001500,0.249996,0,0);-ms-transform:matrix(0.237826,-0.001427,0.001500,0.249996,0,0);-webkit-transform:matrix(0.237826,-0.001427,0.001500,0.249996,0,0);}
.m3f_c01086{transform:matrix(0.238426,-0.001431,0.001500,0.249996,0,0);-ms-transform:matrix(0.238426,-0.001431,0.001500,0.249996,0,0);-webkit-transform:matrix(0.238426,-0.001431,0.001500,0.249996,0,0);}
.mfd_c01086{transform:matrix(0.238535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238535,0.000000,0.000000,0.250000,0,0);}
.md8_c01086{transform:matrix(0.239035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239035,0.000000,0.000000,0.250000,0,0);}
.mc4_c01086{transform:matrix(0.239310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239310,0.000000,0.000000,0.250000,0,0);}
.m2f_c01086{transform:matrix(0.239846,-0.001439,0.001500,0.249996,0,0);-ms-transform:matrix(0.239846,-0.001439,0.001500,0.249996,0,0);-webkit-transform:matrix(0.239846,-0.001439,0.001500,0.249996,0,0);}
.m2a_c01086{transform:matrix(0.239861,-0.001439,0.001500,0.249996,0,0);-ms-transform:matrix(0.239861,-0.001439,0.001500,0.249996,0,0);-webkit-transform:matrix(0.239861,-0.001439,0.001500,0.249996,0,0);}
.m57_c01086{transform:matrix(0.239906,-0.001439,0.001500,0.249996,0,0);-ms-transform:matrix(0.239906,-0.001439,0.001500,0.249996,0,0);-webkit-transform:matrix(0.239906,-0.001439,0.001500,0.249996,0,0);}
.m88_c01086{transform:matrix(0.240205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240205,0.000000,0.000000,0.250000,0,0);}
.m10f_c01086{transform:matrix(0.241030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241030,0.000000,0.000000,0.250000,0,0);}
.m7_c01086{transform:matrix(0.241311,-0.001448,0.001500,0.249996,0,0);-ms-transform:matrix(0.241311,-0.001448,0.001500,0.249996,0,0);-webkit-transform:matrix(0.241311,-0.001448,0.001500,0.249996,0,0);}
.m5f_c01086{transform:matrix(0.241691,-0.001450,0.001500,0.249996,0,0);-ms-transform:matrix(0.241691,-0.001450,0.001500,0.249996,0,0);-webkit-transform:matrix(0.241691,-0.001450,0.001500,0.249996,0,0);}
.mf9_c01086{transform:matrix(0.241940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241940,0.000000,0.000000,0.250000,0,0);}
.mc9_c01086{transform:matrix(0.241995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241995,0.000000,0.000000,0.250000,0,0);}
.m4f_c01086{transform:matrix(0.242016,-0.001452,0.001500,0.249996,0,0);-ms-transform:matrix(0.242016,-0.001452,0.001500,0.249996,0,0);-webkit-transform:matrix(0.242016,-0.001452,0.001500,0.249996,0,0);}
.m10d_c01086{transform:matrix(0.242100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242100,0.000000,0.000000,0.250000,0,0);}
.m11c_c01086{transform:matrix(0.242275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242275,0.000000,0.000000,0.250000,0,0);}
.m63_c01086{transform:matrix(0.242296,-0.001454,0.001500,0.249996,0,0);-ms-transform:matrix(0.242296,-0.001454,0.001500,0.249996,0,0);-webkit-transform:matrix(0.242296,-0.001454,0.001500,0.249996,0,0);}
.m121_c01086{transform:matrix(0.242375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242375,0.000000,0.000000,0.250000,0,0);}
.m24_c01086{transform:matrix(0.242866,-0.001457,0.001500,0.249996,0,0);-ms-transform:matrix(0.242866,-0.001457,0.001500,0.249996,0,0);-webkit-transform:matrix(0.242866,-0.001457,0.001500,0.249996,0,0);}
.m55_c01086{transform:matrix(0.243371,-0.001460,0.001500,0.249996,0,0);-ms-transform:matrix(0.243371,-0.001460,0.001500,0.249996,0,0);-webkit-transform:matrix(0.243371,-0.001460,0.001500,0.249996,0,0);}
.me3_c01086{transform:matrix(0.243375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243375,0.000000,0.000000,0.250000,0,0);}
.m22_c01086{transform:matrix(0.243806,-0.001463,0.001500,0.249996,0,0);-ms-transform:matrix(0.243806,-0.001463,0.001500,0.249996,0,0);-webkit-transform:matrix(0.243806,-0.001463,0.001500,0.249996,0,0);}
.m2d_c01086{transform:matrix(0.243831,-0.001463,0.001500,0.249996,0,0);-ms-transform:matrix(0.243831,-0.001463,0.001500,0.249996,0,0);-webkit-transform:matrix(0.243831,-0.001463,0.001500,0.249996,0,0);}
.m11f_c01086{transform:matrix(0.244045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244045,0.000000,0.000000,0.250000,0,0);}
.mb2_c01086{transform:matrix(0.244075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244075,0.000000,0.000000,0.250000,0,0);}
.m52_c01086{transform:matrix(0.244091,-0.001465,0.001500,0.249996,0,0);-ms-transform:matrix(0.244091,-0.001465,0.001500,0.249996,0,0);-webkit-transform:matrix(0.244091,-0.001465,0.001500,0.249996,0,0);}
.m4d_c01086{transform:matrix(0.244766,-0.001469,0.001500,0.249996,0,0);-ms-transform:matrix(0.244766,-0.001469,0.001500,0.249996,0,0);-webkit-transform:matrix(0.244766,-0.001469,0.001500,0.249996,0,0);}
.me6_c01086{transform:matrix(0.244770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244770,0.000000,0.000000,0.250000,0,0);}
.mec_c01086{transform:matrix(0.245475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245475,0.000000,0.000000,0.250000,0,0);}
.m65_c01086{transform:matrix(0.245721,-0.001474,0.001500,0.249996,0,0);-ms-transform:matrix(0.245721,-0.001474,0.001500,0.249996,0,0);-webkit-transform:matrix(0.245721,-0.001474,0.001500,0.249996,0,0);}
.m25_c01086{transform:matrix(0.245976,-0.001476,0.001500,0.249996,0,0);-ms-transform:matrix(0.245976,-0.001476,0.001500,0.249996,0,0);-webkit-transform:matrix(0.245976,-0.001476,0.001500,0.249996,0,0);}
.m4e_c01086{transform:matrix(0.246201,-0.001477,0.001500,0.249996,0,0);-ms-transform:matrix(0.246201,-0.001477,0.001500,0.249996,0,0);-webkit-transform:matrix(0.246201,-0.001477,0.001500,0.249996,0,0);}
.md9_c01086{transform:matrix(0.246320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246320,0.000000,0.000000,0.250000,0,0);}
.m84_c01086{transform:matrix(0.246410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246410,0.000000,0.000000,0.250000,0,0);}
.m4c_c01086{transform:matrix(0.246526,-0.001479,0.001500,0.249996,0,0);-ms-transform:matrix(0.246526,-0.001479,0.001500,0.249996,0,0);-webkit-transform:matrix(0.246526,-0.001479,0.001500,0.249996,0,0);}
.mf2_c01086{transform:matrix(0.247155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247155,0.000000,0.000000,0.250000,0,0);}
.mf1_c01086{transform:matrix(0.247685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247685,0.000000,0.000000,0.250000,0,0);}
.m114_c01086{transform:matrix(0.248320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248320,0.000000,0.000000,0.250000,0,0);}
.m34_c01086{transform:matrix(0.248556,-0.001491,0.001500,0.249996,0,0);-ms-transform:matrix(0.248556,-0.001491,0.001500,0.249996,0,0);-webkit-transform:matrix(0.248556,-0.001491,0.001500,0.249996,0,0);}
.m113_c01086{transform:matrix(0.249505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249505,0.000000,0.000000,0.250000,0,0);}
.mcf_c01086{transform:matrix(0.249610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249610,0.000000,0.000000,0.250000,0,0);}
.mea_c01086{transform:matrix(0.249665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249665,0.000000,0.000000,0.250000,0,0);}
.mf3_c01086{transform:matrix(0.250015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250015,0.000000,0.000000,0.250000,0,0);}
.m92_c01086{transform:matrix(0.250155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250155,0.000000,0.000000,0.250000,0,0);}
.ma_c01086{transform:matrix(0.250385,-0.001502,0.001500,0.249996,0,0);-ms-transform:matrix(0.250385,-0.001502,0.001500,0.249996,0,0);-webkit-transform:matrix(0.250385,-0.001502,0.001500,0.249996,0,0);}
.m101_c01086{transform:matrix(0.250660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250660,0.000000,0.000000,0.250000,0,0);}
.m11a_c01086{transform:matrix(0.250705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250705,0.000000,0.000000,0.250000,0,0);}
.mc1_c01086{transform:matrix(0.251145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251145,0.000000,0.000000,0.250000,0,0);}
.m33_c01086{transform:matrix(0.251215,-0.001507,0.001500,0.249996,0,0);-ms-transform:matrix(0.251215,-0.001507,0.001500,0.249996,0,0);-webkit-transform:matrix(0.251215,-0.001507,0.001500,0.249996,0,0);}
.mda_c01086{transform:matrix(0.251870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251870,0.000000,0.000000,0.250000,0,0);}
.m8f_c01086{transform:matrix(0.251950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251950,0.000000,0.000000,0.250000,0,0);}
.me1_c01086{transform:matrix(0.252355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252355,0.000000,0.000000,0.250000,0,0);}
.m54_c01086{transform:matrix(0.252585,-0.001516,0.001500,0.249996,0,0);-ms-transform:matrix(0.252585,-0.001516,0.001500,0.249996,0,0);-webkit-transform:matrix(0.252585,-0.001516,0.001500,0.249996,0,0);}
.mff_c01086{transform:matrix(0.253105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253105,0.000000,0.000000,0.250000,0,0);}
.m99_c01086{transform:matrix(0.253845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253845,0.000000,0.000000,0.250000,0,0);}
.ma2_c01086{transform:matrix(0.253875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253875,0.000000,0.000000,0.250000,0,0);}
.m31_c01086{transform:matrix(0.254040,-0.001524,0.001500,0.249996,0,0);-ms-transform:matrix(0.254040,-0.001524,0.001500,0.249996,0,0);-webkit-transform:matrix(0.254040,-0.001524,0.001500,0.249996,0,0);}
.md6_c01086{transform:matrix(0.254645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254645,0.000000,0.000000,0.250000,0,0);}
.mdf_c01086{transform:matrix(0.255440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255440,0.000000,0.000000,0.250000,0,0);}
.m9a_c01086{transform:matrix(0.255445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255445,0.000000,0.000000,0.250000,0,0);}
.m124_c01086{transform:matrix(0.256090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256090,0.000000,0.000000,0.250000,0,0);}
.me4_c01086{transform:matrix(0.256540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256540,0.000000,0.000000,0.250000,0,0);}
.mfa_c01086{transform:matrix(0.257180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257180,0.000000,0.000000,0.250000,0,0);}
.mb_c01086{transform:matrix(0.257935,-0.001548,0.001500,0.249996,0,0);-ms-transform:matrix(0.257935,-0.001548,0.001500,0.249996,0,0);-webkit-transform:matrix(0.257935,-0.001548,0.001500,0.249996,0,0);}
.m26_c01086{transform:matrix(0.258025,-0.001548,0.001500,0.249996,0,0);-ms-transform:matrix(0.258025,-0.001548,0.001500,0.249996,0,0);-webkit-transform:matrix(0.258025,-0.001548,0.001500,0.249996,0,0);}
.me5_c01086{transform:matrix(0.258045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258045,0.000000,0.000000,0.250000,0,0);}
.m9c_c01086{transform:matrix(0.258435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258435,0.000000,0.000000,0.250000,0,0);}
.m7b_c01086{transform:matrix(0.258485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258485,0.000000,0.000000,0.250000,0,0);}
.m5_c01086{transform:matrix(0.260050,-0.001560,0.001500,0.249996,0,0);-ms-transform:matrix(0.260050,-0.001560,0.001500,0.249996,0,0);-webkit-transform:matrix(0.260050,-0.001560,0.001500,0.249996,0,0);}
.m66_c01086{transform:matrix(0.260115,-0.001561,0.001500,0.249996,0,0);-ms-transform:matrix(0.260115,-0.001561,0.001500,0.249996,0,0);-webkit-transform:matrix(0.260115,-0.001561,0.001500,0.249996,0,0);}
.mfe_c01086{transform:matrix(0.260120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260120,0.000000,0.000000,0.250000,0,0);}
.m1a_c01086{transform:matrix(0.260185,-0.001561,0.001500,0.249996,0,0);-ms-transform:matrix(0.260185,-0.001561,0.001500,0.249996,0,0);-webkit-transform:matrix(0.260185,-0.001561,0.001500,0.249996,0,0);}
.mb0_c01086{transform:matrix(0.260955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260955,0.000000,0.000000,0.250000,0,0);}
.mbf_c01086{transform:matrix(0.261050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261050,0.000000,0.000000,0.250000,0,0);}
.m56_c01086{transform:matrix(0.261330,-0.001568,0.001500,0.249996,0,0);-ms-transform:matrix(0.261330,-0.001568,0.001500,0.249996,0,0);-webkit-transform:matrix(0.261330,-0.001568,0.001500,0.249996,0,0);}
.mf0_c01086{transform:matrix(0.262255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262255,0.000000,0.000000,0.250000,0,0);}
.m6b_c01086{transform:matrix(0.262880,-0.001577,0.001500,0.249996,0,0);-ms-transform:matrix(0.262880,-0.001577,0.001500,0.249996,0,0);-webkit-transform:matrix(0.262880,-0.001577,0.001500,0.249996,0,0);}
.m1b_c01086{transform:matrix(0.263535,-0.001581,0.001500,0.249996,0,0);-ms-transform:matrix(0.263535,-0.001581,0.001500,0.249996,0,0);-webkit-transform:matrix(0.263535,-0.001581,0.001500,0.249996,0,0);}
.m6e_c01086{transform:matrix(0.263580,-0.001581,0.001500,0.249996,0,0);-ms-transform:matrix(0.263580,-0.001581,0.001500,0.249996,0,0);-webkit-transform:matrix(0.263580,-0.001581,0.001500,0.249996,0,0);}
.m9f_c01086{transform:matrix(0.263780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263780,0.000000,0.000000,0.250000,0,0);}
.mb6_c01086{transform:matrix(0.263810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263810,0.000000,0.000000,0.250000,0,0);}
.m111_c01086{transform:matrix(0.264365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264365,0.000000,0.000000,0.250000,0,0);}
.m9b_c01086{transform:matrix(0.264980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264980,0.000000,0.000000,0.250000,0,0);}
.mdb_c01086{transform:matrix(0.265375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265375,0.000000,0.000000,0.250000,0,0);}
.me7_c01086{transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);}
.me9_c01086{transform:matrix(0.265810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265810,0.000000,0.000000,0.250000,0,0);}
.m102_c01086{transform:matrix(0.266985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266985,0.000000,0.000000,0.250000,0,0);}
.m115_c01086{transform:matrix(0.267160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267160,0.000000,0.000000,0.250000,0,0);}
.mf8_c01086{transform:matrix(0.267715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267715,0.000000,0.000000,0.250000,0,0);}
.m91_c01086{transform:matrix(0.267740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267740,0.000000,0.000000,0.250000,0,0);}
.m10e_c01086{transform:matrix(0.268690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268690,0.000000,0.000000,0.250000,0,0);}
.m116_c01086{transform:matrix(0.268805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268805,0.000000,0.000000,0.250000,0,0);}
.m112_c01086{transform:matrix(0.268965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268965,0.000000,0.000000,0.250000,0,0);}
.mc8_c01086{transform:matrix(0.269585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269585,0.000000,0.000000,0.250000,0,0);}
.mde_c01086{transform:matrix(0.269925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269925,0.000000,0.000000,0.250000,0,0);}
.mf5_c01086{transform:matrix(0.270515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270515,0.000000,0.000000,0.250000,0,0);}
.mfc_c01086{transform:matrix(0.271260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271260,0.000000,0.000000,0.250000,0,0);}
.m6d_c01086{transform:matrix(0.271295,-0.001628,0.001500,0.249996,0,0);-ms-transform:matrix(0.271295,-0.001628,0.001500,0.249996,0,0);-webkit-transform:matrix(0.271295,-0.001628,0.001500,0.249996,0,0);}
.mf7_c01086{transform:matrix(0.271405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271405,0.000000,0.000000,0.250000,0,0);}
.m1d_c01086{transform:matrix(0.272105,-0.001633,0.001500,0.249996,0,0);-ms-transform:matrix(0.272105,-0.001633,0.001500,0.249996,0,0);-webkit-transform:matrix(0.272105,-0.001633,0.001500,0.249996,0,0);}
.mc7_c01086{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m50_c01086{transform:matrix(0.273435,-0.001641,0.001500,0.249996,0,0);-ms-transform:matrix(0.273435,-0.001641,0.001500,0.249996,0,0);-webkit-transform:matrix(0.273435,-0.001641,0.001500,0.249996,0,0);}
.mba_c01086{transform:matrix(0.273450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273450,0.000000,0.000000,0.250000,0,0);}
.m9d_c01086{transform:matrix(0.273610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273610,0.000000,0.000000,0.250000,0,0);}
.mb1_c01086{transform:matrix(0.273865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273865,0.000000,0.000000,0.250000,0,0);}
.m18_c01086{transform:matrix(0.274525,-0.001647,0.001500,0.249996,0,0);-ms-transform:matrix(0.274525,-0.001647,0.001500,0.249996,0,0);-webkit-transform:matrix(0.274525,-0.001647,0.001500,0.249996,0,0);}
.m51_c01086{transform:matrix(0.275450,-0.001653,0.001500,0.249996,0,0);-ms-transform:matrix(0.275450,-0.001653,0.001500,0.249996,0,0);-webkit-transform:matrix(0.275450,-0.001653,0.001500,0.249996,0,0);}
.mcc_c01086{transform:matrix(0.275580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275580,0.000000,0.000000,0.250000,0,0);}
.m96_c01086{transform:matrix(0.275665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275665,0.000000,0.000000,0.250000,0,0);}
.mb4_c01086{transform:matrix(0.275875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275875,0.000000,0.000000,0.250000,0,0);}
.m3_c01086{transform:matrix(0.276035,-0.001656,0.001500,0.249996,0,0);-ms-transform:matrix(0.276035,-0.001656,0.001500,0.249996,0,0);-webkit-transform:matrix(0.276035,-0.001656,0.001500,0.249996,0,0);}
.mca_c01086{transform:matrix(0.276410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276410,0.000000,0.000000,0.250000,0,0);}
.meb_c01086{transform:matrix(0.276535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276535,0.000000,0.000000,0.250000,0,0);}
.mcd_c01086{transform:matrix(0.276720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276720,0.000000,0.000000,0.250000,0,0);}
.mdd_c01086{transform:matrix(0.276880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276880,0.000000,0.000000,0.250000,0,0);}
.m1e_c01086{transform:matrix(0.277550,-0.001665,0.001500,0.249996,0,0);-ms-transform:matrix(0.277550,-0.001665,0.001500,0.249996,0,0);-webkit-transform:matrix(0.277550,-0.001665,0.001500,0.249996,0,0);}
.m6a_c01086{transform:matrix(0.278230,-0.001669,0.001500,0.249996,0,0);-ms-transform:matrix(0.278230,-0.001669,0.001500,0.249996,0,0);-webkit-transform:matrix(0.278230,-0.001669,0.001500,0.249996,0,0);}
.ma1_c01086{transform:matrix(0.278280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278280,0.000000,0.000000,0.250000,0,0);}
.m2_c01086{transform:matrix(0.278910,-0.001673,0.001500,0.249996,0,0);-ms-transform:matrix(0.278910,-0.001673,0.001500,0.249996,0,0);-webkit-transform:matrix(0.278910,-0.001673,0.001500,0.249996,0,0);}
.me0_c01086{transform:matrix(0.279165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279165,0.000000,0.000000,0.250000,0,0);}
.m97_c01086{transform:matrix(0.279215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279215,0.000000,0.000000,0.250000,0,0);}
.mbc_c01086{transform:matrix(0.279480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279480,0.000000,0.000000,0.250000,0,0);}
.m53_c01086{transform:matrix(0.279885,-0.001679,0.001500,0.249996,0,0);-ms-transform:matrix(0.279885,-0.001679,0.001500,0.249996,0,0);-webkit-transform:matrix(0.279885,-0.001679,0.001500,0.249996,0,0);}
.mb7_c01086{transform:matrix(0.280205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280205,0.000000,0.000000,0.250000,0,0);}
.m94_c01086{transform:matrix(0.280505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280505,0.000000,0.000000,0.250000,0,0);}
.med_c01086{transform:matrix(0.280660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280660,0.000000,0.000000,0.250000,0,0);}
.mb3_c01086{transform:matrix(0.281950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281950,0.000000,0.000000,0.250000,0,0);}
.m20_c01086{transform:matrix(0.283815,-0.001703,0.001500,0.249996,0,0);-ms-transform:matrix(0.283815,-0.001703,0.001500,0.249996,0,0);-webkit-transform:matrix(0.283815,-0.001703,0.001500,0.249996,0,0);}
.me2_c01086{transform:matrix(0.284435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284435,0.000000,0.000000,0.250000,0,0);}
.mb9_c01086{transform:matrix(0.284745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284745,0.000000,0.000000,0.250000,0,0);}
.m95_c01086{transform:matrix(0.285505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285505,0.000000,0.000000,0.250000,0,0);}
.m100_c01086{transform:matrix(0.285980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285980,0.000000,0.000000,0.250000,0,0);}
.m67_c01086{transform:matrix(0.286460,-0.001719,0.001500,0.249996,0,0);-ms-transform:matrix(0.286460,-0.001719,0.001500,0.249996,0,0);-webkit-transform:matrix(0.286460,-0.001719,0.001500,0.249996,0,0);}
.m6_c01086{transform:matrix(0.287070,-0.001722,0.001500,0.249996,0,0);-ms-transform:matrix(0.287070,-0.001722,0.001500,0.249996,0,0);-webkit-transform:matrix(0.287070,-0.001722,0.001500,0.249996,0,0);}
.mbd_c01086{transform:matrix(0.290350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290350,0.000000,0.000000,0.250000,0,0);}
.mc_c01086{transform:matrix(0.290700,-0.001744,0.001500,0.249996,0,0);-ms-transform:matrix(0.290700,-0.001744,0.001500,0.249996,0,0);-webkit-transform:matrix(0.290700,-0.001744,0.001500,0.249996,0,0);}
.mbe_c01086{transform:matrix(0.295655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295655,0.000000,0.000000,0.250000,0,0);}
.m9_c01086{transform:matrix(0.296285,-0.001778,0.001500,0.249996,0,0);-ms-transform:matrix(0.296285,-0.001778,0.001500,0.249996,0,0);-webkit-transform:matrix(0.296285,-0.001778,0.001500,0.249996,0,0);}
.m8_c01086{transform:matrix(0.296890,-0.001781,0.001500,0.249996,0,0);-ms-transform:matrix(0.296890,-0.001781,0.001500,0.249996,0,0);-webkit-transform:matrix(0.296890,-0.001781,0.001500,0.249996,0,0);}
.mbb_c01086{transform:matrix(0.302195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302195,0.000000,0.000000,0.250000,0,0);}
.m4_c01086{transform:matrix(0.303265,-0.001820,0.001500,0.249996,0,0);-ms-transform:matrix(0.303265,-0.001820,0.001500,0.249996,0,0);-webkit-transform:matrix(0.303265,-0.001820,0.001500,0.249996,0,0);}
.mc0_c01086{transform:matrix(0.305125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305125,0.000000,0.000000,0.250000,0,0);}
.mc2_c01086{transform:matrix(0.310310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310310,0.000000,0.000000,0.250000,0,0);}
.m117_c01086{transform:matrix(0.311980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311980,0.000000,0.000000,0.250000,0,0);}
.m1_c01086{transform:matrix(0.320400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320400,0.000000,0.000000,0.250000,0,0);}
.mef_c01086{transform:matrix(0.325970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325970,0.000000,0.000000,0.250000,0,0);}
.mee_c01086{transform:matrix(0.350035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350035,0.000000,0.000000,0.250000,0,0);}
.m13b_c01086{transform:matrix(2.729170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.729170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.729170,0.000000,0.000000,0.250000,0,0);}
.v0_c01086{vertical-align:0.000000px;}
.ls0_c01086{letter-spacing:0.000000px;}
.sc__c01086{text-shadow:none;}
.sc0_c01086{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__c01086{-webkit-text-stroke:0px transparent;}
.sc0_c01086{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01086{word-spacing:0.000000px;}
.fc0_c01086{color:transparent;}
.fsd_c01086{font-size:24.000000px;}
.fsa_c01086{font-size:66.000000px;}
.fs1_c01086{font-size:66.001188px;}
.fs8_c01086{font-size:72.000000px;}
.fs3_c01086{font-size:72.001296px;}
.fs6_c01086{font-size:78.000000px;}
.fs4_c01086{font-size:78.001404px;}
.fs7_c01086{font-size:84.000000px;}
.fs2_c01086{font-size:84.001512px;}
.fs0_c01086{font-size:90.000000px;}
.fs5_c01086{font-size:90.001620px;}
.fsb_c01086{font-size:96.000000px;}
.fs9_c01086{font-size:102.000000px;}
.fsc_c01086{font-size:102.003264px;}
.fse_c01086{font-size:120.007260px;}
.y0_c01086{bottom:0.000000px;}
.yb0_c01086{bottom:58.052530px;}
.yaf_c01086{bottom:58.664416px;}
.yae_c01086{bottom:59.386242px;}
.yad_c01086{bottom:59.752542px;}
.yac_c01086{bottom:59.995092px;}
.yab_c01086{bottom:60.479202px;}
.yaa_c01086{bottom:60.847597px;}
.ya9_c01086{bottom:61.690962px;}
.ya8_c01086{bottom:62.549176px;}
.ya7_c01086{bottom:62.911500px;}
.ya6_c01086{bottom:93.960000px;}
.ya5_c01086{bottom:109.435356px;}
.ya4_c01086{bottom:109.787376px;}
.ya3_c01086{bottom:110.143812px;}
.ya2_c01086{bottom:110.856852px;}
.ya1_c01086{bottom:111.208956px;}
.ya0_c01086{bottom:111.396696px;}
.y9f_c01086{bottom:111.913392px;}
.y9e_c01086{bottom:112.182948px;}
.y9d_c01086{bottom:112.796628px;}
.y9c_c01086{bottom:113.070720px;}
.y9b_c01086{bottom:113.943612px;}
.y9a_c01086{bottom:114.211500px;}
.y99_c01086{bottom:146.863500px;}
.y98_c01086{bottom:147.054000px;}
.y97_c01086{bottom:147.678000px;}
.y96_c01086{bottom:148.738500px;}
.y95_c01086{bottom:148.920000px;}
.y94_c01086{bottom:149.620500px;}
.y93_c01086{bottom:150.318000px;}
.y92_c01086{bottom:151.119000px;}
.y91_c01086{bottom:151.375500px;}
.y90_c01086{bottom:151.735500px;}
.y8f_c01086{bottom:185.793000px;}
.y8e_c01086{bottom:220.543500px;}
.y8d_c01086{bottom:256.906500px;}
.y8c_c01086{bottom:257.175000px;}
.y8b_c01086{bottom:257.835000px;}
.y8a_c01086{bottom:258.501000px;}
.y89_c01086{bottom:258.640500px;}
.y88_c01086{bottom:259.299000px;}
.y87_c01086{bottom:259.564500px;}
.y86_c01086{bottom:259.761000px;}
.y85_c01086{bottom:260.086500px;}
.y84_c01086{bottom:260.229000px;}
.y83_c01086{bottom:260.548500px;}
.y82_c01086{bottom:293.346000px;}
.y81_c01086{bottom:330.208500px;}
.y80_c01086{bottom:364.006500px;}
.y7f_c01086{bottom:400.410000px;}
.y7e_c01086{bottom:437.005500px;}
.y7d_c01086{bottom:473.583000px;}
.y7c_c01086{bottom:507.946500px;}
.y7b_c01086{bottom:545.337000px;}
.y7a_c01086{bottom:581.175000px;}
.y79_c01086{bottom:615.724500px;}
.y78_c01086{bottom:652.183500px;}
.y77_c01086{bottom:686.880000px;}
.y76_c01086{bottom:723.820500px;}
.y6e_c01086{bottom:758.957727px;}
.y6c_c01086{bottom:758.957805px;}
.y6f_c01086{bottom:758.957838px;}
.y70_c01086{bottom:758.958000px;}
.y6d_c01086{bottom:758.958156px;}
.y71_c01086{bottom:758.958711px;}
.y74_c01086{bottom:758.958873px;}
.y75_c01086{bottom:758.958984px;}
.y72_c01086{bottom:758.959002px;}
.y73_c01086{bottom:758.959353px;}
.y6b_c01086{bottom:794.935998px;}
.y6a_c01086{bottom:794.936307px;}
.y62_c01086{bottom:794.936343px;}
.y66_c01086{bottom:794.936625px;}
.y69_c01086{bottom:794.936667px;}
.y63_c01086{bottom:794.936694px;}
.y67_c01086{bottom:794.936985px;}
.y61_c01086{bottom:794.937063px;}
.y68_c01086{bottom:794.937096px;}
.y64_c01086{bottom:794.937105px;}
.y65_c01086{bottom:794.937345px;}
.y56_c01086{bottom:831.320199px;}
.y58_c01086{bottom:831.320370px;}
.y60_c01086{bottom:831.320505px;}
.y55_c01086{bottom:831.320508px;}
.y59_c01086{bottom:831.320652px;}
.y57_c01086{bottom:831.320730px;}
.y5b_c01086{bottom:831.320823px;}
.y5f_c01086{bottom:831.320865px;}
.y5c_c01086{bottom:831.320943px;}
.y5a_c01086{bottom:831.321192px;}
.y5e_c01086{bottom:831.321225px;}
.y5d_c01086{bottom:831.321474px;}
.y4d_c01086{bottom:867.769695px;}
.y4e_c01086{bottom:867.769866px;}
.y4c_c01086{bottom:867.769884px;}
.y4b_c01086{bottom:867.770193px;}
.y4f_c01086{bottom:867.770577px;}
.y54_c01086{bottom:867.771090px;}
.y50_c01086{bottom:867.771168px;}
.y53_c01086{bottom:867.771339px;}
.y52_c01086{bottom:867.771579px;}
.y51_c01086{bottom:867.771759px;}
.y40_c01086{bottom:903.752109px;}
.y41_c01086{bottom:903.752529px;}
.y43_c01086{bottom:903.752751px;}
.y47_c01086{bottom:903.752835px;}
.y48_c01086{bottom:903.752955px;}
.y45_c01086{bottom:903.752973px;}
.y4a_c01086{bottom:903.752997px;}
.y42_c01086{bottom:903.753000px;}
.y46_c01086{bottom:903.753024px;}
.y44_c01086{bottom:903.753282px;}
.y49_c01086{bottom:903.753666px;}
.y36_c01086{bottom:938.511672px;}
.y37_c01086{bottom:938.944692px;}
.y38_c01086{bottom:939.384339px;}
.y39_c01086{bottom:939.883020px;}
.y3a_c01086{bottom:940.103898px;}
.y3b_c01086{bottom:940.380282px;}
.y3c_c01086{bottom:940.714512px;}
.y3d_c01086{bottom:940.879161px;}
.y3e_c01086{bottom:941.216634px;}
.y3f_c01086{bottom:941.656209px;}
.y2e_c01086{bottom:974.545209px;}
.y2d_c01086{bottom:974.545749px;}
.y2f_c01086{bottom:974.545860px;}
.y34_c01086{bottom:974.546064px;}
.y2c_c01086{bottom:974.546178px;}
.y35_c01086{bottom:974.546244px;}
.y30_c01086{bottom:974.546271px;}
.y2b_c01086{bottom:974.546307px;}
.y33_c01086{bottom:974.546313px;}
.y31_c01086{bottom:974.546562px;}
.y32_c01086{bottom:974.546682px;}
.y27_c01086{bottom:1009.961151px;}
.y2a_c01086{bottom:1009.961193px;}
.y29_c01086{bottom:1009.961202px;}
.y26_c01086{bottom:1009.961340px;}
.y28_c01086{bottom:1009.961442px;}
.y23_c01086{bottom:1009.961487px;}
.y25_c01086{bottom:1009.961529px;}
.y24_c01086{bottom:1009.962198px;}
.y22_c01086{bottom:1009.962216px;}
.y21_c01086{bottom:1009.962825px;}
.y20_c01086{bottom:1045.949778px;}
.y1a_c01086{bottom:1045.949994px;}
.y1f_c01086{bottom:1045.950198px;}
.y1e_c01086{bottom:1045.950327px;}
.y1b_c01086{bottom:1045.950345px;}
.y19_c01086{bottom:1045.950474px;}
.y1d_c01086{bottom:1045.950576px;}
.y1c_c01086{bottom:1045.951056px;}
.y18_c01086{bottom:1045.951203px;}
.y13_c01086{bottom:1081.029867px;}
.y16_c01086{bottom:1081.030209px;}
.y14_c01086{bottom:1081.030338px;}
.y12_c01086{bottom:1081.030356px;}
.y17_c01086{bottom:1081.030500px;}
.y15_c01086{bottom:1081.030569px;}
.y11_c01086{bottom:1081.030785px;}
.yf_c01086{bottom:1081.030863px;}
.yd_c01086{bottom:1081.030872px;}
.y10_c01086{bottom:1081.031274px;}
.ye_c01086{bottom:1081.031343px;}
.y2_c01086{bottom:1114.830000px;}
.y3_c01086{bottom:1115.157159px;}
.y4_c01086{bottom:1115.301501px;}
.y5_c01086{bottom:1116.030393px;}
.y6_c01086{bottom:1116.286452px;}
.y7_c01086{bottom:1116.691434px;}
.y8_c01086{bottom:1116.882621px;}
.y9_c01086{bottom:1117.550061px;}
.ya_c01086{bottom:1118.084643px;}
.yb_c01086{bottom:1118.285550px;}
.yc_c01086{bottom:1118.489643px;}
.y1_c01086{bottom:1192.473000px;}
.hf_c01086{height:24.000000px;}
.hc_c01086{height:66.000000px;}
.h3_c01086{height:66.001188px;}
.ha_c01086{height:72.000000px;}
.h5_c01086{height:72.001296px;}
.h8_c01086{height:78.000000px;}
.h6_c01086{height:78.001404px;}
.h9_c01086{height:84.000000px;}
.h4_c01086{height:84.001512px;}
.h2_c01086{height:90.000000px;}
.h7_c01086{height:90.001620px;}
.hd_c01086{height:96.000000px;}
.hb_c01086{height:102.000000px;}
.he_c01086{height:102.003264px;}
.h10_c01086{height:120.007260px;}
.h0_c01086{height:1246.320000px;}
.h1_c01086{height:1246.500000px;}
.w1_c01086{width:885.750000px;}
.w0_c01086{width:885.870000px;}
.x0_c01086{left:0.000000px;}
.x3_c01086{left:129.415500px;}
.xe_c01086{left:130.680333px;}
.x19_c01086{left:132.029352px;}
.x5a_c01086{left:133.650000px;}
.x84_c01086{left:134.730000px;}
.x7c_c01086{left:135.810000px;}
.xba_c01086{left:137.358000px;}
.xad_c01086{left:138.780000px;}
.x32_c01086{left:163.354641px;}
.x3f_c01086{left:164.976573px;}
.x7d_c01086{left:166.860000px;}
.x8f_c01086{left:168.750000px;}
.xc3_c01086{left:171.583500px;}
.x35_c01086{left:174.963447px;}
.x8a_c01086{left:180.360000px;}
.xbb_c01086{left:182.434500px;}
.x4_c01086{left:183.942000px;}
.xf_c01086{left:185.760813px;}
.x69_c01086{left:187.650000px;}
.xa5_c01086{left:189.750000px;}
.x20_c01086{left:196.833111px;}
.x52_c01086{left:198.450000px;}
.x5b_c01086{left:199.530000px;}
.x98_c01086{left:200.880000px;}
.xae_c01086{left:203.850000px;}
.x5_c01086{left:207.999000px;}
.x63_c01086{left:210.060000px;}
.x72_c01086{left:211.140000px;}
.xa6_c01086{left:213.502500px;}
.x10_c01086{left:218.431992px;}
.x37_c01086{left:220.324767px;}
.x78_c01086{left:232.200000px;}
.x5c_c01086{left:233.280000px;}
.xaf_c01086{left:235.710000px;}
.x44_c01086{left:243.009246px;}
.x7e_c01086{left:244.080000px;}
.x99_c01086{left:245.970000px;}
.xcb_c01086{left:249.055500px;}
.x1a_c01086{left:251.912172px;}
.x38_c01086{left:253.265955px;}
.x53_c01086{left:254.340000px;}
.x8b_c01086{left:255.690000px;}
.x21_c01086{left:262.713987px;}
.x4a_c01086{left:264.060000px;}
.xa0_c01086{left:267.300000px;}
.x26_c01086{left:274.053882px;}
.x6a_c01086{left:275.400000px;}
.x7f_c01086{left:276.750000px;}
.x85_c01086{left:278.370000px;}
.xc4_c01086{left:280.695000px;}
.x11_c01086{left:283.502832px;}
.x1b_c01086{left:284.583351px;}
.x54_c01086{left:286.740000px;}
.x90_c01086{left:288.900000px;}
.x27_c01086{left:296.464692px;}
.x9a_c01086{left:299.970000px;}
.xa1_c01086{left:301.050000px;}
.x2d_c01086{left:306.531012px;}
.x73_c01086{left:308.610000px;}
.xbc_c01086{left:314.655000px;}
.x22_c01086{left:318.334485px;}
.x5d_c01086{left:319.410000px;}
.x91_c01086{left:321.030000px;}
.xb0_c01086{left:324.810000px;}
.x6_c01086{left:329.481000px;}
.x45_c01086{left:331.030914px;}
.x86_c01086{left:332.100000px;}
.x1c_c01086{left:339.393822px;}
.x5e_c01086{left:341.820000px;}
.xa7_c01086{left:344.697000px;}
.x12_c01086{left:349.923726px;}
.x40_c01086{left:351.280278px;}
.x6b_c01086{left:353.700000px;}
.x9b_c01086{left:355.050000px;}
.xb1_c01086{left:356.940000px;}
.xcc_c01086{left:359.215500px;}
.x28_c01086{left:362.075550px;}
.x64_c01086{left:363.960000px;}
.x7_c01086{left:372.157500px;}
.x5f_c01086{left:375.030000px;}
.x80_c01086{left:377.190000px;}
.x41_c01086{left:385.841520px;}
.x79_c01086{left:386.910000px;}
.x92_c01086{left:387.990000px;}
.xc5_c01086{left:391.666500px;}
.x1_c01086{left:393.930000px;}
.x1d_c01086{left:395.014320px;}
.xbd_c01086{left:401.893500px;}
.xcd_c01086{left:403.225500px;}
.x13_c01086{left:406.354260px;}
.x55_c01086{left:408.510000px;}
.x8c_c01086{left:410.940000px;}
.xb2_c01086{left:413.100000px;}
.x2_c01086{left:416.340000px;}
.x33_c01086{left:418.239312px;}
.x39_c01086{left:419.318931px;}
.xc6_c01086{left:425.361000px;}
.x1e_c01086{left:427.685499px;}
.x4b_c01086{left:430.110000px;}
.x6c_c01086{left:431.730000px;}
.x8_c01086{left:439.654500px;}
.xb3_c01086{left:446.040000px;}
.x2e_c01086{left:450.458376px;}
.x56_c01086{left:451.710000px;}
.x65_c01086{left:453.330000px;}
.x9c_c01086{left:454.950000px;}
.xce_c01086{left:458.575500px;}
.x46_c01086{left:463.062666px;}
.x81_c01086{left:464.670000px;}
.x9_c01086{left:471.519000px;}
.x4c_c01086{left:474.660000px;}
.x87_c01086{left:476.010000px;}
.xa2_c01086{left:477.360000px;}
.xb4_c01086{left:480.060000px;}
.x60_c01086{left:486.270000px;}
.x93_c01086{left:487.350000px;}
.xbe_c01086{left:489.402000px;}
.x34_c01086{left:495.190584px;}
.x82_c01086{left:497.880000px;}
.x29_c01086{left:505.447707px;}
.x14_c01086{left:506.526369px;}
.x42_c01086{left:507.614403px;}
.x88_c01086{left:510.030000px;}
.xbf_c01086{left:512.052000px;}
.xc7_c01086{left:513.415500px;}
.x3a_c01086{left:517.600968px;}
.x47_c01086{left:518.683164px;}
.x8d_c01086{left:519.750000px;}
.xcf_c01086{left:524.196000px;}
.x1f_c01086{left:528.397626px;}
.x61_c01086{left:530.280000px;}
.x94_c01086{left:531.360000px;}
.xa9_c01086{left:532.980000px;}
.x2a_c01086{left:539.468931px;}
.x6d_c01086{left:541.620000px;}
.x3b_c01086{left:551.622192px;}
.xb5_c01086{left:556.740000px;}
.x15_c01086{left:561.606849px;}
.x48_c01086{left:563.233266px;}
.x74_c01086{left:564.300000px;}
.x2f_c01086{left:572.478105px;}
.x4d_c01086{left:573.480000px;}
.x6e_c01086{left:575.370000px;}
.x9d_c01086{left:576.450000px;}
.xd0_c01086{left:579.822000px;}
.xa_c01086{left:582.759000px;}
.x43_c01086{left:584.295666px;}
.x66_c01086{left:585.630000px;}
.xa3_c01086{left:586.710000px;}
.xa8_c01086{left:588.484500px;}
.xb6_c01086{left:601.560000px;}
.x30_c01086{left:605.419803px;}
.x4e_c01086{left:607.230000px;}
.x83_c01086{left:608.580000px;}
.x23_c01086{left:616.420722px;}
.x49_c01086{left:618.043737px;}
.x67_c01086{left:619.110000px;}
.xaa_c01086{left:621.270000px;}
.x57_c01086{left:630.180000px;}
.x95_c01086{left:631.800000px;}
.x36_c01086{left:638.292615px;}
.x4f_c01086{left:640.710000px;}
.x75_c01086{left:641.790000px;}
.xc0_c01086{left:644.632500px;}
.xc8_c01086{left:646.558500px;}
.x6f_c01086{left:648.810000px;}
.x16_c01086{left:649.898526px;}
.xab_c01086{left:655.830000px;}
.x24_c01086{left:660.970824px;}
.x3c_c01086{left:664.214742px;}
.xb7_c01086{left:666.900000px;}
.xb_c01086{left:671.856000px;}
.x31_c01086{left:672.915708px;}
.x50_c01086{left:673.920000px;}
.x76_c01086{left:675.000000px;}
.x89_c01086{left:676.080000px;}
.x17_c01086{left:682.839714px;}
.x70_c01086{left:684.990000px;}
.x7a_c01086{left:686.070000px;}
.xc9_c01086{left:691.113000px;}
.x25_c01086{left:694.182021px;}
.x8e_c01086{left:698.220000px;}
.xc_c01086{left:705.340500px;}
.xb8_c01086{left:712.260000px;}
.x3d_c01086{left:717.675168px;}
.x7b_c01086{left:719.280000px;}
.x9e_c01086{left:720.360000px;}
.xc1_c01086{left:722.692500px;}
.x2b_c01086{left:727.122690px;}
.x58_c01086{left:730.350000px;}
.xca_c01086{left:735.115500px;}
.xd_c01086{left:739.356000px;}
.x51_c01086{left:741.150000px;}
.xa4_c01086{left:743.580000px;}
.xb9_c01086{left:744.930000px;}
.xc2_c01086{left:746.442000px;}
.x2c_c01086{left:751.153554px;}
.x18_c01086{left:761.141031px;}
.x59_c01086{left:762.750000px;}
.x62_c01086{left:774.090000px;}
.x77_c01086{left:775.440000px;}
.x9f_c01086{left:776.790000px;}
.x3e_c01086{left:783.557544px;}
.x71_c01086{left:786.240000px;}
.x96_c01086{left:787.860000px;}
.xac_c01086{left:789.210000px;}
.x68_c01086{left:797.580000px;}
.x97_c01086{left:814.320000px;}
@media print{
.v0_c01086{vertical-align:0.000000pt;}
.ls0_c01086{letter-spacing:0.000000pt;}
.ws0_c01086{word-spacing:0.000000pt;}
.fsd_c01086{font-size:21.333333pt;}
.fsa_c01086{font-size:58.666667pt;}
.fs1_c01086{font-size:58.667723pt;}
.fs8_c01086{font-size:64.000000pt;}
.fs3_c01086{font-size:64.001152pt;}
.fs6_c01086{font-size:69.333333pt;}
.fs4_c01086{font-size:69.334581pt;}
.fs7_c01086{font-size:74.666667pt;}
.fs2_c01086{font-size:74.668011pt;}
.fs0_c01086{font-size:80.000000pt;}
.fs5_c01086{font-size:80.001440pt;}
.fsb_c01086{font-size:85.333333pt;}
.fs9_c01086{font-size:90.666667pt;}
.fsc_c01086{font-size:90.669568pt;}
.fse_c01086{font-size:106.673120pt;}
.y0_c01086{bottom:0.000000pt;}
.yb0_c01086{bottom:51.602249pt;}
.yaf_c01086{bottom:52.146148pt;}
.yae_c01086{bottom:52.787771pt;}
.yad_c01086{bottom:53.113371pt;}
.yac_c01086{bottom:53.328971pt;}
.yab_c01086{bottom:53.759291pt;}
.yaa_c01086{bottom:54.086753pt;}
.ya9_c01086{bottom:54.836411pt;}
.ya8_c01086{bottom:55.599268pt;}
.ya7_c01086{bottom:55.921333pt;}
.ya6_c01086{bottom:83.520000pt;}
.ya5_c01086{bottom:97.275872pt;}
.ya4_c01086{bottom:97.588779pt;}
.ya3_c01086{bottom:97.905611pt;}
.ya2_c01086{bottom:98.539424pt;}
.ya1_c01086{bottom:98.852405pt;}
.ya0_c01086{bottom:99.019285pt;}
.y9f_c01086{bottom:99.478571pt;}
.y9e_c01086{bottom:99.718176pt;}
.y9d_c01086{bottom:100.263669pt;}
.y9c_c01086{bottom:100.507307pt;}
.y9b_c01086{bottom:101.283211pt;}
.y9a_c01086{bottom:101.521333pt;}
.y99_c01086{bottom:130.545333pt;}
.y98_c01086{bottom:130.714667pt;}
.y97_c01086{bottom:131.269333pt;}
.y96_c01086{bottom:132.212000pt;}
.y95_c01086{bottom:132.373333pt;}
.y94_c01086{bottom:132.996000pt;}
.y93_c01086{bottom:133.616000pt;}
.y92_c01086{bottom:134.328000pt;}
.y91_c01086{bottom:134.556000pt;}
.y90_c01086{bottom:134.876000pt;}
.y8f_c01086{bottom:165.149333pt;}
.y8e_c01086{bottom:196.038667pt;}
.y8d_c01086{bottom:228.361333pt;}
.y8c_c01086{bottom:228.600000pt;}
.y8b_c01086{bottom:229.186667pt;}
.y8a_c01086{bottom:229.778667pt;}
.y89_c01086{bottom:229.902667pt;}
.y88_c01086{bottom:230.488000pt;}
.y87_c01086{bottom:230.724000pt;}
.y86_c01086{bottom:230.898667pt;}
.y85_c01086{bottom:231.188000pt;}
.y84_c01086{bottom:231.314667pt;}
.y83_c01086{bottom:231.598667pt;}
.y82_c01086{bottom:260.752000pt;}
.y81_c01086{bottom:293.518667pt;}
.y80_c01086{bottom:323.561333pt;}
.y7f_c01086{bottom:355.920000pt;}
.y7e_c01086{bottom:388.449333pt;}
.y7d_c01086{bottom:420.962667pt;}
.y7c_c01086{bottom:451.508000pt;}
.y7b_c01086{bottom:484.744000pt;}
.y7a_c01086{bottom:516.600000pt;}
.y79_c01086{bottom:547.310667pt;}
.y78_c01086{bottom:579.718667pt;}
.y77_c01086{bottom:610.560000pt;}
.y76_c01086{bottom:643.396000pt;}
.y6e_c01086{bottom:674.629091pt;}
.y6c_c01086{bottom:674.629160pt;}
.y6f_c01086{bottom:674.629189pt;}
.y70_c01086{bottom:674.629333pt;}
.y6d_c01086{bottom:674.629472pt;}
.y71_c01086{bottom:674.629965pt;}
.y74_c01086{bottom:674.630109pt;}
.y75_c01086{bottom:674.630208pt;}
.y72_c01086{bottom:674.630224pt;}
.y73_c01086{bottom:674.630536pt;}
.y6b_c01086{bottom:706.609776pt;}
.y6a_c01086{bottom:706.610051pt;}
.y62_c01086{bottom:706.610083pt;}
.y66_c01086{bottom:706.610333pt;}
.y69_c01086{bottom:706.610371pt;}
.y63_c01086{bottom:706.610395pt;}
.y67_c01086{bottom:706.610653pt;}
.y61_c01086{bottom:706.610723pt;}
.y68_c01086{bottom:706.610752pt;}
.y64_c01086{bottom:706.610760pt;}
.y65_c01086{bottom:706.610973pt;}
.y56_c01086{bottom:738.951288pt;}
.y58_c01086{bottom:738.951440pt;}
.y60_c01086{bottom:738.951560pt;}
.y55_c01086{bottom:738.951563pt;}
.y59_c01086{bottom:738.951691pt;}
.y57_c01086{bottom:738.951760pt;}
.y5b_c01086{bottom:738.951843pt;}
.y5f_c01086{bottom:738.951880pt;}
.y5c_c01086{bottom:738.951949pt;}
.y5a_c01086{bottom:738.952171pt;}
.y5e_c01086{bottom:738.952200pt;}
.y5d_c01086{bottom:738.952421pt;}
.y4d_c01086{bottom:771.350840pt;}
.y4e_c01086{bottom:771.350992pt;}
.y4c_c01086{bottom:771.351008pt;}
.y4b_c01086{bottom:771.351283pt;}
.y4f_c01086{bottom:771.351624pt;}
.y54_c01086{bottom:771.352080pt;}
.y50_c01086{bottom:771.352149pt;}
.y53_c01086{bottom:771.352301pt;}
.y52_c01086{bottom:771.352515pt;}
.y51_c01086{bottom:771.352675pt;}
.y40_c01086{bottom:803.335208pt;}
.y41_c01086{bottom:803.335581pt;}
.y43_c01086{bottom:803.335779pt;}
.y47_c01086{bottom:803.335853pt;}
.y48_c01086{bottom:803.335960pt;}
.y45_c01086{bottom:803.335976pt;}
.y4a_c01086{bottom:803.335997pt;}
.y42_c01086{bottom:803.336000pt;}
.y46_c01086{bottom:803.336021pt;}
.y44_c01086{bottom:803.336251pt;}
.y49_c01086{bottom:803.336592pt;}
.y36_c01086{bottom:834.232597pt;}
.y37_c01086{bottom:834.617504pt;}
.y38_c01086{bottom:835.008301pt;}
.y39_c01086{bottom:835.451573pt;}
.y3a_c01086{bottom:835.647909pt;}
.y3b_c01086{bottom:835.893584pt;}
.y3c_c01086{bottom:836.190677pt;}
.y3d_c01086{bottom:836.337032pt;}
.y3e_c01086{bottom:836.637008pt;}
.y3f_c01086{bottom:837.027741pt;}
.y2e_c01086{bottom:866.262408pt;}
.y2d_c01086{bottom:866.262888pt;}
.y2f_c01086{bottom:866.262987pt;}
.y34_c01086{bottom:866.263168pt;}
.y2c_c01086{bottom:866.263269pt;}
.y35_c01086{bottom:866.263328pt;}
.y30_c01086{bottom:866.263352pt;}
.y2b_c01086{bottom:866.263384pt;}
.y33_c01086{bottom:866.263389pt;}
.y31_c01086{bottom:866.263611pt;}
.y32_c01086{bottom:866.263717pt;}
.y27_c01086{bottom:897.743245pt;}
.y2a_c01086{bottom:897.743283pt;}
.y29_c01086{bottom:897.743291pt;}
.y26_c01086{bottom:897.743413pt;}
.y28_c01086{bottom:897.743504pt;}
.y23_c01086{bottom:897.743544pt;}
.y25_c01086{bottom:897.743581pt;}
.y24_c01086{bottom:897.744176pt;}
.y22_c01086{bottom:897.744192pt;}
.y21_c01086{bottom:897.744733pt;}
.y20_c01086{bottom:929.733136pt;}
.y1a_c01086{bottom:929.733328pt;}
.y1f_c01086{bottom:929.733509pt;}
.y1e_c01086{bottom:929.733624pt;}
.y1b_c01086{bottom:929.733640pt;}
.y19_c01086{bottom:929.733755pt;}
.y1d_c01086{bottom:929.733845pt;}
.y1c_c01086{bottom:929.734272pt;}
.y18_c01086{bottom:929.734403pt;}
.y13_c01086{bottom:960.915437pt;}
.y16_c01086{bottom:960.915741pt;}
.y14_c01086{bottom:960.915856pt;}
.y12_c01086{bottom:960.915872pt;}
.y17_c01086{bottom:960.916000pt;}
.y15_c01086{bottom:960.916061pt;}
.y11_c01086{bottom:960.916253pt;}
.yf_c01086{bottom:960.916323pt;}
.yd_c01086{bottom:960.916331pt;}
.y10_c01086{bottom:960.916688pt;}
.ye_c01086{bottom:960.916749pt;}
.y2_c01086{bottom:990.960000pt;}
.y3_c01086{bottom:991.250808pt;}
.y4_c01086{bottom:991.379112pt;}
.y5_c01086{bottom:992.027016pt;}
.y6_c01086{bottom:992.254624pt;}
.y7_c01086{bottom:992.614608pt;}
.y8_c01086{bottom:992.784552pt;}
.y9_c01086{bottom:993.377832pt;}
.ya_c01086{bottom:993.853016pt;}
.yb_c01086{bottom:994.031600pt;}
.yc_c01086{bottom:994.213016pt;}
.y1_c01086{bottom:1059.976000pt;}
.hf_c01086{height:21.333333pt;}
.hc_c01086{height:58.666667pt;}
.h3_c01086{height:58.667723pt;}
.ha_c01086{height:64.000000pt;}
.h5_c01086{height:64.001152pt;}
.h8_c01086{height:69.333333pt;}
.h6_c01086{height:69.334581pt;}
.h9_c01086{height:74.666667pt;}
.h4_c01086{height:74.668011pt;}
.h2_c01086{height:80.000000pt;}
.h7_c01086{height:80.001440pt;}
.hd_c01086{height:85.333333pt;}
.hb_c01086{height:90.666667pt;}
.he_c01086{height:90.669568pt;}
.h10_c01086{height:106.673120pt;}
.h0_c01086{height:1107.840000pt;}
.h1_c01086{height:1108.000000pt;}
.w1_c01086{width:787.333333pt;}
.w0_c01086{width:787.440000pt;}
.x0_c01086{left:0.000000pt;}
.x3_c01086{left:115.036000pt;}
.xe_c01086{left:116.160296pt;}
.x19_c01086{left:117.359424pt;}
.x5a_c01086{left:118.800000pt;}
.x84_c01086{left:119.760000pt;}
.x7c_c01086{left:120.720000pt;}
.xba_c01086{left:122.096000pt;}
.xad_c01086{left:123.360000pt;}
.x32_c01086{left:145.204125pt;}
.x3f_c01086{left:146.645843pt;}
.x7d_c01086{left:148.320000pt;}
.x8f_c01086{left:150.000000pt;}
.xc3_c01086{left:152.518667pt;}
.x35_c01086{left:155.523064pt;}
.x8a_c01086{left:160.320000pt;}
.xbb_c01086{left:162.164000pt;}
.x4_c01086{left:163.504000pt;}
.xf_c01086{left:165.120723pt;}
.x69_c01086{left:166.800000pt;}
.xa5_c01086{left:168.666667pt;}
.x20_c01086{left:174.962765pt;}
.x52_c01086{left:176.400000pt;}
.x5b_c01086{left:177.360000pt;}
.x98_c01086{left:178.560000pt;}
.xae_c01086{left:181.200000pt;}
.x5_c01086{left:184.888000pt;}
.x63_c01086{left:186.720000pt;}
.x72_c01086{left:187.680000pt;}
.xa6_c01086{left:189.780000pt;}
.x10_c01086{left:194.161771pt;}
.x37_c01086{left:195.844237pt;}
.x78_c01086{left:206.400000pt;}
.x5c_c01086{left:207.360000pt;}
.xaf_c01086{left:209.520000pt;}
.x44_c01086{left:216.008219pt;}
.x7e_c01086{left:216.960000pt;}
.x99_c01086{left:218.640000pt;}
.xcb_c01086{left:221.382667pt;}
.x1a_c01086{left:223.921931pt;}
.x38_c01086{left:225.125293pt;}
.x53_c01086{left:226.080000pt;}
.x8b_c01086{left:227.280000pt;}
.x21_c01086{left:233.523544pt;}
.x4a_c01086{left:234.720000pt;}
.xa0_c01086{left:237.600000pt;}
.x26_c01086{left:243.603451pt;}
.x6a_c01086{left:244.800000pt;}
.x7f_c01086{left:246.000000pt;}
.x85_c01086{left:247.440000pt;}
.xc4_c01086{left:249.506667pt;}
.x11_c01086{left:252.002517pt;}
.x1b_c01086{left:252.962979pt;}
.x54_c01086{left:254.880000pt;}
.x90_c01086{left:256.800000pt;}
.x27_c01086{left:263.524171pt;}
.x9a_c01086{left:266.640000pt;}
.xa1_c01086{left:267.600000pt;}
.x2d_c01086{left:272.472011pt;}
.x73_c01086{left:274.320000pt;}
.xbc_c01086{left:279.693333pt;}
.x22_c01086{left:282.963987pt;}
.x5d_c01086{left:283.920000pt;}
.x91_c01086{left:285.360000pt;}
.xb0_c01086{left:288.720000pt;}
.x6_c01086{left:292.872000pt;}
.x45_c01086{left:294.249701pt;}
.x86_c01086{left:295.200000pt;}
.x1c_c01086{left:301.683397pt;}
.x5e_c01086{left:303.840000pt;}
.xa7_c01086{left:306.397333pt;}
.x12_c01086{left:311.043312pt;}
.x40_c01086{left:312.249136pt;}
.x6b_c01086{left:314.400000pt;}
.x9b_c01086{left:315.600000pt;}
.xb1_c01086{left:317.280000pt;}
.xcc_c01086{left:319.302667pt;}
.x28_c01086{left:321.844933pt;}
.x64_c01086{left:323.520000pt;}
.x7_c01086{left:330.806667pt;}
.x5f_c01086{left:333.360000pt;}
.x80_c01086{left:335.280000pt;}
.x41_c01086{left:342.970240pt;}
.x79_c01086{left:343.920000pt;}
.x92_c01086{left:344.880000pt;}
.xc5_c01086{left:348.148000pt;}
.x1_c01086{left:350.160000pt;}
.x1d_c01086{left:351.123840pt;}
.xbd_c01086{left:357.238667pt;}
.xcd_c01086{left:358.422667pt;}
.x13_c01086{left:361.203787pt;}
.x55_c01086{left:363.120000pt;}
.x8c_c01086{left:365.280000pt;}
.xb2_c01086{left:367.200000pt;}
.x2_c01086{left:370.080000pt;}
.x33_c01086{left:371.768277pt;}
.x39_c01086{left:372.727939pt;}
.xc6_c01086{left:378.098667pt;}
.x1e_c01086{left:380.164888pt;}
.x4b_c01086{left:382.320000pt;}
.x6c_c01086{left:383.760000pt;}
.x8_c01086{left:390.804000pt;}
.xb3_c01086{left:396.480000pt;}
.x2e_c01086{left:400.407445pt;}
.x56_c01086{left:401.520000pt;}
.x65_c01086{left:402.960000pt;}
.x9c_c01086{left:404.400000pt;}
.xce_c01086{left:407.622667pt;}
.x46_c01086{left:411.611259pt;}
.x81_c01086{left:413.040000pt;}
.x9_c01086{left:419.128000pt;}
.x4c_c01086{left:421.920000pt;}
.x87_c01086{left:423.120000pt;}
.xa2_c01086{left:424.320000pt;}
.xb4_c01086{left:426.720000pt;}
.x60_c01086{left:432.240000pt;}
.x93_c01086{left:433.200000pt;}
.xbe_c01086{left:435.024000pt;}
.x34_c01086{left:440.169408pt;}
.x82_c01086{left:442.560000pt;}
.x29_c01086{left:449.286851pt;}
.x14_c01086{left:450.245661pt;}
.x42_c01086{left:451.212803pt;}
.x88_c01086{left:453.360000pt;}
.xbf_c01086{left:455.157333pt;}
.xc7_c01086{left:456.369333pt;}
.x3a_c01086{left:460.089749pt;}
.x47_c01086{left:461.051701pt;}
.x8d_c01086{left:462.000000pt;}
.xcf_c01086{left:465.952000pt;}
.x1f_c01086{left:469.686779pt;}
.x61_c01086{left:471.360000pt;}
.x94_c01086{left:472.320000pt;}
.xa9_c01086{left:473.760000pt;}
.x2a_c01086{left:479.527939pt;}
.x6d_c01086{left:481.440000pt;}
.x3b_c01086{left:490.330837pt;}
.xb5_c01086{left:494.880000pt;}
.x15_c01086{left:499.206088pt;}
.x48_c01086{left:500.651792pt;}
.x74_c01086{left:501.600000pt;}
.x2f_c01086{left:508.869427pt;}
.x4d_c01086{left:509.760000pt;}
.x6e_c01086{left:511.440000pt;}
.x9d_c01086{left:512.400000pt;}
.xd0_c01086{left:515.397333pt;}
.xa_c01086{left:518.008000pt;}
.x43_c01086{left:519.373925pt;}
.x66_c01086{left:520.560000pt;}
.xa3_c01086{left:521.520000pt;}
.xa8_c01086{left:523.097333pt;}
.xb6_c01086{left:534.720000pt;}
.x30_c01086{left:538.150936pt;}
.x4e_c01086{left:539.760000pt;}
.x83_c01086{left:540.960000pt;}
.x23_c01086{left:547.929531pt;}
.x49_c01086{left:549.372211pt;}
.x67_c01086{left:550.320000pt;}
.xaa_c01086{left:552.240000pt;}
.x57_c01086{left:560.160000pt;}
.x95_c01086{left:561.600000pt;}
.x36_c01086{left:567.371213pt;}
.x4f_c01086{left:569.520000pt;}
.x75_c01086{left:570.480000pt;}
.xc0_c01086{left:573.006667pt;}
.xc8_c01086{left:574.718667pt;}
.x6f_c01086{left:576.720000pt;}
.x16_c01086{left:577.687579pt;}
.xab_c01086{left:582.960000pt;}
.x24_c01086{left:587.529621pt;}
.x3c_c01086{left:590.413104pt;}
.xb7_c01086{left:592.800000pt;}
.xb_c01086{left:597.205333pt;}
.x31_c01086{left:598.147296pt;}
.x50_c01086{left:599.040000pt;}
.x76_c01086{left:600.000000pt;}
.x89_c01086{left:600.960000pt;}
.x17_c01086{left:606.968635pt;}
.x70_c01086{left:608.880000pt;}
.x7a_c01086{left:609.840000pt;}
.xc9_c01086{left:614.322667pt;}
.x25_c01086{left:617.050685pt;}
.x8e_c01086{left:620.640000pt;}
.xc_c01086{left:626.969333pt;}
.xb8_c01086{left:633.120000pt;}
.x3d_c01086{left:637.933483pt;}
.x7b_c01086{left:639.360000pt;}
.x9e_c01086{left:640.320000pt;}
.xc1_c01086{left:642.393333pt;}
.x2b_c01086{left:646.331280pt;}
.x58_c01086{left:649.200000pt;}
.xca_c01086{left:653.436000pt;}
.xd_c01086{left:657.205333pt;}
.x51_c01086{left:658.800000pt;}
.xa4_c01086{left:660.960000pt;}
.xb9_c01086{left:662.160000pt;}
.xc2_c01086{left:663.504000pt;}
.x2c_c01086{left:667.692048pt;}
.x18_c01086{left:676.569805pt;}
.x59_c01086{left:678.000000pt;}
.x62_c01086{left:688.080000pt;}
.x77_c01086{left:689.280000pt;}
.x9f_c01086{left:690.480000pt;}
.x3e_c01086{left:696.495595pt;}
.x71_c01086{left:698.880000pt;}
.x96_c01086{left:700.320000pt;}
.xac_c01086{left:701.520000pt;}
.x68_c01086{left:708.960000pt;}
.x97_c01086{left:723.840000pt;}
}





/* 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_c01087 {
    display:none;
  }
  .loading-indicator_c01087.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01087 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_c01087 { 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_c01087" -> "#page-container .classname_c01087")
 */
.pf_c01087 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01087 { /* 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_c01087.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01087 { /* 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_c01087 { /* 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_c01087 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01087 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01087 {overflow:visible;}
  }
}
.c_c01087 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01087 { /* 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_c01087:after { /* webkit #35443 */
  content: '';
}
.t_c01087:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01087 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 */
}
.__c01087 { /* 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_c01087 { /* info for Javascript */
  display:none;
}
.l_c01087 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01087 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01087 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01087: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_c01087 {
    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_c01087.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01087.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_c01087 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01087{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01087;src:url('chunks/assets/font_132af6d682320e9b248f68cf.woff2')format("woff");}.ff1_c01087{font-family:ff1_c01087;line-height:1.000000;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;}
.m37_c01087{transform:matrix(0.036152,-0.001411,0.009752,0.249810,0,0);-ms-transform:matrix(0.036152,-0.001411,0.009752,0.249810,0,0);-webkit-transform:matrix(0.036152,-0.001411,0.009752,0.249810,0,0);}
.m0_c01087{transform:matrix(0.079377,-0.001111,0.003500,0.249976,0,0);-ms-transform:matrix(0.079377,-0.001111,0.003500,0.249976,0,0);-webkit-transform:matrix(0.079377,-0.001111,0.003500,0.249976,0,0);}
.m34_c01087{transform:matrix(0.135572,-0.005293,0.009752,0.249810,0,0);-ms-transform:matrix(0.135572,-0.005293,0.009752,0.249810,0,0);-webkit-transform:matrix(0.135572,-0.005293,0.009752,0.249810,0,0);}
.m33_c01087{transform:matrix(0.166793,-0.006511,0.009752,0.249810,0,0);-ms-transform:matrix(0.166793,-0.006511,0.009752,0.249810,0,0);-webkit-transform:matrix(0.166793,-0.006511,0.009752,0.249810,0,0);}
.me_c01087{transform:matrix(0.167439,-0.002344,0.003500,0.249976,0,0);-ms-transform:matrix(0.167439,-0.002344,0.003500,0.249976,0,0);-webkit-transform:matrix(0.167439,-0.002344,0.003500,0.249976,0,0);}
.ma_c01087{transform:matrix(0.176868,-0.002476,0.003500,0.249976,0,0);-ms-transform:matrix(0.176868,-0.002476,0.003500,0.249976,0,0);-webkit-transform:matrix(0.176868,-0.002476,0.003500,0.249976,0,0);}
.m1e_c01087{transform:matrix(0.193520,-0.001935,0.002500,0.249988,0,0);-ms-transform:matrix(0.193520,-0.001935,0.002500,0.249988,0,0);-webkit-transform:matrix(0.193520,-0.001935,0.002500,0.249988,0,0);}
.m22_c01087{transform:matrix(0.198810,-0.001988,0.002500,0.249988,0,0);-ms-transform:matrix(0.198810,-0.001988,0.002500,0.249988,0,0);-webkit-transform:matrix(0.198810,-0.001988,0.002500,0.249988,0,0);}
.m24_c01087{transform:matrix(0.210864,-0.008232,0.009752,0.249810,0,0);-ms-transform:matrix(0.210864,-0.008232,0.009752,0.249810,0,0);-webkit-transform:matrix(0.210864,-0.008232,0.009752,0.249810,0,0);}
.m31_c01087{transform:matrix(0.212793,-0.008307,0.009752,0.249810,0,0);-ms-transform:matrix(0.212793,-0.008307,0.009752,0.249810,0,0);-webkit-transform:matrix(0.212793,-0.008307,0.009752,0.249810,0,0);}
.m4_c01087{transform:matrix(0.214834,-0.003008,0.003500,0.249976,0,0);-ms-transform:matrix(0.214834,-0.003008,0.003500,0.249976,0,0);-webkit-transform:matrix(0.214834,-0.003008,0.003500,0.249976,0,0);}
.m32_c01087{transform:matrix(0.215666,-0.008419,0.009752,0.249810,0,0);-ms-transform:matrix(0.215666,-0.008419,0.009752,0.249810,0,0);-webkit-transform:matrix(0.215666,-0.008419,0.009752,0.249810,0,0);}
.md_c01087{transform:matrix(0.219633,-0.003075,0.003500,0.249976,0,0);-ms-transform:matrix(0.219633,-0.003075,0.003500,0.249976,0,0);-webkit-transform:matrix(0.219633,-0.003075,0.003500,0.249976,0,0);}
.m18_c01087{transform:matrix(0.222939,-0.002229,0.002500,0.249988,0,0);-ms-transform:matrix(0.222939,-0.002229,0.002500,0.249988,0,0);-webkit-transform:matrix(0.222939,-0.002229,0.002500,0.249988,0,0);}
.mb_c01087{transform:matrix(0.224173,-0.003138,0.003500,0.249976,0,0);-ms-transform:matrix(0.224173,-0.003138,0.003500,0.249976,0,0);-webkit-transform:matrix(0.224173,-0.003138,0.003500,0.249976,0,0);}
.m2e_c01087{transform:matrix(0.225358,-0.008798,0.009752,0.249810,0,0);-ms-transform:matrix(0.225358,-0.008798,0.009752,0.249810,0,0);-webkit-transform:matrix(0.225358,-0.008798,0.009752,0.249810,0,0);}
.m36_c01087{transform:matrix(0.225568,-0.008806,0.009752,0.249810,0,0);-ms-transform:matrix(0.225568,-0.008806,0.009752,0.249810,0,0);-webkit-transform:matrix(0.225568,-0.008806,0.009752,0.249810,0,0);}
.m1f_c01087{transform:matrix(0.226379,-0.002264,0.002500,0.249988,0,0);-ms-transform:matrix(0.226379,-0.002264,0.002500,0.249988,0,0);-webkit-transform:matrix(0.226379,-0.002264,0.002500,0.249988,0,0);}
.m6_c01087{transform:matrix(0.235392,-0.003295,0.003500,0.249976,0,0);-ms-transform:matrix(0.235392,-0.003295,0.003500,0.249976,0,0);-webkit-transform:matrix(0.235392,-0.003295,0.003500,0.249976,0,0);}
.m2d_c01087{transform:matrix(0.236945,-0.009250,0.009752,0.249810,0,0);-ms-transform:matrix(0.236945,-0.009250,0.009752,0.249810,0,0);-webkit-transform:matrix(0.236945,-0.009250,0.009752,0.249810,0,0);}
.m1b_c01087{transform:matrix(0.239443,-0.002394,0.002500,0.249988,0,0);-ms-transform:matrix(0.239443,-0.002394,0.002500,0.249988,0,0);-webkit-transform:matrix(0.239443,-0.002394,0.002500,0.249988,0,0);}
.mf_c01087{transform:matrix(0.242196,-0.003391,0.003500,0.249976,0,0);-ms-transform:matrix(0.242196,-0.003391,0.003500,0.249976,0,0);-webkit-transform:matrix(0.242196,-0.003391,0.003500,0.249976,0,0);}
.m20_c01087{transform:matrix(0.245258,-0.002453,0.002500,0.249988,0,0);-ms-transform:matrix(0.245258,-0.002453,0.002500,0.249988,0,0);-webkit-transform:matrix(0.245258,-0.002453,0.002500,0.249988,0,0);}
.m16_c01087{transform:matrix(0.246663,-0.002467,0.002500,0.249988,0,0);-ms-transform:matrix(0.246663,-0.002467,0.002500,0.249988,0,0);-webkit-transform:matrix(0.246663,-0.002467,0.002500,0.249988,0,0);}
.m2c_c01087{transform:matrix(0.247571,-0.009665,0.009752,0.249810,0,0);-ms-transform:matrix(0.247571,-0.009665,0.009752,0.249810,0,0);-webkit-transform:matrix(0.247571,-0.009665,0.009752,0.249810,0,0);}
.m27_c01087{transform:matrix(0.249665,-0.009747,0.009752,0.249810,0,0);-ms-transform:matrix(0.249665,-0.009747,0.009752,0.249810,0,0);-webkit-transform:matrix(0.249665,-0.009747,0.009752,0.249810,0,0);}
.m10_c01087{transform:matrix(0.253240,-0.003545,0.003500,0.249976,0,0);-ms-transform:matrix(0.253240,-0.003545,0.003500,0.249976,0,0);-webkit-transform:matrix(0.253240,-0.003545,0.003500,0.249976,0,0);}
.mc_c01087{transform:matrix(0.254170,-0.003558,0.003500,0.249976,0,0);-ms-transform:matrix(0.254170,-0.003558,0.003500,0.249976,0,0);-webkit-transform:matrix(0.254170,-0.003558,0.003500,0.249976,0,0);}
.m3_c01087{transform:matrix(0.256400,-0.003590,0.003500,0.249976,0,0);-ms-transform:matrix(0.256400,-0.003590,0.003500,0.249976,0,0);-webkit-transform:matrix(0.256400,-0.003590,0.003500,0.249976,0,0);}
.m13_c01087{transform:matrix(0.256827,-0.002568,0.002500,0.249988,0,0);-ms-transform:matrix(0.256827,-0.002568,0.002500,0.249988,0,0);-webkit-transform:matrix(0.256827,-0.002568,0.002500,0.249988,0,0);}
.m14_c01087{transform:matrix(0.257067,-0.002571,0.002500,0.249988,0,0);-ms-transform:matrix(0.257067,-0.002571,0.002500,0.249988,0,0);-webkit-transform:matrix(0.257067,-0.002571,0.002500,0.249988,0,0);}
.m25_c01087{transform:matrix(0.261396,-0.010205,0.009752,0.249810,0,0);-ms-transform:matrix(0.261396,-0.010205,0.009752,0.249810,0,0);-webkit-transform:matrix(0.261396,-0.010205,0.009752,0.249810,0,0);}
.m1c_c01087{transform:matrix(0.262212,-0.002622,0.002500,0.249988,0,0);-ms-transform:matrix(0.262212,-0.002622,0.002500,0.249988,0,0);-webkit-transform:matrix(0.262212,-0.002622,0.002500,0.249988,0,0);}
.m2_c01087{transform:matrix(0.263259,-0.003686,0.003500,0.249976,0,0);-ms-transform:matrix(0.263259,-0.003686,0.003500,0.249976,0,0);-webkit-transform:matrix(0.263259,-0.003686,0.003500,0.249976,0,0);}
.m30_c01087{transform:matrix(0.267946,-0.010460,0.009752,0.249810,0,0);-ms-transform:matrix(0.267946,-0.010460,0.009752,0.249810,0,0);-webkit-transform:matrix(0.267946,-0.010460,0.009752,0.249810,0,0);}
.m12_c01087{transform:matrix(0.268262,-0.002683,0.002500,0.249988,0,0);-ms-transform:matrix(0.268262,-0.002683,0.002500,0.249988,0,0);-webkit-transform:matrix(0.268262,-0.002683,0.002500,0.249988,0,0);}
.m35_c01087{transform:matrix(0.283609,-0.011072,0.009752,0.249810,0,0);-ms-transform:matrix(0.283609,-0.011072,0.009752,0.249810,0,0);-webkit-transform:matrix(0.283609,-0.011072,0.009752,0.249810,0,0);}
.m2a_c01087{transform:matrix(0.286797,-0.011196,0.009752,0.249810,0,0);-ms-transform:matrix(0.286797,-0.011196,0.009752,0.249810,0,0);-webkit-transform:matrix(0.286797,-0.011196,0.009752,0.249810,0,0);}
.m2b_c01087{transform:matrix(0.298248,-0.011643,0.009752,0.249810,0,0);-ms-transform:matrix(0.298248,-0.011643,0.009752,0.249810,0,0);-webkit-transform:matrix(0.298248,-0.011643,0.009752,0.249810,0,0);}
.m19_c01087{transform:matrix(0.304255,-0.003043,0.002500,0.249988,0,0);-ms-transform:matrix(0.304255,-0.003043,0.002500,0.249988,0,0);-webkit-transform:matrix(0.304255,-0.003043,0.002500,0.249988,0,0);}
.m1a_c01087{transform:matrix(0.304640,-0.003046,0.002500,0.249988,0,0);-ms-transform:matrix(0.304640,-0.003046,0.002500,0.249988,0,0);-webkit-transform:matrix(0.304640,-0.003046,0.002500,0.249988,0,0);}
.m28_c01087{transform:matrix(0.318053,-0.012416,0.009752,0.249810,0,0);-ms-transform:matrix(0.318053,-0.012416,0.009752,0.249810,0,0);-webkit-transform:matrix(0.318053,-0.012416,0.009752,0.249810,0,0);}
.m23_c01087{transform:matrix(0.319302,-0.012465,0.009752,0.249810,0,0);-ms-transform:matrix(0.319302,-0.012465,0.009752,0.249810,0,0);-webkit-transform:matrix(0.319302,-0.012465,0.009752,0.249810,0,0);}
.m15_c01087{transform:matrix(0.335148,-0.003351,0.002500,0.249988,0,0);-ms-transform:matrix(0.335148,-0.003351,0.002500,0.249988,0,0);-webkit-transform:matrix(0.335148,-0.003351,0.002500,0.249988,0,0);}
.m38_c01087{transform:matrix(0.335954,-0.013115,0.009752,0.249810,0,0);-ms-transform:matrix(0.335954,-0.013115,0.009752,0.249810,0,0);-webkit-transform:matrix(0.335954,-0.013115,0.009752,0.249810,0,0);}
.m7_c01087{transform:matrix(0.348701,-0.004882,0.003500,0.249976,0,0);-ms-transform:matrix(0.348701,-0.004882,0.003500,0.249976,0,0);-webkit-transform:matrix(0.348701,-0.004882,0.003500,0.249976,0,0);}
.m5_c01087{transform:matrix(0.352850,-0.004940,0.003500,0.249976,0,0);-ms-transform:matrix(0.352850,-0.004940,0.003500,0.249976,0,0);-webkit-transform:matrix(0.352850,-0.004940,0.003500,0.249976,0,0);}
.m21_c01087{transform:matrix(0.373726,-0.003737,0.002500,0.249988,0,0);-ms-transform:matrix(0.373726,-0.003737,0.002500,0.249988,0,0);-webkit-transform:matrix(0.373726,-0.003737,0.002500,0.249988,0,0);}
.m17_c01087{transform:matrix(0.395495,-0.003955,0.002500,0.249988,0,0);-ms-transform:matrix(0.395495,-0.003955,0.002500,0.249988,0,0);-webkit-transform:matrix(0.395495,-0.003955,0.002500,0.249988,0,0);}
.m8_c01087{transform:matrix(0.412220,-0.005771,0.003500,0.249976,0,0);-ms-transform:matrix(0.412220,-0.005771,0.003500,0.249976,0,0);-webkit-transform:matrix(0.412220,-0.005771,0.003500,0.249976,0,0);}
.m1_c01087{transform:matrix(0.427868,-0.005990,0.003500,0.249976,0,0);-ms-transform:matrix(0.427868,-0.005990,0.003500,0.249976,0,0);-webkit-transform:matrix(0.427868,-0.005990,0.003500,0.249976,0,0);}
.m1d_c01087{transform:matrix(0.432438,-0.004324,0.002500,0.249988,0,0);-ms-transform:matrix(0.432438,-0.004324,0.002500,0.249988,0,0);-webkit-transform:matrix(0.432438,-0.004324,0.002500,0.249988,0,0);}
.m26_c01087{transform:matrix(0.433670,-0.016930,0.009752,0.249810,0,0);-ms-transform:matrix(0.433670,-0.016930,0.009752,0.249810,0,0);-webkit-transform:matrix(0.433670,-0.016930,0.009752,0.249810,0,0);}
.m9_c01087{transform:matrix(0.464025,-0.006496,0.003500,0.249976,0,0);-ms-transform:matrix(0.464025,-0.006496,0.003500,0.249976,0,0);-webkit-transform:matrix(0.464025,-0.006496,0.003500,0.249976,0,0);}
.m11_c01087{transform:matrix(0.489346,-0.004893,0.002500,0.249988,0,0);-ms-transform:matrix(0.489346,-0.004893,0.002500,0.249988,0,0);-webkit-transform:matrix(0.489346,-0.004893,0.002500,0.249988,0,0);}
.m2f_c01087{transform:matrix(0.556716,-0.021734,0.009752,0.249810,0,0);-ms-transform:matrix(0.556716,-0.021734,0.009752,0.249810,0,0);-webkit-transform:matrix(0.556716,-0.021734,0.009752,0.249810,0,0);}
.m29_c01087{transform:matrix(0.647292,-0.025270,0.009752,0.249810,0,0);-ms-transform:matrix(0.647292,-0.025270,0.009752,0.249810,0,0);-webkit-transform:matrix(0.647292,-0.025270,0.009752,0.249810,0,0);}
.v0_c01087{vertical-align:0.000000px;}
.ls0_c01087{letter-spacing:0.000000px;}
.sc__c01087{text-shadow:none;}
.sc0_c01087{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__c01087{-webkit-text-stroke:0px transparent;}
.sc0_c01087{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01087{word-spacing:0.000000px;}
.fc0_c01087{color:transparent;}
.fs2_c01087{font-size:84.004200px;}
.fs0_c01087{font-size:84.008232px;}
.fs3_c01087{font-size:95.977053px;}
.fs1_c01087{font-size:96.009408px;}
.fs4_c01087{font-size:137.967014px;}
.y0_c01087{bottom:0.000000px;}
.y33_c01087{bottom:521.183816px;}
.y34_c01087{bottom:522.406938px;}
.y35_c01087{bottom:526.559623px;}
.y36_c01087{bottom:527.411955px;}
.y37_c01087{bottom:530.748813px;}
.y38_c01087{bottom:533.778901px;}
.y39_c01087{bottom:548.355234px;}
.y24_c01087{bottom:699.640500px;}
.y25_c01087{bottom:703.159860px;}
.y26_c01087{bottom:705.858172px;}
.y27_c01087{bottom:706.867180px;}
.y28_c01087{bottom:708.264687px;}
.y29_c01087{bottom:709.516645px;}
.y2a_c01087{bottom:709.794930px;}
.y2b_c01087{bottom:712.246548px;}
.y2c_c01087{bottom:713.674123px;}
.y2d_c01087{bottom:715.297908px;}
.y2e_c01087{bottom:717.072330px;}
.y2f_c01087{bottom:721.709098px;}
.y30_c01087{bottom:723.070978px;}
.y31_c01087{bottom:724.636321px;}
.y32_c01087{bottom:725.395417px;}
.y22_c01087{bottom:745.192395px;}
.y23_c01087{bottom:745.192665px;}
.y21_c01087{bottom:745.192725px;}
.y1f_c01087{bottom:745.192770px;}
.y20_c01087{bottom:745.193355px;}
.y12_c01087{bottom:774.436500px;}
.y13_c01087{bottom:775.047750px;}
.y14_c01087{bottom:775.563315px;}
.y15_c01087{bottom:776.439900px;}
.y16_c01087{bottom:776.746470px;}
.y17_c01087{bottom:777.558555px;}
.y18_c01087{bottom:778.120965px;}
.y19_c01087{bottom:778.781265px;}
.y1a_c01087{bottom:779.109000px;}
.y1b_c01087{bottom:779.392545px;}
.y1c_c01087{bottom:779.730240px;}
.y1d_c01087{bottom:780.439680px;}
.y1e_c01087{bottom:780.955545px;}
.ya_c01087{bottom:808.188294px;}
.yb_c01087{bottom:809.249976px;}
.yc_c01087{bottom:809.789766px;}
.yd_c01087{bottom:810.503145px;}
.ye_c01087{bottom:811.434960px;}
.yf_c01087{bottom:813.446061px;}
.y10_c01087{bottom:814.004127px;}
.y11_c01087{bottom:815.271321px;}
.y1_c01087{bottom:845.100000px;}
.y2_c01087{bottom:845.381778px;}
.y3_c01087{bottom:846.073497px;}
.y4_c01087{bottom:846.995943px;}
.y5_c01087{bottom:847.473147px;}
.y6_c01087{bottom:847.783401px;}
.y7_c01087{bottom:848.194665px;}
.y8_c01087{bottom:849.324570px;}
.y9_c01087{bottom:849.733293px;}
.h4_c01087{height:84.004200px;}
.h2_c01087{height:84.008232px;}
.h5_c01087{height:95.977053px;}
.h3_c01087{height:96.009408px;}
.h6_c01087{height:137.967014px;}
.h0_c01087{height:1246.320000px;}
.h1_c01087{height:1246.500000px;}
.w1_c01087{width:885.750000px;}
.w0_c01087{width:885.870000px;}
.x0_c01087{left:0.000000px;}
.xa_c01087{left:11.995416px;}
.x1_c01087{left:23.460000px;}
.x22_c01087{left:24.804000px;}
.x11_c01087{left:36.313500px;}
.x2_c01087{left:43.587000px;}
.xb_c01087{left:71.005119px;}
.x2f_c01087{left:75.049155px;}
.x3_c01087{left:92.995500px;}
.x12_c01087{left:97.438500px;}
.xc_c01087{left:100.988439px;}
.x23_c01087{left:114.953760px;}
.xd_c01087{left:140.584713px;}
.x13_c01087{left:148.995000px;}
.x4_c01087{left:158.884500px;}
.x24_c01087{left:184.072073px;}
.x5_c01087{left:192.970500px;}
.x30_c01087{left:206.637588px;}
.x25_c01087{left:209.918201px;}
.x6_c01087{left:215.131500px;}
.x14_c01087{left:236.653500px;}
.x7_c01087{left:244.507500px;}
.x26_c01087{left:245.715867px;}
.x15_c01087{left:267.310500px;}
.x27_c01087{left:277.785266px;}
.x28_c01087{left:284.913630px;}
.x31_c01087{left:294.342192px;}
.xe_c01087{left:304.069557px;}
.x8_c01087{left:325.215000px;}
.xf_c01087{left:335.036814px;}
.x16_c01087{left:348.519000px;}
.x9_c01087{left:354.409500px;}
.x32_c01087{left:373.996561px;}
.x29_c01087{left:384.280664px;}
.x10_c01087{left:405.403866px;}
.x2a_c01087{left:425.874528px;}
.x17_c01087{left:470.790000px;}
.x18_c01087{left:503.563500px;}
.x1d_c01087{left:525.981870px;}
.x19_c01087{left:531.918000px;}
.x1e_c01087{left:559.193685px;}
.x1a_c01087{left:565.687500px;}
.x2b_c01087{left:590.099639px;}
.x1f_c01087{left:613.736145px;}
.x2c_c01087{left:624.984718px;}
.x1b_c01087{left:636.631500px;}
.x2d_c01087{left:665.081581px;}
.x20_c01087{left:672.058980px;}
.x2e_c01087{left:684.526118px;}
.x1c_c01087{left:688.218000px;}
.x21_c01087{left:740.642835px;}
.x33_c01087{left:757.177929px;}
@media print{
.v0_c01087{vertical-align:0.000000pt;}
.ls0_c01087{letter-spacing:0.000000pt;}
.ws0_c01087{word-spacing:0.000000pt;}
.fs2_c01087{font-size:74.670400pt;}
.fs0_c01087{font-size:74.673984pt;}
.fs3_c01087{font-size:85.312936pt;}
.fs1_c01087{font-size:85.341696pt;}
.fs4_c01087{font-size:122.637346pt;}
.y0_c01087{bottom:0.000000pt;}
.y33_c01087{bottom:463.274503pt;}
.y34_c01087{bottom:464.361723pt;}
.y35_c01087{bottom:468.052999pt;}
.y36_c01087{bottom:468.810627pt;}
.y37_c01087{bottom:471.776723pt;}
.y38_c01087{bottom:474.470135pt;}
.y39_c01087{bottom:487.426875pt;}
.y24_c01087{bottom:621.902667pt;}
.y25_c01087{bottom:625.030987pt;}
.y26_c01087{bottom:627.429487pt;}
.y27_c01087{bottom:628.326383pt;}
.y28_c01087{bottom:629.568611pt;}
.y29_c01087{bottom:630.681463pt;}
.y2a_c01087{bottom:630.928827pt;}
.y2b_c01087{bottom:633.108043pt;}
.y2c_c01087{bottom:634.376999pt;}
.y2d_c01087{bottom:635.820363pt;}
.y2e_c01087{bottom:637.397627pt;}
.y2f_c01087{bottom:641.519199pt;}
.y30_c01087{bottom:642.729759pt;}
.y31_c01087{bottom:644.121175pt;}
.y32_c01087{bottom:644.795927pt;}
.y22_c01087{bottom:662.393240pt;}
.y23_c01087{bottom:662.393480pt;}
.y21_c01087{bottom:662.393533pt;}
.y1f_c01087{bottom:662.393573pt;}
.y20_c01087{bottom:662.394093pt;}
.y12_c01087{bottom:688.388000pt;}
.y13_c01087{bottom:688.931333pt;}
.y14_c01087{bottom:689.389613pt;}
.y15_c01087{bottom:690.168800pt;}
.y16_c01087{bottom:690.441307pt;}
.y17_c01087{bottom:691.163160pt;}
.y18_c01087{bottom:691.663080pt;}
.y19_c01087{bottom:692.250013pt;}
.y1a_c01087{bottom:692.541333pt;}
.y1b_c01087{bottom:692.793373pt;}
.y1c_c01087{bottom:693.093547pt;}
.y1d_c01087{bottom:693.724160pt;}
.y1e_c01087{bottom:694.182707pt;}
.ya_c01087{bottom:718.389595pt;}
.yb_c01087{bottom:719.333312pt;}
.yc_c01087{bottom:719.813125pt;}
.yd_c01087{bottom:720.447240pt;}
.ye_c01087{bottom:721.275520pt;}
.yf_c01087{bottom:723.063165pt;}
.y10_c01087{bottom:723.559224pt;}
.y11_c01087{bottom:724.685619pt;}
.y1_c01087{bottom:751.200000pt;}
.y2_c01087{bottom:751.450469pt;}
.y3_c01087{bottom:752.065331pt;}
.y4_c01087{bottom:752.885283pt;}
.y5_c01087{bottom:753.309464pt;}
.y6_c01087{bottom:753.585245pt;}
.y7_c01087{bottom:753.950813pt;}
.y8_c01087{bottom:754.955173pt;}
.y9_c01087{bottom:755.318483pt;}
.h4_c01087{height:74.670400pt;}
.h2_c01087{height:74.673984pt;}
.h5_c01087{height:85.312936pt;}
.h3_c01087{height:85.341696pt;}
.h6_c01087{height:122.637346pt;}
.h0_c01087{height:1107.840000pt;}
.h1_c01087{height:1108.000000pt;}
.w1_c01087{width:787.333333pt;}
.w0_c01087{width:787.440000pt;}
.x0_c01087{left:0.000000pt;}
.xa_c01087{left:10.662592pt;}
.x1_c01087{left:20.853333pt;}
.x22_c01087{left:22.048000pt;}
.x11_c01087{left:32.278667pt;}
.x2_c01087{left:38.744000pt;}
.xb_c01087{left:63.115661pt;}
.x2f_c01087{left:66.710360pt;}
.x3_c01087{left:82.662667pt;}
.x12_c01087{left:86.612000pt;}
.xc_c01087{left:89.767501pt;}
.x23_c01087{left:102.181120pt;}
.xd_c01087{left:124.964189pt;}
.x13_c01087{left:132.440000pt;}
.x4_c01087{left:141.230667pt;}
.x24_c01087{left:163.619620pt;}
.x5_c01087{left:171.529333pt;}
.x30_c01087{left:183.677856pt;}
.x25_c01087{left:186.593956pt;}
.x6_c01087{left:191.228000pt;}
.x14_c01087{left:210.358667pt;}
.x7_c01087{left:217.340000pt;}
.x26_c01087{left:218.414104pt;}
.x15_c01087{left:237.609333pt;}
.x27_c01087{left:246.920236pt;}
.x28_c01087{left:253.256560pt;}
.x31_c01087{left:261.637504pt;}
.xe_c01087{left:270.284051pt;}
.x8_c01087{left:289.080000pt;}
.xf_c01087{left:297.810501pt;}
.x16_c01087{left:309.794667pt;}
.x9_c01087{left:315.030667pt;}
.x32_c01087{left:332.441388pt;}
.x29_c01087{left:341.582812pt;}
.x10_c01087{left:360.358992pt;}
.x2a_c01087{left:378.555136pt;}
.x17_c01087{left:418.480000pt;}
.x18_c01087{left:447.612000pt;}
.x1d_c01087{left:467.539440pt;}
.x19_c01087{left:472.816000pt;}
.x1e_c01087{left:497.061053pt;}
.x1a_c01087{left:502.833333pt;}
.x2b_c01087{left:524.533012pt;}
.x1f_c01087{left:545.543240pt;}
.x2c_c01087{left:555.541972pt;}
.x1b_c01087{left:565.894667pt;}
.x2d_c01087{left:591.183628pt;}
.x20_c01087{left:597.385760pt;}
.x2e_c01087{left:608.467660pt;}
.x1c_c01087{left:611.749333pt;}
.x21_c01087{left:658.349187pt;}
.x33_c01087{left:673.047048pt;}
}





/* 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_c01088 {
    display:none;
  }
  .loading-indicator_c01088.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01088 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_c01088 { 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_c01088" -> "#page-container .classname_c01088")
 */
.pf_c01088 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01088 { /* 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_c01088.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01088 { /* 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_c01088 { /* 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_c01088 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01088 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01088 {overflow:visible;}
  }
}
.c_c01088 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01088 { /* 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_c01088:after { /* webkit #35443 */
  content: '';
}
.t_c01088:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01088 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 */
}
.__c01088 { /* 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_c01088 { /* info for Javascript */
  display:none;
}
.l_c01088 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01088 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01088 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01088: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_c01088 {
    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_c01088.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01088.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_c01088 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01088{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01088;src:url('chunks/assets/font_b11a17f404e7258299fdf971.woff2')format("woff");}.ff1_c01088{font-family:ff1_c01088;line-height:1.000000;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;}
.m2_c01088{transform:matrix(0.094201,0.004526,-0.011998,0.249712,0,0);-ms-transform:matrix(0.094201,0.004526,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.094201,0.004526,-0.011998,0.249712,0,0);}
.m67_c01088{transform:matrix(0.169482,0.005768,-0.008504,0.249855,0,0);-ms-transform:matrix(0.169482,0.005768,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.169482,0.005768,-0.008504,0.249855,0,0);}
.m64_c01088{transform:matrix(0.170126,0.005790,-0.008504,0.249855,0,0);-ms-transform:matrix(0.170126,0.005790,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.170126,0.005790,-0.008504,0.249855,0,0);}
.m65_c01088{transform:matrix(0.175169,0.005962,-0.008504,0.249855,0,0);-ms-transform:matrix(0.175169,0.005962,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.175169,0.005962,-0.008504,0.249855,0,0);}
.m6b_c01088{transform:matrix(0.186077,0.006333,-0.008504,0.249855,0,0);-ms-transform:matrix(0.186077,0.006333,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.186077,0.006333,-0.008504,0.249855,0,0);}
.m6a_c01088{transform:matrix(0.186097,0.006334,-0.008504,0.249855,0,0);-ms-transform:matrix(0.186097,0.006334,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.186097,0.006334,-0.008504,0.249855,0,0);}
.m8_c01088{transform:matrix(0.187955,0.005827,-0.007746,0.249880,0,0);-ms-transform:matrix(0.187955,0.005827,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.187955,0.005827,-0.007746,0.249880,0,0);}
.m69_c01088{transform:matrix(0.188121,0.006403,-0.008504,0.249855,0,0);-ms-transform:matrix(0.188121,0.006403,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.188121,0.006403,-0.008504,0.249855,0,0);}
.m56_c01088{transform:matrix(0.189502,0.006260,-0.008254,0.249864,0,0);-ms-transform:matrix(0.189502,0.006260,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.189502,0.006260,-0.008254,0.249864,0,0);}
.m66_c01088{transform:matrix(0.189520,0.006450,-0.008504,0.249855,0,0);-ms-transform:matrix(0.189520,0.006450,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.189520,0.006450,-0.008504,0.249855,0,0);}
.m68_c01088{transform:matrix(0.190710,0.006491,-0.008504,0.249855,0,0);-ms-transform:matrix(0.190710,0.006491,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.190710,0.006491,-0.008504,0.249855,0,0);}
.m48_c01088{transform:matrix(0.191970,0.006918,-0.009003,0.249838,0,0);-ms-transform:matrix(0.191970,0.006918,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.191970,0.006918,-0.009003,0.249838,0,0);}
.m61_c01088{transform:matrix(0.194822,0.006631,-0.008504,0.249855,0,0);-ms-transform:matrix(0.194822,0.006631,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.194822,0.006631,-0.008504,0.249855,0,0);}
.m5c_c01088{transform:matrix(0.194999,0.006441,-0.008254,0.249864,0,0);-ms-transform:matrix(0.194999,0.006441,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.194999,0.006441,-0.008254,0.249864,0,0);}
.m3_c01088{transform:matrix(0.196486,0.006091,-0.007746,0.249880,0,0);-ms-transform:matrix(0.196486,0.006091,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.196486,0.006091,-0.007746,0.249880,0,0);}
.m63_c01088{transform:matrix(0.199075,0.006775,-0.008504,0.249855,0,0);-ms-transform:matrix(0.199075,0.006775,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.199075,0.006775,-0.008504,0.249855,0,0);}
.m62_c01088{transform:matrix(0.200914,0.006838,-0.008504,0.249855,0,0);-ms-transform:matrix(0.200914,0.006838,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.200914,0.006838,-0.008504,0.249855,0,0);}
.m5b_c01088{transform:matrix(0.205983,0.006804,-0.008254,0.249864,0,0);-ms-transform:matrix(0.205983,0.006804,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.205983,0.006804,-0.008254,0.249864,0,0);}
.m50_c01088{transform:matrix(0.207260,0.007469,-0.009003,0.249838,0,0);-ms-transform:matrix(0.207260,0.007469,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.207260,0.007469,-0.009003,0.249838,0,0);}
.m4_c01088{transform:matrix(0.209160,0.006484,-0.007746,0.249880,0,0);-ms-transform:matrix(0.209160,0.006484,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.209160,0.006484,-0.007746,0.249880,0,0);}
.md_c01088{transform:matrix(0.209200,0.006485,-0.007746,0.249880,0,0);-ms-transform:matrix(0.209200,0.006485,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.209200,0.006485,-0.007746,0.249880,0,0);}
.m5a_c01088{transform:matrix(0.209781,0.006930,-0.008254,0.249864,0,0);-ms-transform:matrix(0.209781,0.006930,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.209781,0.006930,-0.008254,0.249864,0,0);}
.m52_c01088{transform:matrix(0.211078,0.007606,-0.009003,0.249838,0,0);-ms-transform:matrix(0.211078,0.007606,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.211078,0.007606,-0.009003,0.249838,0,0);}
.m47_c01088{transform:matrix(0.213681,0.007700,-0.009003,0.249838,0,0);-ms-transform:matrix(0.213681,0.007700,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.213681,0.007700,-0.009003,0.249838,0,0);}
.m11_c01088{transform:matrix(0.214312,0.006644,-0.007746,0.249880,0,0);-ms-transform:matrix(0.214312,0.006644,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.214312,0.006644,-0.007746,0.249880,0,0);}
.mf_c01088{transform:matrix(0.214597,0.006653,-0.007746,0.249880,0,0);-ms-transform:matrix(0.214597,0.006653,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.214597,0.006653,-0.007746,0.249880,0,0);}
.m59_c01088{transform:matrix(0.215792,0.007128,-0.008254,0.249864,0,0);-ms-transform:matrix(0.215792,0.007128,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.215792,0.007128,-0.008254,0.249864,0,0);}
.m7_c01088{transform:matrix(0.216116,0.006700,-0.007746,0.249880,0,0);-ms-transform:matrix(0.216116,0.006700,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.216116,0.006700,-0.007746,0.249880,0,0);}
.m4e_c01088{transform:matrix(0.216649,0.007807,-0.009003,0.249838,0,0);-ms-transform:matrix(0.216649,0.007807,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.216649,0.007807,-0.009003,0.249838,0,0);}
.m57_c01088{transform:matrix(0.217411,0.007182,-0.008254,0.249864,0,0);-ms-transform:matrix(0.217411,0.007182,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.217411,0.007182,-0.008254,0.249864,0,0);}
.m9_c01088{transform:matrix(0.219565,0.006807,-0.007746,0.249880,0,0);-ms-transform:matrix(0.219565,0.006807,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.219565,0.006807,-0.007746,0.249880,0,0);}
.m2b_c01088{transform:matrix(0.222488,0.007795,-0.008753,0.249847,0,0);-ms-transform:matrix(0.222488,0.007795,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.222488,0.007795,-0.008753,0.249847,0,0);}
.mc_c01088{transform:matrix(0.223298,0.006922,-0.007746,0.249880,0,0);-ms-transform:matrix(0.223298,0.006922,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.223298,0.006922,-0.007746,0.249880,0,0);}
.m35_c01088{transform:matrix(0.224454,0.008088,-0.009003,0.249838,0,0);-ms-transform:matrix(0.224454,0.008088,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.224454,0.008088,-0.009003,0.249838,0,0);}
.m2d_c01088{transform:matrix(0.225207,0.007890,-0.008753,0.249847,0,0);-ms-transform:matrix(0.225207,0.007890,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.225207,0.007890,-0.008753,0.249847,0,0);}
.m4b_c01088{transform:matrix(0.226223,0.008152,-0.009003,0.249838,0,0);-ms-transform:matrix(0.226223,0.008152,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.226223,0.008152,-0.009003,0.249838,0,0);}
.m3f_c01088{transform:matrix(0.226598,0.008166,-0.009003,0.249838,0,0);-ms-transform:matrix(0.226598,0.008166,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.226598,0.008166,-0.009003,0.249838,0,0);}
.m1f_c01088{transform:matrix(0.227291,0.007963,-0.008753,0.249847,0,0);-ms-transform:matrix(0.227291,0.007963,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.227291,0.007963,-0.008753,0.249847,0,0);}
.m4f_c01088{transform:matrix(0.227632,0.008203,-0.009003,0.249838,0,0);-ms-transform:matrix(0.227632,0.008203,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.227632,0.008203,-0.009003,0.249838,0,0);}
.m58_c01088{transform:matrix(0.229180,0.007571,-0.008254,0.249864,0,0);-ms-transform:matrix(0.229180,0.007571,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.229180,0.007571,-0.008254,0.249864,0,0);}
.mb_c01088{transform:matrix(0.229350,0.007110,-0.007746,0.249880,0,0);-ms-transform:matrix(0.229350,0.007110,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.229350,0.007110,-0.007746,0.249880,0,0);}
.m55_c01088{transform:matrix(0.229520,0.007582,-0.008254,0.249864,0,0);-ms-transform:matrix(0.229520,0.007582,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.229520,0.007582,-0.008254,0.249864,0,0);}
.m4a_c01088{transform:matrix(0.231255,0.008334,-0.009003,0.249838,0,0);-ms-transform:matrix(0.231255,0.008334,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.231255,0.008334,-0.009003,0.249838,0,0);}
.m54_c01088{transform:matrix(0.235112,0.008473,-0.009003,0.249838,0,0);-ms-transform:matrix(0.235112,0.008473,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.235112,0.008473,-0.009003,0.249838,0,0);}
.m10_c01088{transform:matrix(0.237121,0.007351,-0.007746,0.249880,0,0);-ms-transform:matrix(0.237121,0.007351,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.237121,0.007351,-0.007746,0.249880,0,0);}
.m51_c01088{transform:matrix(0.237511,0.008559,-0.009003,0.249838,0,0);-ms-transform:matrix(0.237511,0.008559,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.237511,0.008559,-0.009003,0.249838,0,0);}
.m4c_c01088{transform:matrix(0.238565,0.008597,-0.009003,0.249838,0,0);-ms-transform:matrix(0.238565,0.008597,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.238565,0.008597,-0.009003,0.249838,0,0);}
.m49_c01088{transform:matrix(0.238915,0.008610,-0.009003,0.249838,0,0);-ms-transform:matrix(0.238915,0.008610,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.238915,0.008610,-0.009003,0.249838,0,0);}
.m53_c01088{transform:matrix(0.240244,0.008657,-0.009003,0.249838,0,0);-ms-transform:matrix(0.240244,0.008657,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.240244,0.008657,-0.009003,0.249838,0,0);}
.m38_c01088{transform:matrix(0.240664,0.008673,-0.009003,0.249838,0,0);-ms-transform:matrix(0.240664,0.008673,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.240664,0.008673,-0.009003,0.249838,0,0);}
.me_c01088{transform:matrix(0.240954,0.007470,-0.007746,0.249880,0,0);-ms-transform:matrix(0.240954,0.007470,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.240954,0.007470,-0.007746,0.249880,0,0);}
.m27_c01088{transform:matrix(0.242886,0.008510,-0.008753,0.249847,0,0);-ms-transform:matrix(0.242886,0.008510,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.242886,0.008510,-0.008753,0.249847,0,0);}
.m2f_c01088{transform:matrix(0.244320,0.008560,-0.008753,0.249847,0,0);-ms-transform:matrix(0.244320,0.008560,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.244320,0.008560,-0.008753,0.249847,0,0);}
.m45_c01088{transform:matrix(0.244611,0.008815,-0.009003,0.249838,0,0);-ms-transform:matrix(0.244611,0.008815,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.244611,0.008815,-0.009003,0.249838,0,0);}
.m1c_c01088{transform:matrix(0.245047,0.007596,-0.007746,0.249880,0,0);-ms-transform:matrix(0.245047,0.007596,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.245047,0.007596,-0.007746,0.249880,0,0);}
.m40_c01088{transform:matrix(0.245810,0.008858,-0.009003,0.249838,0,0);-ms-transform:matrix(0.245810,0.008858,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.245810,0.008858,-0.009003,0.249838,0,0);}
.m20_c01088{transform:matrix(0.246044,0.008620,-0.008753,0.249847,0,0);-ms-transform:matrix(0.246044,0.008620,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.246044,0.008620,-0.008753,0.249847,0,0);}
.m22_c01088{transform:matrix(0.249167,0.008730,-0.008753,0.249847,0,0);-ms-transform:matrix(0.249167,0.008730,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.249167,0.008730,-0.008753,0.249847,0,0);}
.m43_c01088{transform:matrix(0.249598,0.008995,-0.009003,0.249838,0,0);-ms-transform:matrix(0.249598,0.008995,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.249598,0.008995,-0.009003,0.249838,0,0);}
.m15_c01088{transform:matrix(0.252144,0.007816,-0.007746,0.249880,0,0);-ms-transform:matrix(0.252144,0.007816,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.252144,0.007816,-0.007746,0.249880,0,0);}
.m32_c01088{transform:matrix(0.252435,0.008844,-0.008753,0.249847,0,0);-ms-transform:matrix(0.252435,0.008844,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.252435,0.008844,-0.008753,0.249847,0,0);}
.m1e_c01088{transform:matrix(0.252440,0.008844,-0.008753,0.249847,0,0);-ms-transform:matrix(0.252440,0.008844,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.252440,0.008844,-0.008753,0.249847,0,0);}
.m2a_c01088{transform:matrix(0.253380,0.008877,-0.008753,0.249847,0,0);-ms-transform:matrix(0.253380,0.008877,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.253380,0.008877,-0.008753,0.249847,0,0);}
.m42_c01088{transform:matrix(0.253965,0.009152,-0.009003,0.249838,0,0);-ms-transform:matrix(0.253965,0.009152,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.253965,0.009152,-0.009003,0.249838,0,0);}
.m36_c01088{transform:matrix(0.254390,0.009167,-0.009003,0.249838,0,0);-ms-transform:matrix(0.254390,0.009167,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.254390,0.009167,-0.009003,0.249838,0,0);}
.m34_c01088{transform:matrix(0.254430,0.009169,-0.009003,0.249838,0,0);-ms-transform:matrix(0.254430,0.009169,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.254430,0.009169,-0.009003,0.249838,0,0);}
.m3a_c01088{transform:matrix(0.254994,0.009189,-0.009003,0.249838,0,0);-ms-transform:matrix(0.254994,0.009189,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.254994,0.009189,-0.009003,0.249838,0,0);}
.m4d_c01088{transform:matrix(0.255029,0.009190,-0.009003,0.249838,0,0);-ms-transform:matrix(0.255029,0.009190,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.255029,0.009190,-0.009003,0.249838,0,0);}
.m3c_c01088{transform:matrix(0.255274,0.009199,-0.009003,0.249838,0,0);-ms-transform:matrix(0.255274,0.009199,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.255274,0.009199,-0.009003,0.249838,0,0);}
.m37_c01088{transform:matrix(0.255819,0.009219,-0.009003,0.249838,0,0);-ms-transform:matrix(0.255819,0.009219,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.255819,0.009219,-0.009003,0.249838,0,0);}
.m12_c01088{transform:matrix(0.255872,0.007932,-0.007746,0.249880,0,0);-ms-transform:matrix(0.255872,0.007932,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.255872,0.007932,-0.007746,0.249880,0,0);}
.m39_c01088{transform:matrix(0.256054,0.009227,-0.009003,0.249838,0,0);-ms-transform:matrix(0.256054,0.009227,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.256054,0.009227,-0.009003,0.249838,0,0);}
.m30_c01088{transform:matrix(0.256942,0.009002,-0.008753,0.249847,0,0);-ms-transform:matrix(0.256942,0.009002,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.256942,0.009002,-0.008753,0.249847,0,0);}
.m17_c01088{transform:matrix(0.257251,0.007975,-0.007746,0.249880,0,0);-ms-transform:matrix(0.257251,0.007975,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.257251,0.007975,-0.007746,0.249880,0,0);}
.m3b_c01088{transform:matrix(0.259082,0.009336,-0.009003,0.249838,0,0);-ms-transform:matrix(0.259082,0.009336,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.259082,0.009336,-0.009003,0.249838,0,0);}
.ma_c01088{transform:matrix(0.261080,0.008093,-0.007746,0.249880,0,0);-ms-transform:matrix(0.261080,0.008093,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.261080,0.008093,-0.007746,0.249880,0,0);}
.m1_c01088{transform:matrix(0.261558,0.012567,-0.011998,0.249712,0,0);-ms-transform:matrix(0.261558,0.012567,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.261558,0.012567,-0.011998,0.249712,0,0);}
.m18_c01088{transform:matrix(0.262389,0.008134,-0.007746,0.249880,0,0);-ms-transform:matrix(0.262389,0.008134,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.262389,0.008134,-0.007746,0.249880,0,0);}
.m33_c01088{transform:matrix(0.262959,0.009213,-0.008753,0.249847,0,0);-ms-transform:matrix(0.262959,0.009213,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.262959,0.009213,-0.008753,0.249847,0,0);}
.m23_c01088{transform:matrix(0.263219,0.009222,-0.008753,0.249847,0,0);-ms-transform:matrix(0.263219,0.009222,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.263219,0.009222,-0.008753,0.249847,0,0);}
.m21_c01088{transform:matrix(0.264513,0.009267,-0.008753,0.249847,0,0);-ms-transform:matrix(0.264513,0.009267,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.264513,0.009267,-0.008753,0.249847,0,0);}
.m3e_c01088{transform:matrix(0.268171,0.009664,-0.009003,0.249838,0,0);-ms-transform:matrix(0.268171,0.009664,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.268171,0.009664,-0.009003,0.249838,0,0);}
.m41_c01088{transform:matrix(0.268626,0.009680,-0.009003,0.249838,0,0);-ms-transform:matrix(0.268626,0.009680,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.268626,0.009680,-0.009003,0.249838,0,0);}
.m16_c01088{transform:matrix(0.270980,0.008400,-0.007746,0.249880,0,0);-ms-transform:matrix(0.270980,0.008400,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.270980,0.008400,-0.007746,0.249880,0,0);}
.m25_c01088{transform:matrix(0.272068,0.009532,-0.008753,0.249847,0,0);-ms-transform:matrix(0.272068,0.009532,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.272068,0.009532,-0.008753,0.249847,0,0);}
.m2e_c01088{transform:matrix(0.273557,0.009584,-0.008753,0.249847,0,0);-ms-transform:matrix(0.273557,0.009584,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.273557,0.009584,-0.008753,0.249847,0,0);}
.m26_c01088{transform:matrix(0.274227,0.009608,-0.008753,0.249847,0,0);-ms-transform:matrix(0.274227,0.009608,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.274227,0.009608,-0.008753,0.249847,0,0);}
.m44_c01088{transform:matrix(0.274677,0.009898,-0.009003,0.249838,0,0);-ms-transform:matrix(0.274677,0.009898,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.274677,0.009898,-0.009003,0.249838,0,0);}
.m1d_c01088{transform:matrix(0.275378,0.008537,-0.007746,0.249880,0,0);-ms-transform:matrix(0.275378,0.008537,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.275378,0.008537,-0.007746,0.249880,0,0);}
.m24_c01088{transform:matrix(0.275546,0.009654,-0.008753,0.249847,0,0);-ms-transform:matrix(0.275546,0.009654,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.275546,0.009654,-0.008753,0.249847,0,0);}
.m1a_c01088{transform:matrix(0.276722,0.008578,-0.007746,0.249880,0,0);-ms-transform:matrix(0.276722,0.008578,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.276722,0.008578,-0.007746,0.249880,0,0);}
.m2c_c01088{transform:matrix(0.278494,0.009757,-0.008753,0.249847,0,0);-ms-transform:matrix(0.278494,0.009757,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.278494,0.009757,-0.008753,0.249847,0,0);}
.m46_c01088{transform:matrix(0.279838,0.010084,-0.009003,0.249838,0,0);-ms-transform:matrix(0.279838,0.010084,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.279838,0.010084,-0.009003,0.249838,0,0);}
.m3d_c01088{transform:matrix(0.280683,0.010115,-0.009003,0.249838,0,0);-ms-transform:matrix(0.280683,0.010115,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.280683,0.010115,-0.009003,0.249838,0,0);}
.m14_c01088{transform:matrix(0.280850,0.008706,-0.007746,0.249880,0,0);-ms-transform:matrix(0.280850,0.008706,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.280850,0.008706,-0.007746,0.249880,0,0);}
.m28_c01088{transform:matrix(0.283051,0.009917,-0.008753,0.249847,0,0);-ms-transform:matrix(0.283051,0.009917,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.283051,0.009917,-0.008753,0.249847,0,0);}
.m31_c01088{transform:matrix(0.285100,0.009988,-0.008753,0.249847,0,0);-ms-transform:matrix(0.285100,0.009988,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.285100,0.009988,-0.008753,0.249847,0,0);}
.m29_c01088{transform:matrix(0.296903,0.010402,-0.008753,0.249847,0,0);-ms-transform:matrix(0.296903,0.010402,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.296903,0.010402,-0.008753,0.249847,0,0);}
.m5_c01088{transform:matrix(0.298232,0.009245,-0.007746,0.249880,0,0);-ms-transform:matrix(0.298232,0.009245,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.298232,0.009245,-0.007746,0.249880,0,0);}
.m13_c01088{transform:matrix(0.298592,0.009256,-0.007746,0.249880,0,0);-ms-transform:matrix(0.298592,0.009256,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.298592,0.009256,-0.007746,0.249880,0,0);}
.m1b_c01088{transform:matrix(0.301665,0.009352,-0.007746,0.249880,0,0);-ms-transform:matrix(0.301665,0.009352,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.301665,0.009352,-0.007746,0.249880,0,0);}
.m19_c01088{transform:matrix(0.303189,0.009399,-0.007746,0.249880,0,0);-ms-transform:matrix(0.303189,0.009399,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.303189,0.009399,-0.007746,0.249880,0,0);}
.m6_c01088{transform:matrix(0.322465,0.009996,-0.007746,0.249880,0,0);-ms-transform:matrix(0.322465,0.009996,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.322465,0.009996,-0.007746,0.249880,0,0);}
.m0_c01088{transform:matrix(0.389116,0.018696,-0.011998,0.249712,0,0);-ms-transform:matrix(0.389116,0.018696,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.389116,0.018696,-0.011998,0.249712,0,0);}
.m5f_c01088{transform:matrix(0.863920,0.029403,-0.008504,0.249855,0,0);-ms-transform:matrix(0.863920,0.029403,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.863920,0.029403,-0.008504,0.249855,0,0);}
.m5d_c01088{transform:matrix(1.324413,0.045075,-0.008504,0.249855,0,0);-ms-transform:matrix(1.324413,0.045075,-0.008504,0.249855,0,0);-webkit-transform:matrix(1.324413,0.045075,-0.008504,0.249855,0,0);}
.m60_c01088{transform:matrix(1.549628,0.052740,-0.008504,0.249855,0,0);-ms-transform:matrix(1.549628,0.052740,-0.008504,0.249855,0,0);-webkit-transform:matrix(1.549628,0.052740,-0.008504,0.249855,0,0);}
.m5e_c01088{transform:matrix(1.583128,0.053880,-0.008504,0.249855,0,0);-ms-transform:matrix(1.583128,0.053880,-0.008504,0.249855,0,0);-webkit-transform:matrix(1.583128,0.053880,-0.008504,0.249855,0,0);}
.v0_c01088{vertical-align:0.000000px;}
.ls0_c01088{letter-spacing:0.000000px;}
.sc__c01088{text-shadow:none;}
.sc0_c01088{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__c01088{-webkit-text-stroke:0px transparent;}
.sc0_c01088{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01088{word-spacing:0.000000px;}
.fc0_c01088{color:transparent;}
.fs8_c01088{font-size:17.992411px;}
.fs3_c01088{font-size:66.031705px;}
.fs4_c01088{font-size:71.972131px;}
.fs6_c01088{font-size:71.974688px;}
.fs5_c01088{font-size:77.972578px;}
.fs2_c01088{font-size:78.037470px;}
.fs7_c01088{font-size:83.961771px;}
.fs0_c01088{font-size:84.012809px;}
.fs1_c01088{font-size:90.043235px;}
.fs9_c01088{font-size:95.959527px;}
.y0_c01088{bottom:0.000000px;}
.y6c_c01088{bottom:733.494684px;}
.y6b_c01088{bottom:734.999750px;}
.y6a_c01088{bottom:736.986532px;}
.y69_c01088{bottom:739.275250px;}
.y68_c01088{bottom:740.419303px;}
.y67_c01088{bottom:741.214023px;}
.y66_c01088{bottom:742.376742px;}
.y65_c01088{bottom:743.521713px;}
.y64_c01088{bottom:746.206531px;}
.y63_c01088{bottom:748.954354px;}
.y62_c01088{bottom:750.093562px;}
.y61_c01088{bottom:776.008911px;}
.y60_c01088{bottom:778.127043px;}
.y5f_c01088{bottom:779.743029px;}
.y5e_c01088{bottom:781.422000px;}
.y5d_c01088{bottom:845.693127px;}
.y5c_c01088{bottom:846.432855px;}
.y5b_c01088{bottom:847.995174px;}
.y5a_c01088{bottom:849.772026px;}
.y59_c01088{bottom:852.348847px;}
.y58_c01088{bottom:854.123026px;}
.y57_c01088{bottom:855.229005px;}
.y56_c01088{bottom:857.803500px;}
.y55_c01088{bottom:869.916949px;}
.y54_c01088{bottom:872.037557px;}
.y53_c01088{bottom:873.289600px;}
.y52_c01088{bottom:875.821323px;}
.y51_c01088{bottom:877.088595px;}
.y50_c01088{bottom:877.962490px;}
.y4f_c01088{bottom:879.219448px;}
.y4e_c01088{bottom:883.788496px;}
.y4d_c01088{bottom:885.978291px;}
.y4c_c01088{bottom:887.970810px;}
.y4b_c01088{bottom:889.701874px;}
.y4a_c01088{bottom:891.831486px;}
.y49_c01088{bottom:893.018163px;}
.y48_c01088{bottom:894.284355px;}
.y47_c01088{bottom:905.957872px;}
.y46_c01088{bottom:907.168336px;}
.y45_c01088{bottom:911.546171px;}
.y44_c01088{bottom:912.406822px;}
.y43_c01088{bottom:914.735410px;}
.y42_c01088{bottom:917.594710px;}
.y41_c01088{bottom:919.142674px;}
.y40_c01088{bottom:920.318362px;}
.y3f_c01088{bottom:923.137432px;}
.y3e_c01088{bottom:928.276396px;}
.y3d_c01088{bottom:929.095414px;}
.y3c_c01088{bottom:942.103272px;}
.y3b_c01088{bottom:946.152570px;}
.y3a_c01088{bottom:949.750860px;}
.y39_c01088{bottom:951.696426px;}
.y38_c01088{bottom:955.664508px;}
.y37_c01088{bottom:958.821888px;}
.y36_c01088{bottom:960.420126px;}
.y35_c01088{bottom:963.651000px;}
.y34_c01088{bottom:977.732798px;}
.y33_c01088{bottom:978.536573px;}
.y32_c01088{bottom:982.040528px;}
.y31_c01088{bottom:984.317925px;}
.y30_c01088{bottom:985.146375px;}
.y2f_c01088{bottom:988.961655px;}
.y2e_c01088{bottom:990.143483px;}
.y2d_c01088{bottom:994.029375px;}
.y2c_c01088{bottom:995.144790px;}
.y2b_c01088{bottom:997.457940px;}
.y2a_c01088{bottom:999.282000px;}
.y29_c01088{bottom:1013.637195px;}
.y28_c01088{bottom:1015.212720px;}
.y27_c01088{bottom:1019.443853px;}
.y26_c01088{bottom:1020.643425px;}
.y25_c01088{bottom:1024.134832px;}
.y24_c01088{bottom:1025.675235px;}
.y23_c01088{bottom:1027.192800px;}
.y22_c01088{bottom:1029.541230px;}
.y21_c01088{bottom:1030.695075px;}
.y20_c01088{bottom:1031.829022px;}
.y1f_c01088{bottom:1034.116500px;}
.y1e_c01088{bottom:1047.890664px;}
.y1d_c01088{bottom:1049.047710px;}
.y1c_c01088{bottom:1053.362568px;}
.y1b_c01088{bottom:1055.272389px;}
.y1a_c01088{bottom:1059.131511px;}
.y19_c01088{bottom:1060.330629px;}
.y18_c01088{bottom:1061.498707px;}
.y17_c01088{bottom:1063.379860px;}
.y16_c01088{bottom:1064.911347px;}
.y15_c01088{bottom:1066.881771px;}
.y14_c01088{bottom:1069.994256px;}
.y13_c01088{bottom:1086.342966px;}
.y12_c01088{bottom:1087.507092px;}
.y11_c01088{bottom:1088.699607px;}
.y10_c01088{bottom:1089.857536px;}
.yf_c01088{bottom:1092.197692px;}
.ye_c01088{bottom:1093.330767px;}
.yd_c01088{bottom:1094.880493px;}
.yc_c01088{bottom:1096.826806px;}
.yb_c01088{bottom:1100.714317px;}
.ya_c01088{bottom:1101.867132px;}
.y9_c01088{bottom:1130.668694px;}
.y8_c01088{bottom:1133.487244px;}
.y7_c01088{bottom:1134.188883px;}
.y6_c01088{bottom:1136.243811px;}
.y5_c01088{bottom:1138.300274px;}
.y4_c01088{bottom:1139.952000px;}
.y3_c01088{bottom:1203.420240px;}
.y2_c01088{bottom:1205.591688px;}
.y1_c01088{bottom:1208.286000px;}
.ha_c01088{height:17.992411px;}
.h5_c01088{height:66.031705px;}
.h6_c01088{height:71.972131px;}
.h8_c01088{height:71.974688px;}
.h7_c01088{height:77.972578px;}
.h4_c01088{height:78.037470px;}
.h9_c01088{height:83.961771px;}
.h2_c01088{height:84.012809px;}
.h3_c01088{height:90.043235px;}
.hb_c01088{height:95.959527px;}
.h0_c01088{height:1246.320000px;}
.h1_c01088{height:1246.500000px;}
.w1_c01088{width:885.750000px;}
.w0_c01088{width:885.870000px;}
.x0_c01088{left:0.000000px;}
.x54_c01088{left:141.082500px;}
.x27_c01088{left:143.281500px;}
.x4c_c01088{left:145.948500px;}
.x31_c01088{left:148.207500px;}
.x14_c01088{left:152.020892px;}
.x4_c01088{left:155.667000px;}
.x39_c01088{left:170.069616px;}
.x57_c01088{left:175.584090px;}
.x41_c01088{left:181.041188px;}
.x55_c01088{left:190.414618px;}
.x28_c01088{left:195.345384px;}
.x5_c01088{left:208.948500px;}
.x42_c01088{left:212.222705px;}
.x1d_c01088{left:217.928143px;}
.x4d_c01088{left:223.885485px;}
.x32_c01088{left:237.864253px;}
.x15_c01088{left:240.944871px;}
.x1e_c01088{left:250.294245px;}
.x58_c01088{left:254.029411px;}
.x4e_c01088{left:257.366470px;}
.x29_c01088{left:261.369294px;}
.xa_c01088{left:263.118665px;}
.x43_c01088{left:268.196620px;}
.x6_c01088{left:275.286000px;}
.x33_c01088{left:282.215358px;}
.x1f_c01088{left:283.228278px;}
.x2a_c01088{left:293.206425px;}
.xb_c01088{left:296.044073px;}
.x16_c01088{left:297.241896px;}
.x56_c01088{left:300.131792px;}
.x4f_c01088{left:311.075708px;}
.x3a_c01088{left:312.675867px;}
.x44_c01088{left:313.693781px;}
.x59_c01088{left:330.667593px;}
.x7_c01088{left:341.574000px;}
.x20_c01088{left:350.259180px;}
.x8_c01088{left:364.207500px;}
.x45_c01088{left:366.071567px;}
.x34_c01088{left:369.832653px;}
.x50_c01088{left:389.083122px;}
.x3b_c01088{left:390.905060px;}
.x21_c01088{left:393.574821px;}
.x17_c01088{left:394.734306px;}
.x5a_c01088{left:396.533415px;}
.x1_c01088{left:397.783500px;}
.x2b_c01088{left:404.120899px;}
.xc_c01088{left:407.111309px;}
.x5b_c01088{left:419.222937px;}
.x3c_c01088{left:423.530402px;}
.x18_c01088{left:428.103668px;}
.x22_c01088{left:437.542310px;}
.x51_c01088{left:442.873278px;}
.x5c_c01088{left:451.868136px;}
.x2_c01088{left:453.858869px;}
.x9_c01088{left:455.128500px;}
.xd_c01088{left:462.727427px;}
.x3d_c01088{left:466.486403px;}
.x35_c01088{left:479.946928px;}
.x52_c01088{left:490.168935px;}
.x3_c01088{left:499.052130px;}
.xe_c01088{left:507.003440px;}
.x53_c01088{left:512.562519px;}
.x5d_c01088{left:517.176516px;}
.x36_c01088{left:533.936385px;}
.x23_c01088{left:537.197055px;}
.xf_c01088{left:539.388941px;}
.x46_c01088{left:543.761388px;}
.x2c_c01088{left:546.752625px;}
.x2d_c01088{left:570.398955px;}
.x24_c01088{left:571.436281px;}
.x19_c01088{left:572.625765px;}
.x5e_c01088{left:573.877818px;}
.x47_c01088{left:576.809928px;}
.x48_c01088{left:599.769769px;}
.x10_c01088{left:606.256664px;}
.x3e_c01088{left:610.450295px;}
.x5f_c01088{left:616.821850px;}
.x1a_c01088{left:627.210022px;}
.x37_c01088{left:633.788932px;}
.x2e_c01088{left:635.402386px;}
.x11_c01088{left:639.347072px;}
.x12_c01088{left:673.407840px;}
.x25_c01088{left:692.204892px;}
.x49_c01088{left:699.654096px;}
.x13_c01088{left:706.649701px;}
.x4a_c01088{left:732.566272px;}
.x2f_c01088{left:735.415274px;}
.x26_c01088{left:737.174877px;}
.x38_c01088{left:746.156952px;}
.x1b_c01088{left:750.512770px;}
.x3f_c01088{left:755.818281px;}
.x30_c01088{left:758.357309px;}
.x1c_c01088{left:783.574678px;}
.x4b_c01088{left:788.331951px;}
.x40_c01088{left:789.408657px;}
@media print{
.v0_c01088{vertical-align:0.000000pt;}
.ls0_c01088{letter-spacing:0.000000pt;}
.ws0_c01088{word-spacing:0.000000pt;}
.fs8_c01088{font-size:15.993255pt;}
.fs3_c01088{font-size:58.694849pt;}
.fs4_c01088{font-size:63.975227pt;}
.fs6_c01088{font-size:63.977500pt;}
.fs5_c01088{font-size:69.308958pt;}
.fs2_c01088{font-size:69.366640pt;}
.fs7_c01088{font-size:74.632686pt;}
.fs0_c01088{font-size:74.678052pt;}
.fs1_c01088{font-size:80.038431pt;}
.fs9_c01088{font-size:85.297358pt;}
.y0_c01088{bottom:0.000000pt;}
.y6c_c01088{bottom:651.995275pt;}
.y6b_c01088{bottom:653.333111pt;}
.y6a_c01088{bottom:655.099140pt;}
.y69_c01088{bottom:657.133556pt;}
.y68_c01088{bottom:658.150492pt;}
.y67_c01088{bottom:658.856909pt;}
.y66_c01088{bottom:659.890437pt;}
.y65_c01088{bottom:660.908189pt;}
.y64_c01088{bottom:663.294695pt;}
.y63_c01088{bottom:665.737204pt;}
.y62_c01088{bottom:666.749833pt;}
.y61_c01088{bottom:689.785699pt;}
.y60_c01088{bottom:691.668483pt;}
.y5f_c01088{bottom:693.104915pt;}
.y5e_c01088{bottom:694.597333pt;}
.y5d_c01088{bottom:751.727224pt;}
.y5c_c01088{bottom:752.384760pt;}
.y5b_c01088{bottom:753.773488pt;}
.y5a_c01088{bottom:755.352912pt;}
.y59_c01088{bottom:757.643420pt;}
.y58_c01088{bottom:759.220468pt;}
.y57_c01088{bottom:760.203560pt;}
.y56_c01088{bottom:762.492000pt;}
.y55_c01088{bottom:773.259511pt;}
.y54_c01088{bottom:775.144495pt;}
.y53_c01088{bottom:776.257423pt;}
.y52_c01088{bottom:778.507843pt;}
.y51_c01088{bottom:779.634307pt;}
.y50_c01088{bottom:780.411103pt;}
.y4f_c01088{bottom:781.528399pt;}
.y4e_c01088{bottom:785.589775pt;}
.y4d_c01088{bottom:787.536259pt;}
.y4c_c01088{bottom:789.307387pt;}
.y4b_c01088{bottom:790.846111pt;}
.y4a_c01088{bottom:792.739099pt;}
.y49_c01088{bottom:793.793923pt;}
.y48_c01088{bottom:794.919427pt;}
.y47_c01088{bottom:805.295887pt;}
.y46_c01088{bottom:806.371855pt;}
.y45_c01088{bottom:810.263263pt;}
.y44_c01088{bottom:811.028287pt;}
.y43_c01088{bottom:813.098143pt;}
.y42_c01088{bottom:815.639743pt;}
.y41_c01088{bottom:817.015711pt;}
.y40_c01088{bottom:818.060767pt;}
.y3f_c01088{bottom:820.566607pt;}
.y3e_c01088{bottom:825.134575pt;}
.y3d_c01088{bottom:825.862591pt;}
.y3c_c01088{bottom:837.425131pt;}
.y3b_c01088{bottom:841.024507pt;}
.y3a_c01088{bottom:844.222987pt;}
.y39_c01088{bottom:845.952379pt;}
.y38_c01088{bottom:849.479563pt;}
.y37_c01088{bottom:852.286123pt;}
.y36_c01088{bottom:853.706779pt;}
.y35_c01088{bottom:856.578667pt;}
.y34_c01088{bottom:869.095820pt;}
.y33_c01088{bottom:869.810287pt;}
.y32_c01088{bottom:872.924913pt;}
.y31_c01088{bottom:874.949267pt;}
.y30_c01088{bottom:875.685667pt;}
.y2f_c01088{bottom:879.077027pt;}
.y2e_c01088{bottom:880.127540pt;}
.y2d_c01088{bottom:883.581667pt;}
.y2c_c01088{bottom:884.573147pt;}
.y2b_c01088{bottom:886.629280pt;}
.y2a_c01088{bottom:888.250667pt;}
.y29_c01088{bottom:901.010840pt;}
.y28_c01088{bottom:902.411307pt;}
.y27_c01088{bottom:906.172313pt;}
.y26_c01088{bottom:907.238600pt;}
.y25_c01088{bottom:910.342073pt;}
.y24_c01088{bottom:911.711320pt;}
.y23_c01088{bottom:913.060267pt;}
.y22_c01088{bottom:915.147760pt;}
.y21_c01088{bottom:916.173400pt;}
.y20_c01088{bottom:917.181353pt;}
.y1f_c01088{bottom:919.214667pt;}
.y1e_c01088{bottom:931.458368pt;}
.y1d_c01088{bottom:932.486853pt;}
.y1c_c01088{bottom:936.322283pt;}
.y1b_c01088{bottom:938.019901pt;}
.y1a_c01088{bottom:941.450232pt;}
.y19_c01088{bottom:942.516115pt;}
.y18_c01088{bottom:943.554407pt;}
.y17_c01088{bottom:945.226543pt;}
.y16_c01088{bottom:946.587864pt;}
.y15_c01088{bottom:948.339352pt;}
.y14_c01088{bottom:951.106005pt;}
.y13_c01088{bottom:965.638192pt;}
.y12_c01088{bottom:966.672971pt;}
.y11_c01088{bottom:967.732984pt;}
.y10_c01088{bottom:968.762255pt;}
.yf_c01088{bottom:970.842393pt;}
.ye_c01088{bottom:971.849571pt;}
.yd_c01088{bottom:973.227105pt;}
.yc_c01088{bottom:974.957161pt;}
.yb_c01088{bottom:978.412727pt;}
.ya_c01088{bottom:979.437451pt;}
.y9_c01088{bottom:1005.038839pt;}
.y8_c01088{bottom:1007.544217pt;}
.y7_c01088{bottom:1008.167896pt;}
.y6_c01088{bottom:1009.994499pt;}
.y5_c01088{bottom:1011.822465pt;}
.y4_c01088{bottom:1013.290667pt;}
.y3_c01088{bottom:1069.706880pt;}
.y2_c01088{bottom:1071.637056pt;}
.y1_c01088{bottom:1074.032000pt;}
.ha_c01088{height:15.993255pt;}
.h5_c01088{height:58.694849pt;}
.h6_c01088{height:63.975227pt;}
.h8_c01088{height:63.977500pt;}
.h7_c01088{height:69.308958pt;}
.h4_c01088{height:69.366640pt;}
.h9_c01088{height:74.632686pt;}
.h2_c01088{height:74.678052pt;}
.h3_c01088{height:80.038431pt;}
.hb_c01088{height:85.297358pt;}
.h0_c01088{height:1107.840000pt;}
.h1_c01088{height:1108.000000pt;}
.w1_c01088{width:787.333333pt;}
.w0_c01088{width:787.440000pt;}
.x0_c01088{left:0.000000pt;}
.x54_c01088{left:125.406667pt;}
.x27_c01088{left:127.361333pt;}
.x4c_c01088{left:129.732000pt;}
.x31_c01088{left:131.740000pt;}
.x14_c01088{left:135.129681pt;}
.x4_c01088{left:138.370667pt;}
.x39_c01088{left:151.172992pt;}
.x57_c01088{left:156.074747pt;}
.x41_c01088{left:160.925500pt;}
.x55_c01088{left:169.257439pt;}
.x28_c01088{left:173.640341pt;}
.x5_c01088{left:185.732000pt;}
.x42_c01088{left:188.642404pt;}
.x1d_c01088{left:193.713905pt;}
.x4d_c01088{left:199.009320pt;}
.x32_c01088{left:211.434892pt;}
.x15_c01088{left:214.173219pt;}
.x1e_c01088{left:222.483773pt;}
.x58_c01088{left:225.803921pt;}
.x4e_c01088{left:228.770196pt;}
.x29_c01088{left:232.328261pt;}
.xa_c01088{left:233.883257pt;}
.x43_c01088{left:238.396996pt;}
.x6_c01088{left:244.698667pt;}
.x33_c01088{left:250.858096pt;}
.x1f_c01088{left:251.758469pt;}
.x2a_c01088{left:260.627933pt;}
.xb_c01088{left:263.150287pt;}
.x16_c01088{left:264.215019pt;}
.x56_c01088{left:266.783815pt;}
.x4f_c01088{left:276.511740pt;}
.x3a_c01088{left:277.934104pt;}
.x44_c01088{left:278.838916pt;}
.x59_c01088{left:293.926749pt;}
.x7_c01088{left:303.621333pt;}
.x20_c01088{left:311.341493pt;}
.x8_c01088{left:323.740000pt;}
.x45_c01088{left:325.396948pt;}
.x34_c01088{left:328.740136pt;}
.x50_c01088{left:345.851664pt;}
.x3b_c01088{left:347.471164pt;}
.x21_c01088{left:349.844285pt;}
.x17_c01088{left:350.874939pt;}
.x5a_c01088{left:352.474147pt;}
.x1_c01088{left:353.585333pt;}
.x2b_c01088{left:359.218577pt;}
.xc_c01088{left:361.876719pt;}
.x5b_c01088{left:372.642611pt;}
.x3c_c01088{left:376.471468pt;}
.x18_c01088{left:380.536593pt;}
.x22_c01088{left:388.926497pt;}
.x51_c01088{left:393.665136pt;}
.x5c_c01088{left:401.660565pt;}
.x2_c01088{left:403.430105pt;}
.x9_c01088{left:404.558667pt;}
.xd_c01088{left:411.313268pt;}
.x3d_c01088{left:414.654580pt;}
.x35_c01088{left:426.619492pt;}
.x52_c01088{left:435.705720pt;}
.x3_c01088{left:443.601893pt;}
.xe_c01088{left:450.669724pt;}
.x53_c01088{left:455.611128pt;}
.x5d_c01088{left:459.712459pt;}
.x36_c01088{left:474.610120pt;}
.x23_c01088{left:477.508493pt;}
.xf_c01088{left:479.456836pt;}
.x46_c01088{left:483.343456pt;}
.x2c_c01088{left:486.002333pt;}
.x2d_c01088{left:507.021293pt;}
.x24_c01088{left:507.943361pt;}
.x19_c01088{left:509.000680pt;}
.x5e_c01088{left:510.113616pt;}
.x47_c01088{left:512.719936pt;}
.x48_c01088{left:533.128684pt;}
.x10_c01088{left:538.894812pt;}
.x3e_c01088{left:542.622484pt;}
.x5f_c01088{left:548.286089pt;}
.x1a_c01088{left:557.520020pt;}
.x37_c01088{left:563.367940pt;}
.x2e_c01088{left:564.802121pt;}
.x11_c01088{left:568.308508pt;}
.x12_c01088{left:598.584747pt;}
.x25_c01088{left:615.293237pt;}
.x49_c01088{left:621.914752pt;}
.x13_c01088{left:628.133068pt;}
.x4a_c01088{left:651.170020pt;}
.x2f_c01088{left:653.702465pt;}
.x26_c01088{left:655.266557pt;}
.x38_c01088{left:663.250624pt;}
.x1b_c01088{left:667.122463pt;}
.x3f_c01088{left:671.838472pt;}
.x30_c01088{left:674.095385pt;}
.x1c_c01088{left:696.510825pt;}
.x4b_c01088{left:700.739512pt;}
.x40_c01088{left:701.696584pt;}
}





/* 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_c01089 {
    display:none;
  }
  .loading-indicator_c01089.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01089 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_c01089 { 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_c01089" -> "#page-container .classname_c01089")
 */
.pf_c01089 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01089 { /* 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_c01089.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01089 { /* 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_c01089 { /* 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_c01089 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01089 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01089 {overflow:visible;}
  }
}
.c_c01089 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01089 { /* 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_c01089:after { /* webkit #35443 */
  content: '';
}
.t_c01089:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01089 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 */
}
.__c01089 { /* 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_c01089 { /* info for Javascript */
  display:none;
}
.l_c01089 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01089 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01089 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01089: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_c01089 {
    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_c01089.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01089.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_c01089 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01089{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01089;src:url('chunks/assets/font_c605e72f209fc835e906f064.woff2')format("woff");}.ff1_c01089{font-family:ff1_c01089;line-height:1.000000;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;}
.m9_c01089{transform:matrix(0.005535,-0.000033,0.001500,0.249996,0,0);-ms-transform:matrix(0.005535,-0.000033,0.001500,0.249996,0,0);-webkit-transform:matrix(0.005535,-0.000033,0.001500,0.249996,0,0);}
.ma_c01089{transform:matrix(0.011165,-0.000067,0.001500,0.249996,0,0);-ms-transform:matrix(0.011165,-0.000067,0.001500,0.249996,0,0);-webkit-transform:matrix(0.011165,-0.000067,0.001500,0.249996,0,0);}
.m27_c01089{transform:matrix(0.025622,0.000641,-0.006248,0.249922,0,0);-ms-transform:matrix(0.025622,0.000641,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.025622,0.000641,-0.006248,0.249922,0,0);}
.m1a_c01089{transform:matrix(0.107017,0.002675,-0.006248,0.249922,0,0);-ms-transform:matrix(0.107017,0.002675,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.107017,0.002675,-0.006248,0.249922,0,0);}
.m17_c01089{transform:matrix(0.108821,0.002721,-0.006248,0.249922,0,0);-ms-transform:matrix(0.108821,0.002721,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.108821,0.002721,-0.006248,0.249922,0,0);}
.m30_c01089{transform:matrix(0.109946,0.002749,-0.006248,0.249922,0,0);-ms-transform:matrix(0.109946,0.002749,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.109946,0.002749,-0.006248,0.249922,0,0);}
.m1_c01089{transform:matrix(0.125168,-0.000751,0.001500,0.249996,0,0);-ms-transform:matrix(0.125168,-0.000751,0.001500,0.249996,0,0);-webkit-transform:matrix(0.125168,-0.000751,0.001500,0.249996,0,0);}
.m18_c01089{transform:matrix(0.126510,0.003163,-0.006248,0.249922,0,0);-ms-transform:matrix(0.126510,0.003163,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.126510,0.003163,-0.006248,0.249922,0,0);}
.m7_c01089{transform:matrix(0.131948,-0.000792,0.001500,0.249996,0,0);-ms-transform:matrix(0.131948,-0.000792,0.001500,0.249996,0,0);-webkit-transform:matrix(0.131948,-0.000792,0.001500,0.249996,0,0);}
.m19_c01089{transform:matrix(0.134088,0.003352,-0.006248,0.249922,0,0);-ms-transform:matrix(0.134088,0.003352,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.134088,0.003352,-0.006248,0.249922,0,0);}
.m4_c01089{transform:matrix(0.135338,-0.000812,0.001500,0.249996,0,0);-ms-transform:matrix(0.135338,-0.000812,0.001500,0.249996,0,0);-webkit-transform:matrix(0.135338,-0.000812,0.001500,0.249996,0,0);}
.m6_c01089{transform:matrix(0.135778,-0.000815,0.001500,0.249996,0,0);-ms-transform:matrix(0.135778,-0.000815,0.001500,0.249996,0,0);-webkit-transform:matrix(0.135778,-0.000815,0.001500,0.249996,0,0);}
.m2_c01089{transform:matrix(0.136178,-0.000817,0.001500,0.249996,0,0);-ms-transform:matrix(0.136178,-0.000817,0.001500,0.249996,0,0);-webkit-transform:matrix(0.136178,-0.000817,0.001500,0.249996,0,0);}
.m15_c01089{transform:matrix(0.139856,0.003496,-0.006248,0.249922,0,0);-ms-transform:matrix(0.139856,0.003496,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.139856,0.003496,-0.006248,0.249922,0,0);}
.m14_c01089{transform:matrix(0.145120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145120,0.000000,0.000000,0.250000,0,0);}
.m0_c01089{transform:matrix(0.146332,-0.000878,0.001500,0.249996,0,0);-ms-transform:matrix(0.146332,-0.000878,0.001500,0.249996,0,0);-webkit-transform:matrix(0.146332,-0.000878,0.001500,0.249996,0,0);}
.m11_c01089{transform:matrix(0.149722,-0.000898,0.001500,0.249996,0,0);-ms-transform:matrix(0.149722,-0.000898,0.001500,0.249996,0,0);-webkit-transform:matrix(0.149722,-0.000898,0.001500,0.249996,0,0);}
.m25_c01089{transform:matrix(0.149773,0.003744,-0.006248,0.249922,0,0);-ms-transform:matrix(0.149773,0.003744,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.149773,0.003744,-0.006248,0.249922,0,0);}
.m3_c01089{transform:matrix(0.150337,-0.000902,0.001500,0.249996,0,0);-ms-transform:matrix(0.150337,-0.000902,0.001500,0.249996,0,0);-webkit-transform:matrix(0.150337,-0.000902,0.001500,0.249996,0,0);}
.mc_c01089{transform:matrix(0.151517,-0.000909,0.001500,0.249996,0,0);-ms-transform:matrix(0.151517,-0.000909,0.001500,0.249996,0,0);-webkit-transform:matrix(0.151517,-0.000909,0.001500,0.249996,0,0);}
.m5_c01089{transform:matrix(0.155342,-0.000932,0.001500,0.249996,0,0);-ms-transform:matrix(0.155342,-0.000932,0.001500,0.249996,0,0);-webkit-transform:matrix(0.155342,-0.000932,0.001500,0.249996,0,0);}
.m1d_c01089{transform:matrix(0.156146,0.003904,-0.006248,0.249922,0,0);-ms-transform:matrix(0.156146,0.003904,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.156146,0.003904,-0.006248,0.249922,0,0);}
.m21_c01089{transform:matrix(0.158106,0.003953,-0.006248,0.249922,0,0);-ms-transform:matrix(0.158106,0.003953,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.158106,0.003953,-0.006248,0.249922,0,0);}
.m16_c01089{transform:matrix(0.162964,0.004074,-0.006248,0.249922,0,0);-ms-transform:matrix(0.162964,0.004074,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.162964,0.004074,-0.006248,0.249922,0,0);}
.m29_c01089{transform:matrix(0.165443,0.004136,-0.006248,0.249922,0,0);-ms-transform:matrix(0.165443,0.004136,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.165443,0.004136,-0.006248,0.249922,0,0);}
.m2c_c01089{transform:matrix(0.167078,0.004177,-0.006248,0.249922,0,0);-ms-transform:matrix(0.167078,0.004177,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.167078,0.004177,-0.006248,0.249922,0,0);}
.me_c01089{transform:matrix(0.170317,-0.001022,0.001500,0.249996,0,0);-ms-transform:matrix(0.170317,-0.001022,0.001500,0.249996,0,0);-webkit-transform:matrix(0.170317,-0.001022,0.001500,0.249996,0,0);}
.m1f_c01089{transform:matrix(0.170742,0.004269,-0.006248,0.249922,0,0);-ms-transform:matrix(0.170742,0.004269,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.170742,0.004269,-0.006248,0.249922,0,0);}
.m22_c01089{transform:matrix(0.173726,0.004343,-0.006248,0.249922,0,0);-ms-transform:matrix(0.173726,0.004343,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.173726,0.004343,-0.006248,0.249922,0,0);}
.mf_c01089{transform:matrix(0.175852,-0.001055,0.001500,0.249996,0,0);-ms-transform:matrix(0.175852,-0.001055,0.001500,0.249996,0,0);-webkit-transform:matrix(0.175852,-0.001055,0.001500,0.249996,0,0);}
.m20_c01089{transform:matrix(0.179854,0.004496,-0.006248,0.249922,0,0);-ms-transform:matrix(0.179854,0.004496,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.179854,0.004496,-0.006248,0.249922,0,0);}
.m24_c01089{transform:matrix(0.180214,0.004505,-0.006248,0.249922,0,0);-ms-transform:matrix(0.180214,0.004505,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.180214,0.004505,-0.006248,0.249922,0,0);}
.m28_c01089{transform:matrix(0.181433,0.004536,-0.006248,0.249922,0,0);-ms-transform:matrix(0.181433,0.004536,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.181433,0.004536,-0.006248,0.249922,0,0);}
.m1e_c01089{transform:matrix(0.185737,0.004643,-0.006248,0.249922,0,0);-ms-transform:matrix(0.185737,0.004643,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.185737,0.004643,-0.006248,0.249922,0,0);}
.m8_c01089{transform:matrix(0.185767,-0.001115,0.001500,0.249996,0,0);-ms-transform:matrix(0.185767,-0.001115,0.001500,0.249996,0,0);-webkit-transform:matrix(0.185767,-0.001115,0.001500,0.249996,0,0);}
.m23_c01089{transform:matrix(0.186022,0.004651,-0.006248,0.249922,0,0);-ms-transform:matrix(0.186022,0.004651,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.186022,0.004651,-0.006248,0.249922,0,0);}
.md_c01089{transform:matrix(0.191642,-0.001150,0.001500,0.249996,0,0);-ms-transform:matrix(0.191642,-0.001150,0.001500,0.249996,0,0);-webkit-transform:matrix(0.191642,-0.001150,0.001500,0.249996,0,0);}
.m2e_c01089{transform:matrix(0.200557,0.005014,-0.006248,0.249922,0,0);-ms-transform:matrix(0.200557,0.005014,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.200557,0.005014,-0.006248,0.249922,0,0);}
.mb_c01089{transform:matrix(0.205021,-0.001230,0.001500,0.249996,0,0);-ms-transform:matrix(0.205021,-0.001230,0.001500,0.249996,0,0);-webkit-transform:matrix(0.205021,-0.001230,0.001500,0.249996,0,0);}
.m2b_c01089{transform:matrix(0.208320,0.005208,-0.006248,0.249922,0,0);-ms-transform:matrix(0.208320,0.005208,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.208320,0.005208,-0.006248,0.249922,0,0);}
.m1b_c01089{transform:matrix(0.227524,0.005688,-0.006248,0.249922,0,0);-ms-transform:matrix(0.227524,0.005688,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.227524,0.005688,-0.006248,0.249922,0,0);}
.m10_c01089{transform:matrix(0.238561,-0.001431,0.001500,0.249996,0,0);-ms-transform:matrix(0.238561,-0.001431,0.001500,0.249996,0,0);-webkit-transform:matrix(0.238561,-0.001431,0.001500,0.249996,0,0);}
.m2a_c01089{transform:matrix(0.257904,0.006448,-0.006248,0.249922,0,0);-ms-transform:matrix(0.257904,0.006448,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.257904,0.006448,-0.006248,0.249922,0,0);}
.m12_c01089{transform:matrix(0.267455,-0.001605,0.001500,0.249996,0,0);-ms-transform:matrix(0.267455,-0.001605,0.001500,0.249996,0,0);-webkit-transform:matrix(0.267455,-0.001605,0.001500,0.249996,0,0);}
.m2f_c01089{transform:matrix(0.273719,0.006843,-0.006248,0.249922,0,0);-ms-transform:matrix(0.273719,0.006843,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.273719,0.006843,-0.006248,0.249922,0,0);}
.m2d_c01089{transform:matrix(0.292774,0.007319,-0.006248,0.249922,0,0);-ms-transform:matrix(0.292774,0.007319,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.292774,0.007319,-0.006248,0.249922,0,0);}
.m1c_c01089{transform:matrix(0.490042,0.012251,-0.006248,0.249922,0,0);-ms-transform:matrix(0.490042,0.012251,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.490042,0.012251,-0.006248,0.249922,0,0);}
.m26_c01089{transform:matrix(0.771714,0.019293,-0.006248,0.249922,0,0);-ms-transform:matrix(0.771714,0.019293,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.771714,0.019293,-0.006248,0.249922,0,0);}
.m13_c01089{transform:matrix(0.788285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.788285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.788285,0.000000,0.000000,0.250000,0,0);}
.v0_c01089{vertical-align:0.000000px;}
.ls0_c01089{letter-spacing:0.000000px;}
.sc__c01089{text-shadow:none;}
.sc0_c01089{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__c01089{-webkit-text-stroke:0px transparent;}
.sc0_c01089{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01089{word-spacing:0.000000px;}
.fc0_c01089{color:transparent;}
.fs2_c01089{font-size:30.000000px;}
.fs1_c01089{font-size:114.002052px;}
.fs4_c01089{font-size:132.041244px;}
.fs0_c01089{font-size:138.002484px;}
.fs3_c01089{font-size:174.054367px;}
.y0_c01089{bottom:0.000000px;}
.y31_c01089{bottom:697.745362px;}
.y30_c01089{bottom:698.356050px;}
.y2f_c01089{bottom:699.168937px;}
.y2e_c01089{bottom:699.666187px;}
.y2d_c01089{bottom:699.769800px;}
.y2c_c01089{bottom:700.055437px;}
.y2b_c01089{bottom:700.511137px;}
.y2a_c01089{bottom:700.934512px;}
.y29_c01089{bottom:701.457600px;}
.y28_c01089{bottom:701.685375px;}
.y27_c01089{bottom:733.684650px;}
.y26_c01089{bottom:734.356050px;}
.y25_c01089{bottom:735.022162px;}
.y24_c01089{bottom:735.168112px;}
.y23_c01089{bottom:735.441525px;}
.y22_c01089{bottom:735.801187px;}
.y21_c01089{bottom:736.293525px;}
.y20_c01089{bottom:736.676625px;}
.y1f_c01089{bottom:736.991775px;}
.y1e_c01089{bottom:737.337187px;}
.y1d_c01089{bottom:834.598350px;}
.y1c_c01089{bottom:837.850650px;}
.y1b_c01089{bottom:838.495087px;}
.y1a_c01089{bottom:840.157087px;}
.y19_c01089{bottom:842.061000px;}
.y18_c01089{bottom:843.173887px;}
.y17_c01089{bottom:844.387650px;}
.y16_c01089{bottom:845.620500px;}
.y15_c01089{bottom:1041.120000px;}
.y14_c01089{bottom:1047.064500px;}
.ye_c01089{bottom:1056.269352px;}
.yc_c01089{bottom:1056.269412px;}
.yb_c01089{bottom:1056.269481px;}
.yf_c01089{bottom:1056.269523px;}
.yd_c01089{bottom:1056.269652px;}
.y13_c01089{bottom:1056.269985px;}
.y10_c01089{bottom:1056.270114px;}
.y11_c01089{bottom:1056.270405px;}
.y12_c01089{bottom:1056.270465px;}
.y1_c01089{bottom:1089.451500px;}
.y2_c01089{bottom:1090.167207px;}
.y3_c01089{bottom:1090.361634px;}
.y4_c01089{bottom:1090.562766px;}
.y5_c01089{bottom:1090.777983px;}
.y6_c01089{bottom:1091.166729px;}
.y7_c01089{bottom:1091.346513px;}
.y8_c01089{bottom:1091.630184px;}
.y9_c01089{bottom:1091.873319px;}
.ya_c01089{bottom:1092.644322px;}
.h4_c01089{height:30.000000px;}
.h3_c01089{height:114.002052px;}
.h6_c01089{height:132.041244px;}
.h2_c01089{height:138.002484px;}
.h5_c01089{height:174.054367px;}
.h0_c01089{height:1246.320000px;}
.h1_c01089{height:1246.500000px;}
.w0_c01089{width:917.190000px;}
.w1_c01089{width:917.250000px;}
.x0_c01089{left:0.000000px;}
.xb_c01089{left:22.140033px;}
.x1_c01089{left:93.030000px;}
.xc_c01089{left:133.922556px;}
.xd_c01089{left:170.373870px;}
.x2_c01089{left:212.314500px;}
.x1d_c01089{left:231.745687px;}
.x27_c01089{left:235.950075px;}
.x3_c01089{left:244.719000px;}
.x28_c01089{left:264.393150px;}
.x4_c01089{left:278.241000px;}
.x1e_c01089{left:281.164425px;}
.xe_c01089{left:288.906636px;}
.x5_c01089{left:314.110500px;}
.x1f_c01089{left:326.250712px;}
.x29_c01089{left:329.744400px;}
.xf_c01089{left:344.257125px;}
.x14_c01089{left:353.160000px;}
.x15_c01089{left:366.903000px;}
.x6_c01089{left:378.901500px;}
.x20_c01089{left:381.079387px;}
.x2a_c01089{left:382.701900px;}
.x7_c01089{left:408.865500px;}
.x16_c01089{left:416.217000px;}
.x2b_c01089{left:439.654087px;}
.x10_c01089{left:449.559414px;}
.x21_c01089{left:451.324462px;}
.x8_c01089{left:456.144000px;}
.x17_c01089{left:464.767500px;}
.x2c_c01089{left:475.334737px;}
.x11_c01089{left:486.820755px;}
.x2d_c01089{left:488.304750px;}
.x9_c01089{left:496.666500px;}
.x22_c01089{left:502.634025px;}
.x18_c01089{left:509.283000px;}
.x12_c01089{left:519.491934px;}
.x23_c01089{left:541.788150px;}
.x2e_c01089{left:550.401112px;}
.x24_c01089{left:562.575487px;}
.x13_c01089{left:579.690000px;}
.x19_c01089{left:585.439500px;}
.xa_c01089{left:625.167000px;}
.x1a_c01089{left:651.919500px;}
.x25_c01089{left:657.662737px;}
.x1b_c01089{left:677.697000px;}
.x2f_c01089{left:728.439750px;}
.x26_c01089{left:753.621900px;}
.x1c_c01089{left:807.789000px;}
@media print{
.v0_c01089{vertical-align:0.000000pt;}
.ls0_c01089{letter-spacing:0.000000pt;}
.ws0_c01089{word-spacing:0.000000pt;}
.fs2_c01089{font-size:26.666667pt;}
.fs1_c01089{font-size:101.335157pt;}
.fs4_c01089{font-size:117.369994pt;}
.fs0_c01089{font-size:122.668875pt;}
.fs3_c01089{font-size:154.714992pt;}
.y0_c01089{bottom:0.000000pt;}
.y31_c01089{bottom:620.218100pt;}
.y30_c01089{bottom:620.760933pt;}
.y2f_c01089{bottom:621.483500pt;}
.y2e_c01089{bottom:621.925500pt;}
.y2d_c01089{bottom:622.017600pt;}
.y2c_c01089{bottom:622.271500pt;}
.y2b_c01089{bottom:622.676567pt;}
.y2a_c01089{bottom:623.052900pt;}
.y29_c01089{bottom:623.517867pt;}
.y28_c01089{bottom:623.720333pt;}
.y27_c01089{bottom:652.164133pt;}
.y26_c01089{bottom:652.760933pt;}
.y25_c01089{bottom:653.353033pt;}
.y24_c01089{bottom:653.482767pt;}
.y23_c01089{bottom:653.725800pt;}
.y22_c01089{bottom:654.045500pt;}
.y21_c01089{bottom:654.483133pt;}
.y20_c01089{bottom:654.823667pt;}
.y1f_c01089{bottom:655.103800pt;}
.y1e_c01089{bottom:655.410833pt;}
.y1d_c01089{bottom:741.865200pt;}
.y1c_c01089{bottom:744.756133pt;}
.y1b_c01089{bottom:745.328967pt;}
.y1a_c01089{bottom:746.806300pt;}
.y19_c01089{bottom:748.498667pt;}
.y18_c01089{bottom:749.487900pt;}
.y17_c01089{bottom:750.566800pt;}
.y16_c01089{bottom:751.662667pt;}
.y15_c01089{bottom:925.440000pt;}
.y14_c01089{bottom:930.724000pt;}
.ye_c01089{bottom:938.906091pt;}
.yc_c01089{bottom:938.906144pt;}
.yb_c01089{bottom:938.906205pt;}
.yf_c01089{bottom:938.906243pt;}
.yd_c01089{bottom:938.906357pt;}
.y13_c01089{bottom:938.906653pt;}
.y10_c01089{bottom:938.906768pt;}
.y11_c01089{bottom:938.907027pt;}
.y12_c01089{bottom:938.907080pt;}
.y1_c01089{bottom:968.401333pt;}
.y2_c01089{bottom:969.037517pt;}
.y3_c01089{bottom:969.210341pt;}
.y4_c01089{bottom:969.389125pt;}
.y5_c01089{bottom:969.580429pt;}
.y6_c01089{bottom:969.925981pt;}
.y7_c01089{bottom:970.085789pt;}
.y8_c01089{bottom:970.337941pt;}
.y9_c01089{bottom:970.554061pt;}
.ya_c01089{bottom:971.239397pt;}
.h4_c01089{height:26.666667pt;}
.h3_c01089{height:101.335157pt;}
.h6_c01089{height:117.369994pt;}
.h2_c01089{height:122.668875pt;}
.h5_c01089{height:154.714992pt;}
.h0_c01089{height:1107.840000pt;}
.h1_c01089{height:1108.000000pt;}
.w0_c01089{width:815.280000pt;}
.w1_c01089{width:815.333333pt;}
.x0_c01089{left:0.000000pt;}
.xb_c01089{left:19.680029pt;}
.x1_c01089{left:82.693333pt;}
.xc_c01089{left:119.042272pt;}
.xd_c01089{left:151.443440pt;}
.x2_c01089{left:188.724000pt;}
.x1d_c01089{left:205.996167pt;}
.x27_c01089{left:209.733400pt;}
.x3_c01089{left:217.528000pt;}
.x28_c01089{left:235.016133pt;}
.x4_c01089{left:247.325333pt;}
.x1e_c01089{left:249.923933pt;}
.xe_c01089{left:256.805899pt;}
.x5_c01089{left:279.209333pt;}
.x1f_c01089{left:290.000633pt;}
.x29_c01089{left:293.106133pt;}
.xf_c01089{left:306.006333pt;}
.x14_c01089{left:313.920000pt;}
.x15_c01089{left:326.136000pt;}
.x6_c01089{left:336.801333pt;}
.x20_c01089{left:338.737233pt;}
.x2a_c01089{left:340.179467pt;}
.x7_c01089{left:363.436000pt;}
.x16_c01089{left:369.970667pt;}
.x2b_c01089{left:390.803633pt;}
.x10_c01089{left:399.608368pt;}
.x21_c01089{left:401.177300pt;}
.x8_c01089{left:405.461333pt;}
.x17_c01089{left:413.126667pt;}
.x2c_c01089{left:422.519767pt;}
.x11_c01089{left:432.729560pt;}
.x2d_c01089{left:434.048667pt;}
.x9_c01089{left:441.481333pt;}
.x22_c01089{left:446.785800pt;}
.x18_c01089{left:452.696000pt;}
.x12_c01089{left:461.770608pt;}
.x23_c01089{left:481.589467pt;}
.x2e_c01089{left:489.245433pt;}
.x24_c01089{left:500.067100pt;}
.x13_c01089{left:515.280000pt;}
.x19_c01089{left:520.390667pt;}
.xa_c01089{left:555.704000pt;}
.x1a_c01089{left:579.484000pt;}
.x25_c01089{left:584.589100pt;}
.x1b_c01089{left:602.397333pt;}
.x2f_c01089{left:647.502000pt;}
.x26_c01089{left:669.886133pt;}
.x1c_c01089{left:718.034667pt;}
}





/* 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_c01090 {
    display:none;
  }
  .loading-indicator_c01090.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01090 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_c01090 { 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_c01090" -> "#page-container .classname_c01090")
 */
.pf_c01090 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01090 { /* 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_c01090.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01090 { /* 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_c01090 { /* 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_c01090 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01090 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01090 {overflow:visible;}
  }
}
.c_c01090 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01090 { /* 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_c01090:after { /* webkit #35443 */
  content: '';
}
.t_c01090:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01090 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 */
}
.__c01090 { /* 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_c01090 { /* info for Javascript */
  display:none;
}
.l_c01090 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01090 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01090 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01090: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_c01090 {
    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_c01090.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01090.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_c01090 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01090{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01090;src:url('chunks/assets/font_c605e72f209fc835e906f064.woff2')format("woff");}.ff1_c01090{font-family:ff1_c01090;line-height:1.000000;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;}
.md1_c01090{transform:matrix(0.012368,0.000235,-0.004749,0.249955,0,0);-ms-transform:matrix(0.012368,0.000235,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.012368,0.000235,-0.004749,0.249955,0,0);}
.m13f_c01090{transform:matrix(0.148579,0.003714,-0.006248,0.249922,0,0);-ms-transform:matrix(0.148579,0.003714,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.148579,0.003714,-0.006248,0.249922,0,0);}
.m125_c01090{transform:matrix(0.160150,0.004004,-0.006248,0.249922,0,0);-ms-transform:matrix(0.160150,0.004004,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.160150,0.004004,-0.006248,0.249922,0,0);}
.m93_c01090{transform:matrix(0.163096,0.003099,-0.004749,0.249955,0,0);-ms-transform:matrix(0.163096,0.003099,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.163096,0.003099,-0.004749,0.249955,0,0);}
.m91_c01090{transform:matrix(0.169384,0.003218,-0.004749,0.249955,0,0);-ms-transform:matrix(0.169384,0.003218,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.169384,0.003218,-0.004749,0.249955,0,0);}
.mbe_c01090{transform:matrix(0.177308,0.003369,-0.004749,0.249955,0,0);-ms-transform:matrix(0.177308,0.003369,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.177308,0.003369,-0.004749,0.249955,0,0);}
.m69_c01090{transform:matrix(0.181912,0.003456,-0.004749,0.249955,0,0);-ms-transform:matrix(0.181912,0.003456,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.181912,0.003456,-0.004749,0.249955,0,0);}
.m63_c01090{transform:matrix(0.183017,0.003477,-0.004749,0.249955,0,0);-ms-transform:matrix(0.183017,0.003477,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.183017,0.003477,-0.004749,0.249955,0,0);}
.m8a_c01090{transform:matrix(0.185267,0.003520,-0.004749,0.249955,0,0);-ms-transform:matrix(0.185267,0.003520,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.185267,0.003520,-0.004749,0.249955,0,0);}
.m135_c01090{transform:matrix(0.185422,0.004636,-0.006248,0.249922,0,0);-ms-transform:matrix(0.185422,0.004636,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.185422,0.004636,-0.006248,0.249922,0,0);}
.m133_c01090{transform:matrix(0.190366,0.004759,-0.006248,0.249922,0,0);-ms-transform:matrix(0.190366,0.004759,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.190366,0.004759,-0.006248,0.249922,0,0);}
.m45_c01090{transform:matrix(0.190956,0.003055,-0.003999,0.249968,0,0);-ms-transform:matrix(0.190956,0.003055,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.190956,0.003055,-0.003999,0.249968,0,0);}
.m89_c01090{transform:matrix(0.192495,0.003657,-0.004749,0.249955,0,0);-ms-transform:matrix(0.192495,0.003657,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.192495,0.003657,-0.004749,0.249955,0,0);}
.m8d_c01090{transform:matrix(0.193005,0.003667,-0.004749,0.249955,0,0);-ms-transform:matrix(0.193005,0.003667,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.193005,0.003667,-0.004749,0.249955,0,0);}
.mf4_c01090{transform:matrix(0.193095,0.004827,-0.006248,0.249922,0,0);-ms-transform:matrix(0.193095,0.004827,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.193095,0.004827,-0.006248,0.249922,0,0);}
.mac_c01090{transform:matrix(0.193345,0.003674,-0.004749,0.249955,0,0);-ms-transform:matrix(0.193345,0.003674,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.193345,0.003674,-0.004749,0.249955,0,0);}
.mbb_c01090{transform:matrix(0.194315,0.003692,-0.004749,0.249955,0,0);-ms-transform:matrix(0.194315,0.003692,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.194315,0.003692,-0.004749,0.249955,0,0);}
.m4a_c01090{transform:matrix(0.194322,0.003303,-0.004249,0.249964,0,0);-ms-transform:matrix(0.194322,0.003303,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.194322,0.003303,-0.004249,0.249964,0,0);}
.m140_c01090{transform:matrix(0.194984,0.004875,-0.006248,0.249922,0,0);-ms-transform:matrix(0.194984,0.004875,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.194984,0.004875,-0.006248,0.249922,0,0);}
.m61_c01090{transform:matrix(0.195240,0.003710,-0.004749,0.249955,0,0);-ms-transform:matrix(0.195240,0.003710,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.195240,0.003710,-0.004749,0.249955,0,0);}
.m54_c01090{transform:matrix(0.195477,0.003323,-0.004249,0.249964,0,0);-ms-transform:matrix(0.195477,0.003323,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.195477,0.003323,-0.004249,0.249964,0,0);}
.mf7_c01090{transform:matrix(0.195504,0.004888,-0.006248,0.249922,0,0);-ms-transform:matrix(0.195504,0.004888,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.195504,0.004888,-0.006248,0.249922,0,0);}
.m60_c01090{transform:matrix(0.196025,0.003724,-0.004749,0.249955,0,0);-ms-transform:matrix(0.196025,0.003724,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.196025,0.003724,-0.004749,0.249955,0,0);}
.mc2_c01090{transform:matrix(0.197164,0.003746,-0.004749,0.249955,0,0);-ms-transform:matrix(0.197164,0.003746,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.197164,0.003746,-0.004749,0.249955,0,0);}
.m138_c01090{transform:matrix(0.197268,0.004932,-0.006248,0.249922,0,0);-ms-transform:matrix(0.197268,0.004932,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.197268,0.004932,-0.006248,0.249922,0,0);}
.mfa_c01090{transform:matrix(0.199038,0.004976,-0.006248,0.249922,0,0);-ms-transform:matrix(0.199038,0.004976,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.199038,0.004976,-0.006248,0.249922,0,0);}
.mbd_c01090{transform:matrix(0.199064,0.003782,-0.004749,0.249955,0,0);-ms-transform:matrix(0.199064,0.003782,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.199064,0.003782,-0.004749,0.249955,0,0);}
.m136_c01090{transform:matrix(0.199133,0.004978,-0.006248,0.249922,0,0);-ms-transform:matrix(0.199133,0.004978,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.199133,0.004978,-0.006248,0.249922,0,0);}
.m86_c01090{transform:matrix(0.202393,0.003845,-0.004749,0.249955,0,0);-ms-transform:matrix(0.202393,0.003845,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.202393,0.003845,-0.004749,0.249955,0,0);}
.m92_c01090{transform:matrix(0.202798,0.003853,-0.004749,0.249955,0,0);-ms-transform:matrix(0.202798,0.003853,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.202798,0.003853,-0.004749,0.249955,0,0);}
.m95_c01090{transform:matrix(0.203473,0.003866,-0.004749,0.249955,0,0);-ms-transform:matrix(0.203473,0.003866,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.203473,0.003866,-0.004749,0.249955,0,0);}
.m4b_c01090{transform:matrix(0.203881,0.003466,-0.004249,0.249964,0,0);-ms-transform:matrix(0.203881,0.003466,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.203881,0.003466,-0.004249,0.249964,0,0);}
.m68_c01090{transform:matrix(0.204323,0.003882,-0.004749,0.249955,0,0);-ms-transform:matrix(0.204323,0.003882,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.204323,0.003882,-0.004749,0.249955,0,0);}
.m88_c01090{transform:matrix(0.204913,0.003893,-0.004749,0.249955,0,0);-ms-transform:matrix(0.204913,0.003893,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.204913,0.003893,-0.004749,0.249955,0,0);}
.m85_c01090{transform:matrix(0.205148,0.003898,-0.004749,0.249955,0,0);-ms-transform:matrix(0.205148,0.003898,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.205148,0.003898,-0.004749,0.249955,0,0);}
.m90_c01090{transform:matrix(0.205248,0.003900,-0.004749,0.249955,0,0);-ms-transform:matrix(0.205248,0.003900,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.205248,0.003900,-0.004749,0.249955,0,0);}
.m8f_c01090{transform:matrix(0.205393,0.003902,-0.004749,0.249955,0,0);-ms-transform:matrix(0.205393,0.003902,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.205393,0.003902,-0.004749,0.249955,0,0);}
.m4e_c01090{transform:matrix(0.205605,0.003495,-0.004249,0.249964,0,0);-ms-transform:matrix(0.205605,0.003495,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.205605,0.003495,-0.004249,0.249964,0,0);}
.m35_c01090{transform:matrix(0.206069,0.003297,-0.003999,0.249968,0,0);-ms-transform:matrix(0.206069,0.003297,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.206069,0.003297,-0.003999,0.249968,0,0);}
.m52_c01090{transform:matrix(0.207030,0.003520,-0.004249,0.249964,0,0);-ms-transform:matrix(0.207030,0.003520,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.207030,0.003520,-0.004249,0.249964,0,0);}
.m67_c01090{transform:matrix(0.207123,0.003935,-0.004749,0.249955,0,0);-ms-transform:matrix(0.207123,0.003935,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.207123,0.003935,-0.004749,0.249955,0,0);}
.m50_c01090{transform:matrix(0.207210,0.003523,-0.004249,0.249964,0,0);-ms-transform:matrix(0.207210,0.003523,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.207210,0.003523,-0.004249,0.249964,0,0);}
.m10c_c01090{transform:matrix(0.207330,0.005183,-0.006248,0.249922,0,0);-ms-transform:matrix(0.207330,0.005183,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.207330,0.005183,-0.006248,0.249922,0,0);}
.m75_c01090{transform:matrix(0.207358,0.003940,-0.004749,0.249955,0,0);-ms-transform:matrix(0.207358,0.003940,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.207358,0.003940,-0.004749,0.249955,0,0);}
.mf5_c01090{transform:matrix(0.207360,0.005184,-0.006248,0.249922,0,0);-ms-transform:matrix(0.207360,0.005184,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.207360,0.005184,-0.006248,0.249922,0,0);}
.m64_c01090{transform:matrix(0.207832,0.003949,-0.004749,0.249955,0,0);-ms-transform:matrix(0.207832,0.003949,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.207832,0.003949,-0.004749,0.249955,0,0);}
.m9a_c01090{transform:matrix(0.209487,0.003980,-0.004749,0.249955,0,0);-ms-transform:matrix(0.209487,0.003980,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.209487,0.003980,-0.004749,0.249955,0,0);}
.m107_c01090{transform:matrix(0.209869,0.005247,-0.006248,0.249922,0,0);-ms-transform:matrix(0.209869,0.005247,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.209869,0.005247,-0.006248,0.249922,0,0);}
.m6c_c01090{transform:matrix(0.209897,0.003988,-0.004749,0.249955,0,0);-ms-transform:matrix(0.209897,0.003988,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.209897,0.003988,-0.004749,0.249955,0,0);}
.m2d_c01090{transform:matrix(0.209908,0.003359,-0.003999,0.249968,0,0);-ms-transform:matrix(0.209908,0.003359,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.209908,0.003359,-0.003999,0.249968,0,0);}
.mbf_c01090{transform:matrix(0.209972,0.003989,-0.004749,0.249955,0,0);-ms-transform:matrix(0.209972,0.003989,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.209972,0.003989,-0.004749,0.249955,0,0);}
.m109_c01090{transform:matrix(0.210544,0.005264,-0.006248,0.249922,0,0);-ms-transform:matrix(0.210544,0.005264,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.210544,0.005264,-0.006248,0.249922,0,0);}
.m94_c01090{transform:matrix(0.210627,0.004002,-0.004749,0.249955,0,0);-ms-transform:matrix(0.210627,0.004002,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.210627,0.004002,-0.004749,0.249955,0,0);}
.m65_c01090{transform:matrix(0.211237,0.004014,-0.004749,0.249955,0,0);-ms-transform:matrix(0.211237,0.004014,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.211237,0.004014,-0.004749,0.249955,0,0);}
.m13a_c01090{transform:matrix(0.211704,0.005293,-0.006248,0.249922,0,0);-ms-transform:matrix(0.211704,0.005293,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.211704,0.005293,-0.006248,0.249922,0,0);}
.maf_c01090{transform:matrix(0.211892,0.004026,-0.004749,0.249955,0,0);-ms-transform:matrix(0.211892,0.004026,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.211892,0.004026,-0.004749,0.249955,0,0);}
.m142_c01090{transform:matrix(0.212184,0.005305,-0.006248,0.249922,0,0);-ms-transform:matrix(0.212184,0.005305,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.212184,0.005305,-0.006248,0.249922,0,0);}
.m49_c01090{transform:matrix(0.212209,0.003608,-0.004249,0.249964,0,0);-ms-transform:matrix(0.212209,0.003608,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.212209,0.003608,-0.004249,0.249964,0,0);}
.m8b_c01090{transform:matrix(0.212472,0.004037,-0.004749,0.249955,0,0);-ms-transform:matrix(0.212472,0.004037,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.212472,0.004037,-0.004749,0.249955,0,0);}
.m33_c01090{transform:matrix(0.212483,0.003400,-0.003999,0.249968,0,0);-ms-transform:matrix(0.212483,0.003400,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.212483,0.003400,-0.003999,0.249968,0,0);}
.m2a_c01090{transform:matrix(0.212583,0.003401,-0.003999,0.249968,0,0);-ms-transform:matrix(0.212583,0.003401,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.212583,0.003401,-0.003999,0.249968,0,0);}
.m87_c01090{transform:matrix(0.213152,0.004050,-0.004749,0.249955,0,0);-ms-transform:matrix(0.213152,0.004050,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.213152,0.004050,-0.004749,0.249955,0,0);}
.m57_c01090{transform:matrix(0.213596,0.004058,-0.004749,0.249955,0,0);-ms-transform:matrix(0.213596,0.004058,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.213596,0.004058,-0.004749,0.249955,0,0);}
.m132_c01090{transform:matrix(0.214168,0.005354,-0.006248,0.249922,0,0);-ms-transform:matrix(0.214168,0.005354,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.214168,0.005354,-0.006248,0.249922,0,0);}
.m143_c01090{transform:matrix(0.214848,0.005371,-0.006248,0.249922,0,0);-ms-transform:matrix(0.214848,0.005371,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.214848,0.005371,-0.006248,0.249922,0,0);}
.m111_c01090{transform:matrix(0.214993,0.005375,-0.006248,0.249922,0,0);-ms-transform:matrix(0.214993,0.005375,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.214993,0.005375,-0.006248,0.249922,0,0);}
.m13b_c01090{transform:matrix(0.215353,0.005384,-0.006248,0.249922,0,0);-ms-transform:matrix(0.215353,0.005384,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.215353,0.005384,-0.006248,0.249922,0,0);}
.m13e_c01090{transform:matrix(0.215673,0.005392,-0.006248,0.249922,0,0);-ms-transform:matrix(0.215673,0.005392,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.215673,0.005392,-0.006248,0.249922,0,0);}
.mc1_c01090{transform:matrix(0.215871,0.004102,-0.004749,0.249955,0,0);-ms-transform:matrix(0.215871,0.004102,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.215871,0.004102,-0.004749,0.249955,0,0);}
.m137_c01090{transform:matrix(0.215938,0.005398,-0.006248,0.249922,0,0);-ms-transform:matrix(0.215938,0.005398,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.215938,0.005398,-0.006248,0.249922,0,0);}
.mc3_c01090{transform:matrix(0.216931,0.004122,-0.004749,0.249955,0,0);-ms-transform:matrix(0.216931,0.004122,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.216931,0.004122,-0.004749,0.249955,0,0);}
.m7a_c01090{transform:matrix(0.217461,0.004132,-0.004749,0.249955,0,0);-ms-transform:matrix(0.217461,0.004132,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.217461,0.004132,-0.004749,0.249955,0,0);}
.m71_c01090{transform:matrix(0.217496,0.004132,-0.004749,0.249955,0,0);-ms-transform:matrix(0.217496,0.004132,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.217496,0.004132,-0.004749,0.249955,0,0);}
.m8c_c01090{transform:matrix(0.217691,0.004136,-0.004749,0.249955,0,0);-ms-transform:matrix(0.217691,0.004136,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.217691,0.004136,-0.004749,0.249955,0,0);}
.mc5_c01090{transform:matrix(0.218581,0.004153,-0.004749,0.249955,0,0);-ms-transform:matrix(0.218581,0.004153,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.218581,0.004153,-0.004749,0.249955,0,0);}
.m12e_c01090{transform:matrix(0.219415,0.007248,-0.008254,0.249864,0,0);-ms-transform:matrix(0.219415,0.007248,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.219415,0.007248,-0.008254,0.249864,0,0);}
.m77_c01090{transform:matrix(0.219760,0.004175,-0.004749,0.249955,0,0);-ms-transform:matrix(0.219760,0.004175,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.219760,0.004175,-0.004749,0.249955,0,0);}
.m2e_c01090{transform:matrix(0.220162,0.003523,-0.003999,0.249968,0,0);-ms-transform:matrix(0.220162,0.003523,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.220162,0.003523,-0.003999,0.249968,0,0);}
.m53_c01090{transform:matrix(0.221023,0.003757,-0.004249,0.249964,0,0);-ms-transform:matrix(0.221023,0.003757,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.221023,0.003757,-0.004249,0.249964,0,0);}
.m58_c01090{transform:matrix(0.221415,0.004207,-0.004749,0.249955,0,0);-ms-transform:matrix(0.221415,0.004207,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.221415,0.004207,-0.004749,0.249955,0,0);}
.m2b_c01090{transform:matrix(0.222097,0.003554,-0.003999,0.249968,0,0);-ms-transform:matrix(0.222097,0.003554,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.222097,0.003554,-0.003999,0.249968,0,0);}
.m8e_c01090{transform:matrix(0.222355,0.004225,-0.004749,0.249955,0,0);-ms-transform:matrix(0.222355,0.004225,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.222355,0.004225,-0.004749,0.249955,0,0);}
.m66_c01090{transform:matrix(0.222450,0.004227,-0.004749,0.249955,0,0);-ms-transform:matrix(0.222450,0.004227,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.222450,0.004227,-0.004749,0.249955,0,0);}
.m139_c01090{transform:matrix(0.223250,0.005581,-0.006248,0.249922,0,0);-ms-transform:matrix(0.223250,0.005581,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.223250,0.005581,-0.006248,0.249922,0,0);}
.md0_c01090{transform:matrix(0.224759,0.004270,-0.004749,0.249955,0,0);-ms-transform:matrix(0.224759,0.004270,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.224759,0.004270,-0.004749,0.249955,0,0);}
.mba_c01090{transform:matrix(0.225479,0.004284,-0.004749,0.249955,0,0);-ms-transform:matrix(0.225479,0.004284,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.225479,0.004284,-0.004749,0.249955,0,0);}
.m6a_c01090{transform:matrix(0.225644,0.004287,-0.004749,0.249955,0,0);-ms-transform:matrix(0.225644,0.004287,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.225644,0.004287,-0.004749,0.249955,0,0);}
.m141_c01090{transform:matrix(0.225664,0.005642,-0.006248,0.249922,0,0);-ms-transform:matrix(0.225664,0.005642,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.225664,0.005642,-0.006248,0.249922,0,0);}
.m7c_c01090{transform:matrix(0.226069,0.004295,-0.004749,0.249955,0,0);-ms-transform:matrix(0.226069,0.004295,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.226069,0.004295,-0.004749,0.249955,0,0);}
.ma7_c01090{transform:matrix(0.226314,0.004300,-0.004749,0.249955,0,0);-ms-transform:matrix(0.226314,0.004300,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.226314,0.004300,-0.004749,0.249955,0,0);}
.m10e_c01090{transform:matrix(0.226519,0.005663,-0.006248,0.249922,0,0);-ms-transform:matrix(0.226519,0.005663,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.226519,0.005663,-0.006248,0.249922,0,0);}
.mfb_c01090{transform:matrix(0.226949,0.005674,-0.006248,0.249922,0,0);-ms-transform:matrix(0.226949,0.005674,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.226949,0.005674,-0.006248,0.249922,0,0);}
.m134_c01090{transform:matrix(0.227154,0.005679,-0.006248,0.249922,0,0);-ms-transform:matrix(0.227154,0.005679,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.227154,0.005679,-0.006248,0.249922,0,0);}
.mc4_c01090{transform:matrix(0.227339,0.004319,-0.004749,0.249955,0,0);-ms-transform:matrix(0.227339,0.004319,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.227339,0.004319,-0.004749,0.249955,0,0);}
.m82_c01090{transform:matrix(0.227389,0.004320,-0.004749,0.249955,0,0);-ms-transform:matrix(0.227389,0.004320,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.227389,0.004320,-0.004749,0.249955,0,0);}
.m5a_c01090{transform:matrix(0.227709,0.004326,-0.004749,0.249955,0,0);-ms-transform:matrix(0.227709,0.004326,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.227709,0.004326,-0.004749,0.249955,0,0);}
.m13d_c01090{transform:matrix(0.228049,0.005701,-0.006248,0.249922,0,0);-ms-transform:matrix(0.228049,0.005701,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.228049,0.005701,-0.006248,0.249922,0,0);}
.mf8_c01090{transform:matrix(0.228564,0.005714,-0.006248,0.249922,0,0);-ms-transform:matrix(0.228564,0.005714,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.228564,0.005714,-0.006248,0.249922,0,0);}
.mde_c01090{transform:matrix(0.228744,0.005719,-0.006248,0.249922,0,0);-ms-transform:matrix(0.228744,0.005719,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.228744,0.005719,-0.006248,0.249922,0,0);}
.m39_c01090{transform:matrix(0.228786,0.003661,-0.003999,0.249968,0,0);-ms-transform:matrix(0.228786,0.003661,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.228786,0.003661,-0.003999,0.249968,0,0);}
.m127_c01090{transform:matrix(0.229000,0.007565,-0.008254,0.249864,0,0);-ms-transform:matrix(0.229000,0.007565,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.229000,0.007565,-0.008254,0.249864,0,0);}
.m101_c01090{transform:matrix(0.229453,0.005736,-0.006248,0.249922,0,0);-ms-transform:matrix(0.229453,0.005736,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.229453,0.005736,-0.006248,0.249922,0,0);}
.m1_c01090{transform:matrix(0.229503,0.003213,-0.003500,0.249976,0,0);-ms-transform:matrix(0.229503,0.003213,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.229503,0.003213,-0.003500,0.249976,0,0);}
.mbc_c01090{transform:matrix(0.229739,0.004365,-0.004749,0.249955,0,0);-ms-transform:matrix(0.229739,0.004365,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.229739,0.004365,-0.004749,0.249955,0,0);}
.mc8_c01090{transform:matrix(0.230173,0.004373,-0.004749,0.249955,0,0);-ms-transform:matrix(0.230173,0.004373,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.230173,0.004373,-0.004749,0.249955,0,0);}
.mf2_c01090{transform:matrix(0.230423,0.005761,-0.006248,0.249922,0,0);-ms-transform:matrix(0.230423,0.005761,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.230423,0.005761,-0.006248,0.249922,0,0);}
.m129_c01090{transform:matrix(0.230789,0.007624,-0.008254,0.249864,0,0);-ms-transform:matrix(0.230789,0.007624,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.230789,0.007624,-0.008254,0.249864,0,0);}
.m118_c01090{transform:matrix(0.230823,0.005771,-0.006248,0.249922,0,0);-ms-transform:matrix(0.230823,0.005771,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.230823,0.005771,-0.006248,0.249922,0,0);}
.m5c_c01090{transform:matrix(0.230873,0.004387,-0.004749,0.249955,0,0);-ms-transform:matrix(0.230873,0.004387,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.230873,0.004387,-0.004749,0.249955,0,0);}
.mf3_c01090{transform:matrix(0.230908,0.005773,-0.006248,0.249922,0,0);-ms-transform:matrix(0.230908,0.005773,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.230908,0.005773,-0.006248,0.249922,0,0);}
.m10f_c01090{transform:matrix(0.231423,0.005786,-0.006248,0.249922,0,0);-ms-transform:matrix(0.231423,0.005786,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.231423,0.005786,-0.006248,0.249922,0,0);}
.mfc_c01090{transform:matrix(0.231568,0.005789,-0.006248,0.249922,0,0);-ms-transform:matrix(0.231568,0.005789,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.231568,0.005789,-0.006248,0.249922,0,0);}
.ma4_c01090{transform:matrix(0.231598,0.004400,-0.004749,0.249955,0,0);-ms-transform:matrix(0.231598,0.004400,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.231598,0.004400,-0.004749,0.249955,0,0);}
.m131_c01090{transform:matrix(0.231908,0.005798,-0.006248,0.249922,0,0);-ms-transform:matrix(0.231908,0.005798,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.231908,0.005798,-0.006248,0.249922,0,0);}
.m12d_c01090{transform:matrix(0.231933,0.007661,-0.008254,0.249864,0,0);-ms-transform:matrix(0.231933,0.007661,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.231933,0.007661,-0.008254,0.249864,0,0);}
.me9_c01090{transform:matrix(0.232212,0.005805,-0.006248,0.249922,0,0);-ms-transform:matrix(0.232212,0.005805,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.232212,0.005805,-0.006248,0.249922,0,0);}
.m55_c01090{transform:matrix(0.232578,0.004419,-0.004749,0.249955,0,0);-ms-transform:matrix(0.232578,0.004419,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.232578,0.004419,-0.004749,0.249955,0,0);}
.me3_c01090{transform:matrix(0.232912,0.005823,-0.006248,0.249922,0,0);-ms-transform:matrix(0.232912,0.005823,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.232912,0.005823,-0.006248,0.249922,0,0);}
.m70_c01090{transform:matrix(0.233528,0.004437,-0.004749,0.249955,0,0);-ms-transform:matrix(0.233528,0.004437,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.233528,0.004437,-0.004749,0.249955,0,0);}
.m11c_c01090{transform:matrix(0.233947,0.005849,-0.006248,0.249922,0,0);-ms-transform:matrix(0.233947,0.005849,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.233947,0.005849,-0.006248,0.249922,0,0);}
.m6f_c01090{transform:matrix(0.234363,0.004453,-0.004749,0.249955,0,0);-ms-transform:matrix(0.234363,0.004453,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.234363,0.004453,-0.004749,0.249955,0,0);}
.me5_c01090{transform:matrix(0.235681,0.005892,-0.006248,0.249922,0,0);-ms-transform:matrix(0.235681,0.005892,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.235681,0.005892,-0.006248,0.249922,0,0);}
.m119_c01090{transform:matrix(0.235856,0.005896,-0.006248,0.249922,0,0);-ms-transform:matrix(0.235856,0.005896,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.235856,0.005896,-0.006248,0.249922,0,0);}
.m28_c01090{transform:matrix(0.235961,0.004011,-0.004249,0.249964,0,0);-ms-transform:matrix(0.235961,0.004011,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.235961,0.004011,-0.004249,0.249964,0,0);}
.m42_c01090{transform:matrix(0.235975,0.003776,-0.003999,0.249968,0,0);-ms-transform:matrix(0.235975,0.003776,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.235975,0.003776,-0.003999,0.249968,0,0);}
.mc6_c01090{transform:matrix(0.236247,0.004489,-0.004749,0.249955,0,0);-ms-transform:matrix(0.236247,0.004489,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.236247,0.004489,-0.004749,0.249955,0,0);}
.m30_c01090{transform:matrix(0.236450,0.003783,-0.003999,0.249968,0,0);-ms-transform:matrix(0.236450,0.003783,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.236450,0.003783,-0.003999,0.249968,0,0);}
.m5d_c01090{transform:matrix(0.236462,0.004493,-0.004749,0.249955,0,0);-ms-transform:matrix(0.236462,0.004493,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.236462,0.004493,-0.004749,0.249955,0,0);}
.m2c_c01090{transform:matrix(0.236475,0.003784,-0.003999,0.249968,0,0);-ms-transform:matrix(0.236475,0.003784,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.236475,0.003784,-0.003999,0.249968,0,0);}
.m51_c01090{transform:matrix(0.236606,0.004022,-0.004249,0.249964,0,0);-ms-transform:matrix(0.236606,0.004022,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.236606,0.004022,-0.004249,0.249964,0,0);}
.m31_c01090{transform:matrix(0.236835,0.003789,-0.003999,0.249968,0,0);-ms-transform:matrix(0.236835,0.003789,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.236835,0.003789,-0.003999,0.249968,0,0);}
.m6e_c01090{transform:matrix(0.237067,0.004504,-0.004749,0.249955,0,0);-ms-transform:matrix(0.237067,0.004504,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.237067,0.004504,-0.004749,0.249955,0,0);}
.mf6_c01090{transform:matrix(0.237651,0.005941,-0.006248,0.249922,0,0);-ms-transform:matrix(0.237651,0.005941,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.237651,0.005941,-0.006248,0.249922,0,0);}
.m10a_c01090{transform:matrix(0.238291,0.005957,-0.006248,0.249922,0,0);-ms-transform:matrix(0.238291,0.005957,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.238291,0.005957,-0.006248,0.249922,0,0);}
.m5e_c01090{transform:matrix(0.238597,0.004533,-0.004749,0.249955,0,0);-ms-transform:matrix(0.238597,0.004533,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.238597,0.004533,-0.004749,0.249955,0,0);}
.m47_c01090{transform:matrix(0.238689,0.003819,-0.003999,0.249968,0,0);-ms-transform:matrix(0.238689,0.003819,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.238689,0.003819,-0.003999,0.249968,0,0);}
.m13c_c01090{transform:matrix(0.238690,0.005967,-0.006248,0.249922,0,0);-ms-transform:matrix(0.238690,0.005967,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.238690,0.005967,-0.006248,0.249922,0,0);}
.md5_c01090{transform:matrix(0.238935,0.005973,-0.006248,0.249922,0,0);-ms-transform:matrix(0.238935,0.005973,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.238935,0.005973,-0.006248,0.249922,0,0);}
.md6_c01090{transform:matrix(0.239195,0.005980,-0.006248,0.249922,0,0);-ms-transform:matrix(0.239195,0.005980,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.239195,0.005980,-0.006248,0.249922,0,0);}
.m6b_c01090{transform:matrix(0.239227,0.004545,-0.004749,0.249955,0,0);-ms-transform:matrix(0.239227,0.004545,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.239227,0.004545,-0.004749,0.249955,0,0);}
.m24_c01090{transform:matrix(0.239235,0.004067,-0.004249,0.249964,0,0);-ms-transform:matrix(0.239235,0.004067,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.239235,0.004067,-0.004249,0.249964,0,0);}
.mc0_c01090{transform:matrix(0.239517,0.004551,-0.004749,0.249955,0,0);-ms-transform:matrix(0.239517,0.004551,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.239517,0.004551,-0.004749,0.249955,0,0);}
.m9e_c01090{transform:matrix(0.239867,0.004557,-0.004749,0.249955,0,0);-ms-transform:matrix(0.239867,0.004557,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.239867,0.004557,-0.004749,0.249955,0,0);}
.m4f_c01090{transform:matrix(0.239895,0.004078,-0.004249,0.249964,0,0);-ms-transform:matrix(0.239895,0.004078,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.239895,0.004078,-0.004249,0.249964,0,0);}
.maa_c01090{transform:matrix(0.239917,0.004558,-0.004749,0.249955,0,0);-ms-transform:matrix(0.239917,0.004558,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.239917,0.004558,-0.004749,0.249955,0,0);}
.m36_c01090{transform:matrix(0.240289,0.003845,-0.003999,0.249968,0,0);-ms-transform:matrix(0.240289,0.003845,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.240289,0.003845,-0.003999,0.249968,0,0);}
.me1_c01090{transform:matrix(0.240560,0.006014,-0.006248,0.249922,0,0);-ms-transform:matrix(0.240560,0.006014,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.240560,0.006014,-0.006248,0.249922,0,0);}
.m79_c01090{transform:matrix(0.241256,0.004584,-0.004749,0.249955,0,0);-ms-transform:matrix(0.241256,0.004584,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.241256,0.004584,-0.004749,0.249955,0,0);}
.mdc_c01090{transform:matrix(0.241540,0.006038,-0.006248,0.249922,0,0);-ms-transform:matrix(0.241540,0.006038,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.241540,0.006038,-0.006248,0.249922,0,0);}
.m62_c01090{transform:matrix(0.241791,0.004594,-0.004749,0.249955,0,0);-ms-transform:matrix(0.241791,0.004594,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.241791,0.004594,-0.004749,0.249955,0,0);}
.m11b_c01090{transform:matrix(0.241884,0.006047,-0.006248,0.249922,0,0);-ms-transform:matrix(0.241884,0.006047,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.241884,0.006047,-0.006248,0.249922,0,0);}
.m22_c01090{transform:matrix(0.241960,0.004113,-0.004249,0.249964,0,0);-ms-transform:matrix(0.241960,0.004113,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.241960,0.004113,-0.004249,0.249964,0,0);}
.m12a_c01090{transform:matrix(0.242288,0.008004,-0.008254,0.249864,0,0);-ms-transform:matrix(0.242288,0.008004,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.242288,0.008004,-0.008254,0.249864,0,0);}
.m56_c01090{transform:matrix(0.242621,0.004610,-0.004749,0.249955,0,0);-ms-transform:matrix(0.242621,0.004610,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.242621,0.004610,-0.004749,0.249955,0,0);}
.mdd_c01090{transform:matrix(0.242679,0.006067,-0.006248,0.249922,0,0);-ms-transform:matrix(0.242679,0.006067,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.242679,0.006067,-0.006248,0.249922,0,0);}
.m2f_c01090{transform:matrix(0.243239,0.003892,-0.003999,0.249968,0,0);-ms-transform:matrix(0.243239,0.003892,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.243239,0.003892,-0.003999,0.249968,0,0);}
.mf0_c01090{transform:matrix(0.243299,0.006082,-0.006248,0.249922,0,0);-ms-transform:matrix(0.243299,0.006082,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.243299,0.006082,-0.006248,0.249922,0,0);}
.m3f_c01090{transform:matrix(0.243509,0.003896,-0.003999,0.249968,0,0);-ms-transform:matrix(0.243509,0.003896,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.243509,0.003896,-0.003999,0.249968,0,0);}
.m25_c01090{transform:matrix(0.243715,0.004143,-0.004249,0.249964,0,0);-ms-transform:matrix(0.243715,0.004143,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.243715,0.004143,-0.004249,0.249964,0,0);}
.mf9_c01090{transform:matrix(0.243849,0.006096,-0.006248,0.249922,0,0);-ms-transform:matrix(0.243849,0.006096,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.243849,0.006096,-0.006248,0.249922,0,0);}
.m34_c01090{transform:matrix(0.243854,0.003902,-0.003999,0.249968,0,0);-ms-transform:matrix(0.243854,0.003902,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.243854,0.003902,-0.003999,0.249968,0,0);}
.m7e_c01090{transform:matrix(0.244211,0.004640,-0.004749,0.249955,0,0);-ms-transform:matrix(0.244211,0.004640,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.244211,0.004640,-0.004749,0.249955,0,0);}
.m3c_c01090{transform:matrix(0.244224,0.003908,-0.003999,0.249968,0,0);-ms-transform:matrix(0.244224,0.003908,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.244224,0.003908,-0.003999,0.249968,0,0);}
.me7_c01090{transform:matrix(0.244399,0.006110,-0.006248,0.249922,0,0);-ms-transform:matrix(0.244399,0.006110,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.244399,0.006110,-0.006248,0.249922,0,0);}
.mab_c01090{transform:matrix(0.244561,0.004647,-0.004749,0.249955,0,0);-ms-transform:matrix(0.244561,0.004647,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.244561,0.004647,-0.004749,0.249955,0,0);}
.m48_c01090{transform:matrix(0.244844,0.003917,-0.003999,0.249968,0,0);-ms-transform:matrix(0.244844,0.003917,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.244844,0.003917,-0.003999,0.249968,0,0);}
.m12b_c01090{transform:matrix(0.245196,0.008100,-0.008254,0.249864,0,0);-ms-transform:matrix(0.245196,0.008100,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.245196,0.008100,-0.008254,0.249864,0,0);}
.m76_c01090{transform:matrix(0.245756,0.004669,-0.004749,0.249955,0,0);-ms-transform:matrix(0.245756,0.004669,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.245756,0.004669,-0.004749,0.249955,0,0);}
.mcd_c01090{transform:matrix(0.246161,0.004677,-0.004749,0.249955,0,0);-ms-transform:matrix(0.246161,0.004677,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.246161,0.004677,-0.004749,0.249955,0,0);}
.md2_c01090{transform:matrix(0.246863,0.006172,-0.006248,0.249922,0,0);-ms-transform:matrix(0.246863,0.006172,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.246863,0.006172,-0.006248,0.249922,0,0);}
.m12f_c01090{transform:matrix(0.246985,0.008159,-0.008254,0.249864,0,0);-ms-transform:matrix(0.246985,0.008159,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.246985,0.008159,-0.008254,0.249864,0,0);}
.m78_c01090{transform:matrix(0.247570,0.004704,-0.004749,0.249955,0,0);-ms-transform:matrix(0.247570,0.004704,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.247570,0.004704,-0.004749,0.249955,0,0);}
.m10b_c01090{transform:matrix(0.247628,0.006191,-0.006248,0.249922,0,0);-ms-transform:matrix(0.247628,0.006191,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.247628,0.006191,-0.006248,0.249922,0,0);}
.m84_c01090{transform:matrix(0.247640,0.004705,-0.004749,0.249955,0,0);-ms-transform:matrix(0.247640,0.004705,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.247640,0.004705,-0.004749,0.249955,0,0);}
.mb2_c01090{transform:matrix(0.248060,0.004713,-0.004749,0.249955,0,0);-ms-transform:matrix(0.248060,0.004713,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.248060,0.004713,-0.004749,0.249955,0,0);}
.m5f_c01090{transform:matrix(0.248835,0.004728,-0.004749,0.249955,0,0);-ms-transform:matrix(0.248835,0.004728,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.248835,0.004728,-0.004749,0.249955,0,0);}
.me8_c01090{transform:matrix(0.248962,0.006224,-0.006248,0.249922,0,0);-ms-transform:matrix(0.248962,0.006224,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.248962,0.006224,-0.006248,0.249922,0,0);}
.ma1_c01090{transform:matrix(0.250110,0.004752,-0.004749,0.249955,0,0);-ms-transform:matrix(0.250110,0.004752,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.250110,0.004752,-0.004749,0.249955,0,0);}
.m110_c01090{transform:matrix(0.250112,0.006253,-0.006248,0.249922,0,0);-ms-transform:matrix(0.250112,0.006253,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.250112,0.006253,-0.006248,0.249922,0,0);}
.m6d_c01090{transform:matrix(0.250360,0.004757,-0.004749,0.249955,0,0);-ms-transform:matrix(0.250360,0.004757,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.250360,0.004757,-0.004749,0.249955,0,0);}
.m38_c01090{transform:matrix(0.250438,0.004007,-0.003999,0.249968,0,0);-ms-transform:matrix(0.250438,0.004007,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.250438,0.004007,-0.003999,0.249968,0,0);}
.m2_c01090{transform:matrix(0.250685,0.003510,-0.003500,0.249976,0,0);-ms-transform:matrix(0.250685,0.003510,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.250685,0.003510,-0.003500,0.249976,0,0);}
.ma5_c01090{transform:matrix(0.250965,0.004768,-0.004749,0.249955,0,0);-ms-transform:matrix(0.250965,0.004768,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.250965,0.004768,-0.004749,0.249955,0,0);}
.mef_c01090{transform:matrix(0.251316,0.006283,-0.006248,0.249922,0,0);-ms-transform:matrix(0.251316,0.006283,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.251316,0.006283,-0.006248,0.249922,0,0);}
.m121_c01090{transform:matrix(0.251321,0.006283,-0.006248,0.249922,0,0);-ms-transform:matrix(0.251321,0.006283,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.251321,0.006283,-0.006248,0.249922,0,0);}
.mda_c01090{transform:matrix(0.251341,0.006284,-0.006248,0.249922,0,0);-ms-transform:matrix(0.251341,0.006284,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.251341,0.006284,-0.006248,0.249922,0,0);}
.m9d_c01090{transform:matrix(0.251355,0.004776,-0.004749,0.249955,0,0);-ms-transform:matrix(0.251355,0.004776,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.251355,0.004776,-0.004749,0.249955,0,0);}
.m126_c01090{transform:matrix(0.251538,0.008309,-0.008254,0.249864,0,0);-ms-transform:matrix(0.251538,0.008309,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.251538,0.008309,-0.008254,0.249864,0,0);}
.meb_c01090{transform:matrix(0.251801,0.006295,-0.006248,0.249922,0,0);-ms-transform:matrix(0.251801,0.006295,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.251801,0.006295,-0.006248,0.249922,0,0);}
.ma9_c01090{transform:matrix(0.252339,0.004794,-0.004749,0.249955,0,0);-ms-transform:matrix(0.252339,0.004794,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.252339,0.004794,-0.004749,0.249955,0,0);}
.mae_c01090{transform:matrix(0.253499,0.004816,-0.004749,0.249955,0,0);-ms-transform:matrix(0.253499,0.004816,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.253499,0.004816,-0.004749,0.249955,0,0);}
.m10d_c01090{transform:matrix(0.253656,0.006341,-0.006248,0.249922,0,0);-ms-transform:matrix(0.253656,0.006341,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.253656,0.006341,-0.006248,0.249922,0,0);}
.m108_c01090{transform:matrix(0.253821,0.006346,-0.006248,0.249922,0,0);-ms-transform:matrix(0.253821,0.006346,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.253821,0.006346,-0.006248,0.249922,0,0);}
.mad_c01090{transform:matrix(0.253869,0.004824,-0.004749,0.249955,0,0);-ms-transform:matrix(0.253869,0.004824,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.253869,0.004824,-0.004749,0.249955,0,0);}
.m5b_c01090{transform:matrix(0.254039,0.004827,-0.004749,0.249955,0,0);-ms-transform:matrix(0.254039,0.004827,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.254039,0.004827,-0.004749,0.249955,0,0);}
.m11d_c01090{transform:matrix(0.254171,0.006354,-0.006248,0.249922,0,0);-ms-transform:matrix(0.254171,0.006354,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.254171,0.006354,-0.006248,0.249922,0,0);}
.m44_c01090{transform:matrix(0.254527,0.004072,-0.003999,0.249968,0,0);-ms-transform:matrix(0.254527,0.004072,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.254527,0.004072,-0.003999,0.249968,0,0);}
.mc9_c01090{transform:matrix(0.254639,0.004838,-0.004749,0.249955,0,0);-ms-transform:matrix(0.254639,0.004838,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.254639,0.004838,-0.004749,0.249955,0,0);}
.m29_c01090{transform:matrix(0.254663,0.004329,-0.004249,0.249964,0,0);-ms-transform:matrix(0.254663,0.004329,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.254663,0.004329,-0.004249,0.249964,0,0);}
.ma8_c01090{transform:matrix(0.254919,0.004843,-0.004749,0.249955,0,0);-ms-transform:matrix(0.254919,0.004843,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.254919,0.004843,-0.004749,0.249955,0,0);}
.m80_c01090{transform:matrix(0.255264,0.004850,-0.004749,0.249955,0,0);-ms-transform:matrix(0.255264,0.004850,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.255264,0.004850,-0.004749,0.249955,0,0);}
.m46_c01090{transform:matrix(0.255402,0.004086,-0.003999,0.249968,0,0);-ms-transform:matrix(0.255402,0.004086,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.255402,0.004086,-0.003999,0.249968,0,0);}
.md9_c01090{transform:matrix(0.255835,0.006396,-0.006248,0.249922,0,0);-ms-transform:matrix(0.255835,0.006396,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.255835,0.006396,-0.006248,0.249922,0,0);}
.m128_c01090{transform:matrix(0.255950,0.008455,-0.008254,0.249864,0,0);-ms-transform:matrix(0.255950,0.008455,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.255950,0.008455,-0.008254,0.249864,0,0);}
.m97_c01090{transform:matrix(0.256344,0.004871,-0.004749,0.249955,0,0);-ms-transform:matrix(0.256344,0.004871,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.256344,0.004871,-0.004749,0.249955,0,0);}
.m123_c01090{transform:matrix(0.256545,0.006414,-0.006248,0.249922,0,0);-ms-transform:matrix(0.256545,0.006414,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.256545,0.006414,-0.006248,0.249922,0,0);}
.m12c_c01090{transform:matrix(0.256880,0.008486,-0.008254,0.249864,0,0);-ms-transform:matrix(0.256880,0.008486,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.256880,0.008486,-0.008254,0.249864,0,0);}
.m100_c01090{transform:matrix(0.257030,0.006426,-0.006248,0.249922,0,0);-ms-transform:matrix(0.257030,0.006426,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.257030,0.006426,-0.006248,0.249922,0,0);}
.m37_c01090{transform:matrix(0.257077,0.004113,-0.003999,0.249968,0,0);-ms-transform:matrix(0.257077,0.004113,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.257077,0.004113,-0.003999,0.249968,0,0);}
.ma6_c01090{transform:matrix(0.257124,0.004885,-0.004749,0.249955,0,0);-ms-transform:matrix(0.257124,0.004885,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.257124,0.004885,-0.004749,0.249955,0,0);}
.m120_c01090{transform:matrix(0.257340,0.006433,-0.006248,0.249922,0,0);-ms-transform:matrix(0.257340,0.006433,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.257340,0.006433,-0.006248,0.249922,0,0);}
.m59_c01090{transform:matrix(0.257868,0.004900,-0.004749,0.249955,0,0);-ms-transform:matrix(0.257868,0.004900,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.257868,0.004900,-0.004749,0.249955,0,0);}
.m7b_c01090{transform:matrix(0.257983,0.004902,-0.004749,0.249955,0,0);-ms-transform:matrix(0.257983,0.004902,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.257983,0.004902,-0.004749,0.249955,0,0);}
.med_c01090{transform:matrix(0.257989,0.006450,-0.006248,0.249922,0,0);-ms-transform:matrix(0.257989,0.006450,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.257989,0.006450,-0.006248,0.249922,0,0);}
.m26_c01090{transform:matrix(0.258008,0.004386,-0.004249,0.249964,0,0);-ms-transform:matrix(0.258008,0.004386,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.258008,0.004386,-0.004249,0.249964,0,0);}
.m32_c01090{transform:matrix(0.258052,0.004129,-0.003999,0.249968,0,0);-ms-transform:matrix(0.258052,0.004129,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.258052,0.004129,-0.003999,0.249968,0,0);}
.mdb_c01090{transform:matrix(0.258229,0.006456,-0.006248,0.249922,0,0);-ms-transform:matrix(0.258229,0.006456,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.258229,0.006456,-0.006248,0.249922,0,0);}
.m106_c01090{transform:matrix(0.258524,0.006463,-0.006248,0.249922,0,0);-ms-transform:matrix(0.258524,0.006463,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.258524,0.006463,-0.006248,0.249922,0,0);}
.m114_c01090{transform:matrix(0.258534,0.006463,-0.006248,0.249922,0,0);-ms-transform:matrix(0.258534,0.006463,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.258534,0.006463,-0.006248,0.249922,0,0);}
.mb6_c01090{transform:matrix(0.258628,0.004914,-0.004749,0.249955,0,0);-ms-transform:matrix(0.258628,0.004914,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.258628,0.004914,-0.004749,0.249955,0,0);}
.m41_c01090{transform:matrix(0.258937,0.004143,-0.003999,0.249968,0,0);-ms-transform:matrix(0.258937,0.004143,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.258937,0.004143,-0.003999,0.249968,0,0);}
.mdf_c01090{transform:matrix(0.259864,0.006497,-0.006248,0.249922,0,0);-ms-transform:matrix(0.259864,0.006497,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.259864,0.006497,-0.006248,0.249922,0,0);}
.mfe_c01090{transform:matrix(0.260344,0.006509,-0.006248,0.249922,0,0);-ms-transform:matrix(0.260344,0.006509,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.260344,0.006509,-0.006248,0.249922,0,0);}
.m112_c01090{transform:matrix(0.260414,0.006510,-0.006248,0.249922,0,0);-ms-transform:matrix(0.260414,0.006510,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.260414,0.006510,-0.006248,0.249922,0,0);}
.me4_c01090{transform:matrix(0.260424,0.006511,-0.006248,0.249922,0,0);-ms-transform:matrix(0.260424,0.006511,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.260424,0.006511,-0.006248,0.249922,0,0);}
.m43_c01090{transform:matrix(0.260492,0.004168,-0.003999,0.249968,0,0);-ms-transform:matrix(0.260492,0.004168,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.260492,0.004168,-0.003999,0.249968,0,0);}
.mcc_c01090{transform:matrix(0.260873,0.004957,-0.004749,0.249955,0,0);-ms-transform:matrix(0.260873,0.004957,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.260873,0.004957,-0.004749,0.249955,0,0);}
.m3d_c01090{transform:matrix(0.261227,0.004180,-0.003999,0.249968,0,0);-ms-transform:matrix(0.261227,0.004180,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.261227,0.004180,-0.003999,0.249968,0,0);}
.m83_c01090{transform:matrix(0.261978,0.004978,-0.004749,0.249955,0,0);-ms-transform:matrix(0.261978,0.004978,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.261978,0.004978,-0.004749,0.249955,0,0);}
.m130_c01090{transform:matrix(0.262527,0.008672,-0.008254,0.249864,0,0);-ms-transform:matrix(0.262527,0.008672,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.262527,0.008672,-0.008254,0.249864,0,0);}
.m9b_c01090{transform:matrix(0.264012,0.005016,-0.004749,0.249955,0,0);-ms-transform:matrix(0.264012,0.005016,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.264012,0.005016,-0.004749,0.249955,0,0);}
.md7_c01090{transform:matrix(0.264682,0.006617,-0.006248,0.249922,0,0);-ms-transform:matrix(0.264682,0.006617,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.264682,0.006617,-0.006248,0.249922,0,0);}
.me0_c01090{transform:matrix(0.264752,0.006619,-0.006248,0.249922,0,0);-ms-transform:matrix(0.264752,0.006619,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.264752,0.006619,-0.006248,0.249922,0,0);}
.me6_c01090{transform:matrix(0.264907,0.006623,-0.006248,0.249922,0,0);-ms-transform:matrix(0.264907,0.006623,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.264907,0.006623,-0.006248,0.249922,0,0);}
.m9f_c01090{transform:matrix(0.265227,0.005039,-0.004749,0.249955,0,0);-ms-transform:matrix(0.265227,0.005039,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.265227,0.005039,-0.004749,0.249955,0,0);}
.mf1_c01090{transform:matrix(0.265802,0.006645,-0.006248,0.249922,0,0);-ms-transform:matrix(0.265802,0.006645,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.265802,0.006645,-0.006248,0.249922,0,0);}
.m23_c01090{transform:matrix(0.266162,0.004525,-0.004249,0.249964,0,0);-ms-transform:matrix(0.266162,0.004525,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.266162,0.004525,-0.004249,0.249964,0,0);}
.m7f_c01090{transform:matrix(0.266442,0.005062,-0.004749,0.249955,0,0);-ms-transform:matrix(0.266442,0.005062,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.266442,0.005062,-0.004749,0.249955,0,0);}
.m11a_c01090{transform:matrix(0.266567,0.006664,-0.006248,0.249922,0,0);-ms-transform:matrix(0.266567,0.006664,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.266567,0.006664,-0.006248,0.249922,0,0);}
.m9c_c01090{transform:matrix(0.266692,0.005067,-0.004749,0.249955,0,0);-ms-transform:matrix(0.266692,0.005067,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.266692,0.005067,-0.004749,0.249955,0,0);}
.mec_c01090{transform:matrix(0.267431,0.006686,-0.006248,0.249922,0,0);-ms-transform:matrix(0.267431,0.006686,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.267431,0.006686,-0.006248,0.249922,0,0);}
.m3b_c01090{transform:matrix(0.268276,0.004292,-0.003999,0.249968,0,0);-ms-transform:matrix(0.268276,0.004292,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.268276,0.004292,-0.003999,0.249968,0,0);}
.m72_c01090{transform:matrix(0.269041,0.005112,-0.004749,0.249955,0,0);-ms-transform:matrix(0.269041,0.005112,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.269041,0.005112,-0.004749,0.249955,0,0);}
.m103_c01090{transform:matrix(0.269176,0.006729,-0.006248,0.249922,0,0);-ms-transform:matrix(0.269176,0.006729,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.269176,0.006729,-0.006248,0.249922,0,0);}
.mc7_c01090{transform:matrix(0.269346,0.005118,-0.004749,0.249955,0,0);-ms-transform:matrix(0.269346,0.005118,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.269346,0.005118,-0.004749,0.249955,0,0);}
.m122_c01090{transform:matrix(0.270171,0.006754,-0.006248,0.249922,0,0);-ms-transform:matrix(0.270171,0.006754,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.270171,0.006754,-0.006248,0.249922,0,0);}
.m40_c01090{transform:matrix(0.271240,0.004340,-0.003999,0.249968,0,0);-ms-transform:matrix(0.271240,0.004340,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.271240,0.004340,-0.003999,0.249968,0,0);}
.mcf_c01090{transform:matrix(0.271306,0.005155,-0.004749,0.249955,0,0);-ms-transform:matrix(0.271306,0.005155,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.271306,0.005155,-0.004749,0.249955,0,0);}
.m105_c01090{transform:matrix(0.272245,0.006806,-0.006248,0.249922,0,0);-ms-transform:matrix(0.272245,0.006806,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.272245,0.006806,-0.006248,0.249922,0,0);}
.md8_c01090{transform:matrix(0.272560,0.006814,-0.006248,0.249922,0,0);-ms-transform:matrix(0.272560,0.006814,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.272560,0.006814,-0.006248,0.249922,0,0);}
.ma3_c01090{transform:matrix(0.273761,0.005201,-0.004749,0.249955,0,0);-ms-transform:matrix(0.273761,0.005201,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.273761,0.005201,-0.004749,0.249955,0,0);}
.m124_c01090{transform:matrix(0.274234,0.006856,-0.006248,0.249922,0,0);-ms-transform:matrix(0.274234,0.006856,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.274234,0.006856,-0.006248,0.249922,0,0);}
.m102_c01090{transform:matrix(0.274604,0.006865,-0.006248,0.249922,0,0);-ms-transform:matrix(0.274604,0.006865,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.274604,0.006865,-0.006248,0.249922,0,0);}
.m113_c01090{transform:matrix(0.275209,0.006880,-0.006248,0.249922,0,0);-ms-transform:matrix(0.275209,0.006880,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.275209,0.006880,-0.006248,0.249922,0,0);}
.m7d_c01090{transform:matrix(0.275420,0.005233,-0.004749,0.249955,0,0);-ms-transform:matrix(0.275420,0.005233,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.275420,0.005233,-0.004749,0.249955,0,0);}
.mb4_c01090{transform:matrix(0.275500,0.005235,-0.004749,0.249955,0,0);-ms-transform:matrix(0.275500,0.005235,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.275500,0.005235,-0.004749,0.249955,0,0);}
.m104_c01090{transform:matrix(0.275559,0.006889,-0.006248,0.249922,0,0);-ms-transform:matrix(0.275559,0.006889,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.275559,0.006889,-0.006248,0.249922,0,0);}
.m81_c01090{transform:matrix(0.275725,0.005239,-0.004749,0.249955,0,0);-ms-transform:matrix(0.275725,0.005239,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.275725,0.005239,-0.004749,0.249955,0,0);}
.m3a_c01090{transform:matrix(0.275735,0.004412,-0.003999,0.249968,0,0);-ms-transform:matrix(0.275735,0.004412,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.275735,0.004412,-0.003999,0.249968,0,0);}
.m99_c01090{transform:matrix(0.276750,0.005258,-0.004749,0.249955,0,0);-ms-transform:matrix(0.276750,0.005258,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.276750,0.005258,-0.004749,0.249955,0,0);}
.mcb_c01090{transform:matrix(0.277495,0.005272,-0.004749,0.249955,0,0);-ms-transform:matrix(0.277495,0.005272,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.277495,0.005272,-0.004749,0.249955,0,0);}
.m21_c01090{transform:matrix(0.277630,0.004720,-0.004249,0.249964,0,0);-ms-transform:matrix(0.277630,0.004720,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.277630,0.004720,-0.004249,0.249964,0,0);}
.mee_c01090{transform:matrix(0.277743,0.006944,-0.006248,0.249922,0,0);-ms-transform:matrix(0.277743,0.006944,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.277743,0.006944,-0.006248,0.249922,0,0);}
.ma0_c01090{transform:matrix(0.277845,0.005279,-0.004749,0.249955,0,0);-ms-transform:matrix(0.277845,0.005279,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.277845,0.005279,-0.004749,0.249955,0,0);}
.mca_c01090{transform:matrix(0.278110,0.005284,-0.004749,0.249955,0,0);-ms-transform:matrix(0.278110,0.005284,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.278110,0.005284,-0.004749,0.249955,0,0);}
.mea_c01090{transform:matrix(0.278128,0.006953,-0.006248,0.249922,0,0);-ms-transform:matrix(0.278128,0.006953,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.278128,0.006953,-0.006248,0.249922,0,0);}
.m4d_c01090{transform:matrix(0.278175,0.004729,-0.004249,0.249964,0,0);-ms-transform:matrix(0.278175,0.004729,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.278175,0.004729,-0.004249,0.249964,0,0);}
.mb9_c01090{transform:matrix(0.278250,0.005287,-0.004749,0.249955,0,0);-ms-transform:matrix(0.278250,0.005287,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.278250,0.005287,-0.004749,0.249955,0,0);}
.me2_c01090{transform:matrix(0.278463,0.006962,-0.006248,0.249922,0,0);-ms-transform:matrix(0.278463,0.006962,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.278463,0.006962,-0.006248,0.249922,0,0);}
.mce_c01090{transform:matrix(0.278500,0.005291,-0.004749,0.249955,0,0);-ms-transform:matrix(0.278500,0.005291,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.278500,0.005291,-0.004749,0.249955,0,0);}
.m11f_c01090{transform:matrix(0.278773,0.006969,-0.006248,0.249922,0,0);-ms-transform:matrix(0.278773,0.006969,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.278773,0.006969,-0.006248,0.249922,0,0);}
.md3_c01090{transform:matrix(0.279258,0.006981,-0.006248,0.249922,0,0);-ms-transform:matrix(0.279258,0.006981,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.279258,0.006981,-0.006248,0.249922,0,0);}
.m117_c01090{transform:matrix(0.280792,0.007020,-0.006248,0.249922,0,0);-ms-transform:matrix(0.280792,0.007020,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.280792,0.007020,-0.006248,0.249922,0,0);}
.m3_c01090{transform:matrix(0.280852,0.003932,-0.003500,0.249976,0,0);-ms-transform:matrix(0.280852,0.003932,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.280852,0.003932,-0.003500,0.249976,0,0);}
.m3e_c01090{transform:matrix(0.280944,0.004495,-0.003999,0.249968,0,0);-ms-transform:matrix(0.280944,0.004495,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.280944,0.004495,-0.003999,0.249968,0,0);}
.ma2_c01090{transform:matrix(0.281999,0.005358,-0.004749,0.249955,0,0);-ms-transform:matrix(0.281999,0.005358,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.281999,0.005358,-0.004749,0.249955,0,0);}
.md4_c01090{transform:matrix(0.282792,0.007070,-0.006248,0.249922,0,0);-ms-transform:matrix(0.282792,0.007070,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.282792,0.007070,-0.006248,0.249922,0,0);}
.m0_c01090{transform:matrix(0.283117,0.003964,-0.003500,0.249976,0,0);-ms-transform:matrix(0.283117,0.003964,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.283117,0.003964,-0.003500,0.249976,0,0);}
.mfd_c01090{transform:matrix(0.283401,0.007085,-0.006248,0.249922,0,0);-ms-transform:matrix(0.283401,0.007085,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.283401,0.007085,-0.006248,0.249922,0,0);}
.m27_c01090{transform:matrix(0.284034,0.004829,-0.004249,0.249964,0,0);-ms-transform:matrix(0.284034,0.004829,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.284034,0.004829,-0.004249,0.249964,0,0);}
.m11e_c01090{transform:matrix(0.285396,0.007135,-0.006248,0.249922,0,0);-ms-transform:matrix(0.285396,0.007135,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.285396,0.007135,-0.006248,0.249922,0,0);}
.m98_c01090{transform:matrix(0.288013,0.005472,-0.004749,0.249955,0,0);-ms-transform:matrix(0.288013,0.005472,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.288013,0.005472,-0.004749,0.249955,0,0);}
.me_c01090{transform:matrix(0.289663,0.004635,-0.003999,0.249968,0,0);-ms-transform:matrix(0.289663,0.004635,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.289663,0.004635,-0.003999,0.249968,0,0);}
.mb8_c01090{transform:matrix(0.290753,0.005524,-0.004749,0.249955,0,0);-ms-transform:matrix(0.290753,0.005524,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.290753,0.005524,-0.004749,0.249955,0,0);}
.mb7_c01090{transform:matrix(0.291412,0.005537,-0.004749,0.249955,0,0);-ms-transform:matrix(0.291412,0.005537,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.291412,0.005537,-0.004749,0.249955,0,0);}
.mb3_c01090{transform:matrix(0.292822,0.005564,-0.004749,0.249955,0,0);-ms-transform:matrix(0.292822,0.005564,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.292822,0.005564,-0.004749,0.249955,0,0);}
.mb1_c01090{transform:matrix(0.295222,0.005609,-0.004749,0.249955,0,0);-ms-transform:matrix(0.295222,0.005609,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.295222,0.005609,-0.004749,0.249955,0,0);}
.m20_c01090{transform:matrix(0.295427,0.004727,-0.003999,0.249968,0,0);-ms-transform:matrix(0.295427,0.004727,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.295427,0.004727,-0.003999,0.249968,0,0);}
.m96_c01090{transform:matrix(0.297691,0.005656,-0.004749,0.249955,0,0);-ms-transform:matrix(0.297691,0.005656,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.297691,0.005656,-0.004749,0.249955,0,0);}
.mb5_c01090{transform:matrix(0.300096,0.005702,-0.004749,0.249955,0,0);-ms-transform:matrix(0.300096,0.005702,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.300096,0.005702,-0.004749,0.249955,0,0);}
.mb0_c01090{transform:matrix(0.300606,0.005712,-0.004749,0.249955,0,0);-ms-transform:matrix(0.300606,0.005712,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.300606,0.005712,-0.004749,0.249955,0,0);}
.m116_c01090{transform:matrix(0.301446,0.007536,-0.006248,0.249922,0,0);-ms-transform:matrix(0.301446,0.007536,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.301446,0.007536,-0.006248,0.249922,0,0);}
.md_c01090{transform:matrix(0.301831,0.004829,-0.003999,0.249968,0,0);-ms-transform:matrix(0.301831,0.004829,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.301831,0.004829,-0.003999,0.249968,0,0);}
.m11_c01090{transform:matrix(0.309195,0.004947,-0.003999,0.249968,0,0);-ms-transform:matrix(0.309195,0.004947,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.309195,0.004947,-0.003999,0.249968,0,0);}
.m10_c01090{transform:matrix(0.315315,0.005045,-0.003999,0.249968,0,0);-ms-transform:matrix(0.315315,0.005045,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.315315,0.005045,-0.003999,0.249968,0,0);}
.m16_c01090{transform:matrix(0.328933,0.005263,-0.003999,0.249968,0,0);-ms-transform:matrix(0.328933,0.005263,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.328933,0.005263,-0.003999,0.249968,0,0);}
.ma_c01090{transform:matrix(0.331998,0.005312,-0.003999,0.249968,0,0);-ms-transform:matrix(0.331998,0.005312,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.331998,0.005312,-0.003999,0.249968,0,0);}
.m13_c01090{transform:matrix(0.335367,0.005366,-0.003999,0.249968,0,0);-ms-transform:matrix(0.335367,0.005366,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.335367,0.005366,-0.003999,0.249968,0,0);}
.m1f_c01090{transform:matrix(0.337042,0.005393,-0.003999,0.249968,0,0);-ms-transform:matrix(0.337042,0.005393,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.337042,0.005393,-0.003999,0.249968,0,0);}
.m4c_c01090{transform:matrix(0.339656,0.005774,-0.004249,0.249964,0,0);-ms-transform:matrix(0.339656,0.005774,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.339656,0.005774,-0.004249,0.249964,0,0);}
.m73_c01090{transform:matrix(0.344203,0.006540,-0.004749,0.249955,0,0);-ms-transform:matrix(0.344203,0.006540,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.344203,0.006540,-0.004749,0.249955,0,0);}
.m1c_c01090{transform:matrix(0.350135,0.005602,-0.003999,0.249968,0,0);-ms-transform:matrix(0.350135,0.005602,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.350135,0.005602,-0.003999,0.249968,0,0);}
.mb_c01090{transform:matrix(0.356499,0.005704,-0.003999,0.249968,0,0);-ms-transform:matrix(0.356499,0.005704,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.356499,0.005704,-0.003999,0.249968,0,0);}
.m74_c01090{transform:matrix(0.358100,0.006804,-0.004749,0.249955,0,0);-ms-transform:matrix(0.358100,0.006804,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.358100,0.006804,-0.004749,0.249955,0,0);}
.m17_c01090{transform:matrix(0.370428,0.005927,-0.003999,0.249968,0,0);-ms-transform:matrix(0.370428,0.005927,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.370428,0.005927,-0.003999,0.249968,0,0);}
.mf_c01090{transform:matrix(0.379426,0.006071,-0.003999,0.249968,0,0);-ms-transform:matrix(0.379426,0.006071,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.379426,0.006071,-0.003999,0.249968,0,0);}
.mff_c01090{transform:matrix(0.382935,0.009573,-0.006248,0.249922,0,0);-ms-transform:matrix(0.382935,0.009573,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.382935,0.009573,-0.006248,0.249922,0,0);}
.m115_c01090{transform:matrix(0.388624,0.009716,-0.006248,0.249922,0,0);-ms-transform:matrix(0.388624,0.009716,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.388624,0.009716,-0.006248,0.249922,0,0);}
.m1d_c01090{transform:matrix(0.394410,0.006311,-0.003999,0.249968,0,0);-ms-transform:matrix(0.394410,0.006311,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.394410,0.006311,-0.003999,0.249968,0,0);}
.m1e_c01090{transform:matrix(0.399574,0.006393,-0.003999,0.249968,0,0);-ms-transform:matrix(0.399574,0.006393,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.399574,0.006393,-0.003999,0.249968,0,0);}
.m1a_c01090{transform:matrix(0.410437,0.006567,-0.003999,0.249968,0,0);-ms-transform:matrix(0.410437,0.006567,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.410437,0.006567,-0.003999,0.249968,0,0);}
.m15_c01090{transform:matrix(0.416122,0.006658,-0.003999,0.249968,0,0);-ms-transform:matrix(0.416122,0.006658,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.416122,0.006658,-0.003999,0.249968,0,0);}
.mc_c01090{transform:matrix(0.436749,0.006988,-0.003999,0.249968,0,0);-ms-transform:matrix(0.436749,0.006988,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.436749,0.006988,-0.003999,0.249968,0,0);}
.m19_c01090{transform:matrix(0.446823,0.007149,-0.003999,0.249968,0,0);-ms-transform:matrix(0.446823,0.007149,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.446823,0.007149,-0.003999,0.249968,0,0);}
.m1b_c01090{transform:matrix(0.453372,0.007254,-0.003999,0.249968,0,0);-ms-transform:matrix(0.453372,0.007254,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.453372,0.007254,-0.003999,0.249968,0,0);}
.m8_c01090{transform:matrix(0.487893,0.007806,-0.003999,0.249968,0,0);-ms-transform:matrix(0.487893,0.007806,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.487893,0.007806,-0.003999,0.249968,0,0);}
.m4_c01090{transform:matrix(0.585695,0.009371,-0.003999,0.249968,0,0);-ms-transform:matrix(0.585695,0.009371,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.585695,0.009371,-0.003999,0.249968,0,0);}
.m7_c01090{transform:matrix(0.600298,0.009605,-0.003999,0.249968,0,0);-ms-transform:matrix(0.600298,0.009605,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.600298,0.009605,-0.003999,0.249968,0,0);}
.m9_c01090{transform:matrix(0.603848,0.009662,-0.003999,0.249968,0,0);-ms-transform:matrix(0.603848,0.009662,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.603848,0.009662,-0.003999,0.249968,0,0);}
.m5_c01090{transform:matrix(0.655126,0.010482,-0.003999,0.249968,0,0);-ms-transform:matrix(0.655126,0.010482,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.655126,0.010482,-0.003999,0.249968,0,0);}
.m18_c01090{transform:matrix(0.697121,0.011154,-0.003999,0.249968,0,0);-ms-transform:matrix(0.697121,0.011154,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.697121,0.011154,-0.003999,0.249968,0,0);}
.m12_c01090{transform:matrix(0.767822,0.012285,-0.003999,0.249968,0,0);-ms-transform:matrix(0.767822,0.012285,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.767822,0.012285,-0.003999,0.249968,0,0);}
.m14_c01090{transform:matrix(1.175989,0.018816,-0.003999,0.249968,0,0);-ms-transform:matrix(1.175989,0.018816,-0.003999,0.249968,0,0);-webkit-transform:matrix(1.175989,0.018816,-0.003999,0.249968,0,0);}
.m6_c01090{transform:matrix(1.514436,0.024231,-0.003999,0.249968,0,0);-ms-transform:matrix(1.514436,0.024231,-0.003999,0.249968,0,0);-webkit-transform:matrix(1.514436,0.024231,-0.003999,0.249968,0,0);}
.v0_c01090{vertical-align:0.000000px;}
.ls0_c01090{letter-spacing:0.000000px;}
.sc__c01090{text-shadow:none;}
.sc0_c01090{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__c01090{-webkit-text-stroke:0px transparent;}
.sc0_c01090{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01090{word-spacing:0.000000px;}
.fc0_c01090{color:transparent;}
.fs1_c01090{font-size:18.002304px;}
.fsa_c01090{font-size:66.011912px;}
.fs0_c01090{font-size:72.007056px;}
.fs4_c01090{font-size:72.009215px;}
.fs2_c01090{font-size:72.010403px;}
.fs8_c01090{font-size:72.012995px;}
.fsc_c01090{font-size:72.022496px;}
.fsf_c01090{font-size:77.964502px;}
.fs3_c01090{font-size:78.009983px;}
.fs6_c01090{font-size:78.014078px;}
.fse_c01090{font-size:78.024371px;}
.fs5_c01090{font-size:84.012137px;}
.fsb_c01090{font-size:84.015161px;}
.fsd_c01090{font-size:84.026246px;}
.fs7_c01090{font-size:90.016244px;}
.fs9_c01090{font-size:96.017326px;}
.y0_c01090{bottom:0.000000px;}
.y14f_c01090{bottom:39.422737px;}
.y14e_c01090{bottom:40.640700px;}
.y14d_c01090{bottom:41.854012px;}
.y14c_c01090{bottom:42.578475px;}
.y14b_c01090{bottom:43.083825px;}
.y14a_c01090{bottom:43.803600px;}
.y149_c01090{bottom:44.304488px;}
.y148_c01090{bottom:44.772150px;}
.y147_c01090{bottom:46.472363px;}
.y146_c01090{bottom:49.406738px;}
.y145_c01090{bottom:74.499713px;}
.y144_c01090{bottom:75.890963px;}
.y143_c01090{bottom:77.268712px;}
.y142_c01090{bottom:78.098888px;}
.y141_c01090{bottom:78.659813px;}
.y140_c01090{bottom:79.767300px;}
.y13f_c01090{bottom:80.577562px;}
.y13e_c01090{bottom:82.508625px;}
.y13d_c01090{bottom:83.345362px;}
.y13c_c01090{bottom:84.743700px;}
.y13b_c01090{bottom:86.140500px;}
.y13a_c01090{bottom:116.488161px;}
.y139_c01090{bottom:118.690465px;}
.y138_c01090{bottom:119.761744px;}
.y137_c01090{bottom:121.247140px;}
.y136_c01090{bottom:124.894053px;}
.y135_c01090{bottom:128.730303px;}
.y134_c01090{bottom:130.786236px;}
.y133_c01090{bottom:131.543784px;}
.y132_c01090{bottom:134.428694px;}
.y131_c01090{bottom:135.859491px;}
.y130_c01090{bottom:138.789000px;}
.y12f_c01090{bottom:154.965337px;}
.y12e_c01090{bottom:156.839737px;}
.y12d_c01090{bottom:158.010187px;}
.y12c_c01090{bottom:159.660975px;}
.y12b_c01090{bottom:160.806937px;}
.y12a_c01090{bottom:162.213037px;}
.y129_c01090{bottom:164.776687px;}
.y128_c01090{bottom:167.808825px;}
.y127_c01090{bottom:168.950137px;}
.y126_c01090{bottom:191.749087px;}
.y125_c01090{bottom:192.700500px;}
.y124_c01090{bottom:194.051775px;}
.y123_c01090{bottom:194.720737px;}
.y122_c01090{bottom:195.386587px;}
.y121_c01090{bottom:197.601637px;}
.y120_c01090{bottom:198.322837px;}
.y11f_c01090{bottom:200.054550px;}
.y11e_c01090{bottom:201.161737px;}
.y11d_c01090{bottom:203.598637px;}
.y11c_c01090{bottom:205.142962px;}
.y11b_c01090{bottom:226.932262px;}
.y11a_c01090{bottom:228.500287px;}
.y119_c01090{bottom:229.386412px;}
.y118_c01090{bottom:229.834312px;}
.y117_c01090{bottom:231.607087px;}
.y116_c01090{bottom:232.276050px;}
.y115_c01090{bottom:233.852812px;}
.y114_c01090{bottom:235.187775px;}
.y113_c01090{bottom:235.831012px;}
.y112_c01090{bottom:237.602850px;}
.y111_c01090{bottom:238.261162px;}
.y110_c01090{bottom:240.253387px;}
.y10f_c01090{bottom:262.733662px;}
.y10e_c01090{bottom:265.013325px;}
.y10d_c01090{bottom:266.578762px;}
.y10c_c01090{bottom:268.610587px;}
.y10b_c01090{bottom:269.380012px;}
.y10a_c01090{bottom:270.653475px;}
.y109_c01090{bottom:271.659450px;}
.y108_c01090{bottom:273.186862px;}
.y107_c01090{bottom:273.957075px;}
.y106_c01090{bottom:276.515662px;}
.y105_c01090{bottom:277.253887px;}
.y104_c01090{bottom:298.119600px;}
.y103_c01090{bottom:298.860637px;}
.y102_c01090{bottom:299.625150px;}
.y101_c01090{bottom:302.456962px;}
.y100_c01090{bottom:304.243837px;}
.yff_c01090{bottom:304.980675px;}
.yfe_c01090{bottom:307.279425px;}
.yfd_c01090{bottom:308.056087px;}
.yfc_c01090{bottom:308.806612px;}
.yfb_c01090{bottom:311.352150px;}
.yfa_c01090{bottom:312.903750px;}
.yf9_c01090{bottom:333.959437px;}
.yf8_c01090{bottom:334.628925px;}
.yf7_c01090{bottom:335.524875px;}
.yf6_c01090{bottom:337.514700px;}
.yf5_c01090{bottom:338.638425px;}
.yf4_c01090{bottom:340.382662px;}
.yf3_c01090{bottom:341.511937px;}
.yf2_c01090{bottom:343.731262px;}
.yf1_c01090{bottom:344.379750px;}
.yf0_c01090{bottom:345.497437px;}
.yef_c01090{bottom:346.394062px;}
.yee_c01090{bottom:369.129187px;}
.yed_c01090{bottom:369.811087px;}
.yec_c01090{bottom:370.480575px;}
.yeb_c01090{bottom:371.144400px;}
.yea_c01090{bottom:372.937237px;}
.ye9_c01090{bottom:373.591275px;}
.ye8_c01090{bottom:375.572325px;}
.ye7_c01090{bottom:376.702950px;}
.ye6_c01090{bottom:377.350912px;}
.ye5_c01090{bottom:378.242812px;}
.ye4_c01090{bottom:379.112775px;}
.ye3_c01090{bottom:380.457150px;}
.ye2_c01090{bottom:381.775162px;}
.ye1_c01090{bottom:404.894925px;}
.ye0_c01090{bottom:407.112300px;}
.ydf_c01090{bottom:408.807375px;}
.yde_c01090{bottom:409.649325px;}
.ydd_c01090{bottom:410.716350px;}
.ydc_c01090{bottom:414.343012px;}
.ydb_c01090{bottom:417.387825px;}
.yda_c01090{bottom:418.509000px;}
.yd9_c01090{bottom:448.034547px;}
.yd8_c01090{bottom:452.995658px;}
.yd7_c01090{bottom:476.757677px;}
.yd6_c01090{bottom:478.960929px;}
.yd5_c01090{bottom:479.873754px;}
.yd4_c01090{bottom:480.769650px;}
.yd3_c01090{bottom:482.078079px;}
.yd2_c01090{bottom:482.741955px;}
.yd1_c01090{bottom:484.756173px;}
.yd0_c01090{bottom:485.631588px;}
.ycf_c01090{bottom:486.932390px;}
.yce_c01090{bottom:487.618371px;}
.ycd_c01090{bottom:489.183558px;}
.ycc_c01090{bottom:511.446218px;}
.ycb_c01090{bottom:511.955714px;}
.yca_c01090{bottom:512.472638px;}
.yc9_c01090{bottom:513.935600px;}
.yc8_c01090{bottom:514.915236px;}
.yc7_c01090{bottom:515.853533px;}
.yc6_c01090{bottom:517.084754px;}
.yc5_c01090{bottom:519.556134px;}
.yc4_c01090{bottom:520.263345px;}
.yc3_c01090{bottom:520.748666px;}
.yc2_c01090{bottom:521.481809px;}
.yc1_c01090{bottom:522.948447px;}
.yc0_c01090{bottom:523.673279px;}
.ybf_c01090{bottom:525.370974px;}
.ybe_c01090{bottom:548.410314px;}
.ybd_c01090{bottom:550.192284px;}
.ybc_c01090{bottom:551.538038px;}
.ybb_c01090{bottom:552.217977px;}
.yba_c01090{bottom:554.428259px;}
.yb9_c01090{bottom:554.880567px;}
.yb8_c01090{bottom:556.405380px;}
.yb7_c01090{bottom:557.079716px;}
.yb6_c01090{bottom:558.650859px;}
.yb5_c01090{bottom:561.286014px;}
.yb4_c01090{bottom:583.533401px;}
.yb3_c01090{bottom:585.052964px;}
.yb2_c01090{bottom:586.741218px;}
.yb1_c01090{bottom:587.160938px;}
.yb0_c01090{bottom:588.429587px;}
.yaf_c01090{bottom:589.486480px;}
.yae_c01090{bottom:591.378425px;}
.yad_c01090{bottom:593.465793px;}
.yac_c01090{bottom:594.314580px;}
.yab_c01090{bottom:596.393313px;}
.yaa_c01090{bottom:618.244181px;}
.ya9_c01090{bottom:618.903325px;}
.ya8_c01090{bottom:620.506322px;}
.ya7_c01090{bottom:622.943247px;}
.ya6_c01090{bottom:623.395442px;}
.ya5_c01090{bottom:625.599007px;}
.ya4_c01090{bottom:626.949264px;}
.ya3_c01090{bottom:627.586703px;}
.ya2_c01090{bottom:628.704312px;}
.ya1_c01090{bottom:630.686050px;}
.ya0_c01090{bottom:632.035595px;}
.y9f_c01090{bottom:657.063703px;}
.y9e_c01090{bottom:657.819147px;}
.y9d_c01090{bottom:659.738605px;}
.y9c_c01090{bottom:660.416692px;}
.y9b_c01090{bottom:661.978802px;}
.y9a_c01090{bottom:663.971199px;}
.y99_c01090{bottom:666.401769px;}
.y98_c01090{bottom:666.843818px;}
.y97_c01090{bottom:668.395153px;}
.y96_c01090{bottom:669.030854px;}
.y95_c01090{bottom:691.213311px;}
.y94_c01090{bottom:692.017298px;}
.y93_c01090{bottom:692.437584px;}
.y92_c01090{bottom:694.217789px;}
.y91_c01090{bottom:694.824909px;}
.y90_c01090{bottom:696.244424px;}
.y8f_c01090{bottom:697.415512px;}
.y8e_c01090{bottom:698.013502px;}
.y8d_c01090{bottom:699.032976px;}
.y8c_c01090{bottom:700.011218px;}
.y8b_c01090{bottom:701.231518px;}
.y8a_c01090{bottom:701.619921px;}
.y89_c01090{bottom:702.787248px;}
.y88_c01090{bottom:725.148933px;}
.y87_c01090{bottom:726.494373px;}
.y86_c01090{bottom:727.175538px;}
.y85_c01090{bottom:728.768502px;}
.y84_c01090{bottom:729.648021px;}
.y83_c01090{bottom:730.988844px;}
.y82_c01090{bottom:731.853486px;}
.y81_c01090{bottom:734.067985px;}
.y80_c01090{bottom:734.732146px;}
.y7f_c01090{bottom:735.639214px;}
.y7e_c01090{bottom:736.069417px;}
.y7d_c01090{bottom:736.950077px;}
.y7c_c01090{bottom:738.052096px;}
.y7b_c01090{bottom:738.705598px;}
.y7a_c01090{bottom:761.745799px;}
.y79_c01090{bottom:762.400954px;}
.y78_c01090{bottom:762.890673px;}
.y77_c01090{bottom:764.197477px;}
.y76_c01090{bottom:766.668820px;}
.y75_c01090{bottom:768.202867px;}
.y74_c01090{bottom:768.664011px;}
.y73_c01090{bottom:769.749340px;}
.y72_c01090{bottom:771.062301px;}
.y71_c01090{bottom:772.645917px;}
.y70_c01090{bottom:773.294602px;}
.y6f_c01090{bottom:774.622326px;}
.y6e_c01090{bottom:799.274790px;}
.y6d_c01090{bottom:799.867735px;}
.y6c_c01090{bottom:801.058016px;}
.y6b_c01090{bottom:802.269168px;}
.y6a_c01090{bottom:804.087630px;}
.y69_c01090{bottom:805.469760px;}
.y68_c01090{bottom:806.654083px;}
.y67_c01090{bottom:807.262419px;}
.y66_c01090{bottom:809.011519px;}
.y65_c01090{bottom:809.458094px;}
.y64_c01090{bottom:833.040338px;}
.y63_c01090{bottom:834.524874px;}
.y62_c01090{bottom:835.592114px;}
.y61_c01090{bottom:836.849220px;}
.y60_c01090{bottom:837.299606px;}
.y5f_c01090{bottom:839.168721px;}
.y5e_c01090{bottom:840.025374px;}
.y5d_c01090{bottom:842.118727px;}
.y5c_c01090{bottom:842.765279px;}
.y5b_c01090{bottom:843.395071px;}
.y5a_c01090{bottom:844.858119px;}
.y59_c01090{bottom:845.914500px;}
.y58_c01090{bottom:869.958241px;}
.y57_c01090{bottom:871.097097px;}
.y56_c01090{bottom:872.038302px;}
.y55_c01090{bottom:873.751851px;}
.y54_c01090{bottom:874.518356px;}
.y53_c01090{bottom:876.400536px;}
.y52_c01090{bottom:876.970002px;}
.y51_c01090{bottom:877.558440px;}
.y50_c01090{bottom:878.866080px;}
.y4f_c01090{bottom:879.787523px;}
.y4e_c01090{bottom:880.357448px;}
.y4d_c01090{bottom:881.284500px;}
.y4c_c01090{bottom:906.258552px;}
.y4b_c01090{bottom:907.498776px;}
.y4a_c01090{bottom:908.941896px;}
.y49_c01090{bottom:909.282432px;}
.y48_c01090{bottom:910.873776px;}
.y47_c01090{bottom:912.674928px;}
.y46_c01090{bottom:913.543488px;}
.y45_c01090{bottom:915.314736px;}
.y44_c01090{bottom:915.850416px;}
.y43_c01090{bottom:916.372920px;}
.y42_c01090{bottom:942.052884px;}
.y41_c01090{bottom:942.555300px;}
.y40_c01090{bottom:944.387592px;}
.y3f_c01090{bottom:945.704832px;}
.y3e_c01090{bottom:946.385712px;}
.y3d_c01090{bottom:947.406996px;}
.y3c_c01090{bottom:949.042776px;}
.y3b_c01090{bottom:949.532568px;}
.y3a_c01090{bottom:950.378472px;}
.y39_c01090{bottom:951.208860px;}
.y38_c01090{bottom:976.084728px;}
.y37_c01090{bottom:977.168568px;}
.y36_c01090{bottom:977.696520px;}
.y35_c01090{bottom:978.076848px;}
.y34_c01090{bottom:978.591072px;}
.y33_c01090{bottom:980.375208px;}
.y32_c01090{bottom:981.091968px;}
.y31_c01090{bottom:981.981984px;}
.y30_c01090{bottom:983.391360px;}
.y2f_c01090{bottom:983.922648px;}
.y2e_c01090{bottom:984.449544px;}
.y2d_c01090{bottom:985.512336px;}
.y2c_c01090{bottom:986.052408px;}
.y2b_c01090{bottom:986.583000px;}
.y2a_c01090{bottom:1013.257704px;}
.y29_c01090{bottom:1014.005925px;}
.y28_c01090{bottom:1016.113831px;}
.y27_c01090{bottom:1017.050752px;}
.y26_c01090{bottom:1017.821133px;}
.y25_c01090{bottom:1018.385703px;}
.y24_c01090{bottom:1019.520427px;}
.y23_c01090{bottom:1020.075970px;}
.y22_c01090{bottom:1021.953000px;}
.y21_c01090{bottom:1115.057316px;}
.y20_c01090{bottom:1115.230980px;}
.y1f_c01090{bottom:1115.438952px;}
.y1e_c01090{bottom:1115.941560px;}
.y1d_c01090{bottom:1116.090876px;}
.y1c_c01090{bottom:1116.277572px;}
.y1b_c01090{bottom:1116.435528px;}
.y1a_c01090{bottom:1116.609264px;}
.y19_c01090{bottom:1116.940116px;}
.y18_c01090{bottom:1117.109532px;}
.y17_c01090{bottom:1117.258920px;}
.y16_c01090{bottom:1117.446384px;}
.y15_c01090{bottom:1117.948560px;}
.y12_c01090{bottom:1118.032872px;}
.y11_c01090{bottom:1118.158200px;}
.y14_c01090{bottom:1118.224416px;}
.y10_c01090{bottom:1118.521032px;}
.y13_c01090{bottom:1118.609340px;}
.yf_c01090{bottom:1118.737008px;}
.ye_c01090{bottom:1118.862408px;}
.yd_c01090{bottom:1119.242520px;}
.yc_c01090{bottom:1119.419688px;}
.yb_c01090{bottom:1119.579432px;}
.ya_c01090{bottom:1119.834408px;}
.y9_c01090{bottom:1120.176600px;}
.y8_c01090{bottom:1120.413264px;}
.y7_c01090{bottom:1121.044248px;}
.y6_c01090{bottom:1121.748600px;}
.y5_c01090{bottom:1122.120000px;}
.y4_c01090{bottom:1130.768451px;}
.y3_c01090{bottom:1131.698247px;}
.y2_c01090{bottom:1132.163082px;}
.y1_c01090{bottom:1133.733000px;}
.h3_c01090{height:18.002304px;}
.hc_c01090{height:66.011912px;}
.h2_c01090{height:72.007056px;}
.h6_c01090{height:72.009215px;}
.h4_c01090{height:72.010403px;}
.ha_c01090{height:72.012995px;}
.he_c01090{height:72.022496px;}
.h11_c01090{height:77.964502px;}
.h5_c01090{height:78.009983px;}
.h8_c01090{height:78.014078px;}
.h10_c01090{height:78.024371px;}
.h7_c01090{height:84.012137px;}
.hd_c01090{height:84.015161px;}
.hf_c01090{height:84.026246px;}
.h9_c01090{height:90.016244px;}
.hb_c01090{height:96.017326px;}
.h0_c01090{height:1246.320000px;}
.h1_c01090{height:1246.500000px;}
.w0_c01090{width:917.190000px;}
.w1_c01090{width:917.250000px;}
.x0_c01090{left:0.000000px;}
.xce_c01090{left:169.708500px;}
.xa4_c01090{left:171.956288px;}
.x8e_c01090{left:173.065485px;}
.x70_c01090{left:174.145584px;}
.x4d_c01090{left:176.316038px;}
.x42_c01090{left:177.424500px;}
.x23_c01090{left:178.563000px;}
.x48_c01090{left:201.441764px;}
.xb1_c01090{left:204.586800px;}
.x69_c01090{left:208.187451px;}
.x56_c01090{left:209.513934px;}
.x24_c01090{left:211.725000px;}
.xa5_c01090{left:216.766875px;}
.xc4_c01090{left:226.017713px;}
.x2e_c01090{left:233.343396px;}
.x9a_c01090{left:239.165813px;}
.x60_c01090{left:241.447997px;}
.x4e_c01090{left:242.721284px;}
.x34_c01090{left:244.393848px;}
.x25_c01090{left:245.479500px;}
.xbf_c01090{left:248.353350px;}
.x83_c01090{left:251.579387px;}
.xc6_c01090{left:259.849227px;}
.x61_c01090{left:262.995896px;}
.x57_c01090{left:264.592880px;}
.x3b_c01090{left:266.568000px;}
.xb6_c01090{left:271.292700px;}
.xa6_c01090{left:272.641350px;}
.x4f_c01090{left:275.125157px;}
.xcf_c01090{left:281.514000px;}
.x94_c01090{left:283.170000px;}
.x84_c01090{left:284.516006px;}
.x6a_c01090{left:285.729969px;}
.x1b_c01090{left:289.764000px;}
.x49_c01090{left:298.633116px;}
.xc7_c01090{left:303.163369px;}
.xa7_c01090{left:305.064900px;}
.x7c_c01090{left:306.153915px;}
.x58_c01090{left:308.653053px;}
.x43_c01090{left:310.026000px;}
.x26_c01090{left:311.904000px;}
.xb2_c01090{left:315.815850px;}
.x3c_c01090{left:320.770500px;}
.x2f_c01090{left:322.450836px;}
.x95_c01090{left:328.017000px;}
.x59_c01090{left:330.189654px;}
.x4a_c01090{left:332.388243px;}
.x71_c01090{left:340.709921px;}
.x1_c01090{left:342.913500px;}
.x5_c01090{left:343.945500px;}
.x9b_c01090{left:349.893150px;}
.x85_c01090{left:351.203715px;}
.x35_c01090{left:355.096848px;}
.x6_c01090{left:367.158000px;}
.x12_c01090{left:369.863820px;}
.x5a_c01090{left:375.560799px;}
.x27_c01090{left:378.040500px;}
.xd3_c01090{left:380.660700px;}
.xac_c01090{left:382.248788px;}
.x62_c01090{left:385.105704px;}
.x13_c01090{left:388.230108px;}
.xc8_c01090{left:390.497448px;}
.xb7_c01090{left:392.813888px;}
.x8f_c01090{left:394.476296px;}
.x72_c01090{left:396.609366px;}
.x3d_c01090{left:397.690500px;}
.x1c_c01090{left:400.177500px;}
.xd4_c01090{left:401.888775px;}
.x86_c01090{left:406.567052px;}
.x36_c01090{left:409.381848px;}
.x7_c01090{left:411.180000px;}
.xc9_c01090{left:413.430492px;}
.xa8_c01090{left:416.051775px;}
.x7d_c01090{left:418.492806px;}
.x50_c01090{left:419.915892px;}
.x14_c01090{left:421.679136px;}
.xb8_c01090{left:424.967400px;}
.x9c_c01090{left:426.857250px;}
.x6b_c01090{left:429.338733px;}
.x30_c01090{left:431.532588px;}
.x1d_c01090{left:432.856500px;}
.x15_c01090{left:434.145828px;}
.x87_c01090{left:438.734228px;}
.x76_c01090{left:439.899279px;}
.x63_c01090{left:441.763287px;}
.x16_c01090{left:444.138996px;}
.x8_c01090{left:450.616500px;}
.x2_c01090{left:455.050500px;}
.xd5_c01090{left:457.379438px;}
.xb3_c01090{left:459.487050px;}
.x9_c01090{left:465.408000px;}
.xd0_c01090{left:468.936000px;}
.xa9_c01090{left:472.509825px;}
.x4b_c01090{left:474.967451px;}
.x17_c01090{left:477.562548px;}
.xd6_c01090{left:480.355163px;}
.x9d_c01090{left:483.369300px;}
.xa_c01090{left:486.795000px;}
.x3_c01090{left:488.253000px;}
.xb9_c01090{left:491.694225px;}
.x7e_c01090{left:494.718353px;}
.x73_c01090{left:496.012485px;}
.x51_c01090{left:497.281439px;}
.x18_c01090{left:499.699908px;}
.xb_c01090{left:502.731000px;}
.xc_c01090{left:512.715000px;}
.xb4_c01090{left:514.868325px;}
.xad_c01090{left:515.951963px;}
.x7f_c01090{left:517.339425px;}
.x5b_c01090{left:519.487563px;}
.x19_c01090{left:522.107268px;}
.xd_c01090{left:523.788000px;}
.x6c_c01090{left:528.989352px;}
.x1e_c01090{left:532.815000px;}
.x64_c01090{left:540.006140px;}
.x31_c01090{left:544.950888px;}
.xe_c01090{left:547.545000px;}
.x88_c01090{left:551.037315px;}
.x4_c01090{left:554.667000px;}
.xaa_c01090{left:559.750238px;}
.x5c_c01090{left:562.704737px;}
.x28_c01090{left:566.550000px;}
.xf_c01090{left:568.881000px;}
.xba_c01090{left:570.554588px;}
.x52_c01090{left:573.992985px;}
.x3e_c01090{left:576.519000px;}
.x1f_c01090{left:578.131500px;}
.xd1_c01090{left:579.690000px;}
.x1a_c01090{left:581.029704px;}
.x9e_c01090{left:582.423675px;}
.x10_c01090{left:591.558000px;}
.x90_c01090{left:593.789505px;}
.x77_c01090{left:595.101279px;}
.x11_c01090{left:599.391000px;}
.xbb_c01090{left:604.037288px;}
.x6d_c01090{left:607.098870px;}
.xc5_c01090{left:614.010488px;}
.x9f_c01090{left:615.129263px;}
.x65_c01090{left:618.903150px;}
.x37_c01090{left:621.412848px;}
.xd7_c01090{left:623.815425px;}
.x93_c01090{left:625.816320px;}
.x80_c01090{left:627.825816px;}
.x5d_c01090{left:629.720454px;}
.x44_c01090{left:630.840000px;}
.x20_c01090{left:633.244500px;}
.xd2_c01090{left:635.340000px;}
.x96_c01090{left:637.557000px;}
.x91_c01090{left:638.572650px;}
.x6e_c01090{left:640.971215px;}
.x38_c01090{left:642.696348px;}
.x89_c01090{left:649.664201px;}
.x66_c01090{left:652.673306px;}
.x45_c01090{left:654.544500px;}
.xc0_c01090{left:658.906613px;}
.x78_c01090{left:661.872279px;}
.x97_c01090{left:671.235000px;}
.x5e_c01090{left:673.720628px;}
.x29_c01090{left:678.058500px;}
.x79_c01090{left:683.962779px;}
.xbc_c01090{left:692.659350px;}
.x8a_c01090{left:694.195164px;}
.x53_c01090{left:697.587648px;}
.xca_c01090{left:702.204929px;}
.xa0_c01090{left:704.793975px;}
.x2a_c01090{left:710.197500px;}
.xab_c01090{left:715.391663px;}
.x46_c01090{left:720.708000px;}
.x3f_c01090{left:722.404500px;}
.xc1_c01090{left:725.627438px;}
.x81_c01090{left:729.070878px;}
.x39_c01090{left:732.891348px;}
.x2b_c01090{left:733.968000px;}
.x6f_c01090{left:736.940891px;}
.xa1_c01090{left:738.011138px;}
.x98_c01090{left:739.038000px;}
.x4c_c01090{left:742.332524px;}
.xcb_c01090{left:747.171916px;}
.xae_c01090{left:748.784588px;}
.x67_c01090{left:751.580687px;}
.x5f_c01090{left:753.375117px;}
.x32_c01090{left:754.831224px;}
.x21_c01090{left:757.239000px;}
.xbd_c01090{left:759.348675px;}
.x8b_c01090{left:760.689374px;}
.x54_c01090{left:762.891894px;}
.x2c_c01090{left:766.965000px;}
.xa2_c01090{left:771.514838px;}
.x7a_c01090{left:772.818279px;}
.x68_c01090{left:774.964643px;}
.x40_c01090{left:777.769500px;}
.xcc_c01090{left:779.602453px;}
.xaf_c01090{left:782.006738px;}
.x8c_c01090{left:784.184034px;}
.x33_c01090{left:788.295252px;}
.xc2_c01090{left:793.186875px;}
.x92_c01090{left:794.442215px;}
.x22_c01090{left:801.252000px;}
.xb5_c01090{left:803.896800px;}
.xa3_c01090{left:805.575075px;}
.x8d_c01090{left:807.366723px;}
.x3a_c01090{left:810.405348px;}
.xb0_c01090{left:814.229850px;}
.x82_c01090{left:818.199197px;}
.x55_c01090{left:820.147311px;}
.x99_c01090{left:827.733000px;}
.x74_c01090{left:830.884158px;}
.x2d_c01090{left:834.705000px;}
.xbe_c01090{left:837.739463px;}
.xc3_c01090{left:840.729300px;}
.x41_c01090{left:844.761000px;}
.xcd_c01090{left:846.272217px;}
.x7b_c01090{left:852.795279px;}
.x47_c01090{left:855.012000px;}
.x75_c01090{left:863.838531px;}
@media print{
.v0_c01090{vertical-align:0.000000pt;}
.ls0_c01090{letter-spacing:0.000000pt;}
.ws0_c01090{word-spacing:0.000000pt;}
.fs1_c01090{font-size:16.002048pt;}
.fsa_c01090{font-size:58.677255pt;}
.fs0_c01090{font-size:64.006272pt;}
.fs4_c01090{font-size:64.008191pt;}
.fs2_c01090{font-size:64.009247pt;}
.fs8_c01090{font-size:64.011551pt;}
.fsc_c01090{font-size:64.019997pt;}
.fsf_c01090{font-size:69.301779pt;}
.fs3_c01090{font-size:69.342207pt;}
.fs6_c01090{font-size:69.345847pt;}
.fse_c01090{font-size:69.354997pt;}
.fs5_c01090{font-size:74.677455pt;}
.fsb_c01090{font-size:74.680143pt;}
.fsd_c01090{font-size:74.689996pt;}
.fs7_c01090{font-size:80.014439pt;}
.fs9_c01090{font-size:85.348735pt;}
.y0_c01090{bottom:0.000000pt;}
.y14f_c01090{bottom:35.042433pt;}
.y14e_c01090{bottom:36.125067pt;}
.y14d_c01090{bottom:37.203567pt;}
.y14c_c01090{bottom:37.847533pt;}
.y14b_c01090{bottom:38.296733pt;}
.y14a_c01090{bottom:38.936533pt;}
.y149_c01090{bottom:39.381767pt;}
.y148_c01090{bottom:39.797467pt;}
.y147_c01090{bottom:41.308767pt;}
.y146_c01090{bottom:43.917100pt;}
.y145_c01090{bottom:66.221967pt;}
.y144_c01090{bottom:67.458633pt;}
.y143_c01090{bottom:68.683300pt;}
.y142_c01090{bottom:69.421233pt;}
.y141_c01090{bottom:69.919833pt;}
.y140_c01090{bottom:70.904267pt;}
.y13f_c01090{bottom:71.624500pt;}
.y13e_c01090{bottom:73.341000pt;}
.y13d_c01090{bottom:74.084767pt;}
.y13c_c01090{bottom:75.327733pt;}
.y13b_c01090{bottom:76.569333pt;}
.y13a_c01090{bottom:103.545032pt;}
.y139_c01090{bottom:105.502636pt;}
.y138_c01090{bottom:106.454884pt;}
.y137_c01090{bottom:107.775236pt;}
.y136_c01090{bottom:111.016936pt;}
.y135_c01090{bottom:114.426936pt;}
.y134_c01090{bottom:116.254432pt;}
.y133_c01090{bottom:116.927808pt;}
.y132_c01090{bottom:119.492172pt;}
.y131_c01090{bottom:120.763992pt;}
.y130_c01090{bottom:123.368000pt;}
.y12f_c01090{bottom:137.746967pt;}
.y12e_c01090{bottom:139.413100pt;}
.y12d_c01090{bottom:140.453500pt;}
.y12c_c01090{bottom:141.920867pt;}
.y12b_c01090{bottom:142.939500pt;}
.y12a_c01090{bottom:144.189367pt;}
.y129_c01090{bottom:146.468167pt;}
.y128_c01090{bottom:149.163400pt;}
.y127_c01090{bottom:150.177900pt;}
.y126_c01090{bottom:170.443633pt;}
.y125_c01090{bottom:171.289333pt;}
.y124_c01090{bottom:172.490467pt;}
.y123_c01090{bottom:173.085100pt;}
.y122_c01090{bottom:173.676967pt;}
.y121_c01090{bottom:175.645900pt;}
.y120_c01090{bottom:176.286967pt;}
.y11f_c01090{bottom:177.826267pt;}
.y11e_c01090{bottom:178.810433pt;}
.y11d_c01090{bottom:180.976567pt;}
.y11c_c01090{bottom:182.349300pt;}
.y11b_c01090{bottom:201.717567pt;}
.y11a_c01090{bottom:203.111367pt;}
.y119_c01090{bottom:203.899033pt;}
.y118_c01090{bottom:204.297167pt;}
.y117_c01090{bottom:205.872967pt;}
.y116_c01090{bottom:206.467600pt;}
.y115_c01090{bottom:207.869167pt;}
.y114_c01090{bottom:209.055800pt;}
.y113_c01090{bottom:209.627567pt;}
.y112_c01090{bottom:211.202533pt;}
.y111_c01090{bottom:211.787700pt;}
.y110_c01090{bottom:213.558567pt;}
.y10f_c01090{bottom:233.541033pt;}
.y10e_c01090{bottom:235.567400pt;}
.y10d_c01090{bottom:236.958900pt;}
.y10c_c01090{bottom:238.764967pt;}
.y10b_c01090{bottom:239.448900pt;}
.y10a_c01090{bottom:240.580867pt;}
.y109_c01090{bottom:241.475067pt;}
.y108_c01090{bottom:242.832767pt;}
.y107_c01090{bottom:243.517400pt;}
.y106_c01090{bottom:245.791700pt;}
.y105_c01090{bottom:246.447900pt;}
.y104_c01090{bottom:264.995200pt;}
.y103_c01090{bottom:265.653900pt;}
.y102_c01090{bottom:266.333467pt;}
.y101_c01090{bottom:268.850633pt;}
.y100_c01090{bottom:270.438967pt;}
.yff_c01090{bottom:271.093933pt;}
.yfe_c01090{bottom:273.137267pt;}
.yfd_c01090{bottom:273.827633pt;}
.yfc_c01090{bottom:274.494767pt;}
.yfb_c01090{bottom:276.757467pt;}
.yfa_c01090{bottom:278.136667pt;}
.yf9_c01090{bottom:296.852833pt;}
.yf8_c01090{bottom:297.447933pt;}
.yf7_c01090{bottom:298.244333pt;}
.yf6_c01090{bottom:300.013067pt;}
.yf5_c01090{bottom:301.011933pt;}
.yf4_c01090{bottom:302.562367pt;}
.yf3_c01090{bottom:303.566167pt;}
.yf2_c01090{bottom:305.538900pt;}
.yf1_c01090{bottom:306.115333pt;}
.yf0_c01090{bottom:307.108833pt;}
.yef_c01090{bottom:307.905833pt;}
.yee_c01090{bottom:328.114833pt;}
.yed_c01090{bottom:328.720967pt;}
.yec_c01090{bottom:329.316067pt;}
.yeb_c01090{bottom:329.906133pt;}
.yea_c01090{bottom:331.499767pt;}
.ye9_c01090{bottom:332.081133pt;}
.ye8_c01090{bottom:333.842067pt;}
.ye7_c01090{bottom:334.847067pt;}
.ye6_c01090{bottom:335.423033pt;}
.ye5_c01090{bottom:336.215833pt;}
.ye4_c01090{bottom:336.989133pt;}
.ye3_c01090{bottom:338.184133pt;}
.ye2_c01090{bottom:339.355700pt;}
.ye1_c01090{bottom:359.906600pt;}
.ye0_c01090{bottom:361.877600pt;}
.ydf_c01090{bottom:363.384333pt;}
.yde_c01090{bottom:364.132733pt;}
.ydd_c01090{bottom:365.081200pt;}
.ydc_c01090{bottom:368.304900pt;}
.ydb_c01090{bottom:371.011400pt;}
.yda_c01090{bottom:372.008000pt;}
.yd9_c01090{bottom:398.252931pt;}
.yd8_c01090{bottom:402.662807pt;}
.yd7_c01090{bottom:423.784601pt;}
.yd6_c01090{bottom:425.743048pt;}
.yd5_c01090{bottom:426.554448pt;}
.yd4_c01090{bottom:427.350800pt;}
.yd3_c01090{bottom:428.513848pt;}
.yd2_c01090{bottom:429.103960pt;}
.yd1_c01090{bottom:430.894376pt;}
.yd0_c01090{bottom:431.672523pt;}
.ycf_c01090{bottom:432.828791pt;}
.yce_c01090{bottom:433.438552pt;}
.ycd_c01090{bottom:434.829829pt;}
.ycc_c01090{bottom:454.618860pt;}
.ycb_c01090{bottom:455.071745pt;}
.yca_c01090{bottom:455.531233pt;}
.yc9_c01090{bottom:456.831644pt;}
.yc8_c01090{bottom:457.702432pt;}
.yc7_c01090{bottom:458.536473pt;}
.yc6_c01090{bottom:459.630892pt;}
.yc5_c01090{bottom:461.827675pt;}
.yc4_c01090{bottom:462.456307pt;}
.yc3_c01090{bottom:462.887703pt;}
.yc2_c01090{bottom:463.539385pt;}
.yc1_c01090{bottom:464.843064pt;}
.yc0_c01090{bottom:465.487359pt;}
.ybf_c01090{bottom:466.996421pt;}
.ybe_c01090{bottom:487.475835pt;}
.ybd_c01090{bottom:489.059808pt;}
.ybc_c01090{bottom:490.256033pt;}
.ybb_c01090{bottom:490.860424pt;}
.yba_c01090{bottom:492.825119pt;}
.yb9_c01090{bottom:493.227171pt;}
.yb8_c01090{bottom:494.582560pt;}
.yb7_c01090{bottom:495.181969pt;}
.yb6_c01090{bottom:496.578541pt;}
.yb5_c01090{bottom:498.920901pt;}
.yb4_c01090{bottom:518.696356pt;}
.yb3_c01090{bottom:520.047079pt;}
.yb2_c01090{bottom:521.547749pt;}
.yb1_c01090{bottom:521.920833pt;}
.yb0_c01090{bottom:523.048521pt;}
.yaf_c01090{bottom:523.987983pt;}
.yae_c01090{bottom:525.669711pt;}
.yad_c01090{bottom:527.525149pt;}
.yac_c01090{bottom:528.279627pt;}
.yab_c01090{bottom:530.127389pt;}
.yaa_c01090{bottom:549.550383pt;}
.ya9_c01090{bottom:550.136289pt;}
.ya8_c01090{bottom:551.561175pt;}
.ya7_c01090{bottom:553.727331pt;}
.ya6_c01090{bottom:554.129281pt;}
.ya5_c01090{bottom:556.088007pt;}
.ya4_c01090{bottom:557.288235pt;}
.ya3_c01090{bottom:557.854847pt;}
.ya2_c01090{bottom:558.848277pt;}
.ya1_c01090{bottom:560.609823pt;}
.ya0_c01090{bottom:561.809417pt;}
.y9f_c01090{bottom:584.056625pt;}
.y9e_c01090{bottom:584.728131pt;}
.y9d_c01090{bottom:586.434316pt;}
.y9c_c01090{bottom:587.037060pt;}
.y9b_c01090{bottom:588.425601pt;}
.y9a_c01090{bottom:590.196621pt;}
.y99_c01090{bottom:592.357128pt;}
.y98_c01090{bottom:592.750060pt;}
.y97_c01090{bottom:594.129025pt;}
.y96_c01090{bottom:594.694092pt;}
.y95_c01090{bottom:614.411832pt;}
.y94_c01090{bottom:615.126487pt;}
.y93_c01090{bottom:615.500075pt;}
.y92_c01090{bottom:617.082479pt;}
.y91_c01090{bottom:617.622141pt;}
.y90_c01090{bottom:618.883932pt;}
.y8f_c01090{bottom:619.924900pt;}
.y8e_c01090{bottom:620.456447pt;}
.y8d_c01090{bottom:621.362645pt;}
.y8c_c01090{bottom:622.232193pt;}
.y8b_c01090{bottom:623.316905pt;}
.y8a_c01090{bottom:623.662152pt;}
.y89_c01090{bottom:624.699776pt;}
.y88_c01090{bottom:644.576829pt;}
.y87_c01090{bottom:645.772776pt;}
.y86_c01090{bottom:646.378256pt;}
.y85_c01090{bottom:647.794224pt;}
.y84_c01090{bottom:648.576019pt;}
.y83_c01090{bottom:649.767861pt;}
.y82_c01090{bottom:650.536432pt;}
.y81_c01090{bottom:652.504876pt;}
.y80_c01090{bottom:653.095241pt;}
.y7f_c01090{bottom:653.901524pt;}
.y7e_c01090{bottom:654.283927pt;}
.y7d_c01090{bottom:655.066735pt;}
.y7c_c01090{bottom:656.046308pt;}
.y7b_c01090{bottom:656.627199pt;}
.y7a_c01090{bottom:677.107377pt;}
.y79_c01090{bottom:677.689737pt;}
.y78_c01090{bottom:678.125043pt;}
.y77_c01090{bottom:679.286647pt;}
.y76_c01090{bottom:681.483396pt;}
.y75_c01090{bottom:682.846993pt;}
.y74_c01090{bottom:683.256899pt;}
.y73_c01090{bottom:684.221636pt;}
.y72_c01090{bottom:685.388712pt;}
.y71_c01090{bottom:686.796371pt;}
.y70_c01090{bottom:687.372980pt;}
.y6f_c01090{bottom:688.553179pt;}
.y6e_c01090{bottom:710.466480pt;}
.y6d_c01090{bottom:710.993543pt;}
.y6c_c01090{bottom:712.051569pt;}
.y6b_c01090{bottom:713.128149pt;}
.y6a_c01090{bottom:714.744560pt;}
.y69_c01090{bottom:715.973120pt;}
.y68_c01090{bottom:717.025852pt;}
.y67_c01090{bottom:717.566595pt;}
.y66_c01090{bottom:719.121351pt;}
.y65_c01090{bottom:719.518305pt;}
.y64_c01090{bottom:740.480300pt;}
.y63_c01090{bottom:741.799888pt;}
.y62_c01090{bottom:742.748545pt;}
.y61_c01090{bottom:743.865973pt;}
.y60_c01090{bottom:744.266316pt;}
.y5f_c01090{bottom:745.927752pt;}
.y5e_c01090{bottom:746.689221pt;}
.y5d_c01090{bottom:748.549980pt;}
.y5c_c01090{bottom:749.124692pt;}
.y5b_c01090{bottom:749.684508pt;}
.y5a_c01090{bottom:750.984995pt;}
.y59_c01090{bottom:751.924000pt;}
.y58_c01090{bottom:773.296215pt;}
.y57_c01090{bottom:774.308531pt;}
.y56_c01090{bottom:775.145157pt;}
.y55_c01090{bottom:776.668312pt;}
.y54_c01090{bottom:777.349649pt;}
.y53_c01090{bottom:779.022699pt;}
.y52_c01090{bottom:779.528891pt;}
.y51_c01090{bottom:780.051947pt;}
.y50_c01090{bottom:781.214293pt;}
.y4f_c01090{bottom:782.033353pt;}
.y4e_c01090{bottom:782.539953pt;}
.y4d_c01090{bottom:783.364000pt;}
.y4c_c01090{bottom:805.563157pt;}
.y4b_c01090{bottom:806.665579pt;}
.y4a_c01090{bottom:807.948352pt;}
.y49_c01090{bottom:808.251051pt;}
.y48_c01090{bottom:809.665579pt;}
.y47_c01090{bottom:811.266603pt;}
.y46_c01090{bottom:812.038656pt;}
.y45_c01090{bottom:813.613099pt;}
.y44_c01090{bottom:814.089259pt;}
.y43_c01090{bottom:814.553707pt;}
.y42_c01090{bottom:837.380341pt;}
.y41_c01090{bottom:837.826933pt;}
.y40_c01090{bottom:839.455637pt;}
.y3f_c01090{bottom:840.626517pt;}
.y3e_c01090{bottom:841.231744pt;}
.y3d_c01090{bottom:842.139552pt;}
.y3c_c01090{bottom:843.593579pt;}
.y3b_c01090{bottom:844.028949pt;}
.y3a_c01090{bottom:844.780864pt;}
.y39_c01090{bottom:845.518987pt;}
.y38_c01090{bottom:867.630869pt;}
.y37_c01090{bottom:868.594283pt;}
.y36_c01090{bottom:869.063573pt;}
.y35_c01090{bottom:869.401643pt;}
.y34_c01090{bottom:869.858731pt;}
.y33_c01090{bottom:871.444629pt;}
.y32_c01090{bottom:872.081749pt;}
.y31_c01090{bottom:872.872875pt;}
.y30_c01090{bottom:874.125653pt;}
.y2f_c01090{bottom:874.597909pt;}
.y2e_c01090{bottom:875.066261pt;}
.y2d_c01090{bottom:876.010965pt;}
.y2c_c01090{bottom:876.491029pt;}
.y2b_c01090{bottom:876.962667pt;}
.y2a_c01090{bottom:900.673515pt;}
.y29_c01090{bottom:901.338600pt;}
.y28_c01090{bottom:903.212295pt;}
.y27_c01090{bottom:904.045113pt;}
.y26_c01090{bottom:904.729896pt;}
.y25_c01090{bottom:905.231736pt;}
.y24_c01090{bottom:906.240380pt;}
.y23_c01090{bottom:906.734196pt;}
.y22_c01090{bottom:908.402667pt;}
.y21_c01090{bottom:991.162059pt;}
.y20_c01090{bottom:991.316427pt;}
.y1f_c01090{bottom:991.501291pt;}
.y1e_c01090{bottom:991.948053pt;}
.y1d_c01090{bottom:992.080779pt;}
.y1c_c01090{bottom:992.246731pt;}
.y1b_c01090{bottom:992.387136pt;}
.y1a_c01090{bottom:992.541568pt;}
.y19_c01090{bottom:992.835659pt;}
.y18_c01090{bottom:992.986251pt;}
.y17_c01090{bottom:993.119040pt;}
.y16_c01090{bottom:993.285675pt;}
.y15_c01090{bottom:993.732053pt;}
.y12_c01090{bottom:993.806997pt;}
.y11_c01090{bottom:993.918400pt;}
.y14_c01090{bottom:993.977259pt;}
.y10_c01090{bottom:994.240917pt;}
.y13_c01090{bottom:994.319413pt;}
.yf_c01090{bottom:994.432896pt;}
.ye_c01090{bottom:994.544363pt;}
.yd_c01090{bottom:994.882240pt;}
.yc_c01090{bottom:995.039723pt;}
.yb_c01090{bottom:995.181717pt;}
.ya_c01090{bottom:995.408363pt;}
.y9_c01090{bottom:995.712533pt;}
.y8_c01090{bottom:995.922901pt;}
.y7_c01090{bottom:996.483776pt;}
.y6_c01090{bottom:997.109867pt;}
.y5_c01090{bottom:997.440000pt;}
.y4_c01090{bottom:1005.127512pt;}
.y3_c01090{bottom:1005.953997pt;}
.y2_c01090{bottom:1006.367184pt;}
.y1_c01090{bottom:1007.762667pt;}
.h3_c01090{height:16.002048pt;}
.hc_c01090{height:58.677255pt;}
.h2_c01090{height:64.006272pt;}
.h6_c01090{height:64.008191pt;}
.h4_c01090{height:64.009247pt;}
.ha_c01090{height:64.011551pt;}
.he_c01090{height:64.019997pt;}
.h11_c01090{height:69.301779pt;}
.h5_c01090{height:69.342207pt;}
.h8_c01090{height:69.345847pt;}
.h10_c01090{height:69.354997pt;}
.h7_c01090{height:74.677455pt;}
.hd_c01090{height:74.680143pt;}
.hf_c01090{height:74.689996pt;}
.h9_c01090{height:80.014439pt;}
.hb_c01090{height:85.348735pt;}
.h0_c01090{height:1107.840000pt;}
.h1_c01090{height:1108.000000pt;}
.w0_c01090{width:815.280000pt;}
.w1_c01090{width:815.333333pt;}
.x0_c01090{left:0.000000pt;}
.xce_c01090{left:150.852000pt;}
.xa4_c01090{left:152.850033pt;}
.x8e_c01090{left:153.835987pt;}
.x70_c01090{left:154.796075pt;}
.x4d_c01090{left:156.725367pt;}
.x42_c01090{left:157.710667pt;}
.x23_c01090{left:158.722667pt;}
.x48_c01090{left:179.059345pt;}
.xb1_c01090{left:181.854933pt;}
.x69_c01090{left:185.055512pt;}
.x56_c01090{left:186.234608pt;}
.x24_c01090{left:188.200000pt;}
.xa5_c01090{left:192.681667pt;}
.xc4_c01090{left:200.904633pt;}
.x2e_c01090{left:207.416352pt;}
.x9a_c01090{left:212.591833pt;}
.x60_c01090{left:214.620441pt;}
.x4e_c01090{left:215.752252pt;}
.x34_c01090{left:217.238976pt;}
.x25_c01090{left:218.204000pt;}
.xbf_c01090{left:220.758533pt;}
.x83_c01090{left:223.626121pt;}
.xc6_c01090{left:230.977091pt;}
.x61_c01090{left:233.774129pt;}
.x57_c01090{left:235.193671pt;}
.x3b_c01090{left:236.949333pt;}
.xb6_c01090{left:241.149067pt;}
.xa6_c01090{left:242.347867pt;}
.x4f_c01090{left:244.555695pt;}
.xcf_c01090{left:250.234667pt;}
.x94_c01090{left:251.706667pt;}
.x84_c01090{left:252.903116pt;}
.x6a_c01090{left:253.982195pt;}
.x1b_c01090{left:257.568000pt;}
.x49_c01090{left:265.451659pt;}
.xc7_c01090{left:269.478551pt;}
.xa7_c01090{left:271.168800pt;}
.x7c_c01090{left:272.136813pt;}
.x58_c01090{left:274.358269pt;}
.x43_c01090{left:275.578667pt;}
.x26_c01090{left:277.248000pt;}
.xb2_c01090{left:280.725200pt;}
.x3c_c01090{left:285.129333pt;}
.x2f_c01090{left:286.622965pt;}
.x95_c01090{left:291.570667pt;}
.x59_c01090{left:293.501915pt;}
.x4a_c01090{left:295.456216pt;}
.x71_c01090{left:302.853263pt;}
.x1_c01090{left:304.812000pt;}
.x5_c01090{left:305.729333pt;}
.x9b_c01090{left:311.016133pt;}
.x85_c01090{left:312.181080pt;}
.x35_c01090{left:315.641643pt;}
.x6_c01090{left:326.362667pt;}
.x12_c01090{left:328.767840pt;}
.x5a_c01090{left:333.831821pt;}
.x27_c01090{left:336.036000pt;}
.xd3_c01090{left:338.365067pt;}
.xac_c01090{left:339.776700pt;}
.x62_c01090{left:342.316181pt;}
.x13_c01090{left:345.093429pt;}
.xc8_c01090{left:347.108843pt;}
.xb7_c01090{left:349.167900pt;}
.x8f_c01090{left:350.645596pt;}
.x72_c01090{left:352.541659pt;}
.x3d_c01090{left:353.502667pt;}
.x1c_c01090{left:355.713333pt;}
.xd4_c01090{left:357.234467pt;}
.x86_c01090{left:361.392935pt;}
.x36_c01090{left:363.894976pt;}
.x7_c01090{left:365.493333pt;}
.xc9_c01090{left:367.493771pt;}
.xa8_c01090{left:369.823800pt;}
.x7d_c01090{left:371.993605pt;}
.x50_c01090{left:373.258571pt;}
.x14_c01090{left:374.825899pt;}
.xb8_c01090{left:377.748800pt;}
.x9c_c01090{left:379.428667pt;}
.x6b_c01090{left:381.634429pt;}
.x30_c01090{left:383.584523pt;}
.x1d_c01090{left:384.761333pt;}
.x15_c01090{left:385.907403pt;}
.x87_c01090{left:389.985980pt;}
.x76_c01090{left:391.021581pt;}
.x63_c01090{left:392.678477pt;}
.x16_c01090{left:394.790219pt;}
.x8_c01090{left:400.548000pt;}
.x2_c01090{left:404.489333pt;}
.xd5_c01090{left:406.559500pt;}
.xb3_c01090{left:408.432933pt;}
.x9_c01090{left:413.696000pt;}
.xd0_c01090{left:416.832000pt;}
.xa9_c01090{left:420.008733pt;}
.x4b_c01090{left:422.193289pt;}
.x17_c01090{left:424.500043pt;}
.xd6_c01090{left:426.982367pt;}
.x9d_c01090{left:429.661600pt;}
.xa_c01090{left:432.706667pt;}
.x3_c01090{left:434.002667pt;}
.xb9_c01090{left:437.061533pt;}
.x7e_c01090{left:439.749647pt;}
.x73_c01090{left:440.899987pt;}
.x51_c01090{left:442.027945pt;}
.x18_c01090{left:444.177696pt;}
.xb_c01090{left:446.872000pt;}
.xc_c01090{left:455.746667pt;}
.xb4_c01090{left:457.660733pt;}
.xad_c01090{left:458.623967pt;}
.x7f_c01090{left:459.857267pt;}
.x5b_c01090{left:461.766723pt;}
.x19_c01090{left:464.095349pt;}
.xd_c01090{left:465.589333pt;}
.x6c_c01090{left:470.212757pt;}
.x1e_c01090{left:473.613333pt;}
.x64_c01090{left:480.005457pt;}
.x31_c01090{left:484.400789pt;}
.xe_c01090{left:486.706667pt;}
.x88_c01090{left:489.810947pt;}
.x4_c01090{left:493.037333pt;}
.xaa_c01090{left:497.555767pt;}
.x5c_c01090{left:500.181988pt;}
.x28_c01090{left:503.600000pt;}
.xf_c01090{left:505.672000pt;}
.xba_c01090{left:507.159633pt;}
.x52_c01090{left:510.215987pt;}
.x3e_c01090{left:512.461333pt;}
.x1f_c01090{left:513.894667pt;}
.xd1_c01090{left:515.280000pt;}
.x1a_c01090{left:516.470848pt;}
.x9e_c01090{left:517.709933pt;}
.x10_c01090{left:525.829333pt;}
.x90_c01090{left:527.812893pt;}
.x77_c01090{left:528.978915pt;}
.x11_c01090{left:532.792000pt;}
.xbb_c01090{left:536.922033pt;}
.x6d_c01090{left:539.643440pt;}
.xc5_c01090{left:545.787100pt;}
.x9f_c01090{left:546.781567pt;}
.x65_c01090{left:550.136133pt;}
.x37_c01090{left:552.366976pt;}
.xd7_c01090{left:554.502600pt;}
.x93_c01090{left:556.281173pt;}
.x80_c01090{left:558.067392pt;}
.x5d_c01090{left:559.751515pt;}
.x44_c01090{left:560.746667pt;}
.x20_c01090{left:562.884000pt;}
.xd2_c01090{left:564.746667pt;}
.x96_c01090{left:566.717333pt;}
.x91_c01090{left:567.620133pt;}
.x6e_c01090{left:569.752191pt;}
.x38_c01090{left:571.285643pt;}
.x89_c01090{left:577.479289pt;}
.x66_c01090{left:580.154049pt;}
.x45_c01090{left:581.817333pt;}
.xc0_c01090{left:585.694767pt;}
.x78_c01090{left:588.330915pt;}
.x97_c01090{left:596.653333pt;}
.x5e_c01090{left:598.862780pt;}
.x29_c01090{left:602.718667pt;}
.x79_c01090{left:607.966915pt;}
.xbc_c01090{left:615.697200pt;}
.x8a_c01090{left:617.062368pt;}
.x53_c01090{left:620.077909pt;}
.xca_c01090{left:624.182159pt;}
.xa0_c01090{left:626.483533pt;}
.x2a_c01090{left:631.286667pt;}
.xab_c01090{left:635.903700pt;}
.x46_c01090{left:640.629333pt;}
.x3f_c01090{left:642.137333pt;}
.xc1_c01090{left:645.002167pt;}
.x81_c01090{left:648.063003pt;}
.x39_c01090{left:651.458976pt;}
.x2b_c01090{left:652.416000pt;}
.x6f_c01090{left:655.058569pt;}
.xa1_c01090{left:656.009900pt;}
.x98_c01090{left:656.922667pt;}
.x4c_c01090{left:659.851132pt;}
.xcb_c01090{left:664.152815pt;}
.xae_c01090{left:665.586300pt;}
.x67_c01090{left:668.071721pt;}
.x5f_c01090{left:669.666771pt;}
.x32_c01090{left:670.961088pt;}
.x21_c01090{left:673.101333pt;}
.xbd_c01090{left:674.976600pt;}
.x8b_c01090{left:676.168332pt;}
.x54_c01090{left:678.126128pt;}
.x2c_c01090{left:681.746667pt;}
.xa2_c01090{left:685.790967pt;}
.x7a_c01090{left:686.949581pt;}
.x68_c01090{left:688.857460pt;}
.x40_c01090{left:691.350667pt;}
.xcc_c01090{left:692.979959pt;}
.xaf_c01090{left:695.117100pt;}
.x8c_c01090{left:697.052475pt;}
.x33_c01090{left:700.706891pt;}
.xc2_c01090{left:705.055000pt;}
.x92_c01090{left:706.170857pt;}
.x22_c01090{left:712.224000pt;}
.xb5_c01090{left:714.574933pt;}
.xa3_c01090{left:716.066733pt;}
.x8d_c01090{left:717.659309pt;}
.x3a_c01090{left:720.360309pt;}
.xb0_c01090{left:723.759867pt;}
.x82_c01090{left:727.288175pt;}
.x55_c01090{left:729.019832pt;}
.x99_c01090{left:735.762667pt;}
.x74_c01090{left:738.563696pt;}
.x2d_c01090{left:741.960000pt;}
.xbe_c01090{left:744.657300pt;}
.xc3_c01090{left:747.314933pt;}
.x41_c01090{left:750.898667pt;}
.xcd_c01090{left:752.241971pt;}
.x7b_c01090{left:758.040248pt;}
.x47_c01090{left:760.010667pt;}
.x75_c01090{left:767.856472pt;}
}





/* 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_c01091 {
    display:none;
  }
  .loading-indicator_c01091.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01091 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_c01091 { 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_c01091" -> "#page-container .classname_c01091")
 */
.pf_c01091 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01091 { /* 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_c01091.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01091 { /* 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_c01091 { /* 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_c01091 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01091 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01091 {overflow:visible;}
  }
}
.c_c01091 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01091 { /* 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_c01091:after { /* webkit #35443 */
  content: '';
}
.t_c01091:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01091 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 */
}
.__c01091 { /* 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_c01091 { /* info for Javascript */
  display:none;
}
.l_c01091 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01091 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01091 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01091: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_c01091 {
    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_c01091.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01091.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_c01091 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01091{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01091;src:url('chunks/assets/font_bfe6362fd3009c591583128f.woff2')format("woff");}.ff1_c01091{font-family:ff1_c01091;line-height:1.000000;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;}
.m2_c01091{transform:matrix(0.324500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324500,0.000000,0.000000,0.250000,0,0);}
.m1_c01091{transform:matrix(0.335960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335960,0.000000,0.000000,0.250000,0,0);}
.m3_c01091{transform:matrix(0.422735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422735,0.000000,0.000000,0.250000,0,0);}
.m0_c01091{transform:matrix(1.690355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.690355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.690355,0.000000,0.000000,0.250000,0,0);}
.v0_c01091{vertical-align:0.000000px;}
.ls0_c01091{letter-spacing:0.000000px;}
.sc__c01091{text-shadow:none;}
.sc0_c01091{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__c01091{-webkit-text-stroke:0px transparent;}
.sc0_c01091{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01091{word-spacing:0.000000px;}
.fc0_c01091{color:transparent;}
.fs1_c01091{font-size:12.000000px;}
.fs0_c01091{font-size:66.000000px;}
.y0_c01091{bottom:0.000000px;}
.y2_c01091{bottom:1128.198000px;}
.y1_c01091{bottom:1132.770000px;}
.h3_c01091{height:12.000000px;}
.h2_c01091{height:66.000000px;}
.h0_c01091{height:1246.320000px;}
.h1_c01091{height:1246.500000px;}
.w0_c01091{width:917.190000px;}
.w1_c01091{width:917.250000px;}
.x0_c01091{left:0.000000px;}
.x1_c01091{left:386.910000px;}
.x2_c01091{left:561.330000px;}
.x3_c01091{left:564.300000px;}
.x4_c01091{left:576.990000px;}
@media print{
.v0_c01091{vertical-align:0.000000pt;}
.ls0_c01091{letter-spacing:0.000000pt;}
.ws0_c01091{word-spacing:0.000000pt;}
.fs1_c01091{font-size:10.666667pt;}
.fs0_c01091{font-size:58.666667pt;}
.y0_c01091{bottom:0.000000pt;}
.y2_c01091{bottom:1002.842667pt;}
.y1_c01091{bottom:1006.906667pt;}
.h3_c01091{height:10.666667pt;}
.h2_c01091{height:58.666667pt;}
.h0_c01091{height:1107.840000pt;}
.h1_c01091{height:1108.000000pt;}
.w0_c01091{width:815.280000pt;}
.w1_c01091{width:815.333333pt;}
.x0_c01091{left:0.000000pt;}
.x1_c01091{left:343.920000pt;}
.x2_c01091{left:498.960000pt;}
.x3_c01091{left:501.600000pt;}
.x4_c01091{left:512.880000pt;}
}





/* 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_c01092 {
    display:none;
  }
  .loading-indicator_c01092.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01092 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_c01092 { 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_c01092" -> "#page-container .classname_c01092")
 */
.pf_c01092 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01092 { /* 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_c01092.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01092 { /* 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_c01092 { /* 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_c01092 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01092 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01092 {overflow:visible;}
  }
}
.c_c01092 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01092 { /* 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_c01092:after { /* webkit #35443 */
  content: '';
}
.t_c01092:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01092 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 */
}
.__c01092 { /* 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_c01092 { /* info for Javascript */
  display:none;
}
.l_c01092 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01092 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01092 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01092: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_c01092 {
    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_c01092.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01092.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_c01092 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01092{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01092;src:url('chunks/assets/font_fabf4b590f7fb32aea93ffb2.woff2')format("woff");}.ff1_c01092{font-family:ff1_c01092;line-height:1.000000;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;}
.m11a_c01092{transform:matrix(0.134297,0.006722,-0.012497,0.249687,0,0);-ms-transform:matrix(0.134297,0.006722,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.134297,0.006722,-0.012497,0.249687,0,0);}
.mb2_c01092{transform:matrix(0.136213,0.005999,-0.011000,0.249758,0,0);-ms-transform:matrix(0.136213,0.005999,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.136213,0.005999,-0.011000,0.249758,0,0);}
.m11d_c01092{transform:matrix(0.136724,0.006843,-0.012497,0.249687,0,0);-ms-transform:matrix(0.136724,0.006843,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.136724,0.006843,-0.012497,0.249687,0,0);}
.m127_c01092{transform:matrix(0.137186,0.005356,-0.009752,0.249810,0,0);-ms-transform:matrix(0.137186,0.005356,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.137186,0.005356,-0.009752,0.249810,0,0);}
.m11f_c01092{transform:matrix(0.137957,0.006905,-0.012497,0.249687,0,0);-ms-transform:matrix(0.137957,0.006905,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.137957,0.006905,-0.012497,0.249687,0,0);}
.m11c_c01092{transform:matrix(0.143890,0.007202,-0.012497,0.249687,0,0);-ms-transform:matrix(0.143890,0.007202,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.143890,0.007202,-0.012497,0.249687,0,0);}
.m126_c01092{transform:matrix(0.147787,0.005769,-0.009752,0.249810,0,0);-ms-transform:matrix(0.147787,0.005769,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.147787,0.005769,-0.009752,0.249810,0,0);}
.m121_c01092{transform:matrix(0.150891,0.007552,-0.012497,0.249687,0,0);-ms-transform:matrix(0.150891,0.007552,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.150891,0.007552,-0.012497,0.249687,0,0);}
.m12b_c01092{transform:matrix(0.151984,0.005933,-0.009752,0.249810,0,0);-ms-transform:matrix(0.151984,0.005933,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.151984,0.005933,-0.009752,0.249810,0,0);}
.m12c_c01092{transform:matrix(0.152219,0.005942,-0.009752,0.249810,0,0);-ms-transform:matrix(0.152219,0.005942,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.152219,0.005942,-0.009752,0.249810,0,0);}
.m124_c01092{transform:matrix(0.153008,0.005973,-0.009752,0.249810,0,0);-ms-transform:matrix(0.153008,0.005973,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.153008,0.005973,-0.009752,0.249810,0,0);}
.m120_c01092{transform:matrix(0.153708,0.007693,-0.012497,0.249687,0,0);-ms-transform:matrix(0.153708,0.007693,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.153708,0.007693,-0.012497,0.249687,0,0);}
.m11e_c01092{transform:matrix(0.156484,0.007832,-0.012497,0.249687,0,0);-ms-transform:matrix(0.156484,0.007832,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.156484,0.007832,-0.012497,0.249687,0,0);}
.m125_c01092{transform:matrix(0.157685,0.006156,-0.009752,0.249810,0,0);-ms-transform:matrix(0.157685,0.006156,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.157685,0.006156,-0.009752,0.249810,0,0);}
.m128_c01092{transform:matrix(0.159249,0.006217,-0.009752,0.249810,0,0);-ms-transform:matrix(0.159249,0.006217,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.159249,0.006217,-0.009752,0.249810,0,0);}
.m11b_c01092{transform:matrix(0.159306,0.007973,-0.012497,0.249687,0,0);-ms-transform:matrix(0.159306,0.007973,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.159306,0.007973,-0.012497,0.249687,0,0);}
.m122_c01092{transform:matrix(0.159435,0.007980,-0.012497,0.249687,0,0);-ms-transform:matrix(0.159435,0.007980,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.159435,0.007980,-0.012497,0.249687,0,0);}
.m123_c01092{transform:matrix(0.160718,0.006274,-0.009752,0.249810,0,0);-ms-transform:matrix(0.160718,0.006274,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.160718,0.006274,-0.009752,0.249810,0,0);}
.m119_c01092{transform:matrix(0.163770,0.008197,-0.012497,0.249687,0,0);-ms-transform:matrix(0.163770,0.008197,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.163770,0.008197,-0.012497,0.249687,0,0);}
.m129_c01092{transform:matrix(0.166563,0.006502,-0.009752,0.249810,0,0);-ms-transform:matrix(0.166563,0.006502,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.166563,0.006502,-0.009752,0.249810,0,0);}
.m31_c01092{transform:matrix(0.167119,0.006357,-0.009503,0.249819,0,0);-ms-transform:matrix(0.167119,0.006357,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.167119,0.006357,-0.009503,0.249819,0,0);}
.m12a_c01092{transform:matrix(0.168597,0.006582,-0.009752,0.249810,0,0);-ms-transform:matrix(0.168597,0.006582,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.168597,0.006582,-0.009752,0.249810,0,0);}
.mc1_c01092{transform:matrix(0.170954,0.007530,-0.011000,0.249758,0,0);-ms-transform:matrix(0.170954,0.007530,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.170954,0.007530,-0.011000,0.249758,0,0);}
.mbc_c01092{transform:matrix(0.172498,0.007597,-0.011000,0.249758,0,0);-ms-transform:matrix(0.172498,0.007597,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.172498,0.007597,-0.011000,0.249758,0,0);}
.m27_c01092{transform:matrix(0.180150,0.006853,-0.009503,0.249819,0,0);-ms-transform:matrix(0.180150,0.006853,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.180150,0.006853,-0.009503,0.249819,0,0);}
.mc3_c01092{transform:matrix(0.181159,0.007979,-0.011000,0.249758,0,0);-ms-transform:matrix(0.181159,0.007979,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.181159,0.007979,-0.011000,0.249758,0,0);}
.mb8_c01092{transform:matrix(0.182313,0.008030,-0.011000,0.249758,0,0);-ms-transform:matrix(0.182313,0.008030,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.182313,0.008030,-0.011000,0.249758,0,0);}
.m2f_c01092{transform:matrix(0.184582,0.007021,-0.009503,0.249819,0,0);-ms-transform:matrix(0.184582,0.007021,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.184582,0.007021,-0.009503,0.249819,0,0);}
.mbd_c01092{transform:matrix(0.185170,0.008156,-0.011000,0.249758,0,0);-ms-transform:matrix(0.185170,0.008156,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.185170,0.008156,-0.011000,0.249758,0,0);}
.mbe_c01092{transform:matrix(0.188123,0.008286,-0.011000,0.249758,0,0);-ms-transform:matrix(0.188123,0.008286,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.188123,0.008286,-0.011000,0.249758,0,0);}
.md6_c01092{transform:matrix(0.190557,0.008011,-0.010501,0.249779,0,0);-ms-transform:matrix(0.190557,0.008011,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.190557,0.008011,-0.010501,0.249779,0,0);}
.mbf_c01092{transform:matrix(0.191819,0.008448,-0.011000,0.249758,0,0);-ms-transform:matrix(0.191819,0.008448,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.191819,0.008448,-0.011000,0.249758,0,0);}
.mdf_c01092{transform:matrix(0.192976,0.008306,-0.010751,0.249769,0,0);-ms-transform:matrix(0.192976,0.008306,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.192976,0.008306,-0.010751,0.249769,0,0);}
.mc5_c01092{transform:matrix(0.193193,0.008509,-0.011000,0.249758,0,0);-ms-transform:matrix(0.193193,0.008509,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.193193,0.008509,-0.011000,0.249758,0,0);}
.mba_c01092{transform:matrix(0.193333,0.008515,-0.011000,0.249758,0,0);-ms-transform:matrix(0.193333,0.008515,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.193333,0.008515,-0.011000,0.249758,0,0);}
.m2d_c01092{transform:matrix(0.193460,0.007359,-0.009503,0.249819,0,0);-ms-transform:matrix(0.193460,0.007359,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.193460,0.007359,-0.009503,0.249819,0,0);}
.me3_c01092{transform:matrix(0.194170,0.008358,-0.010751,0.249769,0,0);-ms-transform:matrix(0.194170,0.008358,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.194170,0.008358,-0.010751,0.249769,0,0);}
.m2e_c01092{transform:matrix(0.194260,0.007389,-0.009503,0.249819,0,0);-ms-transform:matrix(0.194260,0.007389,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.194260,0.007389,-0.009503,0.249819,0,0);}
.m69_c01092{transform:matrix(0.195089,0.007421,-0.009503,0.249819,0,0);-ms-transform:matrix(0.195089,0.007421,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.195089,0.007421,-0.009503,0.249819,0,0);}
.m108_c01092{transform:matrix(0.196613,0.008463,-0.010751,0.249769,0,0);-ms-transform:matrix(0.196613,0.008463,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.196613,0.008463,-0.010751,0.249769,0,0);}
.m7a_c01092{transform:matrix(0.197139,0.008683,-0.011000,0.249758,0,0);-ms-transform:matrix(0.197139,0.008683,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.197139,0.008683,-0.011000,0.249758,0,0);}
.mbb_c01092{transform:matrix(0.198163,0.008728,-0.011000,0.249758,0,0);-ms-transform:matrix(0.198163,0.008728,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.198163,0.008728,-0.011000,0.249758,0,0);}
.m2a_c01092{transform:matrix(0.198996,0.007569,-0.009503,0.249819,0,0);-ms-transform:matrix(0.198996,0.007569,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.198996,0.007569,-0.009503,0.249819,0,0);}
.m0_c01092{transform:matrix(0.199730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199730,0.000000,0.000000,0.250000,0,0);}
.m2b_c01092{transform:matrix(0.200975,0.007645,-0.009503,0.249819,0,0);-ms-transform:matrix(0.200975,0.007645,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.200975,0.007645,-0.009503,0.249819,0,0);}
.m8a_c01092{transform:matrix(0.201040,0.008855,-0.011000,0.249758,0,0);-ms-transform:matrix(0.201040,0.008855,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.201040,0.008855,-0.011000,0.249758,0,0);}
.m104_c01092{transform:matrix(0.201119,0.008657,-0.010751,0.249769,0,0);-ms-transform:matrix(0.201119,0.008657,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.201119,0.008657,-0.010751,0.249769,0,0);}
.m38_c01092{transform:matrix(0.202144,0.007689,-0.009503,0.249819,0,0);-ms-transform:matrix(0.202144,0.007689,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.202144,0.007689,-0.009503,0.249819,0,0);}
.mdb_c01092{transform:matrix(0.202486,0.008513,-0.010501,0.249779,0,0);-ms-transform:matrix(0.202486,0.008513,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.202486,0.008513,-0.010501,0.249779,0,0);}
.me6_c01092{transform:matrix(0.202582,0.008720,-0.010751,0.249769,0,0);-ms-transform:matrix(0.202582,0.008720,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.202582,0.008720,-0.010751,0.249769,0,0);}
.m25_c01092{transform:matrix(0.202928,0.007719,-0.009503,0.249819,0,0);-ms-transform:matrix(0.202928,0.007719,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.202928,0.007719,-0.009503,0.249819,0,0);}
.mce_c01092{transform:matrix(0.204237,0.008995,-0.011000,0.249758,0,0);-ms-transform:matrix(0.204237,0.008995,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.204237,0.008995,-0.011000,0.249758,0,0);}
.m76_c01092{transform:matrix(0.204262,0.008997,-0.011000,0.249758,0,0);-ms-transform:matrix(0.204262,0.008997,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.204262,0.008997,-0.011000,0.249758,0,0);}
.md3_c01092{transform:matrix(0.205089,0.008622,-0.010501,0.249779,0,0);-ms-transform:matrix(0.205089,0.008622,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.205089,0.008622,-0.010501,0.249779,0,0);}
.mb9_c01092{transform:matrix(0.205431,0.009048,-0.011000,0.249758,0,0);-ms-transform:matrix(0.205431,0.009048,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.205431,0.009048,-0.011000,0.249758,0,0);}
.m10b_c01092{transform:matrix(0.205779,0.008857,-0.010751,0.249769,0,0);-ms-transform:matrix(0.205779,0.008857,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.205779,0.008857,-0.010751,0.249769,0,0);}
.mc0_c01092{transform:matrix(0.205960,0.009071,-0.011000,0.249758,0,0);-ms-transform:matrix(0.205960,0.009071,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.205960,0.009071,-0.011000,0.249758,0,0);}
.m28_c01092{transform:matrix(0.206046,0.007838,-0.009503,0.249819,0,0);-ms-transform:matrix(0.206046,0.007838,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.206046,0.007838,-0.009503,0.249819,0,0);}
.m105_c01092{transform:matrix(0.206239,0.008877,-0.010751,0.249769,0,0);-ms-transform:matrix(0.206239,0.008877,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.206239,0.008877,-0.010751,0.249769,0,0);}
.m1c_c01092{transform:matrix(0.206745,0.007864,-0.009503,0.249819,0,0);-ms-transform:matrix(0.206745,0.007864,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.206745,0.007864,-0.009503,0.249819,0,0);}
.md4_c01092{transform:matrix(0.207242,0.008713,-0.010501,0.249779,0,0);-ms-transform:matrix(0.207242,0.008713,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.207242,0.008713,-0.010501,0.249779,0,0);}
.m36_c01092{transform:matrix(0.207865,0.007907,-0.009503,0.249819,0,0);-ms-transform:matrix(0.207865,0.007907,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.207865,0.007907,-0.009503,0.249819,0,0);}
.m7c_c01092{transform:matrix(0.208168,0.009169,-0.011000,0.249758,0,0);-ms-transform:matrix(0.208168,0.009169,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.208168,0.009169,-0.011000,0.249758,0,0);}
.m10c_c01092{transform:matrix(0.208272,0.008965,-0.010751,0.249769,0,0);-ms-transform:matrix(0.208272,0.008965,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.208272,0.008965,-0.010751,0.249769,0,0);}
.m8e_c01092{transform:matrix(0.208513,0.009184,-0.011000,0.249758,0,0);-ms-transform:matrix(0.208513,0.009184,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.208513,0.009184,-0.011000,0.249758,0,0);}
.mfb_c01092{transform:matrix(0.208522,0.008975,-0.010751,0.249769,0,0);-ms-transform:matrix(0.208522,0.008975,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.208522,0.008975,-0.010751,0.249769,0,0);}
.m17_c01092{transform:matrix(0.210458,0.008005,-0.009503,0.249819,0,0);-ms-transform:matrix(0.210458,0.008005,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.210458,0.008005,-0.009503,0.249819,0,0);}
.m26_c01092{transform:matrix(0.211097,0.008030,-0.009503,0.249819,0,0);-ms-transform:matrix(0.211097,0.008030,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.211097,0.008030,-0.009503,0.249819,0,0);}
.m113_c01092{transform:matrix(0.211115,0.009087,-0.010751,0.249769,0,0);-ms-transform:matrix(0.211115,0.009087,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.211115,0.009087,-0.010751,0.249769,0,0);}
.m4b_c01092{transform:matrix(0.211347,0.008039,-0.009503,0.249819,0,0);-ms-transform:matrix(0.211347,0.008039,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.211347,0.008039,-0.009503,0.249819,0,0);}
.m72_c01092{transform:matrix(0.211455,0.009313,-0.011000,0.249758,0,0);-ms-transform:matrix(0.211455,0.009313,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.211455,0.009313,-0.011000,0.249758,0,0);}
.m9_c01092{transform:matrix(0.212242,0.008073,-0.009503,0.249819,0,0);-ms-transform:matrix(0.212242,0.008073,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.212242,0.008073,-0.009503,0.249819,0,0);}
.m1b_c01092{transform:matrix(0.212346,0.008077,-0.009503,0.249819,0,0);-ms-transform:matrix(0.212346,0.008077,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.212346,0.008077,-0.009503,0.249819,0,0);}
.mf_c01092{transform:matrix(0.212466,0.008082,-0.009503,0.249819,0,0);-ms-transform:matrix(0.212466,0.008082,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.212466,0.008082,-0.009503,0.249819,0,0);}
.m10e_c01092{transform:matrix(0.212778,0.009159,-0.010751,0.249769,0,0);-ms-transform:matrix(0.212778,0.009159,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.212778,0.009159,-0.010751,0.249769,0,0);}
.m78_c01092{transform:matrix(0.212844,0.009374,-0.011000,0.249758,0,0);-ms-transform:matrix(0.212844,0.009374,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.212844,0.009374,-0.011000,0.249758,0,0);}
.mc8_c01092{transform:matrix(0.213613,0.009408,-0.011000,0.249758,0,0);-ms-transform:matrix(0.213613,0.009408,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.213613,0.009408,-0.011000,0.249758,0,0);}
.m115_c01092{transform:matrix(0.214217,0.009221,-0.010751,0.249769,0,0);-ms-transform:matrix(0.214217,0.009221,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.214217,0.009221,-0.010751,0.249769,0,0);}
.mcc_c01092{transform:matrix(0.214457,0.009446,-0.011000,0.249758,0,0);-ms-transform:matrix(0.214457,0.009446,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.214457,0.009446,-0.011000,0.249758,0,0);}
.m7b_c01092{transform:matrix(0.214477,0.009446,-0.011000,0.249758,0,0);-ms-transform:matrix(0.214477,0.009446,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.214477,0.009446,-0.011000,0.249758,0,0);}
.m14_c01092{transform:matrix(0.214510,0.008160,-0.009503,0.249819,0,0);-ms-transform:matrix(0.214510,0.008160,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.214510,0.008160,-0.009503,0.249819,0,0);}
.ma0_c01092{transform:matrix(0.214592,0.009451,-0.011000,0.249758,0,0);-ms-transform:matrix(0.214592,0.009451,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.214592,0.009451,-0.011000,0.249758,0,0);}
.mf4_c01092{transform:matrix(0.214601,0.009237,-0.010751,0.249769,0,0);-ms-transform:matrix(0.214601,0.009237,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.214601,0.009237,-0.010751,0.249769,0,0);}
.md0_c01092{transform:matrix(0.214852,0.009463,-0.011000,0.249758,0,0);-ms-transform:matrix(0.214852,0.009463,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.214852,0.009463,-0.011000,0.249758,0,0);}
.mda_c01092{transform:matrix(0.214895,0.009035,-0.010501,0.249779,0,0);-ms-transform:matrix(0.214895,0.009035,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.214895,0.009035,-0.010501,0.249779,0,0);}
.m30_c01092{transform:matrix(0.215224,0.008187,-0.009503,0.249819,0,0);-ms-transform:matrix(0.215224,0.008187,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.215224,0.008187,-0.009503,0.249819,0,0);}
.m9d_c01092{transform:matrix(0.215506,0.009492,-0.011000,0.249758,0,0);-ms-transform:matrix(0.215506,0.009492,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.215506,0.009492,-0.011000,0.249758,0,0);}
.mfd_c01092{transform:matrix(0.215515,0.009276,-0.010751,0.249769,0,0);-ms-transform:matrix(0.215515,0.009276,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.215515,0.009276,-0.010751,0.249769,0,0);}
.m32_c01092{transform:matrix(0.216054,0.008218,-0.009503,0.249819,0,0);-ms-transform:matrix(0.216054,0.008218,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.216054,0.008218,-0.009503,0.249819,0,0);}
.m11_c01092{transform:matrix(0.216339,0.008229,-0.009503,0.249819,0,0);-ms-transform:matrix(0.216339,0.008229,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.216339,0.008229,-0.009503,0.249819,0,0);}
.m33_c01092{transform:matrix(0.216838,0.008248,-0.009503,0.249819,0,0);-ms-transform:matrix(0.216838,0.008248,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.216838,0.008248,-0.009503,0.249819,0,0);}
.mf9_c01092{transform:matrix(0.217419,0.009358,-0.010751,0.249769,0,0);-ms-transform:matrix(0.217419,0.009358,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.217419,0.009358,-0.010751,0.249769,0,0);}
.md7_c01092{transform:matrix(0.218142,0.009171,-0.010501,0.249779,0,0);-ms-transform:matrix(0.218142,0.009171,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.218142,0.009171,-0.010501,0.249779,0,0);}
.m29_c01092{transform:matrix(0.220236,0.008377,-0.009503,0.249819,0,0);-ms-transform:matrix(0.220236,0.008377,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.220236,0.008377,-0.009503,0.249819,0,0);}
.m54_c01092{transform:matrix(0.221045,0.008408,-0.009503,0.249819,0,0);-ms-transform:matrix(0.221045,0.008408,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.221045,0.008408,-0.009503,0.249819,0,0);}
.m9c_c01092{transform:matrix(0.221241,0.009744,-0.011000,0.249758,0,0);-ms-transform:matrix(0.221241,0.009744,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.221241,0.009744,-0.011000,0.249758,0,0);}
.m6d_c01092{transform:matrix(0.221295,0.008418,-0.009503,0.249819,0,0);-ms-transform:matrix(0.221295,0.008418,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.221295,0.008418,-0.009503,0.249819,0,0);}
.me8_c01092{transform:matrix(0.221395,0.009530,-0.010751,0.249769,0,0);-ms-transform:matrix(0.221395,0.009530,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.221395,0.009530,-0.010751,0.249769,0,0);}
.m2c_c01092{transform:matrix(0.221715,0.008434,-0.009503,0.249819,0,0);-ms-transform:matrix(0.221715,0.008434,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.221715,0.008434,-0.009503,0.249819,0,0);}
.mef_c01092{transform:matrix(0.223063,0.009601,-0.010751,0.249769,0,0);-ms-transform:matrix(0.223063,0.009601,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.223063,0.009601,-0.010751,0.249769,0,0);}
.m15_c01092{transform:matrix(0.223219,0.008491,-0.009503,0.249819,0,0);-ms-transform:matrix(0.223219,0.008491,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.223219,0.008491,-0.009503,0.249819,0,0);}
.m40_c01092{transform:matrix(0.223948,0.008519,-0.009503,0.249819,0,0);-ms-transform:matrix(0.223948,0.008519,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.223948,0.008519,-0.009503,0.249819,0,0);}
.m82_c01092{transform:matrix(0.224462,0.009886,-0.011000,0.249758,0,0);-ms-transform:matrix(0.224462,0.009886,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.224462,0.009886,-0.011000,0.249758,0,0);}
.m118_c01092{transform:matrix(0.224527,0.009664,-0.010751,0.249769,0,0);-ms-transform:matrix(0.224527,0.009664,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.224527,0.009664,-0.010751,0.249769,0,0);}
.m106_c01092{transform:matrix(0.224662,0.009670,-0.010751,0.249769,0,0);-ms-transform:matrix(0.224662,0.009670,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.224662,0.009670,-0.010751,0.249769,0,0);}
.m114_c01092{transform:matrix(0.224682,0.009671,-0.010751,0.249769,0,0);-ms-transform:matrix(0.224682,0.009671,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.224682,0.009671,-0.010751,0.249769,0,0);}
.me1_c01092{transform:matrix(0.225152,0.009691,-0.010751,0.249769,0,0);-ms-transform:matrix(0.225152,0.009691,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.225152,0.009691,-0.010751,0.249769,0,0);}
.m6a_c01092{transform:matrix(0.225152,0.008564,-0.009503,0.249819,0,0);-ms-transform:matrix(0.225152,0.008564,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.225152,0.008564,-0.009503,0.249819,0,0);}
.mdc_c01092{transform:matrix(0.225166,0.009466,-0.010501,0.249779,0,0);-ms-transform:matrix(0.225166,0.009466,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.225166,0.009466,-0.010501,0.249779,0,0);}
.m56_c01092{transform:matrix(0.225182,0.008565,-0.009503,0.249819,0,0);-ms-transform:matrix(0.225182,0.008565,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.225182,0.008565,-0.009503,0.249819,0,0);}
.m92_c01092{transform:matrix(0.225247,0.009921,-0.011000,0.249758,0,0);-ms-transform:matrix(0.225247,0.009921,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.225247,0.009921,-0.011000,0.249758,0,0);}
.m86_c01092{transform:matrix(0.225891,0.009949,-0.011000,0.249758,0,0);-ms-transform:matrix(0.225891,0.009949,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.225891,0.009949,-0.011000,0.249758,0,0);}
.m4d_c01092{transform:matrix(0.225902,0.008593,-0.009503,0.249819,0,0);-ms-transform:matrix(0.225902,0.008593,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.225902,0.008593,-0.009503,0.249819,0,0);}
.mc2_c01092{transform:matrix(0.226051,0.009956,-0.011000,0.249758,0,0);-ms-transform:matrix(0.226051,0.009956,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.226051,0.009956,-0.011000,0.249758,0,0);}
.ma5_c01092{transform:matrix(0.226525,0.009977,-0.011000,0.249758,0,0);-ms-transform:matrix(0.226525,0.009977,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.226525,0.009977,-0.011000,0.249758,0,0);}
.mea_c01092{transform:matrix(0.226535,0.009751,-0.010751,0.249769,0,0);-ms-transform:matrix(0.226535,0.009751,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.226535,0.009751,-0.010751,0.249769,0,0);}
.md_c01092{transform:matrix(0.226581,0.008619,-0.009503,0.249819,0,0);-ms-transform:matrix(0.226581,0.008619,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.226581,0.008619,-0.009503,0.249819,0,0);}
.m9a_c01092{transform:matrix(0.226830,0.009991,-0.011000,0.249758,0,0);-ms-transform:matrix(0.226830,0.009991,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.226830,0.009991,-0.011000,0.249758,0,0);}
.m34_c01092{transform:matrix(0.226886,0.008630,-0.009503,0.249819,0,0);-ms-transform:matrix(0.226886,0.008630,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.226886,0.008630,-0.009503,0.249819,0,0);}
.m18_c01092{transform:matrix(0.227096,0.008638,-0.009503,0.249819,0,0);-ms-transform:matrix(0.227096,0.008638,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.227096,0.008638,-0.009503,0.249819,0,0);}
.m95_c01092{transform:matrix(0.227464,0.010018,-0.011000,0.249758,0,0);-ms-transform:matrix(0.227464,0.010018,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.227464,0.010018,-0.011000,0.249758,0,0);}
.m75_c01092{transform:matrix(0.227554,0.010022,-0.011000,0.249758,0,0);-ms-transform:matrix(0.227554,0.010022,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.227554,0.010022,-0.011000,0.249758,0,0);}
.mcf_c01092{transform:matrix(0.227724,0.010030,-0.011000,0.249758,0,0);-ms-transform:matrix(0.227724,0.010030,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.227724,0.010030,-0.011000,0.249758,0,0);}
.ma_c01092{transform:matrix(0.227995,0.008672,-0.009503,0.249819,0,0);-ms-transform:matrix(0.227995,0.008672,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.227995,0.008672,-0.009503,0.249819,0,0);}
.md2_c01092{transform:matrix(0.228153,0.009592,-0.010501,0.249779,0,0);-ms-transform:matrix(0.228153,0.009592,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.228153,0.009592,-0.010501,0.249779,0,0);}
.mf8_c01092{transform:matrix(0.228404,0.009831,-0.010751,0.249769,0,0);-ms-transform:matrix(0.228404,0.009831,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.228404,0.009831,-0.010751,0.249769,0,0);}
.m2_c01092{transform:matrix(0.228650,0.008697,-0.009503,0.249819,0,0);-ms-transform:matrix(0.228650,0.008697,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.228650,0.008697,-0.009503,0.249819,0,0);}
.ma2_c01092{transform:matrix(0.229368,0.010102,-0.011000,0.249758,0,0);-ms-transform:matrix(0.229368,0.010102,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.229368,0.010102,-0.011000,0.249758,0,0);}
.m71_c01092{transform:matrix(0.229574,0.008733,-0.009503,0.249819,0,0);-ms-transform:matrix(0.229574,0.008733,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.229574,0.008733,-0.009503,0.249819,0,0);}
.me5_c01092{transform:matrix(0.229787,0.009891,-0.010751,0.249769,0,0);-ms-transform:matrix(0.229787,0.009891,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.229787,0.009891,-0.010751,0.249769,0,0);}
.m84_c01092{transform:matrix(0.229992,0.010130,-0.011000,0.249758,0,0);-ms-transform:matrix(0.229992,0.010130,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.229992,0.010130,-0.011000,0.249758,0,0);}
.mec_c01092{transform:matrix(0.230002,0.009900,-0.010751,0.249769,0,0);-ms-transform:matrix(0.230002,0.009900,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.230002,0.009900,-0.010751,0.249769,0,0);}
.m91_c01092{transform:matrix(0.230222,0.010140,-0.011000,0.249758,0,0);-ms-transform:matrix(0.230222,0.010140,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.230222,0.010140,-0.011000,0.249758,0,0);}
.m89_c01092{transform:matrix(0.230561,0.010155,-0.011000,0.249758,0,0);-ms-transform:matrix(0.230561,0.010155,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.230561,0.010155,-0.011000,0.249758,0,0);}
.mf2_c01092{transform:matrix(0.230831,0.009936,-0.010751,0.249769,0,0);-ms-transform:matrix(0.230831,0.009936,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.230831,0.009936,-0.010751,0.249769,0,0);}
.m109_c01092{transform:matrix(0.231031,0.009944,-0.010751,0.249769,0,0);-ms-transform:matrix(0.231031,0.009944,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.231031,0.009944,-0.010751,0.249769,0,0);}
.md5_c01092{transform:matrix(0.231461,0.009731,-0.010501,0.249779,0,0);-ms-transform:matrix(0.231461,0.009731,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.231461,0.009731,-0.010501,0.249779,0,0);}
.me4_c01092{transform:matrix(0.231471,0.009963,-0.010751,0.249769,0,0);-ms-transform:matrix(0.231471,0.009963,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.231471,0.009963,-0.010751,0.249769,0,0);}
.m10a_c01092{transform:matrix(0.231616,0.009969,-0.010751,0.249769,0,0);-ms-transform:matrix(0.231616,0.009969,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.231616,0.009969,-0.010751,0.249769,0,0);}
.m112_c01092{transform:matrix(0.231735,0.009975,-0.010751,0.249769,0,0);-ms-transform:matrix(0.231735,0.009975,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.231735,0.009975,-0.010751,0.249769,0,0);}
.m7d_c01092{transform:matrix(0.231810,0.010210,-0.011000,0.249758,0,0);-ms-transform:matrix(0.231810,0.010210,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.231810,0.010210,-0.011000,0.249758,0,0);}
.m117_c01092{transform:matrix(0.231975,0.009985,-0.010751,0.249769,0,0);-ms-transform:matrix(0.231975,0.009985,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.231975,0.009985,-0.010751,0.249769,0,0);}
.mab_c01092{transform:matrix(0.232060,0.010221,-0.011000,0.249758,0,0);-ms-transform:matrix(0.232060,0.010221,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.232060,0.010221,-0.011000,0.249758,0,0);}
.m7e_c01092{transform:matrix(0.232180,0.010226,-0.011000,0.249758,0,0);-ms-transform:matrix(0.232180,0.010226,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.232180,0.010226,-0.011000,0.249758,0,0);}
.me0_c01092{transform:matrix(0.232250,0.009997,-0.010751,0.249769,0,0);-ms-transform:matrix(0.232250,0.009997,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.232250,0.009997,-0.010751,0.249769,0,0);}
.m107_c01092{transform:matrix(0.232325,0.010000,-0.010751,0.249769,0,0);-ms-transform:matrix(0.232325,0.010000,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.232325,0.010000,-0.010751,0.249769,0,0);}
.m4f_c01092{transform:matrix(0.232387,0.008840,-0.009503,0.249819,0,0);-ms-transform:matrix(0.232387,0.008840,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.232387,0.008840,-0.009503,0.249819,0,0);}
.m6b_c01092{transform:matrix(0.232682,0.008851,-0.009503,0.249819,0,0);-ms-transform:matrix(0.232682,0.008851,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.232682,0.008851,-0.009503,0.249819,0,0);}
.m5d_c01092{transform:matrix(0.232922,0.008860,-0.009503,0.249819,0,0);-ms-transform:matrix(0.232922,0.008860,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.232922,0.008860,-0.009503,0.249819,0,0);}
.mca_c01092{transform:matrix(0.233434,0.010281,-0.011000,0.249758,0,0);-ms-transform:matrix(0.233434,0.010281,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.233434,0.010281,-0.011000,0.249758,0,0);}
.m110_c01092{transform:matrix(0.233729,0.010060,-0.010751,0.249769,0,0);-ms-transform:matrix(0.233729,0.010060,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.233729,0.010060,-0.010751,0.249769,0,0);}
.mde_c01092{transform:matrix(0.234328,0.010086,-0.010751,0.249769,0,0);-ms-transform:matrix(0.234328,0.010086,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.234328,0.010086,-0.010751,0.249769,0,0);}
.m111_c01092{transform:matrix(0.234378,0.010088,-0.010751,0.249769,0,0);-ms-transform:matrix(0.234378,0.010088,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.234378,0.010088,-0.010751,0.249769,0,0);}
.mcd_c01092{transform:matrix(0.234463,0.010327,-0.011000,0.249758,0,0);-ms-transform:matrix(0.234463,0.010327,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.234463,0.010327,-0.011000,0.249758,0,0);}
.mad_c01092{transform:matrix(0.234558,0.010331,-0.011000,0.249758,0,0);-ms-transform:matrix(0.234558,0.010331,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.234558,0.010331,-0.011000,0.249758,0,0);}
.me2_c01092{transform:matrix(0.234638,0.010100,-0.010751,0.249769,0,0);-ms-transform:matrix(0.234638,0.010100,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.234638,0.010100,-0.010751,0.249769,0,0);}
.m90_c01092{transform:matrix(0.235037,0.010352,-0.011000,0.249758,0,0);-ms-transform:matrix(0.235037,0.010352,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.235037,0.010352,-0.011000,0.249758,0,0);}
.m3f_c01092{transform:matrix(0.235585,0.008961,-0.009503,0.249819,0,0);-ms-transform:matrix(0.235585,0.008961,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.235585,0.008961,-0.009503,0.249819,0,0);}
.md1_c01092{transform:matrix(0.235796,0.010385,-0.011000,0.249758,0,0);-ms-transform:matrix(0.235796,0.010385,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.235796,0.010385,-0.011000,0.249758,0,0);}
.mc9_c01092{transform:matrix(0.235891,0.010390,-0.011000,0.249758,0,0);-ms-transform:matrix(0.235891,0.010390,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.235891,0.010390,-0.011000,0.249758,0,0);}
.md9_c01092{transform:matrix(0.235972,0.009921,-0.010501,0.249779,0,0);-ms-transform:matrix(0.235972,0.009921,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.235972,0.009921,-0.010501,0.249779,0,0);}
.m77_c01092{transform:matrix(0.236336,0.010409,-0.011000,0.249758,0,0);-ms-transform:matrix(0.236336,0.010409,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.236336,0.010409,-0.011000,0.249758,0,0);}
.m55_c01092{transform:matrix(0.236414,0.008993,-0.009503,0.249819,0,0);-ms-transform:matrix(0.236414,0.008993,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.236414,0.008993,-0.009503,0.249819,0,0);}
.m3a_c01092{transform:matrix(0.236634,0.009001,-0.009503,0.249819,0,0);-ms-transform:matrix(0.236634,0.009001,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.236634,0.009001,-0.009503,0.249819,0,0);}
.m5c_c01092{transform:matrix(0.237658,0.009040,-0.009503,0.249819,0,0);-ms-transform:matrix(0.237658,0.009040,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.237658,0.009040,-0.009503,0.249819,0,0);}
.m6f_c01092{transform:matrix(0.238048,0.009055,-0.009503,0.249819,0,0);-ms-transform:matrix(0.238048,0.009055,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.238048,0.009055,-0.009503,0.249819,0,0);}
.m10d_c01092{transform:matrix(0.238159,0.010251,-0.010751,0.249769,0,0);-ms-transform:matrix(0.238159,0.010251,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.238159,0.010251,-0.010751,0.249769,0,0);}
.md8_c01092{transform:matrix(0.238354,0.010021,-0.010501,0.249779,0,0);-ms-transform:matrix(0.238354,0.010021,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.238354,0.010021,-0.010501,0.249779,0,0);}
.m49_c01092{transform:matrix(0.238363,0.009067,-0.009503,0.249819,0,0);-ms-transform:matrix(0.238363,0.009067,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.238363,0.009067,-0.009503,0.249819,0,0);}
.m98_c01092{transform:matrix(0.238409,0.010500,-0.011000,0.249758,0,0);-ms-transform:matrix(0.238409,0.010500,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.238409,0.010500,-0.011000,0.249758,0,0);}
.m79_c01092{transform:matrix(0.238519,0.010505,-0.011000,0.249758,0,0);-ms-transform:matrix(0.238519,0.010505,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.238519,0.010505,-0.011000,0.249758,0,0);}
.mc6_c01092{transform:matrix(0.238619,0.010510,-0.011000,0.249758,0,0);-ms-transform:matrix(0.238619,0.010510,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.238619,0.010510,-0.011000,0.249758,0,0);}
.mc7_c01092{transform:matrix(0.239128,0.010532,-0.011000,0.249758,0,0);-ms-transform:matrix(0.239128,0.010532,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.239128,0.010532,-0.011000,0.249758,0,0);}
.m116_c01092{transform:matrix(0.239458,0.010307,-0.010751,0.249769,0,0);-ms-transform:matrix(0.239458,0.010307,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.239458,0.010307,-0.010751,0.249769,0,0);}
.m6_c01092{transform:matrix(0.239737,0.009119,-0.009503,0.249819,0,0);-ms-transform:matrix(0.239737,0.009119,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.239737,0.009119,-0.009503,0.249819,0,0);}
.m12_c01092{transform:matrix(0.240581,0.009151,-0.009503,0.249819,0,0);-ms-transform:matrix(0.240581,0.009151,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.240581,0.009151,-0.009503,0.249819,0,0);}
.m94_c01092{transform:matrix(0.240747,0.010603,-0.011000,0.249758,0,0);-ms-transform:matrix(0.240747,0.010603,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.240747,0.010603,-0.011000,0.249758,0,0);}
.m44_c01092{transform:matrix(0.241126,0.009172,-0.009503,0.249819,0,0);-ms-transform:matrix(0.241126,0.009172,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.241126,0.009172,-0.009503,0.249819,0,0);}
.m7f_c01092{transform:matrix(0.241761,0.010648,-0.011000,0.249758,0,0);-ms-transform:matrix(0.241761,0.010648,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.241761,0.010648,-0.011000,0.249758,0,0);}
.m23_c01092{transform:matrix(0.241845,0.009199,-0.009503,0.249819,0,0);-ms-transform:matrix(0.241845,0.009199,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.241845,0.009199,-0.009503,0.249819,0,0);}
.maa_c01092{transform:matrix(0.242865,0.010697,-0.011000,0.249758,0,0);-ms-transform:matrix(0.242865,0.010697,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.242865,0.010697,-0.011000,0.249758,0,0);}
.m60_c01092{transform:matrix(0.243319,0.009255,-0.009503,0.249819,0,0);-ms-transform:matrix(0.243319,0.009255,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.243319,0.009255,-0.009503,0.249819,0,0);}
.mb6_c01092{transform:matrix(0.244533,0.010770,-0.011000,0.249758,0,0);-ms-transform:matrix(0.244533,0.010770,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.244533,0.010770,-0.011000,0.249758,0,0);}
.m20_c01092{transform:matrix(0.244683,0.009307,-0.009503,0.249819,0,0);-ms-transform:matrix(0.244683,0.009307,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.244683,0.009307,-0.009503,0.249819,0,0);}
.m61_c01092{transform:matrix(0.245053,0.009321,-0.009503,0.249819,0,0);-ms-transform:matrix(0.245053,0.009321,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.245053,0.009321,-0.009503,0.249819,0,0);}
.mb0_c01092{transform:matrix(0.245222,0.010801,-0.011000,0.249758,0,0);-ms-transform:matrix(0.245222,0.010801,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.245222,0.010801,-0.011000,0.249758,0,0);}
.ma7_c01092{transform:matrix(0.245382,0.010808,-0.011000,0.249758,0,0);-ms-transform:matrix(0.245382,0.010808,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.245382,0.010808,-0.011000,0.249758,0,0);}
.mf7_c01092{transform:matrix(0.245498,0.010567,-0.010751,0.249769,0,0);-ms-transform:matrix(0.245498,0.010567,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.245498,0.010567,-0.010751,0.249769,0,0);}
.m5f_c01092{transform:matrix(0.245792,0.009349,-0.009503,0.249819,0,0);-ms-transform:matrix(0.245792,0.009349,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.245792,0.009349,-0.009503,0.249819,0,0);}
.m51_c01092{transform:matrix(0.246017,0.009358,-0.009503,0.249819,0,0);-ms-transform:matrix(0.246017,0.009358,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.246017,0.009358,-0.009503,0.249819,0,0);}
.m93_c01092{transform:matrix(0.246306,0.010848,-0.011000,0.249758,0,0);-ms-transform:matrix(0.246306,0.010848,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.246306,0.010848,-0.011000,0.249758,0,0);}
.mae_c01092{transform:matrix(0.246606,0.010862,-0.011000,0.249758,0,0);-ms-transform:matrix(0.246606,0.010862,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.246606,0.010862,-0.011000,0.249758,0,0);}
.m97_c01092{transform:matrix(0.246921,0.010875,-0.011000,0.249758,0,0);-ms-transform:matrix(0.246921,0.010875,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.246921,0.010875,-0.011000,0.249758,0,0);}
.mb4_c01092{transform:matrix(0.247060,0.010882,-0.011000,0.249758,0,0);-ms-transform:matrix(0.247060,0.010882,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.247060,0.010882,-0.011000,0.249758,0,0);}
.mcb_c01092{transform:matrix(0.247135,0.010885,-0.011000,0.249758,0,0);-ms-transform:matrix(0.247135,0.010885,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.247135,0.010885,-0.011000,0.249758,0,0);}
.m83_c01092{transform:matrix(0.247310,0.010893,-0.011000,0.249758,0,0);-ms-transform:matrix(0.247310,0.010893,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.247310,0.010893,-0.011000,0.249758,0,0);}
.m4_c01092{transform:matrix(0.247371,0.009410,-0.009503,0.249819,0,0);-ms-transform:matrix(0.247371,0.009410,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.247371,0.009410,-0.009503,0.249819,0,0);}
.m13_c01092{transform:matrix(0.247416,0.009411,-0.009503,0.249819,0,0);-ms-transform:matrix(0.247416,0.009411,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.247416,0.009411,-0.009503,0.249819,0,0);}
.mfe_c01092{transform:matrix(0.248130,0.010680,-0.010751,0.249769,0,0);-ms-transform:matrix(0.248130,0.010680,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.248130,0.010680,-0.010751,0.249769,0,0);}
.mc4_c01092{transform:matrix(0.249079,0.010970,-0.011000,0.249758,0,0);-ms-transform:matrix(0.249079,0.010970,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.249079,0.010970,-0.011000,0.249758,0,0);}
.m3b_c01092{transform:matrix(0.249290,0.009482,-0.009503,0.249819,0,0);-ms-transform:matrix(0.249290,0.009482,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.249290,0.009482,-0.009503,0.249819,0,0);}
.m100_c01092{transform:matrix(0.249424,0.010736,-0.010751,0.249769,0,0);-ms-transform:matrix(0.249424,0.010736,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.249424,0.010736,-0.010751,0.249769,0,0);}
.m10f_c01092{transform:matrix(0.249589,0.010743,-0.010751,0.249769,0,0);-ms-transform:matrix(0.249589,0.010743,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.249589,0.010743,-0.010751,0.249769,0,0);}
.m8d_c01092{transform:matrix(0.249683,0.010997,-0.011000,0.249758,0,0);-ms-transform:matrix(0.249683,0.010997,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.249683,0.010997,-0.011000,0.249758,0,0);}
.m3e_c01092{transform:matrix(0.249974,0.009509,-0.009503,0.249819,0,0);-ms-transform:matrix(0.249974,0.009509,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.249974,0.009509,-0.009503,0.249819,0,0);}
.mfa_c01092{transform:matrix(0.250353,0.010776,-0.010751,0.249769,0,0);-ms-transform:matrix(0.250353,0.010776,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.250353,0.010776,-0.010751,0.249769,0,0);}
.m45_c01092{transform:matrix(0.250609,0.009533,-0.009503,0.249819,0,0);-ms-transform:matrix(0.250609,0.009533,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.250609,0.009533,-0.009503,0.249819,0,0);}
.med_c01092{transform:matrix(0.250718,0.010792,-0.010751,0.249769,0,0);-ms-transform:matrix(0.250718,0.010792,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.250718,0.010792,-0.010751,0.249769,0,0);}
.m4a_c01092{transform:matrix(0.251218,0.009556,-0.009503,0.249819,0,0);-ms-transform:matrix(0.251218,0.009556,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.251218,0.009556,-0.009503,0.249819,0,0);}
.mdd_c01092{transform:matrix(0.251737,0.010836,-0.010751,0.249769,0,0);-ms-transform:matrix(0.251737,0.010836,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.251737,0.010836,-0.010751,0.249769,0,0);}
.m35_c01092{transform:matrix(0.251918,0.009582,-0.009503,0.249819,0,0);-ms-transform:matrix(0.251918,0.009582,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.251918,0.009582,-0.009503,0.249819,0,0);}
.m1f_c01092{transform:matrix(0.252018,0.009586,-0.009503,0.249819,0,0);-ms-transform:matrix(0.252018,0.009586,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.252018,0.009586,-0.009503,0.249819,0,0);}
.m39_c01092{transform:matrix(0.252118,0.009590,-0.009503,0.249819,0,0);-ms-transform:matrix(0.252118,0.009590,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.252118,0.009590,-0.009503,0.249819,0,0);}
.m70_c01092{transform:matrix(0.252238,0.009595,-0.009503,0.249819,0,0);-ms-transform:matrix(0.252238,0.009595,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.252238,0.009595,-0.009503,0.249819,0,0);}
.m57_c01092{transform:matrix(0.252467,0.009603,-0.009503,0.249819,0,0);-ms-transform:matrix(0.252467,0.009603,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.252467,0.009603,-0.009503,0.249819,0,0);}
.m6c_c01092{transform:matrix(0.252527,0.009606,-0.009503,0.249819,0,0);-ms-transform:matrix(0.252527,0.009606,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.252527,0.009606,-0.009503,0.249819,0,0);}
.m96_c01092{transform:matrix(0.252665,0.011128,-0.011000,0.249758,0,0);-ms-transform:matrix(0.252665,0.011128,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.252665,0.011128,-0.011000,0.249758,0,0);}
.m19_c01092{transform:matrix(0.252837,0.009617,-0.009503,0.249819,0,0);-ms-transform:matrix(0.252837,0.009617,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.252837,0.009617,-0.009503,0.249819,0,0);}
.m65_c01092{transform:matrix(0.253302,0.009635,-0.009503,0.249819,0,0);-ms-transform:matrix(0.253302,0.009635,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.253302,0.009635,-0.009503,0.249819,0,0);}
.mfc_c01092{transform:matrix(0.253585,0.010915,-0.010751,0.249769,0,0);-ms-transform:matrix(0.253585,0.010915,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.253585,0.010915,-0.010751,0.249769,0,0);}
.m6e_c01092{transform:matrix(0.254041,0.009663,-0.009503,0.249819,0,0);-ms-transform:matrix(0.254041,0.009663,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.254041,0.009663,-0.009503,0.249819,0,0);}
.m3c_c01092{transform:matrix(0.254501,0.009681,-0.009503,0.249819,0,0);-ms-transform:matrix(0.254501,0.009681,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.254501,0.009681,-0.009503,0.249819,0,0);}
.me_c01092{transform:matrix(0.254926,0.009697,-0.009503,0.249819,0,0);-ms-transform:matrix(0.254926,0.009697,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.254926,0.009697,-0.009503,0.249819,0,0);}
.m37_c01092{transform:matrix(0.255016,0.009700,-0.009503,0.249819,0,0);-ms-transform:matrix(0.255016,0.009700,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.255016,0.009700,-0.009503,0.249819,0,0);}
.me7_c01092{transform:matrix(0.255034,0.010977,-0.010751,0.249769,0,0);-ms-transform:matrix(0.255034,0.010977,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.255034,0.010977,-0.010751,0.249769,0,0);}
.mee_c01092{transform:matrix(0.255204,0.010985,-0.010751,0.249769,0,0);-ms-transform:matrix(0.255204,0.010985,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.255204,0.010985,-0.010751,0.249769,0,0);}
.m8f_c01092{transform:matrix(0.255307,0.011245,-0.011000,0.249758,0,0);-ms-transform:matrix(0.255307,0.011245,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.255307,0.011245,-0.011000,0.249758,0,0);}
.mff_c01092{transform:matrix(0.255643,0.011004,-0.010751,0.249769,0,0);-ms-transform:matrix(0.255643,0.011004,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.255643,0.011004,-0.010751,0.249769,0,0);}
.ma3_c01092{transform:matrix(0.255797,0.011266,-0.011000,0.249758,0,0);-ms-transform:matrix(0.255797,0.011266,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.255797,0.011266,-0.011000,0.249758,0,0);}
.m66_c01092{transform:matrix(0.256455,0.009755,-0.009503,0.249819,0,0);-ms-transform:matrix(0.256455,0.009755,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.256455,0.009755,-0.009503,0.249819,0,0);}
.m7_c01092{transform:matrix(0.256509,0.009757,-0.009503,0.249819,0,0);-ms-transform:matrix(0.256509,0.009757,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.256509,0.009757,-0.009503,0.249819,0,0);}
.m8c_c01092{transform:matrix(0.256676,0.011305,-0.011000,0.249758,0,0);-ms-transform:matrix(0.256676,0.011305,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.256676,0.011305,-0.011000,0.249758,0,0);}
.maf_c01092{transform:matrix(0.256716,0.011307,-0.011000,0.249758,0,0);-ms-transform:matrix(0.256716,0.011307,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.256716,0.011307,-0.011000,0.249758,0,0);}
.m9b_c01092{transform:matrix(0.257116,0.011324,-0.011000,0.249758,0,0);-ms-transform:matrix(0.257116,0.011324,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.257116,0.011324,-0.011000,0.249758,0,0);}
.m99_c01092{transform:matrix(0.257316,0.011333,-0.011000,0.249758,0,0);-ms-transform:matrix(0.257316,0.011333,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.257316,0.011333,-0.011000,0.249758,0,0);}
.m3d_c01092{transform:matrix(0.257419,0.009792,-0.009503,0.249819,0,0);-ms-transform:matrix(0.257419,0.009792,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.257419,0.009792,-0.009503,0.249819,0,0);}
.m10_c01092{transform:matrix(0.257554,0.009797,-0.009503,0.249819,0,0);-ms-transform:matrix(0.257554,0.009797,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.257554,0.009797,-0.009503,0.249819,0,0);}
.m85_c01092{transform:matrix(0.257820,0.011355,-0.011000,0.249758,0,0);-ms-transform:matrix(0.257820,0.011355,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.257820,0.011355,-0.011000,0.249758,0,0);}
.m48_c01092{transform:matrix(0.257869,0.009809,-0.009503,0.249819,0,0);-ms-transform:matrix(0.257869,0.009809,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.257869,0.009809,-0.009503,0.249819,0,0);}
.m1e_c01092{transform:matrix(0.257888,0.009810,-0.009503,0.249819,0,0);-ms-transform:matrix(0.257888,0.009810,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.257888,0.009810,-0.009503,0.249819,0,0);}
.ma8_c01092{transform:matrix(0.258065,0.011366,-0.011000,0.249758,0,0);-ms-transform:matrix(0.258065,0.011366,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.258065,0.011366,-0.011000,0.249758,0,0);}
.m8b_c01092{transform:matrix(0.258819,0.011399,-0.011000,0.249758,0,0);-ms-transform:matrix(0.258819,0.011399,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.258819,0.011399,-0.011000,0.249758,0,0);}
.m9e_c01092{transform:matrix(0.258869,0.011402,-0.011000,0.249758,0,0);-ms-transform:matrix(0.258869,0.011402,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.258869,0.011402,-0.011000,0.249758,0,0);}
.m5b_c01092{transform:matrix(0.259268,0.009862,-0.009503,0.249819,0,0);-ms-transform:matrix(0.259268,0.009862,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.259268,0.009862,-0.009503,0.249819,0,0);}
.m43_c01092{transform:matrix(0.259432,0.009868,-0.009503,0.249819,0,0);-ms-transform:matrix(0.259432,0.009868,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.259432,0.009868,-0.009503,0.249819,0,0);}
.mb3_c01092{transform:matrix(0.259858,0.011445,-0.011000,0.249758,0,0);-ms-transform:matrix(0.259858,0.011445,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.259858,0.011445,-0.011000,0.249758,0,0);}
.mb7_c01092{transform:matrix(0.260757,0.011485,-0.011000,0.249758,0,0);-ms-transform:matrix(0.260757,0.011485,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.260757,0.011485,-0.011000,0.249758,0,0);}
.mf1_c01092{transform:matrix(0.260913,0.011231,-0.010751,0.249769,0,0);-ms-transform:matrix(0.260913,0.011231,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.260913,0.011231,-0.010751,0.249769,0,0);}
.mb5_c01092{transform:matrix(0.261117,0.011501,-0.011000,0.249758,0,0);-ms-transform:matrix(0.261117,0.011501,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.261117,0.011501,-0.011000,0.249758,0,0);}
.m50_c01092{transform:matrix(0.261741,0.009956,-0.009503,0.249819,0,0);-ms-transform:matrix(0.261741,0.009956,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.261741,0.009956,-0.009503,0.249819,0,0);}
.m1a_c01092{transform:matrix(0.261896,0.009962,-0.009503,0.249819,0,0);-ms-transform:matrix(0.261896,0.009962,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.261896,0.009962,-0.009503,0.249819,0,0);}
.m46_c01092{transform:matrix(0.262145,0.009971,-0.009503,0.249819,0,0);-ms-transform:matrix(0.262145,0.009971,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.262145,0.009971,-0.009503,0.249819,0,0);}
.mac_c01092{transform:matrix(0.262271,0.011551,-0.011000,0.249758,0,0);-ms-transform:matrix(0.262271,0.011551,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.262271,0.011551,-0.011000,0.249758,0,0);}
.m5a_c01092{transform:matrix(0.263040,0.010006,-0.009503,0.249819,0,0);-ms-transform:matrix(0.263040,0.010006,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.263040,0.010006,-0.009503,0.249819,0,0);}
.m8_c01092{transform:matrix(0.264244,0.010051,-0.009503,0.249819,0,0);-ms-transform:matrix(0.264244,0.010051,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.264244,0.010051,-0.009503,0.249819,0,0);}
.mb1_c01092{transform:matrix(0.265243,0.011682,-0.011000,0.249758,0,0);-ms-transform:matrix(0.265243,0.011682,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.265243,0.011682,-0.011000,0.249758,0,0);}
.m87_c01092{transform:matrix(0.265837,0.011709,-0.011000,0.249758,0,0);-ms-transform:matrix(0.265837,0.011709,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.265837,0.011709,-0.011000,0.249758,0,0);}
.m53_c01092{transform:matrix(0.266327,0.010131,-0.009503,0.249819,0,0);-ms-transform:matrix(0.266327,0.010131,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.266327,0.010131,-0.009503,0.249819,0,0);}
.m64_c01092{transform:matrix(0.266517,0.010138,-0.009503,0.249819,0,0);-ms-transform:matrix(0.266517,0.010138,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.266517,0.010138,-0.009503,0.249819,0,0);}
.m59_c01092{transform:matrix(0.266807,0.010149,-0.009503,0.249819,0,0);-ms-transform:matrix(0.266807,0.010149,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.266807,0.010149,-0.009503,0.249819,0,0);}
.ma6_c01092{transform:matrix(0.266821,0.011752,-0.011000,0.249758,0,0);-ms-transform:matrix(0.266821,0.011752,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.266821,0.011752,-0.011000,0.249758,0,0);}
.m4c_c01092{transform:matrix(0.266982,0.010155,-0.009503,0.249819,0,0);-ms-transform:matrix(0.266982,0.010155,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.266982,0.010155,-0.009503,0.249819,0,0);}
.m47_c01092{transform:matrix(0.267142,0.010162,-0.009503,0.249819,0,0);-ms-transform:matrix(0.267142,0.010162,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.267142,0.010162,-0.009503,0.249819,0,0);}
.m62_c01092{transform:matrix(0.268116,0.010199,-0.009503,0.249819,0,0);-ms-transform:matrix(0.268116,0.010199,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.268116,0.010199,-0.009503,0.249819,0,0);}
.mf6_c01092{transform:matrix(0.268466,0.011556,-0.010751,0.249769,0,0);-ms-transform:matrix(0.268466,0.011556,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.268466,0.011556,-0.010751,0.249769,0,0);}
.m101_c01092{transform:matrix(0.268636,0.011563,-0.010751,0.249769,0,0);-ms-transform:matrix(0.268636,0.011563,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.268636,0.011563,-0.010751,0.249769,0,0);}
.m58_c01092{transform:matrix(0.268641,0.010219,-0.009503,0.249819,0,0);-ms-transform:matrix(0.268641,0.010219,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.268641,0.010219,-0.009503,0.249819,0,0);}
.m74_c01092{transform:matrix(0.268889,0.011843,-0.011000,0.249758,0,0);-ms-transform:matrix(0.268889,0.011843,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.268889,0.011843,-0.011000,0.249758,0,0);}
.m52_c01092{transform:matrix(0.269280,0.010243,-0.009503,0.249819,0,0);-ms-transform:matrix(0.269280,0.010243,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.269280,0.010243,-0.009503,0.249819,0,0);}
.m3_c01092{transform:matrix(0.269560,0.010254,-0.009503,0.249819,0,0);-ms-transform:matrix(0.269560,0.010254,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.269560,0.010254,-0.009503,0.249819,0,0);}
.m68_c01092{transform:matrix(0.269810,0.010263,-0.009503,0.249819,0,0);-ms-transform:matrix(0.269810,0.010263,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.269810,0.010263,-0.009503,0.249819,0,0);}
.mf0_c01092{transform:matrix(0.270005,0.011622,-0.010751,0.249769,0,0);-ms-transform:matrix(0.270005,0.011622,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.270005,0.011622,-0.010751,0.249769,0,0);}
.mf5_c01092{transform:matrix(0.270540,0.011645,-0.010751,0.249769,0,0);-ms-transform:matrix(0.270540,0.011645,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.270540,0.011645,-0.010751,0.249769,0,0);}
.m9f_c01092{transform:matrix(0.270633,0.011920,-0.011000,0.249758,0,0);-ms-transform:matrix(0.270633,0.011920,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.270633,0.011920,-0.011000,0.249758,0,0);}
.m5e_c01092{transform:matrix(0.270849,0.010303,-0.009503,0.249819,0,0);-ms-transform:matrix(0.270849,0.010303,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.270849,0.010303,-0.009503,0.249819,0,0);}
.ma9_c01092{transform:matrix(0.271871,0.011974,-0.011000,0.249758,0,0);-ms-transform:matrix(0.271871,0.011974,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.271871,0.011974,-0.011000,0.249758,0,0);}
.m41_c01092{transform:matrix(0.272203,0.010354,-0.009503,0.249819,0,0);-ms-transform:matrix(0.272203,0.010354,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.272203,0.010354,-0.009503,0.249819,0,0);}
.m67_c01092{transform:matrix(0.272808,0.010377,-0.009503,0.249819,0,0);-ms-transform:matrix(0.272808,0.010377,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.272808,0.010377,-0.009503,0.249819,0,0);}
.m5_c01092{transform:matrix(0.272983,0.010384,-0.009503,0.249819,0,0);-ms-transform:matrix(0.272983,0.010384,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.272983,0.010384,-0.009503,0.249819,0,0);}
.mf3_c01092{transform:matrix(0.273272,0.011762,-0.010751,0.249769,0,0);-ms-transform:matrix(0.273272,0.011762,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.273272,0.011762,-0.010751,0.249769,0,0);}
.m22_c01092{transform:matrix(0.274626,0.010446,-0.009503,0.249819,0,0);-ms-transform:matrix(0.274626,0.010446,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.274626,0.010446,-0.009503,0.249819,0,0);}
.meb_c01092{transform:matrix(0.274985,0.011836,-0.010751,0.249769,0,0);-ms-transform:matrix(0.274985,0.011836,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.274985,0.011836,-0.010751,0.249769,0,0);}
.m80_c01092{transform:matrix(0.275528,0.012135,-0.011000,0.249758,0,0);-ms-transform:matrix(0.275528,0.012135,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.275528,0.012135,-0.011000,0.249758,0,0);}
.ma4_c01092{transform:matrix(0.275768,0.012146,-0.011000,0.249758,0,0);-ms-transform:matrix(0.275768,0.012146,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.275768,0.012146,-0.011000,0.249758,0,0);}
.m21_c01092{transform:matrix(0.276520,0.010518,-0.009503,0.249819,0,0);-ms-transform:matrix(0.276520,0.010518,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.276520,0.010518,-0.009503,0.249819,0,0);}
.m4e_c01092{transform:matrix(0.277469,0.010554,-0.009503,0.249819,0,0);-ms-transform:matrix(0.277469,0.010554,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.277469,0.010554,-0.009503,0.249819,0,0);}
.ma1_c01092{transform:matrix(0.278140,0.012250,-0.011000,0.249758,0,0);-ms-transform:matrix(0.278140,0.012250,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.278140,0.012250,-0.011000,0.249758,0,0);}
.m1d_c01092{transform:matrix(0.278274,0.010585,-0.009503,0.249819,0,0);-ms-transform:matrix(0.278274,0.010585,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.278274,0.010585,-0.009503,0.249819,0,0);}
.m81_c01092{transform:matrix(0.279534,0.012312,-0.011000,0.249758,0,0);-ms-transform:matrix(0.279534,0.012312,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.279534,0.012312,-0.011000,0.249758,0,0);}
.m88_c01092{transform:matrix(0.279859,0.012326,-0.011000,0.249758,0,0);-ms-transform:matrix(0.279859,0.012326,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.279859,0.012326,-0.011000,0.249758,0,0);}
.m63_c01092{transform:matrix(0.281646,0.010713,-0.009503,0.249819,0,0);-ms-transform:matrix(0.281646,0.010713,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.281646,0.010713,-0.009503,0.249819,0,0);}
.m24_c01092{transform:matrix(0.281676,0.010714,-0.009503,0.249819,0,0);-ms-transform:matrix(0.281676,0.010714,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.281676,0.010714,-0.009503,0.249819,0,0);}
.m42_c01092{transform:matrix(0.282066,0.010729,-0.009503,0.249819,0,0);-ms-transform:matrix(0.282066,0.010729,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.282066,0.010729,-0.009503,0.249819,0,0);}
.mb_c01092{transform:matrix(0.282151,0.010732,-0.009503,0.249819,0,0);-ms-transform:matrix(0.282151,0.010732,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.282151,0.010732,-0.009503,0.249819,0,0);}
.m16_c01092{transform:matrix(0.299359,0.011387,-0.009503,0.249819,0,0);-ms-transform:matrix(0.299359,0.011387,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.299359,0.011387,-0.009503,0.249819,0,0);}
.me9_c01092{transform:matrix(0.306251,0.013182,-0.010751,0.249769,0,0);-ms-transform:matrix(0.306251,0.013182,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.306251,0.013182,-0.010751,0.249769,0,0);}
.m102_c01092{transform:matrix(0.326633,0.014059,-0.010751,0.249769,0,0);-ms-transform:matrix(0.326633,0.014059,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.326633,0.014059,-0.010751,0.249769,0,0);}
.m103_c01092{transform:matrix(0.345345,0.014865,-0.010751,0.249769,0,0);-ms-transform:matrix(0.345345,0.014865,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.345345,0.014865,-0.010751,0.249769,0,0);}
.mc_c01092{transform:matrix(0.354798,0.013496,-0.009503,0.249819,0,0);-ms-transform:matrix(0.354798,0.013496,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.354798,0.013496,-0.009503,0.249819,0,0);}
.m73_c01092{transform:matrix(0.400771,0.017652,-0.011000,0.249758,0,0);-ms-transform:matrix(0.400771,0.017652,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.400771,0.017652,-0.011000,0.249758,0,0);}
.m1_c01092{transform:matrix(0.487710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487710,0.000000,0.000000,0.250000,0,0);}
.v0_c01092{vertical-align:0.000000px;}
.ls0_c01092{letter-spacing:0.000000px;}
.sc__c01092{text-shadow:none;}
.sc0_c01092{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__c01092{-webkit-text-stroke:0px transparent;}
.sc0_c01092{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01092{word-spacing:0.000000px;}
.fc0_c01092{color:transparent;}
.fs0_c01092{font-size:60.000000px;}
.fs1_c01092{font-size:71.980017px;}
.fsa_c01092{font-size:71.994600px;}
.fs5_c01092{font-size:71.997732px;}
.fs2_c01092{font-size:77.978352px;}
.fsb_c01092{font-size:77.994150px;}
.fs6_c01092{font-size:77.997543px;}
.fs8_c01092{font-size:83.990129px;}
.fs9_c01092{font-size:83.993700px;}
.fs4_c01092{font-size:83.997354px;}
.fs3_c01092{font-size:89.975022px;}
.fs7_c01092{font-size:95.996976px;}
.fsd_c01092{font-size:119.971317px;}
.fsc_c01092{font-size:120.030056px;}
.y0_c01092{bottom:0.000000px;}
.y139_c01092{bottom:110.146212px;}
.y138_c01092{bottom:112.349029px;}
.y137_c01092{bottom:114.499606px;}
.y136_c01092{bottom:115.755543px;}
.y135_c01092{bottom:116.587062px;}
.y134_c01092{bottom:117.915714px;}
.y133_c01092{bottom:118.758289px;}
.y132_c01092{bottom:121.749804px;}
.y131_c01092{bottom:123.896695px;}
.y130_c01092{bottom:126.112500px;}
.y12f_c01092{bottom:142.569525px;}
.y12e_c01092{bottom:145.364550px;}
.y12d_c01092{bottom:148.663875px;}
.y12c_c01092{bottom:150.312225px;}
.y12b_c01092{bottom:151.461000px;}
.y12a_c01092{bottom:153.070875px;}
.y129_c01092{bottom:154.775175px;}
.y128_c01092{bottom:158.582850px;}
.y127_c01092{bottom:160.229175px;}
.y126_c01092{bottom:165.808500px;}
.y125_c01092{bottom:181.054655px;}
.y124_c01092{bottom:183.473792px;}
.y123_c01092{bottom:185.846037px;}
.y122_c01092{bottom:187.273745px;}
.y121_c01092{bottom:188.750859px;}
.y120_c01092{bottom:190.517450px;}
.y11f_c01092{bottom:191.563898px;}
.y11e_c01092{bottom:194.723366px;}
.y11d_c01092{bottom:197.572202px;}
.y11c_c01092{bottom:200.103311px;}
.y11b_c01092{bottom:239.362476px;}
.y11a_c01092{bottom:244.149680px;}
.y119_c01092{bottom:246.271290px;}
.y118_c01092{bottom:248.405364px;}
.y117_c01092{bottom:251.678984px;}
.y116_c01092{bottom:255.949454px;}
.y115_c01092{bottom:257.479436px;}
.y114_c01092{bottom:261.240798px;}
.y113_c01092{bottom:263.862164px;}
.y112_c01092{bottom:265.921988px;}
.y111_c01092{bottom:267.535458px;}
.y110_c01092{bottom:268.675004px;}
.y10f_c01092{bottom:271.920664px;}
.y10e_c01092{bottom:275.194713px;}
.y10d_c01092{bottom:279.010435px;}
.y10c_c01092{bottom:283.472647px;}
.y10b_c01092{bottom:286.425745px;}
.y10a_c01092{bottom:287.865715px;}
.y109_c01092{bottom:292.740252px;}
.y108_c01092{bottom:294.168612px;}
.y107_c01092{bottom:298.532446px;}
.y106_c01092{bottom:300.005698px;}
.y105_c01092{bottom:302.428809px;}
.y104_c01092{bottom:305.397451px;}
.y103_c01092{bottom:312.082822px;}
.y102_c01092{bottom:315.021844px;}
.y101_c01092{bottom:315.982797px;}
.y100_c01092{bottom:319.974634px;}
.yff_c01092{bottom:321.365182px;}
.yfe_c01092{bottom:324.290530px;}
.yfd_c01092{bottom:327.262269px;}
.yfc_c01092{bottom:328.663911px;}
.yfb_c01092{bottom:329.694410px;}
.yfa_c01092{bottom:332.078805px;}
.yf9_c01092{bottom:333.529353px;}
.yf8_c01092{bottom:337.890607px;}
.yf7_c01092{bottom:339.350766px;}
.yf6_c01092{bottom:340.781835px;}
.yf5_c01092{bottom:347.091522px;}
.yf4_c01092{bottom:349.989958px;}
.yf3_c01092{bottom:351.394252px;}
.yf2_c01092{bottom:354.294043px;}
.yf1_c01092{bottom:358.136760px;}
.yf0_c01092{bottom:359.495388px;}
.yef_c01092{bottom:363.318045px;}
.yee_c01092{bottom:366.667143px;}
.yed_c01092{bottom:370.428783px;}
.yec_c01092{bottom:371.859006px;}
.yeb_c01092{bottom:375.224809px;}
.yea_c01092{bottom:376.140000px;}
.ye9_c01092{bottom:454.313301px;}
.ye8_c01092{bottom:455.678133px;}
.ye7_c01092{bottom:458.027277px;}
.ye6_c01092{bottom:462.184521px;}
.ye5_c01092{bottom:466.870020px;}
.ye4_c01092{bottom:469.164417px;}
.ye3_c01092{bottom:470.591493px;}
.ye2_c01092{bottom:474.270000px;}
.ye1_c01092{bottom:475.716543px;}
.ye0_c01092{bottom:477.967029px;}
.ydf_c01092{bottom:481.704000px;}
.yde_c01092{bottom:492.182271px;}
.ydd_c01092{bottom:493.501551px;}
.ydc_c01092{bottom:495.252071px;}
.ydb_c01092{bottom:496.514249px;}
.yda_c01092{bottom:498.700119px;}
.yd9_c01092{bottom:500.036862px;}
.yd8_c01092{bottom:503.074480px;}
.yd7_c01092{bottom:504.791545px;}
.yd6_c01092{bottom:506.947657px;}
.yd5_c01092{bottom:508.233370px;}
.yd4_c01092{bottom:510.784562px;}
.yd3_c01092{bottom:512.103380px;}
.yd2_c01092{bottom:513.884119px;}
.yd1_c01092{bottom:514.710900px;}
.yd0_c01092{bottom:518.159523px;}
.ycf_c01092{bottom:523.164962px;}
.yce_c01092{bottom:526.898117px;}
.ycd_c01092{bottom:528.236028px;}
.ycc_c01092{bottom:532.733330px;}
.ycb_c01092{bottom:536.018585px;}
.yca_c01092{bottom:539.351414px;}
.yc9_c01092{bottom:542.081345px;}
.yc8_c01092{bottom:543.783671px;}
.yc7_c01092{bottom:547.579494px;}
.yc6_c01092{bottom:549.922412px;}
.yc5_c01092{bottom:555.409559px;}
.yc4_c01092{bottom:557.583506px;}
.yc3_c01092{bottom:562.463647px;}
.yc2_c01092{bottom:563.975114px;}
.yc1_c01092{bottom:565.438069px;}
.yc0_c01092{bottom:568.377974px;}
.ybf_c01092{bottom:569.393978px;}
.ybe_c01092{bottom:572.253361px;}
.ybd_c01092{bottom:573.163436px;}
.ybc_c01092{bottom:576.628831px;}
.ybb_c01092{bottom:578.151122px;}
.yba_c01092{bottom:579.589855px;}
.yb9_c01092{bottom:582.479137px;}
.yb8_c01092{bottom:583.990604px;}
.yb7_c01092{bottom:585.446234px;}
.yb6_c01092{bottom:588.789662px;}
.yb5_c01092{bottom:590.251562px;}
.yb4_c01092{bottom:596.396447px;}
.yb3_c01092{bottom:597.816192px;}
.yb2_c01092{bottom:600.599346px;}
.yb1_c01092{bottom:602.950455px;}
.yb0_c01092{bottom:606.726279px;}
.yaf_c01092{bottom:608.121783px;}
.yae_c01092{bottom:612.274701px;}
.yad_c01092{bottom:615.079588px;}
.yac_c01092{bottom:616.464203px;}
.yab_c01092{bottom:621.140153px;}
.yaa_c01092{bottom:622.065510px;}
.ya9_c01092{bottom:625.347936px;}
.ya8_c01092{bottom:633.062928px;}
.ya7_c01092{bottom:634.492917px;}
.ya6_c01092{bottom:635.929044px;}
.ya5_c01092{bottom:640.230383px;}
.ya4_c01092{bottom:642.157706px;}
.ya3_c01092{bottom:646.886643px;}
.ya2_c01092{bottom:649.305077px;}
.ya1_c01092{bottom:652.648991px;}
.ya0_c01092{bottom:657.845806px;}
.y9f_c01092{bottom:660.178553px;}
.y9e_c01092{bottom:667.359260px;}
.y9d_c01092{bottom:669.766178px;}
.y9c_c01092{bottom:671.636250px;}
.y9b_c01092{bottom:673.038750px;}
.y9a_c01092{bottom:674.907305px;}
.y99_c01092{bottom:679.113174px;}
.y98_c01092{bottom:680.462723px;}
.y97_c01092{bottom:683.728893px;}
.y96_c01092{bottom:687.497239px;}
.y95_c01092{bottom:692.163686px;}
.y94_c01092{bottom:693.413384px;}
.y93_c01092{bottom:695.816342px;}
.y92_c01092{bottom:705.372477px;}
.y91_c01092{bottom:707.905033px;}
.y90_c01092{bottom:709.375612px;}
.y8f_c01092{bottom:711.934550px;}
.y8e_c01092{bottom:713.389948px;}
.y8d_c01092{bottom:714.898280px;}
.y8c_c01092{bottom:716.356450px;}
.y8b_c01092{bottom:721.385462px;}
.y8a_c01092{bottom:722.874323px;}
.y89_c01092{bottom:726.872640px;}
.y88_c01092{bottom:728.357211px;}
.y87_c01092{bottom:729.838086px;}
.y86_c01092{bottom:732.262422px;}
.y85_c01092{bottom:739.626114px;}
.y84_c01092{bottom:742.072602px;}
.y83_c01092{bottom:743.550012px;}
.y82_c01092{bottom:747.995640px;}
.y81_c01092{bottom:750.364248px;}
.y80_c01092{bottom:754.347480px;}
.y7f_c01092{bottom:755.809908px;}
.y7e_c01092{bottom:758.236860px;}
.y7d_c01092{bottom:759.587946px;}
.y7c_c01092{bottom:761.611176px;}
.y7b_c01092{bottom:763.585500px;}
.y7a_c01092{bottom:783.389237px;}
.y79_c01092{bottom:786.345864px;}
.y78_c01092{bottom:788.383915px;}
.y77_c01092{bottom:792.033448px;}
.y76_c01092{bottom:793.304169px;}
.y75_c01092{bottom:796.601899px;}
.y74_c01092{bottom:799.012632px;}
.y73_c01092{bottom:800.262792px;}
.y72_c01092{bottom:801.457906px;}
.y71_c01092{bottom:813.116726px;}
.y70_c01092{bottom:814.823535px;}
.y6f_c01092{bottom:817.707219px;}
.y6e_c01092{bottom:819.745670px;}
.y6d_c01092{bottom:821.432716px;}
.y6c_c01092{bottom:824.286378px;}
.y6b_c01092{bottom:828.816427px;}
.y6a_c01092{bottom:831.252622px;}
.y69_c01092{bottom:833.252330px;}
.y68_c01092{bottom:834.924158px;}
.y67_c01092{bottom:836.554221px;}
.y66_c01092{bottom:849.464736px;}
.y65_c01092{bottom:850.780182px;}
.y64_c01092{bottom:852.032928px;}
.y63_c01092{bottom:854.560137px;}
.y62_c01092{bottom:857.085408px;}
.y61_c01092{bottom:859.650921px;}
.y60_c01092{bottom:860.895744px;}
.y5f_c01092{bottom:864.656376px;}
.y5e_c01092{bottom:866.790456px;}
.y5d_c01092{bottom:868.031802px;}
.y5c_c01092{bottom:869.689590px;}
.y5b_c01092{bottom:870.966732px;}
.y5a_c01092{bottom:873.531846px;}
.y59_c01092{bottom:883.417167px;}
.y58_c01092{bottom:884.799756px;}
.y57_c01092{bottom:887.835123px;}
.y56_c01092{bottom:889.126707px;}
.y55_c01092{bottom:893.008812px;}
.y54_c01092{bottom:894.304785px;}
.y53_c01092{bottom:896.940466px;}
.y52_c01092{bottom:898.189170px;}
.y51_c01092{bottom:900.332183px;}
.y50_c01092{bottom:901.649473px;}
.y4f_c01092{bottom:904.684042px;}
.y4e_c01092{bottom:908.083624px;}
.y4d_c01092{bottom:918.346552px;}
.y4c_c01092{bottom:919.907908px;}
.y4b_c01092{bottom:923.906923px;}
.y4a_c01092{bottom:925.134360px;}
.y49_c01092{bottom:927.162721px;}
.y48_c01092{bottom:930.743506px;}
.y47_c01092{bottom:933.920922px;}
.y46_c01092{bottom:935.126755px;}
.y45_c01092{bottom:936.302566px;}
.y44_c01092{bottom:937.134198px;}
.y43_c01092{bottom:939.084747px;}
.y42_c01092{bottom:940.299358px;}
.y41_c01092{bottom:942.632374px;}
.y40_c01092{bottom:953.337109px;}
.y3f_c01092{bottom:955.906996px;}
.y3e_c01092{bottom:959.815338px;}
.y3d_c01092{bottom:961.168498px;}
.y3c_c01092{bottom:962.439562px;}
.y3b_c01092{bottom:966.352350px;}
.y3a_c01092{bottom:967.640457px;}
.y39_c01092{bottom:968.925771px;}
.y38_c01092{bottom:973.222039px;}
.y37_c01092{bottom:974.961832px;}
.y36_c01092{bottom:976.320009px;}
.y35_c01092{bottom:977.947878px;}
.y34_c01092{bottom:978.811162px;}
.y33_c01092{bottom:989.618755px;}
.y32_c01092{bottom:990.959262px;}
.y31_c01092{bottom:992.266692px;}
.y30_c01092{bottom:993.582387px;}
.y2f_c01092{bottom:997.460103px;}
.y2e_c01092{bottom:999.610183px;}
.y2d_c01092{bottom:1000.950690px;}
.y2c_c01092{bottom:1005.692374px;}
.y2b_c01092{bottom:1008.251602px;}
.y2a_c01092{bottom:1009.567297px;}
.y29_c01092{bottom:1012.178469px;}
.y28_c01092{bottom:1013.891455px;}
.y27_c01092{bottom:1024.654437px;}
.y26_c01092{bottom:1025.893678px;}
.y25_c01092{bottom:1027.696473px;}
.y24_c01092{bottom:1031.555664px;}
.y23_c01092{bottom:1035.075435px;}
.y22_c01092{bottom:1036.374201px;}
.y21_c01092{bottom:1037.639052px;}
.y20_c01092{bottom:1039.784743px;}
.y1f_c01092{bottom:1042.370077px;}
.y1e_c01092{bottom:1047.140490px;}
.y1d_c01092{bottom:1047.987912px;}
.y1c_c01092{bottom:1049.252763px;}
.y1b_c01092{bottom:1061.696946px;}
.y1a_c01092{bottom:1064.892348px;}
.y19_c01092{bottom:1066.205328px;}
.y18_c01092{bottom:1067.501191px;}
.y17_c01092{bottom:1070.624740px;}
.y16_c01092{bottom:1071.965838px;}
.y15_c01092{bottom:1073.279217px;}
.y14_c01092{bottom:1076.383198px;}
.y13_c01092{bottom:1079.022268px;}
.y12_c01092{bottom:1080.404251px;}
.y11_c01092{bottom:1084.396275px;}
.y10_c01092{bottom:1085.691739px;}
.yf_c01092{bottom:1094.239308px;}
.ye_c01092{bottom:1095.491313px;}
.yd_c01092{bottom:1097.666661px;}
.yc_c01092{bottom:1101.495693px;}
.yb_c01092{bottom:1102.710933px;}
.ya_c01092{bottom:1103.578530px;}
.y9_c01092{bottom:1106.099355px;}
.y8_c01092{bottom:1108.213314px;}
.y7_c01092{bottom:1109.466060px;}
.y6_c01092{bottom:1113.210960px;}
.y5_c01092{bottom:1114.529541px;}
.y4_c01092{bottom:1115.770887px;}
.y3_c01092{bottom:1118.745717px;}
.y2_c01092{bottom:1119.978000px;}
.y1_c01092{bottom:1183.261500px;}
.h2_c01092{height:60.000000px;}
.h3_c01092{height:71.980017px;}
.hc_c01092{height:71.994600px;}
.h7_c01092{height:71.997732px;}
.h4_c01092{height:77.978352px;}
.hd_c01092{height:77.994150px;}
.h8_c01092{height:77.997543px;}
.ha_c01092{height:83.990129px;}
.hb_c01092{height:83.993700px;}
.h6_c01092{height:83.997354px;}
.h5_c01092{height:89.975022px;}
.h9_c01092{height:95.996976px;}
.hf_c01092{height:119.971317px;}
.he_c01092{height:120.030056px;}
.h0_c01092{height:1246.320000px;}
.h1_c01092{height:1246.500000px;}
.w0_c01092{width:917.190000px;}
.w1_c01092{width:917.250000px;}
.x0_c01092{left:0.000000px;}
.xd5_c01092{left:138.730500px;}
.xd2_c01092{left:139.834500px;}
.xc5_c01092{left:141.201752px;}
.xbd_c01092{left:143.926286px;}
.xb4_c01092{left:147.253500px;}
.xa8_c01092{left:151.805106px;}
.xa1_c01092{left:153.406371px;}
.x90_c01092{left:154.464686px;}
.x7e_c01092{left:158.012816px;}
.x73_c01092{left:160.275665px;}
.x4e_c01092{left:163.154030px;}
.x43_c01092{left:166.102539px;}
.x24_c01092{left:168.661109px;}
.x11_c01092{left:171.125132px;}
.x3_c01092{left:172.848000px;}
.xb7_c01092{left:179.526762px;}
.x99_c01092{left:188.428847px;}
.x2d_c01092{left:190.782344px;}
.x64_c01092{left:194.411177px;}
.xd6_c01092{left:195.489184px;}
.xa2_c01092{left:196.833405px;}
.xcf_c01092{left:199.954736px;}
.x12_c01092{left:203.485785px;}
.x4_c01092{left:205.244072px;}
.x5b_c01092{left:206.550945px;}
.xc6_c01092{left:208.759100px;}
.xbe_c01092{left:211.325913px;}
.x25_c01092{left:212.550521px;}
.x74_c01092{left:214.091916px;}
.x7f_c01092{left:215.161631px;}
.x1b_c01092{left:225.189443px;}
.x65_c01092{left:228.145164px;}
.x4f_c01092{left:230.589527px;}
.x2e_c01092{left:232.473513px;}
.xa9_c01092{left:240.126620px;}
.x80_c01092{left:244.899006px;}
.x75_c01092{left:246.964557px;}
.xd7_c01092{left:250.482636px;}
.x5c_c01092{left:251.685977px;}
.x44_c01092{left:253.187558px;}
.x91_c01092{left:254.534303px;}
.xaa_c01092{left:261.318597px;}
.x50_c01092{left:264.164918px;}
.x38_c01092{left:266.183297px;}
.x2f_c01092{left:267.271868px;}
.x6b_c01092{left:270.229500px;}
.x26_c01092{left:279.421515px;}
.x5_c01092{left:283.450787px;}
.x66_c01092{left:293.218479px;}
.x9a_c01092{left:297.389277px;}
.xbf_c01092{left:299.790551px;}
.x13_c01092{left:303.186895px;}
.x5d_c01092{left:305.677485px;}
.x51_c01092{left:307.747292px;}
.xc7_c01092{left:308.924270px;}
.x30_c01092{left:311.826557px;}
.x27_c01092{left:313.142505px;}
.x6c_c01092{left:315.055629px;}
.x6_c01092{left:316.085120px;}
.x39_c01092{left:320.302731px;}
.xd8_c01092{left:327.111430px;}
.xb0_c01092{left:328.278000px;}
.x45_c01092{left:330.913287px;}
.x89_c01092{left:332.863178px;}
.x14_c01092{left:337.703719px;}
.x52_c01092{left:340.381625px;}
.x3a_c01092{left:343.388891px;}
.xb8_c01092{left:344.636385px;}
.x1c_c01092{left:347.405483px;}
.xd9_c01092{left:348.694326px;}
.x7_c01092{left:350.749920px;}
.xa3_c01092{left:353.305985px;}
.x81_c01092{left:355.893678px;}
.x6d_c01092{left:360.992146px;}
.xc8_c01092{left:363.477411px;}
.x46_c01092{left:364.676235px;}
.x92_c01092{left:365.744759px;}
.xb5_c01092{left:367.332201px;}
.x76_c01092{left:368.689859px;}
.x5e_c01092{left:371.459648px;}
.x3b_c01092{left:376.036221px;}
.x28_c01092{left:378.687384px;}
.x67_c01092{left:382.241733px;}
.x6e_c01092{left:391.667940px;}
.xd3_c01092{left:394.332247px;}
.x53_c01092{left:396.485465px;}
.x93_c01092{left:398.681696px;}
.x77_c01092{left:401.743818px;}
.x15_c01092{left:403.611724px;}
.xd0_c01092{left:404.897088px;}
.xab_c01092{left:406.047068px;}
.x3c_c01092{left:409.512279px;}
.x8a_c01092{left:410.557841px;}
.x1d_c01092{left:413.636675px;}
.x68_c01092{left:416.555697px;}
.x47_c01092{left:419.555190px;}
.x31_c01092{left:421.893215px;}
.xd4_c01092{left:426.497550px;}
.x9b_c01092{left:429.972062px;}
.xc0_c01092{left:431.288739px;}
.xda_c01092{left:436.199233px;}
.xac_c01092{left:438.988361px;}
.x1_c01092{left:440.640000px;}
.xc9_c01092{left:441.760199px;}
.x82_c01092{left:445.508835px;}
.x6f_c01092{left:446.770782px;}
.x8_c01092{left:449.201370px;}
.x48_c01092{left:451.554461px;}
.x32_c01092{left:454.815504px;}
.x2_c01092{left:463.320000px;}
.x94_c01092{left:465.399291px;}
.x8b_c01092{left:466.728558px;}
.x1e_c01092{left:468.586059px;}
.xd1_c01092{left:472.383534px;}
.xca_c01092{left:473.608475px;}
.x70_c01092{left:479.974545px;}
.x9_c01092{left:482.135403px;}
.x33_c01092{left:487.811220px;}
.xdb_c01092{left:491.287090px;}
.x5f_c01092{left:493.747859px;}
.x54_c01092{left:495.350501px;}
.x3d_c01092{left:497.660718px;}
.x1f_c01092{left:500.970387px;}
.xb1_c01092{left:504.291810px;}
.x16_c01092{left:513.942396px;}
.x69_c01092{left:515.103816px;}
.xa4_c01092{left:517.724496px;}
.x49_c01092{left:519.069810px;}
.xb9_c01092{left:521.462264px;}
.x83_c01092{left:523.176894px;}
.x55_c01092{left:528.076242px;}
.x20_c01092{left:534.246323px;}
.xa_c01092{left:537.710272px;}
.xc1_c01092{left:541.955684px;}
.x9c_c01092{left:543.215205px;}
.x78_c01092{left:545.759816px;}
.x17_c01092{left:547.423814px;}
.x4a_c01092{left:552.272319px;}
.x84_c01092{left:555.283596px;}
.xcb_c01092{left:562.498385px;}
.x95_c01092{left:564.189123px;}
.xb6_c01092{left:565.514820px;}
.x60_c01092{left:570.781158px;}
.xc2_c01092{left:574.642544px;}
.x8c_c01092{left:576.585414px;}
.x79_c01092{left:579.255832px;}
.xa5_c01092{left:584.327253px;}
.x34_c01092{left:588.033075px;}
.x29_c01092{left:589.546769px;}
.x56_c01092{left:595.522229px;}
.x3e_c01092{left:597.005306px;}
.xb_c01092{left:603.981435px;}
.x7a_c01092{left:611.550053px;}
.x61_c01092{left:616.316289px;}
.xba_c01092{left:619.464467px;}
.x35_c01092{left:620.580740px;}
.x21_c01092{left:624.412143px;}
.x18_c01092{left:625.437288px;}
.xc_c01092{left:626.790104px;}
.x9d_c01092{left:628.799036px;}
.xcc_c01092{left:630.635523px;}
.xc3_c01092{left:641.681033px;}
.x6a_c01092{left:649.961958px;}
.x4b_c01092{left:651.726999px;}
.x3f_c01092{left:653.288745px;}
.x36_c01092{left:655.247226px;}
.xd_c01092{left:658.738124px;}
.x57_c01092{left:661.910274px;}
.x7b_c01092{left:668.354181px;}
.x62_c01092{left:671.365796px;}
.xcd_c01092{left:675.053505px;}
.x4c_c01092{left:684.814124px;}
.x40_c01092{left:687.332735px;}
.x2a_c01092{left:688.886064px;}
.x19_c01092{left:690.590106px;}
.x85_c01092{left:699.745674px;}
.x7c_c01092{left:700.993056px;}
.xad_c01092{left:706.213167px;}
.xbb_c01092{left:710.112354px;}
.xb2_c01092{left:714.622768px;}
.x9e_c01092{left:718.616129px;}
.x8d_c01092{left:721.310952px;}
.x22_c01092{left:723.264426px;}
.x71_c01092{left:725.126148px;}
.x58_c01092{left:728.349269px;}
.xbc_c01092{left:731.914562px;}
.x86_c01092{left:733.088705px;}
.xae_c01092{left:738.551931px;}
.xa6_c01092{left:739.857540px;}
.x96_c01092{left:743.095761px;}
.x63_c01092{left:749.227823px;}
.x9f_c01092{left:751.831880px;}
.x8e_c01092{left:754.667516px;}
.x2b_c01092{left:756.110762px;}
.x7d_c01092{left:757.232316px;}
.xe_c01092{left:759.401359px;}
.x59_c01092{left:761.283302px;}
.x4d_c01092{left:762.560832px;}
.xa7_c01092{left:766.586715px;}
.x1a_c01092{left:770.413655px;}
.x87_c01092{left:777.559087px;}
.xaf_c01092{left:783.375906px;}
.xa0_c01092{left:786.149028px;}
.x8f_c01092{left:787.884719px;}
.x2c_c01092{left:790.444581px;}
.x5a_c01092{left:795.865685px;}
.x41_c01092{left:798.303597px;}
.x23_c01092{left:801.186459px;}
.xb3_c01092{left:802.962340px;}
.x97_c01092{left:809.285819px;}
.x72_c01092{left:814.216469px;}
.xf_c01092{left:816.590114px;}
.xce_c01092{left:818.856132px;}
.x37_c01092{left:821.177297px;}
.xc4_c01092{left:829.638816px;}
.x88_c01092{left:834.797812px;}
.x42_c01092{left:841.639028px;}
.x98_c01092{left:843.054489px;}
.x10_c01092{left:849.504666px;}
@media print{
.v0_c01092{vertical-align:0.000000pt;}
.ls0_c01092{letter-spacing:0.000000pt;}
.ws0_c01092{word-spacing:0.000000pt;}
.fs0_c01092{font-size:53.333333pt;}
.fs1_c01092{font-size:63.982238pt;}
.fsa_c01092{font-size:63.995200pt;}
.fs5_c01092{font-size:63.997984pt;}
.fs2_c01092{font-size:69.314091pt;}
.fsb_c01092{font-size:69.328133pt;}
.fs6_c01092{font-size:69.331149pt;}
.fs8_c01092{font-size:74.657893pt;}
.fs9_c01092{font-size:74.661066pt;}
.fs4_c01092{font-size:74.664315pt;}
.fs3_c01092{font-size:79.977797pt;}
.fs7_c01092{font-size:85.330645pt;}
.fsd_c01092{font-size:106.641170pt;}
.fsc_c01092{font-size:106.693383pt;}
.y0_c01092{bottom:0.000000pt;}
.y139_c01092{bottom:97.907744pt;}
.y138_c01092{bottom:99.865804pt;}
.y137_c01092{bottom:101.777428pt;}
.y136_c01092{bottom:102.893816pt;}
.y135_c01092{bottom:103.632944pt;}
.y134_c01092{bottom:104.813968pt;}
.y133_c01092{bottom:105.562924pt;}
.y132_c01092{bottom:108.222048pt;}
.y131_c01092{bottom:110.130396pt;}
.y130_c01092{bottom:112.100000pt;}
.y12f_c01092{bottom:126.728467pt;}
.y12e_c01092{bottom:129.212933pt;}
.y12d_c01092{bottom:132.145667pt;}
.y12c_c01092{bottom:133.610867pt;}
.y12b_c01092{bottom:134.632000pt;}
.y12a_c01092{bottom:136.063000pt;}
.y129_c01092{bottom:137.577933pt;}
.y128_c01092{bottom:140.962533pt;}
.y127_c01092{bottom:142.425933pt;}
.y126_c01092{bottom:147.385333pt;}
.y125_c01092{bottom:160.937471pt;}
.y124_c01092{bottom:163.087815pt;}
.y123_c01092{bottom:165.196477pt;}
.y122_c01092{bottom:166.465551pt;}
.y121_c01092{bottom:167.778541pt;}
.y120_c01092{bottom:169.348844pt;}
.y11f_c01092{bottom:170.279020pt;}
.y11e_c01092{bottom:173.087436pt;}
.y11d_c01092{bottom:175.619735pt;}
.y11c_c01092{bottom:177.869609pt;}
.y11b_c01092{bottom:212.766645pt;}
.y11a_c01092{bottom:217.021937pt;}
.y119_c01092{bottom:218.907813pt;}
.y118_c01092{bottom:220.804768pt;}
.y117_c01092{bottom:223.714652pt;}
.y116_c01092{bottom:227.510625pt;}
.y115_c01092{bottom:228.870609pt;}
.y114_c01092{bottom:232.214043pt;}
.y113_c01092{bottom:234.544145pt;}
.y112_c01092{bottom:236.375100pt;}
.y111_c01092{bottom:237.809296pt;}
.y110_c01092{bottom:238.822225pt;}
.y10f_c01092{bottom:241.707257pt;}
.y10e_c01092{bottom:244.617523pt;}
.y10d_c01092{bottom:248.009276pt;}
.y10c_c01092{bottom:251.975687pt;}
.y10b_c01092{bottom:254.600663pt;}
.y10a_c01092{bottom:255.880636pt;}
.y109_c01092{bottom:260.213557pt;}
.y108_c01092{bottom:261.483211pt;}
.y107_c01092{bottom:265.362175pt;}
.y106_c01092{bottom:266.671732pt;}
.y105_c01092{bottom:268.825608pt;}
.y104_c01092{bottom:271.464401pt;}
.y103_c01092{bottom:277.406953pt;}
.y102_c01092{bottom:280.019417pt;}
.y101_c01092{bottom:280.873597pt;}
.y100_c01092{bottom:284.421897pt;}
.yff_c01092{bottom:285.657940pt;}
.yfe_c01092{bottom:288.258249pt;}
.yfd_c01092{bottom:290.899795pt;}
.yfc_c01092{bottom:292.145699pt;}
.yfb_c01092{bottom:293.061697pt;}
.yfa_c01092{bottom:295.181160pt;}
.yf9_c01092{bottom:296.470536pt;}
.yf8_c01092{bottom:300.347207pt;}
.yf7_c01092{bottom:301.645125pt;}
.yf6_c01092{bottom:302.917187pt;}
.yf5_c01092{bottom:308.525797pt;}
.yf4_c01092{bottom:311.102185pt;}
.yf3_c01092{bottom:312.350447pt;}
.yf2_c01092{bottom:314.928039pt;}
.yf1_c01092{bottom:318.343787pt;}
.yf0_c01092{bottom:319.551456pt;}
.yef_c01092{bottom:322.949373pt;}
.yee_c01092{bottom:325.926349pt;}
.yed_c01092{bottom:329.270029pt;}
.yec_c01092{bottom:330.541339pt;}
.yeb_c01092{bottom:333.533164pt;}
.yea_c01092{bottom:334.346667pt;}
.ye9_c01092{bottom:403.834045pt;}
.ye8_c01092{bottom:405.047229pt;}
.ye7_c01092{bottom:407.135357pt;}
.ye6_c01092{bottom:410.830685pt;}
.ye5_c01092{bottom:414.995573pt;}
.ye4_c01092{bottom:417.035037pt;}
.ye3_c01092{bottom:418.303549pt;}
.ye2_c01092{bottom:421.573333pt;}
.ye1_c01092{bottom:422.859149pt;}
.ye0_c01092{bottom:424.859581pt;}
.ydf_c01092{bottom:428.181333pt;}
.yde_c01092{bottom:437.495352pt;}
.ydd_c01092{bottom:438.668045pt;}
.ydc_c01092{bottom:440.224063pt;}
.ydb_c01092{bottom:441.345999pt;}
.yda_c01092{bottom:443.288995pt;}
.yd9_c01092{bottom:444.477211pt;}
.yd8_c01092{bottom:447.177316pt;}
.yd7_c01092{bottom:448.703596pt;}
.yd6_c01092{bottom:450.620140pt;}
.yd5_c01092{bottom:451.762996pt;}
.yd4_c01092{bottom:454.030721pt;}
.yd3_c01092{bottom:455.203004pt;}
.yd2_c01092{bottom:456.785884pt;}
.yd1_c01092{bottom:457.520800pt;}
.yd0_c01092{bottom:460.586243pt;}
.ycf_c01092{bottom:465.035521pt;}
.yce_c01092{bottom:468.353881pt;}
.ycd_c01092{bottom:469.543136pt;}
.ycc_c01092{bottom:473.540737pt;}
.ycb_c01092{bottom:476.460964pt;}
.yca_c01092{bottom:479.423479pt;}
.yc9_c01092{bottom:481.850084pt;}
.yc8_c01092{bottom:483.363263pt;}
.yc7_c01092{bottom:486.737328pt;}
.yc6_c01092{bottom:488.819921pt;}
.yc5_c01092{bottom:493.697385pt;}
.yc4_c01092{bottom:495.629783pt;}
.yc3_c01092{bottom:499.967687pt;}
.yc2_c01092{bottom:501.311212pt;}
.yc1_c01092{bottom:502.611617pt;}
.yc0_c01092{bottom:505.224865pt;}
.ybf_c01092{bottom:506.127980pt;}
.ybe_c01092{bottom:508.669655pt;}
.ybd_c01092{bottom:509.478609pt;}
.ybc_c01092{bottom:512.558961pt;}
.ybb_c01092{bottom:513.912108pt;}
.yba_c01092{bottom:515.190983pt;}
.yb9_c01092{bottom:517.759233pt;}
.yb8_c01092{bottom:519.102759pt;}
.yb7_c01092{bottom:520.396652pt;}
.yb6_c01092{bottom:523.368588pt;}
.yb5_c01092{bottom:524.668055pt;}
.yb4_c01092{bottom:530.130175pt;}
.yb3_c01092{bottom:531.392171pt;}
.yb2_c01092{bottom:533.866085pt;}
.yb1_c01092{bottom:535.955960pt;}
.yb0_c01092{bottom:539.312248pt;}
.yaf_c01092{bottom:540.552696pt;}
.yae_c01092{bottom:544.244179pt;}
.yad_c01092{bottom:546.737412pt;}
.yac_c01092{bottom:547.968180pt;}
.yab_c01092{bottom:552.124580pt;}
.yaa_c01092{bottom:552.947120pt;}
.ya9_c01092{bottom:555.864832pt;}
.ya8_c01092{bottom:562.722603pt;}
.ya7_c01092{bottom:563.993704pt;}
.ya6_c01092{bottom:565.270261pt;}
.ya5_c01092{bottom:569.093673pt;}
.ya4_c01092{bottom:570.806849pt;}
.ya3_c01092{bottom:575.010349pt;}
.ya2_c01092{bottom:577.160068pt;}
.ya1_c01092{bottom:580.132436pt;}
.ya0_c01092{bottom:584.751828pt;}
.y9f_c01092{bottom:586.825380pt;}
.y9e_c01092{bottom:593.208231pt;}
.y9d_c01092{bottom:595.347713pt;}
.y9c_c01092{bottom:597.010000pt;}
.y9b_c01092{bottom:598.256667pt;}
.y9a_c01092{bottom:599.917604pt;}
.y99_c01092{bottom:603.656155pt;}
.y98_c01092{bottom:604.855753pt;}
.y97_c01092{bottom:607.759016pt;}
.y96_c01092{bottom:611.108657pt;}
.y95_c01092{bottom:615.256609pt;}
.y94_c01092{bottom:616.367452pt;}
.y93_c01092{bottom:618.503415pt;}
.y92_c01092{bottom:626.997757pt;}
.y91_c01092{bottom:629.248919pt;}
.y90_c01092{bottom:630.556100pt;}
.y8f_c01092{bottom:632.830711pt;}
.y8e_c01092{bottom:634.124399pt;}
.y8d_c01092{bottom:635.465137pt;}
.y8c_c01092{bottom:636.761289pt;}
.y8b_c01092{bottom:641.231521pt;}
.y8a_c01092{bottom:642.554953pt;}
.y89_c01092{bottom:646.109013pt;}
.y88_c01092{bottom:647.428632pt;}
.y87_c01092{bottom:648.744965pt;}
.y86_c01092{bottom:650.899931pt;}
.y85_c01092{bottom:657.445435pt;}
.y84_c01092{bottom:659.620091pt;}
.y83_c01092{bottom:660.933344pt;}
.y82_c01092{bottom:664.885013pt;}
.y81_c01092{bottom:666.990443pt;}
.y80_c01092{bottom:670.531093pt;}
.y7f_c01092{bottom:671.831029pt;}
.y7e_c01092{bottom:673.988320pt;}
.y7d_c01092{bottom:675.189285pt;}
.y7c_c01092{bottom:676.987712pt;}
.y7b_c01092{bottom:678.742667pt;}
.y7a_c01092{bottom:696.345988pt;}
.y79_c01092{bottom:698.974101pt;}
.y78_c01092{bottom:700.785703pt;}
.y77_c01092{bottom:704.029732pt;}
.y76_c01092{bottom:705.159261pt;}
.y75_c01092{bottom:708.090577pt;}
.y74_c01092{bottom:710.233451pt;}
.y73_c01092{bottom:711.344704pt;}
.y72_c01092{bottom:712.407028pt;}
.y71_c01092{bottom:722.770423pt;}
.y70_c01092{bottom:724.287587pt;}
.y6f_c01092{bottom:726.850861pt;}
.y6e_c01092{bottom:728.662817pt;}
.y6d_c01092{bottom:730.162415pt;}
.y6c_c01092{bottom:732.699003pt;}
.y6b_c01092{bottom:736.725713pt;}
.y6a_c01092{bottom:738.891220pt;}
.y69_c01092{bottom:740.668737pt;}
.y68_c01092{bottom:742.154807pt;}
.y67_c01092{bottom:743.603752pt;}
.y66_c01092{bottom:755.079765pt;}
.y65_c01092{bottom:756.249051pt;}
.y64_c01092{bottom:757.362603pt;}
.y63_c01092{bottom:759.609011pt;}
.y62_c01092{bottom:761.853696pt;}
.y61_c01092{bottom:764.134152pt;}
.y60_c01092{bottom:765.240661pt;}
.y5f_c01092{bottom:768.583445pt;}
.y5e_c01092{bottom:770.480405pt;}
.y5d_c01092{bottom:771.583824pt;}
.y5c_c01092{bottom:773.057413pt;}
.y5b_c01092{bottom:774.192651pt;}
.y5a_c01092{bottom:776.472752pt;}
.y59_c01092{bottom:785.259704pt;}
.y58_c01092{bottom:786.488672pt;}
.y57_c01092{bottom:789.186776pt;}
.y56_c01092{bottom:790.334851pt;}
.y55_c01092{bottom:793.785611pt;}
.y54_c01092{bottom:794.937587pt;}
.y53_c01092{bottom:797.280415pt;}
.y52_c01092{bottom:798.390373pt;}
.y51_c01092{bottom:800.295273pt;}
.y50_c01092{bottom:801.466199pt;}
.y4f_c01092{bottom:804.163593pt;}
.y4e_c01092{bottom:807.185444pt;}
.y4d_c01092{bottom:816.308047pt;}
.y4c_c01092{bottom:817.695919pt;}
.y4b_c01092{bottom:821.250599pt;}
.y4a_c01092{bottom:822.341653pt;}
.y49_c01092{bottom:824.144641pt;}
.y48_c01092{bottom:827.327561pt;}
.y47_c01092{bottom:830.151931pt;}
.y46_c01092{bottom:831.223783pt;}
.y45_c01092{bottom:832.268948pt;}
.y44_c01092{bottom:833.008176pt;}
.y43_c01092{bottom:834.741997pt;}
.y42_c01092{bottom:835.821652pt;}
.y41_c01092{bottom:837.895444pt;}
.y40_c01092{bottom:847.410764pt;}
.y3f_c01092{bottom:849.695108pt;}
.y3e_c01092{bottom:853.169189pt;}
.y3d_c01092{bottom:854.371999pt;}
.y3c_c01092{bottom:855.501833pt;}
.y3b_c01092{bottom:858.979867pt;}
.y3a_c01092{bottom:860.124851pt;}
.y39_c01092{bottom:861.267352pt;}
.y38_c01092{bottom:865.086257pt;}
.y37_c01092{bottom:866.632740pt;}
.y36_c01092{bottom:867.840008pt;}
.y35_c01092{bottom:869.287003pt;}
.y34_c01092{bottom:870.054367pt;}
.y33_c01092{bottom:879.661116pt;}
.y32_c01092{bottom:880.852677pt;}
.y31_c01092{bottom:882.014837pt;}
.y30_c01092{bottom:883.184344pt;}
.y2f_c01092{bottom:886.631203pt;}
.y2e_c01092{bottom:888.542385pt;}
.y2d_c01092{bottom:889.733947pt;}
.y2c_c01092{bottom:893.948777pt;}
.y2b_c01092{bottom:896.223647pt;}
.y2a_c01092{bottom:897.393153pt;}
.y29_c01092{bottom:899.714195pt;}
.y28_c01092{bottom:901.236849pt;}
.y27_c01092{bottom:910.803944pt;}
.y26_c01092{bottom:911.905492pt;}
.y25_c01092{bottom:913.507976pt;}
.y24_c01092{bottom:916.938368pt;}
.y23_c01092{bottom:920.067053pt;}
.y22_c01092{bottom:921.221512pt;}
.y21_c01092{bottom:922.345824pt;}
.y20_c01092{bottom:924.253105pt;}
.y1f_c01092{bottom:926.551180pt;}
.y1e_c01092{bottom:930.791547pt;}
.y1d_c01092{bottom:931.544811pt;}
.y1c_c01092{bottom:932.669123pt;}
.y1b_c01092{bottom:943.730619pt;}
.y1a_c01092{bottom:946.570976pt;}
.y19_c01092{bottom:947.738069pt;}
.y18_c01092{bottom:948.889948pt;}
.y17_c01092{bottom:951.666436pt;}
.y16_c01092{bottom:952.858523pt;}
.y15_c01092{bottom:954.025971pt;}
.y14_c01092{bottom:956.785065pt;}
.y13_c01092{bottom:959.130905pt;}
.y12_c01092{bottom:960.359335pt;}
.y11_c01092{bottom:963.907800pt;}
.y10_c01092{bottom:965.059324pt;}
.yf_c01092{bottom:972.657163pt;}
.ye_c01092{bottom:973.770056pt;}
.yd_c01092{bottom:975.703699pt;}
.yc_c01092{bottom:979.107283pt;}
.yb_c01092{bottom:980.187496pt;}
.ya_c01092{bottom:980.958693pt;}
.y9_c01092{bottom:983.199427pt;}
.y8_c01092{bottom:985.078501pt;}
.y7_c01092{bottom:986.192053pt;}
.y6_c01092{bottom:989.520853pt;}
.y5_c01092{bottom:990.692925pt;}
.y4_c01092{bottom:991.796344pt;}
.y3_c01092{bottom:994.440637pt;}
.y2_c01092{bottom:995.536000pt;}
.y1_c01092{bottom:1051.788000pt;}
.h2_c01092{height:53.333333pt;}
.h3_c01092{height:63.982238pt;}
.hc_c01092{height:63.995200pt;}
.h7_c01092{height:63.997984pt;}
.h4_c01092{height:69.314091pt;}
.hd_c01092{height:69.328133pt;}
.h8_c01092{height:69.331149pt;}
.ha_c01092{height:74.657893pt;}
.hb_c01092{height:74.661066pt;}
.h6_c01092{height:74.664315pt;}
.h5_c01092{height:79.977797pt;}
.h9_c01092{height:85.330645pt;}
.hf_c01092{height:106.641170pt;}
.he_c01092{height:106.693383pt;}
.h0_c01092{height:1107.840000pt;}
.h1_c01092{height:1108.000000pt;}
.w0_c01092{width:815.280000pt;}
.w1_c01092{width:815.333333pt;}
.x0_c01092{left:0.000000pt;}
.xd5_c01092{left:123.316000pt;}
.xd2_c01092{left:124.297333pt;}
.xc5_c01092{left:125.512668pt;}
.xbd_c01092{left:127.934476pt;}
.xb4_c01092{left:130.892000pt;}
.xa8_c01092{left:134.937872pt;}
.xa1_c01092{left:136.361219pt;}
.x90_c01092{left:137.301943pt;}
.x7e_c01092{left:140.455836pt;}
.x73_c01092{left:142.467257pt;}
.x4e_c01092{left:145.025804pt;}
.x43_c01092{left:147.646701pt;}
.x24_c01092{left:149.920985pt;}
.x11_c01092{left:152.111228pt;}
.x3_c01092{left:153.642667pt;}
.xb7_c01092{left:159.579344pt;}
.x99_c01092{left:167.492308pt;}
.x2d_c01092{left:169.584305pt;}
.x64_c01092{left:172.809935pt;}
.xd6_c01092{left:173.768164pt;}
.xa2_c01092{left:174.963027pt;}
.xcf_c01092{left:177.737543pt;}
.x12_c01092{left:180.876253pt;}
.x4_c01092{left:182.439175pt;}
.x5b_c01092{left:183.600840pt;}
.xc6_c01092{left:185.563644pt;}
.xbe_c01092{left:187.845256pt;}
.x25_c01092{left:188.933796pt;}
.x74_c01092{left:190.303925pt;}
.x7f_c01092{left:191.254783pt;}
.x1b_c01092{left:200.168393pt;}
.x65_c01092{left:202.795701pt;}
.x4f_c01092{left:204.968468pt;}
.x2e_c01092{left:206.643123pt;}
.xa9_c01092{left:213.445884pt;}
.x80_c01092{left:217.688005pt;}
.x75_c01092{left:219.524051pt;}
.xd7_c01092{left:222.651232pt;}
.x5c_c01092{left:223.720868pt;}
.x44_c01092{left:225.055607pt;}
.x91_c01092{left:226.252713pt;}
.xaa_c01092{left:232.283197pt;}
.x50_c01092{left:234.813260pt;}
.x38_c01092{left:236.607375pt;}
.x2f_c01092{left:237.574993pt;}
.x6b_c01092{left:240.204000pt;}
.x26_c01092{left:248.374680pt;}
.x5_c01092{left:251.956255pt;}
.x66_c01092{left:260.638648pt;}
.x9a_c01092{left:264.346024pt;}
.xbf_c01092{left:266.480489pt;}
.x13_c01092{left:269.499463pt;}
.x5d_c01092{left:271.713320pt;}
.x51_c01092{left:273.553148pt;}
.xc7_c01092{left:274.599351pt;}
.x30_c01092{left:277.179161pt;}
.x27_c01092{left:278.348893pt;}
.x6c_c01092{left:280.049448pt;}
.x6_c01092{left:280.964551pt;}
.x39_c01092{left:284.713539pt;}
.xd8_c01092{left:290.765716pt;}
.xb0_c01092{left:291.802667pt;}
.x45_c01092{left:294.145144pt;}
.x89_c01092{left:295.878380pt;}
.x14_c01092{left:300.181084pt;}
.x52_c01092{left:302.561444pt;}
.x3a_c01092{left:305.234569pt;}
.xb8_c01092{left:306.343453pt;}
.x1c_c01092{left:308.804873pt;}
.xd9_c01092{left:309.950512pt;}
.x7_c01092{left:311.777707pt;}
.xa3_c01092{left:314.049764pt;}
.x81_c01092{left:316.349936pt;}
.x6d_c01092{left:320.881908pt;}
.xc8_c01092{left:323.091032pt;}
.x46_c01092{left:324.156653pt;}
.x92_c01092{left:325.106452pt;}
.xb5_c01092{left:326.517512pt;}
.x76_c01092{left:327.724319pt;}
.x5e_c01092{left:330.186353pt;}
.x3b_c01092{left:334.254419pt;}
.x28_c01092{left:336.611008pt;}
.x67_c01092{left:339.770429pt;}
.x6e_c01092{left:348.149280pt;}
.xd3_c01092{left:350.517553pt;}
.x53_c01092{left:352.431524pt;}
.x93_c01092{left:354.383729pt;}
.x77_c01092{left:357.105616pt;}
.x15_c01092{left:358.765977pt;}
.xd0_c01092{left:359.908523pt;}
.xab_c01092{left:360.930727pt;}
.x3c_c01092{left:364.010915pt;}
.x8a_c01092{left:364.940303pt;}
.x1d_c01092{left:367.677044pt;}
.x68_c01092{left:370.271731pt;}
.x47_c01092{left:372.937947pt;}
.x31_c01092{left:375.016191pt;}
.xd4_c01092{left:379.108933pt;}
.x9b_c01092{left:382.197388pt;}
.xc0_c01092{left:383.367768pt;}
.xda_c01092{left:387.732652pt;}
.xac_c01092{left:390.211876pt;}
.x1_c01092{left:391.680000pt;}
.xc9_c01092{left:392.675732pt;}
.x82_c01092{left:396.007853pt;}
.x6f_c01092{left:397.129584pt;}
.x8_c01092{left:399.290107pt;}
.x48_c01092{left:401.381743pt;}
.x32_c01092{left:404.280448pt;}
.x2_c01092{left:411.840000pt;}
.x94_c01092{left:413.688259pt;}
.x8b_c01092{left:414.869829pt;}
.x1e_c01092{left:416.520941pt;}
.xd1_c01092{left:419.896475pt;}
.xca_c01092{left:420.985311pt;}
.x70_c01092{left:426.644040pt;}
.x9_c01092{left:428.564803pt;}
.x33_c01092{left:433.609973pt;}
.xdb_c01092{left:436.699636pt;}
.x5f_c01092{left:438.886985pt;}
.x54_c01092{left:440.311556pt;}
.x3d_c01092{left:442.365083pt;}
.x1f_c01092{left:445.307011pt;}
.xb1_c01092{left:448.259387pt;}
.x16_c01092{left:456.837685pt;}
.x69_c01092{left:457.870059pt;}
.xa4_c01092{left:460.199552pt;}
.x49_c01092{left:461.395387pt;}
.xb9_c01092{left:463.522012pt;}
.x83_c01092{left:465.046128pt;}
.x55_c01092{left:469.401104pt;}
.x20_c01092{left:474.885620pt;}
.xa_c01092{left:477.964687pt;}
.xc1_c01092{left:481.738385pt;}
.x9c_c01092{left:482.857960pt;}
.x78_c01092{left:485.119836pt;}
.x17_c01092{left:486.598945pt;}
.x4a_c01092{left:490.908728pt;}
.x84_c01092{left:493.585419pt;}
.xcb_c01092{left:499.998564pt;}
.x95_c01092{left:501.501443pt;}
.xb6_c01092{left:502.679840pt;}
.x60_c01092{left:507.361029pt;}
.xc2_c01092{left:510.793372pt;}
.x8c_c01092{left:512.520368pt;}
.x79_c01092{left:514.894073pt;}
.xa5_c01092{left:519.402003pt;}
.x34_c01092{left:522.696067pt;}
.x29_c01092{left:524.041572pt;}
.x56_c01092{left:529.353092pt;}
.x3e_c01092{left:530.671383pt;}
.xb_c01092{left:536.872387pt;}
.x7a_c01092{left:543.600047pt;}
.x61_c01092{left:547.836701pt;}
.xba_c01092{left:550.635081pt;}
.x35_c01092{left:551.627324pt;}
.x21_c01092{left:555.033016pt;}
.x18_c01092{left:555.944256pt;}
.xc_c01092{left:557.146759pt;}
.x9d_c01092{left:558.932476pt;}
.xcc_c01092{left:560.564909pt;}
.xc3_c01092{left:570.383140pt;}
.x6a_c01092{left:577.743963pt;}
.x4b_c01092{left:579.312888pt;}
.x3f_c01092{left:580.701107pt;}
.x36_c01092{left:582.441979pt;}
.xd_c01092{left:585.544999pt;}
.x57_c01092{left:588.364688pt;}
.x7b_c01092{left:594.092605pt;}
.x62_c01092{left:596.769596pt;}
.xcd_c01092{left:600.047560pt;}
.x4c_c01092{left:608.723665pt;}
.x40_c01092{left:610.962431pt;}
.x2a_c01092{left:612.343168pt;}
.x19_c01092{left:613.857872pt;}
.x85_c01092{left:621.996155pt;}
.x7c_c01092{left:623.104939pt;}
.xad_c01092{left:627.745037pt;}
.xbb_c01092{left:631.210981pt;}
.xb2_c01092{left:635.220239pt;}
.x9e_c01092{left:638.769892pt;}
.x8d_c01092{left:641.165291pt;}
.x22_c01092{left:642.901712pt;}
.x71_c01092{left:644.556576pt;}
.x58_c01092{left:647.421572pt;}
.xbc_c01092{left:650.590721pt;}
.x86_c01092{left:651.634404pt;}
.xae_c01092{left:656.490605pt;}
.xa6_c01092{left:657.651147pt;}
.x96_c01092{left:660.529565pt;}
.x63_c01092{left:665.980287pt;}
.x9f_c01092{left:668.295004pt;}
.x8e_c01092{left:670.815569pt;}
.x2b_c01092{left:672.098455pt;}
.x7d_c01092{left:673.095392pt;}
.xe_c01092{left:675.023431pt;}
.x59_c01092{left:676.696268pt;}
.x4d_c01092{left:677.831851pt;}
.xa7_c01092{left:681.410413pt;}
.x1a_c01092{left:684.812137pt;}
.x87_c01092{left:691.163633pt;}
.xaf_c01092{left:696.334139pt;}
.xa0_c01092{left:698.799136pt;}
.x8f_c01092{left:700.341972pt;}
.x2c_c01092{left:702.617405pt;}
.x5a_c01092{left:707.436164pt;}
.x41_c01092{left:709.603197pt;}
.x23_c01092{left:712.165741pt;}
.xb3_c01092{left:713.744303pt;}
.x97_c01092{left:719.365172pt;}
.x72_c01092{left:723.747972pt;}
.xf_c01092{left:725.857879pt;}
.xce_c01092{left:727.872117pt;}
.x37_c01092{left:729.935375pt;}
.xc4_c01092{left:737.456725pt;}
.x88_c01092{left:742.042500pt;}
.x42_c01092{left:748.123580pt;}
.x98_c01092{left:749.381768pt;}
.x10_c01092{left:755.115259pt;}
}





/* 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_c01093 {
    display:none;
  }
  .loading-indicator_c01093.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01093 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_c01093 { 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_c01093" -> "#page-container .classname_c01093")
 */
.pf_c01093 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01093 { /* 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_c01093.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01093 { /* 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_c01093 { /* 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_c01093 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01093 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01093 {overflow:visible;}
  }
}
.c_c01093 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01093 { /* 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_c01093:after { /* webkit #35443 */
  content: '';
}
.t_c01093:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01093 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 */
}
.__c01093 { /* 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_c01093 { /* info for Javascript */
  display:none;
}
.l_c01093 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01093 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01093 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01093: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_c01093 {
    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_c01093.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01093.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_c01093 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01093{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01093;src:url('chunks/assets/font_7c6b9abe6ee2a268480c528b.woff2')format("woff");}.ff1_c01093{font-family:ff1_c01093;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m156_c01093{transform:matrix(0.006699,-0.000100,0.003750,0.249972,0,0);-ms-transform:matrix(0.006699,-0.000100,0.003750,0.249972,0,0);-webkit-transform:matrix(0.006699,-0.000100,0.003750,0.249972,0,0);}
.m5b_c01093{transform:matrix(0.007300,0.000044,-0.001500,0.249996,0,0);-ms-transform:matrix(0.007300,0.000044,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.007300,0.000044,-0.001500,0.249996,0,0);}
.mcd_c01093{transform:matrix(0.009375,0.000056,-0.001500,0.249996,0,0);-ms-transform:matrix(0.009375,0.000056,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.009375,0.000056,-0.001500,0.249996,0,0);}
.m127_c01093{transform:matrix(0.009543,0.000172,-0.004499,0.249960,0,0);-ms-transform:matrix(0.009543,0.000172,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.009543,0.000172,-0.004499,0.249960,0,0);}
.mb7_c01093{transform:matrix(0.011840,0.000071,-0.001500,0.249996,0,0);-ms-transform:matrix(0.011840,0.000071,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.011840,0.000071,-0.001500,0.249996,0,0);}
.mc6_c01093{transform:matrix(0.013260,0.000080,-0.001500,0.249996,0,0);-ms-transform:matrix(0.013260,0.000080,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.013260,0.000080,-0.001500,0.249996,0,0);}
.mb4_c01093{transform:matrix(0.019210,0.000115,-0.001500,0.249996,0,0);-ms-transform:matrix(0.019210,0.000115,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.019210,0.000115,-0.001500,0.249996,0,0);}
.m79_c01093{transform:matrix(0.031654,0.000190,-0.001500,0.249996,0,0);-ms-transform:matrix(0.031654,0.000190,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.031654,0.000190,-0.001500,0.249996,0,0);}
.ma9_c01093{transform:matrix(0.036124,0.000217,-0.001500,0.249996,0,0);-ms-transform:matrix(0.036124,0.000217,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.036124,0.000217,-0.001500,0.249996,0,0);}
.m10_c01093{transform:matrix(0.045079,0.000270,-0.001500,0.249996,0,0);-ms-transform:matrix(0.045079,0.000270,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.045079,0.000270,-0.001500,0.249996,0,0);}
.m10e_c01093{transform:matrix(0.060410,0.001087,-0.004499,0.249960,0,0);-ms-transform:matrix(0.060410,0.001087,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.060410,0.001087,-0.004499,0.249960,0,0);}
.m131_c01093{transform:matrix(0.082702,0.001489,-0.004499,0.249960,0,0);-ms-transform:matrix(0.082702,0.001489,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.082702,0.001489,-0.004499,0.249960,0,0);}
.m141_c01093{transform:matrix(0.085654,0.001884,-0.005499,0.249940,0,0);-ms-transform:matrix(0.085654,0.001884,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.085654,0.001884,-0.005499,0.249940,0,0);}
.m13f_c01093{transform:matrix(0.094862,0.002087,-0.005499,0.249940,0,0);-ms-transform:matrix(0.094862,0.002087,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.094862,0.002087,-0.005499,0.249940,0,0);}
.m10f_c01093{transform:matrix(0.097179,0.001749,-0.004499,0.249960,0,0);-ms-transform:matrix(0.097179,0.001749,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.097179,0.001749,-0.004499,0.249960,0,0);}
.mc7_c01093{transform:matrix(0.122908,0.000737,-0.001500,0.249996,0,0);-ms-transform:matrix(0.122908,0.000737,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.122908,0.000737,-0.001500,0.249996,0,0);}
.mce_c01093{transform:matrix(0.129773,0.000779,-0.001500,0.249996,0,0);-ms-transform:matrix(0.129773,0.000779,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.129773,0.000779,-0.001500,0.249996,0,0);}
.md1_c01093{transform:matrix(0.130873,0.000785,-0.001500,0.249996,0,0);-ms-transform:matrix(0.130873,0.000785,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.130873,0.000785,-0.001500,0.249996,0,0);}
.m17_c01093{transform:matrix(0.136613,0.000820,-0.001500,0.249996,0,0);-ms-transform:matrix(0.136613,0.000820,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.136613,0.000820,-0.001500,0.249996,0,0);}
.mbe_c01093{transform:matrix(0.143537,0.000861,-0.001500,0.249996,0,0);-ms-transform:matrix(0.143537,0.000861,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.143537,0.000861,-0.001500,0.249996,0,0);}
.ma0_c01093{transform:matrix(0.144627,0.000868,-0.001500,0.249996,0,0);-ms-transform:matrix(0.144627,0.000868,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.144627,0.000868,-0.001500,0.249996,0,0);}
.m1f_c01093{transform:matrix(0.145217,0.000871,-0.001500,0.249996,0,0);-ms-transform:matrix(0.145217,0.000871,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.145217,0.000871,-0.001500,0.249996,0,0);}
.ma6_c01093{transform:matrix(0.148907,0.000893,-0.001500,0.249996,0,0);-ms-transform:matrix(0.148907,0.000893,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.148907,0.000893,-0.001500,0.249996,0,0);}
.me4_c01093{transform:matrix(0.151793,-0.000759,0.001250,0.249997,0,0);-ms-transform:matrix(0.151793,-0.000759,0.001250,0.249997,0,0);-webkit-transform:matrix(0.151793,-0.000759,0.001250,0.249997,0,0);}
.m47_c01093{transform:matrix(0.153447,0.000921,-0.001500,0.249996,0,0);-ms-transform:matrix(0.153447,0.000921,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.153447,0.000921,-0.001500,0.249996,0,0);}
.m24_c01093{transform:matrix(0.153687,0.000922,-0.001500,0.249996,0,0);-ms-transform:matrix(0.153687,0.000922,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.153687,0.000922,-0.001500,0.249996,0,0);}
.m14_c01093{transform:matrix(0.155152,0.000931,-0.001500,0.249996,0,0);-ms-transform:matrix(0.155152,0.000931,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.155152,0.000931,-0.001500,0.249996,0,0);}
.md4_c01093{transform:matrix(0.158902,0.000953,-0.001500,0.249996,0,0);-ms-transform:matrix(0.158902,0.000953,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.158902,0.000953,-0.001500,0.249996,0,0);}
.m0_c01093{transform:matrix(0.158965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158965,0.000000,0.000000,0.250000,0,0);}
.m23_c01093{transform:matrix(0.162012,0.000972,-0.001500,0.249996,0,0);-ms-transform:matrix(0.162012,0.000972,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.162012,0.000972,-0.001500,0.249996,0,0);}
.ma2_c01093{transform:matrix(0.163702,0.000982,-0.001500,0.249996,0,0);-ms-transform:matrix(0.163702,0.000982,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.163702,0.000982,-0.001500,0.249996,0,0);}
.ma3_c01093{transform:matrix(0.164902,0.000989,-0.001500,0.249996,0,0);-ms-transform:matrix(0.164902,0.000989,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.164902,0.000989,-0.001500,0.249996,0,0);}
.m9_c01093{transform:matrix(0.164917,0.000990,-0.001500,0.249996,0,0);-ms-transform:matrix(0.164917,0.000990,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.164917,0.000990,-0.001500,0.249996,0,0);}
.mca_c01093{transform:matrix(0.164962,0.000990,-0.001500,0.249996,0,0);-ms-transform:matrix(0.164962,0.000990,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.164962,0.000990,-0.001500,0.249996,0,0);}
.m4_c01093{transform:matrix(0.167452,0.001005,-0.001500,0.249996,0,0);-ms-transform:matrix(0.167452,0.001005,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.167452,0.001005,-0.001500,0.249996,0,0);}
.m2a_c01093{transform:matrix(0.168537,0.001011,-0.001500,0.249996,0,0);-ms-transform:matrix(0.168537,0.001011,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.168537,0.001011,-0.001500,0.249996,0,0);}
.m20_c01093{transform:matrix(0.170092,0.001021,-0.001500,0.249996,0,0);-ms-transform:matrix(0.170092,0.001021,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.170092,0.001021,-0.001500,0.249996,0,0);}
.m28_c01093{transform:matrix(0.170727,0.001024,-0.001500,0.249996,0,0);-ms-transform:matrix(0.170727,0.001024,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.170727,0.001024,-0.001500,0.249996,0,0);}
.m1a_c01093{transform:matrix(0.172777,0.001037,-0.001500,0.249996,0,0);-ms-transform:matrix(0.172777,0.001037,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.172777,0.001037,-0.001500,0.249996,0,0);}
.ma_c01093{transform:matrix(0.173167,0.001039,-0.001500,0.249996,0,0);-ms-transform:matrix(0.173167,0.001039,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.173167,0.001039,-0.001500,0.249996,0,0);}
.m117_c01093{transform:matrix(0.177156,0.003189,-0.004499,0.249960,0,0);-ms-transform:matrix(0.177156,0.003189,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.177156,0.003189,-0.004499,0.249960,0,0);}
.m45_c01093{transform:matrix(0.177332,0.001064,-0.001500,0.249996,0,0);-ms-transform:matrix(0.177332,0.001064,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.177332,0.001064,-0.001500,0.249996,0,0);}
.ma4_c01093{transform:matrix(0.178572,0.001071,-0.001500,0.249996,0,0);-ms-transform:matrix(0.178572,0.001071,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.178572,0.001071,-0.001500,0.249996,0,0);}
.m132_c01093{transform:matrix(0.179286,0.003227,-0.004499,0.249960,0,0);-ms-transform:matrix(0.179286,0.003227,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.179286,0.003227,-0.004499,0.249960,0,0);}
.ma5_c01093{transform:matrix(0.180662,0.001084,-0.001500,0.249996,0,0);-ms-transform:matrix(0.180662,0.001084,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.180662,0.001084,-0.001500,0.249996,0,0);}
.m4e_c01093{transform:matrix(0.182027,0.001092,-0.001500,0.249996,0,0);-ms-transform:matrix(0.182027,0.001092,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.182027,0.001092,-0.001500,0.249996,0,0);}
.mfb_c01093{transform:matrix(0.183460,0.003302,-0.004499,0.249960,0,0);-ms-transform:matrix(0.183460,0.003302,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.183460,0.003302,-0.004499,0.249960,0,0);}
.m153_c01093{transform:matrix(0.183749,-0.002756,0.003750,0.249972,0,0);-ms-transform:matrix(0.183749,-0.002756,0.003750,0.249972,0,0);-webkit-transform:matrix(0.183749,-0.002756,0.003750,0.249972,0,0);}
.m12e_c01093{transform:matrix(0.184660,0.003324,-0.004499,0.249960,0,0);-ms-transform:matrix(0.184660,0.003324,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.184660,0.003324,-0.004499,0.249960,0,0);}
.m12f_c01093{transform:matrix(0.185255,0.003335,-0.004499,0.249960,0,0);-ms-transform:matrix(0.185255,0.003335,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.185255,0.003335,-0.004499,0.249960,0,0);}
.m18_c01093{transform:matrix(0.185312,0.001112,-0.001500,0.249996,0,0);-ms-transform:matrix(0.185312,0.001112,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.185312,0.001112,-0.001500,0.249996,0,0);}
.m91_c01093{transform:matrix(0.187487,0.001125,-0.001500,0.249996,0,0);-ms-transform:matrix(0.187487,0.001125,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.187487,0.001125,-0.001500,0.249996,0,0);}
.m43_c01093{transform:matrix(0.187787,0.001127,-0.001500,0.249996,0,0);-ms-transform:matrix(0.187787,0.001127,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.187787,0.001127,-0.001500,0.249996,0,0);}
.m26_c01093{transform:matrix(0.187857,0.001127,-0.001500,0.249996,0,0);-ms-transform:matrix(0.187857,0.001127,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.187857,0.001127,-0.001500,0.249996,0,0);}
.m2d_c01093{transform:matrix(0.188852,0.001133,-0.001500,0.249996,0,0);-ms-transform:matrix(0.188852,0.001133,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.188852,0.001133,-0.001500,0.249996,0,0);}
.m1b_c01093{transform:matrix(0.189267,0.001136,-0.001500,0.249996,0,0);-ms-transform:matrix(0.189267,0.001136,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.189267,0.001136,-0.001500,0.249996,0,0);}
.m11a_c01093{transform:matrix(0.190414,0.003427,-0.004499,0.249960,0,0);-ms-transform:matrix(0.190414,0.003427,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.190414,0.003427,-0.004499,0.249960,0,0);}
.m3_c01093{transform:matrix(0.191192,0.001147,-0.001500,0.249996,0,0);-ms-transform:matrix(0.191192,0.001147,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.191192,0.001147,-0.001500,0.249996,0,0);}
.m25_c01093{transform:matrix(0.191222,0.001147,-0.001500,0.249996,0,0);-ms-transform:matrix(0.191222,0.001147,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.191222,0.001147,-0.001500,0.249996,0,0);}
.mfa_c01093{transform:matrix(0.192019,0.003456,-0.004499,0.249960,0,0);-ms-transform:matrix(0.192019,0.003456,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.192019,0.003456,-0.004499,0.249960,0,0);}
.mcb_c01093{transform:matrix(0.192037,0.001152,-0.001500,0.249996,0,0);-ms-transform:matrix(0.192037,0.001152,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.192037,0.001152,-0.001500,0.249996,0,0);}
.m21_c01093{transform:matrix(0.192262,0.001154,-0.001500,0.249996,0,0);-ms-transform:matrix(0.192262,0.001154,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.192262,0.001154,-0.001500,0.249996,0,0);}
.m22_c01093{transform:matrix(0.192807,0.001157,-0.001500,0.249996,0,0);-ms-transform:matrix(0.192807,0.001157,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.192807,0.001157,-0.001500,0.249996,0,0);}
.m15_c01093{transform:matrix(0.194202,0.001165,-0.001500,0.249996,0,0);-ms-transform:matrix(0.194202,0.001165,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.194202,0.001165,-0.001500,0.249996,0,0);}
.m12a_c01093{transform:matrix(0.194568,0.003502,-0.004499,0.249960,0,0);-ms-transform:matrix(0.194568,0.003502,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.194568,0.003502,-0.004499,0.249960,0,0);}
.m13c_c01093{transform:matrix(0.195243,0.003514,-0.004499,0.249960,0,0);-ms-transform:matrix(0.195243,0.003514,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.195243,0.003514,-0.004499,0.249960,0,0);}
.mfe_c01093{transform:matrix(0.195598,0.003521,-0.004499,0.249960,0,0);-ms-transform:matrix(0.195598,0.003521,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.195598,0.003521,-0.004499,0.249960,0,0);}
.m122_c01093{transform:matrix(0.195883,0.003526,-0.004499,0.249960,0,0);-ms-transform:matrix(0.195883,0.003526,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.195883,0.003526,-0.004499,0.249960,0,0);}
.md3_c01093{transform:matrix(0.196216,0.001177,-0.001500,0.249996,0,0);-ms-transform:matrix(0.196216,0.001177,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.196216,0.001177,-0.001500,0.249996,0,0);}
.m13a_c01093{transform:matrix(0.196273,0.003533,-0.004499,0.249960,0,0);-ms-transform:matrix(0.196273,0.003533,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.196273,0.003533,-0.004499,0.249960,0,0);}
.m139_c01093{transform:matrix(0.197958,0.003563,-0.004499,0.249960,0,0);-ms-transform:matrix(0.197958,0.003563,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.197958,0.003563,-0.004499,0.249960,0,0);}
.m1e_c01093{transform:matrix(0.198056,0.001188,-0.001500,0.249996,0,0);-ms-transform:matrix(0.198056,0.001188,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.198056,0.001188,-0.001500,0.249996,0,0);}
.md5_c01093{transform:matrix(0.200386,0.001202,-0.001500,0.249996,0,0);-ms-transform:matrix(0.200386,0.001202,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.200386,0.001202,-0.001500,0.249996,0,0);}
.m48_c01093{transform:matrix(0.200896,0.001205,-0.001500,0.249996,0,0);-ms-transform:matrix(0.200896,0.001205,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.200896,0.001205,-0.001500,0.249996,0,0);}
.m8_c01093{transform:matrix(0.201776,0.001211,-0.001500,0.249996,0,0);-ms-transform:matrix(0.201776,0.001211,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.201776,0.001211,-0.001500,0.249996,0,0);}
.m1c_c01093{transform:matrix(0.201861,0.001211,-0.001500,0.249996,0,0);-ms-transform:matrix(0.201861,0.001211,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.201861,0.001211,-0.001500,0.249996,0,0);}
.m19_c01093{transform:matrix(0.202056,0.001212,-0.001500,0.249996,0,0);-ms-transform:matrix(0.202056,0.001212,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.202056,0.001212,-0.001500,0.249996,0,0);}
.m155_c01093{transform:matrix(0.202977,-0.003045,0.003750,0.249972,0,0);-ms-transform:matrix(0.202977,-0.003045,0.003750,0.249972,0,0);-webkit-transform:matrix(0.202977,-0.003045,0.003750,0.249972,0,0);}
.mf9_c01093{transform:matrix(0.203122,0.003656,-0.004499,0.249960,0,0);-ms-transform:matrix(0.203122,0.003656,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.203122,0.003656,-0.004499,0.249960,0,0);}
.m8b_c01093{transform:matrix(0.203206,0.001219,-0.001500,0.249996,0,0);-ms-transform:matrix(0.203206,0.001219,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.203206,0.001219,-0.001500,0.249996,0,0);}
.m27_c01093{transform:matrix(0.203261,0.001220,-0.001500,0.249996,0,0);-ms-transform:matrix(0.203261,0.001220,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.203261,0.001220,-0.001500,0.249996,0,0);}
.m12c_c01093{transform:matrix(0.203672,0.003666,-0.004499,0.249960,0,0);-ms-transform:matrix(0.203672,0.003666,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.203672,0.003666,-0.004499,0.249960,0,0);}
.mf7_c01093{transform:matrix(0.204022,0.003672,-0.004499,0.249960,0,0);-ms-transform:matrix(0.204022,0.003672,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.204022,0.003672,-0.004499,0.249960,0,0);}
.m31_c01093{transform:matrix(0.204641,0.001228,-0.001500,0.249996,0,0);-ms-transform:matrix(0.204641,0.001228,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.204641,0.001228,-0.001500,0.249996,0,0);}
.mcc_c01093{transform:matrix(0.204881,0.001229,-0.001500,0.249996,0,0);-ms-transform:matrix(0.204881,0.001229,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.204881,0.001229,-0.001500,0.249996,0,0);}
.m10a_c01093{transform:matrix(0.204987,0.003690,-0.004499,0.249960,0,0);-ms-transform:matrix(0.204987,0.003690,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.204987,0.003690,-0.004499,0.249960,0,0);}
.m138_c01093{transform:matrix(0.205377,0.003697,-0.004499,0.249960,0,0);-ms-transform:matrix(0.205377,0.003697,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.205377,0.003697,-0.004499,0.249960,0,0);}
.mf8_c01093{transform:matrix(0.205692,0.003702,-0.004499,0.249960,0,0);-ms-transform:matrix(0.205692,0.003702,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.205692,0.003702,-0.004499,0.249960,0,0);}
.m2e_c01093{transform:matrix(0.206031,0.001236,-0.001500,0.249996,0,0);-ms-transform:matrix(0.206031,0.001236,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.206031,0.001236,-0.001500,0.249996,0,0);}
.m140_c01093{transform:matrix(0.206840,0.004550,-0.005499,0.249940,0,0);-ms-transform:matrix(0.206840,0.004550,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.206840,0.004550,-0.005499,0.249940,0,0);}
.ma7_c01093{transform:matrix(0.207141,0.001243,-0.001500,0.249996,0,0);-ms-transform:matrix(0.207141,0.001243,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.207141,0.001243,-0.001500,0.249996,0,0);}
.m29_c01093{transform:matrix(0.208096,0.001249,-0.001500,0.249996,0,0);-ms-transform:matrix(0.208096,0.001249,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.208096,0.001249,-0.001500,0.249996,0,0);}
.mbb_c01093{transform:matrix(0.209046,0.001254,-0.001500,0.249996,0,0);-ms-transform:matrix(0.209046,0.001254,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.209046,0.001254,-0.001500,0.249996,0,0);}
.m13_c01093{transform:matrix(0.209281,0.001256,-0.001500,0.249996,0,0);-ms-transform:matrix(0.209281,0.001256,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.209281,0.001256,-0.001500,0.249996,0,0);}
.m151_c01093{transform:matrix(0.209621,-0.003144,0.003750,0.249972,0,0);-ms-transform:matrix(0.209621,-0.003144,0.003750,0.249972,0,0);-webkit-transform:matrix(0.209621,-0.003144,0.003750,0.249972,0,0);}
.m44_c01093{transform:matrix(0.209946,0.001260,-0.001500,0.249996,0,0);-ms-transform:matrix(0.209946,0.001260,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.209946,0.001260,-0.001500,0.249996,0,0);}
.md0_c01093{transform:matrix(0.210391,0.001262,-0.001500,0.249996,0,0);-ms-transform:matrix(0.210391,0.001262,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.210391,0.001262,-0.001500,0.249996,0,0);}
.m2b_c01093{transform:matrix(0.210671,0.001264,-0.001500,0.249996,0,0);-ms-transform:matrix(0.210671,0.001264,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.210671,0.001264,-0.001500,0.249996,0,0);}
.m96_c01093{transform:matrix(0.210751,0.001265,-0.001500,0.249996,0,0);-ms-transform:matrix(0.210751,0.001265,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.210751,0.001265,-0.001500,0.249996,0,0);}
.m4a_c01093{transform:matrix(0.210831,0.001265,-0.001500,0.249996,0,0);-ms-transform:matrix(0.210831,0.001265,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.210831,0.001265,-0.001500,0.249996,0,0);}
.ma1_c01093{transform:matrix(0.211271,0.001268,-0.001500,0.249996,0,0);-ms-transform:matrix(0.211271,0.001268,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.211271,0.001268,-0.001500,0.249996,0,0);}
.m30_c01093{transform:matrix(0.211496,0.001269,-0.001500,0.249996,0,0);-ms-transform:matrix(0.211496,0.001269,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.211496,0.001269,-0.001500,0.249996,0,0);}
.m9f_c01093{transform:matrix(0.211736,0.001270,-0.001500,0.249996,0,0);-ms-transform:matrix(0.211736,0.001270,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.211736,0.001270,-0.001500,0.249996,0,0);}
.m6_c01093{transform:matrix(0.212056,0.001272,-0.001500,0.249996,0,0);-ms-transform:matrix(0.212056,0.001272,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.212056,0.001272,-0.001500,0.249996,0,0);}
.md2_c01093{transform:matrix(0.212516,0.001275,-0.001500,0.249996,0,0);-ms-transform:matrix(0.212516,0.001275,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.212516,0.001275,-0.001500,0.249996,0,0);}
.mb_c01093{transform:matrix(0.212741,0.001276,-0.001500,0.249996,0,0);-ms-transform:matrix(0.212741,0.001276,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.212741,0.001276,-0.001500,0.249996,0,0);}
.mc_c01093{transform:matrix(0.213086,0.001279,-0.001500,0.249996,0,0);-ms-transform:matrix(0.213086,0.001279,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.213086,0.001279,-0.001500,0.249996,0,0);}
.m32_c01093{transform:matrix(0.213096,0.001279,-0.001500,0.249996,0,0);-ms-transform:matrix(0.213096,0.001279,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.213096,0.001279,-0.001500,0.249996,0,0);}
.m133_c01093{transform:matrix(0.213435,0.003842,-0.004499,0.249960,0,0);-ms-transform:matrix(0.213435,0.003842,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.213435,0.003842,-0.004499,0.249960,0,0);}
.m13b_c01093{transform:matrix(0.213540,0.003844,-0.004499,0.249960,0,0);-ms-transform:matrix(0.213540,0.003844,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.213540,0.003844,-0.004499,0.249960,0,0);}
.mfd_c01093{transform:matrix(0.213825,0.003849,-0.004499,0.249960,0,0);-ms-transform:matrix(0.213825,0.003849,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.213825,0.003849,-0.004499,0.249960,0,0);}
.m39_c01093{transform:matrix(0.214706,0.001288,-0.001500,0.249996,0,0);-ms-transform:matrix(0.214706,0.001288,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.214706,0.001288,-0.001500,0.249996,0,0);}
.m13d_c01093{transform:matrix(0.216150,0.003891,-0.004499,0.249960,0,0);-ms-transform:matrix(0.216150,0.003891,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.216150,0.003891,-0.004499,0.249960,0,0);}
.m90_c01093{transform:matrix(0.217991,0.001308,-0.001500,0.249996,0,0);-ms-transform:matrix(0.217991,0.001308,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.217991,0.001308,-0.001500,0.249996,0,0);}
.m9b_c01093{transform:matrix(0.219421,0.001317,-0.001500,0.249996,0,0);-ms-transform:matrix(0.219421,0.001317,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.219421,0.001317,-0.001500,0.249996,0,0);}
.m10c_c01093{transform:matrix(0.219714,0.003955,-0.004499,0.249960,0,0);-ms-transform:matrix(0.219714,0.003955,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.219714,0.003955,-0.004499,0.249960,0,0);}
.m8c_c01093{transform:matrix(0.220151,0.001321,-0.001500,0.249996,0,0);-ms-transform:matrix(0.220151,0.001321,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.220151,0.001321,-0.001500,0.249996,0,0);}
.m10b_c01093{transform:matrix(0.221794,0.003992,-0.004499,0.249960,0,0);-ms-transform:matrix(0.221794,0.003992,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.221794,0.003992,-0.004499,0.249960,0,0);}
.m12b_c01093{transform:matrix(0.221844,0.003993,-0.004499,0.249960,0,0);-ms-transform:matrix(0.221844,0.003993,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.221844,0.003993,-0.004499,0.249960,0,0);}
.m107_c01093{transform:matrix(0.221859,0.003993,-0.004499,0.249960,0,0);-ms-transform:matrix(0.221859,0.003993,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.221859,0.003993,-0.004499,0.249960,0,0);}
.m33_c01093{transform:matrix(0.222026,0.001332,-0.001500,0.249996,0,0);-ms-transform:matrix(0.222026,0.001332,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.222026,0.001332,-0.001500,0.249996,0,0);}
.me2_c01093{transform:matrix(0.222336,0.001334,-0.001500,0.249996,0,0);-ms-transform:matrix(0.222336,0.001334,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.222336,0.001334,-0.001500,0.249996,0,0);}
.m38_c01093{transform:matrix(0.222496,0.001335,-0.001500,0.249996,0,0);-ms-transform:matrix(0.222496,0.001335,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.222496,0.001335,-0.001500,0.249996,0,0);}
.m97_c01093{transform:matrix(0.222511,0.001335,-0.001500,0.249996,0,0);-ms-transform:matrix(0.222511,0.001335,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.222511,0.001335,-0.001500,0.249996,0,0);}
.m99_c01093{transform:matrix(0.222856,0.001337,-0.001500,0.249996,0,0);-ms-transform:matrix(0.222856,0.001337,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.222856,0.001337,-0.001500,0.249996,0,0);}
.mfc_c01093{transform:matrix(0.223664,0.004026,-0.004499,0.249960,0,0);-ms-transform:matrix(0.223664,0.004026,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.223664,0.004026,-0.004499,0.249960,0,0);}
.m87_c01093{transform:matrix(0.223716,0.001342,-0.001500,0.249996,0,0);-ms-transform:matrix(0.223716,0.001342,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.223716,0.001342,-0.001500,0.249996,0,0);}
.m1d_c01093{transform:matrix(0.223946,0.001344,-0.001500,0.249996,0,0);-ms-transform:matrix(0.223946,0.001344,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.223946,0.001344,-0.001500,0.249996,0,0);}
.m120_c01093{transform:matrix(0.223999,0.004032,-0.004499,0.249960,0,0);-ms-transform:matrix(0.223999,0.004032,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.223999,0.004032,-0.004499,0.249960,0,0);}
.m84_c01093{transform:matrix(0.224151,0.001345,-0.001500,0.249996,0,0);-ms-transform:matrix(0.224151,0.001345,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.224151,0.001345,-0.001500,0.249996,0,0);}
.m11_c01093{transform:matrix(0.224596,0.001348,-0.001500,0.249996,0,0);-ms-transform:matrix(0.224596,0.001348,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.224596,0.001348,-0.001500,0.249996,0,0);}
.mc9_c01093{transform:matrix(0.225081,0.001350,-0.001500,0.249996,0,0);-ms-transform:matrix(0.225081,0.001350,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.225081,0.001350,-0.001500,0.249996,0,0);}
.mc1_c01093{transform:matrix(0.225791,0.001355,-0.001500,0.249996,0,0);-ms-transform:matrix(0.225791,0.001355,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.225791,0.001355,-0.001500,0.249996,0,0);}
.m119_c01093{transform:matrix(0.226478,0.004077,-0.004499,0.249960,0,0);-ms-transform:matrix(0.226478,0.004077,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.226478,0.004077,-0.004499,0.249960,0,0);}
.md6_c01093{transform:matrix(0.227876,0.001367,-0.001500,0.249996,0,0);-ms-transform:matrix(0.227876,0.001367,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.227876,0.001367,-0.001500,0.249996,0,0);}
.ma8_c01093{transform:matrix(0.228186,0.001369,-0.001500,0.249996,0,0);-ms-transform:matrix(0.228186,0.001369,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.228186,0.001369,-0.001500,0.249996,0,0);}
.mba_c01093{transform:matrix(0.228766,0.001373,-0.001500,0.249996,0,0);-ms-transform:matrix(0.228766,0.001373,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.228766,0.001373,-0.001500,0.249996,0,0);}
.m46_c01093{transform:matrix(0.228841,0.001373,-0.001500,0.249996,0,0);-ms-transform:matrix(0.228841,0.001373,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.228841,0.001373,-0.001500,0.249996,0,0);}
.m57_c01093{transform:matrix(0.228901,0.001373,-0.001500,0.249996,0,0);-ms-transform:matrix(0.228901,0.001373,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.228901,0.001373,-0.001500,0.249996,0,0);}
.mb1_c01093{transform:matrix(0.228921,0.001374,-0.001500,0.249996,0,0);-ms-transform:matrix(0.228921,0.001374,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.228921,0.001374,-0.001500,0.249996,0,0);}
.m130_c01093{transform:matrix(0.229253,0.004127,-0.004499,0.249960,0,0);-ms-transform:matrix(0.229253,0.004127,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.229253,0.004127,-0.004499,0.249960,0,0);}
.m7_c01093{transform:matrix(0.230796,0.001385,-0.001500,0.249996,0,0);-ms-transform:matrix(0.230796,0.001385,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.230796,0.001385,-0.001500,0.249996,0,0);}
.m118_c01093{transform:matrix(0.230853,0.004155,-0.004499,0.249960,0,0);-ms-transform:matrix(0.230853,0.004155,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.230853,0.004155,-0.004499,0.249960,0,0);}
.mae_c01093{transform:matrix(0.231041,0.001386,-0.001500,0.249996,0,0);-ms-transform:matrix(0.231041,0.001386,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.231041,0.001386,-0.001500,0.249996,0,0);}
.m7a_c01093{transform:matrix(0.231431,0.001389,-0.001500,0.249996,0,0);-ms-transform:matrix(0.231431,0.001389,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.231431,0.001389,-0.001500,0.249996,0,0);}
.m5_c01093{transform:matrix(0.236311,0.001418,-0.001500,0.249996,0,0);-ms-transform:matrix(0.236311,0.001418,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.236311,0.001418,-0.001500,0.249996,0,0);}
.m6a_c01093{transform:matrix(0.236561,0.001419,-0.001500,0.249996,0,0);-ms-transform:matrix(0.236561,0.001419,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.236561,0.001419,-0.001500,0.249996,0,0);}
.m80_c01093{transform:matrix(0.237166,0.001423,-0.001500,0.249996,0,0);-ms-transform:matrix(0.237166,0.001423,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.237166,0.001423,-0.001500,0.249996,0,0);}
.m82_c01093{transform:matrix(0.237816,0.001427,-0.001500,0.249996,0,0);-ms-transform:matrix(0.237816,0.001427,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.237816,0.001427,-0.001500,0.249996,0,0);}
.mf3_c01093{transform:matrix(0.237977,-0.001190,0.001250,0.249997,0,0);-ms-transform:matrix(0.237977,-0.001190,0.001250,0.249997,0,0);-webkit-transform:matrix(0.237977,-0.001190,0.001250,0.249997,0,0);}
.m4c_c01093{transform:matrix(0.238676,0.001432,-0.001500,0.249996,0,0);-ms-transform:matrix(0.238676,0.001432,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.238676,0.001432,-0.001500,0.249996,0,0);}
.mcf_c01093{transform:matrix(0.239246,0.001435,-0.001500,0.249996,0,0);-ms-transform:matrix(0.239246,0.001435,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.239246,0.001435,-0.001500,0.249996,0,0);}
.m68_c01093{transform:matrix(0.239291,0.001436,-0.001500,0.249996,0,0);-ms-transform:matrix(0.239291,0.001436,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.239291,0.001436,-0.001500,0.249996,0,0);}
.m112_c01093{transform:matrix(0.239326,0.004308,-0.004499,0.249960,0,0);-ms-transform:matrix(0.239326,0.004308,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.239326,0.004308,-0.004499,0.249960,0,0);}
.m101_c01093{transform:matrix(0.239576,0.004312,-0.004499,0.249960,0,0);-ms-transform:matrix(0.239576,0.004312,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.239576,0.004312,-0.004499,0.249960,0,0);}
.m114_c01093{transform:matrix(0.239756,0.004316,-0.004499,0.249960,0,0);-ms-transform:matrix(0.239756,0.004316,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.239756,0.004316,-0.004499,0.249960,0,0);}
.m61_c01093{transform:matrix(0.240646,0.001444,-0.001500,0.249996,0,0);-ms-transform:matrix(0.240646,0.001444,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.240646,0.001444,-0.001500,0.249996,0,0);}
.m85_c01093{transform:matrix(0.240676,0.001444,-0.001500,0.249996,0,0);-ms-transform:matrix(0.240676,0.001444,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.240676,0.001444,-0.001500,0.249996,0,0);}
.m66_c01093{transform:matrix(0.240876,0.001445,-0.001500,0.249996,0,0);-ms-transform:matrix(0.240876,0.001445,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.240876,0.001445,-0.001500,0.249996,0,0);}
.md_c01093{transform:matrix(0.241901,0.001451,-0.001500,0.249996,0,0);-ms-transform:matrix(0.241901,0.001451,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.241901,0.001451,-0.001500,0.249996,0,0);}
.m42_c01093{transform:matrix(0.241936,0.001452,-0.001500,0.249996,0,0);-ms-transform:matrix(0.241936,0.001452,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.241936,0.001452,-0.001500,0.249996,0,0);}
.mc8_c01093{transform:matrix(0.242411,0.001454,-0.001500,0.249996,0,0);-ms-transform:matrix(0.242411,0.001454,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.242411,0.001454,-0.001500,0.249996,0,0);}
.m51_c01093{transform:matrix(0.242771,0.001457,-0.001500,0.249996,0,0);-ms-transform:matrix(0.242771,0.001457,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.242771,0.001457,-0.001500,0.249996,0,0);}
.m95_c01093{transform:matrix(0.243256,0.001460,-0.001500,0.249996,0,0);-ms-transform:matrix(0.243256,0.001460,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.243256,0.001460,-0.001500,0.249996,0,0);}
.meb_c01093{transform:matrix(0.243477,-0.001217,0.001250,0.249997,0,0);-ms-transform:matrix(0.243477,-0.001217,0.001250,0.249997,0,0);-webkit-transform:matrix(0.243477,-0.001217,0.001250,0.249997,0,0);}
.m1_c01093{transform:matrix(0.243995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243995,0.000000,0.000000,0.250000,0,0);}
.m5a_c01093{transform:matrix(0.245101,0.001471,-0.001500,0.249996,0,0);-ms-transform:matrix(0.245101,0.001471,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.245101,0.001471,-0.001500,0.249996,0,0);}
.m4b_c01093{transform:matrix(0.245306,0.001472,-0.001500,0.249996,0,0);-ms-transform:matrix(0.245306,0.001472,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.245306,0.001472,-0.001500,0.249996,0,0);}
.m2c_c01093{transform:matrix(0.245566,0.001473,-0.001500,0.249996,0,0);-ms-transform:matrix(0.245566,0.001473,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.245566,0.001473,-0.001500,0.249996,0,0);}
.m2f_c01093{transform:matrix(0.245876,0.001475,-0.001500,0.249996,0,0);-ms-transform:matrix(0.245876,0.001475,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.245876,0.001475,-0.001500,0.249996,0,0);}
.m125_c01093{transform:matrix(0.246650,0.004440,-0.004499,0.249960,0,0);-ms-transform:matrix(0.246650,0.004440,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.246650,0.004440,-0.004499,0.249960,0,0);}
.m16_c01093{transform:matrix(0.246816,0.001481,-0.001500,0.249996,0,0);-ms-transform:matrix(0.246816,0.001481,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.246816,0.001481,-0.001500,0.249996,0,0);}
.m5c_c01093{transform:matrix(0.247031,0.001482,-0.001500,0.249996,0,0);-ms-transform:matrix(0.247031,0.001482,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.247031,0.001482,-0.001500,0.249996,0,0);}
.mff_c01093{transform:matrix(0.247260,0.004451,-0.004499,0.249960,0,0);-ms-transform:matrix(0.247260,0.004451,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.247260,0.004451,-0.004499,0.249960,0,0);}
.mb0_c01093{transform:matrix(0.247941,0.001488,-0.001500,0.249996,0,0);-ms-transform:matrix(0.247941,0.001488,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.247941,0.001488,-0.001500,0.249996,0,0);}
.m93_c01093{transform:matrix(0.247971,0.001488,-0.001500,0.249996,0,0);-ms-transform:matrix(0.247971,0.001488,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.247971,0.001488,-0.001500,0.249996,0,0);}
.m100_c01093{transform:matrix(0.248040,0.004465,-0.004499,0.249960,0,0);-ms-transform:matrix(0.248040,0.004465,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.248040,0.004465,-0.004499,0.249960,0,0);}
.m105_c01093{transform:matrix(0.248455,0.004472,-0.004499,0.249960,0,0);-ms-transform:matrix(0.248455,0.004472,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.248455,0.004472,-0.004499,0.249960,0,0);}
.m88_c01093{transform:matrix(0.248606,0.001492,-0.001500,0.249996,0,0);-ms-transform:matrix(0.248606,0.001492,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.248606,0.001492,-0.001500,0.249996,0,0);}
.m12d_c01093{transform:matrix(0.248965,0.004481,-0.004499,0.249960,0,0);-ms-transform:matrix(0.248965,0.004481,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.248965,0.004481,-0.004499,0.249960,0,0);}
.maf_c01093{transform:matrix(0.249126,0.001495,-0.001500,0.249996,0,0);-ms-transform:matrix(0.249126,0.001495,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.249126,0.001495,-0.001500,0.249996,0,0);}
.m54_c01093{transform:matrix(0.249396,0.001496,-0.001500,0.249996,0,0);-ms-transform:matrix(0.249396,0.001496,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.249396,0.001496,-0.001500,0.249996,0,0);}
.m113_c01093{transform:matrix(0.249505,0.004491,-0.004499,0.249960,0,0);-ms-transform:matrix(0.249505,0.004491,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.249505,0.004491,-0.004499,0.249960,0,0);}
.mef_c01093{transform:matrix(0.249947,-0.001250,0.001250,0.249997,0,0);-ms-transform:matrix(0.249947,-0.001250,0.001250,0.249997,0,0);-webkit-transform:matrix(0.249947,-0.001250,0.001250,0.249997,0,0);}
.m14b_c01093{transform:matrix(0.250922,-0.003764,0.003750,0.249972,0,0);-ms-transform:matrix(0.250922,-0.003764,0.003750,0.249972,0,0);-webkit-transform:matrix(0.250922,-0.003764,0.003750,0.249972,0,0);}
.m81_c01093{transform:matrix(0.251540,0.001509,-0.001500,0.249996,0,0);-ms-transform:matrix(0.251540,0.001509,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.251540,0.001509,-0.001500,0.249996,0,0);}
.mf4_c01093{transform:matrix(0.251639,0.004530,-0.004499,0.249960,0,0);-ms-transform:matrix(0.251639,0.004530,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.251639,0.004530,-0.004499,0.249960,0,0);}
.mb5_c01093{transform:matrix(0.251965,0.001512,-0.001500,0.249996,0,0);-ms-transform:matrix(0.251965,0.001512,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.251965,0.001512,-0.001500,0.249996,0,0);}
.m58_c01093{transform:matrix(0.252000,0.001512,-0.001500,0.249996,0,0);-ms-transform:matrix(0.252000,0.001512,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.252000,0.001512,-0.001500,0.249996,0,0);}
.m6e_c01093{transform:matrix(0.252075,0.001512,-0.001500,0.249996,0,0);-ms-transform:matrix(0.252075,0.001512,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.252075,0.001512,-0.001500,0.249996,0,0);}
.m50_c01093{transform:matrix(0.252730,0.001516,-0.001500,0.249996,0,0);-ms-transform:matrix(0.252730,0.001516,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.252730,0.001516,-0.001500,0.249996,0,0);}
.mdc_c01093{transform:matrix(0.253135,0.001519,-0.001500,0.249996,0,0);-ms-transform:matrix(0.253135,0.001519,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.253135,0.001519,-0.001500,0.249996,0,0);}
.m37_c01093{transform:matrix(0.253140,0.001519,-0.001500,0.249996,0,0);-ms-transform:matrix(0.253140,0.001519,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.253140,0.001519,-0.001500,0.249996,0,0);}
.m121_c01093{transform:matrix(0.253329,0.004560,-0.004499,0.249960,0,0);-ms-transform:matrix(0.253329,0.004560,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.253329,0.004560,-0.004499,0.249960,0,0);}
.mc4_c01093{transform:matrix(0.254510,0.001527,-0.001500,0.249996,0,0);-ms-transform:matrix(0.254510,0.001527,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.254510,0.001527,-0.001500,0.249996,0,0);}
.mf0_c01093{transform:matrix(0.254947,-0.001275,0.001250,0.249997,0,0);-ms-transform:matrix(0.254947,-0.001275,0.001250,0.249997,0,0);-webkit-transform:matrix(0.254947,-0.001275,0.001250,0.249997,0,0);}
.mdb_c01093{transform:matrix(0.254960,0.001530,-0.001500,0.249996,0,0);-ms-transform:matrix(0.254960,0.001530,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.254960,0.001530,-0.001500,0.249996,0,0);}
.mee_c01093{transform:matrix(0.256122,-0.001281,0.001250,0.249997,0,0);-ms-transform:matrix(0.256122,-0.001281,0.001250,0.249997,0,0);-webkit-transform:matrix(0.256122,-0.001281,0.001250,0.249997,0,0);}
.m89_c01093{transform:matrix(0.256160,0.001537,-0.001500,0.249996,0,0);-ms-transform:matrix(0.256160,0.001537,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.256160,0.001537,-0.001500,0.249996,0,0);}
.mdf_c01093{transform:matrix(0.256805,0.001541,-0.001500,0.249996,0,0);-ms-transform:matrix(0.256805,0.001541,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.256805,0.001541,-0.001500,0.249996,0,0);}
.mf_c01093{transform:matrix(0.256875,0.001541,-0.001500,0.249996,0,0);-ms-transform:matrix(0.256875,0.001541,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.256875,0.001541,-0.001500,0.249996,0,0);}
.maa_c01093{transform:matrix(0.258805,0.001553,-0.001500,0.249996,0,0);-ms-transform:matrix(0.258805,0.001553,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.258805,0.001553,-0.001500,0.249996,0,0);}
.m98_c01093{transform:matrix(0.258985,0.001554,-0.001500,0.249996,0,0);-ms-transform:matrix(0.258985,0.001554,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.258985,0.001554,-0.001500,0.249996,0,0);}
.m62_c01093{transform:matrix(0.261005,0.001566,-0.001500,0.249996,0,0);-ms-transform:matrix(0.261005,0.001566,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.261005,0.001566,-0.001500,0.249996,0,0);}
.m8f_c01093{transform:matrix(0.261095,0.001567,-0.001500,0.249996,0,0);-ms-transform:matrix(0.261095,0.001567,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.261095,0.001567,-0.001500,0.249996,0,0);}
.mf6_c01093{transform:matrix(0.261283,0.004703,-0.004499,0.249960,0,0);-ms-transform:matrix(0.261283,0.004703,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.261283,0.004703,-0.004499,0.249960,0,0);}
.m74_c01093{transform:matrix(0.261880,0.001571,-0.001500,0.249996,0,0);-ms-transform:matrix(0.261880,0.001571,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.261880,0.001571,-0.001500,0.249996,0,0);}
.m63_c01093{transform:matrix(0.262570,0.001575,-0.001500,0.249996,0,0);-ms-transform:matrix(0.262570,0.001575,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.262570,0.001575,-0.001500,0.249996,0,0);}
.m9a_c01093{transform:matrix(0.264555,0.001587,-0.001500,0.249996,0,0);-ms-transform:matrix(0.264555,0.001587,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.264555,0.001587,-0.001500,0.249996,0,0);}
.m5e_c01093{transform:matrix(0.264940,0.001590,-0.001500,0.249996,0,0);-ms-transform:matrix(0.264940,0.001590,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.264940,0.001590,-0.001500,0.249996,0,0);}
.m6d_c01093{transform:matrix(0.265095,0.001591,-0.001500,0.249996,0,0);-ms-transform:matrix(0.265095,0.001591,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.265095,0.001591,-0.001500,0.249996,0,0);}
.mc2_c01093{transform:matrix(0.265150,0.001591,-0.001500,0.249996,0,0);-ms-transform:matrix(0.265150,0.001591,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.265150,0.001591,-0.001500,0.249996,0,0);}
.m59_c01093{transform:matrix(0.265585,0.001594,-0.001500,0.249996,0,0);-ms-transform:matrix(0.265585,0.001594,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.265585,0.001594,-0.001500,0.249996,0,0);}
.me3_c01093{transform:matrix(0.265655,0.001594,-0.001500,0.249996,0,0);-ms-transform:matrix(0.265655,0.001594,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.265655,0.001594,-0.001500,0.249996,0,0);}
.mc0_c01093{transform:matrix(0.265710,0.001594,-0.001500,0.249996,0,0);-ms-transform:matrix(0.265710,0.001594,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.265710,0.001594,-0.001500,0.249996,0,0);}
.m108_c01093{transform:matrix(0.265717,0.004783,-0.004499,0.249960,0,0);-ms-transform:matrix(0.265717,0.004783,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.265717,0.004783,-0.004499,0.249960,0,0);}
.m129_c01093{transform:matrix(0.267412,0.004813,-0.004499,0.249960,0,0);-ms-transform:matrix(0.267412,0.004813,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.267412,0.004813,-0.004499,0.249960,0,0);}
.m3a_c01093{transform:matrix(0.267610,0.001606,-0.001500,0.249996,0,0);-ms-transform:matrix(0.267610,0.001606,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.267610,0.001606,-0.001500,0.249996,0,0);}
.m123_c01093{transform:matrix(0.268477,0.004833,-0.004499,0.249960,0,0);-ms-transform:matrix(0.268477,0.004833,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.268477,0.004833,-0.004499,0.249960,0,0);}
.med_c01093{transform:matrix(0.268822,-0.001344,0.001250,0.249997,0,0);-ms-transform:matrix(0.268822,-0.001344,0.001250,0.249997,0,0);-webkit-transform:matrix(0.268822,-0.001344,0.001250,0.249997,0,0);}
.m8d_c01093{transform:matrix(0.269470,0.001617,-0.001500,0.249996,0,0);-ms-transform:matrix(0.269470,0.001617,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.269470,0.001617,-0.001500,0.249996,0,0);}
.m7c_c01093{transform:matrix(0.271475,0.001629,-0.001500,0.249996,0,0);-ms-transform:matrix(0.271475,0.001629,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.271475,0.001629,-0.001500,0.249996,0,0);}
.me7_c01093{transform:matrix(0.272057,-0.001360,0.001250,0.249997,0,0);-ms-transform:matrix(0.272057,-0.001360,0.001250,0.249997,0,0);-webkit-transform:matrix(0.272057,-0.001360,0.001250,0.249997,0,0);}
.m11f_c01093{transform:matrix(0.272086,0.004898,-0.004499,0.249960,0,0);-ms-transform:matrix(0.272086,0.004898,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.272086,0.004898,-0.004499,0.249960,0,0);}
.m143_c01093{transform:matrix(0.273309,0.006013,-0.005499,0.249940,0,0);-ms-transform:matrix(0.273309,0.006013,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.273309,0.006013,-0.005499,0.249940,0,0);}
.m86_c01093{transform:matrix(0.274315,0.001646,-0.001500,0.249996,0,0);-ms-transform:matrix(0.274315,0.001646,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.274315,0.001646,-0.001500,0.249996,0,0);}
.m6b_c01093{transform:matrix(0.274415,0.001646,-0.001500,0.249996,0,0);-ms-transform:matrix(0.274415,0.001646,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.274415,0.001646,-0.001500,0.249996,0,0);}
.mb3_c01093{transform:matrix(0.275925,0.001656,-0.001500,0.249996,0,0);-ms-transform:matrix(0.275925,0.001656,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.275925,0.001656,-0.001500,0.249996,0,0);}
.m9e_c01093{transform:matrix(0.276580,0.001659,-0.001500,0.249996,0,0);-ms-transform:matrix(0.276580,0.001659,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.276580,0.001659,-0.001500,0.249996,0,0);}
.m69_c01093{transform:matrix(0.276810,0.001661,-0.001500,0.249996,0,0);-ms-transform:matrix(0.276810,0.001661,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.276810,0.001661,-0.001500,0.249996,0,0);}
.m7b_c01093{transform:matrix(0.278070,0.001668,-0.001500,0.249996,0,0);-ms-transform:matrix(0.278070,0.001668,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.278070,0.001668,-0.001500,0.249996,0,0);}
.m77_c01093{transform:matrix(0.278220,0.001669,-0.001500,0.249996,0,0);-ms-transform:matrix(0.278220,0.001669,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.278220,0.001669,-0.001500,0.249996,0,0);}
.m83_c01093{transform:matrix(0.278465,0.001671,-0.001500,0.249996,0,0);-ms-transform:matrix(0.278465,0.001671,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.278465,0.001671,-0.001500,0.249996,0,0);}
.m6f_c01093{transform:matrix(0.278960,0.001674,-0.001500,0.249996,0,0);-ms-transform:matrix(0.278960,0.001674,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.278960,0.001674,-0.001500,0.249996,0,0);}
.mf1_c01093{transform:matrix(0.278967,-0.001395,0.001250,0.249997,0,0);-ms-transform:matrix(0.278967,-0.001395,0.001250,0.249997,0,0);-webkit-transform:matrix(0.278967,-0.001395,0.001250,0.249997,0,0);}
.m67_c01093{transform:matrix(0.279210,0.001675,-0.001500,0.249996,0,0);-ms-transform:matrix(0.279210,0.001675,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.279210,0.001675,-0.001500,0.249996,0,0);}
.mdd_c01093{transform:matrix(0.279905,0.001679,-0.001500,0.249996,0,0);-ms-transform:matrix(0.279905,0.001679,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.279905,0.001679,-0.001500,0.249996,0,0);}
.m53_c01093{transform:matrix(0.279910,0.001679,-0.001500,0.249996,0,0);-ms-transform:matrix(0.279910,0.001679,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.279910,0.001679,-0.001500,0.249996,0,0);}
.m11d_c01093{transform:matrix(0.281159,0.005061,-0.004499,0.249960,0,0);-ms-transform:matrix(0.281159,0.005061,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.281159,0.005061,-0.004499,0.249960,0,0);}
.m75_c01093{transform:matrix(0.281575,0.001689,-0.001500,0.249996,0,0);-ms-transform:matrix(0.281575,0.001689,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.281575,0.001689,-0.001500,0.249996,0,0);}
.mf5_c01093{transform:matrix(0.281874,0.005074,-0.004499,0.249960,0,0);-ms-transform:matrix(0.281874,0.005074,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.281874,0.005074,-0.004499,0.249960,0,0);}
.m7f_c01093{transform:matrix(0.282880,0.001697,-0.001500,0.249996,0,0);-ms-transform:matrix(0.282880,0.001697,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.282880,0.001697,-0.001500,0.249996,0,0);}
.m158_c01093{transform:matrix(0.283588,-0.004254,0.003750,0.249972,0,0);-ms-transform:matrix(0.283588,-0.004254,0.003750,0.249972,0,0);-webkit-transform:matrix(0.283588,-0.004254,0.003750,0.249972,0,0);}
.m40_c01093{transform:matrix(0.283770,0.001703,-0.001500,0.249996,0,0);-ms-transform:matrix(0.283770,0.001703,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.283770,0.001703,-0.001500,0.249996,0,0);}
.mf2_c01093{transform:matrix(0.286381,-0.001432,0.001250,0.249997,0,0);-ms-transform:matrix(0.286381,-0.001432,0.001250,0.249997,0,0);-webkit-transform:matrix(0.286381,-0.001432,0.001250,0.249997,0,0);}
.mc3_c01093{transform:matrix(0.286870,0.001721,-0.001500,0.249996,0,0);-ms-transform:matrix(0.286870,0.001721,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.286870,0.001721,-0.001500,0.249996,0,0);}
.mbc_c01093{transform:matrix(0.288825,0.001733,-0.001500,0.249996,0,0);-ms-transform:matrix(0.288825,0.001733,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.288825,0.001733,-0.001500,0.249996,0,0);}
.m3f_c01093{transform:matrix(0.290240,0.001741,-0.001500,0.249996,0,0);-ms-transform:matrix(0.290240,0.001741,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.290240,0.001741,-0.001500,0.249996,0,0);}
.m134_c01093{transform:matrix(0.290448,0.005228,-0.004499,0.249960,0,0);-ms-transform:matrix(0.290448,0.005228,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.290448,0.005228,-0.004499,0.249960,0,0);}
.m137_c01093{transform:matrix(0.290623,0.005231,-0.004499,0.249960,0,0);-ms-transform:matrix(0.290623,0.005231,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.290623,0.005231,-0.004499,0.249960,0,0);}
.m136_c01093{transform:matrix(0.291448,0.005246,-0.004499,0.249960,0,0);-ms-transform:matrix(0.291448,0.005246,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.291448,0.005246,-0.004499,0.249960,0,0);}
.m36_c01093{transform:matrix(0.292315,0.001754,-0.001500,0.249996,0,0);-ms-transform:matrix(0.292315,0.001754,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.292315,0.001754,-0.001500,0.249996,0,0);}
.mad_c01093{transform:matrix(0.294240,0.001765,-0.001500,0.249996,0,0);-ms-transform:matrix(0.294240,0.001765,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.294240,0.001765,-0.001500,0.249996,0,0);}
.me0_c01093{transform:matrix(0.295700,0.001774,-0.001500,0.249996,0,0);-ms-transform:matrix(0.295700,0.001774,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.295700,0.001774,-0.001500,0.249996,0,0);}
.m8a_c01093{transform:matrix(0.297210,0.001783,-0.001500,0.249996,0,0);-ms-transform:matrix(0.297210,0.001783,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.297210,0.001783,-0.001500,0.249996,0,0);}
.m103_c01093{transform:matrix(0.297497,0.005355,-0.004499,0.249960,0,0);-ms-transform:matrix(0.297497,0.005355,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.297497,0.005355,-0.004499,0.249960,0,0);}
.m2_c01093{transform:matrix(0.297640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297640,0.000000,0.000000,0.250000,0,0);}
.me9_c01093{transform:matrix(0.298271,-0.001491,0.001250,0.249997,0,0);-ms-transform:matrix(0.298271,-0.001491,0.001250,0.249997,0,0);-webkit-transform:matrix(0.298271,-0.001491,0.001250,0.249997,0,0);}
.m70_c01093{transform:matrix(0.298525,0.001791,-0.001500,0.249996,0,0);-ms-transform:matrix(0.298525,0.001791,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.298525,0.001791,-0.001500,0.249996,0,0);}
.m7e_c01093{transform:matrix(0.298685,0.001792,-0.001500,0.249996,0,0);-ms-transform:matrix(0.298685,0.001792,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.298685,0.001792,-0.001500,0.249996,0,0);}
.mec_c01093{transform:matrix(0.299931,-0.001500,0.001250,0.249997,0,0);-ms-transform:matrix(0.299931,-0.001500,0.001250,0.249997,0,0);-webkit-transform:matrix(0.299931,-0.001500,0.001250,0.249997,0,0);}
.m104_c01093{transform:matrix(0.301511,0.005427,-0.004499,0.249960,0,0);-ms-transform:matrix(0.301511,0.005427,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.301511,0.005427,-0.004499,0.249960,0,0);}
.m64_c01093{transform:matrix(0.302320,0.001814,-0.001500,0.249996,0,0);-ms-transform:matrix(0.302320,0.001814,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.302320,0.001814,-0.001500,0.249996,0,0);}
.m110_c01093{transform:matrix(0.302451,0.005444,-0.004499,0.249960,0,0);-ms-transform:matrix(0.302451,0.005444,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.302451,0.005444,-0.004499,0.249960,0,0);}
.m65_c01093{transform:matrix(0.302590,0.001816,-0.001500,0.249996,0,0);-ms-transform:matrix(0.302590,0.001816,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.302590,0.001816,-0.001500,0.249996,0,0);}
.md9_c01093{transform:matrix(0.304245,0.001825,-0.001500,0.249996,0,0);-ms-transform:matrix(0.304245,0.001825,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.304245,0.001825,-0.001500,0.249996,0,0);}
.mda_c01093{transform:matrix(0.306299,0.001838,-0.001500,0.249996,0,0);-ms-transform:matrix(0.306299,0.001838,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.306299,0.001838,-0.001500,0.249996,0,0);}
.m76_c01093{transform:matrix(0.306494,0.001839,-0.001500,0.249996,0,0);-ms-transform:matrix(0.306494,0.001839,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.306494,0.001839,-0.001500,0.249996,0,0);}
.m145_c01093{transform:matrix(0.307225,-0.004608,0.003750,0.249972,0,0);-ms-transform:matrix(0.307225,-0.004608,0.003750,0.249972,0,0);-webkit-transform:matrix(0.307225,-0.004608,0.003750,0.249972,0,0);}
.mde_c01093{transform:matrix(0.308774,0.001853,-0.001500,0.249996,0,0);-ms-transform:matrix(0.308774,0.001853,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.308774,0.001853,-0.001500,0.249996,0,0);}
.m14c_c01093{transform:matrix(0.309680,-0.004645,0.003750,0.249972,0,0);-ms-transform:matrix(0.309680,-0.004645,0.003750,0.249972,0,0);-webkit-transform:matrix(0.309680,-0.004645,0.003750,0.249972,0,0);}
.m5d_c01093{transform:matrix(0.311484,0.001869,-0.001500,0.249996,0,0);-ms-transform:matrix(0.311484,0.001869,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.311484,0.001869,-0.001500,0.249996,0,0);}
.mea_c01093{transform:matrix(0.312126,-0.001561,0.001250,0.249997,0,0);-ms-transform:matrix(0.312126,-0.001561,0.001250,0.249997,0,0);-webkit-transform:matrix(0.312126,-0.001561,0.001250,0.249997,0,0);}
.m78_c01093{transform:matrix(0.312859,0.001877,-0.001500,0.249996,0,0);-ms-transform:matrix(0.312859,0.001877,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.312859,0.001877,-0.001500,0.249996,0,0);}
.me_c01093{transform:matrix(0.315174,0.001891,-0.001500,0.249996,0,0);-ms-transform:matrix(0.315174,0.001891,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.315174,0.001891,-0.001500,0.249996,0,0);}
.me1_c01093{transform:matrix(0.315954,0.001896,-0.001500,0.249996,0,0);-ms-transform:matrix(0.315954,0.001896,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.315954,0.001896,-0.001500,0.249996,0,0);}
.m3e_c01093{transform:matrix(0.316419,0.001899,-0.001500,0.249996,0,0);-ms-transform:matrix(0.316419,0.001899,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.316419,0.001899,-0.001500,0.249996,0,0);}
.m5f_c01093{transform:matrix(0.317299,0.001904,-0.001500,0.249996,0,0);-ms-transform:matrix(0.317299,0.001904,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.317299,0.001904,-0.001500,0.249996,0,0);}
.m111_c01093{transform:matrix(0.318343,0.005730,-0.004499,0.249960,0,0);-ms-transform:matrix(0.318343,0.005730,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.318343,0.005730,-0.004499,0.249960,0,0);}
.m4f_c01093{transform:matrix(0.322144,0.001933,-0.001500,0.249996,0,0);-ms-transform:matrix(0.322144,0.001933,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.322144,0.001933,-0.001500,0.249996,0,0);}
.mb8_c01093{transform:matrix(0.322339,0.001934,-0.001500,0.249996,0,0);-ms-transform:matrix(0.322339,0.001934,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.322339,0.001934,-0.001500,0.249996,0,0);}
.mac_c01093{transform:matrix(0.326214,0.001957,-0.001500,0.249996,0,0);-ms-transform:matrix(0.326214,0.001957,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.326214,0.001957,-0.001500,0.249996,0,0);}
.me8_c01093{transform:matrix(0.328491,-0.001642,0.001250,0.249997,0,0);-ms-transform:matrix(0.328491,-0.001642,0.001250,0.249997,0,0);-webkit-transform:matrix(0.328491,-0.001642,0.001250,0.249997,0,0);}
.m3b_c01093{transform:matrix(0.332804,0.001997,-0.001500,0.249996,0,0);-ms-transform:matrix(0.332804,0.001997,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.332804,0.001997,-0.001500,0.249996,0,0);}
.m72_c01093{transform:matrix(0.335414,0.002012,-0.001500,0.249996,0,0);-ms-transform:matrix(0.335414,0.002012,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.335414,0.002012,-0.001500,0.249996,0,0);}
.m14a_c01093{transform:matrix(0.335562,-0.005033,0.003750,0.249972,0,0);-ms-transform:matrix(0.335562,-0.005033,0.003750,0.249972,0,0);-webkit-transform:matrix(0.335562,-0.005033,0.003750,0.249972,0,0);}
.m94_c01093{transform:matrix(0.335834,0.002015,-0.001500,0.249996,0,0);-ms-transform:matrix(0.335834,0.002015,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.335834,0.002015,-0.001500,0.249996,0,0);}
.m157_c01093{transform:matrix(0.339492,-0.005092,0.003750,0.249972,0,0);-ms-transform:matrix(0.339492,-0.005092,0.003750,0.249972,0,0);-webkit-transform:matrix(0.339492,-0.005092,0.003750,0.249972,0,0);}
.m3d_c01093{transform:matrix(0.340529,0.002043,-0.001500,0.249996,0,0);-ms-transform:matrix(0.340529,0.002043,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.340529,0.002043,-0.001500,0.249996,0,0);}
.m7d_c01093{transform:matrix(0.340569,0.002043,-0.001500,0.249996,0,0);-ms-transform:matrix(0.340569,0.002043,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.340569,0.002043,-0.001500,0.249996,0,0);}
.m128_c01093{transform:matrix(0.343044,0.006175,-0.004499,0.249960,0,0);-ms-transform:matrix(0.343044,0.006175,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.343044,0.006175,-0.004499,0.249960,0,0);}
.m150_c01093{transform:matrix(0.345626,-0.005184,0.003750,0.249972,0,0);-ms-transform:matrix(0.345626,-0.005184,0.003750,0.249972,0,0);-webkit-transform:matrix(0.345626,-0.005184,0.003750,0.249972,0,0);}
.me6_c01093{transform:matrix(0.352926,-0.001765,0.001250,0.249997,0,0);-ms-transform:matrix(0.352926,-0.001765,0.001250,0.249997,0,0);-webkit-transform:matrix(0.352926,-0.001765,0.001250,0.249997,0,0);}
.mbd_c01093{transform:matrix(0.356259,0.002138,-0.001500,0.249996,0,0);-ms-transform:matrix(0.356259,0.002138,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.356259,0.002138,-0.001500,0.249996,0,0);}
.mab_c01093{transform:matrix(0.356924,0.002142,-0.001500,0.249996,0,0);-ms-transform:matrix(0.356924,0.002142,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.356924,0.002142,-0.001500,0.249996,0,0);}
.m11c_c01093{transform:matrix(0.360672,0.006492,-0.004499,0.249960,0,0);-ms-transform:matrix(0.360672,0.006492,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.360672,0.006492,-0.004499,0.249960,0,0);}
.mb2_c01093{transform:matrix(0.361343,0.002168,-0.001500,0.249996,0,0);-ms-transform:matrix(0.361343,0.002168,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.361343,0.002168,-0.001500,0.249996,0,0);}
.m41_c01093{transform:matrix(0.362523,0.002175,-0.001500,0.249996,0,0);-ms-transform:matrix(0.362523,0.002175,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.362523,0.002175,-0.001500,0.249996,0,0);}
.mb9_c01093{transform:matrix(0.362648,0.002176,-0.001500,0.249996,0,0);-ms-transform:matrix(0.362648,0.002176,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.362648,0.002176,-0.001500,0.249996,0,0);}
.mb6_c01093{transform:matrix(0.364363,0.002186,-0.001500,0.249996,0,0);-ms-transform:matrix(0.364363,0.002186,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.364363,0.002186,-0.001500,0.249996,0,0);}
.m56_c01093{transform:matrix(0.365288,0.002192,-0.001500,0.249996,0,0);-ms-transform:matrix(0.365288,0.002192,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.365288,0.002192,-0.001500,0.249996,0,0);}
.m109_c01093{transform:matrix(0.365446,0.006578,-0.004499,0.249960,0,0);-ms-transform:matrix(0.365446,0.006578,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.365446,0.006578,-0.004499,0.249960,0,0);}
.md7_c01093{transform:matrix(0.365513,0.002193,-0.001500,0.249996,0,0);-ms-transform:matrix(0.365513,0.002193,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.365513,0.002193,-0.001500,0.249996,0,0);}
.m3c_c01093{transform:matrix(0.366028,0.002196,-0.001500,0.249996,0,0);-ms-transform:matrix(0.366028,0.002196,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.366028,0.002196,-0.001500,0.249996,0,0);}
.m149_c01093{transform:matrix(0.366064,-0.005491,0.003750,0.249972,0,0);-ms-transform:matrix(0.366064,-0.005491,0.003750,0.249972,0,0);-webkit-transform:matrix(0.366064,-0.005491,0.003750,0.249972,0,0);}
.m6c_c01093{transform:matrix(0.366083,0.002197,-0.001500,0.249996,0,0);-ms-transform:matrix(0.366083,0.002197,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.366083,0.002197,-0.001500,0.249996,0,0);}
.m10d_c01093{transform:matrix(0.373445,0.006722,-0.004499,0.249960,0,0);-ms-transform:matrix(0.373445,0.006722,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.373445,0.006722,-0.004499,0.249960,0,0);}
.m106_c01093{transform:matrix(0.380198,0.006844,-0.004499,0.249960,0,0);-ms-transform:matrix(0.380198,0.006844,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.380198,0.006844,-0.004499,0.249960,0,0);}
.m52_c01093{transform:matrix(0.381833,0.002291,-0.001500,0.249996,0,0);-ms-transform:matrix(0.381833,0.002291,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.381833,0.002291,-0.001500,0.249996,0,0);}
.m4d_c01093{transform:matrix(0.382353,0.002294,-0.001500,0.249996,0,0);-ms-transform:matrix(0.382353,0.002294,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.382353,0.002294,-0.001500,0.249996,0,0);}
.m154_c01093{transform:matrix(0.382587,-0.005739,0.003750,0.249972,0,0);-ms-transform:matrix(0.382587,-0.005739,0.003750,0.249972,0,0);-webkit-transform:matrix(0.382587,-0.005739,0.003750,0.249972,0,0);}
.md8_c01093{transform:matrix(0.384623,0.002308,-0.001500,0.249996,0,0);-ms-transform:matrix(0.384623,0.002308,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.384623,0.002308,-0.001500,0.249996,0,0);}
.mbf_c01093{transform:matrix(0.387733,0.002326,-0.001500,0.249996,0,0);-ms-transform:matrix(0.387733,0.002326,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.387733,0.002326,-0.001500,0.249996,0,0);}
.mc5_c01093{transform:matrix(0.397708,0.002386,-0.001500,0.249996,0,0);-ms-transform:matrix(0.397708,0.002386,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.397708,0.002386,-0.001500,0.249996,0,0);}
.m116_c01093{transform:matrix(0.401240,0.007222,-0.004499,0.249960,0,0);-ms-transform:matrix(0.401240,0.007222,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.401240,0.007222,-0.004499,0.249960,0,0);}
.me5_c01093{transform:matrix(0.402600,-0.002013,0.001250,0.249997,0,0);-ms-transform:matrix(0.402600,-0.002013,0.001250,0.249997,0,0);-webkit-transform:matrix(0.402600,-0.002013,0.001250,0.249997,0,0);}
.m73_c01093{transform:matrix(0.404313,0.002426,-0.001500,0.249996,0,0);-ms-transform:matrix(0.404313,0.002426,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.404313,0.002426,-0.001500,0.249996,0,0);}
.m71_c01093{transform:matrix(0.405338,0.002432,-0.001500,0.249996,0,0);-ms-transform:matrix(0.405338,0.002432,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.405338,0.002432,-0.001500,0.249996,0,0);}
.m14f_c01093{transform:matrix(0.405364,-0.006080,0.003750,0.249972,0,0);-ms-transform:matrix(0.405364,-0.006080,0.003750,0.249972,0,0);-webkit-transform:matrix(0.405364,-0.006080,0.003750,0.249972,0,0);}
.m102_c01093{transform:matrix(0.409439,0.007370,-0.004499,0.249960,0,0);-ms-transform:matrix(0.409439,0.007370,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.409439,0.007370,-0.004499,0.249960,0,0);}
.m147_c01093{transform:matrix(0.412944,-0.006194,0.003750,0.249972,0,0);-ms-transform:matrix(0.412944,-0.006194,0.003750,0.249972,0,0);-webkit-transform:matrix(0.412944,-0.006194,0.003750,0.249972,0,0);}
.m13e_c01093{transform:matrix(0.415399,0.009139,-0.005499,0.249940,0,0);-ms-transform:matrix(0.415399,0.009139,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.415399,0.009139,-0.005499,0.249940,0,0);}
.m135_c01093{transform:matrix(0.437664,0.007878,-0.004499,0.249960,0,0);-ms-transform:matrix(0.437664,0.007878,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.437664,0.007878,-0.004499,0.249960,0,0);}
.m152_c01093{transform:matrix(0.438846,-0.006583,0.003750,0.249972,0,0);-ms-transform:matrix(0.438846,-0.006583,0.003750,0.249972,0,0);-webkit-transform:matrix(0.438846,-0.006583,0.003750,0.249972,0,0);}
.m148_c01093{transform:matrix(0.440080,-0.006601,0.003750,0.249972,0,0);-ms-transform:matrix(0.440080,-0.006601,0.003750,0.249972,0,0);-webkit-transform:matrix(0.440080,-0.006601,0.003750,0.249972,0,0);}
.m12_c01093{transform:matrix(0.445322,0.002672,-0.001500,0.249996,0,0);-ms-transform:matrix(0.445322,0.002672,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.445322,0.002672,-0.001500,0.249996,0,0);}
.m144_c01093{transform:matrix(0.452735,0.009960,-0.005499,0.249940,0,0);-ms-transform:matrix(0.452735,0.009960,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.452735,0.009960,-0.005499,0.249940,0,0);}
.m92_c01093{transform:matrix(0.469602,0.002818,-0.001500,0.249996,0,0);-ms-transform:matrix(0.469602,0.002818,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.469602,0.002818,-0.001500,0.249996,0,0);}
.m49_c01093{transform:matrix(0.471607,0.002830,-0.001500,0.249996,0,0);-ms-transform:matrix(0.471607,0.002830,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.471607,0.002830,-0.001500,0.249996,0,0);}
.m126_c01093{transform:matrix(0.488441,0.008792,-0.004499,0.249960,0,0);-ms-transform:matrix(0.488441,0.008792,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.488441,0.008792,-0.004499,0.249960,0,0);}
.m8e_c01093{transform:matrix(0.510891,0.003065,-0.001500,0.249996,0,0);-ms-transform:matrix(0.510891,0.003065,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.510891,0.003065,-0.001500,0.249996,0,0);}
.m60_c01093{transform:matrix(0.512921,0.003078,-0.001500,0.249996,0,0);-ms-transform:matrix(0.512921,0.003078,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.512921,0.003078,-0.001500,0.249996,0,0);}
.m14d_c01093{transform:matrix(0.525406,-0.007881,0.003750,0.249972,0,0);-ms-transform:matrix(0.525406,-0.007881,0.003750,0.249972,0,0);-webkit-transform:matrix(0.525406,-0.007881,0.003750,0.249972,0,0);}
.m35_c01093{transform:matrix(0.537095,0.003223,-0.001500,0.249996,0,0);-ms-transform:matrix(0.537095,0.003223,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.537095,0.003223,-0.001500,0.249996,0,0);}
.m34_c01093{transform:matrix(0.539830,0.003239,-0.001500,0.249996,0,0);-ms-transform:matrix(0.539830,0.003239,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.539830,0.003239,-0.001500,0.249996,0,0);}
.m9c_c01093{transform:matrix(0.545050,0.003270,-0.001500,0.249996,0,0);-ms-transform:matrix(0.545050,0.003270,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.545050,0.003270,-0.001500,0.249996,0,0);}
.m124_c01093{transform:matrix(0.564619,0.010163,-0.004499,0.249960,0,0);-ms-transform:matrix(0.564619,0.010163,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.564619,0.010163,-0.004499,0.249960,0,0);}
.m9d_c01093{transform:matrix(0.575140,0.003451,-0.001500,0.249996,0,0);-ms-transform:matrix(0.575140,0.003451,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.575140,0.003451,-0.001500,0.249996,0,0);}
.m55_c01093{transform:matrix(0.612984,0.003678,-0.001500,0.249996,0,0);-ms-transform:matrix(0.612984,0.003678,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.612984,0.003678,-0.001500,0.249996,0,0);}
.m14e_c01093{transform:matrix(0.616691,-0.009250,0.003750,0.249972,0,0);-ms-transform:matrix(0.616691,-0.009250,0.003750,0.249972,0,0);-webkit-transform:matrix(0.616691,-0.009250,0.003750,0.249972,0,0);}
.m115_c01093{transform:matrix(0.656814,0.011823,-0.004499,0.249960,0,0);-ms-transform:matrix(0.656814,0.011823,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.656814,0.011823,-0.004499,0.249960,0,0);}
.m11e_c01093{transform:matrix(0.673896,0.012130,-0.004499,0.249960,0,0);-ms-transform:matrix(0.673896,0.012130,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.673896,0.012130,-0.004499,0.249960,0,0);}
.m146_c01093{transform:matrix(0.955383,-0.014331,0.003750,0.249972,0,0);-ms-transform:matrix(0.955383,-0.014331,0.003750,0.249972,0,0);-webkit-transform:matrix(0.955383,-0.014331,0.003750,0.249972,0,0);}
.m142_c01093{transform:matrix(1.412298,0.031071,-0.005499,0.249940,0,0);-ms-transform:matrix(1.412298,0.031071,-0.005499,0.249940,0,0);-webkit-transform:matrix(1.412298,0.031071,-0.005499,0.249940,0,0);}
.m11b_c01093{transform:matrix(1.444301,0.025997,-0.004499,0.249960,0,0);-ms-transform:matrix(1.444301,0.025997,-0.004499,0.249960,0,0);-webkit-transform:matrix(1.444301,0.025997,-0.004499,0.249960,0,0);}
.v0_c01093{vertical-align:0.000000px;}
.v1_c01093{vertical-align:1.428026px;}
.ls0_c01093{letter-spacing:0.000000px;}
.sc__c01093{text-shadow:none;}
.sc0_c01093{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__c01093{-webkit-text-stroke:0px transparent;}
.sc0_c01093{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01093{word-spacing:0.000000px;}
._0_c01093{width:30.427552px;}
.fc0_c01093{color:transparent;}
.fs3_c01093{font-size:72.001296px;}
.fs4_c01093{font-size:78.001404px;}
.fs5_c01093{font-size:84.001512px;}
.fs9_c01093{font-size:90.001125px;}
.fs6_c01093{font-size:90.001620px;}
.fsf_c01093{font-size:90.010124px;}
.fs1_c01093{font-size:96.001728px;}
.fsb_c01093{font-size:96.015551px;}
.fse_c01093{font-size:96.023229px;}
.fs2_c01093{font-size:102.001836px;}
.fsc_c01093{font-size:102.016523px;}
.fsd_c01093{font-size:108.017495px;}
.fs0_c01093{font-size:114.000000px;}
.fs10_c01093{font-size:114.012824px;}
.fsa_c01093{font-size:114.018467px;}
.fs7_c01093{font-size:126.002268px;}
.fs8_c01093{font-size:144.002592px;}
.y0_c01093{bottom:0.000000px;}
.y14e_c01093{bottom:129.815948px;}
.y14f_c01093{bottom:129.816135px;}
.y153_c01093{bottom:129.816188px;}
.y154_c01093{bottom:129.816315px;}
.y150_c01093{bottom:129.816323px;}
.y152_c01093{bottom:129.816532px;}
.y151_c01093{bottom:129.816577px;}
.y156_c01093{bottom:129.816608px;}
.y157_c01093{bottom:129.816667px;}
.y155_c01093{bottom:129.816802px;}
.y144_c01093{bottom:155.791500px;}
.y145_c01093{bottom:156.032543px;}
.y146_c01093{bottom:157.160647px;}
.y147_c01093{bottom:157.909987px;}
.y148_c01093{bottom:158.237565px;}
.y149_c01093{bottom:158.647110px;}
.y14a_c01093{bottom:159.216765px;}
.y14b_c01093{bottom:160.405080px;}
.y14c_c01093{bottom:160.904693px;}
.y14d_c01093{bottom:161.477025px;}
.y143_c01093{bottom:269.895216px;}
.y142_c01093{bottom:270.672531px;}
.y140_c01093{bottom:276.371532px;}
.y141_c01093{bottom:276.512574px;}
.y13f_c01093{bottom:278.432613px;}
.y13e_c01093{bottom:279.446472px;}
.y13d_c01093{bottom:281.080500px;}
.y13c_c01093{bottom:304.760589px;}
.y13b_c01093{bottom:306.087741px;}
.y13a_c01093{bottom:306.950931px;}
.y139_c01093{bottom:309.245586px;}
.y138_c01093{bottom:310.008567px;}
.y137_c01093{bottom:312.768333px;}
.y136_c01093{bottom:313.441611px;}
.y135_c01093{bottom:315.223665px;}
.y134_c01093{bottom:317.226891px;}
.y133_c01093{bottom:339.198186px;}
.y132_c01093{bottom:339.988701px;}
.y131_c01093{bottom:340.989693px;}
.y130_c01093{bottom:341.420829px;}
.y12f_c01093{bottom:342.367956px;}
.y12e_c01093{bottom:343.128615px;}
.y12d_c01093{bottom:344.447922px;}
.y12c_c01093{bottom:344.987895px;}
.y12b_c01093{bottom:345.767310px;}
.y12a_c01093{bottom:347.515956px;}
.y129_c01093{bottom:348.990741px;}
.y128_c01093{bottom:349.883895px;}
.y127_c01093{bottom:352.032633px;}
.y126_c01093{bottom:353.222550px;}
.y125_c01093{bottom:355.054161px;}
.y124_c01093{bottom:374.577075px;}
.y123_c01093{bottom:376.516029px;}
.y122_c01093{bottom:377.143146px;}
.y121_c01093{bottom:379.169748px;}
.y120_c01093{bottom:380.839602px;}
.y11f_c01093{bottom:382.966287px;}
.y11e_c01093{bottom:383.690922px;}
.y11d_c01093{bottom:385.908522px;}
.y11c_c01093{bottom:387.528348px;}
.y11b_c01093{bottom:388.130484px;}
.y11a_c01093{bottom:390.322821px;}
.y119_c01093{bottom:401.789088px;}
.y118_c01093{bottom:402.776457px;}
.y117_c01093{bottom:404.381634px;}
.y116_c01093{bottom:405.031671px;}
.y115_c01093{bottom:405.685677px;}
.y114_c01093{bottom:407.171118px;}
.y113_c01093{bottom:408.123801px;}
.y112_c01093{bottom:409.527597px;}
.y111_c01093{bottom:410.377530px;}
.y110_c01093{bottom:411.215946px;}
.y10f_c01093{bottom:412.425813px;}
.y10e_c01093{bottom:413.158239px;}
.y10d_c01093{bottom:413.708280px;}
.y10c_c01093{bottom:415.797474px;}
.y10b_c01093{bottom:446.014122px;}
.y10a_c01093{bottom:447.818361px;}
.y109_c01093{bottom:448.302384px;}
.y108_c01093{bottom:448.722033px;}
.y107_c01093{bottom:449.146218px;}
.y106_c01093{bottom:450.419325px;}
.y105_c01093{bottom:450.826596px;}
.y104_c01093{bottom:451.564563px;}
.y103_c01093{bottom:452.349261px;}
.y102_c01093{bottom:453.411579px;}
.y101_c01093{bottom:453.790827px;}
.y100_c01093{bottom:455.052258px;}
.yff_c01093{bottom:456.079560px;}
.yfe_c01093{bottom:456.566241px;}
.yfd_c01093{bottom:481.654536px;}
.yfc_c01093{bottom:482.629317px;}
.yfb_c01093{bottom:483.203580px;}
.yfa_c01093{bottom:484.798200px;}
.yf9_c01093{bottom:485.376972px;}
.yf8_c01093{bottom:486.470823px;}
.yf7_c01093{bottom:488.365224px;}
.yf6_c01093{bottom:490.231761px;}
.yf5_c01093{bottom:491.125596px;}
.yf4_c01093{bottom:491.805348px;}
.yf3_c01093{bottom:492.909000px;}
.ye3_c01093{bottom:517.590000px;}
.ye4_c01093{bottom:517.778182px;}
.ye5_c01093{bottom:518.077935px;}
.ye6_c01093{bottom:518.266957px;}
.ye7_c01093{bottom:518.499120px;}
.ye8_c01093{bottom:518.658428px;}
.ye9_c01093{bottom:518.943307px;}
.yea_c01093{bottom:519.102577px;}
.yeb_c01093{bottom:519.511545px;}
.yec_c01093{bottom:519.691110px;}
.yed_c01093{bottom:519.986580px;}
.yee_c01093{bottom:520.147523px;}
.yef_c01093{bottom:520.475445px;}
.yf0_c01093{bottom:520.638757px;}
.yf1_c01093{bottom:520.877700px;}
.yf2_c01093{bottom:520.979040px;}
.ye2_c01093{bottom:551.680557px;}
.ye1_c01093{bottom:552.100656px;}
.ye0_c01093{bottom:552.296550px;}
.ydf_c01093{bottom:552.605415px;}
.yde_c01093{bottom:552.716658px;}
.ydd_c01093{bottom:552.957948px;}
.ydc_c01093{bottom:553.192614px;}
.ydb_c01093{bottom:553.469445px;}
.yda_c01093{bottom:553.847427px;}
.yd9_c01093{bottom:553.962039px;}
.yd8_c01093{bottom:554.267859px;}
.yd7_c01093{bottom:554.402337px;}
.yd6_c01093{bottom:554.510706px;}
.yd5_c01093{bottom:554.566374px;}
.yc7_c01093{bottom:585.187833px;}
.yc5_c01093{bottom:585.187884px;}
.yc8_c01093{bottom:585.187902px;}
.yc9_c01093{bottom:585.188142px;}
.yd3_c01093{bottom:585.188307px;}
.yc6_c01093{bottom:585.188433px;}
.yca_c01093{bottom:585.188571px;}
.yd2_c01093{bottom:585.188727px;}
.ycc_c01093{bottom:585.188760px;}
.yd4_c01093{bottom:585.188856px;}
.ycd_c01093{bottom:585.189000px;}
.ycb_c01093{bottom:585.189231px;}
.yce_c01093{bottom:585.189369px;}
.yd1_c01093{bottom:585.189387px;}
.ycf_c01093{bottom:585.189438px;}
.yd0_c01093{bottom:585.189498px;}
.yc4_c01093{bottom:623.471838px;}
.yc3_c01093{bottom:623.590056px;}
.yc2_c01093{bottom:623.937621px;}
.yc1_c01093{bottom:624.148269px;}
.yc0_c01093{bottom:624.299754px;}
.ybf_c01093{bottom:624.545283px;}
.ybe_c01093{bottom:624.839367px;}
.ybd_c01093{bottom:625.096653px;}
.ybc_c01093{bottom:625.287501px;}
.ybb_c01093{bottom:625.704234px;}
.yba_c01093{bottom:626.026878px;}
.yb9_c01093{bottom:626.328264px;}
.yb8_c01093{bottom:626.486304px;}
.yb7_c01093{bottom:626.578365px;}
.yb6_c01093{bottom:626.723196px;}
.yb5_c01093{bottom:626.853189px;}
.ya9_c01093{bottom:658.551081px;}
.yac_c01093{bottom:658.551108px;}
.yaa_c01093{bottom:658.551150px;}
.yaf_c01093{bottom:658.551417px;}
.yab_c01093{bottom:658.551519px;}
.yb0_c01093{bottom:658.551726px;}
.yad_c01093{bottom:658.551768px;}
.yb1_c01093{bottom:658.551975px;}
.yae_c01093{bottom:658.552077px;}
.yb2_c01093{bottom:658.552584px;}
.yb4_c01093{bottom:658.553022px;}
.yb3_c01093{bottom:658.553133px;}
.ya8_c01093{bottom:692.116155px;}
.ya7_c01093{bottom:692.354460px;}
.ya6_c01093{bottom:693.137748px;}
.ya5_c01093{bottom:693.764184px;}
.ya4_c01093{bottom:694.281465px;}
.ya3_c01093{bottom:694.494102px;}
.ya2_c01093{bottom:695.196099px;}
.ya1_c01093{bottom:695.530731px;}
.ya0_c01093{bottom:695.736933px;}
.y9f_c01093{bottom:696.068649px;}
.y9e_c01093{bottom:696.478815px;}
.y9d_c01093{bottom:696.862995px;}
.y9c_c01093{bottom:728.059536px;}
.y9b_c01093{bottom:728.249463px;}
.y9a_c01093{bottom:728.481750px;}
.y99_c01093{bottom:729.101601px;}
.y98_c01093{bottom:729.342030px;}
.y97_c01093{bottom:729.770073px;}
.y96_c01093{bottom:730.103139px;}
.y95_c01093{bottom:730.342929px;}
.y94_c01093{bottom:730.591653px;}
.y93_c01093{bottom:730.794735px;}
.y92_c01093{bottom:731.201616px;}
.y91_c01093{bottom:731.404842px;}
.y90_c01093{bottom:731.800485px;}
.y8f_c01093{bottom:732.534405px;}
.y8e_c01093{bottom:764.895072px;}
.y8d_c01093{bottom:765.511347px;}
.y8c_c01093{bottom:765.793209px;}
.y8b_c01093{bottom:765.968340px;}
.y8a_c01093{bottom:766.336377px;}
.y89_c01093{bottom:766.507827px;}
.y88_c01093{bottom:767.050797px;}
.y87_c01093{bottom:767.363241px;}
.y86_c01093{bottom:767.983926px;}
.y85_c01093{bottom:768.158580px;}
.y84_c01093{bottom:768.488907px;}
.y83_c01093{bottom:768.955890px;}
.y7f_c01093{bottom:801.365892px;}
.y79_c01093{bottom:801.365958px;}
.y7a_c01093{bottom:801.366216px;}
.y7e_c01093{bottom:801.366372px;}
.y7d_c01093{bottom:801.366423px;}
.y80_c01093{bottom:801.366441px;}
.y7b_c01093{bottom:801.366465px;}
.y82_c01093{bottom:801.366630px;}
.y81_c01093{bottom:801.366750px;}
.y7c_c01093{bottom:801.367074px;}
.y78_c01093{bottom:835.054323px;}
.y77_c01093{bottom:835.253754px;}
.y76_c01093{bottom:835.528590px;}
.y75_c01093{bottom:835.894155px;}
.y74_c01093{bottom:836.235057px;}
.y73_c01093{bottom:836.493606px;}
.y72_c01093{bottom:836.849364px;}
.y71_c01093{bottom:837.071367px;}
.y70_c01093{bottom:837.351441px;}
.y6f_c01093{bottom:837.730170px;}
.y6e_c01093{bottom:837.952152px;}
.y6d_c01093{bottom:838.214157px;}
.y6c_c01093{bottom:838.345590px;}
.y6b_c01093{bottom:869.150337px;}
.y6a_c01093{bottom:869.394978px;}
.y69_c01093{bottom:869.762067px;}
.y68_c01093{bottom:870.023916px;}
.y67_c01093{bottom:870.451608px;}
.y66_c01093{bottom:871.256877px;}
.y65_c01093{bottom:871.521849px;}
.y64_c01093{bottom:872.044794px;}
.y63_c01093{bottom:872.578020px;}
.y62_c01093{bottom:873.095820px;}
.y61_c01093{bottom:873.365775px;}
.y60_c01093{bottom:873.679134px;}
.y5f_c01093{bottom:874.255404px;}
.y5e_c01093{bottom:901.529772px;}
.y5d_c01093{bottom:902.294925px;}
.y5c_c01093{bottom:903.107775px;}
.y5b_c01093{bottom:903.371535px;}
.y5a_c01093{bottom:903.557901px;}
.y59_c01093{bottom:904.208301px;}
.y58_c01093{bottom:904.627812px;}
.y57_c01093{bottom:905.314977px;}
.y56_c01093{bottom:905.779443px;}
.y55_c01093{bottom:907.024122px;}
.y54_c01093{bottom:907.375662px;}
.y53_c01093{bottom:908.263695px;}
.y52_c01093{bottom:908.767164px;}
.y51_c01093{bottom:909.628233px;}
.y50_c01093{bottom:940.699371px;}
.y4f_c01093{bottom:940.885386px;}
.y4e_c01093{bottom:941.044821px;}
.y4d_c01093{bottom:941.333097px;}
.y4c_c01093{bottom:941.434836px;}
.y4b_c01093{bottom:941.616168px;}
.y4a_c01093{bottom:941.754300px;}
.y49_c01093{bottom:942.205614px;}
.y48_c01093{bottom:942.569484px;}
.y47_c01093{bottom:942.697488px;}
.y46_c01093{bottom:942.974385px;}
.y45_c01093{bottom:943.140474px;}
.y44_c01093{bottom:943.698561px;}
.y43_c01093{bottom:943.922418px;}
.y42_c01093{bottom:944.190798px;}
.y35_c01093{bottom:979.556982px;}
.y34_c01093{bottom:979.557093px;}
.y37_c01093{bottom:979.557180px;}
.y38_c01093{bottom:979.557540px;}
.y36_c01093{bottom:979.557591px;}
.y39_c01093{bottom:979.557780px;}
.y3a_c01093{bottom:979.558260px;}
.y3c_c01093{bottom:979.558749px;}
.y3b_c01093{bottom:979.558989px;}
.y3d_c01093{bottom:979.559229px;}
.y3e_c01093{bottom:979.560387px;}
.y41_c01093{bottom:979.560405px;}
.y40_c01093{bottom:979.560456px;}
.y3f_c01093{bottom:979.561056px;}
.y33_c01093{bottom:1006.783776px;}
.y32_c01093{bottom:1007.338086px;}
.y31_c01093{bottom:1007.678850px;}
.y30_c01093{bottom:1008.249933px;}
.y2f_c01093{bottom:1009.203135px;}
.y2e_c01093{bottom:1009.670580px;}
.y2d_c01093{bottom:1010.110350px;}
.y2c_c01093{bottom:1011.006999px;}
.y2b_c01093{bottom:1011.304890px;}
.y2a_c01093{bottom:1011.592104px;}
.y29_c01093{bottom:1011.890220px;}
.y28_c01093{bottom:1012.789566px;}
.y27_c01093{bottom:1041.847845px;}
.y26_c01093{bottom:1042.994871px;}
.y25_c01093{bottom:1043.523600px;}
.y24_c01093{bottom:1043.966934px;}
.y23_c01093{bottom:1044.214599px;}
.y22_c01093{bottom:1044.489357px;}
.y21_c01093{bottom:1045.191573px;}
.y20_c01093{bottom:1045.988664px;}
.y1f_c01093{bottom:1046.331564px;}
.y1e_c01093{bottom:1046.601528px;}
.y1d_c01093{bottom:1047.329355px;}
.y1c_c01093{bottom:1078.515744px;}
.y1b_c01093{bottom:1078.880100px;}
.y1a_c01093{bottom:1079.111544px;}
.y19_c01093{bottom:1079.301138px;}
.y18_c01093{bottom:1079.701350px;}
.y17_c01093{bottom:1080.161403px;}
.y16_c01093{bottom:1080.345984px;}
.y15_c01093{bottom:1080.556728px;}
.y14_c01093{bottom:1081.023621px;}
.y13_c01093{bottom:1081.211235px;}
.y12_c01093{bottom:1081.452624px;}
.y11_c01093{bottom:1081.872375px;}
.y10_c01093{bottom:1082.620563px;}
.yf_c01093{bottom:1082.699385px;}
.ye_c01093{bottom:1114.227153px;}
.yd_c01093{bottom:1114.709868px;}
.yc_c01093{bottom:1114.884657px;}
.yb_c01093{bottom:1115.087094px;}
.ya_c01093{bottom:1115.678646px;}
.y9_c01093{bottom:1115.874468px;}
.y8_c01093{bottom:1116.204984px;}
.y7_c01093{bottom:1116.602172px;}
.y6_c01093{bottom:1116.925902px;}
.y5_c01093{bottom:1117.536687px;}
.y4_c01093{bottom:1117.799199px;}
.y3_c01093{bottom:1118.063025px;}
.y2_c01093{bottom:1118.340000px;}
.y1_c01093{bottom:1189.342500px;}
.h5_c01093{height:72.001296px;}
.h6_c01093{height:73.429322px;}
.h7_c01093{height:78.001404px;}
.h8_c01093{height:84.001512px;}
.hc_c01093{height:90.001125px;}
.h9_c01093{height:90.001620px;}
.h12_c01093{height:90.010124px;}
.h3_c01093{height:96.001728px;}
.he_c01093{height:96.015551px;}
.h11_c01093{height:96.023229px;}
.h4_c01093{height:102.001836px;}
.hf_c01093{height:102.016523px;}
.h10_c01093{height:108.017495px;}
.h2_c01093{height:114.000000px;}
.h13_c01093{height:114.012824px;}
.hd_c01093{height:114.018467px;}
.ha_c01093{height:126.002268px;}
.hb_c01093{height:144.002592px;}
.h0_c01093{height:1246.320000px;}
.h1_c01093{height:1246.500000px;}
.w0_c01093{width:917.190000px;}
.w1_c01093{width:917.250000px;}
.x0_c01093{left:0.000000px;}
.x7a_c01093{left:1.628376px;}
.x8e_c01093{left:5.137839px;}
.x98_c01093{left:15.817167px;}
.x82_c01093{left:17.170755px;}
.x70_c01093{left:39.290595px;}
.x83_c01093{left:43.086408px;}
.x11_c01093{left:44.290710px;}
.x5e_c01093{left:45.490860px;}
.x34_c01093{left:47.724312px;}
.x55_c01093{left:54.007620px;}
.xa6_c01093{left:55.602000px;}
.x4_c01093{left:56.902500px;}
.x1f_c01093{left:59.008296px;}
.xc1_c01093{left:63.324048px;}
.x3d_c01093{left:68.945208px;}
.x84_c01093{left:71.975079px;}
.x67_c01093{left:73.270839px;}
.x8f_c01093{left:76.148895px;}
.xad_c01093{left:77.330580px;}
.x7b_c01093{left:79.119666px;}
.x85_c01093{left:90.318687px;}
.x4e_c01093{left:94.113645px;}
.x35_c01093{left:101.454636px;}
.x5_c01093{left:103.065000px;}
.xae_c01093{left:107.786187px;}
.xa7_c01093{left:116.916000px;}
.x86_c01093{left:121.908876px;}
.x5f_c01093{left:123.321360px;}
.x2a_c01093{left:125.825313px;}
.x7c_c01093{left:132.310083px;}
.x90_c01093{left:133.389456px;}
.x3e_c01093{left:140.704125px;}
.x6_c01093{left:147.036000px;}
.x1b_c01093{left:148.137369px;}
.x71_c01093{left:152.680911px;}
.xa8_c01093{left:154.680000px;}
.xb9_c01093{left:157.499853px;}
.x20_c01093{left:158.897496px;}
.xaf_c01093{left:172.027509px;}
.x91_c01093{left:173.350896px;}
.xd2_c01093{left:174.502500px;}
.x7d_c01093{left:177.130194px;}
.x60_c01093{left:178.375860px;}
.x47_c01093{left:179.974638px;}
.x12_c01093{left:182.125710px;}
.xba_c01093{left:183.722949px;}
.xc2_c01093{left:184.811613px;}
.x9e_c01093{left:187.783500px;}
.x7_c01093{left:190.788000px;}
.x21_c01093{left:192.082902px;}
.x72_c01093{left:199.966623px;}
.xc8_c01093{left:201.495801px;}
.xa9_c01093{left:204.337500px;}
.x7e_c01093{left:206.021238px;}
.x61_c01093{left:207.484860px;}
.x48_c01093{left:213.716733px;}
.xbb_c01093{left:218.578059px;}
.x9f_c01093{left:219.645000px;}
.x1c_c01093{left:224.780451px;}
.x73_c01093{left:229.333443px;}
.x68_c01093{left:234.530367px;}
.x56_c01093{left:235.721163px;}
.x87_c01093{left:246.664623px;}
.xd3_c01093{left:248.776500px;}
.xb0_c01093{left:250.859844px;}
.x13_c01093{left:252.084210px;}
.xc3_c01093{left:255.212268px;}
.x22_c01093{left:257.099232px;}
.x69_c01093{left:263.651196px;}
.x4f_c01093{left:266.650680px;}
.xb1_c01093{left:274.596708px;}
.x74_c01093{left:277.105155px;}
.x49_c01093{left:278.515959px;}
.x3f_c01093{left:285.955896px;}
.x57_c01093{left:289.181589px;}
.x2b_c01093{left:290.798253px;}
.x8_c01093{left:292.585500px;}
.xd4_c01093{left:294.861000px;}
.xa0_c01093{left:308.475000px;}
.x62_c01093{left:310.932360px;}
.xbc_c01093{left:316.116294px;}
.xd6_c01093{left:320.289000px;}
.x50_c01093{left:322.580013px;}
.x14_c01093{left:323.584710px;}
.xc9_c01093{left:328.226112px;}
.x88_c01093{left:330.120627px;}
.xd7_c01093{left:336.358500px;}
.xdd_c01093{left:338.579160px;}
.xb2_c01093{left:340.950084px;}
.x4a_c01093{left:345.136158px;}
.x9_c01093{left:346.540500px;}
.x7f_c01093{left:348.584868px;}
.x6a_c01093{left:350.811174px;}
.x23_c01093{left:356.788941px;}
.x58_c01093{left:362.082717px;}
.x51_c01093{left:367.080783px;}
.x89_c01093{left:368.178852px;}
.xce_c01093{left:369.443670px;}
.x36_c01093{left:371.945256px;}
.x92_c01093{left:374.505141px;}
.x75_c01093{left:377.354052px;}
.x2c_c01093{left:382.871574px;}
.x6b_c01093{left:386.264958px;}
.x93_c01093{left:387.465609px;}
.xd5_c01093{left:388.546500px;}
.x40_c01093{left:389.648661px;}
.x15_c01093{left:401.400210px;}
.x99_c01093{left:404.114829px;}
.x24_c01093{left:405.583059px;}
.x76_c01093{left:407.793372px;}
.x4b_c01093{left:410.542875px;}
.xd8_c01093{left:411.565500px;}
.xa_c01093{left:412.738500px;}
.x8a_c01093{left:419.560158px;}
.x59_c01093{left:420.943332px;}
.x1_c01093{left:424.170000px;}
.xa1_c01093{left:426.181500px;}
.x41_c01093{left:428.308266px;}
.x16_c01093{left:436.524210px;}
.x52_c01093{left:438.124206px;}
.x37_c01093{left:444.590688px;}
.x2_c01093{left:447.120000px;}
.x63_c01093{left:453.501360px;}
.x2d_c01093{left:455.502693px;}
.x25_c01093{left:457.489623px;}
.x80_c01093{left:459.287355px;}
.xb3_c01093{left:461.506404px;}
.xca_c01093{left:462.541113px;}
.x9a_c01093{left:464.580558px;}
.xb_c01093{left:467.824500px;}
.xde_c01093{left:471.434040px;}
.xaa_c01093{left:474.048000px;}
.xc4_c01093{left:475.632450px;}
.x1d_c01093{left:477.482418px;}
.x64_c01093{left:482.076360px;}
.xd9_c01093{left:483.360000px;}
.xcf_c01093{left:484.418250px;}
.x3_c01093{left:486.000000px;}
.x2e_c01093{left:489.793926px;}
.x9b_c01093{left:492.371391px;}
.xcb_c01093{left:495.005103px;}
.x94_c01093{left:497.896587px;}
.xc_c01093{left:500.461500px;}
.xab_c01093{left:506.202000px;}
.xda_c01093{left:510.663000px;}
.xd0_c01093{left:516.219321px;}
.xa2_c01093{left:517.464000px;}
.x5a_c01093{left:518.955360px;}
.x42_c01093{left:520.500945px;}
.x2f_c01093{left:522.465105px;}
.x8b_c01093{left:527.496306px;}
.x6c_c01093{left:529.080594px;}
.x1e_c01093{left:532.870752px;}
.x38_c01093{left:534.810228px;}
.xbd_c01093{left:539.512725px;}
.xb4_c01093{left:541.070766px;}
.x17_c01093{left:543.963210px;}
.x5b_c01093{left:547.036368px;}
.xc5_c01093{left:548.228916px;}
.x53_c01093{left:558.033426px;}
.x39_c01093{left:562.332390px;}
.x26_c01093{left:563.354715px;}
.xb5_c01093{left:567.554211px;}
.x9c_c01093{left:569.599818px;}
.x77_c01093{left:571.161891px;}
.x65_c01093{left:572.604360px;}
.x43_c01093{left:574.648992px;}
.xa3_c01093{left:583.048500px;}
.x95_c01093{left:589.158372px;}
.x44_c01093{left:590.209434px;}
.xb6_c01093{left:593.785656px;}
.xac_c01093{left:594.792000px;}
.x4c_c01093{left:597.946134px;}
.xd_c01093{left:599.053500px;}
.xbe_c01093{left:601.622877px;}
.xcc_c01093{left:604.128804px;}
.x18_c01093{left:610.665210px;}
.x45_c01093{left:612.168642px;}
.xa4_c01093{left:615.711000px;}
.x3a_c01093{left:618.761223px;}
.xb7_c01093{left:624.010236px;}
.x27_c01093{left:626.784072px;}
.xdb_c01093{left:627.861000px;}
.x30_c01093{left:631.276029px;}
.xe_c01093{left:632.793000px;}
.xc6_c01093{left:636.309978px;}
.xdf_c01093{left:640.203998px;}
.x19_c01093{left:642.264210px;}
.x5c_c01093{left:643.698351px;}
.xd1_c01093{left:647.807619px;}
.x6d_c01093{left:651.959856px;}
.x96_c01093{left:659.090883px;}
.xf_c01093{left:661.924500px;}
.xa5_c01093{left:663.499500px;}
.x28_c01093{left:664.577388px;}
.x8c_c01093{left:669.280152px;}
.x31_c01093{left:673.666059px;}
.x3b_c01093{left:676.307565px;}
.xbf_c01093{left:678.045246px;}
.x1a_c01093{left:680.838210px;}
.x78_c01093{left:682.959216px;}
.x6e_c01093{left:685.174158px;}
.x54_c01093{left:686.267700px;}
.x8d_c01093{left:692.983296px;}
.xdc_c01093{left:699.324000px;}
.xcd_c01093{left:703.215585px;}
.x4d_c01093{left:707.041320px;}
.x32_c01093{left:708.767319px;}
.x6f_c01093{left:712.328496px;}
.x79_c01093{left:716.926509px;}
.x66_c01093{left:722.293860px;}
.x9d_c01093{left:723.767172px;}
.xc0_c01093{left:725.063208px;}
.x29_c01093{left:726.211281px;}
.x97_c01093{left:735.502137px;}
.xb8_c01093{left:736.749786px;}
.x5d_c01093{left:741.170361px;}
.x10_c01093{left:742.377000px;}
.x46_c01093{left:743.664408px;}
.x3c_c01093{left:745.382979px;}
.xc7_c01093{left:747.859434px;}
.x33_c01093{left:752.777403px;}
.x81_c01093{left:777.082803px;}
@media print{
.v0_c01093{vertical-align:0.000000pt;}
.v1_c01093{vertical-align:1.269356pt;}
.ls0_c01093{letter-spacing:0.000000pt;}
.ws0_c01093{word-spacing:0.000000pt;}
._0_c01093{width:27.046713pt;}
.fs3_c01093{font-size:64.001152pt;}
.fs4_c01093{font-size:69.334581pt;}
.fs5_c01093{font-size:74.668011pt;}
.fs9_c01093{font-size:80.001000pt;}
.fs6_c01093{font-size:80.001440pt;}
.fsf_c01093{font-size:80.008999pt;}
.fs1_c01093{font-size:85.334869pt;}
.fsb_c01093{font-size:85.347156pt;}
.fse_c01093{font-size:85.353982pt;}
.fs2_c01093{font-size:90.668299pt;}
.fsc_c01093{font-size:90.681353pt;}
.fsd_c01093{font-size:96.015551pt;}
.fs0_c01093{font-size:101.333333pt;}
.fs10_c01093{font-size:101.344733pt;}
.fsa_c01093{font-size:101.349748pt;}
.fs7_c01093{font-size:112.002016pt;}
.fs8_c01093{font-size:128.002304pt;}
.y0_c01093{bottom:0.000000pt;}
.y14e_c01093{bottom:115.391953pt;}
.y14f_c01093{bottom:115.392120pt;}
.y153_c01093{bottom:115.392167pt;}
.y154_c01093{bottom:115.392280pt;}
.y150_c01093{bottom:115.392287pt;}
.y152_c01093{bottom:115.392473pt;}
.y151_c01093{bottom:115.392513pt;}
.y156_c01093{bottom:115.392540pt;}
.y157_c01093{bottom:115.392593pt;}
.y155_c01093{bottom:115.392713pt;}
.y144_c01093{bottom:138.481333pt;}
.y145_c01093{bottom:138.695593pt;}
.y146_c01093{bottom:139.698353pt;}
.y147_c01093{bottom:140.364433pt;}
.y148_c01093{bottom:140.655613pt;}
.y149_c01093{bottom:141.019653pt;}
.y14a_c01093{bottom:141.526013pt;}
.y14b_c01093{bottom:142.582293pt;}
.y14c_c01093{bottom:143.026393pt;}
.y14d_c01093{bottom:143.535133pt;}
.y143_c01093{bottom:239.906859pt;}
.y142_c01093{bottom:240.597805pt;}
.y140_c01093{bottom:245.663584pt;}
.y141_c01093{bottom:245.788955pt;}
.y13f_c01093{bottom:247.495656pt;}
.y13e_c01093{bottom:248.396864pt;}
.y13d_c01093{bottom:249.849333pt;}
.y13c_c01093{bottom:270.898301pt;}
.y13b_c01093{bottom:272.077992pt;}
.y13a_c01093{bottom:272.845272pt;}
.y139_c01093{bottom:274.884965pt;}
.y138_c01093{bottom:275.563171pt;}
.y137_c01093{bottom:278.016296pt;}
.y136_c01093{bottom:278.614765pt;}
.y135_c01093{bottom:280.198813pt;}
.y134_c01093{bottom:281.979459pt;}
.y133_c01093{bottom:301.509499pt;}
.y132_c01093{bottom:302.212179pt;}
.y131_c01093{bottom:303.101949pt;}
.y130_c01093{bottom:303.485181pt;}
.y12f_c01093{bottom:304.327072pt;}
.y12e_c01093{bottom:305.003213pt;}
.y12d_c01093{bottom:306.175931pt;}
.y12c_c01093{bottom:306.655907pt;}
.y12b_c01093{bottom:307.348720pt;}
.y12a_c01093{bottom:308.903072pt;}
.y129_c01093{bottom:310.213992pt;}
.y128_c01093{bottom:311.007907pt;}
.y127_c01093{bottom:312.917896pt;}
.y126_c01093{bottom:313.975600pt;}
.y125_c01093{bottom:315.603699pt;}
.y124_c01093{bottom:332.957400pt;}
.y123_c01093{bottom:334.680915pt;}
.y122_c01093{bottom:335.238352pt;}
.y121_c01093{bottom:337.039776pt;}
.y120_c01093{bottom:338.524091pt;}
.y11f_c01093{bottom:340.414477pt;}
.y11e_c01093{bottom:341.058597pt;}
.y11d_c01093{bottom:343.029797pt;}
.y11c_c01093{bottom:344.469643pt;}
.y11b_c01093{bottom:345.004875pt;}
.y11a_c01093{bottom:346.953619pt;}
.y119_c01093{bottom:357.145856pt;}
.y118_c01093{bottom:358.023517pt;}
.y117_c01093{bottom:359.450341pt;}
.y116_c01093{bottom:360.028152pt;}
.y115_c01093{bottom:360.609491pt;}
.y114_c01093{bottom:361.929883pt;}
.y113_c01093{bottom:362.776712pt;}
.y112_c01093{bottom:364.024531pt;}
.y111_c01093{bottom:364.780027pt;}
.y110_c01093{bottom:365.525285pt;}
.y10f_c01093{bottom:366.600723pt;}
.y10e_c01093{bottom:367.251768pt;}
.y10d_c01093{bottom:367.740693pt;}
.y10c_c01093{bottom:369.597755pt;}
.y10b_c01093{bottom:396.456997pt;}
.y10a_c01093{bottom:398.060765pt;}
.y109_c01093{bottom:398.491008pt;}
.y108_c01093{bottom:398.864029pt;}
.y107_c01093{bottom:399.241083pt;}
.y106_c01093{bottom:400.372733pt;}
.y105_c01093{bottom:400.734752pt;}
.y104_c01093{bottom:401.390723pt;}
.y103_c01093{bottom:402.088232pt;}
.y102_c01093{bottom:403.032515pt;}
.y101_c01093{bottom:403.369624pt;}
.y100_c01093{bottom:404.490896pt;}
.yff_c01093{bottom:405.404053pt;}
.yfe_c01093{bottom:405.836659pt;}
.yfd_c01093{bottom:428.137365pt;}
.yfc_c01093{bottom:429.003837pt;}
.yfb_c01093{bottom:429.514293pt;}
.yfa_c01093{bottom:430.931733pt;}
.yf9_c01093{bottom:431.446197pt;}
.yf8_c01093{bottom:432.418509pt;}
.yf7_c01093{bottom:434.102421pt;}
.yf6_c01093{bottom:435.761565pt;}
.yf5_c01093{bottom:436.556085pt;}
.yf4_c01093{bottom:437.160309pt;}
.yf3_c01093{bottom:438.141333pt;}
.ye3_c01093{bottom:460.080000pt;}
.ye4_c01093{bottom:460.247273pt;}
.ye5_c01093{bottom:460.513720pt;}
.ye6_c01093{bottom:460.681740pt;}
.ye7_c01093{bottom:460.888107pt;}
.ye8_c01093{bottom:461.029713pt;}
.ye9_c01093{bottom:461.282940pt;}
.yea_c01093{bottom:461.424513pt;}
.yeb_c01093{bottom:461.788040pt;}
.yec_c01093{bottom:461.947653pt;}
.yed_c01093{bottom:462.210293pt;}
.yee_c01093{bottom:462.353353pt;}
.yef_c01093{bottom:462.644840pt;}
.yf0_c01093{bottom:462.790007pt;}
.yf1_c01093{bottom:463.002400pt;}
.yf2_c01093{bottom:463.092480pt;}
.ye2_c01093{bottom:490.382717pt;}
.ye1_c01093{bottom:490.756139pt;}
.ye0_c01093{bottom:490.930267pt;}
.ydf_c01093{bottom:491.204813pt;}
.yde_c01093{bottom:491.303696pt;}
.ydd_c01093{bottom:491.518176pt;}
.ydc_c01093{bottom:491.726768pt;}
.ydb_c01093{bottom:491.972840pt;}
.yda_c01093{bottom:492.308824pt;}
.yd9_c01093{bottom:492.410701pt;}
.yd8_c01093{bottom:492.682541pt;}
.yd7_c01093{bottom:492.802077pt;}
.yd6_c01093{bottom:492.898405pt;}
.yd5_c01093{bottom:492.947888pt;}
.yc7_c01093{bottom:520.166963pt;}
.yc5_c01093{bottom:520.167008pt;}
.yc8_c01093{bottom:520.167024pt;}
.yc9_c01093{bottom:520.167237pt;}
.yd3_c01093{bottom:520.167384pt;}
.yc6_c01093{bottom:520.167496pt;}
.yca_c01093{bottom:520.167619pt;}
.yd2_c01093{bottom:520.167757pt;}
.ycc_c01093{bottom:520.167787pt;}
.yd4_c01093{bottom:520.167872pt;}
.ycd_c01093{bottom:520.168000pt;}
.ycb_c01093{bottom:520.168205pt;}
.yce_c01093{bottom:520.168328pt;}
.yd1_c01093{bottom:520.168344pt;}
.ycf_c01093{bottom:520.168389pt;}
.yd0_c01093{bottom:520.168443pt;}
.yc4_c01093{bottom:554.197189pt;}
.yc3_c01093{bottom:554.302272pt;}
.yc2_c01093{bottom:554.611219pt;}
.yc1_c01093{bottom:554.798461pt;}
.yc0_c01093{bottom:554.933115pt;}
.ybf_c01093{bottom:555.151363pt;}
.ybe_c01093{bottom:555.412771pt;}
.ybd_c01093{bottom:555.641469pt;}
.ybc_c01093{bottom:555.811112pt;}
.ybb_c01093{bottom:556.181541pt;}
.yba_c01093{bottom:556.468336pt;}
.yb9_c01093{bottom:556.736235pt;}
.yb8_c01093{bottom:556.876715pt;}
.yb7_c01093{bottom:556.958547pt;}
.yb6_c01093{bottom:557.087285pt;}
.yb5_c01093{bottom:557.202835pt;}
.ya9_c01093{bottom:585.378739pt;}
.yac_c01093{bottom:585.378763pt;}
.yaa_c01093{bottom:585.378800pt;}
.yaf_c01093{bottom:585.379037pt;}
.yab_c01093{bottom:585.379128pt;}
.yb0_c01093{bottom:585.379312pt;}
.yad_c01093{bottom:585.379349pt;}
.yb1_c01093{bottom:585.379533pt;}
.yae_c01093{bottom:585.379624pt;}
.yb2_c01093{bottom:585.380075pt;}
.yb4_c01093{bottom:585.380464pt;}
.yb3_c01093{bottom:585.380563pt;}
.ya8_c01093{bottom:615.214360pt;}
.ya7_c01093{bottom:615.426187pt;}
.ya6_c01093{bottom:616.122443pt;}
.ya5_c01093{bottom:616.679275pt;}
.ya4_c01093{bottom:617.139080pt;}
.ya3_c01093{bottom:617.328091pt;}
.ya2_c01093{bottom:617.952088pt;}
.ya1_c01093{bottom:618.249539pt;}
.ya0_c01093{bottom:618.432829pt;}
.y9f_c01093{bottom:618.727688pt;}
.y9e_c01093{bottom:619.092280pt;}
.y9d_c01093{bottom:619.433773pt;}
.y9c_c01093{bottom:647.164032pt;}
.y9b_c01093{bottom:647.332856pt;}
.y9a_c01093{bottom:647.539333pt;}
.y99_c01093{bottom:648.090312pt;}
.y98_c01093{bottom:648.304027pt;}
.y97_c01093{bottom:648.684509pt;}
.y96_c01093{bottom:648.980568pt;}
.y95_c01093{bottom:649.193715pt;}
.y94_c01093{bottom:649.414803pt;}
.y93_c01093{bottom:649.595320pt;}
.y92_c01093{bottom:649.956992pt;}
.y91_c01093{bottom:650.137637pt;}
.y90_c01093{bottom:650.489320pt;}
.y8f_c01093{bottom:651.141693pt;}
.y8e_c01093{bottom:679.906731pt;}
.y8d_c01093{bottom:680.454531pt;}
.y8c_c01093{bottom:680.705075pt;}
.y8b_c01093{bottom:680.860747pt;}
.y8a_c01093{bottom:681.187891pt;}
.y89_c01093{bottom:681.340291pt;}
.y88_c01093{bottom:681.822931pt;}
.y87_c01093{bottom:682.100659pt;}
.y86_c01093{bottom:682.652379pt;}
.y85_c01093{bottom:682.807627pt;}
.y84_c01093{bottom:683.101251pt;}
.y83_c01093{bottom:683.516347pt;}
.y7f_c01093{bottom:712.325237pt;}
.y79_c01093{bottom:712.325296pt;}
.y7a_c01093{bottom:712.325525pt;}
.y7e_c01093{bottom:712.325664pt;}
.y7d_c01093{bottom:712.325709pt;}
.y80_c01093{bottom:712.325725pt;}
.y7b_c01093{bottom:712.325747pt;}
.y82_c01093{bottom:712.325893pt;}
.y81_c01093{bottom:712.326000pt;}
.y7c_c01093{bottom:712.326288pt;}
.y78_c01093{bottom:742.270509pt;}
.y77_c01093{bottom:742.447781pt;}
.y76_c01093{bottom:742.692080pt;}
.y75_c01093{bottom:743.017027pt;}
.y74_c01093{bottom:743.320051pt;}
.y73_c01093{bottom:743.549872pt;}
.y72_c01093{bottom:743.866101pt;}
.y71_c01093{bottom:744.063437pt;}
.y70_c01093{bottom:744.312392pt;}
.y6f_c01093{bottom:744.649040pt;}
.y6e_c01093{bottom:744.846357pt;}
.y6d_c01093{bottom:745.079251pt;}
.y6c_c01093{bottom:745.196080pt;}
.y6b_c01093{bottom:772.578077pt;}
.y6a_c01093{bottom:772.795536pt;}
.y69_c01093{bottom:773.121837pt;}
.y68_c01093{bottom:773.354592pt;}
.y67_c01093{bottom:773.734763pt;}
.y66_c01093{bottom:774.450557pt;}
.y65_c01093{bottom:774.686088pt;}
.y64_c01093{bottom:775.150928pt;}
.y63_c01093{bottom:775.624907pt;}
.y62_c01093{bottom:776.085173pt;}
.y61_c01093{bottom:776.325133pt;}
.y60_c01093{bottom:776.603675pt;}
.y5f_c01093{bottom:777.115915pt;}
.y5e_c01093{bottom:801.359797pt;}
.y5d_c01093{bottom:802.039933pt;}
.y5c_c01093{bottom:802.762467pt;}
.y5b_c01093{bottom:802.996920pt;}
.y5a_c01093{bottom:803.162579pt;}
.y59_c01093{bottom:803.740712pt;}
.y58_c01093{bottom:804.113611pt;}
.y57_c01093{bottom:804.724424pt;}
.y56_c01093{bottom:805.137283pt;}
.y55_c01093{bottom:806.243664pt;}
.y54_c01093{bottom:806.556144pt;}
.y53_c01093{bottom:807.345507pt;}
.y52_c01093{bottom:807.793035pt;}
.y51_c01093{bottom:808.558429pt;}
.y50_c01093{bottom:836.177219pt;}
.y4f_c01093{bottom:836.342565pt;}
.y4e_c01093{bottom:836.484285pt;}
.y4d_c01093{bottom:836.740531pt;}
.y4c_c01093{bottom:836.830965pt;}
.y4b_c01093{bottom:836.992149pt;}
.y4a_c01093{bottom:837.114933pt;}
.y49_c01093{bottom:837.516101pt;}
.y48_c01093{bottom:837.839541pt;}
.y47_c01093{bottom:837.953323pt;}
.y46_c01093{bottom:838.199453pt;}
.y45_c01093{bottom:838.347088pt;}
.y44_c01093{bottom:838.843165pt;}
.y43_c01093{bottom:839.042149pt;}
.y42_c01093{bottom:839.280709pt;}
.y35_c01093{bottom:870.717317pt;}
.y34_c01093{bottom:870.717416pt;}
.y37_c01093{bottom:870.717493pt;}
.y38_c01093{bottom:870.717813pt;}
.y36_c01093{bottom:870.717859pt;}
.y39_c01093{bottom:870.718027pt;}
.y3a_c01093{bottom:870.718453pt;}
.y3c_c01093{bottom:870.718888pt;}
.y3b_c01093{bottom:870.719101pt;}
.y3d_c01093{bottom:870.719315pt;}
.y3e_c01093{bottom:870.720344pt;}
.y41_c01093{bottom:870.720360pt;}
.y40_c01093{bottom:870.720405pt;}
.y3f_c01093{bottom:870.720939pt;}
.y33_c01093{bottom:894.918912pt;}
.y32_c01093{bottom:895.411632pt;}
.y31_c01093{bottom:895.714533pt;}
.y30_c01093{bottom:896.222163pt;}
.y2f_c01093{bottom:897.069453pt;}
.y2e_c01093{bottom:897.484960pt;}
.y2d_c01093{bottom:897.875867pt;}
.y2c_c01093{bottom:898.672888pt;}
.y2b_c01093{bottom:898.937680pt;}
.y2a_c01093{bottom:899.192981pt;}
.y29_c01093{bottom:899.457973pt;}
.y28_c01093{bottom:900.257392pt;}
.y27_c01093{bottom:926.086973pt;}
.y26_c01093{bottom:927.106552pt;}
.y25_c01093{bottom:927.576533pt;}
.y24_c01093{bottom:927.970608pt;}
.y23_c01093{bottom:928.190755pt;}
.y22_c01093{bottom:928.434984pt;}
.y21_c01093{bottom:929.059176pt;}
.y20_c01093{bottom:929.767701pt;}
.y1f_c01093{bottom:930.072501pt;}
.y1e_c01093{bottom:930.312469pt;}
.y1d_c01093{bottom:930.959427pt;}
.y1c_c01093{bottom:958.680661pt;}
.y1b_c01093{bottom:959.004533pt;}
.y1a_c01093{bottom:959.210261pt;}
.y19_c01093{bottom:959.378789pt;}
.y18_c01093{bottom:959.734533pt;}
.y17_c01093{bottom:960.143469pt;}
.y16_c01093{bottom:960.307541pt;}
.y15_c01093{bottom:960.494869pt;}
.y14_c01093{bottom:960.909885pt;}
.y13_c01093{bottom:961.076653pt;}
.y12_c01093{bottom:961.291221pt;}
.y11_c01093{bottom:961.664333pt;}
.y10_c01093{bottom:962.329389pt;}
.yf_c01093{bottom:962.399453pt;}
.ye_c01093{bottom:990.424136pt;}
.yd_c01093{bottom:990.853216pt;}
.yc_c01093{bottom:991.008584pt;}
.yb_c01093{bottom:991.188528pt;}
.ya_c01093{bottom:991.714352pt;}
.y9_c01093{bottom:991.888416pt;}
.y8_c01093{bottom:992.182208pt;}
.y7_c01093{bottom:992.535264pt;}
.y6_c01093{bottom:992.823024pt;}
.y5_c01093{bottom:993.365944pt;}
.y4_c01093{bottom:993.599288pt;}
.y3_c01093{bottom:993.833800pt;}
.y2_c01093{bottom:994.080000pt;}
.y1_c01093{bottom:1057.193333pt;}
.h5_c01093{height:64.001152pt;}
.h6_c01093{height:65.270508pt;}
.h7_c01093{height:69.334581pt;}
.h8_c01093{height:74.668011pt;}
.hc_c01093{height:80.001000pt;}
.h9_c01093{height:80.001440pt;}
.h12_c01093{height:80.008999pt;}
.h3_c01093{height:85.334869pt;}
.he_c01093{height:85.347156pt;}
.h11_c01093{height:85.353982pt;}
.h4_c01093{height:90.668299pt;}
.hf_c01093{height:90.681353pt;}
.h10_c01093{height:96.015551pt;}
.h2_c01093{height:101.333333pt;}
.h13_c01093{height:101.344733pt;}
.hd_c01093{height:101.349748pt;}
.ha_c01093{height:112.002016pt;}
.hb_c01093{height:128.002304pt;}
.h0_c01093{height:1107.840000pt;}
.h1_c01093{height:1108.000000pt;}
.w0_c01093{width:815.280000pt;}
.w1_c01093{width:815.333333pt;}
.x0_c01093{left:0.000000pt;}
.x7a_c01093{left:1.447445pt;}
.x8e_c01093{left:4.566968pt;}
.x98_c01093{left:14.059704pt;}
.x82_c01093{left:15.262893pt;}
.x70_c01093{left:34.924973pt;}
.x83_c01093{left:38.299029pt;}
.x11_c01093{left:39.369520pt;}
.x5e_c01093{left:40.436320pt;}
.x34_c01093{left:42.421611pt;}
.x55_c01093{left:48.006773pt;}
.xa6_c01093{left:49.424000pt;}
.x4_c01093{left:50.580000pt;}
.x1f_c01093{left:52.451819pt;}
.xc1_c01093{left:56.288043pt;}
.x3d_c01093{left:61.284629pt;}
.x84_c01093{left:63.977848pt;}
.x67_c01093{left:65.129635pt;}
.x8f_c01093{left:67.687907pt;}
.xad_c01093{left:68.738293pt;}
.x7b_c01093{left:70.328592pt;}
.x85_c01093{left:80.283277pt;}
.x4e_c01093{left:83.656573pt;}
.x35_c01093{left:90.181899pt;}
.x5_c01093{left:91.613333pt;}
.xae_c01093{left:95.809944pt;}
.xa7_c01093{left:103.925333pt;}
.x86_c01093{left:108.363445pt;}
.x5f_c01093{left:109.618987pt;}
.x2a_c01093{left:111.844723pt;}
.x7c_c01093{left:117.608963pt;}
.x90_c01093{left:118.568405pt;}
.x3e_c01093{left:125.070333pt;}
.x6_c01093{left:130.698667pt;}
.x1b_c01093{left:131.677661pt;}
.x71_c01093{left:135.716365pt;}
.xa8_c01093{left:137.493333pt;}
.xb9_c01093{left:139.999869pt;}
.x20_c01093{left:141.242219pt;}
.xaf_c01093{left:152.913341pt;}
.x91_c01093{left:154.089685pt;}
.xd2_c01093{left:155.113333pt;}
.x7d_c01093{left:157.449061pt;}
.x60_c01093{left:158.556320pt;}
.x47_c01093{left:159.977456pt;}
.x12_c01093{left:161.889520pt;}
.xba_c01093{left:163.309288pt;}
.xc2_c01093{left:164.276989pt;}
.x9e_c01093{left:166.918667pt;}
.x7_c01093{left:169.589333pt;}
.x21_c01093{left:170.740357pt;}
.x72_c01093{left:177.748109pt;}
.xc8_c01093{left:179.107379pt;}
.xa9_c01093{left:181.633333pt;}
.x7e_c01093{left:183.129989pt;}
.x61_c01093{left:184.430987pt;}
.x48_c01093{left:189.970429pt;}
.xbb_c01093{left:194.291608pt;}
.x9f_c01093{left:195.240000pt;}
.x1c_c01093{left:199.804845pt;}
.x73_c01093{left:203.851949pt;}
.x68_c01093{left:208.471437pt;}
.x56_c01093{left:209.529923pt;}
.x87_c01093{left:219.257443pt;}
.xd3_c01093{left:221.134667pt;}
.xb0_c01093{left:222.986528pt;}
.x13_c01093{left:224.074853pt;}
.xc3_c01093{left:226.855349pt;}
.x22_c01093{left:228.532651pt;}
.x69_c01093{left:234.356619pt;}
.x4f_c01093{left:237.022827pt;}
.xb1_c01093{left:244.085963pt;}
.x74_c01093{left:246.315693pt;}
.x49_c01093{left:247.569741pt;}
.x3f_c01093{left:254.183019pt;}
.x57_c01093{left:257.050301pt;}
.x2b_c01093{left:258.487336pt;}
.x8_c01093{left:260.076000pt;}
.xd4_c01093{left:262.098667pt;}
.xa0_c01093{left:274.200000pt;}
.x62_c01093{left:276.384320pt;}
.xbc_c01093{left:280.992261pt;}
.xd6_c01093{left:284.701333pt;}
.x50_c01093{left:286.737789pt;}
.x14_c01093{left:287.630853pt;}
.xc9_c01093{left:291.756544pt;}
.x88_c01093{left:293.440557pt;}
.xd7_c01093{left:298.985333pt;}
.xdd_c01093{left:300.959253pt;}
.xb2_c01093{left:303.066741pt;}
.x4a_c01093{left:306.787696pt;}
.x9_c01093{left:308.036000pt;}
.x7f_c01093{left:309.853216pt;}
.x6a_c01093{left:311.832155pt;}
.x23_c01093{left:317.145725pt;}
.x58_c01093{left:321.851304pt;}
.x51_c01093{left:326.294029pt;}
.x89_c01093{left:327.270091pt;}
.xce_c01093{left:328.394373pt;}
.x36_c01093{left:330.618005pt;}
.x92_c01093{left:332.893459pt;}
.x75_c01093{left:335.425824pt;}
.x2c_c01093{left:340.330288pt;}
.x6b_c01093{left:343.346629pt;}
.x93_c01093{left:344.413875pt;}
.xd5_c01093{left:345.374667pt;}
.x40_c01093{left:346.354365pt;}
.x15_c01093{left:356.800187pt;}
.x99_c01093{left:359.213181pt;}
.x24_c01093{left:360.518275pt;}
.x76_c01093{left:362.482997pt;}
.x4b_c01093{left:364.927000pt;}
.xd8_c01093{left:365.836000pt;}
.xa_c01093{left:366.878667pt;}
.x8a_c01093{left:372.942363pt;}
.x59_c01093{left:374.171851pt;}
.x1_c01093{left:377.040000pt;}
.xa1_c01093{left:378.828000pt;}
.x41_c01093{left:380.718459pt;}
.x16_c01093{left:388.021520pt;}
.x52_c01093{left:389.443739pt;}
.x37_c01093{left:395.191723pt;}
.x2_c01093{left:397.440000pt;}
.x63_c01093{left:403.112320pt;}
.x2d_c01093{left:404.891283pt;}
.x25_c01093{left:406.657443pt;}
.x80_c01093{left:408.255427pt;}
.xb3_c01093{left:410.227915pt;}
.xca_c01093{left:411.147656pt;}
.x9a_c01093{left:412.960496pt;}
.xb_c01093{left:415.844000pt;}
.xde_c01093{left:419.052480pt;}
.xaa_c01093{left:421.376000pt;}
.xc4_c01093{left:422.784400pt;}
.x1d_c01093{left:424.428816pt;}
.x64_c01093{left:428.512320pt;}
.xd9_c01093{left:429.653333pt;}
.xcf_c01093{left:430.594000pt;}
.x3_c01093{left:432.000000pt;}
.x2e_c01093{left:435.372379pt;}
.x9b_c01093{left:437.663459pt;}
.xcb_c01093{left:440.004536pt;}
.x94_c01093{left:442.574744pt;}
.xc_c01093{left:444.854667pt;}
.xab_c01093{left:449.957333pt;}
.xda_c01093{left:453.922667pt;}
.xd0_c01093{left:458.861619pt;}
.xa2_c01093{left:459.968000pt;}
.x5a_c01093{left:461.293653pt;}
.x42_c01093{left:462.667507pt;}
.x2f_c01093{left:464.413427pt;}
.x8b_c01093{left:468.885605pt;}
.x6c_c01093{left:470.293861pt;}
.x1e_c01093{left:473.662891pt;}
.x38_c01093{left:475.386869pt;}
.xbd_c01093{left:479.566867pt;}
.xb4_c01093{left:480.951792pt;}
.x17_c01093{left:483.522853pt;}
.x5b_c01093{left:486.254549pt;}
.xc5_c01093{left:487.314592pt;}
.x53_c01093{left:496.029712pt;}
.x39_c01093{left:499.851013pt;}
.x26_c01093{left:500.759747pt;}
.xb5_c01093{left:504.492632pt;}
.x9c_c01093{left:506.310949pt;}
.x77_c01093{left:507.699459pt;}
.x65_c01093{left:508.981653pt;}
.x43_c01093{left:510.799104pt;}
.xa3_c01093{left:518.265333pt;}
.x95_c01093{left:523.696331pt;}
.x44_c01093{left:524.630608pt;}
.xb6_c01093{left:527.809472pt;}
.xac_c01093{left:528.704000pt;}
.x4c_c01093{left:531.507675pt;}
.xd_c01093{left:532.492000pt;}
.xbe_c01093{left:534.775891pt;}
.xcc_c01093{left:537.003381pt;}
.x18_c01093{left:542.813520pt;}
.x45_c01093{left:544.149904pt;}
.xa4_c01093{left:547.298667pt;}
.x3a_c01093{left:550.009976pt;}
.xb7_c01093{left:554.675765pt;}
.x27_c01093{left:557.141397pt;}
.xdb_c01093{left:558.098667pt;}
.x30_c01093{left:561.134248pt;}
.xe_c01093{left:562.482667pt;}
.xc6_c01093{left:565.608869pt;}
.xdf_c01093{left:569.070220pt;}
.x19_c01093{left:570.901520pt;}
.x5c_c01093{left:572.176312pt;}
.xd1_c01093{left:575.828995pt;}
.x6d_c01093{left:579.519872pt;}
.x96_c01093{left:585.858563pt;}
.xf_c01093{left:588.377333pt;}
.xa5_c01093{left:589.777333pt;}
.x28_c01093{left:590.735456pt;}
.x8c_c01093{left:594.915691pt;}
.x31_c01093{left:598.814275pt;}
.x3b_c01093{left:601.162280pt;}
.xbf_c01093{left:602.706885pt;}
.x1a_c01093{left:605.189520pt;}
.x78_c01093{left:607.074859pt;}
.x6e_c01093{left:609.043696pt;}
.x54_c01093{left:610.015733pt;}
.x8d_c01093{left:615.985152pt;}
.xdc_c01093{left:621.621333pt;}
.xcd_c01093{left:625.080520pt;}
.x4d_c01093{left:628.481173pt;}
.x32_c01093{left:630.015395pt;}
.x6f_c01093{left:633.180885pt;}
.x79_c01093{left:637.268008pt;}
.x66_c01093{left:642.038987pt;}
.x9d_c01093{left:643.348597pt;}
.xc0_c01093{left:644.500629pt;}
.x29_c01093{left:645.521139pt;}
.x97_c01093{left:653.779677pt;}
.xb8_c01093{left:654.888699pt;}
.x5d_c01093{left:658.818099pt;}
.x10_c01093{left:659.890667pt;}
.x46_c01093{left:661.035029pt;}
.x3c_c01093{left:662.562648pt;}
.xc7_c01093{left:664.763941pt;}
.x33_c01093{left:669.135469pt;}
.x81_c01093{left:690.740269pt;}
}





/* 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_c01094 {
    display:none;
  }
  .loading-indicator_c01094.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01094 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_c01094 { 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_c01094" -> "#page-container .classname_c01094")
 */
.pf_c01094 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01094 { /* 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_c01094.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01094 { /* 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_c01094 { /* 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_c01094 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01094 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01094 {overflow:visible;}
  }
}
.c_c01094 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01094 { /* 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_c01094:after { /* webkit #35443 */
  content: '';
}
.t_c01094:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01094 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 */
}
.__c01094 { /* 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_c01094 { /* info for Javascript */
  display:none;
}
.l_c01094 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01094 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01094 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01094: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_c01094 {
    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_c01094.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01094.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_c01094 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01094{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01094;src:url('chunks/assets/font_fabf4b590f7fb32aea93ffb2.woff2')format("woff");}.ff1_c01094{font-family:ff1_c01094;line-height:1.000000;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;}
.m4c_c01094{transform:matrix(0.012479,0.000112,-0.002250,0.249990,0,0);-ms-transform:matrix(0.012479,0.000112,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.012479,0.000112,-0.002250,0.249990,0,0);}
.m7c_c01094{transform:matrix(0.086971,0.001218,-0.003500,0.249976,0,0);-ms-transform:matrix(0.086971,0.001218,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.086971,0.001218,-0.003500,0.249976,0,0);}
.m0_c01094{transform:matrix(0.139255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139255,0.000000,0.000000,0.250000,0,0);}
.m2_c01094{transform:matrix(0.141465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141465,0.000000,0.000000,0.250000,0,0);}
.m152_c01094{transform:matrix(0.158152,0.002056,-0.003250,0.249979,0,0);-ms-transform:matrix(0.158152,0.002056,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.158152,0.002056,-0.003250,0.249979,0,0);}
.m14f_c01094{transform:matrix(0.158477,0.002060,-0.003250,0.249979,0,0);-ms-transform:matrix(0.158477,0.002060,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.158477,0.002060,-0.003250,0.249979,0,0);}
.m151_c01094{transform:matrix(0.159057,0.002068,-0.003250,0.249979,0,0);-ms-transform:matrix(0.159057,0.002068,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.159057,0.002068,-0.003250,0.249979,0,0);}
.m14a_c01094{transform:matrix(0.159059,0.001909,-0.003000,0.249982,0,0);-ms-transform:matrix(0.159059,0.001909,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.159059,0.001909,-0.003000,0.249982,0,0);}
.m131_c01094{transform:matrix(0.161245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161245,0.000000,0.000000,0.250000,0,0);}
.m15c_c01094{transform:matrix(0.164946,0.002144,-0.003250,0.249979,0,0);-ms-transform:matrix(0.164946,0.002144,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.164946,0.002144,-0.003250,0.249979,0,0);}
.m5d_c01094{transform:matrix(0.168221,0.002523,-0.003750,0.249972,0,0);-ms-transform:matrix(0.168221,0.002523,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.168221,0.002523,-0.003750,0.249972,0,0);}
.m15a_c01094{transform:matrix(0.169321,0.002201,-0.003250,0.249979,0,0);-ms-transform:matrix(0.169321,0.002201,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.169321,0.002201,-0.003250,0.249979,0,0);}
.mf7_c01094{transform:matrix(0.169738,0.002716,-0.003999,0.249968,0,0);-ms-transform:matrix(0.169738,0.002716,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.169738,0.002716,-0.003999,0.249968,0,0);}
.m15_c01094{transform:matrix(0.170048,0.001530,-0.002250,0.249990,0,0);-ms-transform:matrix(0.170048,0.001530,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.170048,0.001530,-0.002250,0.249990,0,0);}
.m148_c01094{transform:matrix(0.173023,0.002076,-0.003000,0.249982,0,0);-ms-transform:matrix(0.173023,0.002076,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.173023,0.002076,-0.003000,0.249982,0,0);}
.m13e_c01094{transform:matrix(0.174902,0.002099,-0.003000,0.249982,0,0);-ms-transform:matrix(0.174902,0.002099,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.174902,0.002099,-0.003000,0.249982,0,0);}
.m104_c01094{transform:matrix(0.176797,0.002829,-0.003999,0.249968,0,0);-ms-transform:matrix(0.176797,0.002829,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.176797,0.002829,-0.003999,0.249968,0,0);}
.m154_c01094{transform:matrix(0.177340,0.002305,-0.003250,0.249979,0,0);-ms-transform:matrix(0.177340,0.002305,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.177340,0.002305,-0.003250,0.249979,0,0);}
.m159_c01094{transform:matrix(0.178035,0.002314,-0.003250,0.249979,0,0);-ms-transform:matrix(0.178035,0.002314,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.178035,0.002314,-0.003250,0.249979,0,0);}
.m155_c01094{transform:matrix(0.178195,0.002317,-0.003250,0.249979,0,0);-ms-transform:matrix(0.178195,0.002317,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.178195,0.002317,-0.003250,0.249979,0,0);}
.mf6_c01094{transform:matrix(0.178592,0.002857,-0.003999,0.249968,0,0);-ms-transform:matrix(0.178592,0.002857,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.178592,0.002857,-0.003999,0.249968,0,0);}
.m11_c01094{transform:matrix(0.178898,0.001610,-0.002250,0.249990,0,0);-ms-transform:matrix(0.178898,0.001610,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.178898,0.001610,-0.002250,0.249990,0,0);}
.m15b_c01094{transform:matrix(0.178990,0.002327,-0.003250,0.249979,0,0);-ms-transform:matrix(0.178990,0.002327,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.178990,0.002327,-0.003250,0.249979,0,0);}
.m24_c01094{transform:matrix(0.179238,0.001613,-0.002250,0.249990,0,0);-ms-transform:matrix(0.179238,0.001613,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.179238,0.001613,-0.002250,0.249990,0,0);}
.mf1_c01094{transform:matrix(0.179722,0.002876,-0.003999,0.249968,0,0);-ms-transform:matrix(0.179722,0.002876,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.179722,0.002876,-0.003999,0.249968,0,0);}
.mc2_c01094{transform:matrix(0.180086,0.003242,-0.004499,0.249960,0,0);-ms-transform:matrix(0.180086,0.003242,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.180086,0.003242,-0.004499,0.249960,0,0);}
.m5a_c01094{transform:matrix(0.180260,0.002704,-0.003750,0.249972,0,0);-ms-transform:matrix(0.180260,0.002704,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.180260,0.002704,-0.003750,0.249972,0,0);}
.m150_c01094{transform:matrix(0.181075,0.002354,-0.003250,0.249979,0,0);-ms-transform:matrix(0.181075,0.002354,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.181075,0.002354,-0.003250,0.249979,0,0);}
.m62_c01094{transform:matrix(0.181375,0.002721,-0.003750,0.249972,0,0);-ms-transform:matrix(0.181375,0.002721,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.181375,0.002721,-0.003750,0.249972,0,0);}
.mfc_c01094{transform:matrix(0.181492,0.002904,-0.003999,0.249968,0,0);-ms-transform:matrix(0.181492,0.002904,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.181492,0.002904,-0.003999,0.249968,0,0);}
.m58_c01094{transform:matrix(0.181925,0.002729,-0.003750,0.249972,0,0);-ms-transform:matrix(0.181925,0.002729,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.181925,0.002729,-0.003750,0.249972,0,0);}
.m153_c01094{transform:matrix(0.182185,0.002368,-0.003250,0.249979,0,0);-ms-transform:matrix(0.182185,0.002368,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.182185,0.002368,-0.003250,0.249979,0,0);}
.m50_c01094{transform:matrix(0.182449,0.002737,-0.003750,0.249972,0,0);-ms-transform:matrix(0.182449,0.002737,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.182449,0.002737,-0.003750,0.249972,0,0);}
.m15e_c01094{transform:matrix(0.182750,0.002376,-0.003250,0.249979,0,0);-ms-transform:matrix(0.182750,0.002376,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.182750,0.002376,-0.003250,0.249979,0,0);}
.m10f_c01094{transform:matrix(0.183027,0.002928,-0.003999,0.249968,0,0);-ms-transform:matrix(0.183027,0.002928,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.183027,0.002928,-0.003999,0.249968,0,0);}
.m55_c01094{transform:matrix(0.183389,0.002751,-0.003750,0.249972,0,0);-ms-transform:matrix(0.183389,0.002751,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.183389,0.002751,-0.003750,0.249972,0,0);}
.m51_c01094{transform:matrix(0.183599,0.002754,-0.003750,0.249972,0,0);-ms-transform:matrix(0.183599,0.002754,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.183599,0.002754,-0.003750,0.249972,0,0);}
.m42_c01094{transform:matrix(0.183613,0.001653,-0.002250,0.249990,0,0);-ms-transform:matrix(0.183613,0.001653,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.183613,0.001653,-0.002250,0.249990,0,0);}
.m13f_c01094{transform:matrix(0.183872,0.002206,-0.003000,0.249982,0,0);-ms-transform:matrix(0.183872,0.002206,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.183872,0.002206,-0.003000,0.249982,0,0);}
.m147_c01094{transform:matrix(0.184397,0.002213,-0.003000,0.249982,0,0);-ms-transform:matrix(0.184397,0.002213,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.184397,0.002213,-0.003000,0.249982,0,0);}
.m157_c01094{transform:matrix(0.184919,0.002404,-0.003250,0.249979,0,0);-ms-transform:matrix(0.184919,0.002404,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.184919,0.002404,-0.003250,0.249979,0,0);}
.mfd_c01094{transform:matrix(0.185026,0.002960,-0.003999,0.249968,0,0);-ms-transform:matrix(0.185026,0.002960,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.185026,0.002960,-0.003999,0.249968,0,0);}
.m149_c01094{transform:matrix(0.185137,0.002222,-0.003000,0.249982,0,0);-ms-transform:matrix(0.185137,0.002222,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.185137,0.002222,-0.003000,0.249982,0,0);}
.m3e_c01094{transform:matrix(0.185143,0.001666,-0.002250,0.249990,0,0);-ms-transform:matrix(0.185143,0.001666,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.185143,0.001666,-0.002250,0.249990,0,0);}
.m14c_c01094{transform:matrix(0.185234,0.002408,-0.003250,0.249979,0,0);-ms-transform:matrix(0.185234,0.002408,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.185234,0.002408,-0.003250,0.249979,0,0);}
.m141_c01094{transform:matrix(0.185287,0.002223,-0.003000,0.249982,0,0);-ms-transform:matrix(0.185287,0.002223,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.185287,0.002223,-0.003000,0.249982,0,0);}
.m48_c01094{transform:matrix(0.185302,0.001668,-0.002250,0.249990,0,0);-ms-transform:matrix(0.185302,0.001668,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.185302,0.001668,-0.002250,0.249990,0,0);}
.m60_c01094{transform:matrix(0.186054,0.002791,-0.003750,0.249972,0,0);-ms-transform:matrix(0.186054,0.002791,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.186054,0.002791,-0.003750,0.249972,0,0);}
.m146_c01094{transform:matrix(0.186322,0.002236,-0.003000,0.249982,0,0);-ms-transform:matrix(0.186322,0.002236,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.186322,0.002236,-0.003000,0.249982,0,0);}
.m46_c01094{transform:matrix(0.186517,0.001679,-0.002250,0.249990,0,0);-ms-transform:matrix(0.186517,0.001679,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.186517,0.001679,-0.002250,0.249990,0,0);}
.m14e_c01094{transform:matrix(0.186609,0.002426,-0.003250,0.249979,0,0);-ms-transform:matrix(0.186609,0.002426,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.186609,0.002426,-0.003250,0.249979,0,0);}
.m156_c01094{transform:matrix(0.186724,0.002427,-0.003250,0.249979,0,0);-ms-transform:matrix(0.186724,0.002427,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.186724,0.002427,-0.003250,0.249979,0,0);}
.m10d_c01094{transform:matrix(0.186921,0.002991,-0.003999,0.249968,0,0);-ms-transform:matrix(0.186921,0.002991,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.186921,0.002991,-0.003999,0.249968,0,0);}
.m10_c01094{transform:matrix(0.187122,0.001684,-0.002250,0.249990,0,0);-ms-transform:matrix(0.187122,0.001684,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.187122,0.001684,-0.002250,0.249990,0,0);}
.m101_c01094{transform:matrix(0.187591,0.003001,-0.003999,0.249968,0,0);-ms-transform:matrix(0.187591,0.003001,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.187591,0.003001,-0.003999,0.249968,0,0);}
.m158_c01094{transform:matrix(0.188084,0.002445,-0.003250,0.249979,0,0);-ms-transform:matrix(0.188084,0.002445,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.188084,0.002445,-0.003250,0.249979,0,0);}
.m14b_c01094{transform:matrix(0.188546,0.002263,-0.003000,0.249982,0,0);-ms-transform:matrix(0.188546,0.002263,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.188546,0.002263,-0.003000,0.249982,0,0);}
.m40_c01094{transform:matrix(0.189147,0.001702,-0.002250,0.249990,0,0);-ms-transform:matrix(0.189147,0.001702,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.189147,0.001702,-0.002250,0.249990,0,0);}
.m145_c01094{transform:matrix(0.189206,0.002270,-0.003000,0.249982,0,0);-ms-transform:matrix(0.189206,0.002270,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.189206,0.002270,-0.003000,0.249982,0,0);}
.m18_c01094{transform:matrix(0.189842,0.001709,-0.002250,0.249990,0,0);-ms-transform:matrix(0.189842,0.001709,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.189842,0.001709,-0.002250,0.249990,0,0);}
.m17_c01094{transform:matrix(0.191282,0.001722,-0.002250,0.249990,0,0);-ms-transform:matrix(0.191282,0.001722,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.191282,0.001722,-0.002250,0.249990,0,0);}
.m103_c01094{transform:matrix(0.191730,0.003068,-0.003999,0.249968,0,0);-ms-transform:matrix(0.191730,0.003068,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.191730,0.003068,-0.003999,0.249968,0,0);}
.m5b_c01094{transform:matrix(0.192488,0.002887,-0.003750,0.249972,0,0);-ms-transform:matrix(0.192488,0.002887,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.192488,0.002887,-0.003750,0.249972,0,0);}
.m22_c01094{transform:matrix(0.192637,0.001734,-0.002250,0.249990,0,0);-ms-transform:matrix(0.192637,0.001734,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.192637,0.001734,-0.002250,0.249990,0,0);}
.m5c_c01094{transform:matrix(0.192803,0.002892,-0.003750,0.249972,0,0);-ms-transform:matrix(0.192803,0.002892,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.192803,0.002892,-0.003750,0.249972,0,0);}
.m27_c01094{transform:matrix(0.193497,0.001741,-0.002250,0.249990,0,0);-ms-transform:matrix(0.193497,0.001741,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.193497,0.001741,-0.002250,0.249990,0,0);}
.m57_c01094{transform:matrix(0.193593,0.002904,-0.003750,0.249972,0,0);-ms-transform:matrix(0.193593,0.002904,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.193593,0.002904,-0.003750,0.249972,0,0);}
.m1a_c01094{transform:matrix(0.193667,0.001743,-0.002250,0.249990,0,0);-ms-transform:matrix(0.193667,0.001743,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.193667,0.001743,-0.002250,0.249990,0,0);}
.m61_c01094{transform:matrix(0.194173,0.002913,-0.003750,0.249972,0,0);-ms-transform:matrix(0.194173,0.002913,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.194173,0.002913,-0.003750,0.249972,0,0);}
.m47_c01094{transform:matrix(0.194422,0.001750,-0.002250,0.249990,0,0);-ms-transform:matrix(0.194422,0.001750,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.194422,0.001750,-0.002250,0.249990,0,0);}
.m15d_c01094{transform:matrix(0.194559,0.002529,-0.003250,0.249979,0,0);-ms-transform:matrix(0.194559,0.002529,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.194559,0.002529,-0.003250,0.249979,0,0);}
.m11d_c01094{transform:matrix(0.195205,0.003123,-0.003999,0.249968,0,0);-ms-transform:matrix(0.195205,0.003123,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.195205,0.003123,-0.003999,0.249968,0,0);}
.mf8_c01094{transform:matrix(0.195315,0.003125,-0.003999,0.249968,0,0);-ms-transform:matrix(0.195315,0.003125,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.195315,0.003125,-0.003999,0.249968,0,0);}
.mc1_c01094{transform:matrix(0.196563,0.003538,-0.004499,0.249960,0,0);-ms-transform:matrix(0.196563,0.003538,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.196563,0.003538,-0.004499,0.249960,0,0);}
.m14_c01094{transform:matrix(0.196762,0.001771,-0.002250,0.249990,0,0);-ms-transform:matrix(0.196762,0.001771,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.196762,0.001771,-0.002250,0.249990,0,0);}
.m4f_c01094{transform:matrix(0.197188,0.002958,-0.003750,0.249972,0,0);-ms-transform:matrix(0.197188,0.002958,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.197188,0.002958,-0.003750,0.249972,0,0);}
.m140_c01094{transform:matrix(0.198846,0.002386,-0.003000,0.249982,0,0);-ms-transform:matrix(0.198846,0.002386,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.198846,0.002386,-0.003000,0.249982,0,0);}
.mf_c01094{transform:matrix(0.199092,0.001792,-0.002250,0.249990,0,0);-ms-transform:matrix(0.199092,0.001792,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.199092,0.001792,-0.002250,0.249990,0,0);}
.mfa_c01094{transform:matrix(0.199135,0.003186,-0.003999,0.249968,0,0);-ms-transform:matrix(0.199135,0.003186,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.199135,0.003186,-0.003999,0.249968,0,0);}
.md7_c01094{transform:matrix(0.199301,0.003388,-0.004249,0.249964,0,0);-ms-transform:matrix(0.199301,0.003388,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.199301,0.003388,-0.004249,0.249964,0,0);}
.m107_c01094{transform:matrix(0.200164,0.003203,-0.003999,0.249968,0,0);-ms-transform:matrix(0.200164,0.003203,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.200164,0.003203,-0.003999,0.249968,0,0);}
.mff_c01094{transform:matrix(0.200294,0.003205,-0.003999,0.249968,0,0);-ms-transform:matrix(0.200294,0.003205,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.200294,0.003205,-0.003999,0.249968,0,0);}
.m4a_c01094{transform:matrix(0.200522,0.001805,-0.002250,0.249990,0,0);-ms-transform:matrix(0.200522,0.001805,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.200522,0.001805,-0.002250,0.249990,0,0);}
.m143_c01094{transform:matrix(0.200556,0.002407,-0.003000,0.249982,0,0);-ms-transform:matrix(0.200556,0.002407,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.200556,0.002407,-0.003000,0.249982,0,0);}
.m102_c01094{transform:matrix(0.201439,0.003223,-0.003999,0.249968,0,0);-ms-transform:matrix(0.201439,0.003223,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.201439,0.003223,-0.003999,0.249968,0,0);}
.m16_c01094{transform:matrix(0.201867,0.001817,-0.002250,0.249990,0,0);-ms-transform:matrix(0.201867,0.001817,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.201867,0.001817,-0.002250,0.249990,0,0);}
.m56_c01094{transform:matrix(0.202277,0.003034,-0.003750,0.249972,0,0);-ms-transform:matrix(0.202277,0.003034,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.202277,0.003034,-0.003750,0.249972,0,0);}
.m3d_c01094{transform:matrix(0.202292,0.001821,-0.002250,0.249990,0,0);-ms-transform:matrix(0.202292,0.001821,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.202292,0.001821,-0.002250,0.249990,0,0);}
.m64_c01094{transform:matrix(0.202332,0.003035,-0.003750,0.249972,0,0);-ms-transform:matrix(0.202332,0.003035,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.202332,0.003035,-0.003750,0.249972,0,0);}
.mfe_c01094{transform:matrix(0.202419,0.003239,-0.003999,0.249968,0,0);-ms-transform:matrix(0.202419,0.003239,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.202419,0.003239,-0.003999,0.249968,0,0);}
.m45_c01094{transform:matrix(0.202652,0.001824,-0.002250,0.249990,0,0);-ms-transform:matrix(0.202652,0.001824,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.202652,0.001824,-0.002250,0.249990,0,0);}
.m5e_c01094{transform:matrix(0.203002,0.003045,-0.003750,0.249972,0,0);-ms-transform:matrix(0.203002,0.003045,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.203002,0.003045,-0.003750,0.249972,0,0);}
.m44_c01094{transform:matrix(0.203797,0.001834,-0.002250,0.249990,0,0);-ms-transform:matrix(0.203797,0.001834,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.203797,0.001834,-0.002250,0.249990,0,0);}
.m59_c01094{transform:matrix(0.204337,0.003065,-0.003750,0.249972,0,0);-ms-transform:matrix(0.204337,0.003065,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.204337,0.003065,-0.003750,0.249972,0,0);}
.m4d_c01094{transform:matrix(0.204517,0.003068,-0.003750,0.249972,0,0);-ms-transform:matrix(0.204517,0.003068,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.204517,0.003068,-0.003750,0.249972,0,0);}
.mc_c01094{transform:matrix(0.204807,0.001843,-0.002250,0.249990,0,0);-ms-transform:matrix(0.204807,0.001843,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.204807,0.001843,-0.002250,0.249990,0,0);}
.m105_c01094{transform:matrix(0.205134,0.003282,-0.003999,0.249968,0,0);-ms-transform:matrix(0.205134,0.003282,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.205134,0.003282,-0.003999,0.249968,0,0);}
.m76_c01094{transform:matrix(0.205480,0.002877,-0.003500,0.249976,0,0);-ms-transform:matrix(0.205480,0.002877,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.205480,0.002877,-0.003500,0.249976,0,0);}
.md3_c01094{transform:matrix(0.205605,0.003495,-0.004249,0.249964,0,0);-ms-transform:matrix(0.205605,0.003495,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.205605,0.003495,-0.004249,0.249964,0,0);}
.mf4_c01094{transform:matrix(0.206029,0.003296,-0.003999,0.249968,0,0);-ms-transform:matrix(0.206029,0.003296,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.206029,0.003296,-0.003999,0.249968,0,0);}
.m100_c01094{transform:matrix(0.206174,0.003299,-0.003999,0.249968,0,0);-ms-transform:matrix(0.206174,0.003299,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.206174,0.003299,-0.003999,0.249968,0,0);}
.mcd_c01094{transform:matrix(0.206230,0.003506,-0.004249,0.249964,0,0);-ms-transform:matrix(0.206230,0.003506,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.206230,0.003506,-0.004249,0.249964,0,0);}
.m19_c01094{transform:matrix(0.206287,0.001857,-0.002250,0.249990,0,0);-ms-transform:matrix(0.206287,0.001857,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.206287,0.001857,-0.002250,0.249990,0,0);}
.m63_c01094{transform:matrix(0.206297,0.003094,-0.003750,0.249972,0,0);-ms-transform:matrix(0.206297,0.003094,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.206297,0.003094,-0.003750,0.249972,0,0);}
.m54_c01094{transform:matrix(0.206797,0.003102,-0.003750,0.249972,0,0);-ms-transform:matrix(0.206797,0.003102,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.206797,0.003102,-0.003750,0.249972,0,0);}
.m125_c01094{transform:matrix(0.206865,0.003517,-0.004249,0.249964,0,0);-ms-transform:matrix(0.206865,0.003517,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.206865,0.003517,-0.004249,0.249964,0,0);}
.m13c_c01094{transform:matrix(0.206970,0.002484,-0.003000,0.249982,0,0);-ms-transform:matrix(0.206970,0.002484,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.206970,0.002484,-0.003000,0.249982,0,0);}
.me6_c01094{transform:matrix(0.207368,0.003318,-0.003999,0.249968,0,0);-ms-transform:matrix(0.207368,0.003318,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.207368,0.003318,-0.003999,0.249968,0,0);}
.m31_c01094{transform:matrix(0.207427,0.001867,-0.002250,0.249990,0,0);-ms-transform:matrix(0.207427,0.001867,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.207427,0.001867,-0.002250,0.249990,0,0);}
.m13_c01094{transform:matrix(0.207887,0.001871,-0.002250,0.249990,0,0);-ms-transform:matrix(0.207887,0.001871,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.207887,0.001871,-0.002250,0.249990,0,0);}
.m73_c01094{transform:matrix(0.207995,0.002912,-0.003500,0.249976,0,0);-ms-transform:matrix(0.207995,0.002912,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.207995,0.002912,-0.003500,0.249976,0,0);}
.m12_c01094{transform:matrix(0.208602,0.001877,-0.002250,0.249990,0,0);-ms-transform:matrix(0.208602,0.001877,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.208602,0.001877,-0.002250,0.249990,0,0);}
.mc6_c01094{transform:matrix(0.208665,0.004591,-0.005499,0.249940,0,0);-ms-transform:matrix(0.208665,0.004591,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.208665,0.004591,-0.005499,0.249940,0,0);}
.m2c_c01094{transform:matrix(0.208667,0.001878,-0.002250,0.249990,0,0);-ms-transform:matrix(0.208667,0.001878,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.208667,0.001878,-0.002250,0.249990,0,0);}
.m119_c01094{transform:matrix(0.209273,0.003348,-0.003999,0.249968,0,0);-ms-transform:matrix(0.209273,0.003348,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.209273,0.003348,-0.003999,0.249968,0,0);}
.m7b_c01094{transform:matrix(0.209279,0.002930,-0.003500,0.249976,0,0);-ms-transform:matrix(0.209279,0.002930,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.209279,0.002930,-0.003500,0.249976,0,0);}
.m144_c01094{transform:matrix(0.209320,0.002512,-0.003000,0.249982,0,0);-ms-transform:matrix(0.209320,0.002512,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.209320,0.002512,-0.003000,0.249982,0,0);}
.m52_c01094{transform:matrix(0.209431,0.003141,-0.003750,0.249972,0,0);-ms-transform:matrix(0.209431,0.003141,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.209431,0.003141,-0.003750,0.249972,0,0);}
.m78_c01094{transform:matrix(0.209484,0.002933,-0.003500,0.249976,0,0);-ms-transform:matrix(0.209484,0.002933,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.209484,0.002933,-0.003500,0.249976,0,0);}
.m21_c01094{transform:matrix(0.209542,0.001886,-0.002250,0.249990,0,0);-ms-transform:matrix(0.209542,0.001886,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.209542,0.001886,-0.002250,0.249990,0,0);}
.m142_c01094{transform:matrix(0.209685,0.002516,-0.003000,0.249982,0,0);-ms-transform:matrix(0.209685,0.002516,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.209685,0.002516,-0.003000,0.249982,0,0);}
.mc9_c01094{transform:matrix(0.209884,0.004617,-0.005499,0.249940,0,0);-ms-transform:matrix(0.209884,0.004617,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.209884,0.004617,-0.005499,0.249940,0,0);}
.m117_c01094{transform:matrix(0.210583,0.003369,-0.003999,0.249968,0,0);-ms-transform:matrix(0.210583,0.003369,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.210583,0.003369,-0.003999,0.249968,0,0);}
.m10e_c01094{transform:matrix(0.210618,0.003370,-0.003999,0.249968,0,0);-ms-transform:matrix(0.210618,0.003370,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.210618,0.003370,-0.003999,0.249968,0,0);}
.ma_c01094{transform:matrix(0.211861,0.001907,-0.002250,0.249990,0,0);-ms-transform:matrix(0.211861,0.001907,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.211861,0.001907,-0.002250,0.249990,0,0);}
.m13d_c01094{transform:matrix(0.211870,0.002542,-0.003000,0.249982,0,0);-ms-transform:matrix(0.211870,0.002542,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.211870,0.002542,-0.003000,0.249982,0,0);}
.m1_c01094{transform:matrix(0.212025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212025,0.000000,0.000000,0.250000,0,0);}
.m106_c01094{transform:matrix(0.212493,0.003400,-0.003999,0.249968,0,0);-ms-transform:matrix(0.212493,0.003400,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.212493,0.003400,-0.003999,0.249968,0,0);}
.mfb_c01094{transform:matrix(0.212503,0.003400,-0.003999,0.249968,0,0);-ms-transform:matrix(0.212503,0.003400,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.212503,0.003400,-0.003999,0.249968,0,0);}
.m3f_c01094{transform:matrix(0.212541,0.001913,-0.002250,0.249990,0,0);-ms-transform:matrix(0.212541,0.001913,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.212541,0.001913,-0.002250,0.249990,0,0);}
.m29_c01094{transform:matrix(0.212611,0.001914,-0.002250,0.249990,0,0);-ms-transform:matrix(0.212611,0.001914,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.212611,0.001914,-0.002250,0.249990,0,0);}
.m110_c01094{transform:matrix(0.212898,0.003406,-0.003999,0.249968,0,0);-ms-transform:matrix(0.212898,0.003406,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.212898,0.003406,-0.003999,0.249968,0,0);}
.md2_c01094{transform:matrix(0.213039,0.003622,-0.004249,0.249964,0,0);-ms-transform:matrix(0.213039,0.003622,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.213039,0.003622,-0.004249,0.249964,0,0);}
.ma6_c01094{transform:matrix(0.213622,0.002350,-0.002750,0.249985,0,0);-ms-transform:matrix(0.213622,0.002350,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.213622,0.002350,-0.002750,0.249985,0,0);}
.m111_c01094{transform:matrix(0.214438,0.003431,-0.003999,0.249968,0,0);-ms-transform:matrix(0.214438,0.003431,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.214438,0.003431,-0.003999,0.249968,0,0);}
.m41_c01094{transform:matrix(0.214531,0.001931,-0.002250,0.249990,0,0);-ms-transform:matrix(0.214531,0.001931,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.214531,0.001931,-0.002250,0.249990,0,0);}
.m10b_c01094{transform:matrix(0.214867,0.003438,-0.003999,0.249968,0,0);-ms-transform:matrix(0.214867,0.003438,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.214867,0.003438,-0.003999,0.249968,0,0);}
.m13b_c01094{transform:matrix(0.214915,0.002579,-0.003000,0.249982,0,0);-ms-transform:matrix(0.214915,0.002579,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.214915,0.002579,-0.003000,0.249982,0,0);}
.m1b_c01094{transform:matrix(0.215091,0.001936,-0.002250,0.249990,0,0);-ms-transform:matrix(0.215091,0.001936,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.215091,0.001936,-0.002250,0.249990,0,0);}
.mf9_c01094{transform:matrix(0.215312,0.003445,-0.003999,0.249968,0,0);-ms-transform:matrix(0.215312,0.003445,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.215312,0.003445,-0.003999,0.249968,0,0);}
.mf2_c01094{transform:matrix(0.215332,0.003445,-0.003999,0.249968,0,0);-ms-transform:matrix(0.215332,0.003445,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.215332,0.003445,-0.003999,0.249968,0,0);}
.m49_c01094{transform:matrix(0.215361,0.001938,-0.002250,0.249990,0,0);-ms-transform:matrix(0.215361,0.001938,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.215361,0.001938,-0.002250,0.249990,0,0);}
.m43_c01094{transform:matrix(0.215706,0.001941,-0.002250,0.249990,0,0);-ms-transform:matrix(0.215706,0.001941,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.215706,0.001941,-0.002250,0.249990,0,0);}
.mce_c01094{transform:matrix(0.215729,0.003667,-0.004249,0.249964,0,0);-ms-transform:matrix(0.215729,0.003667,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.215729,0.003667,-0.004249,0.249964,0,0);}
.mf5_c01094{transform:matrix(0.215777,0.003452,-0.003999,0.249968,0,0);-ms-transform:matrix(0.215777,0.003452,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.215777,0.003452,-0.003999,0.249968,0,0);}
.med_c01094{transform:matrix(0.215787,0.003453,-0.003999,0.249968,0,0);-ms-transform:matrix(0.215787,0.003453,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.215787,0.003453,-0.003999,0.249968,0,0);}
.m10c_c01094{transform:matrix(0.215982,0.003456,-0.003999,0.249968,0,0);-ms-transform:matrix(0.215982,0.003456,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.215982,0.003456,-0.003999,0.249968,0,0);}
.m53_c01094{transform:matrix(0.217651,0.003265,-0.003750,0.249972,0,0);-ms-transform:matrix(0.217651,0.003265,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.217651,0.003265,-0.003750,0.249972,0,0);}
.m12c_c01094{transform:matrix(0.217664,0.003700,-0.004249,0.249964,0,0);-ms-transform:matrix(0.217664,0.003700,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.217664,0.003700,-0.004249,0.249964,0,0);}
.m4e_c01094{transform:matrix(0.217905,0.003269,-0.003750,0.249972,0,0);-ms-transform:matrix(0.217905,0.003269,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.217905,0.003269,-0.003750,0.249972,0,0);}
.m13a_c01094{transform:matrix(0.218015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218015,0.000000,0.000000,0.250000,0,0);}
.mcc_c01094{transform:matrix(0.218742,0.004812,-0.005499,0.249940,0,0);-ms-transform:matrix(0.218742,0.004812,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.218742,0.004812,-0.005499,0.249940,0,0);}
.m14d_c01094{transform:matrix(0.218747,0.002844,-0.003250,0.249979,0,0);-ms-transform:matrix(0.218747,0.002844,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.218747,0.002844,-0.003250,0.249979,0,0);}
.m116_c01094{transform:matrix(0.218897,0.003502,-0.003999,0.249968,0,0);-ms-transform:matrix(0.218897,0.003502,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.218897,0.003502,-0.003999,0.249968,0,0);}
.m2a_c01094{transform:matrix(0.218931,0.001970,-0.002250,0.249990,0,0);-ms-transform:matrix(0.218931,0.001970,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.218931,0.001970,-0.002250,0.249990,0,0);}
.m1e_c01094{transform:matrix(0.218941,0.001970,-0.002250,0.249990,0,0);-ms-transform:matrix(0.218941,0.001970,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.218941,0.001970,-0.002250,0.249990,0,0);}
.mf0_c01094{transform:matrix(0.219547,0.003513,-0.003999,0.249968,0,0);-ms-transform:matrix(0.219547,0.003513,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.219547,0.003513,-0.003999,0.249968,0,0);}
.mb1_c01094{transform:matrix(0.220177,0.002422,-0.002750,0.249985,0,0);-ms-transform:matrix(0.220177,0.002422,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.220177,0.002422,-0.002750,0.249985,0,0);}
.m2f_c01094{transform:matrix(0.220181,0.001982,-0.002250,0.249990,0,0);-ms-transform:matrix(0.220181,0.001982,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.220181,0.001982,-0.002250,0.249990,0,0);}
.m1d_c01094{transform:matrix(0.221781,0.001996,-0.002250,0.249990,0,0);-ms-transform:matrix(0.221781,0.001996,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.221781,0.001996,-0.002250,0.249990,0,0);}
.ma9_c01094{transform:matrix(0.221797,0.002440,-0.002750,0.249985,0,0);-ms-transform:matrix(0.221797,0.002440,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.221797,0.002440,-0.002750,0.249985,0,0);}
.m87_c01094{transform:matrix(0.221858,0.003106,-0.003500,0.249976,0,0);-ms-transform:matrix(0.221858,0.003106,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.221858,0.003106,-0.003500,0.249976,0,0);}
.m10a_c01094{transform:matrix(0.222247,0.003556,-0.003999,0.249968,0,0);-ms-transform:matrix(0.222247,0.003556,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.222247,0.003556,-0.003999,0.249968,0,0);}
.mcf_c01094{transform:matrix(0.222398,0.003781,-0.004249,0.249964,0,0);-ms-transform:matrix(0.222398,0.003781,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.222398,0.003781,-0.004249,0.249964,0,0);}
.m84_c01094{transform:matrix(0.222478,0.003115,-0.003500,0.249976,0,0);-ms-transform:matrix(0.222478,0.003115,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.222478,0.003115,-0.003500,0.249976,0,0);}
.m115_c01094{transform:matrix(0.222706,0.003563,-0.003999,0.249968,0,0);-ms-transform:matrix(0.222706,0.003563,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.222706,0.003563,-0.003999,0.249968,0,0);}
.m6_c01094{transform:matrix(0.222996,0.002007,-0.002250,0.249990,0,0);-ms-transform:matrix(0.222996,0.002007,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.222996,0.002007,-0.002250,0.249990,0,0);}
.mb3_c01094{transform:matrix(0.223174,0.004017,-0.004499,0.249960,0,0);-ms-transform:matrix(0.223174,0.004017,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.223174,0.004017,-0.004499,0.249960,0,0);}
.m108_c01094{transform:matrix(0.223206,0.003571,-0.003999,0.249968,0,0);-ms-transform:matrix(0.223206,0.003571,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.223206,0.003571,-0.003999,0.249968,0,0);}
.m81_c01094{transform:matrix(0.223248,0.003125,-0.003500,0.249976,0,0);-ms-transform:matrix(0.223248,0.003125,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.223248,0.003125,-0.003500,0.249976,0,0);}
.mc7_c01094{transform:matrix(0.223326,0.004913,-0.005499,0.249940,0,0);-ms-transform:matrix(0.223326,0.004913,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.223326,0.004913,-0.005499,0.249940,0,0);}
.mb_c01094{transform:matrix(0.223371,0.002010,-0.002250,0.249990,0,0);-ms-transform:matrix(0.223371,0.002010,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.223371,0.002010,-0.002250,0.249990,0,0);}
.m7f_c01094{transform:matrix(0.223653,0.003131,-0.003500,0.249976,0,0);-ms-transform:matrix(0.223653,0.003131,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.223653,0.003131,-0.003500,0.249976,0,0);}
.m5f_c01094{transform:matrix(0.223770,0.003357,-0.003750,0.249972,0,0);-ms-transform:matrix(0.223770,0.003357,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.223770,0.003357,-0.003750,0.249972,0,0);}
.m34_c01094{transform:matrix(0.223961,0.002016,-0.002250,0.249990,0,0);-ms-transform:matrix(0.223961,0.002016,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.223961,0.002016,-0.002250,0.249990,0,0);}
.m79_c01094{transform:matrix(0.224048,0.003137,-0.003500,0.249976,0,0);-ms-transform:matrix(0.224048,0.003137,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.224048,0.003137,-0.003500,0.249976,0,0);}
.m7_c01094{transform:matrix(0.224061,0.002017,-0.002250,0.249990,0,0);-ms-transform:matrix(0.224061,0.002017,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.224061,0.002017,-0.002250,0.249990,0,0);}
.m25_c01094{transform:matrix(0.225056,0.002026,-0.002250,0.249990,0,0);-ms-transform:matrix(0.225056,0.002026,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.225056,0.002026,-0.002250,0.249990,0,0);}
.md0_c01094{transform:matrix(0.225292,0.003830,-0.004249,0.249964,0,0);-ms-transform:matrix(0.225292,0.003830,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.225292,0.003830,-0.004249,0.249964,0,0);}
.m122_c01094{transform:matrix(0.226712,0.003854,-0.004249,0.249964,0,0);-ms-transform:matrix(0.226712,0.003854,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.226712,0.003854,-0.004249,0.249964,0,0);}
.m11c_c01094{transform:matrix(0.227236,0.003636,-0.003999,0.249968,0,0);-ms-transform:matrix(0.227236,0.003636,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.227236,0.003636,-0.003999,0.249968,0,0);}
.m12a_c01094{transform:matrix(0.227397,0.003866,-0.004249,0.249964,0,0);-ms-transform:matrix(0.227397,0.003866,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.227397,0.003866,-0.004249,0.249964,0,0);}
.ma7_c01094{transform:matrix(0.227931,0.002507,-0.002750,0.249985,0,0);-ms-transform:matrix(0.227931,0.002507,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.227931,0.002507,-0.002750,0.249985,0,0);}
.mee_c01094{transform:matrix(0.228481,0.003656,-0.003999,0.249968,0,0);-ms-transform:matrix(0.228481,0.003656,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.228481,0.003656,-0.003999,0.249968,0,0);}
.md9_c01094{transform:matrix(0.230186,0.003683,-0.003999,0.249968,0,0);-ms-transform:matrix(0.230186,0.003683,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.230186,0.003683,-0.003999,0.249968,0,0);}
.m112_c01094{transform:matrix(0.230191,0.003683,-0.003999,0.249968,0,0);-ms-transform:matrix(0.230191,0.003683,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.230191,0.003683,-0.003999,0.249968,0,0);}
.mbb_c01094{transform:matrix(0.230508,0.004149,-0.004499,0.249960,0,0);-ms-transform:matrix(0.230508,0.004149,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.230508,0.004149,-0.004499,0.249960,0,0);}
.m109_c01094{transform:matrix(0.230520,0.003688,-0.003999,0.249968,0,0);-ms-transform:matrix(0.230520,0.003688,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.230520,0.003688,-0.003999,0.249968,0,0);}
.mb0_c01094{transform:matrix(0.230771,0.002538,-0.002750,0.249985,0,0);-ms-transform:matrix(0.230771,0.002538,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.230771,0.002538,-0.002750,0.249985,0,0);}
.md5_c01094{transform:matrix(0.230772,0.003923,-0.004249,0.249964,0,0);-ms-transform:matrix(0.230772,0.003923,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.230772,0.003923,-0.004249,0.249964,0,0);}
.mca_c01094{transform:matrix(0.230859,0.005079,-0.005499,0.249940,0,0);-ms-transform:matrix(0.230859,0.005079,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.230859,0.005079,-0.005499,0.249940,0,0);}
.md1_c01094{transform:matrix(0.232036,0.003945,-0.004249,0.249964,0,0);-ms-transform:matrix(0.232036,0.003945,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.232036,0.003945,-0.004249,0.249964,0,0);}
.m4_c01094{transform:matrix(0.232056,0.002089,-0.002250,0.249990,0,0);-ms-transform:matrix(0.232056,0.002089,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.232056,0.002089,-0.002250,0.249990,0,0);}
.mae_c01094{transform:matrix(0.232711,0.002560,-0.002750,0.249985,0,0);-ms-transform:matrix(0.232711,0.002560,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.232711,0.002560,-0.002750,0.249985,0,0);}
.mdb_c01094{transform:matrix(0.232955,0.003727,-0.003999,0.249968,0,0);-ms-transform:matrix(0.232955,0.003727,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.232955,0.003727,-0.003999,0.249968,0,0);}
.m11f_c01094{transform:matrix(0.233646,0.003972,-0.004249,0.249964,0,0);-ms-transform:matrix(0.233646,0.003972,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.233646,0.003972,-0.004249,0.249964,0,0);}
.m23_c01094{transform:matrix(0.234176,0.002108,-0.002250,0.249990,0,0);-ms-transform:matrix(0.234176,0.002108,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.234176,0.002108,-0.002250,0.249990,0,0);}
.mea_c01094{transform:matrix(0.235100,0.003762,-0.003999,0.249968,0,0);-ms-transform:matrix(0.235100,0.003762,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.235100,0.003762,-0.003999,0.249968,0,0);}
.m26_c01094{transform:matrix(0.235255,0.002117,-0.002250,0.249990,0,0);-ms-transform:matrix(0.235255,0.002117,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.235255,0.002117,-0.002250,0.249990,0,0);}
.m1f_c01094{transform:matrix(0.236815,0.002131,-0.002250,0.249990,0,0);-ms-transform:matrix(0.236815,0.002131,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.236815,0.002131,-0.002250,0.249990,0,0);}
.ma8_c01094{transform:matrix(0.236851,0.002605,-0.002750,0.249985,0,0);-ms-transform:matrix(0.236851,0.002605,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.236851,0.002605,-0.002750,0.249985,0,0);}
.m71_c01094{transform:matrix(0.237582,0.003326,-0.003500,0.249976,0,0);-ms-transform:matrix(0.237582,0.003326,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.237582,0.003326,-0.003500,0.249976,0,0);}
.mef_c01094{transform:matrix(0.237695,0.003803,-0.003999,0.249968,0,0);-ms-transform:matrix(0.237695,0.003803,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.237695,0.003803,-0.003999,0.249968,0,0);}
.m118_c01094{transform:matrix(0.237775,0.003804,-0.003999,0.249968,0,0);-ms-transform:matrix(0.237775,0.003804,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.237775,0.003804,-0.003999,0.249968,0,0);}
.md4_c01094{transform:matrix(0.238341,0.004052,-0.004249,0.249964,0,0);-ms-transform:matrix(0.238341,0.004052,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.238341,0.004052,-0.004249,0.249964,0,0);}
.m20_c01094{transform:matrix(0.238440,0.002146,-0.002250,0.249990,0,0);-ms-transform:matrix(0.238440,0.002146,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.238440,0.002146,-0.002250,0.249990,0,0);}
.m28_c01094{transform:matrix(0.238465,0.002146,-0.002250,0.249990,0,0);-ms-transform:matrix(0.238465,0.002146,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.238465,0.002146,-0.002250,0.249990,0,0);}
.md8_c01094{transform:matrix(0.238504,0.003816,-0.003999,0.249968,0,0);-ms-transform:matrix(0.238504,0.003816,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.238504,0.003816,-0.003999,0.249968,0,0);}
.m39_c01094{transform:matrix(0.238560,0.002147,-0.002250,0.249990,0,0);-ms-transform:matrix(0.238560,0.002147,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.238560,0.002147,-0.002250,0.249990,0,0);}
.mc4_c01094{transform:matrix(0.238582,0.005249,-0.005499,0.249940,0,0);-ms-transform:matrix(0.238582,0.005249,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.238582,0.005249,-0.005499,0.249940,0,0);}
.m2e_c01094{transform:matrix(0.238690,0.002148,-0.002250,0.249990,0,0);-ms-transform:matrix(0.238690,0.002148,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.238690,0.002148,-0.002250,0.249990,0,0);}
.md6_c01094{transform:matrix(0.238726,0.004058,-0.004249,0.249964,0,0);-ms-transform:matrix(0.238726,0.004058,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.238726,0.004058,-0.004249,0.249964,0,0);}
.m113_c01094{transform:matrix(0.239639,0.003834,-0.003999,0.249968,0,0);-ms-transform:matrix(0.239639,0.003834,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.239639,0.003834,-0.003999,0.249968,0,0);}
.m1c_c01094{transform:matrix(0.240745,0.002167,-0.002250,0.249990,0,0);-ms-transform:matrix(0.240745,0.002167,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.240745,0.002167,-0.002250,0.249990,0,0);}
.mba_c01094{transform:matrix(0.241461,0.004346,-0.004499,0.249960,0,0);-ms-transform:matrix(0.241461,0.004346,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.241461,0.004346,-0.004499,0.249960,0,0);}
.m8c_c01094{transform:matrix(0.242026,0.003388,-0.003500,0.249976,0,0);-ms-transform:matrix(0.242026,0.003388,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.242026,0.003388,-0.003500,0.249976,0,0);}
.mad_c01094{transform:matrix(0.242335,0.002666,-0.002750,0.249985,0,0);-ms-transform:matrix(0.242335,0.002666,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.242335,0.002666,-0.002750,0.249985,0,0);}
.mec_c01094{transform:matrix(0.242404,0.003878,-0.003999,0.249968,0,0);-ms-transform:matrix(0.242404,0.003878,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.242404,0.003878,-0.003999,0.249968,0,0);}
.m2d_c01094{transform:matrix(0.242655,0.002184,-0.002250,0.249990,0,0);-ms-transform:matrix(0.242655,0.002184,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.242655,0.002184,-0.002250,0.249990,0,0);}
.m74_c01094{transform:matrix(0.243691,0.003412,-0.003500,0.249976,0,0);-ms-transform:matrix(0.243691,0.003412,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.243691,0.003412,-0.003500,0.249976,0,0);}
.m7d_c01094{transform:matrix(0.243726,0.003412,-0.003500,0.249976,0,0);-ms-transform:matrix(0.243726,0.003412,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.243726,0.003412,-0.003500,0.249976,0,0);}
.mc3_c01094{transform:matrix(0.243776,0.005363,-0.005499,0.249940,0,0);-ms-transform:matrix(0.243776,0.005363,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.243776,0.005363,-0.005499,0.249940,0,0);}
.me_c01094{transform:matrix(0.244020,0.002196,-0.002250,0.249990,0,0);-ms-transform:matrix(0.244020,0.002196,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.244020,0.002196,-0.002250,0.249990,0,0);}
.m114_c01094{transform:matrix(0.244529,0.003912,-0.003999,0.249968,0,0);-ms-transform:matrix(0.244529,0.003912,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.244529,0.003912,-0.003999,0.249968,0,0);}
.m11a_c01094{transform:matrix(0.244544,0.003913,-0.003999,0.249968,0,0);-ms-transform:matrix(0.244544,0.003913,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.244544,0.003913,-0.003999,0.249968,0,0);}
.m3_c01094{transform:matrix(0.244590,0.002201,-0.002250,0.249990,0,0);-ms-transform:matrix(0.244590,0.002201,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.244590,0.002201,-0.002250,0.249990,0,0);}
.m120_c01094{transform:matrix(0.245425,0.004172,-0.004249,0.249964,0,0);-ms-transform:matrix(0.245425,0.004172,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.245425,0.004172,-0.004249,0.249964,0,0);}
.me0_c01094{transform:matrix(0.245429,0.003927,-0.003999,0.249968,0,0);-ms-transform:matrix(0.245429,0.003927,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.245429,0.003927,-0.003999,0.249968,0,0);}
.m80_c01094{transform:matrix(0.245451,0.003436,-0.003500,0.249976,0,0);-ms-transform:matrix(0.245451,0.003436,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.245451,0.003436,-0.003500,0.249976,0,0);}
.m6e_c01094{transform:matrix(0.245807,0.003687,-0.003750,0.249972,0,0);-ms-transform:matrix(0.245807,0.003687,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.245807,0.003687,-0.003750,0.249972,0,0);}
.m94_c01094{transform:matrix(0.245811,0.003441,-0.003500,0.249976,0,0);-ms-transform:matrix(0.245811,0.003441,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.245811,0.003441,-0.003500,0.249976,0,0);}
.maa_c01094{transform:matrix(0.246320,0.002710,-0.002750,0.249985,0,0);-ms-transform:matrix(0.246320,0.002710,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.246320,0.002710,-0.002750,0.249985,0,0);}
.mb7_c01094{transform:matrix(0.246335,0.004434,-0.004499,0.249960,0,0);-ms-transform:matrix(0.246335,0.004434,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.246335,0.004434,-0.004499,0.249960,0,0);}
.m77_c01094{transform:matrix(0.246456,0.003450,-0.003500,0.249976,0,0);-ms-transform:matrix(0.246456,0.003450,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.246456,0.003450,-0.003500,0.249976,0,0);}
.me1_c01094{transform:matrix(0.246478,0.003944,-0.003999,0.249968,0,0);-ms-transform:matrix(0.246478,0.003944,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.246478,0.003944,-0.003999,0.249968,0,0);}
.m9a_c01094{transform:matrix(0.246596,0.003452,-0.003500,0.249976,0,0);-ms-transform:matrix(0.246596,0.003452,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.246596,0.003452,-0.003500,0.249976,0,0);}
.ma5_c01094{transform:matrix(0.246641,0.003453,-0.003500,0.249976,0,0);-ms-transform:matrix(0.246641,0.003453,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.246641,0.003453,-0.003500,0.249976,0,0);}
.m88_c01094{transform:matrix(0.246956,0.003457,-0.003500,0.249976,0,0);-ms-transform:matrix(0.246956,0.003457,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.246956,0.003457,-0.003500,0.249976,0,0);}
.me9_c01094{transform:matrix(0.247073,0.003953,-0.003999,0.249968,0,0);-ms-transform:matrix(0.247073,0.003953,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.247073,0.003953,-0.003999,0.249968,0,0);}
.m2b_c01094{transform:matrix(0.247135,0.002224,-0.002250,0.249990,0,0);-ms-transform:matrix(0.247135,0.002224,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.247135,0.002224,-0.002250,0.249990,0,0);}
.m91_c01094{transform:matrix(0.247331,0.003463,-0.003500,0.249976,0,0);-ms-transform:matrix(0.247331,0.003463,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.247331,0.003463,-0.003500,0.249976,0,0);}
.m11b_c01094{transform:matrix(0.247638,0.003962,-0.003999,0.249968,0,0);-ms-transform:matrix(0.247638,0.003962,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.247638,0.003962,-0.003999,0.249968,0,0);}
.mc5_c01094{transform:matrix(0.248410,0.005465,-0.005499,0.249940,0,0);-ms-transform:matrix(0.248410,0.005465,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.248410,0.005465,-0.005499,0.249940,0,0);}
.mdf_c01094{transform:matrix(0.248628,0.003978,-0.003999,0.249968,0,0);-ms-transform:matrix(0.248628,0.003978,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.248628,0.003978,-0.003999,0.249968,0,0);}
.mb2_c01094{transform:matrix(0.248660,0.002735,-0.002750,0.249985,0,0);-ms-transform:matrix(0.248660,0.002735,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.248660,0.002735,-0.002750,0.249985,0,0);}
.m75_c01094{transform:matrix(0.249216,0.003489,-0.003500,0.249976,0,0);-ms-transform:matrix(0.249216,0.003489,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.249216,0.003489,-0.003500,0.249976,0,0);}
.m9f_c01094{transform:matrix(0.249591,0.003494,-0.003500,0.249976,0,0);-ms-transform:matrix(0.249591,0.003494,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.249591,0.003494,-0.003500,0.249976,0,0);}
.mf3_c01094{transform:matrix(0.249748,0.003996,-0.003999,0.249968,0,0);-ms-transform:matrix(0.249748,0.003996,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.249748,0.003996,-0.003999,0.249968,0,0);}
.m128_c01094{transform:matrix(0.250119,0.004252,-0.004249,0.249964,0,0);-ms-transform:matrix(0.250119,0.004252,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.250119,0.004252,-0.004249,0.249964,0,0);}
.m32_c01094{transform:matrix(0.250260,0.002252,-0.002250,0.249990,0,0);-ms-transform:matrix(0.250260,0.002252,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.250260,0.002252,-0.002250,0.249990,0,0);}
.m9c_c01094{transform:matrix(0.250365,0.003505,-0.003500,0.249976,0,0);-ms-transform:matrix(0.250365,0.003505,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.250365,0.003505,-0.003500,0.249976,0,0);}
.meb_c01094{transform:matrix(0.250403,0.004006,-0.003999,0.249968,0,0);-ms-transform:matrix(0.250403,0.004006,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.250403,0.004006,-0.003999,0.249968,0,0);}
.m123_c01094{transform:matrix(0.250884,0.004265,-0.004249,0.249964,0,0);-ms-transform:matrix(0.250884,0.004265,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.250884,0.004265,-0.004249,0.249964,0,0);}
.mdd_c01094{transform:matrix(0.251093,0.004017,-0.003999,0.249968,0,0);-ms-transform:matrix(0.251093,0.004017,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.251093,0.004017,-0.003999,0.249968,0,0);}
.m135_c01094{transform:matrix(0.252079,0.004285,-0.004249,0.249964,0,0);-ms-transform:matrix(0.252079,0.004285,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.252079,0.004285,-0.004249,0.249964,0,0);}
.mcb_c01094{transform:matrix(0.252099,0.005546,-0.005499,0.249940,0,0);-ms-transform:matrix(0.252099,0.005546,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.252099,0.005546,-0.005499,0.249940,0,0);}
.m38_c01094{transform:matrix(0.252105,0.002269,-0.002250,0.249990,0,0);-ms-transform:matrix(0.252105,0.002269,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.252105,0.002269,-0.002250,0.249990,0,0);}
.me8_c01094{transform:matrix(0.253338,0.004053,-0.003999,0.249968,0,0);-ms-transform:matrix(0.253338,0.004053,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.253338,0.004053,-0.003999,0.249968,0,0);}
.mc0_c01094{transform:matrix(0.253359,0.004560,-0.004499,0.249960,0,0);-ms-transform:matrix(0.253359,0.004560,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.253359,0.004560,-0.004499,0.249960,0,0);}
.m66_c01094{transform:matrix(0.253711,0.003806,-0.003750,0.249972,0,0);-ms-transform:matrix(0.253711,0.003806,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.253711,0.003806,-0.003750,0.249972,0,0);}
.m8f_c01094{transform:matrix(0.253715,0.003552,-0.003500,0.249976,0,0);-ms-transform:matrix(0.253715,0.003552,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.253715,0.003552,-0.003500,0.249976,0,0);}
.m3a_c01094{transform:matrix(0.253835,0.002285,-0.002250,0.249990,0,0);-ms-transform:matrix(0.253835,0.002285,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.253835,0.002285,-0.002250,0.249990,0,0);}
.m72_c01094{transform:matrix(0.254485,0.003563,-0.003500,0.249976,0,0);-ms-transform:matrix(0.254485,0.003563,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.254485,0.003563,-0.003500,0.249976,0,0);}
.m4b_c01094{transform:matrix(0.254570,0.002291,-0.002250,0.249990,0,0);-ms-transform:matrix(0.254570,0.002291,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.254570,0.002291,-0.002250,0.249990,0,0);}
.m89_c01094{transform:matrix(0.254845,0.003568,-0.003500,0.249976,0,0);-ms-transform:matrix(0.254845,0.003568,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.254845,0.003568,-0.003500,0.249976,0,0);}
.m5_c01094{transform:matrix(0.255235,0.002297,-0.002250,0.249990,0,0);-ms-transform:matrix(0.255235,0.002297,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.255235,0.002297,-0.002250,0.249990,0,0);}
.md_c01094{transform:matrix(0.255350,0.002298,-0.002250,0.249990,0,0);-ms-transform:matrix(0.255350,0.002298,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.255350,0.002298,-0.002250,0.249990,0,0);}
.mb6_c01094{transform:matrix(0.256089,0.004610,-0.004499,0.249960,0,0);-ms-transform:matrix(0.256089,0.004610,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.256089,0.004610,-0.004499,0.249960,0,0);}
.mdc_c01094{transform:matrix(0.256727,0.004108,-0.003999,0.249968,0,0);-ms-transform:matrix(0.256727,0.004108,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.256727,0.004108,-0.003999,0.249968,0,0);}
.m139_c01094{transform:matrix(0.257063,0.004370,-0.004249,0.249964,0,0);-ms-transform:matrix(0.257063,0.004370,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.257063,0.004370,-0.004249,0.249964,0,0);}
.m6b_c01094{transform:matrix(0.257161,0.003857,-0.003750,0.249972,0,0);-ms-transform:matrix(0.257161,0.003857,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.257161,0.003857,-0.003750,0.249972,0,0);}
.m95_c01094{transform:matrix(0.257265,0.003602,-0.003500,0.249976,0,0);-ms-transform:matrix(0.257265,0.003602,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.257265,0.003602,-0.003500,0.249976,0,0);}
.me5_c01094{transform:matrix(0.257267,0.004116,-0.003999,0.249968,0,0);-ms-transform:matrix(0.257267,0.004116,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.257267,0.004116,-0.003999,0.249968,0,0);}
.mc8_c01094{transform:matrix(0.257538,0.005666,-0.005499,0.249940,0,0);-ms-transform:matrix(0.257538,0.005666,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.257538,0.005666,-0.005499,0.249940,0,0);}
.m36_c01094{transform:matrix(0.258515,0.002327,-0.002250,0.249990,0,0);-ms-transform:matrix(0.258515,0.002327,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.258515,0.002327,-0.002250,0.249990,0,0);}
.m33_c01094{transform:matrix(0.258895,0.002330,-0.002250,0.249990,0,0);-ms-transform:matrix(0.258895,0.002330,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.258895,0.002330,-0.002250,0.249990,0,0);}
.m9_c01094{transform:matrix(0.259449,0.002335,-0.002250,0.249990,0,0);-ms-transform:matrix(0.259449,0.002335,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.259449,0.002335,-0.002250,0.249990,0,0);}
.maf_c01094{transform:matrix(0.259484,0.002854,-0.002750,0.249985,0,0);-ms-transform:matrix(0.259484,0.002854,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.259484,0.002854,-0.002750,0.249985,0,0);}
.m136_c01094{transform:matrix(0.259802,0.004417,-0.004249,0.249964,0,0);-ms-transform:matrix(0.259802,0.004417,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.259802,0.004417,-0.004249,0.249964,0,0);}
.m7a_c01094{transform:matrix(0.259835,0.003638,-0.003500,0.249976,0,0);-ms-transform:matrix(0.259835,0.003638,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.259835,0.003638,-0.003500,0.249976,0,0);}
.m93_c01094{transform:matrix(0.260229,0.003643,-0.003500,0.249976,0,0);-ms-transform:matrix(0.260229,0.003643,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.260229,0.003643,-0.003500,0.249976,0,0);}
.m126_c01094{transform:matrix(0.261047,0.004438,-0.004249,0.249964,0,0);-ms-transform:matrix(0.261047,0.004438,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.261047,0.004438,-0.004249,0.249964,0,0);}
.me7_c01094{transform:matrix(0.261307,0.004181,-0.003999,0.249968,0,0);-ms-transform:matrix(0.261307,0.004181,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.261307,0.004181,-0.003999,0.249968,0,0);}
.m85_c01094{transform:matrix(0.261514,0.003661,-0.003500,0.249976,0,0);-ms-transform:matrix(0.261514,0.003661,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.261514,0.003661,-0.003500,0.249976,0,0);}
.m83_c01094{transform:matrix(0.261914,0.003667,-0.003500,0.249976,0,0);-ms-transform:matrix(0.261914,0.003667,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.261914,0.003667,-0.003500,0.249976,0,0);}
.m11e_c01094{transform:matrix(0.262201,0.004195,-0.003999,0.249968,0,0);-ms-transform:matrix(0.262201,0.004195,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.262201,0.004195,-0.003999,0.249968,0,0);}
.mda_c01094{transform:matrix(0.262276,0.004196,-0.003999,0.249968,0,0);-ms-transform:matrix(0.262276,0.004196,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.262276,0.004196,-0.003999,0.249968,0,0);}
.m68_c01094{transform:matrix(0.264480,0.003967,-0.003750,0.249972,0,0);-ms-transform:matrix(0.264480,0.003967,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.264480,0.003967,-0.003750,0.249972,0,0);}
.m30_c01094{transform:matrix(0.264574,0.002381,-0.002250,0.249990,0,0);-ms-transform:matrix(0.264574,0.002381,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.264574,0.002381,-0.002250,0.249990,0,0);}
.m82_c01094{transform:matrix(0.264649,0.003705,-0.003500,0.249976,0,0);-ms-transform:matrix(0.264649,0.003705,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.264649,0.003705,-0.003500,0.249976,0,0);}
.mb9_c01094{transform:matrix(0.265867,0.004786,-0.004499,0.249960,0,0);-ms-transform:matrix(0.265867,0.004786,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.265867,0.004786,-0.004499,0.249960,0,0);}
.mbd_c01094{transform:matrix(0.267467,0.004814,-0.004499,0.249960,0,0);-ms-transform:matrix(0.267467,0.004814,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.267467,0.004814,-0.004499,0.249960,0,0);}
.m67_c01094{transform:matrix(0.267745,0.004016,-0.003750,0.249972,0,0);-ms-transform:matrix(0.267745,0.004016,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.267745,0.004016,-0.003750,0.249972,0,0);}
.mbe_c01094{transform:matrix(0.267757,0.004820,-0.004499,0.249960,0,0);-ms-transform:matrix(0.267757,0.004820,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.267757,0.004820,-0.004499,0.249960,0,0);}
.m37_c01094{transform:matrix(0.268334,0.002415,-0.002250,0.249990,0,0);-ms-transform:matrix(0.268334,0.002415,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.268334,0.002415,-0.002250,0.249990,0,0);}
.m7e_c01094{transform:matrix(0.268439,0.003758,-0.003500,0.249976,0,0);-ms-transform:matrix(0.268439,0.003758,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.268439,0.003758,-0.003500,0.249976,0,0);}
.m8b_c01094{transform:matrix(0.268559,0.003760,-0.003500,0.249976,0,0);-ms-transform:matrix(0.268559,0.003760,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.268559,0.003760,-0.003500,0.249976,0,0);}
.m127_c01094{transform:matrix(0.268766,0.004569,-0.004249,0.249964,0,0);-ms-transform:matrix(0.268766,0.004569,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.268766,0.004569,-0.004249,0.249964,0,0);}
.m138_c01094{transform:matrix(0.269971,0.004590,-0.004249,0.249964,0,0);-ms-transform:matrix(0.269971,0.004590,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.269971,0.004590,-0.004249,0.249964,0,0);}
.ma1_c01094{transform:matrix(0.271003,0.003794,-0.003500,0.249976,0,0);-ms-transform:matrix(0.271003,0.003794,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.271003,0.003794,-0.003500,0.249976,0,0);}
.m3c_c01094{transform:matrix(0.271349,0.002442,-0.002250,0.249990,0,0);-ms-transform:matrix(0.271349,0.002442,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.271349,0.002442,-0.002250,0.249990,0,0);}
.m132_c01094{transform:matrix(0.271391,0.004614,-0.004249,0.249964,0,0);-ms-transform:matrix(0.271391,0.004614,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.271391,0.004614,-0.004249,0.249964,0,0);}
.m12b_c01094{transform:matrix(0.271961,0.004623,-0.004249,0.249964,0,0);-ms-transform:matrix(0.271961,0.004623,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.271961,0.004623,-0.004249,0.249964,0,0);}
.m86_c01094{transform:matrix(0.272298,0.003812,-0.003500,0.249976,0,0);-ms-transform:matrix(0.272298,0.003812,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.272298,0.003812,-0.003500,0.249976,0,0);}
.m69_c01094{transform:matrix(0.273119,0.004097,-0.003750,0.249972,0,0);-ms-transform:matrix(0.273119,0.004097,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.273119,0.004097,-0.003750,0.249972,0,0);}
.m133_c01094{transform:matrix(0.273261,0.004645,-0.004249,0.249964,0,0);-ms-transform:matrix(0.273261,0.004645,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.273261,0.004645,-0.004249,0.249964,0,0);}
.mbc_c01094{transform:matrix(0.273396,0.004921,-0.004499,0.249960,0,0);-ms-transform:matrix(0.273396,0.004921,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.273396,0.004921,-0.004499,0.249960,0,0);}
.m35_c01094{transform:matrix(0.273619,0.002463,-0.002250,0.249990,0,0);-ms-transform:matrix(0.273619,0.002463,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.273619,0.002463,-0.002250,0.249990,0,0);}
.m121_c01094{transform:matrix(0.273955,0.004657,-0.004249,0.249964,0,0);-ms-transform:matrix(0.273955,0.004657,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.273955,0.004657,-0.004249,0.249964,0,0);}
.me3_c01094{transform:matrix(0.274750,0.004396,-0.003999,0.249968,0,0);-ms-transform:matrix(0.274750,0.004396,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.274750,0.004396,-0.003999,0.249968,0,0);}
.m6a_c01094{transform:matrix(0.274764,0.004121,-0.003750,0.249972,0,0);-ms-transform:matrix(0.274764,0.004121,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.274764,0.004121,-0.003750,0.249972,0,0);}
.m137_c01094{transform:matrix(0.274870,0.004673,-0.004249,0.249964,0,0);-ms-transform:matrix(0.274870,0.004673,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.274870,0.004673,-0.004249,0.249964,0,0);}
.m9d_c01094{transform:matrix(0.275288,0.003854,-0.003500,0.249976,0,0);-ms-transform:matrix(0.275288,0.003854,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.275288,0.003854,-0.003500,0.249976,0,0);}
.me2_c01094{transform:matrix(0.276295,0.004421,-0.003999,0.249968,0,0);-ms-transform:matrix(0.276295,0.004421,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.276295,0.004421,-0.003999,0.249968,0,0);}
.m124_c01094{transform:matrix(0.277010,0.004709,-0.004249,0.249964,0,0);-ms-transform:matrix(0.277010,0.004709,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.277010,0.004709,-0.004249,0.249964,0,0);}
.m129_c01094{transform:matrix(0.277280,0.004714,-0.004249,0.249964,0,0);-ms-transform:matrix(0.277280,0.004714,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.277280,0.004714,-0.004249,0.249964,0,0);}
.mb4_c01094{transform:matrix(0.277385,0.004993,-0.004499,0.249960,0,0);-ms-transform:matrix(0.277385,0.004993,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.277385,0.004993,-0.004499,0.249960,0,0);}
.mde_c01094{transform:matrix(0.277859,0.004446,-0.003999,0.249968,0,0);-ms-transform:matrix(0.277859,0.004446,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.277859,0.004446,-0.003999,0.249968,0,0);}
.m8e_c01094{transform:matrix(0.278213,0.003895,-0.003500,0.249976,0,0);-ms-transform:matrix(0.278213,0.003895,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.278213,0.003895,-0.003500,0.249976,0,0);}
.m134_c01094{transform:matrix(0.281909,0.004792,-0.004249,0.249964,0,0);-ms-transform:matrix(0.281909,0.004792,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.281909,0.004792,-0.004249,0.249964,0,0);}
.m3b_c01094{transform:matrix(0.285388,0.002568,-0.002250,0.249990,0,0);-ms-transform:matrix(0.285388,0.002568,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.285388,0.002568,-0.002250,0.249990,0,0);}
.m70_c01094{transform:matrix(0.285613,0.004284,-0.003750,0.249972,0,0);-ms-transform:matrix(0.285613,0.004284,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.285613,0.004284,-0.003750,0.249972,0,0);}
.ma0_c01094{transform:matrix(0.287217,0.004021,-0.003500,0.249976,0,0);-ms-transform:matrix(0.287217,0.004021,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.287217,0.004021,-0.003500,0.249976,0,0);}
.m97_c01094{transform:matrix(0.288682,0.004042,-0.003500,0.249976,0,0);-ms-transform:matrix(0.288682,0.004042,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.288682,0.004042,-0.003500,0.249976,0,0);}
.m92_c01094{transform:matrix(0.289557,0.004054,-0.003500,0.249976,0,0);-ms-transform:matrix(0.289557,0.004054,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.289557,0.004054,-0.003500,0.249976,0,0);}
.m65_c01094{transform:matrix(0.289757,0.004346,-0.003750,0.249972,0,0);-ms-transform:matrix(0.289757,0.004346,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.289757,0.004346,-0.003750,0.249972,0,0);}
.ma2_c01094{transform:matrix(0.289942,0.004059,-0.003500,0.249976,0,0);-ms-transform:matrix(0.289942,0.004059,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.289942,0.004059,-0.003500,0.249976,0,0);}
.m96_c01094{transform:matrix(0.290027,0.004060,-0.003500,0.249976,0,0);-ms-transform:matrix(0.290027,0.004060,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.290027,0.004060,-0.003500,0.249976,0,0);}
.m8d_c01094{transform:matrix(0.291091,0.004075,-0.003500,0.249976,0,0);-ms-transform:matrix(0.291091,0.004075,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.291091,0.004075,-0.003500,0.249976,0,0);}
.mb8_c01094{transform:matrix(0.291988,0.005256,-0.004499,0.249960,0,0);-ms-transform:matrix(0.291988,0.005256,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.291988,0.005256,-0.004499,0.249960,0,0);}
.ma4_c01094{transform:matrix(0.292471,0.004095,-0.003500,0.249976,0,0);-ms-transform:matrix(0.292471,0.004095,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.292471,0.004095,-0.003500,0.249976,0,0);}
.me4_c01094{transform:matrix(0.293327,0.004693,-0.003999,0.249968,0,0);-ms-transform:matrix(0.293327,0.004693,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.293327,0.004693,-0.003999,0.249968,0,0);}
.m6d_c01094{transform:matrix(0.295487,0.004432,-0.003750,0.249972,0,0);-ms-transform:matrix(0.295487,0.004432,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.295487,0.004432,-0.003750,0.249972,0,0);}
.m98_c01094{transform:matrix(0.295991,0.004144,-0.003500,0.249976,0,0);-ms-transform:matrix(0.295991,0.004144,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.295991,0.004144,-0.003500,0.249976,0,0);}
.m90_c01094{transform:matrix(0.297531,0.004165,-0.003500,0.249976,0,0);-ms-transform:matrix(0.297531,0.004165,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.297531,0.004165,-0.003500,0.249976,0,0);}
.mbf_c01094{transform:matrix(0.297642,0.005358,-0.004499,0.249960,0,0);-ms-transform:matrix(0.297642,0.005358,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.297642,0.005358,-0.004499,0.249960,0,0);}
.m6f_c01094{transform:matrix(0.299381,0.004491,-0.003750,0.249972,0,0);-ms-transform:matrix(0.299381,0.004491,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.299381,0.004491,-0.003750,0.249972,0,0);}
.m9e_c01094{transform:matrix(0.301645,0.004223,-0.003500,0.249976,0,0);-ms-transform:matrix(0.301645,0.004223,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.301645,0.004223,-0.003500,0.249976,0,0);}
.m9b_c01094{transform:matrix(0.302320,0.004232,-0.003500,0.249976,0,0);-ms-transform:matrix(0.302320,0.004232,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.302320,0.004232,-0.003500,0.249976,0,0);}
.m6c_c01094{transform:matrix(0.302426,0.004536,-0.003750,0.249972,0,0);-ms-transform:matrix(0.302426,0.004536,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.302426,0.004536,-0.003750,0.249972,0,0);}
.mb5_c01094{transform:matrix(0.306100,0.005510,-0.004499,0.249960,0,0);-ms-transform:matrix(0.306100,0.005510,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.306100,0.005510,-0.004499,0.249960,0,0);}
.ma3_c01094{transform:matrix(0.308720,0.004322,-0.003500,0.249976,0,0);-ms-transform:matrix(0.308720,0.004322,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.308720,0.004322,-0.003500,0.249976,0,0);}
.mab_c01094{transform:matrix(0.319501,0.003515,-0.002750,0.249985,0,0);-ms-transform:matrix(0.319501,0.003515,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.319501,0.003515,-0.002750,0.249985,0,0);}
.m8_c01094{transform:matrix(0.351741,0.003166,-0.002250,0.249990,0,0);-ms-transform:matrix(0.351741,0.003166,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.351741,0.003166,-0.002250,0.249990,0,0);}
.mac_c01094{transform:matrix(0.371508,0.004087,-0.002750,0.249985,0,0);-ms-transform:matrix(0.371508,0.004087,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.371508,0.004087,-0.002750,0.249985,0,0);}
.m12d_c01094{transform:matrix(0.395980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395980,0.000000,0.000000,0.250000,0,0);}
.m8a_c01094{transform:matrix(0.429813,0.006017,-0.003500,0.249976,0,0);-ms-transform:matrix(0.429813,0.006017,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.429813,0.006017,-0.003500,0.249976,0,0);}
.m99_c01094{transform:matrix(0.487047,0.006819,-0.003500,0.249976,0,0);-ms-transform:matrix(0.487047,0.006819,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.487047,0.006819,-0.003500,0.249976,0,0);}
.m130_c01094{transform:matrix(0.676500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.676500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.676500,0.000000,0.000000,0.250000,0,0);}
.m12f_c01094{transform:matrix(2.041380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.041380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.041380,0.000000,0.000000,0.250000,0,0);}
.m12e_c01094{transform:matrix(7.727095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(7.727095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(7.727095,0.000000,0.000000,0.250000,0,0);}
.v0_c01094{vertical-align:0.000000px;}
.ls0_c01094{letter-spacing:0.000000px;}
.sc__c01094{text-shadow:none;}
.sc0_c01094{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__c01094{-webkit-text-stroke:0px transparent;}
.sc0_c01094{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01094{word-spacing:0.000000px;}
.fc0_c01094{color:transparent;}
.fs15_c01094{font-size:18.000000px;}
.fs16_c01094{font-size:24.000000px;}
.fsa_c01094{font-size:66.006468px;}
.fs7_c01094{font-size:66.007425px;}
.fsc_c01094{font-size:66.010691px;}
.fs4_c01094{font-size:72.002916px;}
.fs9_c01094{font-size:72.007056px;}
.fs10_c01094{font-size:72.009215px;}
.fs14_c01094{font-size:72.010403px;}
.fs1_c01094{font-size:78.003159px;}
.fsb_c01094{font-size:78.004719px;}
.fs8_c01094{font-size:78.007644px;}
.fs11_c01094{font-size:78.009983px;}
.fse_c01094{font-size:78.018874px;}
.fs0_c01094{font-size:84.000000px;}
.fs3_c01094{font-size:84.003402px;}
.fsf_c01094{font-size:84.012137px;}
.fs5_c01094{font-size:90.003645px;}
.fs17_c01094{font-size:90.006480px;}
.fs6_c01094{font-size:90.010124px;}
.fs12_c01094{font-size:90.011519px;}
.fs2_c01094{font-size:96.003888px;}
.fs13_c01094{font-size:96.012287px;}
.fsd_c01094{font-size:96.015551px;}
.fs18_c01094{font-size:102.007344px;}
.fs19_c01094{font-size:102.008619px;}
.y0_c01094{bottom:0.000000px;}
.y15c_c01094{bottom:50.449611px;}
.y15b_c01094{bottom:52.114787px;}
.y15a_c01094{bottom:52.605497px;}
.y159_c01094{bottom:52.950463px;}
.y158_c01094{bottom:53.611289px;}
.y157_c01094{bottom:54.105781px;}
.y156_c01094{bottom:55.260515px;}
.y155_c01094{bottom:56.427492px;}
.y154_c01094{bottom:57.240983px;}
.y153_c01094{bottom:86.991878px;}
.y152_c01094{bottom:87.715152px;}
.y151_c01094{bottom:88.579002px;}
.y150_c01094{bottom:89.000124px;}
.y14f_c01094{bottom:89.442618px;}
.y14e_c01094{bottom:90.014884px;}
.y14d_c01094{bottom:90.443105px;}
.y14c_c01094{bottom:91.443513px;}
.y14b_c01094{bottom:92.462096px;}
.y14a_c01094{bottom:93.153000px;}
.y149_c01094{bottom:126.981378px;}
.y148_c01094{bottom:127.310532px;}
.y147_c01094{bottom:127.864542px;}
.y146_c01094{bottom:128.312004px;}
.y145_c01094{bottom:129.070872px;}
.y144_c01094{bottom:129.856644px;}
.y143_c01094{bottom:130.409556px;}
.y142_c01094{bottom:157.375452px;}
.y141_c01094{bottom:158.039760px;}
.y140_c01094{bottom:158.697624px;}
.y13f_c01094{bottom:159.099402px;}
.y13e_c01094{bottom:159.361932px;}
.y13d_c01094{bottom:159.893490px;}
.y13c_c01094{bottom:160.288788px;}
.y13b_c01094{bottom:161.212278px;}
.y13a_c01094{bottom:162.142410px;}
.y139_c01094{bottom:162.813000px;}
.y138_c01094{bottom:193.050000px;}
.y137_c01094{bottom:198.396836px;}
.y136_c01094{bottom:199.741654px;}
.y135_c01094{bottom:201.633780px;}
.y134_c01094{bottom:202.239890px;}
.y133_c01094{bottom:203.323283px;}
.y132_c01094{bottom:204.075303px;}
.y131_c01094{bottom:206.137564px;}
.y130_c01094{bottom:208.028772px;}
.y12f_c01094{bottom:209.524500px;}
.y12e_c01094{bottom:210.870000px;}
.y12d_c01094{bottom:232.695623px;}
.y12c_c01094{bottom:233.943236px;}
.y12b_c01094{bottom:234.494342px;}
.y12a_c01094{bottom:236.386008px;}
.y129_c01094{bottom:237.162075px;}
.y128_c01094{bottom:238.117050px;}
.y127_c01094{bottom:239.425328px;}
.y126_c01094{bottom:239.791609px;}
.y125_c01094{bottom:241.486952px;}
.y124_c01094{bottom:242.235325px;}
.y123_c01094{bottom:242.790639px;}
.y122_c01094{bottom:244.295929px;}
.y121_c01094{bottom:244.869527px;}
.y120_c01094{bottom:245.433000px;}
.y11f_c01094{bottom:271.433256px;}
.y11e_c01094{bottom:272.015364px;}
.y11d_c01094{bottom:272.827692px;}
.y11c_c01094{bottom:274.047372px;}
.y11b_c01094{bottom:275.227848px;}
.y11a_c01094{bottom:275.816784px;}
.y119_c01094{bottom:276.831228px;}
.y118_c01094{bottom:277.415376px;}
.y117_c01094{bottom:278.012952px;}
.y116_c01094{bottom:278.616276px;}
.y115_c01094{bottom:280.389480px;}
.y114_c01094{bottom:281.603592px;}
.y113_c01094{bottom:282.396684px;}
.y112_c01094{bottom:307.228944px;}
.y111_c01094{bottom:308.232612px;}
.y110_c01094{bottom:308.726916px;}
.y10f_c01094{bottom:309.399924px;}
.y10e_c01094{bottom:309.905628px;}
.y10d_c01094{bottom:310.903404px;}
.y10c_c01094{bottom:311.398284px;}
.y10b_c01094{bottom:313.389408px;}
.y10a_c01094{bottom:313.718148px;}
.y109_c01094{bottom:315.693348px;}
.y108_c01094{bottom:316.689756px;}
.y107_c01094{bottom:342.173256px;}
.y106_c01094{bottom:343.316580px;}
.y105_c01094{bottom:343.875732px;}
.y104_c01094{bottom:344.808144px;}
.y103_c01094{bottom:345.964644px;}
.y102_c01094{bottom:346.336056px;}
.y101_c01094{bottom:347.655552px;}
.y100_c01094{bottom:349.330968px;}
.yff_c01094{bottom:350.845308px;}
.yfe_c01094{bottom:351.583416px;}
.yfd_c01094{bottom:352.336656px;}
.yfc_c01094{bottom:377.788020px;}
.yfb_c01094{bottom:378.475392px;}
.yfa_c01094{bottom:379.655472px;}
.yf9_c01094{bottom:380.469624px;}
.yf8_c01094{bottom:380.814276px;}
.yf7_c01094{bottom:381.300468px;}
.yf6_c01094{bottom:382.633272px;}
.yf5_c01094{bottom:383.459268px;}
.yf4_c01094{bottom:384.639924px;}
.yf3_c01094{bottom:385.623444px;}
.yf2_c01094{bottom:386.116524px;}
.yf1_c01094{bottom:387.441480px;}
.yf0_c01094{bottom:411.649836px;}
.yef_c01094{bottom:412.234152px;}
.yee_c01094{bottom:412.812084px;}
.yed_c01094{bottom:414.305856px;}
.yec_c01094{bottom:415.473144px;}
.yeb_c01094{bottom:416.390808px;}
.yea_c01094{bottom:417.725592px;}
.ye9_c01094{bottom:419.608560px;}
.ye8_c01094{bottom:420.915372px;}
.ye7_c01094{bottom:421.467780px;}
.ye6_c01094{bottom:423.358212px;}
.ye5_c01094{bottom:448.185288px;}
.ye4_c01094{bottom:449.251560px;}
.ye3_c01094{bottom:450.846000px;}
.ye2_c01094{bottom:451.584288px;}
.ye1_c01094{bottom:452.108112px;}
.ye0_c01094{bottom:452.811432px;}
.ydf_c01094{bottom:454.574520px;}
.yde_c01094{bottom:455.291352px;}
.ydd_c01094{bottom:456.355392px;}
.ydc_c01094{bottom:456.882288px;}
.ydb_c01094{bottom:457.957080px;}
.yda_c01094{bottom:458.467464px;}
.yd9_c01094{bottom:459.003000px;}
.yd8_c01094{bottom:482.690374px;}
.yd7_c01094{bottom:484.211092px;}
.yd6_c01094{bottom:485.542626px;}
.yd5_c01094{bottom:487.424730px;}
.yd4_c01094{bottom:487.989606px;}
.yd3_c01094{bottom:488.925685px;}
.yd2_c01094{bottom:490.235212px;}
.yd1_c01094{bottom:491.735760px;}
.yd0_c01094{bottom:492.695019px;}
.ycf_c01094{bottom:493.800979px;}
.yce_c01094{bottom:494.374500px;}
.ycd_c01094{bottom:518.685783px;}
.ycc_c01094{bottom:521.129532px;}
.ycb_c01094{bottom:522.110061px;}
.yca_c01094{bottom:522.852627px;}
.yc9_c01094{bottom:525.282549px;}
.yc8_c01094{bottom:526.025115px;}
.yc7_c01094{bottom:526.743822px;}
.yc6_c01094{bottom:528.478005px;}
.yc5_c01094{bottom:529.679040px;}
.yc4_c01094{bottom:531.366000px;}
.yc3_c01094{bottom:564.959067px;}
.yc2_c01094{bottom:564.959445px;}
.yc1_c01094{bottom:591.125070px;}
.yc0_c01094{bottom:592.548996px;}
.ybf_c01094{bottom:593.341581px;}
.ybe_c01094{bottom:594.139107px;}
.ybd_c01094{bottom:595.330050px;}
.ybc_c01094{bottom:595.936659px;}
.ybb_c01094{bottom:596.539299px;}
.yba_c01094{bottom:597.346113px;}
.yb9_c01094{bottom:598.324026px;}
.yb8_c01094{bottom:598.916163px;}
.yb7_c01094{bottom:599.533707px;}
.yb6_c01094{bottom:601.920804px;}
.yb5_c01094{bottom:602.921532px;}
.yb4_c01094{bottom:605.613000px;}
.yb3_c01094{bottom:629.015341px;}
.yb2_c01094{bottom:629.383836px;}
.yb1_c01094{bottom:629.998659px;}
.yb0_c01094{bottom:631.222712px;}
.yaf_c01094{bottom:631.718438px;}
.yae_c01094{bottom:632.440065px;}
.yad_c01094{bottom:632.684595px;}
.yac_c01094{bottom:633.777192px;}
.yab_c01094{bottom:634.626629px;}
.yaa_c01094{bottom:635.125292px;}
.ya9_c01094{bottom:635.612701px;}
.ya8_c01094{bottom:636.093742px;}
.ya7_c01094{bottom:637.743000px;}
.ya6_c01094{bottom:660.771876px;}
.ya5_c01094{bottom:661.946118px;}
.ya4_c01094{bottom:662.296248px;}
.ya3_c01094{bottom:663.636840px;}
.ya2_c01094{bottom:664.296858px;}
.ya1_c01094{bottom:665.625408px;}
.ya0_c01094{bottom:666.123285px;}
.y9f_c01094{bottom:667.617231px;}
.y9e_c01094{bottom:668.613405px;}
.y9d_c01094{bottom:669.115125px;}
.y9c_c01094{bottom:670.775757px;}
.y9b_c01094{bottom:671.265906px;}
.y9a_c01094{bottom:673.376139px;}
.y99_c01094{bottom:697.521432px;}
.y98_c01094{bottom:698.711160px;}
.y97_c01094{bottom:699.726873px;}
.y96_c01094{bottom:700.208487px;}
.y95_c01094{bottom:700.706553px;}
.y94_c01094{bottom:701.382288px;}
.y93_c01094{bottom:702.374913px;}
.y92_c01094{bottom:702.865419px;}
.y91_c01094{bottom:704.052627px;}
.y90_c01094{bottom:704.533443px;}
.y8f_c01094{bottom:704.877264px;}
.y8e_c01094{bottom:706.020291px;}
.y8d_c01094{bottom:706.514346px;}
.y8c_c01094{bottom:707.179140px;}
.y8b_c01094{bottom:709.288239px;}
.y8a_c01094{bottom:734.425773px;}
.y89_c01094{bottom:734.891028px;}
.y88_c01094{bottom:735.352146px;}
.y87_c01094{bottom:736.456011px;}
.y86_c01094{bottom:737.692050px;}
.y85_c01094{bottom:738.149430px;}
.y84_c01094{bottom:739.397544px;}
.y83_c01094{bottom:740.338827px;}
.y82_c01094{bottom:740.796270px;}
.y81_c01094{bottom:741.434712px;}
.y80_c01094{bottom:741.876825px;}
.y7f_c01094{bottom:743.419653px;}
.y7e_c01094{bottom:744.035583px;}
.y7d_c01094{bottom:746.005593px;}
.y7c_c01094{bottom:768.495453px;}
.y7b_c01094{bottom:770.064468px;}
.y7a_c01094{bottom:770.540916px;}
.y79_c01094{bottom:771.001509px;}
.y78_c01094{bottom:772.397295px;}
.y77_c01094{bottom:772.869858px;}
.y76_c01094{bottom:773.973513px;}
.y75_c01094{bottom:775.194873px;}
.y74_c01094{bottom:775.659771px;}
.y73_c01094{bottom:777.050685px;}
.y72_c01094{bottom:778.143000px;}
.y71_c01094{bottom:805.008472px;}
.y70_c01094{bottom:806.685465px;}
.y6f_c01094{bottom:807.171532px;}
.y6e_c01094{bottom:808.358407px;}
.y6d_c01094{bottom:810.010875px;}
.y6c_c01094{bottom:810.505290px;}
.y6b_c01094{bottom:811.347645px;}
.y6a_c01094{bottom:812.003250px;}
.y69_c01094{bottom:812.841622px;}
.y68_c01094{bottom:813.332347px;}
.y67_c01094{bottom:813.833692px;}
.y66_c01094{bottom:814.863000px;}
.y65_c01094{bottom:841.292535px;}
.y64_c01094{bottom:842.099625px;}
.y63_c01094{bottom:842.504527px;}
.y62_c01094{bottom:842.770852px;}
.y61_c01094{bottom:843.165863px;}
.y60_c01094{bottom:843.576870px;}
.y5f_c01094{bottom:843.975457px;}
.y5e_c01094{bottom:845.048857px;}
.y5d_c01094{bottom:845.712067px;}
.y5c_c01094{bottom:846.093540px;}
.y5b_c01094{bottom:846.637440px;}
.y5a_c01094{bottom:847.026592px;}
.y59_c01094{bottom:847.421648px;}
.y58_c01094{bottom:848.229210px;}
.y57_c01094{bottom:848.617372px;}
.y56_c01094{bottom:849.147915px;}
.y55_c01094{bottom:877.893352px;}
.y54_c01094{bottom:878.391075px;}
.y53_c01094{bottom:879.226320px;}
.y52_c01094{bottom:880.389502px;}
.y51_c01094{bottom:881.575522px;}
.y50_c01094{bottom:882.065640px;}
.y4f_c01094{bottom:882.571283px;}
.y4e_c01094{bottom:883.239690px;}
.y4d_c01094{bottom:885.046890px;}
.y4c_c01094{bottom:885.873000px;}
.y4b_c01094{bottom:914.347047px;}
.y4a_c01094{bottom:919.886086px;}
.y49_c01094{bottom:947.393538px;}
.y48_c01094{bottom:948.084969px;}
.y47_c01094{bottom:948.409677px;}
.y46_c01094{bottom:948.860271px;}
.y45_c01094{bottom:949.400271px;}
.y44_c01094{bottom:949.961522px;}
.y43_c01094{bottom:950.526446px;}
.y42_c01094{bottom:951.201810px;}
.y41_c01094{bottom:951.522223px;}
.y40_c01094{bottom:952.297620px;}
.y3f_c01094{bottom:952.627134px;}
.y3e_c01094{bottom:953.290887px;}
.y3d_c01094{bottom:953.622494px;}
.y3c_c01094{bottom:954.176265px;}
.y3b_c01094{bottom:983.277955px;}
.y3a_c01094{bottom:984.988203px;}
.y39_c01094{bottom:985.499325px;}
.y38_c01094{bottom:985.968792px;}
.y37_c01094{bottom:986.466789px;}
.y36_c01094{bottom:987.443637px;}
.y35_c01094{bottom:988.048938px;}
.y34_c01094{bottom:989.271976px;}
.y33_c01094{bottom:989.625606px;}
.y32_c01094{bottom:990.356791px;}
.y31_c01094{bottom:1018.834001px;}
.y30_c01094{bottom:1019.266363px;}
.y2f_c01094{bottom:1020.588042px;}
.y2e_c01094{bottom:1021.013706px;}
.y2d_c01094{bottom:1022.034012px;}
.y2c_c01094{bottom:1023.024177px;}
.y2b_c01094{bottom:1023.462995px;}
.y2a_c01094{bottom:1024.603771px;}
.y29_c01094{bottom:1025.046492px;}
.y28_c01094{bottom:1025.477004px;}
.y27_c01094{bottom:1026.491180px;}
.y26_c01094{bottom:1026.768568px;}
.y25_c01094{bottom:1027.347951px;}
.y24_c01094{bottom:1053.789548px;}
.y23_c01094{bottom:1054.126081px;}
.y22_c01094{bottom:1054.920379px;}
.y21_c01094{bottom:1055.240766px;}
.y20_c01094{bottom:1055.796913px;}
.y1f_c01094{bottom:1056.907008px;}
.y1e_c01094{bottom:1057.804146px;}
.y1d_c01094{bottom:1058.032602px;}
.y1c_c01094{bottom:1058.899929px;}
.y1b_c01094{bottom:1060.023282px;}
.y1a_c01094{bottom:1060.558125px;}
.y19_c01094{bottom:1089.389778px;}
.y18_c01094{bottom:1089.892828px;}
.y17_c01094{bottom:1090.300879px;}
.y16_c01094{bottom:1090.507416px;}
.y15_c01094{bottom:1091.491944px;}
.y14_c01094{bottom:1091.798137px;}
.y13_c01094{bottom:1092.303604px;}
.y12_c01094{bottom:1093.100968px;}
.y11_c01094{bottom:1094.092152px;}
.y10_c01094{bottom:1094.391069px;}
.yf_c01094{bottom:1094.886749px;}
.ye_c01094{bottom:1095.389677px;}
.yd_c01094{bottom:1124.399193px;}
.yc_c01094{bottom:1125.512214px;}
.yb_c01094{bottom:1125.806325px;}
.ya_c01094{bottom:1126.115016px;}
.y9_c01094{bottom:1126.413892px;}
.y8_c01094{bottom:1126.710825px;}
.y7_c01094{bottom:1127.502600px;}
.y6_c01094{bottom:1127.811264px;}
.y5_c01094{bottom:1128.295036px;}
.y4_c01094{bottom:1129.300908px;}
.y3_c01094{bottom:1129.803945px;}
.y2_c01094{bottom:1130.491500px;}
.y1_c01094{bottom:1183.675500px;}
.h17_c01094{height:18.000000px;}
.h18_c01094{height:24.000000px;}
.hc_c01094{height:66.006468px;}
.h9_c01094{height:66.007425px;}
.he_c01094{height:66.010691px;}
.h6_c01094{height:72.002916px;}
.hb_c01094{height:72.007056px;}
.h12_c01094{height:72.009215px;}
.h16_c01094{height:72.010403px;}
.h3_c01094{height:78.003159px;}
.hd_c01094{height:78.004719px;}
.ha_c01094{height:78.007644px;}
.h13_c01094{height:78.009983px;}
.h10_c01094{height:78.018874px;}
.h2_c01094{height:84.000000px;}
.h5_c01094{height:84.003402px;}
.h11_c01094{height:84.012137px;}
.h7_c01094{height:90.003645px;}
.h19_c01094{height:90.006480px;}
.h8_c01094{height:90.010124px;}
.h14_c01094{height:90.011519px;}
.h4_c01094{height:96.003888px;}
.h15_c01094{height:96.012287px;}
.hf_c01094{height:96.015551px;}
.h1a_c01094{height:102.007344px;}
.h1b_c01094{height:102.008619px;}
.h0_c01094{height:1246.320000px;}
.h1_c01094{height:1246.500000px;}
.w0_c01094{width:917.190000px;}
.w1_c01094{width:917.250000px;}
.x0_c01094{left:0.000000px;}
.x6c_c01094{left:3.822000px;}
.xb9_c01094{left:5.670000px;}
.xba_c01094{left:10.260000px;}
.xbb_c01094{left:11.880000px;}
.x65_c01094{left:13.858434px;}
.x56_c01094{left:14.914254px;}
.xbc_c01094{left:151.245000px;}
.x4b_c01094{left:152.355000px;}
.x6d_c01094{left:153.754500px;}
.x3a_c01094{left:155.301478px;}
.x10_c01094{left:156.481978px;}
.x4_c01094{left:158.095500px;}
.xb3_c01094{left:185.242500px;}
.x66_c01094{left:187.168998px;}
.xad_c01094{left:195.818328px;}
.x6e_c01094{left:197.485500px;}
.x57_c01094{left:199.624254px;}
.x23_c01094{left:200.769025px;}
.xc9_c01094{left:205.741500px;}
.xc3_c01094{left:207.148500px;}
.x76_c01094{left:208.761000px;}
.x1c_c01094{left:211.267644px;}
.x11_c01094{left:212.362978px;}
.x87_c01094{left:218.239500px;}
.xa6_c01094{left:219.291132px;}
.x4c_c01094{left:220.975500px;}
.x24_c01094{left:222.089256px;}
.x43_c01094{left:232.266758px;}
.x5_c01094{left:234.490500px;}
.x9e_c01094{left:240.048732px;}
.x6f_c01094{left:241.795500px;}
.x32_c01094{left:244.464819px;}
.x82_c01094{left:252.184500px;}
.x2c_c01094{left:254.723953px;}
.x91_c01094{left:263.529912px;}
.x7e_c01094{left:264.573000px;}
.x12_c01094{left:267.438479px;}
.x97_c01094{left:274.042740px;}
.xca_c01094{left:284.094000px;}
.x88_c01094{left:285.414000px;}
.x4d_c01094{left:287.113500px;}
.x6_c01094{left:290.383500px;}
.x92_c01094{left:295.992384px;}
.x67_c01094{left:297.855444px;}
.x44_c01094{left:299.507273px;}
.x13_c01094{left:300.651479px;}
.x5f_c01094{left:308.169537px;}
.x58_c01094{left:309.826254px;}
.x33_c01094{left:310.881225px;}
.x89_c01094{left:318.345000px;}
.x3c_c01094{left:321.627000px;}
.x1d_c01094{left:323.583631px;}
.x9f_c01094{left:329.162316px;}
.x60_c01094{left:331.120722px;}
.x53_c01094{left:332.164500px;}
.x25_c01094{left:333.272760px;}
.x98_c01094{left:339.638796px;}
.x59_c01094{left:341.405754px;}
.x34_c01094{left:343.826928px;}
.xa7_c01094{left:350.993244px;}
.xcd_c01094{left:360.447093px;}
.xae_c01094{left:361.801524px;}
.x61_c01094{left:363.214281px;}
.x45_c01094{left:364.890720px;}
.x2d_c01094{left:365.948455px;}
.x26_c01094{left:367.296031px;}
.x93_c01094{left:372.885660px;}
.x77_c01094{left:375.685500px;}
.x8a_c01094{left:384.847500px;}
.x4e_c01094{left:386.712000px;}
.xce_c01094{left:393.407235px;}
.xc4_c01094{left:394.558500px;}
.x7f_c01094{left:395.845500px;}
.x68_c01094{left:397.775058px;}
.x7_c01094{left:402.147000px;}
.xc8_c01094{left:405.629802px;}
.x78_c01094{left:408.582000px;}
.x14_c01094{left:410.782979px;}
.x99_c01094{left:418.306044px;}
.x5a_c01094{left:419.683254px;}
.x2e_c01094{left:421.036470px;}
.xa0_c01094{left:427.686732px;}
.x8b_c01094{left:429.649500px;}
.x1e_c01094{left:433.169646px;}
.xcf_c01094{left:437.431085px;}
.xc5_c01094{left:438.855000px;}
.x3d_c01094{left:442.107000px;}
.x1_c01094{left:447.660000px;}
.x35_c01094{left:453.415942px;}
.x8_c01094{left:455.899500px;}
.xaf_c01094{left:460.988856px;}
.x70_c01094{left:463.677000px;}
.x2_c01094{left:470.340000px;}
.xbd_c01094{left:471.786000px;}
.x9a_c01094{left:473.400432px;}
.x80_c01094{left:474.672000px;}
.x4f_c01094{left:475.830000px;}
.x94_c01094{left:483.631884px;}
.x3e_c01094{left:486.667500px;}
.x27_c01094{left:488.802157px;}
.x9_c01094{left:490.195500px;}
.xd0_c01094{left:493.058622px;}
.xc6_c01094{left:494.214000px;}
.x46_c01094{left:497.402205px;}
.x15_c01094{left:499.378978px;}
.xa1_c01094{left:505.278984px;}
.x79_c01094{left:507.733500px;}
.x2f_c01094{left:509.906877px;}
.x3_c01094{left:514.350000px;}
.xbe_c01094{left:516.022500px;}
.xb0_c01094{left:517.358556px;}
.x36_c01094{left:520.955835px;}
.x1f_c01094{left:522.850836px;}
.xa2_c01094{left:527.085624px;}
.x83_c01094{left:528.973500px;}
.x54_c01094{left:531.444000px;}
.xa8_c01094{left:538.730268px;}
.x8c_c01094{left:539.842500px;}
.x62_c01094{left:541.200282px;}
.xc7_c01094{left:549.036000px;}
.xb1_c01094{left:550.041000px;}
.x71_c01094{left:551.509500px;}
.x3f_c01094{left:553.051500px;}
.x16_c01094{left:555.541978px;}
.x84_c01094{left:562.201500px;}
.x28_c01094{left:564.984417px;}
.xcb_c01094{left:570.891000px;}
.x7a_c01094{left:574.914000px;}
.x5b_c01094{left:576.068754px;}
.xa_c01094{left:578.170500px;}
.xbf_c01094{left:579.751500px;}
.x3b_c01094{left:581.401642px;}
.xb4_c01094{left:582.447000px;}
.x8d_c01094{left:583.800000px;}
.x47_c01094{left:586.866233px;}
.x17_c01094{left:589.563478px;}
.x9b_c01094{left:594.683376px;}
.x72_c01094{left:596.575500px;}
.x30_c01094{left:597.901297px;}
.xd1_c01094{left:604.069236px;}
.xa9_c01094{left:605.217324px;}
.x5c_c01094{left:608.738754px;}
.xb_c01094{left:611.163000px;}
.xc0_c01094{left:615.405000px;}
.x8e_c01094{left:616.539000px;}
.x9c_c01094{left:617.630736px;}
.x48_c01094{left:620.040218px;}
.xcc_c01094{left:626.527500px;}
.x40_c01094{left:632.119500px;}
.x20_c01094{left:633.860337px;}
.xaa_c01094{left:638.886852px;}
.x7b_c01094{left:641.077500px;}
.xc_c01094{left:644.371500px;}
.xa3_c01094{left:649.953156px;}
.x63_c01094{left:651.621249px;}
.x49_c01094{left:654.342270px;}
.x69_c01094{left:663.227862px;}
.x50_c01094{left:665.119500px;}
.x9d_c01094{left:671.891100px;}
.x85_c01094{left:672.913500px;}
.x29_c01094{left:676.310421px;}
.xd_c01094{left:678.670500px;}
.xa4_c01094{left:682.837128px;}
.xb5_c01094{left:684.273000px;}
.x7c_c01094{left:685.384500px;}
.x37_c01094{left:687.584836px;}
.x21_c01094{left:689.487337px;}
.x51_c01094{left:697.524000px;}
.x18_c01094{left:698.955478px;}
.x73_c01094{left:707.853000px;}
.x41_c01094{left:709.665000px;}
.xe_c01094{left:711.349500px;}
.xab_c01094{left:716.720100px;}
.x64_c01094{left:719.349804px;}
.x19_c01094{left:721.903978px;}
.xc1_c01094{left:726.706500px;}
.x7d_c01094{left:729.417000px;}
.x38_c01094{left:732.650431px;}
.x4a_c01094{left:743.228775px;}
.xa5_c01094{left:750.075048px;}
.x86_c01094{left:751.239000px;}
.x6a_c01094{left:752.554602px;}
.xb2_c01094{left:760.946280px;}
.x8f_c01094{left:762.334500px;}
.x74_c01094{left:763.746000px;}
.x39_c01094{left:765.062134px;}
.x1a_c01094{left:767.242978px;}
.x95_c01094{left:772.627752px;}
.x5d_c01094{left:775.874754px;}
.x2a_c01094{left:777.993262px;}
.xac_c01094{left:783.669180px;}
.xb6_c01094{left:795.547500px;}
.x75_c01094{left:797.245500px;}
.x42_c01094{left:798.529500px;}
.x31_c01094{left:799.883166px;}
.x22_c01094{left:801.006838px;}
.x96_c01094{left:806.591700px;}
.x52_c01094{left:809.323500px;}
.x2b_c01094{left:811.199061px;}
.x1b_c01094{left:823.137478px;}
.xb7_c01094{left:827.965500px;}
.x90_c01094{left:828.976500px;}
.xf_c01094{left:835.018500px;}
.x81_c01094{left:840.946500px;}
.x5e_c01094{left:842.044254px;}
.x55_c01094{left:843.901500px;}
.x6b_c01094{left:854.151174px;}
.xb8_c01094{left:901.354500px;}
.xc2_c01094{left:910.170000px;}
@media print{
.v0_c01094{vertical-align:0.000000pt;}
.ls0_c01094{letter-spacing:0.000000pt;}
.ws0_c01094{word-spacing:0.000000pt;}
.fs15_c01094{font-size:16.000000pt;}
.fs16_c01094{font-size:21.333333pt;}
.fsa_c01094{font-size:58.672416pt;}
.fs7_c01094{font-size:58.673266pt;}
.fsc_c01094{font-size:58.676170pt;}
.fs4_c01094{font-size:64.002592pt;}
.fs9_c01094{font-size:64.006272pt;}
.fs10_c01094{font-size:64.008191pt;}
.fs14_c01094{font-size:64.009247pt;}
.fs1_c01094{font-size:69.336141pt;}
.fsb_c01094{font-size:69.337528pt;}
.fs8_c01094{font-size:69.340128pt;}
.fs11_c01094{font-size:69.342207pt;}
.fse_c01094{font-size:69.350110pt;}
.fs0_c01094{font-size:74.666667pt;}
.fs3_c01094{font-size:74.669691pt;}
.fsf_c01094{font-size:74.677455pt;}
.fs5_c01094{font-size:80.003240pt;}
.fs17_c01094{font-size:80.005760pt;}
.fs6_c01094{font-size:80.008999pt;}
.fs12_c01094{font-size:80.010239pt;}
.fs2_c01094{font-size:85.336789pt;}
.fs13_c01094{font-size:85.344255pt;}
.fsd_c01094{font-size:85.347156pt;}
.fs18_c01094{font-size:90.673194pt;}
.fs19_c01094{font-size:90.674328pt;}
.y0_c01094{bottom:0.000000pt;}
.y15c_c01094{bottom:44.844099pt;}
.y15b_c01094{bottom:46.324255pt;}
.y15a_c01094{bottom:46.760441pt;}
.y159_c01094{bottom:47.067079pt;}
.y158_c01094{bottom:47.654479pt;}
.y157_c01094{bottom:48.094028pt;}
.y156_c01094{bottom:49.120457pt;}
.y155_c01094{bottom:50.157771pt;}
.y154_c01094{bottom:50.880873pt;}
.y153_c01094{bottom:77.326113pt;}
.y152_c01094{bottom:77.969024pt;}
.y151_c01094{bottom:78.736891pt;}
.y150_c01094{bottom:79.111221pt;}
.y14f_c01094{bottom:79.504549pt;}
.y14e_c01094{bottom:80.013231pt;}
.y14d_c01094{bottom:80.393871pt;}
.y14c_c01094{bottom:81.283123pt;}
.y14b_c01094{bottom:82.188529pt;}
.y14a_c01094{bottom:82.802667pt;}
.y149_c01094{bottom:112.872336pt;}
.y148_c01094{bottom:113.164917pt;}
.y147_c01094{bottom:113.657371pt;}
.y146_c01094{bottom:114.055115pt;}
.y145_c01094{bottom:114.729664pt;}
.y144_c01094{bottom:115.428128pt;}
.y143_c01094{bottom:115.919605pt;}
.y142_c01094{bottom:139.889291pt;}
.y141_c01094{bottom:140.479787pt;}
.y140_c01094{bottom:141.064555pt;}
.y13f_c01094{bottom:141.421691pt;}
.y13e_c01094{bottom:141.655051pt;}
.y13d_c01094{bottom:142.127547pt;}
.y13c_c01094{bottom:142.478923pt;}
.y13b_c01094{bottom:143.299803pt;}
.y13a_c01094{bottom:144.126587pt;}
.y139_c01094{bottom:144.722667pt;}
.y138_c01094{bottom:171.600000pt;}
.y137_c01094{bottom:176.352743pt;}
.y136_c01094{bottom:177.548137pt;}
.y135_c01094{bottom:179.230027pt;}
.y134_c01094{bottom:179.768791pt;}
.y133_c01094{bottom:180.731807pt;}
.y132_c01094{bottom:181.400269pt;}
.y131_c01094{bottom:183.233391pt;}
.y130_c01094{bottom:184.914464pt;}
.y12f_c01094{bottom:186.244000pt;}
.y12e_c01094{bottom:187.440000pt;}
.y12d_c01094{bottom:206.840553pt;}
.y12c_c01094{bottom:207.949543pt;}
.y12b_c01094{bottom:208.439415pt;}
.y12a_c01094{bottom:210.120896pt;}
.y129_c01094{bottom:210.810733pt;}
.y128_c01094{bottom:211.659600pt;}
.y127_c01094{bottom:212.822513pt;}
.y126_c01094{bottom:213.148097pt;}
.y125_c01094{bottom:214.655068pt;}
.y124_c01094{bottom:215.320289pt;}
.y123_c01094{bottom:215.813901pt;}
.y122_c01094{bottom:217.151937pt;}
.y121_c01094{bottom:217.661801pt;}
.y120_c01094{bottom:218.162667pt;}
.y11f_c01094{bottom:241.274005pt;}
.y11e_c01094{bottom:241.791435pt;}
.y11d_c01094{bottom:242.513504pt;}
.y11c_c01094{bottom:243.597664pt;}
.y11b_c01094{bottom:244.646976pt;}
.y11a_c01094{bottom:245.170475pt;}
.y119_c01094{bottom:246.072203pt;}
.y118_c01094{bottom:246.591445pt;}
.y117_c01094{bottom:247.122624pt;}
.y116_c01094{bottom:247.658912pt;}
.y115_c01094{bottom:249.235093pt;}
.y114_c01094{bottom:250.314304pt;}
.y113_c01094{bottom:251.019275pt;}
.y112_c01094{bottom:273.092395pt;}
.y111_c01094{bottom:273.984544pt;}
.y110_c01094{bottom:274.423925pt;}
.y10f_c01094{bottom:275.022155pt;}
.y10e_c01094{bottom:275.471669pt;}
.y10d_c01094{bottom:276.358581pt;}
.y10c_c01094{bottom:276.798475pt;}
.y10b_c01094{bottom:278.568363pt;}
.y10a_c01094{bottom:278.860576pt;}
.y109_c01094{bottom:280.616309pt;}
.y108_c01094{bottom:281.502005pt;}
.y107_c01094{bottom:304.154005pt;}
.y106_c01094{bottom:305.170293pt;}
.y105_c01094{bottom:305.667317pt;}
.y104_c01094{bottom:306.496128pt;}
.y103_c01094{bottom:307.524128pt;}
.y102_c01094{bottom:307.854272pt;}
.y101_c01094{bottom:309.027157pt;}
.y100_c01094{bottom:310.516416pt;}
.yff_c01094{bottom:311.862496pt;}
.yfe_c01094{bottom:312.518592pt;}
.yfd_c01094{bottom:313.188139pt;}
.yfc_c01094{bottom:335.811573pt;}
.yfb_c01094{bottom:336.422571pt;}
.yfa_c01094{bottom:337.471531pt;}
.yf9_c01094{bottom:338.195221pt;}
.yf8_c01094{bottom:338.501579pt;}
.yf7_c01094{bottom:338.933749pt;}
.yf6_c01094{bottom:340.118464pt;}
.yf5_c01094{bottom:340.852683pt;}
.yf4_c01094{bottom:341.902155pt;}
.yf3_c01094{bottom:342.776395pt;}
.yf2_c01094{bottom:343.214688pt;}
.yf1_c01094{bottom:344.392427pt;}
.yf0_c01094{bottom:365.910965pt;}
.yef_c01094{bottom:366.430357pt;}
.yee_c01094{bottom:366.944075pt;}
.yed_c01094{bottom:368.271872pt;}
.yec_c01094{bottom:369.309461pt;}
.yeb_c01094{bottom:370.125163pt;}
.yea_c01094{bottom:371.311637pt;}
.ye9_c01094{bottom:372.985387pt;}
.ye8_c01094{bottom:374.146997pt;}
.ye7_c01094{bottom:374.638027pt;}
.ye6_c01094{bottom:376.318411pt;}
.ye5_c01094{bottom:398.386923pt;}
.ye4_c01094{bottom:399.334720pt;}
.ye3_c01094{bottom:400.752000pt;}
.ye2_c01094{bottom:401.408256pt;}
.ye1_c01094{bottom:401.873877pt;}
.ye0_c01094{bottom:402.499051pt;}
.ydf_c01094{bottom:404.066240pt;}
.yde_c01094{bottom:404.703424pt;}
.ydd_c01094{bottom:405.649237pt;}
.ydc_c01094{bottom:406.117589pt;}
.ydb_c01094{bottom:407.072960pt;}
.yda_c01094{bottom:407.526635pt;}
.yd9_c01094{bottom:408.002667pt;}
.yd8_c01094{bottom:429.058111pt;}
.yd7_c01094{bottom:430.409860pt;}
.yd6_c01094{bottom:431.593445pt;}
.yd5_c01094{bottom:433.266427pt;}
.yd4_c01094{bottom:433.768539pt;}
.yd3_c01094{bottom:434.600609pt;}
.yd2_c01094{bottom:435.764633pt;}
.yd1_c01094{bottom:437.098453pt;}
.yd0_c01094{bottom:437.951128pt;}
.ycf_c01094{bottom:438.934204pt;}
.yce_c01094{bottom:439.444000pt;}
.ycd_c01094{bottom:461.054029pt;}
.ycc_c01094{bottom:463.226251pt;}
.ycb_c01094{bottom:464.097832pt;}
.yca_c01094{bottom:464.757891pt;}
.yc9_c01094{bottom:466.917821pt;}
.yc8_c01094{bottom:467.577880pt;}
.yc7_c01094{bottom:468.216731pt;}
.yc6_c01094{bottom:469.758227pt;}
.yc5_c01094{bottom:470.825813pt;}
.yc4_c01094{bottom:472.325333pt;}
.yc3_c01094{bottom:502.185837pt;}
.yc2_c01094{bottom:502.186173pt;}
.yc1_c01094{bottom:525.444507pt;}
.yc0_c01094{bottom:526.710219pt;}
.ybf_c01094{bottom:527.414739pt;}
.ybe_c01094{bottom:528.123651pt;}
.ybd_c01094{bottom:529.182267pt;}
.ybc_c01094{bottom:529.721475pt;}
.ybb_c01094{bottom:530.257155pt;}
.yba_c01094{bottom:530.974323pt;}
.yb9_c01094{bottom:531.843579pt;}
.yb8_c01094{bottom:532.369923pt;}
.yb7_c01094{bottom:532.918851pt;}
.yb6_c01094{bottom:535.040715pt;}
.yb5_c01094{bottom:535.930251pt;}
.yb4_c01094{bottom:538.322667pt;}
.yb3_c01094{bottom:559.124748pt;}
.yb2_c01094{bottom:559.452299pt;}
.yb1_c01094{bottom:559.998808pt;}
.yb0_c01094{bottom:561.086855pt;}
.yaf_c01094{bottom:561.527500pt;}
.yae_c01094{bottom:562.168947pt;}
.yad_c01094{bottom:562.386307pt;}
.yac_c01094{bottom:563.357504pt;}
.yab_c01094{bottom:564.112559pt;}
.yaa_c01094{bottom:564.555815pt;}
.ya9_c01094{bottom:564.989068pt;}
.ya8_c01094{bottom:565.416660pt;}
.ya7_c01094{bottom:566.882667pt;}
.ya6_c01094{bottom:587.352779pt;}
.ya5_c01094{bottom:588.396549pt;}
.ya4_c01094{bottom:588.707776pt;}
.ya3_c01094{bottom:589.899413pt;}
.ya2_c01094{bottom:590.486096pt;}
.ya1_c01094{bottom:591.667029pt;}
.ya0_c01094{bottom:592.109587pt;}
.y9f_c01094{bottom:593.437539pt;}
.y9e_c01094{bottom:594.323027pt;}
.y9d_c01094{bottom:594.769000pt;}
.y9c_c01094{bottom:596.245117pt;}
.y9b_c01094{bottom:596.680805pt;}
.y9a_c01094{bottom:598.556568pt;}
.y99_c01094{bottom:620.019051pt;}
.y98_c01094{bottom:621.076587pt;}
.y97_c01094{bottom:621.979443pt;}
.y96_c01094{bottom:622.407544pt;}
.y95_c01094{bottom:622.850269pt;}
.y94_c01094{bottom:623.450923pt;}
.y93_c01094{bottom:624.333256pt;}
.y92_c01094{bottom:624.769261pt;}
.y91_c01094{bottom:625.824557pt;}
.y90_c01094{bottom:626.251949pt;}
.y8f_c01094{bottom:626.557568pt;}
.y8e_c01094{bottom:627.573592pt;}
.y8d_c01094{bottom:628.012752pt;}
.y8c_c01094{bottom:628.603680pt;}
.y8b_c01094{bottom:630.478435pt;}
.y8a_c01094{bottom:652.822909pt;}
.y89_c01094{bottom:653.236469pt;}
.y88_c01094{bottom:653.646352pt;}
.y87_c01094{bottom:654.627565pt;}
.y86_c01094{bottom:655.726267pt;}
.y85_c01094{bottom:656.132827pt;}
.y84_c01094{bottom:657.242261pt;}
.y83_c01094{bottom:658.078957pt;}
.y82_c01094{bottom:658.485573pt;}
.y81_c01094{bottom:659.053077pt;}
.y80_c01094{bottom:659.446067pt;}
.y7f_c01094{bottom:660.817469pt;}
.y7e_c01094{bottom:661.364963pt;}
.y7d_c01094{bottom:663.116083pt;}
.y7c_c01094{bottom:683.107069pt;}
.y7b_c01094{bottom:684.501749pt;}
.y7a_c01094{bottom:684.925259pt;}
.y79_c01094{bottom:685.334675pt;}
.y78_c01094{bottom:686.575373pt;}
.y77_c01094{bottom:686.995429pt;}
.y76_c01094{bottom:687.976456pt;}
.y75_c01094{bottom:689.062109pt;}
.y74_c01094{bottom:689.475352pt;}
.y73_c01094{bottom:690.711720pt;}
.y72_c01094{bottom:691.682667pt;}
.y71_c01094{bottom:715.563087pt;}
.y70_c01094{bottom:717.053747pt;}
.y6f_c01094{bottom:717.485807pt;}
.y6e_c01094{bottom:718.540807pt;}
.y6d_c01094{bottom:720.009667pt;}
.y6c_c01094{bottom:720.449147pt;}
.y6b_c01094{bottom:721.197907pt;}
.y6a_c01094{bottom:721.780667pt;}
.y69_c01094{bottom:722.525887pt;}
.y68_c01094{bottom:722.962087pt;}
.y67_c01094{bottom:723.407727pt;}
.y66_c01094{bottom:724.322667pt;}
.y65_c01094{bottom:747.815587pt;}
.y64_c01094{bottom:748.533000pt;}
.y63_c01094{bottom:748.892913pt;}
.y62_c01094{bottom:749.129647pt;}
.y61_c01094{bottom:749.480767pt;}
.y60_c01094{bottom:749.846107pt;}
.y5f_c01094{bottom:750.200407pt;}
.y5e_c01094{bottom:751.154540pt;}
.y5d_c01094{bottom:751.744060pt;}
.y5c_c01094{bottom:752.083147pt;}
.y5b_c01094{bottom:752.566613pt;}
.y5a_c01094{bottom:752.912527pt;}
.y59_c01094{bottom:753.263687pt;}
.y58_c01094{bottom:753.981520pt;}
.y57_c01094{bottom:754.326553pt;}
.y56_c01094{bottom:754.798147pt;}
.y55_c01094{bottom:780.349647pt;}
.y54_c01094{bottom:780.792067pt;}
.y53_c01094{bottom:781.534507pt;}
.y52_c01094{bottom:782.568447pt;}
.y51_c01094{bottom:783.622687pt;}
.y50_c01094{bottom:784.058347pt;}
.y4f_c01094{bottom:784.507807pt;}
.y4e_c01094{bottom:785.101947pt;}
.y4d_c01094{bottom:786.708347pt;}
.y4c_c01094{bottom:787.442667pt;}
.y4b_c01094{bottom:812.752931pt;}
.y4a_c01094{bottom:817.676521pt;}
.y49_c01094{bottom:842.127589pt;}
.y48_c01094{bottom:842.742195pt;}
.y47_c01094{bottom:843.030824pt;}
.y46_c01094{bottom:843.431352pt;}
.y45_c01094{bottom:843.911352pt;}
.y44_c01094{bottom:844.410241pt;}
.y43_c01094{bottom:844.912396pt;}
.y42_c01094{bottom:845.512720pt;}
.y41_c01094{bottom:845.797532pt;}
.y40_c01094{bottom:846.486773pt;}
.y3f_c01094{bottom:846.779675pt;}
.y3e_c01094{bottom:847.369677pt;}
.y3d_c01094{bottom:847.664439pt;}
.y3c_c01094{bottom:848.156680pt;}
.y3b_c01094{bottom:874.024849pt;}
.y3a_c01094{bottom:875.545069pt;}
.y39_c01094{bottom:875.999400pt;}
.y38_c01094{bottom:876.416704pt;}
.y37_c01094{bottom:876.859368pt;}
.y36_c01094{bottom:877.727677pt;}
.y35_c01094{bottom:878.265723pt;}
.y34_c01094{bottom:879.352868pt;}
.y33_c01094{bottom:879.667205pt;}
.y32_c01094{bottom:880.317148pt;}
.y31_c01094{bottom:905.630223pt;}
.y30_c01094{bottom:906.014545pt;}
.y2f_c01094{bottom:907.189371pt;}
.y2e_c01094{bottom:907.567739pt;}
.y2d_c01094{bottom:908.474677pt;}
.y2c_c01094{bottom:909.354824pt;}
.y2b_c01094{bottom:909.744884pt;}
.y2a_c01094{bottom:910.758908pt;}
.y29_c01094{bottom:911.152437pt;}
.y28_c01094{bottom:911.535115pt;}
.y27_c01094{bottom:912.436604pt;}
.y26_c01094{bottom:912.683172pt;}
.y25_c01094{bottom:913.198179pt;}
.y24_c01094{bottom:936.701820pt;}
.y23_c01094{bottom:937.000961pt;}
.y22_c01094{bottom:937.707004pt;}
.y21_c01094{bottom:937.991792pt;}
.y20_c01094{bottom:938.486145pt;}
.y1f_c01094{bottom:939.472896pt;}
.y1e_c01094{bottom:940.270352pt;}
.y1d_c01094{bottom:940.473424pt;}
.y1c_c01094{bottom:941.244381pt;}
.y1b_c01094{bottom:942.242917pt;}
.y1a_c01094{bottom:942.718333pt;}
.y19_c01094{bottom:968.346469pt;}
.y18_c01094{bottom:968.793625pt;}
.y17_c01094{bottom:969.156337pt;}
.y16_c01094{bottom:969.339925pt;}
.y15_c01094{bottom:970.215061pt;}
.y14_c01094{bottom:970.487233pt;}
.y13_c01094{bottom:970.936537pt;}
.y12_c01094{bottom:971.645305pt;}
.y11_c01094{bottom:972.526357pt;}
.y10_c01094{bottom:972.792061pt;}
.yf_c01094{bottom:973.232665pt;}
.ye_c01094{bottom:973.679713pt;}
.yd_c01094{bottom:999.465949pt;}
.yc_c01094{bottom:1000.455301pt;}
.yb_c01094{bottom:1000.716733pt;}
.ya_c01094{bottom:1000.991125pt;}
.y9_c01094{bottom:1001.256793pt;}
.y8_c01094{bottom:1001.520733pt;}
.y7_c01094{bottom:1002.224533pt;}
.y6_c01094{bottom:1002.498901pt;}
.y5_c01094{bottom:1002.928921pt;}
.y4_c01094{bottom:1003.823029pt;}
.y3_c01094{bottom:1004.270173pt;}
.y2_c01094{bottom:1004.881333pt;}
.y1_c01094{bottom:1052.156000pt;}
.h17_c01094{height:16.000000pt;}
.h18_c01094{height:21.333333pt;}
.hc_c01094{height:58.672416pt;}
.h9_c01094{height:58.673266pt;}
.he_c01094{height:58.676170pt;}
.h6_c01094{height:64.002592pt;}
.hb_c01094{height:64.006272pt;}
.h12_c01094{height:64.008191pt;}
.h16_c01094{height:64.009247pt;}
.h3_c01094{height:69.336141pt;}
.hd_c01094{height:69.337528pt;}
.ha_c01094{height:69.340128pt;}
.h13_c01094{height:69.342207pt;}
.h10_c01094{height:69.350110pt;}
.h2_c01094{height:74.666667pt;}
.h5_c01094{height:74.669691pt;}
.h11_c01094{height:74.677455pt;}
.h7_c01094{height:80.003240pt;}
.h19_c01094{height:80.005760pt;}
.h8_c01094{height:80.008999pt;}
.h14_c01094{height:80.010239pt;}
.h4_c01094{height:85.336789pt;}
.h15_c01094{height:85.344255pt;}
.hf_c01094{height:85.347156pt;}
.h1a_c01094{height:90.673194pt;}
.h1b_c01094{height:90.674328pt;}
.h0_c01094{height:1107.840000pt;}
.h1_c01094{height:1108.000000pt;}
.w0_c01094{width:815.280000pt;}
.w1_c01094{width:815.333333pt;}
.x0_c01094{left:0.000000pt;}
.x6c_c01094{left:3.397333pt;}
.xb9_c01094{left:5.040000pt;}
.xba_c01094{left:9.120000pt;}
.xbb_c01094{left:10.560000pt;}
.x65_c01094{left:12.318608pt;}
.x56_c01094{left:13.257115pt;}
.xbc_c01094{left:134.440000pt;}
.x4b_c01094{left:135.426667pt;}
.x6d_c01094{left:136.670667pt;}
.x3a_c01094{left:138.045759pt;}
.x10_c01094{left:139.095092pt;}
.x4_c01094{left:140.529333pt;}
.xb3_c01094{left:164.660000pt;}
.x66_c01094{left:166.372443pt;}
.xad_c01094{left:174.060736pt;}
.x6e_c01094{left:175.542667pt;}
.x57_c01094{left:177.443781pt;}
.x23_c01094{left:178.461356pt;}
.xc9_c01094{left:182.881333pt;}
.xc3_c01094{left:184.132000pt;}
.x76_c01094{left:185.565333pt;}
.x1c_c01094{left:187.793461pt;}
.x11_c01094{left:188.767092pt;}
.x87_c01094{left:193.990667pt;}
.xa6_c01094{left:194.925451pt;}
.x4c_c01094{left:196.422667pt;}
.x24_c01094{left:197.412672pt;}
.x43_c01094{left:206.459340pt;}
.x5_c01094{left:208.436000pt;}
.x9e_c01094{left:213.376651pt;}
.x6f_c01094{left:214.929333pt;}
.x32_c01094{left:217.302061pt;}
.x82_c01094{left:224.164000pt;}
.x2c_c01094{left:226.421292pt;}
.x91_c01094{left:234.248811pt;}
.x7e_c01094{left:235.176000pt;}
.x12_c01094{left:237.723092pt;}
.x97_c01094{left:243.593547pt;}
.xca_c01094{left:252.528000pt;}
.x88_c01094{left:253.701333pt;}
.x4d_c01094{left:255.212000pt;}
.x6_c01094{left:258.118667pt;}
.x92_c01094{left:263.104341pt;}
.x67_c01094{left:264.760395pt;}
.x44_c01094{left:266.228687pt;}
.x13_c01094{left:267.245759pt;}
.x5f_c01094{left:273.928477pt;}
.x58_c01094{left:275.401115pt;}
.x33_c01094{left:276.338867pt;}
.x89_c01094{left:282.973333pt;}
.x3c_c01094{left:285.890667pt;}
.x1d_c01094{left:287.629895pt;}
.x9f_c01094{left:292.588725pt;}
.x60_c01094{left:294.329531pt;}
.x53_c01094{left:295.257333pt;}
.x25_c01094{left:296.242453pt;}
.x98_c01094{left:301.901152pt;}
.x59_c01094{left:303.471781pt;}
.x34_c01094{left:305.623936pt;}
.xa7_c01094{left:311.993995pt;}
.xcd_c01094{left:320.397416pt;}
.xae_c01094{left:321.601355pt;}
.x61_c01094{left:322.857139pt;}
.x45_c01094{left:324.347307pt;}
.x2d_c01094{left:325.287516pt;}
.x26_c01094{left:326.485361pt;}
.x93_c01094{left:331.453920pt;}
.x77_c01094{left:333.942667pt;}
.x8a_c01094{left:342.086667pt;}
.x4e_c01094{left:343.744000pt;}
.xce_c01094{left:349.695320pt;}
.xc4_c01094{left:350.718667pt;}
.x7f_c01094{left:351.862667pt;}
.x68_c01094{left:353.577829pt;}
.x7_c01094{left:357.464000pt;}
.xc8_c01094{left:360.559824pt;}
.x78_c01094{left:363.184000pt;}
.x14_c01094{left:365.140425pt;}
.x99_c01094{left:371.827595pt;}
.x5a_c01094{left:373.051781pt;}
.x2e_c01094{left:374.254640pt;}
.xa0_c01094{left:380.165984pt;}
.x8b_c01094{left:381.910667pt;}
.x1e_c01094{left:385.039685pt;}
.xcf_c01094{left:388.827631pt;}
.xc5_c01094{left:390.093333pt;}
.x3d_c01094{left:392.984000pt;}
.x1_c01094{left:397.920000pt;}
.x35_c01094{left:403.036393pt;}
.x8_c01094{left:405.244000pt;}
.xaf_c01094{left:409.767872pt;}
.x70_c01094{left:412.157333pt;}
.x2_c01094{left:418.080000pt;}
.xbd_c01094{left:419.365333pt;}
.x9a_c01094{left:420.800384pt;}
.x80_c01094{left:421.930667pt;}
.x4f_c01094{left:422.960000pt;}
.x94_c01094{left:429.895008pt;}
.x3e_c01094{left:432.593333pt;}
.x27_c01094{left:434.490807pt;}
.x9_c01094{left:435.729333pt;}
.xd0_c01094{left:438.274331pt;}
.xc6_c01094{left:439.301333pt;}
.x46_c01094{left:442.135293pt;}
.x15_c01094{left:443.892425pt;}
.xa1_c01094{left:449.136875pt;}
.x79_c01094{left:451.318667pt;}
.x2f_c01094{left:453.250557pt;}
.x3_c01094{left:457.200000pt;}
.xbe_c01094{left:458.686667pt;}
.xb0_c01094{left:459.874272pt;}
.x36_c01094{left:463.071853pt;}
.x1f_c01094{left:464.756299pt;}
.xa2_c01094{left:468.520555pt;}
.x83_c01094{left:470.198667pt;}
.x54_c01094{left:472.394667pt;}
.xa8_c01094{left:478.871349pt;}
.x8c_c01094{left:479.860000pt;}
.x62_c01094{left:481.066917pt;}
.xc7_c01094{left:488.032000pt;}
.xb1_c01094{left:488.925333pt;}
.x71_c01094{left:490.230667pt;}
.x3f_c01094{left:491.601333pt;}
.x16_c01094{left:493.815092pt;}
.x84_c01094{left:499.734667pt;}
.x28_c01094{left:502.208371pt;}
.xcb_c01094{left:507.458667pt;}
.x7a_c01094{left:511.034667pt;}
.x5b_c01094{left:512.061115pt;}
.xa_c01094{left:513.929333pt;}
.xbf_c01094{left:515.334667pt;}
.x3b_c01094{left:516.801460pt;}
.xb4_c01094{left:517.730667pt;}
.x8d_c01094{left:518.933333pt;}
.x47_c01094{left:521.658873pt;}
.x17_c01094{left:524.056425pt;}
.x9b_c01094{left:528.607445pt;}
.x72_c01094{left:530.289333pt;}
.x30_c01094{left:531.467820pt;}
.xd1_c01094{left:536.950432pt;}
.xa9_c01094{left:537.970955pt;}
.x5c_c01094{left:541.101115pt;}
.xb_c01094{left:543.256000pt;}
.xc0_c01094{left:547.026667pt;}
.x8e_c01094{left:548.034667pt;}
.x9c_c01094{left:549.005099pt;}
.x48_c01094{left:551.146860pt;}
.xcc_c01094{left:556.913333pt;}
.x40_c01094{left:561.884000pt;}
.x20_c01094{left:563.431411pt;}
.xaa_c01094{left:567.899424pt;}
.x7b_c01094{left:569.846667pt;}
.xc_c01094{left:572.774667pt;}
.xa3_c01094{left:577.736139pt;}
.x63_c01094{left:579.218888pt;}
.x49_c01094{left:581.637573pt;}
.x69_c01094{left:589.535877pt;}
.x50_c01094{left:591.217333pt;}
.x9d_c01094{left:597.236533pt;}
.x85_c01094{left:598.145333pt;}
.x29_c01094{left:601.164819pt;}
.xd_c01094{left:603.262667pt;}
.xa4_c01094{left:606.966336pt;}
.xb5_c01094{left:608.242667pt;}
.x7c_c01094{left:609.230667pt;}
.x37_c01094{left:611.186521pt;}
.x21_c01094{left:612.877633pt;}
.x51_c01094{left:620.021333pt;}
.x18_c01094{left:621.293759pt;}
.x73_c01094{left:629.202667pt;}
.x41_c01094{left:630.813333pt;}
.xe_c01094{left:632.310667pt;}
.xab_c01094{left:637.084533pt;}
.x64_c01094{left:639.422048pt;}
.x19_c01094{left:641.692425pt;}
.xc1_c01094{left:645.961333pt;}
.x7d_c01094{left:648.370667pt;}
.x38_c01094{left:651.244828pt;}
.x4a_c01094{left:660.647800pt;}
.xa5_c01094{left:666.733376pt;}
.x86_c01094{left:667.768000pt;}
.x6a_c01094{left:668.937424pt;}
.xb2_c01094{left:676.396693pt;}
.x8f_c01094{left:677.630667pt;}
.x74_c01094{left:678.885333pt;}
.x39_c01094{left:680.055231pt;}
.x1a_c01094{left:681.993759pt;}
.x95_c01094{left:686.780224pt;}
.x5d_c01094{left:689.666448pt;}
.x2a_c01094{left:691.549567pt;}
.xac_c01094{left:696.594827pt;}
.xb6_c01094{left:707.153333pt;}
.x75_c01094{left:708.662667pt;}
.x42_c01094{left:709.804000pt;}
.x31_c01094{left:711.007259pt;}
.x22_c01094{left:712.006079pt;}
.x96_c01094{left:716.970400pt;}
.x52_c01094{left:719.398667pt;}
.x2b_c01094{left:721.065832pt;}
.x1b_c01094{left:731.677759pt;}
.xb7_c01094{left:735.969333pt;}
.x90_c01094{left:736.868000pt;}
.xf_c01094{left:742.238667pt;}
.x81_c01094{left:747.508000pt;}
.x5e_c01094{left:748.483781pt;}
.x55_c01094{left:750.134667pt;}
.x6b_c01094{left:759.245488pt;}
.xb8_c01094{left:801.204000pt;}
.xc2_c01094{left:809.040000pt;}
}





/* 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_c01095 {
    display:none;
  }
  .loading-indicator_c01095.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01095 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_c01095 { 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_c01095" -> "#page-container .classname_c01095")
 */
.pf_c01095 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01095 { /* 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_c01095.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01095 { /* 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_c01095 { /* 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_c01095 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01095 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01095 {overflow:visible;}
  }
}
.c_c01095 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01095 { /* 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_c01095:after { /* webkit #35443 */
  content: '';
}
.t_c01095:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01095 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 */
}
.__c01095 { /* 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_c01095 { /* info for Javascript */
  display:none;
}
.l_c01095 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01095 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01095 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01095: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_c01095 {
    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_c01095.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01095.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_c01095 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01095{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01095;src:url('chunks/assets/font_c605e72f209fc835e906f064.woff2')format("woff");}.ff1_c01095{font-family:ff1_c01095;line-height:1.000000;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;}
.m3e_c01095{transform:matrix(0.011588,-0.000220,0.004749,0.249955,0,0);-ms-transform:matrix(0.011588,-0.000220,0.004749,0.249955,0,0);-webkit-transform:matrix(0.011588,-0.000220,0.004749,0.249955,0,0);}
.m4d_c01095{transform:matrix(0.012480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.012480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.012480,0.000000,0.000000,0.250000,0,0);}
.mea_c01095{transform:matrix(0.029700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.029700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.029700,0.000000,0.000000,0.250000,0,0);}
.m81_c01095{transform:matrix(0.050012,-0.000550,0.002750,0.249985,0,0);-ms-transform:matrix(0.050012,-0.000550,0.002750,0.249985,0,0);-webkit-transform:matrix(0.050012,-0.000550,0.002750,0.249985,0,0);}
.m88_c01095{transform:matrix(0.078095,-0.000859,0.002750,0.249985,0,0);-ms-transform:matrix(0.078095,-0.000859,0.002750,0.249985,0,0);-webkit-transform:matrix(0.078095,-0.000859,0.002750,0.249985,0,0);}
.me7_c01095{transform:matrix(0.079880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.079880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.079880,0.000000,0.000000,0.250000,0,0);}
.m7f_c01095{transform:matrix(0.090390,-0.000994,0.002750,0.249985,0,0);-ms-transform:matrix(0.090390,-0.000994,0.002750,0.249985,0,0);-webkit-transform:matrix(0.090390,-0.000994,0.002750,0.249985,0,0);}
.m7e_c01095{transform:matrix(0.136347,-0.001500,0.002750,0.249985,0,0);-ms-transform:matrix(0.136347,-0.001500,0.002750,0.249985,0,0);-webkit-transform:matrix(0.136347,-0.001500,0.002750,0.249985,0,0);}
.mb2_c01095{transform:matrix(0.143930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143930,0.000000,0.000000,0.250000,0,0);}
.mbc_c01095{transform:matrix(0.144575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144575,0.000000,0.000000,0.250000,0,0);}
.m0_c01095{transform:matrix(0.166500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166500,0.000000,0.000000,0.250000,0,0);}
.m7d_c01095{transform:matrix(0.178779,-0.001967,0.002750,0.249985,0,0);-ms-transform:matrix(0.178779,-0.001967,0.002750,0.249985,0,0);-webkit-transform:matrix(0.178779,-0.001967,0.002750,0.249985,0,0);}
.m49_c01095{transform:matrix(0.184782,-0.003511,0.004749,0.249955,0,0);-ms-transform:matrix(0.184782,-0.003511,0.004749,0.249955,0,0);-webkit-transform:matrix(0.184782,-0.003511,0.004749,0.249955,0,0);}
.m9c_c01095{transform:matrix(0.188340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188340,0.000000,0.000000,0.250000,0,0);}
.m2e_c01095{transform:matrix(0.194932,-0.001754,0.002250,0.249990,0,0);-ms-transform:matrix(0.194932,-0.001754,0.002250,0.249990,0,0);-webkit-transform:matrix(0.194932,-0.001754,0.002250,0.249990,0,0);}
.m12_c01095{transform:matrix(0.198545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198545,0.000000,0.000000,0.250000,0,0);}
.mc4_c01095{transform:matrix(0.202150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202150,0.000000,0.000000,0.250000,0,0);}
.m4f_c01095{transform:matrix(0.203315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203315,0.000000,0.000000,0.250000,0,0);}
.m7_c01095{transform:matrix(0.206360,-0.004334,0.005249,0.249945,0,0);-ms-transform:matrix(0.206360,-0.004334,0.005249,0.249945,0,0);-webkit-transform:matrix(0.206360,-0.004334,0.005249,0.249945,0,0);}
.m9f_c01095{transform:matrix(0.209910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209910,0.000000,0.000000,0.250000,0,0);}
.m63_c01095{transform:matrix(0.211681,-0.001270,0.001500,0.249996,0,0);-ms-transform:matrix(0.211681,-0.001270,0.001500,0.249996,0,0);-webkit-transform:matrix(0.211681,-0.001270,0.001500,0.249996,0,0);}
.m6_c01095{transform:matrix(0.212463,-0.004462,0.005249,0.249945,0,0);-ms-transform:matrix(0.212463,-0.004462,0.005249,0.249945,0,0);-webkit-transform:matrix(0.212463,-0.004462,0.005249,0.249945,0,0);}
.m55_c01095{transform:matrix(0.214110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214110,0.000000,0.000000,0.250000,0,0);}
.m7c_c01095{transform:matrix(0.217170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217170,0.000000,0.000000,0.250000,0,0);}
.ma0_c01095{transform:matrix(0.217545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217545,0.000000,0.000000,0.250000,0,0);}
.m1e_c01095{transform:matrix(0.218090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218090,0.000000,0.000000,0.250000,0,0);}
.m28_c01095{transform:matrix(0.219706,-0.001977,0.002250,0.249990,0,0);-ms-transform:matrix(0.219706,-0.001977,0.002250,0.249990,0,0);-webkit-transform:matrix(0.219706,-0.001977,0.002250,0.249990,0,0);}
.mb9_c01095{transform:matrix(0.221925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221925,0.000000,0.000000,0.250000,0,0);}
.m5d_c01095{transform:matrix(0.223886,-0.001343,0.001500,0.249996,0,0);-ms-transform:matrix(0.223886,-0.001343,0.001500,0.249996,0,0);-webkit-transform:matrix(0.223886,-0.001343,0.001500,0.249996,0,0);}
.md5_c01095{transform:matrix(0.224480,-0.001571,0.001750,0.249994,0,0);-ms-transform:matrix(0.224480,-0.001571,0.001750,0.249994,0,0);-webkit-transform:matrix(0.224480,-0.001571,0.001750,0.249994,0,0);}
.mb5_c01095{transform:matrix(0.225360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225360,0.000000,0.000000,0.250000,0,0);}
.m65_c01095{transform:matrix(0.225786,-0.001355,0.001500,0.249996,0,0);-ms-transform:matrix(0.225786,-0.001355,0.001500,0.249996,0,0);-webkit-transform:matrix(0.225786,-0.001355,0.001500,0.249996,0,0);}
.mbd_c01095{transform:matrix(0.225925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225925,0.000000,0.000000,0.250000,0,0);}
.m38_c01095{transform:matrix(0.229269,-0.004356,0.004749,0.249955,0,0);-ms-transform:matrix(0.229269,-0.004356,0.004749,0.249955,0,0);-webkit-transform:matrix(0.229269,-0.004356,0.004749,0.249955,0,0);}
.m62_c01095{transform:matrix(0.229886,-0.001379,0.001500,0.249996,0,0);-ms-transform:matrix(0.229886,-0.001379,0.001500,0.249996,0,0);-webkit-transform:matrix(0.229886,-0.001379,0.001500,0.249996,0,0);}
.m82_c01095{transform:matrix(0.230326,-0.002534,0.002750,0.249985,0,0);-ms-transform:matrix(0.230326,-0.002534,0.002750,0.249985,0,0);-webkit-transform:matrix(0.230326,-0.002534,0.002750,0.249985,0,0);}
.m5f_c01095{transform:matrix(0.231021,-0.001386,0.001500,0.249996,0,0);-ms-transform:matrix(0.231021,-0.001386,0.001500,0.249996,0,0);-webkit-transform:matrix(0.231021,-0.001386,0.001500,0.249996,0,0);}
.m39_c01095{transform:matrix(0.231138,-0.004392,0.004749,0.249955,0,0);-ms-transform:matrix(0.231138,-0.004392,0.004749,0.249955,0,0);-webkit-transform:matrix(0.231138,-0.004392,0.004749,0.249955,0,0);}
.m2d_c01095{transform:matrix(0.231341,-0.002082,0.002250,0.249990,0,0);-ms-transform:matrix(0.231341,-0.002082,0.002250,0.249990,0,0);-webkit-transform:matrix(0.231341,-0.002082,0.002250,0.249990,0,0);}
.m61_c01095{transform:matrix(0.231921,-0.001392,0.001500,0.249996,0,0);-ms-transform:matrix(0.231921,-0.001392,0.001500,0.249996,0,0);-webkit-transform:matrix(0.231921,-0.001392,0.001500,0.249996,0,0);}
.md8_c01095{transform:matrix(0.233064,-0.001631,0.001750,0.249994,0,0);-ms-transform:matrix(0.233064,-0.001631,0.001750,0.249994,0,0);-webkit-transform:matrix(0.233064,-0.001631,0.001750,0.249994,0,0);}
.m5c_c01095{transform:matrix(0.234306,-0.001406,0.001500,0.249996,0,0);-ms-transform:matrix(0.234306,-0.001406,0.001500,0.249996,0,0);-webkit-transform:matrix(0.234306,-0.001406,0.001500,0.249996,0,0);}
.m15_c01095{transform:matrix(0.235210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235210,0.000000,0.000000,0.250000,0,0);}
.md3_c01095{transform:matrix(0.235349,-0.001647,0.001750,0.249994,0,0);-ms-transform:matrix(0.235349,-0.001647,0.001750,0.249994,0,0);-webkit-transform:matrix(0.235349,-0.001647,0.001750,0.249994,0,0);}
.mae_c01095{transform:matrix(0.235395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235395,0.000000,0.000000,0.250000,0,0);}
.m14_c01095{transform:matrix(0.236385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236385,0.000000,0.000000,0.250000,0,0);}
.m5e_c01095{transform:matrix(0.239011,-0.001434,0.001500,0.249996,0,0);-ms-transform:matrix(0.239011,-0.001434,0.001500,0.249996,0,0);-webkit-transform:matrix(0.239011,-0.001434,0.001500,0.249996,0,0);}
.m4_c01095{transform:matrix(0.239867,-0.005037,0.005249,0.249945,0,0);-ms-transform:matrix(0.239867,-0.005037,0.005249,0.249945,0,0);-webkit-transform:matrix(0.239867,-0.005037,0.005249,0.249945,0,0);}
.me5_c01095{transform:matrix(0.240425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240425,0.000000,0.000000,0.250000,0,0);}
.mcf_c01095{transform:matrix(0.241514,-0.001691,0.001750,0.249994,0,0);-ms-transform:matrix(0.241514,-0.001691,0.001750,0.249994,0,0);-webkit-transform:matrix(0.241514,-0.001691,0.001750,0.249994,0,0);}
.m5a_c01095{transform:matrix(0.242801,-0.001457,0.001500,0.249996,0,0);-ms-transform:matrix(0.242801,-0.001457,0.001500,0.249996,0,0);-webkit-transform:matrix(0.242801,-0.001457,0.001500,0.249996,0,0);}
.m41_c01095{transform:matrix(0.244391,-0.004643,0.004749,0.249955,0,0);-ms-transform:matrix(0.244391,-0.004643,0.004749,0.249955,0,0);-webkit-transform:matrix(0.244391,-0.004643,0.004749,0.249955,0,0);}
.m36_c01095{transform:matrix(0.244546,-0.004646,0.004749,0.249955,0,0);-ms-transform:matrix(0.244546,-0.004646,0.004749,0.249955,0,0);-webkit-transform:matrix(0.244546,-0.004646,0.004749,0.249955,0,0);}
.m23_c01095{transform:matrix(0.247145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247145,0.000000,0.000000,0.250000,0,0);}
.m2a_c01095{transform:matrix(0.248490,-0.002236,0.002250,0.249990,0,0);-ms-transform:matrix(0.248490,-0.002236,0.002250,0.249990,0,0);-webkit-transform:matrix(0.248490,-0.002236,0.002250,0.249990,0,0);}
.m27_c01095{transform:matrix(0.249165,-0.002242,0.002250,0.249990,0,0);-ms-transform:matrix(0.249165,-0.002242,0.002250,0.249990,0,0);-webkit-transform:matrix(0.249165,-0.002242,0.002250,0.249990,0,0);}
.me_c01095{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m9e_c01095{transform:matrix(0.250940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250940,0.000000,0.000000,0.250000,0,0);}
.m20_c01095{transform:matrix(0.251295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251295,0.000000,0.000000,0.250000,0,0);}
.mc1_c01095{transform:matrix(0.252240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252240,0.000000,0.000000,0.250000,0,0);}
.m78_c01095{transform:matrix(0.252618,0.004042,-0.003999,0.249968,0,0);-ms-transform:matrix(0.252618,0.004042,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.252618,0.004042,-0.003999,0.249968,0,0);}
.m5b_c01095{transform:matrix(0.253260,-0.001520,0.001500,0.249996,0,0);-ms-transform:matrix(0.253260,-0.001520,0.001500,0.249996,0,0);-webkit-transform:matrix(0.253260,-0.001520,0.001500,0.249996,0,0);}
.mbf_c01095{transform:matrix(0.254445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254445,0.000000,0.000000,0.250000,0,0);}
.md0_c01095{transform:matrix(0.254999,-0.001785,0.001750,0.249994,0,0);-ms-transform:matrix(0.254999,-0.001785,0.001750,0.249994,0,0);-webkit-transform:matrix(0.254999,-0.001785,0.001750,0.249994,0,0);}
.m21_c01095{transform:matrix(0.255515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255515,0.000000,0.000000,0.250000,0,0);}
.m37_c01095{transform:matrix(0.255834,-0.004861,0.004749,0.249955,0,0);-ms-transform:matrix(0.255834,-0.004861,0.004749,0.249955,0,0);-webkit-transform:matrix(0.255834,-0.004861,0.004749,0.249955,0,0);}
.mbe_c01095{transform:matrix(0.256020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256020,0.000000,0.000000,0.250000,0,0);}
.m72_c01095{transform:matrix(0.256097,0.004098,-0.003999,0.249968,0,0);-ms-transform:matrix(0.256097,0.004098,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.256097,0.004098,-0.003999,0.249968,0,0);}
.mad_c01095{transform:matrix(0.256820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256820,0.000000,0.000000,0.250000,0,0);}
.m5_c01095{transform:matrix(0.260048,-0.005461,0.005249,0.249945,0,0);-ms-transform:matrix(0.260048,-0.005461,0.005249,0.249945,0,0);-webkit-transform:matrix(0.260048,-0.005461,0.005249,0.249945,0,0);}
.m74_c01095{transform:matrix(0.261966,0.004191,-0.003999,0.249968,0,0);-ms-transform:matrix(0.261966,0.004191,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.261966,0.004191,-0.003999,0.249968,0,0);}
.m79_c01095{transform:matrix(0.262166,0.004195,-0.003999,0.249968,0,0);-ms-transform:matrix(0.262166,0.004195,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.262166,0.004195,-0.003999,0.249968,0,0);}
.m4e_c01095{transform:matrix(0.263440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263440,0.000000,0.000000,0.250000,0,0);}
.mc2_c01095{transform:matrix(0.264955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264955,0.000000,0.000000,0.250000,0,0);}
.ma2_c01095{transform:matrix(0.265480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265480,0.000000,0.000000,0.250000,0,0);}
.mb0_c01095{transform:matrix(0.266025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266025,0.000000,0.000000,0.250000,0,0);}
.mdd_c01095{transform:matrix(0.266190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266190,0.000000,0.000000,0.250000,0,0);}
.mb6_c01095{transform:matrix(0.267290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267290,0.000000,0.000000,0.250000,0,0);}
.m73_c01095{transform:matrix(0.267406,0.004278,-0.003999,0.249968,0,0);-ms-transform:matrix(0.267406,0.004278,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.267406,0.004278,-0.003999,0.249968,0,0);}
.m16_c01095{transform:matrix(0.267535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267535,0.000000,0.000000,0.250000,0,0);}
.m29_c01095{transform:matrix(0.267654,-0.002409,0.002250,0.249990,0,0);-ms-transform:matrix(0.267654,-0.002409,0.002250,0.249990,0,0);-webkit-transform:matrix(0.267654,-0.002409,0.002250,0.249990,0,0);}
.mb8_c01095{transform:matrix(0.267890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267890,0.000000,0.000000,0.250000,0,0);}
.m69_c01095{transform:matrix(0.269116,0.004306,-0.003999,0.249968,0,0);-ms-transform:matrix(0.269116,0.004306,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.269116,0.004306,-0.003999,0.249968,0,0);}
.m10_c01095{transform:matrix(0.269235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269235,0.000000,0.000000,0.250000,0,0);}
.mda_c01095{transform:matrix(0.270273,-0.001892,0.001750,0.249994,0,0);-ms-transform:matrix(0.270273,-0.001892,0.001750,0.249994,0,0);-webkit-transform:matrix(0.270273,-0.001892,0.001750,0.249994,0,0);}
.mc9_c01095{transform:matrix(0.270385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270385,0.000000,0.000000,0.250000,0,0);}
.m7b_c01095{transform:matrix(0.270525,0.004328,-0.003999,0.249968,0,0);-ms-transform:matrix(0.270525,0.004328,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.270525,0.004328,-0.003999,0.249968,0,0);}
.ma1_c01095{transform:matrix(0.270670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270670,0.000000,0.000000,0.250000,0,0);}
.m32_c01095{transform:matrix(0.271469,-0.002443,0.002250,0.249990,0,0);-ms-transform:matrix(0.271469,-0.002443,0.002250,0.249990,0,0);-webkit-transform:matrix(0.271469,-0.002443,0.002250,0.249990,0,0);}
.m50_c01095{transform:matrix(0.271625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271625,0.000000,0.000000,0.250000,0,0);}
.mb7_c01095{transform:matrix(0.272785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272785,0.000000,0.000000,0.250000,0,0);}
.m6a_c01095{transform:matrix(0.273205,0.004371,-0.003999,0.249968,0,0);-ms-transform:matrix(0.273205,0.004371,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.273205,0.004371,-0.003999,0.249968,0,0);}
.m3_c01095{transform:matrix(0.273235,-0.005738,0.005249,0.249945,0,0);-ms-transform:matrix(0.273235,-0.005738,0.005249,0.249945,0,0);-webkit-transform:matrix(0.273235,-0.005738,0.005249,0.249945,0,0);}
.m8_c01095{transform:matrix(0.273675,-0.005747,0.005249,0.249945,0,0);-ms-transform:matrix(0.273675,-0.005747,0.005249,0.249945,0,0);-webkit-transform:matrix(0.273675,-0.005747,0.005249,0.249945,0,0);}
.m2_c01095{transform:matrix(0.274409,-0.005763,0.005249,0.249945,0,0);-ms-transform:matrix(0.274409,-0.005763,0.005249,0.249945,0,0);-webkit-transform:matrix(0.274409,-0.005763,0.005249,0.249945,0,0);}
.m6d_c01095{transform:matrix(0.274780,0.004396,-0.003999,0.249968,0,0);-ms-transform:matrix(0.274780,0.004396,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.274780,0.004396,-0.003999,0.249968,0,0);}
.maa_c01095{transform:matrix(0.275885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275885,0.000000,0.000000,0.250000,0,0);}
.mb4_c01095{transform:matrix(0.276020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276020,0.000000,0.000000,0.250000,0,0);}
.m2c_c01095{transform:matrix(0.276139,-0.002485,0.002250,0.249990,0,0);-ms-transform:matrix(0.276139,-0.002485,0.002250,0.249990,0,0);-webkit-transform:matrix(0.276139,-0.002485,0.002250,0.249990,0,0);}
.mb_c01095{transform:matrix(0.278069,-0.005839,0.005249,0.249945,0,0);-ms-transform:matrix(0.278069,-0.005839,0.005249,0.249945,0,0);-webkit-transform:matrix(0.278069,-0.005839,0.005249,0.249945,0,0);}
.m31_c01095{transform:matrix(0.278379,-0.002505,0.002250,0.249990,0,0);-ms-transform:matrix(0.278379,-0.002505,0.002250,0.249990,0,0);-webkit-transform:matrix(0.278379,-0.002505,0.002250,0.249990,0,0);}
.m3a_c01095{transform:matrix(0.278585,-0.005293,0.004749,0.249955,0,0);-ms-transform:matrix(0.278585,-0.005293,0.004749,0.249955,0,0);-webkit-transform:matrix(0.278585,-0.005293,0.004749,0.249955,0,0);}
.m53_c01095{transform:matrix(0.279270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279270,0.000000,0.000000,0.250000,0,0);}
.m2b_c01095{transform:matrix(0.280294,-0.002523,0.002250,0.249990,0,0);-ms-transform:matrix(0.280294,-0.002523,0.002250,0.249990,0,0);-webkit-transform:matrix(0.280294,-0.002523,0.002250,0.249990,0,0);}
.m51_c01095{transform:matrix(0.280355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280355,0.000000,0.000000,0.250000,0,0);}
.mba_c01095{transform:matrix(0.280680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280680,0.000000,0.000000,0.250000,0,0);}
.m1d_c01095{transform:matrix(0.281035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281035,0.000000,0.000000,0.250000,0,0);}
.mab_c01095{transform:matrix(0.281625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281625,0.000000,0.000000,0.250000,0,0);}
.mcb_c01095{transform:matrix(0.283610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283610,0.000000,0.000000,0.250000,0,0);}
.m60_c01095{transform:matrix(0.284050,-0.001704,0.001500,0.249996,0,0);-ms-transform:matrix(0.284050,-0.001704,0.001500,0.249996,0,0);-webkit-transform:matrix(0.284050,-0.001704,0.001500,0.249996,0,0);}
.mdb_c01095{transform:matrix(0.285365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285365,0.000000,0.000000,0.250000,0,0);}
.mf_c01095{transform:matrix(0.286500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286500,0.000000,0.000000,0.250000,0,0);}
.ma3_c01095{transform:matrix(0.287860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287860,0.000000,0.000000,0.250000,0,0);}
.m40_c01095{transform:matrix(0.288013,-0.005472,0.004749,0.249955,0,0);-ms-transform:matrix(0.288013,-0.005472,0.004749,0.249955,0,0);-webkit-transform:matrix(0.288013,-0.005472,0.004749,0.249955,0,0);}
.m84_c01095{transform:matrix(0.288683,-0.003176,0.002750,0.249985,0,0);-ms-transform:matrix(0.288683,-0.003176,0.002750,0.249985,0,0);-webkit-transform:matrix(0.288683,-0.003176,0.002750,0.249985,0,0);}
.m2f_c01095{transform:matrix(0.288728,-0.002599,0.002250,0.249990,0,0);-ms-transform:matrix(0.288728,-0.002599,0.002250,0.249990,0,0);-webkit-transform:matrix(0.288728,-0.002599,0.002250,0.249990,0,0);}
.m1c_c01095{transform:matrix(0.289360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289360,0.000000,0.000000,0.250000,0,0);}
.m1b_c01095{transform:matrix(0.289935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289935,0.000000,0.000000,0.250000,0,0);}
.m22_c01095{transform:matrix(0.290190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290190,0.000000,0.000000,0.250000,0,0);}
.mc3_c01095{transform:matrix(0.294035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294035,0.000000,0.000000,0.250000,0,0);}
.m1a_c01095{transform:matrix(0.294100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294100,0.000000,0.000000,0.250000,0,0);}
.m11_c01095{transform:matrix(0.294345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294345,0.000000,0.000000,0.250000,0,0);}
.mc0_c01095{transform:matrix(0.295595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295595,0.000000,0.000000,0.250000,0,0);}
.ma8_c01095{transform:matrix(0.298835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298835,0.000000,0.000000,0.250000,0,0);}
.md9_c01095{transform:matrix(0.299363,-0.002096,0.001750,0.249994,0,0);-ms-transform:matrix(0.299363,-0.002096,0.001750,0.249994,0,0);-webkit-transform:matrix(0.299363,-0.002096,0.001750,0.249994,0,0);}
.m1f_c01095{transform:matrix(0.300620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300620,0.000000,0.000000,0.250000,0,0);}
.m8b_c01095{transform:matrix(0.300837,-0.003309,0.002750,0.249985,0,0);-ms-transform:matrix(0.300837,-0.003309,0.002750,0.249985,0,0);-webkit-transform:matrix(0.300837,-0.003309,0.002750,0.249985,0,0);}
.mdc_c01095{transform:matrix(0.302705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302705,0.000000,0.000000,0.250000,0,0);}
.mc6_c01095{transform:matrix(0.302710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302710,0.000000,0.000000,0.250000,0,0);}
.m3b_c01095{transform:matrix(0.304185,-0.005780,0.004749,0.249955,0,0);-ms-transform:matrix(0.304185,-0.005780,0.004749,0.249955,0,0);-webkit-transform:matrix(0.304185,-0.005780,0.004749,0.249955,0,0);}
.mc8_c01095{transform:matrix(0.304865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304865,0.000000,0.000000,0.250000,0,0);}
.m24_c01095{transform:matrix(0.305175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305175,0.000000,0.000000,0.250000,0,0);}
.ma6_c01095{transform:matrix(0.306645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306645,0.000000,0.000000,0.250000,0,0);}
.md_c01095{transform:matrix(0.308230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308230,0.000000,0.000000,0.250000,0,0);}
.mc7_c01095{transform:matrix(0.308730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308730,0.000000,0.000000,0.250000,0,0);}
.mcc_c01095{transform:matrix(0.309645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309645,0.000000,0.000000,0.250000,0,0);}
.m6f_c01095{transform:matrix(0.311330,0.004981,-0.003999,0.249968,0,0);-ms-transform:matrix(0.311330,0.004981,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.311330,0.004981,-0.003999,0.249968,0,0);}
.mb3_c01095{transform:matrix(0.312845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312845,0.000000,0.000000,0.250000,0,0);}
.m59_c01095{transform:matrix(0.313124,-0.001879,0.001500,0.249996,0,0);-ms-transform:matrix(0.313124,-0.001879,0.001500,0.249996,0,0);-webkit-transform:matrix(0.313124,-0.001879,0.001500,0.249996,0,0);}
.md2_c01095{transform:matrix(0.313462,-0.002194,0.001750,0.249994,0,0);-ms-transform:matrix(0.313462,-0.002194,0.001750,0.249994,0,0);-webkit-transform:matrix(0.313462,-0.002194,0.001750,0.249994,0,0);}
.mbb_c01095{transform:matrix(0.314675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314675,0.000000,0.000000,0.250000,0,0);}
.m57_c01095{transform:matrix(0.315505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315505,0.000000,0.000000,0.250000,0,0);}
.m92_c01095{transform:matrix(0.315696,-0.003473,0.002750,0.249985,0,0);-ms-transform:matrix(0.315696,-0.003473,0.002750,0.249985,0,0);-webkit-transform:matrix(0.315696,-0.003473,0.002750,0.249985,0,0);}
.ma5_c01095{transform:matrix(0.316795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316795,0.000000,0.000000,0.250000,0,0);}
.md1_c01095{transform:matrix(0.317442,-0.002222,0.001750,0.249994,0,0);-ms-transform:matrix(0.317442,-0.002222,0.001750,0.249994,0,0);-webkit-transform:matrix(0.317442,-0.002222,0.001750,0.249994,0,0);}
.mb1_c01095{transform:matrix(0.318235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318235,0.000000,0.000000,0.250000,0,0);}
.md6_c01095{transform:matrix(0.318882,-0.002232,0.001750,0.249994,0,0);-ms-transform:matrix(0.318882,-0.002232,0.001750,0.249994,0,0);-webkit-transform:matrix(0.318882,-0.002232,0.001750,0.249994,0,0);}
.m26_c01095{transform:matrix(0.319580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319580,0.000000,0.000000,0.250000,0,0);}
.m9d_c01095{transform:matrix(0.322900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322900,0.000000,0.000000,0.250000,0,0);}
.m25_c01095{transform:matrix(0.323830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323830,0.000000,0.000000,0.250000,0,0);}
.m33_c01095{transform:matrix(0.325407,-0.002929,0.002250,0.249990,0,0);-ms-transform:matrix(0.325407,-0.002929,0.002250,0.249990,0,0);-webkit-transform:matrix(0.325407,-0.002929,0.002250,0.249990,0,0);}
.mca_c01095{transform:matrix(0.327300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327300,0.000000,0.000000,0.250000,0,0);}
.maf_c01095{transform:matrix(0.331735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331735,0.000000,0.000000,0.250000,0,0);}
.m54_c01095{transform:matrix(0.333350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333350,0.000000,0.000000,0.250000,0,0);}
.me3_c01095{transform:matrix(0.339490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339490,0.000000,0.000000,0.250000,0,0);}
.m9_c01095{transform:matrix(0.341980,-0.007182,0.005249,0.249945,0,0);-ms-transform:matrix(0.341980,-0.007182,0.005249,0.249945,0,0);-webkit-transform:matrix(0.341980,-0.007182,0.005249,0.249945,0,0);}
.mdf_c01095{transform:matrix(0.343020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343020,0.000000,0.000000,0.250000,0,0);}
.m99_c01095{transform:matrix(0.344674,-0.003791,0.002750,0.249985,0,0);-ms-transform:matrix(0.344674,-0.003791,0.002750,0.249985,0,0);-webkit-transform:matrix(0.344674,-0.003791,0.002750,0.249985,0,0);}
.ma7_c01095{transform:matrix(0.346920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346920,0.000000,0.000000,0.250000,0,0);}
.m42_c01095{transform:matrix(0.353441,-0.006715,0.004749,0.249955,0,0);-ms-transform:matrix(0.353441,-0.006715,0.004749,0.249955,0,0);-webkit-transform:matrix(0.353441,-0.006715,0.004749,0.249955,0,0);}
.m95_c01095{transform:matrix(0.354364,-0.003898,0.002750,0.249985,0,0);-ms-transform:matrix(0.354364,-0.003898,0.002750,0.249985,0,0);-webkit-transform:matrix(0.354364,-0.003898,0.002750,0.249985,0,0);}
.m56_c01095{transform:matrix(0.355995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355995,0.000000,0.000000,0.250000,0,0);}
.md4_c01095{transform:matrix(0.360001,-0.002520,0.001750,0.249994,0,0);-ms-transform:matrix(0.360001,-0.002520,0.001750,0.249994,0,0);-webkit-transform:matrix(0.360001,-0.002520,0.001750,0.249994,0,0);}
.m89_c01095{transform:matrix(0.364153,-0.004006,0.002750,0.249985,0,0);-ms-transform:matrix(0.364153,-0.004006,0.002750,0.249985,0,0);-webkit-transform:matrix(0.364153,-0.004006,0.002750,0.249985,0,0);}
.ma_c01095{transform:matrix(0.364250,-0.007649,0.005249,0.249945,0,0);-ms-transform:matrix(0.364250,-0.007649,0.005249,0.249945,0,0);-webkit-transform:matrix(0.364250,-0.007649,0.005249,0.249945,0,0);}
.m30_c01095{transform:matrix(0.365310,-0.003288,0.002250,0.249990,0,0);-ms-transform:matrix(0.365310,-0.003288,0.002250,0.249990,0,0);-webkit-transform:matrix(0.365310,-0.003288,0.002250,0.249990,0,0);}
.m76_c01095{transform:matrix(0.365863,0.005854,-0.003999,0.249968,0,0);-ms-transform:matrix(0.365863,0.005854,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.365863,0.005854,-0.003999,0.249968,0,0);}
.m8f_c01095{transform:matrix(0.367258,-0.004040,0.002750,0.249985,0,0);-ms-transform:matrix(0.367258,-0.004040,0.002750,0.249985,0,0);-webkit-transform:matrix(0.367258,-0.004040,0.002750,0.249985,0,0);}
.m75_c01095{transform:matrix(0.375167,0.006003,-0.003999,0.249968,0,0);-ms-transform:matrix(0.375167,0.006003,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.375167,0.006003,-0.003999,0.249968,0,0);}
.ma4_c01095{transform:matrix(0.376990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376990,0.000000,0.000000,0.250000,0,0);}
.m94_c01095{transform:matrix(0.377252,-0.004150,0.002750,0.249985,0,0);-ms-transform:matrix(0.377252,-0.004150,0.002750,0.249985,0,0);-webkit-transform:matrix(0.377252,-0.004150,0.002750,0.249985,0,0);}
.m52_c01095{transform:matrix(0.378270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378270,0.000000,0.000000,0.250000,0,0);}
.m19_c01095{transform:matrix(0.382330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382330,0.000000,0.000000,0.250000,0,0);}
.m58_c01095{transform:matrix(0.385870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385870,0.000000,0.000000,0.250000,0,0);}
.m8c_c01095{transform:matrix(0.388901,-0.004278,0.002750,0.249985,0,0);-ms-transform:matrix(0.388901,-0.004278,0.002750,0.249985,0,0);-webkit-transform:matrix(0.388901,-0.004278,0.002750,0.249985,0,0);}
.m3f_c01095{transform:matrix(0.391914,-0.007446,0.004749,0.249955,0,0);-ms-transform:matrix(0.391914,-0.007446,0.004749,0.249955,0,0);-webkit-transform:matrix(0.391914,-0.007446,0.004749,0.249955,0,0);}
.me6_c01095{transform:matrix(0.392065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392065,0.000000,0.000000,0.250000,0,0);}
.m68_c01095{transform:matrix(0.393680,0.006299,-0.003999,0.249968,0,0);-ms-transform:matrix(0.393680,0.006299,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.393680,0.006299,-0.003999,0.249968,0,0);}
.m13_c01095{transform:matrix(0.395925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395925,0.000000,0.000000,0.250000,0,0);}
.me9_c01095{transform:matrix(0.397960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397960,0.000000,0.000000,0.250000,0,0);}
.m6c_c01095{transform:matrix(0.398154,0.006370,-0.003999,0.249968,0,0);-ms-transform:matrix(0.398154,0.006370,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.398154,0.006370,-0.003999,0.249968,0,0);}
.me4_c01095{transform:matrix(0.400425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400425,0.000000,0.000000,0.250000,0,0);}
.ma9_c01095{transform:matrix(0.401315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401315,0.000000,0.000000,0.250000,0,0);}
.m7a_c01095{transform:matrix(0.401699,0.006427,-0.003999,0.249968,0,0);-ms-transform:matrix(0.401699,0.006427,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.401699,0.006427,-0.003999,0.249968,0,0);}
.m8d_c01095{transform:matrix(0.403091,-0.004434,0.002750,0.249985,0,0);-ms-transform:matrix(0.403091,-0.004434,0.002750,0.249985,0,0);-webkit-transform:matrix(0.403091,-0.004434,0.002750,0.249985,0,0);}
.mac_c01095{transform:matrix(0.403320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403320,0.000000,0.000000,0.250000,0,0);}
.m4c_c01095{transform:matrix(0.406815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406815,0.000000,0.000000,0.250000,0,0);}
.m3d_c01095{transform:matrix(0.407951,-0.007751,0.004749,0.249955,0,0);-ms-transform:matrix(0.407951,-0.007751,0.004749,0.249955,0,0);-webkit-transform:matrix(0.407951,-0.007751,0.004749,0.249955,0,0);}
.m6e_c01095{transform:matrix(0.409443,0.006551,-0.003999,0.249968,0,0);-ms-transform:matrix(0.409443,0.006551,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.409443,0.006551,-0.003999,0.249968,0,0);}
.mde_c01095{transform:matrix(0.415860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415860,0.000000,0.000000,0.250000,0,0);}
.md7_c01095{transform:matrix(0.416125,-0.002913,0.001750,0.249994,0,0);-ms-transform:matrix(0.416125,-0.002913,0.001750,0.249994,0,0);-webkit-transform:matrix(0.416125,-0.002913,0.001750,0.249994,0,0);}
.m93_c01095{transform:matrix(0.417320,-0.004591,0.002750,0.249985,0,0);-ms-transform:matrix(0.417320,-0.004591,0.002750,0.249985,0,0);-webkit-transform:matrix(0.417320,-0.004591,0.002750,0.249985,0,0);}
.m6b_c01095{transform:matrix(0.417802,0.006685,-0.003999,0.249968,0,0);-ms-transform:matrix(0.417802,0.006685,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.417802,0.006685,-0.003999,0.249968,0,0);}
.m48_c01095{transform:matrix(0.420889,-0.007997,0.004749,0.249955,0,0);-ms-transform:matrix(0.420889,-0.007997,0.004749,0.249955,0,0);-webkit-transform:matrix(0.420889,-0.007997,0.004749,0.249955,0,0);}
.m97_c01095{transform:matrix(0.423779,-0.004662,0.002750,0.249985,0,0);-ms-transform:matrix(0.423779,-0.004662,0.002750,0.249985,0,0);-webkit-transform:matrix(0.423779,-0.004662,0.002750,0.249985,0,0);}
.m44_c01095{transform:matrix(0.426018,-0.008094,0.004749,0.249955,0,0);-ms-transform:matrix(0.426018,-0.008094,0.004749,0.249955,0,0);-webkit-transform:matrix(0.426018,-0.008094,0.004749,0.249955,0,0);}
.mc5_c01095{transform:matrix(0.427730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427730,0.000000,0.000000,0.250000,0,0);}
.m83_c01095{transform:matrix(0.430489,-0.004735,0.002750,0.249985,0,0);-ms-transform:matrix(0.430489,-0.004735,0.002750,0.249985,0,0);-webkit-transform:matrix(0.430489,-0.004735,0.002750,0.249985,0,0);}
.m64_c01095{transform:matrix(0.439357,-0.002636,0.001500,0.249996,0,0);-ms-transform:matrix(0.439357,-0.002636,0.001500,0.249996,0,0);-webkit-transform:matrix(0.439357,-0.002636,0.001500,0.249996,0,0);}
.m45_c01095{transform:matrix(0.442275,-0.008403,0.004749,0.249955,0,0);-ms-transform:matrix(0.442275,-0.008403,0.004749,0.249955,0,0);-webkit-transform:matrix(0.442275,-0.008403,0.004749,0.249955,0,0);}
.m47_c01095{transform:matrix(0.447324,-0.008499,0.004749,0.249955,0,0);-ms-transform:matrix(0.447324,-0.008499,0.004749,0.249955,0,0);-webkit-transform:matrix(0.447324,-0.008499,0.004749,0.249955,0,0);}
.mcd_c01095{transform:matrix(0.448564,-0.003140,0.001750,0.249994,0,0);-ms-transform:matrix(0.448564,-0.003140,0.001750,0.249994,0,0);-webkit-transform:matrix(0.448564,-0.003140,0.001750,0.249994,0,0);}
.m98_c01095{transform:matrix(0.458487,-0.005043,0.002750,0.249985,0,0);-ms-transform:matrix(0.458487,-0.005043,0.002750,0.249985,0,0);-webkit-transform:matrix(0.458487,-0.005043,0.002750,0.249985,0,0);}
.m46_c01095{transform:matrix(0.466876,-0.008871,0.004749,0.249955,0,0);-ms-transform:matrix(0.466876,-0.008871,0.004749,0.249955,0,0);-webkit-transform:matrix(0.466876,-0.008871,0.004749,0.249955,0,0);}
.m9a_c01095{transform:matrix(0.472111,-0.005193,0.002750,0.249985,0,0);-ms-transform:matrix(0.472111,-0.005193,0.002750,0.249985,0,0);-webkit-transform:matrix(0.472111,-0.005193,0.002750,0.249985,0,0);}
.m34_c01095{transform:matrix(0.477391,-0.004297,0.002250,0.249990,0,0);-ms-transform:matrix(0.477391,-0.004297,0.002250,0.249990,0,0);-webkit-transform:matrix(0.477391,-0.004297,0.002250,0.249990,0,0);}
.m4b_c01095{transform:matrix(0.490955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490955,0.000000,0.000000,0.250000,0,0);}
.m86_c01095{transform:matrix(0.496585,-0.005462,0.002750,0.249985,0,0);-ms-transform:matrix(0.496585,-0.005462,0.002750,0.249985,0,0);-webkit-transform:matrix(0.496585,-0.005462,0.002750,0.249985,0,0);}
.mce_c01095{transform:matrix(0.503583,-0.003525,0.001750,0.249994,0,0);-ms-transform:matrix(0.503583,-0.003525,0.001750,0.249994,0,0);-webkit-transform:matrix(0.503583,-0.003525,0.001750,0.249994,0,0);}
.m96_c01095{transform:matrix(0.509614,-0.005606,0.002750,0.249985,0,0);-ms-transform:matrix(0.509614,-0.005606,0.002750,0.249985,0,0);-webkit-transform:matrix(0.509614,-0.005606,0.002750,0.249985,0,0);}
.m87_c01095{transform:matrix(0.514264,-0.005657,0.002750,0.249985,0,0);-ms-transform:matrix(0.514264,-0.005657,0.002750,0.249985,0,0);-webkit-transform:matrix(0.514264,-0.005657,0.002750,0.249985,0,0);}
.me0_c01095{transform:matrix(0.526540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526540,0.000000,0.000000,0.250000,0,0);}
.m4a_c01095{transform:matrix(0.529544,-0.010061,0.004749,0.249955,0,0);-ms-transform:matrix(0.529544,-0.010061,0.004749,0.249955,0,0);-webkit-transform:matrix(0.529544,-0.010061,0.004749,0.249955,0,0);}
.m43_c01095{transform:matrix(0.536908,-0.010201,0.004749,0.249955,0,0);-ms-transform:matrix(0.536908,-0.010201,0.004749,0.249955,0,0);-webkit-transform:matrix(0.536908,-0.010201,0.004749,0.249955,0,0);}
.m18_c01095{transform:matrix(0.538470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538470,0.000000,0.000000,0.250000,0,0);}
.mc_c01095{transform:matrix(0.542680,-0.011396,0.005249,0.249945,0,0);-ms-transform:matrix(0.542680,-0.011396,0.005249,0.249945,0,0);-webkit-transform:matrix(0.542680,-0.011396,0.005249,0.249945,0,0);}
.me1_c01095{transform:matrix(0.547315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547315,0.000000,0.000000,0.250000,0,0);}
.m70_c01095{transform:matrix(0.555374,0.008886,-0.003999,0.249968,0,0);-ms-transform:matrix(0.555374,0.008886,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.555374,0.008886,-0.003999,0.249968,0,0);}
.m67_c01095{transform:matrix(0.557664,0.008923,-0.003999,0.249968,0,0);-ms-transform:matrix(0.557664,0.008923,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.557664,0.008923,-0.003999,0.249968,0,0);}
.m35_c01095{transform:matrix(0.565778,-0.010750,0.004749,0.249955,0,0);-ms-transform:matrix(0.565778,-0.010750,0.004749,0.249955,0,0);-webkit-transform:matrix(0.565778,-0.010750,0.004749,0.249955,0,0);}
.m17_c01095{transform:matrix(0.593885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.593885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.593885,0.000000,0.000000,0.250000,0,0);}
.m8e_c01095{transform:matrix(0.612788,-0.006741,0.002750,0.249985,0,0);-ms-transform:matrix(0.612788,-0.006741,0.002750,0.249985,0,0);-webkit-transform:matrix(0.612788,-0.006741,0.002750,0.249985,0,0);}
.m1_c01095{transform:matrix(0.633745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.633745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.633745,0.000000,0.000000,0.250000,0,0);}
.m71_c01095{transform:matrix(0.642473,0.010280,-0.003999,0.249968,0,0);-ms-transform:matrix(0.642473,0.010280,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.642473,0.010280,-0.003999,0.249968,0,0);}
.m8a_c01095{transform:matrix(0.663830,-0.007302,0.002750,0.249985,0,0);-ms-transform:matrix(0.663830,-0.007302,0.002750,0.249985,0,0);-webkit-transform:matrix(0.663830,-0.007302,0.002750,0.249985,0,0);}
.m85_c01095{transform:matrix(0.728016,-0.008008,0.002750,0.249985,0,0);-ms-transform:matrix(0.728016,-0.008008,0.002750,0.249985,0,0);-webkit-transform:matrix(0.728016,-0.008008,0.002750,0.249985,0,0);}
.m9b_c01095{transform:matrix(0.776148,-0.008538,0.002750,0.249985,0,0);-ms-transform:matrix(0.776148,-0.008538,0.002750,0.249985,0,0);-webkit-transform:matrix(0.776148,-0.008538,0.002750,0.249985,0,0);}
.m77_c01095{transform:matrix(0.795973,0.012736,-0.003999,0.249968,0,0);-ms-transform:matrix(0.795973,0.012736,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.795973,0.012736,-0.003999,0.249968,0,0);}
.m91_c01095{transform:matrix(0.859088,-0.009450,0.002750,0.249985,0,0);-ms-transform:matrix(0.859088,-0.009450,0.002750,0.249985,0,0);-webkit-transform:matrix(0.859088,-0.009450,0.002750,0.249985,0,0);}
.me2_c01095{transform:matrix(0.908400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.908400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.908400,0.000000,0.000000,0.250000,0,0);}
.m80_c01095{transform:matrix(0.920379,-0.010124,0.002750,0.249985,0,0);-ms-transform:matrix(0.920379,-0.010124,0.002750,0.249985,0,0);-webkit-transform:matrix(0.920379,-0.010124,0.002750,0.249985,0,0);}
.m3c_c01095{transform:matrix(0.927583,-0.017624,0.004749,0.249955,0,0);-ms-transform:matrix(0.927583,-0.017624,0.004749,0.249955,0,0);-webkit-transform:matrix(0.927583,-0.017624,0.004749,0.249955,0,0);}
.m66_c01095{transform:matrix(0.944884,0.015118,-0.003999,0.249968,0,0);-ms-transform:matrix(0.944884,0.015118,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.944884,0.015118,-0.003999,0.249968,0,0);}
.me8_c01095{transform:matrix(1.000265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.000265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.000265,0.000000,0.000000,0.250000,0,0);}
.m90_c01095{transform:matrix(1.110663,-0.012217,0.002750,0.249985,0,0);-ms-transform:matrix(1.110663,-0.012217,0.002750,0.249985,0,0);-webkit-transform:matrix(1.110663,-0.012217,0.002750,0.249985,0,0);}
.v0_c01095{vertical-align:0.000000px;}
.ls0_c01095{letter-spacing:0.000000px;}
.sc__c01095{text-shadow:none;}
.sc0_c01095{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__c01095{-webkit-text-stroke:0px transparent;}
.sc0_c01095{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01095{word-spacing:0.000000px;}
.fc0_c01095{color:transparent;}
.fsc_c01095{font-size:24.000000px;}
.fse_c01095{font-size:54.003267px;}
.fs0_c01095{font-size:60.000000px;}
.fsf_c01095{font-size:66.003993px;}
.fs6_c01095{font-size:66.011912px;}
.fs3_c01095{font-size:72.000000px;}
.fs8_c01095{font-size:78.000000px;}
.fs1_c01095{font-size:78.017197px;}
.fs2_c01095{font-size:84.000000px;}
.fs4_c01095{font-size:84.003402px;}
.fsa_c01095{font-size:84.010751px;}
.fs5_c01095{font-size:84.015161px;}
.fs12_c01095{font-size:90.000000px;}
.fsb_c01095{font-size:90.011519px;}
.fs7_c01095{font-size:96.000000px;}
.fs9_c01095{font-size:96.001728px;}
.fs11_c01095{font-size:96.002352px;}
.fs10_c01095{font-size:114.000000px;}
.fsd_c01095{font-size:150.009075px;}
.y0_c01095{bottom:0.000000px;}
.y7c_c01095{bottom:96.360242px;}
.y82_c01095{bottom:96.360647px;}
.y7a_c01095{bottom:96.360771px;}
.y7d_c01095{bottom:96.360795px;}
.y7b_c01095{bottom:96.360845px;}
.y80_c01095{bottom:96.360909px;}
.y81_c01095{bottom:96.361069px;}
.y7e_c01095{bottom:96.361228px;}
.y79_c01095{bottom:96.361374px;}
.y7f_c01095{bottom:96.361435px;}
.y6d_c01095{bottom:130.236243px;}
.y6e_c01095{bottom:130.236467px;}
.y6f_c01095{bottom:130.236540px;}
.y70_c01095{bottom:130.236870px;}
.y74_c01095{bottom:130.236910px;}
.y72_c01095{bottom:130.236943px;}
.y71_c01095{bottom:130.237380px;}
.y73_c01095{bottom:130.237407px;}
.y76_c01095{bottom:130.237535px;}
.y75_c01095{bottom:130.237568px;}
.y77_c01095{bottom:130.237755px;}
.y78_c01095{bottom:130.237842px;}
.y64_c01095{bottom:154.720500px;}
.y65_c01095{bottom:155.482833px;}
.y67_c01095{bottom:155.932788px;}
.y66_c01095{bottom:156.057941px;}
.y68_c01095{bottom:157.298939px;}
.y69_c01095{bottom:157.533849px;}
.y6a_c01095{bottom:158.365927px;}
.y6b_c01095{bottom:158.599205px;}
.y6c_c01095{bottom:158.875596px;}
.y63_c01095{bottom:225.180000px;}
.y62_c01095{bottom:496.688232px;}
.y61_c01095{bottom:498.392448px;}
.y60_c01095{bottom:499.496496px;}
.y5f_c01095{bottom:501.335052px;}
.y5e_c01095{bottom:503.433900px;}
.y5d_c01095{bottom:504.524808px;}
.y5c_c01095{bottom:505.255224px;}
.y5b_c01095{bottom:506.590356px;}
.y5a_c01095{bottom:507.763212px;}
.y59_c01095{bottom:509.763156px;}
.y58_c01095{bottom:510.520956px;}
.y57_c01095{bottom:511.650264px;}
.y56_c01095{bottom:535.197552px;}
.y55_c01095{bottom:536.057112px;}
.y54_c01095{bottom:537.301104px;}
.y53_c01095{bottom:537.755760px;}
.y52_c01095{bottom:538.377216px;}
.y51_c01095{bottom:540.066456px;}
.y50_c01095{bottom:540.563424px;}
.y4f_c01095{bottom:541.360560px;}
.y4e_c01095{bottom:542.182440px;}
.y4d_c01095{bottom:542.706000px;}
.ya3_c01095{bottom:566.551500px;}
.ya2_c01095{bottom:601.606500px;}
.y94_c01095{bottom:701.658000px;}
.y95_c01095{bottom:702.066040px;}
.y96_c01095{bottom:702.729651px;}
.y97_c01095{bottom:703.226752px;}
.y98_c01095{bottom:703.466856px;}
.y99_c01095{bottom:703.640610px;}
.y9a_c01095{bottom:704.003564px;}
.y9b_c01095{bottom:704.466698px;}
.y9c_c01095{bottom:704.682116px;}
.y9d_c01095{bottom:705.207315px;}
.y9e_c01095{bottom:705.452952px;}
.y9f_c01095{bottom:705.608100px;}
.ya0_c01095{bottom:706.132963px;}
.ya1_c01095{bottom:706.379052px;}
.y40_c01095{bottom:737.911500px;}
.y41_c01095{bottom:738.178539px;}
.y42_c01095{bottom:738.376449px;}
.y43_c01095{bottom:738.579120px;}
.y44_c01095{bottom:739.068261px;}
.y45_c01095{bottom:739.572036px;}
.y46_c01095{bottom:739.789332px;}
.y47_c01095{bottom:740.306094px;}
.y48_c01095{bottom:740.704443px;}
.y49_c01095{bottom:740.898843px;}
.y4a_c01095{bottom:741.156234px;}
.y4b_c01095{bottom:741.358923px;}
.y4c_c01095{bottom:742.018137px;}
.y93_c01095{bottom:776.304000px;}
.y85_c01095{bottom:810.811500px;}
.y86_c01095{bottom:811.287000px;}
.y87_c01095{bottom:812.142000px;}
.y88_c01095{bottom:812.415000px;}
.y89_c01095{bottom:812.788500px;}
.y8a_c01095{bottom:812.998500px;}
.y8b_c01095{bottom:813.916500px;}
.y8c_c01095{bottom:814.186500px;}
.y8d_c01095{bottom:814.594500px;}
.y8e_c01095{bottom:814.993500px;}
.y8f_c01095{bottom:814.995000px;}
.y90_c01095{bottom:815.407500px;}
.y91_c01095{bottom:815.673000px;}
.y92_c01095{bottom:815.892000px;}
.y84_c01095{bottom:847.671000px;}
.y34_c01095{bottom:883.176000px;}
.y35_c01095{bottom:883.413000px;}
.y36_c01095{bottom:884.292000px;}
.y37_c01095{bottom:885.643500px;}
.y38_c01095{bottom:886.983000px;}
.y39_c01095{bottom:888.196500px;}
.y3a_c01095{bottom:888.711000px;}
.y3b_c01095{bottom:889.236000px;}
.y3c_c01095{bottom:889.609500px;}
.y3d_c01095{bottom:889.876500px;}
.y3e_c01095{bottom:890.908500px;}
.y3f_c01095{bottom:891.832500px;}
.y33_c01095{bottom:916.978500px;}
.y83_c01095{bottom:949.725000px;}
.y27_c01095{bottom:955.811346px;}
.y28_c01095{bottom:957.529177px;}
.y29_c01095{bottom:959.621934px;}
.y2a_c01095{bottom:960.648172px;}
.y2b_c01095{bottom:962.085550px;}
.y2c_c01095{bottom:963.671727px;}
.y2d_c01095{bottom:965.443875px;}
.y2e_c01095{bottom:966.936082px;}
.y2f_c01095{bottom:969.012921px;}
.y30_c01095{bottom:970.004940px;}
.y31_c01095{bottom:970.695678px;}
.y32_c01095{bottom:971.161618px;}
.y1d_c01095{bottom:987.666000px;}
.y1e_c01095{bottom:989.162079px;}
.y1f_c01095{bottom:992.099859px;}
.y20_c01095{bottom:992.931660px;}
.y21_c01095{bottom:993.766824px;}
.y22_c01095{bottom:994.742408px;}
.y23_c01095{bottom:996.174191px;}
.y24_c01095{bottom:997.199506px;}
.y25_c01095{bottom:999.342592px;}
.y26_c01095{bottom:1001.081320px;}
.yf_c01095{bottom:1022.491500px;}
.y10_c01095{bottom:1023.200830px;}
.y11_c01095{bottom:1023.451282px;}
.y12_c01095{bottom:1024.384065px;}
.y13_c01095{bottom:1024.717663px;}
.y14_c01095{bottom:1025.384860px;}
.y15_c01095{bottom:1025.562507px;}
.y16_c01095{bottom:1026.082311px;}
.y17_c01095{bottom:1026.369496px;}
.y18_c01095{bottom:1027.130248px;}
.y19_c01095{bottom:1027.450644px;}
.y1a_c01095{bottom:1027.769204px;}
.y1b_c01095{bottom:1028.434038px;}
.y1c_c01095{bottom:1028.597806px;}
.ye_c01095{bottom:1060.131000px;}
.yd_c01095{bottom:1092.957000px;}
.y2_c01095{bottom:1125.373500px;}
.y3_c01095{bottom:1126.861938px;}
.y4_c01095{bottom:1129.384710px;}
.y5_c01095{bottom:1130.068606px;}
.y6_c01095{bottom:1130.788791px;}
.y7_c01095{bottom:1131.467836px;}
.y8_c01095{bottom:1132.158285px;}
.y9_c01095{bottom:1134.004973px;}
.ya_c01095{bottom:1134.757728px;}
.yb_c01095{bottom:1135.833012px;}
.yc_c01095{bottom:1137.162879px;}
.y1_c01095{bottom:1188.421500px;}
.he_c01095{height:24.000000px;}
.h10_c01095{height:54.003267px;}
.h2_c01095{height:60.000000px;}
.h11_c01095{height:66.003993px;}
.h8_c01095{height:66.011912px;}
.h5_c01095{height:72.000000px;}
.ha_c01095{height:78.000000px;}
.h3_c01095{height:78.017197px;}
.h4_c01095{height:84.000000px;}
.h6_c01095{height:84.003402px;}
.hc_c01095{height:84.010751px;}
.h7_c01095{height:84.015161px;}
.h14_c01095{height:90.000000px;}
.hd_c01095{height:90.011519px;}
.h9_c01095{height:96.000000px;}
.hb_c01095{height:96.001728px;}
.h13_c01095{height:96.002352px;}
.h12_c01095{height:114.000000px;}
.hf_c01095{height:150.009075px;}
.h0_c01095{height:1246.320000px;}
.h1_c01095{height:1246.500000px;}
.w0_c01095{width:917.190000px;}
.w1_c01095{width:917.250000px;}
.x0_c01095{left:0.000000px;}
.x3_c01095{left:37.078500px;}
.xe_c01095{left:42.660000px;}
.x26_c01095{left:49.621500px;}
.x32_c01095{left:60.762000px;}
.x45_c01095{left:69.474000px;}
.x8d_c01095{left:71.173500px;}
.x46_c01095{left:84.303000px;}
.x5f_c01095{left:88.113240px;}
.x84_c01095{left:90.450000px;}
.x97_c01095{left:91.533000px;}
.x4f_c01095{left:93.247500px;}
.x1b_c01095{left:103.950000px;}
.x3a_c01095{left:105.623082px;}
.x4_c01095{left:107.956500px;}
.xf_c01095{left:115.560000px;}
.x9d_c01095{left:118.431000px;}
.x50_c01095{left:126.232500px;}
.x27_c01095{left:128.436000px;}
.x8e_c01095{left:130.617000px;}
.x1c_c01095{left:137.970000px;}
.x33_c01095{left:139.503000px;}
.x59_c01095{left:148.168500px;}
.x28_c01095{left:156.264000px;}
.x51_c01095{left:160.011000px;}
.x10_c01095{left:170.910000px;}
.x3b_c01095{left:173.121192px;}
.x1d_c01095{left:186.300000px;}
.x85_c01095{left:190.350000px;}
.x5a_c01095{left:199.536000px;}
.xa5_c01095{left:200.880000px;}
.x98_c01095{left:204.663000px;}
.x3c_c01095{left:206.205139px;}
.x9e_c01095{left:213.232500px;}
.x11_c01095{left:215.190000px;}
.x47_c01095{left:223.669500px;}
.x5_c01095{left:228.088500px;}
.x8f_c01095{left:237.474000px;}
.x12_c01095{left:241.380000px;}
.xa6_c01095{left:246.510000px;}
.x1e_c01095{left:249.750000px;}
.x3d_c01095{left:252.556566px;}
.x60_c01095{left:257.066304px;}
.x6_c01095{left:260.655000px;}
.x99_c01095{left:265.953000px;}
.x90_c01095{left:271.561500px;}
.x5b_c01095{left:280.417500px;}
.x9f_c01095{left:284.247000px;}
.x9a_c01095{left:288.633000px;}
.xa7_c01095{left:290.790000px;}
.x7_c01095{left:294.949500px;}
.x29_c01095{left:296.973000px;}
.x3e_c01095{left:303.738409px;}
.x1f_c01095{left:304.830000px;}
.x48_c01095{left:307.408500px;}
.x86_c01095{left:314.550000px;}
.x69_c01095{left:316.351500px;}
.x91_c01095{left:318.273000px;}
.x71_c01095{left:321.572924px;}
.x52_c01095{left:325.497000px;}
.x8_c01095{left:327.285000px;}
.x34_c01095{left:337.902000px;}
.x87_c01095{left:343.980000px;}
.x72_c01095{left:347.764592px;}
.x13_c01095{left:349.650000px;}
.xa8_c01095{left:355.320000px;}
.x73_c01095{left:358.295862px;}
.x9_c01095{left:360.163500px;}
.x53_c01095{left:361.713000px;}
.x61_c01095{left:366.084588px;}
.x74_c01095{left:367.206935px;}
.x2a_c01095{left:371.106000px;}
.x88_c01095{left:373.950000px;}
.x79_c01095{left:375.850077px;}
.x14_c01095{left:381.780000px;}
.x49_c01095{left:383.280000px;}
.x5c_c01095{left:385.995000px;}
.x2b_c01095{left:390.844500px;}
.xa9_c01095{left:393.930000px;}
.xa0_c01095{left:395.220000px;}
.x62_c01095{left:397.857036px;}
.x1_c01095{left:401.490000px;}
.x3f_c01095{left:409.048913px;}
.xaa_c01095{left:410.940000px;}
.x20_c01095{left:413.910000px;}
.x4a_c01095{left:415.408500px;}
.x7a_c01095{left:421.482605px;}
.x2_c01095{left:423.900000px;}
.x6b_c01095{left:426.559500px;}
.x15_c01095{left:429.300000px;}
.x35_c01095{left:433.204500px;}
.x6a_c01095{left:437.937000px;}
.xab_c01095{left:442.530000px;}
.x63_c01095{left:445.314732px;}
.xa_c01095{left:448.101000px;}
.x5d_c01095{left:453.252000px;}
.x7b_c01095{left:456.855378px;}
.x92_c01095{left:459.169500px;}
.x16_c01095{left:461.700000px;}
.x21_c01095{left:462.780000px;}
.x75_c01095{left:465.494331px;}
.x4b_c01095{left:471.544500px;}
.x40_c01095{left:476.025136px;}
.x2c_c01095{left:480.510000px;}
.x9b_c01095{left:482.493000px;}
.xb_c01095{left:483.946500px;}
.x4c_c01095{left:488.278500px;}
.x89_c01095{left:490.860000px;}
.xa1_c01095{left:492.156000px;}
.x7c_c01095{left:493.308284px;}
.x22_c01095{left:498.420000px;}
.x36_c01095{left:508.561500px;}
.x54_c01095{left:514.231500px;}
.x17_c01095{left:522.180000px;}
.x23_c01095{left:526.770000px;}
.x41_c01095{left:530.315767px;}
.x7d_c01095{left:531.649920px;}
.xc_c01095{left:535.150500px;}
.x64_c01095{left:536.545008px;}
.x93_c01095{left:543.945000px;}
.x42_c01095{left:545.361847px;}
.x55_c01095{left:546.631500px;}
.x6c_c01095{left:550.755000px;}
.x4d_c01095{left:552.801000px;}
.x68_c01095{left:554.310000px;}
.x80_c01095{left:560.790000px;}
.x37_c01095{left:562.525500px;}
.x2d_c01095{left:565.038000px;}
.x76_c01095{left:567.290640px;}
.x9c_c01095{left:569.163000px;}
.x6d_c01095{left:572.110500px;}
.x81_c01095{left:579.420000px;}
.xac_c01095{left:580.770000px;}
.x5e_c01095{left:584.724000px;}
.x56_c01095{left:589.530000px;}
.x94_c01095{left:593.758500px;}
.xd_c01095{left:598.477500px;}
.x2e_c01095{left:600.637500px;}
.xa2_c01095{left:602.275500px;}
.x4e_c01095{left:610.540500px;}
.x24_c01095{left:612.360000px;}
.x65_c01095{left:616.477056px;}
.x82_c01095{left:620.730000px;}
.x57_c01095{left:623.311500px;}
.xa3_c01095{left:624.439500px;}
.x18_c01095{left:633.690000px;}
.x2f_c01095{left:636.033000px;}
.x7e_c01095{left:642.357318px;}
.x77_c01095{left:645.865644px;}
.x6e_c01095{left:647.754000px;}
.x43_c01095{left:655.020000px;}
.x19_c01095{left:661.770000px;}
.x66_c01095{left:664.474680px;}
.x6f_c01095{left:668.961000px;}
.x38_c01095{left:675.319500px;}
.x95_c01095{left:678.591000px;}
.x83_c01095{left:686.880000px;}
.x70_c01095{left:694.087500px;}
.x78_c01095{left:698.789046px;}
.x7f_c01095{left:699.871281px;}
.x8a_c01095{left:701.190000px;}
.x44_c01095{left:703.890000px;}
.x96_c01095{left:705.918000px;}
.x30_c01095{left:709.903500px;}
.xad_c01095{left:714.690000px;}
.x1a_c01095{left:715.770000px;}
.x25_c01095{left:720.900000px;}
.x31_c01095{left:728.100000px;}
.x8b_c01095{left:729.270000px;}
.x58_c01095{left:733.180500px;}
.xa4_c01095{left:734.575500px;}
.x67_c01095{left:738.542376px;}
.x39_c01095{left:766.831500px;}
.x8c_c01095{left:779.220000px;}
.xae_c01095{left:790.290000px;}
@media print{
.v0_c01095{vertical-align:0.000000pt;}
.ls0_c01095{letter-spacing:0.000000pt;}
.ws0_c01095{word-spacing:0.000000pt;}
.fsc_c01095{font-size:21.333333pt;}
.fse_c01095{font-size:48.002904pt;}
.fs0_c01095{font-size:53.333333pt;}
.fsf_c01095{font-size:58.670216pt;}
.fs6_c01095{font-size:58.677255pt;}
.fs3_c01095{font-size:64.000000pt;}
.fs8_c01095{font-size:69.333333pt;}
.fs1_c01095{font-size:69.348620pt;}
.fs2_c01095{font-size:74.666667pt;}
.fs4_c01095{font-size:74.669691pt;}
.fsa_c01095{font-size:74.676223pt;}
.fs5_c01095{font-size:74.680143pt;}
.fs12_c01095{font-size:80.000000pt;}
.fsb_c01095{font-size:80.010239pt;}
.fs7_c01095{font-size:85.333333pt;}
.fs9_c01095{font-size:85.334869pt;}
.fs11_c01095{font-size:85.335424pt;}
.fs10_c01095{font-size:101.333333pt;}
.fsd_c01095{font-size:133.341400pt;}
.y0_c01095{bottom:0.000000pt;}
.y7c_c01095{bottom:85.653548pt;}
.y82_c01095{bottom:85.653908pt;}
.y7a_c01095{bottom:85.654019pt;}
.y7d_c01095{bottom:85.654040pt;}
.y7b_c01095{bottom:85.654084pt;}
.y80_c01095{bottom:85.654141pt;}
.y81_c01095{bottom:85.654284pt;}
.y7e_c01095{bottom:85.654425pt;}
.y79_c01095{bottom:85.654555pt;}
.y7f_c01095{bottom:85.654609pt;}
.y6d_c01095{bottom:115.765549pt;}
.y6e_c01095{bottom:115.765748pt;}
.y6f_c01095{bottom:115.765813pt;}
.y70_c01095{bottom:115.766107pt;}
.y74_c01095{bottom:115.766143pt;}
.y72_c01095{bottom:115.766172pt;}
.y71_c01095{bottom:115.766560pt;}
.y73_c01095{bottom:115.766584pt;}
.y76_c01095{bottom:115.766697pt;}
.y75_c01095{bottom:115.766727pt;}
.y77_c01095{bottom:115.766893pt;}
.y78_c01095{bottom:115.766971pt;}
.y64_c01095{bottom:137.529333pt;}
.y65_c01095{bottom:138.206963pt;}
.y67_c01095{bottom:138.606923pt;}
.y66_c01095{bottom:138.718169pt;}
.y68_c01095{bottom:139.821279pt;}
.y69_c01095{bottom:140.030088pt;}
.y6a_c01095{bottom:140.769713pt;}
.y6b_c01095{bottom:140.977071pt;}
.y6c_c01095{bottom:141.222752pt;}
.y63_c01095{bottom:200.160000pt;}
.y62_c01095{bottom:441.500651pt;}
.y61_c01095{bottom:443.015509pt;}
.y60_c01095{bottom:443.996885pt;}
.y5f_c01095{bottom:445.631157pt;}
.y5e_c01095{bottom:447.496800pt;}
.y5d_c01095{bottom:448.466496pt;}
.y5c_c01095{bottom:449.115755pt;}
.y5b_c01095{bottom:450.302539pt;}
.y5a_c01095{bottom:451.345077pt;}
.y59_c01095{bottom:453.122805pt;}
.y58_c01095{bottom:453.796405pt;}
.y57_c01095{bottom:454.800235pt;}
.y56_c01095{bottom:475.731157pt;}
.y55_c01095{bottom:476.495211pt;}
.y54_c01095{bottom:477.600981pt;}
.y53_c01095{bottom:478.005120pt;}
.y52_c01095{bottom:478.557525pt;}
.y51_c01095{bottom:480.059072pt;}
.y50_c01095{bottom:480.500821pt;}
.y4f_c01095{bottom:481.209387pt;}
.y4e_c01095{bottom:481.939947pt;}
.y4d_c01095{bottom:482.405333pt;}
.ya3_c01095{bottom:503.601333pt;}
.ya2_c01095{bottom:534.761333pt;}
.y94_c01095{bottom:623.696000pt;}
.y95_c01095{bottom:624.058703pt;}
.y96_c01095{bottom:624.648579pt;}
.y97_c01095{bottom:625.090447pt;}
.y98_c01095{bottom:625.303872pt;}
.y99_c01095{bottom:625.458320pt;}
.y9a_c01095{bottom:625.780945pt;}
.y9b_c01095{bottom:626.192620pt;}
.y9c_c01095{bottom:626.384103pt;}
.y9d_c01095{bottom:626.850947pt;}
.y9e_c01095{bottom:627.069291pt;}
.y9f_c01095{bottom:627.207200pt;}
.ya0_c01095{bottom:627.673745pt;}
.ya1_c01095{bottom:627.892491pt;}
.y40_c01095{bottom:655.921333pt;}
.y41_c01095{bottom:656.158701pt;}
.y42_c01095{bottom:656.334621pt;}
.y43_c01095{bottom:656.514773pt;}
.y44_c01095{bottom:656.949565pt;}
.y45_c01095{bottom:657.397365pt;}
.y46_c01095{bottom:657.590517pt;}
.y47_c01095{bottom:658.049861pt;}
.y48_c01095{bottom:658.403949pt;}
.y49_c01095{bottom:658.576749pt;}
.y4a_c01095{bottom:658.805541pt;}
.y4b_c01095{bottom:658.985709pt;}
.y4c_c01095{bottom:659.571677pt;}
.y93_c01095{bottom:690.048000pt;}
.y85_c01095{bottom:720.721333pt;}
.y86_c01095{bottom:721.144000pt;}
.y87_c01095{bottom:721.904000pt;}
.y88_c01095{bottom:722.146667pt;}
.y89_c01095{bottom:722.478667pt;}
.y8a_c01095{bottom:722.665333pt;}
.y8b_c01095{bottom:723.481333pt;}
.y8c_c01095{bottom:723.721333pt;}
.y8d_c01095{bottom:724.084000pt;}
.y8e_c01095{bottom:724.438667pt;}
.y8f_c01095{bottom:724.440000pt;}
.y90_c01095{bottom:724.806667pt;}
.y91_c01095{bottom:725.042667pt;}
.y92_c01095{bottom:725.237333pt;}
.y84_c01095{bottom:753.485333pt;}
.y34_c01095{bottom:785.045333pt;}
.y35_c01095{bottom:785.256000pt;}
.y36_c01095{bottom:786.037333pt;}
.y37_c01095{bottom:787.238667pt;}
.y38_c01095{bottom:788.429333pt;}
.y39_c01095{bottom:789.508000pt;}
.y3a_c01095{bottom:789.965333pt;}
.y3b_c01095{bottom:790.432000pt;}
.y3c_c01095{bottom:790.764000pt;}
.y3d_c01095{bottom:791.001333pt;}
.y3e_c01095{bottom:791.918667pt;}
.y3f_c01095{bottom:792.740000pt;}
.y33_c01095{bottom:815.092000pt;}
.y83_c01095{bottom:844.200000pt;}
.y27_c01095{bottom:849.610085pt;}
.y28_c01095{bottom:851.137047pt;}
.y29_c01095{bottom:852.997275pt;}
.y2a_c01095{bottom:853.909487pt;}
.y2b_c01095{bottom:855.187156pt;}
.y2c_c01095{bottom:856.597091pt;}
.y2d_c01095{bottom:858.172333pt;}
.y2e_c01095{bottom:859.498740pt;}
.y2f_c01095{bottom:861.344819pt;}
.y30_c01095{bottom:862.226613pt;}
.y31_c01095{bottom:862.840603pt;}
.y32_c01095{bottom:863.254772pt;}
.y1d_c01095{bottom:877.925333pt;}
.y1e_c01095{bottom:879.255181pt;}
.y1f_c01095{bottom:881.866541pt;}
.y20_c01095{bottom:882.605920pt;}
.y21_c01095{bottom:883.348288pt;}
.y22_c01095{bottom:884.215473pt;}
.y23_c01095{bottom:885.488169pt;}
.y24_c01095{bottom:886.399561pt;}
.y25_c01095{bottom:888.304527pt;}
.y26_c01095{bottom:889.850063pt;}
.yf_c01095{bottom:908.881333pt;}
.y10_c01095{bottom:909.511849pt;}
.y11_c01095{bottom:909.734473pt;}
.y12_c01095{bottom:910.563613pt;}
.y13_c01095{bottom:910.860145pt;}
.y14_c01095{bottom:911.453209pt;}
.y15_c01095{bottom:911.611117pt;}
.y16_c01095{bottom:912.073165pt;}
.y17_c01095{bottom:912.328441pt;}
.y18_c01095{bottom:913.004665pt;}
.y19_c01095{bottom:913.289461pt;}
.y1a_c01095{bottom:913.572625pt;}
.y1b_c01095{bottom:914.163589pt;}
.y1c_c01095{bottom:914.309161pt;}
.ye_c01095{bottom:942.338667pt;}
.yd_c01095{bottom:971.517333pt;}
.y2_c01095{bottom:1000.332000pt;}
.y3_c01095{bottom:1001.655056pt;}
.y4_c01095{bottom:1003.897520pt;}
.y5_c01095{bottom:1004.505428pt;}
.y6_c01095{bottom:1005.145592pt;}
.y7_c01095{bottom:1005.749188pt;}
.y8_c01095{bottom:1006.362920pt;}
.y9_c01095{bottom:1008.004420pt;}
.ya_c01095{bottom:1008.673536pt;}
.yb_c01095{bottom:1009.629344pt;}
.yc_c01095{bottom:1010.811448pt;}
.y1_c01095{bottom:1056.374667pt;}
.he_c01095{height:21.333333pt;}
.h10_c01095{height:48.002904pt;}
.h2_c01095{height:53.333333pt;}
.h11_c01095{height:58.670216pt;}
.h8_c01095{height:58.677255pt;}
.h5_c01095{height:64.000000pt;}
.ha_c01095{height:69.333333pt;}
.h3_c01095{height:69.348620pt;}
.h4_c01095{height:74.666667pt;}
.h6_c01095{height:74.669691pt;}
.hc_c01095{height:74.676223pt;}
.h7_c01095{height:74.680143pt;}
.h14_c01095{height:80.000000pt;}
.hd_c01095{height:80.010239pt;}
.h9_c01095{height:85.333333pt;}
.hb_c01095{height:85.334869pt;}
.h13_c01095{height:85.335424pt;}
.h12_c01095{height:101.333333pt;}
.hf_c01095{height:133.341400pt;}
.h0_c01095{height:1107.840000pt;}
.h1_c01095{height:1108.000000pt;}
.w0_c01095{width:815.280000pt;}
.w1_c01095{width:815.333333pt;}
.x0_c01095{left:0.000000pt;}
.x3_c01095{left:32.958667pt;}
.xe_c01095{left:37.920000pt;}
.x26_c01095{left:44.108000pt;}
.x32_c01095{left:54.010667pt;}
.x45_c01095{left:61.754667pt;}
.x8d_c01095{left:63.265333pt;}
.x46_c01095{left:74.936000pt;}
.x5f_c01095{left:78.322880pt;}
.x84_c01095{left:80.400000pt;}
.x97_c01095{left:81.362667pt;}
.x4f_c01095{left:82.886667pt;}
.x1b_c01095{left:92.400000pt;}
.x3a_c01095{left:93.887184pt;}
.x4_c01095{left:95.961333pt;}
.xf_c01095{left:102.720000pt;}
.x9d_c01095{left:105.272000pt;}
.x50_c01095{left:112.206667pt;}
.x27_c01095{left:114.165333pt;}
.x8e_c01095{left:116.104000pt;}
.x1c_c01095{left:122.640000pt;}
.x33_c01095{left:124.002667pt;}
.x59_c01095{left:131.705333pt;}
.x28_c01095{left:138.901333pt;}
.x51_c01095{left:142.232000pt;}
.x10_c01095{left:151.920000pt;}
.x3b_c01095{left:153.885504pt;}
.x1d_c01095{left:165.600000pt;}
.x85_c01095{left:169.200000pt;}
.x5a_c01095{left:177.365333pt;}
.xa5_c01095{left:178.560000pt;}
.x98_c01095{left:181.922667pt;}
.x3c_c01095{left:183.293457pt;}
.x9e_c01095{left:189.540000pt;}
.x11_c01095{left:191.280000pt;}
.x47_c01095{left:198.817333pt;}
.x5_c01095{left:202.745333pt;}
.x8f_c01095{left:211.088000pt;}
.x12_c01095{left:214.560000pt;}
.xa6_c01095{left:219.120000pt;}
.x1e_c01095{left:222.000000pt;}
.x3d_c01095{left:224.494725pt;}
.x60_c01095{left:228.503381pt;}
.x6_c01095{left:231.693333pt;}
.x99_c01095{left:236.402667pt;}
.x90_c01095{left:241.388000pt;}
.x5b_c01095{left:249.260000pt;}
.x9f_c01095{left:252.664000pt;}
.x9a_c01095{left:256.562667pt;}
.xa7_c01095{left:258.480000pt;}
.x7_c01095{left:262.177333pt;}
.x29_c01095{left:263.976000pt;}
.x3e_c01095{left:269.989697pt;}
.x1f_c01095{left:270.960000pt;}
.x48_c01095{left:273.252000pt;}
.x86_c01095{left:279.600000pt;}
.x69_c01095{left:281.201333pt;}
.x91_c01095{left:282.909333pt;}
.x71_c01095{left:285.842599pt;}
.x52_c01095{left:289.330667pt;}
.x8_c01095{left:290.920000pt;}
.x34_c01095{left:300.357333pt;}
.x87_c01095{left:305.760000pt;}
.x72_c01095{left:309.124081pt;}
.x13_c01095{left:310.800000pt;}
.xa8_c01095{left:315.840000pt;}
.x73_c01095{left:318.485211pt;}
.x9_c01095{left:320.145333pt;}
.x53_c01095{left:321.522667pt;}
.x61_c01095{left:325.408523pt;}
.x74_c01095{left:326.406164pt;}
.x2a_c01095{left:329.872000pt;}
.x88_c01095{left:332.400000pt;}
.x79_c01095{left:334.088957pt;}
.x14_c01095{left:339.360000pt;}
.x49_c01095{left:340.693333pt;}
.x5c_c01095{left:343.106667pt;}
.x2b_c01095{left:347.417333pt;}
.xa9_c01095{left:350.160000pt;}
.xa0_c01095{left:351.306667pt;}
.x62_c01095{left:353.650699pt;}
.x1_c01095{left:356.880000pt;}
.x3f_c01095{left:363.599033pt;}
.xaa_c01095{left:365.280000pt;}
.x20_c01095{left:367.920000pt;}
.x4a_c01095{left:369.252000pt;}
.x7a_c01095{left:374.651204pt;}
.x2_c01095{left:376.800000pt;}
.x6b_c01095{left:379.164000pt;}
.x15_c01095{left:381.600000pt;}
.x35_c01095{left:385.070667pt;}
.x6a_c01095{left:389.277333pt;}
.xab_c01095{left:393.360000pt;}
.x63_c01095{left:395.835317pt;}
.xa_c01095{left:398.312000pt;}
.x5d_c01095{left:402.890667pt;}
.x7b_c01095{left:406.093669pt;}
.x92_c01095{left:408.150667pt;}
.x16_c01095{left:410.400000pt;}
.x21_c01095{left:411.360000pt;}
.x75_c01095{left:413.772739pt;}
.x4b_c01095{left:419.150667pt;}
.x40_c01095{left:423.133455pt;}
.x2c_c01095{left:427.120000pt;}
.x9b_c01095{left:428.882667pt;}
.xb_c01095{left:430.174667pt;}
.x4c_c01095{left:434.025333pt;}
.x89_c01095{left:436.320000pt;}
.xa1_c01095{left:437.472000pt;}
.x7c_c01095{left:438.496252pt;}
.x22_c01095{left:443.040000pt;}
.x36_c01095{left:452.054667pt;}
.x54_c01095{left:457.094667pt;}
.x17_c01095{left:464.160000pt;}
.x23_c01095{left:468.240000pt;}
.x41_c01095{left:471.391793pt;}
.x7d_c01095{left:472.577707pt;}
.xc_c01095{left:475.689333pt;}
.x64_c01095{left:476.928896pt;}
.x93_c01095{left:483.506667pt;}
.x42_c01095{left:484.766087pt;}
.x55_c01095{left:485.894667pt;}
.x6c_c01095{left:489.560000pt;}
.x4d_c01095{left:491.378667pt;}
.x68_c01095{left:492.720000pt;}
.x80_c01095{left:498.480000pt;}
.x37_c01095{left:500.022667pt;}
.x2d_c01095{left:502.256000pt;}
.x76_c01095{left:504.258347pt;}
.x9c_c01095{left:505.922667pt;}
.x6d_c01095{left:508.542667pt;}
.x81_c01095{left:515.040000pt;}
.xac_c01095{left:516.240000pt;}
.x5e_c01095{left:519.754667pt;}
.x56_c01095{left:524.026667pt;}
.x94_c01095{left:527.785333pt;}
.xd_c01095{left:531.980000pt;}
.x2e_c01095{left:533.900000pt;}
.xa2_c01095{left:535.356000pt;}
.x4e_c01095{left:542.702667pt;}
.x24_c01095{left:544.320000pt;}
.x65_c01095{left:547.979605pt;}
.x82_c01095{left:551.760000pt;}
.x57_c01095{left:554.054667pt;}
.xa3_c01095{left:555.057333pt;}
.x18_c01095{left:563.280000pt;}
.x2f_c01095{left:565.362667pt;}
.x7e_c01095{left:570.984283pt;}
.x77_c01095{left:574.102795pt;}
.x6e_c01095{left:575.781333pt;}
.x43_c01095{left:582.240000pt;}
.x19_c01095{left:588.240000pt;}
.x66_c01095{left:590.644160pt;}
.x6f_c01095{left:594.632000pt;}
.x38_c01095{left:600.284000pt;}
.x95_c01095{left:603.192000pt;}
.x83_c01095{left:610.560000pt;}
.x70_c01095{left:616.966667pt;}
.x78_c01095{left:621.145819pt;}
.x7f_c01095{left:622.107805pt;}
.x8a_c01095{left:623.280000pt;}
.x44_c01095{left:625.680000pt;}
.x96_c01095{left:627.482667pt;}
.x30_c01095{left:631.025333pt;}
.xad_c01095{left:635.280000pt;}
.x1a_c01095{left:636.240000pt;}
.x25_c01095{left:640.800000pt;}
.x31_c01095{left:647.200000pt;}
.x8b_c01095{left:648.240000pt;}
.x58_c01095{left:651.716000pt;}
.xa4_c01095{left:652.956000pt;}
.x67_c01095{left:656.482112pt;}
.x39_c01095{left:681.628000pt;}
.x8c_c01095{left:692.640000pt;}
.xae_c01095{left:702.480000pt;}
}





/* 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_c01096 {
    display:none;
  }
  .loading-indicator_c01096.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01096 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_c01096 { 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_c01096" -> "#page-container .classname_c01096")
 */
.pf_c01096 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01096 { /* 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_c01096.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01096 { /* 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_c01096 { /* 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_c01096 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01096 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01096 {overflow:visible;}
  }
}
.c_c01096 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01096 { /* 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_c01096:after { /* webkit #35443 */
  content: '';
}
.t_c01096:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01096 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 */
}
.__c01096 { /* 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_c01096 { /* info for Javascript */
  display:none;
}
.l_c01096 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01096 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01096 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01096: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_c01096 {
    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_c01096.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01096.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_c01096 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01096{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01096;src:url('chunks/assets/font_cfe63ee56e9e10a97d33a3db.woff2')format("woff");}.ff1_c01096{font-family:ff1_c01096;line-height:1.000000;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;}
.mf9_c01096{transform:matrix(0.010605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.010605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.010605,0.000000,0.000000,0.250000,0,0);}
.m128_c01096{transform:matrix(0.095460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.095460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.095460,0.000000,0.000000,0.250000,0,0);}
.m117_c01096{transform:matrix(0.099845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.099845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.099845,0.000000,0.000000,0.250000,0,0);}
.m12c_c01096{transform:matrix(0.113268,-0.001246,0.002750,0.249985,0,0);-ms-transform:matrix(0.113268,-0.001246,0.002750,0.249985,0,0);-webkit-transform:matrix(0.113268,-0.001246,0.002750,0.249985,0,0);}
.m80_c01096{transform:matrix(0.114482,-0.000801,0.001750,0.249994,0,0);-ms-transform:matrix(0.114482,-0.000801,0.001750,0.249994,0,0);-webkit-transform:matrix(0.114482,-0.000801,0.001750,0.249994,0,0);}
.md5_c01096{transform:matrix(0.162390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162390,0.000000,0.000000,0.250000,0,0);}
.mcc_c01096{transform:matrix(0.164360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164360,0.000000,0.000000,0.250000,0,0);}
.m115_c01096{transform:matrix(0.166885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166885,0.000000,0.000000,0.250000,0,0);}
.mc9_c01096{transform:matrix(0.166925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166925,0.000000,0.000000,0.250000,0,0);}
.md2_c01096{transform:matrix(0.169010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169010,0.000000,0.000000,0.250000,0,0);}
.m118_c01096{transform:matrix(0.170255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170255,0.000000,0.000000,0.250000,0,0);}
.m11a_c01096{transform:matrix(0.171130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171130,0.000000,0.000000,0.250000,0,0);}
.mcf_c01096{transform:matrix(0.171610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171610,0.000000,0.000000,0.250000,0,0);}
.m116_c01096{transform:matrix(0.172145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172145,0.000000,0.000000,0.250000,0,0);}
.m11b_c01096{transform:matrix(0.174205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174205,0.000000,0.000000,0.250000,0,0);}
.m114_c01096{transform:matrix(0.174740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174740,0.000000,0.000000,0.250000,0,0);}
.md3_c01096{transform:matrix(0.176100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176100,0.000000,0.000000,0.250000,0,0);}
.m11d_c01096{transform:matrix(0.177610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177610,0.000000,0.000000,0.250000,0,0);}
.mcb_c01096{transform:matrix(0.178195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178195,0.000000,0.000000,0.250000,0,0);}
.mca_c01096{transform:matrix(0.180480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180480,0.000000,0.000000,0.250000,0,0);}
.md7_c01096{transform:matrix(0.181455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181455,0.000000,0.000000,0.250000,0,0);}
.md6_c01096{transform:matrix(0.184905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184905,0.000000,0.000000,0.250000,0,0);}
.m11f_c01096{transform:matrix(0.187605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187605,0.000000,0.000000,0.250000,0,0);}
.m13e_c01096{transform:matrix(0.187860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187860,0.000000,0.000000,0.250000,0,0);}
.mdc_c01096{transform:matrix(0.188605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188605,0.000000,0.000000,0.250000,0,0);}
.mde_c01096{transform:matrix(0.190515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190515,0.000000,0.000000,0.250000,0,0);}
.m145_c01096{transform:matrix(0.192060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192060,0.000000,0.000000,0.250000,0,0);}
.m91_c01096{transform:matrix(0.193035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193035,0.000000,0.000000,0.250000,0,0);}
.md0_c01096{transform:matrix(0.193215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193215,0.000000,0.000000,0.250000,0,0);}
.md8_c01096{transform:matrix(0.193915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193915,0.000000,0.000000,0.250000,0,0);}
.m11e_c01096{transform:matrix(0.193960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193960,0.000000,0.000000,0.250000,0,0);}
.m144_c01096{transform:matrix(0.195460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195460,0.000000,0.000000,0.250000,0,0);}
.mdb_c01096{transform:matrix(0.196175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196175,0.000000,0.000000,0.250000,0,0);}
.m103_c01096{transform:matrix(0.197160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197160,0.000000,0.000000,0.250000,0,0);}
.md1_c01096{transform:matrix(0.198290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198290,0.000000,0.000000,0.250000,0,0);}
.m124_c01096{transform:matrix(0.200060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200060,0.000000,0.000000,0.250000,0,0);}
.m127_c01096{transform:matrix(0.200790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200790,0.000000,0.000000,0.250000,0,0);}
.m119_c01096{transform:matrix(0.201150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201150,0.000000,0.000000,0.250000,0,0);}
.m11c_c01096{transform:matrix(0.201260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201260,0.000000,0.000000,0.250000,0,0);}
.m35_c01096{transform:matrix(0.201595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201595,0.000000,0.000000,0.250000,0,0);}
.mce_c01096{transform:matrix(0.201995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201995,0.000000,0.000000,0.250000,0,0);}
.mcd_c01096{transform:matrix(0.202485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202485,0.000000,0.000000,0.250000,0,0);}
.m52_c01096{transform:matrix(0.202515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202515,0.000000,0.000000,0.250000,0,0);}
.me3_c01096{transform:matrix(0.203530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203530,0.000000,0.000000,0.250000,0,0);}
.m147_c01096{transform:matrix(0.203855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203855,0.000000,0.000000,0.250000,0,0);}
.m88_c01096{transform:matrix(0.205487,-0.001027,0.001250,0.249997,0,0);-ms-transform:matrix(0.205487,-0.001027,0.001250,0.249997,0,0);-webkit-transform:matrix(0.205487,-0.001027,0.001250,0.249997,0,0);}
.m78_c01096{transform:matrix(0.206890,-0.001448,0.001750,0.249994,0,0);-ms-transform:matrix(0.206890,-0.001448,0.001750,0.249994,0,0);-webkit-transform:matrix(0.206890,-0.001448,0.001750,0.249994,0,0);}
.m2c_c01096{transform:matrix(0.206895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206895,0.000000,0.000000,0.250000,0,0);}
.md4_c01096{transform:matrix(0.207370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207370,0.000000,0.000000,0.250000,0,0);}
.m10c_c01096{transform:matrix(0.207460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207460,0.000000,0.000000,0.250000,0,0);}
.m14a_c01096{transform:matrix(0.207715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207715,0.000000,0.000000,0.250000,0,0);}
.m125_c01096{transform:matrix(0.208115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208115,0.000000,0.000000,0.250000,0,0);}
.m126_c01096{transform:matrix(0.208185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208185,0.000000,0.000000,0.250000,0,0);}
.m6f_c01096{transform:matrix(0.208671,-0.001252,0.001500,0.249996,0,0);-ms-transform:matrix(0.208671,-0.001252,0.001500,0.249996,0,0);-webkit-transform:matrix(0.208671,-0.001252,0.001500,0.249996,0,0);}
.m149_c01096{transform:matrix(0.208720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208720,0.000000,0.000000,0.250000,0,0);}
.m104_c01096{transform:matrix(0.209300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209300,0.000000,0.000000,0.250000,0,0);}
.m5_c01096{transform:matrix(0.209630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209630,0.000000,0.000000,0.250000,0,0);}
.m86_c01096{transform:matrix(0.209707,-0.001049,0.001250,0.249997,0,0);-ms-transform:matrix(0.209707,-0.001049,0.001250,0.249997,0,0);-webkit-transform:matrix(0.209707,-0.001049,0.001250,0.249997,0,0);}
.m120_c01096{transform:matrix(0.210125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210125,0.000000,0.000000,0.250000,0,0);}
.m83_c01096{transform:matrix(0.210607,-0.001053,0.001250,0.249997,0,0);-ms-transform:matrix(0.210607,-0.001053,0.001250,0.249997,0,0);-webkit-transform:matrix(0.210607,-0.001053,0.001250,0.249997,0,0);}
.m8b_c01096{transform:matrix(0.210617,-0.001053,0.001250,0.249997,0,0);-ms-transform:matrix(0.210617,-0.001053,0.001250,0.249997,0,0);-webkit-transform:matrix(0.210617,-0.001053,0.001250,0.249997,0,0);}
.m13_c01096{transform:matrix(0.211870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211870,0.000000,0.000000,0.250000,0,0);}
.mab_c01096{transform:matrix(0.212130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212130,0.000000,0.000000,0.250000,0,0);}
.m3d_c01096{transform:matrix(0.212200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212200,0.000000,0.000000,0.250000,0,0);}
.m1a_c01096{transform:matrix(0.212570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212570,0.000000,0.000000,0.250000,0,0);}
.m146_c01096{transform:matrix(0.212920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212920,0.000000,0.000000,0.250000,0,0);}
.ma5_c01096{transform:matrix(0.212940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212940,0.000000,0.000000,0.250000,0,0);}
.m3b_c01096{transform:matrix(0.213030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213030,0.000000,0.000000,0.250000,0,0);}
.mdd_c01096{transform:matrix(0.213055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213055,0.000000,0.000000,0.250000,0,0);}
.mf2_c01096{transform:matrix(0.213135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213135,0.000000,0.000000,0.250000,0,0);}
.m93_c01096{transform:matrix(0.213720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213720,0.000000,0.000000,0.250000,0,0);}
.m72_c01096{transform:matrix(0.213801,-0.001283,0.001500,0.249996,0,0);-ms-transform:matrix(0.213801,-0.001283,0.001500,0.249996,0,0);-webkit-transform:matrix(0.213801,-0.001283,0.001500,0.249996,0,0);}
.m109_c01096{transform:matrix(0.213805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213805,0.000000,0.000000,0.250000,0,0);}
.me_c01096{transform:matrix(0.215645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215645,0.000000,0.000000,0.250000,0,0);}
.m10e_c01096{transform:matrix(0.215705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215705,0.000000,0.000000,0.250000,0,0);}
.m9c_c01096{transform:matrix(0.216300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216300,0.000000,0.000000,0.250000,0,0);}
.mb0_c01096{transform:matrix(0.216520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216520,0.000000,0.000000,0.250000,0,0);}
.ma4_c01096{transform:matrix(0.216995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216995,0.000000,0.000000,0.250000,0,0);}
.m137_c01096{transform:matrix(0.217082,-0.002388,0.002750,0.249985,0,0);-ms-transform:matrix(0.217082,-0.002388,0.002750,0.249985,0,0);-webkit-transform:matrix(0.217082,-0.002388,0.002750,0.249985,0,0);}
.md9_c01096{transform:matrix(0.217145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217145,0.000000,0.000000,0.250000,0,0);}
.mda_c01096{transform:matrix(0.217195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217195,0.000000,0.000000,0.250000,0,0);}
.m70_c01096{transform:matrix(0.217701,-0.001306,0.001500,0.249996,0,0);-ms-transform:matrix(0.217701,-0.001306,0.001500,0.249996,0,0);-webkit-transform:matrix(0.217701,-0.001306,0.001500,0.249996,0,0);}
.m15_c01096{transform:matrix(0.217945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217945,0.000000,0.000000,0.250000,0,0);}
.m8e_c01096{transform:matrix(0.218255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218255,0.000000,0.000000,0.250000,0,0);}
.m82_c01096{transform:matrix(0.218437,-0.001092,0.001250,0.249997,0,0);-ms-transform:matrix(0.218437,-0.001092,0.001250,0.249997,0,0);-webkit-transform:matrix(0.218437,-0.001092,0.001250,0.249997,0,0);}
.m6b_c01096{transform:matrix(0.219886,-0.001319,0.001500,0.249996,0,0);-ms-transform:matrix(0.219886,-0.001319,0.001500,0.249996,0,0);-webkit-transform:matrix(0.219886,-0.001319,0.001500,0.249996,0,0);}
.m18_c01096{transform:matrix(0.220190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220190,0.000000,0.000000,0.250000,0,0);}
.m84_c01096{transform:matrix(0.220437,-0.001102,0.001250,0.249997,0,0);-ms-transform:matrix(0.220437,-0.001102,0.001250,0.249997,0,0);-webkit-transform:matrix(0.220437,-0.001102,0.001250,0.249997,0,0);}
.m17_c01096{transform:matrix(0.220890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220890,0.000000,0.000000,0.250000,0,0);}
.mee_c01096{transform:matrix(0.220900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220900,0.000000,0.000000,0.250000,0,0);}
.mef_c01096{transform:matrix(0.221635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221635,0.000000,0.000000,0.250000,0,0);}
.ma3_c01096{transform:matrix(0.221680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221680,0.000000,0.000000,0.250000,0,0);}
.mae_c01096{transform:matrix(0.221880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221880,0.000000,0.000000,0.250000,0,0);}
.m12_c01096{transform:matrix(0.221995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221995,0.000000,0.000000,0.250000,0,0);}
.m5b_c01096{transform:matrix(0.222610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222610,0.000000,0.000000,0.250000,0,0);}
.m148_c01096{transform:matrix(0.222990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222990,0.000000,0.000000,0.250000,0,0);}
.meb_c01096{transform:matrix(0.223380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223380,0.000000,0.000000,0.250000,0,0);}
.m10_c01096{transform:matrix(0.223540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223540,0.000000,0.000000,0.250000,0,0);}
.m12f_c01096{transform:matrix(0.223956,-0.002464,0.002750,0.249985,0,0);-ms-transform:matrix(0.223956,-0.002464,0.002750,0.249985,0,0);-webkit-transform:matrix(0.223956,-0.002464,0.002750,0.249985,0,0);}
.m2e_c01096{transform:matrix(0.223970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223970,0.000000,0.000000,0.250000,0,0);}
.m8f_c01096{transform:matrix(0.224080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224080,0.000000,0.000000,0.250000,0,0);}
.m1f_c01096{transform:matrix(0.226065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226065,0.000000,0.000000,0.250000,0,0);}
.m19_c01096{transform:matrix(0.226685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226685,0.000000,0.000000,0.250000,0,0);}
.ma7_c01096{transform:matrix(0.226840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226840,0.000000,0.000000,0.250000,0,0);}
.m4c_c01096{transform:matrix(0.227005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227005,0.000000,0.000000,0.250000,0,0);}
.m8d_c01096{transform:matrix(0.227280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227280,0.000000,0.000000,0.250000,0,0);}
.m76_c01096{transform:matrix(0.227424,-0.001592,0.001750,0.249994,0,0);-ms-transform:matrix(0.227424,-0.001592,0.001750,0.249994,0,0);-webkit-transform:matrix(0.227424,-0.001592,0.001750,0.249994,0,0);}
.m62_c01096{transform:matrix(0.227430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227430,0.000000,0.000000,0.250000,0,0);}
.m89_c01096{transform:matrix(0.227682,-0.001138,0.001250,0.249997,0,0);-ms-transform:matrix(0.227682,-0.001138,0.001250,0.249997,0,0);-webkit-transform:matrix(0.227682,-0.001138,0.001250,0.249997,0,0);}
.m121_c01096{transform:matrix(0.228080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228080,0.000000,0.000000,0.250000,0,0);}
.m7f_c01096{transform:matrix(0.228164,-0.001597,0.001750,0.249994,0,0);-ms-transform:matrix(0.228164,-0.001597,0.001750,0.249994,0,0);-webkit-transform:matrix(0.228164,-0.001597,0.001750,0.249994,0,0);}
.m42_c01096{transform:matrix(0.228170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228170,0.000000,0.000000,0.250000,0,0);}
.m99_c01096{transform:matrix(0.228235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228235,0.000000,0.000000,0.250000,0,0);}
.m94_c01096{transform:matrix(0.228630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228630,0.000000,0.000000,0.250000,0,0);}
.ma2_c01096{transform:matrix(0.228695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228695,0.000000,0.000000,0.250000,0,0);}
.m122_c01096{transform:matrix(0.229030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229030,0.000000,0.000000,0.250000,0,0);}
.m7d_c01096{transform:matrix(0.229519,-0.001607,0.001750,0.249994,0,0);-ms-transform:matrix(0.229519,-0.001607,0.001750,0.249994,0,0);-webkit-transform:matrix(0.229519,-0.001607,0.001750,0.249994,0,0);}
.m28_c01096{transform:matrix(0.229525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229525,0.000000,0.000000,0.250000,0,0);}
.m63_c01096{transform:matrix(0.229590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229590,0.000000,0.000000,0.250000,0,0);}
.m11_c01096{transform:matrix(0.230045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230045,0.000000,0.000000,0.250000,0,0);}
.m98_c01096{transform:matrix(0.230220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230220,0.000000,0.000000,0.250000,0,0);}
.m67_c01096{transform:matrix(0.230285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230285,0.000000,0.000000,0.250000,0,0);}
.m26_c01096{transform:matrix(0.230895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230895,0.000000,0.000000,0.250000,0,0);}
.m16_c01096{transform:matrix(0.231125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231125,0.000000,0.000000,0.250000,0,0);}
.ma_c01096{transform:matrix(0.231530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231530,0.000000,0.000000,0.250000,0,0);}
.m9f_c01096{transform:matrix(0.231565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231565,0.000000,0.000000,0.250000,0,0);}
.m7a_c01096{transform:matrix(0.231619,-0.001621,0.001750,0.249994,0,0);-ms-transform:matrix(0.231619,-0.001621,0.001750,0.249994,0,0);-webkit-transform:matrix(0.231619,-0.001621,0.001750,0.249994,0,0);}
.mb5_c01096{transform:matrix(0.231625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231625,0.000000,0.000000,0.250000,0,0);}
.m143_c01096{transform:matrix(0.231700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231700,0.000000,0.000000,0.250000,0,0);}
.mc1_c01096{transform:matrix(0.231705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231705,0.000000,0.000000,0.250000,0,0);}
.me0_c01096{transform:matrix(0.232595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232595,0.000000,0.000000,0.250000,0,0);}
.m37_c01096{transform:matrix(0.232985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232985,0.000000,0.000000,0.250000,0,0);}
.m47_c01096{transform:matrix(0.233230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233230,0.000000,0.000000,0.250000,0,0);}
.m8c_c01096{transform:matrix(0.233237,-0.001166,0.001250,0.249997,0,0);-ms-transform:matrix(0.233237,-0.001166,0.001250,0.249997,0,0);-webkit-transform:matrix(0.233237,-0.001166,0.001250,0.249997,0,0);}
.mf0_c01096{transform:matrix(0.233375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233375,0.000000,0.000000,0.250000,0,0);}
.m139_c01096{transform:matrix(0.233721,-0.002571,0.002750,0.249985,0,0);-ms-transform:matrix(0.233721,-0.002571,0.002750,0.249985,0,0);-webkit-transform:matrix(0.233721,-0.002571,0.002750,0.249985,0,0);}
.me7_c01096{transform:matrix(0.233735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233735,0.000000,0.000000,0.250000,0,0);}
.m133_c01096{transform:matrix(0.234541,-0.002580,0.002750,0.249985,0,0);-ms-transform:matrix(0.234541,-0.002580,0.002750,0.249985,0,0);-webkit-transform:matrix(0.234541,-0.002580,0.002750,0.249985,0,0);}
.m138_c01096{transform:matrix(0.235041,-0.002585,0.002750,0.249985,0,0);-ms-transform:matrix(0.235041,-0.002585,0.002750,0.249985,0,0);-webkit-transform:matrix(0.235041,-0.002585,0.002750,0.249985,0,0);}
.m51_c01096{transform:matrix(0.235125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235125,0.000000,0.000000,0.250000,0,0);}
.m14_c01096{transform:matrix(0.235160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235160,0.000000,0.000000,0.250000,0,0);}
.maa_c01096{transform:matrix(0.235180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235180,0.000000,0.000000,0.250000,0,0);}
.m12d_c01096{transform:matrix(0.235706,-0.002593,0.002750,0.249985,0,0);-ms-transform:matrix(0.235706,-0.002593,0.002750,0.249985,0,0);-webkit-transform:matrix(0.235706,-0.002593,0.002750,0.249985,0,0);}
.m34_c01096{transform:matrix(0.235720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235720,0.000000,0.000000,0.250000,0,0);}
.m7_c01096{transform:matrix(0.235850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235850,0.000000,0.000000,0.250000,0,0);}
.mba_c01096{transform:matrix(0.235880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235880,0.000000,0.000000,0.250000,0,0);}
.me5_c01096{transform:matrix(0.236585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236585,0.000000,0.000000,0.250000,0,0);}
.m6c_c01096{transform:matrix(0.236851,-0.001421,0.001500,0.249996,0,0);-ms-transform:matrix(0.236851,-0.001421,0.001500,0.249996,0,0);-webkit-transform:matrix(0.236851,-0.001421,0.001500,0.249996,0,0);}
.m123_c01096{transform:matrix(0.236970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236970,0.000000,0.000000,0.250000,0,0);}
.m25_c01096{transform:matrix(0.237245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237245,0.000000,0.000000,0.250000,0,0);}
.m13f_c01096{transform:matrix(0.237320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237320,0.000000,0.000000,0.250000,0,0);}
.md_c01096{transform:matrix(0.237920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237920,0.000000,0.000000,0.250000,0,0);}
.m5f_c01096{transform:matrix(0.238140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238140,0.000000,0.000000,0.250000,0,0);}
.m9a_c01096{transform:matrix(0.239540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239540,0.000000,0.000000,0.250000,0,0);}
.m2d_c01096{transform:matrix(0.239545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239545,0.000000,0.000000,0.250000,0,0);}
.m1b_c01096{transform:matrix(0.239560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239560,0.000000,0.000000,0.250000,0,0);}
.ma9_c01096{transform:matrix(0.239590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239590,0.000000,0.000000,0.250000,0,0);}
.me1_c01096{transform:matrix(0.240155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240155,0.000000,0.000000,0.250000,0,0);}
.mbc_c01096{transform:matrix(0.240280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240280,0.000000,0.000000,0.250000,0,0);}
.m39_c01096{transform:matrix(0.240635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240635,0.000000,0.000000,0.250000,0,0);}
.mf_c01096{transform:matrix(0.240860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240860,0.000000,0.000000,0.250000,0,0);}
.m6e_c01096{transform:matrix(0.240931,-0.001446,0.001500,0.249996,0,0);-ms-transform:matrix(0.240931,-0.001446,0.001500,0.249996,0,0);-webkit-transform:matrix(0.240931,-0.001446,0.001500,0.249996,0,0);}
.m131_c01096{transform:matrix(0.240960,-0.002651,0.002750,0.249985,0,0);-ms-transform:matrix(0.240960,-0.002651,0.002750,0.249985,0,0);-webkit-transform:matrix(0.240960,-0.002651,0.002750,0.249985,0,0);}
.m110_c01096{transform:matrix(0.241510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241510,0.000000,0.000000,0.250000,0,0);}
.mea_c01096{transform:matrix(0.241690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241690,0.000000,0.000000,0.250000,0,0);}
.m136_c01096{transform:matrix(0.242070,-0.002663,0.002750,0.249985,0,0);-ms-transform:matrix(0.242070,-0.002663,0.002750,0.249985,0,0);-webkit-transform:matrix(0.242070,-0.002663,0.002750,0.249985,0,0);}
.med_c01096{transform:matrix(0.242180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242180,0.000000,0.000000,0.250000,0,0);}
.m43_c01096{transform:matrix(0.242515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242515,0.000000,0.000000,0.250000,0,0);}
.m140_c01096{transform:matrix(0.242980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242980,0.000000,0.000000,0.250000,0,0);}
.m60_c01096{transform:matrix(0.243055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243055,0.000000,0.000000,0.250000,0,0);}
.m57_c01096{transform:matrix(0.243540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243540,0.000000,0.000000,0.250000,0,0);}
.m9d_c01096{transform:matrix(0.243725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243725,0.000000,0.000000,0.250000,0,0);}
.mf1_c01096{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m73_c01096{transform:matrix(0.244026,-0.001464,0.001500,0.249996,0,0);-ms-transform:matrix(0.244026,-0.001464,0.001500,0.249996,0,0);-webkit-transform:matrix(0.244026,-0.001464,0.001500,0.249996,0,0);}
.mfe_c01096{transform:matrix(0.244095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244095,0.000000,0.000000,0.250000,0,0);}
.m108_c01096{transform:matrix(0.244260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244260,0.000000,0.000000,0.250000,0,0);}
.m87_c01096{transform:matrix(0.244802,-0.001224,0.001250,0.249997,0,0);-ms-transform:matrix(0.244802,-0.001224,0.001250,0.249997,0,0);-webkit-transform:matrix(0.244802,-0.001224,0.001250,0.249997,0,0);}
.m8a_c01096{transform:matrix(0.244867,-0.001224,0.001250,0.249997,0,0);-ms-transform:matrix(0.244867,-0.001224,0.001250,0.249997,0,0);-webkit-transform:matrix(0.244867,-0.001224,0.001250,0.249997,0,0);}
.m49_c01096{transform:matrix(0.245390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245390,0.000000,0.000000,0.250000,0,0);}
.mb2_c01096{transform:matrix(0.245930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245930,0.000000,0.000000,0.250000,0,0);}
.m1d_c01096{transform:matrix(0.246185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246185,0.000000,0.000000,0.250000,0,0);}
.m23_c01096{transform:matrix(0.246205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246205,0.000000,0.000000,0.250000,0,0);}
.m40_c01096{transform:matrix(0.246980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246980,0.000000,0.000000,0.250000,0,0);}
.m65_c01096{transform:matrix(0.247155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247155,0.000000,0.000000,0.250000,0,0);}
.m10d_c01096{transform:matrix(0.247415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247415,0.000000,0.000000,0.250000,0,0);}
.m10b_c01096{transform:matrix(0.247460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247460,0.000000,0.000000,0.250000,0,0);}
.m12b_c01096{transform:matrix(0.247600,-0.002724,0.002750,0.249985,0,0);-ms-transform:matrix(0.247600,-0.002724,0.002750,0.249985,0,0);-webkit-transform:matrix(0.247600,-0.002724,0.002750,0.249985,0,0);}
.m95_c01096{transform:matrix(0.247915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247915,0.000000,0.000000,0.250000,0,0);}
.m59_c01096{transform:matrix(0.247935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247935,0.000000,0.000000,0.250000,0,0);}
.m132_c01096{transform:matrix(0.248200,-0.002730,0.002750,0.249985,0,0);-ms-transform:matrix(0.248200,-0.002730,0.002750,0.249985,0,0);-webkit-transform:matrix(0.248200,-0.002730,0.002750,0.249985,0,0);}
.m107_c01096{transform:matrix(0.248320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248320,0.000000,0.000000,0.250000,0,0);}
.m111_c01096{transform:matrix(0.248615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248615,0.000000,0.000000,0.250000,0,0);}
.m85_c01096{transform:matrix(0.248742,-0.001244,0.001250,0.249997,0,0);-ms-transform:matrix(0.248742,-0.001244,0.001250,0.249997,0,0);-webkit-transform:matrix(0.248742,-0.001244,0.001250,0.249997,0,0);}
.m9b_c01096{transform:matrix(0.248765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248765,0.000000,0.000000,0.250000,0,0);}
.mf7_c01096{transform:matrix(0.248950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248950,0.000000,0.000000,0.250000,0,0);}
.mf3_c01096{transform:matrix(0.249020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249020,0.000000,0.000000,0.250000,0,0);}
.m77_c01096{transform:matrix(0.249034,-0.001743,0.001750,0.249994,0,0);-ms-transform:matrix(0.249034,-0.001743,0.001750,0.249994,0,0);-webkit-transform:matrix(0.249034,-0.001743,0.001750,0.249994,0,0);}
.m10f_c01096{transform:matrix(0.249160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249160,0.000000,0.000000,0.250000,0,0);}
.m53_c01096{transform:matrix(0.249215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249215,0.000000,0.000000,0.250000,0,0);}
.mac_c01096{transform:matrix(0.249310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249310,0.000000,0.000000,0.250000,0,0);}
.m142_c01096{transform:matrix(0.249430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249430,0.000000,0.000000,0.250000,0,0);}
.me4_c01096{transform:matrix(0.249505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249505,0.000000,0.000000,0.250000,0,0);}
.m6a_c01096{transform:matrix(0.249650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249650,0.000000,0.000000,0.250000,0,0);}
.m134_c01096{transform:matrix(0.249840,-0.002748,0.002750,0.249985,0,0);-ms-transform:matrix(0.249840,-0.002748,0.002750,0.249985,0,0);-webkit-transform:matrix(0.249840,-0.002748,0.002750,0.249985,0,0);}
.me8_c01096{transform:matrix(0.250390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250390,0.000000,0.000000,0.250000,0,0);}
.m4a_c01096{transform:matrix(0.250470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250470,0.000000,0.000000,0.250000,0,0);}
.m97_c01096{transform:matrix(0.250635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250635,0.000000,0.000000,0.250000,0,0);}
.m69_c01096{transform:matrix(0.250690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250690,0.000000,0.000000,0.250000,0,0);}
.m9e_c01096{transform:matrix(0.250900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250900,0.000000,0.000000,0.250000,0,0);}
.m96_c01096{transform:matrix(0.250985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250985,0.000000,0.000000,0.250000,0,0);}
.ma1_c01096{transform:matrix(0.251025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251025,0.000000,0.000000,0.250000,0,0);}
.m113_c01096{transform:matrix(0.251180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251180,0.000000,0.000000,0.250000,0,0);}
.m44_c01096{transform:matrix(0.251740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251740,0.000000,0.000000,0.250000,0,0);}
.mf4_c01096{transform:matrix(0.252035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252035,0.000000,0.000000,0.250000,0,0);}
.m12e_c01096{transform:matrix(0.252100,-0.002773,0.002750,0.249985,0,0);-ms-transform:matrix(0.252100,-0.002773,0.002750,0.249985,0,0);-webkit-transform:matrix(0.252100,-0.002773,0.002750,0.249985,0,0);}
.mfc_c01096{transform:matrix(0.252115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252115,0.000000,0.000000,0.250000,0,0);}
.m90_c01096{transform:matrix(0.252220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252220,0.000000,0.000000,0.250000,0,0);}
.m105_c01096{transform:matrix(0.252410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252410,0.000000,0.000000,0.250000,0,0);}
.m102_c01096{transform:matrix(0.252485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252485,0.000000,0.000000,0.250000,0,0);}
.mbd_c01096{transform:matrix(0.252680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252680,0.000000,0.000000,0.250000,0,0);}
.ma6_c01096{transform:matrix(0.252845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252845,0.000000,0.000000,0.250000,0,0);}
.m4d_c01096{transform:matrix(0.252880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252880,0.000000,0.000000,0.250000,0,0);}
.m5d_c01096{transform:matrix(0.253325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253325,0.000000,0.000000,0.250000,0,0);}
.m31_c01096{transform:matrix(0.253475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253475,0.000000,0.000000,0.250000,0,0);}
.mb4_c01096{transform:matrix(0.253640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253640,0.000000,0.000000,0.250000,0,0);}
.mc5_c01096{transform:matrix(0.254165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254165,0.000000,0.000000,0.250000,0,0);}
.m106_c01096{transform:matrix(0.254225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254225,0.000000,0.000000,0.250000,0,0);}
.mad_c01096{transform:matrix(0.254310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254310,0.000000,0.000000,0.250000,0,0);}
.m112_c01096{transform:matrix(0.254700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254700,0.000000,0.000000,0.250000,0,0);}
.maf_c01096{transform:matrix(0.254720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254720,0.000000,0.000000,0.250000,0,0);}
.mfa_c01096{transform:matrix(0.254755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254755,0.000000,0.000000,0.250000,0,0);}
.ma0_c01096{transform:matrix(0.254760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254760,0.000000,0.000000,0.250000,0,0);}
.mb6_c01096{transform:matrix(0.254880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254880,0.000000,0.000000,0.250000,0,0);}
.mc7_c01096{transform:matrix(0.254980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254980,0.000000,0.000000,0.250000,0,0);}
.m61_c01096{transform:matrix(0.255210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255210,0.000000,0.000000,0.250000,0,0);}
.m38_c01096{transform:matrix(0.255270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255270,0.000000,0.000000,0.250000,0,0);}
.mec_c01096{transform:matrix(0.255340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255340,0.000000,0.000000,0.250000,0,0);}
.m71_c01096{transform:matrix(0.255750,-0.001535,0.001500,0.249996,0,0);-ms-transform:matrix(0.255750,-0.001535,0.001500,0.249996,0,0);-webkit-transform:matrix(0.255750,-0.001535,0.001500,0.249996,0,0);}
.m81_c01096{transform:matrix(0.256332,-0.001282,0.001250,0.249997,0,0);-ms-transform:matrix(0.256332,-0.001282,0.001250,0.249997,0,0);-webkit-transform:matrix(0.256332,-0.001282,0.001250,0.249997,0,0);}
.m6d_c01096{transform:matrix(0.256440,-0.001539,0.001500,0.249996,0,0);-ms-transform:matrix(0.256440,-0.001539,0.001500,0.249996,0,0);-webkit-transform:matrix(0.256440,-0.001539,0.001500,0.249996,0,0);}
.m3_c01096{transform:matrix(0.256600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256600,0.000000,0.000000,0.250000,0,0);}
.m56_c01096{transform:matrix(0.256745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256745,0.000000,0.000000,0.250000,0,0);}
.m130_c01096{transform:matrix(0.256949,-0.002826,0.002750,0.249985,0,0);-ms-transform:matrix(0.256949,-0.002826,0.002750,0.249985,0,0);-webkit-transform:matrix(0.256949,-0.002826,0.002750,0.249985,0,0);}
.m100_c01096{transform:matrix(0.257180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257180,0.000000,0.000000,0.250000,0,0);}
.mbf_c01096{transform:matrix(0.257290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257290,0.000000,0.000000,0.250000,0,0);}
.m92_c01096{transform:matrix(0.257300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257300,0.000000,0.000000,0.250000,0,0);}
.m13a_c01096{transform:matrix(0.257589,-0.002833,0.002750,0.249985,0,0);-ms-transform:matrix(0.257589,-0.002833,0.002750,0.249985,0,0);-webkit-transform:matrix(0.257589,-0.002833,0.002750,0.249985,0,0);}
.m55_c01096{transform:matrix(0.257650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257650,0.000000,0.000000,0.250000,0,0);}
.m9_c01096{transform:matrix(0.258310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258310,0.000000,0.000000,0.250000,0,0);}
.m58_c01096{transform:matrix(0.258615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258615,0.000000,0.000000,0.250000,0,0);}
.m33_c01096{transform:matrix(0.258990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258990,0.000000,0.000000,0.250000,0,0);}
.m5c_c01096{transform:matrix(0.259335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259335,0.000000,0.000000,0.250000,0,0);}
.ma8_c01096{transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);}
.mfb_c01096{transform:matrix(0.259520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259520,0.000000,0.000000,0.250000,0,0);}
.m10a_c01096{transform:matrix(0.259650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259650,0.000000,0.000000,0.250000,0,0);}
.m75_c01096{transform:matrix(0.259834,-0.001819,0.001750,0.249994,0,0);-ms-transform:matrix(0.259834,-0.001819,0.001750,0.249994,0,0);-webkit-transform:matrix(0.259834,-0.001819,0.001750,0.249994,0,0);}
.m2f_c01096{transform:matrix(0.261435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261435,0.000000,0.000000,0.250000,0,0);}
.m79_c01096{transform:matrix(0.262359,-0.001837,0.001750,0.249994,0,0);-ms-transform:matrix(0.262359,-0.001837,0.001750,0.249994,0,0);-webkit-transform:matrix(0.262359,-0.001837,0.001750,0.249994,0,0);}
.m2_c01096{transform:matrix(0.262730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262730,0.000000,0.000000,0.250000,0,0);}
.m8_c01096{transform:matrix(0.263180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263180,0.000000,0.000000,0.250000,0,0);}
.me9_c01096{transform:matrix(0.263230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263230,0.000000,0.000000,0.250000,0,0);}
.m36_c01096{transform:matrix(0.263495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263495,0.000000,0.000000,0.250000,0,0);}
.m7c_c01096{transform:matrix(0.263754,-0.001846,0.001750,0.249994,0,0);-ms-transform:matrix(0.263754,-0.001846,0.001750,0.249994,0,0);-webkit-transform:matrix(0.263754,-0.001846,0.001750,0.249994,0,0);}
.m3f_c01096{transform:matrix(0.263935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263935,0.000000,0.000000,0.250000,0,0);}
.m74_c01096{transform:matrix(0.264300,-0.001586,0.001500,0.249996,0,0);-ms-transform:matrix(0.264300,-0.001586,0.001500,0.249996,0,0);-webkit-transform:matrix(0.264300,-0.001586,0.001500,0.249996,0,0);}
.m6_c01096{transform:matrix(0.264495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264495,0.000000,0.000000,0.250000,0,0);}
.m7b_c01096{transform:matrix(0.264989,-0.001855,0.001750,0.249994,0,0);-ms-transform:matrix(0.264989,-0.001855,0.001750,0.249994,0,0);-webkit-transform:matrix(0.264989,-0.001855,0.001750,0.249994,0,0);}
.mdf_c01096{transform:matrix(0.265095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265095,0.000000,0.000000,0.250000,0,0);}
.mf6_c01096{transform:matrix(0.265530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265530,0.000000,0.000000,0.250000,0,0);}
.mf5_c01096{transform:matrix(0.265575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265575,0.000000,0.000000,0.250000,0,0);}
.m4e_c01096{transform:matrix(0.265600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265600,0.000000,0.000000,0.250000,0,0);}
.m13b_c01096{transform:matrix(0.266095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266095,0.000000,0.000000,0.250000,0,0);}
.m48_c01096{transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);}
.m27_c01096{transform:matrix(0.266710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266710,0.000000,0.000000,0.250000,0,0);}
.mfd_c01096{transform:matrix(0.266990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266990,0.000000,0.000000,0.250000,0,0);}
.m4_c01096{transform:matrix(0.267160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267160,0.000000,0.000000,0.250000,0,0);}
.m1e_c01096{transform:matrix(0.267300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267300,0.000000,0.000000,0.250000,0,0);}
.mb1_c01096{transform:matrix(0.267425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267425,0.000000,0.000000,0.250000,0,0);}
.m2b_c01096{transform:matrix(0.267715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267715,0.000000,0.000000,0.250000,0,0);}
.m4b_c01096{transform:matrix(0.267755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267755,0.000000,0.000000,0.250000,0,0);}
.m135_c01096{transform:matrix(0.267974,-0.002948,0.002750,0.249985,0,0);-ms-transform:matrix(0.267974,-0.002948,0.002750,0.249985,0,0);-webkit-transform:matrix(0.267974,-0.002948,0.002750,0.249985,0,0);}
.m64_c01096{transform:matrix(0.268195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268195,0.000000,0.000000,0.250000,0,0);}
.me6_c01096{transform:matrix(0.268345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268345,0.000000,0.000000,0.250000,0,0);}
.mf8_c01096{transform:matrix(0.268600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268600,0.000000,0.000000,0.250000,0,0);}
.m32_c01096{transform:matrix(0.268960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268960,0.000000,0.000000,0.250000,0,0);}
.m54_c01096{transform:matrix(0.269005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269005,0.000000,0.000000,0.250000,0,0);}
.mc8_c01096{transform:matrix(0.269060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269060,0.000000,0.000000,0.250000,0,0);}
.m22_c01096{transform:matrix(0.269335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269335,0.000000,0.000000,0.250000,0,0);}
.m4f_c01096{transform:matrix(0.269640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269640,0.000000,0.000000,0.250000,0,0);}
.m29_c01096{transform:matrix(0.269925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269925,0.000000,0.000000,0.250000,0,0);}
.mb_c01096{transform:matrix(0.270055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270055,0.000000,0.000000,0.250000,0,0);}
.m12a_c01096{transform:matrix(0.270064,-0.002971,0.002750,0.249985,0,0);-ms-transform:matrix(0.270064,-0.002971,0.002750,0.249985,0,0);-webkit-transform:matrix(0.270064,-0.002971,0.002750,0.249985,0,0);}
.m50_c01096{transform:matrix(0.270690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270690,0.000000,0.000000,0.250000,0,0);}
.mc3_c01096{transform:matrix(0.271465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271465,0.000000,0.000000,0.250000,0,0);}
.m13c_c01096{transform:matrix(0.271685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271685,0.000000,0.000000,0.250000,0,0);}
.m30_c01096{transform:matrix(0.271945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271945,0.000000,0.000000,0.250000,0,0);}
.mbe_c01096{transform:matrix(0.272190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272190,0.000000,0.000000,0.250000,0,0);}
.m7e_c01096{transform:matrix(0.272683,-0.001909,0.001750,0.249994,0,0);-ms-transform:matrix(0.272683,-0.001909,0.001750,0.249994,0,0);-webkit-transform:matrix(0.272683,-0.001909,0.001750,0.249994,0,0);}
.m3a_c01096{transform:matrix(0.273240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273240,0.000000,0.000000,0.250000,0,0);}
.mb8_c01096{transform:matrix(0.274050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274050,0.000000,0.000000,0.250000,0,0);}
.m101_c01096{transform:matrix(0.275290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275290,0.000000,0.000000,0.250000,0,0);}
.m41_c01096{transform:matrix(0.275420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275420,0.000000,0.000000,0.250000,0,0);}
.me2_c01096{transform:matrix(0.275470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275470,0.000000,0.000000,0.250000,0,0);}
.m1c_c01096{transform:matrix(0.276100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276100,0.000000,0.000000,0.250000,0,0);}
.m3c_c01096{transform:matrix(0.276330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276330,0.000000,0.000000,0.250000,0,0);}
.m21_c01096{transform:matrix(0.276515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276515,0.000000,0.000000,0.250000,0,0);}
.m20_c01096{transform:matrix(0.276550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276550,0.000000,0.000000,0.250000,0,0);}
.mff_c01096{transform:matrix(0.276620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276620,0.000000,0.000000,0.250000,0,0);}
.m3e_c01096{transform:matrix(0.277700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277700,0.000000,0.000000,0.250000,0,0);}
.m68_c01096{transform:matrix(0.278055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278055,0.000000,0.000000,0.250000,0,0);}
.m66_c01096{transform:matrix(0.278215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278215,0.000000,0.000000,0.250000,0,0);}
.mb3_c01096{transform:matrix(0.279275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279275,0.000000,0.000000,0.250000,0,0);}
.m5e_c01096{transform:matrix(0.279345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279345,0.000000,0.000000,0.250000,0,0);}
.mb9_c01096{transform:matrix(0.279660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279660,0.000000,0.000000,0.250000,0,0);}
.mc_c01096{transform:matrix(0.279950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279950,0.000000,0.000000,0.250000,0,0);}
.m24_c01096{transform:matrix(0.280610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280610,0.000000,0.000000,0.250000,0,0);}
.m129_c01096{transform:matrix(0.281248,-0.003094,0.002750,0.249985,0,0);-ms-transform:matrix(0.281248,-0.003094,0.002750,0.249985,0,0);-webkit-transform:matrix(0.281248,-0.003094,0.002750,0.249985,0,0);}
.m13d_c01096{transform:matrix(0.281400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281400,0.000000,0.000000,0.250000,0,0);}
.m2a_c01096{transform:matrix(0.282215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282215,0.000000,0.000000,0.250000,0,0);}
.m46_c01096{transform:matrix(0.282845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282845,0.000000,0.000000,0.250000,0,0);}
.m5a_c01096{transform:matrix(0.284185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284185,0.000000,0.000000,0.250000,0,0);}
.mc2_c01096{transform:matrix(0.287240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287240,0.000000,0.000000,0.250000,0,0);}
.mc0_c01096{transform:matrix(0.288055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288055,0.000000,0.000000,0.250000,0,0);}
.mc4_c01096{transform:matrix(0.294275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294275,0.000000,0.000000,0.250000,0,0);}
.mc6_c01096{transform:matrix(0.295415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295415,0.000000,0.000000,0.250000,0,0);}
.mbb_c01096{transform:matrix(0.309480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309480,0.000000,0.000000,0.250000,0,0);}
.mb7_c01096{transform:matrix(0.355010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355010,0.000000,0.000000,0.250000,0,0);}
.m45_c01096{transform:matrix(0.392940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392940,0.000000,0.000000,0.250000,0,0);}
.m0_c01096{transform:matrix(0.418715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418715,0.000000,0.000000,0.250000,0,0);}
.m1_c01096{transform:matrix(0.419670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419670,0.000000,0.000000,0.250000,0,0);}
.m141_c01096{transform:matrix(0.433070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433070,0.000000,0.000000,0.250000,0,0);}
.v0_c01096{vertical-align:0.000000px;}
.ls0_c01096{letter-spacing:0.000000px;}
.sc__c01096{text-shadow:none;}
.sc0_c01096{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__c01096{-webkit-text-stroke:0px transparent;}
.sc0_c01096{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01096{word-spacing:0.000000px;}
._0_c01096{width:38.729102px;}
.fc0_c01096{color:transparent;}
.fs6_c01096{font-size:66.000000px;}
.fs1_c01096{font-size:72.000000px;}
.fs4_c01096{font-size:72.001764px;}
.fsa_c01096{font-size:72.004356px;}
.fs2_c01096{font-size:78.000000px;}
.fs5_c01096{font-size:78.000975px;}
.fs3_c01096{font-size:78.001404px;}
.fs9_c01096{font-size:84.000000px;}
.fs8_c01096{font-size:90.000000px;}
.fs7_c01096{font-size:96.000000px;}
.fs0_c01096{font-size:132.000000px;}
.y0_c01096{bottom:0.000000px;}
.yd8_c01096{bottom:46.416000px;}
.yd7_c01096{bottom:46.866000px;}
.yd6_c01096{bottom:47.401500px;}
.yd5_c01096{bottom:47.670000px;}
.yd4_c01096{bottom:47.832000px;}
.yd3_c01096{bottom:48.112500px;}
.yd2_c01096{bottom:48.373500px;}
.yd1_c01096{bottom:49.002000px;}
.yd0_c01096{bottom:49.224000px;}
.ycf_c01096{bottom:49.951500px;}
.yce_c01096{bottom:83.479500px;}
.yc5_c01096{bottom:118.531982px;}
.yc6_c01096{bottom:119.088963px;}
.yc7_c01096{bottom:120.073953px;}
.yc8_c01096{bottom:121.322168px;}
.yc9_c01096{bottom:121.851339px;}
.yca_c01096{bottom:122.197945px;}
.ycb_c01096{bottom:122.763867px;}
.ycc_c01096{bottom:123.079512px;}
.ycd_c01096{bottom:123.620493px;}
.ybb_c01096{bottom:147.693000px;}
.ybc_c01096{bottom:149.129605px;}
.ybd_c01096{bottom:149.993826px;}
.ybe_c01096{bottom:150.361298px;}
.ybf_c01096{bottom:150.596703px;}
.yc0_c01096{bottom:151.104441px;}
.yc1_c01096{bottom:151.336019px;}
.yc2_c01096{bottom:151.698507px;}
.yc3_c01096{bottom:152.431883px;}
.yc4_c01096{bottom:153.049775px;}
.yba_c01096{bottom:179.850000px;}
.yb9_c01096{bottom:213.498000px;}
.yb8_c01096{bottom:249.363000px;}
.yb7_c01096{bottom:285.085500px;}
.yb6_c01096{bottom:321.900000px;}
.yb1_c01096{bottom:354.780000px;}
.yb2_c01096{bottom:355.183500px;}
.yb3_c01096{bottom:355.770000px;}
.yb4_c01096{bottom:356.046000px;}
.yb5_c01096{bottom:358.540500px;}
.yb0_c01096{bottom:391.117500px;}
.yaf_c01096{bottom:427.680000px;}
.ya8_c01096{bottom:461.161500px;}
.ya9_c01096{bottom:461.592000px;}
.yaa_c01096{bottom:462.294000px;}
.yab_c01096{bottom:462.931500px;}
.yac_c01096{bottom:463.281000px;}
.yad_c01096{bottom:463.546500px;}
.yae_c01096{bottom:464.277000px;}
.y9a_c01096{bottom:496.803000px;}
.y9b_c01096{bottom:497.037000px;}
.y9c_c01096{bottom:497.352000px;}
.y9d_c01096{bottom:497.574000px;}
.y9e_c01096{bottom:498.193500px;}
.y9f_c01096{bottom:498.735000px;}
.ya0_c01096{bottom:498.967500px;}
.ya1_c01096{bottom:499.353000px;}
.ya2_c01096{bottom:499.899000px;}
.ya3_c01096{bottom:500.139000px;}
.ya4_c01096{bottom:500.434500px;}
.ya5_c01096{bottom:500.989500px;}
.ya6_c01096{bottom:501.213000px;}
.ya7_c01096{bottom:501.462000px;}
.y99_c01096{bottom:533.998500px;}
.y8d_c01096{bottom:568.351500px;}
.y8e_c01096{bottom:568.978500px;}
.y8f_c01096{bottom:569.412000px;}
.y90_c01096{bottom:569.776500px;}
.y91_c01096{bottom:570.381000px;}
.y92_c01096{bottom:570.652500px;}
.y93_c01096{bottom:571.104000px;}
.y94_c01096{bottom:571.449000px;}
.y95_c01096{bottom:572.151000px;}
.y96_c01096{bottom:572.868000px;}
.y97_c01096{bottom:573.043500px;}
.y98_c01096{bottom:573.402000px;}
.y8c_c01096{bottom:604.942500px;}
.y8b_c01096{bottom:642.076500px;}
.y86_c01096{bottom:674.730000px;}
.y87_c01096{bottom:675.522000px;}
.y88_c01096{bottom:675.921000px;}
.y89_c01096{bottom:676.909500px;}
.y8a_c01096{bottom:677.407500px;}
.y85_c01096{bottom:713.193000px;}
.y79_c01096{bottom:744.120000px;}
.y7a_c01096{bottom:744.676155px;}
.y7b_c01096{bottom:744.896280px;}
.y7c_c01096{bottom:745.059615px;}
.y7d_c01096{bottom:745.224315px;}
.y7e_c01096{bottom:745.613040px;}
.y7f_c01096{bottom:745.780545px;}
.y80_c01096{bottom:746.169330px;}
.y81_c01096{bottom:746.332627px;}
.y82_c01096{bottom:746.556803px;}
.y83_c01096{bottom:746.890238px;}
.y84_c01096{bottom:747.063090px;}
.y6d_c01096{bottom:778.680000px;}
.y6e_c01096{bottom:779.133652px;}
.y6f_c01096{bottom:779.366007px;}
.y70_c01096{bottom:779.753436px;}
.y71_c01096{bottom:779.902956px;}
.y72_c01096{bottom:780.292275px;}
.y73_c01096{bottom:780.526645px;}
.y74_c01096{bottom:781.148445px;}
.y75_c01096{bottom:781.687137px;}
.y76_c01096{bottom:781.919628px;}
.y77_c01096{bottom:783.170703px;}
.y78_c01096{bottom:783.837936px;}
.y63_c01096{bottom:814.860000px;}
.y64_c01096{bottom:815.117733px;}
.y65_c01096{bottom:815.517918px;}
.y66_c01096{bottom:816.248565px;}
.y67_c01096{bottom:816.713487px;}
.y68_c01096{bottom:816.914385px;}
.y69_c01096{bottom:817.120179px;}
.y6a_c01096{bottom:817.776225px;}
.y6b_c01096{bottom:817.978734px;}
.y6c_c01096{bottom:818.370792px;}
.y62_c01096{bottom:853.498500px;}
.y57_c01096{bottom:885.877500px;}
.y58_c01096{bottom:886.581000px;}
.y59_c01096{bottom:887.100000px;}
.y5a_c01096{bottom:887.547000px;}
.y5b_c01096{bottom:887.808000px;}
.y5c_c01096{bottom:888.253500px;}
.y5d_c01096{bottom:888.595500px;}
.y5e_c01096{bottom:889.411500px;}
.y5f_c01096{bottom:889.672500px;}
.y60_c01096{bottom:890.025000px;}
.y61_c01096{bottom:890.470500px;}
.y4a_c01096{bottom:920.977500px;}
.y4b_c01096{bottom:921.910500px;}
.y4c_c01096{bottom:922.164000px;}
.y4d_c01096{bottom:922.828500px;}
.y4e_c01096{bottom:923.761500px;}
.y4f_c01096{bottom:924.169500px;}
.y50_c01096{bottom:924.826500px;}
.y51_c01096{bottom:925.753500px;}
.y52_c01096{bottom:926.145000px;}
.y53_c01096{bottom:926.952000px;}
.y54_c01096{bottom:928.027500px;}
.y55_c01096{bottom:928.572000px;}
.y56_c01096{bottom:928.968000px;}
.y3e_c01096{bottom:955.804500px;}
.y3f_c01096{bottom:956.502000px;}
.y40_c01096{bottom:956.649000px;}
.y41_c01096{bottom:957.360000px;}
.y42_c01096{bottom:957.889500px;}
.y43_c01096{bottom:958.122000px;}
.y44_c01096{bottom:958.746000px;}
.y45_c01096{bottom:958.971000px;}
.y46_c01096{bottom:959.289000px;}
.y47_c01096{bottom:959.613000px;}
.y48_c01096{bottom:960.145500px;}
.y49_c01096{bottom:960.385500px;}
.y32_c01096{bottom:990.634500px;}
.y33_c01096{bottom:991.141500px;}
.y34_c01096{bottom:991.770000px;}
.y35_c01096{bottom:992.217000px;}
.y36_c01096{bottom:992.569500px;}
.y37_c01096{bottom:992.740500px;}
.y38_c01096{bottom:993.363000px;}
.y39_c01096{bottom:993.643500px;}
.y3a_c01096{bottom:994.168500px;}
.y3b_c01096{bottom:994.965000px;}
.y3c_c01096{bottom:995.230500px;}
.y3d_c01096{bottom:995.946000px;}
.y26_c01096{bottom:1025.734500px;}
.y27_c01096{bottom:1026.303000px;}
.y28_c01096{bottom:1026.738000px;}
.y29_c01096{bottom:1027.738500px;}
.y2a_c01096{bottom:1028.181000px;}
.y2b_c01096{bottom:1029.334500px;}
.y2c_c01096{bottom:1031.049000px;}
.y2d_c01096{bottom:1031.919000px;}
.y2e_c01096{bottom:1032.193500px;}
.y2f_c01096{bottom:1032.787500px;}
.y30_c01096{bottom:1033.222500px;}
.y31_c01096{bottom:1034.226000px;}
.y1d_c01096{bottom:1060.833000px;}
.y1e_c01096{bottom:1061.932500px;}
.y1f_c01096{bottom:1062.469500px;}
.y20_c01096{bottom:1063.252500px;}
.y21_c01096{bottom:1063.576500px;}
.y22_c01096{bottom:1064.470500px;}
.y23_c01096{bottom:1065.580500px;}
.y24_c01096{bottom:1066.585500px;}
.y25_c01096{bottom:1067.028000px;}
.ye_c01096{bottom:1096.743000px;}
.yf_c01096{bottom:1097.470500px;}
.y10_c01096{bottom:1097.937000px;}
.y11_c01096{bottom:1098.579000px;}
.y12_c01096{bottom:1099.164000px;}
.y13_c01096{bottom:1099.659000px;}
.y14_c01096{bottom:1100.250000px;}
.y15_c01096{bottom:1100.620500px;}
.y16_c01096{bottom:1101.232500px;}
.y17_c01096{bottom:1101.717000px;}
.y18_c01096{bottom:1102.210500px;}
.y19_c01096{bottom:1102.579500px;}
.y1a_c01096{bottom:1102.945500px;}
.y1b_c01096{bottom:1103.307000px;}
.y1c_c01096{bottom:1103.674500px;}
.y2_c01096{bottom:1133.731500px;}
.y3_c01096{bottom:1134.132000px;}
.y4_c01096{bottom:1134.433500px;}
.y5_c01096{bottom:1135.057500px;}
.y6_c01096{bottom:1135.764000px;}
.y7_c01096{bottom:1135.948500px;}
.y8_c01096{bottom:1136.475000px;}
.y9_c01096{bottom:1136.734500px;}
.ya_c01096{bottom:1137.274500px;}
.yb_c01096{bottom:1137.801000px;}
.yc_c01096{bottom:1138.084500px;}
.yd_c01096{bottom:1138.689000px;}
.y1_c01096{bottom:1191.505500px;}
.h8_c01096{height:66.000000px;}
.h3_c01096{height:72.000000px;}
.h6_c01096{height:72.001764px;}
.hc_c01096{height:72.004356px;}
.h4_c01096{height:78.000000px;}
.h7_c01096{height:78.000975px;}
.h5_c01096{height:78.001404px;}
.hb_c01096{height:84.000000px;}
.ha_c01096{height:90.000000px;}
.h9_c01096{height:96.000000px;}
.h2_c01096{height:132.000000px;}
.h0_c01096{height:1246.320000px;}
.h1_c01096{height:1246.500000px;}
.w0_c01096{width:917.190000px;}
.w1_c01096{width:917.250000px;}
.x0_c01096{left:0.000000px;}
.x2_c01096{left:165.619500px;}
.xd_c01096{left:167.019000px;}
.x41_c01096{left:168.592500px;}
.x47_c01096{left:170.368500px;}
.x9c_c01096{left:172.260000px;}
.xbb_c01096{left:173.340000px;}
.xc9_c01096{left:174.684000px;}
.xd0_c01096{left:176.821491px;}
.x84_c01096{left:203.311500px;}
.x23_c01096{left:210.246000px;}
.x4d_c01096{left:211.500000px;}
.x3_c01096{left:215.688000px;}
.x48_c01096{left:223.288500px;}
.x95_c01096{left:225.033000px;}
.x9d_c01096{left:226.800000px;}
.x28_c01096{left:231.234000px;}
.xe_c01096{left:233.143500px;}
.x55_c01096{left:234.468000px;}
.x73_c01096{left:235.710000px;}
.x85_c01096{left:236.791500px;}
.xa6_c01096{left:239.572500px;}
.x24_c01096{left:243.738000px;}
.x37_c01096{left:245.022000px;}
.x7f_c01096{left:248.499000px;}
.x4_c01096{left:253.357500px;}
.x42_c01096{left:256.597500px;}
.x6b_c01096{left:257.713500px;}
.x9e_c01096{left:259.200000px;}
.xb7_c01096{left:261.900000px;}
.x2f_c01096{left:266.566500px;}
.x56_c01096{left:267.661500px;}
.xb1_c01096{left:272.160000px;}
.xd1_c01096{left:273.222694px;}
.xf_c01096{left:275.572500px;}
.x1c_c01096{left:276.903000px;}
.x4e_c01096{left:278.197500px;}
.x5e_c01096{left:279.246000px;}
.x6e_c01096{left:281.070000px;}
.x30_c01096{left:287.653500px;}
.x86_c01096{left:291.061500px;}
.xb8_c01096{left:295.110000px;}
.x49_c01096{left:299.968500px;}
.x6c_c01096{left:302.002500px;}
.xb2_c01096{left:304.560000px;}
.x29_c01096{left:309.787500px;}
.x65_c01096{left:312.660000px;}
.x25_c01096{left:320.682000px;}
.x57_c01096{left:323.008500px;}
.x87_c01096{left:325.891500px;}
.xbc_c01096{left:328.320000px;}
.x5_c01096{left:331.417500px;}
.x10_c01096{left:333.924000px;}
.xa7_c01096{left:337.320000px;}
.xd6_c01096{left:339.390000px;}
.x58_c01096{left:344.368500px;}
.x74_c01096{left:347.220000px;}
.xd2_c01096{left:351.237904px;}
.x26_c01096{left:354.717000px;}
.x5f_c01096{left:355.938000px;}
.x99_c01096{left:358.830000px;}
.xb3_c01096{left:359.910000px;}
.x2a_c01096{left:365.680500px;}
.x8e_c01096{left:369.495000px;}
.xda_c01096{left:373.833000px;}
.x43_c01096{left:377.313000px;}
.xa8_c01096{left:383.221500px;}
.xd3_c01096{left:384.342589px;}
.x11_c01096{left:387.090000px;}
.x31_c01096{left:389.176500px;}
.x66_c01096{left:390.690000px;}
.x96_c01096{left:392.430000px;}
.x38_c01096{left:399.196500px;}
.x9f_c01096{left:402.840000px;}
.xaa_c01096{left:404.460000px;}
.xd4_c01096{left:406.032901px;}
.x1d_c01096{left:408.933000px;}
.x44_c01096{left:409.959000px;}
.x6d_c01096{left:411.871500px;}
.x88_c01096{left:413.641500px;}
.xbd_c01096{left:415.800000px;}
.xca_c01096{left:417.256500px;}
.x1_c01096{left:419.040000px;}
.x75_c01096{left:424.170000px;}
.xb9_c01096{left:426.870000px;}
.x2b_c01096{left:431.040000px;}
.x12_c01096{left:432.133500px;}
.x39_c01096{left:433.251000px;}
.x89_c01096{left:436.321500px;}
.xcb_c01096{left:438.657000px;}
.x1e_c01096{left:441.346500px;}
.x6_c01096{left:442.650000px;}
.x76_c01096{left:446.040000px;}
.xab_c01096{left:447.930000px;}
.xd7_c01096{left:450.630000px;}
.x80_c01096{left:457.758000px;}
.x77_c01096{left:459.000000px;}
.xc4_c01096{left:460.350000px;}
.xdb_c01096{left:461.853000px;}
.x32_c01096{left:464.781000px;}
.x60_c01096{left:466.623000px;}
.x97_c01096{left:469.377000px;}
.x4f_c01096{left:477.459000px;}
.x8f_c01096{left:480.153000px;}
.xcc_c01096{left:484.815000px;}
.x13_c01096{left:485.895000px;}
.x3a_c01096{left:488.056500px;}
.x78_c01096{left:490.590000px;}
.xac_c01096{left:493.020000px;}
.xd5_c01096{left:494.850501px;}
.xd8_c01096{left:496.260000px;}
.x33_c01096{left:497.988000px;}
.x4a_c01096{left:499.228500px;}
.x67_c01096{left:500.850000px;}
.xa0_c01096{left:503.280000px;}
.xc5_c01096{left:505.170000px;}
.x7_c01096{left:508.504500px;}
.x50_c01096{left:510.942000px;}
.x79_c01096{left:513.810000px;}
.xba_c01096{left:514.890000px;}
.x14_c01096{left:519.643500px;}
.x59_c01096{left:522.295500px;}
.x9a_c01096{left:525.960000px;}
.xbe_c01096{left:527.850000px;}
.x1f_c01096{left:530.710500px;}
.x68_c01096{left:533.790000px;}
.x90_c01096{left:535.240500px;}
.xa1_c01096{left:536.760000px;}
.xcd_c01096{left:538.821000px;}
.x8_c01096{left:540.928500px;}
.x2c_c01096{left:543.900000px;}
.x51_c01096{left:545.241000px;}
.xad_c01096{left:548.370000px;}
.xc6_c01096{left:549.450000px;}
.x4b_c01096{left:554.038500px;}
.x81_c01096{left:557.400000px;}
.x98_c01096{left:560.655000px;}
.xdc_c01096{left:562.291500px;}
.x3b_c01096{left:565.272000px;}
.x8a_c01096{left:568.081500px;}
.xbf_c01096{left:570.780000px;}
.x15_c01096{left:575.230500px;}
.x61_c01096{left:577.881000px;}
.xae_c01096{left:581.310000px;}
.x34_c01096{left:587.085000px;}
.xa2_c01096{left:591.840000px;}
.xd9_c01096{left:596.160000px;}
.x3c_c01096{left:597.946500px;}
.x5a_c01096{left:599.251500px;}
.xce_c01096{left:605.491500px;}
.xc7_c01096{left:606.960000px;}
.x9_c01096{left:608.434500px;}
.x2d_c01096{left:609.514500px;}
.x62_c01096{left:610.540500px;}
.x91_c01096{left:613.264500px;}
.x16_c01096{left:619.276500px;}
.x5b_c01096{left:632.464500px;}
.x7a_c01096{left:633.960000px;}
.x6f_c01096{left:635.040000px;}
.x20_c01096{left:641.677500px;}
.x45_c01096{left:643.021500px;}
.x69_c01096{left:644.490000px;}
.x92_c01096{left:647.532000px;}
.xc0_c01096{left:651.780000px;}
.x52_c01096{left:654.582000px;}
.x8b_c01096{left:656.641500px;}
.xa3_c01096{left:657.990000px;}
.xcf_c01096{left:661.663500px;}
.x17_c01096{left:664.090500px;}
.x3d_c01096{left:665.170500px;}
.x7b_c01096{left:666.900000px;}
.xa_c01096{left:674.284500px;}
.x6a_c01096{left:677.700000px;}
.xb4_c01096{left:681.750000px;}
.x46_c01096{left:686.998500px;}
.x53_c01096{left:688.333500px;}
.x8c_c01096{left:690.121500px;}
.xa4_c01096{left:691.740000px;}
.x18_c01096{left:697.569000px;}
.x7c_c01096{left:700.380000px;}
.xc1_c01096{left:702.810000px;}
.xb_c01096{left:709.729500px;}
.x35_c01096{left:710.746500px;}
.x63_c01096{left:722.062500px;}
.x19_c01096{left:730.777500px;}
.x82_c01096{left:734.745000px;}
.xc2_c01096{left:737.640000px;}
.x21_c01096{left:742.105500px;}
.x70_c01096{left:744.660000px;}
.xaf_c01096{left:746.820000px;}
.x54_c01096{left:753.676500px;}
.x3e_c01096{left:754.755000px;}
.x64_c01096{left:756.633000px;}
.xb5_c01096{left:758.970000px;}
.x1a_c01096{left:763.704000px;}
.x8d_c01096{left:767.881500px;}
.x93_c01096{left:769.041000px;}
.x7d_c01096{left:779.490000px;}
.xa5_c01096{left:780.570000px;}
.xc_c01096{left:785.307000px;}
.x22_c01096{left:786.375000px;}
.x4c_c01096{left:788.128500px;}
.x71_c01096{left:789.480000px;}
.xb6_c01096{left:791.640000px;}
.xc3_c01096{left:793.260000px;}
.x1b_c01096{left:797.151000px;}
.xa9_c01096{left:798.897000px;}
.x3f_c01096{left:800.104500px;}
.x83_c01096{left:801.424500px;}
.x5c_c01096{left:811.189500px;}
.x9b_c01096{left:812.430000px;}
.x27_c01096{left:819.600000px;}
.x36_c01096{left:821.167500px;}
.x72_c01096{left:823.770000px;}
.x2e_c01096{left:831.705000px;}
.x40_c01096{left:833.085000px;}
.x7e_c01096{left:834.570000px;}
.x94_c01096{left:836.508000px;}
.xb0_c01096{left:837.810000px;}
.x5d_c01096{left:906.508500px;}
.xc8_c01096{left:909.630000px;}
@media print{
.v0_c01096{vertical-align:0.000000pt;}
.ls0_c01096{letter-spacing:0.000000pt;}
.ws0_c01096{word-spacing:0.000000pt;}
._0_c01096{width:34.425868pt;}
.fs6_c01096{font-size:58.666667pt;}
.fs1_c01096{font-size:64.000000pt;}
.fs4_c01096{font-size:64.001568pt;}
.fsa_c01096{font-size:64.003872pt;}
.fs2_c01096{font-size:69.333333pt;}
.fs5_c01096{font-size:69.334200pt;}
.fs3_c01096{font-size:69.334581pt;}
.fs9_c01096{font-size:74.666667pt;}
.fs8_c01096{font-size:80.000000pt;}
.fs7_c01096{font-size:85.333333pt;}
.fs0_c01096{font-size:117.333333pt;}
.y0_c01096{bottom:0.000000pt;}
.yd8_c01096{bottom:41.258667pt;}
.yd7_c01096{bottom:41.658667pt;}
.yd6_c01096{bottom:42.134667pt;}
.yd5_c01096{bottom:42.373333pt;}
.yd4_c01096{bottom:42.517333pt;}
.yd3_c01096{bottom:42.766667pt;}
.yd2_c01096{bottom:42.998667pt;}
.yd1_c01096{bottom:43.557333pt;}
.yd0_c01096{bottom:43.754667pt;}
.ycf_c01096{bottom:44.401333pt;}
.yce_c01096{bottom:74.204000pt;}
.yc5_c01096{bottom:105.361761pt;}
.yc6_c01096{bottom:105.856856pt;}
.yc7_c01096{bottom:106.732403pt;}
.yc8_c01096{bottom:107.841927pt;}
.yc9_c01096{bottom:108.312301pt;}
.yca_c01096{bottom:108.620396pt;}
.ycb_c01096{bottom:109.123437pt;}
.ycc_c01096{bottom:109.404011pt;}
.ycd_c01096{bottom:109.884883pt;}
.ybb_c01096{bottom:131.282667pt;}
.ybc_c01096{bottom:132.559649pt;}
.ybd_c01096{bottom:133.327845pt;}
.ybe_c01096{bottom:133.654487pt;}
.ybf_c01096{bottom:133.863736pt;}
.yc0_c01096{bottom:134.315059pt;}
.yc1_c01096{bottom:134.520905pt;}
.yc2_c01096{bottom:134.843117pt;}
.yc3_c01096{bottom:135.495007pt;}
.yc4_c01096{bottom:136.044244pt;}
.yba_c01096{bottom:159.866667pt;}
.yb9_c01096{bottom:189.776000pt;}
.yb8_c01096{bottom:221.656000pt;}
.yb7_c01096{bottom:253.409333pt;}
.yb6_c01096{bottom:286.133333pt;}
.yb1_c01096{bottom:315.360000pt;}
.yb2_c01096{bottom:315.718667pt;}
.yb3_c01096{bottom:316.240000pt;}
.yb4_c01096{bottom:316.485333pt;}
.yb5_c01096{bottom:318.702667pt;}
.yb0_c01096{bottom:347.660000pt;}
.yaf_c01096{bottom:380.160000pt;}
.ya8_c01096{bottom:409.921333pt;}
.ya9_c01096{bottom:410.304000pt;}
.yaa_c01096{bottom:410.928000pt;}
.yab_c01096{bottom:411.494667pt;}
.yac_c01096{bottom:411.805333pt;}
.yad_c01096{bottom:412.041333pt;}
.yae_c01096{bottom:412.690667pt;}
.y9a_c01096{bottom:441.602667pt;}
.y9b_c01096{bottom:441.810667pt;}
.y9c_c01096{bottom:442.090667pt;}
.y9d_c01096{bottom:442.288000pt;}
.y9e_c01096{bottom:442.838667pt;}
.y9f_c01096{bottom:443.320000pt;}
.ya0_c01096{bottom:443.526667pt;}
.ya1_c01096{bottom:443.869333pt;}
.ya2_c01096{bottom:444.354667pt;}
.ya3_c01096{bottom:444.568000pt;}
.ya4_c01096{bottom:444.830667pt;}
.ya5_c01096{bottom:445.324000pt;}
.ya6_c01096{bottom:445.522667pt;}
.ya7_c01096{bottom:445.744000pt;}
.y99_c01096{bottom:474.665333pt;}
.y8d_c01096{bottom:505.201333pt;}
.y8e_c01096{bottom:505.758667pt;}
.y8f_c01096{bottom:506.144000pt;}
.y90_c01096{bottom:506.468000pt;}
.y91_c01096{bottom:507.005333pt;}
.y92_c01096{bottom:507.246667pt;}
.y93_c01096{bottom:507.648000pt;}
.y94_c01096{bottom:507.954667pt;}
.y95_c01096{bottom:508.578667pt;}
.y96_c01096{bottom:509.216000pt;}
.y97_c01096{bottom:509.372000pt;}
.y98_c01096{bottom:509.690667pt;}
.y8c_c01096{bottom:537.726667pt;}
.y8b_c01096{bottom:570.734667pt;}
.y86_c01096{bottom:599.760000pt;}
.y87_c01096{bottom:600.464000pt;}
.y88_c01096{bottom:600.818667pt;}
.y89_c01096{bottom:601.697333pt;}
.y8a_c01096{bottom:602.140000pt;}
.y85_c01096{bottom:633.949333pt;}
.y79_c01096{bottom:661.440000pt;}
.y7a_c01096{bottom:661.934360pt;}
.y7b_c01096{bottom:662.130027pt;}
.y7c_c01096{bottom:662.275213pt;}
.y7d_c01096{bottom:662.421613pt;}
.y7e_c01096{bottom:662.767147pt;}
.y7f_c01096{bottom:662.916040pt;}
.y80_c01096{bottom:663.261627pt;}
.y81_c01096{bottom:663.406780pt;}
.y82_c01096{bottom:663.606047pt;}
.y83_c01096{bottom:663.902433pt;}
.y84_c01096{bottom:664.056080pt;}
.y6d_c01096{bottom:692.160000pt;}
.y6e_c01096{bottom:692.563247pt;}
.y6f_c01096{bottom:692.769784pt;}
.y70_c01096{bottom:693.114165pt;}
.y71_c01096{bottom:693.247072pt;}
.y72_c01096{bottom:693.593133pt;}
.y73_c01096{bottom:693.801463pt;}
.y74_c01096{bottom:694.354173pt;}
.y75_c01096{bottom:694.833011pt;}
.y76_c01096{bottom:695.039669pt;}
.y77_c01096{bottom:696.151736pt;}
.y78_c01096{bottom:696.744832pt;}
.y63_c01096{bottom:724.320000pt;}
.y64_c01096{bottom:724.549096pt;}
.y65_c01096{bottom:724.904816pt;}
.y66_c01096{bottom:725.554280pt;}
.y67_c01096{bottom:725.967544pt;}
.y68_c01096{bottom:726.146120pt;}
.y69_c01096{bottom:726.329048pt;}
.y6a_c01096{bottom:726.912200pt;}
.y6b_c01096{bottom:727.092208pt;}
.y6c_c01096{bottom:727.440704pt;}
.y62_c01096{bottom:758.665333pt;}
.y57_c01096{bottom:787.446667pt;}
.y58_c01096{bottom:788.072000pt;}
.y59_c01096{bottom:788.533333pt;}
.y5a_c01096{bottom:788.930667pt;}
.y5b_c01096{bottom:789.162667pt;}
.y5c_c01096{bottom:789.558667pt;}
.y5d_c01096{bottom:789.862667pt;}
.y5e_c01096{bottom:790.588000pt;}
.y5f_c01096{bottom:790.820000pt;}
.y60_c01096{bottom:791.133333pt;}
.y61_c01096{bottom:791.529333pt;}
.y4a_c01096{bottom:818.646667pt;}
.y4b_c01096{bottom:819.476000pt;}
.y4c_c01096{bottom:819.701333pt;}
.y4d_c01096{bottom:820.292000pt;}
.y4e_c01096{bottom:821.121333pt;}
.y4f_c01096{bottom:821.484000pt;}
.y50_c01096{bottom:822.068000pt;}
.y51_c01096{bottom:822.892000pt;}
.y52_c01096{bottom:823.240000pt;}
.y53_c01096{bottom:823.957333pt;}
.y54_c01096{bottom:824.913333pt;}
.y55_c01096{bottom:825.397333pt;}
.y56_c01096{bottom:825.749333pt;}
.y3e_c01096{bottom:849.604000pt;}
.y3f_c01096{bottom:850.224000pt;}
.y40_c01096{bottom:850.354667pt;}
.y41_c01096{bottom:850.986667pt;}
.y42_c01096{bottom:851.457333pt;}
.y43_c01096{bottom:851.664000pt;}
.y44_c01096{bottom:852.218667pt;}
.y45_c01096{bottom:852.418667pt;}
.y46_c01096{bottom:852.701333pt;}
.y47_c01096{bottom:852.989333pt;}
.y48_c01096{bottom:853.462667pt;}
.y49_c01096{bottom:853.676000pt;}
.y32_c01096{bottom:880.564000pt;}
.y33_c01096{bottom:881.014667pt;}
.y34_c01096{bottom:881.573333pt;}
.y35_c01096{bottom:881.970667pt;}
.y36_c01096{bottom:882.284000pt;}
.y37_c01096{bottom:882.436000pt;}
.y38_c01096{bottom:882.989333pt;}
.y39_c01096{bottom:883.238667pt;}
.y3a_c01096{bottom:883.705333pt;}
.y3b_c01096{bottom:884.413333pt;}
.y3c_c01096{bottom:884.649333pt;}
.y3d_c01096{bottom:885.285333pt;}
.y26_c01096{bottom:911.764000pt;}
.y27_c01096{bottom:912.269333pt;}
.y28_c01096{bottom:912.656000pt;}
.y29_c01096{bottom:913.545333pt;}
.y2a_c01096{bottom:913.938667pt;}
.y2b_c01096{bottom:914.964000pt;}
.y2c_c01096{bottom:916.488000pt;}
.y2d_c01096{bottom:917.261333pt;}
.y2e_c01096{bottom:917.505333pt;}
.y2f_c01096{bottom:918.033333pt;}
.y30_c01096{bottom:918.420000pt;}
.y31_c01096{bottom:919.312000pt;}
.y1d_c01096{bottom:942.962667pt;}
.y1e_c01096{bottom:943.940000pt;}
.y1f_c01096{bottom:944.417333pt;}
.y20_c01096{bottom:945.113333pt;}
.y21_c01096{bottom:945.401333pt;}
.y22_c01096{bottom:946.196000pt;}
.y23_c01096{bottom:947.182667pt;}
.y24_c01096{bottom:948.076000pt;}
.y25_c01096{bottom:948.469333pt;}
.ye_c01096{bottom:974.882667pt;}
.yf_c01096{bottom:975.529333pt;}
.y10_c01096{bottom:975.944000pt;}
.y11_c01096{bottom:976.514667pt;}
.y12_c01096{bottom:977.034667pt;}
.y13_c01096{bottom:977.474667pt;}
.y14_c01096{bottom:978.000000pt;}
.y15_c01096{bottom:978.329333pt;}
.y16_c01096{bottom:978.873333pt;}
.y17_c01096{bottom:979.304000pt;}
.y18_c01096{bottom:979.742667pt;}
.y19_c01096{bottom:980.070667pt;}
.y1a_c01096{bottom:980.396000pt;}
.y1b_c01096{bottom:980.717333pt;}
.y1c_c01096{bottom:981.044000pt;}
.y2_c01096{bottom:1007.761333pt;}
.y3_c01096{bottom:1008.117333pt;}
.y4_c01096{bottom:1008.385333pt;}
.y5_c01096{bottom:1008.940000pt;}
.y6_c01096{bottom:1009.568000pt;}
.y7_c01096{bottom:1009.732000pt;}
.y8_c01096{bottom:1010.200000pt;}
.y9_c01096{bottom:1010.430667pt;}
.ya_c01096{bottom:1010.910667pt;}
.yb_c01096{bottom:1011.378667pt;}
.yc_c01096{bottom:1011.630667pt;}
.yd_c01096{bottom:1012.168000pt;}
.y1_c01096{bottom:1059.116000pt;}
.h8_c01096{height:58.666667pt;}
.h3_c01096{height:64.000000pt;}
.h6_c01096{height:64.001568pt;}
.hc_c01096{height:64.003872pt;}
.h4_c01096{height:69.333333pt;}
.h7_c01096{height:69.334200pt;}
.h5_c01096{height:69.334581pt;}
.hb_c01096{height:74.666667pt;}
.ha_c01096{height:80.000000pt;}
.h9_c01096{height:85.333333pt;}
.h2_c01096{height:117.333333pt;}
.h0_c01096{height:1107.840000pt;}
.h1_c01096{height:1108.000000pt;}
.w0_c01096{width:815.280000pt;}
.w1_c01096{width:815.333333pt;}
.x0_c01096{left:0.000000pt;}
.x2_c01096{left:147.217333pt;}
.xd_c01096{left:148.461333pt;}
.x41_c01096{left:149.860000pt;}
.x47_c01096{left:151.438667pt;}
.x9c_c01096{left:153.120000pt;}
.xbb_c01096{left:154.080000pt;}
.xc9_c01096{left:155.274667pt;}
.xd0_c01096{left:157.174659pt;}
.x84_c01096{left:180.721333pt;}
.x23_c01096{left:186.885333pt;}
.x4d_c01096{left:188.000000pt;}
.x3_c01096{left:191.722667pt;}
.x48_c01096{left:198.478667pt;}
.x95_c01096{left:200.029333pt;}
.x9d_c01096{left:201.600000pt;}
.x28_c01096{left:205.541333pt;}
.xe_c01096{left:207.238667pt;}
.x55_c01096{left:208.416000pt;}
.x73_c01096{left:209.520000pt;}
.x85_c01096{left:210.481333pt;}
.xa6_c01096{left:212.953333pt;}
.x24_c01096{left:216.656000pt;}
.x37_c01096{left:217.797333pt;}
.x7f_c01096{left:220.888000pt;}
.x4_c01096{left:225.206667pt;}
.x42_c01096{left:228.086667pt;}
.x6b_c01096{left:229.078667pt;}
.x9e_c01096{left:230.400000pt;}
.xb7_c01096{left:232.800000pt;}
.x2f_c01096{left:236.948000pt;}
.x56_c01096{left:237.921333pt;}
.xb1_c01096{left:241.920000pt;}
.xd1_c01096{left:242.864617pt;}
.xf_c01096{left:244.953333pt;}
.x1c_c01096{left:246.136000pt;}
.x4e_c01096{left:247.286667pt;}
.x5e_c01096{left:248.218667pt;}
.x6e_c01096{left:249.840000pt;}
.x30_c01096{left:255.692000pt;}
.x86_c01096{left:258.721333pt;}
.xb8_c01096{left:262.320000pt;}
.x49_c01096{left:266.638667pt;}
.x6c_c01096{left:268.446667pt;}
.xb2_c01096{left:270.720000pt;}
.x29_c01096{left:275.366667pt;}
.x65_c01096{left:277.920000pt;}
.x25_c01096{left:285.050667pt;}
.x57_c01096{left:287.118667pt;}
.x87_c01096{left:289.681333pt;}
.xbc_c01096{left:291.840000pt;}
.x5_c01096{left:294.593333pt;}
.x10_c01096{left:296.821333pt;}
.xa7_c01096{left:299.840000pt;}
.xd6_c01096{left:301.680000pt;}
.x58_c01096{left:306.105333pt;}
.x74_c01096{left:308.640000pt;}
.xd2_c01096{left:312.211471pt;}
.x26_c01096{left:315.304000pt;}
.x5f_c01096{left:316.389333pt;}
.x99_c01096{left:318.960000pt;}
.xb3_c01096{left:319.920000pt;}
.x2a_c01096{left:325.049333pt;}
.x8e_c01096{left:328.440000pt;}
.xda_c01096{left:332.296000pt;}
.x43_c01096{left:335.389333pt;}
.xa8_c01096{left:340.641333pt;}
.xd3_c01096{left:341.637857pt;}
.x11_c01096{left:344.080000pt;}
.x31_c01096{left:345.934667pt;}
.x66_c01096{left:347.280000pt;}
.x96_c01096{left:348.826667pt;}
.x38_c01096{left:354.841333pt;}
.x9f_c01096{left:358.080000pt;}
.xaa_c01096{left:359.520000pt;}
.xd4_c01096{left:360.918135pt;}
.x1d_c01096{left:363.496000pt;}
.x44_c01096{left:364.408000pt;}
.x6d_c01096{left:366.108000pt;}
.x88_c01096{left:367.681333pt;}
.xbd_c01096{left:369.600000pt;}
.xca_c01096{left:370.894667pt;}
.x1_c01096{left:372.480000pt;}
.x75_c01096{left:377.040000pt;}
.xb9_c01096{left:379.440000pt;}
.x2b_c01096{left:383.146667pt;}
.x12_c01096{left:384.118667pt;}
.x39_c01096{left:385.112000pt;}
.x89_c01096{left:387.841333pt;}
.xcb_c01096{left:389.917333pt;}
.x1e_c01096{left:392.308000pt;}
.x6_c01096{left:393.466667pt;}
.x76_c01096{left:396.480000pt;}
.xab_c01096{left:398.160000pt;}
.xd7_c01096{left:400.560000pt;}
.x80_c01096{left:406.896000pt;}
.x77_c01096{left:408.000000pt;}
.xc4_c01096{left:409.200000pt;}
.xdb_c01096{left:410.536000pt;}
.x32_c01096{left:413.138667pt;}
.x60_c01096{left:414.776000pt;}
.x97_c01096{left:417.224000pt;}
.x4f_c01096{left:424.408000pt;}
.x8f_c01096{left:426.802667pt;}
.xcc_c01096{left:430.946667pt;}
.x13_c01096{left:431.906667pt;}
.x3a_c01096{left:433.828000pt;}
.x78_c01096{left:436.080000pt;}
.xac_c01096{left:438.240000pt;}
.xd5_c01096{left:439.867112pt;}
.xd8_c01096{left:441.120000pt;}
.x33_c01096{left:442.656000pt;}
.x4a_c01096{left:443.758667pt;}
.x67_c01096{left:445.200000pt;}
.xa0_c01096{left:447.360000pt;}
.xc5_c01096{left:449.040000pt;}
.x7_c01096{left:452.004000pt;}
.x50_c01096{left:454.170667pt;}
.x79_c01096{left:456.720000pt;}
.xba_c01096{left:457.680000pt;}
.x14_c01096{left:461.905333pt;}
.x59_c01096{left:464.262667pt;}
.x9a_c01096{left:467.520000pt;}
.xbe_c01096{left:469.200000pt;}
.x1f_c01096{left:471.742667pt;}
.x68_c01096{left:474.480000pt;}
.x90_c01096{left:475.769333pt;}
.xa1_c01096{left:477.120000pt;}
.xcd_c01096{left:478.952000pt;}
.x8_c01096{left:480.825333pt;}
.x2c_c01096{left:483.466667pt;}
.x51_c01096{left:484.658667pt;}
.xad_c01096{left:487.440000pt;}
.xc6_c01096{left:488.400000pt;}
.x4b_c01096{left:492.478667pt;}
.x81_c01096{left:495.466667pt;}
.x98_c01096{left:498.360000pt;}
.xdc_c01096{left:499.814667pt;}
.x3b_c01096{left:502.464000pt;}
.x8a_c01096{left:504.961333pt;}
.xbf_c01096{left:507.360000pt;}
.x15_c01096{left:511.316000pt;}
.x61_c01096{left:513.672000pt;}
.xae_c01096{left:516.720000pt;}
.x34_c01096{left:521.853333pt;}
.xa2_c01096{left:526.080000pt;}
.xd9_c01096{left:529.920000pt;}
.x3c_c01096{left:531.508000pt;}
.x5a_c01096{left:532.668000pt;}
.xce_c01096{left:538.214667pt;}
.xc7_c01096{left:539.520000pt;}
.x9_c01096{left:540.830667pt;}
.x2d_c01096{left:541.790667pt;}
.x62_c01096{left:542.702667pt;}
.x91_c01096{left:545.124000pt;}
.x16_c01096{left:550.468000pt;}
.x5b_c01096{left:562.190667pt;}
.x7a_c01096{left:563.520000pt;}
.x6f_c01096{left:564.480000pt;}
.x20_c01096{left:570.380000pt;}
.x45_c01096{left:571.574667pt;}
.x69_c01096{left:572.880000pt;}
.x92_c01096{left:575.584000pt;}
.xc0_c01096{left:579.360000pt;}
.x52_c01096{left:581.850667pt;}
.x8b_c01096{left:583.681333pt;}
.xa3_c01096{left:584.880000pt;}
.xcf_c01096{left:588.145333pt;}
.x17_c01096{left:590.302667pt;}
.x3d_c01096{left:591.262667pt;}
.x7b_c01096{left:592.800000pt;}
.xa_c01096{left:599.364000pt;}
.x6a_c01096{left:602.400000pt;}
.xb4_c01096{left:606.000000pt;}
.x46_c01096{left:610.665333pt;}
.x53_c01096{left:611.852000pt;}
.x8c_c01096{left:613.441333pt;}
.xa4_c01096{left:614.880000pt;}
.x18_c01096{left:620.061333pt;}
.x7c_c01096{left:622.560000pt;}
.xc1_c01096{left:624.720000pt;}
.xb_c01096{left:630.870667pt;}
.x35_c01096{left:631.774667pt;}
.x63_c01096{left:641.833333pt;}
.x19_c01096{left:649.580000pt;}
.x82_c01096{left:653.106667pt;}
.xc2_c01096{left:655.680000pt;}
.x21_c01096{left:659.649333pt;}
.x70_c01096{left:661.920000pt;}
.xaf_c01096{left:663.840000pt;}
.x54_c01096{left:669.934667pt;}
.x3e_c01096{left:670.893333pt;}
.x64_c01096{left:672.562667pt;}
.xb5_c01096{left:674.640000pt;}
.x1a_c01096{left:678.848000pt;}
.x8d_c01096{left:682.561333pt;}
.x93_c01096{left:683.592000pt;}
.x7d_c01096{left:692.880000pt;}
.xa5_c01096{left:693.840000pt;}
.xc_c01096{left:698.050667pt;}
.x22_c01096{left:699.000000pt;}
.x4c_c01096{left:700.558667pt;}
.x71_c01096{left:701.760000pt;}
.xb6_c01096{left:703.680000pt;}
.xc3_c01096{left:705.120000pt;}
.x1b_c01096{left:708.578667pt;}
.xa9_c01096{left:710.130667pt;}
.x3f_c01096{left:711.204000pt;}
.x83_c01096{left:712.377333pt;}
.x5c_c01096{left:721.057333pt;}
.x9b_c01096{left:722.160000pt;}
.x27_c01096{left:728.533333pt;}
.x36_c01096{left:729.926667pt;}
.x72_c01096{left:732.240000pt;}
.x2e_c01096{left:739.293333pt;}
.x40_c01096{left:740.520000pt;}
.x7e_c01096{left:741.840000pt;}
.x94_c01096{left:743.562667pt;}
.xb0_c01096{left:744.720000pt;}
.x5d_c01096{left:805.785333pt;}
.xc8_c01096{left:808.560000pt;}
}





/* 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_c01097 {
    display:none;
  }
  .loading-indicator_c01097.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01097 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_c01097 { 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_c01097" -> "#page-container .classname_c01097")
 */
.pf_c01097 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01097 { /* 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_c01097.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01097 { /* 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_c01097 { /* 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_c01097 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01097 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01097 {overflow:visible;}
  }
}
.c_c01097 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01097 { /* 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_c01097:after { /* webkit #35443 */
  content: '';
}
.t_c01097:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01097 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 */
}
.__c01097 { /* 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_c01097 { /* info for Javascript */
  display:none;
}
.l_c01097 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01097 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01097 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01097: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_c01097 {
    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_c01097.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01097.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_c01097 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01097{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01097;src:url('chunks/assets/font_c605e72f209fc835e906f064.woff2')format("woff");}.ff1_c01097{font-family:ff1_c01097;line-height:1.000000;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;}
.m126_c01097{transform:matrix(0.009087,0.000227,-0.006248,0.249922,0,0);-ms-transform:matrix(0.009087,0.000227,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.009087,0.000227,-0.006248,0.249922,0,0);}
.mf6_c01097{transform:matrix(0.014264,0.000399,-0.006997,0.249902,0,0);-ms-transform:matrix(0.014264,0.000399,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.014264,0.000399,-0.006997,0.249902,0,0);}
.m22_c01097{transform:matrix(0.016008,0.000256,-0.003999,0.249968,0,0);-ms-transform:matrix(0.016008,0.000256,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.016008,0.000256,-0.003999,0.249968,0,0);}
.m73_c01097{transform:matrix(0.016768,0.000268,-0.003999,0.249968,0,0);-ms-transform:matrix(0.016768,0.000268,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.016768,0.000268,-0.003999,0.249968,0,0);}
.m6a_c01097{transform:matrix(0.020212,0.000323,-0.003999,0.249968,0,0);-ms-transform:matrix(0.020212,0.000323,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.020212,0.000323,-0.003999,0.249968,0,0);}
.m78_c01097{transform:matrix(0.022672,0.000363,-0.003999,0.249968,0,0);-ms-transform:matrix(0.022672,0.000363,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.022672,0.000363,-0.003999,0.249968,0,0);}
.m46_c01097{transform:matrix(0.029771,0.000476,-0.003999,0.249968,0,0);-ms-transform:matrix(0.029771,0.000476,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.029771,0.000476,-0.003999,0.249968,0,0);}
.mc3_c01097{transform:matrix(0.031843,0.001434,-0.011250,0.249747,0,0);-ms-transform:matrix(0.031843,0.001434,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.031843,0.001434,-0.011250,0.249747,0,0);}
.ma9_c01097{transform:matrix(0.069611,0.001114,-0.003999,0.249968,0,0);-ms-transform:matrix(0.069611,0.001114,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.069611,0.001114,-0.003999,0.249968,0,0);}
.mee_c01097{transform:matrix(0.084076,0.006072,-0.018007,0.249351,0,0);-ms-transform:matrix(0.084076,0.006072,-0.018007,0.249351,0,0);-webkit-transform:matrix(0.084076,0.006072,-0.018007,0.249351,0,0);}
.maf_c01097{transform:matrix(0.093548,0.001497,-0.003999,0.249968,0,0);-ms-transform:matrix(0.093548,0.001497,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.093548,0.001497,-0.003999,0.249968,0,0);}
.mda_c01097{transform:matrix(0.098005,0.003826,-0.009752,0.249810,0,0);-ms-transform:matrix(0.098005,0.003826,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.098005,0.003826,-0.009752,0.249810,0,0);}
.m94_c01097{transform:matrix(0.108061,0.001729,-0.003999,0.249968,0,0);-ms-transform:matrix(0.108061,0.001729,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.108061,0.001729,-0.003999,0.249968,0,0);}
.m101_c01097{transform:matrix(0.111611,0.003125,-0.006997,0.249902,0,0);-ms-transform:matrix(0.111611,0.003125,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.111611,0.003125,-0.006997,0.249902,0,0);}
.m7e_c01097{transform:matrix(0.114085,0.001825,-0.003999,0.249968,0,0);-ms-transform:matrix(0.114085,0.001825,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.114085,0.001825,-0.003999,0.249968,0,0);}
.m59_c01097{transform:matrix(0.116415,0.001863,-0.003999,0.249968,0,0);-ms-transform:matrix(0.116415,0.001863,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.116415,0.001863,-0.003999,0.249968,0,0);}
.mdf_c01097{transform:matrix(0.116791,0.004559,-0.009752,0.249810,0,0);-ms-transform:matrix(0.116791,0.004559,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.116791,0.004559,-0.009752,0.249810,0,0);}
.m1f_c01097{transform:matrix(0.122309,0.001957,-0.003999,0.249968,0,0);-ms-transform:matrix(0.122309,0.001957,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.122309,0.001957,-0.003999,0.249968,0,0);}
.m107_c01097{transform:matrix(0.123966,0.003471,-0.006997,0.249902,0,0);-ms-transform:matrix(0.123966,0.003471,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.123966,0.003471,-0.006997,0.249902,0,0);}
.m7a_c01097{transform:matrix(0.125159,0.002003,-0.003999,0.249968,0,0);-ms-transform:matrix(0.125159,0.002003,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.125159,0.002003,-0.003999,0.249968,0,0);}
.m1d_c01097{transform:matrix(0.134128,0.002146,-0.003999,0.249968,0,0);-ms-transform:matrix(0.134128,0.002146,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.134128,0.002146,-0.003999,0.249968,0,0);}
.mb3_c01097{transform:matrix(0.139767,0.002236,-0.003999,0.249968,0,0);-ms-transform:matrix(0.139767,0.002236,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.139767,0.002236,-0.003999,0.249968,0,0);}
.m62_c01097{transform:matrix(0.145506,0.002328,-0.003999,0.249968,0,0);-ms-transform:matrix(0.145506,0.002328,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.145506,0.002328,-0.003999,0.249968,0,0);}
.mac_c01097{transform:matrix(0.146391,0.002342,-0.003999,0.249968,0,0);-ms-transform:matrix(0.146391,0.002342,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.146391,0.002342,-0.003999,0.249968,0,0);}
.mab_c01097{transform:matrix(0.148316,0.002373,-0.003999,0.249968,0,0);-ms-transform:matrix(0.148316,0.002373,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.148316,0.002373,-0.003999,0.249968,0,0);}
.md4_c01097{transform:matrix(0.149621,0.005841,-0.009752,0.249810,0,0);-ms-transform:matrix(0.149621,0.005841,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.149621,0.005841,-0.009752,0.249810,0,0);}
.m96_c01097{transform:matrix(0.151661,0.002427,-0.003999,0.249968,0,0);-ms-transform:matrix(0.151661,0.002427,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.151661,0.002427,-0.003999,0.249968,0,0);}
.mb1_c01097{transform:matrix(0.152201,0.002435,-0.003999,0.249968,0,0);-ms-transform:matrix(0.152201,0.002435,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.152201,0.002435,-0.003999,0.249968,0,0);}
.mb2_c01097{transform:matrix(0.152625,0.002442,-0.003999,0.249968,0,0);-ms-transform:matrix(0.152625,0.002442,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.152625,0.002442,-0.003999,0.249968,0,0);}
.md3_c01097{transform:matrix(0.153013,0.005973,-0.009752,0.249810,0,0);-ms-transform:matrix(0.153013,0.005973,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.153013,0.005973,-0.009752,0.249810,0,0);}
.mdb_c01097{transform:matrix(0.153623,0.005997,-0.009752,0.249810,0,0);-ms-transform:matrix(0.153623,0.005997,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.153623,0.005997,-0.009752,0.249810,0,0);}
.m11f_c01097{transform:matrix(0.156064,0.004370,-0.006997,0.249902,0,0);-ms-transform:matrix(0.156064,0.004370,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.156064,0.004370,-0.006997,0.249902,0,0);}
.mb4_c01097{transform:matrix(0.156270,0.002500,-0.003999,0.249968,0,0);-ms-transform:matrix(0.156270,0.002500,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.156270,0.002500,-0.003999,0.249968,0,0);}
.mad_c01097{transform:matrix(0.157310,0.002517,-0.003999,0.249968,0,0);-ms-transform:matrix(0.157310,0.002517,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.157310,0.002517,-0.003999,0.249968,0,0);}
.mbe_c01097{transform:matrix(0.157580,0.007098,-0.011250,0.249747,0,0);-ms-transform:matrix(0.157580,0.007098,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.157580,0.007098,-0.011250,0.249747,0,0);}
.m6_c01097{transform:matrix(0.159979,0.006726,-0.010501,0.249779,0,0);-ms-transform:matrix(0.159979,0.006726,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.159979,0.006726,-0.010501,0.249779,0,0);}
.m123_c01097{transform:matrix(0.160727,0.004500,-0.006997,0.249902,0,0);-ms-transform:matrix(0.160727,0.004500,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.160727,0.004500,-0.006997,0.249902,0,0);}
.mbf_c01097{transform:matrix(0.161162,0.007260,-0.011250,0.249747,0,0);-ms-transform:matrix(0.161162,0.007260,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.161162,0.007260,-0.011250,0.249747,0,0);}
.me1_c01097{transform:matrix(0.163650,0.006389,-0.009752,0.249810,0,0);-ms-transform:matrix(0.163650,0.006389,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.163650,0.006389,-0.009752,0.249810,0,0);}
.me0_c01097{transform:matrix(0.163840,0.006396,-0.009752,0.249810,0,0);-ms-transform:matrix(0.163840,0.006396,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.163840,0.006396,-0.009752,0.249810,0,0);}
.m11e_c01097{transform:matrix(0.168614,0.004721,-0.006997,0.249902,0,0);-ms-transform:matrix(0.168614,0.004721,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.168614,0.004721,-0.006997,0.249902,0,0);}
.mc2_c01097{transform:matrix(0.171581,0.007729,-0.011250,0.249747,0,0);-ms-transform:matrix(0.171581,0.007729,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.171581,0.007729,-0.011250,0.249747,0,0);}
.m75_c01097{transform:matrix(0.172228,0.002756,-0.003999,0.249968,0,0);-ms-transform:matrix(0.172228,0.002756,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.172228,0.002756,-0.003999,0.249968,0,0);}
.m5a_c01097{transform:matrix(0.173933,0.002783,-0.003999,0.249968,0,0);-ms-transform:matrix(0.173933,0.002783,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.173933,0.002783,-0.003999,0.249968,0,0);}
.m111_c01097{transform:matrix(0.175571,0.004916,-0.006997,0.249902,0,0);-ms-transform:matrix(0.175571,0.004916,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.175571,0.004916,-0.006997,0.249902,0,0);}
.mcf_c01097{transform:matrix(0.175961,0.006869,-0.009752,0.249810,0,0);-ms-transform:matrix(0.175961,0.006869,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.175961,0.006869,-0.009752,0.249810,0,0);}
.m18_c01097{transform:matrix(0.178247,0.002852,-0.003999,0.249968,0,0);-ms-transform:matrix(0.178247,0.002852,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.178247,0.002852,-0.003999,0.249968,0,0);}
.md1_c01097{transform:matrix(0.180907,0.007062,-0.009752,0.249810,0,0);-ms-transform:matrix(0.180907,0.007062,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.180907,0.007062,-0.009752,0.249810,0,0);}
.m9b_c01097{transform:matrix(0.183347,0.002934,-0.003999,0.249968,0,0);-ms-transform:matrix(0.183347,0.002934,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.183347,0.002934,-0.003999,0.249968,0,0);}
.m11b_c01097{transform:matrix(0.184718,0.005172,-0.006997,0.249902,0,0);-ms-transform:matrix(0.184718,0.005172,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.184718,0.005172,-0.006997,0.249902,0,0);}
.m9c_c01097{transform:matrix(0.184771,0.002956,-0.003999,0.249968,0,0);-ms-transform:matrix(0.184771,0.002956,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.184771,0.002956,-0.003999,0.249968,0,0);}
.m76_c01097{transform:matrix(0.185441,0.002967,-0.003999,0.249968,0,0);-ms-transform:matrix(0.185441,0.002967,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.185441,0.002967,-0.003999,0.249968,0,0);}
.m20_c01097{transform:matrix(0.186706,0.002987,-0.003999,0.249968,0,0);-ms-transform:matrix(0.186706,0.002987,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.186706,0.002987,-0.003999,0.249968,0,0);}
.mb6_c01097{transform:matrix(0.188536,0.003017,-0.003999,0.249968,0,0);-ms-transform:matrix(0.188536,0.003017,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.188536,0.003017,-0.003999,0.249968,0,0);}
.mb5_c01097{transform:matrix(0.188836,0.003021,-0.003999,0.249968,0,0);-ms-transform:matrix(0.188836,0.003021,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.188836,0.003021,-0.003999,0.249968,0,0);}
.m21_c01097{transform:matrix(0.189021,0.003024,-0.003999,0.249968,0,0);-ms-transform:matrix(0.189021,0.003024,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.189021,0.003024,-0.003999,0.249968,0,0);}
.m124_c01097{transform:matrix(0.189126,0.005296,-0.006997,0.249902,0,0);-ms-transform:matrix(0.189126,0.005296,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.189126,0.005296,-0.006997,0.249902,0,0);}
.mf3_c01097{transform:matrix(0.190685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190685,0.000000,0.000000,0.250000,0,0);}
.m2_c01097{transform:matrix(0.191081,0.008033,-0.010501,0.249779,0,0);-ms-transform:matrix(0.191081,0.008033,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.191081,0.008033,-0.010501,0.249779,0,0);}
.m1c_c01097{transform:matrix(0.191465,0.003063,-0.003999,0.249968,0,0);-ms-transform:matrix(0.191465,0.003063,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.191465,0.003063,-0.003999,0.249968,0,0);}
.md2_c01097{transform:matrix(0.191469,0.007475,-0.009752,0.249810,0,0);-ms-transform:matrix(0.191469,0.007475,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.191469,0.007475,-0.009752,0.249810,0,0);}
.mf2_c01097{transform:matrix(0.192170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192170,0.000000,0.000000,0.250000,0,0);}
.m17_c01097{transform:matrix(0.192520,0.003080,-0.003999,0.249968,0,0);-ms-transform:matrix(0.192520,0.003080,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.192520,0.003080,-0.003999,0.249968,0,0);}
.mf0_c01097{transform:matrix(0.193040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193040,0.000000,0.000000,0.250000,0,0);}
.m38_c01097{transform:matrix(0.193105,0.003090,-0.003999,0.249968,0,0);-ms-transform:matrix(0.193105,0.003090,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.193105,0.003090,-0.003999,0.249968,0,0);}
.m121_c01097{transform:matrix(0.194929,0.005458,-0.006997,0.249902,0,0);-ms-transform:matrix(0.194929,0.005458,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.194929,0.005458,-0.006997,0.249902,0,0);}
.mc7_c01097{transform:matrix(0.195611,0.007636,-0.009752,0.249810,0,0);-ms-transform:matrix(0.195611,0.007636,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.195611,0.007636,-0.009752,0.249810,0,0);}
.m6e_c01097{transform:matrix(0.196350,0.003142,-0.003999,0.249968,0,0);-ms-transform:matrix(0.196350,0.003142,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.196350,0.003142,-0.003999,0.249968,0,0);}
.m8a_c01097{transform:matrix(0.196910,0.003151,-0.003999,0.249968,0,0);-ms-transform:matrix(0.196910,0.003151,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.196910,0.003151,-0.003999,0.249968,0,0);}
.m35_c01097{transform:matrix(0.198225,0.003172,-0.003999,0.249968,0,0);-ms-transform:matrix(0.198225,0.003172,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.198225,0.003172,-0.003999,0.249968,0,0);}
.m6f_c01097{transform:matrix(0.198325,0.003173,-0.003999,0.249968,0,0);-ms-transform:matrix(0.198325,0.003173,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.198325,0.003173,-0.003999,0.249968,0,0);}
.m11c_c01097{transform:matrix(0.199392,0.005583,-0.006997,0.249902,0,0);-ms-transform:matrix(0.199392,0.005583,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.199392,0.005583,-0.006997,0.249902,0,0);}
.m122_c01097{transform:matrix(0.200122,0.005603,-0.006997,0.249902,0,0);-ms-transform:matrix(0.200122,0.005603,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.200122,0.005603,-0.006997,0.249902,0,0);}
.m13d_c01097{transform:matrix(0.200247,0.005006,-0.006248,0.249922,0,0);-ms-transform:matrix(0.200247,0.005006,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.200247,0.005006,-0.006248,0.249922,0,0);}
.meb_c01097{transform:matrix(0.201316,0.014538,-0.018007,0.249351,0,0);-ms-transform:matrix(0.201316,0.014538,-0.018007,0.249351,0,0);-webkit-transform:matrix(0.201316,0.014538,-0.018007,0.249351,0,0);}
.m74_c01097{transform:matrix(0.201779,0.003228,-0.003999,0.249968,0,0);-ms-transform:matrix(0.201779,0.003228,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.201779,0.003228,-0.003999,0.249968,0,0);}
.m9a_c01097{transform:matrix(0.202539,0.003241,-0.003999,0.249968,0,0);-ms-transform:matrix(0.202539,0.003241,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.202539,0.003241,-0.003999,0.249968,0,0);}
.mdd_c01097{transform:matrix(0.202676,0.007912,-0.009752,0.249810,0,0);-ms-transform:matrix(0.202676,0.007912,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.202676,0.007912,-0.009752,0.249810,0,0);}
.mc5_c01097{transform:matrix(0.202890,0.007921,-0.009752,0.249810,0,0);-ms-transform:matrix(0.202890,0.007921,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.202890,0.007921,-0.009752,0.249810,0,0);}
.mfd_c01097{transform:matrix(0.203270,0.005692,-0.006997,0.249902,0,0);-ms-transform:matrix(0.203270,0.005692,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.203270,0.005692,-0.006997,0.249902,0,0);}
.m2b_c01097{transform:matrix(0.204169,0.003267,-0.003999,0.249968,0,0);-ms-transform:matrix(0.204169,0.003267,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.204169,0.003267,-0.003999,0.249968,0,0);}
.m44_c01097{transform:matrix(0.205029,0.003280,-0.003999,0.249968,0,0);-ms-transform:matrix(0.205029,0.003280,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.205029,0.003280,-0.003999,0.249968,0,0);}
.mb0_c01097{transform:matrix(0.205484,0.003288,-0.003999,0.249968,0,0);-ms-transform:matrix(0.205484,0.003288,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.205484,0.003288,-0.003999,0.249968,0,0);}
.m140_c01097{transform:matrix(0.207597,0.006228,-0.007497,0.249888,0,0);-ms-transform:matrix(0.207597,0.006228,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.207597,0.006228,-0.007497,0.249888,0,0);}
.m11a_c01097{transform:matrix(0.207884,0.005821,-0.006997,0.249902,0,0);-ms-transform:matrix(0.207884,0.005821,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.207884,0.005821,-0.006997,0.249902,0,0);}
.m116_c01097{transform:matrix(0.207968,0.005823,-0.006997,0.249902,0,0);-ms-transform:matrix(0.207968,0.005823,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.207968,0.005823,-0.006997,0.249902,0,0);}
.m90_c01097{transform:matrix(0.208198,0.003331,-0.003999,0.249968,0,0);-ms-transform:matrix(0.208198,0.003331,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.208198,0.003331,-0.003999,0.249968,0,0);}
.mc8_c01097{transform:matrix(0.209445,0.008177,-0.009752,0.249810,0,0);-ms-transform:matrix(0.209445,0.008177,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.209445,0.008177,-0.009752,0.249810,0,0);}
.m4_c01097{transform:matrix(0.209475,0.008807,-0.010501,0.249779,0,0);-ms-transform:matrix(0.209475,0.008807,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.209475,0.008807,-0.010501,0.249779,0,0);}
.m1a_c01097{transform:matrix(0.210683,0.003371,-0.003999,0.249968,0,0);-ms-transform:matrix(0.210683,0.003371,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.210683,0.003371,-0.003999,0.249968,0,0);}
.mb8_c01097{transform:matrix(0.211056,0.009507,-0.011250,0.249747,0,0);-ms-transform:matrix(0.211056,0.009507,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.211056,0.009507,-0.011250,0.249747,0,0);}
.m43_c01097{transform:matrix(0.211288,0.003381,-0.003999,0.249968,0,0);-ms-transform:matrix(0.211288,0.003381,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.211288,0.003381,-0.003999,0.249968,0,0);}
.m41_c01097{transform:matrix(0.212123,0.003394,-0.003999,0.249968,0,0);-ms-transform:matrix(0.212123,0.003394,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.212123,0.003394,-0.003999,0.249968,0,0);}
.m100_c01097{transform:matrix(0.212517,0.005950,-0.006997,0.249902,0,0);-ms-transform:matrix(0.212517,0.005950,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.212517,0.005950,-0.006997,0.249902,0,0);}
.m1_c01097{transform:matrix(0.212782,0.008946,-0.010501,0.249779,0,0);-ms-transform:matrix(0.212782,0.008946,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.212782,0.008946,-0.010501,0.249779,0,0);}
.m1e_c01097{transform:matrix(0.212873,0.003406,-0.003999,0.249968,0,0);-ms-transform:matrix(0.212873,0.003406,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.212873,0.003406,-0.003999,0.249968,0,0);}
.m16_c01097{transform:matrix(0.213513,0.003416,-0.003999,0.249968,0,0);-ms-transform:matrix(0.213513,0.003416,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.213513,0.003416,-0.003999,0.249968,0,0);}
.m19_c01097{transform:matrix(0.213558,0.003417,-0.003999,0.249968,0,0);-ms-transform:matrix(0.213558,0.003417,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.213558,0.003417,-0.003999,0.249968,0,0);}
.m1b_c01097{transform:matrix(0.213648,0.003418,-0.003999,0.249968,0,0);-ms-transform:matrix(0.213648,0.003418,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.213648,0.003418,-0.003999,0.249968,0,0);}
.m32_c01097{transform:matrix(0.214738,0.003436,-0.003999,0.249968,0,0);-ms-transform:matrix(0.214738,0.003436,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.214738,0.003436,-0.003999,0.249968,0,0);}
.mc9_c01097{transform:matrix(0.216770,0.008462,-0.009752,0.249810,0,0);-ms-transform:matrix(0.216770,0.008462,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.216770,0.008462,-0.009752,0.249810,0,0);}
.m7_c01097{transform:matrix(0.217468,0.009143,-0.010501,0.249779,0,0);-ms-transform:matrix(0.217468,0.009143,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.217468,0.009143,-0.010501,0.249779,0,0);}
.m5b_c01097{transform:matrix(0.217502,0.003480,-0.003999,0.249968,0,0);-ms-transform:matrix(0.217502,0.003480,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.217502,0.003480,-0.003999,0.249968,0,0);}
.m83_c01097{transform:matrix(0.218307,0.003493,-0.003999,0.249968,0,0);-ms-transform:matrix(0.218307,0.003493,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.218307,0.003493,-0.003999,0.249968,0,0);}
.m72_c01097{transform:matrix(0.221517,0.003544,-0.003999,0.249968,0,0);-ms-transform:matrix(0.221517,0.003544,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.221517,0.003544,-0.003999,0.249968,0,0);}
.m102_c01097{transform:matrix(0.221633,0.006206,-0.006997,0.249902,0,0);-ms-transform:matrix(0.221633,0.006206,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.221633,0.006206,-0.006997,0.249902,0,0);}
.m45_c01097{transform:matrix(0.221972,0.003552,-0.003999,0.249968,0,0);-ms-transform:matrix(0.221972,0.003552,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.221972,0.003552,-0.003999,0.249968,0,0);}
.mb7_c01097{transform:matrix(0.222220,0.010010,-0.011250,0.249747,0,0);-ms-transform:matrix(0.222220,0.010010,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.222220,0.010010,-0.011250,0.249747,0,0);}
.ma7_c01097{transform:matrix(0.222986,0.003568,-0.003999,0.249968,0,0);-ms-transform:matrix(0.222986,0.003568,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.222986,0.003568,-0.003999,0.249968,0,0);}
.mcc_c01097{transform:matrix(0.223480,0.008724,-0.009752,0.249810,0,0);-ms-transform:matrix(0.223480,0.008724,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.223480,0.008724,-0.009752,0.249810,0,0);}
.m137_c01097{transform:matrix(0.223540,0.005589,-0.006248,0.249922,0,0);-ms-transform:matrix(0.223540,0.005589,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.223540,0.005589,-0.006248,0.249922,0,0);}
.ma5_c01097{transform:matrix(0.223676,0.003579,-0.003999,0.249968,0,0);-ms-transform:matrix(0.223676,0.003579,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.223676,0.003579,-0.003999,0.249968,0,0);}
.m99_c01097{transform:matrix(0.224351,0.003590,-0.003999,0.249968,0,0);-ms-transform:matrix(0.224351,0.003590,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.224351,0.003590,-0.003999,0.249968,0,0);}
.m112_c01097{transform:matrix(0.224452,0.006285,-0.006997,0.249902,0,0);-ms-transform:matrix(0.224452,0.006285,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.224452,0.006285,-0.006997,0.249902,0,0);}
.m115_c01097{transform:matrix(0.224822,0.006295,-0.006997,0.249902,0,0);-ms-transform:matrix(0.224822,0.006295,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.224822,0.006295,-0.006997,0.249902,0,0);}
.m77_c01097{transform:matrix(0.227961,0.003647,-0.003999,0.249968,0,0);-ms-transform:matrix(0.227961,0.003647,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.227961,0.003647,-0.003999,0.249968,0,0);}
.m53_c01097{transform:matrix(0.228581,0.003657,-0.003999,0.249968,0,0);-ms-transform:matrix(0.228581,0.003657,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.228581,0.003657,-0.003999,0.249968,0,0);}
.m91_c01097{transform:matrix(0.228651,0.003658,-0.003999,0.249968,0,0);-ms-transform:matrix(0.228651,0.003658,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.228651,0.003658,-0.003999,0.249968,0,0);}
.m84_c01097{transform:matrix(0.229711,0.003675,-0.003999,0.249968,0,0);-ms-transform:matrix(0.229711,0.003675,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.229711,0.003675,-0.003999,0.249968,0,0);}
.m3a_c01097{transform:matrix(0.230500,0.003688,-0.003999,0.249968,0,0);-ms-transform:matrix(0.230500,0.003688,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.230500,0.003688,-0.003999,0.249968,0,0);}
.m2d_c01097{transform:matrix(0.230865,0.003694,-0.003999,0.249968,0,0);-ms-transform:matrix(0.230865,0.003694,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.230865,0.003694,-0.003999,0.249968,0,0);}
.m12a_c01097{transform:matrix(0.232047,0.005801,-0.006248,0.249922,0,0);-ms-transform:matrix(0.232047,0.005801,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.232047,0.005801,-0.006248,0.249922,0,0);}
.mde_c01097{transform:matrix(0.232583,0.009080,-0.009752,0.249810,0,0);-ms-transform:matrix(0.232583,0.009080,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.232583,0.009080,-0.009752,0.249810,0,0);}
.m68_c01097{transform:matrix(0.232910,0.003727,-0.003999,0.249968,0,0);-ms-transform:matrix(0.232910,0.003727,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.232910,0.003727,-0.003999,0.249968,0,0);}
.m120_c01097{transform:matrix(0.233319,0.006533,-0.006997,0.249902,0,0);-ms-transform:matrix(0.233319,0.006533,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.233319,0.006533,-0.006997,0.249902,0,0);}
.m85_c01097{transform:matrix(0.234345,0.003750,-0.003999,0.249968,0,0);-ms-transform:matrix(0.234345,0.003750,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.234345,0.003750,-0.003999,0.249968,0,0);}
.m67_c01097{transform:matrix(0.234580,0.003753,-0.003999,0.249968,0,0);-ms-transform:matrix(0.234580,0.003753,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.234580,0.003753,-0.003999,0.249968,0,0);}
.m10d_c01097{transform:matrix(0.235903,0.006605,-0.006997,0.249902,0,0);-ms-transform:matrix(0.235903,0.006605,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.235903,0.006605,-0.006997,0.249902,0,0);}
.m40_c01097{transform:matrix(0.235975,0.003776,-0.003999,0.249968,0,0);-ms-transform:matrix(0.235975,0.003776,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.235975,0.003776,-0.003999,0.249968,0,0);}
.m10f_c01097{transform:matrix(0.236302,0.006616,-0.006997,0.249902,0,0);-ms-transform:matrix(0.236302,0.006616,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.236302,0.006616,-0.006997,0.249902,0,0);}
.m13c_c01097{transform:matrix(0.236786,0.005920,-0.006248,0.249922,0,0);-ms-transform:matrix(0.236786,0.005920,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.236786,0.005920,-0.006248,0.249922,0,0);}
.m93_c01097{transform:matrix(0.236855,0.003790,-0.003999,0.249968,0,0);-ms-transform:matrix(0.236855,0.003790,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.236855,0.003790,-0.003999,0.249968,0,0);}
.m36_c01097{transform:matrix(0.236880,0.003790,-0.003999,0.249968,0,0);-ms-transform:matrix(0.236880,0.003790,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.236880,0.003790,-0.003999,0.249968,0,0);}
.m37_c01097{transform:matrix(0.236995,0.003792,-0.003999,0.249968,0,0);-ms-transform:matrix(0.236995,0.003792,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.236995,0.003792,-0.003999,0.249968,0,0);}
.m13a_c01097{transform:matrix(0.237271,0.005932,-0.006248,0.249922,0,0);-ms-transform:matrix(0.237271,0.005932,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.237271,0.005932,-0.006248,0.249922,0,0);}
.ma_c01097{transform:matrix(0.237277,0.004508,-0.004749,0.249955,0,0);-ms-transform:matrix(0.237277,0.004508,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.237277,0.004508,-0.004749,0.249955,0,0);}
.m92_c01097{transform:matrix(0.237750,0.003804,-0.003999,0.249968,0,0);-ms-transform:matrix(0.237750,0.003804,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.237750,0.003804,-0.003999,0.249968,0,0);}
.m11d_c01097{transform:matrix(0.237832,0.006659,-0.006997,0.249902,0,0);-ms-transform:matrix(0.237832,0.006659,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.237832,0.006659,-0.006997,0.249902,0,0);}
.m2a_c01097{transform:matrix(0.239974,0.003840,-0.003999,0.249968,0,0);-ms-transform:matrix(0.239974,0.003840,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.239974,0.003840,-0.003999,0.249968,0,0);}
.m2e_c01097{transform:matrix(0.241899,0.003870,-0.003999,0.249968,0,0);-ms-transform:matrix(0.241899,0.003870,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.241899,0.003870,-0.003999,0.249968,0,0);}
.me3_c01097{transform:matrix(0.242995,0.009486,-0.009752,0.249810,0,0);-ms-transform:matrix(0.242995,0.009486,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.242995,0.009486,-0.009752,0.249810,0,0);}
.m26_c01097{transform:matrix(0.243069,0.003889,-0.003999,0.249968,0,0);-ms-transform:matrix(0.243069,0.003889,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.243069,0.003889,-0.003999,0.249968,0,0);}
.m30_c01097{transform:matrix(0.243614,0.003898,-0.003999,0.249968,0,0);-ms-transform:matrix(0.243614,0.003898,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.243614,0.003898,-0.003999,0.249968,0,0);}
.ma6_c01097{transform:matrix(0.243874,0.003902,-0.003999,0.249968,0,0);-ms-transform:matrix(0.243874,0.003902,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.243874,0.003902,-0.003999,0.249968,0,0);}
.mfb_c01097{transform:matrix(0.243999,0.006832,-0.006997,0.249902,0,0);-ms-transform:matrix(0.243999,0.006832,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.243999,0.006832,-0.006997,0.249902,0,0);}
.m34_c01097{transform:matrix(0.245009,0.003920,-0.003999,0.249968,0,0);-ms-transform:matrix(0.245009,0.003920,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.245009,0.003920,-0.003999,0.249968,0,0);}
.m4b_c01097{transform:matrix(0.245434,0.003927,-0.003999,0.249968,0,0);-ms-transform:matrix(0.245434,0.003927,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.245434,0.003927,-0.003999,0.249968,0,0);}
.m136_c01097{transform:matrix(0.245583,0.006140,-0.006248,0.249922,0,0);-ms-transform:matrix(0.245583,0.006140,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.245583,0.006140,-0.006248,0.249922,0,0);}
.m10c_c01097{transform:matrix(0.246563,0.006904,-0.006997,0.249902,0,0);-ms-transform:matrix(0.246563,0.006904,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.246563,0.006904,-0.006997,0.249902,0,0);}
.m12c_c01097{transform:matrix(0.246948,0.006174,-0.006248,0.249922,0,0);-ms-transform:matrix(0.246948,0.006174,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.246948,0.006174,-0.006248,0.249922,0,0);}
.m10e_c01097{transform:matrix(0.247618,0.006933,-0.006997,0.249902,0,0);-ms-transform:matrix(0.247618,0.006933,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.247618,0.006933,-0.006997,0.249902,0,0);}
.m119_c01097{transform:matrix(0.248038,0.006945,-0.006997,0.249902,0,0);-ms-transform:matrix(0.248038,0.006945,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.248038,0.006945,-0.006997,0.249902,0,0);}
.m69_c01097{transform:matrix(0.248528,0.003976,-0.003999,0.249968,0,0);-ms-transform:matrix(0.248528,0.003976,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.248528,0.003976,-0.003999,0.249968,0,0);}
.mcb_c01097{transform:matrix(0.249915,0.009756,-0.009752,0.249810,0,0);-ms-transform:matrix(0.249915,0.009756,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.249915,0.009756,-0.009752,0.249810,0,0);}
.m12f_c01097{transform:matrix(0.250307,0.006258,-0.006248,0.249922,0,0);-ms-transform:matrix(0.250307,0.006258,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.250307,0.006258,-0.006248,0.249922,0,0);}
.m110_c01097{transform:matrix(0.251317,0.007037,-0.006997,0.249902,0,0);-ms-transform:matrix(0.251317,0.007037,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.251317,0.007037,-0.006997,0.249902,0,0);}
.ma3_c01097{transform:matrix(0.251863,0.004030,-0.003999,0.249968,0,0);-ms-transform:matrix(0.251863,0.004030,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.251863,0.004030,-0.003999,0.249968,0,0);}
.m12b_c01097{transform:matrix(0.251961,0.006299,-0.006248,0.249922,0,0);-ms-transform:matrix(0.251961,0.006299,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.251961,0.006299,-0.006248,0.249922,0,0);}
.m130_c01097{transform:matrix(0.252191,0.006305,-0.006248,0.249922,0,0);-ms-transform:matrix(0.252191,0.006305,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.252191,0.006305,-0.006248,0.249922,0,0);}
.m128_c01097{transform:matrix(0.252351,0.006309,-0.006248,0.249922,0,0);-ms-transform:matrix(0.252351,0.006309,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.252351,0.006309,-0.006248,0.249922,0,0);}
.mfe_c01097{transform:matrix(0.252911,0.007082,-0.006997,0.249902,0,0);-ms-transform:matrix(0.252911,0.007082,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.252911,0.007082,-0.006997,0.249902,0,0);}
.m131_c01097{transform:matrix(0.253136,0.006328,-0.006248,0.249922,0,0);-ms-transform:matrix(0.253136,0.006328,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.253136,0.006328,-0.006248,0.249922,0,0);}
.m33_c01097{transform:matrix(0.253148,0.004050,-0.003999,0.249968,0,0);-ms-transform:matrix(0.253148,0.004050,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.253148,0.004050,-0.003999,0.249968,0,0);}
.m13b_c01097{transform:matrix(0.253186,0.006330,-0.006248,0.249922,0,0);-ms-transform:matrix(0.253186,0.006330,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.253186,0.006330,-0.006248,0.249922,0,0);}
.m71_c01097{transform:matrix(0.253798,0.004061,-0.003999,0.249968,0,0);-ms-transform:matrix(0.253798,0.004061,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.253798,0.004061,-0.003999,0.249968,0,0);}
.m3e_c01097{transform:matrix(0.254352,0.004070,-0.003999,0.249968,0,0);-ms-transform:matrix(0.254352,0.004070,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.254352,0.004070,-0.003999,0.249968,0,0);}
.m103_c01097{transform:matrix(0.254535,0.007127,-0.006997,0.249902,0,0);-ms-transform:matrix(0.254535,0.007127,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.254535,0.007127,-0.006997,0.249902,0,0);}
.mcd_c01097{transform:matrix(0.254746,0.009945,-0.009752,0.249810,0,0);-ms-transform:matrix(0.254746,0.009945,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.254746,0.009945,-0.009752,0.249810,0,0);}
.ma1_c01097{transform:matrix(0.255337,0.004085,-0.003999,0.249968,0,0);-ms-transform:matrix(0.255337,0.004085,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.255337,0.004085,-0.003999,0.249968,0,0);}
.m113_c01097{transform:matrix(0.255455,0.007153,-0.006997,0.249902,0,0);-ms-transform:matrix(0.255455,0.007153,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.255455,0.007153,-0.006997,0.249902,0,0);}
.mca_c01097{transform:matrix(0.255610,0.009979,-0.009752,0.249810,0,0);-ms-transform:matrix(0.255610,0.009979,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.255610,0.009979,-0.009752,0.249810,0,0);}
.m8e_c01097{transform:matrix(0.255842,0.004093,-0.003999,0.249968,0,0);-ms-transform:matrix(0.255842,0.004093,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.255842,0.004093,-0.003999,0.249968,0,0);}
.m139_c01097{transform:matrix(0.257310,0.006433,-0.006248,0.249922,0,0);-ms-transform:matrix(0.257310,0.006433,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.257310,0.006433,-0.006248,0.249922,0,0);}
.m39_c01097{transform:matrix(0.257617,0.004122,-0.003999,0.249968,0,0);-ms-transform:matrix(0.257617,0.004122,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.257617,0.004122,-0.003999,0.249968,0,0);}
.ma4_c01097{transform:matrix(0.259082,0.004145,-0.003999,0.249968,0,0);-ms-transform:matrix(0.259082,0.004145,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.259082,0.004145,-0.003999,0.249968,0,0);}
.m6d_c01097{transform:matrix(0.259782,0.004157,-0.003999,0.249968,0,0);-ms-transform:matrix(0.259782,0.004157,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.259782,0.004157,-0.003999,0.249968,0,0);}
.m5e_c01097{transform:matrix(0.261232,0.004180,-0.003999,0.249968,0,0);-ms-transform:matrix(0.261232,0.004180,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.261232,0.004180,-0.003999,0.249968,0,0);}
.m135_c01097{transform:matrix(0.261573,0.006539,-0.006248,0.249922,0,0);-ms-transform:matrix(0.261573,0.006539,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.261573,0.006539,-0.006248,0.249922,0,0);}
.m12_c01097{transform:matrix(0.263063,0.004998,-0.004749,0.249955,0,0);-ms-transform:matrix(0.263063,0.004998,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.263063,0.004998,-0.004749,0.249955,0,0);}
.m2f_c01097{transform:matrix(0.263276,0.004212,-0.003999,0.249968,0,0);-ms-transform:matrix(0.263276,0.004212,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.263276,0.004212,-0.003999,0.249968,0,0);}
.m117_c01097{transform:matrix(0.263752,0.007385,-0.006997,0.249902,0,0);-ms-transform:matrix(0.263752,0.007385,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.263752,0.007385,-0.006997,0.249902,0,0);}
.mf9_c01097{transform:matrix(0.265896,0.007445,-0.006997,0.249902,0,0);-ms-transform:matrix(0.265896,0.007445,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.265896,0.007445,-0.006997,0.249902,0,0);}
.m8b_c01097{transform:matrix(0.266351,0.004262,-0.003999,0.249968,0,0);-ms-transform:matrix(0.266351,0.004262,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.266351,0.004262,-0.003999,0.249968,0,0);}
.ma2_c01097{transform:matrix(0.266446,0.004263,-0.003999,0.249968,0,0);-ms-transform:matrix(0.266446,0.004263,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.266446,0.004263,-0.003999,0.249968,0,0);}
.m61_c01097{transform:matrix(0.267516,0.004280,-0.003999,0.249968,0,0);-ms-transform:matrix(0.267516,0.004280,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.267516,0.004280,-0.003999,0.249968,0,0);}
.mdc_c01097{transform:matrix(0.267881,0.010458,-0.009752,0.249810,0,0);-ms-transform:matrix(0.267881,0.010458,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.267881,0.010458,-0.009752,0.249810,0,0);}
.m60_c01097{transform:matrix(0.268556,0.004297,-0.003999,0.249968,0,0);-ms-transform:matrix(0.268556,0.004297,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.268556,0.004297,-0.003999,0.249968,0,0);}
.m81_c01097{transform:matrix(0.269051,0.004305,-0.003999,0.249968,0,0);-ms-transform:matrix(0.269051,0.004305,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.269051,0.004305,-0.003999,0.249968,0,0);}
.m82_c01097{transform:matrix(0.269266,0.004308,-0.003999,0.249968,0,0);-ms-transform:matrix(0.269266,0.004308,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.269266,0.004308,-0.003999,0.249968,0,0);}
.m12e_c01097{transform:matrix(0.270221,0.006756,-0.006248,0.249922,0,0);-ms-transform:matrix(0.270221,0.006756,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.270221,0.006756,-0.006248,0.249922,0,0);}
.m49_c01097{transform:matrix(0.270620,0.004330,-0.003999,0.249968,0,0);-ms-transform:matrix(0.270620,0.004330,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.270620,0.004330,-0.003999,0.249968,0,0);}
.md6_c01097{transform:matrix(0.270799,0.010572,-0.009752,0.249810,0,0);-ms-transform:matrix(0.270799,0.010572,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.270799,0.010572,-0.009752,0.249810,0,0);}
.md_c01097{transform:matrix(0.271116,0.005151,-0.004749,0.249955,0,0);-ms-transform:matrix(0.271116,0.005151,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.271116,0.005151,-0.004749,0.249955,0,0);}
.m138_c01097{transform:matrix(0.271385,0.006785,-0.006248,0.249922,0,0);-ms-transform:matrix(0.271385,0.006785,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.271385,0.006785,-0.006248,0.249922,0,0);}
.m14_c01097{transform:matrix(0.272446,0.005176,-0.004749,0.249955,0,0);-ms-transform:matrix(0.272446,0.005176,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.272446,0.005176,-0.004749,0.249955,0,0);}
.md0_c01097{transform:matrix(0.273991,0.010696,-0.009752,0.249810,0,0);-ms-transform:matrix(0.273991,0.010696,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.273991,0.010696,-0.009752,0.249810,0,0);}
.m2c_c01097{transform:matrix(0.276540,0.004425,-0.003999,0.249968,0,0);-ms-transform:matrix(0.276540,0.004425,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.276540,0.004425,-0.003999,0.249968,0,0);}
.m4c_c01097{transform:matrix(0.277504,0.004440,-0.003999,0.249968,0,0);-ms-transform:matrix(0.277504,0.004440,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.277504,0.004440,-0.003999,0.249968,0,0);}
.m7d_c01097{transform:matrix(0.279909,0.004479,-0.003999,0.249968,0,0);-ms-transform:matrix(0.279909,0.004479,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.279909,0.004479,-0.003999,0.249968,0,0);}
.m5f_c01097{transform:matrix(0.281394,0.004502,-0.003999,0.249968,0,0);-ms-transform:matrix(0.281394,0.004502,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.281394,0.004502,-0.003999,0.249968,0,0);}
.m28_c01097{transform:matrix(0.282729,0.004524,-0.003999,0.249968,0,0);-ms-transform:matrix(0.282729,0.004524,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.282729,0.004524,-0.003999,0.249968,0,0);}
.m132_c01097{transform:matrix(0.283536,0.007088,-0.006248,0.249922,0,0);-ms-transform:matrix(0.283536,0.007088,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.283536,0.007088,-0.006248,0.249922,0,0);}
.mfc_c01097{transform:matrix(0.284264,0.007959,-0.006997,0.249902,0,0);-ms-transform:matrix(0.284264,0.007959,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.284264,0.007959,-0.006997,0.249902,0,0);}
.m4a_c01097{transform:matrix(0.285943,0.004575,-0.003999,0.249968,0,0);-ms-transform:matrix(0.285943,0.004575,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.285943,0.004575,-0.003999,0.249968,0,0);}
.m3f_c01097{transform:matrix(0.286023,0.004576,-0.003999,0.249968,0,0);-ms-transform:matrix(0.286023,0.004576,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.286023,0.004576,-0.003999,0.249968,0,0);}
.mbd_c01097{transform:matrix(0.287508,0.012951,-0.011250,0.249747,0,0);-ms-transform:matrix(0.287508,0.012951,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.287508,0.012951,-0.011250,0.249747,0,0);}
.m8_c01097{transform:matrix(0.287876,0.012103,-0.010501,0.249779,0,0);-ms-transform:matrix(0.287876,0.012103,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.287876,0.012103,-0.010501,0.249779,0,0);}
.m24_c01097{transform:matrix(0.288128,0.004610,-0.003999,0.249968,0,0);-ms-transform:matrix(0.288128,0.004610,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.288128,0.004610,-0.003999,0.249968,0,0);}
.m27_c01097{transform:matrix(0.289123,0.004626,-0.003999,0.249968,0,0);-ms-transform:matrix(0.289123,0.004626,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.289123,0.004626,-0.003999,0.249968,0,0);}
.m98_c01097{transform:matrix(0.289803,0.004637,-0.003999,0.249968,0,0);-ms-transform:matrix(0.289803,0.004637,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.289803,0.004637,-0.003999,0.249968,0,0);}
.mc0_c01097{transform:matrix(0.290111,0.013068,-0.011250,0.249747,0,0);-ms-transform:matrix(0.290111,0.013068,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.290111,0.013068,-0.011250,0.249747,0,0);}
.m8d_c01097{transform:matrix(0.290933,0.004655,-0.003999,0.249968,0,0);-ms-transform:matrix(0.290933,0.004655,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.290933,0.004655,-0.003999,0.249968,0,0);}
.me6_c01097{transform:matrix(0.291755,0.021070,-0.018007,0.249351,0,0);-ms-transform:matrix(0.291755,0.021070,-0.018007,0.249351,0,0);-webkit-transform:matrix(0.291755,0.021070,-0.018007,0.249351,0,0);}
.mfa_c01097{transform:matrix(0.292200,0.008182,-0.006997,0.249902,0,0);-ms-transform:matrix(0.292200,0.008182,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.292200,0.008182,-0.006997,0.249902,0,0);}
.me_c01097{transform:matrix(0.293007,0.005567,-0.004749,0.249955,0,0);-ms-transform:matrix(0.293007,0.005567,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.293007,0.005567,-0.004749,0.249955,0,0);}
.m29_c01097{transform:matrix(0.293412,0.004695,-0.003999,0.249968,0,0);-ms-transform:matrix(0.293412,0.004695,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.293412,0.004695,-0.003999,0.249968,0,0);}
.mb_c01097{transform:matrix(0.294547,0.005596,-0.004749,0.249955,0,0);-ms-transform:matrix(0.294547,0.005596,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.294547,0.005596,-0.004749,0.249955,0,0);}
.m9_c01097{transform:matrix(0.295037,0.005606,-0.004749,0.249955,0,0);-ms-transform:matrix(0.295037,0.005606,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.295037,0.005606,-0.004749,0.249955,0,0);}
.m65_c01097{transform:matrix(0.296667,0.004747,-0.003999,0.249968,0,0);-ms-transform:matrix(0.296667,0.004747,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.296667,0.004747,-0.003999,0.249968,0,0);}
.m31_c01097{transform:matrix(0.297352,0.004758,-0.003999,0.249968,0,0);-ms-transform:matrix(0.297352,0.004758,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.297352,0.004758,-0.003999,0.249968,0,0);}
.mff_c01097{transform:matrix(0.297513,0.008330,-0.006997,0.249902,0,0);-ms-transform:matrix(0.297513,0.008330,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.297513,0.008330,-0.006997,0.249902,0,0);}
.me9_c01097{transform:matrix(0.300632,0.021711,-0.018007,0.249351,0,0);-ms-transform:matrix(0.300632,0.021711,-0.018007,0.249351,0,0);-webkit-transform:matrix(0.300632,0.021711,-0.018007,0.249351,0,0);}
.m58_c01097{transform:matrix(0.300826,0.004813,-0.003999,0.249968,0,0);-ms-transform:matrix(0.300826,0.004813,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.300826,0.004813,-0.003999,0.249968,0,0);}
.m50_c01097{transform:matrix(0.304416,0.004871,-0.003999,0.249968,0,0);-ms-transform:matrix(0.304416,0.004871,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.304416,0.004871,-0.003999,0.249968,0,0);}
.m141_c01097{transform:matrix(0.305548,0.009166,-0.007497,0.249888,0,0);-ms-transform:matrix(0.305548,0.009166,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.305548,0.009166,-0.007497,0.249888,0,0);}
.m134_c01097{transform:matrix(0.308124,0.007703,-0.006248,0.249922,0,0);-ms-transform:matrix(0.308124,0.007703,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.308124,0.007703,-0.006248,0.249922,0,0);}
.m7f_c01097{transform:matrix(0.308261,0.004932,-0.003999,0.249968,0,0);-ms-transform:matrix(0.308261,0.004932,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.308261,0.004932,-0.003999,0.249968,0,0);}
.md7_c01097{transform:matrix(0.309994,0.012102,-0.009752,0.249810,0,0);-ms-transform:matrix(0.309994,0.012102,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.309994,0.012102,-0.009752,0.249810,0,0);}
.m25_c01097{transform:matrix(0.310310,0.004965,-0.003999,0.249968,0,0);-ms-transform:matrix(0.310310,0.004965,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.310310,0.004965,-0.003999,0.249968,0,0);}
.m5d_c01097{transform:matrix(0.310400,0.004966,-0.003999,0.249968,0,0);-ms-transform:matrix(0.310400,0.004966,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.310400,0.004966,-0.003999,0.249968,0,0);}
.m6c_c01097{transform:matrix(0.314045,0.005025,-0.003999,0.249968,0,0);-ms-transform:matrix(0.314045,0.005025,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.314045,0.005025,-0.003999,0.249968,0,0);}
.m133_c01097{transform:matrix(0.316696,0.007917,-0.006248,0.249922,0,0);-ms-transform:matrix(0.316696,0.007917,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.316696,0.007917,-0.006248,0.249922,0,0);}
.m80_c01097{transform:matrix(0.318184,0.005091,-0.003999,0.249968,0,0);-ms-transform:matrix(0.318184,0.005091,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.318184,0.005091,-0.003999,0.249968,0,0);}
.m15_c01097{transform:matrix(0.319139,0.005106,-0.003999,0.249968,0,0);-ms-transform:matrix(0.319139,0.005106,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.319139,0.005106,-0.003999,0.249968,0,0);}
.mec_c01097{transform:matrix(0.319812,0.023096,-0.018007,0.249351,0,0);-ms-transform:matrix(0.319812,0.023096,-0.018007,0.249351,0,0);-webkit-transform:matrix(0.319812,0.023096,-0.018007,0.249351,0,0);}
.mbc_c01097{transform:matrix(0.325150,0.014646,-0.011250,0.249747,0,0);-ms-transform:matrix(0.325150,0.014646,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.325150,0.014646,-0.011250,0.249747,0,0);}
.m79_c01097{transform:matrix(0.328103,0.005250,-0.003999,0.249968,0,0);-ms-transform:matrix(0.328103,0.005250,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.328103,0.005250,-0.003999,0.249968,0,0);}
.mc6_c01097{transform:matrix(0.330913,0.012919,-0.009752,0.249810,0,0);-ms-transform:matrix(0.330913,0.012919,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.330913,0.012919,-0.009752,0.249810,0,0);}
.m95_c01097{transform:matrix(0.334107,0.005346,-0.003999,0.249968,0,0);-ms-transform:matrix(0.334107,0.005346,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.334107,0.005346,-0.003999,0.249968,0,0);}
.m5c_c01097{transform:matrix(0.337627,0.005402,-0.003999,0.249968,0,0);-ms-transform:matrix(0.337627,0.005402,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.337627,0.005402,-0.003999,0.249968,0,0);}
.m12d_c01097{transform:matrix(0.337744,0.008444,-0.006248,0.249922,0,0);-ms-transform:matrix(0.337744,0.008444,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.337744,0.008444,-0.006248,0.249922,0,0);}
.m129_c01097{transform:matrix(0.338229,0.008456,-0.006248,0.249922,0,0);-ms-transform:matrix(0.338229,0.008456,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.338229,0.008456,-0.006248,0.249922,0,0);}
.m10_c01097{transform:matrix(0.338239,0.006427,-0.004749,0.249955,0,0);-ms-transform:matrix(0.338239,0.006427,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.338239,0.006427,-0.004749,0.249955,0,0);}
.m142_c01097{transform:matrix(0.339712,0.010191,-0.007497,0.249888,0,0);-ms-transform:matrix(0.339712,0.010191,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.339712,0.010191,-0.007497,0.249888,0,0);}
.m11_c01097{transform:matrix(0.341343,0.006486,-0.004749,0.249955,0,0);-ms-transform:matrix(0.341343,0.006486,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.341343,0.006486,-0.004749,0.249955,0,0);}
.m86_c01097{transform:matrix(0.342016,0.005472,-0.003999,0.249968,0,0);-ms-transform:matrix(0.342016,0.005472,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.342016,0.005472,-0.003999,0.249968,0,0);}
.m13_c01097{transform:matrix(0.342478,0.006507,-0.004749,0.249955,0,0);-ms-transform:matrix(0.342478,0.006507,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.342478,0.006507,-0.004749,0.249955,0,0);}
.m87_c01097{transform:matrix(0.348235,0.005572,-0.003999,0.249968,0,0);-ms-transform:matrix(0.348235,0.005572,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.348235,0.005572,-0.003999,0.249968,0,0);}
.mc1_c01097{transform:matrix(0.348302,0.015689,-0.011250,0.249747,0,0);-ms-transform:matrix(0.348302,0.015689,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.348302,0.015689,-0.011250,0.249747,0,0);}
.m64_c01097{transform:matrix(0.351555,0.005625,-0.003999,0.249968,0,0);-ms-transform:matrix(0.351555,0.005625,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.351555,0.005625,-0.003999,0.249968,0,0);}
.me7_c01097{transform:matrix(0.353629,0.025538,-0.018007,0.249351,0,0);-ms-transform:matrix(0.353629,0.025538,-0.018007,0.249351,0,0);-webkit-transform:matrix(0.353629,0.025538,-0.018007,0.249351,0,0);}
.m48_c01097{transform:matrix(0.355405,0.005686,-0.003999,0.249968,0,0);-ms-transform:matrix(0.355405,0.005686,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.355405,0.005686,-0.003999,0.249968,0,0);}
.m57_c01097{transform:matrix(0.358349,0.005734,-0.003999,0.249968,0,0);-ms-transform:matrix(0.358349,0.005734,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.358349,0.005734,-0.003999,0.249968,0,0);}
.m3c_c01097{transform:matrix(0.358989,0.005744,-0.003999,0.249968,0,0);-ms-transform:matrix(0.358989,0.005744,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.358989,0.005744,-0.003999,0.249968,0,0);}
.mc_c01097{transform:matrix(0.363939,0.006915,-0.004749,0.249955,0,0);-ms-transform:matrix(0.363939,0.006915,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.363939,0.006915,-0.004749,0.249955,0,0);}
.m9d_c01097{transform:matrix(0.367903,0.005886,-0.003999,0.249968,0,0);-ms-transform:matrix(0.367903,0.005886,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.367903,0.005886,-0.003999,0.249968,0,0);}
.mf_c01097{transform:matrix(0.368793,0.007007,-0.004749,0.249955,0,0);-ms-transform:matrix(0.368793,0.007007,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.368793,0.007007,-0.004749,0.249955,0,0);}
.m42_c01097{transform:matrix(0.369523,0.005912,-0.003999,0.249968,0,0);-ms-transform:matrix(0.369523,0.005912,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.369523,0.005912,-0.003999,0.249968,0,0);}
.m70_c01097{transform:matrix(0.369758,0.005916,-0.003999,0.249968,0,0);-ms-transform:matrix(0.369758,0.005916,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.369758,0.005916,-0.003999,0.249968,0,0);}
.m106_c01097{transform:matrix(0.369955,0.010359,-0.006997,0.249902,0,0);-ms-transform:matrix(0.369955,0.010359,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.369955,0.010359,-0.006997,0.249902,0,0);}
.m3d_c01097{transform:matrix(0.369988,0.005920,-0.003999,0.249968,0,0);-ms-transform:matrix(0.369988,0.005920,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.369988,0.005920,-0.003999,0.249968,0,0);}
.md5_c01097{transform:matrix(0.370678,0.014471,-0.009752,0.249810,0,0);-ms-transform:matrix(0.370678,0.014471,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.370678,0.014471,-0.009752,0.249810,0,0);}
.m7b_c01097{transform:matrix(0.376522,0.006024,-0.003999,0.249968,0,0);-ms-transform:matrix(0.376522,0.006024,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.376522,0.006024,-0.003999,0.249968,0,0);}
.mb9_c01097{transform:matrix(0.379091,0.017076,-0.011250,0.249747,0,0);-ms-transform:matrix(0.379091,0.017076,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.379091,0.017076,-0.011250,0.249747,0,0);}
.m127_c01097{transform:matrix(0.379386,0.009485,-0.006248,0.249922,0,0);-ms-transform:matrix(0.379386,0.009485,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.379386,0.009485,-0.006248,0.249922,0,0);}
.mf1_c01097{transform:matrix(0.381840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381840,0.000000,0.000000,0.250000,0,0);}
.mce_c01097{transform:matrix(0.382783,0.014943,-0.009752,0.249810,0,0);-ms-transform:matrix(0.382783,0.014943,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.382783,0.014943,-0.009752,0.249810,0,0);}
.m118_c01097{transform:matrix(0.384369,0.010762,-0.006997,0.249902,0,0);-ms-transform:matrix(0.384369,0.010762,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.384369,0.010762,-0.006997,0.249902,0,0);}
.mae_c01097{transform:matrix(0.391275,0.006260,-0.003999,0.249968,0,0);-ms-transform:matrix(0.391275,0.006260,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.391275,0.006260,-0.003999,0.249968,0,0);}
.m3_c01097{transform:matrix(0.391494,0.016459,-0.010501,0.249779,0,0);-ms-transform:matrix(0.391494,0.016459,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.391494,0.016459,-0.010501,0.249779,0,0);}
.m97_c01097{transform:matrix(0.394819,0.006317,-0.003999,0.249968,0,0);-ms-transform:matrix(0.394819,0.006317,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.394819,0.006317,-0.003999,0.249968,0,0);}
.ma0_c01097{transform:matrix(0.395164,0.006323,-0.003999,0.249968,0,0);-ms-transform:matrix(0.395164,0.006323,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.395164,0.006323,-0.003999,0.249968,0,0);}
.m3b_c01097{transform:matrix(0.396189,0.006339,-0.003999,0.249968,0,0);-ms-transform:matrix(0.396189,0.006339,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.396189,0.006339,-0.003999,0.249968,0,0);}
.m89_c01097{transform:matrix(0.396859,0.006350,-0.003999,0.249968,0,0);-ms-transform:matrix(0.396859,0.006350,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.396859,0.006350,-0.003999,0.249968,0,0);}
.m109_c01097{transform:matrix(0.397964,0.011143,-0.006997,0.249902,0,0);-ms-transform:matrix(0.397964,0.011143,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.397964,0.011143,-0.006997,0.249902,0,0);}
.me5_c01097{transform:matrix(0.401360,0.028985,-0.018007,0.249351,0,0);-ms-transform:matrix(0.401360,0.028985,-0.018007,0.249351,0,0);-webkit-transform:matrix(0.401360,0.028985,-0.018007,0.249351,0,0);}
.m47_c01097{transform:matrix(0.409248,0.006548,-0.003999,0.249968,0,0);-ms-transform:matrix(0.409248,0.006548,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.409248,0.006548,-0.003999,0.249968,0,0);}
.m105_c01097{transform:matrix(0.409679,0.011471,-0.006997,0.249902,0,0);-ms-transform:matrix(0.409679,0.011471,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.409679,0.011471,-0.006997,0.249902,0,0);}
.m7c_c01097{transform:matrix(0.414457,0.006631,-0.003999,0.249968,0,0);-ms-transform:matrix(0.414457,0.006631,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.414457,0.006631,-0.003999,0.249968,0,0);}
.m23_c01097{transform:matrix(0.414832,0.006637,-0.003999,0.249968,0,0);-ms-transform:matrix(0.414832,0.006637,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.414832,0.006637,-0.003999,0.249968,0,0);}
.m9f_c01097{transform:matrix(0.415007,0.006640,-0.003999,0.249968,0,0);-ms-transform:matrix(0.415007,0.006640,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.415007,0.006640,-0.003999,0.249968,0,0);}
.ma8_c01097{transform:matrix(0.417887,0.006686,-0.003999,0.249968,0,0);-ms-transform:matrix(0.417887,0.006686,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.417887,0.006686,-0.003999,0.249968,0,0);}
.m56_c01097{transform:matrix(0.423306,0.006773,-0.003999,0.249968,0,0);-ms-transform:matrix(0.423306,0.006773,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.423306,0.006773,-0.003999,0.249968,0,0);}
.m66_c01097{transform:matrix(0.428945,0.006863,-0.003999,0.249968,0,0);-ms-transform:matrix(0.428945,0.006863,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.428945,0.006863,-0.003999,0.249968,0,0);}
.maa_c01097{transform:matrix(0.429380,0.006870,-0.003999,0.249968,0,0);-ms-transform:matrix(0.429380,0.006870,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.429380,0.006870,-0.003999,0.249968,0,0);}
.mc4_c01097{transform:matrix(0.445426,0.017389,-0.009752,0.249810,0,0);-ms-transform:matrix(0.445426,0.017389,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.445426,0.017389,-0.009752,0.249810,0,0);}
.m108_c01097{transform:matrix(0.450204,0.012606,-0.006997,0.249902,0,0);-ms-transform:matrix(0.450204,0.012606,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.450204,0.012606,-0.006997,0.249902,0,0);}
.mf5_c01097{transform:matrix(0.455285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455285,0.000000,0.000000,0.250000,0,0);}
.mf7_c01097{transform:matrix(0.456221,0.012774,-0.006997,0.249902,0,0);-ms-transform:matrix(0.456221,0.012774,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.456221,0.012774,-0.006997,0.249902,0,0);}
.m88_c01097{transform:matrix(0.463476,0.007416,-0.003999,0.249968,0,0);-ms-transform:matrix(0.463476,0.007416,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.463476,0.007416,-0.003999,0.249968,0,0);}
.md8_c01097{transform:matrix(0.466570,0.018214,-0.009752,0.249810,0,0);-ms-transform:matrix(0.466570,0.018214,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.466570,0.018214,-0.009752,0.249810,0,0);}
.m5_c01097{transform:matrix(0.473467,0.019906,-0.010501,0.249779,0,0);-ms-transform:matrix(0.473467,0.019906,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.473467,0.019906,-0.010501,0.249779,0,0);}
.m13f_c01097{transform:matrix(0.473467,0.011837,-0.006248,0.249922,0,0);-ms-transform:matrix(0.473467,0.011837,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.473467,0.011837,-0.006248,0.249922,0,0);}
.me2_c01097{transform:matrix(0.474698,0.018532,-0.009752,0.249810,0,0);-ms-transform:matrix(0.474698,0.018532,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.474698,0.018532,-0.009752,0.249810,0,0);}
.mbb_c01097{transform:matrix(0.477796,0.021522,-0.011250,0.249747,0,0);-ms-transform:matrix(0.477796,0.021522,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.477796,0.021522,-0.011250,0.249747,0,0);}
.m104_c01097{transform:matrix(0.484440,0.013564,-0.006997,0.249902,0,0);-ms-transform:matrix(0.484440,0.013564,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.484440,0.013564,-0.006997,0.249902,0,0);}
.m51_c01097{transform:matrix(0.485673,0.007771,-0.003999,0.249968,0,0);-ms-transform:matrix(0.485673,0.007771,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.485673,0.007771,-0.003999,0.249968,0,0);}
.m125_c01097{transform:matrix(0.487838,0.012196,-0.006248,0.249922,0,0);-ms-transform:matrix(0.487838,0.012196,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.487838,0.012196,-0.006248,0.249922,0,0);}
.m63_c01097{transform:matrix(0.488727,0.007820,-0.003999,0.249968,0,0);-ms-transform:matrix(0.488727,0.007820,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.488727,0.007820,-0.003999,0.249968,0,0);}
.m9e_c01097{transform:matrix(0.492897,0.007886,-0.003999,0.249968,0,0);-ms-transform:matrix(0.492897,0.007886,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.492897,0.007886,-0.003999,0.249968,0,0);}
.m144_c01097{transform:matrix(0.497546,0.014926,-0.007497,0.249888,0,0);-ms-transform:matrix(0.497546,0.014926,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.497546,0.014926,-0.007497,0.249888,0,0);}
.m8c_c01097{transform:matrix(0.505585,0.008089,-0.003999,0.249968,0,0);-ms-transform:matrix(0.505585,0.008089,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.505585,0.008089,-0.003999,0.249968,0,0);}
.mef_c01097{transform:matrix(0.513742,0.037101,-0.018007,0.249351,0,0);-ms-transform:matrix(0.513742,0.037101,-0.018007,0.249351,0,0);-webkit-transform:matrix(0.513742,0.037101,-0.018007,0.249351,0,0);}
.mf4_c01097{transform:matrix(0.532330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532330,0.000000,0.000000,0.250000,0,0);}
.mba_c01097{transform:matrix(0.536046,0.024146,-0.011250,0.249747,0,0);-ms-transform:matrix(0.536046,0.024146,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.536046,0.024146,-0.011250,0.249747,0,0);}
.m8f_c01097{transform:matrix(0.541586,0.008665,-0.003999,0.249968,0,0);-ms-transform:matrix(0.541586,0.008665,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.541586,0.008665,-0.003999,0.249968,0,0);}
.m4f_c01097{transform:matrix(0.555919,0.008895,-0.003999,0.249968,0,0);-ms-transform:matrix(0.555919,0.008895,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.555919,0.008895,-0.003999,0.249968,0,0);}
.m10a_c01097{transform:matrix(0.569352,0.015942,-0.006997,0.249902,0,0);-ms-transform:matrix(0.569352,0.015942,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.569352,0.015942,-0.006997,0.249902,0,0);}
.m52_c01097{transform:matrix(0.582530,0.009320,-0.003999,0.249968,0,0);-ms-transform:matrix(0.582530,0.009320,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.582530,0.009320,-0.003999,0.249968,0,0);}
.me8_c01097{transform:matrix(0.615213,0.044429,-0.018007,0.249351,0,0);-ms-transform:matrix(0.615213,0.044429,-0.018007,0.249351,0,0);-webkit-transform:matrix(0.615213,0.044429,-0.018007,0.249351,0,0);}
.m0_c01097{transform:matrix(0.640489,0.026927,-0.010501,0.249779,0,0);-ms-transform:matrix(0.640489,0.026927,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.640489,0.026927,-0.010501,0.249779,0,0);}
.mea_c01097{transform:matrix(0.654565,0.047271,-0.018007,0.249351,0,0);-ms-transform:matrix(0.654565,0.047271,-0.018007,0.249351,0,0);-webkit-transform:matrix(0.654565,0.047271,-0.018007,0.249351,0,0);}
.me4_c01097{transform:matrix(0.665770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665770,0.000000,0.000000,0.250000,0,0);}
.m55_c01097{transform:matrix(0.677253,0.010836,-0.003999,0.249968,0,0);-ms-transform:matrix(0.677253,0.010836,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.677253,0.010836,-0.003999,0.249968,0,0);}
.m114_c01097{transform:matrix(0.694083,0.019434,-0.006997,0.249902,0,0);-ms-transform:matrix(0.694083,0.019434,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.694083,0.019434,-0.006997,0.249902,0,0);}
.m4e_c01097{transform:matrix(0.701650,0.011226,-0.003999,0.249968,0,0);-ms-transform:matrix(0.701650,0.011226,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.701650,0.011226,-0.003999,0.249968,0,0);}
.m54_c01097{transform:matrix(0.713394,0.011414,-0.003999,0.249968,0,0);-ms-transform:matrix(0.713394,0.011414,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.713394,0.011414,-0.003999,0.249968,0,0);}
.med_c01097{transform:matrix(0.715178,0.051648,-0.018007,0.249351,0,0);-ms-transform:matrix(0.715178,0.051648,-0.018007,0.249351,0,0);-webkit-transform:matrix(0.715178,0.051648,-0.018007,0.249351,0,0);}
.m10b_c01097{transform:matrix(0.730894,0.020465,-0.006997,0.249902,0,0);-ms-transform:matrix(0.730894,0.020465,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.730894,0.020465,-0.006997,0.249902,0,0);}
.m6b_c01097{transform:matrix(0.757698,0.012123,-0.003999,0.249968,0,0);-ms-transform:matrix(0.757698,0.012123,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.757698,0.012123,-0.003999,0.249968,0,0);}
.md9_c01097{transform:matrix(0.768205,0.029990,-0.009752,0.249810,0,0);-ms-transform:matrix(0.768205,0.029990,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.768205,0.029990,-0.009752,0.249810,0,0);}
.mf8_c01097{transform:matrix(0.770483,0.021574,-0.006997,0.249902,0,0);-ms-transform:matrix(0.770483,0.021574,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.770483,0.021574,-0.006997,0.249902,0,0);}
.m143_c01097{transform:matrix(0.868849,0.026065,-0.007497,0.249888,0,0);-ms-transform:matrix(0.868849,0.026065,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.868849,0.026065,-0.007497,0.249888,0,0);}
.m13e_c01097{transform:matrix(0.869998,0.021750,-0.006248,0.249922,0,0);-ms-transform:matrix(0.869998,0.021750,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.869998,0.021750,-0.006248,0.249922,0,0);}
.m4d_c01097{transform:matrix(0.912808,0.014605,-0.003999,0.249968,0,0);-ms-transform:matrix(0.912808,0.014605,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.912808,0.014605,-0.003999,0.249968,0,0);}
.v0_c01097{vertical-align:0.000000px;}
.ls0_c01097{letter-spacing:0.000000px;}
.sc__c01097{text-shadow:none;}
.sc0_c01097{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__c01097{-webkit-text-stroke:0px transparent;}
.sc0_c01097{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01097{word-spacing:0.000000px;}
.fc0_c01097{color:transparent;}
.fsf_c01097{font-size:18.000000px;}
.fs3_c01097{font-size:72.009215px;}
.fs1_c01097{font-size:72.012995px;}
.fs10_c01097{font-size:77.968521px;}
.fs6_c01097{font-size:78.009983px;}
.fs13_c01097{font-size:78.030570px;}
.fs17_c01097{font-size:78.035092px;}
.fs5_c01097{font-size:84.010751px;}
.fs16_c01097{font-size:84.026246px;}
.fs14_c01097{font-size:84.032922px;}
.fs4_c01097{font-size:90.011519px;}
.fs8_c01097{font-size:96.012287px;}
.fs0_c01097{font-size:101.988014px;}
.fsb_c01097{font-size:102.001326px;}
.fs2_c01097{font-size:102.013055px;}
.fsc_c01097{font-size:107.974185px;}
.fs9_c01097{font-size:108.013823px;}
.fs15_c01097{font-size:114.044679px;}
.fs12_c01097{font-size:126.000000px;}
.fs7_c01097{font-size:126.016127px;}
.fsd_c01097{font-size:131.968448px;}
.fse_c01097{font-size:137.967014px;}
.fsa_c01097{font-size:162.020735px;}
.fs11_c01097{font-size:174.000000px;}
.y0_c01097{bottom:0.000000px;}
.yf0_c01097{bottom:131.123616px;}
.yef_c01097{bottom:132.628596px;}
.yee_c01097{bottom:137.263200px;}
.yed_c01097{bottom:139.486164px;}
.yec_c01097{bottom:141.041040px;}
.yeb_c01097{bottom:143.519208px;}
.yea_c01097{bottom:144.999672px;}
.ye9_c01097{bottom:147.904116px;}
.ye5_c01097{bottom:148.906500px;}
.ye8_c01097{bottom:148.920288px;}
.ye4_c01097{bottom:150.254215px;}
.ye7_c01097{bottom:151.635192px;}
.ye3_c01097{bottom:153.406447px;}
.ye6_c01097{bottom:153.919500px;}
.ye2_c01097{bottom:156.198742px;}
.ye1_c01097{bottom:157.318882px;}
.ye0_c01097{bottom:157.875343px;}
.ydf_c01097{bottom:159.717792px;}
.yde_c01097{bottom:160.346518px;}
.ydd_c01097{bottom:161.874691px;}
.ydc_c01097{bottom:163.612830px;}
.ydb_c01097{bottom:165.554850px;}
.yda_c01097{bottom:182.583052px;}
.yd9_c01097{bottom:185.307330px;}
.yd8_c01097{bottom:186.545284px;}
.yd7_c01097{bottom:188.454180px;}
.yd6_c01097{bottom:189.862302px;}
.yf6_c01097{bottom:225.081000px;}
.yf5_c01097{bottom:226.048500px;}
.yf4_c01097{bottom:227.196000px;}
.yf3_c01097{bottom:229.827000px;}
.yf2_c01097{bottom:230.596500px;}
.yd5_c01097{bottom:241.693626px;}
.yd4_c01097{bottom:243.226933px;}
.yd3_c01097{bottom:247.222380px;}
.yd2_c01097{bottom:247.567152px;}
.yd1_c01097{bottom:249.551688px;}
.yd0_c01097{bottom:253.926763px;}
.ycf_c01097{bottom:256.427620px;}
.yce_c01097{bottom:258.951693px;}
.ycd_c01097{bottom:286.946342px;}
.yf1_c01097{bottom:287.010000px;}
.ycc_c01097{bottom:289.069716px;}
.ycb_c01097{bottom:290.459149px;}
.yca_c01097{bottom:292.508463px;}
.yc9_c01097{bottom:296.152779px;}
.yc8_c01097{bottom:299.899002px;}
.yc7_c01097{bottom:301.399293px;}
.yc6_c01097{bottom:302.434801px;}
.yc5_c01097{bottom:309.972000px;}
.yc4_c01097{bottom:317.491477px;}
.yc3_c01097{bottom:320.633535px;}
.yc2_c01097{bottom:324.372023px;}
.yc1_c01097{bottom:327.436185px;}
.yc0_c01097{bottom:329.423587px;}
.ybf_c01097{bottom:331.206195px;}
.ybe_c01097{bottom:333.815542px;}
.ybd_c01097{bottom:335.333213px;}
.ybc_c01097{bottom:340.232363px;}
.yba_c01097{bottom:342.615855px;}
.ybb_c01097{bottom:343.086397px;}
.yb9_c01097{bottom:344.625803px;}
.yb8_c01097{bottom:346.170000px;}
.y145_c01097{bottom:358.757565px;}
.y144_c01097{bottom:361.561560px;}
.y143_c01097{bottom:363.047145px;}
.y142_c01097{bottom:364.632090px;}
.y141_c01097{bottom:365.941500px;}
.yb7_c01097{bottom:392.379072px;}
.yb6_c01097{bottom:393.533520px;}
.yb5_c01097{bottom:393.970716px;}
.yb4_c01097{bottom:394.594740px;}
.yb3_c01097{bottom:395.138952px;}
.yb2_c01097{bottom:395.495292px;}
.yb1_c01097{bottom:396.191520px;}
.yb0_c01097{bottom:396.457596px;}
.yaf_c01097{bottom:396.953100px;}
.yae_c01097{bottom:397.385076px;}
.yad_c01097{bottom:398.473476px;}
.yac_c01097{bottom:399.214704px;}
.yaa_c01097{bottom:399.542844px;}
.yab_c01097{bottom:399.701880px;}
.ya9_c01097{bottom:433.846716px;}
.ya8_c01097{bottom:434.234820px;}
.ya7_c01097{bottom:434.791692px;}
.ya6_c01097{bottom:435.806028px;}
.ya5_c01097{bottom:436.227456px;}
.ya4_c01097{bottom:436.909020px;}
.ya3_c01097{bottom:437.392200px;}
.ya2_c01097{bottom:438.358980px;}
.ya1_c01097{bottom:438.764100px;}
.ya0_c01097{bottom:439.221672px;}
.y9f_c01097{bottom:440.003148px;}
.y9e_c01097{bottom:463.375224px;}
.y9d_c01097{bottom:465.228564px;}
.y9c_c01097{bottom:466.735344px;}
.y9b_c01097{bottom:467.583372px;}
.y9a_c01097{bottom:468.357408px;}
.y99_c01097{bottom:470.073348px;}
.y98_c01097{bottom:471.267312px;}
.y97_c01097{bottom:471.815988px;}
.y96_c01097{bottom:474.329472px;}
.y95_c01097{bottom:476.235624px;}
.y94_c01097{bottom:500.499576px;}
.y93_c01097{bottom:501.085632px;}
.y92_c01097{bottom:501.642660px;}
.y91_c01097{bottom:502.980768px;}
.y90_c01097{bottom:504.100728px;}
.y8f_c01097{bottom:504.561528px;}
.y8e_c01097{bottom:505.414152px;}
.y8d_c01097{bottom:506.585064px;}
.y8c_c01097{bottom:507.016476px;}
.y8b_c01097{bottom:507.717000px;}
.y8a_c01097{bottom:508.908204px;}
.y89_c01097{bottom:509.353284px;}
.y88_c01097{bottom:509.950092px;}
.y87_c01097{bottom:510.560616px;}
.y86_c01097{bottom:534.490956px;}
.y85_c01097{bottom:535.178640px;}
.y84_c01097{bottom:535.998864px;}
.y83_c01097{bottom:536.550696px;}
.y82_c01097{bottom:538.108956px;}
.y81_c01097{bottom:538.542216px;}
.y80_c01097{bottom:539.577636px;}
.y7f_c01097{bottom:542.004480px;}
.y7e_c01097{bottom:542.735292px;}
.y7d_c01097{bottom:544.136376px;}
.y7c_c01097{bottom:544.817028px;}
.y7b_c01097{bottom:545.180268px;}
.y79_c01097{bottom:545.740476px;}
.y7a_c01097{bottom:545.853876px;}
.y78_c01097{bottom:546.184152px;}
.y77_c01097{bottom:572.080776px;}
.y76_c01097{bottom:572.918760px;}
.y75_c01097{bottom:573.929316px;}
.y74_c01097{bottom:574.525572px;}
.y73_c01097{bottom:575.737716px;}
.y72_c01097{bottom:576.741564px;}
.y71_c01097{bottom:577.591584px;}
.y70_c01097{bottom:579.135576px;}
.y6f_c01097{bottom:580.778808px;}
.y6e_c01097{bottom:581.111772px;}
.y6d_c01097{bottom:582.053436px;}
.y6b_c01097{bottom:583.172616px;}
.y6c_c01097{bottom:583.186140px;}
.y6a_c01097{bottom:606.928044px;}
.y69_c01097{bottom:607.679880px;}
.y68_c01097{bottom:608.770452px;}
.y67_c01097{bottom:609.329304px;}
.y66_c01097{bottom:610.843920px;}
.y65_c01097{bottom:611.309952px;}
.y64_c01097{bottom:612.204672px;}
.y63_c01097{bottom:612.715836px;}
.y62_c01097{bottom:614.158200px;}
.y61_c01097{bottom:615.274260px;}
.y60_c01097{bottom:616.017732px;}
.y5f_c01097{bottom:616.685748px;}
.y5e_c01097{bottom:617.648976px;}
.y5d_c01097{bottom:618.442464px;}
.y5c_c01097{bottom:619.368924px;}
.y5b_c01097{bottom:620.171592px;}
.y5a_c01097{bottom:645.658944px;}
.y59_c01097{bottom:646.439304px;}
.y58_c01097{bottom:647.173572px;}
.y57_c01097{bottom:648.032820px;}
.y56_c01097{bottom:648.429300px;}
.y55_c01097{bottom:648.790680px;}
.y54_c01097{bottom:649.116240px;}
.y53_c01097{bottom:650.028240px;}
.y52_c01097{bottom:650.143848px;}
.y51_c01097{bottom:650.559384px;}
.y50_c01097{bottom:650.810376px;}
.y4f_c01097{bottom:650.997444px;}
.y4e_c01097{bottom:651.327888px;}
.y4d_c01097{bottom:678.436776px;}
.y4c_c01097{bottom:679.495044px;}
.y4b_c01097{bottom:681.993936px;}
.y4a_c01097{bottom:683.498472px;}
.y49_c01097{bottom:684.340524px;}
.y48_c01097{bottom:686.031780px;}
.y47_c01097{bottom:687.400884px;}
.y46_c01097{bottom:713.965200px;}
.y45_c01097{bottom:714.618828px;}
.y44_c01097{bottom:715.488372px;}
.y43_c01097{bottom:717.771276px;}
.y42_c01097{bottom:718.403652px;}
.y41_c01097{bottom:719.865408px;}
.y40_c01097{bottom:720.647328px;}
.y3f_c01097{bottom:721.324032px;}
.y3e_c01097{bottom:722.239296px;}
.y3d_c01097{bottom:723.682392px;}
.y3c_c01097{bottom:725.235420px;}
.y3b_c01097{bottom:748.970868px;}
.y3a_c01097{bottom:749.611584px;}
.y39_c01097{bottom:750.139404px;}
.y38_c01097{bottom:750.633636px;}
.y37_c01097{bottom:751.869432px;}
.y36_c01097{bottom:752.285076px;}
.y35_c01097{bottom:753.472488px;}
.y34_c01097{bottom:753.962400px;}
.y33_c01097{bottom:754.597656px;}
.y32_c01097{bottom:755.661276px;}
.y31_c01097{bottom:756.145068px;}
.y30_c01097{bottom:757.887048px;}
.y2f_c01097{bottom:783.936084px;}
.y2e_c01097{bottom:784.405008px;}
.y2d_c01097{bottom:785.279772px;}
.y2c_c01097{bottom:785.570832px;}
.y2b_c01097{bottom:786.415212px;}
.y2a_c01097{bottom:786.885480px;}
.y29_c01097{bottom:788.186736px;}
.y28_c01097{bottom:789.362376px;}
.y27_c01097{bottom:789.883212px;}
.y26_c01097{bottom:791.223564px;}
.y25_c01097{bottom:792.522612px;}
.y24_c01097{bottom:793.218552px;}
.y23_c01097{bottom:793.523052px;}
.y22_c01097{bottom:818.911164px;}
.y21_c01097{bottom:819.938628px;}
.y20_c01097{bottom:820.425276px;}
.y1f_c01097{bottom:821.996700px;}
.y1e_c01097{bottom:822.392844px;}
.y1d_c01097{bottom:823.115988px;}
.y1c_c01097{bottom:823.670676px;}
.y1b_c01097{bottom:824.221620px;}
.y1a_c01097{bottom:825.982668px;}
.y19_c01097{bottom:826.498020px;}
.y18_c01097{bottom:827.557332px;}
.y17_c01097{bottom:828.676404px;}
.y16_c01097{bottom:829.396500px;}
.y140_c01097{bottom:850.680225px;}
.y13f_c01097{bottom:852.653475px;}
.y13e_c01097{bottom:853.422225px;}
.y13d_c01097{bottom:854.241600px;}
.y13c_c01097{bottom:855.116813px;}
.y13b_c01097{bottom:857.544375px;}
.y13a_c01097{bottom:859.035825px;}
.y139_c01097{bottom:861.720150px;}
.y138_c01097{bottom:862.529888px;}
.y137_c01097{bottom:864.762600px;}
.y136_c01097{bottom:865.876013px;}
.y135_c01097{bottom:866.817000px;}
.y15_c01097{bottom:889.099222px;}
.y14_c01097{bottom:890.426866px;}
.y13_c01097{bottom:891.408577px;}
.y12_c01097{bottom:892.057180px;}
.y11_c01097{bottom:893.084036px;}
.y10_c01097{bottom:893.996377px;}
.yf_c01097{bottom:895.772098px;}
.ye_c01097{bottom:896.386017px;}
.yd_c01097{bottom:897.237141px;}
.yc_c01097{bottom:898.356849px;}
.yb_c01097{bottom:899.058262px;}
.ya_c01097{bottom:900.189000px;}
.y134_c01097{bottom:920.709750px;}
.y133_c01097{bottom:921.226125px;}
.y132_c01097{bottom:922.567612px;}
.y131_c01097{bottom:924.572925px;}
.y130_c01097{bottom:925.375087px;}
.y12f_c01097{bottom:926.805487px;}
.y12e_c01097{bottom:928.628250px;}
.y12d_c01097{bottom:929.438850px;}
.y12c_c01097{bottom:931.170712px;}
.y12b_c01097{bottom:933.292087px;}
.y12a_c01097{bottom:934.415437px;}
.y129_c01097{bottom:935.371950px;}
.y128_c01097{bottom:936.384150px;}
.y127_c01097{bottom:936.726450px;}
.y126_c01097{bottom:938.005500px;}
.y125_c01097{bottom:955.603110px;}
.y124_c01097{bottom:956.301534px;}
.y123_c01097{bottom:959.376162px;}
.y122_c01097{bottom:961.652940px;}
.y121_c01097{bottom:962.662638px;}
.y120_c01097{bottom:965.448606px;}
.y11f_c01097{bottom:966.362196px;}
.y11e_c01097{bottom:967.723998px;}
.y11d_c01097{bottom:969.337146px;}
.y11c_c01097{bottom:971.700762px;}
.y11b_c01097{bottom:972.629292px;}
.y11a_c01097{bottom:974.155950px;}
.y119_c01097{bottom:976.314468px;}
.y118_c01097{bottom:989.772552px;}
.y117_c01097{bottom:991.299816px;}
.y116_c01097{bottom:992.856420px;}
.y115_c01097{bottom:994.939734px;}
.y114_c01097{bottom:996.417168px;}
.y113_c01097{bottom:996.697602px;}
.y112_c01097{bottom:997.189188px;}
.y111_c01097{bottom:1000.134126px;}
.y110_c01097{bottom:1001.401164px;}
.y10f_c01097{bottom:1003.941528px;}
.y10e_c01097{bottom:1007.673402px;}
.y10d_c01097{bottom:1008.967470px;}
.y10c_c01097{bottom:1012.703700px;}
.y10b_c01097{bottom:1014.266760px;}
.y10a_c01097{bottom:1015.533126px;}
.y109_c01097{bottom:1016.565498px;}
.y108_c01097{bottom:1023.936228px;}
.y107_c01097{bottom:1025.218488px;}
.y106_c01097{bottom:1026.155214px;}
.y105_c01097{bottom:1028.318004px;}
.y104_c01097{bottom:1029.209874px;}
.y103_c01097{bottom:1030.804404px;}
.y102_c01097{bottom:1031.412312px;}
.y101_c01097{bottom:1033.057914px;}
.y100_c01097{bottom:1035.245988px;}
.yff_c01097{bottom:1036.429632px;}
.yfe_c01097{bottom:1037.122968px;}
.yfd_c01097{bottom:1037.778588px;}
.yfc_c01097{bottom:1039.005324px;}
.yfb_c01097{bottom:1039.997826px;}
.yfa_c01097{bottom:1042.032852px;}
.yf9_c01097{bottom:1044.273552px;}
.yf8_c01097{bottom:1044.635424px;}
.yf7_c01097{bottom:1045.432500px;}
.y9_c01097{bottom:1063.335642px;}
.y8_c01097{bottom:1066.491564px;}
.y7_c01097{bottom:1067.820234px;}
.y6_c01097{bottom:1071.666636px;}
.y5_c01097{bottom:1076.176932px;}
.y4_c01097{bottom:1079.683638px;}
.y3_c01097{bottom:1080.255174px;}
.y2_c01097{bottom:1082.369517px;}
.y1_c01097{bottom:1085.194500px;}
.h11_c01097{height:18.000000px;}
.h5_c01097{height:72.009215px;}
.h3_c01097{height:72.012995px;}
.h12_c01097{height:77.968521px;}
.h8_c01097{height:78.009983px;}
.h15_c01097{height:78.030570px;}
.h19_c01097{height:78.035092px;}
.h7_c01097{height:84.010751px;}
.h18_c01097{height:84.026246px;}
.h16_c01097{height:84.032922px;}
.h6_c01097{height:90.011519px;}
.ha_c01097{height:96.012287px;}
.h2_c01097{height:101.988014px;}
.hd_c01097{height:102.001326px;}
.h4_c01097{height:102.013055px;}
.he_c01097{height:107.974185px;}
.hb_c01097{height:108.013823px;}
.h17_c01097{height:114.044679px;}
.h14_c01097{height:126.000000px;}
.h9_c01097{height:126.016127px;}
.hf_c01097{height:131.968448px;}
.h10_c01097{height:137.967014px;}
.hc_c01097{height:162.020735px;}
.h13_c01097{height:174.000000px;}
.h0_c01097{height:1246.320000px;}
.h1_c01097{height:1246.500000px;}
.w0_c01097{width:917.190000px;}
.w1_c01097{width:917.250000px;}
.x0_c01097{left:0.000000px;}
.xb9_c01097{left:2.176500px;}
.xb6_c01097{left:9.990000px;}
.xc4_c01097{left:26.479512px;}
.xba_c01097{left:30.643500px;}
.xb7_c01097{left:38.947500px;}
.x6b_c01097{left:43.820064px;}
.x8e_c01097{left:47.932500px;}
.xd3_c01097{left:50.541000px;}
.x74_c01097{left:53.661252px;}
.x39_c01097{left:60.140328px;}
.x8d_c01097{left:61.154340px;}
.x23_c01097{left:62.443740px;}
.x2e_c01097{left:63.780552px;}
.x52_c01097{left:67.794696px;}
.x16_c01097{left:69.991500px;}
.x24_c01097{left:82.694052px;}
.x1_c01097{left:84.591000px;}
.x8f_c01097{left:88.508592px;}
.x75_c01097{left:94.350900px;}
.xa_c01097{left:97.564500px;}
.xc5_c01097{left:100.938180px;}
.x6c_c01097{left:102.905628px;}
.xd4_c01097{left:104.721000px;}
.x53_c01097{left:106.052148px;}
.xd6_c01097{left:107.761500px;}
.x94_c01097{left:108.952500px;}
.x17_c01097{left:114.997500px;}
.x48_c01097{left:117.435996px;}
.xcc_c01097{left:118.541766px;}
.x9c_c01097{left:123.516000px;}
.x60_c01097{left:125.053116px;}
.x25_c01097{left:129.097296px;}
.x76_c01097{left:134.089524px;}
.xb8_c01097{left:136.411500px;}
.x3a_c01097{left:137.793360px;}
.x95_c01097{left:143.233684px;}
.x49_c01097{left:145.313616px;}
.xcd_c01097{left:148.486746px;}
.x54_c01097{left:150.171120px;}
.x2_c01097{left:151.785238px;}
.xb_c01097{left:157.077000px;}
.x7f_c01097{left:162.243492px;}
.x6d_c01097{left:164.304144px;}
.x61_c01097{left:177.342936px;}
.x2f_c01097{left:179.874900px;}
.x18_c01097{left:184.939500px;}
.x55_c01097{left:187.948596px;}
.x4a_c01097{left:191.539800px;}
.xc_c01097{left:193.993500px;}
.x62_c01097{left:195.808836px;}
.xc6_c01097{left:199.258170px;}
.x3_c01097{left:202.076397px;}
.x4b_c01097{left:204.391740px;}
.x3b_c01097{left:209.982252px;}
.x30_c01097{left:212.174928px;}
.x4_c01097{left:215.670789px;}
.xce_c01097{left:224.752362px;}
.xbb_c01097{left:231.718500px;}
.x56_c01097{left:233.802924px;}
.x90_c01097{left:241.026360px;}
.x77_c01097{left:243.202776px;}
.x6e_c01097{left:246.714324px;}
.x19_c01097{left:251.146500px;}
.xd_c01097{left:252.925500px;}
.x3c_c01097{left:255.745824px;}
.xa6_c01097{left:262.999827px;}
.x57_c01097{left:265.613880px;}
.xd5_c01097{left:272.770500px;}
.xd7_c01097{left:273.996000px;}
.xbc_c01097{left:275.530500px;}
.x87_c01097{left:277.074036px;}
.xaa_c01097{left:279.934227px;}
.x1a_c01097{left:283.356000px;}
.x63_c01097{left:287.070408px;}
.x3d_c01097{left:289.600164px;}
.xa1_c01097{left:293.964273px;}
.xe_c01097{left:297.721500px;}
.x5_c01097{left:299.080296px;}
.x58_c01097{left:301.015548px;}
.x26_c01097{left:305.125128px;}
.x80_c01097{left:315.368700px;}
.x88_c01097{left:317.306604px;}
.x78_c01097{left:318.637476px;}
.xcf_c01097{left:320.706798px;}
.xbd_c01097{left:323.707500px;}
.x31_c01097{left:325.387728px;}
.xa7_c01097{left:326.902257px;}
.x3e_c01097{left:328.717668px;}
.xf_c01097{left:330.033000px;}
.xc7_c01097{left:331.522668px;}
.xab_c01097{left:335.369403px;}
.x27_c01097{left:339.834180px;}
.x4c_c01097{left:341.754600px;}
.x9d_c01097{left:343.109187px;}
.xb0_c01097{left:346.408500px;}
.x96_c01097{left:349.529182px;}
.x59_c01097{left:354.171300px;}
.x32_c01097{left:358.070256px;}
.x43_c01097{left:361.255296px;}
.xbe_c01097{left:365.980500px;}
.x64_c01097{left:372.879672px;}
.x89_c01097{left:374.064228px;}
.x81_c01097{left:375.081384px;}
.xb1_c01097{left:378.039821px;}
.x4d_c01097{left:381.876588px;}
.x97_c01097{left:383.221457px;}
.xac_c01097{left:384.966985px;}
.x1b_c01097{left:393.421500px;}
.x79_c01097{left:396.695724px;}
.x91_c01097{left:398.522940px;}
.x3f_c01097{left:401.791488px;}
.xa2_c01097{left:403.112210px;}
.x6_c01097{left:406.360908px;}
.x8a_c01097{left:409.124460px;}
.xa8_c01097{left:413.550527px;}
.xb2_c01097{left:415.633700px;}
.x28_c01097{left:418.187928px;}
.x65_c01097{left:420.098160px;}
.x10_c01097{left:423.492000px;}
.x4e_c01097{left:425.974032px;}
.x1c_c01097{left:427.855500px;}
.xb3_c01097{left:429.704859px;}
.x44_c01097{left:431.699772px;}
.x40_c01097{left:433.437972px;}
.x33_c01097{left:437.253528px;}
.xd0_c01097{left:440.020260px;}
.x98_c01097{left:441.148971px;}
.xbf_c01097{left:444.126000px;}
.x5a_c01097{left:447.196860px;}
.xdb_c01097{left:450.948000px;}
.x7a_c01097{left:453.548136px;}
.x82_c01097{left:460.853388px;}
.x1d_c01097{left:462.523500px;}
.x34_c01097{left:465.012984px;}
.x45_c01097{left:466.792284px;}
.xa9_c01097{left:469.711053px;}
.x11_c01097{left:471.510000px;}
.x92_c01097{left:473.562240px;}
.x66_c01097{left:475.899384px;}
.x9e_c01097{left:477.500661px;}
.x99_c01097{left:480.722857px;}
.x7b_c01097{left:484.223616px;}
.x5b_c01097{left:489.800952px;}
.x6f_c01097{left:493.308864px;}
.xdc_c01097{left:494.595000px;}
.x7_c01097{left:497.850327px;}
.x83_c01097{left:499.571916px;}
.xc0_c01097{left:502.897500px;}
.x29_c01097{left:504.955320px;}
.x1e_c01097{left:507.720000px;}
.xc8_c01097{left:509.252982px;}
.x5c_c01097{left:511.988676px;}
.xad_c01097{left:514.967116px;}
.x70_c01097{left:518.793456px;}
.x4f_c01097{left:521.500236px;}
.x12_c01097{left:525.555000px;}
.x8_c01097{left:529.453692px;}
.x1f_c01097{left:532.479000px;}
.x2a_c01097{left:536.316324px;}
.xd8_c01097{left:538.129500px;}
.x8b_c01097{left:540.145860px;}
.x84_c01097{left:541.977204px;}
.x67_c01097{left:543.218724px;}
.xb4_c01097{left:546.270111px;}
.x35_c01097{left:547.407804px;}
.xa3_c01097{left:548.744670px;}
.x13_c01097{left:559.692000px;}
.x93_c01097{left:561.925380px;}
.xc9_c01097{left:568.466934px;}
.x9f_c01097{left:570.851217px;}
.x8c_c01097{left:572.466924px;}
.x68_c01097{left:576.358668px;}
.x36_c01097{left:580.360332px;}
.xc1_c01097{left:581.556000px;}
.x5d_c01097{left:584.146416px;}
.x41_c01097{left:591.080892px;}
.x2b_c01097{left:592.559712px;}
.xdd_c01097{left:596.946000px;}
.x50_c01097{left:603.119880px;}
.x9_c01097{left:604.519551px;}
.xd9_c01097{left:605.913000px;}
.x14_c01097{left:611.361000px;}
.xc2_c01097{left:613.408500px;}
.x37_c01097{left:615.505884px;}
.x85_c01097{left:617.302380px;}
.x42_c01097{left:623.774304px;}
.xae_c01097{left:626.603261px;}
.x20_c01097{left:630.693000px;}
.x69_c01097{left:632.485368px;}
.x46_c01097{left:633.641448px;}
.xa4_c01097{left:635.520092px;}
.xda_c01097{left:636.663000px;}
.xb5_c01097{left:641.228379px;}
.x71_c01097{left:642.890964px;}
.xd1_c01097{left:645.221040px;}
.x7c_c01097{left:648.074232px;}
.x38_c01097{left:658.270080px;}
.x21_c01097{left:661.108500px;}
.x5e_c01097{left:662.666628px;}
.xca_c01097{left:664.258638px;}
.xd2_c01097{left:667.752150px;}
.xa5_c01097{left:668.837664px;}
.x2c_c01097{left:670.299960px;}
.x9a_c01097{left:675.862023px;}
.x47_c01097{left:677.746308px;}
.x6a_c01097{left:679.045380px;}
.x15_c01097{left:681.237000px;}
.x7d_c01097{left:685.232832px;}
.x51_c01097{left:689.777076px;}
.x72_c01097{left:691.154196px;}
.x5f_c01097{left:698.497272px;}
.x2d_c01097{left:701.576964px;}
.xcb_c01097{left:704.435382px;}
.x86_c01097{left:709.973952px;}
.xa0_c01097{left:713.327099px;}
.xaf_c01097{left:716.575253px;}
.x7e_c01097{left:724.299456px;}
.x22_c01097{left:725.325000px;}
.x73_c01097{left:731.602548px;}
.x9b_c01097{left:745.615699px;}
.xc3_c01097{left:769.900500px;}
@media print{
.v0_c01097{vertical-align:0.000000pt;}
.ls0_c01097{letter-spacing:0.000000pt;}
.ws0_c01097{word-spacing:0.000000pt;}
.fsf_c01097{font-size:16.000000pt;}
.fs3_c01097{font-size:64.008191pt;}
.fs1_c01097{font-size:64.011551pt;}
.fs10_c01097{font-size:69.305352pt;}
.fs6_c01097{font-size:69.342207pt;}
.fs13_c01097{font-size:69.360507pt;}
.fs17_c01097{font-size:69.364526pt;}
.fs5_c01097{font-size:74.676223pt;}
.fs16_c01097{font-size:74.689996pt;}
.fs14_c01097{font-size:74.695930pt;}
.fs4_c01097{font-size:80.010239pt;}
.fs8_c01097{font-size:85.344255pt;}
.fs0_c01097{font-size:90.656013pt;}
.fsb_c01097{font-size:90.667845pt;}
.fs2_c01097{font-size:90.678271pt;}
.fsc_c01097{font-size:95.977053pt;}
.fs9_c01097{font-size:96.012287pt;}
.fs15_c01097{font-size:101.373048pt;}
.fs12_c01097{font-size:112.000000pt;}
.fs7_c01097{font-size:112.014335pt;}
.fsd_c01097{font-size:117.305287pt;}
.fse_c01097{font-size:122.637346pt;}
.fsa_c01097{font-size:144.018431pt;}
.fs11_c01097{font-size:154.666667pt;}
.y0_c01097{bottom:0.000000pt;}
.yf0_c01097{bottom:116.554325pt;}
.yef_c01097{bottom:117.892085pt;}
.yee_c01097{bottom:122.011733pt;}
.yed_c01097{bottom:123.987701pt;}
.yec_c01097{bottom:125.369813pt;}
.yeb_c01097{bottom:127.572629pt;}
.yea_c01097{bottom:128.888597pt;}
.ye9_c01097{bottom:131.470325pt;}
.ye5_c01097{bottom:132.361333pt;}
.ye8_c01097{bottom:132.373589pt;}
.ye4_c01097{bottom:133.559303pt;}
.ye7_c01097{bottom:134.786837pt;}
.ye3_c01097{bottom:136.361287pt;}
.ye6_c01097{bottom:136.817333pt;}
.ye2_c01097{bottom:138.843327pt;}
.ye1_c01097{bottom:139.839007pt;}
.ye0_c01097{bottom:140.333639pt;}
.ydf_c01097{bottom:141.971371pt;}
.yde_c01097{bottom:142.530239pt;}
.ydd_c01097{bottom:143.888615pt;}
.ydc_c01097{bottom:145.433627pt;}
.ydb_c01097{bottom:147.159867pt;}
.yda_c01097{bottom:162.296047pt;}
.yd9_c01097{bottom:164.717627pt;}
.yd8_c01097{bottom:165.818031pt;}
.yd7_c01097{bottom:167.514827pt;}
.yd6_c01097{bottom:168.766491pt;}
.yf6_c01097{bottom:200.072000pt;}
.yf5_c01097{bottom:200.932000pt;}
.yf4_c01097{bottom:201.952000pt;}
.yf3_c01097{bottom:204.290667pt;}
.yf2_c01097{bottom:204.974667pt;}
.yd5_c01097{bottom:214.838779pt;}
.yd4_c01097{bottom:216.201719pt;}
.yd3_c01097{bottom:219.753227pt;}
.yd2_c01097{bottom:220.059691pt;}
.yd1_c01097{bottom:221.823723pt;}
.yd0_c01097{bottom:225.712679pt;}
.ycf_c01097{bottom:227.935663pt;}
.yce_c01097{bottom:230.179283pt;}
.ycd_c01097{bottom:255.063415pt;}
.yf1_c01097{bottom:255.120000pt;}
.ycc_c01097{bottom:256.950859pt;}
.ycb_c01097{bottom:258.185911pt;}
.yca_c01097{bottom:260.007523pt;}
.yc9_c01097{bottom:263.246915pt;}
.yc8_c01097{bottom:266.576891pt;}
.yc7_c01097{bottom:267.910483pt;}
.yc6_c01097{bottom:268.830935pt;}
.yc5_c01097{bottom:275.530667pt;}
.yc4_c01097{bottom:282.214647pt;}
.yc3_c01097{bottom:285.007587pt;}
.yc2_c01097{bottom:288.330687pt;}
.yc1_c01097{bottom:291.054387pt;}
.yc0_c01097{bottom:292.820967pt;}
.ybf_c01097{bottom:294.405507pt;}
.ybe_c01097{bottom:296.724927pt;}
.ybd_c01097{bottom:298.073967pt;}
.ybc_c01097{bottom:302.428767pt;}
.yba_c01097{bottom:304.547427pt;}
.ybb_c01097{bottom:304.965687pt;}
.yb9_c01097{bottom:306.334047pt;}
.yb8_c01097{bottom:307.706667pt;}
.y145_c01097{bottom:318.895613pt;}
.y144_c01097{bottom:321.388053pt;}
.y143_c01097{bottom:322.708573pt;}
.y142_c01097{bottom:324.117413pt;}
.y141_c01097{bottom:325.281333pt;}
.yb7_c01097{bottom:348.781397pt;}
.yb6_c01097{bottom:349.807573pt;}
.yb5_c01097{bottom:350.196192pt;}
.yb4_c01097{bottom:350.750880pt;}
.yb3_c01097{bottom:351.234624pt;}
.yb2_c01097{bottom:351.551371pt;}
.yb1_c01097{bottom:352.170240pt;}
.yb0_c01097{bottom:352.406752pt;}
.yaf_c01097{bottom:352.847200pt;}
.yae_c01097{bottom:353.231179pt;}
.yad_c01097{bottom:354.198645pt;}
.yac_c01097{bottom:354.857515pt;}
.yaa_c01097{bottom:355.149195pt;}
.yab_c01097{bottom:355.290560pt;}
.ya9_c01097{bottom:385.641525pt;}
.ya8_c01097{bottom:385.986507pt;}
.ya7_c01097{bottom:386.481504pt;}
.ya6_c01097{bottom:387.383136pt;}
.ya5_c01097{bottom:387.757739pt;}
.ya4_c01097{bottom:388.363573pt;}
.ya3_c01097{bottom:388.793067pt;}
.ya2_c01097{bottom:389.652427pt;}
.ya1_c01097{bottom:390.012533pt;}
.ya0_c01097{bottom:390.419264pt;}
.y9f_c01097{bottom:391.113909pt;}
.y9e_c01097{bottom:411.889088pt;}
.y9d_c01097{bottom:413.536501pt;}
.y9c_c01097{bottom:414.875861pt;}
.y9b_c01097{bottom:415.629664pt;}
.y9a_c01097{bottom:416.317696pt;}
.y99_c01097{bottom:417.842976pt;}
.y98_c01097{bottom:418.904277pt;}
.y97_c01097{bottom:419.391989pt;}
.y96_c01097{bottom:421.626197pt;}
.y95_c01097{bottom:423.320555pt;}
.y94_c01097{bottom:444.888512pt;}
.y93_c01097{bottom:445.409451pt;}
.y92_c01097{bottom:445.904587pt;}
.y91_c01097{bottom:447.094016pt;}
.y90_c01097{bottom:448.089536pt;}
.y8f_c01097{bottom:448.499136pt;}
.y8e_c01097{bottom:449.257024pt;}
.y8d_c01097{bottom:450.297835pt;}
.y8c_c01097{bottom:450.681312pt;}
.y8b_c01097{bottom:451.304000pt;}
.y8a_c01097{bottom:452.362848pt;}
.y89_c01097{bottom:452.758475pt;}
.y88_c01097{bottom:453.288971pt;}
.y87_c01097{bottom:453.831659pt;}
.y86_c01097{bottom:475.103072pt;}
.y85_c01097{bottom:475.714347pt;}
.y84_c01097{bottom:476.443435pt;}
.y83_c01097{bottom:476.933952pt;}
.y82_c01097{bottom:478.319072pt;}
.y81_c01097{bottom:478.704192pt;}
.y80_c01097{bottom:479.624565pt;}
.y7f_c01097{bottom:481.781760pt;}
.y7e_c01097{bottom:482.431371pt;}
.y7d_c01097{bottom:483.676779pt;}
.y7c_c01097{bottom:484.281803pt;}
.y7b_c01097{bottom:484.604683pt;}
.y79_c01097{bottom:485.102645pt;}
.y7a_c01097{bottom:485.203445pt;}
.y78_c01097{bottom:485.497024pt;}
.y77_c01097{bottom:508.516245pt;}
.y76_c01097{bottom:509.261120pt;}
.y75_c01097{bottom:510.159392pt;}
.y74_c01097{bottom:510.689397pt;}
.y73_c01097{bottom:511.766859pt;}
.y72_c01097{bottom:512.659168pt;}
.y71_c01097{bottom:513.414741pt;}
.y70_c01097{bottom:514.787179pt;}
.y6f_c01097{bottom:516.247829pt;}
.y6e_c01097{bottom:516.543797pt;}
.y6d_c01097{bottom:517.380832pt;}
.y6b_c01097{bottom:518.375659pt;}
.y6c_c01097{bottom:518.387680pt;}
.y6a_c01097{bottom:539.491595pt;}
.y69_c01097{bottom:540.159893pt;}
.y68_c01097{bottom:541.129291pt;}
.y67_c01097{bottom:541.626048pt;}
.y66_c01097{bottom:542.972373pt;}
.y65_c01097{bottom:543.386624pt;}
.y64_c01097{bottom:544.181931pt;}
.y63_c01097{bottom:544.636299pt;}
.y62_c01097{bottom:545.918400pt;}
.y61_c01097{bottom:546.910453pt;}
.y60_c01097{bottom:547.571317pt;}
.y5f_c01097{bottom:548.165109pt;}
.y5e_c01097{bottom:549.021312pt;}
.y5d_c01097{bottom:549.726635pt;}
.y5c_c01097{bottom:550.550155pt;}
.y5b_c01097{bottom:551.263637pt;}
.y5a_c01097{bottom:573.919061pt;}
.y59_c01097{bottom:574.612715pt;}
.y58_c01097{bottom:575.265397pt;}
.y57_c01097{bottom:576.029173pt;}
.y56_c01097{bottom:576.381600pt;}
.y55_c01097{bottom:576.702827pt;}
.y54_c01097{bottom:576.992213pt;}
.y53_c01097{bottom:577.802880pt;}
.y52_c01097{bottom:577.905643pt;}
.y51_c01097{bottom:578.275008pt;}
.y50_c01097{bottom:578.498112pt;}
.y4f_c01097{bottom:578.664395pt;}
.y4e_c01097{bottom:578.958123pt;}
.y4d_c01097{bottom:603.054912pt;}
.y4c_c01097{bottom:603.995595pt;}
.y4b_c01097{bottom:606.216832pt;}
.y4a_c01097{bottom:607.554197pt;}
.y49_c01097{bottom:608.302688pt;}
.y48_c01097{bottom:609.806027pt;}
.y47_c01097{bottom:611.023008pt;}
.y46_c01097{bottom:634.635733pt;}
.y45_c01097{bottom:635.216736pt;}
.y44_c01097{bottom:635.989664pt;}
.y43_c01097{bottom:638.018912pt;}
.y42_c01097{bottom:638.581024pt;}
.y41_c01097{bottom:639.880363pt;}
.y40_c01097{bottom:640.575403pt;}
.y3f_c01097{bottom:641.176917pt;}
.y3e_c01097{bottom:641.990485pt;}
.y3d_c01097{bottom:643.273237pt;}
.y3c_c01097{bottom:644.653707pt;}
.y3b_c01097{bottom:665.751883pt;}
.y3a_c01097{bottom:666.321408pt;}
.y39_c01097{bottom:666.790581pt;}
.y38_c01097{bottom:667.229899pt;}
.y37_c01097{bottom:668.328384pt;}
.y36_c01097{bottom:668.697845pt;}
.y35_c01097{bottom:669.753323pt;}
.y34_c01097{bottom:670.188800pt;}
.y33_c01097{bottom:670.753472pt;}
.y32_c01097{bottom:671.698912pt;}
.y31_c01097{bottom:672.128949pt;}
.y30_c01097{bottom:673.677376pt;}
.y2f_c01097{bottom:696.832075pt;}
.y2e_c01097{bottom:697.248896pt;}
.y2d_c01097{bottom:698.026464pt;}
.y2c_c01097{bottom:698.285184pt;}
.y2b_c01097{bottom:699.035744pt;}
.y2a_c01097{bottom:699.453760pt;}
.y29_c01097{bottom:700.610432pt;}
.y28_c01097{bottom:701.655445pt;}
.y27_c01097{bottom:702.118411pt;}
.y26_c01097{bottom:703.309835pt;}
.y25_c01097{bottom:704.464544pt;}
.y24_c01097{bottom:705.083157pt;}
.y23_c01097{bottom:705.353824pt;}
.y22_c01097{bottom:727.921035pt;}
.y21_c01097{bottom:728.834336pt;}
.y20_c01097{bottom:729.266912pt;}
.y1f_c01097{bottom:730.663733pt;}
.y1e_c01097{bottom:731.015861pt;}
.y1d_c01097{bottom:731.658656pt;}
.y1c_c01097{bottom:732.151712pt;}
.y1b_c01097{bottom:732.641440pt;}
.y1a_c01097{bottom:734.206816pt;}
.y19_c01097{bottom:734.664907pt;}
.y18_c01097{bottom:735.606517pt;}
.y17_c01097{bottom:736.601248pt;}
.y16_c01097{bottom:737.241333pt;}
.y140_c01097{bottom:756.160200pt;}
.y13f_c01097{bottom:757.914200pt;}
.y13e_c01097{bottom:758.597533pt;}
.y13d_c01097{bottom:759.325867pt;}
.y13c_c01097{bottom:760.103833pt;}
.y13b_c01097{bottom:762.261667pt;}
.y13a_c01097{bottom:763.587400pt;}
.y139_c01097{bottom:765.973467pt;}
.y138_c01097{bottom:766.693233pt;}
.y137_c01097{bottom:768.677867pt;}
.y136_c01097{bottom:769.667567pt;}
.y135_c01097{bottom:770.504000pt;}
.y15_c01097{bottom:790.310420pt;}
.y14_c01097{bottom:791.490548pt;}
.y13_c01097{bottom:792.363180pt;}
.y12_c01097{bottom:792.939716pt;}
.y11_c01097{bottom:793.852476pt;}
.y10_c01097{bottom:794.663447pt;}
.yf_c01097{bottom:796.241865pt;}
.ye_c01097{bottom:796.787571pt;}
.yd_c01097{bottom:797.544125pt;}
.yc_c01097{bottom:798.539421pt;}
.yb_c01097{bottom:799.162900pt;}
.ya_c01097{bottom:800.168000pt;}
.y134_c01097{bottom:818.408667pt;}
.y133_c01097{bottom:818.867667pt;}
.y132_c01097{bottom:820.060100pt;}
.y131_c01097{bottom:821.842600pt;}
.y130_c01097{bottom:822.555633pt;}
.y12f_c01097{bottom:823.827100pt;}
.y12e_c01097{bottom:825.447333pt;}
.y12d_c01097{bottom:826.167867pt;}
.y12c_c01097{bottom:827.707300pt;}
.y12b_c01097{bottom:829.592967pt;}
.y12a_c01097{bottom:830.591500pt;}
.y129_c01097{bottom:831.441733pt;}
.y128_c01097{bottom:832.341467pt;}
.y127_c01097{bottom:832.645733pt;}
.y126_c01097{bottom:833.782667pt;}
.y125_c01097{bottom:849.424987pt;}
.y124_c01097{bottom:850.045808pt;}
.y123_c01097{bottom:852.778811pt;}
.y122_c01097{bottom:854.802613pt;}
.y121_c01097{bottom:855.700123pt;}
.y120_c01097{bottom:858.176539pt;}
.y11f_c01097{bottom:858.988619pt;}
.y11e_c01097{bottom:860.199109pt;}
.y11d_c01097{bottom:861.633019pt;}
.y11c_c01097{bottom:863.734011pt;}
.y11b_c01097{bottom:864.559371pt;}
.y11a_c01097{bottom:865.916400pt;}
.y119_c01097{bottom:867.835083pt;}
.y118_c01097{bottom:879.797824pt;}
.y117_c01097{bottom:881.155392pt;}
.y116_c01097{bottom:882.539040pt;}
.y115_c01097{bottom:884.390875pt;}
.y114_c01097{bottom:885.704149pt;}
.y113_c01097{bottom:885.953424pt;}
.y112_c01097{bottom:886.390389pt;}
.y111_c01097{bottom:889.008112pt;}
.y110_c01097{bottom:890.134368pt;}
.y10f_c01097{bottom:892.392469pt;}
.y10e_c01097{bottom:895.709691pt;}
.y10d_c01097{bottom:896.859973pt;}
.y10c_c01097{bottom:900.181067pt;}
.y10b_c01097{bottom:901.570453pt;}
.y10a_c01097{bottom:902.696112pt;}
.y109_c01097{bottom:903.613776pt;}
.y108_c01097{bottom:910.165536pt;}
.y107_c01097{bottom:911.305323pt;}
.y106_c01097{bottom:912.137968pt;}
.y105_c01097{bottom:914.060448pt;}
.y104_c01097{bottom:914.853221pt;}
.y103_c01097{bottom:916.270581pt;}
.y102_c01097{bottom:916.810944pt;}
.y101_c01097{bottom:918.273701pt;}
.y100_c01097{bottom:920.218656pt;}
.yff_c01097{bottom:921.270784pt;}
.yfe_c01097{bottom:921.887083pt;}
.yfd_c01097{bottom:922.469856pt;}
.yfc_c01097{bottom:923.560288pt;}
.yfb_c01097{bottom:924.442512pt;}
.yfa_c01097{bottom:926.251424pt;}
.yf9_c01097{bottom:928.243157pt;}
.yf8_c01097{bottom:928.564821pt;}
.yf7_c01097{bottom:929.273333pt;}
.y9_c01097{bottom:945.187237pt;}
.y8_c01097{bottom:947.992501pt;}
.y7_c01097{bottom:949.173541pt;}
.y6_c01097{bottom:952.592565pt;}
.y5_c01097{bottom:956.601717pt;}
.y4_c01097{bottom:959.718789pt;}
.y3_c01097{bottom:960.226821pt;}
.y2_c01097{bottom:962.106237pt;}
.y1_c01097{bottom:964.617333pt;}
.h11_c01097{height:16.000000pt;}
.h5_c01097{height:64.008191pt;}
.h3_c01097{height:64.011551pt;}
.h12_c01097{height:69.305352pt;}
.h8_c01097{height:69.342207pt;}
.h15_c01097{height:69.360507pt;}
.h19_c01097{height:69.364526pt;}
.h7_c01097{height:74.676223pt;}
.h18_c01097{height:74.689996pt;}
.h16_c01097{height:74.695930pt;}
.h6_c01097{height:80.010239pt;}
.ha_c01097{height:85.344255pt;}
.h2_c01097{height:90.656013pt;}
.hd_c01097{height:90.667845pt;}
.h4_c01097{height:90.678271pt;}
.he_c01097{height:95.977053pt;}
.hb_c01097{height:96.012287pt;}
.h17_c01097{height:101.373048pt;}
.h14_c01097{height:112.000000pt;}
.h9_c01097{height:112.014335pt;}
.hf_c01097{height:117.305287pt;}
.h10_c01097{height:122.637346pt;}
.hc_c01097{height:144.018431pt;}
.h13_c01097{height:154.666667pt;}
.h0_c01097{height:1107.840000pt;}
.h1_c01097{height:1108.000000pt;}
.w0_c01097{width:815.280000pt;}
.w1_c01097{width:815.333333pt;}
.x0_c01097{left:0.000000pt;}
.xb9_c01097{left:1.934667pt;}
.xb6_c01097{left:8.880000pt;}
.xc4_c01097{left:23.537344pt;}
.xba_c01097{left:27.238667pt;}
.xb7_c01097{left:34.620000pt;}
.x6b_c01097{left:38.951168pt;}
.x8e_c01097{left:42.606667pt;}
.xd3_c01097{left:44.925333pt;}
.x74_c01097{left:47.698891pt;}
.x39_c01097{left:53.458069pt;}
.x8d_c01097{left:54.359413pt;}
.x23_c01097{left:55.505547pt;}
.x2e_c01097{left:56.693824pt;}
.x52_c01097{left:60.261952pt;}
.x16_c01097{left:62.214667pt;}
.x24_c01097{left:73.505824pt;}
.x1_c01097{left:75.192000pt;}
.x8f_c01097{left:78.674304pt;}
.x75_c01097{left:83.867467pt;}
.xa_c01097{left:86.724000pt;}
.xc5_c01097{left:89.722827pt;}
.x6c_c01097{left:91.471669pt;}
.xd4_c01097{left:93.085333pt;}
.x53_c01097{left:94.268576pt;}
.xd6_c01097{left:95.788000pt;}
.x94_c01097{left:96.846667pt;}
.x17_c01097{left:102.220000pt;}
.x48_c01097{left:104.387552pt;}
.xcc_c01097{left:105.370459pt;}
.x9c_c01097{left:109.792000pt;}
.x60_c01097{left:111.158325pt;}
.x25_c01097{left:114.753152pt;}
.x76_c01097{left:119.190688pt;}
.xb8_c01097{left:121.254667pt;}
.x3a_c01097{left:122.482987pt;}
.x95_c01097{left:127.318831pt;}
.x49_c01097{left:129.167659pt;}
.xcd_c01097{left:131.988219pt;}
.x54_c01097{left:133.485440pt;}
.x2_c01097{left:134.920212pt;}
.xb_c01097{left:139.624000pt;}
.x7f_c01097{left:144.216437pt;}
.x6d_c01097{left:146.048128pt;}
.x61_c01097{left:157.638165pt;}
.x2f_c01097{left:159.888800pt;}
.x18_c01097{left:164.390667pt;}
.x55_c01097{left:167.065419pt;}
.x4a_c01097{left:170.257600pt;}
.xc_c01097{left:172.438667pt;}
.x62_c01097{left:174.052299pt;}
.xc6_c01097{left:177.118373pt;}
.x3_c01097{left:179.623464pt;}
.x4b_c01097{left:181.681547pt;}
.x3b_c01097{left:186.650891pt;}
.x30_c01097{left:188.599936pt;}
.x4_c01097{left:191.707368pt;}
.xce_c01097{left:199.779877pt;}
.xbb_c01097{left:205.972000pt;}
.x56_c01097{left:207.824821pt;}
.x90_c01097{left:214.245653pt;}
.x77_c01097{left:216.180245pt;}
.x6e_c01097{left:219.301621pt;}
.x19_c01097{left:223.241333pt;}
.xd_c01097{left:224.822667pt;}
.x3c_c01097{left:227.329621pt;}
.xa6_c01097{left:233.777624pt;}
.x57_c01097{left:236.101227pt;}
.xd5_c01097{left:242.462667pt;}
.xd7_c01097{left:243.552000pt;}
.xbc_c01097{left:244.916000pt;}
.x87_c01097{left:246.288032pt;}
.xaa_c01097{left:248.830424pt;}
.x1a_c01097{left:251.872000pt;}
.x63_c01097{left:255.173696pt;}
.x3d_c01097{left:257.422368pt;}
.xa1_c01097{left:261.301576pt;}
.xe_c01097{left:264.641333pt;}
.x5_c01097{left:265.849152pt;}
.x58_c01097{left:267.569376pt;}
.x26_c01097{left:271.222336pt;}
.x80_c01097{left:280.327733pt;}
.x88_c01097{left:282.050315pt;}
.x78_c01097{left:283.233312pt;}
.xcf_c01097{left:285.072709pt;}
.xbd_c01097{left:287.740000pt;}
.x31_c01097{left:289.233536pt;}
.xa7_c01097{left:290.579784pt;}
.x3e_c01097{left:292.193483pt;}
.xf_c01097{left:293.362667pt;}
.xc7_c01097{left:294.686816pt;}
.xab_c01097{left:298.106136pt;}
.x27_c01097{left:302.074827pt;}
.x4c_c01097{left:303.781867pt;}
.x9d_c01097{left:304.985944pt;}
.xb0_c01097{left:307.918667pt;}
.x96_c01097{left:310.692607pt;}
.x59_c01097{left:314.818933pt;}
.x32_c01097{left:318.284672pt;}
.x43_c01097{left:321.115819pt;}
.xbe_c01097{left:325.316000pt;}
.x64_c01097{left:331.448597pt;}
.x89_c01097{left:332.501536pt;}
.x81_c01097{left:333.405675pt;}
.xb1_c01097{left:336.035396pt;}
.x4d_c01097{left:339.445856pt;}
.x97_c01097{left:340.641295pt;}
.xac_c01097{left:342.192876pt;}
.x1b_c01097{left:349.708000pt;}
.x79_c01097{left:352.618421pt;}
.x91_c01097{left:354.242613pt;}
.x3f_c01097{left:357.147989pt;}
.xa2_c01097{left:358.321964pt;}
.x6_c01097{left:361.209696pt;}
.x8a_c01097{left:363.666187pt;}
.xa8_c01097{left:367.600468pt;}
.xb2_c01097{left:369.452177pt;}
.x28_c01097{left:371.722603pt;}
.x65_c01097{left:373.420587pt;}
.x10_c01097{left:376.437333pt;}
.x4e_c01097{left:378.643584pt;}
.x1c_c01097{left:380.316000pt;}
.xb3_c01097{left:381.959875pt;}
.x44_c01097{left:383.733131pt;}
.x40_c01097{left:385.278197pt;}
.x33_c01097{left:388.669803pt;}
.xd0_c01097{left:391.129120pt;}
.x98_c01097{left:392.132419pt;}
.xbf_c01097{left:394.778667pt;}
.x5a_c01097{left:397.508320pt;}
.xdb_c01097{left:400.842667pt;}
.x7a_c01097{left:403.153899pt;}
.x82_c01097{left:409.647456pt;}
.x1d_c01097{left:411.132000pt;}
.x34_c01097{left:413.344875pt;}
.x45_c01097{left:414.926475pt;}
.xa9_c01097{left:417.520936pt;}
.x11_c01097{left:419.120000pt;}
.x92_c01097{left:420.944213pt;}
.x66_c01097{left:423.021675pt;}
.x9e_c01097{left:424.445032pt;}
.x99_c01097{left:427.309207pt;}
.x7b_c01097{left:430.420992pt;}
.x5b_c01097{left:435.378624pt;}
.x6f_c01097{left:438.496768pt;}
.xdc_c01097{left:439.640000pt;}
.x7_c01097{left:442.533624pt;}
.x83_c01097{left:444.063925pt;}
.xc0_c01097{left:447.020000pt;}
.x29_c01097{left:448.849173pt;}
.x1e_c01097{left:451.306667pt;}
.xc8_c01097{left:452.669317pt;}
.x5c_c01097{left:455.101045pt;}
.xad_c01097{left:457.748548pt;}
.x70_c01097{left:461.149739pt;}
.x4f_c01097{left:463.555765pt;}
.x12_c01097{left:467.160000pt;}
.x8_c01097{left:470.625504pt;}
.x1f_c01097{left:473.314667pt;}
.x2a_c01097{left:476.725621pt;}
.xd8_c01097{left:478.337333pt;}
.x8b_c01097{left:480.129653pt;}
.x84_c01097{left:481.757515pt;}
.x67_c01097{left:482.861088pt;}
.xb4_c01097{left:485.573432pt;}
.x35_c01097{left:486.584715pt;}
.xa3_c01097{left:487.773040pt;}
.x13_c01097{left:497.504000pt;}
.x93_c01097{left:499.489227pt;}
.xc9_c01097{left:505.303941pt;}
.x9f_c01097{left:507.423304pt;}
.x8c_c01097{left:508.859488pt;}
.x68_c01097{left:512.318816pt;}
.x36_c01097{left:515.875851pt;}
.xc1_c01097{left:516.938667pt;}
.x5d_c01097{left:519.241259pt;}
.x41_c01097{left:525.405237pt;}
.x2b_c01097{left:526.719744pt;}
.xdd_c01097{left:530.618667pt;}
.x50_c01097{left:536.106560pt;}
.x9_c01097{left:537.350712pt;}
.xd9_c01097{left:538.589333pt;}
.x14_c01097{left:543.432000pt;}
.xc2_c01097{left:545.252000pt;}
.x37_c01097{left:547.116341pt;}
.x85_c01097{left:548.713227pt;}
.x42_c01097{left:554.466048pt;}
.xae_c01097{left:556.980676pt;}
.x20_c01097{left:560.616000pt;}
.x69_c01097{left:562.209216pt;}
.x46_c01097{left:563.236843pt;}
.xa4_c01097{left:564.906748pt;}
.xda_c01097{left:565.922667pt;}
.xb5_c01097{left:569.980781pt;}
.x71_c01097{left:571.458635pt;}
.xd1_c01097{left:573.529813pt;}
.x7c_c01097{left:576.065984pt;}
.x38_c01097{left:585.128960pt;}
.x21_c01097{left:587.652000pt;}
.x5e_c01097{left:589.037003pt;}
.xca_c01097{left:590.452123pt;}
.xd2_c01097{left:593.557467pt;}
.xa5_c01097{left:594.522368pt;}
.x2c_c01097{left:595.822187pt;}
.x9a_c01097{left:600.766243pt;}
.x47_c01097{left:602.441163pt;}
.x6a_c01097{left:603.595893pt;}
.x15_c01097{left:605.544000pt;}
.x7d_c01097{left:609.095851pt;}
.x51_c01097{left:613.135179pt;}
.x72_c01097{left:614.359285pt;}
.x5f_c01097{left:620.886464pt;}
.x2d_c01097{left:623.623968pt;}
.xcb_c01097{left:626.164784pt;}
.x86_c01097{left:631.087957pt;}
.xa0_c01097{left:634.068532pt;}
.xaf_c01097{left:636.955780pt;}
.x7e_c01097{left:643.821739pt;}
.x22_c01097{left:644.733333pt;}
.x73_c01097{left:650.313376pt;}
.x9b_c01097{left:662.769511pt;}
.xc3_c01097{left:684.356000pt;}
}





/* 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_c01098 {
    display:none;
  }
  .loading-indicator_c01098.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01098 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_c01098 { 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_c01098" -> "#page-container .classname_c01098")
 */
.pf_c01098 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01098 { /* 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_c01098.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01098 { /* 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_c01098 { /* 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_c01098 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01098 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01098 {overflow:visible;}
  }
}
.c_c01098 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01098 { /* 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_c01098:after { /* webkit #35443 */
  content: '';
}
.t_c01098:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01098 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 */
}
.__c01098 { /* 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_c01098 { /* info for Javascript */
  display:none;
}
.l_c01098 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01098 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01098 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01098: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_c01098 {
    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_c01098.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01098.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_c01098 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01098{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01098;src:url('chunks/assets/font_c605e72f209fc835e906f064.woff2')format("woff");}.ff1_c01098{font-family:ff1_c01098;line-height:1.000000;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;}
.med_c01098{transform:matrix(0.077606,0.003263,-0.010501,0.249779,0,0);-ms-transform:matrix(0.077606,0.003263,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.077606,0.003263,-0.010501,0.249779,0,0);}
.mee_c01098{transform:matrix(0.102415,0.004306,-0.010501,0.249779,0,0);-ms-transform:matrix(0.102415,0.004306,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.102415,0.004306,-0.010501,0.249779,0,0);}
.m0_c01098{transform:matrix(0.103952,0.004162,-0.010002,0.249800,0,0);-ms-transform:matrix(0.103952,0.004162,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.103952,0.004162,-0.010002,0.249800,0,0);}
.m9d_c01098{transform:matrix(0.105582,0.004439,-0.010501,0.249779,0,0);-ms-transform:matrix(0.105582,0.004439,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.105582,0.004439,-0.010501,0.249779,0,0);}
.m103_c01098{transform:matrix(0.143538,0.006035,-0.010501,0.249779,0,0);-ms-transform:matrix(0.143538,0.006035,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.143538,0.006035,-0.010501,0.249779,0,0);}
.mb0_c01098{transform:matrix(0.147605,0.006206,-0.010501,0.249779,0,0);-ms-transform:matrix(0.147605,0.006206,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.147605,0.006206,-0.010501,0.249779,0,0);}
.m11d_c01098{transform:matrix(0.175916,0.008981,-0.012746,0.249675,0,0);-ms-transform:matrix(0.175916,0.008981,-0.012746,0.249675,0,0);-webkit-transform:matrix(0.175916,0.008981,-0.012746,0.249675,0,0);}
.maf_c01098{transform:matrix(0.177888,0.007479,-0.010501,0.249779,0,0);-ms-transform:matrix(0.177888,0.007479,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.177888,0.007479,-0.010501,0.249779,0,0);}
.m128_c01098{transform:matrix(0.188619,0.009629,-0.012746,0.249675,0,0);-ms-transform:matrix(0.188619,0.009629,-0.012746,0.249675,0,0);-webkit-transform:matrix(0.188619,0.009629,-0.012746,0.249675,0,0);}
.me9_c01098{transform:matrix(0.188658,0.007932,-0.010501,0.249779,0,0);-ms-transform:matrix(0.188658,0.007932,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.188658,0.007932,-0.010501,0.249779,0,0);}
.mdf_c01098{transform:matrix(0.191925,0.008069,-0.010501,0.249779,0,0);-ms-transform:matrix(0.191925,0.008069,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.191925,0.008069,-0.010501,0.249779,0,0);}
.m1f_c01098{transform:matrix(0.192865,0.008108,-0.010501,0.249779,0,0);-ms-transform:matrix(0.192865,0.008108,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.192865,0.008108,-0.010501,0.249779,0,0);}
.m120_c01098{transform:matrix(0.192904,0.009848,-0.012746,0.249675,0,0);-ms-transform:matrix(0.192904,0.009848,-0.012746,0.249675,0,0);-webkit-transform:matrix(0.192904,0.009848,-0.012746,0.249675,0,0);}
.mf8_c01098{transform:matrix(0.196122,0.008245,-0.010501,0.249779,0,0);-ms-transform:matrix(0.196122,0.008245,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.196122,0.008245,-0.010501,0.249779,0,0);}
.m58_c01098{transform:matrix(0.197735,0.008313,-0.010501,0.249779,0,0);-ms-transform:matrix(0.197735,0.008313,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.197735,0.008313,-0.010501,0.249779,0,0);}
.m122_c01098{transform:matrix(0.199440,0.010182,-0.012746,0.249675,0,0);-ms-transform:matrix(0.199440,0.010182,-0.012746,0.249675,0,0);-webkit-transform:matrix(0.199440,0.010182,-0.012746,0.249675,0,0);}
.m5a_c01098{transform:matrix(0.200478,0.008429,-0.010501,0.249779,0,0);-ms-transform:matrix(0.200478,0.008429,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.200478,0.008429,-0.010501,0.249779,0,0);}
.mc1_c01098{transform:matrix(0.203350,0.008549,-0.010501,0.249779,0,0);-ms-transform:matrix(0.203350,0.008549,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.203350,0.008549,-0.010501,0.249779,0,0);}
.m52_c01098{transform:matrix(0.204150,0.008583,-0.010501,0.249779,0,0);-ms-transform:matrix(0.204150,0.008583,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.204150,0.008583,-0.010501,0.249779,0,0);}
.m25_c01098{transform:matrix(0.204529,0.008599,-0.010501,0.249779,0,0);-ms-transform:matrix(0.204529,0.008599,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.204529,0.008599,-0.010501,0.249779,0,0);}
.meb_c01098{transform:matrix(0.205179,0.008626,-0.010501,0.249779,0,0);-ms-transform:matrix(0.205179,0.008626,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.205179,0.008626,-0.010501,0.249779,0,0);}
.mfb_c01098{transform:matrix(0.205913,0.008657,-0.010501,0.249779,0,0);-ms-transform:matrix(0.205913,0.008657,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.205913,0.008657,-0.010501,0.249779,0,0);}
.m60_c01098{transform:matrix(0.206727,0.008691,-0.010501,0.249779,0,0);-ms-transform:matrix(0.206727,0.008691,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.206727,0.008691,-0.010501,0.249779,0,0);}
.m97_c01098{transform:matrix(0.207831,0.008738,-0.010501,0.249779,0,0);-ms-transform:matrix(0.207831,0.008738,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.207831,0.008738,-0.010501,0.249779,0,0);}
.m124_c01098{transform:matrix(0.210306,0.010736,-0.012746,0.249675,0,0);-ms-transform:matrix(0.210306,0.010736,-0.012746,0.249675,0,0);-webkit-transform:matrix(0.210306,0.010736,-0.012746,0.249675,0,0);}
.m86_c01098{transform:matrix(0.210369,0.008844,-0.010501,0.249779,0,0);-ms-transform:matrix(0.210369,0.008844,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.210369,0.008844,-0.010501,0.249779,0,0);}
.m95_c01098{transform:matrix(0.210509,0.008850,-0.010501,0.249779,0,0);-ms-transform:matrix(0.210509,0.008850,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.210509,0.008850,-0.010501,0.249779,0,0);}
.m11c_c01098{transform:matrix(0.210746,0.010759,-0.012746,0.249675,0,0);-ms-transform:matrix(0.210746,0.010759,-0.012746,0.249675,0,0);-webkit-transform:matrix(0.210746,0.010759,-0.012746,0.249675,0,0);}
.m99_c01098{transform:matrix(0.211029,0.008872,-0.010501,0.249779,0,0);-ms-transform:matrix(0.211029,0.008872,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.211029,0.008872,-0.010501,0.249779,0,0);}
.m70_c01098{transform:matrix(0.211378,0.008887,-0.010501,0.249779,0,0);-ms-transform:matrix(0.211378,0.008887,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.211378,0.008887,-0.010501,0.249779,0,0);}
.m101_c01098{transform:matrix(0.211443,0.008890,-0.010501,0.249779,0,0);-ms-transform:matrix(0.211443,0.008890,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.211443,0.008890,-0.010501,0.249779,0,0);}
.ma3_c01098{transform:matrix(0.211683,0.008900,-0.010501,0.249779,0,0);-ms-transform:matrix(0.211683,0.008900,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.211683,0.008900,-0.010501,0.249779,0,0);}
.m34_c01098{transform:matrix(0.212013,0.008913,-0.010501,0.249779,0,0);-ms-transform:matrix(0.212013,0.008913,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.212013,0.008913,-0.010501,0.249779,0,0);}
.m113_c01098{transform:matrix(0.212858,0.010867,-0.012746,0.249675,0,0);-ms-transform:matrix(0.212858,0.010867,-0.012746,0.249675,0,0);-webkit-transform:matrix(0.212858,0.010867,-0.012746,0.249675,0,0);}
.ma5_c01098{transform:matrix(0.212947,0.008953,-0.010501,0.249779,0,0);-ms-transform:matrix(0.212947,0.008953,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.212947,0.008953,-0.010501,0.249779,0,0);}
.m39_c01098{transform:matrix(0.213511,0.008976,-0.010501,0.249779,0,0);-ms-transform:matrix(0.213511,0.008976,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.213511,0.008976,-0.010501,0.249779,0,0);}
.m56_c01098{transform:matrix(0.213821,0.008989,-0.010501,0.249779,0,0);-ms-transform:matrix(0.213821,0.008989,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.213821,0.008989,-0.010501,0.249779,0,0);}
.m12d_c01098{transform:matrix(0.214136,0.010932,-0.012746,0.249675,0,0);-ms-transform:matrix(0.214136,0.010932,-0.012746,0.249675,0,0);-webkit-transform:matrix(0.214136,0.010932,-0.012746,0.249675,0,0);}
.mb2_c01098{transform:matrix(0.214226,0.009006,-0.010501,0.249779,0,0);-ms-transform:matrix(0.214226,0.009006,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.214226,0.009006,-0.010501,0.249779,0,0);}
.mfe_c01098{transform:matrix(0.214870,0.009034,-0.010501,0.249779,0,0);-ms-transform:matrix(0.214870,0.009034,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.214870,0.009034,-0.010501,0.249779,0,0);}
.me1_c01098{transform:matrix(0.215525,0.009061,-0.010501,0.249779,0,0);-ms-transform:matrix(0.215525,0.009061,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.215525,0.009061,-0.010501,0.249779,0,0);}
.m3f_c01098{transform:matrix(0.215694,0.009068,-0.010501,0.249779,0,0);-ms-transform:matrix(0.215694,0.009068,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.215694,0.009068,-0.010501,0.249779,0,0);}
.m130_c01098{transform:matrix(0.215759,0.011015,-0.012746,0.249675,0,0);-ms-transform:matrix(0.215759,0.011015,-0.012746,0.249675,0,0);-webkit-transform:matrix(0.215759,0.011015,-0.012746,0.249675,0,0);}
.m6c_c01098{transform:matrix(0.215809,0.009073,-0.010501,0.249779,0,0);-ms-transform:matrix(0.215809,0.009073,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.215809,0.009073,-0.010501,0.249779,0,0);}
.m1b_c01098{transform:matrix(0.216019,0.009082,-0.010501,0.249779,0,0);-ms-transform:matrix(0.216019,0.009082,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.216019,0.009082,-0.010501,0.249779,0,0);}
.mb4_c01098{transform:matrix(0.216144,0.009087,-0.010501,0.249779,0,0);-ms-transform:matrix(0.216144,0.009087,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.216144,0.009087,-0.010501,0.249779,0,0);}
.mbb_c01098{transform:matrix(0.216154,0.009088,-0.010501,0.249779,0,0);-ms-transform:matrix(0.216154,0.009088,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.216154,0.009088,-0.010501,0.249779,0,0);}
.m112_c01098{transform:matrix(0.216498,0.011052,-0.012746,0.249675,0,0);-ms-transform:matrix(0.216498,0.011052,-0.012746,0.249675,0,0);-webkit-transform:matrix(0.216498,0.011052,-0.012746,0.249675,0,0);}
.m10b_c01098{transform:matrix(0.216599,0.009106,-0.010501,0.249779,0,0);-ms-transform:matrix(0.216599,0.009106,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.216599,0.009106,-0.010501,0.249779,0,0);}
.m1c_c01098{transform:matrix(0.216803,0.009115,-0.010501,0.249779,0,0);-ms-transform:matrix(0.216803,0.009115,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.216803,0.009115,-0.010501,0.249779,0,0);}
.m2_c01098{transform:matrix(0.216903,0.009119,-0.010501,0.249779,0,0);-ms-transform:matrix(0.216903,0.009119,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.216903,0.009119,-0.010501,0.249779,0,0);}
.m59_c01098{transform:matrix(0.217333,0.009137,-0.010501,0.249779,0,0);-ms-transform:matrix(0.217333,0.009137,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.217333,0.009137,-0.010501,0.249779,0,0);}
.m108_c01098{transform:matrix(0.217428,0.009141,-0.010501,0.249779,0,0);-ms-transform:matrix(0.217428,0.009141,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.217428,0.009141,-0.010501,0.249779,0,0);}
.m11f_c01098{transform:matrix(0.217931,0.011126,-0.012746,0.249675,0,0);-ms-transform:matrix(0.217931,0.011126,-0.012746,0.249675,0,0);-webkit-transform:matrix(0.217931,0.011126,-0.012746,0.249675,0,0);}
.m12b_c01098{transform:matrix(0.218011,0.011130,-0.012746,0.249675,0,0);-ms-transform:matrix(0.218011,0.011130,-0.012746,0.249675,0,0);-webkit-transform:matrix(0.218011,0.011130,-0.012746,0.249675,0,0);}
.m117_c01098{transform:matrix(0.218156,0.011137,-0.012746,0.249675,0,0);-ms-transform:matrix(0.218156,0.011137,-0.012746,0.249675,0,0);-webkit-transform:matrix(0.218156,0.011137,-0.012746,0.249675,0,0);}
.mdc_c01098{transform:matrix(0.218827,0.009200,-0.010501,0.249779,0,0);-ms-transform:matrix(0.218827,0.009200,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.218827,0.009200,-0.010501,0.249779,0,0);}
.mb5_c01098{transform:matrix(0.219007,0.009207,-0.010501,0.249779,0,0);-ms-transform:matrix(0.219007,0.009207,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.219007,0.009207,-0.010501,0.249779,0,0);}
.m121_c01098{transform:matrix(0.219135,0.011187,-0.012746,0.249675,0,0);-ms-transform:matrix(0.219135,0.011187,-0.012746,0.249675,0,0);-webkit-transform:matrix(0.219135,0.011187,-0.012746,0.249675,0,0);}
.m10d_c01098{transform:matrix(0.219346,0.009222,-0.010501,0.249779,0,0);-ms-transform:matrix(0.219346,0.009222,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.219346,0.009222,-0.010501,0.249779,0,0);}
.m1e_c01098{transform:matrix(0.220695,0.009278,-0.010501,0.249779,0,0);-ms-transform:matrix(0.220695,0.009278,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.220695,0.009278,-0.010501,0.249779,0,0);}
.m92_c01098{transform:matrix(0.220965,0.009290,-0.010501,0.249779,0,0);-ms-transform:matrix(0.220965,0.009290,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.220965,0.009290,-0.010501,0.249779,0,0);}
.mb3_c01098{transform:matrix(0.221260,0.009302,-0.010501,0.249779,0,0);-ms-transform:matrix(0.221260,0.009302,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.221260,0.009302,-0.010501,0.249779,0,0);}
.m123_c01098{transform:matrix(0.221561,0.011311,-0.012746,0.249675,0,0);-ms-transform:matrix(0.221561,0.011311,-0.012746,0.249675,0,0);-webkit-transform:matrix(0.221561,0.011311,-0.012746,0.249675,0,0);}
.md6_c01098{transform:matrix(0.223408,0.009393,-0.010501,0.249779,0,0);-ms-transform:matrix(0.223408,0.009393,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.223408,0.009393,-0.010501,0.249779,0,0);}
.m125_c01098{transform:matrix(0.223709,0.011421,-0.012746,0.249675,0,0);-ms-transform:matrix(0.223709,0.011421,-0.012746,0.249675,0,0);-webkit-transform:matrix(0.223709,0.011421,-0.012746,0.249675,0,0);}
.ma1_c01098{transform:matrix(0.224227,0.009427,-0.010501,0.249779,0,0);-ms-transform:matrix(0.224227,0.009427,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.224227,0.009427,-0.010501,0.249779,0,0);}
.m9b_c01098{transform:matrix(0.224402,0.009434,-0.010501,0.249779,0,0);-ms-transform:matrix(0.224402,0.009434,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.224402,0.009434,-0.010501,0.249779,0,0);}
.mb7_c01098{transform:matrix(0.224607,0.009443,-0.010501,0.249779,0,0);-ms-transform:matrix(0.224607,0.009443,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.224607,0.009443,-0.010501,0.249779,0,0);}
.m12f_c01098{transform:matrix(0.225202,0.011497,-0.012746,0.249675,0,0);-ms-transform:matrix(0.225202,0.011497,-0.012746,0.249675,0,0);-webkit-transform:matrix(0.225202,0.011497,-0.012746,0.249675,0,0);}
.m127_c01098{transform:matrix(0.226076,0.011541,-0.012746,0.249675,0,0);-ms-transform:matrix(0.226076,0.011541,-0.012746,0.249675,0,0);-webkit-transform:matrix(0.226076,0.011541,-0.012746,0.249675,0,0);}
.m73_c01098{transform:matrix(0.226575,0.009526,-0.010501,0.249779,0,0);-ms-transform:matrix(0.226575,0.009526,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.226575,0.009526,-0.010501,0.249779,0,0);}
.m63_c01098{transform:matrix(0.226765,0.009534,-0.010501,0.249779,0,0);-ms-transform:matrix(0.226765,0.009534,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.226765,0.009534,-0.010501,0.249779,0,0);}
.me8_c01098{transform:matrix(0.226895,0.009539,-0.010501,0.249779,0,0);-ms-transform:matrix(0.226895,0.009539,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.226895,0.009539,-0.010501,0.249779,0,0);}
.m3b_c01098{transform:matrix(0.227229,0.009553,-0.010501,0.249779,0,0);-ms-transform:matrix(0.227229,0.009553,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.227229,0.009553,-0.010501,0.249779,0,0);}
.m12c_c01098{transform:matrix(0.227244,0.011601,-0.012746,0.249675,0,0);-ms-transform:matrix(0.227244,0.011601,-0.012746,0.249675,0,0);-webkit-transform:matrix(0.227244,0.011601,-0.012746,0.249675,0,0);}
.m11e_c01098{transform:matrix(0.227564,0.011617,-0.012746,0.249675,0,0);-ms-transform:matrix(0.227564,0.011617,-0.012746,0.249675,0,0);-webkit-transform:matrix(0.227564,0.011617,-0.012746,0.249675,0,0);}
.mac_c01098{transform:matrix(0.227809,0.009578,-0.010501,0.249779,0,0);-ms-transform:matrix(0.227809,0.009578,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.227809,0.009578,-0.010501,0.249779,0,0);}
.m27_c01098{transform:matrix(0.227889,0.009581,-0.010501,0.249779,0,0);-ms-transform:matrix(0.227889,0.009581,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.227889,0.009581,-0.010501,0.249779,0,0);}
.mc6_c01098{transform:matrix(0.227904,0.009582,-0.010501,0.249779,0,0);-ms-transform:matrix(0.227904,0.009582,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.227904,0.009582,-0.010501,0.249779,0,0);}
.m72_c01098{transform:matrix(0.227939,0.009583,-0.010501,0.249779,0,0);-ms-transform:matrix(0.227939,0.009583,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.227939,0.009583,-0.010501,0.249779,0,0);}
.m100_c01098{transform:matrix(0.228079,0.009589,-0.010501,0.249779,0,0);-ms-transform:matrix(0.228079,0.009589,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.228079,0.009589,-0.010501,0.249779,0,0);}
.md2_c01098{transform:matrix(0.228094,0.009590,-0.010501,0.249779,0,0);-ms-transform:matrix(0.228094,0.009590,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.228094,0.009590,-0.010501,0.249779,0,0);}
.m12a_c01098{transform:matrix(0.228298,0.011655,-0.012746,0.249675,0,0);-ms-transform:matrix(0.228298,0.011655,-0.012746,0.249675,0,0);-webkit-transform:matrix(0.228298,0.011655,-0.012746,0.249675,0,0);}
.mb9_c01098{transform:matrix(0.228493,0.009606,-0.010501,0.249779,0,0);-ms-transform:matrix(0.228493,0.009606,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.228493,0.009606,-0.010501,0.249779,0,0);}
.m8_c01098{transform:matrix(0.228613,0.009611,-0.010501,0.249779,0,0);-ms-transform:matrix(0.228613,0.009611,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.228613,0.009611,-0.010501,0.249779,0,0);}
.m11b_c01098{transform:matrix(0.228962,0.011689,-0.012746,0.249675,0,0);-ms-transform:matrix(0.228962,0.011689,-0.012746,0.249675,0,0);-webkit-transform:matrix(0.228962,0.011689,-0.012746,0.249675,0,0);}
.me7_c01098{transform:matrix(0.228993,0.009627,-0.010501,0.249779,0,0);-ms-transform:matrix(0.228993,0.009627,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.228993,0.009627,-0.010501,0.249779,0,0);}
.m6_c01098{transform:matrix(0.229322,0.009641,-0.010501,0.249779,0,0);-ms-transform:matrix(0.229322,0.009641,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.229322,0.009641,-0.010501,0.249779,0,0);}
.m21_c01098{transform:matrix(0.229772,0.009660,-0.010501,0.249779,0,0);-ms-transform:matrix(0.229772,0.009660,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.229772,0.009660,-0.010501,0.249779,0,0);}
.m54_c01098{transform:matrix(0.230122,0.009675,-0.010501,0.249779,0,0);-ms-transform:matrix(0.230122,0.009675,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.230122,0.009675,-0.010501,0.249779,0,0);}
.m116_c01098{transform:matrix(0.230250,0.011755,-0.012746,0.249675,0,0);-ms-transform:matrix(0.230250,0.011755,-0.012746,0.249675,0,0);-webkit-transform:matrix(0.230250,0.011755,-0.012746,0.249675,0,0);}
.m2b_c01098{transform:matrix(0.230691,0.009699,-0.010501,0.249779,0,0);-ms-transform:matrix(0.230691,0.009699,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.230691,0.009699,-0.010501,0.249779,0,0);}
.m84_c01098{transform:matrix(0.230711,0.009700,-0.010501,0.249779,0,0);-ms-transform:matrix(0.230711,0.009700,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.230711,0.009700,-0.010501,0.249779,0,0);}
.m104_c01098{transform:matrix(0.230921,0.009708,-0.010501,0.249779,0,0);-ms-transform:matrix(0.230921,0.009708,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.230921,0.009708,-0.010501,0.249779,0,0);}
.m3a_c01098{transform:matrix(0.231036,0.009713,-0.010501,0.249779,0,0);-ms-transform:matrix(0.231036,0.009713,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.231036,0.009713,-0.010501,0.249779,0,0);}
.mce_c01098{transform:matrix(0.232080,0.009757,-0.010501,0.249779,0,0);-ms-transform:matrix(0.232080,0.009757,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.232080,0.009757,-0.010501,0.249779,0,0);}
.me2_c01098{transform:matrix(0.232130,0.009759,-0.010501,0.249779,0,0);-ms-transform:matrix(0.232130,0.009759,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.232130,0.009759,-0.010501,0.249779,0,0);}
.mcd_c01098{transform:matrix(0.232415,0.009771,-0.010501,0.249779,0,0);-ms-transform:matrix(0.232415,0.009771,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.232415,0.009771,-0.010501,0.249779,0,0);}
.mf9_c01098{transform:matrix(0.232465,0.009773,-0.010501,0.249779,0,0);-ms-transform:matrix(0.232465,0.009773,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.232465,0.009773,-0.010501,0.249779,0,0);}
.m22_c01098{transform:matrix(0.232779,0.009787,-0.010501,0.249779,0,0);-ms-transform:matrix(0.232779,0.009787,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.232779,0.009787,-0.010501,0.249779,0,0);}
.m96_c01098{transform:matrix(0.232859,0.009790,-0.010501,0.249779,0,0);-ms-transform:matrix(0.232859,0.009790,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.232859,0.009790,-0.010501,0.249779,0,0);}
.md9_c01098{transform:matrix(0.233489,0.009816,-0.010501,0.249779,0,0);-ms-transform:matrix(0.233489,0.009816,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.233489,0.009816,-0.010501,0.249779,0,0);}
.m10c_c01098{transform:matrix(0.233928,0.009835,-0.010501,0.249779,0,0);-ms-transform:matrix(0.233928,0.009835,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.233928,0.009835,-0.010501,0.249779,0,0);}
.m29_c01098{transform:matrix(0.234153,0.009844,-0.010501,0.249779,0,0);-ms-transform:matrix(0.234153,0.009844,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.234153,0.009844,-0.010501,0.249779,0,0);}
.m57_c01098{transform:matrix(0.235577,0.009904,-0.010501,0.249779,0,0);-ms-transform:matrix(0.235577,0.009904,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.235577,0.009904,-0.010501,0.249779,0,0);}
.mea_c01098{transform:matrix(0.235597,0.009905,-0.010501,0.249779,0,0);-ms-transform:matrix(0.235597,0.009905,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.235597,0.009905,-0.010501,0.249779,0,0);}
.m64_c01098{transform:matrix(0.235787,0.009913,-0.010501,0.249779,0,0);-ms-transform:matrix(0.235787,0.009913,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.235787,0.009913,-0.010501,0.249779,0,0);}
.mb_c01098{transform:matrix(0.236236,0.009932,-0.010501,0.249779,0,0);-ms-transform:matrix(0.236236,0.009932,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.236236,0.009932,-0.010501,0.249779,0,0);}
.mb1_c01098{transform:matrix(0.236296,0.009934,-0.010501,0.249779,0,0);-ms-transform:matrix(0.236296,0.009934,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.236296,0.009934,-0.010501,0.249779,0,0);}
.m115_c01098{transform:matrix(0.237021,0.012100,-0.012746,0.249675,0,0);-ms-transform:matrix(0.237021,0.012100,-0.012746,0.249675,0,0);-webkit-transform:matrix(0.237021,0.012100,-0.012746,0.249675,0,0);}
.m106_c01098{transform:matrix(0.237690,0.009993,-0.010501,0.249779,0,0);-ms-transform:matrix(0.237690,0.009993,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.237690,0.009993,-0.010501,0.249779,0,0);}
.mba_c01098{transform:matrix(0.238235,0.010016,-0.010501,0.249779,0,0);-ms-transform:matrix(0.238235,0.010016,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.238235,0.010016,-0.010501,0.249779,0,0);}
.m36_c01098{transform:matrix(0.238324,0.010020,-0.010501,0.249779,0,0);-ms-transform:matrix(0.238324,0.010020,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.238324,0.010020,-0.010501,0.249779,0,0);}
.m28_c01098{transform:matrix(0.238394,0.010023,-0.010501,0.249779,0,0);-ms-transform:matrix(0.238394,0.010023,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.238394,0.010023,-0.010501,0.249779,0,0);}
.m9e_c01098{transform:matrix(0.238429,0.010024,-0.010501,0.249779,0,0);-ms-transform:matrix(0.238429,0.010024,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.238429,0.010024,-0.010501,0.249779,0,0);}
.mec_c01098{transform:matrix(0.238474,0.010026,-0.010501,0.249779,0,0);-ms-transform:matrix(0.238474,0.010026,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.238474,0.010026,-0.010501,0.249779,0,0);}
.mb8_c01098{transform:matrix(0.238554,0.010029,-0.010501,0.249779,0,0);-ms-transform:matrix(0.238554,0.010029,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.238554,0.010029,-0.010501,0.249779,0,0);}
.mf0_c01098{transform:matrix(0.239019,0.010049,-0.010501,0.249779,0,0);-ms-transform:matrix(0.239019,0.010049,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.239019,0.010049,-0.010501,0.249779,0,0);}
.m23_c01098{transform:matrix(0.239084,0.010052,-0.010501,0.249779,0,0);-ms-transform:matrix(0.239084,0.010052,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.239084,0.010052,-0.010501,0.249779,0,0);}
.m80_c01098{transform:matrix(0.239294,0.010060,-0.010501,0.249779,0,0);-ms-transform:matrix(0.239294,0.010060,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.239294,0.010060,-0.010501,0.249779,0,0);}
.mbc_c01098{transform:matrix(0.239748,0.010080,-0.010501,0.249779,0,0);-ms-transform:matrix(0.239748,0.010080,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.239748,0.010080,-0.010501,0.249779,0,0);}
.m12e_c01098{transform:matrix(0.240097,0.012257,-0.012746,0.249675,0,0);-ms-transform:matrix(0.240097,0.012257,-0.012746,0.249675,0,0);-webkit-transform:matrix(0.240097,0.012257,-0.012746,0.249675,0,0);}
.m4_c01098{transform:matrix(0.240283,0.010102,-0.010501,0.249779,0,0);-ms-transform:matrix(0.240283,0.010102,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.240283,0.010102,-0.010501,0.249779,0,0);}
.mf3_c01098{transform:matrix(0.240423,0.010108,-0.010501,0.249779,0,0);-ms-transform:matrix(0.240423,0.010108,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.240423,0.010108,-0.010501,0.249779,0,0);}
.ma8_c01098{transform:matrix(0.240622,0.010116,-0.010501,0.249779,0,0);-ms-transform:matrix(0.240622,0.010116,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.240622,0.010116,-0.010501,0.249779,0,0);}
.m89_c01098{transform:matrix(0.240817,0.010124,-0.010501,0.249779,0,0);-ms-transform:matrix(0.240817,0.010124,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.240817,0.010124,-0.010501,0.249779,0,0);}
.m6e_c01098{transform:matrix(0.241382,0.010148,-0.010501,0.249779,0,0);-ms-transform:matrix(0.241382,0.010148,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.241382,0.010148,-0.010501,0.249779,0,0);}
.m2e_c01098{transform:matrix(0.241781,0.010165,-0.010501,0.249779,0,0);-ms-transform:matrix(0.241781,0.010165,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.241781,0.010165,-0.010501,0.249779,0,0);}
.m69_c01098{transform:matrix(0.242261,0.010185,-0.010501,0.249779,0,0);-ms-transform:matrix(0.242261,0.010185,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.242261,0.010185,-0.010501,0.249779,0,0);}
.m10e_c01098{transform:matrix(0.242321,0.010188,-0.010501,0.249779,0,0);-ms-transform:matrix(0.242321,0.010188,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.242321,0.010188,-0.010501,0.249779,0,0);}
.m118_c01098{transform:matrix(0.242689,0.012390,-0.012746,0.249675,0,0);-ms-transform:matrix(0.242689,0.012390,-0.012746,0.249675,0,0);-webkit-transform:matrix(0.242689,0.012390,-0.012746,0.249675,0,0);}
.m9a_c01098{transform:matrix(0.242766,0.010206,-0.010501,0.249779,0,0);-ms-transform:matrix(0.242766,0.010206,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.242766,0.010206,-0.010501,0.249779,0,0);}
.m19_c01098{transform:matrix(0.243255,0.010227,-0.010501,0.249779,0,0);-ms-transform:matrix(0.243255,0.010227,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.243255,0.010227,-0.010501,0.249779,0,0);}
.mbe_c01098{transform:matrix(0.243325,0.010230,-0.010501,0.249779,0,0);-ms-transform:matrix(0.243325,0.010230,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.243325,0.010230,-0.010501,0.249779,0,0);}
.mcc_c01098{transform:matrix(0.243880,0.010253,-0.010501,0.249779,0,0);-ms-transform:matrix(0.243880,0.010253,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.243880,0.010253,-0.010501,0.249779,0,0);}
.md8_c01098{transform:matrix(0.244434,0.010277,-0.010501,0.249779,0,0);-ms-transform:matrix(0.244434,0.010277,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.244434,0.010277,-0.010501,0.249779,0,0);}
.m49_c01098{transform:matrix(0.244934,0.010298,-0.010501,0.249779,0,0);-ms-transform:matrix(0.244934,0.010298,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.244934,0.010298,-0.010501,0.249779,0,0);}
.m5d_c01098{transform:matrix(0.245243,0.010311,-0.010501,0.249779,0,0);-ms-transform:matrix(0.245243,0.010311,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.245243,0.010311,-0.010501,0.249779,0,0);}
.m2d_c01098{transform:matrix(0.245968,0.010341,-0.010501,0.249779,0,0);-ms-transform:matrix(0.245968,0.010341,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.245968,0.010341,-0.010501,0.249779,0,0);}
.m4b_c01098{transform:matrix(0.246402,0.010359,-0.010501,0.249779,0,0);-ms-transform:matrix(0.246402,0.010359,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.246402,0.010359,-0.010501,0.249779,0,0);}
.m94_c01098{transform:matrix(0.246407,0.010359,-0.010501,0.249779,0,0);-ms-transform:matrix(0.246407,0.010359,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.246407,0.010359,-0.010501,0.249779,0,0);}
.m6f_c01098{transform:matrix(0.246887,0.010380,-0.010501,0.249779,0,0);-ms-transform:matrix(0.246887,0.010380,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.246887,0.010380,-0.010501,0.249779,0,0);}
.m9c_c01098{transform:matrix(0.246937,0.010382,-0.010501,0.249779,0,0);-ms-transform:matrix(0.246937,0.010382,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.246937,0.010382,-0.010501,0.249779,0,0);}
.m81_c01098{transform:matrix(0.247346,0.010399,-0.010501,0.249779,0,0);-ms-transform:matrix(0.247346,0.010399,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.247346,0.010399,-0.010501,0.249779,0,0);}
.mf2_c01098{transform:matrix(0.247396,0.010401,-0.010501,0.249779,0,0);-ms-transform:matrix(0.247396,0.010401,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.247396,0.010401,-0.010501,0.249779,0,0);}
.m111_c01098{transform:matrix(0.247418,0.012631,-0.012746,0.249675,0,0);-ms-transform:matrix(0.247418,0.012631,-0.012746,0.249675,0,0);-webkit-transform:matrix(0.247418,0.012631,-0.012746,0.249675,0,0);}
.me0_c01098{transform:matrix(0.247826,0.010419,-0.010501,0.249779,0,0);-ms-transform:matrix(0.247826,0.010419,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.247826,0.010419,-0.010501,0.249779,0,0);}
.m46_c01098{transform:matrix(0.247886,0.010422,-0.010501,0.249779,0,0);-ms-transform:matrix(0.247886,0.010422,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.247886,0.010422,-0.010501,0.249779,0,0);}
.m82_c01098{transform:matrix(0.248291,0.010439,-0.010501,0.249779,0,0);-ms-transform:matrix(0.248291,0.010439,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.248291,0.010439,-0.010501,0.249779,0,0);}
.m129_c01098{transform:matrix(0.248661,0.012694,-0.012746,0.249675,0,0);-ms-transform:matrix(0.248661,0.012694,-0.012746,0.249675,0,0);-webkit-transform:matrix(0.248661,0.012694,-0.012746,0.249675,0,0);}
.mfa_c01098{transform:matrix(0.248925,0.010465,-0.010501,0.249779,0,0);-ms-transform:matrix(0.248925,0.010465,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.248925,0.010465,-0.010501,0.249779,0,0);}
.m71_c01098{transform:matrix(0.249040,0.010470,-0.010501,0.249779,0,0);-ms-transform:matrix(0.249040,0.010470,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.249040,0.010470,-0.010501,0.249779,0,0);}
.mb6_c01098{transform:matrix(0.249335,0.010483,-0.010501,0.249779,0,0);-ms-transform:matrix(0.249335,0.010483,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.249335,0.010483,-0.010501,0.249779,0,0);}
.m10f_c01098{transform:matrix(0.249705,0.012748,-0.012746,0.249675,0,0);-ms-transform:matrix(0.249705,0.012748,-0.012746,0.249675,0,0);-webkit-transform:matrix(0.249705,0.012748,-0.012746,0.249675,0,0);}
.mdd_c01098{transform:matrix(0.249809,0.010502,-0.010501,0.249779,0,0);-ms-transform:matrix(0.249809,0.010502,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.249809,0.010502,-0.010501,0.249779,0,0);}
.m10_c01098{transform:matrix(0.250169,0.010518,-0.010501,0.249779,0,0);-ms-transform:matrix(0.250169,0.010518,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.250169,0.010518,-0.010501,0.249779,0,0);}
.me5_c01098{transform:matrix(0.250449,0.010529,-0.010501,0.249779,0,0);-ms-transform:matrix(0.250449,0.010529,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.250449,0.010529,-0.010501,0.249779,0,0);}
.md4_c01098{transform:matrix(0.250469,0.010530,-0.010501,0.249779,0,0);-ms-transform:matrix(0.250469,0.010530,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.250469,0.010530,-0.010501,0.249779,0,0);}
.m6d_c01098{transform:matrix(0.250619,0.010537,-0.010501,0.249779,0,0);-ms-transform:matrix(0.250619,0.010537,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.250619,0.010537,-0.010501,0.249779,0,0);}
.mc3_c01098{transform:matrix(0.250838,0.010546,-0.010501,0.249779,0,0);-ms-transform:matrix(0.250838,0.010546,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.250838,0.010546,-0.010501,0.249779,0,0);}
.m110_c01098{transform:matrix(0.251023,0.012815,-0.012746,0.249675,0,0);-ms-transform:matrix(0.251023,0.012815,-0.012746,0.249675,0,0);-webkit-transform:matrix(0.251023,0.012815,-0.012746,0.249675,0,0);}
.mef_c01098{transform:matrix(0.251023,0.010554,-0.010501,0.249779,0,0);-ms-transform:matrix(0.251023,0.010554,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.251023,0.010554,-0.010501,0.249779,0,0);}
.m8e_c01098{transform:matrix(0.251223,0.010562,-0.010501,0.249779,0,0);-ms-transform:matrix(0.251223,0.010562,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.251223,0.010562,-0.010501,0.249779,0,0);}
.m93_c01098{transform:matrix(0.251323,0.010566,-0.010501,0.249779,0,0);-ms-transform:matrix(0.251323,0.010566,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.251323,0.010566,-0.010501,0.249779,0,0);}
.md5_c01098{transform:matrix(0.251498,0.010573,-0.010501,0.249779,0,0);-ms-transform:matrix(0.251498,0.010573,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.251498,0.010573,-0.010501,0.249779,0,0);}
.ma2_c01098{transform:matrix(0.251588,0.010577,-0.010501,0.249779,0,0);-ms-transform:matrix(0.251588,0.010577,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.251588,0.010577,-0.010501,0.249779,0,0);}
.mc_c01098{transform:matrix(0.252102,0.010599,-0.010501,0.249779,0,0);-ms-transform:matrix(0.252102,0.010599,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.252102,0.010599,-0.010501,0.249779,0,0);}
.ma6_c01098{transform:matrix(0.252277,0.010606,-0.010501,0.249779,0,0);-ms-transform:matrix(0.252277,0.010606,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.252277,0.010606,-0.010501,0.249779,0,0);}
.m3e_c01098{transform:matrix(0.252317,0.010608,-0.010501,0.249779,0,0);-ms-transform:matrix(0.252317,0.010608,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.252317,0.010608,-0.010501,0.249779,0,0);}
.mfc_c01098{transform:matrix(0.252392,0.010611,-0.010501,0.249779,0,0);-ms-transform:matrix(0.252392,0.010611,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.252392,0.010611,-0.010501,0.249779,0,0);}
.m41_c01098{transform:matrix(0.252427,0.010613,-0.010501,0.249779,0,0);-ms-transform:matrix(0.252427,0.010613,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.252427,0.010613,-0.010501,0.249779,0,0);}
.me_c01098{transform:matrix(0.252457,0.010614,-0.010501,0.249779,0,0);-ms-transform:matrix(0.252457,0.010614,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.252457,0.010614,-0.010501,0.249779,0,0);}
.mcb_c01098{transform:matrix(0.252657,0.010622,-0.010501,0.249779,0,0);-ms-transform:matrix(0.252657,0.010622,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.252657,0.010622,-0.010501,0.249779,0,0);}
.me6_c01098{transform:matrix(0.252747,0.010626,-0.010501,0.249779,0,0);-ms-transform:matrix(0.252747,0.010626,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.252747,0.010626,-0.010501,0.249779,0,0);}
.m7e_c01098{transform:matrix(0.253076,0.010640,-0.010501,0.249779,0,0);-ms-transform:matrix(0.253076,0.010640,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.253076,0.010640,-0.010501,0.249779,0,0);}
.ma0_c01098{transform:matrix(0.253136,0.010642,-0.010501,0.249779,0,0);-ms-transform:matrix(0.253136,0.010642,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.253136,0.010642,-0.010501,0.249779,0,0);}
.m85_c01098{transform:matrix(0.253166,0.010644,-0.010501,0.249779,0,0);-ms-transform:matrix(0.253166,0.010644,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.253166,0.010644,-0.010501,0.249779,0,0);}
.m16_c01098{transform:matrix(0.253176,0.010644,-0.010501,0.249779,0,0);-ms-transform:matrix(0.253176,0.010644,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.253176,0.010644,-0.010501,0.249779,0,0);}
.mfd_c01098{transform:matrix(0.253221,0.010646,-0.010501,0.249779,0,0);-ms-transform:matrix(0.253221,0.010646,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.253221,0.010646,-0.010501,0.249779,0,0);}
.m88_c01098{transform:matrix(0.253241,0.010647,-0.010501,0.249779,0,0);-ms-transform:matrix(0.253241,0.010647,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.253241,0.010647,-0.010501,0.249779,0,0);}
.m87_c01098{transform:matrix(0.253561,0.010660,-0.010501,0.249779,0,0);-ms-transform:matrix(0.253561,0.010660,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.253561,0.010660,-0.010501,0.249779,0,0);}
.m8d_c01098{transform:matrix(0.253946,0.010676,-0.010501,0.249779,0,0);-ms-transform:matrix(0.253946,0.010676,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.253946,0.010676,-0.010501,0.249779,0,0);}
.m55_c01098{transform:matrix(0.253961,0.010677,-0.010501,0.249779,0,0);-ms-transform:matrix(0.253961,0.010677,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.253961,0.010677,-0.010501,0.249779,0,0);}
.mf1_c01098{transform:matrix(0.254360,0.010694,-0.010501,0.249779,0,0);-ms-transform:matrix(0.254360,0.010694,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.254360,0.010694,-0.010501,0.249779,0,0);}
.m10a_c01098{transform:matrix(0.254690,0.010708,-0.010501,0.249779,0,0);-ms-transform:matrix(0.254690,0.010708,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.254690,0.010708,-0.010501,0.249779,0,0);}
.m109_c01098{transform:matrix(0.254760,0.010711,-0.010501,0.249779,0,0);-ms-transform:matrix(0.254760,0.010711,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.254760,0.010711,-0.010501,0.249779,0,0);}
.m1a_c01098{transform:matrix(0.254925,0.010718,-0.010501,0.249779,0,0);-ms-transform:matrix(0.254925,0.010718,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.254925,0.010718,-0.010501,0.249779,0,0);}
.me4_c01098{transform:matrix(0.255040,0.010722,-0.010501,0.249779,0,0);-ms-transform:matrix(0.255040,0.010722,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.255040,0.010722,-0.010501,0.249779,0,0);}
.md7_c01098{transform:matrix(0.255055,0.010723,-0.010501,0.249779,0,0);-ms-transform:matrix(0.255055,0.010723,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.255055,0.010723,-0.010501,0.249779,0,0);}
.m98_c01098{transform:matrix(0.255080,0.010724,-0.010501,0.249779,0,0);-ms-transform:matrix(0.255080,0.010724,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.255080,0.010724,-0.010501,0.249779,0,0);}
.mc7_c01098{transform:matrix(0.255629,0.010747,-0.010501,0.249779,0,0);-ms-transform:matrix(0.255629,0.010747,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.255629,0.010747,-0.010501,0.249779,0,0);}
.m7a_c01098{transform:matrix(0.256094,0.010767,-0.010501,0.249779,0,0);-ms-transform:matrix(0.256094,0.010767,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.256094,0.010767,-0.010501,0.249779,0,0);}
.m114_c01098{transform:matrix(0.256156,0.013077,-0.012746,0.249675,0,0);-ms-transform:matrix(0.256156,0.013077,-0.012746,0.249675,0,0);-webkit-transform:matrix(0.256156,0.013077,-0.012746,0.249675,0,0);}
.m78_c01098{transform:matrix(0.256518,0.010785,-0.010501,0.249779,0,0);-ms-transform:matrix(0.256518,0.010785,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.256518,0.010785,-0.010501,0.249779,0,0);}
.m74_c01098{transform:matrix(0.256653,0.010790,-0.010501,0.249779,0,0);-ms-transform:matrix(0.256653,0.010790,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.256653,0.010790,-0.010501,0.249779,0,0);}
.m2a_c01098{transform:matrix(0.256738,0.010794,-0.010501,0.249779,0,0);-ms-transform:matrix(0.256738,0.010794,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.256738,0.010794,-0.010501,0.249779,0,0);}
.m105_c01098{transform:matrix(0.257013,0.010805,-0.010501,0.249779,0,0);-ms-transform:matrix(0.257013,0.010805,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.257013,0.010805,-0.010501,0.249779,0,0);}
.m1d_c01098{transform:matrix(0.257138,0.010811,-0.010501,0.249779,0,0);-ms-transform:matrix(0.257138,0.010811,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.257138,0.010811,-0.010501,0.249779,0,0);}
.mbd_c01098{transform:matrix(0.257178,0.010812,-0.010501,0.249779,0,0);-ms-transform:matrix(0.257178,0.010812,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.257178,0.010812,-0.010501,0.249779,0,0);}
.m8f_c01098{transform:matrix(0.257243,0.010815,-0.010501,0.249779,0,0);-ms-transform:matrix(0.257243,0.010815,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.257243,0.010815,-0.010501,0.249779,0,0);}
.mbf_c01098{transform:matrix(0.257343,0.010819,-0.010501,0.249779,0,0);-ms-transform:matrix(0.257343,0.010819,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.257343,0.010819,-0.010501,0.249779,0,0);}
.m83_c01098{transform:matrix(0.257772,0.010837,-0.010501,0.249779,0,0);-ms-transform:matrix(0.257772,0.010837,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.257772,0.010837,-0.010501,0.249779,0,0);}
.m9f_c01098{transform:matrix(0.257907,0.010843,-0.010501,0.249779,0,0);-ms-transform:matrix(0.257907,0.010843,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.257907,0.010843,-0.010501,0.249779,0,0);}
.mf7_c01098{transform:matrix(0.258122,0.010852,-0.010501,0.249779,0,0);-ms-transform:matrix(0.258122,0.010852,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.258122,0.010852,-0.010501,0.249779,0,0);}
.mff_c01098{transform:matrix(0.258607,0.010872,-0.010501,0.249779,0,0);-ms-transform:matrix(0.258607,0.010872,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.258607,0.010872,-0.010501,0.249779,0,0);}
.m4f_c01098{transform:matrix(0.260070,0.010934,-0.010501,0.249779,0,0);-ms-transform:matrix(0.260070,0.010934,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.260070,0.010934,-0.010501,0.249779,0,0);}
.ma4_c01098{transform:matrix(0.260130,0.010936,-0.010501,0.249779,0,0);-ms-transform:matrix(0.260130,0.010936,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.260130,0.010936,-0.010501,0.249779,0,0);}
.m7d_c01098{transform:matrix(0.260205,0.010940,-0.010501,0.249779,0,0);-ms-transform:matrix(0.260205,0.010940,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.260205,0.010940,-0.010501,0.249779,0,0);}
.m18_c01098{transform:matrix(0.260285,0.010943,-0.010501,0.249779,0,0);-ms-transform:matrix(0.260285,0.010943,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.260285,0.010943,-0.010501,0.249779,0,0);}
.m107_c01098{transform:matrix(0.260320,0.010944,-0.010501,0.249779,0,0);-ms-transform:matrix(0.260320,0.010944,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.260320,0.010944,-0.010501,0.249779,0,0);}
.mca_c01098{transform:matrix(0.261044,0.010975,-0.010501,0.249779,0,0);-ms-transform:matrix(0.261044,0.010975,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.261044,0.010975,-0.010501,0.249779,0,0);}
.m102_c01098{transform:matrix(0.261104,0.010977,-0.010501,0.249779,0,0);-ms-transform:matrix(0.261104,0.010977,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.261104,0.010977,-0.010501,0.249779,0,0);}
.mdb_c01098{transform:matrix(0.261204,0.010982,-0.010501,0.249779,0,0);-ms-transform:matrix(0.261204,0.010982,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.261204,0.010982,-0.010501,0.249779,0,0);}
.m62_c01098{transform:matrix(0.261264,0.010984,-0.010501,0.249779,0,0);-ms-transform:matrix(0.261264,0.010984,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.261264,0.010984,-0.010501,0.249779,0,0);}
.m5f_c01098{transform:matrix(0.261359,0.010988,-0.010501,0.249779,0,0);-ms-transform:matrix(0.261359,0.010988,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.261359,0.010988,-0.010501,0.249779,0,0);}
.ma7_c01098{transform:matrix(0.261459,0.010992,-0.010501,0.249779,0,0);-ms-transform:matrix(0.261459,0.010992,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.261459,0.010992,-0.010501,0.249779,0,0);}
.mc4_c01098{transform:matrix(0.261619,0.010999,-0.010501,0.249779,0,0);-ms-transform:matrix(0.261619,0.010999,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.261619,0.010999,-0.010501,0.249779,0,0);}
.mf5_c01098{transform:matrix(0.261734,0.011004,-0.010501,0.249779,0,0);-ms-transform:matrix(0.261734,0.011004,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.261734,0.011004,-0.010501,0.249779,0,0);}
.m5b_c01098{transform:matrix(0.261979,0.011014,-0.010501,0.249779,0,0);-ms-transform:matrix(0.261979,0.011014,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.261979,0.011014,-0.010501,0.249779,0,0);}
.me3_c01098{transform:matrix(0.262118,0.011020,-0.010501,0.249779,0,0);-ms-transform:matrix(0.262118,0.011020,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.262118,0.011020,-0.010501,0.249779,0,0);}
.m2c_c01098{transform:matrix(0.262758,0.011047,-0.010501,0.249779,0,0);-ms-transform:matrix(0.262758,0.011047,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.262758,0.011047,-0.010501,0.249779,0,0);}
.m17_c01098{transform:matrix(0.263058,0.011059,-0.010501,0.249779,0,0);-ms-transform:matrix(0.263058,0.011059,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.263058,0.011059,-0.010501,0.249779,0,0);}
.mde_c01098{transform:matrix(0.263552,0.011080,-0.010501,0.249779,0,0);-ms-transform:matrix(0.263552,0.011080,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.263552,0.011080,-0.010501,0.249779,0,0);}
.m67_c01098{transform:matrix(0.263577,0.011081,-0.010501,0.249779,0,0);-ms-transform:matrix(0.263577,0.011081,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.263577,0.011081,-0.010501,0.249779,0,0);}
.m12_c01098{transform:matrix(0.263782,0.011090,-0.010501,0.249779,0,0);-ms-transform:matrix(0.263782,0.011090,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.263782,0.011090,-0.010501,0.249779,0,0);}
.m30_c01098{transform:matrix(0.263787,0.011090,-0.010501,0.249779,0,0);-ms-transform:matrix(0.263787,0.011090,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.263787,0.011090,-0.010501,0.249779,0,0);}
.m5e_c01098{transform:matrix(0.264381,0.011115,-0.010501,0.249779,0,0);-ms-transform:matrix(0.264381,0.011115,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.264381,0.011115,-0.010501,0.249779,0,0);}
.m66_c01098{transform:matrix(0.264446,0.011118,-0.010501,0.249779,0,0);-ms-transform:matrix(0.264446,0.011118,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.264446,0.011118,-0.010501,0.249779,0,0);}
.m38_c01098{transform:matrix(0.264531,0.011121,-0.010501,0.249779,0,0);-ms-transform:matrix(0.264531,0.011121,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.264531,0.011121,-0.010501,0.249779,0,0);}
.mc9_c01098{transform:matrix(0.264871,0.011136,-0.010501,0.249779,0,0);-ms-transform:matrix(0.264871,0.011136,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.264871,0.011136,-0.010501,0.249779,0,0);}
.m90_c01098{transform:matrix(0.265406,0.011158,-0.010501,0.249779,0,0);-ms-transform:matrix(0.265406,0.011158,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.265406,0.011158,-0.010501,0.249779,0,0);}
.ma_c01098{transform:matrix(0.265441,0.011160,-0.010501,0.249779,0,0);-ms-transform:matrix(0.265441,0.011160,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.265441,0.011160,-0.010501,0.249779,0,0);}
.m35_c01098{transform:matrix(0.266170,0.011190,-0.010501,0.249779,0,0);-ms-transform:matrix(0.266170,0.011190,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.266170,0.011190,-0.010501,0.249779,0,0);}
.m65_c01098{transform:matrix(0.266205,0.011192,-0.010501,0.249779,0,0);-ms-transform:matrix(0.266205,0.011192,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.266205,0.011192,-0.010501,0.249779,0,0);}
.m8c_c01098{transform:matrix(0.266709,0.011213,-0.010501,0.249779,0,0);-ms-transform:matrix(0.266709,0.011213,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.266709,0.011213,-0.010501,0.249779,0,0);}
.m7b_c01098{transform:matrix(0.266919,0.011222,-0.010501,0.249779,0,0);-ms-transform:matrix(0.266919,0.011222,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.266919,0.011222,-0.010501,0.249779,0,0);}
.m47_c01098{transform:matrix(0.266969,0.011224,-0.010501,0.249779,0,0);-ms-transform:matrix(0.266969,0.011224,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.266969,0.011224,-0.010501,0.249779,0,0);}
.mcf_c01098{transform:matrix(0.267174,0.011233,-0.010501,0.249779,0,0);-ms-transform:matrix(0.267174,0.011233,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.267174,0.011233,-0.010501,0.249779,0,0);}
.mf6_c01098{transform:matrix(0.267354,0.011240,-0.010501,0.249779,0,0);-ms-transform:matrix(0.267354,0.011240,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.267354,0.011240,-0.010501,0.249779,0,0);}
.m50_c01098{transform:matrix(0.267414,0.011243,-0.010501,0.249779,0,0);-ms-transform:matrix(0.267414,0.011243,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.267414,0.011243,-0.010501,0.249779,0,0);}
.m7f_c01098{transform:matrix(0.267778,0.011258,-0.010501,0.249779,0,0);-ms-transform:matrix(0.267778,0.011258,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.267778,0.011258,-0.010501,0.249779,0,0);}
.m43_c01098{transform:matrix(0.268093,0.011271,-0.010501,0.249779,0,0);-ms-transform:matrix(0.268093,0.011271,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.268093,0.011271,-0.010501,0.249779,0,0);}
.m2f_c01098{transform:matrix(0.268103,0.011272,-0.010501,0.249779,0,0);-ms-transform:matrix(0.268103,0.011272,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.268103,0.011272,-0.010501,0.249779,0,0);}
.md3_c01098{transform:matrix(0.268283,0.011279,-0.010501,0.249779,0,0);-ms-transform:matrix(0.268283,0.011279,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.268283,0.011279,-0.010501,0.249779,0,0);}
.m77_c01098{transform:matrix(0.268543,0.011290,-0.010501,0.249779,0,0);-ms-transform:matrix(0.268543,0.011290,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.268543,0.011290,-0.010501,0.249779,0,0);}
.m8a_c01098{transform:matrix(0.269132,0.011315,-0.010501,0.249779,0,0);-ms-transform:matrix(0.269132,0.011315,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.269132,0.011315,-0.010501,0.249779,0,0);}
.mc2_c01098{transform:matrix(0.269257,0.011320,-0.010501,0.249779,0,0);-ms-transform:matrix(0.269257,0.011320,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.269257,0.011320,-0.010501,0.249779,0,0);}
.md1_c01098{transform:matrix(0.269512,0.011331,-0.010501,0.249779,0,0);-ms-transform:matrix(0.269512,0.011331,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.269512,0.011331,-0.010501,0.249779,0,0);}
.m32_c01098{transform:matrix(0.269517,0.011331,-0.010501,0.249779,0,0);-ms-transform:matrix(0.269517,0.011331,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.269517,0.011331,-0.010501,0.249779,0,0);}
.mda_c01098{transform:matrix(0.269977,0.011350,-0.010501,0.249779,0,0);-ms-transform:matrix(0.269977,0.011350,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.269977,0.011350,-0.010501,0.249779,0,0);}
.m7c_c01098{transform:matrix(0.270016,0.011352,-0.010501,0.249779,0,0);-ms-transform:matrix(0.270016,0.011352,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.270016,0.011352,-0.010501,0.249779,0,0);}
.m33_c01098{transform:matrix(0.270656,0.011379,-0.010501,0.249779,0,0);-ms-transform:matrix(0.270656,0.011379,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.270656,0.011379,-0.010501,0.249779,0,0);}
.m24_c01098{transform:matrix(0.270846,0.011387,-0.010501,0.249779,0,0);-ms-transform:matrix(0.270846,0.011387,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.270846,0.011387,-0.010501,0.249779,0,0);}
.m53_c01098{transform:matrix(0.271320,0.011407,-0.010501,0.249779,0,0);-ms-transform:matrix(0.271320,0.011407,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.271320,0.011407,-0.010501,0.249779,0,0);}
.m26_c01098{transform:matrix(0.271340,0.011408,-0.010501,0.249779,0,0);-ms-transform:matrix(0.271340,0.011408,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.271340,0.011408,-0.010501,0.249779,0,0);}
.m6a_c01098{transform:matrix(0.271530,0.011416,-0.010501,0.249779,0,0);-ms-transform:matrix(0.271530,0.011416,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.271530,0.011416,-0.010501,0.249779,0,0);}
.mab_c01098{transform:matrix(0.271835,0.011428,-0.010501,0.249779,0,0);-ms-transform:matrix(0.271835,0.011428,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.271835,0.011428,-0.010501,0.249779,0,0);}
.m61_c01098{transform:matrix(0.271840,0.011429,-0.010501,0.249779,0,0);-ms-transform:matrix(0.271840,0.011429,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.271840,0.011429,-0.010501,0.249779,0,0);}
.m44_c01098{transform:matrix(0.272479,0.011456,-0.010501,0.249779,0,0);-ms-transform:matrix(0.272479,0.011456,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.272479,0.011456,-0.010501,0.249779,0,0);}
.m5_c01098{transform:matrix(0.273543,0.011500,-0.010501,0.249779,0,0);-ms-transform:matrix(0.273543,0.011500,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.273543,0.011500,-0.010501,0.249779,0,0);}
.m4e_c01098{transform:matrix(0.273863,0.011514,-0.010501,0.249779,0,0);-ms-transform:matrix(0.273863,0.011514,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.273863,0.011514,-0.010501,0.249779,0,0);}
.m68_c01098{transform:matrix(0.274178,0.011527,-0.010501,0.249779,0,0);-ms-transform:matrix(0.274178,0.011527,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.274178,0.011527,-0.010501,0.249779,0,0);}
.m3_c01098{transform:matrix(0.274443,0.011538,-0.010501,0.249779,0,0);-ms-transform:matrix(0.274443,0.011538,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.274443,0.011538,-0.010501,0.249779,0,0);}
.mc8_c01098{transform:matrix(0.274448,0.011538,-0.010501,0.249779,0,0);-ms-transform:matrix(0.274448,0.011538,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.274448,0.011538,-0.010501,0.249779,0,0);}
.m3d_c01098{transform:matrix(0.275701,0.011591,-0.010501,0.249779,0,0);-ms-transform:matrix(0.275701,0.011591,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.275701,0.011591,-0.010501,0.249779,0,0);}
.m9_c01098{transform:matrix(0.276476,0.011624,-0.010501,0.249779,0,0);-ms-transform:matrix(0.276476,0.011624,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.276476,0.011624,-0.010501,0.249779,0,0);}
.m91_c01098{transform:matrix(0.276706,0.011633,-0.010501,0.249779,0,0);-ms-transform:matrix(0.276706,0.011633,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.276706,0.011633,-0.010501,0.249779,0,0);}
.m3c_c01098{transform:matrix(0.276865,0.011640,-0.010501,0.249779,0,0);-ms-transform:matrix(0.276865,0.011640,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.276865,0.011640,-0.010501,0.249779,0,0);}
.maa_c01098{transform:matrix(0.276935,0.011643,-0.010501,0.249779,0,0);-ms-transform:matrix(0.276935,0.011643,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.276935,0.011643,-0.010501,0.249779,0,0);}
.m79_c01098{transform:matrix(0.277625,0.011672,-0.010501,0.249779,0,0);-ms-transform:matrix(0.277625,0.011672,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.277625,0.011672,-0.010501,0.249779,0,0);}
.mae_c01098{transform:matrix(0.277910,0.011684,-0.010501,0.249779,0,0);-ms-transform:matrix(0.277910,0.011684,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.277910,0.011684,-0.010501,0.249779,0,0);}
.mc5_c01098{transform:matrix(0.278254,0.011698,-0.010501,0.249779,0,0);-ms-transform:matrix(0.278254,0.011698,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.278254,0.011698,-0.010501,0.249779,0,0);}
.m6b_c01098{transform:matrix(0.278779,0.011720,-0.010501,0.249779,0,0);-ms-transform:matrix(0.278779,0.011720,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.278779,0.011720,-0.010501,0.249779,0,0);}
.m40_c01098{transform:matrix(0.278954,0.011728,-0.010501,0.249779,0,0);-ms-transform:matrix(0.278954,0.011728,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.278954,0.011728,-0.010501,0.249779,0,0);}
.mc0_c01098{transform:matrix(0.279108,0.011734,-0.010501,0.249779,0,0);-ms-transform:matrix(0.279108,0.011734,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.279108,0.011734,-0.010501,0.249779,0,0);}
.m37_c01098{transform:matrix(0.279633,0.011756,-0.010501,0.249779,0,0);-ms-transform:matrix(0.279633,0.011756,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.279633,0.011756,-0.010501,0.249779,0,0);}
.m5c_c01098{transform:matrix(0.279643,0.011757,-0.010501,0.249779,0,0);-ms-transform:matrix(0.279643,0.011757,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.279643,0.011757,-0.010501,0.249779,0,0);}
.m7_c01098{transform:matrix(0.281262,0.011825,-0.010501,0.249779,0,0);-ms-transform:matrix(0.281262,0.011825,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.281262,0.011825,-0.010501,0.249779,0,0);}
.ma9_c01098{transform:matrix(0.281441,0.011832,-0.010501,0.249779,0,0);-ms-transform:matrix(0.281441,0.011832,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.281441,0.011832,-0.010501,0.249779,0,0);}
.m31_c01098{transform:matrix(0.281531,0.011836,-0.010501,0.249779,0,0);-ms-transform:matrix(0.281531,0.011836,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.281531,0.011836,-0.010501,0.249779,0,0);}
.mf4_c01098{transform:matrix(0.282470,0.011876,-0.010501,0.249779,0,0);-ms-transform:matrix(0.282470,0.011876,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.282470,0.011876,-0.010501,0.249779,0,0);}
.m45_c01098{transform:matrix(0.282995,0.011898,-0.010501,0.249779,0,0);-ms-transform:matrix(0.282995,0.011898,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.282995,0.011898,-0.010501,0.249779,0,0);}
.m8b_c01098{transform:matrix(0.283784,0.011931,-0.010501,0.249779,0,0);-ms-transform:matrix(0.283784,0.011931,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.283784,0.011931,-0.010501,0.249779,0,0);}
.md_c01098{transform:matrix(0.284389,0.011956,-0.010501,0.249779,0,0);-ms-transform:matrix(0.284389,0.011956,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.284389,0.011956,-0.010501,0.249779,0,0);}
.m51_c01098{transform:matrix(0.286277,0.012036,-0.010501,0.249779,0,0);-ms-transform:matrix(0.286277,0.012036,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.286277,0.012036,-0.010501,0.249779,0,0);}
.m11_c01098{transform:matrix(0.288495,0.012129,-0.010501,0.249779,0,0);-ms-transform:matrix(0.288495,0.012129,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.288495,0.012129,-0.010501,0.249779,0,0);}
.m14_c01098{transform:matrix(0.289175,0.012157,-0.010501,0.249779,0,0);-ms-transform:matrix(0.289175,0.012157,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.289175,0.012157,-0.010501,0.249779,0,0);}
.m4a_c01098{transform:matrix(0.290029,0.012193,-0.010501,0.249779,0,0);-ms-transform:matrix(0.290029,0.012193,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.290029,0.012193,-0.010501,0.249779,0,0);}
.m76_c01098{transform:matrix(0.292057,0.012279,-0.010501,0.249779,0,0);-ms-transform:matrix(0.292057,0.012279,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.292057,0.012279,-0.010501,0.249779,0,0);}
.m4d_c01098{transform:matrix(0.294395,0.012377,-0.010501,0.249779,0,0);-ms-transform:matrix(0.294395,0.012377,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.294395,0.012377,-0.010501,0.249779,0,0);}
.m13_c01098{transform:matrix(0.295699,0.012432,-0.010501,0.249779,0,0);-ms-transform:matrix(0.295699,0.012432,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.295699,0.012432,-0.010501,0.249779,0,0);}
.m126_c01098{transform:matrix(0.297323,0.015179,-0.012746,0.249675,0,0);-ms-transform:matrix(0.297323,0.015179,-0.012746,0.249675,0,0);-webkit-transform:matrix(0.297323,0.015179,-0.012746,0.249675,0,0);}
.m48_c01098{transform:matrix(0.298601,0.012554,-0.010501,0.249779,0,0);-ms-transform:matrix(0.298601,0.012554,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.298601,0.012554,-0.010501,0.249779,0,0);}
.m15_c01098{transform:matrix(0.303712,0.012769,-0.010501,0.249779,0,0);-ms-transform:matrix(0.303712,0.012769,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.303712,0.012769,-0.010501,0.249779,0,0);}
.m42_c01098{transform:matrix(0.305960,0.012863,-0.010501,0.249779,0,0);-ms-transform:matrix(0.305960,0.012863,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.305960,0.012863,-0.010501,0.249779,0,0);}
.m119_c01098{transform:matrix(0.306561,0.015650,-0.012746,0.249675,0,0);-ms-transform:matrix(0.306561,0.015650,-0.012746,0.249675,0,0);-webkit-transform:matrix(0.306561,0.015650,-0.012746,0.249675,0,0);}
.mf_c01098{transform:matrix(0.307234,0.012917,-0.010501,0.249779,0,0);-ms-transform:matrix(0.307234,0.012917,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.307234,0.012917,-0.010501,0.249779,0,0);}
.m4c_c01098{transform:matrix(0.309706,0.013021,-0.010501,0.249779,0,0);-ms-transform:matrix(0.309706,0.013021,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.309706,0.013021,-0.010501,0.249779,0,0);}
.mad_c01098{transform:matrix(0.316236,0.013295,-0.010501,0.249779,0,0);-ms-transform:matrix(0.316236,0.013295,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.316236,0.013295,-0.010501,0.249779,0,0);}
.m1_c01098{transform:matrix(0.318150,0.012739,-0.010002,0.249800,0,0);-ms-transform:matrix(0.318150,0.012739,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.318150,0.012739,-0.010002,0.249800,0,0);}
.m20_c01098{transform:matrix(0.361955,0.015217,-0.010501,0.249779,0,0);-ms-transform:matrix(0.361955,0.015217,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.361955,0.015217,-0.010501,0.249779,0,0);}
.m75_c01098{transform:matrix(0.376348,0.015822,-0.010501,0.249779,0,0);-ms-transform:matrix(0.376348,0.015822,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.376348,0.015822,-0.010501,0.249779,0,0);}
.md0_c01098{transform:matrix(0.398013,0.016733,-0.010501,0.249779,0,0);-ms-transform:matrix(0.398013,0.016733,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.398013,0.016733,-0.010501,0.249779,0,0);}
.m11a_c01098{transform:matrix(2.825545,0.144247,-0.012746,0.249675,0,0);-ms-transform:matrix(2.825545,0.144247,-0.012746,0.249675,0,0);-webkit-transform:matrix(2.825545,0.144247,-0.012746,0.249675,0,0);}
.v0_c01098{vertical-align:0.000000px;}
.ls0_c01098{letter-spacing:0.000000px;}
.sc__c01098{text-shadow:none;}
.sc0_c01098{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__c01098{-webkit-text-stroke:0px transparent;}
.sc0_c01098{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01098{word-spacing:0.000000px;}
.fc0_c01098{color:transparent;}
.fs6_c01098{font-size:42.012640px;}
.fs2_c01098{font-size:65.992245px;}
.fs1_c01098{font-size:71.991540px;}
.fs3_c01098{font-size:77.990834px;}
.fs5_c01098{font-size:78.023474px;}
.fs4_c01098{font-size:83.990129px;}
.fs7_c01098{font-size:84.025280px;}
.fs0_c01098{font-size:119.976058px;}
.y0_c01098{bottom:0.000000px;}
.y148_c01098{bottom:25.526314px;}
.y147_c01098{bottom:28.369054px;}
.y146_c01098{bottom:31.805281px;}
.y145_c01098{bottom:33.514062px;}
.y144_c01098{bottom:34.590264px;}
.y143_c01098{bottom:36.909056px;}
.y142_c01098{bottom:37.970799px;}
.y141_c01098{bottom:41.996918px;}
.y140_c01098{bottom:43.590795px;}
.y13f_c01098{bottom:46.482954px;}
.y13e_c01098{bottom:49.173000px;}
.y13d_c01098{bottom:61.461162px;}
.y13c_c01098{bottom:64.082119px;}
.y13b_c01098{bottom:67.289287px;}
.y13a_c01098{bottom:68.897668px;}
.y139_c01098{bottom:69.910857px;}
.y138_c01098{bottom:71.585505px;}
.y137_c01098{bottom:73.158939px;}
.y136_c01098{bottom:76.881339px;}
.y135_c01098{bottom:78.370146px;}
.y134_c01098{bottom:81.117792px;}
.y133_c01098{bottom:83.715997px;}
.y131_c01098{bottom:105.985426px;}
.y130_c01098{bottom:109.977732px;}
.y12f_c01098{bottom:112.240831px;}
.y132_c01098{bottom:113.405409px;}
.y12e_c01098{bottom:113.412582px;}
.y12d_c01098{bottom:116.246524px;}
.y12c_c01098{bottom:121.916169px;}
.y12b_c01098{bottom:123.611179px;}
.y12a_c01098{bottom:125.796402px;}
.y129_c01098{bottom:129.889458px;}
.y128_c01098{bottom:134.349332px;}
.y127_c01098{bottom:139.347000px;}
.y126_c01098{bottom:141.204939px;}
.y125_c01098{bottom:143.354580px;}
.y124_c01098{bottom:146.122526px;}
.y123_c01098{bottom:147.765728px;}
.y122_c01098{bottom:152.110113px;}
.y121_c01098{bottom:155.942718px;}
.y120_c01098{bottom:157.531430px;}
.y11f_c01098{bottom:162.988287px;}
.y11e_c01098{bottom:165.637248px;}
.y11d_c01098{bottom:171.039993px;}
.y11c_c01098{bottom:173.213660px;}
.y11b_c01098{bottom:173.414810px;}
.y11a_c01098{bottom:180.519783px;}
.y119_c01098{bottom:182.090999px;}
.y118_c01098{bottom:183.167588px;}
.y117_c01098{bottom:188.544084px;}
.y116_c01098{bottom:190.115300px;}
.y115_c01098{bottom:194.889309px;}
.y114_c01098{bottom:199.701834px;}
.y113_c01098{bottom:201.230327px;}
.y112_c01098{bottom:205.494792px;}
.y111_c01098{bottom:208.576887px;}
.y110_c01098{bottom:209.623826px;}
.y10f_c01098{bottom:212.657510px;}
.y10e_c01098{bottom:215.499593px;}
.y10d_c01098{bottom:217.772304px;}
.y10c_c01098{bottom:223.990440px;}
.y10b_c01098{bottom:225.656160px;}
.y10a_c01098{bottom:228.463836px;}
.y109_c01098{bottom:231.307620px;}
.y108_c01098{bottom:233.015420px;}
.y107_c01098{bottom:236.324976px;}
.y106_c01098{bottom:238.071593px;}
.y105_c01098{bottom:239.782290px;}
.y104_c01098{bottom:241.514003px;}
.y103_c01098{bottom:248.686103px;}
.y102_c01098{bottom:261.879500px;}
.y101_c01098{bottom:272.112653px;}
.y100_c01098{bottom:273.080396px;}
.yff_c01098{bottom:278.099669px;}
.yfe_c01098{bottom:279.568766px;}
.yfd_c01098{bottom:286.210415px;}
.yfc_c01098{bottom:288.199095px;}
.yfb_c01098{bottom:292.021265px;}
.yfa_c01098{bottom:293.428010px;}
.yf9_c01098{bottom:297.226554px;}
.yf8_c01098{bottom:301.540898px;}
.yf7_c01098{bottom:302.969315px;}
.yf6_c01098{bottom:307.352189px;}
.yf5_c01098{bottom:309.631056px;}
.yf4_c01098{bottom:311.047692px;}
.yf3_c01098{bottom:314.368238px;}
.yf2_c01098{bottom:315.743055px;}
.yf1_c01098{bottom:323.031660px;}
.yf0_c01098{bottom:325.339557px;}
.yef_c01098{bottom:327.286419px;}
.yee_c01098{bottom:330.594554px;}
.yed_c01098{bottom:332.081610px;}
.yec_c01098{bottom:336.823202px;}
.yeb_c01098{bottom:338.286633px;}
.yea_c01098{bottom:342.537486px;}
.ye9_c01098{bottom:344.956313px;}
.ye8_c01098{bottom:346.403504px;}
.ye7_c01098{bottom:349.137137px;}
.ye6_c01098{bottom:351.105167px;}
.ye5_c01098{bottom:356.817566px;}
.ye4_c01098{bottom:358.687644px;}
.ye3_c01098{bottom:361.612946px;}
.ye2_c01098{bottom:362.537093px;}
.ye1_c01098{bottom:364.973357px;}
.ye0_c01098{bottom:366.378653px;}
.ydf_c01098{bottom:367.790438px;}
.yde_c01098{bottom:369.958439px;}
.ydd_c01098{bottom:371.143478px;}
.ydc_c01098{bottom:373.508187px;}
.ydb_c01098{bottom:375.897908px;}
.yda_c01098{bottom:377.337665px;}
.yd9_c01098{bottom:380.186183px;}
.yd8_c01098{bottom:381.566859px;}
.yd7_c01098{bottom:385.396463px;}
.yd6_c01098{bottom:389.606352px;}
.yd5_c01098{bottom:391.147877px;}
.yd4_c01098{bottom:395.895116px;}
.yd3_c01098{bottom:398.524430px;}
.yd2_c01098{bottom:400.585835px;}
.yd1_c01098{bottom:405.202596px;}
.yd0_c01098{bottom:406.768727px;}
.ycf_c01098{bottom:412.502231px;}
.yce_c01098{bottom:415.145454px;}
.ycd_c01098{bottom:416.721588px;}
.ycc_c01098{bottom:420.769370px;}
.ycb_c01098{bottom:425.728482px;}
.yca_c01098{bottom:427.793604px;}
.yc9_c01098{bottom:430.982889px;}
.yc8_c01098{bottom:432.039143px;}
.yc7_c01098{bottom:435.208610px;}
.yc6_c01098{bottom:437.740746px;}
.yc5_c01098{bottom:441.987356px;}
.yc4_c01098{bottom:443.975433px;}
.yc3_c01098{bottom:445.605644px;}
.yc2_c01098{bottom:450.712892px;}
.yc1_c01098{bottom:452.326547px;}
.yc0_c01098{bottom:453.899040px;}
.ybf_c01098{bottom:456.943434px;}
.ybe_c01098{bottom:461.663898px;}
.ybd_c01098{bottom:462.739857px;}
.ybc_c01098{bottom:467.971949px;}
.ybb_c01098{bottom:469.476096px;}
.yba_c01098{bottom:473.081663px;}
.yb9_c01098{bottom:473.523194px;}
.yb8_c01098{bottom:477.169431px;}
.yb7_c01098{bottom:482.229920px;}
.yb6_c01098{bottom:487.799876px;}
.yb5_c01098{bottom:489.824250px;}
.yb4_c01098{bottom:493.388214px;}
.yb3_c01098{bottom:498.942663px;}
.yb2_c01098{bottom:500.410361px;}
.yb1_c01098{bottom:507.035121px;}
.yb0_c01098{bottom:508.617384px;}
.yaf_c01098{bottom:513.128378px;}
.yae_c01098{bottom:515.681597px;}
.yad_c01098{bottom:519.807012px;}
.yac_c01098{bottom:524.898722px;}
.yab_c01098{bottom:527.407377px;}
.yaa_c01098{bottom:531.750395px;}
.ya9_c01098{bottom:535.894256px;}
.ya8_c01098{bottom:538.017599px;}
.ya7_c01098{bottom:541.019643px;}
.ya6_c01098{bottom:542.545782px;}
.ya5_c01098{bottom:547.532336px;}
.ya4_c01098{bottom:549.013835px;}
.ya3_c01098{bottom:551.021514px;}
.ya2_c01098{bottom:552.499422px;}
.ya1_c01098{bottom:556.504449px;}
.ya0_c01098{bottom:559.510022px;}
.y9f_c01098{bottom:563.945712px;}
.y9e_c01098{bottom:564.922640px;}
.y9d_c01098{bottom:571.656773px;}
.y9c_c01098{bottom:574.784736px;}
.y9b_c01098{bottom:576.357248px;}
.y9a_c01098{bottom:579.347538px;}
.y99_c01098{bottom:581.873190px;}
.y98_c01098{bottom:583.967882px;}
.y97_c01098{bottom:587.513967px;}
.y96_c01098{bottom:593.148129px;}
.y95_c01098{bottom:597.632865px;}
.y94_c01098{bottom:599.756321px;}
.y93_c01098{bottom:607.239465px;}
.y92_c01098{bottom:610.902699px;}
.y91_c01098{bottom:612.410374px;}
.y90_c01098{bottom:617.469792px;}
.y8f_c01098{bottom:618.550778px;}
.y8e_c01098{bottom:623.597672px;}
.y8d_c01098{bottom:627.245169px;}
.y8c_c01098{bottom:631.692965px;}
.y8b_c01098{bottom:634.313540px;}
.y8a_c01098{bottom:640.668872px;}
.y89_c01098{bottom:643.166867px;}
.y88_c01098{bottom:645.653472px;}
.y87_c01098{bottom:649.091364px;}
.y86_c01098{bottom:650.530131px;}
.y85_c01098{bottom:654.389381px;}
.y84_c01098{bottom:656.892353px;}
.y83_c01098{bottom:662.219475px;}
.y82_c01098{bottom:664.685795px;}
.y81_c01098{bottom:668.599337px;}
.y80_c01098{bottom:673.540238px;}
.y7f_c01098{bottom:677.078385px;}
.y7e_c01098{bottom:682.134716px;}
.y7d_c01098{bottom:683.680038px;}
.y7c_c01098{bottom:686.213804px;}
.y7b_c01098{bottom:690.803353px;}
.y7a_c01098{bottom:692.337714px;}
.y79_c01098{bottom:696.405539px;}
.y78_c01098{bottom:700.434330px;}
.y77_c01098{bottom:704.506173px;}
.y76_c01098{bottom:709.787936px;}
.y75_c01098{bottom:714.924978px;}
.y74_c01098{bottom:716.490749px;}
.y73_c01098{bottom:720.587211px;}
.y72_c01098{bottom:721.568549px;}
.y71_c01098{bottom:725.203523px;}
.y70_c01098{bottom:726.720005px;}
.y6f_c01098{bottom:730.234176px;}
.y6e_c01098{bottom:733.855164px;}
.y6d_c01098{bottom:736.910732px;}
.y6c_c01098{bottom:738.829221px;}
.y6b_c01098{bottom:740.405261px;}
.y6a_c01098{bottom:747.817062px;}
.y69_c01098{bottom:752.043296px;}
.y68_c01098{bottom:753.495401px;}
.y67_c01098{bottom:755.943257px;}
.y66_c01098{bottom:757.371233px;}
.y65_c01098{bottom:760.703168px;}
.y64_c01098{bottom:762.161118px;}
.y63_c01098{bottom:763.590543px;}
.y62_c01098{bottom:765.030300px;}
.y61_c01098{bottom:769.757150px;}
.y60_c01098{bottom:771.722156px;}
.y5f_c01098{bottom:802.822924px;}
.y5e_c01098{bottom:805.164864px;}
.y5d_c01098{bottom:806.312571px;}
.y5c_c01098{bottom:810.052778px;}
.y5b_c01098{bottom:817.639971px;}
.y5a_c01098{bottom:819.570957px;}
.y59_c01098{bottom:821.005359px;}
.y58_c01098{bottom:824.877726px;}
.y57_c01098{bottom:825.781461px;}
.y56_c01098{bottom:833.872124px;}
.y55_c01098{bottom:837.768116px;}
.y54_c01098{bottom:840.603341px;}
.y53_c01098{bottom:841.537127px;}
.y52_c01098{bottom:846.230964px;}
.y51_c01098{bottom:855.872174px;}
.y50_c01098{bottom:861.088322px;}
.y4f_c01098{bottom:862.937498px;}
.y4e_c01098{bottom:866.196803px;}
.y4d_c01098{bottom:867.602207px;}
.y4c_c01098{bottom:871.346360px;}
.y4b_c01098{bottom:873.205931px;}
.y4a_c01098{bottom:874.583048px;}
.y49_c01098{bottom:877.346165px;}
.y48_c01098{bottom:879.218021px;}
.y47_c01098{bottom:881.060645px;}
.y46_c01098{bottom:891.331985px;}
.y45_c01098{bottom:893.477108px;}
.y44_c01098{bottom:897.937877px;}
.y43_c01098{bottom:899.135574px;}
.y42_c01098{bottom:900.489683px;}
.y41_c01098{bottom:903.048243px;}
.y40_c01098{bottom:904.374114px;}
.y3f_c01098{bottom:908.710566px;}
.y3e_c01098{bottom:913.474203px;}
.y3d_c01098{bottom:914.738357px;}
.y3c_c01098{bottom:916.418972px;}
.y3b_c01098{bottom:926.575994px;}
.y3a_c01098{bottom:928.616653px;}
.y39_c01098{bottom:931.536978px;}
.y38_c01098{bottom:932.717832px;}
.y37_c01098{bottom:935.547707px;}
.y36_c01098{bottom:936.412931px;}
.y35_c01098{bottom:940.138233px;}
.y34_c01098{bottom:941.367854px;}
.y33_c01098{bottom:944.267676px;}
.y32_c01098{bottom:947.522872px;}
.y31_c01098{bottom:950.705084px;}
.y30_c01098{bottom:958.447064px;}
.y2f_c01098{bottom:959.738784px;}
.y2e_c01098{bottom:962.019758px;}
.y2d_c01098{bottom:964.350578px;}
.y2c_c01098{bottom:965.712683px;}
.y2b_c01098{bottom:968.394745px;}
.y2a_c01098{bottom:969.823770px;}
.y29_c01098{bottom:971.166912px;}
.y28_c01098{bottom:972.532860px;}
.y27_c01098{bottom:975.705675px;}
.y26_c01098{bottom:977.042328px;}
.y25_c01098{bottom:981.599865px;}
.y24_c01098{bottom:982.973247px;}
.y23_c01098{bottom:984.335352px;}
.y22_c01098{bottom:986.073207px;}
.y21_c01098{bottom:993.807640px;}
.y20_c01098{bottom:995.222733px;}
.y1f_c01098{bottom:996.668934px;}
.y1e_c01098{bottom:1001.083236px;}
.y1d_c01098{bottom:1002.569303px;}
.y1c_c01098{bottom:1004.464392px;}
.y1b_c01098{bottom:1009.869972px;}
.y1a_c01098{bottom:1012.378740px;}
.y19_c01098{bottom:1018.201155px;}
.y18_c01098{bottom:1055.048892px;}
.y17_c01098{bottom:1065.936593px;}
.y16_c01098{bottom:1069.938825px;}
.y15_c01098{bottom:1072.652127px;}
.y14_c01098{bottom:1075.776819px;}
.y13_c01098{bottom:1076.636215px;}
.y12_c01098{bottom:1078.901511px;}
.y11_c01098{bottom:1080.198127px;}
.y10_c01098{bottom:1084.663122px;}
.yf_c01098{bottom:1085.959738px;}
.ye_c01098{bottom:1089.007341px;}
.yd_c01098{bottom:1092.172682px;}
.yc_c01098{bottom:1101.678243px;}
.yb_c01098{bottom:1104.017937px;}
.ya_c01098{bottom:1107.752199px;}
.y9_c01098{bottom:1109.147712px;}
.y8_c01098{bottom:1115.160243px;}
.y7_c01098{bottom:1116.626568px;}
.y6_c01098{bottom:1120.758801px;}
.y5_c01098{bottom:1123.079532px;}
.y4_c01098{bottom:1127.281632px;}
.y3_c01098{bottom:1128.619500px;}
.y2_c01098{bottom:1182.657540px;}
.y1_c01098{bottom:1185.313500px;}
.h8_c01098{height:42.012640px;}
.h4_c01098{height:65.992245px;}
.h3_c01098{height:71.991540px;}
.h5_c01098{height:77.990834px;}
.h7_c01098{height:78.023474px;}
.h6_c01098{height:83.990129px;}
.h9_c01098{height:84.025280px;}
.h2_c01098{height:119.976058px;}
.h0_c01098{height:1246.320000px;}
.h1_c01098{height:1246.500000px;}
.w0_c01098{width:917.190000px;}
.w1_c01098{width:917.250000px;}
.x0_c01098{left:0.000000px;}
.xd6_c01098{left:154.412379px;}
.xcc_c01098{left:157.865976px;}
.xbb_c01098{left:161.823969px;}
.xb7_c01098{left:164.011320px;}
.xab_c01098{left:165.258405px;}
.xa4_c01098{left:168.404324px;}
.x98_c01098{left:169.528392px;}
.x91_c01098{left:171.381951px;}
.x82_c01098{left:172.784394px;}
.x74_c01098{left:175.204332px;}
.x63_c01098{left:179.418114px;}
.x55_c01098{left:182.055015px;}
.x44_c01098{left:184.684559px;}
.x3a_c01098{left:186.749037px;}
.x2f_c01098{left:188.537261px;}
.x21_c01098{left:190.118781px;}
.xd_c01098{left:191.766267px;}
.x88_c01098{left:194.653229px;}
.x3_c01098{left:195.826500px;}
.xcd_c01098{left:202.177067px;}
.xdb_c01098{left:207.824754px;}
.xd7_c01098{left:208.904445px;}
.xb4_c01098{left:210.047427px;}
.x64_c01098{left:213.656103px;}
.x83_c01098{left:218.900475px;}
.x92_c01098{left:225.874760px;}
.x4_c01098{left:227.648646px;}
.x3b_c01098{left:229.794372px;}
.x22_c01098{left:232.454669px;}
.x9f_c01098{left:234.226463px;}
.x99_c01098{left:246.944408px;}
.xac_c01098{left:254.241612px;}
.x65_c01098{left:255.325392px;}
.x3c_c01098{left:262.184049px;}
.x75_c01098{left:264.077429px;}
.x23_c01098{left:265.638839px;}
.x6e_c01098{left:266.893875px;}
.xbe_c01098{left:269.314043px;}
.xe_c01098{left:270.805271px;}
.x45_c01098{left:273.036119px;}
.x30_c01098{left:274.440308px;}
.xad_c01098{left:286.332165px;}
.xa5_c01098{left:287.926520px;}
.x59_c01098{left:289.393884px;}
.x56_c01098{left:291.906446px;}
.x4d_c01098{left:293.546480px;}
.xdc_c01098{left:295.698293px;}
.xd8_c01098{left:297.068670px;}
.x18_c01098{left:299.655788px;}
.xa0_c01098{left:301.977455px;}
.xbf_c01098{left:303.255765px;}
.xb8_c01098{left:306.033228px;}
.xb5_c01098{left:307.206135px;}
.xce_c01098{left:312.332387px;}
.xc7_c01098{left:313.776252px;}
.x4e_c01098{left:315.257364px;}
.x84_c01098{left:316.289592px;}
.x76_c01098{left:320.062658px;}
.x66_c01098{left:321.684305px;}
.x57_c01098{left:325.632537px;}
.x5_c01098{left:327.598596px;}
.x5a_c01098{left:335.061779px;}
.x93_c01098{left:336.451469px;}
.x46_c01098{left:338.758830px;}
.xd4_c01098{left:342.414558px;}
.xa6_c01098{left:344.120477px;}
.xc8_c01098{left:345.597890px;}
.xf_c01098{left:346.900968px;}
.xae_c01098{left:352.515141px;}
.x6f_c01098{left:354.402086px;}
.x89_c01098{left:359.866040px;}
.x31_c01098{left:362.329308px;}
.xb6_c01098{left:363.418533px;}
.xcf_c01098{left:366.341931px;}
.x47_c01098{left:371.514542px;}
.xd9_c01098{left:374.545485px;}
.x10_c01098{left:379.277271px;}
.x4f_c01098{left:381.124157px;}
.x6_c01098{left:382.798840px;}
.x3d_c01098{left:384.202796px;}
.xaf_c01098{left:385.975260px;}
.x58_c01098{left:394.441304px;}
.x67_c01098{left:400.313853px;}
.x7c_c01098{left:407.655185px;}
.x24_c01098{left:410.137749px;}
.x9a_c01098{left:411.906096px;}
.x48_c01098{left:415.745766px;}
.xd5_c01098{left:422.590302px;}
.x94_c01098{left:426.043715px;}
.x19_c01098{left:431.861850px;}
.xc0_c01098{left:435.824429px;}
.x85_c01098{left:438.662039px;}
.x32_c01098{left:440.622896px;}
.x25_c01098{left:442.716525px;}
.x5b_c01098{left:444.886740px;}
.x8a_c01098{left:448.772819px;}
.xb9_c01098{left:460.809801px;}
.x1_c01098{left:462.705000px;}
.xa7_c01098{left:465.999372px;}
.xc1_c01098{left:469.268775px;}
.x50_c01098{left:471.650756px;}
.x33_c01098{left:473.833652px;}
.x68_c01098{left:476.652636px;}
.x5c_c01098{left:478.346859px;}
.x7_c01098{left:481.086954px;}
.xa1_c01098{left:487.454319px;}
.x1a_c01098{left:488.821041px;}
.x11_c01098{left:490.800533px;}
.xba_c01098{left:494.000190px;}
.x3e_c01098{left:495.275112px;}
.xb0_c01098{left:496.420538px;}
.x77_c01098{left:497.844752px;}
.xa8_c01098{left:499.287551px;}
.x49_c01098{left:504.803120px;}
.x69_c01098{left:509.581125px;}
.x5d_c01098{left:511.561224px;}
.x8_c01098{left:515.964541px;}
.x7d_c01098{left:517.273043px;}
.x26_c01098{left:520.040903px;}
.x9b_c01098{left:521.811603px;}
.x12_c01098{left:523.176836px;}
.xc2_c01098{left:524.984441px;}
.x8b_c01098{left:526.145594px;}
.x2_c01098{left:529.037601px;}
.x4a_c01098{left:538.231658px;}
.x7e_c01098{left:540.735584px;}
.x5e_c01098{left:545.418383px;}
.x27_c01098{left:553.316481px;}
.x8c_c01098{left:559.027517px;}
.x86_c01098{left:561.191828px;}
.xda_c01098{left:563.439272px;}
.x34_c01098{left:574.404107px;}
.x70_c01098{left:575.753306px;}
.xa2_c01098{left:577.715486px;}
.x13_c01098{left:579.736449px;}
.xbc_c01098{left:582.575796px;}
.x28_c01098{left:586.049603px;}
.x6a_c01098{left:588.543341px;}
.x3f_c01098{left:594.774563px;}
.x35_c01098{left:597.769137px;}
.x14_c01098{left:601.213280px;}
.xb1_c01098{left:607.113068px;}
.x6b_c01098{left:609.849918px;}
.x1b_c01098{left:611.540856px;}
.xc3_c01098{left:612.606060px;}
.x95_c01098{left:613.817658px;}
.x4b_c01098{left:615.756555px;}
.x78_c01098{left:618.113210px;}
.x29_c01098{left:620.861207px;}
.x5f_c01098{left:622.814130px;}
.x40_c01098{left:629.446707px;}
.x71_c01098{left:630.771962px;}
.xb2_c01098{left:639.753507px;}
.xa9_c01098{left:641.243624px;}
.x7f_c01098{left:650.615616px;}
.x1c_c01098{left:654.581678px;}
.x60_c01098{left:655.994030px;}
.x9_c01098{left:658.976886px;}
.x41_c01098{left:660.112857px;}
.x72_c01098{left:664.350737px;}
.x8d_c01098{left:669.745251px;}
.x36_c01098{left:674.184726px;}
.xd0_c01098{left:676.754955px;}
.x15_c01098{left:679.249724px;}
.x51_c01098{left:680.625806px;}
.x80_c01098{left:683.370342px;}
.x2a_c01098{left:686.227050px;}
.x1d_c01098{left:688.322066px;}
.xc9_c01098{left:689.781150px;}
.xa_c01098{left:692.170159px;}
.x79_c01098{left:696.172514px;}
.x6c_c01098{left:698.824908px;}
.x8e_c01098{left:703.617557px;}
.x37_c01098{left:706.057007px;}
.xd1_c01098{left:710.269569px;}
.x61_c01098{left:712.861209px;}
.x87_c01098{left:715.156353px;}
.xb3_c01098{left:717.826577px;}
.x2b_c01098{left:719.411220px;}
.x9c_c01098{left:721.549053px;}
.x6d_c01098{left:732.818642px;}
.xc4_c01098{left:734.443565px;}
.xca_c01098{left:744.870069px;}
.x16_c01098{left:747.001080px;}
.x7a_c01098{left:752.640260px;}
.x96_c01098{left:757.716962px;}
.x81_c01098{left:762.933330px;}
.xd2_c01098{left:766.716480px;}
.x52_c01098{left:770.590467px;}
.x42_c01098{left:774.356378px;}
.x2c_c01098{left:776.208263px;}
.xc5_c01098{left:778.968158px;}
.xb_c01098{left:780.992249px;}
.x4c_c01098{left:783.810333px;}
.x38_c01098{left:784.909661px;}
.x1e_c01098{left:788.534802px;}
.x97_c01098{left:789.592194px;}
.xaa_c01098{left:798.061730px;}
.x53_c01098{left:803.923214px;}
.x7b_c01098{left:809.343207px;}
.xd3_c01098{left:810.563225px;}
.x8f_c01098{left:817.423322px;}
.x1f_c01098{left:821.362667px;}
.x43_c01098{left:829.307309px;}
.x2d_c01098{left:831.783965px;}
.xa3_c01098{left:833.085756px;}
.x9d_c01098{left:835.179201px;}
.xc_c01098{left:836.643542px;}
.x39_c01098{left:840.018101px;}
.x62_c01098{left:844.818134px;}
.x17_c01098{left:846.945923px;}
.x54_c01098{left:848.781918px;}
.x73_c01098{left:850.995000px;}
.x20_c01098{left:853.486299px;}
.x9e_c01098{left:858.557889px;}
.x2e_c01098{left:863.258283px;}
.xcb_c01098{left:892.764756px;}
.xc6_c01098{left:894.090407px;}
.xbd_c01098{left:896.390168px;}
.x90_c01098{left:909.418131px;}
@media print{
.v0_c01098{vertical-align:0.000000pt;}
.ls0_c01098{letter-spacing:0.000000pt;}
.ws0_c01098{word-spacing:0.000000pt;}
.fs6_c01098{font-size:37.344569pt;}
.fs2_c01098{font-size:58.659773pt;}
.fs1_c01098{font-size:63.992480pt;}
.fs3_c01098{font-size:69.325186pt;}
.fs5_c01098{font-size:69.354200pt;}
.fs4_c01098{font-size:74.657893pt;}
.fs7_c01098{font-size:74.689138pt;}
.fs0_c01098{font-size:106.645385pt;}
.y0_c01098{bottom:0.000000pt;}
.y148_c01098{bottom:22.690057pt;}
.y147_c01098{bottom:25.216937pt;}
.y146_c01098{bottom:28.271361pt;}
.y145_c01098{bottom:29.790277pt;}
.y144_c01098{bottom:30.746901pt;}
.y143_c01098{bottom:32.808049pt;}
.y142_c01098{bottom:33.751821pt;}
.y141_c01098{bottom:37.330593pt;}
.y140_c01098{bottom:38.747373pt;}
.y13f_c01098{bottom:41.318181pt;}
.y13e_c01098{bottom:43.709333pt;}
.y13d_c01098{bottom:54.632144pt;}
.y13c_c01098{bottom:56.961884pt;}
.y13b_c01098{bottom:59.812700pt;}
.y13a_c01098{bottom:61.242372pt;}
.y139_c01098{bottom:62.142984pt;}
.y138_c01098{bottom:63.631560pt;}
.y137_c01098{bottom:65.030168pt;}
.y136_c01098{bottom:68.338968pt;}
.y135_c01098{bottom:69.662352pt;}
.y134_c01098{bottom:72.104704pt;}
.y133_c01098{bottom:74.414220pt;}
.y131_c01098{bottom:94.209268pt;}
.y130_c01098{bottom:97.757984pt;}
.y12f_c01098{bottom:99.769628pt;}
.y132_c01098{bottom:100.804808pt;}
.y12e_c01098{bottom:100.811184pt;}
.y12d_c01098{bottom:103.330244pt;}
.y12c_c01098{bottom:108.369928pt;}
.y12b_c01098{bottom:109.876604pt;}
.y12a_c01098{bottom:111.819024pt;}
.y129_c01098{bottom:115.457296pt;}
.y128_c01098{bottom:119.421628pt;}
.y127_c01098{bottom:123.864000pt;}
.y126_c01098{bottom:125.515501pt;}
.y125_c01098{bottom:127.426293pt;}
.y124_c01098{bottom:129.886689pt;}
.y123_c01098{bottom:131.347313pt;}
.y122_c01098{bottom:135.208989pt;}
.y121_c01098{bottom:138.615749pt;}
.y120_c01098{bottom:140.027937pt;}
.y11f_c01098{bottom:144.878477pt;}
.y11e_c01098{bottom:147.233109pt;}
.y11d_c01098{bottom:152.035549pt;}
.y11c_c01098{bottom:153.967697pt;}
.y11b_c01098{bottom:154.146497pt;}
.y11a_c01098{bottom:160.462029pt;}
.y119_c01098{bottom:161.858665pt;}
.y118_c01098{bottom:162.815633pt;}
.y117_c01098{bottom:167.594741pt;}
.y116_c01098{bottom:168.991377pt;}
.y115_c01098{bottom:173.234941pt;}
.y114_c01098{bottom:177.512741pt;}
.y113_c01098{bottom:178.871401pt;}
.y112_c01098{bottom:182.662037pt;}
.y111_c01098{bottom:185.401677pt;}
.y110_c01098{bottom:186.332289pt;}
.y10f_c01098{bottom:189.028897pt;}
.y10e_c01098{bottom:191.555193pt;}
.y10d_c01098{bottom:193.575381pt;}
.y10c_c01098{bottom:199.102613pt;}
.y10b_c01098{bottom:200.583253pt;}
.y10a_c01098{bottom:203.078965pt;}
.y109_c01098{bottom:205.606773pt;}
.y108_c01098{bottom:207.124817pt;}
.y107_c01098{bottom:210.066645pt;}
.y106_c01098{bottom:211.619193pt;}
.y105_c01098{bottom:213.139813pt;}
.y104_c01098{bottom:214.679113pt;}
.y103_c01098{bottom:221.054313pt;}
.y102_c01098{bottom:232.781777pt;}
.y101_c01098{bottom:241.877913pt;}
.y100_c01098{bottom:242.738129pt;}
.yff_c01098{bottom:247.199705pt;}
.yfe_c01098{bottom:248.505569pt;}
.yfd_c01098{bottom:254.409257pt;}
.yfc_c01098{bottom:256.176973pt;}
.yfb_c01098{bottom:259.574457pt;}
.yfa_c01098{bottom:260.824897pt;}
.yf9_c01098{bottom:264.201381pt;}
.yf8_c01098{bottom:268.036353pt;}
.yf7_c01098{bottom:269.306057pt;}
.yf6_c01098{bottom:273.201945pt;}
.yf5_c01098{bottom:275.227605pt;}
.yf4_c01098{bottom:276.486837pt;}
.yf3_c01098{bottom:279.438433pt;}
.yf2_c01098{bottom:280.660493pt;}
.yf1_c01098{bottom:287.139253pt;}
.yf0_c01098{bottom:289.190717pt;}
.yef_c01098{bottom:290.921261pt;}
.yee_c01098{bottom:293.861825pt;}
.yed_c01098{bottom:295.183653pt;}
.yec_c01098{bottom:299.398401pt;}
.yeb_c01098{bottom:300.699229pt;}
.yea_c01098{bottom:304.477765pt;}
.ye9_c01098{bottom:306.627833pt;}
.ye8_c01098{bottom:307.914225pt;}
.ye7_c01098{bottom:310.344121pt;}
.ye6_c01098{bottom:312.093481pt;}
.ye5_c01098{bottom:317.171169pt;}
.ye4_c01098{bottom:318.833461pt;}
.ye3_c01098{bottom:321.433729pt;}
.ye2_c01098{bottom:322.255193pt;}
.ye1_c01098{bottom:324.420761pt;}
.ye0_c01098{bottom:325.669913pt;}
.ydf_c01098{bottom:326.924833pt;}
.yde_c01098{bottom:328.851945pt;}
.ydd_c01098{bottom:329.905313pt;}
.ydc_c01098{bottom:332.007277pt;}
.ydb_c01098{bottom:334.131473pt;}
.yda_c01098{bottom:335.411257pt;}
.yd9_c01098{bottom:337.943273pt;}
.yd8_c01098{bottom:339.170541pt;}
.yd7_c01098{bottom:342.574633pt;}
.yd6_c01098{bottom:346.316757pt;}
.yd5_c01098{bottom:347.687001pt;}
.yd4_c01098{bottom:351.906769pt;}
.yd3_c01098{bottom:354.243937pt;}
.yd2_c01098{bottom:356.076297pt;}
.yd1_c01098{bottom:360.180085pt;}
.yd0_c01098{bottom:361.572201pt;}
.ycf_c01098{bottom:366.668649pt;}
.yce_c01098{bottom:369.018181pt;}
.ycd_c01098{bottom:370.419189pt;}
.ycc_c01098{bottom:374.017217pt;}
.ycb_c01098{bottom:378.425317pt;}
.yca_c01098{bottom:380.260981pt;}
.yc9_c01098{bottom:383.095901pt;}
.yc8_c01098{bottom:384.034793pt;}
.yc7_c01098{bottom:386.852097pt;}
.yc6_c01098{bottom:389.102885pt;}
.yc5_c01098{bottom:392.877649pt;}
.yc4_c01098{bottom:394.644829pt;}
.yc3_c01098{bottom:396.093905pt;}
.yc2_c01098{bottom:400.633681pt;}
.yc1_c01098{bottom:402.068041pt;}
.yc0_c01098{bottom:403.465813pt;}
.ybf_c01098{bottom:406.171941pt;}
.ybe_c01098{bottom:410.367909pt;}
.ybd_c01098{bottom:411.324317pt;}
.ybc_c01098{bottom:415.975065pt;}
.ybb_c01098{bottom:417.312085pt;}
.yba_c01098{bottom:420.517033pt;}
.yb9_c01098{bottom:420.909505pt;}
.yb8_c01098{bottom:424.150605pt;}
.yb7_c01098{bottom:428.648817pt;}
.yb6_c01098{bottom:433.599889pt;}
.yb5_c01098{bottom:435.399333pt;}
.yb4_c01098{bottom:438.567301pt;}
.yb3_c01098{bottom:443.504589pt;}
.yb2_c01098{bottom:444.809209pt;}
.yb1_c01098{bottom:450.697885pt;}
.yb0_c01098{bottom:452.104341pt;}
.yaf_c01098{bottom:456.114113pt;}
.yae_c01098{bottom:458.383641pt;}
.yad_c01098{bottom:462.050677pt;}
.yac_c01098{bottom:466.576641pt;}
.yab_c01098{bottom:468.806557pt;}
.yaa_c01098{bottom:472.667017pt;}
.ya9_c01098{bottom:476.350449pt;}
.ya8_c01098{bottom:478.237865pt;}
.ya7_c01098{bottom:480.906349pt;}
.ya6_c01098{bottom:482.262917pt;}
.ya5_c01098{bottom:486.695409pt;}
.ya4_c01098{bottom:488.012297pt;}
.ya3_c01098{bottom:489.796901pt;}
.ya2_c01098{bottom:491.110597pt;}
.ya1_c01098{bottom:494.670621pt;}
.ya0_c01098{bottom:497.342241pt;}
.y9f_c01098{bottom:501.285077pt;}
.y9e_c01098{bottom:502.153457pt;}
.y9d_c01098{bottom:508.139353pt;}
.y9c_c01098{bottom:510.919765pt;}
.y9b_c01098{bottom:512.317553pt;}
.y9a_c01098{bottom:514.975589pt;}
.y99_c01098{bottom:517.220613pt;}
.y98_c01098{bottom:519.082561pt;}
.y97_c01098{bottom:522.234637pt;}
.y96_c01098{bottom:527.242781pt;}
.y95_c01098{bottom:531.229213pt;}
.y94_c01098{bottom:533.116729pt;}
.y93_c01098{bottom:539.768413pt;}
.y92_c01098{bottom:543.024621pt;}
.y91_c01098{bottom:544.364777pt;}
.y90_c01098{bottom:548.862037pt;}
.y8f_c01098{bottom:549.822913pt;}
.y8e_c01098{bottom:554.309041pt;}
.y8d_c01098{bottom:557.551261pt;}
.y8c_c01098{bottom:561.504857pt;}
.y8b_c01098{bottom:563.834257pt;}
.y8a_c01098{bottom:569.483441pt;}
.y89_c01098{bottom:571.703881pt;}
.y88_c01098{bottom:573.914197pt;}
.y87_c01098{bottom:576.970101pt;}
.y86_c01098{bottom:578.249005pt;}
.y85_c01098{bottom:581.679449pt;}
.y84_c01098{bottom:583.904313pt;}
.y83_c01098{bottom:588.639533pt;}
.y82_c01098{bottom:590.831817pt;}
.y81_c01098{bottom:594.310521pt;}
.y80_c01098{bottom:598.702433pt;}
.y7f_c01098{bottom:601.847453pt;}
.y7e_c01098{bottom:606.341969pt;}
.y7d_c01098{bottom:607.715589pt;}
.y7c_c01098{bottom:609.967825pt;}
.y7b_c01098{bottom:614.047425pt;}
.y7a_c01098{bottom:615.411301pt;}
.y79_c01098{bottom:619.027145pt;}
.y78_c01098{bottom:622.608293pt;}
.y77_c01098{bottom:626.227709pt;}
.y76_c01098{bottom:630.922609pt;}
.y75_c01098{bottom:635.488869pt;}
.y74_c01098{bottom:636.880665pt;}
.y73_c01098{bottom:640.521965pt;}
.y72_c01098{bottom:641.394265pt;}
.y71_c01098{bottom:644.625353pt;}
.y70_c01098{bottom:645.973337pt;}
.y6f_c01098{bottom:649.097045pt;}
.y6e_c01098{bottom:652.315701pt;}
.y6d_c01098{bottom:655.031761pt;}
.y6c_c01098{bottom:656.737085pt;}
.y6b_c01098{bottom:658.138009pt;}
.y6a_c01098{bottom:664.726277pt;}
.y69_c01098{bottom:668.482929pt;}
.y68_c01098{bottom:669.773689pt;}
.y67_c01098{bottom:671.949561pt;}
.y66_c01098{bottom:673.218873pt;}
.y65_c01098{bottom:676.180593pt;}
.y64_c01098{bottom:677.476549pt;}
.y63_c01098{bottom:678.747149pt;}
.y62_c01098{bottom:680.026933pt;}
.y61_c01098{bottom:684.228577pt;}
.y60_c01098{bottom:685.975249pt;}
.y5f_c01098{bottom:713.620377pt;}
.y5e_c01098{bottom:715.702101pt;}
.y5d_c01098{bottom:716.722285pt;}
.y5c_c01098{bottom:720.046913pt;}
.y5b_c01098{bottom:726.791085pt;}
.y5a_c01098{bottom:728.507517pt;}
.y59_c01098{bottom:729.782541pt;}
.y58_c01098{bottom:733.224645pt;}
.y57_c01098{bottom:734.027965pt;}
.y56_c01098{bottom:741.219665pt;}
.y55_c01098{bottom:744.682769pt;}
.y54_c01098{bottom:747.202969pt;}
.y53_c01098{bottom:748.033001pt;}
.y52_c01098{bottom:752.205301pt;}
.y51_c01098{bottom:760.775265pt;}
.y50_c01098{bottom:765.411841pt;}
.y4f_c01098{bottom:767.055553pt;}
.y4e_c01098{bottom:769.952713pt;}
.y4d_c01098{bottom:771.201961pt;}
.y4c_c01098{bottom:774.530097pt;}
.y4b_c01098{bottom:776.183049pt;}
.y4a_c01098{bottom:777.407153pt;}
.y49_c01098{bottom:779.863257pt;}
.y48_c01098{bottom:781.527129pt;}
.y47_c01098{bottom:783.165017pt;}
.y46_c01098{bottom:792.295097pt;}
.y45_c01098{bottom:794.201873pt;}
.y44_c01098{bottom:798.167001pt;}
.y43_c01098{bottom:799.231621pt;}
.y42_c01098{bottom:800.435273pt;}
.y41_c01098{bottom:802.709549pt;}
.y40_c01098{bottom:803.888101pt;}
.y3f_c01098{bottom:807.742725pt;}
.y3e_c01098{bottom:811.977069pt;}
.y3d_c01098{bottom:813.100761pt;}
.y3c_c01098{bottom:814.594641pt;}
.y3b_c01098{bottom:823.623105pt;}
.y3a_c01098{bottom:825.437025pt;}
.y39_c01098{bottom:828.032869pt;}
.y38_c01098{bottom:829.082517pt;}
.y37_c01098{bottom:831.597961pt;}
.y36_c01098{bottom:832.367049pt;}
.y35_c01098{bottom:835.678429pt;}
.y34_c01098{bottom:836.771425pt;}
.y33_c01098{bottom:839.349045pt;}
.y32_c01098{bottom:842.242553pt;}
.y31_c01098{bottom:845.071185pt;}
.y30_c01098{bottom:851.952945pt;}
.y2f_c01098{bottom:853.101141pt;}
.y2e_c01098{bottom:855.128673pt;}
.y2d_c01098{bottom:857.200513pt;}
.y2c_c01098{bottom:858.411273pt;}
.y2b_c01098{bottom:860.795329pt;}
.y2a_c01098{bottom:862.065573pt;}
.y29_c01098{bottom:863.259477pt;}
.y28_c01098{bottom:864.473653pt;}
.y27_c01098{bottom:867.293933pt;}
.y26_c01098{bottom:868.482069pt;}
.y25_c01098{bottom:872.533213pt;}
.y24_c01098{bottom:873.753997pt;}
.y23_c01098{bottom:874.964757pt;}
.y22_c01098{bottom:876.509517pt;}
.y21_c01098{bottom:883.384569pt;}
.y20_c01098{bottom:884.642429pt;}
.y1f_c01098{bottom:885.927941pt;}
.y1e_c01098{bottom:889.851765pt;}
.y1d_c01098{bottom:891.172713pt;}
.y1c_c01098{bottom:892.857237pt;}
.y1b_c01098{bottom:897.662197pt;}
.y1a_c01098{bottom:899.892213pt;}
.y19_c01098{bottom:905.067693pt;}
.y18_c01098{bottom:937.821237pt;}
.y17_c01098{bottom:947.499193pt;}
.y16_c01098{bottom:951.056733pt;}
.y15_c01098{bottom:953.468557pt;}
.y14_c01098{bottom:956.246061pt;}
.y13_c01098{bottom:957.009969pt;}
.y12_c01098{bottom:959.023565pt;}
.y11_c01098{bottom:960.176113pt;}
.y10_c01098{bottom:964.144997pt;}
.yf_c01098{bottom:965.297545pt;}
.ye_c01098{bottom:968.006525pt;}
.yd_c01098{bottom:970.820161pt;}
.yc_c01098{bottom:979.269549pt;}
.yb_c01098{bottom:981.349277pt;}
.ya_c01098{bottom:984.668621pt;}
.y9_c01098{bottom:985.909077pt;}
.y8_c01098{bottom:991.253549pt;}
.y7_c01098{bottom:992.556949pt;}
.y6_c01098{bottom:996.230045pt;}
.y5_c01098{bottom:998.292917pt;}
.y4_c01098{bottom:1002.028117pt;}
.y3_c01098{bottom:1003.217333pt;}
.y2_c01098{bottom:1051.251147pt;}
.y1_c01098{bottom:1053.612000pt;}
.h8_c01098{height:37.344569pt;}
.h4_c01098{height:58.659773pt;}
.h3_c01098{height:63.992480pt;}
.h5_c01098{height:69.325186pt;}
.h7_c01098{height:69.354200pt;}
.h6_c01098{height:74.657893pt;}
.h9_c01098{height:74.689138pt;}
.h2_c01098{height:106.645385pt;}
.h0_c01098{height:1107.840000pt;}
.h1_c01098{height:1108.000000pt;}
.w0_c01098{width:815.280000pt;}
.w1_c01098{width:815.333333pt;}
.x0_c01098{left:0.000000pt;}
.xd6_c01098{left:137.255448pt;}
.xcc_c01098{left:140.325312pt;}
.xbb_c01098{left:143.843528pt;}
.xb7_c01098{left:145.787840pt;}
.xab_c01098{left:146.896360pt;}
.xa4_c01098{left:149.692732pt;}
.x98_c01098{left:150.691904pt;}
.x91_c01098{left:152.339512pt;}
.x82_c01098{left:153.586128pt;}
.x74_c01098{left:155.737184pt;}
.x63_c01098{left:159.482768pt;}
.x55_c01098{left:161.826680pt;}
.x44_c01098{left:164.164052pt;}
.x3a_c01098{left:165.999144pt;}
.x2f_c01098{left:167.588676pt;}
.x21_c01098{left:168.994472pt;}
.xd_c01098{left:170.458904pt;}
.x88_c01098{left:173.025092pt;}
.x3_c01098{left:174.068000pt;}
.xcd_c01098{left:179.712948pt;}
.xdb_c01098{left:184.733115pt;}
.xd7_c01098{left:185.692840pt;}
.xb4_c01098{left:186.708824pt;}
.x64_c01098{left:189.916536pt;}
.x83_c01098{left:194.578200pt;}
.x92_c01098{left:200.777564pt;}
.x4_c01098{left:202.354352pt;}
.x3b_c01098{left:204.261664pt;}
.x22_c01098{left:206.626372pt;}
.x9f_c01098{left:208.201300pt;}
.x99_c01098{left:219.506140pt;}
.xac_c01098{left:225.992544pt;}
.x65_c01098{left:226.955904pt;}
.x3c_c01098{left:233.052488pt;}
.x75_c01098{left:234.735492pt;}
.x23_c01098{left:236.123412pt;}
.x6e_c01098{left:237.239000pt;}
.xbe_c01098{left:239.390260pt;}
.xe_c01098{left:240.715796pt;}
.x45_c01098{left:242.698772pt;}
.x30_c01098{left:243.946940pt;}
.xad_c01098{left:254.517480pt;}
.xa5_c01098{left:255.934684pt;}
.x59_c01098{left:257.239008pt;}
.x56_c01098{left:259.472396pt;}
.x4d_c01098{left:260.930204pt;}
.xdc_c01098{left:262.842927pt;}
.xd8_c01098{left:264.061040pt;}
.x18_c01098{left:266.360700pt;}
.xa0_c01098{left:268.424404pt;}
.xbf_c01098{left:269.560680pt;}
.xb8_c01098{left:272.029536pt;}
.xb5_c01098{left:273.072120pt;}
.xce_c01098{left:277.628788pt;}
.xc7_c01098{left:278.912224pt;}
.x4e_c01098{left:280.228768pt;}
.x84_c01098{left:281.146304pt;}
.x76_c01098{left:284.500140pt;}
.x66_c01098{left:285.941604pt;}
.x57_c01098{left:289.451144pt;}
.x5_c01098{left:291.198752pt;}
.x5a_c01098{left:297.832692pt;}
.x93_c01098{left:299.067972pt;}
.x46_c01098{left:301.118960pt;}
.xd4_c01098{left:304.368496pt;}
.xa6_c01098{left:305.884868pt;}
.xc8_c01098{left:307.198124pt;}
.xf_c01098{left:308.356416pt;}
.xae_c01098{left:313.346792pt;}
.x6f_c01098{left:315.024076pt;}
.x89_c01098{left:319.880924pt;}
.x31_c01098{left:322.070496pt;}
.xb6_c01098{left:323.038696pt;}
.xcf_c01098{left:325.637272pt;}
.x47_c01098{left:330.235148pt;}
.xd9_c01098{left:332.929320pt;}
.x10_c01098{left:337.135352pt;}
.x4f_c01098{left:338.777028pt;}
.x6_c01098{left:340.265636pt;}
.x3d_c01098{left:341.513596pt;}
.xaf_c01098{left:343.089120pt;}
.x58_c01098{left:350.614492pt;}
.x67_c01098{left:355.834536pt;}
.x7c_c01098{left:362.360164pt;}
.x24_c01098{left:364.566888pt;}
.x9a_c01098{left:366.138752pt;}
.x48_c01098{left:369.551792pt;}
.xd5_c01098{left:375.635824pt;}
.x94_c01098{left:378.705524pt;}
.x19_c01098{left:383.877200pt;}
.xc0_c01098{left:387.399492pt;}
.x85_c01098{left:389.921812pt;}
.x32_c01098{left:391.664796pt;}
.x25_c01098{left:393.525800pt;}
.x5b_c01098{left:395.454880pt;}
.x8a_c01098{left:398.909172pt;}
.xb9_c01098{left:409.608712pt;}
.x1_c01098{left:411.293333pt;}
.xa7_c01098{left:414.221664pt;}
.xc1_c01098{left:417.127800pt;}
.x50_c01098{left:419.245116pt;}
.x33_c01098{left:421.185468pt;}
.x68_c01098{left:423.691232pt;}
.x5c_c01098{left:425.197208pt;}
.x7_c01098{left:427.632848pt;}
.xa1_c01098{left:433.292728pt;}
.x1a_c01098{left:434.507592pt;}
.x11_c01098{left:436.267140pt;}
.xba_c01098{left:439.111280pt;}
.x3e_c01098{left:440.244544pt;}
.xb0_c01098{left:441.262700pt;}
.x77_c01098{left:442.528668pt;}
.xa8_c01098{left:443.811156pt;}
.x49_c01098{left:448.713884pt;}
.x69_c01098{left:452.961000pt;}
.x5d_c01098{left:454.721088pt;}
.x8_c01098{left:458.635148pt;}
.x7d_c01098{left:459.798260pt;}
.x26_c01098{left:462.258580pt;}
.x9b_c01098{left:463.832536pt;}
.x12_c01098{left:465.046076pt;}
.xc2_c01098{left:466.652836pt;}
.x8b_c01098{left:467.684972pt;}
.x2_c01098{left:470.255645pt;}
.x4a_c01098{left:478.428140pt;}
.x7e_c01098{left:480.653852pt;}
.x5e_c01098{left:484.816340pt;}
.x27_c01098{left:491.836872pt;}
.x8c_c01098{left:496.913348pt;}
.x86_c01098{left:498.837180pt;}
.xda_c01098{left:500.834908pt;}
.x34_c01098{left:510.581428pt;}
.x70_c01098{left:511.780716pt;}
.xa2_c01098{left:513.524876pt;}
.x13_c01098{left:515.321288pt;}
.xbc_c01098{left:517.845152pt;}
.x28_c01098{left:520.932980pt;}
.x6a_c01098{left:523.149636pt;}
.x3f_c01098{left:528.688500pt;}
.x35_c01098{left:531.350344pt;}
.x14_c01098{left:534.411804pt;}
.xb1_c01098{left:539.656060pt;}
.x6b_c01098{left:542.088816pt;}
.x1b_c01098{left:543.591872pt;}
.xc3_c01098{left:544.538720pt;}
.x95_c01098{left:545.615696pt;}
.x4b_c01098{left:547.339160pt;}
.x78_c01098{left:549.433964pt;}
.x29_c01098{left:551.876628pt;}
.x5f_c01098{left:553.612560pt;}
.x40_c01098{left:559.508184pt;}
.x71_c01098{left:560.686188pt;}
.xb2_c01098{left:568.669784pt;}
.xa9_c01098{left:569.994332pt;}
.x7f_c01098{left:578.324992pt;}
.x1c_c01098{left:581.850380pt;}
.x60_c01098{left:583.105804pt;}
.x9_c01098{left:585.757232pt;}
.x41_c01098{left:586.766984pt;}
.x72_c01098{left:590.533988pt;}
.x8d_c01098{left:595.329112pt;}
.x36_c01098{left:599.275312pt;}
.xd0_c01098{left:601.559960pt;}
.x15_c01098{left:603.777532pt;}
.x51_c01098{left:605.000716pt;}
.x80_c01098{left:607.440304pt;}
.x2a_c01098{left:609.979600pt;}
.x1d_c01098{left:611.841836pt;}
.xc9_c01098{left:613.138800pt;}
.xa_c01098{left:615.262364pt;}
.x79_c01098{left:618.820012pt;}
.x6c_c01098{left:621.177696pt;}
.x8e_c01098{left:625.437828pt;}
.x37_c01098{left:627.606228pt;}
.xd1_c01098{left:631.350728pt;}
.x61_c01098{left:633.654408pt;}
.x87_c01098{left:635.694536pt;}
.xb3_c01098{left:638.068068pt;}
.x2b_c01098{left:639.476640pt;}
.x9c_c01098{left:641.376936pt;}
.x6d_c01098{left:651.394348pt;}
.xc4_c01098{left:652.838724pt;}
.xca_c01098{left:662.106728pt;}
.x16_c01098{left:664.000960pt;}
.x7a_c01098{left:669.013564pt;}
.x96_c01098{left:673.526188pt;}
.x81_c01098{left:678.162960pt;}
.xd2_c01098{left:681.525760pt;}
.x52_c01098{left:684.969304pt;}
.x42_c01098{left:688.316780pt;}
.x2c_c01098{left:689.962900pt;}
.xc5_c01098{left:692.416140pt;}
.xb_c01098{left:694.215332pt;}
.x4c_c01098{left:696.720296pt;}
.x38_c01098{left:697.697476pt;}
.x1e_c01098{left:700.919824pt;}
.x97_c01098{left:701.859728pt;}
.xaa_c01098{left:709.388204pt;}
.x53_c01098{left:714.598412pt;}
.x7b_c01098{left:719.416184pt;}
.xd3_c01098{left:720.500644pt;}
.x8f_c01098{left:726.598508pt;}
.x1f_c01098{left:730.100148pt;}
.x43_c01098{left:737.162052pt;}
.x2d_c01098{left:739.363524pt;}
.xa3_c01098{left:740.520672pt;}
.x9d_c01098{left:742.381512pt;}
.xc_c01098{left:743.683148pt;}
.x39_c01098{left:746.682756pt;}
.x62_c01098{left:750.949452pt;}
.x17_c01098{left:752.840820pt;}
.x54_c01098{left:754.472816pt;}
.x73_c01098{left:756.440000pt;}
.x20_c01098{left:758.654488pt;}
.x9e_c01098{left:763.162568pt;}
.x2e_c01098{left:767.340696pt;}
.xcb_c01098{left:793.568672pt;}
.xc6_c01098{left:794.747028pt;}
.xbd_c01098{left:796.791260pt;}
.x90_c01098{left:808.371672pt;}
}





/* 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_c01099 {
    display:none;
  }
  .loading-indicator_c01099.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01099 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_c01099 { 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_c01099" -> "#page-container .classname_c01099")
 */
.pf_c01099 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01099 { /* 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_c01099.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01099 { /* 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_c01099 { /* 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_c01099 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01099 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01099 {overflow:visible;}
  }
}
.c_c01099 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01099 { /* 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_c01099:after { /* webkit #35443 */
  content: '';
}
.t_c01099:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01099 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 */
}
.__c01099 { /* 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_c01099 { /* info for Javascript */
  display:none;
}
.l_c01099 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01099 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01099 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01099: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_c01099 {
    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_c01099.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01099.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_c01099 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01099{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01099;src:url('chunks/assets/font_fabf4b590f7fb32aea93ffb2.woff2')format("woff");}.ff1_c01099{font-family:ff1_c01099;line-height:1.000000;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;}
.m141_c01099{transform:matrix(0.007955,0.000072,-0.002250,0.249990,0,0);-ms-transform:matrix(0.007955,0.000072,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.007955,0.000072,-0.002250,0.249990,0,0);}
.m11c_c01099{transform:matrix(0.010165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.010165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.010165,0.000000,0.000000,0.250000,0,0);}
.mf1_c01099{transform:matrix(0.011860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.011860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.011860,0.000000,0.000000,0.250000,0,0);}
.mc4_c01099{transform:matrix(0.012580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.012580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.012580,0.000000,0.000000,0.250000,0,0);}
.m139_c01099{transform:matrix(0.012729,0.000115,-0.002250,0.249990,0,0);-ms-transform:matrix(0.012729,0.000115,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.012729,0.000115,-0.002250,0.249990,0,0);}
.m89_c01099{transform:matrix(0.015000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.015000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.015000,0.000000,0.000000,0.250000,0,0);}
.m101_c01099{transform:matrix(0.016390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.016390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.016390,0.000000,0.000000,0.250000,0,0);}
.m135_c01099{transform:matrix(0.016970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.016970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.016970,0.000000,0.000000,0.250000,0,0);}
.m57_c01099{transform:matrix(0.020185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.020185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.020185,0.000000,0.000000,0.250000,0,0);}
.m45_c01099{transform:matrix(0.023140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.023140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.023140,0.000000,0.000000,0.250000,0,0);}
.m1b_c01099{transform:matrix(0.027040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.027040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.027040,0.000000,0.000000,0.250000,0,0);}
.me_c01099{transform:matrix(0.028460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.028460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.028460,0.000000,0.000000,0.250000,0,0);}
.m1c_c01099{transform:matrix(0.031820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.031820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.031820,0.000000,0.000000,0.250000,0,0);}
.mc_c01099{transform:matrix(0.032450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032450,0.000000,0.000000,0.250000,0,0);}
.m0_c01099{transform:matrix(0.035575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.035575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.035575,0.000000,0.000000,0.250000,0,0);}
.mda_c01099{transform:matrix(0.036060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.036060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.036060,0.000000,0.000000,0.250000,0,0);}
.m46_c01099{transform:matrix(0.038595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.038595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.038595,0.000000,0.000000,0.250000,0,0);}
.m2_c01099{transform:matrix(0.047730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.047730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.047730,0.000000,0.000000,0.250000,0,0);}
.m16_c01099{transform:matrix(0.056250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.056250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.056250,0.000000,0.000000,0.250000,0,0);}
.mdb_c01099{transform:matrix(0.061925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.061925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.061925,0.000000,0.000000,0.250000,0,0);}
.m13e_c01099{transform:matrix(0.070032,0.000630,-0.002250,0.249990,0,0);-ms-transform:matrix(0.070032,0.000630,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.070032,0.000630,-0.002250,0.249990,0,0);}
.m15_c01099{transform:matrix(0.072035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072035,0.000000,0.000000,0.250000,0,0);}
.m5_c01099{transform:matrix(0.075465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.075465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.075465,0.000000,0.000000,0.250000,0,0);}
.m12d_c01099{transform:matrix(0.096430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096430,0.000000,0.000000,0.250000,0,0);}
.md9_c01099{transform:matrix(0.101225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.101225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.101225,0.000000,0.000000,0.250000,0,0);}
.m12c_c01099{transform:matrix(0.109710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109710,0.000000,0.000000,0.250000,0,0);}
.m7_c01099{transform:matrix(0.112500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112500,0.000000,0.000000,0.250000,0,0);}
.m2d_c01099{transform:matrix(0.119800,-0.003957,0.008254,0.249864,0,0);-ms-transform:matrix(0.119800,-0.003957,0.008254,0.249864,0,0);-webkit-transform:matrix(0.119800,-0.003957,0.008254,0.249864,0,0);}
.mc7_c01099{transform:matrix(0.126090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126090,0.000000,0.000000,0.250000,0,0);}
.m17_c01099{transform:matrix(0.131680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131680,0.000000,0.000000,0.250000,0,0);}
.me1_c01099{transform:matrix(0.133170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133170,0.000000,0.000000,0.250000,0,0);}
.m13f_c01099{transform:matrix(0.133910,0.001205,-0.002250,0.249990,0,0);-ms-transform:matrix(0.133910,0.001205,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.133910,0.001205,-0.002250,0.249990,0,0);}
.me2_c01099{transform:matrix(0.138645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138645,0.000000,0.000000,0.250000,0,0);}
.mdf_c01099{transform:matrix(0.139080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139080,0.000000,0.000000,0.250000,0,0);}
.md3_c01099{transform:matrix(0.143995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143995,0.000000,0.000000,0.250000,0,0);}
.m6_c01099{transform:matrix(0.144070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144070,0.000000,0.000000,0.250000,0,0);}
.md5_c01099{transform:matrix(0.144785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144785,0.000000,0.000000,0.250000,0,0);}
.m134_c01099{transform:matrix(0.153000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153000,0.000000,0.000000,0.250000,0,0);}
.m4_c01099{transform:matrix(0.153015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153015,0.000000,0.000000,0.250000,0,0);}
.mc6_c01099{transform:matrix(0.153580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153580,0.000000,0.000000,0.250000,0,0);}
.md4_c01099{transform:matrix(0.153605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153605,0.000000,0.000000,0.250000,0,0);}
.me5_c01099{transform:matrix(0.154480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154480,0.000000,0.000000,0.250000,0,0);}
.m20_c01099{transform:matrix(0.156290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156290,0.000000,0.000000,0.250000,0,0);}
.md7_c01099{transform:matrix(0.158175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158175,0.000000,0.000000,0.250000,0,0);}
.m69_c01099{transform:matrix(0.161030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161030,0.000000,0.000000,0.250000,0,0);}
.md8_c01099{transform:matrix(0.162580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162580,0.000000,0.000000,0.250000,0,0);}
.mec_c01099{transform:matrix(0.163120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163120,0.000000,0.000000,0.250000,0,0);}
.m6c_c01099{transform:matrix(0.167755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167755,0.000000,0.000000,0.250000,0,0);}
.m73_c01099{transform:matrix(0.168415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168415,0.000000,0.000000,0.250000,0,0);}
.me0_c01099{transform:matrix(0.169140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169140,0.000000,0.000000,0.250000,0,0);}
.meb_c01099{transform:matrix(0.170305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170305,0.000000,0.000000,0.250000,0,0);}
.md0_c01099{transform:matrix(0.175055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175055,0.000000,0.000000,0.250000,0,0);}
.mee_c01099{transform:matrix(0.176730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176730,0.000000,0.000000,0.250000,0,0);}
.m33_c01099{transform:matrix(0.176943,-0.005845,0.008254,0.249864,0,0);-ms-transform:matrix(0.176943,-0.005845,0.008254,0.249864,0,0);-webkit-transform:matrix(0.176943,-0.005845,0.008254,0.249864,0,0);}
.mc9_c01099{transform:matrix(0.179395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179395,0.000000,0.000000,0.250000,0,0);}
.md6_c01099{transform:matrix(0.180625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180625,0.000000,0.000000,0.250000,0,0);}
.mef_c01099{transform:matrix(0.183790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183790,0.000000,0.000000,0.250000,0,0);}
.m72_c01099{transform:matrix(0.185435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185435,0.000000,0.000000,0.250000,0,0);}
.mcb_c01099{transform:matrix(0.186765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186765,0.000000,0.000000,0.250000,0,0);}
.mcc_c01099{transform:matrix(0.186780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186780,0.000000,0.000000,0.250000,0,0);}
.mea_c01099{transform:matrix(0.188435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188435,0.000000,0.000000,0.250000,0,0);}
.m133_c01099{transform:matrix(0.188790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188790,0.000000,0.000000,0.250000,0,0);}
.mc0_c01099{transform:matrix(0.189290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189290,0.000000,0.000000,0.250000,0,0);}
.m8f_c01099{transform:matrix(0.190265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190265,0.000000,0.000000,0.250000,0,0);}
.m93_c01099{transform:matrix(0.190620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190620,0.000000,0.000000,0.250000,0,0);}
.m6b_c01099{transform:matrix(0.190995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190995,0.000000,0.000000,0.250000,0,0);}
.med_c01099{transform:matrix(0.191825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191825,0.000000,0.000000,0.250000,0,0);}
.me9_c01099{transform:matrix(0.195345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195345,0.000000,0.000000,0.250000,0,0);}
.m87_c01099{transform:matrix(0.196375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196375,0.000000,0.000000,0.250000,0,0);}
.me4_c01099{transform:matrix(0.196985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196985,0.000000,0.000000,0.250000,0,0);}
.m70_c01099{transform:matrix(0.197310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197310,0.000000,0.000000,0.250000,0,0);}
.m49_c01099{transform:matrix(0.201395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201395,0.000000,0.000000,0.250000,0,0);}
.m26_c01099{transform:matrix(0.202130,-0.006677,0.008254,0.249864,0,0);-ms-transform:matrix(0.202130,-0.006677,0.008254,0.249864,0,0);-webkit-transform:matrix(0.202130,-0.006677,0.008254,0.249864,0,0);}
.m6e_c01099{transform:matrix(0.202460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202460,0.000000,0.000000,0.250000,0,0);}
.mde_c01099{transform:matrix(0.203195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203195,0.000000,0.000000,0.250000,0,0);}
.me3_c01099{transform:matrix(0.203875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203875,0.000000,0.000000,0.250000,0,0);}
.m83_c01099{transform:matrix(0.204195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204195,0.000000,0.000000,0.250000,0,0);}
.m67_c01099{transform:matrix(0.204520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204520,0.000000,0.000000,0.250000,0,0);}
.m106_c01099{transform:matrix(0.204785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204785,0.000000,0.000000,0.250000,0,0);}
.m68_c01099{transform:matrix(0.205480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205480,0.000000,0.000000,0.250000,0,0);}
.m60_c01099{transform:matrix(0.206535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206535,0.000000,0.000000,0.250000,0,0);}
.md2_c01099{transform:matrix(0.207515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207515,0.000000,0.000000,0.250000,0,0);}
.m29_c01099{transform:matrix(0.209546,-0.006922,0.008254,0.249864,0,0);-ms-transform:matrix(0.209546,-0.006922,0.008254,0.249864,0,0);-webkit-transform:matrix(0.209546,-0.006922,0.008254,0.249864,0,0);}
.m4f_c01099{transform:matrix(0.210555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210555,0.000000,0.000000,0.250000,0,0);}
.m8c_c01099{transform:matrix(0.210875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210875,0.000000,0.000000,0.250000,0,0);}
.m90_c01099{transform:matrix(0.211805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211805,0.000000,0.000000,0.250000,0,0);}
.mba_c01099{transform:matrix(0.212955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212955,0.000000,0.000000,0.250000,0,0);}
.mce_c01099{transform:matrix(0.213760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213760,0.000000,0.000000,0.250000,0,0);}
.m59_c01099{transform:matrix(0.214085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214085,0.000000,0.000000,0.250000,0,0);}
.m8d_c01099{transform:matrix(0.214335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214335,0.000000,0.000000,0.250000,0,0);}
.m13a_c01099{transform:matrix(0.215186,0.001937,-0.002250,0.249990,0,0);-ms-transform:matrix(0.215186,0.001937,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.215186,0.001937,-0.002250,0.249990,0,0);}
.m95_c01099{transform:matrix(0.215295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215295,0.000000,0.000000,0.250000,0,0);}
.mc1_c01099{transform:matrix(0.218575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218575,0.000000,0.000000,0.250000,0,0);}
.m99_c01099{transform:matrix(0.219670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219670,0.000000,0.000000,0.250000,0,0);}
.mc3_c01099{transform:matrix(0.220745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220745,0.000000,0.000000,0.250000,0,0);}
.m8e_c01099{transform:matrix(0.221575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221575,0.000000,0.000000,0.250000,0,0);}
.m1f_c01099{transform:matrix(0.221885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221885,0.000000,0.000000,0.250000,0,0);}
.m5e_c01099{transform:matrix(0.222125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222125,0.000000,0.000000,0.250000,0,0);}
.mbd_c01099{transform:matrix(0.223325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223325,0.000000,0.000000,0.250000,0,0);}
.m3a_c01099{transform:matrix(0.223773,-0.007392,0.008254,0.249864,0,0);-ms-transform:matrix(0.223773,-0.007392,0.008254,0.249864,0,0);-webkit-transform:matrix(0.223773,-0.007392,0.008254,0.249864,0,0);}
.ma3_c01099{transform:matrix(0.224010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224010,0.000000,0.000000,0.250000,0,0);}
.m61_c01099{transform:matrix(0.225110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225110,0.000000,0.000000,0.250000,0,0);}
.m2b_c01099{transform:matrix(0.225197,-0.007439,0.008254,0.249864,0,0);-ms-transform:matrix(0.225197,-0.007439,0.008254,0.249864,0,0);-webkit-transform:matrix(0.225197,-0.007439,0.008254,0.249864,0,0);}
.m97_c01099{transform:matrix(0.226165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226165,0.000000,0.000000,0.250000,0,0);}
.m71_c01099{transform:matrix(0.227255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227255,0.000000,0.000000,0.250000,0,0);}
.m76_c01099{transform:matrix(0.228170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228170,0.000000,0.000000,0.250000,0,0);}
.m109_c01099{transform:matrix(0.228245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228245,0.000000,0.000000,0.250000,0,0);}
.m31_c01099{transform:matrix(0.229760,-0.007590,0.008254,0.249864,0,0);-ms-transform:matrix(0.229760,-0.007590,0.008254,0.249864,0,0);-webkit-transform:matrix(0.229760,-0.007590,0.008254,0.249864,0,0);}
.m98_c01099{transform:matrix(0.229775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229775,0.000000,0.000000,0.250000,0,0);}
.m137_c01099{transform:matrix(0.230830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230830,0.000000,0.000000,0.250000,0,0);}
.mca_c01099{transform:matrix(0.231235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231235,0.000000,0.000000,0.250000,0,0);}
.m122_c01099{transform:matrix(0.232665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232665,0.000000,0.000000,0.250000,0,0);}
.m144_c01099{transform:matrix(0.235500,0.002120,-0.002250,0.249990,0,0);-ms-transform:matrix(0.235500,0.002120,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.235500,0.002120,-0.002250,0.249990,0,0);}
.m131_c01099{transform:matrix(0.236420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236420,0.000000,0.000000,0.250000,0,0);}
.mb2_c01099{transform:matrix(0.238610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238610,0.000000,0.000000,0.250000,0,0);}
.m18_c01099{transform:matrix(0.238650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238650,0.000000,0.000000,0.250000,0,0);}
.ma7_c01099{transform:matrix(0.239385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239385,0.000000,0.000000,0.250000,0,0);}
.m32_c01099{transform:matrix(0.239534,-0.007913,0.008254,0.249864,0,0);-ms-transform:matrix(0.239534,-0.007913,0.008254,0.249864,0,0);-webkit-transform:matrix(0.239534,-0.007913,0.008254,0.249864,0,0);}
.m92_c01099{transform:matrix(0.239615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239615,0.000000,0.000000,0.250000,0,0);}
.mbf_c01099{transform:matrix(0.240890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240890,0.000000,0.000000,0.250000,0,0);}
.m143_c01099{transform:matrix(0.241070,0.002170,-0.002250,0.249990,0,0);-ms-transform:matrix(0.241070,0.002170,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.241070,0.002170,-0.002250,0.249990,0,0);}
.m6f_c01099{transform:matrix(0.241165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241165,0.000000,0.000000,0.250000,0,0);}
.ma_c01099{transform:matrix(0.242330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242330,0.000000,0.000000,0.250000,0,0);}
.mcf_c01099{transform:matrix(0.242660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242660,0.000000,0.000000,0.250000,0,0);}
.m4c_c01099{transform:matrix(0.243405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243405,0.000000,0.000000,0.250000,0,0);}
.m2c_c01099{transform:matrix(0.243457,-0.008042,0.008254,0.249864,0,0);-ms-transform:matrix(0.243457,-0.008042,0.008254,0.249864,0,0);-webkit-transform:matrix(0.243457,-0.008042,0.008254,0.249864,0,0);}
.maf_c01099{transform:matrix(0.243700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243700,0.000000,0.000000,0.250000,0,0);}
.m28_c01099{transform:matrix(0.244272,-0.008069,0.008254,0.249864,0,0);-ms-transform:matrix(0.244272,-0.008069,0.008254,0.249864,0,0);-webkit-transform:matrix(0.244272,-0.008069,0.008254,0.249864,0,0);}
.m80_c01099{transform:matrix(0.245025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245025,0.000000,0.000000,0.250000,0,0);}
.m27_c01099{transform:matrix(0.246675,-0.008148,0.008254,0.249864,0,0);-ms-transform:matrix(0.246675,-0.008148,0.008254,0.249864,0,0);-webkit-transform:matrix(0.246675,-0.008148,0.008254,0.249864,0,0);}
.m10c_c01099{transform:matrix(0.246865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246865,0.000000,0.000000,0.250000,0,0);}
.m5d_c01099{transform:matrix(0.247035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247035,0.000000,0.000000,0.250000,0,0);}
.mb1_c01099{transform:matrix(0.250080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250080,0.000000,0.000000,0.250000,0,0);}
.m51_c01099{transform:matrix(0.250905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250905,0.000000,0.000000,0.250000,0,0);}
.m123_c01099{transform:matrix(0.251130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251130,0.000000,0.000000,0.250000,0,0);}
.m3f_c01099{transform:matrix(0.251220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251220,0.000000,0.000000,0.250000,0,0);}
.ma0_c01099{transform:matrix(0.251280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251280,0.000000,0.000000,0.250000,0,0);}
.m132_c01099{transform:matrix(0.251425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251425,0.000000,0.000000,0.250000,0,0);}
.m12_c01099{transform:matrix(0.251560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251560,0.000000,0.000000,0.250000,0,0);}
.m10b_c01099{transform:matrix(0.251740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251740,0.000000,0.000000,0.250000,0,0);}
.mbe_c01099{transform:matrix(0.252620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252620,0.000000,0.000000,0.250000,0,0);}
.m11d_c01099{transform:matrix(0.253915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253915,0.000000,0.000000,0.250000,0,0);}
.m130_c01099{transform:matrix(0.254275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254275,0.000000,0.000000,0.250000,0,0);}
.m6a_c01099{transform:matrix(0.254480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254480,0.000000,0.000000,0.250000,0,0);}
.m4a_c01099{transform:matrix(0.254605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254605,0.000000,0.000000,0.250000,0,0);}
.m120_c01099{transform:matrix(0.255070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255070,0.000000,0.000000,0.250000,0,0);}
.m11a_c01099{transform:matrix(0.256445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256445,0.000000,0.000000,0.250000,0,0);}
.ma4_c01099{transform:matrix(0.256925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256925,0.000000,0.000000,0.250000,0,0);}
.m11f_c01099{transform:matrix(0.256975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256975,0.000000,0.000000,0.250000,0,0);}
.m36_c01099{transform:matrix(0.257644,-0.008511,0.008254,0.249864,0,0);-ms-transform:matrix(0.257644,-0.008511,0.008254,0.249864,0,0);-webkit-transform:matrix(0.257644,-0.008511,0.008254,0.249864,0,0);}
.m30_c01099{transform:matrix(0.259004,-0.008556,0.008254,0.249864,0,0);-ms-transform:matrix(0.259004,-0.008556,0.008254,0.249864,0,0);-webkit-transform:matrix(0.259004,-0.008556,0.008254,0.249864,0,0);}
.m96_c01099{transform:matrix(0.259385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259385,0.000000,0.000000,0.250000,0,0);}
.m10d_c01099{transform:matrix(0.259815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259815,0.000000,0.000000,0.250000,0,0);}
.m10e_c01099{transform:matrix(0.260280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260280,0.000000,0.000000,0.250000,0,0);}
.mb7_c01099{transform:matrix(0.260680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260680,0.000000,0.000000,0.250000,0,0);}
.m8b_c01099{transform:matrix(0.261110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261110,0.000000,0.000000,0.250000,0,0);}
.m107_c01099{transform:matrix(0.262820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262820,0.000000,0.000000,0.250000,0,0);}
.m85_c01099{transform:matrix(0.264055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264055,0.000000,0.000000,0.250000,0,0);}
.m74_c01099{transform:matrix(0.264450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264450,0.000000,0.000000,0.250000,0,0);}
.m10a_c01099{transform:matrix(0.264760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264760,0.000000,0.000000,0.250000,0,0);}
.m117_c01099{transform:matrix(0.265035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265035,0.000000,0.000000,0.250000,0,0);}
.mb9_c01099{transform:matrix(0.265160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265160,0.000000,0.000000,0.250000,0,0);}
.m24_c01099{transform:matrix(0.265840,-0.008782,0.008254,0.249864,0,0);-ms-transform:matrix(0.265840,-0.008782,0.008254,0.249864,0,0);-webkit-transform:matrix(0.265840,-0.008782,0.008254,0.249864,0,0);}
.m4e_c01099{transform:matrix(0.266025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266025,0.000000,0.000000,0.250000,0,0);}
.m105_c01099{transform:matrix(0.266955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266955,0.000000,0.000000,0.250000,0,0);}
.m11b_c01099{transform:matrix(0.267100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267100,0.000000,0.000000,0.250000,0,0);}
.m40_c01099{transform:matrix(0.268080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268080,0.000000,0.000000,0.250000,0,0);}
.m48_c01099{transform:matrix(0.268410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268410,0.000000,0.000000,0.250000,0,0);}
.mb5_c01099{transform:matrix(0.269035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269035,0.000000,0.000000,0.250000,0,0);}
.m81_c01099{transform:matrix(0.269280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269280,0.000000,0.000000,0.250000,0,0);}
.m75_c01099{transform:matrix(0.270345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270345,0.000000,0.000000,0.250000,0,0);}
.m140_c01099{transform:matrix(0.270489,0.002434,-0.002250,0.249990,0,0);-ms-transform:matrix(0.270489,0.002434,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.270489,0.002434,-0.002250,0.249990,0,0);}
.m86_c01099{transform:matrix(0.270670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270670,0.000000,0.000000,0.250000,0,0);}
.m4b_c01099{transform:matrix(0.270895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270895,0.000000,0.000000,0.250000,0,0);}
.m7e_c01099{transform:matrix(0.271505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271505,0.000000,0.000000,0.250000,0,0);}
.mff_c01099{transform:matrix(0.271685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271685,0.000000,0.000000,0.250000,0,0);}
.mab_c01099{transform:matrix(0.272685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272685,0.000000,0.000000,0.250000,0,0);}
.m129_c01099{transform:matrix(0.273050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273050,0.000000,0.000000,0.250000,0,0);}
.m82_c01099{transform:matrix(0.273150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273150,0.000000,0.000000,0.250000,0,0);}
.ma5_c01099{transform:matrix(0.274365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274365,0.000000,0.000000,0.250000,0,0);}
.mb0_c01099{transform:matrix(0.275320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275320,0.000000,0.000000,0.250000,0,0);}
.m52_c01099{transform:matrix(0.275525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275525,0.000000,0.000000,0.250000,0,0);}
.mfc_c01099{transform:matrix(0.275735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275735,0.000000,0.000000,0.250000,0,0);}
.mf3_c01099{transform:matrix(0.277255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277255,0.000000,0.000000,0.250000,0,0);}
.mc8_c01099{transform:matrix(0.277550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277550,0.000000,0.000000,0.250000,0,0);}
.m116_c01099{transform:matrix(0.278340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278340,0.000000,0.000000,0.250000,0,0);}
.ma2_c01099{transform:matrix(0.279565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279565,0.000000,0.000000,0.250000,0,0);}
.m50_c01099{transform:matrix(0.280440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280440,0.000000,0.000000,0.250000,0,0);}
.m128_c01099{transform:matrix(0.280630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280630,0.000000,0.000000,0.250000,0,0);}
.m64_c01099{transform:matrix(0.280825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280825,0.000000,0.000000,0.250000,0,0);}
.m55_c01099{transform:matrix(0.281095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281095,0.000000,0.000000,0.250000,0,0);}
.m78_c01099{transform:matrix(0.281215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281215,0.000000,0.000000,0.250000,0,0);}
.m25_c01099{transform:matrix(0.281911,-0.009312,0.008254,0.249864,0,0);-ms-transform:matrix(0.281911,-0.009312,0.008254,0.249864,0,0);-webkit-transform:matrix(0.281911,-0.009312,0.008254,0.249864,0,0);}
.m115_c01099{transform:matrix(0.282795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282795,0.000000,0.000000,0.250000,0,0);}
.m63_c01099{transform:matrix(0.282905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282905,0.000000,0.000000,0.250000,0,0);}
.m79_c01099{transform:matrix(0.283435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283435,0.000000,0.000000,0.250000,0,0);}
.m34_c01099{transform:matrix(0.284780,-0.009407,0.008254,0.249864,0,0);-ms-transform:matrix(0.284780,-0.009407,0.008254,0.249864,0,0);-webkit-transform:matrix(0.284780,-0.009407,0.008254,0.249864,0,0);}
.mae_c01099{transform:matrix(0.285605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285605,0.000000,0.000000,0.250000,0,0);}
.ma9_c01099{transform:matrix(0.285625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285625,0.000000,0.000000,0.250000,0,0);}
.mc5_c01099{transform:matrix(0.286300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286300,0.000000,0.000000,0.250000,0,0);}
.mfd_c01099{transform:matrix(0.288800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288800,0.000000,0.000000,0.250000,0,0);}
.m100_c01099{transform:matrix(0.290970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290970,0.000000,0.000000,0.250000,0,0);}
.mac_c01099{transform:matrix(0.291940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291940,0.000000,0.000000,0.250000,0,0);}
.m6d_c01099{transform:matrix(0.292115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292115,0.000000,0.000000,0.250000,0,0);}
.m127_c01099{transform:matrix(0.292215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292215,0.000000,0.000000,0.250000,0,0);}
.m35_c01099{transform:matrix(0.292316,-0.009656,0.008254,0.249864,0,0);-ms-transform:matrix(0.292316,-0.009656,0.008254,0.249864,0,0);-webkit-transform:matrix(0.292316,-0.009656,0.008254,0.249864,0,0);}
.mcd_c01099{transform:matrix(0.293300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293300,0.000000,0.000000,0.250000,0,0);}
.mc2_c01099{transform:matrix(0.293865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293865,0.000000,0.000000,0.250000,0,0);}
.m118_c01099{transform:matrix(0.294375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294375,0.000000,0.000000,0.250000,0,0);}
.m9c_c01099{transform:matrix(0.294470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294470,0.000000,0.000000,0.250000,0,0);}
.m9a_c01099{transform:matrix(0.294715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294715,0.000000,0.000000,0.250000,0,0);}
.m9d_c01099{transform:matrix(0.295050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295050,0.000000,0.000000,0.250000,0,0);}
.mf7_c01099{transform:matrix(0.295160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295160,0.000000,0.000000,0.250000,0,0);}
.m88_c01099{transform:matrix(0.298360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298360,0.000000,0.000000,0.250000,0,0);}
.mfe_c01099{transform:matrix(0.298800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298800,0.000000,0.000000,0.250000,0,0);}
.m7f_c01099{transform:matrix(0.298885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298885,0.000000,0.000000,0.250000,0,0);}
.m84_c01099{transform:matrix(0.299905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299905,0.000000,0.000000,0.250000,0,0);}
.mb6_c01099{transform:matrix(0.301395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301395,0.000000,0.000000,0.250000,0,0);}
.m5f_c01099{transform:matrix(0.301970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301970,0.000000,0.000000,0.250000,0,0);}
.m94_c01099{transform:matrix(0.304160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304160,0.000000,0.000000,0.250000,0,0);}
.m124_c01099{transform:matrix(0.304375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304375,0.000000,0.000000,0.250000,0,0);}
.m9b_c01099{transform:matrix(0.304895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304895,0.000000,0.000000,0.250000,0,0);}
.m3_c01099{transform:matrix(0.305295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305295,0.000000,0.000000,0.250000,0,0);}
.m10_c01099{transform:matrix(0.305940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305940,0.000000,0.000000,0.250000,0,0);}
.m113_c01099{transform:matrix(0.306015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306015,0.000000,0.000000,0.250000,0,0);}
.m8a_c01099{transform:matrix(0.310415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310415,0.000000,0.000000,0.250000,0,0);}
.m22_c01099{transform:matrix(0.310505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310505,0.000000,0.000000,0.250000,0,0);}
.m4d_c01099{transform:matrix(0.311675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311675,0.000000,0.000000,0.250000,0,0);}
.m66_c01099{transform:matrix(0.312315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312315,0.000000,0.000000,0.250000,0,0);}
.mfa_c01099{transform:matrix(0.313445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313445,0.000000,0.000000,0.250000,0,0);}
.m38_c01099{transform:matrix(0.313849,-0.010367,0.008254,0.249864,0,0);-ms-transform:matrix(0.313849,-0.010367,0.008254,0.249864,0,0);-webkit-transform:matrix(0.313849,-0.010367,0.008254,0.249864,0,0);}
.m9e_c01099{transform:matrix(0.314740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314740,0.000000,0.000000,0.250000,0,0);}
.m41_c01099{transform:matrix(0.315055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315055,0.000000,0.000000,0.250000,0,0);}
.m2a_c01099{transform:matrix(0.316213,-0.010445,0.008254,0.249864,0,0);-ms-transform:matrix(0.316213,-0.010445,0.008254,0.249864,0,0);-webkit-transform:matrix(0.316213,-0.010445,0.008254,0.249864,0,0);}
.m104_c01099{transform:matrix(0.317615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317615,0.000000,0.000000,0.250000,0,0);}
.m7c_c01099{transform:matrix(0.319755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319755,0.000000,0.000000,0.250000,0,0);}
.ma8_c01099{transform:matrix(0.319855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319855,0.000000,0.000000,0.250000,0,0);}
.maa_c01099{transform:matrix(0.320580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320580,0.000000,0.000000,0.250000,0,0);}
.mf5_c01099{transform:matrix(0.320860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320860,0.000000,0.000000,0.250000,0,0);}
.m125_c01099{transform:matrix(0.321175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321175,0.000000,0.000000,0.250000,0,0);}
.m7b_c01099{transform:matrix(0.322685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322685,0.000000,0.000000,0.250000,0,0);}
.m111_c01099{transform:matrix(0.323155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323155,0.000000,0.000000,0.250000,0,0);}
.m37_c01099{transform:matrix(0.323369,-0.010682,0.008254,0.249864,0,0);-ms-transform:matrix(0.323369,-0.010682,0.008254,0.249864,0,0);-webkit-transform:matrix(0.323369,-0.010682,0.008254,0.249864,0,0);}
.mf6_c01099{transform:matrix(0.323420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323420,0.000000,0.000000,0.250000,0,0);}
.ma6_c01099{transform:matrix(0.323620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323620,0.000000,0.000000,0.250000,0,0);}
.mdc_c01099{transform:matrix(0.324905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324905,0.000000,0.000000,0.250000,0,0);}
.mf9_c01099{transform:matrix(0.325240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325240,0.000000,0.000000,0.250000,0,0);}
.m108_c01099{transform:matrix(0.325420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325420,0.000000,0.000000,0.250000,0,0);}
.m56_c01099{transform:matrix(0.326655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326655,0.000000,0.000000,0.250000,0,0);}
.m3b_c01099{transform:matrix(0.327566,-0.010821,0.008254,0.249864,0,0);-ms-transform:matrix(0.327566,-0.010821,0.008254,0.249864,0,0);-webkit-transform:matrix(0.327566,-0.010821,0.008254,0.249864,0,0);}
.m119_c01099{transform:matrix(0.327735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327735,0.000000,0.000000,0.250000,0,0);}
.m62_c01099{transform:matrix(0.328090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328090,0.000000,0.000000,0.250000,0,0);}
.m9f_c01099{transform:matrix(0.329960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329960,0.000000,0.000000,0.250000,0,0);}
.m9_c01099{transform:matrix(0.334485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334485,0.000000,0.000000,0.250000,0,0);}
.mb4_c01099{transform:matrix(0.336885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336885,0.000000,0.000000,0.250000,0,0);}
.m102_c01099{transform:matrix(0.337880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337880,0.000000,0.000000,0.250000,0,0);}
.m23_c01099{transform:matrix(0.339655,-0.011220,0.008254,0.249864,0,0);-ms-transform:matrix(0.339655,-0.011220,0.008254,0.249864,0,0);-webkit-transform:matrix(0.339655,-0.011220,0.008254,0.249864,0,0);}
.m5c_c01099{transform:matrix(0.339960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339960,0.000000,0.000000,0.250000,0,0);}
.m103_c01099{transform:matrix(0.342030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342030,0.000000,0.000000,0.250000,0,0);}
.m1_c01099{transform:matrix(0.343310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343310,0.000000,0.000000,0.250000,0,0);}
.m7d_c01099{transform:matrix(0.344370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344370,0.000000,0.000000,0.250000,0,0);}
.m13c_c01099{transform:matrix(0.345811,0.003112,-0.002250,0.249990,0,0);-ms-transform:matrix(0.345811,0.003112,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.345811,0.003112,-0.002250,0.249990,0,0);}
.mdd_c01099{transform:matrix(0.347095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347095,0.000000,0.000000,0.250000,0,0);}
.mbc_c01099{transform:matrix(0.357395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357395,0.000000,0.000000,0.250000,0,0);}
.mf8_c01099{transform:matrix(0.357605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357605,0.000000,0.000000,0.250000,0,0);}
.m54_c01099{transform:matrix(0.360360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360360,0.000000,0.000000,0.250000,0,0);}
.m121_c01099{transform:matrix(0.364705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364705,0.000000,0.000000,0.250000,0,0);}
.mf4_c01099{transform:matrix(0.370620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370620,0.000000,0.000000,0.250000,0,0);}
.m11_c01099{transform:matrix(0.373450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373450,0.000000,0.000000,0.250000,0,0);}
.me7_c01099{transform:matrix(0.378075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378075,0.000000,0.000000,0.250000,0,0);}
.m5a_c01099{transform:matrix(0.382835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382835,0.000000,0.000000,0.250000,0,0);}
.m10f_c01099{transform:matrix(0.384040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384040,0.000000,0.000000,0.250000,0,0);}
.m44_c01099{transform:matrix(0.384130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384130,0.000000,0.000000,0.250000,0,0);}
.m53_c01099{transform:matrix(0.384715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384715,0.000000,0.000000,0.250000,0,0);}
.m126_c01099{transform:matrix(0.389100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389100,0.000000,0.000000,0.250000,0,0);}
.m77_c01099{transform:matrix(0.403835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403835,0.000000,0.000000,0.250000,0,0);}
.m13_c01099{transform:matrix(0.409830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409830,0.000000,0.000000,0.250000,0,0);}
.mfb_c01099{transform:matrix(0.414880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414880,0.000000,0.000000,0.250000,0,0);}
.m14_c01099{transform:matrix(0.418525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418525,0.000000,0.000000,0.250000,0,0);}
.mb8_c01099{transform:matrix(0.433335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433335,0.000000,0.000000,0.250000,0,0);}
.m5b_c01099{transform:matrix(0.434345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434345,0.000000,0.000000,0.250000,0,0);}
.m2e_c01099{transform:matrix(0.434848,-0.014364,0.008254,0.249864,0,0);-ms-transform:matrix(0.434848,-0.014364,0.008254,0.249864,0,0);-webkit-transform:matrix(0.434848,-0.014364,0.008254,0.249864,0,0);}
.m110_c01099{transform:matrix(0.438955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.438955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.438955,0.000000,0.000000,0.250000,0,0);}
.me6_c01099{transform:matrix(0.441905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441905,0.000000,0.000000,0.250000,0,0);}
.m43_c01099{transform:matrix(0.444370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444370,0.000000,0.000000,0.250000,0,0);}
.m11e_c01099{transform:matrix(0.447905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447905,0.000000,0.000000,0.250000,0,0);}
.m65_c01099{transform:matrix(0.448720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448720,0.000000,0.000000,0.250000,0,0);}
.m39_c01099{transform:matrix(0.461143,-0.015233,0.008254,0.249864,0,0);-ms-transform:matrix(0.461143,-0.015233,0.008254,0.249864,0,0);-webkit-transform:matrix(0.461143,-0.015233,0.008254,0.249864,0,0);}
.m114_c01099{transform:matrix(0.469960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469960,0.000000,0.000000,0.250000,0,0);}
.m12b_c01099{transform:matrix(0.470725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470725,0.000000,0.000000,0.250000,0,0);}
.md_c01099{transform:matrix(0.475855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475855,0.000000,0.000000,0.250000,0,0);}
.m12f_c01099{transform:matrix(0.481845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.481845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.481845,0.000000,0.000000,0.250000,0,0);}
.m142_c01099{transform:matrix(0.494045,0.004446,-0.002250,0.249990,0,0);-ms-transform:matrix(0.494045,0.004446,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.494045,0.004446,-0.002250,0.249990,0,0);}
.m58_c01099{transform:matrix(0.494430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494430,0.000000,0.000000,0.250000,0,0);}
.m13b_c01099{transform:matrix(0.497435,0.004477,-0.002250,0.249990,0,0);-ms-transform:matrix(0.497435,0.004477,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.497435,0.004477,-0.002250,0.249990,0,0);}
.me8_c01099{transform:matrix(0.500980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.500980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.500980,0.000000,0.000000,0.250000,0,0);}
.m1e_c01099{transform:matrix(0.502360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502360,0.000000,0.000000,0.250000,0,0);}
.m112_c01099{transform:matrix(0.502450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502450,0.000000,0.000000,0.250000,0,0);}
.m13d_c01099{transform:matrix(0.505330,0.004548,-0.002250,0.249990,0,0);-ms-transform:matrix(0.505330,0.004548,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.505330,0.004548,-0.002250,0.249990,0,0);}
.mb_c01099{transform:matrix(0.513080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513080,0.000000,0.000000,0.250000,0,0);}
.mad_c01099{transform:matrix(0.533680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533680,0.000000,0.000000,0.250000,0,0);}
.m2f_c01099{transform:matrix(0.557121,-0.018403,0.008254,0.249864,0,0);-ms-transform:matrix(0.557121,-0.018403,0.008254,0.249864,0,0);-webkit-transform:matrix(0.557121,-0.018403,0.008254,0.249864,0,0);}
.m12e_c01099{transform:matrix(0.566705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566705,0.000000,0.000000,0.250000,0,0);}
.ma1_c01099{transform:matrix(0.574405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.574405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.574405,0.000000,0.000000,0.250000,0,0);}
.md1_c01099{transform:matrix(0.584795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.584795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.584795,0.000000,0.000000,0.250000,0,0);}
.m47_c01099{transform:matrix(0.588020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.588020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.588020,0.000000,0.000000,0.250000,0,0);}
.m7a_c01099{transform:matrix(0.616005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.616005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.616005,0.000000,0.000000,0.250000,0,0);}
.mb3_c01099{transform:matrix(0.620030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620030,0.000000,0.000000,0.250000,0,0);}
.m136_c01099{transform:matrix(0.623605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.623605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.623605,0.000000,0.000000,0.250000,0,0);}
.m19_c01099{transform:matrix(0.624400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.624400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.624400,0.000000,0.000000,0.250000,0,0);}
.m138_c01099{transform:matrix(0.660063,0.005941,-0.002250,0.249990,0,0);-ms-transform:matrix(0.660063,0.005941,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.660063,0.005941,-0.002250,0.249990,0,0);}
.mf_c01099{transform:matrix(0.667595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667595,0.000000,0.000000,0.250000,0,0);}
.mf0_c01099{transform:matrix(0.709865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.709865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.709865,0.000000,0.000000,0.250000,0,0);}
.m91_c01099{transform:matrix(0.712280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.712280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.712280,0.000000,0.000000,0.250000,0,0);}
.m3e_c01099{transform:matrix(0.719260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.719260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.719260,0.000000,0.000000,0.250000,0,0);}
.m21_c01099{transform:matrix(0.723470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.723470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.723470,0.000000,0.000000,0.250000,0,0);}
.m3d_c01099{transform:matrix(0.735115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735115,0.000000,0.000000,0.250000,0,0);}
.m8_c01099{transform:matrix(0.742160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.742160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.742160,0.000000,0.000000,0.250000,0,0);}
.m1d_c01099{transform:matrix(0.757205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.757205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.757205,0.000000,0.000000,0.250000,0,0);}
.m12a_c01099{transform:matrix(0.798960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.798960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.798960,0.000000,0.000000,0.250000,0,0);}
.mbb_c01099{transform:matrix(0.800770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.800770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.800770,0.000000,0.000000,0.250000,0,0);}
.m1a_c01099{transform:matrix(0.804005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.804005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.804005,0.000000,0.000000,0.250000,0,0);}
.m3c_c01099{transform:matrix(0.854165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.854165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.854165,0.000000,0.000000,0.250000,0,0);}
.m42_c01099{transform:matrix(0.947625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.947625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.947625,0.000000,0.000000,0.250000,0,0);}
.mf2_c01099{transform:matrix(1.383100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.383100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.383100,0.000000,0.000000,0.250000,0,0);}
.v0_c01099{vertical-align:0.000000px;}
.ls0_c01099{letter-spacing:0.000000px;}
.sc__c01099{text-shadow:none;}
.sc0_c01099{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__c01099{-webkit-text-stroke:0px transparent;}
.sc0_c01099{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01099{word-spacing:0.000000px;}
._0_c01099{width:3992.487702px;}
.fc0_c01099{color:transparent;}
.fs1_c01099{font-size:12.000000px;}
.fs0_c01099{font-size:24.000000px;}
.fs2_c01099{font-size:30.000000px;}
.fs5_c01099{font-size:66.000000px;}
.fs8_c01099{font-size:72.000000px;}
.fs6_c01099{font-size:78.000000px;}
.fs4_c01099{font-size:83.961771px;}
.fsa_c01099{font-size:84.000000px;}
.fs3_c01099{font-size:89.959041px;}
.fs9_c01099{font-size:90.000000px;}
.fse_c01099{font-size:90.003645px;}
.fs7_c01099{font-size:96.000000px;}
.fsf_c01099{font-size:96.003888px;}
.fsb_c01099{font-size:120.000000px;}
.fsc_c01099{font-size:156.000000px;}
.fsd_c01099{font-size:162.000000px;}
.y0_c01099{bottom:0.000000px;}
.ya9_c01099{bottom:192.500004px;}
.ya8_c01099{bottom:194.194122px;}
.ya7_c01099{bottom:195.105844px;}
.ya6_c01099{bottom:195.127764px;}
.ya5_c01099{bottom:195.603101px;}
.ya4_c01099{bottom:203.040633px;}
.ya3_c01099{bottom:227.351652px;}
.ya2_c01099{bottom:227.954116px;}
.ya1_c01099{bottom:228.748808px;}
.ya0_c01099{bottom:229.250157px;}
.y9f_c01099{bottom:229.735523px;}
.y9e_c01099{bottom:233.964951px;}
.y9d_c01099{bottom:234.091500px;}
.y9a_c01099{bottom:285.390000px;}
.y9b_c01099{bottom:287.550000px;}
.y9c_c01099{bottom:292.410000px;}
.y99_c01099{bottom:299.881500px;}
.y98_c01099{bottom:300.630000px;}
.y97_c01099{bottom:300.762000px;}
.y96_c01099{bottom:301.218000px;}
.y95_c01099{bottom:301.308000px;}
.y93_c01099{bottom:301.482000px;}
.y94_c01099{bottom:301.497000px;}
.y92_c01099{bottom:302.287500px;}
.y91_c01099{bottom:302.959500px;}
.y90_c01099{bottom:304.006500px;}
.y8f_c01099{bottom:336.327000px;}
.y8e_c01099{bottom:371.064000px;}
.y8d_c01099{bottom:405.871500px;}
.y8c_c01099{bottom:440.995500px;}
.y8b_c01099{bottom:475.209000px;}
.y8a_c01099{bottom:475.485000px;}
.y89_c01099{bottom:475.614000px;}
.y88_c01099{bottom:475.752000px;}
.y87_c01099{bottom:476.194500px;}
.y86_c01099{bottom:476.343000px;}
.y85_c01099{bottom:476.497500px;}
.y84_c01099{bottom:476.613000px;}
.y83_c01099{bottom:476.860500px;}
.y82_c01099{bottom:477.072000px;}
.y81_c01099{bottom:477.324000px;}
.y80_c01099{bottom:477.433500px;}
.y7f_c01099{bottom:477.694500px;}
.y7e_c01099{bottom:477.876000px;}
.y7c_c01099{bottom:478.176000px;}
.y7d_c01099{bottom:478.186500px;}
.y7b_c01099{bottom:508.176000px;}
.y7a_c01099{bottom:508.738500px;}
.y79_c01099{bottom:509.032500px;}
.y78_c01099{bottom:509.869500px;}
.y77_c01099{bottom:510.598500px;}
.y76_c01099{bottom:511.170000px;}
.y75_c01099{bottom:511.351500px;}
.y74_c01099{bottom:511.795500px;}
.y73_c01099{bottom:512.022000px;}
.y72_c01099{bottom:512.823000px;}
.y71_c01099{bottom:513.273000px;}
.y70_c01099{bottom:543.231000px;}
.y6f_c01099{bottom:543.487500px;}
.y6e_c01099{bottom:543.661500px;}
.y6d_c01099{bottom:544.029000px;}
.y6c_c01099{bottom:544.249500px;}
.y6b_c01099{bottom:544.626000px;}
.y6a_c01099{bottom:544.771500px;}
.y69_c01099{bottom:545.335500px;}
.y68_c01099{bottom:545.511000px;}
.y67_c01099{bottom:545.941500px;}
.y66_c01099{bottom:581.271000px;}
.y65_c01099{bottom:616.530000px;}
.y64_c01099{bottom:617.115000px;}
.y63_c01099{bottom:617.934000px;}
.y62_c01099{bottom:618.424500px;}
.y61_c01099{bottom:618.994500px;}
.y60_c01099{bottom:619.716000px;}
.y5f_c01099{bottom:620.100000px;}
.y5e_c01099{bottom:620.940000px;}
.y5d_c01099{bottom:621.570000px;}
.y5c_c01099{bottom:622.360500px;}
.y5b_c01099{bottom:653.673000px;}
.y5a_c01099{bottom:687.559500px;}
.y59_c01099{bottom:723.370500px;}
.y58_c01099{bottom:757.825500px;}
.y57_c01099{bottom:793.731000px;}
.y56_c01099{bottom:794.391000px;}
.y55_c01099{bottom:794.581500px;}
.y54_c01099{bottom:794.787000px;}
.y53_c01099{bottom:794.976000px;}
.y52_c01099{bottom:795.441000px;}
.y51_c01099{bottom:795.645000px;}
.y50_c01099{bottom:796.011000px;}
.y4f_c01099{bottom:796.168500px;}
.y4e_c01099{bottom:796.771500px;}
.y4d_c01099{bottom:797.041500px;}
.y4c_c01099{bottom:828.862500px;}
.y4b_c01099{bottom:863.493000px;}
.y4a_c01099{bottom:863.622000px;}
.y49_c01099{bottom:864.000000px;}
.y48_c01099{bottom:864.546000px;}
.y47_c01099{bottom:865.695000px;}
.y46_c01099{bottom:865.794000px;}
.y45_c01099{bottom:866.314500px;}
.y44_c01099{bottom:866.521500px;}
.y43_c01099{bottom:866.788500px;}
.y42_c01099{bottom:866.997000px;}
.y41_c01099{bottom:899.628000px;}
.y40_c01099{bottom:935.269500px;}
.y3f_c01099{bottom:969.264000px;}
.y3e_c01099{bottom:969.712500px;}
.y3d_c01099{bottom:970.116000px;}
.y3c_c01099{bottom:970.249500px;}
.y3b_c01099{bottom:970.737000px;}
.y3a_c01099{bottom:970.863000px;}
.y39_c01099{bottom:971.248500px;}
.y38_c01099{bottom:971.416500px;}
.y37_c01099{bottom:971.818500px;}
.y36_c01099{bottom:972.082500px;}
.y35_c01099{bottom:972.325500px;}
.y33_c01099{bottom:972.448500px;}
.y34_c01099{bottom:972.463500px;}
.y32_c01099{bottom:972.564000px;}
.y31_c01099{bottom:1001.358000px;}
.y30_c01099{bottom:1001.470500px;}
.y2f_c01099{bottom:1001.815500px;}
.y2e_c01099{bottom:1002.061500px;}
.y2d_c01099{bottom:1002.321000px;}
.y2c_c01099{bottom:1003.176000px;}
.y2b_c01099{bottom:1003.458000px;}
.y2a_c01099{bottom:1004.088000px;}
.y29_c01099{bottom:1004.335500px;}
.y28_c01099{bottom:1004.598000px;}
.y27_c01099{bottom:1004.896500px;}
.y26_c01099{bottom:1005.390000px;}
.y25_c01099{bottom:1005.664500px;}
.y24_c01099{bottom:1006.105500px;}
.y23_c01099{bottom:1006.546500px;}
.y22_c01099{bottom:1006.855500px;}
.y21_c01099{bottom:1007.248500px;}
.y20_c01099{bottom:1040.691000px;}
.y12_c01099{bottom:1106.997237px;}
.y13_c01099{bottom:1108.620338px;}
.y14_c01099{bottom:1110.751960px;}
.y15_c01099{bottom:1112.273136px;}
.y16_c01099{bottom:1114.502625px;}
.y17_c01099{bottom:1117.293480px;}
.y18_c01099{bottom:1118.085143px;}
.y19_c01099{bottom:1120.047196px;}
.y1a_c01099{bottom:1121.078115px;}
.y1b_c01099{bottom:1125.001814px;}
.y1c_c01099{bottom:1126.152045px;}
.y1d_c01099{bottom:1127.972745px;}
.y1e_c01099{bottom:1129.165609px;}
.y1f_c01099{bottom:1130.001354px;}
.y7_c01099{bottom:1142.631000px;}
.y8_c01099{bottom:1143.924584px;}
.y9_c01099{bottom:1145.870330px;}
.ya_c01099{bottom:1148.789542px;}
.yb_c01099{bottom:1149.686136px;}
.yc_c01099{bottom:1154.570054px;}
.yd_c01099{bottom:1155.720681px;}
.ye_c01099{bottom:1158.908828px;}
.yf_c01099{bottom:1160.795470px;}
.y10_c01099{bottom:1162.893479px;}
.y11_c01099{bottom:1163.911198px;}
.y6_c01099{bottom:1204.419000px;}
.y5_c01099{bottom:1216.999500px;}
.y4_c01099{bottom:1222.020000px;}
.y3_c01099{bottom:1224.474000px;}
.y2_c01099{bottom:1229.425500px;}
.y1_c01099{bottom:1235.067000px;}
.h3_c01099{height:12.000000px;}
.h2_c01099{height:24.000000px;}
.h4_c01099{height:30.000000px;}
.h7_c01099{height:66.000000px;}
.ha_c01099{height:72.000000px;}
.h8_c01099{height:78.000000px;}
.h6_c01099{height:83.961771px;}
.hc_c01099{height:84.000000px;}
.h5_c01099{height:89.959041px;}
.hb_c01099{height:90.000000px;}
.h10_c01099{height:90.003645px;}
.h9_c01099{height:96.000000px;}
.h11_c01099{height:96.003888px;}
.hd_c01099{height:120.000000px;}
.he_c01099{height:156.000000px;}
.hf_c01099{height:162.000000px;}
.h0_c01099{height:1246.320000px;}
.h1_c01099{height:1246.500000px;}
.w0_c01099{width:927.450000px;}
.w1_c01099{width:927.750000px;}
.x0_c01099{left:0.000000px;}
.xcf_c01099{left:1.999500px;}
.x4b_c01099{left:3.348000px;}
.xa9_c01099{left:8.791500px;}
.xa8_c01099{left:11.307000px;}
.x9d_c01099{left:14.208000px;}
.xd0_c01099{left:16.060500px;}
.xb2_c01099{left:19.975500px;}
.xa4_c01099{left:21.153000px;}
.x42_c01099{left:24.067500px;}
.x4c_c01099{left:26.361000px;}
.xbc_c01099{left:30.235500px;}
.xb3_c01099{left:36.445500px;}
.x38_c01099{left:37.530000px;}
.x82_c01099{left:42.120000px;}
.x73_c01099{left:44.131500px;}
.x2e_c01099{left:49.911711px;}
.x4d_c01099{left:50.937000px;}
.x66_c01099{left:54.193500px;}
.x60_c01099{left:56.158500px;}
.x24_c01099{left:69.607500px;}
.x61_c01099{left:71.278500px;}
.x43_c01099{left:73.278000px;}
.x8e_c01099{left:75.066000px;}
.xb4_c01099{left:84.775500px;}
.x78_c01099{left:85.860000px;}
.x67_c01099{left:89.016000px;}
.x2f_c01099{left:96.231773px;}
.x6c_c01099{left:97.740000px;}
.x4e_c01099{left:99.534000px;}
.x95_c01099{left:105.300000px;}
.x25_c01099{left:108.767800px;}
.x39_c01099{left:111.240000px;}
.x83_c01099{left:116.640000px;}
.x9e_c01099{left:121.926000px;}
.xbd_c01099{left:130.135500px;}
.x8f_c01099{left:132.376500px;}
.x68_c01099{left:133.570500px;}
.xcc_c01099{left:138.780000px;}
.xcd_c01099{left:140.670000px;}
.xce_c01099{left:148.500000px;}
.xb5_c01099{left:149.575500px;}
.x4f_c01099{left:152.443500px;}
.x3a_c01099{left:155.790000px;}
.x30_c01099{left:157.083347px;}
.x88_c01099{left:162.270000px;}
.x9f_c01099{left:165.943500px;}
.x26_c01099{left:167.670839px;}
.x56_c01099{left:170.098500px;}
.x84_c01099{left:177.120000px;}
.xb6_c01099{left:180.895500px;}
.x74_c01099{left:189.750000px;}
.x6d_c01099{left:193.320000px;}
.xaa_c01099{left:196.783500px;}
.xbe_c01099{left:198.175500px;}
.x31_c01099{left:200.499513px;}
.x7d_c01099{left:204.120000px;}
.x90_c01099{left:208.753500px;}
.x75_c01099{left:216.084000px;}
.x96_c01099{left:217.620000px;}
.xb7_c01099{left:220.045500px;}
.x44_c01099{left:222.090000px;}
.xab_c01099{left:224.301000px;}
.x79_c01099{left:229.770000px;}
.x50_c01099{left:232.936500px;}
.xc2_c01099{left:238.135500px;}
.x89_c01099{left:243.000000px;}
.x97_c01099{left:250.290000px;}
.x69_c01099{left:254.808000px;}
.x27_c01099{left:256.043378px;}
.x7e_c01099{left:262.440000px;}
.x32_c01099{left:264.132105px;}
.x51_c01099{left:266.677500px;}
.x6a_c01099{left:271.207500px;}
.xbf_c01099{left:274.315500px;}
.x57_c01099{left:277.558500px;}
.x28_c01099{left:283.185708px;}
.xac_c01099{left:287.209500px;}
.x3b_c01099{left:288.900000px;}
.x7f_c01099{left:294.840000px;}
.xa0_c01099{left:306.885000px;}
.x91_c01099{left:309.208500px;}
.x58_c01099{left:311.578500px;}
.xc8_c01099{left:315.852000px;}
.x45_c01099{left:318.159000px;}
.x7a_c01099{left:320.760000px;}
.x62_c01099{left:322.108500px;}
.xc3_c01099{left:324.805500px;}
.x3c_c01099{left:329.130000px;}
.x85_c01099{left:339.120000px;}
.x33_c01099{left:343.805100px;}
.x59_c01099{left:345.058500px;}
.x80_c01099{left:351.270000px;}
.x13_c01099{left:354.240000px;}
.x3d_c01099{left:355.320000px;}
.xc_c01099{left:357.750000px;}
.x92_c01099{left:361.048500px;}
.x34_c01099{left:366.408488px;}
.x52_c01099{left:368.742000px;}
.xc4_c01099{left:370.435500px;}
.x8a_c01099{left:380.970000px;}
.x46_c01099{left:388.153500px;}
.x98_c01099{left:394.200000px;}
.x14_c01099{left:397.170000px;}
.xd_c01099{left:398.790000px;}
.x63_c01099{left:399.868500px;}
.xad_c01099{left:401.949000px;}
.xa5_c01099{left:403.437000px;}
.x93_c01099{left:405.573000px;}
.x8b_c01099{left:407.700000px;}
.x5a_c01099{left:409.858500px;}
.x47_c01099{left:419.082000px;}
.x76_c01099{left:420.297000px;}
.xe_c01099{left:422.550000px;}
.x86_c01099{left:427.680000px;}
.x1b_c01099{left:431.730000px;}
.xa1_c01099{left:437.583000px;}
.x5b_c01099{left:444.418500px;}
.xc5_c01099{left:446.845500px;}
.xb8_c01099{left:449.275500px;}
.xf_c01099{left:450.900000px;}
.x3e_c01099{left:453.600000px;}
.x7b_c01099{left:454.680000px;}
.x15_c01099{left:463.590000px;}
.x29_c01099{left:465.867843px;}
.x5c_c01099{left:467.638500px;}
.xae_c01099{left:469.419000px;}
.xc0_c01099{left:472.495500px;}
.x1c_c01099{left:474.120000px;}
.x94_c01099{left:480.042000px;}
.x6e_c01099{left:483.300000px;}
.x77_c01099{left:486.435000px;}
.x53_c01099{left:492.939000px;}
.xc9_c01099{left:494.245500px;}
.x48_c01099{left:497.776500px;}
.x7_c01099{left:504.090000px;}
.x16_c01099{left:505.170000px;}
.x99_c01099{left:507.330000px;}
.x3f_c01099{left:509.760000px;}
.x6f_c01099{left:511.650000px;}
.x64_c01099{left:520.018500px;}
.xd4_c01099{left:528.995538px;}
.x8c_c01099{left:530.010000px;}
.x49_c01099{left:533.059500px;}
.xd1_c01099{left:539.926500px;}
.x70_c01099{left:544.590000px;}
.x5d_c01099{left:552.958500px;}
.x2a_c01099{left:562.381732px;}
.x35_c01099{left:563.851316px;}
.xb9_c01099{left:570.505500px;}
.x54_c01099{left:573.625500px;}
.x81_c01099{left:577.260000px;}
.x9a_c01099{left:578.610000px;}
.x1_c01099{left:583.740000px;}
.x20_c01099{left:585.900000px;}
.xd5_c01099{left:591.230176px;}
.xca_c01099{left:592.264500px;}
.xd2_c01099{left:595.632000px;}
.x36_c01099{left:596.673780px;}
.x8d_c01099{left:598.590000px;}
.x5e_c01099{left:599.938500px;}
.x87_c01099{left:604.530000px;}
.xc6_c01099{left:607.495500px;}
.x71_c01099{left:608.850000px;}
.x6b_c01099{left:616.609500px;}
.x2b_c01099{left:619.495561px;}
.xba_c01099{left:624.505500px;}
.xa2_c01099{left:628.137000px;}
.xc7_c01099{left:636.655500px;}
.x2_c01099{left:639.090000px;}
.x72_c01099{left:641.790000px;}
.x40_c01099{left:644.220000px;}
.x37_c01099{left:648.657825px;}
.x1d_c01099{left:650.970000px;}
.xaf_c01099{left:651.982500px;}
.x17_c01099{left:655.830000px;}
.x65_c01099{left:657.178500px;}
.x9b_c01099{left:658.530000px;}
.xc1_c01099{left:661.495500px;}
.x55_c01099{left:663.238500px;}
.xbb_c01099{left:664.735500px;}
.xa6_c01099{left:669.408000px;}
.x3_c01099{left:672.300000px;}
.x10_c01099{left:675.810000px;}
.x2c_c01099{left:683.007986px;}
.xb0_c01099{left:684.075000px;}
.x8_c01099{left:687.150000px;}
.xa3_c01099{left:692.128500px;}
.x9_c01099{left:695.520000px;}
.x1e_c01099{left:702.540000px;}
.xd6_c01099{left:704.126074px;}
.x18_c01099{left:706.050000px;}
.x5f_c01099{left:707.398500px;}
.x4_c01099{left:709.020000px;}
.x41_c01099{left:711.990000px;}
.x2d_c01099{left:713.817146px;}
.x7c_c01099{left:715.500000px;}
.xcb_c01099{left:717.055500px;}
.x9c_c01099{left:730.620000px;}
.x21_c01099{left:741.690000px;}
.x4a_c01099{left:746.349000px;}
.x1f_c01099{left:747.900000px;}
.xa7_c01099{left:749.848500px;}
.xd3_c01099{left:750.871500px;}
.xb1_c01099{left:752.970000px;}
.x11_c01099{left:759.780000px;}
.x22_c01099{left:761.940000px;}
.x19_c01099{left:763.290000px;}
.x5_c01099{left:767.610000px;}
.xa_c01099{left:768.690000px;}
.x23_c01099{left:790.830000px;}
.x1a_c01099{left:798.660000px;}
.x12_c01099{left:800.280000px;}
.x6_c01099{left:809.460000px;}
.xb_c01099{left:811.620000px;}
@media print{
.v0_c01099{vertical-align:0.000000pt;}
.ls0_c01099{letter-spacing:0.000000pt;}
.ws0_c01099{word-spacing:0.000000pt;}
._0_c01099{width:3548.877957pt;}
.fs1_c01099{font-size:10.666667pt;}
.fs0_c01099{font-size:21.333333pt;}
.fs2_c01099{font-size:26.666667pt;}
.fs5_c01099{font-size:58.666667pt;}
.fs8_c01099{font-size:64.000000pt;}
.fs6_c01099{font-size:69.333333pt;}
.fs4_c01099{font-size:74.632686pt;}
.fsa_c01099{font-size:74.666667pt;}
.fs3_c01099{font-size:79.963592pt;}
.fs9_c01099{font-size:80.000000pt;}
.fse_c01099{font-size:80.003240pt;}
.fs7_c01099{font-size:85.333333pt;}
.fsf_c01099{font-size:85.336789pt;}
.fsb_c01099{font-size:106.666667pt;}
.fsc_c01099{font-size:138.666667pt;}
.fsd_c01099{font-size:144.000000pt;}
.y0_c01099{bottom:0.000000pt;}
.ya9_c01099{bottom:171.111115pt;}
.ya8_c01099{bottom:172.616997pt;}
.ya7_c01099{bottom:173.427417pt;}
.ya6_c01099{bottom:173.446901pt;}
.ya5_c01099{bottom:173.869423pt;}
.ya4_c01099{bottom:180.480563pt;}
.ya3_c01099{bottom:202.090357pt;}
.ya2_c01099{bottom:202.625881pt;}
.ya1_c01099{bottom:203.332273pt;}
.ya0_c01099{bottom:203.777917pt;}
.y9f_c01099{bottom:204.209353pt;}
.y9e_c01099{bottom:207.968845pt;}
.y9d_c01099{bottom:208.081333pt;}
.y9a_c01099{bottom:253.680000pt;}
.y9b_c01099{bottom:255.600000pt;}
.y9c_c01099{bottom:259.920000pt;}
.y99_c01099{bottom:266.561333pt;}
.y98_c01099{bottom:267.226667pt;}
.y97_c01099{bottom:267.344000pt;}
.y96_c01099{bottom:267.749333pt;}
.y95_c01099{bottom:267.829333pt;}
.y93_c01099{bottom:267.984000pt;}
.y94_c01099{bottom:267.997333pt;}
.y92_c01099{bottom:268.700000pt;}
.y91_c01099{bottom:269.297333pt;}
.y90_c01099{bottom:270.228000pt;}
.y8f_c01099{bottom:298.957333pt;}
.y8e_c01099{bottom:329.834667pt;}
.y8d_c01099{bottom:360.774667pt;}
.y8c_c01099{bottom:391.996000pt;}
.y8b_c01099{bottom:422.408000pt;}
.y8a_c01099{bottom:422.653333pt;}
.y89_c01099{bottom:422.768000pt;}
.y88_c01099{bottom:422.890667pt;}
.y87_c01099{bottom:423.284000pt;}
.y86_c01099{bottom:423.416000pt;}
.y85_c01099{bottom:423.553333pt;}
.y84_c01099{bottom:423.656000pt;}
.y83_c01099{bottom:423.876000pt;}
.y82_c01099{bottom:424.064000pt;}
.y81_c01099{bottom:424.288000pt;}
.y80_c01099{bottom:424.385333pt;}
.y7f_c01099{bottom:424.617333pt;}
.y7e_c01099{bottom:424.778667pt;}
.y7c_c01099{bottom:425.045333pt;}
.y7d_c01099{bottom:425.054667pt;}
.y7b_c01099{bottom:451.712000pt;}
.y7a_c01099{bottom:452.212000pt;}
.y79_c01099{bottom:452.473333pt;}
.y78_c01099{bottom:453.217333pt;}
.y77_c01099{bottom:453.865333pt;}
.y76_c01099{bottom:454.373333pt;}
.y75_c01099{bottom:454.534667pt;}
.y74_c01099{bottom:454.929333pt;}
.y73_c01099{bottom:455.130667pt;}
.y72_c01099{bottom:455.842667pt;}
.y71_c01099{bottom:456.242667pt;}
.y70_c01099{bottom:482.872000pt;}
.y6f_c01099{bottom:483.100000pt;}
.y6e_c01099{bottom:483.254667pt;}
.y6d_c01099{bottom:483.581333pt;}
.y6c_c01099{bottom:483.777333pt;}
.y6b_c01099{bottom:484.112000pt;}
.y6a_c01099{bottom:484.241333pt;}
.y69_c01099{bottom:484.742667pt;}
.y68_c01099{bottom:484.898667pt;}
.y67_c01099{bottom:485.281333pt;}
.y66_c01099{bottom:516.685333pt;}
.y65_c01099{bottom:548.026667pt;}
.y64_c01099{bottom:548.546667pt;}
.y63_c01099{bottom:549.274667pt;}
.y62_c01099{bottom:549.710667pt;}
.y61_c01099{bottom:550.217333pt;}
.y60_c01099{bottom:550.858667pt;}
.y5f_c01099{bottom:551.200000pt;}
.y5e_c01099{bottom:551.946667pt;}
.y5d_c01099{bottom:552.506667pt;}
.y5c_c01099{bottom:553.209333pt;}
.y5b_c01099{bottom:581.042667pt;}
.y5a_c01099{bottom:611.164000pt;}
.y59_c01099{bottom:642.996000pt;}
.y58_c01099{bottom:673.622667pt;}
.y57_c01099{bottom:705.538667pt;}
.y56_c01099{bottom:706.125333pt;}
.y55_c01099{bottom:706.294667pt;}
.y54_c01099{bottom:706.477333pt;}
.y53_c01099{bottom:706.645333pt;}
.y52_c01099{bottom:707.058667pt;}
.y51_c01099{bottom:707.240000pt;}
.y50_c01099{bottom:707.565333pt;}
.y4f_c01099{bottom:707.705333pt;}
.y4e_c01099{bottom:708.241333pt;}
.y4d_c01099{bottom:708.481333pt;}
.y4c_c01099{bottom:736.766667pt;}
.y4b_c01099{bottom:767.549333pt;}
.y4a_c01099{bottom:767.664000pt;}
.y49_c01099{bottom:768.000000pt;}
.y48_c01099{bottom:768.485333pt;}
.y47_c01099{bottom:769.506667pt;}
.y46_c01099{bottom:769.594667pt;}
.y45_c01099{bottom:770.057333pt;}
.y44_c01099{bottom:770.241333pt;}
.y43_c01099{bottom:770.478667pt;}
.y42_c01099{bottom:770.664000pt;}
.y41_c01099{bottom:799.669333pt;}
.y40_c01099{bottom:831.350667pt;}
.y3f_c01099{bottom:861.568000pt;}
.y3e_c01099{bottom:861.966667pt;}
.y3d_c01099{bottom:862.325333pt;}
.y3c_c01099{bottom:862.444000pt;}
.y3b_c01099{bottom:862.877333pt;}
.y3a_c01099{bottom:862.989333pt;}
.y39_c01099{bottom:863.332000pt;}
.y38_c01099{bottom:863.481333pt;}
.y37_c01099{bottom:863.838667pt;}
.y36_c01099{bottom:864.073333pt;}
.y35_c01099{bottom:864.289333pt;}
.y33_c01099{bottom:864.398667pt;}
.y34_c01099{bottom:864.412000pt;}
.y32_c01099{bottom:864.501333pt;}
.y31_c01099{bottom:890.096000pt;}
.y30_c01099{bottom:890.196000pt;}
.y2f_c01099{bottom:890.502667pt;}
.y2e_c01099{bottom:890.721333pt;}
.y2d_c01099{bottom:890.952000pt;}
.y2c_c01099{bottom:891.712000pt;}
.y2b_c01099{bottom:891.962667pt;}
.y2a_c01099{bottom:892.522667pt;}
.y29_c01099{bottom:892.742667pt;}
.y28_c01099{bottom:892.976000pt;}
.y27_c01099{bottom:893.241333pt;}
.y26_c01099{bottom:893.680000pt;}
.y25_c01099{bottom:893.924000pt;}
.y24_c01099{bottom:894.316000pt;}
.y23_c01099{bottom:894.708000pt;}
.y22_c01099{bottom:894.982667pt;}
.y21_c01099{bottom:895.332000pt;}
.y20_c01099{bottom:925.058667pt;}
.y12_c01099{bottom:983.997544pt;}
.y13_c01099{bottom:985.440300pt;}
.y14_c01099{bottom:987.335076pt;}
.y15_c01099{bottom:988.687232pt;}
.y16_c01099{bottom:990.669000pt;}
.y17_c01099{bottom:993.149760pt;}
.y18_c01099{bottom:993.853460pt;}
.y19_c01099{bottom:995.597508pt;}
.y1a_c01099{bottom:996.513880pt;}
.y1b_c01099{bottom:1000.001612pt;}
.y1c_c01099{bottom:1001.024040pt;}
.y1d_c01099{bottom:1002.642440pt;}
.y1e_c01099{bottom:1003.702764pt;}
.y1f_c01099{bottom:1004.445648pt;}
.y7_c01099{bottom:1015.672000pt;}
.y8_c01099{bottom:1016.821852pt;}
.y9_c01099{bottom:1018.551404pt;}
.ya_c01099{bottom:1021.146260pt;}
.yb_c01099{bottom:1021.943232pt;}
.yc_c01099{bottom:1026.284492pt;}
.yd_c01099{bottom:1027.307272pt;}
.ye_c01099{bottom:1030.141180pt;}
.yf_c01099{bottom:1031.818196pt;}
.y10_c01099{bottom:1033.683092pt;}
.y11_c01099{bottom:1034.587732pt;}
.y6_c01099{bottom:1070.594667pt;}
.y5_c01099{bottom:1081.777333pt;}
.y4_c01099{bottom:1086.240000pt;}
.y3_c01099{bottom:1088.421333pt;}
.y2_c01099{bottom:1092.822667pt;}
.y1_c01099{bottom:1097.837333pt;}
.h3_c01099{height:10.666667pt;}
.h2_c01099{height:21.333333pt;}
.h4_c01099{height:26.666667pt;}
.h7_c01099{height:58.666667pt;}
.ha_c01099{height:64.000000pt;}
.h8_c01099{height:69.333333pt;}
.h6_c01099{height:74.632686pt;}
.hc_c01099{height:74.666667pt;}
.h5_c01099{height:79.963592pt;}
.hb_c01099{height:80.000000pt;}
.h10_c01099{height:80.003240pt;}
.h9_c01099{height:85.333333pt;}
.h11_c01099{height:85.336789pt;}
.hd_c01099{height:106.666667pt;}
.he_c01099{height:138.666667pt;}
.hf_c01099{height:144.000000pt;}
.h0_c01099{height:1107.840000pt;}
.h1_c01099{height:1108.000000pt;}
.w0_c01099{width:824.400000pt;}
.w1_c01099{width:824.666667pt;}
.x0_c01099{left:0.000000pt;}
.xcf_c01099{left:1.777333pt;}
.x4b_c01099{left:2.976000pt;}
.xa9_c01099{left:7.814667pt;}
.xa8_c01099{left:10.050667pt;}
.x9d_c01099{left:12.629333pt;}
.xd0_c01099{left:14.276000pt;}
.xb2_c01099{left:17.756000pt;}
.xa4_c01099{left:18.802667pt;}
.x42_c01099{left:21.393333pt;}
.x4c_c01099{left:23.432000pt;}
.xbc_c01099{left:26.876000pt;}
.xb3_c01099{left:32.396000pt;}
.x38_c01099{left:33.360000pt;}
.x82_c01099{left:37.440000pt;}
.x73_c01099{left:39.228000pt;}
.x2e_c01099{left:44.365965pt;}
.x4d_c01099{left:45.277333pt;}
.x66_c01099{left:48.172000pt;}
.x60_c01099{left:49.918667pt;}
.x24_c01099{left:61.873333pt;}
.x61_c01099{left:63.358667pt;}
.x43_c01099{left:65.136000pt;}
.x8e_c01099{left:66.725333pt;}
.xb4_c01099{left:75.356000pt;}
.x78_c01099{left:76.320000pt;}
.x67_c01099{left:79.125333pt;}
.x2f_c01099{left:85.539353pt;}
.x6c_c01099{left:86.880000pt;}
.x4e_c01099{left:88.474667pt;}
.x95_c01099{left:93.600000pt;}
.x25_c01099{left:96.682489pt;}
.x39_c01099{left:98.880000pt;}
.x83_c01099{left:103.680000pt;}
.x9e_c01099{left:108.378667pt;}
.xbd_c01099{left:115.676000pt;}
.x8f_c01099{left:117.668000pt;}
.x68_c01099{left:118.729333pt;}
.xcc_c01099{left:123.360000pt;}
.xcd_c01099{left:125.040000pt;}
.xce_c01099{left:132.000000pt;}
.xb5_c01099{left:132.956000pt;}
.x4f_c01099{left:135.505333pt;}
.x3a_c01099{left:138.480000pt;}
.x30_c01099{left:139.629641pt;}
.x88_c01099{left:144.240000pt;}
.x9f_c01099{left:147.505333pt;}
.x26_c01099{left:149.040745pt;}
.x56_c01099{left:151.198667pt;}
.x84_c01099{left:157.440000pt;}
.xb6_c01099{left:160.796000pt;}
.x74_c01099{left:168.666667pt;}
.x6d_c01099{left:171.840000pt;}
.xaa_c01099{left:174.918667pt;}
.xbe_c01099{left:176.156000pt;}
.x31_c01099{left:178.221789pt;}
.x7d_c01099{left:181.440000pt;}
.x90_c01099{left:185.558667pt;}
.x75_c01099{left:192.074667pt;}
.x96_c01099{left:193.440000pt;}
.xb7_c01099{left:195.596000pt;}
.x44_c01099{left:197.413333pt;}
.xab_c01099{left:199.378667pt;}
.x79_c01099{left:204.240000pt;}
.x50_c01099{left:207.054667pt;}
.xc2_c01099{left:211.676000pt;}
.x89_c01099{left:216.000000pt;}
.x97_c01099{left:222.480000pt;}
.x69_c01099{left:226.496000pt;}
.x27_c01099{left:227.594113pt;}
.x7e_c01099{left:233.280000pt;}
.x32_c01099{left:234.784093pt;}
.x51_c01099{left:237.046667pt;}
.x6a_c01099{left:241.073333pt;}
.xbf_c01099{left:243.836000pt;}
.x57_c01099{left:246.718667pt;}
.x28_c01099{left:251.720629pt;}
.xac_c01099{left:255.297333pt;}
.x3b_c01099{left:256.800000pt;}
.x7f_c01099{left:262.080000pt;}
.xa0_c01099{left:272.786667pt;}
.x91_c01099{left:274.852000pt;}
.x58_c01099{left:276.958667pt;}
.xc8_c01099{left:280.757333pt;}
.x45_c01099{left:282.808000pt;}
.x7a_c01099{left:285.120000pt;}
.x62_c01099{left:286.318667pt;}
.xc3_c01099{left:288.716000pt;}
.x3c_c01099{left:292.560000pt;}
.x85_c01099{left:301.440000pt;}
.x33_c01099{left:305.604533pt;}
.x59_c01099{left:306.718667pt;}
.x80_c01099{left:312.240000pt;}
.x13_c01099{left:314.880000pt;}
.x3d_c01099{left:315.840000pt;}
.xc_c01099{left:318.000000pt;}
.x92_c01099{left:320.932000pt;}
.x34_c01099{left:325.696433pt;}
.x52_c01099{left:327.770667pt;}
.xc4_c01099{left:329.276000pt;}
.x8a_c01099{left:338.640000pt;}
.x46_c01099{left:345.025333pt;}
.x98_c01099{left:350.400000pt;}
.x14_c01099{left:353.040000pt;}
.xd_c01099{left:354.480000pt;}
.x63_c01099{left:355.438667pt;}
.xad_c01099{left:357.288000pt;}
.xa5_c01099{left:358.610667pt;}
.x93_c01099{left:360.509333pt;}
.x8b_c01099{left:362.400000pt;}
.x5a_c01099{left:364.318667pt;}
.x47_c01099{left:372.517333pt;}
.x76_c01099{left:373.597333pt;}
.xe_c01099{left:375.600000pt;}
.x86_c01099{left:380.160000pt;}
.x1b_c01099{left:383.760000pt;}
.xa1_c01099{left:388.962667pt;}
.x5b_c01099{left:395.038667pt;}
.xc5_c01099{left:397.196000pt;}
.xb8_c01099{left:399.356000pt;}
.xf_c01099{left:400.800000pt;}
.x3e_c01099{left:403.200000pt;}
.x7b_c01099{left:404.160000pt;}
.x15_c01099{left:412.080000pt;}
.x29_c01099{left:414.104749pt;}
.x5c_c01099{left:415.678667pt;}
.xae_c01099{left:417.261333pt;}
.xc0_c01099{left:419.996000pt;}
.x1c_c01099{left:421.440000pt;}
.x94_c01099{left:426.704000pt;}
.x6e_c01099{left:429.600000pt;}
.x77_c01099{left:432.386667pt;}
.x53_c01099{left:438.168000pt;}
.xc9_c01099{left:439.329333pt;}
.x48_c01099{left:442.468000pt;}
.x7_c01099{left:448.080000pt;}
.x16_c01099{left:449.040000pt;}
.x99_c01099{left:450.960000pt;}
.x3f_c01099{left:453.120000pt;}
.x6f_c01099{left:454.800000pt;}
.x64_c01099{left:462.238667pt;}
.xd4_c01099{left:470.218256pt;}
.x8c_c01099{left:471.120000pt;}
.x49_c01099{left:473.830667pt;}
.xd1_c01099{left:479.934667pt;}
.x70_c01099{left:484.080000pt;}
.x5d_c01099{left:491.518667pt;}
.x2a_c01099{left:499.894873pt;}
.x35_c01099{left:501.201169pt;}
.xb9_c01099{left:507.116000pt;}
.x54_c01099{left:509.889333pt;}
.x81_c01099{left:513.120000pt;}
.x9a_c01099{left:514.320000pt;}
.x1_c01099{left:518.880000pt;}
.x20_c01099{left:520.800000pt;}
.xd5_c01099{left:525.537935pt;}
.xca_c01099{left:526.457333pt;}
.xd2_c01099{left:529.450667pt;}
.x36_c01099{left:530.376693pt;}
.x8d_c01099{left:532.080000pt;}
.x5e_c01099{left:533.278667pt;}
.x87_c01099{left:537.360000pt;}
.xc6_c01099{left:539.996000pt;}
.x71_c01099{left:541.200000pt;}
.x6b_c01099{left:548.097333pt;}
.x2b_c01099{left:550.662721pt;}
.xba_c01099{left:555.116000pt;}
.xa2_c01099{left:558.344000pt;}
.xc7_c01099{left:565.916000pt;}
.x2_c01099{left:568.080000pt;}
.x72_c01099{left:570.480000pt;}
.x40_c01099{left:572.640000pt;}
.x37_c01099{left:576.584733pt;}
.x1d_c01099{left:578.640000pt;}
.xaf_c01099{left:579.540000pt;}
.x17_c01099{left:582.960000pt;}
.x65_c01099{left:584.158667pt;}
.x9b_c01099{left:585.360000pt;}
.xc1_c01099{left:587.996000pt;}
.x55_c01099{left:589.545333pt;}
.xbb_c01099{left:590.876000pt;}
.xa6_c01099{left:595.029333pt;}
.x3_c01099{left:597.600000pt;}
.x10_c01099{left:600.720000pt;}
.x2c_c01099{left:607.118209pt;}
.xb0_c01099{left:608.066667pt;}
.x8_c01099{left:610.800000pt;}
.xa3_c01099{left:615.225333pt;}
.x9_c01099{left:618.240000pt;}
.x1e_c01099{left:624.480000pt;}
.xd6_c01099{left:625.889844pt;}
.x18_c01099{left:627.600000pt;}
.x5f_c01099{left:628.798667pt;}
.x4_c01099{left:630.240000pt;}
.x41_c01099{left:632.880000pt;}
.x2d_c01099{left:634.504129pt;}
.x7c_c01099{left:636.000000pt;}
.xcb_c01099{left:637.382667pt;}
.x9c_c01099{left:649.440000pt;}
.x21_c01099{left:659.280000pt;}
.x4a_c01099{left:663.421333pt;}
.x1f_c01099{left:664.800000pt;}
.xa7_c01099{left:666.532000pt;}
.xd3_c01099{left:667.441333pt;}
.xb1_c01099{left:669.306667pt;}
.x11_c01099{left:675.360000pt;}
.x22_c01099{left:677.280000pt;}
.x19_c01099{left:678.480000pt;}
.x5_c01099{left:682.320000pt;}
.xa_c01099{left:683.280000pt;}
.x23_c01099{left:702.960000pt;}
.x1a_c01099{left:709.920000pt;}
.x12_c01099{left:711.360000pt;}
.x6_c01099{left:719.520000pt;}
.xb_c01099{left:721.440000pt;}
}





/* 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_c01100 {
    display:none;
  }
  .loading-indicator_c01100.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01100 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_c01100 { 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_c01100" -> "#page-container .classname_c01100")
 */
.pf_c01100 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01100 { /* 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_c01100.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01100 { /* 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_c01100 { /* 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_c01100 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01100 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01100 {overflow:visible;}
  }
}
.c_c01100 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01100 { /* 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_c01100:after { /* webkit #35443 */
  content: '';
}
.t_c01100:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01100 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 */
}
.__c01100 { /* 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_c01100 { /* info for Javascript */
  display:none;
}
.l_c01100 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01100 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01100 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01100: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_c01100 {
    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_c01100.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01100.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_c01100 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01100{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01100;src:url('chunks/assets/font_fabf4b590f7fb32aea93ffb2.woff2')format("woff");}.ff1_c01100{font-family:ff1_c01100;line-height:1.000000;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;}
.m13c_c01100{transform:matrix(0.024988,0.000775,-0.007746,0.249880,0,0);-ms-transform:matrix(0.024988,0.000775,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.024988,0.000775,-0.007746,0.249880,0,0);}
.m0_c01100{transform:matrix(0.103230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103230,0.000000,0.000000,0.250000,0,0);}
.m135_c01100{transform:matrix(0.110337,0.003420,-0.007746,0.249880,0,0);-ms-transform:matrix(0.110337,0.003420,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.110337,0.003420,-0.007746,0.249880,0,0);}
.m140_c01100{transform:matrix(0.163172,0.005058,-0.007746,0.249880,0,0);-ms-transform:matrix(0.163172,0.005058,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.163172,0.005058,-0.007746,0.249880,0,0);}
.m30_c01100{transform:matrix(0.167520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167520,0.000000,0.000000,0.250000,0,0);}
.m63_c01100{transform:matrix(0.169979,0.003740,-0.005499,0.249940,0,0);-ms-transform:matrix(0.169979,0.003740,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.169979,0.003740,-0.005499,0.249940,0,0);}
.meb_c01100{transform:matrix(0.170118,0.004593,-0.006748,0.249909,0,0);-ms-transform:matrix(0.170118,0.004593,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.170118,0.004593,-0.006748,0.249909,0,0);}
.mbf_c01100{transform:matrix(0.174961,0.004724,-0.006748,0.249909,0,0);-ms-transform:matrix(0.174961,0.004724,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.174961,0.004724,-0.006748,0.249909,0,0);}
.m1_c01100{transform:matrix(0.176785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176785,0.000000,0.000000,0.250000,0,0);}
.mbb_c01100{transform:matrix(0.179505,0.004847,-0.006748,0.249909,0,0);-ms-transform:matrix(0.179505,0.004847,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.179505,0.004847,-0.006748,0.249909,0,0);}
.m156_c01100{transform:matrix(0.179674,0.008813,-0.012248,0.249700,0,0);-ms-transform:matrix(0.179674,0.008813,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.179674,0.008813,-0.012248,0.249700,0,0);}
.mf0_c01100{transform:matrix(0.181504,0.004901,-0.006748,0.249909,0,0);-ms-transform:matrix(0.181504,0.004901,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.181504,0.004901,-0.006748,0.249909,0,0);}
.m14d_c01100{transform:matrix(0.182016,0.008928,-0.012248,0.249700,0,0);-ms-transform:matrix(0.182016,0.008928,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.182016,0.008928,-0.012248,0.249700,0,0);}
.m14b_c01100{transform:matrix(0.182161,0.008935,-0.012248,0.249700,0,0);-ms-transform:matrix(0.182161,0.008935,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.182161,0.008935,-0.012248,0.249700,0,0);}
.m118_c01100{transform:matrix(0.183553,0.004956,-0.006748,0.249909,0,0);-ms-transform:matrix(0.183553,0.004956,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.183553,0.004956,-0.006748,0.249909,0,0);}
.m76_c01100{transform:matrix(0.184108,0.004971,-0.006748,0.249909,0,0);-ms-transform:matrix(0.184108,0.004971,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.184108,0.004971,-0.006748,0.249909,0,0);}
.me9_c01100{transform:matrix(0.184648,0.004985,-0.006748,0.249909,0,0);-ms-transform:matrix(0.184648,0.004985,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.184648,0.004985,-0.006748,0.249909,0,0);}
.m14c_c01100{transform:matrix(0.185302,0.009089,-0.012248,0.249700,0,0);-ms-transform:matrix(0.185302,0.009089,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.185302,0.009089,-0.012248,0.249700,0,0);}
.m73_c01100{transform:matrix(0.185920,0.004090,-0.005499,0.249940,0,0);-ms-transform:matrix(0.185920,0.004090,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.185920,0.004090,-0.005499,0.249940,0,0);}
.m78_c01100{transform:matrix(0.186317,0.005031,-0.006748,0.249909,0,0);-ms-transform:matrix(0.186317,0.005031,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.186317,0.005031,-0.006748,0.249909,0,0);}
.m72_c01100{transform:matrix(0.187880,0.004133,-0.005499,0.249940,0,0);-ms-transform:matrix(0.187880,0.004133,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.187880,0.004133,-0.005499,0.249940,0,0);}
.m7b_c01100{transform:matrix(0.187996,0.005076,-0.006748,0.249909,0,0);-ms-transform:matrix(0.187996,0.005076,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.187996,0.005076,-0.006748,0.249909,0,0);}
.m153_c01100{transform:matrix(0.188379,0.009240,-0.012248,0.249700,0,0);-ms-transform:matrix(0.188379,0.009240,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.188379,0.009240,-0.012248,0.249700,0,0);}
.m158_c01100{transform:matrix(0.188508,0.009246,-0.012248,0.249700,0,0);-ms-transform:matrix(0.188508,0.009246,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.188508,0.009246,-0.012248,0.249700,0,0);}
.me2_c01100{transform:matrix(0.188896,0.005100,-0.006748,0.249909,0,0);-ms-transform:matrix(0.188896,0.005100,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.188896,0.005100,-0.006748,0.249909,0,0);}
.m112_c01100{transform:matrix(0.189086,0.005105,-0.006748,0.249909,0,0);-ms-transform:matrix(0.189086,0.005105,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.189086,0.005105,-0.006748,0.249909,0,0);}
.m14a_c01100{transform:matrix(0.189507,0.009295,-0.012248,0.249700,0,0);-ms-transform:matrix(0.189507,0.009295,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.189507,0.009295,-0.012248,0.249700,0,0);}
.med_c01100{transform:matrix(0.190196,0.005135,-0.006748,0.249909,0,0);-ms-transform:matrix(0.190196,0.005135,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.190196,0.005135,-0.006748,0.249909,0,0);}
.mcb_c01100{transform:matrix(0.193310,0.005219,-0.006748,0.249909,0,0);-ms-transform:matrix(0.193310,0.005219,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.193310,0.005219,-0.006748,0.249909,0,0);}
.m75_c01100{transform:matrix(0.193909,0.005236,-0.006748,0.249909,0,0);-ms-transform:matrix(0.193909,0.005236,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.193909,0.005236,-0.006748,0.249909,0,0);}
.m114_c01100{transform:matrix(0.194914,0.005263,-0.006748,0.249909,0,0);-ms-transform:matrix(0.194914,0.005263,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.194914,0.005263,-0.006748,0.249909,0,0);}
.mb8_c01100{transform:matrix(0.196084,0.005294,-0.006748,0.249909,0,0);-ms-transform:matrix(0.196084,0.005294,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.196084,0.005294,-0.006748,0.249909,0,0);}
.m11c_c01100{transform:matrix(0.196468,0.005305,-0.006748,0.249909,0,0);-ms-transform:matrix(0.196468,0.005305,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.196468,0.005305,-0.006748,0.249909,0,0);}
.mee_c01100{transform:matrix(0.196573,0.005307,-0.006748,0.249909,0,0);-ms-transform:matrix(0.196573,0.005307,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.196573,0.005307,-0.006748,0.249909,0,0);}
.mde_c01100{transform:matrix(0.197178,0.005324,-0.006748,0.249909,0,0);-ms-transform:matrix(0.197178,0.005324,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.197178,0.005324,-0.006748,0.249909,0,0);}
.m74_c01100{transform:matrix(0.199897,0.005397,-0.006748,0.249909,0,0);-ms-transform:matrix(0.199897,0.005397,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.199897,0.005397,-0.006748,0.249909,0,0);}
.m7a_c01100{transform:matrix(0.199937,0.005398,-0.006748,0.249909,0,0);-ms-transform:matrix(0.199937,0.005398,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.199937,0.005398,-0.006748,0.249909,0,0);}
.m110_c01100{transform:matrix(0.200302,0.005408,-0.006748,0.249909,0,0);-ms-transform:matrix(0.200302,0.005408,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.200302,0.005408,-0.006748,0.249909,0,0);}
.mc1_c01100{transform:matrix(0.200807,0.005422,-0.006748,0.249909,0,0);-ms-transform:matrix(0.200807,0.005422,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.200807,0.005422,-0.006748,0.249909,0,0);}
.m157_c01100{transform:matrix(0.201118,0.009865,-0.012248,0.249700,0,0);-ms-transform:matrix(0.201118,0.009865,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.201118,0.009865,-0.012248,0.249700,0,0);}
.m155_c01100{transform:matrix(0.201278,0.009872,-0.012248,0.249700,0,0);-ms-transform:matrix(0.201278,0.009872,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.201278,0.009872,-0.012248,0.249700,0,0);}
.mf2_c01100{transform:matrix(0.201332,0.005436,-0.006748,0.249909,0,0);-ms-transform:matrix(0.201332,0.005436,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.201332,0.005436,-0.006748,0.249909,0,0);}
.m14f_c01100{transform:matrix(0.202566,0.009936,-0.012248,0.249700,0,0);-ms-transform:matrix(0.202566,0.009936,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.202566,0.009936,-0.012248,0.249700,0,0);}
.m152_c01100{transform:matrix(0.203755,0.009994,-0.012248,0.249700,0,0);-ms-transform:matrix(0.203755,0.009994,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.203755,0.009994,-0.012248,0.249700,0,0);}
.m43_c01100{transform:matrix(0.206789,0.004136,-0.004999,0.249950,0,0);-ms-transform:matrix(0.206789,0.004136,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.206789,0.004136,-0.004999,0.249950,0,0);}
.maf_c01100{transform:matrix(0.207939,0.005614,-0.006748,0.249909,0,0);-ms-transform:matrix(0.207939,0.005614,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.207939,0.005614,-0.006748,0.249909,0,0);}
.m14_c01100{transform:matrix(0.208015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208015,0.000000,0.000000,0.250000,0,0);}
.me8_c01100{transform:matrix(0.208019,0.005617,-0.006748,0.249909,0,0);-ms-transform:matrix(0.208019,0.005617,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.208019,0.005617,-0.006748,0.249909,0,0);}
.m77_c01100{transform:matrix(0.208049,0.005617,-0.006748,0.249909,0,0);-ms-transform:matrix(0.208049,0.005617,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.208049,0.005617,-0.006748,0.249909,0,0);}
.m150_c01100{transform:matrix(0.208100,0.010207,-0.012248,0.249700,0,0);-ms-transform:matrix(0.208100,0.010207,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.208100,0.010207,-0.012248,0.249700,0,0);}
.m14e_c01100{transform:matrix(0.208180,0.010211,-0.012248,0.249700,0,0);-ms-transform:matrix(0.208180,0.010211,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.208180,0.010211,-0.012248,0.249700,0,0);}
.mca_c01100{transform:matrix(0.208599,0.005632,-0.006748,0.249909,0,0);-ms-transform:matrix(0.208599,0.005632,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.208599,0.005632,-0.006748,0.249909,0,0);}
.m11b_c01100{transform:matrix(0.208674,0.005634,-0.006748,0.249909,0,0);-ms-transform:matrix(0.208674,0.005634,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.208674,0.005634,-0.006748,0.249909,0,0);}
.ma2_c01100{transform:matrix(0.209044,0.005644,-0.006748,0.249909,0,0);-ms-transform:matrix(0.209044,0.005644,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.209044,0.005644,-0.006748,0.249909,0,0);}
.mf_c01100{transform:matrix(0.209300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209300,0.000000,0.000000,0.250000,0,0);}
.m10a_c01100{transform:matrix(0.209469,0.005656,-0.006748,0.249909,0,0);-ms-transform:matrix(0.209469,0.005656,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.209469,0.005656,-0.006748,0.249909,0,0);}
.m119_c01100{transform:matrix(0.209799,0.005665,-0.006748,0.249909,0,0);-ms-transform:matrix(0.209799,0.005665,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.209799,0.005665,-0.006748,0.249909,0,0);}
.m12_c01100{transform:matrix(0.210545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210545,0.000000,0.000000,0.250000,0,0);}
.m105_c01100{transform:matrix(0.211138,0.005701,-0.006748,0.249909,0,0);-ms-transform:matrix(0.211138,0.005701,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.211138,0.005701,-0.006748,0.249909,0,0);}
.m7e_c01100{transform:matrix(0.211178,0.005702,-0.006748,0.249909,0,0);-ms-transform:matrix(0.211178,0.005702,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.211178,0.005702,-0.006748,0.249909,0,0);}
.m13b_c01100{transform:matrix(0.211818,0.006566,-0.007746,0.249880,0,0);-ms-transform:matrix(0.211818,0.006566,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.211818,0.006566,-0.007746,0.249880,0,0);}
.m134_c01100{transform:matrix(0.211828,0.006567,-0.007746,0.249880,0,0);-ms-transform:matrix(0.211828,0.006567,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.211828,0.006567,-0.007746,0.249880,0,0);}
.mef_c01100{transform:matrix(0.211868,0.005720,-0.006748,0.249909,0,0);-ms-transform:matrix(0.211868,0.005720,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.211868,0.005720,-0.006748,0.249909,0,0);}
.mfe_c01100{transform:matrix(0.212123,0.005727,-0.006748,0.249909,0,0);-ms-transform:matrix(0.212123,0.005727,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.212123,0.005727,-0.006748,0.249909,0,0);}
.mc6_c01100{transform:matrix(0.212163,0.005728,-0.006748,0.249909,0,0);-ms-transform:matrix(0.212163,0.005728,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.212163,0.005728,-0.006748,0.249909,0,0);}
.m11a_c01100{transform:matrix(0.212173,0.005729,-0.006748,0.249909,0,0);-ms-transform:matrix(0.212173,0.005729,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.212173,0.005729,-0.006748,0.249909,0,0);}
.m117_c01100{transform:matrix(0.212967,0.005750,-0.006748,0.249909,0,0);-ms-transform:matrix(0.212967,0.005750,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.212967,0.005750,-0.006748,0.249909,0,0);}
.m17_c01100{transform:matrix(0.213865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213865,0.000000,0.000000,0.250000,0,0);}
.m137_c01100{transform:matrix(0.214007,0.006634,-0.007746,0.249880,0,0);-ms-transform:matrix(0.214007,0.006634,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.214007,0.006634,-0.007746,0.249880,0,0);}
.m138_c01100{transform:matrix(0.214312,0.006644,-0.007746,0.249880,0,0);-ms-transform:matrix(0.214312,0.006644,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.214312,0.006644,-0.007746,0.249880,0,0);}
.mc4_c01100{transform:matrix(0.214342,0.005787,-0.006748,0.249909,0,0);-ms-transform:matrix(0.214342,0.005787,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.214342,0.005787,-0.006748,0.249909,0,0);}
.m5a_c01100{transform:matrix(0.214878,0.004727,-0.005499,0.249940,0,0);-ms-transform:matrix(0.214878,0.004727,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.214878,0.004727,-0.005499,0.249940,0,0);}
.m115_c01100{transform:matrix(0.215167,0.005809,-0.006748,0.249909,0,0);-ms-transform:matrix(0.215167,0.005809,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.215167,0.005809,-0.006748,0.249909,0,0);}
.mb7_c01100{transform:matrix(0.216786,0.005853,-0.006748,0.249909,0,0);-ms-transform:matrix(0.216786,0.005853,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.216786,0.005853,-0.006748,0.249909,0,0);}
.mbd_c01100{transform:matrix(0.217286,0.005867,-0.006748,0.249909,0,0);-ms-transform:matrix(0.217286,0.005867,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.217286,0.005867,-0.006748,0.249909,0,0);}
.m9e_c01100{transform:matrix(0.217691,0.005878,-0.006748,0.249909,0,0);-ms-transform:matrix(0.217691,0.005878,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.217691,0.005878,-0.006748,0.249909,0,0);}
.m116_c01100{transform:matrix(0.217931,0.005884,-0.006748,0.249909,0,0);-ms-transform:matrix(0.217931,0.005884,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.217931,0.005884,-0.006748,0.249909,0,0);}
.mbc_c01100{transform:matrix(0.218126,0.005889,-0.006748,0.249909,0,0);-ms-transform:matrix(0.218126,0.005889,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.218126,0.005889,-0.006748,0.249909,0,0);}
.m9b_c01100{transform:matrix(0.218175,0.005891,-0.006748,0.249909,0,0);-ms-transform:matrix(0.218175,0.005891,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.218175,0.005891,-0.006748,0.249909,0,0);}
.m111_c01100{transform:matrix(0.218785,0.005907,-0.006748,0.249909,0,0);-ms-transform:matrix(0.218785,0.005907,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.218785,0.005907,-0.006748,0.249909,0,0);}
.mb0_c01100{transform:matrix(0.218845,0.005909,-0.006748,0.249909,0,0);-ms-transform:matrix(0.218845,0.005909,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.218845,0.005909,-0.006748,0.249909,0,0);}
.m136_c01100{transform:matrix(0.218965,0.006788,-0.007746,0.249880,0,0);-ms-transform:matrix(0.218965,0.006788,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.218965,0.006788,-0.007746,0.249880,0,0);}
.m96_c01100{transform:matrix(0.219455,0.005925,-0.006748,0.249909,0,0);-ms-transform:matrix(0.219455,0.005925,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.219455,0.005925,-0.006748,0.249909,0,0);}
.mad_c01100{transform:matrix(0.219940,0.005938,-0.006748,0.249909,0,0);-ms-transform:matrix(0.219940,0.005938,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.219940,0.005938,-0.006748,0.249909,0,0);}
.m7d_c01100{transform:matrix(0.220055,0.005941,-0.006748,0.249909,0,0);-ms-transform:matrix(0.220055,0.005941,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.220055,0.005941,-0.006748,0.249909,0,0);}
.m98_c01100{transform:matrix(0.220110,0.005943,-0.006748,0.249909,0,0);-ms-transform:matrix(0.220110,0.005943,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.220110,0.005943,-0.006748,0.249909,0,0);}
.md_c01100{transform:matrix(0.220190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220190,0.000000,0.000000,0.250000,0,0);}
.m7c_c01100{transform:matrix(0.220485,0.005953,-0.006748,0.249909,0,0);-ms-transform:matrix(0.220485,0.005953,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.220485,0.005953,-0.006748,0.249909,0,0);}
.me1_c01100{transform:matrix(0.220650,0.005958,-0.006748,0.249909,0,0);-ms-transform:matrix(0.220650,0.005958,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.220650,0.005958,-0.006748,0.249909,0,0);}
.mb5_c01100{transform:matrix(0.220810,0.005962,-0.006748,0.249909,0,0);-ms-transform:matrix(0.220810,0.005962,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.220810,0.005962,-0.006748,0.249909,0,0);}
.m79_c01100{transform:matrix(0.221044,0.005968,-0.006748,0.249909,0,0);-ms-transform:matrix(0.221044,0.005968,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.221044,0.005968,-0.006748,0.249909,0,0);}
.mc2_c01100{transform:matrix(0.221504,0.005981,-0.006748,0.249909,0,0);-ms-transform:matrix(0.221504,0.005981,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.221504,0.005981,-0.006748,0.249909,0,0);}
.m1b_c01100{transform:matrix(0.221880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221880,0.000000,0.000000,0.250000,0,0);}
.m154_c01100{transform:matrix(0.221908,0.010884,-0.012248,0.249700,0,0);-ms-transform:matrix(0.221908,0.010884,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.221908,0.010884,-0.012248,0.249700,0,0);}
.m113_c01100{transform:matrix(0.222584,0.006010,-0.006748,0.249909,0,0);-ms-transform:matrix(0.222584,0.006010,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.222584,0.006010,-0.006748,0.249909,0,0);}
.mcc_c01100{transform:matrix(0.222859,0.006017,-0.006748,0.249909,0,0);-ms-transform:matrix(0.222859,0.006017,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.222859,0.006017,-0.006748,0.249909,0,0);}
.m3e_c01100{transform:matrix(0.223225,0.004465,-0.004999,0.249950,0,0);-ms-transform:matrix(0.223225,0.004465,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.223225,0.004465,-0.004999,0.249950,0,0);}
.m12f_c01100{transform:matrix(0.223594,0.006037,-0.006748,0.249909,0,0);-ms-transform:matrix(0.223594,0.006037,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.223594,0.006037,-0.006748,0.249909,0,0);}
.mea_c01100{transform:matrix(0.223648,0.006039,-0.006748,0.249909,0,0);-ms-transform:matrix(0.223648,0.006039,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.223648,0.006039,-0.006748,0.249909,0,0);}
.m159_c01100{transform:matrix(0.224840,0.011028,-0.012248,0.249700,0,0);-ms-transform:matrix(0.224840,0.011028,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.224840,0.011028,-0.012248,0.249700,0,0);}
.m89_c01100{transform:matrix(0.225263,0.006082,-0.006748,0.249909,0,0);-ms-transform:matrix(0.225263,0.006082,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.225263,0.006082,-0.006748,0.249909,0,0);}
.mf1_c01100{transform:matrix(0.225358,0.006085,-0.006748,0.249909,0,0);-ms-transform:matrix(0.225358,0.006085,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.225358,0.006085,-0.006748,0.249909,0,0);}
.mba_c01100{transform:matrix(0.225798,0.006097,-0.006748,0.249909,0,0);-ms-transform:matrix(0.225798,0.006097,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.225798,0.006097,-0.006748,0.249909,0,0);}
.m1d_c01100{transform:matrix(0.225845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225845,0.000000,0.000000,0.250000,0,0);}
.mf5_c01100{transform:matrix(0.226028,0.006103,-0.006748,0.249909,0,0);-ms-transform:matrix(0.226028,0.006103,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.226028,0.006103,-0.006748,0.249909,0,0);}
.m11_c01100{transform:matrix(0.226515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226515,0.000000,0.000000,0.250000,0,0);}
.m29_c01100{transform:matrix(0.227430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227430,0.000000,0.000000,0.250000,0,0);}
.me3_c01100{transform:matrix(0.227667,0.006147,-0.006748,0.249909,0,0);-ms-transform:matrix(0.227667,0.006147,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.227667,0.006147,-0.006748,0.249909,0,0);}
.mec_c01100{transform:matrix(0.228052,0.006157,-0.006748,0.249909,0,0);-ms-transform:matrix(0.228052,0.006157,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.228052,0.006157,-0.006748,0.249909,0,0);}
.m2e_c01100{transform:matrix(0.228090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228090,0.000000,0.000000,0.250000,0,0);}
.m3b_c01100{transform:matrix(0.228124,0.004562,-0.004999,0.249950,0,0);-ms-transform:matrix(0.228124,0.004562,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.228124,0.004562,-0.004999,0.249950,0,0);}
.m4d_c01100{transform:matrix(0.228485,0.005027,-0.005499,0.249940,0,0);-ms-transform:matrix(0.228485,0.005027,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.228485,0.005027,-0.005499,0.249940,0,0);}
.m109_c01100{transform:matrix(0.228557,0.006171,-0.006748,0.249909,0,0);-ms-transform:matrix(0.228557,0.006171,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.228557,0.006171,-0.006748,0.249909,0,0);}
.mbe_c01100{transform:matrix(0.228592,0.006172,-0.006748,0.249909,0,0);-ms-transform:matrix(0.228592,0.006172,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.228592,0.006172,-0.006748,0.249909,0,0);}
.m65_c01100{transform:matrix(0.228760,0.005033,-0.005499,0.249940,0,0);-ms-transform:matrix(0.228760,0.005033,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.228760,0.005033,-0.005499,0.249940,0,0);}
.mb3_c01100{transform:matrix(0.228777,0.006177,-0.006748,0.249909,0,0);-ms-transform:matrix(0.228777,0.006177,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.228777,0.006177,-0.006748,0.249909,0,0);}
.mcf_c01100{transform:matrix(0.229067,0.006185,-0.006748,0.249909,0,0);-ms-transform:matrix(0.229067,0.006185,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.229067,0.006185,-0.006748,0.249909,0,0);}
.m23_c01100{transform:matrix(0.229525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229525,0.000000,0.000000,0.250000,0,0);}
.m9c_c01100{transform:matrix(0.229961,0.006209,-0.006748,0.249909,0,0);-ms-transform:matrix(0.229961,0.006209,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.229961,0.006209,-0.006748,0.249909,0,0);}
.m10d_c01100{transform:matrix(0.230666,0.006228,-0.006748,0.249909,0,0);-ms-transform:matrix(0.230666,0.006228,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.230666,0.006228,-0.006748,0.249909,0,0);}
.m100_c01100{transform:matrix(0.230811,0.006232,-0.006748,0.249909,0,0);-ms-transform:matrix(0.230811,0.006232,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.230811,0.006232,-0.006748,0.249909,0,0);}
.me6_c01100{transform:matrix(0.230831,0.006232,-0.006748,0.249909,0,0);-ms-transform:matrix(0.230831,0.006232,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.230831,0.006232,-0.006748,0.249909,0,0);}
.m68_c01100{transform:matrix(0.231184,0.005086,-0.005499,0.249940,0,0);-ms-transform:matrix(0.231184,0.005086,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.231184,0.005086,-0.005499,0.249940,0,0);}
.m32_c01100{transform:matrix(0.231240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231240,0.000000,0.000000,0.250000,0,0);}
.m3c_c01100{transform:matrix(0.231389,0.004628,-0.004999,0.249950,0,0);-ms-transform:matrix(0.231389,0.004628,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.231389,0.004628,-0.004999,0.249950,0,0);}
.md5_c01100{transform:matrix(0.231841,0.006260,-0.006748,0.249909,0,0);-ms-transform:matrix(0.231841,0.006260,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.231841,0.006260,-0.006748,0.249909,0,0);}
.md9_c01100{transform:matrix(0.232200,0.006269,-0.006748,0.249909,0,0);-ms-transform:matrix(0.232200,0.006269,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.232200,0.006269,-0.006748,0.249909,0,0);}
.m13a_c01100{transform:matrix(0.232223,0.007199,-0.007746,0.249880,0,0);-ms-transform:matrix(0.232223,0.007199,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.232223,0.007199,-0.007746,0.249880,0,0);}
.m6e_c01100{transform:matrix(0.232229,0.005109,-0.005499,0.249940,0,0);-ms-transform:matrix(0.232229,0.005109,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.232229,0.005109,-0.005499,0.249940,0,0);}
.m25_c01100{transform:matrix(0.232285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232285,0.000000,0.000000,0.250000,0,0);}
.ma1_c01100{transform:matrix(0.232370,0.006274,-0.006748,0.249909,0,0);-ms-transform:matrix(0.232370,0.006274,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.232370,0.006274,-0.006748,0.249909,0,0);}
.m84_c01100{transform:matrix(0.232900,0.006288,-0.006748,0.249909,0,0);-ms-transform:matrix(0.232900,0.006288,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.232900,0.006288,-0.006748,0.249909,0,0);}
.mb1_c01100{transform:matrix(0.232925,0.006289,-0.006748,0.249909,0,0);-ms-transform:matrix(0.232925,0.006289,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.232925,0.006289,-0.006748,0.249909,0,0);}
.mc8_c01100{transform:matrix(0.233440,0.006303,-0.006748,0.249909,0,0);-ms-transform:matrix(0.233440,0.006303,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.233440,0.006303,-0.006748,0.249909,0,0);}
.m8b_c01100{transform:matrix(0.233595,0.006307,-0.006748,0.249909,0,0);-ms-transform:matrix(0.233595,0.006307,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.233595,0.006307,-0.006748,0.249909,0,0);}
.m8e_c01100{transform:matrix(0.233610,0.006307,-0.006748,0.249909,0,0);-ms-transform:matrix(0.233610,0.006307,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.233610,0.006307,-0.006748,0.249909,0,0);}
.m19_c01100{transform:matrix(0.233985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233985,0.000000,0.000000,0.250000,0,0);}
.m4b_c01100{transform:matrix(0.234123,0.005151,-0.005499,0.249940,0,0);-ms-transform:matrix(0.234123,0.005151,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.234123,0.005151,-0.005499,0.249940,0,0);}
.m5e_c01100{transform:matrix(0.234168,0.005152,-0.005499,0.249940,0,0);-ms-transform:matrix(0.234168,0.005152,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.234168,0.005152,-0.005499,0.249940,0,0);}
.mab_c01100{transform:matrix(0.234275,0.006325,-0.006748,0.249909,0,0);-ms-transform:matrix(0.234275,0.006325,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.234275,0.006325,-0.006748,0.249909,0,0);}
.m2c_c01100{transform:matrix(0.234360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234360,0.000000,0.000000,0.250000,0,0);}
.m123_c01100{transform:matrix(0.234994,0.006345,-0.006748,0.249909,0,0);-ms-transform:matrix(0.234994,0.006345,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.234994,0.006345,-0.006748,0.249909,0,0);}
.m94_c01100{transform:matrix(0.235404,0.006356,-0.006748,0.249909,0,0);-ms-transform:matrix(0.235404,0.006356,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.235404,0.006356,-0.006748,0.249909,0,0);}
.m148_c01100{transform:matrix(0.235656,0.005891,-0.006248,0.249922,0,0);-ms-transform:matrix(0.235656,0.005891,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.235656,0.005891,-0.006248,0.249922,0,0);}
.m125_c01100{transform:matrix(0.235669,0.006363,-0.006748,0.249909,0,0);-ms-transform:matrix(0.235669,0.006363,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.235669,0.006363,-0.006748,0.249909,0,0);}
.m107_c01100{transform:matrix(0.235984,0.006372,-0.006748,0.249909,0,0);-ms-transform:matrix(0.235984,0.006372,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.235984,0.006372,-0.006748,0.249909,0,0);}
.m151_c01100{transform:matrix(0.235996,0.011575,-0.012248,0.249700,0,0);-ms-transform:matrix(0.235996,0.011575,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.235996,0.011575,-0.012248,0.249700,0,0);}
.m9f_c01100{transform:matrix(0.236024,0.006373,-0.006748,0.249909,0,0);-ms-transform:matrix(0.236024,0.006373,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.236024,0.006373,-0.006748,0.249909,0,0);}
.m8_c01100{transform:matrix(0.237200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237200,0.000000,0.000000,0.250000,0,0);}
.m139_c01100{transform:matrix(0.238251,0.007386,-0.007746,0.249880,0,0);-ms-transform:matrix(0.238251,0.007386,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.238251,0.007386,-0.007746,0.249880,0,0);}
.ma7_c01100{transform:matrix(0.238448,0.006438,-0.006748,0.249909,0,0);-ms-transform:matrix(0.238448,0.006438,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.238448,0.006438,-0.006748,0.249909,0,0);}
.m91_c01100{transform:matrix(0.238483,0.006439,-0.006748,0.249909,0,0);-ms-transform:matrix(0.238483,0.006439,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.238483,0.006439,-0.006748,0.249909,0,0);}
.me_c01100{transform:matrix(0.239035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239035,0.000000,0.000000,0.250000,0,0);}
.m60_c01100{transform:matrix(0.239157,0.005261,-0.005499,0.249940,0,0);-ms-transform:matrix(0.239157,0.005261,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.239157,0.005261,-0.005499,0.249940,0,0);}
.m6d_c01100{transform:matrix(0.239252,0.005264,-0.005499,0.249940,0,0);-ms-transform:matrix(0.239252,0.005264,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.239252,0.005264,-0.005499,0.249940,0,0);}
.m95_c01100{transform:matrix(0.239418,0.006464,-0.006748,0.249909,0,0);-ms-transform:matrix(0.239418,0.006464,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.239418,0.006464,-0.006748,0.249909,0,0);}
.m149_c01100{transform:matrix(0.239480,0.005987,-0.006248,0.249922,0,0);-ms-transform:matrix(0.239480,0.005987,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.239480,0.005987,-0.006248,0.249922,0,0);}
.mc3_c01100{transform:matrix(0.239743,0.006473,-0.006748,0.249909,0,0);-ms-transform:matrix(0.239743,0.006473,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.239743,0.006473,-0.006748,0.249909,0,0);}
.m55_c01100{transform:matrix(0.239852,0.005277,-0.005499,0.249940,0,0);-ms-transform:matrix(0.239852,0.005277,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.239852,0.005277,-0.005499,0.249940,0,0);}
.m4f_c01100{transform:matrix(0.239957,0.005279,-0.005499,0.249940,0,0);-ms-transform:matrix(0.239957,0.005279,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.239957,0.005279,-0.005499,0.249940,0,0);}
.m11f_c01100{transform:matrix(0.240028,0.006481,-0.006748,0.249909,0,0);-ms-transform:matrix(0.240028,0.006481,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.240028,0.006481,-0.006748,0.249909,0,0);}
.mc0_c01100{transform:matrix(0.240137,0.006484,-0.006748,0.249909,0,0);-ms-transform:matrix(0.240137,0.006484,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.240137,0.006484,-0.006748,0.249909,0,0);}
.m36_c01100{transform:matrix(0.240155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240155,0.000000,0.000000,0.250000,0,0);}
.mc5_c01100{transform:matrix(0.240762,0.006501,-0.006748,0.249909,0,0);-ms-transform:matrix(0.240762,0.006501,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.240762,0.006501,-0.006748,0.249909,0,0);}
.mce_c01100{transform:matrix(0.240772,0.006501,-0.006748,0.249909,0,0);-ms-transform:matrix(0.240772,0.006501,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.240772,0.006501,-0.006748,0.249909,0,0);}
.m13_c01100{transform:matrix(0.240965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240965,0.000000,0.000000,0.250000,0,0);}
.m42_c01100{transform:matrix(0.240982,0.004820,-0.004999,0.249950,0,0);-ms-transform:matrix(0.240982,0.004820,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.240982,0.004820,-0.004999,0.249950,0,0);}
.mae_c01100{transform:matrix(0.241142,0.006511,-0.006748,0.249909,0,0);-ms-transform:matrix(0.241142,0.006511,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.241142,0.006511,-0.006748,0.249909,0,0);}
.m18_c01100{transform:matrix(0.241260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241260,0.000000,0.000000,0.250000,0,0);}
.ma5_c01100{transform:matrix(0.241327,0.006516,-0.006748,0.249909,0,0);-ms-transform:matrix(0.241327,0.006516,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.241327,0.006516,-0.006748,0.249909,0,0);}
.m9a_c01100{transform:matrix(0.241472,0.006520,-0.006748,0.249909,0,0);-ms-transform:matrix(0.241472,0.006520,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.241472,0.006520,-0.006748,0.249909,0,0);}
.m69_c01100{transform:matrix(0.241557,0.005314,-0.005499,0.249940,0,0);-ms-transform:matrix(0.241557,0.005314,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.241557,0.005314,-0.005499,0.249940,0,0);}
.mc7_c01100{transform:matrix(0.242437,0.006546,-0.006748,0.249909,0,0);-ms-transform:matrix(0.242437,0.006546,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.242437,0.006546,-0.006748,0.249909,0,0);}
.m1f_c01100{transform:matrix(0.242475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242475,0.000000,0.000000,0.250000,0,0);}
.m8f_c01100{transform:matrix(0.242657,0.006552,-0.006748,0.249909,0,0);-ms-transform:matrix(0.242657,0.006552,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.242657,0.006552,-0.006748,0.249909,0,0);}
.m70_c01100{transform:matrix(0.243316,0.005353,-0.005499,0.249940,0,0);-ms-transform:matrix(0.243316,0.005353,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.243316,0.005353,-0.005499,0.249940,0,0);}
.me7_c01100{transform:matrix(0.243361,0.006571,-0.006748,0.249909,0,0);-ms-transform:matrix(0.243361,0.006571,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.243361,0.006571,-0.006748,0.249909,0,0);}
.m10b_c01100{transform:matrix(0.243851,0.006584,-0.006748,0.249909,0,0);-ms-transform:matrix(0.243851,0.006584,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.243851,0.006584,-0.006748,0.249909,0,0);}
.mb9_c01100{transform:matrix(0.244001,0.006588,-0.006748,0.249909,0,0);-ms-transform:matrix(0.244001,0.006588,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.244001,0.006588,-0.006748,0.249909,0,0);}
.m58_c01100{transform:matrix(0.244036,0.005369,-0.005499,0.249940,0,0);-ms-transform:matrix(0.244036,0.005369,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.244036,0.005369,-0.005499,0.249940,0,0);}
.m88_c01100{transform:matrix(0.244206,0.006594,-0.006748,0.249909,0,0);-ms-transform:matrix(0.244206,0.006594,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.244206,0.006594,-0.006748,0.249909,0,0);}
.mf8_c01100{transform:matrix(0.244701,0.006607,-0.006748,0.249909,0,0);-ms-transform:matrix(0.244701,0.006607,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.244701,0.006607,-0.006748,0.249909,0,0);}
.m34_c01100{transform:matrix(0.244870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244870,0.000000,0.000000,0.250000,0,0);}
.m147_c01100{transform:matrix(0.245273,0.006132,-0.006248,0.249922,0,0);-ms-transform:matrix(0.245273,0.006132,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.245273,0.006132,-0.006248,0.249922,0,0);}
.maa_c01100{transform:matrix(0.245301,0.006623,-0.006748,0.249909,0,0);-ms-transform:matrix(0.245301,0.006623,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.245301,0.006623,-0.006748,0.249909,0,0);}
.m51_c01100{transform:matrix(0.245331,0.005397,-0.005499,0.249940,0,0);-ms-transform:matrix(0.245331,0.005397,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.245331,0.005397,-0.005499,0.249940,0,0);}
.mb4_c01100{transform:matrix(0.245356,0.006625,-0.006748,0.249909,0,0);-ms-transform:matrix(0.245356,0.006625,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.245356,0.006625,-0.006748,0.249909,0,0);}
.m41_c01100{transform:matrix(0.245771,0.004915,-0.004999,0.249950,0,0);-ms-transform:matrix(0.245771,0.004915,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.245771,0.004915,-0.004999,0.249950,0,0);}
.m87_c01100{transform:matrix(0.245995,0.006642,-0.006748,0.249909,0,0);-ms-transform:matrix(0.245995,0.006642,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.245995,0.006642,-0.006748,0.249909,0,0);}
.m10e_c01100{transform:matrix(0.246230,0.006648,-0.006748,0.249909,0,0);-ms-transform:matrix(0.246230,0.006648,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.246230,0.006648,-0.006748,0.249909,0,0);}
.m121_c01100{transform:matrix(0.246755,0.006662,-0.006748,0.249909,0,0);-ms-transform:matrix(0.246755,0.006662,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.246755,0.006662,-0.006748,0.249909,0,0);}
.m2f_c01100{transform:matrix(0.246845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246845,0.000000,0.000000,0.250000,0,0);}
.mc9_c01100{transform:matrix(0.246990,0.006669,-0.006748,0.249909,0,0);-ms-transform:matrix(0.246990,0.006669,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.246990,0.006669,-0.006748,0.249909,0,0);}
.ma4_c01100{transform:matrix(0.247125,0.006672,-0.006748,0.249909,0,0);-ms-transform:matrix(0.247125,0.006672,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.247125,0.006672,-0.006748,0.249909,0,0);}
.mfc_c01100{transform:matrix(0.247415,0.006680,-0.006748,0.249909,0,0);-ms-transform:matrix(0.247415,0.006680,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.247415,0.006680,-0.006748,0.249909,0,0);}
.m8c_c01100{transform:matrix(0.247460,0.006681,-0.006748,0.249909,0,0);-ms-transform:matrix(0.247460,0.006681,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.247460,0.006681,-0.006748,0.249909,0,0);}
.m93_c01100{transform:matrix(0.247525,0.006683,-0.006748,0.249909,0,0);-ms-transform:matrix(0.247525,0.006683,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.247525,0.006683,-0.006748,0.249909,0,0);}
.m1e_c01100{transform:matrix(0.248515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248515,0.000000,0.000000,0.250000,0,0);}
.m15_c01100{transform:matrix(0.248715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248715,0.000000,0.000000,0.250000,0,0);}
.m21_c01100{transform:matrix(0.248950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248950,0.000000,0.000000,0.250000,0,0);}
.m99_c01100{transform:matrix(0.249144,0.006727,-0.006748,0.249909,0,0);-ms-transform:matrix(0.249144,0.006727,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.249144,0.006727,-0.006748,0.249909,0,0);}
.mb6_c01100{transform:matrix(0.249179,0.006728,-0.006748,0.249909,0,0);-ms-transform:matrix(0.249179,0.006728,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.249179,0.006728,-0.006748,0.249909,0,0);}
.m133_c01100{transform:matrix(0.249620,0.007738,-0.007746,0.249880,0,0);-ms-transform:matrix(0.249620,0.007738,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.249620,0.007738,-0.007746,0.249880,0,0);}
.m106_c01100{transform:matrix(0.249909,0.006748,-0.006748,0.249909,0,0);-ms-transform:matrix(0.249909,0.006748,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.249909,0.006748,-0.006748,0.249909,0,0);}
.m16_c01100{transform:matrix(0.250580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250580,0.000000,0.000000,0.250000,0,0);}
.m103_c01100{transform:matrix(0.250699,0.006769,-0.006748,0.249909,0,0);-ms-transform:matrix(0.250699,0.006769,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.250699,0.006769,-0.006748,0.249909,0,0);}
.md0_c01100{transform:matrix(0.250804,0.006772,-0.006748,0.249909,0,0);-ms-transform:matrix(0.250804,0.006772,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.250804,0.006772,-0.006748,0.249909,0,0);}
.m5c_c01100{transform:matrix(0.250999,0.005522,-0.005499,0.249940,0,0);-ms-transform:matrix(0.250999,0.005522,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.250999,0.005522,-0.005499,0.249940,0,0);}
.md2_c01100{transform:matrix(0.251303,0.006785,-0.006748,0.249909,0,0);-ms-transform:matrix(0.251303,0.006785,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.251303,0.006785,-0.006748,0.249909,0,0);}
.m53_c01100{transform:matrix(0.251819,0.005540,-0.005499,0.249940,0,0);-ms-transform:matrix(0.251819,0.005540,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.251819,0.005540,-0.005499,0.249940,0,0);}
.m9d_c01100{transform:matrix(0.252493,0.006817,-0.006748,0.249909,0,0);-ms-transform:matrix(0.252493,0.006817,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.252493,0.006817,-0.006748,0.249909,0,0);}
.m45_c01100{transform:matrix(0.252689,0.005559,-0.005499,0.249940,0,0);-ms-transform:matrix(0.252689,0.005559,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.252689,0.005559,-0.005499,0.249940,0,0);}
.md6_c01100{transform:matrix(0.253038,0.006832,-0.006748,0.249909,0,0);-ms-transform:matrix(0.253038,0.006832,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.253038,0.006832,-0.006748,0.249909,0,0);}
.m10f_c01100{transform:matrix(0.253623,0.006848,-0.006748,0.249909,0,0);-ms-transform:matrix(0.253623,0.006848,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.253623,0.006848,-0.006748,0.249909,0,0);}
.m57_c01100{transform:matrix(0.253814,0.005584,-0.005499,0.249940,0,0);-ms-transform:matrix(0.253814,0.005584,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.253814,0.005584,-0.005499,0.249940,0,0);}
.m62_c01100{transform:matrix(0.254188,0.005592,-0.005499,0.249940,0,0);-ms-transform:matrix(0.254188,0.005592,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.254188,0.005592,-0.005499,0.249940,0,0);}
.m132_c01100{transform:matrix(0.254323,0.007884,-0.007746,0.249880,0,0);-ms-transform:matrix(0.254323,0.007884,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.254323,0.007884,-0.007746,0.249880,0,0);}
.m10c_c01100{transform:matrix(0.254407,0.006869,-0.006748,0.249909,0,0);-ms-transform:matrix(0.254407,0.006869,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.254407,0.006869,-0.006748,0.249909,0,0);}
.mdc_c01100{transform:matrix(0.254682,0.006876,-0.006748,0.249909,0,0);-ms-transform:matrix(0.254682,0.006876,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.254682,0.006876,-0.006748,0.249909,0,0);}
.m67_c01100{transform:matrix(0.254918,0.005608,-0.005499,0.249940,0,0);-ms-transform:matrix(0.254918,0.005608,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.254918,0.005608,-0.005499,0.249940,0,0);}
.m12a_c01100{transform:matrix(0.255057,0.006887,-0.006748,0.249909,0,0);-ms-transform:matrix(0.255057,0.006887,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.255057,0.006887,-0.006748,0.249909,0,0);}
.mb2_c01100{transform:matrix(0.255087,0.006887,-0.006748,0.249909,0,0);-ms-transform:matrix(0.255087,0.006887,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.255087,0.006887,-0.006748,0.249909,0,0);}
.mf4_c01100{transform:matrix(0.255802,0.006907,-0.006748,0.249909,0,0);-ms-transform:matrix(0.255802,0.006907,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.255802,0.006907,-0.006748,0.249909,0,0);}
.m102_c01100{transform:matrix(0.255842,0.006908,-0.006748,0.249909,0,0);-ms-transform:matrix(0.255842,0.006908,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.255842,0.006908,-0.006748,0.249909,0,0);}
.mcd_c01100{transform:matrix(0.255937,0.006910,-0.006748,0.249909,0,0);-ms-transform:matrix(0.255937,0.006910,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.255937,0.006910,-0.006748,0.249909,0,0);}
.m56_c01100{transform:matrix(0.256153,0.005635,-0.005499,0.249940,0,0);-ms-transform:matrix(0.256153,0.005635,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.256153,0.005635,-0.005499,0.249940,0,0);}
.md3_c01100{transform:matrix(0.256387,0.006922,-0.006748,0.249909,0,0);-ms-transform:matrix(0.256387,0.006922,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.256387,0.006922,-0.006748,0.249909,0,0);}
.mdf_c01100{transform:matrix(0.256666,0.006930,-0.006748,0.249909,0,0);-ms-transform:matrix(0.256666,0.006930,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.256666,0.006930,-0.006748,0.249909,0,0);}
.m2_c01100{transform:matrix(0.256820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256820,0.000000,0.000000,0.250000,0,0);}
.me4_c01100{transform:matrix(0.256856,0.006935,-0.006748,0.249909,0,0);-ms-transform:matrix(0.256856,0.006935,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.256856,0.006935,-0.006748,0.249909,0,0);}
.m66_c01100{transform:matrix(0.257358,0.005662,-0.005499,0.249940,0,0);-ms-transform:matrix(0.257358,0.005662,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.257358,0.005662,-0.005499,0.249940,0,0);}
.mf9_c01100{transform:matrix(0.257476,0.006952,-0.006748,0.249909,0,0);-ms-transform:matrix(0.257476,0.006952,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.257476,0.006952,-0.006748,0.249909,0,0);}
.m108_c01100{transform:matrix(0.257766,0.006960,-0.006748,0.249909,0,0);-ms-transform:matrix(0.257766,0.006960,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.257766,0.006960,-0.006748,0.249909,0,0);}
.m3a_c01100{transform:matrix(0.258045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258045,0.000000,0.000000,0.250000,0,0);}
.m6c_c01100{transform:matrix(0.258123,0.005679,-0.005499,0.249940,0,0);-ms-transform:matrix(0.258123,0.005679,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.258123,0.005679,-0.005499,0.249940,0,0);}
.mac_c01100{transform:matrix(0.258281,0.006974,-0.006748,0.249909,0,0);-ms-transform:matrix(0.258281,0.006974,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.258281,0.006974,-0.006748,0.249909,0,0);}
.m97_c01100{transform:matrix(0.258291,0.006974,-0.006748,0.249909,0,0);-ms-transform:matrix(0.258291,0.006974,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.258291,0.006974,-0.006748,0.249909,0,0);}
.m126_c01100{transform:matrix(0.258566,0.006981,-0.006748,0.249909,0,0);-ms-transform:matrix(0.258566,0.006981,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.258566,0.006981,-0.006748,0.249909,0,0);}
.m39_c01100{transform:matrix(0.258615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258615,0.000000,0.000000,0.250000,0,0);}
.m61_c01100{transform:matrix(0.258632,0.005690,-0.005499,0.249940,0,0);-ms-transform:matrix(0.258632,0.005690,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.258632,0.005690,-0.005499,0.249940,0,0);}
.mf3_c01100{transform:matrix(0.258796,0.006987,-0.006748,0.249909,0,0);-ms-transform:matrix(0.258796,0.006987,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.258796,0.006987,-0.006748,0.249909,0,0);}
.m10_c01100{transform:matrix(0.259935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259935,0.000000,0.000000,0.250000,0,0);}
.m12b_c01100{transform:matrix(0.260170,0.007025,-0.006748,0.249909,0,0);-ms-transform:matrix(0.260170,0.007025,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.260170,0.007025,-0.006748,0.249909,0,0);}
.me0_c01100{transform:matrix(0.260305,0.007028,-0.006748,0.249909,0,0);-ms-transform:matrix(0.260305,0.007028,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.260305,0.007028,-0.006748,0.249909,0,0);}
.m35_c01100{transform:matrix(0.260790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260790,0.000000,0.000000,0.250000,0,0);}
.m26_c01100{transform:matrix(0.260890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260890,0.000000,0.000000,0.250000,0,0);}
.m47_c01100{transform:matrix(0.260987,0.005742,-0.005499,0.249940,0,0);-ms-transform:matrix(0.260987,0.005742,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.260987,0.005742,-0.005499,0.249940,0,0);}
.m122_c01100{transform:matrix(0.261845,0.007070,-0.006748,0.249909,0,0);-ms-transform:matrix(0.261845,0.007070,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.261845,0.007070,-0.006748,0.249909,0,0);}
.m5b_c01100{transform:matrix(0.261997,0.005764,-0.005499,0.249940,0,0);-ms-transform:matrix(0.261997,0.005764,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.261997,0.005764,-0.005499,0.249940,0,0);}
.m5f_c01100{transform:matrix(0.262247,0.005769,-0.005499,0.249940,0,0);-ms-transform:matrix(0.262247,0.005769,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.262247,0.005769,-0.005499,0.249940,0,0);}
.md4_c01100{transform:matrix(0.262429,0.007086,-0.006748,0.249909,0,0);-ms-transform:matrix(0.262429,0.007086,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.262429,0.007086,-0.006748,0.249909,0,0);}
.m37_c01100{transform:matrix(0.262795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262795,0.000000,0.000000,0.250000,0,0);}
.m101_c01100{transform:matrix(0.262804,0.007096,-0.006748,0.249909,0,0);-ms-transform:matrix(0.262804,0.007096,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.262804,0.007096,-0.006748,0.249909,0,0);}
.m1a_c01100{transform:matrix(0.263570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263570,0.000000,0.000000,0.250000,0,0);}
.m71_c01100{transform:matrix(0.263696,0.005801,-0.005499,0.249940,0,0);-ms-transform:matrix(0.263696,0.005801,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.263696,0.005801,-0.005499,0.249940,0,0);}
.m12c_c01100{transform:matrix(0.264029,0.007129,-0.006748,0.249909,0,0);-ms-transform:matrix(0.264029,0.007129,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.264029,0.007129,-0.006748,0.249909,0,0);}
.m2b_c01100{transform:matrix(0.264155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264155,0.000000,0.000000,0.250000,0,0);}
.mdd_c01100{transform:matrix(0.264279,0.007136,-0.006748,0.249909,0,0);-ms-transform:matrix(0.264279,0.007136,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.264279,0.007136,-0.006748,0.249909,0,0);}
.m85_c01100{transform:matrix(0.264679,0.007146,-0.006748,0.249909,0,0);-ms-transform:matrix(0.264679,0.007146,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.264679,0.007146,-0.006748,0.249909,0,0);}
.m59_c01100{transform:matrix(0.265951,0.005851,-0.005499,0.249940,0,0);-ms-transform:matrix(0.265951,0.005851,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.265951,0.005851,-0.005499,0.249940,0,0);}
.m2a_c01100{transform:matrix(0.266035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266035,0.000000,0.000000,0.250000,0,0);}
.m120_c01100{transform:matrix(0.266283,0.007190,-0.006748,0.249909,0,0);-ms-transform:matrix(0.266283,0.007190,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.266283,0.007190,-0.006748,0.249909,0,0);}
.m128_c01100{transform:matrix(0.266848,0.007205,-0.006748,0.249909,0,0);-ms-transform:matrix(0.266848,0.007205,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.266848,0.007205,-0.006748,0.249909,0,0);}
.m1c_c01100{transform:matrix(0.266860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266860,0.000000,0.000000,0.250000,0,0);}
.m5_c01100{transform:matrix(0.267410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267410,0.000000,0.000000,0.250000,0,0);}
.mda_c01100{transform:matrix(0.267632,0.007226,-0.006748,0.249909,0,0);-ms-transform:matrix(0.267632,0.007226,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.267632,0.007226,-0.006748,0.249909,0,0);}
.mf6_c01100{transform:matrix(0.267822,0.007231,-0.006748,0.249909,0,0);-ms-transform:matrix(0.267822,0.007231,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.267822,0.007231,-0.006748,0.249909,0,0);}
.md7_c01100{transform:matrix(0.267982,0.007236,-0.006748,0.249909,0,0);-ms-transform:matrix(0.267982,0.007236,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.267982,0.007236,-0.006748,0.249909,0,0);}
.ma_c01100{transform:matrix(0.268005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268005,0.000000,0.000000,0.250000,0,0);}
.m81_c01100{transform:matrix(0.268437,0.007248,-0.006748,0.249909,0,0);-ms-transform:matrix(0.268437,0.007248,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.268437,0.007248,-0.006748,0.249909,0,0);}
.m8a_c01100{transform:matrix(0.268447,0.007248,-0.006748,0.249909,0,0);-ms-transform:matrix(0.268447,0.007248,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.268447,0.007248,-0.006748,0.249909,0,0);}
.m83_c01100{transform:matrix(0.268937,0.007261,-0.006748,0.249909,0,0);-ms-transform:matrix(0.268937,0.007261,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.268937,0.007261,-0.006748,0.249909,0,0);}
.m27_c01100{transform:matrix(0.269005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269005,0.000000,0.000000,0.250000,0,0);}
.me5_c01100{transform:matrix(0.269192,0.007268,-0.006748,0.249909,0,0);-ms-transform:matrix(0.269192,0.007268,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.269192,0.007268,-0.006748,0.249909,0,0);}
.m11e_c01100{transform:matrix(0.269437,0.007275,-0.006748,0.249909,0,0);-ms-transform:matrix(0.269437,0.007275,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.269437,0.007275,-0.006748,0.249909,0,0);}
.m4a_c01100{transform:matrix(0.269625,0.005932,-0.005499,0.249940,0,0);-ms-transform:matrix(0.269625,0.005932,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.269625,0.005932,-0.005499,0.249940,0,0);}
.m3d_c01100{transform:matrix(0.269871,0.005397,-0.004999,0.249950,0,0);-ms-transform:matrix(0.269871,0.005397,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.269871,0.005397,-0.004999,0.249950,0,0);}
.m3f_c01100{transform:matrix(0.270026,0.005401,-0.004999,0.249950,0,0);-ms-transform:matrix(0.270026,0.005401,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.270026,0.005401,-0.004999,0.249950,0,0);}
.m20_c01100{transform:matrix(0.270435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270435,0.000000,0.000000,0.250000,0,0);}
.m129_c01100{transform:matrix(0.270701,0.007309,-0.006748,0.249909,0,0);-ms-transform:matrix(0.270701,0.007309,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.270701,0.007309,-0.006748,0.249909,0,0);}
.m12e_c01100{transform:matrix(0.270746,0.007310,-0.006748,0.249909,0,0);-ms-transform:matrix(0.270746,0.007310,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.270746,0.007310,-0.006748,0.249909,0,0);}
.mfd_c01100{transform:matrix(0.271031,0.007318,-0.006748,0.249909,0,0);-ms-transform:matrix(0.271031,0.007318,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.271031,0.007318,-0.006748,0.249909,0,0);}
.md1_c01100{transform:matrix(0.271686,0.007336,-0.006748,0.249909,0,0);-ms-transform:matrix(0.271686,0.007336,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.271686,0.007336,-0.006748,0.249909,0,0);}
.ma0_c01100{transform:matrix(0.272186,0.007349,-0.006748,0.249909,0,0);-ms-transform:matrix(0.272186,0.007349,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.272186,0.007349,-0.006748,0.249909,0,0);}
.mf7_c01100{transform:matrix(0.273360,0.007381,-0.006748,0.249909,0,0);-ms-transform:matrix(0.273360,0.007381,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.273360,0.007381,-0.006748,0.249909,0,0);}
.m130_c01100{transform:matrix(0.273420,0.007382,-0.006748,0.249909,0,0);-ms-transform:matrix(0.273420,0.007382,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.273420,0.007382,-0.006748,0.249909,0,0);}
.m31_c01100{transform:matrix(0.273960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273960,0.000000,0.000000,0.250000,0,0);}
.md8_c01100{transform:matrix(0.274055,0.007399,-0.006748,0.249909,0,0);-ms-transform:matrix(0.274055,0.007399,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.274055,0.007399,-0.006748,0.249909,0,0);}
.m92_c01100{transform:matrix(0.274630,0.007415,-0.006748,0.249909,0,0);-ms-transform:matrix(0.274630,0.007415,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.274630,0.007415,-0.006748,0.249909,0,0);}
.m2d_c01100{transform:matrix(0.274690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274690,0.000000,0.000000,0.250000,0,0);}
.mb_c01100{transform:matrix(0.274705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274705,0.000000,0.000000,0.250000,0,0);}
.m6_c01100{transform:matrix(0.274755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274755,0.000000,0.000000,0.250000,0,0);}
.m12d_c01100{transform:matrix(0.274780,0.007419,-0.006748,0.249909,0,0);-ms-transform:matrix(0.274780,0.007419,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.274780,0.007419,-0.006748,0.249909,0,0);}
.m64_c01100{transform:matrix(0.274903,0.006048,-0.005499,0.249940,0,0);-ms-transform:matrix(0.274903,0.006048,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.274903,0.006048,-0.005499,0.249940,0,0);}
.m22_c01100{transform:matrix(0.275110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275110,0.000000,0.000000,0.250000,0,0);}
.m6f_c01100{transform:matrix(0.275438,0.006060,-0.005499,0.249940,0,0);-ms-transform:matrix(0.275438,0.006060,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.275438,0.006060,-0.005499,0.249940,0,0);}
.m6b_c01100{transform:matrix(0.275823,0.006068,-0.005499,0.249940,0,0);-ms-transform:matrix(0.275823,0.006068,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.275823,0.006068,-0.005499,0.249940,0,0);}
.m5d_c01100{transform:matrix(0.276013,0.006072,-0.005499,0.249940,0,0);-ms-transform:matrix(0.276013,0.006072,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.276013,0.006072,-0.005499,0.249940,0,0);}
.m8d_c01100{transform:matrix(0.276109,0.007455,-0.006748,0.249909,0,0);-ms-transform:matrix(0.276109,0.007455,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.276109,0.007455,-0.006748,0.249909,0,0);}
.m33_c01100{transform:matrix(0.276230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276230,0.000000,0.000000,0.250000,0,0);}
.mfa_c01100{transform:matrix(0.276409,0.007463,-0.006748,0.249909,0,0);-ms-transform:matrix(0.276409,0.007463,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.276409,0.007463,-0.006748,0.249909,0,0);}
.m86_c01100{transform:matrix(0.276884,0.007476,-0.006748,0.249909,0,0);-ms-transform:matrix(0.276884,0.007476,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.276884,0.007476,-0.006748,0.249909,0,0);}
.m50_c01100{transform:matrix(0.276903,0.006092,-0.005499,0.249940,0,0);-ms-transform:matrix(0.276903,0.006092,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.276903,0.006092,-0.005499,0.249940,0,0);}
.m7_c01100{transform:matrix(0.277145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277145,0.000000,0.000000,0.250000,0,0);}
.mdb_c01100{transform:matrix(0.277189,0.007484,-0.006748,0.249909,0,0);-ms-transform:matrix(0.277189,0.007484,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.277189,0.007484,-0.006748,0.249909,0,0);}
.m9_c01100{transform:matrix(0.277260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277260,0.000000,0.000000,0.250000,0,0);}
.m40_c01100{transform:matrix(0.277415,0.005548,-0.004999,0.249950,0,0);-ms-transform:matrix(0.277415,0.005548,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.277415,0.005548,-0.004999,0.249950,0,0);}
.m28_c01100{transform:matrix(0.277510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277510,0.000000,0.000000,0.250000,0,0);}
.m52_c01100{transform:matrix(0.278023,0.006116,-0.005499,0.249940,0,0);-ms-transform:matrix(0.278023,0.006116,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.278023,0.006116,-0.005499,0.249940,0,0);}
.ma6_c01100{transform:matrix(0.279033,0.007534,-0.006748,0.249909,0,0);-ms-transform:matrix(0.279033,0.007534,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.279033,0.007534,-0.006748,0.249909,0,0);}
.mff_c01100{transform:matrix(0.279253,0.007540,-0.006748,0.249909,0,0);-ms-transform:matrix(0.279253,0.007540,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.279253,0.007540,-0.006748,0.249909,0,0);}
.m6a_c01100{transform:matrix(0.279632,0.006152,-0.005499,0.249940,0,0);-ms-transform:matrix(0.279632,0.006152,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.279632,0.006152,-0.005499,0.249940,0,0);}
.mc_c01100{transform:matrix(0.279665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279665,0.000000,0.000000,0.250000,0,0);}
.m90_c01100{transform:matrix(0.279933,0.007558,-0.006748,0.249909,0,0);-ms-transform:matrix(0.279933,0.007558,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.279933,0.007558,-0.006748,0.249909,0,0);}
.mfb_c01100{transform:matrix(0.280343,0.007569,-0.006748,0.249909,0,0);-ms-transform:matrix(0.280343,0.007569,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.280343,0.007569,-0.006748,0.249909,0,0);}
.m54_c01100{transform:matrix(0.280432,0.006170,-0.005499,0.249940,0,0);-ms-transform:matrix(0.280432,0.006170,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.280432,0.006170,-0.005499,0.249940,0,0);}
.ma3_c01100{transform:matrix(0.281362,0.007597,-0.006748,0.249909,0,0);-ms-transform:matrix(0.281362,0.007597,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.281362,0.007597,-0.006748,0.249909,0,0);}
.m82_c01100{transform:matrix(0.281527,0.007601,-0.006748,0.249909,0,0);-ms-transform:matrix(0.281527,0.007601,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.281527,0.007601,-0.006748,0.249909,0,0);}
.m104_c01100{transform:matrix(0.281647,0.007604,-0.006748,0.249909,0,0);-ms-transform:matrix(0.281647,0.007604,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.281647,0.007604,-0.006748,0.249909,0,0);}
.m11d_c01100{transform:matrix(0.282122,0.007617,-0.006748,0.249909,0,0);-ms-transform:matrix(0.282122,0.007617,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.282122,0.007617,-0.006748,0.249909,0,0);}
.m24_c01100{transform:matrix(0.284450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284450,0.000000,0.000000,0.250000,0,0);}
.m38_c01100{transform:matrix(0.284755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284755,0.000000,0.000000,0.250000,0,0);}
.m4e_c01100{transform:matrix(0.286091,0.006294,-0.005499,0.249940,0,0);-ms-transform:matrix(0.286091,0.006294,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.286091,0.006294,-0.005499,0.249940,0,0);}
.m124_c01100{transform:matrix(0.286281,0.007730,-0.006748,0.249909,0,0);-ms-transform:matrix(0.286281,0.007730,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.286281,0.007730,-0.006748,0.249909,0,0);}
.m46_c01100{transform:matrix(0.286531,0.006304,-0.005499,0.249940,0,0);-ms-transform:matrix(0.286531,0.006304,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.286531,0.006304,-0.005499,0.249940,0,0);}
.m80_c01100{transform:matrix(0.290864,0.007853,-0.006748,0.249909,0,0);-ms-transform:matrix(0.290864,0.007853,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.290864,0.007853,-0.006748,0.249909,0,0);}
.m131_c01100{transform:matrix(0.293118,0.007914,-0.006748,0.249909,0,0);-ms-transform:matrix(0.293118,0.007914,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.293118,0.007914,-0.006748,0.249909,0,0);}
.m44_c01100{transform:matrix(0.295211,0.005904,-0.004999,0.249950,0,0);-ms-transform:matrix(0.295211,0.005904,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.295211,0.005904,-0.004999,0.249950,0,0);}
.ma9_c01100{transform:matrix(0.297067,0.008021,-0.006748,0.249909,0,0);-ms-transform:matrix(0.297067,0.008021,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.297067,0.008021,-0.006748,0.249909,0,0);}
.m4c_c01100{transform:matrix(0.297618,0.006548,-0.005499,0.249940,0,0);-ms-transform:matrix(0.297618,0.006548,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.297618,0.006548,-0.005499,0.249940,0,0);}
.m141_c01100{transform:matrix(0.298612,0.009257,-0.007746,0.249880,0,0);-ms-transform:matrix(0.298612,0.009257,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.298612,0.009257,-0.007746,0.249880,0,0);}
.m49_c01100{transform:matrix(0.306836,0.006750,-0.005499,0.249940,0,0);-ms-transform:matrix(0.306836,0.006750,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.306836,0.006750,-0.005499,0.249940,0,0);}
.m13f_c01100{transform:matrix(0.307912,0.009545,-0.007746,0.249880,0,0);-ms-transform:matrix(0.307912,0.009545,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.307912,0.009545,-0.007746,0.249880,0,0);}
.m48_c01100{transform:matrix(0.308450,0.006786,-0.005499,0.249940,0,0);-ms-transform:matrix(0.308450,0.006786,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.308450,0.006786,-0.005499,0.249940,0,0);}
.m13d_c01100{transform:matrix(0.315883,0.009792,-0.007746,0.249880,0,0);-ms-transform:matrix(0.315883,0.009792,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.315883,0.009792,-0.007746,0.249880,0,0);}
.m143_c01100{transform:matrix(0.318822,0.009883,-0.007746,0.249880,0,0);-ms-transform:matrix(0.318822,0.009883,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.318822,0.009883,-0.007746,0.249880,0,0);}
.m127_c01100{transform:matrix(0.324257,0.008755,-0.006748,0.249909,0,0);-ms-transform:matrix(0.324257,0.008755,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.324257,0.008755,-0.006748,0.249909,0,0);}
.m145_c01100{transform:matrix(0.328532,0.010184,-0.007746,0.249880,0,0);-ms-transform:matrix(0.328532,0.010184,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.328532,0.010184,-0.007746,0.249880,0,0);}
.m146_c01100{transform:matrix(0.328552,0.010185,-0.007746,0.249880,0,0);-ms-transform:matrix(0.328552,0.010185,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.328552,0.010185,-0.007746,0.249880,0,0);}
.m142_c01100{transform:matrix(0.331841,0.010287,-0.007746,0.249880,0,0);-ms-transform:matrix(0.331841,0.010287,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.331841,0.010287,-0.007746,0.249880,0,0);}
.m144_c01100{transform:matrix(0.346279,0.010735,-0.007746,0.249880,0,0);-ms-transform:matrix(0.346279,0.010735,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.346279,0.010735,-0.007746,0.249880,0,0);}
.ma8_c01100{transform:matrix(0.352057,0.009506,-0.006748,0.249909,0,0);-ms-transform:matrix(0.352057,0.009506,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.352057,0.009506,-0.006748,0.249909,0,0);}
.m13e_c01100{transform:matrix(0.358113,0.011102,-0.007746,0.249880,0,0);-ms-transform:matrix(0.358113,0.011102,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.358113,0.011102,-0.007746,0.249880,0,0);}
.m7f_c01100{transform:matrix(0.368256,0.009943,-0.006748,0.249909,0,0);-ms-transform:matrix(0.368256,0.009943,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.368256,0.009943,-0.006748,0.249909,0,0);}
.m3_c01100{transform:matrix(0.522975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522975,0.000000,0.000000,0.250000,0,0);}
.m4_c01100{transform:matrix(0.570605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.570605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.570605,0.000000,0.000000,0.250000,0,0);}
.v0_c01100{vertical-align:0.000000px;}
.ls0_c01100{letter-spacing:0.000000px;}
.sc__c01100{text-shadow:none;}
.sc0_c01100{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__c01100{-webkit-text-stroke:0px transparent;}
.sc0_c01100{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01100{word-spacing:0.000000px;}
.fc0_c01100{color:transparent;}
.fsc_c01100{font-size:54.025941px;}
.fs4_c01100{font-size:66.015970px;}
.fs1_c01100{font-size:72.000000px;}
.fs3_c01100{font-size:72.014399px;}
.fs5_c01100{font-size:72.017422px;}
.fs8_c01100{font-size:72.026239px;}
.fs2_c01100{font-size:78.000000px;}
.fsd_c01100{font-size:78.024371px;}
.fs9_c01100{font-size:78.028426px;}
.fsb_c01100{font-size:78.037470px;}
.fsa_c01100{font-size:84.030612px;}
.fsf_c01100{font-size:90.018088px;}
.fs6_c01100{font-size:90.021777px;}
.fs7_c01100{font-size:90.032799px;}
.fse_c01100{font-size:96.019294px;}
.fs0_c01100{font-size:120.000000px;}
.y0_c01100{bottom:0.000000px;}
.y15f_c01100{bottom:18.572224px;}
.y15e_c01100{bottom:19.852051px;}
.y15d_c01100{bottom:21.521643px;}
.y15c_c01100{bottom:22.822377px;}
.y15b_c01100{bottom:24.918329px;}
.y155_c01100{bottom:28.324236px;}
.y15a_c01100{bottom:28.325908px;}
.y159_c01100{bottom:29.568523px;}
.y158_c01100{bottom:31.255081px;}
.y154_c01100{bottom:31.619461px;}
.y157_c01100{bottom:32.487831px;}
.y153_c01100{bottom:34.287438px;}
.y156_c01100{bottom:35.401038px;}
.y152_c01100{bottom:36.424009px;}
.y151_c01100{bottom:39.188344px;}
.y150_c01100{bottom:43.026000px;}
.y14f_c01100{bottom:47.183250px;}
.y14e_c01100{bottom:49.958663px;}
.y14d_c01100{bottom:52.659000px;}
.y14c_c01100{bottom:73.917046px;}
.y14b_c01100{bottom:75.891749px;}
.y14a_c01100{bottom:78.624678px;}
.y149_c01100{bottom:79.796290px;}
.y148_c01100{bottom:80.553960px;}
.y147_c01100{bottom:81.735442px;}
.y146_c01100{bottom:82.406584px;}
.y145_c01100{bottom:83.598913px;}
.y144_c01100{bottom:86.386575px;}
.y143_c01100{bottom:89.733729px;}
.y142_c01100{bottom:90.974361px;}
.y141_c01100{bottom:111.978437px;}
.y140_c01100{bottom:113.343397px;}
.y13f_c01100{bottom:115.420227px;}
.y13e_c01100{bottom:116.450016px;}
.y13d_c01100{bottom:117.086601px;}
.y13c_c01100{bottom:118.535727px;}
.y13b_c01100{bottom:119.114885px;}
.y13a_c01100{bottom:120.177549px;}
.y139_c01100{bottom:122.664044px;}
.y138_c01100{bottom:126.372000px;}
.y137_c01100{bottom:157.251558px;}
.y136_c01100{bottom:160.353723px;}
.y135_c01100{bottom:161.303664px;}
.y134_c01100{bottom:163.970370px;}
.y133_c01100{bottom:166.696941px;}
.y132_c01100{bottom:168.633723px;}
.y131_c01100{bottom:169.314838px;}
.y130_c01100{bottom:171.299172px;}
.y12f_c01100{bottom:173.640549px;}
.y12e_c01100{bottom:174.628969px;}
.y12d_c01100{bottom:176.920608px;}
.y12c_c01100{bottom:191.554758px;}
.y12b_c01100{bottom:192.663142px;}
.y12a_c01100{bottom:193.667185px;}
.y129_c01100{bottom:197.134594px;}
.y128_c01100{bottom:198.155974px;}
.y127_c01100{bottom:200.518198px;}
.y126_c01100{bottom:201.580974px;}
.y125_c01100{bottom:202.618434px;}
.y124_c01100{bottom:205.021933px;}
.y123_c01100{bottom:205.715140px;}
.y122_c01100{bottom:208.421781px;}
.y121_c01100{bottom:212.573607px;}
.y120_c01100{bottom:227.904003px;}
.y11f_c01100{bottom:229.535766px;}
.y11e_c01100{bottom:231.353592px;}
.y11d_c01100{bottom:232.919580px;}
.y11c_c01100{bottom:233.834508px;}
.y11b_c01100{bottom:235.711467px;}
.y11a_c01100{bottom:236.310402px;}
.y119_c01100{bottom:238.191573px;}
.y118_c01100{bottom:239.143641px;}
.y117_c01100{bottom:241.891056px;}
.y116_c01100{bottom:242.827651px;}
.y115_c01100{bottom:245.587866px;}
.y114_c01100{bottom:247.143891px;}
.y113_c01100{bottom:265.595623px;}
.y112_c01100{bottom:267.690634px;}
.y111_c01100{bottom:268.687833px;}
.y110_c01100{bottom:270.405133px;}
.y10f_c01100{bottom:273.829687px;}
.y10e_c01100{bottom:275.279775px;}
.y10d_c01100{bottom:276.249267px;}
.y10c_c01100{bottom:278.252128px;}
.y10b_c01100{bottom:280.769122px;}
.y10a_c01100{bottom:282.440814px;}
.y109_c01100{bottom:284.501922px;}
.y108_c01100{bottom:285.497541px;}
.y107_c01100{bottom:302.353017px;}
.y106_c01100{bottom:303.519655px;}
.y105_c01100{bottom:307.836303px;}
.y104_c01100{bottom:309.579315px;}
.y103_c01100{bottom:310.443066px;}
.y102_c01100{bottom:313.582668px;}
.y101_c01100{bottom:314.178076px;}
.y100_c01100{bottom:316.742640px;}
.yff_c01100{bottom:317.907740px;}
.yfe_c01100{bottom:337.137131px;}
.yfd_c01100{bottom:338.074536px;}
.yfc_c01100{bottom:340.570640px;}
.yfb_c01100{bottom:342.135615px;}
.yfa_c01100{bottom:343.648061px;}
.yf9_c01100{bottom:346.470323px;}
.yf8_c01100{bottom:348.609285px;}
.yf7_c01100{bottom:349.546488px;}
.yf6_c01100{bottom:351.405544px;}
.yf5_c01100{bottom:353.559289px;}
.yf4_c01100{bottom:369.525297px;}
.yf3_c01100{bottom:372.876954px;}
.yf2_c01100{bottom:373.829022px;}
.yf1_c01100{bottom:376.312611px;}
.yf0_c01100{bottom:377.568075px;}
.yef_c01100{bottom:378.521155px;}
.yee_c01100{bottom:381.964102px;}
.yed_c01100{bottom:382.535052px;}
.yec_c01100{bottom:385.630983px;}
.yeb_c01100{bottom:386.560491px;}
.yea_c01100{bottom:388.404360px;}
.ye9_c01100{bottom:408.361895px;}
.ye8_c01100{bottom:409.490418px;}
.ye7_c01100{bottom:410.332791px;}
.ye6_c01100{bottom:412.562502px;}
.ye5_c01100{bottom:413.664095px;}
.ye4_c01100{bottom:414.459046px;}
.ye3_c01100{bottom:415.594658px;}
.ye2_c01100{bottom:418.929971px;}
.ye1_c01100{bottom:422.484008px;}
.ye0_c01100{bottom:423.305282px;}
.ydf_c01100{bottom:424.864043px;}
.yde_c01100{bottom:445.096237px;}
.ydd_c01100{bottom:447.501071px;}
.ydc_c01100{bottom:449.116413px;}
.ydb_c01100{bottom:449.901449px;}
.yda_c01100{bottom:451.769076px;}
.yd9_c01100{bottom:453.894534px;}
.yd8_c01100{bottom:454.956677px;}
.yd7_c01100{bottom:455.994603px;}
.yd6_c01100{bottom:457.843967px;}
.yd5_c01100{bottom:459.444935px;}
.yd4_c01100{bottom:460.519631px;}
.yd3_c01100{bottom:478.594743px;}
.yd2_c01100{bottom:480.409670px;}
.yd1_c01100{bottom:481.314683px;}
.yd0_c01100{bottom:482.815694px;}
.ycf_c01100{bottom:484.319458px;}
.yce_c01100{bottom:487.294062px;}
.ycd_c01100{bottom:488.162058px;}
.ycc_c01100{bottom:488.772231px;}
.ycb_c01100{bottom:489.678824px;}
.yca_c01100{bottom:491.772471px;}
.yc9_c01100{bottom:493.267772px;}
.yc8_c01100{bottom:495.636171px;}
.yc7_c01100{bottom:512.623736px;}
.yc6_c01100{bottom:515.443365px;}
.yc5_c01100{bottom:516.070895px;}
.yc4_c01100{bottom:519.152366px;}
.yc3_c01100{bottom:521.065817px;}
.yc2_c01100{bottom:521.995730px;}
.yc1_c01100{bottom:525.110453px;}
.yc0_c01100{bottom:525.683225px;}
.ybf_c01100{bottom:527.567069px;}
.ybe_c01100{bottom:528.164586px;}
.ybd_c01100{bottom:529.422116px;}
.ybc_c01100{bottom:530.008860px;}
.ybb_c01100{bottom:531.561078px;}
.yba_c01100{bottom:548.854008px;}
.yb9_c01100{bottom:549.864462px;}
.yb8_c01100{bottom:551.202027px;}
.yb7_c01100{bottom:553.913612px;}
.yb6_c01100{bottom:554.934152px;}
.yb5_c01100{bottom:557.234619px;}
.yb4_c01100{bottom:558.579637px;}
.yb3_c01100{bottom:561.916725px;}
.yb2_c01100{bottom:563.558313px;}
.yb1_c01100{bottom:564.518097px;}
.yb0_c01100{bottom:565.537989px;}
.yaf_c01100{bottom:567.531113px;}
.yae_c01100{bottom:568.832589px;}
.yad_c01100{bottom:585.452516px;}
.yac_c01100{bottom:586.364414px;}
.yab_c01100{bottom:586.945832px;}
.yaa_c01100{bottom:587.851614px;}
.ya9_c01100{bottom:589.975961px;}
.ya8_c01100{bottom:590.902236px;}
.ya7_c01100{bottom:593.308260px;}
.ya6_c01100{bottom:594.176256px;}
.ya5_c01100{bottom:595.369427px;}
.ya4_c01100{bottom:598.659363px;}
.ya3_c01100{bottom:599.548419px;}
.ya2_c01100{bottom:600.715184px;}
.ya1_c01100{bottom:603.406976px;}
.ya0_c01100{bottom:619.861580px;}
.y9f_c01100{bottom:620.738574px;}
.y9e_c01100{bottom:622.778522px;}
.y9d_c01100{bottom:623.944391px;}
.y9c_c01100{bottom:624.815796px;}
.y9b_c01100{bottom:626.825046px;}
.y9a_c01100{bottom:628.833932px;}
.y99_c01100{bottom:629.724938px;}
.y98_c01100{bottom:632.589879px;}
.y97_c01100{bottom:633.440549px;}
.y96_c01100{bottom:634.884399px;}
.y95_c01100{bottom:637.266032px;}
.y94_c01100{bottom:655.395686px;}
.y93_c01100{bottom:657.347670px;}
.y92_c01100{bottom:658.447075px;}
.y91_c01100{bottom:661.549168px;}
.y90_c01100{bottom:662.352624px;}
.y8f_c01100{bottom:663.189165px;}
.y8e_c01100{bottom:665.930270px;}
.y8d_c01100{bottom:666.787910px;}
.y8c_c01100{bottom:667.622628px;}
.y8b_c01100{bottom:670.095198px;}
.y8a_c01100{bottom:670.925787px;}
.y89_c01100{bottom:672.282996px;}
.y88_c01100{bottom:694.225091px;}
.y87_c01100{bottom:696.484038px;}
.y86_c01100{bottom:698.040921px;}
.y85_c01100{bottom:698.695254px;}
.y84_c01100{bottom:700.266671px;}
.y83_c01100{bottom:702.470638px;}
.y82_c01100{bottom:704.248980px;}
.y81_c01100{bottom:704.865458px;}
.y80_c01100{bottom:707.122422px;}
.y7f_c01100{bottom:727.551932px;}
.y7e_c01100{bottom:729.952407px;}
.y7d_c01100{bottom:732.941388px;}
.y7c_c01100{bottom:733.838909px;}
.y7b_c01100{bottom:735.347777px;}
.y7a_c01100{bottom:736.883415px;}
.y79_c01100{bottom:737.754570px;}
.y78_c01100{bottom:739.533452px;}
.y77_c01100{bottom:740.445350px;}
.y76_c01100{bottom:741.007652px;}
.y75_c01100{bottom:741.969000px;}
.y74_c01100{bottom:776.505411px;}
.y73_c01100{bottom:778.665111px;}
.y72_c01100{bottom:800.296029px;}
.y71_c01100{bottom:801.010926px;}
.y70_c01100{bottom:803.132613px;}
.y6f_c01100{bottom:803.837262px;}
.y6e_c01100{bottom:804.760761px;}
.y6d_c01100{bottom:805.940880px;}
.y6c_c01100{bottom:808.699068px;}
.y6b_c01100{bottom:811.500522px;}
.y6a_c01100{bottom:812.436513px;}
.y69_c01100{bottom:813.335526px;}
.y68_c01100{bottom:814.300971px;}
.y67_c01100{bottom:836.333436px;}
.y66_c01100{bottom:837.077190px;}
.y65_c01100{bottom:838.812297px;}
.y64_c01100{bottom:839.282613px;}
.y63_c01100{bottom:840.505956px;}
.y62_c01100{bottom:842.192916px;}
.y61_c01100{bottom:843.195885px;}
.y60_c01100{bottom:844.427511px;}
.y5f_c01100{bottom:845.370684px;}
.y5e_c01100{bottom:847.593795px;}
.y5d_c01100{bottom:848.560728px;}
.y5c_c01100{bottom:850.219539px;}
.y5b_c01100{bottom:870.776226px;}
.y5a_c01100{bottom:872.341860px;}
.y59_c01100{bottom:873.107757px;}
.y58_c01100{bottom:874.391550px;}
.y57_c01100{bottom:875.901399px;}
.y56_c01100{bottom:876.692259px;}
.y55_c01100{bottom:879.499299px;}
.y54_c01100{bottom:880.766658px;}
.y53_c01100{bottom:883.567494px;}
.y52_c01100{bottom:884.062077px;}
.y51_c01100{bottom:886.137291px;}
.y50_c01100{bottom:906.605964px;}
.y4f_c01100{bottom:907.860426px;}
.y4e_c01100{bottom:908.322327px;}
.y4d_c01100{bottom:910.041462px;}
.y4c_c01100{bottom:910.764789px;}
.y4b_c01100{bottom:911.763006px;}
.y4a_c01100{bottom:914.698620px;}
.y49_c01100{bottom:917.871636px;}
.y48_c01100{bottom:918.590871px;}
.y47_c01100{bottom:920.277435px;}
.y46_c01100{bottom:921.244500px;}
.y45_c01100{bottom:945.527340px;}
.y44_c01100{bottom:945.952770px;}
.y43_c01100{bottom:946.828800px;}
.y42_c01100{bottom:947.734950px;}
.y41_c01100{bottom:949.966650px;}
.y40_c01100{bottom:951.501120px;}
.y3f_c01100{bottom:952.159560px;}
.y3e_c01100{bottom:953.914650px;}
.y3d_c01100{bottom:954.604860px;}
.y3c_c01100{bottom:955.264500px;}
.y3b_c01100{bottom:976.999500px;}
.y3a_c01100{bottom:978.066000px;}
.y39_c01100{bottom:980.401500px;}
.y38_c01100{bottom:981.663000px;}
.y37_c01100{bottom:982.504500px;}
.y36_c01100{bottom:983.971500px;}
.y35_c01100{bottom:984.387000px;}
.y34_c01100{bottom:985.896000px;}
.y33_c01100{bottom:986.689500px;}
.y32_c01100{bottom:987.342000px;}
.y31_c01100{bottom:989.014500px;}
.y30_c01100{bottom:1013.565000px;}
.y2f_c01100{bottom:1014.159000px;}
.y2e_c01100{bottom:1014.732000px;}
.y2d_c01100{bottom:1016.248500px;}
.y2c_c01100{bottom:1016.827500px;}
.y2b_c01100{bottom:1018.140000px;}
.y2a_c01100{bottom:1019.655000px;}
.y29_c01100{bottom:1020.223500px;}
.y28_c01100{bottom:1021.908000px;}
.y27_c01100{bottom:1023.432000px;}
.y26_c01100{bottom:1024.363500px;}
.y25_c01100{bottom:1024.923000px;}
.y24_c01100{bottom:1049.598000px;}
.y23_c01100{bottom:1050.252000px;}
.y22_c01100{bottom:1052.250000px;}
.y21_c01100{bottom:1053.151500px;}
.y20_c01100{bottom:1055.118000px;}
.y1f_c01100{bottom:1055.575500px;}
.y1e_c01100{bottom:1056.672000px;}
.y1d_c01100{bottom:1057.357500px;}
.y1c_c01100{bottom:1058.892000px;}
.y1b_c01100{bottom:1059.556500px;}
.y1a_c01100{bottom:1061.106000px;}
.y19_c01100{bottom:1083.214500px;}
.y18_c01100{bottom:1084.482000px;}
.y17_c01100{bottom:1085.328000px;}
.y16_c01100{bottom:1087.257000px;}
.y15_c01100{bottom:1088.308500px;}
.y14_c01100{bottom:1088.920500px;}
.y13_c01100{bottom:1090.192500px;}
.y12_c01100{bottom:1090.858500px;}
.y11_c01100{bottom:1091.248500px;}
.y10_c01100{bottom:1093.174500px;}
.yf_c01100{bottom:1093.774500px;}
.ye_c01100{bottom:1095.036000px;}
.yd_c01100{bottom:1095.666000px;}
.yc_c01100{bottom:1118.733000px;}
.yb_c01100{bottom:1120.522500px;}
.ya_c01100{bottom:1122.099000px;}
.y9_c01100{bottom:1123.876500px;}
.y8_c01100{bottom:1124.296500px;}
.y7_c01100{bottom:1125.426000px;}
.y6_c01100{bottom:1127.208000px;}
.y5_c01100{bottom:1128.300000px;}
.y4_c01100{bottom:1129.108500px;}
.y3_c01100{bottom:1130.944500px;}
.y2_c01100{bottom:1131.846000px;}
.y1_c01100{bottom:1203.112500px;}
.he_c01100{height:54.025941px;}
.h6_c01100{height:66.015970px;}
.h3_c01100{height:72.000000px;}
.h5_c01100{height:72.014399px;}
.h7_c01100{height:72.017422px;}
.ha_c01100{height:72.026239px;}
.h4_c01100{height:78.000000px;}
.hf_c01100{height:78.024371px;}
.hb_c01100{height:78.028426px;}
.hd_c01100{height:78.037470px;}
.hc_c01100{height:84.030612px;}
.h11_c01100{height:90.018088px;}
.h8_c01100{height:90.021777px;}
.h9_c01100{height:90.032799px;}
.h10_c01100{height:96.019294px;}
.h2_c01100{height:120.000000px;}
.h0_c01100{height:1246.320000px;}
.h1_c01100{height:1246.500000px;}
.w0_c01100{width:927.450000px;}
.w1_c01100{width:927.750000px;}
.x0_c01100{left:0.000000px;}
.xdb_c01100{left:162.767649px;}
.xab_c01100{left:173.332436px;}
.xc6_c01100{left:174.492114px;}
.xcd_c01100{left:175.567968px;}
.xb9_c01100{left:177.019467px;}
.xb0_c01100{left:178.051047px;}
.x7f_c01100{left:179.160357px;}
.x9d_c01100{left:180.501614px;}
.x92_c01100{left:181.943528px;}
.x6d_c01100{left:182.996400px;}
.x74_c01100{left:184.295367px;}
.x46_c01100{left:185.753178px;}
.x33_c01100{left:188.206500px;}
.x20_c01100{left:189.307500px;}
.x3_c01100{left:190.609500px;}
.xdc_c01100{left:198.235278px;}
.xba_c01100{left:209.112984px;}
.xe5_c01100{left:217.376289px;}
.x34_c01100{left:221.188500px;}
.x21_c01100{left:222.229500px;}
.xe_c01100{left:224.092500px;}
.x93_c01100{left:225.309504px;}
.x3d_c01100{left:232.474500px;}
.x4_c01100{left:235.702500px;}
.x75_c01100{left:238.565283px;}
.x61_c01100{left:243.160215px;}
.xae_c01100{left:244.445297px;}
.xce_c01100{left:251.937272px;}
.x35_c01100{left:255.699000px;}
.x97_c01100{left:257.415699px;}
.x50_c01100{left:263.581044px;}
.x18_c01100{left:268.111500px;}
.x80_c01100{left:270.760328px;}
.x76_c01100{left:271.774065px;}
.x5a_c01100{left:274.574514px;}
.x47_c01100{left:275.988198px;}
.x22_c01100{left:277.047000px;}
.x8a_c01100{left:282.373391px;}
.xe0_c01100{left:283.419000px;}
.xcf_c01100{left:284.876099px;}
.xf_c01100{left:290.514000px;}
.x94_c01100{left:291.734618px;}
.x62_c01100{left:293.403000px;}
.x6e_c01100{left:295.831203px;}
.x48_c01100{left:297.514236px;}
.x19_c01100{left:301.318500px;}
.x98_c01100{left:302.322984px;}
.x51_c01100{left:307.532544px;}
.x3e_c01100{left:309.136500px;}
.x2b_c01100{left:311.353500px;}
.x5b_c01100{left:319.166004px;}
.xb6_c01100{left:320.711453px;}
.x10_c01100{left:322.072500px;}
.x99_c01100{left:323.674917px;}
.x81_c01100{left:326.293326px;}
.x5_c01100{left:327.477000px;}
.x63_c01100{left:329.008500px;}
.xbd_c01100{left:330.568575px;}
.x3f_c01100{left:341.829000px;}
.x36_c01100{left:343.453500px;}
.x64_c01100{left:349.834500px;}
.x2c_c01100{left:353.127000px;}
.xb1_c01100{left:354.879809px;}
.x95_c01100{left:357.717272px;}
.x82_c01100{left:359.022717px;}
.xd0_c01100{left:362.920781px;}
.xbe_c01100{left:364.034184px;}
.x23_c01100{left:366.670500px;}
.x6_c01100{left:367.933500px;}
.x77_c01100{left:370.689411px;}
.xd6_c01100{left:374.127000px;}
.x37_c01100{left:376.375500px;}
.x1a_c01100{left:378.037500px;}
.x65_c01100{left:383.608500px;}
.xaf_c01100{left:388.198409px;}
.x9a_c01100{left:390.945095px;}
.xe1_c01100{left:394.435500px;}
.xc7_c01100{left:395.707719px;}
.x9e_c01100{left:401.144114px;}
.x78_c01100{left:404.106734px;}
.xdd_c01100{left:407.568831px;}
.x52_c01100{left:408.583044px;}
.xa6_c01100{left:411.275679px;}
.x1b_c01100{left:412.324500px;}
.x1_c01100{left:414.450000px;}
.x6f_c01100{left:415.550802px;}
.xc8_c01100{left:418.046289px;}
.x49_c01100{left:419.299563px;}
.x7_c01100{left:422.544000px;}
.xd7_c01100{left:427.089000px;}
.xd1_c01100{left:429.075935px;}
.xb2_c01100{left:431.265243px;}
.x2d_c01100{left:432.561000px;}
.x9f_c01100{left:434.721614px;}
.x2_c01100{left:436.320000px;}
.x79_c01100{left:438.428597px;}
.x11_c01100{left:443.926500px;}
.x66_c01100{left:449.493000px;}
.x53_c01100{left:451.454544px;}
.x38_c01100{left:453.099000px;}
.x2e_c01100{left:454.438500px;}
.xa7_c01100{left:455.506743px;}
.xa0_c01100{left:457.320614px;}
.xde_c01100{left:460.501775px;}
.xbf_c01100{left:462.176552px;}
.xb7_c01100{left:464.326800px;}
.x24_c01100{left:465.768000px;}
.x1c_c01100{left:467.139000px;}
.x83_c01100{left:469.190174px;}
.x4a_c01100{left:474.382842px;}
.x12_c01100{left:478.968000px;}
.x8b_c01100{left:480.364391px;}
.x67_c01100{left:481.758000px;}
.x40_c01100{left:486.057000px;}
.x1d_c01100{left:490.036500px;}
.xe6_c01100{left:492.864923px;}
.xd8_c01100{left:494.370000px;}
.xc0_c01100{left:496.159620px;}
.xb8_c01100{left:497.540691px;}
.x25_c01100{left:499.248000px;}
.x84_c01100{left:503.469105px;}
.x54_c01100{left:507.437544px;}
.x8_c01100{left:511.624500px;}
.xd2_c01100{left:516.361388px;}
.x9b_c01100{left:522.626531px;}
.x8c_c01100{left:524.555891px;}
.x70_c01100{left:525.755619px;}
.xd9_c01100{left:527.589000px;}
.xc9_c01100{left:529.032801px;}
.x2f_c01100{left:531.661500px;}
.x68_c01100{left:538.633500px;}
.xa8_c01100{left:544.067912px;}
.x13_c01100{left:545.919000px;}
.x7a_c01100{left:548.068010px;}
.x55_c01100{left:553.027044px;}
.x8d_c01100{left:556.703891px;}
.xc1_c01100{left:563.330798px;}
.x39_c01100{left:564.684000px;}
.x9_c01100{left:568.123500px;}
.x30_c01100{left:575.941500px;}
.x14_c01100{left:578.115000px;}
.x7b_c01100{left:581.552832px;}
.x5c_c01100{left:583.882812px;}
.xb3_c01100{left:586.083572px;}
.xa_c01100{left:589.110000px;}
.x69_c01100{left:594.517500px;}
.x4b_c01100{left:596.450169px;}
.xa1_c01100{left:599.639114px;}
.x71_c01100{left:604.359983px;}
.xd3_c01100{left:607.227017px;}
.x3a_c01100{left:609.991500px;}
.x7c_c01100{left:613.701074px;}
.x41_c01100{left:619.494000px;}
.xa9_c01100{left:621.856689px;}
.x9c_c01100{left:624.155777px;}
.xe7_c01100{left:626.013875px;}
.x6a_c01100{left:627.759000px;}
.x56_c01100{left:629.707044px;}
.x4c_c01100{left:630.829410px;}
.x15_c01100{left:633.424500px;}
.x72_c01100{left:637.045139px;}
.xda_c01100{left:638.614500px;}
.x5d_c01100{left:640.048533px;}
.x31_c01100{left:642.322500px;}
.x8e_c01100{left:645.815891px;}
.xdf_c01100{left:650.136792px;}
.xc2_c01100{left:651.750408px;}
.x3b_c01100{left:653.793000px;}
.xa2_c01100{left:655.334114px;}
.x85_c01100{left:657.959736px;}
.xe8_c01100{left:659.640314px;}
.xe2_c01100{left:660.757766px;}
.xbb_c01100{left:663.889439px;}
.x26_c01100{left:665.583000px;}
.xca_c01100{left:672.475830px;}
.x3c_c01100{left:675.064500px;}
.xb_c01100{left:677.953500px;}
.x8f_c01100{left:680.122391px;}
.x5e_c01100{left:684.003990px;}
.x57_c01100{left:685.313544px;}
.x86_c01100{left:691.457127px;}
.x4d_c01100{left:696.457458px;}
.x42_c01100{left:697.746000px;}
.x27_c01100{left:699.607500px;}
.xe3_c01100{left:704.317662px;}
.x58_c01100{left:706.691544px;}
.xa3_c01100{left:710.927114px;}
.x73_c01100{left:714.888840px;}
.x5f_c01100{left:717.534216px;}
.xbc_c01100{left:719.264945px;}
.xaa_c01100{left:721.878789px;}
.xd4_c01100{left:727.778256px;}
.xb4_c01100{left:731.156684px;}
.x1e_c01100{left:733.306500px;}
.x16_c01100{left:734.989500px;}
.x87_c01100{left:736.305342px;}
.x6b_c01100{left:738.462000px;}
.xc3_c01100{left:740.356019px;}
.xa4_c01100{left:744.446114px;}
.x4e_c01100{left:752.287737px;}
.xac_c01100{left:754.558283px;}
.xc_c01100{left:756.816000px;}
.x90_c01100{left:758.801891px;}
.xb5_c01100{left:764.652293px;}
.x1f_c01100{left:765.973500px;}
.x96_c01100{left:769.601940px;}
.x43_c01100{left:775.888500px;}
.x17_c01100{left:779.487000px;}
.x7d_c01100{left:781.765646px;}
.xcb_c01100{left:784.330761px;}
.x4f_c01100{left:785.600511px;}
.x28_c01100{left:788.782500px;}
.x91_c01100{left:792.349391px;}
.x44_c01100{left:796.884000px;}
.xc4_c01100{left:805.292277px;}
.xa5_c01100{left:811.665614px;}
.x88_c01100{left:814.749948px;}
.xcc_c01100{left:816.736278px;}
.x59_c01100{left:819.367044px;}
.x32_c01100{left:821.365500px;}
.x29_c01100{left:822.477000px;}
.xe4_c01100{left:825.893964px;}
.x6c_c01100{left:827.368500px;}
.xd5_c01100{left:831.164873px;}
.xad_c01100{left:833.392035px;}
.xd_c01100{left:846.328500px;}
.x89_c01100{left:848.454339px;}
.x60_c01100{left:852.609186px;}
.x45_c01100{left:853.905000px;}
.x2a_c01100{left:857.383500px;}
.x7e_c01100{left:859.843358px;}
.xc5_c01100{left:863.559698px;}
@media print{
.v0_c01100{vertical-align:0.000000pt;}
.ls0_c01100{letter-spacing:0.000000pt;}
.ws0_c01100{word-spacing:0.000000pt;}
.fsc_c01100{font-size:48.023058pt;}
.fs4_c01100{font-size:58.680862pt;}
.fs1_c01100{font-size:64.000000pt;}
.fs3_c01100{font-size:64.012799pt;}
.fs5_c01100{font-size:64.015486pt;}
.fs8_c01100{font-size:64.023324pt;}
.fs2_c01100{font-size:69.333333pt;}
.fsd_c01100{font-size:69.354997pt;}
.fs9_c01100{font-size:69.358601pt;}
.fsb_c01100{font-size:69.366640pt;}
.fsa_c01100{font-size:74.693878pt;}
.fsf_c01100{font-size:80.016078pt;}
.fs6_c01100{font-size:80.019358pt;}
.fs7_c01100{font-size:80.029155pt;}
.fse_c01100{font-size:85.350484pt;}
.fs0_c01100{font-size:106.666667pt;}
.y0_c01100{bottom:0.000000pt;}
.y15f_c01100{bottom:16.508644pt;}
.y15e_c01100{bottom:17.646268pt;}
.y15d_c01100{bottom:19.130349pt;}
.y15c_c01100{bottom:20.286557pt;}
.y15b_c01100{bottom:22.149625pt;}
.y155_c01100{bottom:25.177099pt;}
.y15a_c01100{bottom:25.178585pt;}
.y159_c01100{bottom:26.283132pt;}
.y158_c01100{bottom:27.782295pt;}
.y154_c01100{bottom:28.106188pt;}
.y157_c01100{bottom:28.878072pt;}
.y153_c01100{bottom:30.477723pt;}
.y156_c01100{bottom:31.467589pt;}
.y152_c01100{bottom:32.376897pt;}
.y151_c01100{bottom:34.834084pt;}
.y150_c01100{bottom:38.245333pt;}
.y14f_c01100{bottom:41.940667pt;}
.y14e_c01100{bottom:44.407700pt;}
.y14d_c01100{bottom:46.808000pt;}
.y14c_c01100{bottom:65.704041pt;}
.y14b_c01100{bottom:67.459332pt;}
.y14a_c01100{bottom:69.888603pt;}
.y149_c01100{bottom:70.930036pt;}
.y148_c01100{bottom:71.603520pt;}
.y147_c01100{bottom:72.653727pt;}
.y146_c01100{bottom:73.250297pt;}
.y145_c01100{bottom:74.310145pt;}
.y144_c01100{bottom:76.788067pt;}
.y143_c01100{bottom:79.763315pt;}
.y142_c01100{bottom:80.866099pt;}
.y141_c01100{bottom:99.536388pt;}
.y140_c01100{bottom:100.749687pt;}
.y13f_c01100{bottom:102.595757pt;}
.y13e_c01100{bottom:103.511125pt;}
.y13d_c01100{bottom:104.076979pt;}
.y13c_c01100{bottom:105.365091pt;}
.y13b_c01100{bottom:105.879897pt;}
.y13a_c01100{bottom:106.824488pt;}
.y139_c01100{bottom:109.034705pt;}
.y138_c01100{bottom:112.330667pt;}
.y137_c01100{bottom:139.779163pt;}
.y136_c01100{bottom:142.536643pt;}
.y135_c01100{bottom:143.381035pt;}
.y134_c01100{bottom:145.751440pt;}
.y133_c01100{bottom:148.175059pt;}
.y132_c01100{bottom:149.896643pt;}
.y131_c01100{bottom:150.502079pt;}
.y130_c01100{bottom:152.265931pt;}
.y12f_c01100{bottom:154.347155pt;}
.y12e_c01100{bottom:155.225751pt;}
.y12d_c01100{bottom:157.262763pt;}
.y12c_c01100{bottom:170.270896pt;}
.y12b_c01100{bottom:171.256127pt;}
.y12a_c01100{bottom:172.148609pt;}
.y129_c01100{bottom:175.230751pt;}
.y128_c01100{bottom:176.138644pt;}
.y127_c01100{bottom:178.238399pt;}
.y126_c01100{bottom:179.183088pt;}
.y125_c01100{bottom:180.105275pt;}
.y124_c01100{bottom:182.241719pt;}
.y123_c01100{bottom:182.857903pt;}
.y122_c01100{bottom:185.263805pt;}
.y121_c01100{bottom:188.954317pt;}
.y120_c01100{bottom:202.581336pt;}
.y11f_c01100{bottom:204.031792pt;}
.y11e_c01100{bottom:205.647637pt;}
.y11d_c01100{bottom:207.039627pt;}
.y11c_c01100{bottom:207.852896pt;}
.y11b_c01100{bottom:209.521304pt;}
.y11a_c01100{bottom:210.053691pt;}
.y119_c01100{bottom:211.725843pt;}
.y118_c01100{bottom:212.572125pt;}
.y117_c01100{bottom:215.014272pt;}
.y116_c01100{bottom:215.846801pt;}
.y115_c01100{bottom:218.300325pt;}
.y114_c01100{bottom:219.683459pt;}
.y113_c01100{bottom:236.084999pt;}
.y112_c01100{bottom:237.947231pt;}
.y111_c01100{bottom:238.833629pt;}
.y110_c01100{bottom:240.360119pt;}
.y10f_c01100{bottom:243.404167pt;}
.y10e_c01100{bottom:244.693133pt;}
.y10d_c01100{bottom:245.554904pt;}
.y10c_c01100{bottom:247.335225pt;}
.y10b_c01100{bottom:249.572553pt;}
.y10a_c01100{bottom:251.058501pt;}
.y109_c01100{bottom:252.890597pt;}
.y108_c01100{bottom:253.775592pt;}
.y107_c01100{bottom:268.758237pt;}
.y106_c01100{bottom:269.795249pt;}
.y105_c01100{bottom:273.632269pt;}
.y104_c01100{bottom:275.181613pt;}
.y103_c01100{bottom:275.949392pt;}
.y102_c01100{bottom:278.740149pt;}
.y101_c01100{bottom:279.269401pt;}
.y100_c01100{bottom:281.549013pt;}
.yff_c01100{bottom:282.584657pt;}
.yfe_c01100{bottom:299.677449pt;}
.yfd_c01100{bottom:300.510699pt;}
.yfc_c01100{bottom:302.729457pt;}
.yfb_c01100{bottom:304.120547pt;}
.yfa_c01100{bottom:305.464943pt;}
.yf9_c01100{bottom:307.973620pt;}
.yf8_c01100{bottom:309.874920pt;}
.yf7_c01100{bottom:310.707989pt;}
.yf6_c01100{bottom:312.360484pt;}
.yf5_c01100{bottom:314.274924pt;}
.yf4_c01100{bottom:328.466931pt;}
.yf3_c01100{bottom:331.446181pt;}
.yf2_c01100{bottom:332.292464pt;}
.yf1_c01100{bottom:334.500099pt;}
.yf0_c01100{bottom:335.616067pt;}
.yef_c01100{bottom:336.463249pt;}
.yee_c01100{bottom:339.523647pt;}
.yed_c01100{bottom:340.031157pt;}
.yec_c01100{bottom:342.783096pt;}
.yeb_c01100{bottom:343.609325pt;}
.yea_c01100{bottom:345.248320pt;}
.ye9_c01100{bottom:362.988351pt;}
.ye8_c01100{bottom:363.991483pt;}
.ye7_c01100{bottom:364.740259pt;}
.ye6_c01100{bottom:366.722224pt;}
.ye5_c01100{bottom:367.701417pt;}
.ye4_c01100{bottom:368.408041pt;}
.ye3_c01100{bottom:369.417473pt;}
.ye2_c01100{bottom:372.382196pt;}
.ye1_c01100{bottom:375.541340pt;}
.ye0_c01100{bottom:376.271361pt;}
.ydf_c01100{bottom:377.656927pt;}
.yde_c01100{bottom:395.641100pt;}
.ydd_c01100{bottom:397.778729pt;}
.ydc_c01100{bottom:399.214589pt;}
.ydb_c01100{bottom:399.912399pt;}
.yda_c01100{bottom:401.572512pt;}
.yd9_c01100{bottom:403.461808pt;}
.yd8_c01100{bottom:404.405935pt;}
.yd7_c01100{bottom:405.328536pt;}
.yd6_c01100{bottom:406.972415pt;}
.yd5_c01100{bottom:408.395497pt;}
.yd4_c01100{bottom:409.350783pt;}
.yd3_c01100{bottom:425.417549pt;}
.yd2_c01100{bottom:427.030817pt;}
.yd1_c01100{bottom:427.835273pt;}
.yd0_c01100{bottom:429.169505pt;}
.ycf_c01100{bottom:430.506185pt;}
.yce_c01100{bottom:433.150277pt;}
.ycd_c01100{bottom:433.921829pt;}
.ycc_c01100{bottom:434.464205pt;}
.ycb_c01100{bottom:435.270065pt;}
.yca_c01100{bottom:437.131085pt;}
.yc9_c01100{bottom:438.460241pt;}
.yc8_c01100{bottom:440.565485pt;}
.yc7_c01100{bottom:455.665543pt;}
.yc6_c01100{bottom:458.171880pt;}
.yc5_c01100{bottom:458.729684pt;}
.yc4_c01100{bottom:461.468769pt;}
.yc3_c01100{bottom:463.169615pt;}
.yc2_c01100{bottom:463.996204pt;}
.yc1_c01100{bottom:466.764847pt;}
.yc0_c01100{bottom:467.273977pt;}
.ybf_c01100{bottom:468.948505pt;}
.ybe_c01100{bottom:469.479632pt;}
.ybd_c01100{bottom:470.597436pt;}
.ybc_c01100{bottom:471.118987pt;}
.ybb_c01100{bottom:472.498736pt;}
.yba_c01100{bottom:487.870229pt;}
.yb9_c01100{bottom:488.768411pt;}
.yb8_c01100{bottom:489.957357pt;}
.yb7_c01100{bottom:492.367655pt;}
.yb6_c01100{bottom:493.274801pt;}
.yb5_c01100{bottom:495.319661pt;}
.yb4_c01100{bottom:496.515233pt;}
.yb3_c01100{bottom:499.481533pt;}
.yb2_c01100{bottom:500.940723pt;}
.yb1_c01100{bottom:501.793864pt;}
.yb0_c01100{bottom:502.700435pt;}
.yaf_c01100{bottom:504.472100pt;}
.yae_c01100{bottom:505.628968pt;}
.yad_c01100{bottom:520.402236pt;}
.yac_c01100{bottom:521.212812pt;}
.yab_c01100{bottom:521.729628pt;}
.yaa_c01100{bottom:522.534768pt;}
.ya9_c01100{bottom:524.423076pt;}
.ya8_c01100{bottom:525.246432pt;}
.ya7_c01100{bottom:527.385120pt;}
.ya6_c01100{bottom:528.156672pt;}
.ya5_c01100{bottom:529.217268pt;}
.ya4_c01100{bottom:532.141656pt;}
.ya3_c01100{bottom:532.931928pt;}
.ya2_c01100{bottom:533.969052pt;}
.ya1_c01100{bottom:536.361756pt;}
.ya0_c01100{bottom:550.988071pt;}
.y9f_c01100{bottom:551.767621pt;}
.y9e_c01100{bottom:553.580908pt;}
.y9d_c01100{bottom:554.617236pt;}
.y9c_c01100{bottom:555.391819pt;}
.y9b_c01100{bottom:557.177819pt;}
.y9a_c01100{bottom:558.963495pt;}
.y99_c01100{bottom:559.755500pt;}
.y98_c01100{bottom:562.302115pt;}
.y97_c01100{bottom:563.058265pt;}
.y96_c01100{bottom:564.341688pt;}
.y95_c01100{bottom:566.458695pt;}
.y94_c01100{bottom:582.573943pt;}
.y93_c01100{bottom:584.309040pt;}
.y92_c01100{bottom:585.286289pt;}
.y91_c01100{bottom:588.043705pt;}
.y90_c01100{bottom:588.757888pt;}
.y8f_c01100{bottom:589.501480pt;}
.y8e_c01100{bottom:591.938017pt;}
.y8d_c01100{bottom:592.700364pt;}
.y8c_c01100{bottom:593.442336pt;}
.y8b_c01100{bottom:595.640176pt;}
.y8a_c01100{bottom:596.378477pt;}
.y89_c01100{bottom:597.584885pt;}
.y88_c01100{bottom:617.088969pt;}
.y87_c01100{bottom:619.096923pt;}
.y86_c01100{bottom:620.480819pt;}
.y85_c01100{bottom:621.062448pt;}
.y84_c01100{bottom:622.459263pt;}
.y83_c01100{bottom:624.418345pt;}
.y82_c01100{bottom:625.999093pt;}
.y81_c01100{bottom:626.547073pt;}
.y80_c01100{bottom:628.553264pt;}
.y7f_c01100{bottom:646.712828pt;}
.y7e_c01100{bottom:648.846584pt;}
.y7d_c01100{bottom:651.503456pt;}
.y7c_c01100{bottom:652.301252pt;}
.y7b_c01100{bottom:653.642468pt;}
.y7a_c01100{bottom:655.007480pt;}
.y79_c01100{bottom:655.781840pt;}
.y78_c01100{bottom:657.363068pt;}
.y77_c01100{bottom:658.173644pt;}
.y76_c01100{bottom:658.673468pt;}
.y75_c01100{bottom:659.528000pt;}
.y74_c01100{bottom:690.227032pt;}
.y73_c01100{bottom:692.146765pt;}
.y72_c01100{bottom:711.374248pt;}
.y71_c01100{bottom:712.009712pt;}
.y70_c01100{bottom:713.895656pt;}
.y6f_c01100{bottom:714.522011pt;}
.y6e_c01100{bottom:715.342899pt;}
.y6d_c01100{bottom:716.391893pt;}
.y6c_c01100{bottom:718.843616pt;}
.y6b_c01100{bottom:721.333797pt;}
.y6a_c01100{bottom:722.165789pt;}
.y69_c01100{bottom:722.964912pt;}
.y68_c01100{bottom:723.823085pt;}
.y67_c01100{bottom:743.407499pt;}
.y66_c01100{bottom:744.068613pt;}
.y65_c01100{bottom:745.610931pt;}
.y64_c01100{bottom:746.028989pt;}
.y63_c01100{bottom:747.116405pt;}
.y62_c01100{bottom:748.615925pt;}
.y61_c01100{bottom:749.507453pt;}
.y60_c01100{bottom:750.602232pt;}
.y5f_c01100{bottom:751.440608pt;}
.y5e_c01100{bottom:753.416707pt;}
.y5d_c01100{bottom:754.276203pt;}
.y5c_c01100{bottom:755.750701pt;}
.y5b_c01100{bottom:774.023312pt;}
.y5a_c01100{bottom:775.414987pt;}
.y59_c01100{bottom:776.095784pt;}
.y58_c01100{bottom:777.236933pt;}
.y57_c01100{bottom:778.579021pt;}
.y56_c01100{bottom:779.282008pt;}
.y55_c01100{bottom:781.777155pt;}
.y54_c01100{bottom:782.903696pt;}
.y53_c01100{bottom:785.393328pt;}
.y52_c01100{bottom:785.832957pt;}
.y51_c01100{bottom:787.677592pt;}
.y50_c01100{bottom:805.871968pt;}
.y4f_c01100{bottom:806.987045pt;}
.y4e_c01100{bottom:807.397624pt;}
.y4d_c01100{bottom:808.925744pt;}
.y4c_c01100{bottom:809.568701pt;}
.y4b_c01100{bottom:810.456005pt;}
.y4a_c01100{bottom:813.065440pt;}
.y49_c01100{bottom:815.885899pt;}
.y48_c01100{bottom:816.525219pt;}
.y47_c01100{bottom:818.024387pt;}
.y46_c01100{bottom:818.884000pt;}
.y45_c01100{bottom:840.468747pt;}
.y44_c01100{bottom:840.846907pt;}
.y43_c01100{bottom:841.625600pt;}
.y42_c01100{bottom:842.431067pt;}
.y41_c01100{bottom:844.414800pt;}
.y40_c01100{bottom:845.778773pt;}
.y3f_c01100{bottom:846.364053pt;}
.y3e_c01100{bottom:847.924133pt;}
.y3d_c01100{bottom:848.537653pt;}
.y3c_c01100{bottom:849.124000pt;}
.y3b_c01100{bottom:868.444000pt;}
.y3a_c01100{bottom:869.392000pt;}
.y39_c01100{bottom:871.468000pt;}
.y38_c01100{bottom:872.589333pt;}
.y37_c01100{bottom:873.337333pt;}
.y36_c01100{bottom:874.641333pt;}
.y35_c01100{bottom:875.010667pt;}
.y34_c01100{bottom:876.352000pt;}
.y33_c01100{bottom:877.057333pt;}
.y32_c01100{bottom:877.637333pt;}
.y31_c01100{bottom:879.124000pt;}
.y30_c01100{bottom:900.946667pt;}
.y2f_c01100{bottom:901.474667pt;}
.y2e_c01100{bottom:901.984000pt;}
.y2d_c01100{bottom:903.332000pt;}
.y2c_c01100{bottom:903.846667pt;}
.y2b_c01100{bottom:905.013333pt;}
.y2a_c01100{bottom:906.360000pt;}
.y29_c01100{bottom:906.865333pt;}
.y28_c01100{bottom:908.362667pt;}
.y27_c01100{bottom:909.717333pt;}
.y26_c01100{bottom:910.545333pt;}
.y25_c01100{bottom:911.042667pt;}
.y24_c01100{bottom:932.976000pt;}
.y23_c01100{bottom:933.557333pt;}
.y22_c01100{bottom:935.333333pt;}
.y21_c01100{bottom:936.134667pt;}
.y20_c01100{bottom:937.882667pt;}
.y1f_c01100{bottom:938.289333pt;}
.y1e_c01100{bottom:939.264000pt;}
.y1d_c01100{bottom:939.873333pt;}
.y1c_c01100{bottom:941.237333pt;}
.y1b_c01100{bottom:941.828000pt;}
.y1a_c01100{bottom:943.205333pt;}
.y19_c01100{bottom:962.857333pt;}
.y18_c01100{bottom:963.984000pt;}
.y17_c01100{bottom:964.736000pt;}
.y16_c01100{bottom:966.450667pt;}
.y15_c01100{bottom:967.385333pt;}
.y14_c01100{bottom:967.929333pt;}
.y13_c01100{bottom:969.060000pt;}
.y12_c01100{bottom:969.652000pt;}
.y11_c01100{bottom:969.998667pt;}
.y10_c01100{bottom:971.710667pt;}
.yf_c01100{bottom:972.244000pt;}
.ye_c01100{bottom:973.365333pt;}
.yd_c01100{bottom:973.925333pt;}
.yc_c01100{bottom:994.429333pt;}
.yb_c01100{bottom:996.020000pt;}
.ya_c01100{bottom:997.421333pt;}
.y9_c01100{bottom:999.001333pt;}
.y8_c01100{bottom:999.374667pt;}
.y7_c01100{bottom:1000.378667pt;}
.y6_c01100{bottom:1001.962667pt;}
.y5_c01100{bottom:1002.933333pt;}
.y4_c01100{bottom:1003.652000pt;}
.y3_c01100{bottom:1005.284000pt;}
.y2_c01100{bottom:1006.085333pt;}
.y1_c01100{bottom:1069.433333pt;}
.he_c01100{height:48.023058pt;}
.h6_c01100{height:58.680862pt;}
.h3_c01100{height:64.000000pt;}
.h5_c01100{height:64.012799pt;}
.h7_c01100{height:64.015486pt;}
.ha_c01100{height:64.023324pt;}
.h4_c01100{height:69.333333pt;}
.hf_c01100{height:69.354997pt;}
.hb_c01100{height:69.358601pt;}
.hd_c01100{height:69.366640pt;}
.hc_c01100{height:74.693878pt;}
.h11_c01100{height:80.016078pt;}
.h8_c01100{height:80.019358pt;}
.h9_c01100{height:80.029155pt;}
.h10_c01100{height:85.350484pt;}
.h2_c01100{height:106.666667pt;}
.h0_c01100{height:1107.840000pt;}
.h1_c01100{height:1108.000000pt;}
.w0_c01100{width:824.400000pt;}
.w1_c01100{width:824.666667pt;}
.x0_c01100{left:0.000000pt;}
.xdb_c01100{left:144.682355pt;}
.xab_c01100{left:154.073276pt;}
.xc6_c01100{left:155.104101pt;}
.xcd_c01100{left:156.060416pt;}
.xb9_c01100{left:157.350637pt;}
.xb0_c01100{left:158.267597pt;}
.x7f_c01100{left:159.253651pt;}
.x9d_c01100{left:160.445879pt;}
.x92_c01100{left:161.727580pt;}
.x6d_c01100{left:162.663467pt;}
.x74_c01100{left:163.818104pt;}
.x46_c01100{left:165.113936pt;}
.x33_c01100{left:167.294667pt;}
.x20_c01100{left:168.273333pt;}
.x3_c01100{left:169.430667pt;}
.xdc_c01100{left:176.209136pt;}
.xba_c01100{left:185.878208pt;}
.xe5_c01100{left:193.223368pt;}
.x34_c01100{left:196.612000pt;}
.x21_c01100{left:197.537333pt;}
.xe_c01100{left:199.193333pt;}
.x93_c01100{left:200.275115pt;}
.x3d_c01100{left:206.644000pt;}
.x4_c01100{left:209.513333pt;}
.x75_c01100{left:212.058029pt;}
.x61_c01100{left:216.142413pt;}
.xae_c01100{left:217.284708pt;}
.xce_c01100{left:223.944241pt;}
.x35_c01100{left:227.288000pt;}
.x97_c01100{left:228.813955pt;}
.x50_c01100{left:234.294261pt;}
.x18_c01100{left:238.321333pt;}
.x80_c01100{left:240.675847pt;}
.x76_c01100{left:241.576947pt;}
.x5a_c01100{left:244.066235pt;}
.x47_c01100{left:245.322843pt;}
.x22_c01100{left:246.264000pt;}
.x8a_c01100{left:250.998569pt;}
.xe0_c01100{left:251.928000pt;}
.xcf_c01100{left:253.223199pt;}
.xf_c01100{left:258.234667pt;}
.x94_c01100{left:259.319660pt;}
.x62_c01100{left:260.802667pt;}
.x6e_c01100{left:262.961069pt;}
.x48_c01100{left:264.457099pt;}
.x19_c01100{left:267.838667pt;}
.x98_c01100{left:268.731541pt;}
.x51_c01100{left:273.362261pt;}
.x3e_c01100{left:274.788000pt;}
.x2b_c01100{left:276.758667pt;}
.x5b_c01100{left:283.703115pt;}
.xb6_c01100{left:285.076847pt;}
.x10_c01100{left:286.286667pt;}
.x99_c01100{left:287.711037pt;}
.x81_c01100{left:290.038512pt;}
.x5_c01100{left:291.090667pt;}
.x63_c01100{left:292.452000pt;}
.xbd_c01100{left:293.838733pt;}
.x3f_c01100{left:303.848000pt;}
.x36_c01100{left:305.292000pt;}
.x64_c01100{left:310.964000pt;}
.x2c_c01100{left:313.890667pt;}
.xb1_c01100{left:315.448719pt;}
.x95_c01100{left:317.970908pt;}
.x82_c01100{left:319.131304pt;}
.xd0_c01100{left:322.596249pt;}
.xbe_c01100{left:323.585941pt;}
.x23_c01100{left:325.929333pt;}
.x6_c01100{left:327.052000pt;}
.x77_c01100{left:329.501699pt;}
.xd6_c01100{left:332.557333pt;}
.x37_c01100{left:334.556000pt;}
.x1a_c01100{left:336.033333pt;}
.x65_c01100{left:340.985333pt;}
.xaf_c01100{left:345.065252pt;}
.x9a_c01100{left:347.506751pt;}
.xe1_c01100{left:350.609333pt;}
.xc7_c01100{left:351.740195pt;}
.x9e_c01100{left:356.572545pt;}
.x78_c01100{left:359.205985pt;}
.xdd_c01100{left:362.283405pt;}
.x52_c01100{left:363.184928pt;}
.xa6_c01100{left:365.578381pt;}
.x1b_c01100{left:366.510667pt;}
.x1_c01100{left:368.400000pt;}
.x6f_c01100{left:369.378491pt;}
.xc8_c01100{left:371.596701pt;}
.x49_c01100{left:372.710723pt;}
.x7_c01100{left:375.594667pt;}
.xd7_c01100{left:379.634667pt;}
.xd1_c01100{left:381.400831pt;}
.xb2_c01100{left:383.346883pt;}
.x2d_c01100{left:384.498667pt;}
.x9f_c01100{left:386.419212pt;}
.x2_c01100{left:387.840000pt;}
.x79_c01100{left:389.714308pt;}
.x11_c01100{left:394.601333pt;}
.x66_c01100{left:399.549333pt;}
.x53_c01100{left:401.292928pt;}
.x38_c01100{left:402.754667pt;}
.x2e_c01100{left:403.945333pt;}
.xa7_c01100{left:404.894883pt;}
.xa0_c01100{left:406.507212pt;}
.xde_c01100{left:409.334911pt;}
.xbf_c01100{left:410.823601pt;}
.xb7_c01100{left:412.734933pt;}
.x24_c01100{left:414.016000pt;}
.x1c_c01100{left:415.234667pt;}
.x83_c01100{left:417.057932pt;}
.x4a_c01100{left:421.673637pt;}
.x12_c01100{left:425.749333pt;}
.x8b_c01100{left:426.990569pt;}
.x67_c01100{left:428.229333pt;}
.x40_c01100{left:432.050667pt;}
.x1d_c01100{left:435.588000pt;}
.xe6_c01100{left:438.102153pt;}
.xd8_c01100{left:439.440000pt;}
.xc0_c01100{left:441.030773pt;}
.xb8_c01100{left:442.258392pt;}
.x25_c01100{left:443.776000pt;}
.x84_c01100{left:447.528093pt;}
.x54_c01100{left:451.055595pt;}
.x8_c01100{left:454.777333pt;}
.xd2_c01100{left:458.987900pt;}
.x9b_c01100{left:464.556916pt;}
.x8c_c01100{left:466.271903pt;}
.x70_c01100{left:467.338328pt;}
.xd9_c01100{left:468.968000pt;}
.xc9_c01100{left:470.251379pt;}
.x2f_c01100{left:472.588000pt;}
.x68_c01100{left:478.785333pt;}
.xa8_c01100{left:483.615921pt;}
.x13_c01100{left:485.261333pt;}
.x7a_c01100{left:487.171564pt;}
.x55_c01100{left:491.579595pt;}
.x8d_c01100{left:494.847903pt;}
.xc1_c01100{left:500.738487pt;}
.x39_c01100{left:501.941333pt;}
.x9_c01100{left:504.998667pt;}
.x30_c01100{left:511.948000pt;}
.x14_c01100{left:513.880000pt;}
.x7b_c01100{left:516.935851pt;}
.x5c_c01100{left:519.006944pt;}
.xb3_c01100{left:520.963175pt;}
.xa_c01100{left:523.653333pt;}
.x69_c01100{left:528.460000pt;}
.x4b_c01100{left:530.177928pt;}
.xa1_c01100{left:533.012545pt;}
.x71_c01100{left:537.208873pt;}
.xd3_c01100{left:539.757348pt;}
.x3a_c01100{left:542.214667pt;}
.x7c_c01100{left:545.512065pt;}
.x41_c01100{left:550.661333pt;}
.xa9_c01100{left:552.761501pt;}
.x9c_c01100{left:554.805135pt;}
.xe7_c01100{left:556.456777pt;}
.x6a_c01100{left:558.008000pt;}
.x56_c01100{left:559.739595pt;}
.x4c_c01100{left:560.737253pt;}
.x15_c01100{left:563.044000pt;}
.x72_c01100{left:566.262345pt;}
.xda_c01100{left:567.657333pt;}
.x5d_c01100{left:568.932029pt;}
.x31_c01100{left:570.953333pt;}
.x8e_c01100{left:574.058569pt;}
.xdf_c01100{left:577.899371pt;}
.xc2_c01100{left:579.333696pt;}
.x3b_c01100{left:581.149333pt;}
.xa2_c01100{left:582.519212pt;}
.x85_c01100{left:584.853099pt;}
.xe8_c01100{left:586.346945pt;}
.xe2_c01100{left:587.340236pt;}
.xbb_c01100{left:590.123945pt;}
.x26_c01100{left:591.629333pt;}
.xca_c01100{left:597.756293pt;}
.x3c_c01100{left:600.057333pt;}
.xb_c01100{left:602.625333pt;}
.x8f_c01100{left:604.553236pt;}
.x5e_c01100{left:608.003547pt;}
.x57_c01100{left:609.167595pt;}
.x86_c01100{left:614.628557pt;}
.x4d_c01100{left:619.073296pt;}
.x42_c01100{left:620.218667pt;}
.x27_c01100{left:621.873333pt;}
.xe3_c01100{left:626.060144pt;}
.x58_c01100{left:628.170261pt;}
.xa3_c01100{left:631.935212pt;}
.x73_c01100{left:635.456747pt;}
.x5f_c01100{left:637.808192pt;}
.xbc_c01100{left:639.346617pt;}
.xaa_c01100{left:641.670035pt;}
.xd4_c01100{left:646.914005pt;}
.xb4_c01100{left:649.917052pt;}
.x1e_c01100{left:651.828000pt;}
.x16_c01100{left:653.324000pt;}
.x87_c01100{left:654.493637pt;}
.x6b_c01100{left:656.410667pt;}
.xc3_c01100{left:658.094239pt;}
.xa4_c01100{left:661.729879pt;}
.x4e_c01100{left:668.700211pt;}
.xac_c01100{left:670.718473pt;}
.xc_c01100{left:672.725333pt;}
.x90_c01100{left:674.490569pt;}
.xb5_c01100{left:679.690927pt;}
.x1f_c01100{left:680.865333pt;}
.x96_c01100{left:684.090613pt;}
.x43_c01100{left:689.678667pt;}
.x17_c01100{left:692.877333pt;}
.x7d_c01100{left:694.902796pt;}
.xcb_c01100{left:697.182899pt;}
.x4f_c01100{left:698.311565pt;}
.x28_c01100{left:701.140000pt;}
.x91_c01100{left:704.310569pt;}
.x44_c01100{left:708.341333pt;}
.xc4_c01100{left:715.815357pt;}
.xa5_c01100{left:721.480545pt;}
.x88_c01100{left:724.222176pt;}
.xcc_c01100{left:725.987803pt;}
.x59_c01100{left:728.326261pt;}
.x32_c01100{left:730.102667pt;}
.x29_c01100{left:731.090667pt;}
.xe4_c01100{left:734.127968pt;}
.x6c_c01100{left:735.438667pt;}
.xd5_c01100{left:738.813220pt;}
.xad_c01100{left:740.792920pt;}
.xd_c01100{left:752.292000pt;}
.x89_c01100{left:754.181635pt;}
.x60_c01100{left:757.874832pt;}
.x45_c01100{left:759.026667pt;}
.x2a_c01100{left:762.118667pt;}
.x7e_c01100{left:764.305207pt;}
.xc5_c01100{left:767.608620pt;}
}





/* 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_c01101 {
    display:none;
  }
  .loading-indicator_c01101.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01101 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_c01101 { 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_c01101" -> "#page-container .classname_c01101")
 */
.pf_c01101 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01101 { /* 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_c01101.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01101 { /* 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_c01101 { /* 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_c01101 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01101 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01101 {overflow:visible;}
  }
}
.c_c01101 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01101 { /* 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_c01101:after { /* webkit #35443 */
  content: '';
}
.t_c01101:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01101 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 */
}
.__c01101 { /* 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_c01101 { /* info for Javascript */
  display:none;
}
.l_c01101 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01101 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01101 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01101: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_c01101 {
    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_c01101.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01101.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_c01101 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01101{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01101;src:url('chunks/assets/font_c605e72f209fc835e906f064.woff2')format("woff");}.ff1_c01101{font-family:ff1_c01101;line-height:1.000000;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;}
.m34_c01101{transform:matrix(0.011582,0.000429,-0.009253,0.249829,0,0);-ms-transform:matrix(0.011582,0.000429,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.011582,0.000429,-0.009253,0.249829,0,0);}
.m11_c01101{transform:matrix(0.014680,0.000382,-0.006498,0.249916,0,0);-ms-transform:matrix(0.014680,0.000382,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.014680,0.000382,-0.006498,0.249916,0,0);}
.m48_c01101{transform:matrix(0.017344,0.000625,-0.009003,0.249838,0,0);-ms-transform:matrix(0.017344,0.000625,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.017344,0.000625,-0.009003,0.249838,0,0);}
.m2d_c01101{transform:matrix(0.090908,0.003367,-0.009253,0.249829,0,0);-ms-transform:matrix(0.090908,0.003367,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.090908,0.003367,-0.009253,0.249829,0,0);}
.m2f_c01101{transform:matrix(0.093646,0.003468,-0.009253,0.249829,0,0);-ms-transform:matrix(0.093646,0.003468,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.093646,0.003468,-0.009253,0.249829,0,0);}
.m30_c01101{transform:matrix(0.129961,0.004813,-0.009253,0.249829,0,0);-ms-transform:matrix(0.129961,0.004813,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.129961,0.004813,-0.009253,0.249829,0,0);}
.m20_c01101{transform:matrix(0.142537,0.004851,-0.008504,0.249855,0,0);-ms-transform:matrix(0.142537,0.004851,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.142537,0.004851,-0.008504,0.249855,0,0);}
.m2e_c01101{transform:matrix(0.143252,0.005306,-0.009253,0.249829,0,0);-ms-transform:matrix(0.143252,0.005306,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.143252,0.005306,-0.009253,0.249829,0,0);}
.m1e_c01101{transform:matrix(0.164984,0.005615,-0.008504,0.249855,0,0);-ms-transform:matrix(0.164984,0.005615,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.164984,0.005615,-0.008504,0.249855,0,0);}
.m22_c01101{transform:matrix(0.195162,0.006642,-0.008504,0.249855,0,0);-ms-transform:matrix(0.195162,0.006642,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.195162,0.006642,-0.008504,0.249855,0,0);}
.m39_c01101{transform:matrix(0.198929,0.007368,-0.009253,0.249829,0,0);-ms-transform:matrix(0.198929,0.007368,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.198929,0.007368,-0.009253,0.249829,0,0);}
.m23_c01101{transform:matrix(0.200919,0.006838,-0.008504,0.249855,0,0);-ms-transform:matrix(0.200919,0.006838,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.200919,0.006838,-0.008504,0.249855,0,0);}
.m2_c01101{transform:matrix(0.209610,0.005031,-0.005998,0.249928,0,0);-ms-transform:matrix(0.209610,0.005031,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.209610,0.005031,-0.005998,0.249928,0,0);}
.m3b_c01101{transform:matrix(0.211670,0.007840,-0.009253,0.249829,0,0);-ms-transform:matrix(0.211670,0.007840,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.211670,0.007840,-0.009253,0.249829,0,0);}
.m24_c01101{transform:matrix(0.219628,0.007475,-0.008504,0.249855,0,0);-ms-transform:matrix(0.219628,0.007475,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.219628,0.007475,-0.008504,0.249855,0,0);}
.m8_c01101{transform:matrix(0.221535,0.009979,-0.011250,0.249747,0,0);-ms-transform:matrix(0.221535,0.009979,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.221535,0.009979,-0.011250,0.249747,0,0);}
.m13_c01101{transform:matrix(0.222685,0.005790,-0.006498,0.249916,0,0);-ms-transform:matrix(0.222685,0.005790,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.222685,0.005790,-0.006498,0.249916,0,0);}
.m7_c01101{transform:matrix(0.222694,0.010031,-0.011250,0.249747,0,0);-ms-transform:matrix(0.222694,0.010031,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.222694,0.010031,-0.011250,0.249747,0,0);}
.m38_c01101{transform:matrix(0.223407,0.008274,-0.009253,0.249829,0,0);-ms-transform:matrix(0.223407,0.008274,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.223407,0.008274,-0.009253,0.249829,0,0);}
.m35_c01101{transform:matrix(0.227424,0.008423,-0.009253,0.249829,0,0);-ms-transform:matrix(0.227424,0.008423,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.227424,0.008423,-0.009253,0.249829,0,0);}
.mf_c01101{transform:matrix(0.229902,0.010356,-0.011250,0.249747,0,0);-ms-transform:matrix(0.229902,0.010356,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.229902,0.010356,-0.011250,0.249747,0,0);}
.m3d_c01101{transform:matrix(0.230877,0.008551,-0.009253,0.249829,0,0);-ms-transform:matrix(0.230877,0.008551,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.230877,0.008551,-0.009253,0.249829,0,0);}
.m25_c01101{transform:matrix(0.231686,0.007885,-0.008504,0.249855,0,0);-ms-transform:matrix(0.231686,0.007885,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.231686,0.007885,-0.008504,0.249855,0,0);}
.m27_c01101{transform:matrix(0.234879,0.007994,-0.008504,0.249855,0,0);-ms-transform:matrix(0.234879,0.007994,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.234879,0.007994,-0.008504,0.249855,0,0);}
.m28_c01101{transform:matrix(0.236213,0.008039,-0.008504,0.249855,0,0);-ms-transform:matrix(0.236213,0.008039,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.236213,0.008039,-0.008504,0.249855,0,0);}
.m26_c01101{transform:matrix(0.237792,0.008093,-0.008504,0.249855,0,0);-ms-transform:matrix(0.237792,0.008093,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.237792,0.008093,-0.008504,0.249855,0,0);}
.m3a_c01101{transform:matrix(0.239171,0.008858,-0.009253,0.249829,0,0);-ms-transform:matrix(0.239171,0.008858,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.239171,0.008858,-0.009253,0.249829,0,0);}
.m1b_c01101{transform:matrix(0.242978,0.006317,-0.006498,0.249916,0,0);-ms-transform:matrix(0.242978,0.006317,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.242978,0.006317,-0.006498,0.249916,0,0);}
.mb_c01101{transform:matrix(0.255851,0.011525,-0.011250,0.249747,0,0);-ms-transform:matrix(0.255851,0.011525,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.255851,0.011525,-0.011250,0.249747,0,0);}
.m2a_c01101{transform:matrix(0.259450,0.008830,-0.008504,0.249855,0,0);-ms-transform:matrix(0.259450,0.008830,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.259450,0.008830,-0.008504,0.249855,0,0);}
.m42_c01101{transform:matrix(0.271169,0.010043,-0.009253,0.249829,0,0);-ms-transform:matrix(0.271169,0.010043,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.271169,0.010043,-0.009253,0.249829,0,0);}
.m16_c01101{transform:matrix(0.272433,0.007083,-0.006498,0.249916,0,0);-ms-transform:matrix(0.272433,0.007083,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.272433,0.007083,-0.006498,0.249916,0,0);}
.m14_c01101{transform:matrix(0.273188,0.007103,-0.006498,0.249916,0,0);-ms-transform:matrix(0.273188,0.007103,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.273188,0.007103,-0.006498,0.249916,0,0);}
.m3c_c01101{transform:matrix(0.276046,0.010224,-0.009253,0.249829,0,0);-ms-transform:matrix(0.276046,0.010224,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.276046,0.010224,-0.009253,0.249829,0,0);}
.mc_c01101{transform:matrix(0.278398,0.012540,-0.011250,0.249747,0,0);-ms-transform:matrix(0.278398,0.012540,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.278398,0.012540,-0.011250,0.249747,0,0);}
.m10_c01101{transform:matrix(0.287259,0.012940,-0.011250,0.249747,0,0);-ms-transform:matrix(0.287259,0.012940,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.287259,0.012940,-0.011250,0.249747,0,0);}
.m29_c01101{transform:matrix(0.297483,0.010125,-0.008504,0.249855,0,0);-ms-transform:matrix(0.297483,0.010125,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.297483,0.010125,-0.008504,0.249855,0,0);}
.m2c_c01101{transform:matrix(0.299675,0.011099,-0.009253,0.249829,0,0);-ms-transform:matrix(0.299675,0.011099,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.299675,0.011099,-0.009253,0.249829,0,0);}
.m18_c01101{transform:matrix(0.300433,0.007811,-0.006498,0.249916,0,0);-ms-transform:matrix(0.300433,0.007811,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.300433,0.007811,-0.006498,0.249916,0,0);}
.m45_c01101{transform:matrix(0.303413,0.010934,-0.009003,0.249838,0,0);-ms-transform:matrix(0.303413,0.010934,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.303413,0.010934,-0.009003,0.249838,0,0);}
.m31_c01101{transform:matrix(0.313735,0.011620,-0.009253,0.249829,0,0);-ms-transform:matrix(0.313735,0.011620,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.313735,0.011620,-0.009253,0.249829,0,0);}
.m12_c01101{transform:matrix(0.315638,0.008207,-0.006498,0.249916,0,0);-ms-transform:matrix(0.315638,0.008207,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.315638,0.008207,-0.006498,0.249916,0,0);}
.m6_c01101{transform:matrix(0.316399,0.014252,-0.011250,0.249747,0,0);-ms-transform:matrix(0.316399,0.014252,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.316399,0.014252,-0.011250,0.249747,0,0);}
.m1a_c01101{transform:matrix(0.316743,0.008235,-0.006498,0.249916,0,0);-ms-transform:matrix(0.316743,0.008235,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.316743,0.008235,-0.006498,0.249916,0,0);}
.m46_c01101{transform:matrix(0.321896,0.011600,-0.009003,0.249838,0,0);-ms-transform:matrix(0.321896,0.011600,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.321896,0.011600,-0.009003,0.249838,0,0);}
.m3e_c01101{transform:matrix(0.321944,0.011924,-0.009253,0.249829,0,0);-ms-transform:matrix(0.321944,0.011924,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.321944,0.011924,-0.009253,0.249829,0,0);}
.m33_c01101{transform:matrix(0.324088,0.012003,-0.009253,0.249829,0,0);-ms-transform:matrix(0.324088,0.012003,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.324088,0.012003,-0.009253,0.249829,0,0);}
.m43_c01101{transform:matrix(0.326051,0.012076,-0.009253,0.249829,0,0);-ms-transform:matrix(0.326051,0.012076,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.326051,0.012076,-0.009253,0.249829,0,0);}
.m1d_c01101{transform:matrix(0.333237,0.008664,-0.006498,0.249916,0,0);-ms-transform:matrix(0.333237,0.008664,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.333237,0.008664,-0.006498,0.249916,0,0);}
.m3f_c01101{transform:matrix(0.341396,0.012644,-0.009253,0.249829,0,0);-ms-transform:matrix(0.341396,0.012644,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.341396,0.012644,-0.009253,0.249829,0,0);}
.ma_c01101{transform:matrix(0.347463,0.015651,-0.011250,0.249747,0,0);-ms-transform:matrix(0.347463,0.015651,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.347463,0.015651,-0.011250,0.249747,0,0);}
.m3_c01101{transform:matrix(0.351169,0.008428,-0.005998,0.249928,0,0);-ms-transform:matrix(0.351169,0.008428,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.351169,0.008428,-0.005998,0.249928,0,0);}
.m40_c01101{transform:matrix(0.353073,0.013077,-0.009253,0.249829,0,0);-ms-transform:matrix(0.353073,0.013077,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.353073,0.013077,-0.009253,0.249829,0,0);}
.m1c_c01101{transform:matrix(0.357544,0.009296,-0.006498,0.249916,0,0);-ms-transform:matrix(0.357544,0.009296,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.357544,0.009296,-0.006498,0.249916,0,0);}
.m2b_c01101{transform:matrix(0.360931,0.012284,-0.008504,0.249855,0,0);-ms-transform:matrix(0.360931,0.012284,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.360931,0.012284,-0.008504,0.249855,0,0);}
.m36_c01101{transform:matrix(0.362736,0.013435,-0.009253,0.249829,0,0);-ms-transform:matrix(0.362736,0.013435,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.362736,0.013435,-0.009253,0.249829,0,0);}
.md_c01101{transform:matrix(0.364136,0.016403,-0.011250,0.249747,0,0);-ms-transform:matrix(0.364136,0.016403,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.364136,0.016403,-0.011250,0.249747,0,0);}
.m19_c01101{transform:matrix(0.376918,0.009800,-0.006498,0.249916,0,0);-ms-transform:matrix(0.376918,0.009800,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.376918,0.009800,-0.006498,0.249916,0,0);}
.m15_c01101{transform:matrix(0.385485,0.010023,-0.006498,0.249916,0,0);-ms-transform:matrix(0.385485,0.010023,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.385485,0.010023,-0.006498,0.249916,0,0);}
.m17_c01101{transform:matrix(0.407947,0.010607,-0.006498,0.249916,0,0);-ms-transform:matrix(0.407947,0.010607,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.407947,0.010607,-0.006498,0.249916,0,0);}
.m1_c01101{transform:matrix(0.411342,0.009872,-0.005998,0.249928,0,0);-ms-transform:matrix(0.411342,0.009872,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.411342,0.009872,-0.005998,0.249928,0,0);}
.m1f_c01101{transform:matrix(0.415474,0.014140,-0.008504,0.249855,0,0);-ms-transform:matrix(0.415474,0.014140,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.415474,0.014140,-0.008504,0.249855,0,0);}
.m4_c01101{transform:matrix(0.420119,0.018924,-0.011250,0.249747,0,0);-ms-transform:matrix(0.420119,0.018924,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.420119,0.018924,-0.011250,0.249747,0,0);}
.m41_c01101{transform:matrix(0.434832,0.016105,-0.009253,0.249829,0,0);-ms-transform:matrix(0.434832,0.016105,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.434832,0.016105,-0.009253,0.249829,0,0);}
.m9_c01101{transform:matrix(0.464659,0.020931,-0.011250,0.249747,0,0);-ms-transform:matrix(0.464659,0.020931,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.464659,0.020931,-0.011250,0.249747,0,0);}
.m44_c01101{transform:matrix(0.524785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524785,0.000000,0.000000,0.250000,0,0);}
.m5_c01101{transform:matrix(0.527460,0.023759,-0.011250,0.249747,0,0);-ms-transform:matrix(0.527460,0.023759,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.527460,0.023759,-0.011250,0.249747,0,0);}
.m0_c01101{transform:matrix(0.560564,0.013454,-0.005998,0.249928,0,0);-ms-transform:matrix(0.560564,0.013454,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.560564,0.013454,-0.005998,0.249928,0,0);}
.m47_c01101{transform:matrix(0.657343,0.023688,-0.009003,0.249838,0,0);-ms-transform:matrix(0.657343,0.023688,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.657343,0.023688,-0.009003,0.249838,0,0);}
.m21_c01101{transform:matrix(0.662017,0.022531,-0.008504,0.249855,0,0);-ms-transform:matrix(0.662017,0.022531,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.662017,0.022531,-0.008504,0.249855,0,0);}
.m32_c01101{transform:matrix(0.732308,0.027123,-0.009253,0.249829,0,0);-ms-transform:matrix(0.732308,0.027123,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.732308,0.027123,-0.009253,0.249829,0,0);}
.m37_c01101{transform:matrix(0.762617,0.028245,-0.009253,0.249829,0,0);-ms-transform:matrix(0.762617,0.028245,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.762617,0.028245,-0.009253,0.249829,0,0);}
.me_c01101{transform:matrix(0.846342,0.038124,-0.011250,0.249747,0,0);-ms-transform:matrix(0.846342,0.038124,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.846342,0.038124,-0.011250,0.249747,0,0);}
.v0_c01101{vertical-align:0.000000px;}
.ls0_c01101{letter-spacing:0.000000px;}
.sc__c01101{text-shadow:none;}
.sc0_c01101{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__c01101{-webkit-text-stroke:0px transparent;}
.sc0_c01101{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01101{word-spacing:0.000000px;}
.fc0_c01101{color:transparent;}
.fs6_c01101{font-size:12.000000px;}
.fs0_c01101{font-size:54.015550px;}
.fs7_c01101{font-size:65.976797px;}
.fs1_c01101{font-size:78.001014px;}
.fs2_c01101{font-size:78.026360px;}
.fs4_c01101{font-size:83.973536px;}
.fs3_c01101{font-size:89.962057px;}
.fs5_c01101{font-size:107.965975px;}
.y0_c01101{bottom:0.000000px;}
.y49_c01101{bottom:243.020130px;}
.y48_c01101{bottom:244.747428px;}
.y47_c01101{bottom:248.398098px;}
.y46_c01101{bottom:248.698500px;}
.y45_c01101{bottom:261.900000px;}
.y44_c01101{bottom:737.938646px;}
.y43_c01101{bottom:739.601314px;}
.y42_c01101{bottom:740.809494px;}
.y41_c01101{bottom:741.369545px;}
.y40_c01101{bottom:742.017785px;}
.y3f_c01101{bottom:743.672129px;}
.y3e_c01101{bottom:744.427706px;}
.y3d_c01101{bottom:745.766588px;}
.y3c_c01101{bottom:747.014172px;}
.y3b_c01101{bottom:747.898731px;}
.y3a_c01101{bottom:750.616844px;}
.y39_c01101{bottom:771.335382px;}
.y38_c01101{bottom:773.632971px;}
.y37_c01101{bottom:774.707063px;}
.y36_c01101{bottom:776.106550px;}
.y35_c01101{bottom:777.897647px;}
.y34_c01101{bottom:780.247350px;}
.y33_c01101{bottom:784.494265px;}
.y32_c01101{bottom:789.038439px;}
.y31_c01101{bottom:790.105149px;}
.y30_c01101{bottom:792.982547px;}
.y2f_c01101{bottom:794.764374px;}
.y2e_c01101{bottom:796.785074px;}
.y2d_c01101{bottom:798.135000px;}
.y2c_c01101{bottom:809.318964px;}
.y2b_c01101{bottom:810.630021px;}
.y2a_c01101{bottom:812.275740px;}
.y29_c01101{bottom:816.677295px;}
.y28_c01101{bottom:820.947423px;}
.y27_c01101{bottom:822.965850px;}
.y26_c01101{bottom:824.449542px;}
.y25_c01101{bottom:825.533394px;}
.y24_c01101{bottom:828.877464px;}
.y23_c01101{bottom:830.041692px;}
.y22_c01101{bottom:831.903294px;}
.y21_c01101{bottom:831.933078px;}
.y20_c01101{bottom:832.613469px;}
.y1f_c01101{bottom:834.040500px;}
.y1e_c01101{bottom:843.878832px;}
.y1d_c01101{bottom:844.973601px;}
.y1c_c01101{bottom:847.453728px;}
.y1b_c01101{bottom:848.675520px;}
.y1a_c01101{bottom:850.103934px;}
.y19_c01101{bottom:851.208531px;}
.y18_c01101{bottom:853.204083px;}
.y17_c01101{bottom:854.609799px;}
.y16_c01101{bottom:855.170853px;}
.y15_c01101{bottom:857.157942px;}
.y14_c01101{bottom:857.996403px;}
.y13_c01101{bottom:859.688379px;}
.y12_c01101{bottom:860.056500px;}
.y11_c01101{bottom:878.944747px;}
.y10_c01101{bottom:879.871860px;}
.yf_c01101{bottom:885.424343px;}
.ye_c01101{bottom:887.653868px;}
.yd_c01101{bottom:893.124608px;}
.yc_c01101{bottom:894.460095px;}
.yb_c01101{bottom:897.441908px;}
.ya_c01101{bottom:899.900528px;}
.y9_c01101{bottom:901.457415px;}
.y8_c01101{bottom:903.210255px;}
.y7_c01101{bottom:904.434300px;}
.y6_c01101{bottom:906.509520px;}
.y5_c01101{bottom:907.771500px;}
.y4_c01101{bottom:912.638472px;}
.y3_c01101{bottom:913.328376px;}
.y2_c01101{bottom:915.438624px;}
.y1_c01101{bottom:916.480500px;}
.h8_c01101{height:12.000000px;}
.h2_c01101{height:54.015550px;}
.h9_c01101{height:65.976797px;}
.h3_c01101{height:78.001014px;}
.h4_c01101{height:78.026360px;}
.h6_c01101{height:83.973536px;}
.h5_c01101{height:89.962057px;}
.h7_c01101{height:107.965975px;}
.h0_c01101{height:1246.320000px;}
.h1_c01101{height:1246.500000px;}
.w0_c01101{width:927.450000px;}
.w1_c01101{width:927.750000px;}
.x0_c01101{left:0.000000px;}
.x1c_c01101{left:2.406000px;}
.x25_c01101{left:38.459516px;}
.x1d_c01101{left:44.335528px;}
.x5_c01101{left:46.276500px;}
.x1e_c01101{left:64.327017px;}
.x6_c01101{left:74.292456px;}
.x12_c01101{left:88.975500px;}
.x26_c01101{left:93.018402px;}
.x7_c01101{left:120.362340px;}
.x27_c01101{left:141.127745px;}
.x8_c01101{left:147.536139px;}
.x13_c01101{left:154.051500px;}
.x9_c01101{left:186.449187px;}
.x28_c01101{left:218.817477px;}
.xa_c01101{left:221.012090px;}
.x31_c01101{left:223.306151px;}
.x29_c01101{left:247.618647px;}
.x1f_c01101{left:252.364791px;}
.x14_c01101{left:262.726500px;}
.xb_c01101{left:275.593454px;}
.x15_c01101{left:284.305500px;}
.x20_c01101{left:327.805275px;}
.x32_c01101{left:336.399888px;}
.x16_c01101{left:338.371500px;}
.xc_c01101{left:341.789691px;}
.x2a_c01101{left:370.311331px;}
.xd_c01101{left:371.437514px;}
.x33_c01101{left:373.207266px;}
.x21_c01101{left:387.111409px;}
.x17_c01101{left:415.123500px;}
.x34_c01101{left:425.123798px;}
.x18_c01101{left:457.608000px;}
.x35_c01101{left:480.801842px;}
.x2b_c01101{left:484.978050px;}
.xe_c01101{left:492.887941px;}
.x19_c01101{left:512.547000px;}
.xf_c01101{left:542.383396px;}
.x2c_c01101{left:548.420045px;}
.x1a_c01101{left:559.539000px;}
.x36_c01101{left:581.077244px;}
.x2d_c01101{left:596.779637px;}
.x37_c01101{left:608.060234px;}
.x1_c01101{left:612.331500px;}
.x3c_c01101{left:615.869156px;}
.x3b_c01101{left:619.920000px;}
.x38_c01101{left:631.365627px;}
.x2e_c01101{left:634.565812px;}
.x22_c01101{left:641.905860px;}
.x2_c01101{left:655.743000px;}
.x2f_c01101{left:663.566283px;}
.x10_c01101{left:665.648508px;}
.x39_c01101{left:681.610499px;}
.x11_c01101{left:686.230405px;}
.x23_c01101{left:690.260957px;}
.x1b_c01101{left:697.035000px;}
.x3d_c01101{left:717.175248px;}
.x30_c01101{left:725.601186px;}
.x24_c01101{left:728.782896px;}
.x3_c01101{left:743.670000px;}
.x3a_c01101{left:750.811562px;}
.x3e_c01101{left:765.107768px;}
.x4_c01101{left:772.416000px;}
@media print{
.v0_c01101{vertical-align:0.000000pt;}
.ls0_c01101{letter-spacing:0.000000pt;}
.ws0_c01101{word-spacing:0.000000pt;}
.fs6_c01101{font-size:10.666667pt;}
.fs0_c01101{font-size:48.013822pt;}
.fs7_c01101{font-size:58.646042pt;}
.fs1_c01101{font-size:69.334235pt;}
.fs2_c01101{font-size:69.356764pt;}
.fs4_c01101{font-size:74.643143pt;}
.fs3_c01101{font-size:79.966273pt;}
.fs5_c01101{font-size:95.969755pt;}
.y0_c01101{bottom:0.000000pt;}
.y49_c01101{bottom:216.017893pt;}
.y48_c01101{bottom:217.553269pt;}
.y47_c01101{bottom:220.798309pt;}
.y46_c01101{bottom:221.065333pt;}
.y45_c01101{bottom:232.800000pt;}
.y44_c01101{bottom:655.945463pt;}
.y43_c01101{bottom:657.423391pt;}
.y42_c01101{bottom:658.497328pt;}
.y41_c01101{bottom:658.995151pt;}
.y40_c01101{bottom:659.571364pt;}
.y3f_c01101{bottom:661.041892pt;}
.y3e_c01101{bottom:661.713516pt;}
.y3d_c01101{bottom:662.903633pt;}
.y3c_c01101{bottom:664.012597pt;}
.y3b_c01101{bottom:664.798872pt;}
.y3a_c01101{bottom:667.214972pt;}
.y39_c01101{bottom:685.631451pt;}
.y38_c01101{bottom:687.673752pt;}
.y37_c01101{bottom:688.628500pt;}
.y36_c01101{bottom:689.872489pt;}
.y35_c01101{bottom:691.464575pt;}
.y34_c01101{bottom:693.553200pt;}
.y33_c01101{bottom:697.328236pt;}
.y32_c01101{bottom:701.367501pt;}
.y31_c01101{bottom:702.315688pt;}
.y30_c01101{bottom:704.873375pt;}
.y2f_c01101{bottom:706.457221pt;}
.y2e_c01101{bottom:708.253399pt;}
.y2d_c01101{bottom:709.453333pt;}
.y2c_c01101{bottom:719.394635pt;}
.y2b_c01101{bottom:720.560019pt;}
.y2a_c01101{bottom:722.022880pt;}
.y29_c01101{bottom:725.935373pt;}
.y28_c01101{bottom:729.731043pt;}
.y27_c01101{bottom:731.525200pt;}
.y26_c01101{bottom:732.844037pt;}
.y25_c01101{bottom:733.807461pt;}
.y24_c01101{bottom:736.779968pt;}
.y23_c01101{bottom:737.814837pt;}
.y22_c01101{bottom:739.469595pt;}
.y21_c01101{bottom:739.496069pt;}
.y20_c01101{bottom:740.100861pt;}
.y1f_c01101{bottom:741.369333pt;}
.y1e_c01101{bottom:750.114517pt;}
.y1d_c01101{bottom:751.087645pt;}
.y1c_c01101{bottom:753.292203pt;}
.y1b_c01101{bottom:754.378240pt;}
.y1a_c01101{bottom:755.647941pt;}
.y19_c01101{bottom:756.629805pt;}
.y18_c01101{bottom:758.403629pt;}
.y17_c01101{bottom:759.653155pt;}
.y16_c01101{bottom:760.151869pt;}
.y15_c01101{bottom:761.918171pt;}
.y14_c01101{bottom:762.663469pt;}
.y13_c01101{bottom:764.167448pt;}
.y12_c01101{bottom:764.494667pt;}
.y11_c01101{bottom:781.284220pt;}
.y10_c01101{bottom:782.108320pt;}
.yf_c01101{bottom:787.043860pt;}
.ye_c01101{bottom:789.025660pt;}
.yd_c01101{bottom:793.888540pt;}
.yc_c01101{bottom:795.075640pt;}
.yb_c01101{bottom:797.726140pt;}
.ya_c01101{bottom:799.911580pt;}
.y9_c01101{bottom:801.295480pt;}
.y8_c01101{bottom:802.853560pt;}
.y7_c01101{bottom:803.941600pt;}
.y6_c01101{bottom:805.786240pt;}
.y5_c01101{bottom:806.908000pt;}
.y4_c01101{bottom:811.234197pt;}
.y3_c01101{bottom:811.847445pt;}
.y2_c01101{bottom:813.723221pt;}
.y1_c01101{bottom:814.649333pt;}
.h8_c01101{height:10.666667pt;}
.h2_c01101{height:48.013822pt;}
.h9_c01101{height:58.646042pt;}
.h3_c01101{height:69.334235pt;}
.h4_c01101{height:69.356764pt;}
.h6_c01101{height:74.643143pt;}
.h5_c01101{height:79.966273pt;}
.h7_c01101{height:95.969755pt;}
.h0_c01101{height:1107.840000pt;}
.h1_c01101{height:1108.000000pt;}
.w0_c01101{width:824.400000pt;}
.w1_c01101{width:824.666667pt;}
.x0_c01101{left:0.000000pt;}
.x1c_c01101{left:2.138667pt;}
.x25_c01101{left:34.186236pt;}
.x1d_c01101{left:39.409359pt;}
.x5_c01101{left:41.134667pt;}
.x1e_c01101{left:57.179571pt;}
.x6_c01101{left:66.037739pt;}
.x12_c01101{left:79.089333pt;}
.x26_c01101{left:82.683024pt;}
.x7_c01101{left:106.988747pt;}
.x27_c01101{left:125.446884pt;}
.x8_c01101{left:131.143235pt;}
.x13_c01101{left:136.934667pt;}
.x9_c01101{left:165.732611pt;}
.x28_c01101{left:194.504424pt;}
.xa_c01101{left:196.455191pt;}
.x31_c01101{left:198.494356pt;}
.x29_c01101{left:220.105464pt;}
.x1f_c01101{left:224.324259pt;}
.x14_c01101{left:233.534667pt;}
.xb_c01101{left:244.971959pt;}
.x15_c01101{left:252.716000pt;}
.x20_c01101{left:291.382467pt;}
.x32_c01101{left:299.022123pt;}
.x16_c01101{left:300.774667pt;}
.xc_c01101{left:303.813059pt;}
.x2a_c01101{left:329.165628pt;}
.xd_c01101{left:330.166679pt;}
.x33_c01101{left:331.739792pt;}
.x21_c01101{left:344.099031pt;}
.x17_c01101{left:368.998667pt;}
.x34_c01101{left:377.887820pt;}
.x18_c01101{left:406.762667pt;}
.x35_c01101{left:427.379415pt;}
.x2b_c01101{left:431.091600pt;}
.xe_c01101{left:438.122615pt;}
.x19_c01101{left:455.597333pt;}
.xf_c01101{left:482.118575pt;}
.x2c_c01101{left:487.484484pt;}
.x1a_c01101{left:497.368000pt;}
.x36_c01101{left:516.513105pt;}
.x2d_c01101{left:530.470788pt;}
.x37_c01101{left:540.497985pt;}
.x1_c01101{left:544.294667pt;}
.x3c_c01101{left:547.439249pt;}
.x3b_c01101{left:551.040000pt;}
.x38_c01101{left:561.213891pt;}
.x2e_c01101{left:564.058500pt;}
.x22_c01101{left:570.582987pt;}
.x2_c01101{left:582.882667pt;}
.x2f_c01101{left:589.836696pt;}
.x10_c01101{left:591.687563pt;}
.x39_c01101{left:605.875999pt;}
.x11_c01101{left:609.982583pt;}
.x23_c01101{left:613.565295pt;}
.x1b_c01101{left:619.586667pt;}
.x3d_c01101{left:637.489109pt;}
.x30_c01101{left:644.978832pt;}
.x24_c01101{left:647.807019pt;}
.x3_c01101{left:661.040000pt;}
.x3a_c01101{left:667.388055pt;}
.x3e_c01101{left:680.095793pt;}
.x4_c01101{left:686.592000pt;}
}





/* 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_c01102 {
    display:none;
  }
  .loading-indicator_c01102.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01102 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_c01102 { 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_c01102" -> "#page-container .classname_c01102")
 */
.pf_c01102 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01102 { /* 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_c01102.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01102 { /* 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_c01102 { /* 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_c01102 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01102 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01102 {overflow:visible;}
  }
}
.c_c01102 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01102 { /* 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_c01102:after { /* webkit #35443 */
  content: '';
}
.t_c01102:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01102 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 */
}
.__c01102 { /* 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_c01102 { /* info for Javascript */
  display:none;
}
.l_c01102 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01102 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01102 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01102: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_c01102 {
    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_c01102.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01102.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_c01102 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01102{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01102;src:url('chunks/assets/font_7c6b9abe6ee2a268480c528b.woff2')format("woff");}.ff1_c01102{font-family:ff1_c01102;line-height:1.000000;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;}
.mff_c01102{transform:matrix(0.039441,0.001500,-0.009503,0.249819,0,0);-ms-transform:matrix(0.039441,0.001500,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.039441,0.001500,-0.009503,0.249819,0,0);}
.m12b_c01102{transform:matrix(0.130419,0.005744,-0.011000,0.249758,0,0);-ms-transform:matrix(0.130419,0.005744,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.130419,0.005744,-0.011000,0.249758,0,0);}
.m48_c01102{transform:matrix(0.154926,0.004803,-0.007746,0.249880,0,0);-ms-transform:matrix(0.154926,0.004803,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.154926,0.004803,-0.007746,0.249880,0,0);}
.m6f_c01102{transform:matrix(0.173427,0.005376,-0.007746,0.249880,0,0);-ms-transform:matrix(0.173427,0.005376,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.173427,0.005376,-0.007746,0.249880,0,0);}
.m13a_c01102{transform:matrix(0.180734,0.006875,-0.009503,0.249819,0,0);-ms-transform:matrix(0.180734,0.006875,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.180734,0.006875,-0.009503,0.249819,0,0);}
.m13e_c01102{transform:matrix(0.182098,0.006927,-0.009503,0.249819,0,0);-ms-transform:matrix(0.182098,0.006927,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.182098,0.006927,-0.009503,0.249819,0,0);}
.m9d_c01102{transform:matrix(0.185936,0.005764,-0.007746,0.249880,0,0);-ms-transform:matrix(0.185936,0.005764,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.185936,0.005764,-0.007746,0.249880,0,0);}
.m60_c01102{transform:matrix(0.188394,0.005840,-0.007746,0.249880,0,0);-ms-transform:matrix(0.188394,0.005840,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.188394,0.005840,-0.007746,0.249880,0,0);}
.md4_c01102{transform:matrix(0.194399,0.007395,-0.009503,0.249819,0,0);-ms-transform:matrix(0.194399,0.007395,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.194399,0.007395,-0.009503,0.249819,0,0);}
.m13c_c01102{transform:matrix(0.194699,0.007406,-0.009503,0.249819,0,0);-ms-transform:matrix(0.194699,0.007406,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.194699,0.007406,-0.009503,0.249819,0,0);}
.m144_c01102{transform:matrix(0.194799,0.007410,-0.009503,0.249819,0,0);-ms-transform:matrix(0.194799,0.007410,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.194799,0.007410,-0.009503,0.249819,0,0);}
.mdd_c01102{transform:matrix(0.197107,0.007498,-0.009503,0.249819,0,0);-ms-transform:matrix(0.197107,0.007498,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.197107,0.007498,-0.009503,0.249819,0,0);}
.mc6_c01102{transform:matrix(0.198956,0.007568,-0.009503,0.249819,0,0);-ms-transform:matrix(0.198956,0.007568,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.198956,0.007568,-0.009503,0.249819,0,0);}
.mcc_c01102{transform:matrix(0.199556,0.007591,-0.009503,0.249819,0,0);-ms-transform:matrix(0.199556,0.007591,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.199556,0.007591,-0.009503,0.249819,0,0);}
.m4c_c01102{transform:matrix(0.200059,0.006202,-0.007746,0.249880,0,0);-ms-transform:matrix(0.200059,0.006202,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.200059,0.006202,-0.007746,0.249880,0,0);}
.mfe_c01102{transform:matrix(0.200415,0.007623,-0.009503,0.249819,0,0);-ms-transform:matrix(0.200415,0.007623,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.200415,0.007623,-0.009503,0.249819,0,0);}
.m14a_c01102{transform:matrix(0.201384,0.007660,-0.009503,0.249819,0,0);-ms-transform:matrix(0.201384,0.007660,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.201384,0.007660,-0.009503,0.249819,0,0);}
.m13d_c01102{transform:matrix(0.201824,0.007677,-0.009503,0.249819,0,0);-ms-transform:matrix(0.201824,0.007677,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.201824,0.007677,-0.009503,0.249819,0,0);}
.mca_c01102{transform:matrix(0.202009,0.007684,-0.009503,0.249819,0,0);-ms-transform:matrix(0.202009,0.007684,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.202009,0.007684,-0.009503,0.249819,0,0);}
.m13f_c01102{transform:matrix(0.203708,0.007749,-0.009503,0.249819,0,0);-ms-transform:matrix(0.203708,0.007749,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.203708,0.007749,-0.009503,0.249819,0,0);}
.mcd_c01102{transform:matrix(0.205486,0.007816,-0.009503,0.249819,0,0);-ms-transform:matrix(0.205486,0.007816,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.205486,0.007816,-0.009503,0.249819,0,0);}
.md8_c01102{transform:matrix(0.205776,0.007827,-0.009503,0.249819,0,0);-ms-transform:matrix(0.205776,0.007827,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.205776,0.007827,-0.009503,0.249819,0,0);}
.m148_c01102{transform:matrix(0.206111,0.007840,-0.009503,0.249819,0,0);-ms-transform:matrix(0.206111,0.007840,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.206111,0.007840,-0.009503,0.249819,0,0);}
.mda_c01102{transform:matrix(0.206231,0.007845,-0.009503,0.249819,0,0);-ms-transform:matrix(0.206231,0.007845,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.206231,0.007845,-0.009503,0.249819,0,0);}
.m8_c01102{transform:matrix(0.206811,0.006411,-0.007746,0.249880,0,0);-ms-transform:matrix(0.206811,0.006411,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.206811,0.006411,-0.007746,0.249880,0,0);}
.m139_c01102{transform:matrix(0.207205,0.007882,-0.009503,0.249819,0,0);-ms-transform:matrix(0.207205,0.007882,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.207205,0.007882,-0.009503,0.249819,0,0);}
.mc9_c01102{transform:matrix(0.207290,0.007885,-0.009503,0.249819,0,0);-ms-transform:matrix(0.207290,0.007885,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.207290,0.007885,-0.009503,0.249819,0,0);}
.m14c_c01102{transform:matrix(0.207355,0.007887,-0.009503,0.249819,0,0);-ms-transform:matrix(0.207355,0.007887,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.207355,0.007887,-0.009503,0.249819,0,0);}
.m119_c01102{transform:matrix(0.207831,0.008738,-0.010501,0.249779,0,0);-ms-transform:matrix(0.207831,0.008738,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.207831,0.008738,-0.010501,0.249779,0,0);}
.m116_c01102{transform:matrix(0.209115,0.008792,-0.010501,0.249779,0,0);-ms-transform:matrix(0.209115,0.008792,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.209115,0.008792,-0.010501,0.249779,0,0);}
.m142_c01102{transform:matrix(0.209324,0.007962,-0.009503,0.249819,0,0);-ms-transform:matrix(0.209324,0.007962,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.209324,0.007962,-0.009503,0.249819,0,0);}
.maf_c01102{transform:matrix(0.210179,0.006516,-0.007746,0.249880,0,0);-ms-transform:matrix(0.210179,0.006516,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.210179,0.006516,-0.007746,0.249880,0,0);}
.m3a_c01102{transform:matrix(0.211114,0.006545,-0.007746,0.249880,0,0);-ms-transform:matrix(0.211114,0.006545,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.211114,0.006545,-0.007746,0.249880,0,0);}
.m145_c01102{transform:matrix(0.211307,0.008038,-0.009503,0.249819,0,0);-ms-transform:matrix(0.211307,0.008038,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.211307,0.008038,-0.009503,0.249819,0,0);}
.m45_c01102{transform:matrix(0.211768,0.006565,-0.007746,0.249880,0,0);-ms-transform:matrix(0.211768,0.006565,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.211768,0.006565,-0.007746,0.249880,0,0);}
.m64_c01102{transform:matrix(0.211828,0.006567,-0.007746,0.249880,0,0);-ms-transform:matrix(0.211828,0.006567,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.211828,0.006567,-0.007746,0.249880,0,0);}
.mfb_c01102{transform:matrix(0.212346,0.008077,-0.009503,0.249819,0,0);-ms-transform:matrix(0.212346,0.008077,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.212346,0.008077,-0.009503,0.249819,0,0);}
.m6b_c01102{transform:matrix(0.212398,0.006584,-0.007746,0.249880,0,0);-ms-transform:matrix(0.212398,0.006584,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.212398,0.006584,-0.007746,0.249880,0,0);}
.m66_c01102{transform:matrix(0.213033,0.006604,-0.007746,0.249880,0,0);-ms-transform:matrix(0.213033,0.006604,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.213033,0.006604,-0.007746,0.249880,0,0);}
.mac_c01102{transform:matrix(0.213702,0.006625,-0.007746,0.249880,0,0);-ms-transform:matrix(0.213702,0.006625,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.213702,0.006625,-0.007746,0.249880,0,0);}
.mc7_c01102{transform:matrix(0.213830,0.008134,-0.009503,0.249819,0,0);-ms-transform:matrix(0.213830,0.008134,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.213830,0.008134,-0.009503,0.249819,0,0);}
.md5_c01102{transform:matrix(0.214125,0.008145,-0.009503,0.249819,0,0);-ms-transform:matrix(0.214125,0.008145,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.214125,0.008145,-0.009503,0.249819,0,0);}
.m131_c01102{transform:matrix(0.214207,0.009435,-0.011000,0.249758,0,0);-ms-transform:matrix(0.214207,0.009435,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.214207,0.009435,-0.011000,0.249758,0,0);}
.me0_c01102{transform:matrix(0.214260,0.008150,-0.009503,0.249819,0,0);-ms-transform:matrix(0.214260,0.008150,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.214260,0.008150,-0.009503,0.249819,0,0);}
.ma5_c01102{transform:matrix(0.214312,0.006644,-0.007746,0.249880,0,0);-ms-transform:matrix(0.214312,0.006644,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.214312,0.006644,-0.007746,0.249880,0,0);}
.me9_c01102{transform:matrix(0.214645,0.008165,-0.009503,0.249819,0,0);-ms-transform:matrix(0.214645,0.008165,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.214645,0.008165,-0.009503,0.249819,0,0);}
.ma1_c01102{transform:matrix(0.215611,0.006684,-0.007746,0.249880,0,0);-ms-transform:matrix(0.215611,0.006684,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.215611,0.006684,-0.007746,0.249880,0,0);}
.m14e_c01102{transform:matrix(0.215740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215740,0.000000,0.000000,0.250000,0,0);}
.md7_c01102{transform:matrix(0.215764,0.008207,-0.009503,0.249819,0,0);-ms-transform:matrix(0.215764,0.008207,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.215764,0.008207,-0.009503,0.249819,0,0);}
.m12e_c01102{transform:matrix(0.216125,0.009519,-0.011000,0.249758,0,0);-ms-transform:matrix(0.216125,0.009519,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.216125,0.009519,-0.011000,0.249758,0,0);}
.mae_c01102{transform:matrix(0.216341,0.006707,-0.007746,0.249880,0,0);-ms-transform:matrix(0.216341,0.006707,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.216341,0.006707,-0.007746,0.249880,0,0);}
.m11a_c01102{transform:matrix(0.216589,0.009106,-0.010501,0.249779,0,0);-ms-transform:matrix(0.216589,0.009106,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.216589,0.009106,-0.010501,0.249779,0,0);}
.ma3_c01102{transform:matrix(0.216621,0.006715,-0.007746,0.249880,0,0);-ms-transform:matrix(0.216621,0.006715,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.216621,0.006715,-0.007746,0.249880,0,0);}
.m43_c01102{transform:matrix(0.216891,0.006724,-0.007746,0.249880,0,0);-ms-transform:matrix(0.216891,0.006724,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.216891,0.006724,-0.007746,0.249880,0,0);}
.m10_c01102{transform:matrix(0.217910,0.006755,-0.007746,0.249880,0,0);-ms-transform:matrix(0.217910,0.006755,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.217910,0.006755,-0.007746,0.249880,0,0);}
.mc5_c01102{transform:matrix(0.218437,0.008309,-0.009503,0.249819,0,0);-ms-transform:matrix(0.218437,0.008309,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.218437,0.008309,-0.009503,0.249819,0,0);}
.mc8_c01102{transform:matrix(0.218607,0.008315,-0.009503,0.249819,0,0);-ms-transform:matrix(0.218607,0.008315,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.218607,0.008315,-0.009503,0.249819,0,0);}
.md2_c01102{transform:matrix(0.219052,0.008332,-0.009503,0.249819,0,0);-ms-transform:matrix(0.219052,0.008332,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.219052,0.008332,-0.009503,0.249819,0,0);}
.m136_c01102{transform:matrix(0.220037,0.009691,-0.011000,0.249758,0,0);-ms-transform:matrix(0.220037,0.009691,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.220037,0.009691,-0.011000,0.249758,0,0);}
.m149_c01102{transform:matrix(0.220126,0.008373,-0.009503,0.249819,0,0);-ms-transform:matrix(0.220126,0.008373,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.220126,0.008373,-0.009503,0.249819,0,0);}
.m9f_c01102{transform:matrix(0.220489,0.006835,-0.007746,0.249880,0,0);-ms-transform:matrix(0.220489,0.006835,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.220489,0.006835,-0.007746,0.249880,0,0);}
.m40_c01102{transform:matrix(0.220724,0.006842,-0.007746,0.249880,0,0);-ms-transform:matrix(0.220724,0.006842,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.220724,0.006842,-0.007746,0.249880,0,0);}
.mdc_c01102{transform:matrix(0.220930,0.008404,-0.009503,0.249819,0,0);-ms-transform:matrix(0.220930,0.008404,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.220930,0.008404,-0.009503,0.249819,0,0);}
.m58_c01102{transform:matrix(0.221269,0.006859,-0.007746,0.249880,0,0);-ms-transform:matrix(0.221269,0.006859,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.221269,0.006859,-0.007746,0.249880,0,0);}
.m35_c01102{transform:matrix(0.222383,0.006894,-0.007746,0.249880,0,0);-ms-transform:matrix(0.222383,0.006894,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.222383,0.006894,-0.007746,0.249880,0,0);}
.m14d_c01102{transform:matrix(0.222859,0.008477,-0.009503,0.249819,0,0);-ms-transform:matrix(0.222859,0.008477,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.222859,0.008477,-0.009503,0.249819,0,0);}
.mde_c01102{transform:matrix(0.223144,0.008488,-0.009503,0.249819,0,0);-ms-transform:matrix(0.223144,0.008488,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.223144,0.008488,-0.009503,0.249819,0,0);}
.m3b_c01102{transform:matrix(0.223273,0.006921,-0.007746,0.249880,0,0);-ms-transform:matrix(0.223273,0.006921,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.223273,0.006921,-0.007746,0.249880,0,0);}
.m1e_c01102{transform:matrix(0.223498,0.006928,-0.007746,0.249880,0,0);-ms-transform:matrix(0.223498,0.006928,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.223498,0.006928,-0.007746,0.249880,0,0);}
.m81_c01102{transform:matrix(0.223568,0.006931,-0.007746,0.249880,0,0);-ms-transform:matrix(0.223568,0.006931,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.223568,0.006931,-0.007746,0.249880,0,0);}
.m37_c01102{transform:matrix(0.224657,0.006964,-0.007746,0.249880,0,0);-ms-transform:matrix(0.224657,0.006964,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.224657,0.006964,-0.007746,0.249880,0,0);}
.m106_c01102{transform:matrix(0.224801,0.009451,-0.010501,0.249779,0,0);-ms-transform:matrix(0.224801,0.009451,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.224801,0.009451,-0.010501,0.249779,0,0);}
.mf1_c01102{transform:matrix(0.224837,0.008552,-0.009503,0.249819,0,0);-ms-transform:matrix(0.224837,0.008552,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.224837,0.008552,-0.009503,0.249819,0,0);}
.m115_c01102{transform:matrix(0.225761,0.009491,-0.010501,0.249779,0,0);-ms-transform:matrix(0.225761,0.009491,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.225761,0.009491,-0.010501,0.249779,0,0);}
.m143_c01102{transform:matrix(0.226166,0.008603,-0.009503,0.249819,0,0);-ms-transform:matrix(0.226166,0.008603,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.226166,0.008603,-0.009503,0.249819,0,0);}
.me3_c01102{transform:matrix(0.226206,0.008604,-0.009503,0.249819,0,0);-ms-transform:matrix(0.226206,0.008604,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.226206,0.008604,-0.009503,0.249819,0,0);}
.mcf_c01102{transform:matrix(0.226361,0.008610,-0.009503,0.249819,0,0);-ms-transform:matrix(0.226361,0.008610,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.226361,0.008610,-0.009503,0.249819,0,0);}
.m117_c01102{transform:matrix(0.226375,0.009517,-0.010501,0.249779,0,0);-ms-transform:matrix(0.226375,0.009517,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.226375,0.009517,-0.010501,0.249779,0,0);}
.m14b_c01102{transform:matrix(0.226636,0.008621,-0.009503,0.249819,0,0);-ms-transform:matrix(0.226636,0.008621,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.226636,0.008621,-0.009503,0.249819,0,0);}
.m140_c01102{transform:matrix(0.226651,0.008621,-0.009503,0.249819,0,0);-ms-transform:matrix(0.226651,0.008621,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.226651,0.008621,-0.009503,0.249819,0,0);}
.m12c_c01102{transform:matrix(0.227040,0.010000,-0.011000,0.249758,0,0);-ms-transform:matrix(0.227040,0.010000,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.227040,0.010000,-0.011000,0.249758,0,0);}
.mcb_c01102{transform:matrix(0.227061,0.008637,-0.009503,0.249819,0,0);-ms-transform:matrix(0.227061,0.008637,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.227061,0.008637,-0.009503,0.249819,0,0);}
.m123_c01102{transform:matrix(0.227229,0.009553,-0.010501,0.249779,0,0);-ms-transform:matrix(0.227229,0.009553,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.227229,0.009553,-0.010501,0.249779,0,0);}
.m132_c01102{transform:matrix(0.227405,0.010016,-0.011000,0.249758,0,0);-ms-transform:matrix(0.227405,0.010016,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.227405,0.010016,-0.011000,0.249758,0,0);}
.md6_c01102{transform:matrix(0.227550,0.008656,-0.009503,0.249819,0,0);-ms-transform:matrix(0.227550,0.008656,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.227550,0.008656,-0.009503,0.249819,0,0);}
.mf_c01102{transform:matrix(0.227980,0.007067,-0.007746,0.249880,0,0);-ms-transform:matrix(0.227980,0.007067,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.227980,0.007067,-0.007746,0.249880,0,0);}
.m44_c01102{transform:matrix(0.228485,0.007083,-0.007746,0.249880,0,0);-ms-transform:matrix(0.228485,0.007083,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.228485,0.007083,-0.007746,0.249880,0,0);}
.mf4_c01102{transform:matrix(0.228650,0.008697,-0.009503,0.249819,0,0);-ms-transform:matrix(0.228650,0.008697,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.228650,0.008697,-0.009503,0.249819,0,0);}
.mdf_c01102{transform:matrix(0.229164,0.008717,-0.009503,0.249819,0,0);-ms-transform:matrix(0.229164,0.008717,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.229164,0.008717,-0.009503,0.249819,0,0);}
.m3f_c01102{transform:matrix(0.229350,0.007110,-0.007746,0.249880,0,0);-ms-transform:matrix(0.229350,0.007110,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.229350,0.007110,-0.007746,0.249880,0,0);}
.m3_c01102{transform:matrix(0.229400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229400,0.000000,0.000000,0.250000,0,0);}
.m5c_c01102{transform:matrix(0.229415,0.007112,-0.007746,0.249880,0,0);-ms-transform:matrix(0.229415,0.007112,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.229415,0.007112,-0.007746,0.249880,0,0);}
.m88_c01102{transform:matrix(0.230099,0.007133,-0.007746,0.249880,0,0);-ms-transform:matrix(0.230099,0.007133,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.230099,0.007133,-0.007746,0.249880,0,0);}
.mce_c01102{transform:matrix(0.230159,0.008755,-0.009503,0.249819,0,0);-ms-transform:matrix(0.230159,0.008755,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.230159,0.008755,-0.009503,0.249819,0,0);}
.me2_c01102{transform:matrix(0.230598,0.008772,-0.009503,0.249819,0,0);-ms-transform:matrix(0.230598,0.008772,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.230598,0.008772,-0.009503,0.249819,0,0);}
.md9_c01102{transform:matrix(0.230628,0.008773,-0.009503,0.249819,0,0);-ms-transform:matrix(0.230628,0.008773,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.230628,0.008773,-0.009503,0.249819,0,0);}
.m87_c01102{transform:matrix(0.230634,0.007150,-0.007746,0.249880,0,0);-ms-transform:matrix(0.230634,0.007150,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.230634,0.007150,-0.007746,0.249880,0,0);}
.m13b_c01102{transform:matrix(0.230638,0.008773,-0.009503,0.249819,0,0);-ms-transform:matrix(0.230638,0.008773,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.230638,0.008773,-0.009503,0.249819,0,0);}
.mbc_c01102{transform:matrix(0.230728,0.008776,-0.009503,0.249819,0,0);-ms-transform:matrix(0.230728,0.008776,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.230728,0.008776,-0.009503,0.249819,0,0);}
.m19_c01102{transform:matrix(0.230784,0.007154,-0.007746,0.249880,0,0);-ms-transform:matrix(0.230784,0.007154,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.230784,0.007154,-0.007746,0.249880,0,0);}
.m38_c01102{transform:matrix(0.231159,0.007166,-0.007746,0.249880,0,0);-ms-transform:matrix(0.231159,0.007166,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.231159,0.007166,-0.007746,0.249880,0,0);}
.m126_c01102{transform:matrix(0.231436,0.009730,-0.010501,0.249779,0,0);-ms-transform:matrix(0.231436,0.009730,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.231436,0.009730,-0.010501,0.249779,0,0);}
.ma4_c01102{transform:matrix(0.231509,0.007177,-0.007746,0.249880,0,0);-ms-transform:matrix(0.231509,0.007177,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.231509,0.007177,-0.007746,0.249880,0,0);}
.m2a_c01102{transform:matrix(0.231514,0.007177,-0.007746,0.249880,0,0);-ms-transform:matrix(0.231514,0.007177,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.231514,0.007177,-0.007746,0.249880,0,0);}
.m30_c01102{transform:matrix(0.231579,0.007179,-0.007746,0.249880,0,0);-ms-transform:matrix(0.231579,0.007179,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.231579,0.007179,-0.007746,0.249880,0,0);}
.ma7_c01102{transform:matrix(0.231879,0.007188,-0.007746,0.249880,0,0);-ms-transform:matrix(0.231879,0.007188,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.231879,0.007188,-0.007746,0.249880,0,0);}
.m138_c01102{transform:matrix(0.231962,0.008823,-0.009503,0.249819,0,0);-ms-transform:matrix(0.231962,0.008823,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.231962,0.008823,-0.009503,0.249819,0,0);}
.m113_c01102{transform:matrix(0.232080,0.009757,-0.010501,0.249779,0,0);-ms-transform:matrix(0.232080,0.009757,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.232080,0.009757,-0.010501,0.249779,0,0);}
.m26_c01102{transform:matrix(0.232443,0.007206,-0.007746,0.249880,0,0);-ms-transform:matrix(0.232443,0.007206,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.232443,0.007206,-0.007746,0.249880,0,0);}
.m8b_c01102{transform:matrix(0.232483,0.007207,-0.007746,0.249880,0,0);-ms-transform:matrix(0.232483,0.007207,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.232483,0.007207,-0.007746,0.249880,0,0);}
.m2d_c01102{transform:matrix(0.232873,0.007219,-0.007746,0.249880,0,0);-ms-transform:matrix(0.232873,0.007219,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.232873,0.007219,-0.007746,0.249880,0,0);}
.m52_c01102{transform:matrix(0.233503,0.007239,-0.007746,0.249880,0,0);-ms-transform:matrix(0.233503,0.007239,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.233503,0.007239,-0.007746,0.249880,0,0);}
.mf6_c01102{transform:matrix(0.233526,0.008883,-0.009503,0.249819,0,0);-ms-transform:matrix(0.233526,0.008883,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.233526,0.008883,-0.009503,0.249819,0,0);}
.m32_c01102{transform:matrix(0.233583,0.007241,-0.007746,0.249880,0,0);-ms-transform:matrix(0.233583,0.007241,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.233583,0.007241,-0.007746,0.249880,0,0);}
.mb_c01102{transform:matrix(0.233623,0.007242,-0.007746,0.249880,0,0);-ms-transform:matrix(0.233623,0.007242,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.233623,0.007242,-0.007746,0.249880,0,0);}
.ma6_c01102{transform:matrix(0.233728,0.007246,-0.007746,0.249880,0,0);-ms-transform:matrix(0.233728,0.007246,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.233728,0.007246,-0.007746,0.249880,0,0);}
.m75_c01102{transform:matrix(0.233908,0.007251,-0.007746,0.249880,0,0);-ms-transform:matrix(0.233908,0.007251,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.233908,0.007251,-0.007746,0.249880,0,0);}
.m47_c01102{transform:matrix(0.233973,0.007253,-0.007746,0.249880,0,0);-ms-transform:matrix(0.233973,0.007253,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.233973,0.007253,-0.007746,0.249880,0,0);}
.mc0_c01102{transform:matrix(0.234191,0.008908,-0.009503,0.249819,0,0);-ms-transform:matrix(0.234191,0.008908,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.234191,0.008908,-0.009503,0.249819,0,0);}
.m28_c01102{transform:matrix(0.234192,0.007260,-0.007746,0.249880,0,0);-ms-transform:matrix(0.234192,0.007260,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.234192,0.007260,-0.007746,0.249880,0,0);}
.m1c_c01102{transform:matrix(0.234247,0.007262,-0.007746,0.249880,0,0);-ms-transform:matrix(0.234247,0.007262,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.234247,0.007262,-0.007746,0.249880,0,0);}
.m96_c01102{transform:matrix(0.234672,0.007275,-0.007746,0.249880,0,0);-ms-transform:matrix(0.234672,0.007275,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.234672,0.007275,-0.007746,0.249880,0,0);}
.maa_c01102{transform:matrix(0.234687,0.007275,-0.007746,0.249880,0,0);-ms-transform:matrix(0.234687,0.007275,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.234687,0.007275,-0.007746,0.249880,0,0);}
.ma9_c01102{transform:matrix(0.234772,0.007278,-0.007746,0.249880,0,0);-ms-transform:matrix(0.234772,0.007278,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.234772,0.007278,-0.007746,0.249880,0,0);}
.m6_c01102{transform:matrix(0.234822,0.007279,-0.007746,0.249880,0,0);-ms-transform:matrix(0.234822,0.007279,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.234822,0.007279,-0.007746,0.249880,0,0);}
.m107_c01102{transform:matrix(0.234873,0.009875,-0.010501,0.249779,0,0);-ms-transform:matrix(0.234873,0.009875,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.234873,0.009875,-0.010501,0.249779,0,0);}
.m68_c01102{transform:matrix(0.235407,0.007298,-0.007746,0.249880,0,0);-ms-transform:matrix(0.235407,0.007298,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.235407,0.007298,-0.007746,0.249880,0,0);}
.mdb_c01102{transform:matrix(0.235789,0.008969,-0.009503,0.249819,0,0);-ms-transform:matrix(0.235789,0.008969,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.235789,0.008969,-0.009503,0.249819,0,0);}
.m10f_c01102{transform:matrix(0.236236,0.009932,-0.010501,0.249779,0,0);-ms-transform:matrix(0.236236,0.009932,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.236236,0.009932,-0.010501,0.249779,0,0);}
.m74_c01102{transform:matrix(0.236331,0.007326,-0.007746,0.249880,0,0);-ms-transform:matrix(0.236331,0.007326,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.236331,0.007326,-0.007746,0.249880,0,0);}
.m94_c01102{transform:matrix(0.236531,0.007332,-0.007746,0.249880,0,0);-ms-transform:matrix(0.236531,0.007332,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.236531,0.007332,-0.007746,0.249880,0,0);}
.m57_c01102{transform:matrix(0.236611,0.007335,-0.007746,0.249880,0,0);-ms-transform:matrix(0.236611,0.007335,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.236611,0.007335,-0.007746,0.249880,0,0);}
.m130_c01102{transform:matrix(0.237055,0.010441,-0.011000,0.249758,0,0);-ms-transform:matrix(0.237055,0.010441,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.237055,0.010441,-0.011000,0.249758,0,0);}
.m16_c01102{transform:matrix(0.237071,0.007349,-0.007746,0.249880,0,0);-ms-transform:matrix(0.237071,0.007349,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.237071,0.007349,-0.007746,0.249880,0,0);}
.m89_c01102{transform:matrix(0.237121,0.007351,-0.007746,0.249880,0,0);-ms-transform:matrix(0.237121,0.007351,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.237121,0.007351,-0.007746,0.249880,0,0);}
.md3_c01102{transform:matrix(0.237129,0.009020,-0.009503,0.249819,0,0);-ms-transform:matrix(0.237129,0.009020,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.237129,0.009020,-0.009503,0.249819,0,0);}
.m141_c01102{transform:matrix(0.237213,0.009023,-0.009503,0.249819,0,0);-ms-transform:matrix(0.237213,0.009023,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.237213,0.009023,-0.009503,0.249819,0,0);}
.md0_c01102{transform:matrix(0.237998,0.009053,-0.009503,0.249819,0,0);-ms-transform:matrix(0.237998,0.009053,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.237998,0.009053,-0.009503,0.249819,0,0);}
.mfa_c01102{transform:matrix(0.238183,0.009060,-0.009503,0.249819,0,0);-ms-transform:matrix(0.238183,0.009060,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.238183,0.009060,-0.009503,0.249819,0,0);}
.m46_c01102{transform:matrix(0.238186,0.007384,-0.007746,0.249880,0,0);-ms-transform:matrix(0.238186,0.007384,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.238186,0.007384,-0.007746,0.249880,0,0);}
.m9c_c01102{transform:matrix(0.238360,0.007389,-0.007746,0.249880,0,0);-ms-transform:matrix(0.238360,0.007389,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.238360,0.007389,-0.007746,0.249880,0,0);}
.mb7_c01102{transform:matrix(0.238373,0.009067,-0.009503,0.249819,0,0);-ms-transform:matrix(0.238373,0.009067,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.238373,0.009067,-0.009503,0.249819,0,0);}
.m147_c01102{transform:matrix(0.238692,0.009079,-0.009503,0.249819,0,0);-ms-transform:matrix(0.238692,0.009079,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.238692,0.009079,-0.009503,0.249819,0,0);}
.m110_c01102{transform:matrix(0.239099,0.010052,-0.010501,0.249779,0,0);-ms-transform:matrix(0.239099,0.010052,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.239099,0.010052,-0.010501,0.249779,0,0);}
.m103_c01102{transform:matrix(0.239698,0.010077,-0.010501,0.249779,0,0);-ms-transform:matrix(0.239698,0.010077,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.239698,0.010077,-0.010501,0.249779,0,0);}
.m146_c01102{transform:matrix(0.239946,0.009127,-0.009503,0.249819,0,0);-ms-transform:matrix(0.239946,0.009127,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.239946,0.009127,-0.009503,0.249819,0,0);}
.m4a_c01102{transform:matrix(0.240180,0.007446,-0.007746,0.249880,0,0);-ms-transform:matrix(0.240180,0.007446,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.240180,0.007446,-0.007746,0.249880,0,0);}
.me1_c01102{transform:matrix(0.240236,0.009138,-0.009503,0.249819,0,0);-ms-transform:matrix(0.240236,0.009138,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.240236,0.009138,-0.009503,0.249819,0,0);}
.mc3_c01102{transform:matrix(0.241126,0.009172,-0.009503,0.249819,0,0);-ms-transform:matrix(0.241126,0.009172,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.241126,0.009172,-0.009503,0.249819,0,0);}
.m105_c01102{transform:matrix(0.241292,0.010144,-0.010501,0.249779,0,0);-ms-transform:matrix(0.241292,0.010144,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.241292,0.010144,-0.010501,0.249779,0,0);}
.m9e_c01102{transform:matrix(0.241809,0.007496,-0.007746,0.249880,0,0);-ms-transform:matrix(0.241809,0.007496,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.241809,0.007496,-0.007746,0.249880,0,0);}
.m99_c01102{transform:matrix(0.241939,0.007500,-0.007746,0.249880,0,0);-ms-transform:matrix(0.241939,0.007500,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.241939,0.007500,-0.007746,0.249880,0,0);}
.m134_c01102{transform:matrix(0.242075,0.010662,-0.011000,0.249758,0,0);-ms-transform:matrix(0.242075,0.010662,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.242075,0.010662,-0.011000,0.249758,0,0);}
.m12_c01102{transform:matrix(0.242289,0.007511,-0.007746,0.249880,0,0);-ms-transform:matrix(0.242289,0.007511,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.242289,0.007511,-0.007746,0.249880,0,0);}
.m24_c01102{transform:matrix(0.242359,0.007513,-0.007746,0.249880,0,0);-ms-transform:matrix(0.242359,0.007513,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.242359,0.007513,-0.007746,0.249880,0,0);}
.m5e_c01102{transform:matrix(0.242638,0.007522,-0.007746,0.249880,0,0);-ms-transform:matrix(0.242638,0.007522,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.242638,0.007522,-0.007746,0.249880,0,0);}
.m11c_c01102{transform:matrix(0.242766,0.010206,-0.010501,0.249779,0,0);-ms-transform:matrix(0.242766,0.010206,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.242766,0.010206,-0.010501,0.249779,0,0);}
.mad_c01102{transform:matrix(0.243023,0.007534,-0.007746,0.249880,0,0);-ms-transform:matrix(0.243023,0.007534,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.243023,0.007534,-0.007746,0.249880,0,0);}
.m10a_c01102{transform:matrix(0.243160,0.010223,-0.010501,0.249779,0,0);-ms-transform:matrix(0.243160,0.010223,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.243160,0.010223,-0.010501,0.249779,0,0);}
.m63_c01102{transform:matrix(0.243178,0.007539,-0.007746,0.249880,0,0);-ms-transform:matrix(0.243178,0.007539,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.243178,0.007539,-0.007746,0.249880,0,0);}
.mf2_c01102{transform:matrix(0.243199,0.009251,-0.009503,0.249819,0,0);-ms-transform:matrix(0.243199,0.009251,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.243199,0.009251,-0.009503,0.249819,0,0);}
.m2b_c01102{transform:matrix(0.243258,0.007541,-0.007746,0.249880,0,0);-ms-transform:matrix(0.243258,0.007541,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.243258,0.007541,-0.007746,0.249880,0,0);}
.m101_c01102{transform:matrix(0.243280,0.010228,-0.010501,0.249779,0,0);-ms-transform:matrix(0.243280,0.010228,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.243280,0.010228,-0.010501,0.249779,0,0);}
.m1a_c01102{transform:matrix(0.243978,0.007563,-0.007746,0.249880,0,0);-ms-transform:matrix(0.243978,0.007563,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.243978,0.007563,-0.007746,0.249880,0,0);}
.m11e_c01102{transform:matrix(0.244564,0.010282,-0.010501,0.249779,0,0);-ms-transform:matrix(0.244564,0.010282,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.244564,0.010282,-0.010501,0.249779,0,0);}
.me7_c01102{transform:matrix(0.244653,0.009306,-0.009503,0.249819,0,0);-ms-transform:matrix(0.244653,0.009306,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.244653,0.009306,-0.009503,0.249819,0,0);}
.m111_c01102{transform:matrix(0.244809,0.010292,-0.010501,0.249779,0,0);-ms-transform:matrix(0.244809,0.010292,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.244809,0.010292,-0.010501,0.249779,0,0);}
.m100_c01102{transform:matrix(0.245243,0.010311,-0.010501,0.249779,0,0);-ms-transform:matrix(0.245243,0.010311,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.245243,0.010311,-0.010501,0.249779,0,0);}
.m65_c01102{transform:matrix(0.245522,0.007611,-0.007746,0.249880,0,0);-ms-transform:matrix(0.245522,0.007611,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.245522,0.007611,-0.007746,0.249880,0,0);}
.m3c_c01102{transform:matrix(0.245607,0.007614,-0.007746,0.249880,0,0);-ms-transform:matrix(0.245607,0.007614,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.245607,0.007614,-0.007746,0.249880,0,0);}
.m133_c01102{transform:matrix(0.246061,0.010838,-0.011000,0.249758,0,0);-ms-transform:matrix(0.246061,0.010838,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.246061,0.010838,-0.011000,0.249758,0,0);}
.m14_c01102{transform:matrix(0.246147,0.007631,-0.007746,0.249880,0,0);-ms-transform:matrix(0.246147,0.007631,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.246147,0.007631,-0.007746,0.249880,0,0);}
.mf7_c01102{transform:matrix(0.246552,0.009378,-0.009503,0.249819,0,0);-ms-transform:matrix(0.246552,0.009378,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.246552,0.009378,-0.009503,0.249819,0,0);}
.m12f_c01102{transform:matrix(0.246616,0.010862,-0.011000,0.249758,0,0);-ms-transform:matrix(0.246616,0.010862,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.246616,0.010862,-0.011000,0.249758,0,0);}
.m8f_c01102{transform:matrix(0.246726,0.007649,-0.007746,0.249880,0,0);-ms-transform:matrix(0.246726,0.007649,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.246726,0.007649,-0.007746,0.249880,0,0);}
.m62_c01102{transform:matrix(0.246736,0.007649,-0.007746,0.249880,0,0);-ms-transform:matrix(0.246736,0.007649,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.246736,0.007649,-0.007746,0.249880,0,0);}
.m55_c01102{transform:matrix(0.246821,0.007651,-0.007746,0.249880,0,0);-ms-transform:matrix(0.246821,0.007651,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.246821,0.007651,-0.007746,0.249880,0,0);}
.m7f_c01102{transform:matrix(0.247181,0.007663,-0.007746,0.249880,0,0);-ms-transform:matrix(0.247181,0.007663,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.247181,0.007663,-0.007746,0.249880,0,0);}
.mfc_c01102{transform:matrix(0.247221,0.009404,-0.009503,0.249819,0,0);-ms-transform:matrix(0.247221,0.009404,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.247221,0.009404,-0.009503,0.249819,0,0);}
.mb1_c01102{transform:matrix(0.247436,0.009412,-0.009503,0.249819,0,0);-ms-transform:matrix(0.247436,0.009412,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.247436,0.009412,-0.009503,0.249819,0,0);}
.ma2_c01102{transform:matrix(0.247451,0.007671,-0.007746,0.249880,0,0);-ms-transform:matrix(0.247451,0.007671,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.247451,0.007671,-0.007746,0.249880,0,0);}
.m39_c01102{transform:matrix(0.247586,0.007675,-0.007746,0.249880,0,0);-ms-transform:matrix(0.247586,0.007675,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.247586,0.007675,-0.007746,0.249880,0,0);}
.m6a_c01102{transform:matrix(0.247636,0.007677,-0.007746,0.249880,0,0);-ms-transform:matrix(0.247636,0.007677,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.247636,0.007677,-0.007746,0.249880,0,0);}
.m5f_c01102{transform:matrix(0.248006,0.007688,-0.007746,0.249880,0,0);-ms-transform:matrix(0.248006,0.007688,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.248006,0.007688,-0.007746,0.249880,0,0);}
.m135_c01102{transform:matrix(0.248035,0.010924,-0.011000,0.249758,0,0);-ms-transform:matrix(0.248035,0.010924,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.248035,0.010924,-0.011000,0.249758,0,0);}
.mab_c01102{transform:matrix(0.248356,0.007699,-0.007746,0.249880,0,0);-ms-transform:matrix(0.248356,0.007699,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.248356,0.007699,-0.007746,0.249880,0,0);}
.m90_c01102{transform:matrix(0.248830,0.007714,-0.007746,0.249880,0,0);-ms-transform:matrix(0.248830,0.007714,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.248830,0.007714,-0.007746,0.249880,0,0);}
.mb9_c01102{transform:matrix(0.248850,0.009466,-0.009503,0.249819,0,0);-ms-transform:matrix(0.248850,0.009466,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.248850,0.009466,-0.009503,0.249819,0,0);}
.m56_c01102{transform:matrix(0.249285,0.007728,-0.007746,0.249880,0,0);-ms-transform:matrix(0.249285,0.007728,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.249285,0.007728,-0.007746,0.249880,0,0);}
.m86_c01102{transform:matrix(0.249530,0.007735,-0.007746,0.249880,0,0);-ms-transform:matrix(0.249530,0.007735,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.249530,0.007735,-0.007746,0.249880,0,0);}
.m61_c01102{transform:matrix(0.249700,0.007741,-0.007746,0.249880,0,0);-ms-transform:matrix(0.249700,0.007741,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.249700,0.007741,-0.007746,0.249880,0,0);}
.m72_c01102{transform:matrix(0.249840,0.007745,-0.007746,0.249880,0,0);-ms-transform:matrix(0.249840,0.007745,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.249840,0.007745,-0.007746,0.249880,0,0);}
.m8a_c01102{transform:matrix(0.250120,0.007754,-0.007746,0.249880,0,0);-ms-transform:matrix(0.250120,0.007754,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.250120,0.007754,-0.007746,0.249880,0,0);}
.m9a_c01102{transform:matrix(0.250190,0.007756,-0.007746,0.249880,0,0);-ms-transform:matrix(0.250190,0.007756,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.250190,0.007756,-0.007746,0.249880,0,0);}
.m109_c01102{transform:matrix(0.250249,0.010521,-0.010501,0.249779,0,0);-ms-transform:matrix(0.250249,0.010521,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.250249,0.010521,-0.010501,0.249779,0,0);}
.ma0_c01102{transform:matrix(0.250365,0.007761,-0.007746,0.249880,0,0);-ms-transform:matrix(0.250365,0.007761,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.250365,0.007761,-0.007746,0.249880,0,0);}
.m11_c01102{transform:matrix(0.250745,0.007773,-0.007746,0.249880,0,0);-ms-transform:matrix(0.250745,0.007773,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.250745,0.007773,-0.007746,0.249880,0,0);}
.m69_c01102{transform:matrix(0.250810,0.007775,-0.007746,0.249880,0,0);-ms-transform:matrix(0.250810,0.007775,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.250810,0.007775,-0.007746,0.249880,0,0);}
.mb8_c01102{transform:matrix(0.250829,0.009541,-0.009503,0.249819,0,0);-ms-transform:matrix(0.250829,0.009541,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.250829,0.009541,-0.009503,0.249819,0,0);}
.m11b_c01102{transform:matrix(0.250973,0.010551,-0.010501,0.249779,0,0);-ms-transform:matrix(0.250973,0.010551,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.250973,0.010551,-0.010501,0.249779,0,0);}
.m50_c01102{transform:matrix(0.251004,0.007781,-0.007746,0.249880,0,0);-ms-transform:matrix(0.251004,0.007781,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.251004,0.007781,-0.007746,0.249880,0,0);}
.m13_c01102{transform:matrix(0.251884,0.007808,-0.007746,0.249880,0,0);-ms-transform:matrix(0.251884,0.007808,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.251884,0.007808,-0.007746,0.249880,0,0);}
.mb0_c01102{transform:matrix(0.251933,0.009583,-0.009503,0.249819,0,0);-ms-transform:matrix(0.251933,0.009583,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.251933,0.009583,-0.009503,0.249819,0,0);}
.m3e_c01102{transform:matrix(0.252099,0.007815,-0.007746,0.249880,0,0);-ms-transform:matrix(0.252099,0.007815,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.252099,0.007815,-0.007746,0.249880,0,0);}
.mbd_c01102{transform:matrix(0.252208,0.009593,-0.009503,0.249819,0,0);-ms-transform:matrix(0.252208,0.009593,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.252208,0.009593,-0.009503,0.249819,0,0);}
.m93_c01102{transform:matrix(0.252244,0.007820,-0.007746,0.249880,0,0);-ms-transform:matrix(0.252244,0.007820,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.252244,0.007820,-0.007746,0.249880,0,0);}
.m82_c01102{transform:matrix(0.252269,0.007820,-0.007746,0.249880,0,0);-ms-transform:matrix(0.252269,0.007820,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.252269,0.007820,-0.007746,0.249880,0,0);}
.me_c01102{transform:matrix(0.252469,0.007827,-0.007746,0.249880,0,0);-ms-transform:matrix(0.252469,0.007827,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.252469,0.007827,-0.007746,0.249880,0,0);}
.mee_c01102{transform:matrix(0.252852,0.009618,-0.009503,0.249819,0,0);-ms-transform:matrix(0.252852,0.009618,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.252852,0.009618,-0.009503,0.249819,0,0);}
.m9b_c01102{transform:matrix(0.252914,0.007840,-0.007746,0.249880,0,0);-ms-transform:matrix(0.252914,0.007840,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.252914,0.007840,-0.007746,0.249880,0,0);}
.me5_c01102{transform:matrix(0.253362,0.009637,-0.009503,0.249819,0,0);-ms-transform:matrix(0.253362,0.009637,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.253362,0.009637,-0.009503,0.249819,0,0);}
.me4_c01102{transform:matrix(0.253427,0.009640,-0.009503,0.249819,0,0);-ms-transform:matrix(0.253427,0.009640,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.253427,0.009640,-0.009503,0.249819,0,0);}
.m118_c01102{transform:matrix(0.253586,0.010661,-0.010501,0.249779,0,0);-ms-transform:matrix(0.253586,0.010661,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.253586,0.010661,-0.010501,0.249779,0,0);}
.m5a_c01102{transform:matrix(0.255087,0.007908,-0.007746,0.249880,0,0);-ms-transform:matrix(0.255087,0.007908,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.255087,0.007908,-0.007746,0.249880,0,0);}
.mea_c01102{transform:matrix(0.255490,0.009718,-0.009503,0.249819,0,0);-ms-transform:matrix(0.255490,0.009718,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.255490,0.009718,-0.009503,0.249819,0,0);}
.me6_c01102{transform:matrix(0.256305,0.009749,-0.009503,0.249819,0,0);-ms-transform:matrix(0.256305,0.009749,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.256305,0.009749,-0.009503,0.249819,0,0);}
.m5_c01102{transform:matrix(0.256320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256320,0.000000,0.000000,0.250000,0,0);}
.m34_c01102{transform:matrix(0.256487,0.007951,-0.007746,0.249880,0,0);-ms-transform:matrix(0.256487,0.007951,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.256487,0.007951,-0.007746,0.249880,0,0);}
.m67_c01102{transform:matrix(0.256512,0.007952,-0.007746,0.249880,0,0);-ms-transform:matrix(0.256512,0.007952,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.256512,0.007952,-0.007746,0.249880,0,0);}
.mf9_c01102{transform:matrix(0.256559,0.009759,-0.009503,0.249819,0,0);-ms-transform:matrix(0.256559,0.009759,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.256559,0.009759,-0.009503,0.249819,0,0);}
.m42_c01102{transform:matrix(0.257106,0.007970,-0.007746,0.249880,0,0);-ms-transform:matrix(0.257106,0.007970,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.257106,0.007970,-0.007746,0.249880,0,0);}
.m104_c01102{transform:matrix(0.257263,0.010816,-0.010501,0.249779,0,0);-ms-transform:matrix(0.257263,0.010816,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.257263,0.010816,-0.010501,0.249779,0,0);}
.m41_c01102{transform:matrix(0.257371,0.007979,-0.007746,0.249880,0,0);-ms-transform:matrix(0.257371,0.007979,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.257371,0.007979,-0.007746,0.249880,0,0);}
.m108_c01102{transform:matrix(0.257557,0.010828,-0.010501,0.249779,0,0);-ms-transform:matrix(0.257557,0.010828,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.257557,0.010828,-0.010501,0.249779,0,0);}
.m137_c01102{transform:matrix(0.257665,0.011349,-0.011000,0.249758,0,0);-ms-transform:matrix(0.257665,0.011349,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.257665,0.011349,-0.011000,0.249758,0,0);}
.m95_c01102{transform:matrix(0.257776,0.007991,-0.007746,0.249880,0,0);-ms-transform:matrix(0.257776,0.007991,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.257776,0.007991,-0.007746,0.249880,0,0);}
.m91_c01102{transform:matrix(0.257946,0.007996,-0.007746,0.249880,0,0);-ms-transform:matrix(0.257946,0.007996,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.257946,0.007996,-0.007746,0.249880,0,0);}
.m12d_c01102{transform:matrix(0.258110,0.011368,-0.011000,0.249758,0,0);-ms-transform:matrix(0.258110,0.011368,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.258110,0.011368,-0.011000,0.249758,0,0);}
.m7d_c01102{transform:matrix(0.258506,0.008014,-0.007746,0.249880,0,0);-ms-transform:matrix(0.258506,0.008014,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.258506,0.008014,-0.007746,0.249880,0,0);}
.m36_c01102{transform:matrix(0.258591,0.008016,-0.007746,0.249880,0,0);-ms-transform:matrix(0.258591,0.008016,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.258591,0.008016,-0.007746,0.249880,0,0);}
.m21_c01102{transform:matrix(0.259495,0.008044,-0.007746,0.249880,0,0);-ms-transform:matrix(0.259495,0.008044,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.259495,0.008044,-0.007746,0.249880,0,0);}
.m4b_c01102{transform:matrix(0.259755,0.008052,-0.007746,0.249880,0,0);-ms-transform:matrix(0.259755,0.008052,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.259755,0.008052,-0.007746,0.249880,0,0);}
.m6e_c01102{transform:matrix(0.260235,0.008067,-0.007746,0.249880,0,0);-ms-transform:matrix(0.260235,0.008067,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.260235,0.008067,-0.007746,0.249880,0,0);}
.m7_c01102{transform:matrix(0.260290,0.008069,-0.007746,0.249880,0,0);-ms-transform:matrix(0.260290,0.008069,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.260290,0.008069,-0.007746,0.249880,0,0);}
.mb3_c01102{transform:matrix(0.260632,0.009914,-0.009503,0.249819,0,0);-ms-transform:matrix(0.260632,0.009914,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.260632,0.009914,-0.009503,0.249819,0,0);}
.m1d_c01102{transform:matrix(0.260830,0.008086,-0.007746,0.249880,0,0);-ms-transform:matrix(0.260830,0.008086,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.260830,0.008086,-0.007746,0.249880,0,0);}
.mc2_c01102{transform:matrix(0.260871,0.009923,-0.009503,0.249819,0,0);-ms-transform:matrix(0.260871,0.009923,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.260871,0.009923,-0.009503,0.249819,0,0);}
.m7c_c01102{transform:matrix(0.260890,0.008088,-0.007746,0.249880,0,0);-ms-transform:matrix(0.260890,0.008088,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.260890,0.008088,-0.007746,0.249880,0,0);}
.mbe_c01102{transform:matrix(0.261176,0.009935,-0.009503,0.249819,0,0);-ms-transform:matrix(0.261176,0.009935,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.261176,0.009935,-0.009503,0.249819,0,0);}
.m20_c01102{transform:matrix(0.261369,0.008102,-0.007746,0.249880,0,0);-ms-transform:matrix(0.261369,0.008102,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.261369,0.008102,-0.007746,0.249880,0,0);}
.meb_c01102{transform:matrix(0.261501,0.009947,-0.009503,0.249819,0,0);-ms-transform:matrix(0.261501,0.009947,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.261501,0.009947,-0.009503,0.249819,0,0);}
.m85_c01102{transform:matrix(0.262189,0.008128,-0.007746,0.249880,0,0);-ms-transform:matrix(0.262189,0.008128,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.262189,0.008128,-0.007746,0.249880,0,0);}
.m11f_c01102{transform:matrix(0.262353,0.011030,-0.010501,0.249779,0,0);-ms-transform:matrix(0.262353,0.011030,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.262353,0.011030,-0.010501,0.249779,0,0);}
.m33_c01102{transform:matrix(0.262374,0.008134,-0.007746,0.249880,0,0);-ms-transform:matrix(0.262374,0.008134,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.262374,0.008134,-0.007746,0.249880,0,0);}
.m17_c01102{transform:matrix(0.262449,0.008136,-0.007746,0.249880,0,0);-ms-transform:matrix(0.262449,0.008136,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.262449,0.008136,-0.007746,0.249880,0,0);}
.m10c_c01102{transform:matrix(0.262503,0.011036,-0.010501,0.249779,0,0);-ms-transform:matrix(0.262503,0.011036,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.262503,0.011036,-0.010501,0.249779,0,0);}
.mf3_c01102{transform:matrix(0.262575,0.009988,-0.009503,0.249819,0,0);-ms-transform:matrix(0.262575,0.009988,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.262575,0.009988,-0.009503,0.249819,0,0);}
.med_c01102{transform:matrix(0.262815,0.009997,-0.009503,0.249819,0,0);-ms-transform:matrix(0.262815,0.009997,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.262815,0.009997,-0.009503,0.249819,0,0);}
.mb2_c01102{transform:matrix(0.262955,0.010002,-0.009503,0.249819,0,0);-ms-transform:matrix(0.262955,0.010002,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.262955,0.010002,-0.009503,0.249819,0,0);}
.mba_c01102{transform:matrix(0.263110,0.010008,-0.009503,0.249819,0,0);-ms-transform:matrix(0.263110,0.010008,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.263110,0.010008,-0.009503,0.249819,0,0);}
.m76_c01102{transform:matrix(0.263358,0.008164,-0.007746,0.249880,0,0);-ms-transform:matrix(0.263358,0.008164,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.263358,0.008164,-0.007746,0.249880,0,0);}
.m4e_c01102{transform:matrix(0.263608,0.008172,-0.007746,0.249880,0,0);-ms-transform:matrix(0.263608,0.008172,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.263608,0.008172,-0.007746,0.249880,0,0);}
.mf8_c01102{transform:matrix(0.263834,0.010036,-0.009503,0.249819,0,0);-ms-transform:matrix(0.263834,0.010036,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.263834,0.010036,-0.009503,0.249819,0,0);}
.mb5_c01102{transform:matrix(0.264019,0.010043,-0.009503,0.249819,0,0);-ms-transform:matrix(0.264019,0.010043,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.264019,0.010043,-0.009503,0.249819,0,0);}
.m83_c01102{transform:matrix(0.264028,0.008185,-0.007746,0.249880,0,0);-ms-transform:matrix(0.264028,0.008185,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.264028,0.008185,-0.007746,0.249880,0,0);}
.m8e_c01102{transform:matrix(0.264083,0.008187,-0.007746,0.249880,0,0);-ms-transform:matrix(0.264083,0.008187,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.264083,0.008187,-0.007746,0.249880,0,0);}
.m22_c01102{transform:matrix(0.264213,0.008191,-0.007746,0.249880,0,0);-ms-transform:matrix(0.264213,0.008191,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.264213,0.008191,-0.007746,0.249880,0,0);}
.m2e_c01102{transform:matrix(0.264343,0.008195,-0.007746,0.249880,0,0);-ms-transform:matrix(0.264343,0.008195,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.264343,0.008195,-0.007746,0.249880,0,0);}
.m27_c01102{transform:matrix(0.264418,0.008197,-0.007746,0.249880,0,0);-ms-transform:matrix(0.264418,0.008197,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.264418,0.008197,-0.007746,0.249880,0,0);}
.m10b_c01102{transform:matrix(0.264621,0.011125,-0.010501,0.249779,0,0);-ms-transform:matrix(0.264621,0.011125,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.264621,0.011125,-0.010501,0.249779,0,0);}
.m6d_c01102{transform:matrix(0.264833,0.008210,-0.007746,0.249880,0,0);-ms-transform:matrix(0.264833,0.008210,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.264833,0.008210,-0.007746,0.249880,0,0);}
.m53_c01102{transform:matrix(0.265193,0.008221,-0.007746,0.249880,0,0);-ms-transform:matrix(0.265193,0.008221,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.265193,0.008221,-0.007746,0.249880,0,0);}
.m1f_c01102{transform:matrix(0.265512,0.008231,-0.007746,0.249880,0,0);-ms-transform:matrix(0.265512,0.008231,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.265512,0.008231,-0.007746,0.249880,0,0);}
.m124_c01102{transform:matrix(0.265600,0.011166,-0.010501,0.249779,0,0);-ms-transform:matrix(0.265600,0.011166,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.265600,0.011166,-0.010501,0.249779,0,0);}
.m29_c01102{transform:matrix(0.265842,0.008241,-0.007746,0.249880,0,0);-ms-transform:matrix(0.265842,0.008241,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.265842,0.008241,-0.007746,0.249880,0,0);}
.mc_c01102{transform:matrix(0.266652,0.008266,-0.007746,0.249880,0,0);-ms-transform:matrix(0.266652,0.008266,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.266652,0.008266,-0.007746,0.249880,0,0);}
.m70_c01102{transform:matrix(0.266837,0.008272,-0.007746,0.249880,0,0);-ms-transform:matrix(0.266837,0.008272,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.266837,0.008272,-0.007746,0.249880,0,0);}
.m80_c01102{transform:matrix(0.267052,0.008279,-0.007746,0.249880,0,0);-ms-transform:matrix(0.267052,0.008279,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.267052,0.008279,-0.007746,0.249880,0,0);}
.m59_c01102{transform:matrix(0.267382,0.008289,-0.007746,0.249880,0,0);-ms-transform:matrix(0.267382,0.008289,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.267382,0.008289,-0.007746,0.249880,0,0);}
.md1_c01102{transform:matrix(0.267492,0.010175,-0.009503,0.249819,0,0);-ms-transform:matrix(0.267492,0.010175,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.267492,0.010175,-0.009503,0.249819,0,0);}
.m121_c01102{transform:matrix(0.268108,0.011272,-0.010501,0.249779,0,0);-ms-transform:matrix(0.268108,0.011272,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.268108,0.011272,-0.010501,0.249779,0,0);}
.m128_c01102{transform:matrix(0.268262,0.013964,-0.012995,0.249662,0,0);-ms-transform:matrix(0.268262,0.013964,-0.012995,0.249662,0,0);-webkit-transform:matrix(0.268262,0.013964,-0.012995,0.249662,0,0);}
.m49_c01102{transform:matrix(0.268526,0.008324,-0.007746,0.249880,0,0);-ms-transform:matrix(0.268526,0.008324,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.268526,0.008324,-0.007746,0.249880,0,0);}
.m4f_c01102{transform:matrix(0.268586,0.008326,-0.007746,0.249880,0,0);-ms-transform:matrix(0.268586,0.008326,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.268586,0.008326,-0.007746,0.249880,0,0);}
.m8c_c01102{transform:matrix(0.269086,0.008342,-0.007746,0.249880,0,0);-ms-transform:matrix(0.269086,0.008342,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.269086,0.008342,-0.007746,0.249880,0,0);}
.m8d_c01102{transform:matrix(0.269875,0.008366,-0.007746,0.249880,0,0);-ms-transform:matrix(0.269875,0.008366,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.269875,0.008366,-0.007746,0.249880,0,0);}
.m79_c01102{transform:matrix(0.270000,0.008370,-0.007746,0.249880,0,0);-ms-transform:matrix(0.270000,0.008370,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.270000,0.008370,-0.007746,0.249880,0,0);}
.m2c_c01102{transform:matrix(0.270670,0.008391,-0.007746,0.249880,0,0);-ms-transform:matrix(0.270670,0.008391,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.270670,0.008391,-0.007746,0.249880,0,0);}
.me8_c01102{transform:matrix(0.270814,0.010301,-0.009503,0.249819,0,0);-ms-transform:matrix(0.270814,0.010301,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.270814,0.010301,-0.009503,0.249819,0,0);}
.m127_c01102{transform:matrix(0.270856,0.011387,-0.010501,0.249779,0,0);-ms-transform:matrix(0.270856,0.011387,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.270856,0.011387,-0.010501,0.249779,0,0);}
.ma_c01102{transform:matrix(0.270885,0.008397,-0.007746,0.249880,0,0);-ms-transform:matrix(0.270885,0.008397,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.270885,0.008397,-0.007746,0.249880,0,0);}
.m71_c01102{transform:matrix(0.270915,0.008398,-0.007746,0.249880,0,0);-ms-transform:matrix(0.270915,0.008398,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.270915,0.008398,-0.007746,0.249880,0,0);}
.m97_c01102{transform:matrix(0.271340,0.008412,-0.007746,0.249880,0,0);-ms-transform:matrix(0.271340,0.008412,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.271340,0.008412,-0.007746,0.249880,0,0);}
.mb4_c01102{transform:matrix(0.271364,0.010322,-0.009503,0.249819,0,0);-ms-transform:matrix(0.271364,0.010322,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.271364,0.010322,-0.009503,0.249819,0,0);}
.m125_c01102{transform:matrix(0.271695,0.011423,-0.010501,0.249779,0,0);-ms-transform:matrix(0.271695,0.011423,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.271695,0.011423,-0.010501,0.249779,0,0);}
.mbf_c01102{transform:matrix(0.272048,0.010348,-0.009503,0.249819,0,0);-ms-transform:matrix(0.272048,0.010348,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.272048,0.010348,-0.009503,0.249819,0,0);}
.m51_c01102{transform:matrix(0.272189,0.008438,-0.007746,0.249880,0,0);-ms-transform:matrix(0.272189,0.008438,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.272189,0.008438,-0.007746,0.249880,0,0);}
.m7a_c01102{transform:matrix(0.272199,0.008438,-0.007746,0.249880,0,0);-ms-transform:matrix(0.272199,0.008438,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.272199,0.008438,-0.007746,0.249880,0,0);}
.m5b_c01102{transform:matrix(0.272274,0.008441,-0.007746,0.249880,0,0);-ms-transform:matrix(0.272274,0.008441,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.272274,0.008441,-0.007746,0.249880,0,0);}
.md_c01102{transform:matrix(0.272424,0.008445,-0.007746,0.249880,0,0);-ms-transform:matrix(0.272424,0.008445,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.272424,0.008445,-0.007746,0.249880,0,0);}
.m7b_c01102{transform:matrix(0.272724,0.008454,-0.007746,0.249880,0,0);-ms-transform:matrix(0.272724,0.008454,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.272724,0.008454,-0.007746,0.249880,0,0);}
.m5d_c01102{transform:matrix(0.272754,0.008455,-0.007746,0.249880,0,0);-ms-transform:matrix(0.272754,0.008455,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.272754,0.008455,-0.007746,0.249880,0,0);}
.mec_c01102{transform:matrix(0.273078,0.010387,-0.009503,0.249819,0,0);-ms-transform:matrix(0.273078,0.010387,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.273078,0.010387,-0.009503,0.249819,0,0);}
.mf0_c01102{transform:matrix(0.273587,0.010407,-0.009503,0.249819,0,0);-ms-transform:matrix(0.273587,0.010407,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.273587,0.010407,-0.009503,0.249819,0,0);}
.m84_c01102{transform:matrix(0.273644,0.008483,-0.007746,0.249880,0,0);-ms-transform:matrix(0.273644,0.008483,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.273644,0.008483,-0.007746,0.249880,0,0);}
.m10d_c01102{transform:matrix(0.273748,0.011509,-0.010501,0.249779,0,0);-ms-transform:matrix(0.273748,0.011509,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.273748,0.011509,-0.010501,0.249779,0,0);}
.m9_c01102{transform:matrix(0.273828,0.008489,-0.007746,0.249880,0,0);-ms-transform:matrix(0.273828,0.008489,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.273828,0.008489,-0.007746,0.249880,0,0);}
.m102_c01102{transform:matrix(0.274123,0.011525,-0.010501,0.249779,0,0);-ms-transform:matrix(0.274123,0.011525,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.274123,0.011525,-0.010501,0.249779,0,0);}
.mc1_c01102{transform:matrix(0.274556,0.010444,-0.009503,0.249819,0,0);-ms-transform:matrix(0.274556,0.010444,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.274556,0.010444,-0.009503,0.249819,0,0);}
.mb6_c01102{transform:matrix(0.274626,0.010446,-0.009503,0.249819,0,0);-ms-transform:matrix(0.274626,0.010446,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.274626,0.010446,-0.009503,0.249819,0,0);}
.m23_c01102{transform:matrix(0.274923,0.008523,-0.007746,0.249880,0,0);-ms-transform:matrix(0.274923,0.008523,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.274923,0.008523,-0.007746,0.249880,0,0);}
.m2f_c01102{transform:matrix(0.275238,0.008532,-0.007746,0.249880,0,0);-ms-transform:matrix(0.275238,0.008532,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.275238,0.008532,-0.007746,0.249880,0,0);}
.m122_c01102{transform:matrix(0.275637,0.011588,-0.010501,0.249779,0,0);-ms-transform:matrix(0.275637,0.011588,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.275637,0.011588,-0.010501,0.249779,0,0);}
.m25_c01102{transform:matrix(0.275763,0.008549,-0.007746,0.249880,0,0);-ms-transform:matrix(0.275763,0.008549,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.275763,0.008549,-0.007746,0.249880,0,0);}
.m6c_c01102{transform:matrix(0.275857,0.008552,-0.007746,0.249880,0,0);-ms-transform:matrix(0.275857,0.008552,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.275857,0.008552,-0.007746,0.249880,0,0);}
.m4d_c01102{transform:matrix(0.276077,0.008558,-0.007746,0.249880,0,0);-ms-transform:matrix(0.276077,0.008558,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.276077,0.008558,-0.007746,0.249880,0,0);}
.mc4_c01102{transform:matrix(0.276340,0.010511,-0.009503,0.249819,0,0);-ms-transform:matrix(0.276340,0.010511,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.276340,0.010511,-0.009503,0.249819,0,0);}
.m92_c01102{transform:matrix(0.276682,0.008577,-0.007746,0.249880,0,0);-ms-transform:matrix(0.276682,0.008577,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.276682,0.008577,-0.007746,0.249880,0,0);}
.m15_c01102{transform:matrix(0.276707,0.008578,-0.007746,0.249880,0,0);-ms-transform:matrix(0.276707,0.008578,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.276707,0.008578,-0.007746,0.249880,0,0);}
.m31_c01102{transform:matrix(0.279086,0.008652,-0.007746,0.249880,0,0);-ms-transform:matrix(0.279086,0.008652,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.279086,0.008652,-0.007746,0.249880,0,0);}
.m10e_c01102{transform:matrix(0.279828,0.011765,-0.010501,0.249779,0,0);-ms-transform:matrix(0.279828,0.011765,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.279828,0.011765,-0.010501,0.249779,0,0);}
.mf5_c01102{transform:matrix(0.279873,0.010646,-0.009503,0.249819,0,0);-ms-transform:matrix(0.279873,0.010646,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.279873,0.010646,-0.009503,0.249819,0,0);}
.m112_c01102{transform:matrix(0.279963,0.011770,-0.010501,0.249779,0,0);-ms-transform:matrix(0.279963,0.011770,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.279963,0.011770,-0.010501,0.249779,0,0);}
.m54_c01102{transform:matrix(0.280025,0.008681,-0.007746,0.249880,0,0);-ms-transform:matrix(0.280025,0.008681,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.280025,0.008681,-0.007746,0.249880,0,0);}
.m77_c01102{transform:matrix(0.280675,0.008701,-0.007746,0.249880,0,0);-ms-transform:matrix(0.280675,0.008701,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.280675,0.008701,-0.007746,0.249880,0,0);}
.m3d_c01102{transform:matrix(0.281125,0.008715,-0.007746,0.249880,0,0);-ms-transform:matrix(0.281125,0.008715,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.281125,0.008715,-0.007746,0.249880,0,0);}
.m1b_c01102{transform:matrix(0.281945,0.008740,-0.007746,0.249880,0,0);-ms-transform:matrix(0.281945,0.008740,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.281945,0.008740,-0.007746,0.249880,0,0);}
.m7e_c01102{transform:matrix(0.281980,0.008741,-0.007746,0.249880,0,0);-ms-transform:matrix(0.281980,0.008741,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.281980,0.008741,-0.007746,0.249880,0,0);}
.m78_c01102{transform:matrix(0.282654,0.008762,-0.007746,0.249880,0,0);-ms-transform:matrix(0.282654,0.008762,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.282654,0.008762,-0.007746,0.249880,0,0);}
.mef_c01102{transform:matrix(0.283810,0.010796,-0.009503,0.249819,0,0);-ms-transform:matrix(0.283810,0.010796,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.283810,0.010796,-0.009503,0.249819,0,0);}
.mbb_c01102{transform:matrix(0.285194,0.010848,-0.009503,0.249819,0,0);-ms-transform:matrix(0.285194,0.010848,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.285194,0.010848,-0.009503,0.249819,0,0);}
.m114_c01102{transform:matrix(0.285338,0.011996,-0.010501,0.249779,0,0);-ms-transform:matrix(0.285338,0.011996,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.285338,0.011996,-0.010501,0.249779,0,0);}
.m129_c01102{transform:matrix(0.286028,0.014888,-0.012995,0.249662,0,0);-ms-transform:matrix(0.286028,0.014888,-0.012995,0.249662,0,0);-webkit-transform:matrix(0.286028,0.014888,-0.012995,0.249662,0,0);}
.m98_c01102{transform:matrix(0.286932,0.008895,-0.007746,0.249880,0,0);-ms-transform:matrix(0.286932,0.008895,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.286932,0.008895,-0.007746,0.249880,0,0);}
.m18_c01102{transform:matrix(0.288157,0.008933,-0.007746,0.249880,0,0);-ms-transform:matrix(0.288157,0.008933,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.288157,0.008933,-0.007746,0.249880,0,0);}
.m73_c01102{transform:matrix(0.289421,0.008972,-0.007746,0.249880,0,0);-ms-transform:matrix(0.289421,0.008972,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.289421,0.008972,-0.007746,0.249880,0,0);}
.m12a_c01102{transform:matrix(0.300983,0.015667,-0.012995,0.249662,0,0);-ms-transform:matrix(0.300983,0.015667,-0.012995,0.249662,0,0);-webkit-transform:matrix(0.300983,0.015667,-0.012995,0.249662,0,0);}
.mfd_c01102{transform:matrix(0.316016,0.012021,-0.009503,0.249819,0,0);-ms-transform:matrix(0.316016,0.012021,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.316016,0.012021,-0.009503,0.249819,0,0);}
.ma8_c01102{transform:matrix(0.325304,0.010084,-0.007746,0.249880,0,0);-ms-transform:matrix(0.325304,0.010084,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.325304,0.010084,-0.007746,0.249880,0,0);}
.m4_c01102{transform:matrix(0.339890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339890,0.000000,0.000000,0.250000,0,0);}
.m11d_c01102{transform:matrix(0.341673,0.014365,-0.010501,0.249779,0,0);-ms-transform:matrix(0.341673,0.014365,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.341673,0.014365,-0.010501,0.249779,0,0);}
.m120_c01102{transform:matrix(0.400766,0.016849,-0.010501,0.249779,0,0);-ms-transform:matrix(0.400766,0.016849,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.400766,0.016849,-0.010501,0.249779,0,0);}
.m2_c01102{transform:matrix(1.243100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.243100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.243100,0.000000,0.000000,0.250000,0,0);}
.m1_c01102{transform:matrix(1.271375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.271375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.271375,0.000000,0.000000,0.250000,0,0);}
.m0_c01102{transform:matrix(12.542905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(12.542905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(12.542905,0.000000,0.000000,0.250000,0,0);}
.v0_c01102{vertical-align:0.000000px;}
.ls0_c01102{letter-spacing:0.000000px;}
.sc__c01102{text-shadow:none;}
.sc0_c01102{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__c01102{-webkit-text-stroke:0px transparent;}
.sc0_c01102{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01102{word-spacing:0.000000px;}
.fc0_c01102{color:transparent;}
.fs0_c01102{font-size:18.000000px;}
.fsb_c01102{font-size:42.000000px;}
.fs1_c01102{font-size:54.000000px;}
.fs9_c01102{font-size:66.023261px;}
.fs4_c01102{font-size:71.980017px;}
.fs7_c01102{font-size:71.991540px;}
.fs2_c01102{font-size:72.034588px;}
.fs6_c01102{font-size:77.978352px;}
.fs8_c01102{font-size:77.990834px;}
.fsa_c01102{font-size:77.997543px;}
.fs3_c01102{font-size:78.037470px;}
.fs5_c01102{font-size:83.976687px;}
.y0_c01102{bottom:0.000000px;}
.y158_c01102{bottom:33.799928px;}
.y157_c01102{bottom:35.344589px;}
.y156_c01102{bottom:38.324232px;}
.y155_c01102{bottom:39.833088px;}
.y154_c01102{bottom:41.341488px;}
.y153_c01102{bottom:42.830646px;}
.y152_c01102{bottom:47.310636px;}
.y151_c01102{bottom:52.293939px;}
.y150_c01102{bottom:54.310343px;}
.y14f_c01102{bottom:55.759877px;}
.y14e_c01102{bottom:59.183568px;}
.y14d_c01102{bottom:63.217800px;}
.y14c_c01102{bottom:78.554889px;}
.y14b_c01102{bottom:81.935787px;}
.y14a_c01102{bottom:84.052482px;}
.y149_c01102{bottom:85.325349px;}
.y148_c01102{bottom:86.506731px;}
.y147_c01102{bottom:88.263813px;}
.y146_c01102{bottom:89.876172px;}
.y145_c01102{bottom:92.903442px;}
.y144_c01102{bottom:94.082088px;}
.y143_c01102{bottom:96.225288px;}
.y142_c01102{bottom:98.301000px;}
.y141_c01102{bottom:123.567756px;}
.y140_c01102{bottom:124.899636px;}
.y13f_c01102{bottom:128.264184px;}
.y13e_c01102{bottom:130.794294px;}
.y13d_c01102{bottom:134.667240px;}
.y13c_c01102{bottom:136.629750px;}
.y13b_c01102{bottom:138.103530px;}
.y13a_c01102{bottom:141.006738px;}
.y139_c01102{bottom:144.405342px;}
.y138_c01102{bottom:145.902882px;}
.y137_c01102{bottom:150.723588px;}
.y136_c01102{bottom:152.160738px;}
.y135_c01102{bottom:153.105000px;}
.y134_c01102{bottom:161.695536px;}
.y133_c01102{bottom:165.142512px;}
.y132_c01102{bottom:167.977500px;}
.y131_c01102{bottom:172.205923px;}
.y130_c01102{bottom:173.318017px;}
.y12f_c01102{bottom:176.323855px;}
.y12e_c01102{bottom:179.340745px;}
.y12d_c01102{bottom:180.470646px;}
.y12c_c01102{bottom:184.209655px;}
.y12b_c01102{bottom:186.872121px;}
.y12a_c01102{bottom:197.447530px;}
.y129_c01102{bottom:201.482226px;}
.y128_c01102{bottom:203.468877px;}
.y127_c01102{bottom:204.241473px;}
.y126_c01102{bottom:206.659503px;}
.y125_c01102{bottom:210.612681px;}
.y124_c01102{bottom:212.194530px;}
.y123_c01102{bottom:213.415339px;}
.y122_c01102{bottom:217.355022px;}
.y121_c01102{bottom:218.601261px;}
.y120_c01102{bottom:219.767054px;}
.y11f_c01102{bottom:221.701662px;}
.y11e_c01102{bottom:233.938584px;}
.y11d_c01102{bottom:235.267614px;}
.y11c_c01102{bottom:239.857168px;}
.y11b_c01102{bottom:241.662888px;}
.y11a_c01102{bottom:245.320519px;}
.y119_c01102{bottom:246.672166px;}
.y118_c01102{bottom:251.202424px;}
.y117_c01102{bottom:255.686049px;}
.y116_c01102{bottom:259.229182px;}
.y115_c01102{bottom:270.681615px;}
.y114_c01102{bottom:272.061567px;}
.y113_c01102{bottom:274.397481px;}
.y112_c01102{bottom:277.170552px;}
.y111_c01102{bottom:278.634042px;}
.y110_c01102{bottom:279.929952px;}
.y10f_c01102{bottom:281.422170px;}
.y10e_c01102{bottom:284.185854px;}
.y10d_c01102{bottom:285.626223px;}
.y10c_c01102{bottom:290.199834px;}
.y10b_c01102{bottom:292.093866px;}
.y10a_c01102{bottom:293.512500px;}
.y109_c01102{bottom:323.083382px;}
.y108_c01102{bottom:329.499087px;}
.y107_c01102{bottom:342.626396px;}
.y106_c01102{bottom:344.366189px;}
.y105_c01102{bottom:345.646715px;}
.y104_c01102{bottom:347.386907px;}
.y103_c01102{bottom:349.576830px;}
.y102_c01102{bottom:352.995450px;}
.y101_c01102{bottom:354.755307px;}
.y100_c01102{bottom:356.051280px;}
.yff_c01102{bottom:360.339341px;}
.yfe_c01102{bottom:361.633718px;}
.yfd_c01102{bottom:364.634811px;}
.yfc_c01102{bottom:365.930385px;}
.yfb_c01102{bottom:376.883541px;}
.yfa_c01102{bottom:380.082258px;}
.yf9_c01102{bottom:384.912221px;}
.yf8_c01102{bottom:385.696689px;}
.yf7_c01102{bottom:388.462413px;}
.yf6_c01102{bottom:392.093097px;}
.yf5_c01102{bottom:394.457617px;}
.yf4_c01102{bottom:396.461144px;}
.yf3_c01102{bottom:397.215247px;}
.yf2_c01102{bottom:400.747941px;}
.yf1_c01102{bottom:411.399027px;}
.yf0_c01102{bottom:414.756954px;}
.yef_c01102{bottom:417.742044px;}
.yee_c01102{bottom:422.290986px;}
.yed_c01102{bottom:424.393944px;}
.yec_c01102{bottom:426.130905px;}
.yeb_c01102{bottom:428.668374px;}
.yea_c01102{bottom:429.929841px;}
.ye9_c01102{bottom:431.603361px;}
.ye8_c01102{bottom:433.655076px;}
.ye7_c01102{bottom:434.872026px;}
.ye6_c01102{bottom:436.920891px;}
.ye5_c01102{bottom:449.105208px;}
.ye4_c01102{bottom:450.882792px;}
.ye3_c01102{bottom:454.319441px;}
.ye2_c01102{bottom:456.447104px;}
.ye1_c01102{bottom:459.080790px;}
.ye0_c01102{bottom:462.511568px;}
.ydf_c01102{bottom:464.271823px;}
.yde_c01102{bottom:465.561812px;}
.ydd_c01102{bottom:469.798670px;}
.ydc_c01102{bottom:472.005767px;}
.ydb_c01102{bottom:483.376848px;}
.yda_c01102{bottom:486.808248px;}
.yd9_c01102{bottom:489.705330px;}
.yd8_c01102{bottom:492.261324px;}
.yd7_c01102{bottom:493.492410px;}
.yd6_c01102{bottom:494.774397px;}
.yd5_c01102{bottom:497.720784px;}
.yd4_c01102{bottom:498.974727px;}
.yd3_c01102{bottom:499.822602px;}
.yd2_c01102{bottom:502.718886px;}
.yd1_c01102{bottom:504.026409px;}
.yd0_c01102{bottom:505.266957px;}
.ycf_c01102{bottom:507.365241px;}
.yce_c01102{bottom:519.456276px;}
.ycd_c01102{bottom:520.572477px;}
.ycc_c01102{bottom:522.504045px;}
.ycb_c01102{bottom:525.607739px;}
.yca_c01102{bottom:526.808331px;}
.yc9_c01102{bottom:530.674870px;}
.yc8_c01102{bottom:532.613775px;}
.yc7_c01102{bottom:533.778564px;}
.yc6_c01102{bottom:534.941586px;}
.yc5_c01102{bottom:539.973997px;}
.yc4_c01102{bottom:542.997803px;}
.yc3_c01102{bottom:555.459435px;}
.yc2_c01102{bottom:556.749174px;}
.yc1_c01102{bottom:558.388038px;}
.yc0_c01102{bottom:562.189710px;}
.ybf_c01102{bottom:564.370302px;}
.ybe_c01102{bottom:567.696024px;}
.ybd_c01102{bottom:570.200376px;}
.ybc_c01102{bottom:573.137700px;}
.ybb_c01102{bottom:575.292699px;}
.yba_c01102{bottom:577.008000px;}
.yb9_c01102{bottom:602.468330px;}
.yb8_c01102{bottom:604.031579px;}
.yb7_c01102{bottom:606.201069px;}
.yb6_c01102{bottom:607.316447px;}
.yb5_c01102{bottom:610.222101px;}
.yb4_c01102{bottom:612.396381px;}
.yb3_c01102{bottom:613.822674px;}
.yb2_c01102{bottom:624.677817px;}
.yb1_c01102{bottom:625.567463px;}
.yb0_c01102{bottom:627.541398px;}
.yaf_c01102{bottom:629.516310px;}
.yae_c01102{bottom:630.752625px;}
.yad_c01102{bottom:632.329099px;}
.yac_c01102{bottom:633.540559px;}
.yab_c01102{bottom:635.936346px;}
.yaa_c01102{bottom:637.133472px;}
.ya9_c01102{bottom:639.943192px;}
.ya8_c01102{bottom:641.480513px;}
.ya7_c01102{bottom:642.715014px;}
.ya6_c01102{bottom:645.093106px;}
.ya5_c01102{bottom:645.860093px;}
.ya4_c01102{bottom:648.668929px;}
.ya3_c01102{bottom:658.790340px;}
.ya2_c01102{bottom:659.988070px;}
.ya1_c01102{bottom:661.559092px;}
.ya0_c01102{bottom:666.403910px;}
.y9f_c01102{bottom:669.985684px;}
.y9e_c01102{bottom:671.196819px;}
.y9d_c01102{bottom:673.562391px;}
.y9c_c01102{bottom:675.154362px;}
.y9b_c01102{bottom:677.180379px;}
.y9a_c01102{bottom:681.534871px;}
.y99_c01102{bottom:683.516619px;}
.y98_c01102{bottom:695.447503px;}
.y97_c01102{bottom:697.902173px;}
.y96_c01102{bottom:698.697838px;}
.y95_c01102{bottom:701.484285px;}
.y94_c01102{bottom:702.701430px;}
.y93_c01102{bottom:703.897347px;}
.y92_c01102{bottom:707.083114px;}
.y91_c01102{bottom:709.886313px;}
.y90_c01102{bottom:711.073894px;}
.y8f_c01102{bottom:713.844786px;}
.y8e_c01102{bottom:715.065511px;}
.y8d_c01102{bottom:717.392533px;}
.y8c_c01102{bottom:718.634161px;}
.y8b_c01102{bottom:730.904236px;}
.y8a_c01102{bottom:732.302824px;}
.y89_c01102{bottom:733.482474px;}
.y88_c01102{bottom:736.119442px;}
.y87_c01102{bottom:736.873921px;}
.y86_c01102{bottom:739.488697px;}
.y85_c01102{bottom:740.676217px;}
.y84_c01102{bottom:741.772618px;}
.y83_c01102{bottom:744.439975px;}
.y82_c01102{bottom:745.181574px;}
.y81_c01102{bottom:748.944913px;}
.y80_c01102{bottom:751.180811px;}
.y7f_c01102{bottom:753.750120px;}
.y7e_c01102{bottom:767.853361px;}
.y7d_c01102{bottom:770.307147px;}
.y7c_c01102{bottom:773.507295px;}
.y7b_c01102{bottom:774.693947px;}
.y7a_c01102{bottom:780.241693px;}
.y79_c01102{bottom:784.242622px;}
.y78_c01102{bottom:787.363822px;}
.y77_c01102{bottom:788.963245px;}
.y76_c01102{bottom:790.219858px;}
.y75_c01102{bottom:805.254864px;}
.y74_c01102{bottom:806.517766px;}
.y73_c01102{bottom:809.311374px;}
.y72_c01102{bottom:812.443653px;}
.y71_c01102{bottom:813.282426px;}
.y70_c01102{bottom:816.061374px;}
.y6f_c01102{bottom:818.472982px;}
.y6e_c01102{bottom:819.669504px;}
.y6d_c01102{bottom:823.644090px;}
.y6c_c01102{bottom:824.764128px;}
.y6b_c01102{bottom:825.605505px;}
.y6a_c01102{bottom:840.612982px;}
.y69_c01102{bottom:842.435508px;}
.y68_c01102{bottom:845.403973px;}
.y67_c01102{bottom:846.499762px;}
.y66_c01102{bottom:848.346387px;}
.y65_c01102{bottom:849.415287px;}
.y64_c01102{bottom:851.964211px;}
.y63_c01102{bottom:854.550069px;}
.y62_c01102{bottom:857.454886px;}
.y61_c01102{bottom:858.154722px;}
.y60_c01102{bottom:860.724676px;}
.y5f_c01102{bottom:874.260223px;}
.y5e_c01102{bottom:876.955306px;}
.y5d_c01102{bottom:878.076004px;}
.y5c_c01102{bottom:880.740804px;}
.y5b_c01102{bottom:882.596067px;}
.y5a_c01102{bottom:884.881383px;}
.y59_c01102{bottom:885.972250px;}
.y58_c01102{bottom:887.132544px;}
.y57_c01102{bottom:887.881350px;}
.y56_c01102{bottom:889.418465px;}
.y55_c01102{bottom:890.878946px;}
.y54_c01102{bottom:893.141557px;}
.y53_c01102{bottom:896.111938px;}
.y52_c01102{bottom:908.838264px;}
.y51_c01102{bottom:911.920038px;}
.y50_c01102{bottom:913.453712px;}
.y4f_c01102{bottom:916.080856px;}
.y4e_c01102{bottom:917.197834px;}
.y4d_c01102{bottom:919.130905px;}
.y4c_c01102{bottom:922.821471px;}
.y4b_c01102{bottom:923.958410px;}
.y4a_c01102{bottom:925.873566px;}
.y49_c01102{bottom:927.019712px;}
.y48_c01102{bottom:928.497828px;}
.y47_c01102{bottom:931.499237px;}
.y46_c01102{bottom:945.867240px;}
.y45_c01102{bottom:947.299626px;}
.y44_c01102{bottom:949.344045px;}
.y43_c01102{bottom:950.407035px;}
.y42_c01102{bottom:951.062685px;}
.y41_c01102{bottom:952.116003px;}
.y40_c01102{bottom:955.573743px;}
.y3f_c01102{bottom:957.661453px;}
.y3e_c01102{bottom:958.657065px;}
.y3d_c01102{bottom:960.372078px;}
.y3c_c01102{bottom:963.102000px;}
.y3b_c01102{bottom:987.315376px;}
.y3a_c01102{bottom:989.191438px;}
.y39_c01102{bottom:990.107731px;}
.y38_c01102{bottom:991.045158px;}
.y37_c01102{bottom:993.230785px;}
.y36_c01102{bottom:994.759699px;}
.y35_c01102{bottom:995.991916px;}
.y34_c01102{bottom:999.085653px;}
.y33_c01102{bottom:1000.294597px;}
.y1_c01102{bottom:1012.770000px;}
.y32_c01102{bottom:1016.470372px;}
.y31_c01102{bottom:1017.172888px;}
.y30_c01102{bottom:1018.240560px;}
.y2f_c01102{bottom:1020.389632px;}
.y2e_c01102{bottom:1021.777122px;}
.y2d_c01102{bottom:1025.018232px;}
.y2c_c01102{bottom:1027.502793px;}
.y2b_c01102{bottom:1028.566093px;}
.y2a_c01102{bottom:1031.072556px;}
.y29_c01102{bottom:1032.099853px;}
.y28_c01102{bottom:1033.154272px;}
.y27_c01102{bottom:1034.225152px;}
.y26_c01102{bottom:1036.325899px;}
.y25_c01102{bottom:1037.030647px;}
.y24_c01102{bottom:1052.604267px;}
.y23_c01102{bottom:1053.664932px;}
.y22_c01102{bottom:1056.045546px;}
.y21_c01102{bottom:1056.780199px;}
.y20_c01102{bottom:1059.529698px;}
.y1f_c01102{bottom:1061.958160px;}
.y159_c01102{bottom:1063.260000px;}
.y1e_c01102{bottom:1063.664059px;}
.y1d_c01102{bottom:1066.363849px;}
.y1c_c01102{bottom:1068.465277px;}
.y1b_c01102{bottom:1069.475211px;}
.y1a_c01102{bottom:1071.879865px;}
.y19_c01102{bottom:1087.203097px;}
.y18_c01102{bottom:1090.419934px;}
.y17_c01102{bottom:1091.483235px;}
.y16_c01102{bottom:1092.546024px;}
.y15_c01102{bottom:1096.496439px;}
.y14_c01102{bottom:1098.622017px;}
.y13_c01102{bottom:1099.633086px;}
.y12_c01102{bottom:1103.834149px;}
.y11_c01102{bottom:1105.907775px;}
.y10_c01102{bottom:1106.693863px;}
.yf_c01102{bottom:1108.075866px;}
.ye_c01102{bottom:1123.360170px;}
.yd_c01102{bottom:1124.354758px;}
.yc_c01102{bottom:1125.418260px;}
.yb_c01102{bottom:1126.121758px;}
.ya_c01102{bottom:1129.549692px;}
.y9_c01102{bottom:1132.295052px;}
.y8_c01102{bottom:1133.376874px;}
.y7_c01102{bottom:1136.123769px;}
.y6_c01102{bottom:1138.862293px;}
.y5_c01102{bottom:1139.847163px;}
.y4_c01102{bottom:1141.591425px;}
.y3_c01102{bottom:1142.919000px;}
.y2_c01102{bottom:1188.147000px;}
.h2_c01102{height:18.000000px;}
.hd_c01102{height:42.000000px;}
.h3_c01102{height:54.000000px;}
.hb_c01102{height:66.023261px;}
.h6_c01102{height:71.980017px;}
.h9_c01102{height:71.991540px;}
.h4_c01102{height:72.034588px;}
.h8_c01102{height:77.978352px;}
.ha_c01102{height:77.990834px;}
.hc_c01102{height:77.997543px;}
.h5_c01102{height:78.037470px;}
.h7_c01102{height:83.976687px;}
.h0_c01102{height:1246.320000px;}
.h1_c01102{height:1246.500000px;}
.w0_c01102{width:927.450000px;}
.w1_c01102{width:927.750000px;}
.x0_c01102{left:0.000000px;}
.x2_c01102{left:11.880000px;}
.x1_c01102{left:13.500000px;}
.xe9_c01102{left:116.301473px;}
.xe3_c01102{left:117.706500px;}
.xd6_c01102{left:119.459366px;}
.xcf_c01102{left:123.175394px;}
.xc9_c01102{left:124.524953px;}
.xbb_c01102{left:125.880765px;}
.xb4_c01102{left:128.351667px;}
.xa5_c01102{left:129.829032px;}
.xaf_c01102{left:131.012187px;}
.x9d_c01102{left:132.453990px;}
.x84_c01102{left:133.799313px;}
.x75_c01102{left:135.896166px;}
.x68_c01102{left:138.028239px;}
.x6f_c01102{left:139.133324px;}
.x58_c01102{left:140.736390px;}
.x42_c01102{left:143.170632px;}
.x1b_c01102{left:147.297470px;}
.x6_c01102{left:150.351000px;}
.xbc_c01102{left:159.072785px;}
.x60_c01102{left:163.387931px;}
.x25_c01102{left:168.602810px;}
.x76_c01102{left:170.378819px;}
.x69_c01102{left:172.945845px;}
.xde_c01102{left:174.145377px;}
.x91_c01102{left:177.461363px;}
.xa6_c01102{left:184.991814px;}
.x32_c01102{left:189.671198px;}
.x7_c01102{left:193.176000px;}
.x61_c01102{left:194.481095px;}
.xd7_c01102{left:197.677367px;}
.xea_c01102{left:205.868466px;}
.xd0_c01102{left:209.203473px;}
.x85_c01102{left:211.814223px;}
.x70_c01102{left:214.700802px;}
.x12_c01102{left:217.744456px;}
.x1c_c01102{left:224.866970px;}
.xb5_c01102{left:226.392503px;}
.xe4_c01102{left:228.619476px;}
.x4d_c01102{left:229.975025px;}
.x43_c01102{left:231.465948px;}
.x86_c01102{left:233.116922px;}
.x26_c01102{left:234.237764px;}
.xbd_c01102{left:235.957913px;}
.x59_c01102{left:239.820252px;}
.x95_c01102{left:241.168500px;}
.x92_c01102{left:243.337271px;}
.xb6_c01102{left:247.322150px;}
.x8_c01102{left:249.442500px;}
.xa7_c01102{left:251.979259px;}
.x39_c01102{left:254.748000px;}
.x1d_c01102{left:257.445470px;}
.xe5_c01102{left:259.605459px;}
.xc2_c01102{left:266.490723px;}
.x27_c01102{left:267.716741px;}
.x77_c01102{left:268.936067px;}
.xb0_c01102{left:270.807252px;}
.x44_c01102{left:274.933402px;}
.x9_c01102{left:281.212500px;}
.x13_c01102{left:282.552957px;}
.xdf_c01102{left:283.597316px;}
.x96_c01102{left:286.262860px;}
.xad_c01102{left:294.088256px;}
.x4e_c01102{left:296.520840px;}
.x87_c01102{left:299.174192px;}
.x28_c01102{left:300.664718px;}
.xb7_c01102{left:302.913225px;}
.x62_c01102{left:304.869983px;}
.xd8_c01102{left:307.500326px;}
.x45_c01102{left:308.660787px;}
.x80_c01102{left:311.338271px;}
.xb1_c01102{left:314.803212px;}
.xe0_c01102{left:317.598280px;}
.xca_c01102{left:320.088891px;}
.x1e_c01102{left:325.233470px;}
.x5a_c01102{left:327.857311px;}
.x93_c01102{left:331.401330px;}
.x29_c01102{left:332.786241px;}
.x63_c01102{left:338.091321px;}
.x4f_c01102{left:339.467841px;}
.xd9_c01102{left:340.695759px;}
.x3a_c01102{left:342.810000px;}
.x33_c01102{left:344.184066px;}
.x78_c01102{left:345.920663px;}
.xb2_c01102{left:347.966516px;}
.xa8_c01102{left:350.411229px;}
.xd1_c01102{left:353.085209px;}
.xeb_c01102{left:358.824618px;}
.x9e_c01102{left:362.356047px;}
.x46_c01102{left:364.967032px;}
.x81_c01102{left:367.636575px;}
.xa_c01102{left:369.552000px;}
.xae_c01102{left:372.226072px;}
.x88_c01102{left:376.188788px;}
.x79_c01102{left:378.902048px;}
.xe6_c01102{left:381.578863px;}
.x3_c01102{left:383.130000px;}
.x50_c01102{left:384.693156px;}
.xd2_c01102{left:386.943330px;}
.x71_c01102{left:391.175934px;}
.x9f_c01102{left:395.535101px;}
.x34_c01102{left:398.783135px;}
.x4_c01102{left:405.540000px;}
.x51_c01102{left:406.717110px;}
.x2a_c01102{left:411.121323px;}
.x1f_c01102{left:412.323470px;}
.x14_c01102{left:413.857412px;}
.x6a_c01102{left:415.200320px;}
.x97_c01102{left:420.137352px;}
.xa0_c01102{left:428.760608px;}
.x3b_c01102{left:430.249500px;}
.x52_c01102{left:440.852448px;}
.x2b_c01102{left:444.355800px;}
.x15_c01102{left:445.455435px;}
.x5_c01102{left:449.820000px;}
.x89_c01102{left:454.232198px;}
.x7a_c01102{left:456.783504px;}
.xb_c01102{left:458.161500px;}
.xa9_c01102{left:460.835694px;}
.xcb_c01102{left:463.421969px;}
.x20_c01102{left:467.352470px;}
.xb8_c01102{left:469.242839px;}
.x53_c01102{left:472.941972px;}
.x35_c01102{left:476.842889px;}
.x94_c01102{left:478.299216px;}
.x64_c01102{left:482.280501px;}
.x5b_c01102{left:483.469686px;}
.x98_c01102{left:485.975448px;}
.x8a_c01102{left:487.473036px;}
.x72_c01102{left:491.407088px;}
.xc_c01102{left:493.059000px;}
.xaa_c01102{left:494.538457px;}
.x3c_c01102{left:497.595000px;}
.x65_c01102{left:505.559874px;}
.x47_c01102{left:506.937827px;}
.x36_c01102{left:510.327504px;}
.x16_c01102{left:511.891389px;}
.x5c_c01102{left:515.867686px;}
.xda_c01102{left:517.585598px;}
.xc3_c01102{left:520.324635px;}
.x2c_c01102{left:521.984382px;}
.x73_c01102{left:523.675112px;}
.xab_c01102{left:526.903060px;}
.xe1_c01102{left:538.697460px;}
.x54_c01102{left:540.171741px;}
.x37_c01102{left:543.033527px;}
.x21_c01102{left:545.689969px;}
.xe7_c01102{left:547.939336px;}
.xdb_c01102{left:550.250373px;}
.xcc_c01102{left:552.527994px;}
.x8b_c01102{left:554.004213px;}
.xc4_c01102{left:555.818106px;}
.x74_c01102{left:558.591857px;}
.x48_c01102{left:563.773526px;}
.xb9_c01102{left:567.743714px;}
.x6b_c01102{left:569.313465px;}
.x5d_c01102{left:571.803699px;}
.x99_c01102{left:573.406929px;}
.x7b_c01102{left:578.464125px;}
.xd_c01102{left:581.619000px;}
.xc5_c01102{left:586.642251px;}
.x8c_c01102{left:587.659005px;}
.x66_c01102{left:592.555389px;}
.x55_c01102{left:594.739672px;}
.x49_c01102{left:596.608456px;}
.xbe_c01102{left:600.951746px;}
.x6c_c01102{left:602.264850px;}
.x5e_c01102{left:605.020653px;}
.xd3_c01102{left:607.605069px;}
.x38_c01102{left:610.041758px;}
.x7c_c01102{left:612.253871px;}
.xc6_c01102{left:621.452406px;}
.x2d_c01102{left:623.291267px;}
.xe2_c01102{left:626.630938px;}
.xa1_c01102{left:628.765782px;}
.x8d_c01102{left:631.441716px;}
.x17_c01102{left:635.352576px;}
.xe8_c01102{left:636.821365px;}
.xdc_c01102{left:641.062500px;}
.x3d_c01102{left:643.113000px;}
.xbf_c01102{left:645.516924px;}
.x22_c01102{left:658.081970px;}
.x3e_c01102{left:664.263000px;}
.x2e_c01102{left:666.644418px;}
.x18_c01102{left:668.570553px;}
.x67_c01102{left:670.175892px;}
.x4a_c01102{left:673.896295px;}
.xc0_c01102{left:678.313340px;}
.xd4_c01102{left:684.161733px;}
.xc7_c01102{left:687.411881px;}
.x7d_c01102{left:689.643374px;}
.x6d_c01102{left:691.159086px;}
.xe_c01102{left:692.197500px;}
.x5f_c01102{left:694.965573px;}
.x3f_c01102{left:698.553000px;}
.x19_c01102{left:701.805030px;}
.x56_c01102{left:706.051803px;}
.xcd_c01102{left:708.357567px;}
.x7e_c01102{left:711.725933px;}
.xb3_c01102{left:713.690426px;}
.xf_c01102{left:714.891000px;}
.xa2_c01102{left:717.343215px;}
.x4b_c01102{left:719.010610px;}
.x8e_c01102{left:720.644906px;}
.xc1_c01102{left:722.868029px;}
.x9a_c01102{left:730.677501px;}
.x2f_c01102{left:733.789826px;}
.x23_c01102{left:734.875970px;}
.xce_c01102{left:740.755025px;}
.xc8_c01102{left:742.973264px;}
.x82_c01102{left:745.312625px;}
.x10_c01102{left:749.197500px;}
.x6e_c01102{left:759.319031px;}
.xac_c01102{left:760.471258px;}
.xdd_c01102{left:761.748693px;}
.x40_c01102{left:764.502000px;}
.x30_c01102{left:767.165303px;}
.x24_c01102{left:769.090970px;}
.xa3_c01102{left:772.462816px;}
.x9b_c01102{left:773.762373px;}
.x8f_c01102{left:775.456896px;}
.x7f_c01102{left:779.914377px;}
.x11_c01102{left:781.281000px;}
.x57_c01102{left:785.337456px;}
.x31_c01102{left:789.100605px;}
.xba_c01102{left:790.530650px;}
.xd5_c01102{left:796.090382px;}
.x90_c01102{left:800.183583px;}
.x1a_c01102{left:802.328914px;}
.xa4_c01102{left:804.332067px;}
.x9c_c01102{left:807.668932px;}
.x4c_c01102{left:809.656194px;}
.x41_c01102{left:810.708000px;}
.x83_c01102{left:822.228221px;}
.xec_c01102{left:890.190000px;}
@media print{
.v0_c01102{vertical-align:0.000000pt;}
.ls0_c01102{letter-spacing:0.000000pt;}
.ws0_c01102{word-spacing:0.000000pt;}
.fs0_c01102{font-size:16.000000pt;}
.fsb_c01102{font-size:37.333333pt;}
.fs1_c01102{font-size:48.000000pt;}
.fs9_c01102{font-size:58.687343pt;}
.fs4_c01102{font-size:63.982238pt;}
.fs7_c01102{font-size:63.992480pt;}
.fs2_c01102{font-size:64.030745pt;}
.fs6_c01102{font-size:69.314091pt;}
.fs8_c01102{font-size:69.325186pt;}
.fsa_c01102{font-size:69.331149pt;}
.fs3_c01102{font-size:69.366640pt;}
.fs5_c01102{font-size:74.645944pt;}
.y0_c01102{bottom:0.000000pt;}
.y158_c01102{bottom:30.044380pt;}
.y157_c01102{bottom:31.417412pt;}
.y156_c01102{bottom:34.065984pt;}
.y155_c01102{bottom:35.407189pt;}
.y154_c01102{bottom:36.747989pt;}
.y153_c01102{bottom:38.071685pt;}
.y152_c01102{bottom:42.053899pt;}
.y151_c01102{bottom:46.483501pt;}
.y150_c01102{bottom:48.275860pt;}
.y14f_c01102{bottom:49.564335pt;}
.y14e_c01102{bottom:52.607616pt;}
.y14d_c01102{bottom:56.193600pt;}
.y14c_c01102{bottom:69.826568pt;}
.y14b_c01102{bottom:72.831811pt;}
.y14a_c01102{bottom:74.713317pt;}
.y149_c01102{bottom:75.844755pt;}
.y148_c01102{bottom:76.894872pt;}
.y147_c01102{bottom:78.456723pt;}
.y146_c01102{bottom:79.889931pt;}
.y145_c01102{bottom:82.580837pt;}
.y144_c01102{bottom:83.628523pt;}
.y143_c01102{bottom:85.533589pt;}
.y142_c01102{bottom:87.378667pt;}
.y141_c01102{bottom:109.838005pt;}
.y140_c01102{bottom:111.021899pt;}
.y13f_c01102{bottom:114.012608pt;}
.y13e_c01102{bottom:116.261595pt;}
.y13d_c01102{bottom:119.704213pt;}
.y13c_c01102{bottom:121.448667pt;}
.y13b_c01102{bottom:122.758693pt;}
.y13a_c01102{bottom:125.339323pt;}
.y139_c01102{bottom:128.360304pt;}
.y138_c01102{bottom:129.691451pt;}
.y137_c01102{bottom:133.976523pt;}
.y136_c01102{bottom:135.253989pt;}
.y135_c01102{bottom:136.093333pt;}
.y134_c01102{bottom:143.729365pt;}
.y133_c01102{bottom:146.793344pt;}
.y132_c01102{bottom:149.313333pt;}
.y131_c01102{bottom:153.071932pt;}
.y130_c01102{bottom:154.060460pt;}
.y12f_c01102{bottom:156.732316pt;}
.y12e_c01102{bottom:159.413996pt;}
.y12d_c01102{bottom:160.418352pt;}
.y12c_c01102{bottom:163.741916pt;}
.y12b_c01102{bottom:166.108552pt;}
.y12a_c01102{bottom:175.508916pt;}
.y129_c01102{bottom:179.095312pt;}
.y128_c01102{bottom:180.861224pt;}
.y127_c01102{bottom:181.547976pt;}
.y126_c01102{bottom:183.697336pt;}
.y125_c01102{bottom:187.211272pt;}
.y124_c01102{bottom:188.617360pt;}
.y123_c01102{bottom:189.702524pt;}
.y122_c01102{bottom:193.204464pt;}
.y121_c01102{bottom:194.312232pt;}
.y120_c01102{bottom:195.348492pt;}
.y11f_c01102{bottom:197.068144pt;}
.y11e_c01102{bottom:207.945408pt;}
.y11d_c01102{bottom:209.126768pt;}
.y11c_c01102{bottom:213.206372pt;}
.y11b_c01102{bottom:214.811456pt;}
.y11a_c01102{bottom:218.062684pt;}
.y119_c01102{bottom:219.264148pt;}
.y118_c01102{bottom:223.291044pt;}
.y117_c01102{bottom:227.276488pt;}
.y116_c01102{bottom:230.425940pt;}
.y115_c01102{bottom:240.605880pt;}
.y114_c01102{bottom:241.832504pt;}
.y113_c01102{bottom:243.908872pt;}
.y112_c01102{bottom:246.373824pt;}
.y111_c01102{bottom:247.674704pt;}
.y110_c01102{bottom:248.826624pt;}
.y10f_c01102{bottom:250.153040pt;}
.y10e_c01102{bottom:252.609648pt;}
.y10d_c01102{bottom:253.889976pt;}
.y10c_c01102{bottom:257.955408pt;}
.y10b_c01102{bottom:259.638992pt;}
.y10a_c01102{bottom:260.900000pt;}
.y109_c01102{bottom:287.185228pt;}
.y108_c01102{bottom:292.888077pt;}
.y107_c01102{bottom:304.556796pt;}
.y106_c01102{bottom:306.103279pt;}
.y105_c01102{bottom:307.241524pt;}
.y104_c01102{bottom:308.788361pt;}
.y103_c01102{bottom:310.734960pt;}
.y102_c01102{bottom:313.773733pt;}
.y101_c01102{bottom:315.338051pt;}
.y100_c01102{bottom:316.490027pt;}
.yff_c01102{bottom:320.301636pt;}
.yfe_c01102{bottom:321.452193pt;}
.yfd_c01102{bottom:324.119832pt;}
.yfc_c01102{bottom:325.271453pt;}
.yfb_c01102{bottom:335.007592pt;}
.yfa_c01102{bottom:337.850896pt;}
.yf9_c01102{bottom:342.144196pt;}
.yf8_c01102{bottom:342.841501pt;}
.yf7_c01102{bottom:345.299923pt;}
.yf6_c01102{bottom:348.527197pt;}
.yf5_c01102{bottom:350.628993pt;}
.yf4_c01102{bottom:352.409905pt;}
.yf3_c01102{bottom:353.080220pt;}
.yf2_c01102{bottom:356.220392pt;}
.yf1_c01102{bottom:365.688024pt;}
.yf0_c01102{bottom:368.672848pt;}
.yef_c01102{bottom:371.326261pt;}
.yee_c01102{bottom:375.369765pt;}
.yed_c01102{bottom:377.239061pt;}
.yec_c01102{bottom:378.783027pt;}
.yeb_c01102{bottom:381.038555pt;}
.yea_c01102{bottom:382.159859pt;}
.ye9_c01102{bottom:383.647432pt;}
.ye8_c01102{bottom:385.471179pt;}
.ye7_c01102{bottom:386.552912pt;}
.ye6_c01102{bottom:388.374125pt;}
.ye5_c01102{bottom:399.204629pt;}
.ye4_c01102{bottom:400.784704pt;}
.ye3_c01102{bottom:403.839503pt;}
.ye2_c01102{bottom:405.730759pt;}
.ye1_c01102{bottom:408.071813pt;}
.ye0_c01102{bottom:411.121393pt;}
.ydf_c01102{bottom:412.686065pt;}
.yde_c01102{bottom:413.832721pt;}
.ydd_c01102{bottom:417.598817pt;}
.ydc_c01102{bottom:419.560681pt;}
.ydb_c01102{bottom:429.668309pt;}
.yda_c01102{bottom:432.718443pt;}
.yd9_c01102{bottom:435.293627pt;}
.yd8_c01102{bottom:437.565621pt;}
.yd7_c01102{bottom:438.659920pt;}
.yd6_c01102{bottom:439.799464pt;}
.yd5_c01102{bottom:442.418475pt;}
.yd4_c01102{bottom:443.533091pt;}
.yd3_c01102{bottom:444.286757pt;}
.yd2_c01102{bottom:446.861232pt;}
.yd1_c01102{bottom:448.023475pt;}
.yd0_c01102{bottom:449.126184pt;}
.ycf_c01102{bottom:450.991325pt;}
.yce_c01102{bottom:461.738912pt;}
.ycd_c01102{bottom:462.731091pt;}
.ycc_c01102{bottom:464.448040pt;}
.ycb_c01102{bottom:467.206879pt;}
.yca_c01102{bottom:468.274072pt;}
.yc9_c01102{bottom:471.710996pt;}
.yc8_c01102{bottom:473.434467pt;}
.yc7_c01102{bottom:474.469835pt;}
.yc6_c01102{bottom:475.503632pt;}
.yc5_c01102{bottom:479.976887pt;}
.yc4_c01102{bottom:482.664713pt;}
.yc3_c01102{bottom:493.741720pt;}
.yc2_c01102{bottom:494.888155pt;}
.yc1_c01102{bottom:496.344923pt;}
.yc0_c01102{bottom:499.724187pt;}
.ybf_c01102{bottom:501.662491pt;}
.ybe_c01102{bottom:504.618688pt;}
.ybd_c01102{bottom:506.844779pt;}
.ybc_c01102{bottom:509.455733pt;}
.ybb_c01102{bottom:511.371288pt;}
.yba_c01102{bottom:512.896000pt;}
.yb9_c01102{bottom:535.527404pt;}
.yb8_c01102{bottom:536.916959pt;}
.yb7_c01102{bottom:538.845395pt;}
.yb6_c01102{bottom:539.836841pt;}
.yb5_c01102{bottom:542.419645pt;}
.yb4_c01102{bottom:544.352339pt;}
.yb3_c01102{bottom:545.620155pt;}
.yb2_c01102{bottom:555.269171pt;}
.yb1_c01102{bottom:556.059967pt;}
.yb0_c01102{bottom:557.814576pt;}
.yaf_c01102{bottom:559.570053pt;}
.yae_c01102{bottom:560.669000pt;}
.yad_c01102{bottom:562.070311pt;}
.yac_c01102{bottom:563.147164pt;}
.yab_c01102{bottom:565.276752pt;}
.yaa_c01102{bottom:566.340864pt;}
.ya9_c01102{bottom:568.838393pt;}
.ya8_c01102{bottom:570.204900pt;}
.ya7_c01102{bottom:571.302235pt;}
.ya6_c01102{bottom:573.416095pt;}
.ya5_c01102{bottom:574.097860pt;}
.ya4_c01102{bottom:576.594604pt;}
.ya3_c01102{bottom:585.591413pt;}
.ya2_c01102{bottom:586.656063pt;}
.ya1_c01102{bottom:588.052527pt;}
.ya0_c01102{bottom:592.359031pt;}
.y9f_c01102{bottom:595.542831pt;}
.y9e_c01102{bottom:596.619395pt;}
.y9d_c01102{bottom:598.722125pt;}
.y9c_c01102{bottom:600.137211pt;}
.y9b_c01102{bottom:601.938115pt;}
.y9a_c01102{bottom:605.808775pt;}
.y99_c01102{bottom:607.570328pt;}
.y98_c01102{bottom:618.175559pt;}
.y97_c01102{bottom:620.357487pt;}
.y96_c01102{bottom:621.064745pt;}
.y95_c01102{bottom:623.541587pt;}
.y94_c01102{bottom:624.623493pt;}
.y93_c01102{bottom:625.686531pt;}
.y92_c01102{bottom:628.518324pt;}
.y91_c01102{bottom:631.010056pt;}
.y90_c01102{bottom:632.065684pt;}
.y8f_c01102{bottom:634.528699pt;}
.y8e_c01102{bottom:635.613788pt;}
.y8d_c01102{bottom:637.682252pt;}
.y8c_c01102{bottom:638.785921pt;}
.y8b_c01102{bottom:649.692655pt;}
.y8a_c01102{bottom:650.935844pt;}
.y89_c01102{bottom:651.984421pt;}
.y88_c01102{bottom:654.328393pt;}
.y87_c01102{bottom:654.999041pt;}
.y86_c01102{bottom:657.323287pt;}
.y85_c01102{bottom:658.378860pt;}
.y84_c01102{bottom:659.353439pt;}
.y83_c01102{bottom:661.724423pt;}
.y82_c01102{bottom:662.383621pt;}
.y81_c01102{bottom:665.728812pt;}
.y80_c01102{bottom:667.716276pt;}
.y7f_c01102{bottom:670.000107pt;}
.y7e_c01102{bottom:682.536321pt;}
.y7d_c01102{bottom:684.717464pt;}
.y7c_c01102{bottom:687.562040pt;}
.y7b_c01102{bottom:688.616841pt;}
.y7a_c01102{bottom:693.548172pt;}
.y79_c01102{bottom:697.104553pt;}
.y78_c01102{bottom:699.878953pt;}
.y77_c01102{bottom:701.300663pt;}
.y76_c01102{bottom:702.417652pt;}
.y75_c01102{bottom:715.782101pt;}
.y74_c01102{bottom:716.904681pt;}
.y73_c01102{bottom:719.387888pt;}
.y72_c01102{bottom:722.172136pt;}
.y71_c01102{bottom:722.917712pt;}
.y70_c01102{bottom:725.387888pt;}
.y6f_c01102{bottom:727.531540pt;}
.y6e_c01102{bottom:728.595115pt;}
.y6d_c01102{bottom:732.128080pt;}
.y6c_c01102{bottom:733.123669pt;}
.y6b_c01102{bottom:733.871560pt;}
.y6a_c01102{bottom:747.211540pt;}
.y69_c01102{bottom:748.831563pt;}
.y68_c01102{bottom:751.470199pt;}
.y67_c01102{bottom:752.444233pt;}
.y66_c01102{bottom:754.085677pt;}
.y65_c01102{bottom:755.035811pt;}
.y64_c01102{bottom:757.301521pt;}
.y63_c01102{bottom:759.600061pt;}
.y62_c01102{bottom:762.182121pt;}
.y61_c01102{bottom:762.804197pt;}
.y60_c01102{bottom:765.088601pt;}
.y5f_c01102{bottom:777.120199pt;}
.y5e_c01102{bottom:779.515828pt;}
.y5d_c01102{bottom:780.512004pt;}
.y5c_c01102{bottom:782.880715pt;}
.y5b_c01102{bottom:784.529837pt;}
.y5a_c01102{bottom:786.561229pt;}
.y59_c01102{bottom:787.530889pt;}
.y58_c01102{bottom:788.562261pt;}
.y57_c01102{bottom:789.227867pt;}
.y56_c01102{bottom:790.594191pt;}
.y55_c01102{bottom:791.892396pt;}
.y54_c01102{bottom:793.903607pt;}
.y53_c01102{bottom:796.543945pt;}
.y52_c01102{bottom:807.856235pt;}
.y51_c01102{bottom:810.595589pt;}
.y50_c01102{bottom:811.958855pt;}
.y4f_c01102{bottom:814.294095pt;}
.y4e_c01102{bottom:815.286964pt;}
.y4d_c01102{bottom:817.005249pt;}
.y4c_c01102{bottom:820.285752pt;}
.y4b_c01102{bottom:821.296364pt;}
.y4a_c01102{bottom:822.998725pt;}
.y49_c01102{bottom:824.017521pt;}
.y48_c01102{bottom:825.331403pt;}
.y47_c01102{bottom:827.999321pt;}
.y46_c01102{bottom:840.770880pt;}
.y45_c01102{bottom:842.044112pt;}
.y44_c01102{bottom:843.861373pt;}
.y43_c01102{bottom:844.806253pt;}
.y42_c01102{bottom:845.389053pt;}
.y41_c01102{bottom:846.325336pt;}
.y40_c01102{bottom:849.398883pt;}
.y3f_c01102{bottom:851.254625pt;}
.y3e_c01102{bottom:852.139613pt;}
.y3d_c01102{bottom:853.664069pt;}
.y3c_c01102{bottom:856.090667pt;}
.y3b_c01102{bottom:877.613668pt;}
.y3a_c01102{bottom:879.281279pt;}
.y39_c01102{bottom:880.095761pt;}
.y38_c01102{bottom:880.929029pt;}
.y37_c01102{bottom:882.871809pt;}
.y36_c01102{bottom:884.230844pt;}
.y35_c01102{bottom:885.326148pt;}
.y34_c01102{bottom:888.076136pt;}
.y33_c01102{bottom:889.150753pt;}
.y1_c01102{bottom:900.240000pt;}
.y32_c01102{bottom:903.529220pt;}
.y31_c01102{bottom:904.153679pt;}
.y30_c01102{bottom:905.102720pt;}
.y2f_c01102{bottom:907.013007pt;}
.y2e_c01102{bottom:908.246331pt;}
.y2d_c01102{bottom:911.127317pt;}
.y2c_c01102{bottom:913.335816pt;}
.y2b_c01102{bottom:914.280972pt;}
.y2a_c01102{bottom:916.508939pt;}
.y29_c01102{bottom:917.422092pt;}
.y28_c01102{bottom:918.359353pt;}
.y27_c01102{bottom:919.311247pt;}
.y26_c01102{bottom:921.178577pt;}
.y25_c01102{bottom:921.805020pt;}
.y24_c01102{bottom:935.648237pt;}
.y23_c01102{bottom:936.591051pt;}
.y22_c01102{bottom:938.707152pt;}
.y21_c01102{bottom:939.360177pt;}
.y20_c01102{bottom:941.804176pt;}
.y1f_c01102{bottom:943.962809pt;}
.y159_c01102{bottom:945.120000pt;}
.y1e_c01102{bottom:945.479164pt;}
.y1d_c01102{bottom:947.878977pt;}
.y1c_c01102{bottom:949.746913pt;}
.y1b_c01102{bottom:950.644632pt;}
.y1a_c01102{bottom:952.782103pt;}
.y19_c01102{bottom:966.402753pt;}
.y18_c01102{bottom:969.262164pt;}
.y17_c01102{bottom:970.207320pt;}
.y16_c01102{bottom:971.152021pt;}
.y15_c01102{bottom:974.663501pt;}
.y14_c01102{bottom:976.552904pt;}
.y13_c01102{bottom:977.451632pt;}
.y12_c01102{bottom:981.185911pt;}
.y11_c01102{bottom:983.029133pt;}
.y10_c01102{bottom:983.727879pt;}
.yf_c01102{bottom:984.956325pt;}
.ye_c01102{bottom:998.542373pt;}
.yd_c01102{bottom:999.426452pt;}
.yc_c01102{bottom:1000.371787pt;}
.yb_c01102{bottom:1000.997119pt;}
.ya_c01102{bottom:1004.044171pt;}
.y9_c01102{bottom:1006.484491pt;}
.y8_c01102{bottom:1007.446111pt;}
.y7_c01102{bottom:1009.887795pt;}
.y6_c01102{bottom:1012.322039pt;}
.y5_c01102{bottom:1013.197479pt;}
.y4_c01102{bottom:1014.747933pt;}
.y3_c01102{bottom:1015.928000pt;}
.y2_c01102{bottom:1056.130667pt;}
.h2_c01102{height:16.000000pt;}
.hd_c01102{height:37.333333pt;}
.h3_c01102{height:48.000000pt;}
.hb_c01102{height:58.687343pt;}
.h6_c01102{height:63.982238pt;}
.h9_c01102{height:63.992480pt;}
.h4_c01102{height:64.030745pt;}
.h8_c01102{height:69.314091pt;}
.ha_c01102{height:69.325186pt;}
.hc_c01102{height:69.331149pt;}
.h5_c01102{height:69.366640pt;}
.h7_c01102{height:74.645944pt;}
.h0_c01102{height:1107.840000pt;}
.h1_c01102{height:1108.000000pt;}
.w0_c01102{width:824.400000pt;}
.w1_c01102{width:824.666667pt;}
.x0_c01102{left:0.000000pt;}
.x2_c01102{left:10.560000pt;}
.x1_c01102{left:12.000000pt;}
.xe9_c01102{left:103.379087pt;}
.xe3_c01102{left:104.628000pt;}
.xd6_c01102{left:106.186103pt;}
.xcf_c01102{left:109.489239pt;}
.xc9_c01102{left:110.688847pt;}
.xbb_c01102{left:111.894013pt;}
.xb4_c01102{left:114.090371pt;}
.xa5_c01102{left:115.403584pt;}
.xaf_c01102{left:116.455277pt;}
.x9d_c01102{left:117.736880pt;}
.x84_c01102{left:118.932723pt;}
.x75_c01102{left:120.796592pt;}
.x68_c01102{left:122.691768pt;}
.x6f_c01102{left:123.674065pt;}
.x58_c01102{left:125.099013pt;}
.x42_c01102{left:127.262784pt;}
.x1b_c01102{left:130.931084pt;}
.x6_c01102{left:133.645333pt;}
.xbc_c01102{left:141.398031pt;}
.x60_c01102{left:145.233716pt;}
.x25_c01102{left:149.869164pt;}
.x76_c01102{left:151.447839pt;}
.x69_c01102{left:153.729640pt;}
.xde_c01102{left:154.795891pt;}
.x91_c01102{left:157.743433pt;}
.xa6_c01102{left:164.437168pt;}
.x32_c01102{left:168.596620pt;}
.x7_c01102{left:171.712000pt;}
.x61_c01102{left:172.872084pt;}
.xd7_c01102{left:175.713215pt;}
.xea_c01102{left:182.994192pt;}
.xd0_c01102{left:185.958643pt;}
.x85_c01102{left:188.279309pt;}
.x70_c01102{left:190.845157pt;}
.x12_c01102{left:193.550628pt;}
.x1c_c01102{left:199.881751pt;}
.xb5_c01102{left:201.237780pt;}
.xe4_c01102{left:203.217312pt;}
.x4d_c01102{left:204.422244pt;}
.x43_c01102{left:205.747509pt;}
.x86_c01102{left:207.215041pt;}
.x26_c01102{left:208.211345pt;}
.xbd_c01102{left:209.740367pt;}
.x59_c01102{left:213.173557pt;}
.x95_c01102{left:214.372000pt;}
.x92_c01102{left:216.299796pt;}
.xb6_c01102{left:219.841911pt;}
.x8_c01102{left:221.726667pt;}
.xa7_c01102{left:223.981564pt;}
.x39_c01102{left:226.442667pt;}
.x1d_c01102{left:228.840417pt;}
.xe5_c01102{left:230.760408pt;}
.xc2_c01102{left:236.880643pt;}
.x27_c01102{left:237.970436pt;}
.x77_c01102{left:239.054281pt;}
.xb0_c01102{left:240.717557pt;}
.x44_c01102{left:244.385247pt;}
.x9_c01102{left:249.966667pt;}
.x13_c01102{left:251.158184pt;}
.xdf_c01102{left:252.086503pt;}
.x96_c01102{left:254.455876pt;}
.xad_c01102{left:261.411783pt;}
.x4e_c01102{left:263.574080pt;}
.x87_c01102{left:265.932615pt;}
.x28_c01102{left:267.257527pt;}
.xb7_c01102{left:269.256200pt;}
.x62_c01102{left:270.995540pt;}
.xd8_c01102{left:273.333623pt;}
.x45_c01102{left:274.365144pt;}
.x80_c01102{left:276.745129pt;}
.xb1_c01102{left:279.825077pt;}
.xe0_c01102{left:282.309583pt;}
.xca_c01102{left:284.523459pt;}
.x1e_c01102{left:289.096417pt;}
.x5a_c01102{left:291.428721pt;}
.x93_c01102{left:294.578960pt;}
.x29_c01102{left:295.809992pt;}
.x63_c01102{left:300.525619pt;}
.x4f_c01102{left:301.749192pt;}
.xd9_c01102{left:302.840675pt;}
.x3a_c01102{left:304.720000pt;}
.x33_c01102{left:305.941392pt;}
.x78_c01102{left:307.485033pt;}
.xb2_c01102{left:309.303569pt;}
.xa8_c01102{left:311.476648pt;}
.xd1_c01102{left:313.853519pt;}
.xeb_c01102{left:318.955216pt;}
.x9e_c01102{left:322.094264pt;}
.x46_c01102{left:324.415140pt;}
.x81_c01102{left:326.788067pt;}
.xa_c01102{left:328.490667pt;}
.xae_c01102{left:330.867620pt;}
.x88_c01102{left:334.390033pt;}
.x79_c01102{left:336.801820pt;}
.xe6_c01102{left:339.181212pt;}
.x3_c01102{left:340.560000pt;}
.x50_c01102{left:341.949472pt;}
.xd2_c01102{left:343.949627pt;}
.x71_c01102{left:347.711941pt;}
.x9f_c01102{left:351.586756pt;}
.x34_c01102{left:354.473897pt;}
.x4_c01102{left:360.480000pt;}
.x51_c01102{left:361.526320pt;}
.x2a_c01102{left:365.441176pt;}
.x1f_c01102{left:366.509751pt;}
.x14_c01102{left:367.873255pt;}
.x6a_c01102{left:369.066951pt;}
.x97_c01102{left:373.455424pt;}
.xa0_c01102{left:381.120540pt;}
.x3b_c01102{left:382.444000pt;}
.x52_c01102{left:391.868843pt;}
.x2b_c01102{left:394.982933pt;}
.x15_c01102{left:395.960387pt;}
.x5_c01102{left:399.840000pt;}
.x89_c01102{left:403.761953pt;}
.x7a_c01102{left:406.029781pt;}
.xb_c01102{left:407.254667pt;}
.xa9_c01102{left:409.631728pt;}
.xcb_c01102{left:411.930639pt;}
.x20_c01102{left:415.424417pt;}
.xb8_c01102{left:417.104745pt;}
.x53_c01102{left:420.392864pt;}
.x35_c01102{left:423.860345pt;}
.x94_c01102{left:425.154859pt;}
.x64_c01102{left:428.693779pt;}
.x5b_c01102{left:429.750832pt;}
.x98_c01102{left:431.978176pt;}
.x8a_c01102{left:433.309365pt;}
.x72_c01102{left:436.806300pt;}
.xc_c01102{left:438.274667pt;}
.xaa_c01102{left:439.589740pt;}
.x3c_c01102{left:442.306667pt;}
.x65_c01102{left:449.386555pt;}
.x47_c01102{left:450.611401pt;}
.x36_c01102{left:453.624448pt;}
.x16_c01102{left:455.014568pt;}
.x5c_c01102{left:458.549055pt;}
.xda_c01102{left:460.076087pt;}
.xc3_c01102{left:462.510787pt;}
.x2c_c01102{left:463.986117pt;}
.x73_c01102{left:465.488988pt;}
.xab_c01102{left:468.358276pt;}
.xe1_c01102{left:478.842187pt;}
.x54_c01102{left:480.152659pt;}
.x37_c01102{left:482.696468pt;}
.x21_c01102{left:485.057751pt;}
.xe7_c01102{left:487.057188pt;}
.xdb_c01102{left:489.111443pt;}
.xcc_c01102{left:491.135995pt;}
.x8b_c01102{left:492.448189pt;}
.xc4_c01102{left:494.060539pt;}
.x74_c01102{left:496.526095pt;}
.x48_c01102{left:501.132023pt;}
.xb9_c01102{left:504.661079pt;}
.x6b_c01102{left:506.056413pt;}
.x5d_c01102{left:508.269955pt;}
.x99_c01102{left:509.695048pt;}
.x7b_c01102{left:514.190333pt;}
.xd_c01102{left:516.994667pt;}
.xc5_c01102{left:521.459779pt;}
.x8c_c01102{left:522.363560pt;}
.x66_c01102{left:526.715901pt;}
.x55_c01102{left:528.657487pt;}
.x49_c01102{left:530.318628pt;}
.xbe_c01102{left:534.179329pt;}
.x6c_c01102{left:535.346533pt;}
.x5e_c01102{left:537.796136pt;}
.xd3_c01102{left:540.093395pt;}
.x38_c01102{left:542.259340pt;}
.x7c_c01102{left:544.225663pt;}
.xc6_c01102{left:552.402139pt;}
.x2d_c01102{left:554.036681pt;}
.xe2_c01102{left:557.005279pt;}
.xa1_c01102{left:558.902917pt;}
.x8d_c01102{left:561.281525pt;}
.x17_c01102{left:564.757845pt;}
.xe8_c01102{left:566.063436pt;}
.xdc_c01102{left:569.833333pt;}
.x3d_c01102{left:571.656000pt;}
.xbf_c01102{left:573.792821pt;}
.x22_c01102{left:584.961751pt;}
.x3e_c01102{left:590.456000pt;}
.x2e_c01102{left:592.572816pt;}
.x18_c01102{left:594.284936pt;}
.x67_c01102{left:595.711904pt;}
.x4a_c01102{left:599.018929pt;}
.xc0_c01102{left:602.945191pt;}
.xd4_c01102{left:608.143763pt;}
.xc7_c01102{left:611.032783pt;}
.x7d_c01102{left:613.016332pt;}
.x6d_c01102{left:614.363632pt;}
.xe_c01102{left:615.286667pt;}
.x5f_c01102{left:617.747176pt;}
.x3f_c01102{left:620.936000pt;}
.x19_c01102{left:623.826693pt;}
.x56_c01102{left:627.601603pt;}
.xcd_c01102{left:629.651171pt;}
.x7e_c01102{left:632.645273pt;}
.xb3_c01102{left:634.391489pt;}
.xf_c01102{left:635.458667pt;}
.xa2_c01102{left:637.638413pt;}
.x4b_c01102{left:639.120543pt;}
.x8e_c01102{left:640.573249pt;}
.xc1_c01102{left:642.549359pt;}
.x9a_c01102{left:649.491112pt;}
.x2f_c01102{left:652.257623pt;}
.x23_c01102{left:653.223084pt;}
.xce_c01102{left:658.448911pt;}
.xc8_c01102{left:660.420679pt;}
.x82_c01102{left:662.500111pt;}
.x10_c01102{left:665.953333pt;}
.x6e_c01102{left:674.950249pt;}
.xac_c01102{left:675.974452pt;}
.xdd_c01102{left:677.109949pt;}
.x40_c01102{left:679.557333pt;}
.x30_c01102{left:681.924713pt;}
.x24_c01102{left:683.636417pt;}
.xa3_c01102{left:686.633615pt;}
.x9b_c01102{left:687.788776pt;}
.x8f_c01102{left:689.295019pt;}
.x7f_c01102{left:693.257224pt;}
.x11_c01102{left:694.472000pt;}
.x57_c01102{left:698.077739pt;}
.x31_c01102{left:701.422760pt;}
.xba_c01102{left:702.693911pt;}
.xd5_c01102{left:707.635895pt;}
.x90_c01102{left:711.274296pt;}
.x1a_c01102{left:713.181257pt;}
.xa4_c01102{left:714.961837pt;}
.x9c_c01102{left:717.927940pt;}
.x4c_c01102{left:719.694395pt;}
.x41_c01102{left:720.629333pt;}
.x83_c01102{left:730.869529pt;}
.xec_c01102{left:791.280000pt;}
}





/* 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_c01103 {
    display:none;
  }
  .loading-indicator_c01103.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01103 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_c01103 { 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_c01103" -> "#page-container .classname_c01103")
 */
.pf_c01103 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01103 { /* 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_c01103.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01103 { /* 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_c01103 { /* 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_c01103 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01103 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01103 {overflow:visible;}
  }
}
.c_c01103 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01103 { /* 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_c01103:after { /* webkit #35443 */
  content: '';
}
.t_c01103:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01103 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 */
}
.__c01103 { /* 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_c01103 { /* info for Javascript */
  display:none;
}
.l_c01103 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01103 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01103 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01103: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_c01103 {
    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_c01103.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01103.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_c01103 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01103{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01103;src:url('chunks/assets/font_cfe63ee56e9e10a97d33a3db.woff2')format("woff");}.ff1_c01103{font-family:ff1_c01103;line-height:1.000000;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;}
.me2_c01103{transform:matrix(0.011588,0.000209,-0.004499,0.249960,0,0);-ms-transform:matrix(0.011588,0.000209,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.011588,0.000209,-0.004499,0.249960,0,0);}
.ma3_c01103{transform:matrix(0.011589,0.000151,-0.003250,0.249979,0,0);-ms-transform:matrix(0.011589,0.000151,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.011589,0.000151,-0.003250,0.249979,0,0);}
.m89_c01103{transform:matrix(0.012479,0.000162,-0.003250,0.249979,0,0);-ms-transform:matrix(0.012479,0.000162,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.012479,0.000162,-0.003250,0.249979,0,0);}
.me3_c01103{transform:matrix(0.013253,0.000239,-0.004499,0.249960,0,0);-ms-transform:matrix(0.013253,0.000239,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.013253,0.000239,-0.004499,0.249960,0,0);}
.m5_c01103{transform:matrix(0.014684,0.000191,-0.003250,0.249979,0,0);-ms-transform:matrix(0.014684,0.000191,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.014684,0.000191,-0.003250,0.249979,0,0);}
.m86_c01103{transform:matrix(0.015909,0.000207,-0.003250,0.249979,0,0);-ms-transform:matrix(0.015909,0.000207,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.015909,0.000207,-0.003250,0.249979,0,0);}
.ma4_c01103{transform:matrix(0.019578,0.000255,-0.003250,0.249979,0,0);-ms-transform:matrix(0.019578,0.000255,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.019578,0.000255,-0.003250,0.249979,0,0);}
.m14_c01103{transform:matrix(0.035372,0.000460,-0.003250,0.249979,0,0);-ms-transform:matrix(0.035372,0.000460,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.035372,0.000460,-0.003250,0.249979,0,0);}
.m65_c01103{transform:matrix(0.048891,0.000636,-0.003250,0.249979,0,0);-ms-transform:matrix(0.048891,0.000636,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.048891,0.000636,-0.003250,0.249979,0,0);}
.m95_c01103{transform:matrix(0.053845,0.000700,-0.003250,0.249979,0,0);-ms-transform:matrix(0.053845,0.000700,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.053845,0.000700,-0.003250,0.249979,0,0);}
.mc2_c01103{transform:matrix(0.057625,0.000749,-0.003250,0.249979,0,0);-ms-transform:matrix(0.057625,0.000749,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.057625,0.000749,-0.003250,0.249979,0,0);}
.m10e_c01103{transform:matrix(0.079305,0.003572,-0.011250,0.249747,0,0);-ms-transform:matrix(0.079305,0.003572,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.079305,0.003572,-0.011250,0.249747,0,0);}
.m100_c01103{transform:matrix(0.086847,0.004521,-0.012995,0.249662,0,0);-ms-transform:matrix(0.086847,0.004521,-0.012995,0.249662,0,0);-webkit-transform:matrix(0.086847,0.004521,-0.012995,0.249662,0,0);}
.m103_c01103{transform:matrix(0.132221,0.005956,-0.011250,0.249747,0,0);-ms-transform:matrix(0.132221,0.005956,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.132221,0.005956,-0.011250,0.249747,0,0);}
.m3c_c01103{transform:matrix(0.133829,0.001740,-0.003250,0.249979,0,0);-ms-transform:matrix(0.133829,0.001740,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.133829,0.001740,-0.003250,0.249979,0,0);}
.mdf_c01103{transform:matrix(0.134403,0.002419,-0.004499,0.249960,0,0);-ms-transform:matrix(0.134403,0.002419,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.134403,0.002419,-0.004499,0.249960,0,0);}
.ma5_c01103{transform:matrix(0.144403,0.001877,-0.003250,0.249979,0,0);-ms-transform:matrix(0.144403,0.001877,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.144403,0.001877,-0.003250,0.249979,0,0);}
.mb7_c01103{transform:matrix(0.150517,0.001957,-0.003250,0.249979,0,0);-ms-transform:matrix(0.150517,0.001957,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.150517,0.001957,-0.003250,0.249979,0,0);}
.m1d_c01103{transform:matrix(0.153487,0.001995,-0.003250,0.249979,0,0);-ms-transform:matrix(0.153487,0.001995,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.153487,0.001995,-0.003250,0.249979,0,0);}
.mc0_c01103{transform:matrix(0.161086,0.002094,-0.003250,0.249979,0,0);-ms-transform:matrix(0.161086,0.002094,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.161086,0.002094,-0.003250,0.249979,0,0);}
.mb8_c01103{transform:matrix(0.164361,0.002137,-0.003250,0.249979,0,0);-ms-transform:matrix(0.164361,0.002137,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.164361,0.002137,-0.003250,0.249979,0,0);}
.m101_c01103{transform:matrix(0.166490,0.008666,-0.012995,0.249662,0,0);-ms-transform:matrix(0.166490,0.008666,-0.012995,0.249662,0,0);-webkit-transform:matrix(0.166490,0.008666,-0.012995,0.249662,0,0);}
.mf6_c01103{transform:matrix(0.171622,0.003089,-0.004499,0.249960,0,0);-ms-transform:matrix(0.171622,0.003089,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.171622,0.003089,-0.004499,0.249960,0,0);}
.mb6_c01103{transform:matrix(0.172880,0.002247,-0.003250,0.249979,0,0);-ms-transform:matrix(0.172880,0.002247,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.172880,0.002247,-0.003250,0.249979,0,0);}
.mbf_c01103{transform:matrix(0.175110,0.002276,-0.003250,0.249979,0,0);-ms-transform:matrix(0.175110,0.002276,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.175110,0.002276,-0.003250,0.249979,0,0);}
.mbb_c01103{transform:matrix(0.178335,0.002318,-0.003250,0.249979,0,0);-ms-transform:matrix(0.178335,0.002318,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.178335,0.002318,-0.003250,0.249979,0,0);}
.m9c_c01103{transform:matrix(0.180850,0.002351,-0.003250,0.249979,0,0);-ms-transform:matrix(0.180850,0.002351,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.180850,0.002351,-0.003250,0.249979,0,0);}
.mbe_c01103{transform:matrix(0.181920,0.002365,-0.003250,0.249979,0,0);-ms-transform:matrix(0.181920,0.002365,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.181920,0.002365,-0.003250,0.249979,0,0);}
.mbc_c01103{transform:matrix(0.182940,0.002378,-0.003250,0.249979,0,0);-ms-transform:matrix(0.182940,0.002378,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.182940,0.002378,-0.003250,0.249979,0,0);}
.m3d_c01103{transform:matrix(0.189274,0.002461,-0.003250,0.249979,0,0);-ms-transform:matrix(0.189274,0.002461,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.189274,0.002461,-0.003250,0.249979,0,0);}
.mff_c01103{transform:matrix(0.193104,0.010051,-0.012995,0.249662,0,0);-ms-transform:matrix(0.193104,0.010051,-0.012995,0.249662,0,0);-webkit-transform:matrix(0.193104,0.010051,-0.012995,0.249662,0,0);}
.m2_c01103{transform:matrix(0.193514,0.002516,-0.003250,0.249979,0,0);-ms-transform:matrix(0.193514,0.002516,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.193514,0.002516,-0.003250,0.249979,0,0);}
.m72_c01103{transform:matrix(0.193794,0.002519,-0.003250,0.249979,0,0);-ms-transform:matrix(0.193794,0.002519,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.193794,0.002519,-0.003250,0.249979,0,0);}
.m108_c01103{transform:matrix(0.195936,0.008826,-0.011250,0.249747,0,0);-ms-transform:matrix(0.195936,0.008826,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.195936,0.008826,-0.011250,0.249747,0,0);}
.mc1_c01103{transform:matrix(0.196713,0.002557,-0.003250,0.249979,0,0);-ms-transform:matrix(0.196713,0.002557,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.196713,0.002557,-0.003250,0.249979,0,0);}
.m68_c01103{transform:matrix(0.197928,0.002573,-0.003250,0.249979,0,0);-ms-transform:matrix(0.197928,0.002573,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.197928,0.002573,-0.003250,0.249979,0,0);}
.mba_c01103{transform:matrix(0.197938,0.002573,-0.003250,0.249979,0,0);-ms-transform:matrix(0.197938,0.002573,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.197938,0.002573,-0.003250,0.249979,0,0);}
.m11_c01103{transform:matrix(0.198153,0.002576,-0.003250,0.249979,0,0);-ms-transform:matrix(0.198153,0.002576,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.198153,0.002576,-0.003250,0.249979,0,0);}
.mc9_c01103{transform:matrix(0.198558,0.002581,-0.003250,0.249979,0,0);-ms-transform:matrix(0.198558,0.002581,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.198558,0.002581,-0.003250,0.249979,0,0);}
.m82_c01103{transform:matrix(0.202283,0.002630,-0.003250,0.249979,0,0);-ms-transform:matrix(0.202283,0.002630,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.202283,0.002630,-0.003250,0.249979,0,0);}
.m109_c01103{transform:matrix(0.202600,0.009126,-0.011250,0.249747,0,0);-ms-transform:matrix(0.202600,0.009126,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.202600,0.009126,-0.011250,0.249747,0,0);}
.me_c01103{transform:matrix(0.209062,0.002718,-0.003250,0.249979,0,0);-ms-transform:matrix(0.209062,0.002718,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.209062,0.002718,-0.003250,0.249979,0,0);}
.mef_c01103{transform:matrix(0.209156,0.003765,-0.004499,0.249960,0,0);-ms-transform:matrix(0.209156,0.003765,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.209156,0.003765,-0.004499,0.249960,0,0);}
.mbd_c01103{transform:matrix(0.214042,0.002783,-0.003250,0.249979,0,0);-ms-transform:matrix(0.214042,0.002783,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.214042,0.002783,-0.003250,0.249979,0,0);}
.m5b_c01103{transform:matrix(0.214797,0.002792,-0.003250,0.249979,0,0);-ms-transform:matrix(0.214797,0.002792,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.214797,0.002792,-0.003250,0.249979,0,0);}
.mc5_c01103{transform:matrix(0.216742,0.002818,-0.003250,0.249979,0,0);-ms-transform:matrix(0.216742,0.002818,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.216742,0.002818,-0.003250,0.249979,0,0);}
.m6e_c01103{transform:matrix(0.216892,0.002820,-0.003250,0.249979,0,0);-ms-transform:matrix(0.216892,0.002820,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.216892,0.002820,-0.003250,0.249979,0,0);}
.mb9_c01103{transform:matrix(0.220791,0.002870,-0.003250,0.249979,0,0);-ms-transform:matrix(0.220791,0.002870,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.220791,0.002870,-0.003250,0.249979,0,0);}
.mc6_c01103{transform:matrix(0.221701,0.002882,-0.003250,0.249979,0,0);-ms-transform:matrix(0.221701,0.002882,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.221701,0.002882,-0.003250,0.249979,0,0);}
.mee_c01103{transform:matrix(0.223199,0.004018,-0.004499,0.249960,0,0);-ms-transform:matrix(0.223199,0.004018,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.223199,0.004018,-0.004499,0.249960,0,0);}
.m7e_c01103{transform:matrix(0.224216,0.002915,-0.003250,0.249979,0,0);-ms-transform:matrix(0.224216,0.002915,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.224216,0.002915,-0.003250,0.249979,0,0);}
.m80_c01103{transform:matrix(0.225326,0.002929,-0.003250,0.249979,0,0);-ms-transform:matrix(0.225326,0.002929,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.225326,0.002929,-0.003250,0.249979,0,0);}
.m78_c01103{transform:matrix(0.226281,0.002942,-0.003250,0.249979,0,0);-ms-transform:matrix(0.226281,0.002942,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.226281,0.002942,-0.003250,0.249979,0,0);}
.m105_c01103{transform:matrix(0.228353,0.010286,-0.011250,0.249747,0,0);-ms-transform:matrix(0.228353,0.010286,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.228353,0.010286,-0.011250,0.249747,0,0);}
.m27_c01103{transform:matrix(0.228691,0.002973,-0.003250,0.249979,0,0);-ms-transform:matrix(0.228691,0.002973,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.228691,0.002973,-0.003250,0.249979,0,0);}
.me4_c01103{transform:matrix(0.229418,0.004130,-0.004499,0.249960,0,0);-ms-transform:matrix(0.229418,0.004130,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.229418,0.004130,-0.004499,0.249960,0,0);}
.m52_c01103{transform:matrix(0.229716,0.002986,-0.003250,0.249979,0,0);-ms-transform:matrix(0.229716,0.002986,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.229716,0.002986,-0.003250,0.249979,0,0);}
.mf3_c01103{transform:matrix(0.232422,0.004184,-0.004499,0.249960,0,0);-ms-transform:matrix(0.232422,0.004184,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.232422,0.004184,-0.004499,0.249960,0,0);}
.m73_c01103{transform:matrix(0.232790,0.003026,-0.003250,0.249979,0,0);-ms-transform:matrix(0.232790,0.003026,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.232790,0.003026,-0.003250,0.249979,0,0);}
.m43_c01103{transform:matrix(0.233220,0.003032,-0.003250,0.249979,0,0);-ms-transform:matrix(0.233220,0.003032,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.233220,0.003032,-0.003250,0.249979,0,0);}
.m92_c01103{transform:matrix(0.233470,0.003035,-0.003250,0.249979,0,0);-ms-transform:matrix(0.233470,0.003035,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.233470,0.003035,-0.003250,0.249979,0,0);}
.mc7_c01103{transform:matrix(0.233635,0.003037,-0.003250,0.249979,0,0);-ms-transform:matrix(0.233635,0.003037,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.233635,0.003037,-0.003250,0.249979,0,0);}
.m3a_c01103{transform:matrix(0.233675,0.003038,-0.003250,0.249979,0,0);-ms-transform:matrix(0.233675,0.003038,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.233675,0.003038,-0.003250,0.249979,0,0);}
.m9f_c01103{transform:matrix(0.233985,0.003042,-0.003250,0.249979,0,0);-ms-transform:matrix(0.233985,0.003042,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.233985,0.003042,-0.003250,0.249979,0,0);}
.m45_c01103{transform:matrix(0.235910,0.003067,-0.003250,0.249979,0,0);-ms-transform:matrix(0.235910,0.003067,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.235910,0.003067,-0.003250,0.249979,0,0);}
.m3f_c01103{transform:matrix(0.237150,0.003083,-0.003250,0.249979,0,0);-ms-transform:matrix(0.237150,0.003083,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.237150,0.003083,-0.003250,0.249979,0,0);}
.med_c01103{transform:matrix(0.237312,0.004272,-0.004499,0.249960,0,0);-ms-transform:matrix(0.237312,0.004272,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.237312,0.004272,-0.004499,0.249960,0,0);}
.mb0_c01103{transform:matrix(0.237540,0.003088,-0.003250,0.249979,0,0);-ms-transform:matrix(0.237540,0.003088,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.237540,0.003088,-0.003250,0.249979,0,0);}
.mf1_c01103{transform:matrix(0.237931,0.004283,-0.004499,0.249960,0,0);-ms-transform:matrix(0.237931,0.004283,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.237931,0.004283,-0.004499,0.249960,0,0);}
.mec_c01103{transform:matrix(0.238301,0.004289,-0.004499,0.249960,0,0);-ms-transform:matrix(0.238301,0.004289,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.238301,0.004289,-0.004499,0.249960,0,0);}
.m28_c01103{transform:matrix(0.238520,0.003101,-0.003250,0.249979,0,0);-ms-transform:matrix(0.238520,0.003101,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.238520,0.003101,-0.003250,0.249979,0,0);}
.m77_c01103{transform:matrix(0.238950,0.003106,-0.003250,0.249979,0,0);-ms-transform:matrix(0.238950,0.003106,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.238950,0.003106,-0.003250,0.249979,0,0);}
.me5_c01103{transform:matrix(0.239881,0.004318,-0.004499,0.249960,0,0);-ms-transform:matrix(0.239881,0.004318,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.239881,0.004318,-0.004499,0.249960,0,0);}
.m2b_c01103{transform:matrix(0.240615,0.003128,-0.003250,0.249979,0,0);-ms-transform:matrix(0.240615,0.003128,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.240615,0.003128,-0.003250,0.249979,0,0);}
.m1e_c01103{transform:matrix(0.240815,0.003131,-0.003250,0.249979,0,0);-ms-transform:matrix(0.240815,0.003131,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.240815,0.003131,-0.003250,0.249979,0,0);}
.mb4_c01103{transform:matrix(0.240850,0.003131,-0.003250,0.249979,0,0);-ms-transform:matrix(0.240850,0.003131,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.240850,0.003131,-0.003250,0.249979,0,0);}
.m6d_c01103{transform:matrix(0.241260,0.003136,-0.003250,0.249979,0,0);-ms-transform:matrix(0.241260,0.003136,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.241260,0.003136,-0.003250,0.249979,0,0);}
.m24_c01103{transform:matrix(0.241615,0.003141,-0.003250,0.249979,0,0);-ms-transform:matrix(0.241615,0.003141,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.241615,0.003141,-0.003250,0.249979,0,0);}
.m48_c01103{transform:matrix(0.241760,0.003143,-0.003250,0.249979,0,0);-ms-transform:matrix(0.241760,0.003143,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.241760,0.003143,-0.003250,0.249979,0,0);}
.m51_c01103{transform:matrix(0.241805,0.003143,-0.003250,0.249979,0,0);-ms-transform:matrix(0.241805,0.003143,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.241805,0.003143,-0.003250,0.249979,0,0);}
.mcc_c01103{transform:matrix(0.242510,0.003153,-0.003250,0.249979,0,0);-ms-transform:matrix(0.242510,0.003153,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.242510,0.003153,-0.003250,0.249979,0,0);}
.ma2_c01103{transform:matrix(0.243409,0.003164,-0.003250,0.249979,0,0);-ms-transform:matrix(0.243409,0.003164,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.243409,0.003164,-0.003250,0.249979,0,0);}
.m8d_c01103{transform:matrix(0.244379,0.003177,-0.003250,0.249979,0,0);-ms-transform:matrix(0.244379,0.003177,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.244379,0.003177,-0.003250,0.249979,0,0);}
.ma1_c01103{transform:matrix(0.244964,0.003185,-0.003250,0.249979,0,0);-ms-transform:matrix(0.244964,0.003185,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.244964,0.003185,-0.003250,0.249979,0,0);}
.m9e_c01103{transform:matrix(0.245804,0.003195,-0.003250,0.249979,0,0);-ms-transform:matrix(0.245804,0.003195,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.245804,0.003195,-0.003250,0.249979,0,0);}
.m36_c01103{transform:matrix(0.245999,0.003198,-0.003250,0.249979,0,0);-ms-transform:matrix(0.245999,0.003198,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.245999,0.003198,-0.003250,0.249979,0,0);}
.mf0_c01103{transform:matrix(0.246055,0.004429,-0.004499,0.249960,0,0);-ms-transform:matrix(0.246055,0.004429,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.246055,0.004429,-0.004499,0.249960,0,0);}
.m90_c01103{transform:matrix(0.247294,0.003215,-0.003250,0.249979,0,0);-ms-transform:matrix(0.247294,0.003215,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.247294,0.003215,-0.003250,0.249979,0,0);}
.m8e_c01103{transform:matrix(0.247469,0.003217,-0.003250,0.249979,0,0);-ms-transform:matrix(0.247469,0.003217,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.247469,0.003217,-0.003250,0.249979,0,0);}
.mc8_c01103{transform:matrix(0.248184,0.003226,-0.003250,0.249979,0,0);-ms-transform:matrix(0.248184,0.003226,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.248184,0.003226,-0.003250,0.249979,0,0);}
.m76_c01103{transform:matrix(0.249214,0.003240,-0.003250,0.249979,0,0);-ms-transform:matrix(0.249214,0.003240,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.249214,0.003240,-0.003250,0.249979,0,0);}
.m10_c01103{transform:matrix(0.250629,0.003258,-0.003250,0.249979,0,0);-ms-transform:matrix(0.250629,0.003258,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.250629,0.003258,-0.003250,0.249979,0,0);}
.ma0_c01103{transform:matrix(0.250789,0.003260,-0.003250,0.249979,0,0);-ms-transform:matrix(0.250789,0.003260,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.250789,0.003260,-0.003250,0.249979,0,0);}
.m10f_c01103{transform:matrix(0.251060,0.011309,-0.011250,0.249747,0,0);-ms-transform:matrix(0.251060,0.011309,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.251060,0.011309,-0.011250,0.249747,0,0);}
.mac_c01103{transform:matrix(0.252724,0.003285,-0.003250,0.249979,0,0);-ms-transform:matrix(0.252724,0.003285,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.252724,0.003285,-0.003250,0.249979,0,0);}
.md3_c01103{transform:matrix(0.253784,0.004568,-0.004499,0.249960,0,0);-ms-transform:matrix(0.253784,0.004568,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.253784,0.004568,-0.004499,0.249960,0,0);}
.mca_c01103{transform:matrix(0.255603,0.003323,-0.003250,0.249979,0,0);-ms-transform:matrix(0.255603,0.003323,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.255603,0.003323,-0.003250,0.249979,0,0);}
.m99_c01103{transform:matrix(0.255803,0.003325,-0.003250,0.249979,0,0);-ms-transform:matrix(0.255803,0.003325,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.255803,0.003325,-0.003250,0.249979,0,0);}
.me8_c01103{transform:matrix(0.256498,0.004617,-0.004499,0.249960,0,0);-ms-transform:matrix(0.256498,0.004617,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.256498,0.004617,-0.004499,0.249960,0,0);}
.mf5_c01103{transform:matrix(0.256933,0.004625,-0.004499,0.249960,0,0);-ms-transform:matrix(0.256933,0.004625,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.256933,0.004625,-0.004499,0.249960,0,0);}
.m56_c01103{transform:matrix(0.257303,0.003345,-0.003250,0.249979,0,0);-ms-transform:matrix(0.257303,0.003345,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.257303,0.003345,-0.003250,0.249979,0,0);}
.m6f_c01103{transform:matrix(0.257488,0.003347,-0.003250,0.249979,0,0);-ms-transform:matrix(0.257488,0.003347,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.257488,0.003347,-0.003250,0.249979,0,0);}
.m63_c01103{transform:matrix(0.257533,0.003348,-0.003250,0.249979,0,0);-ms-transform:matrix(0.257533,0.003348,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.257533,0.003348,-0.003250,0.249979,0,0);}
.m9b_c01103{transform:matrix(0.260358,0.003385,-0.003250,0.249979,0,0);-ms-transform:matrix(0.260358,0.003385,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.260358,0.003385,-0.003250,0.249979,0,0);}
.m1c_c01103{transform:matrix(0.260463,0.003386,-0.003250,0.249979,0,0);-ms-transform:matrix(0.260463,0.003386,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.260463,0.003386,-0.003250,0.249979,0,0);}
.m9a_c01103{transform:matrix(0.261288,0.003397,-0.003250,0.249979,0,0);-ms-transform:matrix(0.261288,0.003397,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.261288,0.003397,-0.003250,0.249979,0,0);}
.mb5_c01103{transform:matrix(0.261333,0.003397,-0.003250,0.249979,0,0);-ms-transform:matrix(0.261333,0.003397,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.261333,0.003397,-0.003250,0.249979,0,0);}
.m7c_c01103{transform:matrix(0.261808,0.003404,-0.003250,0.249979,0,0);-ms-transform:matrix(0.261808,0.003404,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.261808,0.003404,-0.003250,0.249979,0,0);}
.m29_c01103{transform:matrix(0.262493,0.003412,-0.003250,0.249979,0,0);-ms-transform:matrix(0.262493,0.003412,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.262493,0.003412,-0.003250,0.249979,0,0);}
.mc_c01103{transform:matrix(0.262703,0.003415,-0.003250,0.249979,0,0);-ms-transform:matrix(0.262703,0.003415,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.262703,0.003415,-0.003250,0.249979,0,0);}
.mcf_c01103{transform:matrix(0.263897,0.004750,-0.004499,0.249960,0,0);-ms-transform:matrix(0.263897,0.004750,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.263897,0.004750,-0.004499,0.249960,0,0);}
.m8c_c01103{transform:matrix(0.264123,0.003434,-0.003250,0.249979,0,0);-ms-transform:matrix(0.264123,0.003434,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.264123,0.003434,-0.003250,0.249979,0,0);}
.mb2_c01103{transform:matrix(0.264243,0.003435,-0.003250,0.249979,0,0);-ms-transform:matrix(0.264243,0.003435,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.264243,0.003435,-0.003250,0.249979,0,0);}
.m106_c01103{transform:matrix(0.264377,0.011909,-0.011250,0.249747,0,0);-ms-transform:matrix(0.264377,0.011909,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.264377,0.011909,-0.011250,0.249747,0,0);}
.m44_c01103{transform:matrix(0.267032,0.003471,-0.003250,0.249979,0,0);-ms-transform:matrix(0.267032,0.003471,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.267032,0.003471,-0.003250,0.249979,0,0);}
.m62_c01103{transform:matrix(0.268002,0.003484,-0.003250,0.249979,0,0);-ms-transform:matrix(0.268002,0.003484,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.268002,0.003484,-0.003250,0.249979,0,0);}
.m50_c01103{transform:matrix(0.268277,0.003488,-0.003250,0.249979,0,0);-ms-transform:matrix(0.268277,0.003488,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.268277,0.003488,-0.003250,0.249979,0,0);}
.mab_c01103{transform:matrix(0.268762,0.003494,-0.003250,0.249979,0,0);-ms-transform:matrix(0.268762,0.003494,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.268762,0.003494,-0.003250,0.249979,0,0);}
.m53_c01103{transform:matrix(0.269127,0.003499,-0.003250,0.249979,0,0);-ms-transform:matrix(0.269127,0.003499,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.269127,0.003499,-0.003250,0.249979,0,0);}
.mcb_c01103{transform:matrix(0.269922,0.003509,-0.003250,0.249979,0,0);-ms-transform:matrix(0.269922,0.003509,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.269922,0.003509,-0.003250,0.249979,0,0);}
.m2e_c01103{transform:matrix(0.270102,0.003511,-0.003250,0.249979,0,0);-ms-transform:matrix(0.270102,0.003511,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.270102,0.003511,-0.003250,0.249979,0,0);}
.me6_c01103{transform:matrix(0.272166,0.004899,-0.004499,0.249960,0,0);-ms-transform:matrix(0.272166,0.004899,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.272166,0.004899,-0.004499,0.249960,0,0);}
.m7b_c01103{transform:matrix(0.274607,0.003570,-0.003250,0.249979,0,0);-ms-transform:matrix(0.274607,0.003570,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.274607,0.003570,-0.003250,0.249979,0,0);}
.m37_c01103{transform:matrix(0.277247,0.003604,-0.003250,0.249979,0,0);-ms-transform:matrix(0.277247,0.003604,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.277247,0.003604,-0.003250,0.249979,0,0);}
.m15_c01103{transform:matrix(0.277532,0.003608,-0.003250,0.249979,0,0);-ms-transform:matrix(0.277532,0.003608,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.277532,0.003608,-0.003250,0.249979,0,0);}
.m5f_c01103{transform:matrix(0.277702,0.003610,-0.003250,0.249979,0,0);-ms-transform:matrix(0.277702,0.003610,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.277702,0.003610,-0.003250,0.249979,0,0);}
.m91_c01103{transform:matrix(0.279056,0.003628,-0.003250,0.249979,0,0);-ms-transform:matrix(0.279056,0.003628,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.279056,0.003628,-0.003250,0.249979,0,0);}
.m2a_c01103{transform:matrix(0.279576,0.003634,-0.003250,0.249979,0,0);-ms-transform:matrix(0.279576,0.003634,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.279576,0.003634,-0.003250,0.249979,0,0);}
.m23_c01103{transform:matrix(0.282021,0.003666,-0.003250,0.249979,0,0);-ms-transform:matrix(0.282021,0.003666,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.282021,0.003666,-0.003250,0.249979,0,0);}
.m85_c01103{transform:matrix(0.282381,0.003671,-0.003250,0.249979,0,0);-ms-transform:matrix(0.282381,0.003671,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.282381,0.003671,-0.003250,0.249979,0,0);}
.m83_c01103{transform:matrix(0.283001,0.003679,-0.003250,0.249979,0,0);-ms-transform:matrix(0.283001,0.003679,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.283001,0.003679,-0.003250,0.249979,0,0);}
.m41_c01103{transform:matrix(0.284351,0.003697,-0.003250,0.249979,0,0);-ms-transform:matrix(0.284351,0.003697,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.284351,0.003697,-0.003250,0.249979,0,0);}
.mea_c01103{transform:matrix(0.284804,0.005126,-0.004499,0.249960,0,0);-ms-transform:matrix(0.284804,0.005126,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.284804,0.005126,-0.004499,0.249960,0,0);}
.md5_c01103{transform:matrix(0.285509,0.005139,-0.004499,0.249960,0,0);-ms-transform:matrix(0.285509,0.005139,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.285509,0.005139,-0.004499,0.249960,0,0);}
.m1a_c01103{transform:matrix(0.286701,0.003727,-0.003250,0.249979,0,0);-ms-transform:matrix(0.286701,0.003727,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.286701,0.003727,-0.003250,0.249979,0,0);}
.m66_c01103{transform:matrix(0.286796,0.003728,-0.003250,0.249979,0,0);-ms-transform:matrix(0.286796,0.003728,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.286796,0.003728,-0.003250,0.249979,0,0);}
.md0_c01103{transform:matrix(0.288483,0.005193,-0.004499,0.249960,0,0);-ms-transform:matrix(0.288483,0.005193,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.288483,0.005193,-0.004499,0.249960,0,0);}
.mb3_c01103{transform:matrix(0.288796,0.003754,-0.003250,0.249979,0,0);-ms-transform:matrix(0.288796,0.003754,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.288796,0.003754,-0.003250,0.249979,0,0);}
.m93_c01103{transform:matrix(0.289036,0.003757,-0.003250,0.249979,0,0);-ms-transform:matrix(0.289036,0.003757,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.289036,0.003757,-0.003250,0.249979,0,0);}
.m34_c01103{transform:matrix(0.290960,0.003782,-0.003250,0.249979,0,0);-ms-transform:matrix(0.290960,0.003782,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.290960,0.003782,-0.003250,0.249979,0,0);}
.m1b_c01103{transform:matrix(0.291020,0.003783,-0.003250,0.249979,0,0);-ms-transform:matrix(0.291020,0.003783,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.291020,0.003783,-0.003250,0.249979,0,0);}
.m4e_c01103{transform:matrix(0.291790,0.003793,-0.003250,0.249979,0,0);-ms-transform:matrix(0.291790,0.003793,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.291790,0.003793,-0.003250,0.249979,0,0);}
.m40_c01103{transform:matrix(0.292340,0.003800,-0.003250,0.249979,0,0);-ms-transform:matrix(0.292340,0.003800,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.292340,0.003800,-0.003250,0.249979,0,0);}
.m7f_c01103{transform:matrix(0.292885,0.003808,-0.003250,0.249979,0,0);-ms-transform:matrix(0.292885,0.003808,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.292885,0.003808,-0.003250,0.249979,0,0);}
.m4c_c01103{transform:matrix(0.293890,0.003821,-0.003250,0.249979,0,0);-ms-transform:matrix(0.293890,0.003821,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.293890,0.003821,-0.003250,0.249979,0,0);}
.m42_c01103{transform:matrix(0.295545,0.003842,-0.003250,0.249979,0,0);-ms-transform:matrix(0.295545,0.003842,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.295545,0.003842,-0.003250,0.249979,0,0);}
.m5a_c01103{transform:matrix(0.295795,0.003845,-0.003250,0.249979,0,0);-ms-transform:matrix(0.295795,0.003845,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.295795,0.003845,-0.003250,0.249979,0,0);}
.m46_c01103{transform:matrix(0.295850,0.003846,-0.003250,0.249979,0,0);-ms-transform:matrix(0.295850,0.003846,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.295850,0.003846,-0.003250,0.249979,0,0);}
.m38_c01103{transform:matrix(0.297295,0.003865,-0.003250,0.249979,0,0);-ms-transform:matrix(0.297295,0.003865,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.297295,0.003865,-0.003250,0.249979,0,0);}
.m35_c01103{transform:matrix(0.299270,0.003891,-0.003250,0.249979,0,0);-ms-transform:matrix(0.299270,0.003891,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.299270,0.003891,-0.003250,0.249979,0,0);}
.m6a_c01103{transform:matrix(0.300520,0.003907,-0.003250,0.249979,0,0);-ms-transform:matrix(0.300520,0.003907,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.300520,0.003907,-0.003250,0.249979,0,0);}
.m26_c01103{transform:matrix(0.301670,0.003922,-0.003250,0.249979,0,0);-ms-transform:matrix(0.301670,0.003922,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.301670,0.003922,-0.003250,0.249979,0,0);}
.m74_c01103{transform:matrix(0.302134,0.003928,-0.003250,0.249979,0,0);-ms-transform:matrix(0.302134,0.003928,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.302134,0.003928,-0.003250,0.249979,0,0);}
.mdb_c01103{transform:matrix(0.304026,0.005472,-0.004499,0.249960,0,0);-ms-transform:matrix(0.304026,0.005472,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.304026,0.005472,-0.004499,0.249960,0,0);}
.m81_c01103{transform:matrix(0.304189,0.003954,-0.003250,0.249979,0,0);-ms-transform:matrix(0.304189,0.003954,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.304189,0.003954,-0.003250,0.249979,0,0);}
.m64_c01103{transform:matrix(0.304524,0.003959,-0.003250,0.249979,0,0);-ms-transform:matrix(0.304524,0.003959,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.304524,0.003959,-0.003250,0.249979,0,0);}
.m54_c01103{transform:matrix(0.304909,0.003964,-0.003250,0.249979,0,0);-ms-transform:matrix(0.304909,0.003964,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.304909,0.003964,-0.003250,0.249979,0,0);}
.m33_c01103{transform:matrix(0.305344,0.003969,-0.003250,0.249979,0,0);-ms-transform:matrix(0.305344,0.003969,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.305344,0.003969,-0.003250,0.249979,0,0);}
.m75_c01103{transform:matrix(0.305889,0.003977,-0.003250,0.249979,0,0);-ms-transform:matrix(0.305889,0.003977,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.305889,0.003977,-0.003250,0.249979,0,0);}
.m2c_c01103{transform:matrix(0.306474,0.003984,-0.003250,0.249979,0,0);-ms-transform:matrix(0.306474,0.003984,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.306474,0.003984,-0.003250,0.249979,0,0);}
.md2_c01103{transform:matrix(0.306485,0.005517,-0.004499,0.249960,0,0);-ms-transform:matrix(0.306485,0.005517,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.306485,0.005517,-0.004499,0.249960,0,0);}
.maa_c01103{transform:matrix(0.306489,0.003984,-0.003250,0.249979,0,0);-ms-transform:matrix(0.306489,0.003984,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.306489,0.003984,-0.003250,0.249979,0,0);}
.m12_c01103{transform:matrix(0.306809,0.003989,-0.003250,0.249979,0,0);-ms-transform:matrix(0.306809,0.003989,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.306809,0.003989,-0.003250,0.249979,0,0);}
.m5c_c01103{transform:matrix(0.308694,0.004013,-0.003250,0.249979,0,0);-ms-transform:matrix(0.308694,0.004013,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.308694,0.004013,-0.003250,0.249979,0,0);}
.md9_c01103{transform:matrix(0.308735,0.005557,-0.004499,0.249960,0,0);-ms-transform:matrix(0.308735,0.005557,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.308735,0.005557,-0.004499,0.249960,0,0);}
.m16_c01103{transform:matrix(0.311424,0.004049,-0.003250,0.249979,0,0);-ms-transform:matrix(0.311424,0.004049,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.311424,0.004049,-0.003250,0.249979,0,0);}
.m17_c01103{transform:matrix(0.313114,0.004070,-0.003250,0.249979,0,0);-ms-transform:matrix(0.313114,0.004070,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.313114,0.004070,-0.003250,0.249979,0,0);}
.m5d_c01103{transform:matrix(0.313524,0.004076,-0.003250,0.249979,0,0);-ms-transform:matrix(0.313524,0.004076,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.313524,0.004076,-0.003250,0.249979,0,0);}
.mf4_c01103{transform:matrix(0.314674,0.005664,-0.004499,0.249960,0,0);-ms-transform:matrix(0.314674,0.005664,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.314674,0.005664,-0.004499,0.249960,0,0);}
.mb_c01103{transform:matrix(0.315258,0.004098,-0.003250,0.249979,0,0);-ms-transform:matrix(0.315258,0.004098,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.315258,0.004098,-0.003250,0.249979,0,0);}
.md_c01103{transform:matrix(0.315328,0.004099,-0.003250,0.249979,0,0);-ms-transform:matrix(0.315328,0.004099,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.315328,0.004099,-0.003250,0.249979,0,0);}
.m20_c01103{transform:matrix(0.316268,0.004111,-0.003250,0.249979,0,0);-ms-transform:matrix(0.316268,0.004111,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.316268,0.004111,-0.003250,0.249979,0,0);}
.mad_c01103{transform:matrix(0.316608,0.004116,-0.003250,0.249979,0,0);-ms-transform:matrix(0.316608,0.004116,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.316608,0.004116,-0.003250,0.249979,0,0);}
.m25_c01103{transform:matrix(0.316633,0.004116,-0.003250,0.249979,0,0);-ms-transform:matrix(0.316633,0.004116,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.316633,0.004116,-0.003250,0.249979,0,0);}
.m111_c01103{transform:matrix(0.318948,0.007017,-0.005499,0.249940,0,0);-ms-transform:matrix(0.318948,0.007017,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.318948,0.007017,-0.005499,0.249940,0,0);}
.mb1_c01103{transform:matrix(0.320848,0.004171,-0.003250,0.249979,0,0);-ms-transform:matrix(0.320848,0.004171,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.320848,0.004171,-0.003250,0.249979,0,0);}
.m7d_c01103{transform:matrix(0.320983,0.004173,-0.003250,0.249979,0,0);-ms-transform:matrix(0.320983,0.004173,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.320983,0.004173,-0.003250,0.249979,0,0);}
.m70_c01103{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);}
.mfd_c01103{transform:matrix(0.321979,0.016760,-0.012995,0.249662,0,0);-ms-transform:matrix(0.321979,0.016760,-0.012995,0.249662,0,0);-webkit-transform:matrix(0.321979,0.016760,-0.012995,0.249662,0,0);}
.m47_c01103{transform:matrix(0.324608,0.004220,-0.003250,0.249979,0,0);-ms-transform:matrix(0.324608,0.004220,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.324608,0.004220,-0.003250,0.249979,0,0);}
.maf_c01103{transform:matrix(0.324898,0.004224,-0.003250,0.249979,0,0);-ms-transform:matrix(0.324898,0.004224,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.324898,0.004224,-0.003250,0.249979,0,0);}
.m98_c01103{transform:matrix(0.325892,0.004237,-0.003250,0.249979,0,0);-ms-transform:matrix(0.325892,0.004237,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.325892,0.004237,-0.003250,0.249979,0,0);}
.m3b_c01103{transform:matrix(0.326717,0.004247,-0.003250,0.249979,0,0);-ms-transform:matrix(0.326717,0.004247,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.326717,0.004247,-0.003250,0.249979,0,0);}
.m4f_c01103{transform:matrix(0.329167,0.004279,-0.003250,0.249979,0,0);-ms-transform:matrix(0.329167,0.004279,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.329167,0.004279,-0.003250,0.249979,0,0);}
.md7_c01103{transform:matrix(0.329277,0.005927,-0.004499,0.249960,0,0);-ms-transform:matrix(0.329277,0.005927,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.329277,0.005927,-0.004499,0.249960,0,0);}
.m9_c01103{transform:matrix(0.330692,0.004299,-0.003250,0.249979,0,0);-ms-transform:matrix(0.330692,0.004299,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.330692,0.004299,-0.003250,0.249979,0,0);}
.m18_c01103{transform:matrix(0.331032,0.004303,-0.003250,0.249979,0,0);-ms-transform:matrix(0.331032,0.004303,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.331032,0.004303,-0.003250,0.249979,0,0);}
.m8f_c01103{transform:matrix(0.331267,0.004306,-0.003250,0.249979,0,0);-ms-transform:matrix(0.331267,0.004306,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.331267,0.004306,-0.003250,0.249979,0,0);}
.m39_c01103{transform:matrix(0.331507,0.004310,-0.003250,0.249979,0,0);-ms-transform:matrix(0.331507,0.004310,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.331507,0.004310,-0.003250,0.249979,0,0);}
.m6b_c01103{transform:matrix(0.336757,0.004378,-0.003250,0.249979,0,0);-ms-transform:matrix(0.336757,0.004378,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.336757,0.004378,-0.003250,0.249979,0,0);}
.m55_c01103{transform:matrix(0.337027,0.004381,-0.003250,0.249979,0,0);-ms-transform:matrix(0.337027,0.004381,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.337027,0.004381,-0.003250,0.249979,0,0);}
.m88_c01103{transform:matrix(0.338231,0.004397,-0.003250,0.249979,0,0);-ms-transform:matrix(0.338231,0.004397,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.338231,0.004397,-0.003250,0.249979,0,0);}
.m60_c01103{transform:matrix(0.338351,0.004399,-0.003250,0.249979,0,0);-ms-transform:matrix(0.338351,0.004399,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.338351,0.004399,-0.003250,0.249979,0,0);}
.mdc_c01103{transform:matrix(0.339885,0.006118,-0.004499,0.249960,0,0);-ms-transform:matrix(0.339885,0.006118,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.339885,0.006118,-0.004499,0.249960,0,0);}
.m8b_c01103{transform:matrix(0.341331,0.004437,-0.003250,0.249979,0,0);-ms-transform:matrix(0.341331,0.004437,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.341331,0.004437,-0.003250,0.249979,0,0);}
.mcd_c01103{transform:matrix(0.342461,0.004452,-0.003250,0.249979,0,0);-ms-transform:matrix(0.342461,0.004452,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.342461,0.004452,-0.003250,0.249979,0,0);}
.m32_c01103{transform:matrix(0.350150,0.004552,-0.003250,0.249979,0,0);-ms-transform:matrix(0.350150,0.004552,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.350150,0.004552,-0.003250,0.249979,0,0);}
.m84_c01103{transform:matrix(0.353845,0.004600,-0.003250,0.249979,0,0);-ms-transform:matrix(0.353845,0.004600,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.353845,0.004600,-0.003250,0.249979,0,0);}
.mce_c01103{transform:matrix(0.357270,0.004645,-0.003250,0.249979,0,0);-ms-transform:matrix(0.357270,0.004645,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.357270,0.004645,-0.003250,0.249979,0,0);}
.m8_c01103{transform:matrix(0.358830,0.004665,-0.003250,0.249979,0,0);-ms-transform:matrix(0.358830,0.004665,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.358830,0.004665,-0.003250,0.249979,0,0);}
.m61_c01103{transform:matrix(0.359315,0.004671,-0.003250,0.249979,0,0);-ms-transform:matrix(0.359315,0.004671,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.359315,0.004671,-0.003250,0.249979,0,0);}
.mc4_c01103{transform:matrix(0.360730,0.004689,-0.003250,0.249979,0,0);-ms-transform:matrix(0.360730,0.004689,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.360730,0.004689,-0.003250,0.249979,0,0);}
.md4_c01103{transform:matrix(0.364376,0.006559,-0.004499,0.249960,0,0);-ms-transform:matrix(0.364376,0.006559,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.364376,0.006559,-0.004499,0.249960,0,0);}
.ma8_c01103{transform:matrix(0.370159,0.004812,-0.003250,0.249979,0,0);-ms-transform:matrix(0.370159,0.004812,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.370159,0.004812,-0.003250,0.249979,0,0);}
.m6c_c01103{transform:matrix(0.374168,0.004864,-0.003250,0.249979,0,0);-ms-transform:matrix(0.374168,0.004864,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.374168,0.004864,-0.003250,0.249979,0,0);}
.md6_c01103{transform:matrix(0.374374,0.006739,-0.004499,0.249960,0,0);-ms-transform:matrix(0.374374,0.006739,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.374374,0.006739,-0.004499,0.249960,0,0);}
.m71_c01103{transform:matrix(0.377503,0.004908,-0.003250,0.249979,0,0);-ms-transform:matrix(0.377503,0.004908,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.377503,0.004908,-0.003250,0.249979,0,0);}
.m5e_c01103{transform:matrix(0.378153,0.004916,-0.003250,0.249979,0,0);-ms-transform:matrix(0.378153,0.004916,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.378153,0.004916,-0.003250,0.249979,0,0);}
.m49_c01103{transform:matrix(0.381988,0.004966,-0.003250,0.249979,0,0);-ms-transform:matrix(0.381988,0.004966,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.381988,0.004966,-0.003250,0.249979,0,0);}
.mda_c01103{transform:matrix(0.382108,0.006878,-0.004499,0.249960,0,0);-ms-transform:matrix(0.382108,0.006878,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.382108,0.006878,-0.004499,0.249960,0,0);}
.m69_c01103{transform:matrix(0.383298,0.004983,-0.003250,0.249979,0,0);-ms-transform:matrix(0.383298,0.004983,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.383298,0.004983,-0.003250,0.249979,0,0);}
.m107_c01103{transform:matrix(0.385070,0.017345,-0.011250,0.249747,0,0);-ms-transform:matrix(0.385070,0.017345,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.385070,0.017345,-0.011250,0.249747,0,0);}
.m3_c01103{transform:matrix(0.388377,0.005049,-0.003250,0.249979,0,0);-ms-transform:matrix(0.388377,0.005049,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.388377,0.005049,-0.003250,0.249979,0,0);}
.mf2_c01103{transform:matrix(0.389952,0.007019,-0.004499,0.249960,0,0);-ms-transform:matrix(0.389952,0.007019,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.389952,0.007019,-0.004499,0.249960,0,0);}
.mae_c01103{transform:matrix(0.395012,0.005135,-0.003250,0.249979,0,0);-ms-transform:matrix(0.395012,0.005135,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.395012,0.005135,-0.003250,0.249979,0,0);}
.m104_c01103{transform:matrix(0.403920,0.018195,-0.011250,0.249747,0,0);-ms-transform:matrix(0.403920,0.018195,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.403920,0.018195,-0.011250,0.249747,0,0);}
.m10d_c01103{transform:matrix(0.405404,0.018261,-0.011250,0.249747,0,0);-ms-transform:matrix(0.405404,0.018261,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.405404,0.018261,-0.011250,0.249747,0,0);}
.me7_c01103{transform:matrix(0.411878,0.007414,-0.004499,0.249960,0,0);-ms-transform:matrix(0.411878,0.007414,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.411878,0.007414,-0.004499,0.249960,0,0);}
.mf_c01103{transform:matrix(0.413340,0.005373,-0.003250,0.249979,0,0);-ms-transform:matrix(0.413340,0.005373,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.413340,0.005373,-0.003250,0.249979,0,0);}
.ma_c01103{transform:matrix(0.415800,0.005405,-0.003250,0.249979,0,0);-ms-transform:matrix(0.415800,0.005405,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.415800,0.005405,-0.003250,0.249979,0,0);}
.m10b_c01103{transform:matrix(0.419275,0.018886,-0.011250,0.249747,0,0);-ms-transform:matrix(0.419275,0.018886,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.419275,0.018886,-0.011250,0.249747,0,0);}
.m58_c01103{transform:matrix(0.421069,0.005474,-0.003250,0.249979,0,0);-ms-transform:matrix(0.421069,0.005474,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.421069,0.005474,-0.003250,0.249979,0,0);}
.m19_c01103{transform:matrix(0.428689,0.005573,-0.003250,0.249979,0,0);-ms-transform:matrix(0.428689,0.005573,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.428689,0.005573,-0.003250,0.249979,0,0);}
.m31_c01103{transform:matrix(0.435423,0.005661,-0.003250,0.249979,0,0);-ms-transform:matrix(0.435423,0.005661,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.435423,0.005661,-0.003250,0.249979,0,0);}
.m10a_c01103{transform:matrix(0.438925,0.019771,-0.011250,0.249747,0,0);-ms-transform:matrix(0.438925,0.019771,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.438925,0.019771,-0.011250,0.249747,0,0);}
.m22_c01103{transform:matrix(0.439468,0.005713,-0.003250,0.249979,0,0);-ms-transform:matrix(0.439468,0.005713,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.439468,0.005713,-0.003250,0.249979,0,0);}
.md8_c01103{transform:matrix(0.462075,0.008317,-0.004499,0.249960,0,0);-ms-transform:matrix(0.462075,0.008317,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.462075,0.008317,-0.004499,0.249960,0,0);}
.mfc_c01103{transform:matrix(0.464481,0.024177,-0.012995,0.249662,0,0);-ms-transform:matrix(0.464481,0.024177,-0.012995,0.249662,0,0);-webkit-transform:matrix(0.464481,0.024177,-0.012995,0.249662,0,0);}
.m67_c01103{transform:matrix(0.469610,0.006105,-0.003250,0.249979,0,0);-ms-transform:matrix(0.469610,0.006105,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.469610,0.006105,-0.003250,0.249979,0,0);}
.me0_c01103{transform:matrix(0.469914,0.008458,-0.004499,0.249960,0,0);-ms-transform:matrix(0.469914,0.008458,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.469914,0.008458,-0.004499,0.249960,0,0);}
.m2f_c01103{transform:matrix(0.473700,0.006158,-0.003250,0.249979,0,0);-ms-transform:matrix(0.473700,0.006158,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.473700,0.006158,-0.003250,0.249979,0,0);}
.mfe_c01103{transform:matrix(0.477768,0.024869,-0.012995,0.249662,0,0);-ms-transform:matrix(0.477768,0.024869,-0.012995,0.249662,0,0);-webkit-transform:matrix(0.477768,0.024869,-0.012995,0.249662,0,0);}
.m110_c01103{transform:matrix(0.478590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478590,0.000000,0.000000,0.250000,0,0);}
.mde_c01103{transform:matrix(0.478892,0.008620,-0.004499,0.249960,0,0);-ms-transform:matrix(0.478892,0.008620,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.478892,0.008620,-0.004499,0.249960,0,0);}
.m4_c01103{transform:matrix(0.482954,0.006278,-0.003250,0.249979,0,0);-ms-transform:matrix(0.482954,0.006278,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.482954,0.006278,-0.003250,0.249979,0,0);}
.m13_c01103{transform:matrix(0.487879,0.006342,-0.003250,0.249979,0,0);-ms-transform:matrix(0.487879,0.006342,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.487879,0.006342,-0.003250,0.249979,0,0);}
.m97_c01103{transform:matrix(0.491104,0.006384,-0.003250,0.249979,0,0);-ms-transform:matrix(0.491104,0.006384,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.491104,0.006384,-0.003250,0.249979,0,0);}
.m7a_c01103{transform:matrix(0.498638,0.006482,-0.003250,0.249979,0,0);-ms-transform:matrix(0.498638,0.006482,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.498638,0.006482,-0.003250,0.249979,0,0);}
.m4d_c01103{transform:matrix(0.502413,0.006531,-0.003250,0.249979,0,0);-ms-transform:matrix(0.502413,0.006531,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.502413,0.006531,-0.003250,0.249979,0,0);}
.m94_c01103{transform:matrix(0.506477,0.006584,-0.003250,0.249979,0,0);-ms-transform:matrix(0.506477,0.006584,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.506477,0.006584,-0.003250,0.249979,0,0);}
.m9d_c01103{transform:matrix(0.508292,0.006608,-0.003250,0.249979,0,0);-ms-transform:matrix(0.508292,0.006608,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.508292,0.006608,-0.003250,0.249979,0,0);}
.m112_c01103{transform:matrix(0.514655,0.011322,-0.005499,0.249940,0,0);-ms-transform:matrix(0.514655,0.011322,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.514655,0.011322,-0.005499,0.249940,0,0);}
.m21_c01103{transform:matrix(0.517306,0.006725,-0.003250,0.249979,0,0);-ms-transform:matrix(0.517306,0.006725,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.517306,0.006725,-0.003250,0.249979,0,0);}
.mf9_c01103{transform:matrix(0.519627,0.027048,-0.012995,0.249662,0,0);-ms-transform:matrix(0.519627,0.027048,-0.012995,0.249662,0,0);-webkit-transform:matrix(0.519627,0.027048,-0.012995,0.249662,0,0);}
.m4a_c01103{transform:matrix(0.524586,0.006820,-0.003250,0.249979,0,0);-ms-transform:matrix(0.524586,0.006820,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.524586,0.006820,-0.003250,0.249979,0,0);}
.m4b_c01103{transform:matrix(0.540024,0.007020,-0.003250,0.249979,0,0);-ms-transform:matrix(0.540024,0.007020,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.540024,0.007020,-0.003250,0.249979,0,0);}
.m3e_c01103{transform:matrix(0.545574,0.007092,-0.003250,0.249979,0,0);-ms-transform:matrix(0.545574,0.007092,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.545574,0.007092,-0.003250,0.249979,0,0);}
.m30_c01103{transform:matrix(0.550119,0.007152,-0.003250,0.249979,0,0);-ms-transform:matrix(0.550119,0.007152,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.550119,0.007152,-0.003250,0.249979,0,0);}
.m6_c01103{transform:matrix(0.556398,0.007233,-0.003250,0.249979,0,0);-ms-transform:matrix(0.556398,0.007233,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.556398,0.007233,-0.003250,0.249979,0,0);}
.mdd_c01103{transform:matrix(0.557500,0.010035,-0.004499,0.249960,0,0);-ms-transform:matrix(0.557500,0.010035,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.557500,0.010035,-0.004499,0.249960,0,0);}
.mf8_c01103{transform:matrix(0.566603,0.010199,-0.004499,0.249960,0,0);-ms-transform:matrix(0.566603,0.010199,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.566603,0.010199,-0.004499,0.249960,0,0);}
.m2d_c01103{transform:matrix(0.575041,0.007476,-0.003250,0.249979,0,0);-ms-transform:matrix(0.575041,0.007476,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.575041,0.007476,-0.003250,0.249979,0,0);}
.m96_c01103{transform:matrix(0.586165,0.007620,-0.003250,0.249979,0,0);-ms-transform:matrix(0.586165,0.007620,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.586165,0.007620,-0.003250,0.249979,0,0);}
.mfa_c01103{transform:matrix(0.588289,0.030622,-0.012995,0.249662,0,0);-ms-transform:matrix(0.588289,0.030622,-0.012995,0.249662,0,0);-webkit-transform:matrix(0.588289,0.030622,-0.012995,0.249662,0,0);}
.me1_c01103{transform:matrix(0.588375,0.010591,-0.004499,0.249960,0,0);-ms-transform:matrix(0.588375,0.010591,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.588375,0.010591,-0.004499,0.249960,0,0);}
.mc3_c01103{transform:matrix(0.603569,0.007846,-0.003250,0.249979,0,0);-ms-transform:matrix(0.603569,0.007846,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.603569,0.007846,-0.003250,0.249979,0,0);}
.m57_c01103{transform:matrix(0.605304,0.007869,-0.003250,0.249979,0,0);-ms-transform:matrix(0.605304,0.007869,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.605304,0.007869,-0.003250,0.249979,0,0);}
.m79_c01103{transform:matrix(0.620523,0.008067,-0.003250,0.249979,0,0);-ms-transform:matrix(0.620523,0.008067,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.620523,0.008067,-0.003250,0.249979,0,0);}
.m1f_c01103{transform:matrix(0.641451,0.008339,-0.003250,0.249979,0,0);-ms-transform:matrix(0.641451,0.008339,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.641451,0.008339,-0.003250,0.249979,0,0);}
.m102_c01103{transform:matrix(0.648577,0.033760,-0.012995,0.249662,0,0);-ms-transform:matrix(0.648577,0.033760,-0.012995,0.249662,0,0);-webkit-transform:matrix(0.648577,0.033760,-0.012995,0.249662,0,0);}
.md1_c01103{transform:matrix(0.652974,0.011754,-0.004499,0.249960,0,0);-ms-transform:matrix(0.652974,0.011754,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.652974,0.011754,-0.004499,0.249960,0,0);}
.ma7_c01103{transform:matrix(0.695781,0.009045,-0.003250,0.249979,0,0);-ms-transform:matrix(0.695781,0.009045,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.695781,0.009045,-0.003250,0.249979,0,0);}
.ma9_c01103{transform:matrix(0.699736,0.009097,-0.003250,0.249979,0,0);-ms-transform:matrix(0.699736,0.009097,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.699736,0.009097,-0.003250,0.249979,0,0);}
.m87_c01103{transform:matrix(0.757586,0.009849,-0.003250,0.249979,0,0);-ms-transform:matrix(0.757586,0.009849,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.757586,0.009849,-0.003250,0.249979,0,0);}
.m1_c01103{transform:matrix(0.770870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770870,0.000000,0.000000,0.250000,0,0);}
.m10c_c01103{transform:matrix(0.776173,0.034963,-0.011250,0.249747,0,0);-ms-transform:matrix(0.776173,0.034963,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.776173,0.034963,-0.011250,0.249747,0,0);}
.mf7_c01103{transform:matrix(0.790707,0.014233,-0.004499,0.249960,0,0);-ms-transform:matrix(0.790707,0.014233,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.790707,0.014233,-0.004499,0.249960,0,0);}
.m7_c01103{transform:matrix(0.831340,0.010807,-0.003250,0.249979,0,0);-ms-transform:matrix(0.831340,0.010807,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.831340,0.010807,-0.003250,0.249979,0,0);}
.m59_c01103{transform:matrix(0.834494,0.010848,-0.003250,0.249979,0,0);-ms-transform:matrix(0.834494,0.010848,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.834494,0.010848,-0.003250,0.249979,0,0);}
.meb_c01103{transform:matrix(0.886871,0.015964,-0.004499,0.249960,0,0);-ms-transform:matrix(0.886871,0.015964,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.886871,0.015964,-0.004499,0.249960,0,0);}
.m0_c01103{transform:matrix(0.909135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.909135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.909135,0.000000,0.000000,0.250000,0,0);}
.me9_c01103{transform:matrix(0.931459,0.016766,-0.004499,0.249960,0,0);-ms-transform:matrix(0.931459,0.016766,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.931459,0.016766,-0.004499,0.249960,0,0);}
.ma6_c01103{transform:matrix(1.120985,0.014573,-0.003250,0.249979,0,0);-ms-transform:matrix(1.120985,0.014573,-0.003250,0.249979,0,0);-webkit-transform:matrix(1.120985,0.014573,-0.003250,0.249979,0,0);}
.mfb_c01103{transform:matrix(1.352015,0.070375,-0.012995,0.249662,0,0);-ms-transform:matrix(1.352015,0.070375,-0.012995,0.249662,0,0);-webkit-transform:matrix(1.352015,0.070375,-0.012995,0.249662,0,0);}
.m8a_c01103{transform:matrix(1.562158,0.020308,-0.003250,0.249979,0,0);-ms-transform:matrix(1.562158,0.020308,-0.003250,0.249979,0,0);-webkit-transform:matrix(1.562158,0.020308,-0.003250,0.249979,0,0);}
.v0_c01103{vertical-align:0.000000px;}
.ls0_c01103{letter-spacing:0.000000px;}
.sc__c01103{text-shadow:none;}
.sc0_c01103{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__c01103{-webkit-text-stroke:0px transparent;}
.sc0_c01103{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01103{word-spacing:0.000000px;}
.fc0_c01103{color:transparent;}
.fse_c01103{font-size:18.000000px;}
.fs0_c01103{font-size:42.000000px;}
.fs4_c01103{font-size:66.005577px;}
.fs3_c01103{font-size:72.006084px;}
.fs7_c01103{font-size:72.011663px;}
.fsa_c01103{font-size:72.025376px;}
.fs1_c01103{font-size:78.006591px;}
.fsd_c01103{font-size:84.001092px;}
.fs5_c01103{font-size:84.007098px;}
.fs8_c01103{font-size:84.013607px;}
.fs2_c01103{font-size:90.007605px;}
.fsc_c01103{font-size:102.001326px;}
.fs9_c01103{font-size:102.016523px;}
.fsf_c01103{font-size:108.026133px;}
.fsb_c01103{font-size:120.042293px;}
.fs6_c01103{font-size:132.011154px;}
.y0_c01103{bottom:0.000000px;}
.y115_c01103{bottom:162.484404px;}
.y114_c01103{bottom:164.676000px;}
.y112_c01103{bottom:170.083845px;}
.y111_c01103{bottom:170.653464px;}
.y110_c01103{bottom:171.269064px;}
.y10f_c01103{bottom:173.935044px;}
.y10e_c01103{bottom:176.710995px;}
.y10d_c01103{bottom:177.617952px;}
.y113_c01103{bottom:177.930000px;}
.y10c_c01103{bottom:178.477727px;}
.y10b_c01103{bottom:195.557535px;}
.y10a_c01103{bottom:201.141067px;}
.y109_c01103{bottom:202.303147px;}
.y108_c01103{bottom:207.159098px;}
.y107_c01103{bottom:209.342115px;}
.y106_c01103{bottom:214.668000px;}
.y105_c01103{bottom:495.360603px;}
.y104_c01103{bottom:496.933404px;}
.y103_c01103{bottom:516.512544px;}
.y102_c01103{bottom:521.082720px;}
.y101_c01103{bottom:521.581842px;}
.y100_c01103{bottom:526.923126px;}
.yff_c01103{bottom:528.717126px;}
.yfe_c01103{bottom:535.500942px;}
.yfd_c01103{bottom:537.759432px;}
.yfc_c01103{bottom:538.789500px;}
.yef_c01103{bottom:560.346726px;}
.yf0_c01103{bottom:560.654568px;}
.yf1_c01103{bottom:560.880672px;}
.yf2_c01103{bottom:561.234876px;}
.yf3_c01103{bottom:562.036005px;}
.yf4_c01103{bottom:562.450668px;}
.yf5_c01103{bottom:563.155158px;}
.yf6_c01103{bottom:563.665116px;}
.yf7_c01103{bottom:564.289359px;}
.yf8_c01103{bottom:564.766014px;}
.yf9_c01103{bottom:564.776958px;}
.yfa_c01103{bottom:565.071555px;}
.yfb_c01103{bottom:565.696773px;}
.yee_c01103{bottom:610.862031px;}
.yed_c01103{bottom:611.568657px;}
.yec_c01103{bottom:612.531378px;}
.yeb_c01103{bottom:612.846876px;}
.yea_c01103{bottom:612.900450px;}
.ye9_c01103{bottom:613.635234px;}
.ye8_c01103{bottom:614.053170px;}
.ye7_c01103{bottom:614.578917px;}
.ye6_c01103{bottom:614.910711px;}
.ye5_c01103{bottom:615.511134px;}
.ye4_c01103{bottom:615.964998px;}
.ye3_c01103{bottom:617.267730px;}
.ye2_c01103{bottom:617.754312px;}
.ye1_c01103{bottom:633.565746px;}
.ye0_c01103{bottom:635.394861px;}
.ydf_c01103{bottom:635.856237px;}
.yde_c01103{bottom:637.022718px;}
.ydd_c01103{bottom:637.540821px;}
.ydc_c01103{bottom:638.410059px;}
.ydb_c01103{bottom:639.794592px;}
.yda_c01103{bottom:640.347228px;}
.yd9_c01103{bottom:641.553966px;}
.yd8_c01103{bottom:642.102957px;}
.yd7_c01103{bottom:642.901104px;}
.yd6_c01103{bottom:643.481064px;}
.yd5_c01103{bottom:644.517837px;}
.yd4_c01103{bottom:645.490917px;}
.yd3_c01103{bottom:646.073415px;}
.yd2_c01103{bottom:646.240788px;}
.yd1_c01103{bottom:646.650000px;}
.yd0_c01103{bottom:657.206902px;}
.ycf_c01103{bottom:658.833844px;}
.yce_c01103{bottom:660.296622px;}
.ycd_c01103{bottom:660.881632px;}
.ycc_c01103{bottom:661.347780px;}
.ycb_c01103{bottom:662.206612px;}
.yca_c01103{bottom:662.569576px;}
.yc9_c01103{bottom:663.795136px;}
.yc8_c01103{bottom:665.394660px;}
.yc7_c01103{bottom:665.855776px;}
.yc6_c01103{bottom:666.319935px;}
.yc5_c01103{bottom:666.725121px;}
.yc4_c01103{bottom:667.673603px;}
.yc3_c01103{bottom:690.393292px;}
.yc2_c01103{bottom:691.390998px;}
.yc1_c01103{bottom:691.926679px;}
.yc0_c01103{bottom:693.265981px;}
.ybf_c01103{bottom:693.747873px;}
.ybe_c01103{bottom:694.972536px;}
.ybd_c01103{bottom:696.350421px;}
.ybc_c01103{bottom:696.880644px;}
.ybb_c01103{bottom:697.427965px;}
.yba_c01103{bottom:698.612427px;}
.yb9_c01103{bottom:699.002938px;}
.yb8_c01103{bottom:701.049469px;}
.yb7_c01103{bottom:702.241632px;}
.yb6_c01103{bottom:724.287657px;}
.yb5_c01103{bottom:725.901525px;}
.yb4_c01103{bottom:727.216942px;}
.yb3_c01103{bottom:729.469095px;}
.yb2_c01103{bottom:729.994050px;}
.yb1_c01103{bottom:730.588261px;}
.yb0_c01103{bottom:731.559849px;}
.yaf_c01103{bottom:732.206320px;}
.yae_c01103{bottom:732.939027px;}
.yad_c01103{bottom:734.545780px;}
.yac_c01103{bottom:734.982550px;}
.yab_c01103{bottom:736.656865px;}
.yaa_c01103{bottom:737.433781px;}
.ya9_c01103{bottom:738.276835px;}
.ya8_c01103{bottom:739.579426px;}
.ya7_c01103{bottom:739.861990px;}
.ya6_c01103{bottom:740.299852px;}
.ya5_c01103{bottom:759.760537px;}
.ya4_c01103{bottom:760.824214px;}
.ya3_c01103{bottom:761.353312px;}
.ya2_c01103{bottom:762.125479px;}
.ya1_c01103{bottom:762.408994px;}
.ya0_c01103{bottom:763.758526px;}
.y9f_c01103{bottom:765.307560px;}
.y9e_c01103{bottom:765.555504px;}
.y9d_c01103{bottom:765.961215px;}
.y9c_c01103{bottom:767.098725px;}
.y9b_c01103{bottom:767.831304px;}
.y9a_c01103{bottom:769.052047px;}
.y99_c01103{bottom:770.012697px;}
.y98_c01103{bottom:793.932532px;}
.y97_c01103{bottom:794.210625px;}
.y96_c01103{bottom:795.317655px;}
.y95_c01103{bottom:796.662916px;}
.y94_c01103{bottom:797.021941px;}
.y93_c01103{bottom:797.861526px;}
.y92_c01103{bottom:798.719520px;}
.y91_c01103{bottom:799.017466px;}
.y90_c01103{bottom:799.921425px;}
.y8f_c01103{bottom:800.032701px;}
.y8e_c01103{bottom:800.991186px;}
.y8d_c01103{bottom:801.395220px;}
.y8c_c01103{bottom:803.614368px;}
.y8b_c01103{bottom:803.861571px;}
.y8a_c01103{bottom:804.264318px;}
.y89_c01103{bottom:832.046583px;}
.y88_c01103{bottom:832.880071px;}
.y87_c01103{bottom:834.048024px;}
.y86_c01103{bottom:834.351268px;}
.y85_c01103{bottom:835.192693px;}
.y84_c01103{bottom:835.490478px;}
.y83_c01103{bottom:836.453914px;}
.y82_c01103{bottom:837.536086px;}
.y81_c01103{bottom:837.874879px;}
.y80_c01103{bottom:838.609873px;}
.y7f_c01103{bottom:839.022610px;}
.y7e_c01103{bottom:840.189568px;}
.y7d_c01103{bottom:840.904224px;}
.y7c_c01103{bottom:841.912003px;}
.y7b_c01103{bottom:843.457924px;}
.y7a_c01103{bottom:864.193542px;}
.y79_c01103{bottom:865.847550px;}
.y78_c01103{bottom:866.171286px;}
.y77_c01103{bottom:866.651361px;}
.y76_c01103{bottom:867.610165px;}
.y75_c01103{bottom:868.207369px;}
.y74_c01103{bottom:868.799113px;}
.y73_c01103{bottom:869.116531px;}
.y72_c01103{bottom:869.567106px;}
.y71_c01103{bottom:870.043242px;}
.y70_c01103{bottom:870.514153px;}
.y6f_c01103{bottom:870.952423px;}
.y6e_c01103{bottom:871.722345px;}
.y6d_c01103{bottom:872.806330px;}
.y6c_c01103{bottom:873.295102px;}
.y6b_c01103{bottom:874.432417px;}
.y6a_c01103{bottom:875.094999px;}
.y69_c01103{bottom:875.537266px;}
.y68_c01103{bottom:876.671695px;}
.y59_c01103{bottom:911.453967px;}
.y58_c01103{bottom:911.454148px;}
.y5a_c01103{bottom:911.454526px;}
.y66_c01103{bottom:911.454745px;}
.y67_c01103{bottom:911.455074px;}
.y64_c01103{bottom:911.455090px;}
.y5b_c01103{bottom:911.455125px;}
.y65_c01103{bottom:911.455189px;}
.y62_c01103{bottom:911.455233px;}
.y5f_c01103{bottom:911.455498px;}
.y63_c01103{bottom:911.455741px;}
.y5c_c01103{bottom:911.455852px;}
.y60_c01103{bottom:911.455857px;}
.y61_c01103{bottom:911.455914px;}
.y5e_c01103{bottom:911.455999px;}
.y5d_c01103{bottom:911.456251px;}
.y57_c01103{bottom:941.870944px;}
.y56_c01103{bottom:943.044373px;}
.y55_c01103{bottom:943.827309px;}
.y54_c01103{bottom:944.472810px;}
.y53_c01103{bottom:945.296950px;}
.y52_c01103{bottom:947.839366px;}
.y51_c01103{bottom:948.616494px;}
.y50_c01103{bottom:949.107096px;}
.y4f_c01103{bottom:949.855044px;}
.y4e_c01103{bottom:951.470658px;}
.y4d_c01103{bottom:952.547155px;}
.y4c_c01103{bottom:953.820537px;}
.y4b_c01103{bottom:955.787485px;}
.y4a_c01103{bottom:971.287170px;}
.y49_c01103{bottom:972.326610px;}
.y48_c01103{bottom:973.100389px;}
.y47_c01103{bottom:973.409574px;}
.y46_c01103{bottom:973.800417px;}
.y45_c01103{bottom:974.312965px;}
.y44_c01103{bottom:974.541837px;}
.y43_c01103{bottom:974.800785px;}
.y42_c01103{bottom:975.255660px;}
.y41_c01103{bottom:976.064492px;}
.y40_c01103{bottom:976.691799px;}
.y3f_c01103{bottom:977.655028px;}
.y3e_c01103{bottom:1008.588993px;}
.y3d_c01103{bottom:1010.042605px;}
.y3c_c01103{bottom:1010.873998px;}
.y3b_c01103{bottom:1011.248625px;}
.y3a_c01103{bottom:1011.658374px;}
.y39_c01103{bottom:1012.065646px;}
.y38_c01103{bottom:1012.965978px;}
.y37_c01103{bottom:1013.354139px;}
.y36_c01103{bottom:1014.251000px;}
.y35_c01103{bottom:1015.453587px;}
.y34_c01103{bottom:1016.024263px;}
.y33_c01103{bottom:1016.805478px;}
.y32_c01103{bottom:1017.227493px;}
.y31_c01103{bottom:1017.503245px;}
.y30_c01103{bottom:1017.889962px;}
.y2f_c01103{bottom:1043.902057px;}
.y2e_c01103{bottom:1046.700382px;}
.y2d_c01103{bottom:1047.172785px;}
.y2c_c01103{bottom:1047.577122px;}
.y2b_c01103{bottom:1048.112383px;}
.y2a_c01103{bottom:1048.979472px;}
.y29_c01103{bottom:1049.380825px;}
.y28_c01103{bottom:1050.238439px;}
.y27_c01103{bottom:1051.390852px;}
.y26_c01103{bottom:1052.715759px;}
.y25_c01103{bottom:1053.045948px;}
.y24_c01103{bottom:1053.655222px;}
.y23_c01103{bottom:1054.229830px;}
.y22_c01103{bottom:1054.878469px;}
.y21_c01103{bottom:1055.418372px;}
.y20_c01103{bottom:1078.011096px;}
.y1f_c01103{bottom:1079.695305px;}
.y1e_c01103{bottom:1080.071761px;}
.y1d_c01103{bottom:1081.169666px;}
.y1c_c01103{bottom:1083.390954px;}
.y1b_c01103{bottom:1083.966127px;}
.y1a_c01103{bottom:1085.063017px;}
.y19_c01103{bottom:1087.224064px;}
.y18_c01103{bottom:1087.720749px;}
.y17_c01103{bottom:1088.302766px;}
.y16_c01103{bottom:1089.557490px;}
.y15_c01103{bottom:1089.716865px;}
.y14_c01103{bottom:1114.131911px;}
.y13_c01103{bottom:1114.965339px;}
.y12_c01103{bottom:1115.621087px;}
.y11_c01103{bottom:1117.152842px;}
.y10_c01103{bottom:1118.695864px;}
.yf_c01103{bottom:1119.148372px;}
.ye_c01103{bottom:1120.655505px;}
.yd_c01103{bottom:1122.597813px;}
.yb_c01103{bottom:1122.919389px;}
.yc_c01103{bottom:1122.933562px;}
.ya_c01103{bottom:1123.501347px;}
.y9_c01103{bottom:1123.885485px;}
.y8_c01103{bottom:1173.988273px;}
.y7_c01103{bottom:1174.675804px;}
.y6_c01103{bottom:1177.388527px;}
.y5_c01103{bottom:1178.120421px;}
.y4_c01103{bottom:1178.696880px;}
.y3_c01103{bottom:1179.090000px;}
.y2_c01103{bottom:1232.541000px;}
.y1_c01103{bottom:1241.059500px;}
.h10_c01103{height:18.000000px;}
.h2_c01103{height:42.000000px;}
.h6_c01103{height:66.005577px;}
.h5_c01103{height:72.006084px;}
.h9_c01103{height:72.011663px;}
.hc_c01103{height:72.025376px;}
.h3_c01103{height:78.006591px;}
.hf_c01103{height:84.001092px;}
.h7_c01103{height:84.007098px;}
.ha_c01103{height:84.013607px;}
.h4_c01103{height:90.007605px;}
.he_c01103{height:102.001326px;}
.hb_c01103{height:102.016523px;}
.h11_c01103{height:108.026133px;}
.hd_c01103{height:120.042293px;}
.h8_c01103{height:132.011154px;}
.h0_c01103{height:1246.320000px;}
.h1_c01103{height:1246.500000px;}
.w0_c01103{width:927.450000px;}
.w1_c01103{width:927.750000px;}
.x0_c01103{left:0.000000px;}
.x53_c01103{left:3.103370px;}
.x60_c01103{left:5.038991px;}
.x47_c01103{left:6.174984px;}
.x94_c01103{left:7.548605px;}
.x71_c01103{left:9.102551px;}
.x1_c01103{left:14.040000px;}
.x88_c01103{left:31.730499px;}
.x7c_c01103{left:37.747689px;}
.x69_c01103{left:40.249775px;}
.x7d_c01103{left:58.619525px;}
.x6a_c01103{left:60.881048px;}
.x48_c01103{left:66.660702px;}
.x7e_c01103{left:72.046121px;}
.x54_c01103{left:84.135317px;}
.x3f_c01103{left:86.324697px;}
.x72_c01103{left:89.115084px;}
.x49_c01103{left:92.583590px;}
.xb0_c01103{left:103.780974px;}
.x89_c01103{left:106.240094px;}
.x55_c01103{left:115.732407px;}
.x95_c01103{left:120.447587px;}
.x61_c01103{left:123.955991px;}
.xa0_c01103{left:128.275500px;}
.x2b_c01103{left:131.940167px;}
.x7f_c01103{left:134.046666px;}
.x38_c01103{left:137.456613px;}
.xb7_c01103{left:140.534691px;}
.x1c_c01103{left:142.359714px;}
.x4a_c01103{left:145.508040px;}
.x96_c01103{left:159.152594px;}
.x56_c01103{left:163.007283px;}
.x2c_c01103{left:164.111076px;}
.xa1_c01103{left:169.935000px;}
.x13_c01103{left:171.349417px;}
.x80_c01103{left:174.200493px;}
.xa7_c01103{left:177.050952px;}
.x1d_c01103{left:178.351278px;}
.x14_c01103{left:180.723930px;}
.xb8_c01103{left:183.923759px;}
.x2d_c01103{left:187.053869px;}
.x8_c01103{left:188.056357px;}
.x73_c01103{left:190.865910px;}
.x97_c01103{left:197.623601px;}
.x62_c01103{left:201.477491px;}
.x9_c01103{left:210.681187px;}
.xb1_c01103{left:214.907949px;}
.x1e_c01103{left:221.553147px;}
.xa2_c01103{left:223.995000px;}
.x39_c01103{left:227.141114px;}
.x8a_c01103{left:234.122102px;}
.x4b_c01103{left:236.505926px;}
.xa_c01103{left:244.945413px;}
.x74_c01103{left:251.949710px;}
.x15_c01103{left:254.506588px;}
.x63_c01103{left:256.450991px;}
.x40_c01103{left:258.763292px;}
.x1f_c01103{left:259.868153px;}
.xb_c01103{left:263.796418px;}
.x57_c01103{left:279.204782px;}
.x4c_c01103{left:280.790414px;}
.x2e_c01103{left:287.226656px;}
.x16_c01103{left:288.775314px;}
.x41_c01103{left:291.255060px;}
.xa8_c01103{left:295.439856px;}
.x20_c01103{left:300.503600px;}
.x42_c01103{left:312.606291px;}
.xa3_c01103{left:313.813500px;}
.xb2_c01103{left:315.114321px;}
.x17_c01103{left:317.980293px;}
.x21_c01103{left:322.556034px;}
.x98_c01103{left:330.934836px;}
.x8b_c01103{left:332.539260px;}
.x2f_c01103{left:334.817780px;}
.xa9_c01103{left:336.743067px;}
.x3a_c01103{left:342.675623px;}
.x43_c01103{left:346.419404px;}
.xb9_c01103{left:348.716800px;}
.xbc_c01103{left:351.923397px;}
.xbf_c01103{left:355.159048px;}
.x4d_c01103{left:357.207323px;}
.x6b_c01103{left:359.243909px;}
.x8c_c01103{left:366.793434px;}
.x6c_c01103{left:368.496026px;}
.xc_c01103{left:378.006471px;}
.x75_c01103{left:380.468367px;}
.xbd_c01103{left:383.351717px;}
.x4e_c01103{left:385.289061px;}
.x81_c01103{left:388.274744px;}
.xaa_c01103{left:391.273425px;}
.x8d_c01103{left:399.963147px;}
.x76_c01103{left:401.156640px;}
.x3b_c01103{left:407.555673px;}
.x22_c01103{left:410.854233px;}
.xc0_c01103{left:412.080948px;}
.xab_c01103{left:421.460232px;}
.x82_c01103{left:423.171617px;}
.x99_c01103{left:433.056162px;}
.x30_c01103{left:435.056586px;}
.x58_c01103{left:442.831637px;}
.x18_c01103{left:445.092683px;}
.xba_c01103{left:451.331083px;}
.x83_c01103{left:453.973919px;}
.xa4_c01103{left:455.695500px;}
.x44_c01103{left:456.937032px;}
.x64_c01103{left:460.564991px;}
.x9a_c01103{left:463.284552px;}
.xd_c01103{left:466.704369px;}
.x6d_c01103{left:468.682332px;}
.x3c_c01103{left:477.162594px;}
.x2_c01103{left:478.668000px;}
.x8e_c01103{left:486.104793px;}
.x23_c01103{left:487.730244px;}
.xe_c01103{left:493.318984px;}
.x84_c01103{left:500.206602px;}
.xc1_c01103{left:501.507783px;}
.xac_c01103{left:507.314559px;}
.x3_c01103{left:508.908000px;}
.x59_c01103{left:510.488259px;}
.xb3_c01103{left:518.620050px;}
.x45_c01103{left:520.824225px;}
.x85_c01103{left:528.489158px;}
.x77_c01103{left:530.237817px;}
.x9b_c01103{left:534.887988px;}
.x6e_c01103{left:540.221268px;}
.x31_c01103{left:542.213490px;}
.x19_c01103{left:543.477073px;}
.x24_c01103{left:544.929762px;}
.xbb_c01103{left:548.720097px;}
.x3d_c01103{left:550.402808px;}
.x4_c01103{left:553.251000px;}
.x46_c01103{left:554.853299px;}
.x8f_c01103{left:562.652810px;}
.x5a_c01103{left:565.410057px;}
.x25_c01103{left:571.648560px;}
.x9c_c01103{left:573.745995px;}
.xad_c01103{left:578.954577px;}
.xf_c01103{left:584.085265px;}
.x4f_c01103{left:587.266686px;}
.x90_c01103{left:592.797140px;}
.xb4_c01103{left:596.643054px;}
.x3e_c01103{left:606.318176px;}
.x5b_c01103{left:607.697511px;}
.x5_c01103{left:609.550500px;}
.xa5_c01103{left:611.607000px;}
.x32_c01103{left:617.239965px;}
.x9d_c01103{left:622.555139px;}
.xc2_c01103{left:625.538736px;}
.x26_c01103{left:629.461559px;}
.x65_c01103{left:640.825991px;}
.x50_c01103{left:642.621546px;}
.x33_c01103{left:651.222914px;}
.xb5_c01103{left:656.273445px;}
.xb6_c01103{left:657.666093px;}
.x86_c01103{left:660.752910px;}
.x27_c01103{left:665.096123px;}
.x78_c01103{left:666.358592px;}
.x10_c01103{left:674.215585px;}
.x91_c01103{left:676.547883px;}
.x34_c01103{left:685.396362px;}
.x28_c01103{left:692.044421px;}
.xae_c01103{left:695.064684px;}
.x66_c01103{left:705.550991px;}
.x92_c01103{left:710.022077px;}
.x11_c01103{left:712.771077px;}
.x35_c01103{left:716.637272px;}
.x5c_c01103{left:718.850568px;}
.x29_c01103{left:723.536102px;}
.x67_c01103{left:728.877491px;}
.x79_c01103{left:730.718430px;}
.x1a_c01103{left:738.789434px;}
.x9e_c01103{left:744.424218px;}
.x5d_c01103{left:753.125120px;}
.xc3_c01103{left:755.730000px;}
.xaf_c01103{left:759.329784px;}
.x12_c01103{left:761.763022px;}
.x93_c01103{left:772.343139px;}
.x7a_c01103{left:774.764996px;}
.x5e_c01103{left:776.296827px;}
.x36_c01103{left:785.899169px;}
.x87_c01103{left:800.221902px;}
.x6_c01103{left:818.221500px;}
.xc4_c01103{left:823.210500px;}
.xa6_c01103{left:832.444500px;}
.xbe_c01103{left:835.876323px;}
.x6f_c01103{left:844.602246px;}
.x51_c01103{left:851.348802px;}
.x1b_c01103{left:860.026635px;}
.x7b_c01103{left:863.395146px;}
.x70_c01103{left:867.725039px;}
.x7_c01103{left:871.108500px;}
.x9f_c01103{left:879.959973px;}
.x68_c01103{left:882.834491px;}
.x5f_c01103{left:894.411287px;}
.x37_c01103{left:907.063248px;}
.x2a_c01103{left:910.056246px;}
.x52_c01103{left:911.564481px;}
@media print{
.v0_c01103{vertical-align:0.000000pt;}
.ls0_c01103{letter-spacing:0.000000pt;}
.ws0_c01103{word-spacing:0.000000pt;}
.fse_c01103{font-size:16.000000pt;}
.fs0_c01103{font-size:37.333333pt;}
.fs4_c01103{font-size:58.671624pt;}
.fs3_c01103{font-size:64.005408pt;}
.fs7_c01103{font-size:64.010367pt;}
.fsa_c01103{font-size:64.022556pt;}
.fs1_c01103{font-size:69.339192pt;}
.fsd_c01103{font-size:74.667637pt;}
.fs5_c01103{font-size:74.672976pt;}
.fs8_c01103{font-size:74.678762pt;}
.fs2_c01103{font-size:80.006760pt;}
.fsc_c01103{font-size:90.667845pt;}
.fs9_c01103{font-size:90.681353pt;}
.fsf_c01103{font-size:96.023229pt;}
.fsb_c01103{font-size:106.704260pt;}
.fs6_c01103{font-size:117.343248pt;}
.y0_c01103{bottom:0.000000pt;}
.y115_c01103{bottom:144.430581pt;}
.y114_c01103{bottom:146.378667pt;}
.y112_c01103{bottom:151.185640pt;}
.y111_c01103{bottom:151.691968pt;}
.y110_c01103{bottom:152.239168pt;}
.y10f_c01103{bottom:154.608928pt;}
.y10e_c01103{bottom:157.076440pt;}
.y10d_c01103{bottom:157.882624pt;}
.y113_c01103{bottom:158.160000pt;}
.y10c_c01103{bottom:158.646868pt;}
.y10b_c01103{bottom:173.828920pt;}
.y10a_c01103{bottom:178.792060pt;}
.y109_c01103{bottom:179.825020pt;}
.y108_c01103{bottom:184.141420pt;}
.y107_c01103{bottom:186.081880pt;}
.y106_c01103{bottom:190.816000pt;}
.y105_c01103{bottom:440.320536pt;}
.y104_c01103{bottom:441.718581pt;}
.y103_c01103{bottom:459.122261pt;}
.y102_c01103{bottom:463.184640pt;}
.y101_c01103{bottom:463.628304pt;}
.y100_c01103{bottom:468.376112pt;}
.yff_c01103{bottom:469.970779pt;}
.yfe_c01103{bottom:476.000837pt;}
.yfd_c01103{bottom:478.008384pt;}
.yfc_c01103{bottom:478.924000pt;}
.yef_c01103{bottom:498.085979pt;}
.yf0_c01103{bottom:498.359616pt;}
.yf1_c01103{bottom:498.560597pt;}
.yf2_c01103{bottom:498.875445pt;}
.yf3_c01103{bottom:499.587560pt;}
.yf4_c01103{bottom:499.956149pt;}
.yf5_c01103{bottom:500.582363pt;}
.yf6_c01103{bottom:501.035659pt;}
.yf7_c01103{bottom:501.590541pt;}
.yf8_c01103{bottom:502.014235pt;}
.yf9_c01103{bottom:502.023963pt;}
.yfa_c01103{bottom:502.285827pt;}
.yfb_c01103{bottom:502.841576pt;}
.yee_c01103{bottom:542.988472pt;}
.yed_c01103{bottom:543.616584pt;}
.yec_c01103{bottom:544.472336pt;}
.yeb_c01103{bottom:544.752779pt;}
.yea_c01103{bottom:544.800400pt;}
.ye9_c01103{bottom:545.453541pt;}
.ye8_c01103{bottom:545.825040pt;}
.ye7_c01103{bottom:546.292371pt;}
.ye6_c01103{bottom:546.587299pt;}
.ye5_c01103{bottom:547.121008pt;}
.ye4_c01103{bottom:547.524443pt;}
.ye3_c01103{bottom:548.682427pt;}
.ye2_c01103{bottom:549.114944pt;}
.ye1_c01103{bottom:563.169552pt;}
.ye0_c01103{bottom:564.795432pt;}
.ydf_c01103{bottom:565.205544pt;}
.yde_c01103{bottom:566.242416pt;}
.ydd_c01103{bottom:566.702952pt;}
.ydc_c01103{bottom:567.475608pt;}
.ydb_c01103{bottom:568.706304pt;}
.yda_c01103{bottom:569.197536pt;}
.yd9_c01103{bottom:570.270192pt;}
.yd8_c01103{bottom:570.758184pt;}
.yd7_c01103{bottom:571.467648pt;}
.yd6_c01103{bottom:571.983168pt;}
.yd5_c01103{bottom:572.904744pt;}
.yd4_c01103{bottom:573.769704pt;}
.yd3_c01103{bottom:574.287480pt;}
.yd2_c01103{bottom:574.436256pt;}
.yd1_c01103{bottom:574.800000pt;}
.yd0_c01103{bottom:584.183913pt;}
.ycf_c01103{bottom:585.630084pt;}
.yce_c01103{bottom:586.930331pt;}
.ycd_c01103{bottom:587.450340pt;}
.ycc_c01103{bottom:587.864693pt;}
.ycb_c01103{bottom:588.628100pt;}
.yca_c01103{bottom:588.950735pt;}
.yc9_c01103{bottom:590.040121pt;}
.yc8_c01103{bottom:591.461920pt;}
.yc7_c01103{bottom:591.871801pt;}
.yc6_c01103{bottom:592.284387pt;}
.yc5_c01103{bottom:592.644552pt;}
.yc4_c01103{bottom:593.487647pt;}
.yc3_c01103{bottom:613.682927pt;}
.yc2_c01103{bottom:614.569776pt;}
.yc1_c01103{bottom:615.045937pt;}
.yc0_c01103{bottom:616.236428pt;}
.ybf_c01103{bottom:616.664776pt;}
.ybe_c01103{bottom:617.753365pt;}
.ybd_c01103{bottom:618.978152pt;}
.ybc_c01103{bottom:619.449461pt;}
.ybb_c01103{bottom:619.935969pt;}
.yba_c01103{bottom:620.988824pt;}
.yb9_c01103{bottom:621.335945pt;}
.yb8_c01103{bottom:623.155084pt;}
.yb7_c01103{bottom:624.214784pt;}
.yb6_c01103{bottom:643.811251pt;}
.yb5_c01103{bottom:645.245800pt;}
.yb4_c01103{bottom:646.415060pt;}
.yb3_c01103{bottom:648.416973pt;}
.yb2_c01103{bottom:648.883600pt;}
.yb1_c01103{bottom:649.411788pt;}
.yb0_c01103{bottom:650.275421pt;}
.yaf_c01103{bottom:650.850063pt;}
.yae_c01103{bottom:651.501357pt;}
.yad_c01103{bottom:652.929583pt;}
.yac_c01103{bottom:653.317823pt;}
.yab_c01103{bottom:654.806103pt;}
.yaa_c01103{bottom:655.496695pt;}
.ya9_c01103{bottom:656.246076pt;}
.ya8_c01103{bottom:657.403935pt;}
.ya7_c01103{bottom:657.655103pt;}
.ya6_c01103{bottom:658.044313pt;}
.ya5_c01103{bottom:675.342700pt;}
.ya4_c01103{bottom:676.288191pt;}
.ya3_c01103{bottom:676.758500pt;}
.ya2_c01103{bottom:677.444871pt;}
.ya1_c01103{bottom:677.696884pt;}
.ya0_c01103{bottom:678.896468pt;}
.y9f_c01103{bottom:680.273387pt;}
.y9e_c01103{bottom:680.493781pt;}
.y9d_c01103{bottom:680.854413pt;}
.y9c_c01103{bottom:681.865533pt;}
.y9b_c01103{bottom:682.516715pt;}
.y9a_c01103{bottom:683.601820pt;}
.y99_c01103{bottom:684.455731pt;}
.y98_c01103{bottom:705.717807pt;}
.y97_c01103{bottom:705.965000pt;}
.y96_c01103{bottom:706.949027pt;}
.y95_c01103{bottom:708.144815pt;}
.y94_c01103{bottom:708.463948pt;}
.y93_c01103{bottom:709.210245pt;}
.y92_c01103{bottom:709.972907pt;}
.y91_c01103{bottom:710.237748pt;}
.y90_c01103{bottom:711.041267pt;}
.y8f_c01103{bottom:711.140179pt;}
.y8e_c01103{bottom:711.992165pt;}
.y8d_c01103{bottom:712.351307pt;}
.y8c_c01103{bottom:714.323883pt;}
.y8b_c01103{bottom:714.543619pt;}
.y8a_c01103{bottom:714.901616pt;}
.y89_c01103{bottom:739.596963pt;}
.y88_c01103{bottom:740.337841pt;}
.y87_c01103{bottom:741.376021pt;}
.y86_c01103{bottom:741.645572pt;}
.y85_c01103{bottom:742.393505pt;}
.y84_c01103{bottom:742.658203pt;}
.y83_c01103{bottom:743.514591pt;}
.y82_c01103{bottom:744.476521pt;}
.y81_c01103{bottom:744.777671pt;}
.y80_c01103{bottom:745.430999pt;}
.y7f_c01103{bottom:745.797876pt;}
.y7e_c01103{bottom:746.835172pt;}
.y7d_c01103{bottom:747.470421pt;}
.y7c_c01103{bottom:748.366225pt;}
.y7b_c01103{bottom:749.740377pt;}
.y7a_c01103{bottom:768.172037pt;}
.y79_c01103{bottom:769.642267pt;}
.y78_c01103{bottom:769.930032pt;}
.y77_c01103{bottom:770.356765pt;}
.y76_c01103{bottom:771.209036pt;}
.y75_c01103{bottom:771.739884pt;}
.y74_c01103{bottom:772.265879pt;}
.y73_c01103{bottom:772.548028pt;}
.y72_c01103{bottom:772.948539pt;}
.y71_c01103{bottom:773.371771pt;}
.y70_c01103{bottom:773.790359pt;}
.y6f_c01103{bottom:774.179932pt;}
.y6e_c01103{bottom:774.864307pt;}
.y6d_c01103{bottom:775.827849pt;}
.y6c_c01103{bottom:776.262313pt;}
.y6b_c01103{bottom:777.273260pt;}
.y6a_c01103{bottom:777.862221pt;}
.y69_c01103{bottom:778.255348pt;}
.y68_c01103{bottom:779.263729pt;}
.y59_c01103{bottom:810.181304pt;}
.y58_c01103{bottom:810.181465pt;}
.y5a_c01103{bottom:810.181801pt;}
.y66_c01103{bottom:810.181996pt;}
.y67_c01103{bottom:810.182288pt;}
.y64_c01103{bottom:810.182303pt;}
.y5b_c01103{bottom:810.182333pt;}
.y65_c01103{bottom:810.182391pt;}
.y62_c01103{bottom:810.182429pt;}
.y5f_c01103{bottom:810.182665pt;}
.y63_c01103{bottom:810.182881pt;}
.y5c_c01103{bottom:810.182980pt;}
.y60_c01103{bottom:810.182984pt;}
.y61_c01103{bottom:810.183035pt;}
.y5e_c01103{bottom:810.183111pt;}
.y5d_c01103{bottom:810.183335pt;}
.y57_c01103{bottom:837.218617pt;}
.y56_c01103{bottom:838.261665pt;}
.y55_c01103{bottom:838.957608pt;}
.y54_c01103{bottom:839.531387pt;}
.y53_c01103{bottom:840.263956pt;}
.y52_c01103{bottom:842.523881pt;}
.y51_c01103{bottom:843.214661pt;}
.y50_c01103{bottom:843.650752pt;}
.y4f_c01103{bottom:844.315595pt;}
.y4e_c01103{bottom:845.751696pt;}
.y4d_c01103{bottom:846.708583pt;}
.y4c_c01103{bottom:847.840477pt;}
.y4b_c01103{bottom:849.588876pt;}
.y4a_c01103{bottom:863.366373pt;}
.y49_c01103{bottom:864.290320pt;}
.y48_c01103{bottom:864.978124pt;}
.y47_c01103{bottom:865.252955pt;}
.y46_c01103{bottom:865.600371pt;}
.y45_c01103{bottom:866.055969pt;}
.y44_c01103{bottom:866.259411pt;}
.y43_c01103{bottom:866.489587pt;}
.y42_c01103{bottom:866.893920pt;}
.y41_c01103{bottom:867.612881pt;}
.y40_c01103{bottom:868.170488pt;}
.y3f_c01103{bottom:869.026692pt;}
.y3e_c01103{bottom:896.523549pt;}
.y3d_c01103{bottom:897.815649pt;}
.y3c_c01103{bottom:898.554665pt;}
.y3b_c01103{bottom:898.887667pt;}
.y3a_c01103{bottom:899.251888pt;}
.y39_c01103{bottom:899.613908pt;}
.y38_c01103{bottom:900.414203pt;}
.y37_c01103{bottom:900.759235pt;}
.y36_c01103{bottom:901.556444pt;}
.y35_c01103{bottom:902.625411pt;}
.y34_c01103{bottom:903.132679pt;}
.y33_c01103{bottom:903.827092pt;}
.y32_c01103{bottom:904.202216pt;}
.y31_c01103{bottom:904.447329pt;}
.y30_c01103{bottom:904.791077pt;}
.y2f_c01103{bottom:927.912940pt;}
.y2e_c01103{bottom:930.400340pt;}
.y2d_c01103{bottom:930.820253pt;}
.y2c_c01103{bottom:931.179664pt;}
.y2b_c01103{bottom:931.655452pt;}
.y2a_c01103{bottom:932.426197pt;}
.y29_c01103{bottom:932.782956pt;}
.y28_c01103{bottom:933.545279pt;}
.y27_c01103{bottom:934.569647pt;}
.y26_c01103{bottom:935.747341pt;}
.y25_c01103{bottom:936.040843pt;}
.y24_c01103{bottom:936.582420pt;}
.y23_c01103{bottom:937.093183pt;}
.y22_c01103{bottom:937.669751pt;}
.y21_c01103{bottom:938.149664pt;}
.y20_c01103{bottom:958.232085pt;}
.y1f_c01103{bottom:959.729160pt;}
.y1e_c01103{bottom:960.063788pt;}
.y1d_c01103{bottom:961.039703pt;}
.y1c_c01103{bottom:963.014181pt;}
.y1b_c01103{bottom:963.525447pt;}
.y1a_c01103{bottom:964.500460pt;}
.y19_c01103{bottom:966.421391pt;}
.y18_c01103{bottom:966.862888pt;}
.y17_c01103{bottom:967.380236pt;}
.y16_c01103{bottom:968.495547pt;}
.y15_c01103{bottom:968.637213pt;}
.y14_c01103{bottom:990.339476pt;}
.y13_c01103{bottom:991.080301pt;}
.y12_c01103{bottom:991.663188pt;}
.y11_c01103{bottom:993.024748pt;}
.y10_c01103{bottom:994.396324pt;}
.yf_c01103{bottom:994.798553pt;}
.ye_c01103{bottom:996.138227pt;}
.yd_c01103{bottom:997.864723pt;}
.yb_c01103{bottom:998.150568pt;}
.yc_c01103{bottom:998.163167pt;}
.ya_c01103{bottom:998.667864pt;}
.y9_c01103{bottom:999.009320pt;}
.y8_c01103{bottom:1043.545132pt;}
.y7_c01103{bottom:1044.156271pt;}
.y6_c01103{bottom:1046.567580pt;}
.y5_c01103{bottom:1047.218152pt;}
.y4_c01103{bottom:1047.730560pt;}
.y3_c01103{bottom:1048.080000pt;}
.y2_c01103{bottom:1095.592000pt;}
.y1_c01103{bottom:1103.164000pt;}
.h10_c01103{height:16.000000pt;}
.h2_c01103{height:37.333333pt;}
.h6_c01103{height:58.671624pt;}
.h5_c01103{height:64.005408pt;}
.h9_c01103{height:64.010367pt;}
.hc_c01103{height:64.022556pt;}
.h3_c01103{height:69.339192pt;}
.hf_c01103{height:74.667637pt;}
.h7_c01103{height:74.672976pt;}
.ha_c01103{height:74.678762pt;}
.h4_c01103{height:80.006760pt;}
.he_c01103{height:90.667845pt;}
.hb_c01103{height:90.681353pt;}
.h11_c01103{height:96.023229pt;}
.hd_c01103{height:106.704260pt;}
.h8_c01103{height:117.343248pt;}
.h0_c01103{height:1107.840000pt;}
.h1_c01103{height:1108.000000pt;}
.w0_c01103{width:824.400000pt;}
.w1_c01103{width:824.666667pt;}
.x0_c01103{left:0.000000pt;}
.x53_c01103{left:2.758551pt;}
.x60_c01103{left:4.479103pt;}
.x47_c01103{left:5.488875pt;}
.x94_c01103{left:6.709871pt;}
.x71_c01103{left:8.091156pt;}
.x1_c01103{left:12.480000pt;}
.x88_c01103{left:28.204888pt;}
.x7c_c01103{left:33.553501pt;}
.x69_c01103{left:35.777577pt;}
.x7d_c01103{left:52.106244pt;}
.x6a_c01103{left:54.116487pt;}
.x48_c01103{left:59.253957pt;}
.x7e_c01103{left:64.040996pt;}
.x54_c01103{left:74.786948pt;}
.x3f_c01103{left:76.733064pt;}
.x72_c01103{left:79.213408pt;}
.x49_c01103{left:82.296524pt;}
.xb0_c01103{left:92.249755pt;}
.x89_c01103{left:94.435639pt;}
.x55_c01103{left:102.873251pt;}
.x95_c01103{left:107.064521pt;}
.x61_c01103{left:110.183103pt;}
.xa0_c01103{left:114.022667pt;}
.x2b_c01103{left:117.280148pt;}
.x7f_c01103{left:119.152592pt;}
.x38_c01103{left:122.183656pt;}
.xb7_c01103{left:124.919725pt;}
.x1c_c01103{left:126.541968pt;}
.x4a_c01103{left:129.340480pt;}
.x96_c01103{left:141.468972pt;}
.x56_c01103{left:144.895363pt;}
.x2c_c01103{left:145.876512pt;}
.xa1_c01103{left:151.053333pt;}
.x13_c01103{left:152.310593pt;}
.x80_c01103{left:154.844883pt;}
.xa7_c01103{left:157.378624pt;}
.x1d_c01103{left:158.534469pt;}
.x14_c01103{left:160.643493pt;}
.xb8_c01103{left:163.487785pt;}
.x2d_c01103{left:166.270105pt;}
.x8_c01103{left:167.161207pt;}
.x73_c01103{left:169.658587pt;}
.x97_c01103{left:175.665423pt;}
.x62_c01103{left:179.091103pt;}
.x9_c01103{left:187.272167pt;}
.xb1_c01103{left:191.029288pt;}
.x1e_c01103{left:196.936131pt;}
.xa2_c01103{left:199.106667pt;}
.x39_c01103{left:201.903212pt;}
.x8a_c01103{left:208.108535pt;}
.x4b_c01103{left:210.227489pt;}
.xa_c01103{left:217.729256pt;}
.x74_c01103{left:223.955297pt;}
.x15_c01103{left:226.228079pt;}
.x63_c01103{left:227.956436pt;}
.x40_c01103{left:230.011815pt;}
.x1f_c01103{left:230.993913pt;}
.xb_c01103{left:234.485705pt;}
.x57_c01103{left:248.182028pt;}
.x4c_c01103{left:249.591479pt;}
.x2e_c01103{left:255.312583pt;}
.x16_c01103{left:256.689168pt;}
.x41_c01103{left:258.893387pt;}
.xa8_c01103{left:262.613205pt;}
.x20_c01103{left:267.114311pt;}
.x42_c01103{left:277.872259pt;}
.xa3_c01103{left:278.945333pt;}
.xb2_c01103{left:280.101619pt;}
.x17_c01103{left:282.649149pt;}
.x21_c01103{left:286.716475pt;}
.x98_c01103{left:294.164299pt;}
.x8b_c01103{left:295.590453pt;}
.x2f_c01103{left:297.615804pt;}
.xa9_c01103{left:299.327171pt;}
.x3a_c01103{left:304.600553pt;}
.x43_c01103{left:307.928359pt;}
.xb9_c01103{left:309.970489pt;}
.xbc_c01103{left:312.820797pt;}
.xbf_c01103{left:315.696932pt;}
.x4d_c01103{left:317.517620pt;}
.x6b_c01103{left:319.327919pt;}
.x8c_c01103{left:326.038608pt;}
.x6c_c01103{left:327.552023pt;}
.xc_c01103{left:336.005752pt;}
.x75_c01103{left:338.194104pt;}
.xbd_c01103{left:340.757081pt;}
.x4e_c01103{left:342.479165pt;}
.x81_c01103{left:345.133105pt;}
.xaa_c01103{left:347.798600pt;}
.x8d_c01103{left:355.522797pt;}
.x76_c01103{left:356.583680pt;}
.x3b_c01103{left:362.271709pt;}
.x22_c01103{left:365.203763pt;}
.xc0_c01103{left:366.294176pt;}
.xab_c01103{left:374.631317pt;}
.x82_c01103{left:376.152548pt;}
.x99_c01103{left:384.938811pt;}
.x30_c01103{left:386.716965pt;}
.x58_c01103{left:393.628121pt;}
.x18_c01103{left:395.637940pt;}
.xba_c01103{left:401.183185pt;}
.x83_c01103{left:403.532372pt;}
.xa4_c01103{left:405.062667pt;}
.x44_c01103{left:406.166251pt;}
.x64_c01103{left:409.391103pt;}
.x9a_c01103{left:411.808491pt;}
.xd_c01103{left:414.848328pt;}
.x6d_c01103{left:416.606517pt;}
.x3c_c01103{left:424.144528pt;}
.x2_c01103{left:425.482667pt;}
.x8e_c01103{left:432.093149pt;}
.x23_c01103{left:433.537995pt;}
.xe_c01103{left:438.505764pt;}
.x84_c01103{left:444.628091pt;}
.xc1_c01103{left:445.784696pt;}
.xac_c01103{left:450.946275pt;}
.x3_c01103{left:452.362667pt;}
.x59_c01103{left:453.767341pt;}
.xb3_c01103{left:460.995600pt;}
.x45_c01103{left:462.954867pt;}
.x85_c01103{left:469.768140pt;}
.x77_c01103{left:471.322504pt;}
.x9b_c01103{left:475.455989pt;}
.x6e_c01103{left:480.196683pt;}
.x31_c01103{left:481.967547pt;}
.x19_c01103{left:483.090732pt;}
.x24_c01103{left:484.382011pt;}
.xbb_c01103{left:487.751197pt;}
.x3d_c01103{left:489.246940pt;}
.x4_c01103{left:491.778667pt;}
.x46_c01103{left:493.202932pt;}
.x8f_c01103{left:500.135831pt;}
.x5a_c01103{left:502.586717pt;}
.x25_c01103{left:508.132053pt;}
.x9c_c01103{left:509.996440pt;}
.xad_c01103{left:514.626291pt;}
.xf_c01103{left:519.186903pt;}
.x4f_c01103{left:522.014832pt;}
.x90_c01103{left:526.930791pt;}
.xb4_c01103{left:530.349381pt;}
.x3e_c01103{left:538.949489pt;}
.x5b_c01103{left:540.175565pt;}
.x5_c01103{left:541.822667pt;}
.xa5_c01103{left:543.650667pt;}
.x32_c01103{left:548.657747pt;}
.x9d_c01103{left:553.382345pt;}
.xc2_c01103{left:556.034432pt;}
.x26_c01103{left:559.521385pt;}
.x65_c01103{left:569.623103pt;}
.x50_c01103{left:571.219152pt;}
.x33_c01103{left:578.864812pt;}
.xb5_c01103{left:583.354173pt;}
.xb6_c01103{left:584.592083pt;}
.x86_c01103{left:587.335920pt;}
.x27_c01103{left:591.196553pt;}
.x78_c01103{left:592.318748pt;}
.x10_c01103{left:599.302743pt;}
.x91_c01103{left:601.375896pt;}
.x34_c01103{left:609.241211pt;}
.x28_c01103{left:615.150596pt;}
.xae_c01103{left:617.835275pt;}
.x66_c01103{left:627.156436pt;}
.x92_c01103{left:631.130735pt;}
.x11_c01103{left:633.574291pt;}
.x35_c01103{left:637.010908pt;}
.x5c_c01103{left:638.978283pt;}
.x29_c01103{left:643.143201pt;}
.x67_c01103{left:647.891103pt;}
.x79_c01103{left:649.527493pt;}
.x1a_c01103{left:656.701719pt;}
.x9e_c01103{left:661.710416pt;}
.x5d_c01103{left:669.444551pt;}
.xc3_c01103{left:671.760000pt;}
.xaf_c01103{left:674.959808pt;}
.x12_c01103{left:677.122687pt;}
.x93_c01103{left:686.527235pt;}
.x7a_c01103{left:688.679996pt;}
.x5e_c01103{left:690.041624pt;}
.x36_c01103{left:698.577039pt;}
.x87_c01103{left:711.308357pt;}
.x6_c01103{left:727.308000pt;}
.xc4_c01103{left:731.742667pt;}
.xa6_c01103{left:739.950667pt;}
.xbe_c01103{left:743.001176pt;}
.x6f_c01103{left:750.757552pt;}
.x51_c01103{left:756.754491pt;}
.x1b_c01103{left:764.468120pt;}
.x7b_c01103{left:767.462352pt;}
.x70_c01103{left:771.311145pt;}
.x7_c01103{left:774.318667pt;}
.x9f_c01103{left:782.186643pt;}
.x68_c01103{left:784.741769pt;}
.x5f_c01103{left:795.032255pt;}
.x37_c01103{left:806.278443pt;}
.x2a_c01103{left:808.938885pt;}
.x52_c01103{left:810.279539pt;}
}





/* 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_c01104 {
    display:none;
  }
  .loading-indicator_c01104.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01104 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_c01104 { 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_c01104" -> "#page-container .classname_c01104")
 */
.pf_c01104 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01104 { /* 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_c01104.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01104 { /* 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_c01104 { /* 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_c01104 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01104 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01104 {overflow:visible;}
  }
}
.c_c01104 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01104 { /* 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_c01104:after { /* webkit #35443 */
  content: '';
}
.t_c01104:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01104 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 */
}
.__c01104 { /* 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_c01104 { /* info for Javascript */
  display:none;
}
.l_c01104 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01104 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01104 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01104: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_c01104 {
    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_c01104.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01104.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_c01104 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01104{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01104;src:url('chunks/assets/font_b11a17f404e7258299fdf971.woff2')format("woff");}.ff1_c01104{font-family:ff1_c01104;line-height:1.000000;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;}
.m6a_c01104{transform:matrix(0.023430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.023430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.023430,0.000000,0.000000,0.250000,0,0);}
.mc2_c01104{transform:matrix(0.067735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.067735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.067735,0.000000,0.000000,0.250000,0,0);}
.m69_c01104{transform:matrix(0.093340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093340,0.000000,0.000000,0.250000,0,0);}
.mac_c01104{transform:matrix(0.123780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123780,0.000000,0.000000,0.250000,0,0);}
.m2_c01104{transform:matrix(0.149420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149420,0.000000,0.000000,0.250000,0,0);}
.m0_c01104{transform:matrix(0.150490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150490,0.000000,0.000000,0.250000,0,0);}
.ma9_c01104{transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);}
.mad_c01104{transform:matrix(0.168510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168510,0.000000,0.000000,0.250000,0,0);}
.mc5_c01104{transform:matrix(0.172145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172145,0.000000,0.000000,0.250000,0,0);}
.maf_c01104{transform:matrix(0.173170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173170,0.000000,0.000000,0.250000,0,0);}
.mc1_c01104{transform:matrix(0.173730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173730,0.000000,0.000000,0.250000,0,0);}
.mab_c01104{transform:matrix(0.174810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174810,0.000000,0.000000,0.250000,0,0);}
.mb9_c01104{transform:matrix(0.177780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177780,0.000000,0.000000,0.250000,0,0);}
.mae_c01104{transform:matrix(0.177880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177880,0.000000,0.000000,0.250000,0,0);}
.mc3_c01104{transform:matrix(0.179485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179485,0.000000,0.000000,0.250000,0,0);}
.mb6_c01104{transform:matrix(0.179875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179875,0.000000,0.000000,0.250000,0,0);}
.mb2_c01104{transform:matrix(0.181795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181795,0.000000,0.000000,0.250000,0,0);}
.mc4_c01104{transform:matrix(0.182810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182810,0.000000,0.000000,0.250000,0,0);}
.mb1_c01104{transform:matrix(0.183290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183290,0.000000,0.000000,0.250000,0,0);}
.m68_c01104{transform:matrix(0.183480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183480,0.000000,0.000000,0.250000,0,0);}
.mb8_c01104{transform:matrix(0.183590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183590,0.000000,0.000000,0.250000,0,0);}
.mb7_c01104{transform:matrix(0.184025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184025,0.000000,0.000000,0.250000,0,0);}
.ma8_c01104{transform:matrix(0.184285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184285,0.000000,0.000000,0.250000,0,0);}
.mc8_c01104{transform:matrix(0.185540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185540,0.000000,0.000000,0.250000,0,0);}
.mc7_c01104{transform:matrix(0.190315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190315,0.000000,0.000000,0.250000,0,0);}
.mbe_c01104{transform:matrix(0.190685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190685,0.000000,0.000000,0.250000,0,0);}
.m9a_c01104{transform:matrix(0.191665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191665,0.000000,0.000000,0.250000,0,0);}
.mc9_c01104{transform:matrix(0.192240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192240,0.000000,0.000000,0.250000,0,0);}
.mb0_c01104{transform:matrix(0.192640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192640,0.000000,0.000000,0.250000,0,0);}
.mb3_c01104{transform:matrix(0.192930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192930,0.000000,0.000000,0.250000,0,0);}
.m5a_c01104{transform:matrix(0.193155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193155,0.000000,0.000000,0.250000,0,0);}
.mc6_c01104{transform:matrix(0.193295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193295,0.000000,0.000000,0.250000,0,0);}
.m26_c01104{transform:matrix(0.193578,-0.000968,0.001250,0.249997,0,0);-ms-transform:matrix(0.193578,-0.000968,0.001250,0.249997,0,0);-webkit-transform:matrix(0.193578,-0.000968,0.001250,0.249997,0,0);}
.mbd_c01104{transform:matrix(0.194305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194305,0.000000,0.000000,0.250000,0,0);}
.m51_c01104{transform:matrix(0.196125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196125,0.000000,0.000000,0.250000,0,0);}
.m54_c01104{transform:matrix(0.196515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196515,0.000000,0.000000,0.250000,0,0);}
.m4f_c01104{transform:matrix(0.196585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196585,0.000000,0.000000,0.250000,0,0);}
.maa_c01104{transform:matrix(0.198465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198465,0.000000,0.000000,0.250000,0,0);}
.m27_c01104{transform:matrix(0.198718,-0.000994,0.001250,0.249997,0,0);-ms-transform:matrix(0.198718,-0.000994,0.001250,0.249997,0,0);-webkit-transform:matrix(0.198718,-0.000994,0.001250,0.249997,0,0);}
.m72_c01104{transform:matrix(0.199225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199225,0.000000,0.000000,0.250000,0,0);}
.ma7_c01104{transform:matrix(0.200165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200165,0.000000,0.000000,0.250000,0,0);}
.m25_c01104{transform:matrix(0.200762,-0.001004,0.001250,0.249997,0,0);-ms-transform:matrix(0.200762,-0.001004,0.001250,0.249997,0,0);-webkit-transform:matrix(0.200762,-0.001004,0.001250,0.249997,0,0);}
.mc0_c01104{transform:matrix(0.200815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200815,0.000000,0.000000,0.250000,0,0);}
.m98_c01104{transform:matrix(0.200880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200880,0.000000,0.000000,0.250000,0,0);}
.mb4_c01104{transform:matrix(0.201345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201345,0.000000,0.000000,0.250000,0,0);}
.mbf_c01104{transform:matrix(0.204130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204130,0.000000,0.000000,0.250000,0,0);}
.m7e_c01104{transform:matrix(0.204605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204605,0.000000,0.000000,0.250000,0,0);}
.m58_c01104{transform:matrix(0.205110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205110,0.000000,0.000000,0.250000,0,0);}
.m28_c01104{transform:matrix(0.205357,-0.001027,0.001250,0.249997,0,0);-ms-transform:matrix(0.205357,-0.001027,0.001250,0.249997,0,0);-webkit-transform:matrix(0.205357,-0.001027,0.001250,0.249997,0,0);}
.m1a_c01104{transform:matrix(0.205497,-0.001027,0.001250,0.249997,0,0);-ms-transform:matrix(0.205497,-0.001027,0.001250,0.249997,0,0);-webkit-transform:matrix(0.205497,-0.001027,0.001250,0.249997,0,0);}
.m7b_c01104{transform:matrix(0.205745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205745,0.000000,0.000000,0.250000,0,0);}
.m50_c01104{transform:matrix(0.205815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205815,0.000000,0.000000,0.250000,0,0);}
.m97_c01104{transform:matrix(0.206600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206600,0.000000,0.000000,0.250000,0,0);}
.m89_c01104{transform:matrix(0.206740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206740,0.000000,0.000000,0.250000,0,0);}
.m29_c01104{transform:matrix(0.207892,-0.001039,0.001250,0.249997,0,0);-ms-transform:matrix(0.207892,-0.001039,0.001250,0.249997,0,0);-webkit-transform:matrix(0.207892,-0.001039,0.001250,0.249997,0,0);}
.m9e_c01104{transform:matrix(0.208065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208065,0.000000,0.000000,0.250000,0,0);}
.mf_c01104{transform:matrix(0.208672,-0.001043,0.001250,0.249997,0,0);-ms-transform:matrix(0.208672,-0.001043,0.001250,0.249997,0,0);-webkit-transform:matrix(0.208672,-0.001043,0.001250,0.249997,0,0);}
.mb5_c01104{transform:matrix(0.209095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209095,0.000000,0.000000,0.250000,0,0);}
.m43_c01104{transform:matrix(0.209505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209505,0.000000,0.000000,0.250000,0,0);}
.m59_c01104{transform:matrix(0.209880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209880,0.000000,0.000000,0.250000,0,0);}
.mbc_c01104{transform:matrix(0.209970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209970,0.000000,0.000000,0.250000,0,0);}
.m84_c01104{transform:matrix(0.210175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210175,0.000000,0.000000,0.250000,0,0);}
.m2d_c01104{transform:matrix(0.210332,-0.001052,0.001250,0.249997,0,0);-ms-transform:matrix(0.210332,-0.001052,0.001250,0.249997,0,0);-webkit-transform:matrix(0.210332,-0.001052,0.001250,0.249997,0,0);}
.m66_c01104{transform:matrix(0.210610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210610,0.000000,0.000000,0.250000,0,0);}
.m14_c01104{transform:matrix(0.210617,-0.001053,0.001250,0.249997,0,0);-ms-transform:matrix(0.210617,-0.001053,0.001250,0.249997,0,0);-webkit-transform:matrix(0.210617,-0.001053,0.001250,0.249997,0,0);}
.m70_c01104{transform:matrix(0.210620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210620,0.000000,0.000000,0.250000,0,0);}
.m3b_c01104{transform:matrix(0.210660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210660,0.000000,0.000000,0.250000,0,0);}
.m3d_c01104{transform:matrix(0.211350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211350,0.000000,0.000000,0.250000,0,0);}
.m9_c01104{transform:matrix(0.211867,-0.001059,0.001250,0.249997,0,0);-ms-transform:matrix(0.211867,-0.001059,0.001250,0.249997,0,0);-webkit-transform:matrix(0.211867,-0.001059,0.001250,0.249997,0,0);}
.m1_c01104{transform:matrix(0.212060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212060,0.000000,0.000000,0.250000,0,0);}
.m8b_c01104{transform:matrix(0.212510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212510,0.000000,0.000000,0.250000,0,0);}
.m55_c01104{transform:matrix(0.212835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212835,0.000000,0.000000,0.250000,0,0);}
.m3c_c01104{transform:matrix(0.213360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213360,0.000000,0.000000,0.250000,0,0);}
.mc_c01104{transform:matrix(0.213802,-0.001069,0.001250,0.249997,0,0);-ms-transform:matrix(0.213802,-0.001069,0.001250,0.249997,0,0);-webkit-transform:matrix(0.213802,-0.001069,0.001250,0.249997,0,0);}
.m3f_c01104{transform:matrix(0.213805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213805,0.000000,0.000000,0.250000,0,0);}
.m6e_c01104{transform:matrix(0.214530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214530,0.000000,0.000000,0.250000,0,0);}
.m3a_c01104{transform:matrix(0.214575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214575,0.000000,0.000000,0.250000,0,0);}
.m17_c01104{transform:matrix(0.215057,-0.001075,0.001250,0.249997,0,0);-ms-transform:matrix(0.215057,-0.001075,0.001250,0.249997,0,0);-webkit-transform:matrix(0.215057,-0.001075,0.001250,0.249997,0,0);}
.m8e_c01104{transform:matrix(0.215060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215060,0.000000,0.000000,0.250000,0,0);}
.m6d_c01104{transform:matrix(0.216285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216285,0.000000,0.000000,0.250000,0,0);}
.mba_c01104{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m19_c01104{transform:matrix(0.217732,-0.001089,0.001250,0.249997,0,0);-ms-transform:matrix(0.217732,-0.001089,0.001250,0.249997,0,0);-webkit-transform:matrix(0.217732,-0.001089,0.001250,0.249997,0,0);}
.m67_c01104{transform:matrix(0.218290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218290,0.000000,0.000000,0.250000,0,0);}
.m1e_c01104{transform:matrix(0.218622,-0.001093,0.001250,0.249997,0,0);-ms-transform:matrix(0.218622,-0.001093,0.001250,0.249997,0,0);-webkit-transform:matrix(0.218622,-0.001093,0.001250,0.249997,0,0);}
.m96_c01104{transform:matrix(0.219065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219065,0.000000,0.000000,0.250000,0,0);}
.m9b_c01104{transform:matrix(0.219620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219620,0.000000,0.000000,0.250000,0,0);}
.m12_c01104{transform:matrix(0.219667,-0.001098,0.001250,0.249997,0,0);-ms-transform:matrix(0.219667,-0.001098,0.001250,0.249997,0,0);-webkit-transform:matrix(0.219667,-0.001098,0.001250,0.249997,0,0);}
.m20_c01104{transform:matrix(0.221157,-0.001106,0.001250,0.249997,0,0);-ms-transform:matrix(0.221157,-0.001106,0.001250,0.249997,0,0);-webkit-transform:matrix(0.221157,-0.001106,0.001250,0.249997,0,0);}
.m79_c01104{transform:matrix(0.221415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221415,0.000000,0.000000,0.250000,0,0);}
.m44_c01104{transform:matrix(0.221455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221455,0.000000,0.000000,0.250000,0,0);}
.m1d_c01104{transform:matrix(0.222122,-0.001111,0.001250,0.249997,0,0);-ms-transform:matrix(0.222122,-0.001111,0.001250,0.249997,0,0);-webkit-transform:matrix(0.222122,-0.001111,0.001250,0.249997,0,0);}
.m10_c01104{transform:matrix(0.222487,-0.001112,0.001250,0.249997,0,0);-ms-transform:matrix(0.222487,-0.001112,0.001250,0.249997,0,0);-webkit-transform:matrix(0.222487,-0.001112,0.001250,0.249997,0,0);}
.ma1_c01104{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m91_c01104{transform:matrix(0.222845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222845,0.000000,0.000000,0.250000,0,0);}
.mbb_c01104{transform:matrix(0.224350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224350,0.000000,0.000000,0.250000,0,0);}
.ma0_c01104{transform:matrix(0.224445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224445,0.000000,0.000000,0.250000,0,0);}
.m56_c01104{transform:matrix(0.225040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225040,0.000000,0.000000,0.250000,0,0);}
.ma_c01104{transform:matrix(0.225312,-0.001127,0.001250,0.249997,0,0);-ms-transform:matrix(0.225312,-0.001127,0.001250,0.249997,0,0);-webkit-transform:matrix(0.225312,-0.001127,0.001250,0.249997,0,0);}
.m99_c01104{transform:matrix(0.225420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225420,0.000000,0.000000,0.250000,0,0);}
.m83_c01104{transform:matrix(0.226515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226515,0.000000,0.000000,0.250000,0,0);}
.m41_c01104{transform:matrix(0.227155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227155,0.000000,0.000000,0.250000,0,0);}
.m22_c01104{transform:matrix(0.227262,-0.001136,0.001250,0.249997,0,0);-ms-transform:matrix(0.227262,-0.001136,0.001250,0.249997,0,0);-webkit-transform:matrix(0.227262,-0.001136,0.001250,0.249997,0,0);}
.m9f_c01104{transform:matrix(0.227345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227345,0.000000,0.000000,0.250000,0,0);}
.m86_c01104{transform:matrix(0.227725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227725,0.000000,0.000000,0.250000,0,0);}
.m4b_c01104{transform:matrix(0.228965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228965,0.000000,0.000000,0.250000,0,0);}
.m8c_c01104{transform:matrix(0.229330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229330,0.000000,0.000000,0.250000,0,0);}
.m2a_c01104{transform:matrix(0.229637,-0.001148,0.001250,0.249997,0,0);-ms-transform:matrix(0.229637,-0.001148,0.001250,0.249997,0,0);-webkit-transform:matrix(0.229637,-0.001148,0.001250,0.249997,0,0);}
.m75_c01104{transform:matrix(0.230765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230765,0.000000,0.000000,0.250000,0,0);}
.m6_c01104{transform:matrix(0.230912,-0.001155,0.001250,0.249997,0,0);-ms-transform:matrix(0.230912,-0.001155,0.001250,0.249997,0,0);-webkit-transform:matrix(0.230912,-0.001155,0.001250,0.249997,0,0);}
.ma5_c01104{transform:matrix(0.231530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231530,0.000000,0.000000,0.250000,0,0);}
.ma2_c01104{transform:matrix(0.231625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231625,0.000000,0.000000,0.250000,0,0);}
.m85_c01104{transform:matrix(0.231990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231990,0.000000,0.000000,0.250000,0,0);}
.m9d_c01104{transform:matrix(0.232095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232095,0.000000,0.000000,0.250000,0,0);}
.m94_c01104{transform:matrix(0.232375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232375,0.000000,0.000000,0.250000,0,0);}
.m40_c01104{transform:matrix(0.233720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233720,0.000000,0.000000,0.250000,0,0);}
.m78_c01104{transform:matrix(0.234935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234935,0.000000,0.000000,0.250000,0,0);}
.m2f_c01104{transform:matrix(0.235457,-0.001177,0.001250,0.249997,0,0);-ms-transform:matrix(0.235457,-0.001177,0.001250,0.249997,0,0);-webkit-transform:matrix(0.235457,-0.001177,0.001250,0.249997,0,0);}
.m57_c01104{transform:matrix(0.235945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235945,0.000000,0.000000,0.250000,0,0);}
.m71_c01104{transform:matrix(0.236120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236120,0.000000,0.000000,0.250000,0,0);}
.m81_c01104{transform:matrix(0.237185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237185,0.000000,0.000000,0.250000,0,0);}
.m8d_c01104{transform:matrix(0.237595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237595,0.000000,0.000000,0.250000,0,0);}
.m30_c01104{transform:matrix(0.237975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237975,0.000000,0.000000,0.250000,0,0);}
.m52_c01104{transform:matrix(0.238380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238380,0.000000,0.000000,0.250000,0,0);}
.m2c_c01104{transform:matrix(0.238432,-0.001192,0.001250,0.249997,0,0);-ms-transform:matrix(0.238432,-0.001192,0.001250,0.249997,0,0);-webkit-transform:matrix(0.238432,-0.001192,0.001250,0.249997,0,0);}
.m76_c01104{transform:matrix(0.238720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238720,0.000000,0.000000,0.250000,0,0);}
.m9c_c01104{transform:matrix(0.239265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239265,0.000000,0.000000,0.250000,0,0);}
.m8f_c01104{transform:matrix(0.239400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239400,0.000000,0.000000,0.250000,0,0);}
.m32_c01104{transform:matrix(0.239565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239565,0.000000,0.000000,0.250000,0,0);}
.m2b_c01104{transform:matrix(0.239837,-0.001199,0.001250,0.249997,0,0);-ms-transform:matrix(0.239837,-0.001199,0.001250,0.249997,0,0);-webkit-transform:matrix(0.239837,-0.001199,0.001250,0.249997,0,0);}
.m53_c01104{transform:matrix(0.240195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240195,0.000000,0.000000,0.250000,0,0);}
.m15_c01104{transform:matrix(0.240447,-0.001202,0.001250,0.249997,0,0);-ms-transform:matrix(0.240447,-0.001202,0.001250,0.249997,0,0);-webkit-transform:matrix(0.240447,-0.001202,0.001250,0.249997,0,0);}
.m6f_c01104{transform:matrix(0.240675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240675,0.000000,0.000000,0.250000,0,0);}
.m87_c01104{transform:matrix(0.240860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240860,0.000000,0.000000,0.250000,0,0);}
.m3_c01104{transform:matrix(0.240957,-0.001205,0.001250,0.249997,0,0);-ms-transform:matrix(0.240957,-0.001205,0.001250,0.249997,0,0);-webkit-transform:matrix(0.240957,-0.001205,0.001250,0.249997,0,0);}
.m73_c01104{transform:matrix(0.241870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241870,0.000000,0.000000,0.250000,0,0);}
.mb_c01104{transform:matrix(0.242112,-0.001211,0.001250,0.249997,0,0);-ms-transform:matrix(0.242112,-0.001211,0.001250,0.249997,0,0);-webkit-transform:matrix(0.242112,-0.001211,0.001250,0.249997,0,0);}
.ma3_c01104{transform:matrix(0.242755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242755,0.000000,0.000000,0.250000,0,0);}
.m1b_c01104{transform:matrix(0.244602,-0.001223,0.001250,0.249997,0,0);-ms-transform:matrix(0.244602,-0.001223,0.001250,0.249997,0,0);-webkit-transform:matrix(0.244602,-0.001223,0.001250,0.249997,0,0);}
.m74_c01104{transform:matrix(0.244765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244765,0.000000,0.000000,0.250000,0,0);}
.m47_c01104{transform:matrix(0.244770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244770,0.000000,0.000000,0.250000,0,0);}
.m11_c01104{transform:matrix(0.245767,-0.001229,0.001250,0.249997,0,0);-ms-transform:matrix(0.245767,-0.001229,0.001250,0.249997,0,0);-webkit-transform:matrix(0.245767,-0.001229,0.001250,0.249997,0,0);}
.m5_c01104{transform:matrix(0.245977,-0.001230,0.001250,0.249997,0,0);-ms-transform:matrix(0.245977,-0.001230,0.001250,0.249997,0,0);-webkit-transform:matrix(0.245977,-0.001230,0.001250,0.249997,0,0);}
.m23_c01104{transform:matrix(0.246012,-0.001230,0.001250,0.249997,0,0);-ms-transform:matrix(0.246012,-0.001230,0.001250,0.249997,0,0);-webkit-transform:matrix(0.246012,-0.001230,0.001250,0.249997,0,0);}
.m1c_c01104{transform:matrix(0.246607,-0.001233,0.001250,0.249997,0,0);-ms-transform:matrix(0.246607,-0.001233,0.001250,0.249997,0,0);-webkit-transform:matrix(0.246607,-0.001233,0.001250,0.249997,0,0);}
.m4c_c01104{transform:matrix(0.246980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246980,0.000000,0.000000,0.250000,0,0);}
.me_c01104{transform:matrix(0.247542,-0.001238,0.001250,0.249997,0,0);-ms-transform:matrix(0.247542,-0.001238,0.001250,0.249997,0,0);-webkit-transform:matrix(0.247542,-0.001238,0.001250,0.249997,0,0);}
.m8a_c01104{transform:matrix(0.247715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247715,0.000000,0.000000,0.250000,0,0);}
.m61_c01104{transform:matrix(0.248105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248105,0.000000,0.000000,0.250000,0,0);}
.m6b_c01104{transform:matrix(0.248505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248505,0.000000,0.000000,0.250000,0,0);}
.m4_c01104{transform:matrix(0.249072,-0.001245,0.001250,0.249997,0,0);-ms-transform:matrix(0.249072,-0.001245,0.001250,0.249997,0,0);-webkit-transform:matrix(0.249072,-0.001245,0.001250,0.249997,0,0);}
.m21_c01104{transform:matrix(0.249667,-0.001248,0.001250,0.249997,0,0);-ms-transform:matrix(0.249667,-0.001248,0.001250,0.249997,0,0);-webkit-transform:matrix(0.249667,-0.001248,0.001250,0.249997,0,0);}
.m39_c01104{transform:matrix(0.249830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249830,0.000000,0.000000,0.250000,0,0);}
.m1f_c01104{transform:matrix(0.251417,-0.001257,0.001250,0.249997,0,0);-ms-transform:matrix(0.251417,-0.001257,0.001250,0.249997,0,0);-webkit-transform:matrix(0.251417,-0.001257,0.001250,0.249997,0,0);}
.m5c_c01104{transform:matrix(0.251885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251885,0.000000,0.000000,0.250000,0,0);}
.md_c01104{transform:matrix(0.253002,-0.001265,0.001250,0.249997,0,0);-ms-transform:matrix(0.253002,-0.001265,0.001250,0.249997,0,0);-webkit-transform:matrix(0.253002,-0.001265,0.001250,0.249997,0,0);}
.m34_c01104{transform:matrix(0.253845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253845,0.000000,0.000000,0.250000,0,0);}
.m90_c01104{transform:matrix(0.254205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254205,0.000000,0.000000,0.250000,0,0);}
.m3e_c01104{transform:matrix(0.255280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255280,0.000000,0.000000,0.250000,0,0);}
.m93_c01104{transform:matrix(0.255340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255340,0.000000,0.000000,0.250000,0,0);}
.m95_c01104{transform:matrix(0.255465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255465,0.000000,0.000000,0.250000,0,0);}
.m8_c01104{transform:matrix(0.255967,-0.001280,0.001250,0.249997,0,0);-ms-transform:matrix(0.255967,-0.001280,0.001250,0.249997,0,0);-webkit-transform:matrix(0.255967,-0.001280,0.001250,0.249997,0,0);}
.m31_c01104{transform:matrix(0.256480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256480,0.000000,0.000000,0.250000,0,0);}
.m13_c01104{transform:matrix(0.257467,-0.001287,0.001250,0.249997,0,0);-ms-transform:matrix(0.257467,-0.001287,0.001250,0.249997,0,0);-webkit-transform:matrix(0.257467,-0.001287,0.001250,0.249997,0,0);}
.m48_c01104{transform:matrix(0.258070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258070,0.000000,0.000000,0.250000,0,0);}
.m88_c01104{transform:matrix(0.258360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258360,0.000000,0.000000,0.250000,0,0);}
.m42_c01104{transform:matrix(0.258770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258770,0.000000,0.000000,0.250000,0,0);}
.m49_c01104{transform:matrix(0.260400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260400,0.000000,0.000000,0.250000,0,0);}
.m92_c01104{transform:matrix(0.260450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260450,0.000000,0.000000,0.250000,0,0);}
.m7_c01104{transform:matrix(0.261167,-0.001306,0.001250,0.249997,0,0);-ms-transform:matrix(0.261167,-0.001306,0.001250,0.249997,0,0);-webkit-transform:matrix(0.261167,-0.001306,0.001250,0.249997,0,0);}
.m7a_c01104{transform:matrix(0.262125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262125,0.000000,0.000000,0.250000,0,0);}
.m7c_c01104{transform:matrix(0.262850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262850,0.000000,0.000000,0.250000,0,0);}
.m24_c01104{transform:matrix(0.263197,-0.001316,0.001250,0.249997,0,0);-ms-transform:matrix(0.263197,-0.001316,0.001250,0.249997,0,0);-webkit-transform:matrix(0.263197,-0.001316,0.001250,0.249997,0,0);}
.m16_c01104{transform:matrix(0.263542,-0.001318,0.001250,0.249997,0,0);-ms-transform:matrix(0.263542,-0.001318,0.001250,0.249997,0,0);-webkit-transform:matrix(0.263542,-0.001318,0.001250,0.249997,0,0);}
.m6c_c01104{transform:matrix(0.265985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265985,0.000000,0.000000,0.250000,0,0);}
.ma4_c01104{transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);}
.m5b_c01104{transform:matrix(0.266380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266380,0.000000,0.000000,0.250000,0,0);}
.m36_c01104{transform:matrix(0.266650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266650,0.000000,0.000000,0.250000,0,0);}
.m33_c01104{transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);}
.m4a_c01104{transform:matrix(0.267135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267135,0.000000,0.000000,0.250000,0,0);}
.m4e_c01104{transform:matrix(0.267405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267405,0.000000,0.000000,0.250000,0,0);}
.m18_c01104{transform:matrix(0.267562,-0.001338,0.001250,0.249997,0,0);-ms-transform:matrix(0.267562,-0.001338,0.001250,0.249997,0,0);-webkit-transform:matrix(0.267562,-0.001338,0.001250,0.249997,0,0);}
.m77_c01104{transform:matrix(0.267755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267755,0.000000,0.000000,0.250000,0,0);}
.m5f_c01104{transform:matrix(0.268920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268920,0.000000,0.000000,0.250000,0,0);}
.m80_c01104{transform:matrix(0.269620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269620,0.000000,0.000000,0.250000,0,0);}
.m7f_c01104{transform:matrix(0.270490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270490,0.000000,0.000000,0.250000,0,0);}
.ma6_c01104{transform:matrix(0.271685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271685,0.000000,0.000000,0.250000,0,0);}
.m82_c01104{transform:matrix(0.272160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272160,0.000000,0.000000,0.250000,0,0);}
.m45_c01104{transform:matrix(0.273590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273590,0.000000,0.000000,0.250000,0,0);}
.m38_c01104{transform:matrix(0.274010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274010,0.000000,0.000000,0.250000,0,0);}
.m7d_c01104{transform:matrix(0.274240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274240,0.000000,0.000000,0.250000,0,0);}
.m5d_c01104{transform:matrix(0.275125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275125,0.000000,0.000000,0.250000,0,0);}
.m35_c01104{transform:matrix(0.275875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275875,0.000000,0.000000,0.250000,0,0);}
.m46_c01104{transform:matrix(0.275985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275985,0.000000,0.000000,0.250000,0,0);}
.m4d_c01104{transform:matrix(0.275990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275990,0.000000,0.000000,0.250000,0,0);}
.m5e_c01104{transform:matrix(0.280910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280910,0.000000,0.000000,0.250000,0,0);}
.m64_c01104{transform:matrix(0.285200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285200,0.000000,0.000000,0.250000,0,0);}
.m63_c01104{transform:matrix(0.289560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289560,0.000000,0.000000,0.250000,0,0);}
.m62_c01104{transform:matrix(0.291510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291510,0.000000,0.000000,0.250000,0,0);}
.m60_c01104{transform:matrix(0.299925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299925,0.000000,0.000000,0.250000,0,0);}
.m65_c01104{transform:matrix(0.303115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303115,0.000000,0.000000,0.250000,0,0);}
.m2e_c01104{transform:matrix(0.308891,-0.001544,0.001250,0.249997,0,0);-ms-transform:matrix(0.308891,-0.001544,0.001250,0.249997,0,0);-webkit-transform:matrix(0.308891,-0.001544,0.001250,0.249997,0,0);}
.m37_c01104{transform:matrix(0.369230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369230,0.000000,0.000000,0.250000,0,0);}
.v0_c01104{vertical-align:0.000000px;}
.ls0_c01104{letter-spacing:0.000000px;}
.sc__c01104{text-shadow:none;}
.sc0_c01104{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__c01104{-webkit-text-stroke:0px transparent;}
.sc0_c01104{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01104{word-spacing:0.000000px;}
.fc0_c01104{color:transparent;}
.fs8_c01104{font-size:48.000000px;}
.fs5_c01104{font-size:66.000000px;}
.fs3_c01104{font-size:72.000000px;}
.fs4_c01104{font-size:78.000000px;}
.fs1_c01104{font-size:78.000975px;}
.fs0_c01104{font-size:84.000000px;}
.fs2_c01104{font-size:84.001050px;}
.fs6_c01104{font-size:90.000000px;}
.fs7_c01104{font-size:96.000000px;}
.y0_c01104{bottom:0.000000px;}
.y3c_c01104{bottom:384.750000px;}
.y3b_c01104{bottom:420.976500px;}
.y3a_c01104{bottom:456.255000px;}
.y39_c01104{bottom:490.843500px;}
.y38_c01104{bottom:599.352000px;}
.y37_c01104{bottom:633.589500px;}
.y36_c01104{bottom:668.518500px;}
.y35_c01104{bottom:703.540500px;}
.y3e_c01104{bottom:729.810000px;}
.y3d_c01104{bottom:737.640000px;}
.y34_c01104{bottom:738.798000px;}
.y33_c01104{bottom:774.873000px;}
.y32_c01104{bottom:810.465000px;}
.y31_c01104{bottom:845.725500px;}
.y30_c01104{bottom:880.470000px;}
.y2f_c01104{bottom:917.338500px;}
.y2e_c01104{bottom:951.480000px;}
.y2d_c01104{bottom:986.580000px;}
.y23_c01104{bottom:1022.098868px;}
.y24_c01104{bottom:1022.099018px;}
.y25_c01104{bottom:1022.099317px;}
.y26_c01104{bottom:1022.099467px;}
.y2c_c01104{bottom:1022.099737px;}
.y27_c01104{bottom:1022.100068px;}
.y2b_c01104{bottom:1022.100345px;}
.y2a_c01104{bottom:1022.100495px;}
.y29_c01104{bottom:1022.100802px;}
.y28_c01104{bottom:1022.100810px;}
.y18_c01104{bottom:1057.316587px;}
.y19_c01104{bottom:1057.316738px;}
.y1a_c01104{bottom:1057.317030px;}
.y17_c01104{bottom:1057.317187px;}
.y1b_c01104{bottom:1057.317622px;}
.y1e_c01104{bottom:1057.317765px;}
.y1d_c01104{bottom:1057.317773px;}
.y1c_c01104{bottom:1057.318372px;}
.y1f_c01104{bottom:1057.318515px;}
.y20_c01104{bottom:1057.318965px;}
.y21_c01104{bottom:1057.319565px;}
.y22_c01104{bottom:1057.320157px;}
.y16_c01104{bottom:1092.587085px;}
.y13_c01104{bottom:1092.587393px;}
.y10_c01104{bottom:1092.587408px;}
.y15_c01104{bottom:1092.587685px;}
.y12_c01104{bottom:1092.587700px;}
.y14_c01104{bottom:1092.587843px;}
.y11_c01104{bottom:1092.588000px;}
.yf_c01104{bottom:1092.588008px;}
.ye_c01104{bottom:1092.588608px;}
.yd_c01104{bottom:1092.588765px;}
.y2_c01104{bottom:1127.250000px;}
.y3_c01104{bottom:1127.578103px;}
.y4_c01104{bottom:1128.080310px;}
.y5_c01104{bottom:1128.466320px;}
.y6_c01104{bottom:1128.578483px;}
.y7_c01104{bottom:1129.245383px;}
.y8_c01104{bottom:1129.689517px;}
.y9_c01104{bottom:1129.858282px;}
.ya_c01104{bottom:1130.029733px;}
.yb_c01104{bottom:1130.414460px;}
.yc_c01104{bottom:1130.583292px;}
.y1_c01104{bottom:1189.080000px;}
.ha_c01104{height:48.000000px;}
.h7_c01104{height:66.000000px;}
.h5_c01104{height:72.000000px;}
.h6_c01104{height:78.000000px;}
.h3_c01104{height:78.000975px;}
.h2_c01104{height:84.000000px;}
.h4_c01104{height:84.001050px;}
.h8_c01104{height:90.000000px;}
.h9_c01104{height:96.000000px;}
.h0_c01104{height:1246.320000px;}
.h1_c01104{height:1246.500000px;}
.w0_c01104{width:927.450000px;}
.w1_c01104{width:927.750000px;}
.x0_c01104{left:0.000000px;}
.x4_c01104{left:185.286000px;}
.xf_c01104{left:187.112348px;}
.x53_c01104{left:188.460000px;}
.x3a_c01104{left:190.080000px;}
.x71_c01104{left:191.700000px;}
.x54_c01104{left:210.600000px;}
.x41_c01104{left:220.860000px;}
.x19_c01104{left:230.854298px;}
.x67_c01104{left:244.080000px;}
.x72_c01104{left:245.430000px;}
.x5_c01104{left:250.906500px;}
.x3b_c01104{left:253.260000px;}
.x63_c01104{left:254.880000px;}
.x10_c01104{left:262.982745px;}
.x20_c01104{left:264.877230px;}
.x45_c01104{left:278.640000px;}
.x3c_c01104{left:285.120000px;}
.x2d_c01104{left:287.010000px;}
.x11_c01104{left:296.463585px;}
.x5d_c01104{left:297.810000px;}
.x64_c01104{left:299.430000px;}
.x68_c01104{left:300.780000px;}
.x21_c01104{left:307.808303px;}
.x4d_c01104{left:309.420000px;}
.x7a_c01104{left:310.500000px;}
.x46_c01104{left:321.840000px;}
.x1a_c01104{left:329.945273px;}
.x22_c01104{left:331.028880px;}
.x69_c01104{left:332.640000px;}
.x12_c01104{left:340.744695px;}
.x4e_c01104{left:342.090000px;}
.x5a_c01104{left:343.170000px;}
.x6_c01104{left:351.348000px;}
.x73_c01104{left:353.700000px;}
.x2e_c01104{left:364.230000px;}
.x23_c01104{left:374.229960px;}
.x65_c01104{left:377.460000px;}
.x5e_c01104{left:387.180000px;}
.x7b_c01104{left:390.420000px;}
.x27_c01104{left:396.090000px;}
.x48_c01104{left:399.330000px;}
.x34_c01104{left:407.700000px;}
.x6a_c01104{left:412.290000px;}
.x13_c01104{left:417.965123px;}
.x55_c01104{left:419.580000px;}
.x66_c01104{left:421.470000px;}
.x7c_c01104{left:424.440000px;}
.x7_c01104{left:428.550000px;}
.x2f_c01104{left:430.380000px;}
.x28_c01104{left:439.830000px;}
.x6b_c01104{left:444.150000px;}
.x1_c01104{left:446.580000px;}
.x8_c01104{left:450.982500px;}
.x74_c01104{left:454.140000px;}
.x49_c01104{left:464.130000px;}
.x5b_c01104{left:465.750000px;}
.x2_c01104{left:468.720000px;}
.x5f_c01104{left:474.930000px;}
.x7d_c01104{left:488.430000px;}
.x1b_c01104{left:495.997920px;}
.x4f_c01104{left:497.610000px;}
.x75_c01104{left:498.960000px;}
.x6c_c01104{left:500.580000px;}
.x29_c01104{left:506.520000px;}
.x35_c01104{left:507.600000px;}
.x60_c01104{left:510.570000px;}
.x3_c01104{left:513.270000px;}
.x3d_c01104{left:518.670000px;}
.x6d_c01104{left:521.100000px;}
.x42_c01104{left:530.010000px;}
.x56_c01104{left:531.090000px;}
.x76_c01104{left:543.510000px;}
.x24_c01104{left:551.081378px;}
.x2a_c01104{left:552.420000px;}
.x6e_c01104{left:554.040000px;}
.x14_c01104{left:562.147230px;}
.x4a_c01104{left:563.760000px;}
.x43_c01104{left:565.380000px;}
.x5c_c01104{left:575.100000px;}
.x9_c01104{left:584.362500px;}
.x15_c01104{left:594.548040px;}
.x50_c01104{left:597.510000px;}
.x78_c01104{left:598.860000px;}
.x77_c01104{left:600.480000px;}
.x1c_c01104{left:606.699188px;}
.x6f_c01104{left:609.930000px;}
.x4b_c01104{left:618.570000px;}
.x51_c01104{left:619.650000px;}
.x1d_c01104{left:629.649758px;}
.x30_c01104{left:640.170000px;}
.x79_c01104{left:643.950000px;}
.x16_c01104{left:650.439435px;}
.x25_c01104{left:651.522390px;}
.x2b_c01104{left:652.860000px;}
.x7e_c01104{left:654.750000px;}
.x36_c01104{left:662.850000px;}
.x61_c01104{left:664.740000px;}
.x70_c01104{left:666.900000px;}
.xa_c01104{left:673.189500px;}
.x1e_c01104{left:674.740883px;}
.x31_c01104{left:684.450000px;}
.x57_c01104{left:686.340000px;}
.x37_c01104{left:695.790000px;}
.xb_c01104{left:706.942500px;}
.x4c_c01104{left:719.010000px;}
.x38_c01104{left:730.080000px;}
.x58_c01104{left:732.510000px;}
.x17_c01104{left:739.810170px;}
.xc_c01104{left:741.232500px;}
.x1f_c01104{left:751.962810px;}
.x18_c01104{left:773.291010px;}
.x3e_c01104{left:774.630000px;}
.x52_c01104{left:786.240000px;}
.x32_c01104{left:797.040000px;}
.x26_c01104{left:798.674573px;}
.x3f_c01104{left:808.920000px;}
.xd_c01104{left:818.178000px;}
.x39_c01104{left:819.450000px;}
.x47_c01104{left:823.770000px;}
.x59_c01104{left:831.600000px;}
.x40_c01104{left:832.680000px;}
.x33_c01104{left:841.860000px;}
.x62_c01104{left:843.750000px;}
.x2c_c01104{left:850.500000px;}
.xe_c01104{left:851.944500px;}
.x44_c01104{left:865.890000px;}
.x7f_c01104{left:924.480000px;}
@media print{
.v0_c01104{vertical-align:0.000000pt;}
.ls0_c01104{letter-spacing:0.000000pt;}
.ws0_c01104{word-spacing:0.000000pt;}
.fs8_c01104{font-size:42.666667pt;}
.fs5_c01104{font-size:58.666667pt;}
.fs3_c01104{font-size:64.000000pt;}
.fs4_c01104{font-size:69.333333pt;}
.fs1_c01104{font-size:69.334200pt;}
.fs0_c01104{font-size:74.666667pt;}
.fs2_c01104{font-size:74.667600pt;}
.fs6_c01104{font-size:80.000000pt;}
.fs7_c01104{font-size:85.333333pt;}
.y0_c01104{bottom:0.000000pt;}
.y3c_c01104{bottom:342.000000pt;}
.y3b_c01104{bottom:374.201333pt;}
.y3a_c01104{bottom:405.560000pt;}
.y39_c01104{bottom:436.305333pt;}
.y38_c01104{bottom:532.757333pt;}
.y37_c01104{bottom:563.190667pt;}
.y36_c01104{bottom:594.238667pt;}
.y35_c01104{bottom:625.369333pt;}
.y3e_c01104{bottom:648.720000pt;}
.y3d_c01104{bottom:655.680000pt;}
.y34_c01104{bottom:656.709333pt;}
.y33_c01104{bottom:688.776000pt;}
.y32_c01104{bottom:720.413333pt;}
.y31_c01104{bottom:751.756000pt;}
.y30_c01104{bottom:782.640000pt;}
.y2f_c01104{bottom:815.412000pt;}
.y2e_c01104{bottom:845.760000pt;}
.y2d_c01104{bottom:876.960000pt;}
.y23_c01104{bottom:908.532327pt;}
.y24_c01104{bottom:908.532460pt;}
.y25_c01104{bottom:908.532727pt;}
.y26_c01104{bottom:908.532860pt;}
.y2c_c01104{bottom:908.533100pt;}
.y27_c01104{bottom:908.533393pt;}
.y2b_c01104{bottom:908.533640pt;}
.y2a_c01104{bottom:908.533773pt;}
.y29_c01104{bottom:908.534047pt;}
.y28_c01104{bottom:908.534053pt;}
.y18_c01104{bottom:939.836967pt;}
.y19_c01104{bottom:939.837100pt;}
.y1a_c01104{bottom:939.837360pt;}
.y17_c01104{bottom:939.837500pt;}
.y1b_c01104{bottom:939.837887pt;}
.y1e_c01104{bottom:939.838013pt;}
.y1d_c01104{bottom:939.838020pt;}
.y1c_c01104{bottom:939.838553pt;}
.y1f_c01104{bottom:939.838680pt;}
.y20_c01104{bottom:939.839080pt;}
.y21_c01104{bottom:939.839613pt;}
.y22_c01104{bottom:939.840140pt;}
.y16_c01104{bottom:971.188520pt;}
.y13_c01104{bottom:971.188793pt;}
.y10_c01104{bottom:971.188807pt;}
.y15_c01104{bottom:971.189053pt;}
.y12_c01104{bottom:971.189067pt;}
.y14_c01104{bottom:971.189193pt;}
.y11_c01104{bottom:971.189333pt;}
.yf_c01104{bottom:971.189340pt;}
.ye_c01104{bottom:971.189873pt;}
.yd_c01104{bottom:971.190013pt;}
.y2_c01104{bottom:1002.000000pt;}
.y3_c01104{bottom:1002.291647pt;}
.y4_c01104{bottom:1002.738053pt;}
.y5_c01104{bottom:1003.081173pt;}
.y6_c01104{bottom:1003.180873pt;}
.y7_c01104{bottom:1003.773673pt;}
.y8_c01104{bottom:1004.168460pt;}
.y9_c01104{bottom:1004.318473pt;}
.ya_c01104{bottom:1004.470873pt;}
.yb_c01104{bottom:1004.812853pt;}
.yc_c01104{bottom:1004.962927pt;}
.y1_c01104{bottom:1056.960000pt;}
.ha_c01104{height:42.666667pt;}
.h7_c01104{height:58.666667pt;}
.h5_c01104{height:64.000000pt;}
.h6_c01104{height:69.333333pt;}
.h3_c01104{height:69.334200pt;}
.h2_c01104{height:74.666667pt;}
.h4_c01104{height:74.667600pt;}
.h8_c01104{height:80.000000pt;}
.h9_c01104{height:85.333333pt;}
.h0_c01104{height:1107.840000pt;}
.h1_c01104{height:1108.000000pt;}
.w0_c01104{width:824.400000pt;}
.w1_c01104{width:824.666667pt;}
.x0_c01104{left:0.000000pt;}
.x4_c01104{left:164.698667pt;}
.xf_c01104{left:166.322087pt;}
.x53_c01104{left:167.520000pt;}
.x3a_c01104{left:168.960000pt;}
.x71_c01104{left:170.400000pt;}
.x54_c01104{left:187.200000pt;}
.x41_c01104{left:196.320000pt;}
.x19_c01104{left:205.203820pt;}
.x67_c01104{left:216.960000pt;}
.x72_c01104{left:218.160000pt;}
.x5_c01104{left:223.028000pt;}
.x3b_c01104{left:225.120000pt;}
.x63_c01104{left:226.560000pt;}
.x10_c01104{left:233.762440pt;}
.x20_c01104{left:235.446427pt;}
.x45_c01104{left:247.680000pt;}
.x3c_c01104{left:253.440000pt;}
.x2d_c01104{left:255.120000pt;}
.x11_c01104{left:263.523187pt;}
.x5d_c01104{left:264.720000pt;}
.x64_c01104{left:266.160000pt;}
.x68_c01104{left:267.360000pt;}
.x21_c01104{left:273.607380pt;}
.x4d_c01104{left:275.040000pt;}
.x7a_c01104{left:276.000000pt;}
.x46_c01104{left:286.080000pt;}
.x1a_c01104{left:293.284687pt;}
.x22_c01104{left:294.247893pt;}
.x69_c01104{left:295.680000pt;}
.x12_c01104{left:302.884173pt;}
.x4e_c01104{left:304.080000pt;}
.x5a_c01104{left:305.040000pt;}
.x6_c01104{left:312.309333pt;}
.x73_c01104{left:314.400000pt;}
.x2e_c01104{left:323.760000pt;}
.x23_c01104{left:332.648853pt;}
.x65_c01104{left:335.520000pt;}
.x5e_c01104{left:344.160000pt;}
.x7b_c01104{left:347.040000pt;}
.x27_c01104{left:352.080000pt;}
.x48_c01104{left:354.960000pt;}
.x34_c01104{left:362.400000pt;}
.x6a_c01104{left:366.480000pt;}
.x13_c01104{left:371.524553pt;}
.x55_c01104{left:372.960000pt;}
.x66_c01104{left:374.640000pt;}
.x7c_c01104{left:377.280000pt;}
.x7_c01104{left:380.933333pt;}
.x2f_c01104{left:382.560000pt;}
.x28_c01104{left:390.960000pt;}
.x6b_c01104{left:394.800000pt;}
.x1_c01104{left:396.960000pt;}
.x8_c01104{left:400.873333pt;}
.x74_c01104{left:403.680000pt;}
.x49_c01104{left:412.560000pt;}
.x5b_c01104{left:414.000000pt;}
.x2_c01104{left:416.640000pt;}
.x5f_c01104{left:422.160000pt;}
.x7d_c01104{left:434.160000pt;}
.x1b_c01104{left:440.887040pt;}
.x4f_c01104{left:442.320000pt;}
.x75_c01104{left:443.520000pt;}
.x6c_c01104{left:444.960000pt;}
.x29_c01104{left:450.240000pt;}
.x35_c01104{left:451.200000pt;}
.x60_c01104{left:453.840000pt;}
.x3_c01104{left:456.240000pt;}
.x3d_c01104{left:461.040000pt;}
.x6d_c01104{left:463.200000pt;}
.x42_c01104{left:471.120000pt;}
.x56_c01104{left:472.080000pt;}
.x76_c01104{left:483.120000pt;}
.x24_c01104{left:489.850113pt;}
.x2a_c01104{left:491.040000pt;}
.x6e_c01104{left:492.480000pt;}
.x14_c01104{left:499.686427pt;}
.x4a_c01104{left:501.120000pt;}
.x43_c01104{left:502.560000pt;}
.x5c_c01104{left:511.200000pt;}
.x9_c01104{left:519.433333pt;}
.x15_c01104{left:528.487147pt;}
.x50_c01104{left:531.120000pt;}
.x78_c01104{left:532.320000pt;}
.x77_c01104{left:533.760000pt;}
.x1c_c01104{left:539.288167pt;}
.x6f_c01104{left:542.160000pt;}
.x4b_c01104{left:549.840000pt;}
.x51_c01104{left:550.800000pt;}
.x1d_c01104{left:559.688673pt;}
.x30_c01104{left:569.040000pt;}
.x79_c01104{left:572.400000pt;}
.x16_c01104{left:578.168387pt;}
.x25_c01104{left:579.131013pt;}
.x2b_c01104{left:580.320000pt;}
.x7e_c01104{left:582.000000pt;}
.x36_c01104{left:589.200000pt;}
.x61_c01104{left:590.880000pt;}
.x70_c01104{left:592.800000pt;}
.xa_c01104{left:598.390667pt;}
.x1e_c01104{left:599.769673pt;}
.x31_c01104{left:608.400000pt;}
.x57_c01104{left:610.080000pt;}
.x37_c01104{left:618.480000pt;}
.xb_c01104{left:628.393333pt;}
.x4c_c01104{left:639.120000pt;}
.x38_c01104{left:648.960000pt;}
.x58_c01104{left:651.120000pt;}
.x17_c01104{left:657.609040pt;}
.xc_c01104{left:658.873333pt;}
.x1f_c01104{left:668.411387pt;}
.x18_c01104{left:687.369787pt;}
.x3e_c01104{left:688.560000pt;}
.x52_c01104{left:698.880000pt;}
.x32_c01104{left:708.480000pt;}
.x26_c01104{left:709.932953pt;}
.x3f_c01104{left:719.040000pt;}
.xd_c01104{left:727.269333pt;}
.x39_c01104{left:728.400000pt;}
.x47_c01104{left:732.240000pt;}
.x59_c01104{left:739.200000pt;}
.x40_c01104{left:740.160000pt;}
.x33_c01104{left:748.320000pt;}
.x62_c01104{left:750.000000pt;}
.x2c_c01104{left:756.000000pt;}
.xe_c01104{left:757.284000pt;}
.x44_c01104{left:769.680000pt;}
.x7f_c01104{left:821.760000pt;}
}





/* 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_c01105 {
    display:none;
  }
  .loading-indicator_c01105.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01105 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_c01105 { 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_c01105" -> "#page-container .classname_c01105")
 */
.pf_c01105 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01105 { /* 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_c01105.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01105 { /* 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_c01105 { /* 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_c01105 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01105 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01105 {overflow:visible;}
  }
}
.c_c01105 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01105 { /* 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_c01105:after { /* webkit #35443 */
  content: '';
}
.t_c01105:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01105 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 */
}
.__c01105 { /* 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_c01105 { /* info for Javascript */
  display:none;
}
.l_c01105 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01105 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01105 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01105: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_c01105 {
    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_c01105.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01105.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_c01105 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01105{font-family:sans-serif;visibility:hidden;}
.sc__c01105{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01105{-webkit-text-stroke:0px transparent;}
}
.y0_c01105{bottom:0.000000px;}
.h0_c01105{height:1246.320000px;}
.h1_c01105{height:1246.500000px;}
.w0_c01105{width:927.450000px;}
.w1_c01105{width:927.750000px;}
.x0_c01105{left:0.000000px;}
@media print{
.y0_c01105{bottom:0.000000pt;}
.h0_c01105{height:1107.840000pt;}
.h1_c01105{height:1108.000000pt;}
.w0_c01105{width:824.400000pt;}
.w1_c01105{width:824.666667pt;}
.x0_c01105{left:0.000000pt;}
}





/* 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_c01106 {
    display:none;
  }
  .loading-indicator_c01106.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01106 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_c01106 { 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_c01106" -> "#page-container .classname_c01106")
 */
.pf_c01106 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01106 { /* 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_c01106.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01106 { /* 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_c01106 { /* 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_c01106 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01106 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01106 {overflow:visible;}
  }
}
.c_c01106 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01106 { /* 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_c01106:after { /* webkit #35443 */
  content: '';
}
.t_c01106:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01106 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 */
}
.__c01106 { /* 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_c01106 { /* info for Javascript */
  display:none;
}
.l_c01106 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01106 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01106 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01106: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_c01106 {
    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_c01106.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01106.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_c01106 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01106{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01106;src:url('chunks/assets/font_7c6b9abe6ee2a268480c528b.woff2')format("woff");}.ff1_c01106{font-family:ff1_c01106;line-height:1.000000;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;}
.mf8_c01106{transform:matrix(0.010604,0.000170,-0.003999,0.249968,0,0);-ms-transform:matrix(0.010604,0.000170,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.010604,0.000170,-0.003999,0.249968,0,0);}
.m10_c01106{transform:matrix(0.081380,0.001546,-0.004749,0.249955,0,0);-ms-transform:matrix(0.081380,0.001546,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.081380,0.001546,-0.004749,0.249955,0,0);}
.m121_c01106{transform:matrix(0.152420,0.003506,-0.005748,0.249934,0,0);-ms-transform:matrix(0.152420,0.003506,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.152420,0.003506,-0.005748,0.249934,0,0);}
.m120_c01106{transform:matrix(0.162132,0.003729,-0.005748,0.249934,0,0);-ms-transform:matrix(0.162132,0.003729,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.162132,0.003729,-0.005748,0.249934,0,0);}
.m2a_c01106{transform:matrix(0.172038,0.002064,-0.003000,0.249982,0,0);-ms-transform:matrix(0.172038,0.002064,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.172038,0.002064,-0.003000,0.249982,0,0);}
.m9d_c01106{transform:matrix(0.176057,0.002817,-0.003999,0.249968,0,0);-ms-transform:matrix(0.176057,0.002817,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.176057,0.002817,-0.003999,0.249968,0,0);}
.m95_c01106{transform:matrix(0.181922,0.002911,-0.003999,0.249968,0,0);-ms-transform:matrix(0.181922,0.002911,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.181922,0.002911,-0.003999,0.249968,0,0);}
.m12f_c01106{transform:matrix(0.183387,0.004218,-0.005748,0.249934,0,0);-ms-transform:matrix(0.183387,0.004218,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.183387,0.004218,-0.005748,0.249934,0,0);}
.m91_c01106{transform:matrix(0.186351,0.002982,-0.003999,0.249968,0,0);-ms-transform:matrix(0.186351,0.002982,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.186351,0.002982,-0.003999,0.249968,0,0);}
.m99_c01106{transform:matrix(0.187771,0.003004,-0.003999,0.249968,0,0);-ms-transform:matrix(0.187771,0.003004,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.187771,0.003004,-0.003999,0.249968,0,0);}
.m94_c01106{transform:matrix(0.189836,0.003037,-0.003999,0.249968,0,0);-ms-transform:matrix(0.189836,0.003037,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.189836,0.003037,-0.003999,0.249968,0,0);}
.m116_c01106{transform:matrix(0.194069,0.004464,-0.005748,0.249934,0,0);-ms-transform:matrix(0.194069,0.004464,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.194069,0.004464,-0.005748,0.249934,0,0);}
.m131_c01106{transform:matrix(0.194788,0.004480,-0.005748,0.249934,0,0);-ms-transform:matrix(0.194788,0.004480,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.194788,0.004480,-0.005748,0.249934,0,0);}
.m77_c01106{transform:matrix(0.194915,0.003119,-0.003999,0.249968,0,0);-ms-transform:matrix(0.194915,0.003119,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.194915,0.003119,-0.003999,0.249968,0,0);}
.m9c_c01106{transform:matrix(0.198180,0.003171,-0.003999,0.249968,0,0);-ms-transform:matrix(0.198180,0.003171,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.198180,0.003171,-0.003999,0.249968,0,0);}
.m0_c01106{transform:matrix(0.199656,0.004193,-0.005249,0.249945,0,0);-ms-transform:matrix(0.199656,0.004193,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.199656,0.004193,-0.005249,0.249945,0,0);}
.m9a_c01106{transform:matrix(0.200099,0.003202,-0.003999,0.249968,0,0);-ms-transform:matrix(0.200099,0.003202,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.200099,0.003202,-0.003999,0.249968,0,0);}
.m134_c01106{transform:matrix(0.200257,0.004606,-0.005748,0.249934,0,0);-ms-transform:matrix(0.200257,0.004606,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.200257,0.004606,-0.005748,0.249934,0,0);}
.m128_c01106{transform:matrix(0.201222,0.004628,-0.005748,0.249934,0,0);-ms-transform:matrix(0.201222,0.004628,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.201222,0.004628,-0.005748,0.249934,0,0);}
.m11d_c01106{transform:matrix(0.201457,0.004634,-0.005748,0.249934,0,0);-ms-transform:matrix(0.201457,0.004634,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.201457,0.004634,-0.005748,0.249934,0,0);}
.m80_c01106{transform:matrix(0.201469,0.003224,-0.003999,0.249968,0,0);-ms-transform:matrix(0.201469,0.003224,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.201469,0.003224,-0.003999,0.249968,0,0);}
.m140_c01106{transform:matrix(0.201511,0.004232,-0.005249,0.249945,0,0);-ms-transform:matrix(0.201511,0.004232,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.201511,0.004232,-0.005249,0.249945,0,0);}
.m9_c01106{transform:matrix(0.203460,0.004273,-0.005249,0.249945,0,0);-ms-transform:matrix(0.203460,0.004273,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.203460,0.004273,-0.005249,0.249945,0,0);}
.m5_c01106{transform:matrix(0.204470,0.004294,-0.005249,0.249945,0,0);-ms-transform:matrix(0.204470,0.004294,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.204470,0.004294,-0.005249,0.249945,0,0);}
.m69_c01106{transform:matrix(0.204690,0.002456,-0.003000,0.249982,0,0);-ms-transform:matrix(0.204690,0.002456,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.204690,0.002456,-0.003000,0.249982,0,0);}
.m132_c01106{transform:matrix(0.205511,0.004727,-0.005748,0.249934,0,0);-ms-transform:matrix(0.205511,0.004727,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.205511,0.004727,-0.005748,0.249934,0,0);}
.m4_c01106{transform:matrix(0.205920,0.004324,-0.005249,0.249945,0,0);-ms-transform:matrix(0.205920,0.004324,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.205920,0.004324,-0.005249,0.249945,0,0);}
.ma_c01106{transform:matrix(0.207459,0.004357,-0.005249,0.249945,0,0);-ms-transform:matrix(0.207459,0.004357,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.207459,0.004357,-0.005249,0.249945,0,0);}
.m32_c01106{transform:matrix(0.209480,0.002514,-0.003000,0.249982,0,0);-ms-transform:matrix(0.209480,0.002514,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.209480,0.002514,-0.003000,0.249982,0,0);}
.m40_c01106{transform:matrix(0.209615,0.002515,-0.003000,0.249982,0,0);-ms-transform:matrix(0.209615,0.002515,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.209615,0.002515,-0.003000,0.249982,0,0);}
.m110_c01106{transform:matrix(0.209879,0.004827,-0.005748,0.249934,0,0);-ms-transform:matrix(0.209879,0.004827,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.209879,0.004827,-0.005748,0.249934,0,0);}
.m7_c01106{transform:matrix(0.210544,0.004421,-0.005249,0.249945,0,0);-ms-transform:matrix(0.210544,0.004421,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.210544,0.004421,-0.005249,0.249945,0,0);}
.m7a_c01106{transform:matrix(0.210998,0.003376,-0.003999,0.249968,0,0);-ms-transform:matrix(0.210998,0.003376,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.210998,0.003376,-0.003999,0.249968,0,0);}
.md0_c01106{transform:matrix(0.211473,0.003384,-0.003999,0.249968,0,0);-ms-transform:matrix(0.211473,0.003384,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.211473,0.003384,-0.003999,0.249968,0,0);}
.m97_c01106{transform:matrix(0.211958,0.003391,-0.003999,0.249968,0,0);-ms-transform:matrix(0.211958,0.003391,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.211958,0.003391,-0.003999,0.249968,0,0);}
.m136_c01106{transform:matrix(0.211979,0.004876,-0.005748,0.249934,0,0);-ms-transform:matrix(0.211979,0.004876,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.211979,0.004876,-0.005748,0.249934,0,0);}
.meb_c01106{transform:matrix(0.212173,0.003395,-0.003999,0.249968,0,0);-ms-transform:matrix(0.212173,0.003395,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.212173,0.003395,-0.003999,0.249968,0,0);}
.m7f_c01106{transform:matrix(0.212333,0.003397,-0.003999,0.249968,0,0);-ms-transform:matrix(0.212333,0.003397,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.212333,0.003397,-0.003999,0.249968,0,0);}
.m12e_c01106{transform:matrix(0.212614,0.004890,-0.005748,0.249934,0,0);-ms-transform:matrix(0.212614,0.004890,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.212614,0.004890,-0.005748,0.249934,0,0);}
.m137_c01106{transform:matrix(0.212909,0.004897,-0.005748,0.249934,0,0);-ms-transform:matrix(0.212909,0.004897,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.212909,0.004897,-0.005748,0.249934,0,0);}
.mb_c01106{transform:matrix(0.213118,0.004475,-0.005249,0.249945,0,0);-ms-transform:matrix(0.213118,0.004475,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.213118,0.004475,-0.005249,0.249945,0,0);}
.m123_c01106{transform:matrix(0.213304,0.004906,-0.005748,0.249934,0,0);-ms-transform:matrix(0.213304,0.004906,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.213304,0.004906,-0.005748,0.249934,0,0);}
.m133_c01106{transform:matrix(0.213374,0.004908,-0.005748,0.249934,0,0);-ms-transform:matrix(0.213374,0.004908,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.213374,0.004908,-0.005748,0.249934,0,0);}
.m11a_c01106{transform:matrix(0.214358,0.004930,-0.005748,0.249934,0,0);-ms-transform:matrix(0.214358,0.004930,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.214358,0.004930,-0.005748,0.249934,0,0);}
.m7d_c01106{transform:matrix(0.214593,0.003433,-0.003999,0.249968,0,0);-ms-transform:matrix(0.214593,0.003433,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.214593,0.003433,-0.003999,0.249968,0,0);}
.m12a_c01106{transform:matrix(0.214593,0.004936,-0.005748,0.249934,0,0);-ms-transform:matrix(0.214593,0.004936,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.214593,0.004936,-0.005748,0.249934,0,0);}
.m9b_c01106{transform:matrix(0.215707,0.003451,-0.003999,0.249968,0,0);-ms-transform:matrix(0.215707,0.003451,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.215707,0.003451,-0.003999,0.249968,0,0);}
.m115_c01106{transform:matrix(0.216938,0.004990,-0.005748,0.249934,0,0);-ms-transform:matrix(0.216938,0.004990,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.216938,0.004990,-0.005748,0.249934,0,0);}
.m125_c01106{transform:matrix(0.217742,0.005008,-0.005748,0.249934,0,0);-ms-transform:matrix(0.217742,0.005008,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.217742,0.005008,-0.005748,0.249934,0,0);}
.m8a_c01106{transform:matrix(0.219867,0.003518,-0.003999,0.249968,0,0);-ms-transform:matrix(0.219867,0.003518,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.219867,0.003518,-0.003999,0.249968,0,0);}
.md6_c01106{transform:matrix(0.220227,0.003524,-0.003999,0.249968,0,0);-ms-transform:matrix(0.220227,0.003524,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.220227,0.003524,-0.003999,0.249968,0,0);}
.m129_c01106{transform:matrix(0.220242,0.005066,-0.005748,0.249934,0,0);-ms-transform:matrix(0.220242,0.005066,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.220242,0.005066,-0.005748,0.249934,0,0);}
.m65_c01106{transform:matrix(0.221284,0.002655,-0.003000,0.249982,0,0);-ms-transform:matrix(0.221284,0.002655,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.221284,0.002655,-0.003000,0.249982,0,0);}
.m2_c01106{transform:matrix(0.221466,0.004651,-0.005249,0.249945,0,0);-ms-transform:matrix(0.221466,0.004651,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.221466,0.004651,-0.005249,0.249945,0,0);}
.m3_c01106{transform:matrix(0.221621,0.004654,-0.005249,0.249945,0,0);-ms-transform:matrix(0.221621,0.004654,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.221621,0.004654,-0.005249,0.249945,0,0);}
.m96_c01106{transform:matrix(0.221672,0.003547,-0.003999,0.249968,0,0);-ms-transform:matrix(0.221672,0.003547,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.221672,0.003547,-0.003999,0.249968,0,0);}
.m79_c01106{transform:matrix(0.221712,0.003547,-0.003999,0.249968,0,0);-ms-transform:matrix(0.221712,0.003547,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.221712,0.003547,-0.003999,0.249968,0,0);}
.m135_c01106{transform:matrix(0.222406,0.005115,-0.005748,0.249934,0,0);-ms-transform:matrix(0.222406,0.005115,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.222406,0.005115,-0.005748,0.249934,0,0);}
.m8d_c01106{transform:matrix(0.222407,0.003559,-0.003999,0.249968,0,0);-ms-transform:matrix(0.222407,0.003559,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.222407,0.003559,-0.003999,0.249968,0,0);}
.m76_c01106{transform:matrix(0.222791,0.003565,-0.003999,0.249968,0,0);-ms-transform:matrix(0.222791,0.003565,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.222791,0.003565,-0.003999,0.249968,0,0);}
.m8b_c01106{transform:matrix(0.222946,0.003567,-0.003999,0.249968,0,0);-ms-transform:matrix(0.222946,0.003567,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.222946,0.003567,-0.003999,0.249968,0,0);}
.m7b_c01106{transform:matrix(0.223006,0.003568,-0.003999,0.249968,0,0);-ms-transform:matrix(0.223006,0.003568,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.223006,0.003568,-0.003999,0.249968,0,0);}
.mef_c01106{transform:matrix(0.223221,0.003572,-0.003999,0.249968,0,0);-ms-transform:matrix(0.223221,0.003572,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.223221,0.003572,-0.003999,0.249968,0,0);}
.m9f_c01106{transform:matrix(0.223241,0.003572,-0.003999,0.249968,0,0);-ms-transform:matrix(0.223241,0.003572,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.223241,0.003572,-0.003999,0.249968,0,0);}
.m11c_c01106{transform:matrix(0.223826,0.005148,-0.005748,0.249934,0,0);-ms-transform:matrix(0.223826,0.005148,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.223826,0.005148,-0.005748,0.249934,0,0);}
.m118_c01106{transform:matrix(0.224706,0.005168,-0.005748,0.249934,0,0);-ms-transform:matrix(0.224706,0.005168,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.224706,0.005168,-0.005748,0.249934,0,0);}
.m72_c01106{transform:matrix(0.224721,0.003596,-0.003999,0.249968,0,0);-ms-transform:matrix(0.224721,0.003596,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.224721,0.003596,-0.003999,0.249968,0,0);}
.m57_c01106{transform:matrix(0.224984,0.002700,-0.003000,0.249982,0,0);-ms-transform:matrix(0.224984,0.002700,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.224984,0.002700,-0.003000,0.249982,0,0);}
.m102_c01106{transform:matrix(0.225376,0.003606,-0.003999,0.249968,0,0);-ms-transform:matrix(0.225376,0.003606,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.225376,0.003606,-0.003999,0.249968,0,0);}
.mdb_c01106{transform:matrix(0.225496,0.003608,-0.003999,0.249968,0,0);-ms-transform:matrix(0.225496,0.003608,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.225496,0.003608,-0.003999,0.249968,0,0);}
.m98_c01106{transform:matrix(0.225756,0.003612,-0.003999,0.249968,0,0);-ms-transform:matrix(0.225756,0.003612,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.225756,0.003612,-0.003999,0.249968,0,0);}
.m66_c01106{transform:matrix(0.226214,0.002715,-0.003000,0.249982,0,0);-ms-transform:matrix(0.226214,0.002715,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.226214,0.002715,-0.003000,0.249982,0,0);}
.me_c01106{transform:matrix(0.226704,0.004307,-0.004749,0.249955,0,0);-ms-transform:matrix(0.226704,0.004307,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.226704,0.004307,-0.004749,0.249955,0,0);}
.m36_c01106{transform:matrix(0.226729,0.002721,-0.003000,0.249982,0,0);-ms-transform:matrix(0.226729,0.002721,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.226729,0.002721,-0.003000,0.249982,0,0);}
.mbe_c01106{transform:matrix(0.227401,0.003638,-0.003999,0.249968,0,0);-ms-transform:matrix(0.227401,0.003638,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.227401,0.003638,-0.003999,0.249968,0,0);}
.m58_c01106{transform:matrix(0.227414,0.002729,-0.003000,0.249982,0,0);-ms-transform:matrix(0.227414,0.002729,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.227414,0.002729,-0.003000,0.249982,0,0);}
.m8_c01106{transform:matrix(0.227860,0.004785,-0.005249,0.249945,0,0);-ms-transform:matrix(0.227860,0.004785,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.227860,0.004785,-0.005249,0.249945,0,0);}
.m67_c01106{transform:matrix(0.227884,0.002735,-0.003000,0.249982,0,0);-ms-transform:matrix(0.227884,0.002735,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.227884,0.002735,-0.003000,0.249982,0,0);}
.m2c_c01106{transform:matrix(0.228154,0.002738,-0.003000,0.249982,0,0);-ms-transform:matrix(0.228154,0.002738,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.228154,0.002738,-0.003000,0.249982,0,0);}
.m64_c01106{transform:matrix(0.228289,0.002739,-0.003000,0.249982,0,0);-ms-transform:matrix(0.228289,0.002739,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.228289,0.002739,-0.003000,0.249982,0,0);}
.m22_c01106{transform:matrix(0.228799,0.002746,-0.003000,0.249982,0,0);-ms-transform:matrix(0.228799,0.002746,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.228799,0.002746,-0.003000,0.249982,0,0);}
.m7e_c01106{transform:matrix(0.229256,0.003668,-0.003999,0.249968,0,0);-ms-transform:matrix(0.229256,0.003668,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.229256,0.003668,-0.003999,0.249968,0,0);}
.m68_c01106{transform:matrix(0.229708,0.002757,-0.003000,0.249982,0,0);-ms-transform:matrix(0.229708,0.002757,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.229708,0.002757,-0.003000,0.249982,0,0);}
.ma9_c01106{transform:matrix(0.230186,0.003683,-0.003999,0.249968,0,0);-ms-transform:matrix(0.230186,0.003683,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.230186,0.003683,-0.003999,0.249968,0,0);}
.me0_c01106{transform:matrix(0.230256,0.003684,-0.003999,0.249968,0,0);-ms-transform:matrix(0.230256,0.003684,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.230256,0.003684,-0.003999,0.249968,0,0);}
.m56_c01106{transform:matrix(0.230308,0.002764,-0.003000,0.249982,0,0);-ms-transform:matrix(0.230308,0.002764,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.230308,0.002764,-0.003000,0.249982,0,0);}
.mb8_c01106{transform:matrix(0.231595,0.003706,-0.003999,0.249968,0,0);-ms-transform:matrix(0.231595,0.003706,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.231595,0.003706,-0.003999,0.249968,0,0);}
.m5a_c01106{transform:matrix(0.231608,0.002779,-0.003000,0.249982,0,0);-ms-transform:matrix(0.231608,0.002779,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.231608,0.002779,-0.003000,0.249982,0,0);}
.mca_c01106{transform:matrix(0.231610,0.003706,-0.003999,0.249968,0,0);-ms-transform:matrix(0.231610,0.003706,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.231610,0.003706,-0.003999,0.249968,0,0);}
.mc8_c01106{transform:matrix(0.232255,0.003716,-0.003999,0.249968,0,0);-ms-transform:matrix(0.232255,0.003716,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.232255,0.003716,-0.003999,0.249968,0,0);}
.m130_c01106{transform:matrix(0.232264,0.005342,-0.005748,0.249934,0,0);-ms-transform:matrix(0.232264,0.005342,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.232264,0.005342,-0.005748,0.249934,0,0);}
.m90_c01106{transform:matrix(0.232945,0.003727,-0.003999,0.249968,0,0);-ms-transform:matrix(0.232945,0.003727,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.232945,0.003727,-0.003999,0.249968,0,0);}
.mb0_c01106{transform:matrix(0.232955,0.003727,-0.003999,0.249968,0,0);-ms-transform:matrix(0.232955,0.003727,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.232955,0.003727,-0.003999,0.249968,0,0);}
.m60_c01106{transform:matrix(0.232968,0.002796,-0.003000,0.249982,0,0);-ms-transform:matrix(0.232968,0.002796,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.232968,0.002796,-0.003000,0.249982,0,0);}
.m6_c01106{transform:matrix(0.234188,0.004918,-0.005249,0.249945,0,0);-ms-transform:matrix(0.234188,0.004918,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.234188,0.004918,-0.005249,0.249945,0,0);}
.m84_c01106{transform:matrix(0.234330,0.003749,-0.003999,0.249968,0,0);-ms-transform:matrix(0.234330,0.003749,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.234330,0.003749,-0.003999,0.249968,0,0);}
.m1_c01106{transform:matrix(0.234428,0.004923,-0.005249,0.249945,0,0);-ms-transform:matrix(0.234428,0.004923,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.234428,0.004923,-0.005249,0.249945,0,0);}
.m8e_c01106{transform:matrix(0.234785,0.003757,-0.003999,0.249968,0,0);-ms-transform:matrix(0.234785,0.003757,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.234785,0.003757,-0.003999,0.249968,0,0);}
.m12d_c01106{transform:matrix(0.235423,0.005415,-0.005748,0.249934,0,0);-ms-transform:matrix(0.235423,0.005415,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.235423,0.005415,-0.005748,0.249934,0,0);}
.m11b_c01106{transform:matrix(0.235503,0.005417,-0.005748,0.249934,0,0);-ms-transform:matrix(0.235503,0.005417,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.235503,0.005417,-0.005748,0.249934,0,0);}
.m105_c01106{transform:matrix(0.235712,0.004479,-0.004749,0.249955,0,0);-ms-transform:matrix(0.235712,0.004479,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.235712,0.004479,-0.004749,0.249955,0,0);}
.m5e_c01106{transform:matrix(0.235738,0.002829,-0.003000,0.249982,0,0);-ms-transform:matrix(0.235738,0.002829,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.235738,0.002829,-0.003000,0.249982,0,0);}
.m49_c01106{transform:matrix(0.235833,0.002830,-0.003000,0.249982,0,0);-ms-transform:matrix(0.235833,0.002830,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.235833,0.002830,-0.003000,0.249982,0,0);}
.m74_c01106{transform:matrix(0.236415,0.003783,-0.003999,0.249968,0,0);-ms-transform:matrix(0.236415,0.003783,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.236415,0.003783,-0.003999,0.249968,0,0);}
.m38_c01106{transform:matrix(0.236473,0.002838,-0.003000,0.249982,0,0);-ms-transform:matrix(0.236473,0.002838,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.236473,0.002838,-0.003000,0.249982,0,0);}
.m3a_c01106{transform:matrix(0.236548,0.002839,-0.003000,0.249982,0,0);-ms-transform:matrix(0.236548,0.002839,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.236548,0.002839,-0.003000,0.249982,0,0);}
.m78_c01106{transform:matrix(0.236765,0.003788,-0.003999,0.249968,0,0);-ms-transform:matrix(0.236765,0.003788,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.236765,0.003788,-0.003999,0.249968,0,0);}
.m6f_c01106{transform:matrix(0.237155,0.003794,-0.003999,0.249968,0,0);-ms-transform:matrix(0.237155,0.003794,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.237155,0.003794,-0.003999,0.249968,0,0);}
.m3d_c01106{transform:matrix(0.237183,0.002846,-0.003000,0.249982,0,0);-ms-transform:matrix(0.237183,0.002846,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.237183,0.002846,-0.003000,0.249982,0,0);}
.m21_c01106{transform:matrix(0.237303,0.002848,-0.003000,0.249982,0,0);-ms-transform:matrix(0.237303,0.002848,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.237303,0.002848,-0.003000,0.249982,0,0);}
.m7c_c01106{transform:matrix(0.237805,0.003805,-0.003999,0.249968,0,0);-ms-transform:matrix(0.237805,0.003805,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.237805,0.003805,-0.003999,0.249968,0,0);}
.m63_c01106{transform:matrix(0.237813,0.002854,-0.003000,0.249982,0,0);-ms-transform:matrix(0.237813,0.002854,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.237813,0.002854,-0.003000,0.249982,0,0);}
.me3_c01106{transform:matrix(0.237945,0.003807,-0.003999,0.249968,0,0);-ms-transform:matrix(0.237945,0.003807,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.237945,0.003807,-0.003999,0.249968,0,0);}
.mdf_c01106{transform:matrix(0.238020,0.003808,-0.003999,0.249968,0,0);-ms-transform:matrix(0.238020,0.003808,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.238020,0.003808,-0.003999,0.249968,0,0);}
.mc5_c01106{transform:matrix(0.238324,0.003813,-0.003999,0.249968,0,0);-ms-transform:matrix(0.238324,0.003813,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.238324,0.003813,-0.003999,0.249968,0,0);}
.mc1_c01106{transform:matrix(0.238574,0.003817,-0.003999,0.249968,0,0);-ms-transform:matrix(0.238574,0.003817,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.238574,0.003817,-0.003999,0.249968,0,0);}
.md5_c01106{transform:matrix(0.238579,0.003817,-0.003999,0.249968,0,0);-ms-transform:matrix(0.238579,0.003817,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.238579,0.003817,-0.003999,0.249968,0,0);}
.m12c_c01106{transform:matrix(0.238712,0.005490,-0.005748,0.249934,0,0);-ms-transform:matrix(0.238712,0.005490,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.238712,0.005490,-0.005748,0.249934,0,0);}
.m20_c01106{transform:matrix(0.239278,0.002871,-0.003000,0.249982,0,0);-ms-transform:matrix(0.239278,0.002871,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.239278,0.002871,-0.003000,0.249982,0,0);}
.mae_c01106{transform:matrix(0.239559,0.003833,-0.003999,0.249968,0,0);-ms-transform:matrix(0.239559,0.003833,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.239559,0.003833,-0.003999,0.249968,0,0);}
.mf3_c01106{transform:matrix(0.239619,0.003834,-0.003999,0.249968,0,0);-ms-transform:matrix(0.239619,0.003834,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.239619,0.003834,-0.003999,0.249968,0,0);}
.mfa_c01106{transform:matrix(0.240084,0.003841,-0.003999,0.249968,0,0);-ms-transform:matrix(0.240084,0.003841,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.240084,0.003841,-0.003999,0.249968,0,0);}
.m81_c01106{transform:matrix(0.240174,0.003843,-0.003999,0.249968,0,0);-ms-transform:matrix(0.240174,0.003843,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.240174,0.003843,-0.003999,0.249968,0,0);}
.m18_c01106{transform:matrix(0.240368,0.002884,-0.003000,0.249982,0,0);-ms-transform:matrix(0.240368,0.002884,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.240368,0.002884,-0.003000,0.249982,0,0);}
.m8f_c01106{transform:matrix(0.240404,0.003846,-0.003999,0.249968,0,0);-ms-transform:matrix(0.240404,0.003846,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.240404,0.003846,-0.003999,0.249968,0,0);}
.mbb_c01106{transform:matrix(0.240604,0.003850,-0.003999,0.249968,0,0);-ms-transform:matrix(0.240604,0.003850,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.240604,0.003850,-0.003999,0.249968,0,0);}
.m53_c01106{transform:matrix(0.240618,0.002887,-0.003000,0.249982,0,0);-ms-transform:matrix(0.240618,0.002887,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.240618,0.002887,-0.003000,0.249982,0,0);}
.m92_c01106{transform:matrix(0.240829,0.003853,-0.003999,0.249968,0,0);-ms-transform:matrix(0.240829,0.003853,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.240829,0.003853,-0.003999,0.249968,0,0);}
.m8c_c01106{transform:matrix(0.241159,0.003859,-0.003999,0.249968,0,0);-ms-transform:matrix(0.241159,0.003859,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.241159,0.003859,-0.003999,0.249968,0,0);}
.mfc_c01106{transform:matrix(0.241269,0.003860,-0.003999,0.249968,0,0);-ms-transform:matrix(0.241269,0.003860,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.241269,0.003860,-0.003999,0.249968,0,0);}
.m4f_c01106{transform:matrix(0.241283,0.002895,-0.003000,0.249982,0,0);-ms-transform:matrix(0.241283,0.002895,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.241283,0.002895,-0.003000,0.249982,0,0);}
.mc6_c01106{transform:matrix(0.241964,0.003871,-0.003999,0.249968,0,0);-ms-transform:matrix(0.241964,0.003871,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.241964,0.003871,-0.003999,0.249968,0,0);}
.m88_c01106{transform:matrix(0.242444,0.003879,-0.003999,0.249968,0,0);-ms-transform:matrix(0.242444,0.003879,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.242444,0.003879,-0.003999,0.249968,0,0);}
.m104_c01106{transform:matrix(0.242471,0.004607,-0.004749,0.249955,0,0);-ms-transform:matrix(0.242471,0.004607,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.242471,0.004607,-0.004749,0.249955,0,0);}
.mcf_c01106{transform:matrix(0.242724,0.003884,-0.003999,0.249968,0,0);-ms-transform:matrix(0.242724,0.003884,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.242724,0.003884,-0.003999,0.249968,0,0);}
.m4d_c01106{transform:matrix(0.242728,0.002913,-0.003000,0.249982,0,0);-ms-transform:matrix(0.242728,0.002913,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.242728,0.002913,-0.003000,0.249982,0,0);}
.m108_c01106{transform:matrix(0.243331,0.004623,-0.004749,0.249955,0,0);-ms-transform:matrix(0.243331,0.004623,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.243331,0.004623,-0.004749,0.249955,0,0);}
.mf6_c01106{transform:matrix(0.243344,0.003894,-0.003999,0.249968,0,0);-ms-transform:matrix(0.243344,0.003894,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.243344,0.003894,-0.003999,0.249968,0,0);}
.ma8_c01106{transform:matrix(0.243699,0.003899,-0.003999,0.249968,0,0);-ms-transform:matrix(0.243699,0.003899,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.243699,0.003899,-0.003999,0.249968,0,0);}
.m26_c01106{transform:matrix(0.244077,0.002929,-0.003000,0.249982,0,0);-ms-transform:matrix(0.244077,0.002929,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.244077,0.002929,-0.003000,0.249982,0,0);}
.m42_c01106{transform:matrix(0.244237,0.002931,-0.003000,0.249982,0,0);-ms-transform:matrix(0.244237,0.002931,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.244237,0.002931,-0.003000,0.249982,0,0);}
.m10f_c01106{transform:matrix(0.244285,0.005619,-0.005748,0.249934,0,0);-ms-transform:matrix(0.244285,0.005619,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.244285,0.005619,-0.005748,0.249934,0,0);}
.ma3_c01106{transform:matrix(0.244839,0.003917,-0.003999,0.249968,0,0);-ms-transform:matrix(0.244839,0.003917,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.244839,0.003917,-0.003999,0.249968,0,0);}
.mb5_c01106{transform:matrix(0.245359,0.003926,-0.003999,0.249968,0,0);-ms-transform:matrix(0.245359,0.003926,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.245359,0.003926,-0.003999,0.249968,0,0);}
.m41_c01106{transform:matrix(0.245952,0.002951,-0.003000,0.249982,0,0);-ms-transform:matrix(0.245952,0.002951,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.245952,0.002951,-0.003000,0.249982,0,0);}
.m6b_c01106{transform:matrix(0.246228,0.003940,-0.003999,0.249968,0,0);-ms-transform:matrix(0.246228,0.003940,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.246228,0.003940,-0.003999,0.249968,0,0);}
.m73_c01106{transform:matrix(0.246468,0.003943,-0.003999,0.249968,0,0);-ms-transform:matrix(0.246468,0.003943,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.246468,0.003943,-0.003999,0.249968,0,0);}
.m19_c01106{transform:matrix(0.246602,0.002959,-0.003000,0.249982,0,0);-ms-transform:matrix(0.246602,0.002959,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.246602,0.002959,-0.003000,0.249982,0,0);}
.md8_c01106{transform:matrix(0.246778,0.003948,-0.003999,0.249968,0,0);-ms-transform:matrix(0.246778,0.003948,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.246778,0.003948,-0.003999,0.249968,0,0);}
.m6c_c01106{transform:matrix(0.246873,0.003950,-0.003999,0.249968,0,0);-ms-transform:matrix(0.246873,0.003950,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.246873,0.003950,-0.003999,0.249968,0,0);}
.me2_c01106{transform:matrix(0.247123,0.003954,-0.003999,0.249968,0,0);-ms-transform:matrix(0.247123,0.003954,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.247123,0.003954,-0.003999,0.249968,0,0);}
.m25_c01106{transform:matrix(0.247137,0.002966,-0.003000,0.249982,0,0);-ms-transform:matrix(0.247137,0.002966,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.247137,0.002966,-0.003000,0.249982,0,0);}
.m107_c01106{transform:matrix(0.247170,0.004696,-0.004749,0.249955,0,0);-ms-transform:matrix(0.247170,0.004696,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.247170,0.004696,-0.004749,0.249955,0,0);}
.m6a_c01106{transform:matrix(0.247783,0.003965,-0.003999,0.249968,0,0);-ms-transform:matrix(0.247783,0.003965,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.247783,0.003965,-0.003999,0.249968,0,0);}
.m1f_c01106{transform:matrix(0.248062,0.002977,-0.003000,0.249982,0,0);-ms-transform:matrix(0.248062,0.002977,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.248062,0.002977,-0.003000,0.249982,0,0);}
.m6e_c01106{transform:matrix(0.248103,0.003970,-0.003999,0.249968,0,0);-ms-transform:matrix(0.248103,0.003970,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.248103,0.003970,-0.003999,0.249968,0,0);}
.mda_c01106{transform:matrix(0.248328,0.003973,-0.003999,0.249968,0,0);-ms-transform:matrix(0.248328,0.003973,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.248328,0.003973,-0.003999,0.249968,0,0);}
.m2b_c01106{transform:matrix(0.249022,0.002988,-0.003000,0.249982,0,0);-ms-transform:matrix(0.249022,0.002988,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.249022,0.002988,-0.003000,0.249982,0,0);}
.mc3_c01106{transform:matrix(0.249183,0.003987,-0.003999,0.249968,0,0);-ms-transform:matrix(0.249183,0.003987,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.249183,0.003987,-0.003999,0.249968,0,0);}
.mfb_c01106{transform:matrix(0.249278,0.003988,-0.003999,0.249968,0,0);-ms-transform:matrix(0.249278,0.003988,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.249278,0.003988,-0.003999,0.249968,0,0);}
.mf9_c01106{transform:matrix(0.249633,0.003994,-0.003999,0.249968,0,0);-ms-transform:matrix(0.249633,0.003994,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.249633,0.003994,-0.003999,0.249968,0,0);}
.m52_c01106{transform:matrix(0.249997,0.003000,-0.003000,0.249982,0,0);-ms-transform:matrix(0.249997,0.003000,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.249997,0.003000,-0.003000,0.249982,0,0);}
.md3_c01106{transform:matrix(0.250123,0.004002,-0.003999,0.249968,0,0);-ms-transform:matrix(0.250123,0.004002,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.250123,0.004002,-0.003999,0.249968,0,0);}
.m5c_c01106{transform:matrix(0.250902,0.003011,-0.003000,0.249982,0,0);-ms-transform:matrix(0.250902,0.003011,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.250902,0.003011,-0.003000,0.249982,0,0);}
.mde_c01106{transform:matrix(0.251093,0.004017,-0.003999,0.249968,0,0);-ms-transform:matrix(0.251093,0.004017,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.251093,0.004017,-0.003999,0.249968,0,0);}
.m6d_c01106{transform:matrix(0.251288,0.004021,-0.003999,0.249968,0,0);-ms-transform:matrix(0.251288,0.004021,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.251288,0.004021,-0.003999,0.249968,0,0);}
.mf5_c01106{transform:matrix(0.251863,0.004030,-0.003999,0.249968,0,0);-ms-transform:matrix(0.251863,0.004030,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.251863,0.004030,-0.003999,0.249968,0,0);}
.m46_c01106{transform:matrix(0.252252,0.003027,-0.003000,0.249982,0,0);-ms-transform:matrix(0.252252,0.003027,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.252252,0.003027,-0.003000,0.249982,0,0);}
.m51_c01106{transform:matrix(0.252412,0.003029,-0.003000,0.249982,0,0);-ms-transform:matrix(0.252412,0.003029,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.252412,0.003029,-0.003000,0.249982,0,0);}
.m35_c01106{transform:matrix(0.254042,0.003049,-0.003000,0.249982,0,0);-ms-transform:matrix(0.254042,0.003049,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.254042,0.003049,-0.003000,0.249982,0,0);}
.ma4_c01106{transform:matrix(0.254242,0.004068,-0.003999,0.249968,0,0);-ms-transform:matrix(0.254242,0.004068,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.254242,0.004068,-0.003999,0.249968,0,0);}
.mc9_c01106{transform:matrix(0.254562,0.004073,-0.003999,0.249968,0,0);-ms-transform:matrix(0.254562,0.004073,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.254562,0.004073,-0.003999,0.249968,0,0);}
.m24_c01106{transform:matrix(0.255012,0.003060,-0.003000,0.249982,0,0);-ms-transform:matrix(0.255012,0.003060,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.255012,0.003060,-0.003000,0.249982,0,0);}
.mab_c01106{transform:matrix(0.255277,0.004084,-0.003999,0.249968,0,0);-ms-transform:matrix(0.255277,0.004084,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.255277,0.004084,-0.003999,0.249968,0,0);}
.m17_c01106{transform:matrix(0.255672,0.003068,-0.003000,0.249982,0,0);-ms-transform:matrix(0.255672,0.003068,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.255672,0.003068,-0.003000,0.249982,0,0);}
.m5b_c01106{transform:matrix(0.255687,0.003068,-0.003000,0.249982,0,0);-ms-transform:matrix(0.255687,0.003068,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.255687,0.003068,-0.003000,0.249982,0,0);}
.m59_c01106{transform:matrix(0.256157,0.003074,-0.003000,0.249982,0,0);-ms-transform:matrix(0.256157,0.003074,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.256157,0.003074,-0.003000,0.249982,0,0);}
.m37_c01106{transform:matrix(0.256622,0.003079,-0.003000,0.249982,0,0);-ms-transform:matrix(0.256622,0.003079,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.256622,0.003079,-0.003000,0.249982,0,0);}
.md1_c01106{transform:matrix(0.256642,0.004106,-0.003999,0.249968,0,0);-ms-transform:matrix(0.256642,0.004106,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.256642,0.004106,-0.003999,0.249968,0,0);}
.mb1_c01106{transform:matrix(0.257077,0.004113,-0.003999,0.249968,0,0);-ms-transform:matrix(0.257077,0.004113,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.257077,0.004113,-0.003999,0.249968,0,0);}
.mdc_c01106{transform:matrix(0.257217,0.004115,-0.003999,0.249968,0,0);-ms-transform:matrix(0.257217,0.004115,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.257217,0.004115,-0.003999,0.249968,0,0);}
.me1_c01106{transform:matrix(0.257457,0.004119,-0.003999,0.249968,0,0);-ms-transform:matrix(0.257457,0.004119,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.257457,0.004119,-0.003999,0.249968,0,0);}
.m4b_c01106{transform:matrix(0.257566,0.003091,-0.003000,0.249982,0,0);-ms-transform:matrix(0.257566,0.003091,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.257566,0.003091,-0.003000,0.249982,0,0);}
.mb4_c01106{transform:matrix(0.258022,0.004128,-0.003999,0.249968,0,0);-ms-transform:matrix(0.258022,0.004128,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.258022,0.004128,-0.003999,0.249968,0,0);}
.m82_c01106{transform:matrix(0.258492,0.004136,-0.003999,0.249968,0,0);-ms-transform:matrix(0.258492,0.004136,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.258492,0.004136,-0.003999,0.249968,0,0);}
.mf2_c01106{transform:matrix(0.258582,0.004137,-0.003999,0.249968,0,0);-ms-transform:matrix(0.258582,0.004137,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.258582,0.004137,-0.003999,0.249968,0,0);}
.m3c_c01106{transform:matrix(0.259191,0.003110,-0.003000,0.249982,0,0);-ms-transform:matrix(0.259191,0.003110,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.259191,0.003110,-0.003000,0.249982,0,0);}
.m54_c01106{transform:matrix(0.259501,0.003114,-0.003000,0.249982,0,0);-ms-transform:matrix(0.259501,0.003114,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.259501,0.003114,-0.003000,0.249982,0,0);}
.ma1_c01106{transform:matrix(0.259912,0.004159,-0.003999,0.249968,0,0);-ms-transform:matrix(0.259912,0.004159,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.259912,0.004159,-0.003999,0.249968,0,0);}
.m119_c01106{transform:matrix(0.260101,0.005982,-0.005748,0.249934,0,0);-ms-transform:matrix(0.260101,0.005982,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.260101,0.005982,-0.005748,0.249934,0,0);}
.m4e_c01106{transform:matrix(0.260186,0.003122,-0.003000,0.249982,0,0);-ms-transform:matrix(0.260186,0.003122,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.260186,0.003122,-0.003000,0.249982,0,0);}
.m47_c01106{transform:matrix(0.260246,0.003123,-0.003000,0.249982,0,0);-ms-transform:matrix(0.260246,0.003123,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.260246,0.003123,-0.003000,0.249982,0,0);}
.m61_c01106{transform:matrix(0.260711,0.003129,-0.003000,0.249982,0,0);-ms-transform:matrix(0.260711,0.003129,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.260711,0.003129,-0.003000,0.249982,0,0);}
.me7_c01106{transform:matrix(0.260857,0.004174,-0.003999,0.249968,0,0);-ms-transform:matrix(0.260857,0.004174,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.260857,0.004174,-0.003999,0.249968,0,0);}
.me8_c01106{transform:matrix(0.261097,0.004178,-0.003999,0.249968,0,0);-ms-transform:matrix(0.261097,0.004178,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.261097,0.004178,-0.003999,0.249968,0,0);}
.m124_c01106{transform:matrix(0.261636,0.006018,-0.005748,0.249934,0,0);-ms-transform:matrix(0.261636,0.006018,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.261636,0.006018,-0.005748,0.249934,0,0);}
.m34_c01106{transform:matrix(0.261796,0.003142,-0.003000,0.249982,0,0);-ms-transform:matrix(0.261796,0.003142,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.261796,0.003142,-0.003000,0.249982,0,0);}
.m106_c01106{transform:matrix(0.261798,0.004974,-0.004749,0.249955,0,0);-ms-transform:matrix(0.261798,0.004974,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.261798,0.004974,-0.004749,0.249955,0,0);}
.mce_c01106{transform:matrix(0.261886,0.004190,-0.003999,0.249968,0,0);-ms-transform:matrix(0.261886,0.004190,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.261886,0.004190,-0.003999,0.249968,0,0);}
.m4c_c01106{transform:matrix(0.262091,0.003145,-0.003000,0.249982,0,0);-ms-transform:matrix(0.262091,0.003145,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.262091,0.003145,-0.003000,0.249982,0,0);}
.mba_c01106{transform:matrix(0.262176,0.004195,-0.003999,0.249968,0,0);-ms-transform:matrix(0.262176,0.004195,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.262176,0.004195,-0.003999,0.249968,0,0);}
.m70_c01106{transform:matrix(0.262221,0.004196,-0.003999,0.249968,0,0);-ms-transform:matrix(0.262221,0.004196,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.262221,0.004196,-0.003999,0.249968,0,0);}
.m23_c01106{transform:matrix(0.262831,0.003154,-0.003000,0.249982,0,0);-ms-transform:matrix(0.262831,0.003154,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.262831,0.003154,-0.003000,0.249982,0,0);}
.mc7_c01106{transform:matrix(0.263116,0.004210,-0.003999,0.249968,0,0);-ms-transform:matrix(0.263116,0.004210,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.263116,0.004210,-0.003999,0.249968,0,0);}
.m48_c01106{transform:matrix(0.263161,0.003158,-0.003000,0.249982,0,0);-ms-transform:matrix(0.263161,0.003158,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.263161,0.003158,-0.003000,0.249982,0,0);}
.me4_c01106{transform:matrix(0.263196,0.004211,-0.003999,0.249968,0,0);-ms-transform:matrix(0.263196,0.004211,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.263196,0.004211,-0.003999,0.249968,0,0);}
.mbf_c01106{transform:matrix(0.263966,0.004223,-0.003999,0.249968,0,0);-ms-transform:matrix(0.263966,0.004223,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.263966,0.004223,-0.003999,0.249968,0,0);}
.m5f_c01106{transform:matrix(0.264136,0.003170,-0.003000,0.249982,0,0);-ms-transform:matrix(0.264136,0.003170,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.264136,0.003170,-0.003000,0.249982,0,0);}
.mb2_c01106{transform:matrix(0.264401,0.004230,-0.003999,0.249968,0,0);-ms-transform:matrix(0.264401,0.004230,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.264401,0.004230,-0.003999,0.249968,0,0);}
.m2d_c01106{transform:matrix(0.264471,0.003174,-0.003000,0.249982,0,0);-ms-transform:matrix(0.264471,0.003174,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.264471,0.003174,-0.003000,0.249982,0,0);}
.mf_c01106{transform:matrix(0.264652,0.005028,-0.004749,0.249955,0,0);-ms-transform:matrix(0.264652,0.005028,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.264652,0.005028,-0.004749,0.249955,0,0);}
.m101_c01106{transform:matrix(0.264656,0.004234,-0.003999,0.249968,0,0);-ms-transform:matrix(0.264656,0.004234,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.264656,0.004234,-0.003999,0.249968,0,0);}
.m3b_c01106{transform:matrix(0.265301,0.003184,-0.003000,0.249982,0,0);-ms-transform:matrix(0.265301,0.003184,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.265301,0.003184,-0.003000,0.249982,0,0);}
.maf_c01106{transform:matrix(0.265396,0.004246,-0.003999,0.249968,0,0);-ms-transform:matrix(0.265396,0.004246,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.265396,0.004246,-0.003999,0.249968,0,0);}
.m39_c01106{transform:matrix(0.265411,0.003185,-0.003000,0.249982,0,0);-ms-transform:matrix(0.265411,0.003185,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.265411,0.003185,-0.003000,0.249982,0,0);}
.mbd_c01106{transform:matrix(0.265806,0.004253,-0.003999,0.249968,0,0);-ms-transform:matrix(0.265806,0.004253,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.265806,0.004253,-0.003999,0.249968,0,0);}
.maa_c01106{transform:matrix(0.265891,0.004254,-0.003999,0.249968,0,0);-ms-transform:matrix(0.265891,0.004254,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.265891,0.004254,-0.003999,0.249968,0,0);}
.mf1_c01106{transform:matrix(0.266011,0.004256,-0.003999,0.249968,0,0);-ms-transform:matrix(0.266011,0.004256,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.266011,0.004256,-0.003999,0.249968,0,0);}
.m33_c01106{transform:matrix(0.266171,0.003194,-0.003000,0.249982,0,0);-ms-transform:matrix(0.266171,0.003194,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.266171,0.003194,-0.003000,0.249982,0,0);}
.m75_c01106{transform:matrix(0.266381,0.004262,-0.003999,0.249968,0,0);-ms-transform:matrix(0.266381,0.004262,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.266381,0.004262,-0.003999,0.249968,0,0);}
.m29_c01106{transform:matrix(0.266771,0.003201,-0.003000,0.249982,0,0);-ms-transform:matrix(0.266771,0.003201,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.266771,0.003201,-0.003000,0.249982,0,0);}
.mb9_c01106{transform:matrix(0.266811,0.004269,-0.003999,0.249968,0,0);-ms-transform:matrix(0.266811,0.004269,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.266811,0.004269,-0.003999,0.249968,0,0);}
.m43_c01106{transform:matrix(0.267076,0.003205,-0.003000,0.249982,0,0);-ms-transform:matrix(0.267076,0.003205,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.267076,0.003205,-0.003000,0.249982,0,0);}
.m10c_c01106{transform:matrix(0.267252,0.005078,-0.004749,0.249955,0,0);-ms-transform:matrix(0.267252,0.005078,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.267252,0.005078,-0.004749,0.249955,0,0);}
.m31_c01106{transform:matrix(0.267696,0.003212,-0.003000,0.249982,0,0);-ms-transform:matrix(0.267696,0.003212,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.267696,0.003212,-0.003000,0.249982,0,0);}
.m30_c01106{transform:matrix(0.267711,0.003213,-0.003000,0.249982,0,0);-ms-transform:matrix(0.267711,0.003213,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.267711,0.003213,-0.003000,0.249982,0,0);}
.mea_c01106{transform:matrix(0.268981,0.004304,-0.003999,0.249968,0,0);-ms-transform:matrix(0.268981,0.004304,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.268981,0.004304,-0.003999,0.249968,0,0);}
.m2f_c01106{transform:matrix(0.268996,0.003228,-0.003000,0.249982,0,0);-ms-transform:matrix(0.268996,0.003228,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.268996,0.003228,-0.003000,0.249982,0,0);}
.ma6_c01106{transform:matrix(0.269191,0.004307,-0.003999,0.249968,0,0);-ms-transform:matrix(0.269191,0.004307,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.269191,0.004307,-0.003999,0.249968,0,0);}
.m4a_c01106{transform:matrix(0.269196,0.003230,-0.003000,0.249982,0,0);-ms-transform:matrix(0.269196,0.003230,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.269196,0.003230,-0.003000,0.249982,0,0);}
.med_c01106{transform:matrix(0.269585,0.004313,-0.003999,0.249968,0,0);-ms-transform:matrix(0.269585,0.004313,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.269585,0.004313,-0.003999,0.249968,0,0);}
.mad_c01106{transform:matrix(0.269605,0.004314,-0.003999,0.249968,0,0);-ms-transform:matrix(0.269605,0.004314,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.269605,0.004314,-0.003999,0.249968,0,0);}
.m10d_c01106{transform:matrix(0.269671,0.005124,-0.004749,0.249955,0,0);-ms-transform:matrix(0.269671,0.005124,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.269671,0.005124,-0.004749,0.249955,0,0);}
.ma0_c01106{transform:matrix(0.269865,0.004318,-0.003999,0.249968,0,0);-ms-transform:matrix(0.269865,0.004318,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.269865,0.004318,-0.003999,0.249968,0,0);}
.md9_c01106{transform:matrix(0.270220,0.004324,-0.003999,0.249968,0,0);-ms-transform:matrix(0.270220,0.004324,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.270220,0.004324,-0.003999,0.249968,0,0);}
.ma7_c01106{transform:matrix(0.270395,0.004326,-0.003999,0.249968,0,0);-ms-transform:matrix(0.270395,0.004326,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.270395,0.004326,-0.003999,0.249968,0,0);}
.mcc_c01106{transform:matrix(0.270605,0.004330,-0.003999,0.249968,0,0);-ms-transform:matrix(0.270605,0.004330,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.270605,0.004330,-0.003999,0.249968,0,0);}
.m2e_c01106{transform:matrix(0.271250,0.003255,-0.003000,0.249982,0,0);-ms-transform:matrix(0.271250,0.003255,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.271250,0.003255,-0.003000,0.249982,0,0);}
.mcb_c01106{transform:matrix(0.271325,0.004341,-0.003999,0.249968,0,0);-ms-transform:matrix(0.271325,0.004341,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.271325,0.004341,-0.003999,0.249968,0,0);}
.m50_c01106{transform:matrix(0.271950,0.003263,-0.003000,0.249982,0,0);-ms-transform:matrix(0.271950,0.003263,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.271950,0.003263,-0.003000,0.249982,0,0);}
.m5d_c01106{transform:matrix(0.272130,0.003266,-0.003000,0.249982,0,0);-ms-transform:matrix(0.272130,0.003266,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.272130,0.003266,-0.003000,0.249982,0,0);}
.m11e_c01106{transform:matrix(0.272183,0.006260,-0.005748,0.249934,0,0);-ms-transform:matrix(0.272183,0.006260,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.272183,0.006260,-0.005748,0.249934,0,0);}
.mac_c01106{transform:matrix(0.272390,0.004358,-0.003999,0.249968,0,0);-ms-transform:matrix(0.272390,0.004358,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.272390,0.004358,-0.003999,0.249968,0,0);}
.m9e_c01106{transform:matrix(0.272470,0.004360,-0.003999,0.249968,0,0);-ms-transform:matrix(0.272470,0.004360,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.272470,0.004360,-0.003999,0.249968,0,0);}
.mc0_c01106{transform:matrix(0.272590,0.004361,-0.003999,0.249968,0,0);-ms-transform:matrix(0.272590,0.004361,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.272590,0.004361,-0.003999,0.249968,0,0);}
.m85_c01106{transform:matrix(0.272660,0.004363,-0.003999,0.249968,0,0);-ms-transform:matrix(0.272660,0.004363,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.272660,0.004363,-0.003999,0.249968,0,0);}
.m15_c01106{transform:matrix(0.272955,0.003275,-0.003000,0.249982,0,0);-ms-transform:matrix(0.272955,0.003275,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.272955,0.003275,-0.003000,0.249982,0,0);}
.m10b_c01106{transform:matrix(0.273101,0.005189,-0.004749,0.249955,0,0);-ms-transform:matrix(0.273101,0.005189,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.273101,0.005189,-0.004749,0.249955,0,0);}
.m12b_c01106{transform:matrix(0.273308,0.006286,-0.005748,0.249934,0,0);-ms-transform:matrix(0.273308,0.006286,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.273308,0.006286,-0.005748,0.249934,0,0);}
.me5_c01106{transform:matrix(0.273690,0.004379,-0.003999,0.249968,0,0);-ms-transform:matrix(0.273690,0.004379,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.273690,0.004379,-0.003999,0.249968,0,0);}
.mdd_c01106{transform:matrix(0.273725,0.004380,-0.003999,0.249968,0,0);-ms-transform:matrix(0.273725,0.004380,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.273725,0.004380,-0.003999,0.249968,0,0);}
.mee_c01106{transform:matrix(0.274285,0.004389,-0.003999,0.249968,0,0);-ms-transform:matrix(0.274285,0.004389,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.274285,0.004389,-0.003999,0.249968,0,0);}
.m16_c01106{transform:matrix(0.274455,0.003293,-0.003000,0.249982,0,0);-ms-transform:matrix(0.274455,0.003293,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.274455,0.003293,-0.003000,0.249982,0,0);}
.ma5_c01106{transform:matrix(0.274655,0.004394,-0.003999,0.249968,0,0);-ms-transform:matrix(0.274655,0.004394,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.274655,0.004394,-0.003999,0.249968,0,0);}
.m28_c01106{transform:matrix(0.274735,0.003297,-0.003000,0.249982,0,0);-ms-transform:matrix(0.274735,0.003297,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.274735,0.003297,-0.003000,0.249982,0,0);}
.m71_c01106{transform:matrix(0.275145,0.004402,-0.003999,0.249968,0,0);-ms-transform:matrix(0.275145,0.004402,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.275145,0.004402,-0.003999,0.249968,0,0);}
.m86_c01106{transform:matrix(0.275200,0.004403,-0.003999,0.249968,0,0);-ms-transform:matrix(0.275200,0.004403,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.275200,0.004403,-0.003999,0.249968,0,0);}
.mb7_c01106{transform:matrix(0.275435,0.004407,-0.003999,0.249968,0,0);-ms-transform:matrix(0.275435,0.004407,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.275435,0.004407,-0.003999,0.249968,0,0);}
.m1c_c01106{transform:matrix(0.275845,0.003310,-0.003000,0.249982,0,0);-ms-transform:matrix(0.275845,0.003310,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.275845,0.003310,-0.003000,0.249982,0,0);}
.mf0_c01106{transform:matrix(0.275885,0.004414,-0.003999,0.249968,0,0);-ms-transform:matrix(0.275885,0.004414,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.275885,0.004414,-0.003999,0.249968,0,0);}
.mfd_c01106{transform:matrix(0.276520,0.004424,-0.003999,0.249968,0,0);-ms-transform:matrix(0.276520,0.004424,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.276520,0.004424,-0.003999,0.249968,0,0);}
.m44_c01106{transform:matrix(0.276710,0.003321,-0.003000,0.249982,0,0);-ms-transform:matrix(0.276710,0.003321,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.276710,0.003321,-0.003000,0.249982,0,0);}
.md7_c01106{transform:matrix(0.276770,0.004428,-0.003999,0.249968,0,0);-ms-transform:matrix(0.276770,0.004428,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.276770,0.004428,-0.003999,0.249968,0,0);}
.m10e_c01106{transform:matrix(0.277025,0.005263,-0.004749,0.249955,0,0);-ms-transform:matrix(0.277025,0.005263,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.277025,0.005263,-0.004749,0.249955,0,0);}
.m3f_c01106{transform:matrix(0.277130,0.003326,-0.003000,0.249982,0,0);-ms-transform:matrix(0.277130,0.003326,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.277130,0.003326,-0.003000,0.249982,0,0);}
.mb3_c01106{transform:matrix(0.277564,0.004441,-0.003999,0.249968,0,0);-ms-transform:matrix(0.277564,0.004441,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.277564,0.004441,-0.003999,0.249968,0,0);}
.me6_c01106{transform:matrix(0.277634,0.004442,-0.003999,0.249968,0,0);-ms-transform:matrix(0.277634,0.004442,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.277634,0.004442,-0.003999,0.249968,0,0);}
.m3e_c01106{transform:matrix(0.277950,0.003335,-0.003000,0.249982,0,0);-ms-transform:matrix(0.277950,0.003335,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.277950,0.003335,-0.003000,0.249982,0,0);}
.m27_c01106{transform:matrix(0.278085,0.003337,-0.003000,0.249982,0,0);-ms-transform:matrix(0.278085,0.003337,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.278085,0.003337,-0.003000,0.249982,0,0);}
.m55_c01106{transform:matrix(0.278255,0.003339,-0.003000,0.249982,0,0);-ms-transform:matrix(0.278255,0.003339,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.278255,0.003339,-0.003000,0.249982,0,0);}
.mc2_c01106{transform:matrix(0.278629,0.004458,-0.003999,0.249968,0,0);-ms-transform:matrix(0.278629,0.004458,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.278629,0.004458,-0.003999,0.249968,0,0);}
.me9_c01106{transform:matrix(0.279449,0.004471,-0.003999,0.249968,0,0);-ms-transform:matrix(0.279449,0.004471,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.279449,0.004471,-0.003999,0.249968,0,0);}
.m62_c01106{transform:matrix(0.279505,0.003354,-0.003000,0.249982,0,0);-ms-transform:matrix(0.279505,0.003354,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.279505,0.003354,-0.003000,0.249982,0,0);}
.md2_c01106{transform:matrix(0.279979,0.004480,-0.003999,0.249968,0,0);-ms-transform:matrix(0.279979,0.004480,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.279979,0.004480,-0.003999,0.249968,0,0);}
.mec_c01106{transform:matrix(0.280014,0.004480,-0.003999,0.249968,0,0);-ms-transform:matrix(0.280014,0.004480,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.280014,0.004480,-0.003999,0.249968,0,0);}
.mf7_c01106{transform:matrix(0.280964,0.004495,-0.003999,0.249968,0,0);-ms-transform:matrix(0.280964,0.004495,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.280964,0.004495,-0.003999,0.249968,0,0);}
.md_c01106{transform:matrix(0.281074,0.005340,-0.004749,0.249955,0,0);-ms-transform:matrix(0.281074,0.005340,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.281074,0.005340,-0.004749,0.249955,0,0);}
.m83_c01106{transform:matrix(0.281254,0.004500,-0.003999,0.249968,0,0);-ms-transform:matrix(0.281254,0.004500,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.281254,0.004500,-0.003999,0.249968,0,0);}
.ma2_c01106{transform:matrix(0.282164,0.004515,-0.003999,0.249968,0,0);-ms-transform:matrix(0.282164,0.004515,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.282164,0.004515,-0.003999,0.249968,0,0);}
.mf4_c01106{transform:matrix(0.282334,0.004517,-0.003999,0.249968,0,0);-ms-transform:matrix(0.282334,0.004517,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.282334,0.004517,-0.003999,0.249968,0,0);}
.m14_c01106{transform:matrix(0.282580,0.003391,-0.003000,0.249982,0,0);-ms-transform:matrix(0.282580,0.003391,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.282580,0.003391,-0.003000,0.249982,0,0);}
.m89_c01106{transform:matrix(0.282814,0.004525,-0.003999,0.249968,0,0);-ms-transform:matrix(0.282814,0.004525,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.282814,0.004525,-0.003999,0.249968,0,0);}
.m11_c01106{transform:matrix(0.282879,0.005375,-0.004749,0.249955,0,0);-ms-transform:matrix(0.282879,0.005375,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.282879,0.005375,-0.004749,0.249955,0,0);}
.m100_c01106{transform:matrix(0.283074,0.004529,-0.003999,0.249968,0,0);-ms-transform:matrix(0.283074,0.004529,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.283074,0.004529,-0.003999,0.249968,0,0);}
.m87_c01106{transform:matrix(0.283944,0.004543,-0.003999,0.249968,0,0);-ms-transform:matrix(0.283944,0.004543,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.283944,0.004543,-0.003999,0.249968,0,0);}
.mb6_c01106{transform:matrix(0.285368,0.004566,-0.003999,0.249968,0,0);-ms-transform:matrix(0.285368,0.004566,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.285368,0.004566,-0.003999,0.249968,0,0);}
.mc4_c01106{transform:matrix(0.286018,0.004576,-0.003999,0.249968,0,0);-ms-transform:matrix(0.286018,0.004576,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.286018,0.004576,-0.003999,0.249968,0,0);}
.m1d_c01106{transform:matrix(0.286724,0.003441,-0.003000,0.249982,0,0);-ms-transform:matrix(0.286724,0.003441,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.286724,0.003441,-0.003000,0.249982,0,0);}
.mcd_c01106{transform:matrix(0.287073,0.004593,-0.003999,0.249968,0,0);-ms-transform:matrix(0.287073,0.004593,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.287073,0.004593,-0.003999,0.249968,0,0);}
.m45_c01106{transform:matrix(0.289979,0.003480,-0.003000,0.249982,0,0);-ms-transform:matrix(0.289979,0.003480,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.289979,0.003480,-0.003000,0.249982,0,0);}
.m122_c01106{transform:matrix(0.290043,0.006671,-0.005748,0.249934,0,0);-ms-transform:matrix(0.290043,0.006671,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.290043,0.006671,-0.005748,0.249934,0,0);}
.m1e_c01106{transform:matrix(0.290694,0.003488,-0.003000,0.249982,0,0);-ms-transform:matrix(0.290694,0.003488,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.290694,0.003488,-0.003000,0.249982,0,0);}
.m1a_c01106{transform:matrix(0.292534,0.003510,-0.003000,0.249982,0,0);-ms-transform:matrix(0.292534,0.003510,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.292534,0.003510,-0.003000,0.249982,0,0);}
.m11f_c01106{transform:matrix(0.294257,0.006768,-0.005748,0.249934,0,0);-ms-transform:matrix(0.294257,0.006768,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.294257,0.006768,-0.005748,0.249934,0,0);}
.m111_c01106{transform:matrix(0.295197,0.006790,-0.005748,0.249934,0,0);-ms-transform:matrix(0.295197,0.006790,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.295197,0.006790,-0.005748,0.249934,0,0);}
.m93_c01106{transform:matrix(0.297937,0.004767,-0.003999,0.249968,0,0);-ms-transform:matrix(0.297937,0.004767,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.297937,0.004767,-0.003999,0.249968,0,0);}
.m10a_c01106{transform:matrix(0.297961,0.005661,-0.004749,0.249955,0,0);-ms-transform:matrix(0.297961,0.005661,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.297961,0.005661,-0.004749,0.249955,0,0);}
.m13b_c01106{transform:matrix(0.298619,0.006271,-0.005249,0.249945,0,0);-ms-transform:matrix(0.298619,0.006271,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.298619,0.006271,-0.005249,0.249945,0,0);}
.m127_c01106{transform:matrix(0.299791,0.006895,-0.005748,0.249934,0,0);-ms-transform:matrix(0.299791,0.006895,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.299791,0.006895,-0.005748,0.249934,0,0);}
.m13f_c01106{transform:matrix(0.301039,0.006322,-0.005249,0.249945,0,0);-ms-transform:matrix(0.301039,0.006322,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.301039,0.006322,-0.005249,0.249945,0,0);}
.m1b_c01106{transform:matrix(0.305448,0.003665,-0.003000,0.249982,0,0);-ms-transform:matrix(0.305448,0.003665,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.305448,0.003665,-0.003000,0.249982,0,0);}
.m13e_c01106{transform:matrix(0.315350,0.006622,-0.005249,0.249945,0,0);-ms-transform:matrix(0.315350,0.006622,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.315350,0.006622,-0.005249,0.249945,0,0);}
.m113_c01106{transform:matrix(0.315901,0.007266,-0.005748,0.249934,0,0);-ms-transform:matrix(0.315901,0.007266,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.315901,0.007266,-0.005748,0.249934,0,0);}
.m13c_c01106{transform:matrix(0.320809,0.006737,-0.005249,0.249945,0,0);-ms-transform:matrix(0.320809,0.006737,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.320809,0.006737,-0.005249,0.249945,0,0);}
.mff_c01106{transform:matrix(0.322004,0.005152,-0.003999,0.249968,0,0);-ms-transform:matrix(0.322004,0.005152,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.322004,0.005152,-0.003999,0.249968,0,0);}
.m13d_c01106{transform:matrix(0.324428,0.006813,-0.005249,0.249945,0,0);-ms-transform:matrix(0.324428,0.006813,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.324428,0.006813,-0.005249,0.249945,0,0);}
.m141_c01106{transform:matrix(0.330172,0.006934,-0.005249,0.249945,0,0);-ms-transform:matrix(0.330172,0.006934,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.330172,0.006934,-0.005249,0.249945,0,0);}
.md4_c01106{transform:matrix(0.330203,0.005283,-0.003999,0.249968,0,0);-ms-transform:matrix(0.330203,0.005283,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.330203,0.005283,-0.003999,0.249968,0,0);}
.m112_c01106{transform:matrix(0.335311,0.007712,-0.005748,0.249934,0,0);-ms-transform:matrix(0.335311,0.007712,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.335311,0.007712,-0.005748,0.249934,0,0);}
.mbc_c01106{transform:matrix(0.337927,0.005407,-0.003999,0.249968,0,0);-ms-transform:matrix(0.337927,0.005407,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.337927,0.005407,-0.003999,0.249968,0,0);}
.m103_c01106{transform:matrix(0.341371,0.005462,-0.003999,0.249968,0,0);-ms-transform:matrix(0.341371,0.005462,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.341371,0.005462,-0.003999,0.249968,0,0);}
.m138_c01106{transform:matrix(0.350678,0.007364,-0.005249,0.249945,0,0);-ms-transform:matrix(0.350678,0.007364,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.350678,0.007364,-0.005249,0.249945,0,0);}
.m13a_c01106{transform:matrix(0.351902,0.007390,-0.005249,0.249945,0,0);-ms-transform:matrix(0.351902,0.007390,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.351902,0.007390,-0.005249,0.249945,0,0);}
.m13_c01106{transform:matrix(0.352140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352140,0.000000,0.000000,0.250000,0,0);}
.mfe_c01106{transform:matrix(0.362334,0.005797,-0.003999,0.249968,0,0);-ms-transform:matrix(0.362334,0.005797,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.362334,0.005797,-0.003999,0.249968,0,0);}
.m109_c01106{transform:matrix(0.369528,0.007021,-0.004749,0.249955,0,0);-ms-transform:matrix(0.369528,0.007021,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.369528,0.007021,-0.004749,0.249955,0,0);}
.mc_c01106{transform:matrix(0.370660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370660,0.000000,0.000000,0.250000,0,0);}
.m139_c01106{transform:matrix(0.411079,0.008633,-0.005249,0.249945,0,0);-ms-transform:matrix(0.411079,0.008633,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.411079,0.008633,-0.005249,0.249945,0,0);}
.m114_c01106{transform:matrix(0.414006,0.009522,-0.005748,0.249934,0,0);-ms-transform:matrix(0.414006,0.009522,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.414006,0.009522,-0.005748,0.249934,0,0);}
.m117_c01106{transform:matrix(0.478029,0.010995,-0.005748,0.249934,0,0);-ms-transform:matrix(0.478029,0.010995,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.478029,0.010995,-0.005748,0.249934,0,0);}
.m126_c01106{transform:matrix(1.136055,0.026129,-0.005748,0.249934,0,0);-ms-transform:matrix(1.136055,0.026129,-0.005748,0.249934,0,0);-webkit-transform:matrix(1.136055,0.026129,-0.005748,0.249934,0,0);}
.m12_c01106{transform:matrix(3.463421,0.041561,-0.003000,0.249982,0,0);-ms-transform:matrix(3.463421,0.041561,-0.003000,0.249982,0,0);-webkit-transform:matrix(3.463421,0.041561,-0.003000,0.249982,0,0);}
.v0_c01106{vertical-align:0.000000px;}
.ls0_c01106{letter-spacing:0.000000px;}
.sc__c01106{text-shadow:none;}
.sc0_c01106{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__c01106{-webkit-text-stroke:0px transparent;}
.sc0_c01106{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01106{word-spacing:0.000000px;}
._0_c01106{width:33.030047px;}
.fc0_c01106{color:transparent;}
.fs3_c01106{font-size:48.003456px;}
.fsf_c01106{font-size:54.011906px;}
.fs5_c01106{font-size:66.004752px;}
.fsc_c01106{font-size:66.017455px;}
.fs4_c01106{font-size:72.000000px;}
.fs6_c01106{font-size:72.005184px;}
.fs8_c01106{font-size:72.009215px;}
.fs2_c01106{font-size:72.012995px;}
.fsd_c01106{font-size:72.019041px;}
.fsb_c01106{font-size:78.020628px;}
.fs7_c01106{font-size:84.006048px;}
.fs9_c01106{font-size:84.010751px;}
.fs0_c01106{font-size:84.018520px;}
.fse_c01106{font-size:84.022215px;}
.fsa_c01106{font-size:90.011519px;}
.fs1_c01106{font-size:108.000000px;}
.y0_c01106{bottom:0.000000px;}
.y153_c01106{bottom:10.350273px;}
.y152_c01106{bottom:11.274168px;}
.y151_c01106{bottom:13.413680px;}
.y150_c01106{bottom:14.110806px;}
.y14f_c01106{bottom:14.541978px;}
.y14e_c01106{bottom:15.523518px;}
.y14d_c01106{bottom:16.397108px;}
.y14c_c01106{bottom:18.654461px;}
.y14b_c01106{bottom:19.691378px;}
.y14a_c01106{bottom:20.797500px;}
.y149_c01106{bottom:41.117112px;}
.y148_c01106{bottom:42.999404px;}
.y147_c01106{bottom:45.267912px;}
.y146_c01106{bottom:46.405176px;}
.y145_c01106{bottom:47.148910px;}
.y144_c01106{bottom:48.673891px;}
.y143_c01106{bottom:50.106393px;}
.y142_c01106{bottom:52.833281px;}
.y141_c01106{bottom:53.887482px;}
.y140_c01106{bottom:55.813461px;}
.y13f_c01106{bottom:58.044094px;}
.y13e_c01106{bottom:82.721716px;}
.y13d_c01106{bottom:85.056090px;}
.y137_c01106{bottom:86.971341px;}
.y13c_c01106{bottom:87.224898px;}
.y13b_c01106{bottom:88.210461px;}
.y13a_c01106{bottom:89.514288px;}
.y136_c01106{bottom:89.707788px;}
.y135_c01106{bottom:90.664684px;}
.y134_c01106{bottom:93.106615px;}
.y133_c01106{bottom:93.604962px;}
.y132_c01106{bottom:94.359753px;}
.y139_c01106{bottom:95.280211px;}
.y131_c01106{bottom:96.522417px;}
.y130_c01106{bottom:97.740484px;}
.y138_c01106{bottom:100.430874px;}
.y12f_c01106{bottom:100.778457px;}
.y12e_c01106{bottom:101.816113px;}
.y12d_c01106{bottom:102.594571px;}
.y12c_c01106{bottom:103.358470px;}
.y12b_c01106{bottom:106.166218px;}
.y12a_c01106{bottom:107.185245px;}
.y129_c01106{bottom:107.931100px;}
.y128_c01106{bottom:108.730845px;}
.y127_c01106{bottom:109.502541px;}
.y126_c01106{bottom:111.037446px;}
.y125_c01106{bottom:111.572230px;}
.y124_c01106{bottom:112.292246px;}
.y123_c01106{bottom:113.800861px;}
.y122_c01106{bottom:114.570143px;}
.y121_c01106{bottom:115.837500px;}
.yc_c01106{bottom:146.291555px;}
.yb_c01106{bottom:146.983389px;}
.ya_c01106{bottom:147.900890px;}
.y9_c01106{bottom:149.535393px;}
.y8_c01106{bottom:150.465777px;}
.y7_c01106{bottom:152.341791px;}
.y6_c01106{bottom:153.058196px;}
.y5_c01106{bottom:153.969680px;}
.y4_c01106{bottom:155.143716px;}
.y3_c01106{bottom:156.749870px;}
.y2_c01106{bottom:158.598132px;}
.y1_c01106{bottom:159.306000px;}
.y120_c01106{bottom:183.180384px;}
.y11f_c01106{bottom:184.838144px;}
.y11e_c01106{bottom:186.310396px;}
.y11d_c01106{bottom:188.235258px;}
.y11c_c01106{bottom:188.914641px;}
.y11b_c01106{bottom:190.980492px;}
.y11a_c01106{bottom:191.596377px;}
.y119_c01106{bottom:192.446731px;}
.y118_c01106{bottom:193.494534px;}
.y117_c01106{bottom:194.109820px;}
.y116_c01106{bottom:194.944500px;}
.y115_c01106{bottom:217.621752px;}
.y114_c01106{bottom:218.041032px;}
.y113_c01106{bottom:219.108816px;}
.y112_c01106{bottom:221.227812px;}
.y111_c01106{bottom:221.903256px;}
.y110_c01106{bottom:224.388936px;}
.y10f_c01106{bottom:225.928752px;}
.y10e_c01106{bottom:226.472508px;}
.y10d_c01106{bottom:227.108496px;}
.y10c_c01106{bottom:229.011336px;}
.y10b_c01106{bottom:229.394040px;}
.y10a_c01106{bottom:230.246856px;}
.y109_c01106{bottom:253.768092px;}
.y108_c01106{bottom:255.669960px;}
.y107_c01106{bottom:256.273452px;}
.y106_c01106{bottom:257.278692px;}
.y105_c01106{bottom:260.049048px;}
.y104_c01106{bottom:261.054144px;}
.y103_c01106{bottom:262.065300px;}
.y102_c01106{bottom:263.650200px;}
.y101_c01106{bottom:264.257772px;}
.y100_c01106{bottom:265.427856px;}
.yff_c01106{bottom:266.430456px;}
.yfe_c01106{bottom:292.148532px;}
.yfd_c01106{bottom:293.423460px;}
.yfc_c01106{bottom:294.845172px;}
.yfb_c01106{bottom:295.172748px;}
.yfa_c01106{bottom:295.527084px;}
.yf9_c01106{bottom:297.126516px;}
.yf8_c01106{bottom:298.556676px;}
.yf7_c01106{bottom:298.885428px;}
.yf6_c01106{bottom:299.783796px;}
.yf5_c01106{bottom:301.533036px;}
.yf4_c01106{bottom:326.738784px;}
.yf3_c01106{bottom:328.150584px;}
.yf2_c01106{bottom:328.842768px;}
.yf1_c01106{bottom:330.000120px;}
.yf0_c01106{bottom:331.401096px;}
.yef_c01106{bottom:332.108616px;}
.yee_c01106{bottom:333.036828px;}
.yed_c01106{bottom:334.433532px;}
.yec_c01106{bottom:335.364300px;}
.yeb_c01106{bottom:337.671492px;}
.yea_c01106{bottom:338.369040px;}
.ye9_c01106{bottom:338.799288px;}
.ye8_c01106{bottom:360.586284px;}
.ye7_c01106{bottom:362.419668px;}
.ye6_c01106{bottom:363.620664px;}
.ye5_c01106{bottom:364.753920px;}
.ye4_c01106{bottom:366.804576px;}
.ye3_c01106{bottom:367.382460px;}
.ye2_c01106{bottom:368.987568px;}
.ye1_c01106{bottom:369.794880px;}
.ye0_c01106{bottom:370.183140px;}
.ydf_c01106{bottom:372.557988px;}
.yde_c01106{bottom:397.456848px;}
.ydd_c01106{bottom:398.038956px;}
.ydc_c01106{bottom:398.865120px;}
.ydb_c01106{bottom:399.876420px;}
.yda_c01106{bottom:402.265968px;}
.yd9_c01106{bottom:403.061580px;}
.yd8_c01106{bottom:404.650980px;}
.yd7_c01106{bottom:406.051548px;}
.yd6_c01106{bottom:406.644804px;}
.yd5_c01106{bottom:407.627256px;}
.yd4_c01106{bottom:408.234276px;}
.yd3_c01106{bottom:409.014300px;}
.yd2_c01106{bottom:432.367896px;}
.yd1_c01106{bottom:433.358220px;}
.yd0_c01106{bottom:435.789420px;}
.ycf_c01106{bottom:436.582824px;}
.yce_c01106{bottom:437.186076px;}
.ycd_c01106{bottom:439.179132px;}
.ycc_c01106{bottom:439.772388px;}
.ycb_c01106{bottom:441.350376px;}
.yca_c01106{bottom:442.159296px;}
.yc9_c01106{bottom:442.752168px;}
.yc8_c01106{bottom:444.117228px;}
.yc7_c01106{bottom:467.779572px;}
.yc6_c01106{bottom:468.348324px;}
.yc5_c01106{bottom:469.639224px;}
.yc4_c01106{bottom:470.806080px;}
.yc3_c01106{bottom:471.361872px;}
.yc2_c01106{bottom:471.934800px;}
.yc1_c01106{bottom:473.425896px;}
.yc0_c01106{bottom:475.712616px;}
.ybf_c01106{bottom:476.055324px;}
.ybe_c01106{bottom:477.388668px;}
.ybd_c01106{bottom:478.681464px;}
.ybc_c01106{bottom:502.614528px;}
.ybb_c01106{bottom:503.811276px;}
.yba_c01106{bottom:504.822888px;}
.yb9_c01106{bottom:505.430532px;}
.yb8_c01106{bottom:506.802036px;}
.yb7_c01106{bottom:507.223608px;}
.yb6_c01106{bottom:508.420908px;}
.yb5_c01106{bottom:510.408144px;}
.yb4_c01106{bottom:511.412688px;}
.yb3_c01106{bottom:513.178572px;}
.yb2_c01106{bottom:513.785976px;}
.yb1_c01106{bottom:514.596120px;}
.yb0_c01106{bottom:542.472732px;}
.yaf_c01106{bottom:543.724800px;}
.yae_c01106{bottom:544.813440px;}
.yad_c01106{bottom:545.573976px;}
.yac_c01106{bottom:545.902428px;}
.yab_c01106{bottom:547.453572px;}
.yaa_c01106{bottom:548.224488px;}
.ya9_c01106{bottom:549.478944px;}
.ya8_c01106{bottom:549.921264px;}
.ya7_c01106{bottom:551.320116px;}
.ya6_c01106{bottom:576.023040px;}
.ya5_c01106{bottom:576.359196px;}
.ya4_c01106{bottom:577.700700px;}
.ya3_c01106{bottom:578.377116px;}
.ya2_c01106{bottom:578.996724px;}
.ya1_c01106{bottom:580.714140px;}
.ya0_c01106{bottom:581.208132px;}
.y9f_c01106{bottom:582.367080px;}
.y9e_c01106{bottom:584.047836px;}
.y9d_c01106{bottom:584.526168px;}
.y9c_c01106{bottom:585.527280px;}
.y9b_c01106{bottom:586.154808px;}
.y9a_c01106{bottom:612.360648px;}
.y99_c01106{bottom:613.318248px;}
.y98_c01106{bottom:613.650288px;}
.y97_c01106{bottom:614.735712px;}
.y96_c01106{bottom:616.502976px;}
.y95_c01106{bottom:618.451680px;}
.y94_c01106{bottom:618.814728px;}
.y93_c01106{bottom:620.413824px;}
.y92_c01106{bottom:620.940240px;}
.y91_c01106{bottom:622.335552px;}
.y90_c01106{bottom:623.419800px;}
.y8f_c01106{bottom:645.351396px;}
.y8e_c01106{bottom:647.145012px;}
.y8d_c01106{bottom:647.502756px;}
.y8c_c01106{bottom:648.581124px;}
.y8b_c01106{bottom:650.182332px;}
.y8a_c01106{bottom:651.751956px;}
.y89_c01106{bottom:652.290708px;}
.y88_c01106{bottom:654.070668px;}
.y87_c01106{bottom:655.824492px;}
.y86_c01106{bottom:682.514988px;}
.y85_c01106{bottom:683.063892px;}
.y84_c01106{bottom:683.404428px;}
.y83_c01106{bottom:684.131124px;}
.y82_c01106{bottom:684.839724px;}
.y81_c01106{bottom:686.606724px;}
.y80_c01106{bottom:687.846756px;}
.y7f_c01106{bottom:688.378116px;}
.y7e_c01106{bottom:688.918188px;}
.y7d_c01106{bottom:690.327852px;}
.y7c_c01106{bottom:690.853572px;}
.y7b_c01106{bottom:691.739124px;}
.y7a_c01106{bottom:717.154368px;}
.y79_c01106{bottom:717.694656px;}
.y78_c01106{bottom:718.222032px;}
.y77_c01106{bottom:718.756752px;}
.y76_c01106{bottom:720.710448px;}
.y75_c01106{bottom:721.794984px;}
.y74_c01106{bottom:722.317704px;}
.y73_c01106{bottom:723.198864px;}
.y72_c01106{bottom:724.089024px;}
.y71_c01106{bottom:725.113080px;}
.y70_c01106{bottom:726.024288px;}
.y6f_c01106{bottom:726.573000px;}
.y6e_c01106{bottom:758.857740px;}
.y6d_c01106{bottom:759.687432px;}
.y6c_c01106{bottom:760.493742px;}
.y6b_c01106{bottom:761.404110px;}
.y6a_c01106{bottom:762.084150px;}
.y69_c01106{bottom:763.001502px;}
.y68_c01106{bottom:788.701680px;}
.y67_c01106{bottom:790.263570px;}
.y66_c01106{bottom:791.194308px;}
.y65_c01106{bottom:791.670102px;}
.y64_c01106{bottom:792.748002px;}
.y63_c01106{bottom:793.206222px;}
.y62_c01106{bottom:794.162352px;}
.y61_c01106{bottom:794.771208px;}
.y60_c01106{bottom:795.538590px;}
.y5f_c01106{bottom:796.014114px;}
.y5e_c01106{bottom:796.939374px;}
.y5d_c01106{bottom:797.397882px;}
.y5c_c01106{bottom:797.836686px;}
.y5b_c01106{bottom:823.931934px;}
.y5a_c01106{bottom:825.937062px;}
.y59_c01106{bottom:826.949814px;}
.y58_c01106{bottom:827.439408px;}
.y57_c01106{bottom:828.273312px;}
.y56_c01106{bottom:828.945756px;}
.y55_c01106{bottom:830.590470px;}
.y54_c01106{bottom:831.092730px;}
.y53_c01106{bottom:832.258242px;}
.y52_c01106{bottom:832.752576px;}
.y51_c01106{bottom:833.748972px;}
.y50_c01106{bottom:860.987736px;}
.y4f_c01106{bottom:861.808014px;}
.y4e_c01106{bottom:862.209900px;}
.y4d_c01106{bottom:863.006580px;}
.y4c_c01106{bottom:863.266500px;}
.y4b_c01106{bottom:864.069426px;}
.y4a_c01106{bottom:864.468504px;}
.y49_c01106{bottom:865.803438px;}
.y48_c01106{bottom:866.600568px;}
.y47_c01106{bottom:867.115764px;}
.y46_c01106{bottom:868.045662px;}
.y45_c01106{bottom:868.580190px;}
.y44_c01106{bottom:895.576830px;}
.y43_c01106{bottom:896.897772px;}
.y42_c01106{bottom:898.203822px;}
.y41_c01106{bottom:898.480332px;}
.y40_c01106{bottom:899.355204px;}
.y3f_c01106{bottom:900.221592px;}
.y3e_c01106{bottom:900.646686px;}
.y3d_c01106{bottom:901.654620px;}
.y3c_c01106{bottom:902.220048px;}
.y3b_c01106{bottom:902.949198px;}
.y3a_c01106{bottom:903.374202px;}
.y39_c01106{bottom:904.224174px;}
.y38_c01106{bottom:931.887534px;}
.y37_c01106{bottom:932.146950px;}
.y36_c01106{bottom:932.956500px;}
.y35_c01106{bottom:933.218958px;}
.y34_c01106{bottom:934.032846px;}
.y33_c01106{bottom:934.842990px;}
.y32_c01106{bottom:936.006186px;}
.y31_c01106{bottom:937.094754px;}
.y30_c01106{bottom:937.486956px;}
.y2f_c01106{bottom:938.552844px;}
.y2e_c01106{bottom:938.948088px;}
.y2d_c01106{bottom:939.595656px;}
.y2c_c01106{bottom:966.170292px;}
.y2b_c01106{bottom:966.981282px;}
.y2a_c01106{bottom:968.047674px;}
.y29_c01106{bottom:969.382464px;}
.y28_c01106{bottom:969.784476px;}
.y27_c01106{bottom:970.445310px;}
.y26_c01106{bottom:971.242638px;}
.y25_c01106{bottom:971.644254px;}
.y24_c01106{bottom:972.441276px;}
.y23_c01106{bottom:972.836520px;}
.y22_c01106{bottom:973.082940px;}
.y21_c01106{bottom:973.500252px;}
.y20_c01106{bottom:974.157972px;}
.y1f_c01106{bottom:1002.318720px;}
.y1e_c01106{bottom:1003.261848px;}
.y1d_c01106{bottom:1003.932510px;}
.y1c_c01106{bottom:1005.264330px;}
.y1b_c01106{bottom:1006.204020px;}
.y1a_c01106{bottom:1006.599318px;}
.y19_c01106{bottom:1007.003904px;}
.y18_c01106{bottom:1007.522340px;}
.y17_c01106{bottom:1008.439188px;}
.y16_c01106{bottom:1008.999744px;}
.y15_c01106{bottom:1009.531500px;}
.y14_c01106{bottom:1061.238000px;}
.y13_c01106{bottom:1119.151500px;}
.y12_c01106{bottom:1130.587237px;}
.y11_c01106{bottom:1130.969194px;}
.y10_c01106{bottom:1132.069551px;}
.yf_c01106{bottom:1132.684951px;}
.ye_c01106{bottom:1134.814500px;}
.yd_c01106{bottom:1198.515000px;}
.h5_c01106{height:48.003456px;}
.h11_c01106{height:54.011906px;}
.h7_c01106{height:66.004752px;}
.he_c01106{height:66.017455px;}
.h6_c01106{height:72.000000px;}
.h8_c01106{height:72.005184px;}
.ha_c01106{height:72.009215px;}
.h4_c01106{height:72.012995px;}
.hf_c01106{height:72.019041px;}
.hd_c01106{height:78.020628px;}
.h9_c01106{height:84.006048px;}
.hb_c01106{height:84.010751px;}
.h2_c01106{height:84.018520px;}
.h10_c01106{height:84.022215px;}
.hc_c01106{height:90.011519px;}
.h3_c01106{height:108.000000px;}
.h0_c01106{height:1246.320000px;}
.h1_c01106{height:1246.500000px;}
.w0_c01106{width:927.450000px;}
.w1_c01106{width:927.750000px;}
.x0_c01106{left:0.000000px;}
.x1_c01106{left:173.590500px;}
.xa4_c01106{left:175.268016px;}
.x75_c01106{left:176.383872px;}
.x5c_c01106{left:177.442272px;}
.x37_c01106{left:179.381178px;}
.x1c_c01106{left:180.499590px;}
.xc8_c01106{left:195.206091px;}
.x9d_c01106{left:196.831260px;}
.x53_c01106{left:199.044000px;}
.x14_c01106{left:201.258000px;}
.x2_c01106{left:207.298500px;}
.x45_c01106{left:211.765776px;}
.xb6_c01106{left:218.151000px;}
.x6f_c01106{left:220.088232px;}
.x38_c01106{left:223.925178px;}
.xd6_c01106{left:227.304000px;}
.xbe_c01106{left:228.364500px;}
.x9e_c01106{left:230.019096px;}
.x54_c01106{left:233.338500px;}
.x1d_c01106{left:235.309590px;}
.xd0_c01106{left:238.309569px;}
.xae_c01106{left:239.449392px;}
.x46_c01106{left:244.473984px;}
.x15_c01106{left:245.571000px;}
.xb7_c01106{left:250.534500px;}
.x84_c01106{left:252.623784px;}
.x4e_c01106{left:255.034302px;}
.xbf_c01106{left:261.811500px;}
.x5d_c01106{left:265.646772px;}
.x29_c01106{left:267.678942px;}
.x1e_c01106{left:270.085590px;}
.x76_c01106{left:276.284064px;}
.x30_c01106{left:278.723850px;}
.xa5_c01106{left:284.595516px;}
.x63_c01106{left:286.771212px;}
.x1f_c01106{left:290.620590px;}
.x16_c01106{left:292.284000px;}
.x3_c01106{left:295.311000px;}
.x39_c01106{left:301.416678px;}
.xb8_c01106{left:305.682000px;}
.x77_c01106{left:307.867572px;}
.x47_c01106{left:310.577400px;}
.x4f_c01106{left:311.704302px;}
.x70_c01106{left:318.648792px;}
.x20_c01106{left:323.557590px;}
.xd1_c01106{left:325.990920px;}
.xc0_c01106{left:327.403500px;}
.x97_c01106{left:329.127804px;}
.x6a_c01106{left:331.623240px;}
.xe_c01106{left:334.813500px;}
.xaf_c01106{left:339.622092px;}
.x92_c01106{left:340.762740px;}
.x3a_c01106{left:344.349678px;}
.xc9_c01106{left:348.850110px;}
.x85_c01106{left:351.281724px;}
.x7c_c01106{left:352.411068px;}
.x55_c01106{left:354.292500px;}
.x2a_c01106{left:356.502942px;}
.xc1_c01106{left:358.708500px;}
.xa6_c01106{left:361.290516px;}
.x6b_c01106{left:364.524240px;}
.x17_c01106{left:368.688000px;}
.x4_c01106{left:371.794500px;}
.x98_c01106{left:373.958364px;}
.x31_c01106{left:378.354162px;}
.xb9_c01106{left:382.852500px;}
.x9f_c01106{left:384.191760px;}
.x50_c01106{left:387.568302px;}
.x21_c01106{left:389.976090px;}
.x64_c01106{left:398.018712px;}
.x48_c01106{left:399.400776px;}
.xb0_c01106{left:401.728116px;}
.xca_c01106{left:405.813921px;}
.x7d_c01106{left:408.255792px;}
.x3b_c01106{left:410.777178px;}
.x13_c01106{left:412.560000px;}
.xaa_c01106{left:416.932044px;}
.x8d_c01106{left:418.519536px;}
.x5e_c01106{left:420.715272px;}
.x22_c01106{left:423.444090px;}
.xd7_c01106{left:425.773500px;}
.x5_c01106{left:427.701000px;}
.x65_c01106{left:431.690712px;}
.xd_c01106{left:437.940000px;}
.x49_c01106{left:442.887732px;}
.x18_c01106{left:445.606500px;}
.xf_c01106{left:446.895000px;}
.xc2_c01106{left:448.695000px;}
.x8e_c01106{left:451.471980px;}
.x78_c01106{left:452.551704px;}
.x51_c01106{left:454.760802px;}
.x32_c01106{left:455.847726px;}
.x99_c01106{left:463.118508px;}
.x56_c01106{left:465.000000px;}
.x6_c01106{left:471.105000px;}
.xab_c01106{left:473.096244px;}
.x10_c01106{left:479.284500px;}
.xb1_c01106{left:482.775228px;}
.x86_c01106{left:485.762064px;}
.x6c_c01106{left:487.158240px;}
.x33_c01106{left:488.521830px;}
.x23_c01106{left:489.888090px;}
.xba_c01106{left:491.581500px;}
.xd2_c01106{left:493.138623px;}
.x9a_c01106{left:495.203976px;}
.x57_c01106{left:497.670000px;}
.x3f_c01106{left:499.071162px;}
.x7_c01106{left:505.219500px;}
.x93_c01106{left:506.817912px;}
.x71_c01106{left:507.945816px;}
.x4a_c01106{left:511.188594px;}
.xd3_c01106{left:515.034603px;}
.xc3_c01106{left:517.018500px;}
.x7e_c01106{left:518.673264px;}
.x3c_c01106{left:522.021678px;}
.x52_c01106{left:523.901802px;}
.xd8_c01106{left:526.242000px;}
.xbb_c01106{left:527.338500px;}
.xa0_c01106{left:528.613716px;}
.x66_c01106{left:529.792212px;}
.x11_c01106{left:537.198000px;}
.x72_c01106{left:540.883344px;}
.x40_c01106{left:543.856542px;}
.x24_c01106{left:544.957590px;}
.xc4_c01106{left:549.447000px;}
.x94_c01106{left:551.010996px;}
.x34_c01106{left:555.220038px;}
.x12_c01106{left:557.301000px;}
.xcb_c01106{left:560.309975px;}
.x8f_c01106{left:562.159428px;}
.x79_c01106{left:563.376756px;}
.x58_c01106{left:565.453500px;}
.xcc_c01106{left:572.311872px;}
.x87_c01106{left:573.516672px;}
.x2b_c01106{left:576.833442px;}
.x25_c01106{left:578.458590px;}
.x7f_c01106{left:585.158628px;}
.x7a_c01106{left:586.812000px;}
.xa7_c01106{left:593.259516px;}
.x8_c01106{left:594.553500px;}
.x90_c01106{left:595.642848px;}
.x41_c01106{left:599.471544px;}
.x88_c01106{left:607.261644px;}
.x5f_c01106{left:608.654772px;}
.xb2_c01106{left:613.561440px;}
.xd4_c01106{left:615.216780px;}
.xcd_c01106{left:617.254662px;}
.x4b_c01106{left:620.820948px;}
.x35_c01106{left:622.500228px;}
.xbc_c01106{left:628.647000px;}
.x67_c01106{left:629.867712px;}
.x42_c01106{left:632.144874px;}
.x9_c01106{left:638.857500px;}
.x89_c01106{left:639.935616px;}
.x7b_c01106{left:641.097228px;}
.x2c_c01106{left:644.345442px;}
.xb3_c01106{left:649.118736px;}
.xa1_c01106{left:650.436972px;}
.x60_c01106{left:652.942272px;}
.x4c_c01106{left:654.844638px;}
.x19_c01106{left:667.840500px;}
.xd5_c01106{left:670.563273px;}
.x9b_c01106{left:672.067812px;}
.xa8_c01106{left:682.116516px;}
.xa2_c01106{left:683.383332px;}
.x80_c01106{left:684.753936px;}
.x59_c01106{left:687.559500px;}
.x26_c01106{left:689.691090px;}
.x68_c01106{left:697.265712px;}
.x61_c01106{left:698.360772px;}
.x43_c01106{left:699.663444px;}
.xbd_c01106{left:706.134000px;}
.x8a_c01106{left:708.550512px;}
.x3d_c01106{left:710.238678px;}
.x2d_c01106{left:712.169442px;}
.xa_c01106{left:716.691000px;}
.x81_c01106{left:718.511856px;}
.x62_c01106{left:719.644272px;}
.x4d_c01106{left:721.279536px;}
.x1a_c01106{left:723.729000px;}
.xce_c01106{left:726.016655px;}
.x2e_c01106{left:734.040942px;}
.x9c_c01106{left:738.784176px;}
.x95_c01106{left:739.932948px;}
.x73_c01106{left:741.789060px;}
.x36_c01106{left:744.253770px;}
.xc5_c01106{left:749.041500px;}
.xa3_c01106{left:750.615456px;}
.x5a_c01106{left:753.940500px;}
.xb_c01106{left:760.381500px;}
.xa9_c01106{left:761.799516px;}
.xac_c01106{left:772.285692px;}
.x82_c01106{left:774.704556px;}
.x27_c01106{left:778.557090px;}
.xc6_c01106{left:782.887500px;}
.x8b_c01106{left:784.449288px;}
.x96_c01106{left:785.847984px;}
.x5b_c01106{left:787.708500px;}
.xc_c01106{left:793.326000px;}
.x1b_c01106{left:802.323000px;}
.xcf_c01106{left:806.500046px;}
.x6d_c01106{left:807.997740px;}
.x3e_c01106{left:812.085678px;}
.xb4_c01106{left:816.878196px;}
.x8c_c01106{left:817.933260px;}
.x2f_c01106{left:823.121442px;}
.xc7_c01106{left:828.003000px;}
.x91_c01106{left:829.818360px;}
.x69_c01106{left:831.725712px;}
.x44_c01106{left:833.377638px;}
.xb5_c01106{left:838.957140px;}
.x83_c01106{left:841.155420px;}
.x28_c01106{left:846.139590px;}
.x74_c01106{left:853.675860px;}
.x6e_c01106{left:867.847740px;}
.xad_c01106{left:877.930308px;}
@media print{
.v0_c01106{vertical-align:0.000000pt;}
.ls0_c01106{letter-spacing:0.000000pt;}
.ws0_c01106{word-spacing:0.000000pt;}
._0_c01106{width:29.360041pt;}
.fs3_c01106{font-size:42.669739pt;}
.fsf_c01106{font-size:48.010583pt;}
.fs5_c01106{font-size:58.670891pt;}
.fsc_c01106{font-size:58.682182pt;}
.fs4_c01106{font-size:64.000000pt;}
.fs6_c01106{font-size:64.004608pt;}
.fs8_c01106{font-size:64.008191pt;}
.fs2_c01106{font-size:64.011551pt;}
.fsd_c01106{font-size:64.016926pt;}
.fsb_c01106{font-size:69.351670pt;}
.fs7_c01106{font-size:74.672042pt;}
.fs9_c01106{font-size:74.676223pt;}
.fs0_c01106{font-size:74.683129pt;}
.fse_c01106{font-size:74.686413pt;}
.fsa_c01106{font-size:80.010239pt;}
.fs1_c01106{font-size:96.000000pt;}
.y0_c01106{bottom:0.000000pt;}
.y153_c01106{bottom:9.200243pt;}
.y152_c01106{bottom:10.021483pt;}
.y151_c01106{bottom:11.923271pt;}
.y150_c01106{bottom:12.542939pt;}
.y14f_c01106{bottom:12.926203pt;}
.y14e_c01106{bottom:13.798683pt;}
.y14d_c01106{bottom:14.575207pt;}
.y14c_c01106{bottom:16.581743pt;}
.y14b_c01106{bottom:17.503447pt;}
.y14a_c01106{bottom:18.486667pt;}
.y149_c01106{bottom:36.548544pt;}
.y148_c01106{bottom:38.221692pt;}
.y147_c01106{bottom:40.238144pt;}
.y146_c01106{bottom:41.249045pt;}
.y145_c01106{bottom:41.910143pt;}
.y144_c01106{bottom:43.265681pt;}
.y143_c01106{bottom:44.539016pt;}
.y142_c01106{bottom:46.962916pt;}
.y141_c01106{bottom:47.899984pt;}
.y140_c01106{bottom:49.611965pt;}
.y13f_c01106{bottom:51.594751pt;}
.y13e_c01106{bottom:73.530415pt;}
.y13d_c01106{bottom:75.605413pt;}
.y137_c01106{bottom:77.307859pt;}
.y13c_c01106{bottom:77.533243pt;}
.y13b_c01106{bottom:78.409299pt;}
.y13a_c01106{bottom:79.568256pt;}
.y136_c01106{bottom:79.740256pt;}
.y135_c01106{bottom:80.590831pt;}
.y134_c01106{bottom:82.761436pt;}
.y133_c01106{bottom:83.204411pt;}
.y132_c01106{bottom:83.875336pt;}
.y139_c01106{bottom:84.693521pt;}
.y131_c01106{bottom:85.797704pt;}
.y130_c01106{bottom:86.880431pt;}
.y138_c01106{bottom:89.271888pt;}
.y12f_c01106{bottom:89.580851pt;}
.y12e_c01106{bottom:90.503212pt;}
.y12d_c01106{bottom:91.195175pt;}
.y12c_c01106{bottom:91.874196pt;}
.y12b_c01106{bottom:94.369972pt;}
.y12a_c01106{bottom:95.275773pt;}
.y129_c01106{bottom:95.938756pt;}
.y128_c01106{bottom:96.649640pt;}
.y127_c01106{bottom:97.335592pt;}
.y126_c01106{bottom:98.699952pt;}
.y125_c01106{bottom:99.175316pt;}
.y124_c01106{bottom:99.815329pt;}
.y123_c01106{bottom:101.156321pt;}
.y122_c01106{bottom:101.840127pt;}
.y121_c01106{bottom:102.966667pt;}
.yc_c01106{bottom:130.036937pt;}
.yb_c01106{bottom:130.651901pt;}
.ya_c01106{bottom:131.467457pt;}
.y9_c01106{bottom:132.920349pt;}
.y8_c01106{bottom:133.747357pt;}
.y7_c01106{bottom:135.414925pt;}
.y6_c01106{bottom:136.051729pt;}
.y5_c01106{bottom:136.861937pt;}
.y4_c01106{bottom:137.905525pt;}
.y3_c01106{bottom:139.333217pt;}
.y2_c01106{bottom:140.976117pt;}
.y1_c01106{bottom:141.605333pt;}
.y120_c01106{bottom:162.827008pt;}
.y11f_c01106{bottom:164.300572pt;}
.y11e_c01106{bottom:165.609241pt;}
.y11d_c01106{bottom:167.320229pt;}
.y11c_c01106{bottom:167.924125pt;}
.y11b_c01106{bottom:169.760437pt;}
.y11a_c01106{bottom:170.307891pt;}
.y119_c01106{bottom:171.063761pt;}
.y118_c01106{bottom:171.995141pt;}
.y117_c01106{bottom:172.542063pt;}
.y116_c01106{bottom:173.284000pt;}
.y115_c01106{bottom:193.441557pt;}
.y114_c01106{bottom:193.814251pt;}
.y113_c01106{bottom:194.763392pt;}
.y112_c01106{bottom:196.646944pt;}
.y111_c01106{bottom:197.247339pt;}
.y110_c01106{bottom:199.456832pt;}
.y10f_c01106{bottom:200.825557pt;}
.y10e_c01106{bottom:201.308896pt;}
.y10d_c01106{bottom:201.874219pt;}
.y10c_c01106{bottom:203.565632pt;}
.y10b_c01106{bottom:203.905813pt;}
.y10a_c01106{bottom:204.663872pt;}
.y109_c01106{bottom:225.571637pt;}
.y108_c01106{bottom:227.262187pt;}
.y107_c01106{bottom:227.798624pt;}
.y106_c01106{bottom:228.692171pt;}
.y105_c01106{bottom:231.154709pt;}
.y104_c01106{bottom:232.048128pt;}
.y103_c01106{bottom:232.946933pt;}
.y102_c01106{bottom:234.355733pt;}
.y101_c01106{bottom:234.895797pt;}
.y100_c01106{bottom:235.935872pt;}
.yff_c01106{bottom:236.827072pt;}
.yfe_c01106{bottom:259.687584pt;}
.yfd_c01106{bottom:260.820853pt;}
.yfc_c01106{bottom:262.084597pt;}
.yfb_c01106{bottom:262.375776pt;}
.yfa_c01106{bottom:262.690741pt;}
.yf9_c01106{bottom:264.112459pt;}
.yf8_c01106{bottom:265.383712pt;}
.yf7_c01106{bottom:265.675936pt;}
.yf6_c01106{bottom:266.474485pt;}
.yf5_c01106{bottom:268.029365pt;}
.yf4_c01106{bottom:290.434475pt;}
.yf3_c01106{bottom:291.689408pt;}
.yf2_c01106{bottom:292.304683pt;}
.yf1_c01106{bottom:293.333440pt;}
.yf0_c01106{bottom:294.578752pt;}
.yef_c01106{bottom:295.207659pt;}
.yee_c01106{bottom:296.032736pt;}
.yed_c01106{bottom:297.274251pt;}
.yec_c01106{bottom:298.101600pt;}
.yeb_c01106{bottom:300.152437pt;}
.yea_c01106{bottom:300.772480pt;}
.ye9_c01106{bottom:301.154923pt;}
.ye8_c01106{bottom:320.521141pt;}
.ye7_c01106{bottom:322.150816pt;}
.ye6_c01106{bottom:323.218368pt;}
.ye5_c01106{bottom:324.225707pt;}
.ye4_c01106{bottom:326.048512pt;}
.ye3_c01106{bottom:326.562187pt;}
.ye2_c01106{bottom:327.988949pt;}
.ye1_c01106{bottom:328.706560pt;}
.ye0_c01106{bottom:329.051680pt;}
.ydf_c01106{bottom:331.162656pt;}
.yde_c01106{bottom:353.294976pt;}
.ydd_c01106{bottom:353.812405pt;}
.ydc_c01106{bottom:354.546773pt;}
.ydb_c01106{bottom:355.445707pt;}
.yda_c01106{bottom:357.569749pt;}
.yd9_c01106{bottom:358.276960pt;}
.yd8_c01106{bottom:359.689760pt;}
.yd7_c01106{bottom:360.934709pt;}
.yd6_c01106{bottom:361.462048pt;}
.yd5_c01106{bottom:362.335339pt;}
.yd4_c01106{bottom:362.874912pt;}
.yd3_c01106{bottom:363.568267pt;}
.yd2_c01106{bottom:384.327019pt;}
.yd1_c01106{bottom:385.207307pt;}
.yd0_c01106{bottom:387.368373pt;}
.ycf_c01106{bottom:388.073621pt;}
.yce_c01106{bottom:388.609845pt;}
.ycd_c01106{bottom:390.381451pt;}
.ycc_c01106{bottom:390.908789pt;}
.ycb_c01106{bottom:392.311445pt;}
.yca_c01106{bottom:393.030485pt;}
.yc9_c01106{bottom:393.557483pt;}
.yc8_c01106{bottom:394.770869pt;}
.yc7_c01106{bottom:415.804064pt;}
.yc6_c01106{bottom:416.309621pt;}
.yc5_c01106{bottom:417.457088pt;}
.yc4_c01106{bottom:418.494293pt;}
.yc3_c01106{bottom:418.988331pt;}
.yc2_c01106{bottom:419.497600pt;}
.yc1_c01106{bottom:420.823019pt;}
.yc0_c01106{bottom:422.855659pt;}
.ybf_c01106{bottom:423.160288pt;}
.ybe_c01106{bottom:424.345483pt;}
.ybd_c01106{bottom:425.494635pt;}
.ybc_c01106{bottom:446.768469pt;}
.ybb_c01106{bottom:447.832245pt;}
.yba_c01106{bottom:448.731456pt;}
.yb9_c01106{bottom:449.271584pt;}
.yb8_c01106{bottom:450.490699pt;}
.yb7_c01106{bottom:450.865429pt;}
.yb6_c01106{bottom:451.929696pt;}
.yb5_c01106{bottom:453.696128pt;}
.yb4_c01106{bottom:454.589056pt;}
.yb3_c01106{bottom:456.158731pt;}
.yb2_c01106{bottom:456.698645pt;}
.yb1_c01106{bottom:457.418773pt;}
.yb0_c01106{bottom:482.197984pt;}
.yaf_c01106{bottom:483.310933pt;}
.yae_c01106{bottom:484.278613pt;}
.yad_c01106{bottom:484.954645pt;}
.yac_c01106{bottom:485.246603pt;}
.yab_c01106{bottom:486.625397pt;}
.yaa_c01106{bottom:487.310656pt;}
.ya9_c01106{bottom:488.425728pt;}
.ya8_c01106{bottom:488.818901pt;}
.ya7_c01106{bottom:490.062325pt;}
.ya6_c01106{bottom:512.020480pt;}
.ya5_c01106{bottom:512.319285pt;}
.ya4_c01106{bottom:513.511733pt;}
.ya3_c01106{bottom:514.112992pt;}
.ya2_c01106{bottom:514.663755pt;}
.ya1_c01106{bottom:516.190347pt;}
.ya0_c01106{bottom:516.629451pt;}
.y9f_c01106{bottom:517.659627pt;}
.y9e_c01106{bottom:519.153632pt;}
.y9d_c01106{bottom:519.578816pt;}
.y9c_c01106{bottom:520.468693pt;}
.y9b_c01106{bottom:521.026496pt;}
.y9a_c01106{bottom:544.320576pt;}
.y99_c01106{bottom:545.171776pt;}
.y98_c01106{bottom:545.466923pt;}
.y97_c01106{bottom:546.431744pt;}
.y96_c01106{bottom:548.002645pt;}
.y95_c01106{bottom:549.734827pt;}
.y94_c01106{bottom:550.057536pt;}
.y93_c01106{bottom:551.478955pt;}
.y92_c01106{bottom:551.946880pt;}
.y91_c01106{bottom:553.187157pt;}
.y90_c01106{bottom:554.150933pt;}
.y8f_c01106{bottom:573.645685pt;}
.y8e_c01106{bottom:575.240011pt;}
.y8d_c01106{bottom:575.558005pt;}
.y8c_c01106{bottom:576.516555pt;}
.y8b_c01106{bottom:577.939851pt;}
.y8a_c01106{bottom:579.335072pt;}
.y89_c01106{bottom:579.813963pt;}
.y88_c01106{bottom:581.396149pt;}
.y87_c01106{bottom:582.955104pt;}
.y86_c01106{bottom:606.679989pt;}
.y85_c01106{bottom:607.167904pt;}
.y84_c01106{bottom:607.470603pt;}
.y83_c01106{bottom:608.116555pt;}
.y82_c01106{bottom:608.746421pt;}
.y81_c01106{bottom:610.317088pt;}
.y80_c01106{bottom:611.419339pt;}
.y7f_c01106{bottom:611.891659pt;}
.y7e_c01106{bottom:612.371723pt;}
.y7d_c01106{bottom:613.624757pt;}
.y7c_c01106{bottom:614.092064pt;}
.y7b_c01106{bottom:614.879221pt;}
.y7a_c01106{bottom:637.470549pt;}
.y79_c01106{bottom:637.950805pt;}
.y78_c01106{bottom:638.419584pt;}
.y77_c01106{bottom:638.894891pt;}
.y76_c01106{bottom:640.631509pt;}
.y75_c01106{bottom:641.595541pt;}
.y74_c01106{bottom:642.060181pt;}
.y73_c01106{bottom:642.843435pt;}
.y72_c01106{bottom:643.634688pt;}
.y71_c01106{bottom:644.544960pt;}
.y70_c01106{bottom:645.354923pt;}
.y6f_c01106{bottom:645.842667pt;}
.y6e_c01106{bottom:674.540213pt;}
.y6d_c01106{bottom:675.277717pt;}
.y6c_c01106{bottom:675.994437pt;}
.y6b_c01106{bottom:676.803653pt;}
.y6a_c01106{bottom:677.408133pt;}
.y69_c01106{bottom:678.223557pt;}
.y68_c01106{bottom:701.068160pt;}
.y67_c01106{bottom:702.456507pt;}
.y66_c01106{bottom:703.283829pt;}
.y65_c01106{bottom:703.706757pt;}
.y64_c01106{bottom:704.664891pt;}
.y63_c01106{bottom:705.072197pt;}
.y62_c01106{bottom:705.922091pt;}
.y61_c01106{bottom:706.463296pt;}
.y60_c01106{bottom:707.145413pt;}
.y5f_c01106{bottom:707.568101pt;}
.y5e_c01106{bottom:708.390555pt;}
.y5d_c01106{bottom:708.798117pt;}
.y5c_c01106{bottom:709.188165pt;}
.y5b_c01106{bottom:732.383941pt;}
.y5a_c01106{bottom:734.166277pt;}
.y59_c01106{bottom:735.066501pt;}
.y58_c01106{bottom:735.501696pt;}
.y57_c01106{bottom:736.242944pt;}
.y56_c01106{bottom:736.840672pt;}
.y55_c01106{bottom:738.302640pt;}
.y54_c01106{bottom:738.749093pt;}
.y53_c01106{bottom:739.785104pt;}
.y52_c01106{bottom:740.224512pt;}
.y51_c01106{bottom:741.110197pt;}
.y50_c01106{bottom:765.322432pt;}
.y4f_c01106{bottom:766.051568pt;}
.y4e_c01106{bottom:766.408800pt;}
.y4d_c01106{bottom:767.116960pt;}
.y4c_c01106{bottom:767.348000pt;}
.y4b_c01106{bottom:768.061712pt;}
.y4a_c01106{bottom:768.416448pt;}
.y49_c01106{bottom:769.603056pt;}
.y48_c01106{bottom:770.311616pt;}
.y47_c01106{bottom:770.769568pt;}
.y46_c01106{bottom:771.596144pt;}
.y45_c01106{bottom:772.071280pt;}
.y44_c01106{bottom:796.068293pt;}
.y43_c01106{bottom:797.242464pt;}
.y42_c01106{bottom:798.403397pt;}
.y41_c01106{bottom:798.649184pt;}
.y40_c01106{bottom:799.426848pt;}
.y3f_c01106{bottom:800.196971pt;}
.y3e_c01106{bottom:800.574832pt;}
.y3d_c01106{bottom:801.470773pt;}
.y3c_c01106{bottom:801.973376pt;}
.y3b_c01106{bottom:802.621509pt;}
.y3a_c01106{bottom:802.999291pt;}
.y39_c01106{bottom:803.754821pt;}
.y38_c01106{bottom:828.344475pt;}
.y37_c01106{bottom:828.575067pt;}
.y36_c01106{bottom:829.294667pt;}
.y35_c01106{bottom:829.527963pt;}
.y34_c01106{bottom:830.251419pt;}
.y33_c01106{bottom:830.971547pt;}
.y32_c01106{bottom:832.005499pt;}
.y31_c01106{bottom:832.973115pt;}
.y30_c01106{bottom:833.321739pt;}
.y2f_c01106{bottom:834.269195pt;}
.y2e_c01106{bottom:834.620523pt;}
.y2d_c01106{bottom:835.196139pt;}
.y2c_c01106{bottom:858.818037pt;}
.y2b_c01106{bottom:859.538917pt;}
.y2a_c01106{bottom:860.486821pt;}
.y29_c01106{bottom:861.673301pt;}
.y28_c01106{bottom:862.030645pt;}
.y27_c01106{bottom:862.618053pt;}
.y26_c01106{bottom:863.326789pt;}
.y25_c01106{bottom:863.683781pt;}
.y24_c01106{bottom:864.392245pt;}
.y23_c01106{bottom:864.743573pt;}
.y22_c01106{bottom:864.962613pt;}
.y21_c01106{bottom:865.333557pt;}
.y20_c01106{bottom:865.918197pt;}
.y1f_c01106{bottom:890.949973pt;}
.y1e_c01106{bottom:891.788309pt;}
.y1d_c01106{bottom:892.384453pt;}
.y1c_c01106{bottom:893.568293pt;}
.y1b_c01106{bottom:894.403573pt;}
.y1a_c01106{bottom:894.754949pt;}
.y19_c01106{bottom:895.114581pt;}
.y18_c01106{bottom:895.575413pt;}
.y17_c01106{bottom:896.390389pt;}
.y16_c01106{bottom:896.888661pt;}
.y15_c01106{bottom:897.361333pt;}
.y14_c01106{bottom:943.322667pt;}
.y13_c01106{bottom:994.801333pt;}
.y12_c01106{bottom:1004.966433pt;}
.y11_c01106{bottom:1005.305951pt;}
.y10_c01106{bottom:1006.284045pt;}
.yf_c01106{bottom:1006.831068pt;}
.ye_c01106{bottom:1008.724000pt;}
.yd_c01106{bottom:1065.346667pt;}
.h5_c01106{height:42.669739pt;}
.h11_c01106{height:48.010583pt;}
.h7_c01106{height:58.670891pt;}
.he_c01106{height:58.682182pt;}
.h6_c01106{height:64.000000pt;}
.h8_c01106{height:64.004608pt;}
.ha_c01106{height:64.008191pt;}
.h4_c01106{height:64.011551pt;}
.hf_c01106{height:64.016926pt;}
.hd_c01106{height:69.351670pt;}
.h9_c01106{height:74.672042pt;}
.hb_c01106{height:74.676223pt;}
.h2_c01106{height:74.683129pt;}
.h10_c01106{height:74.686413pt;}
.hc_c01106{height:80.010239pt;}
.h3_c01106{height:96.000000pt;}
.h0_c01106{height:1107.840000pt;}
.h1_c01106{height:1108.000000pt;}
.w0_c01106{width:824.400000pt;}
.w1_c01106{width:824.666667pt;}
.x0_c01106{left:0.000000pt;}
.x1_c01106{left:154.302667pt;}
.xa4_c01106{left:155.793792pt;}
.x75_c01106{left:156.785664pt;}
.x5c_c01106{left:157.726464pt;}
.x37_c01106{left:159.449936pt;}
.x1c_c01106{left:160.444080pt;}
.xc8_c01106{left:173.516525pt;}
.x9d_c01106{left:174.961120pt;}
.x53_c01106{left:176.928000pt;}
.x14_c01106{left:178.896000pt;}
.x2_c01106{left:184.265333pt;}
.x45_c01106{left:188.236245pt;}
.xb6_c01106{left:193.912000pt;}
.x6f_c01106{left:195.633984pt;}
.x38_c01106{left:199.044603pt;}
.xd6_c01106{left:202.048000pt;}
.xbe_c01106{left:202.990667pt;}
.x9e_c01106{left:204.461419pt;}
.x54_c01106{left:207.412000pt;}
.x1d_c01106{left:209.164080pt;}
.xd0_c01106{left:211.830728pt;}
.xae_c01106{left:212.843904pt;}
.x46_c01106{left:217.310208pt;}
.x15_c01106{left:218.285333pt;}
.xb7_c01106{left:222.697333pt;}
.x84_c01106{left:224.554475pt;}
.x4e_c01106{left:226.697157pt;}
.xbf_c01106{left:232.721333pt;}
.x5d_c01106{left:236.130464pt;}
.x29_c01106{left:237.936837pt;}
.x1e_c01106{left:240.076080pt;}
.x76_c01106{left:245.585835pt;}
.x30_c01106{left:247.754533pt;}
.xa5_c01106{left:252.973792pt;}
.x63_c01106{left:254.907744pt;}
.x1f_c01106{left:258.329413pt;}
.x16_c01106{left:259.808000pt;}
.x3_c01106{left:262.498667pt;}
.x39_c01106{left:267.925936pt;}
.xb8_c01106{left:271.717333pt;}
.x77_c01106{left:273.660064pt;}
.x47_c01106{left:276.068800pt;}
.x4f_c01106{left:277.070491pt;}
.x70_c01106{left:283.243371pt;}
.x20_c01106{left:287.606747pt;}
.xd1_c01106{left:289.769707pt;}
.xc0_c01106{left:291.025333pt;}
.x97_c01106{left:292.558048pt;}
.x6a_c01106{left:294.776213pt;}
.xe_c01106{left:297.612000pt;}
.xaf_c01106{left:301.886304pt;}
.x92_c01106{left:302.900213pt;}
.x3a_c01106{left:306.088603pt;}
.xc9_c01106{left:310.088987pt;}
.x85_c01106{left:312.250421pt;}
.x7c_c01106{left:313.254283pt;}
.x55_c01106{left:314.926667pt;}
.x2a_c01106{left:316.891504pt;}
.xc1_c01106{left:318.852000pt;}
.xa6_c01106{left:321.147125pt;}
.x6b_c01106{left:324.021547pt;}
.x17_c01106{left:327.722667pt;}
.x4_c01106{left:330.484000pt;}
.x98_c01106{left:332.407435pt;}
.x31_c01106{left:336.314811pt;}
.xb9_c01106{left:340.313333pt;}
.x9f_c01106{left:341.503787pt;}
.x50_c01106{left:344.505157pt;}
.x21_c01106{left:346.645413pt;}
.x64_c01106{left:353.794411pt;}
.x48_c01106{left:355.022912pt;}
.xb0_c01106{left:357.091659pt;}
.xca_c01106{left:360.723485pt;}
.x7d_c01106{left:362.894037pt;}
.x3b_c01106{left:365.135269pt;}
.x13_c01106{left:366.720000pt;}
.xaa_c01106{left:370.606261pt;}
.x8d_c01106{left:372.017365pt;}
.x5e_c01106{left:373.969131pt;}
.x22_c01106{left:376.394747pt;}
.xd7_c01106{left:378.465333pt;}
.x5_c01106{left:380.178667pt;}
.x65_c01106{left:383.725077pt;}
.xd_c01106{left:389.280000pt;}
.x49_c01106{left:393.677984pt;}
.x18_c01106{left:396.094667pt;}
.xf_c01106{left:397.240000pt;}
.xc2_c01106{left:398.840000pt;}
.x8e_c01106{left:401.308427pt;}
.x78_c01106{left:402.268181pt;}
.x51_c01106{left:404.231824pt;}
.x32_c01106{left:405.197979pt;}
.x99_c01106{left:411.660896pt;}
.x56_c01106{left:413.333333pt;}
.x6_c01106{left:418.760000pt;}
.xab_c01106{left:420.529995pt;}
.x10_c01106{left:426.030667pt;}
.xb1_c01106{left:429.133536pt;}
.x86_c01106{left:431.788501pt;}
.x6c_c01106{left:433.029547pt;}
.x33_c01106{left:434.241627pt;}
.x23_c01106{left:435.456080pt;}
.xba_c01106{left:436.961333pt;}
.xd2_c01106{left:438.345443pt;}
.x9a_c01106{left:440.181312pt;}
.x57_c01106{left:442.373333pt;}
.x3f_c01106{left:443.618811pt;}
.x7_c01106{left:449.084000pt;}
.x93_c01106{left:450.504811pt;}
.x71_c01106{left:451.507392pt;}
.x4a_c01106{left:454.389861pt;}
.xd3_c01106{left:457.808536pt;}
.xc3_c01106{left:459.572000pt;}
.x7e_c01106{left:461.042901pt;}
.x3c_c01106{left:464.019269pt;}
.x52_c01106{left:465.690491pt;}
.xd8_c01106{left:467.770667pt;}
.xbb_c01106{left:468.745333pt;}
.xa0_c01106{left:469.878859pt;}
.x66_c01106{left:470.926411pt;}
.x11_c01106{left:477.509333pt;}
.x72_c01106{left:480.785195pt;}
.x40_c01106{left:483.428037pt;}
.x24_c01106{left:484.406747pt;}
.xc4_c01106{left:488.397333pt;}
.x94_c01106{left:489.787552pt;}
.x34_c01106{left:493.528923pt;}
.x12_c01106{left:495.378667pt;}
.xcb_c01106{left:498.053311pt;}
.x8f_c01106{left:499.697269pt;}
.x79_c01106{left:500.779339pt;}
.x58_c01106{left:502.625333pt;}
.xcc_c01106{left:508.721664pt;}
.x87_c01106{left:509.792597pt;}
.x2b_c01106{left:512.740837pt;}
.x25_c01106{left:514.185413pt;}
.x7f_c01106{left:520.141003pt;}
.x7a_c01106{left:521.610667pt;}
.xa7_c01106{left:527.341792pt;}
.x8_c01106{left:528.492000pt;}
.x90_c01106{left:529.460309pt;}
.x41_c01106{left:532.863595pt;}
.x88_c01106{left:539.788128pt;}
.x5f_c01106{left:541.026464pt;}
.xb2_c01106{left:545.387947pt;}
.xd4_c01106{left:546.859360pt;}
.xcd_c01106{left:548.670811pt;}
.x4b_c01106{left:551.840843pt;}
.x35_c01106{left:553.333536pt;}
.xbc_c01106{left:558.797333pt;}
.x67_c01106{left:559.882411pt;}
.x42_c01106{left:561.906555pt;}
.x9_c01106{left:567.873333pt;}
.x89_c01106{left:568.831659pt;}
.x7b_c01106{left:569.864203pt;}
.x2c_c01106{left:572.751504pt;}
.xb3_c01106{left:576.994432pt;}
.xa1_c01106{left:578.166197pt;}
.x60_c01106{left:580.393131pt;}
.x4c_c01106{left:582.084123pt;}
.x19_c01106{left:593.636000pt;}
.xd5_c01106{left:596.056243pt;}
.x9b_c01106{left:597.393611pt;}
.xa8_c01106{left:606.325792pt;}
.xa2_c01106{left:607.451851pt;}
.x80_c01106{left:608.670165pt;}
.x59_c01106{left:611.164000pt;}
.x26_c01106{left:613.058747pt;}
.x68_c01106{left:619.791744pt;}
.x61_c01106{left:620.765131pt;}
.x43_c01106{left:621.923061pt;}
.xbd_c01106{left:627.674667pt;}
.x8a_c01106{left:629.822677pt;}
.x3d_c01106{left:631.323269pt;}
.x2d_c01106{left:633.039504pt;}
.xa_c01106{left:637.058667pt;}
.x81_c01106{left:638.677205pt;}
.x62_c01106{left:639.683797pt;}
.x4d_c01106{left:641.137365pt;}
.x1a_c01106{left:643.314667pt;}
.xce_c01106{left:645.348137pt;}
.x2e_c01106{left:652.480837pt;}
.x9c_c01106{left:656.697045pt;}
.x95_c01106{left:657.718176pt;}
.x73_c01106{left:659.368053pt;}
.x36_c01106{left:661.558907pt;}
.xc5_c01106{left:665.814667pt;}
.xa3_c01106{left:667.213739pt;}
.x5a_c01106{left:670.169333pt;}
.xb_c01106{left:675.894667pt;}
.xa9_c01106{left:677.155125pt;}
.xac_c01106{left:686.476171pt;}
.x82_c01106{left:688.626272pt;}
.x27_c01106{left:692.050747pt;}
.xc6_c01106{left:695.900000pt;}
.x8b_c01106{left:697.288256pt;}
.x96_c01106{left:698.531541pt;}
.x5b_c01106{left:700.185333pt;}
.xc_c01106{left:705.178667pt;}
.x1b_c01106{left:713.176000pt;}
.xcf_c01106{left:716.888929pt;}
.x6d_c01106{left:718.220213pt;}
.x3e_c01106{left:721.853936pt;}
.xb4_c01106{left:726.113952pt;}
.x8c_c01106{left:727.051787pt;}
.x2f_c01106{left:731.663504pt;}
.xc7_c01106{left:736.002667pt;}
.x91_c01106{left:737.616320pt;}
.x69_c01106{left:739.311744pt;}
.x44_c01106{left:740.780123pt;}
.xb5_c01106{left:745.739680pt;}
.x83_c01106{left:747.693707pt;}
.x28_c01106{left:752.124080pt;}
.x74_c01106{left:758.822987pt;}
.x6e_c01106{left:771.420213pt;}
.xad_c01106{left:780.382496pt;}
}





/* 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_c01107 {
    display:none;
  }
  .loading-indicator_c01107.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01107 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_c01107 { 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_c01107" -> "#page-container .classname_c01107")
 */
.pf_c01107 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01107 { /* 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_c01107.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01107 { /* 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_c01107 { /* 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_c01107 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01107 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01107 {overflow:visible;}
  }
}
.c_c01107 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01107 { /* 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_c01107:after { /* webkit #35443 */
  content: '';
}
.t_c01107:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01107 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 */
}
.__c01107 { /* 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_c01107 { /* info for Javascript */
  display:none;
}
.l_c01107 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01107 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01107 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01107: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_c01107 {
    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_c01107.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01107.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_c01107 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01107{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01107;src:url('chunks/assets/font_cfe63ee56e9e10a97d33a3db.woff2')format("woff");}.ff1_c01107{font-family:ff1_c01107;line-height:1.000000;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;}
.m96_c01107{transform:matrix(0.014063,0.000211,-0.003750,0.249972,0,0);-ms-transform:matrix(0.014063,0.000211,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.014063,0.000211,-0.003750,0.249972,0,0);}
.m2_c01107{transform:matrix(0.020575,0.000473,-0.005748,0.249934,0,0);-ms-transform:matrix(0.020575,0.000473,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.020575,0.000473,-0.005748,0.249934,0,0);}
.mbb_c01107{transform:matrix(0.025455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.025455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.025455,0.000000,0.000000,0.250000,0,0);}
.m47_c01107{transform:matrix(0.031797,0.001209,-0.009503,0.249819,0,0);-ms-transform:matrix(0.031797,0.001209,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.031797,0.001209,-0.009503,0.249819,0,0);}
.mac_c01107{transform:matrix(0.035575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.035575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.035575,0.000000,0.000000,0.250000,0,0);}
.mb8_c01107{transform:matrix(0.038450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.038450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.038450,0.000000,0.000000,0.250000,0,0);}
.m0_c01107{transform:matrix(0.042425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.042425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.042425,0.000000,0.000000,0.250000,0,0);}
.mb9_c01107{transform:matrix(0.045000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.045000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.045000,0.000000,0.000000,0.250000,0,0);}
.mbf_c01107{transform:matrix(0.057365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.057365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.057365,0.000000,0.000000,0.250000,0,0);}
.m79_c01107{transform:matrix(0.074217,0.002226,-0.007497,0.249888,0,0);-ms-transform:matrix(0.074217,0.002226,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.074217,0.002226,-0.007497,0.249888,0,0);}
.mbc_c01107{transform:matrix(0.079550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.079550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.079550,0.000000,0.000000,0.250000,0,0);}
.ma8_c01107{transform:matrix(0.096775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096775,0.000000,0.000000,0.250000,0,0);}
.mb3_c01107{transform:matrix(0.104955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.104955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.104955,0.000000,0.000000,0.250000,0,0);}
.ma7_c01107{transform:matrix(0.111370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111370,0.000000,0.000000,0.250000,0,0);}
.mba_c01107{transform:matrix(0.137380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137380,0.000000,0.000000,0.250000,0,0);}
.ma0_c01107{transform:matrix(0.151145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151145,0.000000,0.000000,0.250000,0,0);}
.mc0_c01107{transform:matrix(0.154435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154435,0.000000,0.000000,0.250000,0,0);}
.mb6_c01107{transform:matrix(0.156695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156695,0.000000,0.000000,0.250000,0,0);}
.mab_c01107{transform:matrix(0.166105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166105,0.000000,0.000000,0.250000,0,0);}
.m68_c01107{transform:matrix(0.171378,0.004627,-0.006748,0.249909,0,0);-ms-transform:matrix(0.171378,0.004627,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.171378,0.004627,-0.006748,0.249909,0,0);}
.m52_c01107{transform:matrix(0.173764,0.006610,-0.009503,0.249819,0,0);-ms-transform:matrix(0.173764,0.006610,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.173764,0.006610,-0.009503,0.249819,0,0);}
.m67_c01107{transform:matrix(0.176626,0.004769,-0.006748,0.249909,0,0);-ms-transform:matrix(0.176626,0.004769,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.176626,0.004769,-0.006748,0.249909,0,0);}
.ma6_c01107{transform:matrix(0.181555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181555,0.000000,0.000000,0.250000,0,0);}
.m63_c01107{transform:matrix(0.182553,0.004929,-0.006748,0.249909,0,0);-ms-transform:matrix(0.182553,0.004929,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.182553,0.004929,-0.006748,0.249909,0,0);}
.m65_c01107{transform:matrix(0.184248,0.004975,-0.006748,0.249909,0,0);-ms-transform:matrix(0.184248,0.004975,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.184248,0.004975,-0.006748,0.249909,0,0);}
.m31_c01107{transform:matrix(0.185310,0.008718,-0.011749,0.249724,0,0);-ms-transform:matrix(0.185310,0.008718,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.185310,0.008718,-0.011749,0.249724,0,0);}
.m6a_c01107{transform:matrix(0.193499,0.005224,-0.006748,0.249909,0,0);-ms-transform:matrix(0.193499,0.005224,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.193499,0.005224,-0.006748,0.249909,0,0);}
.m99_c01107{transform:matrix(0.196598,0.002949,-0.003750,0.249972,0,0);-ms-transform:matrix(0.196598,0.002949,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.196598,0.002949,-0.003750,0.249972,0,0);}
.m7c_c01107{transform:matrix(0.199775,0.005993,-0.007497,0.249888,0,0);-ms-transform:matrix(0.199775,0.005993,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.199775,0.005993,-0.007497,0.249888,0,0);}
.m95_c01107{transform:matrix(0.207642,0.003115,-0.003750,0.249972,0,0);-ms-transform:matrix(0.207642,0.003115,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.207642,0.003115,-0.003750,0.249972,0,0);}
.m2e_c01107{transform:matrix(0.208150,0.009793,-0.011749,0.249724,0,0);-ms-transform:matrix(0.208150,0.009793,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.208150,0.009793,-0.011749,0.249724,0,0);}
.m6c_c01107{transform:matrix(0.208994,0.005643,-0.006748,0.249909,0,0);-ms-transform:matrix(0.208994,0.005643,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.208994,0.005643,-0.006748,0.249909,0,0);}
.m69_c01107{transform:matrix(0.213407,0.005762,-0.006748,0.249909,0,0);-ms-transform:matrix(0.213407,0.005762,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.213407,0.005762,-0.006748,0.249909,0,0);}
.m29_c01107{transform:matrix(0.219257,0.010315,-0.011749,0.249724,0,0);-ms-transform:matrix(0.219257,0.010315,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.219257,0.010315,-0.011749,0.249724,0,0);}
.m4a_c01107{transform:matrix(0.220181,0.008375,-0.009503,0.249819,0,0);-ms-transform:matrix(0.220181,0.008375,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.220181,0.008375,-0.009503,0.249819,0,0);}
.m7b_c01107{transform:matrix(0.221445,0.006643,-0.007497,0.249888,0,0);-ms-transform:matrix(0.221445,0.006643,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.221445,0.006643,-0.007497,0.249888,0,0);}
.m78_c01107{transform:matrix(0.221519,0.005981,-0.006748,0.249909,0,0);-ms-transform:matrix(0.221519,0.005981,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.221519,0.005981,-0.006748,0.249909,0,0);}
.m76_c01107{transform:matrix(0.222204,0.006000,-0.006748,0.249909,0,0);-ms-transform:matrix(0.222204,0.006000,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.222204,0.006000,-0.006748,0.249909,0,0);}
.m56_c01107{transform:matrix(0.222654,0.006012,-0.006748,0.249909,0,0);-ms-transform:matrix(0.222654,0.006012,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.222654,0.006012,-0.006748,0.249909,0,0);}
.m15_c01107{transform:matrix(0.223321,0.005136,-0.005748,0.249934,0,0);-ms-transform:matrix(0.223321,0.005136,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.223321,0.005136,-0.005748,0.249934,0,0);}
.m38_c01107{transform:matrix(0.223811,0.004700,-0.005249,0.249945,0,0);-ms-transform:matrix(0.223811,0.004700,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.223811,0.004700,-0.005249,0.249945,0,0);}
.m97_c01107{transform:matrix(0.223850,0.003358,-0.003750,0.249972,0,0);-ms-transform:matrix(0.223850,0.003358,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.223850,0.003358,-0.003750,0.249972,0,0);}
.m7d_c01107{transform:matrix(0.224299,0.006729,-0.007497,0.249888,0,0);-ms-transform:matrix(0.224299,0.006729,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.224299,0.006729,-0.007497,0.249888,0,0);}
.m50_c01107{transform:matrix(0.224378,0.008535,-0.009503,0.249819,0,0);-ms-transform:matrix(0.224378,0.008535,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.224378,0.008535,-0.009503,0.249819,0,0);}
.m64_c01107{transform:matrix(0.227792,0.006150,-0.006748,0.249909,0,0);-ms-transform:matrix(0.227792,0.006150,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.227792,0.006150,-0.006748,0.249909,0,0);}
.m1e_c01107{transform:matrix(0.232349,0.004879,-0.005249,0.249945,0,0);-ms-transform:matrix(0.232349,0.004879,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.232349,0.004879,-0.005249,0.249945,0,0);}
.m7f_c01107{transform:matrix(0.232800,0.006984,-0.007497,0.249888,0,0);-ms-transform:matrix(0.232800,0.006984,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.232800,0.006984,-0.007497,0.249888,0,0);}
.m17_c01107{transform:matrix(0.233383,0.005368,-0.005748,0.249934,0,0);-ms-transform:matrix(0.233383,0.005368,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.233383,0.005368,-0.005748,0.249934,0,0);}
.m3d_c01107{transform:matrix(0.233584,0.004905,-0.005249,0.249945,0,0);-ms-transform:matrix(0.233584,0.004905,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.233584,0.004905,-0.005249,0.249945,0,0);}
.m9b_c01107{transform:matrix(0.234279,0.003514,-0.003750,0.249972,0,0);-ms-transform:matrix(0.234279,0.003514,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.234279,0.003514,-0.003750,0.249972,0,0);}
.m51_c01107{transform:matrix(0.234326,0.008913,-0.009503,0.249819,0,0);-ms-transform:matrix(0.234326,0.008913,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.234326,0.008913,-0.009503,0.249819,0,0);}
.m40_c01107{transform:matrix(0.236608,0.004969,-0.005249,0.249945,0,0);-ms-transform:matrix(0.236608,0.004969,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.236608,0.004969,-0.005249,0.249945,0,0);}
.m82_c01107{transform:matrix(0.237398,0.007122,-0.007497,0.249888,0,0);-ms-transform:matrix(0.237398,0.007122,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.237398,0.007122,-0.007497,0.249888,0,0);}
.md_c01107{transform:matrix(0.237832,0.005470,-0.005748,0.249934,0,0);-ms-transform:matrix(0.237832,0.005470,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.237832,0.005470,-0.005748,0.249934,0,0);}
.m5d_c01107{transform:matrix(0.240457,0.006492,-0.006748,0.249909,0,0);-ms-transform:matrix(0.240457,0.006492,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.240457,0.006492,-0.006748,0.249909,0,0);}
.m2d_c01107{transform:matrix(0.242781,0.011422,-0.011749,0.249724,0,0);-ms-transform:matrix(0.242781,0.011422,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.242781,0.011422,-0.011749,0.249724,0,0);}
.m6b_c01107{transform:matrix(0.243301,0.006569,-0.006748,0.249909,0,0);-ms-transform:matrix(0.243301,0.006569,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.243301,0.006569,-0.006748,0.249909,0,0);}
.m4b_c01107{transform:matrix(0.243819,0.009274,-0.009503,0.249819,0,0);-ms-transform:matrix(0.243819,0.009274,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.243819,0.009274,-0.009503,0.249819,0,0);}
.m57_c01107{transform:matrix(0.245775,0.006636,-0.006748,0.249909,0,0);-ms-transform:matrix(0.245775,0.006636,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.245775,0.006636,-0.006748,0.249909,0,0);}
.m90_c01107{transform:matrix(0.247652,0.003715,-0.003750,0.249972,0,0);-ms-transform:matrix(0.247652,0.003715,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.247652,0.003715,-0.003750,0.249972,0,0);}
.m2a_c01107{transform:matrix(0.248530,0.011693,-0.011749,0.249724,0,0);-ms-transform:matrix(0.248530,0.011693,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.248530,0.011693,-0.011749,0.249724,0,0);}
.m21_c01107{transform:matrix(0.248630,0.005221,-0.005249,0.249945,0,0);-ms-transform:matrix(0.248630,0.005221,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.248630,0.005221,-0.005249,0.249945,0,0);}
.m89_c01107{transform:matrix(0.250179,0.006755,-0.006748,0.249909,0,0);-ms-transform:matrix(0.250179,0.006755,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.250179,0.006755,-0.006748,0.249909,0,0);}
.m4e_c01107{transform:matrix(0.251418,0.009563,-0.009503,0.249819,0,0);-ms-transform:matrix(0.251418,0.009563,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.251418,0.009563,-0.009503,0.249819,0,0);}
.m74_c01107{transform:matrix(0.252588,0.006820,-0.006748,0.249909,0,0);-ms-transform:matrix(0.252588,0.006820,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.252588,0.006820,-0.006748,0.249909,0,0);}
.m87_c01107{transform:matrix(0.253133,0.006835,-0.006748,0.249909,0,0);-ms-transform:matrix(0.253133,0.006835,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.253133,0.006835,-0.006748,0.249909,0,0);}
.m61_c01107{transform:matrix(0.253992,0.006858,-0.006748,0.249909,0,0);-ms-transform:matrix(0.253992,0.006858,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.253992,0.006858,-0.006748,0.249909,0,0);}
.m3c_c01107{transform:matrix(0.254504,0.005345,-0.005249,0.249945,0,0);-ms-transform:matrix(0.254504,0.005345,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.254504,0.005345,-0.005249,0.249945,0,0);}
.m39_c01107{transform:matrix(0.254689,0.005348,-0.005249,0.249945,0,0);-ms-transform:matrix(0.254689,0.005348,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.254689,0.005348,-0.005249,0.249945,0,0);}
.m4d_c01107{transform:matrix(0.254896,0.009696,-0.009503,0.249819,0,0);-ms-transform:matrix(0.254896,0.009696,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.254896,0.009696,-0.009503,0.249819,0,0);}
.m72_c01107{transform:matrix(0.254967,0.006884,-0.006748,0.249909,0,0);-ms-transform:matrix(0.254967,0.006884,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.254967,0.006884,-0.006748,0.249909,0,0);}
.mb4_c01107{transform:matrix(0.256540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256540,0.000000,0.000000,0.250000,0,0);}
.m8c_c01107{transform:matrix(0.257306,0.007976,-0.007746,0.249880,0,0);-ms-transform:matrix(0.257306,0.007976,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.257306,0.007976,-0.007746,0.249880,0,0);}
.m24_c01107{transform:matrix(0.258523,0.005429,-0.005249,0.249945,0,0);-ms-transform:matrix(0.258523,0.005429,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.258523,0.005429,-0.005249,0.249945,0,0);}
.m30_c01107{transform:matrix(0.259373,0.012203,-0.011749,0.249724,0,0);-ms-transform:matrix(0.259373,0.012203,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.259373,0.012203,-0.011749,0.249724,0,0);}
.m93_c01107{transform:matrix(0.261341,0.003920,-0.003750,0.249972,0,0);-ms-transform:matrix(0.261341,0.003920,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.261341,0.003920,-0.003750,0.249972,0,0);}
.m43_c01107{transform:matrix(0.261451,0.009945,-0.009503,0.249819,0,0);-ms-transform:matrix(0.261451,0.009945,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.261451,0.009945,-0.009503,0.249819,0,0);}
.m9c_c01107{transform:matrix(0.261641,0.003925,-0.003750,0.249972,0,0);-ms-transform:matrix(0.261641,0.003925,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.261641,0.003925,-0.003750,0.249972,0,0);}
.m45_c01107{transform:matrix(0.261741,0.009956,-0.009503,0.249819,0,0);-ms-transform:matrix(0.261741,0.009956,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.261741,0.009956,-0.009503,0.249819,0,0);}
.m70_c01107{transform:matrix(0.263494,0.007114,-0.006748,0.249909,0,0);-ms-transform:matrix(0.263494,0.007114,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.263494,0.007114,-0.006748,0.249909,0,0);}
.m48_c01107{transform:matrix(0.264569,0.010064,-0.009503,0.249819,0,0);-ms-transform:matrix(0.264569,0.010064,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.264569,0.010064,-0.009503,0.249819,0,0);}
.m54_c01107{transform:matrix(0.264664,0.010067,-0.009503,0.249819,0,0);-ms-transform:matrix(0.264664,0.010067,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.264664,0.010067,-0.009503,0.249819,0,0);}
.m36_c01107{transform:matrix(0.264677,0.005558,-0.005249,0.249945,0,0);-ms-transform:matrix(0.264677,0.005558,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.264677,0.005558,-0.005249,0.249945,0,0);}
.m12_c01107{transform:matrix(0.265115,0.006098,-0.005748,0.249934,0,0);-ms-transform:matrix(0.265115,0.006098,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.265115,0.006098,-0.005748,0.249934,0,0);}
.m22_c01107{transform:matrix(0.265506,0.005576,-0.005249,0.249945,0,0);-ms-transform:matrix(0.265506,0.005576,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.265506,0.005576,-0.005249,0.249945,0,0);}
.m42_c01107{transform:matrix(0.265558,0.010101,-0.009503,0.249819,0,0);-ms-transform:matrix(0.265558,0.010101,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.265558,0.010101,-0.009503,0.249819,0,0);}
.m1d_c01107{transform:matrix(0.265966,0.005585,-0.005249,0.249945,0,0);-ms-transform:matrix(0.265966,0.005585,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.265966,0.005585,-0.005249,0.249945,0,0);}
.m11_c01107{transform:matrix(0.266515,0.006130,-0.005748,0.249934,0,0);-ms-transform:matrix(0.266515,0.006130,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.266515,0.006130,-0.005748,0.249934,0,0);}
.m59_c01107{transform:matrix(0.267767,0.007230,-0.006748,0.249909,0,0);-ms-transform:matrix(0.267767,0.007230,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.267767,0.007230,-0.006748,0.249909,0,0);}
.m46_c01107{transform:matrix(0.270449,0.010287,-0.009503,0.249819,0,0);-ms-transform:matrix(0.270449,0.010287,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.270449,0.010287,-0.009503,0.249819,0,0);}
.m19_c01107{transform:matrix(0.270983,0.006233,-0.005748,0.249934,0,0);-ms-transform:matrix(0.270983,0.006233,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.270983,0.006233,-0.005748,0.249934,0,0);}
.m44_c01107{transform:matrix(0.271099,0.010312,-0.009503,0.249819,0,0);-ms-transform:matrix(0.271099,0.010312,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.271099,0.010312,-0.009503,0.249819,0,0);}
.m3a_c01107{transform:matrix(0.272055,0.005713,-0.005249,0.249945,0,0);-ms-transform:matrix(0.272055,0.005713,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.272055,0.005713,-0.005249,0.249945,0,0);}
.maa_c01107{transform:matrix(0.272100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272100,0.000000,0.000000,0.250000,0,0);}
.m1a_c01107{transform:matrix(0.272423,0.006266,-0.005748,0.249934,0,0);-ms-transform:matrix(0.272423,0.006266,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.272423,0.006266,-0.005748,0.249934,0,0);}
.m55_c01107{transform:matrix(0.272486,0.007357,-0.006748,0.249909,0,0);-ms-transform:matrix(0.272486,0.007357,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.272486,0.007357,-0.006748,0.249909,0,0);}
.m2c_c01107{transform:matrix(0.274676,0.012923,-0.011749,0.249724,0,0);-ms-transform:matrix(0.274676,0.012923,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.274676,0.012923,-0.011749,0.249724,0,0);}
.m98_c01107{transform:matrix(0.275084,0.004126,-0.003750,0.249972,0,0);-ms-transform:matrix(0.275084,0.004126,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.275084,0.004126,-0.003750,0.249972,0,0);}
.m32_c01107{transform:matrix(0.275315,0.012953,-0.011749,0.249724,0,0);-ms-transform:matrix(0.275315,0.012953,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.275315,0.012953,-0.011749,0.249724,0,0);}
.m81_c01107{transform:matrix(0.275936,0.008278,-0.007497,0.249888,0,0);-ms-transform:matrix(0.275936,0.008278,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.275936,0.008278,-0.007497,0.249888,0,0);}
.m62_c01107{transform:matrix(0.275959,0.007451,-0.006748,0.249909,0,0);-ms-transform:matrix(0.275959,0.007451,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.275959,0.007451,-0.006748,0.249909,0,0);}
.m23_c01107{transform:matrix(0.276054,0.005797,-0.005249,0.249945,0,0);-ms-transform:matrix(0.276054,0.005797,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.276054,0.005797,-0.005249,0.249945,0,0);}
.m34_c01107{transform:matrix(0.277219,0.005822,-0.005249,0.249945,0,0);-ms-transform:matrix(0.277219,0.005822,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.277219,0.005822,-0.005249,0.249945,0,0);}
.ma_c01107{transform:matrix(0.277367,0.006379,-0.005748,0.249934,0,0);-ms-transform:matrix(0.277367,0.006379,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.277367,0.006379,-0.005748,0.249934,0,0);}
.m2f_c01107{transform:matrix(0.277403,0.013051,-0.011749,0.249724,0,0);-ms-transform:matrix(0.277403,0.013051,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.277403,0.013051,-0.011749,0.249724,0,0);}
.m1c_c01107{transform:matrix(0.277574,0.005829,-0.005249,0.249945,0,0);-ms-transform:matrix(0.277574,0.005829,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.277574,0.005829,-0.005249,0.249945,0,0);}
.m8_c01107{transform:matrix(0.277682,0.006387,-0.005748,0.249934,0,0);-ms-transform:matrix(0.277682,0.006387,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.277682,0.006387,-0.005748,0.249934,0,0);}
.m58_c01107{transform:matrix(0.279668,0.007551,-0.006748,0.249909,0,0);-ms-transform:matrix(0.279668,0.007551,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.279668,0.007551,-0.006748,0.249909,0,0);}
.m25_c01107{transform:matrix(0.280378,0.005888,-0.005249,0.249945,0,0);-ms-transform:matrix(0.280378,0.005888,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.280378,0.005888,-0.005249,0.249945,0,0);}
.m5a_c01107{transform:matrix(0.281233,0.007593,-0.006748,0.249909,0,0);-ms-transform:matrix(0.281233,0.007593,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.281233,0.007593,-0.006748,0.249909,0,0);}
.m71_c01107{transform:matrix(0.282942,0.007639,-0.006748,0.249909,0,0);-ms-transform:matrix(0.282942,0.007639,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.282942,0.007639,-0.006748,0.249909,0,0);}
.m13_c01107{transform:matrix(0.283695,0.006525,-0.005748,0.249934,0,0);-ms-transform:matrix(0.283695,0.006525,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.283695,0.006525,-0.005748,0.249934,0,0);}
.m9d_c01107{transform:matrix(0.285948,0.004289,-0.003750,0.249972,0,0);-ms-transform:matrix(0.285948,0.004289,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.285948,0.004289,-0.003750,0.249972,0,0);}
.m1_c01107{transform:matrix(0.288530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288530,0.000000,0.000000,0.250000,0,0);}
.m3b_c01107{transform:matrix(0.289796,0.006086,-0.005249,0.249945,0,0);-ms-transform:matrix(0.289796,0.006086,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.289796,0.006086,-0.005249,0.249945,0,0);}
.m60_c01107{transform:matrix(0.291524,0.007871,-0.006748,0.249909,0,0);-ms-transform:matrix(0.291524,0.007871,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.291524,0.007871,-0.006748,0.249909,0,0);}
.ma4_c01107{transform:matrix(0.292115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292115,0.000000,0.000000,0.250000,0,0);}
.m14_c01107{transform:matrix(0.292423,0.006726,-0.005748,0.249934,0,0);-ms-transform:matrix(0.292423,0.006726,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.292423,0.006726,-0.005748,0.249934,0,0);}
.m28_c01107{transform:matrix(0.293301,0.013799,-0.011749,0.249724,0,0);-ms-transform:matrix(0.293301,0.013799,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.293301,0.013799,-0.011749,0.249724,0,0);}
.m84_c01107{transform:matrix(0.294642,0.008839,-0.007497,0.249888,0,0);-ms-transform:matrix(0.294642,0.008839,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.294642,0.008839,-0.007497,0.249888,0,0);}
.m16_c01107{transform:matrix(0.295162,0.006789,-0.005748,0.249934,0,0);-ms-transform:matrix(0.295162,0.006789,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.295162,0.006789,-0.005748,0.249934,0,0);}
.m20_c01107{transform:matrix(0.295200,0.006199,-0.005249,0.249945,0,0);-ms-transform:matrix(0.295200,0.006199,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.295200,0.006199,-0.005249,0.249945,0,0);}
.m9a_c01107{transform:matrix(0.295542,0.004433,-0.003750,0.249972,0,0);-ms-transform:matrix(0.295542,0.004433,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.295542,0.004433,-0.003750,0.249972,0,0);}
.m7e_c01107{transform:matrix(0.296382,0.008891,-0.007497,0.249888,0,0);-ms-transform:matrix(0.296382,0.008891,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.296382,0.008891,-0.007497,0.249888,0,0);}
.m9_c01107{transform:matrix(0.296422,0.006818,-0.005748,0.249934,0,0);-ms-transform:matrix(0.296422,0.006818,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.296422,0.006818,-0.005748,0.249934,0,0);}
.m85_c01107{transform:matrix(0.296807,0.008014,-0.006748,0.249909,0,0);-ms-transform:matrix(0.296807,0.008014,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.296807,0.008014,-0.006748,0.249909,0,0);}
.m5b_c01107{transform:matrix(0.297467,0.008032,-0.006748,0.249909,0,0);-ms-transform:matrix(0.297467,0.008032,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.297467,0.008032,-0.006748,0.249909,0,0);}
.mad_c01107{transform:matrix(0.300185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300185,0.000000,0.000000,0.250000,0,0);}
.m3f_c01107{transform:matrix(0.300199,0.006304,-0.005249,0.249945,0,0);-ms-transform:matrix(0.300199,0.006304,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.300199,0.006304,-0.005249,0.249945,0,0);}
.m75_c01107{transform:matrix(0.300785,0.008121,-0.006748,0.249909,0,0);-ms-transform:matrix(0.300785,0.008121,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.300785,0.008121,-0.006748,0.249909,0,0);}
.m9e_c01107{transform:matrix(0.301066,0.004516,-0.003750,0.249972,0,0);-ms-transform:matrix(0.301066,0.004516,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.301066,0.004516,-0.003750,0.249972,0,0);}
.ma9_c01107{transform:matrix(0.303960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303960,0.000000,0.000000,0.250000,0,0);}
.m5f_c01107{transform:matrix(0.305309,0.008243,-0.006748,0.249909,0,0);-ms-transform:matrix(0.305309,0.008243,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.305309,0.008243,-0.006748,0.249909,0,0);}
.m66_c01107{transform:matrix(0.306218,0.008268,-0.006748,0.249909,0,0);-ms-transform:matrix(0.306218,0.008268,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.306218,0.008268,-0.006748,0.249909,0,0);}
.m6f_c01107{transform:matrix(0.307208,0.008295,-0.006748,0.249909,0,0);-ms-transform:matrix(0.307208,0.008295,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.307208,0.008295,-0.006748,0.249909,0,0);}
.m6d_c01107{transform:matrix(0.308313,0.008324,-0.006748,0.249909,0,0);-ms-transform:matrix(0.308313,0.008324,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.308313,0.008324,-0.006748,0.249909,0,0);}
.m88_c01107{transform:matrix(0.308363,0.008326,-0.006748,0.249909,0,0);-ms-transform:matrix(0.308363,0.008326,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.308363,0.008326,-0.006748,0.249909,0,0);}
.mc_c01107{transform:matrix(0.308768,0.007102,-0.005748,0.249934,0,0);-ms-transform:matrix(0.308768,0.007102,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.308768,0.007102,-0.005748,0.249934,0,0);}
.m37_c01107{transform:matrix(0.309067,0.006490,-0.005249,0.249945,0,0);-ms-transform:matrix(0.309067,0.006490,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.309067,0.006490,-0.005249,0.249945,0,0);}
.m6_c01107{transform:matrix(0.310308,0.007137,-0.005748,0.249934,0,0);-ms-transform:matrix(0.310308,0.007137,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.310308,0.007137,-0.005748,0.249934,0,0);}
.me_c01107{transform:matrix(0.313727,0.007216,-0.005748,0.249934,0,0);-ms-transform:matrix(0.313727,0.007216,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.313727,0.007216,-0.005748,0.249934,0,0);}
.m5c_c01107{transform:matrix(0.314275,0.008485,-0.006748,0.249909,0,0);-ms-transform:matrix(0.314275,0.008485,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.314275,0.008485,-0.006748,0.249909,0,0);}
.m83_c01107{transform:matrix(0.318897,0.009567,-0.007497,0.249888,0,0);-ms-transform:matrix(0.318897,0.009567,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.318897,0.009567,-0.007497,0.249888,0,0);}
.m5_c01107{transform:matrix(0.320150,0.007363,-0.005748,0.249934,0,0);-ms-transform:matrix(0.320150,0.007363,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.320150,0.007363,-0.005748,0.249934,0,0);}
.m53_c01107{transform:matrix(0.324720,0.012352,-0.009503,0.249819,0,0);-ms-transform:matrix(0.324720,0.012352,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.324720,0.012352,-0.009503,0.249819,0,0);}
.m33_c01107{transform:matrix(0.326283,0.006852,-0.005249,0.249945,0,0);-ms-transform:matrix(0.326283,0.006852,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.326283,0.006852,-0.005249,0.249945,0,0);}
.maf_c01107{transform:matrix(0.327565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327565,0.000000,0.000000,0.250000,0,0);}
.m7a_c01107{transform:matrix(0.328302,0.009849,-0.007497,0.249888,0,0);-ms-transform:matrix(0.328302,0.009849,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.328302,0.009849,-0.007497,0.249888,0,0);}
.m4f_c01107{transform:matrix(0.332754,0.012657,-0.009503,0.249819,0,0);-ms-transform:matrix(0.332754,0.012657,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.332754,0.012657,-0.009503,0.249819,0,0);}
.m91_c01107{transform:matrix(0.333602,0.005004,-0.003750,0.249972,0,0);-ms-transform:matrix(0.333602,0.005004,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.333602,0.005004,-0.003750,0.249972,0,0);}
.m35_c01107{transform:matrix(0.337591,0.007089,-0.005249,0.249945,0,0);-ms-transform:matrix(0.337591,0.007089,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.337591,0.007089,-0.005249,0.249945,0,0);}
.m5e_c01107{transform:matrix(0.344070,0.009290,-0.006748,0.249909,0,0);-ms-transform:matrix(0.344070,0.009290,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.344070,0.009290,-0.006748,0.249909,0,0);}
.m80_c01107{transform:matrix(0.347634,0.010429,-0.007497,0.249888,0,0);-ms-transform:matrix(0.347634,0.010429,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.347634,0.010429,-0.007497,0.249888,0,0);}
.m49_c01107{transform:matrix(0.349897,0.013309,-0.009503,0.249819,0,0);-ms-transform:matrix(0.349897,0.013309,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.349897,0.013309,-0.009503,0.249819,0,0);}
.mf_c01107{transform:matrix(0.356011,0.008188,-0.005748,0.249934,0,0);-ms-transform:matrix(0.356011,0.008188,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.356011,0.008188,-0.005748,0.249934,0,0);}
.m10_c01107{transform:matrix(0.356016,0.008188,-0.005748,0.249934,0,0);-ms-transform:matrix(0.356016,0.008188,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.356016,0.008188,-0.005748,0.249934,0,0);}
.m2b_c01107{transform:matrix(0.361555,0.017010,-0.011749,0.249724,0,0);-ms-transform:matrix(0.361555,0.017010,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.361555,0.017010,-0.011749,0.249724,0,0);}
.m26_c01107{transform:matrix(0.363235,0.007628,-0.005249,0.249945,0,0);-ms-transform:matrix(0.363235,0.007628,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.363235,0.007628,-0.005249,0.249945,0,0);}
.m77_c01107{transform:matrix(0.374813,0.010120,-0.006748,0.249909,0,0);-ms-transform:matrix(0.374813,0.010120,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.374813,0.010120,-0.006748,0.249909,0,0);}
.mb0_c01107{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.m8e_c01107{transform:matrix(0.377408,0.005661,-0.003750,0.249972,0,0);-ms-transform:matrix(0.377408,0.005661,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.377408,0.005661,-0.003750,0.249972,0,0);}
.mb_c01107{transform:matrix(0.388092,0.008926,-0.005748,0.249934,0,0);-ms-transform:matrix(0.388092,0.008926,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.388092,0.008926,-0.005748,0.249934,0,0);}
.m27_c01107{transform:matrix(0.394938,0.018581,-0.011749,0.249724,0,0);-ms-transform:matrix(0.394938,0.018581,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.394938,0.018581,-0.011749,0.249724,0,0);}
.m8b_c01107{transform:matrix(0.402743,0.010874,-0.006748,0.249909,0,0);-ms-transform:matrix(0.402743,0.010874,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.402743,0.010874,-0.006748,0.249909,0,0);}
.m41_c01107{transform:matrix(0.404403,0.015383,-0.009503,0.249819,0,0);-ms-transform:matrix(0.404403,0.015383,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.404403,0.015383,-0.009503,0.249819,0,0);}
.m6e_c01107{transform:matrix(0.436346,0.011781,-0.006748,0.249909,0,0);-ms-transform:matrix(0.436346,0.011781,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.436346,0.011781,-0.006748,0.249909,0,0);}
.m8a_c01107{transform:matrix(0.437011,0.011799,-0.006748,0.249909,0,0);-ms-transform:matrix(0.437011,0.011799,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.437011,0.011799,-0.006748,0.249909,0,0);}
.m73_c01107{transform:matrix(0.449146,0.012127,-0.006748,0.249909,0,0);-ms-transform:matrix(0.449146,0.012127,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.449146,0.012127,-0.006748,0.249909,0,0);}
.m18_c01107{transform:matrix(0.455010,0.010465,-0.005748,0.249934,0,0);-ms-transform:matrix(0.455010,0.010465,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.455010,0.010465,-0.005748,0.249934,0,0);}
.m86_c01107{transform:matrix(0.461252,0.012454,-0.006748,0.249909,0,0);-ms-transform:matrix(0.461252,0.012454,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.461252,0.012454,-0.006748,0.249909,0,0);}
.m1f_c01107{transform:matrix(0.462773,0.009718,-0.005249,0.249945,0,0);-ms-transform:matrix(0.462773,0.009718,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.462773,0.009718,-0.005249,0.249945,0,0);}
.m4_c01107{transform:matrix(0.467806,0.010760,-0.005748,0.249934,0,0);-ms-transform:matrix(0.467806,0.010760,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.467806,0.010760,-0.005748,0.249934,0,0);}
.mae_c01107{transform:matrix(0.506015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506015,0.000000,0.000000,0.250000,0,0);}
.m3e_c01107{transform:matrix(0.510367,0.010718,-0.005249,0.249945,0,0);-ms-transform:matrix(0.510367,0.010718,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.510367,0.010718,-0.005249,0.249945,0,0);}
.ma5_c01107{transform:matrix(0.517990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517990,0.000000,0.000000,0.250000,0,0);}
.m8f_c01107{transform:matrix(0.559092,0.008386,-0.003750,0.249972,0,0);-ms-transform:matrix(0.559092,0.008386,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.559092,0.008386,-0.003750,0.249972,0,0);}
.m9f_c01107{transform:matrix(0.566285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566285,0.000000,0.000000,0.250000,0,0);}
.m94_c01107{transform:matrix(0.596803,0.008952,-0.003750,0.249972,0,0);-ms-transform:matrix(0.596803,0.008952,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.596803,0.008952,-0.003750,0.249972,0,0);}
.m7_c01107{transform:matrix(0.601936,0.013845,-0.005748,0.249934,0,0);-ms-transform:matrix(0.601936,0.013845,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.601936,0.013845,-0.005748,0.249934,0,0);}
.m1b_c01107{transform:matrix(0.651346,0.013678,-0.005249,0.249945,0,0);-ms-transform:matrix(0.651346,0.013678,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.651346,0.013678,-0.005249,0.249945,0,0);}
.mb7_c01107{transform:matrix(0.673455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.673455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.673455,0.000000,0.000000,0.250000,0,0);}
.m3_c01107{transform:matrix(0.678975,0.015616,-0.005748,0.249934,0,0);-ms-transform:matrix(0.678975,0.015616,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.678975,0.015616,-0.005748,0.249934,0,0);}
.m92_c01107{transform:matrix(0.691822,0.010377,-0.003750,0.249972,0,0);-ms-transform:matrix(0.691822,0.010377,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.691822,0.010377,-0.003750,0.249972,0,0);}
.mbe_c01107{transform:matrix(0.704540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.704540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.704540,0.000000,0.000000,0.250000,0,0);}
.mb2_c01107{transform:matrix(0.722120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.722120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.722120,0.000000,0.000000,0.250000,0,0);}
.ma1_c01107{transform:matrix(0.725605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.725605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.725605,0.000000,0.000000,0.250000,0,0);}
.m8d_c01107{transform:matrix(0.745097,0.023098,-0.007746,0.249880,0,0);-ms-transform:matrix(0.745097,0.023098,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.745097,0.023098,-0.007746,0.249880,0,0);}
.mb5_c01107{transform:matrix(0.782590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.782590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.782590,0.000000,0.000000,0.250000,0,0);}
.ma2_c01107{transform:matrix(0.840065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.840065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.840065,0.000000,0.000000,0.250000,0,0);}
.m4c_c01107{transform:matrix(0.931127,0.035418,-0.009503,0.249819,0,0);-ms-transform:matrix(0.931127,0.035418,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.931127,0.035418,-0.009503,0.249819,0,0);}
.mbd_c01107{transform:matrix(1.034145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.034145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.034145,0.000000,0.000000,0.250000,0,0);}
.mb1_c01107{transform:matrix(1.329870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.329870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.329870,0.000000,0.000000,0.250000,0,0);}
.ma3_c01107{transform:matrix(2.367020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.367020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.367020,0.000000,0.000000,0.250000,0,0);}
.v0_c01107{vertical-align:0.000000px;}
.ls0_c01107{letter-spacing:0.000000px;}
.sc__c01107{text-shadow:none;}
.sc0_c01107{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__c01107{-webkit-text-stroke:0px transparent;}
.sc0_c01107{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01107{word-spacing:0.000000px;}
.fc0_c01107{color:transparent;}
.fs0_c01107{font-size:18.000000px;}
.fsf_c01107{font-size:24.000000px;}
.fs10_c01107{font-size:30.000000px;}
.fsc_c01107{font-size:72.034588px;}
.fs5_c01107{font-size:77.978352px;}
.fs4_c01107{font-size:78.008190px;}
.fs3_c01107{font-size:78.017197px;}
.fs2_c01107{font-size:78.020628px;}
.fs7_c01107{font-size:78.028426px;}
.fs6_c01107{font-size:83.976687px;}
.fs1_c01107{font-size:84.022215px;}
.fs9_c01107{font-size:84.030612px;}
.fsd_c01107{font-size:90.010124px;}
.fsb_c01107{font-size:90.032799px;}
.fse_c01107{font-size:96.010799px;}
.fsa_c01107{font-size:96.043190px;}
.fs8_c01107{font-size:114.041545px;}
.y0_c01107{bottom:0.000000px;}
.ya6_c01107{bottom:14.580000px;}
.ya5_c01107{bottom:15.120000px;}
.ya4_c01107{bottom:21.330000px;}
.ya3_c01107{bottom:49.140000px;}
.ya1_c01107{bottom:181.170000px;}
.ya0_c01107{bottom:191.700000px;}
.ya2_c01107{bottom:294.300000px;}
.y9f_c01107{bottom:350.190000px;}
.y9e_c01107{bottom:355.273155px;}
.y9d_c01107{bottom:356.319668px;}
.y9c_c01107{bottom:356.914013px;}
.y9b_c01107{bottom:357.349995px;}
.y9a_c01107{bottom:358.292992px;}
.y99_c01107{bottom:359.017702px;}
.y98_c01107{bottom:359.507475px;}
.y97_c01107{bottom:360.429585px;}
.y96_c01107{bottom:360.671662px;}
.y95_c01107{bottom:389.238555px;}
.y94_c01107{bottom:389.650598px;}
.y93_c01107{bottom:390.254228px;}
.y92_c01107{bottom:391.562287px;}
.y91_c01107{bottom:392.079900px;}
.y90_c01107{bottom:393.681540px;}
.y8f_c01107{bottom:394.763070px;}
.y8e_c01107{bottom:395.827500px;}
.y8d_c01107{bottom:562.375381px;}
.y8c_c01107{bottom:563.296500px;}
.y8b_c01107{bottom:567.127144px;}
.y8a_c01107{bottom:569.098847px;}
.y89_c01107{bottom:571.623009px;}
.y88_c01107{bottom:572.342289px;}
.y87_c01107{bottom:573.641610px;}
.y86_c01107{bottom:575.804391px;}
.y85_c01107{bottom:578.598000px;}
.y84_c01107{bottom:595.395450px;}
.y83_c01107{bottom:597.518640px;}
.y82_c01107{bottom:598.409820px;}
.y81_c01107{bottom:599.853825px;}
.y80_c01107{bottom:601.721640px;}
.y7f_c01107{bottom:604.070235px;}
.y7e_c01107{bottom:604.985850px;}
.y7d_c01107{bottom:608.286510px;}
.y7c_c01107{bottom:609.546645px;}
.y7b_c01107{bottom:610.969590px;}
.y7a_c01107{bottom:612.767970px;}
.y79_c01107{bottom:613.993500px;}
.y78_c01107{bottom:631.447515px;}
.y77_c01107{bottom:633.195187px;}
.y76_c01107{bottom:634.967857px;}
.y75_c01107{bottom:636.562060px;}
.y74_c01107{bottom:640.592439px;}
.y73_c01107{bottom:641.613930px;}
.y72_c01107{bottom:646.500987px;}
.y71_c01107{bottom:649.305154px;}
.y70_c01107{bottom:651.222622px;}
.y6f_c01107{bottom:654.303099px;}
.y6e_c01107{bottom:655.302469px;}
.y6d_c01107{bottom:657.167674px;}
.y6c_c01107{bottom:664.606705px;}
.y6b_c01107{bottom:665.918436px;}
.y6a_c01107{bottom:668.658609px;}
.y69_c01107{bottom:669.362322px;}
.y68_c01107{bottom:671.800753px;}
.y67_c01107{bottom:673.219557px;}
.y66_c01107{bottom:674.416924px;}
.y65_c01107{bottom:676.107664px;}
.y64_c01107{bottom:676.518666px;}
.y63_c01107{bottom:679.327359px;}
.y62_c01107{bottom:680.523835px;}
.y61_c01107{bottom:701.301817px;}
.y60_c01107{bottom:702.249355px;}
.y5f_c01107{bottom:702.775612px;}
.y5e_c01107{bottom:704.529505px;}
.y5d_c01107{bottom:705.387457px;}
.y5c_c01107{bottom:706.416562px;}
.y5b_c01107{bottom:708.306940px;}
.y5a_c01107{bottom:711.463551px;}
.y59_c01107{bottom:712.569849px;}
.y58_c01107{bottom:713.747467px;}
.y57_c01107{bottom:714.333826px;}
.y56_c01107{bottom:715.187809px;}
.y55_c01107{bottom:718.804500px;}
.y54_c01107{bottom:735.454395px;}
.y53_c01107{bottom:736.748277px;}
.y52_c01107{bottom:737.462574px;}
.y51_c01107{bottom:738.406839px;}
.y50_c01107{bottom:739.603593px;}
.y4f_c01107{bottom:740.955594px;}
.y4e_c01107{bottom:741.766596px;}
.y4d_c01107{bottom:743.459143px;}
.y4c_c01107{bottom:746.230644px;}
.y4b_c01107{bottom:747.077251px;}
.y4a_c01107{bottom:747.853470px;}
.y49_c01107{bottom:748.766697px;}
.y48_c01107{bottom:750.468412px;}
.y47_c01107{bottom:750.899598px;}
.y46_c01107{bottom:772.895553px;}
.y45_c01107{bottom:774.825630px;}
.y44_c01107{bottom:777.892971px;}
.y43_c01107{bottom:780.245760px;}
.y42_c01107{bottom:782.782545px;}
.y41_c01107{bottom:785.194500px;}
.y40_c01107{bottom:807.987033px;}
.y3f_c01107{bottom:808.753144px;}
.y3e_c01107{bottom:810.066569px;}
.y3d_c01107{bottom:810.778941px;}
.y3c_c01107{bottom:811.908815px;}
.y3b_c01107{bottom:812.853878px;}
.y3a_c01107{bottom:814.229703px;}
.y39_c01107{bottom:814.920340px;}
.y38_c01107{bottom:816.536165px;}
.y37_c01107{bottom:817.262365px;}
.y36_c01107{bottom:818.611762px;}
.y35_c01107{bottom:820.173060px;}
.y34_c01107{bottom:820.928997px;}
.y33_c01107{bottom:821.646000px;}
.y32_c01107{bottom:844.973175px;}
.y31_c01107{bottom:846.290467px;}
.y30_c01107{bottom:849.786351px;}
.y2f_c01107{bottom:851.467353px;}
.y2e_c01107{bottom:856.481877px;}
.y2d_c01107{bottom:858.675414px;}
.y2c_c01107{bottom:861.259803px;}
.y2b_c01107{bottom:863.030904px;}
.y2a_c01107{bottom:864.179490px;}
.y29_c01107{bottom:865.876918px;}
.y28_c01107{bottom:871.407643px;}
.y27_c01107{bottom:874.135500px;}
.y26_c01107{bottom:879.157280px;}
.y25_c01107{bottom:880.758740px;}
.y24_c01107{bottom:881.766235px;}
.y23_c01107{bottom:883.066524px;}
.y22_c01107{bottom:885.342903px;}
.y21_c01107{bottom:886.042361px;}
.y20_c01107{bottom:887.548502px;}
.y1f_c01107{bottom:887.928896px;}
.y1e_c01107{bottom:889.297413px;}
.y1d_c01107{bottom:889.966441px;}
.y1c_c01107{bottom:891.422529px;}
.y1b_c01107{bottom:892.828500px;}
.y1a_c01107{bottom:913.415212px;}
.y19_c01107{bottom:914.205177px;}
.y18_c01107{bottom:915.605554px;}
.y17_c01107{bottom:916.538587px;}
.y16_c01107{bottom:918.438135px;}
.y15_c01107{bottom:919.184716px;}
.y14_c01107{bottom:920.778825px;}
.y13_c01107{bottom:922.347714px;}
.y12_c01107{bottom:922.896511px;}
.y11_c01107{bottom:925.313479px;}
.y10_c01107{bottom:927.769587px;}
.yf_c01107{bottom:928.466352px;}
.ye_c01107{bottom:949.347493px;}
.yd_c01107{bottom:950.072787px;}
.yc_c01107{bottom:952.124916px;}
.yb_c01107{bottom:952.970097px;}
.ya_c01107{bottom:954.884847px;}
.y9_c01107{bottom:957.133143px;}
.y8_c01107{bottom:958.672395px;}
.y7_c01107{bottom:960.207300px;}
.y6_c01107{bottom:960.812016px;}
.y5_c01107{bottom:962.279335px;}
.y4_c01107{bottom:962.915170px;}
.y3_c01107{bottom:964.208644px;}
.y2_c01107{bottom:964.437000px;}
.y1_c01107{bottom:1057.860000px;}
.h2_c01107{height:18.000000px;}
.h11_c01107{height:24.000000px;}
.h12_c01107{height:30.000000px;}
.he_c01107{height:72.034588px;}
.h7_c01107{height:77.978352px;}
.h6_c01107{height:78.008190px;}
.h5_c01107{height:78.017197px;}
.h4_c01107{height:78.020628px;}
.h9_c01107{height:78.028426px;}
.h8_c01107{height:83.976687px;}
.h3_c01107{height:84.022215px;}
.hb_c01107{height:84.030612px;}
.hf_c01107{height:90.010124px;}
.hd_c01107{height:90.032799px;}
.h10_c01107{height:96.010799px;}
.hc_c01107{height:96.043190px;}
.ha_c01107{height:114.041545px;}
.h0_c01107{height:1246.320000px;}
.h1_c01107{height:1246.500000px;}
.w0_c01107{width:927.450000px;}
.w1_c01107{width:927.750000px;}
.x0_c01107{left:0.000000px;}
.x87_c01107{left:1.080000px;}
.x88_c01107{left:5.670000px;}
.x89_c01107{left:9.990000px;}
.x8b_c01107{left:11.610000px;}
.x8a_c01107{left:12.690000px;}
.x8c_c01107{left:15.120000px;}
.x8d_c01107{left:16.740000px;}
.x8e_c01107{left:19.170000px;}
.x8f_c01107{left:26.460000px;}
.x84_c01107{left:28.890000px;}
.x85_c01107{left:29.970000px;}
.x83_c01107{left:31.590000px;}
.x86_c01107{left:32.940000px;}
.x3_c01107{left:69.778500px;}
.x4c_c01107{left:72.807000px;}
.x56_c01107{left:78.691962px;}
.x4_c01107{left:79.707000px;}
.x1b_c01107{left:84.522000px;}
.x10_c01107{left:87.837161px;}
.x5f_c01107{left:95.116770px;}
.x30_c01107{left:96.303000px;}
.x40_c01107{left:97.864170px;}
.x66_c01107{left:111.334500px;}
.x11_c01107{left:116.891505px;}
.x57_c01107{left:126.564054px;}
.x31_c01107{left:130.446000px;}
.x5_c01107{left:135.945000px;}
.x60_c01107{left:139.513788px;}
.x26_c01107{left:146.514461px;}
.x1c_c01107{left:151.473000px;}
.x6_c01107{left:163.590000px;}
.x32_c01107{left:166.443000px;}
.x41_c01107{left:168.678999px;}
.x7c_c01107{left:184.833158px;}
.x76_c01107{left:200.941500px;}
.x7d_c01107{left:202.171928px;}
.x42_c01107{left:206.653185px;}
.x67_c01107{left:212.131500px;}
.x12_c01107{left:219.241659px;}
.x1d_c01107{left:220.810500px;}
.x7_c01107{left:227.386500px;}
.x70_c01107{left:233.031000px;}
.x61_c01107{left:236.635463px;}
.x43_c01107{left:238.934545px;}
.x33_c01107{left:240.790500px;}
.x1e_c01107{left:252.669000px;}
.x8_c01107{left:253.678500px;}
.x58_c01107{left:255.374520px;}
.x4d_c01107{left:260.104500px;}
.x27_c01107{left:264.071786px;}
.x7e_c01107{left:268.046918px;}
.x77_c01107{left:271.903500px;}
.x44_c01107{left:274.171045px;}
.x62_c01107{left:282.300995px;}
.x28_c01107{left:300.151170px;}
.x68_c01107{left:301.567500px;}
.x4e_c01107{left:303.720000px;}
.x34_c01107{left:305.047500px;}
.x71_c01107{left:313.134000px;}
.x1f_c01107{left:317.836500px;}
.x9_c01107{left:320.413500px;}
.x59_c01107{left:322.998165px;}
.x29_c01107{left:324.564732px;}
.x20_c01107{left:335.950500px;}
.x35_c01107{left:339.628500px;}
.x13_c01107{left:342.837330px;}
.x4f_c01107{left:344.694000px;}
.x63_c01107{left:349.076481px;}
.x7f_c01107{left:354.713700px;}
.x2a_c01107{left:362.210049px;}
.x5a_c01107{left:370.903257px;}
.x3c_c01107{left:374.128500px;}
.xa_c01107{left:387.337500px;}
.x45_c01107{left:389.442994px;}
.x14_c01107{left:408.178812px;}
.x69_c01107{left:411.589500px;}
.x2b_c01107{left:417.142062px;}
.x80_c01107{left:422.081212px;}
.x5b_c01107{left:427.676835px;}
.x3d_c01107{left:437.537528px;}
.x21_c01107{left:440.979000px;}
.x6a_c01107{left:442.110000px;}
.x36_c01107{left:449.460000px;}
.x78_c01107{left:450.781500px;}
.x81_c01107{left:453.247185px;}
.x46_c01107{left:459.858994px;}
.x50_c01107{left:461.605500px;}
.x2c_c01107{left:463.766391px;}
.x64_c01107{left:465.420380px;}
.x15_c01107{left:474.616794px;}
.x72_c01107{left:481.384500px;}
.xb_c01107{left:485.089500px;}
.x65_c01107{left:489.743538px;}
.x47_c01107{left:493.567668px;}
.x82_c01107{left:495.670815px;}
.x3e_c01107{left:504.228270px;}
.x16_c01107{left:505.706570px;}
.x37_c01107{left:514.975500px;}
.x6b_c01107{left:520.396500px;}
.x5c_c01107{left:525.216600px;}
.x51_c01107{left:531.619500px;}
.x22_c01107{left:549.378000px;}
.x5d_c01107{left:553.337099px;}
.x73_c01107{left:554.410500px;}
.x38_c01107{left:559.978500px;}
.x3f_c01107{left:566.081854px;}
.xc_c01107{left:568.339500px;}
.x2d_c01107{left:570.351699px;}
.x79_c01107{left:572.493000px;}
.x6c_c01107{left:582.657000px;}
.x17_c01107{left:584.837241px;}
.x48_c01107{left:599.551450px;}
.x52_c01107{left:601.510500px;}
.xd_c01107{left:605.086500px;}
.x23_c01107{left:611.296500px;}
.x7a_c01107{left:612.735000px;}
.x39_c01107{left:613.782000px;}
.x18_c01107{left:623.707344px;}
.x6d_c01107{left:630.790500px;}
.x49_c01107{left:638.815030px;}
.x7b_c01107{left:640.204500px;}
.x74_c01107{left:642.058500px;}
.x3a_c01107{left:647.704500px;}
.x24_c01107{left:659.272500px;}
.x6e_c01107{left:660.496500px;}
.x5e_c01107{left:662.942012px;}
.x53_c01107{left:666.469500px;}
.x4a_c01107{left:668.561117px;}
.x75_c01107{left:671.772000px;}
.x2e_c01107{left:680.388052px;}
.x19_c01107{left:682.048499px;}
.x54_c01107{left:685.960500px;}
.xe_c01107{left:694.309500px;}
.x1_c01107{left:698.220000px;}
.x2f_c01107{left:708.387525px;}
.x2_c01107{left:710.100000px;}
.x1a_c01107{left:714.959240px;}
.x55_c01107{left:721.054500px;}
.x4b_c01107{left:722.381385px;}
.xf_c01107{left:725.844000px;}
.x6f_c01107{left:731.269500px;}
.x25_c01107{left:735.532500px;}
.x3b_c01107{left:746.730000px;}
@media print{
.v0_c01107{vertical-align:0.000000pt;}
.ls0_c01107{letter-spacing:0.000000pt;}
.ws0_c01107{word-spacing:0.000000pt;}
.fs0_c01107{font-size:16.000000pt;}
.fsf_c01107{font-size:21.333333pt;}
.fs10_c01107{font-size:26.666667pt;}
.fsc_c01107{font-size:64.030745pt;}
.fs5_c01107{font-size:69.314091pt;}
.fs4_c01107{font-size:69.340613pt;}
.fs3_c01107{font-size:69.348620pt;}
.fs2_c01107{font-size:69.351670pt;}
.fs7_c01107{font-size:69.358601pt;}
.fs6_c01107{font-size:74.645944pt;}
.fs1_c01107{font-size:74.686413pt;}
.fs9_c01107{font-size:74.693878pt;}
.fsd_c01107{font-size:80.008999pt;}
.fsb_c01107{font-size:80.029155pt;}
.fse_c01107{font-size:85.342933pt;}
.fsa_c01107{font-size:85.371725pt;}
.fs8_c01107{font-size:101.370263pt;}
.y0_c01107{bottom:0.000000pt;}
.ya6_c01107{bottom:12.960000pt;}
.ya5_c01107{bottom:13.440000pt;}
.ya4_c01107{bottom:18.960000pt;}
.ya3_c01107{bottom:43.680000pt;}
.ya1_c01107{bottom:161.040000pt;}
.ya0_c01107{bottom:170.400000pt;}
.ya2_c01107{bottom:261.600000pt;}
.y9f_c01107{bottom:311.280000pt;}
.y9e_c01107{bottom:315.798360pt;}
.y9d_c01107{bottom:316.728593pt;}
.y9c_c01107{bottom:317.256900pt;}
.y9b_c01107{bottom:317.644440pt;}
.y9a_c01107{bottom:318.482660pt;}
.y99_c01107{bottom:319.126847pt;}
.y98_c01107{bottom:319.562200pt;}
.y97_c01107{bottom:320.381853pt;}
.y96_c01107{bottom:320.597033pt;}
.y95_c01107{bottom:345.989827pt;}
.y94_c01107{bottom:346.356087pt;}
.y93_c01107{bottom:346.892647pt;}
.y92_c01107{bottom:348.055367pt;}
.y91_c01107{bottom:348.515467pt;}
.y90_c01107{bottom:349.939147pt;}
.y8f_c01107{bottom:350.900507pt;}
.y8e_c01107{bottom:351.846667pt;}
.y8d_c01107{bottom:499.889228pt;}
.y8c_c01107{bottom:500.708000pt;}
.y8b_c01107{bottom:504.113017pt;}
.y8a_c01107{bottom:505.865641pt;}
.y89_c01107{bottom:508.109341pt;}
.y88_c01107{bottom:508.748701pt;}
.y87_c01107{bottom:509.903653pt;}
.y86_c01107{bottom:511.826125pt;}
.y85_c01107{bottom:514.309333pt;}
.y84_c01107{bottom:529.240400pt;}
.y83_c01107{bottom:531.127680pt;}
.y82_c01107{bottom:531.919840pt;}
.y81_c01107{bottom:533.203400pt;}
.y80_c01107{bottom:534.863680pt;}
.y7f_c01107{bottom:536.951320pt;}
.y7e_c01107{bottom:537.765200pt;}
.y7d_c01107{bottom:540.699120pt;}
.y7c_c01107{bottom:541.819240pt;}
.y7b_c01107{bottom:543.084080pt;}
.y7a_c01107{bottom:544.682640pt;}
.y79_c01107{bottom:545.772000pt;}
.y78_c01107{bottom:561.286680pt;}
.y77_c01107{bottom:562.840167pt;}
.y76_c01107{bottom:564.415873pt;}
.y75_c01107{bottom:565.832943pt;}
.y74_c01107{bottom:569.415501pt;}
.y73_c01107{bottom:570.323493pt;}
.y72_c01107{bottom:574.667544pt;}
.y71_c01107{bottom:577.160137pt;}
.y70_c01107{bottom:578.864553pt;}
.y6f_c01107{bottom:581.602755pt;}
.y6e_c01107{bottom:582.491084pt;}
.y6d_c01107{bottom:584.149044pt;}
.y6c_c01107{bottom:590.761516pt;}
.y6b_c01107{bottom:591.927499pt;}
.y6a_c01107{bottom:594.363208pt;}
.y69_c01107{bottom:594.988731pt;}
.y68_c01107{bottom:597.156225pt;}
.y67_c01107{bottom:598.417384pt;}
.y66_c01107{bottom:599.481711pt;}
.y65_c01107{bottom:600.984591pt;}
.y64_c01107{bottom:601.349925pt;}
.y63_c01107{bottom:603.846541pt;}
.y62_c01107{bottom:604.910076pt;}
.y61_c01107{bottom:623.379393pt;}
.y60_c01107{bottom:624.221649pt;}
.y5f_c01107{bottom:624.689433pt;}
.y5e_c01107{bottom:626.248449pt;}
.y5d_c01107{bottom:627.011073pt;}
.y5c_c01107{bottom:627.925833pt;}
.y5b_c01107{bottom:629.606169pt;}
.y5a_c01107{bottom:632.412045pt;}
.y59_c01107{bottom:633.395421pt;}
.y58_c01107{bottom:634.442193pt;}
.y57_c01107{bottom:634.963401pt;}
.y56_c01107{bottom:635.722497pt;}
.y55_c01107{bottom:638.937333pt;}
.y54_c01107{bottom:653.737240pt;}
.y53_c01107{bottom:654.887357pt;}
.y52_c01107{bottom:655.522288pt;}
.y51_c01107{bottom:656.361635pt;}
.y50_c01107{bottom:657.425416pt;}
.y4f_c01107{bottom:658.627195pt;}
.y4e_c01107{bottom:659.348085pt;}
.y4d_c01107{bottom:660.852572pt;}
.y4c_c01107{bottom:663.316128pt;}
.y4b_c01107{bottom:664.068668pt;}
.y4a_c01107{bottom:664.758640pt;}
.y49_c01107{bottom:665.570397pt;}
.y48_c01107{bottom:667.083033pt;}
.y47_c01107{bottom:667.466309pt;}
.y46_c01107{bottom:687.018269pt;}
.y45_c01107{bottom:688.733893pt;}
.y44_c01107{bottom:691.460419pt;}
.y43_c01107{bottom:693.551787pt;}
.y42_c01107{bottom:695.806707pt;}
.y41_c01107{bottom:697.950667pt;}
.y40_c01107{bottom:718.210696pt;}
.y3f_c01107{bottom:718.891684pt;}
.y3e_c01107{bottom:720.059172pt;}
.y3d_c01107{bottom:720.692392pt;}
.y3c_c01107{bottom:721.696724pt;}
.y3b_c01107{bottom:722.536780pt;}
.y3a_c01107{bottom:723.759736pt;}
.y39_c01107{bottom:724.373636pt;}
.y38_c01107{bottom:725.809924pt;}
.y37_c01107{bottom:726.455436pt;}
.y36_c01107{bottom:727.654900pt;}
.y35_c01107{bottom:729.042720pt;}
.y34_c01107{bottom:729.714664pt;}
.y33_c01107{bottom:730.352000pt;}
.y32_c01107{bottom:751.087267pt;}
.y31_c01107{bottom:752.258193pt;}
.y30_c01107{bottom:755.365645pt;}
.y2f_c01107{bottom:756.859869pt;}
.y2e_c01107{bottom:761.317224pt;}
.y2d_c01107{bottom:763.267035pt;}
.y2c_c01107{bottom:765.564269pt;}
.y2b_c01107{bottom:767.138581pt;}
.y2a_c01107{bottom:768.159547pt;}
.y29_c01107{bottom:769.668372pt;}
.y28_c01107{bottom:774.584572pt;}
.y27_c01107{bottom:777.009333pt;}
.y26_c01107{bottom:781.473137pt;}
.y25_c01107{bottom:782.896657pt;}
.y24_c01107{bottom:783.792209pt;}
.y23_c01107{bottom:784.948021pt;}
.y22_c01107{bottom:786.971469pt;}
.y21_c01107{bottom:787.593209pt;}
.y20_c01107{bottom:788.932001pt;}
.y1f_c01107{bottom:789.270129pt;}
.y1e_c01107{bottom:790.486589pt;}
.y1d_c01107{bottom:791.081281pt;}
.y1c_c01107{bottom:792.375581pt;}
.y1b_c01107{bottom:793.625333pt;}
.y1a_c01107{bottom:811.924633pt;}
.y19_c01107{bottom:812.626824pt;}
.y18_c01107{bottom:813.871604pt;}
.y17_c01107{bottom:814.700967pt;}
.y16_c01107{bottom:816.389453pt;}
.y15_c01107{bottom:817.053081pt;}
.y14_c01107{bottom:818.470067pt;}
.y13_c01107{bottom:819.864635pt;}
.y12_c01107{bottom:820.352455pt;}
.y11_c01107{bottom:822.500871pt;}
.y10_c01107{bottom:824.684077pt;}
.yf_c01107{bottom:825.303424pt;}
.ye_c01107{bottom:843.864439pt;}
.yd_c01107{bottom:844.509144pt;}
.yc_c01107{bottom:846.333259pt;}
.yb_c01107{bottom:847.084531pt;}
.ya_c01107{bottom:848.786531pt;}
.y9_c01107{bottom:850.785016pt;}
.y8_c01107{bottom:852.153240pt;}
.y7_c01107{bottom:853.517600pt;}
.y6_c01107{bottom:854.055125pt;}
.y5_c01107{bottom:855.359409pt;}
.y4_c01107{bottom:855.924596pt;}
.y3_c01107{bottom:857.074351pt;}
.y2_c01107{bottom:857.277333pt;}
.y1_c01107{bottom:940.320000pt;}
.h2_c01107{height:16.000000pt;}
.h11_c01107{height:21.333333pt;}
.h12_c01107{height:26.666667pt;}
.he_c01107{height:64.030745pt;}
.h7_c01107{height:69.314091pt;}
.h6_c01107{height:69.340613pt;}
.h5_c01107{height:69.348620pt;}
.h4_c01107{height:69.351670pt;}
.h9_c01107{height:69.358601pt;}
.h8_c01107{height:74.645944pt;}
.h3_c01107{height:74.686413pt;}
.hb_c01107{height:74.693878pt;}
.hf_c01107{height:80.008999pt;}
.hd_c01107{height:80.029155pt;}
.h10_c01107{height:85.342933pt;}
.hc_c01107{height:85.371725pt;}
.ha_c01107{height:101.370263pt;}
.h0_c01107{height:1107.840000pt;}
.h1_c01107{height:1108.000000pt;}
.w0_c01107{width:824.400000pt;}
.w1_c01107{width:824.666667pt;}
.x0_c01107{left:0.000000pt;}
.x87_c01107{left:0.960000pt;}
.x88_c01107{left:5.040000pt;}
.x89_c01107{left:8.880000pt;}
.x8b_c01107{left:10.320000pt;}
.x8a_c01107{left:11.280000pt;}
.x8c_c01107{left:13.440000pt;}
.x8d_c01107{left:14.880000pt;}
.x8e_c01107{left:17.040000pt;}
.x8f_c01107{left:23.520000pt;}
.x84_c01107{left:25.680000pt;}
.x85_c01107{left:26.640000pt;}
.x83_c01107{left:28.080000pt;}
.x86_c01107{left:29.280000pt;}
.x3_c01107{left:62.025333pt;}
.x4c_c01107{left:64.717333pt;}
.x56_c01107{left:69.948411pt;}
.x4_c01107{left:70.850667pt;}
.x1b_c01107{left:75.130667pt;}
.x10_c01107{left:78.077476pt;}
.x5f_c01107{left:84.548240pt;}
.x30_c01107{left:85.602667pt;}
.x40_c01107{left:86.990373pt;}
.x66_c01107{left:98.964000pt;}
.x11_c01107{left:103.903560pt;}
.x57_c01107{left:112.501381pt;}
.x31_c01107{left:115.952000pt;}
.x5_c01107{left:120.840000pt;}
.x60_c01107{left:124.012256pt;}
.x26_c01107{left:130.235076pt;}
.x1c_c01107{left:134.642667pt;}
.x6_c01107{left:145.413333pt;}
.x32_c01107{left:147.949333pt;}
.x41_c01107{left:149.936888pt;}
.x7c_c01107{left:164.296140pt;}
.x76_c01107{left:178.614667pt;}
.x7d_c01107{left:179.708380pt;}
.x42_c01107{left:183.691720pt;}
.x67_c01107{left:188.561333pt;}
.x12_c01107{left:194.881475pt;}
.x1d_c01107{left:196.276000pt;}
.x7_c01107{left:202.121333pt;}
.x70_c01107{left:207.138667pt;}
.x61_c01107{left:210.342633pt;}
.x43_c01107{left:212.386263pt;}
.x33_c01107{left:214.036000pt;}
.x1e_c01107{left:224.594667pt;}
.x8_c01107{left:225.492000pt;}
.x58_c01107{left:226.999573pt;}
.x4d_c01107{left:231.204000pt;}
.x27_c01107{left:234.730476pt;}
.x7e_c01107{left:238.263927pt;}
.x77_c01107{left:241.692000pt;}
.x44_c01107{left:243.707596pt;}
.x62_c01107{left:250.934217pt;}
.x28_c01107{left:266.801040pt;}
.x68_c01107{left:268.060000pt;}
.x4e_c01107{left:269.973333pt;}
.x34_c01107{left:271.153333pt;}
.x71_c01107{left:278.341333pt;}
.x1f_c01107{left:282.521333pt;}
.x9_c01107{left:284.812000pt;}
.x59_c01107{left:287.109480pt;}
.x29_c01107{left:288.501984pt;}
.x20_c01107{left:298.622667pt;}
.x35_c01107{left:301.892000pt;}
.x13_c01107{left:304.744293pt;}
.x4f_c01107{left:306.394667pt;}
.x63_c01107{left:310.290205pt;}
.x7f_c01107{left:315.301067pt;}
.x2a_c01107{left:321.964488pt;}
.x5a_c01107{left:329.691784pt;}
.x3c_c01107{left:332.558667pt;}
.xa_c01107{left:344.300000pt;}
.x45_c01107{left:346.171551pt;}
.x14_c01107{left:362.825611pt;}
.x69_c01107{left:365.857333pt;}
.x2b_c01107{left:370.792944pt;}
.x80_c01107{left:375.183300pt;}
.x5b_c01107{left:380.157187pt;}
.x3d_c01107{left:388.922247pt;}
.x21_c01107{left:391.981333pt;}
.x6a_c01107{left:392.986667pt;}
.x36_c01107{left:399.520000pt;}
.x78_c01107{left:400.694667pt;}
.x81_c01107{left:402.886387pt;}
.x46_c01107{left:408.763551pt;}
.x50_c01107{left:410.316000pt;}
.x2c_c01107{left:412.236792pt;}
.x64_c01107{left:413.707004pt;}
.x15_c01107{left:421.881595pt;}
.x72_c01107{left:427.897333pt;}
.xb_c01107{left:431.190667pt;}
.x65_c01107{left:435.327589pt;}
.x47_c01107{left:438.726816pt;}
.x82_c01107{left:440.596280pt;}
.x3e_c01107{left:448.202907pt;}
.x16_c01107{left:449.516951pt;}
.x37_c01107{left:457.756000pt;}
.x6b_c01107{left:462.574667pt;}
.x5c_c01107{left:466.859200pt;}
.x51_c01107{left:472.550667pt;}
.x22_c01107{left:488.336000pt;}
.x5d_c01107{left:491.855199pt;}
.x73_c01107{left:492.809333pt;}
.x38_c01107{left:497.758667pt;}
.x3f_c01107{left:503.183871pt;}
.xc_c01107{left:505.190667pt;}
.x2d_c01107{left:506.979288pt;}
.x79_c01107{left:508.882667pt;}
.x6c_c01107{left:517.917333pt;}
.x17_c01107{left:519.855325pt;}
.x48_c01107{left:532.934623pt;}
.x52_c01107{left:534.676000pt;}
.xd_c01107{left:537.854667pt;}
.x23_c01107{left:543.374667pt;}
.x7a_c01107{left:544.653333pt;}
.x39_c01107{left:545.584000pt;}
.x18_c01107{left:554.406528pt;}
.x6d_c01107{left:560.702667pt;}
.x49_c01107{left:567.835583pt;}
.x7b_c01107{left:569.070667pt;}
.x74_c01107{left:570.718667pt;}
.x3a_c01107{left:575.737333pt;}
.x24_c01107{left:586.020000pt;}
.x6e_c01107{left:587.108000pt;}
.x5e_c01107{left:589.281788pt;}
.x53_c01107{left:592.417333pt;}
.x4a_c01107{left:594.276548pt;}
.x75_c01107{left:597.130667pt;}
.x2e_c01107{left:604.789380pt;}
.x19_c01107{left:606.265332pt;}
.x54_c01107{left:609.742667pt;}
.xe_c01107{left:617.164000pt;}
.x1_c01107{left:620.640000pt;}
.x2f_c01107{left:629.677800pt;}
.x2_c01107{left:631.200000pt;}
.x1a_c01107{left:635.519324pt;}
.x55_c01107{left:640.937333pt;}
.x4b_c01107{left:642.116787pt;}
.xf_c01107{left:645.194667pt;}
.x6f_c01107{left:650.017333pt;}
.x25_c01107{left:653.806667pt;}
.x3b_c01107{left:663.760000pt;}
}





/* 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_c01108 {
    display:none;
  }
  .loading-indicator_c01108.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01108 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_c01108 { 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_c01108" -> "#page-container .classname_c01108")
 */
.pf_c01108 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01108 { /* 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_c01108.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01108 { /* 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_c01108 { /* 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_c01108 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01108 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01108 {overflow:visible;}
  }
}
.c_c01108 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01108 { /* 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_c01108:after { /* webkit #35443 */
  content: '';
}
.t_c01108:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01108 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 */
}
.__c01108 { /* 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_c01108 { /* info for Javascript */
  display:none;
}
.l_c01108 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01108 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01108 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01108: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_c01108 {
    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_c01108.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01108.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_c01108 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01108{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01108;src:url('chunks/assets/font_cfe63ee56e9e10a97d33a3db.woff2')format("woff");}.ff1_c01108{font-family:ff1_c01108;line-height:1.000000;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;}
.m0_c01108{transform:matrix(0.132425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132425,0.000000,0.000000,0.250000,0,0);}
.m149_c01108{transform:matrix(0.137266,0.003843,-0.006997,0.249902,0,0);-ms-transform:matrix(0.137266,0.003843,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.137266,0.003843,-0.006997,0.249902,0,0);}
.m14d_c01108{transform:matrix(0.139920,0.003918,-0.006997,0.249902,0,0);-ms-transform:matrix(0.139920,0.003918,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.139920,0.003918,-0.006997,0.249902,0,0);}
.m148_c01108{transform:matrix(0.142339,0.003985,-0.006997,0.249902,0,0);-ms-transform:matrix(0.142339,0.003985,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.142339,0.003985,-0.006997,0.249902,0,0);}
.m14a_c01108{transform:matrix(0.143889,0.004029,-0.006997,0.249902,0,0);-ms-transform:matrix(0.143889,0.004029,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.143889,0.004029,-0.006997,0.249902,0,0);}
.m14c_c01108{transform:matrix(0.147732,0.004136,-0.006997,0.249902,0,0);-ms-transform:matrix(0.147732,0.004136,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.147732,0.004136,-0.006997,0.249902,0,0);}
.m14b_c01108{transform:matrix(0.156099,0.004371,-0.006997,0.249902,0,0);-ms-transform:matrix(0.156099,0.004371,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.156099,0.004371,-0.006997,0.249902,0,0);}
.m159_c01108{transform:matrix(0.157439,0.005043,-0.008004,0.249872,0,0);-ms-transform:matrix(0.157439,0.005043,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.157439,0.005043,-0.008004,0.249872,0,0);}
.m4f_c01108{transform:matrix(0.157449,0.003149,-0.004999,0.249950,0,0);-ms-transform:matrix(0.157449,0.003149,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.157449,0.003149,-0.004999,0.249950,0,0);}
.m1a_c01108{transform:matrix(0.163855,0.004260,-0.006498,0.249916,0,0);-ms-transform:matrix(0.163855,0.004260,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.163855,0.004260,-0.006498,0.249916,0,0);}
.m147_c01108{transform:matrix(0.165230,0.004626,-0.006997,0.249902,0,0);-ms-transform:matrix(0.165230,0.004626,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.165230,0.004626,-0.006997,0.249902,0,0);}
.m16_c01108{transform:matrix(0.171007,0.004446,-0.006498,0.249916,0,0);-ms-transform:matrix(0.171007,0.004446,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.171007,0.004446,-0.006498,0.249916,0,0);}
.m12_c01108{transform:matrix(0.172697,0.004490,-0.006498,0.249916,0,0);-ms-transform:matrix(0.172697,0.004490,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.172697,0.004490,-0.006498,0.249916,0,0);}
.m14e_c01108{transform:matrix(0.174016,0.005574,-0.008004,0.249872,0,0);-ms-transform:matrix(0.174016,0.005574,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.174016,0.005574,-0.008004,0.249872,0,0);}
.m18_c01108{transform:matrix(0.178310,0.004636,-0.006498,0.249916,0,0);-ms-transform:matrix(0.178310,0.004636,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.178310,0.004636,-0.006498,0.249916,0,0);}
.m2a_c01108{transform:matrix(0.178644,0.004287,-0.005998,0.249928,0,0);-ms-transform:matrix(0.178644,0.004287,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.178644,0.004287,-0.005998,0.249928,0,0);}
.m10_c01108{transform:matrix(0.179409,0.004665,-0.006498,0.249916,0,0);-ms-transform:matrix(0.179409,0.004665,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.179409,0.004665,-0.006498,0.249916,0,0);}
.m38_c01108{transform:matrix(0.179859,0.004496,-0.006248,0.249922,0,0);-ms-transform:matrix(0.179859,0.004496,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.179859,0.004496,-0.006248,0.249922,0,0);}
.m15_c01108{transform:matrix(0.181799,0.004727,-0.006498,0.249916,0,0);-ms-transform:matrix(0.181799,0.004727,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.181799,0.004727,-0.006498,0.249916,0,0);}
.mbd_c01108{transform:matrix(0.182968,0.005489,-0.007497,0.249888,0,0);-ms-transform:matrix(0.182968,0.005489,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.182968,0.005489,-0.007497,0.249888,0,0);}
.m51_c01108{transform:matrix(0.183008,0.003660,-0.004999,0.249950,0,0);-ms-transform:matrix(0.183008,0.003660,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.183008,0.003660,-0.004999,0.249950,0,0);}
.m17_c01108{transform:matrix(0.185212,0.004816,-0.006498,0.249916,0,0);-ms-transform:matrix(0.185212,0.004816,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.185212,0.004816,-0.006498,0.249916,0,0);}
.m1d_c01108{transform:matrix(0.186027,0.004837,-0.006498,0.249916,0,0);-ms-transform:matrix(0.186027,0.004837,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.186027,0.004837,-0.006498,0.249916,0,0);}
.md4_c01108{transform:matrix(0.187785,0.005821,-0.007746,0.249880,0,0);-ms-transform:matrix(0.187785,0.005821,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.187785,0.005821,-0.007746,0.249880,0,0);}
.m79_c01108{transform:matrix(0.188010,0.004324,-0.005748,0.249934,0,0);-ms-transform:matrix(0.188010,0.004324,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.188010,0.004324,-0.005748,0.249934,0,0);}
.mf_c01108{transform:matrix(0.188486,0.004901,-0.006498,0.249916,0,0);-ms-transform:matrix(0.188486,0.004901,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.188486,0.004901,-0.006498,0.249916,0,0);}
.mbf_c01108{transform:matrix(0.188705,0.005661,-0.007497,0.249888,0,0);-ms-transform:matrix(0.188705,0.005661,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.188705,0.005661,-0.007497,0.249888,0,0);}
.m35_c01108{transform:matrix(0.188731,0.004718,-0.006248,0.249922,0,0);-ms-transform:matrix(0.188731,0.004718,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.188731,0.004718,-0.006248,0.249922,0,0);}
.mc7_c01108{transform:matrix(0.189114,0.005863,-0.007746,0.249880,0,0);-ms-transform:matrix(0.189114,0.005863,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.189114,0.005863,-0.007746,0.249880,0,0);}
.m146_c01108{transform:matrix(0.190900,0.005345,-0.006997,0.249902,0,0);-ms-transform:matrix(0.190900,0.005345,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.190900,0.005345,-0.006997,0.249902,0,0);}
.m66_c01108{transform:matrix(0.190920,0.004773,-0.006248,0.249922,0,0);-ms-transform:matrix(0.190920,0.004773,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.190920,0.004773,-0.006248,0.249922,0,0);}
.mb9_c01108{transform:matrix(0.191024,0.005731,-0.007497,0.249888,0,0);-ms-transform:matrix(0.191024,0.005731,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.191024,0.005731,-0.007497,0.249888,0,0);}
.m13_c01108{transform:matrix(0.192140,0.004996,-0.006498,0.249916,0,0);-ms-transform:matrix(0.192140,0.004996,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.192140,0.004996,-0.006498,0.249916,0,0);}
.md_c01108{transform:matrix(0.193375,0.005028,-0.006498,0.249916,0,0);-ms-transform:matrix(0.193375,0.005028,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.193375,0.005028,-0.006498,0.249916,0,0);}
.m15e_c01108{transform:matrix(0.194625,0.006234,-0.008004,0.249872,0,0);-ms-transform:matrix(0.194625,0.006234,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.194625,0.006234,-0.008004,0.249872,0,0);}
.mee_c01108{transform:matrix(0.195781,0.006069,-0.007746,0.249880,0,0);-ms-transform:matrix(0.195781,0.006069,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.195781,0.006069,-0.007746,0.249880,0,0);}
.m5e_c01108{transform:matrix(0.196173,0.004316,-0.005499,0.249940,0,0);-ms-transform:matrix(0.196173,0.004316,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.196173,0.004316,-0.005499,0.249940,0,0);}
.m14_c01108{transform:matrix(0.196429,0.005107,-0.006498,0.249916,0,0);-ms-transform:matrix(0.196429,0.005107,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.196429,0.005107,-0.006498,0.249916,0,0);}
.m34_c01108{transform:matrix(0.198313,0.004958,-0.006248,0.249922,0,0);-ms-transform:matrix(0.198313,0.004958,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.198313,0.004958,-0.006248,0.249922,0,0);}
.m19_c01108{transform:matrix(0.201467,0.005238,-0.006498,0.249916,0,0);-ms-transform:matrix(0.201467,0.005238,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.201467,0.005238,-0.006498,0.249916,0,0);}
.me_c01108{transform:matrix(0.202067,0.005254,-0.006498,0.249916,0,0);-ms-transform:matrix(0.202067,0.005254,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.202067,0.005254,-0.006498,0.249916,0,0);}
.mc2_c01108{transform:matrix(0.202894,0.006087,-0.007497,0.249888,0,0);-ms-transform:matrix(0.202894,0.006087,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.202894,0.006087,-0.007497,0.249888,0,0);}
.mb0_c01108{transform:matrix(0.202919,0.006088,-0.007497,0.249888,0,0);-ms-transform:matrix(0.202919,0.006088,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.202919,0.006088,-0.007497,0.249888,0,0);}
.mb1_c01108{transform:matrix(0.204033,0.006121,-0.007497,0.249888,0,0);-ms-transform:matrix(0.204033,0.006121,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.204033,0.006121,-0.007497,0.249888,0,0);}
.m9c_c01108{transform:matrix(0.204618,0.006139,-0.007497,0.249888,0,0);-ms-transform:matrix(0.204618,0.006139,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.204618,0.006139,-0.007497,0.249888,0,0);}
.m15b_c01108{transform:matrix(0.205295,0.006576,-0.008004,0.249872,0,0);-ms-transform:matrix(0.205295,0.006576,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.205295,0.006576,-0.008004,0.249872,0,0);}
.m12f_c01108{transform:matrix(0.205659,0.005964,-0.007247,0.249895,0,0);-ms-transform:matrix(0.205659,0.005964,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.205659,0.005964,-0.007247,0.249895,0,0);}
.m33_c01108{transform:matrix(0.205706,0.005143,-0.006248,0.249922,0,0);-ms-transform:matrix(0.205706,0.005143,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.205706,0.005143,-0.006248,0.249922,0,0);}
.m6e_c01108{transform:matrix(0.205861,0.004735,-0.005748,0.249934,0,0);-ms-transform:matrix(0.205861,0.004735,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.205861,0.004735,-0.005748,0.249934,0,0);}
.mc0_c01108{transform:matrix(0.206832,0.006205,-0.007497,0.249888,0,0);-ms-transform:matrix(0.206832,0.006205,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.206832,0.006205,-0.007497,0.249888,0,0);}
.m11_c01108{transform:matrix(0.207325,0.005390,-0.006498,0.249916,0,0);-ms-transform:matrix(0.207325,0.005390,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.207325,0.005390,-0.006498,0.249916,0,0);}
.mb5_c01108{transform:matrix(0.207347,0.006220,-0.007497,0.249888,0,0);-ms-transform:matrix(0.207347,0.006220,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.207347,0.006220,-0.007497,0.249888,0,0);}
.m24_c01108{transform:matrix(0.207400,0.004978,-0.005998,0.249928,0,0);-ms-transform:matrix(0.207400,0.004978,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.207400,0.004978,-0.005998,0.249928,0,0);}
.m39_c01108{transform:matrix(0.207970,0.005199,-0.006248,0.249922,0,0);-ms-transform:matrix(0.207970,0.005199,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.207970,0.005199,-0.006248,0.249922,0,0);}
.m60_c01108{transform:matrix(0.208410,0.005210,-0.006248,0.249922,0,0);-ms-transform:matrix(0.208410,0.005210,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.208410,0.005210,-0.006248,0.249922,0,0);}
.m45_c01108{transform:matrix(0.208433,0.004169,-0.004999,0.249950,0,0);-ms-transform:matrix(0.208433,0.004169,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.208433,0.004169,-0.004999,0.249950,0,0);}
.m13c_c01108{transform:matrix(0.208493,0.005838,-0.006997,0.249902,0,0);-ms-transform:matrix(0.208493,0.005838,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.208493,0.005838,-0.006997,0.249902,0,0);}
.m48_c01108{transform:matrix(0.208633,0.004173,-0.004999,0.249950,0,0);-ms-transform:matrix(0.208633,0.004173,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.208633,0.004173,-0.004999,0.249950,0,0);}
.mda_c01108{transform:matrix(0.208985,0.006479,-0.007746,0.249880,0,0);-ms-transform:matrix(0.208985,0.006479,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.208985,0.006479,-0.007746,0.249880,0,0);}
.m13e_c01108{transform:matrix(0.209938,0.005878,-0.006997,0.249902,0,0);-ms-transform:matrix(0.209938,0.005878,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.209938,0.005878,-0.006997,0.249902,0,0);}
.m121_c01108{transform:matrix(0.210457,0.006103,-0.007247,0.249895,0,0);-ms-transform:matrix(0.210457,0.006103,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.210457,0.006103,-0.007247,0.249895,0,0);}
.m129_c01108{transform:matrix(0.210467,0.006104,-0.007247,0.249895,0,0);-ms-transform:matrix(0.210467,0.006104,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.210467,0.006104,-0.007247,0.249895,0,0);}
.m69_c01108{transform:matrix(0.210554,0.005264,-0.006248,0.249922,0,0);-ms-transform:matrix(0.210554,0.005264,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.210554,0.005264,-0.006248,0.249922,0,0);}
.m65_c01108{transform:matrix(0.211804,0.005295,-0.006248,0.249922,0,0);-ms-transform:matrix(0.211804,0.005295,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.211804,0.005295,-0.006248,0.249922,0,0);}
.m13d_c01108{transform:matrix(0.212972,0.005963,-0.006997,0.249902,0,0);-ms-transform:matrix(0.212972,0.005963,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.212972,0.005963,-0.006997,0.249902,0,0);}
.mb6_c01108{transform:matrix(0.213044,0.006391,-0.007497,0.249888,0,0);-ms-transform:matrix(0.213044,0.006391,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.213044,0.006391,-0.007497,0.249888,0,0);}
.m140_c01108{transform:matrix(0.213276,0.005972,-0.006997,0.249902,0,0);-ms-transform:matrix(0.213276,0.005972,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.213276,0.005972,-0.006997,0.249902,0,0);}
.mf2_c01108{transform:matrix(0.213467,0.006617,-0.007746,0.249880,0,0);-ms-transform:matrix(0.213467,0.006617,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.213467,0.006617,-0.007746,0.249880,0,0);}
.m123_c01108{transform:matrix(0.213715,0.006198,-0.007247,0.249895,0,0);-ms-transform:matrix(0.213715,0.006198,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.213715,0.006198,-0.007247,0.249895,0,0);}
.m2e_c01108{transform:matrix(0.213918,0.005348,-0.006248,0.249922,0,0);-ms-transform:matrix(0.213918,0.005348,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.213918,0.005348,-0.006248,0.249922,0,0);}
.mbc_c01108{transform:matrix(0.214184,0.006426,-0.007497,0.249888,0,0);-ms-transform:matrix(0.214184,0.006426,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.214184,0.006426,-0.007497,0.249888,0,0);}
.m144_c01108{transform:matrix(0.214336,0.006001,-0.006997,0.249902,0,0);-ms-transform:matrix(0.214336,0.006001,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.214336,0.006001,-0.006997,0.249902,0,0);}
.m9_c01108{transform:matrix(0.214343,0.005573,-0.006498,0.249916,0,0);-ms-transform:matrix(0.214343,0.005573,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.214343,0.005573,-0.006498,0.249916,0,0);}
.mec_c01108{transform:matrix(0.214427,0.006647,-0.007746,0.249880,0,0);-ms-transform:matrix(0.214427,0.006647,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.214427,0.006647,-0.007746,0.249880,0,0);}
.m4b_c01108{transform:matrix(0.214487,0.004290,-0.004999,0.249950,0,0);-ms-transform:matrix(0.214487,0.004290,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.214487,0.004290,-0.004999,0.249950,0,0);}
.m168_c01108{transform:matrix(0.215854,0.006914,-0.008004,0.249872,0,0);-ms-transform:matrix(0.215854,0.006914,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.215854,0.006914,-0.008004,0.249872,0,0);}
.m27_c01108{transform:matrix(0.216273,0.005191,-0.005998,0.249928,0,0);-ms-transform:matrix(0.216273,0.005191,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.216273,0.005191,-0.005998,0.249928,0,0);}
.m7a_c01108{transform:matrix(0.216278,0.004974,-0.005748,0.249934,0,0);-ms-transform:matrix(0.216278,0.004974,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.216278,0.004974,-0.005748,0.249934,0,0);}
.md6_c01108{transform:matrix(0.218150,0.006763,-0.007746,0.249880,0,0);-ms-transform:matrix(0.218150,0.006763,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.218150,0.006763,-0.007746,0.249880,0,0);}
.m22_c01108{transform:matrix(0.218181,0.005673,-0.006498,0.249916,0,0);-ms-transform:matrix(0.218181,0.005673,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.218181,0.005673,-0.006498,0.249916,0,0);}
.md2_c01108{transform:matrix(0.218260,0.006766,-0.007746,0.249880,0,0);-ms-transform:matrix(0.218260,0.006766,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.218260,0.006766,-0.007746,0.249880,0,0);}
.m32_c01108{transform:matrix(0.219636,0.005491,-0.006248,0.249922,0,0);-ms-transform:matrix(0.219636,0.005491,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.219636,0.005491,-0.006248,0.249922,0,0);}
.m30_c01108{transform:matrix(0.219906,0.005498,-0.006248,0.249922,0,0);-ms-transform:matrix(0.219906,0.005498,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.219906,0.005498,-0.006248,0.249922,0,0);}
.m63_c01108{transform:matrix(0.220526,0.005513,-0.006248,0.249922,0,0);-ms-transform:matrix(0.220526,0.005513,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.220526,0.005513,-0.006248,0.249922,0,0);}
.m145_c01108{transform:matrix(0.220689,0.006179,-0.006997,0.249902,0,0);-ms-transform:matrix(0.220689,0.006179,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.220689,0.006179,-0.006997,0.249902,0,0);}
.md9_c01108{transform:matrix(0.221349,0.006862,-0.007746,0.249880,0,0);-ms-transform:matrix(0.221349,0.006862,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.221349,0.006862,-0.007746,0.249880,0,0);}
.m2d_c01108{transform:matrix(0.221391,0.005313,-0.005998,0.249928,0,0);-ms-transform:matrix(0.221391,0.005313,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.221391,0.005313,-0.005998,0.249928,0,0);}
.m50_c01108{transform:matrix(0.221516,0.004430,-0.004999,0.249950,0,0);-ms-transform:matrix(0.221516,0.004430,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.221516,0.004430,-0.004999,0.249950,0,0);}
.m80_c01108{transform:matrix(0.221636,0.005098,-0.005748,0.249934,0,0);-ms-transform:matrix(0.221636,0.005098,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.221636,0.005098,-0.005748,0.249934,0,0);}
.m5f_c01108{transform:matrix(0.221691,0.005542,-0.006248,0.249922,0,0);-ms-transform:matrix(0.221691,0.005542,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.221691,0.005542,-0.006248,0.249922,0,0);}
.m16f_c01108{transform:matrix(0.222610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222610,0.000000,0.000000,0.250000,0,0);}
.ma8_c01108{transform:matrix(0.222655,0.006680,-0.007497,0.249888,0,0);-ms-transform:matrix(0.222655,0.006680,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.222655,0.006680,-0.007497,0.249888,0,0);}
.mc3_c01108{transform:matrix(0.222738,0.006905,-0.007746,0.249880,0,0);-ms-transform:matrix(0.222738,0.006905,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.222738,0.006905,-0.007746,0.249880,0,0);}
.mb7_c01108{transform:matrix(0.222780,0.006683,-0.007497,0.249888,0,0);-ms-transform:matrix(0.222780,0.006683,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.222780,0.006683,-0.007497,0.249888,0,0);}
.m12b_c01108{transform:matrix(0.223286,0.006475,-0.007247,0.249895,0,0);-ms-transform:matrix(0.223286,0.006475,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.223286,0.006475,-0.007247,0.249895,0,0);}
.mba_c01108{transform:matrix(0.223574,0.006707,-0.007497,0.249888,0,0);-ms-transform:matrix(0.223574,0.006707,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.223574,0.006707,-0.007497,0.249888,0,0);}
.mcd_c01108{transform:matrix(0.223638,0.006933,-0.007746,0.249880,0,0);-ms-transform:matrix(0.223638,0.006933,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.223638,0.006933,-0.007746,0.249880,0,0);}
.md8_c01108{transform:matrix(0.223718,0.006935,-0.007746,0.249880,0,0);-ms-transform:matrix(0.223718,0.006935,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.223718,0.006935,-0.007746,0.249880,0,0);}
.m6_c01108{transform:matrix(0.224689,0.005842,-0.006498,0.249916,0,0);-ms-transform:matrix(0.224689,0.005842,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.224689,0.005842,-0.006498,0.249916,0,0);}
.m157_c01108{transform:matrix(0.224885,0.007204,-0.008004,0.249872,0,0);-ms-transform:matrix(0.224885,0.007204,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.224885,0.007204,-0.008004,0.249872,0,0);}
.mdd_c01108{transform:matrix(0.225956,0.007005,-0.007746,0.249880,0,0);-ms-transform:matrix(0.225956,0.007005,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.225956,0.007005,-0.007746,0.249880,0,0);}
.mcb_c01108{transform:matrix(0.226306,0.007015,-0.007746,0.249880,0,0);-ms-transform:matrix(0.226306,0.007015,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.226306,0.007015,-0.007746,0.249880,0,0);}
.m16d_c01108{transform:matrix(0.226439,0.007253,-0.008004,0.249872,0,0);-ms-transform:matrix(0.226439,0.007253,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.226439,0.007253,-0.008004,0.249872,0,0);}
.m2f_c01108{transform:matrix(0.226874,0.005672,-0.006248,0.249922,0,0);-ms-transform:matrix(0.226874,0.005672,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.226874,0.005672,-0.006248,0.249922,0,0);}
.m13f_c01108{transform:matrix(0.226926,0.006354,-0.006997,0.249902,0,0);-ms-transform:matrix(0.226926,0.006354,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.226926,0.006354,-0.006997,0.249902,0,0);}
.m156_c01108{transform:matrix(0.227313,0.007281,-0.008004,0.249872,0,0);-ms-transform:matrix(0.227313,0.007281,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.227313,0.007281,-0.008004,0.249872,0,0);}
.mb_c01108{transform:matrix(0.227498,0.005915,-0.006498,0.249916,0,0);-ms-transform:matrix(0.227498,0.005915,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.227498,0.005915,-0.006498,0.249916,0,0);}
.m36_c01108{transform:matrix(0.227769,0.005694,-0.006248,0.249922,0,0);-ms-transform:matrix(0.227769,0.005694,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.227769,0.005694,-0.006248,0.249922,0,0);}
.m153_c01108{transform:matrix(0.227988,0.007303,-0.008004,0.249872,0,0);-ms-transform:matrix(0.227988,0.007303,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.227988,0.007303,-0.008004,0.249872,0,0);}
.m11b_c01108{transform:matrix(0.227994,0.006612,-0.007247,0.249895,0,0);-ms-transform:matrix(0.227994,0.006612,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.227994,0.006612,-0.007247,0.249895,0,0);}
.ma6_c01108{transform:matrix(0.228027,0.006841,-0.007497,0.249888,0,0);-ms-transform:matrix(0.228027,0.006841,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.228027,0.006841,-0.007497,0.249888,0,0);}
.mc5_c01108{transform:matrix(0.228235,0.007075,-0.007746,0.249880,0,0);-ms-transform:matrix(0.228235,0.007075,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.228235,0.007075,-0.007746,0.249880,0,0);}
.mef_c01108{transform:matrix(0.228400,0.007080,-0.007746,0.249880,0,0);-ms-transform:matrix(0.228400,0.007080,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.228400,0.007080,-0.007746,0.249880,0,0);}
.mbb_c01108{transform:matrix(0.228707,0.006861,-0.007497,0.249888,0,0);-ms-transform:matrix(0.228707,0.006861,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.228707,0.006861,-0.007497,0.249888,0,0);}
.m141_c01108{transform:matrix(0.228920,0.006410,-0.006997,0.249902,0,0);-ms-transform:matrix(0.228920,0.006410,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.228920,0.006410,-0.006997,0.249902,0,0);}
.m67_c01108{transform:matrix(0.228928,0.005723,-0.006248,0.249922,0,0);-ms-transform:matrix(0.228928,0.005723,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.228928,0.005723,-0.006248,0.249922,0,0);}
.m112_c01108{transform:matrix(0.229099,0.006644,-0.007247,0.249895,0,0);-ms-transform:matrix(0.229099,0.006644,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.229099,0.006644,-0.007247,0.249895,0,0);}
.mbe_c01108{transform:matrix(0.229117,0.006874,-0.007497,0.249888,0,0);-ms-transform:matrix(0.229117,0.006874,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.229117,0.006874,-0.007497,0.249888,0,0);}
.mea_c01108{transform:matrix(0.229220,0.007106,-0.007746,0.249880,0,0);-ms-transform:matrix(0.229220,0.007106,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.229220,0.007106,-0.007746,0.249880,0,0);}
.m97_c01108{transform:matrix(0.229357,0.006881,-0.007497,0.249888,0,0);-ms-transform:matrix(0.229357,0.006881,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.229357,0.006881,-0.007497,0.249888,0,0);}
.m167_c01108{transform:matrix(0.229377,0.007347,-0.008004,0.249872,0,0);-ms-transform:matrix(0.229377,0.007347,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.229377,0.007347,-0.008004,0.249872,0,0);}
.mf5_c01108{transform:matrix(0.229415,0.007112,-0.007746,0.249880,0,0);-ms-transform:matrix(0.229415,0.007112,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.229415,0.007112,-0.007746,0.249880,0,0);}
.m84_c01108{transform:matrix(0.229422,0.006883,-0.007497,0.249888,0,0);-ms-transform:matrix(0.229422,0.006883,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.229422,0.006883,-0.007497,0.249888,0,0);}
.m12d_c01108{transform:matrix(0.229429,0.006653,-0.007247,0.249895,0,0);-ms-transform:matrix(0.229429,0.006653,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.229429,0.006653,-0.007247,0.249895,0,0);}
.m20_c01108{transform:matrix(0.229437,0.005965,-0.006498,0.249916,0,0);-ms-transform:matrix(0.229437,0.005965,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.229437,0.005965,-0.006498,0.249916,0,0);}
.m15c_c01108{transform:matrix(0.230102,0.007371,-0.008004,0.249872,0,0);-ms-transform:matrix(0.230102,0.007371,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.230102,0.007371,-0.008004,0.249872,0,0);}
.m119_c01108{transform:matrix(0.230118,0.006673,-0.007247,0.249895,0,0);-ms-transform:matrix(0.230118,0.006673,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.230118,0.006673,-0.007247,0.249895,0,0);}
.m105_c01108{transform:matrix(0.230228,0.006677,-0.007247,0.249895,0,0);-ms-transform:matrix(0.230228,0.006677,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.230228,0.006677,-0.007247,0.249895,0,0);}
.m4d_c01108{transform:matrix(0.230324,0.004606,-0.004999,0.249950,0,0);-ms-transform:matrix(0.230324,0.004606,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.230324,0.004606,-0.004999,0.249950,0,0);}
.m93_c01108{transform:matrix(0.230791,0.006924,-0.007497,0.249888,0,0);-ms-transform:matrix(0.230791,0.006924,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.230791,0.006924,-0.007497,0.249888,0,0);}
.m101_c01108{transform:matrix(0.230798,0.006693,-0.007247,0.249895,0,0);-ms-transform:matrix(0.230798,0.006693,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.230798,0.006693,-0.007247,0.249895,0,0);}
.m2_c01108{transform:matrix(0.230915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230915,0.000000,0.000000,0.250000,0,0);}
.mb4_c01108{transform:matrix(0.231116,0.006933,-0.007497,0.249888,0,0);-ms-transform:matrix(0.231116,0.006933,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.231116,0.006933,-0.007497,0.249888,0,0);}
.m15a_c01108{transform:matrix(0.231261,0.007408,-0.008004,0.249872,0,0);-ms-transform:matrix(0.231261,0.007408,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.231261,0.007408,-0.008004,0.249872,0,0);}
.me9_c01108{transform:matrix(0.231269,0.007169,-0.007746,0.249880,0,0);-ms-transform:matrix(0.231269,0.007169,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.231269,0.007169,-0.007746,0.249880,0,0);}
.m99_c01108{transform:matrix(0.231331,0.006940,-0.007497,0.249888,0,0);-ms-transform:matrix(0.231331,0.006940,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.231331,0.006940,-0.007497,0.249888,0,0);}
.m12a_c01108{transform:matrix(0.231438,0.006712,-0.007247,0.249895,0,0);-ms-transform:matrix(0.231438,0.006712,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.231438,0.006712,-0.007247,0.249895,0,0);}
.mf8_c01108{transform:matrix(0.231514,0.007177,-0.007746,0.249880,0,0);-ms-transform:matrix(0.231514,0.007177,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.231514,0.007177,-0.007746,0.249880,0,0);}
.mc1_c01108{transform:matrix(0.231566,0.006947,-0.007497,0.249888,0,0);-ms-transform:matrix(0.231566,0.006947,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.231566,0.006947,-0.007497,0.249888,0,0);}
.m4e_c01108{transform:matrix(0.231574,0.004631,-0.004999,0.249950,0,0);-ms-transform:matrix(0.231574,0.004631,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.231574,0.004631,-0.004999,0.249950,0,0);}
.m10f_c01108{transform:matrix(0.231593,0.006716,-0.007247,0.249895,0,0);-ms-transform:matrix(0.231593,0.006716,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.231593,0.006716,-0.007247,0.249895,0,0);}
.m87_c01108{transform:matrix(0.231896,0.006957,-0.007497,0.249888,0,0);-ms-transform:matrix(0.231896,0.006957,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.231896,0.006957,-0.007497,0.249888,0,0);}
.med_c01108{transform:matrix(0.232833,0.007218,-0.007746,0.249880,0,0);-ms-transform:matrix(0.232833,0.007218,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.232833,0.007218,-0.007746,0.249880,0,0);}
.m115_c01108{transform:matrix(0.232887,0.006754,-0.007247,0.249895,0,0);-ms-transform:matrix(0.232887,0.006754,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.232887,0.006754,-0.007247,0.249895,0,0);}
.m21_c01108{transform:matrix(0.233346,0.006067,-0.006498,0.249916,0,0);-ms-transform:matrix(0.233346,0.006067,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.233346,0.006067,-0.006498,0.249916,0,0);}
.m58_c01108{transform:matrix(0.233678,0.005141,-0.005499,0.249940,0,0);-ms-transform:matrix(0.233678,0.005141,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.233678,0.005141,-0.005499,0.249940,0,0);}
.m4a_c01108{transform:matrix(0.233793,0.004676,-0.004999,0.249950,0,0);-ms-transform:matrix(0.233793,0.004676,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.233793,0.004676,-0.004999,0.249950,0,0);}
.m5_c01108{transform:matrix(0.234181,0.006089,-0.006498,0.249916,0,0);-ms-transform:matrix(0.234181,0.006089,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.234181,0.006089,-0.006498,0.249916,0,0);}
.mcf_c01108{transform:matrix(0.234582,0.007272,-0.007746,0.249880,0,0);-ms-transform:matrix(0.234582,0.007272,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.234582,0.007272,-0.007746,0.249880,0,0);}
.m139_c01108{transform:matrix(0.234756,0.006808,-0.007247,0.249895,0,0);-ms-transform:matrix(0.234756,0.006808,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.234756,0.006808,-0.007247,0.249895,0,0);}
.m8c_c01108{transform:matrix(0.234974,0.007049,-0.007497,0.249888,0,0);-ms-transform:matrix(0.234974,0.007049,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.234974,0.007049,-0.007497,0.249888,0,0);}
.m76_c01108{transform:matrix(0.235018,0.005405,-0.005748,0.249934,0,0);-ms-transform:matrix(0.235018,0.005405,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.235018,0.005405,-0.005748,0.249934,0,0);}
.m52_c01108{transform:matrix(0.235063,0.005171,-0.005499,0.249940,0,0);-ms-transform:matrix(0.235063,0.005171,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.235063,0.005171,-0.005499,0.249940,0,0);}
.m37_c01108{transform:matrix(0.235137,0.005878,-0.006248,0.249922,0,0);-ms-transform:matrix(0.235137,0.005878,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.235137,0.005878,-0.006248,0.249922,0,0);}
.m55_c01108{transform:matrix(0.235338,0.005177,-0.005499,0.249940,0,0);-ms-transform:matrix(0.235338,0.005177,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.235338,0.005177,-0.005499,0.249940,0,0);}
.m88_c01108{transform:matrix(0.235649,0.007069,-0.007497,0.249888,0,0);-ms-transform:matrix(0.235649,0.007069,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.235649,0.007069,-0.007497,0.249888,0,0);}
.mb2_c01108{transform:matrix(0.235659,0.007070,-0.007497,0.249888,0,0);-ms-transform:matrix(0.235659,0.007070,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.235659,0.007070,-0.007497,0.249888,0,0);}
.m31_c01108{transform:matrix(0.236031,0.005901,-0.006248,0.249922,0,0);-ms-transform:matrix(0.236031,0.005901,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.236031,0.005901,-0.006248,0.249922,0,0);}
.md1_c01108{transform:matrix(0.236117,0.007320,-0.007746,0.249880,0,0);-ms-transform:matrix(0.236117,0.007320,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.236117,0.007320,-0.007746,0.249880,0,0);}
.m16a_c01108{transform:matrix(0.236179,0.007565,-0.008004,0.249872,0,0);-ms-transform:matrix(0.236179,0.007565,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.236179,0.007565,-0.008004,0.249872,0,0);}
.me3_c01108{transform:matrix(0.236331,0.007326,-0.007746,0.249880,0,0);-ms-transform:matrix(0.236331,0.007326,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.236331,0.007326,-0.007746,0.249880,0,0);}
.m4_c01108{transform:matrix(0.236360,0.006145,-0.006498,0.249916,0,0);-ms-transform:matrix(0.236360,0.006145,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.236360,0.006145,-0.006498,0.249916,0,0);}
.m7e_c01108{transform:matrix(0.236567,0.005441,-0.005748,0.249934,0,0);-ms-transform:matrix(0.236567,0.005441,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.236567,0.005441,-0.005748,0.249934,0,0);}
.m158_c01108{transform:matrix(0.237048,0.007593,-0.008004,0.249872,0,0);-ms-transform:matrix(0.237048,0.007593,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.237048,0.007593,-0.008004,0.249872,0,0);}
.m1b_c01108{transform:matrix(0.237205,0.006167,-0.006498,0.249916,0,0);-ms-transform:matrix(0.237205,0.006167,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.237205,0.006167,-0.006498,0.249916,0,0);}
.m131_c01108{transform:matrix(0.237325,0.006882,-0.007247,0.249895,0,0);-ms-transform:matrix(0.237325,0.006882,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.237325,0.006882,-0.007247,0.249895,0,0);}
.mce_c01108{transform:matrix(0.237716,0.007369,-0.007746,0.249880,0,0);-ms-transform:matrix(0.237716,0.007369,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.237716,0.007369,-0.007746,0.249880,0,0);}
.mb8_c01108{transform:matrix(0.237813,0.007134,-0.007497,0.249888,0,0);-ms-transform:matrix(0.237813,0.007134,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.237813,0.007134,-0.007497,0.249888,0,0);}
.m4c_c01108{transform:matrix(0.237862,0.004757,-0.004999,0.249950,0,0);-ms-transform:matrix(0.237862,0.004757,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.237862,0.004757,-0.004999,0.249950,0,0);}
.m86_c01108{transform:matrix(0.238428,0.007153,-0.007497,0.249888,0,0);-ms-transform:matrix(0.238428,0.007153,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.238428,0.007153,-0.007497,0.249888,0,0);}
.m136_c01108{transform:matrix(0.238435,0.006915,-0.007247,0.249895,0,0);-ms-transform:matrix(0.238435,0.006915,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.238435,0.006915,-0.007247,0.249895,0,0);}
.m11a_c01108{transform:matrix(0.239784,0.006954,-0.007247,0.249895,0,0);-ms-transform:matrix(0.239784,0.006954,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.239784,0.006954,-0.007247,0.249895,0,0);}
.m137_c01108{transform:matrix(0.239789,0.006954,-0.007247,0.249895,0,0);-ms-transform:matrix(0.239789,0.006954,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.239789,0.006954,-0.007247,0.249895,0,0);}
.m163_c01108{transform:matrix(0.239947,0.007686,-0.008004,0.249872,0,0);-ms-transform:matrix(0.239947,0.007686,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.239947,0.007686,-0.008004,0.249872,0,0);}
.m62_c01108{transform:matrix(0.240070,0.006002,-0.006248,0.249922,0,0);-ms-transform:matrix(0.240070,0.006002,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.240070,0.006002,-0.006248,0.249922,0,0);}
.m1_c01108{transform:matrix(0.240070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240070,0.000000,0.000000,0.250000,0,0);}
.m142_c01108{transform:matrix(0.240371,0.006730,-0.006997,0.249902,0,0);-ms-transform:matrix(0.240371,0.006730,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.240371,0.006730,-0.006997,0.249902,0,0);}
.mff_c01108{transform:matrix(0.240559,0.006976,-0.007247,0.249895,0,0);-ms-transform:matrix(0.240559,0.006976,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.240559,0.006976,-0.007247,0.249895,0,0);}
.m7_c01108{transform:matrix(0.240594,0.006255,-0.006498,0.249916,0,0);-ms-transform:matrix(0.240594,0.006255,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.240594,0.006255,-0.006498,0.249916,0,0);}
.mc8_c01108{transform:matrix(0.240639,0.007460,-0.007746,0.249880,0,0);-ms-transform:matrix(0.240639,0.007460,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.240639,0.007460,-0.007746,0.249880,0,0);}
.m110_c01108{transform:matrix(0.240674,0.006980,-0.007247,0.249895,0,0);-ms-transform:matrix(0.240674,0.006980,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.240674,0.006980,-0.007247,0.249895,0,0);}
.ma0_c01108{transform:matrix(0.240922,0.007228,-0.007497,0.249888,0,0);-ms-transform:matrix(0.240922,0.007228,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.240922,0.007228,-0.007497,0.249888,0,0);}
.m12c_c01108{transform:matrix(0.240979,0.006988,-0.007247,0.249895,0,0);-ms-transform:matrix(0.240979,0.006988,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.240979,0.006988,-0.007247,0.249895,0,0);}
.me7_c01108{transform:matrix(0.241394,0.007483,-0.007746,0.249880,0,0);-ms-transform:matrix(0.241394,0.007483,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.241394,0.007483,-0.007746,0.249880,0,0);}
.m64_c01108{transform:matrix(0.241435,0.006036,-0.006248,0.249922,0,0);-ms-transform:matrix(0.241435,0.006036,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.241435,0.006036,-0.006248,0.249922,0,0);}
.ma_c01108{transform:matrix(0.241618,0.006282,-0.006498,0.249916,0,0);-ms-transform:matrix(0.241618,0.006282,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.241618,0.006282,-0.006498,0.249916,0,0);}
.m91_c01108{transform:matrix(0.241886,0.007257,-0.007497,0.249888,0,0);-ms-transform:matrix(0.241886,0.007257,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.241886,0.007257,-0.007497,0.249888,0,0);}
.m98_c01108{transform:matrix(0.241906,0.007257,-0.007497,0.249888,0,0);-ms-transform:matrix(0.241906,0.007257,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.241906,0.007257,-0.007497,0.249888,0,0);}
.m41_c01108{transform:matrix(0.242427,0.004849,-0.004999,0.249950,0,0);-ms-transform:matrix(0.242427,0.004849,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.242427,0.004849,-0.004999,0.249950,0,0);}
.m9e_c01108{transform:matrix(0.242436,0.007273,-0.007497,0.249888,0,0);-ms-transform:matrix(0.242436,0.007273,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.242436,0.007273,-0.007497,0.249888,0,0);}
.md3_c01108{transform:matrix(0.242479,0.007517,-0.007746,0.249880,0,0);-ms-transform:matrix(0.242479,0.007517,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.242479,0.007517,-0.007746,0.249880,0,0);}
.m7d_c01108{transform:matrix(0.242611,0.005580,-0.005748,0.249934,0,0);-ms-transform:matrix(0.242611,0.005580,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.242611,0.005580,-0.005748,0.249934,0,0);}
.m132_c01108{transform:matrix(0.242643,0.007037,-0.007247,0.249895,0,0);-ms-transform:matrix(0.242643,0.007037,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.242643,0.007037,-0.007247,0.249895,0,0);}
.mc6_c01108{transform:matrix(0.242793,0.007527,-0.007746,0.249880,0,0);-ms-transform:matrix(0.242793,0.007527,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.242793,0.007527,-0.007746,0.249880,0,0);}
.m29_c01108{transform:matrix(0.242910,0.005830,-0.005998,0.249928,0,0);-ms-transform:matrix(0.242910,0.005830,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.242910,0.005830,-0.005998,0.249928,0,0);}
.m127_c01108{transform:matrix(0.243098,0.007050,-0.007247,0.249895,0,0);-ms-transform:matrix(0.243098,0.007050,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.243098,0.007050,-0.007247,0.249895,0,0);}
.m47_c01108{transform:matrix(0.243131,0.004863,-0.004999,0.249950,0,0);-ms-transform:matrix(0.243131,0.004863,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.243131,0.004863,-0.004999,0.249950,0,0);}
.m11f_c01108{transform:matrix(0.243273,0.007055,-0.007247,0.249895,0,0);-ms-transform:matrix(0.243273,0.007055,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.243273,0.007055,-0.007247,0.249895,0,0);}
.m126_c01108{transform:matrix(0.243503,0.007062,-0.007247,0.249895,0,0);-ms-transform:matrix(0.243503,0.007062,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.243503,0.007062,-0.007247,0.249895,0,0);}
.mb3_c01108{transform:matrix(0.243945,0.007318,-0.007497,0.249888,0,0);-ms-transform:matrix(0.243945,0.007318,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.243945,0.007318,-0.007497,0.249888,0,0);}
.m154_c01108{transform:matrix(0.243970,0.007815,-0.008004,0.249872,0,0);-ms-transform:matrix(0.243970,0.007815,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.243970,0.007815,-0.008004,0.249872,0,0);}
.m43_c01108{transform:matrix(0.244261,0.004885,-0.004999,0.249950,0,0);-ms-transform:matrix(0.244261,0.004885,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.244261,0.004885,-0.004999,0.249950,0,0);}
.m3c_c01108{transform:matrix(0.244426,0.004889,-0.004999,0.249950,0,0);-ms-transform:matrix(0.244426,0.004889,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.244426,0.004889,-0.004999,0.249950,0,0);}
.m81_c01108{transform:matrix(0.244750,0.007342,-0.007497,0.249888,0,0);-ms-transform:matrix(0.244750,0.007342,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.244750,0.007342,-0.007497,0.249888,0,0);}
.m7c_c01108{transform:matrix(0.244840,0.005631,-0.005748,0.249934,0,0);-ms-transform:matrix(0.244840,0.005631,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.244840,0.005631,-0.005748,0.249934,0,0);}
.m68_c01108{transform:matrix(0.244938,0.006123,-0.006248,0.249922,0,0);-ms-transform:matrix(0.244938,0.006123,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.244938,0.006123,-0.006248,0.249922,0,0);}
.md5_c01108{transform:matrix(0.245087,0.007598,-0.007746,0.249880,0,0);-ms-transform:matrix(0.245087,0.007598,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.245087,0.007598,-0.007746,0.249880,0,0);}
.m83_c01108{transform:matrix(0.245105,0.007353,-0.007497,0.249888,0,0);-ms-transform:matrix(0.245105,0.007353,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.245105,0.007353,-0.007497,0.249888,0,0);}
.m72_c01108{transform:matrix(0.245150,0.005638,-0.005748,0.249934,0,0);-ms-transform:matrix(0.245150,0.005638,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.245150,0.005638,-0.005748,0.249934,0,0);}
.mdb_c01108{transform:matrix(0.245257,0.007603,-0.007746,0.249880,0,0);-ms-transform:matrix(0.245257,0.007603,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.245257,0.007603,-0.007746,0.249880,0,0);}
.m6b_c01108{transform:matrix(0.245278,0.006132,-0.006248,0.249922,0,0);-ms-transform:matrix(0.245278,0.006132,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.245278,0.006132,-0.006248,0.249922,0,0);}
.me0_c01108{transform:matrix(0.245557,0.007612,-0.007746,0.249880,0,0);-ms-transform:matrix(0.245557,0.007612,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.245557,0.007612,-0.007746,0.249880,0,0);}
.mf6_c01108{transform:matrix(0.245572,0.007613,-0.007746,0.249880,0,0);-ms-transform:matrix(0.245572,0.007613,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.245572,0.007613,-0.007746,0.249880,0,0);}
.m6a_c01108{transform:matrix(0.245608,0.006140,-0.006248,0.249922,0,0);-ms-transform:matrix(0.245608,0.006140,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.245608,0.006140,-0.006248,0.249922,0,0);}
.m161_c01108{transform:matrix(0.245649,0.007869,-0.008004,0.249872,0,0);-ms-transform:matrix(0.245649,0.007869,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.245649,0.007869,-0.008004,0.249872,0,0);}
.m75_c01108{transform:matrix(0.245660,0.005650,-0.005748,0.249934,0,0);-ms-transform:matrix(0.245660,0.005650,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.245660,0.005650,-0.005748,0.249934,0,0);}
.m125_c01108{transform:matrix(0.245722,0.007126,-0.007247,0.249895,0,0);-ms-transform:matrix(0.245722,0.007126,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.245722,0.007126,-0.007247,0.249895,0,0);}
.m143_c01108{transform:matrix(0.245809,0.006883,-0.006997,0.249902,0,0);-ms-transform:matrix(0.245809,0.006883,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.245809,0.006883,-0.006997,0.249902,0,0);}
.mf0_c01108{transform:matrix(0.246072,0.007628,-0.007746,0.249880,0,0);-ms-transform:matrix(0.246072,0.007628,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.246072,0.007628,-0.007746,0.249880,0,0);}
.m28_c01108{transform:matrix(0.246154,0.005908,-0.005998,0.249928,0,0);-ms-transform:matrix(0.246154,0.005908,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.246154,0.005908,-0.005998,0.249928,0,0);}
.md7_c01108{transform:matrix(0.246432,0.007639,-0.007746,0.249880,0,0);-ms-transform:matrix(0.246432,0.007639,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.246432,0.007639,-0.007746,0.249880,0,0);}
.m11c_c01108{transform:matrix(0.246741,0.007155,-0.007247,0.249895,0,0);-ms-transform:matrix(0.246741,0.007155,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.246741,0.007155,-0.007247,0.249895,0,0);}
.m61_c01108{transform:matrix(0.246748,0.006169,-0.006248,0.249922,0,0);-ms-transform:matrix(0.246748,0.006169,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.246748,0.006169,-0.006248,0.249922,0,0);}
.m3a_c01108{transform:matrix(0.246868,0.006172,-0.006248,0.249922,0,0);-ms-transform:matrix(0.246868,0.006172,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.246868,0.006172,-0.006248,0.249922,0,0);}
.m6d_c01108{transform:matrix(0.247500,0.005692,-0.005748,0.249934,0,0);-ms-transform:matrix(0.247500,0.005692,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.247500,0.005692,-0.005748,0.249934,0,0);}
.m7f_c01108{transform:matrix(0.247530,0.005693,-0.005748,0.249934,0,0);-ms-transform:matrix(0.247530,0.005693,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.247530,0.005693,-0.005748,0.249934,0,0);}
.m10e_c01108{transform:matrix(0.248146,0.007196,-0.007247,0.249895,0,0);-ms-transform:matrix(0.248146,0.007196,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.248146,0.007196,-0.007247,0.249895,0,0);}
.m128_c01108{transform:matrix(0.248411,0.007204,-0.007247,0.249895,0,0);-ms-transform:matrix(0.248411,0.007204,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.248411,0.007204,-0.007247,0.249895,0,0);}
.m169_c01108{transform:matrix(0.248413,0.007957,-0.008004,0.249872,0,0);-ms-transform:matrix(0.248413,0.007957,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.248413,0.007957,-0.008004,0.249872,0,0);}
.m151_c01108{transform:matrix(0.248458,0.007959,-0.008004,0.249872,0,0);-ms-transform:matrix(0.248458,0.007959,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.248458,0.007959,-0.008004,0.249872,0,0);}
.meb_c01108{transform:matrix(0.248666,0.007709,-0.007746,0.249880,0,0);-ms-transform:matrix(0.248666,0.007709,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.248666,0.007709,-0.007746,0.249880,0,0);}
.mf3_c01108{transform:matrix(0.248830,0.007714,-0.007746,0.249880,0,0);-ms-transform:matrix(0.248830,0.007714,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.248830,0.007714,-0.007746,0.249880,0,0);}
.m8a_c01108{transform:matrix(0.248928,0.007468,-0.007497,0.249888,0,0);-ms-transform:matrix(0.248928,0.007468,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.248928,0.007468,-0.007497,0.249888,0,0);}
.m56_c01108{transform:matrix(0.248970,0.005477,-0.005499,0.249940,0,0);-ms-transform:matrix(0.248970,0.005477,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.248970,0.005477,-0.005499,0.249940,0,0);}
.mc9_c01108{transform:matrix(0.249115,0.007723,-0.007746,0.249880,0,0);-ms-transform:matrix(0.249115,0.007723,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.249115,0.007723,-0.007746,0.249880,0,0);}
.m78_c01108{transform:matrix(0.249764,0.005745,-0.005748,0.249934,0,0);-ms-transform:matrix(0.249764,0.005745,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.249764,0.005745,-0.005748,0.249934,0,0);}
.m122_c01108{transform:matrix(0.249950,0.007249,-0.007247,0.249895,0,0);-ms-transform:matrix(0.249950,0.007249,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.249950,0.007249,-0.007247,0.249895,0,0);}
.maa_c01108{transform:matrix(0.250277,0.007508,-0.007497,0.249888,0,0);-ms-transform:matrix(0.250277,0.007508,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.250277,0.007508,-0.007497,0.249888,0,0);}
.me2_c01108{transform:matrix(0.250350,0.007761,-0.007746,0.249880,0,0);-ms-transform:matrix(0.250350,0.007761,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.250350,0.007761,-0.007746,0.249880,0,0);}
.m11e_c01108{transform:matrix(0.250365,0.007261,-0.007247,0.249895,0,0);-ms-transform:matrix(0.250365,0.007261,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.250365,0.007261,-0.007247,0.249895,0,0);}
.mca_c01108{transform:matrix(0.250430,0.007763,-0.007746,0.249880,0,0);-ms-transform:matrix(0.250430,0.007763,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.250430,0.007763,-0.007746,0.249880,0,0);}
.m15f_c01108{transform:matrix(0.250457,0.008023,-0.008004,0.249872,0,0);-ms-transform:matrix(0.250457,0.008023,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.250457,0.008023,-0.008004,0.249872,0,0);}
.m2b_c01108{transform:matrix(0.251163,0.006028,-0.005998,0.249928,0,0);-ms-transform:matrix(0.251163,0.006028,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.251163,0.006028,-0.005998,0.249928,0,0);}
.m5d_c01108{transform:matrix(0.251169,0.005526,-0.005499,0.249940,0,0);-ms-transform:matrix(0.251169,0.005526,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.251169,0.005526,-0.005499,0.249940,0,0);}
.me6_c01108{transform:matrix(0.251219,0.007788,-0.007746,0.249880,0,0);-ms-transform:matrix(0.251219,0.007788,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.251219,0.007788,-0.007746,0.249880,0,0);}
.m26_c01108{transform:matrix(0.251318,0.006032,-0.005998,0.249928,0,0);-ms-transform:matrix(0.251318,0.006032,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.251318,0.006032,-0.005998,0.249928,0,0);}
.mac_c01108{transform:matrix(0.251772,0.007553,-0.007497,0.249888,0,0);-ms-transform:matrix(0.251772,0.007553,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.251772,0.007553,-0.007497,0.249888,0,0);}
.m25_c01108{transform:matrix(0.252052,0.006049,-0.005998,0.249928,0,0);-ms-transform:matrix(0.252052,0.006049,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.252052,0.006049,-0.005998,0.249928,0,0);}
.m124_c01108{transform:matrix(0.252114,0.007311,-0.007247,0.249895,0,0);-ms-transform:matrix(0.252114,0.007311,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.252114,0.007311,-0.007247,0.249895,0,0);}
.m46_c01108{transform:matrix(0.252150,0.005043,-0.004999,0.249950,0,0);-ms-transform:matrix(0.252150,0.005043,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.252150,0.005043,-0.004999,0.249950,0,0);}
.m16c_c01108{transform:matrix(0.252206,0.008079,-0.008004,0.249872,0,0);-ms-transform:matrix(0.252206,0.008079,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.252206,0.008079,-0.008004,0.249872,0,0);}
.mc4_c01108{transform:matrix(0.252249,0.007820,-0.007746,0.249880,0,0);-ms-transform:matrix(0.252249,0.007820,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.252249,0.007820,-0.007746,0.249880,0,0);}
.m113_c01108{transform:matrix(0.252284,0.007316,-0.007247,0.249895,0,0);-ms-transform:matrix(0.252284,0.007316,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.252284,0.007316,-0.007247,0.249895,0,0);}
.m3_c01108{transform:matrix(0.252565,0.006567,-0.006498,0.249916,0,0);-ms-transform:matrix(0.252565,0.006567,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.252565,0.006567,-0.006498,0.249916,0,0);}
.ma5_c01108{transform:matrix(0.252896,0.007587,-0.007497,0.249888,0,0);-ms-transform:matrix(0.252896,0.007587,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.252896,0.007587,-0.007497,0.249888,0,0);}
.m1c_c01108{transform:matrix(0.252975,0.006577,-0.006498,0.249916,0,0);-ms-transform:matrix(0.252975,0.006577,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.252975,0.006577,-0.006498,0.249916,0,0);}
.m5c_c01108{transform:matrix(0.253174,0.005570,-0.005499,0.249940,0,0);-ms-transform:matrix(0.253174,0.005570,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.253174,0.005570,-0.005499,0.249940,0,0);}
.md0_c01108{transform:matrix(0.253348,0.007854,-0.007746,0.249880,0,0);-ms-transform:matrix(0.253348,0.007854,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.253348,0.007854,-0.007746,0.249880,0,0);}
.mde_c01108{transform:matrix(0.253728,0.007866,-0.007746,0.249880,0,0);-ms-transform:matrix(0.253728,0.007866,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.253728,0.007866,-0.007746,0.249880,0,0);}
.m160_c01108{transform:matrix(0.253990,0.008136,-0.008004,0.249872,0,0);-ms-transform:matrix(0.253990,0.008136,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.253990,0.008136,-0.008004,0.249872,0,0);}
.m7b_c01108{transform:matrix(0.254168,0.005846,-0.005748,0.249934,0,0);-ms-transform:matrix(0.254168,0.005846,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.254168,0.005846,-0.005748,0.249934,0,0);}
.me8_c01108{transform:matrix(0.254243,0.007882,-0.007746,0.249880,0,0);-ms-transform:matrix(0.254243,0.007882,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.254243,0.007882,-0.007746,0.249880,0,0);}
.m16b_c01108{transform:matrix(0.254449,0.008151,-0.008004,0.249872,0,0);-ms-transform:matrix(0.254449,0.008151,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.254449,0.008151,-0.008004,0.249872,0,0);}
.m57_c01108{transform:matrix(0.254623,0.005602,-0.005499,0.249940,0,0);-ms-transform:matrix(0.254623,0.005602,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.254623,0.005602,-0.005499,0.249940,0,0);}
.m5b_c01108{transform:matrix(0.254853,0.005607,-0.005499,0.249940,0,0);-ms-transform:matrix(0.254853,0.005607,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.254853,0.005607,-0.005499,0.249940,0,0);}
.m73_c01108{transform:matrix(0.255607,0.005879,-0.005748,0.249934,0,0);-ms-transform:matrix(0.255607,0.005879,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.255607,0.005879,-0.005748,0.249934,0,0);}
.m8_c01108{transform:matrix(0.255744,0.006649,-0.006498,0.249916,0,0);-ms-transform:matrix(0.255744,0.006649,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.255744,0.006649,-0.006498,0.249916,0,0);}
.m12e_c01108{transform:matrix(0.256432,0.007437,-0.007247,0.249895,0,0);-ms-transform:matrix(0.256432,0.007437,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.256432,0.007437,-0.007247,0.249895,0,0);}
.m1f_c01108{transform:matrix(0.257343,0.006691,-0.006498,0.249916,0,0);-ms-transform:matrix(0.257343,0.006691,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.257343,0.006691,-0.006498,0.249916,0,0);}
.m100_c01108{transform:matrix(0.257587,0.007470,-0.007247,0.249895,0,0);-ms-transform:matrix(0.257587,0.007470,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.257587,0.007470,-0.007247,0.249895,0,0);}
.m6f_c01108{transform:matrix(0.258007,0.005934,-0.005748,0.249934,0,0);-ms-transform:matrix(0.258007,0.005934,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.258007,0.005934,-0.005748,0.249934,0,0);}
.m53_c01108{transform:matrix(0.258567,0.005688,-0.005499,0.249940,0,0);-ms-transform:matrix(0.258567,0.005688,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.258567,0.005688,-0.005499,0.249940,0,0);}
.m89_c01108{transform:matrix(0.258864,0.007766,-0.007497,0.249888,0,0);-ms-transform:matrix(0.258864,0.007766,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.258864,0.007766,-0.007497,0.249888,0,0);}
.m162_c01108{transform:matrix(0.259007,0.008297,-0.008004,0.249872,0,0);-ms-transform:matrix(0.259007,0.008297,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.259007,0.008297,-0.008004,0.249872,0,0);}
.m109_c01108{transform:matrix(0.259216,0.007517,-0.007247,0.249895,0,0);-ms-transform:matrix(0.259216,0.007517,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.259216,0.007517,-0.007247,0.249895,0,0);}
.mc_c01108{transform:matrix(0.259382,0.006744,-0.006498,0.249916,0,0);-ms-transform:matrix(0.259382,0.006744,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.259382,0.006744,-0.006498,0.249916,0,0);}
.ma1_c01108{transform:matrix(0.259398,0.007782,-0.007497,0.249888,0,0);-ms-transform:matrix(0.259398,0.007782,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.259398,0.007782,-0.007497,0.249888,0,0);}
.m49_c01108{transform:matrix(0.259498,0.005190,-0.004999,0.249950,0,0);-ms-transform:matrix(0.259498,0.005190,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.259498,0.005190,-0.004999,0.249950,0,0);}
.mdc_c01108{transform:matrix(0.259715,0.008051,-0.007746,0.249880,0,0);-ms-transform:matrix(0.259715,0.008051,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.259715,0.008051,-0.007746,0.249880,0,0);}
.ma2_c01108{transform:matrix(0.259783,0.007793,-0.007497,0.249888,0,0);-ms-transform:matrix(0.259783,0.007793,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.259783,0.007793,-0.007497,0.249888,0,0);}
.m23_c01108{transform:matrix(0.259792,0.006755,-0.006498,0.249916,0,0);-ms-transform:matrix(0.259792,0.006755,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.259792,0.006755,-0.006498,0.249916,0,0);}
.m111_c01108{transform:matrix(0.259861,0.007536,-0.007247,0.249895,0,0);-ms-transform:matrix(0.259861,0.007536,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.259861,0.007536,-0.007247,0.249895,0,0);}
.m95_c01108{transform:matrix(0.259908,0.007797,-0.007497,0.249888,0,0);-ms-transform:matrix(0.259908,0.007797,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.259908,0.007797,-0.007497,0.249888,0,0);}
.m116_c01108{transform:matrix(0.260316,0.007549,-0.007247,0.249895,0,0);-ms-transform:matrix(0.260316,0.007549,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.260316,0.007549,-0.007247,0.249895,0,0);}
.m42_c01108{transform:matrix(0.260383,0.005208,-0.004999,0.249950,0,0);-ms-transform:matrix(0.260383,0.005208,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.260383,0.005208,-0.004999,0.249950,0,0);}
.m102_c01108{transform:matrix(0.260386,0.007551,-0.007247,0.249895,0,0);-ms-transform:matrix(0.260386,0.007551,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.260386,0.007551,-0.007247,0.249895,0,0);}
.m1e_c01108{transform:matrix(0.260457,0.006772,-0.006498,0.249916,0,0);-ms-transform:matrix(0.260457,0.006772,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.260457,0.006772,-0.006498,0.249916,0,0);}
.mcc_c01108{transform:matrix(0.260850,0.008086,-0.007746,0.249880,0,0);-ms-transform:matrix(0.260850,0.008086,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.260850,0.008086,-0.007746,0.249880,0,0);}
.mf9_c01108{transform:matrix(0.261399,0.008103,-0.007746,0.249880,0,0);-ms-transform:matrix(0.261399,0.008103,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.261399,0.008103,-0.007746,0.249880,0,0);}
.m9a_c01108{transform:matrix(0.261572,0.007847,-0.007497,0.249888,0,0);-ms-transform:matrix(0.261572,0.007847,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.261572,0.007847,-0.007497,0.249888,0,0);}
.mfc_c01108{transform:matrix(0.261604,0.008110,-0.007746,0.249880,0,0);-ms-transform:matrix(0.261604,0.008110,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.261604,0.008110,-0.007746,0.249880,0,0);}
.m85_c01108{transform:matrix(0.261982,0.007859,-0.007497,0.249888,0,0);-ms-transform:matrix(0.261982,0.007859,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.261982,0.007859,-0.007497,0.249888,0,0);}
.m138_c01108{transform:matrix(0.262095,0.007601,-0.007247,0.249895,0,0);-ms-transform:matrix(0.262095,0.007601,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.262095,0.007601,-0.007247,0.249895,0,0);}
.m104_c01108{transform:matrix(0.262740,0.007619,-0.007247,0.249895,0,0);-ms-transform:matrix(0.262740,0.007619,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.262740,0.007619,-0.007247,0.249895,0,0);}
.mfb_c01108{transform:matrix(0.262899,0.008150,-0.007746,0.249880,0,0);-ms-transform:matrix(0.262899,0.008150,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.262899,0.008150,-0.007746,0.249880,0,0);}
.m106_c01108{transform:matrix(0.263059,0.007629,-0.007247,0.249895,0,0);-ms-transform:matrix(0.263059,0.007629,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.263059,0.007629,-0.007247,0.249895,0,0);}
.mf1_c01108{transform:matrix(0.263094,0.008156,-0.007746,0.249880,0,0);-ms-transform:matrix(0.263094,0.008156,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.263094,0.008156,-0.007746,0.249880,0,0);}
.m54_c01108{transform:matrix(0.263471,0.005796,-0.005499,0.249940,0,0);-ms-transform:matrix(0.263471,0.005796,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.263471,0.005796,-0.005499,0.249940,0,0);}
.m135_c01108{transform:matrix(0.263524,0.007642,-0.007247,0.249895,0,0);-ms-transform:matrix(0.263524,0.007642,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.263524,0.007642,-0.007247,0.249895,0,0);}
.m71_c01108{transform:matrix(0.263740,0.006066,-0.005748,0.249934,0,0);-ms-transform:matrix(0.263740,0.006066,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.263740,0.006066,-0.005748,0.249934,0,0);}
.m3e_c01108{transform:matrix(0.264647,0.005293,-0.004999,0.249950,0,0);-ms-transform:matrix(0.264647,0.005293,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.264647,0.005293,-0.004999,0.249950,0,0);}
.m13b_c01108{transform:matrix(0.264951,0.007419,-0.006997,0.249902,0,0);-ms-transform:matrix(0.264951,0.007419,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.264951,0.007419,-0.006997,0.249902,0,0);}
.mf7_c01108{transform:matrix(0.265532,0.008232,-0.007746,0.249880,0,0);-ms-transform:matrix(0.265532,0.008232,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.265532,0.008232,-0.007746,0.249880,0,0);}
.m10d_c01108{transform:matrix(0.265688,0.007705,-0.007247,0.249895,0,0);-ms-transform:matrix(0.265688,0.007705,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.265688,0.007705,-0.007247,0.249895,0,0);}
.m90_c01108{transform:matrix(0.266120,0.007984,-0.007497,0.249888,0,0);-ms-transform:matrix(0.266120,0.007984,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.266120,0.007984,-0.007497,0.249888,0,0);}
.m70_c01108{transform:matrix(0.266285,0.006125,-0.005748,0.249934,0,0);-ms-transform:matrix(0.266285,0.006125,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.266285,0.006125,-0.005748,0.249934,0,0);}
.m134_c01108{transform:matrix(0.266733,0.007735,-0.007247,0.249895,0,0);-ms-transform:matrix(0.266733,0.007735,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.266733,0.007735,-0.007247,0.249895,0,0);}
.m8e_c01108{transform:matrix(0.267045,0.008011,-0.007497,0.249888,0,0);-ms-transform:matrix(0.267045,0.008011,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.267045,0.008011,-0.007497,0.249888,0,0);}
.m133_c01108{transform:matrix(0.267068,0.007745,-0.007247,0.249895,0,0);-ms-transform:matrix(0.267068,0.007745,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.267068,0.007745,-0.007247,0.249895,0,0);}
.m8b_c01108{transform:matrix(0.267540,0.008026,-0.007497,0.249888,0,0);-ms-transform:matrix(0.267540,0.008026,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.267540,0.008026,-0.007497,0.249888,0,0);}
.m117_c01108{transform:matrix(0.267558,0.007759,-0.007247,0.249895,0,0);-ms-transform:matrix(0.267558,0.007759,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.267558,0.007759,-0.007247,0.249895,0,0);}
.m3d_c01108{transform:matrix(0.267601,0.005352,-0.004999,0.249950,0,0);-ms-transform:matrix(0.267601,0.005352,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.267601,0.005352,-0.004999,0.249950,0,0);}
.m130_c01108{transform:matrix(0.267617,0.007761,-0.007247,0.249895,0,0);-ms-transform:matrix(0.267617,0.007761,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.267617,0.007761,-0.007247,0.249895,0,0);}
.mfa_c01108{transform:matrix(0.269046,0.008340,-0.007746,0.249880,0,0);-ms-transform:matrix(0.269046,0.008340,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.269046,0.008340,-0.007746,0.249880,0,0);}
.m103_c01108{transform:matrix(0.270111,0.007833,-0.007247,0.249895,0,0);-ms-transform:matrix(0.270111,0.007833,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.270111,0.007833,-0.007247,0.249895,0,0);}
.m2c_c01108{transform:matrix(0.270337,0.006488,-0.005998,0.249928,0,0);-ms-transform:matrix(0.270337,0.006488,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.270337,0.006488,-0.005998,0.249928,0,0);}
.mf4_c01108{transform:matrix(0.270645,0.008390,-0.007746,0.249880,0,0);-ms-transform:matrix(0.270645,0.008390,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.270645,0.008390,-0.007746,0.249880,0,0);}
.m94_c01108{transform:matrix(0.270923,0.008128,-0.007497,0.249888,0,0);-ms-transform:matrix(0.270923,0.008128,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.270923,0.008128,-0.007497,0.249888,0,0);}
.m5a_c01108{transform:matrix(0.271244,0.005967,-0.005499,0.249940,0,0);-ms-transform:matrix(0.271244,0.005967,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.271244,0.005967,-0.005499,0.249940,0,0);}
.ma7_c01108{transform:matrix(0.271558,0.008147,-0.007497,0.249888,0,0);-ms-transform:matrix(0.271558,0.008147,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.271558,0.008147,-0.007497,0.249888,0,0);}
.m107_c01108{transform:matrix(0.272550,0.007904,-0.007247,0.249895,0,0);-ms-transform:matrix(0.272550,0.007904,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.272550,0.007904,-0.007247,0.249895,0,0);}
.m10b_c01108{transform:matrix(0.272575,0.007905,-0.007247,0.249895,0,0);-ms-transform:matrix(0.272575,0.007905,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.272575,0.007905,-0.007247,0.249895,0,0);}
.m82_c01108{transform:matrix(0.272987,0.008190,-0.007497,0.249888,0,0);-ms-transform:matrix(0.272987,0.008190,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.272987,0.008190,-0.007497,0.249888,0,0);}
.mfd_c01108{transform:matrix(0.273039,0.008464,-0.007746,0.249880,0,0);-ms-transform:matrix(0.273039,0.008464,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.273039,0.008464,-0.007746,0.249880,0,0);}
.m11d_c01108{transform:matrix(0.273265,0.007925,-0.007247,0.249895,0,0);-ms-transform:matrix(0.273265,0.007925,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.273265,0.007925,-0.007247,0.249895,0,0);}
.m10c_c01108{transform:matrix(0.273285,0.007925,-0.007247,0.249895,0,0);-ms-transform:matrix(0.273285,0.007925,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.273285,0.007925,-0.007247,0.249895,0,0);}
.m74_c01108{transform:matrix(0.273768,0.006297,-0.005748,0.249934,0,0);-ms-transform:matrix(0.273768,0.006297,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.273768,0.006297,-0.005748,0.249934,0,0);}
.m96_c01108{transform:matrix(0.274222,0.008227,-0.007497,0.249888,0,0);-ms-transform:matrix(0.274222,0.008227,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.274222,0.008227,-0.007497,0.249888,0,0);}
.m44_c01108{transform:matrix(0.275485,0.005510,-0.004999,0.249950,0,0);-ms-transform:matrix(0.275485,0.005510,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.275485,0.005510,-0.004999,0.249950,0,0);}
.m8d_c01108{transform:matrix(0.275676,0.008270,-0.007497,0.249888,0,0);-ms-transform:matrix(0.275676,0.008270,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.275676,0.008270,-0.007497,0.249888,0,0);}
.m10a_c01108{transform:matrix(0.276339,0.008014,-0.007247,0.249895,0,0);-ms-transform:matrix(0.276339,0.008014,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.276339,0.008014,-0.007247,0.249895,0,0);}
.me5_c01108{transform:matrix(0.276772,0.008580,-0.007746,0.249880,0,0);-ms-transform:matrix(0.276772,0.008580,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.276772,0.008580,-0.007746,0.249880,0,0);}
.me1_c01108{transform:matrix(0.276882,0.008583,-0.007746,0.249880,0,0);-ms-transform:matrix(0.276882,0.008583,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.276882,0.008583,-0.007746,0.249880,0,0);}
.m152_c01108{transform:matrix(0.276918,0.008870,-0.008004,0.249872,0,0);-ms-transform:matrix(0.276918,0.008870,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.276918,0.008870,-0.008004,0.249872,0,0);}
.m9d_c01108{transform:matrix(0.277980,0.008339,-0.007497,0.249888,0,0);-ms-transform:matrix(0.277980,0.008339,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.277980,0.008339,-0.007497,0.249888,0,0);}
.m108_c01108{transform:matrix(0.278153,0.008066,-0.007247,0.249895,0,0);-ms-transform:matrix(0.278153,0.008066,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.278153,0.008066,-0.007247,0.249895,0,0);}
.m9f_c01108{transform:matrix(0.278185,0.008346,-0.007497,0.249888,0,0);-ms-transform:matrix(0.278185,0.008346,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.278185,0.008346,-0.007497,0.249888,0,0);}
.m92_c01108{transform:matrix(0.278270,0.008348,-0.007497,0.249888,0,0);-ms-transform:matrix(0.278270,0.008348,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.278270,0.008348,-0.007497,0.249888,0,0);}
.m9b_c01108{transform:matrix(0.278660,0.008360,-0.007497,0.249888,0,0);-ms-transform:matrix(0.278660,0.008360,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.278660,0.008360,-0.007497,0.249888,0,0);}
.m77_c01108{transform:matrix(0.278711,0.006410,-0.005748,0.249934,0,0);-ms-transform:matrix(0.278711,0.006410,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.278711,0.006410,-0.005748,0.249934,0,0);}
.m118_c01108{transform:matrix(0.278873,0.008087,-0.007247,0.249895,0,0);-ms-transform:matrix(0.278873,0.008087,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.278873,0.008087,-0.007247,0.249895,0,0);}
.me4_c01108{transform:matrix(0.278891,0.008646,-0.007746,0.249880,0,0);-ms-transform:matrix(0.278891,0.008646,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.278891,0.008646,-0.007746,0.249880,0,0);}
.m59_c01108{transform:matrix(0.279117,0.006141,-0.005499,0.249940,0,0);-ms-transform:matrix(0.279117,0.006141,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.279117,0.006141,-0.005499,0.249940,0,0);}
.m3f_c01108{transform:matrix(0.279429,0.005589,-0.004999,0.249950,0,0);-ms-transform:matrix(0.279429,0.005589,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.279429,0.005589,-0.004999,0.249950,0,0);}
.mdf_c01108{transform:matrix(0.279981,0.008679,-0.007746,0.249880,0,0);-ms-transform:matrix(0.279981,0.008679,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.279981,0.008679,-0.007746,0.249880,0,0);}
.m3b_c01108{transform:matrix(0.280424,0.005608,-0.004999,0.249950,0,0);-ms-transform:matrix(0.280424,0.005608,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.280424,0.005608,-0.004999,0.249950,0,0);}
.ma3_c01108{transform:matrix(0.281049,0.008431,-0.007497,0.249888,0,0);-ms-transform:matrix(0.281049,0.008431,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.281049,0.008431,-0.007497,0.249888,0,0);}
.mae_c01108{transform:matrix(0.282743,0.008482,-0.007497,0.249888,0,0);-ms-transform:matrix(0.282743,0.008482,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.282743,0.008482,-0.007497,0.249888,0,0);}
.m166_c01108{transform:matrix(0.284639,0.009118,-0.008004,0.249872,0,0);-ms-transform:matrix(0.284639,0.009118,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.284639,0.009118,-0.008004,0.249872,0,0);}
.m8f_c01108{transform:matrix(0.285407,0.008562,-0.007497,0.249888,0,0);-ms-transform:matrix(0.285407,0.008562,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.285407,0.008562,-0.007497,0.249888,0,0);}
.mad_c01108{transform:matrix(0.285716,0.008571,-0.007497,0.249888,0,0);-ms-transform:matrix(0.285716,0.008571,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.285716,0.008571,-0.007497,0.249888,0,0);}
.maf_c01108{transform:matrix(0.286476,0.008594,-0.007497,0.249888,0,0);-ms-transform:matrix(0.286476,0.008594,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.286476,0.008594,-0.007497,0.249888,0,0);}
.m114_c01108{transform:matrix(0.286674,0.008314,-0.007247,0.249895,0,0);-ms-transform:matrix(0.286674,0.008314,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.286674,0.008314,-0.007247,0.249895,0,0);}
.mab_c01108{transform:matrix(0.287076,0.008612,-0.007497,0.249888,0,0);-ms-transform:matrix(0.287076,0.008612,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.287076,0.008612,-0.007497,0.249888,0,0);}
.m40_c01108{transform:matrix(0.287398,0.005748,-0.004999,0.249950,0,0);-ms-transform:matrix(0.287398,0.005748,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.287398,0.005748,-0.004999,0.249950,0,0);}
.ma9_c01108{transform:matrix(0.288920,0.008668,-0.007497,0.249888,0,0);-ms-transform:matrix(0.288920,0.008668,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.288920,0.008668,-0.007497,0.249888,0,0);}
.m155_c01108{transform:matrix(0.291860,0.009349,-0.008004,0.249872,0,0);-ms-transform:matrix(0.291860,0.009349,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.291860,0.009349,-0.008004,0.249872,0,0);}
.ma4_c01108{transform:matrix(0.294313,0.008829,-0.007497,0.249888,0,0);-ms-transform:matrix(0.294313,0.008829,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.294313,0.008829,-0.007497,0.249888,0,0);}
.m120_c01108{transform:matrix(0.318171,0.009227,-0.007247,0.249895,0,0);-ms-transform:matrix(0.318171,0.009227,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.318171,0.009227,-0.007247,0.249895,0,0);}
.m6c_c01108{transform:matrix(0.318805,0.007970,-0.006248,0.249922,0,0);-ms-transform:matrix(0.318805,0.007970,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.318805,0.007970,-0.006248,0.249922,0,0);}
.m164_c01108{transform:matrix(0.319681,0.010240,-0.008004,0.249872,0,0);-ms-transform:matrix(0.319681,0.010240,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.319681,0.010240,-0.008004,0.249872,0,0);}
.m13a_c01108{transform:matrix(0.328347,0.009522,-0.007247,0.249895,0,0);-ms-transform:matrix(0.328347,0.009522,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.328347,0.009522,-0.007247,0.249895,0,0);}
.m16e_c01108{transform:matrix(0.332684,0.010657,-0.008004,0.249872,0,0);-ms-transform:matrix(0.332684,0.010657,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.332684,0.010657,-0.008004,0.249872,0,0);}
.mfe_c01108{transform:matrix(0.336404,0.009756,-0.007247,0.249895,0,0);-ms-transform:matrix(0.336404,0.009756,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.336404,0.009756,-0.007247,0.249895,0,0);}
.m14f_c01108{transform:matrix(0.342349,0.010966,-0.008004,0.249872,0,0);-ms-transform:matrix(0.342349,0.010966,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.342349,0.010966,-0.008004,0.249872,0,0);}
.m165_c01108{transform:matrix(0.354008,0.011340,-0.008004,0.249872,0,0);-ms-transform:matrix(0.354008,0.011340,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.354008,0.011340,-0.008004,0.249872,0,0);}
.m150_c01108{transform:matrix(0.393503,0.012605,-0.008004,0.249872,0,0);-ms-transform:matrix(0.393503,0.012605,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.393503,0.012605,-0.008004,0.249872,0,0);}
.m15d_c01108{transform:matrix(0.422853,0.013545,-0.008004,0.249872,0,0);-ms-transform:matrix(0.422853,0.013545,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.422853,0.013545,-0.008004,0.249872,0,0);}
.v0_c01108{vertical-align:0.000000px;}
.ls0_c01108{letter-spacing:0.000000px;}
.sc__c01108{text-shadow:none;}
.sc0_c01108{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__c01108{-webkit-text-stroke:0px transparent;}
.sc0_c01108{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01108{word-spacing:0.000000px;}
.fc0_c01108{color:transparent;}
.fs16_c01108{font-size:18.000000px;}
.fsc_c01108{font-size:66.029693px;}
.fs14_c01108{font-size:71.964891px;}
.fs5_c01108{font-size:72.014399px;}
.fs7_c01108{font-size:72.017422px;}
.fs9_c01108{font-size:72.019041px;}
.fs10_c01108{font-size:72.030270px;}
.fsb_c01108{font-size:72.032393px;}
.fsf_c01108{font-size:72.034588px;}
.fs15_c01108{font-size:77.961966px;}
.fs0_c01108{font-size:78.000000px;}
.fs6_c01108{font-size:78.015598px;}
.fsa_c01108{font-size:78.020628px;}
.fs3_c01108{font-size:78.022461px;}
.fs8_c01108{font-size:78.024371px;}
.fs1_c01108{font-size:78.026360px;}
.fs11_c01108{font-size:78.032792px;}
.fse_c01108{font-size:78.037470px;}
.fs4_c01108{font-size:84.026246px;}
.fs12_c01108{font-size:84.032922px;}
.fsd_c01108{font-size:84.037791px;}
.fs2_c01108{font-size:96.032443px;}
.fs13_c01108{font-size:120.047031px;}
.y0_c01108{bottom:0.000000px;}
.y16f_c01108{bottom:82.080000px;}
.y16e_c01108{bottom:108.072255px;}
.y16d_c01108{bottom:109.527290px;}
.y16c_c01108{bottom:111.288060px;}
.y16b_c01108{bottom:112.147458px;}
.y16a_c01108{bottom:112.703078px;}
.y169_c01108{bottom:113.886287px;}
.y168_c01108{bottom:115.021665px;}
.y167_c01108{bottom:116.418896px;}
.y166_c01108{bottom:117.326700px;}
.y165_c01108{bottom:118.129025px;}
.y164_c01108{bottom:119.057006px;}
.y163_c01108{bottom:119.737802px;}
.y162_c01108{bottom:120.449169px;}
.y161_c01108{bottom:120.466731px;}
.y160_c01108{bottom:122.244991px;}
.y15f_c01108{bottom:129.758597px;}
.y15e_c01108{bottom:130.611030px;}
.y15d_c01108{bottom:131.851183px;}
.y15c_c01108{bottom:133.041960px;}
.y15b_c01108{bottom:133.944730px;}
.y159_c01108{bottom:136.969260px;}
.y15a_c01108{bottom:137.732499px;}
.y158_c01108{bottom:138.430860px;}
.y157_c01108{bottom:139.425900px;}
.y156_c01108{bottom:140.540172px;}
.y155_c01108{bottom:144.092700px;}
.y154_c01108{bottom:145.165980px;}
.y153_c01108{bottom:146.225964px;}
.y152_c01108{bottom:149.773452px;}
.y151_c01108{bottom:151.527036px;}
.y150_c01108{bottom:153.384780px;}
.y14f_c01108{bottom:154.359516px;}
.y14e_c01108{bottom:156.073500px;}
.y14d_c01108{bottom:164.651556px;}
.y14c_c01108{bottom:166.232016px;}
.y14b_c01108{bottom:168.108282px;}
.y14a_c01108{bottom:169.053324px;}
.y149_c01108{bottom:169.946118px;}
.y148_c01108{bottom:171.208974px;}
.y147_c01108{bottom:177.402000px;}
.y146_c01108{bottom:182.527626px;}
.y145_c01108{bottom:184.108968px;}
.y144_c01108{bottom:184.744596px;}
.y143_c01108{bottom:188.447400px;}
.y142_c01108{bottom:190.601580px;}
.y141_c01108{bottom:192.500946px;}
.y140_c01108{bottom:193.424190px;}
.y13f_c01108{bottom:195.563880px;}
.y13e_c01108{bottom:196.827618px;}
.y13d_c01108{bottom:198.310050px;}
.y13c_c01108{bottom:199.873080px;}
.y13b_c01108{bottom:201.427500px;}
.y13a_c01108{bottom:219.187176px;}
.y139_c01108{bottom:220.264549px;}
.y138_c01108{bottom:222.660257px;}
.y137_c01108{bottom:223.969738px;}
.y136_c01108{bottom:225.083824px;}
.y135_c01108{bottom:226.766612px;}
.y134_c01108{bottom:228.852021px;}
.y133_c01108{bottom:231.254123px;}
.y132_c01108{bottom:232.284952px;}
.y131_c01108{bottom:233.621425px;}
.y130_c01108{bottom:235.708532px;}
.y12f_c01108{bottom:236.692340px;}
.y12e_c01108{bottom:238.412318px;}
.y12d_c01108{bottom:239.456653px;}
.y12c_c01108{bottom:254.980151px;}
.y12b_c01108{bottom:256.071471px;}
.y12a_c01108{bottom:256.721178px;}
.y129_c01108{bottom:257.824395px;}
.y128_c01108{bottom:260.689802px;}
.y127_c01108{bottom:262.823833px;}
.y126_c01108{bottom:264.975983px;}
.y125_c01108{bottom:267.050966px;}
.y124_c01108{bottom:269.875289px;}
.y123_c01108{bottom:270.947709px;}
.y122_c01108{bottom:273.763724px;}
.y121_c01108{bottom:274.839450px;}
.y120_c01108{bottom:290.087705px;}
.y11f_c01108{bottom:291.052665px;}
.y11e_c01108{bottom:292.666124px;}
.y11d_c01108{bottom:294.939260px;}
.y11c_c01108{bottom:295.887864px;}
.y11b_c01108{bottom:296.848518px;}
.y11a_c01108{bottom:299.090813px;}
.y119_c01108{bottom:300.062907px;}
.y118_c01108{bottom:302.976494px;}
.y117_c01108{bottom:305.168894px;}
.y116_c01108{bottom:307.079066px;}
.y115_c01108{bottom:308.065689px;}
.y114_c01108{bottom:326.663511px;}
.y113_c01108{bottom:327.628907px;}
.y112_c01108{bottom:328.589778px;}
.y111_c01108{bottom:330.808365px;}
.y110_c01108{bottom:332.115671px;}
.y10f_c01108{bottom:333.392352px;}
.y10e_c01108{bottom:334.708140px;}
.y10d_c01108{bottom:336.967443px;}
.y10c_c01108{bottom:339.512933px;}
.y10b_c01108{bottom:342.072951px;}
.y10a_c01108{bottom:343.998000px;}
.y109_c01108{bottom:359.623402px;}
.y108_c01108{bottom:362.481048px;}
.y107_c01108{bottom:364.489008px;}
.y106_c01108{bottom:365.746028px;}
.y105_c01108{bottom:366.711554px;}
.y104_c01108{bottom:368.969508px;}
.y103_c01108{bottom:371.216675px;}
.y102_c01108{bottom:373.458273px;}
.y101_c01108{bottom:374.421885px;}
.y100_c01108{bottom:376.330013px;}
.yff_c01108{bottom:377.570502px;}
.yfe_c01108{bottom:378.828000px;}
.yfd_c01108{bottom:396.750289px;}
.yfc_c01108{bottom:398.018799px;}
.yfb_c01108{bottom:400.208379px;}
.yfa_c01108{bottom:402.386671px;}
.yf9_c01108{bottom:404.557756px;}
.yf8_c01108{bottom:405.488778px;}
.yf7_c01108{bottom:407.652295px;}
.yf6_c01108{bottom:408.871644px;}
.yf5_c01108{bottom:409.832215px;}
.yf4_c01108{bottom:412.002138px;}
.yf3_c01108{bottom:413.227020px;}
.yf2_c01108{bottom:414.117204px;}
.yf1_c01108{bottom:433.606887px;}
.yf0_c01108{bottom:435.656787px;}
.yef_c01108{bottom:436.592239px;}
.yee_c01108{bottom:437.173596px;}
.yed_c01108{bottom:438.676746px;}
.yec_c01108{bottom:439.604712px;}
.yeb_c01108{bottom:441.345933px;}
.yea_c01108{bottom:442.579648px;}
.ye9_c01108{bottom:443.182080px;}
.ye8_c01108{bottom:445.862380px;}
.ye7_c01108{bottom:447.663142px;}
.ye6_c01108{bottom:450.315892px;}
.ye5_c01108{bottom:467.226408px;}
.ye4_c01108{bottom:470.439037px;}
.ye3_c01108{bottom:471.387574px;}
.ye2_c01108{bottom:473.000794px;}
.ye1_c01108{bottom:475.876212px;}
.ye0_c01108{bottom:476.863146px;}
.ydf_c01108{bottom:480.347935px;}
.yde_c01108{bottom:482.300320px;}
.ydd_c01108{bottom:483.262435px;}
.ydc_c01108{bottom:485.165473px;}
.ydb_c01108{bottom:503.892301px;}
.yda_c01108{bottom:504.672580px;}
.yd9_c01108{bottom:505.571952px;}
.yd8_c01108{bottom:506.124915px;}
.yd7_c01108{bottom:507.889761px;}
.yd6_c01108{bottom:508.748133px;}
.yd5_c01108{bottom:510.469573px;}
.yd4_c01108{bottom:511.309462px;}
.yd3_c01108{bottom:512.807109px;}
.yd2_c01108{bottom:513.643383px;}
.yd1_c01108{bottom:514.806838px;}
.yd0_c01108{bottom:517.386499px;}
.ycf_c01108{bottom:517.960689px;}
.yce_c01108{bottom:519.915013px;}
.ycd_c01108{bottom:521.361361px;}
.ycc_c01108{bottom:539.625099px;}
.ycb_c01108{bottom:540.669628px;}
.yca_c01108{bottom:542.406310px;}
.yc9_c01108{bottom:544.767580px;}
.yc8_c01108{bottom:546.878401px;}
.yc7_c01108{bottom:547.907679px;}
.yc6_c01108{bottom:548.875809px;}
.yc5_c01108{bottom:550.968867px;}
.yc4_c01108{bottom:552.694342px;}
.yc3_c01108{bottom:555.443841px;}
.yc2_c01108{bottom:556.482000px;}
.yc1_c01108{bottom:581.912160px;}
.yc0_c01108{bottom:584.620830px;}
.ybf_c01108{bottom:585.437700px;}
.ybe_c01108{bottom:586.227150px;}
.ybd_c01108{bottom:588.075855px;}
.ybc_c01108{bottom:588.858960px;}
.ybb_c01108{bottom:589.960725px;}
.yba_c01108{bottom:591.836415px;}
.yb9_c01108{bottom:593.657520px;}
.yb8_c01108{bottom:610.182465px;}
.yb7_c01108{bottom:613.166775px;}
.yb6_c01108{bottom:614.863545px;}
.yb5_c01108{bottom:616.540470px;}
.yb4_c01108{bottom:617.210295px;}
.yb3_c01108{bottom:619.861695px;}
.yb2_c01108{bottom:624.481980px;}
.yb1_c01108{bottom:627.471240px;}
.yb0_c01108{bottom:628.780200px;}
.yaf_c01108{bottom:630.126375px;}
.yae_c01108{bottom:645.912510px;}
.yad_c01108{bottom:647.041200px;}
.yac_c01108{bottom:648.702255px;}
.yab_c01108{bottom:649.540770px;}
.yaa_c01108{bottom:650.952525px;}
.ya9_c01108{bottom:651.769395px;}
.ya8_c01108{bottom:653.698920px;}
.ya7_c01108{bottom:654.245700px;}
.ya6_c01108{bottom:655.638180px;}
.ya5_c01108{bottom:656.439645px;}
.ya4_c01108{bottom:657.561510px;}
.ya3_c01108{bottom:659.798805px;}
.ya2_c01108{bottom:661.405785px;}
.ya1_c01108{bottom:662.810130px;}
.ya0_c01108{bottom:681.039705px;}
.y9f_c01108{bottom:682.269840px;}
.y9e_c01108{bottom:685.041390px;}
.y9d_c01108{bottom:686.325000px;}
.y9c_c01108{bottom:689.419290px;}
.y9b_c01108{bottom:690.333810px;}
.y9a_c01108{bottom:693.475680px;}
.y99_c01108{bottom:695.343240px;}
.y98_c01108{bottom:696.248535px;}
.y97_c01108{bottom:696.852540px;}
.y96_c01108{bottom:698.736600px;}
.y95_c01108{bottom:716.123355px;}
.y94_c01108{bottom:717.667875px;}
.y93_c01108{bottom:719.862225px;}
.y92_c01108{bottom:720.792795px;}
.y91_c01108{bottom:723.598350px;}
.y90_c01108{bottom:724.513890px;}
.y8f_c01108{bottom:727.758690px;}
.y8e_c01108{bottom:728.518920px;}
.y8d_c01108{bottom:730.708275px;}
.y8c_c01108{bottom:733.203540px;}
.y8b_c01108{bottom:734.125335px;}
.y8a_c01108{bottom:753.132945px;}
.y89_c01108{bottom:754.753440px;}
.y88_c01108{bottom:756.740460px;}
.y87_c01108{bottom:757.785855px;}
.y86_c01108{bottom:758.725770px;}
.y85_c01108{bottom:759.770670px;}
.y84_c01108{bottom:761.772675px;}
.y83_c01108{bottom:762.768300px;}
.y82_c01108{bottom:764.088960px;}
.y81_c01108{bottom:767.394705px;}
.y80_c01108{bottom:768.432000px;}
.y7f_c01108{bottom:795.075200px;}
.y7e_c01108{bottom:796.856613px;}
.y7d_c01108{bottom:798.276614px;}
.y7c_c01108{bottom:799.779330px;}
.y7b_c01108{bottom:801.228881px;}
.y7a_c01108{bottom:803.171120px;}
.y79_c01108{bottom:803.902295px;}
.y78_c01108{bottom:804.595674px;}
.y77_c01108{bottom:825.448533px;}
.y76_c01108{bottom:828.013574px;}
.y75_c01108{bottom:828.778335px;}
.y74_c01108{bottom:830.045278px;}
.y73_c01108{bottom:832.101824px;}
.y72_c01108{bottom:833.369043px;}
.y71_c01108{bottom:834.400214px;}
.y70_c01108{bottom:836.176791px;}
.y6f_c01108{bottom:836.674454px;}
.y6e_c01108{bottom:838.201700px;}
.y6d_c01108{bottom:838.932720px;}
.y6c_c01108{bottom:839.976000px;}
.y6b_c01108{bottom:859.484663px;}
.y6a_c01108{bottom:861.399713px;}
.y69_c01108{bottom:863.140650px;}
.y68_c01108{bottom:863.977575px;}
.y67_c01108{bottom:865.908637px;}
.y66_c01108{bottom:867.292950px;}
.y65_c01108{bottom:867.865162px;}
.y64_c01108{bottom:868.697512px;}
.y63_c01108{bottom:870.363563px;}
.y62_c01108{bottom:871.418775px;}
.y61_c01108{bottom:872.296350px;}
.y60_c01108{bottom:874.233825px;}
.y5f_c01108{bottom:875.042063px;}
.y5e_c01108{bottom:876.157500px;}
.y5d_c01108{bottom:895.794846px;}
.y5c_c01108{bottom:897.308655px;}
.y5b_c01108{bottom:898.300668px;}
.y5a_c01108{bottom:899.282220px;}
.y59_c01108{bottom:901.010463px;}
.y58_c01108{bottom:902.715738px;}
.y57_c01108{bottom:903.446457px;}
.y56_c01108{bottom:904.872354px;}
.y55_c01108{bottom:905.887335px;}
.y54_c01108{bottom:906.825888px;}
.y53_c01108{bottom:908.788101px;}
.y52_c01108{bottom:910.225614px;}
.y51_c01108{bottom:910.986000px;}
.y50_c01108{bottom:928.873320px;}
.y4f_c01108{bottom:930.027420px;}
.y4e_c01108{bottom:930.567690px;}
.y4d_c01108{bottom:931.701630px;}
.y4c_c01108{bottom:933.083190px;}
.y4b_c01108{bottom:934.753620px;}
.y4a_c01108{bottom:935.596680px;}
.y49_c01108{bottom:936.967710px;}
.y48_c01108{bottom:940.282860px;}
.y47_c01108{bottom:941.126040px;}
.y46_c01108{bottom:943.070310px;}
.y45_c01108{bottom:945.263550px;}
.y44_c01108{bottom:946.078620px;}
.y43_c01108{bottom:968.037420px;}
.y42_c01108{bottom:968.939040px;}
.y41_c01108{bottom:970.053390px;}
.y40_c01108{bottom:970.489080px;}
.y3f_c01108{bottom:973.407630px;}
.y3e_c01108{bottom:975.184320px;}
.y3d_c01108{bottom:976.286340px;}
.y3c_c01108{bottom:978.046920px;}
.y3b_c01108{bottom:978.911070px;}
.y3a_c01108{bottom:980.914500px;}
.y39_c01108{bottom:1000.840013px;}
.y38_c01108{bottom:1001.583787px;}
.y37_c01108{bottom:1002.148425px;}
.y36_c01108{bottom:1004.620500px;}
.y35_c01108{bottom:1006.613475px;}
.y34_c01108{bottom:1007.395538px;}
.y33_c01108{bottom:1008.259950px;}
.y32_c01108{bottom:1009.360688px;}
.y31_c01108{bottom:1010.764575px;}
.y30_c01108{bottom:1012.711012px;}
.y2f_c01108{bottom:1014.060937px;}
.y2e_c01108{bottom:1015.715363px;}
.y2d_c01108{bottom:1016.559000px;}
.y2c_c01108{bottom:1035.401676px;}
.y2b_c01108{bottom:1039.965720px;}
.y2a_c01108{bottom:1041.838980px;}
.y29_c01108{bottom:1042.329624px;}
.y28_c01108{bottom:1043.951784px;}
.y27_c01108{bottom:1046.091120px;}
.y26_c01108{bottom:1046.881932px;}
.y25_c01108{bottom:1048.754724px;}
.y24_c01108{bottom:1050.854892px;}
.y23_c01108{bottom:1051.656000px;}
.y22_c01108{bottom:1073.561637px;}
.y21_c01108{bottom:1074.299475px;}
.y20_c01108{bottom:1075.529232px;}
.y1f_c01108{bottom:1076.502459px;}
.y1e_c01108{bottom:1079.652828px;}
.y1d_c01108{bottom:1082.604495px;}
.y1c_c01108{bottom:1083.072834px;}
.y1b_c01108{bottom:1085.266827px;}
.y1a_c01108{bottom:1086.734274px;}
.y19_c01108{bottom:1106.672160px;}
.y18_c01108{bottom:1108.538349px;}
.y17_c01108{bottom:1109.369157px;}
.y16_c01108{bottom:1110.160182px;}
.y15_c01108{bottom:1110.961212px;}
.y14_c01108{bottom:1111.479468px;}
.y13_c01108{bottom:1113.322605px;}
.y12_c01108{bottom:1114.692438px;}
.y11_c01108{bottom:1115.498460px;}
.y10_c01108{bottom:1117.867380px;}
.yf_c01108{bottom:1118.684322px;}
.ye_c01108{bottom:1119.752289px;}
.yd_c01108{bottom:1121.600595px;}
.yc_c01108{bottom:1122.655848px;}
.yb_c01108{bottom:1143.358608px;}
.ya_c01108{bottom:1144.492923px;}
.y9_c01108{bottom:1145.983932px;}
.y8_c01108{bottom:1146.833781px;}
.y7_c01108{bottom:1149.445416px;}
.y6_c01108{bottom:1151.151432px;}
.y5_c01108{bottom:1152.289023px;}
.y4_c01108{bottom:1153.749222px;}
.y3_c01108{bottom:1155.203688px;}
.y2_c01108{bottom:1156.959000px;}
.y1_c01108{bottom:1205.280000px;}
.h18_c01108{height:18.000000px;}
.he_c01108{height:66.029693px;}
.h16_c01108{height:71.964891px;}
.h7_c01108{height:72.014399px;}
.h9_c01108{height:72.017422px;}
.hb_c01108{height:72.019041px;}
.h12_c01108{height:72.030270px;}
.hd_c01108{height:72.032393px;}
.h11_c01108{height:72.034588px;}
.h17_c01108{height:77.961966px;}
.h2_c01108{height:78.000000px;}
.h8_c01108{height:78.015598px;}
.hc_c01108{height:78.020628px;}
.h5_c01108{height:78.022461px;}
.ha_c01108{height:78.024371px;}
.h3_c01108{height:78.026360px;}
.h13_c01108{height:78.032792px;}
.h10_c01108{height:78.037470px;}
.h6_c01108{height:84.026246px;}
.h14_c01108{height:84.032922px;}
.hf_c01108{height:84.037791px;}
.h4_c01108{height:96.032443px;}
.h15_c01108{height:120.047031px;}
.h0_c01108{height:1246.320000px;}
.h1_c01108{height:1246.500000px;}
.w0_c01108{width:927.450000px;}
.w1_c01108{width:927.750000px;}
.x0_c01108{left:0.000000px;}
.xe0_c01108{left:137.968500px;}
.xbf_c01108{left:141.687000px;}
.xe7_c01108{left:146.742000px;}
.xd5_c01108{left:147.946780px;}
.xc7_c01108{left:149.502000px;}
.xb0_c01108{left:152.157710px;}
.xa8_c01108{left:153.186998px;}
.x92_c01108{left:154.890030px;}
.x8d_c01108{left:155.955570px;}
.x74_c01108{left:156.991665px;}
.x5c_c01108{left:159.874500px;}
.x4a_c01108{left:160.893000px;}
.x36_c01108{left:162.010500px;}
.x22_c01108{left:163.380000px;}
.xe_c01108{left:165.435672px;}
.xf6_c01108{left:174.765777px;}
.xd6_c01108{left:181.572366px;}
.xcd_c01108{left:182.940849px;}
.xb7_c01108{left:183.987117px;}
.xc0_c01108{left:185.049000px;}
.x75_c01108{left:189.920145px;}
.x64_c01108{left:191.940698px;}
.xe1_c01108{left:193.483500px;}
.x3f_c01108{left:194.858400px;}
.x23_c01108{left:196.759500px;}
.x8e_c01108{left:200.828070px;}
.xec_c01108{left:202.134438px;}
.x50_c01108{left:204.957000px;}
.xf_c01108{left:209.428473px;}
.xa2_c01108{left:210.478203px;}
.x86_c01108{left:212.897310px;}
.xc8_c01108{left:215.883000px;}
.xa9_c01108{left:218.789043px;}
.x7f_c01108{left:223.510800px;}
.x65_c01108{left:225.166457px;}
.xb8_c01108{left:227.713163px;}
.x1b_c01108{left:231.317220px;}
.xed_c01108{left:232.564478px;}
.x51_c01108{left:237.286500px;}
.x80_c01108{left:245.095605px;}
.xce_c01108{left:248.808849px;}
.xb1_c01108{left:250.419893px;}
.xaa_c01108{left:251.956089px;}
.x4b_c01108{left:260.797500px;}
.x2c_c01108{left:262.929000px;}
.x6a_c01108{left:267.714000px;}
.xd7_c01108{left:269.565210px;}
.x4_c01108{left:275.049000px;}
.x81_c01108{left:277.424040px;}
.x76_c01108{left:279.051000px;}
.x40_c01108{left:282.611640px;}
.x24_c01108{left:284.266500px;}
.x10_c01108{left:286.463490px;}
.xee_c01108{left:290.560923px;}
.xc1_c01108{left:293.622000px;}
.x98_c01108{left:297.409500px;}
.xf2_c01108{left:300.406487px;}
.x6b_c01108{left:302.290500px;}
.x5d_c01108{left:303.420000px;}
.x37_c01108{left:305.389500px;}
.xa3_c01108{left:307.687223px;}
.x93_c01108{left:308.894205px;}
.x66_c01108{left:313.461492px;}
.x52_c01108{left:314.785500px;}
.x2d_c01108{left:316.926000px;}
.xab_c01108{left:319.295274px;}
.x5e_c01108{left:325.057500px;}
.xc2_c01108{left:326.850000px;}
.x11_c01108{left:330.945291px;}
.xf3_c01108{left:333.787905px;}
.xdb_c01108{left:336.101067px;}
.xb9_c01108{left:339.497532px;}
.x5_c01108{left:342.561000px;}
.x82_c01108{left:344.130045px;}
.xef_c01108{left:345.305624px;}
.xe2_c01108{left:347.383500px;}
.x4c_c01108{left:349.989000px;}
.x1c_c01108{left:352.361817px;}
.x94_c01108{left:354.827985px;}
.xf7_c01108{left:355.855245px;}
.x77_c01108{left:357.234180px;}
.x41_c01108{left:360.392370px;}
.x25_c01108{left:362.299500px;}
.x12_c01108{left:364.964046px;}
.x87_c01108{left:366.662850px;}
.xe8_c01108{left:367.921500px;}
.xf4_c01108{left:377.846366px;}
.x67_c01108{left:379.356510px;}
.xba_c01108{left:383.045078px;}
.x78_c01108{left:384.376800px;}
.x99_c01108{left:386.103000px;}
.x95_c01108{left:387.487380px;}
.x53_c01108{left:392.097000px;}
.x38_c01108{left:393.418500px;}
.x26_c01108{left:395.250000px;}
.x6_c01108{left:398.502000px;}
.x5f_c01108{left:402.300000px;}
.xc3_c01108{left:404.146500px;}
.xa4_c01108{left:406.933614px;}
.x6c_c01108{left:412.482000px;}
.xb2_c01108{left:416.377946px;}
.x1_c01108{left:422.280000px;}
.xe3_c01108{left:423.801000px;}
.xcf_c01108{left:424.877349px;}
.x4d_c01108{left:438.786000px;}
.x9a_c01108{left:441.763500px;}
.x2_c01108{left:443.610000px;}
.xe9_c01108{left:444.909000px;}
.x60_c01108{left:447.133500px;}
.x39_c01108{left:448.519500px;}
.x2e_c01108{left:450.939000px;}
.x7_c01108{left:454.663500px;}
.x6d_c01108{left:456.504000px;}
.x54_c01108{left:458.739000px;}
.xbb_c01108{left:460.294739px;}
.x13_c01108{left:463.639155px;}
.xf8_c01108{left:466.282944px;}
.xc9_c01108{left:469.842000px;}
.xac_c01108{left:473.473307px;}
.xea_c01108{left:478.660500px;}
.xc4_c01108{left:481.635000px;}
.x27_c01108{left:484.389000px;}
.x1d_c01108{left:486.555279px;}
.x3_c01108{left:487.890000px;}
.x6e_c01108{left:489.691500px;}
.x55_c01108{left:492.033000px;}
.xbc_c01108{left:493.524308px;}
.x2f_c01108{left:494.968500px;}
.x14_c01108{left:497.237910px;}
.x8_c01108{left:498.417000px;}
.x79_c01108{left:500.243730px;}
.x61_c01108{left:502.230000px;}
.x4e_c01108{left:503.599500px;}
.x9b_c01108{left:509.281500px;}
.x68_c01108{left:512.238581px;}
.x56_c01108{left:514.921500px;}
.x88_c01108{left:521.189025px;}
.xd8_c01108{left:523.452655px;}
.xe4_c01108{left:524.608500px;}
.x42_c01108{left:526.742250px;}
.x30_c01108{left:529.545000px;}
.x96_c01108{left:531.430755px;}
.x7a_c01108{left:532.963710px;}
.xd0_c01108{left:535.718349px;}
.x3a_c01108{left:537.354000px;}
.x9c_c01108{left:540.511500px;}
.xeb_c01108{left:545.670000px;}
.xb3_c01108{left:548.922407px;}
.x28_c01108{left:551.979000px;}
.x15_c01108{left:554.311374px;}
.x6f_c01108{left:556.425000px;}
.xc5_c01108{left:559.495500px;}
.x31_c01108{left:560.827500px;}
.x9_c01108{left:564.033000px;}
.xf9_c01108{left:566.953536px;}
.xd1_c01108{left:568.844349px;}
.x57_c01108{left:570.294000px;}
.x29_c01108{left:572.422500px;}
.x9d_c01108{left:573.714000px;}
.x43_c01108{left:581.563260px;}
.xb4_c01108{left:583.312685px;}
.x8f_c01108{left:586.491570px;}
.xd9_c01108{left:590.154870px;}
.x62_c01108{left:591.645000px;}
.x69_c01108{left:593.214944px;}
.x89_c01108{left:598.368090px;}
.x83_c01108{left:599.451300px;}
.xd2_c01108{left:601.554849px;}
.xca_c01108{left:604.317000px;}
.x90_c01108{left:608.819070px;}
.xdc_c01108{left:611.554146px;}
.x44_c01108{left:615.312900px;}
.x70_c01108{left:622.585500px;}
.xad_c01108{left:628.245386px;}
.x1e_c01108{left:629.776677px;}
.x16_c01108{left:631.089852px;}
.x7b_c01108{left:633.138195px;}
.xc6_c01108{left:636.135000px;}
.xb5_c01108{left:638.969567px;}
.x32_c01108{left:640.546500px;}
.x9e_c01108{left:641.805000px;}
.x97_c01108{left:644.290050px;}
.x84_c01108{left:645.291045px;}
.x58_c01108{left:647.536500px;}
.xbd_c01108{left:648.841223px;}
.x2a_c01108{left:650.475000px;}
.x17_c01108{left:652.696983px;}
.x71_c01108{left:657.432000px;}
.xae_c01108{left:660.974432px;}
.xa_c01108{left:664.480500px;}
.x7c_c01108{left:666.359175px;}
.xf0_c01108{left:668.343263px;}
.xa5_c01108{left:672.977313px;}
.x1f_c01108{left:674.020779px;}
.x63_c01108{left:679.980000px;}
.x59_c01108{left:681.013500px;}
.x45_c01108{left:682.102710px;}
.x3b_c01108{left:683.281500px;}
.x18_c01108{left:686.103738px;}
.x8a_c01108{left:687.518955px;}
.xdd_c01108{left:689.741622px;}
.x4f_c01108{left:692.883000px;}
.xb6_c01108{left:695.115495px;}
.xb_c01108{left:697.167000px;}
.xf1_c01108{left:699.407168px;}
.x3c_c01108{left:705.066000px;}
.xcb_c01108{left:713.953500px;}
.x9f_c01108{left:717.975000px;}
.x19_c01108{left:719.067954px;}
.x8b_c01108{left:721.074495px;}
.x72_c01108{left:723.666000px;}
.xbe_c01108{left:727.028477px;}
.x20_c01108{left:729.921090px;}
.xf5_c01108{left:733.185560px;}
.xda_c01108{left:734.446798px;}
.xd3_c01108{left:735.575349px;}
.x46_c01108{left:737.375190px;}
.x33_c01108{left:739.429500px;}
.xa6_c01108{left:740.853822px;}
.x7d_c01108{left:744.708855px;}
.xcc_c01108{left:747.243000px;}
.x5a_c01108{left:750.651000px;}
.xc_c01108{left:754.513500px;}
.xe5_c01108{left:756.487500px;}
.x3d_c01108{left:760.783500px;}
.x34_c01108{left:762.015000px;}
.x21_c01108{left:763.437561px;}
.xde_c01108{left:767.020142px;}
.xd4_c01108{left:768.849849px;}
.xaf_c01108{left:771.775814px;}
.xa0_c01108{left:773.997000px;}
.x73_c01108{left:777.682500px;}
.x47_c01108{left:782.742660px;}
.x85_c01108{left:788.239140px;}
.x35_c01108{left:791.766000px;}
.xa7_c01108{left:796.711971px;}
.xd_c01108{left:798.141000px;}
.x7e_c01108{left:799.846140px;}
.xdf_c01108{left:801.789641px;}
.x48_c01108{left:804.354000px;}
.x3e_c01108{left:805.864500px;}
.xa1_c01108{left:807.691500px;}
.xe6_c01108{left:812.964000px;}
.x91_c01108{left:820.752570px;}
.x5b_c01108{left:827.253000px;}
.x1a_c01108{left:831.458304px;}
.x8c_c01108{left:832.632690px;}
.x2b_c01108{left:840.643500px;}
.x49_c01108{left:850.504380px;}
@media print{
.v0_c01108{vertical-align:0.000000pt;}
.ls0_c01108{letter-spacing:0.000000pt;}
.ws0_c01108{word-spacing:0.000000pt;}
.fs16_c01108{font-size:16.000000pt;}
.fsc_c01108{font-size:58.693061pt;}
.fs14_c01108{font-size:63.968792pt;}
.fs5_c01108{font-size:64.012799pt;}
.fs7_c01108{font-size:64.015486pt;}
.fs9_c01108{font-size:64.016926pt;}
.fs10_c01108{font-size:64.026906pt;}
.fsb_c01108{font-size:64.028794pt;}
.fsf_c01108{font-size:64.030745pt;}
.fs15_c01108{font-size:69.299525pt;}
.fs0_c01108{font-size:69.333333pt;}
.fs6_c01108{font-size:69.347199pt;}
.fsa_c01108{font-size:69.351670pt;}
.fs3_c01108{font-size:69.353298pt;}
.fs8_c01108{font-size:69.354997pt;}
.fs1_c01108{font-size:69.356764pt;}
.fs11_c01108{font-size:69.362482pt;}
.fse_c01108{font-size:69.366640pt;}
.fs4_c01108{font-size:74.689996pt;}
.fs12_c01108{font-size:74.695930pt;}
.fsd_c01108{font-size:74.700259pt;}
.fs2_c01108{font-size:85.362171pt;}
.fs13_c01108{font-size:106.708472pt;}
.y0_c01108{bottom:0.000000pt;}
.y16f_c01108{bottom:72.960000pt;}
.y16e_c01108{bottom:96.064227pt;}
.y16d_c01108{bottom:97.357591pt;}
.y16c_c01108{bottom:98.922720pt;}
.y16b_c01108{bottom:99.686629pt;}
.y16a_c01108{bottom:100.180513pt;}
.y169_c01108{bottom:101.232255pt;}
.y168_c01108{bottom:102.241480pt;}
.y167_c01108{bottom:103.483463pt;}
.y166_c01108{bottom:104.290400pt;}
.y165_c01108{bottom:105.003577pt;}
.y164_c01108{bottom:105.828449pt;}
.y163_c01108{bottom:106.433601pt;}
.y162_c01108{bottom:107.065928pt;}
.y161_c01108{bottom:107.081539pt;}
.y160_c01108{bottom:108.662215pt;}
.y15f_c01108{bottom:115.340975pt;}
.y15e_c01108{bottom:116.098693pt;}
.y15d_c01108{bottom:117.201052pt;}
.y15c_c01108{bottom:118.259520pt;}
.y15b_c01108{bottom:119.061983pt;}
.y159_c01108{bottom:121.750453pt;}
.y15a_c01108{bottom:122.428888pt;}
.y158_c01108{bottom:123.049653pt;}
.y157_c01108{bottom:123.934133pt;}
.y156_c01108{bottom:124.924597pt;}
.y155_c01108{bottom:128.082400pt;}
.y154_c01108{bottom:129.036427pt;}
.y153_c01108{bottom:129.978635pt;}
.y152_c01108{bottom:133.131957pt;}
.y151_c01108{bottom:134.690699pt;}
.y150_c01108{bottom:136.342027pt;}
.y14f_c01108{bottom:137.208459pt;}
.y14e_c01108{bottom:138.732000pt;}
.y14d_c01108{bottom:146.356939pt;}
.y14c_c01108{bottom:147.761792pt;}
.y14b_c01108{bottom:149.429584pt;}
.y14a_c01108{bottom:150.269621pt;}
.y149_c01108{bottom:151.063216pt;}
.y148_c01108{bottom:152.185755pt;}
.y147_c01108{bottom:157.690667pt;}
.y146_c01108{bottom:162.246779pt;}
.y145_c01108{bottom:163.652416pt;}
.y144_c01108{bottom:164.217419pt;}
.y143_c01108{bottom:167.508800pt;}
.y142_c01108{bottom:169.423627pt;}
.y141_c01108{bottom:171.111952pt;}
.y140_c01108{bottom:171.932613pt;}
.y13f_c01108{bottom:173.834560pt;}
.y13e_c01108{bottom:174.957883pt;}
.y13d_c01108{bottom:176.275600pt;}
.y13c_c01108{bottom:177.664960pt;}
.y13b_c01108{bottom:179.046667pt;}
.y13a_c01108{bottom:194.833045pt;}
.y139_c01108{bottom:195.790711pt;}
.y138_c01108{bottom:197.920228pt;}
.y137_c01108{bottom:199.084212pt;}
.y136_c01108{bottom:200.074511pt;}
.y135_c01108{bottom:201.570321pt;}
.y134_c01108{bottom:203.424019pt;}
.y133_c01108{bottom:205.559220pt;}
.y132_c01108{bottom:206.475513pt;}
.y131_c01108{bottom:207.663489pt;}
.y130_c01108{bottom:209.518695pt;}
.y12f_c01108{bottom:210.393191pt;}
.y12e_c01108{bottom:211.922060pt;}
.y12d_c01108{bottom:212.850359pt;}
.y12c_c01108{bottom:226.649023pt;}
.y12b_c01108{bottom:227.619085pt;}
.y12a_c01108{bottom:228.196603pt;}
.y129_c01108{bottom:229.177240pt;}
.y128_c01108{bottom:231.724268pt;}
.y127_c01108{bottom:233.621185pt;}
.y126_c01108{bottom:235.534207pt;}
.y125_c01108{bottom:237.378636pt;}
.y124_c01108{bottom:239.889145pt;}
.y123_c01108{bottom:240.842408pt;}
.y122_c01108{bottom:243.345532pt;}
.y121_c01108{bottom:244.301733pt;}
.y120_c01108{bottom:257.855737pt;}
.y11f_c01108{bottom:258.713480pt;}
.y11e_c01108{bottom:260.147665pt;}
.y11d_c01108{bottom:262.168231pt;}
.y11c_c01108{bottom:263.011435pt;}
.y11b_c01108{bottom:263.865349pt;}
.y11a_c01108{bottom:265.858500pt;}
.y119_c01108{bottom:266.722584pt;}
.y118_c01108{bottom:269.312439pt;}
.y117_c01108{bottom:271.261239pt;}
.y116_c01108{bottom:272.959169pt;}
.y115_c01108{bottom:273.836168pt;}
.y114_c01108{bottom:290.367565pt;}
.y113_c01108{bottom:291.225695pt;}
.y112_c01108{bottom:292.079803pt;}
.y111_c01108{bottom:294.051880pt;}
.y110_c01108{bottom:295.213929pt;}
.y10f_c01108{bottom:296.348757pt;}
.y10e_c01108{bottom:297.518347pt;}
.y10d_c01108{bottom:299.526616pt;}
.y10c_c01108{bottom:301.789273pt;}
.y10b_c01108{bottom:304.064845pt;}
.y10a_c01108{bottom:305.776000pt;}
.y109_c01108{bottom:319.665247pt;}
.y108_c01108{bottom:322.205376pt;}
.y107_c01108{bottom:323.990229pt;}
.y106_c01108{bottom:325.107580pt;}
.y105_c01108{bottom:325.965825pt;}
.y104_c01108{bottom:327.972896pt;}
.y103_c01108{bottom:329.970377pt;}
.y102_c01108{bottom:331.962909pt;}
.y101_c01108{bottom:332.819453pt;}
.y100_c01108{bottom:334.515567pt;}
.yff_c01108{bottom:335.618224pt;}
.yfe_c01108{bottom:336.736000pt;}
.yfd_c01108{bottom:352.666924pt;}
.yfc_c01108{bottom:353.794488pt;}
.yfb_c01108{bottom:355.740781pt;}
.yfa_c01108{bottom:357.677041pt;}
.yf9_c01108{bottom:359.606895pt;}
.yf8_c01108{bottom:360.434469pt;}
.yf7_c01108{bottom:362.357596pt;}
.yf6_c01108{bottom:363.441461pt;}
.yf5_c01108{bottom:364.295303pt;}
.yf4_c01108{bottom:366.224123pt;}
.yf3_c01108{bottom:367.312907pt;}
.yf2_c01108{bottom:368.104181pt;}
.yf1_c01108{bottom:385.428344pt;}
.yf0_c01108{bottom:387.250477pt;}
.yef_c01108{bottom:388.081991pt;}
.yee_c01108{bottom:388.598752pt;}
.yed_c01108{bottom:389.934885pt;}
.yec_c01108{bottom:390.759744pt;}
.yeb_c01108{bottom:392.307496pt;}
.yea_c01108{bottom:393.404132pt;}
.ye9_c01108{bottom:393.939627pt;}
.ye8_c01108{bottom:396.322116pt;}
.ye7_c01108{bottom:397.922793pt;}
.ye6_c01108{bottom:400.280793pt;}
.ye5_c01108{bottom:415.312363pt;}
.ye4_c01108{bottom:418.168033pt;}
.ye3_c01108{bottom:419.011177pt;}
.ye2_c01108{bottom:420.445151pt;}
.ye1_c01108{bottom:423.001077pt;}
.ye0_c01108{bottom:423.878352pt;}
.ydf_c01108{bottom:426.975943pt;}
.yde_c01108{bottom:428.711396pt;}
.ydd_c01108{bottom:429.566609pt;}
.ydc_c01108{bottom:431.258199pt;}
.ydb_c01108{bottom:447.904268pt;}
.yda_c01108{bottom:448.597849pt;}
.yd9_c01108{bottom:449.397291pt;}
.yd8_c01108{bottom:449.888813pt;}
.yd7_c01108{bottom:451.457565pt;}
.yd6_c01108{bottom:452.220563pt;}
.yd5_c01108{bottom:453.750732pt;}
.yd4_c01108{bottom:454.497300pt;}
.yd3_c01108{bottom:455.828541pt;}
.yd2_c01108{bottom:456.571896pt;}
.yd1_c01108{bottom:457.606079pt;}
.yd0_c01108{bottom:459.899111pt;}
.ycf_c01108{bottom:460.409501pt;}
.yce_c01108{bottom:462.146679pt;}
.ycd_c01108{bottom:463.432321pt;}
.ycc_c01108{bottom:479.666755pt;}
.ycb_c01108{bottom:480.595225pt;}
.yca_c01108{bottom:482.138943pt;}
.yc9_c01108{bottom:484.237849pt;}
.yc8_c01108{bottom:486.114135pt;}
.yc7_c01108{bottom:487.029048pt;}
.yc6_c01108{bottom:487.889608pt;}
.yc5_c01108{bottom:489.750104pt;}
.yc4_c01108{bottom:491.283860pt;}
.yc3_c01108{bottom:493.727859pt;}
.yc2_c01108{bottom:494.650667pt;}
.yc1_c01108{bottom:517.255253pt;}
.yc0_c01108{bottom:519.662960pt;}
.ybf_c01108{bottom:520.389067pt;}
.ybe_c01108{bottom:521.090800pt;}
.ybd_c01108{bottom:522.734093pt;}
.ybc_c01108{bottom:523.430187pt;}
.ybb_c01108{bottom:524.409533pt;}
.yba_c01108{bottom:526.076813pt;}
.yb9_c01108{bottom:527.695573pt;}
.yb8_c01108{bottom:542.384413pt;}
.yb7_c01108{bottom:545.037133pt;}
.yb6_c01108{bottom:546.545373pt;}
.yb5_c01108{bottom:548.035973pt;}
.yb4_c01108{bottom:548.631373pt;}
.yb3_c01108{bottom:550.988173pt;}
.yb2_c01108{bottom:555.095093pt;}
.yb1_c01108{bottom:557.752213pt;}
.yb0_c01108{bottom:558.915733pt;}
.yaf_c01108{bottom:560.112333pt;}
.yae_c01108{bottom:574.144453pt;}
.yad_c01108{bottom:575.147733pt;}
.yac_c01108{bottom:576.624227pt;}
.yab_c01108{bottom:577.369573pt;}
.yaa_c01108{bottom:578.624467pt;}
.ya9_c01108{bottom:579.350573pt;}
.ya8_c01108{bottom:581.065707pt;}
.ya7_c01108{bottom:581.551733pt;}
.ya6_c01108{bottom:582.789493pt;}
.ya5_c01108{bottom:583.501907pt;}
.ya4_c01108{bottom:584.499120pt;}
.ya3_c01108{bottom:586.487827pt;}
.ya2_c01108{bottom:587.916253pt;}
.ya1_c01108{bottom:589.164560pt;}
.ya0_c01108{bottom:605.368627pt;}
.y9f_c01108{bottom:606.462080pt;}
.y9e_c01108{bottom:608.925680pt;}
.y9d_c01108{bottom:610.066667pt;}
.y9c_c01108{bottom:612.817147pt;}
.y9b_c01108{bottom:613.630053pt;}
.y9a_c01108{bottom:616.422827pt;}
.y99_c01108{bottom:618.082880pt;}
.y98_c01108{bottom:618.887587pt;}
.y97_c01108{bottom:619.424480pt;}
.y96_c01108{bottom:621.099200pt;}
.y95_c01108{bottom:636.554093pt;}
.y94_c01108{bottom:637.927000pt;}
.y93_c01108{bottom:639.877533pt;}
.y92_c01108{bottom:640.704707pt;}
.y91_c01108{bottom:643.198533pt;}
.y90_c01108{bottom:644.012347pt;}
.y8f_c01108{bottom:646.896613pt;}
.y8e_c01108{bottom:647.572373pt;}
.y8d_c01108{bottom:649.518467pt;}
.y8c_c01108{bottom:651.736480pt;}
.y8b_c01108{bottom:652.555853pt;}
.y8a_c01108{bottom:669.451507pt;}
.y89_c01108{bottom:670.891947pt;}
.y88_c01108{bottom:672.658187pt;}
.y87_c01108{bottom:673.587427pt;}
.y86_c01108{bottom:674.422907pt;}
.y85_c01108{bottom:675.351707pt;}
.y84_c01108{bottom:677.131267pt;}
.y83_c01108{bottom:678.016267pt;}
.y82_c01108{bottom:679.190187pt;}
.y81_c01108{bottom:682.128627pt;}
.y80_c01108{bottom:683.050667pt;}
.y7f_c01108{bottom:706.733511pt;}
.y7e_c01108{bottom:708.316989pt;}
.y7d_c01108{bottom:709.579212pt;}
.y7c_c01108{bottom:710.914960pt;}
.y7b_c01108{bottom:712.203449pt;}
.y7a_c01108{bottom:713.929884pt;}
.y79_c01108{bottom:714.579817pt;}
.y78_c01108{bottom:715.196155pt;}
.y77_c01108{bottom:733.732029pt;}
.y76_c01108{bottom:736.012065pt;}
.y75_c01108{bottom:736.691853pt;}
.y74_c01108{bottom:737.818025pt;}
.y73_c01108{bottom:739.646065pt;}
.y72_c01108{bottom:740.772483pt;}
.y71_c01108{bottom:741.689079pt;}
.y70_c01108{bottom:743.268259pt;}
.y6f_c01108{bottom:743.710625pt;}
.y6e_c01108{bottom:745.068177pt;}
.y6d_c01108{bottom:745.717973pt;}
.y6c_c01108{bottom:746.645333pt;}
.y6b_c01108{bottom:763.986367pt;}
.y6a_c01108{bottom:765.688633pt;}
.y69_c01108{bottom:767.236133pt;}
.y68_c01108{bottom:767.980067pt;}
.y67_c01108{bottom:769.696567pt;}
.y66_c01108{bottom:770.927067pt;}
.y65_c01108{bottom:771.435700pt;}
.y64_c01108{bottom:772.175567pt;}
.y63_c01108{bottom:773.656500pt;}
.y62_c01108{bottom:774.594467pt;}
.y61_c01108{bottom:775.374533pt;}
.y60_c01108{bottom:777.096733pt;}
.y5f_c01108{bottom:777.815167pt;}
.y5e_c01108{bottom:778.806667pt;}
.y5d_c01108{bottom:796.262085pt;}
.y5c_c01108{bottom:797.607693pt;}
.y5b_c01108{bottom:798.489483pt;}
.y5a_c01108{bottom:799.361973pt;}
.y59_c01108{bottom:800.898189pt;}
.y58_c01108{bottom:802.413989pt;}
.y57_c01108{bottom:803.063517pt;}
.y56_c01108{bottom:804.330981pt;}
.y55_c01108{bottom:805.233187pt;}
.y54_c01108{bottom:806.067456pt;}
.y53_c01108{bottom:807.811645pt;}
.y52_c01108{bottom:809.089435pt;}
.y51_c01108{bottom:809.765333pt;}
.y50_c01108{bottom:825.665173pt;}
.y4f_c01108{bottom:826.691040pt;}
.y4e_c01108{bottom:827.171280pt;}
.y4d_c01108{bottom:828.179227pt;}
.y4c_c01108{bottom:829.407280pt;}
.y4b_c01108{bottom:830.892107pt;}
.y4a_c01108{bottom:831.641493pt;}
.y49_c01108{bottom:832.860187pt;}
.y48_c01108{bottom:835.806987pt;}
.y47_c01108{bottom:836.556480pt;}
.y46_c01108{bottom:838.284720pt;}
.y45_c01108{bottom:840.234267pt;}
.y44_c01108{bottom:840.958773pt;}
.y43_c01108{bottom:860.477707pt;}
.y42_c01108{bottom:861.279147pt;}
.y41_c01108{bottom:862.269680pt;}
.y40_c01108{bottom:862.656960pt;}
.y3f_c01108{bottom:865.251227pt;}
.y3e_c01108{bottom:866.830507pt;}
.y3d_c01108{bottom:867.810080pt;}
.y3c_c01108{bottom:869.375040pt;}
.y3b_c01108{bottom:870.143173pt;}
.y3a_c01108{bottom:871.924000pt;}
.y39_c01108{bottom:889.635567pt;}
.y38_c01108{bottom:890.296700pt;}
.y37_c01108{bottom:890.798600pt;}
.y36_c01108{bottom:892.996000pt;}
.y35_c01108{bottom:894.767533pt;}
.y34_c01108{bottom:895.462700pt;}
.y33_c01108{bottom:896.231067pt;}
.y32_c01108{bottom:897.209500pt;}
.y31_c01108{bottom:898.457400pt;}
.y30_c01108{bottom:900.187567pt;}
.y2f_c01108{bottom:901.387500pt;}
.y2e_c01108{bottom:902.858100pt;}
.y2d_c01108{bottom:903.608000pt;}
.y2c_c01108{bottom:920.357045pt;}
.y2b_c01108{bottom:924.413973pt;}
.y2a_c01108{bottom:926.079093pt;}
.y29_c01108{bottom:926.515221pt;}
.y28_c01108{bottom:927.957141pt;}
.y27_c01108{bottom:929.858773pt;}
.y26_c01108{bottom:930.561717pt;}
.y25_c01108{bottom:932.226421pt;}
.y24_c01108{bottom:934.093237pt;}
.y23_c01108{bottom:934.805333pt;}
.y22_c01108{bottom:954.277011pt;}
.y21_c01108{bottom:954.932867pt;}
.y20_c01108{bottom:956.025984pt;}
.y1f_c01108{bottom:956.891075pt;}
.y1e_c01108{bottom:959.691403pt;}
.y1d_c01108{bottom:962.315107pt;}
.y1c_c01108{bottom:962.731408pt;}
.y1b_c01108{bottom:964.681624pt;}
.y1a_c01108{bottom:965.986021pt;}
.y19_c01108{bottom:983.708587pt;}
.y18_c01108{bottom:985.367421pt;}
.y17_c01108{bottom:986.105917pt;}
.y16_c01108{bottom:986.809051pt;}
.y15_c01108{bottom:987.521077pt;}
.y14_c01108{bottom:987.981749pt;}
.y13_c01108{bottom:989.620093pt;}
.y12_c01108{bottom:990.837723pt;}
.y11_c01108{bottom:991.554187pt;}
.y10_c01108{bottom:993.659893pt;}
.yf_c01108{bottom:994.386064pt;}
.ye_c01108{bottom:995.335368pt;}
.yd_c01108{bottom:996.978307pt;}
.yc_c01108{bottom:997.916309pt;}
.yb_c01108{bottom:1016.318763pt;}
.ya_c01108{bottom:1017.327043pt;}
.y9_c01108{bottom:1018.652384pt;}
.y8_c01108{bottom:1019.407805pt;}
.y7_c01108{bottom:1021.729259pt;}
.y6_c01108{bottom:1023.245717pt;}
.y5_c01108{bottom:1024.256909pt;}
.y4_c01108{bottom:1025.554864pt;}
.y3_c01108{bottom:1026.847723pt;}
.y2_c01108{bottom:1028.408000pt;}
.y1_c01108{bottom:1071.360000pt;}
.h18_c01108{height:16.000000pt;}
.he_c01108{height:58.693061pt;}
.h16_c01108{height:63.968792pt;}
.h7_c01108{height:64.012799pt;}
.h9_c01108{height:64.015486pt;}
.hb_c01108{height:64.016926pt;}
.h12_c01108{height:64.026906pt;}
.hd_c01108{height:64.028794pt;}
.h11_c01108{height:64.030745pt;}
.h17_c01108{height:69.299525pt;}
.h2_c01108{height:69.333333pt;}
.h8_c01108{height:69.347199pt;}
.hc_c01108{height:69.351670pt;}
.h5_c01108{height:69.353298pt;}
.ha_c01108{height:69.354997pt;}
.h3_c01108{height:69.356764pt;}
.h13_c01108{height:69.362482pt;}
.h10_c01108{height:69.366640pt;}
.h6_c01108{height:74.689996pt;}
.h14_c01108{height:74.695930pt;}
.hf_c01108{height:74.700259pt;}
.h4_c01108{height:85.362171pt;}
.h15_c01108{height:106.708472pt;}
.h0_c01108{height:1107.840000pt;}
.h1_c01108{height:1108.000000pt;}
.w0_c01108{width:824.400000pt;}
.w1_c01108{width:824.666667pt;}
.x0_c01108{left:0.000000pt;}
.xe0_c01108{left:122.638667pt;}
.xbf_c01108{left:125.944000pt;}
.xe7_c01108{left:130.437333pt;}
.xd5_c01108{left:131.508249pt;}
.xc7_c01108{left:132.890667pt;}
.xb0_c01108{left:135.251297pt;}
.xa8_c01108{left:136.166220pt;}
.x92_c01108{left:137.680027pt;}
.x8d_c01108{left:138.627173pt;}
.x74_c01108{left:139.548147pt;}
.x5c_c01108{left:142.110667pt;}
.x4a_c01108{left:143.016000pt;}
.x36_c01108{left:144.009333pt;}
.x22_c01108{left:145.226667pt;}
.xe_c01108{left:147.053931pt;}
.xf6_c01108{left:155.347357pt;}
.xd6_c01108{left:161.397659pt;}
.xcd_c01108{left:162.614088pt;}
.xb7_c01108{left:163.544104pt;}
.xc0_c01108{left:164.488000pt;}
.x75_c01108{left:168.817907pt;}
.x64_c01108{left:170.613953pt;}
.xe1_c01108{left:171.985333pt;}
.x3f_c01108{left:173.207467pt;}
.x23_c01108{left:174.897333pt;}
.x8e_c01108{left:178.513840pt;}
.xec_c01108{left:179.675056pt;}
.x50_c01108{left:182.184000pt;}
.xf_c01108{left:186.158643pt;}
.xa2_c01108{left:187.091736pt;}
.x86_c01108{left:189.242053pt;}
.xc8_c01108{left:191.896000pt;}
.xa9_c01108{left:194.479149pt;}
.x7f_c01108{left:198.676267pt;}
.x65_c01108{left:200.147961pt;}
.xb8_c01108{left:202.411700pt;}
.x1b_c01108{left:205.615307pt;}
.xed_c01108{left:206.723980pt;}
.x51_c01108{left:210.921333pt;}
.x80_c01108{left:217.862760pt;}
.xce_c01108{left:221.163421pt;}
.xb1_c01108{left:222.595460pt;}
.xaa_c01108{left:223.960968pt;}
.x4b_c01108{left:231.820000pt;}
.x2c_c01108{left:233.714667pt;}
.x6a_c01108{left:237.968000pt;}
.xd7_c01108{left:239.613520pt;}
.x4_c01108{left:244.488000pt;}
.x81_c01108{left:246.599147pt;}
.x76_c01108{left:248.045333pt;}
.x40_c01108{left:251.210347pt;}
.x24_c01108{left:252.681333pt;}
.x10_c01108{left:254.634213pt;}
.xee_c01108{left:258.276376pt;}
.xc1_c01108{left:260.997333pt;}
.x98_c01108{left:264.364000pt;}
.xf2_c01108{left:267.027988pt;}
.x6b_c01108{left:268.702667pt;}
.x5d_c01108{left:269.706667pt;}
.x37_c01108{left:271.457333pt;}
.xa3_c01108{left:273.499753pt;}
.x93_c01108{left:274.572627pt;}
.x66_c01108{left:278.632437pt;}
.x52_c01108{left:279.809333pt;}
.x2d_c01108{left:281.712000pt;}
.xab_c01108{left:283.818021pt;}
.x5e_c01108{left:288.940000pt;}
.xc2_c01108{left:290.533333pt;}
.x11_c01108{left:294.173592pt;}
.xf3_c01108{left:296.700360pt;}
.xdb_c01108{left:298.756504pt;}
.xb9_c01108{left:301.775584pt;}
.x5_c01108{left:304.498667pt;}
.x82_c01108{left:305.893373pt;}
.xef_c01108{left:306.938332pt;}
.xe2_c01108{left:308.785333pt;}
.x4c_c01108{left:311.101333pt;}
.x1c_c01108{left:313.210504pt;}
.x94_c01108{left:315.402653pt;}
.xf7_c01108{left:316.315773pt;}
.x77_c01108{left:317.541493pt;}
.x41_c01108{left:320.348773pt;}
.x25_c01108{left:322.044000pt;}
.x12_c01108{left:324.412485pt;}
.x87_c01108{left:325.922533pt;}
.xe8_c01108{left:327.041333pt;}
.xf4_c01108{left:335.863436pt;}
.x67_c01108{left:337.205787pt;}
.xba_c01108{left:340.484513pt;}
.x78_c01108{left:341.668267pt;}
.x99_c01108{left:343.202667pt;}
.x95_c01108{left:344.433227pt;}
.x53_c01108{left:348.530667pt;}
.x38_c01108{left:349.705333pt;}
.x26_c01108{left:351.333333pt;}
.x6_c01108{left:354.224000pt;}
.x5f_c01108{left:357.600000pt;}
.xc3_c01108{left:359.241333pt;}
.xa4_c01108{left:361.718768pt;}
.x6c_c01108{left:366.650667pt;}
.xb2_c01108{left:370.113729pt;}
.x1_c01108{left:375.360000pt;}
.xe3_c01108{left:376.712000pt;}
.xcf_c01108{left:377.668755pt;}
.x4d_c01108{left:390.032000pt;}
.x9a_c01108{left:392.678667pt;}
.x2_c01108{left:394.320000pt;}
.xe9_c01108{left:395.474667pt;}
.x60_c01108{left:397.452000pt;}
.x39_c01108{left:398.684000pt;}
.x2e_c01108{left:400.834667pt;}
.x7_c01108{left:404.145333pt;}
.x6d_c01108{left:405.781333pt;}
.x54_c01108{left:407.768000pt;}
.xbb_c01108{left:409.150879pt;}
.x13_c01108{left:412.123693pt;}
.xf8_c01108{left:414.473728pt;}
.xc9_c01108{left:417.637333pt;}
.xac_c01108{left:420.865161pt;}
.xea_c01108{left:425.476000pt;}
.xc4_c01108{left:428.120000pt;}
.x27_c01108{left:430.568000pt;}
.x1d_c01108{left:432.493581pt;}
.x3_c01108{left:433.680000pt;}
.x6e_c01108{left:435.281333pt;}
.x55_c01108{left:437.362667pt;}
.xbc_c01108{left:438.688273pt;}
.x2f_c01108{left:439.972000pt;}
.x14_c01108{left:441.989253pt;}
.x8_c01108{left:443.037333pt;}
.x79_c01108{left:444.661093pt;}
.x61_c01108{left:446.426667pt;}
.x4e_c01108{left:447.644000pt;}
.x9b_c01108{left:452.694667pt;}
.x68_c01108{left:455.323183pt;}
.x56_c01108{left:457.708000pt;}
.x88_c01108{left:463.279133pt;}
.xd8_c01108{left:465.291249pt;}
.xe4_c01108{left:466.318667pt;}
.x42_c01108{left:468.215333pt;}
.x30_c01108{left:470.706667pt;}
.x96_c01108{left:472.382893pt;}
.x7a_c01108{left:473.745520pt;}
.xd0_c01108{left:476.194088pt;}
.x3a_c01108{left:477.648000pt;}
.x9c_c01108{left:480.454667pt;}
.xeb_c01108{left:485.040000pt;}
.xb3_c01108{left:487.931028pt;}
.x28_c01108{left:490.648000pt;}
.x15_c01108{left:492.721221pt;}
.x6f_c01108{left:494.600000pt;}
.xc5_c01108{left:497.329333pt;}
.x31_c01108{left:498.513333pt;}
.x9_c01108{left:501.362667pt;}
.xf9_c01108{left:503.958699pt;}
.xd1_c01108{left:505.639421pt;}
.x57_c01108{left:506.928000pt;}
.x29_c01108{left:508.820000pt;}
.x9d_c01108{left:509.968000pt;}
.x43_c01108{left:516.945120pt;}
.xb4_c01108{left:518.500164pt;}
.x8f_c01108{left:521.325840pt;}
.xd9_c01108{left:524.582107pt;}
.x62_c01108{left:525.906667pt;}
.x69_c01108{left:527.302172pt;}
.x89_c01108{left:531.882747pt;}
.x83_c01108{left:532.845600pt;}
.xd2_c01108{left:534.715421pt;}
.xca_c01108{left:537.170667pt;}
.x90_c01108{left:541.172507pt;}
.xdc_c01108{left:543.603685pt;}
.x44_c01108{left:546.944800pt;}
.x70_c01108{left:553.409333pt;}
.xad_c01108{left:558.440343pt;}
.x1e_c01108{left:559.801491pt;}
.x16_c01108{left:560.968757pt;}
.x7b_c01108{left:562.789507pt;}
.xc6_c01108{left:565.453333pt;}
.xb5_c01108{left:567.972948pt;}
.x32_c01108{left:569.374667pt;}
.x9e_c01108{left:570.493333pt;}
.x97_c01108{left:572.702267pt;}
.x84_c01108{left:573.592040pt;}
.x58_c01108{left:575.588000pt;}
.xbd_c01108{left:576.747753pt;}
.x2a_c01108{left:578.200000pt;}
.x17_c01108{left:580.175096pt;}
.x71_c01108{left:584.384000pt;}
.xae_c01108{left:587.532828pt;}
.xa_c01108{left:590.649333pt;}
.x7c_c01108{left:592.319267pt;}
.xf0_c01108{left:594.082900pt;}
.xa5_c01108{left:598.202056pt;}
.x1f_c01108{left:599.129581pt;}
.x63_c01108{left:604.426667pt;}
.x59_c01108{left:605.345333pt;}
.x45_c01108{left:606.313520pt;}
.x3b_c01108{left:607.361333pt;}
.x18_c01108{left:609.869989pt;}
.x8a_c01108{left:611.127960pt;}
.xdd_c01108{left:613.103664pt;}
.x4f_c01108{left:615.896000pt;}
.xb6_c01108{left:617.880440pt;}
.xb_c01108{left:619.704000pt;}
.xf1_c01108{left:621.695260pt;}
.x3c_c01108{left:626.725333pt;}
.xcb_c01108{left:634.625333pt;}
.x9f_c01108{left:638.200000pt;}
.x19_c01108{left:639.171515pt;}
.x8b_c01108{left:640.955107pt;}
.x72_c01108{left:643.258667pt;}
.xbe_c01108{left:646.247535pt;}
.x20_c01108{left:648.818747pt;}
.xf5_c01108{left:651.720497pt;}
.xda_c01108{left:652.841599pt;}
.xd3_c01108{left:653.844755pt;}
.x46_c01108{left:655.444613pt;}
.x33_c01108{left:657.270667pt;}
.xa6_c01108{left:658.536731pt;}
.x7d_c01108{left:661.963427pt;}
.xcc_c01108{left:664.216000pt;}
.x5a_c01108{left:667.245333pt;}
.xc_c01108{left:670.678667pt;}
.xe5_c01108{left:672.433333pt;}
.x3d_c01108{left:676.252000pt;}
.x34_c01108{left:677.346667pt;}
.x21_c01108{left:678.611165pt;}
.xde_c01108{left:681.795681pt;}
.xd4_c01108{left:683.422088pt;}
.xaf_c01108{left:686.022945pt;}
.xa0_c01108{left:687.997333pt;}
.x73_c01108{left:691.273333pt;}
.x47_c01108{left:695.771253pt;}
.x85_c01108{left:700.657013pt;}
.x35_c01108{left:703.792000pt;}
.xa7_c01108{left:708.188419pt;}
.xd_c01108{left:709.458667pt;}
.x7e_c01108{left:710.974347pt;}
.xdf_c01108{left:712.701903pt;}
.x48_c01108{left:714.981333pt;}
.x3e_c01108{left:716.324000pt;}
.xa1_c01108{left:717.948000pt;}
.xe6_c01108{left:722.634667pt;}
.x91_c01108{left:729.557840pt;}
.x5b_c01108{left:735.336000pt;}
.x1a_c01108{left:739.074048pt;}
.x8c_c01108{left:740.117947pt;}
.x2b_c01108{left:747.238667pt;}
.x49_c01108{left:756.003893pt;}
}





/* 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_c01109 {
    display:none;
  }
  .loading-indicator_c01109.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01109 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_c01109 { 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_c01109" -> "#page-container .classname_c01109")
 */
.pf_c01109 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01109 { /* 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_c01109.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01109 { /* 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_c01109 { /* 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_c01109 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01109 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01109 {overflow:visible;}
  }
}
.c_c01109 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01109 { /* 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_c01109:after { /* webkit #35443 */
  content: '';
}
.t_c01109:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01109 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 */
}
.__c01109 { /* 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_c01109 { /* info for Javascript */
  display:none;
}
.l_c01109 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01109 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01109 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01109: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_c01109 {
    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_c01109.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01109.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_c01109 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01109{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01109;src:url('chunks/assets/font_b11a17f404e7258299fdf971.woff2')format("woff");}.ff1_c01109{font-family:ff1_c01109;line-height:1.000000;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;}
.m2f_c01109{transform:matrix(0.007723,-0.000185,0.005998,0.249928,0,0);-ms-transform:matrix(0.007723,-0.000185,0.005998,0.249928,0,0);-webkit-transform:matrix(0.007723,-0.000185,0.005998,0.249928,0,0);}
.m3b_c01109{transform:matrix(0.140430,-0.003370,0.005998,0.249928,0,0);-ms-transform:matrix(0.140430,-0.003370,0.005998,0.249928,0,0);-webkit-transform:matrix(0.140430,-0.003370,0.005998,0.249928,0,0);}
.m2c_c01109{transform:matrix(0.142779,-0.003427,0.005998,0.249928,0,0);-ms-transform:matrix(0.142779,-0.003427,0.005998,0.249928,0,0);-webkit-transform:matrix(0.142779,-0.003427,0.005998,0.249928,0,0);}
.m37_c01109{transform:matrix(0.179703,-0.004313,0.005998,0.249928,0,0);-ms-transform:matrix(0.179703,-0.004313,0.005998,0.249928,0,0);-webkit-transform:matrix(0.179703,-0.004313,0.005998,0.249928,0,0);}
.m33_c01109{transform:matrix(0.214518,-0.005148,0.005998,0.249928,0,0);-ms-transform:matrix(0.214518,-0.005148,0.005998,0.249928,0,0);-webkit-transform:matrix(0.214518,-0.005148,0.005998,0.249928,0,0);}
.m28_c01109{transform:matrix(0.216127,-0.001081,0.001250,0.249997,0,0);-ms-transform:matrix(0.216127,-0.001081,0.001250,0.249997,0,0);-webkit-transform:matrix(0.216127,-0.001081,0.001250,0.249997,0,0);}
.m11_c01109{transform:matrix(0.236987,-0.001185,0.001250,0.249997,0,0);-ms-transform:matrix(0.236987,-0.001185,0.001250,0.249997,0,0);-webkit-transform:matrix(0.236987,-0.001185,0.001250,0.249997,0,0);}
.m1_c01109{transform:matrix(0.237477,-0.001187,0.001250,0.249997,0,0);-ms-transform:matrix(0.237477,-0.001187,0.001250,0.249997,0,0);-webkit-transform:matrix(0.237477,-0.001187,0.001250,0.249997,0,0);}
.m39_c01109{transform:matrix(0.239641,-0.005751,0.005998,0.249928,0,0);-ms-transform:matrix(0.239641,-0.005751,0.005998,0.249928,0,0);-webkit-transform:matrix(0.239641,-0.005751,0.005998,0.249928,0,0);}
.me_c01109{transform:matrix(0.244847,-0.001224,0.001250,0.249997,0,0);-ms-transform:matrix(0.244847,-0.001224,0.001250,0.249997,0,0);-webkit-transform:matrix(0.244847,-0.001224,0.001250,0.249997,0,0);}
.m31_c01109{transform:matrix(0.245184,-0.005884,0.005998,0.249928,0,0);-ms-transform:matrix(0.245184,-0.005884,0.005998,0.249928,0,0);-webkit-transform:matrix(0.245184,-0.005884,0.005998,0.249928,0,0);}
.m29_c01109{transform:matrix(0.245562,-0.001228,0.001250,0.249997,0,0);-ms-transform:matrix(0.245562,-0.001228,0.001250,0.249997,0,0);-webkit-transform:matrix(0.245562,-0.001228,0.001250,0.249997,0,0);}
.m26_c01109{transform:matrix(0.246362,-0.001232,0.001250,0.249997,0,0);-ms-transform:matrix(0.246362,-0.001232,0.001250,0.249997,0,0);-webkit-transform:matrix(0.246362,-0.001232,0.001250,0.249997,0,0);}
.m22_c01109{transform:matrix(0.248692,-0.001243,0.001250,0.249997,0,0);-ms-transform:matrix(0.248692,-0.001243,0.001250,0.249997,0,0);-webkit-transform:matrix(0.248692,-0.001243,0.001250,0.249997,0,0);}
.m23_c01109{transform:matrix(0.253312,-0.001267,0.001250,0.249997,0,0);-ms-transform:matrix(0.253312,-0.001267,0.001250,0.249997,0,0);-webkit-transform:matrix(0.253312,-0.001267,0.001250,0.249997,0,0);}
.m5_c01109{transform:matrix(0.256792,-0.001284,0.001250,0.249997,0,0);-ms-transform:matrix(0.256792,-0.001284,0.001250,0.249997,0,0);-webkit-transform:matrix(0.256792,-0.001284,0.001250,0.249997,0,0);}
.m19_c01109{transform:matrix(0.258007,-0.001290,0.001250,0.249997,0,0);-ms-transform:matrix(0.258007,-0.001290,0.001250,0.249997,0,0);-webkit-transform:matrix(0.258007,-0.001290,0.001250,0.249997,0,0);}
.m3_c01109{transform:matrix(0.258452,-0.001292,0.001250,0.249997,0,0);-ms-transform:matrix(0.258452,-0.001292,0.001250,0.249997,0,0);-webkit-transform:matrix(0.258452,-0.001292,0.001250,0.249997,0,0);}
.m2b_c01109{transform:matrix(0.259912,-0.001300,0.001250,0.249997,0,0);-ms-transform:matrix(0.259912,-0.001300,0.001250,0.249997,0,0);-webkit-transform:matrix(0.259912,-0.001300,0.001250,0.249997,0,0);}
.m7_c01109{transform:matrix(0.260442,-0.001302,0.001250,0.249997,0,0);-ms-transform:matrix(0.260442,-0.001302,0.001250,0.249997,0,0);-webkit-transform:matrix(0.260442,-0.001302,0.001250,0.249997,0,0);}
.m15_c01109{transform:matrix(0.267557,-0.001338,0.001250,0.249997,0,0);-ms-transform:matrix(0.267557,-0.001338,0.001250,0.249997,0,0);-webkit-transform:matrix(0.267557,-0.001338,0.001250,0.249997,0,0);}
.m17_c01109{transform:matrix(0.269287,-0.001346,0.001250,0.249997,0,0);-ms-transform:matrix(0.269287,-0.001346,0.001250,0.249997,0,0);-webkit-transform:matrix(0.269287,-0.001346,0.001250,0.249997,0,0);}
.mc_c01109{transform:matrix(0.273272,-0.001366,0.001250,0.249997,0,0);-ms-transform:matrix(0.273272,-0.001366,0.001250,0.249997,0,0);-webkit-transform:matrix(0.273272,-0.001366,0.001250,0.249997,0,0);}
.mf_c01109{transform:matrix(0.278447,-0.001392,0.001250,0.249997,0,0);-ms-transform:matrix(0.278447,-0.001392,0.001250,0.249997,0,0);-webkit-transform:matrix(0.278447,-0.001392,0.001250,0.249997,0,0);}
.m30_c01109{transform:matrix(0.282634,-0.006783,0.005998,0.249928,0,0);-ms-transform:matrix(0.282634,-0.006783,0.005998,0.249928,0,0);-webkit-transform:matrix(0.282634,-0.006783,0.005998,0.249928,0,0);}
.m27_c01109{transform:matrix(0.287306,-0.001437,0.001250,0.249997,0,0);-ms-transform:matrix(0.287306,-0.001437,0.001250,0.249997,0,0);-webkit-transform:matrix(0.287306,-0.001437,0.001250,0.249997,0,0);}
.m35_c01109{transform:matrix(0.287697,-0.006905,0.005998,0.249928,0,0);-ms-transform:matrix(0.287697,-0.006905,0.005998,0.249928,0,0);-webkit-transform:matrix(0.287697,-0.006905,0.005998,0.249928,0,0);}
.m1e_c01109{transform:matrix(0.291431,-0.001457,0.001250,0.249997,0,0);-ms-transform:matrix(0.291431,-0.001457,0.001250,0.249997,0,0);-webkit-transform:matrix(0.291431,-0.001457,0.001250,0.249997,0,0);}
.m4_c01109{transform:matrix(0.292051,-0.001460,0.001250,0.249997,0,0);-ms-transform:matrix(0.292051,-0.001460,0.001250,0.249997,0,0);-webkit-transform:matrix(0.292051,-0.001460,0.001250,0.249997,0,0);}
.m1a_c01109{transform:matrix(0.293756,-0.001469,0.001250,0.249997,0,0);-ms-transform:matrix(0.293756,-0.001469,0.001250,0.249997,0,0);-webkit-transform:matrix(0.293756,-0.001469,0.001250,0.249997,0,0);}
.m6_c01109{transform:matrix(0.298786,-0.001494,0.001250,0.249997,0,0);-ms-transform:matrix(0.298786,-0.001494,0.001250,0.249997,0,0);-webkit-transform:matrix(0.298786,-0.001494,0.001250,0.249997,0,0);}
.ma_c01109{transform:matrix(0.301536,-0.001508,0.001250,0.249997,0,0);-ms-transform:matrix(0.301536,-0.001508,0.001250,0.249997,0,0);-webkit-transform:matrix(0.301536,-0.001508,0.001250,0.249997,0,0);}
.m14_c01109{transform:matrix(0.303856,-0.001519,0.001250,0.249997,0,0);-ms-transform:matrix(0.303856,-0.001519,0.001250,0.249997,0,0);-webkit-transform:matrix(0.303856,-0.001519,0.001250,0.249997,0,0);}
.m9_c01109{transform:matrix(0.306471,-0.001532,0.001250,0.249997,0,0);-ms-transform:matrix(0.306471,-0.001532,0.001250,0.249997,0,0);-webkit-transform:matrix(0.306471,-0.001532,0.001250,0.249997,0,0);}
.m13_c01109{transform:matrix(0.310306,-0.001552,0.001250,0.249997,0,0);-ms-transform:matrix(0.310306,-0.001552,0.001250,0.249997,0,0);-webkit-transform:matrix(0.310306,-0.001552,0.001250,0.249997,0,0);}
.m12_c01109{transform:matrix(0.310376,-0.001552,0.001250,0.249997,0,0);-ms-transform:matrix(0.310376,-0.001552,0.001250,0.249997,0,0);-webkit-transform:matrix(0.310376,-0.001552,0.001250,0.249997,0,0);}
.m2d_c01109{transform:matrix(0.316154,-0.007588,0.005998,0.249928,0,0);-ms-transform:matrix(0.316154,-0.007588,0.005998,0.249928,0,0);-webkit-transform:matrix(0.316154,-0.007588,0.005998,0.249928,0,0);}
.m18_c01109{transform:matrix(0.319841,-0.001599,0.001250,0.249997,0,0);-ms-transform:matrix(0.319841,-0.001599,0.001250,0.249997,0,0);-webkit-transform:matrix(0.319841,-0.001599,0.001250,0.249997,0,0);}
.m1d_c01109{transform:matrix(0.320976,-0.001605,0.001250,0.249997,0,0);-ms-transform:matrix(0.320976,-0.001605,0.001250,0.249997,0,0);-webkit-transform:matrix(0.320976,-0.001605,0.001250,0.249997,0,0);}
.m2a_c01109{transform:matrix(0.326351,-0.001632,0.001250,0.249997,0,0);-ms-transform:matrix(0.326351,-0.001632,0.001250,0.249997,0,0);-webkit-transform:matrix(0.326351,-0.001632,0.001250,0.249997,0,0);}
.mb_c01109{transform:matrix(0.328106,-0.001641,0.001250,0.249997,0,0);-ms-transform:matrix(0.328106,-0.001641,0.001250,0.249997,0,0);-webkit-transform:matrix(0.328106,-0.001641,0.001250,0.249997,0,0);}
.m36_c01109{transform:matrix(0.339337,-0.008144,0.005998,0.249928,0,0);-ms-transform:matrix(0.339337,-0.008144,0.005998,0.249928,0,0);-webkit-transform:matrix(0.339337,-0.008144,0.005998,0.249928,0,0);}
.m1b_c01109{transform:matrix(0.353946,-0.001770,0.001250,0.249997,0,0);-ms-transform:matrix(0.353946,-0.001770,0.001250,0.249997,0,0);-webkit-transform:matrix(0.353946,-0.001770,0.001250,0.249997,0,0);}
.m20_c01109{transform:matrix(0.355441,-0.001777,0.001250,0.249997,0,0);-ms-transform:matrix(0.355441,-0.001777,0.001250,0.249997,0,0);-webkit-transform:matrix(0.355441,-0.001777,0.001250,0.249997,0,0);}
.m2_c01109{transform:matrix(0.356156,-0.001781,0.001250,0.249997,0,0);-ms-transform:matrix(0.356156,-0.001781,0.001250,0.249997,0,0);-webkit-transform:matrix(0.356156,-0.001781,0.001250,0.249997,0,0);}
.m38_c01109{transform:matrix(0.364125,-0.008739,0.005998,0.249928,0,0);-ms-transform:matrix(0.364125,-0.008739,0.005998,0.249928,0,0);-webkit-transform:matrix(0.364125,-0.008739,0.005998,0.249928,0,0);}
.m1c_c01109{transform:matrix(0.369060,-0.001845,0.001250,0.249997,0,0);-ms-transform:matrix(0.369060,-0.001845,0.001250,0.249997,0,0);-webkit-transform:matrix(0.369060,-0.001845,0.001250,0.249997,0,0);}
.m34_c01109{transform:matrix(0.382315,-0.009176,0.005998,0.249928,0,0);-ms-transform:matrix(0.382315,-0.009176,0.005998,0.249928,0,0);-webkit-transform:matrix(0.382315,-0.009176,0.005998,0.249928,0,0);}
.m25_c01109{transform:matrix(0.423200,-0.002116,0.001250,0.249997,0,0);-ms-transform:matrix(0.423200,-0.002116,0.001250,0.249997,0,0);-webkit-transform:matrix(0.423200,-0.002116,0.001250,0.249997,0,0);}
.m10_c01109{transform:matrix(0.429260,-0.002146,0.001250,0.249997,0,0);-ms-transform:matrix(0.429260,-0.002146,0.001250,0.249997,0,0);-webkit-transform:matrix(0.429260,-0.002146,0.001250,0.249997,0,0);}
.m16_c01109{transform:matrix(0.437320,-0.002187,0.001250,0.249997,0,0);-ms-transform:matrix(0.437320,-0.002187,0.001250,0.249997,0,0);-webkit-transform:matrix(0.437320,-0.002187,0.001250,0.249997,0,0);}
.m2e_c01109{transform:matrix(0.440803,-0.010579,0.005998,0.249928,0,0);-ms-transform:matrix(0.440803,-0.010579,0.005998,0.249928,0,0);-webkit-transform:matrix(0.440803,-0.010579,0.005998,0.249928,0,0);}
.m3a_c01109{transform:matrix(0.462442,-0.011099,0.005998,0.249928,0,0);-ms-transform:matrix(0.462442,-0.011099,0.005998,0.249928,0,0);-webkit-transform:matrix(0.462442,-0.011099,0.005998,0.249928,0,0);}
.m21_c01109{transform:matrix(0.494284,-0.002471,0.001250,0.249997,0,0);-ms-transform:matrix(0.494284,-0.002471,0.001250,0.249997,0,0);-webkit-transform:matrix(0.494284,-0.002471,0.001250,0.249997,0,0);}
.m8_c01109{transform:matrix(0.507209,-0.002536,0.001250,0.249997,0,0);-ms-transform:matrix(0.507209,-0.002536,0.001250,0.249997,0,0);-webkit-transform:matrix(0.507209,-0.002536,0.001250,0.249997,0,0);}
.md_c01109{transform:matrix(0.569623,-0.002848,0.001250,0.249997,0,0);-ms-transform:matrix(0.569623,-0.002848,0.001250,0.249997,0,0);-webkit-transform:matrix(0.569623,-0.002848,0.001250,0.249997,0,0);}
.m32_c01109{transform:matrix(0.581912,-0.013966,0.005998,0.249928,0,0);-ms-transform:matrix(0.581912,-0.013966,0.005998,0.249928,0,0);-webkit-transform:matrix(0.581912,-0.013966,0.005998,0.249928,0,0);}
.m24_c01109{transform:matrix(0.592903,-0.002965,0.001250,0.249997,0,0);-ms-transform:matrix(0.592903,-0.002965,0.001250,0.249997,0,0);-webkit-transform:matrix(0.592903,-0.002965,0.001250,0.249997,0,0);}
.m1f_c01109{transform:matrix(0.800295,-0.004001,0.001250,0.249997,0,0);-ms-transform:matrix(0.800295,-0.004001,0.001250,0.249997,0,0);-webkit-transform:matrix(0.800295,-0.004001,0.001250,0.249997,0,0);}
.m0_c01109{transform:matrix(1.552296,-0.007761,0.001250,0.249997,0,0);-ms-transform:matrix(1.552296,-0.007761,0.001250,0.249997,0,0);-webkit-transform:matrix(1.552296,-0.007761,0.001250,0.249997,0,0);}
.v0_c01109{vertical-align:0.000000px;}
.ls0_c01109{letter-spacing:0.000000px;}
.sc__c01109{text-shadow:none;}
.sc0_c01109{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__c01109{-webkit-text-stroke:0px transparent;}
.sc0_c01109{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01109{word-spacing:0.000000px;}
.fc0_c01109{color:transparent;}
.fs1_c01109{font-size:78.000975px;}
.fs0_c01109{font-size:84.001050px;}
.fs2_c01109{font-size:90.001125px;}
.fs3_c01109{font-size:126.036283px;}
.y0_c01109{bottom:0.000000px;}
.y2e_c01109{bottom:503.348952px;}
.y2d_c01109{bottom:503.530500px;}
.y2f_c01109{bottom:504.203448px;}
.y30_c01109{bottom:504.307884px;}
.y31_c01109{bottom:504.799752px;}
.y32_c01109{bottom:506.309952px;}
.y33_c01109{bottom:506.840952px;}
.y34_c01109{bottom:508.632636px;}
.y35_c01109{bottom:508.883952px;}
.y36_c01109{bottom:510.776796px;}
.y37_c01109{bottom:511.408380px;}
.y38_c01109{bottom:512.653440px;}
.y39_c01109{bottom:514.480548px;}
.y3a_c01109{bottom:515.436456px;}
.y3b_c01109{bottom:516.880416px;}
.y3c_c01109{bottom:518.762136px;}
.y21_c01109{bottom:718.740000px;}
.y22_c01109{bottom:719.049173px;}
.y23_c01109{bottom:719.355705px;}
.y24_c01109{bottom:719.743170px;}
.y25_c01109{bottom:719.890388px;}
.y26_c01109{bottom:720.371010px;}
.y27_c01109{bottom:720.568140px;}
.y28_c01109{bottom:721.132155px;}
.y29_c01109{bottom:721.284720px;}
.y2a_c01109{bottom:721.645268px;}
.y2b_c01109{bottom:722.089147px;}
.y2c_c01109{bottom:722.105378px;}
.y15_c01109{bottom:754.866000px;}
.y16_c01109{bottom:755.283135px;}
.y17_c01109{bottom:755.573760px;}
.y18_c01109{bottom:755.905553px;}
.y19_c01109{bottom:756.058178px;}
.y1a_c01109{bottom:756.233633px;}
.y1b_c01109{bottom:756.388980px;}
.y1c_c01109{bottom:756.551123px;}
.y1d_c01109{bottom:756.718507px;}
.y1e_c01109{bottom:756.894090px;}
.y1f_c01109{bottom:757.119487px;}
.y20_c01109{bottom:757.651260px;}
.yd_c01109{bottom:793.855028px;}
.y10_c01109{bottom:793.855613px;}
.ye_c01109{bottom:793.855628px;}
.y11_c01109{bottom:793.856055px;}
.yf_c01109{bottom:793.856220px;}
.y14_c01109{bottom:793.856490px;}
.y13_c01109{bottom:793.856790px;}
.y12_c01109{bottom:793.856798px;}
.y1_c01109{bottom:823.914000px;}
.y2_c01109{bottom:824.435828px;}
.y3_c01109{bottom:824.986560px;}
.y4_c01109{bottom:825.156720px;}
.y5_c01109{bottom:825.430958px;}
.y6_c01109{bottom:825.865463px;}
.y7_c01109{bottom:826.146322px;}
.y8_c01109{bottom:826.351560px;}
.y9_c01109{bottom:826.732320px;}
.ya_c01109{bottom:826.840200px;}
.yb_c01109{bottom:827.189618px;}
.yc_c01109{bottom:827.338043px;}
.h3_c01109{height:78.000975px;}
.h2_c01109{height:84.001050px;}
.h4_c01109{height:90.001125px;}
.h5_c01109{height:126.036283px;}
.h0_c01109{height:1246.320000px;}
.h1_c01109{height:1246.500000px;}
.w0_c01109{width:927.450000px;}
.w1_c01109{width:927.750000px;}
.x0_c01109{left:0.000000px;}
.x1_c01109{left:61.561500px;}
.x1e_c01109{left:88.132500px;}
.x13_c01109{left:91.600500px;}
.x1f_c01109{left:149.967000px;}
.x29_c01109{left:157.965000px;}
.x2_c01109{left:165.927000px;}
.x14_c01109{left:175.027500px;}
.x2a_c01109{left:193.569000px;}
.x2b_c01109{left:197.920500px;}
.x20_c01109{left:211.273500px;}
.x2c_c01109{left:218.415000px;}
.x15_c01109{left:233.152500px;}
.x3_c01109{left:276.073500px;}
.x2d_c01109{left:281.340000px;}
.x21_c01109{left:288.766500px;}
.x16_c01109{left:299.511000px;}
.x2e_c01109{left:303.465000px;}
.x4_c01109{left:310.105500px;}
.xd_c01109{left:312.123555px;}
.x22_c01109{left:318.210000px;}
.x17_c01109{left:330.036000px;}
.x5_c01109{left:364.953000px;}
.x2f_c01109{left:378.118500px;}
.x30_c01109{left:388.590000px;}
.x18_c01109{left:396.196500px;}
.x23_c01109{left:414.334500px;}
.x19_c01109{left:428.625000px;}
.xe_c01109{left:442.265303px;}
.x6_c01109{left:451.854000px;}
.x24_c01109{left:453.760500px;}
.x1a_c01109{left:462.102000px;}
.x31_c01109{left:467.458500px;}
.x32_c01109{left:493.774500px;}
.x1b_c01109{left:497.218500px;}
.x7_c01109{left:508.026000px;}
.x1c_c01109{left:542.298000px;}
.x33_c01109{left:545.652000px;}
.x8_c01109{left:549.073500px;}
.x25_c01109{left:566.563500px;}
.xf_c01109{left:569.435483px;}
.x26_c01109{left:597.076500px;}
.x34_c01109{left:621.781500px;}
.x9_c01109{left:625.225500px;}
.x10_c01109{left:638.285700px;}
.xa_c01109{left:646.801500px;}
.x1d_c01109{left:648.652500px;}
.x35_c01109{left:661.611000px;}
.x27_c01109{left:669.186000px;}
.xb_c01109{left:716.685000px;}
.x36_c01109{left:721.776000px;}
.x11_c01109{left:724.686360px;}
.xc_c01109{left:746.370000px;}
.x28_c01109{left:757.962000px;}
.x12_c01109{left:760.327252px;}
.x37_c01109{left:800.181000px;}
@media print{
.v0_c01109{vertical-align:0.000000pt;}
.ls0_c01109{letter-spacing:0.000000pt;}
.ws0_c01109{word-spacing:0.000000pt;}
.fs1_c01109{font-size:69.334200pt;}
.fs0_c01109{font-size:74.667600pt;}
.fs2_c01109{font-size:80.001000pt;}
.fs3_c01109{font-size:112.032251pt;}
.y0_c01109{bottom:0.000000pt;}
.y2e_c01109{bottom:447.421291pt;}
.y2d_c01109{bottom:447.582667pt;}
.y2f_c01109{bottom:448.180843pt;}
.y30_c01109{bottom:448.273675pt;}
.y31_c01109{bottom:448.710891pt;}
.y32_c01109{bottom:450.053291pt;}
.y33_c01109{bottom:450.525291pt;}
.y34_c01109{bottom:452.117899pt;}
.y35_c01109{bottom:452.341291pt;}
.y36_c01109{bottom:454.023819pt;}
.y37_c01109{bottom:454.585227pt;}
.y38_c01109{bottom:455.691947pt;}
.y39_c01109{bottom:457.316043pt;}
.y3a_c01109{bottom:458.165739pt;}
.y3b_c01109{bottom:459.449259pt;}
.y3c_c01109{bottom:461.121899pt;}
.y21_c01109{bottom:638.880000pt;}
.y22_c01109{bottom:639.154820pt;}
.y23_c01109{bottom:639.427293pt;}
.y24_c01109{bottom:639.771707pt;}
.y25_c01109{bottom:639.902567pt;}
.y26_c01109{bottom:640.329787pt;}
.y27_c01109{bottom:640.505013pt;}
.y28_c01109{bottom:641.006360pt;}
.y29_c01109{bottom:641.141973pt;}
.y2a_c01109{bottom:641.462460pt;}
.y2b_c01109{bottom:641.857020pt;}
.y2c_c01109{bottom:641.871447pt;}
.y15_c01109{bottom:670.992000pt;}
.y16_c01109{bottom:671.362787pt;}
.y17_c01109{bottom:671.621120pt;}
.y18_c01109{bottom:671.916047pt;}
.y19_c01109{bottom:672.051713pt;}
.y1a_c01109{bottom:672.207673pt;}
.y1b_c01109{bottom:672.345760pt;}
.y1c_c01109{bottom:672.489887pt;}
.y1d_c01109{bottom:672.638673pt;}
.y1e_c01109{bottom:672.794747pt;}
.y1f_c01109{bottom:672.995100pt;}
.y20_c01109{bottom:673.467787pt;}
.yd_c01109{bottom:705.648913pt;}
.y10_c01109{bottom:705.649433pt;}
.ye_c01109{bottom:705.649447pt;}
.y11_c01109{bottom:705.649827pt;}
.yf_c01109{bottom:705.649973pt;}
.y14_c01109{bottom:705.650213pt;}
.y13_c01109{bottom:705.650480pt;}
.y12_c01109{bottom:705.650487pt;}
.y1_c01109{bottom:732.368000pt;}
.y2_c01109{bottom:732.831847pt;}
.y3_c01109{bottom:733.321387pt;}
.y4_c01109{bottom:733.472640pt;}
.y5_c01109{bottom:733.716407pt;}
.y6_c01109{bottom:734.102633pt;}
.y7_c01109{bottom:734.352287pt;}
.y8_c01109{bottom:734.534720pt;}
.y9_c01109{bottom:734.873173pt;}
.ya_c01109{bottom:734.969067pt;}
.yb_c01109{bottom:735.279660pt;}
.yc_c01109{bottom:735.411593pt;}
.h3_c01109{height:69.334200pt;}
.h2_c01109{height:74.667600pt;}
.h4_c01109{height:80.001000pt;}
.h5_c01109{height:112.032251pt;}
.h0_c01109{height:1107.840000pt;}
.h1_c01109{height:1108.000000pt;}
.w0_c01109{width:824.400000pt;}
.w1_c01109{width:824.666667pt;}
.x0_c01109{left:0.000000pt;}
.x1_c01109{left:54.721333pt;}
.x1e_c01109{left:78.340000pt;}
.x13_c01109{left:81.422667pt;}
.x1f_c01109{left:133.304000pt;}
.x29_c01109{left:140.413333pt;}
.x2_c01109{left:147.490667pt;}
.x14_c01109{left:155.580000pt;}
.x2a_c01109{left:172.061333pt;}
.x2b_c01109{left:175.929333pt;}
.x20_c01109{left:187.798667pt;}
.x2c_c01109{left:194.146667pt;}
.x15_c01109{left:207.246667pt;}
.x3_c01109{left:245.398667pt;}
.x2d_c01109{left:250.080000pt;}
.x21_c01109{left:256.681333pt;}
.x16_c01109{left:266.232000pt;}
.x2e_c01109{left:269.746667pt;}
.x4_c01109{left:275.649333pt;}
.xd_c01109{left:277.443160pt;}
.x22_c01109{left:282.853333pt;}
.x17_c01109{left:293.365333pt;}
.x5_c01109{left:324.402667pt;}
.x2f_c01109{left:336.105333pt;}
.x30_c01109{left:345.413333pt;}
.x18_c01109{left:352.174667pt;}
.x23_c01109{left:368.297333pt;}
.x19_c01109{left:381.000000pt;}
.xe_c01109{left:393.124713pt;}
.x6_c01109{left:401.648000pt;}
.x24_c01109{left:403.342667pt;}
.x1a_c01109{left:410.757333pt;}
.x31_c01109{left:415.518667pt;}
.x32_c01109{left:438.910667pt;}
.x1b_c01109{left:441.972000pt;}
.x7_c01109{left:451.578667pt;}
.x1c_c01109{left:482.042667pt;}
.x33_c01109{left:485.024000pt;}
.x8_c01109{left:488.065333pt;}
.x25_c01109{left:503.612000pt;}
.xf_c01109{left:506.164873pt;}
.x26_c01109{left:530.734667pt;}
.x34_c01109{left:552.694667pt;}
.x9_c01109{left:555.756000pt;}
.x10_c01109{left:567.365067pt;}
.xa_c01109{left:574.934667pt;}
.x1d_c01109{left:576.580000pt;}
.x35_c01109{left:588.098667pt;}
.x27_c01109{left:594.832000pt;}
.xb_c01109{left:637.053333pt;}
.x36_c01109{left:641.578667pt;}
.x11_c01109{left:644.165653pt;}
.xc_c01109{left:663.440000pt;}
.x28_c01109{left:673.744000pt;}
.x12_c01109{left:675.846447pt;}
.x37_c01109{left:711.272000pt;}
}





/* 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_c01110 {
    display:none;
  }
  .loading-indicator_c01110.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01110 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_c01110 { 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_c01110" -> "#page-container .classname_c01110")
 */
.pf_c01110 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01110 { /* 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_c01110.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01110 { /* 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_c01110 { /* 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_c01110 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01110 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01110 {overflow:visible;}
  }
}
.c_c01110 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01110 { /* 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_c01110:after { /* webkit #35443 */
  content: '';
}
.t_c01110:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01110 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 */
}
.__c01110 { /* 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_c01110 { /* info for Javascript */
  display:none;
}
.l_c01110 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01110 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01110 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01110: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_c01110 {
    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_c01110.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01110.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_c01110 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01110{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01110;src:url('chunks/assets/font_cfe63ee56e9e10a97d33a3db.woff2')format("woff");}.ff1_c01110{font-family:ff1_c01110;line-height:1.000000;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;}
.m51_c01110{transform:matrix(0.017310,0.000087,-0.001250,0.249997,0,0);-ms-transform:matrix(0.017310,0.000087,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.017310,0.000087,-0.001250,0.249997,0,0);}
.m48_c01110{transform:matrix(0.149215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149215,0.000000,0.000000,0.250000,0,0);}
.m61_c01110{transform:matrix(0.181143,0.000906,-0.001250,0.249997,0,0);-ms-transform:matrix(0.181143,0.000906,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.181143,0.000906,-0.001250,0.249997,0,0);}
.m6_c01110{transform:matrix(0.183620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183620,0.000000,0.000000,0.250000,0,0);}
.m11b_c01110{transform:matrix(0.183698,0.003123,-0.004249,0.249964,0,0);-ms-transform:matrix(0.183698,0.003123,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.183698,0.003123,-0.004249,0.249964,0,0);}
.mb7_c01110{transform:matrix(0.186374,0.002050,-0.002750,0.249985,0,0);-ms-transform:matrix(0.186374,0.002050,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.186374,0.002050,-0.002750,0.249985,0,0);}
.m11f_c01110{transform:matrix(0.186608,0.003172,-0.004249,0.249964,0,0);-ms-transform:matrix(0.186608,0.003172,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.186608,0.003172,-0.004249,0.249964,0,0);}
.m7_c01110{transform:matrix(0.187950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187950,0.000000,0.000000,0.250000,0,0);}
.m121_c01110{transform:matrix(0.188083,0.003197,-0.004249,0.249964,0,0);-ms-transform:matrix(0.188083,0.003197,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.188083,0.003197,-0.004249,0.249964,0,0);}
.m4c_c01110{transform:matrix(0.188790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188790,0.000000,0.000000,0.250000,0,0);}
.m20_c01110{transform:matrix(0.188965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188965,0.000000,0.000000,0.250000,0,0);}
.m122_c01110{transform:matrix(0.189293,0.003218,-0.004249,0.249964,0,0);-ms-transform:matrix(0.189293,0.003218,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.189293,0.003218,-0.004249,0.249964,0,0);}
.m120_c01110{transform:matrix(0.189858,0.003228,-0.004249,0.249964,0,0);-ms-transform:matrix(0.189858,0.003228,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.189858,0.003228,-0.004249,0.249964,0,0);}
.mbf_c01110{transform:matrix(0.190203,0.002092,-0.002750,0.249985,0,0);-ms-transform:matrix(0.190203,0.002092,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.190203,0.002092,-0.002750,0.249985,0,0);}
.mba_c01110{transform:matrix(0.193203,0.002125,-0.002750,0.249985,0,0);-ms-transform:matrix(0.193203,0.002125,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.193203,0.002125,-0.002750,0.249985,0,0);}
.m4e_c01110{transform:matrix(0.193665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193665,0.000000,0.000000,0.250000,0,0);}
.mb6_c01110{transform:matrix(0.193913,0.002133,-0.002750,0.249985,0,0);-ms-transform:matrix(0.193913,0.002133,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.193913,0.002133,-0.002750,0.249985,0,0);}
.me_c01110{transform:matrix(0.193980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193980,0.000000,0.000000,0.250000,0,0);}
.mbe_c01110{transform:matrix(0.195803,0.002154,-0.002750,0.249985,0,0);-ms-transform:matrix(0.195803,0.002154,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.195803,0.002154,-0.002750,0.249985,0,0);}
.mbc_c01110{transform:matrix(0.195878,0.002155,-0.002750,0.249985,0,0);-ms-transform:matrix(0.195878,0.002155,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.195878,0.002155,-0.002750,0.249985,0,0);}
.m46_c01110{transform:matrix(0.196125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196125,0.000000,0.000000,0.250000,0,0);}
.mb8_c01110{transform:matrix(0.196943,0.002166,-0.002750,0.249985,0,0);-ms-transform:matrix(0.196943,0.002166,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.196943,0.002166,-0.002750,0.249985,0,0);}
.m67_c01110{transform:matrix(0.198203,0.000991,-0.001250,0.249997,0,0);-ms-transform:matrix(0.198203,0.000991,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.198203,0.000991,-0.001250,0.249997,0,0);}
.m115_c01110{transform:matrix(0.199156,0.003386,-0.004249,0.249964,0,0);-ms-transform:matrix(0.199156,0.003386,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.199156,0.003386,-0.004249,0.249964,0,0);}
.m29_c01110{transform:matrix(0.201591,0.001210,-0.001500,0.249996,0,0);-ms-transform:matrix(0.201591,0.001210,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.201591,0.001210,-0.001500,0.249996,0,0);}
.m64_c01110{transform:matrix(0.203197,0.001016,-0.001250,0.249997,0,0);-ms-transform:matrix(0.203197,0.001016,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.203197,0.001016,-0.001250,0.249997,0,0);}
.mb2_c01110{transform:matrix(0.203648,0.002240,-0.002750,0.249985,0,0);-ms-transform:matrix(0.203648,0.002240,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.203648,0.002240,-0.002750,0.249985,0,0);}
.mbb_c01110{transform:matrix(0.203793,0.002242,-0.002750,0.249985,0,0);-ms-transform:matrix(0.203793,0.002242,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.203793,0.002242,-0.002750,0.249985,0,0);}
.mae_c01110{transform:matrix(0.204183,0.002246,-0.002750,0.249985,0,0);-ms-transform:matrix(0.204183,0.002246,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.204183,0.002246,-0.002750,0.249985,0,0);}
.m12e_c01110{transform:matrix(0.204210,0.002042,-0.002500,0.249988,0,0);-ms-transform:matrix(0.204210,0.002042,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.204210,0.002042,-0.002500,0.249988,0,0);}
.mab_c01110{transform:matrix(0.204698,0.002252,-0.002750,0.249985,0,0);-ms-transform:matrix(0.204698,0.002252,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.204698,0.002252,-0.002750,0.249985,0,0);}
.mee_c01110{transform:matrix(0.204778,0.002253,-0.002750,0.249985,0,0);-ms-transform:matrix(0.204778,0.002253,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.204778,0.002253,-0.002750,0.249985,0,0);}
.m5_c01110{transform:matrix(0.204940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204940,0.000000,0.000000,0.250000,0,0);}
.md4_c01110{transform:matrix(0.206689,0.003307,-0.003999,0.249968,0,0);-ms-transform:matrix(0.206689,0.003307,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.206689,0.003307,-0.003999,0.249968,0,0);}
.m5f_c01110{transform:matrix(0.207237,0.001036,-0.001250,0.249997,0,0);-ms-transform:matrix(0.207237,0.001036,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.207237,0.001036,-0.001250,0.249997,0,0);}
.mb_c01110{transform:matrix(0.207615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207615,0.000000,0.000000,0.250000,0,0);}
.m41_c01110{transform:matrix(0.207961,0.001248,-0.001500,0.249996,0,0);-ms-transform:matrix(0.207961,0.001248,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.207961,0.001248,-0.001500,0.249996,0,0);}
.me3_c01110{transform:matrix(0.208052,0.002289,-0.002750,0.249985,0,0);-ms-transform:matrix(0.208052,0.002289,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.208052,0.002289,-0.002750,0.249985,0,0);}
.m66_c01110{transform:matrix(0.208332,0.001042,-0.001250,0.249997,0,0);-ms-transform:matrix(0.208332,0.001042,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.208332,0.001042,-0.001250,0.249997,0,0);}
.m69_c01110{transform:matrix(0.209397,0.001047,-0.001250,0.249997,0,0);-ms-transform:matrix(0.209397,0.001047,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.209397,0.001047,-0.001250,0.249997,0,0);}
.m6f_c01110{transform:matrix(0.209492,0.001047,-0.001250,0.249997,0,0);-ms-transform:matrix(0.209492,0.001047,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.209492,0.001047,-0.001250,0.249997,0,0);}
.m35_c01110{transform:matrix(0.209501,0.001257,-0.001500,0.249996,0,0);-ms-transform:matrix(0.209501,0.001257,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.209501,0.001257,-0.001500,0.249996,0,0);}
.m5c_c01110{transform:matrix(0.209547,0.001048,-0.001250,0.249997,0,0);-ms-transform:matrix(0.209547,0.001048,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.209547,0.001048,-0.001250,0.249997,0,0);}
.mce_c01110{transform:matrix(0.209626,0.001258,-0.001500,0.249996,0,0);-ms-transform:matrix(0.209626,0.001258,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.209626,0.001258,-0.001500,0.249996,0,0);}
.m118_c01110{transform:matrix(0.209905,0.003568,-0.004249,0.249964,0,0);-ms-transform:matrix(0.209905,0.003568,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.209905,0.003568,-0.004249,0.249964,0,0);}
.m8_c01110{transform:matrix(0.210525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210525,0.000000,0.000000,0.250000,0,0);}
.m2d_c01110{transform:matrix(0.210616,0.001264,-0.001500,0.249996,0,0);-ms-transform:matrix(0.210616,0.001264,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.210616,0.001264,-0.001500,0.249996,0,0);}
.m52_c01110{transform:matrix(0.210702,0.001054,-0.001250,0.249997,0,0);-ms-transform:matrix(0.210702,0.001054,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.210702,0.001054,-0.001250,0.249997,0,0);}
.m39_c01110{transform:matrix(0.211331,0.001268,-0.001500,0.249996,0,0);-ms-transform:matrix(0.211331,0.001268,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.211331,0.001268,-0.001500,0.249996,0,0);}
.mbd_c01110{transform:matrix(0.211477,0.002326,-0.002750,0.249985,0,0);-ms-transform:matrix(0.211477,0.002326,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.211477,0.002326,-0.002750,0.249985,0,0);}
.m10b_c01110{transform:matrix(0.212099,0.003606,-0.004249,0.249964,0,0);-ms-transform:matrix(0.212099,0.003606,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.212099,0.003606,-0.004249,0.249964,0,0);}
.m142_c01110{transform:matrix(0.212923,0.005536,-0.006498,0.249916,0,0);-ms-transform:matrix(0.212923,0.005536,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.212923,0.005536,-0.006498,0.249916,0,0);}
.m4a_c01110{transform:matrix(0.213070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213070,0.000000,0.000000,0.250000,0,0);}
.mf_c01110{transform:matrix(0.213180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213180,0.000000,0.000000,0.250000,0,0);}
.m2f_c01110{transform:matrix(0.214571,0.001287,-0.001500,0.249996,0,0);-ms-transform:matrix(0.214571,0.001287,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.214571,0.001287,-0.001500,0.249996,0,0);}
.m9_c01110{transform:matrix(0.214645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214645,0.000000,0.000000,0.250000,0,0);}
.m37_c01110{transform:matrix(0.215056,0.001290,-0.001500,0.249996,0,0);-ms-transform:matrix(0.215056,0.001290,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.215056,0.001290,-0.001500,0.249996,0,0);}
.m5e_c01110{transform:matrix(0.215222,0.001076,-0.001250,0.249997,0,0);-ms-transform:matrix(0.215222,0.001076,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.215222,0.001076,-0.001250,0.249997,0,0);}
.mcb_c01110{transform:matrix(0.215666,0.001294,-0.001500,0.249996,0,0);-ms-transform:matrix(0.215666,0.001294,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.215666,0.001294,-0.001500,0.249996,0,0);}
.mdb_c01110{transform:matrix(0.216007,0.002376,-0.002750,0.249985,0,0);-ms-transform:matrix(0.216007,0.002376,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.216007,0.002376,-0.002750,0.249985,0,0);}
.me5_c01110{transform:matrix(0.216322,0.002380,-0.002750,0.249985,0,0);-ms-transform:matrix(0.216322,0.002380,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.216322,0.002380,-0.002750,0.249985,0,0);}
.mb9_c01110{transform:matrix(0.216372,0.002380,-0.002750,0.249985,0,0);-ms-transform:matrix(0.216372,0.002380,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.216372,0.002380,-0.002750,0.249985,0,0);}
.mb3_c01110{transform:matrix(0.217072,0.002388,-0.002750,0.249985,0,0);-ms-transform:matrix(0.217072,0.002388,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.217072,0.002388,-0.002750,0.249985,0,0);}
.m13d_c01110{transform:matrix(0.217546,0.005656,-0.006498,0.249916,0,0);-ms-transform:matrix(0.217546,0.005656,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.217546,0.005656,-0.006498,0.249916,0,0);}
.mde_c01110{transform:matrix(0.217607,0.002394,-0.002750,0.249985,0,0);-ms-transform:matrix(0.217607,0.002394,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.217607,0.002394,-0.002750,0.249985,0,0);}
.m56_c01110{transform:matrix(0.217622,0.001088,-0.001250,0.249997,0,0);-ms-transform:matrix(0.217622,0.001088,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.217622,0.001088,-0.001250,0.249997,0,0);}
.ma4_c01110{transform:matrix(0.218002,0.002398,-0.002750,0.249985,0,0);-ms-transform:matrix(0.218002,0.002398,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.218002,0.002398,-0.002750,0.249985,0,0);}
.m13f_c01110{transform:matrix(0.218181,0.005673,-0.006498,0.249916,0,0);-ms-transform:matrix(0.218181,0.005673,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.218181,0.005673,-0.006498,0.249916,0,0);}
.m34_c01110{transform:matrix(0.218436,0.001311,-0.001500,0.249996,0,0);-ms-transform:matrix(0.218436,0.001311,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.218436,0.001311,-0.001500,0.249996,0,0);}
.m18_c01110{transform:matrix(0.219160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219160,0.000000,0.000000,0.250000,0,0);}
.ma_c01110{transform:matrix(0.219625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219625,0.000000,0.000000,0.250000,0,0);}
.m45_c01110{transform:matrix(0.220160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220160,0.000000,0.000000,0.250000,0,0);}
.m17_c01110{transform:matrix(0.220230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220230,0.000000,0.000000,0.250000,0,0);}
.md5_c01110{transform:matrix(0.220337,0.003525,-0.003999,0.249968,0,0);-ms-transform:matrix(0.220337,0.003525,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.220337,0.003525,-0.003999,0.249968,0,0);}
.m116_c01110{transform:matrix(0.220858,0.003755,-0.004249,0.249964,0,0);-ms-transform:matrix(0.220858,0.003755,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.220858,0.003755,-0.004249,0.249964,0,0);}
.m63_c01110{transform:matrix(0.221052,0.001105,-0.001250,0.249997,0,0);-ms-transform:matrix(0.221052,0.001105,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.221052,0.001105,-0.001250,0.249997,0,0);}
.m33_c01110{transform:matrix(0.221156,0.001327,-0.001500,0.249996,0,0);-ms-transform:matrix(0.221156,0.001327,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.221156,0.001327,-0.001500,0.249996,0,0);}
.m4f_c01110{transform:matrix(0.221270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221270,0.000000,0.000000,0.250000,0,0);}
.mda_c01110{transform:matrix(0.221632,0.002438,-0.002750,0.249985,0,0);-ms-transform:matrix(0.221632,0.002438,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.221632,0.002438,-0.002750,0.249985,0,0);}
.m92_c01110{transform:matrix(0.222237,0.002445,-0.002750,0.249985,0,0);-ms-transform:matrix(0.222237,0.002445,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.222237,0.002445,-0.002750,0.249985,0,0);}
.m7f_c01110{transform:matrix(0.222487,0.002447,-0.002750,0.249985,0,0);-ms-transform:matrix(0.222487,0.002447,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.222487,0.002447,-0.002750,0.249985,0,0);}
.md0_c01110{transform:matrix(0.222716,0.001336,-0.001500,0.249996,0,0);-ms-transform:matrix(0.222716,0.001336,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.222716,0.001336,-0.001500,0.249996,0,0);}
.m95_c01110{transform:matrix(0.222742,0.002450,-0.002750,0.249985,0,0);-ms-transform:matrix(0.222742,0.002450,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.222742,0.002450,-0.002750,0.249985,0,0);}
.m54_c01110{transform:matrix(0.222842,0.001114,-0.001250,0.249997,0,0);-ms-transform:matrix(0.222842,0.001114,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.222842,0.001114,-0.001250,0.249997,0,0);}
.md_c01110{transform:matrix(0.223425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223425,0.000000,0.000000,0.250000,0,0);}
.mb5_c01110{transform:matrix(0.223786,0.002462,-0.002750,0.249985,0,0);-ms-transform:matrix(0.223786,0.002462,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.223786,0.002462,-0.002750,0.249985,0,0);}
.m24_c01110{transform:matrix(0.224205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224205,0.000000,0.000000,0.250000,0,0);}
.m65_c01110{transform:matrix(0.225092,0.001125,-0.001250,0.249997,0,0);-ms-transform:matrix(0.225092,0.001125,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.225092,0.001125,-0.001250,0.249997,0,0);}
.m13b_c01110{transform:matrix(0.225404,0.005860,-0.006498,0.249916,0,0);-ms-transform:matrix(0.225404,0.005860,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.225404,0.005860,-0.006498,0.249916,0,0);}
.m100_c01110{transform:matrix(0.225812,0.003839,-0.004249,0.249964,0,0);-ms-transform:matrix(0.225812,0.003839,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.225812,0.003839,-0.004249,0.249964,0,0);}
.mc_c01110{transform:matrix(0.226720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226720,0.000000,0.000000,0.250000,0,0);}
.m105_c01110{transform:matrix(0.226972,0.003859,-0.004249,0.249964,0,0);-ms-transform:matrix(0.226972,0.003859,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.226972,0.003859,-0.004249,0.249964,0,0);}
.me9_c01110{transform:matrix(0.227246,0.002500,-0.002750,0.249985,0,0);-ms-transform:matrix(0.227246,0.002500,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.227246,0.002500,-0.002750,0.249985,0,0);}
.m4b_c01110{transform:matrix(0.227415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227415,0.000000,0.000000,0.250000,0,0);}
.m49_c01110{transform:matrix(0.227830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227830,0.000000,0.000000,0.250000,0,0);}
.m44_c01110{transform:matrix(0.228101,0.001369,-0.001500,0.249996,0,0);-ms-transform:matrix(0.228101,0.001369,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.228101,0.001369,-0.001500,0.249996,0,0);}
.ma9_c01110{transform:matrix(0.228146,0.002510,-0.002750,0.249985,0,0);-ms-transform:matrix(0.228146,0.002510,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.228146,0.002510,-0.002750,0.249985,0,0);}
.m43_c01110{transform:matrix(0.228156,0.001369,-0.001500,0.249996,0,0);-ms-transform:matrix(0.228156,0.001369,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.228156,0.001369,-0.001500,0.249996,0,0);}
.m23_c01110{transform:matrix(0.228335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228335,0.000000,0.000000,0.250000,0,0);}
.m10c_c01110{transform:matrix(0.228842,0.003890,-0.004249,0.249964,0,0);-ms-transform:matrix(0.228842,0.003890,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.228842,0.003890,-0.004249,0.249964,0,0);}
.m83_c01110{transform:matrix(0.229181,0.002521,-0.002750,0.249985,0,0);-ms-transform:matrix(0.229181,0.002521,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.229181,0.002521,-0.002750,0.249985,0,0);}
.md7_c01110{transform:matrix(0.229206,0.002521,-0.002750,0.249985,0,0);-ms-transform:matrix(0.229206,0.002521,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.229206,0.002521,-0.002750,0.249985,0,0);}
.md2_c01110{transform:matrix(0.229521,0.001377,-0.001500,0.249996,0,0);-ms-transform:matrix(0.229521,0.001377,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.229521,0.001377,-0.001500,0.249996,0,0);}
.me0_c01110{transform:matrix(0.229576,0.002525,-0.002750,0.249985,0,0);-ms-transform:matrix(0.229576,0.002525,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.229576,0.002525,-0.002750,0.249985,0,0);}
.ma0_c01110{transform:matrix(0.229816,0.002528,-0.002750,0.249985,0,0);-ms-transform:matrix(0.229816,0.002528,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.229816,0.002528,-0.002750,0.249985,0,0);}
.m62_c01110{transform:matrix(0.230352,0.001152,-0.001250,0.249997,0,0);-ms-transform:matrix(0.230352,0.001152,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.230352,0.001152,-0.001250,0.249997,0,0);}
.m58_c01110{transform:matrix(0.230457,0.001152,-0.001250,0.249997,0,0);-ms-transform:matrix(0.230457,0.001152,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.230457,0.001152,-0.001250,0.249997,0,0);}
.md8_c01110{transform:matrix(0.230561,0.002536,-0.002750,0.249985,0,0);-ms-transform:matrix(0.230561,0.002536,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.230561,0.002536,-0.002750,0.249985,0,0);}
.mdc_c01110{transform:matrix(0.230751,0.002538,-0.002750,0.249985,0,0);-ms-transform:matrix(0.230751,0.002538,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.230751,0.002538,-0.002750,0.249985,0,0);}
.mdf_c01110{transform:matrix(0.230756,0.002538,-0.002750,0.249985,0,0);-ms-transform:matrix(0.230756,0.002538,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.230756,0.002538,-0.002750,0.249985,0,0);}
.m89_c01110{transform:matrix(0.230881,0.002540,-0.002750,0.249985,0,0);-ms-transform:matrix(0.230881,0.002540,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.230881,0.002540,-0.002750,0.249985,0,0);}
.me1_c01110{transform:matrix(0.231181,0.002543,-0.002750,0.249985,0,0);-ms-transform:matrix(0.231181,0.002543,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.231181,0.002543,-0.002750,0.249985,0,0);}
.mf4_c01110{transform:matrix(0.231611,0.002548,-0.002750,0.249985,0,0);-ms-transform:matrix(0.231611,0.002548,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.231611,0.002548,-0.002750,0.249985,0,0);}
.m12f_c01110{transform:matrix(0.231613,0.002316,-0.002500,0.249988,0,0);-ms-transform:matrix(0.231613,0.002316,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.231613,0.002316,-0.002500,0.249988,0,0);}
.m2b_c01110{transform:matrix(0.231621,0.001390,-0.001500,0.249996,0,0);-ms-transform:matrix(0.231621,0.001390,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.231621,0.001390,-0.001500,0.249996,0,0);}
.mc0_c01110{transform:matrix(0.231623,0.002779,-0.003000,0.249982,0,0);-ms-transform:matrix(0.231623,0.002779,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.231623,0.002779,-0.003000,0.249982,0,0);}
.m22_c01110{transform:matrix(0.231695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231695,0.000000,0.000000,0.250000,0,0);}
.m12d_c01110{transform:matrix(0.231748,0.002317,-0.002500,0.249988,0,0);-ms-transform:matrix(0.231748,0.002317,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.231748,0.002317,-0.002500,0.249988,0,0);}
.m1e_c01110{transform:matrix(0.232060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232060,0.000000,0.000000,0.250000,0,0);}
.m4d_c01110{transform:matrix(0.232240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232240,0.000000,0.000000,0.250000,0,0);}
.m6a_c01110{transform:matrix(0.232462,0.001162,-0.001250,0.249997,0,0);-ms-transform:matrix(0.232462,0.001162,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.232462,0.001162,-0.001250,0.249997,0,0);}
.m117_c01110{transform:matrix(0.232771,0.003957,-0.004249,0.249964,0,0);-ms-transform:matrix(0.232771,0.003957,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.232771,0.003957,-0.004249,0.249964,0,0);}
.m141_c01110{transform:matrix(0.232966,0.006057,-0.006498,0.249916,0,0);-ms-transform:matrix(0.232966,0.006057,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.232966,0.006057,-0.006498,0.249916,0,0);}
.mf1_c01110{transform:matrix(0.232971,0.002563,-0.002750,0.249985,0,0);-ms-transform:matrix(0.232971,0.002563,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.232971,0.002563,-0.002750,0.249985,0,0);}
.mcf_c01110{transform:matrix(0.233016,0.001398,-0.001500,0.249996,0,0);-ms-transform:matrix(0.233016,0.001398,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.233016,0.001398,-0.001500,0.249996,0,0);}
.m84_c01110{transform:matrix(0.233391,0.002567,-0.002750,0.249985,0,0);-ms-transform:matrix(0.233391,0.002567,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.233391,0.002567,-0.002750,0.249985,0,0);}
.mfe_c01110{transform:matrix(0.233646,0.003972,-0.004249,0.249964,0,0);-ms-transform:matrix(0.233646,0.003972,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.233646,0.003972,-0.004249,0.249964,0,0);}
.m60_c01110{transform:matrix(0.234097,0.001170,-0.001250,0.249997,0,0);-ms-transform:matrix(0.234097,0.001170,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.234097,0.001170,-0.001250,0.249997,0,0);}
.m3d_c01110{transform:matrix(0.234356,0.001406,-0.001500,0.249996,0,0);-ms-transform:matrix(0.234356,0.001406,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.234356,0.001406,-0.001500,0.249996,0,0);}
.mfa_c01110{transform:matrix(0.234901,0.003993,-0.004249,0.249964,0,0);-ms-transform:matrix(0.234901,0.003993,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.234901,0.003993,-0.004249,0.249964,0,0);}
.m75_c01110{transform:matrix(0.235066,0.002586,-0.002750,0.249985,0,0);-ms-transform:matrix(0.235066,0.002586,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.235066,0.002586,-0.002750,0.249985,0,0);}
.ma1_c01110{transform:matrix(0.235381,0.002589,-0.002750,0.249985,0,0);-ms-transform:matrix(0.235381,0.002589,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.235381,0.002589,-0.002750,0.249985,0,0);}
.mc6_c01110{transform:matrix(0.236428,0.002837,-0.003000,0.249982,0,0);-ms-transform:matrix(0.236428,0.002837,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.236428,0.002837,-0.003000,0.249982,0,0);}
.m5d_c01110{transform:matrix(0.236597,0.001183,-0.001250,0.249997,0,0);-ms-transform:matrix(0.236597,0.001183,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.236597,0.001183,-0.001250,0.249997,0,0);}
.m40_c01110{transform:matrix(0.236641,0.001420,-0.001500,0.249996,0,0);-ms-transform:matrix(0.236641,0.001420,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.236641,0.001420,-0.001500,0.249996,0,0);}
.m140_c01110{transform:matrix(0.236805,0.006157,-0.006498,0.249916,0,0);-ms-transform:matrix(0.236805,0.006157,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.236805,0.006157,-0.006498,0.249916,0,0);}
.ma7_c01110{transform:matrix(0.237171,0.002609,-0.002750,0.249985,0,0);-ms-transform:matrix(0.237171,0.002609,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.237171,0.002609,-0.002750,0.249985,0,0);}
.m1c_c01110{transform:matrix(0.237260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237260,0.000000,0.000000,0.250000,0,0);}
.med_c01110{transform:matrix(0.237316,0.002610,-0.002750,0.249985,0,0);-ms-transform:matrix(0.237316,0.002610,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.237316,0.002610,-0.002750,0.249985,0,0);}
.m47_c01110{transform:matrix(0.237560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237560,0.000000,0.000000,0.250000,0,0);}
.m13_c01110{transform:matrix(0.237595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237595,0.000000,0.000000,0.250000,0,0);}
.m81_c01110{transform:matrix(0.237961,0.002618,-0.002750,0.249985,0,0);-ms-transform:matrix(0.237961,0.002618,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.237961,0.002618,-0.002750,0.249985,0,0);}
.ma8_c01110{transform:matrix(0.238371,0.002622,-0.002750,0.249985,0,0);-ms-transform:matrix(0.238371,0.002622,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.238371,0.002622,-0.002750,0.249985,0,0);}
.m32_c01110{transform:matrix(0.238381,0.001430,-0.001500,0.249996,0,0);-ms-transform:matrix(0.238381,0.001430,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.238381,0.001430,-0.001500,0.249996,0,0);}
.mf5_c01110{transform:matrix(0.238521,0.002624,-0.002750,0.249985,0,0);-ms-transform:matrix(0.238521,0.002624,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.238521,0.002624,-0.002750,0.249985,0,0);}
.m133_c01110{transform:matrix(0.238583,0.002386,-0.002500,0.249988,0,0);-ms-transform:matrix(0.238583,0.002386,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.238583,0.002386,-0.002500,0.249988,0,0);}
.m13c_c01110{transform:matrix(0.238919,0.006212,-0.006498,0.249916,0,0);-ms-transform:matrix(0.238919,0.006212,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.238919,0.006212,-0.006498,0.249916,0,0);}
.m137_c01110{transform:matrix(0.238998,0.002390,-0.002500,0.249988,0,0);-ms-transform:matrix(0.238998,0.002390,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.238998,0.002390,-0.002500,0.249988,0,0);}
.m9d_c01110{transform:matrix(0.239281,0.002632,-0.002750,0.249985,0,0);-ms-transform:matrix(0.239281,0.002632,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.239281,0.002632,-0.002750,0.249985,0,0);}
.m12c_c01110{transform:matrix(0.239283,0.002393,-0.002500,0.249988,0,0);-ms-transform:matrix(0.239283,0.002393,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.239283,0.002393,-0.002500,0.249988,0,0);}
.me6_c01110{transform:matrix(0.239526,0.002635,-0.002750,0.249985,0,0);-ms-transform:matrix(0.239526,0.002635,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.239526,0.002635,-0.002750,0.249985,0,0);}
.md9_c01110{transform:matrix(0.239875,0.002639,-0.002750,0.249985,0,0);-ms-transform:matrix(0.239875,0.002639,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.239875,0.002639,-0.002750,0.249985,0,0);}
.m87_c01110{transform:matrix(0.239895,0.002639,-0.002750,0.249985,0,0);-ms-transform:matrix(0.239895,0.002639,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.239895,0.002639,-0.002750,0.249985,0,0);}
.m30_c01110{transform:matrix(0.240041,0.001440,-0.001500,0.249996,0,0);-ms-transform:matrix(0.240041,0.001440,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.240041,0.001440,-0.001500,0.249996,0,0);}
.m119_c01110{transform:matrix(0.240355,0.004086,-0.004249,0.249964,0,0);-ms-transform:matrix(0.240355,0.004086,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.240355,0.004086,-0.004249,0.249964,0,0);}
.m85_c01110{transform:matrix(0.240480,0.002645,-0.002750,0.249985,0,0);-ms-transform:matrix(0.240480,0.002645,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.240480,0.002645,-0.002750,0.249985,0,0);}
.mef_c01110{transform:matrix(0.240635,0.002647,-0.002750,0.249985,0,0);-ms-transform:matrix(0.240635,0.002647,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.240635,0.002647,-0.002750,0.249985,0,0);}
.m7b_c01110{transform:matrix(0.240745,0.002648,-0.002750,0.249985,0,0);-ms-transform:matrix(0.240745,0.002648,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.240745,0.002648,-0.002750,0.249985,0,0);}
.mc8_c01110{transform:matrix(0.240868,0.002890,-0.003000,0.249982,0,0);-ms-transform:matrix(0.240868,0.002890,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.240868,0.002890,-0.003000,0.249982,0,0);}
.m73_c01110{transform:matrix(0.242005,0.002662,-0.002750,0.249985,0,0);-ms-transform:matrix(0.242005,0.002662,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.242005,0.002662,-0.002750,0.249985,0,0);}
.m2e_c01110{transform:matrix(0.242176,0.001453,-0.001500,0.249996,0,0);-ms-transform:matrix(0.242176,0.001453,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.242176,0.001453,-0.001500,0.249996,0,0);}
.m5b_c01110{transform:matrix(0.242402,0.001212,-0.001250,0.249997,0,0);-ms-transform:matrix(0.242402,0.001212,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.242402,0.001212,-0.001250,0.249997,0,0);}
.mfc_c01110{transform:matrix(0.242710,0.004126,-0.004249,0.249964,0,0);-ms-transform:matrix(0.242710,0.004126,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.242710,0.004126,-0.004249,0.249964,0,0);}
.m6b_c01110{transform:matrix(0.242997,0.001215,-0.001250,0.249997,0,0);-ms-transform:matrix(0.242997,0.001215,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.242997,0.001215,-0.001250,0.249997,0,0);}
.m10_c01110{transform:matrix(0.243210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243210,0.000000,0.000000,0.250000,0,0);}
.m68_c01110{transform:matrix(0.243262,0.001216,-0.001250,0.249997,0,0);-ms-transform:matrix(0.243262,0.001216,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.243262,0.001216,-0.001250,0.249997,0,0);}
.m6c_c01110{transform:matrix(0.243952,0.001220,-0.001250,0.249997,0,0);-ms-transform:matrix(0.243952,0.001220,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.243952,0.001220,-0.001250,0.249997,0,0);}
.m138_c01110{transform:matrix(0.244023,0.002440,-0.002500,0.249988,0,0);-ms-transform:matrix(0.244023,0.002440,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.244023,0.002440,-0.002500,0.249988,0,0);}
.md1_c01110{transform:matrix(0.244251,0.001466,-0.001500,0.249996,0,0);-ms-transform:matrix(0.244251,0.001466,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.244251,0.001466,-0.001500,0.249996,0,0);}
.m131_c01110{transform:matrix(0.244283,0.002443,-0.002500,0.249988,0,0);-ms-transform:matrix(0.244283,0.002443,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.244283,0.002443,-0.002500,0.249988,0,0);}
.m136_c01110{transform:matrix(0.244888,0.002449,-0.002500,0.249988,0,0);-ms-transform:matrix(0.244888,0.002449,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.244888,0.002449,-0.002500,0.249988,0,0);}
.m9f_c01110{transform:matrix(0.245010,0.002695,-0.002750,0.249985,0,0);-ms-transform:matrix(0.245010,0.002695,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.245010,0.002695,-0.002750,0.249985,0,0);}
.m3b_c01110{transform:matrix(0.245231,0.001471,-0.001500,0.249996,0,0);-ms-transform:matrix(0.245231,0.001471,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.245231,0.001471,-0.001500,0.249996,0,0);}
.m36_c01110{transform:matrix(0.245351,0.001472,-0.001500,0.249996,0,0);-ms-transform:matrix(0.245351,0.001472,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.245351,0.001472,-0.001500,0.249996,0,0);}
.m10f_c01110{transform:matrix(0.245425,0.004172,-0.004249,0.249964,0,0);-ms-transform:matrix(0.245425,0.004172,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.245425,0.004172,-0.004249,0.249964,0,0);}
.m31_c01110{transform:matrix(0.245711,0.001474,-0.001500,0.249996,0,0);-ms-transform:matrix(0.245711,0.001474,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.245711,0.001474,-0.001500,0.249996,0,0);}
.maf_c01110{transform:matrix(0.245955,0.002706,-0.002750,0.249985,0,0);-ms-transform:matrix(0.245955,0.002706,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.245955,0.002706,-0.002750,0.249985,0,0);}
.m12_c01110{transform:matrix(0.245970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245970,0.000000,0.000000,0.250000,0,0);}
.m112_c01110{transform:matrix(0.246159,0.004185,-0.004249,0.249964,0,0);-ms-transform:matrix(0.246159,0.004185,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.246159,0.004185,-0.004249,0.249964,0,0);}
.m11e_c01110{transform:matrix(0.246589,0.004192,-0.004249,0.249964,0,0);-ms-transform:matrix(0.246589,0.004192,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.246589,0.004192,-0.004249,0.249964,0,0);}
.m8d_c01110{transform:matrix(0.246875,0.002716,-0.002750,0.249985,0,0);-ms-transform:matrix(0.246875,0.002716,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.246875,0.002716,-0.002750,0.249985,0,0);}
.ma6_c01110{transform:matrix(0.247285,0.002720,-0.002750,0.249985,0,0);-ms-transform:matrix(0.247285,0.002720,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.247285,0.002720,-0.002750,0.249985,0,0);}
.m1d_c01110{transform:matrix(0.247520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247520,0.000000,0.000000,0.250000,0,0);}
.m8f_c01110{transform:matrix(0.247600,0.002724,-0.002750,0.249985,0,0);-ms-transform:matrix(0.247600,0.002724,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.247600,0.002724,-0.002750,0.249985,0,0);}
.m21_c01110{transform:matrix(0.247670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247670,0.000000,0.000000,0.250000,0,0);}
.m15_c01110{transform:matrix(0.248555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248555,0.000000,0.000000,0.250000,0,0);}
.m113_c01110{transform:matrix(0.248994,0.004233,-0.004249,0.249964,0,0);-ms-transform:matrix(0.248994,0.004233,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.248994,0.004233,-0.004249,0.249964,0,0);}
.m99_c01110{transform:matrix(0.249000,0.002739,-0.002750,0.249985,0,0);-ms-transform:matrix(0.249000,0.002739,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.249000,0.002739,-0.002750,0.249985,0,0);}
.mca_c01110{transform:matrix(0.249012,0.002988,-0.003000,0.249982,0,0);-ms-transform:matrix(0.249012,0.002988,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.249012,0.002988,-0.003000,0.249982,0,0);}
.m1f_c01110{transform:matrix(0.249480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249480,0.000000,0.000000,0.250000,0,0);}
.m2c_c01110{transform:matrix(0.249591,0.001498,-0.001500,0.249996,0,0);-ms-transform:matrix(0.249591,0.001498,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.249591,0.001498,-0.001500,0.249996,0,0);}
.md3_c01110{transform:matrix(0.250350,0.001502,-0.001500,0.249996,0,0);-ms-transform:matrix(0.250350,0.001502,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.250350,0.001502,-0.001500,0.249996,0,0);}
.m111_c01110{transform:matrix(0.250624,0.004261,-0.004249,0.249964,0,0);-ms-transform:matrix(0.250624,0.004261,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.250624,0.004261,-0.004249,0.249964,0,0);}
.m59_c01110{transform:matrix(0.251872,0.001259,-0.001250,0.249997,0,0);-ms-transform:matrix(0.251872,0.001259,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.251872,0.001259,-0.001250,0.249997,0,0);}
.m11_c01110{transform:matrix(0.252115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252115,0.000000,0.000000,0.250000,0,0);}
.me2_c01110{transform:matrix(0.252215,0.002774,-0.002750,0.249985,0,0);-ms-transform:matrix(0.252215,0.002774,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.252215,0.002774,-0.002750,0.249985,0,0);}
.m139_c01110{transform:matrix(0.252347,0.002523,-0.002500,0.249988,0,0);-ms-transform:matrix(0.252347,0.002523,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.252347,0.002523,-0.002500,0.249988,0,0);}
.m1a_c01110{transform:matrix(0.252430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252430,0.000000,0.000000,0.250000,0,0);}
.mec_c01110{transform:matrix(0.252490,0.002777,-0.002750,0.249985,0,0);-ms-transform:matrix(0.252490,0.002777,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.252490,0.002777,-0.002750,0.249985,0,0);}
.m5a_c01110{transform:matrix(0.252597,0.001263,-0.001250,0.249997,0,0);-ms-transform:matrix(0.252597,0.001263,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.252597,0.001263,-0.001250,0.249997,0,0);}
.md6_c01110{transform:matrix(0.252758,0.004044,-0.003999,0.249968,0,0);-ms-transform:matrix(0.252758,0.004044,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.252758,0.004044,-0.003999,0.249968,0,0);}
.m25_c01110{transform:matrix(0.253025,0.001518,-0.001500,0.249996,0,0);-ms-transform:matrix(0.253025,0.001518,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.253025,0.001518,-0.001500,0.249996,0,0);}
.m78_c01110{transform:matrix(0.253115,0.002784,-0.002750,0.249985,0,0);-ms-transform:matrix(0.253115,0.002784,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.253115,0.002784,-0.002750,0.249985,0,0);}
.me7_c01110{transform:matrix(0.253285,0.002786,-0.002750,0.249985,0,0);-ms-transform:matrix(0.253285,0.002786,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.253285,0.002786,-0.002750,0.249985,0,0);}
.m91_c01110{transform:matrix(0.253385,0.002787,-0.002750,0.249985,0,0);-ms-transform:matrix(0.253385,0.002787,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.253385,0.002787,-0.002750,0.249985,0,0);}
.m11d_c01110{transform:matrix(0.253398,0.004308,-0.004249,0.249964,0,0);-ms-transform:matrix(0.253398,0.004308,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.253398,0.004308,-0.004249,0.249964,0,0);}
.ma3_c01110{transform:matrix(0.253860,0.002792,-0.002750,0.249985,0,0);-ms-transform:matrix(0.253860,0.002792,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.253860,0.002792,-0.002750,0.249985,0,0);}
.me8_c01110{transform:matrix(0.253955,0.002794,-0.002750,0.249985,0,0);-ms-transform:matrix(0.253955,0.002794,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.253955,0.002794,-0.002750,0.249985,0,0);}
.m132_c01110{transform:matrix(0.254157,0.002542,-0.002500,0.249988,0,0);-ms-transform:matrix(0.254157,0.002542,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.254157,0.002542,-0.002500,0.249988,0,0);}
.mfd_c01110{transform:matrix(0.254333,0.004324,-0.004249,0.249964,0,0);-ms-transform:matrix(0.254333,0.004324,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.254333,0.004324,-0.004249,0.249964,0,0);}
.m13a_c01110{transform:matrix(0.254774,0.006624,-0.006498,0.249916,0,0);-ms-transform:matrix(0.254774,0.006624,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.254774,0.006624,-0.006498,0.249916,0,0);}
.m42_c01110{transform:matrix(0.255265,0.001532,-0.001500,0.249996,0,0);-ms-transform:matrix(0.255265,0.001532,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.255265,0.001532,-0.001500,0.249996,0,0);}
.meb_c01110{transform:matrix(0.255590,0.002811,-0.002750,0.249985,0,0);-ms-transform:matrix(0.255590,0.002811,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.255590,0.002811,-0.002750,0.249985,0,0);}
.m3e_c01110{transform:matrix(0.255660,0.001534,-0.001500,0.249996,0,0);-ms-transform:matrix(0.255660,0.001534,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.255660,0.001534,-0.001500,0.249996,0,0);}
.m130_c01110{transform:matrix(0.255762,0.002558,-0.002500,0.249988,0,0);-ms-transform:matrix(0.255762,0.002558,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.255762,0.002558,-0.002500,0.249988,0,0);}
.m55_c01110{transform:matrix(0.256427,0.001282,-0.001250,0.249997,0,0);-ms-transform:matrix(0.256427,0.001282,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.256427,0.001282,-0.001250,0.249997,0,0);}
.mac_c01110{transform:matrix(0.256529,0.002822,-0.002750,0.249985,0,0);-ms-transform:matrix(0.256529,0.002822,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.256529,0.002822,-0.002750,0.249985,0,0);}
.m57_c01110{transform:matrix(0.257527,0.001288,-0.001250,0.249997,0,0);-ms-transform:matrix(0.257527,0.001288,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.257527,0.001288,-0.001250,0.249997,0,0);}
.m82_c01110{transform:matrix(0.257554,0.002833,-0.002750,0.249985,0,0);-ms-transform:matrix(0.257554,0.002833,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.257554,0.002833,-0.002750,0.249985,0,0);}
.m13e_c01110{transform:matrix(0.258058,0.006710,-0.006498,0.249916,0,0);-ms-transform:matrix(0.258058,0.006710,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.258058,0.006710,-0.006498,0.249916,0,0);}
.m7d_c01110{transform:matrix(0.258059,0.002839,-0.002750,0.249985,0,0);-ms-transform:matrix(0.258059,0.002839,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.258059,0.002839,-0.002750,0.249985,0,0);}
.m12a_c01110{transform:matrix(0.258822,0.002588,-0.002500,0.249988,0,0);-ms-transform:matrix(0.258822,0.002588,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.258822,0.002588,-0.002500,0.249988,0,0);}
.mc1_c01110{transform:matrix(0.258931,0.003107,-0.003000,0.249982,0,0);-ms-transform:matrix(0.258931,0.003107,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.258931,0.003107,-0.003000,0.249982,0,0);}
.m9c_c01110{transform:matrix(0.258974,0.002849,-0.002750,0.249985,0,0);-ms-transform:matrix(0.258974,0.002849,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.258974,0.002849,-0.002750,0.249985,0,0);}
.mc5_c01110{transform:matrix(0.259036,0.003108,-0.003000,0.249982,0,0);-ms-transform:matrix(0.259036,0.003108,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.259036,0.003108,-0.003000,0.249982,0,0);}
.m10e_c01110{transform:matrix(0.259463,0.004411,-0.004249,0.249964,0,0);-ms-transform:matrix(0.259463,0.004411,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.259463,0.004411,-0.004249,0.249964,0,0);}
.m7c_c01110{transform:matrix(0.259584,0.002855,-0.002750,0.249985,0,0);-ms-transform:matrix(0.259584,0.002855,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.259584,0.002855,-0.002750,0.249985,0,0);}
.mdd_c01110{transform:matrix(0.259639,0.002856,-0.002750,0.249985,0,0);-ms-transform:matrix(0.259639,0.002856,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.259639,0.002856,-0.002750,0.249985,0,0);}
.mea_c01110{transform:matrix(0.260104,0.002861,-0.002750,0.249985,0,0);-ms-transform:matrix(0.260104,0.002861,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.260104,0.002861,-0.002750,0.249985,0,0);}
.m26_c01110{transform:matrix(0.260535,0.001563,-0.001500,0.249996,0,0);-ms-transform:matrix(0.260535,0.001563,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.260535,0.001563,-0.001500,0.249996,0,0);}
.m80_c01110{transform:matrix(0.261929,0.002881,-0.002750,0.249985,0,0);-ms-transform:matrix(0.261929,0.002881,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.261929,0.002881,-0.002750,0.249985,0,0);}
.m71_c01110{transform:matrix(0.261942,0.001310,-0.001250,0.249997,0,0);-ms-transform:matrix(0.261942,0.001310,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.261942,0.001310,-0.001250,0.249997,0,0);}
.mf0_c01110{transform:matrix(0.262009,0.002882,-0.002750,0.249985,0,0);-ms-transform:matrix(0.262009,0.002882,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.262009,0.002882,-0.002750,0.249985,0,0);}
.m11a_c01110{transform:matrix(0.262192,0.004457,-0.004249,0.249964,0,0);-ms-transform:matrix(0.262192,0.004457,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.262192,0.004457,-0.004249,0.249964,0,0);}
.m93_c01110{transform:matrix(0.262709,0.002890,-0.002750,0.249985,0,0);-ms-transform:matrix(0.262709,0.002890,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.262709,0.002890,-0.002750,0.249985,0,0);}
.m102_c01110{transform:matrix(0.262842,0.004468,-0.004249,0.249964,0,0);-ms-transform:matrix(0.262842,0.004468,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.262842,0.004468,-0.004249,0.249964,0,0);}
.m11c_c01110{transform:matrix(0.262922,0.004470,-0.004249,0.249964,0,0);-ms-transform:matrix(0.262922,0.004470,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.262922,0.004470,-0.004249,0.249964,0,0);}
.m38_c01110{transform:matrix(0.263350,0.001580,-0.001500,0.249996,0,0);-ms-transform:matrix(0.263350,0.001580,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.263350,0.001580,-0.001500,0.249996,0,0);}
.m76_c01110{transform:matrix(0.263719,0.002901,-0.002750,0.249985,0,0);-ms-transform:matrix(0.263719,0.002901,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.263719,0.002901,-0.002750,0.249985,0,0);}
.m6e_c01110{transform:matrix(0.263932,0.001320,-0.001250,0.249997,0,0);-ms-transform:matrix(0.263932,0.001320,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.263932,0.001320,-0.001250,0.249997,0,0);}
.m134_c01110{transform:matrix(0.264422,0.002644,-0.002500,0.249988,0,0);-ms-transform:matrix(0.264422,0.002644,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.264422,0.002644,-0.002500,0.249988,0,0);}
.m2a_c01110{transform:matrix(0.264540,0.001587,-0.001500,0.249996,0,0);-ms-transform:matrix(0.264540,0.001587,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.264540,0.001587,-0.001500,0.249996,0,0);}
.mf6_c01110{transform:matrix(0.265024,0.002915,-0.002750,0.249985,0,0);-ms-transform:matrix(0.265024,0.002915,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.265024,0.002915,-0.002750,0.249985,0,0);}
.mc4_c01110{transform:matrix(0.266106,0.003193,-0.003000,0.249982,0,0);-ms-transform:matrix(0.266106,0.003193,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.266106,0.003193,-0.003000,0.249982,0,0);}
.mb0_c01110{transform:matrix(0.266139,0.002928,-0.002750,0.249985,0,0);-ms-transform:matrix(0.266139,0.002928,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.266139,0.002928,-0.002750,0.249985,0,0);}
.m96_c01110{transform:matrix(0.266444,0.002931,-0.002750,0.249985,0,0);-ms-transform:matrix(0.266444,0.002931,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.266444,0.002931,-0.002750,0.249985,0,0);}
.m106_c01110{transform:matrix(0.266781,0.004535,-0.004249,0.249964,0,0);-ms-transform:matrix(0.266781,0.004535,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.266781,0.004535,-0.004249,0.249964,0,0);}
.m53_c01110{transform:matrix(0.266887,0.001334,-0.001250,0.249997,0,0);-ms-transform:matrix(0.266887,0.001334,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.266887,0.001334,-0.001250,0.249997,0,0);}
.m3a_c01110{transform:matrix(0.267505,0.001605,-0.001500,0.249996,0,0);-ms-transform:matrix(0.267505,0.001605,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.267505,0.001605,-0.001500,0.249996,0,0);}
.mf2_c01110{transform:matrix(0.267509,0.002943,-0.002750,0.249985,0,0);-ms-transform:matrix(0.267509,0.002943,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.267509,0.002943,-0.002750,0.249985,0,0);}
.m72_c01110{transform:matrix(0.267862,0.001339,-0.001250,0.249997,0,0);-ms-transform:matrix(0.267862,0.001339,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.267862,0.001339,-0.001250,0.249997,0,0);}
.m104_c01110{transform:matrix(0.267961,0.004555,-0.004249,0.249964,0,0);-ms-transform:matrix(0.267961,0.004555,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.267961,0.004555,-0.004249,0.249964,0,0);}
.m3c_c01110{transform:matrix(0.268145,0.001609,-0.001500,0.249996,0,0);-ms-transform:matrix(0.268145,0.001609,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.268145,0.001609,-0.001500,0.249996,0,0);}
.m12b_c01110{transform:matrix(0.268787,0.002688,-0.002500,0.249988,0,0);-ms-transform:matrix(0.268787,0.002688,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.268787,0.002688,-0.002500,0.249988,0,0);}
.mc3_c01110{transform:matrix(0.269201,0.003230,-0.003000,0.249982,0,0);-ms-transform:matrix(0.269201,0.003230,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.269201,0.003230,-0.003000,0.249982,0,0);}
.m8c_c01110{transform:matrix(0.269319,0.002963,-0.002750,0.249985,0,0);-ms-transform:matrix(0.269319,0.002963,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.269319,0.002963,-0.002750,0.249985,0,0);}
.m109_c01110{transform:matrix(0.269581,0.004583,-0.004249,0.249964,0,0);-ms-transform:matrix(0.269581,0.004583,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.269581,0.004583,-0.004249,0.249964,0,0);}
.m8e_c01110{transform:matrix(0.269814,0.002968,-0.002750,0.249985,0,0);-ms-transform:matrix(0.269814,0.002968,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.269814,0.002968,-0.002750,0.249985,0,0);}
.m14_c01110{transform:matrix(0.269830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269830,0.000000,0.000000,0.250000,0,0);}
.m1b_c01110{transform:matrix(0.269845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269845,0.000000,0.000000,0.250000,0,0);}
.mf9_c01110{transform:matrix(0.270306,0.004595,-0.004249,0.249964,0,0);-ms-transform:matrix(0.270306,0.004595,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.270306,0.004595,-0.004249,0.249964,0,0);}
.mc2_c01110{transform:matrix(0.271105,0.003253,-0.003000,0.249982,0,0);-ms-transform:matrix(0.271105,0.003253,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.271105,0.003253,-0.003000,0.249982,0,0);}
.m129_c01110{transform:matrix(0.271601,0.002716,-0.002500,0.249988,0,0);-ms-transform:matrix(0.271601,0.002716,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.271601,0.002716,-0.002500,0.249988,0,0);}
.m88_c01110{transform:matrix(0.271924,0.002991,-0.002750,0.249985,0,0);-ms-transform:matrix(0.271924,0.002991,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.271924,0.002991,-0.002750,0.249985,0,0);}
.m101_c01110{transform:matrix(0.272316,0.004629,-0.004249,0.249964,0,0);-ms-transform:matrix(0.272316,0.004629,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.272316,0.004629,-0.004249,0.249964,0,0);}
.m107_c01110{transform:matrix(0.272591,0.004634,-0.004249,0.249964,0,0);-ms-transform:matrix(0.272591,0.004634,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.272591,0.004634,-0.004249,0.249964,0,0);}
.m9e_c01110{transform:matrix(0.272704,0.003000,-0.002750,0.249985,0,0);-ms-transform:matrix(0.272704,0.003000,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.272704,0.003000,-0.002750,0.249985,0,0);}
.ma2_c01110{transform:matrix(0.272928,0.003002,-0.002750,0.249985,0,0);-ms-transform:matrix(0.272928,0.003002,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.272928,0.003002,-0.002750,0.249985,0,0);}
.m114_c01110{transform:matrix(0.273361,0.004647,-0.004249,0.249964,0,0);-ms-transform:matrix(0.273361,0.004647,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.273361,0.004647,-0.004249,0.249964,0,0);}
.m79_c01110{transform:matrix(0.273383,0.003007,-0.002750,0.249985,0,0);-ms-transform:matrix(0.273383,0.003007,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.273383,0.003007,-0.002750,0.249985,0,0);}
.mfb_c01110{transform:matrix(0.273685,0.004653,-0.004249,0.249964,0,0);-ms-transform:matrix(0.273685,0.004653,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.273685,0.004653,-0.004249,0.249964,0,0);}
.m7e_c01110{transform:matrix(0.274263,0.003017,-0.002750,0.249985,0,0);-ms-transform:matrix(0.274263,0.003017,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.274263,0.003017,-0.002750,0.249985,0,0);}
.mad_c01110{transform:matrix(0.274373,0.003018,-0.002750,0.249985,0,0);-ms-transform:matrix(0.274373,0.003018,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.274373,0.003018,-0.002750,0.249985,0,0);}
.ma5_c01110{transform:matrix(0.274808,0.003023,-0.002750,0.249985,0,0);-ms-transform:matrix(0.274808,0.003023,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.274808,0.003023,-0.002750,0.249985,0,0);}
.m27_c01110{transform:matrix(0.274840,0.001649,-0.001500,0.249996,0,0);-ms-transform:matrix(0.274840,0.001649,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.274840,0.001649,-0.001500,0.249996,0,0);}
.mcc_c01110{transform:matrix(0.275240,0.001651,-0.001500,0.249996,0,0);-ms-transform:matrix(0.275240,0.001651,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.275240,0.001651,-0.001500,0.249996,0,0);}
.m103_c01110{transform:matrix(0.275540,0.004684,-0.004249,0.249964,0,0);-ms-transform:matrix(0.275540,0.004684,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.275540,0.004684,-0.004249,0.249964,0,0);}
.m3f_c01110{transform:matrix(0.276355,0.001658,-0.001500,0.249996,0,0);-ms-transform:matrix(0.276355,0.001658,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.276355,0.001658,-0.001500,0.249996,0,0);}
.m74_c01110{transform:matrix(0.277348,0.003051,-0.002750,0.249985,0,0);-ms-transform:matrix(0.277348,0.003051,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.277348,0.003051,-0.002750,0.249985,0,0);}
.m19_c01110{transform:matrix(0.277670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277670,0.000000,0.000000,0.250000,0,0);}
.m77_c01110{transform:matrix(0.278003,0.003058,-0.002750,0.249985,0,0);-ms-transform:matrix(0.278003,0.003058,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.278003,0.003058,-0.002750,0.249985,0,0);}
.m86_c01110{transform:matrix(0.278398,0.003062,-0.002750,0.249985,0,0);-ms-transform:matrix(0.278398,0.003062,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.278398,0.003062,-0.002750,0.249985,0,0);}
.mb1_c01110{transform:matrix(0.279008,0.003069,-0.002750,0.249985,0,0);-ms-transform:matrix(0.279008,0.003069,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.279008,0.003069,-0.002750,0.249985,0,0);}
.m108_c01110{transform:matrix(0.279215,0.004747,-0.004249,0.249964,0,0);-ms-transform:matrix(0.279215,0.004747,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.279215,0.004747,-0.004249,0.249964,0,0);}
.m8b_c01110{transform:matrix(0.279388,0.003073,-0.002750,0.249985,0,0);-ms-transform:matrix(0.279388,0.003073,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.279388,0.003073,-0.002750,0.249985,0,0);}
.m135_c01110{transform:matrix(0.279436,0.002794,-0.002500,0.249988,0,0);-ms-transform:matrix(0.279436,0.002794,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.279436,0.002794,-0.002500,0.249988,0,0);}
.mc7_c01110{transform:matrix(0.279595,0.003355,-0.003000,0.249982,0,0);-ms-transform:matrix(0.279595,0.003355,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.279595,0.003355,-0.003000,0.249982,0,0);}
.m16_c01110{transform:matrix(0.279755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279755,0.000000,0.000000,0.250000,0,0);}
.m7a_c01110{transform:matrix(0.280163,0.003082,-0.002750,0.249985,0,0);-ms-transform:matrix(0.280163,0.003082,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.280163,0.003082,-0.002750,0.249985,0,0);}
.m8a_c01110{transform:matrix(0.280318,0.003083,-0.002750,0.249985,0,0);-ms-transform:matrix(0.280318,0.003083,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.280318,0.003083,-0.002750,0.249985,0,0);}
.m6d_c01110{transform:matrix(0.280346,0.001402,-0.001250,0.249997,0,0);-ms-transform:matrix(0.280346,0.001402,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.280346,0.001402,-0.001250,0.249997,0,0);}
.mff_c01110{transform:matrix(0.280714,0.004772,-0.004249,0.249964,0,0);-ms-transform:matrix(0.280714,0.004772,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.280714,0.004772,-0.004249,0.249964,0,0);}
.m90_c01110{transform:matrix(0.280838,0.003089,-0.002750,0.249985,0,0);-ms-transform:matrix(0.280838,0.003089,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.280838,0.003089,-0.002750,0.249985,0,0);}
.maa_c01110{transform:matrix(0.281013,0.003091,-0.002750,0.249985,0,0);-ms-transform:matrix(0.281013,0.003091,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.281013,0.003091,-0.002750,0.249985,0,0);}
.mf3_c01110{transform:matrix(0.281413,0.003096,-0.002750,0.249985,0,0);-ms-transform:matrix(0.281413,0.003096,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.281413,0.003096,-0.002750,0.249985,0,0);}
.m28_c01110{transform:matrix(0.281510,0.001689,-0.001500,0.249996,0,0);-ms-transform:matrix(0.281510,0.001689,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.281510,0.001689,-0.001500,0.249996,0,0);}
.m10d_c01110{transform:matrix(0.281564,0.004787,-0.004249,0.249964,0,0);-ms-transform:matrix(0.281564,0.004787,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.281564,0.004787,-0.004249,0.249964,0,0);}
.m98_c01110{transform:matrix(0.281638,0.003098,-0.002750,0.249985,0,0);-ms-transform:matrix(0.281638,0.003098,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.281638,0.003098,-0.002750,0.249985,0,0);}
.m110_c01110{transform:matrix(0.282729,0.004806,-0.004249,0.249964,0,0);-ms-transform:matrix(0.282729,0.004806,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.282729,0.004806,-0.004249,0.249964,0,0);}
.m10a_c01110{transform:matrix(0.284504,0.004837,-0.004249,0.249964,0,0);-ms-transform:matrix(0.284504,0.004837,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.284504,0.004837,-0.004249,0.249964,0,0);}
.mcd_c01110{transform:matrix(0.285400,0.001712,-0.001500,0.249996,0,0);-ms-transform:matrix(0.285400,0.001712,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.285400,0.001712,-0.001500,0.249996,0,0);}
.m70_c01110{transform:matrix(0.289931,0.001450,-0.001250,0.249997,0,0);-ms-transform:matrix(0.289931,0.001450,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.289931,0.001450,-0.001250,0.249997,0,0);}
.m94_c01110{transform:matrix(0.295002,0.003245,-0.002750,0.249985,0,0);-ms-transform:matrix(0.295002,0.003245,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.295002,0.003245,-0.002750,0.249985,0,0);}
.m97_c01110{transform:matrix(0.306001,0.003366,-0.002750,0.249985,0,0);-ms-transform:matrix(0.306001,0.003366,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.306001,0.003366,-0.002750,0.249985,0,0);}
.mb4_c01110{transform:matrix(0.307106,0.003378,-0.002750,0.249985,0,0);-ms-transform:matrix(0.307106,0.003378,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.307106,0.003378,-0.002750,0.249985,0,0);}
.m9b_c01110{transform:matrix(0.307356,0.003381,-0.002750,0.249985,0,0);-ms-transform:matrix(0.307356,0.003381,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.307356,0.003381,-0.002750,0.249985,0,0);}
.m9a_c01110{transform:matrix(0.308706,0.003396,-0.002750,0.249985,0,0);-ms-transform:matrix(0.308706,0.003396,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.308706,0.003396,-0.002750,0.249985,0,0);}
.me4_c01110{transform:matrix(0.309686,0.003407,-0.002750,0.249985,0,0);-ms-transform:matrix(0.309686,0.003407,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.309686,0.003407,-0.002750,0.249985,0,0);}
.mc9_c01110{transform:matrix(0.316717,0.003801,-0.003000,0.249982,0,0);-ms-transform:matrix(0.316717,0.003801,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.316717,0.003801,-0.003000,0.249982,0,0);}
.m124_c01110{transform:matrix(0.328975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328975,0.000000,0.000000,0.250000,0,0);}
.mf7_c01110{transform:matrix(0.366808,0.004035,-0.002750,0.249985,0,0);-ms-transform:matrix(0.366808,0.004035,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.366808,0.004035,-0.002750,0.249985,0,0);}
.mf8_c01110{transform:matrix(0.391141,0.004303,-0.002750,0.249985,0,0);-ms-transform:matrix(0.391141,0.004303,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.391141,0.004303,-0.002750,0.249985,0,0);}
.m126_c01110{transform:matrix(0.536005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.536005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.536005,0.000000,0.000000,0.250000,0,0);}
.m2_c01110{transform:matrix(0.586730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.586730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.586730,0.000000,0.000000,0.250000,0,0);}
.m4_c01110{transform:matrix(0.611000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.611000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.611000,0.000000,0.000000,0.250000,0,0);}
.m50_c01110{transform:matrix(0.721980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.721980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.721980,0.000000,0.000000,0.250000,0,0);}
.m127_c01110{transform:matrix(0.742495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.742495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.742495,0.000000,0.000000,0.250000,0,0);}
.m125_c01110{transform:matrix(0.787465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.787465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.787465,0.000000,0.000000,0.250000,0,0);}
.m3_c01110{transform:matrix(0.878235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.878235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.878235,0.000000,0.000000,0.250000,0,0);}
.m0_c01110{transform:matrix(1.042355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.042355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.042355,0.000000,0.000000,0.250000,0,0);}
.m128_c01110{transform:matrix(1.069020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.069020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.069020,0.000000,0.000000,0.250000,0,0);}
.m1_c01110{transform:matrix(3.452085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.452085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.452085,0.000000,0.000000,0.250000,0,0);}
.m123_c01110{transform:matrix(3.980605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.980605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.980605,0.000000,0.000000,0.250000,0,0);}
.v0_c01110{vertical-align:0.000000px;}
.ls0_c01110{letter-spacing:0.000000px;}
.sc__c01110{text-shadow:none;}
.sc0_c01110{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__c01110{-webkit-text-stroke:0px transparent;}
.sc0_c01110{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01110{word-spacing:0.000000px;}
.fc0_c01110{color:transparent;}
.fs0_c01110{font-size:18.000000px;}
.fsb_c01110{font-size:66.003993px;}
.fs2_c01110{font-size:72.000000px;}
.fs9_c01110{font-size:72.000900px;}
.fs4_c01110{font-size:72.001296px;}
.fs13_c01110{font-size:72.003600px;}
.fsa_c01110{font-size:72.004356px;}
.fsd_c01110{font-size:72.005184px;}
.fs10_c01110{font-size:72.010403px;}
.fs3_c01110{font-size:78.000000px;}
.fs7_c01110{font-size:78.000975px;}
.fs5_c01110{font-size:78.001404px;}
.fsf_c01110{font-size:78.004719px;}
.fse_c01110{font-size:78.009983px;}
.fs11_c01110{font-size:78.011270px;}
.fs14_c01110{font-size:78.026360px;}
.fs6_c01110{font-size:84.000000px;}
.fs8_c01110{font-size:84.001050px;}
.fs1_c01110{font-size:90.000000px;}
.fsc_c01110{font-size:90.005445px;}
.fs12_c01110{font-size:102.014738px;}
.y0_c01110{bottom:0.000000px;}
.y119_c01110{bottom:47.499018px;}
.y118_c01110{bottom:48.973452px;}
.y117_c01110{bottom:50.708094px;}
.y116_c01110{bottom:51.592692px;}
.y115_c01110{bottom:53.903130px;}
.y114_c01110{bottom:54.759297px;}
.y113_c01110{bottom:56.451819px;}
.y112_c01110{bottom:58.395501px;}
.y111_c01110{bottom:60.487500px;}
.y110_c01110{bottom:84.862395px;}
.y10f_c01110{bottom:86.067495px;}
.y10e_c01110{bottom:86.779950px;}
.y10d_c01110{bottom:87.808260px;}
.y10c_c01110{bottom:90.944010px;}
.y10b_c01110{bottom:92.415960px;}
.y10a_c01110{bottom:95.314440px;}
.y109_c01110{bottom:115.661025px;}
.y108_c01110{bottom:116.219985px;}
.y107_c01110{bottom:116.887065px;}
.y106_c01110{bottom:117.221760px;}
.y105_c01110{bottom:117.532350px;}
.y104_c01110{bottom:118.080555px;}
.y103_c01110{bottom:118.315470px;}
.y102_c01110{bottom:119.106645px;}
.y101_c01110{bottom:119.873325px;}
.y100_c01110{bottom:120.421500px;}
.yff_c01110{bottom:142.557000px;}
.yfb_c01110{bottom:155.219905px;}
.yfe_c01110{bottom:155.220240px;}
.yfd_c01110{bottom:155.220241px;}
.yfc_c01110{bottom:155.220427px;}
.yfa_c01110{bottom:181.715368px;}
.yf9_c01110{bottom:182.873400px;}
.yf8_c01110{bottom:184.741213px;}
.yf7_c01110{bottom:185.039175px;}
.yf6_c01110{bottom:187.044585px;}
.yf5_c01110{bottom:187.925302px;}
.yf4_c01110{bottom:188.356372px;}
.yf3_c01110{bottom:189.212460px;}
.yf2_c01110{bottom:189.650674px;}
.yf1_c01110{bottom:190.067068px;}
.yf0_c01110{bottom:218.602472px;}
.yef_c01110{bottom:219.191658px;}
.yee_c01110{bottom:219.612799px;}
.yed_c01110{bottom:219.907671px;}
.yec_c01110{bottom:221.212407px;}
.yeb_c01110{bottom:221.633085px;}
.yea_c01110{bottom:222.362116px;}
.ye9_c01110{bottom:224.079723px;}
.ye8_c01110{bottom:224.648512px;}
.ye7_c01110{bottom:224.936239px;}
.ye6_c01110{bottom:226.524006px;}
.ye5_c01110{bottom:256.572576px;}
.ye4_c01110{bottom:257.198727px;}
.ye3_c01110{bottom:258.172470px;}
.ye2_c01110{bottom:258.702948px;}
.ye1_c01110{bottom:259.416835px;}
.ye0_c01110{bottom:259.671777px;}
.ydf_c01110{bottom:260.210544px;}
.yde_c01110{bottom:261.086880px;}
.ydd_c01110{bottom:288.485866px;}
.ydc_c01110{bottom:289.406161px;}
.ydb_c01110{bottom:289.967697px;}
.yda_c01110{bottom:291.878412px;}
.yd9_c01110{bottom:292.433164px;}
.yd8_c01110{bottom:293.544021px;}
.yd7_c01110{bottom:294.137125px;}
.yd6_c01110{bottom:295.817065px;}
.yd5_c01110{bottom:296.569086px;}
.yd4_c01110{bottom:298.084500px;}
.yd3_c01110{bottom:327.674364px;}
.yd2_c01110{bottom:328.204014px;}
.yd1_c01110{bottom:328.566144px;}
.yd0_c01110{bottom:328.823277px;}
.ycf_c01110{bottom:329.095464px;}
.yce_c01110{bottom:330.147420px;}
.ycd_c01110{bottom:330.421159px;}
.ycc_c01110{bottom:331.042585px;}
.ycb_c01110{bottom:331.308862px;}
.yca_c01110{bottom:331.835559px;}
.yc9_c01110{bottom:332.094343px;}
.yc8_c01110{bottom:361.259565px;}
.yc7_c01110{bottom:361.816330px;}
.yc6_c01110{bottom:362.481297px;}
.yc5_c01110{bottom:363.380175px;}
.yc4_c01110{bottom:364.587930px;}
.yc3_c01110{bottom:364.927600px;}
.yc2_c01110{bottom:365.595421px;}
.yc1_c01110{bottom:366.579976px;}
.yc0_c01110{bottom:367.142467px;}
.ybf_c01110{bottom:367.468755px;}
.ybe_c01110{bottom:395.200896px;}
.ybd_c01110{bottom:395.449320px;}
.ybc_c01110{bottom:396.070628px;}
.ybb_c01110{bottom:396.685450px;}
.yba_c01110{bottom:397.050810px;}
.yb9_c01110{bottom:397.410295px;}
.yb8_c01110{bottom:397.784499px;}
.yb7_c01110{bottom:398.883993px;}
.yb6_c01110{bottom:399.370066px;}
.yb5_c01110{bottom:399.839425px;}
.yb4_c01110{bottom:400.466128px;}
.yb3_c01110{bottom:401.078559px;}
.yb2_c01110{bottom:401.307034px;}
.yb1_c01110{bottom:402.031500px;}
.yb0_c01110{bottom:437.707200px;}
.yaf_c01110{bottom:438.571992px;}
.yae_c01110{bottom:439.293000px;}
.yad_c01110{bottom:469.319940px;}
.yac_c01110{bottom:469.524051px;}
.yab_c01110{bottom:469.788129px;}
.yaa_c01110{bottom:470.188305px;}
.ya9_c01110{bottom:470.455488px;}
.ya8_c01110{bottom:470.586672px;}
.ya7_c01110{bottom:471.643047px;}
.ya6_c01110{bottom:472.312152px;}
.ya5_c01110{bottom:472.500000px;}
.ya4_c01110{bottom:501.256752px;}
.ya3_c01110{bottom:502.602144px;}
.ya2_c01110{bottom:503.249820px;}
.ya1_c01110{bottom:504.478392px;}
.ya0_c01110{bottom:504.860676px;}
.y9f_c01110{bottom:505.534074px;}
.y9e_c01110{bottom:506.205204px;}
.y9d_c01110{bottom:507.248718px;}
.y9c_c01110{bottom:508.071660px;}
.y9b_c01110{bottom:508.832880px;}
.y9a_c01110{bottom:509.221500px;}
.y99_c01110{bottom:539.229709px;}
.y98_c01110{bottom:539.530853px;}
.y97_c01110{bottom:540.128022px;}
.y96_c01110{bottom:540.434626px;}
.y95_c01110{bottom:540.935529px;}
.y94_c01110{bottom:541.407303px;}
.y93_c01110{bottom:542.325748px;}
.y92_c01110{bottom:542.626463px;}
.y91_c01110{bottom:542.930245px;}
.y90_c01110{bottom:543.321482px;}
.y8f_c01110{bottom:543.659905px;}
.y8e_c01110{bottom:544.415427px;}
.y8d_c01110{bottom:545.113979px;}
.y8c_c01110{bottom:574.907826px;}
.y8b_c01110{bottom:576.033654px;}
.y8a_c01110{bottom:576.396109px;}
.y89_c01110{bottom:577.126878px;}
.y88_c01110{bottom:577.617027px;}
.y87_c01110{bottom:577.854181px;}
.y86_c01110{bottom:579.055233px;}
.y85_c01110{bottom:579.793971px;}
.y84_c01110{bottom:580.158901px;}
.y83_c01110{bottom:581.751184px;}
.y82_c01110{bottom:582.107040px;}
.y81_c01110{bottom:612.190897px;}
.y80_c01110{bottom:612.401695px;}
.y7f_c01110{bottom:612.536994px;}
.y7e_c01110{bottom:613.132298px;}
.y7d_c01110{bottom:613.331009px;}
.y7c_c01110{bottom:613.669755px;}
.y7b_c01110{bottom:614.263242px;}
.y7a_c01110{bottom:614.534216px;}
.y79_c01110{bottom:614.796389px;}
.y78_c01110{bottom:615.058776px;}
.y77_c01110{bottom:615.593376px;}
.y76_c01110{bottom:615.792136px;}
.y75_c01110{bottom:616.127679px;}
.y1_c01110{bottom:631.260000px;}
.y74_c01110{bottom:646.074106px;}
.y73_c01110{bottom:646.975163px;}
.y72_c01110{bottom:647.318260px;}
.y71_c01110{bottom:647.776917px;}
.y70_c01110{bottom:648.753637px;}
.y6f_c01110{bottom:649.104277px;}
.y6e_c01110{bottom:649.283024px;}
.y6d_c01110{bottom:650.064510px;}
.y6c_c01110{bottom:650.426970px;}
.y6b_c01110{bottom:650.684004px;}
.y6a_c01110{bottom:650.960895px;}
.y69_c01110{bottom:680.130265px;}
.y68_c01110{bottom:680.635492px;}
.y67_c01110{bottom:681.247581px;}
.y66_c01110{bottom:681.641440px;}
.y65_c01110{bottom:682.541220px;}
.y64_c01110{bottom:683.542860px;}
.y63_c01110{bottom:684.243408px;}
.y62_c01110{bottom:684.537106px;}
.y61_c01110{bottom:685.236483px;}
.y60_c01110{bottom:685.523827px;}
.y2_c01110{bottom:705.780000px;}
.y5f_c01110{bottom:716.323482px;}
.y5e_c01110{bottom:716.809168px;}
.y5d_c01110{bottom:717.218260px;}
.y5c_c01110{bottom:717.525013px;}
.y5b_c01110{bottom:718.026229px;}
.y5a_c01110{bottom:718.334353px;}
.y59_c01110{bottom:718.925580px;}
.y58_c01110{bottom:719.224560px;}
.y57_c01110{bottom:720.128680px;}
.y56_c01110{bottom:720.709642px;}
.y55_c01110{bottom:721.498947px;}
.y54_c01110{bottom:721.707768px;}
.y53_c01110{bottom:752.637438px;}
.y52_c01110{bottom:753.620607px;}
.y51_c01110{bottom:754.116630px;}
.y50_c01110{bottom:755.203749px;}
.y4f_c01110{bottom:755.824479px;}
.y4e_c01110{bottom:756.189706px;}
.y4d_c01110{bottom:757.407423px;}
.y4c_c01110{bottom:757.891500px;}
.y4a_c01110{bottom:791.755462px;}
.y49_c01110{bottom:791.756062px;}
.y4b_c01110{bottom:791.756070px;}
.y48_c01110{bottom:791.756212px;}
.y47_c01110{bottom:791.756805px;}
.y46_c01110{bottom:824.034772px;}
.y45_c01110{bottom:824.829787px;}
.y44_c01110{bottom:825.632820px;}
.y43_c01110{bottom:826.165440px;}
.y42_c01110{bottom:826.490790px;}
.y41_c01110{bottom:827.425740px;}
.y40_c01110{bottom:827.680920px;}
.y3f_c01110{bottom:827.819505px;}
.y3e_c01110{bottom:859.913520px;}
.y3d_c01110{bottom:860.082202px;}
.y3c_c01110{bottom:860.410252px;}
.y3b_c01110{bottom:860.811270px;}
.y3a_c01110{bottom:860.966475px;}
.y39_c01110{bottom:861.362122px;}
.y38_c01110{bottom:861.586147px;}
.y37_c01110{bottom:861.752310px;}
.y36_c01110{bottom:862.249080px;}
.y35_c01110{bottom:862.471815px;}
.y34_c01110{bottom:863.190000px;}
.y33_c01110{bottom:896.420378px;}
.y32_c01110{bottom:896.868608px;}
.y31_c01110{bottom:897.091365px;}
.y30_c01110{bottom:897.588180px;}
.y2f_c01110{bottom:897.858105px;}
.y2e_c01110{bottom:898.419795px;}
.y2d_c01110{bottom:898.585845px;}
.y2c_c01110{bottom:899.109637px;}
.y2b_c01110{bottom:899.295833px;}
.y2a_c01110{bottom:899.370000px;}
.y29_c01110{bottom:933.040500px;}
.y28_c01110{bottom:965.165304px;}
.y27_c01110{bottom:965.326683px;}
.y26_c01110{bottom:965.657583px;}
.y25_c01110{bottom:965.827011px;}
.y24_c01110{bottom:966.052569px;}
.y23_c01110{bottom:966.500724px;}
.y22_c01110{bottom:966.834786px;}
.y21_c01110{bottom:966.999426px;}
.y20_c01110{bottom:967.437306px;}
.y1f_c01110{bottom:967.710657px;}
.y1e_c01110{bottom:968.049786px;}
.y1d_c01110{bottom:968.210940px;}
.y1c_c01110{bottom:968.490879px;}
.y10_c01110{bottom:1002.508422px;}
.yf_c01110{bottom:1002.508533px;}
.y11_c01110{bottom:1002.509022px;}
.y14_c01110{bottom:1002.509169px;}
.y12_c01110{bottom:1002.509331px;}
.y15_c01110{bottom:1002.509418px;}
.y13_c01110{bottom:1002.509760px;}
.y16_c01110{bottom:1002.510087px;}
.y19_c01110{bottom:1002.510336px;}
.y1b_c01110{bottom:1002.510354px;}
.y17_c01110{bottom:1002.510507px;}
.y18_c01110{bottom:1002.510576px;}
.y1a_c01110{bottom:1002.510705px;}
.ye_c01110{bottom:1037.577078px;}
.yd_c01110{bottom:1037.773098px;}
.yc_c01110{bottom:1038.242898px;}
.yb_c01110{bottom:1038.369141px;}
.ya_c01110{bottom:1039.169592px;}
.y9_c01110{bottom:1039.767237px;}
.y8_c01110{bottom:1040.102703px;}
.y7_c01110{bottom:1040.310000px;}
.y6_c01110{bottom:1074.601500px;}
.y5_c01110{bottom:1109.035500px;}
.y4_c01110{bottom:1145.194500px;}
.y3_c01110{bottom:1202.461500px;}
.h2_c01110{height:18.000000px;}
.hd_c01110{height:66.003993px;}
.h4_c01110{height:72.000000px;}
.hb_c01110{height:72.000900px;}
.h6_c01110{height:72.001296px;}
.h15_c01110{height:72.003600px;}
.hc_c01110{height:72.004356px;}
.hf_c01110{height:72.005184px;}
.h12_c01110{height:72.010403px;}
.h5_c01110{height:78.000000px;}
.h9_c01110{height:78.000975px;}
.h7_c01110{height:78.001404px;}
.h11_c01110{height:78.004719px;}
.h10_c01110{height:78.009983px;}
.h13_c01110{height:78.011270px;}
.h16_c01110{height:78.026360px;}
.h8_c01110{height:84.000000px;}
.ha_c01110{height:84.001050px;}
.h3_c01110{height:90.000000px;}
.he_c01110{height:90.005445px;}
.h14_c01110{height:102.014738px;}
.h0_c01110{height:1246.320000px;}
.h1_c01110{height:1246.500000px;}
.w0_c01110{width:927.450000px;}
.w1_c01110{width:927.750000px;}
.x0_c01110{left:0.000000px;}
.x2_c01110{left:5.400000px;}
.x1_c01110{left:6.480000px;}
.x35_c01110{left:159.535500px;}
.x78_c01110{left:170.370000px;}
.x15_c01110{left:172.530000px;}
.x4_c01110{left:174.150000px;}
.x65_c01110{left:183.718500px;}
.x3f_c01110{left:196.497060px;}
.x4e_c01110{left:204.782983px;}
.x51_c01110{left:206.992219px;}
.x36_c01110{left:211.608000px;}
.xe_c01110{left:217.080000px;}
.x7c_c01110{left:227.199000px;}
.x29_c01110{left:228.899007px;}
.x75_c01110{left:238.452072px;}
.x5_c01110{left:239.490000px;}
.x79_c01110{left:241.110000px;}
.x42_c01110{left:250.560293px;}
.x7f_c01110{left:252.711000px;}
.x30_c01110{left:260.550000px;}
.xf_c01110{left:261.630000px;}
.x62_c01110{left:270.081000px;}
.x43_c01110{left:271.890825px;}
.x6_c01110{left:272.970000px;}
.x1b_c01110{left:282.073500px;}
.x48_c01110{left:284.168246px;}
.x21_c01110{left:293.760123px;}
.x7a_c01110{left:300.240000px;}
.x6a_c01110{left:304.171789px;}
.x10_c01110{left:305.910000px;}
.x4f_c01110{left:315.110409px;}
.x7_c01110{left:316.980000px;}
.x7b_c01110{left:322.650000px;}
.x44_c01110{left:326.551500px;}
.x2a_c01110{left:328.780101px;}
.x5c_c01110{left:333.793938px;}
.x76_c01110{left:337.556330px;}
.x63_c01110{left:338.659500px;}
.x8_c01110{left:349.650000px;}
.x69_c01110{left:359.482516px;}
.x39_c01110{left:360.642000px;}
.x5d_c01110{left:371.378763px;}
.x1c_c01110{left:372.534000px;}
.x70_c01110{left:381.134925px;}
.x52_c01110{left:382.223511px;}
.x2b_c01110{left:383.588934px;}
.x22_c01110{left:393.390714px;}
.x40_c01110{left:394.922070px;}
.x53_c01110{left:404.610253px;}
.x7d_c01110{left:406.476000px;}
.x5e_c01110{left:414.855720px;}
.x3_c01110{left:416.340000px;}
.x64_c01110{left:425.619000px;}
.x16_c01110{left:428.220000px;}
.x45_c01110{left:437.253000px;}
.x23_c01110{left:448.741203px;}
.x57_c01110{left:450.394846px;}
.x17_c01110{left:460.080000px;}
.x37_c01110{left:461.914500px;}
.x66_c01110{left:469.855500px;}
.x11_c01110{left:471.150000px;}
.x49_c01110{left:482.360101px;}
.x3a_c01110{left:493.228500px;}
.x2c_c01110{left:504.009654px;}
.x9_c01110{left:506.520000px;}
.x6d_c01110{left:514.393500px;}
.x24_c01110{left:515.702115px;}
.x31_c01110{left:516.780000px;}
.x18_c01110{left:526.770000px;}
.x71_c01110{left:536.680217px;}
.x3b_c01110{left:538.033500px;}
.x4a_c01110{left:547.973037px;}
.x6e_c01110{left:549.282000px;}
.x58_c01110{left:559.581346px;}
.x54_c01110{left:570.421215px;}
.xa_c01110{left:571.590000px;}
.x59_c01110{left:581.140846px;}
.x4b_c01110{left:582.257796px;}
.x19_c01110{left:583.470000px;}
.x7e_c01110{left:592.533000px;}
.x12_c01110{left:594.540000px;}
.x50_c01110{left:604.159261px;}
.x1d_c01110{left:605.550000px;}
.x6b_c01110{left:613.858519px;}
.x38_c01110{left:615.262500px;}
.x3c_c01110{left:617.163000px;}
.x1e_c01110{left:626.590500px;}
.x13_c01110{left:628.290000px;}
.x5f_c01110{left:636.562104px;}
.x25_c01110{left:638.013525px;}
.x1a_c01110{left:639.360000px;}
.x3d_c01110{left:648.204000px;}
.x6c_c01110{left:659.190021px;}
.x2d_c01110{left:660.630099px;}
.x67_c01110{left:669.723000px;}
.x46_c01110{left:670.807500px;}
.x26_c01110{left:672.304758px;}
.x72_c01110{left:681.118633px;}
.x5a_c01110{left:692.133346px;}
.xb_c01110{left:694.710000px;}
.x73_c01110{left:703.759663px;}
.x1f_c01110{left:704.890500px;}
.x32_c01110{left:716.040000px;}
.x4c_c01110{left:717.311750px;}
.x5b_c01110{left:725.083846px;}
.x60_c01110{left:726.201067px;}
.x14_c01110{left:727.380000px;}
.x3e_c01110{left:728.407500px;}
.x74_c01110{left:736.211382px;}
.x20_c01110{left:737.560500px;}
.x27_c01110{left:738.995661px;}
.x33_c01110{left:749.520000px;}
.x47_c01110{left:760.186500px;}
.x4d_c01110{left:771.284437px;}
.xc_c01110{left:773.010000px;}
.x68_c01110{left:782.098500px;}
.x55_c01110{left:783.183728px;}
.x56_c01110{left:793.215589px;}
.xd_c01110{left:794.610000px;}
.x41_c01110{left:804.523530px;}
.x2e_c01110{left:805.611963px;}
.x77_c01110{left:815.290817px;}
.x34_c01110{left:816.480000px;}
.x61_c01110{left:826.140778px;}
.x28_c01110{left:827.557347px;}
.x2f_c01110{left:837.758652px;}
.x6f_c01110{left:846.820500px;}
@media print{
.v0_c01110{vertical-align:0.000000pt;}
.ls0_c01110{letter-spacing:0.000000pt;}
.ws0_c01110{word-spacing:0.000000pt;}
.fs0_c01110{font-size:16.000000pt;}
.fsb_c01110{font-size:58.670216pt;}
.fs2_c01110{font-size:64.000000pt;}
.fs9_c01110{font-size:64.000800pt;}
.fs4_c01110{font-size:64.001152pt;}
.fs13_c01110{font-size:64.003200pt;}
.fsa_c01110{font-size:64.003872pt;}
.fsd_c01110{font-size:64.004608pt;}
.fs10_c01110{font-size:64.009247pt;}
.fs3_c01110{font-size:69.333333pt;}
.fs7_c01110{font-size:69.334200pt;}
.fs5_c01110{font-size:69.334581pt;}
.fsf_c01110{font-size:69.337528pt;}
.fse_c01110{font-size:69.342207pt;}
.fs11_c01110{font-size:69.343351pt;}
.fs14_c01110{font-size:69.356764pt;}
.fs6_c01110{font-size:74.666667pt;}
.fs8_c01110{font-size:74.667600pt;}
.fs1_c01110{font-size:80.000000pt;}
.fsc_c01110{font-size:80.004840pt;}
.fs12_c01110{font-size:90.679767pt;}
.y0_c01110{bottom:0.000000pt;}
.y119_c01110{bottom:42.221349pt;}
.y118_c01110{bottom:43.531957pt;}
.y117_c01110{bottom:45.073861pt;}
.y116_c01110{bottom:45.860171pt;}
.y115_c01110{bottom:47.913893pt;}
.y114_c01110{bottom:48.674931pt;}
.y113_c01110{bottom:50.179395pt;}
.y112_c01110{bottom:51.907112pt;}
.y111_c01110{bottom:53.766667pt;}
.y110_c01110{bottom:75.433240pt;}
.y10f_c01110{bottom:76.504440pt;}
.y10e_c01110{bottom:77.137733pt;}
.y10d_c01110{bottom:78.051787pt;}
.y10c_c01110{bottom:80.839120pt;}
.y10b_c01110{bottom:82.147520pt;}
.y10a_c01110{bottom:84.723947pt;}
.y109_c01110{bottom:102.809800pt;}
.y108_c01110{bottom:103.306653pt;}
.y107_c01110{bottom:103.899613pt;}
.y106_c01110{bottom:104.197120pt;}
.y105_c01110{bottom:104.473200pt;}
.y104_c01110{bottom:104.960493pt;}
.y103_c01110{bottom:105.169307pt;}
.y102_c01110{bottom:105.872573pt;}
.y101_c01110{bottom:106.554067pt;}
.y100_c01110{bottom:107.041333pt;}
.yff_c01110{bottom:126.717333pt;}
.yfb_c01110{bottom:137.973249pt;}
.yfe_c01110{bottom:137.973547pt;}
.yfd_c01110{bottom:137.973548pt;}
.yfc_c01110{bottom:137.973713pt;}
.yfa_c01110{bottom:161.524772pt;}
.yf9_c01110{bottom:162.554133pt;}
.yf8_c01110{bottom:164.214412pt;}
.yf7_c01110{bottom:164.479267pt;}
.yf6_c01110{bottom:166.261853pt;}
.yf5_c01110{bottom:167.044713pt;}
.yf4_c01110{bottom:167.427887pt;}
.yf3_c01110{bottom:168.188853pt;}
.yf2_c01110{bottom:168.578377pt;}
.yf1_c01110{bottom:168.948505pt;}
.yf0_c01110{bottom:194.313308pt;}
.yef_c01110{bottom:194.837029pt;}
.yee_c01110{bottom:195.211377pt;}
.yed_c01110{bottom:195.473485pt;}
.yec_c01110{bottom:196.633251pt;}
.yeb_c01110{bottom:197.007187pt;}
.yea_c01110{bottom:197.655215pt;}
.ye9_c01110{bottom:199.181976pt;}
.ye8_c01110{bottom:199.687567pt;}
.ye7_c01110{bottom:199.943324pt;}
.ye6_c01110{bottom:201.354672pt;}
.ye5_c01110{bottom:228.064512pt;}
.ye4_c01110{bottom:228.621091pt;}
.ye3_c01110{bottom:229.486640pt;}
.ye2_c01110{bottom:229.958176pt;}
.ye1_c01110{bottom:230.592743pt;}
.ye0_c01110{bottom:230.819357pt;}
.ydf_c01110{bottom:231.298261pt;}
.yde_c01110{bottom:232.077227pt;}
.ydd_c01110{bottom:256.431881pt;}
.ydc_c01110{bottom:257.249921pt;}
.ydb_c01110{bottom:257.749064pt;}
.yda_c01110{bottom:259.447477pt;}
.yd9_c01110{bottom:259.940591pt;}
.yd8_c01110{bottom:260.928019pt;}
.yd7_c01110{bottom:261.455223pt;}
.yd6_c01110{bottom:262.948503pt;}
.yd5_c01110{bottom:263.616965pt;}
.yd4_c01110{bottom:264.964000pt;}
.yd3_c01110{bottom:291.266101pt;}
.yd2_c01110{bottom:291.736901pt;}
.yd1_c01110{bottom:292.058795pt;}
.yd0_c01110{bottom:292.287357pt;}
.ycf_c01110{bottom:292.529301pt;}
.yce_c01110{bottom:293.464373pt;}
.ycd_c01110{bottom:293.707697pt;}
.ycc_c01110{bottom:294.260076pt;}
.ycb_c01110{bottom:294.496767pt;}
.yca_c01110{bottom:294.964941pt;}
.yc9_c01110{bottom:295.194972pt;}
.yc8_c01110{bottom:321.119613pt;}
.yc7_c01110{bottom:321.614516pt;}
.yc6_c01110{bottom:322.205597pt;}
.yc5_c01110{bottom:323.004600pt;}
.yc4_c01110{bottom:324.078160pt;}
.yc3_c01110{bottom:324.380089pt;}
.yc2_c01110{bottom:324.973708pt;}
.yc1_c01110{bottom:325.848868pt;}
.yc0_c01110{bottom:326.348860pt;}
.ybf_c01110{bottom:326.638893pt;}
.ybe_c01110{bottom:351.289685pt;}
.ybd_c01110{bottom:351.510507pt;}
.ybc_c01110{bottom:352.062780pt;}
.ybb_c01110{bottom:352.609289pt;}
.yba_c01110{bottom:352.934053pt;}
.yb9_c01110{bottom:353.253596pt;}
.yb8_c01110{bottom:353.586221pt;}
.yb7_c01110{bottom:354.563549pt;}
.yb6_c01110{bottom:354.995615pt;}
.yb5_c01110{bottom:355.412823pt;}
.yb4_c01110{bottom:355.969892pt;}
.yb3_c01110{bottom:356.514275pt;}
.yb2_c01110{bottom:356.717364pt;}
.yb1_c01110{bottom:357.361333pt;}
.yb0_c01110{bottom:389.073067pt;}
.yaf_c01110{bottom:389.841771pt;}
.yae_c01110{bottom:390.482667pt;}
.yad_c01110{bottom:417.173280pt;}
.yac_c01110{bottom:417.354712pt;}
.yab_c01110{bottom:417.589448pt;}
.yaa_c01110{bottom:417.945160pt;}
.ya9_c01110{bottom:418.182656pt;}
.ya8_c01110{bottom:418.299264pt;}
.ya7_c01110{bottom:419.238264pt;}
.ya6_c01110{bottom:419.833024pt;}
.ya5_c01110{bottom:420.000000pt;}
.ya4_c01110{bottom:445.561557pt;}
.ya3_c01110{bottom:446.757461pt;}
.ya2_c01110{bottom:447.333173pt;}
.ya1_c01110{bottom:448.425237pt;}
.ya0_c01110{bottom:448.765045pt;}
.y9f_c01110{bottom:449.363621pt;}
.y9e_c01110{bottom:449.960181pt;}
.y9d_c01110{bottom:450.887749pt;}
.y9c_c01110{bottom:451.619253pt;}
.y9b_c01110{bottom:452.295893pt;}
.y9a_c01110{bottom:452.641333pt;}
.y99_c01110{bottom:479.315297pt;}
.y98_c01110{bottom:479.582980pt;}
.y97_c01110{bottom:480.113797pt;}
.y96_c01110{bottom:480.386335pt;}
.y95_c01110{bottom:480.831581pt;}
.y94_c01110{bottom:481.250936pt;}
.y93_c01110{bottom:482.067332pt;}
.y92_c01110{bottom:482.334633pt;}
.y91_c01110{bottom:482.604663pt;}
.y90_c01110{bottom:482.952428pt;}
.y8f_c01110{bottom:483.253249pt;}
.y8e_c01110{bottom:483.924824pt;}
.y8d_c01110{bottom:484.545759pt;}
.y8c_c01110{bottom:511.029179pt;}
.y8b_c01110{bottom:512.029915pt;}
.y8a_c01110{bottom:512.352097pt;}
.y89_c01110{bottom:513.001669pt;}
.y88_c01110{bottom:513.437357pt;}
.y87_c01110{bottom:513.648161pt;}
.y86_c01110{bottom:514.715763pt;}
.y85_c01110{bottom:515.372419pt;}
.y84_c01110{bottom:515.696801pt;}
.y83_c01110{bottom:517.112164pt;}
.y82_c01110{bottom:517.428480pt;}
.y81_c01110{bottom:544.169687pt;}
.y80_c01110{bottom:544.357063pt;}
.y7f_c01110{bottom:544.477328pt;}
.y7e_c01110{bottom:545.006487pt;}
.y7d_c01110{bottom:545.183119pt;}
.y7c_c01110{bottom:545.484227pt;}
.y7b_c01110{bottom:546.011771pt;}
.y7a_c01110{bottom:546.252636pt;}
.y79_c01110{bottom:546.485679pt;}
.y78_c01110{bottom:546.718912pt;}
.y77_c01110{bottom:547.194112pt;}
.y76_c01110{bottom:547.370788pt;}
.y75_c01110{bottom:547.669048pt;}
.y1_c01110{bottom:561.120000pt;}
.y74_c01110{bottom:574.288095pt;}
.y73_c01110{bottom:575.089033pt;}
.y72_c01110{bottom:575.394009pt;}
.y71_c01110{bottom:575.801704pt;}
.y70_c01110{bottom:576.669900pt;}
.y6f_c01110{bottom:576.981580pt;}
.y6e_c01110{bottom:577.140465pt;}
.y6d_c01110{bottom:577.835120pt;}
.y6c_c01110{bottom:578.157307pt;}
.y6b_c01110{bottom:578.385781pt;}
.y6a_c01110{bottom:578.631907pt;}
.y69_c01110{bottom:604.560236pt;}
.y68_c01110{bottom:605.009327pt;}
.y67_c01110{bottom:605.553405pt;}
.y66_c01110{bottom:605.903503pt;}
.y65_c01110{bottom:606.703307pt;}
.y64_c01110{bottom:607.593653pt;}
.y63_c01110{bottom:608.216363pt;}
.y62_c01110{bottom:608.477428pt;}
.y61_c01110{bottom:609.099096pt;}
.y60_c01110{bottom:609.354513pt;}
.y2_c01110{bottom:627.360000pt;}
.y5f_c01110{bottom:636.731984pt;}
.y5e_c01110{bottom:637.163705pt;}
.y5d_c01110{bottom:637.527343pt;}
.y5c_c01110{bottom:637.800012pt;}
.y5b_c01110{bottom:638.245537pt;}
.y5a_c01110{bottom:638.519425pt;}
.y59_c01110{bottom:639.044960pt;}
.y58_c01110{bottom:639.310720pt;}
.y57_c01110{bottom:640.114383pt;}
.y56_c01110{bottom:640.630793pt;}
.y55_c01110{bottom:641.332397pt;}
.y54_c01110{bottom:641.518016pt;}
.y53_c01110{bottom:669.011056pt;}
.y52_c01110{bottom:669.884984pt;}
.y51_c01110{bottom:670.325893pt;}
.y50_c01110{bottom:671.292221pt;}
.y4f_c01110{bottom:671.843981pt;}
.y4e_c01110{bottom:672.168628pt;}
.y4d_c01110{bottom:673.251043pt;}
.y4c_c01110{bottom:673.681333pt;}
.y4a_c01110{bottom:703.782633pt;}
.y49_c01110{bottom:703.783167pt;}
.y4b_c01110{bottom:703.783173pt;}
.y48_c01110{bottom:703.783300pt;}
.y47_c01110{bottom:703.783827pt;}
.y46_c01110{bottom:732.475353pt;}
.y45_c01110{bottom:733.182033pt;}
.y44_c01110{bottom:733.895840pt;}
.y43_c01110{bottom:734.369280pt;}
.y42_c01110{bottom:734.658480pt;}
.y41_c01110{bottom:735.489547pt;}
.y40_c01110{bottom:735.716373pt;}
.y3f_c01110{bottom:735.839560pt;}
.y3e_c01110{bottom:764.367573pt;}
.y3d_c01110{bottom:764.517513pt;}
.y3c_c01110{bottom:764.809113pt;}
.y3b_c01110{bottom:765.165573pt;}
.y3a_c01110{bottom:765.303533pt;}
.y39_c01110{bottom:765.655220pt;}
.y38_c01110{bottom:765.854353pt;}
.y37_c01110{bottom:766.002053pt;}
.y36_c01110{bottom:766.443627pt;}
.y35_c01110{bottom:766.641613pt;}
.y34_c01110{bottom:767.280000pt;}
.y33_c01110{bottom:796.818113pt;}
.y32_c01110{bottom:797.216540pt;}
.y31_c01110{bottom:797.414547pt;}
.y30_c01110{bottom:797.856160pt;}
.y2f_c01110{bottom:798.096093pt;}
.y2e_c01110{bottom:798.595373pt;}
.y2d_c01110{bottom:798.742973pt;}
.y2c_c01110{bottom:799.208567pt;}
.y2b_c01110{bottom:799.374073pt;}
.y2a_c01110{bottom:799.440000pt;}
.y29_c01110{bottom:829.369333pt;}
.y28_c01110{bottom:857.924715pt;}
.y27_c01110{bottom:858.068163pt;}
.y26_c01110{bottom:858.362296pt;}
.y25_c01110{bottom:858.512899pt;}
.y24_c01110{bottom:858.713395pt;}
.y23_c01110{bottom:859.111755pt;}
.y22_c01110{bottom:859.408699pt;}
.y21_c01110{bottom:859.555045pt;}
.y20_c01110{bottom:859.944272pt;}
.y1f_c01110{bottom:860.187251pt;}
.y1e_c01110{bottom:860.488699pt;}
.y1d_c01110{bottom:860.631947pt;}
.y1c_c01110{bottom:860.880781pt;}
.y10_c01110{bottom:891.118597pt;}
.yf_c01110{bottom:891.118696pt;}
.y11_c01110{bottom:891.119131pt;}
.y14_c01110{bottom:891.119261pt;}
.y12_c01110{bottom:891.119405pt;}
.y15_c01110{bottom:891.119483pt;}
.y13_c01110{bottom:891.119787pt;}
.y16_c01110{bottom:891.120077pt;}
.y19_c01110{bottom:891.120299pt;}
.y1b_c01110{bottom:891.120315pt;}
.y17_c01110{bottom:891.120451pt;}
.y18_c01110{bottom:891.120512pt;}
.y1a_c01110{bottom:891.120627pt;}
.ye_c01110{bottom:922.290736pt;}
.yd_c01110{bottom:922.464976pt;}
.yc_c01110{bottom:922.882576pt;}
.yb_c01110{bottom:922.994792pt;}
.ya_c01110{bottom:923.706304pt;}
.y9_c01110{bottom:924.237544pt;}
.y8_c01110{bottom:924.535736pt;}
.y7_c01110{bottom:924.720000pt;}
.y6_c01110{bottom:955.201333pt;}
.y5_c01110{bottom:985.809333pt;}
.y4_c01110{bottom:1017.950667pt;}
.y3_c01110{bottom:1068.854667pt;}
.h2_c01110{height:16.000000pt;}
.hd_c01110{height:58.670216pt;}
.h4_c01110{height:64.000000pt;}
.hb_c01110{height:64.000800pt;}
.h6_c01110{height:64.001152pt;}
.h15_c01110{height:64.003200pt;}
.hc_c01110{height:64.003872pt;}
.hf_c01110{height:64.004608pt;}
.h12_c01110{height:64.009247pt;}
.h5_c01110{height:69.333333pt;}
.h9_c01110{height:69.334200pt;}
.h7_c01110{height:69.334581pt;}
.h11_c01110{height:69.337528pt;}
.h10_c01110{height:69.342207pt;}
.h13_c01110{height:69.343351pt;}
.h16_c01110{height:69.356764pt;}
.h8_c01110{height:74.666667pt;}
.ha_c01110{height:74.667600pt;}
.h3_c01110{height:80.000000pt;}
.he_c01110{height:80.004840pt;}
.h14_c01110{height:90.679767pt;}
.h0_c01110{height:1107.840000pt;}
.h1_c01110{height:1108.000000pt;}
.w0_c01110{width:824.400000pt;}
.w1_c01110{width:824.666667pt;}
.x0_c01110{left:0.000000pt;}
.x2_c01110{left:4.800000pt;}
.x1_c01110{left:5.760000pt;}
.x35_c01110{left:141.809333pt;}
.x78_c01110{left:151.440000pt;}
.x15_c01110{left:153.360000pt;}
.x4_c01110{left:154.800000pt;}
.x65_c01110{left:163.305333pt;}
.x3f_c01110{left:174.664053pt;}
.x4e_c01110{left:182.029319pt;}
.x51_c01110{left:183.993084pt;}
.x36_c01110{left:188.096000pt;}
.xe_c01110{left:192.960000pt;}
.x7c_c01110{left:201.954667pt;}
.x29_c01110{left:203.465784pt;}
.x75_c01110{left:211.957397pt;}
.x5_c01110{left:212.880000pt;}
.x79_c01110{left:214.320000pt;}
.x42_c01110{left:222.720260pt;}
.x7f_c01110{left:224.632000pt;}
.x30_c01110{left:231.600000pt;}
.xf_c01110{left:232.560000pt;}
.x62_c01110{left:240.072000pt;}
.x43_c01110{left:241.680733pt;}
.x6_c01110{left:242.640000pt;}
.x1b_c01110{left:250.732000pt;}
.x48_c01110{left:252.593996pt;}
.x21_c01110{left:261.120109pt;}
.x7a_c01110{left:266.880000pt;}
.x6a_c01110{left:270.374924pt;}
.x10_c01110{left:271.920000pt;}
.x4f_c01110{left:280.098141pt;}
.x7_c01110{left:281.760000pt;}
.x7b_c01110{left:286.800000pt;}
.x44_c01110{left:290.268000pt;}
.x2a_c01110{left:292.248979pt;}
.x5c_c01110{left:296.705723pt;}
.x76_c01110{left:300.050071pt;}
.x63_c01110{left:301.030667pt;}
.x8_c01110{left:310.800000pt;}
.x69_c01110{left:319.540015pt;}
.x39_c01110{left:320.570667pt;}
.x5d_c01110{left:330.114456pt;}
.x1c_c01110{left:331.141333pt;}
.x70_c01110{left:338.786600pt;}
.x52_c01110{left:339.754232pt;}
.x2b_c01110{left:340.967941pt;}
.x22_c01110{left:349.680635pt;}
.x40_c01110{left:351.041840pt;}
.x53_c01110{left:359.653559pt;}
.x7d_c01110{left:361.312000pt;}
.x5e_c01110{left:368.760640pt;}
.x3_c01110{left:370.080000pt;}
.x64_c01110{left:378.328000pt;}
.x16_c01110{left:380.640000pt;}
.x45_c01110{left:388.669333pt;}
.x23_c01110{left:398.881069pt;}
.x57_c01110{left:400.350975pt;}
.x17_c01110{left:408.960000pt;}
.x37_c01110{left:410.590667pt;}
.x66_c01110{left:417.649333pt;}
.x11_c01110{left:418.800000pt;}
.x49_c01110{left:428.764535pt;}
.x3a_c01110{left:438.425333pt;}
.x2c_c01110{left:448.008581pt;}
.x9_c01110{left:450.240000pt;}
.x6d_c01110{left:457.238667pt;}
.x24_c01110{left:458.401880pt;}
.x31_c01110{left:459.360000pt;}
.x18_c01110{left:468.240000pt;}
.x71_c01110{left:477.049081pt;}
.x3b_c01110{left:478.252000pt;}
.x4a_c01110{left:487.087144pt;}
.x6e_c01110{left:488.250667pt;}
.x58_c01110{left:497.405641pt;}
.x54_c01110{left:507.041080pt;}
.xa_c01110{left:508.080000pt;}
.x59_c01110{left:516.569641pt;}
.x4b_c01110{left:517.562485pt;}
.x19_c01110{left:518.640000pt;}
.x7e_c01110{left:526.696000pt;}
.x12_c01110{left:528.480000pt;}
.x50_c01110{left:537.030455pt;}
.x1d_c01110{left:538.266667pt;}
.x6b_c01110{left:545.652017pt;}
.x38_c01110{left:546.900000pt;}
.x3c_c01110{left:548.589333pt;}
.x1e_c01110{left:556.969333pt;}
.x13_c01110{left:558.480000pt;}
.x5f_c01110{left:565.832981pt;}
.x25_c01110{left:567.123133pt;}
.x1a_c01110{left:568.320000pt;}
.x3d_c01110{left:576.181333pt;}
.x6c_c01110{left:585.946685pt;}
.x2d_c01110{left:587.226755pt;}
.x67_c01110{left:595.309333pt;}
.x46_c01110{left:596.273333pt;}
.x26_c01110{left:597.604229pt;}
.x72_c01110{left:605.438785pt;}
.x5a_c01110{left:615.229641pt;}
.xb_c01110{left:617.520000pt;}
.x73_c01110{left:625.564145pt;}
.x1f_c01110{left:626.569333pt;}
.x32_c01110{left:636.480000pt;}
.x4c_c01110{left:637.610444pt;}
.x5b_c01110{left:644.518975pt;}
.x60_c01110{left:645.512060pt;}
.x14_c01110{left:646.560000pt;}
.x3e_c01110{left:647.473333pt;}
.x74_c01110{left:654.410117pt;}
.x20_c01110{left:655.609333pt;}
.x27_c01110{left:656.885032pt;}
.x33_c01110{left:666.240000pt;}
.x47_c01110{left:675.721333pt;}
.x4d_c01110{left:685.586167pt;}
.xc_c01110{left:687.120000pt;}
.x68_c01110{left:695.198667pt;}
.x55_c01110{left:696.163313pt;}
.x56_c01110{left:705.080524pt;}
.xd_c01110{left:706.320000pt;}
.x41_c01110{left:715.132027pt;}
.x2e_c01110{left:716.099523pt;}
.x77_c01110{left:724.702948pt;}
.x34_c01110{left:725.760000pt;}
.x61_c01110{left:734.347359pt;}
.x28_c01110{left:735.606531pt;}
.x2f_c01110{left:744.674357pt;}
.x6f_c01110{left:752.729333pt;}
}





/* 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_c01111 {
    display:none;
  }
  .loading-indicator_c01111.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01111 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_c01111 { 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_c01111" -> "#page-container .classname_c01111")
 */
.pf_c01111 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01111 { /* 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_c01111.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01111 { /* 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_c01111 { /* 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_c01111 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01111 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01111 {overflow:visible;}
  }
}
.c_c01111 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01111 { /* 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_c01111:after { /* webkit #35443 */
  content: '';
}
.t_c01111:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01111 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 */
}
.__c01111 { /* 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_c01111 { /* info for Javascript */
  display:none;
}
.l_c01111 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01111 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01111 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01111: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_c01111 {
    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_c01111.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01111.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_c01111 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01111{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01111;src:url('chunks/assets/font_cfe63ee56e9e10a97d33a3db.woff2')format("woff");}.ff1_c01111{font-family:ff1_c01111;line-height:1.000000;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;}
.m13_c01111{transform:matrix(0.024474,0.000220,-0.002250,0.249990,0,0);-ms-transform:matrix(0.024474,0.000220,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.024474,0.000220,-0.002250,0.249990,0,0);}
.m1f_c01111{transform:matrix(0.196037,0.001764,-0.002250,0.249990,0,0);-ms-transform:matrix(0.196037,0.001764,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.196037,0.001764,-0.002250,0.249990,0,0);}
.m23_c01111{transform:matrix(0.198777,0.001789,-0.002250,0.249990,0,0);-ms-transform:matrix(0.198777,0.001789,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.198777,0.001789,-0.002250,0.249990,0,0);}
.m1d_c01111{transform:matrix(0.202742,0.001825,-0.002250,0.249990,0,0);-ms-transform:matrix(0.202742,0.001825,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.202742,0.001825,-0.002250,0.249990,0,0);}
.m1e_c01111{transform:matrix(0.203867,0.001835,-0.002250,0.249990,0,0);-ms-transform:matrix(0.203867,0.001835,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.203867,0.001835,-0.002250,0.249990,0,0);}
.m22_c01111{transform:matrix(0.211986,0.001908,-0.002250,0.249990,0,0);-ms-transform:matrix(0.211986,0.001908,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.211986,0.001908,-0.002250,0.249990,0,0);}
.m24_c01111{transform:matrix(0.219111,0.001972,-0.002250,0.249990,0,0);-ms-transform:matrix(0.219111,0.001972,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.219111,0.001972,-0.002250,0.249990,0,0);}
.m20_c01111{transform:matrix(0.219616,0.001977,-0.002250,0.249990,0,0);-ms-transform:matrix(0.219616,0.001977,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.219616,0.001977,-0.002250,0.249990,0,0);}
.m2_c01111{transform:matrix(0.231933,0.001855,-0.002000,0.249992,0,0);-ms-transform:matrix(0.231933,0.001855,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.231933,0.001855,-0.002000,0.249992,0,0);}
.m3_c01111{transform:matrix(0.235647,0.001885,-0.002000,0.249992,0,0);-ms-transform:matrix(0.235647,0.001885,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.235647,0.001885,-0.002000,0.249992,0,0);}
.m1b_c01111{transform:matrix(0.242650,0.002184,-0.002250,0.249990,0,0);-ms-transform:matrix(0.242650,0.002184,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.242650,0.002184,-0.002250,0.249990,0,0);}
.m15_c01111{transform:matrix(0.247730,0.002230,-0.002250,0.249990,0,0);-ms-transform:matrix(0.247730,0.002230,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.247730,0.002230,-0.002250,0.249990,0,0);}
.m1_c01111{transform:matrix(0.248852,0.001991,-0.002000,0.249992,0,0);-ms-transform:matrix(0.248852,0.001991,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.248852,0.001991,-0.002000,0.249992,0,0);}
.m2a_c01111{transform:matrix(0.250125,0.002251,-0.002250,0.249990,0,0);-ms-transform:matrix(0.250125,0.002251,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.250125,0.002251,-0.002250,0.249990,0,0);}
.mb_c01111{transform:matrix(0.253137,0.002025,-0.002000,0.249992,0,0);-ms-transform:matrix(0.253137,0.002025,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.253137,0.002025,-0.002000,0.249992,0,0);}
.m17_c01111{transform:matrix(0.256740,0.002311,-0.002250,0.249990,0,0);-ms-transform:matrix(0.256740,0.002311,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.256740,0.002311,-0.002250,0.249990,0,0);}
.m25_c01111{transform:matrix(0.258675,0.002328,-0.002250,0.249990,0,0);-ms-transform:matrix(0.258675,0.002328,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.258675,0.002328,-0.002250,0.249990,0,0);}
.m8_c01111{transform:matrix(0.262357,0.002099,-0.002000,0.249992,0,0);-ms-transform:matrix(0.262357,0.002099,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.262357,0.002099,-0.002000,0.249992,0,0);}
.m12_c01111{transform:matrix(0.263994,0.002376,-0.002250,0.249990,0,0);-ms-transform:matrix(0.263994,0.002376,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.263994,0.002376,-0.002250,0.249990,0,0);}
.m21_c01111{transform:matrix(0.265754,0.002392,-0.002250,0.249990,0,0);-ms-transform:matrix(0.265754,0.002392,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.265754,0.002392,-0.002250,0.249990,0,0);}
.m1a_c01111{transform:matrix(0.276549,0.002489,-0.002250,0.249990,0,0);-ms-transform:matrix(0.276549,0.002489,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.276549,0.002489,-0.002250,0.249990,0,0);}
.m11_c01111{transform:matrix(0.276934,0.002492,-0.002250,0.249990,0,0);-ms-transform:matrix(0.276934,0.002492,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.276934,0.002492,-0.002250,0.249990,0,0);}
.m18_c01111{transform:matrix(0.278279,0.002505,-0.002250,0.249990,0,0);-ms-transform:matrix(0.278279,0.002505,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.278279,0.002505,-0.002250,0.249990,0,0);}
.m16_c01111{transform:matrix(0.278524,0.002507,-0.002250,0.249990,0,0);-ms-transform:matrix(0.278524,0.002507,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.278524,0.002507,-0.002250,0.249990,0,0);}
.m14_c01111{transform:matrix(0.279599,0.002516,-0.002250,0.249990,0,0);-ms-transform:matrix(0.279599,0.002516,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.279599,0.002516,-0.002250,0.249990,0,0);}
.m4_c01111{transform:matrix(0.280326,0.002243,-0.002000,0.249992,0,0);-ms-transform:matrix(0.280326,0.002243,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.280326,0.002243,-0.002000,0.249992,0,0);}
.m1c_c01111{transform:matrix(0.280524,0.002525,-0.002250,0.249990,0,0);-ms-transform:matrix(0.280524,0.002525,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.280524,0.002525,-0.002250,0.249990,0,0);}
.m6_c01111{transform:matrix(0.282566,0.002261,-0.002000,0.249992,0,0);-ms-transform:matrix(0.282566,0.002261,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.282566,0.002261,-0.002000,0.249992,0,0);}
.mc_c01111{transform:matrix(0.287941,0.002304,-0.002000,0.249992,0,0);-ms-transform:matrix(0.287941,0.002304,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.287941,0.002304,-0.002000,0.249992,0,0);}
.me_c01111{transform:matrix(0.325665,0.002605,-0.002000,0.249992,0,0);-ms-transform:matrix(0.325665,0.002605,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.325665,0.002605,-0.002000,0.249992,0,0);}
.md_c01111{transform:matrix(0.332694,0.002662,-0.002000,0.249992,0,0);-ms-transform:matrix(0.332694,0.002662,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.332694,0.002662,-0.002000,0.249992,0,0);}
.ma_c01111{transform:matrix(0.357799,0.002862,-0.002000,0.249992,0,0);-ms-transform:matrix(0.357799,0.002862,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.357799,0.002862,-0.002000,0.249992,0,0);}
.m7_c01111{transform:matrix(0.381868,0.003055,-0.002000,0.249992,0,0);-ms-transform:matrix(0.381868,0.003055,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.381868,0.003055,-0.002000,0.249992,0,0);}
.m27_c01111{transform:matrix(0.385374,0.003468,-0.002250,0.249990,0,0);-ms-transform:matrix(0.385374,0.003468,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.385374,0.003468,-0.002250,0.249990,0,0);}
.m2e_c01111{transform:matrix(0.414018,0.003726,-0.002250,0.249990,0,0);-ms-transform:matrix(0.414018,0.003726,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.414018,0.003726,-0.002250,0.249990,0,0);}
.m0_c01111{transform:matrix(0.424521,0.003396,-0.002000,0.249992,0,0);-ms-transform:matrix(0.424521,0.003396,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.424521,0.003396,-0.002000,0.249992,0,0);}
.m10_c01111{transform:matrix(0.445207,0.004007,-0.002250,0.249990,0,0);-ms-transform:matrix(0.445207,0.004007,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.445207,0.004007,-0.002250,0.249990,0,0);}
.mf_c01111{transform:matrix(0.451001,0.003608,-0.002000,0.249992,0,0);-ms-transform:matrix(0.451001,0.003608,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.451001,0.003608,-0.002000,0.249992,0,0);}
.m2c_c01111{transform:matrix(0.464481,0.004180,-0.002250,0.249990,0,0);-ms-transform:matrix(0.464481,0.004180,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.464481,0.004180,-0.002250,0.249990,0,0);}
.m9_c01111{transform:matrix(0.475970,0.003808,-0.002000,0.249992,0,0);-ms-transform:matrix(0.475970,0.003808,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.475970,0.003808,-0.002000,0.249992,0,0);}
.m2d_c01111{transform:matrix(0.525004,0.004725,-0.002250,0.249990,0,0);-ms-transform:matrix(0.525004,0.004725,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.525004,0.004725,-0.002250,0.249990,0,0);}
.m19_c01111{transform:matrix(0.537988,0.004842,-0.002250,0.249990,0,0);-ms-transform:matrix(0.537988,0.004842,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.537988,0.004842,-0.002250,0.249990,0,0);}
.m29_c01111{transform:matrix(0.560642,0.005046,-0.002250,0.249990,0,0);-ms-transform:matrix(0.560642,0.005046,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.560642,0.005046,-0.002250,0.249990,0,0);}
.m5_c01111{transform:matrix(0.665844,0.005327,-0.002000,0.249992,0,0);-ms-transform:matrix(0.665844,0.005327,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.665844,0.005327,-0.002000,0.249992,0,0);}
.m2b_c01111{transform:matrix(0.700757,0.006307,-0.002250,0.249990,0,0);-ms-transform:matrix(0.700757,0.006307,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.700757,0.006307,-0.002250,0.249990,0,0);}
.m2f_c01111{transform:matrix(0.762334,0.006861,-0.002250,0.249990,0,0);-ms-transform:matrix(0.762334,0.006861,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.762334,0.006861,-0.002250,0.249990,0,0);}
.m26_c01111{transform:matrix(0.871975,0.007848,-0.002250,0.249990,0,0);-ms-transform:matrix(0.871975,0.007848,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.871975,0.007848,-0.002250,0.249990,0,0);}
.m28_c01111{transform:matrix(0.984085,0.008857,-0.002250,0.249990,0,0);-ms-transform:matrix(0.984085,0.008857,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.984085,0.008857,-0.002250,0.249990,0,0);}
.m30_c01111{transform:matrix(1.162888,0.010466,-0.002250,0.249990,0,0);-ms-transform:matrix(1.162888,0.010466,-0.002250,0.249990,0,0);-webkit-transform:matrix(1.162888,0.010466,-0.002250,0.249990,0,0);}
.v0_c01111{vertical-align:0.000000px;}
.ls0_c01111{letter-spacing:0.000000px;}
.sc__c01111{text-shadow:none;}
.sc0_c01111{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__c01111{-webkit-text-stroke:0px transparent;}
.sc0_c01111{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01111{word-spacing:0.000000px;}
.fc0_c01111{color:transparent;}
.fs1_c01111{font-size:72.002304px;}
.fs4_c01111{font-size:72.002916px;}
.fs2_c01111{font-size:78.003159px;}
.fs0_c01111{font-size:96.003072px;}
.fs3_c01111{font-size:102.004131px;}
.y0_c01111{bottom:0.000000px;}
.y31_c01111{bottom:862.594898px;}
.y30_c01111{bottom:862.797689px;}
.y2f_c01111{bottom:863.422533px;}
.y2e_c01111{bottom:863.577678px;}
.y2d_c01111{bottom:863.834226px;}
.y2c_c01111{bottom:864.419307px;}
.y2b_c01111{bottom:864.502346px;}
.y2a_c01111{bottom:864.956232px;}
.y29_c01111{bottom:865.476965px;}
.y28_c01111{bottom:865.559868px;}
.y27_c01111{bottom:865.941942px;}
.y21_c01111{bottom:901.382658px;}
.y20_c01111{bottom:901.382705px;}
.y24_c01111{bottom:901.382843px;}
.y1e_c01111{bottom:901.382907px;}
.y22_c01111{bottom:901.382939px;}
.y23_c01111{bottom:901.382952px;}
.y25_c01111{bottom:901.382976px;}
.y1f_c01111{bottom:901.383428px;}
.y26_c01111{bottom:901.383617px;}
.y1d_c01111{bottom:931.729578px;}
.y1c_c01111{bottom:932.044236px;}
.y1b_c01111{bottom:933.034515px;}
.y1a_c01111{bottom:933.246330px;}
.y19_c01111{bottom:933.811602px;}
.y18_c01111{bottom:934.289813px;}
.y17_c01111{bottom:935.092779px;}
.y16_c01111{bottom:935.429226px;}
.y15_c01111{bottom:936.072312px;}
.y14_c01111{bottom:936.225308px;}
.y13_c01111{bottom:936.415631px;}
.y12_c01111{bottom:936.435881px;}
.y11_c01111{bottom:937.032000px;}
.y10_c01111{bottom:1041.783288px;}
.ye_c01111{bottom:1041.783732px;}
.yf_c01111{bottom:1041.783876px;}
.ya_c01111{bottom:1041.784068px;}
.yb_c01111{bottom:1041.784140px;}
.yd_c01111{bottom:1041.784416px;}
.yc_c01111{bottom:1041.784764px;}
.y9_c01111{bottom:1075.263144px;}
.y8_c01111{bottom:1075.961280px;}
.y7_c01111{bottom:1076.310996px;}
.y6_c01111{bottom:1076.933400px;}
.y5_c01111{bottom:1077.209040px;}
.y4_c01111{bottom:1077.718752px;}
.y3_c01111{bottom:1078.150716px;}
.y2_c01111{bottom:1078.652076px;}
.y1_c01111{bottom:1079.097000px;}
.h3_c01111{height:72.002304px;}
.h6_c01111{height:72.002916px;}
.h4_c01111{height:78.003159px;}
.h2_c01111{height:96.003072px;}
.h5_c01111{height:102.004131px;}
.h0_c01111{height:1246.320000px;}
.h1_c01111{height:1246.500000px;}
.w0_c01111{width:927.450000px;}
.w1_c01111{width:927.750000px;}
.x0_c01111{left:0.000000px;}
.x23_c01111{left:49.793565px;}
.x1d_c01111{left:80.730013px;}
.x24_c01111{left:113.581293px;}
.x10_c01111{left:119.877000px;}
.x25_c01111{left:127.293158px;}
.x11_c01111{left:186.112500px;}
.x12_c01111{left:188.362500px;}
.xa_c01111{left:193.045728px;}
.x13_c01111{left:209.509500px;}
.x26_c01111{left:213.987993px;}
.x14_c01111{left:226.509000px;}
.x1_c01111{left:236.605500px;}
.x1e_c01111{left:280.268673px;}
.x27_c01111{left:289.588532px;}
.x2_c01111{left:292.221000px;}
.x15_c01111{left:297.963000px;}
.x28_c01111{left:303.315396px;}
.xb_c01111{left:307.528560px;}
.x1f_c01111{left:318.610278px;}
.xc_c01111{left:333.448716px;}
.x16_c01111{left:335.346000px;}
.x3_c01111{left:354.891000px;}
.x29_c01111{left:400.827029px;}
.x4_c01111{left:408.886500px;}
.x20_c01111{left:421.754134px;}
.x17_c01111{left:424.564500px;}
.x2a_c01111{left:443.500176px;}
.xd_c01111{left:466.292712px;}
.x2b_c01111{left:469.405878px;}
.x5_c01111{left:472.600500px;}
.x21_c01111{left:475.757008px;}
.x18_c01111{left:477.699000px;}
.x6_c01111{left:507.055500px;}
.x19_c01111{left:540.507000px;}
.xe_c01111{left:558.905640px;}
.x1a_c01111{left:564.042000px;}
.x2c_c01111{left:573.669200px;}
.x7_c01111{left:584.856000px;}
.x2d_c01111{left:607.369104px;}
.xf_c01111{left:615.607764px;}
.x8_c01111{left:628.570500px;}
.x1b_c01111{left:674.073000px;}
.x1c_c01111{left:709.035000px;}
.x9_c01111{left:715.837500px;}
.x22_c01111{left:719.036219px;}
@media print{
.v0_c01111{vertical-align:0.000000pt;}
.ls0_c01111{letter-spacing:0.000000pt;}
.ws0_c01111{word-spacing:0.000000pt;}
.fs1_c01111{font-size:64.002048pt;}
.fs4_c01111{font-size:64.002592pt;}
.fs2_c01111{font-size:69.336141pt;}
.fs0_c01111{font-size:85.336064pt;}
.fs3_c01111{font-size:90.670339pt;}
.y0_c01111{bottom:0.000000pt;}
.y31_c01111{bottom:766.751020pt;}
.y30_c01111{bottom:766.931279pt;}
.y2f_c01111{bottom:767.486696pt;}
.y2e_c01111{bottom:767.624603pt;}
.y2d_c01111{bottom:767.852645pt;}
.y2c_c01111{bottom:768.372717pt;}
.y2b_c01111{bottom:768.446529pt;}
.y2a_c01111{bottom:768.849984pt;}
.y29_c01111{bottom:769.312857pt;}
.y28_c01111{bottom:769.386549pt;}
.y27_c01111{bottom:769.726171pt;}
.y21_c01111{bottom:801.229029pt;}
.y20_c01111{bottom:801.229071pt;}
.y24_c01111{bottom:801.229193pt;}
.y1e_c01111{bottom:801.229251pt;}
.y22_c01111{bottom:801.229279pt;}
.y23_c01111{bottom:801.229291pt;}
.y25_c01111{bottom:801.229312pt;}
.y1f_c01111{bottom:801.229713pt;}
.y26_c01111{bottom:801.229881pt;}
.y1d_c01111{bottom:828.204069pt;}
.y1c_c01111{bottom:828.483765pt;}
.y1b_c01111{bottom:829.364013pt;}
.y1a_c01111{bottom:829.552293pt;}
.y19_c01111{bottom:830.054757pt;}
.y18_c01111{bottom:830.479833pt;}
.y17_c01111{bottom:831.193581pt;}
.y16_c01111{bottom:831.492645pt;}
.y15_c01111{bottom:832.064277pt;}
.y14_c01111{bottom:832.200273pt;}
.y13_c01111{bottom:832.369449pt;}
.y12_c01111{bottom:832.387449pt;}
.y11_c01111{bottom:832.917333pt;}
.y10_c01111{bottom:926.029589pt;}
.ye_c01111{bottom:926.029984pt;}
.yf_c01111{bottom:926.030112pt;}
.ya_c01111{bottom:926.030283pt;}
.yb_c01111{bottom:926.030347pt;}
.yd_c01111{bottom:926.030592pt;}
.yc_c01111{bottom:926.030901pt;}
.y9_c01111{bottom:955.789461pt;}
.y8_c01111{bottom:956.410027pt;}
.y7_c01111{bottom:956.720885pt;}
.y6_c01111{bottom:957.274133pt;}
.y5_c01111{bottom:957.519147pt;}
.y4_c01111{bottom:957.972224pt;}
.y3_c01111{bottom:958.356192pt;}
.y2_c01111{bottom:958.801845pt;}
.y1_c01111{bottom:959.197333pt;}
.h3_c01111{height:64.002048pt;}
.h6_c01111{height:64.002592pt;}
.h4_c01111{height:69.336141pt;}
.h2_c01111{height:85.336064pt;}
.h5_c01111{height:90.670339pt;}
.h0_c01111{height:1107.840000pt;}
.h1_c01111{height:1108.000000pt;}
.w0_c01111{width:824.400000pt;}
.w1_c01111{width:824.666667pt;}
.x0_c01111{left:0.000000pt;}
.x23_c01111{left:44.260947pt;}
.x1d_c01111{left:71.760012pt;}
.x24_c01111{left:100.961149pt;}
.x10_c01111{left:106.557333pt;}
.x25_c01111{left:113.149473pt;}
.x11_c01111{left:165.433333pt;}
.x12_c01111{left:167.433333pt;}
.xa_c01111{left:171.596203pt;}
.x13_c01111{left:186.230667pt;}
.x26_c01111{left:190.211549pt;}
.x14_c01111{left:201.341333pt;}
.x1_c01111{left:210.316000pt;}
.x1e_c01111{left:249.127709pt;}
.x27_c01111{left:257.412028pt;}
.x2_c01111{left:259.752000pt;}
.x15_c01111{left:264.856000pt;}
.x28_c01111{left:269.613685pt;}
.xb_c01111{left:273.358720pt;}
.x1f_c01111{left:283.209136pt;}
.xc_c01111{left:296.398859pt;}
.x16_c01111{left:298.085333pt;}
.x3_c01111{left:315.458667pt;}
.x29_c01111{left:356.290692pt;}
.x4_c01111{left:363.454667pt;}
.x20_c01111{left:374.892564pt;}
.x17_c01111{left:377.390667pt;}
.x2a_c01111{left:394.222379pt;}
.xd_c01111{left:414.482411pt;}
.x2b_c01111{left:417.249669pt;}
.x5_c01111{left:420.089333pt;}
.x21_c01111{left:422.895119pt;}
.x18_c01111{left:424.621333pt;}
.x6_c01111{left:450.716000pt;}
.x19_c01111{left:480.450667pt;}
.xe_c01111{left:496.805013pt;}
.x1a_c01111{left:501.370667pt;}
.x2c_c01111{left:509.928177pt;}
.x7_c01111{left:519.872000pt;}
.x2d_c01111{left:539.883648pt;}
.xf_c01111{left:547.206901pt;}
.x8_c01111{left:558.729333pt;}
.x1b_c01111{left:599.176000pt;}
.x1c_c01111{left:630.253333pt;}
.x9_c01111{left:636.300000pt;}
.x22_c01111{left:639.143305pt;}
}





/* 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_c01112 {
    display:none;
  }
  .loading-indicator_c01112.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01112 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_c01112 { 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_c01112" -> "#page-container .classname_c01112")
 */
.pf_c01112 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01112 { /* 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_c01112.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01112 { /* 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_c01112 { /* 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_c01112 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01112 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01112 {overflow:visible;}
  }
}
.c_c01112 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01112 { /* 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_c01112:after { /* webkit #35443 */
  content: '';
}
.t_c01112:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01112 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 */
}
.__c01112 { /* 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_c01112 { /* info for Javascript */
  display:none;
}
.l_c01112 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01112 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01112 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01112: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_c01112 {
    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_c01112.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01112.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_c01112 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01112{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01112;src:url('chunks/assets/font_c605e72f209fc835e906f064.woff2')format("woff");}.ff1_c01112{font-family:ff1_c01112;line-height:1.000000;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;}
.me2_c01112{transform:matrix(0.125169,0.001252,-0.002500,0.249988,0,0);-ms-transform:matrix(0.125169,0.001252,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.125169,0.001252,-0.002500,0.249988,0,0);}
.m87_c01112{transform:matrix(0.127268,0.001782,-0.003500,0.249976,0,0);-ms-transform:matrix(0.127268,0.001782,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.127268,0.001782,-0.003500,0.249976,0,0);}
.m3_c01112{transform:matrix(0.134105,0.001609,-0.003000,0.249982,0,0);-ms-transform:matrix(0.134105,0.001609,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.134105,0.001609,-0.003000,0.249982,0,0);}
.mf9_c01112{transform:matrix(0.138708,0.001387,-0.002500,0.249988,0,0);-ms-transform:matrix(0.138708,0.001387,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.138708,0.001387,-0.002500,0.249988,0,0);}
.m5e_c01112{transform:matrix(0.140320,0.001684,-0.003000,0.249982,0,0);-ms-transform:matrix(0.140320,0.001684,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.140320,0.001684,-0.003000,0.249982,0,0);}
.m93_c01112{transform:matrix(0.146176,0.002046,-0.003500,0.249976,0,0);-ms-transform:matrix(0.146176,0.002046,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.146176,0.002046,-0.003500,0.249976,0,0);}
.m12e_c01112{transform:matrix(0.148891,0.001638,-0.002750,0.249985,0,0);-ms-transform:matrix(0.148891,0.001638,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.148891,0.001638,-0.002750,0.249985,0,0);}
.m99_c01112{transform:matrix(0.159589,0.002234,-0.003500,0.249976,0,0);-ms-transform:matrix(0.159589,0.002234,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.159589,0.002234,-0.003500,0.249976,0,0);}
.m130_c01112{transform:matrix(0.161520,0.001777,-0.002750,0.249985,0,0);-ms-transform:matrix(0.161520,0.001777,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.161520,0.001777,-0.002750,0.249985,0,0);}
.m95_c01112{transform:matrix(0.163949,0.002295,-0.003500,0.249976,0,0);-ms-transform:matrix(0.163949,0.002295,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.163949,0.002295,-0.003500,0.249976,0,0);}
.m6c_c01112{transform:matrix(0.164134,0.002626,-0.003999,0.249968,0,0);-ms-transform:matrix(0.164134,0.002626,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.164134,0.002626,-0.003999,0.249968,0,0);}
.m131_c01112{transform:matrix(0.167655,0.001844,-0.002750,0.249985,0,0);-ms-transform:matrix(0.167655,0.001844,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.167655,0.001844,-0.002750,0.249985,0,0);}
.m64_c01112{transform:matrix(0.169855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169855,0.000000,0.000000,0.250000,0,0);}
.m66_c01112{transform:matrix(0.170240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170240,0.000000,0.000000,0.250000,0,0);}
.m70_c01112{transform:matrix(0.170308,0.002725,-0.003999,0.249968,0,0);-ms-transform:matrix(0.170308,0.002725,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.170308,0.002725,-0.003999,0.249968,0,0);}
.m12d_c01112{transform:matrix(0.172550,0.001898,-0.002750,0.249985,0,0);-ms-transform:matrix(0.172550,0.001898,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.172550,0.001898,-0.002750,0.249985,0,0);}
.m21_c01112{transform:matrix(0.173573,0.002083,-0.003000,0.249982,0,0);-ms-transform:matrix(0.173573,0.002083,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.173573,0.002083,-0.003000,0.249982,0,0);}
.m12f_c01112{transform:matrix(0.174179,0.001916,-0.002750,0.249985,0,0);-ms-transform:matrix(0.174179,0.001916,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.174179,0.001916,-0.002750,0.249985,0,0);}
.m81_c01112{transform:matrix(0.174718,0.002795,-0.003999,0.249968,0,0);-ms-transform:matrix(0.174718,0.002795,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.174718,0.002795,-0.003999,0.249968,0,0);}
.m9e_c01112{transform:matrix(0.175238,0.002453,-0.003500,0.249976,0,0);-ms-transform:matrix(0.175238,0.002453,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.175238,0.002453,-0.003500,0.249976,0,0);}
.m86_c01112{transform:matrix(0.175488,0.002808,-0.003999,0.249968,0,0);-ms-transform:matrix(0.175488,0.002808,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.175488,0.002808,-0.003999,0.249968,0,0);}
.m69_c01112{transform:matrix(0.176027,0.002816,-0.003999,0.249968,0,0);-ms-transform:matrix(0.176027,0.002816,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.176027,0.002816,-0.003999,0.249968,0,0);}
.med_c01112{transform:matrix(0.176071,0.001761,-0.002500,0.249988,0,0);-ms-transform:matrix(0.176071,0.001761,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.176071,0.001761,-0.002500,0.249988,0,0);}
.m97_c01112{transform:matrix(0.176383,0.002469,-0.003500,0.249976,0,0);-ms-transform:matrix(0.176383,0.002469,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.176383,0.002469,-0.003500,0.249976,0,0);}
.m67_c01112{transform:matrix(0.176705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176705,0.000000,0.000000,0.250000,0,0);}
.m84_c01112{transform:matrix(0.177867,0.002846,-0.003999,0.249968,0,0);-ms-transform:matrix(0.177867,0.002846,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.177867,0.002846,-0.003999,0.249968,0,0);}
.m6f_c01112{transform:matrix(0.178277,0.002852,-0.003999,0.249968,0,0);-ms-transform:matrix(0.178277,0.002852,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.178277,0.002852,-0.003999,0.249968,0,0);}
.m9b_c01112{transform:matrix(0.179682,0.002516,-0.003500,0.249976,0,0);-ms-transform:matrix(0.179682,0.002516,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.179682,0.002516,-0.003500,0.249976,0,0);}
.m6d_c01112{transform:matrix(0.180197,0.002883,-0.003999,0.249968,0,0);-ms-transform:matrix(0.180197,0.002883,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.180197,0.002883,-0.003999,0.249968,0,0);}
.mef_c01112{transform:matrix(0.180271,0.001803,-0.002500,0.249988,0,0);-ms-transform:matrix(0.180271,0.001803,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.180271,0.001803,-0.002500,0.249988,0,0);}
.m9c_c01112{transform:matrix(0.180292,0.002524,-0.003500,0.249976,0,0);-ms-transform:matrix(0.180292,0.002524,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.180292,0.002524,-0.003500,0.249976,0,0);}
.m7f_c01112{transform:matrix(0.180457,0.002887,-0.003999,0.249968,0,0);-ms-transform:matrix(0.180457,0.002887,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.180457,0.002887,-0.003999,0.249968,0,0);}
.mdf_c01112{transform:matrix(0.181386,0.001814,-0.002500,0.249988,0,0);-ms-transform:matrix(0.181386,0.001814,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.181386,0.001814,-0.002500,0.249988,0,0);}
.m7c_c01112{transform:matrix(0.181737,0.002908,-0.003999,0.249968,0,0);-ms-transform:matrix(0.181737,0.002908,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.181737,0.002908,-0.003999,0.249968,0,0);}
.m7d_c01112{transform:matrix(0.182302,0.002917,-0.003999,0.249968,0,0);-ms-transform:matrix(0.182302,0.002917,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.182302,0.002917,-0.003999,0.249968,0,0);}
.m9a_c01112{transform:matrix(0.183022,0.002562,-0.003500,0.249976,0,0);-ms-transform:matrix(0.183022,0.002562,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.183022,0.002562,-0.003500,0.249976,0,0);}
.mdc_c01112{transform:matrix(0.184166,0.001842,-0.002500,0.249988,0,0);-ms-transform:matrix(0.184166,0.001842,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.184166,0.001842,-0.002500,0.249988,0,0);}
.m82_c01112{transform:matrix(0.184621,0.002954,-0.003999,0.249968,0,0);-ms-transform:matrix(0.184621,0.002954,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.184621,0.002954,-0.003999,0.249968,0,0);}
.m12a_c01112{transform:matrix(0.185064,0.002036,-0.002750,0.249985,0,0);-ms-transform:matrix(0.185064,0.002036,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.185064,0.002036,-0.002750,0.249985,0,0);}
.m96_c01112{transform:matrix(0.185397,0.002596,-0.003500,0.249976,0,0);-ms-transform:matrix(0.185397,0.002596,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.185397,0.002596,-0.003500,0.249976,0,0);}
.me7_c01112{transform:matrix(0.186376,0.001864,-0.002500,0.249988,0,0);-ms-transform:matrix(0.186376,0.001864,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.186376,0.001864,-0.002500,0.249988,0,0);}
.m9d_c01112{transform:matrix(0.186937,0.002617,-0.003500,0.249976,0,0);-ms-transform:matrix(0.186937,0.002617,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.186937,0.002617,-0.003500,0.249976,0,0);}
.m98_c01112{transform:matrix(0.187667,0.002627,-0.003500,0.249976,0,0);-ms-transform:matrix(0.187667,0.002627,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.187667,0.002627,-0.003500,0.249976,0,0);}
.m68_c01112{transform:matrix(0.187761,0.003004,-0.003999,0.249968,0,0);-ms-transform:matrix(0.187761,0.003004,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.187761,0.003004,-0.003999,0.249968,0,0);}
.m7e_c01112{transform:matrix(0.187766,0.003004,-0.003999,0.249968,0,0);-ms-transform:matrix(0.187766,0.003004,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.187766,0.003004,-0.003999,0.249968,0,0);}
.m71_c01112{transform:matrix(0.188161,0.003011,-0.003999,0.249968,0,0);-ms-transform:matrix(0.188161,0.003011,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.188161,0.003011,-0.003999,0.249968,0,0);}
.m7b_c01112{transform:matrix(0.189416,0.003031,-0.003999,0.249968,0,0);-ms-transform:matrix(0.189416,0.003031,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.189416,0.003031,-0.003999,0.249968,0,0);}
.m92_c01112{transform:matrix(0.189716,0.002656,-0.003500,0.249976,0,0);-ms-transform:matrix(0.189716,0.002656,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.189716,0.002656,-0.003500,0.249976,0,0);}
.m94_c01112{transform:matrix(0.189926,0.002659,-0.003500,0.249976,0,0);-ms-transform:matrix(0.189926,0.002659,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.189926,0.002659,-0.003500,0.249976,0,0);}
.mea_c01112{transform:matrix(0.191005,0.001910,-0.002500,0.249988,0,0);-ms-transform:matrix(0.191005,0.001910,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.191005,0.001910,-0.002500,0.249988,0,0);}
.m11f_c01112{transform:matrix(0.191561,0.006328,-0.008254,0.249864,0,0);-ms-transform:matrix(0.191561,0.006328,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.191561,0.006328,-0.008254,0.249864,0,0);}
.mf8_c01112{transform:matrix(0.191710,0.001917,-0.002500,0.249988,0,0);-ms-transform:matrix(0.191710,0.001917,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.191710,0.001917,-0.002500,0.249988,0,0);}
.m7a_c01112{transform:matrix(0.191970,0.003072,-0.003999,0.249968,0,0);-ms-transform:matrix(0.191970,0.003072,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.191970,0.003072,-0.003999,0.249968,0,0);}
.m4b_c01112{transform:matrix(0.192081,0.002305,-0.003000,0.249982,0,0);-ms-transform:matrix(0.192081,0.002305,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.192081,0.002305,-0.003000,0.249982,0,0);}
.m58_c01112{transform:matrix(0.194526,0.002334,-0.003000,0.249982,0,0);-ms-transform:matrix(0.194526,0.002334,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.194526,0.002334,-0.003000,0.249982,0,0);}
.m5a_c01112{transform:matrix(0.196721,0.002361,-0.003000,0.249982,0,0);-ms-transform:matrix(0.196721,0.002361,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.196721,0.002361,-0.003000,0.249982,0,0);}
.m6b_c01112{transform:matrix(0.197665,0.003163,-0.003999,0.249968,0,0);-ms-transform:matrix(0.197665,0.003163,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.197665,0.003163,-0.003999,0.249968,0,0);}
.m5c_c01112{transform:matrix(0.197896,0.002375,-0.003000,0.249982,0,0);-ms-transform:matrix(0.197896,0.002375,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.197896,0.002375,-0.003000,0.249982,0,0);}
.m137_c01112{transform:matrix(0.197898,0.002177,-0.002750,0.249985,0,0);-ms-transform:matrix(0.197898,0.002177,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.197898,0.002177,-0.002750,0.249985,0,0);}
.m6e_c01112{transform:matrix(0.198170,0.003171,-0.003999,0.249968,0,0);-ms-transform:matrix(0.198170,0.003171,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.198170,0.003171,-0.003999,0.249968,0,0);}
.m83_c01112{transform:matrix(0.198480,0.003176,-0.003999,0.249968,0,0);-ms-transform:matrix(0.198480,0.003176,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.198480,0.003176,-0.003999,0.249968,0,0);}
.me3_c01112{transform:matrix(0.199710,0.001997,-0.002500,0.249988,0,0);-ms-transform:matrix(0.199710,0.001997,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.199710,0.001997,-0.002500,0.249988,0,0);}
.m59_c01112{transform:matrix(0.199766,0.002397,-0.003000,0.249982,0,0);-ms-transform:matrix(0.199766,0.002397,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.199766,0.002397,-0.003000,0.249982,0,0);}
.m51_c01112{transform:matrix(0.200226,0.002403,-0.003000,0.249982,0,0);-ms-transform:matrix(0.200226,0.002403,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.200226,0.002403,-0.003000,0.249982,0,0);}
.m107_c01112{transform:matrix(0.200300,0.002003,-0.002500,0.249988,0,0);-ms-transform:matrix(0.200300,0.002003,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.200300,0.002003,-0.002500,0.249988,0,0);}
.m22_c01112{transform:matrix(0.201515,0.002418,-0.003000,0.249982,0,0);-ms-transform:matrix(0.201515,0.002418,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.201515,0.002418,-0.003000,0.249982,0,0);}
.m135_c01112{transform:matrix(0.202063,0.002223,-0.002750,0.249985,0,0);-ms-transform:matrix(0.202063,0.002223,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.202063,0.002223,-0.002750,0.249985,0,0);}
.me1_c01112{transform:matrix(0.202480,0.002025,-0.002500,0.249988,0,0);-ms-transform:matrix(0.202480,0.002025,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.202480,0.002025,-0.002500,0.249988,0,0);}
.me8_c01112{transform:matrix(0.203570,0.002036,-0.002500,0.249988,0,0);-ms-transform:matrix(0.203570,0.002036,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.203570,0.002036,-0.002500,0.249988,0,0);}
.meb_c01112{transform:matrix(0.203835,0.002038,-0.002500,0.249988,0,0);-ms-transform:matrix(0.203835,0.002038,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.203835,0.002038,-0.002500,0.249988,0,0);}
.me0_c01112{transform:matrix(0.204610,0.002046,-0.002500,0.249988,0,0);-ms-transform:matrix(0.204610,0.002046,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.204610,0.002046,-0.002500,0.249988,0,0);}
.maf_c01112{transform:matrix(0.204690,0.002866,-0.003500,0.249976,0,0);-ms-transform:matrix(0.204690,0.002866,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.204690,0.002866,-0.003500,0.249976,0,0);}
.m110_c01112{transform:matrix(0.205045,0.002050,-0.002500,0.249988,0,0);-ms-transform:matrix(0.205045,0.002050,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.205045,0.002050,-0.002500,0.249988,0,0);}
.me4_c01112{transform:matrix(0.205315,0.002053,-0.002500,0.249988,0,0);-ms-transform:matrix(0.205315,0.002053,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.205315,0.002053,-0.002500,0.249988,0,0);}
.mc9_c01112{transform:matrix(0.205380,0.002875,-0.003500,0.249976,0,0);-ms-transform:matrix(0.205380,0.002875,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.205380,0.002875,-0.003500,0.249976,0,0);}
.mc_c01112{transform:matrix(0.205620,0.002467,-0.003000,0.249982,0,0);-ms-transform:matrix(0.205620,0.002467,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.205620,0.002467,-0.003000,0.249982,0,0);}
.m102_c01112{transform:matrix(0.205905,0.002059,-0.002500,0.249988,0,0);-ms-transform:matrix(0.205905,0.002059,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.205905,0.002059,-0.002500,0.249988,0,0);}
.mb_c01112{transform:matrix(0.206245,0.002475,-0.003000,0.249982,0,0);-ms-transform:matrix(0.206245,0.002475,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.206245,0.002475,-0.003000,0.249982,0,0);}
.me5_c01112{transform:matrix(0.206760,0.002068,-0.002500,0.249988,0,0);-ms-transform:matrix(0.206760,0.002068,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.206760,0.002068,-0.002500,0.249988,0,0);}
.m112_c01112{transform:matrix(0.206815,0.002068,-0.002500,0.249988,0,0);-ms-transform:matrix(0.206815,0.002068,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.206815,0.002068,-0.002500,0.249988,0,0);}
.m85_c01112{transform:matrix(0.207058,0.003313,-0.003999,0.249968,0,0);-ms-transform:matrix(0.207058,0.003313,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.207058,0.003313,-0.003999,0.249968,0,0);}
.mf3_c01112{transform:matrix(0.208125,0.002081,-0.002500,0.249988,0,0);-ms-transform:matrix(0.208125,0.002081,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.208125,0.002081,-0.002500,0.249988,0,0);}
.mf2_c01112{transform:matrix(0.209795,0.002098,-0.002500,0.249988,0,0);-ms-transform:matrix(0.209795,0.002098,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.209795,0.002098,-0.002500,0.249988,0,0);}
.me9_c01112{transform:matrix(0.210229,0.002102,-0.002500,0.249988,0,0);-ms-transform:matrix(0.210229,0.002102,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.210229,0.002102,-0.002500,0.249988,0,0);}
.mf0_c01112{transform:matrix(0.210239,0.002102,-0.002500,0.249988,0,0);-ms-transform:matrix(0.210239,0.002102,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.210239,0.002102,-0.002500,0.249988,0,0);}
.mcc_c01112{transform:matrix(0.210534,0.002947,-0.003500,0.249976,0,0);-ms-transform:matrix(0.210534,0.002947,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.210534,0.002947,-0.003500,0.249976,0,0);}
.m53_c01112{transform:matrix(0.210605,0.002527,-0.003000,0.249982,0,0);-ms-transform:matrix(0.210605,0.002527,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.210605,0.002527,-0.003000,0.249982,0,0);}
.m109_c01112{transform:matrix(0.210864,0.002109,-0.002500,0.249988,0,0);-ms-transform:matrix(0.210864,0.002109,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.210864,0.002109,-0.002500,0.249988,0,0);}
.m41_c01112{transform:matrix(0.211200,0.002534,-0.003000,0.249982,0,0);-ms-transform:matrix(0.211200,0.002534,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.211200,0.002534,-0.003000,0.249982,0,0);}
.m108_c01112{transform:matrix(0.211309,0.002113,-0.002500,0.249988,0,0);-ms-transform:matrix(0.211309,0.002113,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.211309,0.002113,-0.002500,0.249988,0,0);}
.m1a_c01112{transform:matrix(0.211405,0.002537,-0.003000,0.249982,0,0);-ms-transform:matrix(0.211405,0.002537,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.211405,0.002537,-0.003000,0.249982,0,0);}
.m80_c01112{transform:matrix(0.211458,0.003383,-0.003999,0.249968,0,0);-ms-transform:matrix(0.211458,0.003383,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.211458,0.003383,-0.003999,0.249968,0,0);}
.m5b_c01112{transform:matrix(0.211885,0.002543,-0.003000,0.249982,0,0);-ms-transform:matrix(0.211885,0.002543,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.211885,0.002543,-0.003000,0.249982,0,0);}
.m10e_c01112{transform:matrix(0.212174,0.002122,-0.002500,0.249988,0,0);-ms-transform:matrix(0.212174,0.002122,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.212174,0.002122,-0.002500,0.249988,0,0);}
.m1d_c01112{transform:matrix(0.212345,0.002548,-0.003000,0.249982,0,0);-ms-transform:matrix(0.212345,0.002548,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.212345,0.002548,-0.003000,0.249982,0,0);}
.m8_c01112{transform:matrix(0.212705,0.002552,-0.003000,0.249982,0,0);-ms-transform:matrix(0.212705,0.002552,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.212705,0.002552,-0.003000,0.249982,0,0);}
.mda_c01112{transform:matrix(0.213074,0.002131,-0.002500,0.249988,0,0);-ms-transform:matrix(0.213074,0.002131,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.213074,0.002131,-0.002500,0.249988,0,0);}
.m61_c01112{transform:matrix(0.214010,0.002568,-0.003000,0.249982,0,0);-ms-transform:matrix(0.214010,0.002568,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.214010,0.002568,-0.003000,0.249982,0,0);}
.m89_c01112{transform:matrix(0.214399,0.003002,-0.003500,0.249976,0,0);-ms-transform:matrix(0.214399,0.003002,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.214399,0.003002,-0.003500,0.249976,0,0);}
.m2c_c01112{transform:matrix(0.214785,0.002577,-0.003000,0.249982,0,0);-ms-transform:matrix(0.214785,0.002577,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.214785,0.002577,-0.003000,0.249982,0,0);}
.mdd_c01112{transform:matrix(0.215729,0.002157,-0.002500,0.249988,0,0);-ms-transform:matrix(0.215729,0.002157,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.215729,0.002157,-0.002500,0.249988,0,0);}
.mce_c01112{transform:matrix(0.215874,0.003022,-0.003500,0.249976,0,0);-ms-transform:matrix(0.215874,0.003022,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.215874,0.003022,-0.003500,0.249976,0,0);}
.mee_c01112{transform:matrix(0.216264,0.002163,-0.002500,0.249988,0,0);-ms-transform:matrix(0.216264,0.002163,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.216264,0.002163,-0.002500,0.249988,0,0);}
.m128_c01112{transform:matrix(0.216282,0.007144,-0.008254,0.249864,0,0);-ms-transform:matrix(0.216282,0.007144,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.216282,0.007144,-0.008254,0.249864,0,0);}
.m23_c01112{transform:matrix(0.216709,0.002601,-0.003000,0.249982,0,0);-ms-transform:matrix(0.216709,0.002601,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.216709,0.002601,-0.003000,0.249982,0,0);}
.mde_c01112{transform:matrix(0.217334,0.002173,-0.002500,0.249988,0,0);-ms-transform:matrix(0.217334,0.002173,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.217334,0.002173,-0.002500,0.249988,0,0);}
.m15_c01112{transform:matrix(0.217484,0.002610,-0.003000,0.249982,0,0);-ms-transform:matrix(0.217484,0.002610,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.217484,0.002610,-0.003000,0.249982,0,0);}
.mca_c01112{transform:matrix(0.217569,0.003046,-0.003500,0.249976,0,0);-ms-transform:matrix(0.217569,0.003046,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.217569,0.003046,-0.003500,0.249976,0,0);}
.m57_c01112{transform:matrix(0.218284,0.002619,-0.003000,0.249982,0,0);-ms-transform:matrix(0.218284,0.002619,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.218284,0.002619,-0.003000,0.249982,0,0);}
.m127_c01112{transform:matrix(0.218341,0.007212,-0.008254,0.249864,0,0);-ms-transform:matrix(0.218341,0.007212,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.218341,0.007212,-0.008254,0.249864,0,0);}
.mcf_c01112{transform:matrix(0.218344,0.003057,-0.003500,0.249976,0,0);-ms-transform:matrix(0.218344,0.003057,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.218344,0.003057,-0.003500,0.249976,0,0);}
.m65_c01112{transform:matrix(0.218650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218650,0.000000,0.000000,0.250000,0,0);}
.m123_c01112{transform:matrix(0.218716,0.007225,-0.008254,0.249864,0,0);-ms-transform:matrix(0.218716,0.007225,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.218716,0.007225,-0.008254,0.249864,0,0);}
.m125_c01112{transform:matrix(0.219090,0.007237,-0.008254,0.249864,0,0);-ms-transform:matrix(0.219090,0.007237,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.219090,0.007237,-0.008254,0.249864,0,0);}
.m111_c01112{transform:matrix(0.219154,0.002192,-0.002500,0.249988,0,0);-ms-transform:matrix(0.219154,0.002192,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.219154,0.002192,-0.002500,0.249988,0,0);}
.m138_c01112{transform:matrix(0.219222,0.002411,-0.002750,0.249985,0,0);-ms-transform:matrix(0.219222,0.002411,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.219222,0.002411,-0.002750,0.249985,0,0);}
.m88_c01112{transform:matrix(0.219354,0.003071,-0.003500,0.249976,0,0);-ms-transform:matrix(0.219354,0.003071,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.219354,0.003071,-0.003500,0.249976,0,0);}
.m133_c01112{transform:matrix(0.220327,0.002424,-0.002750,0.249985,0,0);-ms-transform:matrix(0.220327,0.002424,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.220327,0.002424,-0.002750,0.249985,0,0);}
.mf4_c01112{transform:matrix(0.220524,0.002205,-0.002500,0.249988,0,0);-ms-transform:matrix(0.220524,0.002205,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.220524,0.002205,-0.002500,0.249988,0,0);}
.m5_c01112{transform:matrix(0.220539,0.002646,-0.003000,0.249982,0,0);-ms-transform:matrix(0.220539,0.002646,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.220539,0.002646,-0.003000,0.249982,0,0);}
.m8d_c01112{transform:matrix(0.220863,0.003092,-0.003500,0.249976,0,0);-ms-transform:matrix(0.220863,0.003092,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.220863,0.003092,-0.003500,0.249976,0,0);}
.m90_c01112{transform:matrix(0.221018,0.003094,-0.003500,0.249976,0,0);-ms-transform:matrix(0.221018,0.003094,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.221018,0.003094,-0.003500,0.249976,0,0);}
.m8c_c01112{transform:matrix(0.221158,0.003096,-0.003500,0.249976,0,0);-ms-transform:matrix(0.221158,0.003096,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.221158,0.003096,-0.003500,0.249976,0,0);}
.m4_c01112{transform:matrix(0.221399,0.002657,-0.003000,0.249982,0,0);-ms-transform:matrix(0.221399,0.002657,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.221399,0.002657,-0.003000,0.249982,0,0);}
.mf6_c01112{transform:matrix(0.221764,0.002218,-0.002500,0.249988,0,0);-ms-transform:matrix(0.221764,0.002218,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.221764,0.002218,-0.002500,0.249988,0,0);}
.mec_c01112{transform:matrix(0.221829,0.002218,-0.002500,0.249988,0,0);-ms-transform:matrix(0.221829,0.002218,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.221829,0.002218,-0.002500,0.249988,0,0);}
.m129_c01112{transform:matrix(0.221894,0.007330,-0.008254,0.249864,0,0);-ms-transform:matrix(0.221894,0.007330,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.221894,0.007330,-0.008254,0.249864,0,0);}
.m5f_c01112{transform:matrix(0.222024,0.002664,-0.003000,0.249982,0,0);-ms-transform:matrix(0.222024,0.002664,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.222024,0.002664,-0.003000,0.249982,0,0);}
.mdb_c01112{transform:matrix(0.222474,0.002225,-0.002500,0.249988,0,0);-ms-transform:matrix(0.222474,0.002225,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.222474,0.002225,-0.002500,0.249988,0,0);}
.me6_c01112{transform:matrix(0.222539,0.002225,-0.002500,0.249988,0,0);-ms-transform:matrix(0.222539,0.002225,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.222539,0.002225,-0.002500,0.249988,0,0);}
.m8e_c01112{transform:matrix(0.222973,0.003122,-0.003500,0.249976,0,0);-ms-transform:matrix(0.222973,0.003122,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.222973,0.003122,-0.003500,0.249976,0,0);}
.mf1_c01112{transform:matrix(0.222984,0.002230,-0.002500,0.249988,0,0);-ms-transform:matrix(0.222984,0.002230,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.222984,0.002230,-0.002500,0.249988,0,0);}
.m0_c01112{transform:matrix(0.222990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222990,0.000000,0.000000,0.250000,0,0);}
.m5d_c01112{transform:matrix(0.223004,0.002676,-0.003000,0.249982,0,0);-ms-transform:matrix(0.223004,0.002676,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.223004,0.002676,-0.003000,0.249982,0,0);}
.mcb_c01112{transform:matrix(0.223008,0.003122,-0.003500,0.249976,0,0);-ms-transform:matrix(0.223008,0.003122,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.223008,0.003122,-0.003500,0.249976,0,0);}
.m132_c01112{transform:matrix(0.223142,0.002455,-0.002750,0.249985,0,0);-ms-transform:matrix(0.223142,0.002455,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.223142,0.002455,-0.002750,0.249985,0,0);}
.m50_c01112{transform:matrix(0.223289,0.002679,-0.003000,0.249982,0,0);-ms-transform:matrix(0.223289,0.002679,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.223289,0.002679,-0.003000,0.249982,0,0);}
.m91_c01112{transform:matrix(0.223508,0.003129,-0.003500,0.249976,0,0);-ms-transform:matrix(0.223508,0.003129,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.223508,0.003129,-0.003500,0.249976,0,0);}
.m8a_c01112{transform:matrix(0.223653,0.003131,-0.003500,0.249976,0,0);-ms-transform:matrix(0.223653,0.003131,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.223653,0.003131,-0.003500,0.249976,0,0);}
.mf5_c01112{transform:matrix(0.223709,0.002237,-0.002500,0.249988,0,0);-ms-transform:matrix(0.223709,0.002237,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.223709,0.002237,-0.002500,0.249988,0,0);}
.m1b_c01112{transform:matrix(0.224029,0.002688,-0.003000,0.249982,0,0);-ms-transform:matrix(0.224029,0.002688,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.224029,0.002688,-0.003000,0.249982,0,0);}
.md1_c01112{transform:matrix(0.224048,0.003137,-0.003500,0.249976,0,0);-ms-transform:matrix(0.224048,0.003137,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.224048,0.003137,-0.003500,0.249976,0,0);}
.m43_c01112{transform:matrix(0.224064,0.002689,-0.003000,0.249982,0,0);-ms-transform:matrix(0.224064,0.002689,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.224064,0.002689,-0.003000,0.249982,0,0);}
.m124_c01112{transform:matrix(0.224802,0.007426,-0.008254,0.249864,0,0);-ms-transform:matrix(0.224802,0.007426,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.224802,0.007426,-0.008254,0.249864,0,0);}
.m7_c01112{transform:matrix(0.225454,0.002705,-0.003000,0.249982,0,0);-ms-transform:matrix(0.225454,0.002705,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.225454,0.002705,-0.003000,0.249982,0,0);}
.m4f_c01112{transform:matrix(0.225649,0.002708,-0.003000,0.249982,0,0);-ms-transform:matrix(0.225649,0.002708,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.225649,0.002708,-0.003000,0.249982,0,0);}
.m11b_c01112{transform:matrix(0.225874,0.002259,-0.002500,0.249988,0,0);-ms-transform:matrix(0.225874,0.002259,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.225874,0.002259,-0.002500,0.249988,0,0);}
.m40_c01112{transform:matrix(0.226389,0.002717,-0.003000,0.249982,0,0);-ms-transform:matrix(0.226389,0.002717,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.226389,0.002717,-0.003000,0.249982,0,0);}
.m27_c01112{transform:matrix(0.226824,0.002722,-0.003000,0.249982,0,0);-ms-transform:matrix(0.226824,0.002722,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.226824,0.002722,-0.003000,0.249982,0,0);}
.mc6_c01112{transform:matrix(0.229198,0.003209,-0.003500,0.249976,0,0);-ms-transform:matrix(0.229198,0.003209,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.229198,0.003209,-0.003500,0.249976,0,0);}
.m12c_c01112{transform:matrix(0.229346,0.002523,-0.002750,0.249985,0,0);-ms-transform:matrix(0.229346,0.002523,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.229346,0.002523,-0.002750,0.249985,0,0);}
.m122_c01112{transform:matrix(0.229365,0.007577,-0.008254,0.249864,0,0);-ms-transform:matrix(0.229365,0.007577,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.229365,0.007577,-0.008254,0.249864,0,0);}
.m60_c01112{transform:matrix(0.229383,0.002753,-0.003000,0.249982,0,0);-ms-transform:matrix(0.229383,0.002753,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.229383,0.002753,-0.003000,0.249982,0,0);}
.m120_c01112{transform:matrix(0.230075,0.007600,-0.008254,0.249864,0,0);-ms-transform:matrix(0.230075,0.007600,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.230075,0.007600,-0.008254,0.249864,0,0);}
.md6_c01112{transform:matrix(0.230192,0.003223,-0.003500,0.249976,0,0);-ms-transform:matrix(0.230192,0.003223,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.230192,0.003223,-0.003500,0.249976,0,0);}
.m29_c01112{transform:matrix(0.230268,0.002763,-0.003000,0.249982,0,0);-ms-transform:matrix(0.230268,0.002763,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.230268,0.002763,-0.003000,0.249982,0,0);}
.m73_c01112{transform:matrix(0.230311,0.003685,-0.003999,0.249968,0,0);-ms-transform:matrix(0.230311,0.003685,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.230311,0.003685,-0.003999,0.249968,0,0);}
.m46_c01112{transform:matrix(0.230428,0.002765,-0.003000,0.249982,0,0);-ms-transform:matrix(0.230428,0.002765,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.230428,0.002765,-0.003000,0.249982,0,0);}
.m6_c01112{transform:matrix(0.230603,0.002767,-0.003000,0.249982,0,0);-ms-transform:matrix(0.230603,0.002767,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.230603,0.002767,-0.003000,0.249982,0,0);}
.m78_c01112{transform:matrix(0.230865,0.003694,-0.003999,0.249968,0,0);-ms-transform:matrix(0.230865,0.003694,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.230865,0.003694,-0.003999,0.249968,0,0);}
.ma2_c01112{transform:matrix(0.230872,0.003232,-0.003500,0.249976,0,0);-ms-transform:matrix(0.230872,0.003232,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.230872,0.003232,-0.003500,0.249976,0,0);}
.m3f_c01112{transform:matrix(0.230898,0.002771,-0.003000,0.249982,0,0);-ms-transform:matrix(0.230898,0.002771,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.230898,0.002771,-0.003000,0.249982,0,0);}
.m3e_c01112{transform:matrix(0.231363,0.002776,-0.003000,0.249982,0,0);-ms-transform:matrix(0.231363,0.002776,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.231363,0.002776,-0.003000,0.249982,0,0);}
.m55_c01112{transform:matrix(0.231408,0.002777,-0.003000,0.249982,0,0);-ms-transform:matrix(0.231408,0.002777,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.231408,0.002777,-0.003000,0.249982,0,0);}
.mb1_c01112{transform:matrix(0.231617,0.003243,-0.003500,0.249976,0,0);-ms-transform:matrix(0.231617,0.003243,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.231617,0.003243,-0.003500,0.249976,0,0);}
.m9_c01112{transform:matrix(0.231648,0.002780,-0.003000,0.249982,0,0);-ms-transform:matrix(0.231648,0.002780,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.231648,0.002780,-0.003000,0.249982,0,0);}
.m48_c01112{transform:matrix(0.231683,0.002780,-0.003000,0.249982,0,0);-ms-transform:matrix(0.231683,0.002780,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.231683,0.002780,-0.003000,0.249982,0,0);}
.m63_c01112{transform:matrix(0.231733,0.002781,-0.003000,0.249982,0,0);-ms-transform:matrix(0.231733,0.002781,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.231733,0.002781,-0.003000,0.249982,0,0);}
.m8f_c01112{transform:matrix(0.231922,0.003247,-0.003500,0.249976,0,0);-ms-transform:matrix(0.231922,0.003247,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.231922,0.003247,-0.003500,0.249976,0,0);}
.mb8_c01112{transform:matrix(0.231977,0.003248,-0.003500,0.249976,0,0);-ms-transform:matrix(0.231977,0.003248,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.231977,0.003248,-0.003500,0.249976,0,0);}
.m126_c01112{transform:matrix(0.233363,0.007709,-0.008254,0.249864,0,0);-ms-transform:matrix(0.233363,0.007709,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.233363,0.007709,-0.008254,0.249864,0,0);}
.mcd_c01112{transform:matrix(0.233372,0.003267,-0.003500,0.249976,0,0);-ms-transform:matrix(0.233372,0.003267,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.233372,0.003267,-0.003500,0.249976,0,0);}
.m1e_c01112{transform:matrix(0.233443,0.002801,-0.003000,0.249982,0,0);-ms-transform:matrix(0.233443,0.002801,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.233443,0.002801,-0.003000,0.249982,0,0);}
.m74_c01112{transform:matrix(0.233490,0.003736,-0.003999,0.249968,0,0);-ms-transform:matrix(0.233490,0.003736,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.233490,0.003736,-0.003999,0.249968,0,0);}
.m2b_c01112{transform:matrix(0.234148,0.002810,-0.003000,0.249982,0,0);-ms-transform:matrix(0.234148,0.002810,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.234148,0.002810,-0.003000,0.249982,0,0);}
.m136_c01112{transform:matrix(0.234251,0.002577,-0.002750,0.249985,0,0);-ms-transform:matrix(0.234251,0.002577,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.234251,0.002577,-0.002750,0.249985,0,0);}
.m134_c01112{transform:matrix(0.234486,0.002579,-0.002750,0.249985,0,0);-ms-transform:matrix(0.234486,0.002579,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.234486,0.002579,-0.002750,0.249985,0,0);}
.m33_c01112{transform:matrix(0.234768,0.002817,-0.003000,0.249982,0,0);-ms-transform:matrix(0.234768,0.002817,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.234768,0.002817,-0.003000,0.249982,0,0);}
.m10f_c01112{transform:matrix(0.234783,0.002348,-0.002500,0.249988,0,0);-ms-transform:matrix(0.234783,0.002348,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.234783,0.002348,-0.002500,0.249988,0,0);}
.ma7_c01112{transform:matrix(0.234912,0.003289,-0.003500,0.249976,0,0);-ms-transform:matrix(0.234912,0.003289,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.234912,0.003289,-0.003500,0.249976,0,0);}
.m49_c01112{transform:matrix(0.235653,0.002828,-0.003000,0.249982,0,0);-ms-transform:matrix(0.235653,0.002828,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.235653,0.002828,-0.003000,0.249982,0,0);}
.m121_c01112{transform:matrix(0.236056,0.007798,-0.008254,0.249864,0,0);-ms-transform:matrix(0.236056,0.007798,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.236056,0.007798,-0.008254,0.249864,0,0);}
.mb6_c01112{transform:matrix(0.236212,0.003307,-0.003500,0.249976,0,0);-ms-transform:matrix(0.236212,0.003307,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.236212,0.003307,-0.003500,0.249976,0,0);}
.m30_c01112{transform:matrix(0.236428,0.002837,-0.003000,0.249982,0,0);-ms-transform:matrix(0.236428,0.002837,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.236428,0.002837,-0.003000,0.249982,0,0);}
.m54_c01112{transform:matrix(0.236463,0.002838,-0.003000,0.249982,0,0);-ms-transform:matrix(0.236463,0.002838,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.236463,0.002838,-0.003000,0.249982,0,0);}
.mc8_c01112{transform:matrix(0.236607,0.003312,-0.003500,0.249976,0,0);-ms-transform:matrix(0.236607,0.003312,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.236607,0.003312,-0.003500,0.249976,0,0);}
.mb4_c01112{transform:matrix(0.236822,0.003316,-0.003500,0.249976,0,0);-ms-transform:matrix(0.236822,0.003316,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.236822,0.003316,-0.003500,0.249976,0,0);}
.mfd_c01112{transform:matrix(0.236828,0.002368,-0.002500,0.249988,0,0);-ms-transform:matrix(0.236828,0.002368,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.236828,0.002368,-0.002500,0.249988,0,0);}
.m10c_c01112{transform:matrix(0.236853,0.002369,-0.002500,0.249988,0,0);-ms-transform:matrix(0.236853,0.002369,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.236853,0.002369,-0.002500,0.249988,0,0);}
.mc7_c01112{transform:matrix(0.237012,0.003318,-0.003500,0.249976,0,0);-ms-transform:matrix(0.237012,0.003318,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.237012,0.003318,-0.003500,0.249976,0,0);}
.md_c01112{transform:matrix(0.237023,0.002844,-0.003000,0.249982,0,0);-ms-transform:matrix(0.237023,0.002844,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.237023,0.002844,-0.003000,0.249982,0,0);}
.mf7_c01112{transform:matrix(0.237113,0.002371,-0.002500,0.249988,0,0);-ms-transform:matrix(0.237113,0.002371,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.237113,0.002371,-0.002500,0.249988,0,0);}
.mc0_c01112{transform:matrix(0.237807,0.003329,-0.003500,0.249976,0,0);-ms-transform:matrix(0.237807,0.003329,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.237807,0.003329,-0.003500,0.249976,0,0);}
.m10d_c01112{transform:matrix(0.237843,0.002378,-0.002500,0.249988,0,0);-ms-transform:matrix(0.237843,0.002378,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.237843,0.002378,-0.002500,0.249988,0,0);}
.m76_c01112{transform:matrix(0.237900,0.003806,-0.003999,0.249968,0,0);-ms-transform:matrix(0.237900,0.003806,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.237900,0.003806,-0.003999,0.249968,0,0);}
.m17_c01112{transform:matrix(0.237958,0.002855,-0.003000,0.249982,0,0);-ms-transform:matrix(0.237958,0.002855,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.237958,0.002855,-0.003000,0.249982,0,0);}
.md3_c01112{transform:matrix(0.238102,0.003333,-0.003500,0.249976,0,0);-ms-transform:matrix(0.238102,0.003333,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.238102,0.003333,-0.003500,0.249976,0,0);}
.m1f_c01112{transform:matrix(0.238453,0.002861,-0.003000,0.249982,0,0);-ms-transform:matrix(0.238453,0.002861,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.238453,0.002861,-0.003000,0.249982,0,0);}
.mc3_c01112{transform:matrix(0.238512,0.003339,-0.003500,0.249976,0,0);-ms-transform:matrix(0.238512,0.003339,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.238512,0.003339,-0.003500,0.249976,0,0);}
.m116_c01112{transform:matrix(0.239283,0.002393,-0.002500,0.249988,0,0);-ms-transform:matrix(0.239283,0.002393,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.239283,0.002393,-0.002500,0.249988,0,0);}
.m1c_c01112{transform:matrix(0.239528,0.002874,-0.003000,0.249982,0,0);-ms-transform:matrix(0.239528,0.002874,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.239528,0.002874,-0.003000,0.249982,0,0);}
.m13_c01112{transform:matrix(0.239573,0.002875,-0.003000,0.249982,0,0);-ms-transform:matrix(0.239573,0.002875,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.239573,0.002875,-0.003000,0.249982,0,0);}
.m62_c01112{transform:matrix(0.239948,0.002879,-0.003000,0.249982,0,0);-ms-transform:matrix(0.239948,0.002879,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.239948,0.002879,-0.003000,0.249982,0,0);}
.m3b_c01112{transform:matrix(0.240033,0.002880,-0.003000,0.249982,0,0);-ms-transform:matrix(0.240033,0.002880,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.240033,0.002880,-0.003000,0.249982,0,0);}
.mbb_c01112{transform:matrix(0.240041,0.003361,-0.003500,0.249976,0,0);-ms-transform:matrix(0.240041,0.003361,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.240041,0.003361,-0.003500,0.249976,0,0);}
.m24_c01112{transform:matrix(0.240213,0.002883,-0.003000,0.249982,0,0);-ms-transform:matrix(0.240213,0.002883,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.240213,0.002883,-0.003000,0.249982,0,0);}
.m115_c01112{transform:matrix(0.240483,0.002405,-0.002500,0.249988,0,0);-ms-transform:matrix(0.240483,0.002405,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.240483,0.002405,-0.002500,0.249988,0,0);}
.ma0_c01112{transform:matrix(0.240686,0.003370,-0.003500,0.249976,0,0);-ms-transform:matrix(0.240686,0.003370,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.240686,0.003370,-0.003500,0.249976,0,0);}
.ma5_c01112{transform:matrix(0.240811,0.003371,-0.003500,0.249976,0,0);-ms-transform:matrix(0.240811,0.003371,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.240811,0.003371,-0.003500,0.249976,0,0);}
.m8b_c01112{transform:matrix(0.241256,0.003378,-0.003500,0.249976,0,0);-ms-transform:matrix(0.241256,0.003378,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.241256,0.003378,-0.003500,0.249976,0,0);}
.mfc_c01112{transform:matrix(0.241858,0.002419,-0.002500,0.249988,0,0);-ms-transform:matrix(0.241858,0.002419,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.241858,0.002419,-0.002500,0.249988,0,0);}
.m113_c01112{transform:matrix(0.242063,0.002421,-0.002500,0.249988,0,0);-ms-transform:matrix(0.242063,0.002421,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.242063,0.002421,-0.002500,0.249988,0,0);}
.mba_c01112{transform:matrix(0.243031,0.003402,-0.003500,0.249976,0,0);-ms-transform:matrix(0.243031,0.003402,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.243031,0.003402,-0.003500,0.249976,0,0);}
.ma_c01112{transform:matrix(0.243147,0.002918,-0.003000,0.249982,0,0);-ms-transform:matrix(0.243147,0.002918,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.243147,0.002918,-0.003000,0.249982,0,0);}
.m14_c01112{transform:matrix(0.244642,0.002936,-0.003000,0.249982,0,0);-ms-transform:matrix(0.244642,0.002936,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.244642,0.002936,-0.003000,0.249982,0,0);}
.m106_c01112{transform:matrix(0.244708,0.002447,-0.002500,0.249988,0,0);-ms-transform:matrix(0.244708,0.002447,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.244708,0.002447,-0.002500,0.249988,0,0);}
.m52_c01112{transform:matrix(0.244997,0.002940,-0.003000,0.249982,0,0);-ms-transform:matrix(0.244997,0.002940,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.244997,0.002940,-0.003000,0.249982,0,0);}
.m47_c01112{transform:matrix(0.245532,0.002946,-0.003000,0.249982,0,0);-ms-transform:matrix(0.245532,0.002946,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.245532,0.002946,-0.003000,0.249982,0,0);}
.mbd_c01112{transform:matrix(0.245996,0.003444,-0.003500,0.249976,0,0);-ms-transform:matrix(0.245996,0.003444,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.245996,0.003444,-0.003500,0.249976,0,0);}
.m4d_c01112{transform:matrix(0.246532,0.002958,-0.003000,0.249982,0,0);-ms-transform:matrix(0.246532,0.002958,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.246532,0.002958,-0.003000,0.249982,0,0);}
.m4e_c01112{transform:matrix(0.247652,0.002972,-0.003000,0.249982,0,0);-ms-transform:matrix(0.247652,0.002972,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.247652,0.002972,-0.003000,0.249982,0,0);}
.mfb_c01112{transform:matrix(0.247743,0.002477,-0.002500,0.249988,0,0);-ms-transform:matrix(0.247743,0.002477,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.247743,0.002477,-0.002500,0.249988,0,0);}
.m2e_c01112{transform:matrix(0.248427,0.002981,-0.003000,0.249982,0,0);-ms-transform:matrix(0.248427,0.002981,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.248427,0.002981,-0.003000,0.249982,0,0);}
.m6a_c01112{transform:matrix(0.248598,0.003978,-0.003999,0.249968,0,0);-ms-transform:matrix(0.248598,0.003978,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.248598,0.003978,-0.003999,0.249968,0,0);}
.m37_c01112{transform:matrix(0.248642,0.002984,-0.003000,0.249982,0,0);-ms-transform:matrix(0.248642,0.002984,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.248642,0.002984,-0.003000,0.249982,0,0);}
.m42_c01112{transform:matrix(0.248677,0.002984,-0.003000,0.249982,0,0);-ms-transform:matrix(0.248677,0.002984,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.248677,0.002984,-0.003000,0.249982,0,0);}
.mbf_c01112{transform:matrix(0.248926,0.003485,-0.003500,0.249976,0,0);-ms-transform:matrix(0.248926,0.003485,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.248926,0.003485,-0.003500,0.249976,0,0);}
.mbc_c01112{transform:matrix(0.250025,0.003500,-0.003500,0.249976,0,0);-ms-transform:matrix(0.250025,0.003500,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.250025,0.003500,-0.003500,0.249976,0,0);}
.m105_c01112{transform:matrix(0.250297,0.002503,-0.002500,0.249988,0,0);-ms-transform:matrix(0.250297,0.002503,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.250297,0.002503,-0.002500,0.249988,0,0);}
.m35_c01112{transform:matrix(0.251107,0.003013,-0.003000,0.249982,0,0);-ms-transform:matrix(0.251107,0.003013,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.251107,0.003013,-0.003000,0.249982,0,0);}
.md0_c01112{transform:matrix(0.252055,0.003529,-0.003500,0.249976,0,0);-ms-transform:matrix(0.252055,0.003529,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.252055,0.003529,-0.003500,0.249976,0,0);}
.m72_c01112{transform:matrix(0.252358,0.004038,-0.003999,0.249968,0,0);-ms-transform:matrix(0.252358,0.004038,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.252358,0.004038,-0.003999,0.249968,0,0);}
.m11_c01112{transform:matrix(0.252862,0.003034,-0.003000,0.249982,0,0);-ms-transform:matrix(0.252862,0.003034,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.252862,0.003034,-0.003000,0.249982,0,0);}
.m2f_c01112{transform:matrix(0.253767,0.003045,-0.003000,0.249982,0,0);-ms-transform:matrix(0.253767,0.003045,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.253767,0.003045,-0.003000,0.249982,0,0);}
.m4c_c01112{transform:matrix(0.254077,0.003049,-0.003000,0.249982,0,0);-ms-transform:matrix(0.254077,0.003049,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.254077,0.003049,-0.003000,0.249982,0,0);}
.md4_c01112{transform:matrix(0.254145,0.003558,-0.003500,0.249976,0,0);-ms-transform:matrix(0.254145,0.003558,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.254145,0.003558,-0.003500,0.249976,0,0);}
.m31_c01112{transform:matrix(0.254352,0.003052,-0.003000,0.249982,0,0);-ms-transform:matrix(0.254352,0.003052,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.254352,0.003052,-0.003000,0.249982,0,0);}
.m44_c01112{transform:matrix(0.254407,0.003053,-0.003000,0.249982,0,0);-ms-transform:matrix(0.254407,0.003053,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.254407,0.003053,-0.003000,0.249982,0,0);}
.mac_c01112{transform:matrix(0.254440,0.003562,-0.003500,0.249976,0,0);-ms-transform:matrix(0.254440,0.003562,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.254440,0.003562,-0.003500,0.249976,0,0);}
.ma9_c01112{transform:matrix(0.254845,0.003568,-0.003500,0.249976,0,0);-ms-transform:matrix(0.254845,0.003568,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.254845,0.003568,-0.003500,0.249976,0,0);}
.m26_c01112{transform:matrix(0.256157,0.003074,-0.003000,0.249982,0,0);-ms-transform:matrix(0.256157,0.003074,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.256157,0.003074,-0.003000,0.249982,0,0);}
.mfa_c01112{transform:matrix(0.256527,0.002565,-0.002500,0.249988,0,0);-ms-transform:matrix(0.256527,0.002565,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.256527,0.002565,-0.002500,0.249988,0,0);}
.mad_c01112{transform:matrix(0.256615,0.003593,-0.003500,0.249976,0,0);-ms-transform:matrix(0.256615,0.003593,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.256615,0.003593,-0.003500,0.249976,0,0);}
.m45_c01112{transform:matrix(0.256857,0.003082,-0.003000,0.249982,0,0);-ms-transform:matrix(0.256857,0.003082,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.256857,0.003082,-0.003000,0.249982,0,0);}
.m75_c01112{transform:matrix(0.257417,0.004119,-0.003999,0.249968,0,0);-ms-transform:matrix(0.257417,0.004119,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.257417,0.004119,-0.003999,0.249968,0,0);}
.md5_c01112{transform:matrix(0.257770,0.003609,-0.003500,0.249976,0,0);-ms-transform:matrix(0.257770,0.003609,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.257770,0.003609,-0.003500,0.249976,0,0);}
.m3d_c01112{transform:matrix(0.258066,0.003097,-0.003000,0.249982,0,0);-ms-transform:matrix(0.258066,0.003097,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.258066,0.003097,-0.003000,0.249982,0,0);}
.mb0_c01112{transform:matrix(0.258500,0.003619,-0.003500,0.249976,0,0);-ms-transform:matrix(0.258500,0.003619,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.258500,0.003619,-0.003500,0.249976,0,0);}
.ma4_c01112{transform:matrix(0.258710,0.003622,-0.003500,0.249976,0,0);-ms-transform:matrix(0.258710,0.003622,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.258710,0.003622,-0.003500,0.249976,0,0);}
.m3c_c01112{transform:matrix(0.259031,0.003108,-0.003000,0.249982,0,0);-ms-transform:matrix(0.259031,0.003108,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.259031,0.003108,-0.003000,0.249982,0,0);}
.m79_c01112{transform:matrix(0.259067,0.004145,-0.003999,0.249968,0,0);-ms-transform:matrix(0.259067,0.004145,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.259067,0.004145,-0.003999,0.249968,0,0);}
.m118_c01112{transform:matrix(0.259267,0.002593,-0.002500,0.249988,0,0);-ms-transform:matrix(0.259267,0.002593,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.259267,0.002593,-0.002500,0.249988,0,0);}
.ma3_c01112{transform:matrix(0.259495,0.003633,-0.003500,0.249976,0,0);-ms-transform:matrix(0.259495,0.003633,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.259495,0.003633,-0.003500,0.249976,0,0);}
.m16_c01112{transform:matrix(0.259971,0.003120,-0.003000,0.249982,0,0);-ms-transform:matrix(0.259971,0.003120,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.259971,0.003120,-0.003000,0.249982,0,0);}
.mb2_c01112{transform:matrix(0.261129,0.003656,-0.003500,0.249976,0,0);-ms-transform:matrix(0.261129,0.003656,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.261129,0.003656,-0.003500,0.249976,0,0);}
.md2_c01112{transform:matrix(0.261564,0.003662,-0.003500,0.249976,0,0);-ms-transform:matrix(0.261564,0.003662,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.261564,0.003662,-0.003500,0.249976,0,0);}
.m11d_c01112{transform:matrix(0.261792,0.002618,-0.002500,0.249988,0,0);-ms-transform:matrix(0.261792,0.002618,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.261792,0.002618,-0.002500,0.249988,0,0);}
.mab_c01112{transform:matrix(0.261939,0.003667,-0.003500,0.249976,0,0);-ms-transform:matrix(0.261939,0.003667,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.261939,0.003667,-0.003500,0.249976,0,0);}
.me_c01112{transform:matrix(0.262556,0.003151,-0.003000,0.249982,0,0);-ms-transform:matrix(0.262556,0.003151,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.262556,0.003151,-0.003000,0.249982,0,0);}
.m103_c01112{transform:matrix(0.263457,0.002635,-0.002500,0.249988,0,0);-ms-transform:matrix(0.263457,0.002635,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.263457,0.002635,-0.002500,0.249988,0,0);}
.md9_c01112{transform:matrix(0.263459,0.003688,-0.003500,0.249976,0,0);-ms-transform:matrix(0.263459,0.003688,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.263459,0.003688,-0.003500,0.249976,0,0);}
.m18_c01112{transform:matrix(0.263716,0.003165,-0.003000,0.249982,0,0);-ms-transform:matrix(0.263716,0.003165,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.263716,0.003165,-0.003000,0.249982,0,0);}
.m25_c01112{transform:matrix(0.264261,0.003171,-0.003000,0.249982,0,0);-ms-transform:matrix(0.264261,0.003171,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.264261,0.003171,-0.003000,0.249982,0,0);}
.m34_c01112{transform:matrix(0.264656,0.003176,-0.003000,0.249982,0,0);-ms-transform:matrix(0.264656,0.003176,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.264656,0.003176,-0.003000,0.249982,0,0);}
.m32_c01112{transform:matrix(0.264971,0.003180,-0.003000,0.249982,0,0);-ms-transform:matrix(0.264971,0.003180,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.264971,0.003180,-0.003000,0.249982,0,0);}
.mc4_c01112{transform:matrix(0.266099,0.003725,-0.003500,0.249976,0,0);-ms-transform:matrix(0.266099,0.003725,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.266099,0.003725,-0.003500,0.249976,0,0);}
.mb3_c01112{transform:matrix(0.266224,0.003727,-0.003500,0.249976,0,0);-ms-transform:matrix(0.266224,0.003727,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.266224,0.003727,-0.003500,0.249976,0,0);}
.m28_c01112{transform:matrix(0.266496,0.003198,-0.003000,0.249982,0,0);-ms-transform:matrix(0.266496,0.003198,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.266496,0.003198,-0.003000,0.249982,0,0);}
.m12_c01112{transform:matrix(0.267511,0.003210,-0.003000,0.249982,0,0);-ms-transform:matrix(0.267511,0.003210,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.267511,0.003210,-0.003000,0.249982,0,0);}
.ma1_c01112{transform:matrix(0.267889,0.003750,-0.003500,0.249976,0,0);-ms-transform:matrix(0.267889,0.003750,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.267889,0.003750,-0.003500,0.249976,0,0);}
.m9f_c01112{transform:matrix(0.269119,0.003768,-0.003500,0.249976,0,0);-ms-transform:matrix(0.269119,0.003768,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.269119,0.003768,-0.003500,0.249976,0,0);}
.md7_c01112{transform:matrix(0.269649,0.003775,-0.003500,0.249976,0,0);-ms-transform:matrix(0.269649,0.003775,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.269649,0.003775,-0.003500,0.249976,0,0);}
.m12b_c01112{transform:matrix(0.269734,0.002967,-0.002750,0.249985,0,0);-ms-transform:matrix(0.269734,0.002967,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.269734,0.002967,-0.002750,0.249985,0,0);}
.m117_c01112{transform:matrix(0.269742,0.002697,-0.002500,0.249988,0,0);-ms-transform:matrix(0.269742,0.002697,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.269742,0.002697,-0.002500,0.249988,0,0);}
.m100_c01112{transform:matrix(0.270176,0.002702,-0.002500,0.249988,0,0);-ms-transform:matrix(0.270176,0.002702,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.270176,0.002702,-0.002500,0.249988,0,0);}
.m2d_c01112{transform:matrix(0.270870,0.003250,-0.003000,0.249982,0,0);-ms-transform:matrix(0.270870,0.003250,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.270870,0.003250,-0.003000,0.249982,0,0);}
.m3a_c01112{transform:matrix(0.270995,0.003252,-0.003000,0.249982,0,0);-ms-transform:matrix(0.270995,0.003252,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.270995,0.003252,-0.003000,0.249982,0,0);}
.m11c_c01112{transform:matrix(0.271881,0.002719,-0.002500,0.249988,0,0);-ms-transform:matrix(0.271881,0.002719,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.271881,0.002719,-0.002500,0.249988,0,0);}
.mc1_c01112{transform:matrix(0.272568,0.003816,-0.003500,0.249976,0,0);-ms-transform:matrix(0.272568,0.003816,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.272568,0.003816,-0.003500,0.249976,0,0);}
.m39_c01112{transform:matrix(0.273240,0.003279,-0.003000,0.249982,0,0);-ms-transform:matrix(0.273240,0.003279,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.273240,0.003279,-0.003000,0.249982,0,0);}
.ma6_c01112{transform:matrix(0.273373,0.003827,-0.003500,0.249976,0,0);-ms-transform:matrix(0.273373,0.003827,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.273373,0.003827,-0.003500,0.249976,0,0);}
.m119_c01112{transform:matrix(0.274066,0.002741,-0.002500,0.249988,0,0);-ms-transform:matrix(0.274066,0.002741,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.274066,0.002741,-0.002500,0.249988,0,0);}
.md8_c01112{transform:matrix(0.275283,0.003854,-0.003500,0.249976,0,0);-ms-transform:matrix(0.275283,0.003854,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.275283,0.003854,-0.003500,0.249976,0,0);}
.mb9_c01112{transform:matrix(0.275328,0.003855,-0.003500,0.249976,0,0);-ms-transform:matrix(0.275328,0.003855,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.275328,0.003855,-0.003500,0.249976,0,0);}
.ma8_c01112{transform:matrix(0.275683,0.003860,-0.003500,0.249976,0,0);-ms-transform:matrix(0.275683,0.003860,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.275683,0.003860,-0.003500,0.249976,0,0);}
.mfe_c01112{transform:matrix(0.277081,0.002771,-0.002500,0.249988,0,0);-ms-transform:matrix(0.277081,0.002771,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.277081,0.002771,-0.002500,0.249988,0,0);}
.m114_c01112{transform:matrix(0.277126,0.002771,-0.002500,0.249988,0,0);-ms-transform:matrix(0.277126,0.002771,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.277126,0.002771,-0.002500,0.249988,0,0);}
.m36_c01112{transform:matrix(0.278025,0.003336,-0.003000,0.249982,0,0);-ms-transform:matrix(0.278025,0.003336,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.278025,0.003336,-0.003000,0.249982,0,0);}
.mc5_c01112{transform:matrix(0.278258,0.003896,-0.003500,0.249976,0,0);-ms-transform:matrix(0.278258,0.003896,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.278258,0.003896,-0.003500,0.249976,0,0);}
.mff_c01112{transform:matrix(0.278421,0.002784,-0.002500,0.249988,0,0);-ms-transform:matrix(0.278421,0.002784,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.278421,0.002784,-0.002500,0.249988,0,0);}
.mbe_c01112{transform:matrix(0.280747,0.003930,-0.003500,0.249976,0,0);-ms-transform:matrix(0.280747,0.003930,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.280747,0.003930,-0.003500,0.249976,0,0);}
.m19_c01112{transform:matrix(0.281080,0.003373,-0.003000,0.249982,0,0);-ms-transform:matrix(0.281080,0.003373,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.281080,0.003373,-0.003000,0.249982,0,0);}
.m10b_c01112{transform:matrix(0.281556,0.002816,-0.002500,0.249988,0,0);-ms-transform:matrix(0.281556,0.002816,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.281556,0.002816,-0.002500,0.249988,0,0);}
.mae_c01112{transform:matrix(0.281717,0.003944,-0.003500,0.249976,0,0);-ms-transform:matrix(0.281717,0.003944,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.281717,0.003944,-0.003500,0.249976,0,0);}
.mb7_c01112{transform:matrix(0.281722,0.003944,-0.003500,0.249976,0,0);-ms-transform:matrix(0.281722,0.003944,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.281722,0.003944,-0.003500,0.249976,0,0);}
.mb5_c01112{transform:matrix(0.282022,0.003948,-0.003500,0.249976,0,0);-ms-transform:matrix(0.282022,0.003948,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.282022,0.003948,-0.003500,0.249976,0,0);}
.mc2_c01112{transform:matrix(0.282132,0.003950,-0.003500,0.249976,0,0);-ms-transform:matrix(0.282132,0.003950,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.282132,0.003950,-0.003500,0.249976,0,0);}
.m2a_c01112{transform:matrix(0.282465,0.003390,-0.003000,0.249982,0,0);-ms-transform:matrix(0.282465,0.003390,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.282465,0.003390,-0.003000,0.249982,0,0);}
.m38_c01112{transform:matrix(0.284195,0.003410,-0.003000,0.249982,0,0);-ms-transform:matrix(0.284195,0.003410,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.284195,0.003410,-0.003000,0.249982,0,0);}
.m104_c01112{transform:matrix(0.285766,0.002858,-0.002500,0.249988,0,0);-ms-transform:matrix(0.285766,0.002858,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.285766,0.002858,-0.002500,0.249988,0,0);}
.m4a_c01112{transform:matrix(0.288034,0.003456,-0.003000,0.249982,0,0);-ms-transform:matrix(0.288034,0.003456,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.288034,0.003456,-0.003000,0.249982,0,0);}
.m20_c01112{transform:matrix(0.293819,0.003526,-0.003000,0.249982,0,0);-ms-transform:matrix(0.293819,0.003526,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.293819,0.003526,-0.003000,0.249982,0,0);}
.m139_c01112{transform:matrix(0.297560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297560,0.000000,0.000000,0.250000,0,0);}
.m77_c01112{transform:matrix(0.317609,0.005082,-0.003999,0.249968,0,0);-ms-transform:matrix(0.317609,0.005082,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.317609,0.005082,-0.003999,0.249968,0,0);}
.m2_c01112{transform:matrix(0.325385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325385,0.000000,0.000000,0.250000,0,0);}
.m56_c01112{transform:matrix(0.336356,0.004036,-0.003000,0.249982,0,0);-ms-transform:matrix(0.336356,0.004036,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.336356,0.004036,-0.003000,0.249982,0,0);}
.m11e_c01112{transform:matrix(0.341718,0.003417,-0.002500,0.249988,0,0);-ms-transform:matrix(0.341718,0.003417,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.341718,0.003417,-0.002500,0.249988,0,0);}
.m10_c01112{transform:matrix(0.344585,0.004135,-0.003000,0.249982,0,0);-ms-transform:matrix(0.344585,0.004135,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.344585,0.004135,-0.003000,0.249982,0,0);}
.m10a_c01112{transform:matrix(0.349498,0.003495,-0.002500,0.249988,0,0);-ms-transform:matrix(0.349498,0.003495,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.349498,0.003495,-0.002500,0.249988,0,0);}
.maa_c01112{transform:matrix(0.400741,0.005610,-0.003500,0.249976,0,0);-ms-transform:matrix(0.400741,0.005610,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.400741,0.005610,-0.003500,0.249976,0,0);}
.m1_c01112{transform:matrix(0.406185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406185,0.000000,0.000000,0.250000,0,0);}
.m101_c01112{transform:matrix(0.424774,0.004248,-0.002500,0.249988,0,0);-ms-transform:matrix(0.424774,0.004248,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.424774,0.004248,-0.002500,0.249988,0,0);}
.mf_c01112{transform:matrix(0.426784,0.005121,-0.003000,0.249982,0,0);-ms-transform:matrix(0.426784,0.005121,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.426784,0.005121,-0.003000,0.249982,0,0);}
.m11a_c01112{transform:matrix(0.564147,0.005641,-0.002500,0.249988,0,0);-ms-transform:matrix(0.564147,0.005641,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.564147,0.005641,-0.002500,0.249988,0,0);}
.v0_c01112{vertical-align:0.000000px;}
.ls0_c01112{letter-spacing:0.000000px;}
.sc__c01112{text-shadow:none;}
.sc0_c01112{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__c01112{-webkit-text-stroke:0px transparent;}
.sc0_c01112{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01112{word-spacing:0.000000px;}
.fc0_c01112{color:transparent;}
.fs12_c01112{font-size:42.000000px;}
.fs0_c01112{font-size:72.000000px;}
.fsd_c01112{font-size:72.003600px;}
.fs2_c01112{font-size:72.005184px;}
.fsa_c01112{font-size:72.007056px;}
.fs6_c01112{font-size:72.009215px;}
.fs3_c01112{font-size:78.005616px;}
.fsb_c01112{font-size:78.007644px;}
.fsf_c01112{font-size:83.961771px;}
.fse_c01112{font-size:84.004200px;}
.fs11_c01112{font-size:84.005082px;}
.fs1_c01112{font-size:84.006048px;}
.fs8_c01112{font-size:84.008232px;}
.fsc_c01112{font-size:90.004500px;}
.fs7_c01112{font-size:96.012287px;}
.fs9_c01112{font-size:102.009996px;}
.fs5_c01112{font-size:102.013055px;}
.fs4_c01112{font-size:108.000000px;}
.fs10_c01112{font-size:114.006897px;}
.y0_c01112{bottom:0.000000px;}
.y136_c01112{bottom:54.074304px;}
.y135_c01112{bottom:54.904317px;}
.y134_c01112{bottom:57.125145px;}
.y133_c01112{bottom:57.947836px;}
.y132_c01112{bottom:60.147672px;}
.y131_c01112{bottom:62.084133px;}
.y130_c01112{bottom:63.455307px;}
.y12f_c01112{bottom:90.791478px;}
.y12e_c01112{bottom:91.159741px;}
.y12d_c01112{bottom:92.128160px;}
.y12c_c01112{bottom:92.499426px;}
.y12b_c01112{bottom:93.467712px;}
.y12a_c01112{bottom:93.819558px;}
.y129_c01112{bottom:94.438885px;}
.y128_c01112{bottom:95.043000px;}
.y127_c01112{bottom:135.937329px;}
.y126_c01112{bottom:137.757494px;}
.y125_c01112{bottom:139.251502px;}
.y124_c01112{bottom:141.821493px;}
.y123_c01112{bottom:143.636955px;}
.y122_c01112{bottom:146.216103px;}
.y121_c01112{bottom:147.704420px;}
.y120_c01112{bottom:150.590270px;}
.y11f_c01112{bottom:152.785050px;}
.y11e_c01112{bottom:155.658772px;}
.y11d_c01112{bottom:156.750000px;}
.y11c_c01112{bottom:173.845845px;}
.y11b_c01112{bottom:174.235905px;}
.y11a_c01112{bottom:175.936335px;}
.y119_c01112{bottom:176.496360px;}
.y118_c01112{bottom:177.243795px;}
.y117_c01112{bottom:178.948515px;}
.y116_c01112{bottom:180.092025px;}
.y115_c01112{bottom:181.395975px;}
.y114_c01112{bottom:181.956315px;}
.y113_c01112{bottom:182.873760px;}
.y112_c01112{bottom:184.031910px;}
.y111_c01112{bottom:184.943565px;}
.y110_c01112{bottom:206.119440px;}
.y10f_c01112{bottom:207.282120px;}
.y10e_c01112{bottom:208.003260px;}
.y10d_c01112{bottom:210.090705px;}
.y10c_c01112{bottom:210.806040px;}
.y10b_c01112{bottom:212.201235px;}
.y10a_c01112{bottom:214.065840px;}
.y109_c01112{bottom:214.764930px;}
.y108_c01112{bottom:216.113220px;}
.y107_c01112{bottom:216.823020px;}
.y106_c01112{bottom:217.747440px;}
.y105_c01112{bottom:218.460705px;}
.y104_c01112{bottom:220.324485px;}
.y103_c01112{bottom:245.198655px;}
.y102_c01112{bottom:247.093260px;}
.y101_c01112{bottom:248.218785px;}
.y100_c01112{bottom:248.779320px;}
.yff_c01112{bottom:249.359655px;}
.yfe_c01112{bottom:251.024445px;}
.yfd_c01112{bottom:252.919635px;}
.yfc_c01112{bottom:254.071725px;}
.yfb_c01112{bottom:255.001275px;}
.yfa_c01112{bottom:255.727035px;}
.yf9_c01112{bottom:256.145010px;}
.yf8_c01112{bottom:256.498380px;}
.yf7_c01112{bottom:283.605030px;}
.yf6_c01112{bottom:284.202195px;}
.yf5_c01112{bottom:284.580795px;}
.yf4_c01112{bottom:284.963490px;}
.yf3_c01112{bottom:285.799155px;}
.yf2_c01112{bottom:286.778010px;}
.yf1_c01112{bottom:287.256780px;}
.yf0_c01112{bottom:288.001500px;}
.yef_c01112{bottom:289.209660px;}
.yee_c01112{bottom:289.827075px;}
.yed_c01112{bottom:290.179770px;}
.yec_c01112{bottom:290.786895px;}
.yeb_c01112{bottom:317.327400px;}
.yea_c01112{bottom:318.590985px;}
.ye9_c01112{bottom:319.529730px;}
.ye8_c01112{bottom:320.591955px;}
.ye7_c01112{bottom:321.543135px;}
.ye6_c01112{bottom:322.005105px;}
.ye5_c01112{bottom:322.624860px;}
.ye4_c01112{bottom:324.163515px;}
.ye3_c01112{bottom:324.920025px;}
.ye2_c01112{bottom:325.565910px;}
.ye1_c01112{bottom:325.844880px;}
.ye0_c01112{bottom:326.158800px;}
.ydf_c01112{bottom:391.914495px;}
.yde_c01112{bottom:392.610945px;}
.ydd_c01112{bottom:392.940360px;}
.ydc_c01112{bottom:393.715650px;}
.ydb_c01112{bottom:394.719840px;}
.yda_c01112{bottom:395.043885px;}
.yd9_c01112{bottom:396.156255px;}
.yd8_c01112{bottom:396.361500px;}
.yd7_c01112{bottom:427.408095px;}
.yd6_c01112{bottom:428.523342px;}
.yd5_c01112{bottom:429.903168px;}
.yd4_c01112{bottom:430.364433px;}
.yd3_c01112{bottom:431.442006px;}
.yd2_c01112{bottom:432.080553px;}
.yd1_c01112{bottom:432.828762px;}
.yd0_c01112{bottom:433.607673px;}
.ycf_c01112{bottom:460.104024px;}
.yce_c01112{bottom:461.255805px;}
.ycd_c01112{bottom:461.676657px;}
.ycc_c01112{bottom:461.985066px;}
.ycb_c01112{bottom:462.828039px;}
.yca_c01112{bottom:463.276896px;}
.yc9_c01112{bottom:463.842564px;}
.yc8_c01112{bottom:464.436279px;}
.yc7_c01112{bottom:464.842923px;}
.yc6_c01112{bottom:465.734841px;}
.yc5_c01112{bottom:466.563837px;}
.yc4_c01112{bottom:466.868172px;}
.yc3_c01112{bottom:468.440406px;}
.yc2_c01112{bottom:493.106967px;}
.yc1_c01112{bottom:493.638201px;}
.yc0_c01112{bottom:494.885067px;}
.ybf_c01112{bottom:496.135860px;}
.ybe_c01112{bottom:496.654086px;}
.ybd_c01112{bottom:497.365488px;}
.ybc_c01112{bottom:499.138002px;}
.ybb_c01112{bottom:500.031063px;}
.yba_c01112{bottom:500.715000px;}
.yb9_c01112{bottom:501.426822px;}
.yb8_c01112{bottom:501.784743px;}
.yb7_c01112{bottom:503.544228px;}
.yb6_c01112{bottom:528.671517px;}
.yb5_c01112{bottom:530.344329px;}
.yb4_c01112{bottom:530.835402px;}
.yb3_c01112{bottom:532.364163px;}
.yb2_c01112{bottom:533.000673px;}
.yb1_c01112{bottom:534.167880px;}
.yb0_c01112{bottom:534.500655px;}
.yaf_c01112{bottom:535.006218px;}
.yae_c01112{bottom:535.848105px;}
.yad_c01112{bottom:536.308416px;}
.yac_c01112{bottom:536.817285px;}
.yab_c01112{bottom:537.653229px;}
.yaa_c01112{bottom:538.645854px;}
.y137_c01112{bottom:563.085000px;}
.ya9_c01112{bottom:565.804548px;}
.ya8_c01112{bottom:566.427156px;}
.ya7_c01112{bottom:567.048147px;}
.ya6_c01112{bottom:568.428939px;}
.ya5_c01112{bottom:569.044323px;}
.ya4_c01112{bottom:570.303735px;}
.ya3_c01112{bottom:570.919917px;}
.ya2_c01112{bottom:571.561971px;}
.ya1_c01112{bottom:572.466147px;}
.ya0_c01112{bottom:572.938647px;}
.y9f_c01112{bottom:573.552267px;}
.y9e_c01112{bottom:574.140666px;}
.y9d_c01112{bottom:574.828353px;}
.y9c_c01112{bottom:601.968597px;}
.y9b_c01112{bottom:602.892132px;}
.y9a_c01112{bottom:603.170460px;}
.y99_c01112{bottom:603.708612px;}
.y98_c01112{bottom:604.502922px;}
.y97_c01112{bottom:604.888200px;}
.y96_c01112{bottom:605.698137px;}
.y95_c01112{bottom:606.883869px;}
.y94_c01112{bottom:607.551717px;}
.y93_c01112{bottom:607.952895px;}
.y92_c01112{bottom:608.870601px;}
.y91_c01112{bottom:609.141462px;}
.y90_c01112{bottom:609.928695px;}
.y8f_c01112{bottom:637.213677px;}
.y8e_c01112{bottom:637.523763px;}
.y8d_c01112{bottom:638.454672px;}
.y8c_c01112{bottom:639.411243px;}
.y8b_c01112{bottom:641.259642px;}
.y8a_c01112{bottom:642.031056px;}
.y89_c01112{bottom:643.584741px;}
.y88_c01112{bottom:644.334588px;}
.y87_c01112{bottom:644.975907px;}
.y86_c01112{bottom:645.282066px;}
.y85_c01112{bottom:645.573000px;}
.y84_c01112{bottom:708.560916px;}
.y83_c01112{bottom:709.927956px;}
.y82_c01112{bottom:710.345784px;}
.y81_c01112{bottom:711.135888px;}
.y80_c01112{bottom:711.531048px;}
.y7f_c01112{bottom:711.928860px;}
.y7e_c01112{bottom:713.248608px;}
.y7d_c01112{bottom:713.652936px;}
.y7c_c01112{bottom:714.190980px;}
.y7b_c01112{bottom:714.719640px;}
.y7a_c01112{bottom:715.241736px;}
.y79_c01112{bottom:715.517364px;}
.y78_c01112{bottom:715.762992px;}
.y77_c01112{bottom:747.494256px;}
.y76_c01112{bottom:747.834528px;}
.y75_c01112{bottom:748.613148px;}
.y74_c01112{bottom:749.144160px;}
.y73_c01112{bottom:749.608008px;}
.y72_c01112{bottom:749.913168px;}
.y71_c01112{bottom:750.258480px;}
.y70_c01112{bottom:750.596628px;}
.y6f_c01112{bottom:777.988728px;}
.y6e_c01112{bottom:778.528872px;}
.y6d_c01112{bottom:778.886568px;}
.y6c_c01112{bottom:780.481896px;}
.y6b_c01112{bottom:781.367304px;}
.y6a_c01112{bottom:781.911216px;}
.y69_c01112{bottom:783.827016px;}
.y68_c01112{bottom:784.578456px;}
.y67_c01112{bottom:785.277576px;}
.y66_c01112{bottom:786.513000px;}
.y65_c01112{bottom:816.226500px;}
.y64_c01112{bottom:857.780898px;}
.y63_c01112{bottom:886.868730px;}
.y62_c01112{bottom:888.051042px;}
.y61_c01112{bottom:888.456510px;}
.y60_c01112{bottom:889.263414px;}
.y5f_c01112{bottom:889.801218px;}
.y5e_c01112{bottom:890.046576px;}
.y5d_c01112{bottom:890.715132px;}
.y5c_c01112{bottom:891.116748px;}
.y5b_c01112{bottom:891.654120px;}
.y5a_c01112{bottom:892.046592px;}
.y59_c01112{bottom:892.422558px;}
.y58_c01112{bottom:892.836774px;}
.y57_c01112{bottom:893.624544px;}
.y56_c01112{bottom:894.224520px;}
.y55_c01112{bottom:924.724260px;}
.y54_c01112{bottom:925.060464px;}
.y53_c01112{bottom:925.259718px;}
.y52_c01112{bottom:925.717656px;}
.y51_c01112{bottom:925.918272px;}
.y50_c01112{bottom:926.249466px;}
.y4f_c01112{bottom:926.391870px;}
.y4e_c01112{bottom:926.793678px;}
.y4d_c01112{bottom:927.188274px;}
.y4c_c01112{bottom:927.387276px;}
.y4b_c01112{bottom:927.917274px;}
.y4a_c01112{bottom:928.110582px;}
.y49_c01112{bottom:928.248360px;}
.y48_c01112{bottom:928.514076px;}
.y47_c01112{bottom:957.458502px;}
.y46_c01112{bottom:958.015068px;}
.y45_c01112{bottom:958.355826px;}
.y44_c01112{bottom:959.026134px;}
.y43_c01112{bottom:959.908434px;}
.y42_c01112{bottom:960.354246px;}
.y41_c01112{bottom:961.237068px;}
.y40_c01112{bottom:961.571436px;}
.y3f_c01112{bottom:962.108106px;}
.y3e_c01112{bottom:962.564274px;}
.y3d_c01112{bottom:962.786058px;}
.y3c_c01112{bottom:963.887838px;}
.y3b_c01112{bottom:993.912588px;}
.y3a_c01112{bottom:994.103232px;}
.y39_c01112{bottom:994.316208px;}
.y38_c01112{bottom:994.906014px;}
.y37_c01112{bottom:995.451948px;}
.y36_c01112{bottom:995.710920px;}
.y35_c01112{bottom:996.381798px;}
.y34_c01112{bottom:996.644232px;}
.y33_c01112{bottom:997.040238px;}
.y32_c01112{bottom:997.240782px;}
.y31_c01112{bottom:997.635558px;}
.y30_c01112{bottom:997.909866px;}
.y2f_c01112{bottom:1027.028022px;}
.y2e_c01112{bottom:1027.643274px;}
.y2d_c01112{bottom:1028.129814px;}
.y2c_c01112{bottom:1029.100830px;}
.y2b_c01112{bottom:1029.346800px;}
.y2a_c01112{bottom:1029.828252px;}
.y29_c01112{bottom:1031.064006px;}
.y28_c01112{bottom:1031.429580px;}
.y27_c01112{bottom:1032.160638px;}
.y26_c01112{bottom:1032.519552px;}
.y25_c01112{bottom:1033.247010px;}
.y24_c01112{bottom:1034.094324px;}
.y23_c01112{bottom:1063.454082px;}
.y22_c01112{bottom:1063.851780px;}
.y21_c01112{bottom:1064.153166px;}
.y20_c01112{bottom:1064.442330px;}
.y1f_c01112{bottom:1064.656314px;}
.y1e_c01112{bottom:1065.649560px;}
.y1d_c01112{bottom:1066.536606px;}
.y1c_c01112{bottom:1066.750974px;}
.y1b_c01112{bottom:1067.932974px;}
.y1a_c01112{bottom:1068.445650px;}
.y19_c01112{bottom:1068.926562px;}
.y18_c01112{bottom:1098.540012px;}
.y17_c01112{bottom:1099.106466px;}
.y16_c01112{bottom:1099.438968px;}
.y15_c01112{bottom:1099.984524px;}
.y14_c01112{bottom:1100.207580px;}
.y13_c01112{bottom:1100.998332px;}
.y12_c01112{bottom:1101.208584px;}
.y11_c01112{bottom:1101.767286px;}
.y10_c01112{bottom:1102.488348px;}
.yf_c01112{bottom:1102.969878px;}
.ye_c01112{bottom:1103.645652px;}
.yd_c01112{bottom:1104.297612px;}
.yc_c01112{bottom:1133.028816px;}
.yb_c01112{bottom:1133.429802px;}
.ya_c01112{bottom:1133.834820px;}
.y9_c01112{bottom:1134.901644px;}
.y8_c01112{bottom:1135.960512px;}
.y7_c01112{bottom:1136.722200px;}
.y6_c01112{bottom:1137.570324px;}
.y5_c01112{bottom:1138.374492px;}
.y4_c01112{bottom:1138.899300px;}
.y3_c01112{bottom:1139.155314px;}
.y2_c01112{bottom:1139.401500px;}
.y1_c01112{bottom:1200.831000px;}
.h14_c01112{height:42.000000px;}
.h2_c01112{height:72.000000px;}
.hf_c01112{height:72.003600px;}
.h4_c01112{height:72.005184px;}
.hc_c01112{height:72.007056px;}
.h8_c01112{height:72.009215px;}
.h5_c01112{height:78.005616px;}
.hd_c01112{height:78.007644px;}
.h11_c01112{height:83.961771px;}
.h10_c01112{height:84.004200px;}
.h13_c01112{height:84.005082px;}
.h3_c01112{height:84.006048px;}
.ha_c01112{height:84.008232px;}
.he_c01112{height:90.004500px;}
.h9_c01112{height:96.012287px;}
.hb_c01112{height:102.009996px;}
.h7_c01112{height:102.013055px;}
.h6_c01112{height:108.000000px;}
.h12_c01112{height:114.006897px;}
.h0_c01112{height:1246.320000px;}
.h1_c01112{height:1246.500000px;}
.w0_c01112{width:927.450000px;}
.w1_c01112{width:927.750000px;}
.x0_c01112{left:0.000000px;}
.x41_c01112{left:116.424594px;}
.xc4_c01112{left:125.538543px;}
.x78_c01112{left:126.707406px;}
.x92_c01112{left:128.601075px;}
.x4b_c01112{left:129.870000px;}
.x27_c01112{left:132.225414px;}
.x30_c01112{left:133.236354px;}
.xf_c01112{left:134.856762px;}
.xaa_c01112{left:147.738930px;}
.x4c_c01112{left:150.120000px;}
.x5c_c01112{left:152.370996px;}
.xbe_c01112{left:159.850433px;}
.x56_c01112{left:164.578836px;}
.x42_c01112{left:166.422594px;}
.x99_c01112{left:173.194500px;}
.x5d_c01112{left:175.317960px;}
.x28_c01112{left:177.837690px;}
.xc5_c01112{left:180.364095px;}
.xb9_c01112{left:181.431240px;}
.xa2_c01112{left:182.906760px;}
.x93_c01112{left:184.237575px;}
.x18_c01112{left:188.597838px;}
.x9a_c01112{left:193.719000px;}
.x70_c01112{left:196.157805px;}
.x67_c01112{left:197.451000px;}
.x10_c01112{left:200.063328px;}
.x1f_c01112{left:211.023744px;}
.xa3_c01112{left:215.025945px;}
.x5e_c01112{left:218.826744px;}
.x57_c01112{left:229.614576px;}
.x39_c01112{left:232.116006px;}
.x94_c01112{left:237.681075px;}
.x68_c01112{left:240.100500px;}
.x4f_c01112{left:241.708500px;}
.x29_c01112{left:243.740442px;}
.x4_c01112{left:246.345000px;}
.xb0_c01112{left:249.122130px;}
.x81_c01112{left:251.311773px;}
.x4d_c01112{left:254.340000px;}
.xc6_c01112{left:257.803166px;}
.x79_c01112{left:261.686406px;}
.x5f_c01112{left:262.839552px;}
.x31_c01112{left:265.536522px;}
.x5_c01112{left:266.860500px;}
.xab_c01112{left:269.708895px;}
.xa4_c01112{left:271.216890px;}
.x4e_c01112{left:274.320000px;}
.x58_c01112{left:276.047040px;}
.x20_c01112{left:277.146036px;}
.x95_c01112{left:283.291575px;}
.x69_c01112{left:285.909000px;}
.x6_c01112{left:288.195000px;}
.x9c_c01112{left:293.533125px;}
.x71_c01112{left:295.201077px;}
.x43_c01112{left:297.918594px;}
.xba_c01112{left:303.482190px;}
.x9b_c01112{left:304.956000px;}
.x86_c01112{left:306.444744px;}
.x60_c01112{left:307.626408px;}
.x21_c01112{left:309.805932px;}
.x32_c01112{left:311.176620px;}
.xbf_c01112{left:313.287842px;}
.x11_c01112{left:315.758100px;}
.x50_c01112{left:318.922500px;}
.x3a_c01112{left:320.413860px;}
.xb1_c01112{left:326.885565px;}
.x59_c01112{left:329.209152px;}
.x44_c01112{left:330.624594px;}
.x7_c01112{left:331.929000px;}
.xbb_c01112{left:336.413880px;}
.x8e_c01112{left:337.579719px;}
.x6a_c01112{left:339.469500px;}
.x61_c01112{left:341.336568px;}
.x2a_c01112{left:343.085088px;}
.xc7_c01112{left:345.820119px;}
.x87_c01112{left:349.189047px;}
.x3b_c01112{left:353.624754px;}
.xc2_c01112{left:357.057000px;}
.x7a_c01112{left:360.020406px;}
.x51_c01112{left:362.617500px;}
.x33_c01112{left:364.900416px;}
.x82_c01112{left:372.100593px;}
.x45_c01112{left:375.405594px;}
.x19_c01112{left:376.827606px;}
.x1_c01112{left:378.270000px;}
.xa5_c01112{left:381.081795px;}
.x72_c01112{left:384.312576px;}
.x2b_c01112{left:386.832738px;}
.x12_c01112{left:387.848328px;}
.xb2_c01112{left:391.057500px;}
.x96_c01112{left:393.208575px;}
.x8_c01112{left:398.943000px;}
.x2_c01112{left:400.140000px;}
.x9d_c01112{left:403.444230px;}
.x7b_c01112{left:405.881406px;}
.x5a_c01112{left:407.036616px;}
.x22_c01112{left:409.443120px;}
.xbc_c01112{left:413.103510px;}
.x3c_c01112{left:419.512506px;}
.xb3_c01112{left:424.362840px;}
.x83_c01112{left:428.016816px;}
.x8f_c01112{left:437.514126px;}
.x5b_c01112{left:441.056880px;}
.x13_c01112{left:443.783178px;}
.x3_c01112{left:446.310000px;}
.x9e_c01112{left:447.717960px;}
.xa6_c01112{left:448.803120px;}
.x7c_c01112{left:449.894406px;}
.x62_c01112{left:451.296600px;}
.x14_c01112{left:464.804682px;}
.xc8_c01112{left:467.575875px;}
.x9_c01112{left:469.620000px;}
.xc3_c01112{left:478.846500px;}
.x9f_c01112{left:480.713640px;}
.x73_c01112{left:483.153348px;}
.x46_c01112{left:485.033094px;}
.x34_c01112{left:486.710850px;}
.x97_c01112{left:491.767575px;}
.x1a_c01112{left:499.116498px;}
.xc9_c01112{left:500.753760px;}
.x6b_c01112{left:505.548000px;}
.x3d_c01112{left:510.245040px;}
.xb4_c01112{left:513.163575px;}
.x88_c01112{left:515.796885px;}
.x63_c01112{left:517.455348px;}
.x23_c01112{left:521.798970px;}
.xc0_c01112{left:523.783635px;}
.x90_c01112{left:526.649865px;}
.x47_c01112{left:529.850094px;}
.x35_c01112{left:531.237912px;}
.xa_c01112{left:533.094000px;}
.x7d_c01112{left:539.852406px;}
.x2c_c01112{left:541.831398px;}
.x15_c01112{left:543.952590px;}
.xac_c01112{left:546.946500px;}
.x84_c01112{left:548.280636px;}
.x74_c01112{left:550.650738px;}
.x89_c01112{left:560.288646px;}
.x52_c01112{left:563.314500px;}
.x16_c01112{left:566.291130px;}
.x98_c01112{left:571.428075px;}
.xb5_c01112{left:579.625770px;}
.xa7_c01112{left:581.364300px;}
.x64_c01112{left:583.341072px;}
.x24_c01112{left:587.918262px;}
.x8a_c01112{left:592.696743px;}
.x48_c01112{left:597.092094px;}
.x3e_c01112{left:598.818912px;}
.x1b_c01112{left:609.515976px;}
.xad_c01112{left:614.078805px;}
.x65_c01112{left:618.176304px;}
.x36_c01112{left:619.515036px;}
.xb_c01112{left:621.333000px;}
.xa0_c01112{left:624.598395px;}
.x91_c01112{left:625.996251px;}
.x49_c01112{left:630.881094px;}
.x1c_c01112{left:633.348840px;}
.x6c_c01112{left:637.576500px;}
.x75_c01112{left:648.945489px;}
.x85_c01112{left:650.190708px;}
.x17_c01112{left:654.089736px;}
.xa8_c01112{left:657.280035px;}
.x1d_c01112{left:665.446992px;}
.x8b_c01112{left:670.894059px;}
.x25_c01112{left:676.212324px;}
.xae_c01112{left:680.276670px;}
.x7e_c01112{left:682.436406px;}
.x37_c01112{left:686.500638px;}
.xa1_c01112{left:691.620210px;}
.x76_c01112{left:693.814749px;}
.x1e_c01112{left:698.938698px;}
.xc1_c01112{left:701.770969px;}
.x6d_c01112{left:705.903000px;}
.x3f_c01112{left:708.467814px;}
.xc_c01112{left:710.235000px;}
.xb6_c01112{left:713.039085px;}
.x77_c01112{left:717.017400px;}
.x53_c01112{left:718.360500px;}
.x26_c01112{left:720.507864px;}
.x7f_c01112{left:726.792906px;}
.x4a_c01112{left:729.407094px;}
.x2d_c01112{left:731.115024px;}
.x66_c01112{left:732.123600px;}
.x54_c01112{left:740.716500px;}
.xd_c01112{left:743.986500px;}
.xb7_c01112{left:747.349305px;}
.x8c_c01112{left:748.810875px;}
.xbd_c01112{left:757.491390px;}
.x40_c01112{left:764.613864px;}
.x2e_c01112{left:766.490562px;}
.x80_c01112{left:771.264906px;}
.x6e_c01112{left:772.396500px;}
.x55_c01112{left:774.475500px;}
.x38_c01112{left:776.154780px;}
.xe_c01112{left:777.402000px;}
.xa9_c01112{left:780.824805px;}
.x8d_c01112{left:782.040951px;}
.xaf_c01112{left:791.729370px;}
.x6f_c01112{left:794.545500px;}
.x2f_c01112{left:798.379866px;}
.xb8_c01112{left:802.711215px;}
.xca_c01112{left:876.420000px;}
@media print{
.v0_c01112{vertical-align:0.000000pt;}
.ls0_c01112{letter-spacing:0.000000pt;}
.ws0_c01112{word-spacing:0.000000pt;}
.fs12_c01112{font-size:37.333333pt;}
.fs0_c01112{font-size:64.000000pt;}
.fsd_c01112{font-size:64.003200pt;}
.fs2_c01112{font-size:64.004608pt;}
.fsa_c01112{font-size:64.006272pt;}
.fs6_c01112{font-size:64.008191pt;}
.fs3_c01112{font-size:69.338325pt;}
.fsb_c01112{font-size:69.340128pt;}
.fsf_c01112{font-size:74.632686pt;}
.fse_c01112{font-size:74.670400pt;}
.fs11_c01112{font-size:74.671184pt;}
.fs1_c01112{font-size:74.672042pt;}
.fs8_c01112{font-size:74.673984pt;}
.fsc_c01112{font-size:80.004000pt;}
.fs7_c01112{font-size:85.344255pt;}
.fs9_c01112{font-size:90.675552pt;}
.fs5_c01112{font-size:90.678271pt;}
.fs4_c01112{font-size:96.000000pt;}
.fs10_c01112{font-size:101.339464pt;}
.y0_c01112{bottom:0.000000pt;}
.y136_c01112{bottom:48.066048pt;}
.y135_c01112{bottom:48.803837pt;}
.y134_c01112{bottom:50.777907pt;}
.y133_c01112{bottom:51.509188pt;}
.y132_c01112{bottom:53.464597pt;}
.y131_c01112{bottom:55.185896pt;}
.y130_c01112{bottom:56.404717pt;}
.y12f_c01112{bottom:80.703536pt;}
.y12e_c01112{bottom:81.030881pt;}
.y12d_c01112{bottom:81.891697pt;}
.y12c_c01112{bottom:82.221712pt;}
.y12b_c01112{bottom:83.082411pt;}
.y12a_c01112{bottom:83.395163pt;}
.y129_c01112{bottom:83.945676pt;}
.y128_c01112{bottom:84.482667pt;}
.y127_c01112{bottom:120.833181pt;}
.y126_c01112{bottom:122.451105pt;}
.y125_c01112{bottom:123.779113pt;}
.y124_c01112{bottom:126.063549pt;}
.y123_c01112{bottom:127.677293pt;}
.y122_c01112{bottom:129.969869pt;}
.y121_c01112{bottom:131.292817pt;}
.y120_c01112{bottom:133.858017pt;}
.y11f_c01112{bottom:135.808933pt;}
.y11e_c01112{bottom:138.363353pt;}
.y11d_c01112{bottom:139.333333pt;}
.y11c_c01112{bottom:154.529640pt;}
.y11b_c01112{bottom:154.876360pt;}
.y11a_c01112{bottom:156.387853pt;}
.y119_c01112{bottom:156.885653pt;}
.y118_c01112{bottom:157.550040pt;}
.y117_c01112{bottom:159.065347pt;}
.y116_c01112{bottom:160.081800pt;}
.y115_c01112{bottom:161.240867pt;}
.y114_c01112{bottom:161.738947pt;}
.y113_c01112{bottom:162.554453pt;}
.y112_c01112{bottom:163.583920pt;}
.y111_c01112{bottom:164.394280pt;}
.y110_c01112{bottom:183.217280pt;}
.y10f_c01112{bottom:184.250773pt;}
.y10e_c01112{bottom:184.891787pt;}
.y10d_c01112{bottom:186.747293pt;}
.y10c_c01112{bottom:187.383147pt;}
.y10b_c01112{bottom:188.623320pt;}
.y10a_c01112{bottom:190.280747pt;}
.y109_c01112{bottom:190.902160pt;}
.y108_c01112{bottom:192.100640pt;}
.y107_c01112{bottom:192.731573pt;}
.y106_c01112{bottom:193.553280pt;}
.y105_c01112{bottom:194.187293pt;}
.y104_c01112{bottom:195.843987pt;}
.y103_c01112{bottom:217.954360pt;}
.y102_c01112{bottom:219.638453pt;}
.y101_c01112{bottom:220.638920pt;}
.y100_c01112{bottom:221.137173pt;}
.yff_c01112{bottom:221.653027pt;}
.yfe_c01112{bottom:223.132840pt;}
.yfd_c01112{bottom:224.817453pt;}
.yfc_c01112{bottom:225.841533pt;}
.yfb_c01112{bottom:226.667800pt;}
.yfa_c01112{bottom:227.312920pt;}
.yf9_c01112{bottom:227.684453pt;}
.yf8_c01112{bottom:227.998560pt;}
.yf7_c01112{bottom:252.093360pt;}
.yf6_c01112{bottom:252.624173pt;}
.yf5_c01112{bottom:252.960707pt;}
.yf4_c01112{bottom:253.300880pt;}
.yf3_c01112{bottom:254.043693pt;}
.yf2_c01112{bottom:254.913787pt;}
.yf1_c01112{bottom:255.339360pt;}
.yf0_c01112{bottom:256.001333pt;}
.yef_c01112{bottom:257.075253pt;}
.yee_c01112{bottom:257.624067pt;}
.yed_c01112{bottom:257.937573pt;}
.yec_c01112{bottom:258.477240pt;}
.yeb_c01112{bottom:282.068800pt;}
.yea_c01112{bottom:283.191987pt;}
.ye9_c01112{bottom:284.026427pt;}
.ye8_c01112{bottom:284.970627pt;}
.ye7_c01112{bottom:285.816120pt;}
.ye6_c01112{bottom:286.226760pt;}
.ye5_c01112{bottom:286.777653pt;}
.ye4_c01112{bottom:288.145347pt;}
.ye3_c01112{bottom:288.817800pt;}
.ye2_c01112{bottom:289.391920pt;}
.ye1_c01112{bottom:289.639893pt;}
.ye0_c01112{bottom:289.918933pt;}
.ydf_c01112{bottom:348.368440pt;}
.yde_c01112{bottom:348.987507pt;}
.ydd_c01112{bottom:349.280320pt;}
.ydc_c01112{bottom:349.969467pt;}
.ydb_c01112{bottom:350.862080pt;}
.yda_c01112{bottom:351.150120pt;}
.yd9_c01112{bottom:352.138893pt;}
.yd8_c01112{bottom:352.321333pt;}
.yd7_c01112{bottom:379.918307pt;}
.yd6_c01112{bottom:380.909637pt;}
.yd5_c01112{bottom:382.136149pt;}
.yd4_c01112{bottom:382.546163pt;}
.yd3_c01112{bottom:383.504005pt;}
.yd2_c01112{bottom:384.071603pt;}
.yd1_c01112{bottom:384.736677pt;}
.yd0_c01112{bottom:385.429043pt;}
.ycf_c01112{bottom:408.981355pt;}
.yce_c01112{bottom:410.005160pt;}
.ycd_c01112{bottom:410.379251pt;}
.ycc_c01112{bottom:410.653392pt;}
.ycb_c01112{bottom:411.402701pt;}
.yca_c01112{bottom:411.801685pt;}
.yc9_c01112{bottom:412.304501pt;}
.yc8_c01112{bottom:412.832248pt;}
.yc7_c01112{bottom:413.193709pt;}
.yc6_c01112{bottom:413.986525pt;}
.yc5_c01112{bottom:414.723411pt;}
.yc4_c01112{bottom:414.993931pt;}
.yc3_c01112{bottom:416.391472pt;}
.yc2_c01112{bottom:438.317304pt;}
.yc1_c01112{bottom:438.789512pt;}
.yc0_c01112{bottom:439.897837pt;}
.ybf_c01112{bottom:441.009653pt;}
.ybe_c01112{bottom:441.470299pt;}
.ybd_c01112{bottom:442.102656pt;}
.ybc_c01112{bottom:443.678224pt;}
.ybb_c01112{bottom:444.472056pt;}
.yba_c01112{bottom:445.080000pt;}
.yb9_c01112{bottom:445.712731pt;}
.yb8_c01112{bottom:446.030883pt;}
.yb7_c01112{bottom:447.594869pt;}
.yb6_c01112{bottom:469.930237pt;}
.yb5_c01112{bottom:471.417181pt;}
.yb4_c01112{bottom:471.853691pt;}
.yb3_c01112{bottom:473.212589pt;}
.yb2_c01112{bottom:473.778376pt;}
.yb1_c01112{bottom:474.815893pt;}
.yb0_c01112{bottom:475.111693pt;}
.yaf_c01112{bottom:475.561083pt;}
.yae_c01112{bottom:476.309427pt;}
.yad_c01112{bottom:476.718592pt;}
.yac_c01112{bottom:477.170920pt;}
.yab_c01112{bottom:477.913981pt;}
.yaa_c01112{bottom:478.796315pt;}
.y137_c01112{bottom:500.520000pt;}
.ya9_c01112{bottom:502.937376pt;}
.ya8_c01112{bottom:503.490805pt;}
.ya7_c01112{bottom:504.042797pt;}
.ya6_c01112{bottom:505.270168pt;}
.ya5_c01112{bottom:505.817176pt;}
.ya4_c01112{bottom:506.936653pt;}
.ya3_c01112{bottom:507.484371pt;}
.ya2_c01112{bottom:508.055085pt;}
.ya1_c01112{bottom:508.858797pt;}
.ya0_c01112{bottom:509.278797pt;}
.y9f_c01112{bottom:509.824237pt;}
.y9e_c01112{bottom:510.347259pt;}
.y9d_c01112{bottom:510.958536pt;}
.y9c_c01112{bottom:535.083197pt;}
.y9b_c01112{bottom:535.904117pt;}
.y9a_c01112{bottom:536.151520pt;}
.y99_c01112{bottom:536.629877pt;}
.y98_c01112{bottom:537.335931pt;}
.y97_c01112{bottom:537.678400pt;}
.y96_c01112{bottom:538.398344pt;}
.y95_c01112{bottom:539.452328pt;}
.y94_c01112{bottom:540.045971pt;}
.y93_c01112{bottom:540.402573pt;}
.y92_c01112{bottom:541.218312pt;}
.y91_c01112{bottom:541.459077pt;}
.y90_c01112{bottom:542.158840pt;}
.y8f_c01112{bottom:566.412157pt;}
.y8e_c01112{bottom:566.687789pt;}
.y8d_c01112{bottom:567.515264pt;}
.y8c_c01112{bottom:568.365549pt;}
.y8b_c01112{bottom:570.008571pt;}
.y8a_c01112{bottom:570.694272pt;}
.y89_c01112{bottom:572.075325pt;}
.y88_c01112{bottom:572.741856pt;}
.y87_c01112{bottom:573.311917pt;}
.y86_c01112{bottom:573.584059pt;}
.y85_c01112{bottom:573.842667pt;}
.y84_c01112{bottom:629.831925pt;}
.y83_c01112{bottom:631.047072pt;}
.y82_c01112{bottom:631.418475pt;}
.y81_c01112{bottom:632.120789pt;}
.y80_c01112{bottom:632.472043pt;}
.y7f_c01112{bottom:632.825653pt;}
.y7e_c01112{bottom:633.998763pt;}
.y7d_c01112{bottom:634.358165pt;}
.y7c_c01112{bottom:634.836427pt;}
.y7b_c01112{bottom:635.306347pt;}
.y7a_c01112{bottom:635.770432pt;}
.y79_c01112{bottom:636.015435pt;}
.y78_c01112{bottom:636.233771pt;}
.y77_c01112{bottom:664.439339pt;}
.y76_c01112{bottom:664.741803pt;}
.y75_c01112{bottom:665.433909pt;}
.y74_c01112{bottom:665.905920pt;}
.y73_c01112{bottom:666.318229pt;}
.y72_c01112{bottom:666.589483pt;}
.y71_c01112{bottom:666.896427pt;}
.y70_c01112{bottom:667.197003pt;}
.y6f_c01112{bottom:691.545536pt;}
.y6e_c01112{bottom:692.025664pt;}
.y6d_c01112{bottom:692.343616pt;}
.y6c_c01112{bottom:693.761685pt;}
.y6b_c01112{bottom:694.548715pt;}
.y6a_c01112{bottom:695.032192pt;}
.y69_c01112{bottom:696.735125pt;}
.y68_c01112{bottom:697.403072pt;}
.y67_c01112{bottom:698.024512pt;}
.y66_c01112{bottom:699.122667pt;}
.y65_c01112{bottom:725.534667pt;}
.y64_c01112{bottom:762.471909pt;}
.y63_c01112{bottom:788.327760pt;}
.y62_c01112{bottom:789.378704pt;}
.y61_c01112{bottom:789.739120pt;}
.y60_c01112{bottom:790.456368pt;}
.y5f_c01112{bottom:790.934416pt;}
.y5e_c01112{bottom:791.152512pt;}
.y5d_c01112{bottom:791.746784pt;}
.y5c_c01112{bottom:792.103776pt;}
.y5b_c01112{bottom:792.581440pt;}
.y5a_c01112{bottom:792.930304pt;}
.y59_c01112{bottom:793.264496pt;}
.y58_c01112{bottom:793.632688pt;}
.y57_c01112{bottom:794.332928pt;}
.y56_c01112{bottom:794.866240pt;}
.y55_c01112{bottom:821.977120pt;}
.y54_c01112{bottom:822.275968pt;}
.y53_c01112{bottom:822.453083pt;}
.y52_c01112{bottom:822.860139pt;}
.y51_c01112{bottom:823.038464pt;}
.y50_c01112{bottom:823.332859pt;}
.y4f_c01112{bottom:823.459440pt;}
.y4e_c01112{bottom:823.816603pt;}
.y4d_c01112{bottom:824.167355pt;}
.y4c_c01112{bottom:824.344245pt;}
.y4b_c01112{bottom:824.815355pt;}
.y4a_c01112{bottom:824.987184pt;}
.y49_c01112{bottom:825.109653pt;}
.y48_c01112{bottom:825.345845pt;}
.y47_c01112{bottom:851.074224pt;}
.y46_c01112{bottom:851.568949pt;}
.y45_c01112{bottom:851.871845pt;}
.y44_c01112{bottom:852.467675pt;}
.y43_c01112{bottom:853.251941pt;}
.y42_c01112{bottom:853.648219pt;}
.y41_c01112{bottom:854.432949pt;}
.y40_c01112{bottom:854.730165pt;}
.y3f_c01112{bottom:855.207205pt;}
.y3e_c01112{bottom:855.612688pt;}
.y3d_c01112{bottom:855.809829pt;}
.y3c_c01112{bottom:856.789189pt;}
.y3b_c01112{bottom:883.477856pt;}
.y3a_c01112{bottom:883.647317pt;}
.y39_c01112{bottom:883.836629pt;}
.y38_c01112{bottom:884.360901pt;}
.y37_c01112{bottom:884.846176pt;}
.y36_c01112{bottom:885.076373pt;}
.y35_c01112{bottom:885.672709pt;}
.y34_c01112{bottom:885.905984pt;}
.y33_c01112{bottom:886.257989pt;}
.y32_c01112{bottom:886.436251pt;}
.y31_c01112{bottom:886.787163pt;}
.y30_c01112{bottom:887.030992pt;}
.y2f_c01112{bottom:912.913797pt;}
.y2e_c01112{bottom:913.460688pt;}
.y2d_c01112{bottom:913.893168pt;}
.y2c_c01112{bottom:914.756293pt;}
.y2b_c01112{bottom:914.974933pt;}
.y2a_c01112{bottom:915.402891pt;}
.y29_c01112{bottom:916.501339pt;}
.y28_c01112{bottom:916.826293pt;}
.y27_c01112{bottom:917.476123pt;}
.y26_c01112{bottom:917.795157pt;}
.y25_c01112{bottom:918.441787pt;}
.y24_c01112{bottom:919.194955pt;}
.y23_c01112{bottom:945.292517pt;}
.y22_c01112{bottom:945.646027pt;}
.y21_c01112{bottom:945.913925pt;}
.y20_c01112{bottom:946.170960pt;}
.y1f_c01112{bottom:946.361168pt;}
.y1e_c01112{bottom:947.244053pt;}
.y1d_c01112{bottom:948.032539pt;}
.y1c_c01112{bottom:948.223088pt;}
.y1b_c01112{bottom:949.273755pt;}
.y1a_c01112{bottom:949.729467pt;}
.y19_c01112{bottom:950.156944pt;}
.y18_c01112{bottom:976.480011pt;}
.y17_c01112{bottom:976.983525pt;}
.y16_c01112{bottom:977.279083pt;}
.y15_c01112{bottom:977.764021pt;}
.y14_c01112{bottom:977.962293pt;}
.y13_c01112{bottom:978.665184pt;}
.y12_c01112{bottom:978.852075pt;}
.y11_c01112{bottom:979.348699pt;}
.y10_c01112{bottom:979.989643pt;}
.yf_c01112{bottom:980.417669pt;}
.ye_c01112{bottom:981.018357pt;}
.yd_c01112{bottom:981.597877pt;}
.yc_c01112{bottom:1007.136725pt;}
.yb_c01112{bottom:1007.493157pt;}
.ya_c01112{bottom:1007.853173pt;}
.y9_c01112{bottom:1008.801461pt;}
.y8_c01112{bottom:1009.742677pt;}
.y7_c01112{bottom:1010.419733pt;}
.y6_c01112{bottom:1011.173621pt;}
.y5_c01112{bottom:1011.888437pt;}
.y4_c01112{bottom:1012.354933pt;}
.y3_c01112{bottom:1012.582501pt;}
.y2_c01112{bottom:1012.801333pt;}
.y1_c01112{bottom:1067.405333pt;}
.h14_c01112{height:37.333333pt;}
.h2_c01112{height:64.000000pt;}
.hf_c01112{height:64.003200pt;}
.h4_c01112{height:64.004608pt;}
.hc_c01112{height:64.006272pt;}
.h8_c01112{height:64.008191pt;}
.h5_c01112{height:69.338325pt;}
.hd_c01112{height:69.340128pt;}
.h11_c01112{height:74.632686pt;}
.h10_c01112{height:74.670400pt;}
.h13_c01112{height:74.671184pt;}
.h3_c01112{height:74.672042pt;}
.ha_c01112{height:74.673984pt;}
.he_c01112{height:80.004000pt;}
.h9_c01112{height:85.344255pt;}
.hb_c01112{height:90.675552pt;}
.h7_c01112{height:90.678271pt;}
.h6_c01112{height:96.000000pt;}
.h12_c01112{height:101.339464pt;}
.h0_c01112{height:1107.840000pt;}
.h1_c01112{height:1108.000000pt;}
.w0_c01112{width:824.400000pt;}
.w1_c01112{width:824.666667pt;}
.x0_c01112{left:0.000000pt;}
.x41_c01112{left:103.488528pt;}
.xc4_c01112{left:111.589816pt;}
.x78_c01112{left:112.628805pt;}
.x92_c01112{left:114.312067pt;}
.x4b_c01112{left:115.440000pt;}
.x27_c01112{left:117.533701pt;}
.x30_c01112{left:118.432315pt;}
.xf_c01112{left:119.872677pt;}
.xaa_c01112{left:131.323493pt;}
.x4c_c01112{left:133.440000pt;}
.x5c_c01112{left:135.440885pt;}
.xbe_c01112{left:142.089273pt;}
.x56_c01112{left:146.292299pt;}
.x42_c01112{left:147.931195pt;}
.x99_c01112{left:153.950667pt;}
.x5d_c01112{left:155.838187pt;}
.x28_c01112{left:158.077947pt;}
.xc5_c01112{left:160.323640pt;}
.xb9_c01112{left:161.272213pt;}
.xa2_c01112{left:162.583787pt;}
.x93_c01112{left:163.766733pt;}
.x18_c01112{left:167.642523pt;}
.x9a_c01112{left:172.194667pt;}
.x70_c01112{left:174.362493pt;}
.x67_c01112{left:175.512000pt;}
.x10_c01112{left:177.834069pt;}
.x1f_c01112{left:187.576661pt;}
.xa3_c01112{left:191.134173pt;}
.x5e_c01112{left:194.512661pt;}
.x57_c01112{left:204.101845pt;}
.x39_c01112{left:206.325339pt;}
.x94_c01112{left:211.272067pt;}
.x68_c01112{left:213.422667pt;}
.x4f_c01112{left:214.852000pt;}
.x29_c01112{left:216.658171pt;}
.x4_c01112{left:218.973333pt;}
.xb0_c01112{left:221.441893pt;}
.x81_c01112{left:223.388243pt;}
.x4d_c01112{left:226.080000pt;}
.xc6_c01112{left:229.158369pt;}
.x79_c01112{left:232.610139pt;}
.x5f_c01112{left:233.635157pt;}
.x31_c01112{left:236.032464pt;}
.x5_c01112{left:237.209333pt;}
.xab_c01112{left:239.741240pt;}
.xa4_c01112{left:241.081680pt;}
.x4e_c01112{left:243.840000pt;}
.x58_c01112{left:245.375147pt;}
.x20_c01112{left:246.352032pt;}
.x95_c01112{left:251.814733pt;}
.x69_c01112{left:254.141333pt;}
.x6_c01112{left:256.173333pt;}
.x9c_c01112{left:260.918333pt;}
.x71_c01112{left:262.400957pt;}
.x43_c01112{left:264.816528pt;}
.xba_c01112{left:269.761947pt;}
.x9b_c01112{left:271.072000pt;}
.x86_c01112{left:272.395328pt;}
.x60_c01112{left:273.445696pt;}
.x21_c01112{left:275.383051pt;}
.x32_c01112{left:276.601440pt;}
.xbf_c01112{left:278.478081pt;}
.x11_c01112{left:280.673867pt;}
.x50_c01112{left:283.486667pt;}
.x3a_c01112{left:284.812320pt;}
.xb1_c01112{left:290.564947pt;}
.x59_c01112{left:292.630357pt;}
.x44_c01112{left:293.888528pt;}
.x7_c01112{left:295.048000pt;}
.xbb_c01112{left:299.034560pt;}
.x8e_c01112{left:300.070861pt;}
.x6a_c01112{left:301.750667pt;}
.x61_c01112{left:303.410283pt;}
.x2a_c01112{left:304.964523pt;}
.xc7_c01112{left:307.395661pt;}
.x87_c01112{left:310.390264pt;}
.x3b_c01112{left:314.333115pt;}
.xc2_c01112{left:317.384000pt;}
.x7a_c01112{left:320.018139pt;}
.x51_c01112{left:322.326667pt;}
.x33_c01112{left:324.355925pt;}
.x82_c01112{left:330.756083pt;}
.x45_c01112{left:333.693861pt;}
.x19_c01112{left:334.957872pt;}
.x1_c01112{left:336.240000pt;}
.xa5_c01112{left:338.739373pt;}
.x72_c01112{left:341.611179pt;}
.x2b_c01112{left:343.851323pt;}
.x12_c01112{left:344.754069pt;}
.xb2_c01112{left:347.606667pt;}
.x96_c01112{left:349.518733pt;}
.x8_c01112{left:354.616000pt;}
.x2_c01112{left:355.680000pt;}
.x9d_c01112{left:358.617093pt;}
.x7b_c01112{left:360.783472pt;}
.x5a_c01112{left:361.810325pt;}
.x22_c01112{left:363.949440pt;}
.xbc_c01112{left:367.203120pt;}
.x3c_c01112{left:372.900005pt;}
.xb3_c01112{left:377.211413pt;}
.x83_c01112{left:380.459392pt;}
.x8f_c01112{left:388.901445pt;}
.x5b_c01112{left:392.050560pt;}
.x13_c01112{left:394.473936pt;}
.x3_c01112{left:396.720000pt;}
.x9e_c01112{left:397.971520pt;}
.xa6_c01112{left:398.936107pt;}
.x7c_c01112{left:399.906139pt;}
.x62_c01112{left:401.152533pt;}
.x14_c01112{left:413.159717pt;}
.xc8_c01112{left:415.623000pt;}
.x9_c01112{left:417.440000pt;}
.xc3_c01112{left:425.641333pt;}
.x9f_c01112{left:427.301013pt;}
.x73_c01112{left:429.469643pt;}
.x46_c01112{left:431.140528pt;}
.x34_c01112{left:432.631867pt;}
.x97_c01112{left:437.126733pt;}
.x1a_c01112{left:443.659109pt;}
.xc9_c01112{left:445.114453pt;}
.x6b_c01112{left:449.376000pt;}
.x3d_c01112{left:453.551147pt;}
.xb4_c01112{left:456.145400pt;}
.x88_c01112{left:458.486120pt;}
.x63_c01112{left:459.960309pt;}
.x23_c01112{left:463.821307pt;}
.xc0_c01112{left:465.585453pt;}
.x90_c01112{left:468.133213pt;}
.x47_c01112{left:470.977861pt;}
.x35_c01112{left:472.211477pt;}
.xa_c01112{left:473.861333pt;}
.x7d_c01112{left:479.868805pt;}
.x2c_c01112{left:481.627909pt;}
.x15_c01112{left:483.513413pt;}
.xac_c01112{left:486.174667pt;}
.x84_c01112{left:487.360565pt;}
.x74_c01112{left:489.467323pt;}
.x89_c01112{left:498.034352pt;}
.x52_c01112{left:500.724000pt;}
.x16_c01112{left:503.369893pt;}
.x98_c01112{left:507.936067pt;}
.xb5_c01112{left:515.222907pt;}
.xa7_c01112{left:516.768267pt;}
.x64_c01112{left:518.525397pt;}
.x24_c01112{left:522.594011pt;}
.x8a_c01112{left:526.841549pt;}
.x48_c01112{left:530.748528pt;}
.x3e_c01112{left:532.283477pt;}
.x1b_c01112{left:541.791979pt;}
.xad_c01112{left:545.847827pt;}
.x65_c01112{left:549.490048pt;}
.x36_c01112{left:550.680032pt;}
.xb_c01112{left:552.296000pt;}
.xa0_c01112{left:555.198573pt;}
.x91_c01112{left:556.441112pt;}
.x49_c01112{left:560.783195pt;}
.x1c_c01112{left:562.976747pt;}
.x6c_c01112{left:566.734667pt;}
.x75_c01112{left:576.840435pt;}
.x85_c01112{left:577.947296pt;}
.x17_c01112{left:581.413099pt;}
.xa8_c01112{left:584.248920pt;}
.x1d_c01112{left:591.508437pt;}
.x8b_c01112{left:596.350275pt;}
.x25_c01112{left:601.077621pt;}
.xae_c01112{left:604.690373pt;}
.x7e_c01112{left:606.610139pt;}
.x37_c01112{left:610.222789pt;}
.xa1_c01112{left:614.773520pt;}
.x76_c01112{left:616.724221pt;}
.x1e_c01112{left:621.278843pt;}
.xc1_c01112{left:623.796417pt;}
.x6d_c01112{left:627.469333pt;}
.x3f_c01112{left:629.749168pt;}
.xc_c01112{left:631.320000pt;}
.xb6_c01112{left:633.812520pt;}
.x77_c01112{left:637.348800pt;}
.x53_c01112{left:638.542667pt;}
.x26_c01112{left:640.451435pt;}
.x7f_c01112{left:646.038139pt;}
.x4a_c01112{left:648.361861pt;}
.x2d_c01112{left:649.880021pt;}
.x66_c01112{left:650.776533pt;}
.x54_c01112{left:658.414667pt;}
.xd_c01112{left:661.321333pt;}
.xb7_c01112{left:664.310493pt;}
.x8c_c01112{left:665.609667pt;}
.xbd_c01112{left:673.325680pt;}
.x40_c01112{left:679.656768pt;}
.x2e_c01112{left:681.324944pt;}
.x80_c01112{left:685.568805pt;}
.x6e_c01112{left:686.574667pt;}
.x55_c01112{left:688.422667pt;}
.x38_c01112{left:689.915360pt;}
.xe_c01112{left:691.024000pt;}
.xa9_c01112{left:694.066493pt;}
.x8d_c01112{left:695.147512pt;}
.xaf_c01112{left:703.759440pt;}
.x6f_c01112{left:706.262667pt;}
.x2f_c01112{left:709.670992pt;}
.xb8_c01112{left:713.521080pt;}
.xca_c01112{left:779.040000pt;}
}





/* 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_c01113 {
    display:none;
  }
  .loading-indicator_c01113.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01113 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_c01113 { 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_c01113" -> "#page-container .classname_c01113")
 */
.pf_c01113 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01113 { /* 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_c01113.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01113 { /* 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_c01113 { /* 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_c01113 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01113 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01113 {overflow:visible;}
  }
}
.c_c01113 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01113 { /* 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_c01113:after { /* webkit #35443 */
  content: '';
}
.t_c01113:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01113 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 */
}
.__c01113 { /* 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_c01113 { /* info for Javascript */
  display:none;
}
.l_c01113 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01113 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01113 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01113: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_c01113 {
    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_c01113.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01113.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_c01113 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01113{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01113;src:url('chunks/assets/font_c3e4ad8bbd860aacb2f1cb75.woff2')format("woff");}.ff1_c01113{font-family:ff1_c01113;line-height:1.000000;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;}
.m0_c01113{transform:matrix(0.129035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129035,0.000000,0.000000,0.250000,0,0);}
.m9_c01113{transform:matrix(0.166149,0.002326,-0.003500,0.249976,0,0);-ms-transform:matrix(0.166149,0.002326,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.166149,0.002326,-0.003500,0.249976,0,0);}
.me_c01113{transform:matrix(0.180877,0.002532,-0.003500,0.249976,0,0);-ms-transform:matrix(0.180877,0.002532,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.180877,0.002532,-0.003500,0.249976,0,0);}
.md_c01113{transform:matrix(0.183722,0.002572,-0.003500,0.249976,0,0);-ms-transform:matrix(0.183722,0.002572,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.183722,0.002572,-0.003500,0.249976,0,0);}
.m8_c01113{transform:matrix(0.188032,0.002632,-0.003500,0.249976,0,0);-ms-transform:matrix(0.188032,0.002632,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.188032,0.002632,-0.003500,0.249976,0,0);}
.mc_c01113{transform:matrix(0.196026,0.002744,-0.003500,0.249976,0,0);-ms-transform:matrix(0.196026,0.002744,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.196026,0.002744,-0.003500,0.249976,0,0);}
.m11_c01113{transform:matrix(0.208275,0.002916,-0.003500,0.249976,0,0);-ms-transform:matrix(0.208275,0.002916,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.208275,0.002916,-0.003500,0.249976,0,0);}
.m4_c01113{transform:matrix(0.215477,0.004525,-0.005249,0.249945,0,0);-ms-transform:matrix(0.215477,0.004525,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.215477,0.004525,-0.005249,0.249945,0,0);}
.mf_c01113{transform:matrix(0.227128,0.003180,-0.003500,0.249976,0,0);-ms-transform:matrix(0.227128,0.003180,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.227128,0.003180,-0.003500,0.249976,0,0);}
.m10_c01113{transform:matrix(0.227933,0.003191,-0.003500,0.249976,0,0);-ms-transform:matrix(0.227933,0.003191,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.227933,0.003191,-0.003500,0.249976,0,0);}
.m12_c01113{transform:matrix(0.228278,0.003196,-0.003500,0.249976,0,0);-ms-transform:matrix(0.228278,0.003196,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.228278,0.003196,-0.003500,0.249976,0,0);}
.ma_c01113{transform:matrix(0.254540,0.003564,-0.003500,0.249976,0,0);-ms-transform:matrix(0.254540,0.003564,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.254540,0.003564,-0.003500,0.249976,0,0);}
.m7_c01113{transform:matrix(0.285422,0.005994,-0.005249,0.249945,0,0);-ms-transform:matrix(0.285422,0.005994,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.285422,0.005994,-0.005249,0.249945,0,0);}
.mb_c01113{transform:matrix(0.302345,0.004233,-0.003500,0.249976,0,0);-ms-transform:matrix(0.302345,0.004233,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.302345,0.004233,-0.003500,0.249976,0,0);}
.m6_c01113{transform:matrix(0.302523,0.006353,-0.005249,0.249945,0,0);-ms-transform:matrix(0.302523,0.006353,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.302523,0.006353,-0.005249,0.249945,0,0);}
.m5_c01113{transform:matrix(0.332587,0.006984,-0.005249,0.249945,0,0);-ms-transform:matrix(0.332587,0.006984,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.332587,0.006984,-0.005249,0.249945,0,0);}
.m3_c01113{transform:matrix(0.334066,0.007015,-0.005249,0.249945,0,0);-ms-transform:matrix(0.334066,0.007015,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.334066,0.007015,-0.005249,0.249945,0,0);}
.m1_c01113{transform:matrix(0.617984,0.012978,-0.005249,0.249945,0,0);-ms-transform:matrix(0.617984,0.012978,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.617984,0.012978,-0.005249,0.249945,0,0);}
.m2_c01113{transform:matrix(0.747675,0.015701,-0.005249,0.249945,0,0);-ms-transform:matrix(0.747675,0.015701,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.747675,0.015701,-0.005249,0.249945,0,0);}
.v0_c01113{vertical-align:0.000000px;}
.ls0_c01113{letter-spacing:0.000000px;}
.sc__c01113{text-shadow:none;}
.sc0_c01113{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__c01113{-webkit-text-stroke:0px transparent;}
.sc0_c01113{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01113{word-spacing:0.000000px;}
.fc0_c01113{color:transparent;}
.fs0_c01113{font-size:18.000000px;}
.fs1_c01113{font-size:84.018520px;}
.fs2_c01113{font-size:120.011759px;}
.y0_c01113{bottom:0.000000px;}
.y13_c01113{bottom:716.513691px;}
.y12_c01113{bottom:717.100746px;}
.y11_c01113{bottom:717.743493px;}
.y10_c01113{bottom:718.820625px;}
.yf_c01113{bottom:720.359841px;}
.ye_c01113{bottom:720.785511px;}
.yd_c01113{bottom:721.251102px;}
.yc_c01113{bottom:722.200848px;}
.yb_c01113{bottom:722.692143px;}
.ya_c01113{bottom:723.202401px;}
.y9_c01113{bottom:723.879000px;}
.y8_c01113{bottom:751.989521px;}
.y7_c01113{bottom:752.599298px;}
.y6_c01113{bottom:753.339768px;}
.y5_c01113{bottom:754.188661px;}
.y4_c01113{bottom:755.279727px;}
.y3_c01113{bottom:756.956188px;}
.y2_c01113{bottom:759.259500px;}
.y1_c01113{bottom:781.920000px;}
.h2_c01113{height:18.000000px;}
.h3_c01113{height:84.018520px;}
.h4_c01113{height:120.011759px;}
.h0_c01113{height:1246.320000px;}
.h1_c01113{height:1246.500000px;}
.w0_c01113{width:927.450000px;}
.w1_c01113{width:927.750000px;}
.x0_c01113{left:0.000000px;}
.x9_c01113{left:213.249000px;}
.xa_c01113{left:261.577500px;}
.xb_c01113{left:298.024500px;}
.xc_c01113{left:333.117000px;}
.x2_c01113{left:401.709000px;}
.xd_c01113{left:434.212500px;}
.xe_c01113{left:464.617500px;}
.x3_c01113{left:511.390500px;}
.xf_c01113{left:574.561500px;}
.x4_c01113{left:591.222000px;}
.x5_c01113{left:643.177500px;}
.x10_c01113{left:651.499500px;}
.x6_c01113{left:683.601000px;}
.x11_c01113{left:697.410000px;}
.x1_c01113{left:716.850000px;}
.x7_c01113{left:718.861500px;}
.x12_c01113{left:739.342500px;}
.x8_c01113{left:747.898500px;}
@media print{
.v0_c01113{vertical-align:0.000000pt;}
.ls0_c01113{letter-spacing:0.000000pt;}
.ws0_c01113{word-spacing:0.000000pt;}
.fs0_c01113{font-size:16.000000pt;}
.fs1_c01113{font-size:74.683129pt;}
.fs2_c01113{font-size:106.677119pt;}
.y0_c01113{bottom:0.000000pt;}
.y13_c01113{bottom:636.901059pt;}
.y12_c01113{bottom:637.422885pt;}
.y11_c01113{bottom:637.994216pt;}
.y10_c01113{bottom:638.951667pt;}
.yf_c01113{bottom:640.319859pt;}
.ye_c01113{bottom:640.698232pt;}
.yd_c01113{bottom:641.112091pt;}
.yc_c01113{bottom:641.956309pt;}
.yb_c01113{bottom:642.393016pt;}
.ya_c01113{bottom:642.846579pt;}
.y9_c01113{bottom:643.448000pt;}
.y8_c01113{bottom:668.435129pt;}
.y7_c01113{bottom:668.977153pt;}
.y6_c01113{bottom:669.635349pt;}
.y5_c01113{bottom:670.389921pt;}
.y4_c01113{bottom:671.359757pt;}
.y3_c01113{bottom:672.849945pt;}
.y2_c01113{bottom:674.897333pt;}
.y1_c01113{bottom:695.040000pt;}
.h2_c01113{height:16.000000pt;}
.h3_c01113{height:74.683129pt;}
.h4_c01113{height:106.677119pt;}
.h0_c01113{height:1107.840000pt;}
.h1_c01113{height:1108.000000pt;}
.w0_c01113{width:824.400000pt;}
.w1_c01113{width:824.666667pt;}
.x0_c01113{left:0.000000pt;}
.x9_c01113{left:189.554667pt;}
.xa_c01113{left:232.513333pt;}
.xb_c01113{left:264.910667pt;}
.xc_c01113{left:296.104000pt;}
.x2_c01113{left:357.074667pt;}
.xd_c01113{left:385.966667pt;}
.xe_c01113{left:412.993333pt;}
.x3_c01113{left:454.569333pt;}
.xf_c01113{left:510.721333pt;}
.x4_c01113{left:525.530667pt;}
.x5_c01113{left:571.713333pt;}
.x10_c01113{left:579.110667pt;}
.x6_c01113{left:607.645333pt;}
.x11_c01113{left:619.920000pt;}
.x1_c01113{left:637.200000pt;}
.x7_c01113{left:638.988000pt;}
.x12_c01113{left:657.193333pt;}
.x8_c01113{left:664.798667pt;}
}





/* 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_c01114 {
    display:none;
  }
  .loading-indicator_c01114.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01114 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_c01114 { 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_c01114" -> "#page-container .classname_c01114")
 */
.pf_c01114 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01114 { /* 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_c01114.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01114 { /* 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_c01114 { /* 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_c01114 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01114 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01114 {overflow:visible;}
  }
}
.c_c01114 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01114 { /* 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_c01114:after { /* webkit #35443 */
  content: '';
}
.t_c01114:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01114 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 */
}
.__c01114 { /* 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_c01114 { /* info for Javascript */
  display:none;
}
.l_c01114 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01114 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01114 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01114: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_c01114 {
    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_c01114.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01114.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_c01114 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01114{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01114;src:url('chunks/assets/font_c605e72f209fc835e906f064.woff2')format("woff");}.ff1_c01114{font-family:ff1_c01114;line-height:1.000000;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;}
.m88_c01114{transform:matrix(0.010605,-0.000095,0.002250,0.249990,0,0);-ms-transform:matrix(0.010605,-0.000095,0.002250,0.249990,0,0);-webkit-transform:matrix(0.010605,-0.000095,0.002250,0.249990,0,0);}
.m0_c01114{transform:matrix(0.013520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.013520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.013520,0.000000,0.000000,0.250000,0,0);}
.m139_c01114{transform:matrix(0.114794,0.000459,-0.001000,0.249998,0,0);-ms-transform:matrix(0.114794,0.000459,-0.001000,0.249998,0,0);-webkit-transform:matrix(0.114794,0.000459,-0.001000,0.249998,0,0);}
.m28_c01114{transform:matrix(0.118185,-0.001064,0.002250,0.249990,0,0);-ms-transform:matrix(0.118185,-0.001064,0.002250,0.249990,0,0);-webkit-transform:matrix(0.118185,-0.001064,0.002250,0.249990,0,0);}
.m12e_c01114{transform:matrix(0.138287,0.001521,-0.002750,0.249985,0,0);-ms-transform:matrix(0.138287,0.001521,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.138287,0.001521,-0.002750,0.249985,0,0);}
.m118_c01114{transform:matrix(0.144720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144720,0.000000,0.000000,0.250000,0,0);}
.m137_c01114{transform:matrix(0.155974,0.000624,-0.001000,0.249998,0,0);-ms-transform:matrix(0.155974,0.000624,-0.001000,0.249998,0,0);-webkit-transform:matrix(0.155974,0.000624,-0.001000,0.249998,0,0);}
.m131_c01114{transform:matrix(0.165954,0.000664,-0.001000,0.249998,0,0);-ms-transform:matrix(0.165954,0.000664,-0.001000,0.249998,0,0);-webkit-transform:matrix(0.165954,0.000664,-0.001000,0.249998,0,0);}
.m126_c01114{transform:matrix(0.166470,0.001831,-0.002750,0.249985,0,0);-ms-transform:matrix(0.166470,0.001831,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.166470,0.001831,-0.002750,0.249985,0,0);}
.m6a_c01114{transform:matrix(0.169783,-0.001528,0.002250,0.249990,0,0);-ms-transform:matrix(0.169783,-0.001528,0.002250,0.249990,0,0);-webkit-transform:matrix(0.169783,-0.001528,0.002250,0.249990,0,0);}
.md7_c01114{transform:matrix(0.172795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172795,0.000000,0.000000,0.250000,0,0);}
.m12f_c01114{transform:matrix(0.173014,0.000692,-0.001000,0.249998,0,0);-ms-transform:matrix(0.173014,0.000692,-0.001000,0.249998,0,0);-webkit-transform:matrix(0.173014,0.000692,-0.001000,0.249998,0,0);}
.mf3_c01114{transform:matrix(0.175730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175730,0.000000,0.000000,0.250000,0,0);}
.m2f_c01114{transform:matrix(0.177333,-0.001596,0.002250,0.249990,0,0);-ms-transform:matrix(0.177333,-0.001596,0.002250,0.249990,0,0);-webkit-transform:matrix(0.177333,-0.001596,0.002250,0.249990,0,0);}
.m133_c01114{transform:matrix(0.180089,0.000720,-0.001000,0.249998,0,0);-ms-transform:matrix(0.180089,0.000720,-0.001000,0.249998,0,0);-webkit-transform:matrix(0.180089,0.000720,-0.001000,0.249998,0,0);}
.m136_c01114{transform:matrix(0.180369,0.000721,-0.001000,0.249998,0,0);-ms-transform:matrix(0.180369,0.000721,-0.001000,0.249998,0,0);-webkit-transform:matrix(0.180369,0.000721,-0.001000,0.249998,0,0);}
.m122_c01114{transform:matrix(0.181384,0.001995,-0.002750,0.249985,0,0);-ms-transform:matrix(0.181384,0.001995,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.181384,0.001995,-0.002750,0.249985,0,0);}
.m127_c01114{transform:matrix(0.183349,0.002017,-0.002750,0.249985,0,0);-ms-transform:matrix(0.183349,0.002017,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.183349,0.002017,-0.002750,0.249985,0,0);}
.m142_c01114{transform:matrix(0.183620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183620,0.000000,0.000000,0.250000,0,0);}
.m140_c01114{transform:matrix(0.184715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184715,0.000000,0.000000,0.250000,0,0);}
.m2b_c01114{transform:matrix(0.185098,-0.001666,0.002250,0.249990,0,0);-ms-transform:matrix(0.185098,-0.001666,0.002250,0.249990,0,0);-webkit-transform:matrix(0.185098,-0.001666,0.002250,0.249990,0,0);}
.m129_c01114{transform:matrix(0.186034,0.002046,-0.002750,0.249985,0,0);-ms-transform:matrix(0.186034,0.002046,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.186034,0.002046,-0.002750,0.249985,0,0);}
.me_c01114{transform:matrix(0.188100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188100,0.000000,0.000000,0.250000,0,0);}
.mfc_c01114{transform:matrix(0.193155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193155,0.000000,0.000000,0.250000,0,0);}
.m135_c01114{transform:matrix(0.194018,0.000776,-0.001000,0.249998,0,0);-ms-transform:matrix(0.194018,0.000776,-0.001000,0.249998,0,0);-webkit-transform:matrix(0.194018,0.000776,-0.001000,0.249998,0,0);}
.m101_c01114{transform:matrix(0.194575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194575,0.000000,0.000000,0.250000,0,0);}
.m11b_c01114{transform:matrix(0.194940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194940,0.000000,0.000000,0.250000,0,0);}
.m21_c01114{transform:matrix(0.195571,-0.001173,0.001500,0.249996,0,0);-ms-transform:matrix(0.195571,-0.001173,0.001500,0.249996,0,0);-webkit-transform:matrix(0.195571,-0.001173,0.001500,0.249996,0,0);}
.m123_c01114{transform:matrix(0.196163,0.002158,-0.002750,0.249985,0,0);-ms-transform:matrix(0.196163,0.002158,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.196163,0.002158,-0.002750,0.249985,0,0);}
.m1d_c01114{transform:matrix(0.197301,-0.001184,0.001500,0.249996,0,0);-ms-transform:matrix(0.197301,-0.001184,0.001500,0.249996,0,0);-webkit-transform:matrix(0.197301,-0.001184,0.001500,0.249996,0,0);}
.m76_c01114{transform:matrix(0.197377,-0.001776,0.002250,0.249990,0,0);-ms-transform:matrix(0.197377,-0.001776,0.002250,0.249990,0,0);-webkit-transform:matrix(0.197377,-0.001776,0.002250,0.249990,0,0);}
.mf6_c01114{transform:matrix(0.198535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198535,0.000000,0.000000,0.250000,0,0);}
.ma3_c01114{transform:matrix(0.199035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199035,0.000000,0.000000,0.250000,0,0);}
.m25_c01114{transform:matrix(0.199096,-0.001195,0.001500,0.249996,0,0);-ms-transform:matrix(0.199096,-0.001195,0.001500,0.249996,0,0);-webkit-transform:matrix(0.199096,-0.001195,0.001500,0.249996,0,0);}
.mfa_c01114{transform:matrix(0.199135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199135,0.000000,0.000000,0.250000,0,0);}
.m11e_c01114{transform:matrix(0.199700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199700,0.000000,0.000000,0.250000,0,0);}
.m12d_c01114{transform:matrix(0.199708,0.002197,-0.002750,0.249985,0,0);-ms-transform:matrix(0.199708,0.002197,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.199708,0.002197,-0.002750,0.249985,0,0);}
.m12a_c01114{transform:matrix(0.200238,0.002203,-0.002750,0.249985,0,0);-ms-transform:matrix(0.200238,0.002203,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.200238,0.002203,-0.002750,0.249985,0,0);}
.m2c_c01114{transform:matrix(0.200602,-0.001805,0.002250,0.249990,0,0);-ms-transform:matrix(0.200602,-0.001805,0.002250,0.249990,0,0);-webkit-transform:matrix(0.200602,-0.001805,0.002250,0.249990,0,0);}
.mfe_c01114{transform:matrix(0.201295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201295,0.000000,0.000000,0.250000,0,0);}
.m59_c01114{transform:matrix(0.201317,-0.001812,0.002250,0.249990,0,0);-ms-transform:matrix(0.201317,-0.001812,0.002250,0.249990,0,0);-webkit-transform:matrix(0.201317,-0.001812,0.002250,0.249990,0,0);}
.m108_c01114{transform:matrix(0.201495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201495,0.000000,0.000000,0.250000,0,0);}
.m27_c01114{transform:matrix(0.201871,-0.001211,0.001500,0.249996,0,0);-ms-transform:matrix(0.201871,-0.001211,0.001500,0.249996,0,0);-webkit-transform:matrix(0.201871,-0.001211,0.001500,0.249996,0,0);}
.m1f_c01114{transform:matrix(0.202071,-0.001212,0.001500,0.249996,0,0);-ms-transform:matrix(0.202071,-0.001212,0.001500,0.249996,0,0);-webkit-transform:matrix(0.202071,-0.001212,0.001500,0.249996,0,0);}
.m106_c01114{transform:matrix(0.202225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202225,0.000000,0.000000,0.250000,0,0);}
.m13_c01114{transform:matrix(0.202511,-0.001215,0.001500,0.249996,0,0);-ms-transform:matrix(0.202511,-0.001215,0.001500,0.249996,0,0);-webkit-transform:matrix(0.202511,-0.001215,0.001500,0.249996,0,0);}
.m31_c01114{transform:matrix(0.202657,-0.001824,0.002250,0.249990,0,0);-ms-transform:matrix(0.202657,-0.001824,0.002250,0.249990,0,0);-webkit-transform:matrix(0.202657,-0.001824,0.002250,0.249990,0,0);}
.m132_c01114{transform:matrix(0.202783,0.000811,-0.001000,0.249998,0,0);-ms-transform:matrix(0.202783,0.000811,-0.001000,0.249998,0,0);-webkit-transform:matrix(0.202783,0.000811,-0.001000,0.249998,0,0);}
.mdc_c01114{transform:matrix(0.202810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202810,0.000000,0.000000,0.250000,0,0);}
.mec_c01114{transform:matrix(0.203170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203170,0.000000,0.000000,0.250000,0,0);}
.m79_c01114{transform:matrix(0.203847,-0.001835,0.002250,0.249990,0,0);-ms-transform:matrix(0.203847,-0.001835,0.002250,0.249990,0,0);-webkit-transform:matrix(0.203847,-0.001835,0.002250,0.249990,0,0);}
.m128_c01114{transform:matrix(0.204158,0.002246,-0.002750,0.249985,0,0);-ms-transform:matrix(0.204158,0.002246,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.204158,0.002246,-0.002750,0.249985,0,0);}
.m130_c01114{transform:matrix(0.204163,0.000817,-0.001000,0.249998,0,0);-ms-transform:matrix(0.204163,0.000817,-0.001000,0.249998,0,0);-webkit-transform:matrix(0.204163,0.000817,-0.001000,0.249998,0,0);}
.m138_c01114{transform:matrix(0.205918,0.000824,-0.001000,0.249998,0,0);-ms-transform:matrix(0.205918,0.000824,-0.001000,0.249998,0,0);-webkit-transform:matrix(0.205918,0.000824,-0.001000,0.249998,0,0);}
.md3_c01114{transform:matrix(0.205965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205965,0.000000,0.000000,0.250000,0,0);}
.md2_c01114{transform:matrix(0.206260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206260,0.000000,0.000000,0.250000,0,0);}
.m29_c01114{transform:matrix(0.206357,-0.001857,0.002250,0.249990,0,0);-ms-transform:matrix(0.206357,-0.001857,0.002250,0.249990,0,0);-webkit-transform:matrix(0.206357,-0.001857,0.002250,0.249990,0,0);}
.mbd_c01114{transform:matrix(0.206910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206910,0.000000,0.000000,0.250000,0,0);}
.m103_c01114{transform:matrix(0.207240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207240,0.000000,0.000000,0.250000,0,0);}
.m134_c01114{transform:matrix(0.208158,0.000833,-0.001000,0.249998,0,0);-ms-transform:matrix(0.208158,0.000833,-0.001000,0.249998,0,0);-webkit-transform:matrix(0.208158,0.000833,-0.001000,0.249998,0,0);}
.md9_c01114{transform:matrix(0.208305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208305,0.000000,0.000000,0.250000,0,0);}
.md8_c01114{transform:matrix(0.208625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208625,0.000000,0.000000,0.250000,0,0);}
.m73_c01114{transform:matrix(0.208902,-0.001880,0.002250,0.249990,0,0);-ms-transform:matrix(0.208902,-0.001880,0.002250,0.249990,0,0);-webkit-transform:matrix(0.208902,-0.001880,0.002250,0.249990,0,0);}
.m1e_c01114{transform:matrix(0.209266,-0.001256,0.001500,0.249996,0,0);-ms-transform:matrix(0.209266,-0.001256,0.001500,0.249996,0,0);-webkit-transform:matrix(0.209266,-0.001256,0.001500,0.249996,0,0);}
.mcd_c01114{transform:matrix(0.209495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209495,0.000000,0.000000,0.250000,0,0);}
.m8c_c01114{transform:matrix(0.209926,-0.001889,0.002250,0.249990,0,0);-ms-transform:matrix(0.209926,-0.001889,0.002250,0.249990,0,0);-webkit-transform:matrix(0.209926,-0.001889,0.002250,0.249990,0,0);}
.m13d_c01114{transform:matrix(0.210620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210620,0.000000,0.000000,0.250000,0,0);}
.m8e_c01114{transform:matrix(0.211861,-0.001907,0.002250,0.249990,0,0);-ms-transform:matrix(0.211861,-0.001907,0.002250,0.249990,0,0);-webkit-transform:matrix(0.211861,-0.001907,0.002250,0.249990,0,0);}
.m74_c01114{transform:matrix(0.212191,-0.001910,0.002250,0.249990,0,0);-ms-transform:matrix(0.212191,-0.001910,0.002250,0.249990,0,0);-webkit-transform:matrix(0.212191,-0.001910,0.002250,0.249990,0,0);}
.mf7_c01114{transform:matrix(0.212300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212300,0.000000,0.000000,0.250000,0,0);}
.m124_c01114{transform:matrix(0.212862,0.002341,-0.002750,0.249985,0,0);-ms-transform:matrix(0.212862,0.002341,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.212862,0.002341,-0.002750,0.249985,0,0);}
.m8a_c01114{transform:matrix(0.213126,-0.001918,0.002250,0.249990,0,0);-ms-transform:matrix(0.213126,-0.001918,0.002250,0.249990,0,0);-webkit-transform:matrix(0.213126,-0.001918,0.002250,0.249990,0,0);}
.me6_c01114{transform:matrix(0.213135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213135,0.000000,0.000000,0.250000,0,0);}
.mdd_c01114{transform:matrix(0.213455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213455,0.000000,0.000000,0.250000,0,0);}
.m119_c01114{transform:matrix(0.214420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214420,0.000000,0.000000,0.250000,0,0);}
.m39_c01114{transform:matrix(0.214666,-0.001932,0.002250,0.249990,0,0);-ms-transform:matrix(0.214666,-0.001932,0.002250,0.249990,0,0);-webkit-transform:matrix(0.214666,-0.001932,0.002250,0.249990,0,0);}
.m78_c01114{transform:matrix(0.214866,-0.001934,0.002250,0.249990,0,0);-ms-transform:matrix(0.214866,-0.001934,0.002250,0.249990,0,0);-webkit-transform:matrix(0.214866,-0.001934,0.002250,0.249990,0,0);}
.md5_c01114{transform:matrix(0.215195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215195,0.000000,0.000000,0.250000,0,0);}
.m92_c01114{transform:matrix(0.215746,-0.001942,0.002250,0.249990,0,0);-ms-transform:matrix(0.215746,-0.001942,0.002250,0.249990,0,0);-webkit-transform:matrix(0.215746,-0.001942,0.002250,0.249990,0,0);}
.mef_c01114{transform:matrix(0.216005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216005,0.000000,0.000000,0.250000,0,0);}
.m10a_c01114{transform:matrix(0.216335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216335,0.000000,0.000000,0.250000,0,0);}
.m23_c01114{transform:matrix(0.216501,-0.001299,0.001500,0.249996,0,0);-ms-transform:matrix(0.216501,-0.001299,0.001500,0.249996,0,0);-webkit-transform:matrix(0.216501,-0.001299,0.001500,0.249996,0,0);}
.me4_c01114{transform:matrix(0.216995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216995,0.000000,0.000000,0.250000,0,0);}
.m107_c01114{transform:matrix(0.217105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217105,0.000000,0.000000,0.250000,0,0);}
.m10_c01114{transform:matrix(0.217511,-0.001305,0.001500,0.249996,0,0);-ms-transform:matrix(0.217511,-0.001305,0.001500,0.249996,0,0);-webkit-transform:matrix(0.217511,-0.001305,0.001500,0.249996,0,0);}
.m141_c01114{transform:matrix(0.217555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217555,0.000000,0.000000,0.250000,0,0);}
.m121_c01114{transform:matrix(0.218307,0.002401,-0.002750,0.249985,0,0);-ms-transform:matrix(0.218307,0.002401,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.218307,0.002401,-0.002750,0.249985,0,0);}
.m4b_c01114{transform:matrix(0.218671,-0.001968,0.002250,0.249990,0,0);-ms-transform:matrix(0.218671,-0.001968,0.002250,0.249990,0,0);-webkit-transform:matrix(0.218671,-0.001968,0.002250,0.249990,0,0);}
.m13e_c01114{transform:matrix(0.219495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219495,0.000000,0.000000,0.250000,0,0);}
.me9_c01114{transform:matrix(0.219535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219535,0.000000,0.000000,0.250000,0,0);}
.m148_c01114{transform:matrix(0.219895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219895,0.000000,0.000000,0.250000,0,0);}
.m11f_c01114{transform:matrix(0.219935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219935,0.000000,0.000000,0.250000,0,0);}
.meb_c01114{transform:matrix(0.220020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220020,0.000000,0.000000,0.250000,0,0);}
.m10f_c01114{transform:matrix(0.220190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220190,0.000000,0.000000,0.250000,0,0);}
.mff_c01114{transform:matrix(0.220370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220370,0.000000,0.000000,0.250000,0,0);}
.mf0_c01114{transform:matrix(0.220745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220745,0.000000,0.000000,0.250000,0,0);}
.m111_c01114{transform:matrix(0.221645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221645,0.000000,0.000000,0.250000,0,0);}
.mda_c01114{transform:matrix(0.222430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222430,0.000000,0.000000,0.250000,0,0);}
.md6_c01114{transform:matrix(0.222820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222820,0.000000,0.000000,0.250000,0,0);}
.m77_c01114{transform:matrix(0.222951,-0.002007,0.002250,0.249990,0,0);-ms-transform:matrix(0.222951,-0.002007,0.002250,0.249990,0,0);-webkit-transform:matrix(0.222951,-0.002007,0.002250,0.249990,0,0);}
.m13f_c01114{transform:matrix(0.223160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223160,0.000000,0.000000,0.250000,0,0);}
.m143_c01114{transform:matrix(0.223270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223270,0.000000,0.000000,0.250000,0,0);}
.mc3_c01114{transform:matrix(0.223510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223510,0.000000,0.000000,0.250000,0,0);}
.m19_c01114{transform:matrix(0.223601,-0.001342,0.001500,0.249996,0,0);-ms-transform:matrix(0.223601,-0.001342,0.001500,0.249996,0,0);-webkit-transform:matrix(0.223601,-0.001342,0.001500,0.249996,0,0);}
.m117_c01114{transform:matrix(0.223960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223960,0.000000,0.000000,0.250000,0,0);}
.mf5_c01114{transform:matrix(0.224260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224260,0.000000,0.000000,0.250000,0,0);}
.m96_c01114{transform:matrix(0.225095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225095,0.000000,0.000000,0.250000,0,0);}
.m11c_c01114{transform:matrix(0.225110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225110,0.000000,0.000000,0.250000,0,0);}
.me8_c01114{transform:matrix(0.225945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225945,0.000000,0.000000,0.250000,0,0);}
.m3f_c01114{transform:matrix(0.226736,-0.002041,0.002250,0.249990,0,0);-ms-transform:matrix(0.226736,-0.002041,0.002250,0.249990,0,0);-webkit-transform:matrix(0.226736,-0.002041,0.002250,0.249990,0,0);}
.mb2_c01114{transform:matrix(0.226965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226965,0.000000,0.000000,0.250000,0,0);}
.m45_c01114{transform:matrix(0.226996,-0.002043,0.002250,0.249990,0,0);-ms-transform:matrix(0.226996,-0.002043,0.002250,0.249990,0,0);-webkit-transform:matrix(0.226996,-0.002043,0.002250,0.249990,0,0);}
.m115_c01114{transform:matrix(0.227120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227120,0.000000,0.000000,0.250000,0,0);}
.m75_c01114{transform:matrix(0.227411,-0.002047,0.002250,0.249990,0,0);-ms-transform:matrix(0.227411,-0.002047,0.002250,0.249990,0,0);-webkit-transform:matrix(0.227411,-0.002047,0.002250,0.249990,0,0);}
.m5e_c01114{transform:matrix(0.227421,-0.002047,0.002250,0.249990,0,0);-ms-transform:matrix(0.227421,-0.002047,0.002250,0.249990,0,0);-webkit-transform:matrix(0.227421,-0.002047,0.002250,0.249990,0,0);}
.ma5_c01114{transform:matrix(0.227430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227430,0.000000,0.000000,0.250000,0,0);}
.m22_c01114{transform:matrix(0.227826,-0.001367,0.001500,0.249996,0,0);-ms-transform:matrix(0.227826,-0.001367,0.001500,0.249996,0,0);-webkit-transform:matrix(0.227826,-0.001367,0.001500,0.249996,0,0);}
.mc9_c01114{transform:matrix(0.228090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228090,0.000000,0.000000,0.250000,0,0);}
.mf2_c01114{transform:matrix(0.228635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228635,0.000000,0.000000,0.250000,0,0);}
.m66_c01114{transform:matrix(0.228956,-0.002061,0.002250,0.249990,0,0);-ms-transform:matrix(0.228956,-0.002061,0.002250,0.249990,0,0);-webkit-transform:matrix(0.228956,-0.002061,0.002250,0.249990,0,0);}
.m83_c01114{transform:matrix(0.229256,-0.002063,0.002250,0.249990,0,0);-ms-transform:matrix(0.229256,-0.002063,0.002250,0.249990,0,0);-webkit-transform:matrix(0.229256,-0.002063,0.002250,0.249990,0,0);}
.m9a_c01114{transform:matrix(0.229525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229525,0.000000,0.000000,0.250000,0,0);}
.m7f_c01114{transform:matrix(0.229821,-0.002068,0.002250,0.249990,0,0);-ms-transform:matrix(0.229821,-0.002068,0.002250,0.249990,0,0);-webkit-transform:matrix(0.229821,-0.002068,0.002250,0.249990,0,0);}
.m145_c01114{transform:matrix(0.230015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230015,0.000000,0.000000,0.250000,0,0);}
.m26_c01114{transform:matrix(0.230236,-0.001381,0.001500,0.249996,0,0);-ms-transform:matrix(0.230236,-0.001381,0.001500,0.249996,0,0);-webkit-transform:matrix(0.230236,-0.001381,0.001500,0.249996,0,0);}
.m42_c01114{transform:matrix(0.230276,-0.002072,0.002250,0.249990,0,0);-ms-transform:matrix(0.230276,-0.002072,0.002250,0.249990,0,0);-webkit-transform:matrix(0.230276,-0.002072,0.002250,0.249990,0,0);}
.m7e_c01114{transform:matrix(0.230331,-0.002073,0.002250,0.249990,0,0);-ms-transform:matrix(0.230331,-0.002073,0.002250,0.249990,0,0);-webkit-transform:matrix(0.230331,-0.002073,0.002250,0.249990,0,0);}
.m47_c01114{transform:matrix(0.230736,-0.002077,0.002250,0.249990,0,0);-ms-transform:matrix(0.230736,-0.002077,0.002250,0.249990,0,0);-webkit-transform:matrix(0.230736,-0.002077,0.002250,0.249990,0,0);}
.m70_c01114{transform:matrix(0.230881,-0.002078,0.002250,0.249990,0,0);-ms-transform:matrix(0.230881,-0.002078,0.002250,0.249990,0,0);-webkit-transform:matrix(0.230881,-0.002078,0.002250,0.249990,0,0);}
.md4_c01114{transform:matrix(0.231475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231475,0.000000,0.000000,0.250000,0,0);}
.m40_c01114{transform:matrix(0.231616,-0.002085,0.002250,0.249990,0,0);-ms-transform:matrix(0.231616,-0.002085,0.002250,0.249990,0,0);-webkit-transform:matrix(0.231616,-0.002085,0.002250,0.249990,0,0);}
.me3_c01114{transform:matrix(0.232060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232060,0.000000,0.000000,0.250000,0,0);}
.mc6_c01114{transform:matrix(0.232285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232285,0.000000,0.000000,0.250000,0,0);}
.md1_c01114{transform:matrix(0.232320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232320,0.000000,0.000000,0.250000,0,0);}
.m116_c01114{transform:matrix(0.232350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232350,0.000000,0.000000,0.250000,0,0);}
.m68_c01114{transform:matrix(0.232396,-0.002092,0.002250,0.249990,0,0);-ms-transform:matrix(0.232396,-0.002092,0.002250,0.249990,0,0);-webkit-transform:matrix(0.232396,-0.002092,0.002250,0.249990,0,0);}
.m4_c01114{transform:matrix(0.232985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232985,0.000000,0.000000,0.250000,0,0);}
.m146_c01114{transform:matrix(0.233095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233095,0.000000,0.000000,0.250000,0,0);}
.m2a_c01114{transform:matrix(0.233411,-0.002101,0.002250,0.249990,0,0);-ms-transform:matrix(0.233411,-0.002101,0.002250,0.249990,0,0);-webkit-transform:matrix(0.233411,-0.002101,0.002250,0.249990,0,0);}
.m144_c01114{transform:matrix(0.233455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233455,0.000000,0.000000,0.250000,0,0);}
.m105_c01114{transform:matrix(0.233710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233710,0.000000,0.000000,0.250000,0,0);}
.mdb_c01114{transform:matrix(0.233910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233910,0.000000,0.000000,0.250000,0,0);}
.mcb_c01114{transform:matrix(0.234165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234165,0.000000,0.000000,0.250000,0,0);}
.m5b_c01114{transform:matrix(0.234216,-0.002108,0.002250,0.249990,0,0);-ms-transform:matrix(0.234216,-0.002108,0.002250,0.249990,0,0);-webkit-transform:matrix(0.234216,-0.002108,0.002250,0.249990,0,0);}
.m2e_c01114{transform:matrix(0.234685,-0.002112,0.002250,0.249990,0,0);-ms-transform:matrix(0.234685,-0.002112,0.002250,0.249990,0,0);-webkit-transform:matrix(0.234685,-0.002112,0.002250,0.249990,0,0);}
.m7_c01114{transform:matrix(0.234935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234935,0.000000,0.000000,0.250000,0,0);}
.m24_c01114{transform:matrix(0.234971,-0.001410,0.001500,0.249996,0,0);-ms-transform:matrix(0.234971,-0.001410,0.001500,0.249996,0,0);-webkit-transform:matrix(0.234971,-0.001410,0.001500,0.249996,0,0);}
.m85_c01114{transform:matrix(0.235070,-0.002116,0.002250,0.249990,0,0);-ms-transform:matrix(0.235070,-0.002116,0.002250,0.249990,0,0);-webkit-transform:matrix(0.235070,-0.002116,0.002250,0.249990,0,0);}
.m147_c01114{transform:matrix(0.235470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235470,0.000000,0.000000,0.250000,0,0);}
.m64_c01114{transform:matrix(0.236435,-0.002128,0.002250,0.249990,0,0);-ms-transform:matrix(0.236435,-0.002128,0.002250,0.249990,0,0);-webkit-transform:matrix(0.236435,-0.002128,0.002250,0.249990,0,0);}
.m71_c01114{transform:matrix(0.236835,-0.002132,0.002250,0.249990,0,0);-ms-transform:matrix(0.236835,-0.002132,0.002250,0.249990,0,0);-webkit-transform:matrix(0.236835,-0.002132,0.002250,0.249990,0,0);}
.maf_c01114{transform:matrix(0.237200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237200,0.000000,0.000000,0.250000,0,0);}
.m11a_c01114{transform:matrix(0.237390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237390,0.000000,0.000000,0.250000,0,0);}
.m58_c01114{transform:matrix(0.237415,-0.002137,0.002250,0.249990,0,0);-ms-transform:matrix(0.237415,-0.002137,0.002250,0.249990,0,0);-webkit-transform:matrix(0.237415,-0.002137,0.002250,0.249990,0,0);}
.m114_c01114{transform:matrix(0.237460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237460,0.000000,0.000000,0.250000,0,0);}
.mfb_c01114{transform:matrix(0.237580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237580,0.000000,0.000000,0.250000,0,0);}
.me7_c01114{transform:matrix(0.238440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238440,0.000000,0.000000,0.250000,0,0);}
.maa_c01114{transform:matrix(0.238855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238855,0.000000,0.000000,0.250000,0,0);}
.m10d_c01114{transform:matrix(0.239385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239385,0.000000,0.000000,0.250000,0,0);}
.m20_c01114{transform:matrix(0.239486,-0.001437,0.001500,0.249996,0,0);-ms-transform:matrix(0.239486,-0.001437,0.001500,0.249996,0,0);-webkit-transform:matrix(0.239486,-0.001437,0.001500,0.249996,0,0);}
.m16_c01114{transform:matrix(0.239586,-0.001438,0.001500,0.249996,0,0);-ms-transform:matrix(0.239586,-0.001438,0.001500,0.249996,0,0);-webkit-transform:matrix(0.239586,-0.001438,0.001500,0.249996,0,0);}
.ma1_c01114{transform:matrix(0.239590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239590,0.000000,0.000000,0.250000,0,0);}
.mf9_c01114{transform:matrix(0.239600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239600,0.000000,0.000000,0.250000,0,0);}
.m56_c01114{transform:matrix(0.239900,-0.002159,0.002250,0.249990,0,0);-ms-transform:matrix(0.239900,-0.002159,0.002250,0.249990,0,0);-webkit-transform:matrix(0.239900,-0.002159,0.002250,0.249990,0,0);}
.me1_c01114{transform:matrix(0.240010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240010,0.000000,0.000000,0.250000,0,0);}
.m7b_c01114{transform:matrix(0.240055,-0.002160,0.002250,0.249990,0,0);-ms-transform:matrix(0.240055,-0.002160,0.002250,0.249990,0,0);-webkit-transform:matrix(0.240055,-0.002160,0.002250,0.249990,0,0);}
.m1_c01114{transform:matrix(0.240105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240105,0.000000,0.000000,0.250000,0,0);}
.m2d_c01114{transform:matrix(0.240795,-0.002167,0.002250,0.249990,0,0);-ms-transform:matrix(0.240795,-0.002167,0.002250,0.249990,0,0);-webkit-transform:matrix(0.240795,-0.002167,0.002250,0.249990,0,0);}
.mfd_c01114{transform:matrix(0.240880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240880,0.000000,0.000000,0.250000,0,0);}
.m113_c01114{transform:matrix(0.241125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241125,0.000000,0.000000,0.250000,0,0);}
.m5f_c01114{transform:matrix(0.241650,-0.002175,0.002250,0.249990,0,0);-ms-transform:matrix(0.241650,-0.002175,0.002250,0.249990,0,0);-webkit-transform:matrix(0.241650,-0.002175,0.002250,0.249990,0,0);}
.m9b_c01114{transform:matrix(0.241995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241995,0.000000,0.000000,0.250000,0,0);}
.m72_c01114{transform:matrix(0.242160,-0.002179,0.002250,0.249990,0,0);-ms-transform:matrix(0.242160,-0.002179,0.002250,0.249990,0,0);-webkit-transform:matrix(0.242160,-0.002179,0.002250,0.249990,0,0);}
.m3_c01114{transform:matrix(0.242475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242475,0.000000,0.000000,0.250000,0,0);}
.m6c_c01114{transform:matrix(0.242535,-0.002183,0.002250,0.249990,0,0);-ms-transform:matrix(0.242535,-0.002183,0.002250,0.249990,0,0);-webkit-transform:matrix(0.242535,-0.002183,0.002250,0.249990,0,0);}
.mb6_c01114{transform:matrix(0.242545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242545,0.000000,0.000000,0.250000,0,0);}
.m110_c01114{transform:matrix(0.243470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243470,0.000000,0.000000,0.250000,0,0);}
.mb_c01114{transform:matrix(0.243495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243495,0.000000,0.000000,0.250000,0,0);}
.m84_c01114{transform:matrix(0.244120,-0.002197,0.002250,0.249990,0,0);-ms-transform:matrix(0.244120,-0.002197,0.002250,0.249990,0,0);-webkit-transform:matrix(0.244120,-0.002197,0.002250,0.249990,0,0);}
.m6b_c01114{transform:matrix(0.244170,-0.002198,0.002250,0.249990,0,0);-ms-transform:matrix(0.244170,-0.002198,0.002250,0.249990,0,0);-webkit-transform:matrix(0.244170,-0.002198,0.002250,0.249990,0,0);}
.m95_c01114{transform:matrix(0.244255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244255,0.000000,0.000000,0.250000,0,0);}
.m7c_c01114{transform:matrix(0.244375,-0.002199,0.002250,0.249990,0,0);-ms-transform:matrix(0.244375,-0.002199,0.002250,0.249990,0,0);-webkit-transform:matrix(0.244375,-0.002199,0.002250,0.249990,0,0);}
.m9_c01114{transform:matrix(0.244470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244470,0.000000,0.000000,0.250000,0,0);}
.m90_c01114{transform:matrix(0.244540,-0.002201,0.002250,0.249990,0,0);-ms-transform:matrix(0.244540,-0.002201,0.002250,0.249990,0,0);-webkit-transform:matrix(0.244540,-0.002201,0.002250,0.249990,0,0);}
.m94_c01114{transform:matrix(0.244870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244870,0.000000,0.000000,0.250000,0,0);}
.m82_c01114{transform:matrix(0.245205,-0.002207,0.002250,0.249990,0,0);-ms-transform:matrix(0.245205,-0.002207,0.002250,0.249990,0,0);-webkit-transform:matrix(0.245205,-0.002207,0.002250,0.249990,0,0);}
.mbb_c01114{transform:matrix(0.245230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245230,0.000000,0.000000,0.250000,0,0);}
.m5_c01114{transform:matrix(0.245860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245860,0.000000,0.000000,0.250000,0,0);}
.m5c_c01114{transform:matrix(0.245960,-0.002214,0.002250,0.249990,0,0);-ms-transform:matrix(0.245960,-0.002214,0.002250,0.249990,0,0);-webkit-transform:matrix(0.245960,-0.002214,0.002250,0.249990,0,0);}
.m32_c01114{transform:matrix(0.246155,-0.002215,0.002250,0.249990,0,0);-ms-transform:matrix(0.246155,-0.002215,0.002250,0.249990,0,0);-webkit-transform:matrix(0.246155,-0.002215,0.002250,0.249990,0,0);}
.m89_c01114{transform:matrix(0.246780,-0.002221,0.002250,0.249990,0,0);-ms-transform:matrix(0.246780,-0.002221,0.002250,0.249990,0,0);-webkit-transform:matrix(0.246780,-0.002221,0.002250,0.249990,0,0);}
.m91_c01114{transform:matrix(0.247660,-0.002229,0.002250,0.249990,0,0);-ms-transform:matrix(0.247660,-0.002229,0.002250,0.249990,0,0);-webkit-transform:matrix(0.247660,-0.002229,0.002250,0.249990,0,0);}
.med_c01114{transform:matrix(0.247660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247660,0.000000,0.000000,0.250000,0,0);}
.mb1_c01114{transform:matrix(0.247755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247755,0.000000,0.000000,0.250000,0,0);}
.m10e_c01114{transform:matrix(0.247785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247785,0.000000,0.000000,0.250000,0,0);}
.m7a_c01114{transform:matrix(0.249470,-0.002245,0.002250,0.249990,0,0);-ms-transform:matrix(0.249470,-0.002245,0.002250,0.249990,0,0);-webkit-transform:matrix(0.249470,-0.002245,0.002250,0.249990,0,0);}
.mad_c01114{transform:matrix(0.249905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249905,0.000000,0.000000,0.250000,0,0);}
.mdf_c01114{transform:matrix(0.250095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250095,0.000000,0.000000,0.250000,0,0);}
.mb9_c01114{transform:matrix(0.250240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250240,0.000000,0.000000,0.250000,0,0);}
.m8d_c01114{transform:matrix(0.250695,-0.002256,0.002250,0.249990,0,0);-ms-transform:matrix(0.250695,-0.002256,0.002250,0.249990,0,0);-webkit-transform:matrix(0.250695,-0.002256,0.002250,0.249990,0,0);}
.m8f_c01114{transform:matrix(0.250890,-0.002258,0.002250,0.249990,0,0);-ms-transform:matrix(0.250890,-0.002258,0.002250,0.249990,0,0);-webkit-transform:matrix(0.250890,-0.002258,0.002250,0.249990,0,0);}
.mea_c01114{transform:matrix(0.250900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250900,0.000000,0.000000,0.250000,0,0);}
.m10b_c01114{transform:matrix(0.250955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250955,0.000000,0.000000,0.250000,0,0);}
.m8b_c01114{transform:matrix(0.250965,-0.002259,0.002250,0.249990,0,0);-ms-transform:matrix(0.250965,-0.002259,0.002250,0.249990,0,0);-webkit-transform:matrix(0.250965,-0.002259,0.002250,0.249990,0,0);}
.m37_c01114{transform:matrix(0.251135,-0.002260,0.002250,0.249990,0,0);-ms-transform:matrix(0.251135,-0.002260,0.002250,0.249990,0,0);-webkit-transform:matrix(0.251135,-0.002260,0.002250,0.249990,0,0);}
.m80_c01114{transform:matrix(0.251385,-0.002262,0.002250,0.249990,0,0);-ms-transform:matrix(0.251385,-0.002262,0.002250,0.249990,0,0);-webkit-transform:matrix(0.251385,-0.002262,0.002250,0.249990,0,0);}
.mf4_c01114{transform:matrix(0.251530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251530,0.000000,0.000000,0.250000,0,0);}
.mc4_c01114{transform:matrix(0.251695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251695,0.000000,0.000000,0.250000,0,0);}
.m93_c01114{transform:matrix(0.251735,-0.002266,0.002250,0.249990,0,0);-ms-transform:matrix(0.251735,-0.002266,0.002250,0.249990,0,0);-webkit-transform:matrix(0.251735,-0.002266,0.002250,0.249990,0,0);}
.mf_c01114{transform:matrix(0.252105,-0.001513,0.001500,0.249996,0,0);-ms-transform:matrix(0.252105,-0.001513,0.001500,0.249996,0,0);-webkit-transform:matrix(0.252105,-0.001513,0.001500,0.249996,0,0);}
.m38_c01114{transform:matrix(0.252570,-0.002273,0.002250,0.249990,0,0);-ms-transform:matrix(0.252570,-0.002273,0.002250,0.249990,0,0);-webkit-transform:matrix(0.252570,-0.002273,0.002250,0.249990,0,0);}
.m49_c01114{transform:matrix(0.252585,-0.002273,0.002250,0.249990,0,0);-ms-transform:matrix(0.252585,-0.002273,0.002250,0.249990,0,0);-webkit-transform:matrix(0.252585,-0.002273,0.002250,0.249990,0,0);}
.m63_c01114{transform:matrix(0.252835,-0.002276,0.002250,0.249990,0,0);-ms-transform:matrix(0.252835,-0.002276,0.002250,0.249990,0,0);-webkit-transform:matrix(0.252835,-0.002276,0.002250,0.249990,0,0);}
.m4d_c01114{transform:matrix(0.253525,-0.002282,0.002250,0.249990,0,0);-ms-transform:matrix(0.253525,-0.002282,0.002250,0.249990,0,0);-webkit-transform:matrix(0.253525,-0.002282,0.002250,0.249990,0,0);}
.mba_c01114{transform:matrix(0.254075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254075,0.000000,0.000000,0.250000,0,0);}
.m1b_c01114{transform:matrix(0.254565,-0.001527,0.001500,0.249996,0,0);-ms-transform:matrix(0.254565,-0.001527,0.001500,0.249996,0,0);-webkit-transform:matrix(0.254565,-0.001527,0.001500,0.249996,0,0);}
.me5_c01114{transform:matrix(0.254690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254690,0.000000,0.000000,0.250000,0,0);}
.m112_c01114{transform:matrix(0.255280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255280,0.000000,0.000000,0.250000,0,0);}
.m5a_c01114{transform:matrix(0.255390,-0.002299,0.002250,0.249990,0,0);-ms-transform:matrix(0.255390,-0.002299,0.002250,0.249990,0,0);-webkit-transform:matrix(0.255390,-0.002299,0.002250,0.249990,0,0);}
.m109_c01114{transform:matrix(0.255775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255775,0.000000,0.000000,0.250000,0,0);}
.mf1_c01114{transform:matrix(0.256505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256505,0.000000,0.000000,0.250000,0,0);}
.m69_c01114{transform:matrix(0.256630,-0.002310,0.002250,0.249990,0,0);-ms-transform:matrix(0.256630,-0.002310,0.002250,0.249990,0,0);-webkit-transform:matrix(0.256630,-0.002310,0.002250,0.249990,0,0);}
.ma4_c01114{transform:matrix(0.257545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257545,0.000000,0.000000,0.250000,0,0);}
.m9c_c01114{transform:matrix(0.257585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257585,0.000000,0.000000,0.250000,0,0);}
.m18_c01114{transform:matrix(0.257690,-0.001546,0.001500,0.249996,0,0);-ms-transform:matrix(0.257690,-0.001546,0.001500,0.249996,0,0);-webkit-transform:matrix(0.257690,-0.001546,0.001500,0.249996,0,0);}
.m48_c01114{transform:matrix(0.257710,-0.002319,0.002250,0.249990,0,0);-ms-transform:matrix(0.257710,-0.002319,0.002250,0.249990,0,0);-webkit-transform:matrix(0.257710,-0.002319,0.002250,0.249990,0,0);}
.m7d_c01114{transform:matrix(0.257865,-0.002321,0.002250,0.249990,0,0);-ms-transform:matrix(0.257865,-0.002321,0.002250,0.249990,0,0);-webkit-transform:matrix(0.257865,-0.002321,0.002250,0.249990,0,0);}
.m17_c01114{transform:matrix(0.258310,-0.001550,0.001500,0.249996,0,0);-ms-transform:matrix(0.258310,-0.001550,0.001500,0.249996,0,0);-webkit-transform:matrix(0.258310,-0.001550,0.001500,0.249996,0,0);}
.mb8_c01114{transform:matrix(0.259210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259210,0.000000,0.000000,0.250000,0,0);}
.m98_c01114{transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);}
.m6d_c01114{transform:matrix(0.259509,-0.002336,0.002250,0.249990,0,0);-ms-transform:matrix(0.259509,-0.002336,0.002250,0.249990,0,0);-webkit-transform:matrix(0.259509,-0.002336,0.002250,0.249990,0,0);}
.me0_c01114{transform:matrix(0.260605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260605,0.000000,0.000000,0.250000,0,0);}
.mc0_c01114{transform:matrix(0.260785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260785,0.000000,0.000000,0.250000,0,0);}
.md_c01114{transform:matrix(0.261010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261010,0.000000,0.000000,0.250000,0,0);}
.me2_c01114{transform:matrix(0.261165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261165,0.000000,0.000000,0.250000,0,0);}
.mab_c01114{transform:matrix(0.261365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261365,0.000000,0.000000,0.250000,0,0);}
.m11_c01114{transform:matrix(0.261380,-0.001568,0.001500,0.249996,0,0);-ms-transform:matrix(0.261380,-0.001568,0.001500,0.249996,0,0);-webkit-transform:matrix(0.261380,-0.001568,0.001500,0.249996,0,0);}
.ma9_c01114{transform:matrix(0.261965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261965,0.000000,0.000000,0.250000,0,0);}
.mc7_c01114{transform:matrix(0.262525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262525,0.000000,0.000000,0.250000,0,0);}
.m53_c01114{transform:matrix(0.262929,-0.002366,0.002250,0.249990,0,0);-ms-transform:matrix(0.262929,-0.002366,0.002250,0.249990,0,0);-webkit-transform:matrix(0.262929,-0.002366,0.002250,0.249990,0,0);}
.m14_c01114{transform:matrix(0.263400,-0.001580,0.001500,0.249996,0,0);-ms-transform:matrix(0.263400,-0.001580,0.001500,0.249996,0,0);-webkit-transform:matrix(0.263400,-0.001580,0.001500,0.249996,0,0);}
.ma6_c01114{transform:matrix(0.263795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263795,0.000000,0.000000,0.250000,0,0);}
.m65_c01114{transform:matrix(0.263799,-0.002374,0.002250,0.249990,0,0);-ms-transform:matrix(0.263799,-0.002374,0.002250,0.249990,0,0);-webkit-transform:matrix(0.263799,-0.002374,0.002250,0.249990,0,0);}
.m1c_c01114{transform:matrix(0.264695,-0.001588,0.001500,0.249996,0,0);-ms-transform:matrix(0.264695,-0.001588,0.001500,0.249996,0,0);-webkit-transform:matrix(0.264695,-0.001588,0.001500,0.249996,0,0);}
.m67_c01114{transform:matrix(0.264749,-0.002383,0.002250,0.249990,0,0);-ms-transform:matrix(0.264749,-0.002383,0.002250,0.249990,0,0);-webkit-transform:matrix(0.264749,-0.002383,0.002250,0.249990,0,0);}
.m50_c01114{transform:matrix(0.265144,-0.002386,0.002250,0.249990,0,0);-ms-transform:matrix(0.265144,-0.002386,0.002250,0.249990,0,0);-webkit-transform:matrix(0.265144,-0.002386,0.002250,0.249990,0,0);}
.ma0_c01114{transform:matrix(0.265275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265275,0.000000,0.000000,0.250000,0,0);}
.m12c_c01114{transform:matrix(0.265584,0.002921,-0.002750,0.249985,0,0);-ms-transform:matrix(0.265584,0.002921,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.265584,0.002921,-0.002750,0.249985,0,0);}
.m11d_c01114{transform:matrix(0.266235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266235,0.000000,0.000000,0.250000,0,0);}
.mae_c01114{transform:matrix(0.266690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266690,0.000000,0.000000,0.250000,0,0);}
.m2_c01114{transform:matrix(0.267265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267265,0.000000,0.000000,0.250000,0,0);}
.m3d_c01114{transform:matrix(0.268054,-0.002412,0.002250,0.249990,0,0);-ms-transform:matrix(0.268054,-0.002412,0.002250,0.249990,0,0);-webkit-transform:matrix(0.268054,-0.002412,0.002250,0.249990,0,0);}
.m6f_c01114{transform:matrix(0.268469,-0.002416,0.002250,0.249990,0,0);-ms-transform:matrix(0.268469,-0.002416,0.002250,0.249990,0,0);-webkit-transform:matrix(0.268469,-0.002416,0.002250,0.249990,0,0);}
.mbf_c01114{transform:matrix(0.268570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268570,0.000000,0.000000,0.250000,0,0);}
.m86_c01114{transform:matrix(0.268654,-0.002418,0.002250,0.249990,0,0);-ms-transform:matrix(0.268654,-0.002418,0.002250,0.249990,0,0);-webkit-transform:matrix(0.268654,-0.002418,0.002250,0.249990,0,0);}
.m104_c01114{transform:matrix(0.268715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268715,0.000000,0.000000,0.250000,0,0);}
.m4f_c01114{transform:matrix(0.269189,-0.002423,0.002250,0.249990,0,0);-ms-transform:matrix(0.269189,-0.002423,0.002250,0.249990,0,0);-webkit-transform:matrix(0.269189,-0.002423,0.002250,0.249990,0,0);}
.m46_c01114{transform:matrix(0.269249,-0.002423,0.002250,0.249990,0,0);-ms-transform:matrix(0.269249,-0.002423,0.002250,0.249990,0,0);-webkit-transform:matrix(0.269249,-0.002423,0.002250,0.249990,0,0);}
.m1a_c01114{transform:matrix(0.269505,-0.001617,0.001500,0.249996,0,0);-ms-transform:matrix(0.269505,-0.001617,0.001500,0.249996,0,0);-webkit-transform:matrix(0.269505,-0.001617,0.001500,0.249996,0,0);}
.m15_c01114{transform:matrix(0.269985,-0.001620,0.001500,0.249996,0,0);-ms-transform:matrix(0.269985,-0.001620,0.001500,0.249996,0,0);-webkit-transform:matrix(0.269985,-0.001620,0.001500,0.249996,0,0);}
.m9e_c01114{transform:matrix(0.270085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270085,0.000000,0.000000,0.250000,0,0);}
.mac_c01114{transform:matrix(0.270375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270375,0.000000,0.000000,0.250000,0,0);}
.m120_c01114{transform:matrix(0.270585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270585,0.000000,0.000000,0.250000,0,0);}
.mca_c01114{transform:matrix(0.270845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270845,0.000000,0.000000,0.250000,0,0);}
.m61_c01114{transform:matrix(0.271904,-0.002447,0.002250,0.249990,0,0);-ms-transform:matrix(0.271904,-0.002447,0.002250,0.249990,0,0);-webkit-transform:matrix(0.271904,-0.002447,0.002250,0.249990,0,0);}
.m30_c01114{transform:matrix(0.272259,-0.002450,0.002250,0.249990,0,0);-ms-transform:matrix(0.272259,-0.002450,0.002250,0.249990,0,0);-webkit-transform:matrix(0.272259,-0.002450,0.002250,0.249990,0,0);}
.mce_c01114{transform:matrix(0.272545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272545,0.000000,0.000000,0.250000,0,0);}
.mb3_c01114{transform:matrix(0.272760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272760,0.000000,0.000000,0.250000,0,0);}
.mc5_c01114{transform:matrix(0.273085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273085,0.000000,0.000000,0.250000,0,0);}
.m3c_c01114{transform:matrix(0.273149,-0.002458,0.002250,0.249990,0,0);-ms-transform:matrix(0.273149,-0.002458,0.002250,0.249990,0,0);-webkit-transform:matrix(0.273149,-0.002458,0.002250,0.249990,0,0);}
.mb0_c01114{transform:matrix(0.273725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273725,0.000000,0.000000,0.250000,0,0);}
.m8_c01114{transform:matrix(0.274150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274150,0.000000,0.000000,0.250000,0,0);}
.ma2_c01114{transform:matrix(0.274365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274365,0.000000,0.000000,0.250000,0,0);}
.mb7_c01114{transform:matrix(0.274695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274695,0.000000,0.000000,0.250000,0,0);}
.m6_c01114{transform:matrix(0.275470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275470,0.000000,0.000000,0.250000,0,0);}
.m36_c01114{transform:matrix(0.276004,-0.002484,0.002250,0.249990,0,0);-ms-transform:matrix(0.276004,-0.002484,0.002250,0.249990,0,0);-webkit-transform:matrix(0.276004,-0.002484,0.002250,0.249990,0,0);}
.mbc_c01114{transform:matrix(0.276340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276340,0.000000,0.000000,0.250000,0,0);}
.m60_c01114{transform:matrix(0.276539,-0.002489,0.002250,0.249990,0,0);-ms-transform:matrix(0.276539,-0.002489,0.002250,0.249990,0,0);-webkit-transform:matrix(0.276539,-0.002489,0.002250,0.249990,0,0);}
.m4c_c01114{transform:matrix(0.276634,-0.002490,0.002250,0.249990,0,0);-ms-transform:matrix(0.276634,-0.002490,0.002250,0.249990,0,0);-webkit-transform:matrix(0.276634,-0.002490,0.002250,0.249990,0,0);}
.mcc_c01114{transform:matrix(0.276695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276695,0.000000,0.000000,0.250000,0,0);}
.ma7_c01114{transform:matrix(0.277015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277015,0.000000,0.000000,0.250000,0,0);}
.mcf_c01114{transform:matrix(0.277600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277600,0.000000,0.000000,0.250000,0,0);}
.m41_c01114{transform:matrix(0.277789,-0.002500,0.002250,0.249990,0,0);-ms-transform:matrix(0.277789,-0.002500,0.002250,0.249990,0,0);-webkit-transform:matrix(0.277789,-0.002500,0.002250,0.249990,0,0);}
.m125_c01114{transform:matrix(0.277963,0.003058,-0.002750,0.249985,0,0);-ms-transform:matrix(0.277963,0.003058,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.277963,0.003058,-0.002750,0.249985,0,0);}
.m55_c01114{transform:matrix(0.278404,-0.002506,0.002250,0.249990,0,0);-ms-transform:matrix(0.278404,-0.002506,0.002250,0.249990,0,0);-webkit-transform:matrix(0.278404,-0.002506,0.002250,0.249990,0,0);}
.m97_c01114{transform:matrix(0.279025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279025,0.000000,0.000000,0.250000,0,0);}
.m5d_c01114{transform:matrix(0.280334,-0.002523,0.002250,0.249990,0,0);-ms-transform:matrix(0.280334,-0.002523,0.002250,0.249990,0,0);-webkit-transform:matrix(0.280334,-0.002523,0.002250,0.249990,0,0);}
.mc8_c01114{transform:matrix(0.281480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281480,0.000000,0.000000,0.250000,0,0);}
.m6e_c01114{transform:matrix(0.281549,-0.002534,0.002250,0.249990,0,0);-ms-transform:matrix(0.281549,-0.002534,0.002250,0.249990,0,0);-webkit-transform:matrix(0.281549,-0.002534,0.002250,0.249990,0,0);}
.m35_c01114{transform:matrix(0.281784,-0.002536,0.002250,0.249990,0,0);-ms-transform:matrix(0.281784,-0.002536,0.002250,0.249990,0,0);-webkit-transform:matrix(0.281784,-0.002536,0.002250,0.249990,0,0);}
.m44_c01114{transform:matrix(0.281944,-0.002537,0.002250,0.249990,0,0);-ms-transform:matrix(0.281944,-0.002537,0.002250,0.249990,0,0);-webkit-transform:matrix(0.281944,-0.002537,0.002250,0.249990,0,0);}
.mc_c01114{transform:matrix(0.282325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282325,0.000000,0.000000,0.250000,0,0);}
.m87_c01114{transform:matrix(0.282889,-0.002546,0.002250,0.249990,0,0);-ms-transform:matrix(0.282889,-0.002546,0.002250,0.249990,0,0);-webkit-transform:matrix(0.282889,-0.002546,0.002250,0.249990,0,0);}
.m99_c01114{transform:matrix(0.284175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284175,0.000000,0.000000,0.250000,0,0);}
.mc2_c01114{transform:matrix(0.284355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284355,0.000000,0.000000,0.250000,0,0);}
.m51_c01114{transform:matrix(0.284608,-0.002561,0.002250,0.249990,0,0);-ms-transform:matrix(0.284608,-0.002561,0.002250,0.249990,0,0);-webkit-transform:matrix(0.284608,-0.002561,0.002250,0.249990,0,0);}
.m34_c01114{transform:matrix(0.285743,-0.002572,0.002250,0.249990,0,0);-ms-transform:matrix(0.285743,-0.002572,0.002250,0.249990,0,0);-webkit-transform:matrix(0.285743,-0.002572,0.002250,0.249990,0,0);}
.m4a_c01114{transform:matrix(0.286043,-0.002574,0.002250,0.249990,0,0);-ms-transform:matrix(0.286043,-0.002574,0.002250,0.249990,0,0);-webkit-transform:matrix(0.286043,-0.002574,0.002250,0.249990,0,0);}
.m9d_c01114{transform:matrix(0.286185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286185,0.000000,0.000000,0.250000,0,0);}
.m102_c01114{transform:matrix(0.286820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286820,0.000000,0.000000,0.250000,0,0);}
.mb5_c01114{transform:matrix(0.287440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287440,0.000000,0.000000,0.250000,0,0);}
.ma8_c01114{transform:matrix(0.288195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288195,0.000000,0.000000,0.250000,0,0);}
.ma_c01114{transform:matrix(0.288525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288525,0.000000,0.000000,0.250000,0,0);}
.m4e_c01114{transform:matrix(0.288528,-0.002597,0.002250,0.249990,0,0);-ms-transform:matrix(0.288528,-0.002597,0.002250,0.249990,0,0);-webkit-transform:matrix(0.288528,-0.002597,0.002250,0.249990,0,0);}
.m3b_c01114{transform:matrix(0.288733,-0.002599,0.002250,0.249990,0,0);-ms-transform:matrix(0.288733,-0.002599,0.002250,0.249990,0,0);-webkit-transform:matrix(0.288733,-0.002599,0.002250,0.249990,0,0);}
.m100_c01114{transform:matrix(0.288930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288930,0.000000,0.000000,0.250000,0,0);}
.mbe_c01114{transform:matrix(0.290260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290260,0.000000,0.000000,0.250000,0,0);}
.m57_c01114{transform:matrix(0.291678,-0.002625,0.002250,0.249990,0,0);-ms-transform:matrix(0.291678,-0.002625,0.002250,0.249990,0,0);-webkit-transform:matrix(0.291678,-0.002625,0.002250,0.249990,0,0);}
.m33_c01114{transform:matrix(0.292978,-0.002637,0.002250,0.249990,0,0);-ms-transform:matrix(0.292978,-0.002637,0.002250,0.249990,0,0);-webkit-transform:matrix(0.292978,-0.002637,0.002250,0.249990,0,0);}
.mc1_c01114{transform:matrix(0.295220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295220,0.000000,0.000000,0.250000,0,0);}
.mf8_c01114{transform:matrix(0.299725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299725,0.000000,0.000000,0.250000,0,0);}
.m54_c01114{transform:matrix(0.303173,-0.002729,0.002250,0.249990,0,0);-ms-transform:matrix(0.303173,-0.002729,0.002250,0.249990,0,0);-webkit-transform:matrix(0.303173,-0.002729,0.002250,0.249990,0,0);}
.m3a_c01114{transform:matrix(0.305638,-0.002751,0.002250,0.249990,0,0);-ms-transform:matrix(0.305638,-0.002751,0.002250,0.249990,0,0);-webkit-transform:matrix(0.305638,-0.002751,0.002250,0.249990,0,0);}
.m3e_c01114{transform:matrix(0.306428,-0.002758,0.002250,0.249990,0,0);-ms-transform:matrix(0.306428,-0.002758,0.002250,0.249990,0,0);-webkit-transform:matrix(0.306428,-0.002758,0.002250,0.249990,0,0);}
.mde_c01114{transform:matrix(0.309165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309165,0.000000,0.000000,0.250000,0,0);}
.m52_c01114{transform:matrix(0.310747,-0.002797,0.002250,0.249990,0,0);-ms-transform:matrix(0.310747,-0.002797,0.002250,0.249990,0,0);-webkit-transform:matrix(0.310747,-0.002797,0.002250,0.249990,0,0);}
.m81_c01114{transform:matrix(0.312482,-0.002812,0.002250,0.249990,0,0);-ms-transform:matrix(0.312482,-0.002812,0.002250,0.249990,0,0);-webkit-transform:matrix(0.312482,-0.002812,0.002250,0.249990,0,0);}
.m9f_c01114{transform:matrix(0.313075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313075,0.000000,0.000000,0.250000,0,0);}
.m43_c01114{transform:matrix(0.314652,-0.002832,0.002250,0.249990,0,0);-ms-transform:matrix(0.314652,-0.002832,0.002250,0.249990,0,0);-webkit-transform:matrix(0.314652,-0.002832,0.002250,0.249990,0,0);}
.mee_c01114{transform:matrix(0.336615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336615,0.000000,0.000000,0.250000,0,0);}
.m12_c01114{transform:matrix(0.340519,-0.002043,0.001500,0.249996,0,0);-ms-transform:matrix(0.340519,-0.002043,0.001500,0.249996,0,0);-webkit-transform:matrix(0.340519,-0.002043,0.001500,0.249996,0,0);}
.m10c_c01114{transform:matrix(0.352180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352180,0.000000,0.000000,0.250000,0,0);}
.m12b_c01114{transform:matrix(0.408350,0.004492,-0.002750,0.249985,0,0);-ms-transform:matrix(0.408350,0.004492,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.408350,0.004492,-0.002750,0.249985,0,0);}
.mb4_c01114{transform:matrix(0.414760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414760,0.000000,0.000000,0.250000,0,0);}
.md0_c01114{transform:matrix(0.435445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435445,0.000000,0.000000,0.250000,0,0);}
.m62_c01114{transform:matrix(0.683172,-0.006149,0.002250,0.249990,0,0);-ms-transform:matrix(0.683172,-0.006149,0.002250,0.249990,0,0);-webkit-transform:matrix(0.683172,-0.006149,0.002250,0.249990,0,0);}
.m13b_c01114{transform:matrix(0.693395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.693395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.693395,0.000000,0.000000,0.250000,0,0);}
.m13a_c01114{transform:matrix(1.663970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.663970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.663970,0.000000,0.000000,0.250000,0,0);}
.m13c_c01114{transform:matrix(2.179665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.179665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.179665,0.000000,0.000000,0.250000,0,0);}
.v0_c01114{vertical-align:0.000000px;}
.ls0_c01114{letter-spacing:0.000000px;}
.sc__c01114{text-shadow:none;}
.sc0_c01114{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__c01114{-webkit-text-stroke:0px transparent;}
.sc0_c01114{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01114{word-spacing:0.000000px;}
.fc0_c01114{color:transparent;}
.fse_c01114{font-size:18.000000px;}
.fsb_c01114{font-size:24.000000px;}
.fs8_c01114{font-size:54.000000px;}
.fs5_c01114{font-size:66.002673px;}
.fs0_c01114{font-size:72.000000px;}
.fs1_c01114{font-size:72.001296px;}
.fs6_c01114{font-size:72.002916px;}
.fsa_c01114{font-size:78.000000px;}
.fs7_c01114{font-size:78.003159px;}
.fs9_c01114{font-size:84.000000px;}
.fs3_c01114{font-size:84.001512px;}
.fs4_c01114{font-size:84.003402px;}
.fsf_c01114{font-size:90.000000px;}
.fs2_c01114{font-size:90.001620px;}
.fsc_c01114{font-size:90.005445px;}
.fsd_c01114{font-size:96.000768px;}
.y0_c01114{bottom:0.000000px;}
.ycf_c01114{bottom:73.443000px;}
.yd0_c01114{bottom:74.227500px;}
.yd1_c01114{bottom:75.160500px;}
.yd2_c01114{bottom:76.219500px;}
.yd3_c01114{bottom:76.621500px;}
.yd4_c01114{bottom:77.683500px;}
.yd5_c01114{bottom:78.079500px;}
.yce_c01114{bottom:110.407500px;}
.ycd_c01114{bottom:142.798500px;}
.ycc_c01114{bottom:160.097178px;}
.ycb_c01114{bottom:160.822866px;}
.yca_c01114{bottom:160.956726px;}
.yc9_c01114{bottom:161.174898px;}
.yc8_c01114{bottom:161.485992px;}
.yc7_c01114{bottom:161.577750px;}
.yc6_c01114{bottom:162.018444px;}
.yc5_c01114{bottom:162.110190px;}
.yc4_c01114{bottom:162.417066px;}
.yc3_c01114{bottom:162.554124px;}
.yc2_c01114{bottom:162.909492px;}
.yc1_c01114{bottom:163.080000px;}
.yc0_c01114{bottom:195.270035px;}
.ybf_c01114{bottom:196.264572px;}
.ybe_c01114{bottom:196.631235px;}
.ybd_c01114{bottom:197.138940px;}
.ybc_c01114{bottom:197.491397px;}
.ybb_c01114{bottom:197.859264px;}
.yba_c01114{bottom:198.471447px;}
.yb9_c01114{bottom:198.836477px;}
.yb8_c01114{bottom:199.192893px;}
.yb7_c01114{bottom:199.452273px;}
.yb6_c01114{bottom:200.292074px;}
.yb5_c01114{bottom:200.782157px;}
.yb4_c01114{bottom:201.144480px;}
.yb3_c01114{bottom:202.231500px;}
.yb2_c01114{bottom:240.706500px;}
.yb1_c01114{bottom:270.456000px;}
.yac_c01114{bottom:305.371500px;}
.yad_c01114{bottom:305.845500px;}
.yae_c01114{bottom:306.441000px;}
.yaf_c01114{bottom:306.904500px;}
.yb0_c01114{bottom:308.356500px;}
.yab_c01114{bottom:339.465000px;}
.yaa_c01114{bottom:375.111000px;}
.y9e_c01114{bottom:410.671500px;}
.y9f_c01114{bottom:410.940000px;}
.ya0_c01114{bottom:411.238500px;}
.ya1_c01114{bottom:412.185000px;}
.ya2_c01114{bottom:412.969500px;}
.ya3_c01114{bottom:413.146500px;}
.ya4_c01114{bottom:413.415000px;}
.ya5_c01114{bottom:413.944500px;}
.ya6_c01114{bottom:414.210000px;}
.ya7_c01114{bottom:414.573000px;}
.ya8_c01114{bottom:415.012500px;}
.ya9_c01114{bottom:415.902000px;}
.y9d_c01114{bottom:445.500000px;}
.y9c_c01114{bottom:482.037000px;}
.y1_c01114{bottom:518.043000px;}
.y9b_c01114{bottom:552.150000px;}
.y9a_c01114{bottom:554.247000px;}
.y99_c01114{bottom:589.140000px;}
.y8c_c01114{bottom:625.050000px;}
.y8d_c01114{bottom:625.272000px;}
.y8e_c01114{bottom:625.608000px;}
.y8f_c01114{bottom:625.822500px;}
.y90_c01114{bottom:626.320500px;}
.y91_c01114{bottom:626.707500px;}
.y92_c01114{bottom:626.817000px;}
.y93_c01114{bottom:627.258000px;}
.y94_c01114{bottom:627.373500px;}
.y95_c01114{bottom:627.535500px;}
.y96_c01114{bottom:627.930000px;}
.y97_c01114{bottom:628.063500px;}
.y98_c01114{bottom:628.210500px;}
.y8b_c01114{bottom:659.340000px;}
.y8a_c01114{bottom:696.756000px;}
.y7f_c01114{bottom:730.898721px;}
.y80_c01114{bottom:730.899264px;}
.y81_c01114{bottom:730.900001px;}
.y86_c01114{bottom:730.900166px;}
.y89_c01114{bottom:730.900292px;}
.y87_c01114{bottom:730.900302px;}
.y82_c01114{bottom:730.900320px;}
.y84_c01114{bottom:730.900730px;}
.y85_c01114{bottom:730.900746px;}
.y88_c01114{bottom:730.900845px;}
.y83_c01114{bottom:730.901057px;}
.y7d_c01114{bottom:765.435890px;}
.y7c_c01114{bottom:765.436293px;}
.y7b_c01114{bottom:765.436517px;}
.y79_c01114{bottom:765.436544px;}
.y7e_c01114{bottom:765.436586px;}
.y7a_c01114{bottom:765.436920px;}
.y78_c01114{bottom:765.437097px;}
.y73_c01114{bottom:765.437282px;}
.y72_c01114{bottom:765.437339px;}
.y77_c01114{bottom:765.437591px;}
.y70_c01114{bottom:765.437666px;}
.y76_c01114{bottom:765.437691px;}
.y71_c01114{bottom:765.437952px;}
.y74_c01114{bottom:765.438018px;}
.y75_c01114{bottom:765.438395px;}
.y65_c01114{bottom:800.271759px;}
.y66_c01114{bottom:800.772789px;}
.y67_c01114{bottom:801.315243px;}
.y68_c01114{bottom:801.702924px;}
.y69_c01114{bottom:801.926304px;}
.y6a_c01114{bottom:802.153193px;}
.y6b_c01114{bottom:802.480253px;}
.y6c_c01114{bottom:802.654223px;}
.y6d_c01114{bottom:802.982994px;}
.y6e_c01114{bottom:803.206523px;}
.y6f_c01114{bottom:803.366720px;}
.y5d_c01114{bottom:838.277424px;}
.y64_c01114{bottom:838.277469px;}
.y61_c01114{bottom:838.277580px;}
.y5e_c01114{bottom:838.277590px;}
.y58_c01114{bottom:838.277592px;}
.y62_c01114{bottom:838.277657px;}
.y5c_c01114{bottom:838.277691px;}
.y60_c01114{bottom:838.277894px;}
.y5f_c01114{bottom:838.277937px;}
.y63_c01114{bottom:838.278049px;}
.y5b_c01114{bottom:838.278095px;}
.y59_c01114{bottom:838.278195px;}
.y5a_c01114{bottom:838.278571px;}
.y4b_c01114{bottom:871.823682px;}
.y4c_c01114{bottom:871.955480px;}
.y4d_c01114{bottom:872.135857px;}
.y4e_c01114{bottom:872.314794px;}
.y4f_c01114{bottom:872.446389px;}
.y50_c01114{bottom:872.713477px;}
.y51_c01114{bottom:872.885469px;}
.y52_c01114{bottom:873.064419px;}
.y53_c01114{bottom:873.549489px;}
.y54_c01114{bottom:873.672966px;}
.y55_c01114{bottom:873.908679px;}
.y56_c01114{bottom:874.266899px;}
.y57_c01114{bottom:874.799994px;}
.y3f_c01114{bottom:908.006571px;}
.y40_c01114{bottom:908.282708px;}
.y41_c01114{bottom:908.390256px;}
.y42_c01114{bottom:908.554756px;}
.y43_c01114{bottom:908.883663px;}
.y44_c01114{bottom:909.057687px;}
.y45_c01114{bottom:909.274742px;}
.y46_c01114{bottom:909.389927px;}
.y47_c01114{bottom:909.779334px;}
.y48_c01114{bottom:910.551132px;}
.y49_c01114{bottom:910.771803px;}
.y4a_c01114{bottom:911.216568px;}
.y33_c01114{bottom:942.837960px;}
.y34_c01114{bottom:943.031319px;}
.y35_c01114{bottom:943.235540px;}
.y36_c01114{bottom:943.893633px;}
.y37_c01114{bottom:944.097691px;}
.y38_c01114{bottom:944.366287px;}
.y39_c01114{bottom:945.159285px;}
.y3a_c01114{bottom:945.356907px;}
.y3b_c01114{bottom:945.898392px;}
.y3c_c01114{bottom:946.165977px;}
.y3d_c01114{bottom:946.500974px;}
.y3e_c01114{bottom:946.883886px;}
.y27_c01114{bottom:977.670210px;}
.y28_c01114{bottom:978.208449px;}
.y29_c01114{bottom:978.683393px;}
.y2a_c01114{bottom:979.138590px;}
.y2b_c01114{bottom:979.607771px;}
.y2c_c01114{bottom:979.843845px;}
.y2d_c01114{bottom:980.157158px;}
.y2e_c01114{bottom:980.384474px;}
.y2f_c01114{bottom:981.234798px;}
.y30_c01114{bottom:981.703884px;}
.y31_c01114{bottom:982.026603px;}
.y32_c01114{bottom:982.401216px;}
.y1c_c01114{bottom:1012.771500px;}
.y1d_c01114{bottom:1012.968371px;}
.y1e_c01114{bottom:1013.148177px;}
.y1f_c01114{bottom:1013.850501px;}
.y20_c01114{bottom:1014.465332px;}
.y21_c01114{bottom:1015.242972px;}
.y22_c01114{bottom:1016.341373px;}
.y23_c01114{bottom:1017.053052px;}
.y24_c01114{bottom:1017.243281px;}
.y25_c01114{bottom:1017.949924px;}
.y26_c01114{bottom:1018.244090px;}
.y14_c01114{bottom:1082.431674px;}
.y15_c01114{bottom:1083.760311px;}
.y16_c01114{bottom:1084.176774px;}
.y17_c01114{bottom:1085.221485px;}
.y18_c01114{bottom:1085.485182px;}
.y19_c01114{bottom:1086.417774px;}
.y1a_c01114{bottom:1086.816534px;}
.y1b_c01114{bottom:1087.523874px;}
.y11_c01114{bottom:1119.458121px;}
.y12_c01114{bottom:1119.458652px;}
.y13_c01114{bottom:1119.459363px;}
.y3_c01114{bottom:1156.950000px;}
.y4_c01114{bottom:1157.235453px;}
.y5_c01114{bottom:1157.418144px;}
.y6_c01114{bottom:1157.757048px;}
.y7_c01114{bottom:1158.025689px;}
.y8_c01114{bottom:1158.225048px;}
.y9_c01114{bottom:1158.612300px;}
.ya_c01114{bottom:1159.213185px;}
.yb_c01114{bottom:1159.357482px;}
.yc_c01114{bottom:1159.743087px;}
.yd_c01114{bottom:1160.157708px;}
.ye_c01114{bottom:1160.352234px;}
.yf_c01114{bottom:1160.820378px;}
.y10_c01114{bottom:1161.024516px;}
.y2_c01114{bottom:1210.797000px;}
.h10_c01114{height:18.000000px;}
.hd_c01114{height:24.000000px;}
.ha_c01114{height:54.000000px;}
.h7_c01114{height:66.002673px;}
.h2_c01114{height:72.000000px;}
.h3_c01114{height:72.001296px;}
.h8_c01114{height:72.002916px;}
.hc_c01114{height:78.000000px;}
.h9_c01114{height:78.003159px;}
.hb_c01114{height:84.000000px;}
.h5_c01114{height:84.001512px;}
.h6_c01114{height:84.003402px;}
.h11_c01114{height:90.000000px;}
.h4_c01114{height:90.001620px;}
.he_c01114{height:90.005445px;}
.hf_c01114{height:96.000768px;}
.h0_c01114{height:1246.320000px;}
.h1_c01114{height:1246.500000px;}
.w0_c01114{width:927.450000px;}
.w1_c01114{width:927.750000px;}
.x0_c01114{left:0.000000px;}
.x1_c01114{left:154.170000px;}
.x11_c01114{left:160.983000px;}
.x1f_c01114{left:162.811509px;}
.x31_c01114{left:163.968524px;}
.x3a_c01114{left:165.032075px;}
.x4f_c01114{left:166.321146px;}
.x2_c01114{left:168.210000px;}
.x8b_c01114{left:169.560000px;}
.xae_c01114{left:170.908500px;}
.xcc_c01114{left:173.025000px;}
.xd6_c01114{left:176.040000px;}
.x29_c01114{left:186.964500px;}
.x83_c01114{left:190.345500px;}
.xba_c01114{left:193.860000px;}
.x3b_c01114{left:197.183939px;}
.x65_c01114{left:199.800000px;}
.x3_c01114{left:201.690000px;}
.x97_c01114{left:203.310000px;}
.x12_c01114{left:208.558500px;}
.x71_c01114{left:212.023500px;}
.x7a_c01114{left:213.025500px;}
.xbb_c01114{left:214.650000px;}
.xcd_c01114{left:215.652000px;}
.x42_c01114{left:220.375029px;}
.x66_c01114{left:221.670000px;}
.xd5_c01114{left:224.370000px;}
.x20_c01114{left:228.152358px;}
.x3c_c01114{left:231.209357px;}
.x98_c01114{left:237.060000px;}
.x13_c01114{left:239.007000px;}
.x32_c01114{left:240.940914px;}
.x43_c01114{left:241.992312px;}
.x48_c01114{left:243.052161px;}
.x5c_c01114{left:244.621497px;}
.xb6_c01114{left:248.751000px;}
.x8c_c01114{left:257.310000px;}
.x50_c01114{left:264.604598px;}
.x56_c01114{left:266.299760px;}
.x99_c01114{left:268.650000px;}
.xa6_c01114{left:269.728500px;}
.x22_c01114{left:273.144660px;}
.x44_c01114{left:274.938000px;}
.x4_c01114{left:278.910000px;}
.x21_c01114{left:283.772856px;}
.x49_c01114{left:287.602659px;}
.x8d_c01114{left:289.980000px;}
.xaf_c01114{left:291.058500px;}
.x14_c01114{left:295.491000px;}
.x5_c01114{left:300.240000px;}
.x9a_c01114{left:301.320000px;}
.xce_c01114{left:304.494000px;}
.x23_c01114{left:307.803909px;}
.x84_c01114{left:309.685500px;}
.x7b_c01114{left:312.385500px;}
.xdc_c01114{left:316.623000px;}
.x4a_c01114{left:320.559144px;}
.x72_c01114{left:322.186500px;}
.xb0_c01114{left:323.458500px;}
.xbc_c01114{left:325.620000px;}
.xd7_c01114{left:327.510000px;}
.x67_c01114{left:332.100000px;}
.x6_c01114{left:335.070000px;}
.xcf_c01114{left:338.758500px;}
.x15_c01114{left:340.264500px;}
.x51_c01114{left:341.557835px;}
.x6b_c01114{left:343.170000px;}
.x9b_c01114{left:345.600000px;}
.xb7_c01114{left:348.120000px;}
.x5d_c01114{left:353.705826px;}
.x7c_c01114{left:356.125500px;}
.xa2_c01114{left:358.941000px;}
.xbd_c01114{left:360.180000px;}
.x16_c01114{left:373.491000px;}
.x2a_c01114{left:375.168000px;}
.x7_c01114{left:378.000000px;}
.xa7_c01114{left:379.888500px;}
.xc2_c01114{left:381.904500px;}
.x4b_c01114{left:387.238641px;}
.xb1_c01114{left:390.148500px;}
.x24_c01114{left:394.919277px;}
.x7d_c01114{left:398.785500px;}
.xa8_c01114{left:403.648500px;}
.xdd_c01114{left:404.896500px;}
.x64_c01114{left:408.247551px;}
.x6c_c01114{left:410.400000px;}
.x8e_c01114{left:411.480000px;}
.xc3_c01114{left:414.843000px;}
.x25_c01114{left:416.867985px;}
.x3d_c01114{left:419.686446px;}
.x73_c01114{left:421.813500px;}
.xb8_c01114{left:425.331000px;}
.xe_c01114{left:430.650000px;}
.x5e_c01114{left:432.009171px;}
.x17_c01114{left:438.033000px;}
.x33_c01114{left:440.758005px;}
.x45_c01114{left:442.074021px;}
.x8f_c01114{left:444.960000px;}
.xb2_c01114{left:446.308500px;}
.xf_c01114{left:451.980000px;}
.x7e_c01114{left:455.755500px;}
.xa3_c01114{left:456.916500px;}
.xbe_c01114{left:458.730000px;}
.x2b_c01114{left:461.572500px;}
.x8_c01114{left:467.640000px;}
.xc1_c01114{left:469.260000px;}
.x34_c01114{left:474.489113px;}
.x9c_c01114{left:479.790000px;}
.xd8_c01114{left:481.680000px;}
.x52_c01114{left:486.013539px;}
.x7f_c01114{left:489.235500px;}
.xb3_c01114{left:490.588500px;}
.x26_c01114{left:494.547186px;}
.x10_c01114{left:496.530000px;}
.x68_c01114{left:498.150000px;}
.x74_c01114{left:499.284000px;}
.x90_c01114{left:500.850000px;}
.x9_c01114{left:512.460000px;}
.xd9_c01114{left:514.620000px;}
.x35_c01114{left:519.302423px;}
.x6d_c01114{left:521.100000px;}
.x91_c01114{left:524.070000px;}
.x27_c01114{left:527.755989px;}
.xbf_c01114{left:535.140000px;}
.x18_c01114{left:538.180500px;}
.x53_c01114{left:540.556454px;}
.x57_c01114{left:542.521209px;}
.x9d_c01114{left:545.130000px;}
.xd0_c01114{left:548.587500px;}
.x36_c01114{left:551.727003px;}
.x80_c01114{left:555.115500px;}
.xa9_c01114{left:556.198500px;}
.xc4_c01114{left:559.321500px;}
.x19_c01114{left:562.230000px;}
.xc0_c01114{left:568.350000px;}
.xd1_c01114{left:571.527000px;}
.x92_c01114{left:576.720000px;}
.xa4_c01114{left:578.713500px;}
.x2c_c01114{left:583.617000px;}
.x3e_c01114{left:584.926415px;}
.x28_c01114{left:586.643865px;}
.x9e_c01114{left:589.680000px;}
.xc5_c01114{left:591.723000px;}
.x4c_c01114{left:595.971524px;}
.xda_c01114{left:603.720000px;}
.x58_c01114{left:607.863558px;}
.x75_c01114{left:609.445500px;}
.x85_c01114{left:611.275500px;}
.xaa_c01114{left:612.358500px;}
.x5f_c01114{left:619.396859px;}
.xa_c01114{left:621.540000px;}
.x9f_c01114{left:623.160000px;}
.xc6_c01114{left:624.907500px;}
.x1a_c01114{left:626.497500px;}
.x54_c01114{left:630.199217px;}
.x76_c01114{left:632.397000px;}
.xdb_c01114{left:636.390000px;}
.x59_c01114{left:642.694814px;}
.xd2_c01114{left:649.300500px;}
.x60_c01114{left:652.608045px;}
.x69_c01114{left:653.670000px;}
.x86_c01114{left:654.745500px;}
.xb_c01114{left:656.370000px;}
.x2d_c01114{left:662.692500px;}
.x77_c01114{left:664.809000px;}
.xb9_c01114{left:667.296000px;}
.x37_c01114{left:673.209690px;}
.x3f_c01114{left:675.093845px;}
.x81_c01114{left:676.615500px;}
.xc_c01114{left:677.970000px;}
.xb4_c01114{left:679.858500px;}
.x2e_c01114{left:683.829000px;}
.x4d_c01114{left:685.885574px;}
.x61_c01114{left:686.899326px;}
.x93_c01114{left:688.500000px;}
.xab_c01114{left:691.468500px;}
.x1b_c01114{left:695.601000px;}
.xb5_c01114{left:702.268500px;}
.xd3_c01114{left:703.843500px;}
.x5a_c01114{left:708.560690px;}
.x6e_c01114{left:710.910000px;}
.xa0_c01114{left:712.530000px;}
.xc7_c01114{left:714.003000px;}
.x46_c01114{left:718.292457px;}
.x40_c01114{left:719.660046px;}
.x1c_c01114{left:728.022000px;}
.xd4_c01114{left:737.308500px;}
.x38_c01114{left:740.164892px;}
.x62_c01114{left:741.712268px;}
.x6a_c01114{left:742.770000px;}
.xc8_c01114{left:746.044500px;}
.x5b_c01114{left:753.398810px;}
.x87_c01114{left:755.995500px;}
.x2f_c01114{left:762.345000px;}
.x94_c01114{left:768.690000px;}
.x78_c01114{left:770.415000px;}
.x41_c01114{left:775.550058px;}
.x88_c01114{left:777.325500px;}
.xa1_c01114{left:779.760000px;}
.x39_c01114{left:786.356729px;}
.xc9_c01114{left:792.199500px;}
.x30_c01114{left:795.030000px;}
.x55_c01114{left:796.525190px;}
.x79_c01114{left:799.827000px;}
.x1d_c01114{left:806.046000px;}
.x47_c01114{left:807.380670px;}
.x6f_c01114{left:808.920000px;}
.x89_c01114{left:809.995500px;}
.x95_c01114{left:811.080000px;}
.xac_c01114{left:814.588500px;}
.xa5_c01114{left:823.563000px;}
.xca_c01114{left:825.532500px;}
.x82_c01114{left:832.945500px;}
.xd_c01114{left:834.840000px;}
.x1e_c01114{left:840.069000px;}
.x70_c01114{left:843.750000px;}
.xad_c01114{left:846.718500px;}
.x96_c01114{left:855.360000px;}
.x8a_c01114{left:857.250000px;}
.x4e_c01114{left:908.930618px;}
.xcb_c01114{left:915.945000px;}
.x63_c01114{left:917.759024px;}
@media print{
.v0_c01114{vertical-align:0.000000pt;}
.ls0_c01114{letter-spacing:0.000000pt;}
.ws0_c01114{word-spacing:0.000000pt;}
.fse_c01114{font-size:16.000000pt;}
.fsb_c01114{font-size:21.333333pt;}
.fs8_c01114{font-size:48.000000pt;}
.fs5_c01114{font-size:58.669043pt;}
.fs0_c01114{font-size:64.000000pt;}
.fs1_c01114{font-size:64.001152pt;}
.fs6_c01114{font-size:64.002592pt;}
.fsa_c01114{font-size:69.333333pt;}
.fs7_c01114{font-size:69.336141pt;}
.fs9_c01114{font-size:74.666667pt;}
.fs3_c01114{font-size:74.668011pt;}
.fs4_c01114{font-size:74.669691pt;}
.fsf_c01114{font-size:80.000000pt;}
.fs2_c01114{font-size:80.001440pt;}
.fsc_c01114{font-size:80.004840pt;}
.fsd_c01114{font-size:85.334016pt;}
.y0_c01114{bottom:0.000000pt;}
.ycf_c01114{bottom:65.282667pt;}
.yd0_c01114{bottom:65.980000pt;}
.yd1_c01114{bottom:66.809333pt;}
.yd2_c01114{bottom:67.750667pt;}
.yd3_c01114{bottom:68.108000pt;}
.yd4_c01114{bottom:69.052000pt;}
.yd5_c01114{bottom:69.404000pt;}
.yce_c01114{bottom:98.140000pt;}
.ycd_c01114{bottom:126.932000pt;}
.ycc_c01114{bottom:142.308603pt;}
.ycb_c01114{bottom:142.953659pt;}
.yca_c01114{bottom:143.072645pt;}
.yc9_c01114{bottom:143.266576pt;}
.yc8_c01114{bottom:143.543104pt;}
.yc7_c01114{bottom:143.624667pt;}
.yc6_c01114{bottom:144.016395pt;}
.yc5_c01114{bottom:144.097947pt;}
.yc4_c01114{bottom:144.370725pt;}
.yc3_c01114{bottom:144.492555pt;}
.yc2_c01114{bottom:144.808437pt;}
.yc1_c01114{bottom:144.960000pt;}
.yc0_c01114{bottom:173.573364pt;}
.ybf_c01114{bottom:174.457397pt;}
.ybe_c01114{bottom:174.783320pt;}
.ybd_c01114{bottom:175.234613pt;}
.ybc_c01114{bottom:175.547908pt;}
.ybb_c01114{bottom:175.874901pt;}
.yba_c01114{bottom:176.419064pt;}
.yb9_c01114{bottom:176.743535pt;}
.yb8_c01114{bottom:177.060349pt;}
.yb7_c01114{bottom:177.290909pt;}
.yb6_c01114{bottom:178.037399pt;}
.yb5_c01114{bottom:178.473028pt;}
.yb4_c01114{bottom:178.795093pt;}
.yb3_c01114{bottom:179.761333pt;}
.yb2_c01114{bottom:213.961333pt;}
.yb1_c01114{bottom:240.405333pt;}
.yac_c01114{bottom:271.441333pt;}
.yad_c01114{bottom:271.862667pt;}
.yae_c01114{bottom:272.392000pt;}
.yaf_c01114{bottom:272.804000pt;}
.yb0_c01114{bottom:274.094667pt;}
.yab_c01114{bottom:301.746667pt;}
.yaa_c01114{bottom:333.432000pt;}
.y9e_c01114{bottom:365.041333pt;}
.y9f_c01114{bottom:365.280000pt;}
.ya0_c01114{bottom:365.545333pt;}
.ya1_c01114{bottom:366.386667pt;}
.ya2_c01114{bottom:367.084000pt;}
.ya3_c01114{bottom:367.241333pt;}
.ya4_c01114{bottom:367.480000pt;}
.ya5_c01114{bottom:367.950667pt;}
.ya6_c01114{bottom:368.186667pt;}
.ya7_c01114{bottom:368.509333pt;}
.ya8_c01114{bottom:368.900000pt;}
.ya9_c01114{bottom:369.690667pt;}
.y9d_c01114{bottom:396.000000pt;}
.y9c_c01114{bottom:428.477333pt;}
.y1_c01114{bottom:460.482667pt;}
.y9b_c01114{bottom:490.800000pt;}
.y9a_c01114{bottom:492.664000pt;}
.y99_c01114{bottom:523.680000pt;}
.y8c_c01114{bottom:555.600000pt;}
.y8d_c01114{bottom:555.797333pt;}
.y8e_c01114{bottom:556.096000pt;}
.y8f_c01114{bottom:556.286667pt;}
.y90_c01114{bottom:556.729333pt;}
.y91_c01114{bottom:557.073333pt;}
.y92_c01114{bottom:557.170667pt;}
.y93_c01114{bottom:557.562667pt;}
.y94_c01114{bottom:557.665333pt;}
.y95_c01114{bottom:557.809333pt;}
.y96_c01114{bottom:558.160000pt;}
.y97_c01114{bottom:558.278667pt;}
.y98_c01114{bottom:558.409333pt;}
.y8b_c01114{bottom:586.080000pt;}
.y8a_c01114{bottom:619.338667pt;}
.y7f_c01114{bottom:649.687752pt;}
.y80_c01114{bottom:649.688235pt;}
.y81_c01114{bottom:649.688889pt;}
.y86_c01114{bottom:649.689036pt;}
.y89_c01114{bottom:649.689148pt;}
.y87_c01114{bottom:649.689157pt;}
.y82_c01114{bottom:649.689173pt;}
.y84_c01114{bottom:649.689537pt;}
.y85_c01114{bottom:649.689552pt;}
.y88_c01114{bottom:649.689640pt;}
.y83_c01114{bottom:649.689828pt;}
.y7d_c01114{bottom:680.387457pt;}
.y7c_c01114{bottom:680.387816pt;}
.y7b_c01114{bottom:680.388015pt;}
.y79_c01114{bottom:680.388039pt;}
.y7e_c01114{bottom:680.388076pt;}
.y7a_c01114{bottom:680.388373pt;}
.y78_c01114{bottom:680.388531pt;}
.y73_c01114{bottom:680.388695pt;}
.y72_c01114{bottom:680.388745pt;}
.y77_c01114{bottom:680.388969pt;}
.y70_c01114{bottom:680.389036pt;}
.y76_c01114{bottom:680.389059pt;}
.y71_c01114{bottom:680.389291pt;}
.y74_c01114{bottom:680.389349pt;}
.y75_c01114{bottom:680.389684pt;}
.y65_c01114{bottom:711.352675pt;}
.y66_c01114{bottom:711.798035pt;}
.y67_c01114{bottom:712.280216pt;}
.y68_c01114{bottom:712.624821pt;}
.y69_c01114{bottom:712.823381pt;}
.y6a_c01114{bottom:713.025060pt;}
.y6b_c01114{bottom:713.315780pt;}
.y6c_c01114{bottom:713.470420pt;}
.y6d_c01114{bottom:713.762661pt;}
.y6e_c01114{bottom:713.961353pt;}
.y6f_c01114{bottom:714.103751pt;}
.y5d_c01114{bottom:745.135488pt;}
.y64_c01114{bottom:745.135528pt;}
.y61_c01114{bottom:745.135627pt;}
.y5e_c01114{bottom:745.135636pt;}
.y58_c01114{bottom:745.135637pt;}
.y62_c01114{bottom:745.135695pt;}
.y5c_c01114{bottom:745.135725pt;}
.y60_c01114{bottom:745.135905pt;}
.y5f_c01114{bottom:745.135944pt;}
.y63_c01114{bottom:745.136044pt;}
.y5b_c01114{bottom:745.136084pt;}
.y59_c01114{bottom:745.136173pt;}
.y5a_c01114{bottom:745.136508pt;}
.y4b_c01114{bottom:774.954384pt;}
.y4c_c01114{bottom:775.071537pt;}
.y4d_c01114{bottom:775.231873pt;}
.y4e_c01114{bottom:775.390928pt;}
.y4f_c01114{bottom:775.507901pt;}
.y50_c01114{bottom:775.745313pt;}
.y51_c01114{bottom:775.898195pt;}
.y52_c01114{bottom:776.057261pt;}
.y53_c01114{bottom:776.488435pt;}
.y54_c01114{bottom:776.598192pt;}
.y55_c01114{bottom:776.807715pt;}
.y56_c01114{bottom:777.126132pt;}
.y57_c01114{bottom:777.599995pt;}
.y3f_c01114{bottom:807.116952pt;}
.y40_c01114{bottom:807.362407pt;}
.y41_c01114{bottom:807.458005pt;}
.y42_c01114{bottom:807.604228pt;}
.y43_c01114{bottom:807.896589pt;}
.y44_c01114{bottom:808.051277pt;}
.y45_c01114{bottom:808.244215pt;}
.y46_c01114{bottom:808.346601pt;}
.y47_c01114{bottom:808.692741pt;}
.y48_c01114{bottom:809.378784pt;}
.y49_c01114{bottom:809.574936pt;}
.y4a_c01114{bottom:809.970283pt;}
.y33_c01114{bottom:838.078187pt;}
.y34_c01114{bottom:838.250061pt;}
.y35_c01114{bottom:838.431591pt;}
.y36_c01114{bottom:839.016563pt;}
.y37_c01114{bottom:839.197948pt;}
.y38_c01114{bottom:839.436700pt;}
.y39_c01114{bottom:840.141587pt;}
.y3a_c01114{bottom:840.317251pt;}
.y3b_c01114{bottom:840.798571pt;}
.y3c_c01114{bottom:841.036424pt;}
.y3d_c01114{bottom:841.334199pt;}
.y3e_c01114{bottom:841.674565pt;}
.y27_c01114{bottom:869.040187pt;}
.y28_c01114{bottom:869.518621pt;}
.y29_c01114{bottom:869.940793pt;}
.y2a_c01114{bottom:870.345413pt;}
.y2b_c01114{bottom:870.762463pt;}
.y2c_c01114{bottom:870.972307pt;}
.y2d_c01114{bottom:871.250807pt;}
.y2e_c01114{bottom:871.452865pt;}
.y2f_c01114{bottom:872.208709pt;}
.y30_c01114{bottom:872.625675pt;}
.y31_c01114{bottom:872.912536pt;}
.y32_c01114{bottom:873.245525pt;}
.y1c_c01114{bottom:900.241333pt;}
.y1d_c01114{bottom:900.416329pt;}
.y1e_c01114{bottom:900.576157pt;}
.y1f_c01114{bottom:901.200445pt;}
.y20_c01114{bottom:901.746961pt;}
.y21_c01114{bottom:902.438197pt;}
.y22_c01114{bottom:903.414553pt;}
.y23_c01114{bottom:904.047157pt;}
.y24_c01114{bottom:904.216249pt;}
.y25_c01114{bottom:904.844377pt;}
.y26_c01114{bottom:905.105857pt;}
.y14_c01114{bottom:962.161488pt;}
.y15_c01114{bottom:963.342499pt;}
.y16_c01114{bottom:963.712688pt;}
.y17_c01114{bottom:964.641320pt;}
.y18_c01114{bottom:964.875717pt;}
.y19_c01114{bottom:965.704688pt;}
.y1a_c01114{bottom:966.059141pt;}
.y1b_c01114{bottom:966.687888pt;}
.y11_c01114{bottom:995.073885pt;}
.y12_c01114{bottom:995.074357pt;}
.y13_c01114{bottom:995.074989pt;}
.y3_c01114{bottom:1028.400000pt;}
.y4_c01114{bottom:1028.653736pt;}
.y5_c01114{bottom:1028.816128pt;}
.y6_c01114{bottom:1029.117376pt;}
.y7_c01114{bottom:1029.356168pt;}
.y8_c01114{bottom:1029.533376pt;}
.y9_c01114{bottom:1029.877600pt;}
.ya_c01114{bottom:1030.411720pt;}
.yb_c01114{bottom:1030.539984pt;}
.yc_c01114{bottom:1030.882744pt;}
.yd_c01114{bottom:1031.251296pt;}
.ye_c01114{bottom:1031.424208pt;}
.yf_c01114{bottom:1031.840336pt;}
.y10_c01114{bottom:1032.021792pt;}
.y2_c01114{bottom:1076.264000pt;}
.h10_c01114{height:16.000000pt;}
.hd_c01114{height:21.333333pt;}
.ha_c01114{height:48.000000pt;}
.h7_c01114{height:58.669043pt;}
.h2_c01114{height:64.000000pt;}
.h3_c01114{height:64.001152pt;}
.h8_c01114{height:64.002592pt;}
.hc_c01114{height:69.333333pt;}
.h9_c01114{height:69.336141pt;}
.hb_c01114{height:74.666667pt;}
.h5_c01114{height:74.668011pt;}
.h6_c01114{height:74.669691pt;}
.h11_c01114{height:80.000000pt;}
.h4_c01114{height:80.001440pt;}
.he_c01114{height:80.004840pt;}
.hf_c01114{height:85.334016pt;}
.h0_c01114{height:1107.840000pt;}
.h1_c01114{height:1108.000000pt;}
.w0_c01114{width:824.400000pt;}
.w1_c01114{width:824.666667pt;}
.x0_c01114{left:0.000000pt;}
.x1_c01114{left:137.040000pt;}
.x11_c01114{left:143.096000pt;}
.x1f_c01114{left:144.721341pt;}
.x31_c01114{left:145.749799pt;}
.x3a_c01114{left:146.695177pt;}
.x4f_c01114{left:147.841019pt;}
.x2_c01114{left:149.520000pt;}
.x8b_c01114{left:150.720000pt;}
.xae_c01114{left:151.918667pt;}
.xcc_c01114{left:153.800000pt;}
.xd6_c01114{left:156.480000pt;}
.x29_c01114{left:166.190667pt;}
.x83_c01114{left:169.196000pt;}
.xba_c01114{left:172.320000pt;}
.x3b_c01114{left:175.274612pt;}
.x65_c01114{left:177.600000pt;}
.x3_c01114{left:179.280000pt;}
.x97_c01114{left:180.720000pt;}
.x12_c01114{left:185.385333pt;}
.x71_c01114{left:188.465333pt;}
.x7a_c01114{left:189.356000pt;}
.xbb_c01114{left:190.800000pt;}
.xcd_c01114{left:191.690667pt;}
.x42_c01114{left:195.888915pt;}
.x66_c01114{left:197.040000pt;}
.xd5_c01114{left:199.440000pt;}
.x20_c01114{left:202.802096pt;}
.x3c_c01114{left:205.519428pt;}
.x98_c01114{left:210.720000pt;}
.x13_c01114{left:212.450667pt;}
.x32_c01114{left:214.169701pt;}
.x43_c01114{left:215.104277pt;}
.x48_c01114{left:216.046365pt;}
.x5c_c01114{left:217.441331pt;}
.xb6_c01114{left:221.112000pt;}
.x8c_c01114{left:228.720000pt;}
.x50_c01114{left:235.204087pt;}
.x56_c01114{left:236.710897pt;}
.x99_c01114{left:238.800000pt;}
.xa6_c01114{left:239.758667pt;}
.x22_c01114{left:242.795253pt;}
.x44_c01114{left:244.389333pt;}
.x4_c01114{left:247.920000pt;}
.x21_c01114{left:252.242539pt;}
.x49_c01114{left:255.646808pt;}
.x8d_c01114{left:257.760000pt;}
.xaf_c01114{left:258.718667pt;}
.x14_c01114{left:262.658667pt;}
.x5_c01114{left:266.880000pt;}
.x9a_c01114{left:267.840000pt;}
.xce_c01114{left:270.661333pt;}
.x23_c01114{left:273.603475pt;}
.x84_c01114{left:275.276000pt;}
.x7b_c01114{left:277.676000pt;}
.xdc_c01114{left:281.442667pt;}
.x4a_c01114{left:284.941461pt;}
.x72_c01114{left:286.388000pt;}
.xb0_c01114{left:287.518667pt;}
.xbc_c01114{left:289.440000pt;}
.xd7_c01114{left:291.120000pt;}
.x67_c01114{left:295.200000pt;}
.x6_c01114{left:297.840000pt;}
.xcf_c01114{left:301.118667pt;}
.x15_c01114{left:302.457333pt;}
.x51_c01114{left:303.606964pt;}
.x6b_c01114{left:305.040000pt;}
.x9b_c01114{left:307.200000pt;}
.xb7_c01114{left:309.440000pt;}
.x5d_c01114{left:314.405179pt;}
.x7c_c01114{left:316.556000pt;}
.xa2_c01114{left:319.058667pt;}
.xbd_c01114{left:320.160000pt;}
.x16_c01114{left:331.992000pt;}
.x2a_c01114{left:333.482667pt;}
.x7_c01114{left:336.000000pt;}
.xa7_c01114{left:337.678667pt;}
.xc2_c01114{left:339.470667pt;}
.x4b_c01114{left:344.212125pt;}
.xb1_c01114{left:346.798667pt;}
.x24_c01114{left:351.039357pt;}
.x7d_c01114{left:354.476000pt;}
.xa8_c01114{left:358.798667pt;}
.xdd_c01114{left:359.908000pt;}
.x64_c01114{left:362.886712pt;}
.x6c_c01114{left:364.800000pt;}
.x8e_c01114{left:365.760000pt;}
.xc3_c01114{left:368.749333pt;}
.x25_c01114{left:370.549320pt;}
.x3d_c01114{left:373.054619pt;}
.x73_c01114{left:374.945333pt;}
.xb8_c01114{left:378.072000pt;}
.xe_c01114{left:382.800000pt;}
.x5e_c01114{left:384.008152pt;}
.x17_c01114{left:389.362667pt;}
.x33_c01114{left:391.784893pt;}
.x45_c01114{left:392.954685pt;}
.x8f_c01114{left:395.520000pt;}
.xb2_c01114{left:396.718667pt;}
.xf_c01114{left:401.760000pt;}
.x7e_c01114{left:405.116000pt;}
.xa3_c01114{left:406.148000pt;}
.xbe_c01114{left:407.760000pt;}
.x2b_c01114{left:410.286667pt;}
.x8_c01114{left:415.680000pt;}
.xc1_c01114{left:417.120000pt;}
.x34_c01114{left:421.768100pt;}
.x9c_c01114{left:426.480000pt;}
.xd8_c01114{left:428.160000pt;}
.x52_c01114{left:432.012035pt;}
.x7f_c01114{left:434.876000pt;}
.xb3_c01114{left:436.078667pt;}
.x26_c01114{left:439.597499pt;}
.x10_c01114{left:441.360000pt;}
.x68_c01114{left:442.800000pt;}
.x74_c01114{left:443.808000pt;}
.x90_c01114{left:445.200000pt;}
.x9_c01114{left:455.520000pt;}
.xd9_c01114{left:457.440000pt;}
.x35_c01114{left:461.602153pt;}
.x6d_c01114{left:463.200000pt;}
.x91_c01114{left:465.840000pt;}
.x27_c01114{left:469.116435pt;}
.xbf_c01114{left:475.680000pt;}
.x18_c01114{left:478.382667pt;}
.x53_c01114{left:480.494625pt;}
.x57_c01114{left:482.241075pt;}
.x9d_c01114{left:484.560000pt;}
.xd0_c01114{left:487.633333pt;}
.x36_c01114{left:490.424003pt;}
.x80_c01114{left:493.436000pt;}
.xa9_c01114{left:494.398667pt;}
.xc4_c01114{left:497.174667pt;}
.x19_c01114{left:499.760000pt;}
.xc0_c01114{left:505.200000pt;}
.xd1_c01114{left:508.024000pt;}
.x92_c01114{left:512.640000pt;}
.xa4_c01114{left:514.412000pt;}
.x2c_c01114{left:518.770667pt;}
.x3e_c01114{left:519.934591pt;}
.x28_c01114{left:521.461213pt;}
.x9e_c01114{left:524.160000pt;}
.xc5_c01114{left:525.976000pt;}
.x4c_c01114{left:529.752465pt;}
.xda_c01114{left:536.640000pt;}
.x58_c01114{left:540.323163pt;}
.x75_c01114{left:541.729333pt;}
.x85_c01114{left:543.356000pt;}
.xaa_c01114{left:544.318667pt;}
.x5f_c01114{left:550.574985pt;}
.xa_c01114{left:552.480000pt;}
.x9f_c01114{left:553.920000pt;}
.xc6_c01114{left:555.473333pt;}
.x1a_c01114{left:556.886667pt;}
.x54_c01114{left:560.177081pt;}
.x76_c01114{left:562.130667pt;}
.xdb_c01114{left:565.680000pt;}
.x59_c01114{left:571.284279pt;}
.xd2_c01114{left:577.156000pt;}
.x60_c01114{left:580.096040pt;}
.x69_c01114{left:581.040000pt;}
.x86_c01114{left:581.996000pt;}
.xb_c01114{left:583.440000pt;}
.x2d_c01114{left:589.060000pt;}
.x77_c01114{left:590.941333pt;}
.xb9_c01114{left:593.152000pt;}
.x37_c01114{left:598.408613pt;}
.x3f_c01114{left:600.083417pt;}
.x81_c01114{left:601.436000pt;}
.xc_c01114{left:602.640000pt;}
.xb4_c01114{left:604.318667pt;}
.x2e_c01114{left:607.848000pt;}
.x4d_c01114{left:609.676065pt;}
.x61_c01114{left:610.577179pt;}
.x93_c01114{left:612.000000pt;}
.xab_c01114{left:614.638667pt;}
.x1b_c01114{left:618.312000pt;}
.xb5_c01114{left:624.238667pt;}
.xd3_c01114{left:625.638667pt;}
.x5a_c01114{left:629.831724pt;}
.x6e_c01114{left:631.920000pt;}
.xa0_c01114{left:633.360000pt;}
.xc7_c01114{left:634.669333pt;}
.x46_c01114{left:638.482184pt;}
.x40_c01114{left:639.697819pt;}
.x1c_c01114{left:647.130667pt;}
.xd4_c01114{left:655.385333pt;}
.x38_c01114{left:657.924348pt;}
.x62_c01114{left:659.299793pt;}
.x6a_c01114{left:660.240000pt;}
.xc8_c01114{left:663.150667pt;}
.x5b_c01114{left:669.687831pt;}
.x87_c01114{left:671.996000pt;}
.x2f_c01114{left:677.640000pt;}
.x94_c01114{left:683.280000pt;}
.x78_c01114{left:684.813333pt;}
.x41_c01114{left:689.377829pt;}
.x88_c01114{left:690.956000pt;}
.xa1_c01114{left:693.120000pt;}
.x39_c01114{left:698.983759pt;}
.xc9_c01114{left:704.177333pt;}
.x30_c01114{left:706.693333pt;}
.x55_c01114{left:708.022391pt;}
.x79_c01114{left:710.957333pt;}
.x1d_c01114{left:716.485333pt;}
.x47_c01114{left:717.671707pt;}
.x6f_c01114{left:719.040000pt;}
.x89_c01114{left:719.996000pt;}
.x95_c01114{left:720.960000pt;}
.xac_c01114{left:724.078667pt;}
.xa5_c01114{left:732.056000pt;}
.xca_c01114{left:733.806667pt;}
.x82_c01114{left:740.396000pt;}
.xd_c01114{left:742.080000pt;}
.x1e_c01114{left:746.728000pt;}
.x70_c01114{left:750.000000pt;}
.xad_c01114{left:752.638667pt;}
.x96_c01114{left:760.320000pt;}
.x8a_c01114{left:762.000000pt;}
.x4e_c01114{left:807.938327pt;}
.xcb_c01114{left:814.173333pt;}
.x63_c01114{left:815.785799pt;}
}





/* 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_c01115 {
    display:none;
  }
  .loading-indicator_c01115.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01115 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_c01115 { 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_c01115" -> "#page-container .classname_c01115")
 */
.pf_c01115 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01115 { /* 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_c01115.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01115 { /* 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_c01115 { /* 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_c01115 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01115 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01115 {overflow:visible;}
  }
}
.c_c01115 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01115 { /* 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_c01115:after { /* webkit #35443 */
  content: '';
}
.t_c01115:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01115 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 */
}
.__c01115 { /* 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_c01115 { /* info for Javascript */
  display:none;
}
.l_c01115 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01115 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01115 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01115: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_c01115 {
    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_c01115.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01115.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_c01115 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01115{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01115;src:url('chunks/assets/font_c605e72f209fc835e906f064.woff2')format("woff");}.ff1_c01115{font-family:ff1_c01115;line-height:1.000000;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;}
.m54_c01115{transform:matrix(0.013520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.013520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.013520,0.000000,0.000000,0.250000,0,0);}
.m21_c01115{transform:matrix(0.023169,0.000718,-0.007746,0.249880,0,0);-ms-transform:matrix(0.023169,0.000718,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.023169,0.000718,-0.007746,0.249880,0,0);}
.m57_c01115{transform:matrix(0.065600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065600,0.000000,0.000000,0.250000,0,0);}
.m55_c01115{transform:matrix(0.119175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119175,0.000000,0.000000,0.250000,0,0);}
.m56_c01115{transform:matrix(0.122610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122610,0.000000,0.000000,0.250000,0,0);}
.m10_c01115{transform:matrix(0.214905,0.003868,-0.004499,0.249960,0,0);-ms-transform:matrix(0.214905,0.003868,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.214905,0.003868,-0.004499,0.249960,0,0);}
.m20_c01115{transform:matrix(0.216300,0.003893,-0.004499,0.249960,0,0);-ms-transform:matrix(0.216300,0.003893,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.216300,0.003893,-0.004499,0.249960,0,0);}
.md_c01115{transform:matrix(0.217830,0.003921,-0.004499,0.249960,0,0);-ms-transform:matrix(0.217830,0.003921,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.217830,0.003921,-0.004499,0.249960,0,0);}
.m16_c01115{transform:matrix(0.221014,0.003978,-0.004499,0.249960,0,0);-ms-transform:matrix(0.221014,0.003978,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.221014,0.003978,-0.004499,0.249960,0,0);}
.m27_c01115{transform:matrix(0.221773,0.006875,-0.007746,0.249880,0,0);-ms-transform:matrix(0.221773,0.006875,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.221773,0.006875,-0.007746,0.249880,0,0);}
.m26_c01115{transform:matrix(0.221798,0.006876,-0.007746,0.249880,0,0);-ms-transform:matrix(0.221798,0.006876,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.221798,0.006876,-0.007746,0.249880,0,0);}
.m7_c01115{transform:matrix(0.223230,0.004241,-0.004749,0.249955,0,0);-ms-transform:matrix(0.223230,0.004241,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.223230,0.004241,-0.004749,0.249955,0,0);}
.m36_c01115{transform:matrix(0.225627,0.006994,-0.007746,0.249880,0,0);-ms-transform:matrix(0.225627,0.006994,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.225627,0.006994,-0.007746,0.249880,0,0);}
.mc_c01115{transform:matrix(0.228553,0.004114,-0.004499,0.249960,0,0);-ms-transform:matrix(0.228553,0.004114,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.228553,0.004114,-0.004499,0.249960,0,0);}
.m4_c01115{transform:matrix(0.235597,0.004476,-0.004749,0.249955,0,0);-ms-transform:matrix(0.235597,0.004476,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.235597,0.004476,-0.004749,0.249955,0,0);}
.m14_c01115{transform:matrix(0.236512,0.004257,-0.004499,0.249960,0,0);-ms-transform:matrix(0.236512,0.004257,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.236512,0.004257,-0.004499,0.249960,0,0);}
.m1b_c01115{transform:matrix(0.236522,0.004257,-0.004499,0.249960,0,0);-ms-transform:matrix(0.236522,0.004257,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.236522,0.004257,-0.004499,0.249960,0,0);}
.m3b_c01115{transform:matrix(0.238242,0.003335,-0.003500,0.249976,0,0);-ms-transform:matrix(0.238242,0.003335,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.238242,0.003335,-0.003500,0.249976,0,0);}
.m33_c01115{transform:matrix(0.241409,0.007484,-0.007746,0.249880,0,0);-ms-transform:matrix(0.241409,0.007484,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.241409,0.007484,-0.007746,0.249880,0,0);}
.m4b_c01115{transform:matrix(0.242556,0.003396,-0.003500,0.249976,0,0);-ms-transform:matrix(0.242556,0.003396,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.242556,0.003396,-0.003500,0.249976,0,0);}
.m13_c01115{transform:matrix(0.242561,0.004366,-0.004499,0.249960,0,0);-ms-transform:matrix(0.242561,0.004366,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.242561,0.004366,-0.004499,0.249960,0,0);}
.m18_c01115{transform:matrix(0.243691,0.004386,-0.004499,0.249960,0,0);-ms-transform:matrix(0.243691,0.004386,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.243691,0.004386,-0.004499,0.249960,0,0);}
.m25_c01115{transform:matrix(0.245037,0.007596,-0.007746,0.249880,0,0);-ms-transform:matrix(0.245037,0.007596,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.245037,0.007596,-0.007746,0.249880,0,0);}
.m12_c01115{transform:matrix(0.245760,0.004424,-0.004499,0.249960,0,0);-ms-transform:matrix(0.245760,0.004424,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.245760,0.004424,-0.004499,0.249960,0,0);}
.m5_c01115{transform:matrix(0.245811,0.004670,-0.004749,0.249955,0,0);-ms-transform:matrix(0.245811,0.004670,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.245811,0.004670,-0.004749,0.249955,0,0);}
.m31_c01115{transform:matrix(0.248756,0.007711,-0.007746,0.249880,0,0);-ms-transform:matrix(0.248756,0.007711,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.248756,0.007711,-0.007746,0.249880,0,0);}
.m23_c01115{transform:matrix(0.249230,0.007726,-0.007746,0.249880,0,0);-ms-transform:matrix(0.249230,0.007726,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.249230,0.007726,-0.007746,0.249880,0,0);}
.m17_c01115{transform:matrix(0.251619,0.004529,-0.004499,0.249960,0,0);-ms-transform:matrix(0.251619,0.004529,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.251619,0.004529,-0.004499,0.249960,0,0);}
.m29_c01115{transform:matrix(0.253218,0.007850,-0.007746,0.249880,0,0);-ms-transform:matrix(0.253218,0.007850,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.253218,0.007850,-0.007746,0.249880,0,0);}
.m2f_c01115{transform:matrix(0.258071,0.008000,-0.007746,0.249880,0,0);-ms-transform:matrix(0.258071,0.008000,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.258071,0.008000,-0.007746,0.249880,0,0);}
.m4e_c01115{transform:matrix(0.258480,0.003619,-0.003500,0.249976,0,0);-ms-transform:matrix(0.258480,0.003619,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.258480,0.003619,-0.003500,0.249976,0,0);}
.m42_c01115{transform:matrix(0.259890,0.003638,-0.003500,0.249976,0,0);-ms-transform:matrix(0.259890,0.003638,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.259890,0.003638,-0.003500,0.249976,0,0);}
.m6_c01115{transform:matrix(0.262618,0.004990,-0.004749,0.249955,0,0);-ms-transform:matrix(0.262618,0.004990,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.262618,0.004990,-0.004749,0.249955,0,0);}
.m38_c01115{transform:matrix(0.264633,0.008204,-0.007746,0.249880,0,0);-ms-transform:matrix(0.264633,0.008204,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.264633,0.008204,-0.007746,0.249880,0,0);}
.m30_c01115{transform:matrix(0.265492,0.008230,-0.007746,0.249880,0,0);-ms-transform:matrix(0.265492,0.008230,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.265492,0.008230,-0.007746,0.249880,0,0);}
.m2b_c01115{transform:matrix(0.265537,0.008232,-0.007746,0.249880,0,0);-ms-transform:matrix(0.265537,0.008232,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.265537,0.008232,-0.007746,0.249880,0,0);}
.m49_c01115{transform:matrix(0.265919,0.003723,-0.003500,0.249976,0,0);-ms-transform:matrix(0.265919,0.003723,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.265919,0.003723,-0.003500,0.249976,0,0);}
.m1d_c01115{transform:matrix(0.266107,0.004790,-0.004499,0.249960,0,0);-ms-transform:matrix(0.266107,0.004790,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.266107,0.004790,-0.004499,0.249960,0,0);}
.m3e_c01115{transform:matrix(0.267909,0.003751,-0.003500,0.249976,0,0);-ms-transform:matrix(0.267909,0.003751,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.267909,0.003751,-0.003500,0.249976,0,0);}
.m1a_c01115{transform:matrix(0.269046,0.004843,-0.004499,0.249960,0,0);-ms-transform:matrix(0.269046,0.004843,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.269046,0.004843,-0.004499,0.249960,0,0);}
.m19_c01115{transform:matrix(0.272106,0.004898,-0.004499,0.249960,0,0);-ms-transform:matrix(0.272106,0.004898,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.272106,0.004898,-0.004499,0.249960,0,0);}
.m2e_c01115{transform:matrix(0.279611,0.008668,-0.007746,0.249880,0,0);-ms-transform:matrix(0.279611,0.008668,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.279611,0.008668,-0.007746,0.249880,0,0);}
.m24_c01115{transform:matrix(0.281845,0.008737,-0.007746,0.249880,0,0);-ms-transform:matrix(0.281845,0.008737,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.281845,0.008737,-0.007746,0.249880,0,0);}
.m59_c01115{transform:matrix(0.282325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282325,0.000000,0.000000,0.250000,0,0);}
.m43_c01115{transform:matrix(0.282717,0.003958,-0.003500,0.249976,0,0);-ms-transform:matrix(0.282717,0.003958,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.282717,0.003958,-0.003500,0.249976,0,0);}
.m3c_c01115{transform:matrix(0.286577,0.004012,-0.003500,0.249976,0,0);-ms-transform:matrix(0.286577,0.004012,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.286577,0.004012,-0.003500,0.249976,0,0);}
.m32_c01115{transform:matrix(0.290485,0.009005,-0.007746,0.249880,0,0);-ms-transform:matrix(0.290485,0.009005,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.290485,0.009005,-0.007746,0.249880,0,0);}
.m3f_c01115{transform:matrix(0.291711,0.004084,-0.003500,0.249976,0,0);-ms-transform:matrix(0.291711,0.004084,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.291711,0.004084,-0.003500,0.249976,0,0);}
.m35_c01115{transform:matrix(0.291725,0.009043,-0.007746,0.249880,0,0);-ms-transform:matrix(0.291725,0.009043,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.291725,0.009043,-0.007746,0.249880,0,0);}
.m2d_c01115{transform:matrix(0.292365,0.009063,-0.007746,0.249880,0,0);-ms-transform:matrix(0.292365,0.009063,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.292365,0.009063,-0.007746,0.249880,0,0);}
.mb_c01115{transform:matrix(0.295262,0.005315,-0.004499,0.249960,0,0);-ms-transform:matrix(0.295262,0.005315,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.295262,0.005315,-0.004499,0.249960,0,0);}
.m2a_c01115{transform:matrix(0.295428,0.009158,-0.007746,0.249880,0,0);-ms-transform:matrix(0.295428,0.009158,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.295428,0.009158,-0.007746,0.249880,0,0);}
.m8_c01115{transform:matrix(0.295692,0.005618,-0.004749,0.249955,0,0);-ms-transform:matrix(0.295692,0.005618,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.295692,0.005618,-0.004749,0.249955,0,0);}
.m50_c01115{transform:matrix(0.297911,0.004171,-0.003500,0.249976,0,0);-ms-transform:matrix(0.297911,0.004171,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.297911,0.004171,-0.003500,0.249976,0,0);}
.m1f_c01115{transform:matrix(0.298457,0.005372,-0.004499,0.249960,0,0);-ms-transform:matrix(0.298457,0.005372,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.298457,0.005372,-0.004499,0.249960,0,0);}
.m40_c01115{transform:matrix(0.300576,0.004208,-0.003500,0.249976,0,0);-ms-transform:matrix(0.300576,0.004208,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.300576,0.004208,-0.003500,0.249976,0,0);}
.m1c_c01115{transform:matrix(0.302336,0.005442,-0.004499,0.249960,0,0);-ms-transform:matrix(0.302336,0.005442,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.302336,0.005442,-0.004499,0.249960,0,0);}
.m45_c01115{transform:matrix(0.303390,0.004247,-0.003500,0.249976,0,0);-ms-transform:matrix(0.303390,0.004247,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.303390,0.004247,-0.003500,0.249976,0,0);}
.m15_c01115{transform:matrix(0.305481,0.005499,-0.004499,0.249960,0,0);-ms-transform:matrix(0.305481,0.005499,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.305481,0.005499,-0.004499,0.249960,0,0);}
.m4d_c01115{transform:matrix(0.306465,0.004291,-0.003500,0.249976,0,0);-ms-transform:matrix(0.306465,0.004291,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.306465,0.004291,-0.003500,0.249976,0,0);}
.m4c_c01115{transform:matrix(0.314039,0.004397,-0.003500,0.249976,0,0);-ms-transform:matrix(0.314039,0.004397,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.314039,0.004397,-0.003500,0.249976,0,0);}
.m22_c01115{transform:matrix(0.315873,0.009792,-0.007746,0.249880,0,0);-ms-transform:matrix(0.315873,0.009792,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.315873,0.009792,-0.007746,0.249880,0,0);}
.m41_c01115{transform:matrix(0.318189,0.004455,-0.003500,0.249976,0,0);-ms-transform:matrix(0.318189,0.004455,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.318189,0.004455,-0.003500,0.249976,0,0);}
.me_c01115{transform:matrix(0.320468,0.005768,-0.004499,0.249960,0,0);-ms-transform:matrix(0.320468,0.005768,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.320468,0.005768,-0.004499,0.249960,0,0);}
.m9_c01115{transform:matrix(0.324497,0.005841,-0.004499,0.249960,0,0);-ms-transform:matrix(0.324497,0.005841,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.324497,0.005841,-0.004499,0.249960,0,0);}
.m44_c01115{transform:matrix(0.325208,0.004553,-0.003500,0.249976,0,0);-ms-transform:matrix(0.325208,0.004553,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.325208,0.004553,-0.003500,0.249976,0,0);}
.mf_c01115{transform:matrix(0.325352,0.005856,-0.004499,0.249960,0,0);-ms-transform:matrix(0.325352,0.005856,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.325352,0.005856,-0.004499,0.249960,0,0);}
.m3d_c01115{transform:matrix(0.326713,0.004574,-0.003500,0.249976,0,0);-ms-transform:matrix(0.326713,0.004574,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.326713,0.004574,-0.003500,0.249976,0,0);}
.m2_c01115{transform:matrix(0.366524,0.006964,-0.004749,0.249955,0,0);-ms-transform:matrix(0.366524,0.006964,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.366524,0.006964,-0.004749,0.249955,0,0);}
.m1e_c01115{transform:matrix(0.373475,0.006723,-0.004499,0.249960,0,0);-ms-transform:matrix(0.373475,0.006723,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.373475,0.006723,-0.004499,0.249960,0,0);}
.m52_c01115{transform:matrix(0.386290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386290,0.000000,0.000000,0.250000,0,0);}
.m0_c01115{transform:matrix(0.387545,0.007363,-0.004749,0.249955,0,0);-ms-transform:matrix(0.387545,0.007363,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.387545,0.007363,-0.004749,0.249955,0,0);}
.m39_c01115{transform:matrix(0.395376,0.005535,-0.003500,0.249976,0,0);-ms-transform:matrix(0.395376,0.005535,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.395376,0.005535,-0.003500,0.249976,0,0);}
.m34_c01115{transform:matrix(0.404746,0.012547,-0.007746,0.249880,0,0);-ms-transform:matrix(0.404746,0.012547,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.404746,0.012547,-0.007746,0.249880,0,0);}
.m47_c01115{transform:matrix(0.415724,0.005820,-0.003500,0.249976,0,0);-ms-transform:matrix(0.415724,0.005820,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.415724,0.005820,-0.003500,0.249976,0,0);}
.m2c_c01115{transform:matrix(0.425990,0.013206,-0.007746,0.249880,0,0);-ms-transform:matrix(0.425990,0.013206,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.425990,0.013206,-0.007746,0.249880,0,0);}
.m11_c01115{transform:matrix(0.428196,0.007708,-0.004499,0.249960,0,0);-ms-transform:matrix(0.428196,0.007708,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.428196,0.007708,-0.004499,0.249960,0,0);}
.m37_c01115{transform:matrix(0.447355,0.013868,-0.007746,0.249880,0,0);-ms-transform:matrix(0.447355,0.013868,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.447355,0.013868,-0.007746,0.249880,0,0);}
.m53_c01115{transform:matrix(0.455410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455410,0.000000,0.000000,0.250000,0,0);}
.m4f_c01115{transform:matrix(0.483623,0.006771,-0.003500,0.249976,0,0);-ms-transform:matrix(0.483623,0.006771,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.483623,0.006771,-0.003500,0.249976,0,0);}
.m46_c01115{transform:matrix(0.491937,0.006887,-0.003500,0.249976,0,0);-ms-transform:matrix(0.491937,0.006887,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.491937,0.006887,-0.003500,0.249976,0,0);}
.ma_c01115{transform:matrix(0.533934,0.009611,-0.004499,0.249960,0,0);-ms-transform:matrix(0.533934,0.009611,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.533934,0.009611,-0.004499,0.249960,0,0);}
.m58_c01115{transform:matrix(0.544060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544060,0.000000,0.000000,0.250000,0,0);}
.m1_c01115{transform:matrix(0.598362,0.011369,-0.004749,0.249955,0,0);-ms-transform:matrix(0.598362,0.011369,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.598362,0.011369,-0.004749,0.249955,0,0);}
.m28_c01115{transform:matrix(0.644355,0.019975,-0.007746,0.249880,0,0);-ms-transform:matrix(0.644355,0.019975,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.644355,0.019975,-0.007746,0.249880,0,0);}
.m51_c01115{transform:matrix(0.657320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.657320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.657320,0.000000,0.000000,0.250000,0,0);}
.m3_c01115{transform:matrix(0.658961,0.012520,-0.004749,0.249955,0,0);-ms-transform:matrix(0.658961,0.012520,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.658961,0.012520,-0.004749,0.249955,0,0);}
.m3a_c01115{transform:matrix(0.668160,0.009354,-0.003500,0.249976,0,0);-ms-transform:matrix(0.668160,0.009354,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.668160,0.009354,-0.003500,0.249976,0,0);}
.m48_c01115{transform:matrix(0.687228,0.009621,-0.003500,0.249976,0,0);-ms-transform:matrix(0.687228,0.009621,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.687228,0.009621,-0.003500,0.249976,0,0);}
.m4a_c01115{transform:matrix(0.869105,0.012167,-0.003500,0.249976,0,0);-ms-transform:matrix(0.869105,0.012167,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.869105,0.012167,-0.003500,0.249976,0,0);}
.v0_c01115{vertical-align:0.000000px;}
.ls0_c01115{letter-spacing:0.000000px;}
.sc__c01115{text-shadow:none;}
.sc0_c01115{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__c01115{-webkit-text-stroke:0px transparent;}
.sc0_c01115{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01115{word-spacing:0.000000px;}
.fc0_c01115{color:transparent;}
.fs5_c01115{font-size:18.000000px;}
.fs6_c01115{font-size:72.000000px;}
.fs3_c01115{font-size:72.007056px;}
.fs4_c01115{font-size:84.008232px;}
.fs1_c01115{font-size:84.013607px;}
.fs2_c01115{font-size:84.040352px;}
.fs0_c01115{font-size:90.016244px;}
.y0_c01115{bottom:0.000000px;}
.y53_c01115{bottom:99.360000px;}
.y52_c01115{bottom:101.790000px;}
.y59_c01115{bottom:121.230000px;}
.y58_c01115{bottom:132.030000px;}
.y54_c01115{bottom:148.500000px;}
.y57_c01115{bottom:151.740000px;}
.y56_c01115{bottom:161.460000px;}
.y55_c01115{bottom:169.830000px;}
.y51_c01115{bottom:822.151722px;}
.y50_c01115{bottom:823.694655px;}
.y4f_c01115{bottom:824.628651px;}
.y4e_c01115{bottom:825.240360px;}
.y4d_c01115{bottom:825.923049px;}
.y4c_c01115{bottom:826.791063px;}
.y4b_c01115{bottom:827.553111px;}
.y4a_c01115{bottom:828.248295px;}
.y49_c01115{bottom:828.853452px;}
.y48_c01115{bottom:829.319820px;}
.y47_c01115{bottom:830.692989px;}
.y46_c01115{bottom:857.242545px;}
.y45_c01115{bottom:857.718510px;}
.y44_c01115{bottom:858.755343px;}
.y43_c01115{bottom:859.223706px;}
.y42_c01115{bottom:860.316966px;}
.y41_c01115{bottom:860.781801px;}
.y40_c01115{bottom:861.556260px;}
.y3f_c01115{bottom:861.834153px;}
.y3e_c01115{bottom:862.152492px;}
.y3d_c01115{bottom:862.772412px;}
.y3c_c01115{bottom:863.696391px;}
.y3b_c01115{bottom:865.106352px;}
.y3a_c01115{bottom:866.122500px;}
.y39_c01115{bottom:888.442011px;}
.y38_c01115{bottom:889.855504px;}
.y37_c01115{bottom:891.203350px;}
.y36_c01115{bottom:892.272622px;}
.y35_c01115{bottom:894.605260px;}
.y34_c01115{bottom:896.039179px;}
.y33_c01115{bottom:897.397639px;}
.y32_c01115{bottom:901.394014px;}
.y31_c01115{bottom:904.443100px;}
.y30_c01115{bottom:907.338478px;}
.y2f_c01115{bottom:910.319452px;}
.y2e_c01115{bottom:926.238898px;}
.y2d_c01115{bottom:927.195124px;}
.y2c_c01115{bottom:928.115359px;}
.y2b_c01115{bottom:930.058408px;}
.y2a_c01115{bottom:931.145718px;}
.y29_c01115{bottom:932.573361px;}
.y28_c01115{bottom:933.118759px;}
.y27_c01115{bottom:935.592187px;}
.y26_c01115{bottom:940.336908px;}
.y25_c01115{bottom:941.630770px;}
.y24_c01115{bottom:944.435790px;}
.y22_c01115{bottom:945.549000px;}
.y23_c01115{bottom:945.758343px;}
.y21_c01115{bottom:963.179301px;}
.y20_c01115{bottom:963.802020px;}
.y1f_c01115{bottom:964.081764px;}
.y1e_c01115{bottom:965.624628px;}
.y1d_c01115{bottom:966.217230px;}
.y1c_c01115{bottom:966.918702px;}
.y1b_c01115{bottom:969.225042px;}
.y1a_c01115{bottom:969.798462px;}
.y19_c01115{bottom:971.221008px;}
.y18_c01115{bottom:971.967015px;}
.y17_c01115{bottom:972.988500px;}
.y16_c01115{bottom:974.214498px;}
.y15_c01115{bottom:997.307544px;}
.y14_c01115{bottom:998.087250px;}
.y13_c01115{bottom:999.280218px;}
.y12_c01115{bottom:1000.461441px;}
.y11_c01115{bottom:1001.628273px;}
.y10_c01115{bottom:1002.178317px;}
.yf_c01115{bottom:1002.921681px;}
.ye_c01115{bottom:1003.515600px;}
.yd_c01115{bottom:1004.534148px;}
.yc_c01115{bottom:1005.730464px;}
.yb_c01115{bottom:1007.047038px;}
.ya_c01115{bottom:1007.935500px;}
.y9_c01115{bottom:1033.500268px;}
.y8_c01115{bottom:1034.986087px;}
.y7_c01115{bottom:1036.156212px;}
.y6_c01115{bottom:1037.873765px;}
.y5_c01115{bottom:1040.131620px;}
.y4_c01115{bottom:1041.633941px;}
.y3_c01115{bottom:1042.058790px;}
.y2_c01115{bottom:1043.568777px;}
.y1_c01115{bottom:1044.369000px;}
.h7_c01115{height:18.000000px;}
.h8_c01115{height:72.000000px;}
.h5_c01115{height:72.007056px;}
.h6_c01115{height:84.008232px;}
.h3_c01115{height:84.013607px;}
.h4_c01115{height:84.040352px;}
.h2_c01115{height:90.016244px;}
.h0_c01115{height:1246.320000px;}
.h1_c01115{height:1246.500000px;}
.w1_c01115{width:912.750000px;}
.w0_c01115{width:912.870000px;}
.x0_c01115{left:0.000000px;}
.x3c_c01115{left:39.534015px;}
.x33_c01115{left:57.747000px;}
.x2a_c01115{left:58.923639px;}
.x22_c01115{left:75.912000px;}
.x16_c01115{left:77.114976px;}
.x21_c01115{left:82.665000px;}
.x1_c01115{left:119.158500px;}
.xa_c01115{left:130.350000px;}
.x3d_c01115{left:137.617515px;}
.x17_c01115{left:149.227272px;}
.x2_c01115{left:161.275500px;}
.x3e_c01115{left:170.929515px;}
.xb_c01115{left:179.709000px;}
.x18_c01115{left:209.310852px;}
.x3f_c01115{left:214.155015px;}
.x34_c01115{left:231.040500px;}
.x2b_c01115{left:237.004619px;}
.x3_c01115{left:240.748500px;}
.x23_c01115{left:250.797000px;}
.xc_c01115{left:252.852000px;}
.x4_c01115{left:263.109000px;}
.x35_c01115{left:297.039000px;}
.x40_c01115{left:318.243015px;}
.xd_c01115{left:319.314000px;}
.x2c_c01115{left:329.404899px;}
.x19_c01115{left:336.871647px;}
.x5_c01115{left:342.178500px;}
.x36_c01115{left:364.057500px;}
.x1a_c01115{left:370.562241px;}
.xe_c01115{left:375.900000px;}
.x41_c01115{left:380.244015px;}
.x37_c01115{left:383.907000px;}
.x24_c01115{left:403.852500px;}
.xf_c01115{left:408.895500px;}
.x42_c01115{left:429.007515px;}
.x38_c01115{left:439.225500px;}
.x10_c01115{left:450.193500px;}
.x6_c01115{left:461.013000px;}
.x39_c01115{left:472.428000px;}
.x11_c01115{left:480.751500px;}
.x25_c01115{left:483.640500px;}
.x2d_c01115{left:491.679855px;}
.x26_c01115{left:501.234000px;}
.x1b_c01115{left:506.194671px;}
.x2e_c01115{left:535.126158px;}
.x43_c01115{left:539.415015px;}
.x12_c01115{left:545.575500px;}
.x1c_c01115{left:547.499427px;}
.x7_c01115{left:551.410500px;}
.x1d_c01115{left:582.339048px;}
.x3a_c01115{left:583.972500px;}
.x2f_c01115{left:605.819787px;}
.x13_c01115{left:611.199000px;}
.x8_c01115{left:612.996000px;}
.x30_c01115{left:638.229788px;}
.x27_c01115{left:645.040500px;}
.x44_c01115{left:649.624515px;}
.x3b_c01115{left:658.032000px;}
.x1e_c01115{left:673.138695px;}
.x28_c01115{left:674.725500px;}
.x14_c01115{left:677.475000px;}
.x31_c01115{left:679.093277px;}
.x1f_c01115{left:689.596992px;}
.x9_c01115{left:691.197000px;}
.x29_c01115{left:705.571500px;}
.x15_c01115{left:720.792000px;}
.x32_c01115{left:721.929126px;}
.x20_c01115{left:726.193140px;}
.x48_c01115{left:904.500000px;}
.x45_c01115{left:905.850000px;}
.x47_c01115{left:909.360000px;}
.x46_c01115{left:910.980000px;}
@media print{
.v0_c01115{vertical-align:0.000000pt;}
.ls0_c01115{letter-spacing:0.000000pt;}
.ws0_c01115{word-spacing:0.000000pt;}
.fs5_c01115{font-size:16.000000pt;}
.fs6_c01115{font-size:64.000000pt;}
.fs3_c01115{font-size:64.006272pt;}
.fs4_c01115{font-size:74.673984pt;}
.fs1_c01115{font-size:74.678762pt;}
.fs2_c01115{font-size:74.702535pt;}
.fs0_c01115{font-size:80.014439pt;}
.y0_c01115{bottom:0.000000pt;}
.y53_c01115{bottom:88.320000pt;}
.y52_c01115{bottom:90.480000pt;}
.y59_c01115{bottom:107.760000pt;}
.y58_c01115{bottom:117.360000pt;}
.y54_c01115{bottom:132.000000pt;}
.y57_c01115{bottom:134.880000pt;}
.y56_c01115{bottom:143.520000pt;}
.y55_c01115{bottom:150.960000pt;}
.y51_c01115{bottom:730.801531pt;}
.y50_c01115{bottom:732.173027pt;}
.y4f_c01115{bottom:733.003245pt;}
.y4e_c01115{bottom:733.546987pt;}
.y4d_c01115{bottom:734.153821pt;}
.y4c_c01115{bottom:734.925389pt;}
.y4b_c01115{bottom:735.602765pt;}
.y4a_c01115{bottom:736.220707pt;}
.y49_c01115{bottom:736.758624pt;}
.y48_c01115{bottom:737.173173pt;}
.y47_c01115{bottom:738.393768pt;}
.y46_c01115{bottom:761.993373pt;}
.y45_c01115{bottom:762.416453pt;}
.y44_c01115{bottom:763.338083pt;}
.y43_c01115{bottom:763.754405pt;}
.y42_c01115{bottom:764.726192pt;}
.y41_c01115{bottom:765.139379pt;}
.y40_c01115{bottom:765.827787pt;}
.y3f_c01115{bottom:766.074803pt;}
.y3e_c01115{bottom:766.357771pt;}
.y3d_c01115{bottom:766.908811pt;}
.y3c_c01115{bottom:767.730125pt;}
.y3b_c01115{bottom:768.983424pt;}
.y3a_c01115{bottom:769.886667pt;}
.y39_c01115{bottom:789.726232pt;}
.y38_c01115{bottom:790.982671pt;}
.y37_c01115{bottom:792.180756pt;}
.y36_c01115{bottom:793.131220pt;}
.y35_c01115{bottom:795.204676pt;}
.y34_c01115{bottom:796.479271pt;}
.y33_c01115{bottom:797.686791pt;}
.y32_c01115{bottom:801.239124pt;}
.y31_c01115{bottom:803.949423pt;}
.y30_c01115{bottom:806.523092pt;}
.y2f_c01115{bottom:809.172847pt;}
.y2e_c01115{bottom:823.323465pt;}
.y2d_c01115{bottom:824.173444pt;}
.y2c_c01115{bottom:824.991431pt;}
.y2b_c01115{bottom:826.718585pt;}
.y2a_c01115{bottom:827.685083pt;}
.y29_c01115{bottom:828.954099pt;}
.y28_c01115{bottom:829.438897pt;}
.y27_c01115{bottom:831.637500pt;}
.y26_c01115{bottom:835.855029pt;}
.y25_c01115{bottom:837.005129pt;}
.y24_c01115{bottom:839.498480pt;}
.y22_c01115{bottom:840.488000pt;}
.y23_c01115{bottom:840.674083pt;}
.y21_c01115{bottom:856.159379pt;}
.y20_c01115{bottom:856.712907pt;}
.y1f_c01115{bottom:856.961568pt;}
.y1e_c01115{bottom:858.333003pt;}
.y1d_c01115{bottom:858.859760pt;}
.y1c_c01115{bottom:859.483291pt;}
.y1b_c01115{bottom:861.533371pt;}
.y1a_c01115{bottom:862.043077pt;}
.y19_c01115{bottom:863.307563pt;}
.y18_c01115{bottom:863.970680pt;}
.y17_c01115{bottom:864.878667pt;}
.y16_c01115{bottom:865.968443pt;}
.y15_c01115{bottom:886.495595pt;}
.y14_c01115{bottom:887.188667pt;}
.y13_c01115{bottom:888.249083pt;}
.y12_c01115{bottom:889.299059pt;}
.y11_c01115{bottom:890.336243pt;}
.y10_c01115{bottom:890.825171pt;}
.yf_c01115{bottom:891.485939pt;}
.ye_c01115{bottom:892.013867pt;}
.yd_c01115{bottom:892.919243pt;}
.yc_c01115{bottom:893.982635pt;}
.yb_c01115{bottom:895.152923pt;}
.ya_c01115{bottom:895.942667pt;}
.y9_c01115{bottom:918.666905pt;}
.y8_c01115{bottom:919.987633pt;}
.y7_c01115{bottom:921.027744pt;}
.y6_c01115{bottom:922.554457pt;}
.y5_c01115{bottom:924.561440pt;}
.y4_c01115{bottom:925.896836pt;}
.y3_c01115{bottom:926.274480pt;}
.y2_c01115{bottom:927.616691pt;}
.y1_c01115{bottom:928.328000pt;}
.h7_c01115{height:16.000000pt;}
.h8_c01115{height:64.000000pt;}
.h5_c01115{height:64.006272pt;}
.h6_c01115{height:74.673984pt;}
.h3_c01115{height:74.678762pt;}
.h4_c01115{height:74.702535pt;}
.h2_c01115{height:80.014439pt;}
.h0_c01115{height:1107.840000pt;}
.h1_c01115{height:1108.000000pt;}
.w1_c01115{width:811.333333pt;}
.w0_c01115{width:811.440000pt;}
.x0_c01115{left:0.000000pt;}
.x3c_c01115{left:35.141347pt;}
.x33_c01115{left:51.330667pt;}
.x2a_c01115{left:52.376568pt;}
.x22_c01115{left:67.477333pt;}
.x16_c01115{left:68.546645pt;}
.x21_c01115{left:73.480000pt;}
.x1_c01115{left:105.918667pt;}
.xa_c01115{left:115.866667pt;}
.x3d_c01115{left:122.326680pt;}
.x17_c01115{left:132.646464pt;}
.x2_c01115{left:143.356000pt;}
.x3e_c01115{left:151.937347pt;}
.xb_c01115{left:159.741333pt;}
.x18_c01115{left:186.054091pt;}
.x3f_c01115{left:190.360013pt;}
.x34_c01115{left:205.369333pt;}
.x2b_c01115{left:210.670772pt;}
.x3_c01115{left:213.998667pt;}
.x23_c01115{left:222.930667pt;}
.xc_c01115{left:224.757333pt;}
.x4_c01115{left:233.874667pt;}
.x35_c01115{left:264.034667pt;}
.x40_c01115{left:282.882680pt;}
.xd_c01115{left:283.834667pt;}
.x2c_c01115{left:292.804355pt;}
.x19_c01115{left:299.441464pt;}
.x5_c01115{left:304.158667pt;}
.x36_c01115{left:323.606667pt;}
.x1a_c01115{left:329.388659pt;}
.xe_c01115{left:334.133333pt;}
.x41_c01115{left:337.994680pt;}
.x37_c01115{left:341.250667pt;}
.x24_c01115{left:358.980000pt;}
.xf_c01115{left:363.462667pt;}
.x42_c01115{left:381.340013pt;}
.x38_c01115{left:390.422667pt;}
.x10_c01115{left:400.172000pt;}
.x6_c01115{left:409.789333pt;}
.x39_c01115{left:419.936000pt;}
.x11_c01115{left:427.334667pt;}
.x25_c01115{left:429.902667pt;}
.x2d_c01115{left:437.048760pt;}
.x26_c01115{left:445.541333pt;}
.x1b_c01115{left:449.950819pt;}
.x2e_c01115{left:475.667696pt;}
.x43_c01115{left:479.480013pt;}
.x12_c01115{left:484.956000pt;}
.x1c_c01115{left:486.666157pt;}
.x7_c01115{left:490.142667pt;}
.x1d_c01115{left:517.634709pt;}
.x3a_c01115{left:519.086667pt;}
.x2f_c01115{left:538.506477pt;}
.x13_c01115{left:543.288000pt;}
.x8_c01115{left:544.885333pt;}
.x30_c01115{left:567.315367pt;}
.x27_c01115{left:573.369333pt;}
.x44_c01115{left:577.444013pt;}
.x3b_c01115{left:584.917333pt;}
.x1e_c01115{left:598.345507pt;}
.x28_c01115{left:599.756000pt;}
.x14_c01115{left:602.200000pt;}
.x31_c01115{left:603.638468pt;}
.x1f_c01115{left:612.975104pt;}
.x9_c01115{left:614.397333pt;}
.x29_c01115{left:627.174667pt;}
.x15_c01115{left:640.704000pt;}
.x32_c01115{left:641.714779pt;}
.x20_c01115{left:645.505013pt;}
.x48_c01115{left:804.000000pt;}
.x45_c01115{left:805.200000pt;}
.x47_c01115{left:808.320000pt;}
.x46_c01115{left:809.760000pt;}
}





/* 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_c01116 {
    display:none;
  }
  .loading-indicator_c01116.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01116 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_c01116 { 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_c01116" -> "#page-container .classname_c01116")
 */
.pf_c01116 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01116 { /* 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_c01116.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01116 { /* 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_c01116 { /* 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_c01116 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01116 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01116 {overflow:visible;}
  }
}
.c_c01116 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01116 { /* 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_c01116:after { /* webkit #35443 */
  content: '';
}
.t_c01116:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01116 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 */
}
.__c01116 { /* 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_c01116 { /* info for Javascript */
  display:none;
}
.l_c01116 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01116 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01116 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01116: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_c01116 {
    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_c01116.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01116.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_c01116 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01116{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01116;src:url('chunks/assets/font_7c6b9abe6ee2a268480c528b.woff2')format("woff");}.ff1_c01116{font-family:ff1_c01116;line-height:1.000000;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;}
.m81_c01116{transform:matrix(0.009089,0.000155,-0.004249,0.249964,0,0);-ms-transform:matrix(0.009089,0.000155,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.009089,0.000155,-0.004249,0.249964,0,0);}
.md4_c01116{transform:matrix(0.015907,0.000318,-0.004999,0.249950,0,0);-ms-transform:matrix(0.015907,0.000318,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.015907,0.000318,-0.004999,0.249950,0,0);}
.me9_c01116{transform:matrix(0.053679,0.001074,-0.004999,0.249950,0,0);-ms-transform:matrix(0.053679,0.001074,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.053679,0.001074,-0.004999,0.249950,0,0);}
.mc3_c01116{transform:matrix(0.148267,0.003558,-0.005998,0.249928,0,0);-ms-transform:matrix(0.148267,0.003558,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.148267,0.003558,-0.005998,0.249928,0,0);}
.m2e_c01116{transform:matrix(0.161492,0.002745,-0.004249,0.249964,0,0);-ms-transform:matrix(0.161492,0.002745,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.161492,0.002745,-0.004249,0.249964,0,0);}
.m138_c01116{transform:matrix(0.164613,0.001975,-0.003000,0.249982,0,0);-ms-transform:matrix(0.164613,0.001975,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.164613,0.001975,-0.003000,0.249982,0,0);}
.m0_c01116{transform:matrix(0.167770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167770,0.000000,0.000000,0.250000,0,0);}
.m2b_c01116{transform:matrix(0.170065,0.002891,-0.004249,0.249964,0,0);-ms-transform:matrix(0.170065,0.002891,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.170065,0.002891,-0.004249,0.249964,0,0);}
.m34_c01116{transform:matrix(0.170320,0.002895,-0.004249,0.249964,0,0);-ms-transform:matrix(0.170320,0.002895,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.170320,0.002895,-0.004249,0.249964,0,0);}
.m13c_c01116{transform:matrix(0.170563,0.002047,-0.003000,0.249982,0,0);-ms-transform:matrix(0.170563,0.002047,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.170563,0.002047,-0.003000,0.249982,0,0);}
.m8a_c01116{transform:matrix(0.172540,0.002933,-0.004249,0.249964,0,0);-ms-transform:matrix(0.172540,0.002933,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.172540,0.002933,-0.004249,0.249964,0,0);}
.m9_c01116{transform:matrix(0.173568,0.002430,-0.003500,0.249976,0,0);-ms-transform:matrix(0.173568,0.002430,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.173568,0.002430,-0.003500,0.249976,0,0);}
.mca_c01116{transform:matrix(0.174865,0.004197,-0.005998,0.249928,0,0);-ms-transform:matrix(0.174865,0.004197,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.174865,0.004197,-0.005998,0.249928,0,0);}
.m31_c01116{transform:matrix(0.176025,0.002992,-0.004249,0.249964,0,0);-ms-transform:matrix(0.176025,0.002992,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.176025,0.002992,-0.004249,0.249964,0,0);}
.mde_c01116{transform:matrix(0.176640,0.003533,-0.004999,0.249950,0,0);-ms-transform:matrix(0.176640,0.003533,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.176640,0.003533,-0.004999,0.249950,0,0);}
.m13a_c01116{transform:matrix(0.176807,0.002122,-0.003000,0.249982,0,0);-ms-transform:matrix(0.176807,0.002122,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.176807,0.002122,-0.003000,0.249982,0,0);}
.mc4_c01116{transform:matrix(0.178354,0.004280,-0.005998,0.249928,0,0);-ms-transform:matrix(0.178354,0.004280,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.178354,0.004280,-0.005998,0.249928,0,0);}
.m2d_c01116{transform:matrix(0.179444,0.003051,-0.004249,0.249964,0,0);-ms-transform:matrix(0.179444,0.003051,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.179444,0.003051,-0.004249,0.249964,0,0);}
.mb_c01116{transform:matrix(0.179552,0.002514,-0.003500,0.249976,0,0);-ms-transform:matrix(0.179552,0.002514,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.179552,0.002514,-0.003500,0.249976,0,0);}
.m4f_c01116{transform:matrix(0.181444,0.003085,-0.004249,0.249964,0,0);-ms-transform:matrix(0.181444,0.003085,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.181444,0.003085,-0.004249,0.249964,0,0);}
.m2c_c01116{transform:matrix(0.181529,0.003086,-0.004249,0.249964,0,0);-ms-transform:matrix(0.181529,0.003086,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.181529,0.003086,-0.004249,0.249964,0,0);}
.m53_c01116{transform:matrix(0.181544,0.003086,-0.004249,0.249964,0,0);-ms-transform:matrix(0.181544,0.003086,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.181544,0.003086,-0.004249,0.249964,0,0);}
.m100_c01116{transform:matrix(0.184074,0.003866,-0.005249,0.249945,0,0);-ms-transform:matrix(0.184074,0.003866,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.184074,0.003866,-0.005249,0.249945,0,0);}
.m137_c01116{transform:matrix(0.184272,0.002211,-0.003000,0.249982,0,0);-ms-transform:matrix(0.184272,0.002211,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.184272,0.002211,-0.003000,0.249982,0,0);}
.m30_c01116{transform:matrix(0.185133,0.003147,-0.004249,0.249964,0,0);-ms-transform:matrix(0.185133,0.003147,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.185133,0.003147,-0.004249,0.249964,0,0);}
.m18_c01116{transform:matrix(0.186057,0.002605,-0.003500,0.249976,0,0);-ms-transform:matrix(0.186057,0.002605,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.186057,0.002605,-0.003500,0.249976,0,0);}
.m1c_c01116{transform:matrix(0.188047,0.002633,-0.003500,0.249976,0,0);-ms-transform:matrix(0.188047,0.002633,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.188047,0.002633,-0.003500,0.249976,0,0);}
.m136_c01116{transform:matrix(0.188326,0.002260,-0.003000,0.249982,0,0);-ms-transform:matrix(0.188326,0.002260,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.188326,0.002260,-0.003000,0.249982,0,0);}
.m114_c01116{transform:matrix(0.188618,0.003961,-0.005249,0.249945,0,0);-ms-transform:matrix(0.188618,0.003961,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.188618,0.003961,-0.005249,0.249945,0,0);}
.m33_c01116{transform:matrix(0.188888,0.003211,-0.004249,0.249964,0,0);-ms-transform:matrix(0.188888,0.003211,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.188888,0.003211,-0.004249,0.249964,0,0);}
.m1a_c01116{transform:matrix(0.189726,0.002656,-0.003500,0.249976,0,0);-ms-transform:matrix(0.189726,0.002656,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.189726,0.002656,-0.003500,0.249976,0,0);}
.m99_c01116{transform:matrix(0.190337,0.003236,-0.004249,0.249964,0,0);-ms-transform:matrix(0.190337,0.003236,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.190337,0.003236,-0.004249,0.249964,0,0);}
.mb8_c01116{transform:matrix(0.190660,0.004576,-0.005998,0.249928,0,0);-ms-transform:matrix(0.190660,0.004576,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.190660,0.004576,-0.005998,0.249928,0,0);}
.m78_c01116{transform:matrix(0.191142,0.003249,-0.004249,0.249964,0,0);-ms-transform:matrix(0.191142,0.003249,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.191142,0.003249,-0.004249,0.249964,0,0);}
.m13d_c01116{transform:matrix(0.191501,0.002298,-0.003000,0.249982,0,0);-ms-transform:matrix(0.191501,0.002298,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.191501,0.002298,-0.003000,0.249982,0,0);}
.m95_c01116{transform:matrix(0.191637,0.003258,-0.004249,0.249964,0,0);-ms-transform:matrix(0.191637,0.003258,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.191637,0.003258,-0.004249,0.249964,0,0);}
.m8b_c01116{transform:matrix(0.192032,0.003265,-0.004249,0.249964,0,0);-ms-transform:matrix(0.192032,0.003265,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.192032,0.003265,-0.004249,0.249964,0,0);}
.m60_c01116{transform:matrix(0.192067,0.003265,-0.004249,0.249964,0,0);-ms-transform:matrix(0.192067,0.003265,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.192067,0.003265,-0.004249,0.249964,0,0);}
.mc1_c01116{transform:matrix(0.192575,0.004622,-0.005998,0.249928,0,0);-ms-transform:matrix(0.192575,0.004622,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.192575,0.004622,-0.005998,0.249928,0,0);}
.m10d_c01116{transform:matrix(0.192588,0.004044,-0.005249,0.249945,0,0);-ms-transform:matrix(0.192588,0.004044,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.192588,0.004044,-0.005249,0.249945,0,0);}
.m132_c01116{transform:matrix(0.193333,0.004253,-0.005499,0.249940,0,0);-ms-transform:matrix(0.193333,0.004253,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.193333,0.004253,-0.005499,0.249940,0,0);}
.m130_c01116{transform:matrix(0.194073,0.004270,-0.005499,0.249940,0,0);-ms-transform:matrix(0.194073,0.004270,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.194073,0.004270,-0.005499,0.249940,0,0);}
.m51_c01116{transform:matrix(0.194172,0.003301,-0.004249,0.249964,0,0);-ms-transform:matrix(0.194172,0.003301,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.194172,0.003301,-0.004249,0.249964,0,0);}
.m116_c01116{transform:matrix(0.194532,0.004085,-0.005249,0.249945,0,0);-ms-transform:matrix(0.194532,0.004085,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.194532,0.004085,-0.005249,0.249945,0,0);}
.m20_c01116{transform:matrix(0.195556,0.002738,-0.003500,0.249976,0,0);-ms-transform:matrix(0.195556,0.002738,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.195556,0.002738,-0.003500,0.249976,0,0);}
.m32_c01116{transform:matrix(0.195977,0.003332,-0.004249,0.249964,0,0);-ms-transform:matrix(0.195977,0.003332,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.195977,0.003332,-0.004249,0.249964,0,0);}
.m2f_c01116{transform:matrix(0.196517,0.003341,-0.004249,0.249964,0,0);-ms-transform:matrix(0.196517,0.003341,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.196517,0.003341,-0.004249,0.249964,0,0);}
.mfc_c01116{transform:matrix(0.196692,0.004131,-0.005249,0.249945,0,0);-ms-transform:matrix(0.196692,0.004131,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.196692,0.004131,-0.005249,0.249945,0,0);}
.m88_c01116{transform:matrix(0.197391,0.003356,-0.004249,0.249964,0,0);-ms-transform:matrix(0.197391,0.003356,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.197391,0.003356,-0.004249,0.249964,0,0);}
.mbc_c01116{transform:matrix(0.197853,0.004748,-0.005998,0.249928,0,0);-ms-transform:matrix(0.197853,0.004748,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.197853,0.004748,-0.005998,0.249928,0,0);}
.m109_c01116{transform:matrix(0.198491,0.004168,-0.005249,0.249945,0,0);-ms-transform:matrix(0.198491,0.004168,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.198491,0.004168,-0.005249,0.249945,0,0);}
.m82_c01116{transform:matrix(0.198516,0.003375,-0.004249,0.249964,0,0);-ms-transform:matrix(0.198516,0.003375,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.198516,0.003375,-0.004249,0.249964,0,0);}
.m10f_c01116{transform:matrix(0.199056,0.004180,-0.005249,0.249945,0,0);-ms-transform:matrix(0.199056,0.004180,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.199056,0.004180,-0.005249,0.249945,0,0);}
.m92_c01116{transform:matrix(0.199176,0.003386,-0.004249,0.249964,0,0);-ms-transform:matrix(0.199176,0.003386,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.199176,0.003386,-0.004249,0.249964,0,0);}
.mc7_c01116{transform:matrix(0.199468,0.004787,-0.005998,0.249928,0,0);-ms-transform:matrix(0.199468,0.004787,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.199468,0.004787,-0.005998,0.249928,0,0);}
.m112_c01116{transform:matrix(0.199656,0.004193,-0.005249,0.249945,0,0);-ms-transform:matrix(0.199656,0.004193,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.199656,0.004193,-0.005249,0.249945,0,0);}
.mb9_c01116{transform:matrix(0.200252,0.004806,-0.005998,0.249928,0,0);-ms-transform:matrix(0.200252,0.004806,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.200252,0.004806,-0.005998,0.249928,0,0);}
.m11d_c01116{transform:matrix(0.202030,0.004243,-0.005249,0.249945,0,0);-ms-transform:matrix(0.202030,0.004243,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.202030,0.004243,-0.005249,0.249945,0,0);}
.mc8_c01116{transform:matrix(0.202467,0.004859,-0.005998,0.249928,0,0);-ms-transform:matrix(0.202467,0.004859,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.202467,0.004859,-0.005998,0.249928,0,0);}
.md_c01116{transform:matrix(0.202645,0.002837,-0.003500,0.249976,0,0);-ms-transform:matrix(0.202645,0.002837,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.202645,0.002837,-0.003500,0.249976,0,0);}
.m141_c01116{transform:matrix(0.202650,0.002432,-0.003000,0.249982,0,0);-ms-transform:matrix(0.202650,0.002432,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.202650,0.002432,-0.003000,0.249982,0,0);}
.m11b_c01116{transform:matrix(0.202965,0.004262,-0.005249,0.249945,0,0);-ms-transform:matrix(0.202965,0.004262,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.202965,0.004262,-0.005249,0.249945,0,0);}
.m13b_c01116{transform:matrix(0.204080,0.002449,-0.003000,0.249982,0,0);-ms-transform:matrix(0.204080,0.002449,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.204080,0.002449,-0.003000,0.249982,0,0);}
.m69_c01116{transform:matrix(0.204166,0.003471,-0.004249,0.249964,0,0);-ms-transform:matrix(0.204166,0.003471,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.204166,0.003471,-0.004249,0.249964,0,0);}
.m102_c01116{transform:matrix(0.204260,0.004289,-0.005249,0.249945,0,0);-ms-transform:matrix(0.204260,0.004289,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.204260,0.004289,-0.005249,0.249945,0,0);}
.m8d_c01116{transform:matrix(0.204285,0.003473,-0.004249,0.249964,0,0);-ms-transform:matrix(0.204285,0.003473,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.204285,0.003473,-0.004249,0.249964,0,0);}
.me3_c01116{transform:matrix(0.204564,0.004091,-0.004999,0.249950,0,0);-ms-transform:matrix(0.204564,0.004091,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.204564,0.004091,-0.004999,0.249950,0,0);}
.m1e_c01116{transform:matrix(0.204730,0.002866,-0.003500,0.249976,0,0);-ms-transform:matrix(0.204730,0.002866,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.204730,0.002866,-0.003500,0.249976,0,0);}
.mf_c01116{transform:matrix(0.205945,0.002883,-0.003500,0.249976,0,0);-ms-transform:matrix(0.205945,0.002883,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.205945,0.002883,-0.003500,0.249976,0,0);}
.m90_c01116{transform:matrix(0.206230,0.003506,-0.004249,0.249964,0,0);-ms-transform:matrix(0.206230,0.003506,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.206230,0.003506,-0.004249,0.249964,0,0);}
.mb6_c01116{transform:matrix(0.206306,0.004951,-0.005998,0.249928,0,0);-ms-transform:matrix(0.206306,0.004951,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.206306,0.004951,-0.005998,0.249928,0,0);}
.m5f_c01116{transform:matrix(0.206440,0.003509,-0.004249,0.249964,0,0);-ms-transform:matrix(0.206440,0.003509,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.206440,0.003509,-0.004249,0.249964,0,0);}
.m50_c01116{transform:matrix(0.207585,0.003529,-0.004249,0.249964,0,0);-ms-transform:matrix(0.207585,0.003529,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.207585,0.003529,-0.004249,0.249964,0,0);}
.m87_c01116{transform:matrix(0.207810,0.003533,-0.004249,0.249964,0,0);-ms-transform:matrix(0.207810,0.003533,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.207810,0.003533,-0.004249,0.249964,0,0);}
.m8e_c01116{transform:matrix(0.207940,0.003535,-0.004249,0.249964,0,0);-ms-transform:matrix(0.207940,0.003535,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.207940,0.003535,-0.004249,0.249964,0,0);}
.m139_c01116{transform:matrix(0.208920,0.002507,-0.003000,0.249982,0,0);-ms-transform:matrix(0.208920,0.002507,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.208920,0.002507,-0.003000,0.249982,0,0);}
.mb7_c01116{transform:matrix(0.209300,0.005023,-0.005998,0.249928,0,0);-ms-transform:matrix(0.209300,0.005023,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.209300,0.005023,-0.005998,0.249928,0,0);}
.m118_c01116{transform:matrix(0.209759,0.004405,-0.005249,0.249945,0,0);-ms-transform:matrix(0.209759,0.004405,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.209759,0.004405,-0.005249,0.249945,0,0);}
.mc0_c01116{transform:matrix(0.209820,0.005036,-0.005998,0.249928,0,0);-ms-transform:matrix(0.209820,0.005036,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.209820,0.005036,-0.005998,0.249928,0,0);}
.m26_c01116{transform:matrix(0.210599,0.002948,-0.003500,0.249976,0,0);-ms-transform:matrix(0.210599,0.002948,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.210599,0.002948,-0.003500,0.249976,0,0);}
.m94_c01116{transform:matrix(0.210670,0.003581,-0.004249,0.249964,0,0);-ms-transform:matrix(0.210670,0.003581,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.210670,0.003581,-0.004249,0.249964,0,0);}
.mbd_c01116{transform:matrix(0.210959,0.005063,-0.005998,0.249928,0,0);-ms-transform:matrix(0.210959,0.005063,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.210959,0.005063,-0.005998,0.249928,0,0);}
.mfd_c01116{transform:matrix(0.210978,0.004431,-0.005249,0.249945,0,0);-ms-transform:matrix(0.210978,0.004431,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.210978,0.004431,-0.005249,0.249945,0,0);}
.m11f_c01116{transform:matrix(0.212153,0.004455,-0.005249,0.249945,0,0);-ms-transform:matrix(0.212153,0.004455,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.212153,0.004455,-0.005249,0.249945,0,0);}
.m108_c01116{transform:matrix(0.212193,0.004456,-0.005249,0.249945,0,0);-ms-transform:matrix(0.212193,0.004456,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.212193,0.004456,-0.005249,0.249945,0,0);}
.mc5_c01116{transform:matrix(0.212209,0.005093,-0.005998,0.249928,0,0);-ms-transform:matrix(0.212209,0.005093,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.212209,0.005093,-0.005998,0.249928,0,0);}
.m5_c01116{transform:matrix(0.212339,0.002973,-0.003500,0.249976,0,0);-ms-transform:matrix(0.212339,0.002973,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.212339,0.002973,-0.003500,0.249976,0,0);}
.mda_c01116{transform:matrix(0.212468,0.004249,-0.004999,0.249950,0,0);-ms-transform:matrix(0.212468,0.004249,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.212468,0.004249,-0.004999,0.249950,0,0);}
.m55_c01116{transform:matrix(0.212679,0.003616,-0.004249,0.249964,0,0);-ms-transform:matrix(0.212679,0.003616,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.212679,0.003616,-0.004249,0.249964,0,0);}
.m13e_c01116{transform:matrix(0.213280,0.002559,-0.003000,0.249982,0,0);-ms-transform:matrix(0.213280,0.002559,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.213280,0.002559,-0.003000,0.249982,0,0);}
.m52_c01116{transform:matrix(0.213289,0.003626,-0.004249,0.249964,0,0);-ms-transform:matrix(0.213289,0.003626,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.213289,0.003626,-0.004249,0.249964,0,0);}
.m4e_c01116{transform:matrix(0.213699,0.003633,-0.004249,0.249964,0,0);-ms-transform:matrix(0.213699,0.003633,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.213699,0.003633,-0.004249,0.249964,0,0);}
.m12c_c01116{transform:matrix(0.213753,0.004703,-0.005499,0.249940,0,0);-ms-transform:matrix(0.213753,0.004703,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.213753,0.004703,-0.005499,0.249940,0,0);}
.m76_c01116{transform:matrix(0.214089,0.003640,-0.004249,0.249964,0,0);-ms-transform:matrix(0.214089,0.003640,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.214089,0.003640,-0.004249,0.249964,0,0);}
.mc9_c01116{transform:matrix(0.214268,0.005142,-0.005998,0.249928,0,0);-ms-transform:matrix(0.214268,0.005142,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.214268,0.005142,-0.005998,0.249928,0,0);}
.m134_c01116{transform:matrix(0.214363,0.004716,-0.005499,0.249940,0,0);-ms-transform:matrix(0.214363,0.004716,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.214363,0.004716,-0.005499,0.249940,0,0);}
.m1b_c01116{transform:matrix(0.214369,0.003001,-0.003500,0.249976,0,0);-ms-transform:matrix(0.214369,0.003001,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.214369,0.003001,-0.003500,0.249976,0,0);}
.m75_c01116{transform:matrix(0.214729,0.003650,-0.004249,0.249964,0,0);-ms-transform:matrix(0.214729,0.003650,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.214729,0.003650,-0.004249,0.249964,0,0);}
.m62_c01116{transform:matrix(0.215029,0.003655,-0.004249,0.249964,0,0);-ms-transform:matrix(0.215029,0.003655,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.215029,0.003655,-0.004249,0.249964,0,0);}
.m115_c01116{transform:matrix(0.215457,0.004525,-0.005249,0.249945,0,0);-ms-transform:matrix(0.215457,0.004525,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.215457,0.004525,-0.005249,0.249945,0,0);}
.m23_c01116{transform:matrix(0.215734,0.003020,-0.003500,0.249976,0,0);-ms-transform:matrix(0.215734,0.003020,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.215734,0.003020,-0.003500,0.249976,0,0);}
.m19_c01116{transform:matrix(0.215799,0.003021,-0.003500,0.249976,0,0);-ms-transform:matrix(0.215799,0.003021,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.215799,0.003021,-0.003500,0.249976,0,0);}
.m6_c01116{transform:matrix(0.215874,0.003022,-0.003500,0.249976,0,0);-ms-transform:matrix(0.215874,0.003022,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.215874,0.003022,-0.003500,0.249976,0,0);}
.m101_c01116{transform:matrix(0.216047,0.004537,-0.005249,0.249945,0,0);-ms-transform:matrix(0.216047,0.004537,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.216047,0.004537,-0.005249,0.249945,0,0);}
.m64_c01116{transform:matrix(0.216304,0.003677,-0.004249,0.249964,0,0);-ms-transform:matrix(0.216304,0.003677,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.216304,0.003677,-0.004249,0.249964,0,0);}
.m107_c01116{transform:matrix(0.216467,0.004546,-0.005249,0.249945,0,0);-ms-transform:matrix(0.216467,0.004546,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.216467,0.004546,-0.005249,0.249945,0,0);}
.m1d_c01116{transform:matrix(0.216499,0.003031,-0.003500,0.249976,0,0);-ms-transform:matrix(0.216499,0.003031,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.216499,0.003031,-0.003500,0.249976,0,0);}
.m14_c01116{transform:matrix(0.217004,0.003038,-0.003500,0.249976,0,0);-ms-transform:matrix(0.217004,0.003038,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.217004,0.003038,-0.003500,0.249976,0,0);}
.m5e_c01116{transform:matrix(0.217704,0.003701,-0.004249,0.249964,0,0);-ms-transform:matrix(0.217704,0.003701,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.217704,0.003701,-0.004249,0.249964,0,0);}
.m117_c01116{transform:matrix(0.217707,0.004572,-0.005249,0.249945,0,0);-ms-transform:matrix(0.217707,0.004572,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.217707,0.004572,-0.005249,0.249945,0,0);}
.mbf_c01116{transform:matrix(0.217797,0.005227,-0.005998,0.249928,0,0);-ms-transform:matrix(0.217797,0.005227,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.217797,0.005227,-0.005998,0.249928,0,0);}
.m17_c01116{transform:matrix(0.217814,0.003049,-0.003500,0.249976,0,0);-ms-transform:matrix(0.217814,0.003049,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.217814,0.003049,-0.003500,0.249976,0,0);}
.mba_c01116{transform:matrix(0.218047,0.005233,-0.005998,0.249928,0,0);-ms-transform:matrix(0.218047,0.005233,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.218047,0.005233,-0.005998,0.249928,0,0);}
.m74_c01116{transform:matrix(0.218223,0.003710,-0.004249,0.249964,0,0);-ms-transform:matrix(0.218223,0.003710,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.218223,0.003710,-0.004249,0.249964,0,0);}
.m11a_c01116{transform:matrix(0.219557,0.004611,-0.005249,0.249945,0,0);-ms-transform:matrix(0.219557,0.004611,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.219557,0.004611,-0.005249,0.249945,0,0);}
.m8c_c01116{transform:matrix(0.219818,0.003737,-0.004249,0.249964,0,0);-ms-transform:matrix(0.219818,0.003737,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.219818,0.003737,-0.004249,0.249964,0,0);}
.m12b_c01116{transform:matrix(0.219967,0.004839,-0.005499,0.249940,0,0);-ms-transform:matrix(0.219967,0.004839,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.219967,0.004839,-0.005499,0.249940,0,0);}
.m7b_c01116{transform:matrix(0.220418,0.003747,-0.004249,0.249964,0,0);-ms-transform:matrix(0.220418,0.003747,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.220418,0.003747,-0.004249,0.249964,0,0);}
.mff_c01116{transform:matrix(0.220726,0.004635,-0.005249,0.249945,0,0);-ms-transform:matrix(0.220726,0.004635,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.220726,0.004635,-0.005249,0.249945,0,0);}
.m10c_c01116{transform:matrix(0.221661,0.004655,-0.005249,0.249945,0,0);-ms-transform:matrix(0.221661,0.004655,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.221661,0.004655,-0.005249,0.249945,0,0);}
.mc6_c01116{transform:matrix(0.222001,0.005328,-0.005998,0.249928,0,0);-ms-transform:matrix(0.222001,0.005328,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.222001,0.005328,-0.005998,0.249928,0,0);}
.m4d_c01116{transform:matrix(0.222003,0.003774,-0.004249,0.249964,0,0);-ms-transform:matrix(0.222003,0.003774,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.222003,0.003774,-0.004249,0.249964,0,0);}
.m5c_c01116{transform:matrix(0.222093,0.003776,-0.004249,0.249964,0,0);-ms-transform:matrix(0.222093,0.003776,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.222093,0.003776,-0.004249,0.249964,0,0);}
.m96_c01116{transform:matrix(0.222148,0.003777,-0.004249,0.249964,0,0);-ms-transform:matrix(0.222148,0.003777,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.222148,0.003777,-0.004249,0.249964,0,0);}
.m6e_c01116{transform:matrix(0.222578,0.003784,-0.004249,0.249964,0,0);-ms-transform:matrix(0.222578,0.003784,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.222578,0.003784,-0.004249,0.249964,0,0);}
.m110_c01116{transform:matrix(0.222761,0.004678,-0.005249,0.249945,0,0);-ms-transform:matrix(0.222761,0.004678,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.222761,0.004678,-0.005249,0.249945,0,0);}
.m22_c01116{transform:matrix(0.223158,0.003124,-0.003500,0.249976,0,0);-ms-transform:matrix(0.223158,0.003124,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.223158,0.003124,-0.003500,0.249976,0,0);}
.m4_c01116{transform:matrix(0.223413,0.003128,-0.003500,0.249976,0,0);-ms-transform:matrix(0.223413,0.003128,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.223413,0.003128,-0.003500,0.249976,0,0);}
.m1f_c01116{transform:matrix(0.223503,0.003129,-0.003500,0.249976,0,0);-ms-transform:matrix(0.223503,0.003129,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.223503,0.003129,-0.003500,0.249976,0,0);}
.m3_c01116{transform:matrix(0.223598,0.003130,-0.003500,0.249976,0,0);-ms-transform:matrix(0.223598,0.003130,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.223598,0.003130,-0.003500,0.249976,0,0);}
.m7d_c01116{transform:matrix(0.223853,0.003805,-0.004249,0.249964,0,0);-ms-transform:matrix(0.223853,0.003805,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.223853,0.003805,-0.004249,0.249964,0,0);}
.m93_c01116{transform:matrix(0.224228,0.003812,-0.004249,0.249964,0,0);-ms-transform:matrix(0.224228,0.003812,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.224228,0.003812,-0.004249,0.249964,0,0);}
.m105_c01116{transform:matrix(0.224471,0.004714,-0.005249,0.249945,0,0);-ms-transform:matrix(0.224471,0.004714,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.224471,0.004714,-0.005249,0.249945,0,0);}
.m142_c01116{transform:matrix(0.224664,0.002696,-0.003000,0.249982,0,0);-ms-transform:matrix(0.224664,0.002696,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.224664,0.002696,-0.003000,0.249982,0,0);}
.ma2_c01116{transform:matrix(0.224703,0.003820,-0.004249,0.249964,0,0);-ms-transform:matrix(0.224703,0.003820,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.224703,0.003820,-0.004249,0.249964,0,0);}
.m21_c01116{transform:matrix(0.224898,0.003149,-0.003500,0.249976,0,0);-ms-transform:matrix(0.224898,0.003149,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.224898,0.003149,-0.003500,0.249976,0,0);}
.mc2_c01116{transform:matrix(0.225030,0.005401,-0.005998,0.249928,0,0);-ms-transform:matrix(0.225030,0.005401,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.225030,0.005401,-0.005998,0.249928,0,0);}
.m7f_c01116{transform:matrix(0.225282,0.003830,-0.004249,0.249964,0,0);-ms-transform:matrix(0.225282,0.003830,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.225282,0.003830,-0.004249,0.249964,0,0);}
.me1_c01116{transform:matrix(0.225300,0.004506,-0.004999,0.249950,0,0);-ms-transform:matrix(0.225300,0.004506,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.225300,0.004506,-0.004999,0.249950,0,0);}
.m11e_c01116{transform:matrix(0.225370,0.004733,-0.005249,0.249945,0,0);-ms-transform:matrix(0.225370,0.004733,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.225370,0.004733,-0.005249,0.249945,0,0);}
.m57_c01116{transform:matrix(0.227077,0.003860,-0.004249,0.249964,0,0);-ms-transform:matrix(0.227077,0.003860,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.227077,0.003860,-0.004249,0.249964,0,0);}
.m133_c01116{transform:matrix(0.227205,0.004999,-0.005499,0.249940,0,0);-ms-transform:matrix(0.227205,0.004999,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.227205,0.004999,-0.005499,0.249940,0,0);}
.md5_c01116{transform:matrix(0.227220,0.004544,-0.004999,0.249950,0,0);-ms-transform:matrix(0.227220,0.004544,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.227220,0.004544,-0.004999,0.249950,0,0);}
.m86_c01116{transform:matrix(0.227547,0.003868,-0.004249,0.249964,0,0);-ms-transform:matrix(0.227547,0.003868,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.227547,0.003868,-0.004249,0.249964,0,0);}
.m104_c01116{transform:matrix(0.227590,0.004779,-0.005249,0.249945,0,0);-ms-transform:matrix(0.227590,0.004779,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.227590,0.004779,-0.005249,0.249945,0,0);}
.m13f_c01116{transform:matrix(0.227624,0.002731,-0.003000,0.249982,0,0);-ms-transform:matrix(0.227624,0.002731,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.227624,0.002731,-0.003000,0.249982,0,0);}
.m56_c01116{transform:matrix(0.227797,0.003873,-0.004249,0.249964,0,0);-ms-transform:matrix(0.227797,0.003873,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.227797,0.003873,-0.004249,0.249964,0,0);}
.m113_c01116{transform:matrix(0.227960,0.004787,-0.005249,0.249945,0,0);-ms-transform:matrix(0.227960,0.004787,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.227960,0.004787,-0.005249,0.249945,0,0);}
.m4b_c01116{transform:matrix(0.228057,0.003877,-0.004249,0.249964,0,0);-ms-transform:matrix(0.228057,0.003877,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.228057,0.003877,-0.004249,0.249964,0,0);}
.m9d_c01116{transform:matrix(0.228182,0.003879,-0.004249,0.249964,0,0);-ms-transform:matrix(0.228182,0.003879,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.228182,0.003879,-0.004249,0.249964,0,0);}
.m91_c01116{transform:matrix(0.228527,0.003885,-0.004249,0.249964,0,0);-ms-transform:matrix(0.228527,0.003885,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.228527,0.003885,-0.004249,0.249964,0,0);}
.m12e_c01116{transform:matrix(0.228575,0.005029,-0.005499,0.249940,0,0);-ms-transform:matrix(0.228575,0.005029,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.228575,0.005029,-0.005499,0.249940,0,0);}
.mbe_c01116{transform:matrix(0.229354,0.005504,-0.005998,0.249928,0,0);-ms-transform:matrix(0.229354,0.005504,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.229354,0.005504,-0.005998,0.249928,0,0);}
.m121_c01116{transform:matrix(0.229414,0.004818,-0.005249,0.249945,0,0);-ms-transform:matrix(0.229414,0.004818,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.229414,0.004818,-0.005249,0.249945,0,0);}
.m85_c01116{transform:matrix(0.229632,0.003904,-0.004249,0.249964,0,0);-ms-transform:matrix(0.229632,0.003904,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.229632,0.003904,-0.004249,0.249964,0,0);}
.m111_c01116{transform:matrix(0.230094,0.004832,-0.005249,0.249945,0,0);-ms-transform:matrix(0.230094,0.004832,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.230094,0.004832,-0.005249,0.249945,0,0);}
.me_c01116{transform:matrix(0.230102,0.003221,-0.003500,0.249976,0,0);-ms-transform:matrix(0.230102,0.003221,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.230102,0.003221,-0.003500,0.249976,0,0);}
.mcb_c01116{transform:matrix(0.230239,0.004605,-0.004999,0.249950,0,0);-ms-transform:matrix(0.230239,0.004605,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.230239,0.004605,-0.004999,0.249950,0,0);}
.m79_c01116{transform:matrix(0.230412,0.003917,-0.004249,0.249964,0,0);-ms-transform:matrix(0.230412,0.003917,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.230412,0.003917,-0.004249,0.249964,0,0);}
.m25_c01116{transform:matrix(0.230527,0.003227,-0.003500,0.249976,0,0);-ms-transform:matrix(0.230527,0.003227,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.230527,0.003227,-0.003500,0.249976,0,0);}
.m11c_c01116{transform:matrix(0.231489,0.004861,-0.005249,0.249945,0,0);-ms-transform:matrix(0.231489,0.004861,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.231489,0.004861,-0.005249,0.249945,0,0);}
.m59_c01116{transform:matrix(0.232016,0.003944,-0.004249,0.249964,0,0);-ms-transform:matrix(0.232016,0.003944,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.232016,0.003944,-0.004249,0.249964,0,0);}
.mf0_c01116{transform:matrix(0.232234,0.004877,-0.005249,0.249945,0,0);-ms-transform:matrix(0.232234,0.004877,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.232234,0.004877,-0.005249,0.249945,0,0);}
.m103_c01116{transform:matrix(0.232274,0.004878,-0.005249,0.249945,0,0);-ms-transform:matrix(0.232274,0.004878,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.232274,0.004878,-0.005249,0.249945,0,0);}
.m41_c01116{transform:matrix(0.232951,0.003960,-0.004249,0.249964,0,0);-ms-transform:matrix(0.232951,0.003960,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.232951,0.003960,-0.004249,0.249964,0,0);}
.m12_c01116{transform:matrix(0.232962,0.003261,-0.003500,0.249976,0,0);-ms-transform:matrix(0.232962,0.003261,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.232962,0.003261,-0.003500,0.249976,0,0);}
.m7_c01116{transform:matrix(0.232982,0.003262,-0.003500,0.249976,0,0);-ms-transform:matrix(0.232982,0.003262,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.232982,0.003262,-0.003500,0.249976,0,0);}
.m97_c01116{transform:matrix(0.233066,0.003962,-0.004249,0.249964,0,0);-ms-transform:matrix(0.233066,0.003962,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.233066,0.003962,-0.004249,0.249964,0,0);}
.m122_c01116{transform:matrix(0.233244,0.004898,-0.005249,0.249945,0,0);-ms-transform:matrix(0.233244,0.004898,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.233244,0.004898,-0.005249,0.249945,0,0);}
.m84_c01116{transform:matrix(0.233626,0.003972,-0.004249,0.249964,0,0);-ms-transform:matrix(0.233626,0.003972,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.233626,0.003972,-0.004249,0.249964,0,0);}
.mb2_c01116{transform:matrix(0.234293,0.005623,-0.005998,0.249928,0,0);-ms-transform:matrix(0.234293,0.005623,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.234293,0.005623,-0.005998,0.249928,0,0);}
.mfe_c01116{transform:matrix(0.234323,0.004921,-0.005249,0.249945,0,0);-ms-transform:matrix(0.234323,0.004921,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.234323,0.004921,-0.005249,0.249945,0,0);}
.md9_c01116{transform:matrix(0.234703,0.004694,-0.004999,0.249950,0,0);-ms-transform:matrix(0.234703,0.004694,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.234703,0.004694,-0.004999,0.249950,0,0);}
.mbb_c01116{transform:matrix(0.234832,0.005636,-0.005998,0.249928,0,0);-ms-transform:matrix(0.234832,0.005636,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.234832,0.005636,-0.005998,0.249928,0,0);}
.ma_c01116{transform:matrix(0.235007,0.003290,-0.003500,0.249976,0,0);-ms-transform:matrix(0.235007,0.003290,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.235007,0.003290,-0.003500,0.249976,0,0);}
.ma8_c01116{transform:matrix(0.235046,0.003996,-0.004249,0.249964,0,0);-ms-transform:matrix(0.235046,0.003996,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.235046,0.003996,-0.004249,0.249964,0,0);}
.m7c_c01116{transform:matrix(0.235231,0.003999,-0.004249,0.249964,0,0);-ms-transform:matrix(0.235231,0.003999,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.235231,0.003999,-0.004249,0.249964,0,0);}
.mf4_c01116{transform:matrix(0.235343,0.004942,-0.005249,0.249945,0,0);-ms-transform:matrix(0.235343,0.004942,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.235343,0.004942,-0.005249,0.249945,0,0);}
.m5b_c01116{transform:matrix(0.235601,0.004005,-0.004249,0.249964,0,0);-ms-transform:matrix(0.235601,0.004005,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.235601,0.004005,-0.004249,0.249964,0,0);}
.m28_c01116{transform:matrix(0.236207,0.003307,-0.003500,0.249976,0,0);-ms-transform:matrix(0.236207,0.003307,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.236207,0.003307,-0.003500,0.249976,0,0);}
.m67_c01116{transform:matrix(0.236411,0.004019,-0.004249,0.249964,0,0);-ms-transform:matrix(0.236411,0.004019,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.236411,0.004019,-0.004249,0.249964,0,0);}
.m27_c01116{transform:matrix(0.236977,0.003318,-0.003500,0.249976,0,0);-ms-transform:matrix(0.236977,0.003318,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.236977,0.003318,-0.003500,0.249976,0,0);}
.m106_c01116{transform:matrix(0.237428,0.004986,-0.005249,0.249945,0,0);-ms-transform:matrix(0.237428,0.004986,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.237428,0.004986,-0.005249,0.249945,0,0);}
.m8f_c01116{transform:matrix(0.237526,0.004038,-0.004249,0.249964,0,0);-ms-transform:matrix(0.237526,0.004038,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.237526,0.004038,-0.004249,0.249964,0,0);}
.m9b_c01116{transform:matrix(0.237561,0.004039,-0.004249,0.249964,0,0);-ms-transform:matrix(0.237561,0.004039,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.237561,0.004039,-0.004249,0.249964,0,0);}
.m72_c01116{transform:matrix(0.237796,0.004043,-0.004249,0.249964,0,0);-ms-transform:matrix(0.237796,0.004043,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.237796,0.004043,-0.004249,0.249964,0,0);}
.m43_c01116{transform:matrix(0.238336,0.004052,-0.004249,0.249964,0,0);-ms-transform:matrix(0.238336,0.004052,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.238336,0.004052,-0.004249,0.249964,0,0);}
.m10e_c01116{transform:matrix(0.238497,0.005008,-0.005249,0.249945,0,0);-ms-transform:matrix(0.238497,0.005008,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.238497,0.005008,-0.005249,0.249945,0,0);}
.ma3_c01116{transform:matrix(0.238501,0.004055,-0.004249,0.249964,0,0);-ms-transform:matrix(0.238501,0.004055,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.238501,0.004055,-0.004249,0.249964,0,0);}
.m119_c01116{transform:matrix(0.238517,0.005009,-0.005249,0.249945,0,0);-ms-transform:matrix(0.238517,0.005009,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.238517,0.005009,-0.005249,0.249945,0,0);}
.mce_c01116{transform:matrix(0.238522,0.004770,-0.004999,0.249950,0,0);-ms-transform:matrix(0.238522,0.004770,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.238522,0.004770,-0.004999,0.249950,0,0);}
.m135_c01116{transform:matrix(0.238592,0.005249,-0.005499,0.249940,0,0);-ms-transform:matrix(0.238592,0.005249,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.238592,0.005249,-0.005499,0.249940,0,0);}
.mb0_c01116{transform:matrix(0.239226,0.005741,-0.005998,0.249928,0,0);-ms-transform:matrix(0.239226,0.005741,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.239226,0.005741,-0.005998,0.249928,0,0);}
.m47_c01116{transform:matrix(0.239260,0.004067,-0.004249,0.249964,0,0);-ms-transform:matrix(0.239260,0.004067,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.239260,0.004067,-0.004249,0.249964,0,0);}
.mee_c01116{transform:matrix(0.239837,0.005037,-0.005249,0.249945,0,0);-ms-transform:matrix(0.239837,0.005037,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.239837,0.005037,-0.005249,0.249945,0,0);}
.m9c_c01116{transform:matrix(0.240080,0.004081,-0.004249,0.249964,0,0);-ms-transform:matrix(0.240080,0.004081,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.240080,0.004081,-0.004249,0.249964,0,0);}
.m89_c01116{transform:matrix(0.240395,0.004087,-0.004249,0.249964,0,0);-ms-transform:matrix(0.240395,0.004087,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.240395,0.004087,-0.004249,0.249964,0,0);}
.mdb_c01116{transform:matrix(0.240772,0.004815,-0.004999,0.249950,0,0);-ms-transform:matrix(0.240772,0.004815,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.240772,0.004815,-0.004999,0.249950,0,0);}
.m128_c01116{transform:matrix(0.240782,0.005056,-0.005249,0.249945,0,0);-ms-transform:matrix(0.240782,0.005056,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.240782,0.005056,-0.005249,0.249945,0,0);}
.m58_c01116{transform:matrix(0.242270,0.004119,-0.004249,0.249964,0,0);-ms-transform:matrix(0.242270,0.004119,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.242270,0.004119,-0.004249,0.249964,0,0);}
.m9e_c01116{transform:matrix(0.243460,0.004139,-0.004249,0.249964,0,0);-ms-transform:matrix(0.243460,0.004139,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.243460,0.004139,-0.004249,0.249964,0,0);}
.m7e_c01116{transform:matrix(0.244300,0.004153,-0.004249,0.249964,0,0);-ms-transform:matrix(0.244300,0.004153,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.244300,0.004153,-0.004249,0.249964,0,0);}
.m54_c01116{transform:matrix(0.244370,0.004154,-0.004249,0.249964,0,0);-ms-transform:matrix(0.244370,0.004154,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.244370,0.004154,-0.004249,0.249964,0,0);}
.md6_c01116{transform:matrix(0.244551,0.004891,-0.004999,0.249950,0,0);-ms-transform:matrix(0.244551,0.004891,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.244551,0.004891,-0.004999,0.249950,0,0);}
.m66_c01116{transform:matrix(0.244825,0.004162,-0.004249,0.249964,0,0);-ms-transform:matrix(0.244825,0.004162,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.244825,0.004162,-0.004249,0.249964,0,0);}
.mdc_c01116{transform:matrix(0.245186,0.004904,-0.004999,0.249950,0,0);-ms-transform:matrix(0.245186,0.004904,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.245186,0.004904,-0.004999,0.249950,0,0);}
.m10_c01116{transform:matrix(0.245946,0.003443,-0.003500,0.249976,0,0);-ms-transform:matrix(0.245946,0.003443,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.245946,0.003443,-0.003500,0.249976,0,0);}
.m140_c01116{transform:matrix(0.246477,0.002958,-0.003000,0.249982,0,0);-ms-transform:matrix(0.246477,0.002958,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.246477,0.002958,-0.003000,0.249982,0,0);}
.m61_c01116{transform:matrix(0.247059,0.004200,-0.004249,0.249964,0,0);-ms-transform:matrix(0.247059,0.004200,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.247059,0.004200,-0.004249,0.249964,0,0);}
.m63_c01116{transform:matrix(0.247439,0.004206,-0.004249,0.249964,0,0);-ms-transform:matrix(0.247439,0.004206,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.247439,0.004206,-0.004249,0.249964,0,0);}
.m65_c01116{transform:matrix(0.247599,0.004209,-0.004249,0.249964,0,0);-ms-transform:matrix(0.247599,0.004209,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.247599,0.004209,-0.004249,0.249964,0,0);}
.m13_c01116{transform:matrix(0.248226,0.003475,-0.003500,0.249976,0,0);-ms-transform:matrix(0.248226,0.003475,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.248226,0.003475,-0.003500,0.249976,0,0);}
.m46_c01116{transform:matrix(0.248409,0.004223,-0.004249,0.249964,0,0);-ms-transform:matrix(0.248409,0.004223,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.248409,0.004223,-0.004249,0.249964,0,0);}
.m77_c01116{transform:matrix(0.248764,0.004229,-0.004249,0.249964,0,0);-ms-transform:matrix(0.248764,0.004229,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.248764,0.004229,-0.004249,0.249964,0,0);}
.m124_c01116{transform:matrix(0.248985,0.005229,-0.005249,0.249945,0,0);-ms-transform:matrix(0.248985,0.005229,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.248985,0.005229,-0.005249,0.249945,0,0);}
.m40_c01116{transform:matrix(0.249074,0.004234,-0.004249,0.249964,0,0);-ms-transform:matrix(0.249074,0.004234,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.249074,0.004234,-0.004249,0.249964,0,0);}
.m29_c01116{transform:matrix(0.249121,0.003488,-0.003500,0.249976,0,0);-ms-transform:matrix(0.249121,0.003488,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.249121,0.003488,-0.003500,0.249976,0,0);}
.m49_c01116{transform:matrix(0.249174,0.004236,-0.004249,0.249964,0,0);-ms-transform:matrix(0.249174,0.004236,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.249174,0.004236,-0.004249,0.249964,0,0);}
.m6d_c01116{transform:matrix(0.249274,0.004238,-0.004249,0.249964,0,0);-ms-transform:matrix(0.249274,0.004238,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.249274,0.004238,-0.004249,0.249964,0,0);}
.m48_c01116{transform:matrix(0.249469,0.004241,-0.004249,0.249964,0,0);-ms-transform:matrix(0.249469,0.004241,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.249469,0.004241,-0.004249,0.249964,0,0);}
.m9a_c01116{transform:matrix(0.249534,0.004242,-0.004249,0.249964,0,0);-ms-transform:matrix(0.249534,0.004242,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.249534,0.004242,-0.004249,0.249964,0,0);}
.mea_c01116{transform:matrix(0.250335,0.005257,-0.005249,0.249945,0,0);-ms-transform:matrix(0.250335,0.005257,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.250335,0.005257,-0.005249,0.249945,0,0);}
.mf6_c01116{transform:matrix(0.250635,0.005263,-0.005249,0.249945,0,0);-ms-transform:matrix(0.250635,0.005263,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.250635,0.005263,-0.005249,0.249945,0,0);}
.me0_c01116{transform:matrix(0.251395,0.005028,-0.004999,0.249950,0,0);-ms-transform:matrix(0.251395,0.005028,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.251395,0.005028,-0.004999,0.249950,0,0);}
.m24_c01116{transform:matrix(0.252275,0.003532,-0.003500,0.249976,0,0);-ms-transform:matrix(0.252275,0.003532,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.252275,0.003532,-0.003500,0.249976,0,0);}
.ma5_c01116{transform:matrix(0.252569,0.004294,-0.004249,0.249964,0,0);-ms-transform:matrix(0.252569,0.004294,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.252569,0.004294,-0.004249,0.249964,0,0);}
.maa_c01116{transform:matrix(0.252808,0.004298,-0.004249,0.249964,0,0);-ms-transform:matrix(0.252808,0.004298,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.252808,0.004298,-0.004249,0.249964,0,0);}
.m127_c01116{transform:matrix(0.252824,0.005309,-0.005249,0.249945,0,0);-ms-transform:matrix(0.252824,0.005309,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.252824,0.005309,-0.005249,0.249945,0,0);}
.m42_c01116{transform:matrix(0.252843,0.004298,-0.004249,0.249964,0,0);-ms-transform:matrix(0.252843,0.004298,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.252843,0.004298,-0.004249,0.249964,0,0);}
.m12d_c01116{transform:matrix(0.253579,0.005579,-0.005499,0.249940,0,0);-ms-transform:matrix(0.253579,0.005579,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.253579,0.005579,-0.005499,0.249940,0,0);}
.mb3_c01116{transform:matrix(0.253712,0.006089,-0.005998,0.249928,0,0);-ms-transform:matrix(0.253712,0.006089,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.253712,0.006089,-0.005998,0.249928,0,0);}
.me8_c01116{transform:matrix(0.253729,0.005075,-0.004999,0.249950,0,0);-ms-transform:matrix(0.253729,0.005075,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.253729,0.005075,-0.004999,0.249950,0,0);}
.m129_c01116{transform:matrix(0.254039,0.005335,-0.005249,0.249945,0,0);-ms-transform:matrix(0.254039,0.005335,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.254039,0.005335,-0.005249,0.249945,0,0);}
.md7_c01116{transform:matrix(0.254124,0.005082,-0.004999,0.249950,0,0);-ms-transform:matrix(0.254124,0.005082,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.254124,0.005082,-0.004999,0.249950,0,0);}
.mf9_c01116{transform:matrix(0.254624,0.005347,-0.005249,0.249945,0,0);-ms-transform:matrix(0.254624,0.005347,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.254624,0.005347,-0.005249,0.249945,0,0);}
.m70_c01116{transform:matrix(0.254718,0.004330,-0.004249,0.249964,0,0);-ms-transform:matrix(0.254718,0.004330,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.254718,0.004330,-0.004249,0.249964,0,0);}
.m12f_c01116{transform:matrix(0.255493,0.005621,-0.005499,0.249940,0,0);-ms-transform:matrix(0.255493,0.005621,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.255493,0.005621,-0.005499,0.249940,0,0);}
.mb5_c01116{transform:matrix(0.255836,0.006140,-0.005998,0.249928,0,0);-ms-transform:matrix(0.255836,0.006140,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.255836,0.006140,-0.005998,0.249928,0,0);}
.m7a_c01116{transform:matrix(0.255933,0.004351,-0.004249,0.249964,0,0);-ms-transform:matrix(0.255933,0.004351,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.255933,0.004351,-0.004249,0.249964,0,0);}
.ma7_c01116{transform:matrix(0.255953,0.004351,-0.004249,0.249964,0,0);-ms-transform:matrix(0.255953,0.004351,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.255953,0.004351,-0.004249,0.249964,0,0);}
.ma6_c01116{transform:matrix(0.256188,0.004355,-0.004249,0.249964,0,0);-ms-transform:matrix(0.256188,0.004355,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.256188,0.004355,-0.004249,0.249964,0,0);}
.m5d_c01116{transform:matrix(0.256288,0.004357,-0.004249,0.249964,0,0);-ms-transform:matrix(0.256288,0.004357,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.256288,0.004357,-0.004249,0.249964,0,0);}
.mdd_c01116{transform:matrix(0.256294,0.005126,-0.004999,0.249950,0,0);-ms-transform:matrix(0.256294,0.005126,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.256294,0.005126,-0.004999,0.249950,0,0);}
.m120_c01116{transform:matrix(0.256878,0.005394,-0.005249,0.249945,0,0);-ms-transform:matrix(0.256878,0.005394,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.256878,0.005394,-0.005249,0.249945,0,0);}
.m68_c01116{transform:matrix(0.257063,0.004370,-0.004249,0.249964,0,0);-ms-transform:matrix(0.257063,0.004370,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.257063,0.004370,-0.004249,0.249964,0,0);}
.maf_c01116{transform:matrix(0.257106,0.006171,-0.005998,0.249928,0,0);-ms-transform:matrix(0.257106,0.006171,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.257106,0.006171,-0.005998,0.249928,0,0);}
.m4a_c01116{transform:matrix(0.257583,0.004379,-0.004249,0.249964,0,0);-ms-transform:matrix(0.257583,0.004379,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.257583,0.004379,-0.004249,0.249964,0,0);}
.me2_c01116{transform:matrix(0.257883,0.005158,-0.004999,0.249950,0,0);-ms-transform:matrix(0.257883,0.005158,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.257883,0.005158,-0.004999,0.249950,0,0);}
.ma0_c01116{transform:matrix(0.257963,0.004385,-0.004249,0.249964,0,0);-ms-transform:matrix(0.257963,0.004385,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.257963,0.004385,-0.004249,0.249964,0,0);}
.m80_c01116{transform:matrix(0.258233,0.004390,-0.004249,0.249964,0,0);-ms-transform:matrix(0.258233,0.004390,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.258233,0.004390,-0.004249,0.249964,0,0);}
.md8_c01116{transform:matrix(0.258428,0.005169,-0.004999,0.249950,0,0);-ms-transform:matrix(0.258428,0.005169,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.258428,0.005169,-0.004999,0.249950,0,0);}
.mae_c01116{transform:matrix(0.258915,0.006214,-0.005998,0.249928,0,0);-ms-transform:matrix(0.258915,0.006214,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.258915,0.006214,-0.005998,0.249928,0,0);}
.m3e_c01116{transform:matrix(0.259478,0.004411,-0.004249,0.249964,0,0);-ms-transform:matrix(0.259478,0.004411,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.259478,0.004411,-0.004249,0.249964,0,0);}
.m37_c01116{transform:matrix(0.259567,0.004413,-0.004249,0.249964,0,0);-ms-transform:matrix(0.259567,0.004413,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.259567,0.004413,-0.004249,0.249964,0,0);}
.mc_c01116{transform:matrix(0.259900,0.003639,-0.003500,0.249976,0,0);-ms-transform:matrix(0.259900,0.003639,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.259900,0.003639,-0.003500,0.249976,0,0);}
.mdf_c01116{transform:matrix(0.260538,0.005211,-0.004999,0.249950,0,0);-ms-transform:matrix(0.260538,0.005211,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.260538,0.005211,-0.004999,0.249950,0,0);}
.m83_c01116{transform:matrix(0.261607,0.004447,-0.004249,0.249964,0,0);-ms-transform:matrix(0.261607,0.004447,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.261607,0.004447,-0.004249,0.249964,0,0);}
.mef_c01116{transform:matrix(0.261867,0.005499,-0.005249,0.249945,0,0);-ms-transform:matrix(0.261867,0.005499,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.261867,0.005499,-0.005249,0.249945,0,0);}
.m131_c01116{transform:matrix(0.262332,0.005771,-0.005499,0.249940,0,0);-ms-transform:matrix(0.262332,0.005771,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.262332,0.005771,-0.005499,0.249940,0,0);}
.me5_c01116{transform:matrix(0.262448,0.005249,-0.004999,0.249950,0,0);-ms-transform:matrix(0.262448,0.005249,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.262448,0.005249,-0.004999,0.249950,0,0);}
.mcf_c01116{transform:matrix(0.262523,0.005250,-0.004999,0.249950,0,0);-ms-transform:matrix(0.262523,0.005250,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.262523,0.005250,-0.004999,0.249950,0,0);}
.m3b_c01116{transform:matrix(0.262902,0.004469,-0.004249,0.249964,0,0);-ms-transform:matrix(0.262902,0.004469,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.262902,0.004469,-0.004249,0.249964,0,0);}
.m2a_c01116{transform:matrix(0.263044,0.003683,-0.003500,0.249976,0,0);-ms-transform:matrix(0.263044,0.003683,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.263044,0.003683,-0.003500,0.249976,0,0);}
.md2_c01116{transform:matrix(0.263472,0.005269,-0.004999,0.249950,0,0);-ms-transform:matrix(0.263472,0.005269,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.263472,0.005269,-0.004999,0.249950,0,0);}
.m15_c01116{transform:matrix(0.264144,0.003698,-0.003500,0.249976,0,0);-ms-transform:matrix(0.264144,0.003698,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.264144,0.003698,-0.003500,0.249976,0,0);}
.m4c_c01116{transform:matrix(0.265182,0.004508,-0.004249,0.249964,0,0);-ms-transform:matrix(0.265182,0.004508,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.265182,0.004508,-0.004249,0.249964,0,0);}
.me4_c01116{transform:matrix(0.265442,0.005309,-0.004999,0.249950,0,0);-ms-transform:matrix(0.265442,0.005309,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.265442,0.005309,-0.004999,0.249950,0,0);}
.mcc_c01116{transform:matrix(0.265547,0.005311,-0.004999,0.249950,0,0);-ms-transform:matrix(0.265547,0.005311,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.265547,0.005311,-0.004999,0.249950,0,0);}
.m6b_c01116{transform:matrix(0.265972,0.004522,-0.004249,0.249964,0,0);-ms-transform:matrix(0.265972,0.004522,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.265972,0.004522,-0.004249,0.249964,0,0);}
.mf3_c01116{transform:matrix(0.265991,0.005586,-0.005249,0.249945,0,0);-ms-transform:matrix(0.265991,0.005586,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.265991,0.005586,-0.005249,0.249945,0,0);}
.mab_c01116{transform:matrix(0.266077,0.004523,-0.004249,0.249964,0,0);-ms-transform:matrix(0.266077,0.004523,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.266077,0.004523,-0.004249,0.249964,0,0);}
.ma4_c01116{transform:matrix(0.266611,0.004532,-0.004249,0.249964,0,0);-ms-transform:matrix(0.266611,0.004532,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.266611,0.004532,-0.004249,0.249964,0,0);}
.m12a_c01116{transform:matrix(0.267701,0.005622,-0.005249,0.249945,0,0);-ms-transform:matrix(0.267701,0.005622,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.267701,0.005622,-0.005249,0.249945,0,0);}
.mfa_c01116{transform:matrix(0.268036,0.005629,-0.005249,0.249945,0,0);-ms-transform:matrix(0.268036,0.005629,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.268036,0.005629,-0.005249,0.249945,0,0);}
.m125_c01116{transform:matrix(0.268166,0.005631,-0.005249,0.249945,0,0);-ms-transform:matrix(0.268166,0.005631,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.268166,0.005631,-0.005249,0.249945,0,0);}
.m71_c01116{transform:matrix(0.268426,0.004563,-0.004249,0.249964,0,0);-ms-transform:matrix(0.268426,0.004563,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.268426,0.004563,-0.004249,0.249964,0,0);}
.m6f_c01116{transform:matrix(0.268501,0.004565,-0.004249,0.249964,0,0);-ms-transform:matrix(0.268501,0.004565,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.268501,0.004565,-0.004249,0.249964,0,0);}
.md1_c01116{transform:matrix(0.268661,0.005373,-0.004999,0.249950,0,0);-ms-transform:matrix(0.268661,0.005373,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.268661,0.005373,-0.004999,0.249950,0,0);}
.m98_c01116{transform:matrix(0.271181,0.004610,-0.004249,0.249964,0,0);-ms-transform:matrix(0.271181,0.004610,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.271181,0.004610,-0.004249,0.249964,0,0);}
.meb_c01116{transform:matrix(0.271475,0.005701,-0.005249,0.249945,0,0);-ms-transform:matrix(0.271475,0.005701,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.271475,0.005701,-0.005249,0.249945,0,0);}
.mad_c01116{transform:matrix(0.271637,0.006519,-0.005998,0.249928,0,0);-ms-transform:matrix(0.271637,0.006519,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.271637,0.006519,-0.005998,0.249928,0,0);}
.mcd_c01116{transform:matrix(0.271751,0.005435,-0.004999,0.249950,0,0);-ms-transform:matrix(0.271751,0.005435,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.271751,0.005435,-0.004999,0.249950,0,0);}
.ma9_c01116{transform:matrix(0.272041,0.004625,-0.004249,0.249964,0,0);-ms-transform:matrix(0.272041,0.004625,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.272041,0.004625,-0.004249,0.249964,0,0);}
.m3d_c01116{transform:matrix(0.272461,0.004632,-0.004249,0.249964,0,0);-ms-transform:matrix(0.272461,0.004632,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.272461,0.004632,-0.004249,0.249964,0,0);}
.md0_c01116{transform:matrix(0.272635,0.005453,-0.004999,0.249950,0,0);-ms-transform:matrix(0.272635,0.005453,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.272635,0.005453,-0.004999,0.249950,0,0);}
.m126_c01116{transform:matrix(0.272795,0.005729,-0.005249,0.249945,0,0);-ms-transform:matrix(0.272795,0.005729,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.272795,0.005729,-0.005249,0.249945,0,0);}
.mf1_c01116{transform:matrix(0.274005,0.005754,-0.005249,0.249945,0,0);-ms-transform:matrix(0.274005,0.005754,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.274005,0.005754,-0.005249,0.249945,0,0);}
.m36_c01116{transform:matrix(0.274135,0.004660,-0.004249,0.249964,0,0);-ms-transform:matrix(0.274135,0.004660,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.274135,0.004660,-0.004249,0.249964,0,0);}
.md3_c01116{transform:matrix(0.274365,0.005487,-0.004999,0.249950,0,0);-ms-transform:matrix(0.274365,0.005487,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.274365,0.005487,-0.004999,0.249950,0,0);}
.mf2_c01116{transform:matrix(0.274434,0.005763,-0.005249,0.249945,0,0);-ms-transform:matrix(0.274434,0.005763,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.274434,0.005763,-0.005249,0.249945,0,0);}
.med_c01116{transform:matrix(0.274974,0.005774,-0.005249,0.249945,0,0);-ms-transform:matrix(0.274974,0.005774,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.274974,0.005774,-0.005249,0.249945,0,0);}
.mac_c01116{transform:matrix(0.274976,0.006599,-0.005998,0.249928,0,0);-ms-transform:matrix(0.274976,0.006599,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.274976,0.006599,-0.005998,0.249928,0,0);}
.m123_c01116{transform:matrix(0.275019,0.005775,-0.005249,0.249945,0,0);-ms-transform:matrix(0.275019,0.005775,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.275019,0.005775,-0.005249,0.249945,0,0);}
.m6c_c01116{transform:matrix(0.275340,0.004681,-0.004249,0.249964,0,0);-ms-transform:matrix(0.275340,0.004681,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.275340,0.004681,-0.004249,0.249964,0,0);}
.m9f_c01116{transform:matrix(0.275430,0.004682,-0.004249,0.249964,0,0);-ms-transform:matrix(0.275430,0.004682,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.275430,0.004682,-0.004249,0.249964,0,0);}
.mb1_c01116{transform:matrix(0.275566,0.006614,-0.005998,0.249928,0,0);-ms-transform:matrix(0.275566,0.006614,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.275566,0.006614,-0.005998,0.249928,0,0);}
.mf8_c01116{transform:matrix(0.276159,0.005799,-0.005249,0.249945,0,0);-ms-transform:matrix(0.276159,0.005799,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.276159,0.005799,-0.005249,0.249945,0,0);}
.ma1_c01116{transform:matrix(0.277190,0.004712,-0.004249,0.249964,0,0);-ms-transform:matrix(0.277190,0.004712,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.277190,0.004712,-0.004249,0.249964,0,0);}
.mf7_c01116{transform:matrix(0.278049,0.005839,-0.005249,0.249945,0,0);-ms-transform:matrix(0.278049,0.005839,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.278049,0.005839,-0.005249,0.249945,0,0);}
.m35_c01116{transform:matrix(0.279105,0.004745,-0.004249,0.249964,0,0);-ms-transform:matrix(0.279105,0.004745,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.279105,0.004745,-0.004249,0.249964,0,0);}
.mf5_c01116{transform:matrix(0.279448,0.005868,-0.005249,0.249945,0,0);-ms-transform:matrix(0.279448,0.005868,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.279448,0.005868,-0.005249,0.249945,0,0);}
.me6_c01116{transform:matrix(0.282079,0.005642,-0.004999,0.249950,0,0);-ms-transform:matrix(0.282079,0.005642,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.282079,0.005642,-0.004999,0.249950,0,0);}
.m3a_c01116{transform:matrix(0.283184,0.004814,-0.004249,0.249964,0,0);-ms-transform:matrix(0.283184,0.004814,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.283184,0.004814,-0.004249,0.249964,0,0);}
.m45_c01116{transform:matrix(0.283324,0.004817,-0.004249,0.249964,0,0);-ms-transform:matrix(0.283324,0.004817,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.283324,0.004817,-0.004249,0.249964,0,0);}
.mb4_c01116{transform:matrix(0.283963,0.006815,-0.005998,0.249928,0,0);-ms-transform:matrix(0.283963,0.006815,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.283963,0.006815,-0.005998,0.249928,0,0);}
.m11_c01116{transform:matrix(0.284802,0.003987,-0.003500,0.249976,0,0);-ms-transform:matrix(0.284802,0.003987,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.284802,0.003987,-0.003500,0.249976,0,0);}
.m8_c01116{transform:matrix(0.285032,0.003990,-0.003500,0.249976,0,0);-ms-transform:matrix(0.285032,0.003990,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.285032,0.003990,-0.003500,0.249976,0,0);}
.mfb_c01116{transform:matrix(0.288346,0.006055,-0.005249,0.249945,0,0);-ms-transform:matrix(0.288346,0.006055,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.288346,0.006055,-0.005249,0.249945,0,0);}
.me7_c01116{transform:matrix(0.291672,0.005833,-0.004999,0.249950,0,0);-ms-transform:matrix(0.291672,0.005833,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.291672,0.005833,-0.004999,0.249950,0,0);}
.m38_c01116{transform:matrix(0.292513,0.004973,-0.004249,0.249964,0,0);-ms-transform:matrix(0.292513,0.004973,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.292513,0.004973,-0.004249,0.249964,0,0);}
.m44_c01116{transform:matrix(0.294857,0.005013,-0.004249,0.249964,0,0);-ms-transform:matrix(0.294857,0.005013,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.294857,0.005013,-0.004249,0.249964,0,0);}
.m39_c01116{transform:matrix(0.296057,0.005033,-0.004249,0.249964,0,0);-ms-transform:matrix(0.296057,0.005033,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.296057,0.005033,-0.004249,0.249964,0,0);}
.mec_c01116{transform:matrix(0.302228,0.006347,-0.005249,0.249945,0,0);-ms-transform:matrix(0.302228,0.006347,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.302228,0.006347,-0.005249,0.249945,0,0);}
.m16_c01116{transform:matrix(0.305865,0.004282,-0.003500,0.249976,0,0);-ms-transform:matrix(0.305865,0.004282,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.305865,0.004282,-0.003500,0.249976,0,0);}
.m3c_c01116{transform:matrix(0.307836,0.005233,-0.004249,0.249964,0,0);-ms-transform:matrix(0.307836,0.005233,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.307836,0.005233,-0.004249,0.249964,0,0);}
.m73_c01116{transform:matrix(0.313055,0.005322,-0.004249,0.249964,0,0);-ms-transform:matrix(0.313055,0.005322,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.313055,0.005322,-0.004249,0.249964,0,0);}
.m2_c01116{transform:matrix(0.325090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325090,0.000000,0.000000,0.250000,0,0);}
.m10a_c01116{transform:matrix(0.325498,0.006835,-0.005249,0.249945,0,0);-ms-transform:matrix(0.325498,0.006835,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.325498,0.006835,-0.005249,0.249945,0,0);}
.m10b_c01116{transform:matrix(0.331997,0.006972,-0.005249,0.249945,0,0);-ms-transform:matrix(0.331997,0.006972,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.331997,0.006972,-0.005249,0.249945,0,0);}
.m6a_c01116{transform:matrix(0.335387,0.005702,-0.004249,0.249964,0,0);-ms-transform:matrix(0.335387,0.005702,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.335387,0.005702,-0.004249,0.249964,0,0);}
.m1_c01116{transform:matrix(0.377310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377310,0.000000,0.000000,0.250000,0,0);}
.m3f_c01116{transform:matrix(0.429483,0.007301,-0.004249,0.249964,0,0);-ms-transform:matrix(0.429483,0.007301,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.429483,0.007301,-0.004249,0.249964,0,0);}
.m5a_c01116{transform:matrix(0.442256,0.007518,-0.004249,0.249964,0,0);-ms-transform:matrix(0.442256,0.007518,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.442256,0.007518,-0.004249,0.249964,0,0);}
.v0_c01116{vertical-align:0.000000px;}
.ls0_c01116{letter-spacing:0.000000px;}
.sc__c01116{text-shadow:none;}
.sc0_c01116{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__c01116{-webkit-text-stroke:0px transparent;}
.sc0_c01116{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01116{word-spacing:0.000000px;}
.fc0_c01116{color:transparent;}
.fs6_c01116{font-size:66.009536px;}
.fs2_c01116{font-size:72.007056px;}
.fs7_c01116{font-size:72.010403px;}
.fse_c01116{font-size:72.014399px;}
.fs10_c01116{font-size:72.015874px;}
.fsb_c01116{font-size:72.020733px;}
.fs0_c01116{font-size:78.000000px;}
.fs4_c01116{font-size:78.007644px;}
.fs9_c01116{font-size:78.011270px;}
.fsf_c01116{font-size:78.015598px;}
.fs12_c01116{font-size:78.018874px;}
.fs14_c01116{font-size:84.006048px;}
.fs1_c01116{font-size:84.008232px;}
.fsa_c01116{font-size:84.012137px;}
.fs11_c01116{font-size:84.018520px;}
.fsc_c01116{font-size:84.024189px;}
.fs3_c01116{font-size:90.008820px;}
.fs8_c01116{font-size:90.013004px;}
.fsd_c01116{font-size:90.025916px;}
.fs13_c01116{font-size:96.006912px;}
.fs5_c01116{font-size:102.014738px;}
.y0_c01116{bottom:0.000000px;}
.y148_c01116{bottom:60.913548px;}
.y147_c01116{bottom:61.282290px;}
.y146_c01116{bottom:62.746686px;}
.y145_c01116{bottom:63.471192px;}
.y144_c01116{bottom:64.799670px;}
.y143_c01116{bottom:95.798406px;}
.y142_c01116{bottom:96.196890px;}
.y141_c01116{bottom:97.263246px;}
.y140_c01116{bottom:97.661820px;}
.y13f_c01116{bottom:98.722236px;}
.y13e_c01116{bottom:99.106842px;}
.y13d_c01116{bottom:99.780672px;}
.y13c_c01116{bottom:100.173000px;}
.y13b_c01116{bottom:142.137906px;}
.y13a_c01116{bottom:142.874664px;}
.y139_c01116{bottom:143.611818px;}
.y138_c01116{bottom:144.079527px;}
.y137_c01116{bottom:147.248847px;}
.y136_c01116{bottom:147.984054px;}
.y135_c01116{bottom:150.410379px;}
.y134_c01116{bottom:151.408068px;}
.y133_c01116{bottom:153.569700px;}
.y132_c01116{bottom:154.311771px;}
.y131_c01116{bottom:155.256000px;}
.y130_c01116{bottom:175.520674px;}
.y12f_c01116{bottom:176.668314px;}
.y12e_c01116{bottom:177.809886px;}
.y12d_c01116{bottom:179.264214px;}
.y12c_c01116{bottom:181.548039px;}
.y12b_c01116{bottom:183.618630px;}
.y12a_c01116{bottom:185.051656px;}
.y129_c01116{bottom:187.874658px;}
.y128_c01116{bottom:189.023841px;}
.y127_c01116{bottom:190.153014px;}
.y126_c01116{bottom:191.923929px;}
.y125_c01116{bottom:192.475839px;}
.y124_c01116{bottom:212.764951px;}
.y123_c01116{bottom:213.462456px;}
.y122_c01116{bottom:215.305993px;}
.y121_c01116{bottom:216.252190px;}
.y120_c01116{bottom:218.307250px;}
.y11f_c01116{bottom:219.520473px;}
.y11e_c01116{bottom:221.630185px;}
.y11d_c01116{bottom:222.316350px;}
.y11c_c01116{bottom:223.008531px;}
.y11b_c01116{bottom:224.153619px;}
.y11a_c01116{bottom:224.854746px;}
.y119_c01116{bottom:226.234036px;}
.y118_c01116{bottom:249.085876px;}
.y117_c01116{bottom:250.103548px;}
.y116_c01116{bottom:250.701738px;}
.y115_c01116{bottom:251.723851px;}
.y114_c01116{bottom:252.302676px;}
.y113_c01116{bottom:253.304731px;}
.y112_c01116{bottom:253.903141px;}
.y111_c01116{bottom:255.681834px;}
.y110_c01116{bottom:256.283469px;}
.y10f_c01116{bottom:257.476635px;}
.y10e_c01116{bottom:257.890310px;}
.y10d_c01116{bottom:258.875721px;}
.y10c_c01116{bottom:259.477482px;}
.y10b_c01116{bottom:260.445029px;}
.y10a_c01116{bottom:261.071427px;}
.y109_c01116{bottom:286.544148px;}
.y108_c01116{bottom:287.789017px;}
.y107_c01116{bottom:288.834504px;}
.y106_c01116{bottom:289.927455px;}
.y105_c01116{bottom:291.142170px;}
.y104_c01116{bottom:291.850416px;}
.y103_c01116{bottom:292.746114px;}
.y102_c01116{bottom:293.086662px;}
.y101_c01116{bottom:293.964558px;}
.y100_c01116{bottom:295.385642px;}
.yff_c01116{bottom:295.912287px;}
.yfe_c01116{bottom:296.447084px;}
.yfd_c01116{bottom:319.183602px;}
.yfc_c01116{bottom:320.349827px;}
.yfb_c01116{bottom:321.058419px;}
.yfa_c01116{bottom:323.820528px;}
.yf9_c01116{bottom:326.366988px;}
.yf8_c01116{bottom:327.324052px;}
.yf7_c01116{bottom:330.325310px;}
.yf6_c01116{bottom:331.242212px;}
.yf5_c01116{bottom:332.637662px;}
.yf4_c01116{bottom:356.497795px;}
.yf3_c01116{bottom:358.801926px;}
.yf2_c01116{bottom:359.516440px;}
.yf1_c01116{bottom:361.131067px;}
.yf0_c01116{bottom:362.034078px;}
.yef_c01116{bottom:363.242103px;}
.yee_c01116{bottom:363.994669px;}
.yed_c01116{bottom:366.253062px;}
.yec_c01116{bottom:367.206000px;}
.yeb_c01116{bottom:391.448460px;}
.yea_c01116{bottom:394.288860px;}
.ye9_c01116{bottom:394.817700px;}
.ye8_c01116{bottom:396.780660px;}
.ye7_c01116{bottom:397.108830px;}
.ye6_c01116{bottom:398.437470px;}
.ye5_c01116{bottom:398.926560px;}
.ye4_c01116{bottom:399.778710px;}
.ye3_c01116{bottom:400.264230px;}
.ye2_c01116{bottom:401.232180px;}
.ye1_c01116{bottom:401.748120px;}
.ye0_c01116{bottom:425.167170px;}
.ydf_c01116{bottom:427.478460px;}
.yde_c01116{bottom:428.369220px;}
.ydd_c01116{bottom:429.250590px;}
.ydc_c01116{bottom:429.769770px;}
.ydb_c01116{bottom:430.667040px;}
.yda_c01116{bottom:433.131180px;}
.yd9_c01116{bottom:434.920260px;}
.yd8_c01116{bottom:436.159530px;}
.yd7_c01116{bottom:436.854630px;}
.yd6_c01116{bottom:461.392620px;}
.yd5_c01116{bottom:463.716420px;}
.yd4_c01116{bottom:464.829450px;}
.yd3_c01116{bottom:466.174440px;}
.yd2_c01116{bottom:467.934930px;}
.yd1_c01116{bottom:469.290720px;}
.yd0_c01116{bottom:470.153370px;}
.ycf_c01116{bottom:471.925950px;}
.yce_c01116{bottom:473.481390px;}
.ycd_c01116{bottom:474.124500px;}
.ycc_c01116{bottom:499.181892px;}
.ycb_c01116{bottom:504.525948px;}
.yca_c01116{bottom:505.357992px;}
.yc9_c01116{bottom:505.958256px;}
.yc8_c01116{bottom:507.239280px;}
.yc7_c01116{bottom:508.233120px;}
.yc6_c01116{bottom:508.656972px;}
.yc5_c01116{bottom:532.581288px;}
.yc4_c01116{bottom:534.270924px;}
.yc3_c01116{bottom:534.825888px;}
.yc2_c01116{bottom:535.410684px;}
.yc1_c01116{bottom:536.166948px;}
.yc0_c01116{bottom:537.656520px;}
.ybf_c01116{bottom:538.621212px;}
.ybe_c01116{bottom:539.177040px;}
.ybd_c01116{bottom:540.687324px;}
.ybc_c01116{bottom:541.793184px;}
.ybb_c01116{bottom:542.385204px;}
.yba_c01116{bottom:542.935944px;}
.yb9_c01116{bottom:543.681072px;}
.yb8_c01116{bottom:544.061184px;}
.yb7_c01116{bottom:545.123076px;}
.yb6_c01116{bottom:569.605512px;}
.yb5_c01116{bottom:570.409716px;}
.yb4_c01116{bottom:571.213164px;}
.yb3_c01116{bottom:573.598344px;}
.yb2_c01116{bottom:574.415040px;}
.yb1_c01116{bottom:575.741352px;}
.yb0_c01116{bottom:577.065216px;}
.yaf_c01116{bottom:579.152568px;}
.yae_c01116{bottom:581.317500px;}
.yad_c01116{bottom:612.140904px;}
.yac_c01116{bottom:612.898458px;}
.yab_c01116{bottom:614.555601px;}
.yaa_c01116{bottom:615.138914px;}
.ya9_c01116{bottom:616.061453px;}
.ya8_c01116{bottom:617.180928px;}
.ya7_c01116{bottom:641.802596px;}
.ya6_c01116{bottom:642.767270px;}
.ya5_c01116{bottom:643.220697px;}
.ya4_c01116{bottom:643.693386px;}
.ya3_c01116{bottom:645.390689px;}
.ya2_c01116{bottom:646.328162px;}
.ya1_c01116{bottom:647.874303px;}
.ya0_c01116{bottom:648.506139px;}
.y9f_c01116{bottom:648.966354px;}
.y9e_c01116{bottom:649.264490px;}
.y9d_c01116{bottom:649.881297px;}
.y9c_c01116{bottom:650.663147px;}
.y9b_c01116{bottom:674.212953px;}
.y9a_c01116{bottom:674.645273px;}
.y99_c01116{bottom:676.317113px;}
.y98_c01116{bottom:677.614934px;}
.y97_c01116{bottom:678.219095px;}
.y96_c01116{bottom:679.075574px;}
.y95_c01116{bottom:680.328452px;}
.y94_c01116{bottom:680.985201px;}
.y93_c01116{bottom:682.237034px;}
.y92_c01116{bottom:682.883384px;}
.y91_c01116{bottom:684.976527px;}
.y90_c01116{bottom:685.991949px;}
.y8f_c01116{bottom:686.847128px;}
.y8e_c01116{bottom:710.834850px;}
.y8d_c01116{bottom:711.433236px;}
.y8c_c01116{bottom:712.025298px;}
.y8b_c01116{bottom:713.050100px;}
.y8a_c01116{bottom:713.648868px;}
.y89_c01116{bottom:714.037017px;}
.y88_c01116{bottom:715.829957px;}
.y87_c01116{bottom:717.254531px;}
.y86_c01116{bottom:719.019501px;}
.y85_c01116{bottom:720.983463px;}
.y84_c01116{bottom:721.400321px;}
.y83_c01116{bottom:721.682816px;}
.y82_c01116{bottom:748.228760px;}
.y81_c01116{bottom:748.716124px;}
.y80_c01116{bottom:749.502997px;}
.y7f_c01116{bottom:750.104063px;}
.y7e_c01116{bottom:750.758607px;}
.y7d_c01116{bottom:751.476947px;}
.y7c_c01116{bottom:752.761139px;}
.y7b_c01116{bottom:753.229926px;}
.y7a_c01116{bottom:753.531759px;}
.y79_c01116{bottom:754.760504px;}
.y78_c01116{bottom:755.236843px;}
.y77_c01116{bottom:755.844747px;}
.y76_c01116{bottom:756.314045px;}
.y75_c01116{bottom:756.782577px;}
.y74_c01116{bottom:782.854430px;}
.y73_c01116{bottom:783.388590px;}
.y72_c01116{bottom:784.554485px;}
.y71_c01116{bottom:785.381778px;}
.y70_c01116{bottom:785.841651px;}
.y6f_c01116{bottom:786.037669px;}
.y6e_c01116{bottom:786.722058px;}
.y6d_c01116{bottom:788.202081px;}
.y6c_c01116{bottom:789.048993px;}
.y6b_c01116{bottom:789.547436px;}
.y6a_c01116{bottom:790.379400px;}
.y69_c01116{bottom:790.697409px;}
.y68_c01116{bottom:791.686134px;}
.y67_c01116{bottom:792.200140px;}
.y66_c01116{bottom:792.698583px;}
.y65_c01116{bottom:817.519528px;}
.y64_c01116{bottom:818.068978px;}
.y63_c01116{bottom:818.971391px;}
.y62_c01116{bottom:819.494086px;}
.y61_c01116{bottom:820.022010px;}
.y60_c01116{bottom:820.538204px;}
.y5f_c01116{bottom:821.095890px;}
.y5e_c01116{bottom:821.782404px;}
.y5d_c01116{bottom:822.867759px;}
.y5c_c01116{bottom:823.390481px;}
.y5b_c01116{bottom:824.453544px;}
.y5a_c01116{bottom:825.170892px;}
.y59_c01116{bottom:826.208069px;}
.y58_c01116{bottom:827.802422px;}
.y57_c01116{bottom:854.688373px;}
.y56_c01116{bottom:856.826567px;}
.y55_c01116{bottom:857.901977px;}
.y54_c01116{bottom:858.602337px;}
.y53_c01116{bottom:859.128501px;}
.y52_c01116{bottom:860.545623px;}
.y51_c01116{bottom:861.254326px;}
.y50_c01116{bottom:862.322133px;}
.y4f_c01116{bottom:862.849036px;}
.y4e_c01116{bottom:864.256979px;}
.y4d_c01116{bottom:889.912851px;}
.y4c_c01116{bottom:890.233767px;}
.y4b_c01116{bottom:890.747008px;}
.y4a_c01116{bottom:891.584944px;}
.y49_c01116{bottom:892.399560px;}
.y48_c01116{bottom:893.238108px;}
.y47_c01116{bottom:893.761345px;}
.y46_c01116{bottom:894.424891px;}
.y45_c01116{bottom:896.236269px;}
.y44_c01116{bottom:897.050833px;}
.y43_c01116{bottom:897.743382px;}
.y42_c01116{bottom:898.877821px;}
.y41_c01116{bottom:899.396545px;}
.y40_c01116{bottom:899.902719px;}
.y3f_c01116{bottom:926.520330px;}
.y3e_c01116{bottom:927.089838px;}
.y3d_c01116{bottom:927.364725px;}
.y3c_c01116{bottom:929.098440px;}
.y3b_c01116{bottom:929.681880px;}
.y3a_c01116{bottom:930.418643px;}
.y39_c01116{bottom:931.834127px;}
.y38_c01116{bottom:932.862675px;}
.y37_c01116{bottom:933.290655px;}
.y36_c01116{bottom:934.132780px;}
.y35_c01116{bottom:935.007038px;}
.y34_c01116{bottom:958.949134px;}
.y33_c01116{bottom:960.093447px;}
.y32_c01116{bottom:961.637497px;}
.y31_c01116{bottom:962.379649px;}
.y30_c01116{bottom:963.329958px;}
.y2f_c01116{bottom:965.184522px;}
.y2e_c01116{bottom:965.772119px;}
.y2d_c01116{bottom:966.726788px;}
.y2c_c01116{bottom:967.654222px;}
.y2b_c01116{bottom:968.223000px;}
.y2a_c01116{bottom:997.174746px;}
.y29_c01116{bottom:997.639749px;}
.y28_c01116{bottom:998.875851px;}
.y27_c01116{bottom:999.514818px;}
.y26_c01116{bottom:1000.581093px;}
.y25_c01116{bottom:1001.049603px;}
.y24_c01116{bottom:1001.366514px;}
.y23_c01116{bottom:1002.743190px;}
.y22_c01116{bottom:1003.219428px;}
.y21_c01116{bottom:1003.854510px;}
.y20_c01116{bottom:1029.505173px;}
.y1f_c01116{bottom:1029.899715px;}
.y1e_c01116{bottom:1031.778285px;}
.y1d_c01116{bottom:1032.171798px;}
.y1c_c01116{bottom:1033.487394px;}
.y1b_c01116{bottom:1034.064645px;}
.y1a_c01116{bottom:1035.391233px;}
.y19_c01116{bottom:1035.951393px;}
.y18_c01116{bottom:1037.447547px;}
.y17_c01116{bottom:1038.010773px;}
.y16_c01116{bottom:1039.498770px;}
.y15_c01116{bottom:1069.249395px;}
.y14_c01116{bottom:1069.909077px;}
.y13_c01116{bottom:1070.581536px;}
.y12_c01116{bottom:1071.286764px;}
.y11_c01116{bottom:1071.789219px;}
.y10_c01116{bottom:1073.944284px;}
.yf_c01116{bottom:1074.600081px;}
.ye_c01116{bottom:1100.808726px;}
.yd_c01116{bottom:1101.599628px;}
.yc_c01116{bottom:1102.060851px;}
.yb_c01116{bottom:1103.739486px;}
.ya_c01116{bottom:1103.920275px;}
.y9_c01116{bottom:1105.167822px;}
.y8_c01116{bottom:1105.617600px;}
.y7_c01116{bottom:1105.944024px;}
.y6_c01116{bottom:1107.035919px;}
.y5_c01116{bottom:1107.792108px;}
.y4_c01116{bottom:1108.116411px;}
.y3_c01116{bottom:1109.179326px;}
.y2_c01116{bottom:1109.973000px;}
.y1_c01116{bottom:1203.273000px;}
.h8_c01116{height:66.009536px;}
.h4_c01116{height:72.007056px;}
.h9_c01116{height:72.010403px;}
.h10_c01116{height:72.014399px;}
.h12_c01116{height:72.015874px;}
.hd_c01116{height:72.020733px;}
.h2_c01116{height:78.000000px;}
.h6_c01116{height:78.007644px;}
.hb_c01116{height:78.011270px;}
.h11_c01116{height:78.015598px;}
.h14_c01116{height:78.018874px;}
.h16_c01116{height:84.006048px;}
.h3_c01116{height:84.008232px;}
.hc_c01116{height:84.012137px;}
.h13_c01116{height:84.018520px;}
.he_c01116{height:84.024189px;}
.h5_c01116{height:90.008820px;}
.ha_c01116{height:90.013004px;}
.hf_c01116{height:90.025916px;}
.h15_c01116{height:96.006912px;}
.h7_c01116{height:102.014738px;}
.h0_c01116{height:1246.320000px;}
.h1_c01116{height:1246.500000px;}
.w1_c01116{width:912.750000px;}
.w0_c01116{width:912.870000px;}
.x0_c01116{left:0.000000px;}
.x64_c01116{left:122.511018px;}
.x88_c01116{left:128.505252px;}
.xdf_c01116{left:130.500006px;}
.xc4_c01116{left:131.752743px;}
.xbb_c01116{left:132.869297px;}
.x9d_c01116{left:134.489430px;}
.x74_c01116{left:136.965209px;}
.x53_c01116{left:138.294997px;}
.x20_c01116{left:139.667103px;}
.x30_c01116{left:140.775759px;}
.x4_c01116{left:142.368000px;}
.xd2_c01116{left:153.548894px;}
.x65_c01116{left:161.442881px;}
.xdd_c01116{left:163.716000px;}
.xbc_c01116{left:166.339325px;}
.x93_c01116{left:169.600560px;}
.x54_c01116{left:171.498620px;}
.x38_c01116{left:172.855824px;}
.xd9_c01116{left:175.750500px;}
.x9e_c01116{left:177.947910px;}
.x6b_c01116{left:182.796366px;}
.x11_c01116{left:185.816211px;}
.x89_c01116{left:190.948728px;}
.x75_c01116{left:192.841565px;}
.x5_c01116{left:199.059000px;}
.xb3_c01116{left:200.361423px;}
.x7e_c01116{left:203.878482px;}
.x55_c01116{left:205.794292px;}
.x31_c01116{left:208.001323px;}
.xda_c01116{left:209.481000px;}
.x8a_c01116{left:213.290472px;}
.x21_c01116{left:219.047103px;}
.xc5_c01116{left:220.303319px;}
.xd3_c01116{left:221.656743px;}
.x3f_c01116{left:227.927607px;}
.x17_c01116{left:229.858371px;}
.xce_c01116{left:231.869943px;}
.xa7_c01116{left:233.592540px;}
.x6c_c01116{left:236.260556px;}
.x47_c01116{left:239.512238px;}
.xad_c01116{left:242.716500px;}
.xb4_c01116{left:244.023423px;}
.x81_c01116{left:245.902500px;}
.x5c_c01116{left:248.733740px;}
.x28_c01116{left:250.609500px;}
.xde_c01116{left:251.919000px;}
.xc6_c01116{left:253.746429px;}
.x9f_c01116{left:255.442620px;}
.x8b_c01116{left:257.094816px;}
.x76_c01116{left:258.223905px;}
.x40_c01116{left:260.863668px;}
.x18_c01116{left:263.015985px;}
.xa8_c01116{left:265.971780px;}
.x66_c01116{left:270.527019px;}
.x56_c01116{left:271.721537px;}
.x32_c01116{left:272.807235px;}
.x6_c01116{left:274.981500px;}
.x95_c01116{left:277.866000px;}
.x5d_c01116{left:282.755474px;}
.x29_c01116{left:284.067000px;}
.xcf_c01116{left:286.397943px;}
.xae_c01116{left:288.094500px;}
.x8c_c01116{left:289.485252px;}
.x77_c01116{left:291.120588px;}
.x57_c01116{left:292.899250px;}
.x7_c01116{left:298.146000px;}
.x48_c01116{left:304.317834px;}
.x33_c01116{left:305.749479px;}
.xc7_c01116{left:308.531394px;}
.x22_c01116{left:317.381103px;}
.xd0_c01116{left:319.358943px;}
.xa9_c01116{left:322.759950px;}
.x8d_c01116{left:324.283584px;}
.x41_c01116{left:327.559290px;}
.x12_c01116{left:329.461695px;}
.xc8_c01116{left:331.517343px;}
.x78_c01116{left:336.230883px;}
.x2a_c01116{left:338.622000px;}
.x23_c01116{left:340.017603px;}
.xbd_c01116{left:342.982878px;}
.x94_c01116{left:344.620248px;}
.x6d_c01116{left:346.412307px;}
.x49_c01116{left:349.162599px;}
.x19_c01116{left:351.023289px;}
.x8_c01116{left:352.159500px;}
.x96_c01116{left:355.638000px;}
.x1_c01116{left:359.370000px;}
.x13_c01116{left:362.993733px;}
.xbe_c01116{left:364.273115px;}
.xa0_c01116{left:367.255560px;}
.x67_c01116{left:368.611862px;}
.x5e_c01116{left:370.568462px;}
.x42_c01116{left:371.895555px;}
.x24_c01116{left:373.482603px;}
.x2_c01116{left:380.970000px;}
.x1a_c01116{left:383.961903px;}
.xb5_c01116{left:386.940423px;}
.x7f_c01116{left:389.936982px;}
.x5f_c01116{left:392.118558px;}
.x2b_c01116{left:394.779000px;}
.xc9_c01116{left:397.767501px;}
.x14_c01116{left:410.045082px;}
.x4a_c01116{left:415.579221px;}
.xd4_c01116{left:417.843642px;}
.xbf_c01116{left:420.216973px;}
.x82_c01116{left:423.081000px;}
.x3_c01116{left:426.330000px;}
.x9_c01116{left:430.152000px;}
.xaf_c01116{left:431.473500px;}
.xb6_c01116{left:432.514923px;}
.x80_c01116{left:434.498982px;}
.x58_c01116{left:438.011172px;}
.x97_c01116{left:444.267000px;}
.x6e_c01116{left:446.331416px;}
.x4b_c01116{left:448.269282px;}
.x25_c01116{left:449.645103px;}
.xa_c01116{left:453.468000px;}
.x15_c01116{left:454.862952px;}
.x43_c01116{left:460.463059px;}
.x1b_c01116{left:462.000627px;}
.xdb_c01116{left:463.374000px;}
.xc0_c01116{left:464.447604px;}
.xaa_c01116{left:465.844260px;}
.xd5_c01116{left:472.934346px;}
.x83_c01116{left:478.242000px;}
.x6f_c01116{left:480.903743px;}
.xe0_c01116{left:483.722736px;}
.xb_c01116{left:485.595000px;}
.x98_c01116{left:487.399500px;}
.xb0_c01116{left:488.998500px;}
.x34_c01116{left:493.734755px;}
.x1c_c01116{left:495.945699px;}
.x16_c01116{left:498.875343px;}
.x39_c01116{left:504.229070px;}
.x8e_c01116{left:510.917940px;}
.x79_c01116{left:513.658436px;}
.x4c_c01116{left:516.085430px;}
.x60_c01116{left:517.388459px;}
.xa1_c01116{left:521.224860px;}
.xca_c01116{left:530.053349px;}
.xb1_c01116{left:531.999000px;}
.x84_c01116{left:533.505000px;}
.x44_c01116{left:537.112860px;}
.x2c_c01116{left:538.435500px;}
.xc1_c01116{left:540.370573px;}
.x68_c01116{left:547.374327px;}
.x3a_c01116{left:548.468574px;}
.x35_c01116{left:550.401105px;}
.xd6_c01116{left:552.596999px;}
.xb7_c01116{left:553.774923px;}
.x99_c01116{left:555.189000px;}
.x4d_c01116{left:559.028169px;}
.xcb_c01116{left:563.265427px;}
.x85_c01116{left:567.534000px;}
.x61_c01116{left:568.734585px;}
.x1d_c01116{left:573.306444px;}
.xc_c01116{left:574.705500px;}
.xa2_c01116{left:577.342860px;}
.x59_c01116{left:582.275568px;}
.x26_c01116{left:583.578603px;}
.xd_c01116{left:587.619000px;}
.x70_c01116{left:591.920969px;}
.x2d_c01116{left:594.336000px;}
.x1e_c01116{left:596.484978px;}
.x69_c01116{left:602.250909px;}
.x45_c01116{left:604.344007px;}
.xc2_c01116{left:608.708756px;}
.xa3_c01116{left:609.754440px;}
.x62_c01116{left:615.445457px;}
.x27_c01116{left:616.793103px;}
.xcc_c01116{left:618.914424px;}
.x71_c01116{left:623.752898px;}
.x4e_c01116{left:626.169317px;}
.xab_c01116{left:631.925850px;}
.x7a_c01116{left:634.947132px;}
.x2e_c01116{left:637.992000px;}
.x3b_c01116{left:639.253160px;}
.xd7_c01116{left:640.412769px;}
.x9a_c01116{left:643.213500px;}
.xcd_c01116{left:651.050940px;}
.xd1_c01116{left:653.185443px;}
.x8f_c01116{left:655.203132px;}
.x4f_c01116{left:659.165378px;}
.xdc_c01116{left:662.112000px;}
.xa4_c01116{left:664.852350px;}
.x86_c01116{left:666.916500px;}
.x7b_c01116{left:668.665841px;}
.xc3_c01116{left:674.072123px;}
.x5a_c01116{left:681.083909px;}
.xb8_c01116{left:685.303923px;}
.x50_c01116{left:691.853939px;}
.x3c_c01116{left:693.526496px;}
.xd8_c01116{left:696.374910px;}
.x90_c01116{left:699.721620px;}
.x7c_c01116{left:701.074998px;}
.xe_c01116{left:707.521500px;}
.x9b_c01116{left:710.463000px;}
.x63_c01116{left:714.564506px;}
.xb9_c01116{left:719.046423px;}
.xa5_c01116{left:720.494790px;}
.x6a_c01116{left:725.322318px;}
.x2f_c01116{left:728.818500px;}
.x1f_c01116{left:730.237371px;}
.x87_c01116{left:733.902000px;}
.x46_c01116{left:737.975277px;}
.xf_c01116{left:740.466000px;}
.x51_c01116{left:748.290908px;}
.x36_c01116{left:749.740646px;}
.xb2_c01116{left:752.631000px;}
.x5b_c01116{left:758.845061px;}
.x91_c01116{left:766.722852px;}
.x7d_c01116{left:770.000517px;}
.xba_c01116{left:774.580923px;}
.x72_c01116{left:780.080594px;}
.x52_c01116{left:782.641494px;}
.x3d_c01116{left:783.687081px;}
.x37_c01116{left:793.567629px;}
.x10_c01116{left:796.959000px;}
.x73_c01116{left:802.863329px;}
.x3e_c01116{left:805.035795px;}
.xac_c01116{left:821.289780px;}
.xa6_c01116{left:864.945840px;}
.x92_c01116{left:866.078520px;}
.x9c_c01116{left:882.304500px;}
@media print{
.v0_c01116{vertical-align:0.000000pt;}
.ls0_c01116{letter-spacing:0.000000pt;}
.ws0_c01116{word-spacing:0.000000pt;}
.fs6_c01116{font-size:58.675143pt;}
.fs2_c01116{font-size:64.006272pt;}
.fs7_c01116{font-size:64.009247pt;}
.fse_c01116{font-size:64.012799pt;}
.fs10_c01116{font-size:64.014110pt;}
.fsb_c01116{font-size:64.018429pt;}
.fs0_c01116{font-size:69.333333pt;}
.fs4_c01116{font-size:69.340128pt;}
.fs9_c01116{font-size:69.343351pt;}
.fsf_c01116{font-size:69.347199pt;}
.fs12_c01116{font-size:69.350110pt;}
.fs14_c01116{font-size:74.672042pt;}
.fs1_c01116{font-size:74.673984pt;}
.fsa_c01116{font-size:74.677455pt;}
.fs11_c01116{font-size:74.683129pt;}
.fsc_c01116{font-size:74.688168pt;}
.fs3_c01116{font-size:80.007840pt;}
.fs8_c01116{font-size:80.011559pt;}
.fsd_c01116{font-size:80.023037pt;}
.fs13_c01116{font-size:85.339477pt;}
.fs5_c01116{font-size:90.679767pt;}
.y0_c01116{bottom:0.000000pt;}
.y148_c01116{bottom:54.145376pt;}
.y147_c01116{bottom:54.473147pt;}
.y146_c01116{bottom:55.774832pt;}
.y145_c01116{bottom:56.418837pt;}
.y144_c01116{bottom:57.599707pt;}
.y143_c01116{bottom:85.154139pt;}
.y142_c01116{bottom:85.508347pt;}
.y141_c01116{bottom:86.456219pt;}
.y140_c01116{bottom:86.810507pt;}
.y13f_c01116{bottom:87.753099pt;}
.y13e_c01116{bottom:88.094971pt;}
.y13d_c01116{bottom:88.693931pt;}
.y13c_c01116{bottom:89.042667pt;}
.y13b_c01116{bottom:126.344805pt;}
.y13a_c01116{bottom:126.999701pt;}
.y139_c01116{bottom:127.654949pt;}
.y138_c01116{bottom:128.070691pt;}
.y137_c01116{bottom:130.887864pt;}
.y136_c01116{bottom:131.541381pt;}
.y135_c01116{bottom:133.698115pt;}
.y134_c01116{bottom:134.584949pt;}
.y133_c01116{bottom:136.506400pt;}
.y132_c01116{bottom:137.166019pt;}
.y131_c01116{bottom:138.005333pt;}
.y130_c01116{bottom:156.018377pt;}
.y12f_c01116{bottom:157.038501pt;}
.y12e_c01116{bottom:158.053232pt;}
.y12d_c01116{bottom:159.345968pt;}
.y12c_c01116{bottom:161.376035pt;}
.y12b_c01116{bottom:163.216560pt;}
.y12a_c01116{bottom:164.490361pt;}
.y129_c01116{bottom:166.999696pt;}
.y128_c01116{bottom:168.021192pt;}
.y127_c01116{bottom:169.024901pt;}
.y126_c01116{bottom:170.599048pt;}
.y125_c01116{bottom:171.089635pt;}
.y124_c01116{bottom:189.124401pt;}
.y123_c01116{bottom:189.744405pt;}
.y122_c01116{bottom:191.383105pt;}
.y121_c01116{bottom:192.224169pt;}
.y120_c01116{bottom:194.050889pt;}
.y11f_c01116{bottom:195.129309pt;}
.y11e_c01116{bottom:197.004609pt;}
.y11d_c01116{bottom:197.614533pt;}
.y11c_c01116{bottom:198.229805pt;}
.y11b_c01116{bottom:199.247661pt;}
.y11a_c01116{bottom:199.870885pt;}
.y119_c01116{bottom:201.096921pt;}
.y118_c01116{bottom:221.409668pt;}
.y117_c01116{bottom:222.314265pt;}
.y116_c01116{bottom:222.845989pt;}
.y115_c01116{bottom:223.754535pt;}
.y114_c01116{bottom:224.269045pt;}
.y113_c01116{bottom:225.159761pt;}
.y112_c01116{bottom:225.691681pt;}
.y111_c01116{bottom:227.272741pt;}
.y110_c01116{bottom:227.807528pt;}
.y10f_c01116{bottom:228.868120pt;}
.y10e_c01116{bottom:229.235831pt;}
.y10d_c01116{bottom:230.111752pt;}
.y10c_c01116{bottom:230.646651pt;}
.y10b_c01116{bottom:231.506692pt;}
.y10a_c01116{bottom:232.063491pt;}
.y109_c01116{bottom:254.705909pt;}
.y108_c01116{bottom:255.812460pt;}
.y107_c01116{bottom:256.741781pt;}
.y106_c01116{bottom:257.713293pt;}
.y105_c01116{bottom:258.793040pt;}
.y104_c01116{bottom:259.422592pt;}
.y103_c01116{bottom:260.218768pt;}
.y102_c01116{bottom:260.521477pt;}
.y101_c01116{bottom:261.301829pt;}
.y100_c01116{bottom:262.565015pt;}
.yff_c01116{bottom:263.033144pt;}
.yfe_c01116{bottom:263.508519pt;}
.yfd_c01116{bottom:283.718757pt;}
.yfc_c01116{bottom:284.755401pt;}
.yfb_c01116{bottom:285.385261pt;}
.yfa_c01116{bottom:287.840469pt;}
.yf9_c01116{bottom:290.103989pt;}
.yf8_c01116{bottom:290.954713pt;}
.yf7_c01116{bottom:293.622497pt;}
.yf6_c01116{bottom:294.437521pt;}
.yf5_c01116{bottom:295.677921pt;}
.yf4_c01116{bottom:316.886929pt;}
.yf3_c01116{bottom:318.935045pt;}
.yf2_c01116{bottom:319.570169pt;}
.yf1_c01116{bottom:321.005393pt;}
.yf0_c01116{bottom:321.808069pt;}
.yef_c01116{bottom:322.881869pt;}
.yee_c01116{bottom:323.550817pt;}
.yed_c01116{bottom:325.558277pt;}
.yec_c01116{bottom:326.405333pt;}
.yeb_c01116{bottom:347.954187pt;}
.yea_c01116{bottom:350.478987pt;}
.ye9_c01116{bottom:350.949067pt;}
.ye8_c01116{bottom:352.693920pt;}
.ye7_c01116{bottom:352.985627pt;}
.ye6_c01116{bottom:354.166640pt;}
.ye5_c01116{bottom:354.601387pt;}
.ye4_c01116{bottom:355.358853pt;}
.ye3_c01116{bottom:355.790427pt;}
.ye2_c01116{bottom:356.650827pt;}
.ye1_c01116{bottom:357.109440pt;}
.ye0_c01116{bottom:377.926373pt;}
.ydf_c01116{bottom:379.980853pt;}
.yde_c01116{bottom:380.772640pt;}
.ydd_c01116{bottom:381.556080pt;}
.ydc_c01116{bottom:382.017573pt;}
.ydb_c01116{bottom:382.815147pt;}
.yda_c01116{bottom:385.005493pt;}
.yd9_c01116{bottom:386.595787pt;}
.yd8_c01116{bottom:387.697360pt;}
.yd7_c01116{bottom:388.315227pt;}
.yd6_c01116{bottom:410.126773pt;}
.yd5_c01116{bottom:412.192373pt;}
.yd4_c01116{bottom:413.181733pt;}
.yd3_c01116{bottom:414.377280pt;}
.yd2_c01116{bottom:415.942160pt;}
.yd1_c01116{bottom:417.147307pt;}
.yd0_c01116{bottom:417.914107pt;}
.ycf_c01116{bottom:419.489733pt;}
.yce_c01116{bottom:420.872347pt;}
.ycd_c01116{bottom:421.444000pt;}
.ycc_c01116{bottom:443.717237pt;}
.ycb_c01116{bottom:448.467509pt;}
.yca_c01116{bottom:449.207104pt;}
.yc9_c01116{bottom:449.740672pt;}
.yc8_c01116{bottom:450.879360pt;}
.yc7_c01116{bottom:451.762773pt;}
.yc6_c01116{bottom:452.139531pt;}
.yc5_c01116{bottom:473.405589pt;}
.yc4_c01116{bottom:474.907488pt;}
.yc3_c01116{bottom:475.400789pt;}
.yc2_c01116{bottom:475.920608pt;}
.yc1_c01116{bottom:476.592843pt;}
.yc0_c01116{bottom:477.916907pt;}
.ybf_c01116{bottom:478.774411pt;}
.ybe_c01116{bottom:479.268480pt;}
.ybd_c01116{bottom:480.610955pt;}
.ybc_c01116{bottom:481.593941pt;}
.ybb_c01116{bottom:482.120181pt;}
.yba_c01116{bottom:482.609728pt;}
.yb9_c01116{bottom:483.272064pt;}
.yb8_c01116{bottom:483.609941pt;}
.yb7_c01116{bottom:484.553845pt;}
.yb6_c01116{bottom:506.316011pt;}
.yb5_c01116{bottom:507.030859pt;}
.yb4_c01116{bottom:507.745035pt;}
.yb3_c01116{bottom:509.865195pt;}
.yb2_c01116{bottom:510.591147pt;}
.yb1_c01116{bottom:511.770091pt;}
.yb0_c01116{bottom:512.946859pt;}
.yaf_c01116{bottom:514.802283pt;}
.yae_c01116{bottom:516.726667pt;}
.yad_c01116{bottom:544.125248pt;}
.yac_c01116{bottom:544.798629pt;}
.yab_c01116{bottom:546.271645pt;}
.yaa_c01116{bottom:546.790145pt;}
.ya9_c01116{bottom:547.610180pt;}
.ya8_c01116{bottom:548.605269pt;}
.ya7_c01116{bottom:570.491196pt;}
.ya6_c01116{bottom:571.348684pt;}
.ya5_c01116{bottom:571.751731pt;}
.ya4_c01116{bottom:572.171899pt;}
.ya3_c01116{bottom:573.680612pt;}
.ya2_c01116{bottom:574.513921pt;}
.ya1_c01116{bottom:575.888269pt;}
.ya0_c01116{bottom:576.449901pt;}
.y9f_c01116{bottom:576.858981pt;}
.y9e_c01116{bottom:577.123991pt;}
.y9d_c01116{bottom:577.672264pt;}
.y9c_c01116{bottom:578.367241pt;}
.y9b_c01116{bottom:599.300403pt;}
.y9a_c01116{bottom:599.684687pt;}
.y99_c01116{bottom:601.170767pt;}
.y98_c01116{bottom:602.324385pt;}
.y97_c01116{bottom:602.861417pt;}
.y96_c01116{bottom:603.622732pt;}
.y95_c01116{bottom:604.736401pt;}
.y94_c01116{bottom:605.320179pt;}
.y93_c01116{bottom:606.432919pt;}
.y92_c01116{bottom:607.007452pt;}
.y91_c01116{bottom:608.868024pt;}
.y90_c01116{bottom:609.770621pt;}
.y8f_c01116{bottom:610.530780pt;}
.y8e_c01116{bottom:631.853200pt;}
.y8d_c01116{bottom:632.385099pt;}
.y8c_c01116{bottom:632.911376pt;}
.y8b_c01116{bottom:633.822311pt;}
.y8a_c01116{bottom:634.354549pt;}
.y89_c01116{bottom:634.699571pt;}
.y88_c01116{bottom:636.293295pt;}
.y87_c01116{bottom:637.559583pt;}
.y86_c01116{bottom:639.128445pt;}
.y85_c01116{bottom:640.874189pt;}
.y84_c01116{bottom:641.244729pt;}
.y83_c01116{bottom:641.495836pt;}
.y82_c01116{bottom:665.092231pt;}
.y81_c01116{bottom:665.525444pt;}
.y80_c01116{bottom:666.224887pt;}
.y7f_c01116{bottom:666.759167pt;}
.y7e_c01116{bottom:667.340984pt;}
.y7d_c01116{bottom:667.979508pt;}
.y7c_c01116{bottom:669.121012pt;}
.y7b_c01116{bottom:669.537712pt;}
.y7a_c01116{bottom:669.806008pt;}
.y79_c01116{bottom:670.898225pt;}
.y78_c01116{bottom:671.321639pt;}
.y77_c01116{bottom:671.861997pt;}
.y76_c01116{bottom:672.279151pt;}
.y75_c01116{bottom:672.695624pt;}
.y74_c01116{bottom:695.870604pt;}
.y73_c01116{bottom:696.345413pt;}
.y72_c01116{bottom:697.381764pt;}
.y71_c01116{bottom:698.117136pt;}
.y70_c01116{bottom:698.525912pt;}
.y6f_c01116{bottom:698.700151pt;}
.y6e_c01116{bottom:699.308496pt;}
.y6d_c01116{bottom:700.624072pt;}
.y6c_c01116{bottom:701.376883pt;}
.y6b_c01116{bottom:701.819943pt;}
.y6a_c01116{bottom:702.559467pt;}
.y69_c01116{bottom:702.842141pt;}
.y68_c01116{bottom:703.721008pt;}
.y67_c01116{bottom:704.177903pt;}
.y66_c01116{bottom:704.620963pt;}
.y65_c01116{bottom:726.684025pt;}
.y64_c01116{bottom:727.172425pt;}
.y63_c01116{bottom:727.974569pt;}
.y62_c01116{bottom:728.439188pt;}
.y61_c01116{bottom:728.908453pt;}
.y60_c01116{bottom:729.367292pt;}
.y5f_c01116{bottom:729.863013pt;}
.y5e_c01116{bottom:730.473248pt;}
.y5d_c01116{bottom:731.438008pt;}
.y5c_c01116{bottom:731.902649pt;}
.y5b_c01116{bottom:732.847595pt;}
.y5a_c01116{bottom:733.485237pt;}
.y59_c01116{bottom:734.407172pt;}
.y58_c01116{bottom:735.824375pt;}
.y57_c01116{bottom:759.722999pt;}
.y56_c01116{bottom:761.623615pt;}
.y55_c01116{bottom:762.579535pt;}
.y54_c01116{bottom:763.202077pt;}
.y53_c01116{bottom:763.669779pt;}
.y52_c01116{bottom:764.929443pt;}
.y51_c01116{bottom:765.559401pt;}
.y50_c01116{bottom:766.508563pt;}
.y4f_c01116{bottom:766.976921pt;}
.y4e_c01116{bottom:768.228425pt;}
.y4d_c01116{bottom:791.033645pt;}
.y4c_c01116{bottom:791.318904pt;}
.y4b_c01116{bottom:791.775119pt;}
.y4a_c01116{bottom:792.519951pt;}
.y49_c01116{bottom:793.244053pt;}
.y48_c01116{bottom:793.989429pt;}
.y47_c01116{bottom:794.454529pt;}
.y46_c01116{bottom:795.044348pt;}
.y45_c01116{bottom:796.654461pt;}
.y44_c01116{bottom:797.378519pt;}
.y43_c01116{bottom:797.994117pt;}
.y42_c01116{bottom:799.002508pt;}
.y41_c01116{bottom:799.463596pt;}
.y40_c01116{bottom:799.913528pt;}
.y3f_c01116{bottom:823.573627pt;}
.y3e_c01116{bottom:824.079856pt;}
.y3d_c01116{bottom:824.324200pt;}
.y3c_c01116{bottom:825.865280pt;}
.y3b_c01116{bottom:826.383893pt;}
.y3a_c01116{bottom:827.038793pt;}
.y39_c01116{bottom:828.297001pt;}
.y38_c01116{bottom:829.211267pt;}
.y37_c01116{bottom:829.591693pt;}
.y36_c01116{bottom:830.340249pt;}
.y35_c01116{bottom:831.117367pt;}
.y34_c01116{bottom:852.399231pt;}
.y33_c01116{bottom:853.416397pt;}
.y32_c01116{bottom:854.788887pt;}
.y31_c01116{bottom:855.448577pt;}
.y30_c01116{bottom:856.293296pt;}
.y2f_c01116{bottom:857.941797pt;}
.y2e_c01116{bottom:858.464105pt;}
.y2d_c01116{bottom:859.312700pt;}
.y2c_c01116{bottom:860.137087pt;}
.y2b_c01116{bottom:860.642667pt;}
.y2a_c01116{bottom:886.377552pt;}
.y29_c01116{bottom:886.790888pt;}
.y28_c01116{bottom:887.889645pt;}
.y27_c01116{bottom:888.457616pt;}
.y26_c01116{bottom:889.405416pt;}
.y25_c01116{bottom:889.821869pt;}
.y24_c01116{bottom:890.103568pt;}
.y23_c01116{bottom:891.327280pt;}
.y22_c01116{bottom:891.750603pt;}
.y21_c01116{bottom:892.315120pt;}
.y20_c01116{bottom:915.115709pt;}
.y1f_c01116{bottom:915.466413pt;}
.y1e_c01116{bottom:917.136253pt;}
.y1d_c01116{bottom:917.486043pt;}
.y1c_c01116{bottom:918.655461pt;}
.y1b_c01116{bottom:919.168573pt;}
.y1a_c01116{bottom:920.347763pt;}
.y19_c01116{bottom:920.845683pt;}
.y18_c01116{bottom:922.175597pt;}
.y17_c01116{bottom:922.676243pt;}
.y16_c01116{bottom:923.998907pt;}
.y15_c01116{bottom:950.443907pt;}
.y14_c01116{bottom:951.030291pt;}
.y13_c01116{bottom:951.628032pt;}
.y12_c01116{bottom:952.254901pt;}
.y11_c01116{bottom:952.701528pt;}
.y10_c01116{bottom:954.617141pt;}
.yf_c01116{bottom:955.200072pt;}
.ye_c01116{bottom:978.496645pt;}
.yd_c01116{bottom:979.199669pt;}
.yc_c01116{bottom:979.609645pt;}
.yb_c01116{bottom:981.101765pt;}
.ya_c01116{bottom:981.262467pt;}
.y9_c01116{bottom:982.371397pt;}
.y8_c01116{bottom:982.771200pt;}
.y7_c01116{bottom:983.061355pt;}
.y6_c01116{bottom:984.031928pt;}
.y5_c01116{bottom:984.704096pt;}
.y4_c01116{bottom:984.992365pt;}
.y3_c01116{bottom:985.937179pt;}
.y2_c01116{bottom:986.642667pt;}
.y1_c01116{bottom:1069.576000pt;}
.h8_c01116{height:58.675143pt;}
.h4_c01116{height:64.006272pt;}
.h9_c01116{height:64.009247pt;}
.h10_c01116{height:64.012799pt;}
.h12_c01116{height:64.014110pt;}
.hd_c01116{height:64.018429pt;}
.h2_c01116{height:69.333333pt;}
.h6_c01116{height:69.340128pt;}
.hb_c01116{height:69.343351pt;}
.h11_c01116{height:69.347199pt;}
.h14_c01116{height:69.350110pt;}
.h16_c01116{height:74.672042pt;}
.h3_c01116{height:74.673984pt;}
.hc_c01116{height:74.677455pt;}
.h13_c01116{height:74.683129pt;}
.he_c01116{height:74.688168pt;}
.h5_c01116{height:80.007840pt;}
.ha_c01116{height:80.011559pt;}
.hf_c01116{height:80.023037pt;}
.h15_c01116{height:85.339477pt;}
.h7_c01116{height:90.679767pt;}
.h0_c01116{height:1107.840000pt;}
.h1_c01116{height:1108.000000pt;}
.w1_c01116{width:811.333333pt;}
.w0_c01116{width:811.440000pt;}
.x0_c01116{left:0.000000pt;}
.x64_c01116{left:108.898683pt;}
.x88_c01116{left:114.226891pt;}
.xdf_c01116{left:116.000005pt;}
.xc4_c01116{left:117.113549pt;}
.xbb_c01116{left:118.106041pt;}
.x9d_c01116{left:119.546160pt;}
.x74_c01116{left:121.746852pt;}
.x53_c01116{left:122.928887pt;}
.x20_c01116{left:124.148536pt;}
.x30_c01116{left:125.134008pt;}
.x4_c01116{left:126.549333pt;}
.xd2_c01116{left:136.487905pt;}
.x65_c01116{left:143.504783pt;}
.xdd_c01116{left:145.525333pt;}
.xbc_c01116{left:147.857177pt;}
.x93_c01116{left:150.756053pt;}
.x54_c01116{left:152.443217pt;}
.x38_c01116{left:153.649621pt;}
.xd9_c01116{left:156.222667pt;}
.x9e_c01116{left:158.175920pt;}
.x6b_c01116{left:162.485659pt;}
.x11_c01116{left:165.169965pt;}
.x89_c01116{left:169.732203pt;}
.x75_c01116{left:171.414724pt;}
.x5_c01116{left:176.941333pt;}
.xb3_c01116{left:178.099043pt;}
.x7e_c01116{left:181.225317pt;}
.x55_c01116{left:182.928260pt;}
.x31_c01116{left:184.890065pt;}
.xda_c01116{left:186.205333pt;}
.x8a_c01116{left:189.591531pt;}
.x21_c01116{left:194.708536pt;}
.xc5_c01116{left:195.825172pt;}
.xd3_c01116{left:197.028216pt;}
.x3f_c01116{left:202.602317pt;}
.x17_c01116{left:204.318552pt;}
.xce_c01116{left:206.106616pt;}
.xa7_c01116{left:207.637813pt;}
.x6c_c01116{left:210.009383pt;}
.x47_c01116{left:212.899767pt;}
.xad_c01116{left:215.748000pt;}
.xb4_c01116{left:216.909709pt;}
.x81_c01116{left:218.580000pt;}
.x5c_c01116{left:221.096657pt;}
.x28_c01116{left:222.764000pt;}
.xde_c01116{left:223.928000pt;}
.xc6_c01116{left:225.552381pt;}
.x9f_c01116{left:227.060107pt;}
.x8b_c01116{left:228.528725pt;}
.x76_c01116{left:229.532360pt;}
.x40_c01116{left:231.878816pt;}
.x18_c01116{left:233.791987pt;}
.xa8_c01116{left:236.419360pt;}
.x66_c01116{left:240.468461pt;}
.x56_c01116{left:241.530255pt;}
.x32_c01116{left:242.495320pt;}
.x6_c01116{left:244.428000pt;}
.x95_c01116{left:246.992000pt;}
.x5d_c01116{left:251.338199pt;}
.x29_c01116{left:252.504000pt;}
.xcf_c01116{left:254.575949pt;}
.xae_c01116{left:256.084000pt;}
.x8c_c01116{left:257.320224pt;}
.x77_c01116{left:258.773856pt;}
.x57_c01116{left:260.354889pt;}
.x7_c01116{left:265.018667pt;}
.x48_c01116{left:270.504741pt;}
.x33_c01116{left:271.777315pt;}
.xc7_c01116{left:274.250128pt;}
.x22_c01116{left:282.116536pt;}
.xd0_c01116{left:283.874616pt;}
.xa9_c01116{left:286.897733pt;}
.x8d_c01116{left:288.252075pt;}
.x41_c01116{left:291.163813pt;}
.x12_c01116{left:292.854840pt;}
.xc8_c01116{left:294.682083pt;}
.x78_c01116{left:298.871896pt;}
.x2a_c01116{left:300.997333pt;}
.x23_c01116{left:302.237869pt;}
.xbd_c01116{left:304.873669pt;}
.x94_c01116{left:306.329109pt;}
.x6d_c01116{left:307.922051pt;}
.x49_c01116{left:310.366755pt;}
.x19_c01116{left:312.020701pt;}
.x8_c01116{left:313.030667pt;}
.x96_c01116{left:316.122667pt;}
.x1_c01116{left:319.440000pt;}
.x13_c01116{left:322.661096pt;}
.xbe_c01116{left:323.798324pt;}
.xa0_c01116{left:326.449387pt;}
.x67_c01116{left:327.654988pt;}
.x5e_c01116{left:329.394188pt;}
.x42_c01116{left:330.573827pt;}
.x24_c01116{left:331.984536pt;}
.x2_c01116{left:338.640000pt;}
.x1a_c01116{left:341.299469pt;}
.xb5_c01116{left:343.947043pt;}
.x7f_c01116{left:346.610651pt;}
.x5f_c01116{left:348.549829pt;}
.x2b_c01116{left:350.914667pt;}
.xc9_c01116{left:353.571112pt;}
.x14_c01116{left:364.484517pt;}
.x4a_c01116{left:369.403752pt;}
.xd4_c01116{left:371.416571pt;}
.xbf_c01116{left:373.526199pt;}
.x82_c01116{left:376.072000pt;}
.x3_c01116{left:378.960000pt;}
.x9_c01116{left:382.357333pt;}
.xaf_c01116{left:383.532000pt;}
.xb6_c01116{left:384.457709pt;}
.x80_c01116{left:386.221317pt;}
.x58_c01116{left:389.343264pt;}
.x97_c01116{left:394.904000pt;}
.x6e_c01116{left:396.739036pt;}
.x4b_c01116{left:398.461584pt;}
.x25_c01116{left:399.684536pt;}
.xa_c01116{left:403.082667pt;}
.x15_c01116{left:404.322624pt;}
.x43_c01116{left:409.300497pt;}
.x1b_c01116{left:410.667224pt;}
.xdb_c01116{left:411.888000pt;}
.xc0_c01116{left:412.842315pt;}
.xaa_c01116{left:414.083787pt;}
.xd5_c01116{left:420.386085pt;}
.x83_c01116{left:425.104000pt;}
.x6f_c01116{left:427.469993pt;}
.xe0_c01116{left:429.975765pt;}
.xb_c01116{left:431.640000pt;}
.x98_c01116{left:433.244000pt;}
.xb0_c01116{left:434.665333pt;}
.x34_c01116{left:438.875337pt;}
.x1c_c01116{left:440.840621pt;}
.x16_c01116{left:443.444749pt;}
.x39_c01116{left:448.203617pt;}
.x8e_c01116{left:454.149280pt;}
.x79_c01116{left:456.585276pt;}
.x4c_c01116{left:458.742604pt;}
.x60_c01116{left:459.900852pt;}
.xa1_c01116{left:463.310987pt;}
.xca_c01116{left:471.158532pt;}
.xb1_c01116{left:472.888000pt;}
.x84_c01116{left:474.226667pt;}
.x44_c01116{left:477.433653pt;}
.x2c_c01116{left:478.609333pt;}
.xc1_c01116{left:480.329399pt;}
.x68_c01116{left:486.554957pt;}
.x3a_c01116{left:487.527621pt;}
.x35_c01116{left:489.245427pt;}
.xd6_c01116{left:491.197332pt;}
.xb7_c01116{left:492.244376pt;}
.x99_c01116{left:493.501333pt;}
.x4d_c01116{left:496.913928pt;}
.xcb_c01116{left:500.680380pt;}
.x85_c01116{left:504.474667pt;}
.x61_c01116{left:505.541853pt;}
.x1d_c01116{left:509.605728pt;}
.xc_c01116{left:510.849333pt;}
.xa2_c01116{left:513.193653pt;}
.x59_c01116{left:517.578283pt;}
.x26_c01116{left:518.736536pt;}
.xd_c01116{left:522.328000pt;}
.x70_c01116{left:526.151972pt;}
.x2d_c01116{left:528.298667pt;}
.x1e_c01116{left:530.208869pt;}
.x69_c01116{left:535.334141pt;}
.x45_c01116{left:537.194673pt;}
.xc2_c01116{left:541.074449pt;}
.xa3_c01116{left:542.003947pt;}
.x62_c01116{left:547.062628pt;}
.x27_c01116{left:548.260536pt;}
.xcc_c01116{left:550.146155pt;}
.x71_c01116{left:554.447020pt;}
.x4e_c01116{left:556.594948pt;}
.xab_c01116{left:561.711867pt;}
.x7a_c01116{left:564.397451pt;}
.x2e_c01116{left:567.104000pt;}
.x3b_c01116{left:568.225031pt;}
.xd7_c01116{left:569.255795pt;}
.x9a_c01116{left:571.745333pt;}
.xcd_c01116{left:578.711947pt;}
.xd1_c01116{left:580.609283pt;}
.x8f_c01116{left:582.402784pt;}
.x4f_c01116{left:585.924780pt;}
.xdc_c01116{left:588.544000pt;}
.xa4_c01116{left:590.979867pt;}
.x86_c01116{left:592.814667pt;}
.x7b_c01116{left:594.369636pt;}
.xc3_c01116{left:599.175220pt;}
.x5a_c01116{left:605.407919pt;}
.xb8_c01116{left:609.159043pt;}
.x50_c01116{left:614.981279pt;}
.x3c_c01116{left:616.467996pt;}
.xd8_c01116{left:618.999920pt;}
.x90_c01116{left:621.974773pt;}
.x7c_c01116{left:623.177776pt;}
.xe_c01116{left:628.908000pt;}
.x9b_c01116{left:631.522667pt;}
.x63_c01116{left:635.168449pt;}
.xb9_c01116{left:639.152376pt;}
.xa5_c01116{left:640.439813pt;}
.x6a_c01116{left:644.730949pt;}
.x2f_c01116{left:647.838667pt;}
.x1f_c01116{left:649.099885pt;}
.x87_c01116{left:652.357333pt;}
.x46_c01116{left:655.978024pt;}
.xf_c01116{left:658.192000pt;}
.x51_c01116{left:665.147473pt;}
.x36_c01116{left:666.436129pt;}
.xb2_c01116{left:669.005333pt;}
.x5b_c01116{left:674.528943pt;}
.x91_c01116{left:681.531424pt;}
.x7d_c01116{left:684.444904pt;}
.xba_c01116{left:688.516376pt;}
.x72_c01116{left:693.404972pt;}
.x52_c01116{left:695.681328pt;}
.x3d_c01116{left:696.610739pt;}
.x37_c01116{left:705.393448pt;}
.x10_c01116{left:708.408000pt;}
.x73_c01116{left:713.656292pt;}
.x3e_c01116{left:715.587373pt;}
.xac_c01116{left:730.035360pt;}
.xa6_c01116{left:768.840747pt;}
.x92_c01116{left:769.847573pt;}
.x9c_c01116{left:784.270667pt;}
}





/* 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_c01117 {
    display:none;
  }
  .loading-indicator_c01117.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01117 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_c01117 { 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_c01117" -> "#page-container .classname_c01117")
 */
.pf_c01117 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01117 { /* 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_c01117.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01117 { /* 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_c01117 { /* 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_c01117 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01117 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01117 {overflow:visible;}
  }
}
.c_c01117 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01117 { /* 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_c01117:after { /* webkit #35443 */
  content: '';
}
.t_c01117:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01117 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 */
}
.__c01117 { /* 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_c01117 { /* info for Javascript */
  display:none;
}
.l_c01117 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01117 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01117 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01117: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_c01117 {
    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_c01117.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01117.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_c01117 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01117{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01117;src:url('chunks/assets/font_c605e72f209fc835e906f064.woff2')format("woff");}.ff1_c01117{font-family:ff1_c01117;line-height:1.000000;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;}
.m0_c01117{transform:matrix(0.138295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138295,0.000000,0.000000,0.250000,0,0);}
.m1_c01117{transform:matrix(0.148490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148490,0.000000,0.000000,0.250000,0,0);}
.v0_c01117{vertical-align:0.000000px;}
.ls0_c01117{letter-spacing:0.000000px;}
.sc__c01117{text-shadow:none;}
.sc0_c01117{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__c01117{-webkit-text-stroke:0px transparent;}
.sc0_c01117{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01117{word-spacing:0.000000px;}
.fc0_c01117{color:transparent;}
.fs0_c01117{font-size:18.000000px;}
.y0_c01117{bottom:0.000000px;}
.y1_c01117{bottom:81.937500px;}
.h2_c01117{height:18.000000px;}
.h0_c01117{height:1246.320000px;}
.h1_c01117{height:1246.500000px;}
.w1_c01117{width:912.750000px;}
.w0_c01117{width:912.870000px;}
.x0_c01117{left:0.000000px;}
.x1_c01117{left:649.620000px;}
.x2_c01117{left:693.630000px;}
@media print{
.v0_c01117{vertical-align:0.000000pt;}
.ls0_c01117{letter-spacing:0.000000pt;}
.ws0_c01117{word-spacing:0.000000pt;}
.fs0_c01117{font-size:16.000000pt;}
.y0_c01117{bottom:0.000000pt;}
.y1_c01117{bottom:72.833333pt;}
.h2_c01117{height:16.000000pt;}
.h0_c01117{height:1107.840000pt;}
.h1_c01117{height:1108.000000pt;}
.w1_c01117{width:811.333333pt;}
.w0_c01117{width:811.440000pt;}
.x0_c01117{left:0.000000pt;}
.x1_c01117{left:577.440000pt;}
.x2_c01117{left:616.560000pt;}
}





/* 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_c01118 {
    display:none;
  }
  .loading-indicator_c01118.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01118 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_c01118 { 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_c01118" -> "#page-container .classname_c01118")
 */
.pf_c01118 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01118 { /* 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_c01118.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01118 { /* 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_c01118 { /* 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_c01118 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01118 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01118 {overflow:visible;}
  }
}
.c_c01118 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01118 { /* 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_c01118:after { /* webkit #35443 */
  content: '';
}
.t_c01118:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01118 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 */
}
.__c01118 { /* 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_c01118 { /* info for Javascript */
  display:none;
}
.l_c01118 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01118 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01118 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01118: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_c01118 {
    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_c01118.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01118.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_c01118 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01118{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01118;src:url('chunks/assets/font_132af6d682320e9b248f68cf.woff2')format("woff");}.ff1_c01118{font-family:ff1_c01118;line-height:1.000000;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;}
.m2a_c01118{transform:matrix(0.097625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.097625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.097625,0.000000,0.000000,0.250000,0,0);}
.m2c_c01118{transform:matrix(0.121555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121555,0.000000,0.000000,0.250000,0,0);}
.m1_c01118{transform:matrix(0.129460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129460,0.000000,0.000000,0.250000,0,0);}
.m2e_c01118{transform:matrix(0.138990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138990,0.000000,0.000000,0.250000,0,0);}
.m3_c01118{transform:matrix(0.139720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139720,0.000000,0.000000,0.250000,0,0);}
.m2b_c01118{transform:matrix(0.142545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142545,0.000000,0.000000,0.250000,0,0);}
.m2d_c01118{transform:matrix(0.146045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146045,0.000000,0.000000,0.250000,0,0);}
.m28_c01118{transform:matrix(0.151875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151875,0.000000,0.000000,0.250000,0,0);}
.m26_c01118{transform:matrix(0.152680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152680,0.000000,0.000000,0.250000,0,0);}
.m29_c01118{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.mec_c01118{transform:matrix(0.182722,0.002193,-0.003000,0.249982,0,0);-ms-transform:matrix(0.182722,0.002193,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.182722,0.002193,-0.003000,0.249982,0,0);}
.m18_c01118{transform:matrix(0.196155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196155,0.000000,0.000000,0.250000,0,0);}
.mfb_c01118{transform:matrix(0.197355,0.001974,-0.002500,0.249988,0,0);-ms-transform:matrix(0.197355,0.001974,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.197355,0.001974,-0.002500,0.249988,0,0);}
.ma_c01118{transform:matrix(0.197435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197435,0.000000,0.000000,0.250000,0,0);}
.m19_c01118{transform:matrix(0.201310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201310,0.000000,0.000000,0.250000,0,0);}
.m3c_c01118{transform:matrix(0.208805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208805,0.000000,0.000000,0.250000,0,0);}
.m27_c01118{transform:matrix(0.209465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209465,0.000000,0.000000,0.250000,0,0);}
.maa_c01118{transform:matrix(0.210292,0.001051,-0.001250,0.249997,0,0);-ms-transform:matrix(0.210292,0.001051,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.210292,0.001051,-0.001250,0.249997,0,0);}
.m9_c01118{transform:matrix(0.210335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210335,0.000000,0.000000,0.250000,0,0);}
.mf_c01118{transform:matrix(0.211215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211215,0.000000,0.000000,0.250000,0,0);}
.m76_c01118{transform:matrix(0.211565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211565,0.000000,0.000000,0.250000,0,0);}
.m73_c01118{transform:matrix(0.211810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211810,0.000000,0.000000,0.250000,0,0);}
.m91_c01118{transform:matrix(0.211859,0.002119,-0.002500,0.249988,0,0);-ms-transform:matrix(0.211859,0.002119,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.211859,0.002119,-0.002500,0.249988,0,0);}
.mef_c01118{transform:matrix(0.212170,0.002546,-0.003000,0.249982,0,0);-ms-transform:matrix(0.212170,0.002546,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.212170,0.002546,-0.003000,0.249982,0,0);}
.m2_c01118{transform:matrix(0.212330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212330,0.000000,0.000000,0.250000,0,0);}
.m3f_c01118{transform:matrix(0.215935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215935,0.000000,0.000000,0.250000,0,0);}
.m7f_c01118{transform:matrix(0.216714,0.002167,-0.002500,0.249988,0,0);-ms-transform:matrix(0.216714,0.002167,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.216714,0.002167,-0.002500,0.249988,0,0);}
.m1c_c01118{transform:matrix(0.217705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217705,0.000000,0.000000,0.250000,0,0);}
.m25_c01118{transform:matrix(0.217855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217855,0.000000,0.000000,0.250000,0,0);}
.mb_c01118{transform:matrix(0.217930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217930,0.000000,0.000000,0.250000,0,0);}
.m5_c01118{transform:matrix(0.218120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218120,0.000000,0.000000,0.250000,0,0);}
.m97_c01118{transform:matrix(0.218914,0.002189,-0.002500,0.249988,0,0);-ms-transform:matrix(0.218914,0.002189,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.218914,0.002189,-0.002500,0.249988,0,0);}
.m12_c01118{transform:matrix(0.220190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220190,0.000000,0.000000,0.250000,0,0);}
.m51_c01118{transform:matrix(0.221415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221415,0.000000,0.000000,0.250000,0,0);}
.m1e_c01118{transform:matrix(0.222125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222125,0.000000,0.000000,0.250000,0,0);}
.m87_c01118{transform:matrix(0.222489,0.002225,-0.002500,0.249988,0,0);-ms-transform:matrix(0.222489,0.002225,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.222489,0.002225,-0.002500,0.249988,0,0);}
.md1_c01118{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.mf0_c01118{transform:matrix(0.223519,0.002682,-0.003000,0.249982,0,0);-ms-transform:matrix(0.223519,0.002682,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.223519,0.002682,-0.003000,0.249982,0,0);}
.m46_c01118{transform:matrix(0.223970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223970,0.000000,0.000000,0.250000,0,0);}
.m8f_c01118{transform:matrix(0.224644,0.002246,-0.002500,0.249988,0,0);-ms-transform:matrix(0.224644,0.002246,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.224644,0.002246,-0.002500,0.249988,0,0);}
.me1_c01118{transform:matrix(0.224680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224680,0.000000,0.000000,0.250000,0,0);}
.me2_c01118{transform:matrix(0.225345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225345,0.000000,0.000000,0.250000,0,0);}
.m5d_c01118{transform:matrix(0.225640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225640,0.000000,0.000000,0.250000,0,0);}
.m7d_c01118{transform:matrix(0.225934,0.002259,-0.002500,0.249988,0,0);-ms-transform:matrix(0.225934,0.002259,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.225934,0.002259,-0.002500,0.249988,0,0);}
.m78_c01118{transform:matrix(0.226764,0.002268,-0.002500,0.249988,0,0);-ms-transform:matrix(0.226764,0.002268,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.226764,0.002268,-0.002500,0.249988,0,0);}
.m74_c01118{transform:matrix(0.227260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227260,0.000000,0.000000,0.250000,0,0);}
.m15_c01118{transform:matrix(0.227280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227280,0.000000,0.000000,0.250000,0,0);}
.med_c01118{transform:matrix(0.227404,0.002729,-0.003000,0.249982,0,0);-ms-transform:matrix(0.227404,0.002729,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.227404,0.002729,-0.003000,0.249982,0,0);}
.m44_c01118{transform:matrix(0.227430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227430,0.000000,0.000000,0.250000,0,0);}
.mda_c01118{transform:matrix(0.228090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228090,0.000000,0.000000,0.250000,0,0);}
.m86_c01118{transform:matrix(0.228159,0.002282,-0.002500,0.249988,0,0);-ms-transform:matrix(0.228159,0.002282,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.228159,0.002282,-0.002500,0.249988,0,0);}
.m10_c01118{transform:matrix(0.228630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228630,0.000000,0.000000,0.250000,0,0);}
.m1b_c01118{transform:matrix(0.228755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228755,0.000000,0.000000,0.250000,0,0);}
.me4_c01118{transform:matrix(0.228815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228815,0.000000,0.000000,0.250000,0,0);}
.mf1_c01118{transform:matrix(0.229278,0.002751,-0.003000,0.249982,0,0);-ms-transform:matrix(0.229278,0.002751,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.229278,0.002751,-0.003000,0.249982,0,0);}
.m79_c01118{transform:matrix(0.229319,0.002293,-0.002500,0.249988,0,0);-ms-transform:matrix(0.229319,0.002293,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.229319,0.002293,-0.002500,0.249988,0,0);}
.m82_c01118{transform:matrix(0.229514,0.002295,-0.002500,0.249988,0,0);-ms-transform:matrix(0.229514,0.002295,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.229514,0.002295,-0.002500,0.249988,0,0);}
.m54_c01118{transform:matrix(0.230215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230215,0.000000,0.000000,0.250000,0,0);}
.mee_c01118{transform:matrix(0.230963,0.002772,-0.003000,0.249982,0,0);-ms-transform:matrix(0.230963,0.002772,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.230963,0.002772,-0.003000,0.249982,0,0);}
.m23_c01118{transform:matrix(0.231405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231405,0.000000,0.000000,0.250000,0,0);}
.mc_c01118{transform:matrix(0.231495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231495,0.000000,0.000000,0.250000,0,0);}
.m42_c01118{transform:matrix(0.231625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231625,0.000000,0.000000,0.250000,0,0);}
.m56_c01118{transform:matrix(0.231925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231925,0.000000,0.000000,0.250000,0,0);}
.m4_c01118{transform:matrix(0.232945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232945,0.000000,0.000000,0.250000,0,0);}
.m4a_c01118{transform:matrix(0.232985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232985,0.000000,0.000000,0.250000,0,0);}
.maf_c01118{transform:matrix(0.233615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233615,0.000000,0.000000,0.250000,0,0);}
.mc4_c01118{transform:matrix(0.233735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233735,0.000000,0.000000,0.250000,0,0);}
.m11_c01118{transform:matrix(0.234320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234320,0.000000,0.000000,0.250000,0,0);}
.m9b_c01118{transform:matrix(0.234348,0.002343,-0.002500,0.249988,0,0);-ms-transform:matrix(0.234348,0.002343,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.234348,0.002343,-0.002500,0.249988,0,0);}
.mb6_c01118{transform:matrix(0.234360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234360,0.000000,0.000000,0.250000,0,0);}
.mfa_c01118{transform:matrix(0.234663,0.002347,-0.002500,0.249988,0,0);-ms-transform:matrix(0.234663,0.002347,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.234663,0.002347,-0.002500,0.249988,0,0);}
.mf2_c01118{transform:matrix(0.235123,0.002821,-0.003000,0.249982,0,0);-ms-transform:matrix(0.235123,0.002821,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.235123,0.002821,-0.003000,0.249982,0,0);}
.m7_c01118{transform:matrix(0.235170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235170,0.000000,0.000000,0.250000,0,0);}
.m95_c01118{transform:matrix(0.235563,0.002356,-0.002500,0.249988,0,0);-ms-transform:matrix(0.235563,0.002356,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.235563,0.002356,-0.002500,0.249988,0,0);}
.m6_c01118{transform:matrix(0.236405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236405,0.000000,0.000000,0.250000,0,0);}
.m36_c01118{transform:matrix(0.236445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236445,0.000000,0.000000,0.250000,0,0);}
.m67_c01118{transform:matrix(0.236585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236585,0.000000,0.000000,0.250000,0,0);}
.mad_c01118{transform:matrix(0.236645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236645,0.000000,0.000000,0.250000,0,0);}
.mb8_c01118{transform:matrix(0.236670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236670,0.000000,0.000000,0.250000,0,0);}
.m94_c01118{transform:matrix(0.237053,0.002371,-0.002500,0.249988,0,0);-ms-transform:matrix(0.237053,0.002371,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.237053,0.002371,-0.002500,0.249988,0,0);}
.m60_c01118{transform:matrix(0.237170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237170,0.000000,0.000000,0.250000,0,0);}
.m8_c01118{transform:matrix(0.237480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237480,0.000000,0.000000,0.250000,0,0);}
.mde_c01118{transform:matrix(0.237595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237595,0.000000,0.000000,0.250000,0,0);}
.mf3_c01118{transform:matrix(0.238512,0.003339,-0.003500,0.249976,0,0);-ms-transform:matrix(0.238512,0.003339,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.238512,0.003339,-0.003500,0.249976,0,0);}
.m9d_c01118{transform:matrix(0.239313,0.002393,-0.002500,0.249988,0,0);-ms-transform:matrix(0.239313,0.002393,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.239313,0.002393,-0.002500,0.249988,0,0);}
.md0_c01118{transform:matrix(0.239325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239325,0.000000,0.000000,0.250000,0,0);}
.m85_c01118{transform:matrix(0.239578,0.002396,-0.002500,0.249988,0,0);-ms-transform:matrix(0.239578,0.002396,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.239578,0.002396,-0.002500,0.249988,0,0);}
.mc0_c01118{transform:matrix(0.240170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240170,0.000000,0.000000,0.250000,0,0);}
.m80_c01118{transform:matrix(0.240238,0.002402,-0.002500,0.249988,0,0);-ms-transform:matrix(0.240238,0.002402,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.240238,0.002402,-0.002500,0.249988,0,0);}
.m61_c01118{transform:matrix(0.240295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240295,0.000000,0.000000,0.250000,0,0);}
.m20_c01118{transform:matrix(0.240545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240545,0.000000,0.000000,0.250000,0,0);}
.ma7_c01118{transform:matrix(0.240632,0.001203,-0.001250,0.249997,0,0);-ms-transform:matrix(0.240632,0.001203,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.240632,0.001203,-0.001250,0.249997,0,0);}
.mbd_c01118{transform:matrix(0.240635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240635,0.000000,0.000000,0.250000,0,0);}
.mea_c01118{transform:matrix(0.241310,0.002172,-0.002250,0.249990,0,0);-ms-transform:matrix(0.241310,0.002172,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.241310,0.002172,-0.002250,0.249990,0,0);}
.md4_c01118{transform:matrix(0.242545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242545,0.000000,0.000000,0.250000,0,0);}
.me_c01118{transform:matrix(0.242550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242550,0.000000,0.000000,0.250000,0,0);}
.m64_c01118{transform:matrix(0.243055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243055,0.000000,0.000000,0.250000,0,0);}
.mdb_c01118{transform:matrix(0.243375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243375,0.000000,0.000000,0.250000,0,0);}
.mcc_c01118{transform:matrix(0.243395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243395,0.000000,0.000000,0.250000,0,0);}
.m14_c01118{transform:matrix(0.244095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244095,0.000000,0.000000,0.250000,0,0);}
.mb0_c01118{transform:matrix(0.244255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244255,0.000000,0.000000,0.250000,0,0);}
.m62_c01118{transform:matrix(0.244295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244295,0.000000,0.000000,0.250000,0,0);}
.me6_c01118{transform:matrix(0.244375,0.002199,-0.002250,0.249990,0,0);-ms-transform:matrix(0.244375,0.002199,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.244375,0.002199,-0.002250,0.249990,0,0);}
.m5f_c01118{transform:matrix(0.244870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244870,0.000000,0.000000,0.250000,0,0);}
.m22_c01118{transform:matrix(0.245080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245080,0.000000,0.000000,0.250000,0,0);}
.m6f_c01118{transform:matrix(0.245215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245215,0.000000,0.000000,0.250000,0,0);}
.m43_c01118{transform:matrix(0.245230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245230,0.000000,0.000000,0.250000,0,0);}
.m81_c01118{transform:matrix(0.245343,0.002453,-0.002500,0.249988,0,0);-ms-transform:matrix(0.245343,0.002453,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.245343,0.002453,-0.002500,0.249988,0,0);}
.mc6_c01118{transform:matrix(0.245460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245460,0.000000,0.000000,0.250000,0,0);}
.m37_c01118{transform:matrix(0.245715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245715,0.000000,0.000000,0.250000,0,0);}
.m8a_c01118{transform:matrix(0.246498,0.002465,-0.002500,0.249988,0,0);-ms-transform:matrix(0.246498,0.002465,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.246498,0.002465,-0.002500,0.249988,0,0);}
.ma4_c01118{transform:matrix(0.246597,0.001233,-0.001250,0.249997,0,0);-ms-transform:matrix(0.246597,0.001233,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.246597,0.001233,-0.001250,0.249997,0,0);}
.m2f_c01118{transform:matrix(0.246940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246940,0.000000,0.000000,0.250000,0,0);}
.mc3_c01118{transform:matrix(0.246970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246970,0.000000,0.000000,0.250000,0,0);}
.m8d_c01118{transform:matrix(0.247923,0.002479,-0.002500,0.249988,0,0);-ms-transform:matrix(0.247923,0.002479,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.247923,0.002479,-0.002500,0.249988,0,0);}
.m1a_c01118{transform:matrix(0.248615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248615,0.000000,0.000000,0.250000,0,0);}
.m16_c01118{transform:matrix(0.248745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248745,0.000000,0.000000,0.250000,0,0);}
.m7a_c01118{transform:matrix(0.248838,0.002488,-0.002500,0.249988,0,0);-ms-transform:matrix(0.248838,0.002488,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.248838,0.002488,-0.002500,0.249988,0,0);}
.m7e_c01118{transform:matrix(0.249128,0.002491,-0.002500,0.249988,0,0);-ms-transform:matrix(0.249128,0.002491,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.249128,0.002491,-0.002500,0.249988,0,0);}
.m8e_c01118{transform:matrix(0.249648,0.002496,-0.002500,0.249988,0,0);-ms-transform:matrix(0.249648,0.002496,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.249648,0.002496,-0.002500,0.249988,0,0);}
.mb5_c01118{transform:matrix(0.249665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249665,0.000000,0.000000,0.250000,0,0);}
.m4e_c01118{transform:matrix(0.250300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250300,0.000000,0.000000,0.250000,0,0);}
.m1d_c01118{transform:matrix(0.250350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250350,0.000000,0.000000,0.250000,0,0);}
.m77_c01118{transform:matrix(0.250520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250520,0.000000,0.000000,0.250000,0,0);}
.m58_c01118{transform:matrix(0.250690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250690,0.000000,0.000000,0.250000,0,0);}
.mfc_c01118{transform:matrix(0.250917,0.002509,-0.002500,0.249988,0,0);-ms-transform:matrix(0.250917,0.002509,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.250917,0.002509,-0.002500,0.249988,0,0);}
.m13_c01118{transform:matrix(0.250955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250955,0.000000,0.000000,0.250000,0,0);}
.m8b_c01118{transform:matrix(0.251112,0.002511,-0.002500,0.249988,0,0);-ms-transform:matrix(0.251112,0.002511,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.251112,0.002511,-0.002500,0.249988,0,0);}
.m7b_c01118{transform:matrix(0.251252,0.002513,-0.002500,0.249988,0,0);-ms-transform:matrix(0.251252,0.002513,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.251252,0.002513,-0.002500,0.249988,0,0);}
.m50_c01118{transform:matrix(0.251695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251695,0.000000,0.000000,0.250000,0,0);}
.mf5_c01118{transform:matrix(0.251845,0.003526,-0.003500,0.249976,0,0);-ms-transform:matrix(0.251845,0.003526,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.251845,0.003526,-0.003500,0.249976,0,0);}
.mf4_c01118{transform:matrix(0.251985,0.003528,-0.003500,0.249976,0,0);-ms-transform:matrix(0.251985,0.003528,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.251985,0.003528,-0.003500,0.249976,0,0);}
.m47_c01118{transform:matrix(0.252595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252595,0.000000,0.000000,0.250000,0,0);}
.me8_c01118{transform:matrix(0.252835,0.002276,-0.002250,0.249990,0,0);-ms-transform:matrix(0.252835,0.002276,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.252835,0.002276,-0.002250,0.249990,0,0);}
.m90_c01118{transform:matrix(0.252877,0.002529,-0.002500,0.249988,0,0);-ms-transform:matrix(0.252877,0.002529,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.252877,0.002529,-0.002500,0.249988,0,0);}
.m7c_c01118{transform:matrix(0.253052,0.002531,-0.002500,0.249988,0,0);-ms-transform:matrix(0.253052,0.002531,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.253052,0.002531,-0.002500,0.249988,0,0);}
.m98_c01118{transform:matrix(0.253057,0.002531,-0.002500,0.249988,0,0);-ms-transform:matrix(0.253057,0.002531,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.253057,0.002531,-0.002500,0.249988,0,0);}
.m31_c01118{transform:matrix(0.253160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253160,0.000000,0.000000,0.250000,0,0);}
.m48_c01118{transform:matrix(0.253325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253325,0.000000,0.000000,0.250000,0,0);}
.m92_c01118{transform:matrix(0.253627,0.002536,-0.002500,0.249988,0,0);-ms-transform:matrix(0.253627,0.002536,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.253627,0.002536,-0.002500,0.249988,0,0);}
.ma2_c01118{transform:matrix(0.253772,0.002538,-0.002500,0.249988,0,0);-ms-transform:matrix(0.253772,0.002538,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.253772,0.002538,-0.002500,0.249988,0,0);}
.m4c_c01118{transform:matrix(0.254060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254060,0.000000,0.000000,0.250000,0,0);}
.mc8_c01118{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.m21_c01118{transform:matrix(0.254445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254445,0.000000,0.000000,0.250000,0,0);}
.m83_c01118{transform:matrix(0.255197,0.002552,-0.002500,0.249988,0,0);-ms-transform:matrix(0.255197,0.002552,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.255197,0.002552,-0.002500,0.249988,0,0);}
.m32_c01118{transform:matrix(0.255580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255580,0.000000,0.000000,0.250000,0,0);}
.m1f_c01118{transform:matrix(0.256060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256060,0.000000,0.000000,0.250000,0,0);}
.m57_c01118{transform:matrix(0.256180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256180,0.000000,0.000000,0.250000,0,0);}
.m6b_c01118{transform:matrix(0.256205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256205,0.000000,0.000000,0.250000,0,0);}
.m59_c01118{transform:matrix(0.256255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256255,0.000000,0.000000,0.250000,0,0);}
.md5_c01118{transform:matrix(0.257100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257100,0.000000,0.000000,0.250000,0,0);}
.md_c01118{transform:matrix(0.257115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257115,0.000000,0.000000,0.250000,0,0);}
.mf7_c01118{transform:matrix(0.257175,0.003600,-0.003500,0.249976,0,0);-ms-transform:matrix(0.257175,0.003600,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.257175,0.003600,-0.003500,0.249976,0,0);}
.mbf_c01118{transform:matrix(0.257620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257620,0.000000,0.000000,0.250000,0,0);}
.mf9_c01118{transform:matrix(0.257732,0.002577,-0.002500,0.249988,0,0);-ms-transform:matrix(0.257732,0.002577,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.257732,0.002577,-0.002500,0.249988,0,0);}
.mcb_c01118{transform:matrix(0.257775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257775,0.000000,0.000000,0.250000,0,0);}
.m55_c01118{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.mb3_c01118{transform:matrix(0.258045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258045,0.000000,0.000000,0.250000,0,0);}
.m49_c01118{transform:matrix(0.258070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258070,0.000000,0.000000,0.250000,0,0);}
.m24_c01118{transform:matrix(0.258245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258245,0.000000,0.000000,0.250000,0,0);}
.m96_c01118{transform:matrix(0.258337,0.002583,-0.002500,0.249988,0,0);-ms-transform:matrix(0.258337,0.002583,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.258337,0.002583,-0.002500,0.249988,0,0);}
.mca_c01118{transform:matrix(0.258535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258535,0.000000,0.000000,0.250000,0,0);}
.m17_c01118{transform:matrix(0.258620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258620,0.000000,0.000000,0.250000,0,0);}
.mce_c01118{transform:matrix(0.258905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258905,0.000000,0.000000,0.250000,0,0);}
.m93_c01118{transform:matrix(0.258917,0.002589,-0.002500,0.249988,0,0);-ms-transform:matrix(0.258917,0.002589,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.258917,0.002589,-0.002500,0.249988,0,0);}
.m5b_c01118{transform:matrix(0.259605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259605,0.000000,0.000000,0.250000,0,0);}
.md6_c01118{transform:matrix(0.259635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259635,0.000000,0.000000,0.250000,0,0);}
.me5_c01118{transform:matrix(0.259725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259725,0.000000,0.000000,0.250000,0,0);}
.mc5_c01118{transform:matrix(0.260110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260110,0.000000,0.000000,0.250000,0,0);}
.m6c_c01118{transform:matrix(0.260255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260255,0.000000,0.000000,0.250000,0,0);}
.mc1_c01118{transform:matrix(0.260650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260650,0.000000,0.000000,0.250000,0,0);}
.mf6_c01118{transform:matrix(0.260704,0.003650,-0.003500,0.249976,0,0);-ms-transform:matrix(0.260704,0.003650,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.260704,0.003650,-0.003500,0.249976,0,0);}
.m70_c01118{transform:matrix(0.260930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260930,0.000000,0.000000,0.250000,0,0);}
.m88_c01118{transform:matrix(0.262297,0.002623,-0.002500,0.249988,0,0);-ms-transform:matrix(0.262297,0.002623,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.262297,0.002623,-0.002500,0.249988,0,0);}
.m35_c01118{transform:matrix(0.262695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262695,0.000000,0.000000,0.250000,0,0);}
.mbb_c01118{transform:matrix(0.262785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262785,0.000000,0.000000,0.250000,0,0);}
.me0_c01118{transform:matrix(0.263340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263340,0.000000,0.000000,0.250000,0,0);}
.m39_c01118{transform:matrix(0.263760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263760,0.000000,0.000000,0.250000,0,0);}
.md2_c01118{transform:matrix(0.263795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263795,0.000000,0.000000,0.250000,0,0);}
.meb_c01118{transform:matrix(0.263799,0.002374,-0.002250,0.249990,0,0);-ms-transform:matrix(0.263799,0.002374,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.263799,0.002374,-0.002250,0.249990,0,0);}
.m75_c01118{transform:matrix(0.263855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263855,0.000000,0.000000,0.250000,0,0);}
.m9a_c01118{transform:matrix(0.264037,0.002640,-0.002500,0.249988,0,0);-ms-transform:matrix(0.264037,0.002640,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.264037,0.002640,-0.002500,0.249988,0,0);}
.me7_c01118{transform:matrix(0.264354,0.002379,-0.002250,0.249990,0,0);-ms-transform:matrix(0.264354,0.002379,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.264354,0.002379,-0.002250,0.249990,0,0);}
.m66_c01118{transform:matrix(0.264545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264545,0.000000,0.000000,0.250000,0,0);}
.mc2_c01118{transform:matrix(0.264975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264975,0.000000,0.000000,0.250000,0,0);}
.mdc_c01118{transform:matrix(0.265575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265575,0.000000,0.000000,0.250000,0,0);}
.m4f_c01118{transform:matrix(0.265580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265580,0.000000,0.000000,0.250000,0,0);}
.m5a_c01118{transform:matrix(0.265680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265680,0.000000,0.000000,0.250000,0,0);}
.m63_c01118{transform:matrix(0.265810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265810,0.000000,0.000000,0.250000,0,0);}
.ma9_c01118{transform:matrix(0.266062,0.001330,-0.001250,0.249997,0,0);-ms-transform:matrix(0.266062,0.001330,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.266062,0.001330,-0.001250,0.249997,0,0);}
.m84_c01118{transform:matrix(0.266317,0.002663,-0.002500,0.249988,0,0);-ms-transform:matrix(0.266317,0.002663,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.266317,0.002663,-0.002500,0.249988,0,0);}
.mcd_c01118{transform:matrix(0.266345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266345,0.000000,0.000000,0.250000,0,0);}
.mfd_c01118{transform:matrix(0.266617,0.002666,-0.002500,0.249988,0,0);-ms-transform:matrix(0.266617,0.002666,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.266617,0.002666,-0.002500,0.249988,0,0);}
.mc9_c01118{transform:matrix(0.267750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267750,0.000000,0.000000,0.250000,0,0);}
.m68_c01118{transform:matrix(0.268570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268570,0.000000,0.000000,0.250000,0,0);}
.m71_c01118{transform:matrix(0.269260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269260,0.000000,0.000000,0.250000,0,0);}
.m99_c01118{transform:matrix(0.269312,0.002693,-0.002500,0.249988,0,0);-ms-transform:matrix(0.269312,0.002693,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.269312,0.002693,-0.002500,0.249988,0,0);}
.m65_c01118{transform:matrix(0.269620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269620,0.000000,0.000000,0.250000,0,0);}
.mbe_c01118{transform:matrix(0.269775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269775,0.000000,0.000000,0.250000,0,0);}
.ma5_c01118{transform:matrix(0.271427,0.001357,-0.001250,0.249997,0,0);-ms-transform:matrix(0.271427,0.001357,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.271427,0.001357,-0.001250,0.249997,0,0);}
.m4d_c01118{transform:matrix(0.271470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271470,0.000000,0.000000,0.250000,0,0);}
.m9f_c01118{transform:matrix(0.271546,0.002715,-0.002500,0.249988,0,0);-ms-transform:matrix(0.271546,0.002715,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.271546,0.002715,-0.002500,0.249988,0,0);}
.m30_c01118{transform:matrix(0.272280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272280,0.000000,0.000000,0.250000,0,0);}
.m69_c01118{transform:matrix(0.272625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272625,0.000000,0.000000,0.250000,0,0);}
.m34_c01118{transform:matrix(0.272720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272720,0.000000,0.000000,0.250000,0,0);}
.mb7_c01118{transform:matrix(0.272765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272765,0.000000,0.000000,0.250000,0,0);}
.m41_c01118{transform:matrix(0.273745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273745,0.000000,0.000000,0.250000,0,0);}
.mac_c01118{transform:matrix(0.273770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273770,0.000000,0.000000,0.250000,0,0);}
.m6d_c01118{transform:matrix(0.274395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274395,0.000000,0.000000,0.250000,0,0);}
.me9_c01118{transform:matrix(0.275259,0.002477,-0.002250,0.249990,0,0);-ms-transform:matrix(0.275259,0.002477,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.275259,0.002477,-0.002250,0.249990,0,0);}
.mb9_c01118{transform:matrix(0.275270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275270,0.000000,0.000000,0.250000,0,0);}
.m52_c01118{transform:matrix(0.275355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275355,0.000000,0.000000,0.250000,0,0);}
.mba_c01118{transform:matrix(0.276200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276200,0.000000,0.000000,0.250000,0,0);}
.mb4_c01118{transform:matrix(0.276525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276525,0.000000,0.000000,0.250000,0,0);}
.mb1_c01118{transform:matrix(0.276695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276695,0.000000,0.000000,0.250000,0,0);}
.m45_c01118{transform:matrix(0.277255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277255,0.000000,0.000000,0.250000,0,0);}
.mdf_c01118{transform:matrix(0.277290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277290,0.000000,0.000000,0.250000,0,0);}
.ma8_c01118{transform:matrix(0.277567,0.001388,-0.001250,0.249997,0,0);-ms-transform:matrix(0.277567,0.001388,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.277567,0.001388,-0.001250,0.249997,0,0);}
.m9c_c01118{transform:matrix(0.277856,0.002779,-0.002500,0.249988,0,0);-ms-transform:matrix(0.277856,0.002779,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.277856,0.002779,-0.002500,0.249988,0,0);}
.md8_c01118{transform:matrix(0.277925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277925,0.000000,0.000000,0.250000,0,0);}
.m9e_c01118{transform:matrix(0.278201,0.002782,-0.002500,0.249988,0,0);-ms-transform:matrix(0.278201,0.002782,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.278201,0.002782,-0.002500,0.249988,0,0);}
.m33_c01118{transform:matrix(0.278285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278285,0.000000,0.000000,0.250000,0,0);}
.ma6_c01118{transform:matrix(0.278647,0.001393,-0.001250,0.249997,0,0);-ms-transform:matrix(0.278647,0.001393,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.278647,0.001393,-0.001250,0.249997,0,0);}
.mcf_c01118{transform:matrix(0.279895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279895,0.000000,0.000000,0.250000,0,0);}
.me3_c01118{transform:matrix(0.279945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279945,0.000000,0.000000,0.250000,0,0);}
.mae_c01118{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m38_c01118{transform:matrix(0.280135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280135,0.000000,0.000000,0.250000,0,0);}
.mfe_c01118{transform:matrix(0.280256,0.002803,-0.002500,0.249988,0,0);-ms-transform:matrix(0.280256,0.002803,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.280256,0.002803,-0.002500,0.249988,0,0);}
.m53_c01118{transform:matrix(0.280835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280835,0.000000,0.000000,0.250000,0,0);}
.m4b_c01118{transform:matrix(0.281400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281400,0.000000,0.000000,0.250000,0,0);}
.mf8_c01118{transform:matrix(0.281927,0.003947,-0.003500,0.249976,0,0);-ms-transform:matrix(0.281927,0.003947,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.281927,0.003947,-0.003500,0.249976,0,0);}
.m8c_c01118{transform:matrix(0.282341,0.002823,-0.002500,0.249988,0,0);-ms-transform:matrix(0.282341,0.002823,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.282341,0.002823,-0.002500,0.249988,0,0);}
.m89_c01118{transform:matrix(0.282656,0.002827,-0.002500,0.249988,0,0);-ms-transform:matrix(0.282656,0.002827,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.282656,0.002827,-0.002500,0.249988,0,0);}
.m72_c01118{transform:matrix(0.283310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283310,0.000000,0.000000,0.250000,0,0);}
.m3e_c01118{transform:matrix(0.283555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283555,0.000000,0.000000,0.250000,0,0);}
.mab_c01118{transform:matrix(0.283621,0.001418,-0.001250,0.249997,0,0);-ms-transform:matrix(0.283621,0.001418,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.283621,0.001418,-0.001250,0.249997,0,0);}
.md3_c01118{transform:matrix(0.284315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284315,0.000000,0.000000,0.250000,0,0);}
.m3d_c01118{transform:matrix(0.286435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286435,0.000000,0.000000,0.250000,0,0);}
.m6a_c01118{transform:matrix(0.286785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286785,0.000000,0.000000,0.250000,0,0);}
.mdd_c01118{transform:matrix(0.288410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288410,0.000000,0.000000,0.250000,0,0);}
.m3a_c01118{transform:matrix(0.291140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291140,0.000000,0.000000,0.250000,0,0);}
.m5e_c01118{transform:matrix(0.294535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294535,0.000000,0.000000,0.250000,0,0);}
.m6e_c01118{transform:matrix(0.295255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295255,0.000000,0.000000,0.250000,0,0);}
.md7_c01118{transform:matrix(0.295475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295475,0.000000,0.000000,0.250000,0,0);}
.m5c_c01118{transform:matrix(0.295480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295480,0.000000,0.000000,0.250000,0,0);}
.ma1_c01118{transform:matrix(0.297160,0.002972,-0.002500,0.249988,0,0);-ms-transform:matrix(0.297160,0.002972,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.297160,0.002972,-0.002500,0.249988,0,0);}
.md9_c01118{transform:matrix(0.299720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299720,0.000000,0.000000,0.250000,0,0);}
.m3b_c01118{transform:matrix(0.302335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302335,0.000000,0.000000,0.250000,0,0);}
.mbc_c01118{transform:matrix(0.310015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310015,0.000000,0.000000,0.250000,0,0);}
.mb2_c01118{transform:matrix(0.311050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311050,0.000000,0.000000,0.250000,0,0);}
.mc7_c01118{transform:matrix(0.346060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346060,0.000000,0.000000,0.250000,0,0);}
.ma0_c01118{transform:matrix(0.417474,0.004175,-0.002500,0.249988,0,0);-ms-transform:matrix(0.417474,0.004175,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.417474,0.004175,-0.002500,0.249988,0,0);}
.ma3_c01118{transform:matrix(0.467362,0.004674,-0.002500,0.249988,0,0);-ms-transform:matrix(0.467362,0.004674,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.467362,0.004674,-0.002500,0.249988,0,0);}
.m40_c01118{transform:matrix(1.064440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.064440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.064440,0.000000,0.000000,0.250000,0,0);}
.m0_c01118{transform:matrix(2.103425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.103425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.103425,0.000000,0.000000,0.250000,0,0);}
.v0_c01118{vertical-align:0.000000px;}
.ls0_c01118{letter-spacing:0.000000px;}
.sc__c01118{text-shadow:none;}
.sc0_c01118{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__c01118{-webkit-text-stroke:0px transparent;}
.sc0_c01118{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01118{word-spacing:0.000000px;}
.fc0_c01118{color:transparent;}
.fs0_c01118{font-size:18.000000px;}
.fs6_c01118{font-size:66.000000px;}
.fs5_c01118{font-size:72.000000px;}
.fs9_c01118{font-size:72.000900px;}
.fsa_c01118{font-size:72.002916px;}
.fs8_c01118{font-size:72.003600px;}
.fsc_c01118{font-size:72.007056px;}
.fs3_c01118{font-size:78.000000px;}
.fs7_c01118{font-size:78.003900px;}
.fs2_c01118{font-size:84.000000px;}
.fsb_c01118{font-size:84.006048px;}
.fs1_c01118{font-size:132.000000px;}
.fs4_c01118{font-size:138.000000px;}
.y0_c01118{bottom:0.000000px;}
.ya6_c01118{bottom:15.164445px;}
.ya5_c01118{bottom:15.934065px;}
.ya4_c01118{bottom:16.490160px;}
.ya3_c01118{bottom:16.711365px;}
.ya2_c01118{bottom:17.148930px;}
.ya1_c01118{bottom:17.821500px;}
.ya0_c01118{bottom:50.708019px;}
.y9f_c01118{bottom:51.629982px;}
.y9e_c01118{bottom:52.579308px;}
.y9d_c01118{bottom:53.191983px;}
.y9c_c01118{bottom:53.826477px;}
.y9b_c01118{bottom:54.273000px;}
.y9a_c01118{bottom:84.686142px;}
.y99_c01118{bottom:85.486602px;}
.y98_c01118{bottom:86.406654px;}
.y97_c01118{bottom:86.814984px;}
.y96_c01118{bottom:87.994344px;}
.y95_c01118{bottom:88.797918px;}
.y94_c01118{bottom:89.103000px;}
.y93_c01118{bottom:122.781003px;}
.y92_c01118{bottom:123.193847px;}
.y91_c01118{bottom:123.991183px;}
.y90_c01118{bottom:124.389771px;}
.y8f_c01118{bottom:124.980221px;}
.y8e_c01118{bottom:125.281500px;}
.y8d_c01118{bottom:159.472500px;}
.y8c_c01118{bottom:194.949000px;}
.y8b_c01118{bottom:226.720500px;}
.y8a_c01118{bottom:226.972500px;}
.y89_c01118{bottom:227.176500px;}
.y88_c01118{bottom:227.583000px;}
.y87_c01118{bottom:227.784000px;}
.y86_c01118{bottom:227.982000px;}
.y85_c01118{bottom:228.114000px;}
.y84_c01118{bottom:228.775500px;}
.y83_c01118{bottom:228.976500px;}
.y82_c01118{bottom:229.437000px;}
.y81_c01118{bottom:229.770000px;}
.y80_c01118{bottom:261.459000px;}
.y7f_c01118{bottom:261.772500px;}
.y7e_c01118{bottom:262.476000px;}
.y7d_c01118{bottom:262.864500px;}
.y7c_c01118{bottom:263.091000px;}
.y7b_c01118{bottom:263.248500px;}
.y7a_c01118{bottom:264.403500px;}
.y79_c01118{bottom:264.870000px;}
.y78_c01118{bottom:265.260000px;}
.y77_c01118{bottom:265.564500px;}
.y76_c01118{bottom:265.950000px;}
.y75_c01118{bottom:298.582500px;}
.y74_c01118{bottom:298.810500px;}
.y73_c01118{bottom:298.918500px;}
.y72_c01118{bottom:299.199000px;}
.y71_c01118{bottom:299.311500px;}
.y70_c01118{bottom:299.479500px;}
.y6f_c01118{bottom:299.812500px;}
.y6e_c01118{bottom:299.976000px;}
.y6d_c01118{bottom:300.475500px;}
.y6c_c01118{bottom:300.805500px;}
.y6b_c01118{bottom:301.137000px;}
.y6a_c01118{bottom:301.306500px;}
.y69_c01118{bottom:301.575000px;}
.y68_c01118{bottom:301.861500px;}
.y67_c01118{bottom:333.373500px;}
.y66_c01118{bottom:333.579000px;}
.y65_c01118{bottom:334.114500px;}
.y64_c01118{bottom:334.443000px;}
.y63_c01118{bottom:335.172000px;}
.y62_c01118{bottom:335.703000px;}
.y61_c01118{bottom:335.908500px;}
.y60_c01118{bottom:336.490500px;}
.y5f_c01118{bottom:336.694500px;}
.y5e_c01118{bottom:336.961500px;}
.y5d_c01118{bottom:370.218000px;}
.y5c_c01118{bottom:403.536510px;}
.y5b_c01118{bottom:403.699852px;}
.y5a_c01118{bottom:404.198085px;}
.y59_c01118{bottom:404.704365px;}
.y58_c01118{bottom:404.866357px;}
.y57_c01118{bottom:405.365865px;}
.y56_c01118{bottom:405.814050px;}
.y55_c01118{bottom:406.350000px;}
.y54_c01118{bottom:438.678450px;}
.y53_c01118{bottom:438.919875px;}
.y52_c01118{bottom:439.153365px;}
.y51_c01118{bottom:439.616625px;}
.y50_c01118{bottom:440.254800px;}
.y4f_c01118{bottom:441.027570px;}
.y4e_c01118{bottom:441.172410px;}
.y4d_c01118{bottom:441.723780px;}
.y4c_c01118{bottom:441.952965px;}
.y4b_c01118{bottom:442.491555px;}
.y4a_c01118{bottom:443.032650px;}
.y49_c01118{bottom:443.336730px;}
.y48_c01118{bottom:473.974590px;}
.y47_c01118{bottom:474.450570px;}
.y46_c01118{bottom:474.649215px;}
.y45_c01118{bottom:474.856845px;}
.y44_c01118{bottom:475.649160px;}
.y43_c01118{bottom:476.238900px;}
.y42_c01118{bottom:476.442555px;}
.y41_c01118{bottom:477.034830px;}
.y40_c01118{bottom:477.238530px;}
.y3f_c01118{bottom:477.896610px;}
.y3e_c01118{bottom:511.030560px;}
.y3d_c01118{bottom:511.297455px;}
.y3c_c01118{bottom:511.906470px;}
.y3b_c01118{bottom:512.172360px;}
.y3a_c01118{bottom:512.437965px;}
.y39_c01118{bottom:513.230460px;}
.y38_c01118{bottom:513.635205px;}
.y37_c01118{bottom:513.836460px;}
.y36_c01118{bottom:514.032855px;}
.y35_c01118{bottom:514.164405px;}
.y34_c01118{bottom:514.628850px;}
.y33_c01118{bottom:514.956675px;}
.y32_c01118{bottom:515.159265px;}
.y31_c01118{bottom:545.457930px;}
.y30_c01118{bottom:546.130470px;}
.y2f_c01118{bottom:546.467685px;}
.y2e_c01118{bottom:547.035090px;}
.y2d_c01118{bottom:547.466745px;}
.y2c_c01118{bottom:548.349975px;}
.y2b_c01118{bottom:549.346875px;}
.y2a_c01118{bottom:550.021200px;}
.y29_c01118{bottom:550.466415px;}
.y28_c01118{bottom:550.801500px;}
.y1_c01118{bottom:558.090000px;}
.y27_c01118{bottom:586.651500px;}
.y26_c01118{bottom:621.616500px;}
.y25_c01118{bottom:656.757000px;}
.y24_c01118{bottom:692.010000px;}
.y23_c01118{bottom:726.840000px;}
.y22_c01118{bottom:762.733500px;}
.y21_c01118{bottom:797.850000px;}
.y20_c01118{bottom:833.329500px;}
.y1f_c01118{bottom:869.905500px;}
.y1e_c01118{bottom:905.232000px;}
.y1d_c01118{bottom:940.060500px;}
.y1c_c01118{bottom:973.276500px;}
.y1b_c01118{bottom:1008.106500px;}
.y12_c01118{bottom:1038.444000px;}
.y13_c01118{bottom:1039.023000px;}
.y14_c01118{bottom:1039.239000px;}
.y15_c01118{bottom:1039.831500px;}
.y16_c01118{bottom:1040.494500px;}
.y17_c01118{bottom:1040.730000px;}
.y18_c01118{bottom:1041.424500px;}
.y19_c01118{bottom:1041.622500px;}
.y1a_c01118{bottom:1042.293000px;}
.y5_c01118{bottom:1078.380000px;}
.y6_c01118{bottom:1078.576500px;}
.y7_c01118{bottom:1079.160000px;}
.y8_c01118{bottom:1079.367000px;}
.y9_c01118{bottom:1079.566500px;}
.ya_c01118{bottom:1080.097500px;}
.yb_c01118{bottom:1080.301500px;}
.yc_c01118{bottom:1080.897000px;}
.yd_c01118{bottom:1081.092000px;}
.ye_c01118{bottom:1081.299000px;}
.yf_c01118{bottom:1081.630500px;}
.y10_c01118{bottom:1081.768500px;}
.y11_c01118{bottom:1082.365500px;}
.y4_c01118{bottom:1114.290000px;}
.y3_c01118{bottom:1150.450500px;}
.y2_c01118{bottom:1205.010000px;}
.h2_c01118{height:18.000000px;}
.h8_c01118{height:66.000000px;}
.h7_c01118{height:72.000000px;}
.hb_c01118{height:72.000900px;}
.hc_c01118{height:72.002916px;}
.ha_c01118{height:72.003600px;}
.he_c01118{height:72.007056px;}
.h5_c01118{height:78.000000px;}
.h9_c01118{height:78.003900px;}
.h4_c01118{height:84.000000px;}
.hd_c01118{height:84.006048px;}
.h3_c01118{height:132.000000px;}
.h6_c01118{height:138.000000px;}
.h0_c01118{height:1246.320000px;}
.h1_c01118{height:1246.500000px;}
.w1_c01118{width:912.750000px;}
.w0_c01118{width:912.870000px;}
.x0_c01118{left:0.000000px;}
.x1_c01118{left:15.120000px;}
.xe_c01118{left:164.700000px;}
.x1a_c01118{left:170.976000px;}
.x58_c01118{left:173.268240px;}
.x63_c01118{left:174.603720px;}
.x6c_c01118{left:175.962000px;}
.x1b_c01118{left:203.667000px;}
.x38_c01118{left:205.198500px;}
.x59_c01118{left:207.028590px;}
.x29_c01118{left:213.298500px;}
.xf_c01118{left:214.920000px;}
.x64_c01118{left:218.063025px;}
.x76_c01118{left:219.153000px;}
.x7c_c01118{left:230.770500px;}
.x31_c01118{left:236.788500px;}
.x77_c01118{left:253.167000px;}
.x39_c01118{left:259.198500px;}
.x5a_c01118{left:261.563265px;}
.x22_c01118{left:268.030500px;}
.x70_c01118{left:274.050000px;}
.x5_c01118{left:278.640000px;}
.x32_c01118{left:281.068500px;}
.x3b_c01118{left:282.420000px;}
.x99_c01118{left:283.555500px;}
.x40_c01118{left:284.580000px;}
.x95_c01118{left:286.078500px;}
.xa1_c01118{left:287.134500px;}
.x3a_c01118{left:291.868500px;}
.x65_c01118{left:295.274835px;}
.x1c_c01118{left:300.864000px;}
.x23_c01118{left:303.939000px;}
.x8a_c01118{left:307.971000px;}
.x9a_c01118{left:308.979000px;}
.x10_c01118{left:312.930000px;}
.x2a_c01118{left:314.008500px;}
.x47_c01118{left:315.360000px;}
.x5f_c01118{left:317.694975px;}
.x71_c01118{left:318.870000px;}
.x44_c01118{left:326.430000px;}
.x83_c01118{left:330.637500px;}
.x91_c01118{left:332.100000px;}
.x1d_c01118{left:335.425500px;}
.x3c_c01118{left:336.690000px;}
.x5b_c01118{left:339.060870px;}
.x8b_c01118{left:341.448000px;}
.x11_c01118{left:346.140000px;}
.x48_c01118{left:348.300000px;}
.x78_c01118{left:350.097000px;}
.xa2_c01118{left:354.391500px;}
.x33_c01118{left:359.368500px;}
.x4b_c01118{left:360.450000px;}
.x92_c01118{left:363.690000px;}
.x6_c01118{left:368.280000px;}
.x66_c01118{left:372.236145px;}
.x9b_c01118{left:375.943500px;}
.x2b_c01118{left:381.238500px;}
.x4f_c01118{left:382.320000px;}
.x79_c01118{left:384.385500px;}
.x12_c01118{left:390.420000px;}
.x3d_c01118{left:391.770000px;}
.x5c_c01118{left:393.607545px;}
.x4c_c01118{left:395.010000px;}
.x93_c01118{left:396.090000px;}
.x84_c01118{left:397.324500px;}
.x7_c01118{left:401.490000px;}
.x24_c01118{left:402.756000px;}
.x45_c01118{left:404.460000px;}
.x9e_c01118{left:407.803500px;}
.x41_c01118{left:414.450000px;}
.x2_c01118{left:417.150000px;}
.x90_c01118{left:419.310000px;}
.x3e_c01118{left:424.710000px;}
.x52_c01118{left:427.474500px;}
.x96_c01118{left:429.447000px;}
.x13_c01118{left:435.240000px;}
.x4a_c01118{left:437.400000px;}
.x4d_c01118{left:438.480000px;}
.x72_c01118{left:440.640000px;}
.x2c_c01118{left:446.308500px;}
.x42_c01118{left:448.200000px;}
.x3_c01118{left:451.170000px;}
.x1e_c01118{left:457.194000px;}
.x14_c01118{left:469.260000px;}
.x50_c01118{left:471.420000px;}
.x6d_c01118{left:472.690500px;}
.x9c_c01118{left:474.223500px;}
.x9f_c01118{left:475.612500px;}
.x8_c01118{left:478.440000px;}
.x34_c01118{left:480.058500px;}
.x49_c01118{left:481.410000px;}
.x67_c01118{left:483.744990px;}
.x1f_c01118{left:491.220000px;}
.x4_c01118{left:494.370000px;}
.x4e_c01118{left:503.550000px;}
.x43_c01118{left:504.630000px;}
.x8c_c01118{left:506.419500px;}
.x94_c01118{left:507.600000px;}
.x25_c01118{left:513.345000px;}
.x46_c01118{left:515.430000px;}
.x97_c01118{left:518.040000px;}
.x51_c01118{left:526.230000px;}
.x73_c01118{left:527.580000px;}
.x3f_c01118{left:536.760000px;}
.x8d_c01118{left:539.905500px;}
.xa0_c01118{left:541.467000px;}
.x60_c01118{left:548.821230px;}
.x7d_c01118{left:550.179000px;}
.x26_c01118{left:552.600000px;}
.x2d_c01118{left:557.278500px;}
.x85_c01118{left:562.287000px;}
.x98_c01118{left:563.911500px;}
.x9_c01118{left:569.160000px;}
.x15_c01118{left:578.610000px;}
.x35_c01118{left:581.308500px;}
.x7e_c01118{left:582.849000px;}
.x86_c01118{left:584.722500px;}
.x20_c01118{left:590.571000px;}
.x7a_c01118{left:594.435000px;}
.x6e_c01118{left:606.345000px;}
.x8e_c01118{left:607.621500px;}
.x53_c01118{left:615.487500px;}
.x87_c01118{left:617.106000px;}
.x16_c01118{left:622.350000px;}
.x5d_c01118{left:626.616360px;}
.x8f_c01118{left:641.700000px;}
.x2e_c01118{left:646.108500px;}
.x7b_c01118{left:649.137000px;}
.x9d_c01118{left:651.627000px;}
.x17_c01118{left:656.910000px;}
.x54_c01118{left:658.653000px;}
.x74_c01118{left:660.960000px;}
.x27_c01118{left:668.358000px;}
.x36_c01118{left:670.138500px;}
.x88_c01118{left:672.636000px;}
.xa_c01118{left:678.510000px;}
.x61_c01118{left:680.858010px;}
.x7f_c01118{left:683.271000px;}
.x37_c01118{left:700.108500px;}
.xb_c01118{left:701.730000px;}
.x68_c01118{left:706.230180px;}
.x21_c01118{left:712.855500px;}
.x55_c01118{left:715.393500px;}
.x18_c01118{left:734.400000px;}
.xc_c01118{left:736.020000px;}
.x6f_c01118{left:738.660000px;}
.x56_c01118{left:749.115000px;}
.x80_c01118{left:761.865000px;}
.x69_c01118{left:772.358160px;}
.x2f_c01118{left:779.758500px;}
.x81_c01118{left:783.471000px;}
.xd_c01118{left:791.370000px;}
.x75_c01118{left:794.610000px;}
.x6a_c01118{left:805.608150px;}
.x28_c01118{left:813.067500px;}
.x30_c01118{left:814.588500px;}
.x57_c01118{left:816.369000px;}
.x89_c01118{left:818.004000px;}
.x62_c01118{left:828.039405px;}
.x82_c01118{left:829.108500px;}
.x19_c01118{left:836.190000px;}
.x6b_c01118{left:840.101685px;}
.x5e_c01118{left:861.266250px;}
@media print{
.v0_c01118{vertical-align:0.000000pt;}
.ls0_c01118{letter-spacing:0.000000pt;}
.ws0_c01118{word-spacing:0.000000pt;}
.fs0_c01118{font-size:16.000000pt;}
.fs6_c01118{font-size:58.666667pt;}
.fs5_c01118{font-size:64.000000pt;}
.fs9_c01118{font-size:64.000800pt;}
.fsa_c01118{font-size:64.002592pt;}
.fs8_c01118{font-size:64.003200pt;}
.fsc_c01118{font-size:64.006272pt;}
.fs3_c01118{font-size:69.333333pt;}
.fs7_c01118{font-size:69.336800pt;}
.fs2_c01118{font-size:74.666667pt;}
.fsb_c01118{font-size:74.672042pt;}
.fs1_c01118{font-size:117.333333pt;}
.fs4_c01118{font-size:122.666667pt;}
.y0_c01118{bottom:0.000000pt;}
.ya6_c01118{bottom:13.479507pt;}
.ya5_c01118{bottom:14.163613pt;}
.ya4_c01118{bottom:14.657920pt;}
.ya3_c01118{bottom:14.854547pt;}
.ya2_c01118{bottom:15.243493pt;}
.ya1_c01118{bottom:15.841333pt;}
.ya0_c01118{bottom:45.073795pt;}
.y9f_c01118{bottom:45.893317pt;}
.y9e_c01118{bottom:46.737163pt;}
.y9d_c01118{bottom:47.281763pt;}
.y9c_c01118{bottom:47.845757pt;}
.y9b_c01118{bottom:48.242667pt;}
.y9a_c01118{bottom:75.276571pt;}
.y99_c01118{bottom:75.988091pt;}
.y98_c01118{bottom:76.805915pt;}
.y97_c01118{bottom:77.168875pt;}
.y96_c01118{bottom:78.217195pt;}
.y95_c01118{bottom:78.931483pt;}
.y94_c01118{bottom:79.202667pt;}
.y93_c01118{bottom:109.138669pt;}
.y92_c01118{bottom:109.505641pt;}
.y91_c01118{bottom:110.214385pt;}
.y90_c01118{bottom:110.568685pt;}
.y8f_c01118{bottom:111.093529pt;}
.y8e_c01118{bottom:111.361333pt;}
.y8d_c01118{bottom:141.753333pt;}
.y8c_c01118{bottom:173.288000pt;}
.y8b_c01118{bottom:201.529333pt;}
.y8a_c01118{bottom:201.753333pt;}
.y89_c01118{bottom:201.934667pt;}
.y88_c01118{bottom:202.296000pt;}
.y87_c01118{bottom:202.474667pt;}
.y86_c01118{bottom:202.650667pt;}
.y85_c01118{bottom:202.768000pt;}
.y84_c01118{bottom:203.356000pt;}
.y83_c01118{bottom:203.534667pt;}
.y82_c01118{bottom:203.944000pt;}
.y81_c01118{bottom:204.240000pt;}
.y80_c01118{bottom:232.408000pt;}
.y7f_c01118{bottom:232.686667pt;}
.y7e_c01118{bottom:233.312000pt;}
.y7d_c01118{bottom:233.657333pt;}
.y7c_c01118{bottom:233.858667pt;}
.y7b_c01118{bottom:233.998667pt;}
.y7a_c01118{bottom:235.025333pt;}
.y79_c01118{bottom:235.440000pt;}
.y78_c01118{bottom:235.786667pt;}
.y77_c01118{bottom:236.057333pt;}
.y76_c01118{bottom:236.400000pt;}
.y75_c01118{bottom:265.406667pt;}
.y74_c01118{bottom:265.609333pt;}
.y73_c01118{bottom:265.705333pt;}
.y72_c01118{bottom:265.954667pt;}
.y71_c01118{bottom:266.054667pt;}
.y70_c01118{bottom:266.204000pt;}
.y6f_c01118{bottom:266.500000pt;}
.y6e_c01118{bottom:266.645333pt;}
.y6d_c01118{bottom:267.089333pt;}
.y6c_c01118{bottom:267.382667pt;}
.y6b_c01118{bottom:267.677333pt;}
.y6a_c01118{bottom:267.828000pt;}
.y69_c01118{bottom:268.066667pt;}
.y68_c01118{bottom:268.321333pt;}
.y67_c01118{bottom:296.332000pt;}
.y66_c01118{bottom:296.514667pt;}
.y65_c01118{bottom:296.990667pt;}
.y64_c01118{bottom:297.282667pt;}
.y63_c01118{bottom:297.930667pt;}
.y62_c01118{bottom:298.402667pt;}
.y61_c01118{bottom:298.585333pt;}
.y60_c01118{bottom:299.102667pt;}
.y5f_c01118{bottom:299.284000pt;}
.y5e_c01118{bottom:299.521333pt;}
.y5d_c01118{bottom:329.082667pt;}
.y5c_c01118{bottom:358.699120pt;}
.y5b_c01118{bottom:358.844313pt;}
.y5a_c01118{bottom:359.287187pt;}
.y59_c01118{bottom:359.737213pt;}
.y58_c01118{bottom:359.881207pt;}
.y57_c01118{bottom:360.325213pt;}
.y56_c01118{bottom:360.723600pt;}
.y55_c01118{bottom:361.200000pt;}
.y54_c01118{bottom:389.936400pt;}
.y53_c01118{bottom:390.151000pt;}
.y52_c01118{bottom:390.358547pt;}
.y51_c01118{bottom:390.770333pt;}
.y50_c01118{bottom:391.337600pt;}
.y4f_c01118{bottom:392.024507pt;}
.y4e_c01118{bottom:392.153253pt;}
.y4d_c01118{bottom:392.643360pt;}
.y4c_c01118{bottom:392.847080pt;}
.y4b_c01118{bottom:393.325827pt;}
.y4a_c01118{bottom:393.806800pt;}
.y49_c01118{bottom:394.077093pt;}
.y48_c01118{bottom:421.310747pt;}
.y47_c01118{bottom:421.733840pt;}
.y46_c01118{bottom:421.910413pt;}
.y45_c01118{bottom:422.094973pt;}
.y44_c01118{bottom:422.799253pt;}
.y43_c01118{bottom:423.323467pt;}
.y42_c01118{bottom:423.504493pt;}
.y41_c01118{bottom:424.030960pt;}
.y40_c01118{bottom:424.212027pt;}
.y3f_c01118{bottom:424.796987pt;}
.y3e_c01118{bottom:454.249387pt;}
.y3d_c01118{bottom:454.486627pt;}
.y3c_c01118{bottom:455.027973pt;}
.y3b_c01118{bottom:455.264320pt;}
.y3a_c01118{bottom:455.500413pt;}
.y39_c01118{bottom:456.204853pt;}
.y38_c01118{bottom:456.564627pt;}
.y37_c01118{bottom:456.743520pt;}
.y36_c01118{bottom:456.918093pt;}
.y35_c01118{bottom:457.035027pt;}
.y34_c01118{bottom:457.447867pt;}
.y33_c01118{bottom:457.739267pt;}
.y32_c01118{bottom:457.919347pt;}
.y31_c01118{bottom:484.851493pt;}
.y30_c01118{bottom:485.449307pt;}
.y2f_c01118{bottom:485.749053pt;}
.y2e_c01118{bottom:486.253413pt;}
.y2d_c01118{bottom:486.637107pt;}
.y2c_c01118{bottom:487.422200pt;}
.y2b_c01118{bottom:488.308333pt;}
.y2a_c01118{bottom:488.907733pt;}
.y29_c01118{bottom:489.303480pt;}
.y28_c01118{bottom:489.601333pt;}
.y1_c01118{bottom:496.080000pt;}
.y27_c01118{bottom:521.468000pt;}
.y26_c01118{bottom:552.548000pt;}
.y25_c01118{bottom:583.784000pt;}
.y24_c01118{bottom:615.120000pt;}
.y23_c01118{bottom:646.080000pt;}
.y22_c01118{bottom:677.985333pt;}
.y21_c01118{bottom:709.200000pt;}
.y20_c01118{bottom:740.737333pt;}
.y1f_c01118{bottom:773.249333pt;}
.y1e_c01118{bottom:804.650667pt;}
.y1d_c01118{bottom:835.609333pt;}
.y1c_c01118{bottom:865.134667pt;}
.y1b_c01118{bottom:896.094667pt;}
.y12_c01118{bottom:923.061333pt;}
.y13_c01118{bottom:923.576000pt;}
.y14_c01118{bottom:923.768000pt;}
.y15_c01118{bottom:924.294667pt;}
.y16_c01118{bottom:924.884000pt;}
.y17_c01118{bottom:925.093333pt;}
.y18_c01118{bottom:925.710667pt;}
.y19_c01118{bottom:925.886667pt;}
.y1a_c01118{bottom:926.482667pt;}
.y5_c01118{bottom:958.560000pt;}
.y6_c01118{bottom:958.734667pt;}
.y7_c01118{bottom:959.253333pt;}
.y8_c01118{bottom:959.437333pt;}
.y9_c01118{bottom:959.614667pt;}
.ya_c01118{bottom:960.086667pt;}
.yb_c01118{bottom:960.268000pt;}
.yc_c01118{bottom:960.797333pt;}
.yd_c01118{bottom:960.970667pt;}
.ye_c01118{bottom:961.154667pt;}
.yf_c01118{bottom:961.449333pt;}
.y10_c01118{bottom:961.572000pt;}
.y11_c01118{bottom:962.102667pt;}
.y4_c01118{bottom:990.480000pt;}
.y3_c01118{bottom:1022.622667pt;}
.y2_c01118{bottom:1071.120000pt;}
.h2_c01118{height:16.000000pt;}
.h8_c01118{height:58.666667pt;}
.h7_c01118{height:64.000000pt;}
.hb_c01118{height:64.000800pt;}
.hc_c01118{height:64.002592pt;}
.ha_c01118{height:64.003200pt;}
.he_c01118{height:64.006272pt;}
.h5_c01118{height:69.333333pt;}
.h9_c01118{height:69.336800pt;}
.h4_c01118{height:74.666667pt;}
.hd_c01118{height:74.672042pt;}
.h3_c01118{height:117.333333pt;}
.h6_c01118{height:122.666667pt;}
.h0_c01118{height:1107.840000pt;}
.h1_c01118{height:1108.000000pt;}
.w1_c01118{width:811.333333pt;}
.w0_c01118{width:811.440000pt;}
.x0_c01118{left:0.000000pt;}
.x1_c01118{left:13.440000pt;}
.xe_c01118{left:146.400000pt;}
.x1a_c01118{left:151.978667pt;}
.x58_c01118{left:154.016213pt;}
.x63_c01118{left:155.203307pt;}
.x6c_c01118{left:156.410667pt;}
.x1b_c01118{left:181.037333pt;}
.x38_c01118{left:182.398667pt;}
.x59_c01118{left:184.025413pt;}
.x29_c01118{left:189.598667pt;}
.xf_c01118{left:191.040000pt;}
.x64_c01118{left:193.833800pt;}
.x76_c01118{left:194.802667pt;}
.x7c_c01118{left:205.129333pt;}
.x31_c01118{left:210.478667pt;}
.x77_c01118{left:225.037333pt;}
.x39_c01118{left:230.398667pt;}
.x5a_c01118{left:232.500680pt;}
.x22_c01118{left:238.249333pt;}
.x70_c01118{left:243.600000pt;}
.x5_c01118{left:247.680000pt;}
.x32_c01118{left:249.838667pt;}
.x3b_c01118{left:251.040000pt;}
.x99_c01118{left:252.049333pt;}
.x40_c01118{left:252.960000pt;}
.x95_c01118{left:254.292000pt;}
.xa1_c01118{left:255.230667pt;}
.x3a_c01118{left:259.438667pt;}
.x65_c01118{left:262.466520pt;}
.x1c_c01118{left:267.434667pt;}
.x23_c01118{left:270.168000pt;}
.x8a_c01118{left:273.752000pt;}
.x9a_c01118{left:274.648000pt;}
.x10_c01118{left:278.160000pt;}
.x2a_c01118{left:279.118667pt;}
.x47_c01118{left:280.320000pt;}
.x5f_c01118{left:282.395533pt;}
.x71_c01118{left:283.440000pt;}
.x44_c01118{left:290.160000pt;}
.x83_c01118{left:293.900000pt;}
.x91_c01118{left:295.200000pt;}
.x1d_c01118{left:298.156000pt;}
.x3c_c01118{left:299.280000pt;}
.x5b_c01118{left:301.387440pt;}
.x8b_c01118{left:303.509333pt;}
.x11_c01118{left:307.680000pt;}
.x48_c01118{left:309.600000pt;}
.x78_c01118{left:311.197333pt;}
.xa2_c01118{left:315.014667pt;}
.x33_c01118{left:319.438667pt;}
.x4b_c01118{left:320.400000pt;}
.x92_c01118{left:323.280000pt;}
.x6_c01118{left:327.360000pt;}
.x66_c01118{left:330.876573pt;}
.x9b_c01118{left:334.172000pt;}
.x2b_c01118{left:338.878667pt;}
.x4f_c01118{left:339.840000pt;}
.x79_c01118{left:341.676000pt;}
.x12_c01118{left:347.040000pt;}
.x3d_c01118{left:348.240000pt;}
.x5c_c01118{left:349.873373pt;}
.x4c_c01118{left:351.120000pt;}
.x93_c01118{left:352.080000pt;}
.x84_c01118{left:353.177333pt;}
.x7_c01118{left:356.880000pt;}
.x24_c01118{left:358.005333pt;}
.x45_c01118{left:359.520000pt;}
.x9e_c01118{left:362.492000pt;}
.x41_c01118{left:368.400000pt;}
.x2_c01118{left:370.800000pt;}
.x90_c01118{left:372.720000pt;}
.x3e_c01118{left:377.520000pt;}
.x52_c01118{left:379.977333pt;}
.x96_c01118{left:381.730667pt;}
.x13_c01118{left:386.880000pt;}
.x4a_c01118{left:388.800000pt;}
.x4d_c01118{left:389.760000pt;}
.x72_c01118{left:391.680000pt;}
.x2c_c01118{left:396.718667pt;}
.x42_c01118{left:398.400000pt;}
.x3_c01118{left:401.040000pt;}
.x1e_c01118{left:406.394667pt;}
.x14_c01118{left:417.120000pt;}
.x50_c01118{left:419.040000pt;}
.x6d_c01118{left:420.169333pt;}
.x9c_c01118{left:421.532000pt;}
.x9f_c01118{left:422.766667pt;}
.x8_c01118{left:425.280000pt;}
.x34_c01118{left:426.718667pt;}
.x49_c01118{left:427.920000pt;}
.x67_c01118{left:429.995547pt;}
.x1f_c01118{left:436.640000pt;}
.x4_c01118{left:439.440000pt;}
.x4e_c01118{left:447.600000pt;}
.x43_c01118{left:448.560000pt;}
.x8c_c01118{left:450.150667pt;}
.x94_c01118{left:451.200000pt;}
.x25_c01118{left:456.306667pt;}
.x46_c01118{left:458.160000pt;}
.x97_c01118{left:460.480000pt;}
.x51_c01118{left:467.760000pt;}
.x73_c01118{left:468.960000pt;}
.x3f_c01118{left:477.120000pt;}
.x8d_c01118{left:479.916000pt;}
.xa0_c01118{left:481.304000pt;}
.x60_c01118{left:487.841093pt;}
.x7d_c01118{left:489.048000pt;}
.x26_c01118{left:491.200000pt;}
.x2d_c01118{left:495.358667pt;}
.x85_c01118{left:499.810667pt;}
.x98_c01118{left:501.254667pt;}
.x9_c01118{left:505.920000pt;}
.x15_c01118{left:514.320000pt;}
.x35_c01118{left:516.718667pt;}
.x7e_c01118{left:518.088000pt;}
.x86_c01118{left:519.753333pt;}
.x20_c01118{left:524.952000pt;}
.x7a_c01118{left:528.386667pt;}
.x6e_c01118{left:538.973333pt;}
.x8e_c01118{left:540.108000pt;}
.x53_c01118{left:547.100000pt;}
.x87_c01118{left:548.538667pt;}
.x16_c01118{left:553.200000pt;}
.x5d_c01118{left:556.992320pt;}
.x8f_c01118{left:570.400000pt;}
.x2e_c01118{left:574.318667pt;}
.x7b_c01118{left:577.010667pt;}
.x9d_c01118{left:579.224000pt;}
.x17_c01118{left:583.920000pt;}
.x54_c01118{left:585.469333pt;}
.x74_c01118{left:587.520000pt;}
.x27_c01118{left:594.096000pt;}
.x36_c01118{left:595.678667pt;}
.x88_c01118{left:597.898667pt;}
.xa_c01118{left:603.120000pt;}
.x61_c01118{left:605.207120pt;}
.x7f_c01118{left:607.352000pt;}
.x37_c01118{left:622.318667pt;}
.xb_c01118{left:623.760000pt;}
.x68_c01118{left:627.760160pt;}
.x21_c01118{left:633.649333pt;}
.x55_c01118{left:635.905333pt;}
.x18_c01118{left:652.800000pt;}
.xc_c01118{left:654.240000pt;}
.x6f_c01118{left:656.586667pt;}
.x56_c01118{left:665.880000pt;}
.x80_c01118{left:677.213333pt;}
.x69_c01118{left:686.540587pt;}
.x2f_c01118{left:693.118667pt;}
.x81_c01118{left:696.418667pt;}
.xd_c01118{left:703.440000pt;}
.x75_c01118{left:706.320000pt;}
.x6a_c01118{left:716.096133pt;}
.x28_c01118{left:722.726667pt;}
.x30_c01118{left:724.078667pt;}
.x57_c01118{left:725.661333pt;}
.x89_c01118{left:727.114667pt;}
.x62_c01118{left:736.035027pt;}
.x82_c01118{left:736.985333pt;}
.x19_c01118{left:743.280000pt;}
.x6b_c01118{left:746.757053pt;}
.x5e_c01118{left:765.570000pt;}
}





/* 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_c01119 {
    display:none;
  }
  .loading-indicator_c01119.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01119 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_c01119 { 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_c01119" -> "#page-container .classname_c01119")
 */
.pf_c01119 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01119 { /* 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_c01119.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01119 { /* 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_c01119 { /* 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_c01119 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01119 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01119 {overflow:visible;}
  }
}
.c_c01119 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01119 { /* 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_c01119:after { /* webkit #35443 */
  content: '';
}
.t_c01119:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01119 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 */
}
.__c01119 { /* 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_c01119 { /* info for Javascript */
  display:none;
}
.l_c01119 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01119 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01119 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01119: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_c01119 {
    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_c01119.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01119.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_c01119 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01119{font-family:sans-serif;visibility:hidden;}
.sc__c01119{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01119{-webkit-text-stroke:0px transparent;}
}
.y0_c01119{bottom:0.000000px;}
.h0_c01119{height:1246.320000px;}
.h1_c01119{height:1246.500000px;}
.w1_c01119{width:912.750000px;}
.w0_c01119{width:912.870000px;}
.x0_c01119{left:0.000000px;}
@media print{
.y0_c01119{bottom:0.000000pt;}
.h0_c01119{height:1107.840000pt;}
.h1_c01119{height:1108.000000pt;}
.w1_c01119{width:811.333333pt;}
.w0_c01119{width:811.440000pt;}
.x0_c01119{left:0.000000pt;}
}





/* 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_c01120 {
    display:none;
  }
  .loading-indicator_c01120.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01120 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_c01120 { 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_c01120" -> "#page-container .classname_c01120")
 */
.pf_c01120 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01120 { /* 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_c01120.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01120 { /* 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_c01120 { /* 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_c01120 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01120 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01120 {overflow:visible;}
  }
}
.c_c01120 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01120 { /* 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_c01120:after { /* webkit #35443 */
  content: '';
}
.t_c01120:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01120 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 */
}
.__c01120 { /* 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_c01120 { /* info for Javascript */
  display:none;
}
.l_c01120 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01120 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01120 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01120: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_c01120 {
    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_c01120.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01120.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_c01120 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01120{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01120;src:url('chunks/assets/font_c605e72f209fc835e906f064.woff2')format("woff");}.ff1_c01120{font-family:ff1_c01120;line-height:1.000000;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;}
.mf3_c01120{transform:matrix(0.148490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148490,0.000000,0.000000,0.250000,0,0);}
.m4f_c01120{transform:matrix(0.167880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167880,0.000000,0.000000,0.250000,0,0);}
.m4b_c01120{transform:matrix(0.170880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170880,0.000000,0.000000,0.250000,0,0);}
.m6d_c01120{transform:matrix(0.172735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172735,0.000000,0.000000,0.250000,0,0);}
.m52_c01120{transform:matrix(0.174240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174240,0.000000,0.000000,0.250000,0,0);}
.med_c01120{transform:matrix(0.177680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177680,0.000000,0.000000,0.250000,0,0);}
.m96_c01120{transform:matrix(0.179915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179915,0.000000,0.000000,0.250000,0,0);}
.mef_c01120{transform:matrix(0.180370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180370,0.000000,0.000000,0.250000,0,0);}
.mda_c01120{transform:matrix(0.184177,-0.004420,0.005998,0.249928,0,0);-ms-transform:matrix(0.184177,-0.004420,0.005998,0.249928,0,0);-webkit-transform:matrix(0.184177,-0.004420,0.005998,0.249928,0,0);}
.mf7_c01120{transform:matrix(0.184254,0.002395,-0.003250,0.249979,0,0);-ms-transform:matrix(0.184254,0.002395,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.184254,0.002395,-0.003250,0.249979,0,0);}
.mac_c01120{transform:matrix(0.187490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187490,0.000000,0.000000,0.250000,0,0);}
.m51_c01120{transform:matrix(0.187905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187905,0.000000,0.000000,0.250000,0,0);}
.ma8_c01120{transform:matrix(0.188045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188045,0.000000,0.000000,0.250000,0,0);}
.mee_c01120{transform:matrix(0.188585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188585,0.000000,0.000000,0.250000,0,0);}
.m72_c01120{transform:matrix(0.188660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188660,0.000000,0.000000,0.250000,0,0);}
.mb4_c01120{transform:matrix(0.188875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188875,0.000000,0.000000,0.250000,0,0);}
.m50_c01120{transform:matrix(0.188930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188930,0.000000,0.000000,0.250000,0,0);}
.mdb_c01120{transform:matrix(0.190180,-0.004564,0.005998,0.249928,0,0);-ms-transform:matrix(0.190180,-0.004564,0.005998,0.249928,0,0);-webkit-transform:matrix(0.190180,-0.004564,0.005998,0.249928,0,0);}
.mfe_c01120{transform:matrix(0.190404,0.002475,-0.003250,0.249979,0,0);-ms-transform:matrix(0.190404,0.002475,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.190404,0.002475,-0.003250,0.249979,0,0);}
.mde_c01120{transform:matrix(0.191560,-0.004597,0.005998,0.249928,0,0);-ms-transform:matrix(0.191560,-0.004597,0.005998,0.249928,0,0);-webkit-transform:matrix(0.191560,-0.004597,0.005998,0.249928,0,0);}
.mfd_c01120{transform:matrix(0.191909,0.002495,-0.003250,0.249979,0,0);-ms-transform:matrix(0.191909,0.002495,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.191909,0.002495,-0.003250,0.249979,0,0);}
.mae_c01120{transform:matrix(0.192665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192665,0.000000,0.000000,0.250000,0,0);}
.mff_c01120{transform:matrix(0.193024,0.002509,-0.003250,0.249979,0,0);-ms-transform:matrix(0.193024,0.002509,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.193024,0.002509,-0.003250,0.249979,0,0);}
.m49_c01120{transform:matrix(0.194575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194575,0.000000,0.000000,0.250000,0,0);}
.m4e_c01120{transform:matrix(0.195830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195830,0.000000,0.000000,0.250000,0,0);}
.m6b_c01120{transform:matrix(0.196735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196735,0.000000,0.000000,0.250000,0,0);}
.m94_c01120{transform:matrix(0.197385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197385,0.000000,0.000000,0.250000,0,0);}
.m31_c01120{transform:matrix(0.197425,-0.001974,0.002500,0.249988,0,0);-ms-transform:matrix(0.197425,-0.001974,0.002500,0.249988,0,0);-webkit-transform:matrix(0.197425,-0.001974,0.002500,0.249988,0,0);}
.mf6_c01120{transform:matrix(0.199433,0.002593,-0.003250,0.249979,0,0);-ms-transform:matrix(0.199433,0.002593,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.199433,0.002593,-0.003250,0.249979,0,0);}
.m70_c01120{transform:matrix(0.201495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201495,0.000000,0.000000,0.250000,0,0);}
.m53_c01120{transform:matrix(0.202105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202105,0.000000,0.000000,0.250000,0,0);}
.m33_c01120{transform:matrix(0.202515,-0.002025,0.002500,0.249988,0,0);-ms-transform:matrix(0.202515,-0.002025,0.002500,0.249988,0,0);-webkit-transform:matrix(0.202515,-0.002025,0.002500,0.249988,0,0);}
.mba_c01120{transform:matrix(0.203315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203315,0.000000,0.000000,0.250000,0,0);}
.m78_c01120{transform:matrix(0.204195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204195,0.000000,0.000000,0.250000,0,0);}
.m35_c01120{transform:matrix(0.204450,-0.002044,0.002500,0.249988,0,0);-ms-transform:matrix(0.204450,-0.002044,0.002500,0.249988,0,0);-webkit-transform:matrix(0.204450,-0.002044,0.002500,0.249988,0,0);}
.mdc_c01120{transform:matrix(0.206341,-0.004952,0.005998,0.249928,0,0);-ms-transform:matrix(0.206341,-0.004952,0.005998,0.249928,0,0);-webkit-transform:matrix(0.206341,-0.004952,0.005998,0.249928,0,0);}
.m90_c01120{transform:matrix(0.206925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206925,0.000000,0.000000,0.250000,0,0);}
.mad_c01120{transform:matrix(0.207460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207460,0.000000,0.000000,0.250000,0,0);}
.mb2_c01120{transform:matrix(0.207895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207895,0.000000,0.000000,0.250000,0,0);}
.m100_c01120{transform:matrix(0.208042,0.002705,-0.003250,0.249979,0,0);-ms-transform:matrix(0.208042,0.002705,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.208042,0.002705,-0.003250,0.249979,0,0);}
.m74_c01120{transform:matrix(0.210830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210830,0.000000,0.000000,0.250000,0,0);}
.mf5_c01120{transform:matrix(0.211282,0.002747,-0.003250,0.249979,0,0);-ms-transform:matrix(0.211282,0.002747,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.211282,0.002747,-0.003250,0.249979,0,0);}
.m6c_c01120{transform:matrix(0.212035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212035,0.000000,0.000000,0.250000,0,0);}
.m9_c01120{transform:matrix(0.212300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212300,0.000000,0.000000,0.250000,0,0);}
.m68_c01120{transform:matrix(0.213170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213170,0.000000,0.000000,0.250000,0,0);}
.mfb_c01120{transform:matrix(0.213302,0.002773,-0.003250,0.249979,0,0);-ms-transform:matrix(0.213302,0.002773,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.213302,0.002773,-0.003250,0.249979,0,0);}
.mf8_c01120{transform:matrix(0.213647,0.002777,-0.003250,0.249979,0,0);-ms-transform:matrix(0.213647,0.002777,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.213647,0.002777,-0.003250,0.249979,0,0);}
.mc0_c01120{transform:matrix(0.213720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213720,0.000000,0.000000,0.250000,0,0);}
.mbd_c01120{transform:matrix(0.213805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213805,0.000000,0.000000,0.250000,0,0);}
.mce_c01120{transform:matrix(0.214800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214800,0.000000,0.000000,0.250000,0,0);}
.m24_c01120{transform:matrix(0.214919,-0.002149,0.002500,0.249988,0,0);-ms-transform:matrix(0.214919,-0.002149,0.002500,0.249988,0,0);-webkit-transform:matrix(0.214919,-0.002149,0.002500,0.249988,0,0);}
.ma9_c01120{transform:matrix(0.215485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215485,0.000000,0.000000,0.250000,0,0);}
.mf0_c01120{transform:matrix(0.216010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216010,0.000000,0.000000,0.250000,0,0);}
.mab_c01120{transform:matrix(0.216540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216540,0.000000,0.000000,0.250000,0,0);}
.mfa_c01120{transform:matrix(0.216777,0.002818,-0.003250,0.249979,0,0);-ms-transform:matrix(0.216777,0.002818,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.216777,0.002818,-0.003250,0.249979,0,0);}
.m58_c01120{transform:matrix(0.216995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216995,0.000000,0.000000,0.250000,0,0);}
.mb6_c01120{transform:matrix(0.217365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217365,0.000000,0.000000,0.250000,0,0);}
.mbb_c01120{transform:matrix(0.217780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217780,0.000000,0.000000,0.250000,0,0);}
.ma0_c01120{transform:matrix(0.218300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218300,0.000000,0.000000,0.250000,0,0);}
.ma6_c01120{transform:matrix(0.218510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218510,0.000000,0.000000,0.250000,0,0);}
.m5a_c01120{transform:matrix(0.218625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218625,0.000000,0.000000,0.250000,0,0);}
.mb1_c01120{transform:matrix(0.219145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219145,0.000000,0.000000,0.250000,0,0);}
.maa_c01120{transform:matrix(0.219635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219635,0.000000,0.000000,0.250000,0,0);}
.m47_c01120{transform:matrix(0.220105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220105,0.000000,0.000000,0.250000,0,0);}
.m14_c01120{transform:matrix(0.220179,-0.002202,0.002500,0.249988,0,0);-ms-transform:matrix(0.220179,-0.002202,0.002500,0.249988,0,0);-webkit-transform:matrix(0.220179,-0.002202,0.002500,0.249988,0,0);}
.m5f_c01120{transform:matrix(0.220255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220255,0.000000,0.000000,0.250000,0,0);}
.m7c_c01120{transform:matrix(0.220510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220510,0.000000,0.000000,0.250000,0,0);}
.m56_c01120{transform:matrix(0.220630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220630,0.000000,0.000000,0.250000,0,0);}
.m101_c01120{transform:matrix(0.220880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220880,0.000000,0.000000,0.250000,0,0);}
.mc4_c01120{transform:matrix(0.221455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221455,0.000000,0.000000,0.250000,0,0);}
.mec_c01120{transform:matrix(0.222240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222240,0.000000,0.000000,0.250000,0,0);}
.m6e_c01120{transform:matrix(0.222285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222285,0.000000,0.000000,0.250000,0,0);}
.md8_c01120{transform:matrix(0.222735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222735,0.000000,0.000000,0.250000,0,0);}
.mc2_c01120{transform:matrix(0.222760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222760,0.000000,0.000000,0.250000,0,0);}
.m4a_c01120{transform:matrix(0.222800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222800,0.000000,0.000000,0.250000,0,0);}
.m91_c01120{transform:matrix(0.223220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223220,0.000000,0.000000,0.250000,0,0);}
.m9a_c01120{transform:matrix(0.223275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223275,0.000000,0.000000,0.250000,0,0);}
.ma7_c01120{transform:matrix(0.223360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223360,0.000000,0.000000,0.250000,0,0);}
.mbf_c01120{transform:matrix(0.223405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223405,0.000000,0.000000,0.250000,0,0);}
.mdd_c01120{transform:matrix(0.223546,-0.005365,0.005998,0.249928,0,0);-ms-transform:matrix(0.223546,-0.005365,0.005998,0.249928,0,0);-webkit-transform:matrix(0.223546,-0.005365,0.005998,0.249928,0,0);}
.m60_c01120{transform:matrix(0.223970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223970,0.000000,0.000000,0.250000,0,0);}
.mb0_c01120{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m5e_c01120{transform:matrix(0.224080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224080,0.000000,0.000000,0.250000,0,0);}
.m73_c01120{transform:matrix(0.224085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224085,0.000000,0.000000,0.250000,0,0);}
.maf_c01120{transform:matrix(0.224540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224540,0.000000,0.000000,0.250000,0,0);}
.mf9_c01120{transform:matrix(0.224686,0.002921,-0.003250,0.249979,0,0);-ms-transform:matrix(0.224686,0.002921,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.224686,0.002921,-0.003250,0.249979,0,0);}
.m3c_c01120{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m15_c01120{transform:matrix(0.224754,-0.002248,0.002500,0.249988,0,0);-ms-transform:matrix(0.224754,-0.002248,0.002500,0.249988,0,0);-webkit-transform:matrix(0.224754,-0.002248,0.002500,0.249988,0,0);}
.m36_c01120{transform:matrix(0.225029,-0.002250,0.002500,0.249988,0,0);-ms-transform:matrix(0.225029,-0.002250,0.002500,0.249988,0,0);-webkit-transform:matrix(0.225029,-0.002250,0.002500,0.249988,0,0);}
.m71_c01120{transform:matrix(0.225420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225420,0.000000,0.000000,0.250000,0,0);}
.m5d_c01120{transform:matrix(0.226035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226035,0.000000,0.000000,0.250000,0,0);}
.m95_c01120{transform:matrix(0.226495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226495,0.000000,0.000000,0.250000,0,0);}
.m102_c01120{transform:matrix(0.226840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226840,0.000000,0.000000,0.250000,0,0);}
.m93_c01120{transform:matrix(0.227420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227420,0.000000,0.000000,0.250000,0,0);}
.mfc_c01120{transform:matrix(0.227656,0.002960,-0.003250,0.249979,0,0);-ms-transform:matrix(0.227656,0.002960,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.227656,0.002960,-0.003250,0.249979,0,0);}
.m99_c01120{transform:matrix(0.227690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227690,0.000000,0.000000,0.250000,0,0);}
.m97_c01120{transform:matrix(0.227830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227830,0.000000,0.000000,0.250000,0,0);}
.m37_c01120{transform:matrix(0.227889,-0.002279,0.002500,0.249988,0,0);-ms-transform:matrix(0.227889,-0.002279,0.002500,0.249988,0,0);-webkit-transform:matrix(0.227889,-0.002279,0.002500,0.249988,0,0);}
.m8b_c01120{transform:matrix(0.228040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228040,0.000000,0.000000,0.250000,0,0);}
.m22_c01120{transform:matrix(0.228079,-0.002281,0.002500,0.249988,0,0);-ms-transform:matrix(0.228079,-0.002281,0.002500,0.249988,0,0);-webkit-transform:matrix(0.228079,-0.002281,0.002500,0.249988,0,0);}
.mb3_c01120{transform:matrix(0.228110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228110,0.000000,0.000000,0.250000,0,0);}
.m87_c01120{transform:matrix(0.228170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228170,0.000000,0.000000,0.250000,0,0);}
.m2a_c01120{transform:matrix(0.228864,-0.002289,0.002500,0.249988,0,0);-ms-transform:matrix(0.228864,-0.002289,0.002500,0.249988,0,0);-webkit-transform:matrix(0.228864,-0.002289,0.002500,0.249988,0,0);}
.m1e_c01120{transform:matrix(0.228954,-0.002290,0.002500,0.249988,0,0);-ms-transform:matrix(0.228954,-0.002290,0.002500,0.249988,0,0);-webkit-transform:matrix(0.228954,-0.002290,0.002500,0.249988,0,0);}
.m4c_c01120{transform:matrix(0.229070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229070,0.000000,0.000000,0.250000,0,0);}
.mc9_c01120{transform:matrix(0.229195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229195,0.000000,0.000000,0.250000,0,0);}
.m76_c01120{transform:matrix(0.229525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229525,0.000000,0.000000,0.250000,0,0);}
.m8_c01120{transform:matrix(0.229590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229590,0.000000,0.000000,0.250000,0,0);}
.m32_c01120{transform:matrix(0.229759,-0.002298,0.002500,0.249988,0,0);-ms-transform:matrix(0.229759,-0.002298,0.002500,0.249988,0,0);-webkit-transform:matrix(0.229759,-0.002298,0.002500,0.249988,0,0);}
.mc7_c01120{transform:matrix(0.230215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230215,0.000000,0.000000,0.250000,0,0);}
.m9f_c01120{transform:matrix(0.230285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230285,0.000000,0.000000,0.250000,0,0);}
.m9c_c01120{transform:matrix(0.231415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231415,0.000000,0.000000,0.250000,0,0);}
.me9_c01120{transform:matrix(0.231435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231435,0.000000,0.000000,0.250000,0,0);}
.ma2_c01120{transform:matrix(0.232595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232595,0.000000,0.000000,0.250000,0,0);}
.m8e_c01120{transform:matrix(0.232870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232870,0.000000,0.000000,0.250000,0,0);}
.m5b_c01120{transform:matrix(0.232945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232945,0.000000,0.000000,0.250000,0,0);}
.m0_c01120{transform:matrix(0.233035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233035,0.000000,0.000000,0.250000,0,0);}
.m2c_c01120{transform:matrix(0.233393,-0.002334,0.002500,0.249988,0,0);-ms-transform:matrix(0.233393,-0.002334,0.002500,0.249988,0,0);-webkit-transform:matrix(0.233393,-0.002334,0.002500,0.249988,0,0);}
.mb7_c01120{transform:matrix(0.234770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234770,0.000000,0.000000,0.250000,0,0);}
.mb_c01120{transform:matrix(0.234915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234915,0.000000,0.000000,0.250000,0,0);}
.m80_c01120{transform:matrix(0.235055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235055,0.000000,0.000000,0.250000,0,0);}
.m21_c01120{transform:matrix(0.235113,-0.002351,0.002500,0.249988,0,0);-ms-transform:matrix(0.235113,-0.002351,0.002500,0.249988,0,0);-webkit-transform:matrix(0.235113,-0.002351,0.002500,0.249988,0,0);}
.m44_c01120{transform:matrix(0.235930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235930,0.000000,0.000000,0.250000,0,0);}
.ma_c01120{transform:matrix(0.235960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235960,0.000000,0.000000,0.250000,0,0);}
.m89_c01120{transform:matrix(0.236445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236445,0.000000,0.000000,0.250000,0,0);}
.m8f_c01120{transform:matrix(0.236455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236455,0.000000,0.000000,0.250000,0,0);}
.mb9_c01120{transform:matrix(0.236480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236480,0.000000,0.000000,0.250000,0,0);}
.m2e_c01120{transform:matrix(0.237173,-0.002372,0.002500,0.249988,0,0);-ms-transform:matrix(0.237173,-0.002372,0.002500,0.249988,0,0);-webkit-transform:matrix(0.237173,-0.002372,0.002500,0.249988,0,0);}
.m6a_c01120{transform:matrix(0.237300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237300,0.000000,0.000000,0.250000,0,0);}
.m34_c01120{transform:matrix(0.237378,-0.002374,0.002500,0.249988,0,0);-ms-transform:matrix(0.237378,-0.002374,0.002500,0.249988,0,0);-webkit-transform:matrix(0.237378,-0.002374,0.002500,0.249988,0,0);}
.mc5_c01120{transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);}
.m28_c01120{transform:matrix(0.238343,-0.002383,0.002500,0.249988,0,0);-ms-transform:matrix(0.238343,-0.002383,0.002500,0.249988,0,0);-webkit-transform:matrix(0.238343,-0.002383,0.002500,0.249988,0,0);}
.m92_c01120{transform:matrix(0.238425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238425,0.000000,0.000000,0.250000,0,0);}
.m1a_c01120{transform:matrix(0.238523,-0.002385,0.002500,0.249988,0,0);-ms-transform:matrix(0.238523,-0.002385,0.002500,0.249988,0,0);-webkit-transform:matrix(0.238523,-0.002385,0.002500,0.249988,0,0);}
.mf_c01120{transform:matrix(0.238798,-0.002388,0.002500,0.249988,0,0);-ms-transform:matrix(0.238798,-0.002388,0.002500,0.249988,0,0);-webkit-transform:matrix(0.238798,-0.002388,0.002500,0.249988,0,0);}
.mc1_c01120{transform:matrix(0.239200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239200,0.000000,0.000000,0.250000,0,0);}
.m4_c01120{transform:matrix(0.239385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239385,0.000000,0.000000,0.250000,0,0);}
.md9_c01120{transform:matrix(0.239555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239555,0.000000,0.000000,0.250000,0,0);}
.m62_c01120{transform:matrix(0.240020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240020,0.000000,0.000000,0.250000,0,0);}
.md_c01120{transform:matrix(0.240623,-0.002406,0.002500,0.249988,0,0);-ms-transform:matrix(0.240623,-0.002406,0.002500,0.249988,0,0);-webkit-transform:matrix(0.240623,-0.002406,0.002500,0.249988,0,0);}
.m7a_c01120{transform:matrix(0.240635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240635,0.000000,0.000000,0.250000,0,0);}
.m6f_c01120{transform:matrix(0.240900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240900,0.000000,0.000000,0.250000,0,0);}
.m69_c01120{transform:matrix(0.240965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240965,0.000000,0.000000,0.250000,0,0);}
.mc_c01120{transform:matrix(0.241508,-0.002415,0.002500,0.249988,0,0);-ms-transform:matrix(0.241508,-0.002415,0.002500,0.249988,0,0);-webkit-transform:matrix(0.241508,-0.002415,0.002500,0.249988,0,0);}
.m59_c01120{transform:matrix(0.243490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243490,0.000000,0.000000,0.250000,0,0);}
.me7_c01120{transform:matrix(0.243495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243495,0.000000,0.000000,0.250000,0,0);}
.mbe_c01120{transform:matrix(0.243505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243505,0.000000,0.000000,0.250000,0,0);}
.m18_c01120{transform:matrix(0.243528,-0.002435,0.002500,0.249988,0,0);-ms-transform:matrix(0.243528,-0.002435,0.002500,0.249988,0,0);-webkit-transform:matrix(0.243528,-0.002435,0.002500,0.249988,0,0);}
.mb5_c01120{transform:matrix(0.243815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243815,0.000000,0.000000,0.250000,0,0);}
.mf1_c01120{transform:matrix(0.243975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243975,0.000000,0.000000,0.250000,0,0);}
.meb_c01120{transform:matrix(0.244295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244295,0.000000,0.000000,0.250000,0,0);}
.m10_c01120{transform:matrix(0.244543,-0.002445,0.002500,0.249988,0,0);-ms-transform:matrix(0.244543,-0.002445,0.002500,0.249988,0,0);-webkit-transform:matrix(0.244543,-0.002445,0.002500,0.249988,0,0);}
.mcc_c01120{transform:matrix(0.245460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245460,0.000000,0.000000,0.250000,0,0);}
.mbc_c01120{transform:matrix(0.245725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245725,0.000000,0.000000,0.250000,0,0);}
.m3a_c01120{transform:matrix(0.246940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246940,0.000000,0.000000,0.250000,0,0);}
.m6_c01120{transform:matrix(0.246980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246980,0.000000,0.000000,0.250000,0,0);}
.md3_c01120{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m81_c01120{transform:matrix(0.248280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248280,0.000000,0.000000,0.250000,0,0);}
.m4d_c01120{transform:matrix(0.248725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248725,0.000000,0.000000,0.250000,0,0);}
.m3d_c01120{transform:matrix(0.248950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248950,0.000000,0.000000,0.250000,0,0);}
.m25_c01120{transform:matrix(0.249203,-0.002492,0.002500,0.249988,0,0);-ms-transform:matrix(0.249203,-0.002492,0.002500,0.249988,0,0);-webkit-transform:matrix(0.249203,-0.002492,0.002500,0.249988,0,0);}
.md1_c01120{transform:matrix(0.249305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249305,0.000000,0.000000,0.250000,0,0);}
.md2_c01120{transform:matrix(0.249385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249385,0.000000,0.000000,0.250000,0,0);}
.m64_c01120{transform:matrix(0.249505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249505,0.000000,0.000000,0.250000,0,0);}
.m16_c01120{transform:matrix(0.249538,-0.002495,0.002500,0.249988,0,0);-ms-transform:matrix(0.249538,-0.002495,0.002500,0.249988,0,0);-webkit-transform:matrix(0.249538,-0.002495,0.002500,0.249988,0,0);}
.mca_c01120{transform:matrix(0.249650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249650,0.000000,0.000000,0.250000,0,0);}
.m2b_c01120{transform:matrix(0.249653,-0.002497,0.002500,0.249988,0,0);-ms-transform:matrix(0.249653,-0.002497,0.002500,0.249988,0,0);-webkit-transform:matrix(0.249653,-0.002497,0.002500,0.249988,0,0);}
.mc3_c01120{transform:matrix(0.250270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250270,0.000000,0.000000,0.250000,0,0);}
.m20_c01120{transform:matrix(0.250412,-0.002504,0.002500,0.249988,0,0);-ms-transform:matrix(0.250412,-0.002504,0.002500,0.249988,0,0);-webkit-transform:matrix(0.250412,-0.002504,0.002500,0.249988,0,0);}
.md7_c01120{transform:matrix(0.250710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250710,0.000000,0.000000,0.250000,0,0);}
.md6_c01120{transform:matrix(0.250840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250840,0.000000,0.000000,0.250000,0,0);}
.md5_c01120{transform:matrix(0.251025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251025,0.000000,0.000000,0.250000,0,0);}
.me6_c01120{transform:matrix(0.251050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251050,0.000000,0.000000,0.250000,0,0);}
.m9d_c01120{transform:matrix(0.251445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251445,0.000000,0.000000,0.250000,0,0);}
.m103_c01120{transform:matrix(0.251550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251550,0.000000,0.000000,0.250000,0,0);}
.m38_c01120{transform:matrix(0.251560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251560,0.000000,0.000000,0.250000,0,0);}
.m83_c01120{transform:matrix(0.251695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251695,0.000000,0.000000,0.250000,0,0);}
.m8d_c01120{transform:matrix(0.252630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252630,0.000000,0.000000,0.250000,0,0);}
.mf2_c01120{transform:matrix(0.252640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252640,0.000000,0.000000,0.250000,0,0);}
.m55_c01120{transform:matrix(0.252790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252790,0.000000,0.000000,0.250000,0,0);}
.m3f_c01120{transform:matrix(0.252880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252880,0.000000,0.000000,0.250000,0,0);}
.m88_c01120{transform:matrix(0.252925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252925,0.000000,0.000000,0.250000,0,0);}
.m66_c01120{transform:matrix(0.253845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253845,0.000000,0.000000,0.250000,0,0);}
.m82_c01120{transform:matrix(0.253875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253875,0.000000,0.000000,0.250000,0,0);}
.m98_c01120{transform:matrix(0.254575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254575,0.000000,0.000000,0.250000,0,0);}
.m13_c01120{transform:matrix(0.254717,-0.002547,0.002500,0.249988,0,0);-ms-transform:matrix(0.254717,-0.002547,0.002500,0.249988,0,0);-webkit-transform:matrix(0.254717,-0.002547,0.002500,0.249988,0,0);}
.m40_c01120{transform:matrix(0.255005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255005,0.000000,0.000000,0.250000,0,0);}
.md0_c01120{transform:matrix(0.255110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255110,0.000000,0.000000,0.250000,0,0);}
.m42_c01120{transform:matrix(0.255235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255235,0.000000,0.000000,0.250000,0,0);}
.mb8_c01120{transform:matrix(0.255545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255545,0.000000,0.000000,0.250000,0,0);}
.m5c_c01120{transform:matrix(0.255680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255680,0.000000,0.000000,0.250000,0,0);}
.m57_c01120{transform:matrix(0.255930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255930,0.000000,0.000000,0.250000,0,0);}
.m75_c01120{transform:matrix(0.256190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256190,0.000000,0.000000,0.250000,0,0);}
.m17_c01120{transform:matrix(0.256777,-0.002568,0.002500,0.249988,0,0);-ms-transform:matrix(0.256777,-0.002568,0.002500,0.249988,0,0);-webkit-transform:matrix(0.256777,-0.002568,0.002500,0.249988,0,0);}
.m1c_c01120{transform:matrix(0.256817,-0.002568,0.002500,0.249988,0,0);-ms-transform:matrix(0.256817,-0.002568,0.002500,0.249988,0,0);-webkit-transform:matrix(0.256817,-0.002568,0.002500,0.249988,0,0);}
.m48_c01120{transform:matrix(0.257030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257030,0.000000,0.000000,0.250000,0,0);}
.m26_c01120{transform:matrix(0.257137,-0.002571,0.002500,0.249988,0,0);-ms-transform:matrix(0.257137,-0.002571,0.002500,0.249988,0,0);-webkit-transform:matrix(0.257137,-0.002571,0.002500,0.249988,0,0);}
.m12_c01120{transform:matrix(0.257327,-0.002573,0.002500,0.249988,0,0);-ms-transform:matrix(0.257327,-0.002573,0.002500,0.249988,0,0);-webkit-transform:matrix(0.257327,-0.002573,0.002500,0.249988,0,0);}
.m8c_c01120{transform:matrix(0.257725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257725,0.000000,0.000000,0.250000,0,0);}
.m45_c01120{transform:matrix(0.258145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258145,0.000000,0.000000,0.250000,0,0);}
.m3b_c01120{transform:matrix(0.258630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258630,0.000000,0.000000,0.250000,0,0);}
.md4_c01120{transform:matrix(0.259395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259395,0.000000,0.000000,0.250000,0,0);}
.m1f_c01120{transform:matrix(0.259957,-0.002600,0.002500,0.249988,0,0);-ms-transform:matrix(0.259957,-0.002600,0.002500,0.249988,0,0);-webkit-transform:matrix(0.259957,-0.002600,0.002500,0.249988,0,0);}
.m9e_c01120{transform:matrix(0.260730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260730,0.000000,0.000000,0.250000,0,0);}
.ma3_c01120{transform:matrix(0.261005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261005,0.000000,0.000000,0.250000,0,0);}
.m65_c01120{transform:matrix(0.261015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261015,0.000000,0.000000,0.250000,0,0);}
.m1b_c01120{transform:matrix(0.261027,-0.002610,0.002500,0.249988,0,0);-ms-transform:matrix(0.261027,-0.002610,0.002500,0.249988,0,0);-webkit-transform:matrix(0.261027,-0.002610,0.002500,0.249988,0,0);}
.m7d_c01120{transform:matrix(0.261365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261365,0.000000,0.000000,0.250000,0,0);}
.mea_c01120{transform:matrix(0.263785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263785,0.000000,0.000000,0.250000,0,0);}
.m30_c01120{transform:matrix(0.264207,-0.002642,0.002500,0.249988,0,0);-ms-transform:matrix(0.264207,-0.002642,0.002500,0.249988,0,0);-webkit-transform:matrix(0.264207,-0.002642,0.002500,0.249988,0,0);}
.m2f_c01120{transform:matrix(0.264662,-0.002647,0.002500,0.249988,0,0);-ms-transform:matrix(0.264662,-0.002647,0.002500,0.249988,0,0);-webkit-transform:matrix(0.264662,-0.002647,0.002500,0.249988,0,0);}
.m43_c01120{transform:matrix(0.264700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264700,0.000000,0.000000,0.250000,0,0);}
.m77_c01120{transform:matrix(0.265675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265675,0.000000,0.000000,0.250000,0,0);}
.m8a_c01120{transform:matrix(0.266175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266175,0.000000,0.000000,0.250000,0,0);}
.m79_c01120{transform:matrix(0.266650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266650,0.000000,0.000000,0.250000,0,0);}
.mf4_c01120{transform:matrix(0.266780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266780,0.000000,0.000000,0.250000,0,0);}
.m3e_c01120{transform:matrix(0.267150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267150,0.000000,0.000000,0.250000,0,0);}
.m61_c01120{transform:matrix(0.268355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268355,0.000000,0.000000,0.250000,0,0);}
.me0_c01120{transform:matrix(0.269134,0.002960,-0.002750,0.249985,0,0);-ms-transform:matrix(0.269134,0.002960,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.269134,0.002960,-0.002750,0.249985,0,0);}
.m63_c01120{transform:matrix(0.269340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269340,0.000000,0.000000,0.250000,0,0);}
.m7e_c01120{transform:matrix(0.270100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270100,0.000000,0.000000,0.250000,0,0);}
.mcf_c01120{transform:matrix(0.270470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270470,0.000000,0.000000,0.250000,0,0);}
.ma4_c01120{transform:matrix(0.270775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270775,0.000000,0.000000,0.250000,0,0);}
.m41_c01120{transform:matrix(0.271605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271605,0.000000,0.000000,0.250000,0,0);}
.m67_c01120{transform:matrix(0.272625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272625,0.000000,0.000000,0.250000,0,0);}
.m27_c01120{transform:matrix(0.272861,-0.002729,0.002500,0.249988,0,0);-ms-transform:matrix(0.272861,-0.002729,0.002500,0.249988,0,0);-webkit-transform:matrix(0.272861,-0.002729,0.002500,0.249988,0,0);}
.m29_c01120{transform:matrix(0.272896,-0.002729,0.002500,0.249988,0,0);-ms-transform:matrix(0.272896,-0.002729,0.002500,0.249988,0,0);-webkit-transform:matrix(0.272896,-0.002729,0.002500,0.249988,0,0);}
.m1d_c01120{transform:matrix(0.273421,-0.002734,0.002500,0.249988,0,0);-ms-transform:matrix(0.273421,-0.002734,0.002500,0.249988,0,0);-webkit-transform:matrix(0.273421,-0.002734,0.002500,0.249988,0,0);}
.m11_c01120{transform:matrix(0.273441,-0.002734,0.002500,0.249988,0,0);-ms-transform:matrix(0.273441,-0.002734,0.002500,0.249988,0,0);-webkit-transform:matrix(0.273441,-0.002734,0.002500,0.249988,0,0);}
.m3_c01120{transform:matrix(0.273445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273445,0.000000,0.000000,0.250000,0,0);}
.m85_c01120{transform:matrix(0.274730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274730,0.000000,0.000000,0.250000,0,0);}
.m19_c01120{transform:matrix(0.274836,-0.002748,0.002500,0.249988,0,0);-ms-transform:matrix(0.274836,-0.002748,0.002500,0.249988,0,0);-webkit-transform:matrix(0.274836,-0.002748,0.002500,0.249988,0,0);}
.m2d_c01120{transform:matrix(0.275016,-0.002750,0.002500,0.249988,0,0);-ms-transform:matrix(0.275016,-0.002750,0.002500,0.249988,0,0);-webkit-transform:matrix(0.275016,-0.002750,0.002500,0.249988,0,0);}
.m5_c01120{transform:matrix(0.275125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275125,0.000000,0.000000,0.250000,0,0);}
.m84_c01120{transform:matrix(0.275260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275260,0.000000,0.000000,0.250000,0,0);}
.m39_c01120{transform:matrix(0.275330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275330,0.000000,0.000000,0.250000,0,0);}
.me_c01120{transform:matrix(0.275676,-0.002757,0.002500,0.249988,0,0);-ms-transform:matrix(0.275676,-0.002757,0.002500,0.249988,0,0);-webkit-transform:matrix(0.275676,-0.002757,0.002500,0.249988,0,0);}
.m7f_c01120{transform:matrix(0.275775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275775,0.000000,0.000000,0.250000,0,0);}
.mcd_c01120{transform:matrix(0.277150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277150,0.000000,0.000000,0.250000,0,0);}
.m86_c01120{transform:matrix(0.277365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277365,0.000000,0.000000,0.250000,0,0);}
.me8_c01120{transform:matrix(0.277400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277400,0.000000,0.000000,0.250000,0,0);}
.mc8_c01120{transform:matrix(0.277405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277405,0.000000,0.000000,0.250000,0,0);}
.m9b_c01120{transform:matrix(0.278110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278110,0.000000,0.000000,0.250000,0,0);}
.m46_c01120{transform:matrix(0.278145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278145,0.000000,0.000000,0.250000,0,0);}
.ma1_c01120{transform:matrix(0.278555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278555,0.000000,0.000000,0.250000,0,0);}
.m23_c01120{transform:matrix(0.279131,-0.002791,0.002500,0.249988,0,0);-ms-transform:matrix(0.279131,-0.002791,0.002500,0.249988,0,0);-webkit-transform:matrix(0.279131,-0.002791,0.002500,0.249988,0,0);}
.m7_c01120{transform:matrix(0.281195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281195,0.000000,0.000000,0.250000,0,0);}
.m7b_c01120{transform:matrix(0.282525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282525,0.000000,0.000000,0.250000,0,0);}
.mcb_c01120{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.mc6_c01120{transform:matrix(0.290740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290740,0.000000,0.000000,0.250000,0,0);}
.ma5_c01120{transform:matrix(0.298925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298925,0.000000,0.000000,0.250000,0,0);}
.me3_c01120{transform:matrix(0.328105,0.003609,-0.002750,0.249985,0,0);-ms-transform:matrix(0.328105,0.003609,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.328105,0.003609,-0.002750,0.249985,0,0);}
.m2_c01120{transform:matrix(0.333955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333955,0.000000,0.000000,0.250000,0,0);}
.me5_c01120{transform:matrix(0.334705,0.003682,-0.002750,0.249985,0,0);-ms-transform:matrix(0.334705,0.003682,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.334705,0.003682,-0.002750,0.249985,0,0);}
.m54_c01120{transform:matrix(0.340205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340205,0.000000,0.000000,0.250000,0,0);}
.me1_c01120{transform:matrix(0.351144,0.003863,-0.002750,0.249985,0,0);-ms-transform:matrix(0.351144,0.003863,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.351144,0.003863,-0.002750,0.249985,0,0);}
.me2_c01120{transform:matrix(0.389856,0.004288,-0.002750,0.249985,0,0);-ms-transform:matrix(0.389856,0.004288,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.389856,0.004288,-0.002750,0.249985,0,0);}
.mdf_c01120{transform:matrix(0.418925,0.004608,-0.002750,0.249985,0,0);-ms-transform:matrix(0.418925,0.004608,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.418925,0.004608,-0.002750,0.249985,0,0);}
.m1_c01120{transform:matrix(0.441995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441995,0.000000,0.000000,0.250000,0,0);}
.me4_c01120{transform:matrix(2.385906,0.026245,-0.002750,0.249985,0,0);-ms-transform:matrix(2.385906,0.026245,-0.002750,0.249985,0,0);-webkit-transform:matrix(2.385906,0.026245,-0.002750,0.249985,0,0);}
.v0_c01120{vertical-align:0.000000px;}
.ls0_c01120{letter-spacing:0.000000px;}
.sc__c01120{text-shadow:none;}
.sc0_c01120{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__c01120{-webkit-text-stroke:0px transparent;}
.sc0_c01120{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01120{word-spacing:0.000000px;}
.fc0_c01120{color:transparent;}
.fsa_c01120{font-size:42.002541px;}
.fs0_c01120{font-size:66.000000px;}
.fs1_c01120{font-size:72.000000px;}
.fs3_c01120{font-size:72.003600px;}
.fs7_c01120{font-size:78.000000px;}
.fs4_c01120{font-size:78.003900px;}
.fs2_c01120{font-size:84.000000px;}
.fs5_c01120{font-size:84.004200px;}
.fs8_c01120{font-size:90.000000px;}
.fsc_c01120{font-size:90.007605px;}
.fs9_c01120{font-size:90.025916px;}
.fsb_c01120{font-size:96.000000px;}
.fs6_c01120{font-size:102.000000px;}
.y0_c01120{bottom:0.000000px;}
.y6f_c01120{bottom:87.739500px;}
.y6e_c01120{bottom:98.395150px;}
.y6d_c01120{bottom:98.837508px;}
.y6c_c01120{bottom:99.248373px;}
.y6b_c01120{bottom:99.711693px;}
.y6a_c01120{bottom:101.161557px;}
.y69_c01120{bottom:101.737743px;}
.y68_c01120{bottom:103.028994px;}
.y67_c01120{bottom:104.471624px;}
.y66_c01120{bottom:105.478857px;}
.y65_c01120{bottom:105.895865px;}
.y64_c01120{bottom:106.724517px;}
.y63_c01120{bottom:107.461500px;}
.y62_c01120{bottom:140.350500px;}
.y61_c01120{bottom:173.908500px;}
.y60_c01120{bottom:211.878000px;}
.y5f_c01120{bottom:239.216368px;}
.y5d_c01120{bottom:240.638916px;}
.y5c_c01120{bottom:241.010149px;}
.y5b_c01120{bottom:241.170513px;}
.y5a_c01120{bottom:241.354636px;}
.y5e_c01120{bottom:241.651356px;}
.y59_c01120{bottom:241.663500px;}
.y54_c01120{bottom:263.257500px;}
.y55_c01120{bottom:264.033480px;}
.y56_c01120{bottom:264.560376px;}
.y57_c01120{bottom:266.143080px;}
.y58_c01120{bottom:269.642208px;}
.y53_c01120{bottom:299.520000px;}
.y52_c01120{bottom:334.167000px;}
.y51_c01120{bottom:370.678500px;}
.y50_c01120{bottom:406.293000px;}
.y4f_c01120{bottom:441.558000px;}
.y43_c01120{bottom:475.741500px;}
.y44_c01120{bottom:476.077500px;}
.y45_c01120{bottom:476.695500px;}
.y46_c01120{bottom:476.905500px;}
.y47_c01120{bottom:477.180000px;}
.y48_c01120{bottom:477.457500px;}
.y49_c01120{bottom:477.619500px;}
.y4a_c01120{bottom:477.954000px;}
.y4b_c01120{bottom:478.398000px;}
.y4c_c01120{bottom:478.567500px;}
.y4d_c01120{bottom:478.843500px;}
.y4e_c01120{bottom:479.181000px;}
.y42_c01120{bottom:513.070500px;}
.y41_c01120{bottom:548.643000px;}
.y40_c01120{bottom:584.731500px;}
.y3f_c01120{bottom:619.879500px;}
.y3e_c01120{bottom:654.835500px;}
.y33_c01120{bottom:687.418500px;}
.y34_c01120{bottom:687.736500px;}
.y35_c01120{bottom:688.330500px;}
.y36_c01120{bottom:688.552500px;}
.y37_c01120{bottom:689.103000px;}
.y38_c01120{bottom:689.271000px;}
.y39_c01120{bottom:689.662500px;}
.y3a_c01120{bottom:689.889000px;}
.y3b_c01120{bottom:690.157500px;}
.y3c_c01120{bottom:690.715500px;}
.y3d_c01120{bottom:690.831000px;}
.y32_c01120{bottom:726.118500px;}
.y31_c01120{bottom:761.091000px;}
.y30_c01120{bottom:815.235000px;}
.y29_c01120{bottom:850.861275px;}
.y2a_c01120{bottom:850.861560px;}
.y2b_c01120{bottom:850.862115px;}
.y2f_c01120{bottom:850.862310px;}
.y2e_c01120{bottom:850.862340px;}
.y2c_c01120{bottom:850.862700px;}
.y2d_c01120{bottom:850.862955px;}
.y26_c01120{bottom:886.847355px;}
.y25_c01120{bottom:886.847415px;}
.y27_c01120{bottom:886.847940px;}
.y24_c01120{bottom:886.848030px;}
.y22_c01120{bottom:886.848060px;}
.y28_c01120{bottom:886.848210px;}
.y23_c01120{bottom:886.848345px;}
.y1f_c01120{bottom:921.382335px;}
.y1e_c01120{bottom:921.382365px;}
.y21_c01120{bottom:921.382575px;}
.y20_c01120{bottom:921.382890px;}
.y1d_c01120{bottom:921.382995px;}
.y1c_c01120{bottom:921.383610px;}
.y1b_c01120{bottom:957.186030px;}
.y1a_c01120{bottom:957.186045px;}
.y19_c01120{bottom:957.186060px;}
.y18_c01120{bottom:957.186675px;}
.y16_c01120{bottom:957.186735px;}
.y17_c01120{bottom:957.187020px;}
.y15_c01120{bottom:957.187080px;}
.yf_c01120{bottom:990.898365px;}
.y10_c01120{bottom:991.427880px;}
.y11_c01120{bottom:991.695300px;}
.y12_c01120{bottom:992.667255px;}
.y13_c01120{bottom:992.941125px;}
.y14_c01120{bottom:993.470445px;}
.ye_c01120{bottom:1027.543380px;}
.yd_c01120{bottom:1027.543395px;}
.ya_c01120{bottom:1027.543515px;}
.yb_c01120{bottom:1027.543755px;}
.yc_c01120{bottom:1027.544010px;}
.y4_c01120{bottom:1061.101500px;}
.y5_c01120{bottom:1061.317485px;}
.y6_c01120{bottom:1061.636130px;}
.y7_c01120{bottom:1062.421875px;}
.y8_c01120{bottom:1063.310205px;}
.y9_c01120{bottom:1063.534320px;}
.y3_c01120{bottom:1097.898000px;}
.y2_c01120{bottom:1133.259000px;}
.y1_c01120{bottom:1208.098500px;}
.hc_c01120{height:42.002541px;}
.h2_c01120{height:66.000000px;}
.h3_c01120{height:72.000000px;}
.h5_c01120{height:72.003600px;}
.h9_c01120{height:78.000000px;}
.h6_c01120{height:78.003900px;}
.h4_c01120{height:84.000000px;}
.h7_c01120{height:84.004200px;}
.ha_c01120{height:90.000000px;}
.he_c01120{height:90.007605px;}
.hb_c01120{height:90.025916px;}
.hd_c01120{height:96.000000px;}
.h8_c01120{height:102.000000px;}
.h0_c01120{height:1246.320000px;}
.h1_c01120{height:1246.500000px;}
.w1_c01120{width:912.750000px;}
.w0_c01120{width:912.870000px;}
.x0_c01120{left:0.000000px;}
.x3f_c01120{left:103.213500px;}
.x34_c01120{left:120.150000px;}
.x5b_c01120{left:121.770000px;}
.x6c_c01120{left:123.120000px;}
.x7d_c01120{left:124.198500px;}
.xa2_c01120{left:127.224000px;}
.xaf_c01120{left:128.520000px;}
.xa7_c01120{left:151.104000px;}
.x48_c01120{left:154.170000px;}
.xa3_c01120{left:159.556500px;}
.xaa_c01120{left:160.650000px;}
.x40_c01120{left:166.948500px;}
.x5c_c01120{left:176.850000px;}
.xa4_c01120{left:181.510500px;}
.xbd_c01120{left:183.060000px;}
.xb3_c01120{left:184.804500px;}
.x49_c01120{left:187.920000px;}
.x74_c01120{left:189.625500px;}
.x6d_c01120{left:200.340000px;}
.x92_c01120{left:202.500000px;}
.x9b_c01120{left:204.120000px;}
.x5d_c01120{left:209.520000px;}
.x7e_c01120{left:212.218500px;}
.xa8_c01120{left:216.169500px;}
.x35_c01120{left:220.860000px;}
.x66_c01120{left:222.750000px;}
.x4_c01120{left:225.990000px;}
.xa_c01120{left:228.022500px;}
.x1b_c01120{left:229.230660px;}
.x50_c01120{left:230.850000px;}
.x6e_c01120{left:233.010000px;}
.x8a_c01120{left:234.360000px;}
.x93_c01120{left:236.520000px;}
.xb1_c01120{left:239.220000px;}
.xa5_c01120{left:247.456500px;}
.xb4_c01120{left:248.547000px;}
.xb_c01120{left:249.621000px;}
.x20_c01120{left:251.101665px;}
.x1c_c01120{left:252.721515px;}
.x25_c01120{left:262.984185px;}
.x5e_c01120{left:265.950000px;}
.xb2_c01120{left:270.000000px;}
.x29_c01120{left:272.700000px;}
.x4a_c01120{left:275.670000px;}
.xb0_c01120{left:279.720000px;}
.xc_c01120{left:281.485500px;}
.x2f_c01120{left:286.200000px;}
.x5f_c01120{left:287.550000px;}
.x8b_c01120{left:289.170000px;}
.x11_c01120{left:294.413805px;}
.x21_c01120{left:295.924650px;}
.x84_c01120{left:299.970000px;}
.xab_c01120{left:302.670000px;}
.x9_c01120{left:304.290000px;}
.x36_c01120{left:308.880000px;}
.x9c_c01120{left:311.850000px;}
.x5_c01120{left:314.010000px;}
.x15_c01120{left:316.443885px;}
.x1d_c01120{left:318.065055px;}
.x51_c01120{left:320.490000px;}
.x67_c01120{left:321.840000px;}
.x12_c01120{left:327.906480px;}
.x41_c01120{left:330.294000px;}
.x4b_c01120{left:332.100000px;}
.x6f_c01120{left:333.450000px;}
.xac_c01120{left:335.340000px;}
.xe_c01120{left:338.044545px;}
.x22_c01120{left:339.667530px;}
.x26_c01120{left:340.747455px;}
.xa9_c01120{left:345.492000px;}
.x6_c01120{left:348.300000px;}
.x16_c01120{left:351.275865px;}
.x60_c01120{left:353.970000px;}
.x75_c01120{left:355.386000px;}
.xb5_c01120{left:358.104000px;}
.xd_c01120{left:360.060000px;}
.x37_c01120{left:364.500000px;}
.x85_c01120{left:368.280000px;}
.x1e_c01120{left:373.417590px;}
.x94_c01120{left:378.540000px;}
.x1_c01120{left:380.700000px;}
.x38_c01120{left:382.320000px;}
.x2a_c01120{left:384.210000px;}
.x61_c01120{left:386.910000px;}
.x9d_c01120{left:389.340000px;}
.xa6_c01120{left:393.253500px;}
.x2_c01120{left:403.380000px;}
.x76_c01120{left:410.209500px;}
.x95_c01120{left:411.750000px;}
.xad_c01120{left:412.830000px;}
.x52_c01120{left:419.580000px;}
.x8c_c01120{left:422.010000px;}
.x17_c01120{left:427.148955px;}
.x39_c01120{left:428.490000px;}
.x2b_c01120{left:429.840000px;}
.x4c_c01120{left:431.190000px;}
.x86_c01120{left:434.430000px;}
.x7_c01120{left:436.860000px;}
.x27_c01120{left:439.841355px;}
.x70_c01120{left:442.530000px;}
.x7f_c01120{left:443.608500px;}
.x96_c01120{left:444.960000px;}
.x3_c01120{left:448.740000px;}
.x23_c01120{left:450.372600px;}
.x53_c01120{left:453.600000px;}
.x8d_c01120{left:454.950000px;}
.x18_c01120{left:461.440890px;}
.x77_c01120{left:465.823500px;}
.xae_c01120{left:467.370000px;}
.xb6_c01120{left:469.075500px;}
.x8_c01120{left:470.340000px;}
.xf_c01120{left:471.971940px;}
.x42_c01120{left:474.199500px;}
.x87_c01120{left:476.280000px;}
.x24_c01120{left:482.234280px;}
.x13_c01120{left:483.692100px;}
.x4d_c01120{left:487.080000px;}
.x2c_c01120{left:495.450000px;}
.x62_c01120{left:496.530000px;}
.x78_c01120{left:498.231000px;}
.x9e_c01120{left:500.580000px;}
.x19_c01120{left:504.643710px;}
.x54_c01120{left:508.950000px;}
.x8e_c01120{left:511.110000px;}
.x10_c01120{left:515.174760px;}
.x1f_c01120{left:516.255870px;}
.x3a_c01120{left:518.130000px;}
.x2d_c01120{left:527.850000px;}
.x55_c01120{left:530.820000px;}
.x88_c01120{left:531.900000px;}
.x1a_c01120{left:537.045450px;}
.x28_c01120{left:538.936770px;}
.x30_c01120{left:540.000000px;}
.x68_c01120{left:542.160000px;}
.x14_c01120{left:549.825420px;}
.x3b_c01120{left:551.340000px;}
.x43_c01120{left:552.486000px;}
.x80_c01120{left:554.578500px;}
.x4e_c01120{left:563.220000px;}
.x79_c01120{left:565.194000px;}
.xb7_c01120{left:568.402500px;}
.x2e_c01120{left:574.290000px;}
.x56_c01120{left:586.710000px;}
.x8f_c01120{left:588.330000px;}
.x9f_c01120{left:590.220000px;}
.x44_c01120{left:597.861000px;}
.x57_c01120{left:607.500000px;}
.x4f_c01120{left:609.120000px;}
.xb8_c01120{left:612.724500px;}
.x71_c01120{left:621.000000px;}
.x3c_c01120{left:639.630000px;}
.x31_c01120{left:641.250000px;}
.x81_c01120{left:642.868500px;}
.x90_c01120{left:644.490000px;}
.x45_c01120{left:651.588000px;}
.x7a_c01120{left:653.995500px;}
.x63_c01120{left:674.460000px;}
.x82_c01120{left:675.808500px;}
.xa0_c01120{left:679.320000px;}
.x72_c01120{left:686.340000px;}
.x7b_c01120{left:688.035000px;}
.x97_c01120{left:689.850000px;}
.x58_c01120{left:697.680000px;}
.x3d_c01120{left:706.050000px;}
.x98_c01120{left:711.720000px;}
.x59_c01120{left:719.280000px;}
.xb9_c01120{left:724.252500px;}
.x69_c01120{left:731.430000px;}
.x89_c01120{left:733.860000px;}
.x83_c01120{left:735.208500px;}
.x3e_c01120{left:740.070000px;}
.x7c_c01120{left:743.374500px;}
.x32_c01120{left:751.680000px;}
.x6a_c01120{left:753.570000px;}
.x64_c01120{left:756.270000px;}
.xba_c01120{left:759.892500px;}
.x46_c01120{left:763.071000px;}
.x91_c01120{left:765.990000px;}
.x33_c01120{left:773.280000px;}
.x5a_c01120{left:774.360000px;}
.x99_c01120{left:778.410000px;}
.x47_c01120{left:786.291000px;}
.x73_c01120{left:787.860000px;}
.xbb_c01120{left:791.497500px;}
.x65_c01120{left:799.470000px;}
.xa1_c01120{left:802.170000px;}
.x6b_c01120{left:810.540000px;}
.x9a_c01120{left:812.430000px;}
.xbc_c01120{left:825.525000px;}
@media print{
.v0_c01120{vertical-align:0.000000pt;}
.ls0_c01120{letter-spacing:0.000000pt;}
.ws0_c01120{word-spacing:0.000000pt;}
.fsa_c01120{font-size:37.335592pt;}
.fs0_c01120{font-size:58.666667pt;}
.fs1_c01120{font-size:64.000000pt;}
.fs3_c01120{font-size:64.003200pt;}
.fs7_c01120{font-size:69.333333pt;}
.fs4_c01120{font-size:69.336800pt;}
.fs2_c01120{font-size:74.666667pt;}
.fs5_c01120{font-size:74.670400pt;}
.fs8_c01120{font-size:80.000000pt;}
.fsc_c01120{font-size:80.006760pt;}
.fs9_c01120{font-size:80.023037pt;}
.fsb_c01120{font-size:85.333333pt;}
.fs6_c01120{font-size:90.666667pt;}
.y0_c01120{bottom:0.000000pt;}
.y6f_c01120{bottom:77.990667pt;}
.y6e_c01120{bottom:87.462356pt;}
.y6d_c01120{bottom:87.855563pt;}
.y6c_c01120{bottom:88.220776pt;}
.y6b_c01120{bottom:88.632616pt;}
.y6a_c01120{bottom:89.921384pt;}
.y69_c01120{bottom:90.433549pt;}
.y68_c01120{bottom:91.581328pt;}
.y67_c01120{bottom:92.863665pt;}
.y66_c01120{bottom:93.758984pt;}
.y65_c01120{bottom:94.129657pt;}
.y64_c01120{bottom:94.866237pt;}
.y63_c01120{bottom:95.521333pt;}
.y62_c01120{bottom:124.756000pt;}
.y61_c01120{bottom:154.585333pt;}
.y60_c01120{bottom:188.336000pt;}
.y5f_c01120{bottom:212.636772pt;}
.y5d_c01120{bottom:213.901259pt;}
.y5c_c01120{bottom:214.231244pt;}
.y5b_c01120{bottom:214.373789pt;}
.y5a_c01120{bottom:214.537455pt;}
.y5e_c01120{bottom:214.801205pt;}
.y59_c01120{bottom:214.812000pt;}
.y54_c01120{bottom:234.006667pt;}
.y55_c01120{bottom:234.696427pt;}
.y56_c01120{bottom:235.164779pt;}
.y57_c01120{bottom:236.571627pt;}
.y58_c01120{bottom:239.681963pt;}
.y53_c01120{bottom:266.240000pt;}
.y52_c01120{bottom:297.037333pt;}
.y51_c01120{bottom:329.492000pt;}
.y50_c01120{bottom:361.149333pt;}
.y4f_c01120{bottom:392.496000pt;}
.y43_c01120{bottom:422.881333pt;}
.y44_c01120{bottom:423.180000pt;}
.y45_c01120{bottom:423.729333pt;}
.y46_c01120{bottom:423.916000pt;}
.y47_c01120{bottom:424.160000pt;}
.y48_c01120{bottom:424.406667pt;}
.y49_c01120{bottom:424.550667pt;}
.y4a_c01120{bottom:424.848000pt;}
.y4b_c01120{bottom:425.242667pt;}
.y4c_c01120{bottom:425.393333pt;}
.y4d_c01120{bottom:425.638667pt;}
.y4e_c01120{bottom:425.938667pt;}
.y42_c01120{bottom:456.062667pt;}
.y41_c01120{bottom:487.682667pt;}
.y40_c01120{bottom:519.761333pt;}
.y3f_c01120{bottom:551.004000pt;}
.y3e_c01120{bottom:582.076000pt;}
.y33_c01120{bottom:611.038667pt;}
.y34_c01120{bottom:611.321333pt;}
.y35_c01120{bottom:611.849333pt;}
.y36_c01120{bottom:612.046667pt;}
.y37_c01120{bottom:612.536000pt;}
.y38_c01120{bottom:612.685333pt;}
.y39_c01120{bottom:613.033333pt;}
.y3a_c01120{bottom:613.234667pt;}
.y3b_c01120{bottom:613.473333pt;}
.y3c_c01120{bottom:613.969333pt;}
.y3d_c01120{bottom:614.072000pt;}
.y32_c01120{bottom:645.438667pt;}
.y31_c01120{bottom:676.525333pt;}
.y30_c01120{bottom:724.653333pt;}
.y29_c01120{bottom:756.321133pt;}
.y2a_c01120{bottom:756.321387pt;}
.y2b_c01120{bottom:756.321880pt;}
.y2f_c01120{bottom:756.322053pt;}
.y2e_c01120{bottom:756.322080pt;}
.y2c_c01120{bottom:756.322400pt;}
.y2d_c01120{bottom:756.322627pt;}
.y26_c01120{bottom:788.308760pt;}
.y25_c01120{bottom:788.308813pt;}
.y27_c01120{bottom:788.309280pt;}
.y24_c01120{bottom:788.309360pt;}
.y22_c01120{bottom:788.309387pt;}
.y28_c01120{bottom:788.309520pt;}
.y23_c01120{bottom:788.309640pt;}
.y1f_c01120{bottom:819.006520pt;}
.y1e_c01120{bottom:819.006547pt;}
.y21_c01120{bottom:819.006733pt;}
.y20_c01120{bottom:819.007013pt;}
.y1d_c01120{bottom:819.007107pt;}
.y1c_c01120{bottom:819.007653pt;}
.y1b_c01120{bottom:850.832027pt;}
.y1a_c01120{bottom:850.832040pt;}
.y19_c01120{bottom:850.832053pt;}
.y18_c01120{bottom:850.832600pt;}
.y16_c01120{bottom:850.832653pt;}
.y17_c01120{bottom:850.832907pt;}
.y15_c01120{bottom:850.832960pt;}
.yf_c01120{bottom:880.798547pt;}
.y10_c01120{bottom:881.269227pt;}
.y11_c01120{bottom:881.506933pt;}
.y12_c01120{bottom:882.370893pt;}
.y13_c01120{bottom:882.614333pt;}
.y14_c01120{bottom:883.084840pt;}
.ye_c01120{bottom:913.371893pt;}
.yd_c01120{bottom:913.371907pt;}
.ya_c01120{bottom:913.372013pt;}
.yb_c01120{bottom:913.372227pt;}
.yc_c01120{bottom:913.372453pt;}
.y4_c01120{bottom:943.201333pt;}
.y5_c01120{bottom:943.393320pt;}
.y6_c01120{bottom:943.676560pt;}
.y7_c01120{bottom:944.375000pt;}
.y8_c01120{bottom:945.164627pt;}
.y9_c01120{bottom:945.363840pt;}
.y3_c01120{bottom:975.909333pt;}
.y2_c01120{bottom:1007.341333pt;}
.y1_c01120{bottom:1073.865333pt;}
.hc_c01120{height:37.335592pt;}
.h2_c01120{height:58.666667pt;}
.h3_c01120{height:64.000000pt;}
.h5_c01120{height:64.003200pt;}
.h9_c01120{height:69.333333pt;}
.h6_c01120{height:69.336800pt;}
.h4_c01120{height:74.666667pt;}
.h7_c01120{height:74.670400pt;}
.ha_c01120{height:80.000000pt;}
.he_c01120{height:80.006760pt;}
.hb_c01120{height:80.023037pt;}
.hd_c01120{height:85.333333pt;}
.h8_c01120{height:90.666667pt;}
.h0_c01120{height:1107.840000pt;}
.h1_c01120{height:1108.000000pt;}
.w1_c01120{width:811.333333pt;}
.w0_c01120{width:811.440000pt;}
.x0_c01120{left:0.000000pt;}
.x3f_c01120{left:91.745333pt;}
.x34_c01120{left:106.800000pt;}
.x5b_c01120{left:108.240000pt;}
.x6c_c01120{left:109.440000pt;}
.x7d_c01120{left:110.398667pt;}
.xa2_c01120{left:113.088000pt;}
.xaf_c01120{left:114.240000pt;}
.xa7_c01120{left:134.314667pt;}
.x48_c01120{left:137.040000pt;}
.xa3_c01120{left:141.828000pt;}
.xaa_c01120{left:142.800000pt;}
.x40_c01120{left:148.398667pt;}
.x5c_c01120{left:157.200000pt;}
.xa4_c01120{left:161.342667pt;}
.xbd_c01120{left:162.720000pt;}
.xb3_c01120{left:164.270667pt;}
.x49_c01120{left:167.040000pt;}
.x74_c01120{left:168.556000pt;}
.x6d_c01120{left:178.080000pt;}
.x92_c01120{left:180.000000pt;}
.x9b_c01120{left:181.440000pt;}
.x5d_c01120{left:186.240000pt;}
.x7e_c01120{left:188.638667pt;}
.xa8_c01120{left:192.150667pt;}
.x35_c01120{left:196.320000pt;}
.x66_c01120{left:198.000000pt;}
.x4_c01120{left:200.880000pt;}
.xa_c01120{left:202.686667pt;}
.x1b_c01120{left:203.760587pt;}
.x50_c01120{left:205.200000pt;}
.x6e_c01120{left:207.120000pt;}
.x8a_c01120{left:208.320000pt;}
.x93_c01120{left:210.240000pt;}
.xb1_c01120{left:212.640000pt;}
.xa5_c01120{left:219.961333pt;}
.xb4_c01120{left:220.930667pt;}
.xb_c01120{left:221.885333pt;}
.x20_c01120{left:223.201480pt;}
.x1c_c01120{left:224.641347pt;}
.x25_c01120{left:233.763720pt;}
.x5e_c01120{left:236.400000pt;}
.xb2_c01120{left:240.000000pt;}
.x29_c01120{left:242.400000pt;}
.x4a_c01120{left:245.040000pt;}
.xb0_c01120{left:248.640000pt;}
.xc_c01120{left:250.209333pt;}
.x2f_c01120{left:254.400000pt;}
.x5f_c01120{left:255.600000pt;}
.x8b_c01120{left:257.040000pt;}
.x11_c01120{left:261.701160pt;}
.x21_c01120{left:263.044133pt;}
.x84_c01120{left:266.640000pt;}
.xab_c01120{left:269.040000pt;}
.x9_c01120{left:270.480000pt;}
.x36_c01120{left:274.560000pt;}
.x9c_c01120{left:277.200000pt;}
.x5_c01120{left:279.120000pt;}
.x15_c01120{left:281.283453pt;}
.x1d_c01120{left:282.724493pt;}
.x51_c01120{left:284.880000pt;}
.x67_c01120{left:286.080000pt;}
.x12_c01120{left:291.472427pt;}
.x41_c01120{left:293.594667pt;}
.x4b_c01120{left:295.200000pt;}
.x6f_c01120{left:296.400000pt;}
.xac_c01120{left:298.080000pt;}
.xe_c01120{left:300.484040pt;}
.x22_c01120{left:301.926693pt;}
.x26_c01120{left:302.886627pt;}
.xa9_c01120{left:307.104000pt;}
.x6_c01120{left:309.600000pt;}
.x16_c01120{left:312.245213pt;}
.x60_c01120{left:314.640000pt;}
.x75_c01120{left:315.898667pt;}
.xb5_c01120{left:318.314667pt;}
.xd_c01120{left:320.053333pt;}
.x37_c01120{left:324.000000pt;}
.x85_c01120{left:327.360000pt;}
.x1e_c01120{left:331.926747pt;}
.x94_c01120{left:336.480000pt;}
.x1_c01120{left:338.400000pt;}
.x38_c01120{left:339.840000pt;}
.x2a_c01120{left:341.520000pt;}
.x61_c01120{left:343.920000pt;}
.x9d_c01120{left:346.080000pt;}
.xa6_c01120{left:349.558667pt;}
.x2_c01120{left:358.560000pt;}
.x76_c01120{left:364.630667pt;}
.x95_c01120{left:366.000000pt;}
.xad_c01120{left:366.960000pt;}
.x52_c01120{left:372.960000pt;}
.x8c_c01120{left:375.120000pt;}
.x17_c01120{left:379.687960pt;}
.x39_c01120{left:380.880000pt;}
.x2b_c01120{left:382.080000pt;}
.x4c_c01120{left:383.280000pt;}
.x86_c01120{left:386.160000pt;}
.x7_c01120{left:388.320000pt;}
.x27_c01120{left:390.970093pt;}
.x70_c01120{left:393.360000pt;}
.x7f_c01120{left:394.318667pt;}
.x96_c01120{left:395.520000pt;}
.x3_c01120{left:398.880000pt;}
.x23_c01120{left:400.331200pt;}
.x53_c01120{left:403.200000pt;}
.x8d_c01120{left:404.400000pt;}
.x18_c01120{left:410.169680pt;}
.x77_c01120{left:414.065333pt;}
.xae_c01120{left:415.440000pt;}
.xb6_c01120{left:416.956000pt;}
.x8_c01120{left:418.080000pt;}
.xf_c01120{left:419.530613pt;}
.x42_c01120{left:421.510667pt;}
.x87_c01120{left:423.360000pt;}
.x24_c01120{left:428.652693pt;}
.x13_c01120{left:429.948533pt;}
.x4d_c01120{left:432.960000pt;}
.x2c_c01120{left:440.400000pt;}
.x62_c01120{left:441.360000pt;}
.x78_c01120{left:442.872000pt;}
.x9e_c01120{left:444.960000pt;}
.x19_c01120{left:448.572187pt;}
.x54_c01120{left:452.400000pt;}
.x8e_c01120{left:454.320000pt;}
.x10_c01120{left:457.933120pt;}
.x1f_c01120{left:458.894107pt;}
.x3a_c01120{left:460.560000pt;}
.x2d_c01120{left:469.200000pt;}
.x55_c01120{left:471.840000pt;}
.x88_c01120{left:472.800000pt;}
.x1a_c01120{left:477.373733pt;}
.x28_c01120{left:479.054907pt;}
.x30_c01120{left:480.000000pt;}
.x68_c01120{left:481.920000pt;}
.x14_c01120{left:488.733707pt;}
.x3b_c01120{left:490.080000pt;}
.x43_c01120{left:491.098667pt;}
.x80_c01120{left:492.958667pt;}
.x4e_c01120{left:500.640000pt;}
.x79_c01120{left:502.394667pt;}
.xb7_c01120{left:505.246667pt;}
.x2e_c01120{left:510.480000pt;}
.x56_c01120{left:521.520000pt;}
.x8f_c01120{left:522.960000pt;}
.x9f_c01120{left:524.640000pt;}
.x44_c01120{left:531.432000pt;}
.x57_c01120{left:540.000000pt;}
.x4f_c01120{left:541.440000pt;}
.xb8_c01120{left:544.644000pt;}
.x71_c01120{left:552.000000pt;}
.x3c_c01120{left:568.560000pt;}
.x31_c01120{left:570.000000pt;}
.x81_c01120{left:571.438667pt;}
.x90_c01120{left:572.880000pt;}
.x45_c01120{left:579.189333pt;}
.x7a_c01120{left:581.329333pt;}
.x63_c01120{left:599.520000pt;}
.x82_c01120{left:600.718667pt;}
.xa0_c01120{left:603.840000pt;}
.x72_c01120{left:610.080000pt;}
.x7b_c01120{left:611.586667pt;}
.x97_c01120{left:613.200000pt;}
.x58_c01120{left:620.160000pt;}
.x3d_c01120{left:627.600000pt;}
.x98_c01120{left:632.640000pt;}
.x59_c01120{left:639.360000pt;}
.xb9_c01120{left:643.780000pt;}
.x69_c01120{left:650.160000pt;}
.x89_c01120{left:652.320000pt;}
.x83_c01120{left:653.518667pt;}
.x3e_c01120{left:657.840000pt;}
.x7c_c01120{left:660.777333pt;}
.x32_c01120{left:668.160000pt;}
.x6a_c01120{left:669.840000pt;}
.x64_c01120{left:672.240000pt;}
.xba_c01120{left:675.460000pt;}
.x46_c01120{left:678.285333pt;}
.x91_c01120{left:680.880000pt;}
.x33_c01120{left:687.360000pt;}
.x5a_c01120{left:688.320000pt;}
.x99_c01120{left:691.920000pt;}
.x47_c01120{left:698.925333pt;}
.x73_c01120{left:700.320000pt;}
.xbb_c01120{left:703.553333pt;}
.x65_c01120{left:710.640000pt;}
.xa1_c01120{left:713.040000pt;}
.x6b_c01120{left:720.480000pt;}
.x9a_c01120{left:722.160000pt;}
.xbc_c01120{left:733.800000pt;}
}





/* 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_c01121 {
    display:none;
  }
  .loading-indicator_c01121.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01121 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_c01121 { 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_c01121" -> "#page-container .classname_c01121")
 */
.pf_c01121 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01121 { /* 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_c01121.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01121 { /* 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_c01121 { /* 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_c01121 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01121 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01121 {overflow:visible;}
  }
}
.c_c01121 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01121 { /* 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_c01121:after { /* webkit #35443 */
  content: '';
}
.t_c01121:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01121 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 */
}
.__c01121 { /* 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_c01121 { /* info for Javascript */
  display:none;
}
.l_c01121 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01121 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01121 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01121: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_c01121 {
    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_c01121.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01121.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_c01121 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01121{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01121;src:url('chunks/assets/font_f0a3d74d16b34518ba33e2f8.woff2')format("woff");}.ff1_c01121{font-family:ff1_c01121;line-height:1.000000;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;}
.m0_c01121{transform:matrix(0.305940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305940,0.000000,0.000000,0.250000,0,0);}
.m1_c01121{transform:matrix(0.339560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339560,0.000000,0.000000,0.250000,0,0);}
.v0_c01121{vertical-align:0.000000px;}
.ls0_c01121{letter-spacing:0.000000px;}
.sc__c01121{text-shadow:none;}
.sc0_c01121{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__c01121{-webkit-text-stroke:0px transparent;}
.sc0_c01121{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01121{word-spacing:0.000000px;}
.fc0_c01121{color:transparent;}
.fs0_c01121{font-size:18.000000px;}
.y0_c01121{bottom:0.000000px;}
.h2_c01121{height:18.000000px;}
.h0_c01121{height:1246.320000px;}
.h1_c01121{height:1246.500000px;}
.w1_c01121{width:912.750000px;}
.w0_c01121{width:912.870000px;}
.x0_c01121{left:0.000000px;}
.x1_c01121{left:905.040000px;}
@media print{
.v0_c01121{vertical-align:0.000000pt;}
.ls0_c01121{letter-spacing:0.000000pt;}
.ws0_c01121{word-spacing:0.000000pt;}
.fs0_c01121{font-size:16.000000pt;}
.y0_c01121{bottom:0.000000pt;}
.h2_c01121{height:16.000000pt;}
.h0_c01121{height:1107.840000pt;}
.h1_c01121{height:1108.000000pt;}
.w1_c01121{width:811.333333pt;}
.w0_c01121{width:811.440000pt;}
.x0_c01121{left:0.000000pt;}
.x1_c01121{left:804.480000pt;}
}





/* 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_c01122 {
    display:none;
  }
  .loading-indicator_c01122.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01122 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_c01122 { 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_c01122" -> "#page-container .classname_c01122")
 */
.pf_c01122 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01122 { /* 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_c01122.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01122 { /* 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_c01122 { /* 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_c01122 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01122 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01122 {overflow:visible;}
  }
}
.c_c01122 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01122 { /* 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_c01122:after { /* webkit #35443 */
  content: '';
}
.t_c01122:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01122 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 */
}
.__c01122 { /* 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_c01122 { /* info for Javascript */
  display:none;
}
.l_c01122 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01122 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01122 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01122: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_c01122 {
    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_c01122.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01122.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_c01122 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01122{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01122;src:url('chunks/assets/font_53ec0c54e60da7c2d414b553.woff2')format("woff");}.ff1_c01122{font-family:ff1_c01122;line-height:1.000000;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;}
.md3_c01122{transform:matrix(0.018745,0.000412,-0.005499,0.249940,0,0);-ms-transform:matrix(0.018745,0.000412,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.018745,0.000412,-0.005499,0.249940,0,0);}
.m4d_c01122{transform:matrix(0.110786,0.001773,-0.003999,0.249968,0,0);-ms-transform:matrix(0.110786,0.001773,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.110786,0.001773,-0.003999,0.249968,0,0);}
.m6a_c01122{transform:matrix(0.118171,0.002127,-0.004499,0.249960,0,0);-ms-transform:matrix(0.118171,0.002127,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.118171,0.002127,-0.004499,0.249960,0,0);}
.m6b_c01122{transform:matrix(0.121495,0.002187,-0.004499,0.249960,0,0);-ms-transform:matrix(0.121495,0.002187,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.121495,0.002187,-0.004499,0.249960,0,0);}
.mcc_c01122{transform:matrix(0.141101,0.003104,-0.005499,0.249940,0,0);-ms-transform:matrix(0.141101,0.003104,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.141101,0.003104,-0.005499,0.249940,0,0);}
.m71_c01122{transform:matrix(0.142672,0.008149,-0.014255,0.249593,0,0);-ms-transform:matrix(0.142672,0.008149,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.142672,0.008149,-0.014255,0.249593,0,0);}
.m8d_c01122{transform:matrix(0.143461,0.004447,-0.007746,0.249880,0,0);-ms-transform:matrix(0.143461,0.004447,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.143461,0.004447,-0.007746,0.249880,0,0);}
.m42_c01122{transform:matrix(0.144162,0.002307,-0.003999,0.249968,0,0);-ms-transform:matrix(0.144162,0.002307,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.144162,0.002307,-0.003999,0.249968,0,0);}
.m81_c01122{transform:matrix(0.144596,0.004921,-0.008504,0.249855,0,0);-ms-transform:matrix(0.144596,0.004921,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.144596,0.004921,-0.008504,0.249855,0,0);}
.m5e_c01122{transform:matrix(0.145230,0.004357,-0.007497,0.249888,0,0);-ms-transform:matrix(0.145230,0.004357,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.145230,0.004357,-0.007497,0.249888,0,0);}
.mca_c01122{transform:matrix(0.146485,0.003809,-0.006498,0.249916,0,0);-ms-transform:matrix(0.146485,0.003809,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.146485,0.003809,-0.006498,0.249916,0,0);}
.mc9_c01122{transform:matrix(0.147165,0.003826,-0.006498,0.249916,0,0);-ms-transform:matrix(0.147165,0.003826,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.147165,0.003826,-0.006498,0.249916,0,0);}
.m70_c01122{transform:matrix(0.148248,0.008467,-0.014255,0.249593,0,0);-ms-transform:matrix(0.148248,0.008467,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.148248,0.008467,-0.014255,0.249593,0,0);}
.mc7_c01122{transform:matrix(0.150124,0.003903,-0.006498,0.249916,0,0);-ms-transform:matrix(0.150124,0.003903,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.150124,0.003903,-0.006498,0.249916,0,0);}
.ma2_c01122{transform:matrix(0.151810,0.004099,-0.006748,0.249909,0,0);-ms-transform:matrix(0.151810,0.004099,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.151810,0.004099,-0.006748,0.249909,0,0);}
.m8_c01122{transform:matrix(0.153515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153515,0.000000,0.000000,0.250000,0,0);}
.mc8_c01122{transform:matrix(0.161705,0.004204,-0.006498,0.249916,0,0);-ms-transform:matrix(0.161705,0.004204,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.161705,0.004204,-0.006498,0.249916,0,0);}
.me9_c01122{transform:matrix(0.165234,0.006451,-0.009752,0.249810,0,0);-ms-transform:matrix(0.165234,0.006451,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.165234,0.006451,-0.009752,0.249810,0,0);}
.m4a_c01122{transform:matrix(0.189001,0.003024,-0.003999,0.249968,0,0);-ms-transform:matrix(0.189001,0.003024,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.189001,0.003024,-0.003999,0.249968,0,0);}
.m6d_c01122{transform:matrix(0.192554,0.003466,-0.004499,0.249960,0,0);-ms-transform:matrix(0.192554,0.003466,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.192554,0.003466,-0.004499,0.249960,0,0);}
.md6_c01122{transform:matrix(0.193043,0.005791,-0.007497,0.249888,0,0);-ms-transform:matrix(0.193043,0.005791,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.193043,0.005791,-0.007497,0.249888,0,0);}
.mbf_c01122{transform:matrix(0.193649,0.005616,-0.007247,0.249895,0,0);-ms-transform:matrix(0.193649,0.005616,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.193649,0.005616,-0.007247,0.249895,0,0);}
.m6e_c01122{transform:matrix(0.199278,0.003587,-0.004499,0.249960,0,0);-ms-transform:matrix(0.199278,0.003587,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.199278,0.003587,-0.004499,0.249960,0,0);}
.mcb_c01122{transform:matrix(0.201487,0.005239,-0.006498,0.249916,0,0);-ms-transform:matrix(0.201487,0.005239,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.201487,0.005239,-0.006498,0.249916,0,0);}
.mc_c01122{transform:matrix(0.209864,0.005456,-0.006498,0.249916,0,0);-ms-transform:matrix(0.209864,0.005456,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.209864,0.005456,-0.006498,0.249916,0,0);}
.m9_c01122{transform:matrix(0.212825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212825,0.000000,0.000000,0.250000,0,0);}
.m33_c01122{transform:matrix(0.215228,0.007110,-0.008254,0.249864,0,0);-ms-transform:matrix(0.215228,0.007110,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.215228,0.007110,-0.008254,0.249864,0,0);}
.me8_c01122{transform:matrix(0.215661,0.008419,-0.009752,0.249810,0,0);-ms-transform:matrix(0.215661,0.008419,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.215661,0.008419,-0.009752,0.249810,0,0);}
.m97_c01122{transform:matrix(0.215781,0.006689,-0.007746,0.249880,0,0);-ms-transform:matrix(0.215781,0.006689,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.215781,0.006689,-0.007746,0.249880,0,0);}
.mb2_c01122{transform:matrix(0.217941,0.005666,-0.006498,0.249916,0,0);-ms-transform:matrix(0.217941,0.005666,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.217941,0.005666,-0.006498,0.249916,0,0);}
.m1b_c01122{transform:matrix(0.218016,0.004142,-0.004749,0.249955,0,0);-ms-transform:matrix(0.218016,0.004142,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.218016,0.004142,-0.004749,0.249955,0,0);}
.me1_c01122{transform:matrix(0.218877,0.009202,-0.010501,0.249779,0,0);-ms-transform:matrix(0.218877,0.009202,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.218877,0.009202,-0.010501,0.249779,0,0);}
.ma_c01122{transform:matrix(0.219065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219065,0.000000,0.000000,0.250000,0,0);}
.m1d_c01122{transform:matrix(0.221165,0.004202,-0.004749,0.249955,0,0);-ms-transform:matrix(0.221165,0.004202,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.221165,0.004202,-0.004749,0.249955,0,0);}
.m92_c01122{transform:matrix(0.221773,0.006875,-0.007746,0.249880,0,0);-ms-transform:matrix(0.221773,0.006875,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.221773,0.006875,-0.007746,0.249880,0,0);}
.m44_c01122{transform:matrix(0.222597,0.003562,-0.003999,0.249968,0,0);-ms-transform:matrix(0.222597,0.003562,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.222597,0.003562,-0.003999,0.249968,0,0);}
.me7_c01122{transform:matrix(0.222743,0.009365,-0.010501,0.249779,0,0);-ms-transform:matrix(0.222743,0.009365,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.222743,0.009365,-0.010501,0.249779,0,0);}
.m91_c01122{transform:matrix(0.224032,0.006945,-0.007746,0.249880,0,0);-ms-transform:matrix(0.224032,0.006945,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.224032,0.006945,-0.007746,0.249880,0,0);}
.m54_c01122{transform:matrix(0.225000,0.005625,-0.006248,0.249922,0,0);-ms-transform:matrix(0.225000,0.005625,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.225000,0.005625,-0.006248,0.249922,0,0);}
.mdc_c01122{transform:matrix(0.226423,0.006793,-0.007497,0.249888,0,0);-ms-transform:matrix(0.226423,0.006793,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.226423,0.006793,-0.007497,0.249888,0,0);}
.mba_c01122{transform:matrix(0.226478,0.005888,-0.006498,0.249916,0,0);-ms-transform:matrix(0.226478,0.005888,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.226478,0.005888,-0.006498,0.249916,0,0);}
.m86_c01122{transform:matrix(0.227958,0.007758,-0.008504,0.249855,0,0);-ms-transform:matrix(0.227958,0.007758,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.227958,0.007758,-0.008504,0.249855,0,0);}
.m88_c01122{transform:matrix(0.228028,0.007761,-0.008504,0.249855,0,0);-ms-transform:matrix(0.228028,0.007761,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.228028,0.007761,-0.008504,0.249855,0,0);}
.mb5_c01122{transform:matrix(0.228093,0.005930,-0.006498,0.249916,0,0);-ms-transform:matrix(0.228093,0.005930,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.228093,0.005930,-0.006498,0.249916,0,0);}
.m4_c01122{transform:matrix(0.228205,0.005249,-0.005748,0.249934,0,0);-ms-transform:matrix(0.228205,0.005249,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.228205,0.005249,-0.005748,0.249934,0,0);}
.ma7_c01122{transform:matrix(0.228957,0.006182,-0.006748,0.249909,0,0);-ms-transform:matrix(0.228957,0.006182,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.228957,0.006182,-0.006748,0.249909,0,0);}
.m39_c01122{transform:matrix(0.228990,0.004809,-0.005249,0.249945,0,0);-ms-transform:matrix(0.228990,0.004809,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.228990,0.004809,-0.005249,0.249945,0,0);}
.m95_c01122{transform:matrix(0.229085,0.007102,-0.007746,0.249880,0,0);-ms-transform:matrix(0.229085,0.007102,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.229085,0.007102,-0.007746,0.249880,0,0);}
.m84_c01122{transform:matrix(0.230611,0.007849,-0.008504,0.249855,0,0);-ms-transform:matrix(0.230611,0.007849,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.230611,0.007849,-0.008504,0.249855,0,0);}
.me5_c01122{transform:matrix(0.230711,0.009700,-0.010501,0.249779,0,0);-ms-transform:matrix(0.230711,0.009700,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.230711,0.009700,-0.010501,0.249779,0,0);}
.mc1_c01122{transform:matrix(0.232227,0.006735,-0.007247,0.249895,0,0);-ms-transform:matrix(0.232227,0.006735,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.232227,0.006735,-0.007247,0.249895,0,0);}
.ma4_c01122{transform:matrix(0.232320,0.006273,-0.006748,0.249909,0,0);-ms-transform:matrix(0.232320,0.006273,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.232320,0.006273,-0.006748,0.249909,0,0);}
.m7_c01122{transform:matrix(0.232923,0.005357,-0.005748,0.249934,0,0);-ms-transform:matrix(0.232923,0.005357,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.232923,0.005357,-0.005748,0.249934,0,0);}
.m82_c01122{transform:matrix(0.233160,0.007935,-0.008504,0.249855,0,0);-ms-transform:matrix(0.233160,0.007935,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.233160,0.007935,-0.008504,0.249855,0,0);}
.m50_c01122{transform:matrix(0.233167,0.005829,-0.006248,0.249922,0,0);-ms-transform:matrix(0.233167,0.005829,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.233167,0.005829,-0.006248,0.249922,0,0);}
.me2_c01122{transform:matrix(0.233264,0.009807,-0.010501,0.249779,0,0);-ms-transform:matrix(0.233264,0.009807,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.233264,0.009807,-0.010501,0.249779,0,0);}
.ma6_c01122{transform:matrix(0.233300,0.006299,-0.006748,0.249909,0,0);-ms-transform:matrix(0.233300,0.006299,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.233300,0.006299,-0.006748,0.249909,0,0);}
.m20_c01122{transform:matrix(0.233573,0.004438,-0.004749,0.249955,0,0);-ms-transform:matrix(0.233573,0.004438,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.233573,0.004438,-0.004749,0.249955,0,0);}
.m98_c01122{transform:matrix(0.234252,0.007262,-0.007746,0.249880,0,0);-ms-transform:matrix(0.234252,0.007262,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.234252,0.007262,-0.007746,0.249880,0,0);}
.m79_c01122{transform:matrix(0.238038,0.007141,-0.007497,0.249888,0,0);-ms-transform:matrix(0.238038,0.007141,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.238038,0.007141,-0.007497,0.249888,0,0);}
.mbe_c01122{transform:matrix(0.238274,0.006195,-0.006498,0.249916,0,0);-ms-transform:matrix(0.238274,0.006195,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.238274,0.006195,-0.006498,0.249916,0,0);}
.m89_c01122{transform:matrix(0.239157,0.008139,-0.008504,0.249855,0,0);-ms-transform:matrix(0.239157,0.008139,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.239157,0.008139,-0.008504,0.249855,0,0);}
.m96_c01122{transform:matrix(0.239180,0.007415,-0.007746,0.249880,0,0);-ms-transform:matrix(0.239180,0.007415,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.239180,0.007415,-0.007746,0.249880,0,0);}
.m36_c01122{transform:matrix(0.239537,0.005030,-0.005249,0.249945,0,0);-ms-transform:matrix(0.239537,0.005030,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.239537,0.005030,-0.005249,0.249945,0,0);}
.m73_c01122{transform:matrix(0.239674,0.013689,-0.014255,0.249593,0,0);-ms-transform:matrix(0.239674,0.013689,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.239674,0.013689,-0.014255,0.249593,0,0);}
.m5_c01122{transform:matrix(0.240966,0.005542,-0.005748,0.249934,0,0);-ms-transform:matrix(0.240966,0.005542,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.240966,0.005542,-0.005748,0.249934,0,0);}
.m72_c01122{transform:matrix(0.241022,0.013766,-0.014255,0.249593,0,0);-ms-transform:matrix(0.241022,0.013766,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.241022,0.013766,-0.014255,0.249593,0,0);}
.mc0_c01122{transform:matrix(0.241279,0.006997,-0.007247,0.249895,0,0);-ms-transform:matrix(0.241279,0.006997,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.241279,0.006997,-0.007247,0.249895,0,0);}
.md1_c01122{transform:matrix(0.241936,0.005323,-0.005499,0.249940,0,0);-ms-transform:matrix(0.241936,0.005323,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.241936,0.005323,-0.005499,0.249940,0,0);}
.md7_c01122{transform:matrix(0.243386,0.007302,-0.007497,0.249888,0,0);-ms-transform:matrix(0.243386,0.007302,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.243386,0.007302,-0.007497,0.249888,0,0);}
.meb_c01122{transform:matrix(0.243849,0.009520,-0.009752,0.249810,0,0);-ms-transform:matrix(0.243849,0.009520,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.243849,0.009520,-0.009752,0.249810,0,0);}
.m1c_c01122{transform:matrix(0.244511,0.004646,-0.004749,0.249955,0,0);-ms-transform:matrix(0.244511,0.004646,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.244511,0.004646,-0.004749,0.249955,0,0);}
.m21_c01122{transform:matrix(0.246895,0.004691,-0.004749,0.249955,0,0);-ms-transform:matrix(0.246895,0.004691,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.246895,0.004691,-0.004749,0.249955,0,0);}
.m17_c01122{transform:matrix(0.248060,0.004713,-0.004749,0.249955,0,0);-ms-transform:matrix(0.248060,0.004713,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.248060,0.004713,-0.004749,0.249955,0,0);}
.m7b_c01122{transform:matrix(0.248133,0.007444,-0.007497,0.249888,0,0);-ms-transform:matrix(0.248133,0.007444,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.248133,0.007444,-0.007497,0.249888,0,0);}
.m77_c01122{transform:matrix(0.248463,0.007454,-0.007497,0.249888,0,0);-ms-transform:matrix(0.248463,0.007454,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.248463,0.007454,-0.007497,0.249888,0,0);}
.m7d_c01122{transform:matrix(0.248903,0.007467,-0.007497,0.249888,0,0);-ms-transform:matrix(0.248903,0.007467,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.248903,0.007467,-0.007497,0.249888,0,0);}
.mdb_c01122{transform:matrix(0.249103,0.007473,-0.007497,0.249888,0,0);-ms-transform:matrix(0.249103,0.007473,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.249103,0.007473,-0.007497,0.249888,0,0);}
.m93_c01122{transform:matrix(0.249285,0.007728,-0.007746,0.249880,0,0);-ms-transform:matrix(0.249285,0.007728,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.249285,0.007728,-0.007746,0.249880,0,0);}
.m23_c01122{transform:matrix(0.249960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249960,0.000000,0.000000,0.250000,0,0);}
.m63_c01122{transform:matrix(0.250277,0.007508,-0.007497,0.249888,0,0);-ms-transform:matrix(0.250277,0.007508,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.250277,0.007508,-0.007497,0.249888,0,0);}
.m3a_c01122{transform:matrix(0.250875,0.005268,-0.005249,0.249945,0,0);-ms-transform:matrix(0.250875,0.005268,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.250875,0.005268,-0.005249,0.249945,0,0);}
.m8f_c01122{transform:matrix(0.250924,0.007779,-0.007746,0.249880,0,0);-ms-transform:matrix(0.250924,0.007779,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.250924,0.007779,-0.007746,0.249880,0,0);}
.m3d_c01122{transform:matrix(0.251099,0.007784,-0.007746,0.249880,0,0);-ms-transform:matrix(0.251099,0.007784,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.251099,0.007784,-0.007746,0.249880,0,0);}
.m7a_c01122{transform:matrix(0.251332,0.007540,-0.007497,0.249888,0,0);-ms-transform:matrix(0.251332,0.007540,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.251332,0.007540,-0.007497,0.249888,0,0);}
.md0_c01122{transform:matrix(0.251574,0.005535,-0.005499,0.249940,0,0);-ms-transform:matrix(0.251574,0.005535,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.251574,0.005535,-0.005499,0.249940,0,0);}
.m87_c01122{transform:matrix(0.251939,0.008575,-0.008504,0.249855,0,0);-ms-transform:matrix(0.251939,0.008575,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.251939,0.008575,-0.008504,0.249855,0,0);}
.mda_c01122{transform:matrix(0.253046,0.007591,-0.007497,0.249888,0,0);-ms-transform:matrix(0.253046,0.007591,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.253046,0.007591,-0.007497,0.249888,0,0);}
.m1e_c01122{transform:matrix(0.253429,0.004815,-0.004749,0.249955,0,0);-ms-transform:matrix(0.253429,0.004815,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.253429,0.004815,-0.004749,0.249955,0,0);}
.m94_c01122{transform:matrix(0.254598,0.007893,-0.007746,0.249880,0,0);-ms-transform:matrix(0.254598,0.007893,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.254598,0.007893,-0.007746,0.249880,0,0);}
.mc4_c01122{transform:matrix(0.254648,0.007385,-0.007247,0.249895,0,0);-ms-transform:matrix(0.254648,0.007385,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.254648,0.007385,-0.007247,0.249895,0,0);}
.m69_c01122{transform:matrix(0.254720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254720,0.000000,0.000000,0.250000,0,0);}
.m2b_c01122{transform:matrix(0.255404,0.005108,-0.004999,0.249950,0,0);-ms-transform:matrix(0.255404,0.005108,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.255404,0.005108,-0.004999,0.249950,0,0);}
.me4_c01122{transform:matrix(0.255804,0.010755,-0.010501,0.249779,0,0);-ms-transform:matrix(0.255804,0.010755,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.255804,0.010755,-0.010501,0.249779,0,0);}
.mb0_c01122{transform:matrix(0.255973,0.006655,-0.006498,0.249916,0,0);-ms-transform:matrix(0.255973,0.006655,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.255973,0.006655,-0.006498,0.249916,0,0);}
.m19_c01122{transform:matrix(0.256739,0.004878,-0.004749,0.249955,0,0);-ms-transform:matrix(0.256739,0.004878,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.256739,0.004878,-0.004749,0.249955,0,0);}
.mb3_c01122{transform:matrix(0.257013,0.006682,-0.006498,0.249916,0,0);-ms-transform:matrix(0.257013,0.006682,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.257013,0.006682,-0.006498,0.249916,0,0);}
.m47_c01122{transform:matrix(0.257067,0.004113,-0.003999,0.249968,0,0);-ms-transform:matrix(0.257067,0.004113,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.257067,0.004113,-0.003999,0.249968,0,0);}
.m3e_c01122{transform:matrix(0.257166,0.007972,-0.007746,0.249880,0,0);-ms-transform:matrix(0.257166,0.007972,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.257166,0.007972,-0.007746,0.249880,0,0);}
.m8e_c01122{transform:matrix(0.257221,0.007974,-0.007746,0.249880,0,0);-ms-transform:matrix(0.257221,0.007974,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.257221,0.007974,-0.007746,0.249880,0,0);}
.m29_c01122{transform:matrix(0.258103,0.005162,-0.004999,0.249950,0,0);-ms-transform:matrix(0.258103,0.005162,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.258103,0.005162,-0.004999,0.249950,0,0);}
.mc6_c01122{transform:matrix(0.258301,0.007491,-0.007247,0.249895,0,0);-ms-transform:matrix(0.258301,0.007491,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.258301,0.007491,-0.007247,0.249895,0,0);}
.me3_c01122{transform:matrix(0.258357,0.010862,-0.010501,0.249779,0,0);-ms-transform:matrix(0.258357,0.010862,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.258357,0.010862,-0.010501,0.249779,0,0);}
.m3_c01122{transform:matrix(0.258457,0.005945,-0.005748,0.249934,0,0);-ms-transform:matrix(0.258457,0.005945,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.258457,0.005945,-0.005748,0.249934,0,0);}
.m7c_c01122{transform:matrix(0.259338,0.007780,-0.007497,0.249888,0,0);-ms-transform:matrix(0.259338,0.007780,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.259338,0.007780,-0.007497,0.249888,0,0);}
.mb9_c01122{transform:matrix(0.259377,0.006744,-0.006498,0.249916,0,0);-ms-transform:matrix(0.259377,0.006744,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.259377,0.006744,-0.006498,0.249916,0,0);}
.m61_c01122{transform:matrix(0.259723,0.007792,-0.007497,0.249888,0,0);-ms-transform:matrix(0.259723,0.007792,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.259723,0.007792,-0.007497,0.249888,0,0);}
.m3c_c01122{transform:matrix(0.259915,0.008057,-0.007746,0.249880,0,0);-ms-transform:matrix(0.259915,0.008057,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.259915,0.008057,-0.007746,0.249880,0,0);}
.m4b_c01122{transform:matrix(0.260097,0.004162,-0.003999,0.249968,0,0);-ms-transform:matrix(0.260097,0.004162,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.260097,0.004162,-0.003999,0.249968,0,0);}
.mbc_c01122{transform:matrix(0.261347,0.006795,-0.006498,0.249916,0,0);-ms-transform:matrix(0.261347,0.006795,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.261347,0.006795,-0.006498,0.249916,0,0);}
.md8_c01122{transform:matrix(0.262437,0.007873,-0.007497,0.249888,0,0);-ms-transform:matrix(0.262437,0.007873,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.262437,0.007873,-0.007497,0.249888,0,0);}
.mdd_c01122{transform:matrix(0.262439,0.006299,-0.005998,0.249928,0,0);-ms-transform:matrix(0.262439,0.006299,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.262439,0.006299,-0.005998,0.249928,0,0);}
.mcf_c01122{transform:matrix(0.262701,0.005779,-0.005499,0.249940,0,0);-ms-transform:matrix(0.262701,0.005779,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.262701,0.005779,-0.005499,0.249940,0,0);}
.mce_c01122{transform:matrix(0.262856,0.005783,-0.005499,0.249940,0,0);-ms-transform:matrix(0.262856,0.005783,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.262856,0.005783,-0.005499,0.249940,0,0);}
.m6c_c01122{transform:matrix(0.263072,0.004735,-0.004499,0.249960,0,0);-ms-transform:matrix(0.263072,0.004735,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.263072,0.004735,-0.004499,0.249960,0,0);}
.mb1_c01122{transform:matrix(0.263171,0.006842,-0.006498,0.249916,0,0);-ms-transform:matrix(0.263171,0.006842,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.263171,0.006842,-0.006498,0.249916,0,0);}
.mb8_c01122{transform:matrix(0.263281,0.006845,-0.006498,0.249916,0,0);-ms-transform:matrix(0.263281,0.006845,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.263281,0.006845,-0.006498,0.249916,0,0);}
.md2_c01122{transform:matrix(0.263421,0.005795,-0.005499,0.249940,0,0);-ms-transform:matrix(0.263421,0.005795,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.263421,0.005795,-0.005499,0.249940,0,0);}
.ma5_c01122{transform:matrix(0.263449,0.007113,-0.006748,0.249909,0,0);-ms-transform:matrix(0.263449,0.007113,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.263449,0.007113,-0.006748,0.249909,0,0);}
.m1f_c01122{transform:matrix(0.263612,0.005009,-0.004749,0.249955,0,0);-ms-transform:matrix(0.263612,0.005009,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.263612,0.005009,-0.004749,0.249955,0,0);}
.m83_c01122{transform:matrix(0.263972,0.008984,-0.008504,0.249855,0,0);-ms-transform:matrix(0.263972,0.008984,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.263972,0.008984,-0.008504,0.249855,0,0);}
.me6_c01122{transform:matrix(0.264042,0.011101,-0.010501,0.249779,0,0);-ms-transform:matrix(0.264042,0.011101,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.264042,0.011101,-0.010501,0.249779,0,0);}
.m8b_c01122{transform:matrix(0.264057,0.008987,-0.008504,0.249855,0,0);-ms-transform:matrix(0.264057,0.008987,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.264057,0.008987,-0.008504,0.249855,0,0);}
.me0_c01122{transform:matrix(0.264376,0.011115,-0.010501,0.249779,0,0);-ms-transform:matrix(0.264376,0.011115,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.264376,0.011115,-0.010501,0.249779,0,0);}
.m75_c01122{transform:matrix(0.264424,0.015102,-0.014255,0.249593,0,0);-ms-transform:matrix(0.264424,0.015102,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.264424,0.015102,-0.014255,0.249593,0,0);}
.m53_c01122{transform:matrix(0.264857,0.006621,-0.006248,0.249922,0,0);-ms-transform:matrix(0.264857,0.006621,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.264857,0.006621,-0.006248,0.249922,0,0);}
.m4c_c01122{transform:matrix(0.265096,0.004242,-0.003999,0.249968,0,0);-ms-transform:matrix(0.265096,0.004242,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.265096,0.004242,-0.003999,0.249968,0,0);}
.ma3_c01122{transform:matrix(0.265108,0.007158,-0.006748,0.249909,0,0);-ms-transform:matrix(0.265108,0.007158,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.265108,0.007158,-0.006748,0.249909,0,0);}
.m66_c01122{transform:matrix(0.265556,0.007967,-0.007497,0.249888,0,0);-ms-transform:matrix(0.265556,0.007967,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.265556,0.007967,-0.007497,0.249888,0,0);}
.m65_c01122{transform:matrix(0.265850,0.007976,-0.007497,0.249888,0,0);-ms-transform:matrix(0.265850,0.007976,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.265850,0.007976,-0.007497,0.249888,0,0);}
.m12_c01122{transform:matrix(0.266652,0.005066,-0.004749,0.249955,0,0);-ms-transform:matrix(0.266652,0.005066,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.266652,0.005066,-0.004749,0.249955,0,0);}
.m37_c01122{transform:matrix(0.267351,0.005614,-0.005249,0.249945,0,0);-ms-transform:matrix(0.267351,0.005614,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.267351,0.005614,-0.005249,0.249945,0,0);}
.mc2_c01122{transform:matrix(0.267722,0.007764,-0.007247,0.249895,0,0);-ms-transform:matrix(0.267722,0.007764,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.267722,0.007764,-0.007247,0.249895,0,0);}
.m38_c01122{transform:matrix(0.267931,0.005627,-0.005249,0.249945,0,0);-ms-transform:matrix(0.267931,0.005627,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.267931,0.005627,-0.005249,0.249945,0,0);}
.mb_c01122{transform:matrix(0.268334,0.006977,-0.006498,0.249916,0,0);-ms-transform:matrix(0.268334,0.006977,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.268334,0.006977,-0.006498,0.249916,0,0);}
.md9_c01122{transform:matrix(0.269074,0.008072,-0.007497,0.249888,0,0);-ms-transform:matrix(0.269074,0.008072,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.269074,0.008072,-0.007497,0.249888,0,0);}
.m45_c01122{transform:matrix(0.269795,0.004317,-0.003999,0.249968,0,0);-ms-transform:matrix(0.269795,0.004317,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.269795,0.004317,-0.003999,0.249968,0,0);}
.m1_c01122{transform:matrix(0.269829,0.006206,-0.005748,0.249934,0,0);-ms-transform:matrix(0.269829,0.006206,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.269829,0.006206,-0.005748,0.249934,0,0);}
.m31_c01122{transform:matrix(0.270268,0.008928,-0.008254,0.249864,0,0);-ms-transform:matrix(0.270268,0.008928,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.270268,0.008928,-0.008254,0.249864,0,0);}
.m46_c01122{transform:matrix(0.270605,0.004330,-0.003999,0.249968,0,0);-ms-transform:matrix(0.270605,0.004330,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.270605,0.004330,-0.003999,0.249968,0,0);}
.m4f_c01122{transform:matrix(0.270850,0.006771,-0.006248,0.249922,0,0);-ms-transform:matrix(0.270850,0.006771,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.270850,0.006771,-0.006248,0.249922,0,0);}
.m35_c01122{transform:matrix(0.270890,0.005689,-0.005249,0.249945,0,0);-ms-transform:matrix(0.270890,0.005689,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.270890,0.005689,-0.005249,0.249945,0,0);}
.mc3_c01122{transform:matrix(0.270926,0.007857,-0.007247,0.249895,0,0);-ms-transform:matrix(0.270926,0.007857,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.270926,0.007857,-0.007247,0.249895,0,0);}
.m6_c01122{transform:matrix(0.271203,0.006238,-0.005748,0.249934,0,0);-ms-transform:matrix(0.271203,0.006238,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.271203,0.006238,-0.005748,0.249934,0,0);}
.m24_c01122{transform:matrix(0.271375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271375,0.000000,0.000000,0.250000,0,0);}
.m43_c01122{transform:matrix(0.271380,0.004342,-0.003999,0.249968,0,0);-ms-transform:matrix(0.271380,0.004342,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.271380,0.004342,-0.003999,0.249968,0,0);}
.m15_c01122{transform:matrix(0.271926,0.005167,-0.004749,0.249955,0,0);-ms-transform:matrix(0.271926,0.005167,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.271926,0.005167,-0.004749,0.249955,0,0);}
.m2e_c01122{transform:matrix(0.272062,0.008987,-0.008254,0.249864,0,0);-ms-transform:matrix(0.272062,0.008987,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.272062,0.008987,-0.008254,0.249864,0,0);}
.m34_c01122{transform:matrix(0.272285,0.005718,-0.005249,0.249945,0,0);-ms-transform:matrix(0.272285,0.005718,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.272285,0.005718,-0.005249,0.249945,0,0);}
.m90_c01122{transform:matrix(0.272349,0.008443,-0.007746,0.249880,0,0);-ms-transform:matrix(0.272349,0.008443,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.272349,0.008443,-0.007746,0.249880,0,0);}
.m0_c01122{transform:matrix(0.273058,0.006280,-0.005748,0.249934,0,0);-ms-transform:matrix(0.273058,0.006280,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.273058,0.006280,-0.005748,0.249934,0,0);}
.maa_c01122{transform:matrix(0.273500,0.011225,-0.010252,0.249790,0,0);-ms-transform:matrix(0.273500,0.011225,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.273500,0.011225,-0.010252,0.249790,0,0);}
.m22_c01122{transform:matrix(0.273516,0.005197,-0.004749,0.249955,0,0);-ms-transform:matrix(0.273516,0.005197,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.273516,0.005197,-0.004749,0.249955,0,0);}
.ma8_c01122{transform:matrix(0.273625,0.011230,-0.010252,0.249790,0,0);-ms-transform:matrix(0.273625,0.011230,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.273625,0.011230,-0.010252,0.249790,0,0);}
.mde_c01122{transform:matrix(0.273701,0.006569,-0.005998,0.249928,0,0);-ms-transform:matrix(0.273701,0.006569,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.273701,0.006569,-0.005998,0.249928,0,0);}
.mbb_c01122{transform:matrix(0.273872,0.007121,-0.006498,0.249916,0,0);-ms-transform:matrix(0.273872,0.007121,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.273872,0.007121,-0.006498,0.249916,0,0);}
.m48_c01122{transform:matrix(0.274295,0.004389,-0.003999,0.249968,0,0);-ms-transform:matrix(0.274295,0.004389,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.274295,0.004389,-0.003999,0.249968,0,0);}
.mb6_c01122{transform:matrix(0.274372,0.007134,-0.006498,0.249916,0,0);-ms-transform:matrix(0.274372,0.007134,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.274372,0.007134,-0.006498,0.249916,0,0);}
.mcd_c01122{transform:matrix(0.275348,0.006058,-0.005499,0.249940,0,0);-ms-transform:matrix(0.275348,0.006058,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.275348,0.006058,-0.005499,0.249940,0,0);}
.m2_c01122{transform:matrix(0.275422,0.006335,-0.005748,0.249934,0,0);-ms-transform:matrix(0.275422,0.006335,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.275422,0.006335,-0.005748,0.249934,0,0);}
.m85_c01122{transform:matrix(0.276795,0.009420,-0.008504,0.249855,0,0);-ms-transform:matrix(0.276795,0.009420,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.276795,0.009420,-0.008504,0.249855,0,0);}
.m4e_c01122{transform:matrix(0.277268,0.006932,-0.006248,0.249922,0,0);-ms-transform:matrix(0.277268,0.006932,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.277268,0.006932,-0.006248,0.249922,0,0);}
.mea_c01122{transform:matrix(0.277334,0.010827,-0.009752,0.249810,0,0);-ms-transform:matrix(0.277334,0.010827,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.277334,0.010827,-0.009752,0.249810,0,0);}
.ma9_c01122{transform:matrix(0.277976,0.011408,-0.010252,0.249790,0,0);-ms-transform:matrix(0.277976,0.011408,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.277976,0.011408,-0.010252,0.249790,0,0);}
.mbd_c01122{transform:matrix(0.279106,0.007257,-0.006498,0.249916,0,0);-ms-transform:matrix(0.279106,0.007257,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.279106,0.007257,-0.006498,0.249916,0,0);}
.m8a_c01122{transform:matrix(0.279183,0.009502,-0.008504,0.249855,0,0);-ms-transform:matrix(0.279183,0.009502,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.279183,0.009502,-0.008504,0.249855,0,0);}
.m9b_c01122{transform:matrix(0.279468,0.006987,-0.006248,0.249922,0,0);-ms-transform:matrix(0.279468,0.006987,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.279468,0.006987,-0.006248,0.249922,0,0);}
.m64_c01122{transform:matrix(0.279639,0.008389,-0.007497,0.249888,0,0);-ms-transform:matrix(0.279639,0.008389,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.279639,0.008389,-0.007497,0.249888,0,0);}
.m9a_c01122{transform:matrix(0.279708,0.006993,-0.006248,0.249922,0,0);-ms-transform:matrix(0.279708,0.006993,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.279708,0.006993,-0.006248,0.249922,0,0);}
.m18_c01122{transform:matrix(0.279829,0.005317,-0.004749,0.249955,0,0);-ms-transform:matrix(0.279829,0.005317,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.279829,0.005317,-0.004749,0.249955,0,0);}
.m52_c01122{transform:matrix(0.279928,0.006998,-0.006248,0.249922,0,0);-ms-transform:matrix(0.279928,0.006998,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.279928,0.006998,-0.006248,0.249922,0,0);}
.m3b_c01122{transform:matrix(0.281125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281125,0.000000,0.000000,0.250000,0,0);}
.m60_c01122{transform:matrix(0.281833,0.008455,-0.007497,0.249888,0,0);-ms-transform:matrix(0.281833,0.008455,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.281833,0.008455,-0.007497,0.249888,0,0);}
.m51_c01122{transform:matrix(0.281962,0.007049,-0.006248,0.249922,0,0);-ms-transform:matrix(0.281962,0.007049,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.281962,0.007049,-0.006248,0.249922,0,0);}
.mb4_c01122{transform:matrix(0.282190,0.007337,-0.006498,0.249916,0,0);-ms-transform:matrix(0.282190,0.007337,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.282190,0.007337,-0.006498,0.249916,0,0);}
.mc5_c01122{transform:matrix(0.282856,0.008203,-0.007247,0.249895,0,0);-ms-transform:matrix(0.282856,0.008203,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.282856,0.008203,-0.007247,0.249895,0,0);}
.m62_c01122{transform:matrix(0.282993,0.008490,-0.007497,0.249888,0,0);-ms-transform:matrix(0.282993,0.008490,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.282993,0.008490,-0.007497,0.249888,0,0);}
.m49_c01122{transform:matrix(0.283139,0.004530,-0.003999,0.249968,0,0);-ms-transform:matrix(0.283139,0.004530,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.283139,0.004530,-0.003999,0.249968,0,0);}
.m7f_c01122{transform:matrix(0.284862,0.008546,-0.007497,0.249888,0,0);-ms-transform:matrix(0.284862,0.008546,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.284862,0.008546,-0.007497,0.249888,0,0);}
.m2f_c01122{transform:matrix(0.285414,0.009428,-0.008254,0.249864,0,0);-ms-transform:matrix(0.285414,0.009428,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.285414,0.009428,-0.008254,0.249864,0,0);}
.m9d_c01122{transform:matrix(0.285556,0.007139,-0.006248,0.249922,0,0);-ms-transform:matrix(0.285556,0.007139,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.285556,0.007139,-0.006248,0.249922,0,0);}
.m78_c01122{transform:matrix(0.286941,0.008608,-0.007497,0.249888,0,0);-ms-transform:matrix(0.286941,0.008608,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.286941,0.008608,-0.007497,0.249888,0,0);}
.m13_c01122{transform:matrix(0.287738,0.005467,-0.004749,0.249955,0,0);-ms-transform:matrix(0.287738,0.005467,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.287738,0.005467,-0.004749,0.249955,0,0);}
.m99_c01122{transform:matrix(0.288980,0.007224,-0.006248,0.249922,0,0);-ms-transform:matrix(0.288980,0.007224,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.288980,0.007224,-0.006248,0.249922,0,0);}
.m1a_c01122{transform:matrix(0.289538,0.005501,-0.004749,0.249955,0,0);-ms-transform:matrix(0.289538,0.005501,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.289538,0.005501,-0.004749,0.249955,0,0);}
.m8c_c01122{transform:matrix(0.291720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291720,0.000000,0.000000,0.250000,0,0);}
.mdf_c01122{transform:matrix(0.292741,0.007026,-0.005998,0.249928,0,0);-ms-transform:matrix(0.292741,0.007026,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.292741,0.007026,-0.005998,0.249928,0,0);}
.m80_c01122{transform:matrix(0.293848,0.008815,-0.007497,0.249888,0,0);-ms-transform:matrix(0.293848,0.008815,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.293848,0.008815,-0.007497,0.249888,0,0);}
.mac_c01122{transform:matrix(0.294012,0.012067,-0.010252,0.249790,0,0);-ms-transform:matrix(0.294012,0.012067,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.294012,0.012067,-0.010252,0.249790,0,0);}
.md_c01122{transform:matrix(0.294136,0.007648,-0.006498,0.249916,0,0);-ms-transform:matrix(0.294136,0.007648,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.294136,0.007648,-0.006498,0.249916,0,0);}
.m6f_c01122{transform:matrix(0.294410,0.016815,-0.014255,0.249593,0,0);-ms-transform:matrix(0.294410,0.016815,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.294410,0.016815,-0.014255,0.249593,0,0);}
.m14_c01122{transform:matrix(0.295727,0.005619,-0.004749,0.249955,0,0);-ms-transform:matrix(0.295727,0.005619,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.295727,0.005619,-0.004749,0.249955,0,0);}
.m9e_c01122{transform:matrix(0.296372,0.007409,-0.006248,0.249922,0,0);-ms-transform:matrix(0.296372,0.007409,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.296372,0.007409,-0.006248,0.249922,0,0);}
.m32_c01122{transform:matrix(0.297058,0.009813,-0.008254,0.249864,0,0);-ms-transform:matrix(0.297058,0.009813,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.297058,0.009813,-0.008254,0.249864,0,0);}
.mab_c01122{transform:matrix(0.297160,0.012196,-0.010252,0.249790,0,0);-ms-transform:matrix(0.297160,0.012196,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.297160,0.012196,-0.010252,0.249790,0,0);}
.m28_c01122{transform:matrix(0.297221,0.005944,-0.004999,0.249950,0,0);-ms-transform:matrix(0.297221,0.005944,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.297221,0.005944,-0.004999,0.249950,0,0);}
.m5f_c01122{transform:matrix(0.297341,0.008920,-0.007497,0.249888,0,0);-ms-transform:matrix(0.297341,0.008920,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.297341,0.008920,-0.007497,0.249888,0,0);}
.m27_c01122{transform:matrix(0.298730,0.005975,-0.004999,0.249950,0,0);-ms-transform:matrix(0.298730,0.005975,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.298730,0.005975,-0.004999,0.249950,0,0);}
.m2a_c01122{transform:matrix(0.300790,0.006016,-0.004999,0.249950,0,0);-ms-transform:matrix(0.300790,0.006016,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.300790,0.006016,-0.004999,0.249950,0,0);}
.m7e_c01122{transform:matrix(0.301619,0.009049,-0.007497,0.249888,0,0);-ms-transform:matrix(0.301619,0.009049,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.301619,0.009049,-0.007497,0.249888,0,0);}
.m74_c01122{transform:matrix(0.303725,0.017347,-0.014255,0.249593,0,0);-ms-transform:matrix(0.303725,0.017347,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.303725,0.017347,-0.014255,0.249593,0,0);}
.m9c_c01122{transform:matrix(0.303765,0.007594,-0.006248,0.249922,0,0);-ms-transform:matrix(0.303765,0.007594,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.303765,0.007594,-0.006248,0.249922,0,0);}
.m16_c01122{transform:matrix(0.305690,0.005808,-0.004749,0.249955,0,0);-ms-transform:matrix(0.305690,0.005808,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.305690,0.005808,-0.004749,0.249955,0,0);}
.m3f_c01122{transform:matrix(0.306038,0.009487,-0.007746,0.249880,0,0);-ms-transform:matrix(0.306038,0.009487,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.306038,0.009487,-0.007746,0.249880,0,0);}
.m30_c01122{transform:matrix(0.306303,0.010118,-0.008254,0.249864,0,0);-ms-transform:matrix(0.306303,0.010118,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.306303,0.010118,-0.008254,0.249864,0,0);}
.m2c_c01122{transform:matrix(0.315273,0.010414,-0.008254,0.249864,0,0);-ms-transform:matrix(0.315273,0.010414,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.315273,0.010414,-0.008254,0.249864,0,0);}
.m2d_c01122{transform:matrix(0.319326,0.010548,-0.008254,0.249864,0,0);-ms-transform:matrix(0.319326,0.010548,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.319326,0.010548,-0.008254,0.249864,0,0);}
.m5d_c01122{transform:matrix(0.331570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331570,0.000000,0.000000,0.250000,0,0);}
.m58_c01122{transform:matrix(0.338994,0.008475,-0.006248,0.249922,0,0);-ms-transform:matrix(0.338994,0.008475,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.338994,0.008475,-0.006248,0.249922,0,0);}
.m56_c01122{transform:matrix(0.341148,0.008529,-0.006248,0.249922,0,0);-ms-transform:matrix(0.341148,0.008529,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.341148,0.008529,-0.006248,0.249922,0,0);}
.mf_c01122{transform:matrix(0.348985,0.008376,-0.005998,0.249928,0,0);-ms-transform:matrix(0.348985,0.008376,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.348985,0.008376,-0.005998,0.249928,0,0);}
.m59_c01122{transform:matrix(0.372549,0.009314,-0.006248,0.249922,0,0);-ms-transform:matrix(0.372549,0.009314,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.372549,0.009314,-0.006248,0.249922,0,0);}
.m55_c01122{transform:matrix(0.375243,0.009381,-0.006248,0.249922,0,0);-ms-transform:matrix(0.375243,0.009381,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.375243,0.009381,-0.006248,0.249922,0,0);}
.m5b_c01122{transform:matrix(0.376567,0.009414,-0.006248,0.249922,0,0);-ms-transform:matrix(0.376567,0.009414,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.376567,0.009414,-0.006248,0.249922,0,0);}
.m5c_c01122{transform:matrix(0.395102,0.009878,-0.006248,0.249922,0,0);-ms-transform:matrix(0.395102,0.009878,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.395102,0.009878,-0.006248,0.249922,0,0);}
.m11_c01122{transform:matrix(0.398444,0.008766,-0.005499,0.249940,0,0);-ms-transform:matrix(0.398444,0.008766,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.398444,0.008766,-0.005499,0.249940,0,0);}
.m57_c01122{transform:matrix(0.406768,0.010169,-0.006248,0.249922,0,0);-ms-transform:matrix(0.406768,0.010169,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.406768,0.010169,-0.006248,0.249922,0,0);}
.mb7_c01122{transform:matrix(0.411341,0.010695,-0.006498,0.249916,0,0);-ms-transform:matrix(0.411341,0.010695,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.411341,0.010695,-0.006498,0.249916,0,0);}
.m5a_c01122{transform:matrix(0.412266,0.010307,-0.006248,0.249922,0,0);-ms-transform:matrix(0.412266,0.010307,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.412266,0.010307,-0.006248,0.249922,0,0);}
.m67_c01122{transform:matrix(0.434110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434110,0.000000,0.000000,0.250000,0,0);}
.md5_c01122{transform:matrix(0.556935,0.012253,-0.005499,0.249940,0,0);-ms-transform:matrix(0.556935,0.012253,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.556935,0.012253,-0.005499,0.249940,0,0);}
.m10_c01122{transform:matrix(0.621336,0.014912,-0.005998,0.249928,0,0);-ms-transform:matrix(0.621336,0.014912,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.621336,0.014912,-0.005998,0.249928,0,0);}
.mad_c01122{transform:matrix(0.700775,0.028761,-0.010252,0.249790,0,0);-ms-transform:matrix(0.700775,0.028761,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.700775,0.028761,-0.010252,0.249790,0,0);}
.m68_c01122{transform:matrix(0.733110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.733110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.733110,0.000000,0.000000,0.250000,0,0);}
.maf_c01122{transform:matrix(0.747306,0.030670,-0.010252,0.249790,0,0);-ms-transform:matrix(0.747306,0.030670,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.747306,0.030670,-0.010252,0.249790,0,0);}
.m26_c01122{transform:matrix(0.983270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.983270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.983270,0.000000,0.000000,0.250000,0,0);}
.ma0_c01122{transform:matrix(1.430778,0.035769,-0.006248,0.249922,0,0);-ms-transform:matrix(1.430778,0.035769,-0.006248,0.249922,0,0);-webkit-transform:matrix(1.430778,0.035769,-0.006248,0.249922,0,0);}
.mae_c01122{transform:matrix(1.861333,0.076391,-0.010252,0.249790,0,0);-ms-transform:matrix(1.861333,0.076391,-0.010252,0.249790,0,0);-webkit-transform:matrix(1.861333,0.076391,-0.010252,0.249790,0,0);}
.m40_c01122{transform:matrix(1.978112,0.031650,-0.003999,0.249968,0,0);-ms-transform:matrix(1.978112,0.031650,-0.003999,0.249968,0,0);-webkit-transform:matrix(1.978112,0.031650,-0.003999,0.249968,0,0);}
.m41_c01122{transform:matrix(3.373903,0.053982,-0.003999,0.249968,0,0);-ms-transform:matrix(3.373903,0.053982,-0.003999,0.249968,0,0);-webkit-transform:matrix(3.373903,0.053982,-0.003999,0.249968,0,0);}
.ma1_c01122{transform:matrix(3.636944,0.090924,-0.006248,0.249922,0,0);-ms-transform:matrix(3.636944,0.090924,-0.006248,0.249922,0,0);-webkit-transform:matrix(3.636944,0.090924,-0.006248,0.249922,0,0);}
.m25_c01122{transform:matrix(4.033950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.033950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.033950,0.000000,0.000000,0.250000,0,0);}
.m9f_c01122{transform:matrix(4.148179,0.103704,-0.006248,0.249922,0,0);-ms-transform:matrix(4.148179,0.103704,-0.006248,0.249922,0,0);-webkit-transform:matrix(4.148179,0.103704,-0.006248,0.249922,0,0);}
.md4_c01122{transform:matrix(4.257365,0.093662,-0.005499,0.249940,0,0);-ms-transform:matrix(4.257365,0.093662,-0.005499,0.249940,0,0);-webkit-transform:matrix(4.257365,0.093662,-0.005499,0.249940,0,0);}
.me_c01122{transform:matrix(5.148298,0.123559,-0.005998,0.249928,0,0);-ms-transform:matrix(5.148298,0.123559,-0.005998,0.249928,0,0);-webkit-transform:matrix(5.148298,0.123559,-0.005998,0.249928,0,0);}
.m76_c01122{transform:matrix(6.014658,0.343523,-0.014255,0.249593,0,0);-ms-transform:matrix(6.014658,0.343523,-0.014255,0.249593,0,0);-webkit-transform:matrix(6.014658,0.343523,-0.014255,0.249593,0,0);}
.v0_c01122{vertical-align:0.000000px;}
.ls0_c01122{letter-spacing:0.000000px;}
.sc__c01122{text-shadow:none;}
.sc0_c01122{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__c01122{-webkit-text-stroke:0px transparent;}
.sc0_c01122{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01122{word-spacing:0.000000px;}
.fc0_c01122{color:transparent;}
.fs19_c01122{font-size:17.993276px;}
.fsf_c01122{font-size:18.002304px;}
.fs1f_c01122{font-size:18.005624px;}
.fs8_c01122{font-size:30.000000px;}
.fs3_c01122{font-size:30.008639px;}
.fs22_c01122{font-size:35.994276px;}
.fsd_c01122{font-size:36.000000px;}
.fs29_c01122{font-size:36.008711px;}
.fs27_c01122{font-size:36.012166px;}
.fs15_c01122{font-size:42.000000px;}
.fs24_c01122{font-size:42.014194px;}
.fs12_c01122{font-size:48.014998px;}
.fsa_c01122{font-size:59.972694px;}
.fs13_c01122{font-size:60.000000px;}
.fs17_c01122{font-size:65.975344px;}
.fs21_c01122{font-size:65.989505px;}
.fs1c_c01122{font-size:66.000000px;}
.fs5_c01122{font-size:66.011912px;}
.fs9_c01122{font-size:66.013199px;}
.fs2a_c01122{font-size:66.019005px;}
.fs1e_c01122{font-size:66.020622px;}
.fs1a_c01122{font-size:66.029693px;}
.fse_c01122{font-size:66.031705px;}
.fs1b_c01122{font-size:71.969646px;}
.fs18_c01122{font-size:71.973103px;}
.fs2c_c01122{font-size:71.982790px;}
.fs7_c01122{font-size:72.000000px;}
.fs10_c01122{font-size:72.009215px;}
.fs6_c01122{font-size:72.012995px;}
.fsc_c01122{font-size:72.015874px;}
.fs28_c01122{font-size:72.017422px;}
.fs0_c01122{font-size:72.019041px;}
.fs11_c01122{font-size:72.022496px;}
.fs23_c01122{font-size:72.024332px;}
.fs20_c01122{font-size:72.026239px;}
.fs25_c01122{font-size:72.030270px;}
.fs14_c01122{font-size:72.032393px;}
.fs1d_c01122{font-size:72.034588px;}
.fs2b_c01122{font-size:77.990834px;}
.fs2_c01122{font-size:78.026360px;}
.fs1_c01122{font-size:84.000000px;}
.fs16_c01122{font-size:84.013607px;}
.fs4_c01122{font-size:84.020326px;}
.fsb_c01122{font-size:95.956310px;}
.fs26_c01122{font-size:144.048664px;}
.y0_c01122{bottom:0.000000px;}
.ye4_c01122{bottom:74.577309px;}
.ye3_c01122{bottom:80.702295px;}
.ye2_c01122{bottom:82.565646px;}
.ye1_c01122{bottom:87.191610px;}
.ye0_c01122{bottom:91.804470px;}
.ydf_c01122{bottom:94.686090px;}
.yde_c01122{bottom:96.523485px;}
.ydd_c01122{bottom:100.455000px;}
.ydc_c01122{bottom:127.774416px;}
.ydb_c01122{bottom:130.179828px;}
.yda_c01122{bottom:130.957500px;}
.ye8_c01122{bottom:149.187381px;}
.ye7_c01122{bottom:154.362291px;}
.ye6_c01122{bottom:155.730548px;}
.ye5_c01122{bottom:157.425000px;}
.yd9_c01122{bottom:159.649185px;}
.yd8_c01122{bottom:161.030415px;}
.yd7_c01122{bottom:162.982380px;}
.yd6_c01122{bottom:165.346770px;}
.yd5_c01122{bottom:167.917440px;}
.yd4_c01122{bottom:169.925565px;}
.yd3_c01122{bottom:171.183000px;}
.yd1_c01122{bottom:187.701876px;}
.yd2_c01122{bottom:187.701954px;}
.yd0_c01122{bottom:189.213510px;}
.ycf_c01122{bottom:192.819123px;}
.yce_c01122{bottom:193.556277px;}
.ycd_c01122{bottom:194.999466px;}
.ycc_c01122{bottom:196.687977px;}
.ycb_c01122{bottom:198.678570px;}
.yca_c01122{bottom:201.345366px;}
.yc9_c01122{bottom:202.233000px;}
.yc8_c01122{bottom:208.704564px;}
.yc7_c01122{bottom:217.485243px;}
.yc6_c01122{bottom:220.306347px;}
.yc5_c01122{bottom:221.801100px;}
.yc3_c01122{bottom:223.611437px;}
.yc4_c01122{bottom:224.145000px;}
.yc2_c01122{bottom:226.856015px;}
.yc1_c01122{bottom:228.430106px;}
.yc0_c01122{bottom:230.968896px;}
.ybf_c01122{bottom:233.905494px;}
.ybe_c01122{bottom:235.167429px;}
.ybd_c01122{bottom:238.032905px;}
.ybc_c01122{bottom:239.224500px;}
.ybb_c01122{bottom:259.887132px;}
.yba_c01122{bottom:267.148848px;}
.yb9_c01122{bottom:268.029576px;}
.yb8_c01122{bottom:270.001734px;}
.yb7_c01122{bottom:270.915270px;}
.yb6_c01122{bottom:272.023533px;}
.yb5_c01122{bottom:273.772506px;}
.yb4_c01122{bottom:275.252124px;}
.yb3_c01122{bottom:298.871379px;}
.yb2_c01122{bottom:299.721774px;}
.yb1_c01122{bottom:302.615418px;}
.yb0_c01122{bottom:304.034082px;}
.yaf_c01122{bottom:305.405712px;}
.yae_c01122{bottom:307.186842px;}
.yad_c01122{bottom:308.619000px;}
.yac_c01122{bottom:323.645951px;}
.ya9_c01122{bottom:324.600194px;}
.ya8_c01122{bottom:327.703545px;}
.yab_c01122{bottom:328.270323px;}
.ya7_c01122{bottom:332.268259px;}
.yaa_c01122{bottom:332.953578px;}
.ya6_c01122{bottom:334.084908px;}
.ya5_c01122{bottom:334.972968px;}
.ya4_c01122{bottom:337.246500px;}
.ya3_c01122{bottom:338.588063px;}
.ya2_c01122{bottom:341.023611px;}
.ya1_c01122{bottom:343.372287px;}
.ya0_c01122{bottom:344.297591px;}
.y9f_c01122{bottom:346.353613px;}
.y9e_c01122{bottom:347.493000px;}
.y9d_c01122{bottom:367.025100px;}
.y9c_c01122{bottom:369.328275px;}
.y9a_c01122{bottom:370.783200px;}
.y99_c01122{bottom:372.180525px;}
.y98_c01122{bottom:374.672700px;}
.y9b_c01122{bottom:375.601312px;}
.y97_c01122{bottom:376.326937px;}
.y96_c01122{bottom:377.146987px;}
.y95_c01122{bottom:379.087500px;}
.y94_c01122{bottom:400.547169px;}
.y93_c01122{bottom:401.574121px;}
.y92_c01122{bottom:402.607537px;}
.y91_c01122{bottom:403.643371px;}
.y90_c01122{bottom:405.371451px;}
.y8f_c01122{bottom:406.719672px;}
.y8e_c01122{bottom:408.092492px;}
.y8d_c01122{bottom:410.517839px;}
.y8c_c01122{bottom:413.610832px;}
.y8b_c01122{bottom:415.971870px;}
.y8a_c01122{bottom:418.063347px;}
.y89_c01122{bottom:419.311500px;}
.y88_c01122{bottom:449.685000px;}
.y87_c01122{bottom:468.872232px;}
.y86_c01122{bottom:471.547080px;}
.y85_c01122{bottom:472.667958px;}
.y84_c01122{bottom:473.797404px;}
.y83_c01122{bottom:477.938961px;}
.y82_c01122{bottom:479.064633px;}
.y81_c01122{bottom:482.447157px;}
.y80_c01122{bottom:483.963183px;}
.y7f_c01122{bottom:486.231204px;}
.y7e_c01122{bottom:489.176913px;}
.y7d_c01122{bottom:490.591500px;}
.y7c_c01122{bottom:516.505905px;}
.y7b_c01122{bottom:518.237685px;}
.y7a_c01122{bottom:520.624200px;}
.y79_c01122{bottom:521.635800px;}
.y78_c01122{bottom:542.313270px;}
.y77_c01122{bottom:543.326760px;}
.y76_c01122{bottom:544.988700px;}
.y75_c01122{bottom:546.315300px;}
.y74_c01122{bottom:549.688410px;}
.y73_c01122{bottom:550.269000px;}
.y71_c01122{bottom:551.798224px;}
.y72_c01122{bottom:551.974360px;}
.y70_c01122{bottom:555.772836px;}
.y6f_c01122{bottom:557.097108px;}
.y6e_c01122{bottom:559.078752px;}
.y6d_c01122{bottom:560.363541px;}
.y6c_c01122{bottom:561.409122px;}
.y6b_c01122{bottom:582.700500px;}
.y8_c01122{bottom:583.142703px;}
.y7_c01122{bottom:584.937496px;}
.y6_c01122{bottom:585.900633px;}
.y5_c01122{bottom:586.956333px;}
.y4_c01122{bottom:588.229900px;}
.y3_c01122{bottom:590.789731px;}
.y2_c01122{bottom:593.049999px;}
.y1_c01122{bottom:595.087500px;}
.y64_c01122{bottom:627.081000px;}
.y63_c01122{bottom:646.073325px;}
.y62_c01122{bottom:648.051255px;}
.y61_c01122{bottom:651.075075px;}
.y60_c01122{bottom:652.387635px;}
.y5f_c01122{bottom:656.366085px;}
.y5e_c01122{bottom:658.350675px;}
.y5d_c01122{bottom:661.362210px;}
.y5c_c01122{bottom:664.501410px;}
.y5b_c01122{bottom:665.554500px;}
.y5a_c01122{bottom:696.708000px;}
.y59_c01122{bottom:718.771837px;}
.y58_c01122{bottom:720.183712px;}
.y57_c01122{bottom:722.525775px;}
.y56_c01122{bottom:723.847012px;}
.y55_c01122{bottom:724.843387px;}
.y54_c01122{bottom:728.448975px;}
.y53_c01122{bottom:729.825225px;}
.y52_c01122{bottom:731.159850px;}
.y6a_c01122{bottom:732.216393px;}
.y69_c01122{bottom:732.828834px;}
.y68_c01122{bottom:734.604462px;}
.y67_c01122{bottom:735.140061px;}
.y66_c01122{bottom:735.754500px;}
.y51_c01122{bottom:753.053175px;}
.y50_c01122{bottom:755.342550px;}
.y4f_c01122{bottom:758.119650px;}
.y4e_c01122{bottom:760.339725px;}
.y4d_c01122{bottom:761.184712px;}
.y4c_c01122{bottom:763.925887px;}
.y4b_c01122{bottom:764.919000px;}
.y4a_c01122{bottom:765.824868px;}
.y49_c01122{bottom:767.189688px;}
.y48_c01122{bottom:768.339924px;}
.y47_c01122{bottom:768.954624px;}
.y65_c01122{bottom:775.710000px;}
.y46_c01122{bottom:793.084332px;}
.y45_c01122{bottom:795.100200px;}
.y44_c01122{bottom:796.524780px;}
.y43_c01122{bottom:798.806736px;}
.y42_c01122{bottom:801.446820px;}
.y41_c01122{bottom:802.309920px;}
.y40_c01122{bottom:805.158840px;}
.y3f_c01122{bottom:806.220744px;}
.y38_c01122{bottom:811.620000px;}
.y3e_c01122{bottom:825.822744px;}
.y3d_c01122{bottom:828.108000px;}
.y3c_c01122{bottom:828.973257px;}
.y3b_c01122{bottom:830.028156px;}
.y3a_c01122{bottom:831.073894px;}
.y39_c01122{bottom:832.419000px;}
.y37_c01122{bottom:833.445942px;}
.y36_c01122{bottom:834.410094px;}
.y35_c01122{bottom:836.043526px;}
.y34_c01122{bottom:837.892608px;}
.y33_c01122{bottom:838.339026px;}
.y32_c01122{bottom:839.763802px;}
.y31_c01122{bottom:841.596000px;}
.y30_c01122{bottom:869.708740px;}
.y2f_c01122{bottom:895.978251px;}
.y2e_c01122{bottom:897.083685px;}
.y2d_c01122{bottom:898.934787px;}
.y2c_c01122{bottom:900.034826px;}
.y2b_c01122{bottom:901.130459px;}
.y2a_c01122{bottom:903.670798px;}
.y29_c01122{bottom:905.863500px;}
.y28_c01122{bottom:906.032370px;}
.y27_c01122{bottom:908.517180px;}
.y26_c01122{bottom:909.402810px;}
.y25_c01122{bottom:911.368770px;}
.y24_c01122{bottom:913.146000px;}
.y23_c01122{bottom:962.842500px;}
.y22_c01122{bottom:976.600500px;}
.y21_c01122{bottom:1028.083941px;}
.y20_c01122{bottom:1028.868399px;}
.y1f_c01122{bottom:1029.597571px;}
.y1e_c01122{bottom:1031.278634px;}
.y1d_c01122{bottom:1032.426219px;}
.y1c_c01122{bottom:1032.981035px;}
.y1b_c01122{bottom:1033.353435px;}
.y1a_c01122{bottom:1034.096155px;}
.y19_c01122{bottom:1057.918973px;}
.y18_c01122{bottom:1058.786370px;}
.y17_c01122{bottom:1060.070580px;}
.y16_c01122{bottom:1060.696412px;}
.y15_c01122{bottom:1062.821115px;}
.y14_c01122{bottom:1063.656193px;}
.y13_c01122{bottom:1065.525309px;}
.y12_c01122{bottom:1067.002977px;}
.y11_c01122{bottom:1067.854500px;}
.y10_c01122{bottom:1118.347500px;}
.yf_c01122{bottom:1154.467632px;}
.ye_c01122{bottom:1154.953956px;}
.yd_c01122{bottom:1158.843000px;}
.yc_c01122{bottom:1170.405063px;}
.yb_c01122{bottom:1171.247190px;}
.ya_c01122{bottom:1174.242000px;}
.y9_c01122{bottom:1207.045500px;}
.h1b_c01122{height:17.993276px;}
.h11_c01122{height:18.002304px;}
.h21_c01122{height:18.005624px;}
.ha_c01122{height:30.000000px;}
.h5_c01122{height:30.008639px;}
.h24_c01122{height:35.994276px;}
.hf_c01122{height:36.000000px;}
.h2b_c01122{height:36.008711px;}
.h29_c01122{height:36.012166px;}
.h17_c01122{height:42.000000px;}
.h26_c01122{height:42.014194px;}
.h14_c01122{height:48.014998px;}
.hc_c01122{height:59.972694px;}
.h15_c01122{height:60.000000px;}
.h19_c01122{height:65.975344px;}
.h23_c01122{height:65.989505px;}
.h1e_c01122{height:66.000000px;}
.h7_c01122{height:66.011912px;}
.hb_c01122{height:66.013199px;}
.h2c_c01122{height:66.019005px;}
.h20_c01122{height:66.020622px;}
.h1c_c01122{height:66.029693px;}
.h10_c01122{height:66.031705px;}
.h1d_c01122{height:71.969646px;}
.h1a_c01122{height:71.973103px;}
.h2e_c01122{height:71.982790px;}
.h9_c01122{height:72.000000px;}
.h12_c01122{height:72.009215px;}
.h8_c01122{height:72.012995px;}
.he_c01122{height:72.015874px;}
.h2a_c01122{height:72.017422px;}
.h2_c01122{height:72.019041px;}
.h13_c01122{height:72.022496px;}
.h25_c01122{height:72.024332px;}
.h22_c01122{height:72.026239px;}
.h27_c01122{height:72.030270px;}
.h16_c01122{height:72.032393px;}
.h1f_c01122{height:72.034588px;}
.h2d_c01122{height:77.990834px;}
.h4_c01122{height:78.026360px;}
.h3_c01122{height:84.000000px;}
.h18_c01122{height:84.013607px;}
.h6_c01122{height:84.020326px;}
.hd_c01122{height:95.956310px;}
.h28_c01122{height:144.048664px;}
.h0_c01122{height:1246.320000px;}
.h1_c01122{height:1246.500000px;}
.w1_c01122{width:912.750000px;}
.w0_c01122{width:912.870000px;}
.x0_c01122{left:0.000000px;}
.x1_c01122{left:80.971500px;}
.x31_c01122{left:86.640000px;}
.x25_c01122{left:87.733500px;}
.x65_c01122{left:93.328451px;}
.x5f_c01122{left:97.261500px;}
.x37_c01122{left:98.820000px;}
.xab_c01122{left:120.331500px;}
.xa3_c01122{left:121.614000px;}
.x8f_c01122{left:123.018000px;}
.x7d_c01122{left:124.951500px;}
.x72_c01122{left:126.565500px;}
.x66_c01122{left:128.070372px;}
.x56_c01122{left:129.732000px;}
.x60_c01122{left:131.397000px;}
.x3e_c01122{left:132.924156px;}
.x1b_c01122{left:136.432382px;}
.xb3_c01122{left:153.538500px;}
.x61_c01122{left:161.152500px;}
.xac_c01122{left:162.246000px;}
.x9d_c01122{left:163.610034px;}
.x57_c01122{left:164.835000px;}
.x73_c01122{left:168.129394px;}
.x2_c01122{left:169.558500px;}
.x67_c01122{left:170.734583px;}
.x32_c01122{left:173.887500px;}
.x26_c01122{left:176.595000px;}
.x1c_c01122{left:180.103535px;}
.xb0_c01122{left:193.806000px;}
.x8c_c01122{left:195.915187px;}
.x88_c01122{left:197.856000px;}
.x1d_c01122{left:201.993861px;}
.x55_c01122{left:205.200000px;}
.x30_c01122{left:207.211154px;}
.x5e_c01122{left:215.190000px;}
.xb1_c01122{left:226.209000px;}
.xad_c01122{left:229.183500px;}
.x7e_c01122{left:232.681500px;}
.x13_c01122{left:234.643500px;}
.x68_c01122{left:236.539059px;}
.x33_c01122{left:241.734000px;}
.x6a_c01122{left:243.267782px;}
.x70_c01122{left:244.996890px;}
.xb4_c01122{left:247.052392px;}
.x44_c01122{left:249.770724px;}
.x9e_c01122{left:251.084184px;}
.x99_c01122{left:252.102000px;}
.x74_c01122{left:254.681256px;}
.x62_c01122{left:259.798500px;}
.xa4_c01122{left:261.513000px;}
.x34_c01122{left:262.992000px;}
.x3_c01122{left:267.831000px;}
.x58_c01122{left:269.475000px;}
.x27_c01122{left:274.893000px;}
.xc_c01122{left:276.841500px;}
.xf_c01122{left:280.117500px;}
.xa9_c01122{left:282.376500px;}
.x3f_c01122{left:283.389108px;}
.xb5_c01122{left:290.756145px;}
.x63_c01122{left:293.823000px;}
.x1e_c01122{left:302.176680px;}
.x4d_c01122{left:304.494263px;}
.x9f_c01122{left:306.468303px;}
.x7f_c01122{left:308.844000px;}
.xae_c01122{left:314.872500px;}
.x40_c01122{left:316.608804px;}
.x28_c01122{left:319.174500px;}
.x75_c01122{left:321.321050px;}
.xb2_c01122{left:326.434500px;}
.x22_c01122{left:331.830000px;}
.x12_c01122{left:338.229000px;}
.x45_c01122{left:340.792188px;}
.x46_c01122{left:344.176500px;}
.x4e_c01122{left:348.993713px;}
.x35_c01122{left:351.043500px;}
.xa0_c01122{left:352.111401px;}
.x14_c01122{left:357.232500px;}
.xb6_c01122{left:359.297535px;}
.x90_c01122{left:362.625000px;}
.x76_c01122{left:365.865460px;}
.x59_c01122{left:369.859500px;}
.x9a_c01122{left:373.362000px;}
.x89_c01122{left:374.448000px;}
.x23_c01122{left:376.920000px;}
.x4_c01122{left:379.128000px;}
.x9_c01122{left:380.160000px;}
.x47_c01122{left:383.901000px;}
.xd_c01122{left:392.026500px;}
.x24_c01122{left:393.660000px;}
.x4f_c01122{left:394.857975px;}
.x1f_c01122{left:401.078442px;}
.xa_c01122{left:403.110000px;}
.xa5_c01122{left:406.290000px;}
.x80_c01122{left:408.618000px;}
.x69_c01122{left:412.516962px;}
.x71_c01122{left:416.554215px;}
.x41_c01122{left:418.129056px;}
.x8d_c01122{left:419.939887px;}
.xe_c01122{left:424.416000px;}
.x36_c01122{left:428.826000px;}
.x5_c01122{left:434.500500px;}
.x5a_c01122{left:436.012500px;}
.x10_c01122{left:442.161000px;}
.x20_c01122{left:443.957567px;}
.xb_c01122{left:446.580000px;}
.xaa_c01122{left:449.608500px;}
.xa1_c01122{left:450.709767px;}
.x91_c01122{left:452.830500px;}
.x15_c01122{left:455.607000px;}
.x96_c01122{left:459.361593px;}
.x11_c01122{left:462.424500px;}
.x77_c01122{left:465.251974px;}
.xb7_c01122{left:469.017705px;}
.x8a_c01122{left:474.135000px;}
.x29_c01122{left:475.330500px;}
.x6_c01122{left:480.400500px;}
.x3c_c01122{left:481.597500px;}
.x92_c01122{left:484.780500px;}
.x81_c01122{left:486.855000px;}
.x21_c01122{left:490.141334px;}
.xa7_c01122{left:491.542500px;}
.x48_c01122{left:493.548000px;}
.xa2_c01122{left:494.744631px;}
.x78_c01122{left:498.326867px;}
.x16_c01122{left:499.558500px;}
.x8e_c01122{left:502.220738px;}
.xaf_c01122{left:504.792000px;}
.x42_c01122{left:505.893516px;}
.x6b_c01122{left:510.199500px;}
.x50_c01122{left:515.066475px;}
.x38_c01122{left:518.098500px;}
.x7_c01122{left:522.276000px;}
.x49_c01122{left:527.347500px;}
.x8b_c01122{left:530.028000px;}
.x82_c01122{left:531.139500px;}
.x93_c01122{left:540.177048px;}
.x2a_c01122{left:541.709554px;}
.x51_c01122{left:548.257313px;}
.x39_c01122{left:561.489000px;}
.x5b_c01122{left:568.627500px;}
.x9b_c01122{left:571.927500px;}
.x83_c01122{left:574.630500px;}
.xb8_c01122{left:579.049563px;}
.x52_c01122{left:592.281300px;}
.x3a_c01122{left:595.222500px;}
.x97_c01122{left:596.916861px;}
.x8_c01122{left:600.310500px;}
.x94_c01122{left:606.079580px;}
.x17_c01122{left:611.385000px;}
.x4a_c01122{left:616.150500px;}
.x2b_c01122{left:618.612575px;}
.x79_c01122{left:620.015556px;}
.x6c_c01122{left:622.636500px;}
.x3d_c01122{left:624.426000px;}
.xba_c01122{left:626.454969px;}
.x3b_c01122{left:629.251500px;}
.x84_c01122{left:630.375000px;}
.x64_c01122{left:633.255000px;}
.x43_c01122{left:638.212848px;}
.x18_c01122{left:644.323500px;}
.x2c_c01122{left:651.780373px;}
.x7a_c01122{left:653.201337px;}
.xa8_c01122{left:657.537000px;}
.xa6_c01122{left:659.995500px;}
.x85_c01122{left:663.789000px;}
.x6d_c01122{left:666.856500px;}
.x53_c01122{left:670.354050px;}
.x2d_c01122{left:685.081539px;}
.x7b_c01122{left:686.135370px;}
.x86_c01122{left:697.125000px;}
.x19_c01122{left:711.913500px;}
.x5c_c01122{left:713.173500px;}
.x54_c01122{left:717.403163px;}
.x6e_c01122{left:722.254500px;}
.x4b_c01122{left:727.234500px;}
.x87_c01122{left:730.252500px;}
.x98_c01122{left:732.781391px;}
.x2e_c01122{left:741.119445px;}
.x6f_c01122{left:756.037500px;}
.x1a_c01122{left:757.566000px;}
.xbb_c01122{left:759.012279px;}
.x7c_c01122{left:764.728698px;}
.xb9_c01122{left:769.057865px;}
.x2f_c01122{left:774.583947px;}
.x5d_c01122{left:779.104500px;}
.x95_c01122{left:792.918554px;}
.x4c_c01122{left:818.809500px;}
.x9c_c01122{left:858.825126px;}
@media print{
.v0_c01122{vertical-align:0.000000pt;}
.ls0_c01122{letter-spacing:0.000000pt;}
.ws0_c01122{word-spacing:0.000000pt;}
.fs19_c01122{font-size:15.994023pt;}
.fsf_c01122{font-size:16.002048pt;}
.fs1f_c01122{font-size:16.004999pt;}
.fs8_c01122{font-size:26.666667pt;}
.fs3_c01122{font-size:26.674346pt;}
.fs22_c01122{font-size:31.994912pt;}
.fsd_c01122{font-size:32.000000pt;}
.fs29_c01122{font-size:32.007743pt;}
.fs27_c01122{font-size:32.010814pt;}
.fs15_c01122{font-size:37.333333pt;}
.fs24_c01122{font-size:37.345950pt;}
.fs12_c01122{font-size:42.679998pt;}
.fsa_c01122{font-size:53.309061pt;}
.fs13_c01122{font-size:53.333333pt;}
.fs17_c01122{font-size:58.644751pt;}
.fs21_c01122{font-size:58.657338pt;}
.fs1c_c01122{font-size:58.666667pt;}
.fs5_c01122{font-size:58.677255pt;}
.fs9_c01122{font-size:58.678399pt;}
.fs2a_c01122{font-size:58.683560pt;}
.fs1e_c01122{font-size:58.684997pt;}
.fs1a_c01122{font-size:58.693061pt;}
.fse_c01122{font-size:58.694849pt;}
.fs1b_c01122{font-size:63.973018pt;}
.fs18_c01122{font-size:63.976092pt;}
.fs2c_c01122{font-size:63.984702pt;}
.fs7_c01122{font-size:64.000000pt;}
.fs10_c01122{font-size:64.008191pt;}
.fs6_c01122{font-size:64.011551pt;}
.fsc_c01122{font-size:64.014110pt;}
.fs28_c01122{font-size:64.015486pt;}
.fs0_c01122{font-size:64.016926pt;}
.fs11_c01122{font-size:64.019997pt;}
.fs23_c01122{font-size:64.021628pt;}
.fs20_c01122{font-size:64.023324pt;}
.fs25_c01122{font-size:64.026906pt;}
.fs14_c01122{font-size:64.028794pt;}
.fs1d_c01122{font-size:64.030745pt;}
.fs2b_c01122{font-size:69.325186pt;}
.fs2_c01122{font-size:69.356764pt;}
.fs1_c01122{font-size:74.666667pt;}
.fs16_c01122{font-size:74.678762pt;}
.fs4_c01122{font-size:74.684734pt;}
.fsb_c01122{font-size:85.294498pt;}
.fs26_c01122{font-size:128.043257pt;}
.y0_c01122{bottom:0.000000pt;}
.ye4_c01122{bottom:66.290941pt;}
.ye3_c01122{bottom:71.735373pt;}
.ye2_c01122{bottom:73.391685pt;}
.ye1_c01122{bottom:77.503653pt;}
.ye0_c01122{bottom:81.603973pt;}
.ydf_c01122{bottom:84.165413pt;}
.yde_c01122{bottom:85.798653pt;}
.ydd_c01122{bottom:89.293333pt;}
.ydc_c01122{bottom:113.577259pt;}
.ydb_c01122{bottom:115.715403pt;}
.yda_c01122{bottom:116.406667pt;}
.ye8_c01122{bottom:132.611005pt;}
.ye7_c01122{bottom:137.210925pt;}
.ye6_c01122{bottom:138.427153pt;}
.ye5_c01122{bottom:139.933333pt;}
.yd9_c01122{bottom:141.910387pt;}
.yd8_c01122{bottom:143.138147pt;}
.yd7_c01122{bottom:144.873227pt;}
.yd6_c01122{bottom:146.974907pt;}
.yd5_c01122{bottom:149.259947pt;}
.yd4_c01122{bottom:151.044947pt;}
.yd3_c01122{bottom:152.162667pt;}
.yd1_c01122{bottom:166.846112pt;}
.yd2_c01122{bottom:166.846181pt;}
.yd0_c01122{bottom:168.189787pt;}
.ycf_c01122{bottom:171.394776pt;}
.yce_c01122{bottom:172.050024pt;}
.ycd_c01122{bottom:173.332859pt;}
.ycc_c01122{bottom:174.833757pt;}
.ycb_c01122{bottom:176.603173pt;}
.yca_c01122{bottom:178.973659pt;}
.yc9_c01122{bottom:179.762667pt;}
.yc8_c01122{bottom:185.515168pt;}
.yc7_c01122{bottom:193.320216pt;}
.yc6_c01122{bottom:195.827864pt;}
.yc5_c01122{bottom:197.156533pt;}
.yc3_c01122{bottom:198.765721pt;}
.yc4_c01122{bottom:199.240000pt;}
.yc2_c01122{bottom:201.649791pt;}
.yc1_c01122{bottom:203.048983pt;}
.yc0_c01122{bottom:205.305685pt;}
.ybf_c01122{bottom:207.915995pt;}
.ybe_c01122{bottom:209.037715pt;}
.ybd_c01122{bottom:211.584804pt;}
.ybc_c01122{bottom:212.644000pt;}
.ybb_c01122{bottom:231.010784pt;}
.yba_c01122{bottom:237.465643pt;}
.yb9_c01122{bottom:238.248512pt;}
.yb8_c01122{bottom:240.001541pt;}
.yb7_c01122{bottom:240.813573pt;}
.yb6_c01122{bottom:241.798696pt;}
.yb5_c01122{bottom:243.353339pt;}
.yb4_c01122{bottom:244.668555pt;}
.yb3_c01122{bottom:265.663448pt;}
.yb2_c01122{bottom:266.419355pt;}
.yb1_c01122{bottom:268.991483pt;}
.yb0_c01122{bottom:270.252517pt;}
.yaf_c01122{bottom:271.471744pt;}
.yae_c01122{bottom:273.054971pt;}
.yad_c01122{bottom:274.328000pt;}
.yac_c01122{bottom:287.685289pt;}
.ya9_c01122{bottom:288.533505pt;}
.ya8_c01122{bottom:291.292040pt;}
.yab_c01122{bottom:291.795843pt;}
.ya7_c01122{bottom:295.349564pt;}
.yaa_c01122{bottom:295.958736pt;}
.ya6_c01122{bottom:296.964363pt;}
.ya5_c01122{bottom:297.753749pt;}
.ya4_c01122{bottom:299.774667pt;}
.ya3_c01122{bottom:300.967167pt;}
.ya2_c01122{bottom:303.132099pt;}
.ya1_c01122{bottom:305.219811pt;}
.ya0_c01122{bottom:306.042303pt;}
.y9f_c01122{bottom:307.869879pt;}
.y9e_c01122{bottom:308.882667pt;}
.y9d_c01122{bottom:326.244533pt;}
.y9c_c01122{bottom:328.291800pt;}
.y9a_c01122{bottom:329.585067pt;}
.y99_c01122{bottom:330.827133pt;}
.y98_c01122{bottom:333.042400pt;}
.y9b_c01122{bottom:333.867833pt;}
.y97_c01122{bottom:334.512833pt;}
.y96_c01122{bottom:335.241767pt;}
.y95_c01122{bottom:336.966667pt;}
.y94_c01122{bottom:356.041928pt;}
.y93_c01122{bottom:356.954775pt;}
.y92_c01122{bottom:357.873367pt;}
.y91_c01122{bottom:358.794108pt;}
.y90_c01122{bottom:360.330179pt;}
.y8f_c01122{bottom:361.528597pt;}
.y8e_c01122{bottom:362.748881pt;}
.y8d_c01122{bottom:364.904745pt;}
.y8c_c01122{bottom:367.654073pt;}
.y8b_c01122{bottom:369.752773pt;}
.y8a_c01122{bottom:371.611864pt;}
.y89_c01122{bottom:372.721333pt;}
.y88_c01122{bottom:399.720000pt;}
.y87_c01122{bottom:416.775317pt;}
.y86_c01122{bottom:419.152960pt;}
.y85_c01122{bottom:420.149296pt;}
.y84_c01122{bottom:421.153248pt;}
.y83_c01122{bottom:424.834632pt;}
.y82_c01122{bottom:425.835229pt;}
.y81_c01122{bottom:428.841917pt;}
.y80_c01122{bottom:430.189496pt;}
.y7f_c01122{bottom:432.205515pt;}
.y7e_c01122{bottom:434.823923pt;}
.y7d_c01122{bottom:436.081333pt;}
.y7c_c01122{bottom:459.116360pt;}
.y7b_c01122{bottom:460.655720pt;}
.y7a_c01122{bottom:462.777067pt;}
.y79_c01122{bottom:463.676267pt;}
.y78_c01122{bottom:482.056240pt;}
.y77_c01122{bottom:482.957120pt;}
.y76_c01122{bottom:484.434400pt;}
.y75_c01122{bottom:485.613600pt;}
.y74_c01122{bottom:488.611920pt;}
.y73_c01122{bottom:489.128000pt;}
.y71_c01122{bottom:490.487311pt;}
.y72_c01122{bottom:490.643876pt;}
.y70_c01122{bottom:494.020299pt;}
.y6f_c01122{bottom:495.197429pt;}
.y6e_c01122{bottom:496.958891pt;}
.y6d_c01122{bottom:498.100925pt;}
.y6c_c01122{bottom:499.030331pt;}
.y6b_c01122{bottom:517.956000pt;}
.y8_c01122{bottom:518.349069pt;}
.y7_c01122{bottom:519.944441pt;}
.y6_c01122{bottom:520.800563pt;}
.y5_c01122{bottom:521.738963pt;}
.y4_c01122{bottom:522.871023pt;}
.y3_c01122{bottom:525.146428pt;}
.y2_c01122{bottom:527.155555pt;}
.y1_c01122{bottom:528.966667pt;}
.y64_c01122{bottom:557.405333pt;}
.y63_c01122{bottom:574.287400pt;}
.y62_c01122{bottom:576.045560pt;}
.y61_c01122{bottom:578.733400pt;}
.y60_c01122{bottom:579.900120pt;}
.y5f_c01122{bottom:583.436520pt;}
.y5e_c01122{bottom:585.200600pt;}
.y5d_c01122{bottom:587.877520pt;}
.y5c_c01122{bottom:590.667920pt;}
.y5b_c01122{bottom:591.604000pt;}
.y5a_c01122{bottom:619.296000pt;}
.y59_c01122{bottom:638.908300pt;}
.y58_c01122{bottom:640.163300pt;}
.y57_c01122{bottom:642.245133pt;}
.y56_c01122{bottom:643.419567pt;}
.y55_c01122{bottom:644.305233pt;}
.y54_c01122{bottom:647.510200pt;}
.y53_c01122{bottom:648.733533pt;}
.y52_c01122{bottom:649.919867pt;}
.y6a_c01122{bottom:650.859016pt;}
.y69_c01122{bottom:651.403408pt;}
.y68_c01122{bottom:652.981744pt;}
.y67_c01122{bottom:653.457832pt;}
.y66_c01122{bottom:654.004000pt;}
.y51_c01122{bottom:669.380600pt;}
.y50_c01122{bottom:671.415600pt;}
.y4f_c01122{bottom:673.884133pt;}
.y4e_c01122{bottom:675.857533pt;}
.y4d_c01122{bottom:676.608633pt;}
.y4c_c01122{bottom:679.045233pt;}
.y4b_c01122{bottom:679.928000pt;}
.y4a_c01122{bottom:680.733216pt;}
.y49_c01122{bottom:681.946389pt;}
.y48_c01122{bottom:682.968821pt;}
.y47_c01122{bottom:683.515221pt;}
.y65_c01122{bottom:689.520000pt;}
.y46_c01122{bottom:704.963851pt;}
.y45_c01122{bottom:706.755733pt;}
.y44_c01122{bottom:708.022027pt;}
.y43_c01122{bottom:710.050432pt;}
.y42_c01122{bottom:712.397173pt;}
.y41_c01122{bottom:713.164373pt;}
.y40_c01122{bottom:715.696747pt;}
.y3f_c01122{bottom:716.640661pt;}
.y38_c01122{bottom:721.440000pt;}
.y3e_c01122{bottom:734.064661pt;}
.y3d_c01122{bottom:736.096000pt;}
.y3c_c01122{bottom:736.865117pt;}
.y3b_c01122{bottom:737.802805pt;}
.y3a_c01122{bottom:738.732351pt;}
.y39_c01122{bottom:739.928000pt;}
.y37_c01122{bottom:740.840837pt;}
.y36_c01122{bottom:741.697861pt;}
.y35_c01122{bottom:743.149801pt;}
.y34_c01122{bottom:744.793429pt;}
.y33_c01122{bottom:745.190245pt;}
.y32_c01122{bottom:746.456713pt;}
.y31_c01122{bottom:748.085333pt;}
.y30_c01122{bottom:773.074436pt;}
.y2f_c01122{bottom:796.425112pt;}
.y2e_c01122{bottom:797.407720pt;}
.y2d_c01122{bottom:799.053144pt;}
.y2c_c01122{bottom:800.030956pt;}
.y2b_c01122{bottom:801.004852pt;}
.y2a_c01122{bottom:803.262932pt;}
.y29_c01122{bottom:805.212000pt;}
.y28_c01122{bottom:805.362107pt;}
.y27_c01122{bottom:807.570827pt;}
.y26_c01122{bottom:808.358053pt;}
.y25_c01122{bottom:810.105573pt;}
.y24_c01122{bottom:811.685333pt;}
.y23_c01122{bottom:855.860000pt;}
.y22_c01122{bottom:868.089333pt;}
.y21_c01122{bottom:913.852392pt;}
.y20_c01122{bottom:914.549688pt;}
.y1f_c01122{bottom:915.197841pt;}
.y1e_c01122{bottom:916.692119pt;}
.y1d_c01122{bottom:917.712195pt;}
.y1c_c01122{bottom:918.205364pt;}
.y1b_c01122{bottom:918.536387pt;}
.y1a_c01122{bottom:919.196583pt;}
.y19_c01122{bottom:940.372420pt;}
.y18_c01122{bottom:941.143440pt;}
.y17_c01122{bottom:942.284960pt;}
.y16_c01122{bottom:942.841255pt;}
.y15_c01122{bottom:944.729880pt;}
.y14_c01122{bottom:945.472172pt;}
.y13_c01122{bottom:947.133608pt;}
.y12_c01122{bottom:948.447091pt;}
.y11_c01122{bottom:949.204000pt;}
.y10_c01122{bottom:994.086667pt;}
.yf_c01122{bottom:1026.193451pt;}
.ye_c01122{bottom:1026.625739pt;}
.yd_c01122{bottom:1030.082667pt;}
.yc_c01122{bottom:1040.360056pt;}
.yb_c01122{bottom:1041.108613pt;}
.ya_c01122{bottom:1043.770667pt;}
.y9_c01122{bottom:1072.929333pt;}
.h1b_c01122{height:15.994023pt;}
.h11_c01122{height:16.002048pt;}
.h21_c01122{height:16.004999pt;}
.ha_c01122{height:26.666667pt;}
.h5_c01122{height:26.674346pt;}
.h24_c01122{height:31.994912pt;}
.hf_c01122{height:32.000000pt;}
.h2b_c01122{height:32.007743pt;}
.h29_c01122{height:32.010814pt;}
.h17_c01122{height:37.333333pt;}
.h26_c01122{height:37.345950pt;}
.h14_c01122{height:42.679998pt;}
.hc_c01122{height:53.309061pt;}
.h15_c01122{height:53.333333pt;}
.h19_c01122{height:58.644751pt;}
.h23_c01122{height:58.657338pt;}
.h1e_c01122{height:58.666667pt;}
.h7_c01122{height:58.677255pt;}
.hb_c01122{height:58.678399pt;}
.h2c_c01122{height:58.683560pt;}
.h20_c01122{height:58.684997pt;}
.h1c_c01122{height:58.693061pt;}
.h10_c01122{height:58.694849pt;}
.h1d_c01122{height:63.973018pt;}
.h1a_c01122{height:63.976092pt;}
.h2e_c01122{height:63.984702pt;}
.h9_c01122{height:64.000000pt;}
.h12_c01122{height:64.008191pt;}
.h8_c01122{height:64.011551pt;}
.he_c01122{height:64.014110pt;}
.h2a_c01122{height:64.015486pt;}
.h2_c01122{height:64.016926pt;}
.h13_c01122{height:64.019997pt;}
.h25_c01122{height:64.021628pt;}
.h22_c01122{height:64.023324pt;}
.h27_c01122{height:64.026906pt;}
.h16_c01122{height:64.028794pt;}
.h1f_c01122{height:64.030745pt;}
.h2d_c01122{height:69.325186pt;}
.h4_c01122{height:69.356764pt;}
.h3_c01122{height:74.666667pt;}
.h18_c01122{height:74.678762pt;}
.h6_c01122{height:74.684734pt;}
.hd_c01122{height:85.294498pt;}
.h28_c01122{height:128.043257pt;}
.h0_c01122{height:1107.840000pt;}
.h1_c01122{height:1108.000000pt;}
.w1_c01122{width:811.333333pt;}
.w0_c01122{width:811.440000pt;}
.x0_c01122{left:0.000000pt;}
.x1_c01122{left:71.974667pt;}
.x31_c01122{left:77.013333pt;}
.x25_c01122{left:77.985333pt;}
.x65_c01122{left:82.958623pt;}
.x5f_c01122{left:86.454667pt;}
.x37_c01122{left:87.840000pt;}
.xab_c01122{left:106.961333pt;}
.xa3_c01122{left:108.101333pt;}
.x8f_c01122{left:109.349333pt;}
.x7d_c01122{left:111.068000pt;}
.x72_c01122{left:112.502667pt;}
.x66_c01122{left:113.840331pt;}
.x56_c01122{left:115.317333pt;}
.x60_c01122{left:116.797333pt;}
.x3e_c01122{left:118.154805pt;}
.x1b_c01122{left:121.273228pt;}
.xb3_c01122{left:136.478667pt;}
.x61_c01122{left:143.246667pt;}
.xac_c01122{left:144.218667pt;}
.x9d_c01122{left:145.431141pt;}
.x57_c01122{left:146.520000pt;}
.x73_c01122{left:149.448351pt;}
.x2_c01122{left:150.718667pt;}
.x67_c01122{left:151.764073pt;}
.x32_c01122{left:154.566667pt;}
.x26_c01122{left:156.973333pt;}
.x1c_c01122{left:160.092031pt;}
.xb0_c01122{left:172.272000pt;}
.x8c_c01122{left:174.146833pt;}
.x88_c01122{left:175.872000pt;}
.x1d_c01122{left:179.550099pt;}
.x55_c01122{left:182.400000pt;}
.x30_c01122{left:184.187692pt;}
.x5e_c01122{left:191.280000pt;}
.xb1_c01122{left:201.074667pt;}
.xad_c01122{left:203.718667pt;}
.x7e_c01122{left:206.828000pt;}
.x13_c01122{left:208.572000pt;}
.x68_c01122{left:210.256941pt;}
.x33_c01122{left:214.874667pt;}
.x6a_c01122{left:216.238028pt;}
.x70_c01122{left:217.775013pt;}
.xb4_c01122{left:219.602127pt;}
.x44_c01122{left:222.018421pt;}
.x9e_c01122{left:223.185941pt;}
.x99_c01122{left:224.090667pt;}
.x74_c01122{left:226.383339pt;}
.x62_c01122{left:230.932000pt;}
.xa4_c01122{left:232.456000pt;}
.x34_c01122{left:233.770667pt;}
.x3_c01122{left:238.072000pt;}
.x58_c01122{left:239.533333pt;}
.x27_c01122{left:244.349333pt;}
.xc_c01122{left:246.081333pt;}
.xf_c01122{left:248.993333pt;}
.xa9_c01122{left:251.001333pt;}
.x3f_c01122{left:251.901429pt;}
.xb5_c01122{left:258.449907pt;}
.x63_c01122{left:261.176000pt;}
.x1e_c01122{left:268.601493pt;}
.x4d_c01122{left:270.661567pt;}
.x9f_c01122{left:272.416269pt;}
.x7f_c01122{left:274.528000pt;}
.xae_c01122{left:279.886667pt;}
.x40_c01122{left:281.430048pt;}
.x28_c01122{left:283.710667pt;}
.x75_c01122{left:285.618711pt;}
.xb2_c01122{left:290.164000pt;}
.x22_c01122{left:294.960000pt;}
.x12_c01122{left:300.648000pt;}
.x45_c01122{left:302.926389pt;}
.x46_c01122{left:305.934667pt;}
.x4e_c01122{left:310.216633pt;}
.x35_c01122{left:312.038667pt;}
.xa0_c01122{left:312.987912pt;}
.x14_c01122{left:317.540000pt;}
.xb6_c01122{left:319.375587pt;}
.x90_c01122{left:322.333333pt;}
.x76_c01122{left:325.213743pt;}
.x59_c01122{left:328.764000pt;}
.x9a_c01122{left:331.877333pt;}
.x89_c01122{left:332.842667pt;}
.x23_c01122{left:335.040000pt;}
.x4_c01122{left:337.002667pt;}
.x9_c01122{left:337.920000pt;}
.x47_c01122{left:341.245333pt;}
.xd_c01122{left:348.468000pt;}
.x24_c01122{left:349.920000pt;}
.x4f_c01122{left:350.984867pt;}
.x1f_c01122{left:356.514171pt;}
.xa_c01122{left:358.320000pt;}
.xa5_c01122{left:361.146667pt;}
.x80_c01122{left:363.216000pt;}
.x69_c01122{left:366.681744pt;}
.x71_c01122{left:370.270413pt;}
.x41_c01122{left:371.670272pt;}
.x8d_c01122{left:373.279900pt;}
.xe_c01122{left:377.258667pt;}
.x36_c01122{left:381.178667pt;}
.x5_c01122{left:386.222667pt;}
.x5a_c01122{left:387.566667pt;}
.x10_c01122{left:393.032000pt;}
.x20_c01122{left:394.628948pt;}
.xb_c01122{left:396.960000pt;}
.xaa_c01122{left:399.652000pt;}
.xa1_c01122{left:400.630904pt;}
.x91_c01122{left:402.516000pt;}
.x15_c01122{left:404.984000pt;}
.x96_c01122{left:408.321416pt;}
.x11_c01122{left:411.044000pt;}
.x77_c01122{left:413.557311pt;}
.xb7_c01122{left:416.904627pt;}
.x8a_c01122{left:421.453333pt;}
.x29_c01122{left:422.516000pt;}
.x6_c01122{left:427.022667pt;}
.x3c_c01122{left:428.086667pt;}
.x92_c01122{left:430.916000pt;}
.x81_c01122{left:432.760000pt;}
.x21_c01122{left:435.681185pt;}
.xa7_c01122{left:436.926667pt;}
.x48_c01122{left:438.709333pt;}
.xa2_c01122{left:439.773005pt;}
.x78_c01122{left:442.957215pt;}
.x16_c01122{left:444.052000pt;}
.x8e_c01122{left:446.418433pt;}
.xaf_c01122{left:448.704000pt;}
.x42_c01122{left:449.683125pt;}
.x6b_c01122{left:453.510667pt;}
.x50_c01122{left:457.836867pt;}
.x38_c01122{left:460.532000pt;}
.x7_c01122{left:464.245333pt;}
.x49_c01122{left:468.753333pt;}
.x8b_c01122{left:471.136000pt;}
.x82_c01122{left:472.124000pt;}
.x93_c01122{left:480.157376pt;}
.x2a_c01122{left:481.519604pt;}
.x51_c01122{left:487.339833pt;}
.x39_c01122{left:499.101333pt;}
.x5b_c01122{left:505.446667pt;}
.x9b_c01122{left:508.380000pt;}
.x83_c01122{left:510.782667pt;}
.xb8_c01122{left:514.710723pt;}
.x52_c01122{left:526.472267pt;}
.x3a_c01122{left:529.086667pt;}
.x97_c01122{left:530.592765pt;}
.x8_c01122{left:533.609333pt;}
.x94_c01122{left:538.737404pt;}
.x17_c01122{left:543.453333pt;}
.x4a_c01122{left:547.689333pt;}
.x2b_c01122{left:549.877844pt;}
.x79_c01122{left:551.124939pt;}
.x6c_c01122{left:553.454667pt;}
.x3d_c01122{left:555.045333pt;}
.xba_c01122{left:556.848861pt;}
.x3b_c01122{left:559.334667pt;}
.x84_c01122{left:560.333333pt;}
.x64_c01122{left:562.893333pt;}
.x43_c01122{left:567.300309pt;}
.x18_c01122{left:572.732000pt;}
.x2c_c01122{left:579.360332pt;}
.x7a_c01122{left:580.623411pt;}
.xa8_c01122{left:584.477333pt;}
.xa6_c01122{left:586.662667pt;}
.x85_c01122{left:590.034667pt;}
.x6d_c01122{left:592.761333pt;}
.x53_c01122{left:595.870267pt;}
.x2d_c01122{left:608.961368pt;}
.x7b_c01122{left:609.898107pt;}
.x86_c01122{left:619.666667pt;}
.x19_c01122{left:632.812000pt;}
.x5c_c01122{left:633.932000pt;}
.x54_c01122{left:637.691700pt;}
.x6e_c01122{left:642.004000pt;}
.x4b_c01122{left:646.430667pt;}
.x87_c01122{left:649.113333pt;}
.x98_c01122{left:651.361236pt;}
.x2e_c01122{left:658.772840pt;}
.x6f_c01122{left:672.033333pt;}
.x1a_c01122{left:673.392000pt;}
.xbb_c01122{left:674.677581pt;}
.x7c_c01122{left:679.758843pt;}
.xb9_c01122{left:683.606991pt;}
.x2f_c01122{left:688.519064pt;}
.x5d_c01122{left:692.537333pt;}
.x95_c01122{left:704.816492pt;}
.x4c_c01122{left:727.830667pt;}
.x9c_c01122{left:763.400112pt;}
}





/* 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_c01123 {
    display:none;
  }
  .loading-indicator_c01123.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01123 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_c01123 { 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_c01123" -> "#page-container .classname_c01123")
 */
.pf_c01123 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01123 { /* 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_c01123.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01123 { /* 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_c01123 { /* 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_c01123 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01123 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01123 {overflow:visible;}
  }
}
.c_c01123 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01123 { /* 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_c01123:after { /* webkit #35443 */
  content: '';
}
.t_c01123:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01123 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 */
}
.__c01123 { /* 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_c01123 { /* info for Javascript */
  display:none;
}
.l_c01123 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01123 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01123 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01123: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_c01123 {
    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_c01123.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01123.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_c01123 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01123{font-family:sans-serif;visibility:hidden;}
.sc__c01123{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01123{-webkit-text-stroke:0px transparent;}
}
.y0_c01123{bottom:0.000000px;}
.h0_c01123{height:1246.320000px;}
.h1_c01123{height:1246.500000px;}
.w0_c01123{width:898.500000px;}
.x0_c01123{left:0.000000px;}
@media print{
.y0_c01123{bottom:0.000000pt;}
.h0_c01123{height:1107.840000pt;}
.h1_c01123{height:1108.000000pt;}
.w0_c01123{width:798.666667pt;}
.x0_c01123{left:0.000000pt;}
}





/* 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_c01124 {
    display:none;
  }
  .loading-indicator_c01124.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01124 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_c01124 { 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_c01124" -> "#page-container .classname_c01124")
 */
.pf_c01124 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01124 { /* 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_c01124.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01124 { /* 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_c01124 { /* 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_c01124 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01124 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01124 {overflow:visible;}
  }
}
.c_c01124 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01124 { /* 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_c01124:after { /* webkit #35443 */
  content: '';
}
.t_c01124:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01124 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 */
}
.__c01124 { /* 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_c01124 { /* info for Javascript */
  display:none;
}
.l_c01124 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01124 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01124 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01124: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_c01124 {
    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_c01124.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01124.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_c01124 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01124{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01124;src:url('chunks/assets/font_cfe63ee56e9e10a97d33a3db.woff2')format("woff");}.ff1_c01124{font-family:ff1_c01124;line-height:1.000000;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;}
.m73_c01124{transform:matrix(0.018749,0.000225,-0.003000,0.249982,0,0);-ms-transform:matrix(0.018749,0.000225,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.018749,0.000225,-0.003000,0.249982,0,0);}
.m6f_c01124{transform:matrix(0.028460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.028460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.028460,0.000000,0.000000,0.250000,0,0);}
.m3e_c01124{transform:matrix(0.069005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.069005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.069005,0.000000,0.000000,0.250000,0,0);}
.m4c_c01124{transform:matrix(0.079975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.079975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.079975,0.000000,0.000000,0.250000,0,0);}
.md_c01124{transform:matrix(0.104815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.104815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.104815,0.000000,0.000000,0.250000,0,0);}
.m3d_c01124{transform:matrix(0.112270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112270,0.000000,0.000000,0.250000,0,0);}
.m38_c01124{transform:matrix(0.134115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134115,0.000000,0.000000,0.250000,0,0);}
.m2f_c01124{transform:matrix(0.146057,0.000876,-0.001500,0.249996,0,0);-ms-transform:matrix(0.146057,0.000876,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.146057,0.000876,-0.001500,0.249996,0,0);}
.m40_c01124{transform:matrix(0.156468,0.000782,-0.001250,0.249997,0,0);-ms-transform:matrix(0.156468,0.000782,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.156468,0.000782,-0.001250,0.249997,0,0);}
.m13_c01124{transform:matrix(0.159100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159100,0.000000,0.000000,0.250000,0,0);}
.m5a_c01124{transform:matrix(0.159183,0.000796,-0.001250,0.249997,0,0);-ms-transform:matrix(0.159183,0.000796,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.159183,0.000796,-0.001250,0.249997,0,0);}
.m2_c01124{transform:matrix(0.159185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159185,0.000000,0.000000,0.250000,0,0);}
.m24_c01124{transform:matrix(0.159605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159605,0.000000,0.000000,0.250000,0,0);}
.m47_c01124{transform:matrix(0.160798,0.000804,-0.001250,0.249997,0,0);-ms-transform:matrix(0.160798,0.000804,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.160798,0.000804,-0.001250,0.249997,0,0);}
.m4f_c01124{transform:matrix(0.161762,0.001618,-0.002500,0.249988,0,0);-ms-transform:matrix(0.161762,0.001618,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.161762,0.001618,-0.002500,0.249988,0,0);}
.m78_c01124{transform:matrix(0.162798,0.001954,-0.003000,0.249982,0,0);-ms-transform:matrix(0.162798,0.001954,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.162798,0.001954,-0.003000,0.249982,0,0);}
.m26_c01124{transform:matrix(0.169350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169350,0.000000,0.000000,0.250000,0,0);}
.m52_c01124{transform:matrix(0.171111,0.001711,-0.002500,0.249988,0,0);-ms-transform:matrix(0.171111,0.001711,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.171111,0.001711,-0.002500,0.249988,0,0);}
.m29_c01124{transform:matrix(0.175040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175040,0.000000,0.000000,0.250000,0,0);}
.m39_c01124{transform:matrix(0.177080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177080,0.000000,0.000000,0.250000,0,0);}
.m2a_c01124{transform:matrix(0.180395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180395,0.000000,0.000000,0.250000,0,0);}
.m23_c01124{transform:matrix(0.189365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189365,0.000000,0.000000,0.250000,0,0);}
.m22_c01124{transform:matrix(0.192600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192600,0.000000,0.000000,0.250000,0,0);}
.m25_c01124{transform:matrix(0.194560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194560,0.000000,0.000000,0.250000,0,0);}
.m14_c01124{transform:matrix(0.194585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194585,0.000000,0.000000,0.250000,0,0);}
.m6b_c01124{transform:matrix(0.195260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195260,0.000000,0.000000,0.250000,0,0);}
.ma_c01124{transform:matrix(0.196295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196295,0.000000,0.000000,0.250000,0,0);}
.m3f_c01124{transform:matrix(0.198155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198155,0.000000,0.000000,0.250000,0,0);}
.m28_c01124{transform:matrix(0.201755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201755,0.000000,0.000000,0.250000,0,0);}
.m75_c01124{transform:matrix(0.201790,0.002421,-0.003000,0.249982,0,0);-ms-transform:matrix(0.201790,0.002421,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.201790,0.002421,-0.003000,0.249982,0,0);}
.m27_c01124{transform:matrix(0.203515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203515,0.000000,0.000000,0.250000,0,0);}
.m50_c01124{transform:matrix(0.204255,0.002043,-0.002500,0.249988,0,0);-ms-transform:matrix(0.204255,0.002043,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.204255,0.002043,-0.002500,0.249988,0,0);}
.m76_c01124{transform:matrix(0.204315,0.002452,-0.003000,0.249982,0,0);-ms-transform:matrix(0.204315,0.002452,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.204315,0.002452,-0.003000,0.249982,0,0);}
.m5b_c01124{transform:matrix(0.206592,0.001033,-0.001250,0.249997,0,0);-ms-transform:matrix(0.206592,0.001033,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.206592,0.001033,-0.001250,0.249997,0,0);}
.m3_c01124{transform:matrix(0.207140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207140,0.000000,0.000000,0.250000,0,0);}
.m30_c01124{transform:matrix(0.207511,0.001245,-0.001500,0.249996,0,0);-ms-transform:matrix(0.207511,0.001245,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.207511,0.001245,-0.001500,0.249996,0,0);}
.m1b_c01124{transform:matrix(0.209900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209900,0.000000,0.000000,0.250000,0,0);}
.m41_c01124{transform:matrix(0.210767,0.001054,-0.001250,0.249997,0,0);-ms-transform:matrix(0.210767,0.001054,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.210767,0.001054,-0.001250,0.249997,0,0);}
.m4d_c01124{transform:matrix(0.212540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212540,0.000000,0.000000,0.250000,0,0);}
.m80_c01124{transform:matrix(0.222019,0.002664,-0.003000,0.249982,0,0);-ms-transform:matrix(0.222019,0.002664,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.222019,0.002664,-0.003000,0.249982,0,0);}
.m83_c01124{transform:matrix(0.222090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222090,0.000000,0.000000,0.250000,0,0);}
.m4e_c01124{transform:matrix(0.227265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227265,0.000000,0.000000,0.250000,0,0);}
.m34_c01124{transform:matrix(0.228261,0.001370,-0.001500,0.249996,0,0);-ms-transform:matrix(0.228261,0.001370,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.228261,0.001370,-0.001500,0.249996,0,0);}
.m72_c01124{transform:matrix(0.228579,0.002743,-0.003000,0.249982,0,0);-ms-transform:matrix(0.228579,0.002743,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.228579,0.002743,-0.003000,0.249982,0,0);}
.m7b_c01124{transform:matrix(0.229573,0.002755,-0.003000,0.249982,0,0);-ms-transform:matrix(0.229573,0.002755,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.229573,0.002755,-0.003000,0.249982,0,0);}
.m2d_c01124{transform:matrix(0.231380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231380,0.000000,0.000000,0.250000,0,0);}
.me_c01124{transform:matrix(0.233110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233110,0.000000,0.000000,0.250000,0,0);}
.m74_c01124{transform:matrix(0.233663,0.002804,-0.003000,0.249982,0,0);-ms-transform:matrix(0.233663,0.002804,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.233663,0.002804,-0.003000,0.249982,0,0);}
.m77_c01124{transform:matrix(0.235063,0.002821,-0.003000,0.249982,0,0);-ms-transform:matrix(0.235063,0.002821,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.235063,0.002821,-0.003000,0.249982,0,0);}
.m43_c01124{transform:matrix(0.235077,0.001175,-0.001250,0.249997,0,0);-ms-transform:matrix(0.235077,0.001175,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.235077,0.001175,-0.001250,0.249997,0,0);}
.m7d_c01124{transform:matrix(0.236628,0.002840,-0.003000,0.249982,0,0);-ms-transform:matrix(0.236628,0.002840,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.236628,0.002840,-0.003000,0.249982,0,0);}
.m3c_c01124{transform:matrix(0.237045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237045,0.000000,0.000000,0.250000,0,0);}
.m3a_c01124{transform:matrix(0.237865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237865,0.000000,0.000000,0.250000,0,0);}
.m65_c01124{transform:matrix(0.239227,0.001196,-0.001250,0.249997,0,0);-ms-transform:matrix(0.239227,0.001196,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.239227,0.001196,-0.001250,0.249997,0,0);}
.m8_c01124{transform:matrix(0.242340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242340,0.000000,0.000000,0.250000,0,0);}
.m61_c01124{transform:matrix(0.243207,0.001216,-0.001250,0.249997,0,0);-ms-transform:matrix(0.243207,0.001216,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.243207,0.001216,-0.001250,0.249997,0,0);}
.m3b_c01124{transform:matrix(0.243365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243365,0.000000,0.000000,0.250000,0,0);}
.m49_c01124{transform:matrix(0.247547,0.001238,-0.001250,0.249997,0,0);-ms-transform:matrix(0.247547,0.001238,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.247547,0.001238,-0.001250,0.249997,0,0);}
.m5c_c01124{transform:matrix(0.249152,0.001246,-0.001250,0.249997,0,0);-ms-transform:matrix(0.249152,0.001246,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.249152,0.001246,-0.001250,0.249997,0,0);}
.m9_c01124{transform:matrix(0.249405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249405,0.000000,0.000000,0.250000,0,0);}
.m2b_c01124{transform:matrix(0.249635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249635,0.000000,0.000000,0.250000,0,0);}
.m6_c01124{transform:matrix(0.250390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250390,0.000000,0.000000,0.250000,0,0);}
.m2e_c01124{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m2c_c01124{transform:matrix(0.250710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250710,0.000000,0.000000,0.250000,0,0);}
.m1e_c01124{transform:matrix(0.251400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251400,0.000000,0.000000,0.250000,0,0);}
.m12_c01124{transform:matrix(0.251855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251855,0.000000,0.000000,0.250000,0,0);}
.m17_c01124{transform:matrix(0.253535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253535,0.000000,0.000000,0.250000,0,0);}
.m54_c01124{transform:matrix(0.254022,0.002540,-0.002500,0.249988,0,0);-ms-transform:matrix(0.254022,0.002540,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.254022,0.002540,-0.002500,0.249988,0,0);}
.m48_c01124{transform:matrix(0.255192,0.001276,-0.001250,0.249997,0,0);-ms-transform:matrix(0.255192,0.001276,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.255192,0.001276,-0.001250,0.249997,0,0);}
.m59_c01124{transform:matrix(0.259532,0.002595,-0.002500,0.249988,0,0);-ms-transform:matrix(0.259532,0.002595,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.259532,0.002595,-0.002500,0.249988,0,0);}
.m33_c01124{transform:matrix(0.260430,0.001563,-0.001500,0.249996,0,0);-ms-transform:matrix(0.260430,0.001563,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.260430,0.001563,-0.001500,0.249996,0,0);}
.m53_c01124{transform:matrix(0.260662,0.002607,-0.002500,0.249988,0,0);-ms-transform:matrix(0.260662,0.002607,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.260662,0.002607,-0.002500,0.249988,0,0);}
.m56_c01124{transform:matrix(0.260762,0.002608,-0.002500,0.249988,0,0);-ms-transform:matrix(0.260762,0.002608,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.260762,0.002608,-0.002500,0.249988,0,0);}
.m1f_c01124{transform:matrix(0.260875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260875,0.000000,0.000000,0.250000,0,0);}
.m1c_c01124{transform:matrix(0.262075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262075,0.000000,0.000000,0.250000,0,0);}
.m44_c01124{transform:matrix(0.263782,0.001319,-0.001250,0.249997,0,0);-ms-transform:matrix(0.263782,0.001319,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.263782,0.001319,-0.001250,0.249997,0,0);}
.m62_c01124{transform:matrix(0.263872,0.001319,-0.001250,0.249997,0,0);-ms-transform:matrix(0.263872,0.001319,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.263872,0.001319,-0.001250,0.249997,0,0);}
.m5d_c01124{transform:matrix(0.264047,0.001320,-0.001250,0.249997,0,0);-ms-transform:matrix(0.264047,0.001320,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.264047,0.001320,-0.001250,0.249997,0,0);}
.m42_c01124{transform:matrix(0.264057,0.001320,-0.001250,0.249997,0,0);-ms-transform:matrix(0.264057,0.001320,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.264057,0.001320,-0.001250,0.249997,0,0);}
.m45_c01124{transform:matrix(0.264572,0.001323,-0.001250,0.249997,0,0);-ms-transform:matrix(0.264572,0.001323,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.264572,0.001323,-0.001250,0.249997,0,0);}
.m32_c01124{transform:matrix(0.264985,0.001590,-0.001500,0.249996,0,0);-ms-transform:matrix(0.264985,0.001590,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.264985,0.001590,-0.001500,0.249996,0,0);}
.mc_c01124{transform:matrix(0.265575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265575,0.000000,0.000000,0.250000,0,0);}
.m57_c01124{transform:matrix(0.266977,0.002670,-0.002500,0.249988,0,0);-ms-transform:matrix(0.266977,0.002670,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.266977,0.002670,-0.002500,0.249988,0,0);}
.m51_c01124{transform:matrix(0.267522,0.002675,-0.002500,0.249988,0,0);-ms-transform:matrix(0.267522,0.002675,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.267522,0.002675,-0.002500,0.249988,0,0);}
.m7_c01124{transform:matrix(0.267700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267700,0.000000,0.000000,0.250000,0,0);}
.m18_c01124{transform:matrix(0.267920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267920,0.000000,0.000000,0.250000,0,0);}
.m60_c01124{transform:matrix(0.268342,0.001342,-0.001250,0.249997,0,0);-ms-transform:matrix(0.268342,0.001342,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.268342,0.001342,-0.001250,0.249997,0,0);}
.m5f_c01124{transform:matrix(0.269652,0.001348,-0.001250,0.249997,0,0);-ms-transform:matrix(0.269652,0.001348,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.269652,0.001348,-0.001250,0.249997,0,0);}
.m4a_c01124{transform:matrix(0.270602,0.001353,-0.001250,0.249997,0,0);-ms-transform:matrix(0.270602,0.001353,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.270602,0.001353,-0.001250,0.249997,0,0);}
.m11_c01124{transform:matrix(0.270820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270820,0.000000,0.000000,0.250000,0,0);}
.m1d_c01124{transform:matrix(0.271445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271445,0.000000,0.000000,0.250000,0,0);}
.m31_c01124{transform:matrix(0.271620,0.001630,-0.001500,0.249996,0,0);-ms-transform:matrix(0.271620,0.001630,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.271620,0.001630,-0.001500,0.249996,0,0);}
.m7a_c01124{transform:matrix(0.271680,0.003260,-0.003000,0.249982,0,0);-ms-transform:matrix(0.271680,0.003260,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.271680,0.003260,-0.003000,0.249982,0,0);}
.m1a_c01124{transform:matrix(0.271960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271960,0.000000,0.000000,0.250000,0,0);}
.m64_c01124{transform:matrix(0.274417,0.001372,-0.001250,0.249997,0,0);-ms-transform:matrix(0.274417,0.001372,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.274417,0.001372,-0.001250,0.249997,0,0);}
.m63_c01124{transform:matrix(0.276392,0.001382,-0.001250,0.249997,0,0);-ms-transform:matrix(0.276392,0.001382,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.276392,0.001382,-0.001250,0.249997,0,0);}
.m7c_c01124{transform:matrix(0.277055,0.003325,-0.003000,0.249982,0,0);-ms-transform:matrix(0.277055,0.003325,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.277055,0.003325,-0.003000,0.249982,0,0);}
.m4_c01124{transform:matrix(0.277265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277265,0.000000,0.000000,0.250000,0,0);}
.m46_c01124{transform:matrix(0.277682,0.001388,-0.001250,0.249997,0,0);-ms-transform:matrix(0.277682,0.001388,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.277682,0.001388,-0.001250,0.249997,0,0);}
.m16_c01124{transform:matrix(0.279315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279315,0.000000,0.000000,0.250000,0,0);}
.m19_c01124{transform:matrix(0.279465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279465,0.000000,0.000000,0.250000,0,0);}
.m5e_c01124{transform:matrix(0.279902,0.001400,-0.001250,0.249997,0,0);-ms-transform:matrix(0.279902,0.001400,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.279902,0.001400,-0.001250,0.249997,0,0);}
.m15_c01124{transform:matrix(0.280785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280785,0.000000,0.000000,0.250000,0,0);}
.m35_c01124{transform:matrix(0.281445,0.001689,-0.001500,0.249996,0,0);-ms-transform:matrix(0.281445,0.001689,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.281445,0.001689,-0.001500,0.249996,0,0);}
.m5_c01124{transform:matrix(0.282015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282015,0.000000,0.000000,0.250000,0,0);}
.m55_c01124{transform:matrix(0.284481,0.002845,-0.002500,0.249988,0,0);-ms-transform:matrix(0.284481,0.002845,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.284481,0.002845,-0.002500,0.249988,0,0);}
.m7f_c01124{transform:matrix(0.284595,0.003415,-0.003000,0.249982,0,0);-ms-transform:matrix(0.284595,0.003415,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.284595,0.003415,-0.003000,0.249982,0,0);}
.m81_c01124{transform:matrix(0.284749,0.003417,-0.003000,0.249982,0,0);-ms-transform:matrix(0.284749,0.003417,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.284749,0.003417,-0.003000,0.249982,0,0);}
.m58_c01124{transform:matrix(0.285706,0.002857,-0.002500,0.249988,0,0);-ms-transform:matrix(0.285706,0.002857,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.285706,0.002857,-0.002500,0.249988,0,0);}
.m7e_c01124{transform:matrix(0.289019,0.003468,-0.003000,0.249982,0,0);-ms-transform:matrix(0.289019,0.003468,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.289019,0.003468,-0.003000,0.249982,0,0);}
.m79_c01124{transform:matrix(0.293079,0.003517,-0.003000,0.249982,0,0);-ms-transform:matrix(0.293079,0.003517,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.293079,0.003517,-0.003000,0.249982,0,0);}
.m4b_c01124{transform:matrix(0.294396,0.001472,-0.001250,0.249997,0,0);-ms-transform:matrix(0.294396,0.001472,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.294396,0.001472,-0.001250,0.249997,0,0);}
.m0_c01124{transform:matrix(0.296925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296925,0.000000,0.000000,0.250000,0,0);}
.mb_c01124{transform:matrix(0.298590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298590,0.000000,0.000000,0.250000,0,0);}
.m21_c01124{transform:matrix(0.321015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321015,0.000000,0.000000,0.250000,0,0);}
.m6c_c01124{transform:matrix(0.331550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331550,0.000000,0.000000,0.250000,0,0);}
.m10_c01124{transform:matrix(0.349870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349870,0.000000,0.000000,0.250000,0,0);}
.m70_c01124{transform:matrix(0.350540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350540,0.000000,0.000000,0.250000,0,0);}
.m20_c01124{transform:matrix(0.353580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353580,0.000000,0.000000,0.250000,0,0);}
.m68_c01124{transform:matrix(0.376725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376725,0.000000,0.000000,0.250000,0,0);}
.m69_c01124{transform:matrix(0.380750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380750,0.000000,0.000000,0.250000,0,0);}
.m82_c01124{transform:matrix(0.381070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381070,0.000000,0.000000,0.250000,0,0);}
.m6a_c01124{transform:matrix(0.386760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386760,0.000000,0.000000,0.250000,0,0);}
.m71_c01124{transform:matrix(0.408535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408535,0.000000,0.000000,0.250000,0,0);}
.m66_c01124{transform:matrix(0.438635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.438635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.438635,0.000000,0.000000,0.250000,0,0);}
.m6e_c01124{transform:matrix(0.491575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491575,0.000000,0.000000,0.250000,0,0);}
.m36_c01124{transform:matrix(0.507576,0.003045,-0.001500,0.249996,0,0);-ms-transform:matrix(0.507576,0.003045,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.507576,0.003045,-0.001500,0.249996,0,0);}
.m37_c01124{transform:matrix(0.508406,0.003050,-0.001500,0.249996,0,0);-ms-transform:matrix(0.508406,0.003050,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.508406,0.003050,-0.001500,0.249996,0,0);}
.m1_c01124{transform:matrix(0.546260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.546260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.546260,0.000000,0.000000,0.250000,0,0);}
.mf_c01124{transform:matrix(0.786460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.786460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.786460,0.000000,0.000000,0.250000,0,0);}
.m6d_c01124{transform:matrix(0.843320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.843320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.843320,0.000000,0.000000,0.250000,0,0);}
.m67_c01124{transform:matrix(0.990740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.990740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.990740,0.000000,0.000000,0.250000,0,0);}
.v0_c01124{vertical-align:0.000000px;}
.ls0_c01124{letter-spacing:0.000000px;}
.sc__c01124{text-shadow:none;}
.sc0_c01124{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__c01124{-webkit-text-stroke:0px transparent;}
.sc0_c01124{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01124{word-spacing:0.000000px;}
.fc0_c01124{color:transparent;}
.fsb_c01124{font-size:30.000000px;}
.fsa_c01124{font-size:36.000000px;}
.fs1_c01124{font-size:42.000000px;}
.fs3_c01124{font-size:48.000000px;}
.fs9_c01124{font-size:54.000000px;}
.fs2_c01124{font-size:72.000000px;}
.fs7_c01124{font-size:72.000900px;}
.fs5_c01124{font-size:72.001296px;}
.fs8_c01124{font-size:72.003600px;}
.fsc_c01124{font-size:72.005184px;}
.fs0_c01124{font-size:78.000000px;}
.fs6_c01124{font-size:84.000000px;}
.fs4_c01124{font-size:102.000000px;}
.y0_c01124{bottom:0.000000px;}
.y56_c01124{bottom:40.758000px;}
.y55_c01124{bottom:73.250040px;}
.y54_c01124{bottom:73.423476px;}
.y53_c01124{bottom:74.287854px;}
.y52_c01124{bottom:75.367092px;}
.y51_c01124{bottom:75.686616px;}
.y50_c01124{bottom:76.305222px;}
.y4f_c01124{bottom:76.537188px;}
.y4e_c01124{bottom:77.149650px;}
.y4d_c01124{bottom:77.858268px;}
.y4c_c01124{bottom:107.918520px;}
.y4b_c01124{bottom:108.871170px;}
.y4a_c01124{bottom:109.133250px;}
.y49_c01124{bottom:110.196096px;}
.y48_c01124{bottom:110.591394px;}
.y47_c01124{bottom:111.702480px;}
.y46_c01124{bottom:112.321500px;}
.y45_c01124{bottom:151.873500px;}
.y44_c01124{bottom:221.940000px;}
.y43_c01124{bottom:293.490000px;}
.y42_c01124{bottom:363.150000px;}
.y41_c01124{bottom:394.462500px;}
.y40_c01124{bottom:434.160000px;}
.y3f_c01124{bottom:504.360000px;}
.y3e_c01124{bottom:606.179662px;}
.y3d_c01124{bottom:606.515783px;}
.y3c_c01124{bottom:606.954653px;}
.y3b_c01124{bottom:607.123410px;}
.y3a_c01124{bottom:607.343400px;}
.y39_c01124{bottom:607.732245px;}
.y38_c01124{bottom:608.011695px;}
.y37_c01124{bottom:608.557125px;}
.y36_c01124{bottom:609.008002px;}
.y35_c01124{bottom:609.329242px;}
.y34_c01124{bottom:609.543743px;}
.y33_c01124{bottom:609.660000px;}
.y32_c01124{bottom:640.301235px;}
.y31_c01124{bottom:641.521875px;}
.y30_c01124{bottom:641.970075px;}
.y2f_c01124{bottom:642.528945px;}
.y2e_c01124{bottom:643.733115px;}
.y2d_c01124{bottom:644.165145px;}
.y2c_c01124{bottom:644.953560px;}
.y2b_c01124{bottom:645.290985px;}
.y2a_c01124{bottom:646.268280px;}
.y29_c01124{bottom:646.688670px;}
.y28_c01124{bottom:646.921500px;}
.y27_c01124{bottom:676.887000px;}
.y26_c01124{bottom:709.380855px;}
.y25_c01124{bottom:709.823265px;}
.y24_c01124{bottom:709.994760px;}
.y23_c01124{bottom:710.162077px;}
.y22_c01124{bottom:710.369872px;}
.y21_c01124{bottom:710.874945px;}
.y20_c01124{bottom:711.325852px;}
.y1f_c01124{bottom:711.711945px;}
.y1e_c01124{bottom:711.875280px;}
.y1d_c01124{bottom:712.205992px;}
.y1c_c01124{bottom:712.415100px;}
.y1b_c01124{bottom:712.530000px;}
.y1a_c01124{bottom:746.283000px;}
.y19_c01124{bottom:781.981659px;}
.y18_c01124{bottom:782.386650px;}
.y17_c01124{bottom:783.178821px;}
.y16_c01124{bottom:783.446112px;}
.y15_c01124{bottom:783.781497px;}
.y14_c01124{bottom:784.184868px;}
.y13_c01124{bottom:784.777734px;}
.y12_c01124{bottom:785.023731px;}
.y11_c01124{bottom:785.160000px;}
.y10_c01124{bottom:817.947000px;}
.yf_c01124{bottom:848.341500px;}
.ye_c01124{bottom:848.656500px;}
.yd_c01124{bottom:849.672000px;}
.yc_c01124{bottom:850.596000px;}
.yb_c01124{bottom:850.876500px;}
.ya_c01124{bottom:851.407500px;}
.y9_c01124{bottom:851.605500px;}
.y8_c01124{bottom:852.138000px;}
.y7_c01124{bottom:852.660000px;}
.y6_c01124{bottom:889.935000px;}
.y5_c01124{bottom:923.584500px;}
.y4_c01124{bottom:954.994500px;}
.y3_c01124{bottom:993.831000px;}
.y2_c01124{bottom:1062.715500px;}
.y1_c01124{bottom:1097.280000px;}
.hd_c01124{height:30.000000px;}
.hc_c01124{height:36.000000px;}
.h3_c01124{height:42.000000px;}
.h5_c01124{height:48.000000px;}
.hb_c01124{height:54.000000px;}
.h4_c01124{height:72.000000px;}
.h9_c01124{height:72.000900px;}
.h7_c01124{height:72.001296px;}
.ha_c01124{height:72.003600px;}
.he_c01124{height:72.005184px;}
.h2_c01124{height:78.000000px;}
.h8_c01124{height:84.000000px;}
.h6_c01124{height:102.000000px;}
.h0_c01124{height:1246.320000px;}
.h1_c01124{height:1246.500000px;}
.w0_c01124{width:898.500000px;}
.x0_c01124{left:0.000000px;}
.x1_c01124{left:51.570000px;}
.x43_c01124{left:71.280000px;}
.x2_c01124{left:75.060000px;}
.x24_c01124{left:76.078500px;}
.x42_c01124{left:77.490000px;}
.x44_c01124{left:91.800000px;}
.x3_c01124{left:98.280000px;}
.x33_c01124{left:99.339000px;}
.x13_c01124{left:130.410000px;}
.x1d_c01124{left:139.234500px;}
.x4_c01124{left:141.480000px;}
.x4a_c01124{left:153.465492px;}
.xf_c01124{left:193.590000px;}
.x23_c01124{left:195.480000px;}
.x3e_c01124{left:196.560000px;}
.x4f_c01124{left:199.530000px;}
.x2c_c01124{left:206.754000px;}
.x30_c01124{left:208.980000px;}
.x1e_c01124{left:228.051000px;}
.x1c_c01124{left:229.770000px;}
.x25_c01124{left:238.600500px;}
.x31_c01124{left:240.300000px;}
.x5_c01124{left:250.020000px;}
.x50_c01124{left:255.420000px;}
.x1f_c01124{left:260.986500px;}
.x34_c01124{left:272.850000px;}
.x4b_c01124{left:274.216746px;}
.x45_c01124{left:281.496000px;}
.x10_c01124{left:295.650000px;}
.x3b_c01124{left:296.662500px;}
.x26_c01124{left:305.829000px;}
.x3f_c01124{left:307.260000px;}
.x2d_c01124{left:316.639500px;}
.x11_c01124{left:318.060000px;}
.x40_c01124{left:339.930000px;}
.x14_c01124{left:350.190000px;}
.x35_c01124{left:351.691500px;}
.x6_c01124{left:361.260000px;}
.x12_c01124{left:362.610000px;}
.x46_c01124{left:374.086500px;}
.x15_c01124{left:383.130000px;}
.x32_c01124{left:384.210000px;}
.x36_c01124{left:394.894500px;}
.x20_c01124{left:396.244500px;}
.x7_c01124{left:406.620000px;}
.x41_c01124{left:409.050000px;}
.x16_c01124{left:416.070000px;}
.x28_c01124{left:429.300000px;}
.x3c_c01124{left:461.638500px;}
.x8_c01124{left:494.370000px;}
.x47_c01124{left:495.598500px;}
.x17_c01124{left:505.170000px;}
.x2e_c01124{left:507.835500px;}
.x37_c01124{left:515.311500px;}
.x48_c01124{left:517.438500px;}
.x9_c01124{left:537.840000px;}
.x3d_c01124{left:539.407500px;}
.x21_c01124{left:550.138500px;}
.x29_c01124{left:552.960000px;}
.x4c_c01124{left:562.348026px;}
.x38_c01124{left:571.198500px;}
.x18_c01124{left:573.750000px;}
.xa_c01124{left:582.930000px;}
.x2a_c01124{left:585.900000px;}
.x49_c01124{left:596.826000px;}
.x27_c01124{left:605.802000px;}
.x39_c01124{left:616.018500px;}
.xb_c01124{left:617.220000px;}
.x2b_c01124{left:651.510000px;}
.xc_c01124{left:681.210000px;}
.x19_c01124{left:682.560000px;}
.x4d_c01124{left:685.761924px;}
.x2f_c01124{left:705.639000px;}
.x4e_c01124{left:710.591418px;}
.x1a_c01124{left:717.390000px;}
.x22_c01124{left:719.436000px;}
.x3a_c01124{left:738.082500px;}
.xd_c01124{left:760.320000px;}
.x1b_c01124{left:771.390000px;}
.xe_c01124{left:794.880000px;}
@media print{
.v0_c01124{vertical-align:0.000000pt;}
.ls0_c01124{letter-spacing:0.000000pt;}
.ws0_c01124{word-spacing:0.000000pt;}
.fsb_c01124{font-size:26.666667pt;}
.fsa_c01124{font-size:32.000000pt;}
.fs1_c01124{font-size:37.333333pt;}
.fs3_c01124{font-size:42.666667pt;}
.fs9_c01124{font-size:48.000000pt;}
.fs2_c01124{font-size:64.000000pt;}
.fs7_c01124{font-size:64.000800pt;}
.fs5_c01124{font-size:64.001152pt;}
.fs8_c01124{font-size:64.003200pt;}
.fsc_c01124{font-size:64.004608pt;}
.fs0_c01124{font-size:69.333333pt;}
.fs6_c01124{font-size:74.666667pt;}
.fs4_c01124{font-size:90.666667pt;}
.y0_c01124{bottom:0.000000pt;}
.y56_c01124{bottom:36.229333pt;}
.y55_c01124{bottom:65.111147pt;}
.y54_c01124{bottom:65.265312pt;}
.y53_c01124{bottom:66.033648pt;}
.y52_c01124{bottom:66.992971pt;}
.y51_c01124{bottom:67.276992pt;}
.y50_c01124{bottom:67.826864pt;}
.y4f_c01124{bottom:68.033056pt;}
.y4e_c01124{bottom:68.577467pt;}
.y4d_c01124{bottom:69.207349pt;}
.y4c_c01124{bottom:95.927573pt;}
.y4b_c01124{bottom:96.774373pt;}
.y4a_c01124{bottom:97.007333pt;}
.y49_c01124{bottom:97.952085pt;}
.y48_c01124{bottom:98.303461pt;}
.y47_c01124{bottom:99.291093pt;}
.y46_c01124{bottom:99.841333pt;}
.y45_c01124{bottom:134.998667pt;}
.y44_c01124{bottom:197.280000pt;}
.y43_c01124{bottom:260.880000pt;}
.y42_c01124{bottom:322.800000pt;}
.y41_c01124{bottom:350.633333pt;}
.y40_c01124{bottom:385.920000pt;}
.y3f_c01124{bottom:448.320000pt;}
.y3e_c01124{bottom:538.826367pt;}
.y3d_c01124{bottom:539.125140pt;}
.y3c_c01124{bottom:539.515247pt;}
.y3b_c01124{bottom:539.665253pt;}
.y3a_c01124{bottom:539.860800pt;}
.y39_c01124{bottom:540.206440pt;}
.y38_c01124{bottom:540.454840pt;}
.y37_c01124{bottom:540.939667pt;}
.y36_c01124{bottom:541.340447pt;}
.y35_c01124{bottom:541.625993pt;}
.y34_c01124{bottom:541.816660pt;}
.y33_c01124{bottom:541.920000pt;}
.y32_c01124{bottom:569.156653pt;}
.y31_c01124{bottom:570.241667pt;}
.y30_c01124{bottom:570.640067pt;}
.y2f_c01124{bottom:571.136840pt;}
.y2e_c01124{bottom:572.207213pt;}
.y2d_c01124{bottom:572.591240pt;}
.y2c_c01124{bottom:573.292053pt;}
.y2b_c01124{bottom:573.591987pt;}
.y2a_c01124{bottom:574.460693pt;}
.y29_c01124{bottom:574.834373pt;}
.y28_c01124{bottom:575.041333pt;}
.y27_c01124{bottom:601.677333pt;}
.y26_c01124{bottom:630.560760pt;}
.y25_c01124{bottom:630.954013pt;}
.y24_c01124{bottom:631.106453pt;}
.y23_c01124{bottom:631.255180pt;}
.y22_c01124{bottom:631.439887pt;}
.y21_c01124{bottom:631.888840pt;}
.y20_c01124{bottom:632.289647pt;}
.y1f_c01124{bottom:632.632840pt;}
.y1e_c01124{bottom:632.778027pt;}
.y1d_c01124{bottom:633.071993pt;}
.y1c_c01124{bottom:633.257867pt;}
.y1b_c01124{bottom:633.360000pt;}
.y1a_c01124{bottom:663.362667pt;}
.y19_c01124{bottom:695.094808pt;}
.y18_c01124{bottom:695.454800pt;}
.y17_c01124{bottom:696.158952pt;}
.y16_c01124{bottom:696.396544pt;}
.y15_c01124{bottom:696.694664pt;}
.y14_c01124{bottom:697.053216pt;}
.y13_c01124{bottom:697.580208pt;}
.y12_c01124{bottom:697.798872pt;}
.y11_c01124{bottom:697.920000pt;}
.y10_c01124{bottom:727.064000pt;}
.yf_c01124{bottom:754.081333pt;}
.ye_c01124{bottom:754.361333pt;}
.yd_c01124{bottom:755.264000pt;}
.yc_c01124{bottom:756.085333pt;}
.yb_c01124{bottom:756.334667pt;}
.ya_c01124{bottom:756.806667pt;}
.y9_c01124{bottom:756.982667pt;}
.y8_c01124{bottom:757.456000pt;}
.y7_c01124{bottom:757.920000pt;}
.y6_c01124{bottom:791.053333pt;}
.y5_c01124{bottom:820.964000pt;}
.y4_c01124{bottom:848.884000pt;}
.y3_c01124{bottom:883.405333pt;}
.y2_c01124{bottom:944.636000pt;}
.y1_c01124{bottom:975.360000pt;}
.hd_c01124{height:26.666667pt;}
.hc_c01124{height:32.000000pt;}
.h3_c01124{height:37.333333pt;}
.h5_c01124{height:42.666667pt;}
.hb_c01124{height:48.000000pt;}
.h4_c01124{height:64.000000pt;}
.h9_c01124{height:64.000800pt;}
.h7_c01124{height:64.001152pt;}
.ha_c01124{height:64.003200pt;}
.he_c01124{height:64.004608pt;}
.h2_c01124{height:69.333333pt;}
.h8_c01124{height:74.666667pt;}
.h6_c01124{height:90.666667pt;}
.h0_c01124{height:1107.840000pt;}
.h1_c01124{height:1108.000000pt;}
.w0_c01124{width:798.666667pt;}
.x0_c01124{left:0.000000pt;}
.x1_c01124{left:45.840000pt;}
.x43_c01124{left:63.360000pt;}
.x2_c01124{left:66.720000pt;}
.x24_c01124{left:67.625333pt;}
.x42_c01124{left:68.880000pt;}
.x44_c01124{left:81.600000pt;}
.x3_c01124{left:87.360000pt;}
.x33_c01124{left:88.301333pt;}
.x13_c01124{left:115.920000pt;}
.x1d_c01124{left:123.764000pt;}
.x4_c01124{left:125.760000pt;}
.x4a_c01124{left:136.413771pt;}
.xf_c01124{left:172.080000pt;}
.x23_c01124{left:173.760000pt;}
.x3e_c01124{left:174.720000pt;}
.x4f_c01124{left:177.360000pt;}
.x2c_c01124{left:183.781333pt;}
.x30_c01124{left:185.760000pt;}
.x1e_c01124{left:202.712000pt;}
.x1c_c01124{left:204.240000pt;}
.x25_c01124{left:212.089333pt;}
.x31_c01124{left:213.600000pt;}
.x5_c01124{left:222.240000pt;}
.x50_c01124{left:227.040000pt;}
.x1f_c01124{left:231.988000pt;}
.x34_c01124{left:242.533333pt;}
.x4b_c01124{left:243.748219pt;}
.x45_c01124{left:250.218667pt;}
.x10_c01124{left:262.800000pt;}
.x3b_c01124{left:263.700000pt;}
.x26_c01124{left:271.848000pt;}
.x3f_c01124{left:273.120000pt;}
.x2d_c01124{left:281.457333pt;}
.x11_c01124{left:282.720000pt;}
.x40_c01124{left:302.160000pt;}
.x14_c01124{left:311.280000pt;}
.x35_c01124{left:312.614667pt;}
.x6_c01124{left:321.120000pt;}
.x12_c01124{left:322.320000pt;}
.x46_c01124{left:332.521333pt;}
.x15_c01124{left:340.560000pt;}
.x32_c01124{left:341.520000pt;}
.x36_c01124{left:351.017333pt;}
.x20_c01124{left:352.217333pt;}
.x7_c01124{left:361.440000pt;}
.x41_c01124{left:363.600000pt;}
.x16_c01124{left:369.840000pt;}
.x28_c01124{left:381.600000pt;}
.x3c_c01124{left:410.345333pt;}
.x8_c01124{left:439.440000pt;}
.x47_c01124{left:440.532000pt;}
.x17_c01124{left:449.040000pt;}
.x2e_c01124{left:451.409333pt;}
.x37_c01124{left:458.054667pt;}
.x48_c01124{left:459.945333pt;}
.x9_c01124{left:478.080000pt;}
.x3d_c01124{left:479.473333pt;}
.x21_c01124{left:489.012000pt;}
.x29_c01124{left:491.520000pt;}
.x4c_c01124{left:499.864912pt;}
.x38_c01124{left:507.732000pt;}
.x18_c01124{left:510.000000pt;}
.xa_c01124{left:518.160000pt;}
.x2a_c01124{left:520.800000pt;}
.x49_c01124{left:530.512000pt;}
.x27_c01124{left:538.490667pt;}
.x39_c01124{left:547.572000pt;}
.xb_c01124{left:548.640000pt;}
.x2b_c01124{left:579.120000pt;}
.xc_c01124{left:605.520000pt;}
.x19_c01124{left:606.720000pt;}
.x4d_c01124{left:609.566155pt;}
.x2f_c01124{left:627.234667pt;}
.x4e_c01124{left:631.636816pt;}
.x1a_c01124{left:637.680000pt;}
.x22_c01124{left:639.498667pt;}
.x3a_c01124{left:656.073333pt;}
.xd_c01124{left:675.840000pt;}
.x1b_c01124{left:685.680000pt;}
.xe_c01124{left:706.560000pt;}
}





/* 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_c01125 {
    display:none;
  }
  .loading-indicator_c01125.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01125 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_c01125 { 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_c01125" -> "#page-container .classname_c01125")
 */
.pf_c01125 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01125 { /* 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_c01125.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01125 { /* 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_c01125 { /* 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_c01125 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01125 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01125 {overflow:visible;}
  }
}
.c_c01125 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01125 { /* 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_c01125:after { /* webkit #35443 */
  content: '';
}
.t_c01125:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01125 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 */
}
.__c01125 { /* 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_c01125 { /* info for Javascript */
  display:none;
}
.l_c01125 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01125 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01125 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01125: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_c01125 {
    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_c01125.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01125.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_c01125 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01125{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01125;src:url('chunks/assets/font_7c6b9abe6ee2a268480c528b.woff2')format("woff");}.ff1_c01125{font-family:ff1_c01125;line-height:1.000000;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;}
.ma_c01125{transform:matrix(0.094886,0.001898,-0.004999,0.249950,0,0);-ms-transform:matrix(0.094886,0.001898,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.094886,0.001898,-0.004999,0.249950,0,0);}
.m3_c01125{transform:matrix(0.114782,0.001377,-0.003000,0.249982,0,0);-ms-transform:matrix(0.114782,0.001377,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.114782,0.001377,-0.003000,0.249982,0,0);}
.m9_c01125{transform:matrix(0.121926,0.002439,-0.004999,0.249950,0,0);-ms-transform:matrix(0.121926,0.002439,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.121926,0.002439,-0.004999,0.249950,0,0);}
.m1_c01125{transform:matrix(0.123906,0.001487,-0.003000,0.249982,0,0);-ms-transform:matrix(0.123906,0.001487,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.123906,0.001487,-0.003000,0.249982,0,0);}
.m2_c01125{transform:matrix(0.131746,0.001581,-0.003000,0.249982,0,0);-ms-transform:matrix(0.131746,0.001581,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.131746,0.001581,-0.003000,0.249982,0,0);}
.m0_c01125{transform:matrix(0.154884,0.001859,-0.003000,0.249982,0,0);-ms-transform:matrix(0.154884,0.001859,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.154884,0.001859,-0.003000,0.249982,0,0);}
.md_c01125{transform:matrix(0.205764,0.004115,-0.004999,0.249950,0,0);-ms-transform:matrix(0.205764,0.004115,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.205764,0.004115,-0.004999,0.249950,0,0);}
.m8_c01125{transform:matrix(0.236283,0.002835,-0.003000,0.249982,0,0);-ms-transform:matrix(0.236283,0.002835,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.236283,0.002835,-0.003000,0.249982,0,0);}
.m6_c01125{transform:matrix(0.243892,0.002927,-0.003000,0.249982,0,0);-ms-transform:matrix(0.243892,0.002927,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.243892,0.002927,-0.003000,0.249982,0,0);}
.m7_c01125{transform:matrix(0.250707,0.003008,-0.003000,0.249982,0,0);-ms-transform:matrix(0.250707,0.003008,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.250707,0.003008,-0.003000,0.249982,0,0);}
.m4_c01125{transform:matrix(0.254367,0.003052,-0.003000,0.249982,0,0);-ms-transform:matrix(0.254367,0.003052,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.254367,0.003052,-0.003000,0.249982,0,0);}
.m5_c01125{transform:matrix(0.258251,0.003099,-0.003000,0.249982,0,0);-ms-transform:matrix(0.258251,0.003099,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.258251,0.003099,-0.003000,0.249982,0,0);}
.mb_c01125{transform:matrix(0.258588,0.005172,-0.004999,0.249950,0,0);-ms-transform:matrix(0.258588,0.005172,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.258588,0.005172,-0.004999,0.249950,0,0);}
.mc_c01125{transform:matrix(0.271936,0.005439,-0.004999,0.249950,0,0);-ms-transform:matrix(0.271936,0.005439,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.271936,0.005439,-0.004999,0.249950,0,0);}
.me_c01125{transform:matrix(1.380380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.380380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.380380,0.000000,0.000000,0.250000,0,0);}
.v0_c01125{vertical-align:0.000000px;}
.ls0_c01125{letter-spacing:0.000000px;}
.sc__c01125{text-shadow:none;}
.sc0_c01125{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__c01125{-webkit-text-stroke:0px transparent;}
.sc0_c01125{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01125{word-spacing:0.000000px;}
.fc0_c01125{color:transparent;}
.fs3_c01125{font-size:30.000000px;}
.fs1_c01125{font-size:84.006048px;}
.fs2_c01125{font-size:138.027597px;}
.fs0_c01125{font-size:168.012096px;}
.y0_c01125{bottom:0.000000px;}
.yf_c01125{bottom:394.335000px;}
.ye_c01125{bottom:735.616770px;}
.yd_c01125{bottom:737.405760px;}
.yc_c01125{bottom:739.717140px;}
.yb_c01125{bottom:740.702130px;}
.ya_c01125{bottom:741.159000px;}
.y9_c01125{bottom:775.995606px;}
.y8_c01125{bottom:778.138788px;}
.y7_c01125{bottom:779.721060px;}
.y6_c01125{bottom:780.948960px;}
.y5_c01125{bottom:781.933890px;}
.y4_c01125{bottom:805.314672px;}
.y3_c01125{bottom:806.396760px;}
.y2_c01125{bottom:806.612274px;}
.y1_c01125{bottom:808.101000px;}
.h5_c01125{height:30.000000px;}
.h3_c01125{height:84.006048px;}
.h4_c01125{height:138.027597px;}
.h2_c01125{height:168.012096px;}
.h0_c01125{height:1246.320000px;}
.h1_c01125{height:1246.500000px;}
.w0_c01125{width:898.500000px;}
.x0_c01125{left:0.000000px;}
.xf_c01125{left:97.200000px;}
.x1_c01125{left:331.737000px;}
.xa_c01125{left:412.144500px;}
.x5_c01125{left:425.779080px;}
.xb_c01125{left:434.988000px;}
.x2_c01125{left:455.797500px;}
.x6_c01125{left:458.599488px;}
.x3_c01125{left:473.757000px;}
.xc_c01125{left:484.237500px;}
.x7_c01125{left:499.540650px;}
.x8_c01125{left:552.260256px;}
.x4_c01125{left:563.931000px;}
.xd_c01125{left:599.806500px;}
.x9_c01125{left:623.718330px;}
.xe_c01125{left:689.256000px;}
@media print{
.v0_c01125{vertical-align:0.000000pt;}
.ls0_c01125{letter-spacing:0.000000pt;}
.ws0_c01125{word-spacing:0.000000pt;}
.fs3_c01125{font-size:26.666667pt;}
.fs1_c01125{font-size:74.672042pt;}
.fs2_c01125{font-size:122.691198pt;}
.fs0_c01125{font-size:149.344085pt;}
.y0_c01125{bottom:0.000000pt;}
.yf_c01125{bottom:350.520000pt;}
.ye_c01125{bottom:653.881573pt;}
.yd_c01125{bottom:655.471787pt;}
.yc_c01125{bottom:657.526347pt;}
.yb_c01125{bottom:658.401893pt;}
.ya_c01125{bottom:658.808000pt;}
.y9_c01125{bottom:689.773872pt;}
.y8_c01125{bottom:691.678923pt;}
.y7_c01125{bottom:693.085387pt;}
.y6_c01125{bottom:694.176853pt;}
.y5_c01125{bottom:695.052347pt;}
.y4_c01125{bottom:715.835264pt;}
.y3_c01125{bottom:716.797120pt;}
.y2_c01125{bottom:716.988688pt;}
.y1_c01125{bottom:718.312000pt;}
.h5_c01125{height:26.666667pt;}
.h3_c01125{height:74.672042pt;}
.h4_c01125{height:122.691198pt;}
.h2_c01125{height:149.344085pt;}
.h0_c01125{height:1107.840000pt;}
.h1_c01125{height:1108.000000pt;}
.w0_c01125{width:798.666667pt;}
.x0_c01125{left:0.000000pt;}
.xf_c01125{left:86.400000pt;}
.x1_c01125{left:294.877333pt;}
.xa_c01125{left:366.350667pt;}
.x5_c01125{left:378.470293pt;}
.xb_c01125{left:386.656000pt;}
.x2_c01125{left:405.153333pt;}
.x6_c01125{left:407.643989pt;}
.x3_c01125{left:421.117333pt;}
.xc_c01125{left:430.433333pt;}
.x7_c01125{left:444.036133pt;}
.x8_c01125{left:490.898005pt;}
.x4_c01125{left:501.272000pt;}
.xd_c01125{left:533.161333pt;}
.x9_c01125{left:554.416293pt;}
.xe_c01125{left:612.672000pt;}
}





/* 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_c01126 {
    display:none;
  }
  .loading-indicator_c01126.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01126 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_c01126 { 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_c01126" -> "#page-container .classname_c01126")
 */
.pf_c01126 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01126 { /* 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_c01126.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01126 { /* 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_c01126 { /* 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_c01126 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01126 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01126 {overflow:visible;}
  }
}
.c_c01126 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01126 { /* 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_c01126:after { /* webkit #35443 */
  content: '';
}
.t_c01126:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01126 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 */
}
.__c01126 { /* 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_c01126 { /* info for Javascript */
  display:none;
}
.l_c01126 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01126 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01126 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01126: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_c01126 {
    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_c01126.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01126.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_c01126 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01126{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01126;src:url('chunks/assets/font_c605e72f209fc835e906f064.woff2')format("woff");}.ff1_c01126{font-family:ff1_c01126;line-height:1.000000;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;}
.mb5_c01126{transform:matrix(0.006365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.006365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.006365,0.000000,0.000000,0.250000,0,0);}
.m11_c01126{transform:matrix(0.013520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.013520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.013520,0.000000,0.000000,0.250000,0,0);}
.mdd_c01126{transform:matrix(0.016768,0.000268,-0.003999,0.249968,0,0);-ms-transform:matrix(0.016768,0.000268,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.016768,0.000268,-0.003999,0.249968,0,0);}
.ma8_c01126{transform:matrix(0.021215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021215,0.000000,0.000000,0.250000,0,0);}
.mc5_c01126{transform:matrix(0.083445,0.000918,-0.002750,0.249985,0,0);-ms-transform:matrix(0.083445,0.000918,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.083445,0.000918,-0.002750,0.249985,0,0);}
.m67_c01126{transform:matrix(0.137143,0.001783,-0.003250,0.249979,0,0);-ms-transform:matrix(0.137143,0.001783,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.137143,0.001783,-0.003250,0.249979,0,0);}
.m68_c01126{transform:matrix(0.138548,0.001801,-0.003250,0.249979,0,0);-ms-transform:matrix(0.138548,0.001801,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.138548,0.001801,-0.003250,0.249979,0,0);}
.mb7_c01126{transform:matrix(0.142284,0.002134,-0.003750,0.249972,0,0);-ms-transform:matrix(0.142284,0.002134,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.142284,0.002134,-0.003750,0.249972,0,0);}
.m25_c01126{transform:matrix(0.142410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142410,0.000000,0.000000,0.250000,0,0);}
.m8d_c01126{transform:matrix(0.143264,0.002435,-0.004249,0.249964,0,0);-ms-transform:matrix(0.143264,0.002435,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.143264,0.002435,-0.004249,0.249964,0,0);}
.m58_c01126{transform:matrix(0.143281,0.001003,-0.001750,0.249994,0,0);-ms-transform:matrix(0.143281,0.001003,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.143281,0.001003,-0.001750,0.249994,0,0);}
.md1_c01126{transform:matrix(0.146231,0.002340,-0.003999,0.249968,0,0);-ms-transform:matrix(0.146231,0.002340,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.146231,0.002340,-0.003999,0.249968,0,0);}
.me6_c01126{transform:matrix(0.146916,0.002644,-0.004499,0.249960,0,0);-ms-transform:matrix(0.146916,0.002644,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.146916,0.002644,-0.004499,0.249960,0,0);}
.m39_c01126{transform:matrix(0.147690,0.001182,-0.002000,0.249992,0,0);-ms-transform:matrix(0.147690,0.001182,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.147690,0.001182,-0.002000,0.249992,0,0);}
.mf_c01126{transform:matrix(0.148100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148100,0.000000,0.000000,0.250000,0,0);}
.m9d_c01126{transform:matrix(0.148566,0.002377,-0.003999,0.249968,0,0);-ms-transform:matrix(0.148566,0.002377,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.148566,0.002377,-0.003999,0.249968,0,0);}
.maa_c01126{transform:matrix(0.148585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148585,0.000000,0.000000,0.250000,0,0);}
.m2_c01126{transform:matrix(0.154380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154380,0.000000,0.000000,0.250000,0,0);}
.m71_c01126{transform:matrix(0.158640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158640,0.000000,0.000000,0.250000,0,0);}
.mc6_c01126{transform:matrix(0.161545,0.001777,-0.002750,0.249985,0,0);-ms-transform:matrix(0.161545,0.001777,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.161545,0.001777,-0.002750,0.249985,0,0);}
.m15_c01126{transform:matrix(0.164355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164355,0.000000,0.000000,0.250000,0,0);}
.mb6_c01126{transform:matrix(0.165835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165835,0.000000,0.000000,0.250000,0,0);}
.m4_c01126{transform:matrix(0.166515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166515,0.000000,0.000000,0.250000,0,0);}
.m5_c01126{transform:matrix(0.176920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176920,0.000000,0.000000,0.250000,0,0);}
.mc8_c01126{transform:matrix(0.181384,0.001995,-0.002750,0.249985,0,0);-ms-transform:matrix(0.181384,0.001995,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.181384,0.001995,-0.002750,0.249985,0,0);}
.mcf_c01126{transform:matrix(0.182459,0.002007,-0.002750,0.249985,0,0);-ms-transform:matrix(0.182459,0.002007,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.182459,0.002007,-0.002750,0.249985,0,0);}
.me7_c01126{transform:matrix(0.185120,0.003332,-0.004499,0.249960,0,0);-ms-transform:matrix(0.185120,0.003332,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.185120,0.003332,-0.004499,0.249960,0,0);}
.m22_c01126{transform:matrix(0.185755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185755,0.000000,0.000000,0.250000,0,0);}
.mcb_c01126{transform:matrix(0.186374,0.002050,-0.002750,0.249985,0,0);-ms-transform:matrix(0.186374,0.002050,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.186374,0.002050,-0.002750,0.249985,0,0);}
.mb8_c01126{transform:matrix(0.187259,0.002809,-0.003750,0.249972,0,0);-ms-transform:matrix(0.187259,0.002809,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.187259,0.002809,-0.003750,0.249972,0,0);}
.m7d_c01126{transform:matrix(0.187790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187790,0.000000,0.000000,0.250000,0,0);}
.m7f_c01126{transform:matrix(0.190105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190105,0.000000,0.000000,0.250000,0,0);}
.mcc_c01126{transform:matrix(0.191623,0.002108,-0.002750,0.249985,0,0);-ms-transform:matrix(0.191623,0.002108,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.191623,0.002108,-0.002750,0.249985,0,0);}
.m21_c01126{transform:matrix(0.192300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192300,0.000000,0.000000,0.250000,0,0);}
.m7e_c01126{transform:matrix(0.193535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193535,0.000000,0.000000,0.250000,0,0);}
.m48_c01126{transform:matrix(0.194047,0.001164,-0.001500,0.249996,0,0);-ms-transform:matrix(0.194047,0.001164,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.194047,0.001164,-0.001500,0.249996,0,0);}
.m7b_c01126{transform:matrix(0.194245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194245,0.000000,0.000000,0.250000,0,0);}
.m9e_c01126{transform:matrix(0.195440,0.003127,-0.003999,0.249968,0,0);-ms-transform:matrix(0.195440,0.003127,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.195440,0.003127,-0.003999,0.249968,0,0);}
.m9b_c01126{transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);}
.m7c_c01126{transform:matrix(0.197785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197785,0.000000,0.000000,0.250000,0,0);}
.m99_c01126{transform:matrix(0.199915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199915,0.000000,0.000000,0.250000,0,0);}
.m16_c01126{transform:matrix(0.200140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200140,0.000000,0.000000,0.250000,0,0);}
.m6b_c01126{transform:matrix(0.200698,0.002609,-0.003250,0.249979,0,0);-ms-transform:matrix(0.200698,0.002609,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.200698,0.002609,-0.003250,0.249979,0,0);}
.m24_c01126{transform:matrix(0.200715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200715,0.000000,0.000000,0.250000,0,0);}
.mab_c01126{transform:matrix(0.204265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204265,0.000000,0.000000,0.250000,0,0);}
.ma_c01126{transform:matrix(0.204415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204415,0.000000,0.000000,0.250000,0,0);}
.m6d_c01126{transform:matrix(0.205473,0.002671,-0.003250,0.249979,0,0);-ms-transform:matrix(0.205473,0.002671,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.205473,0.002671,-0.003250,0.249979,0,0);}
.m78_c01126{transform:matrix(0.205610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205610,0.000000,0.000000,0.250000,0,0);}
.mc9_c01126{transform:matrix(0.206478,0.002271,-0.002750,0.249985,0,0);-ms-transform:matrix(0.206478,0.002271,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.206478,0.002271,-0.002750,0.249985,0,0);}
.mc7_c01126{transform:matrix(0.206593,0.002273,-0.002750,0.249985,0,0);-ms-transform:matrix(0.206593,0.002273,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.206593,0.002273,-0.002750,0.249985,0,0);}
.mba_c01126{transform:matrix(0.207992,0.003120,-0.003750,0.249972,0,0);-ms-transform:matrix(0.207992,0.003120,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.207992,0.003120,-0.003750,0.249972,0,0);}
.m83_c01126{transform:matrix(0.208015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208015,0.000000,0.000000,0.250000,0,0);}
.m79_c01126{transform:matrix(0.208375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208375,0.000000,0.000000,0.250000,0,0);}
.me9_c01126{transform:matrix(0.208641,0.003756,-0.004499,0.249960,0,0);-ms-transform:matrix(0.208641,0.003756,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.208641,0.003756,-0.004499,0.249960,0,0);}
.m7a_c01126{transform:matrix(0.208745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208745,0.000000,0.000000,0.250000,0,0);}
.mbc_c01126{transform:matrix(0.209826,0.003147,-0.003750,0.249972,0,0);-ms-transform:matrix(0.209826,0.003147,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.209826,0.003147,-0.003750,0.249972,0,0);}
.m28_c01126{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m97_c01126{transform:matrix(0.210185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210185,0.000000,0.000000,0.250000,0,0);}
.m23_c01126{transform:matrix(0.211680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211680,0.000000,0.000000,0.250000,0,0);}
.mef_c01126{transform:matrix(0.211836,0.003813,-0.004499,0.249960,0,0);-ms-transform:matrix(0.211836,0.003813,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.211836,0.003813,-0.004499,0.249960,0,0);}
.mcd_c01126{transform:matrix(0.212172,0.002334,-0.002750,0.249985,0,0);-ms-transform:matrix(0.212172,0.002334,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.212172,0.002334,-0.002750,0.249985,0,0);}
.mc1_c01126{transform:matrix(0.213246,0.003199,-0.003750,0.249972,0,0);-ms-transform:matrix(0.213246,0.003199,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.213246,0.003199,-0.003750,0.249972,0,0);}
.md_c01126{transform:matrix(0.215060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215060,0.000000,0.000000,0.250000,0,0);}
.m2a_c01126{transform:matrix(0.215243,0.000861,-0.001000,0.249998,0,0);-ms-transform:matrix(0.215243,0.000861,-0.001000,0.249998,0,0);-webkit-transform:matrix(0.215243,0.000861,-0.001000,0.249998,0,0);}
.ma3_c01126{transform:matrix(0.215557,0.003449,-0.003999,0.249968,0,0);-ms-transform:matrix(0.215557,0.003449,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.215557,0.003449,-0.003999,0.249968,0,0);}
.mca_c01126{transform:matrix(0.216827,0.002385,-0.002750,0.249985,0,0);-ms-transform:matrix(0.216827,0.002385,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.216827,0.002385,-0.002750,0.249985,0,0);}
.mce_c01126{transform:matrix(0.218137,0.002400,-0.002750,0.249985,0,0);-ms-transform:matrix(0.218137,0.002400,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.218137,0.002400,-0.002750,0.249985,0,0);}
.mea_c01126{transform:matrix(0.218350,0.003930,-0.004499,0.249960,0,0);-ms-transform:matrix(0.218350,0.003930,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.218350,0.003930,-0.004499,0.249960,0,0);}
.m9a_c01126{transform:matrix(0.220370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220370,0.000000,0.000000,0.250000,0,0);}
.mec_c01126{transform:matrix(0.220559,0.003970,-0.004499,0.249960,0,0);-ms-transform:matrix(0.220559,0.003970,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.220559,0.003970,-0.004499,0.249960,0,0);}
.m7_c01126{transform:matrix(0.223030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223030,0.000000,0.000000,0.250000,0,0);}
.mb1_c01126{transform:matrix(0.223270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223270,0.000000,0.000000,0.250000,0,0);}
.m75_c01126{transform:matrix(0.223970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223970,0.000000,0.000000,0.250000,0,0);}
.m8b_c01126{transform:matrix(0.224780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224780,0.000000,0.000000,0.250000,0,0);}
.m3c_c01126{transform:matrix(0.225783,0.001806,-0.002000,0.249992,0,0);-ms-transform:matrix(0.225783,0.001806,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.225783,0.001806,-0.002000,0.249992,0,0);}
.m1d_c01126{transform:matrix(0.225790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225790,0.000000,0.000000,0.250000,0,0);}
.md0_c01126{transform:matrix(0.226161,0.002488,-0.002750,0.249985,0,0);-ms-transform:matrix(0.226161,0.002488,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.226161,0.002488,-0.002750,0.249985,0,0);}
.m4d_c01126{transform:matrix(0.229036,0.001374,-0.001500,0.249996,0,0);-ms-transform:matrix(0.229036,0.001374,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.229036,0.001374,-0.001500,0.249996,0,0);}
.mad_c01126{transform:matrix(0.229525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229525,0.000000,0.000000,0.250000,0,0);}
.m98_c01126{transform:matrix(0.229745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229745,0.000000,0.000000,0.250000,0,0);}
.me_c01126{transform:matrix(0.229775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229775,0.000000,0.000000,0.250000,0,0);}
.m52_c01126{transform:matrix(0.230336,0.001382,-0.001500,0.249996,0,0);-ms-transform:matrix(0.230336,0.001382,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.230336,0.001382,-0.001500,0.249996,0,0);}
.m91_c01126{transform:matrix(0.230712,0.003922,-0.004249,0.249964,0,0);-ms-transform:matrix(0.230712,0.003922,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.230712,0.003922,-0.004249,0.249964,0,0);}
.md8_c01126{transform:matrix(0.231610,0.003706,-0.003999,0.249968,0,0);-ms-transform:matrix(0.231610,0.003706,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.231610,0.003706,-0.003999,0.249968,0,0);}
.md3_c01126{transform:matrix(0.233375,0.003734,-0.003999,0.249968,0,0);-ms-transform:matrix(0.233375,0.003734,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.233375,0.003734,-0.003999,0.249968,0,0);}
.m84_c01126{transform:matrix(0.233550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233550,0.000000,0.000000,0.250000,0,0);}
.mf0_c01126{transform:matrix(0.234047,0.004213,-0.004499,0.249960,0,0);-ms-transform:matrix(0.234047,0.004213,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.234047,0.004213,-0.004499,0.249960,0,0);}
.m80_c01126{transform:matrix(0.234080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234080,0.000000,0.000000,0.250000,0,0);}
.m27_c01126{transform:matrix(0.234260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234260,0.000000,0.000000,0.250000,0,0);}
.m88_c01126{transform:matrix(0.234320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234320,0.000000,0.000000,0.250000,0,0);}
.m3_c01126{transform:matrix(0.235485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235485,0.000000,0.000000,0.250000,0,0);}
.mc0_c01126{transform:matrix(0.235643,0.003535,-0.003750,0.249972,0,0);-ms-transform:matrix(0.235643,0.003535,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.235643,0.003535,-0.003750,0.249972,0,0);}
.m95_c01126{transform:matrix(0.236411,0.004019,-0.004249,0.249964,0,0);-ms-transform:matrix(0.236411,0.004019,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.236411,0.004019,-0.004249,0.249964,0,0);}
.ma0_c01126{transform:matrix(0.236490,0.003784,-0.003999,0.249968,0,0);-ms-transform:matrix(0.236490,0.003784,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.236490,0.003784,-0.003999,0.249968,0,0);}
.m54_c01126{transform:matrix(0.236581,0.001419,-0.001500,0.249996,0,0);-ms-transform:matrix(0.236581,0.001419,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.236581,0.001419,-0.001500,0.249996,0,0);}
.mbb_c01126{transform:matrix(0.237728,0.003566,-0.003750,0.249972,0,0);-ms-transform:matrix(0.237728,0.003566,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.237728,0.003566,-0.003750,0.249972,0,0);}
.mc3_c01126{transform:matrix(0.237758,0.003566,-0.003750,0.249972,0,0);-ms-transform:matrix(0.237758,0.003566,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.237758,0.003566,-0.003750,0.249972,0,0);}
.m6c_c01126{transform:matrix(0.238235,0.003097,-0.003250,0.249979,0,0);-ms-transform:matrix(0.238235,0.003097,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.238235,0.003097,-0.003250,0.249979,0,0);}
.m9c_c01126{transform:matrix(0.238700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238700,0.000000,0.000000,0.250000,0,0);}
.m1a_c01126{transform:matrix(0.239590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239590,0.000000,0.000000,0.250000,0,0);}
.mda_c01126{transform:matrix(0.239879,0.003838,-0.003999,0.249968,0,0);-ms-transform:matrix(0.239879,0.003838,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.239879,0.003838,-0.003999,0.249968,0,0);}
.m70_c01126{transform:matrix(0.239910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239910,0.000000,0.000000,0.250000,0,0);}
.m59_c01126{transform:matrix(0.240109,0.001681,-0.001750,0.249994,0,0);-ms-transform:matrix(0.240109,0.001681,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.240109,0.001681,-0.001750,0.249994,0,0);}
.m17_c01126{transform:matrix(0.241780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241780,0.000000,0.000000,0.250000,0,0);}
.m86_c01126{transform:matrix(0.242375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242375,0.000000,0.000000,0.250000,0,0);}
.m4a_c01126{transform:matrix(0.242471,0.001455,-0.001500,0.249996,0,0);-ms-transform:matrix(0.242471,0.001455,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.242471,0.001455,-0.001500,0.249996,0,0);}
.m5b_c01126{transform:matrix(0.242509,0.001698,-0.001750,0.249994,0,0);-ms-transform:matrix(0.242509,0.001698,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.242509,0.001698,-0.001750,0.249994,0,0);}
.m43_c01126{transform:matrix(0.242737,0.001942,-0.002000,0.249992,0,0);-ms-transform:matrix(0.242737,0.001942,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.242737,0.001942,-0.002000,0.249992,0,0);}
.m12_c01126{transform:matrix(0.243170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243170,0.000000,0.000000,0.250000,0,0);}
.m5d_c01126{transform:matrix(0.243204,0.001702,-0.001750,0.249994,0,0);-ms-transform:matrix(0.243204,0.001702,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.243204,0.001702,-0.001750,0.249994,0,0);}
.mb2_c01126{transform:matrix(0.243375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243375,0.000000,0.000000,0.250000,0,0);}
.mdc_c01126{transform:matrix(0.243729,0.003900,-0.003999,0.249968,0,0);-ms-transform:matrix(0.243729,0.003900,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.243729,0.003900,-0.003999,0.249968,0,0);}
.m50_c01126{transform:matrix(0.243836,0.001463,-0.001500,0.249996,0,0);-ms-transform:matrix(0.243836,0.001463,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.243836,0.001463,-0.001500,0.249996,0,0);}
.m61_c01126{transform:matrix(0.244469,0.001711,-0.001750,0.249994,0,0);-ms-transform:matrix(0.244469,0.001711,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.244469,0.001711,-0.001750,0.249994,0,0);}
.md9_c01126{transform:matrix(0.244649,0.003914,-0.003999,0.249968,0,0);-ms-transform:matrix(0.244649,0.003914,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.244649,0.003914,-0.003999,0.249968,0,0);}
.m5e_c01126{transform:matrix(0.244854,0.001714,-0.001750,0.249994,0,0);-ms-transform:matrix(0.244854,0.001714,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.244854,0.001714,-0.001750,0.249994,0,0);}
.m9_c01126{transform:matrix(0.245205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245205,0.000000,0.000000,0.250000,0,0);}
.med_c01126{transform:matrix(0.245270,0.004415,-0.004499,0.249960,0,0);-ms-transform:matrix(0.245270,0.004415,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.245270,0.004415,-0.004499,0.249960,0,0);}
.m77_c01126{transform:matrix(0.245975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245975,0.000000,0.000000,0.250000,0,0);}
.m31_c01126{transform:matrix(0.246028,0.000984,-0.001000,0.249998,0,0);-ms-transform:matrix(0.246028,0.000984,-0.001000,0.249998,0,0);-webkit-transform:matrix(0.246028,0.000984,-0.001000,0.249998,0,0);}
.mb9_c01126{transform:matrix(0.246087,0.003691,-0.003750,0.249972,0,0);-ms-transform:matrix(0.246087,0.003691,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.246087,0.003691,-0.003750,0.249972,0,0);}
.me8_c01126{transform:matrix(0.246170,0.004431,-0.004499,0.249960,0,0);-ms-transform:matrix(0.246170,0.004431,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.246170,0.004431,-0.004499,0.249960,0,0);}
.m6a_c01126{transform:matrix(0.247354,0.003216,-0.003250,0.249979,0,0);-ms-transform:matrix(0.247354,0.003216,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.247354,0.003216,-0.003250,0.249979,0,0);}
.m2d_c01126{transform:matrix(0.248103,0.000992,-0.001000,0.249998,0,0);-ms-transform:matrix(0.248103,0.000992,-0.001000,0.249998,0,0);-webkit-transform:matrix(0.248103,0.000992,-0.001000,0.249998,0,0);}
.meb_c01126{transform:matrix(0.248430,0.004472,-0.004499,0.249960,0,0);-ms-transform:matrix(0.248430,0.004472,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.248430,0.004472,-0.004499,0.249960,0,0);}
.mb_c01126{transform:matrix(0.248850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248850,0.000000,0.000000,0.250000,0,0);}
.m93_c01126{transform:matrix(0.248869,0.004231,-0.004249,0.249964,0,0);-ms-transform:matrix(0.248869,0.004231,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.248869,0.004231,-0.004249,0.249964,0,0);}
.m87_c01126{transform:matrix(0.248880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248880,0.000000,0.000000,0.250000,0,0);}
.m1f_c01126{transform:matrix(0.249095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249095,0.000000,0.000000,0.250000,0,0);}
.mf5_c01126{transform:matrix(0.249615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249615,0.000000,0.000000,0.250000,0,0);}
.md7_c01126{transform:matrix(0.249633,0.003994,-0.003999,0.249968,0,0);-ms-transform:matrix(0.249633,0.003994,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.249633,0.003994,-0.003999,0.249968,0,0);}
.m73_c01126{transform:matrix(0.249665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249665,0.000000,0.000000,0.250000,0,0);}
.m8a_c01126{transform:matrix(0.250895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250895,0.000000,0.000000,0.250000,0,0);}
.me0_c01126{transform:matrix(0.251019,0.004518,-0.004499,0.249960,0,0);-ms-transform:matrix(0.251019,0.004518,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.251019,0.004518,-0.004499,0.249960,0,0);}
.m81_c01126{transform:matrix(0.251160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251160,0.000000,0.000000,0.250000,0,0);}
.m8_c01126{transform:matrix(0.251215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251215,0.000000,0.000000,0.250000,0,0);}
.mf1_c01126{transform:matrix(0.251554,0.004528,-0.004499,0.249960,0,0);-ms-transform:matrix(0.251554,0.004528,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.251554,0.004528,-0.004499,0.249960,0,0);}
.m6_c01126{transform:matrix(0.251625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251625,0.000000,0.000000,0.250000,0,0);}
.m26_c01126{transform:matrix(0.251655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251655,0.000000,0.000000,0.250000,0,0);}
.m37_c01126{transform:matrix(0.251753,0.001007,-0.001000,0.249998,0,0);-ms-transform:matrix(0.251753,0.001007,-0.001000,0.249998,0,0);-webkit-transform:matrix(0.251753,0.001007,-0.001000,0.249998,0,0);}
.mf2_c01126{transform:matrix(0.251764,0.004532,-0.004499,0.249960,0,0);-ms-transform:matrix(0.251764,0.004532,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.251764,0.004532,-0.004499,0.249960,0,0);}
.m6e_c01126{transform:matrix(0.253304,0.003293,-0.003250,0.249979,0,0);-ms-transform:matrix(0.253304,0.003293,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.253304,0.003293,-0.003250,0.249979,0,0);}
.me4_c01126{transform:matrix(0.253374,0.004561,-0.004499,0.249960,0,0);-ms-transform:matrix(0.253374,0.004561,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.253374,0.004561,-0.004499,0.249960,0,0);}
.m32_c01126{transform:matrix(0.253533,0.001014,-0.001000,0.249998,0,0);-ms-transform:matrix(0.253533,0.001014,-0.001000,0.249998,0,0);-webkit-transform:matrix(0.253533,0.001014,-0.001000,0.249998,0,0);}
.mee_c01126{transform:matrix(0.254134,0.004574,-0.004499,0.249960,0,0);-ms-transform:matrix(0.254134,0.004574,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.254134,0.004574,-0.004499,0.249960,0,0);}
.m85_c01126{transform:matrix(0.254280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254280,0.000000,0.000000,0.250000,0,0);}
.mc_c01126{transform:matrix(0.254560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254560,0.000000,0.000000,0.250000,0,0);}
.m5a_c01126{transform:matrix(0.255164,0.001786,-0.001750,0.249994,0,0);-ms-transform:matrix(0.255164,0.001786,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.255164,0.001786,-0.001750,0.249994,0,0);}
.m29_c01126{transform:matrix(0.255570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255570,0.000000,0.000000,0.250000,0,0);}
.m20_c01126{transform:matrix(0.255870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255870,0.000000,0.000000,0.250000,0,0);}
.mbe_c01126{transform:matrix(0.256721,0.003851,-0.003750,0.249972,0,0);-ms-transform:matrix(0.256721,0.003851,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.256721,0.003851,-0.003750,0.249972,0,0);}
.mc2_c01126{transform:matrix(0.256736,0.003851,-0.003750,0.249972,0,0);-ms-transform:matrix(0.256736,0.003851,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.256736,0.003851,-0.003750,0.249972,0,0);}
.me1_c01126{transform:matrix(0.257128,0.004628,-0.004499,0.249960,0,0);-ms-transform:matrix(0.257128,0.004628,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.257128,0.004628,-0.004499,0.249960,0,0);}
.m10_c01126{transform:matrix(0.257135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257135,0.000000,0.000000,0.250000,0,0);}
.m90_c01126{transform:matrix(0.257748,0.004382,-0.004249,0.249964,0,0);-ms-transform:matrix(0.257748,0.004382,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.257748,0.004382,-0.004249,0.249964,0,0);}
.mbf_c01126{transform:matrix(0.257926,0.003869,-0.003750,0.249972,0,0);-ms-transform:matrix(0.257926,0.003869,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.257926,0.003869,-0.003750,0.249972,0,0);}
.m46_c01126{transform:matrix(0.258517,0.002068,-0.002000,0.249992,0,0);-ms-transform:matrix(0.258517,0.002068,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.258517,0.002068,-0.002000,0.249992,0,0);}
.mdb_c01126{transform:matrix(0.258667,0.004139,-0.003999,0.249968,0,0);-ms-transform:matrix(0.258667,0.004139,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.258667,0.004139,-0.003999,0.249968,0,0);}
.m40_c01126{transform:matrix(0.259012,0.002072,-0.002000,0.249992,0,0);-ms-transform:matrix(0.259012,0.002072,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.259012,0.002072,-0.002000,0.249992,0,0);}
.m72_c01126{transform:matrix(0.259520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259520,0.000000,0.000000,0.250000,0,0);}
.m69_c01126{transform:matrix(0.259658,0.003376,-0.003250,0.249979,0,0);-ms-transform:matrix(0.259658,0.003376,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.259658,0.003376,-0.003250,0.249979,0,0);}
.me5_c01126{transform:matrix(0.259873,0.004678,-0.004499,0.249960,0,0);-ms-transform:matrix(0.259873,0.004678,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.259873,0.004678,-0.004499,0.249960,0,0);}
.m63_c01126{transform:matrix(0.260884,0.001826,-0.001750,0.249994,0,0);-ms-transform:matrix(0.260884,0.001826,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.260884,0.001826,-0.001750,0.249994,0,0);}
.m38_c01126{transform:matrix(0.261028,0.001044,-0.001000,0.249998,0,0);-ms-transform:matrix(0.261028,0.001044,-0.001000,0.249998,0,0);-webkit-transform:matrix(0.261028,0.001044,-0.001000,0.249998,0,0);}
.m6f_c01126{transform:matrix(0.261908,0.003405,-0.003250,0.249979,0,0);-ms-transform:matrix(0.261908,0.003405,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.261908,0.003405,-0.003250,0.249979,0,0);}
.m89_c01126{transform:matrix(0.262130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262130,0.000000,0.000000,0.250000,0,0);}
.me2_c01126{transform:matrix(0.262397,0.004723,-0.004499,0.249960,0,0);-ms-transform:matrix(0.262397,0.004723,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.262397,0.004723,-0.004499,0.249960,0,0);}
.m1b_c01126{transform:matrix(0.262455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262455,0.000000,0.000000,0.250000,0,0);}
.m3f_c01126{transform:matrix(0.262807,0.002102,-0.002000,0.249992,0,0);-ms-transform:matrix(0.262807,0.002102,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.262807,0.002102,-0.002000,0.249992,0,0);}
.m19_c01126{transform:matrix(0.262900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262900,0.000000,0.000000,0.250000,0,0);}
.ma5_c01126{transform:matrix(0.263236,0.004212,-0.003999,0.249968,0,0);-ms-transform:matrix(0.263236,0.004212,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.263236,0.004212,-0.003999,0.249968,0,0);}
.m92_c01126{transform:matrix(0.263302,0.004476,-0.004249,0.249964,0,0);-ms-transform:matrix(0.263302,0.004476,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.263302,0.004476,-0.004249,0.249964,0,0);}
.m2f_c01126{transform:matrix(0.263393,0.001054,-0.001000,0.249998,0,0);-ms-transform:matrix(0.263393,0.001054,-0.001000,0.249998,0,0);-webkit-transform:matrix(0.263393,0.001054,-0.001000,0.249998,0,0);}
.m82_c01126{transform:matrix(0.263905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263905,0.000000,0.000000,0.250000,0,0);}
.m9f_c01126{transform:matrix(0.264666,0.004235,-0.003999,0.249968,0,0);-ms-transform:matrix(0.264666,0.004235,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.264666,0.004235,-0.003999,0.249968,0,0);}
.mc4_c01126{transform:matrix(0.264725,0.003971,-0.003750,0.249972,0,0);-ms-transform:matrix(0.264725,0.003971,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.264725,0.003971,-0.003750,0.249972,0,0);}
.m35_c01126{transform:matrix(0.264808,0.001059,-0.001000,0.249998,0,0);-ms-transform:matrix(0.264808,0.001059,-0.001000,0.249998,0,0);-webkit-transform:matrix(0.264808,0.001059,-0.001000,0.249998,0,0);}
.m74_c01126{transform:matrix(0.264990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264990,0.000000,0.000000,0.250000,0,0);}
.md4_c01126{transform:matrix(0.265461,0.004247,-0.003999,0.249968,0,0);-ms-transform:matrix(0.265461,0.004247,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.265461,0.004247,-0.003999,0.249968,0,0);}
.m55_c01126{transform:matrix(0.265655,0.001594,-0.001500,0.249996,0,0);-ms-transform:matrix(0.265655,0.001594,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.265655,0.001594,-0.001500,0.249996,0,0);}
.ma9_c01126{transform:matrix(0.265805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265805,0.000000,0.000000,0.250000,0,0);}
.mb0_c01126{transform:matrix(0.266030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266030,0.000000,0.000000,0.250000,0,0);}
.m1c_c01126{transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);}
.m44_c01126{transform:matrix(0.267901,0.002143,-0.002000,0.249992,0,0);-ms-transform:matrix(0.267901,0.002143,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.267901,0.002143,-0.002000,0.249992,0,0);}
.md2_c01126{transform:matrix(0.268426,0.004295,-0.003999,0.249968,0,0);-ms-transform:matrix(0.268426,0.004295,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.268426,0.004295,-0.003999,0.249968,0,0);}
.m62_c01126{transform:matrix(0.268908,0.001882,-0.001750,0.249994,0,0);-ms-transform:matrix(0.268908,0.001882,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.268908,0.001882,-0.001750,0.249994,0,0);}
.m53_c01126{transform:matrix(0.268910,0.001613,-0.001500,0.249996,0,0);-ms-transform:matrix(0.268910,0.001613,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.268910,0.001613,-0.001500,0.249996,0,0);}
.mac_c01126{transform:matrix(0.269585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269585,0.000000,0.000000,0.250000,0,0);}
.m3a_c01126{transform:matrix(0.269966,0.002160,-0.002000,0.249992,0,0);-ms-transform:matrix(0.269966,0.002160,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.269966,0.002160,-0.002000,0.249992,0,0);}
.md6_c01126{transform:matrix(0.270180,0.004323,-0.003999,0.249968,0,0);-ms-transform:matrix(0.270180,0.004323,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.270180,0.004323,-0.003999,0.249968,0,0);}
.mf3_c01126{transform:matrix(0.270221,0.004864,-0.004499,0.249960,0,0);-ms-transform:matrix(0.270221,0.004864,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.270221,0.004864,-0.004499,0.249960,0,0);}
.md5_c01126{transform:matrix(0.271340,0.004341,-0.003999,0.249968,0,0);-ms-transform:matrix(0.271340,0.004341,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.271340,0.004341,-0.003999,0.249968,0,0);}
.m18_c01126{transform:matrix(0.271760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271760,0.000000,0.000000,0.250000,0,0);}
.m3b_c01126{transform:matrix(0.272531,0.002180,-0.002000,0.249992,0,0);-ms-transform:matrix(0.272531,0.002180,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.272531,0.002180,-0.002000,0.249992,0,0);}
.m5f_c01126{transform:matrix(0.272638,0.001908,-0.001750,0.249994,0,0);-ms-transform:matrix(0.272638,0.001908,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.272638,0.001908,-0.001750,0.249994,0,0);}
.mae_c01126{transform:matrix(0.272705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272705,0.000000,0.000000,0.250000,0,0);}
.m8f_c01126{transform:matrix(0.273326,0.004647,-0.004249,0.249964,0,0);-ms-transform:matrix(0.273326,0.004647,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.273326,0.004647,-0.004249,0.249964,0,0);}
.ma2_c01126{transform:matrix(0.273360,0.004374,-0.003999,0.249968,0,0);-ms-transform:matrix(0.273360,0.004374,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.273360,0.004374,-0.003999,0.249968,0,0);}
.maf_c01126{transform:matrix(0.274525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274525,0.000000,0.000000,0.250000,0,0);}
.m5c_c01126{transform:matrix(0.275448,0.001928,-0.001750,0.249994,0,0);-ms-transform:matrix(0.275448,0.001928,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.275448,0.001928,-0.001750,0.249994,0,0);}
.ma4_c01126{transform:matrix(0.275565,0.004409,-0.003999,0.249968,0,0);-ms-transform:matrix(0.275565,0.004409,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.275565,0.004409,-0.003999,0.249968,0,0);}
.m3d_c01126{transform:matrix(0.276091,0.002209,-0.002000,0.249992,0,0);-ms-transform:matrix(0.276091,0.002209,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.276091,0.002209,-0.002000,0.249992,0,0);}
.me3_c01126{transform:matrix(0.276115,0.004970,-0.004499,0.249960,0,0);-ms-transform:matrix(0.276115,0.004970,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.276115,0.004970,-0.004499,0.249960,0,0);}
.mb4_c01126{transform:matrix(0.276345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276345,0.000000,0.000000,0.250000,0,0);}
.m47_c01126{transform:matrix(0.276436,0.002211,-0.002000,0.249992,0,0);-ms-transform:matrix(0.276436,0.002211,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.276436,0.002211,-0.002000,0.249992,0,0);}
.mf4_c01126{transform:matrix(0.276645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276645,0.000000,0.000000,0.250000,0,0);}
.m51_c01126{transform:matrix(0.276730,0.001660,-0.001500,0.249996,0,0);-ms-transform:matrix(0.276730,0.001660,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.276730,0.001660,-0.001500,0.249996,0,0);}
.m13_c01126{transform:matrix(0.276840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276840,0.000000,0.000000,0.250000,0,0);}
.m4c_c01126{transform:matrix(0.277360,0.001664,-0.001500,0.249996,0,0);-ms-transform:matrix(0.277360,0.001664,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.277360,0.001664,-0.001500,0.249996,0,0);}
.m1e_c01126{transform:matrix(0.277470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277470,0.000000,0.000000,0.250000,0,0);}
.m57_c01126{transform:matrix(0.277855,0.001667,-0.001500,0.249996,0,0);-ms-transform:matrix(0.277855,0.001667,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.277855,0.001667,-0.001500,0.249996,0,0);}
.m45_c01126{transform:matrix(0.278321,0.002227,-0.002000,0.249992,0,0);-ms-transform:matrix(0.278321,0.002227,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.278321,0.002227,-0.002000,0.249992,0,0);}
.m96_c01126{transform:matrix(0.278965,0.004742,-0.004249,0.249964,0,0);-ms-transform:matrix(0.278965,0.004742,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.278965,0.004742,-0.004249,0.249964,0,0);}
.ma1_c01126{transform:matrix(0.280079,0.004481,-0.003999,0.249968,0,0);-ms-transform:matrix(0.280079,0.004481,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.280079,0.004481,-0.003999,0.249968,0,0);}
.m94_c01126{transform:matrix(0.281364,0.004783,-0.004249,0.249964,0,0);-ms-transform:matrix(0.281364,0.004783,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.281364,0.004783,-0.004249,0.249964,0,0);}
.m56_c01126{transform:matrix(0.281745,0.001690,-0.001500,0.249996,0,0);-ms-transform:matrix(0.281745,0.001690,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.281745,0.001690,-0.001500,0.249996,0,0);}
.m4b_c01126{transform:matrix(0.281810,0.001691,-0.001500,0.249996,0,0);-ms-transform:matrix(0.281810,0.001691,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.281810,0.001691,-0.001500,0.249996,0,0);}
.m49_c01126{transform:matrix(0.282095,0.001693,-0.001500,0.249996,0,0);-ms-transform:matrix(0.282095,0.001693,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.282095,0.001693,-0.001500,0.249996,0,0);}
.m4e_c01126{transform:matrix(0.283875,0.001703,-0.001500,0.249996,0,0);-ms-transform:matrix(0.283875,0.001703,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.283875,0.001703,-0.001500,0.249996,0,0);}
.m4f_c01126{transform:matrix(0.284165,0.001705,-0.001500,0.249996,0,0);-ms-transform:matrix(0.284165,0.001705,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.284165,0.001705,-0.001500,0.249996,0,0);}
.mb3_c01126{transform:matrix(0.284745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284745,0.000000,0.000000,0.250000,0,0);}
.m14_c01126{transform:matrix(0.285330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285330,0.000000,0.000000,0.250000,0,0);}
.mde_c01126{transform:matrix(0.286199,0.005152,-0.004499,0.249960,0,0);-ms-transform:matrix(0.286199,0.005152,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.286199,0.005152,-0.004499,0.249960,0,0);}
.m36_c01126{transform:matrix(0.287203,0.001149,-0.001000,0.249998,0,0);-ms-transform:matrix(0.287203,0.001149,-0.001000,0.249998,0,0);-webkit-transform:matrix(0.287203,0.001149,-0.001000,0.249998,0,0);}
.m3e_c01126{transform:matrix(0.287321,0.002299,-0.002000,0.249992,0,0);-ms-transform:matrix(0.287321,0.002299,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.287321,0.002299,-0.002000,0.249992,0,0);}
.ma6_c01126{transform:matrix(0.287503,0.004600,-0.003999,0.249968,0,0);-ms-transform:matrix(0.287503,0.004600,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.287503,0.004600,-0.003999,0.249968,0,0);}
.m2c_c01126{transform:matrix(0.288133,0.001153,-0.001000,0.249998,0,0);-ms-transform:matrix(0.288133,0.001153,-0.001000,0.249998,0,0);-webkit-transform:matrix(0.288133,0.001153,-0.001000,0.249998,0,0);}
.mdf_c01126{transform:matrix(0.288938,0.005201,-0.004499,0.249960,0,0);-ms-transform:matrix(0.288938,0.005201,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.288938,0.005201,-0.004499,0.249960,0,0);}
.m76_c01126{transform:matrix(0.289225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289225,0.000000,0.000000,0.250000,0,0);}
.m34_c01126{transform:matrix(0.292368,0.001169,-0.001000,0.249998,0,0);-ms-transform:matrix(0.292368,0.001169,-0.001000,0.249998,0,0);-webkit-transform:matrix(0.292368,0.001169,-0.001000,0.249998,0,0);}
.m41_c01126{transform:matrix(0.292991,0.002344,-0.002000,0.249992,0,0);-ms-transform:matrix(0.292991,0.002344,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.292991,0.002344,-0.002000,0.249992,0,0);}
.m8e_c01126{transform:matrix(0.294517,0.005007,-0.004249,0.249964,0,0);-ms-transform:matrix(0.294517,0.005007,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.294517,0.005007,-0.004249,0.249964,0,0);}
.m30_c01126{transform:matrix(0.298458,0.001194,-0.001000,0.249998,0,0);-ms-transform:matrix(0.298458,0.001194,-0.001000,0.249998,0,0);-webkit-transform:matrix(0.298458,0.001194,-0.001000,0.249998,0,0);}
.m2e_c01126{transform:matrix(0.299833,0.001199,-0.001000,0.249998,0,0);-ms-transform:matrix(0.299833,0.001199,-0.001000,0.249998,0,0);-webkit-transform:matrix(0.299833,0.001199,-0.001000,0.249998,0,0);}
.m60_c01126{transform:matrix(0.302588,0.002118,-0.001750,0.249994,0,0);-ms-transform:matrix(0.302588,0.002118,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.302588,0.002118,-0.001750,0.249994,0,0);}
.m33_c01126{transform:matrix(0.303133,0.001213,-0.001000,0.249998,0,0);-ms-transform:matrix(0.303133,0.001213,-0.001000,0.249998,0,0);-webkit-transform:matrix(0.303133,0.001213,-0.001000,0.249998,0,0);}
.m8c_c01126{transform:matrix(0.303690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303690,0.000000,0.000000,0.250000,0,0);}
.m65_c01126{transform:matrix(0.305085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305085,0.000000,0.000000,0.250000,0,0);}
.m42_c01126{transform:matrix(0.308935,0.002471,-0.002000,0.249992,0,0);-ms-transform:matrix(0.308935,0.002471,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.308935,0.002471,-0.002000,0.249992,0,0);}
.m2b_c01126{transform:matrix(0.336647,0.001347,-0.001000,0.249998,0,0);-ms-transform:matrix(0.336647,0.001347,-0.001000,0.249998,0,0);-webkit-transform:matrix(0.336647,0.001347,-0.001000,0.249998,0,0);}
.ma7_c01126{transform:matrix(0.354650,0.005674,-0.003999,0.249968,0,0);-ms-transform:matrix(0.354650,0.005674,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.354650,0.005674,-0.003999,0.249968,0,0);}
.m66_c01126{transform:matrix(0.365320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365320,0.000000,0.000000,0.250000,0,0);}
.mf6_c01126{transform:matrix(0.368470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368470,0.000000,0.000000,0.250000,0,0);}
.m64_c01126{transform:matrix(0.381716,0.002672,-0.001750,0.249994,0,0);-ms-transform:matrix(0.381716,0.002672,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.381716,0.002672,-0.001750,0.249994,0,0);}
.mbd_c01126{transform:matrix(0.539329,0.008090,-0.003750,0.249972,0,0);-ms-transform:matrix(0.539329,0.008090,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.539329,0.008090,-0.003750,0.249972,0,0);}
.m1_c01126{transform:matrix(0.975000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.975000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.975000,0.000000,0.000000,0.250000,0,0);}
.m0_c01126{transform:matrix(3.181495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.181495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.181495,0.000000,0.000000,0.250000,0,0);}
.v0_c01126{vertical-align:0.000000px;}
.ls0_c01126{letter-spacing:0.000000px;}
.sc__c01126{text-shadow:none;}
.sc0_c01126{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__c01126{-webkit-text-stroke:0px transparent;}
.sc0_c01126{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01126{word-spacing:0.000000px;}
.fc0_c01126{color:transparent;}
.fs0_c01126{font-size:18.000000px;}
.fs2_c01126{font-size:36.000000px;}
.fsa_c01126{font-size:54.000000px;}
.fsd_c01126{font-size:66.000000px;}
.fs5_c01126{font-size:66.000528px;}
.fs3_c01126{font-size:72.000000px;}
.fs6_c01126{font-size:72.000576px;}
.fs8_c01126{font-size:72.001296px;}
.fs9_c01126{font-size:72.001764px;}
.fs7_c01126{font-size:72.002304px;}
.fs10_c01126{font-size:72.009215px;}
.fse_c01126{font-size:72.010403px;}
.fs1_c01126{font-size:78.000000px;}
.fsb_c01126{font-size:78.006591px;}
.fs12_c01126{font-size:78.008775px;}
.fs14_c01126{font-size:78.012635px;}
.fsf_c01126{font-size:84.000000px;}
.fs13_c01126{font-size:90.005445px;}
.fsc_c01126{font-size:96.000000px;}
.fs4_c01126{font-size:102.000000px;}
.fs11_c01126{font-size:120.000000px;}
.y0_c01126{bottom:0.000000px;}
.yc5_c01126{bottom:51.547500px;}
.yc4_c01126{bottom:77.928729px;}
.yc3_c01126{bottom:78.990357px;}
.yc2_c01126{bottom:80.273181px;}
.yc1_c01126{bottom:81.094686px;}
.yc0_c01126{bottom:81.730299px;}
.ybf_c01126{bottom:83.422869px;}
.ybe_c01126{bottom:84.039339px;}
.ybd_c01126{bottom:84.869187px;}
.ybc_c01126{bottom:86.538186px;}
.ybb_c01126{bottom:87.393915px;}
.yba_c01126{bottom:88.020564px;}
.yb9_c01126{bottom:89.451450px;}
.yb8_c01126{bottom:90.274413px;}
.yb7_c01126{bottom:90.718317px;}
.yb6_c01126{bottom:114.329208px;}
.yb5_c01126{bottom:116.686443px;}
.yb4_c01126{bottom:117.297966px;}
.yb3_c01126{bottom:119.720271px;}
.yb2_c01126{bottom:121.688436px;}
.yb1_c01126{bottom:123.452859px;}
.yb0_c01126{bottom:124.633029px;}
.yaf_c01126{bottom:125.823000px;}
.yae_c01126{bottom:157.812168px;}
.yad_c01126{bottom:157.812552px;}
.yac_c01126{bottom:184.646328px;}
.yab_c01126{bottom:185.168904px;}
.yaa_c01126{bottom:186.426624px;}
.ya9_c01126{bottom:186.936384px;}
.ya8_c01126{bottom:187.653552px;}
.ya7_c01126{bottom:188.871912px;}
.ya6_c01126{bottom:190.647696px;}
.ya5_c01126{bottom:192.090672px;}
.ya4_c01126{bottom:192.781704px;}
.ya3_c01126{bottom:194.202528px;}
.ya2_c01126{bottom:194.844336px;}
.ya1_c01126{bottom:195.213000px;}
.ya0_c01126{bottom:221.768552px;}
.y9f_c01126{bottom:222.118698px;}
.y9e_c01126{bottom:223.093386px;}
.y9d_c01126{bottom:224.183475px;}
.y9c_c01126{bottom:224.679234px;}
.y9b_c01126{bottom:225.047877px;}
.y9a_c01126{bottom:225.876952px;}
.y99_c01126{bottom:226.752756px;}
.y98_c01126{bottom:227.114981px;}
.y97_c01126{bottom:227.842416px;}
.y96_c01126{bottom:228.171277px;}
.y95_c01126{bottom:228.421500px;}
.y94_c01126{bottom:254.253990px;}
.y93_c01126{bottom:255.000000px;}
.y92_c01126{bottom:256.652873px;}
.y91_c01126{bottom:257.167403px;}
.y90_c01126{bottom:257.823615px;}
.y8f_c01126{bottom:258.663945px;}
.y8e_c01126{bottom:259.469805px;}
.y8d_c01126{bottom:261.121778px;}
.y8c_c01126{bottom:261.801075px;}
.y8b_c01126{bottom:262.623315px;}
.y8a_c01126{bottom:263.141647px;}
.y89_c01126{bottom:264.445297px;}
.y88_c01126{bottom:265.067400px;}
.y87_c01126{bottom:265.413000px;}
.y86_c01126{bottom:296.295000px;}
.y85_c01126{bottom:327.259500px;}
.y84_c01126{bottom:328.843500px;}
.y83_c01126{bottom:329.272500px;}
.y82_c01126{bottom:329.707500px;}
.y81_c01126{bottom:330.711000px;}
.y80_c01126{bottom:332.308500px;}
.y7f_c01126{bottom:333.733500px;}
.y7e_c01126{bottom:334.165500px;}
.y7d_c01126{bottom:335.313000px;}
.y7c_c01126{bottom:335.859000px;}
.y7b_c01126{bottom:336.151500px;}
.y7a_c01126{bottom:370.975500px;}
.y79_c01126{bottom:398.826348px;}
.y78_c01126{bottom:400.788060px;}
.y77_c01126{bottom:401.686500px;}
.y76_c01126{bottom:403.120764px;}
.y75_c01126{bottom:403.592700px;}
.y74_c01126{bottom:405.025932px;}
.y73_c01126{bottom:407.039340px;}
.y72_c01126{bottom:407.700204px;}
.y71_c01126{bottom:409.103964px;}
.y70_c01126{bottom:409.767084px;}
.y6f_c01126{bottom:410.131500px;}
.y6e_c01126{bottom:440.304000px;}
.y6d_c01126{bottom:471.113601px;}
.y6c_c01126{bottom:471.683067px;}
.y6b_c01126{bottom:473.936732px;}
.y6a_c01126{bottom:475.056462px;}
.y69_c01126{bottom:476.360302px;}
.y68_c01126{bottom:477.140653px;}
.y67_c01126{bottom:478.416648px;}
.y66_c01126{bottom:480.330321px;}
.y65_c01126{bottom:481.016450px;}
.y64_c01126{bottom:481.413000px;}
.y63_c01126{bottom:512.397000px;}
.y62_c01126{bottom:542.190000px;}
.y61_c01126{bottom:543.403500px;}
.y60_c01126{bottom:543.898500px;}
.y5f_c01126{bottom:544.741500px;}
.y5e_c01126{bottom:545.478000px;}
.y5d_c01126{bottom:546.684000px;}
.y5c_c01126{bottom:547.420500px;}
.y5b_c01126{bottom:547.797000px;}
.y5a_c01126{bottom:548.884500px;}
.y59_c01126{bottom:549.721500px;}
.y1_c01126{bottom:565.380000px;}
.y58_c01126{bottom:579.034500px;}
.y57_c01126{bottom:579.618000px;}
.y56_c01126{bottom:580.120500px;}
.y55_c01126{bottom:580.527000px;}
.y54_c01126{bottom:581.220000px;}
.y53_c01126{bottom:581.718000px;}
.y52_c01126{bottom:582.706500px;}
.y51_c01126{bottom:583.608000px;}
.y50_c01126{bottom:583.881000px;}
.y4f_c01126{bottom:584.281500px;}
.y4e_c01126{bottom:617.991000px;}
.y4d_c01126{bottom:647.811384px;}
.y4c_c01126{bottom:649.383961px;}
.y4b_c01126{bottom:649.819162px;}
.y4a_c01126{bottom:650.809119px;}
.y49_c01126{bottom:651.556632px;}
.y48_c01126{bottom:652.686930px;}
.y47_c01126{bottom:654.975996px;}
.y46_c01126{bottom:655.388226px;}
.y45_c01126{bottom:655.831500px;}
.y44_c01126{bottom:688.314000px;}
.y43_c01126{bottom:719.309367px;}
.y42_c01126{bottom:719.700650px;}
.y41_c01126{bottom:720.173150px;}
.y40_c01126{bottom:720.471801px;}
.y3f_c01126{bottom:720.709951px;}
.y3e_c01126{bottom:721.333662px;}
.y3d_c01126{bottom:721.564252px;}
.y3c_c01126{bottom:721.866516px;}
.y3b_c01126{bottom:722.494164px;}
.y3a_c01126{bottom:722.800207px;}
.y39_c01126{bottom:723.032814px;}
.y38_c01126{bottom:723.633792px;}
.y37_c01126{bottom:723.870000px;}
.y36_c01126{bottom:753.718728px;}
.y35_c01126{bottom:755.056887px;}
.y34_c01126{bottom:755.989965px;}
.y33_c01126{bottom:756.497553px;}
.y32_c01126{bottom:757.317129px;}
.y31_c01126{bottom:757.704795px;}
.y30_c01126{bottom:759.160350px;}
.y2f_c01126{bottom:759.781593px;}
.y2e_c01126{bottom:790.499691px;}
.y2d_c01126{bottom:791.108838px;}
.y2c_c01126{bottom:791.368056px;}
.y2b_c01126{bottom:792.033894px;}
.y2a_c01126{bottom:792.898992px;}
.y29_c01126{bottom:793.025244px;}
.y28_c01126{bottom:793.817559px;}
.y27_c01126{bottom:794.070000px;}
.y25_c01126{bottom:829.340712px;}
.y26_c01126{bottom:829.341084px;}
.y22_c01126{bottom:829.341132px;}
.y23_c01126{bottom:829.341144px;}
.y24_c01126{bottom:829.341408px;}
.y21_c01126{bottom:859.954368px;}
.y20_c01126{bottom:860.676144px;}
.y1f_c01126{bottom:861.116580px;}
.y1e_c01126{bottom:861.572580px;}
.y1d_c01126{bottom:862.451712px;}
.y1c_c01126{bottom:863.333052px;}
.y1b_c01126{bottom:863.691552px;}
.y1a_c01126{bottom:864.320160px;}
.y19_c01126{bottom:865.028604px;}
.y18_c01126{bottom:865.350000px;}
.y17_c01126{bottom:901.410144px;}
.y16_c01126{bottom:901.410864px;}
.y15_c01126{bottom:932.987058px;}
.y14_c01126{bottom:933.121050px;}
.y13_c01126{bottom:933.428850px;}
.y12_c01126{bottom:933.749640px;}
.y11_c01126{bottom:933.878166px;}
.y10_c01126{bottom:934.012074px;}
.yf_c01126{bottom:934.406298px;}
.ye_c01126{bottom:934.633098px;}
.yd_c01126{bottom:935.120184px;}
.yc_c01126{bottom:935.251932px;}
.yb_c01126{bottom:935.516532px;}
.ya_c01126{bottom:935.681700px;}
.y9_c01126{bottom:935.820000px;}
.y8_c01126{bottom:970.858500px;}
.y7_c01126{bottom:1001.892000px;}
.y6_c01126{bottom:1040.130000px;}
.y5_c01126{bottom:1077.151500px;}
.y4_c01126{bottom:1109.328000px;}
.y3_c01126{bottom:1155.330000px;}
.y2_c01126{bottom:1182.594000px;}
.h2_c01126{height:18.000000px;}
.h4_c01126{height:36.000000px;}
.hc_c01126{height:54.000000px;}
.hf_c01126{height:66.000000px;}
.h7_c01126{height:66.000528px;}
.h5_c01126{height:72.000000px;}
.h8_c01126{height:72.000576px;}
.ha_c01126{height:72.001296px;}
.hb_c01126{height:72.001764px;}
.h9_c01126{height:72.002304px;}
.h12_c01126{height:72.009215px;}
.h10_c01126{height:72.010403px;}
.h3_c01126{height:78.000000px;}
.hd_c01126{height:78.006591px;}
.h14_c01126{height:78.008775px;}
.h16_c01126{height:78.012635px;}
.h11_c01126{height:84.000000px;}
.h15_c01126{height:90.005445px;}
.he_c01126{height:96.000000px;}
.h6_c01126{height:102.000000px;}
.h13_c01126{height:120.000000px;}
.h0_c01126{height:1246.320000px;}
.h1_c01126{height:1246.500000px;}
.w0_c01126{width:898.500000px;}
.x0_c01126{left:0.000000px;}
.x6_c01126{left:108.270000px;}
.x14_c01126{left:120.690000px;}
.x62_c01126{left:130.678500px;}
.x5e_c01126{left:142.212000px;}
.x54_c01126{left:143.343000px;}
.x15_c01126{left:154.710000px;}
.x6a_c01126{left:172.381500px;}
.x4d_c01126{left:184.009500px;}
.x44_c01126{left:185.821500px;}
.x2a_c01126{left:194.826000px;}
.x7_c01126{left:197.100000px;}
.x10_c01126{left:228.690000px;}
.x5d_c01126{left:233.280000px;}
.x6b_c01126{left:238.512000px;}
.x8_c01126{left:240.570000px;}
.x1d_c01126{left:250.020000px;}
.x30_c01126{left:251.103120px;}
.x11_c01126{left:252.180000px;}
.x38_c01126{left:254.425878px;}
.x23_c01126{left:262.384500px;}
.x63_c01126{left:271.122000px;}
.x3d_c01126{left:272.889000px;}
.x2b_c01126{left:283.381500px;}
.x31_c01126{left:284.853780px;}
.x49_c01126{left:286.200000px;}
.x12_c01126{left:294.840000px;}
.x55_c01126{left:296.272500px;}
.x1e_c01126{left:306.180000px;}
.x20_c01126{left:307.260000px;}
.x58_c01126{left:313.555500px;}
.x70_c01126{left:315.132000px;}
.x3e_c01126{left:316.609500px;}
.x57_c01126{left:327.240000px;}
.x33_c01126{left:328.519500px;}
.x1f_c01126{left:331.290000px;}
.x76_c01126{left:339.696258px;}
.x34_c01126{left:349.561500px;}
.x9_c01126{left:350.730000px;}
.x64_c01126{left:360.493500px;}
.x21_c01126{left:361.800000px;}
.x13_c01126{left:372.330000px;}
.x50_c01126{left:383.773500px;}
.x4a_c01126{left:394.470000px;}
.x3f_c01126{left:406.273500px;}
.x22_c01126{left:407.430000px;}
.x5f_c01126{left:415.321500px;}
.x16_c01126{left:417.960000px;}
.xa_c01126{left:419.040000px;}
.x6c_c01126{left:426.430500px;}
.x39_c01126{left:427.552650px;}
.x2_c01126{left:429.300000px;}
.x4b_c01126{left:437.400000px;}
.x17_c01126{left:440.100000px;}
.x40_c01126{left:449.454000px;}
.x3_c01126{left:451.170000px;}
.x3a_c01126{left:459.912489px;}
.x32_c01126{left:461.169060px;}
.xb_c01126{left:462.240000px;}
.x77_c01126{left:471.185382px;}
.x24_c01126{left:473.793000px;}
.x41_c01126{left:482.395500px;}
.x35_c01126{left:493.744500px;}
.x4_c01126{left:495.180000px;}
.x78_c01126{left:503.599788px;}
.x6d_c01126{left:505.012500px;}
.x45_c01126{left:506.350500px;}
.x65_c01126{left:515.911500px;}
.x2c_c01126{left:516.937500px;}
.x4e_c01126{left:526.359000px;}
.x18_c01126{left:527.850000px;}
.x59_c01126{left:528.970500px;}
.x4c_c01126{left:531.630000px;}
.x60_c01126{left:538.171500px;}
.xc_c01126{left:550.800000px;}
.x5a_c01126{left:558.466500px;}
.x51_c01126{left:560.344500px;}
.x3b_c01126{left:570.602511px;}
.x25_c01126{left:572.349000px;}
.x5_c01126{left:573.480000px;}
.x46_c01126{left:582.501000px;}
.x71_c01126{left:592.452000px;}
.x74_c01126{left:593.622000px;}
.x6e_c01126{left:604.111500px;}
.x19_c01126{left:605.340000px;}
.x47_c01126{left:615.978000px;}
.x66_c01126{left:625.657500px;}
.x2d_c01126{left:626.829000px;}
.x26_c01126{left:637.957500px;}
.x36_c01126{left:647.920500px;}
.x1a_c01126{left:651.510000px;}
.xd_c01126{left:661.770000px;}
.x67_c01126{left:669.405000px;}
.x52_c01126{left:682.002000px;}
.x2e_c01126{left:683.829000px;}
.x4f_c01126{left:692.151000px;}
.x1_c01126{left:694.170000px;}
.x5b_c01126{left:704.260500px;}
.x42_c01126{left:715.683000px;}
.x27_c01126{left:718.155000px;}
.x6f_c01126{left:724.551000px;}
.x56_c01126{left:725.863500px;}
.xe_c01126{left:730.620000px;}
.x48_c01126{left:736.945500px;}
.x2f_c01126{left:738.883500px;}
.x72_c01126{left:747.742500px;}
.x37_c01126{left:749.445000px;}
.x75_c01126{left:758.553000px;}
.x3c_c01126{left:759.885198px;}
.x1b_c01126{left:761.940000px;}
.x43_c01126{left:771.580500px;}
.xf_c01126{left:773.010000px;}
.x73_c01126{left:780.403500px;}
.x53_c01126{left:792.297000px;}
.x28_c01126{left:795.105000px;}
.x1c_c01126{left:798.120000px;}
.x61_c01126{left:803.607000px;}
.x68_c01126{left:813.898500px;}
.x5c_c01126{left:826.867500px;}
.x29_c01126{left:828.603000px;}
.x69_c01126{left:863.632500px;}
@media print{
.v0_c01126{vertical-align:0.000000pt;}
.ls0_c01126{letter-spacing:0.000000pt;}
.ws0_c01126{word-spacing:0.000000pt;}
.fs0_c01126{font-size:16.000000pt;}
.fs2_c01126{font-size:32.000000pt;}
.fsa_c01126{font-size:48.000000pt;}
.fsd_c01126{font-size:58.666667pt;}
.fs5_c01126{font-size:58.667136pt;}
.fs3_c01126{font-size:64.000000pt;}
.fs6_c01126{font-size:64.000512pt;}
.fs8_c01126{font-size:64.001152pt;}
.fs9_c01126{font-size:64.001568pt;}
.fs7_c01126{font-size:64.002048pt;}
.fs10_c01126{font-size:64.008191pt;}
.fse_c01126{font-size:64.009247pt;}
.fs1_c01126{font-size:69.333333pt;}
.fsb_c01126{font-size:69.339192pt;}
.fs12_c01126{font-size:69.341133pt;}
.fs14_c01126{font-size:69.344564pt;}
.fsf_c01126{font-size:74.666667pt;}
.fs13_c01126{font-size:80.004840pt;}
.fsc_c01126{font-size:85.333333pt;}
.fs4_c01126{font-size:90.666667pt;}
.fs11_c01126{font-size:106.666667pt;}
.y0_c01126{bottom:0.000000pt;}
.yc5_c01126{bottom:45.820000pt;}
.yc4_c01126{bottom:69.269981pt;}
.yc3_c01126{bottom:70.213651pt;}
.yc2_c01126{bottom:71.353939pt;}
.yc1_c01126{bottom:72.084165pt;}
.yc0_c01126{bottom:72.649155pt;}
.ybf_c01126{bottom:74.153661pt;}
.ybe_c01126{bottom:74.701635pt;}
.ybd_c01126{bottom:75.439277pt;}
.ybc_c01126{bottom:76.922832pt;}
.ybb_c01126{bottom:77.683480pt;}
.yba_c01126{bottom:78.240501pt;}
.yb9_c01126{bottom:79.512400pt;}
.yb8_c01126{bottom:80.243923pt;}
.yb7_c01126{bottom:80.638504pt;}
.yb6_c01126{bottom:101.625963pt;}
.yb5_c01126{bottom:103.721283pt;}
.yb4_c01126{bottom:104.264859pt;}
.yb3_c01126{bottom:106.418019pt;}
.yb2_c01126{bottom:108.167499pt;}
.yb1_c01126{bottom:109.735875pt;}
.yb0_c01126{bottom:110.784915pt;}
.yaf_c01126{bottom:111.842667pt;}
.yae_c01126{bottom:140.277483pt;}
.yad_c01126{bottom:140.277824pt;}
.yac_c01126{bottom:164.130069pt;}
.yab_c01126{bottom:164.594581pt;}
.yaa_c01126{bottom:165.712555pt;}
.ya9_c01126{bottom:166.165675pt;}
.ya8_c01126{bottom:166.803157pt;}
.ya7_c01126{bottom:167.886144pt;}
.ya6_c01126{bottom:169.464619pt;}
.ya5_c01126{bottom:170.747264pt;}
.ya4_c01126{bottom:171.361515pt;}
.ya3_c01126{bottom:172.624469pt;}
.ya2_c01126{bottom:173.194965pt;}
.ya1_c01126{bottom:173.522667pt;}
.ya0_c01126{bottom:197.127601pt;}
.y9f_c01126{bottom:197.438843pt;}
.y9e_c01126{bottom:198.305232pt;}
.y9d_c01126{bottom:199.274200pt;}
.y9c_c01126{bottom:199.714875pt;}
.y9b_c01126{bottom:200.042557pt;}
.y9a_c01126{bottom:200.779513pt;}
.y99_c01126{bottom:201.558005pt;}
.y98_c01126{bottom:201.879983pt;}
.y97_c01126{bottom:202.526592pt;}
.y96_c01126{bottom:202.818913pt;}
.y95_c01126{bottom:203.041333pt;}
.y94_c01126{bottom:226.003547pt;}
.y93_c01126{bottom:226.666667pt;}
.y92_c01126{bottom:228.135887pt;}
.y91_c01126{bottom:228.593247pt;}
.y90_c01126{bottom:229.176547pt;}
.y8f_c01126{bottom:229.923507pt;}
.y8e_c01126{bottom:230.639827pt;}
.y8d_c01126{bottom:232.108247pt;}
.y8c_c01126{bottom:232.712067pt;}
.y8b_c01126{bottom:233.442947pt;}
.y8a_c01126{bottom:233.903687pt;}
.y89_c01126{bottom:235.062487pt;}
.y88_c01126{bottom:235.615467pt;}
.y87_c01126{bottom:235.922667pt;}
.y86_c01126{bottom:263.373333pt;}
.y85_c01126{bottom:290.897333pt;}
.y84_c01126{bottom:292.305333pt;}
.y83_c01126{bottom:292.686667pt;}
.y82_c01126{bottom:293.073333pt;}
.y81_c01126{bottom:293.965333pt;}
.y80_c01126{bottom:295.385333pt;}
.y7f_c01126{bottom:296.652000pt;}
.y7e_c01126{bottom:297.036000pt;}
.y7d_c01126{bottom:298.056000pt;}
.y7c_c01126{bottom:298.541333pt;}
.y7b_c01126{bottom:298.801333pt;}
.y7a_c01126{bottom:329.756000pt;}
.y79_c01126{bottom:354.512309pt;}
.y78_c01126{bottom:356.256053pt;}
.y77_c01126{bottom:357.054667pt;}
.y76_c01126{bottom:358.329568pt;}
.y75_c01126{bottom:358.749067pt;}
.y74_c01126{bottom:360.023051pt;}
.y73_c01126{bottom:361.812747pt;}
.y72_c01126{bottom:362.400181pt;}
.y71_c01126{bottom:363.647968pt;}
.y70_c01126{bottom:364.237408pt;}
.y6f_c01126{bottom:364.561333pt;}
.y6e_c01126{bottom:391.381333pt;}
.y6d_c01126{bottom:418.767645pt;}
.y6c_c01126{bottom:419.273837pt;}
.y6b_c01126{bottom:421.277095pt;}
.y6a_c01126{bottom:422.272411pt;}
.y69_c01126{bottom:423.431380pt;}
.y68_c01126{bottom:424.125025pt;}
.y67_c01126{bottom:425.259243pt;}
.y66_c01126{bottom:426.960285pt;}
.y65_c01126{bottom:427.570177pt;}
.y64_c01126{bottom:427.922667pt;}
.y63_c01126{bottom:455.464000pt;}
.y62_c01126{bottom:481.946667pt;}
.y61_c01126{bottom:483.025333pt;}
.y60_c01126{bottom:483.465333pt;}
.y5f_c01126{bottom:484.214667pt;}
.y5e_c01126{bottom:484.869333pt;}
.y5d_c01126{bottom:485.941333pt;}
.y5c_c01126{bottom:486.596000pt;}
.y5b_c01126{bottom:486.930667pt;}
.y5a_c01126{bottom:487.897333pt;}
.y59_c01126{bottom:488.641333pt;}
.y1_c01126{bottom:502.560000pt;}
.y58_c01126{bottom:514.697333pt;}
.y57_c01126{bottom:515.216000pt;}
.y56_c01126{bottom:515.662667pt;}
.y55_c01126{bottom:516.024000pt;}
.y54_c01126{bottom:516.640000pt;}
.y53_c01126{bottom:517.082667pt;}
.y52_c01126{bottom:517.961333pt;}
.y51_c01126{bottom:518.762667pt;}
.y50_c01126{bottom:519.005333pt;}
.y4f_c01126{bottom:519.361333pt;}
.y4e_c01126{bottom:549.325333pt;}
.y4d_c01126{bottom:575.832341pt;}
.y4c_c01126{bottom:577.230188pt;}
.y4b_c01126{bottom:577.617033pt;}
.y4a_c01126{bottom:578.496995pt;}
.y49_c01126{bottom:579.161451pt;}
.y48_c01126{bottom:580.166160pt;}
.y47_c01126{bottom:582.200885pt;}
.y46_c01126{bottom:582.567312pt;}
.y45_c01126{bottom:582.961333pt;}
.y44_c01126{bottom:611.834667pt;}
.y43_c01126{bottom:639.386104pt;}
.y42_c01126{bottom:639.733911pt;}
.y41_c01126{bottom:640.153911pt;}
.y40_c01126{bottom:640.419379pt;}
.y3f_c01126{bottom:640.631068pt;}
.y3e_c01126{bottom:641.185477pt;}
.y3d_c01126{bottom:641.390447pt;}
.y3c_c01126{bottom:641.659125pt;}
.y3b_c01126{bottom:642.217035pt;}
.y3a_c01126{bottom:642.489073pt;}
.y39_c01126{bottom:642.695835pt;}
.y38_c01126{bottom:643.230037pt;}
.y37_c01126{bottom:643.440000pt;}
.y36_c01126{bottom:669.972203pt;}
.y35_c01126{bottom:671.161677pt;}
.y34_c01126{bottom:671.991080pt;}
.y33_c01126{bottom:672.442269pt;}
.y32_c01126{bottom:673.170781pt;}
.y31_c01126{bottom:673.515373pt;}
.y30_c01126{bottom:674.809200pt;}
.y2f_c01126{bottom:675.361416pt;}
.y2e_c01126{bottom:702.666392pt;}
.y2d_c01126{bottom:703.207856pt;}
.y2c_c01126{bottom:703.438272pt;}
.y2b_c01126{bottom:704.030128pt;}
.y2a_c01126{bottom:704.799104pt;}
.y29_c01126{bottom:704.911328pt;}
.y28_c01126{bottom:705.615608pt;}
.y27_c01126{bottom:705.840000pt;}
.y25_c01126{bottom:737.191744pt;}
.y26_c01126{bottom:737.192075pt;}
.y22_c01126{bottom:737.192117pt;}
.y23_c01126{bottom:737.192128pt;}
.y24_c01126{bottom:737.192363pt;}
.y21_c01126{bottom:764.403883pt;}
.y20_c01126{bottom:765.045461pt;}
.y1f_c01126{bottom:765.436960pt;}
.y1e_c01126{bottom:765.842293pt;}
.y1d_c01126{bottom:766.623744pt;}
.y1c_c01126{bottom:767.407157pt;}
.y1b_c01126{bottom:767.725824pt;}
.y1a_c01126{bottom:768.284587pt;}
.y19_c01126{bottom:768.914315pt;}
.y18_c01126{bottom:769.200000pt;}
.y17_c01126{bottom:801.253461pt;}
.y16_c01126{bottom:801.254101pt;}
.y15_c01126{bottom:829.321829pt;}
.y14_c01126{bottom:829.440933pt;}
.y13_c01126{bottom:829.714533pt;}
.y12_c01126{bottom:829.999680pt;}
.y11_c01126{bottom:830.113925pt;}
.y10_c01126{bottom:830.232955pt;}
.yf_c01126{bottom:830.583376pt;}
.ye_c01126{bottom:830.784976pt;}
.yd_c01126{bottom:831.217941pt;}
.yc_c01126{bottom:831.335051pt;}
.yb_c01126{bottom:831.570251pt;}
.ya_c01126{bottom:831.717067pt;}
.y9_c01126{bottom:831.840000pt;}
.y8_c01126{bottom:862.985333pt;}
.y7_c01126{bottom:890.570667pt;}
.y6_c01126{bottom:924.560000pt;}
.y5_c01126{bottom:957.468000pt;}
.y4_c01126{bottom:986.069333pt;}
.y3_c01126{bottom:1026.960000pt;}
.y2_c01126{bottom:1051.194667pt;}
.h2_c01126{height:16.000000pt;}
.h4_c01126{height:32.000000pt;}
.hc_c01126{height:48.000000pt;}
.hf_c01126{height:58.666667pt;}
.h7_c01126{height:58.667136pt;}
.h5_c01126{height:64.000000pt;}
.h8_c01126{height:64.000512pt;}
.ha_c01126{height:64.001152pt;}
.hb_c01126{height:64.001568pt;}
.h9_c01126{height:64.002048pt;}
.h12_c01126{height:64.008191pt;}
.h10_c01126{height:64.009247pt;}
.h3_c01126{height:69.333333pt;}
.hd_c01126{height:69.339192pt;}
.h14_c01126{height:69.341133pt;}
.h16_c01126{height:69.344564pt;}
.h11_c01126{height:74.666667pt;}
.h15_c01126{height:80.004840pt;}
.he_c01126{height:85.333333pt;}
.h6_c01126{height:90.666667pt;}
.h13_c01126{height:106.666667pt;}
.h0_c01126{height:1107.840000pt;}
.h1_c01126{height:1108.000000pt;}
.w0_c01126{width:798.666667pt;}
.x0_c01126{left:0.000000pt;}
.x6_c01126{left:96.240000pt;}
.x14_c01126{left:107.280000pt;}
.x62_c01126{left:116.158667pt;}
.x5e_c01126{left:126.410667pt;}
.x54_c01126{left:127.416000pt;}
.x15_c01126{left:137.520000pt;}
.x6a_c01126{left:153.228000pt;}
.x4d_c01126{left:163.564000pt;}
.x44_c01126{left:165.174667pt;}
.x2a_c01126{left:173.178667pt;}
.x7_c01126{left:175.200000pt;}
.x10_c01126{left:203.280000pt;}
.x5d_c01126{left:207.360000pt;}
.x6b_c01126{left:212.010667pt;}
.x8_c01126{left:213.840000pt;}
.x1d_c01126{left:222.240000pt;}
.x30_c01126{left:223.202773pt;}
.x11_c01126{left:224.160000pt;}
.x38_c01126{left:226.156336pt;}
.x23_c01126{left:233.230667pt;}
.x63_c01126{left:240.997333pt;}
.x3d_c01126{left:242.568000pt;}
.x2b_c01126{left:251.894667pt;}
.x31_c01126{left:253.203360pt;}
.x49_c01126{left:254.400000pt;}
.x12_c01126{left:262.080000pt;}
.x55_c01126{left:263.353333pt;}
.x1e_c01126{left:272.160000pt;}
.x20_c01126{left:273.120000pt;}
.x58_c01126{left:278.716000pt;}
.x70_c01126{left:280.117333pt;}
.x3e_c01126{left:281.430667pt;}
.x57_c01126{left:290.880000pt;}
.x33_c01126{left:292.017333pt;}
.x1f_c01126{left:294.480000pt;}
.x76_c01126{left:301.952229pt;}
.x34_c01126{left:310.721333pt;}
.x9_c01126{left:311.760000pt;}
.x64_c01126{left:320.438667pt;}
.x21_c01126{left:321.600000pt;}
.x13_c01126{left:330.960000pt;}
.x50_c01126{left:341.132000pt;}
.x4a_c01126{left:350.640000pt;}
.x3f_c01126{left:361.132000pt;}
.x22_c01126{left:362.160000pt;}
.x5f_c01126{left:369.174667pt;}
.x16_c01126{left:371.520000pt;}
.xa_c01126{left:372.480000pt;}
.x6c_c01126{left:379.049333pt;}
.x39_c01126{left:380.046800pt;}
.x2_c01126{left:381.600000pt;}
.x4b_c01126{left:388.800000pt;}
.x17_c01126{left:391.200000pt;}
.x40_c01126{left:399.514667pt;}
.x3_c01126{left:401.040000pt;}
.x3a_c01126{left:408.811101pt;}
.x32_c01126{left:409.928053pt;}
.xb_c01126{left:410.880000pt;}
.x77_c01126{left:418.831451pt;}
.x24_c01126{left:421.149333pt;}
.x41_c01126{left:428.796000pt;}
.x35_c01126{left:438.884000pt;}
.x4_c01126{left:440.160000pt;}
.x78_c01126{left:447.644256pt;}
.x6d_c01126{left:448.900000pt;}
.x45_c01126{left:450.089333pt;}
.x65_c01126{left:458.588000pt;}
.x2c_c01126{left:459.500000pt;}
.x4e_c01126{left:467.874667pt;}
.x18_c01126{left:469.200000pt;}
.x59_c01126{left:470.196000pt;}
.x4c_c01126{left:472.560000pt;}
.x60_c01126{left:478.374667pt;}
.xc_c01126{left:489.600000pt;}
.x5a_c01126{left:496.414667pt;}
.x51_c01126{left:498.084000pt;}
.x3b_c01126{left:507.202232pt;}
.x25_c01126{left:508.754667pt;}
.x5_c01126{left:509.760000pt;}
.x46_c01126{left:517.778667pt;}
.x71_c01126{left:526.624000pt;}
.x74_c01126{left:527.664000pt;}
.x6e_c01126{left:536.988000pt;}
.x19_c01126{left:538.080000pt;}
.x47_c01126{left:547.536000pt;}
.x66_c01126{left:556.140000pt;}
.x2d_c01126{left:557.181333pt;}
.x26_c01126{left:567.073333pt;}
.x36_c01126{left:575.929333pt;}
.x1a_c01126{left:579.120000pt;}
.xd_c01126{left:588.240000pt;}
.x67_c01126{left:595.026667pt;}
.x52_c01126{left:606.224000pt;}
.x2e_c01126{left:607.848000pt;}
.x4f_c01126{left:615.245333pt;}
.x1_c01126{left:617.040000pt;}
.x5b_c01126{left:626.009333pt;}
.x42_c01126{left:636.162667pt;}
.x27_c01126{left:638.360000pt;}
.x6f_c01126{left:644.045333pt;}
.x56_c01126{left:645.212000pt;}
.xe_c01126{left:649.440000pt;}
.x48_c01126{left:655.062667pt;}
.x2f_c01126{left:656.785333pt;}
.x72_c01126{left:664.660000pt;}
.x37_c01126{left:666.173333pt;}
.x75_c01126{left:674.269333pt;}
.x3c_c01126{left:675.453509pt;}
.x1b_c01126{left:677.280000pt;}
.x43_c01126{left:685.849333pt;}
.xf_c01126{left:687.120000pt;}
.x73_c01126{left:693.692000pt;}
.x53_c01126{left:704.264000pt;}
.x28_c01126{left:706.760000pt;}
.x1c_c01126{left:709.440000pt;}
.x61_c01126{left:714.317333pt;}
.x68_c01126{left:723.465333pt;}
.x5c_c01126{left:734.993333pt;}
.x29_c01126{left:736.536000pt;}
.x69_c01126{left:767.673333pt;}
}





/* 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_c01127 {
    display:none;
  }
  .loading-indicator_c01127.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01127 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_c01127 { 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_c01127" -> "#page-container .classname_c01127")
 */
.pf_c01127 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01127 { /* 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_c01127.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01127 { /* 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_c01127 { /* 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_c01127 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01127 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01127 {overflow:visible;}
  }
}
.c_c01127 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01127 { /* 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_c01127:after { /* webkit #35443 */
  content: '';
}
.t_c01127:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01127 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 */
}
.__c01127 { /* 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_c01127 { /* info for Javascript */
  display:none;
}
.l_c01127 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01127 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01127 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01127: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_c01127 {
    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_c01127.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01127.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_c01127 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01127{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01127;src:url('chunks/assets/font_4e10b644121e127e5c7b113e.woff2')format("woff");}.ff1_c01127{font-family:ff1_c01127;line-height:1.000000;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;}
.m17_c01127{transform:matrix(0.057010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.057010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.057010,0.000000,0.000000,0.250000,0,0);}
.m1b_c01127{transform:matrix(0.106065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106065,0.000000,0.000000,0.250000,0,0);}
.m14_c01127{transform:matrix(0.128270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128270,0.000000,0.000000,0.250000,0,0);}
.m9_c01127{transform:matrix(0.154151,0.004779,-0.007746,0.249880,0,0);-ms-transform:matrix(0.154151,0.004779,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.154151,0.004779,-0.007746,0.249880,0,0);}
.m4_c01127{transform:matrix(0.163057,0.005055,-0.007746,0.249880,0,0);-ms-transform:matrix(0.163057,0.005055,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.163057,0.005055,-0.007746,0.249880,0,0);}
.m15_c01127{transform:matrix(0.186985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186985,0.000000,0.000000,0.250000,0,0);}
.m22_c01127{transform:matrix(0.188195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188195,0.000000,0.000000,0.250000,0,0);}
.mf_c01127{transform:matrix(0.203612,0.006312,-0.007746,0.249880,0,0);-ms-transform:matrix(0.203612,0.006312,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.203612,0.006312,-0.007746,0.249880,0,0);}
.me_c01127{transform:matrix(0.211308,0.006551,-0.007746,0.249880,0,0);-ms-transform:matrix(0.211308,0.006551,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.211308,0.006551,-0.007746,0.249880,0,0);}
.m18_c01127{transform:matrix(0.213455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213455,0.000000,0.000000,0.250000,0,0);}
.md_c01127{transform:matrix(0.215062,0.006667,-0.007746,0.249880,0,0);-ms-transform:matrix(0.215062,0.006667,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.215062,0.006667,-0.007746,0.249880,0,0);}
.m20_c01127{transform:matrix(0.217855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217855,0.000000,0.000000,0.250000,0,0);}
.m12_c01127{transform:matrix(0.226481,0.007021,-0.007746,0.249880,0,0);-ms-transform:matrix(0.226481,0.007021,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.226481,0.007021,-0.007746,0.249880,0,0);}
.m21_c01127{transform:matrix(0.252420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252420,0.000000,0.000000,0.250000,0,0);}
.m13_c01127{transform:matrix(0.253793,0.007868,-0.007746,0.249880,0,0);-ms-transform:matrix(0.253793,0.007868,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.253793,0.007868,-0.007746,0.249880,0,0);}
.m10_c01127{transform:matrix(0.258801,0.008023,-0.007746,0.249880,0,0);-ms-transform:matrix(0.258801,0.008023,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.258801,0.008023,-0.007746,0.249880,0,0);}
.m7_c01127{transform:matrix(0.264618,0.008203,-0.007746,0.249880,0,0);-ms-transform:matrix(0.264618,0.008203,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.264618,0.008203,-0.007746,0.249880,0,0);}
.m1_c01127{transform:matrix(0.267287,0.008286,-0.007746,0.249880,0,0);-ms-transform:matrix(0.267287,0.008286,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.267287,0.008286,-0.007746,0.249880,0,0);}
.m3_c01127{transform:matrix(0.267561,0.008294,-0.007746,0.249880,0,0);-ms-transform:matrix(0.267561,0.008294,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.267561,0.008294,-0.007746,0.249880,0,0);}
.m2_c01127{transform:matrix(0.277762,0.008611,-0.007746,0.249880,0,0);-ms-transform:matrix(0.277762,0.008611,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.277762,0.008611,-0.007746,0.249880,0,0);}
.m0_c01127{transform:matrix(0.291765,0.009045,-0.007746,0.249880,0,0);-ms-transform:matrix(0.291765,0.009045,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.291765,0.009045,-0.007746,0.249880,0,0);}
.m6_c01127{transform:matrix(0.304349,0.009435,-0.007746,0.249880,0,0);-ms-transform:matrix(0.304349,0.009435,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.304349,0.009435,-0.007746,0.249880,0,0);}
.m11_c01127{transform:matrix(0.305158,0.009460,-0.007746,0.249880,0,0);-ms-transform:matrix(0.305158,0.009460,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.305158,0.009460,-0.007746,0.249880,0,0);}
.m8_c01127{transform:matrix(0.313534,0.009720,-0.007746,0.249880,0,0);-ms-transform:matrix(0.313534,0.009720,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.313534,0.009720,-0.007746,0.249880,0,0);}
.m1e_c01127{transform:matrix(0.362800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362800,0.000000,0.000000,0.250000,0,0);}
.mb_c01127{transform:matrix(0.376114,0.011660,-0.007746,0.249880,0,0);-ms-transform:matrix(0.376114,0.011660,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.376114,0.011660,-0.007746,0.249880,0,0);}
.m16_c01127{transform:matrix(0.402315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402315,0.000000,0.000000,0.250000,0,0);}
.mc_c01127{transform:matrix(0.404836,0.012550,-0.007746,0.249880,0,0);-ms-transform:matrix(0.404836,0.012550,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.404836,0.012550,-0.007746,0.249880,0,0);}
.m5_c01127{transform:matrix(0.436385,0.013528,-0.007746,0.249880,0,0);-ms-transform:matrix(0.436385,0.013528,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.436385,0.013528,-0.007746,0.249880,0,0);}
.m27_c01127{transform:matrix(0.499300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.499300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.499300,0.000000,0.000000,0.250000,0,0);}
.m1c_c01127{transform:matrix(0.513130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513130,0.000000,0.000000,0.250000,0,0);}
.m1a_c01127{transform:matrix(0.553175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553175,0.000000,0.000000,0.250000,0,0);}
.m24_c01127{transform:matrix(0.622420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.622420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.622420,0.000000,0.000000,0.250000,0,0);}
.m1f_c01127{transform:matrix(0.661010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.661010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.661010,0.000000,0.000000,0.250000,0,0);}
.m1d_c01127{transform:matrix(0.671195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.671195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.671195,0.000000,0.000000,0.250000,0,0);}
.m23_c01127{transform:matrix(0.844050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.844050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.844050,0.000000,0.000000,0.250000,0,0);}
.ma_c01127{transform:matrix(1.094244,0.033922,-0.007746,0.249880,0,0);-ms-transform:matrix(1.094244,0.033922,-0.007746,0.249880,0,0);-webkit-transform:matrix(1.094244,0.033922,-0.007746,0.249880,0,0);}
.m19_c01127{transform:matrix(1.125390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.125390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.125390,0.000000,0.000000,0.250000,0,0);}
.m26_c01127{transform:matrix(1.472755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.472755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.472755,0.000000,0.000000,0.250000,0,0);}
.m25_c01127{transform:matrix(1.650410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.650410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.650410,0.000000,0.000000,0.250000,0,0);}
.v0_c01127{vertical-align:0.000000px;}
.ls0_c01127{letter-spacing:0.000000px;}
.sc__c01127{text-shadow:none;}
.sc0_c01127{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__c01127{-webkit-text-stroke:0px transparent;}
.sc0_c01127{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01127{word-spacing:0.000000px;}
.fc0_c01127{color:transparent;}
.fs5_c01127{font-size:18.000000px;}
.fs1_c01127{font-size:24.000000px;}
.fs3_c01127{font-size:30.000000px;}
.fs4_c01127{font-size:36.000000px;}
.fs2_c01127{font-size:48.000000px;}
.fs8_c01127{font-size:66.000000px;}
.fs6_c01127{font-size:78.000000px;}
.fs0_c01127{font-size:78.037470px;}
.fs7_c01127{font-size:84.000000px;}
.y0_c01127{bottom:0.000000px;}
.y20_c01127{bottom:107.460000px;}
.y1f_c01127{bottom:129.330000px;}
.y1e_c01127{bottom:150.660000px;}
.y1d_c01127{bottom:189.813000px;}
.y1c_c01127{bottom:208.435500px;}
.y1b_c01127{bottom:248.130000px;}
.y1a_c01127{bottom:250.020000px;}
.y19_c01127{bottom:259.470000px;}
.y18_c01127{bottom:297.268500px;}
.y17_c01127{bottom:311.580000px;}
.y16_c01127{bottom:318.598500px;}
.y15_c01127{bottom:360.990000px;}
.y14_c01127{bottom:760.536170px;}
.y13_c01127{bottom:761.365643px;}
.y12_c01127{bottom:763.015650px;}
.y11_c01127{bottom:763.793654px;}
.y10_c01127{bottom:764.604227px;}
.yf_c01127{bottom:765.182804px;}
.ye_c01127{bottom:766.109601px;}
.yd_c01127{bottom:766.706567px;}
.yc_c01127{bottom:767.692331px;}
.yb_c01127{bottom:771.919236px;}
.ya_c01127{bottom:791.396517px;}
.y9_c01127{bottom:792.891167px;}
.y8_c01127{bottom:797.253936px;}
.y7_c01127{bottom:797.913818px;}
.y6_c01127{bottom:799.169504px;}
.y5_c01127{bottom:799.534947px;}
.y4_c01127{bottom:800.537069px;}
.y3_c01127{bottom:802.265381px;}
.y2_c01127{bottom:805.741953px;}
.y1_c01127{bottom:807.274500px;}
.h7_c01127{height:18.000000px;}
.h3_c01127{height:24.000000px;}
.h5_c01127{height:30.000000px;}
.h6_c01127{height:36.000000px;}
.h4_c01127{height:48.000000px;}
.ha_c01127{height:66.000000px;}
.h8_c01127{height:78.000000px;}
.h2_c01127{height:78.037470px;}
.h9_c01127{height:84.000000px;}
.h0_c01127{height:1246.320000px;}
.h1_c01127{height:1246.500000px;}
.w0_c01127{width:898.500000px;}
.x0_c01127{left:0.000000px;}
.xb_c01127{left:56.836077px;}
.x1_c01127{left:254.176500px;}
.xc_c01127{left:258.088887px;}
.x2_c01127{left:303.613500px;}
.xd_c01127{left:305.047442px;}
.xe_c01127{left:333.506777px;}
.xf_c01127{left:377.642948px;}
.x10_c01127{left:405.218503px;}
.x3_c01127{left:415.761000px;}
.x11_c01127{left:443.813454px;}
.x4_c01127{left:471.513000px;}
.x12_c01127{left:480.873440px;}
.x5_c01127{left:503.839500px;}
.x6_c01127{left:515.628000px;}
.x7_c01127{left:556.134000px;}
.x13_c01127{left:559.430259px;}
.x8_c01127{left:577.420500px;}
.x14_c01127{left:598.925489px;}
.x9_c01127{left:718.155000px;}
.xa_c01127{left:766.369500px;}
.x19_c01127{left:873.720000px;}
.x18_c01127{left:875.610000px;}
.x17_c01127{left:876.960000px;}
.x1b_c01127{left:878.040000px;}
.x16_c01127{left:881.010000px;}
.x1c_c01127{left:888.570000px;}
.x1a_c01127{left:894.240000px;}
.x15_c01127{left:896.670000px;}
@media print{
.v0_c01127{vertical-align:0.000000pt;}
.ls0_c01127{letter-spacing:0.000000pt;}
.ws0_c01127{word-spacing:0.000000pt;}
.fs5_c01127{font-size:16.000000pt;}
.fs1_c01127{font-size:21.333333pt;}
.fs3_c01127{font-size:26.666667pt;}
.fs4_c01127{font-size:32.000000pt;}
.fs2_c01127{font-size:42.666667pt;}
.fs8_c01127{font-size:58.666667pt;}
.fs6_c01127{font-size:69.333333pt;}
.fs0_c01127{font-size:69.366640pt;}
.fs7_c01127{font-size:74.666667pt;}
.y0_c01127{bottom:0.000000pt;}
.y20_c01127{bottom:95.520000pt;}
.y1f_c01127{bottom:114.960000pt;}
.y1e_c01127{bottom:133.920000pt;}
.y1d_c01127{bottom:168.722667pt;}
.y1c_c01127{bottom:185.276000pt;}
.y1b_c01127{bottom:220.560000pt;}
.y1a_c01127{bottom:222.240000pt;}
.y19_c01127{bottom:230.640000pt;}
.y18_c01127{bottom:264.238667pt;}
.y17_c01127{bottom:276.960000pt;}
.y16_c01127{bottom:283.198667pt;}
.y15_c01127{bottom:320.880000pt;}
.y14_c01127{bottom:676.032151pt;}
.y13_c01127{bottom:676.769460pt;}
.y12_c01127{bottom:678.236133pt;}
.y11_c01127{bottom:678.927692pt;}
.y10_c01127{bottom:679.648201pt;}
.yf_c01127{bottom:680.162492pt;}
.ye_c01127{bottom:680.986312pt;}
.yd_c01127{bottom:681.516948pt;}
.yc_c01127{bottom:682.393183pt;}
.yb_c01127{bottom:686.150432pt;}
.ya_c01127{bottom:703.463571pt;}
.y9_c01127{bottom:704.792148pt;}
.y8_c01127{bottom:708.670165pt;}
.y7_c01127{bottom:709.256727pt;}
.y6_c01127{bottom:710.372892pt;}
.y5_c01127{bottom:710.697731pt;}
.y4_c01127{bottom:711.588505pt;}
.y3_c01127{bottom:713.124783pt;}
.y2_c01127{bottom:716.215069pt;}
.y1_c01127{bottom:717.577333pt;}
.h7_c01127{height:16.000000pt;}
.h3_c01127{height:21.333333pt;}
.h5_c01127{height:26.666667pt;}
.h6_c01127{height:32.000000pt;}
.h4_c01127{height:42.666667pt;}
.ha_c01127{height:58.666667pt;}
.h8_c01127{height:69.333333pt;}
.h2_c01127{height:69.366640pt;}
.h9_c01127{height:74.666667pt;}
.h0_c01127{height:1107.840000pt;}
.h1_c01127{height:1108.000000pt;}
.w0_c01127{width:798.666667pt;}
.x0_c01127{left:0.000000pt;}
.xb_c01127{left:50.520957pt;}
.x1_c01127{left:225.934667pt;}
.xc_c01127{left:229.412344pt;}
.x2_c01127{left:269.878667pt;}
.xd_c01127{left:271.153281pt;}
.xe_c01127{left:296.450468pt;}
.xf_c01127{left:335.682620pt;}
.x10_c01127{left:360.194225pt;}
.x3_c01127{left:369.565333pt;}
.x11_c01127{left:394.500848pt;}
.x4_c01127{left:419.122667pt;}
.x12_c01127{left:427.443057pt;}
.x5_c01127{left:447.857333pt;}
.x6_c01127{left:458.336000pt;}
.x7_c01127{left:494.341333pt;}
.x13_c01127{left:497.271341pt;}
.x8_c01127{left:513.262667pt;}
.x14_c01127{left:532.378212pt;}
.x9_c01127{left:638.360000pt;}
.xa_c01127{left:681.217333pt;}
.x19_c01127{left:776.640000pt;}
.x18_c01127{left:778.320000pt;}
.x17_c01127{left:779.520000pt;}
.x1b_c01127{left:780.480000pt;}
.x16_c01127{left:783.120000pt;}
.x1c_c01127{left:789.840000pt;}
.x1a_c01127{left:794.880000pt;}
.x15_c01127{left:797.040000pt;}
}





/* 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_c01128 {
    display:none;
  }
  .loading-indicator_c01128.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01128 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_c01128 { 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_c01128" -> "#page-container .classname_c01128")
 */
.pf_c01128 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01128 { /* 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_c01128.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01128 { /* 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_c01128 { /* 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_c01128 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01128 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01128 {overflow:visible;}
  }
}
.c_c01128 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01128 { /* 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_c01128:after { /* webkit #35443 */
  content: '';
}
.t_c01128:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01128 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 */
}
.__c01128 { /* 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_c01128 { /* info for Javascript */
  display:none;
}
.l_c01128 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01128 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01128 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01128: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_c01128 {
    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_c01128.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01128.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_c01128 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01128{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01128;src:url('chunks/assets/font_cfe63ee56e9e10a97d33a3db.woff2')format("woff");}.ff1_c01128{font-family:ff1_c01128;line-height:1.000000;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;}
.m86_c01128{transform:matrix(0.011857,0.000261,-0.005499,0.249940,0,0);-ms-transform:matrix(0.011857,0.000261,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.011857,0.000261,-0.005499,0.249940,0,0);}
.m6c_c01128{transform:matrix(0.013516,0.000324,-0.005998,0.249928,0,0);-ms-transform:matrix(0.013516,0.000324,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.013516,0.000324,-0.005998,0.249928,0,0);}
.m7d_c01128{transform:matrix(0.013517,0.000297,-0.005499,0.249940,0,0);-ms-transform:matrix(0.013517,0.000297,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.013517,0.000297,-0.005499,0.249940,0,0);}
.md9_c01128{transform:matrix(0.013520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.013520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.013520,0.000000,0.000000,0.250000,0,0);}
.m2e_c01128{transform:matrix(0.015907,0.000286,-0.004499,0.249960,0,0);-ms-transform:matrix(0.015907,0.000286,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.015907,0.000286,-0.004499,0.249960,0,0);}
.mbb_c01128{transform:matrix(0.017303,0.000484,-0.006997,0.249902,0,0);-ms-transform:matrix(0.017303,0.000484,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.017303,0.000484,-0.006997,0.249902,0,0);}
.m2c_c01128{transform:matrix(0.020192,0.000363,-0.004499,0.249960,0,0);-ms-transform:matrix(0.020192,0.000363,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.020192,0.000363,-0.004499,0.249960,0,0);}
.m95_c01128{transform:matrix(0.023172,0.000626,-0.006748,0.249909,0,0);-ms-transform:matrix(0.023172,0.000626,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.023172,0.000626,-0.006748,0.249909,0,0);}
.me2_c01128{transform:matrix(0.124630,0.002493,-0.004999,0.249950,0,0);-ms-transform:matrix(0.124630,0.002493,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.124630,0.002493,-0.004999,0.249950,0,0);}
.m84_c01128{transform:matrix(0.161961,0.003563,-0.005499,0.249940,0,0);-ms-transform:matrix(0.161961,0.003563,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.161961,0.003563,-0.005499,0.249940,0,0);}
.m92_c01128{transform:matrix(0.163315,0.004410,-0.006748,0.249909,0,0);-ms-transform:matrix(0.163315,0.004410,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.163315,0.004410,-0.006748,0.249909,0,0);}
.m51_c01128{transform:matrix(0.185999,0.003906,-0.005249,0.249945,0,0);-ms-transform:matrix(0.185999,0.003906,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.185999,0.003906,-0.005249,0.249945,0,0);}
.ma_c01128{transform:matrix(0.188041,0.003009,-0.003999,0.249968,0,0);-ms-transform:matrix(0.188041,0.003009,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.188041,0.003009,-0.003999,0.249968,0,0);}
.md0_c01128{transform:matrix(0.192560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192560,0.000000,0.000000,0.250000,0,0);}
.mbd_c01128{transform:matrix(0.200267,0.005607,-0.006997,0.249902,0,0);-ms-transform:matrix(0.200267,0.005607,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.200267,0.005607,-0.006997,0.249902,0,0);}
.m8_c01128{transform:matrix(0.203049,0.003249,-0.003999,0.249968,0,0);-ms-transform:matrix(0.203049,0.003249,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.203049,0.003249,-0.003999,0.249968,0,0);}
.m80_c01128{transform:matrix(0.204526,0.004500,-0.005499,0.249940,0,0);-ms-transform:matrix(0.204526,0.004500,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.204526,0.004500,-0.005499,0.249940,0,0);}
.m6_c01128{transform:matrix(0.206429,0.003303,-0.003999,0.249968,0,0);-ms-transform:matrix(0.206429,0.003303,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.206429,0.003303,-0.003999,0.249968,0,0);}
.mbf_c01128{transform:matrix(0.206924,0.005794,-0.006997,0.249902,0,0);-ms-transform:matrix(0.206924,0.005794,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.206924,0.005794,-0.006997,0.249902,0,0);}
.mab_c01128{transform:matrix(0.207354,0.004147,-0.004999,0.249950,0,0);-ms-transform:matrix(0.207354,0.004147,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.207354,0.004147,-0.004999,0.249950,0,0);}
.m56_c01128{transform:matrix(0.207389,0.004355,-0.005249,0.249945,0,0);-ms-transform:matrix(0.207389,0.004355,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.207389,0.004355,-0.005249,0.249945,0,0);}
.ma8_c01128{transform:matrix(0.208433,0.004169,-0.004999,0.249950,0,0);-ms-transform:matrix(0.208433,0.004169,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.208433,0.004169,-0.004999,0.249950,0,0);}
.m3a_c01128{transform:matrix(0.210996,0.003798,-0.004499,0.249960,0,0);-ms-transform:matrix(0.210996,0.003798,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.210996,0.003798,-0.004499,0.249960,0,0);}
.mc7_c01128{transform:matrix(0.211700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211700,0.000000,0.000000,0.250000,0,0);}
.ma5_c01128{transform:matrix(0.211828,0.004237,-0.004999,0.249950,0,0);-ms-transform:matrix(0.211828,0.004237,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.211828,0.004237,-0.004999,0.249950,0,0);}
.ma6_c01128{transform:matrix(0.212328,0.004247,-0.004999,0.249950,0,0);-ms-transform:matrix(0.212328,0.004247,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.212328,0.004247,-0.004999,0.249950,0,0);}
.m12_c01128{transform:matrix(0.213408,0.003415,-0.003999,0.249968,0,0);-ms-transform:matrix(0.213408,0.003415,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.213408,0.003415,-0.003999,0.249968,0,0);}
.mc1_c01128{transform:matrix(0.214771,0.006014,-0.006997,0.249902,0,0);-ms-transform:matrix(0.214771,0.006014,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.214771,0.006014,-0.006997,0.249902,0,0);}
.m9f_c01128{transform:matrix(0.215247,0.004305,-0.004999,0.249950,0,0);-ms-transform:matrix(0.215247,0.004305,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.215247,0.004305,-0.004999,0.249950,0,0);}
.mc2_c01128{transform:matrix(0.215655,0.006038,-0.006997,0.249902,0,0);-ms-transform:matrix(0.215655,0.006038,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.215655,0.006038,-0.006997,0.249902,0,0);}
.ma1_c01128{transform:matrix(0.215672,0.004313,-0.004999,0.249950,0,0);-ms-transform:matrix(0.215672,0.004313,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.215672,0.004313,-0.004999,0.249950,0,0);}
.me9_c01128{transform:matrix(0.216894,0.007816,-0.009003,0.249838,0,0);-ms-transform:matrix(0.216894,0.007816,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.216894,0.007816,-0.009003,0.249838,0,0);}
.m50_c01128{transform:matrix(0.216947,0.004556,-0.005249,0.249945,0,0);-ms-transform:matrix(0.216947,0.004556,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.216947,0.004556,-0.005249,0.249945,0,0);}
.mad_c01128{transform:matrix(0.217971,0.004359,-0.004999,0.249950,0,0);-ms-transform:matrix(0.217971,0.004359,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.217971,0.004359,-0.004999,0.249950,0,0);}
.mb_c01128{transform:matrix(0.217977,0.003488,-0.003999,0.249968,0,0);-ms-transform:matrix(0.217977,0.003488,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.217977,0.003488,-0.003999,0.249968,0,0);}
.m7_c01128{transform:matrix(0.218402,0.003494,-0.003999,0.249968,0,0);-ms-transform:matrix(0.218402,0.003494,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.218402,0.003494,-0.003999,0.249968,0,0);}
.mc5_c01128{transform:matrix(0.218579,0.006120,-0.006997,0.249902,0,0);-ms-transform:matrix(0.218579,0.006120,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.218579,0.006120,-0.006997,0.249902,0,0);}
.mbe_c01128{transform:matrix(0.219464,0.006145,-0.006997,0.249902,0,0);-ms-transform:matrix(0.219464,0.006145,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.219464,0.006145,-0.006997,0.249902,0,0);}
.m4c_c01128{transform:matrix(0.219487,0.004609,-0.005249,0.249945,0,0);-ms-transform:matrix(0.219487,0.004609,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.219487,0.004609,-0.005249,0.249945,0,0);}
.m69_c01128{transform:matrix(0.220177,0.004844,-0.005499,0.249940,0,0);-ms-transform:matrix(0.220177,0.004844,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.220177,0.004844,-0.005499,0.249940,0,0);}
.m3_c01128{transform:matrix(0.220342,0.003525,-0.003999,0.249968,0,0);-ms-transform:matrix(0.220342,0.003525,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.220342,0.003525,-0.003999,0.249968,0,0);}
.mc9_c01128{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.mc3_c01128{transform:matrix(0.220838,0.006183,-0.006997,0.249902,0,0);-ms-transform:matrix(0.220838,0.006183,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.220838,0.006183,-0.006997,0.249902,0,0);}
.m9_c01128{transform:matrix(0.220972,0.003536,-0.003999,0.249968,0,0);-ms-transform:matrix(0.220972,0.003536,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.220972,0.003536,-0.003999,0.249968,0,0);}
.mc4_c01128{transform:matrix(0.221513,0.006202,-0.006997,0.249902,0,0);-ms-transform:matrix(0.221513,0.006202,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.221513,0.006202,-0.006997,0.249902,0,0);}
.m4f_c01128{transform:matrix(0.222096,0.004664,-0.005249,0.249945,0,0);-ms-transform:matrix(0.222096,0.004664,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.222096,0.004664,-0.005249,0.249945,0,0);}
.mf2_c01128{transform:matrix(0.222371,0.008013,-0.009003,0.249838,0,0);-ms-transform:matrix(0.222371,0.008013,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.222371,0.008013,-0.009003,0.249838,0,0);}
.m27_c01128{transform:matrix(0.222904,0.004012,-0.004499,0.249960,0,0);-ms-transform:matrix(0.222904,0.004012,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.222904,0.004012,-0.004499,0.249960,0,0);}
.m20_c01128{transform:matrix(0.222925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222925,0.000000,0.000000,0.250000,0,0);}
.m5_c01128{transform:matrix(0.223191,0.003571,-0.003999,0.249968,0,0);-ms-transform:matrix(0.223191,0.003571,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.223191,0.003571,-0.003999,0.249968,0,0);}
.m5a_c01128{transform:matrix(0.224021,0.004704,-0.005249,0.249945,0,0);-ms-transform:matrix(0.224021,0.004704,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.224021,0.004704,-0.005249,0.249945,0,0);}
.m32_c01128{transform:matrix(0.224039,0.004033,-0.004499,0.249960,0,0);-ms-transform:matrix(0.224039,0.004033,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.224039,0.004033,-0.004499,0.249960,0,0);}
.mc6_c01128{transform:matrix(0.224520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224520,0.000000,0.000000,0.250000,0,0);}
.mdb_c01128{transform:matrix(0.224680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224680,0.000000,0.000000,0.250000,0,0);}
.mcd_c01128{transform:matrix(0.224990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224990,0.000000,0.000000,0.250000,0,0);}
.mae_c01128{transform:matrix(0.225088,0.006077,-0.006748,0.249909,0,0);-ms-transform:matrix(0.225088,0.006077,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.225088,0.006077,-0.006748,0.249909,0,0);}
.ma9_c01128{transform:matrix(0.225270,0.004505,-0.004999,0.249950,0,0);-ms-transform:matrix(0.225270,0.004505,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.225270,0.004505,-0.004999,0.249950,0,0);}
.m7f_c01128{transform:matrix(0.225290,0.004956,-0.005499,0.249940,0,0);-ms-transform:matrix(0.225290,0.004956,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.225290,0.004956,-0.005499,0.249940,0,0);}
.maf_c01128{transform:matrix(0.225303,0.006083,-0.006748,0.249909,0,0);-ms-transform:matrix(0.225303,0.006083,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.225303,0.006083,-0.006748,0.249909,0,0);}
.mcb_c01128{transform:matrix(0.226340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226340,0.000000,0.000000,0.250000,0,0);}
.m3d_c01128{transform:matrix(0.226518,0.004077,-0.004499,0.249960,0,0);-ms-transform:matrix(0.226518,0.004077,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.226518,0.004077,-0.004499,0.249960,0,0);}
.mf0_c01128{transform:matrix(0.226598,0.008166,-0.009003,0.249838,0,0);-ms-transform:matrix(0.226598,0.008166,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.226598,0.008166,-0.009003,0.249838,0,0);}
.mcf_c01128{transform:matrix(0.226865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226865,0.000000,0.000000,0.250000,0,0);}
.m9a_c01128{transform:matrix(0.227385,0.004548,-0.004999,0.249950,0,0);-ms-transform:matrix(0.227385,0.004548,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.227385,0.004548,-0.004999,0.249950,0,0);}
.m71_c01128{transform:matrix(0.227435,0.005458,-0.005998,0.249928,0,0);-ms-transform:matrix(0.227435,0.005458,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.227435,0.005458,-0.005998,0.249928,0,0);}
.m4_c01128{transform:matrix(0.227956,0.003647,-0.003999,0.249968,0,0);-ms-transform:matrix(0.227956,0.003647,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.227956,0.003647,-0.003999,0.249968,0,0);}
.mce_c01128{transform:matrix(0.228015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228015,0.000000,0.000000,0.250000,0,0);}
.mca_c01128{transform:matrix(0.228680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228680,0.000000,0.000000,0.250000,0,0);}
.m6f_c01128{transform:matrix(0.229764,0.005514,-0.005998,0.249928,0,0);-ms-transform:matrix(0.229764,0.005514,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.229764,0.005514,-0.005998,0.249928,0,0);}
.m1f_c01128{transform:matrix(0.229925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229925,0.000000,0.000000,0.250000,0,0);}
.m21_c01128{transform:matrix(0.230570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230570,0.000000,0.000000,0.250000,0,0);}
.m5e_c01128{transform:matrix(0.230609,0.004843,-0.005249,0.249945,0,0);-ms-transform:matrix(0.230609,0.004843,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.230609,0.004843,-0.005249,0.249945,0,0);}
.m5c_c01128{transform:matrix(0.230864,0.004848,-0.005249,0.249945,0,0);-ms-transform:matrix(0.230864,0.004848,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.230864,0.004848,-0.005249,0.249945,0,0);}
.me5_c01128{transform:matrix(0.230975,0.008323,-0.009003,0.249838,0,0);-ms-transform:matrix(0.230975,0.008323,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.230975,0.008323,-0.009003,0.249838,0,0);}
.mcc_c01128{transform:matrix(0.231410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231410,0.000000,0.000000,0.250000,0,0);}
.mc8_c01128{transform:matrix(0.231490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231490,0.000000,0.000000,0.250000,0,0);}
.md4_c01128{transform:matrix(0.231625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231625,0.000000,0.000000,0.250000,0,0);}
.m18_c01128{transform:matrix(0.232287,0.004181,-0.004499,0.249960,0,0);-ms-transform:matrix(0.232287,0.004181,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.232287,0.004181,-0.004499,0.249960,0,0);}
.m48_c01128{transform:matrix(0.233189,0.004897,-0.005249,0.249945,0,0);-ms-transform:matrix(0.233189,0.004897,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.233189,0.004897,-0.005249,0.249945,0,0);}
.m4d_c01128{transform:matrix(0.233344,0.004900,-0.005249,0.249945,0,0);-ms-transform:matrix(0.233344,0.004900,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.233344,0.004900,-0.005249,0.249945,0,0);}
.m58_c01128{transform:matrix(0.233763,0.004909,-0.005249,0.249945,0,0);-ms-transform:matrix(0.233763,0.004909,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.233763,0.004909,-0.005249,0.249945,0,0);}
.m65_c01128{transform:matrix(0.233963,0.005147,-0.005499,0.249940,0,0);-ms-transform:matrix(0.233963,0.005147,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.233963,0.005147,-0.005499,0.249940,0,0);}
.m82_c01128{transform:matrix(0.234333,0.005155,-0.005499,0.249940,0,0);-ms-transform:matrix(0.234333,0.005155,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.234333,0.005155,-0.005499,0.249940,0,0);}
.m30_c01128{transform:matrix(0.234897,0.004228,-0.004499,0.249960,0,0);-ms-transform:matrix(0.234897,0.004228,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.234897,0.004228,-0.004499,0.249960,0,0);}
.mb1_c01128{transform:matrix(0.235324,0.006354,-0.006748,0.249909,0,0);-ms-transform:matrix(0.235324,0.006354,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.235324,0.006354,-0.006748,0.249909,0,0);}
.mf1_c01128{transform:matrix(0.235477,0.008486,-0.009003,0.249838,0,0);-ms-transform:matrix(0.235477,0.008486,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.235477,0.008486,-0.009003,0.249838,0,0);}
.m59_c01128{transform:matrix(0.235523,0.004946,-0.005249,0.249945,0,0);-ms-transform:matrix(0.235523,0.004946,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.235523,0.004946,-0.005249,0.249945,0,0);}
.m73_c01128{transform:matrix(0.235942,0.005663,-0.005998,0.249928,0,0);-ms-transform:matrix(0.235942,0.005663,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.235942,0.005663,-0.005998,0.249928,0,0);}
.me8_c01128{transform:matrix(0.236387,0.008518,-0.009003,0.249838,0,0);-ms-transform:matrix(0.236387,0.008518,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.236387,0.008518,-0.009003,0.249838,0,0);}
.m8d_c01128{transform:matrix(0.236434,0.006384,-0.006748,0.249909,0,0);-ms-transform:matrix(0.236434,0.006384,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.236434,0.006384,-0.006748,0.249909,0,0);}
.m53_c01128{transform:matrix(0.237013,0.004977,-0.005249,0.249945,0,0);-ms-transform:matrix(0.237013,0.004977,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.237013,0.004977,-0.005249,0.249945,0,0);}
.m45_c01128{transform:matrix(0.237133,0.004980,-0.005249,0.249945,0,0);-ms-transform:matrix(0.237133,0.004980,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.237133,0.004980,-0.005249,0.249945,0,0);}
.mec_c01128{transform:matrix(0.237151,0.008546,-0.009003,0.249838,0,0);-ms-transform:matrix(0.237151,0.008546,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.237151,0.008546,-0.009003,0.249838,0,0);}
.m55_c01128{transform:matrix(0.237163,0.004980,-0.005249,0.249945,0,0);-ms-transform:matrix(0.237163,0.004980,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.237163,0.004980,-0.005249,0.249945,0,0);}
.md2_c01128{transform:matrix(0.237200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237200,0.000000,0.000000,0.250000,0,0);}
.mbc_c01128{transform:matrix(0.237607,0.006653,-0.006997,0.249902,0,0);-ms-transform:matrix(0.237607,0.006653,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.237607,0.006653,-0.006997,0.249902,0,0);}
.me0_c01128{transform:matrix(0.237782,0.004756,-0.004999,0.249950,0,0);-ms-transform:matrix(0.237782,0.004756,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.237782,0.004756,-0.004999,0.249950,0,0);}
.mb5_c01128{transform:matrix(0.238093,0.006429,-0.006748,0.249909,0,0);-ms-transform:matrix(0.238093,0.006429,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.238093,0.006429,-0.006748,0.249909,0,0);}
.mf6_c01128{transform:matrix(0.238305,0.008588,-0.009003,0.249838,0,0);-ms-transform:matrix(0.238305,0.008588,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.238305,0.008588,-0.009003,0.249838,0,0);}
.m5d_c01128{transform:matrix(0.239282,0.005025,-0.005249,0.249945,0,0);-ms-transform:matrix(0.239282,0.005025,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.239282,0.005025,-0.005249,0.249945,0,0);}
.m9e_c01128{transform:matrix(0.239332,0.004787,-0.004999,0.249950,0,0);-ms-transform:matrix(0.239332,0.004787,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.239332,0.004787,-0.004999,0.249950,0,0);}
.m7e_c01128{transform:matrix(0.239547,0.005270,-0.005499,0.249940,0,0);-ms-transform:matrix(0.239547,0.005270,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.239547,0.005270,-0.005499,0.249940,0,0);}
.mb3_c01128{transform:matrix(0.239863,0.006476,-0.006748,0.249909,0,0);-ms-transform:matrix(0.239863,0.006476,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.239863,0.006476,-0.006748,0.249909,0,0);}
.m39_c01128{transform:matrix(0.240076,0.004321,-0.004499,0.249960,0,0);-ms-transform:matrix(0.240076,0.004321,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.240076,0.004321,-0.004499,0.249960,0,0);}
.m6a_c01128{transform:matrix(0.240592,0.005293,-0.005499,0.249940,0,0);-ms-transform:matrix(0.240592,0.005293,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.240592,0.005293,-0.005499,0.249940,0,0);}
.ma3_c01128{transform:matrix(0.241022,0.004820,-0.004999,0.249950,0,0);-ms-transform:matrix(0.241022,0.004820,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.241022,0.004820,-0.004999,0.249950,0,0);}
.mc0_c01128{transform:matrix(0.242015,0.006776,-0.006997,0.249902,0,0);-ms-transform:matrix(0.242015,0.006776,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.242015,0.006776,-0.006997,0.249902,0,0);}
.m26_c01128{transform:matrix(0.242971,0.004373,-0.004499,0.249960,0,0);-ms-transform:matrix(0.242971,0.004373,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.242971,0.004373,-0.004499,0.249960,0,0);}
.md1_c01128{transform:matrix(0.243120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243120,0.000000,0.000000,0.250000,0,0);}
.m17_c01128{transform:matrix(0.243121,0.004376,-0.004499,0.249960,0,0);-ms-transform:matrix(0.243121,0.004376,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.243121,0.004376,-0.004499,0.249960,0,0);}
.m9c_c01128{transform:matrix(0.243526,0.004871,-0.004999,0.249950,0,0);-ms-transform:matrix(0.243526,0.004871,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.243526,0.004871,-0.004999,0.249950,0,0);}
.med_c01128{transform:matrix(0.243937,0.008791,-0.009003,0.249838,0,0);-ms-transform:matrix(0.243937,0.008791,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.243937,0.008791,-0.009003,0.249838,0,0);}
.m33_c01128{transform:matrix(0.244590,0.004403,-0.004499,0.249960,0,0);-ms-transform:matrix(0.244590,0.004403,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.244590,0.004403,-0.004499,0.249960,0,0);}
.m3e_c01128{transform:matrix(0.245175,0.004413,-0.004499,0.249960,0,0);-ms-transform:matrix(0.245175,0.004413,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.245175,0.004413,-0.004499,0.249960,0,0);}
.me7_c01128{transform:matrix(0.245426,0.008844,-0.009003,0.249838,0,0);-ms-transform:matrix(0.245426,0.008844,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.245426,0.008844,-0.009003,0.249838,0,0);}
.m47_c01128{transform:matrix(0.245656,0.005159,-0.005249,0.249945,0,0);-ms-transform:matrix(0.245656,0.005159,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.245656,0.005159,-0.005249,0.249945,0,0);}
.me6_c01128{transform:matrix(0.245730,0.008855,-0.009003,0.249838,0,0);-ms-transform:matrix(0.245730,0.008855,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.245730,0.008855,-0.009003,0.249838,0,0);}
.m9d_c01128{transform:matrix(0.245941,0.004919,-0.004999,0.249950,0,0);-ms-transform:matrix(0.245941,0.004919,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.245941,0.004919,-0.004999,0.249950,0,0);}
.mb4_c01128{transform:matrix(0.246220,0.006648,-0.006748,0.249909,0,0);-ms-transform:matrix(0.246220,0.006648,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.246220,0.006648,-0.006748,0.249909,0,0);}
.md3_c01128{transform:matrix(0.246940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246940,0.000000,0.000000,0.250000,0,0);}
.md5_c01128{transform:matrix(0.247550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247550,0.000000,0.000000,0.250000,0,0);}
.m79_c01128{transform:matrix(0.247625,0.005448,-0.005499,0.249940,0,0);-ms-transform:matrix(0.247625,0.005448,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.247625,0.005448,-0.005499,0.249940,0,0);}
.m66_c01128{transform:matrix(0.248495,0.005467,-0.005499,0.249940,0,0);-ms-transform:matrix(0.248495,0.005467,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.248495,0.005467,-0.005499,0.249940,0,0);}
.m29_c01128{transform:matrix(0.248660,0.004476,-0.004499,0.249960,0,0);-ms-transform:matrix(0.248660,0.004476,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.248660,0.004476,-0.004499,0.249960,0,0);}
.mb9_c01128{transform:matrix(0.248915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248915,0.000000,0.000000,0.250000,0,0);}
.m52_c01128{transform:matrix(0.249330,0.005236,-0.005249,0.249945,0,0);-ms-transform:matrix(0.249330,0.005236,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.249330,0.005236,-0.005249,0.249945,0,0);}
.m4e_c01128{transform:matrix(0.250280,0.005256,-0.005249,0.249945,0,0);-ms-transform:matrix(0.250280,0.005256,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.250280,0.005256,-0.005249,0.249945,0,0);}
.ma7_c01128{transform:matrix(0.250655,0.005013,-0.004999,0.249950,0,0);-ms-transform:matrix(0.250655,0.005013,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.250655,0.005013,-0.004999,0.249950,0,0);}
.md_c01128{transform:matrix(0.250705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250705,0.000000,0.000000,0.250000,0,0);}
.m57_c01128{transform:matrix(0.250970,0.005270,-0.005249,0.249945,0,0);-ms-transform:matrix(0.250970,0.005270,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.250970,0.005270,-0.005249,0.249945,0,0);}
.mac_c01128{transform:matrix(0.250980,0.005020,-0.004999,0.249950,0,0);-ms-transform:matrix(0.250980,0.005020,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.250980,0.005020,-0.004999,0.249950,0,0);}
.m22_c01128{transform:matrix(0.251769,0.004532,-0.004499,0.249960,0,0);-ms-transform:matrix(0.251769,0.004532,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.251769,0.004532,-0.004499,0.249960,0,0);}
.me4_c01128{transform:matrix(0.251877,0.009077,-0.009003,0.249838,0,0);-ms-transform:matrix(0.251877,0.009077,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.251877,0.009077,-0.009003,0.249838,0,0);}
.m24_c01128{transform:matrix(0.252239,0.004540,-0.004499,0.249960,0,0);-ms-transform:matrix(0.252239,0.004540,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.252239,0.004540,-0.004499,0.249960,0,0);}
.me3_c01128{transform:matrix(0.252241,0.009090,-0.009003,0.249838,0,0);-ms-transform:matrix(0.252241,0.009090,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.252241,0.009090,-0.009003,0.249838,0,0);}
.m25_c01128{transform:matrix(0.252684,0.004548,-0.004499,0.249960,0,0);-ms-transform:matrix(0.252684,0.004548,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.252684,0.004548,-0.004499,0.249960,0,0);}
.m23_c01128{transform:matrix(0.253284,0.004559,-0.004499,0.249960,0,0);-ms-transform:matrix(0.253284,0.004559,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.253284,0.004559,-0.004499,0.249960,0,0);}
.ma2_c01128{transform:matrix(0.253309,0.005066,-0.004999,0.249950,0,0);-ms-transform:matrix(0.253309,0.005066,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.253309,0.005066,-0.004999,0.249950,0,0);}
.m8b_c01128{transform:matrix(0.254183,0.005592,-0.005499,0.249940,0,0);-ms-transform:matrix(0.254183,0.005592,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.254183,0.005592,-0.005499,0.249940,0,0);}
.m40_c01128{transform:matrix(0.254629,0.005347,-0.005249,0.249945,0,0);-ms-transform:matrix(0.254629,0.005347,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.254629,0.005347,-0.005249,0.249945,0,0);}
.m34_c01128{transform:matrix(0.254714,0.004585,-0.004499,0.249960,0,0);-ms-transform:matrix(0.254714,0.004585,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.254714,0.004585,-0.004499,0.249960,0,0);}
.m60_c01128{transform:matrix(0.254934,0.004844,-0.004749,0.249955,0,0);-ms-transform:matrix(0.254934,0.004844,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.254934,0.004844,-0.004749,0.249955,0,0);}
.md8_c01128{transform:matrix(0.255150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255150,0.000000,0.000000,0.250000,0,0);}
.md7_c01128{transform:matrix(0.255310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255310,0.000000,0.000000,0.250000,0,0);}
.m3b_c01128{transform:matrix(0.256104,0.004610,-0.004499,0.249960,0,0);-ms-transform:matrix(0.256104,0.004610,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.256104,0.004610,-0.004499,0.249960,0,0);}
.m74_c01128{transform:matrix(0.257846,0.006188,-0.005998,0.249928,0,0);-ms-transform:matrix(0.257846,0.006188,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.257846,0.006188,-0.005998,0.249928,0,0);}
.m37_c01128{transform:matrix(0.258003,0.004644,-0.004499,0.249960,0,0);-ms-transform:matrix(0.258003,0.004644,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.258003,0.004644,-0.004499,0.249960,0,0);}
.mb2_c01128{transform:matrix(0.258391,0.006977,-0.006748,0.249909,0,0);-ms-transform:matrix(0.258391,0.006977,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.258391,0.006977,-0.006748,0.249909,0,0);}
.m28_c01128{transform:matrix(0.258538,0.004654,-0.004499,0.249960,0,0);-ms-transform:matrix(0.258538,0.004654,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.258538,0.004654,-0.004499,0.249960,0,0);}
.maa_c01128{transform:matrix(0.258558,0.005171,-0.004999,0.249950,0,0);-ms-transform:matrix(0.258558,0.005171,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.258558,0.005171,-0.004999,0.249950,0,0);}
.m1c_c01128{transform:matrix(0.258713,0.004657,-0.004499,0.249960,0,0);-ms-transform:matrix(0.258713,0.004657,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.258713,0.004657,-0.004499,0.249960,0,0);}
.m68_c01128{transform:matrix(0.259882,0.005717,-0.005499,0.249940,0,0);-ms-transform:matrix(0.259882,0.005717,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.259882,0.005717,-0.005499,0.249940,0,0);}
.mea_c01128{transform:matrix(0.260026,0.009370,-0.009003,0.249838,0,0);-ms-transform:matrix(0.260026,0.009370,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.260026,0.009370,-0.009003,0.249838,0,0);}
.mb0_c01128{transform:matrix(0.260920,0.007045,-0.006748,0.249909,0,0);-ms-transform:matrix(0.260920,0.007045,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.260920,0.007045,-0.006748,0.249909,0,0);}
.m93_c01128{transform:matrix(0.261210,0.007053,-0.006748,0.249909,0,0);-ms-transform:matrix(0.261210,0.007053,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.261210,0.007053,-0.006748,0.249909,0,0);}
.ma0_c01128{transform:matrix(0.261253,0.005225,-0.004999,0.249950,0,0);-ms-transform:matrix(0.261253,0.005225,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.261253,0.005225,-0.004999,0.249950,0,0);}
.m4b_c01128{transform:matrix(0.261987,0.005502,-0.005249,0.249945,0,0);-ms-transform:matrix(0.261987,0.005502,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.261987,0.005502,-0.005249,0.249945,0,0);}
.md6_c01128{transform:matrix(0.262060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262060,0.000000,0.000000,0.250000,0,0);}
.m41_c01128{transform:matrix(0.262442,0.005511,-0.005249,0.249945,0,0);-ms-transform:matrix(0.262442,0.005511,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.262442,0.005511,-0.005249,0.249945,0,0);}
.mef_c01128{transform:matrix(0.263169,0.009484,-0.009003,0.249838,0,0);-ms-transform:matrix(0.263169,0.009484,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.263169,0.009484,-0.009003,0.249838,0,0);}
.mf4_c01128{transform:matrix(0.263514,0.009496,-0.009003,0.249838,0,0);-ms-transform:matrix(0.263514,0.009496,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.263514,0.009496,-0.009003,0.249838,0,0);}
.mda_c01128{transform:matrix(0.264130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264130,0.000000,0.000000,0.250000,0,0);}
.m19_c01128{transform:matrix(0.264787,0.004766,-0.004499,0.249960,0,0);-ms-transform:matrix(0.264787,0.004766,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.264787,0.004766,-0.004499,0.249960,0,0);}
.me1_c01128{transform:matrix(0.264877,0.005298,-0.004999,0.249950,0,0);-ms-transform:matrix(0.264877,0.005298,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.264877,0.005298,-0.004999,0.249950,0,0);}
.m36_c01128{transform:matrix(0.264977,0.004770,-0.004499,0.249960,0,0);-ms-transform:matrix(0.264977,0.004770,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.264977,0.004770,-0.004499,0.249960,0,0);}
.mde_c01128{transform:matrix(0.265377,0.005308,-0.004999,0.249950,0,0);-ms-transform:matrix(0.265377,0.005308,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.265377,0.005308,-0.004999,0.249950,0,0);}
.m1d_c01128{transform:matrix(0.265587,0.004781,-0.004499,0.249960,0,0);-ms-transform:matrix(0.265587,0.004781,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.265587,0.004781,-0.004499,0.249960,0,0);}
.m38_c01128{transform:matrix(0.265632,0.004781,-0.004499,0.249960,0,0);-ms-transform:matrix(0.265632,0.004781,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.265632,0.004781,-0.004499,0.249960,0,0);}
.m5b_c01128{transform:matrix(0.265726,0.005580,-0.005249,0.249945,0,0);-ms-transform:matrix(0.265726,0.005580,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.265726,0.005580,-0.005249,0.249945,0,0);}
.m81_c01128{transform:matrix(0.265966,0.005851,-0.005499,0.249940,0,0);-ms-transform:matrix(0.265966,0.005851,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.265966,0.005851,-0.005499,0.249940,0,0);}
.m85_c01128{transform:matrix(0.266256,0.005858,-0.005499,0.249940,0,0);-ms-transform:matrix(0.266256,0.005858,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.266256,0.005858,-0.005499,0.249940,0,0);}
.m97_c01128{transform:matrix(0.266267,0.005325,-0.004999,0.249950,0,0);-ms-transform:matrix(0.266267,0.005325,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.266267,0.005325,-0.004999,0.249950,0,0);}
.m63_c01128{transform:matrix(0.266426,0.005861,-0.005499,0.249940,0,0);-ms-transform:matrix(0.266426,0.005861,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.266426,0.005861,-0.005499,0.249940,0,0);}
.m6b_c01128{transform:matrix(0.266466,0.005862,-0.005499,0.249940,0,0);-ms-transform:matrix(0.266466,0.005862,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.266466,0.005862,-0.005499,0.249940,0,0);}
.m7a_c01128{transform:matrix(0.266745,0.005868,-0.005499,0.249940,0,0);-ms-transform:matrix(0.266745,0.005868,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.266745,0.005868,-0.005499,0.249940,0,0);}
.mb6_c01128{transform:matrix(0.267510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267510,0.000000,0.000000,0.250000,0,0);}
.m2f_c01128{transform:matrix(0.267612,0.004817,-0.004499,0.249960,0,0);-ms-transform:matrix(0.267612,0.004817,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.267612,0.004817,-0.004499,0.249960,0,0);}
.m1a_c01128{transform:matrix(0.268961,0.004841,-0.004499,0.249960,0,0);-ms-transform:matrix(0.268961,0.004841,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.268961,0.004841,-0.004499,0.249960,0,0);}
.m64_c01128{transform:matrix(0.270250,0.005945,-0.005499,0.249940,0,0);-ms-transform:matrix(0.270250,0.005945,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.270250,0.005945,-0.005499,0.249940,0,0);}
.m91_c01128{transform:matrix(0.270356,0.007300,-0.006748,0.249909,0,0);-ms-transform:matrix(0.270356,0.007300,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.270356,0.007300,-0.006748,0.249909,0,0);}
.m76_c01128{transform:matrix(0.271052,0.006505,-0.005998,0.249928,0,0);-ms-transform:matrix(0.271052,0.006505,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.271052,0.006505,-0.005998,0.249928,0,0);}
.m7c_c01128{transform:matrix(0.271074,0.005964,-0.005499,0.249940,0,0);-ms-transform:matrix(0.271074,0.005964,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.271074,0.005964,-0.005499,0.249940,0,0);}
.m8e_c01128{transform:matrix(0.271366,0.007327,-0.006748,0.249909,0,0);-ms-transform:matrix(0.271366,0.007327,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.271366,0.007327,-0.006748,0.249909,0,0);}
.m70_c01128{transform:matrix(0.271482,0.006516,-0.005998,0.249928,0,0);-ms-transform:matrix(0.271482,0.006516,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.271482,0.006516,-0.005998,0.249928,0,0);}
.m7b_c01128{transform:matrix(0.271784,0.005979,-0.005499,0.249940,0,0);-ms-transform:matrix(0.271784,0.005979,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.271784,0.005979,-0.005499,0.249940,0,0);}
.m3c_c01128{transform:matrix(0.272476,0.004905,-0.004499,0.249960,0,0);-ms-transform:matrix(0.272476,0.004905,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.272476,0.004905,-0.004499,0.249960,0,0);}
.m31_c01128{transform:matrix(0.272496,0.004905,-0.004499,0.249960,0,0);-ms-transform:matrix(0.272496,0.004905,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.272496,0.004905,-0.004499,0.249960,0,0);}
.m72_c01128{transform:matrix(0.272801,0.006547,-0.005998,0.249928,0,0);-ms-transform:matrix(0.272801,0.006547,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.272801,0.006547,-0.005998,0.249928,0,0);}
.m96_c01128{transform:matrix(0.272930,0.005459,-0.004999,0.249950,0,0);-ms-transform:matrix(0.272930,0.005459,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.272930,0.005459,-0.004999,0.249950,0,0);}
.mf3_c01128{transform:matrix(0.273168,0.009844,-0.009003,0.249838,0,0);-ms-transform:matrix(0.273168,0.009844,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.273168,0.009844,-0.009003,0.249838,0,0);}
.mee_c01128{transform:matrix(0.273278,0.009848,-0.009003,0.249838,0,0);-ms-transform:matrix(0.273278,0.009848,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.273278,0.009848,-0.009003,0.249838,0,0);}
.m8c_c01128{transform:matrix(0.273660,0.007389,-0.006748,0.249909,0,0);-ms-transform:matrix(0.273660,0.007389,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.273660,0.007389,-0.006748,0.249909,0,0);}
.mf5_c01128{transform:matrix(0.274372,0.009887,-0.009003,0.249838,0,0);-ms-transform:matrix(0.274372,0.009887,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.274372,0.009887,-0.009003,0.249838,0,0);}
.m88_c01128{transform:matrix(0.274414,0.006037,-0.005499,0.249940,0,0);-ms-transform:matrix(0.274414,0.006037,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.274414,0.006037,-0.005499,0.249940,0,0);}
.m67_c01128{transform:matrix(0.274434,0.006038,-0.005499,0.249940,0,0);-ms-transform:matrix(0.274434,0.006038,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.274434,0.006038,-0.005499,0.249940,0,0);}
.m35_c01128{transform:matrix(0.274925,0.004949,-0.004499,0.249960,0,0);-ms-transform:matrix(0.274925,0.004949,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.274925,0.004949,-0.004499,0.249960,0,0);}
.m75_c01128{transform:matrix(0.275386,0.006609,-0.005998,0.249928,0,0);-ms-transform:matrix(0.275386,0.006609,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.275386,0.006609,-0.005998,0.249928,0,0);}
.m8f_c01128{transform:matrix(0.275505,0.007439,-0.006748,0.249909,0,0);-ms-transform:matrix(0.275505,0.007439,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.275505,0.007439,-0.006748,0.249909,0,0);}
.m6e_c01128{transform:matrix(0.275526,0.006613,-0.005998,0.249928,0,0);-ms-transform:matrix(0.275526,0.006613,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.275526,0.006613,-0.005998,0.249928,0,0);}
.m98_c01128{transform:matrix(0.275625,0.005512,-0.004999,0.249950,0,0);-ms-transform:matrix(0.275625,0.005512,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.275625,0.005512,-0.004999,0.249950,0,0);}
.m62_c01128{transform:matrix(0.275718,0.006066,-0.005499,0.249940,0,0);-ms-transform:matrix(0.275718,0.006066,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.275718,0.006066,-0.005499,0.249940,0,0);}
.mdd_c01128{transform:matrix(0.276195,0.005524,-0.004999,0.249950,0,0);-ms-transform:matrix(0.276195,0.005524,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.276195,0.005524,-0.004999,0.249950,0,0);}
.m3f_c01128{transform:matrix(0.276760,0.004982,-0.004499,0.249960,0,0);-ms-transform:matrix(0.276760,0.004982,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.276760,0.004982,-0.004499,0.249960,0,0);}
.m99_c01128{transform:matrix(0.277250,0.005545,-0.004999,0.249950,0,0);-ms-transform:matrix(0.277250,0.005545,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.277250,0.005545,-0.004999,0.249950,0,0);}
.m42_c01128{transform:matrix(0.277624,0.005830,-0.005249,0.249945,0,0);-ms-transform:matrix(0.277624,0.005830,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.277624,0.005830,-0.005249,0.249945,0,0);}
.m46_c01128{transform:matrix(0.278189,0.005842,-0.005249,0.249945,0,0);-ms-transform:matrix(0.278189,0.005842,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.278189,0.005842,-0.005249,0.249945,0,0);}
.mdf_c01128{transform:matrix(0.278434,0.005569,-0.004999,0.249950,0,0);-ms-transform:matrix(0.278434,0.005569,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.278434,0.005569,-0.004999,0.249950,0,0);}
.m83_c01128{transform:matrix(0.278603,0.006129,-0.005499,0.249940,0,0);-ms-transform:matrix(0.278603,0.006129,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.278603,0.006129,-0.005499,0.249940,0,0);}
.meb_c01128{transform:matrix(0.278789,0.010046,-0.009003,0.249838,0,0);-ms-transform:matrix(0.278789,0.010046,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.278789,0.010046,-0.009003,0.249838,0,0);}
.m2d_c01128{transform:matrix(0.280205,0.005044,-0.004499,0.249960,0,0);-ms-transform:matrix(0.280205,0.005044,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.280205,0.005044,-0.004499,0.249960,0,0);}
.m90_c01128{transform:matrix(0.280988,0.007587,-0.006748,0.249909,0,0);-ms-transform:matrix(0.280988,0.007587,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.280988,0.007587,-0.006748,0.249909,0,0);}
.m1b_c01128{transform:matrix(0.281199,0.005062,-0.004499,0.249960,0,0);-ms-transform:matrix(0.281199,0.005062,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.281199,0.005062,-0.004499,0.249960,0,0);}
.m4a_c01128{transform:matrix(0.281463,0.005911,-0.005249,0.249945,0,0);-ms-transform:matrix(0.281463,0.005911,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.281463,0.005911,-0.005249,0.249945,0,0);}
.m5f_c01128{transform:matrix(0.282799,0.005373,-0.004749,0.249955,0,0);-ms-transform:matrix(0.282799,0.005373,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.282799,0.005373,-0.004749,0.249955,0,0);}
.m8a_c01128{transform:matrix(0.282972,0.006225,-0.005499,0.249940,0,0);-ms-transform:matrix(0.282972,0.006225,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.282972,0.006225,-0.005499,0.249940,0,0);}
.m0_c01128{transform:matrix(0.283545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283545,0.000000,0.000000,0.250000,0,0);}
.m49_c01128{transform:matrix(0.286237,0.006011,-0.005249,0.249945,0,0);-ms-transform:matrix(0.286237,0.006011,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.286237,0.006011,-0.005249,0.249945,0,0);}
.m9b_c01128{transform:matrix(0.288172,0.005763,-0.004999,0.249950,0,0);-ms-transform:matrix(0.288172,0.005763,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.288172,0.005763,-0.004999,0.249950,0,0);}
.mb7_c01128{transform:matrix(0.293480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293480,0.000000,0.000000,0.250000,0,0);}
.mb8_c01128{transform:matrix(0.293695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293695,0.000000,0.000000,0.250000,0,0);}
.m15_c01128{transform:matrix(0.295772,0.004732,-0.003999,0.249968,0,0);-ms-transform:matrix(0.295772,0.004732,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.295772,0.004732,-0.003999,0.249968,0,0);}
.m10_c01128{transform:matrix(0.297977,0.004768,-0.003999,0.249968,0,0);-ms-transform:matrix(0.297977,0.004768,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.297977,0.004768,-0.003999,0.249968,0,0);}
.m14_c01128{transform:matrix(0.298277,0.004772,-0.003999,0.249968,0,0);-ms-transform:matrix(0.298277,0.004772,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.298277,0.004772,-0.003999,0.249968,0,0);}
.ma4_c01128{transform:matrix(0.302425,0.006048,-0.004999,0.249950,0,0);-ms-transform:matrix(0.302425,0.006048,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.302425,0.006048,-0.004999,0.249950,0,0);}
.mba_c01128{transform:matrix(0.303685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303685,0.000000,0.000000,0.250000,0,0);}
.m61_c01128{transform:matrix(0.305565,0.005806,-0.004749,0.249955,0,0);-ms-transform:matrix(0.305565,0.005806,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.305565,0.005806,-0.004749,0.249955,0,0);}
.m44_c01128{transform:matrix(0.305763,0.006421,-0.005249,0.249945,0,0);-ms-transform:matrix(0.305763,0.006421,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.305763,0.006421,-0.005249,0.249945,0,0);}
.m13_c01128{transform:matrix(0.306936,0.004911,-0.003999,0.249968,0,0);-ms-transform:matrix(0.306936,0.004911,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.306936,0.004911,-0.003999,0.249968,0,0);}
.m11_c01128{transform:matrix(0.307091,0.004913,-0.003999,0.249968,0,0);-ms-transform:matrix(0.307091,0.004913,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.307091,0.004913,-0.003999,0.249968,0,0);}
.m1e_c01128{transform:matrix(0.309280,0.005567,-0.004499,0.249960,0,0);-ms-transform:matrix(0.309280,0.005567,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.309280,0.005567,-0.004499,0.249960,0,0);}
.m87_c01128{transform:matrix(0.314129,0.006911,-0.005499,0.249940,0,0);-ms-transform:matrix(0.314129,0.006911,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.314129,0.006911,-0.005499,0.249940,0,0);}
.m6d_c01128{transform:matrix(0.323942,0.007775,-0.005998,0.249928,0,0);-ms-transform:matrix(0.323942,0.007775,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.323942,0.007775,-0.005998,0.249928,0,0);}
.m2_c01128{transform:matrix(0.356755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356755,0.000000,0.000000,0.250000,0,0);}
.m54_c01128{transform:matrix(0.356881,0.007495,-0.005249,0.249945,0,0);-ms-transform:matrix(0.356881,0.007495,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.356881,0.007495,-0.005249,0.249945,0,0);}
.m2a_c01128{transform:matrix(0.360665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360665,0.000000,0.000000,0.250000,0,0);}
.m16_c01128{transform:matrix(0.367613,0.005882,-0.003999,0.249968,0,0);-ms-transform:matrix(0.367613,0.005882,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.367613,0.005882,-0.003999,0.249968,0,0);}
.m43_c01128{transform:matrix(0.374397,0.007862,-0.005249,0.249945,0,0);-ms-transform:matrix(0.374397,0.007862,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.374397,0.007862,-0.005249,0.249945,0,0);}
.m2b_c01128{transform:matrix(0.385750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385750,0.000000,0.000000,0.250000,0,0);}
.m94_c01128{transform:matrix(0.427819,0.011551,-0.006748,0.249909,0,0);-ms-transform:matrix(0.427819,0.011551,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.427819,0.011551,-0.006748,0.249909,0,0);}
.m1_c01128{transform:matrix(0.446175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446175,0.000000,0.000000,0.250000,0,0);}
.mdc_c01128{transform:matrix(0.514240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514240,0.000000,0.000000,0.250000,0,0);}
.me_c01128{transform:matrix(0.594820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.594820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.594820,0.000000,0.000000,0.250000,0,0);}
.mc_c01128{transform:matrix(0.605830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605830,0.000000,0.000000,0.250000,0,0);}
.mf_c01128{transform:matrix(0.608655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608655,0.000000,0.000000,0.250000,0,0);}
.m78_c01128{transform:matrix(0.964782,0.021225,-0.005499,0.249940,0,0);-ms-transform:matrix(0.964782,0.021225,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.964782,0.021225,-0.005499,0.249940,0,0);}
.m89_c01128{transform:matrix(1.127902,0.024814,-0.005499,0.249940,0,0);-ms-transform:matrix(1.127902,0.024814,-0.005499,0.249940,0,0);-webkit-transform:matrix(1.127902,0.024814,-0.005499,0.249940,0,0);}
.m77_c01128{transform:matrix(2.205871,0.048529,-0.005499,0.249940,0,0);-ms-transform:matrix(2.205871,0.048529,-0.005499,0.249940,0,0);-webkit-transform:matrix(2.205871,0.048529,-0.005499,0.249940,0,0);}
.v0_c01128{vertical-align:0.000000px;}
.ls0_c01128{letter-spacing:0.000000px;}
.sc__c01128{text-shadow:none;}
.sc0_c01128{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__c01128{-webkit-text-stroke:0px transparent;}
.sc0_c01128{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01128{word-spacing:0.000000px;}
.fc0_c01128{color:transparent;}
.fs2_c01128{font-size:24.000000px;}
.fse_c01128{font-size:36.008711px;}
.fs8_c01128{font-size:48.000000px;}
.fs0_c01128{font-size:66.000000px;}
.fs4_c01128{font-size:66.008447px;}
.fsb_c01128{font-size:66.011912px;}
.fs17_c01128{font-size:71.974688px;}
.fs15_c01128{font-size:72.000000px;}
.fs5_c01128{font-size:72.011663px;}
.fs11_c01128{font-size:72.014399px;}
.fs9_c01128{font-size:72.015874px;}
.fsc_c01128{font-size:72.017422px;}
.fsd_c01128{font-size:72.020733px;}
.fsf_c01128{font-size:72.026239px;}
.fs16_c01128{font-size:77.972578px;}
.fs3_c01128{font-size:78.000000px;}
.fs7_c01128{font-size:78.012635px;}
.fs12_c01128{font-size:78.015598px;}
.fsa_c01128{font-size:78.017197px;}
.fs13_c01128{font-size:78.028426px;}
.fs6_c01128{font-size:84.000000px;}
.fs10_c01128{font-size:84.030612px;}
.fs14_c01128{font-size:84.032922px;}
.fs1_c01128{font-size:90.011519px;}
.y0_c01128{bottom:0.000000px;}
.yf3_c01128{bottom:38.471758px;}
.yf2_c01128{bottom:41.170300px;}
.yf1_c01128{bottom:42.975143px;}
.yf0_c01128{bottom:46.450920px;}
.yef_c01128{bottom:47.809155px;}
.yee_c01128{bottom:49.525788px;}
.yed_c01128{bottom:50.902140px;}
.yec_c01128{bottom:53.106056px;}
.yeb_c01128{bottom:56.216469px;}
.yea_c01128{bottom:57.549067px;}
.ye9_c01128{bottom:59.261434px;}
.ye8_c01128{bottom:63.205554px;}
.ye7_c01128{bottom:80.060304px;}
.ye6_c01128{bottom:81.237072px;}
.ye5_c01128{bottom:83.605836px;}
.ye4_c01128{bottom:86.010348px;}
.ye3_c01128{bottom:88.820778px;}
.ye2_c01128{bottom:90.406920px;}
.ye1_c01128{bottom:93.945162px;}
.ye0_c01128{bottom:97.482000px;}
.ydf_c01128{bottom:120.161730px;}
.yde_c01128{bottom:121.785180px;}
.ydd_c01128{bottom:122.438880px;}
.ydc_c01128{bottom:124.431840px;}
.ydb_c01128{bottom:125.966100px;}
.yda_c01128{bottom:126.625200px;}
.yd9_c01128{bottom:128.796000px;}
.yd8_c01128{bottom:151.362000px;}
.yd7_c01128{bottom:152.824500px;}
.yd6_c01128{bottom:154.831500px;}
.yd5_c01128{bottom:155.172000px;}
.yd4_c01128{bottom:157.129500px;}
.yd3_c01128{bottom:159.762000px;}
.yd2_c01128{bottom:161.761500px;}
.yd1_c01128{bottom:162.625500px;}
.yd0_c01128{bottom:163.495500px;}
.ycf_c01128{bottom:164.611500px;}
.yce_c01128{bottom:166.056000px;}
.ycd_c01128{bottom:186.037500px;}
.ycc_c01128{bottom:186.616500px;}
.ycb_c01128{bottom:188.926500px;}
.yca_c01128{bottom:191.182500px;}
.yc9_c01128{bottom:192.162000px;}
.yc8_c01128{bottom:194.071500px;}
.yc7_c01128{bottom:195.982500px;}
.yc6_c01128{bottom:198.523500px;}
.yc5_c01128{bottom:199.168500px;}
.yc4_c01128{bottom:201.429000px;}
.yc3_c01128{bottom:233.946000px;}
.yc2_c01128{bottom:253.820730px;}
.yc1_c01128{bottom:255.099126px;}
.yc0_c01128{bottom:256.935072px;}
.ybf_c01128{bottom:258.216240px;}
.ybe_c01128{bottom:259.153722px;}
.ybd_c01128{bottom:261.952350px;}
.ybc_c01128{bottom:263.458302px;}
.ybb_c01128{bottom:264.424974px;}
.yba_c01128{bottom:265.975446px;}
.yb9_c01128{bottom:266.905368px;}
.yb8_c01128{bottom:271.229268px;}
.yb7_c01128{bottom:271.626000px;}
.yb6_c01128{bottom:304.438500px;}
.yb5_c01128{bottom:304.984500px;}
.yb4_c01128{bottom:306.453000px;}
.ye_c01128{bottom:309.018000px;}
.yb3_c01128{bottom:339.546000px;}
.yb2_c01128{bottom:360.775926px;}
.yb1_c01128{bottom:362.597940px;}
.yb0_c01128{bottom:364.088300px;}
.yaf_c01128{bottom:367.383744px;}
.yae_c01128{bottom:367.980714px;}
.yad_c01128{bottom:371.541474px;}
.yac_c01128{bottom:374.283081px;}
.yab_c01128{bottom:377.199000px;}
.yaa_c01128{bottom:401.241840px;}
.ya9_c01128{bottom:403.435620px;}
.ya8_c01128{bottom:404.259600px;}
.ya7_c01128{bottom:406.520460px;}
.ya6_c01128{bottom:407.316870px;}
.ya5_c01128{bottom:408.132330px;}
.ya4_c01128{bottom:410.361540px;}
.ya3_c01128{bottom:411.412860px;}
.ya2_c01128{bottom:412.285260px;}
.ya1_c01128{bottom:432.621900px;}
.ya0_c01128{bottom:434.392740px;}
.y9f_c01128{bottom:436.816830px;}
.y9e_c01128{bottom:437.735910px;}
.y9d_c01128{bottom:441.868830px;}
.y9c_c01128{bottom:443.115090px;}
.y9b_c01128{bottom:444.609690px;}
.y9a_c01128{bottom:446.986920px;}
.y99_c01128{bottom:448.473450px;}
.yd_c01128{bottom:450.492000px;}
.y98_c01128{bottom:474.188700px;}
.y97_c01128{bottom:475.074870px;}
.y96_c01128{bottom:477.257100px;}
.y95_c01128{bottom:479.730660px;}
.y94_c01128{bottom:481.496550px;}
.y93_c01128{bottom:483.036000px;}
.y92_c01128{bottom:501.953137px;}
.y91_c01128{bottom:518.665381px;}
.y90_c01128{bottom:539.114773px;}
.y8f_c01128{bottom:539.510863px;}
.y8e_c01128{bottom:541.631282px;}
.y8d_c01128{bottom:544.695714px;}
.y8c_c01128{bottom:548.218242px;}
.y8b_c01128{bottom:550.965762px;}
.y8a_c01128{bottom:552.147673px;}
.y89_c01128{bottom:555.129000px;}
.y88_c01128{bottom:573.561309px;}
.y87_c01128{bottom:574.657779px;}
.y86_c01128{bottom:577.283223px;}
.y82_c01128{bottom:579.021477px;}
.y81_c01128{bottom:579.680487px;}
.y85_c01128{bottom:580.462527px;}
.y80_c01128{bottom:582.133638px;}
.y84_c01128{bottom:582.562236px;}
.y7f_c01128{bottom:583.462401px;}
.y7e_c01128{bottom:586.541328px;}
.y7d_c01128{bottom:588.135090px;}
.y7c_c01128{bottom:588.810420px;}
.y7b_c01128{bottom:590.753622px;}
.y83_c01128{bottom:591.824430px;}
.y7a_c01128{bottom:616.080210px;}
.y79_c01128{bottom:622.110933px;}
.y78_c01128{bottom:623.750352px;}
.y77_c01128{bottom:624.679677px;}
.y76_c01128{bottom:625.592682px;}
.y75_c01128{bottom:641.561514px;}
.y74_c01128{bottom:643.978500px;}
.y73_c01128{bottom:645.684096px;}
.y72_c01128{bottom:647.758080px;}
.y71_c01128{bottom:648.882708px;}
.y70_c01128{bottom:649.750104px;}
.y6f_c01128{bottom:652.905180px;}
.y6e_c01128{bottom:654.083280px;}
.y6d_c01128{bottom:656.386692px;}
.y6c_c01128{bottom:657.537876px;}
.y6b_c01128{bottom:660.964044px;}
.y6a_c01128{bottom:666.257256px;}
.y69_c01128{bottom:675.810000px;}
.y68_c01128{bottom:682.879470px;}
.y67_c01128{bottom:683.616888px;}
.y66_c01128{bottom:684.102285px;}
.y65_c01128{bottom:685.334175px;}
.y64_c01128{bottom:687.288996px;}
.y63_c01128{bottom:688.476963px;}
.y62_c01128{bottom:689.486895px;}
.y61_c01128{bottom:691.197978px;}
.y60_c01128{bottom:693.128940px;}
.y5f_c01128{bottom:695.796000px;}
.y5e_c01128{bottom:728.216838px;}
.y5d_c01128{bottom:728.847914px;}
.y5c_c01128{bottom:730.084500px;}
.y5b_c01128{bottom:752.467001px;}
.y5a_c01128{bottom:753.905676px;}
.y59_c01128{bottom:754.892526px;}
.y58_c01128{bottom:758.320809px;}
.y57_c01128{bottom:759.064500px;}
.y56_c01128{bottom:759.811876px;}
.y55_c01128{bottom:761.012949px;}
.y54_c01128{bottom:762.931422px;}
.y53_c01128{bottom:763.686075px;}
.y52_c01128{bottom:764.624218px;}
.y51_c01128{bottom:788.662089px;}
.y50_c01128{bottom:789.586451px;}
.y4f_c01128{bottom:790.266685px;}
.y4e_c01128{bottom:792.237047px;}
.y4d_c01128{bottom:793.109850px;}
.y4c_c01128{bottom:793.810277px;}
.y4b_c01128{bottom:794.684340px;}
.y4a_c01128{bottom:796.468263px;}
.y49_c01128{bottom:797.364514px;}
.y48_c01128{bottom:798.029019px;}
.y47_c01128{bottom:801.080073px;}
.y46_c01128{bottom:858.938366px;}
.y45_c01128{bottom:862.007537px;}
.y44_c01128{bottom:862.687905px;}
.y43_c01128{bottom:863.605752px;}
.y42_c01128{bottom:865.710992px;}
.y41_c01128{bottom:866.408590px;}
.y40_c01128{bottom:867.108111px;}
.y3f_c01128{bottom:869.203995px;}
.y3e_c01128{bottom:871.279246px;}
.y3d_c01128{bottom:871.726232px;}
.y3c_c01128{bottom:872.646000px;}
.y3b_c01128{bottom:900.934575px;}
.y3a_c01128{bottom:901.686831px;}
.y39_c01128{bottom:902.458284px;}
.y38_c01128{bottom:903.981993px;}
.y37_c01128{bottom:904.900425px;}
.y36_c01128{bottom:906.401091px;}
.y35_c01128{bottom:906.780999px;}
.y34_c01128{bottom:907.732518px;}
.y33_c01128{bottom:933.187869px;}
.y32_c01128{bottom:935.189316px;}
.y31_c01128{bottom:936.368562px;}
.y30_c01128{bottom:937.186809px;}
.y2f_c01128{bottom:938.848179px;}
.y2e_c01128{bottom:939.683001px;}
.y2d_c01128{bottom:940.861896px;}
.y2c_c01128{bottom:941.510550px;}
.y2b_c01128{bottom:942.839238px;}
.y2a_c01128{bottom:957.149487px;}
.y29_c01128{bottom:961.773966px;}
.y28_c01128{bottom:962.550000px;}
.y27_c01128{bottom:975.667500px;}
.y26_c01128{bottom:1000.941912px;}
.y25_c01128{bottom:1003.158936px;}
.y24_c01128{bottom:1003.800699px;}
.y23_c01128{bottom:1004.977683px;}
.y22_c01128{bottom:1006.766838px;}
.y21_c01128{bottom:1008.754956px;}
.y20_c01128{bottom:1010.971116px;}
.y1f_c01128{bottom:1012.774500px;}
.y1e_c01128{bottom:1046.646000px;}
.y1d_c01128{bottom:1073.151603px;}
.y1c_c01128{bottom:1074.157974px;}
.y1b_c01128{bottom:1074.954960px;}
.y1a_c01128{bottom:1077.545610px;}
.y19_c01128{bottom:1079.115498px;}
.y18_c01128{bottom:1080.923823px;}
.y17_c01128{bottom:1081.730637px;}
.yc_c01128{bottom:1082.839500px;}
.y16_c01128{bottom:1083.514500px;}
.y15_c01128{bottom:1109.500584px;}
.y14_c01128{bottom:1111.114824px;}
.y13_c01128{bottom:1113.054744px;}
.y12_c01128{bottom:1114.995840px;}
.y11_c01128{bottom:1115.674992px;}
.y10_c01128{bottom:1117.327656px;}
.yf_c01128{bottom:1118.883000px;}
.yb_c01128{bottom:1121.988000px;}
.ya_c01128{bottom:1146.307704px;}
.y9_c01128{bottom:1146.834816px;}
.y8_c01128{bottom:1148.627808px;}
.y7_c01128{bottom:1149.332088px;}
.y6_c01128{bottom:1150.736256px;}
.y5_c01128{bottom:1151.076600px;}
.y4_c01128{bottom:1152.857328px;}
.y3_c01128{bottom:1154.500176px;}
.y2_c01128{bottom:1155.873000px;}
.y1_c01128{bottom:1205.833500px;}
.h4_c01128{height:24.000000px;}
.h10_c01128{height:36.008711px;}
.ha_c01128{height:48.000000px;}
.h2_c01128{height:66.000000px;}
.h6_c01128{height:66.008447px;}
.hd_c01128{height:66.011912px;}
.h19_c01128{height:71.974688px;}
.h17_c01128{height:72.000000px;}
.h7_c01128{height:72.011663px;}
.h13_c01128{height:72.014399px;}
.hb_c01128{height:72.015874px;}
.he_c01128{height:72.017422px;}
.hf_c01128{height:72.020733px;}
.h11_c01128{height:72.026239px;}
.h18_c01128{height:77.972578px;}
.h5_c01128{height:78.000000px;}
.h9_c01128{height:78.012635px;}
.h14_c01128{height:78.015598px;}
.hc_c01128{height:78.017197px;}
.h15_c01128{height:78.028426px;}
.h8_c01128{height:84.000000px;}
.h12_c01128{height:84.030612px;}
.h16_c01128{height:84.032922px;}
.h3_c01128{height:90.011519px;}
.h0_c01128{height:1246.320000px;}
.h1_c01128{height:1246.500000px;}
.w0_c01128{width:898.500000px;}
.x0_c01128{left:0.000000px;}
.x4_c01128{left:109.692000px;}
.xf_c01128{left:145.530000px;}
.xe_c01128{left:147.690000px;}
.xd_c01128{left:156.330000px;}
.x92_c01128{left:182.586000px;}
.x17_c01128{left:186.318000px;}
.x30_c01128{left:194.139354px;}
.x5_c01128{left:195.493500px;}
.x93_c01128{left:196.755000px;}
.x10_c01128{left:199.309500px;}
.x70_c01128{left:200.387220px;}
.x55_c01128{left:203.019000px;}
.x38_c01128{left:239.547000px;}
.x31_c01128{left:250.085853px;}
.x9e_c01128{left:252.103500px;}
.x7f_c01128{left:254.499180px;}
.x68_c01128{left:257.191242px;}
.x52_c01128{left:259.209000px;}
.x49_c01128{left:260.260980px;}
.x1d_c01128{left:261.630000px;}
.x32_c01128{left:272.442258px;}
.x9a_c01128{left:274.149000px;}
.x7a_c01128{left:276.766500px;}
.x28_c01128{left:283.552122px;}
.x18_c01128{left:285.421500px;}
.x85_c01128{left:289.204860px;}
.x1f_c01128{left:295.150500px;}
.x11_c01128{left:296.518500px;}
.x6_c01128{left:298.171500px;}
.x6c_c01128{left:299.323806px;}
.x69_c01128{left:300.669699px;}
.x4a_c01128{left:302.933598px;}
.xa4_c01128{left:306.174000px;}
.x8d_c01128{left:307.980000px;}
.x73_c01128{left:310.672500px;}
.x91_c01128{left:318.090000px;}
.x53_c01128{left:324.292500px;}
.x29_c01128{left:326.757444px;}
.x9f_c01128{left:328.476000px;}
.x19_c01128{left:330.244500px;}
.x86_c01128{left:331.266660px;}
.x6d_c01128{left:333.090291px;}
.x60_c01128{left:334.392768px;}
.x4b_c01128{left:337.225874px;}
.x1e_c01128{left:339.390000px;}
.x80_c01128{left:342.523350px;}
.x6a_c01128{left:344.958189px;}
.x40_c01128{left:347.510131px;}
.x94_c01128{left:351.180000px;}
.x74_c01128{left:354.447000px;}
.x54_c01128{left:357.507000px;}
.x39_c01128{left:359.653500px;}
.x33_c01128{left:360.730851px;}
.xa0_c01128{left:361.734000px;}
.x7b_c01128{left:365.061000px;}
.xaa_c01128{left:371.283892px;}
.x61_c01128{left:378.669144px;}
.x41_c01128{left:380.725324px;}
.xa8_c01128{left:382.573470px;}
.x95_c01128{left:384.391500px;}
.x81_c01128{left:397.895610px;}
.x12_c01128{left:399.810000px;}
.x2a_c01128{left:405.339183px;}
.x26_c01128{left:407.946000px;}
.x7_c01128{left:409.467000px;}
.x56_c01128{left:412.020000px;}
.x5e_c01128{left:413.350500px;}
.x34_c01128{left:414.755823px;}
.xa5_c01128{left:415.842000px;}
.x20_c01128{left:418.270500px;}
.x87_c01128{left:420.443250px;}
.x6b_c01128{left:423.024405px;}
.x4c_c01128{left:424.437047px;}
.x42_c01128{left:425.547769px;}
.xa9_c01128{left:426.588910px;}
.x8_c01128{left:430.738500px;}
.x1_c01128{left:433.350000px;}
.xa1_c01128{left:438.646500px;}
.x96_c01128{left:439.765500px;}
.x13_c01128{left:442.257000px;}
.x82_c01128{left:444.077160px;}
.x9b_c01128{left:449.919000px;}
.x27_c01128{left:451.059000px;}
.x88_c01128{left:453.037980px;}
.x2_c01128{left:456.300000px;}
.x3a_c01128{left:459.457500px;}
.x2b_c01128{left:460.971180px;}
.x62_c01128{left:467.265396px;}
.x97_c01128{left:474.289500px;}
.x4d_c01128{left:479.058413px;}
.x89_c01128{left:484.905300px;}
.x7c_c01128{left:488.739000px;}
.x57_c01128{left:489.796500px;}
.x3b_c01128{left:492.768000px;}
.x71_c01128{left:499.155084px;}
.x3_c01128{left:502.470000px;}
.x35_c01128{left:504.407943px;}
.x4e_c01128{left:513.004188px;}
.x43_c01128{left:514.712628px;}
.x9c_c01128{left:515.782500px;}
.x9_c01128{left:518.499000px;}
.x3c_c01128{left:525.987000px;}
.x21_c01128{left:528.721500px;}
.x58_c01128{left:535.702500px;}
.xab_c01128{left:538.380021px;}
.xa2_c01128{left:539.905500px;}
.x8e_c01128{left:541.401000px;}
.x4f_c01128{left:546.774464px;}
.xa6_c01128{left:548.175000px;}
.x36_c01128{left:549.767253px;}
.x44_c01128{left:558.407041px;}
.xa_c01128{left:562.516500px;}
.x14_c01128{left:563.575500px;}
.x6e_c01128{left:566.700054px;}
.x2c_c01128{left:571.692147px;}
.x8a_c01128{left:575.364270px;}
.xac_c01128{left:581.269926px;}
.x75_c01128{left:586.671000px;}
.x59_c01128{left:589.701000px;}
.x37_c01128{left:594.060063px;}
.x7d_c01128{left:597.850500px;}
.x8b_c01128{left:608.309970px;}
.xa3_c01128{left:615.171000px;}
.x2d_c01128{left:626.236590px;}
.x22_c01128{left:628.119000px;}
.xa7_c01128{left:629.347500px;}
.x83_c01128{left:631.175970px;}
.x63_c01128{left:633.931404px;}
.x45_c01128{left:637.038679px;}
.x7e_c01128{left:642.159000px;}
.x1a_c01128{left:661.848000px;}
.x64_c01128{left:667.321320px;}
.x3d_c01128{left:669.943500px;}
.x66_c01128{left:671.577000px;}
.xb_c01128{left:674.578500px;}
.x5a_c01128{left:678.556500px;}
.x15_c01128{left:684.820500px;}
.x23_c01128{left:693.507000px;}
.x8c_c01128{left:696.090210px;}
.x76_c01128{left:700.168500px;}
.x3e_c01128{left:702.342000px;}
.x2e_c01128{left:704.837829px;}
.x1b_c01128{left:706.125000px;}
.xc_c01128{left:707.523000px;}
.x65_c01128{left:710.553732px;}
.x84_c01128{left:720.942900px;}
.x9d_c01128{left:726.957000px;}
.x24_c01128{left:729.160500px;}
.x5b_c01128{left:734.551500px;}
.x46_c01128{left:735.581758px;}
.x8f_c01128{left:740.763000px;}
.x50_c01128{left:747.443242px;}
.x72_c01128{left:754.148127px;}
.x5c_c01128{left:756.615000px;}
.x1c_c01128{left:762.034500px;}
.x47_c01128{left:769.617483px;}
.x98_c01128{left:772.831500px;}
.x77_c01128{left:778.702500px;}
.x67_c01128{left:781.440000px;}
.x16_c01128{left:785.710500px;}
.x6f_c01128{left:788.751822px;}
.x5d_c01128{left:790.134000px;}
.x78_c01128{left:793.372500px;}
.x90_c01128{left:808.245000px;}
.x5f_c01128{left:811.381500px;}
.x51_c01128{left:812.807356px;}
.xad_c01128{left:814.525869px;}
.x48_c01128{left:815.849960px;}
.x99_c01128{left:818.488500px;}
.x2f_c01128{left:838.286538px;}
.x3f_c01128{left:848.493000px;}
.x25_c01128{left:852.328500px;}
.x79_c01128{left:875.397619px;}
@media print{
.v0_c01128{vertical-align:0.000000pt;}
.ls0_c01128{letter-spacing:0.000000pt;}
.ws0_c01128{word-spacing:0.000000pt;}
.fs2_c01128{font-size:21.333333pt;}
.fse_c01128{font-size:32.007743pt;}
.fs8_c01128{font-size:42.666667pt;}
.fs0_c01128{font-size:58.666667pt;}
.fs4_c01128{font-size:58.674176pt;}
.fsb_c01128{font-size:58.677255pt;}
.fs17_c01128{font-size:63.977500pt;}
.fs15_c01128{font-size:64.000000pt;}
.fs5_c01128{font-size:64.010367pt;}
.fs11_c01128{font-size:64.012799pt;}
.fs9_c01128{font-size:64.014110pt;}
.fsc_c01128{font-size:64.015486pt;}
.fsd_c01128{font-size:64.018429pt;}
.fsf_c01128{font-size:64.023324pt;}
.fs16_c01128{font-size:69.308958pt;}
.fs3_c01128{font-size:69.333333pt;}
.fs7_c01128{font-size:69.344564pt;}
.fs12_c01128{font-size:69.347199pt;}
.fsa_c01128{font-size:69.348620pt;}
.fs13_c01128{font-size:69.358601pt;}
.fs6_c01128{font-size:74.666667pt;}
.fs10_c01128{font-size:74.693878pt;}
.fs14_c01128{font-size:74.695930pt;}
.fs1_c01128{font-size:80.010239pt;}
.y0_c01128{bottom:0.000000pt;}
.yf3_c01128{bottom:34.197119pt;}
.yf2_c01128{bottom:36.595823pt;}
.yf1_c01128{bottom:38.200127pt;}
.yf0_c01128{bottom:41.289707pt;}
.yef_c01128{bottom:42.497027pt;}
.yee_c01128{bottom:44.022923pt;}
.yed_c01128{bottom:45.246347pt;}
.yec_c01128{bottom:47.205383pt;}
.yeb_c01128{bottom:49.970195pt;}
.yea_c01128{bottom:51.154727pt;}
.ye9_c01128{bottom:52.676831pt;}
.ye8_c01128{bottom:56.182715pt;}
.ye7_c01128{bottom:71.164715pt;}
.ye6_c01128{bottom:72.210731pt;}
.ye5_c01128{bottom:74.316299pt;}
.ye4_c01128{bottom:76.453643pt;}
.ye3_c01128{bottom:78.951803pt;}
.ye2_c01128{bottom:80.361707pt;}
.ye1_c01128{bottom:83.506811pt;}
.ye0_c01128{bottom:86.650667pt;}
.ydf_c01128{bottom:106.810427pt;}
.yde_c01128{bottom:108.253493pt;}
.ydd_c01128{bottom:108.834560pt;}
.ydc_c01128{bottom:110.606080pt;}
.ydb_c01128{bottom:111.969867pt;}
.yda_c01128{bottom:112.555733pt;}
.yd9_c01128{bottom:114.485333pt;}
.yd8_c01128{bottom:134.544000pt;}
.yd7_c01128{bottom:135.844000pt;}
.yd6_c01128{bottom:137.628000pt;}
.yd5_c01128{bottom:137.930667pt;}
.yd4_c01128{bottom:139.670667pt;}
.yd3_c01128{bottom:142.010667pt;}
.yd2_c01128{bottom:143.788000pt;}
.yd1_c01128{bottom:144.556000pt;}
.yd0_c01128{bottom:145.329333pt;}
.ycf_c01128{bottom:146.321333pt;}
.yce_c01128{bottom:147.605333pt;}
.ycd_c01128{bottom:165.366667pt;}
.ycc_c01128{bottom:165.881333pt;}
.ycb_c01128{bottom:167.934667pt;}
.yca_c01128{bottom:169.940000pt;}
.yc9_c01128{bottom:170.810667pt;}
.yc8_c01128{bottom:172.508000pt;}
.yc7_c01128{bottom:174.206667pt;}
.yc6_c01128{bottom:176.465333pt;}
.yc5_c01128{bottom:177.038667pt;}
.yc4_c01128{bottom:179.048000pt;}
.yc3_c01128{bottom:207.952000pt;}
.yc2_c01128{bottom:225.618427pt;}
.yc1_c01128{bottom:226.754779pt;}
.yc0_c01128{bottom:228.386731pt;}
.ybf_c01128{bottom:229.525547pt;}
.ybe_c01128{bottom:230.358864pt;}
.ybd_c01128{bottom:232.846533pt;}
.ybc_c01128{bottom:234.185157pt;}
.ybb_c01128{bottom:235.044421pt;}
.yba_c01128{bottom:236.422619pt;}
.yb9_c01128{bottom:237.249216pt;}
.yb8_c01128{bottom:241.092683pt;}
.yb7_c01128{bottom:241.445333pt;}
.yb6_c01128{bottom:270.612000pt;}
.yb5_c01128{bottom:271.097333pt;}
.yb4_c01128{bottom:272.402667pt;}
.ye_c01128{bottom:274.682667pt;}
.yb3_c01128{bottom:301.818667pt;}
.yb2_c01128{bottom:320.689712pt;}
.yb1_c01128{bottom:322.309280pt;}
.yb0_c01128{bottom:323.634044pt;}
.yaf_c01128{bottom:326.563328pt;}
.yae_c01128{bottom:327.093968pt;}
.yad_c01128{bottom:330.259088pt;}
.yac_c01128{bottom:332.696072pt;}
.yab_c01128{bottom:335.288000pt;}
.yaa_c01128{bottom:356.659413pt;}
.ya9_c01128{bottom:358.609440pt;}
.ya8_c01128{bottom:359.341867pt;}
.ya7_c01128{bottom:361.351520pt;}
.ya6_c01128{bottom:362.059440pt;}
.ya5_c01128{bottom:362.784293pt;}
.ya4_c01128{bottom:364.765813pt;}
.ya3_c01128{bottom:365.700320pt;}
.ya2_c01128{bottom:366.475787pt;}
.ya1_c01128{bottom:384.552800pt;}
.ya0_c01128{bottom:386.126880pt;}
.y9f_c01128{bottom:388.281627pt;}
.y9e_c01128{bottom:389.098587pt;}
.y9d_c01128{bottom:392.772293pt;}
.y9c_c01128{bottom:393.880080pt;}
.y9b_c01128{bottom:395.208613pt;}
.y9a_c01128{bottom:397.321707pt;}
.y99_c01128{bottom:398.643067pt;}
.yd_c01128{bottom:400.437333pt;}
.y98_c01128{bottom:421.501067pt;}
.y97_c01128{bottom:422.288773pt;}
.y96_c01128{bottom:424.228533pt;}
.y95_c01128{bottom:426.427253pt;}
.y94_c01128{bottom:427.996933pt;}
.y93_c01128{bottom:429.365333pt;}
.y92_c01128{bottom:446.180567pt;}
.y91_c01128{bottom:461.035895pt;}
.y90_c01128{bottom:479.213132pt;}
.y8f_c01128{bottom:479.565212pt;}
.y8e_c01128{bottom:481.450028pt;}
.y8d_c01128{bottom:484.173968pt;}
.y8c_c01128{bottom:487.305104pt;}
.y8b_c01128{bottom:489.747344pt;}
.y8a_c01128{bottom:490.797932pt;}
.y89_c01128{bottom:493.448000pt;}
.y88_c01128{bottom:509.832275pt;}
.y87_c01128{bottom:510.806915pt;}
.y86_c01128{bottom:513.140643pt;}
.y82_c01128{bottom:514.685757pt;}
.y81_c01128{bottom:515.271544pt;}
.y85_c01128{bottom:515.966691pt;}
.y80_c01128{bottom:517.452123pt;}
.y84_c01128{bottom:517.833099pt;}
.y7f_c01128{bottom:518.633245pt;}
.y7e_c01128{bottom:521.370069pt;}
.y7d_c01128{bottom:522.786747pt;}
.y7c_c01128{bottom:523.387040pt;}
.y7b_c01128{bottom:525.114331pt;}
.y83_c01128{bottom:526.066160pt;}
.y7a_c01128{bottom:547.626853pt;}
.y79_c01128{bottom:552.987496pt;}
.y78_c01128{bottom:554.444757pt;}
.y77_c01128{bottom:555.270824pt;}
.y76_c01128{bottom:556.082384pt;}
.y75_c01128{bottom:570.276901pt;}
.y74_c01128{bottom:572.425333pt;}
.y73_c01128{bottom:573.941419pt;}
.y72_c01128{bottom:575.784960pt;}
.y71_c01128{bottom:576.784629pt;}
.y70_c01128{bottom:577.555648pt;}
.y6f_c01128{bottom:580.360160pt;}
.y6e_c01128{bottom:581.407360pt;}
.y6d_c01128{bottom:583.454837pt;}
.y6c_c01128{bottom:584.478112pt;}
.y6b_c01128{bottom:587.523595pt;}
.y6a_c01128{bottom:592.228672pt;}
.y69_c01128{bottom:600.720000pt;}
.y68_c01128{bottom:607.003973pt;}
.y67_c01128{bottom:607.659456pt;}
.y66_c01128{bottom:608.090920pt;}
.y65_c01128{bottom:609.185933pt;}
.y64_c01128{bottom:610.923552pt;}
.y63_c01128{bottom:611.979523pt;}
.y62_c01128{bottom:612.877240pt;}
.y61_c01128{bottom:614.398203pt;}
.y60_c01128{bottom:616.114613pt;}
.y5f_c01128{bottom:618.485333pt;}
.y5e_c01128{bottom:647.303856pt;}
.y5d_c01128{bottom:647.864812pt;}
.y5c_c01128{bottom:648.964000pt;}
.y5b_c01128{bottom:668.859556pt;}
.y5a_c01128{bottom:670.138379pt;}
.y59_c01128{bottom:671.015579pt;}
.y58_c01128{bottom:674.062941pt;}
.y57_c01128{bottom:674.724000pt;}
.y56_c01128{bottom:675.388335pt;}
.y55_c01128{bottom:676.455955pt;}
.y54_c01128{bottom:678.161264pt;}
.y53_c01128{bottom:678.832067pt;}
.y52_c01128{bottom:679.665972pt;}
.y51_c01128{bottom:701.032968pt;}
.y50_c01128{bottom:701.854623pt;}
.y4f_c01128{bottom:702.459276pt;}
.y4e_c01128{bottom:704.210708pt;}
.y4d_c01128{bottom:704.986533pt;}
.y4c_c01128{bottom:705.609135pt;}
.y4b_c01128{bottom:706.386080pt;}
.y4a_c01128{bottom:707.971789pt;}
.y49_c01128{bottom:708.768457pt;}
.y48_c01128{bottom:709.359128pt;}
.y47_c01128{bottom:712.071176pt;}
.y46_c01128{bottom:763.500769pt;}
.y45_c01128{bottom:766.228921pt;}
.y44_c01128{bottom:766.833693pt;}
.y43_c01128{bottom:767.649557pt;}
.y42_c01128{bottom:769.520881pt;}
.y41_c01128{bottom:770.140969pt;}
.y40_c01128{bottom:770.762765pt;}
.y3f_c01128{bottom:772.625773pt;}
.y3e_c01128{bottom:774.470441pt;}
.y3d_c01128{bottom:774.867761pt;}
.y3c_c01128{bottom:775.685333pt;}
.y3b_c01128{bottom:800.830733pt;}
.y3a_c01128{bottom:801.499405pt;}
.y39_c01128{bottom:802.185141pt;}
.y38_c01128{bottom:803.539549pt;}
.y37_c01128{bottom:804.355933pt;}
.y36_c01128{bottom:805.689859pt;}
.y35_c01128{bottom:806.027555pt;}
.y34_c01128{bottom:806.873349pt;}
.y33_c01128{bottom:829.500328pt;}
.y32_c01128{bottom:831.279392pt;}
.y31_c01128{bottom:832.327611pt;}
.y30_c01128{bottom:833.054941pt;}
.y2f_c01128{bottom:834.531715pt;}
.y2e_c01128{bottom:835.273779pt;}
.y2d_c01128{bottom:836.321685pt;}
.y2c_c01128{bottom:836.898267pt;}
.y2b_c01128{bottom:838.079323pt;}
.y2a_c01128{bottom:850.799544pt;}
.y29_c01128{bottom:854.910192pt;}
.y28_c01128{bottom:855.600000pt;}
.y27_c01128{bottom:867.260000pt;}
.y26_c01128{bottom:889.726144pt;}
.y25_c01128{bottom:891.696832pt;}
.y24_c01128{bottom:892.267288pt;}
.y23_c01128{bottom:893.313496pt;}
.y22_c01128{bottom:894.903856pt;}
.y21_c01128{bottom:896.671072pt;}
.y20_c01128{bottom:898.640992pt;}
.y1f_c01128{bottom:900.244000pt;}
.y1e_c01128{bottom:930.352000pt;}
.y1d_c01128{bottom:953.912536pt;}
.y1c_c01128{bottom:954.807088pt;}
.y1b_c01128{bottom:955.515520pt;}
.y1a_c01128{bottom:957.818320pt;}
.y19_c01128{bottom:959.213776pt;}
.y18_c01128{bottom:960.821176pt;}
.y17_c01128{bottom:961.538344pt;}
.yc_c01128{bottom:962.524000pt;}
.y16_c01128{bottom:963.124000pt;}
.y15_c01128{bottom:986.222741pt;}
.y14_c01128{bottom:987.657621pt;}
.y13_c01128{bottom:989.381995pt;}
.y12_c01128{bottom:991.107413pt;}
.y11_c01128{bottom:991.711104pt;}
.y10_c01128{bottom:993.180139pt;}
.yf_c01128{bottom:994.562667pt;}
.yb_c01128{bottom:997.322667pt;}
.ya_c01128{bottom:1018.940181pt;}
.y9_c01128{bottom:1019.408725pt;}
.y8_c01128{bottom:1021.002496pt;}
.y7_c01128{bottom:1021.628523pt;}
.y6_c01128{bottom:1022.876672pt;}
.y5_c01128{bottom:1023.179200pt;}
.y4_c01128{bottom:1024.762069pt;}
.y3_c01128{bottom:1026.222379pt;}
.y2_c01128{bottom:1027.442667pt;}
.y1_c01128{bottom:1071.852000pt;}
.h4_c01128{height:21.333333pt;}
.h10_c01128{height:32.007743pt;}
.ha_c01128{height:42.666667pt;}
.h2_c01128{height:58.666667pt;}
.h6_c01128{height:58.674176pt;}
.hd_c01128{height:58.677255pt;}
.h19_c01128{height:63.977500pt;}
.h17_c01128{height:64.000000pt;}
.h7_c01128{height:64.010367pt;}
.h13_c01128{height:64.012799pt;}
.hb_c01128{height:64.014110pt;}
.he_c01128{height:64.015486pt;}
.hf_c01128{height:64.018429pt;}
.h11_c01128{height:64.023324pt;}
.h18_c01128{height:69.308958pt;}
.h5_c01128{height:69.333333pt;}
.h9_c01128{height:69.344564pt;}
.h14_c01128{height:69.347199pt;}
.hc_c01128{height:69.348620pt;}
.h15_c01128{height:69.358601pt;}
.h8_c01128{height:74.666667pt;}
.h12_c01128{height:74.693878pt;}
.h16_c01128{height:74.695930pt;}
.h3_c01128{height:80.010239pt;}
.h0_c01128{height:1107.840000pt;}
.h1_c01128{height:1108.000000pt;}
.w0_c01128{width:798.666667pt;}
.x0_c01128{left:0.000000pt;}
.x4_c01128{left:97.504000pt;}
.xf_c01128{left:129.360000pt;}
.xe_c01128{left:131.280000pt;}
.xd_c01128{left:138.960000pt;}
.x92_c01128{left:162.298667pt;}
.x17_c01128{left:165.616000pt;}
.x30_c01128{left:172.568315pt;}
.x5_c01128{left:173.772000pt;}
.x93_c01128{left:174.893333pt;}
.x10_c01128{left:177.164000pt;}
.x70_c01128{left:178.121973pt;}
.x55_c01128{left:180.461333pt;}
.x38_c01128{left:212.930667pt;}
.x31_c01128{left:222.298536pt;}
.x9e_c01128{left:224.092000pt;}
.x7f_c01128{left:226.221493pt;}
.x68_c01128{left:228.614437pt;}
.x52_c01128{left:230.408000pt;}
.x49_c01128{left:231.343093pt;}
.x1d_c01128{left:232.560000pt;}
.x32_c01128{left:242.170896pt;}
.x9a_c01128{left:243.688000pt;}
.x7a_c01128{left:246.014667pt;}
.x28_c01128{left:252.046331pt;}
.x18_c01128{left:253.708000pt;}
.x85_c01128{left:257.070987pt;}
.x1f_c01128{left:262.356000pt;}
.x11_c01128{left:263.572000pt;}
.x6_c01128{left:265.041333pt;}
.x6c_c01128{left:266.065605pt;}
.x69_c01128{left:267.261955pt;}
.x4a_c01128{left:269.274309pt;}
.xa4_c01128{left:272.154667pt;}
.x8d_c01128{left:273.760000pt;}
.x73_c01128{left:276.153333pt;}
.x91_c01128{left:282.746667pt;}
.x53_c01128{left:288.260000pt;}
.x29_c01128{left:290.451061pt;}
.x9f_c01128{left:291.978667pt;}
.x19_c01128{left:293.550667pt;}
.x86_c01128{left:294.459253pt;}
.x6d_c01128{left:296.080259pt;}
.x60_c01128{left:297.238016pt;}
.x4b_c01128{left:299.756332pt;}
.x1e_c01128{left:301.680000pt;}
.x80_c01128{left:304.465200pt;}
.x6a_c01128{left:306.629501pt;}
.x40_c01128{left:308.897895pt;}
.x94_c01128{left:312.160000pt;}
.x74_c01128{left:315.064000pt;}
.x54_c01128{left:317.784000pt;}
.x39_c01128{left:319.692000pt;}
.x33_c01128{left:320.649645pt;}
.xa0_c01128{left:321.541333pt;}
.x7b_c01128{left:324.498667pt;}
.xaa_c01128{left:330.030127pt;}
.x61_c01128{left:336.594795pt;}
.x41_c01128{left:338.422511pt;}
.xa8_c01128{left:340.065307pt;}
.x95_c01128{left:341.681333pt;}
.x81_c01128{left:353.684987pt;}
.x12_c01128{left:355.386667pt;}
.x2a_c01128{left:360.301496pt;}
.x26_c01128{left:362.618667pt;}
.x7_c01128{left:363.970667pt;}
.x56_c01128{left:366.240000pt;}
.x5e_c01128{left:367.422667pt;}
.x34_c01128{left:368.671843pt;}
.xa5_c01128{left:369.637333pt;}
.x20_c01128{left:371.796000pt;}
.x87_c01128{left:373.727333pt;}
.x6b_c01128{left:376.021693pt;}
.x4c_c01128{left:377.277375pt;}
.x42_c01128{left:378.264684pt;}
.xa9_c01128{left:379.190143pt;}
.x8_c01128{left:382.878667pt;}
.x1_c01128{left:385.200000pt;}
.xa1_c01128{left:389.908000pt;}
.x96_c01128{left:390.902667pt;}
.x13_c01128{left:393.117333pt;}
.x82_c01128{left:394.735253pt;}
.x9b_c01128{left:399.928000pt;}
.x27_c01128{left:400.941333pt;}
.x88_c01128{left:402.700427pt;}
.x2_c01128{left:405.600000pt;}
.x3a_c01128{left:408.406667pt;}
.x2b_c01128{left:409.752160pt;}
.x62_c01128{left:415.347019pt;}
.x97_c01128{left:421.590667pt;}
.x4d_c01128{left:425.829700pt;}
.x89_c01128{left:431.026933pt;}
.x7c_c01128{left:434.434667pt;}
.x57_c01128{left:435.374667pt;}
.x3b_c01128{left:438.016000pt;}
.x71_c01128{left:443.693408pt;}
.x3_c01128{left:446.640000pt;}
.x35_c01128{left:448.362616pt;}
.x4e_c01128{left:456.003723pt;}
.x43_c01128{left:457.522336pt;}
.x9c_c01128{left:458.473333pt;}
.x9_c01128{left:460.888000pt;}
.x3c_c01128{left:467.544000pt;}
.x21_c01128{left:469.974667pt;}
.x58_c01128{left:476.180000pt;}
.xab_c01128{left:478.560019pt;}
.xa2_c01128{left:479.916000pt;}
.x8e_c01128{left:481.245333pt;}
.x4f_c01128{left:486.021745pt;}
.xa6_c01128{left:487.266667pt;}
.x36_c01128{left:488.682003pt;}
.x44_c01128{left:496.361815pt;}
.xa_c01128{left:500.014667pt;}
.x14_c01128{left:500.956000pt;}
.x6e_c01128{left:503.733381pt;}
.x2c_c01128{left:508.170797pt;}
.x8a_c01128{left:511.434907pt;}
.xac_c01128{left:516.684379pt;}
.x75_c01128{left:521.485333pt;}
.x59_c01128{left:524.178667pt;}
.x37_c01128{left:528.053389pt;}
.x7d_c01128{left:531.422667pt;}
.x8b_c01128{left:540.719973pt;}
.xa3_c01128{left:546.818667pt;}
.x2d_c01128{left:556.654747pt;}
.x22_c01128{left:558.328000pt;}
.xa7_c01128{left:559.420000pt;}
.x83_c01128{left:561.045307pt;}
.x63_c01128{left:563.494581pt;}
.x45_c01128{left:566.256604pt;}
.x7e_c01128{left:570.808000pt;}
.x1a_c01128{left:588.309333pt;}
.x64_c01128{left:593.174507pt;}
.x3d_c01128{left:595.505333pt;}
.x66_c01128{left:596.957333pt;}
.xb_c01128{left:599.625333pt;}
.x5a_c01128{left:603.161333pt;}
.x15_c01128{left:608.729333pt;}
.x23_c01128{left:616.450667pt;}
.x8c_c01128{left:618.746853pt;}
.x76_c01128{left:622.372000pt;}
.x3e_c01128{left:624.304000pt;}
.x2e_c01128{left:626.522515pt;}
.x1b_c01128{left:627.666667pt;}
.xc_c01128{left:628.909333pt;}
.x65_c01128{left:631.603317pt;}
.x84_c01128{left:640.838133pt;}
.x9d_c01128{left:646.184000pt;}
.x24_c01128{left:648.142667pt;}
.x5b_c01128{left:652.934667pt;}
.x46_c01128{left:653.850452pt;}
.x8f_c01128{left:658.456000pt;}
.x50_c01128{left:664.393993pt;}
.x72_c01128{left:670.353891pt;}
.x5c_c01128{left:672.546667pt;}
.x1c_c01128{left:677.364000pt;}
.x47_c01128{left:684.104429pt;}
.x98_c01128{left:686.961333pt;}
.x77_c01128{left:692.180000pt;}
.x67_c01128{left:694.613333pt;}
.x16_c01128{left:698.409333pt;}
.x6f_c01128{left:701.112731pt;}
.x5d_c01128{left:702.341333pt;}
.x78_c01128{left:705.220000pt;}
.x90_c01128{left:718.440000pt;}
.x5f_c01128{left:721.228000pt;}
.x51_c01128{left:722.495428pt;}
.xad_c01128{left:724.022995pt;}
.x48_c01128{left:725.199964pt;}
.x99_c01128{left:727.545333pt;}
.x2f_c01128{left:745.143589pt;}
.x3f_c01128{left:754.216000pt;}
.x25_c01128{left:757.625333pt;}
.x79_c01128{left:778.131217pt;}
}





/* 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_c01129 {
    display:none;
  }
  .loading-indicator_c01129.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01129 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_c01129 { 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_c01129" -> "#page-container .classname_c01129")
 */
.pf_c01129 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01129 { /* 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_c01129.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01129 { /* 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_c01129 { /* 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_c01129 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01129 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01129 {overflow:visible;}
  }
}
.c_c01129 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01129 { /* 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_c01129:after { /* webkit #35443 */
  content: '';
}
.t_c01129:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01129 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 */
}
.__c01129 { /* 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_c01129 { /* info for Javascript */
  display:none;
}
.l_c01129 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01129 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01129 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01129: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_c01129 {
    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_c01129.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01129.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_c01129 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01129{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01129;src:url('chunks/assets/font_6bbd15de30fdc229d5d5ff82.woff2')format("woff");}.ff1_c01129{font-family:ff1_c01129;line-height:1.000000;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;}
.m4_c01129{transform:matrix(0.172540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172540,0.000000,0.000000,0.250000,0,0);}
.ma_c01129{transform:matrix(0.175570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175570,0.000000,0.000000,0.250000,0,0);}
.m3_c01129{transform:matrix(0.203660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203660,0.000000,0.000000,0.250000,0,0);}
.m5_c01129{transform:matrix(0.205125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205125,0.000000,0.000000,0.250000,0,0);}
.m6_c01129{transform:matrix(0.208360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208360,0.000000,0.000000,0.250000,0,0);}
.m2_c01129{transform:matrix(0.223510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223510,0.000000,0.000000,0.250000,0,0);}
.m9_c01129{transform:matrix(0.334485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334485,0.000000,0.000000,0.250000,0,0);}
.m7_c01129{transform:matrix(0.362490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362490,0.000000,0.000000,0.250000,0,0);}
.m1_c01129{transform:matrix(0.423485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423485,0.000000,0.000000,0.250000,0,0);}
.mb_c01129{transform:matrix(0.458910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458910,0.000000,0.000000,0.250000,0,0);}
.m0_c01129{transform:matrix(0.592095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592095,0.000000,0.000000,0.250000,0,0);}
.m8_c01129{transform:matrix(1.357900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.357900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.357900,0.000000,0.000000,0.250000,0,0);}
.v0_c01129{vertical-align:0.000000px;}
.ls0_c01129{letter-spacing:0.000000px;}
.sc__c01129{text-shadow:none;}
.sc0_c01129{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__c01129{-webkit-text-stroke:0px transparent;}
.sc0_c01129{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01129{word-spacing:0.000000px;}
.fc0_c01129{color:transparent;}
.fs0_c01129{font-size:24.000000px;}
.fs1_c01129{font-size:96.000000px;}
.y0_c01129{bottom:0.000000px;}
.y4_c01129{bottom:435.643500px;}
.y3_c01129{bottom:439.423500px;}
.y1_c01129{bottom:540.654000px;}
.y2_c01129{bottom:545.130000px;}
.h2_c01129{height:24.000000px;}
.h3_c01129{height:96.000000px;}
.h0_c01129{height:1246.320000px;}
.h1_c01129{height:1246.500000px;}
.w0_c01129{width:898.500000px;}
.x0_c01129{left:0.000000px;}
.x3_c01129{left:82.080000px;}
.x4_c01129{left:109.620000px;}
.x1_c01129{left:152.550000px;}
.x9_c01129{left:174.960000px;}
.x8_c01129{left:179.820000px;}
.x2_c01129{left:181.980000px;}
.x5_c01129{left:189.270000px;}
.xa_c01129{left:199.530000px;}
.xb_c01129{left:209.520000px;}
.xc_c01129{left:217.350000px;}
.x6_c01129{left:221.130000px;}
.x7_c01129{left:295.110000px;}
@media print{
.v0_c01129{vertical-align:0.000000pt;}
.ls0_c01129{letter-spacing:0.000000pt;}
.ws0_c01129{word-spacing:0.000000pt;}
.fs0_c01129{font-size:21.333333pt;}
.fs1_c01129{font-size:85.333333pt;}
.y0_c01129{bottom:0.000000pt;}
.y4_c01129{bottom:387.238667pt;}
.y3_c01129{bottom:390.598667pt;}
.y1_c01129{bottom:480.581333pt;}
.y2_c01129{bottom:484.560000pt;}
.h2_c01129{height:21.333333pt;}
.h3_c01129{height:85.333333pt;}
.h0_c01129{height:1107.840000pt;}
.h1_c01129{height:1108.000000pt;}
.w0_c01129{width:798.666667pt;}
.x0_c01129{left:0.000000pt;}
.x3_c01129{left:72.960000pt;}
.x4_c01129{left:97.440000pt;}
.x1_c01129{left:135.600000pt;}
.x9_c01129{left:155.520000pt;}
.x8_c01129{left:159.840000pt;}
.x2_c01129{left:161.760000pt;}
.x5_c01129{left:168.240000pt;}
.xa_c01129{left:177.360000pt;}
.xb_c01129{left:186.240000pt;}
.xc_c01129{left:193.200000pt;}
.x6_c01129{left:196.560000pt;}
.x7_c01129{left:262.320000pt;}
}





/* 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_c01130 {
    display:none;
  }
  .loading-indicator_c01130.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01130 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_c01130 { 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_c01130" -> "#page-container .classname_c01130")
 */
.pf_c01130 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01130 { /* 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_c01130.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01130 { /* 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_c01130 { /* 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_c01130 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01130 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01130 {overflow:visible;}
  }
}
.c_c01130 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01130 { /* 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_c01130:after { /* webkit #35443 */
  content: '';
}
.t_c01130:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01130 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 */
}
.__c01130 { /* 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_c01130 { /* info for Javascript */
  display:none;
}
.l_c01130 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01130 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01130 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01130: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_c01130 {
    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_c01130.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01130.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_c01130 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01130{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01130;src:url('chunks/assets/font_7c6b9abe6ee2a268480c528b.woff2')format("woff");}.ff1_c01130{font-family:ff1_c01130;line-height:1.000000;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;}
.m2c_c01130{transform:matrix(0.013520,0.000068,-0.001250,0.249997,0,0);-ms-transform:matrix(0.013520,0.000068,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.013520,0.000068,-0.001250,0.249997,0,0);}
.ma7_c01130{transform:matrix(0.042751,0.000599,-0.003500,0.249976,0,0);-ms-transform:matrix(0.042751,0.000599,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.042751,0.000599,-0.003500,0.249976,0,0);}
.mba_c01130{transform:matrix(0.051003,0.000408,-0.002000,0.249992,0,0);-ms-transform:matrix(0.051003,0.000408,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.051003,0.000408,-0.002000,0.249992,0,0);}
.md2_c01130{transform:matrix(0.104653,0.001884,-0.004499,0.249960,0,0);-ms-transform:matrix(0.104653,0.001884,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.104653,0.001884,-0.004499,0.249960,0,0);}
.ma8_c01130{transform:matrix(0.105055,0.001471,-0.003500,0.249976,0,0);-ms-transform:matrix(0.105055,0.001471,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.105055,0.001471,-0.003500,0.249976,0,0);}
.m18_c01130{transform:matrix(0.110981,0.000888,-0.002000,0.249992,0,0);-ms-transform:matrix(0.110981,0.000888,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.110981,0.000888,-0.002000,0.249992,0,0);}
.m17_c01130{transform:matrix(0.111436,0.000891,-0.002000,0.249992,0,0);-ms-transform:matrix(0.111436,0.000891,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.111436,0.000891,-0.002000,0.249992,0,0);}
.mc7_c01130{transform:matrix(0.127259,0.002291,-0.004499,0.249960,0,0);-ms-transform:matrix(0.127259,0.002291,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.127259,0.002291,-0.004499,0.249960,0,0);}
.mac_c01130{transform:matrix(0.127349,0.001656,-0.003250,0.249979,0,0);-ms-transform:matrix(0.127349,0.001656,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.127349,0.001656,-0.003250,0.249979,0,0);}
.m60_c01130{transform:matrix(0.137145,0.001646,-0.003000,0.249982,0,0);-ms-transform:matrix(0.137145,0.001646,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.137145,0.001646,-0.003000,0.249982,0,0);}
.m55_c01130{transform:matrix(0.137149,0.001234,-0.002250,0.249990,0,0);-ms-transform:matrix(0.137149,0.001234,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.137149,0.001234,-0.002250,0.249990,0,0);}
.m67_c01130{transform:matrix(0.137152,0.000960,-0.001750,0.249994,0,0);-ms-transform:matrix(0.137152,0.000960,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.137152,0.000960,-0.001750,0.249994,0,0);}
.m35_c01130{transform:matrix(0.145861,0.001021,-0.001750,0.249994,0,0);-ms-transform:matrix(0.145861,0.001021,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.145861,0.001021,-0.001750,0.249994,0,0);}
.m21_c01130{transform:matrix(0.145863,0.000729,-0.001250,0.249997,0,0);-ms-transform:matrix(0.145863,0.000729,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.145863,0.000729,-0.001250,0.249997,0,0);}
.me9_c01130{transform:matrix(0.146060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146060,0.000000,0.000000,0.250000,0,0);}
.m72_c01130{transform:matrix(0.148481,0.001633,-0.002750,0.249985,0,0);-ms-transform:matrix(0.148481,0.001633,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.148481,0.001633,-0.002750,0.249985,0,0);}
.m9c_c01130{transform:matrix(0.148570,0.002080,-0.003500,0.249976,0,0);-ms-transform:matrix(0.148570,0.002080,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.148570,0.002080,-0.003500,0.249976,0,0);}
.m3e_c01130{transform:matrix(0.148581,0.001040,-0.001750,0.249994,0,0);-ms-transform:matrix(0.148581,0.001040,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.148581,0.001040,-0.001750,0.249994,0,0);}
.m2d_c01130{transform:matrix(0.148585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148585,0.000000,0.000000,0.250000,0,0);}
.mdc_c01130{transform:matrix(0.153770,0.002768,-0.004499,0.249960,0,0);-ms-transform:matrix(0.153770,0.002768,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.153770,0.002768,-0.004499,0.249960,0,0);}
.m0_c01130{transform:matrix(0.158815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158815,0.000000,0.000000,0.250000,0,0);}
.m45_c01130{transform:matrix(0.161291,0.001129,-0.001750,0.249994,0,0);-ms-transform:matrix(0.161291,0.001129,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.161291,0.001129,-0.001750,0.249994,0,0);}
.m7f_c01130{transform:matrix(0.162077,0.002431,-0.003750,0.249972,0,0);-ms-transform:matrix(0.162077,0.002431,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.162077,0.002431,-0.003750,0.249972,0,0);}
.mad_c01130{transform:matrix(0.165526,0.002152,-0.003250,0.249979,0,0);-ms-transform:matrix(0.165526,0.002152,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.165526,0.002152,-0.003250,0.249979,0,0);}
.mc8_c01130{transform:matrix(0.169098,0.003044,-0.004499,0.249960,0,0);-ms-transform:matrix(0.169098,0.003044,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.169098,0.003044,-0.004499,0.249960,0,0);}
.me7_c01130{transform:matrix(0.172437,0.003104,-0.004499,0.249960,0,0);-ms-transform:matrix(0.172437,0.003104,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.172437,0.003104,-0.004499,0.249960,0,0);}
.m56_c01130{transform:matrix(0.179118,0.001612,-0.002250,0.249990,0,0);-ms-transform:matrix(0.179118,0.001612,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.179118,0.001612,-0.002250,0.249990,0,0);}
.m68_c01130{transform:matrix(0.179121,0.001254,-0.001750,0.249994,0,0);-ms-transform:matrix(0.179121,0.001254,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.179121,0.001254,-0.001750,0.249994,0,0);}
.m7d_c01130{transform:matrix(0.179789,0.001978,-0.002750,0.249985,0,0);-ms-transform:matrix(0.179789,0.001978,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.179789,0.001978,-0.002750,0.249985,0,0);}
.m61_c01130{transform:matrix(0.181257,0.002175,-0.003000,0.249982,0,0);-ms-transform:matrix(0.181257,0.002175,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.181257,0.002175,-0.003000,0.249982,0,0);}
.m1f_c01130{transform:matrix(0.182099,0.001457,-0.002000,0.249992,0,0);-ms-transform:matrix(0.182099,0.001457,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.182099,0.001457,-0.002000,0.249992,0,0);}
.m1e_c01130{transform:matrix(0.186569,0.001493,-0.002000,0.249992,0,0);-ms-transform:matrix(0.186569,0.001493,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.186569,0.001493,-0.002000,0.249992,0,0);}
.m73_c01130{transform:matrix(0.191723,0.002109,-0.002750,0.249985,0,0);-ms-transform:matrix(0.191723,0.002109,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.191723,0.002109,-0.002750,0.249985,0,0);}
.m3f_c01130{transform:matrix(0.192235,0.001346,-0.001750,0.249994,0,0);-ms-transform:matrix(0.192235,0.001346,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.192235,0.001346,-0.001750,0.249994,0,0);}
.m91_c01130{transform:matrix(0.193122,0.001738,-0.002250,0.249990,0,0);-ms-transform:matrix(0.193122,0.001738,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.193122,0.001738,-0.002250,0.249990,0,0);}
.m36_c01130{transform:matrix(0.193125,0.001352,-0.001750,0.249994,0,0);-ms-transform:matrix(0.193125,0.001352,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.193125,0.001352,-0.001750,0.249994,0,0);}
.m2e_c01130{transform:matrix(0.193130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193130,0.000000,0.000000,0.250000,0,0);}
.mdd_c01130{transform:matrix(0.194019,0.003492,-0.004499,0.249960,0,0);-ms-transform:matrix(0.194019,0.003492,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.194019,0.003492,-0.004499,0.249960,0,0);}
.mcd_c01130{transform:matrix(0.194404,0.003499,-0.004499,0.249960,0,0);-ms-transform:matrix(0.194404,0.003499,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.194404,0.003499,-0.004499,0.249960,0,0);}
.m2b_c01130{transform:matrix(0.194583,0.000973,-0.001250,0.249997,0,0);-ms-transform:matrix(0.194583,0.000973,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.194583,0.000973,-0.001250,0.249997,0,0);}
.m5e_c01130{transform:matrix(0.195287,0.001758,-0.002250,0.249990,0,0);-ms-transform:matrix(0.195287,0.001758,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.195287,0.001758,-0.002250,0.249990,0,0);}
.mca_c01130{transform:matrix(0.195543,0.003520,-0.004499,0.249960,0,0);-ms-transform:matrix(0.195543,0.003520,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.195543,0.003520,-0.004499,0.249960,0,0);}
.m1d_c01130{transform:matrix(0.196019,0.001568,-0.002000,0.249992,0,0);-ms-transform:matrix(0.196019,0.001568,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.196019,0.001568,-0.002000,0.249992,0,0);}
.m9d_c01130{transform:matrix(0.196356,0.002749,-0.003500,0.249976,0,0);-ms-transform:matrix(0.196356,0.002749,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.196356,0.002749,-0.003500,0.249976,0,0);}
.mea_c01130{transform:matrix(0.196375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196375,0.000000,0.000000,0.250000,0,0);}
.m19_c01130{transform:matrix(0.197814,0.001583,-0.002000,0.249992,0,0);-ms-transform:matrix(0.197814,0.001583,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.197814,0.001583,-0.002000,0.249992,0,0);}
.m22_c01130{transform:matrix(0.198273,0.000991,-0.001250,0.249997,0,0);-ms-transform:matrix(0.198273,0.000991,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.198273,0.000991,-0.001250,0.249997,0,0);}
.md3_c01130{transform:matrix(0.199233,0.003586,-0.004499,0.249960,0,0);-ms-transform:matrix(0.199233,0.003586,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.199233,0.003586,-0.004499,0.249960,0,0);}
.mb4_c01130{transform:matrix(0.201013,0.002613,-0.003250,0.249979,0,0);-ms-transform:matrix(0.201013,0.002613,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.201013,0.002613,-0.003250,0.249979,0,0);}
.m1c_c01130{transform:matrix(0.202894,0.001623,-0.002000,0.249992,0,0);-ms-transform:matrix(0.202894,0.001623,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.202894,0.001623,-0.002000,0.249992,0,0);}
.m1a_c01130{transform:matrix(0.202979,0.001624,-0.002000,0.249992,0,0);-ms-transform:matrix(0.202979,0.001624,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.202979,0.001624,-0.002000,0.249992,0,0);}
.mcb_c01130{transform:matrix(0.204282,0.003677,-0.004499,0.249960,0,0);-ms-transform:matrix(0.204282,0.003677,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.204282,0.003677,-0.004499,0.249960,0,0);}
.m1b_c01130{transform:matrix(0.206193,0.001650,-0.002000,0.249992,0,0);-ms-transform:matrix(0.206193,0.001650,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.206193,0.001650,-0.002000,0.249992,0,0);}
.m4b_c01130{transform:matrix(0.206830,0.002068,-0.002500,0.249988,0,0);-ms-transform:matrix(0.206830,0.002068,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.206830,0.002068,-0.002500,0.249988,0,0);}
.m5_c01130{transform:matrix(0.207460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207460,0.000000,0.000000,0.250000,0,0);}
.m49_c01130{transform:matrix(0.208005,0.002080,-0.002500,0.249988,0,0);-ms-transform:matrix(0.208005,0.002080,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.208005,0.002080,-0.002500,0.249988,0,0);}
.m58_c01130{transform:matrix(0.208707,0.001878,-0.002250,0.249990,0,0);-ms-transform:matrix(0.208707,0.001878,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.208707,0.001878,-0.002250,0.249990,0,0);}
.m4d_c01130{transform:matrix(0.210609,0.002106,-0.002500,0.249988,0,0);-ms-transform:matrix(0.210609,0.002106,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.210609,0.002106,-0.002500,0.249988,0,0);}
.m2_c01130{transform:matrix(0.212570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212570,0.000000,0.000000,0.250000,0,0);}
.m80_c01130{transform:matrix(0.213211,0.003198,-0.003750,0.249972,0,0);-ms-transform:matrix(0.213211,0.003198,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.213211,0.003198,-0.003750,0.249972,0,0);}
.m6_c01130{transform:matrix(0.216995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216995,0.000000,0.000000,0.250000,0,0);}
.m87_c01130{transform:matrix(0.217266,0.003259,-0.003750,0.249972,0,0);-ms-transform:matrix(0.217266,0.003259,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.217266,0.003259,-0.003750,0.249972,0,0);}
.mcc_c01130{transform:matrix(0.218765,0.003938,-0.004499,0.249960,0,0);-ms-transform:matrix(0.218765,0.003938,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.218765,0.003938,-0.004499,0.249960,0,0);}
.maa_c01130{transform:matrix(0.219790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219790,0.000000,0.000000,0.250000,0,0);}
.m93_c01130{transform:matrix(0.219946,0.001980,-0.002250,0.249990,0,0);-ms-transform:matrix(0.219946,0.001980,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.219946,0.001980,-0.002250,0.249990,0,0);}
.m52_c01130{transform:matrix(0.221600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221600,0.000000,0.000000,0.250000,0,0);}
.mae_c01130{transform:matrix(0.221726,0.002882,-0.003250,0.249979,0,0);-ms-transform:matrix(0.221726,0.002882,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.221726,0.002882,-0.003250,0.249979,0,0);}
.m5b_c01130{transform:matrix(0.222116,0.001999,-0.002250,0.249990,0,0);-ms-transform:matrix(0.222116,0.001999,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.222116,0.001999,-0.002250,0.249990,0,0);}
.mb8_c01130{transform:matrix(0.222763,0.001782,-0.002000,0.249992,0,0);-ms-transform:matrix(0.222763,0.001782,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.222763,0.001782,-0.002000,0.249992,0,0);}
.ma6_c01130{transform:matrix(0.222983,0.003122,-0.003500,0.249976,0,0);-ms-transform:matrix(0.222983,0.003122,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.222983,0.003122,-0.003500,0.249976,0,0);}
.m30_c01130{transform:matrix(0.223270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223270,0.000000,0.000000,0.250000,0,0);}
.m7e_c01130{transform:matrix(0.223486,0.002458,-0.002750,0.249985,0,0);-ms-transform:matrix(0.223486,0.002458,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.223486,0.002458,-0.002750,0.249985,0,0);}
.mb6_c01130{transform:matrix(0.224063,0.001793,-0.002000,0.249992,0,0);-ms-transform:matrix(0.224063,0.001793,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.224063,0.001793,-0.002000,0.249992,0,0);}
.m53_c01130{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m9f_c01130{transform:matrix(0.225323,0.003155,-0.003500,0.249976,0,0);-ms-transform:matrix(0.225323,0.003155,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.225323,0.003155,-0.003500,0.249976,0,0);}
.mb2_c01130{transform:matrix(0.226596,0.002946,-0.003250,0.249979,0,0);-ms-transform:matrix(0.226596,0.002946,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.226596,0.002946,-0.003250,0.249979,0,0);}
.mda_c01130{transform:matrix(0.226968,0.004085,-0.004499,0.249960,0,0);-ms-transform:matrix(0.226968,0.004085,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.226968,0.004085,-0.004499,0.249960,0,0);}
.m26_c01130{transform:matrix(0.227497,0.001137,-0.001250,0.249997,0,0);-ms-transform:matrix(0.227497,0.001137,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.227497,0.001137,-0.001250,0.249997,0,0);}
.mdf_c01130{transform:matrix(0.228053,0.004105,-0.004499,0.249960,0,0);-ms-transform:matrix(0.228053,0.004105,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.228053,0.004105,-0.004499,0.249960,0,0);}
.ma3_c01130{transform:matrix(0.228068,0.003193,-0.003500,0.249976,0,0);-ms-transform:matrix(0.228068,0.003193,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.228068,0.003193,-0.003500,0.249976,0,0);}
.me_c01130{transform:matrix(0.228170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228170,0.000000,0.000000,0.250000,0,0);}
.m4e_c01130{transform:matrix(0.228849,0.002288,-0.002500,0.249988,0,0);-ms-transform:matrix(0.228849,0.002288,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.228849,0.002288,-0.002500,0.249988,0,0);}
.mcf_c01130{transform:matrix(0.228888,0.004120,-0.004499,0.249960,0,0);-ms-transform:matrix(0.228888,0.004120,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.228888,0.004120,-0.004499,0.249960,0,0);}
.mc9_c01130{transform:matrix(0.229343,0.004128,-0.004499,0.249960,0,0);-ms-transform:matrix(0.229343,0.004128,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.229343,0.004128,-0.004499,0.249960,0,0);}
.m41_c01130{transform:matrix(0.229429,0.001606,-0.001750,0.249994,0,0);-ms-transform:matrix(0.229429,0.001606,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.229429,0.001606,-0.001750,0.249994,0,0);}
.m4_c01130{transform:matrix(0.229435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229435,0.000000,0.000000,0.250000,0,0);}
.mb5_c01130{transform:matrix(0.229571,0.002984,-0.003250,0.249979,0,0);-ms-transform:matrix(0.229571,0.002984,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.229571,0.002984,-0.003250,0.249979,0,0);}
.m32_c01130{transform:matrix(0.229975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229975,0.000000,0.000000,0.250000,0,0);}
.m50_c01130{transform:matrix(0.230448,0.002304,-0.002500,0.249988,0,0);-ms-transform:matrix(0.230448,0.002304,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.230448,0.002304,-0.002500,0.249988,0,0);}
.md5_c01130{transform:matrix(0.230858,0.004155,-0.004499,0.249960,0,0);-ms-transform:matrix(0.230858,0.004155,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.230858,0.004155,-0.004499,0.249960,0,0);}
.m98_c01130{transform:matrix(0.230886,0.002078,-0.002250,0.249990,0,0);-ms-transform:matrix(0.230886,0.002078,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.230886,0.002078,-0.002250,0.249990,0,0);}
.mb0_c01130{transform:matrix(0.231080,0.003004,-0.003250,0.249979,0,0);-ms-transform:matrix(0.231080,0.003004,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.231080,0.003004,-0.003250,0.249979,0,0);}
.m6c_c01130{transform:matrix(0.231379,0.001620,-0.001750,0.249994,0,0);-ms-transform:matrix(0.231379,0.001620,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.231379,0.001620,-0.001750,0.249994,0,0);}
.m1_c01130{transform:matrix(0.231495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231495,0.000000,0.000000,0.250000,0,0);}
.md8_c01130{transform:matrix(0.231587,0.004169,-0.004499,0.249960,0,0);-ms-transform:matrix(0.231587,0.004169,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.231587,0.004169,-0.004499,0.249960,0,0);}
.m6e_c01130{transform:matrix(0.232534,0.001628,-0.001750,0.249994,0,0);-ms-transform:matrix(0.232534,0.001628,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.232534,0.001628,-0.001750,0.249994,0,0);}
.maf_c01130{transform:matrix(0.232690,0.003025,-0.003250,0.249979,0,0);-ms-transform:matrix(0.232690,0.003025,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.232690,0.003025,-0.003250,0.249979,0,0);}
.mc2_c01130{transform:matrix(0.232965,0.003029,-0.003250,0.249979,0,0);-ms-transform:matrix(0.232965,0.003029,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.232965,0.003029,-0.003250,0.249979,0,0);}
.m75_c01130{transform:matrix(0.232971,0.002563,-0.002750,0.249985,0,0);-ms-transform:matrix(0.232971,0.002563,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.232971,0.002563,-0.002750,0.249985,0,0);}
.md0_c01130{transform:matrix(0.233642,0.004206,-0.004499,0.249960,0,0);-ms-transform:matrix(0.233642,0.004206,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.233642,0.004206,-0.004499,0.249960,0,0);}
.m8f_c01130{transform:matrix(0.234334,0.003515,-0.003750,0.249972,0,0);-ms-transform:matrix(0.234334,0.003515,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.234334,0.003515,-0.003750,0.249972,0,0);}
.md1_c01130{transform:matrix(0.234852,0.004227,-0.004499,0.249960,0,0);-ms-transform:matrix(0.234852,0.004227,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.234852,0.004227,-0.004499,0.249960,0,0);}
.me4_c01130{transform:matrix(0.235042,0.004231,-0.004499,0.249960,0,0);-ms-transform:matrix(0.235042,0.004231,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.235042,0.004231,-0.004499,0.249960,0,0);}
.mf_c01130{transform:matrix(0.235080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235080,0.000000,0.000000,0.250000,0,0);}
.m8e_c01130{transform:matrix(0.235359,0.003530,-0.003750,0.249972,0,0);-ms-transform:matrix(0.235359,0.003530,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.235359,0.003530,-0.003750,0.249972,0,0);}
.mb9_c01130{transform:matrix(0.236222,0.001890,-0.002000,0.249992,0,0);-ms-transform:matrix(0.236222,0.001890,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.236222,0.001890,-0.002000,0.249992,0,0);}
.mbe_c01130{transform:matrix(0.236625,0.003076,-0.003250,0.249979,0,0);-ms-transform:matrix(0.236625,0.003076,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.236625,0.003076,-0.003250,0.249979,0,0);}
.mbc_c01130{transform:matrix(0.236705,0.003077,-0.003250,0.249979,0,0);-ms-transform:matrix(0.236705,0.003077,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.236705,0.003077,-0.003250,0.249979,0,0);}
.me6_c01130{transform:matrix(0.237027,0.004266,-0.004499,0.249960,0,0);-ms-transform:matrix(0.237027,0.004266,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.237027,0.004266,-0.004499,0.249960,0,0);}
.mab_c01130{transform:matrix(0.237275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237275,0.000000,0.000000,0.250000,0,0);}
.m24_c01130{transform:matrix(0.237592,0.001188,-0.001250,0.249997,0,0);-ms-transform:matrix(0.237592,0.001188,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.237592,0.001188,-0.001250,0.249997,0,0);}
.mee_c01130{transform:matrix(0.237830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237830,0.000000,0.000000,0.250000,0,0);}
.mb3_c01130{transform:matrix(0.238835,0.003105,-0.003250,0.249979,0,0);-ms-transform:matrix(0.238835,0.003105,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.238835,0.003105,-0.003250,0.249979,0,0);}
.m20_c01130{transform:matrix(0.240177,0.001921,-0.002000,0.249992,0,0);-ms-transform:matrix(0.240177,0.001921,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.240177,0.001921,-0.002000,0.249992,0,0);}
.m69_c01130{transform:matrix(0.240574,0.001684,-0.001750,0.249994,0,0);-ms-transform:matrix(0.240574,0.001684,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.240574,0.001684,-0.001750,0.249994,0,0);}
.m7c_c01130{transform:matrix(0.240635,0.002647,-0.002750,0.249985,0,0);-ms-transform:matrix(0.240635,0.002647,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.240635,0.002647,-0.002750,0.249985,0,0);}
.m59_c01130{transform:matrix(0.242275,0.002180,-0.002250,0.249990,0,0);-ms-transform:matrix(0.242275,0.002180,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.242275,0.002180,-0.002250,0.249990,0,0);}
.m6a_c01130{transform:matrix(0.243014,0.001701,-0.001750,0.249994,0,0);-ms-transform:matrix(0.243014,0.001701,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.243014,0.001701,-0.001750,0.249994,0,0);}
.mb1_c01130{transform:matrix(0.243439,0.003165,-0.003250,0.249979,0,0);-ms-transform:matrix(0.243439,0.003165,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.243439,0.003165,-0.003250,0.249979,0,0);}
.m57_c01130{transform:matrix(0.244185,0.002198,-0.002250,0.249990,0,0);-ms-transform:matrix(0.244185,0.002198,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.244185,0.002198,-0.002250,0.249990,0,0);}
.m15_c01130{transform:matrix(0.244330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244330,0.000000,0.000000,0.250000,0,0);}
.mef_c01130{transform:matrix(0.244650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244650,0.000000,0.000000,0.250000,0,0);}
.m3_c01130{transform:matrix(0.244805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244805,0.000000,0.000000,0.250000,0,0);}
.m84_c01130{transform:matrix(0.245122,0.003677,-0.003750,0.249972,0,0);-ms-transform:matrix(0.245122,0.003677,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.245122,0.003677,-0.003750,0.249972,0,0);}
.m12_c01130{transform:matrix(0.245150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245150,0.000000,0.000000,0.250000,0,0);}
.ma4_c01130{transform:matrix(0.245651,0.003439,-0.003500,0.249976,0,0);-ms-transform:matrix(0.245651,0.003439,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.245651,0.003439,-0.003500,0.249976,0,0);}
.m40_c01130{transform:matrix(0.245899,0.001721,-0.001750,0.249994,0,0);-ms-transform:matrix(0.245899,0.001721,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.245899,0.001721,-0.001750,0.249994,0,0);}
.mec_c01130{transform:matrix(0.246205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246205,0.000000,0.000000,0.250000,0,0);}
.m63_c01130{transform:matrix(0.246207,0.002954,-0.003000,0.249982,0,0);-ms-transform:matrix(0.246207,0.002954,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.246207,0.002954,-0.003000,0.249982,0,0);}
.m10_c01130{transform:matrix(0.247310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247310,0.000000,0.000000,0.250000,0,0);}
.m5c_c01130{transform:matrix(0.247490,0.002227,-0.002250,0.249990,0,0);-ms-transform:matrix(0.247490,0.002227,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.247490,0.002227,-0.002250,0.249990,0,0);}
.mb_c01130{transform:matrix(0.248925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248925,0.000000,0.000000,0.250000,0,0);}
.m6b_c01130{transform:matrix(0.249694,0.001748,-0.001750,0.249994,0,0);-ms-transform:matrix(0.249694,0.001748,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.249694,0.001748,-0.001750,0.249994,0,0);}
.mc0_c01130{transform:matrix(0.250029,0.003250,-0.003250,0.249979,0,0);-ms-transform:matrix(0.250029,0.003250,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.250029,0.003250,-0.003250,0.249979,0,0);}
.ma2_c01130{transform:matrix(0.250115,0.003502,-0.003500,0.249976,0,0);-ms-transform:matrix(0.250115,0.003502,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.250115,0.003502,-0.003500,0.249976,0,0);}
.m82_c01130{transform:matrix(0.250697,0.003760,-0.003750,0.249972,0,0);-ms-transform:matrix(0.250697,0.003760,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.250697,0.003760,-0.003750,0.249972,0,0);}
.m6f_c01130{transform:matrix(0.250854,0.001756,-0.001750,0.249994,0,0);-ms-transform:matrix(0.250854,0.001756,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.250854,0.001756,-0.001750,0.249994,0,0);}
.m7a_c01130{transform:matrix(0.250915,0.002760,-0.002750,0.249985,0,0);-ms-transform:matrix(0.250915,0.002760,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.250915,0.002760,-0.002750,0.249985,0,0);}
.m6d_c01130{transform:matrix(0.251054,0.001757,-0.001750,0.249994,0,0);-ms-transform:matrix(0.251054,0.001757,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.251054,0.001757,-0.001750,0.249994,0,0);}
.m48_c01130{transform:matrix(0.251522,0.002515,-0.002500,0.249988,0,0);-ms-transform:matrix(0.251522,0.002515,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.251522,0.002515,-0.002500,0.249988,0,0);}
.m5f_c01130{transform:matrix(0.251550,0.002264,-0.002250,0.249990,0,0);-ms-transform:matrix(0.251550,0.002264,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.251550,0.002264,-0.002250,0.249990,0,0);}
.m47_c01130{transform:matrix(0.251612,0.002516,-0.002500,0.249988,0,0);-ms-transform:matrix(0.251612,0.002516,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.251612,0.002516,-0.002500,0.249988,0,0);}
.m4c_c01130{transform:matrix(0.251802,0.002518,-0.002500,0.249988,0,0);-ms-transform:matrix(0.251802,0.002518,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.251802,0.002518,-0.002500,0.249988,0,0);}
.me1_c01130{transform:matrix(0.252074,0.004537,-0.004499,0.249960,0,0);-ms-transform:matrix(0.252074,0.004537,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.252074,0.004537,-0.004499,0.249960,0,0);}
.m89_c01130{transform:matrix(0.252667,0.003790,-0.003750,0.249972,0,0);-ms-transform:matrix(0.252667,0.003790,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.252667,0.003790,-0.003750,0.249972,0,0);}
.m3b_c01130{transform:matrix(0.252874,0.001770,-0.001750,0.249994,0,0);-ms-transform:matrix(0.252874,0.001770,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.252874,0.001770,-0.001750,0.249994,0,0);}
.m64_c01130{transform:matrix(0.253307,0.003040,-0.003000,0.249982,0,0);-ms-transform:matrix(0.253307,0.003040,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.253307,0.003040,-0.003000,0.249982,0,0);}
.mb7_c01130{transform:matrix(0.253492,0.002028,-0.002000,0.249992,0,0);-ms-transform:matrix(0.253492,0.002028,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.253492,0.002028,-0.002000,0.249992,0,0);}
.m7_c01130{transform:matrix(0.253705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253705,0.000000,0.000000,0.250000,0,0);}
.m94_c01130{transform:matrix(0.253875,0.002285,-0.002250,0.249990,0,0);-ms-transform:matrix(0.253875,0.002285,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.253875,0.002285,-0.002250,0.249990,0,0);}
.m4f_c01130{transform:matrix(0.253892,0.002539,-0.002500,0.249988,0,0);-ms-transform:matrix(0.253892,0.002539,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.253892,0.002539,-0.002500,0.249988,0,0);}
.m4a_c01130{transform:matrix(0.253962,0.002540,-0.002500,0.249988,0,0);-ms-transform:matrix(0.253962,0.002540,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.253962,0.002540,-0.002500,0.249988,0,0);}
.md9_c01130{transform:matrix(0.254874,0.004588,-0.004499,0.249960,0,0);-ms-transform:matrix(0.254874,0.004588,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.254874,0.004588,-0.004499,0.249960,0,0);}
.m51_c01130{transform:matrix(0.258142,0.002581,-0.002500,0.249988,0,0);-ms-transform:matrix(0.258142,0.002581,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.258142,0.002581,-0.002500,0.249988,0,0);}
.m66_c01130{transform:matrix(0.258666,0.003104,-0.003000,0.249982,0,0);-ms-transform:matrix(0.258666,0.003104,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.258666,0.003104,-0.003000,0.249982,0,0);}
.m8a_c01130{transform:matrix(0.258716,0.003881,-0.003750,0.249972,0,0);-ms-transform:matrix(0.258716,0.003881,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.258716,0.003881,-0.003750,0.249972,0,0);}
.m79_c01130{transform:matrix(0.258809,0.002847,-0.002750,0.249985,0,0);-ms-transform:matrix(0.258809,0.002847,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.258809,0.002847,-0.002750,0.249985,0,0);}
.m62_c01130{transform:matrix(0.259081,0.003109,-0.003000,0.249982,0,0);-ms-transform:matrix(0.259081,0.003109,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.259081,0.003109,-0.003000,0.249982,0,0);}
.m90_c01130{transform:matrix(0.259311,0.003890,-0.003750,0.249972,0,0);-ms-transform:matrix(0.259311,0.003890,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.259311,0.003890,-0.003750,0.249972,0,0);}
.m85_c01130{transform:matrix(0.259841,0.003898,-0.003750,0.249972,0,0);-ms-transform:matrix(0.259841,0.003898,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.259841,0.003898,-0.003750,0.249972,0,0);}
.m13_c01130{transform:matrix(0.260570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260570,0.000000,0.000000,0.250000,0,0);}
.m5a_c01130{transform:matrix(0.260869,0.002348,-0.002250,0.249990,0,0);-ms-transform:matrix(0.260869,0.002348,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.260869,0.002348,-0.002250,0.249990,0,0);}
.m77_c01130{transform:matrix(0.261419,0.002876,-0.002750,0.249985,0,0);-ms-transform:matrix(0.261419,0.002876,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.261419,0.002876,-0.002750,0.249985,0,0);}
.m37_c01130{transform:matrix(0.261534,0.001831,-0.001750,0.249994,0,0);-ms-transform:matrix(0.261534,0.001831,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.261534,0.001831,-0.001750,0.249994,0,0);}
.md6_c01130{transform:matrix(0.261793,0.004712,-0.004499,0.249960,0,0);-ms-transform:matrix(0.261793,0.004712,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.261793,0.004712,-0.004499,0.249960,0,0);}
.m70_c01130{transform:matrix(0.261814,0.001833,-0.001750,0.249994,0,0);-ms-transform:matrix(0.261814,0.001833,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.261814,0.001833,-0.001750,0.249994,0,0);}
.m54_c01130{transform:matrix(0.262300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262300,0.000000,0.000000,0.250000,0,0);}
.m29_c01130{transform:matrix(0.262307,0.001312,-0.001250,0.249997,0,0);-ms-transform:matrix(0.262307,0.001312,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.262307,0.001312,-0.001250,0.249997,0,0);}
.m96_c01130{transform:matrix(0.263099,0.002368,-0.002250,0.249990,0,0);-ms-transform:matrix(0.263099,0.002368,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.263099,0.002368,-0.002250,0.249990,0,0);}
.m43_c01130{transform:matrix(0.263304,0.001843,-0.001750,0.249994,0,0);-ms-transform:matrix(0.263304,0.001843,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.263304,0.001843,-0.001750,0.249994,0,0);}
.m71_c01130{transform:matrix(0.263579,0.001845,-0.001750,0.249994,0,0);-ms-transform:matrix(0.263579,0.001845,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.263579,0.001845,-0.001750,0.249994,0,0);}
.m7b_c01130{transform:matrix(0.263719,0.002901,-0.002750,0.249985,0,0);-ms-transform:matrix(0.263719,0.002901,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.263719,0.002901,-0.002750,0.249985,0,0);}
.m92_c01130{transform:matrix(0.263934,0.002375,-0.002250,0.249990,0,0);-ms-transform:matrix(0.263934,0.002375,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.263934,0.002375,-0.002250,0.249990,0,0);}
.m5d_c01130{transform:matrix(0.263949,0.002376,-0.002250,0.249990,0,0);-ms-transform:matrix(0.263949,0.002376,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.263949,0.002376,-0.002250,0.249990,0,0);}
.m65_c01130{transform:matrix(0.264861,0.003178,-0.003000,0.249982,0,0);-ms-transform:matrix(0.264861,0.003178,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.264861,0.003178,-0.003000,0.249982,0,0);}
.m34_c01130{transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);}
.md7_c01130{transform:matrix(0.265587,0.004781,-0.004499,0.249960,0,0);-ms-transform:matrix(0.265587,0.004781,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.265587,0.004781,-0.004499,0.249960,0,0);}
.m2f_c01130{transform:matrix(0.265805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265805,0.000000,0.000000,0.250000,0,0);}
.m2a_c01130{transform:matrix(0.266917,0.001335,-0.001250,0.249997,0,0);-ms-transform:matrix(0.266917,0.001335,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.266917,0.001335,-0.001250,0.249997,0,0);}
.ma1_c01130{transform:matrix(0.266964,0.003737,-0.003500,0.249976,0,0);-ms-transform:matrix(0.266964,0.003737,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.266964,0.003737,-0.003500,0.249976,0,0);}
.m46_c01130{transform:matrix(0.266983,0.001869,-0.001750,0.249994,0,0);-ms-transform:matrix(0.266983,0.001869,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.266983,0.001869,-0.001750,0.249994,0,0);}
.md_c01130{transform:matrix(0.267080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267080,0.000000,0.000000,0.250000,0,0);}
.me8_c01130{transform:matrix(0.267150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267150,0.000000,0.000000,0.250000,0,0);}
.meb_c01130{transform:matrix(0.267695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267695,0.000000,0.000000,0.250000,0,0);}
.m74_c01130{transform:matrix(0.267974,0.002948,-0.002750,0.249985,0,0);-ms-transform:matrix(0.267974,0.002948,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.267974,0.002948,-0.002750,0.249985,0,0);}
.m25_c01130{transform:matrix(0.268122,0.001341,-0.001250,0.249997,0,0);-ms-transform:matrix(0.268122,0.001341,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.268122,0.001341,-0.001250,0.249997,0,0);}
.m23_c01130{transform:matrix(0.268192,0.001341,-0.001250,0.249997,0,0);-ms-transform:matrix(0.268192,0.001341,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.268192,0.001341,-0.001250,0.249997,0,0);}
.mce_c01130{transform:matrix(0.268472,0.004832,-0.004499,0.249960,0,0);-ms-transform:matrix(0.268472,0.004832,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.268472,0.004832,-0.004499,0.249960,0,0);}
.m38_c01130{transform:matrix(0.268608,0.001880,-0.001750,0.249994,0,0);-ms-transform:matrix(0.268608,0.001880,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.268608,0.001880,-0.001750,0.249994,0,0);}
.m99_c01130{transform:matrix(0.268704,0.002418,-0.002250,0.249990,0,0);-ms-transform:matrix(0.268704,0.002418,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.268704,0.002418,-0.002250,0.249990,0,0);}
.me3_c01130{transform:matrix(0.268991,0.004842,-0.004499,0.249960,0,0);-ms-transform:matrix(0.268991,0.004842,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.268991,0.004842,-0.004499,0.249960,0,0);}
.mbb_c01130{transform:matrix(0.269157,0.003499,-0.003250,0.249979,0,0);-ms-transform:matrix(0.269157,0.003499,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.269157,0.003499,-0.003250,0.249979,0,0);}
.ma_c01130{transform:matrix(0.270300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270300,0.000000,0.000000,0.250000,0,0);}
.mbd_c01130{transform:matrix(0.270457,0.003516,-0.003250,0.249979,0,0);-ms-transform:matrix(0.270457,0.003516,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.270457,0.003516,-0.003250,0.249979,0,0);}
.m3a_c01130{transform:matrix(0.270503,0.001894,-0.001750,0.249994,0,0);-ms-transform:matrix(0.270503,0.001894,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.270503,0.001894,-0.001750,0.249994,0,0);}
.m39_c01130{transform:matrix(0.271253,0.001899,-0.001750,0.249994,0,0);-ms-transform:matrix(0.271253,0.001899,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.271253,0.001899,-0.001750,0.249994,0,0);}
.m9e_c01130{transform:matrix(0.271293,0.003798,-0.003500,0.249976,0,0);-ms-transform:matrix(0.271293,0.003798,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.271293,0.003798,-0.003500,0.249976,0,0);}
.mde_c01130{transform:matrix(0.271901,0.004894,-0.004499,0.249960,0,0);-ms-transform:matrix(0.271901,0.004894,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.271901,0.004894,-0.004499,0.249960,0,0);}
.md4_c01130{transform:matrix(0.272036,0.004897,-0.004499,0.249960,0,0);-ms-transform:matrix(0.272036,0.004897,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.272036,0.004897,-0.004499,0.249960,0,0);}
.ma0_c01130{transform:matrix(0.272083,0.003809,-0.003500,0.249976,0,0);-ms-transform:matrix(0.272083,0.003809,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.272083,0.003809,-0.003500,0.249976,0,0);}
.me0_c01130{transform:matrix(0.272601,0.004907,-0.004499,0.249960,0,0);-ms-transform:matrix(0.272601,0.004907,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.272601,0.004907,-0.004499,0.249960,0,0);}
.m27_c01130{transform:matrix(0.272722,0.001364,-0.001250,0.249997,0,0);-ms-transform:matrix(0.272722,0.001364,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.272722,0.001364,-0.001250,0.249997,0,0);}
.m76_c01130{transform:matrix(0.273078,0.003004,-0.002750,0.249985,0,0);-ms-transform:matrix(0.273078,0.003004,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.273078,0.003004,-0.002750,0.249985,0,0);}
.m8b_c01130{transform:matrix(0.273834,0.004108,-0.003750,0.249972,0,0);-ms-transform:matrix(0.273834,0.004108,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.273834,0.004108,-0.003750,0.249972,0,0);}
.med_c01130{transform:matrix(0.274210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274210,0.000000,0.000000,0.250000,0,0);}
.mc_c01130{transform:matrix(0.274470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274470,0.000000,0.000000,0.250000,0,0);}
.mbf_c01130{transform:matrix(0.275542,0.003582,-0.003250,0.249979,0,0);-ms-transform:matrix(0.275542,0.003582,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.275542,0.003582,-0.003250,0.249979,0,0);}
.m3d_c01130{transform:matrix(0.275853,0.001931,-0.001750,0.249994,0,0);-ms-transform:matrix(0.275853,0.001931,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.275853,0.001931,-0.001750,0.249994,0,0);}
.ma5_c01130{transform:matrix(0.276873,0.003876,-0.003500,0.249976,0,0);-ms-transform:matrix(0.276873,0.003876,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.276873,0.003876,-0.003500,0.249976,0,0);}
.m31_c01130{transform:matrix(0.276905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276905,0.000000,0.000000,0.250000,0,0);}
.m44_c01130{transform:matrix(0.276993,0.001939,-0.001750,0.249994,0,0);-ms-transform:matrix(0.276993,0.001939,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.276993,0.001939,-0.001750,0.249994,0,0);}
.m78_c01130{transform:matrix(0.277778,0.003056,-0.002750,0.249985,0,0);-ms-transform:matrix(0.277778,0.003056,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.277778,0.003056,-0.002750,0.249985,0,0);}
.m9_c01130{transform:matrix(0.277805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277805,0.000000,0.000000,0.250000,0,0);}
.m97_c01130{transform:matrix(0.278724,0.002509,-0.002250,0.249990,0,0);-ms-transform:matrix(0.278724,0.002509,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.278724,0.002509,-0.002250,0.249990,0,0);}
.m33_c01130{transform:matrix(0.279545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279545,0.000000,0.000000,0.250000,0,0);}
.me2_c01130{transform:matrix(0.279795,0.005036,-0.004499,0.249960,0,0);-ms-transform:matrix(0.279795,0.005036,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.279795,0.005036,-0.004499,0.249960,0,0);}
.m42_c01130{transform:matrix(0.281693,0.001972,-0.001750,0.249994,0,0);-ms-transform:matrix(0.281693,0.001972,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.281693,0.001972,-0.001750,0.249994,0,0);}
.mdb_c01130{transform:matrix(0.282174,0.005079,-0.004499,0.249960,0,0);-ms-transform:matrix(0.282174,0.005079,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.282174,0.005079,-0.004499,0.249960,0,0);}
.m28_c01130{transform:matrix(0.282186,0.001411,-0.001250,0.249997,0,0);-ms-transform:matrix(0.282186,0.001411,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.282186,0.001411,-0.001250,0.249997,0,0);}
.m95_c01130{transform:matrix(0.282769,0.002545,-0.002250,0.249990,0,0);-ms-transform:matrix(0.282769,0.002545,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.282769,0.002545,-0.002250,0.249990,0,0);}
.m3c_c01130{transform:matrix(0.285373,0.001998,-0.001750,0.249994,0,0);-ms-transform:matrix(0.285373,0.001998,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.285373,0.001998,-0.001750,0.249994,0,0);}
.me5_c01130{transform:matrix(0.285674,0.005142,-0.004499,0.249960,0,0);-ms-transform:matrix(0.285674,0.005142,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.285674,0.005142,-0.004499,0.249960,0,0);}
.mc1_c01130{transform:matrix(0.286001,0.003718,-0.003250,0.249979,0,0);-ms-transform:matrix(0.286001,0.003718,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.286001,0.003718,-0.003250,0.249979,0,0);}
.m88_c01130{transform:matrix(0.287383,0.004311,-0.003750,0.249972,0,0);-ms-transform:matrix(0.287383,0.004311,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.287383,0.004311,-0.003750,0.249972,0,0);}
.m81_c01130{transform:matrix(0.287433,0.004311,-0.003750,0.249972,0,0);-ms-transform:matrix(0.287433,0.004311,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.287433,0.004311,-0.003750,0.249972,0,0);}
.m11_c01130{transform:matrix(0.287925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287925,0.000000,0.000000,0.250000,0,0);}
.m86_c01130{transform:matrix(0.294062,0.004411,-0.003750,0.249972,0,0);-ms-transform:matrix(0.294062,0.004411,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.294062,0.004411,-0.003750,0.249972,0,0);}
.m14_c01130{transform:matrix(0.296560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296560,0.000000,0.000000,0.250000,0,0);}
.m16_c01130{transform:matrix(0.297215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297215,0.000000,0.000000,0.250000,0,0);}
.m9b_c01130{transform:matrix(0.302055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302055,0.000000,0.000000,0.250000,0,0);}
.m83_c01130{transform:matrix(0.302661,0.004540,-0.003750,0.249972,0,0);-ms-transform:matrix(0.302661,0.004540,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.302661,0.004540,-0.003750,0.249972,0,0);}
.m9a_c01130{transform:matrix(0.303715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303715,0.000000,0.000000,0.250000,0,0);}
.mc4_c01130{transform:matrix(0.319518,0.004154,-0.003250,0.249979,0,0);-ms-transform:matrix(0.319518,0.004154,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.319518,0.004154,-0.003250,0.249979,0,0);}
.m8_c01130{transform:matrix(0.319580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319580,0.000000,0.000000,0.250000,0,0);}
.mc6_c01130{transform:matrix(0.390267,0.005073,-0.003250,0.249979,0,0);-ms-transform:matrix(0.390267,0.005073,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.390267,0.005073,-0.003250,0.249979,0,0);}
.mc5_c01130{transform:matrix(0.406496,0.005284,-0.003250,0.249979,0,0);-ms-transform:matrix(0.406496,0.005284,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.406496,0.005284,-0.003250,0.249979,0,0);}
.mc3_c01130{transform:matrix(0.409590,0.005325,-0.003250,0.249979,0,0);-ms-transform:matrix(0.409590,0.005325,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.409590,0.005325,-0.003250,0.249979,0,0);}
.ma9_c01130{transform:matrix(2.066867,0.028936,-0.003500,0.249976,0,0);-ms-transform:matrix(2.066867,0.028936,-0.003500,0.249976,0,0);-webkit-transform:matrix(2.066867,0.028936,-0.003500,0.249976,0,0);}
.m8d_c01130{transform:matrix(2.150833,0.032262,-0.003750,0.249972,0,0);-ms-transform:matrix(2.150833,0.032262,-0.003750,0.249972,0,0);-webkit-transform:matrix(2.150833,0.032262,-0.003750,0.249972,0,0);}
.m8c_c01130{transform:matrix(3.781040,0.056716,-0.003750,0.249972,0,0);-ms-transform:matrix(3.781040,0.056716,-0.003750,0.249972,0,0);-webkit-transform:matrix(3.781040,0.056716,-0.003750,0.249972,0,0);}
.v0_c01130{vertical-align:0.000000px;}
.ls0_c01130{letter-spacing:0.000000px;}
.sc__c01130{text-shadow:none;}
.sc0_c01130{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__c01130{-webkit-text-stroke:0px transparent;}
.sc0_c01130{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01130{word-spacing:0.000000px;}
.fc0_c01130{color:transparent;}
.fse_c01130{font-size:18.002025px;}
.fs16_c01130{font-size:48.004056px;}
.fs2_c01130{font-size:66.000000px;}
.fsd_c01130{font-size:66.007425px;}
.fs1_c01130{font-size:72.000000px;}
.fs4_c01130{font-size:72.000900px;}
.fs5_c01130{font-size:72.001764px;}
.fs14_c01130{font-size:72.002304px;}
.fs10_c01130{font-size:72.002916px;}
.fsb_c01130{font-size:72.004356px;}
.fs15_c01130{font-size:72.006084px;}
.fs11_c01130{font-size:72.007056px;}
.fsf_c01130{font-size:72.008100px;}
.fs18_c01130{font-size:72.011663px;}
.fs0_c01130{font-size:78.000000px;}
.fsa_c01130{font-size:78.001911px;}
.fs8_c01130{font-size:78.003159px;}
.fs6_c01130{font-size:78.003900px;}
.fs9_c01130{font-size:78.005616px;}
.fs13_c01130{font-size:84.007098px;}
.fs17_c01130{font-size:84.013607px;}
.fsc_c01130{font-size:90.005445px;}
.fs7_c01130{font-size:96.000000px;}
.fs3_c01130{font-size:96.003072px;}
.fs12_c01130{font-size:114.000000px;}
.y0_c01130{bottom:0.000000px;}
.yd2_c01130{bottom:25.405500px;}
.yd1_c01130{bottom:25.960500px;}
.yd0_c01130{bottom:27.268500px;}
.ycf_c01130{bottom:28.021500px;}
.yce_c01130{bottom:29.668500px;}
.ycd_c01130{bottom:30.400500px;}
.ycc_c01130{bottom:30.801000px;}
.ycb_c01130{bottom:63.862500px;}
.yca_c01130{bottom:89.030952px;}
.yc9_c01130{bottom:89.742558px;}
.yc8_c01130{bottom:92.324910px;}
.yc7_c01130{bottom:93.039324px;}
.yc6_c01130{bottom:94.660689px;}
.yc5_c01130{bottom:96.775185px;}
.yc4_c01130{bottom:97.688172px;}
.yc3_c01130{bottom:99.536694px;}
.yc2_c01130{bottom:100.232205px;}
.yc1_c01130{bottom:102.279786px;}
.yc0_c01130{bottom:103.177002px;}
.ybf_c01130{bottom:103.672482px;}
.ybe_c01130{bottom:129.580353px;}
.ybd_c01130{bottom:130.181940px;}
.ybc_c01130{bottom:132.394536px;}
.ybb_c01130{bottom:132.982596px;}
.yba_c01130{bottom:133.984215px;}
.yb9_c01130{bottom:134.795619px;}
.yb8_c01130{bottom:135.364320px;}
.yb7_c01130{bottom:137.123343px;}
.yb6_c01130{bottom:138.087621px;}
.yb5_c01130{bottom:138.507606px;}
.yb4_c01130{bottom:165.347490px;}
.yb3_c01130{bottom:166.947213px;}
.yb2_c01130{bottom:168.341817px;}
.yb1_c01130{bottom:169.273074px;}
.yb0_c01130{bottom:169.761153px;}
.yaf_c01130{bottom:170.932386px;}
.yae_c01130{bottom:171.748110px;}
.yad_c01130{bottom:172.346592px;}
.yac_c01130{bottom:173.522523px;}
.yab_c01130{bottom:174.273258px;}
.yaa_c01130{bottom:174.693000px;}
.ya9_c01130{bottom:204.127689px;}
.ya8_c01130{bottom:205.010037px;}
.ya7_c01130{bottom:205.328237px;}
.ya6_c01130{bottom:206.548815px;}
.ya5_c01130{bottom:233.993169px;}
.ya4_c01130{bottom:235.734480px;}
.ya3_c01130{bottom:237.307331px;}
.ya2_c01130{bottom:238.630620px;}
.ya1_c01130{bottom:239.199376px;}
.ya0_c01130{bottom:240.491037px;}
.y9f_c01130{bottom:240.771272px;}
.y9e_c01130{bottom:241.923000px;}
.y9d_c01130{bottom:272.181060px;}
.y9c_c01130{bottom:275.351808px;}
.y9b_c01130{bottom:276.064656px;}
.y9a_c01130{bottom:277.045320px;}
.y99_c01130{bottom:277.291500px;}
.y98_c01130{bottom:305.894712px;}
.y97_c01130{bottom:306.351655px;}
.y96_c01130{bottom:307.777106px;}
.y95_c01130{bottom:308.795240px;}
.y94_c01130{bottom:310.515822px;}
.y93_c01130{bottom:311.845547px;}
.y92_c01130{bottom:312.852917px;}
.y91_c01130{bottom:313.965216px;}
.y90_c01130{bottom:314.518704px;}
.y8f_c01130{bottom:314.821500px;}
.y8e_c01130{bottom:342.493500px;}
.y8d_c01130{bottom:363.817272px;}
.y8c_c01130{bottom:364.886298px;}
.y8b_c01130{bottom:369.359130px;}
.y8a_c01130{bottom:374.883828px;}
.y89_c01130{bottom:376.290429px;}
.y88_c01130{bottom:376.759254px;}
.y87_c01130{bottom:377.223732px;}
.y86_c01130{bottom:378.918054px;}
.y85_c01130{bottom:380.195526px;}
.y84_c01130{bottom:381.582807px;}
.y83_c01130{bottom:382.025067px;}
.y82_c01130{bottom:383.559642px;}
.y81_c01130{bottom:384.151506px;}
.y80_c01130{bottom:384.481500px;}
.y7f_c01130{bottom:417.225000px;}
.y7e_c01130{bottom:448.137738px;}
.y7d_c01130{bottom:448.446442px;}
.y7c_c01130{bottom:449.438044px;}
.y7b_c01130{bottom:450.137965px;}
.y7a_c01130{bottom:451.331068px;}
.y79_c01130{bottom:452.030990px;}
.y78_c01130{bottom:452.344365px;}
.y77_c01130{bottom:453.219124px;}
.y76_c01130{bottom:453.600000px;}
.y73_c01130{bottom:489.214275px;}
.y74_c01130{bottom:489.214792px;}
.y75_c01130{bottom:489.215160px;}
.y72_c01130{bottom:515.244082px;}
.y70_c01130{bottom:518.248995px;}
.y6f_c01130{bottom:518.747392px;}
.y6e_c01130{bottom:519.221558px;}
.y71_c01130{bottom:519.775260px;}
.y6d_c01130{bottom:520.246455px;}
.y6c_c01130{bottom:520.876545px;}
.y6b_c01130{bottom:522.222697px;}
.y6a_c01130{bottom:522.907192px;}
.y69_c01130{bottom:523.401000px;}
.y68_c01130{bottom:525.057630px;}
.y67_c01130{bottom:525.725925px;}
.y66_c01130{bottom:526.896172px;}
.y65_c01130{bottom:527.501895px;}
.y64_c01130{bottom:527.851500px;}
.y62_c01130{bottom:560.381145px;}
.y63_c01130{bottom:560.381791px;}
.y61_c01130{bottom:588.507160px;}
.y60_c01130{bottom:589.128121px;}
.y5f_c01130{bottom:589.740007px;}
.y5e_c01130{bottom:591.332257px;}
.y5d_c01130{bottom:592.546988px;}
.y5c_c01130{bottom:593.417181px;}
.y5b_c01130{bottom:594.519117px;}
.y5a_c01130{bottom:594.875566px;}
.y59_c01130{bottom:595.721967px;}
.y58_c01130{bottom:596.169430px;}
.y57_c01130{bottom:596.431500px;}
.y56_c01130{bottom:627.469947px;}
.y55_c01130{bottom:628.176943px;}
.y54_c01130{bottom:628.498254px;}
.y53_c01130{bottom:628.723133px;}
.y52_c01130{bottom:629.405454px;}
.y51_c01130{bottom:629.725147px;}
.y50_c01130{bottom:630.346663px;}
.y4f_c01130{bottom:630.734166px;}
.y4e_c01130{bottom:631.338913px;}
.y4d_c01130{bottom:631.635307px;}
.y4c_c01130{bottom:631.800000px;}
.y4b_c01130{bottom:664.060416px;}
.y4a_c01130{bottom:665.537982px;}
.y49_c01130{bottom:666.986118px;}
.y48_c01130{bottom:668.048838px;}
.y47_c01130{bottom:669.364386px;}
.y46_c01130{bottom:669.862068px;}
.y45_c01130{bottom:670.141500px;}
.y44_c01130{bottom:695.114070px;}
.y43_c01130{bottom:695.310886px;}
.y42_c01130{bottom:696.424083px;}
.y41_c01130{bottom:697.119063px;}
.y40_c01130{bottom:697.422867px;}
.y3f_c01130{bottom:698.713143px;}
.y3e_c01130{bottom:699.427549px;}
.y3d_c01130{bottom:699.726453px;}
.y3c_c01130{bottom:700.606072px;}
.y3b_c01130{bottom:700.979644px;}
.y3a_c01130{bottom:701.191500px;}
.y39_c01130{bottom:731.577000px;}
.y38_c01130{bottom:766.512480px;}
.y37_c01130{bottom:766.971750px;}
.y36_c01130{bottom:767.754840px;}
.y35_c01130{bottom:768.200370px;}
.y34_c01130{bottom:768.529725px;}
.y33_c01130{bottom:769.628655px;}
.y32_c01130{bottom:770.082210px;}
.y31_c01130{bottom:770.967840px;}
.y30_c01130{bottom:771.310695px;}
.y2f_c01130{bottom:772.396020px;}
.y2e_c01130{bottom:773.281500px;}
.y25_c01130{bottom:806.915169px;}
.y26_c01130{bottom:806.915739px;}
.y2a_c01130{bottom:806.915802px;}
.y2b_c01130{bottom:806.916022px;}
.y28_c01130{bottom:806.916090px;}
.y29_c01130{bottom:806.916171px;}
.y2c_c01130{bottom:806.916273px;}
.y27_c01130{bottom:806.916409px;}
.y2d_c01130{bottom:806.916763px;}
.y24_c01130{bottom:840.188826px;}
.y23_c01130{bottom:841.050676px;}
.y22_c01130{bottom:841.434367px;}
.y21_c01130{bottom:842.050507px;}
.y20_c01130{bottom:842.832936px;}
.y1f_c01130{bottom:843.222276px;}
.y1e_c01130{bottom:843.828934px;}
.y1d_c01130{bottom:844.125297px;}
.y1c_c01130{bottom:844.290000px;}
.y1b_c01130{bottom:877.912500px;}
.y19_c01130{bottom:912.961673px;}
.y1a_c01130{bottom:912.961830px;}
.y18_c01130{bottom:912.962265px;}
.y17_c01130{bottom:945.946380px;}
.y16_c01130{bottom:947.061517px;}
.y15_c01130{bottom:947.662275px;}
.y14_c01130{bottom:947.891768px;}
.y13_c01130{bottom:948.281910px;}
.y12_c01130{bottom:948.501945px;}
.y11_c01130{bottom:948.996022px;}
.y10_c01130{bottom:949.203750px;}
.yf_c01130{bottom:949.320000px;}
.ye_c01130{bottom:977.045280px;}
.yd_c01130{bottom:977.213964px;}
.yc_c01130{bottom:977.931060px;}
.yb_c01130{bottom:978.375924px;}
.ya_c01130{bottom:979.162152px;}
.y9_c01130{bottom:980.151396px;}
.y8_c01130{bottom:980.946180px;}
.y7_c01130{bottom:981.471024px;}
.y6_c01130{bottom:981.803220px;}
.y5_c01130{bottom:981.991500px;}
.y4_c01130{bottom:1019.160000px;}
.y3_c01130{bottom:1053.594000px;}
.y2_c01130{bottom:1090.431000px;}
.y1_c01130{bottom:1148.577000px;}
.h10_c01130{height:18.002025px;}
.h18_c01130{height:48.004056px;}
.h4_c01130{height:66.000000px;}
.hf_c01130{height:66.007425px;}
.h3_c01130{height:72.000000px;}
.h6_c01130{height:72.000900px;}
.h7_c01130{height:72.001764px;}
.h16_c01130{height:72.002304px;}
.h12_c01130{height:72.002916px;}
.hd_c01130{height:72.004356px;}
.h17_c01130{height:72.006084px;}
.h13_c01130{height:72.007056px;}
.h11_c01130{height:72.008100px;}
.h1a_c01130{height:72.011663px;}
.h2_c01130{height:78.000000px;}
.hc_c01130{height:78.001911px;}
.ha_c01130{height:78.003159px;}
.h8_c01130{height:78.003900px;}
.hb_c01130{height:78.005616px;}
.h15_c01130{height:84.007098px;}
.h19_c01130{height:84.013607px;}
.he_c01130{height:90.005445px;}
.h9_c01130{height:96.000000px;}
.h5_c01130{height:96.003072px;}
.h14_c01130{height:114.000000px;}
.h0_c01130{height:1246.320000px;}
.h1_c01130{height:1246.500000px;}
.w0_c01130{width:898.500000px;}
.x0_c01130{left:0.000000px;}
.x8_c01130{left:105.570000px;}
.x15_c01130{left:128.952000px;}
.x23_c01130{left:130.140000px;}
.x5e_c01130{left:131.353500px;}
.x16_c01130{left:152.487000px;}
.x36_c01130{left:153.574500px;}
.x5f_c01130{left:154.672500px;}
.x9_c01130{left:193.320000px;}
.x24_c01130{left:194.400000px;}
.x3b_c01130{left:195.928500px;}
.x68_c01130{left:197.694972px;}
.x65_c01130{left:208.238868px;}
.x33_c01130{left:224.910000px;}
.x3_c01130{left:226.800000px;}
.x10_c01130{left:228.420000px;}
.x59_c01130{left:229.932000px;}
.x4_c01130{left:260.280000px;}
.x2b_c01130{left:261.902882px;}
.x3f_c01130{left:271.188000px;}
.x25_c01130{left:281.610000px;}
.x5b_c01130{left:283.626000px;}
.x34_c01130{left:291.870000px;}
.x1d_c01130{left:292.884000px;}
.x60_c01130{left:294.958500px;}
.x11_c01130{left:304.560000px;}
.x4f_c01130{left:305.733000px;}
.x26_c01130{left:315.090000px;}
.x43_c01130{left:316.530000px;}
.x21_c01130{left:318.061433px;}
.xa_c01130{left:325.350000px;}
.x4a_c01130{left:328.183500px;}
.x35_c01130{left:333.990000px;}
.x1e_c01130{left:336.891000px;}
.x5_c01130{left:338.850000px;}
.x61_c01130{left:340.276500px;}
.x4e_c01130{left:350.190000px;}
.x17_c01130{left:358.965000px;}
.x12_c01130{left:382.590000px;}
.x1_c01130{left:393.390000px;}
.x27_c01130{left:403.920000px;}
.x37_c01130{left:405.408000px;}
.x2_c01130{left:415.530000px;}
.x6_c01130{left:426.870000px;}
.x22_c01130{left:431.732775px;}
.x50_c01130{left:436.414500px;}
.x66_c01130{left:438.280368px;}
.x5c_c01130{left:448.291500px;}
.x28_c01130{left:449.550000px;}
.x7_c01130{left:459.810000px;}
.x1f_c01130{left:460.818000px;}
.x56_c01130{left:462.033000px;}
.x13_c01130{left:470.610000px;}
.x2f_c01130{left:471.816000px;}
.x18_c01130{left:482.620500px;}
.x62_c01130{left:484.197000px;}
.x14_c01130{left:503.010000px;}
.x2c_c01130{left:504.098747px;}
.x44_c01130{left:505.525500px;}
.x3a_c01130{left:513.672000px;}
.x48_c01130{left:523.755398px;}
.x55_c01130{left:525.269625px;}
.x51_c01130{left:527.662500px;}
.x29_c01130{left:537.475500px;}
.x4b_c01130{left:538.519500px;}
.x2d_c01130{left:547.569378px;}
.xb_c01130{left:549.180000px;}
.x69_c01130{left:560.541897px;}
.x63_c01130{left:561.675000px;}
.x3c_c01130{left:569.611500px;}
.x19_c01130{left:580.899000px;}
.x38_c01130{left:582.528000px;}
.x2a_c01130{left:592.288500px;}
.x40_c01130{left:593.307000px;}
.x45_c01130{left:595.269000px;}
.x3d_c01130{left:601.737000px;}
.x30_c01130{left:614.644500px;}
.x4c_c01130{left:616.288500px;}
.x67_c01130{left:627.293868px;}
.x1a_c01130{left:636.507000px;}
.xc_c01130{left:638.010000px;}
.x3e_c01130{left:647.638500px;}
.x52_c01130{left:648.685500px;}
.x64_c01130{left:650.548500px;}
.x31_c01130{left:659.197500px;}
.x2e_c01130{left:669.612363px;}
.x5d_c01130{left:671.071500px;}
.x57_c01130{left:672.703500px;}
.x53_c01130{left:681.862500px;}
.x46_c01130{left:705.601500px;}
.xd_c01130{left:714.960000px;}
.x1b_c01130{left:726.144000px;}
.x49_c01130{left:729.712275px;}
.x32_c01130{left:737.506500px;}
.x1c_c01130{left:747.229500px;}
.xe_c01130{left:749.250000px;}
.x4d_c01130{left:760.767000px;}
.x47_c01130{left:770.439000px;}
.xf_c01130{left:782.730000px;}
.x41_c01130{left:793.683000px;}
.x6a_c01130{left:794.758761px;}
.x20_c01130{left:803.997000px;}
.x39_c01130{left:805.305000px;}
.x54_c01130{left:815.821500px;}
.x58_c01130{left:817.503000px;}
.x6b_c01130{left:828.623925px;}
.x42_c01130{left:850.134000px;}
.x5a_c01130{left:868.737000px;}
@media print{
.v0_c01130{vertical-align:0.000000pt;}
.ls0_c01130{letter-spacing:0.000000pt;}
.ws0_c01130{word-spacing:0.000000pt;}
.fse_c01130{font-size:16.001800pt;}
.fs16_c01130{font-size:42.670272pt;}
.fs2_c01130{font-size:58.666667pt;}
.fsd_c01130{font-size:58.673266pt;}
.fs1_c01130{font-size:64.000000pt;}
.fs4_c01130{font-size:64.000800pt;}
.fs5_c01130{font-size:64.001568pt;}
.fs14_c01130{font-size:64.002048pt;}
.fs10_c01130{font-size:64.002592pt;}
.fsb_c01130{font-size:64.003872pt;}
.fs15_c01130{font-size:64.005408pt;}
.fs11_c01130{font-size:64.006272pt;}
.fsf_c01130{font-size:64.007200pt;}
.fs18_c01130{font-size:64.010367pt;}
.fs0_c01130{font-size:69.333333pt;}
.fsa_c01130{font-size:69.335032pt;}
.fs8_c01130{font-size:69.336141pt;}
.fs6_c01130{font-size:69.336800pt;}
.fs9_c01130{font-size:69.338325pt;}
.fs13_c01130{font-size:74.672976pt;}
.fs17_c01130{font-size:74.678762pt;}
.fsc_c01130{font-size:80.004840pt;}
.fs7_c01130{font-size:85.333333pt;}
.fs3_c01130{font-size:85.336064pt;}
.fs12_c01130{font-size:101.333333pt;}
.y0_c01130{bottom:0.000000pt;}
.yd2_c01130{bottom:22.582667pt;}
.yd1_c01130{bottom:23.076000pt;}
.yd0_c01130{bottom:24.238667pt;}
.ycf_c01130{bottom:24.908000pt;}
.yce_c01130{bottom:26.372000pt;}
.ycd_c01130{bottom:27.022667pt;}
.ycc_c01130{bottom:27.378667pt;}
.ycb_c01130{bottom:56.766667pt;}
.yca_c01130{bottom:79.138624pt;}
.yc9_c01130{bottom:79.771163pt;}
.yc8_c01130{bottom:82.066587pt;}
.yc7_c01130{bottom:82.701621pt;}
.yc6_c01130{bottom:84.142835pt;}
.yc5_c01130{bottom:86.022387pt;}
.yc4_c01130{bottom:86.833931pt;}
.yc3_c01130{bottom:88.477061pt;}
.yc2_c01130{bottom:89.095293pt;}
.yc1_c01130{bottom:90.915365pt;}
.yc0_c01130{bottom:91.712891pt;}
.ybf_c01130{bottom:92.153317pt;}
.ybe_c01130{bottom:115.182536pt;}
.ybd_c01130{bottom:115.717280pt;}
.ybc_c01130{bottom:117.684032pt;}
.ybb_c01130{bottom:118.206752pt;}
.yba_c01130{bottom:119.097080pt;}
.yb9_c01130{bottom:119.818328pt;}
.yb8_c01130{bottom:120.323840pt;}
.yb7_c01130{bottom:121.887416pt;}
.yb6_c01130{bottom:122.744552pt;}
.yb5_c01130{bottom:123.117872pt;}
.yb4_c01130{bottom:146.975547pt;}
.yb3_c01130{bottom:148.397523pt;}
.yb2_c01130{bottom:149.637171pt;}
.yb1_c01130{bottom:150.464955pt;}
.yb0_c01130{bottom:150.898803pt;}
.yaf_c01130{bottom:151.939899pt;}
.yae_c01130{bottom:152.664987pt;}
.yad_c01130{bottom:153.196971pt;}
.yac_c01130{bottom:154.242243pt;}
.yab_c01130{bottom:154.909563pt;}
.yaa_c01130{bottom:155.282667pt;}
.ya9_c01130{bottom:181.446835pt;}
.ya8_c01130{bottom:182.231144pt;}
.ya7_c01130{bottom:182.513988pt;}
.ya6_c01130{bottom:183.598947pt;}
.ya5_c01130{bottom:207.993928pt;}
.ya4_c01130{bottom:209.541760pt;}
.ya3_c01130{bottom:210.939849pt;}
.ya2_c01130{bottom:212.116107pt;}
.ya1_c01130{bottom:212.621668pt;}
.ya0_c01130{bottom:213.769811pt;}
.y9f_c01130{bottom:214.018908pt;}
.y9e_c01130{bottom:215.042667pt;}
.y9d_c01130{bottom:241.938720pt;}
.y9c_c01130{bottom:244.757163pt;}
.y9b_c01130{bottom:245.390805pt;}
.y9a_c01130{bottom:246.262507pt;}
.y99_c01130{bottom:246.481333pt;}
.y98_c01130{bottom:271.906411pt;}
.y97_c01130{bottom:272.312583pt;}
.y96_c01130{bottom:273.579649pt;}
.y95_c01130{bottom:274.484657pt;}
.y94_c01130{bottom:276.014064pt;}
.y93_c01130{bottom:277.196041pt;}
.y92_c01130{bottom:278.091481pt;}
.y91_c01130{bottom:279.080192pt;}
.y90_c01130{bottom:279.572181pt;}
.y8f_c01130{bottom:279.841333pt;}
.y8e_c01130{bottom:304.438667pt;}
.y8d_c01130{bottom:323.393131pt;}
.y8c_c01130{bottom:324.343376pt;}
.y8b_c01130{bottom:328.319227pt;}
.y8a_c01130{bottom:333.230069pt;}
.y89_c01130{bottom:334.480381pt;}
.y88_c01130{bottom:334.897115pt;}
.y87_c01130{bottom:335.309984pt;}
.y86_c01130{bottom:336.816048pt;}
.y85_c01130{bottom:337.951579pt;}
.y84_c01130{bottom:339.184717pt;}
.y83_c01130{bottom:339.577837pt;}
.y82_c01130{bottom:340.941904pt;}
.y81_c01130{bottom:341.468005pt;}
.y80_c01130{bottom:341.761333pt;}
.y7f_c01130{bottom:370.866667pt;}
.y7e_c01130{bottom:398.344656pt;}
.y7d_c01130{bottom:398.619060pt;}
.y7c_c01130{bottom:399.500484pt;}
.y7b_c01130{bottom:400.122636pt;}
.y7a_c01130{bottom:401.183172pt;}
.y79_c01130{bottom:401.805324pt;}
.y78_c01130{bottom:402.083880pt;}
.y77_c01130{bottom:402.861444pt;}
.y76_c01130{bottom:403.200000pt;}
.y73_c01130{bottom:434.857133pt;}
.y74_c01130{bottom:434.857593pt;}
.y75_c01130{bottom:434.857920pt;}
.y72_c01130{bottom:457.994740pt;}
.y70_c01130{bottom:460.665773pt;}
.y6f_c01130{bottom:461.108793pt;}
.y6e_c01130{bottom:461.530273pt;}
.y71_c01130{bottom:462.022453pt;}
.y6d_c01130{bottom:462.441293pt;}
.y6c_c01130{bottom:463.001373pt;}
.y6b_c01130{bottom:464.197953pt;}
.y6a_c01130{bottom:464.806393pt;}
.y69_c01130{bottom:465.245333pt;}
.y68_c01130{bottom:466.717893pt;}
.y67_c01130{bottom:467.311933pt;}
.y66_c01130{bottom:468.352153pt;}
.y65_c01130{bottom:468.890573pt;}
.y64_c01130{bottom:469.201333pt;}
.y62_c01130{bottom:498.116573pt;}
.y63_c01130{bottom:498.117148pt;}
.y61_c01130{bottom:523.117476pt;}
.y60_c01130{bottom:523.669441pt;}
.y5f_c01130{bottom:524.213340pt;}
.y5e_c01130{bottom:525.628673pt;}
.y5d_c01130{bottom:526.708433pt;}
.y5c_c01130{bottom:527.481939pt;}
.y5b_c01130{bottom:528.461437pt;}
.y5a_c01130{bottom:528.778281pt;}
.y59_c01130{bottom:529.530637pt;}
.y58_c01130{bottom:529.928383pt;}
.y57_c01130{bottom:530.161333pt;}
.y56_c01130{bottom:557.751064pt;}
.y55_c01130{bottom:558.379505pt;}
.y54_c01130{bottom:558.665115pt;}
.y53_c01130{bottom:558.865007pt;}
.y52_c01130{bottom:559.471515pt;}
.y51_c01130{bottom:559.755687pt;}
.y50_c01130{bottom:560.308145pt;}
.y4f_c01130{bottom:560.652592pt;}
.y4e_c01130{bottom:561.190145pt;}
.y4d_c01130{bottom:561.453607pt;}
.y4c_c01130{bottom:561.600000pt;}
.y4b_c01130{bottom:590.275925pt;}
.y4a_c01130{bottom:591.589317pt;}
.y49_c01130{bottom:592.876549pt;}
.y48_c01130{bottom:593.821189pt;}
.y47_c01130{bottom:594.990565pt;}
.y46_c01130{bottom:595.432949pt;}
.y45_c01130{bottom:595.681333pt;}
.y44_c01130{bottom:617.879173pt;}
.y43_c01130{bottom:618.054121pt;}
.y42_c01130{bottom:619.043629pt;}
.y41_c01130{bottom:619.661389pt;}
.y40_c01130{bottom:619.931437pt;}
.y3f_c01130{bottom:621.078349pt;}
.y3e_c01130{bottom:621.713377pt;}
.y3d_c01130{bottom:621.979069pt;}
.y3c_c01130{bottom:622.760953pt;}
.y3b_c01130{bottom:623.093017pt;}
.y3a_c01130{bottom:623.281333pt;}
.y39_c01130{bottom:650.290667pt;}
.y38_c01130{bottom:681.344427pt;}
.y37_c01130{bottom:681.752667pt;}
.y36_c01130{bottom:682.448747pt;}
.y35_c01130{bottom:682.844773pt;}
.y34_c01130{bottom:683.137533pt;}
.y33_c01130{bottom:684.114360pt;}
.y32_c01130{bottom:684.517520pt;}
.y31_c01130{bottom:685.304747pt;}
.y30_c01130{bottom:685.609507pt;}
.y2f_c01130{bottom:686.574240pt;}
.y2e_c01130{bottom:687.361333pt;}
.y25_c01130{bottom:717.257928pt;}
.y26_c01130{bottom:717.258435pt;}
.y2a_c01130{bottom:717.258491pt;}
.y2b_c01130{bottom:717.258687pt;}
.y28_c01130{bottom:717.258747pt;}
.y29_c01130{bottom:717.258819pt;}
.y2c_c01130{bottom:717.258909pt;}
.y27_c01130{bottom:717.259031pt;}
.y2d_c01130{bottom:717.259345pt;}
.y24_c01130{bottom:746.834512pt;}
.y23_c01130{bottom:747.600601pt;}
.y22_c01130{bottom:747.941660pt;}
.y21_c01130{bottom:748.489340pt;}
.y20_c01130{bottom:749.184832pt;}
.y1f_c01130{bottom:749.530912pt;}
.y1e_c01130{bottom:750.070164pt;}
.y1d_c01130{bottom:750.333597pt;}
.y1c_c01130{bottom:750.480000pt;}
.y1b_c01130{bottom:780.366667pt;}
.y19_c01130{bottom:811.521487pt;}
.y1a_c01130{bottom:811.521627pt;}
.y18_c01130{bottom:811.522013pt;}
.y17_c01130{bottom:840.841227pt;}
.y16_c01130{bottom:841.832460pt;}
.y15_c01130{bottom:842.366467pt;}
.y14_c01130{bottom:842.570460pt;}
.y13_c01130{bottom:842.917253pt;}
.y12_c01130{bottom:843.112840pt;}
.y11_c01130{bottom:843.552020pt;}
.y10_c01130{bottom:843.736667pt;}
.yf_c01130{bottom:843.840000pt;}
.ye_c01130{bottom:868.484693pt;}
.yd_c01130{bottom:868.634635pt;}
.yc_c01130{bottom:869.272053pt;}
.yb_c01130{bottom:869.667488pt;}
.ya_c01130{bottom:870.366357pt;}
.y9_c01130{bottom:871.245685pt;}
.y8_c01130{bottom:871.952160pt;}
.y7_c01130{bottom:872.418688pt;}
.y6_c01130{bottom:872.713973pt;}
.y5_c01130{bottom:872.881333pt;}
.y4_c01130{bottom:905.920000pt;}
.y3_c01130{bottom:936.528000pt;}
.y2_c01130{bottom:969.272000pt;}
.y1_c01130{bottom:1020.957333pt;}
.h10_c01130{height:16.001800pt;}
.h18_c01130{height:42.670272pt;}
.h4_c01130{height:58.666667pt;}
.hf_c01130{height:58.673266pt;}
.h3_c01130{height:64.000000pt;}
.h6_c01130{height:64.000800pt;}
.h7_c01130{height:64.001568pt;}
.h16_c01130{height:64.002048pt;}
.h12_c01130{height:64.002592pt;}
.hd_c01130{height:64.003872pt;}
.h17_c01130{height:64.005408pt;}
.h13_c01130{height:64.006272pt;}
.h11_c01130{height:64.007200pt;}
.h1a_c01130{height:64.010367pt;}
.h2_c01130{height:69.333333pt;}
.hc_c01130{height:69.335032pt;}
.ha_c01130{height:69.336141pt;}
.h8_c01130{height:69.336800pt;}
.hb_c01130{height:69.338325pt;}
.h15_c01130{height:74.672976pt;}
.h19_c01130{height:74.678762pt;}
.he_c01130{height:80.004840pt;}
.h9_c01130{height:85.333333pt;}
.h5_c01130{height:85.336064pt;}
.h14_c01130{height:101.333333pt;}
.h0_c01130{height:1107.840000pt;}
.h1_c01130{height:1108.000000pt;}
.w0_c01130{width:798.666667pt;}
.x0_c01130{left:0.000000pt;}
.x8_c01130{left:93.840000pt;}
.x15_c01130{left:114.624000pt;}
.x23_c01130{left:115.680000pt;}
.x5e_c01130{left:116.758667pt;}
.x16_c01130{left:135.544000pt;}
.x36_c01130{left:136.510667pt;}
.x5f_c01130{left:137.486667pt;}
.x9_c01130{left:171.840000pt;}
.x24_c01130{left:172.800000pt;}
.x3b_c01130{left:174.158667pt;}
.x68_c01130{left:175.728864pt;}
.x65_c01130{left:185.101216pt;}
.x33_c01130{left:199.920000pt;}
.x3_c01130{left:201.600000pt;}
.x10_c01130{left:203.040000pt;}
.x59_c01130{left:204.384000pt;}
.x4_c01130{left:231.360000pt;}
.x2b_c01130{left:232.802561pt;}
.x3f_c01130{left:241.056000pt;}
.x25_c01130{left:250.320000pt;}
.x5b_c01130{left:252.112000pt;}
.x34_c01130{left:259.440000pt;}
.x1d_c01130{left:260.341333pt;}
.x60_c01130{left:262.185333pt;}
.x11_c01130{left:270.720000pt;}
.x4f_c01130{left:271.762667pt;}
.x26_c01130{left:280.080000pt;}
.x43_c01130{left:281.360000pt;}
.x21_c01130{left:282.721273pt;}
.xa_c01130{left:289.200000pt;}
.x4a_c01130{left:291.718667pt;}
.x35_c01130{left:296.880000pt;}
.x1e_c01130{left:299.458667pt;}
.x5_c01130{left:301.200000pt;}
.x61_c01130{left:302.468000pt;}
.x4e_c01130{left:311.280000pt;}
.x17_c01130{left:319.080000pt;}
.x12_c01130{left:340.080000pt;}
.x1_c01130{left:349.680000pt;}
.x27_c01130{left:359.040000pt;}
.x37_c01130{left:360.362667pt;}
.x2_c01130{left:369.360000pt;}
.x6_c01130{left:379.440000pt;}
.x22_c01130{left:383.762467pt;}
.x50_c01130{left:387.924000pt;}
.x66_c01130{left:389.582549pt;}
.x5c_c01130{left:398.481333pt;}
.x28_c01130{left:399.600000pt;}
.x7_c01130{left:408.720000pt;}
.x1f_c01130{left:409.616000pt;}
.x56_c01130{left:410.696000pt;}
.x13_c01130{left:418.320000pt;}
.x2f_c01130{left:419.392000pt;}
.x18_c01130{left:428.996000pt;}
.x62_c01130{left:430.397333pt;}
.x14_c01130{left:447.120000pt;}
.x2c_c01130{left:448.087775pt;}
.x44_c01130{left:449.356000pt;}
.x3a_c01130{left:456.597333pt;}
.x48_c01130{left:465.560353pt;}
.x55_c01130{left:466.906333pt;}
.x51_c01130{left:469.033333pt;}
.x29_c01130{left:477.756000pt;}
.x4b_c01130{left:478.684000pt;}
.x2d_c01130{left:486.728336pt;}
.xb_c01130{left:488.160000pt;}
.x69_c01130{left:498.259464pt;}
.x63_c01130{left:499.266667pt;}
.x3c_c01130{left:506.321333pt;}
.x19_c01130{left:516.354667pt;}
.x38_c01130{left:517.802667pt;}
.x2a_c01130{left:526.478667pt;}
.x40_c01130{left:527.384000pt;}
.x45_c01130{left:529.128000pt;}
.x3d_c01130{left:534.877333pt;}
.x30_c01130{left:546.350667pt;}
.x4c_c01130{left:547.812000pt;}
.x67_c01130{left:557.594549pt;}
.x1a_c01130{left:565.784000pt;}
.xc_c01130{left:567.120000pt;}
.x3e_c01130{left:575.678667pt;}
.x52_c01130{left:576.609333pt;}
.x64_c01130{left:578.265333pt;}
.x31_c01130{left:585.953333pt;}
.x2e_c01130{left:595.210989pt;}
.x5d_c01130{left:596.508000pt;}
.x57_c01130{left:597.958667pt;}
.x53_c01130{left:606.100000pt;}
.x46_c01130{left:627.201333pt;}
.xd_c01130{left:635.520000pt;}
.x1b_c01130{left:645.461333pt;}
.x49_c01130{left:648.633133pt;}
.x32_c01130{left:655.561333pt;}
.x1c_c01130{left:664.204000pt;}
.xe_c01130{left:666.000000pt;}
.x4d_c01130{left:676.237333pt;}
.x47_c01130{left:684.834667pt;}
.xf_c01130{left:695.760000pt;}
.x41_c01130{left:705.496000pt;}
.x6a_c01130{left:706.452232pt;}
.x20_c01130{left:714.664000pt;}
.x39_c01130{left:715.826667pt;}
.x54_c01130{left:725.174667pt;}
.x58_c01130{left:726.669333pt;}
.x6b_c01130{left:736.554600pt;}
.x42_c01130{left:755.674667pt;}
.x5a_c01130{left:772.210667pt;}
}





/* 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_c01131 {
    display:none;
  }
  .loading-indicator_c01131.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01131 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_c01131 { 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_c01131" -> "#page-container .classname_c01131")
 */
.pf_c01131 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01131 { /* 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_c01131.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01131 { /* 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_c01131 { /* 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_c01131 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01131 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01131 {overflow:visible;}
  }
}
.c_c01131 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01131 { /* 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_c01131:after { /* webkit #35443 */
  content: '';
}
.t_c01131:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01131 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 */
}
.__c01131 { /* 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_c01131 { /* info for Javascript */
  display:none;
}
.l_c01131 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01131 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01131 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01131: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_c01131 {
    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_c01131.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01131.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_c01131 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01131{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01131;src:url('chunks/assets/font_8bcac4ac5bfe8fcd47e39e29.woff2')format("woff");}.ff1_c01131{font-family:ff1_c01131;line-height:1.000000;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;}
.m1_c01131{transform:matrix(0.232215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232215,0.000000,0.000000,0.250000,0,0);}
.m0_c01131{transform:matrix(0.782625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.782625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.782625,0.000000,0.000000,0.250000,0,0);}
.v0_c01131{vertical-align:0.000000px;}
.ls0_c01131{letter-spacing:0.000000px;}
.sc__c01131{text-shadow:none;}
.sc0_c01131{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__c01131{-webkit-text-stroke:0px transparent;}
.sc0_c01131{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01131{word-spacing:0.000000px;}
.fc0_c01131{color:transparent;}
.fs0_c01131{font-size:18.000000px;}
.fs1_c01131{font-size:84.000000px;}
.y0_c01131{bottom:0.000000px;}
.y2_c01131{bottom:1084.189500px;}
.y1_c01131{bottom:1107.675000px;}
.h2_c01131{height:18.000000px;}
.h3_c01131{height:84.000000px;}
.h0_c01131{height:1246.320000px;}
.h1_c01131{height:1246.500000px;}
.w0_c01131{width:898.500000px;}
.x0_c01131{left:0.000000px;}
.x2_c01131{left:406.890000px;}
.x1_c01131{left:424.710000px;}
@media print{
.v0_c01131{vertical-align:0.000000pt;}
.ls0_c01131{letter-spacing:0.000000pt;}
.ws0_c01131{word-spacing:0.000000pt;}
.fs0_c01131{font-size:16.000000pt;}
.fs1_c01131{font-size:74.666667pt;}
.y0_c01131{bottom:0.000000pt;}
.y2_c01131{bottom:963.724000pt;}
.y1_c01131{bottom:984.600000pt;}
.h2_c01131{height:16.000000pt;}
.h3_c01131{height:74.666667pt;}
.h0_c01131{height:1107.840000pt;}
.h1_c01131{height:1108.000000pt;}
.w0_c01131{width:798.666667pt;}
.x0_c01131{left:0.000000pt;}
.x2_c01131{left:361.680000pt;}
.x1_c01131{left:377.520000pt;}
}





/* 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_c01132 {
    display:none;
  }
  .loading-indicator_c01132.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01132 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_c01132 { 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_c01132" -> "#page-container .classname_c01132")
 */
.pf_c01132 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01132 { /* 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_c01132.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01132 { /* 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_c01132 { /* 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_c01132 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01132 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01132 {overflow:visible;}
  }
}
.c_c01132 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01132 { /* 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_c01132:after { /* webkit #35443 */
  content: '';
}
.t_c01132:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01132 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 */
}
.__c01132 { /* 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_c01132 { /* info for Javascript */
  display:none;
}
.l_c01132 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01132 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01132 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01132: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_c01132 {
    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_c01132.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01132.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_c01132 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01132{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01132;src:url('chunks/assets/font_c605e72f209fc835e906f064.woff2')format("woff");}.ff1_c01132{font-family:ff1_c01132;line-height:1.000000;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;}
.mcc_c01132{transform:matrix(0.013514,0.000392,-0.007247,0.249895,0,0);-ms-transform:matrix(0.013514,0.000392,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.013514,0.000392,-0.007247,0.249895,0,0);}
.mb4_c01132{transform:matrix(0.101063,0.003541,-0.008753,0.249847,0,0);-ms-transform:matrix(0.101063,0.003541,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.101063,0.003541,-0.008753,0.249847,0,0);}
.m12_c01132{transform:matrix(0.109145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109145,0.000000,0.000000,0.250000,0,0);}
.m10_c01132{transform:matrix(0.110680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110680,0.000000,0.000000,0.250000,0,0);}
.mb2_c01132{transform:matrix(0.112201,0.003931,-0.008753,0.249847,0,0);-ms-transform:matrix(0.112201,0.003931,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.112201,0.003931,-0.008753,0.249847,0,0);}
.mb3_c01132{transform:matrix(0.131474,0.004606,-0.008753,0.249847,0,0);-ms-transform:matrix(0.131474,0.004606,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.131474,0.004606,-0.008753,0.249847,0,0);}
.mae_c01132{transform:matrix(0.131774,0.004617,-0.008753,0.249847,0,0);-ms-transform:matrix(0.131774,0.004617,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.131774,0.004617,-0.008753,0.249847,0,0);}
.m80_c01132{transform:matrix(0.131867,0.003560,-0.006748,0.249909,0,0);-ms-transform:matrix(0.131867,0.003560,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.131867,0.003560,-0.006748,0.249909,0,0);}
.m103_c01132{transform:matrix(0.139333,0.005718,-0.010252,0.249790,0,0);-ms-transform:matrix(0.139333,0.005718,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.139333,0.005718,-0.010252,0.249790,0,0);}
.mad_c01132{transform:matrix(0.148274,0.005195,-0.008753,0.249847,0,0);-ms-transform:matrix(0.148274,0.005195,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.148274,0.005195,-0.008753,0.249847,0,0);}
.mb1_c01132{transform:matrix(0.151932,0.005323,-0.008753,0.249847,0,0);-ms-transform:matrix(0.151932,0.005323,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.151932,0.005323,-0.008753,0.249847,0,0);}
.m61_c01132{transform:matrix(0.152126,0.003651,-0.005998,0.249928,0,0);-ms-transform:matrix(0.152126,0.003651,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.152126,0.003651,-0.005998,0.249928,0,0);}
.m13_c01132{transform:matrix(0.155947,0.002963,-0.004749,0.249955,0,0);-ms-transform:matrix(0.155947,0.002963,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.155947,0.002963,-0.004749,0.249955,0,0);}
.maf_c01132{transform:matrix(0.155949,0.005464,-0.008753,0.249847,0,0);-ms-transform:matrix(0.155949,0.005464,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.155949,0.005464,-0.008753,0.249847,0,0);}
.mf9_c01132{transform:matrix(0.157559,0.005205,-0.008254,0.249864,0,0);-ms-transform:matrix(0.157559,0.005205,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.157559,0.005205,-0.008254,0.249864,0,0);}
.mb0_c01132{transform:matrix(0.159147,0.005576,-0.008753,0.249847,0,0);-ms-transform:matrix(0.159147,0.005576,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.159147,0.005576,-0.008753,0.249847,0,0);}
.m11_c01132{transform:matrix(0.166140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166140,0.000000,0.000000,0.250000,0,0);}
.mac_c01132{transform:matrix(0.167730,0.006212,-0.009253,0.249829,0,0);-ms-transform:matrix(0.167730,0.006212,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.167730,0.006212,-0.009253,0.249829,0,0);}
.me7_c01132{transform:matrix(0.168532,0.004213,-0.006248,0.249922,0,0);-ms-transform:matrix(0.168532,0.004213,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.168532,0.004213,-0.006248,0.249922,0,0);}
.me_c01132{transform:matrix(0.169705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169705,0.000000,0.000000,0.250000,0,0);}
.m69_c01132{transform:matrix(0.171022,0.004447,-0.006498,0.249916,0,0);-ms-transform:matrix(0.171022,0.004447,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.171022,0.004447,-0.006498,0.249916,0,0);}
.mf_c01132{transform:matrix(0.172975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172975,0.000000,0.000000,0.250000,0,0);}
.mb5_c01132{transform:matrix(0.173688,0.006085,-0.008753,0.249847,0,0);-ms-transform:matrix(0.173688,0.006085,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.173688,0.006085,-0.008753,0.249847,0,0);}
.m6d_c01132{transform:matrix(0.175131,0.004553,-0.006498,0.249916,0,0);-ms-transform:matrix(0.175131,0.004553,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.175131,0.004553,-0.006498,0.249916,0,0);}
.m19_c01132{transform:matrix(0.175868,0.003341,-0.004749,0.249955,0,0);-ms-transform:matrix(0.175868,0.003341,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.175868,0.003341,-0.004749,0.249955,0,0);}
.m16_c01132{transform:matrix(0.177303,0.003369,-0.004749,0.249955,0,0);-ms-transform:matrix(0.177303,0.003369,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.177303,0.003369,-0.004749,0.249955,0,0);}
.m15_c01132{transform:matrix(0.177948,0.003381,-0.004749,0.249955,0,0);-ms-transform:matrix(0.177948,0.003381,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.177948,0.003381,-0.004749,0.249955,0,0);}
.m9d_c01132{transform:matrix(0.178707,0.006619,-0.009253,0.249829,0,0);-ms-transform:matrix(0.178707,0.006619,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.178707,0.006619,-0.009253,0.249829,0,0);}
.m93_c01132{transform:matrix(0.180914,0.005066,-0.006997,0.249902,0,0);-ms-transform:matrix(0.180914,0.005066,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.180914,0.005066,-0.006997,0.249902,0,0);}
.m82_c01132{transform:matrix(0.193699,0.005230,-0.006748,0.249909,0,0);-ms-transform:matrix(0.193699,0.005230,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.193699,0.005230,-0.006748,0.249909,0,0);}
.m26_c01132{transform:matrix(0.194025,0.003686,-0.004749,0.249955,0,0);-ms-transform:matrix(0.194025,0.003686,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.194025,0.003686,-0.004749,0.249955,0,0);}
.m1a_c01132{transform:matrix(0.198469,0.003771,-0.004749,0.249955,0,0);-ms-transform:matrix(0.198469,0.003771,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.198469,0.003771,-0.004749,0.249955,0,0);}
.m102_c01132{transform:matrix(0.198753,0.008157,-0.010252,0.249790,0,0);-ms-transform:matrix(0.198753,0.008157,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.198753,0.008157,-0.010252,0.249790,0,0);}
.m104_c01132{transform:matrix(0.199162,0.008174,-0.010252,0.249790,0,0);-ms-transform:matrix(0.199162,0.008174,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.199162,0.008174,-0.010252,0.249790,0,0);}
.m29_c01132{transform:matrix(0.203580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203580,0.000000,0.000000,0.250000,0,0);}
.m8a_c01132{transform:matrix(0.204051,0.005509,-0.006748,0.249909,0,0);-ms-transform:matrix(0.204051,0.005509,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.204051,0.005509,-0.006748,0.249909,0,0);}
.m1b_c01132{transform:matrix(0.204518,0.003886,-0.004749,0.249955,0,0);-ms-transform:matrix(0.204518,0.003886,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.204518,0.003886,-0.004749,0.249955,0,0);}
.m86_c01132{transform:matrix(0.205035,0.005536,-0.006748,0.249909,0,0);-ms-transform:matrix(0.205035,0.005536,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.205035,0.005536,-0.006748,0.249909,0,0);}
.m14_c01132{transform:matrix(0.205283,0.003900,-0.004749,0.249955,0,0);-ms-transform:matrix(0.205283,0.003900,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.205283,0.003900,-0.004749,0.249955,0,0);}
.mc4_c01132{transform:matrix(0.206823,0.005998,-0.007247,0.249895,0,0);-ms-transform:matrix(0.206823,0.005998,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.206823,0.005998,-0.007247,0.249895,0,0);}
.m3f_c01132{transform:matrix(0.209100,0.003555,-0.004249,0.249964,0,0);-ms-transform:matrix(0.209100,0.003555,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.209100,0.003555,-0.004249,0.249964,0,0);}
.m18_c01132{transform:matrix(0.209712,0.003985,-0.004749,0.249955,0,0);-ms-transform:matrix(0.209712,0.003985,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.209712,0.003985,-0.004749,0.249955,0,0);}
.m41_c01132{transform:matrix(0.209905,0.003568,-0.004249,0.249964,0,0);-ms-transform:matrix(0.209905,0.003568,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.209905,0.003568,-0.004249,0.249964,0,0);}
.m1c_c01132{transform:matrix(0.211302,0.004015,-0.004749,0.249955,0,0);-ms-transform:matrix(0.211302,0.004015,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.211302,0.004015,-0.004749,0.249955,0,0);}
.m17_c01132{transform:matrix(0.212287,0.004033,-0.004749,0.249955,0,0);-ms-transform:matrix(0.212287,0.004033,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.212287,0.004033,-0.004749,0.249955,0,0);}
.ma7_c01132{transform:matrix(0.213524,0.007908,-0.009253,0.249829,0,0);-ms-transform:matrix(0.213524,0.007908,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.213524,0.007908,-0.009253,0.249829,0,0);}
.m109_c01132{transform:matrix(0.214779,0.008815,-0.010252,0.249790,0,0);-ms-transform:matrix(0.214779,0.008815,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.214779,0.008815,-0.010252,0.249790,0,0);}
.m27_c01132{transform:matrix(0.217826,0.004139,-0.004749,0.249955,0,0);-ms-transform:matrix(0.217826,0.004139,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.217826,0.004139,-0.004749,0.249955,0,0);}
.m91_c01132{transform:matrix(0.218724,0.006124,-0.006997,0.249902,0,0);-ms-transform:matrix(0.218724,0.006124,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.218724,0.006124,-0.006997,0.249902,0,0);}
.ma4_c01132{transform:matrix(0.218775,0.008103,-0.009253,0.249829,0,0);-ms-transform:matrix(0.218775,0.008103,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.218775,0.008103,-0.009253,0.249829,0,0);}
.m5b_c01132{transform:matrix(0.218877,0.005253,-0.005998,0.249928,0,0);-ms-transform:matrix(0.218877,0.005253,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.218877,0.005253,-0.005998,0.249928,0,0);}
.m9f_c01132{transform:matrix(0.218900,0.008107,-0.009253,0.249829,0,0);-ms-transform:matrix(0.218900,0.008107,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.218900,0.008107,-0.009253,0.249829,0,0);}
.mdf_c01132{transform:matrix(0.219040,0.006790,-0.007746,0.249880,0,0);-ms-transform:matrix(0.219040,0.006790,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.219040,0.006790,-0.007746,0.249880,0,0);}
.m55_c01132{transform:matrix(0.219737,0.005274,-0.005998,0.249928,0,0);-ms-transform:matrix(0.219737,0.005274,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.219737,0.005274,-0.005998,0.249928,0,0);}
.ma0_c01132{transform:matrix(0.220039,0.008150,-0.009253,0.249829,0,0);-ms-transform:matrix(0.220039,0.008150,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.220039,0.008150,-0.009253,0.249829,0,0);}
.m60_c01132{transform:matrix(0.220127,0.005283,-0.005998,0.249928,0,0);-ms-transform:matrix(0.220127,0.005283,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.220127,0.005283,-0.005998,0.249928,0,0);}
.m89_c01132{transform:matrix(0.220610,0.005956,-0.006748,0.249909,0,0);-ms-transform:matrix(0.220610,0.005956,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.220610,0.005956,-0.006748,0.249909,0,0);}
.m88_c01132{transform:matrix(0.223004,0.006021,-0.006748,0.249909,0,0);-ms-transform:matrix(0.223004,0.006021,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.223004,0.006021,-0.006748,0.249909,0,0);}
.m84_c01132{transform:matrix(0.224333,0.006057,-0.006748,0.249909,0,0);-ms-transform:matrix(0.224333,0.006057,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.224333,0.006057,-0.006748,0.249909,0,0);}
.mc2_c01132{transform:matrix(0.225545,0.006541,-0.007247,0.249895,0,0);-ms-transform:matrix(0.225545,0.006541,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.225545,0.006541,-0.007247,0.249895,0,0);}
.m83_c01132{transform:matrix(0.225803,0.006097,-0.006748,0.249909,0,0);-ms-transform:matrix(0.225803,0.006097,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.225803,0.006097,-0.006748,0.249909,0,0);}
.m57_c01132{transform:matrix(0.227365,0.005457,-0.005998,0.249928,0,0);-ms-transform:matrix(0.227365,0.005457,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.227365,0.005457,-0.005998,0.249928,0,0);}
.ma2_c01132{transform:matrix(0.227594,0.008429,-0.009253,0.249829,0,0);-ms-transform:matrix(0.227594,0.008429,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.227594,0.008429,-0.009253,0.249829,0,0);}
.m2d_c01132{transform:matrix(0.228120,0.004791,-0.005249,0.249945,0,0);-ms-transform:matrix(0.228120,0.004791,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.228120,0.004791,-0.005249,0.249945,0,0);}
.m8b_c01132{transform:matrix(0.228197,0.006161,-0.006748,0.249909,0,0);-ms-transform:matrix(0.228197,0.006161,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.228197,0.006161,-0.006748,0.249909,0,0);}
.m108_c01132{transform:matrix(0.228882,0.009394,-0.010252,0.249790,0,0);-ms-transform:matrix(0.228882,0.009394,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.228882,0.009394,-0.010252,0.249790,0,0);}
.mab_c01132{transform:matrix(0.228963,0.008480,-0.009253,0.249829,0,0);-ms-transform:matrix(0.228963,0.008480,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.228963,0.008480,-0.009253,0.249829,0,0);}
.mcf_c01132{transform:matrix(0.229441,0.006195,-0.006748,0.249909,0,0);-ms-transform:matrix(0.229441,0.006195,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.229441,0.006195,-0.006748,0.249909,0,0);}
.md0_c01132{transform:matrix(0.229676,0.006201,-0.006748,0.249909,0,0);-ms-transform:matrix(0.229676,0.006201,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.229676,0.006201,-0.006748,0.249909,0,0);}
.m81_c01132{transform:matrix(0.229696,0.006202,-0.006748,0.249909,0,0);-ms-transform:matrix(0.229696,0.006202,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.229696,0.006202,-0.006748,0.249909,0,0);}
.m100_c01132{transform:matrix(0.230199,0.007604,-0.008254,0.249864,0,0);-ms-transform:matrix(0.230199,0.007604,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.230199,0.007604,-0.008254,0.249864,0,0);}
.md2_c01132{transform:matrix(0.230241,0.006217,-0.006748,0.249909,0,0);-ms-transform:matrix(0.230241,0.006217,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.230241,0.006217,-0.006748,0.249909,0,0);}
.med_c01132{transform:matrix(0.230619,0.007618,-0.008254,0.249864,0,0);-ms-transform:matrix(0.230619,0.007618,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.230619,0.007618,-0.008254,0.249864,0,0);}
.m85_c01132{transform:matrix(0.232080,0.006266,-0.006748,0.249909,0,0);-ms-transform:matrix(0.232080,0.006266,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.232080,0.006266,-0.006748,0.249909,0,0);}
.md7_c01132{transform:matrix(0.232200,0.006269,-0.006748,0.249909,0,0);-ms-transform:matrix(0.232200,0.006269,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.232200,0.006269,-0.006748,0.249909,0,0);}
.mfc_c01132{transform:matrix(0.232468,0.007679,-0.008254,0.249864,0,0);-ms-transform:matrix(0.232468,0.007679,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.232468,0.007679,-0.008254,0.249864,0,0);}
.m34_c01132{transform:matrix(0.232934,0.004892,-0.005249,0.249945,0,0);-ms-transform:matrix(0.232934,0.004892,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.232934,0.004892,-0.005249,0.249945,0,0);}
.m87_c01132{transform:matrix(0.233035,0.006292,-0.006748,0.249909,0,0);-ms-transform:matrix(0.233035,0.006292,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.233035,0.006292,-0.006748,0.249909,0,0);}
.mbf_c01132{transform:matrix(0.233037,0.006758,-0.007247,0.249895,0,0);-ms-transform:matrix(0.233037,0.006758,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.233037,0.006758,-0.007247,0.249895,0,0);}
.m107_c01132{transform:matrix(0.233054,0.009565,-0.010252,0.249790,0,0);-ms-transform:matrix(0.233054,0.009565,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.233054,0.009565,-0.010252,0.249790,0,0);}
.ma9_c01132{transform:matrix(0.233230,0.008638,-0.009253,0.249829,0,0);-ms-transform:matrix(0.233230,0.008638,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.233230,0.008638,-0.009253,0.249829,0,0);}
.mef_c01132{transform:matrix(0.233568,0.007715,-0.008254,0.249864,0,0);-ms-transform:matrix(0.233568,0.007715,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.233568,0.007715,-0.008254,0.249864,0,0);}
.m47_c01132{transform:matrix(0.233973,0.004679,-0.004999,0.249950,0,0);-ms-transform:matrix(0.233973,0.004679,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.233973,0.004679,-0.004999,0.249950,0,0);}
.m10a_c01132{transform:matrix(0.234128,0.009609,-0.010252,0.249790,0,0);-ms-transform:matrix(0.234128,0.009609,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.234128,0.009609,-0.010252,0.249790,0,0);}
.mf6_c01132{transform:matrix(0.234232,0.007737,-0.008254,0.249864,0,0);-ms-transform:matrix(0.234232,0.007737,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.234232,0.007737,-0.008254,0.249864,0,0);}
.m10b_c01132{transform:matrix(0.235002,0.009645,-0.010252,0.249790,0,0);-ms-transform:matrix(0.235002,0.009645,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.235002,0.009645,-0.010252,0.249790,0,0);}
.m54_c01132{transform:matrix(0.235437,0.005650,-0.005998,0.249928,0,0);-ms-transform:matrix(0.235437,0.005650,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.235437,0.005650,-0.005998,0.249928,0,0);}
.m105_c01132{transform:matrix(0.235492,0.009665,-0.010252,0.249790,0,0);-ms-transform:matrix(0.235492,0.009665,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.235492,0.009665,-0.010252,0.249790,0,0);}
.m5e_c01132{transform:matrix(0.235512,0.005652,-0.005998,0.249928,0,0);-ms-transform:matrix(0.235512,0.005652,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.235512,0.005652,-0.005998,0.249928,0,0);}
.m2a_c01132{transform:matrix(0.235565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235565,0.000000,0.000000,0.250000,0,0);}
.mfa_c01132{transform:matrix(0.237056,0.007831,-0.008254,0.249864,0,0);-ms-transform:matrix(0.237056,0.007831,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.237056,0.007831,-0.008254,0.249864,0,0);}
.m6b_c01132{transform:matrix(0.239574,0.006229,-0.006498,0.249916,0,0);-ms-transform:matrix(0.239574,0.006229,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.239574,0.006229,-0.006498,0.249916,0,0);}
.ma1_c01132{transform:matrix(0.239686,0.008877,-0.009253,0.249829,0,0);-ms-transform:matrix(0.239686,0.008877,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.239686,0.008877,-0.009253,0.249829,0,0);}
.mf2_c01132{transform:matrix(0.239779,0.007921,-0.008254,0.249864,0,0);-ms-transform:matrix(0.239779,0.007921,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.239779,0.007921,-0.008254,0.249864,0,0);}
.m7c_c01132{transform:matrix(0.241425,0.006036,-0.006248,0.249922,0,0);-ms-transform:matrix(0.241425,0.006036,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.241425,0.006036,-0.006248,0.249922,0,0);}
.ma6_c01132{transform:matrix(0.241799,0.008956,-0.009253,0.249829,0,0);-ms-transform:matrix(0.241799,0.008956,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.241799,0.008956,-0.009253,0.249829,0,0);}
.mea_c01132{transform:matrix(0.242343,0.008005,-0.008254,0.249864,0,0);-ms-transform:matrix(0.242343,0.008005,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.242343,0.008005,-0.008254,0.249864,0,0);}
.mc6_c01132{transform:matrix(0.243393,0.007058,-0.007247,0.249895,0,0);-ms-transform:matrix(0.243393,0.007058,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.243393,0.007058,-0.007247,0.249895,0,0);}
.m58_c01132{transform:matrix(0.243425,0.005842,-0.005998,0.249928,0,0);-ms-transform:matrix(0.243425,0.005842,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.243425,0.005842,-0.005998,0.249928,0,0);}
.m5a_c01132{transform:matrix(0.243430,0.005842,-0.005998,0.249928,0,0);-ms-transform:matrix(0.243430,0.005842,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.243430,0.005842,-0.005998,0.249928,0,0);}
.m37_c01132{transform:matrix(0.243891,0.004634,-0.004749,0.249955,0,0);-ms-transform:matrix(0.243891,0.004634,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.243891,0.004634,-0.004749,0.249955,0,0);}
.m95_c01132{transform:matrix(0.244349,0.006842,-0.006997,0.249902,0,0);-ms-transform:matrix(0.244349,0.006842,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.244349,0.006842,-0.006997,0.249902,0,0);}
.m20_c01132{transform:matrix(0.245136,0.004658,-0.004749,0.249955,0,0);-ms-transform:matrix(0.245136,0.004658,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.245136,0.004658,-0.004749,0.249955,0,0);}
.ma8_c01132{transform:matrix(0.245222,0.009082,-0.009253,0.249829,0,0);-ms-transform:matrix(0.245222,0.009082,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.245222,0.009082,-0.009253,0.249829,0,0);}
.m9e_c01132{transform:matrix(0.246006,0.009111,-0.009253,0.249829,0,0);-ms-transform:matrix(0.246006,0.009111,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.246006,0.009111,-0.009253,0.249829,0,0);}
.m7b_c01132{transform:matrix(0.246588,0.006165,-0.006248,0.249922,0,0);-ms-transform:matrix(0.246588,0.006165,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.246588,0.006165,-0.006248,0.249922,0,0);}
.m2e_c01132{transform:matrix(0.247495,0.005197,-0.005249,0.249945,0,0);-ms-transform:matrix(0.247495,0.005197,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.247495,0.005197,-0.005249,0.249945,0,0);}
.m3_c01132{transform:matrix(0.247590,0.004952,-0.004999,0.249950,0,0);-ms-transform:matrix(0.247590,0.004952,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.247590,0.004952,-0.004999,0.249950,0,0);}
.md3_c01132{transform:matrix(0.248354,0.006706,-0.006748,0.249909,0,0);-ms-transform:matrix(0.248354,0.006706,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.248354,0.006706,-0.006748,0.249909,0,0);}
.m32_c01132{transform:matrix(0.249350,0.005236,-0.005249,0.249945,0,0);-ms-transform:matrix(0.249350,0.005236,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.249350,0.005236,-0.005249,0.249945,0,0);}
.mde_c01132{transform:matrix(0.249705,0.007741,-0.007746,0.249880,0,0);-ms-transform:matrix(0.249705,0.007741,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.249705,0.007741,-0.007746,0.249880,0,0);}
.mf0_c01132{transform:matrix(0.249859,0.008254,-0.008254,0.249864,0,0);-ms-transform:matrix(0.249859,0.008254,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.249859,0.008254,-0.008254,0.249864,0,0);}
.mf5_c01132{transform:matrix(0.249969,0.008257,-0.008254,0.249864,0,0);-ms-transform:matrix(0.249969,0.008257,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.249969,0.008257,-0.008254,0.249864,0,0);}
.me4_c01132{transform:matrix(0.250035,0.007751,-0.007746,0.249880,0,0);-ms-transform:matrix(0.250035,0.007751,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.250035,0.007751,-0.007746,0.249880,0,0);}
.m3c_c01132{transform:matrix(0.250159,0.004253,-0.004249,0.249964,0,0);-ms-transform:matrix(0.250159,0.004253,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.250159,0.004253,-0.004249,0.249964,0,0);}
.m7_c01132{transform:matrix(0.250340,0.005007,-0.004999,0.249950,0,0);-ms-transform:matrix(0.250340,0.005007,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.250340,0.005007,-0.004999,0.249950,0,0);}
.m3a_c01132{transform:matrix(0.250345,0.004757,-0.004749,0.249955,0,0);-ms-transform:matrix(0.250345,0.004757,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.250345,0.004757,-0.004749,0.249955,0,0);}
.m4f_c01132{transform:matrix(0.251053,0.006025,-0.005998,0.249928,0,0);-ms-transform:matrix(0.251053,0.006025,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.251053,0.006025,-0.005998,0.249928,0,0);}
.m23_c01132{transform:matrix(0.251100,0.004771,-0.004749,0.249955,0,0);-ms-transform:matrix(0.251100,0.004771,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.251100,0.004771,-0.004749,0.249955,0,0);}
.m40_c01132{transform:matrix(0.251244,0.004271,-0.004249,0.249964,0,0);-ms-transform:matrix(0.251244,0.004271,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.251244,0.004271,-0.004249,0.249964,0,0);}
.ma5_c01132{transform:matrix(0.251602,0.009319,-0.009253,0.249829,0,0);-ms-transform:matrix(0.251602,0.009319,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.251602,0.009319,-0.009253,0.249829,0,0);}
.m43_c01132{transform:matrix(0.251694,0.004279,-0.004249,0.249964,0,0);-ms-transform:matrix(0.251694,0.004279,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.251694,0.004279,-0.004249,0.249964,0,0);}
.m3d_c01132{transform:matrix(0.251864,0.004282,-0.004249,0.249964,0,0);-ms-transform:matrix(0.251864,0.004282,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.251864,0.004282,-0.004249,0.249964,0,0);}
.m62_c01132{transform:matrix(0.252032,0.006049,-0.005998,0.249928,0,0);-ms-transform:matrix(0.252032,0.006049,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.252032,0.006049,-0.005998,0.249928,0,0);}
.mca_c01132{transform:matrix(0.252734,0.007329,-0.007247,0.249895,0,0);-ms-transform:matrix(0.252734,0.007329,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.252734,0.007329,-0.007247,0.249895,0,0);}
.md5_c01132{transform:matrix(0.252753,0.006824,-0.006748,0.249909,0,0);-ms-transform:matrix(0.252753,0.006824,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.252753,0.006824,-0.006748,0.249909,0,0);}
.m50_c01132{transform:matrix(0.254297,0.006103,-0.005998,0.249928,0,0);-ms-transform:matrix(0.254297,0.006103,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.254297,0.006103,-0.005998,0.249928,0,0);}
.m5f_c01132{transform:matrix(0.254307,0.006103,-0.005998,0.249928,0,0);-ms-transform:matrix(0.254307,0.006103,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.254307,0.006103,-0.005998,0.249928,0,0);}
.m3e_c01132{transform:matrix(0.254568,0.004328,-0.004249,0.249964,0,0);-ms-transform:matrix(0.254568,0.004328,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.254568,0.004328,-0.004249,0.249964,0,0);}
.m30_c01132{transform:matrix(0.254814,0.005351,-0.005249,0.249945,0,0);-ms-transform:matrix(0.254814,0.005351,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.254814,0.005351,-0.005249,0.249945,0,0);}
.mcd_c01132{transform:matrix(0.254857,0.006881,-0.006748,0.249909,0,0);-ms-transform:matrix(0.254857,0.006881,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.254857,0.006881,-0.006748,0.249909,0,0);}
.mc8_c01132{transform:matrix(0.254873,0.007391,-0.007247,0.249895,0,0);-ms-transform:matrix(0.254873,0.007391,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.254873,0.007391,-0.007247,0.249895,0,0);}
.m5d_c01132{transform:matrix(0.255232,0.006126,-0.005998,0.249928,0,0);-ms-transform:matrix(0.255232,0.006126,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.255232,0.006126,-0.005998,0.249928,0,0);}
.mdc_c01132{transform:matrix(0.255817,0.006907,-0.006748,0.249909,0,0);-ms-transform:matrix(0.255817,0.006907,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.255817,0.006907,-0.006748,0.249909,0,0);}
.m4b_c01132{transform:matrix(0.255821,0.006140,-0.005998,0.249928,0,0);-ms-transform:matrix(0.255821,0.006140,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.255821,0.006140,-0.005998,0.249928,0,0);}
.m5c_c01132{transform:matrix(0.255891,0.006141,-0.005998,0.249928,0,0);-ms-transform:matrix(0.255891,0.006141,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.255891,0.006141,-0.005998,0.249928,0,0);}
.mf3_c01132{transform:matrix(0.256015,0.008457,-0.008254,0.249864,0,0);-ms-transform:matrix(0.256015,0.008457,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.256015,0.008457,-0.008254,0.249864,0,0);}
.m99_c01132{transform:matrix(0.256105,0.007171,-0.006997,0.249902,0,0);-ms-transform:matrix(0.256105,0.007171,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.256105,0.007171,-0.006997,0.249902,0,0);}
.mb8_c01132{transform:matrix(0.257089,0.007198,-0.006997,0.249902,0,0);-ms-transform:matrix(0.257089,0.007198,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.257089,0.007198,-0.006997,0.249902,0,0);}
.ma3_c01132{transform:matrix(0.257174,0.009525,-0.009253,0.249829,0,0);-ms-transform:matrix(0.257174,0.009525,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.257174,0.009525,-0.009253,0.249829,0,0);}
.meb_c01132{transform:matrix(0.257859,0.008518,-0.008254,0.249864,0,0);-ms-transform:matrix(0.257859,0.008518,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.257859,0.008518,-0.008254,0.249864,0,0);}
.m1f_c01132{transform:matrix(0.258853,0.004918,-0.004749,0.249955,0,0);-ms-transform:matrix(0.258853,0.004918,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.258853,0.004918,-0.004749,0.249955,0,0);}
.mff_c01132{transform:matrix(0.259374,0.008568,-0.008254,0.249864,0,0);-ms-transform:matrix(0.259374,0.008568,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.259374,0.008568,-0.008254,0.249864,0,0);}
.m2b_c01132{transform:matrix(0.259423,0.005448,-0.005249,0.249945,0,0);-ms-transform:matrix(0.259423,0.005448,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.259423,0.005448,-0.005249,0.249945,0,0);}
.m8d_c01132{transform:matrix(0.259496,0.007525,-0.007247,0.249895,0,0);-ms-transform:matrix(0.259496,0.007525,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.259496,0.007525,-0.007247,0.249895,0,0);}
.m42_c01132{transform:matrix(0.260037,0.004421,-0.004249,0.249964,0,0);-ms-transform:matrix(0.260037,0.004421,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.260037,0.004421,-0.004249,0.249964,0,0);}
.m4_c01132{transform:matrix(0.261668,0.005233,-0.004999,0.249950,0,0);-ms-transform:matrix(0.261668,0.005233,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.261668,0.005233,-0.004999,0.249950,0,0);}
.me2_c01132{transform:matrix(0.262449,0.008136,-0.007746,0.249880,0,0);-ms-transform:matrix(0.262449,0.008136,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.262449,0.008136,-0.007746,0.249880,0,0);}
.m4c_c01132{transform:matrix(0.262484,0.006300,-0.005998,0.249928,0,0);-ms-transform:matrix(0.262484,0.006300,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.262484,0.006300,-0.005998,0.249928,0,0);}
.m53_c01132{transform:matrix(0.262774,0.006307,-0.005998,0.249928,0,0);-ms-transform:matrix(0.262774,0.006307,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.262774,0.006307,-0.005998,0.249928,0,0);}
.mc3_c01132{transform:matrix(0.263579,0.007644,-0.007247,0.249895,0,0);-ms-transform:matrix(0.263579,0.007644,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.263579,0.007644,-0.007247,0.249895,0,0);}
.me9_c01132{transform:matrix(0.263791,0.008714,-0.008254,0.249864,0,0);-ms-transform:matrix(0.263791,0.008714,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.263791,0.008714,-0.008254,0.249864,0,0);}
.m21_c01132{transform:matrix(0.263947,0.005015,-0.004749,0.249955,0,0);-ms-transform:matrix(0.263947,0.005015,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.263947,0.005015,-0.004749,0.249955,0,0);}
.mbe_c01132{transform:matrix(0.264154,0.007660,-0.007247,0.249895,0,0);-ms-transform:matrix(0.264154,0.007660,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.264154,0.007660,-0.007247,0.249895,0,0);}
.mc7_c01132{transform:matrix(0.265338,0.007695,-0.007247,0.249895,0,0);-ms-transform:matrix(0.265338,0.007695,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.265338,0.007695,-0.007247,0.249895,0,0);}
.md4_c01132{transform:matrix(0.266958,0.007208,-0.006748,0.249909,0,0);-ms-transform:matrix(0.266958,0.007208,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.266958,0.007208,-0.006748,0.249909,0,0);}
.m52_c01132{transform:matrix(0.267013,0.006408,-0.005998,0.249928,0,0);-ms-transform:matrix(0.267013,0.006408,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.267013,0.006408,-0.005998,0.249928,0,0);}
.m38_c01132{transform:matrix(0.267072,0.005074,-0.004749,0.249955,0,0);-ms-transform:matrix(0.267072,0.005074,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.267072,0.005074,-0.004749,0.249955,0,0);}
.mce_c01132{transform:matrix(0.267428,0.007221,-0.006748,0.249909,0,0);-ms-transform:matrix(0.267428,0.007221,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.267428,0.007221,-0.006748,0.249909,0,0);}
.md1_c01132{transform:matrix(0.267787,0.007230,-0.006748,0.249909,0,0);-ms-transform:matrix(0.267787,0.007230,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.267787,0.007230,-0.006748,0.249909,0,0);}
.m9a_c01132{transform:matrix(0.268475,0.007517,-0.006997,0.249902,0,0);-ms-transform:matrix(0.268475,0.007517,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.268475,0.007517,-0.006997,0.249902,0,0);}
.m4d_c01132{transform:matrix(0.268578,0.006446,-0.005998,0.249928,0,0);-ms-transform:matrix(0.268578,0.006446,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.268578,0.006446,-0.005998,0.249928,0,0);}
.mf1_c01132{transform:matrix(0.269068,0.008888,-0.008254,0.249864,0,0);-ms-transform:matrix(0.269068,0.008888,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.269068,0.008888,-0.008254,0.249864,0,0);}
.m4a_c01132{transform:matrix(0.269098,0.006458,-0.005998,0.249928,0,0);-ms-transform:matrix(0.269098,0.006458,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.269098,0.006458,-0.005998,0.249928,0,0);}
.mc9_c01132{transform:matrix(0.269112,0.007804,-0.007247,0.249895,0,0);-ms-transform:matrix(0.269112,0.007804,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.269112,0.007804,-0.007247,0.249895,0,0);}
.m59_c01132{transform:matrix(0.269642,0.006471,-0.005998,0.249928,0,0);-ms-transform:matrix(0.269642,0.006471,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.269642,0.006471,-0.005998,0.249928,0,0);}
.mf8_c01132{transform:matrix(0.270018,0.008920,-0.008254,0.249864,0,0);-ms-transform:matrix(0.270018,0.008920,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.270018,0.008920,-0.008254,0.249864,0,0);}
.m33_c01132{transform:matrix(0.270255,0.005675,-0.005249,0.249945,0,0);-ms-transform:matrix(0.270255,0.005675,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.270255,0.005675,-0.005249,0.249945,0,0);}
.m92_c01132{transform:matrix(0.270944,0.007586,-0.006997,0.249902,0,0);-ms-transform:matrix(0.270944,0.007586,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.270944,0.007586,-0.006997,0.249902,0,0);}
.mfb_c01132{transform:matrix(0.271252,0.008960,-0.008254,0.249864,0,0);-ms-transform:matrix(0.271252,0.008960,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.271252,0.008960,-0.008254,0.249864,0,0);}
.mf7_c01132{transform:matrix(0.271612,0.008972,-0.008254,0.249864,0,0);-ms-transform:matrix(0.271612,0.008972,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.271612,0.008972,-0.008254,0.249864,0,0);}
.me3_c01132{transform:matrix(0.271719,0.008423,-0.007746,0.249880,0,0);-ms-transform:matrix(0.271719,0.008423,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.271719,0.008423,-0.007746,0.249880,0,0);}
.md6_c01132{transform:matrix(0.272051,0.007345,-0.006748,0.249909,0,0);-ms-transform:matrix(0.272051,0.007345,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.272051,0.007345,-0.006748,0.249909,0,0);}
.m2f_c01132{transform:matrix(0.272630,0.005725,-0.005249,0.249945,0,0);-ms-transform:matrix(0.272630,0.005725,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.272630,0.005725,-0.005249,0.249945,0,0);}
.mee_c01132{transform:matrix(0.273346,0.009029,-0.008254,0.249864,0,0);-ms-transform:matrix(0.273346,0.009029,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.273346,0.009029,-0.008254,0.249864,0,0);}
.m45_c01132{transform:matrix(0.273390,0.005468,-0.004999,0.249950,0,0);-ms-transform:matrix(0.273390,0.005468,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.273390,0.005468,-0.004999,0.249950,0,0);}
.mfe_c01132{transform:matrix(0.274205,0.009058,-0.008254,0.249864,0,0);-ms-transform:matrix(0.274205,0.009058,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.274205,0.009058,-0.008254,0.249864,0,0);}
.m46_c01132{transform:matrix(0.275240,0.005505,-0.004999,0.249950,0,0);-ms-transform:matrix(0.275240,0.005505,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.275240,0.005505,-0.004999,0.249950,0,0);}
.m49_c01132{transform:matrix(0.275255,0.005505,-0.004999,0.249950,0,0);-ms-transform:matrix(0.275255,0.005505,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.275255,0.005505,-0.004999,0.249950,0,0);}
.me0_c01132{transform:matrix(0.275453,0.008539,-0.007746,0.249880,0,0);-ms-transform:matrix(0.275453,0.008539,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.275453,0.008539,-0.007746,0.249880,0,0);}
.m31_c01132{transform:matrix(0.275534,0.005786,-0.005249,0.249945,0,0);-ms-transform:matrix(0.275534,0.005786,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.275534,0.005786,-0.005249,0.249945,0,0);}
.m51_c01132{transform:matrix(0.275731,0.006618,-0.005998,0.249928,0,0);-ms-transform:matrix(0.275731,0.006618,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.275731,0.006618,-0.005998,0.249928,0,0);}
.m25_c01132{transform:matrix(0.275760,0.005239,-0.004749,0.249955,0,0);-ms-transform:matrix(0.275760,0.005239,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.275760,0.005239,-0.004749,0.249955,0,0);}
.mfd_c01132{transform:matrix(0.275785,0.009110,-0.008254,0.249864,0,0);-ms-transform:matrix(0.275785,0.009110,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.275785,0.009110,-0.008254,0.249864,0,0);}
.mc1_c01132{transform:matrix(0.275819,0.007999,-0.007247,0.249895,0,0);-ms-transform:matrix(0.275819,0.007999,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.275819,0.007999,-0.007247,0.249895,0,0);}
.m2c_c01132{transform:matrix(0.275819,0.005792,-0.005249,0.249945,0,0);-ms-transform:matrix(0.275819,0.005792,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.275819,0.005792,-0.005249,0.249945,0,0);}
.m8c_c01132{transform:matrix(0.277373,0.008044,-0.007247,0.249895,0,0);-ms-transform:matrix(0.277373,0.008044,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.277373,0.008044,-0.007247,0.249895,0,0);}
.m79_c01132{transform:matrix(0.278123,0.006953,-0.006248,0.249922,0,0);-ms-transform:matrix(0.278123,0.006953,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.278123,0.006953,-0.006248,0.249922,0,0);}
.mc0_c01132{transform:matrix(0.278293,0.008070,-0.007247,0.249895,0,0);-ms-transform:matrix(0.278293,0.008070,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.278293,0.008070,-0.007247,0.249895,0,0);}
.me5_c01132{transform:matrix(0.278661,0.008638,-0.007746,0.249880,0,0);-ms-transform:matrix(0.278661,0.008638,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.278661,0.008638,-0.007746,0.249880,0,0);}
.m22_c01132{transform:matrix(0.278765,0.005297,-0.004749,0.249955,0,0);-ms-transform:matrix(0.278765,0.005297,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.278765,0.005297,-0.004749,0.249955,0,0);}
.mc5_c01132{transform:matrix(0.279527,0.008106,-0.007247,0.249895,0,0);-ms-transform:matrix(0.279527,0.008106,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.279527,0.008106,-0.007247,0.249895,0,0);}
.md8_c01132{transform:matrix(0.279758,0.007553,-0.006748,0.249909,0,0);-ms-transform:matrix(0.279758,0.007553,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.279758,0.007553,-0.006748,0.249909,0,0);}
.mdd_c01132{transform:matrix(0.280243,0.007567,-0.006748,0.249909,0,0);-ms-transform:matrix(0.280243,0.007567,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.280243,0.007567,-0.006748,0.249909,0,0);}
.mec_c01132{transform:matrix(0.280847,0.009277,-0.008254,0.249864,0,0);-ms-transform:matrix(0.280847,0.009277,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.280847,0.009277,-0.008254,0.249864,0,0);}
.me6_c01132{transform:matrix(0.281645,0.008731,-0.007746,0.249880,0,0);-ms-transform:matrix(0.281645,0.008731,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.281645,0.008731,-0.007746,0.249880,0,0);}
.m39_c01132{transform:matrix(0.281744,0.005353,-0.004749,0.249955,0,0);-ms-transform:matrix(0.281744,0.005353,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.281744,0.005353,-0.004749,0.249955,0,0);}
.me1_c01132{transform:matrix(0.281815,0.008736,-0.007746,0.249880,0,0);-ms-transform:matrix(0.281815,0.008736,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.281815,0.008736,-0.007746,0.249880,0,0);}
.mb7_c01132{transform:matrix(0.282739,0.007917,-0.006997,0.249902,0,0);-ms-transform:matrix(0.282739,0.007917,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.282739,0.007917,-0.006997,0.249902,0,0);}
.mcb_c01132{transform:matrix(0.282991,0.008207,-0.007247,0.249895,0,0);-ms-transform:matrix(0.282991,0.008207,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.282991,0.008207,-0.007247,0.249895,0,0);}
.m74_c01132{transform:matrix(0.283147,0.007079,-0.006248,0.249922,0,0);-ms-transform:matrix(0.283147,0.007079,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.283147,0.007079,-0.006248,0.249922,0,0);}
.m75_c01132{transform:matrix(0.283416,0.007085,-0.006248,0.249922,0,0);-ms-transform:matrix(0.283416,0.007085,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.283416,0.007085,-0.006248,0.249922,0,0);}
.m56_c01132{transform:matrix(0.284468,0.006827,-0.005998,0.249928,0,0);-ms-transform:matrix(0.284468,0.006827,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.284468,0.006827,-0.005998,0.249928,0,0);}
.m4e_c01132{transform:matrix(0.284993,0.006840,-0.005998,0.249928,0,0);-ms-transform:matrix(0.284993,0.006840,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.284993,0.006840,-0.005998,0.249928,0,0);}
.m9b_c01132{transform:matrix(0.286053,0.008009,-0.006997,0.249902,0,0);-ms-transform:matrix(0.286053,0.008009,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.286053,0.008009,-0.006997,0.249902,0,0);}
.m1e_c01132{transform:matrix(0.286598,0.005445,-0.004749,0.249955,0,0);-ms-transform:matrix(0.286598,0.005445,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.286598,0.005445,-0.004749,0.249955,0,0);}
.m1d_c01132{transform:matrix(0.286978,0.005453,-0.004749,0.249955,0,0);-ms-transform:matrix(0.286978,0.005453,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.286978,0.005453,-0.004749,0.249955,0,0);}
.m77_c01132{transform:matrix(0.287620,0.007191,-0.006248,0.249922,0,0);-ms-transform:matrix(0.287620,0.007191,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.287620,0.007191,-0.006248,0.249922,0,0);}
.m48_c01132{transform:matrix(0.288612,0.005772,-0.004999,0.249950,0,0);-ms-transform:matrix(0.288612,0.005772,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.288612,0.005772,-0.004999,0.249950,0,0);}
.m96_c01132{transform:matrix(0.289751,0.008113,-0.006997,0.249902,0,0);-ms-transform:matrix(0.289751,0.008113,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.289751,0.008113,-0.006997,0.249902,0,0);}
.m97_c01132{transform:matrix(0.290121,0.008123,-0.006997,0.249902,0,0);-ms-transform:matrix(0.290121,0.008123,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.290121,0.008123,-0.006997,0.249902,0,0);}
.m6_c01132{transform:matrix(0.290897,0.005818,-0.004999,0.249950,0,0);-ms-transform:matrix(0.290897,0.005818,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.290897,0.005818,-0.004999,0.249950,0,0);}
.m1_c01132{transform:matrix(0.291202,0.005824,-0.004999,0.249950,0,0);-ms-transform:matrix(0.291202,0.005824,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.291202,0.005824,-0.004999,0.249950,0,0);}
.m7e_c01132{transform:matrix(0.291324,0.007283,-0.006248,0.249922,0,0);-ms-transform:matrix(0.291324,0.007283,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.291324,0.007283,-0.006248,0.249922,0,0);}
.m24_c01132{transform:matrix(0.292042,0.005549,-0.004749,0.249955,0,0);-ms-transform:matrix(0.292042,0.005549,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.292042,0.005549,-0.004749,0.249955,0,0);}
.m72_c01132{transform:matrix(0.292409,0.007310,-0.006248,0.249922,0,0);-ms-transform:matrix(0.292409,0.007310,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.292409,0.007310,-0.006248,0.249922,0,0);}
.m73_c01132{transform:matrix(0.293363,0.007334,-0.006248,0.249922,0,0);-ms-transform:matrix(0.293363,0.007334,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.293363,0.007334,-0.006248,0.249922,0,0);}
.mb6_c01132{transform:matrix(0.294265,0.008239,-0.006997,0.249902,0,0);-ms-transform:matrix(0.294265,0.008239,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.294265,0.008239,-0.006997,0.249902,0,0);}
.m3b_c01132{transform:matrix(0.295122,0.005607,-0.004749,0.249955,0,0);-ms-transform:matrix(0.295122,0.005607,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.295122,0.005607,-0.004749,0.249955,0,0);}
.m7d_c01132{transform:matrix(0.295283,0.007382,-0.006248,0.249922,0,0);-ms-transform:matrix(0.295283,0.007382,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.295283,0.007382,-0.006248,0.249922,0,0);}
.m7f_c01132{transform:matrix(0.295348,0.007384,-0.006248,0.249922,0,0);-ms-transform:matrix(0.295348,0.007384,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.295348,0.007384,-0.006248,0.249922,0,0);}
.m8_c01132{transform:matrix(0.297156,0.005943,-0.004999,0.249950,0,0);-ms-transform:matrix(0.297156,0.005943,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.297156,0.005943,-0.004999,0.249950,0,0);}
.m94_c01132{transform:matrix(0.297688,0.008335,-0.006997,0.249902,0,0);-ms-transform:matrix(0.297688,0.008335,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.297688,0.008335,-0.006997,0.249902,0,0);}
.m78_c01132{transform:matrix(0.298217,0.007455,-0.006248,0.249922,0,0);-ms-transform:matrix(0.298217,0.007455,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.298217,0.007455,-0.006248,0.249922,0,0);}
.m5_c01132{transform:matrix(0.299770,0.005995,-0.004999,0.249950,0,0);-ms-transform:matrix(0.299770,0.005995,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.299770,0.005995,-0.004999,0.249950,0,0);}
.m36_c01132{transform:matrix(0.299831,0.005697,-0.004749,0.249955,0,0);-ms-transform:matrix(0.299831,0.005697,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.299831,0.005697,-0.004749,0.249955,0,0);}
.me8_c01132{transform:matrix(0.299911,0.007498,-0.006248,0.249922,0,0);-ms-transform:matrix(0.299911,0.007498,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.299911,0.007498,-0.006248,0.249922,0,0);}
.m8e_c01132{transform:matrix(0.300139,0.008704,-0.007247,0.249895,0,0);-ms-transform:matrix(0.300139,0.008704,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.300139,0.008704,-0.007247,0.249895,0,0);}
.mb9_c01132{transform:matrix(0.300302,0.008408,-0.006997,0.249902,0,0);-ms-transform:matrix(0.300302,0.008408,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.300302,0.008408,-0.006997,0.249902,0,0);}
.m76_c01132{transform:matrix(0.303300,0.007583,-0.006248,0.249922,0,0);-ms-transform:matrix(0.303300,0.007583,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.303300,0.007583,-0.006248,0.249922,0,0);}
.m63_c01132{transform:matrix(0.304327,0.007304,-0.005998,0.249928,0,0);-ms-transform:matrix(0.304327,0.007304,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.304327,0.007304,-0.005998,0.249928,0,0);}
.m28_c01132{transform:matrix(0.307305,0.005839,-0.004749,0.249955,0,0);-ms-transform:matrix(0.307305,0.005839,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.307305,0.005839,-0.004749,0.249955,0,0);}
.m2_c01132{transform:matrix(0.310478,0.006210,-0.004999,0.249950,0,0);-ms-transform:matrix(0.310478,0.006210,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.310478,0.006210,-0.004999,0.249950,0,0);}
.m7a_c01132{transform:matrix(0.313662,0.007842,-0.006248,0.249922,0,0);-ms-transform:matrix(0.313662,0.007842,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.313662,0.007842,-0.006248,0.249922,0,0);}
.m101_c01132{transform:matrix(0.316397,0.010452,-0.008254,0.249864,0,0);-ms-transform:matrix(0.316397,0.010452,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.316397,0.010452,-0.008254,0.249864,0,0);}
.m98_c01132{transform:matrix(0.317281,0.008884,-0.006997,0.249902,0,0);-ms-transform:matrix(0.317281,0.008884,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.317281,0.008884,-0.006997,0.249902,0,0);}
.m35_c01132{transform:matrix(0.318620,0.006691,-0.005249,0.249945,0,0);-ms-transform:matrix(0.318620,0.006691,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.318620,0.006691,-0.005249,0.249945,0,0);}
.m6a_c01132{transform:matrix(0.328609,0.008544,-0.006498,0.249916,0,0);-ms-transform:matrix(0.328609,0.008544,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.328609,0.008544,-0.006498,0.249916,0,0);}
.m106_c01132{transform:matrix(0.353333,0.014501,-0.010252,0.249790,0,0);-ms-transform:matrix(0.353333,0.014501,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.353333,0.014501,-0.010252,0.249790,0,0);}
.ma_c01132{transform:matrix(0.374440,0.007489,-0.004999,0.249950,0,0);-ms-transform:matrix(0.374440,0.007489,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.374440,0.007489,-0.004999,0.249950,0,0);}
.m68_c01132{transform:matrix(0.380766,0.009900,-0.006498,0.249916,0,0);-ms-transform:matrix(0.380766,0.009900,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.380766,0.009900,-0.006498,0.249916,0,0);}
.m6c_c01132{transform:matrix(0.403149,0.010482,-0.006498,0.249916,0,0);-ms-transform:matrix(0.403149,0.010482,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.403149,0.010482,-0.006498,0.249916,0,0);}
.m66_c01132{transform:matrix(0.431211,0.010349,-0.005998,0.249928,0,0);-ms-transform:matrix(0.431211,0.010349,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.431211,0.010349,-0.005998,0.249928,0,0);}
.mc_c01132{transform:matrix(0.451765,0.009035,-0.004999,0.249950,0,0);-ms-transform:matrix(0.451765,0.009035,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.451765,0.009035,-0.004999,0.249950,0,0);}
.m0_c01132{transform:matrix(0.470870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470870,0.000000,0.000000,0.250000,0,0);}
.m67_c01132{transform:matrix(0.505449,0.012131,-0.005998,0.249928,0,0);-ms-transform:matrix(0.505449,0.012131,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.505449,0.012131,-0.005998,0.249928,0,0);}
.m71_c01132{transform:matrix(0.567083,0.014744,-0.006498,0.249916,0,0);-ms-transform:matrix(0.567083,0.014744,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.567083,0.014744,-0.006498,0.249916,0,0);}
.m70_c01132{transform:matrix(0.567128,0.014745,-0.006498,0.249916,0,0);-ms-transform:matrix(0.567128,0.014745,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.567128,0.014745,-0.006498,0.249916,0,0);}
.maa_c01132{transform:matrix(0.577789,0.021400,-0.009253,0.249829,0,0);-ms-transform:matrix(0.577789,0.021400,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.577789,0.021400,-0.009253,0.249829,0,0);}
.m9c_c01132{transform:matrix(0.582155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582155,0.000000,0.000000,0.250000,0,0);}
.m44_c01132{transform:matrix(0.630580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630580,0.000000,0.000000,0.250000,0,0);}
.m6f_c01132{transform:matrix(0.644222,0.016750,-0.006498,0.249916,0,0);-ms-transform:matrix(0.644222,0.016750,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.644222,0.016750,-0.006498,0.249916,0,0);}
.mbc_c01132{transform:matrix(0.737276,0.020644,-0.006997,0.249902,0,0);-ms-transform:matrix(0.737276,0.020644,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.737276,0.020644,-0.006997,0.249902,0,0);}
.m65_c01132{transform:matrix(0.758172,0.018196,-0.005998,0.249928,0,0);-ms-transform:matrix(0.758172,0.018196,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.758172,0.018196,-0.005998,0.249928,0,0);}
.mdb_c01132{transform:matrix(0.812754,0.021944,-0.006748,0.249909,0,0);-ms-transform:matrix(0.812754,0.021944,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.812754,0.021944,-0.006748,0.249909,0,0);}
.m9_c01132{transform:matrix(0.862028,0.017241,-0.004999,0.249950,0,0);-ms-transform:matrix(0.862028,0.017241,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.862028,0.017241,-0.004999,0.249950,0,0);}
.md_c01132{transform:matrix(0.926305,0.018526,-0.004999,0.249950,0,0);-ms-transform:matrix(0.926305,0.018526,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.926305,0.018526,-0.004999,0.249950,0,0);}
.mb_c01132{transform:matrix(1.143931,0.022879,-0.004999,0.249950,0,0);-ms-transform:matrix(1.143931,0.022879,-0.004999,0.249950,0,0);-webkit-transform:matrix(1.143931,0.022879,-0.004999,0.249950,0,0);}
.mda_c01132{transform:matrix(1.174137,0.031702,-0.006748,0.249909,0,0);-ms-transform:matrix(1.174137,0.031702,-0.006748,0.249909,0,0);-webkit-transform:matrix(1.174137,0.031702,-0.006748,0.249909,0,0);}
.mbd_c01132{transform:matrix(1.199530,0.033587,-0.006997,0.249902,0,0);-ms-transform:matrix(1.199530,0.033587,-0.006997,0.249902,0,0);-webkit-transform:matrix(1.199530,0.033587,-0.006997,0.249902,0,0);}
.mbb_c01132{transform:matrix(1.593366,0.044614,-0.006997,0.249902,0,0);-ms-transform:matrix(1.593366,0.044614,-0.006997,0.249902,0,0);-webkit-transform:matrix(1.593366,0.044614,-0.006997,0.249902,0,0);}
.m90_c01132{transform:matrix(2.841136,0.082393,-0.007247,0.249895,0,0);-ms-transform:matrix(2.841136,0.082393,-0.007247,0.249895,0,0);-webkit-transform:matrix(2.841136,0.082393,-0.007247,0.249895,0,0);}
.m64_c01132{transform:matrix(3.280750,0.078738,-0.005998,0.249928,0,0);-ms-transform:matrix(3.280750,0.078738,-0.005998,0.249928,0,0);-webkit-transform:matrix(3.280750,0.078738,-0.005998,0.249928,0,0);}
.mba_c01132{transform:matrix(4.082370,0.114306,-0.006997,0.249902,0,0);-ms-transform:matrix(4.082370,0.114306,-0.006997,0.249902,0,0);-webkit-transform:matrix(4.082370,0.114306,-0.006997,0.249902,0,0);}
.mf4_c01132{transform:matrix(4.487922,0.148250,-0.008254,0.249864,0,0);-ms-transform:matrix(4.487922,0.148250,-0.008254,0.249864,0,0);-webkit-transform:matrix(4.487922,0.148250,-0.008254,0.249864,0,0);}
.m8f_c01132{transform:matrix(6.921315,0.200718,-0.007247,0.249895,0,0);-ms-transform:matrix(6.921315,0.200718,-0.007247,0.249895,0,0);-webkit-transform:matrix(6.921315,0.200718,-0.007247,0.249895,0,0);}
.m6e_c01132{transform:matrix(10.599423,0.275585,-0.006498,0.249916,0,0);-ms-transform:matrix(10.599423,0.275585,-0.006498,0.249916,0,0);-webkit-transform:matrix(10.599423,0.275585,-0.006498,0.249916,0,0);}
.md9_c01132{transform:matrix(21.683673,0.585459,-0.006748,0.249909,0,0);-ms-transform:matrix(21.683673,0.585459,-0.006748,0.249909,0,0);-webkit-transform:matrix(21.683673,0.585459,-0.006748,0.249909,0,0);}
.v0_c01132{vertical-align:0.000000px;}
.ls0_c01132{letter-spacing:0.000000px;}
.sc__c01132{text-shadow:none;}
.sc0_c01132{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__c01132{-webkit-text-stroke:0px transparent;}
.sc0_c01132{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01132{word-spacing:0.000000px;}
.fc0_c01132{color:transparent;}
.fs12_c01132{font-size:12.005045px;}
.fs1e_c01132{font-size:17.991808px;}
.fs8_c01132{font-size:18.000000px;}
.fse_c01132{font-size:18.006083px;}
.fs1b_c01132{font-size:18.006560px;}
.fs18_c01132{font-size:18.007055px;}
.fs14_c01132{font-size:24.000000px;}
.fsc_c01132{font-size:36.010367px;}
.fs0_c01132{font-size:42.000000px;}
.fsd_c01132{font-size:48.016221px;}
.fs4_c01132{font-size:66.011912px;}
.fs1_c01132{font-size:66.013199px;}
.fsf_c01132{font-size:66.020622px;}
.fs13_c01132{font-size:66.025867px;}
.fs11_c01132{font-size:66.027747px;}
.fs1d_c01132{font-size:71.967233px;}
.fs9_c01132{font-size:72.014399px;}
.fs6_c01132{font-size:72.015874px;}
.fsa_c01132{font-size:72.020733px;}
.fs1a_c01132{font-size:72.026239px;}
.fs19_c01132{font-size:72.030270px;}
.fs1c_c01132{font-size:72.034588px;}
.fs15_c01132{font-size:77.975426px;}
.fs7_c01132{font-size:78.011270px;}
.fsb_c01132{font-size:78.022461px;}
.fs1f_c01132{font-size:83.986643px;}
.fs10_c01132{font-size:84.030612px;}
.fs5_c01132{font-size:96.000000px;}
.fs3_c01132{font-size:96.017326px;}
.fs16_c01132{font-size:101.967865px;}
.fs2_c01132{font-size:108.000000px;}
.fs17_c01132{font-size:125.951229px;}
.y0_c01132{bottom:0.000000px;}
.yaa_c01132{bottom:68.198245px;}
.ya9_c01132{bottom:69.136417px;}
.ya8_c01132{bottom:71.033297px;}
.ya7_c01132{bottom:90.855954px;}
.ya6_c01132{bottom:93.791349px;}
.ya5_c01132{bottom:95.039266px;}
.ya4_c01132{bottom:97.145325px;}
.ya3_c01132{bottom:101.233954px;}
.ya2_c01132{bottom:102.463335px;}
.ya1_c01132{bottom:106.571612px;}
.ya0_c01132{bottom:108.170788px;}
.y9f_c01132{bottom:110.598525px;}
.y9e_c01132{bottom:111.848663px;}
.y9d_c01132{bottom:113.441901px;}
.y9c_c01132{bottom:116.276397px;}
.y9b_c01132{bottom:117.450000px;}
.y10b_c01132{bottom:126.954048px;}
.y10a_c01132{bottom:131.555109px;}
.y109_c01132{bottom:133.351032px;}
.y108_c01132{bottom:137.410339px;}
.y107_c01132{bottom:141.047326px;}
.y106_c01132{bottom:142.043503px;}
.y105_c01132{bottom:145.190828px;}
.y104_c01132{bottom:146.514061px;}
.y103_c01132{bottom:147.864356px;}
.y102_c01132{bottom:152.295000px;}
.y101_c01132{bottom:161.329212px;}
.y100_c01132{bottom:162.387473px;}
.yff_c01132{bottom:164.255404px;}
.yfe_c01132{bottom:167.198526px;}
.yfd_c01132{bottom:168.283467px;}
.yfc_c01132{bottom:171.602343px;}
.yfb_c01132{bottom:172.651099px;}
.yfa_c01132{bottom:173.768958px;}
.yf9_c01132{bottom:177.039225px;}
.yf8_c01132{bottom:178.145797px;}
.yf7_c01132{bottom:179.220393px;}
.yf6_c01132{bottom:182.803500px;}
.yf5_c01132{bottom:213.719935px;}
.yf4_c01132{bottom:214.692251px;}
.yf3_c01132{bottom:218.185735px;}
.yf1_c01132{bottom:234.446882px;}
.yf0_c01132{bottom:235.578699px;}
.yef_c01132{bottom:238.120177px;}
.yee_c01132{bottom:239.601663px;}
.yed_c01132{bottom:240.715710px;}
.yf2_c01132{bottom:243.316404px;}
.yec_c01132{bottom:244.326983px;}
.yeb_c01132{bottom:245.841435px;}
.yea_c01132{bottom:249.148777px;}
.ye9_c01132{bottom:251.634766px;}
.ye8_c01132{bottom:252.378702px;}
.ye7_c01132{bottom:254.893500px;}
.ye6_c01132{bottom:288.921412px;}
.ye5_c01132{bottom:289.717500px;}
.ye4_c01132{bottom:307.960681px;}
.ye3_c01132{bottom:311.408842px;}
.ye2_c01132{bottom:312.818723px;}
.ye1_c01132{bottom:315.213984px;}
.ye0_c01132{bottom:317.290581px;}
.ydf_c01132{bottom:321.058662px;}
.yde_c01132{bottom:324.482411px;}
.ydd_c01132{bottom:325.519779px;}
.ydc_c01132{bottom:327.519000px;}
.ydb_c01132{bottom:359.740251px;}
.yda_c01132{bottom:360.716316px;}
.yd9_c01132{bottom:370.892221px;}
.yd8_c01132{bottom:372.145483px;}
.yd6_c01132{bottom:376.899462px;}
.yd5_c01132{bottom:377.786534px;}
.yd4_c01132{bottom:379.633172px;}
.yd3_c01132{bottom:380.807226px;}
.yd2_c01132{bottom:383.489176px;}
.yd1_c01132{bottom:384.709684px;}
.yd0_c01132{bottom:385.589669px;}
.yd7_c01132{bottom:386.641908px;}
.ycf_c01132{bottom:387.954504px;}
.yce_c01132{bottom:389.179953px;}
.ycd_c01132{bottom:390.076501px;}
.ycc_c01132{bottom:392.176224px;}
.ycb_c01132{bottom:394.209000px;}
.yca_c01132{bottom:413.468355px;}
.yc9_c01132{bottom:425.859462px;}
.yc8_c01132{bottom:426.476990px;}
.yc7_c01132{bottom:429.142050px;}
.yc6_c01132{bottom:430.371645px;}
.yc5_c01132{bottom:447.089860px;}
.yc4_c01132{bottom:448.391381px;}
.yc3_c01132{bottom:451.603725px;}
.yc2_c01132{bottom:452.581388px;}
.yc1_c01132{bottom:454.495866px;}
.yc0_c01132{bottom:455.819049px;}
.ybf_c01132{bottom:458.724588px;}
.ybe_c01132{bottom:461.928885px;}
.ybd_c01132{bottom:463.205306px;}
.ybc_c01132{bottom:466.030500px;}
.y9a_c01132{bottom:468.178500px;}
.ybb_c01132{bottom:489.507756px;}
.yba_c01132{bottom:490.490778px;}
.yb9_c01132{bottom:491.753616px;}
.yb8_c01132{bottom:496.020042px;}
.yb7_c01132{bottom:496.191720px;}
.yb6_c01132{bottom:497.107194px;}
.yb5_c01132{bottom:498.967920px;}
.yb4_c01132{bottom:501.130500px;}
.yb3_c01132{bottom:517.065240px;}
.yb2_c01132{bottom:520.536435px;}
.yb1_c01132{bottom:521.747610px;}
.yb0_c01132{bottom:523.156657px;}
.yaf_c01132{bottom:526.314480px;}
.yae_c01132{bottom:531.740407px;}
.yad_c01132{bottom:536.050290px;}
.yac_c01132{bottom:537.599827px;}
.yab_c01132{bottom:540.282000px;}
.y99_c01132{bottom:554.988870px;}
.y98_c01132{bottom:555.980322px;}
.y97_c01132{bottom:556.909614px;}
.y96_c01132{bottom:561.901146px;}
.y95_c01132{bottom:563.740620px;}
.y94_c01132{bottom:566.183466px;}
.y93_c01132{bottom:567.453882px;}
.y92_c01132{bottom:569.654682px;}
.y91_c01132{bottom:570.569316px;}
.y90_c01132{bottom:572.095428px;}
.y8f_c01132{bottom:572.944500px;}
.y8e_c01132{bottom:599.639175px;}
.y8d_c01132{bottom:604.022148px;}
.y8c_c01132{bottom:605.176498px;}
.y8b_c01132{bottom:606.186829px;}
.y8a_c01132{bottom:608.050500px;}
.y89_c01132{bottom:626.595795px;}
.y88_c01132{bottom:627.754864px;}
.y87_c01132{bottom:629.579066px;}
.y86_c01132{bottom:630.198675px;}
.y85_c01132{bottom:632.279484px;}
.y84_c01132{bottom:633.234919px;}
.y83_c01132{bottom:636.443127px;}
.y82_c01132{bottom:638.602142px;}
.y81_c01132{bottom:640.942556px;}
.y80_c01132{bottom:641.853279px;}
.y7f_c01132{bottom:643.663508px;}
.y7e_c01132{bottom:644.764500px;}
.y7d_c01132{bottom:671.361825px;}
.y7c_c01132{bottom:673.216238px;}
.y7b_c01132{bottom:676.114237px;}
.y7a_c01132{bottom:676.916850px;}
.y79_c01132{bottom:677.695875px;}
.y78_c01132{bottom:698.944988px;}
.y77_c01132{bottom:699.504712px;}
.y76_c01132{bottom:701.464800px;}
.y75_c01132{bottom:702.863475px;}
.y74_c01132{bottom:705.347700px;}
.y73_c01132{bottom:707.258700px;}
.y72_c01132{bottom:709.230450px;}
.y71_c01132{bottom:711.458250px;}
.y70_c01132{bottom:713.347500px;}
.y6f_c01132{bottom:737.175114px;}
.y6e_c01132{bottom:738.031281px;}
.y6d_c01132{bottom:738.410244px;}
.y6b_c01132{bottom:742.057176px;}
.y6c_c01132{bottom:743.581488px;}
.y6a_c01132{bottom:744.401154px;}
.y69_c01132{bottom:745.511835px;}
.y68_c01132{bottom:746.420925px;}
.y67_c01132{bottom:746.951364px;}
.y66_c01132{bottom:748.719000px;}
.y65_c01132{bottom:763.940364px;}
.y64_c01132{bottom:764.419800px;}
.y63_c01132{bottom:765.175344px;}
.y60_c01132{bottom:769.464732px;}
.y5f_c01132{bottom:770.275128px;}
.y5e_c01132{bottom:771.079188px;}
.y62_c01132{bottom:771.207516px;}
.y5d_c01132{bottom:774.009012px;}
.y61_c01132{bottom:774.117180px;}
.y5c_c01132{bottom:775.331796px;}
.y5b_c01132{bottom:777.957924px;}
.y5a_c01132{bottom:781.191300px;}
.y59_c01132{bottom:781.988412px;}
.y58_c01132{bottom:784.087500px;}
.y57_c01132{bottom:809.738172px;}
.y56_c01132{bottom:810.720192px;}
.y55_c01132{bottom:811.502388px;}
.y54_c01132{bottom:815.806860px;}
.y53_c01132{bottom:816.588624px;}
.y52_c01132{bottom:817.098096px;}
.y51_c01132{bottom:818.905884px;}
.y50_c01132{bottom:839.921700px;}
.y4f_c01132{bottom:841.808388px;}
.y4e_c01132{bottom:843.144132px;}
.y4d_c01132{bottom:844.213656px;}
.y4c_c01132{bottom:847.636140px;}
.y4b_c01132{bottom:850.079172px;}
.y4a_c01132{bottom:851.926692px;}
.y49_c01132{bottom:853.495176px;}
.y48_c01132{bottom:855.367500px;}
.y47_c01132{bottom:882.590160px;}
.y46_c01132{bottom:885.927990px;}
.y45_c01132{bottom:886.813740px;}
.y44_c01132{bottom:889.238610px;}
.y43_c01132{bottom:891.004500px;}
.y42_c01132{bottom:894.237000px;}
.y41_c01132{bottom:915.386787px;}
.y40_c01132{bottom:917.484978px;}
.y3f_c01132{bottom:918.049625px;}
.y3e_c01132{bottom:919.716177px;}
.y3d_c01132{bottom:920.496528px;}
.y3c_c01132{bottom:922.374272px;}
.y3b_c01132{bottom:924.246966px;}
.y3a_c01132{bottom:925.564500px;}
.y39_c01132{bottom:954.841464px;}
.y38_c01132{bottom:955.467695px;}
.y37_c01132{bottom:956.724801px;}
.y36_c01132{bottom:957.355962px;}
.y35_c01132{bottom:957.975495px;}
.y34_c01132{bottom:959.854500px;}
.y33_c01132{bottom:981.662910px;}
.y32_c01132{bottom:982.388859px;}
.y31_c01132{bottom:984.033978px;}
.y30_c01132{bottom:984.964142px;}
.y2f_c01132{bottom:987.062546px;}
.y2e_c01132{bottom:988.009814px;}
.y2d_c01132{bottom:989.858297px;}
.y2c_c01132{bottom:990.567834px;}
.y2b_c01132{bottom:991.259291px;}
.y2a_c01132{bottom:993.340307px;}
.y29_c01132{bottom:996.306000px;}
.y10_c01132{bottom:1002.375000px;}
.y28_c01132{bottom:1024.392000px;}
.y27_c01132{bottom:1054.114171px;}
.y26_c01132{bottom:1054.931924px;}
.y25_c01132{bottom:1055.643003px;}
.y24_c01132{bottom:1056.760498px;}
.y23_c01132{bottom:1058.331841px;}
.y22_c01132{bottom:1058.980527px;}
.y21_c01132{bottom:1060.313694px;}
.y20_c01132{bottom:1060.972953px;}
.y1f_c01132{bottom:1061.640933px;}
.y1e_c01132{bottom:1062.505490px;}
.y1d_c01132{bottom:1064.057139px;}
.y1c_c01132{bottom:1065.607249px;}
.y1b_c01132{bottom:1066.226334px;}
.y1a_c01132{bottom:1091.882383px;}
.y19_c01132{bottom:1093.154880px;}
.y18_c01132{bottom:1093.796216px;}
.y17_c01132{bottom:1095.699787px;}
.y16_c01132{bottom:1097.989392px;}
.y15_c01132{bottom:1098.614368px;}
.y14_c01132{bottom:1099.444403px;}
.y13_c01132{bottom:1101.523136px;}
.y12_c01132{bottom:1102.141500px;}
.yf_c01132{bottom:1107.000000px;}
.ye_c01132{bottom:1111.471890px;}
.yd_c01132{bottom:1112.467020px;}
.yc_c01132{bottom:1117.567200px;}
.yb_c01132{bottom:1120.528080px;}
.ya_c01132{bottom:1121.851620px;}
.y9_c01132{bottom:1126.751490px;}
.y8_c01132{bottom:1127.404110px;}
.y7_c01132{bottom:1128.949080px;}
.y6_c01132{bottom:1131.163290px;}
.y5_c01132{bottom:1131.843870px;}
.y4_c01132{bottom:1132.506630px;}
.y1_c01132{bottom:1135.891500px;}
.y3_c01132{bottom:1136.061930px;}
.y2_c01132{bottom:1137.784500px;}
.y11_c01132{bottom:1185.714000px;}
.h14_c01132{height:12.005045px;}
.h20_c01132{height:17.991808px;}
.ha_c01132{height:18.000000px;}
.h10_c01132{height:18.006083px;}
.h1d_c01132{height:18.006560px;}
.h1a_c01132{height:18.007055px;}
.h16_c01132{height:24.000000px;}
.he_c01132{height:36.010367px;}
.h2_c01132{height:42.000000px;}
.hf_c01132{height:48.016221px;}
.h6_c01132{height:66.011912px;}
.h3_c01132{height:66.013199px;}
.h11_c01132{height:66.020622px;}
.h15_c01132{height:66.025867px;}
.h13_c01132{height:66.027747px;}
.h1f_c01132{height:71.967233px;}
.hb_c01132{height:72.014399px;}
.h8_c01132{height:72.015874px;}
.hc_c01132{height:72.020733px;}
.h1c_c01132{height:72.026239px;}
.h1b_c01132{height:72.030270px;}
.h1e_c01132{height:72.034588px;}
.h17_c01132{height:77.975426px;}
.h9_c01132{height:78.011270px;}
.hd_c01132{height:78.022461px;}
.h21_c01132{height:83.986643px;}
.h12_c01132{height:84.030612px;}
.h7_c01132{height:96.000000px;}
.h5_c01132{height:96.017326px;}
.h18_c01132{height:101.967865px;}
.h4_c01132{height:108.000000px;}
.h19_c01132{height:125.951229px;}
.h0_c01132{height:1246.320000px;}
.h1_c01132{height:1246.500000px;}
.w0_c01132{width:898.500000px;}
.x0_c01132{left:0.000000px;}
.x37_c01132{left:59.143500px;}
.x1_c01132{left:73.710000px;}
.x10_c01132{left:84.240000px;}
.xf_c01132{left:85.860000px;}
.x6c_c01132{left:100.819500px;}
.x82_c01132{left:103.660500px;}
.x81_c01132{left:109.350000px;}
.x7a_c01132{left:110.518500px;}
.x3c_c01132{left:116.370000px;}
.x28_c01132{left:118.246500px;}
.x14_c01132{left:120.037500px;}
.xa_c01132{left:135.004230px;}
.x38_c01132{left:136.645500px;}
.xae_c01132{left:137.938500px;}
.xa2_c01132{left:139.233000px;}
.x97_c01132{left:140.572500px;}
.x6d_c01132{left:141.597000px;}
.x61_c01132{left:144.133500px;}
.x4f_c01132{left:145.212000px;}
.x3d_c01132{left:146.890500px;}
.x1c_c01132{left:150.394055px;}
.x2_c01132{left:153.111000px;}
.x7b_c01132{left:195.346500px;}
.xaf_c01132{left:202.429500px;}
.xb_c01132{left:204.632610px;}
.x6e_c01132{left:208.642500px;}
.x83_c01132{left:211.879173px;}
.xb3_c01132{left:212.898294px;}
.xa3_c01132{left:214.521000px;}
.x8e_c01132{left:217.166867px;}
.x62_c01132{left:219.703500px;}
.x41_c01132{left:224.049000px;}
.x94_c01132{left:226.141230px;}
.x1d_c01132{left:227.872073px;}
.x5e_c01132{left:231.291216px;}
.x48_c01132{left:233.007492px;}
.x3e_c01132{left:235.185000px;}
.x26_c01132{left:236.250000px;}
.x31_c01132{left:237.613500px;}
.x3_c01132{left:239.239500px;}
.x6f_c01132{left:242.373000px;}
.xba_c01132{left:244.941921px;}
.x39_c01132{left:246.804000px;}
.x84_c01132{left:254.896613px;}
.xad_c01132{left:256.675575px;}
.x27_c01132{left:258.390000px;}
.x29_c01132{left:259.470000px;}
.x15_c01132{left:261.990000px;}
.x50_c01132{left:265.887000px;}
.x9f_c01132{left:272.664630px;}
.xbb_c01132{left:277.472858px;}
.x98_c01132{left:282.007500px;}
.x8c_c01132{left:286.631512px;}
.x42_c01132{left:289.402500px;}
.xa4_c01132{left:292.288500px;}
.x77_c01132{left:295.819500px;}
.x69_c01132{left:298.350075px;}
.x5a_c01132{left:301.200000px;}
.x16_c01132{left:305.676000px;}
.x63_c01132{left:308.815500px;}
.x49_c01132{left:311.583864px;}
.x8d_c01132{left:320.105671px;}
.x5b_c01132{left:321.601500px;}
.xa5_c01132{left:325.494000px;}
.x70_c01132{left:329.055000px;}
.x78_c01132{left:330.658500px;}
.x4a_c01132{left:333.749904px;}
.x32_c01132{left:336.508500px;}
.x17_c01132{left:338.569500px;}
.xb9_c01132{left:344.280344px;}
.xb0_c01132{left:346.336500px;}
.x1e_c01132{left:348.643764px;}
.x7c_c01132{left:351.984000px;}
.x85_c01132{left:354.199211px;}
.x3a_c01132{left:357.259500px;}
.x2a_c01132{left:358.566000px;}
.xc_c01132{left:360.479730px;}
.x43_c01132{left:366.382500px;}
.x4b_c01132{left:367.761732px;}
.x33_c01132{left:369.115500px;}
.x92_c01132{left:371.476500px;}
.x79_c01132{left:378.359635px;}
.x1f_c01132{left:382.063137px;}
.x8f_c01132{left:384.411455px;}
.xc0_c01132{left:385.782464px;}
.x64_c01132{left:387.685500px;}
.x95_c01132{left:390.254928px;}
.x2b_c01132{left:391.492500px;}
.x99_c01132{left:392.500500px;}
.xa0_c01132{left:394.243677px;}
.x56_c01132{left:396.547536px;}
.x5c_c01132{left:399.285000px;}
.x3f_c01132{left:400.716000px;}
.x34_c01132{left:402.334500px;}
.x93_c01132{left:404.172000px;}
.x11_c01132{left:407.160000px;}
.x71_c01132{left:409.018500px;}
.xb4_c01132{left:410.799195px;}
.x20_c01132{left:415.023510px;}
.x4_c01132{left:417.004500px;}
.x6a_c01132{left:419.073075px;}
.x2c_c01132{left:425.280000px;}
.x12_c01132{left:429.300000px;}
.x7d_c01132{left:439.228500px;}
.x5f_c01132{left:444.760716px;}
.x5_c01132{left:450.142500px;}
.xb5_c01132{left:456.645802px;}
.x18_c01132{left:459.075000px;}
.x65_c01132{left:464.125500px;}
.x35_c01132{left:468.498000px;}
.x13_c01132{left:473.850000px;}
.xbc_c01132{left:475.561071px;}
.x96_c01132{left:476.629758px;}
.x60_c01132{left:477.690216px;}
.x21_c01132{left:481.715256px;}
.x6_c01132{left:484.171500px;}
.x5d_c01132{left:489.438000px;}
.xa6_c01132{left:491.059500px;}
.x9a_c01132{left:492.691500px;}
.x6b_c01132{left:496.311487px;}
.xc1_c01132{left:498.673460px;}
.x36_c01132{left:501.457500px;}
.x7e_c01132{left:504.924000px;}
.x86_c01132{left:508.300455px;}
.x51_c01132{left:510.033000px;}
.x57_c01132{left:512.905728px;}
.x22_c01132{left:514.119129px;}
.x72_c01132{left:527.841000px;}
.x3b_c01132{left:534.409500px;}
.xa7_c01132{left:536.263500px;}
.x90_c01132{left:539.282928px;}
.x87_c01132{left:541.493728px;}
.x4c_c01132{left:554.931732px;}
.x19_c01132{left:559.263000px;}
.x66_c01132{left:563.494500px;}
.x52_c01132{left:565.149000px;}
.x40_c01132{left:567.607500px;}
.xbd_c01132{left:576.032499px;}
.x4d_c01132{left:588.961560px;}
.x1a_c01132{left:593.017500px;}
.x7_c01132{left:594.882000px;}
.xc2_c01132{left:597.581952px;}
.xb6_c01132{left:599.694111px;}
.x9b_c01132{left:604.335000px;}
.xbe_c01132{left:608.876622px;}
.x44_c01132{left:610.779000px;}
.xb1_c01132{left:612.141000px;}
.x67_c01132{left:619.441500px;}
.xd_c01132{left:628.919100px;}
.x4e_c01132{left:631.630068px;}
.xa8_c01132{left:635.595000px;}
.x9c_c01132{left:638.047500px;}
.x73_c01132{left:640.294500px;}
.xc3_c01132{left:641.341149px;}
.xb7_c01132{left:644.542717px;}
.x23_c01132{left:648.608093px;}
.x88_c01132{left:651.886725px;}
.x45_c01132{left:655.342500px;}
.x2d_c01132{left:658.335000px;}
.x1b_c01132{left:659.991000px;}
.x74_c01132{left:663.243000px;}
.x91_c01132{left:669.634446px;}
.x8_c01132{left:672.130500px;}
.xa9_c01132{left:679.078500px;}
.xe_c01132{left:681.301650px;}
.x24_c01132{left:684.137909px;}
.x53_c01132{left:687.225000px;}
.x68_c01132{left:697.845000px;}
.x2e_c01132{left:702.628500px;}
.x9_c01132{left:704.761500px;}
.x89_c01132{left:708.750304px;}
.x46_c01132{left:710.998500px;}
.x7f_c01132{left:716.382000px;}
.x54_c01132{left:720.727500px;}
.x25_c01132{left:725.045139px;}
.x75_c01132{left:730.806000px;}
.x8a_c01132{left:742.444077px;}
.xaa_c01132{left:747.472500px;}
.x9d_c01132{left:748.818000px;}
.x80_c01132{left:751.791000px;}
.xc4_c01132{left:753.449928px;}
.x55_c01132{left:754.494000px;}
.xb8_c01132{left:755.743405px;}
.xb2_c01132{left:768.852000px;}
.x76_c01132{left:773.734500px;}
.x2f_c01132{left:780.967500px;}
.xab_c01132{left:781.995451px;}
.x58_c01132{left:784.408212px;}
.xbf_c01132{left:786.556764px;}
.x47_c01132{left:789.610500px;}
.x9e_c01132{left:793.698000px;}
.x59_c01132{left:803.571744px;}
.x30_c01132{left:815.536500px;}
.xac_c01132{left:816.792987px;}
.x8b_c01132{left:821.699742px;}
.xa1_c01132{left:853.153255px;}
@media print{
.v0_c01132{vertical-align:0.000000pt;}
.ls0_c01132{letter-spacing:0.000000pt;}
.ws0_c01132{word-spacing:0.000000pt;}
.fs12_c01132{font-size:10.671151pt;}
.fs1e_c01132{font-size:15.992718pt;}
.fs8_c01132{font-size:16.000000pt;}
.fse_c01132{font-size:16.005407pt;}
.fs1b_c01132{font-size:16.005831pt;}
.fs18_c01132{font-size:16.006271pt;}
.fs14_c01132{font-size:21.333333pt;}
.fsc_c01132{font-size:32.009215pt;}
.fs0_c01132{font-size:37.333333pt;}
.fsd_c01132{font-size:42.681086pt;}
.fs4_c01132{font-size:58.677255pt;}
.fs1_c01132{font-size:58.678399pt;}
.fsf_c01132{font-size:58.684997pt;}
.fs13_c01132{font-size:58.689659pt;}
.fs11_c01132{font-size:58.691331pt;}
.fs1d_c01132{font-size:63.970873pt;}
.fs9_c01132{font-size:64.012799pt;}
.fs6_c01132{font-size:64.014110pt;}
.fsa_c01132{font-size:64.018429pt;}
.fs1a_c01132{font-size:64.023324pt;}
.fs19_c01132{font-size:64.026906pt;}
.fs1c_c01132{font-size:64.030745pt;}
.fs15_c01132{font-size:69.311490pt;}
.fs7_c01132{font-size:69.343351pt;}
.fsb_c01132{font-size:69.353298pt;}
.fs1f_c01132{font-size:74.654794pt;}
.fs10_c01132{font-size:74.693878pt;}
.fs5_c01132{font-size:85.333333pt;}
.fs3_c01132{font-size:85.348735pt;}
.fs16_c01132{font-size:90.638102pt;}
.fs2_c01132{font-size:96.000000pt;}
.fs17_c01132{font-size:111.956648pt;}
.y0_c01132{bottom:0.000000pt;}
.yaa_c01132{bottom:60.620663pt;}
.ya9_c01132{bottom:61.454593pt;}
.ya8_c01132{bottom:63.140708pt;}
.ya7_c01132{bottom:80.760848pt;}
.ya6_c01132{bottom:83.370088pt;}
.ya5_c01132{bottom:84.479348pt;}
.ya4_c01132{bottom:86.351400pt;}
.ya3_c01132{bottom:89.985737pt;}
.ya2_c01132{bottom:91.078520pt;}
.ya1_c01132{bottom:94.730321pt;}
.ya0_c01132{bottom:96.151812pt;}
.y9f_c01132{bottom:98.309800pt;}
.y9e_c01132{bottom:99.421033pt;}
.y9d_c01132{bottom:100.837245pt;}
.y9c_c01132{bottom:103.356797pt;}
.y9b_c01132{bottom:104.400000pt;}
.y10b_c01132{bottom:112.848043pt;}
.y10a_c01132{bottom:116.937875pt;}
.y109_c01132{bottom:118.534251pt;}
.y108_c01132{bottom:122.142524pt;}
.y107_c01132{bottom:125.375401pt;}
.y106_c01132{bottom:126.260892pt;}
.y105_c01132{bottom:129.058513pt;}
.y104_c01132{bottom:130.234721pt;}
.y103_c01132{bottom:131.434983pt;}
.y102_c01132{bottom:135.373333pt;}
.y101_c01132{bottom:143.403744pt;}
.y100_c01132{bottom:144.344420pt;}
.yff_c01132{bottom:146.004804pt;}
.yfe_c01132{bottom:148.620912pt;}
.yfd_c01132{bottom:149.585304pt;}
.yfc_c01132{bottom:152.535416pt;}
.yfb_c01132{bottom:153.467644pt;}
.yfa_c01132{bottom:154.461296pt;}
.yf9_c01132{bottom:157.368200pt;}
.yf8_c01132{bottom:158.351820pt;}
.yf7_c01132{bottom:159.307016pt;}
.yf6_c01132{bottom:162.492000pt;}
.yf5_c01132{bottom:189.973276pt;}
.yf4_c01132{bottom:190.837556pt;}
.yf3_c01132{bottom:193.942876pt;}
.yf1_c01132{bottom:208.397228pt;}
.yf0_c01132{bottom:209.403288pt;}
.yef_c01132{bottom:211.662380pt;}
.yee_c01132{bottom:212.979256pt;}
.yed_c01132{bottom:213.969520pt;}
.yf2_c01132{bottom:216.281248pt;}
.yec_c01132{bottom:217.179540pt;}
.yeb_c01132{bottom:218.525720pt;}
.yea_c01132{bottom:221.465580pt;}
.ye9_c01132{bottom:223.675348pt;}
.ye8_c01132{bottom:224.336624pt;}
.ye7_c01132{bottom:226.572000pt;}
.ye6_c01132{bottom:256.819033pt;}
.ye5_c01132{bottom:257.526667pt;}
.ye4_c01132{bottom:273.742828pt;}
.ye3_c01132{bottom:276.807860pt;}
.ye2_c01132{bottom:278.061087pt;}
.ye1_c01132{bottom:280.190208pt;}
.ye0_c01132{bottom:282.036072pt;}
.ydf_c01132{bottom:285.385477pt;}
.yde_c01132{bottom:288.428809pt;}
.ydd_c01132{bottom:289.350915pt;}
.ydc_c01132{bottom:291.128000pt;}
.ydb_c01132{bottom:319.769112pt;}
.yda_c01132{bottom:320.636725pt;}
.yd9_c01132{bottom:329.681975pt;}
.yd8_c01132{bottom:330.795985pt;}
.yd6_c01132{bottom:335.021744pt;}
.yd5_c01132{bottom:335.810252pt;}
.yd4_c01132{bottom:337.451708pt;}
.yd3_c01132{bottom:338.495312pt;}
.yd2_c01132{bottom:340.879268pt;}
.yd1_c01132{bottom:341.964164pt;}
.yd0_c01132{bottom:342.746372pt;}
.yd7_c01132{bottom:343.681696pt;}
.ycf_c01132{bottom:344.848448pt;}
.yce_c01132{bottom:345.937736pt;}
.ycd_c01132{bottom:346.734668pt;}
.ycc_c01132{bottom:348.601088pt;}
.ycb_c01132{bottom:350.408000pt;}
.yca_c01132{bottom:367.527427pt;}
.yc9_c01132{bottom:378.541744pt;}
.yc8_c01132{bottom:379.090657pt;}
.yc7_c01132{bottom:381.459600pt;}
.yc6_c01132{bottom:382.552573pt;}
.yc5_c01132{bottom:397.413209pt;}
.yc4_c01132{bottom:398.570116pt;}
.yc3_c01132{bottom:401.425533pt;}
.yc2_c01132{bottom:402.294567pt;}
.yc1_c01132{bottom:403.996325pt;}
.yc0_c01132{bottom:405.172488pt;}
.ybf_c01132{bottom:407.755189pt;}
.ybe_c01132{bottom:410.603453pt;}
.ybd_c01132{bottom:411.738049pt;}
.ybc_c01132{bottom:414.249333pt;}
.y9a_c01132{bottom:416.158667pt;}
.ybb_c01132{bottom:435.118005pt;}
.yba_c01132{bottom:435.991803pt;}
.yb9_c01132{bottom:437.114325pt;}
.yb8_c01132{bottom:440.906704pt;}
.yb7_c01132{bottom:441.059307pt;}
.yb6_c01132{bottom:441.873061pt;}
.yb5_c01132{bottom:443.527040pt;}
.yb4_c01132{bottom:445.449333pt;}
.yb3_c01132{bottom:459.613547pt;}
.yb2_c01132{bottom:462.699053pt;}
.yb1_c01132{bottom:463.775653pt;}
.yb0_c01132{bottom:465.028140pt;}
.yaf_c01132{bottom:467.835093pt;}
.yae_c01132{bottom:472.658140pt;}
.yad_c01132{bottom:476.489147pt;}
.yac_c01132{bottom:477.866513pt;}
.yab_c01132{bottom:480.250667pt;}
.y99_c01132{bottom:493.323440pt;}
.y98_c01132{bottom:494.204731pt;}
.y97_c01132{bottom:495.030768pt;}
.y96_c01132{bottom:499.467685pt;}
.y95_c01132{bottom:501.102773pt;}
.y94_c01132{bottom:503.274192pt;}
.y93_c01132{bottom:504.403451pt;}
.y92_c01132{bottom:506.359717pt;}
.y91_c01132{bottom:507.172725pt;}
.y90_c01132{bottom:508.529269pt;}
.y8f_c01132{bottom:509.284000pt;}
.y8e_c01132{bottom:533.012600pt;}
.y8d_c01132{bottom:536.908576pt;}
.y8c_c01132{bottom:537.934665pt;}
.y8b_c01132{bottom:538.832737pt;}
.y8a_c01132{bottom:540.489333pt;}
.y89_c01132{bottom:556.974040pt;}
.y88_c01132{bottom:558.004324pt;}
.y87_c01132{bottom:559.625836pt;}
.y86_c01132{bottom:560.176600pt;}
.y85_c01132{bottom:562.026208pt;}
.y84_c01132{bottom:562.875484pt;}
.y83_c01132{bottom:565.727224pt;}
.y82_c01132{bottom:567.646348pt;}
.y81_c01132{bottom:569.726716pt;}
.y80_c01132{bottom:570.536248pt;}
.y7f_c01132{bottom:572.145340pt;}
.y7e_c01132{bottom:573.124000pt;}
.y7d_c01132{bottom:596.766067pt;}
.y7c_c01132{bottom:598.414433pt;}
.y7b_c01132{bottom:600.990433pt;}
.y7a_c01132{bottom:601.703867pt;}
.y79_c01132{bottom:602.396333pt;}
.y78_c01132{bottom:621.284433pt;}
.y77_c01132{bottom:621.781967pt;}
.y76_c01132{bottom:623.524267pt;}
.y75_c01132{bottom:624.767533pt;}
.y74_c01132{bottom:626.975733pt;}
.y73_c01132{bottom:628.674400pt;}
.y72_c01132{bottom:630.427067pt;}
.y71_c01132{bottom:632.407333pt;}
.y70_c01132{bottom:634.086667pt;}
.y6f_c01132{bottom:655.266768pt;}
.y6e_c01132{bottom:656.027805pt;}
.y6d_c01132{bottom:656.364661pt;}
.y6b_c01132{bottom:659.606379pt;}
.y6c_c01132{bottom:660.961323pt;}
.y6a_c01132{bottom:661.689915pt;}
.y69_c01132{bottom:662.677187pt;}
.y68_c01132{bottom:663.485267pt;}
.y67_c01132{bottom:663.956768pt;}
.y66_c01132{bottom:665.528000pt;}
.y65_c01132{bottom:679.058101pt;}
.y64_c01132{bottom:679.484267pt;}
.y63_c01132{bottom:680.155861pt;}
.y60_c01132{bottom:683.968651pt;}
.y5f_c01132{bottom:684.689003pt;}
.y5e_c01132{bottom:685.403723pt;}
.y62_c01132{bottom:685.517792pt;}
.y5d_c01132{bottom:688.008011pt;}
.y61_c01132{bottom:688.104160pt;}
.y5c_c01132{bottom:689.183819pt;}
.y5b_c01132{bottom:691.518155pt;}
.y5a_c01132{bottom:694.392267pt;}
.y59_c01132{bottom:695.100811pt;}
.y58_c01132{bottom:696.966667pt;}
.y57_c01132{bottom:719.767264pt;}
.y56_c01132{bottom:720.640171pt;}
.y55_c01132{bottom:721.335456pt;}
.y54_c01132{bottom:725.161653pt;}
.y53_c01132{bottom:725.856555pt;}
.y52_c01132{bottom:726.309419pt;}
.y51_c01132{bottom:727.916341pt;}
.y50_c01132{bottom:746.597067pt;}
.y4f_c01132{bottom:748.274123pt;}
.y4e_c01132{bottom:749.461451pt;}
.y4d_c01132{bottom:750.412139pt;}
.y4c_c01132{bottom:753.454347pt;}
.y4b_c01132{bottom:755.625931pt;}
.y4a_c01132{bottom:757.268171pt;}
.y49_c01132{bottom:758.662379pt;}
.y48_c01132{bottom:760.326667pt;}
.y47_c01132{bottom:784.524587pt;}
.y46_c01132{bottom:787.491547pt;}
.y45_c01132{bottom:788.278880pt;}
.y44_c01132{bottom:790.434320pt;}
.y43_c01132{bottom:792.004000pt;}
.y42_c01132{bottom:794.877333pt;}
.y41_c01132{bottom:813.677144pt;}
.y40_c01132{bottom:815.542203pt;}
.y3f_c01132{bottom:816.044111pt;}
.y3e_c01132{bottom:817.525491pt;}
.y3d_c01132{bottom:818.219136pt;}
.y3c_c01132{bottom:819.888241pt;}
.y3b_c01132{bottom:821.552859pt;}
.y3a_c01132{bottom:822.724000pt;}
.y39_c01132{bottom:848.747968pt;}
.y38_c01132{bottom:849.304617pt;}
.y37_c01132{bottom:850.422045pt;}
.y36_c01132{bottom:850.983077pt;}
.y35_c01132{bottom:851.533773pt;}
.y34_c01132{bottom:853.204000pt;}
.y33_c01132{bottom:872.589253pt;}
.y32_c01132{bottom:873.234541pt;}
.y31_c01132{bottom:874.696869pt;}
.y30_c01132{bottom:875.523681pt;}
.y2f_c01132{bottom:877.388929pt;}
.y2e_c01132{bottom:878.230945pt;}
.y2d_c01132{bottom:879.874041pt;}
.y2c_c01132{bottom:880.504741pt;}
.y2b_c01132{bottom:881.119369pt;}
.y2a_c01132{bottom:882.969161pt;}
.y29_c01132{bottom:885.605333pt;}
.y10_c01132{bottom:891.000000pt;}
.y28_c01132{bottom:910.570667pt;}
.y27_c01132{bottom:936.990375pt;}
.y26_c01132{bottom:937.717265pt;}
.y25_c01132{bottom:938.349336pt;}
.y24_c01132{bottom:939.342665pt;}
.y23_c01132{bottom:940.739415pt;}
.y22_c01132{bottom:941.316024pt;}
.y21_c01132{bottom:942.501061pt;}
.y20_c01132{bottom:943.087069pt;}
.y1f_c01132{bottom:943.680829pt;}
.y1e_c01132{bottom:944.449324pt;}
.y1d_c01132{bottom:945.828568pt;}
.y1c_c01132{bottom:947.206444pt;}
.y1b_c01132{bottom:947.756741pt;}
.y1a_c01132{bottom:970.562119pt;}
.y19_c01132{bottom:971.693227pt;}
.y18_c01132{bottom:972.263303pt;}
.y17_c01132{bottom:973.955367pt;}
.y16_c01132{bottom:975.990571pt;}
.y15_c01132{bottom:976.546105pt;}
.y14_c01132{bottom:977.283913pt;}
.y13_c01132{bottom:979.131676pt;}
.y12_c01132{bottom:979.681333pt;}
.yf_c01132{bottom:984.000000pt;}
.ye_c01132{bottom:987.975013pt;}
.yd_c01132{bottom:988.859573pt;}
.yc_c01132{bottom:993.393067pt;}
.yb_c01132{bottom:996.024960pt;}
.ya_c01132{bottom:997.201440pt;}
.y9_c01132{bottom:1001.556880pt;}
.y8_c01132{bottom:1002.136987pt;}
.y7_c01132{bottom:1003.510293pt;}
.y6_c01132{bottom:1005.478480pt;}
.y5_c01132{bottom:1006.083440pt;}
.y4_c01132{bottom:1006.672560pt;}
.y1_c01132{bottom:1009.681333pt;}
.y3_c01132{bottom:1009.832827pt;}
.y2_c01132{bottom:1011.364000pt;}
.y11_c01132{bottom:1053.968000pt;}
.h14_c01132{height:10.671151pt;}
.h20_c01132{height:15.992718pt;}
.ha_c01132{height:16.000000pt;}
.h10_c01132{height:16.005407pt;}
.h1d_c01132{height:16.005831pt;}
.h1a_c01132{height:16.006271pt;}
.h16_c01132{height:21.333333pt;}
.he_c01132{height:32.009215pt;}
.h2_c01132{height:37.333333pt;}
.hf_c01132{height:42.681086pt;}
.h6_c01132{height:58.677255pt;}
.h3_c01132{height:58.678399pt;}
.h11_c01132{height:58.684997pt;}
.h15_c01132{height:58.689659pt;}
.h13_c01132{height:58.691331pt;}
.h1f_c01132{height:63.970873pt;}
.hb_c01132{height:64.012799pt;}
.h8_c01132{height:64.014110pt;}
.hc_c01132{height:64.018429pt;}
.h1c_c01132{height:64.023324pt;}
.h1b_c01132{height:64.026906pt;}
.h1e_c01132{height:64.030745pt;}
.h17_c01132{height:69.311490pt;}
.h9_c01132{height:69.343351pt;}
.hd_c01132{height:69.353298pt;}
.h21_c01132{height:74.654794pt;}
.h12_c01132{height:74.693878pt;}
.h7_c01132{height:85.333333pt;}
.h5_c01132{height:85.348735pt;}
.h18_c01132{height:90.638102pt;}
.h4_c01132{height:96.000000pt;}
.h19_c01132{height:111.956648pt;}
.h0_c01132{height:1107.840000pt;}
.h1_c01132{height:1108.000000pt;}
.w0_c01132{width:798.666667pt;}
.x0_c01132{left:0.000000pt;}
.x37_c01132{left:52.572000pt;}
.x1_c01132{left:65.520000pt;}
.x10_c01132{left:74.880000pt;}
.xf_c01132{left:76.320000pt;}
.x6c_c01132{left:89.617333pt;}
.x82_c01132{left:92.142667pt;}
.x81_c01132{left:97.200000pt;}
.x7a_c01132{left:98.238667pt;}
.x3c_c01132{left:103.440000pt;}
.x28_c01132{left:105.108000pt;}
.x14_c01132{left:106.700000pt;}
.xa_c01132{left:120.003760pt;}
.x38_c01132{left:121.462667pt;}
.xae_c01132{left:122.612000pt;}
.xa2_c01132{left:123.762667pt;}
.x97_c01132{left:124.953333pt;}
.x6d_c01132{left:125.864000pt;}
.x61_c01132{left:128.118667pt;}
.x4f_c01132{left:129.077333pt;}
.x3d_c01132{left:130.569333pt;}
.x1c_c01132{left:133.683604pt;}
.x2_c01132{left:136.098667pt;}
.x7b_c01132{left:173.641333pt;}
.xaf_c01132{left:179.937333pt;}
.xb_c01132{left:181.895653pt;}
.x6e_c01132{left:185.460000pt;}
.x83_c01132{left:188.337043pt;}
.xb3_c01132{left:189.242928pt;}
.xa3_c01132{left:190.685333pt;}
.x8e_c01132{left:193.037215pt;}
.x62_c01132{left:195.292000pt;}
.x41_c01132{left:199.154667pt;}
.x94_c01132{left:201.014427pt;}
.x1d_c01132{left:202.552953pt;}
.x5e_c01132{left:205.592192pt;}
.x48_c01132{left:207.117771pt;}
.x3e_c01132{left:209.053333pt;}
.x26_c01132{left:210.000000pt;}
.x31_c01132{left:211.212000pt;}
.x3_c01132{left:212.657333pt;}
.x6f_c01132{left:215.442667pt;}
.xba_c01132{left:217.726152pt;}
.x39_c01132{left:219.381333pt;}
.x84_c01132{left:226.574767pt;}
.xad_c01132{left:228.156067pt;}
.x27_c01132{left:229.680000pt;}
.x29_c01132{left:230.640000pt;}
.x15_c01132{left:232.880000pt;}
.x50_c01132{left:236.344000pt;}
.x9f_c01132{left:242.368560pt;}
.xbb_c01132{left:246.642540pt;}
.x98_c01132{left:250.673333pt;}
.x8c_c01132{left:254.783567pt;}
.x42_c01132{left:257.246667pt;}
.xa4_c01132{left:259.812000pt;}
.x77_c01132{left:262.950667pt;}
.x69_c01132{left:265.200067pt;}
.x5a_c01132{left:267.733333pt;}
.x16_c01132{left:271.712000pt;}
.x63_c01132{left:274.502667pt;}
.x49_c01132{left:276.963435pt;}
.x8d_c01132{left:284.538375pt;}
.x5b_c01132{left:285.868000pt;}
.xa5_c01132{left:289.328000pt;}
.x70_c01132{left:292.493333pt;}
.x78_c01132{left:293.918667pt;}
.x4a_c01132{left:296.666581pt;}
.x32_c01132{left:299.118667pt;}
.x17_c01132{left:300.950667pt;}
.xb9_c01132{left:306.026972pt;}
.xb0_c01132{left:307.854667pt;}
.x1e_c01132{left:309.905568pt;}
.x7c_c01132{left:312.874667pt;}
.x85_c01132{left:314.843743pt;}
.x3a_c01132{left:317.564000pt;}
.x2a_c01132{left:318.725333pt;}
.xc_c01132{left:320.426427pt;}
.x43_c01132{left:325.673333pt;}
.x4b_c01132{left:326.899317pt;}
.x33_c01132{left:328.102667pt;}
.x92_c01132{left:330.201333pt;}
.x79_c01132{left:336.319676pt;}
.x1f_c01132{left:339.611677pt;}
.x8f_c01132{left:341.699071pt;}
.xc0_c01132{left:342.917745pt;}
.x64_c01132{left:344.609333pt;}
.x95_c01132{left:346.893269pt;}
.x2b_c01132{left:347.993333pt;}
.x99_c01132{left:348.889333pt;}
.xa0_c01132{left:350.438824pt;}
.x56_c01132{left:352.486699pt;}
.x5c_c01132{left:354.920000pt;}
.x3f_c01132{left:356.192000pt;}
.x34_c01132{left:357.630667pt;}
.x93_c01132{left:359.264000pt;}
.x11_c01132{left:361.920000pt;}
.x71_c01132{left:363.572000pt;}
.xb4_c01132{left:365.154840pt;}
.x20_c01132{left:368.909787pt;}
.x4_c01132{left:370.670667pt;}
.x6a_c01132{left:372.509400pt;}
.x2c_c01132{left:378.026667pt;}
.x12_c01132{left:381.600000pt;}
.x7d_c01132{left:390.425333pt;}
.x5f_c01132{left:395.342859pt;}
.x5_c01132{left:400.126667pt;}
.xb5_c01132{left:405.907380pt;}
.x18_c01132{left:408.066667pt;}
.x65_c01132{left:412.556000pt;}
.x35_c01132{left:416.442667pt;}
.x13_c01132{left:421.200000pt;}
.xbc_c01132{left:422.720952pt;}
.x96_c01132{left:423.670896pt;}
.x60_c01132{left:424.613525pt;}
.x21_c01132{left:428.191339pt;}
.x6_c01132{left:430.374667pt;}
.x5d_c01132{left:435.056000pt;}
.xa6_c01132{left:436.497333pt;}
.x9a_c01132{left:437.948000pt;}
.x6b_c01132{left:441.165767pt;}
.xc1_c01132{left:443.265297pt;}
.x36_c01132{left:445.740000pt;}
.x7e_c01132{left:448.821333pt;}
.x86_c01132{left:451.822627pt;}
.x51_c01132{left:453.362667pt;}
.x57_c01132{left:455.916203pt;}
.x22_c01132{left:456.994781pt;}
.x72_c01132{left:469.192000pt;}
.x3b_c01132{left:475.030667pt;}
.xa7_c01132{left:476.678667pt;}
.x90_c01132{left:479.362603pt;}
.x87_c01132{left:481.327759pt;}
.x4c_c01132{left:493.272651pt;}
.x19_c01132{left:497.122667pt;}
.x66_c01132{left:500.884000pt;}
.x52_c01132{left:502.354667pt;}
.x40_c01132{left:504.540000pt;}
.xbd_c01132{left:512.028888pt;}
.x4d_c01132{left:523.521387pt;}
.x1a_c01132{left:527.126667pt;}
.x7_c01132{left:528.784000pt;}
.xc2_c01132{left:531.183957pt;}
.xb6_c01132{left:533.061432pt;}
.x9b_c01132{left:537.186667pt;}
.xbe_c01132{left:541.223664pt;}
.x44_c01132{left:542.914667pt;}
.xb1_c01132{left:544.125333pt;}
.x67_c01132{left:550.614667pt;}
.xd_c01132{left:559.039200pt;}
.x4e_c01132{left:561.448949pt;}
.xa8_c01132{left:564.973333pt;}
.x9c_c01132{left:567.153333pt;}
.x73_c01132{left:569.150667pt;}
.xc3_c01132{left:570.081021pt;}
.xb7_c01132{left:572.926860pt;}
.x23_c01132{left:576.540527pt;}
.x88_c01132{left:579.454867pt;}
.x45_c01132{left:582.526667pt;}
.x2d_c01132{left:585.186667pt;}
.x1b_c01132{left:586.658667pt;}
.x74_c01132{left:589.549333pt;}
.x91_c01132{left:595.230619pt;}
.x8_c01132{left:597.449333pt;}
.xa9_c01132{left:603.625333pt;}
.xe_c01132{left:605.601467pt;}
.x24_c01132{left:608.122585pt;}
.x53_c01132{left:610.866667pt;}
.x68_c01132{left:620.306667pt;}
.x2e_c01132{left:624.558667pt;}
.x9_c01132{left:626.454667pt;}
.x89_c01132{left:630.000271pt;}
.x46_c01132{left:631.998667pt;}
.x7f_c01132{left:636.784000pt;}
.x54_c01132{left:640.646667pt;}
.x25_c01132{left:644.484568pt;}
.x75_c01132{left:649.605333pt;}
.x8a_c01132{left:659.950291pt;}
.xaa_c01132{left:664.420000pt;}
.x9d_c01132{left:665.616000pt;}
.x80_c01132{left:668.258667pt;}
.xc4_c01132{left:669.733269pt;}
.x55_c01132{left:670.661333pt;}
.xb8_c01132{left:671.771916pt;}
.xb2_c01132{left:683.424000pt;}
.x76_c01132{left:687.764000pt;}
.x2f_c01132{left:694.193333pt;}
.xab_c01132{left:695.107068pt;}
.x58_c01132{left:697.251744pt;}
.xbf_c01132{left:699.161568pt;}
.x47_c01132{left:701.876000pt;}
.x9e_c01132{left:705.509333pt;}
.x59_c01132{left:714.285995pt;}
.x30_c01132{left:724.921333pt;}
.xac_c01132{left:726.038211pt;}
.x8b_c01132{left:730.399771pt;}
.xa1_c01132{left:758.358449pt;}
}





/* 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_c01133 {
    display:none;
  }
  .loading-indicator_c01133.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01133 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_c01133 { 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_c01133" -> "#page-container .classname_c01133")
 */
.pf_c01133 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01133 { /* 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_c01133.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01133 { /* 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_c01133 { /* 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_c01133 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01133 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01133 {overflow:visible;}
  }
}
.c_c01133 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01133 { /* 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_c01133:after { /* webkit #35443 */
  content: '';
}
.t_c01133:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01133 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 */
}
.__c01133 { /* 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_c01133 { /* info for Javascript */
  display:none;
}
.l_c01133 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01133 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01133 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01133: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_c01133 {
    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_c01133.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01133.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_c01133 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01133{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01133;src:url('chunks/assets/font_7c6b9abe6ee2a268480c528b.woff2')format("woff");}.ff1_c01133{font-family:ff1_c01133;line-height:1.000000;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;}
.mb_c01133{transform:matrix(0.084125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084125,0.000000,0.000000,0.250000,0,0);}
.m4_c01133{transform:matrix(0.106300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106300,0.000000,0.000000,0.250000,0,0);}
.m8_c01133{transform:matrix(0.110835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110835,0.000000,0.000000,0.250000,0,0);}
.m0_c01133{transform:matrix(0.145485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145485,0.000000,0.000000,0.250000,0,0);}
.m19_c01133{transform:matrix(0.156435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156435,0.000000,0.000000,0.250000,0,0);}
.m10_c01133{transform:matrix(0.157745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157745,0.000000,0.000000,0.250000,0,0);}
.m1b_c01133{transform:matrix(0.160255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160255,0.000000,0.000000,0.250000,0,0);}
.m3_c01133{transform:matrix(0.162490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162490,0.000000,0.000000,0.250000,0,0);}
.m17_c01133{transform:matrix(0.163975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163975,0.000000,0.000000,0.250000,0,0);}
.mf_c01133{transform:matrix(0.170150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170150,0.000000,0.000000,0.250000,0,0);}
.m13_c01133{transform:matrix(0.174010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174010,0.000000,0.000000,0.250000,0,0);}
.m15_c01133{transform:matrix(0.180090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180090,0.000000,0.000000,0.250000,0,0);}
.me_c01133{transform:matrix(0.182385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182385,0.000000,0.000000,0.250000,0,0);}
.m14_c01133{transform:matrix(0.184195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184195,0.000000,0.000000,0.250000,0,0);}
.m1_c01133{transform:matrix(0.184725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184725,0.000000,0.000000,0.250000,0,0);}
.m1a_c01133{transform:matrix(0.191520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191520,0.000000,0.000000,0.250000,0,0);}
.m2_c01133{transform:matrix(0.199690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199690,0.000000,0.000000,0.250000,0,0);}
.md_c01133{transform:matrix(0.202160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202160,0.000000,0.000000,0.250000,0,0);}
.m16_c01133{transform:matrix(0.218525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218525,0.000000,0.000000,0.250000,0,0);}
.m7_c01133{transform:matrix(0.237320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237320,0.000000,0.000000,0.250000,0,0);}
.ma_c01133{transform:matrix(0.242510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242510,0.000000,0.000000,0.250000,0,0);}
.m11_c01133{transform:matrix(0.244130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244130,0.000000,0.000000,0.250000,0,0);}
.m9_c01133{transform:matrix(0.245565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245565,0.000000,0.000000,0.250000,0,0);}
.m5_c01133{transform:matrix(0.252770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252770,0.000000,0.000000,0.250000,0,0);}
.m6_c01133{transform:matrix(0.259290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259290,0.000000,0.000000,0.250000,0,0);}
.m1c_c01133{transform:matrix(0.310072,-0.014898,0.011998,0.249712,0,0);-ms-transform:matrix(0.310072,-0.014898,0.011998,0.249712,0,0);-webkit-transform:matrix(0.310072,-0.014898,0.011998,0.249712,0,0);}
.mc_c01133{transform:matrix(0.310155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310155,0.000000,0.000000,0.250000,0,0);}
.m12_c01133{transform:matrix(0.656060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.656060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.656060,0.000000,0.000000,0.250000,0,0);}
.m18_c01133{transform:matrix(0.852365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.852365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.852365,0.000000,0.000000,0.250000,0,0);}
.v0_c01133{vertical-align:0.000000px;}
.ls0_c01133{letter-spacing:0.000000px;}
.sc__c01133{text-shadow:none;}
.sc0_c01133{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__c01133{-webkit-text-stroke:0px transparent;}
.sc0_c01133{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01133{word-spacing:0.000000px;}
.fc0_c01133{color:transparent;}
.fs1_c01133{font-size:18.000000px;}
.fs2_c01133{font-size:84.000000px;}
.fs3_c01133{font-size:114.000000px;}
.fs0_c01133{font-size:120.000000px;}
.fs5_c01133{font-size:120.018299px;}
.fs4_c01133{font-size:192.000000px;}
.y0_c01133{bottom:0.000000px;}
.y9_c01133{bottom:694.771500px;}
.y8_c01133{bottom:702.793500px;}
.y7_c01133{bottom:722.790000px;}
.y6_c01133{bottom:729.142500px;}
.y5_c01133{bottom:845.187000px;}
.y4_c01133{bottom:878.773500px;}
.y3_c01133{bottom:915.375000px;}
.y2_c01133{bottom:978.210000px;}
.y1_c01133{bottom:984.784500px;}
.h3_c01133{height:18.000000px;}
.h4_c01133{height:84.000000px;}
.h5_c01133{height:114.000000px;}
.h2_c01133{height:120.000000px;}
.h7_c01133{height:120.018299px;}
.h6_c01133{height:192.000000px;}
.h0_c01133{height:1246.320000px;}
.h1_c01133{height:1246.500000px;}
.w0_c01133{width:898.500000px;}
.x0_c01133{left:0.000000px;}
.x12_c01133{left:406.620000px;}
.xd_c01133{left:411.210000px;}
.x13_c01133{left:433.080000px;}
.x19_c01133{left:484.380000px;}
.x6_c01133{left:493.020000px;}
.x1a_c01133{left:497.610000px;}
.xe_c01133{left:502.470000px;}
.x14_c01133{left:529.740000px;}
.x7_c01133{left:535.950000px;}
.xf_c01133{left:547.290000px;}
.x8_c01133{left:572.670000px;}
.x1_c01133{left:580.500000px;}
.x1b_c01133{left:588.330000px;}
.x2_c01133{left:592.380000px;}
.x17_c01133{left:596.700000px;}
.x15_c01133{left:604.530000px;}
.x18_c01133{left:629.910000px;}
.x3_c01133{left:644.760000px;}
.x9_c01133{left:651.240000px;}
.xa_c01133{left:659.340000px;}
.x10_c01133{left:660.420000px;}
.x16_c01133{left:672.030000px;}
.x4_c01133{left:732.780000px;}
.x5_c01133{left:736.020000px;}
.x11_c01133{left:747.090000px;}
.xb_c01133{left:756.810000px;}
.xc_c01133{left:782.190000px;}
@media print{
.v0_c01133{vertical-align:0.000000pt;}
.ls0_c01133{letter-spacing:0.000000pt;}
.ws0_c01133{word-spacing:0.000000pt;}
.fs1_c01133{font-size:16.000000pt;}
.fs2_c01133{font-size:74.666667pt;}
.fs3_c01133{font-size:101.333333pt;}
.fs0_c01133{font-size:106.666667pt;}
.fs5_c01133{font-size:106.682932pt;}
.fs4_c01133{font-size:170.666667pt;}
.y0_c01133{bottom:0.000000pt;}
.y9_c01133{bottom:617.574667pt;}
.y8_c01133{bottom:624.705333pt;}
.y7_c01133{bottom:642.480000pt;}
.y6_c01133{bottom:648.126667pt;}
.y5_c01133{bottom:751.277333pt;}
.y4_c01133{bottom:781.132000pt;}
.y3_c01133{bottom:813.666667pt;}
.y2_c01133{bottom:869.520000pt;}
.y1_c01133{bottom:875.364000pt;}
.h3_c01133{height:16.000000pt;}
.h4_c01133{height:74.666667pt;}
.h5_c01133{height:101.333333pt;}
.h2_c01133{height:106.666667pt;}
.h7_c01133{height:106.682932pt;}
.h6_c01133{height:170.666667pt;}
.h0_c01133{height:1107.840000pt;}
.h1_c01133{height:1108.000000pt;}
.w0_c01133{width:798.666667pt;}
.x0_c01133{left:0.000000pt;}
.x12_c01133{left:361.440000pt;}
.xd_c01133{left:365.520000pt;}
.x13_c01133{left:384.960000pt;}
.x19_c01133{left:430.560000pt;}
.x6_c01133{left:438.240000pt;}
.x1a_c01133{left:442.320000pt;}
.xe_c01133{left:446.640000pt;}
.x14_c01133{left:470.880000pt;}
.x7_c01133{left:476.400000pt;}
.xf_c01133{left:486.480000pt;}
.x8_c01133{left:509.040000pt;}
.x1_c01133{left:516.000000pt;}
.x1b_c01133{left:522.960000pt;}
.x2_c01133{left:526.560000pt;}
.x17_c01133{left:530.400000pt;}
.x15_c01133{left:537.360000pt;}
.x18_c01133{left:559.920000pt;}
.x3_c01133{left:573.120000pt;}
.x9_c01133{left:578.880000pt;}
.xa_c01133{left:586.080000pt;}
.x10_c01133{left:587.040000pt;}
.x16_c01133{left:597.360000pt;}
.x4_c01133{left:651.360000pt;}
.x5_c01133{left:654.240000pt;}
.x11_c01133{left:664.080000pt;}
.xb_c01133{left:672.720000pt;}
.xc_c01133{left:695.280000pt;}
}





/* 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_c01134 {
    display:none;
  }
  .loading-indicator_c01134.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01134 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_c01134 { 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_c01134" -> "#page-container .classname_c01134")
 */
.pf_c01134 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01134 { /* 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_c01134.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01134 { /* 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_c01134 { /* 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_c01134 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01134 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01134 {overflow:visible;}
  }
}
.c_c01134 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01134 { /* 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_c01134:after { /* webkit #35443 */
  content: '';
}
.t_c01134:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01134 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 */
}
.__c01134 { /* 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_c01134 { /* info for Javascript */
  display:none;
}
.l_c01134 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01134 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01134 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01134: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_c01134 {
    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_c01134.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01134.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_c01134 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01134{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01134;src:url('chunks/assets/font_c605e72f209fc835e906f064.woff2')format("woff");}.ff1_c01134{font-family:ff1_c01134;line-height:1.000000;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;}
.mb3_c01134{transform:matrix(0.008540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.008540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.008540,0.000000,0.000000,0.250000,0,0);}
.ma0_c01134{transform:matrix(0.117745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117745,0.000000,0.000000,0.250000,0,0);}
.m2_c01134{transform:matrix(0.126170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126170,0.000000,0.000000,0.250000,0,0);}
.m73_c01134{transform:matrix(0.132345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132345,0.000000,0.000000,0.250000,0,0);}
.mb1_c01134{transform:matrix(0.142780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142780,0.000000,0.000000,0.250000,0,0);}
.m7e_c01134{transform:matrix(0.145540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145540,0.000000,0.000000,0.250000,0,0);}
.m6f_c01134{transform:matrix(0.149025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149025,0.000000,0.000000,0.250000,0,0);}
.m0_c01134{transform:matrix(0.158815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158815,0.000000,0.000000,0.250000,0,0);}
.ma4_c01134{transform:matrix(0.165980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165980,0.000000,0.000000,0.250000,0,0);}
.mbb_c01134{transform:matrix(0.166328,0.000832,-0.001250,0.249997,0,0);-ms-transform:matrix(0.166328,0.000832,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.166328,0.000832,-0.001250,0.249997,0,0);}
.mb2_c01134{transform:matrix(0.169070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169070,0.000000,0.000000,0.250000,0,0);}
.m4a_c01134{transform:matrix(0.178830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178830,0.000000,0.000000,0.250000,0,0);}
.m8f_c01134{transform:matrix(0.179305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179305,0.000000,0.000000,0.250000,0,0);}
.mc6_c01134{transform:matrix(0.181233,0.000906,-0.001250,0.249997,0,0);-ms-transform:matrix(0.181233,0.000906,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.181233,0.000906,-0.001250,0.249997,0,0);}
.m91_c01134{transform:matrix(0.184745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184745,0.000000,0.000000,0.250000,0,0);}
.ma7_c01134{transform:matrix(0.188555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188555,0.000000,0.000000,0.250000,0,0);}
.m36_c01134{transform:matrix(0.193130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193130,0.000000,0.000000,0.250000,0,0);}
.mcf_c01134{transform:matrix(0.194780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194780,0.000000,0.000000,0.250000,0,0);}
.m61_c01134{transform:matrix(0.195463,0.000977,-0.001250,0.249997,0,0);-ms-transform:matrix(0.195463,0.000977,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.195463,0.000977,-0.001250,0.249997,0,0);}
.m12_c01134{transform:matrix(0.196375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196375,0.000000,0.000000,0.250000,0,0);}
.m77_c01134{transform:matrix(0.197060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197060,0.000000,0.000000,0.250000,0,0);}
.m2b_c01134{transform:matrix(0.197310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197310,0.000000,0.000000,0.250000,0,0);}
.m75_c01134{transform:matrix(0.197910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197910,0.000000,0.000000,0.250000,0,0);}
.m98_c01134{transform:matrix(0.198700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198700,0.000000,0.000000,0.250000,0,0);}
.mf9_c01134{transform:matrix(0.199179,0.001593,-0.002000,0.249992,0,0);-ms-transform:matrix(0.199179,0.001593,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.199179,0.001593,-0.002000,0.249992,0,0);}
.mc5_c01134{transform:matrix(0.199698,0.000998,-0.001250,0.249997,0,0);-ms-transform:matrix(0.199698,0.000998,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.199698,0.000998,-0.001250,0.249997,0,0);}
.md1_c01134{transform:matrix(0.201549,0.001612,-0.002000,0.249992,0,0);-ms-transform:matrix(0.201549,0.001612,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.201549,0.001612,-0.002000,0.249992,0,0);}
.m1c_c01134{transform:matrix(0.203485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203485,0.000000,0.000000,0.250000,0,0);}
.mc2_c01134{transform:matrix(0.203852,0.001019,-0.001250,0.249997,0,0);-ms-transform:matrix(0.203852,0.001019,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.203852,0.001019,-0.001250,0.249997,0,0);}
.m78_c01134{transform:matrix(0.205110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205110,0.000000,0.000000,0.250000,0,0);}
.m76_c01134{transform:matrix(0.206260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206260,0.000000,0.000000,0.250000,0,0);}
.m8_c01134{transform:matrix(0.207712,-0.001869,0.002250,0.249990,0,0);-ms-transform:matrix(0.207712,-0.001869,0.002250,0.249990,0,0);-webkit-transform:matrix(0.207712,-0.001869,0.002250,0.249990,0,0);}
.m95_c01134{transform:matrix(0.208285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208285,0.000000,0.000000,0.250000,0,0);}
.m4c_c01134{transform:matrix(0.208675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208675,0.000000,0.000000,0.250000,0,0);}
.me5_c01134{transform:matrix(0.208912,0.002298,-0.002750,0.249985,0,0);-ms-transform:matrix(0.208912,0.002298,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.208912,0.002298,-0.002750,0.249985,0,0);}
.ma3_c01134{transform:matrix(0.210620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210620,0.000000,0.000000,0.250000,0,0);}
.m6a_c01134{transform:matrix(0.210687,0.001053,-0.001250,0.249997,0,0);-ms-transform:matrix(0.210687,0.001053,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.210687,0.001053,-0.001250,0.249997,0,0);}
.ma2_c01134{transform:matrix(0.210900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210900,0.000000,0.000000,0.250000,0,0);}
.m3f_c01134{transform:matrix(0.211340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211340,0.000000,0.000000,0.250000,0,0);}
.mef_c01134{transform:matrix(0.211493,0.001692,-0.002000,0.249992,0,0);-ms-transform:matrix(0.211493,0.001692,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.211493,0.001692,-0.002000,0.249992,0,0);}
.m7d_c01134{transform:matrix(0.212395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212395,0.000000,0.000000,0.250000,0,0);}
.ma9_c01134{transform:matrix(0.213865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213865,0.000000,0.000000,0.250000,0,0);}
.mb4_c01134{transform:matrix(0.214225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214225,0.000000,0.000000,0.250000,0,0);}
.mc9_c01134{transform:matrix(0.215290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215290,0.000000,0.000000,0.250000,0,0);}
.m4d_c01134{transform:matrix(0.216110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216110,0.000000,0.000000,0.250000,0,0);}
.me6_c01134{transform:matrix(0.216322,0.002380,-0.002750,0.249985,0,0);-ms-transform:matrix(0.216322,0.002380,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.216322,0.002380,-0.002750,0.249985,0,0);}
.mbe_c01134{transform:matrix(0.217527,0.001088,-0.001250,0.249997,0,0);-ms-transform:matrix(0.217527,0.001088,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.217527,0.001088,-0.001250,0.249997,0,0);}
.m7b_c01134{transform:matrix(0.217580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217580,0.000000,0.000000,0.250000,0,0);}
.m1f_c01134{transform:matrix(0.218335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218335,0.000000,0.000000,0.250000,0,0);}
.mbf_c01134{transform:matrix(0.219442,0.001097,-0.001250,0.249997,0,0);-ms-transform:matrix(0.219442,0.001097,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.219442,0.001097,-0.001250,0.249997,0,0);}
.m7c_c01134{transform:matrix(0.220270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220270,0.000000,0.000000,0.250000,0,0);}
.m5_c01134{transform:matrix(0.221151,-0.001990,0.002250,0.249990,0,0);-ms-transform:matrix(0.221151,-0.001990,0.002250,0.249990,0,0);-webkit-transform:matrix(0.221151,-0.001990,0.002250,0.249990,0,0);}
.m63_c01134{transform:matrix(0.221877,0.001109,-0.001250,0.249997,0,0);-ms-transform:matrix(0.221877,0.001109,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.221877,0.001109,-0.001250,0.249997,0,0);}
.mbc_c01134{transform:matrix(0.221917,0.001110,-0.001250,0.249997,0,0);-ms-transform:matrix(0.221917,0.001110,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.221917,0.001110,-0.001250,0.249997,0,0);}
.m16_c01134{transform:matrix(0.222365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222365,0.000000,0.000000,0.250000,0,0);}
.m14_c01134{transform:matrix(0.222610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222610,0.000000,0.000000,0.250000,0,0);}
.mbd_c01134{transform:matrix(0.222622,0.001113,-0.001250,0.249997,0,0);-ms-transform:matrix(0.222622,0.001113,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.222622,0.001113,-0.001250,0.249997,0,0);}
.me2_c01134{transform:matrix(0.224713,0.001798,-0.002000,0.249992,0,0);-ms-transform:matrix(0.224713,0.001798,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.224713,0.001798,-0.002000,0.249992,0,0);}
.m88_c01134{transform:matrix(0.224850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224850,0.000000,0.000000,0.250000,0,0);}
.mea_c01134{transform:matrix(0.225331,0.002479,-0.002750,0.249985,0,0);-ms-transform:matrix(0.225331,0.002479,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.225331,0.002479,-0.002750,0.249985,0,0);}
.m32_c01134{transform:matrix(0.225345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225345,0.000000,0.000000,0.250000,0,0);}
.mf7_c01134{transform:matrix(0.225838,0.001807,-0.002000,0.249992,0,0);-ms-transform:matrix(0.225838,0.001807,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.225838,0.001807,-0.002000,0.249992,0,0);}
.m65_c01134{transform:matrix(0.226552,0.001133,-0.001250,0.249997,0,0);-ms-transform:matrix(0.226552,0.001133,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.226552,0.001133,-0.001250,0.249997,0,0);}
.m93_c01134{transform:matrix(0.226700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226700,0.000000,0.000000,0.250000,0,0);}
.md4_c01134{transform:matrix(0.227493,0.001820,-0.002000,0.249992,0,0);-ms-transform:matrix(0.227493,0.001820,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.227493,0.001820,-0.002000,0.249992,0,0);}
.m86_c01134{transform:matrix(0.228265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228265,0.000000,0.000000,0.250000,0,0);}
.m52_c01134{transform:matrix(0.228470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228470,0.000000,0.000000,0.250000,0,0);}
.m4_c01134{transform:matrix(0.228546,-0.002057,0.002250,0.249990,0,0);-ms-transform:matrix(0.228546,-0.002057,0.002250,0.249990,0,0);-webkit-transform:matrix(0.228546,-0.002057,0.002250,0.249990,0,0);}
.m50_c01134{transform:matrix(0.228565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228565,0.000000,0.000000,0.250000,0,0);}
.ma5_c01134{transform:matrix(0.228630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228630,0.000000,0.000000,0.250000,0,0);}
.md9_c01134{transform:matrix(0.228808,0.001830,-0.002000,0.249992,0,0);-ms-transform:matrix(0.228808,0.001830,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.228808,0.001830,-0.002000,0.249992,0,0);}
.mcc_c01134{transform:matrix(0.228860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228860,0.000000,0.000000,0.250000,0,0);}
.mf1_c01134{transform:matrix(0.228958,0.001832,-0.002000,0.249992,0,0);-ms-transform:matrix(0.228958,0.001832,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.228958,0.001832,-0.002000,0.249992,0,0);}
.me8_c01134{transform:matrix(0.229026,0.002519,-0.002750,0.249985,0,0);-ms-transform:matrix(0.229026,0.002519,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.229026,0.002519,-0.002750,0.249985,0,0);}
.m82_c01134{transform:matrix(0.229220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229220,0.000000,0.000000,0.250000,0,0);}
.m71_c01134{transform:matrix(0.229525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229525,0.000000,0.000000,0.250000,0,0);}
.mae_c01134{transform:matrix(0.229535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229535,0.000000,0.000000,0.250000,0,0);}
.m81_c01134{transform:matrix(0.229975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229975,0.000000,0.000000,0.250000,0,0);}
.m17_c01134{transform:matrix(0.230200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230200,0.000000,0.000000,0.250000,0,0);}
.mc_c01134{transform:matrix(0.230566,-0.002075,0.002250,0.249990,0,0);-ms-transform:matrix(0.230566,-0.002075,0.002250,0.249990,0,0);-webkit-transform:matrix(0.230566,-0.002075,0.002250,0.249990,0,0);}
.m79_c01134{transform:matrix(0.230575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230575,0.000000,0.000000,0.250000,0,0);}
.mc4_c01134{transform:matrix(0.230792,0.001154,-0.001250,0.249997,0,0);-ms-transform:matrix(0.230792,0.001154,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.230792,0.001154,-0.001250,0.249997,0,0);}
.m2d_c01134{transform:matrix(0.231625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231625,0.000000,0.000000,0.250000,0,0);}
.m74_c01134{transform:matrix(0.231985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231985,0.000000,0.000000,0.250000,0,0);}
.m1_c01134{transform:matrix(0.233800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233800,0.000000,0.000000,0.250000,0,0);}
.md_c01134{transform:matrix(0.234146,-0.002107,0.002250,0.249990,0,0);-ms-transform:matrix(0.234146,-0.002107,0.002250,0.249990,0,0);-webkit-transform:matrix(0.234146,-0.002107,0.002250,0.249990,0,0);}
.ma_c01134{transform:matrix(0.234311,-0.002109,0.002250,0.249990,0,0);-ms-transform:matrix(0.234311,-0.002109,0.002250,0.249990,0,0);-webkit-transform:matrix(0.234311,-0.002109,0.002250,0.249990,0,0);}
.m7a_c01134{transform:matrix(0.234380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234380,0.000000,0.000000,0.250000,0,0);}
.mc1_c01134{transform:matrix(0.234667,0.001173,-0.001250,0.249997,0,0);-ms-transform:matrix(0.234667,0.001173,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.234667,0.001173,-0.001250,0.249997,0,0);}
.m10_c01134{transform:matrix(0.235080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235080,0.000000,0.000000,0.250000,0,0);}
.m53_c01134{transform:matrix(0.235095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235095,0.000000,0.000000,0.250000,0,0);}
.m2f_c01134{transform:matrix(0.235125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235125,0.000000,0.000000,0.250000,0,0);}
.med_c01134{transform:matrix(0.236431,0.002601,-0.002750,0.249985,0,0);-ms-transform:matrix(0.236431,0.002601,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.236431,0.002601,-0.002750,0.249985,0,0);}
.mf3_c01134{transform:matrix(0.236512,0.001892,-0.002000,0.249992,0,0);-ms-transform:matrix(0.236512,0.001892,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.236512,0.001892,-0.002000,0.249992,0,0);}
.mc0_c01134{transform:matrix(0.236797,0.001184,-0.001250,0.249997,0,0);-ms-transform:matrix(0.236797,0.001184,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.236797,0.001184,-0.001250,0.249997,0,0);}
.me0_c01134{transform:matrix(0.237172,0.001897,-0.002000,0.249992,0,0);-ms-transform:matrix(0.237172,0.001897,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.237172,0.001897,-0.002000,0.249992,0,0);}
.m55_c01134{transform:matrix(0.237290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237290,0.000000,0.000000,0.250000,0,0);}
.m51_c01134{transform:matrix(0.237320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237320,0.000000,0.000000,0.250000,0,0);}
.mab_c01134{transform:matrix(0.237325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237325,0.000000,0.000000,0.250000,0,0);}
.m43_c01134{transform:matrix(0.238275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238275,0.000000,0.000000,0.250000,0,0);}
.m25_c01134{transform:matrix(0.239085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239085,0.000000,0.000000,0.250000,0,0);}
.m5a_c01134{transform:matrix(0.239760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239760,0.000000,0.000000,0.250000,0,0);}
.meb_c01134{transform:matrix(0.240050,0.002641,-0.002750,0.249985,0,0);-ms-transform:matrix(0.240050,0.002641,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.240050,0.002641,-0.002750,0.249985,0,0);}
.m5d_c01134{transform:matrix(0.240450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240450,0.000000,0.000000,0.250000,0,0);}
.mc8_c01134{transform:matrix(0.240920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240920,0.000000,0.000000,0.250000,0,0);}
.ma1_c01134{transform:matrix(0.241180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241180,0.000000,0.000000,0.250000,0,0);}
.m5e_c01134{transform:matrix(0.242080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242080,0.000000,0.000000,0.250000,0,0);}
.mb0_c01134{transform:matrix(0.242180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242180,0.000000,0.000000,0.250000,0,0);}
.mc3_c01134{transform:matrix(0.242297,0.001211,-0.001250,0.249997,0,0);-ms-transform:matrix(0.242297,0.001211,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.242297,0.001211,-0.001250,0.249997,0,0);}
.md6_c01134{transform:matrix(0.242382,0.001939,-0.002000,0.249992,0,0);-ms-transform:matrix(0.242382,0.001939,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.242382,0.001939,-0.002000,0.249992,0,0);}
.ma8_c01134{transform:matrix(0.242735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242735,0.000000,0.000000,0.250000,0,0);}
.m33_c01134{transform:matrix(0.242745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242745,0.000000,0.000000,0.250000,0,0);}
.m58_c01134{transform:matrix(0.243200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243200,0.000000,0.000000,0.250000,0,0);}
.m59_c01134{transform:matrix(0.243240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243240,0.000000,0.000000,0.250000,0,0);}
.m3e_c01134{transform:matrix(0.243665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243665,0.000000,0.000000,0.250000,0,0);}
.maa_c01134{transform:matrix(0.244195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244195,0.000000,0.000000,0.250000,0,0);}
.m8d_c01134{transform:matrix(0.244255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244255,0.000000,0.000000,0.250000,0,0);}
.mb_c01134{transform:matrix(0.244825,-0.002203,0.002250,0.249990,0,0);-ms-transform:matrix(0.244825,-0.002203,0.002250,0.249990,0,0);-webkit-transform:matrix(0.244825,-0.002203,0.002250,0.249990,0,0);}
.m45_c01134{transform:matrix(0.245350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245350,0.000000,0.000000,0.250000,0,0);}
.m23_c01134{transform:matrix(0.245490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245490,0.000000,0.000000,0.250000,0,0);}
.mee_c01134{transform:matrix(0.245710,0.002703,-0.002750,0.249985,0,0);-ms-transform:matrix(0.245710,0.002703,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.245710,0.002703,-0.002750,0.249985,0,0);}
.mde_c01134{transform:matrix(0.246587,0.001973,-0.002000,0.249992,0,0);-ms-transform:matrix(0.246587,0.001973,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.246587,0.001973,-0.002000,0.249992,0,0);}
.m8e_c01134{transform:matrix(0.246940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246940,0.000000,0.000000,0.250000,0,0);}
.mad_c01134{transform:matrix(0.246985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246985,0.000000,0.000000,0.250000,0,0);}
.m68_c01134{transform:matrix(0.247057,0.001235,-0.001250,0.249997,0,0);-ms-transform:matrix(0.247057,0.001235,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.247057,0.001235,-0.001250,0.249997,0,0);}
.mcb_c01134{transform:matrix(0.247280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247280,0.000000,0.000000,0.250000,0,0);}
.mf8_c01134{transform:matrix(0.247542,0.001980,-0.002000,0.249992,0,0);-ms-transform:matrix(0.247542,0.001980,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.247542,0.001980,-0.002000,0.249992,0,0);}
.m3c_c01134{transform:matrix(0.247615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247615,0.000000,0.000000,0.250000,0,0);}
.m4e_c01134{transform:matrix(0.248850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248850,0.000000,0.000000,0.250000,0,0);}
.m6_c01134{transform:matrix(0.249360,-0.002244,0.002250,0.249990,0,0);-ms-transform:matrix(0.249360,-0.002244,0.002250,0.249990,0,0);-webkit-transform:matrix(0.249360,-0.002244,0.002250,0.249990,0,0);}
.m85_c01134{transform:matrix(0.249495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249495,0.000000,0.000000,0.250000,0,0);}
.mb9_c01134{transform:matrix(0.249615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249615,0.000000,0.000000,0.250000,0,0);}
.m48_c01134{transform:matrix(0.250390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250390,0.000000,0.000000,0.250000,0,0);}
.m96_c01134{transform:matrix(0.250395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250395,0.000000,0.000000,0.250000,0,0);}
.m57_c01134{transform:matrix(0.250485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250485,0.000000,0.000000,0.250000,0,0);}
.m54_c01134{transform:matrix(0.250830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250830,0.000000,0.000000,0.250000,0,0);}
.m5f_c01134{transform:matrix(0.251255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251255,0.000000,0.000000,0.250000,0,0);}
.mf4_c01134{transform:matrix(0.251377,0.002011,-0.002000,0.249992,0,0);-ms-transform:matrix(0.251377,0.002011,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.251377,0.002011,-0.002000,0.249992,0,0);}
.m8a_c01134{transform:matrix(0.251395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251395,0.000000,0.000000,0.250000,0,0);}
.mca_c01134{transform:matrix(0.251455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251455,0.000000,0.000000,0.250000,0,0);}
.mcd_c01134{transform:matrix(0.251650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251650,0.000000,0.000000,0.250000,0,0);}
.mac_c01134{transform:matrix(0.251660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251660,0.000000,0.000000,0.250000,0,0);}
.md8_c01134{transform:matrix(0.252532,0.002020,-0.002000,0.249992,0,0);-ms-transform:matrix(0.252532,0.002020,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.252532,0.002020,-0.002000,0.249992,0,0);}
.maf_c01134{transform:matrix(0.252540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252540,0.000000,0.000000,0.250000,0,0);}
.m9d_c01134{transform:matrix(0.252840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252840,0.000000,0.000000,0.250000,0,0);}
.m92_c01134{transform:matrix(0.253285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253285,0.000000,0.000000,0.250000,0,0);}
.m3_c01134{transform:matrix(0.253300,-0.002280,0.002250,0.249990,0,0);-ms-transform:matrix(0.253300,-0.002280,0.002250,0.249990,0,0);-webkit-transform:matrix(0.253300,-0.002280,0.002250,0.249990,0,0);}
.md0_c01134{transform:matrix(0.253760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253760,0.000000,0.000000,0.250000,0,0);}
.m4b_c01134{transform:matrix(0.253970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253970,0.000000,0.000000,0.250000,0,0);}
.m18_c01134{transform:matrix(0.254460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254460,0.000000,0.000000,0.250000,0,0);}
.m9_c01134{transform:matrix(0.254645,-0.002292,0.002250,0.249990,0,0);-ms-transform:matrix(0.254645,-0.002292,0.002250,0.249990,0,0);-webkit-transform:matrix(0.254645,-0.002292,0.002250,0.249990,0,0);}
.mda_c01134{transform:matrix(0.254712,0.002038,-0.002000,0.249992,0,0);-ms-transform:matrix(0.254712,0.002038,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.254712,0.002038,-0.002000,0.249992,0,0);}
.m94_c01134{transform:matrix(0.254745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254745,0.000000,0.000000,0.250000,0,0);}
.m2e_c01134{transform:matrix(0.255775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255775,0.000000,0.000000,0.250000,0,0);}
.m7_c01134{transform:matrix(0.256020,-0.002304,0.002250,0.249990,0,0);-ms-transform:matrix(0.256020,-0.002304,0.002250,0.249990,0,0);-webkit-transform:matrix(0.256020,-0.002304,0.002250,0.249990,0,0);}
.m30_c01134{transform:matrix(0.256070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256070,0.000000,0.000000,0.250000,0,0);}
.me_c01134{transform:matrix(0.258070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258070,0.000000,0.000000,0.250000,0,0);}
.m2c_c01134{transform:matrix(0.258310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258310,0.000000,0.000000,0.250000,0,0);}
.m3d_c01134{transform:matrix(0.258610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258610,0.000000,0.000000,0.250000,0,0);}
.m97_c01134{transform:matrix(0.260285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260285,0.000000,0.000000,0.250000,0,0);}
.m60_c01134{transform:matrix(0.260635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260635,0.000000,0.000000,0.250000,0,0);}
.mce_c01134{transform:matrix(0.260840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260840,0.000000,0.000000,0.250000,0,0);}
.mf2_c01134{transform:matrix(0.261277,0.002090,-0.002000,0.249992,0,0);-ms-transform:matrix(0.261277,0.002090,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.261277,0.002090,-0.002000,0.249992,0,0);}
.me3_c01134{transform:matrix(0.262367,0.002099,-0.002000,0.249992,0,0);-ms-transform:matrix(0.262367,0.002099,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.262367,0.002099,-0.002000,0.249992,0,0);}
.m1e_c01134{transform:matrix(0.262475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262475,0.000000,0.000000,0.250000,0,0);}
.m7f_c01134{transform:matrix(0.262565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262565,0.000000,0.000000,0.250000,0,0);}
.m8c_c01134{transform:matrix(0.262720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262720,0.000000,0.000000,0.250000,0,0);}
.m13_c01134{transform:matrix(0.264080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264080,0.000000,0.000000,0.250000,0,0);}
.m46_c01134{transform:matrix(0.264810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264810,0.000000,0.000000,0.250000,0,0);}
.m56_c01134{transform:matrix(0.264945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264945,0.000000,0.000000,0.250000,0,0);}
.m5b_c01134{transform:matrix(0.264985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264985,0.000000,0.000000,0.250000,0,0);}
.m62_c01134{transform:matrix(0.265127,0.001326,-0.001250,0.249997,0,0);-ms-transform:matrix(0.265127,0.001326,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.265127,0.001326,-0.001250,0.249997,0,0);}
.mf0_c01134{transform:matrix(0.265312,0.002122,-0.002000,0.249992,0,0);-ms-transform:matrix(0.265312,0.002122,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.265312,0.002122,-0.002000,0.249992,0,0);}
.md2_c01134{transform:matrix(0.265901,0.002127,-0.002000,0.249992,0,0);-ms-transform:matrix(0.265901,0.002127,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.265901,0.002127,-0.002000,0.249992,0,0);}
.m87_c01134{transform:matrix(0.266155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266155,0.000000,0.000000,0.250000,0,0);}
.me9_c01134{transform:matrix(0.266219,0.002928,-0.002750,0.249985,0,0);-ms-transform:matrix(0.266219,0.002928,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.266219,0.002928,-0.002750,0.249985,0,0);}
.m38_c01134{transform:matrix(0.266265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266265,0.000000,0.000000,0.250000,0,0);}
.mec_c01134{transform:matrix(0.266504,0.002932,-0.002750,0.249985,0,0);-ms-transform:matrix(0.266504,0.002932,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.266504,0.002932,-0.002750,0.249985,0,0);}
.m3a_c01134{transform:matrix(0.266690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266690,0.000000,0.000000,0.250000,0,0);}
.m1d_c01134{transform:matrix(0.266880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266880,0.000000,0.000000,0.250000,0,0);}
.m4f_c01134{transform:matrix(0.266975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266975,0.000000,0.000000,0.250000,0,0);}
.m84_c01134{transform:matrix(0.267170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267170,0.000000,0.000000,0.250000,0,0);}
.m20_c01134{transform:matrix(0.267570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267570,0.000000,0.000000,0.250000,0,0);}
.m31_c01134{transform:matrix(0.268335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268335,0.000000,0.000000,0.250000,0,0);}
.mfa_c01134{transform:matrix(0.268361,0.002147,-0.002000,0.249992,0,0);-ms-transform:matrix(0.268361,0.002147,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.268361,0.002147,-0.002000,0.249992,0,0);}
.me4_c01134{transform:matrix(0.268684,0.002956,-0.002750,0.249985,0,0);-ms-transform:matrix(0.268684,0.002956,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.268684,0.002956,-0.002750,0.249985,0,0);}
.mdf_c01134{transform:matrix(0.268836,0.002151,-0.002000,0.249992,0,0);-ms-transform:matrix(0.268836,0.002151,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.268836,0.002151,-0.002000,0.249992,0,0);}
.mf5_c01134{transform:matrix(0.269026,0.002152,-0.002000,0.249992,0,0);-ms-transform:matrix(0.269026,0.002152,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.269026,0.002152,-0.002000,0.249992,0,0);}
.m72_c01134{transform:matrix(0.269425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269425,0.000000,0.000000,0.250000,0,0);}
.m89_c01134{transform:matrix(0.269535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269535,0.000000,0.000000,0.250000,0,0);}
.mc7_c01134{transform:matrix(0.269707,0.001349,-0.001250,0.249997,0,0);-ms-transform:matrix(0.269707,0.001349,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.269707,0.001349,-0.001250,0.249997,0,0);}
.m99_c01134{transform:matrix(0.269805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269805,0.000000,0.000000,0.250000,0,0);}
.m9a_c01134{transform:matrix(0.270100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270100,0.000000,0.000000,0.250000,0,0);}
.m37_c01134{transform:matrix(0.270355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270355,0.000000,0.000000,0.250000,0,0);}
.me1_c01134{transform:matrix(0.270836,0.002167,-0.002000,0.249992,0,0);-ms-transform:matrix(0.270836,0.002167,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.270836,0.002167,-0.002000,0.249992,0,0);}
.m9f_c01134{transform:matrix(0.271110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271110,0.000000,0.000000,0.250000,0,0);}
.m11_c01134{transform:matrix(0.271260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271260,0.000000,0.000000,0.250000,0,0);}
.m90_c01134{transform:matrix(0.272080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272080,0.000000,0.000000,0.250000,0,0);}
.m9e_c01134{transform:matrix(0.272160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272160,0.000000,0.000000,0.250000,0,0);}
.mf_c01134{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.md3_c01134{transform:matrix(0.273011,0.002184,-0.002000,0.249992,0,0);-ms-transform:matrix(0.273011,0.002184,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.273011,0.002184,-0.002000,0.249992,0,0);}
.m39_c01134{transform:matrix(0.273095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273095,0.000000,0.000000,0.250000,0,0);}
.m28_c01134{transform:matrix(0.273190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273190,0.000000,0.000000,0.250000,0,0);}
.md7_c01134{transform:matrix(0.273316,0.002187,-0.002000,0.249992,0,0);-ms-transform:matrix(0.273316,0.002187,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.273316,0.002187,-0.002000,0.249992,0,0);}
.m64_c01134{transform:matrix(0.273607,0.001368,-0.001250,0.249997,0,0);-ms-transform:matrix(0.273607,0.001368,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.273607,0.001368,-0.001250,0.249997,0,0);}
.m27_c01134{transform:matrix(0.273730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273730,0.000000,0.000000,0.250000,0,0);}
.m1b_c01134{transform:matrix(0.274775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274775,0.000000,0.000000,0.250000,0,0);}
.me7_c01134{transform:matrix(0.275888,0.003035,-0.002750,0.249985,0,0);-ms-transform:matrix(0.275888,0.003035,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.275888,0.003035,-0.002750,0.249985,0,0);}
.m80_c01134{transform:matrix(0.276100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276100,0.000000,0.000000,0.250000,0,0);}
.mdd_c01134{transform:matrix(0.276691,0.002214,-0.002000,0.249992,0,0);-ms-transform:matrix(0.276691,0.002214,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.276691,0.002214,-0.002000,0.249992,0,0);}
.m9c_c01134{transform:matrix(0.276700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276700,0.000000,0.000000,0.250000,0,0);}
.m8b_c01134{transform:matrix(0.276810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276810,0.000000,0.000000,0.250000,0,0);}
.mf6_c01134{transform:matrix(0.277576,0.002221,-0.002000,0.249992,0,0);-ms-transform:matrix(0.277576,0.002221,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.277576,0.002221,-0.002000,0.249992,0,0);}
.mb6_c01134{transform:matrix(0.278015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278015,0.000000,0.000000,0.250000,0,0);}
.m1a_c01134{transform:matrix(0.278335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278335,0.000000,0.000000,0.250000,0,0);}
.m67_c01134{transform:matrix(0.278747,0.001394,-0.001250,0.249997,0,0);-ms-transform:matrix(0.278747,0.001394,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.278747,0.001394,-0.001250,0.249997,0,0);}
.m15_c01134{transform:matrix(0.278850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278850,0.000000,0.000000,0.250000,0,0);}
.m34_c01134{transform:matrix(0.280435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280435,0.000000,0.000000,0.250000,0,0);}
.m69_c01134{transform:matrix(0.280801,0.001404,-0.001250,0.249997,0,0);-ms-transform:matrix(0.280801,0.001404,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.280801,0.001404,-0.001250,0.249997,0,0);}
.m29_c01134{transform:matrix(0.281085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281085,0.000000,0.000000,0.250000,0,0);}
.m70_c01134{transform:matrix(0.281180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281180,0.000000,0.000000,0.250000,0,0);}
.mb7_c01134{transform:matrix(0.281530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281530,0.000000,0.000000,0.250000,0,0);}
.m47_c01134{transform:matrix(0.281575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281575,0.000000,0.000000,0.250000,0,0);}
.m19_c01134{transform:matrix(0.282665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282665,0.000000,0.000000,0.250000,0,0);}
.m66_c01134{transform:matrix(0.283206,0.001416,-0.001250,0.249997,0,0);-ms-transform:matrix(0.283206,0.001416,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.283206,0.001416,-0.001250,0.249997,0,0);}
.m3b_c01134{transform:matrix(0.283565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283565,0.000000,0.000000,0.250000,0,0);}
.ma6_c01134{transform:matrix(0.283740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283740,0.000000,0.000000,0.250000,0,0);}
.m9b_c01134{transform:matrix(0.284150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284150,0.000000,0.000000,0.250000,0,0);}
.m41_c01134{transform:matrix(0.285420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285420,0.000000,0.000000,0.250000,0,0);}
.m83_c01134{transform:matrix(0.285590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285590,0.000000,0.000000,0.250000,0,0);}
.md5_c01134{transform:matrix(0.286616,0.002293,-0.002000,0.249992,0,0);-ms-transform:matrix(0.286616,0.002293,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.286616,0.002293,-0.002000,0.249992,0,0);}
.m2a_c01134{transform:matrix(0.287725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287725,0.000000,0.000000,0.250000,0,0);}
.m35_c01134{transform:matrix(0.289480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289480,0.000000,0.000000,0.250000,0,0);}
.m6c_c01134{transform:matrix(0.291681,0.001458,-0.001250,0.249997,0,0);-ms-transform:matrix(0.291681,0.001458,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.291681,0.001458,-0.001250,0.249997,0,0);}
.mba_c01134{transform:matrix(0.292265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292265,0.000000,0.000000,0.250000,0,0);}
.mdc_c01134{transform:matrix(0.292491,0.002340,-0.002000,0.249992,0,0);-ms-transform:matrix(0.292491,0.002340,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.292491,0.002340,-0.002000,0.249992,0,0);}
.m44_c01134{transform:matrix(0.292745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292745,0.000000,0.000000,0.250000,0,0);}
.m21_c01134{transform:matrix(0.293035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293035,0.000000,0.000000,0.250000,0,0);}
.m42_c01134{transform:matrix(0.293270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293270,0.000000,0.000000,0.250000,0,0);}
.m49_c01134{transform:matrix(0.294275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294275,0.000000,0.000000,0.250000,0,0);}
.mb8_c01134{transform:matrix(0.295030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295030,0.000000,0.000000,0.250000,0,0);}
.m6b_c01134{transform:matrix(0.295281,0.001476,-0.001250,0.249997,0,0);-ms-transform:matrix(0.295281,0.001476,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.295281,0.001476,-0.001250,0.249997,0,0);}
.m26_c01134{transform:matrix(0.295930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295930,0.000000,0.000000,0.250000,0,0);}
.mfb_c01134{transform:matrix(0.298175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298175,0.000000,0.000000,0.250000,0,0);}
.m40_c01134{transform:matrix(0.298460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298460,0.000000,0.000000,0.250000,0,0);}
.m6d_c01134{transform:matrix(0.299476,0.001497,-0.001250,0.249997,0,0);-ms-transform:matrix(0.299476,0.001497,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.299476,0.001497,-0.001250,0.249997,0,0);}
.m22_c01134{transform:matrix(0.300270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300270,0.000000,0.000000,0.250000,0,0);}
.mb5_c01134{transform:matrix(0.306020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306020,0.000000,0.000000,0.250000,0,0);}
.m24_c01134{transform:matrix(0.309495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309495,0.000000,0.000000,0.250000,0,0);}
.mdb_c01134{transform:matrix(0.311620,0.002493,-0.002000,0.249992,0,0);-ms-transform:matrix(0.311620,0.002493,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.311620,0.002493,-0.002000,0.249992,0,0);}
.m6e_c01134{transform:matrix(0.312201,0.001561,-0.001250,0.249997,0,0);-ms-transform:matrix(0.312201,0.001561,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.312201,0.001561,-0.001250,0.249997,0,0);}
.m5c_c01134{transform:matrix(0.323575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323575,0.000000,0.000000,0.250000,0,0);}
.v0_c01134{vertical-align:0.000000px;}
.v1_c01134{vertical-align:3.306000px;}
.ls0_c01134{letter-spacing:0.000000px;}
.sc__c01134{text-shadow:none;}
.sc0_c01134{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__c01134{-webkit-text-stroke:0px transparent;}
.sc0_c01134{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01134{word-spacing:0.000000px;}
._0_c01134{width:10644.723653px;}
.fc0_c01134{color:transparent;}
.fs3_c01134{font-size:66.000000px;}
.fs5_c01134{font-size:66.000825px;}
.fs2_c01134{font-size:72.000000px;}
.fs4_c01134{font-size:72.000900px;}
.fsa_c01134{font-size:72.002304px;}
.fsb_c01134{font-size:72.004356px;}
.fs0_c01134{font-size:78.000000px;}
.fs1_c01134{font-size:78.003159px;}
.fs6_c01134{font-size:84.000000px;}
.fs8_c01134{font-size:84.001050px;}
.fs7_c01134{font-size:114.000000px;}
.fs9_c01134{font-size:126.001575px;}
.y0_c01134{bottom:0.000000px;}
.y72_c01134{bottom:31.415184px;}
.y71_c01134{bottom:31.760580px;}
.y70_c01134{bottom:32.050560px;}
.y6f_c01134{bottom:32.311704px;}
.y6e_c01134{bottom:33.201816px;}
.y6d_c01134{bottom:33.819648px;}
.y6c_c01134{bottom:34.355364px;}
.y6b_c01134{bottom:34.709604px;}
.y6a_c01134{bottom:35.243136px;}
.y69_c01134{bottom:35.502276px;}
.y68_c01134{bottom:36.193440px;}
.y67_c01134{bottom:36.450000px;}
.y66_c01134{bottom:66.230989px;}
.y65_c01134{bottom:66.590442px;}
.y64_c01134{bottom:67.324147px;}
.y63_c01134{bottom:67.796312px;}
.y62_c01134{bottom:68.164575px;}
.y61_c01134{bottom:69.130023px;}
.y60_c01134{bottom:69.631854px;}
.y5f_c01134{bottom:70.496140px;}
.y5e_c01134{bottom:70.852524px;}
.y5d_c01134{bottom:71.461242px;}
.y5c_c01134{bottom:72.643500px;}
.y5b_c01134{bottom:104.632140px;}
.y5a_c01134{bottom:104.869776px;}
.y59_c01134{bottom:105.487704px;}
.y58_c01134{bottom:106.089168px;}
.y57_c01134{bottom:106.727640px;}
.y56_c01134{bottom:107.033916px;}
.y55_c01134{bottom:107.729940px;}
.y54_c01134{bottom:138.421956px;}
.y53_c01134{bottom:138.607332px;}
.y52_c01134{bottom:139.069884px;}
.y51_c01134{bottom:139.324824px;}
.y50_c01134{bottom:139.858356px;}
.y4f_c01134{bottom:140.666376px;}
.y4e_c01134{bottom:140.841072px;}
.y4d_c01134{bottom:141.990468px;}
.y4c_c01134{bottom:142.351164px;}
.y4b_c01134{bottom:143.230272px;}
.y4a_c01134{bottom:143.938536px;}
.y49_c01134{bottom:144.180000px;}
.y48_c01134{bottom:175.606500px;}
.y46_c01134{bottom:210.743355px;}
.y47_c01134{bottom:210.743663px;}
.y45_c01134{bottom:245.519243px;}
.y44_c01134{bottom:245.862188px;}
.y43_c01134{bottom:246.467213px;}
.y42_c01134{bottom:246.631763px;}
.y41_c01134{bottom:247.077263px;}
.y40_c01134{bottom:247.468890px;}
.y3f_c01134{bottom:247.850828px;}
.y3e_c01134{bottom:248.128928px;}
.y3d_c01134{bottom:248.460990px;}
.y3c_c01134{bottom:248.784930px;}
.y3b_c01134{bottom:248.940000px;}
.y3a_c01134{bottom:284.574000px;}
.y37_c01134{bottom:321.031500px;}
.y38_c01134{bottom:321.322500px;}
.y39_c01134{bottom:323.665500px;}
.y36_c01134{bottom:352.543500px;}
.y35_c01134{bottom:391.393500px;}
.y34_c01134{bottom:423.900000px;}
.y33_c01134{bottom:460.890000px;}
.y32_c01134{bottom:497.988000px;}
.y31_c01134{bottom:533.796000px;}
.y30_c01134{bottom:568.185000px;}
.y2f_c01134{bottom:605.016000px;}
.y2e_c01134{bottom:639.180000px;}
.y2d_c01134{bottom:674.180617px;}
.y2c_c01134{bottom:674.180910px;}
.y29_c01134{bottom:674.181645px;}
.y2b_c01134{bottom:674.181652px;}
.y2a_c01134{bottom:674.181945px;}
.y73_c01134{bottom:686.610000px;}
.y28_c01134{bottom:707.116935px;}
.y27_c01134{bottom:707.432700px;}
.y26_c01134{bottom:708.171128px;}
.y25_c01134{bottom:708.940732px;}
.y24_c01134{bottom:709.170105px;}
.y23_c01134{bottom:709.615612px;}
.y22_c01134{bottom:709.781633px;}
.y21_c01134{bottom:710.221657px;}
.y20_c01134{bottom:710.370000px;}
.y1f_c01134{bottom:743.692500px;}
.y1e_c01134{bottom:815.556000px;}
.y1d_c01134{bottom:851.170500px;}
.y1c_c01134{bottom:887.664000px;}
.y1b_c01134{bottom:921.711000px;}
.y1a_c01134{bottom:958.504500px;}
.y19_c01134{bottom:992.359500px;}
.y18_c01134{bottom:1027.179000px;}
.ye_c01134{bottom:1060.830000px;}
.yf_c01134{bottom:1061.044500px;}
.y10_c01134{bottom:1061.655000px;}
.y11_c01134{bottom:1061.889000px;}
.y12_c01134{bottom:1062.672000px;}
.y13_c01134{bottom:1062.985500px;}
.y14_c01134{bottom:1063.281000px;}
.y15_c01134{bottom:1063.674000px;}
.y16_c01134{bottom:1064.446500px;}
.y17_c01134{bottom:1065.076500px;}
.yd_c01134{bottom:1099.126500px;}
.y2_c01134{bottom:1130.221500px;}
.y3_c01134{bottom:1130.916642px;}
.y4_c01134{bottom:1131.817875px;}
.y5_c01134{bottom:1132.007779px;}
.y6_c01134{bottom:1132.906866px;}
.y7_c01134{bottom:1133.910375px;}
.y8_c01134{bottom:1134.321207px;}
.y9_c01134{bottom:1135.302887px;}
.ya_c01134{bottom:1135.706253px;}
.yb_c01134{bottom:1136.318302px;}
.yc_c01134{bottom:1136.515187px;}
.y1_c01134{bottom:1187.850000px;}
.h5_c01134{height:66.000000px;}
.h7_c01134{height:66.000825px;}
.h4_c01134{height:72.000000px;}
.h6_c01134{height:72.000900px;}
.hd_c01134{height:72.002304px;}
.he_c01134{height:72.004356px;}
.h2_c01134{height:78.000000px;}
.h3_c01134{height:78.003159px;}
.h8_c01134{height:84.000000px;}
.hb_c01134{height:84.001050px;}
.h9_c01134{height:114.000000px;}
.ha_c01134{height:117.306000px;}
.hc_c01134{height:126.001575px;}
.h0_c01134{height:1246.320000px;}
.h1_c01134{height:1246.500000px;}
.w0_c01134{width:898.500000px;}
.x0_c01134{left:0.000000px;}
.x43_c01134{left:51.840000px;}
.x4_c01134{left:59.533500px;}
.x13_c01134{left:107.245500px;}
.x25_c01134{left:108.270000px;}
.x48_c01134{left:110.139000px;}
.x5a_c01134{left:111.240000px;}
.x6c_c01134{left:112.320000px;}
.x7c_c01134{left:113.400000px;}
.x8a_c01134{left:114.480000px;}
.xa8_c01134{left:115.506000px;}
.x72_c01134{left:126.900000px;}
.x5_c01134{left:136.771500px;}
.x14_c01134{left:137.803500px;}
.x26_c01134{left:139.050000px;}
.x1b_c01134{left:140.400000px;}
.x4f_c01134{left:142.290000px;}
.x52_c01134{left:143.370000px;}
.x82_c01134{left:144.921000px;}
.xa9_c01134{left:147.576000px;}
.x5e_c01134{left:186.030000px;}
.x1c_c01134{left:195.210000px;}
.x27_c01134{left:204.930000px;}
.x83_c01134{left:209.709000px;}
.x8b_c01134{left:210.870000px;}
.xf_c01134{left:214.650000px;}
.x24_c01134{left:216.540000px;}
.x65_c01134{left:219.780000px;}
.x7b_c01134{left:220.978500px;}
.x9b_c01134{left:223.189860px;}
.x15_c01134{left:225.016500px;}
.x2c_c01134{left:227.880000px;}
.x4d_c01134{left:229.230540px;}
.x76_c01134{left:231.390000px;}
.x91_c01134{left:233.433000px;}
.x6_c01134{left:236.908500px;}
.x32_c01134{left:238.950000px;}
.x53_c01134{left:240.300000px;}
.x39_c01134{left:250.020000px;}
.x6d_c01134{left:252.450000px;}
.x67_c01134{left:253.530000px;}
.x8c_c01134{left:254.880000px;}
.x7_c01134{left:258.009000px;}
.x2d_c01134{left:260.550000px;}
.xaa_c01134{left:266.364000px;}
.x10_c01134{left:270.540000px;}
.x50_c01134{left:272.970000px;}
.x73_c01134{left:275.130000px;}
.xa1_c01134{left:277.126500px;}
.x44_c01134{left:282.420000px;}
.x3a_c01134{left:283.500000px;}
.x7d_c01134{left:287.010000px;}
.x5f_c01134{left:296.730000px;}
.x1d_c01134{left:304.290000px;}
.x51_c01134{left:307.260000px;}
.xa2_c01134{left:309.525000px;}
.x3b_c01134{left:316.710000px;}
.x66_c01134{left:318.060000px;}
.x74_c01134{left:319.410000px;}
.x89_c01134{left:320.488688px;}
.x9c_c01134{left:322.568652px;}
.x33_c01134{left:328.050000px;}
.x84_c01134{left:331.741500px;}
.xab_c01134{left:333.055500px;}
.x5b_c01134{left:340.200000px;}
.x60_c01134{left:341.820000px;}
.x92_c01134{left:343.321500px;}
.x28_c01134{left:348.570000px;}
.x49_c01134{left:350.118000px;}
.x75_c01134{left:355.320000px;}
.x8_c01134{left:357.907500px;}
.x45_c01134{left:359.370000px;}
.x68_c01134{left:361.800000px;}
.x9d_c01134{left:366.291000px;}
.x16_c01134{left:370.276500px;}
.x77_c01134{left:375.840000px;}
.x8d_c01134{left:378.270000px;}
.x1_c01134{left:380.160000px;}
.x3c_c01134{left:382.860000px;}
.x54_c01134{left:385.830000px;}
.x93_c01134{left:388.408500px;}
.x11_c01134{left:392.310000px;}
.x4a_c01134{left:395.992500px;}
.x7e_c01134{left:397.440000px;}
.x2_c01134{left:401.760000px;}
.x55_c01134{left:407.160000px;}
.x17_c01134{left:415.095000px;}
.x12_c01134{left:424.170000px;}
.x3d_c01134{left:427.680000px;}
.x5c_c01134{left:430.110000px;}
.xa3_c01134{left:433.717500px;}
.x69_c01134{left:441.180000px;}
.x78_c01134{left:442.530000px;}
.xac_c01134{left:444.300000px;}
.x3_c01134{left:446.580000px;}
.x34_c01134{left:449.550000px;}
.x4e_c01134{left:451.443090px;}
.x7f_c01134{left:452.790000px;}
.x18_c01134{left:457.213500px;}
.x1e_c01134{left:460.080000px;}
.x8e_c01134{left:464.670000px;}
.x9_c01134{left:469.408500px;}
.x29_c01134{left:471.690000px;}
.x61_c01134{left:474.390000px;}
.x3e_c01134{left:482.490000px;}
.x6a_c01134{left:486.000000px;}
.x56_c01134{left:494.910000px;}
.x46_c01134{left:504.360000px;}
.x8f_c01134{left:510.300000px;}
.x19_c01134{left:513.385500px;}
.xa_c01134{left:515.056500px;}
.x6e_c01134{left:518.940000px;}
.xa4_c01134{left:521.485500px;}
.x2e_c01134{left:524.880000px;}
.x35_c01134{left:526.770000px;}
.x80_c01134{left:530.550000px;}
.x94_c01134{left:532.083000px;}
.x79_c01134{left:540.540000px;}
.x9e_c01134{left:543.409416px;}
.x3f_c01134{left:549.180000px;}
.x5d_c01134{left:550.800000px;}
.x95_c01134{left:553.920000px;}
.xa5_c01134{left:554.964000px;}
.x2a_c01134{left:559.710000px;}
.x81_c01134{left:564.300000px;}
.x85_c01134{left:575.554500px;}
.x57_c01134{left:582.660000px;}
.x6b_c01134{left:583.740000px;}
.x2b_c01134{left:592.920000px;}
.x36_c01134{left:594.540000px;}
.x62_c01134{left:595.890000px;}
.xa6_c01134{left:597.888000px;}
.x1f_c01134{left:603.720000px;}
.x86_c01134{left:608.464500px;}
.x6f_c01134{left:619.380000px;}
.xb_c01134{left:624.132000px;}
.x2f_c01134{left:626.670000px;}
.x58_c01134{left:628.290000px;}
.x9f_c01134{left:631.713624px;}
.xad_c01134{left:632.793000px;}
.x20_c01134{left:635.850000px;}
.x70_c01134{left:640.440000px;}
.x30_c01134{left:648.540000px;}
.x96_c01134{left:654.922500px;}
.x40_c01134{left:660.960000px;}
.x7a_c01134{left:662.580000px;}
.xa7_c01134{left:664.588500px;}
.xa0_c01134{left:665.730900px;}
.xc_c01134{left:668.950500px;}
.x37_c01134{left:670.950000px;}
.x59_c01134{left:672.300000px;}
.x4b_c01134{left:697.599000px;}
.xae_c01134{left:701.683500px;}
.x38_c01134{left:702.810000px;}
.x90_c01134{left:709.830000px;}
.x1a_c01134{left:713.710500px;}
.x47_c01134{left:715.770000px;}
.x97_c01134{left:721.614000px;}
.x21_c01134{left:725.760000px;}
.x31_c01134{left:727.110000px;}
.x87_c01134{left:729.469500px;}
.xd_c01134{left:736.956000px;}
.x71_c01134{left:742.230000px;}
.xaf_c01134{left:744.858000px;}
.x41_c01134{left:749.520000px;}
.x63_c01134{left:751.950000px;}
.x98_c01134{left:753.481500px;}
.xe_c01134{left:758.832000px;}
.x4c_c01134{left:760.752000px;}
.x22_c01134{left:770.040000px;}
.x42_c01134{left:780.840000px;}
.x64_c01134{left:794.880000px;}
.x88_c01134{left:798.058500px;}
.x23_c01134{left:802.710000px;}
.x99_c01134{left:811.300500px;}
.x9a_c01134{left:834.472500px;}
.xb0_c01134{left:875.070000px;}
@media print{
.v0_c01134{vertical-align:0.000000pt;}
.v1_c01134{vertical-align:2.938667pt;}
.ls0_c01134{letter-spacing:0.000000pt;}
.ws0_c01134{word-spacing:0.000000pt;}
._0_c01134{width:9461.976581pt;}
.fs3_c01134{font-size:58.666667pt;}
.fs5_c01134{font-size:58.667400pt;}
.fs2_c01134{font-size:64.000000pt;}
.fs4_c01134{font-size:64.000800pt;}
.fsa_c01134{font-size:64.002048pt;}
.fsb_c01134{font-size:64.003872pt;}
.fs0_c01134{font-size:69.333333pt;}
.fs1_c01134{font-size:69.336141pt;}
.fs6_c01134{font-size:74.666667pt;}
.fs8_c01134{font-size:74.667600pt;}
.fs7_c01134{font-size:101.333333pt;}
.fs9_c01134{font-size:112.001400pt;}
.y0_c01134{bottom:0.000000pt;}
.y72_c01134{bottom:27.924608pt;}
.y71_c01134{bottom:28.231627pt;}
.y70_c01134{bottom:28.489387pt;}
.y6f_c01134{bottom:28.721515pt;}
.y6e_c01134{bottom:29.512725pt;}
.y6d_c01134{bottom:30.061909pt;}
.y6c_c01134{bottom:30.538101pt;}
.y6b_c01134{bottom:30.852981pt;}
.y6a_c01134{bottom:31.327232pt;}
.y69_c01134{bottom:31.557579pt;}
.y68_c01134{bottom:32.171947pt;}
.y67_c01134{bottom:32.400000pt;}
.y66_c01134{bottom:58.871991pt;}
.y65_c01134{bottom:59.191504pt;}
.y64_c01134{bottom:59.843687pt;}
.y63_c01134{bottom:60.263388pt;}
.y62_c01134{bottom:60.590733pt;}
.y61_c01134{bottom:61.448909pt;}
.y60_c01134{bottom:61.894981pt;}
.y5f_c01134{bottom:62.663236pt;}
.y5e_c01134{bottom:62.980021pt;}
.y5d_c01134{bottom:63.521104pt;}
.y5c_c01134{bottom:64.572000pt;}
.y5b_c01134{bottom:93.006347pt;}
.y5a_c01134{bottom:93.217579pt;}
.y59_c01134{bottom:93.766848pt;}
.y58_c01134{bottom:94.301483pt;}
.y57_c01134{bottom:94.869013pt;}
.y56_c01134{bottom:95.141259pt;}
.y55_c01134{bottom:95.759947pt;}
.y54_c01134{bottom:123.041739pt;}
.y53_c01134{bottom:123.206517pt;}
.y52_c01134{bottom:123.617675pt;}
.y51_c01134{bottom:123.844288pt;}
.y50_c01134{bottom:124.318539pt;}
.y4f_c01134{bottom:125.036779pt;}
.y4e_c01134{bottom:125.192064pt;}
.y4d_c01134{bottom:126.213749pt;}
.y4c_c01134{bottom:126.534368pt;}
.y4b_c01134{bottom:127.315797pt;}
.y4a_c01134{bottom:127.945365pt;}
.y49_c01134{bottom:128.160000pt;}
.y48_c01134{bottom:156.094667pt;}
.y46_c01134{bottom:187.327427pt;}
.y47_c01134{bottom:187.327700pt;}
.y45_c01134{bottom:218.239327pt;}
.y44_c01134{bottom:218.544167pt;}
.y43_c01134{bottom:219.081967pt;}
.y42_c01134{bottom:219.228233pt;}
.y41_c01134{bottom:219.624233pt;}
.y40_c01134{bottom:219.972347pt;}
.y3f_c01134{bottom:220.311847pt;}
.y3e_c01134{bottom:220.559047pt;}
.y3d_c01134{bottom:220.854213pt;}
.y3c_c01134{bottom:221.142160pt;}
.y3b_c01134{bottom:221.280000pt;}
.y3a_c01134{bottom:252.954667pt;}
.y37_c01134{bottom:285.361333pt;}
.y38_c01134{bottom:285.620000pt;}
.y39_c01134{bottom:287.702667pt;}
.y36_c01134{bottom:313.372000pt;}
.y35_c01134{bottom:347.905333pt;}
.y34_c01134{bottom:376.800000pt;}
.y33_c01134{bottom:409.680000pt;}
.y32_c01134{bottom:442.656000pt;}
.y31_c01134{bottom:474.485333pt;}
.y30_c01134{bottom:505.053333pt;}
.y2f_c01134{bottom:537.792000pt;}
.y2e_c01134{bottom:568.160000pt;}
.y2d_c01134{bottom:599.271660pt;}
.y2c_c01134{bottom:599.271920pt;}
.y29_c01134{bottom:599.272573pt;}
.y2b_c01134{bottom:599.272580pt;}
.y2a_c01134{bottom:599.272840pt;}
.y73_c01134{bottom:610.320000pt;}
.y28_c01134{bottom:628.548387pt;}
.y27_c01134{bottom:628.829067pt;}
.y26_c01134{bottom:629.485447pt;}
.y25_c01134{bottom:630.169540pt;}
.y24_c01134{bottom:630.373427pt;}
.y23_c01134{bottom:630.769433pt;}
.y22_c01134{bottom:630.917007pt;}
.y21_c01134{bottom:631.308140pt;}
.y20_c01134{bottom:631.440000pt;}
.y1f_c01134{bottom:661.060000pt;}
.y1e_c01134{bottom:724.938667pt;}
.y1d_c01134{bottom:756.596000pt;}
.y1c_c01134{bottom:789.034667pt;}
.y1b_c01134{bottom:819.298667pt;}
.y1a_c01134{bottom:852.004000pt;}
.y19_c01134{bottom:882.097333pt;}
.y18_c01134{bottom:913.048000pt;}
.ye_c01134{bottom:942.960000pt;}
.yf_c01134{bottom:943.150667pt;}
.y10_c01134{bottom:943.693333pt;}
.y11_c01134{bottom:943.901333pt;}
.y12_c01134{bottom:944.597333pt;}
.y13_c01134{bottom:944.876000pt;}
.y14_c01134{bottom:945.138667pt;}
.y15_c01134{bottom:945.488000pt;}
.y16_c01134{bottom:946.174667pt;}
.y17_c01134{bottom:946.734667pt;}
.yd_c01134{bottom:977.001333pt;}
.y2_c01134{bottom:1004.641333pt;}
.y3_c01134{bottom:1005.259237pt;}
.y4_c01134{bottom:1006.060333pt;}
.y5_c01134{bottom:1006.229137pt;}
.y6_c01134{bottom:1007.028325pt;}
.y7_c01134{bottom:1007.920333pt;}
.y8_c01134{bottom:1008.285517pt;}
.y9_c01134{bottom:1009.158121pt;}
.ya_c01134{bottom:1009.516669pt;}
.yb_c01134{bottom:1010.060713pt;}
.yc_c01134{bottom:1010.235721pt;}
.y1_c01134{bottom:1055.866667pt;}
.h5_c01134{height:58.666667pt;}
.h7_c01134{height:58.667400pt;}
.h4_c01134{height:64.000000pt;}
.h6_c01134{height:64.000800pt;}
.hd_c01134{height:64.002048pt;}
.he_c01134{height:64.003872pt;}
.h2_c01134{height:69.333333pt;}
.h3_c01134{height:69.336141pt;}
.h8_c01134{height:74.666667pt;}
.hb_c01134{height:74.667600pt;}
.h9_c01134{height:101.333333pt;}
.ha_c01134{height:104.272000pt;}
.hc_c01134{height:112.001400pt;}
.h0_c01134{height:1107.840000pt;}
.h1_c01134{height:1108.000000pt;}
.w0_c01134{width:798.666667pt;}
.x0_c01134{left:0.000000pt;}
.x43_c01134{left:46.080000pt;}
.x4_c01134{left:52.918667pt;}
.x13_c01134{left:95.329333pt;}
.x25_c01134{left:96.240000pt;}
.x48_c01134{left:97.901333pt;}
.x5a_c01134{left:98.880000pt;}
.x6c_c01134{left:99.840000pt;}
.x7c_c01134{left:100.800000pt;}
.x8a_c01134{left:101.760000pt;}
.xa8_c01134{left:102.672000pt;}
.x72_c01134{left:112.800000pt;}
.x5_c01134{left:121.574667pt;}
.x14_c01134{left:122.492000pt;}
.x26_c01134{left:123.600000pt;}
.x1b_c01134{left:124.800000pt;}
.x4f_c01134{left:126.480000pt;}
.x52_c01134{left:127.440000pt;}
.x82_c01134{left:128.818667pt;}
.xa9_c01134{left:131.178667pt;}
.x5e_c01134{left:165.360000pt;}
.x1c_c01134{left:173.520000pt;}
.x27_c01134{left:182.160000pt;}
.x83_c01134{left:186.408000pt;}
.x8b_c01134{left:187.440000pt;}
.xf_c01134{left:190.800000pt;}
.x24_c01134{left:192.480000pt;}
.x65_c01134{left:195.360000pt;}
.x7b_c01134{left:196.425333pt;}
.x9b_c01134{left:198.390987pt;}
.x15_c01134{left:200.014667pt;}
.x2c_c01134{left:202.560000pt;}
.x4d_c01134{left:203.760480pt;}
.x76_c01134{left:205.680000pt;}
.x91_c01134{left:207.496000pt;}
.x6_c01134{left:210.585333pt;}
.x32_c01134{left:212.400000pt;}
.x53_c01134{left:213.600000pt;}
.x39_c01134{left:222.240000pt;}
.x6d_c01134{left:224.400000pt;}
.x67_c01134{left:225.360000pt;}
.x8c_c01134{left:226.560000pt;}
.x7_c01134{left:229.341333pt;}
.x2d_c01134{left:231.600000pt;}
.xaa_c01134{left:236.768000pt;}
.x10_c01134{left:240.480000pt;}
.x50_c01134{left:242.640000pt;}
.x73_c01134{left:244.560000pt;}
.xa1_c01134{left:246.334667pt;}
.x44_c01134{left:251.040000pt;}
.x3a_c01134{left:252.000000pt;}
.x7d_c01134{left:255.120000pt;}
.x5f_c01134{left:263.760000pt;}
.x1d_c01134{left:270.480000pt;}
.x51_c01134{left:273.120000pt;}
.xa2_c01134{left:275.133333pt;}
.x3b_c01134{left:281.520000pt;}
.x66_c01134{left:282.720000pt;}
.x74_c01134{left:283.920000pt;}
.x89_c01134{left:284.878833pt;}
.x9c_c01134{left:286.727691pt;}
.x33_c01134{left:291.600000pt;}
.x84_c01134{left:294.881333pt;}
.xab_c01134{left:296.049333pt;}
.x5b_c01134{left:302.400000pt;}
.x60_c01134{left:303.840000pt;}
.x92_c01134{left:305.174667pt;}
.x28_c01134{left:309.840000pt;}
.x49_c01134{left:311.216000pt;}
.x75_c01134{left:315.840000pt;}
.x8_c01134{left:318.140000pt;}
.x45_c01134{left:319.440000pt;}
.x68_c01134{left:321.600000pt;}
.x9d_c01134{left:325.592000pt;}
.x16_c01134{left:329.134667pt;}
.x77_c01134{left:334.080000pt;}
.x8d_c01134{left:336.240000pt;}
.x1_c01134{left:337.920000pt;}
.x3c_c01134{left:340.320000pt;}
.x54_c01134{left:342.960000pt;}
.x93_c01134{left:345.252000pt;}
.x11_c01134{left:348.720000pt;}
.x4a_c01134{left:351.993333pt;}
.x7e_c01134{left:353.280000pt;}
.x2_c01134{left:357.120000pt;}
.x55_c01134{left:361.920000pt;}
.x17_c01134{left:368.973333pt;}
.x12_c01134{left:377.040000pt;}
.x3d_c01134{left:380.160000pt;}
.x5c_c01134{left:382.320000pt;}
.xa3_c01134{left:385.526667pt;}
.x69_c01134{left:392.160000pt;}
.x78_c01134{left:393.360000pt;}
.xac_c01134{left:394.933333pt;}
.x3_c01134{left:396.960000pt;}
.x34_c01134{left:399.600000pt;}
.x4e_c01134{left:401.282747pt;}
.x7f_c01134{left:402.480000pt;}
.x18_c01134{left:406.412000pt;}
.x1e_c01134{left:408.960000pt;}
.x8e_c01134{left:413.040000pt;}
.x9_c01134{left:417.252000pt;}
.x29_c01134{left:419.280000pt;}
.x61_c01134{left:421.680000pt;}
.x3e_c01134{left:428.880000pt;}
.x6a_c01134{left:432.000000pt;}
.x56_c01134{left:439.920000pt;}
.x46_c01134{left:448.320000pt;}
.x8f_c01134{left:453.600000pt;}
.x19_c01134{left:456.342667pt;}
.xa_c01134{left:457.828000pt;}
.x6e_c01134{left:461.280000pt;}
.xa4_c01134{left:463.542667pt;}
.x2e_c01134{left:466.560000pt;}
.x35_c01134{left:468.240000pt;}
.x80_c01134{left:471.600000pt;}
.x94_c01134{left:472.962667pt;}
.x79_c01134{left:480.480000pt;}
.x9e_c01134{left:483.030592pt;}
.x3f_c01134{left:488.160000pt;}
.x5d_c01134{left:489.600000pt;}
.x95_c01134{left:492.373333pt;}
.xa5_c01134{left:493.301333pt;}
.x2a_c01134{left:497.520000pt;}
.x81_c01134{left:501.600000pt;}
.x85_c01134{left:511.604000pt;}
.x57_c01134{left:517.920000pt;}
.x6b_c01134{left:518.880000pt;}
.x2b_c01134{left:527.040000pt;}
.x36_c01134{left:528.480000pt;}
.x62_c01134{left:529.680000pt;}
.xa6_c01134{left:531.456000pt;}
.x1f_c01134{left:536.640000pt;}
.x86_c01134{left:540.857333pt;}
.x6f_c01134{left:550.560000pt;}
.xb_c01134{left:554.784000pt;}
.x2f_c01134{left:557.040000pt;}
.x58_c01134{left:558.480000pt;}
.x9f_c01134{left:561.523221pt;}
.xad_c01134{left:562.482667pt;}
.x20_c01134{left:565.200000pt;}
.x70_c01134{left:569.280000pt;}
.x30_c01134{left:576.480000pt;}
.x96_c01134{left:582.153333pt;}
.x40_c01134{left:587.520000pt;}
.x7a_c01134{left:588.960000pt;}
.xa7_c01134{left:590.745333pt;}
.xa0_c01134{left:591.760800pt;}
.xc_c01134{left:594.622667pt;}
.x37_c01134{left:596.400000pt;}
.x59_c01134{left:597.600000pt;}
.x4b_c01134{left:620.088000pt;}
.xae_c01134{left:623.718667pt;}
.x38_c01134{left:624.720000pt;}
.x90_c01134{left:630.960000pt;}
.x1a_c01134{left:634.409333pt;}
.x47_c01134{left:636.240000pt;}
.x97_c01134{left:641.434667pt;}
.x21_c01134{left:645.120000pt;}
.x31_c01134{left:646.320000pt;}
.x87_c01134{left:648.417333pt;}
.xd_c01134{left:655.072000pt;}
.x71_c01134{left:659.760000pt;}
.xaf_c01134{left:662.096000pt;}
.x41_c01134{left:666.240000pt;}
.x63_c01134{left:668.400000pt;}
.x98_c01134{left:669.761333pt;}
.xe_c01134{left:674.517333pt;}
.x4c_c01134{left:676.224000pt;}
.x22_c01134{left:684.480000pt;}
.x42_c01134{left:694.080000pt;}
.x64_c01134{left:706.560000pt;}
.x88_c01134{left:709.385333pt;}
.x23_c01134{left:713.520000pt;}
.x99_c01134{left:721.156000pt;}
.x9a_c01134{left:741.753333pt;}
.xb0_c01134{left:777.840000pt;}
}





/* 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_c01135 {
    display:none;
  }
  .loading-indicator_c01135.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01135 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_c01135 { 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_c01135" -> "#page-container .classname_c01135")
 */
.pf_c01135 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01135 { /* 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_c01135.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01135 { /* 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_c01135 { /* 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_c01135 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01135 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01135 {overflow:visible;}
  }
}
.c_c01135 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01135 { /* 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_c01135:after { /* webkit #35443 */
  content: '';
}
.t_c01135:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01135 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 */
}
.__c01135 { /* 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_c01135 { /* info for Javascript */
  display:none;
}
.l_c01135 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01135 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01135 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01135: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_c01135 {
    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_c01135.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01135.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_c01135 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01135{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01135;src:url('chunks/assets/font_92d6bb63cbc780ceff7db400.woff2')format("woff");}.ff1_c01135{font-family:ff1_c01135;line-height:1.000000;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;}
.m5_c01135{transform:matrix(0.054085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054085,0.000000,0.000000,0.250000,0,0);}
.m7_c01135{transform:matrix(0.100625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100625,0.000000,0.000000,0.250000,0,0);}
.m6_c01135{transform:matrix(0.120935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120935,0.000000,0.000000,0.250000,0,0);}
.m1_c01135{transform:matrix(0.167705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167705,0.000000,0.000000,0.250000,0,0);}
.m2_c01135{transform:matrix(0.244180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244180,0.000000,0.000000,0.250000,0,0);}
.m4_c01135{transform:matrix(0.456510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456510,0.000000,0.000000,0.250000,0,0);}
.m8_c01135{transform:matrix(0.511630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511630,0.000000,0.000000,0.250000,0,0);}
.m0_c01135{transform:matrix(0.666465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.666465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.666465,0.000000,0.000000,0.250000,0,0);}
.m3_c01135{transform:matrix(0.774355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.774355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.774355,0.000000,0.000000,0.250000,0,0);}
.v0_c01135{vertical-align:0.000000px;}
.ls0_c01135{letter-spacing:0.000000px;}
.sc__c01135{text-shadow:none;}
.sc0_c01135{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__c01135{-webkit-text-stroke:0px transparent;}
.sc0_c01135{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01135{word-spacing:0.000000px;}
.fc0_c01135{color:transparent;}
.fs2_c01135{font-size:18.000000px;}
.fs3_c01135{font-size:24.000000px;}
.fs1_c01135{font-size:60.000000px;}
.fs0_c01135{font-size:72.000000px;}
.y0_c01135{bottom:0.000000px;}
.y6_c01135{bottom:800.814000px;}
.y5_c01135{bottom:913.680000px;}
.y4_c01135{bottom:931.767000px;}
.y3_c01135{bottom:934.600500px;}
.y2_c01135{bottom:981.180000px;}
.y1_c01135{bottom:995.760000px;}
.h4_c01135{height:18.000000px;}
.h5_c01135{height:24.000000px;}
.h3_c01135{height:60.000000px;}
.h2_c01135{height:72.000000px;}
.h0_c01135{height:1246.320000px;}
.h1_c01135{height:1246.500000px;}
.w0_c01135{width:898.500000px;}
.x0_c01135{left:0.000000px;}
.x8_c01135{left:431.460000px;}
.x3_c01135{left:739.530000px;}
.x6_c01135{left:752.490000px;}
.x4_c01135{left:753.570000px;}
.x7_c01135{left:764.640000px;}
.x5_c01135{left:771.930000px;}
.x1_c01135{left:808.110000px;}
.x2_c01135{left:834.570000px;}
@media print{
.v0_c01135{vertical-align:0.000000pt;}
.ls0_c01135{letter-spacing:0.000000pt;}
.ws0_c01135{word-spacing:0.000000pt;}
.fs2_c01135{font-size:16.000000pt;}
.fs3_c01135{font-size:21.333333pt;}
.fs1_c01135{font-size:53.333333pt;}
.fs0_c01135{font-size:64.000000pt;}
.y0_c01135{bottom:0.000000pt;}
.y6_c01135{bottom:711.834667pt;}
.y5_c01135{bottom:812.160000pt;}
.y4_c01135{bottom:828.237333pt;}
.y3_c01135{bottom:830.756000pt;}
.y2_c01135{bottom:872.160000pt;}
.y1_c01135{bottom:885.120000pt;}
.h4_c01135{height:16.000000pt;}
.h5_c01135{height:21.333333pt;}
.h3_c01135{height:53.333333pt;}
.h2_c01135{height:64.000000pt;}
.h0_c01135{height:1107.840000pt;}
.h1_c01135{height:1108.000000pt;}
.w0_c01135{width:798.666667pt;}
.x0_c01135{left:0.000000pt;}
.x8_c01135{left:383.520000pt;}
.x3_c01135{left:657.360000pt;}
.x6_c01135{left:668.880000pt;}
.x4_c01135{left:669.840000pt;}
.x7_c01135{left:679.680000pt;}
.x5_c01135{left:686.160000pt;}
.x1_c01135{left:718.320000pt;}
.x2_c01135{left:741.840000pt;}
}





/* 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_c01136 {
    display:none;
  }
  .loading-indicator_c01136.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01136 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_c01136 { 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_c01136" -> "#page-container .classname_c01136")
 */
.pf_c01136 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01136 { /* 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_c01136.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01136 { /* 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_c01136 { /* 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_c01136 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01136 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01136 {overflow:visible;}
  }
}
.c_c01136 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01136 { /* 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_c01136:after { /* webkit #35443 */
  content: '';
}
.t_c01136:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01136 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 */
}
.__c01136 { /* 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_c01136 { /* info for Javascript */
  display:none;
}
.l_c01136 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01136 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01136 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01136: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_c01136 {
    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_c01136.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01136.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_c01136 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01136{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01136;src:url('chunks/assets/font_c605e72f209fc835e906f064.woff2')format("woff");}.ff1_c01136{font-family:ff1_c01136;line-height:1.000000;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;}
.m55_c01136{transform:matrix(0.013519,-0.000135,0.002500,0.249988,0,0);-ms-transform:matrix(0.013519,-0.000135,0.002500,0.249988,0,0);-webkit-transform:matrix(0.013519,-0.000135,0.002500,0.249988,0,0);}
.m65_c01136{transform:matrix(0.117145,-0.001523,0.003250,0.249979,0,0);-ms-transform:matrix(0.117145,-0.001523,0.003250,0.249979,0,0);-webkit-transform:matrix(0.117145,-0.001523,0.003250,0.249979,0,0);}
.mb4_c01136{transform:matrix(0.132260,0.001190,-0.002250,0.249990,0,0);-ms-transform:matrix(0.132260,0.001190,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.132260,0.001190,-0.002250,0.249990,0,0);}
.m90_c01136{transform:matrix(0.148585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148585,0.000000,0.000000,0.250000,0,0);}
.m3_c01136{transform:matrix(0.155575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155575,0.000000,0.000000,0.250000,0,0);}
.ma3_c01136{transform:matrix(0.158960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158960,0.000000,0.000000,0.250000,0,0);}
.md8_c01136{transform:matrix(0.161235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161235,0.000000,0.000000,0.250000,0,0);}
.m94_c01136{transform:matrix(0.164490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164490,0.000000,0.000000,0.250000,0,0);}
.mc2_c01136{transform:matrix(0.170745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170745,0.000000,0.000000,0.250000,0,0);}
.ma0_c01136{transform:matrix(0.172840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172840,0.000000,0.000000,0.250000,0,0);}
.m9b_c01136{transform:matrix(0.173175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173175,0.000000,0.000000,0.250000,0,0);}
.ma2_c01136{transform:matrix(0.175840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175840,0.000000,0.000000,0.250000,0,0);}
.ma1_c01136{transform:matrix(0.176600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176600,0.000000,0.000000,0.250000,0,0);}
.mad_c01136{transform:matrix(0.180675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180675,0.000000,0.000000,0.250000,0,0);}
.m92_c01136{transform:matrix(0.183645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183645,0.000000,0.000000,0.250000,0,0);}
.mba_c01136{transform:matrix(0.185532,0.001670,-0.002250,0.249990,0,0);-ms-transform:matrix(0.185532,0.001670,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.185532,0.001670,-0.002250,0.249990,0,0);}
.m38_c01136{transform:matrix(0.186617,-0.001680,0.002250,0.249990,0,0);-ms-transform:matrix(0.186617,-0.001680,0.002250,0.249990,0,0);-webkit-transform:matrix(0.186617,-0.001680,0.002250,0.249990,0,0);}
.mab_c01136{transform:matrix(0.188065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188065,0.000000,0.000000,0.250000,0,0);}
.m34_c01136{transform:matrix(0.190908,-0.002100,0.002750,0.249985,0,0);-ms-transform:matrix(0.190908,-0.002100,0.002750,0.249985,0,0);-webkit-transform:matrix(0.190908,-0.002100,0.002750,0.249985,0,0);}
.m69_c01136{transform:matrix(0.193514,-0.002516,0.003250,0.249979,0,0);-ms-transform:matrix(0.193514,-0.002516,0.003250,0.249979,0,0);-webkit-transform:matrix(0.193514,-0.002516,0.003250,0.249979,0,0);}
.ma7_c01136{transform:matrix(0.194835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194835,0.000000,0.000000,0.250000,0,0);}
.m3a_c01136{transform:matrix(0.195827,-0.001762,0.002250,0.249990,0,0);-ms-transform:matrix(0.195827,-0.001762,0.002250,0.249990,0,0);-webkit-transform:matrix(0.195827,-0.001762,0.002250,0.249990,0,0);}
.ma6_c01136{transform:matrix(0.196570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196570,0.000000,0.000000,0.250000,0,0);}
.m3c_c01136{transform:matrix(0.196727,-0.001771,0.002250,0.249990,0,0);-ms-transform:matrix(0.196727,-0.001771,0.002250,0.249990,0,0);-webkit-transform:matrix(0.196727,-0.001771,0.002250,0.249990,0,0);}
.m3f_c01136{transform:matrix(0.198447,-0.001786,0.002250,0.249990,0,0);-ms-transform:matrix(0.198447,-0.001786,0.002250,0.249990,0,0);-webkit-transform:matrix(0.198447,-0.001786,0.002250,0.249990,0,0);}
.m6e_c01136{transform:matrix(0.199195,-0.001992,0.002500,0.249988,0,0);-ms-transform:matrix(0.199195,-0.001992,0.002500,0.249988,0,0);-webkit-transform:matrix(0.199195,-0.001992,0.002500,0.249988,0,0);}
.m9f_c01136{transform:matrix(0.200875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200875,0.000000,0.000000,0.250000,0,0);}
.mae_c01136{transform:matrix(0.204165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204165,0.000000,0.000000,0.250000,0,0);}
.m80_c01136{transform:matrix(0.204322,-0.001839,0.002250,0.249990,0,0);-ms-transform:matrix(0.204322,-0.001839,0.002250,0.249990,0,0);-webkit-transform:matrix(0.204322,-0.001839,0.002250,0.249990,0,0);}
.m67_c01136{transform:matrix(0.204468,-0.002658,0.003250,0.249979,0,0);-ms-transform:matrix(0.204468,-0.002658,0.003250,0.249979,0,0);-webkit-transform:matrix(0.204468,-0.002658,0.003250,0.249979,0,0);}
.mb0_c01136{transform:matrix(0.206740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206740,0.000000,0.000000,0.250000,0,0);}
.m6b_c01136{transform:matrix(0.207222,-0.002694,0.003250,0.249979,0,0);-ms-transform:matrix(0.207222,-0.002694,0.003250,0.249979,0,0);-webkit-transform:matrix(0.207222,-0.002694,0.003250,0.249979,0,0);}
.m40_c01136{transform:matrix(0.207417,-0.001867,0.002250,0.249990,0,0);-ms-transform:matrix(0.207417,-0.001867,0.002250,0.249990,0,0);-webkit-transform:matrix(0.207417,-0.001867,0.002250,0.249990,0,0);}
.m3d_c01136{transform:matrix(0.207437,-0.001867,0.002250,0.249990,0,0);-ms-transform:matrix(0.207437,-0.001867,0.002250,0.249990,0,0);-webkit-transform:matrix(0.207437,-0.001867,0.002250,0.249990,0,0);}
.ma9_c01136{transform:matrix(0.208075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208075,0.000000,0.000000,0.250000,0,0);}
.m66_c01136{transform:matrix(0.208417,-0.002709,0.003250,0.249979,0,0);-ms-transform:matrix(0.208417,-0.002709,0.003250,0.249979,0,0);-webkit-transform:matrix(0.208417,-0.002709,0.003250,0.249979,0,0);}
.ma8_c01136{transform:matrix(0.209185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209185,0.000000,0.000000,0.250000,0,0);}
.m1e_c01136{transform:matrix(0.209286,-0.003139,0.003750,0.249972,0,0);-ms-transform:matrix(0.209286,-0.003139,0.003750,0.249972,0,0);-webkit-transform:matrix(0.209286,-0.003139,0.003750,0.249972,0,0);}
.m25_c01136{transform:matrix(0.210389,-0.004839,0.005748,0.249934,0,0);-ms-transform:matrix(0.210389,-0.004839,0.005748,0.249934,0,0);-webkit-transform:matrix(0.210389,-0.004839,0.005748,0.249934,0,0);}
.mbd_c01136{transform:matrix(0.210651,0.001896,-0.002250,0.249990,0,0);-ms-transform:matrix(0.210651,0.001896,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.210651,0.001896,-0.002250,0.249990,0,0);}
.ma4_c01136{transform:matrix(0.210995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210995,0.000000,0.000000,0.250000,0,0);}
.m21_c01136{transform:matrix(0.212546,-0.003188,0.003750,0.249972,0,0);-ms-transform:matrix(0.212546,-0.003188,0.003750,0.249972,0,0);-webkit-transform:matrix(0.212546,-0.003188,0.003750,0.249972,0,0);}
.m37_c01136{transform:matrix(0.213876,-0.001925,0.002250,0.249990,0,0);-ms-transform:matrix(0.213876,-0.001925,0.002250,0.249990,0,0);-webkit-transform:matrix(0.213876,-0.001925,0.002250,0.249990,0,0);}
.m24_c01136{transform:matrix(0.215036,-0.003226,0.003750,0.249972,0,0);-ms-transform:matrix(0.215036,-0.003226,0.003750,0.249972,0,0);-webkit-transform:matrix(0.215036,-0.003226,0.003750,0.249972,0,0);}
.m85_c01136{transform:matrix(0.216220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216220,0.000000,0.000000,0.250000,0,0);}
.m5_c01136{transform:matrix(0.216761,-0.004118,0.004749,0.249955,0,0);-ms-transform:matrix(0.216761,-0.004118,0.004749,0.249955,0,0);-webkit-transform:matrix(0.216761,-0.004118,0.004749,0.249955,0,0);}
.m1c_c01136{transform:matrix(0.217711,-0.003266,0.003750,0.249972,0,0);-ms-transform:matrix(0.217711,-0.003266,0.003750,0.249972,0,0);-webkit-transform:matrix(0.217711,-0.003266,0.003750,0.249972,0,0);}
.maa_c01136{transform:matrix(0.222665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222665,0.000000,0.000000,0.250000,0,0);}
.ma5_c01136{transform:matrix(0.222715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222715,0.000000,0.000000,0.250000,0,0);}
.mb9_c01136{transform:matrix(0.222931,0.002006,-0.002250,0.249990,0,0);-ms-transform:matrix(0.222931,0.002006,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.222931,0.002006,-0.002250,0.249990,0,0);}
.m47_c01136{transform:matrix(0.223656,-0.002908,0.003250,0.249979,0,0);-ms-transform:matrix(0.223656,-0.002908,0.003250,0.249979,0,0);-webkit-transform:matrix(0.223656,-0.002908,0.003250,0.249979,0,0);}
.m61_c01136{transform:matrix(0.223951,-0.002911,0.003250,0.249979,0,0);-ms-transform:matrix(0.223951,-0.002911,0.003250,0.249979,0,0);-webkit-transform:matrix(0.223951,-0.002911,0.003250,0.249979,0,0);}
.m7c_c01136{transform:matrix(0.223961,-0.002016,0.002250,0.249990,0,0);-ms-transform:matrix(0.223961,-0.002016,0.002250,0.249990,0,0);-webkit-transform:matrix(0.223961,-0.002016,0.002250,0.249990,0,0);}
.m35_c01136{transform:matrix(0.224631,-0.002471,0.002750,0.249985,0,0);-ms-transform:matrix(0.224631,-0.002471,0.002750,0.249985,0,0);-webkit-transform:matrix(0.224631,-0.002471,0.002750,0.249985,0,0);}
.m84_c01136{transform:matrix(0.224680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224680,0.000000,0.000000,0.250000,0,0);}
.m2b_c01136{transform:matrix(0.224695,-0.003370,0.003750,0.249972,0,0);-ms-transform:matrix(0.224695,-0.003370,0.003750,0.249972,0,0);-webkit-transform:matrix(0.224695,-0.003370,0.003750,0.249972,0,0);}
.m22_c01136{transform:matrix(0.224785,-0.003372,0.003750,0.249972,0,0);-ms-transform:matrix(0.224785,-0.003372,0.003750,0.249972,0,0);-webkit-transform:matrix(0.224785,-0.003372,0.003750,0.249972,0,0);}
.m72_c01136{transform:matrix(0.225259,-0.002253,0.002500,0.249988,0,0);-ms-transform:matrix(0.225259,-0.002253,0.002500,0.249988,0,0);-webkit-transform:matrix(0.225259,-0.002253,0.002500,0.249988,0,0);}
.m7a_c01136{transform:matrix(0.225336,-0.002028,0.002250,0.249990,0,0);-ms-transform:matrix(0.225336,-0.002028,0.002250,0.249990,0,0);-webkit-transform:matrix(0.225336,-0.002028,0.002250,0.249990,0,0);}
.m8d_c01136{transform:matrix(0.225345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225345,0.000000,0.000000,0.250000,0,0);}
.m68_c01136{transform:matrix(0.226061,-0.002939,0.003250,0.249979,0,0);-ms-transform:matrix(0.226061,-0.002939,0.003250,0.249979,0,0);-webkit-transform:matrix(0.226061,-0.002939,0.003250,0.249979,0,0);}
.m3b_c01136{transform:matrix(0.227111,-0.002044,0.002250,0.249990,0,0);-ms-transform:matrix(0.227111,-0.002044,0.002250,0.249990,0,0);-webkit-transform:matrix(0.227111,-0.002044,0.002250,0.249990,0,0);}
.m5f_c01136{transform:matrix(0.228081,-0.002053,0.002250,0.249990,0,0);-ms-transform:matrix(0.228081,-0.002053,0.002250,0.249990,0,0);-webkit-transform:matrix(0.228081,-0.002053,0.002250,0.249990,0,0);}
.m86_c01136{transform:matrix(0.228940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228940,0.000000,0.000000,0.250000,0,0);}
.mb1_c01136{transform:matrix(0.229330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229330,0.000000,0.000000,0.250000,0,0);}
.m30_c01136{transform:matrix(0.229436,-0.002524,0.002750,0.249985,0,0);-ms-transform:matrix(0.229436,-0.002524,0.002750,0.249985,0,0);-webkit-transform:matrix(0.229436,-0.002524,0.002750,0.249985,0,0);}
.m45_c01136{transform:matrix(0.229506,-0.002984,0.003250,0.249979,0,0);-ms-transform:matrix(0.229506,-0.002984,0.003250,0.249979,0,0);-webkit-transform:matrix(0.229506,-0.002984,0.003250,0.249979,0,0);}
.m4d_c01136{transform:matrix(0.229514,-0.002295,0.002500,0.249988,0,0);-ms-transform:matrix(0.229514,-0.002295,0.002500,0.249988,0,0);-webkit-transform:matrix(0.229514,-0.002295,0.002500,0.249988,0,0);}
.md5_c01136{transform:matrix(0.230215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230215,0.000000,0.000000,0.250000,0,0);}
.m1f_c01136{transform:matrix(0.230304,-0.003455,0.003750,0.249972,0,0);-ms-transform:matrix(0.230304,-0.003455,0.003750,0.249972,0,0);-webkit-transform:matrix(0.230304,-0.003455,0.003750,0.249972,0,0);}
.m76_c01136{transform:matrix(0.230448,-0.002304,0.002500,0.249988,0,0);-ms-transform:matrix(0.230448,-0.002304,0.002500,0.249988,0,0);-webkit-transform:matrix(0.230448,-0.002304,0.002500,0.249988,0,0);}
.mda_c01136{transform:matrix(0.230895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230895,0.000000,0.000000,0.250000,0,0);}
.mb7_c01136{transform:matrix(0.231396,0.002083,-0.002250,0.249990,0,0);-ms-transform:matrix(0.231396,0.002083,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.231396,0.002083,-0.002250,0.249990,0,0);}
.m41_c01136{transform:matrix(0.231456,-0.002083,0.002250,0.249990,0,0);-ms-transform:matrix(0.231456,-0.002083,0.002250,0.249990,0,0);-webkit-transform:matrix(0.231456,-0.002083,0.002250,0.249990,0,0);}
.mbe_c01136{transform:matrix(0.232381,0.002091,-0.002250,0.249990,0,0);-ms-transform:matrix(0.232381,0.002091,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.232381,0.002091,-0.002250,0.249990,0,0);}
.mac_c01136{transform:matrix(0.232645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232645,0.000000,0.000000,0.250000,0,0);}
.mbc_c01136{transform:matrix(0.233366,0.002100,-0.002250,0.249990,0,0);-ms-transform:matrix(0.233366,0.002100,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.233366,0.002100,-0.002250,0.249990,0,0);}
.m6a_c01136{transform:matrix(0.233765,-0.003039,0.003250,0.249979,0,0);-ms-transform:matrix(0.233765,-0.003039,0.003250,0.249979,0,0);-webkit-transform:matrix(0.233765,-0.003039,0.003250,0.249979,0,0);}
.m39_c01136{transform:matrix(0.234685,-0.002112,0.002250,0.249990,0,0);-ms-transform:matrix(0.234685,-0.002112,0.002250,0.249990,0,0);-webkit-transform:matrix(0.234685,-0.002112,0.002250,0.249990,0,0);}
.m4a_c01136{transform:matrix(0.234773,-0.002348,0.002500,0.249988,0,0);-ms-transform:matrix(0.234773,-0.002348,0.002500,0.249988,0,0);-webkit-transform:matrix(0.234773,-0.002348,0.002500,0.249988,0,0);}
.m26_c01136{transform:matrix(0.234988,-0.005405,0.005748,0.249934,0,0);-ms-transform:matrix(0.234988,-0.005405,0.005748,0.249934,0,0);-webkit-transform:matrix(0.234988,-0.005405,0.005748,0.249934,0,0);}
.m6f_c01136{transform:matrix(0.235048,-0.002350,0.002500,0.249988,0,0);-ms-transform:matrix(0.235048,-0.002350,0.002500,0.249988,0,0);-webkit-transform:matrix(0.235048,-0.002350,0.002500,0.249988,0,0);}
.m7e_c01136{transform:matrix(0.235070,-0.002116,0.002250,0.249990,0,0);-ms-transform:matrix(0.235070,-0.002116,0.002250,0.249990,0,0);-webkit-transform:matrix(0.235070,-0.002116,0.002250,0.249990,0,0);}
.m70_c01136{transform:matrix(0.235298,-0.002353,0.002500,0.249988,0,0);-ms-transform:matrix(0.235298,-0.002353,0.002500,0.249988,0,0);-webkit-transform:matrix(0.235298,-0.002353,0.002500,0.249988,0,0);}
.m57_c01136{transform:matrix(0.235620,-0.002121,0.002250,0.249990,0,0);-ms-transform:matrix(0.235620,-0.002121,0.002250,0.249990,0,0);-webkit-transform:matrix(0.235620,-0.002121,0.002250,0.249990,0,0);}
.m6c_c01136{transform:matrix(0.238265,-0.003097,0.003250,0.249979,0,0);-ms-transform:matrix(0.238265,-0.003097,0.003250,0.249979,0,0);-webkit-transform:matrix(0.238265,-0.003097,0.003250,0.249979,0,0);}
.m52_c01136{transform:matrix(0.238523,-0.002385,0.002500,0.249988,0,0);-ms-transform:matrix(0.238523,-0.002385,0.002500,0.249988,0,0);-webkit-transform:matrix(0.238523,-0.002385,0.002500,0.249988,0,0);}
.m32_c01136{transform:matrix(0.238721,-0.002626,0.002750,0.249985,0,0);-ms-transform:matrix(0.238721,-0.002626,0.002750,0.249985,0,0);-webkit-transform:matrix(0.238721,-0.002626,0.002750,0.249985,0,0);}
.m6d_c01136{transform:matrix(0.238743,-0.002387,0.002500,0.249988,0,0);-ms-transform:matrix(0.238743,-0.002387,0.002500,0.249988,0,0);-webkit-transform:matrix(0.238743,-0.002387,0.002500,0.249988,0,0);}
.m95_c01136{transform:matrix(0.239125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239125,0.000000,0.000000,0.250000,0,0);}
.m73_c01136{transform:matrix(0.239693,-0.002397,0.002500,0.249988,0,0);-ms-transform:matrix(0.239693,-0.002397,0.002500,0.249988,0,0);-webkit-transform:matrix(0.239693,-0.002397,0.002500,0.249988,0,0);}
.m4f_c01136{transform:matrix(0.239818,-0.002398,0.002500,0.249988,0,0);-ms-transform:matrix(0.239818,-0.002398,0.002500,0.249988,0,0);-webkit-transform:matrix(0.239818,-0.002398,0.002500,0.249988,0,0);}
.md7_c01136{transform:matrix(0.241300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241300,0.000000,0.000000,0.250000,0,0);}
.mc0_c01136{transform:matrix(0.242300,0.002181,-0.002250,0.249990,0,0);-ms-transform:matrix(0.242300,0.002181,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.242300,0.002181,-0.002250,0.249990,0,0);}
.m4b_c01136{transform:matrix(0.242733,-0.002427,0.002500,0.249988,0,0);-ms-transform:matrix(0.242733,-0.002427,0.002500,0.249988,0,0);-webkit-transform:matrix(0.242733,-0.002427,0.002500,0.249988,0,0);}
.m89_c01136{transform:matrix(0.242745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242745,0.000000,0.000000,0.250000,0,0);}
.m50_c01136{transform:matrix(0.243328,-0.002433,0.002500,0.249988,0,0);-ms-transform:matrix(0.243328,-0.002433,0.002500,0.249988,0,0);-webkit-transform:matrix(0.243328,-0.002433,0.002500,0.249988,0,0);}
.m1d_c01136{transform:matrix(0.243443,-0.003652,0.003750,0.249972,0,0);-ms-transform:matrix(0.243443,-0.003652,0.003750,0.249972,0,0);-webkit-transform:matrix(0.243443,-0.003652,0.003750,0.249972,0,0);}
.mb6_c01136{transform:matrix(0.243685,0.002193,-0.002250,0.249990,0,0);-ms-transform:matrix(0.243685,0.002193,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.243685,0.002193,-0.002250,0.249990,0,0);}
.m2e_c01136{transform:matrix(0.244560,-0.002690,0.002750,0.249985,0,0);-ms-transform:matrix(0.244560,-0.002690,0.002750,0.249985,0,0);-webkit-transform:matrix(0.244560,-0.002690,0.002750,0.249985,0,0);}
.mcb_c01136{transform:matrix(0.245835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245835,0.000000,0.000000,0.250000,0,0);}
.m71_c01136{transform:matrix(0.246048,-0.002460,0.002500,0.249988,0,0);-ms-transform:matrix(0.246048,-0.002460,0.002500,0.249988,0,0);-webkit-transform:matrix(0.246048,-0.002460,0.002500,0.249988,0,0);}
.m2d_c01136{transform:matrix(0.246650,-0.002713,0.002750,0.249985,0,0);-ms-transform:matrix(0.246650,-0.002713,0.002750,0.249985,0,0);-webkit-transform:matrix(0.246650,-0.002713,0.002750,0.249985,0,0);}
.m58_c01136{transform:matrix(0.246695,-0.002220,0.002250,0.249990,0,0);-ms-transform:matrix(0.246695,-0.002220,0.002250,0.249990,0,0);-webkit-transform:matrix(0.246695,-0.002220,0.002250,0.249990,0,0);}
.m42_c01136{transform:matrix(0.246774,-0.003208,0.003250,0.249979,0,0);-ms-transform:matrix(0.246774,-0.003208,0.003250,0.249979,0,0);-webkit-transform:matrix(0.246774,-0.003208,0.003250,0.249979,0,0);}
.m20_c01136{transform:matrix(0.247472,-0.003712,0.003750,0.249972,0,0);-ms-transform:matrix(0.247472,-0.003712,0.003750,0.249972,0,0);-webkit-transform:matrix(0.247472,-0.003712,0.003750,0.249972,0,0);}
.m3e_c01136{transform:matrix(0.247665,-0.002229,0.002250,0.249990,0,0);-ms-transform:matrix(0.247665,-0.002229,0.002250,0.249990,0,0);-webkit-transform:matrix(0.247665,-0.002229,0.002250,0.249990,0,0);}
.mc_c01136{transform:matrix(0.247973,-0.003968,0.003999,0.249968,0,0);-ms-transform:matrix(0.247973,-0.003968,0.003999,0.249968,0,0);-webkit-transform:matrix(0.247973,-0.003968,0.003999,0.249968,0,0);}
.m31_c01136{transform:matrix(0.249370,-0.002743,0.002750,0.249985,0,0);-ms-transform:matrix(0.249370,-0.002743,0.002750,0.249985,0,0);-webkit-transform:matrix(0.249370,-0.002743,0.002750,0.249985,0,0);}
.mb2_c01136{transform:matrix(0.249720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249720,0.000000,0.000000,0.250000,0,0);}
.mbb_c01136{transform:matrix(0.250000,0.002250,-0.002250,0.249990,0,0);-ms-transform:matrix(0.250000,0.002250,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.250000,0.002250,-0.002250,0.249990,0,0);}
.mb_c01136{transform:matrix(0.250358,-0.004006,0.003999,0.249968,0,0);-ms-transform:matrix(0.250358,-0.004006,0.003999,0.249968,0,0);-webkit-transform:matrix(0.250358,-0.004006,0.003999,0.249968,0,0);}
.maf_c01136{transform:matrix(0.250780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250780,0.000000,0.000000,0.250000,0,0);}
.m4_c01136{transform:matrix(0.251260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251260,0.000000,0.000000,0.250000,0,0);}
.m88_c01136{transform:matrix(0.251635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251635,0.000000,0.000000,0.250000,0,0);}
.m12_c01136{transform:matrix(0.251728,-0.004028,0.003999,0.249968,0,0);-ms-transform:matrix(0.251728,-0.004028,0.003999,0.249968,0,0);-webkit-transform:matrix(0.251728,-0.004028,0.003999,0.249968,0,0);}
.m5d_c01136{transform:matrix(0.252620,-0.002274,0.002250,0.249990,0,0);-ms-transform:matrix(0.252620,-0.002274,0.002250,0.249990,0,0);-webkit-transform:matrix(0.252620,-0.002274,0.002250,0.249990,0,0);}
.m1b_c01136{transform:matrix(0.253112,-0.003797,0.003750,0.249972,0,0);-ms-transform:matrix(0.253112,-0.003797,0.003750,0.249972,0,0);-webkit-transform:matrix(0.253112,-0.003797,0.003750,0.249972,0,0);}
.m97_c01136{transform:matrix(0.253380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253380,0.000000,0.000000,0.250000,0,0);}
.mdb_c01136{transform:matrix(0.253675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253675,0.000000,0.000000,0.250000,0,0);}
.m75_c01136{transform:matrix(0.253747,-0.002537,0.002500,0.249988,0,0);-ms-transform:matrix(0.253747,-0.002537,0.002500,0.249988,0,0);-webkit-transform:matrix(0.253747,-0.002537,0.002500,0.249988,0,0);}
.m8b_c01136{transform:matrix(0.253785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253785,0.000000,0.000000,0.250000,0,0);}
.m19_c01136{transform:matrix(0.253799,-0.004822,0.004749,0.249955,0,0);-ms-transform:matrix(0.253799,-0.004822,0.004749,0.249955,0,0);-webkit-transform:matrix(0.253799,-0.004822,0.004749,0.249955,0,0);}
.m8_c01136{transform:matrix(0.254119,-0.004828,0.004749,0.249955,0,0);-ms-transform:matrix(0.254119,-0.004828,0.004749,0.249955,0,0);-webkit-transform:matrix(0.254119,-0.004828,0.004749,0.249955,0,0);}
.mb8_c01136{transform:matrix(0.254165,0.002287,-0.002250,0.249990,0,0);-ms-transform:matrix(0.254165,0.002287,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.254165,0.002287,-0.002250,0.249990,0,0);}
.m77_c01136{transform:matrix(0.254747,-0.002547,0.002500,0.249988,0,0);-ms-transform:matrix(0.254747,-0.002547,0.002500,0.249988,0,0);-webkit-transform:matrix(0.254747,-0.002547,0.002500,0.249988,0,0);}
.me_c01136{transform:matrix(0.254837,-0.004077,0.003999,0.249968,0,0);-ms-transform:matrix(0.254837,-0.004077,0.003999,0.249968,0,0);-webkit-transform:matrix(0.254837,-0.004077,0.003999,0.249968,0,0);}
.m79_c01136{transform:matrix(0.255995,-0.002304,0.002250,0.249990,0,0);-ms-transform:matrix(0.255995,-0.002304,0.002250,0.249990,0,0);-webkit-transform:matrix(0.255995,-0.002304,0.002250,0.249990,0,0);}
.mb3_c01136{transform:matrix(0.256525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256525,0.000000,0.000000,0.250000,0,0);}
.m74_c01136{transform:matrix(0.256852,-0.002569,0.002500,0.249988,0,0);-ms-transform:matrix(0.256852,-0.002569,0.002500,0.249988,0,0);-webkit-transform:matrix(0.256852,-0.002569,0.002500,0.249988,0,0);}
.m9a_c01136{transform:matrix(0.257315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257315,0.000000,0.000000,0.250000,0,0);}
.m82_c01136{transform:matrix(0.257745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257745,0.000000,0.000000,0.250000,0,0);}
.m7b_c01136{transform:matrix(0.258060,-0.002323,0.002250,0.249990,0,0);-ms-transform:matrix(0.258060,-0.002323,0.002250,0.249990,0,0);-webkit-transform:matrix(0.258060,-0.002323,0.002250,0.249990,0,0);}
.md3_c01136{transform:matrix(0.258350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258350,0.000000,0.000000,0.250000,0,0);}
.m15_c01136{transform:matrix(0.259473,-0.004930,0.004749,0.249955,0,0);-ms-transform:matrix(0.259473,-0.004930,0.004749,0.249955,0,0);-webkit-transform:matrix(0.259473,-0.004930,0.004749,0.249955,0,0);}
.md2_c01136{transform:matrix(0.260245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260245,0.000000,0.000000,0.250000,0,0);}
.m98_c01136{transform:matrix(0.260415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260415,0.000000,0.000000,0.250000,0,0);}
.m36_c01136{transform:matrix(0.261014,-0.002871,0.002750,0.249985,0,0);-ms-transform:matrix(0.261014,-0.002871,0.002750,0.249985,0,0);-webkit-transform:matrix(0.261014,-0.002871,0.002750,0.249985,0,0);}
.ma_c01136{transform:matrix(0.261582,-0.004185,0.003999,0.249968,0,0);-ms-transform:matrix(0.261582,-0.004185,0.003999,0.249968,0,0);-webkit-transform:matrix(0.261582,-0.004185,0.003999,0.249968,0,0);}
.m10_c01136{transform:matrix(0.261811,-0.004189,0.003999,0.249968,0,0);-ms-transform:matrix(0.261811,-0.004189,0.003999,0.249968,0,0);-webkit-transform:matrix(0.261811,-0.004189,0.003999,0.249968,0,0);}
.m9d_c01136{transform:matrix(0.262210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262210,0.000000,0.000000,0.250000,0,0);}
.m17_c01136{transform:matrix(0.262768,-0.004993,0.004749,0.249955,0,0);-ms-transform:matrix(0.262768,-0.004993,0.004749,0.249955,0,0);-webkit-transform:matrix(0.262768,-0.004993,0.004749,0.249955,0,0);}
.m60_c01136{transform:matrix(0.263658,-0.003428,0.003250,0.249979,0,0);-ms-transform:matrix(0.263658,-0.003428,0.003250,0.249979,0,0);-webkit-transform:matrix(0.263658,-0.003428,0.003250,0.249979,0,0);}
.m51_c01136{transform:matrix(0.263702,-0.002637,0.002500,0.249988,0,0);-ms-transform:matrix(0.263702,-0.002637,0.002500,0.249988,0,0);-webkit-transform:matrix(0.263702,-0.002637,0.002500,0.249988,0,0);}
.m81_c01136{transform:matrix(0.265484,-0.002389,0.002250,0.249990,0,0);-ms-transform:matrix(0.265484,-0.002389,0.002250,0.249990,0,0);-webkit-transform:matrix(0.265484,-0.002389,0.002250,0.249990,0,0);}
.m5c_c01136{transform:matrix(0.265799,-0.002392,0.002250,0.249990,0,0);-ms-transform:matrix(0.265799,-0.002392,0.002250,0.249990,0,0);-webkit-transform:matrix(0.265799,-0.002392,0.002250,0.249990,0,0);}
.m8f_c01136{transform:matrix(0.267515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267515,0.000000,0.000000,0.250000,0,0);}
.m23_c01136{transform:matrix(0.267750,-0.004016,0.003750,0.249972,0,0);-ms-transform:matrix(0.267750,-0.004016,0.003750,0.249972,0,0);-webkit-transform:matrix(0.267750,-0.004016,0.003750,0.249972,0,0);}
.m6_c01136{transform:matrix(0.267752,-0.005087,0.004749,0.249955,0,0);-ms-transform:matrix(0.267752,-0.005087,0.004749,0.249955,0,0);-webkit-transform:matrix(0.267752,-0.005087,0.004749,0.249955,0,0);}
.mc8_c01136{transform:matrix(0.267790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267790,0.000000,0.000000,0.250000,0,0);}
.m91_c01136{transform:matrix(0.268125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268125,0.000000,0.000000,0.250000,0,0);}
.m62_c01136{transform:matrix(0.268237,-0.003487,0.003250,0.249979,0,0);-ms-transform:matrix(0.268237,-0.003487,0.003250,0.249979,0,0);-webkit-transform:matrix(0.268237,-0.003487,0.003250,0.249979,0,0);}
.mce_c01136{transform:matrix(0.268540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268540,0.000000,0.000000,0.250000,0,0);}
.m27_c01136{transform:matrix(0.269145,-0.004037,0.003750,0.249972,0,0);-ms-transform:matrix(0.269145,-0.004037,0.003750,0.249972,0,0);-webkit-transform:matrix(0.269145,-0.004037,0.003750,0.249972,0,0);}
.mc4_c01136{transform:matrix(0.269285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269285,0.000000,0.000000,0.250000,0,0);}
.m9c_c01136{transform:matrix(0.269355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269355,0.000000,0.000000,0.250000,0,0);}
.m1a_c01136{transform:matrix(0.269396,-0.005119,0.004749,0.249955,0,0);-ms-transform:matrix(0.269396,-0.005119,0.004749,0.249955,0,0);-webkit-transform:matrix(0.269396,-0.005119,0.004749,0.249955,0,0);}
.m9e_c01136{transform:matrix(0.269440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269440,0.000000,0.000000,0.250000,0,0);}
.mcc_c01136{transform:matrix(0.269690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269690,0.000000,0.000000,0.250000,0,0);}
.m99_c01136{transform:matrix(0.270030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270030,0.000000,0.000000,0.250000,0,0);}
.m28_c01136{transform:matrix(0.270490,-0.004057,0.003750,0.249972,0,0);-ms-transform:matrix(0.270490,-0.004057,0.003750,0.249972,0,0);-webkit-transform:matrix(0.270490,-0.004057,0.003750,0.249972,0,0);}
.m7f_c01136{transform:matrix(0.270764,-0.002437,0.002250,0.249990,0,0);-ms-transform:matrix(0.270764,-0.002437,0.002250,0.249990,0,0);-webkit-transform:matrix(0.270764,-0.002437,0.002250,0.249990,0,0);}
.m5e_c01136{transform:matrix(0.271114,-0.002440,0.002250,0.249990,0,0);-ms-transform:matrix(0.271114,-0.002440,0.002250,0.249990,0,0);-webkit-transform:matrix(0.271114,-0.002440,0.002250,0.249990,0,0);}
.m4e_c01136{transform:matrix(0.271341,-0.002713,0.002500,0.249988,0,0);-ms-transform:matrix(0.271341,-0.002713,0.002500,0.249988,0,0);-webkit-transform:matrix(0.271341,-0.002713,0.002500,0.249988,0,0);}
.md6_c01136{transform:matrix(0.271650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271650,0.000000,0.000000,0.250000,0,0);}
.m44_c01136{transform:matrix(0.272377,-0.003541,0.003250,0.249979,0,0);-ms-transform:matrix(0.272377,-0.003541,0.003250,0.249979,0,0);-webkit-transform:matrix(0.272377,-0.003541,0.003250,0.249979,0,0);}
.mc5_c01136{transform:matrix(0.272565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272565,0.000000,0.000000,0.250000,0,0);}
.m0_c01136{transform:matrix(0.272855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272855,0.000000,0.000000,0.250000,0,0);}
.m49_c01136{transform:matrix(0.273166,-0.002732,0.002500,0.249988,0,0);-ms-transform:matrix(0.273166,-0.002732,0.002500,0.249988,0,0);-webkit-transform:matrix(0.273166,-0.002732,0.002500,0.249988,0,0);}
.m54_c01136{transform:matrix(0.273421,-0.002734,0.002500,0.249988,0,0);-ms-transform:matrix(0.273421,-0.002734,0.002500,0.249988,0,0);-webkit-transform:matrix(0.273421,-0.002734,0.002500,0.249988,0,0);}
.mf_c01136{transform:matrix(0.273555,-0.004377,0.003999,0.249968,0,0);-ms-transform:matrix(0.273555,-0.004377,0.003999,0.249968,0,0);-webkit-transform:matrix(0.273555,-0.004377,0.003999,0.249968,0,0);}
.m8c_c01136{transform:matrix(0.273725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273725,0.000000,0.000000,0.250000,0,0);}
.m56_c01136{transform:matrix(0.274134,-0.002467,0.002250,0.249990,0,0);-ms-transform:matrix(0.274134,-0.002467,0.002250,0.249990,0,0);-webkit-transform:matrix(0.274134,-0.002467,0.002250,0.249990,0,0);}
.m5b_c01136{transform:matrix(0.274139,-0.002467,0.002250,0.249990,0,0);-ms-transform:matrix(0.274139,-0.002467,0.002250,0.249990,0,0);-webkit-transform:matrix(0.274139,-0.002467,0.002250,0.249990,0,0);}
.mb5_c01136{transform:matrix(0.274524,0.002471,-0.002250,0.249990,0,0);-ms-transform:matrix(0.274524,0.002471,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.274524,0.002471,-0.002250,0.249990,0,0);}
.md_c01136{transform:matrix(0.274585,-0.004393,0.003999,0.249968,0,0);-ms-transform:matrix(0.274585,-0.004393,0.003999,0.249968,0,0);-webkit-transform:matrix(0.274585,-0.004393,0.003999,0.249968,0,0);}
.m8e_c01136{transform:matrix(0.274745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274745,0.000000,0.000000,0.250000,0,0);}
.m13_c01136{transform:matrix(0.274870,-0.004398,0.003999,0.249968,0,0);-ms-transform:matrix(0.274870,-0.004398,0.003999,0.249968,0,0);-webkit-transform:matrix(0.274870,-0.004398,0.003999,0.249968,0,0);}
.md1_c01136{transform:matrix(0.275130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275130,0.000000,0.000000,0.250000,0,0);}
.md9_c01136{transform:matrix(0.275355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275355,0.000000,0.000000,0.250000,0,0);}
.md0_c01136{transform:matrix(0.275455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275455,0.000000,0.000000,0.250000,0,0);}
.m18_c01136{transform:matrix(0.275745,-0.005239,0.004749,0.249955,0,0);-ms-transform:matrix(0.275745,-0.005239,0.004749,0.249955,0,0);-webkit-transform:matrix(0.275745,-0.005239,0.004749,0.249955,0,0);}
.m59_c01136{transform:matrix(0.275979,-0.002484,0.002250,0.249990,0,0);-ms-transform:matrix(0.275979,-0.002484,0.002250,0.249990,0,0);-webkit-transform:matrix(0.275979,-0.002484,0.002250,0.249990,0,0);}
.mca_c01136{transform:matrix(0.276925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276925,0.000000,0.000000,0.250000,0,0);}
.m96_c01136{transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);}
.m29_c01136{transform:matrix(0.277189,-0.004158,0.003750,0.249972,0,0);-ms-transform:matrix(0.277189,-0.004158,0.003750,0.249972,0,0);-webkit-transform:matrix(0.277189,-0.004158,0.003750,0.249972,0,0);}
.m64_c01136{transform:matrix(0.277322,-0.003605,0.003250,0.249979,0,0);-ms-transform:matrix(0.277322,-0.003605,0.003250,0.249979,0,0);-webkit-transform:matrix(0.277322,-0.003605,0.003250,0.249979,0,0);}
.m43_c01136{transform:matrix(0.277662,-0.003610,0.003250,0.249979,0,0);-ms-transform:matrix(0.277662,-0.003610,0.003250,0.249979,0,0);-webkit-transform:matrix(0.277662,-0.003610,0.003250,0.249979,0,0);}
.m83_c01136{transform:matrix(0.278180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278180,0.000000,0.000000,0.250000,0,0);}
.md4_c01136{transform:matrix(0.278395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278395,0.000000,0.000000,0.250000,0,0);}
.m8a_c01136{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m33_c01136{transform:matrix(0.280763,-0.003088,0.002750,0.249985,0,0);-ms-transform:matrix(0.280763,-0.003088,0.002750,0.249985,0,0);-webkit-transform:matrix(0.280763,-0.003088,0.002750,0.249985,0,0);}
.m78_c01136{transform:matrix(0.280886,-0.002809,0.002500,0.249988,0,0);-ms-transform:matrix(0.280886,-0.002809,0.002500,0.249988,0,0);-webkit-transform:matrix(0.280886,-0.002809,0.002500,0.249988,0,0);}
.m63_c01136{transform:matrix(0.281456,-0.003659,0.003250,0.249979,0,0);-ms-transform:matrix(0.281456,-0.003659,0.003250,0.249979,0,0);-webkit-transform:matrix(0.281456,-0.003659,0.003250,0.249979,0,0);}
.m2c_c01136{transform:matrix(0.281993,-0.004230,0.003750,0.249972,0,0);-ms-transform:matrix(0.281993,-0.004230,0.003750,0.249972,0,0);-webkit-transform:matrix(0.281993,-0.004230,0.003750,0.249972,0,0);}
.m4c_c01136{transform:matrix(0.283021,-0.002830,0.002500,0.249988,0,0);-ms-transform:matrix(0.283021,-0.002830,0.002500,0.249988,0,0);-webkit-transform:matrix(0.283021,-0.002830,0.002500,0.249988,0,0);}
.m5a_c01136{transform:matrix(0.283449,-0.002551,0.002250,0.249990,0,0);-ms-transform:matrix(0.283449,-0.002551,0.002250,0.249990,0,0);-webkit-transform:matrix(0.283449,-0.002551,0.002250,0.249990,0,0);}
.m87_c01136{transform:matrix(0.283960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283960,0.000000,0.000000,0.250000,0,0);}
.m7d_c01136{transform:matrix(0.284963,-0.002565,0.002250,0.249990,0,0);-ms-transform:matrix(0.284963,-0.002565,0.002250,0.249990,0,0);-webkit-transform:matrix(0.284963,-0.002565,0.002250,0.249990,0,0);}
.m93_c01136{transform:matrix(0.285040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285040,0.000000,0.000000,0.250000,0,0);}
.m46_c01136{transform:matrix(0.285081,-0.003706,0.003250,0.249979,0,0);-ms-transform:matrix(0.285081,-0.003706,0.003250,0.249979,0,0);-webkit-transform:matrix(0.285081,-0.003706,0.003250,0.249979,0,0);}
.m53_c01136{transform:matrix(0.285251,-0.002853,0.002500,0.249988,0,0);-ms-transform:matrix(0.285251,-0.002853,0.002500,0.249988,0,0);-webkit-transform:matrix(0.285251,-0.002853,0.002500,0.249988,0,0);}
.m16_c01136{transform:matrix(0.287388,-0.005460,0.004749,0.249955,0,0);-ms-transform:matrix(0.287388,-0.005460,0.004749,0.249955,0,0);-webkit-transform:matrix(0.287388,-0.005460,0.004749,0.249955,0,0);}
.m14_c01136{transform:matrix(0.288498,-0.005481,0.004749,0.249955,0,0);-ms-transform:matrix(0.288498,-0.005481,0.004749,0.249955,0,0);-webkit-transform:matrix(0.288498,-0.005481,0.004749,0.249955,0,0);}
.m2a_c01136{transform:matrix(0.289832,-0.004347,0.003750,0.249972,0,0);-ms-transform:matrix(0.289832,-0.004347,0.003750,0.249972,0,0);-webkit-transform:matrix(0.289832,-0.004347,0.003750,0.249972,0,0);}
.mc1_c01136{transform:matrix(0.292350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292350,0.000000,0.000000,0.250000,0,0);}
.mcd_c01136{transform:matrix(0.298090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298090,0.000000,0.000000,0.250000,0,0);}
.mc3_c01136{transform:matrix(0.298315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298315,0.000000,0.000000,0.250000,0,0);}
.mc9_c01136{transform:matrix(0.300560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300560,0.000000,0.000000,0.250000,0,0);}
.m48_c01136{transform:matrix(0.304979,-0.003965,0.003250,0.249979,0,0);-ms-transform:matrix(0.304979,-0.003965,0.003250,0.249979,0,0);-webkit-transform:matrix(0.304979,-0.003965,0.003250,0.249979,0,0);}
.m9_c01136{transform:matrix(0.308469,-0.005861,0.004749,0.249955,0,0);-ms-transform:matrix(0.308469,-0.005861,0.004749,0.249955,0,0);-webkit-transform:matrix(0.308469,-0.005861,0.004749,0.249955,0,0);}
.mc7_c01136{transform:matrix(0.310235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310235,0.000000,0.000000,0.250000,0,0);}
.mbf_c01136{transform:matrix(0.326752,0.002941,-0.002250,0.249990,0,0);-ms-transform:matrix(0.326752,0.002941,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.326752,0.002941,-0.002250,0.249990,0,0);}
.m7_c01136{transform:matrix(0.334885,-0.006363,0.004749,0.249955,0,0);-ms-transform:matrix(0.334885,-0.006363,0.004749,0.249955,0,0);-webkit-transform:matrix(0.334885,-0.006363,0.004749,0.249955,0,0);}
.m2_c01136{transform:matrix(0.335080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335080,0.000000,0.000000,0.250000,0,0);}
.m2f_c01136{transform:matrix(0.338675,-0.003725,0.002750,0.249985,0,0);-ms-transform:matrix(0.338675,-0.003725,0.002750,0.249985,0,0);-webkit-transform:matrix(0.338675,-0.003725,0.002750,0.249985,0,0);}
.mcf_c01136{transform:matrix(0.349465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349465,0.000000,0.000000,0.250000,0,0);}
.m11_c01136{transform:matrix(0.380951,-0.006095,0.003999,0.249968,0,0);-ms-transform:matrix(0.380951,-0.006095,0.003999,0.249968,0,0);-webkit-transform:matrix(0.380951,-0.006095,0.003999,0.249968,0,0);}
.m1_c01136{transform:matrix(0.439180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439180,0.000000,0.000000,0.250000,0,0);}
.mc6_c01136{transform:matrix(0.675535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.675535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.675535,0.000000,0.000000,0.250000,0,0);}
.v0_c01136{vertical-align:0.000000px;}
.ls0_c01136{letter-spacing:0.000000px;}
.sc__c01136{text-shadow:none;}
.sc0_c01136{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__c01136{-webkit-text-stroke:0px transparent;}
.sc0_c01136{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01136{word-spacing:0.000000px;}
.fc0_c01136{color:transparent;}
.fs1_c01136{font-size:42.000000px;}
.fs15_c01136{font-size:66.000000px;}
.fs3_c01136{font-size:66.011912px;}
.fs0_c01136{font-size:72.000000px;}
.fse_c01136{font-size:72.002916px;}
.fsd_c01136{font-size:72.003600px;}
.fsa_c01136{font-size:72.004356px;}
.fsc_c01136{font-size:72.006084px;}
.fs8_c01136{font-size:72.008100px;}
.fs4_c01136{font-size:72.009215px;}
.fs5_c01136{font-size:72.012995px;}
.fs2_c01136{font-size:78.000000px;}
.fs14_c01136{font-size:78.003159px;}
.fs11_c01136{font-size:78.003900px;}
.fs9_c01136{font-size:78.004719px;}
.fs6_c01136{font-size:78.008775px;}
.fsb_c01136{font-size:84.003402px;}
.fs10_c01136{font-size:84.004200px;}
.fsf_c01136{font-size:84.007098px;}
.fs13_c01136{font-size:90.000000px;}
.fs7_c01136{font-size:96.025389px;}
.fs12_c01136{font-size:102.000000px;}
.y0_c01136{bottom:0.000000px;}
.y98_c01136{bottom:55.890000px;}
.y97_c01136{bottom:88.825500px;}
.y96_c01136{bottom:91.791000px;}
.y95_c01136{bottom:126.876000px;}
.y94_c01136{bottom:162.958500px;}
.y93_c01136{bottom:195.287828px;}
.y92_c01136{bottom:196.733381px;}
.y91_c01136{bottom:197.032365px;}
.y90_c01136{bottom:197.326071px;}
.y8f_c01136{bottom:197.831835px;}
.y8e_c01136{bottom:198.621531px;}
.y8d_c01136{bottom:199.004837px;}
.y8c_c01136{bottom:199.418247px;}
.y8b_c01136{bottom:200.213087px;}
.y8a_c01136{bottom:200.407108px;}
.y89_c01136{bottom:201.192147px;}
.y88_c01136{bottom:201.483018px;}
.y87_c01136{bottom:201.690000px;}
.y86_c01136{bottom:234.903000px;}
.y85_c01136{bottom:270.367500px;}
.y84_c01136{bottom:305.481000px;}
.y83_c01136{bottom:339.121500px;}
.y82_c01136{bottom:373.753500px;}
.y81_c01136{bottom:446.206500px;}
.y78_c01136{bottom:479.521500px;}
.y79_c01136{bottom:480.117039px;}
.y7a_c01136{bottom:480.423313px;}
.y7b_c01136{bottom:480.914160px;}
.y7c_c01136{bottom:481.215534px;}
.y7d_c01136{bottom:482.503474px;}
.y7e_c01136{bottom:482.814541px;}
.y7f_c01136{bottom:483.514044px;}
.y80_c01136{bottom:483.708781px;}
.y74_c01136{bottom:517.319460px;}
.y75_c01136{bottom:518.111130px;}
.y76_c01136{bottom:518.502360px;}
.y77_c01136{bottom:519.495780px;}
.y6c_c01136{bottom:549.991500px;}
.y6d_c01136{bottom:551.087760px;}
.y6e_c01136{bottom:551.411805px;}
.y6f_c01136{bottom:552.416295px;}
.y70_c01136{bottom:553.644945px;}
.y71_c01136{bottom:555.191910px;}
.y72_c01136{bottom:555.745335px;}
.y73_c01136{bottom:556.552110px;}
.y65_c01136{bottom:586.441500px;}
.y66_c01136{bottom:587.136733px;}
.y67_c01136{bottom:587.712607px;}
.y68_c01136{bottom:588.582970px;}
.y69_c01136{bottom:589.180158px;}
.y6a_c01136{bottom:590.313556px;}
.y6b_c01136{bottom:590.857743px;}
.y5f_c01136{bottom:620.733000px;}
.y60_c01136{bottom:621.863435px;}
.y61_c01136{bottom:622.333969px;}
.y62_c01136{bottom:623.899566px;}
.y63_c01136{bottom:625.605699px;}
.y64_c01136{bottom:627.383709px;}
.y5e_c01136{bottom:658.506759px;}
.y55_c01136{bottom:690.391500px;}
.y56_c01136{bottom:691.283148px;}
.y57_c01136{bottom:691.677010px;}
.y58_c01136{bottom:692.175295px;}
.y59_c01136{bottom:693.166735px;}
.y5a_c01136{bottom:694.374527px;}
.y5b_c01136{bottom:695.278432px;}
.y5c_c01136{bottom:695.968552px;}
.y5d_c01136{bottom:696.379074px;}
.y54_c01136{bottom:729.671340px;}
.y53_c01136{bottom:729.672045px;}
.y48_c01136{bottom:761.401500px;}
.y49_c01136{bottom:762.392130px;}
.y4a_c01136{bottom:762.819120px;}
.y4b_c01136{bottom:763.162080px;}
.y4c_c01136{bottom:764.371695px;}
.y4d_c01136{bottom:764.698575px;}
.y4e_c01136{bottom:765.375885px;}
.y4f_c01136{bottom:765.827085px;}
.y50_c01136{bottom:766.385985px;}
.y51_c01136{bottom:767.152830px;}
.y52_c01136{bottom:767.474085px;}
.y41_c01136{bottom:796.233000px;}
.y42_c01136{bottom:797.104006px;}
.y43_c01136{bottom:798.813415px;}
.y44_c01136{bottom:799.961185px;}
.y45_c01136{bottom:800.403816px;}
.y46_c01136{bottom:802.270434px;}
.y47_c01136{bottom:802.695846px;}
.y36_c01136{bottom:832.141500px;}
.y37_c01136{bottom:832.637328px;}
.y38_c01136{bottom:832.933950px;}
.y39_c01136{bottom:833.638596px;}
.y3a_c01136{bottom:834.049374px;}
.y3b_c01136{bottom:834.834277px;}
.y3c_c01136{bottom:835.138081px;}
.y3d_c01136{bottom:835.536979px;}
.y3e_c01136{bottom:837.135379px;}
.y3f_c01136{bottom:837.441829px;}
.y40_c01136{bottom:837.752815px;}
.y35_c01136{bottom:870.739615px;}
.y2c_c01136{bottom:904.231500px;}
.y2d_c01136{bottom:905.318619px;}
.y2e_c01136{bottom:906.156340px;}
.y2f_c01136{bottom:906.673186px;}
.y30_c01136{bottom:907.769215px;}
.y31_c01136{bottom:908.865244px;}
.y32_c01136{bottom:909.586905px;}
.y33_c01136{bottom:910.460266px;}
.y34_c01136{bottom:910.830939px;}
.y26_c01136{bottom:938.793000px;}
.y27_c01136{bottom:939.943560px;}
.y28_c01136{bottom:941.620800px;}
.y29_c01136{bottom:943.577085px;}
.y2a_c01136{bottom:945.601860px;}
.y2b_c01136{bottom:946.096275px;}
.y24_c01136{bottom:970.120500px;}
.y25_c01136{bottom:972.214270px;}
.y2_c01136{bottom:1007.232000px;}
.y1a_c01136{bottom:1008.183000px;}
.y1b_c01136{bottom:1009.831462px;}
.y1c_c01136{bottom:1010.491837px;}
.y1d_c01136{bottom:1011.504405px;}
.y1e_c01136{bottom:1012.189687px;}
.y1f_c01136{bottom:1014.003817px;}
.y20_c01136{bottom:1015.162117px;}
.y21_c01136{bottom:1015.664385px;}
.y22_c01136{bottom:1016.146515px;}
.y23_c01136{bottom:1018.183372px;}
.y13_c01136{bottom:1043.286000px;}
.y14_c01136{bottom:1046.825643px;}
.y15_c01136{bottom:1048.093408px;}
.y16_c01136{bottom:1051.027825px;}
.y17_c01136{bottom:1052.105211px;}
.y18_c01136{bottom:1053.782807px;}
.y19_c01136{bottom:1054.634330px;}
.y1_c01136{bottom:1076.751000px;}
.y9_c01136{bottom:1079.463000px;}
.ya_c01136{bottom:1080.677256px;}
.yb_c01136{bottom:1081.416096px;}
.yc_c01136{bottom:1082.483544px;}
.yd_c01136{bottom:1084.380192px;}
.ye_c01136{bottom:1085.106216px;}
.yf_c01136{bottom:1086.704760px;}
.y10_c01136{bottom:1087.581888px;}
.y11_c01136{bottom:1089.098424px;}
.y12_c01136{bottom:1089.724464px;}
.y4_c01136{bottom:1116.183000px;}
.y5_c01136{bottom:1116.996219px;}
.y6_c01136{bottom:1117.802056px;}
.y7_c01136{bottom:1120.341520px;}
.y8_c01136{bottom:1120.983426px;}
.y3_c01136{bottom:1189.614000px;}
.h3_c01136{height:42.000000px;}
.h17_c01136{height:66.000000px;}
.h5_c01136{height:66.011912px;}
.h2_c01136{height:72.000000px;}
.h10_c01136{height:72.002916px;}
.hf_c01136{height:72.003600px;}
.hc_c01136{height:72.004356px;}
.he_c01136{height:72.006084px;}
.ha_c01136{height:72.008100px;}
.h6_c01136{height:72.009215px;}
.h7_c01136{height:72.012995px;}
.h4_c01136{height:78.000000px;}
.h16_c01136{height:78.003159px;}
.h13_c01136{height:78.003900px;}
.hb_c01136{height:78.004719px;}
.h8_c01136{height:78.008775px;}
.hd_c01136{height:84.003402px;}
.h12_c01136{height:84.004200px;}
.h11_c01136{height:84.007098px;}
.h15_c01136{height:90.000000px;}
.h9_c01136{height:96.025389px;}
.h14_c01136{height:102.000000px;}
.h0_c01136{height:1246.320000px;}
.h1_c01136{height:1246.500000px;}
.w0_c01136{width:898.500000px;}
.x0_c01136{left:0.000000px;}
.x1_c01136{left:80.190000px;}
.x2_c01136{left:82.350000px;}
.x85_c01136{left:106.650000px;}
.x90_c01136{left:123.072000px;}
.x9a_c01136{left:124.740000px;}
.x3_c01136{left:128.790000px;}
.x86_c01136{left:144.450000px;}
.x91_c01136{left:146.070000px;}
.x9e_c01136{left:148.500000px;}
.x15_c01136{left:160.438500px;}
.x3c_c01136{left:164.608500px;}
.x43_c01136{left:166.204500px;}
.x4e_c01136{left:167.541000px;}
.x5d_c01136{left:169.192500px;}
.xb_c01136{left:170.590500px;}
.x25_c01136{left:172.470000px;}
.x74_c01136{left:173.880000px;}
.x87_c01136{left:176.580000px;}
.x92_c01136{left:178.389000px;}
.x9f_c01136{left:180.360000px;}
.x5e_c01136{left:222.672000px;}
.x32_c01136{left:228.550500px;}
.x3d_c01136{left:231.609000px;}
.x6_c01136{left:236.917500px;}
.x31_c01136{left:241.114579px;}
.x57_c01136{left:244.085139px;}
.xc_c01136{left:246.481500px;}
.x26_c01136{left:249.174000px;}
.x82_c01136{left:251.100000px;}
.x8d_c01136{left:253.530000px;}
.x58_c01136{left:254.812500px;}
.xa5_c01136{left:256.770000px;}
.x33_c01136{left:261.508500px;}
.x44_c01136{left:265.267500px;}
.x4f_c01136{left:266.613000px;}
.x68_c01136{left:270.144000px;}
.x2b_c01136{left:272.056500px;}
.x7_c01136{left:279.718500px;}
.x75_c01136{left:283.230000px;}
.x93_c01136{left:287.173500px;}
.xa0_c01136{left:289.440000px;}
.x59_c01136{left:291.007500px;}
.xd_c01136{left:292.659000px;}
.x45_c01136{left:307.966500px;}
.x50_c01136{left:310.375500px;}
.x6d_c01136{left:313.740000px;}
.x83_c01136{left:317.250000px;}
.x8_c01136{left:322.131000px;}
.x1c_c01136{left:324.244500px;}
.x24_c01136{left:327.184500px;}
.x8e_c01136{left:330.480000px;}
.x5f_c01136{left:333.921000px;}
.x67_c01136{left:335.474400px;}
.x34_c01136{left:339.802500px;}
.x46_c01136{left:342.262500px;}
.x16_c01136{left:346.735500px;}
.x2c_c01136{left:348.213000px;}
.x84_c01136{left:351.270000px;}
.x69_c01136{left:358.168500px;}
.xe_c01136{left:359.374500px;}
.x27_c01136{left:360.990000px;}
.x3e_c01136{left:363.102000px;}
.x51_c01136{left:365.740500px;}
.x94_c01136{left:375.489000px;}
.x4_c01136{left:377.460000px;}
.x60_c01136{left:379.858500px;}
.x35_c01136{left:385.444500px;}
.x1d_c01136{left:391.749000px;}
.x2d_c01136{left:395.199000px;}
.x9b_c01136{left:397.710000px;}
.x5_c01136{left:399.330000px;}
.x6e_c01136{left:403.110000px;}
.x8f_c01136{left:407.430000px;}
.x5a_c01136{left:411.438000px;}
.x17_c01136{left:413.460000px;}
.x88_c01136{left:418.500000px;}
.xa1_c01136{left:420.390000px;}
.x95_c01136{left:421.423500px;}
.x1e_c01136{left:437.434500px;}
.x9c_c01136{left:441.720000px;}
.x4d_c01136{left:443.083455px;}
.x6f_c01136{left:448.200000px;}
.x3f_c01136{left:451.392000px;}
.x9_c01136{left:455.787000px;}
.x47_c01136{left:463.224000px;}
.xa2_c01136{left:465.210000px;}
.x61_c01136{left:467.043000px;}
.x36_c01136{left:472.656000px;}
.x52_c01136{left:475.900500px;}
.xf_c01136{left:477.915000px;}
.x7c_c01136{left:482.760000px;}
.x40_c01136{left:485.440500px;}
.xa_c01136{left:489.571500px;}
.x28_c01136{left:491.409000px;}
.x89_c01136{left:493.830000px;}
.x2e_c01136{left:494.838000px;}
.x48_c01136{left:495.912000px;}
.x6a_c01136{left:501.273000px;}
.x76_c01136{left:505.170000px;}
.x37_c01136{left:506.412000px;}
.x62_c01136{left:508.903500px;}
.x9d_c01136{left:519.750000px;}
.x10_c01136{left:523.291500px;}
.x77_c01136{left:526.770000px;}
.x63_c01136{left:534.520500px;}
.x6b_c01136{left:535.836000px;}
.x7d_c01136{left:539.190000px;}
.x5b_c01136{left:542.679000px;}
.x38_c01136{left:550.734000px;}
.x96_c01136{left:551.757000px;}
.x1f_c01136{left:558.376500px;}
.x49_c01136{left:563.643000px;}
.xa3_c01136{left:565.650000px;}
.x18_c01136{left:567.903000px;}
.x70_c01136{left:592.380000px;}
.x2f_c01136{left:594.477000px;}
.xa4_c01136{left:599.130000px;}
.x78_c01136{left:603.990000px;}
.x4a_c01136{left:608.763000px;}
.x53_c01136{left:610.099500px;}
.x6c_c01136{left:613.558500px;}
.x11_c01136{left:623.200500px;}
.x19_c01136{left:624.607500px;}
.x29_c01136{left:626.394000px;}
.x41_c01136{left:629.026500px;}
.x20_c01136{left:635.596500px;}
.x79_c01136{left:637.740000px;}
.x8a_c01136{left:638.820000px;}
.x97_c01136{left:640.587000px;}
.x71_c01136{left:657.990000px;}
.x2a_c01136{left:659.355000px;}
.x42_c01136{left:661.750500px;}
.x4b_c01136{left:664.653000px;}
.x8b_c01136{left:667.440000px;}
.x21_c01136{left:669.081000px;}
.x98_c01136{left:673.807500px;}
.x12_c01136{left:678.021000px;}
.x5c_c01136{left:679.449000px;}
.x7e_c01136{left:684.990000px;}
.x64_c01136{left:689.217000px;}
.x72_c01136{left:690.930000px;}
.x22_c01136{left:701.223000px;}
.x54_c01136{left:710.533500px;}
.x1a_c01136{left:712.902000px;}
.x7f_c01136{left:726.570000px;}
.x39_c01136{left:728.334000px;}
.x30_c01136{left:739.479000px;}
.x4c_c01136{left:741.337500px;}
.x65_c01136{left:744.559500px;}
.x1b_c01136{left:757.719000px;}
.x3a_c01136{left:762.384000px;}
.x80_c01136{left:770.850000px;}
.x13_c01136{left:772.804500px;}
.x7a_c01136{left:784.620000px;}
.x55_c01136{left:787.213500px;}
.x3b_c01136{left:796.938000px;}
.x73_c01136{left:805.950000px;}
.x14_c01136{left:811.932000px;}
.x81_c01136{left:816.210000px;}
.x8c_c01136{left:818.100000px;}
.x66_c01136{left:825.237000px;}
.x7b_c01136{left:827.820000px;}
.x56_c01136{left:832.827000px;}
.x99_c01136{left:834.424500px;}
.x23_c01136{left:837.013500px;}
@media print{
.v0_c01136{vertical-align:0.000000pt;}
.ls0_c01136{letter-spacing:0.000000pt;}
.ws0_c01136{word-spacing:0.000000pt;}
.fs1_c01136{font-size:37.333333pt;}
.fs15_c01136{font-size:58.666667pt;}
.fs3_c01136{font-size:58.677255pt;}
.fs0_c01136{font-size:64.000000pt;}
.fse_c01136{font-size:64.002592pt;}
.fsd_c01136{font-size:64.003200pt;}
.fsa_c01136{font-size:64.003872pt;}
.fsc_c01136{font-size:64.005408pt;}
.fs8_c01136{font-size:64.007200pt;}
.fs4_c01136{font-size:64.008191pt;}
.fs5_c01136{font-size:64.011551pt;}
.fs2_c01136{font-size:69.333333pt;}
.fs14_c01136{font-size:69.336141pt;}
.fs11_c01136{font-size:69.336800pt;}
.fs9_c01136{font-size:69.337528pt;}
.fs6_c01136{font-size:69.341133pt;}
.fsb_c01136{font-size:74.669691pt;}
.fs10_c01136{font-size:74.670400pt;}
.fsf_c01136{font-size:74.672976pt;}
.fs13_c01136{font-size:80.000000pt;}
.fs7_c01136{font-size:85.355901pt;}
.fs12_c01136{font-size:90.666667pt;}
.y0_c01136{bottom:0.000000pt;}
.y98_c01136{bottom:49.680000pt;}
.y97_c01136{bottom:78.956000pt;}
.y96_c01136{bottom:81.592000pt;}
.y95_c01136{bottom:112.778667pt;}
.y94_c01136{bottom:144.852000pt;}
.y93_c01136{bottom:173.589180pt;}
.y92_c01136{bottom:174.874116pt;}
.y91_c01136{bottom:175.139880pt;}
.y90_c01136{bottom:175.400952pt;}
.y8f_c01136{bottom:175.850520pt;}
.y8e_c01136{bottom:176.552472pt;}
.y8d_c01136{bottom:176.893188pt;}
.y8c_c01136{bottom:177.260664pt;}
.y8b_c01136{bottom:177.967188pt;}
.y8a_c01136{bottom:178.139652pt;}
.y89_c01136{bottom:178.837464pt;}
.y88_c01136{bottom:179.096016pt;}
.y87_c01136{bottom:179.280000pt;}
.y86_c01136{bottom:208.802667pt;}
.y85_c01136{bottom:240.326667pt;}
.y84_c01136{bottom:271.538667pt;}
.y83_c01136{bottom:301.441333pt;}
.y82_c01136{bottom:332.225333pt;}
.y81_c01136{bottom:396.628000pt;}
.y78_c01136{bottom:426.241333pt;}
.y79_c01136{bottom:426.770701pt;}
.y7a_c01136{bottom:427.042945pt;}
.y7b_c01136{bottom:427.479253pt;}
.y7c_c01136{bottom:427.747141pt;}
.y7d_c01136{bottom:428.891977pt;}
.y7e_c01136{bottom:429.168481pt;}
.y7f_c01136{bottom:429.790261pt;}
.y80_c01136{bottom:429.963361pt;}
.y74_c01136{bottom:459.839520pt;}
.y75_c01136{bottom:460.543227pt;}
.y76_c01136{bottom:460.890987pt;}
.y77_c01136{bottom:461.774027pt;}
.y6c_c01136{bottom:488.881333pt;}
.y6d_c01136{bottom:489.855787pt;}
.y6e_c01136{bottom:490.143827pt;}
.y6f_c01136{bottom:491.036707pt;}
.y70_c01136{bottom:492.128840pt;}
.y71_c01136{bottom:493.503920pt;}
.y72_c01136{bottom:493.995853pt;}
.y73_c01136{bottom:494.712987pt;}
.y65_c01136{bottom:521.281333pt;}
.y66_c01136{bottom:521.899319pt;}
.y67_c01136{bottom:522.411207pt;}
.y68_c01136{bottom:523.184863pt;}
.y69_c01136{bottom:523.715696pt;}
.y6a_c01136{bottom:524.723161pt;}
.y6b_c01136{bottom:525.206883pt;}
.y5f_c01136{bottom:551.762667pt;}
.y60_c01136{bottom:552.767497pt;}
.y61_c01136{bottom:553.185751pt;}
.y62_c01136{bottom:554.577392pt;}
.y63_c01136{bottom:556.093955pt;}
.y64_c01136{bottom:557.674408pt;}
.y5e_c01136{bottom:585.339341pt;}
.y55_c01136{bottom:613.681333pt;}
.y56_c01136{bottom:614.473909pt;}
.y57_c01136{bottom:614.824009pt;}
.y58_c01136{bottom:615.266929pt;}
.y59_c01136{bottom:616.148209pt;}
.y5a_c01136{bottom:617.221801pt;}
.y5b_c01136{bottom:618.025273pt;}
.y5c_c01136{bottom:618.638713pt;}
.y5d_c01136{bottom:619.003621pt;}
.y54_c01136{bottom:648.596747pt;}
.y53_c01136{bottom:648.597373pt;}
.y48_c01136{bottom:676.801333pt;}
.y49_c01136{bottom:677.681893pt;}
.y4a_c01136{bottom:678.061440pt;}
.y4b_c01136{bottom:678.366293pt;}
.y4c_c01136{bottom:679.441507pt;}
.y4d_c01136{bottom:679.732067pt;}
.y4e_c01136{bottom:680.334120pt;}
.y4f_c01136{bottom:680.735187pt;}
.y50_c01136{bottom:681.231987pt;}
.y51_c01136{bottom:681.913627pt;}
.y52_c01136{bottom:682.199187pt;}
.y41_c01136{bottom:707.762667pt;}
.y42_c01136{bottom:708.536895pt;}
.y43_c01136{bottom:710.056369pt;}
.y44_c01136{bottom:711.076609pt;}
.y45_c01136{bottom:711.470059pt;}
.y46_c01136{bottom:713.129275pt;}
.y47_c01136{bottom:713.507419pt;}
.y36_c01136{bottom:739.681333pt;}
.y37_c01136{bottom:740.122069pt;}
.y38_c01136{bottom:740.385733pt;}
.y39_c01136{bottom:741.012085pt;}
.y3a_c01136{bottom:741.377221pt;}
.y3b_c01136{bottom:742.074913pt;}
.y3c_c01136{bottom:742.344961pt;}
.y3d_c01136{bottom:742.699537pt;}
.y3e_c01136{bottom:744.120337pt;}
.y3f_c01136{bottom:744.392737pt;}
.y40_c01136{bottom:744.669169pt;}
.y35_c01136{bottom:773.990769pt;}
.y2c_c01136{bottom:803.761333pt;}
.y2d_c01136{bottom:804.727661pt;}
.y2e_c01136{bottom:805.472303pt;}
.y2f_c01136{bottom:805.931721pt;}
.y30_c01136{bottom:806.905969pt;}
.y31_c01136{bottom:807.880217pt;}
.y32_c01136{bottom:808.521693pt;}
.y33_c01136{bottom:809.298015pt;}
.y34_c01136{bottom:809.627501pt;}
.y26_c01136{bottom:834.482667pt;}
.y27_c01136{bottom:835.505387pt;}
.y28_c01136{bottom:836.996267pt;}
.y29_c01136{bottom:838.735187pt;}
.y2a_c01136{bottom:840.534987pt;}
.y2b_c01136{bottom:840.974467pt;}
.y24_c01136{bottom:862.329333pt;}
.y25_c01136{bottom:864.190463pt;}
.y2_c01136{bottom:895.317333pt;}
.y1a_c01136{bottom:896.162667pt;}
.y1b_c01136{bottom:897.627967pt;}
.y1c_c01136{bottom:898.214967pt;}
.y1d_c01136{bottom:899.115027pt;}
.y1e_c01136{bottom:899.724167pt;}
.y1f_c01136{bottom:901.336727pt;}
.y20_c01136{bottom:902.366327pt;}
.y21_c01136{bottom:902.812787pt;}
.y22_c01136{bottom:903.241347pt;}
.y23_c01136{bottom:905.051887pt;}
.y13_c01136{bottom:927.365333pt;}
.y14_c01136{bottom:930.511683pt;}
.y15_c01136{bottom:931.638585pt;}
.y16_c01136{bottom:934.246956pt;}
.y17_c01136{bottom:935.204632pt;}
.y18_c01136{bottom:936.695828pt;}
.y19_c01136{bottom:937.452737pt;}
.y1_c01136{bottom:957.112000pt;}
.y9_c01136{bottom:959.522667pt;}
.ya_c01136{bottom:960.602005pt;}
.yb_c01136{bottom:961.258752pt;}
.yc_c01136{bottom:962.207595pt;}
.yd_c01136{bottom:963.893504pt;}
.ye_c01136{bottom:964.538859pt;}
.yf_c01136{bottom:965.959787pt;}
.y10_c01136{bottom:966.739456pt;}
.y11_c01136{bottom:968.087488pt;}
.y12_c01136{bottom:968.643968pt;}
.y4_c01136{bottom:992.162667pt;}
.y5_c01136{bottom:992.885528pt;}
.y6_c01136{bottom:993.601828pt;}
.y7_c01136{bottom:995.859129pt;}
.y8_c01136{bottom:996.429712pt;}
.y3_c01136{bottom:1057.434667pt;}
.h3_c01136{height:37.333333pt;}
.h17_c01136{height:58.666667pt;}
.h5_c01136{height:58.677255pt;}
.h2_c01136{height:64.000000pt;}
.h10_c01136{height:64.002592pt;}
.hf_c01136{height:64.003200pt;}
.hc_c01136{height:64.003872pt;}
.he_c01136{height:64.005408pt;}
.ha_c01136{height:64.007200pt;}
.h6_c01136{height:64.008191pt;}
.h7_c01136{height:64.011551pt;}
.h4_c01136{height:69.333333pt;}
.h16_c01136{height:69.336141pt;}
.h13_c01136{height:69.336800pt;}
.hb_c01136{height:69.337528pt;}
.h8_c01136{height:69.341133pt;}
.hd_c01136{height:74.669691pt;}
.h12_c01136{height:74.670400pt;}
.h11_c01136{height:74.672976pt;}
.h15_c01136{height:80.000000pt;}
.h9_c01136{height:85.355901pt;}
.h14_c01136{height:90.666667pt;}
.h0_c01136{height:1107.840000pt;}
.h1_c01136{height:1108.000000pt;}
.w0_c01136{width:798.666667pt;}
.x0_c01136{left:0.000000pt;}
.x1_c01136{left:71.280000pt;}
.x2_c01136{left:73.200000pt;}
.x85_c01136{left:94.800000pt;}
.x90_c01136{left:109.397333pt;}
.x9a_c01136{left:110.880000pt;}
.x3_c01136{left:114.480000pt;}
.x86_c01136{left:128.400000pt;}
.x91_c01136{left:129.840000pt;}
.x9e_c01136{left:132.000000pt;}
.x15_c01136{left:142.612000pt;}
.x3c_c01136{left:146.318667pt;}
.x43_c01136{left:147.737333pt;}
.x4e_c01136{left:148.925333pt;}
.x5d_c01136{left:150.393333pt;}
.xb_c01136{left:151.636000pt;}
.x25_c01136{left:153.306667pt;}
.x74_c01136{left:154.560000pt;}
.x87_c01136{left:156.960000pt;}
.x92_c01136{left:158.568000pt;}
.x9f_c01136{left:160.320000pt;}
.x5e_c01136{left:197.930667pt;}
.x32_c01136{left:203.156000pt;}
.x3d_c01136{left:205.874667pt;}
.x6_c01136{left:210.593333pt;}
.x31_c01136{left:214.324071pt;}
.x57_c01136{left:216.964568pt;}
.xc_c01136{left:219.094667pt;}
.x26_c01136{left:221.488000pt;}
.x82_c01136{left:223.200000pt;}
.x8d_c01136{left:225.360000pt;}
.x58_c01136{left:226.500000pt;}
.xa5_c01136{left:228.240000pt;}
.x33_c01136{left:232.452000pt;}
.x44_c01136{left:235.793333pt;}
.x4f_c01136{left:236.989333pt;}
.x68_c01136{left:240.128000pt;}
.x2b_c01136{left:241.828000pt;}
.x7_c01136{left:248.638667pt;}
.x75_c01136{left:251.760000pt;}
.x93_c01136{left:255.265333pt;}
.xa0_c01136{left:257.280000pt;}
.x59_c01136{left:258.673333pt;}
.xd_c01136{left:260.141333pt;}
.x45_c01136{left:273.748000pt;}
.x50_c01136{left:275.889333pt;}
.x6d_c01136{left:278.880000pt;}
.x83_c01136{left:282.000000pt;}
.x8_c01136{left:286.338667pt;}
.x1c_c01136{left:288.217333pt;}
.x24_c01136{left:290.830667pt;}
.x8e_c01136{left:293.760000pt;}
.x5f_c01136{left:296.818667pt;}
.x67_c01136{left:298.199467pt;}
.x34_c01136{left:302.046667pt;}
.x46_c01136{left:304.233333pt;}
.x16_c01136{left:308.209333pt;}
.x2c_c01136{left:309.522667pt;}
.x84_c01136{left:312.240000pt;}
.x69_c01136{left:318.372000pt;}
.xe_c01136{left:319.444000pt;}
.x27_c01136{left:320.880000pt;}
.x3e_c01136{left:322.757333pt;}
.x51_c01136{left:325.102667pt;}
.x94_c01136{left:333.768000pt;}
.x4_c01136{left:335.520000pt;}
.x60_c01136{left:337.652000pt;}
.x35_c01136{left:342.617333pt;}
.x1d_c01136{left:348.221333pt;}
.x2d_c01136{left:351.288000pt;}
.x9b_c01136{left:353.520000pt;}
.x5_c01136{left:354.960000pt;}
.x6e_c01136{left:358.320000pt;}
.x8f_c01136{left:362.160000pt;}
.x5a_c01136{left:365.722667pt;}
.x17_c01136{left:367.520000pt;}
.x88_c01136{left:372.000000pt;}
.xa1_c01136{left:373.680000pt;}
.x95_c01136{left:374.598667pt;}
.x1e_c01136{left:388.830667pt;}
.x9c_c01136{left:392.640000pt;}
.x4d_c01136{left:393.851960pt;}
.x6f_c01136{left:398.400000pt;}
.x3f_c01136{left:401.237333pt;}
.x9_c01136{left:405.144000pt;}
.x47_c01136{left:411.754667pt;}
.xa2_c01136{left:413.520000pt;}
.x61_c01136{left:415.149333pt;}
.x36_c01136{left:420.138667pt;}
.x52_c01136{left:423.022667pt;}
.xf_c01136{left:424.813333pt;}
.x7c_c01136{left:429.120000pt;}
.x40_c01136{left:431.502667pt;}
.xa_c01136{left:435.174667pt;}
.x28_c01136{left:436.808000pt;}
.x89_c01136{left:438.960000pt;}
.x2e_c01136{left:439.856000pt;}
.x48_c01136{left:440.810667pt;}
.x6a_c01136{left:445.576000pt;}
.x76_c01136{left:449.040000pt;}
.x37_c01136{left:450.144000pt;}
.x62_c01136{left:452.358667pt;}
.x9d_c01136{left:462.000000pt;}
.x10_c01136{left:465.148000pt;}
.x77_c01136{left:468.240000pt;}
.x63_c01136{left:475.129333pt;}
.x6b_c01136{left:476.298667pt;}
.x7d_c01136{left:479.280000pt;}
.x5b_c01136{left:482.381333pt;}
.x38_c01136{left:489.541333pt;}
.x96_c01136{left:490.450667pt;}
.x1f_c01136{left:496.334667pt;}
.x49_c01136{left:501.016000pt;}
.xa3_c01136{left:502.800000pt;}
.x18_c01136{left:504.802667pt;}
.x70_c01136{left:526.560000pt;}
.x2f_c01136{left:528.424000pt;}
.xa4_c01136{left:532.560000pt;}
.x78_c01136{left:536.880000pt;}
.x4a_c01136{left:541.122667pt;}
.x53_c01136{left:542.310667pt;}
.x6c_c01136{left:545.385333pt;}
.x11_c01136{left:553.956000pt;}
.x19_c01136{left:555.206667pt;}
.x29_c01136{left:556.794667pt;}
.x41_c01136{left:559.134667pt;}
.x20_c01136{left:564.974667pt;}
.x79_c01136{left:566.880000pt;}
.x8a_c01136{left:567.840000pt;}
.x97_c01136{left:569.410667pt;}
.x71_c01136{left:584.880000pt;}
.x2a_c01136{left:586.093333pt;}
.x42_c01136{left:588.222667pt;}
.x4b_c01136{left:590.802667pt;}
.x8b_c01136{left:593.280000pt;}
.x21_c01136{left:594.738667pt;}
.x98_c01136{left:598.940000pt;}
.x12_c01136{left:602.685333pt;}
.x5c_c01136{left:603.954667pt;}
.x7e_c01136{left:608.880000pt;}
.x64_c01136{left:612.637333pt;}
.x72_c01136{left:614.160000pt;}
.x22_c01136{left:623.309333pt;}
.x54_c01136{left:631.585333pt;}
.x1a_c01136{left:633.690667pt;}
.x7f_c01136{left:645.840000pt;}
.x39_c01136{left:647.408000pt;}
.x30_c01136{left:657.314667pt;}
.x4c_c01136{left:658.966667pt;}
.x65_c01136{left:661.830667pt;}
.x1b_c01136{left:673.528000pt;}
.x3a_c01136{left:677.674667pt;}
.x80_c01136{left:685.200000pt;}
.x13_c01136{left:686.937333pt;}
.x7a_c01136{left:697.440000pt;}
.x55_c01136{left:699.745333pt;}
.x3b_c01136{left:708.389333pt;}
.x73_c01136{left:716.400000pt;}
.x14_c01136{left:721.717333pt;}
.x81_c01136{left:725.520000pt;}
.x8c_c01136{left:727.200000pt;}
.x66_c01136{left:733.544000pt;}
.x7b_c01136{left:735.840000pt;}
.x56_c01136{left:740.290667pt;}
.x99_c01136{left:741.710667pt;}
.x23_c01136{left:744.012000pt;}
}





/* 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_c01137 {
    display:none;
  }
  .loading-indicator_c01137.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01137 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_c01137 { 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_c01137" -> "#page-container .classname_c01137")
 */
.pf_c01137 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01137 { /* 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_c01137.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01137 { /* 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_c01137 { /* 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_c01137 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01137 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01137 {overflow:visible;}
  }
}
.c_c01137 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01137 { /* 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_c01137:after { /* webkit #35443 */
  content: '';
}
.t_c01137:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01137 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 */
}
.__c01137 { /* 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_c01137 { /* info for Javascript */
  display:none;
}
.l_c01137 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01137 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01137 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01137: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_c01137 {
    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_c01137.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01137.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_c01137 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01137{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01137;src:url('chunks/assets/font_b11a17f404e7258299fdf971.woff2')format("woff");}.ff1_c01137{font-family:ff1_c01137;line-height:1.000000;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;}
.m3_c01137{transform:matrix(0.101947,-0.002956,0.007247,0.249895,0,0);-ms-transform:matrix(0.101947,-0.002956,0.007247,0.249895,0,0);-webkit-transform:matrix(0.101947,-0.002956,0.007247,0.249895,0,0);}
.m1_c01137{transform:matrix(0.128091,-0.003715,0.007247,0.249895,0,0);-ms-transform:matrix(0.128091,-0.003715,0.007247,0.249895,0,0);-webkit-transform:matrix(0.128091,-0.003715,0.007247,0.249895,0,0);}
.m4_c01137{transform:matrix(0.138727,-0.004023,0.007247,0.249895,0,0);-ms-transform:matrix(0.138727,-0.004023,0.007247,0.249895,0,0);-webkit-transform:matrix(0.138727,-0.004023,0.007247,0.249895,0,0);}
.m0_c01137{transform:matrix(0.142605,-0.004136,0.007247,0.249895,0,0);-ms-transform:matrix(0.142605,-0.004136,0.007247,0.249895,0,0);-webkit-transform:matrix(0.142605,-0.004136,0.007247,0.249895,0,0);}
.m2_c01137{transform:matrix(0.151261,-0.004387,0.007247,0.249895,0,0);-ms-transform:matrix(0.151261,-0.004387,0.007247,0.249895,0,0);-webkit-transform:matrix(0.151261,-0.004387,0.007247,0.249895,0,0);}
.m5_c01137{transform:matrix(0.384480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384480,0.000000,0.000000,0.250000,0,0);}
.v0_c01137{vertical-align:0.000000px;}
.ls0_c01137{letter-spacing:0.000000px;}
.sc__c01137{text-shadow:none;}
.sc0_c01137{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__c01137{-webkit-text-stroke:0px transparent;}
.sc0_c01137{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01137{word-spacing:0.000000px;}
.fc0_c01137{color:transparent;}
.fs1_c01137{font-size:18.000000px;}
.fs0_c01137{font-size:168.070629px;}
.y0_c01137{bottom:0.000000px;}
.y6_c01137{bottom:542.968500px;}
.y1_c01137{bottom:548.935500px;}
.y2_c01137{bottom:551.510961px;}
.y3_c01137{bottom:552.146278px;}
.y4_c01137{bottom:555.593871px;}
.y5_c01137{bottom:556.919664px;}
.h3_c01137{height:18.000000px;}
.h2_c01137{height:168.070629px;}
.h0_c01137{height:1246.320000px;}
.h1_c01137{height:1246.500000px;}
.w0_c01137{width:898.500000px;}
.x0_c01137{left:0.000000px;}
.x1_c01137{left:505.236000px;}
.x2_c01137{left:594.045000px;}
.x6_c01137{left:611.280000px;}
.x3_c01137{left:615.952500px;}
.x4_c01137{left:734.835000px;}
.x5_c01137{left:780.552000px;}
@media print{
.v0_c01137{vertical-align:0.000000pt;}
.ls0_c01137{letter-spacing:0.000000pt;}
.ws0_c01137{word-spacing:0.000000pt;}
.fs1_c01137{font-size:16.000000pt;}
.fs0_c01137{font-size:149.396115pt;}
.y0_c01137{bottom:0.000000pt;}
.y6_c01137{bottom:482.638667pt;}
.y1_c01137{bottom:487.942667pt;}
.y2_c01137{bottom:490.231965pt;}
.y3_c01137{bottom:490.796692pt;}
.y4_c01137{bottom:493.861219pt;}
.y5_c01137{bottom:495.039701pt;}
.h3_c01137{height:16.000000pt;}
.h2_c01137{height:149.396115pt;}
.h0_c01137{height:1107.840000pt;}
.h1_c01137{height:1108.000000pt;}
.w0_c01137{width:798.666667pt;}
.x0_c01137{left:0.000000pt;}
.x1_c01137{left:449.098667pt;}
.x2_c01137{left:528.040000pt;}
.x6_c01137{left:543.360000pt;}
.x3_c01137{left:547.513333pt;}
.x4_c01137{left:653.186667pt;}
.x5_c01137{left:693.824000pt;}
}





/* 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_c01138 {
    display:none;
  }
  .loading-indicator_c01138.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01138 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_c01138 { 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_c01138" -> "#page-container .classname_c01138")
 */
.pf_c01138 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01138 { /* 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_c01138.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01138 { /* 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_c01138 { /* 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_c01138 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01138 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01138 {overflow:visible;}
  }
}
.c_c01138 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01138 { /* 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_c01138:after { /* webkit #35443 */
  content: '';
}
.t_c01138:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01138 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 */
}
.__c01138 { /* 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_c01138 { /* info for Javascript */
  display:none;
}
.l_c01138 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01138 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01138 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01138: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_c01138 {
    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_c01138.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01138.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_c01138 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01138{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01138;src:url('chunks/assets/font_c605e72f209fc835e906f064.woff2')format("woff");}.ff1_c01138{font-family:ff1_c01138;line-height:1.000000;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;}
.m59_c01138{transform:matrix(0.008485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.008485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.008485,0.000000,0.000000,0.250000,0,0);}
.m2d_c01138{transform:matrix(0.009790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.009790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.009790,0.000000,0.000000,0.250000,0,0);}
.m43_c01138{transform:matrix(0.010605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.010605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.010605,0.000000,0.000000,0.250000,0,0);}
.m80_c01138{transform:matrix(0.013519,0.000122,-0.002250,0.249990,0,0);-ms-transform:matrix(0.013519,0.000122,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.013519,0.000122,-0.002250,0.249990,0,0);}
.m7f_c01138{transform:matrix(0.018749,0.000169,-0.002250,0.249990,0,0);-ms-transform:matrix(0.018749,0.000169,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.018749,0.000169,-0.002250,0.249990,0,0);}
.m42_c01138{transform:matrix(0.031820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.031820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.031820,0.000000,0.000000,0.250000,0,0);}
.m11_c01138{transform:matrix(0.102149,-0.001532,0.003750,0.249972,0,0);-ms-transform:matrix(0.102149,-0.001532,0.003750,0.249972,0,0);-webkit-transform:matrix(0.102149,-0.001532,0.003750,0.249972,0,0);}
.me_c01138{transform:matrix(0.103230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103230,0.000000,0.000000,0.250000,0,0);}
.m7e_c01138{transform:matrix(0.111365,0.001002,-0.002250,0.249990,0,0);-ms-transform:matrix(0.111365,0.001002,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.111365,0.001002,-0.002250,0.249990,0,0);}
.m5c_c01138{transform:matrix(0.144770,0.001158,-0.002000,0.249992,0,0);-ms-transform:matrix(0.144770,0.001158,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.144770,0.001158,-0.002000,0.249992,0,0);}
.m14_c01138{transform:matrix(0.145139,-0.002177,0.003750,0.249972,0,0);-ms-transform:matrix(0.145139,-0.002177,0.003750,0.249972,0,0);-webkit-transform:matrix(0.145139,-0.002177,0.003750,0.249972,0,0);}
.m60_c01138{transform:matrix(0.151720,0.001214,-0.002000,0.249992,0,0);-ms-transform:matrix(0.151720,0.001214,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.151720,0.001214,-0.002000,0.249992,0,0);}
.m13_c01138{transform:matrix(0.166256,-0.002494,0.003750,0.249972,0,0);-ms-transform:matrix(0.166256,-0.002494,0.003750,0.249972,0,0);-webkit-transform:matrix(0.166256,-0.002494,0.003750,0.249972,0,0);}
.m12_c01138{transform:matrix(0.166381,-0.002496,0.003750,0.249972,0,0);-ms-transform:matrix(0.166381,-0.002496,0.003750,0.249972,0,0);-webkit-transform:matrix(0.166381,-0.002496,0.003750,0.249972,0,0);}
.m75_c01138{transform:matrix(0.173348,0.001560,-0.002250,0.249990,0,0);-ms-transform:matrix(0.173348,0.001560,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.173348,0.001560,-0.002250,0.249990,0,0);}
.m10_c01138{transform:matrix(0.173465,-0.002602,0.003750,0.249972,0,0);-ms-transform:matrix(0.173465,-0.002602,0.003750,0.249972,0,0);-webkit-transform:matrix(0.173465,-0.002602,0.003750,0.249972,0,0);}
.m15_c01138{transform:matrix(0.176535,-0.002648,0.003750,0.249972,0,0);-ms-transform:matrix(0.176535,-0.002648,0.003750,0.249972,0,0);-webkit-transform:matrix(0.176535,-0.002648,0.003750,0.249972,0,0);}
.m16_c01138{transform:matrix(0.179200,-0.002688,0.003750,0.249972,0,0);-ms-transform:matrix(0.179200,-0.002688,0.003750,0.249972,0,0);-webkit-transform:matrix(0.179200,-0.002688,0.003750,0.249972,0,0);}
.m20_c01138{transform:matrix(0.181880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181880,0.000000,0.000000,0.250000,0,0);}
.m48_c01138{transform:matrix(0.185300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185300,0.000000,0.000000,0.250000,0,0);}
.m76_c01138{transform:matrix(0.187102,0.001684,-0.002250,0.249990,0,0);-ms-transform:matrix(0.187102,0.001684,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.187102,0.001684,-0.002250,0.249990,0,0);}
.m77_c01138{transform:matrix(0.187547,0.001688,-0.002250,0.249990,0,0);-ms-transform:matrix(0.187547,0.001688,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.187547,0.001688,-0.002250,0.249990,0,0);}
.mc8_c01138{transform:matrix(0.191653,0.002108,-0.002750,0.249985,0,0);-ms-transform:matrix(0.191653,0.002108,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.191653,0.002108,-0.002750,0.249985,0,0);}
.md7_c01138{transform:matrix(0.195540,0.003715,-0.004749,0.249955,0,0);-ms-transform:matrix(0.195540,0.003715,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.195540,0.003715,-0.004749,0.249955,0,0);}
.mc4_c01138{transform:matrix(0.196723,0.002164,-0.002750,0.249985,0,0);-ms-transform:matrix(0.196723,0.002164,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.196723,0.002164,-0.002750,0.249985,0,0);}
.m57_c01138{transform:matrix(0.198150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198150,0.000000,0.000000,0.250000,0,0);}
.m7b_c01138{transform:matrix(0.200797,0.001807,-0.002250,0.249990,0,0);-ms-transform:matrix(0.200797,0.001807,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.200797,0.001807,-0.002250,0.249990,0,0);}
.m3a_c01138{transform:matrix(0.201245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201245,0.000000,0.000000,0.250000,0,0);}
.m85_c01138{transform:matrix(0.201487,0.001813,-0.002250,0.249990,0,0);-ms-transform:matrix(0.201487,0.001813,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.201487,0.001813,-0.002250,0.249990,0,0);}
.m6a_c01138{transform:matrix(0.202288,0.002225,-0.002750,0.249985,0,0);-ms-transform:matrix(0.202288,0.002225,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.202288,0.002225,-0.002750,0.249985,0,0);}
.m29_c01138{transform:matrix(0.204020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204020,0.000000,0.000000,0.250000,0,0);}
.m56_c01138{transform:matrix(0.206160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206160,0.000000,0.000000,0.250000,0,0);}
.m7a_c01138{transform:matrix(0.206212,0.001856,-0.002250,0.249990,0,0);-ms-transform:matrix(0.206212,0.001856,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.206212,0.001856,-0.002250,0.249990,0,0);}
.m44_c01138{transform:matrix(0.207795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207795,0.000000,0.000000,0.250000,0,0);}
.mb6_c01138{transform:matrix(0.207985,0.003536,-0.004249,0.249964,0,0);-ms-transform:matrix(0.207985,0.003536,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.207985,0.003536,-0.004249,0.249964,0,0);}
.m79_c01138{transform:matrix(0.208142,0.001873,-0.002250,0.249990,0,0);-ms-transform:matrix(0.208142,0.001873,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.208142,0.001873,-0.002250,0.249990,0,0);}
.m45_c01138{transform:matrix(0.209805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209805,0.000000,0.000000,0.250000,0,0);}
.m8c_c01138{transform:matrix(0.209926,0.001889,-0.002250,0.249990,0,0);-ms-transform:matrix(0.209926,0.001889,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.209926,0.001889,-0.002250,0.249990,0,0);}
.m67_c01138{transform:matrix(0.209928,0.001679,-0.002000,0.249992,0,0);-ms-transform:matrix(0.209928,0.001679,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.209928,0.001679,-0.002000,0.249992,0,0);}
.m63_c01138{transform:matrix(0.210653,0.001685,-0.002000,0.249992,0,0);-ms-transform:matrix(0.210653,0.001685,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.210653,0.001685,-0.002000,0.249992,0,0);}
.m86_c01138{transform:matrix(0.211651,0.001905,-0.002250,0.249990,0,0);-ms-transform:matrix(0.211651,0.001905,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.211651,0.001905,-0.002250,0.249990,0,0);}
.m5d_c01138{transform:matrix(0.211863,0.001695,-0.002000,0.249992,0,0);-ms-transform:matrix(0.211863,0.001695,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.211863,0.001695,-0.002000,0.249992,0,0);}
.mb9_c01138{transform:matrix(0.212884,0.003619,-0.004249,0.249964,0,0);-ms-transform:matrix(0.212884,0.003619,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.212884,0.003619,-0.004249,0.249964,0,0);}
.m92_c01138{transform:matrix(0.213126,0.001918,-0.002250,0.249990,0,0);-ms-transform:matrix(0.213126,0.001918,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.213126,0.001918,-0.002250,0.249990,0,0);}
.m5f_c01138{transform:matrix(0.213128,0.001705,-0.002000,0.249992,0,0);-ms-transform:matrix(0.213128,0.001705,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.213128,0.001705,-0.002000,0.249992,0,0);}
.m82_c01138{transform:matrix(0.214256,0.001928,-0.002250,0.249990,0,0);-ms-transform:matrix(0.214256,0.001928,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.214256,0.001928,-0.002250,0.249990,0,0);}
.m70_c01138{transform:matrix(0.214402,0.002358,-0.002750,0.249985,0,0);-ms-transform:matrix(0.214402,0.002358,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.214402,0.002358,-0.002750,0.249985,0,0);}
.m90_c01138{transform:matrix(0.214691,0.001932,-0.002250,0.249990,0,0);-ms-transform:matrix(0.214691,0.001932,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.214691,0.001932,-0.002250,0.249990,0,0);}
.mda_c01138{transform:matrix(0.215516,0.003233,-0.003750,0.249972,0,0);-ms-transform:matrix(0.215516,0.003233,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.215516,0.003233,-0.003750,0.249972,0,0);}
.m47_c01138{transform:matrix(0.215855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215855,0.000000,0.000000,0.250000,0,0);}
.m58_c01138{transform:matrix(0.216575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216575,0.000000,0.000000,0.250000,0,0);}
.m78_c01138{transform:matrix(0.217581,0.001958,-0.002250,0.249990,0,0);-ms-transform:matrix(0.217581,0.001958,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.217581,0.001958,-0.002250,0.249990,0,0);}
.m46_c01138{transform:matrix(0.220295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220295,0.000000,0.000000,0.250000,0,0);}
.m61_c01138{transform:matrix(0.220433,0.001763,-0.002000,0.249992,0,0);-ms-transform:matrix(0.220433,0.001763,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.220433,0.001763,-0.002000,0.249992,0,0);}
.m18_c01138{transform:matrix(0.221880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221880,0.000000,0.000000,0.250000,0,0);}
.md4_c01138{transform:matrix(0.222405,0.004226,-0.004749,0.249955,0,0);-ms-transform:matrix(0.222405,0.004226,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.222405,0.004226,-0.004749,0.249955,0,0);}
.m2f_c01138{transform:matrix(0.222610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222610,0.000000,0.000000,0.250000,0,0);}
.m83_c01138{transform:matrix(0.222726,0.002005,-0.002250,0.249990,0,0);-ms-transform:matrix(0.222726,0.002005,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.222726,0.002005,-0.002250,0.249990,0,0);}
.mba_c01138{transform:matrix(0.222998,0.003791,-0.004249,0.249964,0,0);-ms-transform:matrix(0.222998,0.003791,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.222998,0.003791,-0.004249,0.249964,0,0);}
.ma5_c01138{transform:matrix(0.224603,0.003144,-0.003500,0.249976,0,0);-ms-transform:matrix(0.224603,0.003144,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.224603,0.003144,-0.003500,0.249976,0,0);}
.m3c_c01138{transform:matrix(0.225465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225465,0.000000,0.000000,0.250000,0,0);}
.me3_c01138{transform:matrix(0.225575,0.004963,-0.005499,0.249940,0,0);-ms-transform:matrix(0.225575,0.004963,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.225575,0.004963,-0.005499,0.249940,0,0);}
.m21_c01138{transform:matrix(0.225675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225675,0.000000,0.000000,0.250000,0,0);}
.m5e_c01138{transform:matrix(0.225928,0.001807,-0.002000,0.249992,0,0);-ms-transform:matrix(0.225928,0.001807,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.225928,0.001807,-0.002000,0.249992,0,0);}
.m6e_c01138{transform:matrix(0.226341,0.002490,-0.002750,0.249985,0,0);-ms-transform:matrix(0.226341,0.002490,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.226341,0.002490,-0.002750,0.249985,0,0);}
.m66_c01138{transform:matrix(0.226593,0.001813,-0.002000,0.249992,0,0);-ms-transform:matrix(0.226593,0.001813,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.226593,0.001813,-0.002000,0.249992,0,0);}
.mb7_c01138{transform:matrix(0.226722,0.003854,-0.004249,0.249964,0,0);-ms-transform:matrix(0.226722,0.003854,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.226722,0.003854,-0.004249,0.249964,0,0);}
.m32_c01138{transform:matrix(0.226745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226745,0.000000,0.000000,0.250000,0,0);}
.m25_c01138{transform:matrix(0.227430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227430,0.000000,0.000000,0.250000,0,0);}
.md3_c01138{transform:matrix(0.227529,0.004323,-0.004749,0.249955,0,0);-ms-transform:matrix(0.227529,0.004323,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.227529,0.004323,-0.004749,0.249955,0,0);}
.mca_c01138{transform:matrix(0.227671,0.002504,-0.002750,0.249985,0,0);-ms-transform:matrix(0.227671,0.002504,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.227671,0.002504,-0.002750,0.249985,0,0);}
.m64_c01138{transform:matrix(0.227743,0.001822,-0.002000,0.249992,0,0);-ms-transform:matrix(0.227743,0.001822,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.227743,0.001822,-0.002000,0.249992,0,0);}
.m93_c01138{transform:matrix(0.227976,0.002052,-0.002250,0.249990,0,0);-ms-transform:matrix(0.227976,0.002052,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.227976,0.002052,-0.002250,0.249990,0,0);}
.ma6_c01138{transform:matrix(0.228033,0.003192,-0.003500,0.249976,0,0);-ms-transform:matrix(0.228033,0.003192,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.228033,0.003192,-0.003500,0.249976,0,0);}
.m22_c01138{transform:matrix(0.228110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228110,0.000000,0.000000,0.250000,0,0);}
.m84_c01138{transform:matrix(0.228596,0.002057,-0.002250,0.249990,0,0);-ms-transform:matrix(0.228596,0.002057,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.228596,0.002057,-0.002250,0.249990,0,0);}
.m53_c01138{transform:matrix(0.228690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228690,0.000000,0.000000,0.250000,0,0);}
.mc6_c01138{transform:matrix(0.229991,0.002530,-0.002750,0.249985,0,0);-ms-transform:matrix(0.229991,0.002530,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.229991,0.002530,-0.002750,0.249985,0,0);}
.mdb_c01138{transform:matrix(0.230609,0.003459,-0.003750,0.249972,0,0);-ms-transform:matrix(0.230609,0.003459,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.230609,0.003459,-0.003750,0.249972,0,0);}
.mad_c01138{transform:matrix(0.232251,0.003948,-0.004249,0.249964,0,0);-ms-transform:matrix(0.232251,0.003948,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.232251,0.003948,-0.004249,0.249964,0,0);}
.mc5_c01138{transform:matrix(0.232291,0.002555,-0.002750,0.249985,0,0);-ms-transform:matrix(0.232291,0.002555,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.232291,0.002555,-0.002750,0.249985,0,0);}
.mdc_c01138{transform:matrix(0.232309,0.003485,-0.003750,0.249972,0,0);-ms-transform:matrix(0.232309,0.003485,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.232309,0.003485,-0.003750,0.249972,0,0);}
.mc7_c01138{transform:matrix(0.232376,0.002556,-0.002750,0.249985,0,0);-ms-transform:matrix(0.232376,0.002556,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.232376,0.002556,-0.002750,0.249985,0,0);}
.m1d_c01138{transform:matrix(0.232405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232405,0.000000,0.000000,0.250000,0,0);}
.mb8_c01138{transform:matrix(0.233061,0.003962,-0.004249,0.249964,0,0);-ms-transform:matrix(0.233061,0.003962,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.233061,0.003962,-0.004249,0.249964,0,0);}
.m8a_c01138{transform:matrix(0.233996,0.002106,-0.002250,0.249990,0,0);-ms-transform:matrix(0.233996,0.002106,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.233996,0.002106,-0.002250,0.249990,0,0);}
.m73_c01138{transform:matrix(0.234095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234095,0.000000,0.000000,0.250000,0,0);}
.mc9_c01138{transform:matrix(0.234141,0.002576,-0.002750,0.249985,0,0);-ms-transform:matrix(0.234141,0.002576,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.234141,0.002576,-0.002750,0.249985,0,0);}
.mc3_c01138{transform:matrix(0.234631,0.002581,-0.002750,0.249985,0,0);-ms-transform:matrix(0.234631,0.002581,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.234631,0.002581,-0.002750,0.249985,0,0);}
.mdd_c01138{transform:matrix(0.235054,0.003526,-0.003750,0.249972,0,0);-ms-transform:matrix(0.235054,0.003526,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.235054,0.003526,-0.003750,0.249972,0,0);}
.m5a_c01138{transform:matrix(0.235067,0.001881,-0.002000,0.249992,0,0);-ms-transform:matrix(0.235067,0.001881,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.235067,0.001881,-0.002000,0.249992,0,0);}
.m6d_c01138{transform:matrix(0.235251,0.002588,-0.002750,0.249985,0,0);-ms-transform:matrix(0.235251,0.002588,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.235251,0.002588,-0.002750,0.249985,0,0);}
.m97_c01138{transform:matrix(0.235846,0.001415,-0.001500,0.249996,0,0);-ms-transform:matrix(0.235846,0.001415,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.235846,0.001415,-0.001500,0.249996,0,0);}
.m7c_c01138{transform:matrix(0.235995,0.002124,-0.002250,0.249990,0,0);-ms-transform:matrix(0.235995,0.002124,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.235995,0.002124,-0.002250,0.249990,0,0);}
.md1_c01138{transform:matrix(0.236431,0.002601,-0.002750,0.249985,0,0);-ms-transform:matrix(0.236431,0.002601,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.236431,0.002601,-0.002750,0.249985,0,0);}
.m37_c01138{transform:matrix(0.236445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236445,0.000000,0.000000,0.250000,0,0);}
.ma3_c01138{transform:matrix(0.237164,0.001660,-0.001750,0.249994,0,0);-ms-transform:matrix(0.237164,0.001660,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.237164,0.001660,-0.001750,0.249994,0,0);}
.m69_c01138{transform:matrix(0.237276,0.002610,-0.002750,0.249985,0,0);-ms-transform:matrix(0.237276,0.002610,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.237276,0.002610,-0.002750,0.249985,0,0);}
.m23_c01138{transform:matrix(0.237455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237455,0.000000,0.000000,0.250000,0,0);}
.m89_c01138{transform:matrix(0.237460,0.002137,-0.002250,0.249990,0,0);-ms-transform:matrix(0.237460,0.002137,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.237460,0.002137,-0.002250,0.249990,0,0);}
.m51_c01138{transform:matrix(0.237835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237835,0.000000,0.000000,0.250000,0,0);}
.mb1_c01138{transform:matrix(0.238111,0.004048,-0.004249,0.249964,0,0);-ms-transform:matrix(0.238111,0.004048,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.238111,0.004048,-0.004249,0.249964,0,0);}
.m9d_c01138{transform:matrix(0.238139,0.001667,-0.001750,0.249994,0,0);-ms-transform:matrix(0.238139,0.001667,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.238139,0.001667,-0.001750,0.249994,0,0);}
.md9_c01138{transform:matrix(0.238558,0.003578,-0.003750,0.249972,0,0);-ms-transform:matrix(0.238558,0.003578,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.238558,0.003578,-0.003750,0.249972,0,0);}
.m81_c01138{transform:matrix(0.238815,0.002149,-0.002250,0.249990,0,0);-ms-transform:matrix(0.238815,0.002149,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.238815,0.002149,-0.002250,0.249990,0,0);}
.ma7_c01138{transform:matrix(0.239307,0.003350,-0.003500,0.249976,0,0);-ms-transform:matrix(0.239307,0.003350,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.239307,0.003350,-0.003500,0.249976,0,0);}
.m72_c01138{transform:matrix(0.240215,0.002642,-0.002750,0.249985,0,0);-ms-transform:matrix(0.240215,0.002642,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.240215,0.002642,-0.002750,0.249985,0,0);}
.md5_c01138{transform:matrix(0.240917,0.004577,-0.004749,0.249955,0,0);-ms-transform:matrix(0.240917,0.004577,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.240917,0.004577,-0.004749,0.249955,0,0);}
.m3_c01138{transform:matrix(0.240965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240965,0.000000,0.000000,0.250000,0,0);}
.m1b_c01138{transform:matrix(0.241415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241415,0.000000,0.000000,0.250000,0,0);}
.mcb_c01138{transform:matrix(0.241575,0.002657,-0.002750,0.249985,0,0);-ms-transform:matrix(0.241575,0.002657,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.241575,0.002657,-0.002750,0.249985,0,0);}
.mb2_c01138{transform:matrix(0.241960,0.004113,-0.004249,0.249964,0,0);-ms-transform:matrix(0.241960,0.004113,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.241960,0.004113,-0.004249,0.249964,0,0);}
.mbb_c01138{transform:matrix(0.243165,0.004134,-0.004249,0.249964,0,0);-ms-transform:matrix(0.243165,0.004134,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.243165,0.004134,-0.004249,0.249964,0,0);}
.m9f_c01138{transform:matrix(0.243534,0.001705,-0.001750,0.249994,0,0);-ms-transform:matrix(0.243534,0.001705,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.243534,0.001705,-0.001750,0.249994,0,0);}
.me2_c01138{transform:matrix(0.243876,0.005365,-0.005499,0.249940,0,0);-ms-transform:matrix(0.243876,0.005365,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.243876,0.005365,-0.005499,0.249940,0,0);}
.mde_c01138{transform:matrix(0.243938,0.003659,-0.003750,0.249972,0,0);-ms-transform:matrix(0.243938,0.003659,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.243938,0.003659,-0.003750,0.249972,0,0);}
.m1e_c01138{transform:matrix(0.244030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244030,0.000000,0.000000,0.250000,0,0);}
.md8_c01138{transform:matrix(0.244646,0.004648,-0.004749,0.249955,0,0);-ms-transform:matrix(0.244646,0.004648,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.244646,0.004648,-0.004749,0.249955,0,0);}
.m49_c01138{transform:matrix(0.246920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246920,0.000000,0.000000,0.250000,0,0);}
.m2b_c01138{transform:matrix(0.247385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247385,0.000000,0.000000,0.250000,0,0);}
.md6_c01138{transform:matrix(0.247455,0.004702,-0.004749,0.249955,0,0);-ms-transform:matrix(0.247455,0.004702,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.247455,0.004702,-0.004749,0.249955,0,0);}
.ma9_c01138{transform:matrix(0.247706,0.003468,-0.003500,0.249976,0,0);-ms-transform:matrix(0.247706,0.003468,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.247706,0.003468,-0.003500,0.249976,0,0);}
.m3b_c01138{transform:matrix(0.247755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247755,0.000000,0.000000,0.250000,0,0);}
.m5_c01138{transform:matrix(0.248225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248225,0.000000,0.000000,0.250000,0,0);}
.m62_c01138{transform:matrix(0.248742,0.001990,-0.002000,0.249992,0,0);-ms-transform:matrix(0.248742,0.001990,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.248742,0.001990,-0.002000,0.249992,0,0);}
.mcd_c01138{transform:matrix(0.249650,0.002746,-0.002750,0.249985,0,0);-ms-transform:matrix(0.249650,0.002746,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.249650,0.002746,-0.002750,0.249985,0,0);}
.m91_c01138{transform:matrix(0.250255,0.002252,-0.002250,0.249990,0,0);-ms-transform:matrix(0.250255,0.002252,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.250255,0.002252,-0.002250,0.249990,0,0);}
.m6b_c01138{transform:matrix(0.251310,0.002764,-0.002750,0.249985,0,0);-ms-transform:matrix(0.251310,0.002764,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.251310,0.002764,-0.002750,0.249985,0,0);}
.m5b_c01138{transform:matrix(0.251652,0.002013,-0.002000,0.249992,0,0);-ms-transform:matrix(0.251652,0.002013,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.251652,0.002013,-0.002000,0.249992,0,0);}
.m8e_c01138{transform:matrix(0.252555,0.002273,-0.002250,0.249990,0,0);-ms-transform:matrix(0.252555,0.002273,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.252555,0.002273,-0.002250,0.249990,0,0);}
.m0_c01138{transform:matrix(0.252590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252590,0.000000,0.000000,0.250000,0,0);}
.m71_c01138{transform:matrix(0.252635,0.002779,-0.002750,0.249985,0,0);-ms-transform:matrix(0.252635,0.002779,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.252635,0.002779,-0.002750,0.249985,0,0);}
.m9e_c01138{transform:matrix(0.252819,0.001770,-0.001750,0.249994,0,0);-ms-transform:matrix(0.252819,0.001770,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.252819,0.001770,-0.001750,0.249994,0,0);}
.m8b_c01138{transform:matrix(0.252830,0.002275,-0.002250,0.249990,0,0);-ms-transform:matrix(0.252830,0.002275,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.252830,0.002275,-0.002250,0.249990,0,0);}
.m2c_c01138{transform:matrix(0.254470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254470,0.000000,0.000000,0.250000,0,0);}
.m8f_c01138{transform:matrix(0.254650,0.002292,-0.002250,0.249990,0,0);-ms-transform:matrix(0.254650,0.002292,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.254650,0.002292,-0.002250,0.249990,0,0);}
.m39_c01138{transform:matrix(0.254735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254735,0.000000,0.000000,0.250000,0,0);}
.m40_c01138{transform:matrix(0.254740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254740,0.000000,0.000000,0.250000,0,0);}
.m3f_c01138{transform:matrix(0.255240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255240,0.000000,0.000000,0.250000,0,0);}
.m50_c01138{transform:matrix(0.256450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256450,0.000000,0.000000,0.250000,0,0);}
.maf_c01138{transform:matrix(0.257073,0.004370,-0.004249,0.249964,0,0);-ms-transform:matrix(0.257073,0.004370,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.257073,0.004370,-0.004249,0.249964,0,0);}
.m33_c01138{transform:matrix(0.257660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257660,0.000000,0.000000,0.250000,0,0);}
.m68_c01138{transform:matrix(0.258102,0.002065,-0.002000,0.249992,0,0);-ms-transform:matrix(0.258102,0.002065,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.258102,0.002065,-0.002000,0.249992,0,0);}
.me4_c01138{transform:matrix(0.258667,0.005691,-0.005499,0.249940,0,0);-ms-transform:matrix(0.258667,0.005691,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.258667,0.005691,-0.005499,0.249940,0,0);}
.mcc_c01138{transform:matrix(0.258849,0.002847,-0.002750,0.249985,0,0);-ms-transform:matrix(0.258849,0.002847,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.258849,0.002847,-0.002750,0.249985,0,0);}
.m4d_c01138{transform:matrix(0.258875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258875,0.000000,0.000000,0.250000,0,0);}
.mc_c01138{transform:matrix(0.259145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259145,0.000000,0.000000,0.250000,0,0);}
.m7d_c01138{transform:matrix(0.259329,0.002334,-0.002250,0.249990,0,0);-ms-transform:matrix(0.259329,0.002334,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.259329,0.002334,-0.002250,0.249990,0,0);}
.m94_c01138{transform:matrix(0.259484,0.002335,-0.002250,0.249990,0,0);-ms-transform:matrix(0.259484,0.002335,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.259484,0.002335,-0.002250,0.249990,0,0);}
.m55_c01138{transform:matrix(0.259605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259605,0.000000,0.000000,0.250000,0,0);}
.m36_c01138{transform:matrix(0.260730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260730,0.000000,0.000000,0.250000,0,0);}
.m31_c01138{transform:matrix(0.260900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260900,0.000000,0.000000,0.250000,0,0);}
.mbc_c01138{transform:matrix(0.260962,0.004436,-0.004249,0.249964,0,0);-ms-transform:matrix(0.260962,0.004436,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.260962,0.004436,-0.004249,0.249964,0,0);}
.mb3_c01138{transform:matrix(0.261327,0.004443,-0.004249,0.249964,0,0);-ms-transform:matrix(0.261327,0.004443,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.261327,0.004443,-0.004249,0.249964,0,0);}
.m19_c01138{transform:matrix(0.262205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262205,0.000000,0.000000,0.250000,0,0);}
.m6c_c01138{transform:matrix(0.262454,0.002887,-0.002750,0.249985,0,0);-ms-transform:matrix(0.262454,0.002887,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.262454,0.002887,-0.002750,0.249985,0,0);}
.m9a_c01138{transform:matrix(0.263350,0.001580,-0.001500,0.249996,0,0);-ms-transform:matrix(0.263350,0.001580,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.263350,0.001580,-0.001500,0.249996,0,0);}
.m4e_c01138{transform:matrix(0.264265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264265,0.000000,0.000000,0.250000,0,0);}
.m3e_c01138{transform:matrix(0.264580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264580,0.000000,0.000000,0.250000,0,0);}
.m2a_c01138{transform:matrix(0.264975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264975,0.000000,0.000000,0.250000,0,0);}
.mae_c01138{transform:matrix(0.265972,0.004522,-0.004249,0.249964,0,0);-ms-transform:matrix(0.265972,0.004522,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.265972,0.004522,-0.004249,0.249964,0,0);}
.m6f_c01138{transform:matrix(0.266889,0.002936,-0.002750,0.249985,0,0);-ms-transform:matrix(0.266889,0.002936,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.266889,0.002936,-0.002750,0.249985,0,0);}
.mce_c01138{transform:matrix(0.267134,0.002938,-0.002750,0.249985,0,0);-ms-transform:matrix(0.267134,0.002938,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.267134,0.002938,-0.002750,0.249985,0,0);}
.m2e_c01138{transform:matrix(0.267575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267575,0.000000,0.000000,0.250000,0,0);}
.m35_c01138{transform:matrix(0.268085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268085,0.000000,0.000000,0.250000,0,0);}
.ma8_c01138{transform:matrix(0.268249,0.003755,-0.003500,0.249976,0,0);-ms-transform:matrix(0.268249,0.003755,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.268249,0.003755,-0.003500,0.249976,0,0);}
.m28_c01138{transform:matrix(0.268255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268255,0.000000,0.000000,0.250000,0,0);}
.mbf_c01138{transform:matrix(0.268489,0.002416,-0.002250,0.249990,0,0);-ms-transform:matrix(0.268489,0.002416,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.268489,0.002416,-0.002250,0.249990,0,0);}
.mbe_c01138{transform:matrix(0.269004,0.002421,-0.002250,0.249990,0,0);-ms-transform:matrix(0.269004,0.002421,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.269004,0.002421,-0.002250,0.249990,0,0);}
.md2_c01138{transform:matrix(0.269894,0.002969,-0.002750,0.249985,0,0);-ms-transform:matrix(0.269894,0.002969,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.269894,0.002969,-0.002750,0.249985,0,0);}
.me7_c01138{transform:matrix(0.269990,0.005940,-0.005499,0.249940,0,0);-ms-transform:matrix(0.269990,0.005940,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.269990,0.005940,-0.005499,0.249940,0,0);}
.mcf_c01138{transform:matrix(0.270019,0.002970,-0.002750,0.249985,0,0);-ms-transform:matrix(0.270019,0.002970,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.270019,0.002970,-0.002750,0.249985,0,0);}
.m1a_c01138{transform:matrix(0.270085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270085,0.000000,0.000000,0.250000,0,0);}
.m30_c01138{transform:matrix(0.270340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270340,0.000000,0.000000,0.250000,0,0);}
.m98_c01138{transform:matrix(0.270350,0.001622,-0.001500,0.249996,0,0);-ms-transform:matrix(0.270350,0.001622,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.270350,0.001622,-0.001500,0.249996,0,0);}
.m99_c01138{transform:matrix(0.271800,0.001631,-0.001500,0.249996,0,0);-ms-transform:matrix(0.271800,0.001631,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.271800,0.001631,-0.001500,0.249996,0,0);}
.m34_c01138{transform:matrix(0.271860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271860,0.000000,0.000000,0.250000,0,0);}
.m17_c01138{transform:matrix(0.272120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272120,0.000000,0.000000,0.250000,0,0);}
.mbd_c01138{transform:matrix(0.272344,0.002451,-0.002250,0.249990,0,0);-ms-transform:matrix(0.272344,0.002451,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.272344,0.002451,-0.002250,0.249990,0,0);}
.mb4_c01138{transform:matrix(0.273380,0.004647,-0.004249,0.249964,0,0);-ms-transform:matrix(0.273380,0.004647,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.273380,0.004647,-0.004249,0.249964,0,0);}
.m27_c01138{transform:matrix(0.273455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273455,0.000000,0.000000,0.250000,0,0);}
.mc0_c01138{transform:matrix(0.273774,0.002464,-0.002250,0.249990,0,0);-ms-transform:matrix(0.273774,0.002464,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.273774,0.002464,-0.002250,0.249990,0,0);}
.m1c_c01138{transform:matrix(0.275100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275100,0.000000,0.000000,0.250000,0,0);}
.m9c_c01138{transform:matrix(0.275403,0.001928,-0.001750,0.249994,0,0);-ms-transform:matrix(0.275403,0.001928,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.275403,0.001928,-0.001750,0.249994,0,0);}
.mab_c01138{transform:matrix(0.275755,0.004688,-0.004249,0.249964,0,0);-ms-transform:matrix(0.275755,0.004688,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.275755,0.004688,-0.004249,0.249964,0,0);}
.mac_c01138{transform:matrix(0.276275,0.004697,-0.004249,0.249964,0,0);-ms-transform:matrix(0.276275,0.004697,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.276275,0.004697,-0.004249,0.249964,0,0);}
.ma1_c01138{transform:matrix(0.276503,0.001936,-0.001750,0.249994,0,0);-ms-transform:matrix(0.276503,0.001936,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.276503,0.001936,-0.001750,0.249994,0,0);}
.m96_c01138{transform:matrix(0.277175,0.001663,-0.001500,0.249996,0,0);-ms-transform:matrix(0.277175,0.001663,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.277175,0.001663,-0.001500,0.249996,0,0);}
.m1f_c01138{transform:matrix(0.277400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277400,0.000000,0.000000,0.250000,0,0);}
.m95_c01138{transform:matrix(0.277645,0.001666,-0.001500,0.249996,0,0);-ms-transform:matrix(0.277645,0.001666,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.277645,0.001666,-0.001500,0.249996,0,0);}
.ma4_c01138{transform:matrix(0.279313,0.001955,-0.001750,0.249994,0,0);-ms-transform:matrix(0.279313,0.001955,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.279313,0.001955,-0.001750,0.249994,0,0);}
.md0_c01138{transform:matrix(0.279473,0.003074,-0.002750,0.249985,0,0);-ms-transform:matrix(0.279473,0.003074,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.279473,0.003074,-0.002750,0.249985,0,0);}
.m24_c01138{transform:matrix(0.279480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279480,0.000000,0.000000,0.250000,0,0);}
.mb0_c01138{transform:matrix(0.279920,0.004759,-0.004249,0.249964,0,0);-ms-transform:matrix(0.279920,0.004759,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.279920,0.004759,-0.004249,0.249964,0,0);}
.ma0_c01138{transform:matrix(0.280208,0.001961,-0.001750,0.249994,0,0);-ms-transform:matrix(0.280208,0.001961,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.280208,0.001961,-0.001750,0.249994,0,0);}
.m38_c01138{transform:matrix(0.280265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280265,0.000000,0.000000,0.250000,0,0);}
.m9b_c01138{transform:matrix(0.280595,0.001684,-0.001500,0.249996,0,0);-ms-transform:matrix(0.280595,0.001684,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.280595,0.001684,-0.001500,0.249996,0,0);}
.m54_c01138{transform:matrix(0.282495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282495,0.000000,0.000000,0.250000,0,0);}
.mc2_c01138{transform:matrix(0.282614,0.002544,-0.002250,0.249990,0,0);-ms-transform:matrix(0.282614,0.002544,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.282614,0.002544,-0.002250,0.249990,0,0);}
.m74_c01138{transform:matrix(0.283175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283175,0.000000,0.000000,0.250000,0,0);}
.mb5_c01138{transform:matrix(0.283974,0.004828,-0.004249,0.249964,0,0);-ms-transform:matrix(0.283974,0.004828,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.283974,0.004828,-0.004249,0.249964,0,0);}
.m26_c01138{transform:matrix(0.285425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285425,0.000000,0.000000,0.250000,0,0);}
.me6_c01138{transform:matrix(0.286296,0.006299,-0.005499,0.249940,0,0);-ms-transform:matrix(0.286296,0.006299,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.286296,0.006299,-0.005499,0.249940,0,0);}
.m8d_c01138{transform:matrix(0.286883,0.002582,-0.002250,0.249990,0,0);-ms-transform:matrix(0.286883,0.002582,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.286883,0.002582,-0.002250,0.249990,0,0);}
.mc1_c01138{transform:matrix(0.287083,0.002584,-0.002250,0.249990,0,0);-ms-transform:matrix(0.287083,0.002584,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.287083,0.002584,-0.002250,0.249990,0,0);}
.m65_c01138{transform:matrix(0.290231,0.002322,-0.002000,0.249992,0,0);-ms-transform:matrix(0.290231,0.002322,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.290231,0.002322,-0.002000,0.249992,0,0);}
.m4a_c01138{transform:matrix(0.295055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295055,0.000000,0.000000,0.250000,0,0);}
.m4f_c01138{transform:matrix(0.295250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295250,0.000000,0.000000,0.250000,0,0);}
.m4c_c01138{transform:matrix(0.296855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296855,0.000000,0.000000,0.250000,0,0);}
.ma2_c01138{transform:matrix(0.296908,0.002078,-0.001750,0.249994,0,0);-ms-transform:matrix(0.296908,0.002078,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.296908,0.002078,-0.001750,0.249994,0,0);}
.m41_c01138{transform:matrix(0.299195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299195,0.000000,0.000000,0.250000,0,0);}
.maa_c01138{transform:matrix(0.300896,0.004213,-0.003500,0.249976,0,0);-ms-transform:matrix(0.300896,0.004213,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.300896,0.004213,-0.003500,0.249976,0,0);}
.m4b_c01138{transform:matrix(0.302015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302015,0.000000,0.000000,0.250000,0,0);}
.m87_c01138{transform:matrix(0.302498,0.002722,-0.002250,0.249990,0,0);-ms-transform:matrix(0.302498,0.002722,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.302498,0.002722,-0.002250,0.249990,0,0);}
.m52_c01138{transform:matrix(0.304160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304160,0.000000,0.000000,0.250000,0,0);}
.me5_c01138{transform:matrix(0.313229,0.006891,-0.005499,0.249940,0,0);-ms-transform:matrix(0.313229,0.006891,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.313229,0.006891,-0.005499,0.249940,0,0);}
.m88_c01138{transform:matrix(0.313357,0.002820,-0.002250,0.249990,0,0);-ms-transform:matrix(0.313357,0.002820,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.313357,0.002820,-0.002250,0.249990,0,0);}
.md_c01138{transform:matrix(0.336640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336640,0.000000,0.000000,0.250000,0,0);}
.m3d_c01138{transform:matrix(0.370675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370675,0.000000,0.000000,0.250000,0,0);}
.me9_c01138{transform:matrix(0.373365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373365,0.000000,0.000000,0.250000,0,0);}
.m6_c01138{transform:matrix(0.393860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393860,0.000000,0.000000,0.250000,0,0);}
.m1_c01138{transform:matrix(0.396010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396010,0.000000,0.000000,0.250000,0,0);}
.ma_c01138{transform:matrix(0.402005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402005,0.000000,0.000000,0.250000,0,0);}
.m7_c01138{transform:matrix(0.410395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410395,0.000000,0.000000,0.250000,0,0);}
.m8_c01138{transform:matrix(0.475130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475130,0.000000,0.000000,0.250000,0,0);}
.m4_c01138{transform:matrix(0.503935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.503935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.503935,0.000000,0.000000,0.250000,0,0);}
.mf_c01138{transform:matrix(0.520340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520340,0.000000,0.000000,0.250000,0,0);}
.m9_c01138{transform:matrix(0.566920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566920,0.000000,0.000000,0.250000,0,0);}
.m2_c01138{transform:matrix(0.591930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.591930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.591930,0.000000,0.000000,0.250000,0,0);}
.mb_c01138{transform:matrix(0.607685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.607685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.607685,0.000000,0.000000,0.250000,0,0);}
.me8_c01138{transform:matrix(0.760430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.760430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.760430,0.000000,0.000000,0.250000,0,0);}
.me1_c01138{transform:matrix(0.962550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.962550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.962550,0.000000,0.000000,0.250000,0,0);}
.me0_c01138{transform:matrix(1.680135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.680135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.680135,0.000000,0.000000,0.250000,0,0);}
.mdf_c01138{transform:matrix(10.345455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(10.345455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(10.345455,0.000000,0.000000,0.250000,0,0);}
.v0_c01138{vertical-align:0.000000px;}
.ls0_c01138{letter-spacing:0.000000px;}
.sc__c01138{text-shadow:none;}
.sc0_c01138{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__c01138{-webkit-text-stroke:0px transparent;}
.sc0_c01138{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01138{word-spacing:0.000000px;}
.fc0_c01138{color:transparent;}
.fs1a_c01138{font-size:18.000000px;}
.fs1_c01138{font-size:24.000000px;}
.fs3_c01138{font-size:36.000000px;}
.fs2_c01138{font-size:42.000000px;}
.fs4_c01138{font-size:66.000000px;}
.fs1b_c01138{font-size:66.015970px;}
.fs7_c01138{font-size:72.000000px;}
.fs11_c01138{font-size:72.001296px;}
.fs12_c01138{font-size:72.001764px;}
.fse_c01138{font-size:72.002916px;}
.fs17_c01138{font-size:72.004356px;}
.fs14_c01138{font-size:72.010403px;}
.fs0_c01138{font-size:78.000000px;}
.fsa_c01138{font-size:78.002496px;}
.fs10_c01138{font-size:78.003159px;}
.fsb_c01138{font-size:78.004719px;}
.fs19_c01138{font-size:78.008775px;}
.fs15_c01138{font-size:78.011270px;}
.fs8_c01138{font-size:84.000000px;}
.fsf_c01138{font-size:84.003402px;}
.fs16_c01138{font-size:84.005082px;}
.fs13_c01138{font-size:84.008232px;}
.fs18_c01138{font-size:84.015161px;}
.fs9_c01138{font-size:90.000000px;}
.fsc_c01138{font-size:96.000000px;}
.fsd_c01138{font-size:102.004131px;}
.fs6_c01138{font-size:114.012824px;}
.fs5_c01138{font-size:120.000000px;}
.y0_c01138{bottom:0.000000px;}
.ya9_c01138{bottom:27.590046px;}
.ya8_c01138{bottom:28.069503px;}
.ya3_c01138{bottom:30.849000px;}
.ya7_c01138{bottom:31.255191px;}
.ya6_c01138{bottom:31.986669px;}
.ya5_c01138{bottom:32.477742px;}
.ya4_c01138{bottom:33.214500px;}
.ya2_c01138{bottom:34.154197px;}
.ya1_c01138{bottom:35.142285px;}
.ya0_c01138{bottom:35.831437px;}
.y9f_c01138{bottom:36.803325px;}
.y9e_c01138{bottom:37.580902px;}
.y9d_c01138{bottom:38.613000px;}
.yb_c01138{bottom:39.970500px;}
.yab_c01138{bottom:68.850000px;}
.y9c_c01138{bottom:69.006687px;}
.y9b_c01138{bottom:69.627702px;}
.y9a_c01138{bottom:72.383282px;}
.ya_c01138{bottom:73.996500px;}
.y99_c01138{bottom:74.261118px;}
.y98_c01138{bottom:75.497021px;}
.y97_c01138{bottom:76.953000px;}
.y96_c01138{bottom:105.999228px;}
.y95_c01138{bottom:106.361618px;}
.y94_c01138{bottom:107.451740px;}
.y93_c01138{bottom:108.060689px;}
.y92_c01138{bottom:108.670281px;}
.y91_c01138{bottom:109.156586px;}
.y90_c01138{bottom:109.619807px;}
.y8f_c01138{bottom:136.427349px;}
.y8e_c01138{bottom:137.039367px;}
.y8d_c01138{bottom:138.129522px;}
.y8c_c01138{bottom:138.500525px;}
.y8b_c01138{bottom:139.588040px;}
.y8a_c01138{bottom:140.565070px;}
.y89_c01138{bottom:141.545369px;}
.y88_c01138{bottom:141.910563px;}
.y87_c01138{bottom:143.101500px;}
.y9_c01138{bottom:146.878500px;}
.y86_c01138{bottom:173.516352px;}
.y85_c01138{bottom:174.821599px;}
.y84_c01138{bottom:175.698857px;}
.y8_c01138{bottom:176.446500px;}
.y83_c01138{bottom:176.494357px;}
.y82_c01138{bottom:177.404690px;}
.y81_c01138{bottom:178.201500px;}
.y80_c01138{bottom:212.026841px;}
.y7f_c01138{bottom:213.051330px;}
.y7e_c01138{bottom:213.703499px;}
.y7d_c01138{bottom:214.346840px;}
.y7c_c01138{bottom:215.182247px;}
.y7b_c01138{bottom:216.846737px;}
.y7a_c01138{bottom:217.348116px;}
.y79_c01138{bottom:244.201892px;}
.y78_c01138{bottom:244.959369px;}
.y77_c01138{bottom:246.056532px;}
.y76_c01138{bottom:246.639845px;}
.y75_c01138{bottom:247.382685px;}
.y74_c01138{bottom:249.086493px;}
.y73_c01138{bottom:250.031115px;}
.y72_c01138{bottom:250.596782px;}
.y71_c01138{bottom:251.165712px;}
.y70_c01138{bottom:252.992354px;}
.y6f_c01138{bottom:254.883000px;}
.y6e_c01138{bottom:282.386769px;}
.y6d_c01138{bottom:284.861850px;}
.y6c_c01138{bottom:286.884276px;}
.y6b_c01138{bottom:288.275232px;}
.y6a_c01138{bottom:289.185960px;}
.y69_c01138{bottom:290.251500px;}
.y68_c01138{bottom:317.057469px;}
.y67_c01138{bottom:317.288080px;}
.y66_c01138{bottom:317.439312px;}
.y65_c01138{bottom:318.070561px;}
.y7_c01138{bottom:318.466500px;}
.y64_c01138{bottom:319.002384px;}
.y63_c01138{bottom:319.225414px;}
.y62_c01138{bottom:319.614755px;}
.y61_c01138{bottom:319.916997px;}
.y60_c01138{bottom:320.760000px;}
.y5f_c01138{bottom:353.086047px;}
.y5e_c01138{bottom:353.489445px;}
.y5d_c01138{bottom:354.087225px;}
.y5c_c01138{bottom:354.621834px;}
.y5b_c01138{bottom:354.817854px;}
.y5a_c01138{bottom:355.414014px;}
.y59_c01138{bottom:356.130000px;}
.yaa_c01138{bottom:373.410000px;}
.y4f_c01138{bottom:424.679718px;}
.y51_c01138{bottom:424.680072px;}
.y52_c01138{bottom:424.680279px;}
.y50_c01138{bottom:424.680448px;}
.y53_c01138{bottom:424.680546px;}
.y54_c01138{bottom:424.680706px;}
.y57_c01138{bottom:424.681104px;}
.y55_c01138{bottom:424.681110px;}
.y56_c01138{bottom:424.681480px;}
.y58_c01138{bottom:424.681657px;}
.y4e_c01138{bottom:494.351379px;}
.y4d_c01138{bottom:495.155311px;}
.y4c_c01138{bottom:495.342991px;}
.y4b_c01138{bottom:496.146249px;}
.y6_c01138{bottom:496.399500px;}
.y4a_c01138{bottom:496.494006px;}
.y49_c01138{bottom:496.765659px;}
.y48_c01138{bottom:497.376822px;}
.y47_c01138{bottom:497.916592px;}
.y46_c01138{bottom:498.343072px;}
.y45_c01138{bottom:499.499041px;}
.y44_c01138{bottom:529.813066px;}
.y43_c01138{bottom:532.619916px;}
.y42_c01138{bottom:534.684144px;}
.y41_c01138{bottom:535.680396px;}
.y40_c01138{bottom:561.238040px;}
.y3f_c01138{bottom:562.129809px;}
.y3e_c01138{bottom:563.143079px;}
.y3d_c01138{bottom:563.519715px;}
.y3c_c01138{bottom:563.937661px;}
.y3b_c01138{bottom:565.128308px;}
.y3a_c01138{bottom:566.404004px;}
.y39_c01138{bottom:567.001500px;}
.y38_c01138{bottom:601.816500px;}
.y37_c01138{bottom:636.660282px;}
.y36_c01138{bottom:637.019834px;}
.y35_c01138{bottom:637.388163px;}
.y5_c01138{bottom:638.419500px;}
.y34_c01138{bottom:638.873328px;}
.y33_c01138{bottom:639.351498px;}
.y32_c01138{bottom:639.850392px;}
.y31_c01138{bottom:641.528376px;}
.y30_c01138{bottom:642.642060px;}
.y2f_c01138{bottom:643.007287px;}
.y2e_c01138{bottom:643.951500px;}
.y2b_c01138{bottom:676.052568px;}
.y2d_c01138{bottom:676.052832px;}
.y2c_c01138{bottom:676.053180px;}
.y2a_c01138{bottom:707.400012px;}
.y29_c01138{bottom:707.752188px;}
.y28_c01138{bottom:708.019812px;}
.y4_c01138{bottom:708.208500px;}
.y27_c01138{bottom:708.810624px;}
.y26_c01138{bottom:709.089240px;}
.y25_c01138{bottom:709.363416px;}
.y24_c01138{bottom:709.709196px;}
.y23_c01138{bottom:710.143308px;}
.y22_c01138{bottom:710.421936px;}
.y21_c01138{bottom:710.751960px;}
.y20_c01138{bottom:711.562416px;}
.y1f_c01138{bottom:712.530000px;}
.y1e_c01138{bottom:745.591500px;}
.y1d_c01138{bottom:779.811000px;}
.y3_c01138{bottom:787.860000px;}
.y1c_c01138{bottom:816.999000px;}
.y1b_c01138{bottom:853.198500px;}
.y1a_c01138{bottom:888.570000px;}
.y19_c01138{bottom:923.670000px;}
.y18_c01138{bottom:958.230000px;}
.y17_c01138{bottom:994.650000px;}
.y16_c01138{bottom:1029.240000px;}
.y15_c01138{bottom:1065.297000px;}
.y14_c01138{bottom:1099.104000px;}
.y2_c01138{bottom:1102.014000px;}
.y1_c01138{bottom:1129.294500px;}
.yd_c01138{bottom:1129.416000px;}
.ye_c01138{bottom:1130.921272px;}
.yf_c01138{bottom:1131.395370px;}
.y10_c01138{bottom:1132.399725px;}
.y11_c01138{bottom:1133.237737px;}
.y12_c01138{bottom:1133.922480px;}
.y13_c01138{bottom:1135.886573px;}
.yc_c01138{bottom:1188.676500px;}
.h1c_c01138{height:18.000000px;}
.h3_c01138{height:24.000000px;}
.h5_c01138{height:36.000000px;}
.h4_c01138{height:42.000000px;}
.h6_c01138{height:66.000000px;}
.h1d_c01138{height:66.015970px;}
.h9_c01138{height:72.000000px;}
.h13_c01138{height:72.001296px;}
.h14_c01138{height:72.001764px;}
.h10_c01138{height:72.002916px;}
.h19_c01138{height:72.004356px;}
.h16_c01138{height:72.010403px;}
.h2_c01138{height:78.000000px;}
.hc_c01138{height:78.002496px;}
.h12_c01138{height:78.003159px;}
.hd_c01138{height:78.004719px;}
.h1b_c01138{height:78.008775px;}
.h17_c01138{height:78.011270px;}
.ha_c01138{height:84.000000px;}
.h11_c01138{height:84.003402px;}
.h18_c01138{height:84.005082px;}
.h15_c01138{height:84.008232px;}
.h1a_c01138{height:84.015161px;}
.hb_c01138{height:90.000000px;}
.he_c01138{height:96.000000px;}
.hf_c01138{height:102.004131px;}
.h8_c01138{height:114.012824px;}
.h7_c01138{height:120.000000px;}
.h0_c01138{height:1246.320000px;}
.h1_c01138{height:1246.500000px;}
.w0_c01138{width:898.500000px;}
.x0_c01138{left:0.000000px;}
.x1_c01138{left:42.390000px;}
.x4_c01138{left:66.420000px;}
.x8_c01138{left:69.120000px;}
.x2_c01138{left:74.790000px;}
.xa_c01138{left:81.810000px;}
.xc_c01138{left:82.890000px;}
.x9_c01138{left:92.880000px;}
.x3_c01138{left:99.090000px;}
.x5_c01138{left:101.250000px;}
.x6_c01138{left:113.400000px;}
.x7_c01138{left:114.480000px;}
.xb_c01138{left:127.440000px;}
.xf_c01138{left:129.420000px;}
.x16_c01138{left:140.940000px;}
.x37_c01138{left:143.910000px;}
.x6b_c01138{left:146.259000px;}
.x77_c01138{left:147.534000px;}
.x55_c01138{left:155.644500px;}
.x84_c01138{left:156.748500px;}
.x88_c01138{left:159.397500px;}
.x22_c01138{left:163.620000px;}
.x96_c01138{left:168.480000px;}
.x32_c01138{left:208.980000px;}
.x3a_c01138{left:220.050000px;}
.x56_c01138{left:222.033000px;}
.x73_c01138{left:223.146000px;}
.x10_c01138{left:229.771500px;}
.x4f_c01138{left:230.854752px;}
.x5b_c01138{left:232.324843px;}
.x7f_c01138{left:234.473210px;}
.x8f_c01138{left:236.647092px;}
.x33_c01138{left:241.380000px;}
.x47_c01138{left:243.000000px;}
.x85_c01138{left:245.283000px;}
.x17_c01138{left:250.290000px;}
.x3e_c01138{left:252.990000px;}
.x63_c01138{left:255.155274px;}
.x78_c01138{left:258.748500px;}
.x11_c01138{left:261.378000px;}
.x1f_c01138{left:262.710000px;}
.x51_c01138{left:263.929500px;}
.x49_c01138{left:265.035000px;}
.x6e_c01138{left:267.210000px;}
.x50_c01138{left:275.406108px;}
.x90_c01138{left:278.758092px;}
.x93_c01138{left:280.855500px;}
.x18_c01138{left:283.770000px;}
.x3b_c01138{left:286.740000px;}
.x64_c01138{left:288.366460px;}
.x5e_c01138{left:299.585782px;}
.x89_c01138{left:300.864000px;}
.x34_c01138{left:307.800000px;}
.x3f_c01138{left:309.150000px;}
.x6f_c01138{left:310.387500px;}
.x23_c01138{left:319.140000px;}
.x5c_c01138{left:322.851210px;}
.x12_c01138{left:328.335000px;}
.x20_c01138{left:342.900000px;}
.x86_c01138{left:346.431000px;}
.x24_c01138{left:349.380000px;}
.x35_c01138{left:351.810000px;}
.x2a_c01138{left:361.800000px;}
.x19_c01138{left:363.420000px;}
.x52_c01138{left:365.173500px;}
.x4a_c01138{left:366.342000px;}
.x65_c01138{left:375.850548px;}
.x80_c01138{left:378.911631px;}
.x13_c01138{left:384.202500px;}
.x74_c01138{left:387.552000px;}
.x8a_c01138{left:389.982000px;}
.x94_c01138{left:391.591500px;}
.x40_c01138{left:397.710000px;}
.x79_c01138{left:399.664500px;}
.x97_c01138{left:404.190000px;}
.x21_c01138{left:406.890000px;}
.xd_c01138{left:416.880000px;}
.x5f_c01138{left:420.281362px;}
.x14_c01138{left:429.852000px;}
.x7a_c01138{left:432.939000px;}
.x81_c01138{left:434.584518px;}
.xe_c01138{left:439.020000px;}
.x2b_c01138{left:441.180000px;}
.x4b_c01138{left:442.423500px;}
.x38_c01138{left:449.010000px;}
.x95_c01138{left:457.464000px;}
.x36_c01138{left:461.160000px;}
.x25_c01138{left:462.240000px;}
.x66_c01138{left:465.494811px;}
.x2c_c01138{left:471.960000px;}
.x1a_c01138{left:473.310000px;}
.x82_c01138{left:477.458972px;}
.x8b_c01138{left:478.803000px;}
.x6c_c01138{left:486.721500px;}
.x7b_c01138{left:488.505000px;}
.x4c_c01138{left:496.687500px;}
.x1b_c01138{left:507.060000px;}
.x5d_c01138{left:510.539835px;}
.x2d_c01138{left:517.590000px;}
.x83_c01138{left:520.940951px;}
.x98_c01138{left:523.293000px;}
.x3c_c01138{left:529.200000px;}
.x60_c01138{left:530.706361px;}
.x75_c01138{left:532.011000px;}
.x26_c01138{left:540.540000px;}
.x57_c01138{left:542.509500px;}
.x92_c01138{left:545.227500px;}
.x41_c01138{left:551.340000px;}
.x99_c01138{left:556.782000px;}
.x15_c01138{left:560.791500px;}
.x53_c01138{left:563.071500px;}
.x67_c01138{left:564.318316px;}
.x91_c01138{left:565.790592px;}
.x4d_c01138{left:574.182000px;}
.x8c_c01138{left:577.668000px;}
.x9a_c01138{left:579.103500px;}
.x58_c01138{left:584.358000px;}
.x42_c01138{left:586.440000px;}
.x7c_c01138{left:588.729000px;}
.x2e_c01138{left:595.620000px;}
.x68_c01138{left:598.609597px;}
.x1c_c01138{left:606.150000px;}
.x4e_c01138{left:609.009000px;}
.x8d_c01138{left:611.395500px;}
.x43_c01138{left:616.950000px;}
.x70_c01138{left:621.165000px;}
.x2f_c01138{left:628.560000px;}
.x7d_c01138{left:632.425500px;}
.x1d_c01138{left:640.170000px;}
.x71_c01138{left:642.769500px;}
.x6d_c01138{left:653.584500px;}
.x48_c01138{left:661.770000px;}
.x7e_c01138{left:666.738000px;}
.x27_c01138{left:673.650000px;}
.x72_c01138{left:675.714000px;}
.x87_c01138{left:677.320500px;}
.x39_c01138{left:680.130000px;}
.x59_c01138{left:696.943500px;}
.x61_c01138{left:698.118373px;}
.x3d_c01138{left:707.400000px;}
.x76_c01138{left:708.802500px;}
.x8e_c01138{left:710.500500px;}
.x30_c01138{left:717.660000px;}
.x44_c01138{left:719.010000px;}
.x1e_c01138{left:729.270000px;}
.x69_c01138{left:731.454357px;}
.x29_c01138{left:740.070000px;}
.x45_c01138{left:741.150000px;}
.x9b_c01138{left:757.156500px;}
.x6a_c01138{left:764.395530px;}
.x28_c01138{left:765.450000px;}
.x54_c01138{left:775.041000px;}
.x9c_c01138{left:778.950000px;}
.x31_c01138{left:784.350000px;}
.x5a_c01138{left:796.029000px;}
.x62_c01138{left:798.611778px;}
.x46_c01138{left:808.380000px;}
.x9d_c01138{left:886.950000px;}
.x9e_c01138{left:891.540000px;}
@media print{
.v0_c01138{vertical-align:0.000000pt;}
.ls0_c01138{letter-spacing:0.000000pt;}
.ws0_c01138{word-spacing:0.000000pt;}
.fs1a_c01138{font-size:16.000000pt;}
.fs1_c01138{font-size:21.333333pt;}
.fs3_c01138{font-size:32.000000pt;}
.fs2_c01138{font-size:37.333333pt;}
.fs4_c01138{font-size:58.666667pt;}
.fs1b_c01138{font-size:58.680862pt;}
.fs7_c01138{font-size:64.000000pt;}
.fs11_c01138{font-size:64.001152pt;}
.fs12_c01138{font-size:64.001568pt;}
.fse_c01138{font-size:64.002592pt;}
.fs17_c01138{font-size:64.003872pt;}
.fs14_c01138{font-size:64.009247pt;}
.fs0_c01138{font-size:69.333333pt;}
.fsa_c01138{font-size:69.335552pt;}
.fs10_c01138{font-size:69.336141pt;}
.fsb_c01138{font-size:69.337528pt;}
.fs19_c01138{font-size:69.341133pt;}
.fs15_c01138{font-size:69.343351pt;}
.fs8_c01138{font-size:74.666667pt;}
.fsf_c01138{font-size:74.669691pt;}
.fs16_c01138{font-size:74.671184pt;}
.fs13_c01138{font-size:74.673984pt;}
.fs18_c01138{font-size:74.680143pt;}
.fs9_c01138{font-size:80.000000pt;}
.fsc_c01138{font-size:85.333333pt;}
.fsd_c01138{font-size:90.670339pt;}
.fs6_c01138{font-size:101.344733pt;}
.fs5_c01138{font-size:106.666667pt;}
.y0_c01138{bottom:0.000000pt;}
.ya9_c01138{bottom:24.524485pt;}
.ya8_c01138{bottom:24.950669pt;}
.ya3_c01138{bottom:27.421333pt;}
.ya7_c01138{bottom:27.782392pt;}
.ya6_c01138{bottom:28.432595pt;}
.ya5_c01138{bottom:28.869104pt;}
.ya4_c01138{bottom:29.524000pt;}
.ya2_c01138{bottom:30.359287pt;}
.ya1_c01138{bottom:31.237587pt;}
.ya0_c01138{bottom:31.850167pt;}
.y9f_c01138{bottom:32.714067pt;}
.y9e_c01138{bottom:33.405247pt;}
.y9d_c01138{bottom:34.322667pt;}
.yb_c01138{bottom:35.529333pt;}
.yab_c01138{bottom:61.200000pt;}
.y9c_c01138{bottom:61.339277pt;}
.y9b_c01138{bottom:61.891291pt;}
.y9a_c01138{bottom:64.340695pt;}
.ya_c01138{bottom:65.774667pt;}
.y99_c01138{bottom:66.009883pt;}
.y98_c01138{bottom:67.108463pt;}
.y97_c01138{bottom:68.402667pt;}
.y96_c01138{bottom:94.221536pt;}
.y95_c01138{bottom:94.543660pt;}
.y94_c01138{bottom:95.512657pt;}
.y93_c01138{bottom:96.053945pt;}
.y92_c01138{bottom:96.595805pt;}
.y91_c01138{bottom:97.028076pt;}
.y90_c01138{bottom:97.439828pt;}
.y8f_c01138{bottom:121.268755pt;}
.y8e_c01138{bottom:121.812771pt;}
.y8d_c01138{bottom:122.781797pt;}
.y8c_c01138{bottom:123.111577pt;}
.y8b_c01138{bottom:124.078257pt;}
.y8a_c01138{bottom:124.946729pt;}
.y89_c01138{bottom:125.818105pt;}
.y88_c01138{bottom:126.142723pt;}
.y87_c01138{bottom:127.201333pt;}
.y9_c01138{bottom:130.558667pt;}
.y86_c01138{bottom:154.236757pt;}
.y85_c01138{bottom:155.396977pt;}
.y84_c01138{bottom:156.176761pt;}
.y8_c01138{bottom:156.841333pt;}
.y83_c01138{bottom:156.883873pt;}
.y82_c01138{bottom:157.693057pt;}
.y81_c01138{bottom:158.401333pt;}
.y80_c01138{bottom:188.468303pt;}
.y7f_c01138{bottom:189.378960pt;}
.y7e_c01138{bottom:189.958665pt;}
.y7d_c01138{bottom:190.530524pt;}
.y7c_c01138{bottom:191.273108pt;}
.y7b_c01138{bottom:192.752655pt;}
.y7a_c01138{bottom:193.198325pt;}
.y79_c01138{bottom:217.068348pt;}
.y78_c01138{bottom:217.741661pt;}
.y77_c01138{bottom:218.716917pt;}
.y76_c01138{bottom:219.235417pt;}
.y75_c01138{bottom:219.895720pt;}
.y74_c01138{bottom:221.410216pt;}
.y73_c01138{bottom:222.249880pt;}
.y72_c01138{bottom:222.752695pt;}
.y71_c01138{bottom:223.258411pt;}
.y70_c01138{bottom:224.882092pt;}
.y6f_c01138{bottom:226.562667pt;}
.y6e_c01138{bottom:251.010461pt;}
.y6d_c01138{bottom:253.210533pt;}
.y6c_c01138{bottom:255.008245pt;}
.y6b_c01138{bottom:256.244651pt;}
.y6a_c01138{bottom:257.054187pt;}
.y69_c01138{bottom:258.001333pt;}
.y68_c01138{bottom:281.828861pt;}
.y67_c01138{bottom:282.033849pt;}
.y66_c01138{bottom:282.168277pt;}
.y65_c01138{bottom:282.729388pt;}
.y7_c01138{bottom:283.081333pt;}
.y64_c01138{bottom:283.557675pt;}
.y63_c01138{bottom:283.755924pt;}
.y62_c01138{bottom:284.102004pt;}
.y61_c01138{bottom:284.370664pt;}
.y60_c01138{bottom:285.120000pt;}
.y5f_c01138{bottom:313.854264pt;}
.y5e_c01138{bottom:314.212840pt;}
.y5d_c01138{bottom:314.744200pt;}
.y5c_c01138{bottom:315.219408pt;}
.y5b_c01138{bottom:315.393648pt;}
.y5a_c01138{bottom:315.923568pt;}
.y59_c01138{bottom:316.560000pt;}
.yaa_c01138{bottom:331.920000pt;}
.y4f_c01138{bottom:377.493083pt;}
.y51_c01138{bottom:377.493397pt;}
.y52_c01138{bottom:377.493581pt;}
.y50_c01138{bottom:377.493732pt;}
.y53_c01138{bottom:377.493819pt;}
.y54_c01138{bottom:377.493961pt;}
.y57_c01138{bottom:377.494315pt;}
.y55_c01138{bottom:377.494320pt;}
.y56_c01138{bottom:377.494649pt;}
.y58_c01138{bottom:377.494807pt;}
.y4e_c01138{bottom:439.423448pt;}
.y4d_c01138{bottom:440.138055pt;}
.y4c_c01138{bottom:440.304881pt;}
.y4b_c01138{bottom:441.018888pt;}
.y6_c01138{bottom:441.244000pt;}
.y4a_c01138{bottom:441.328005pt;}
.y49_c01138{bottom:441.569475pt;}
.y48_c01138{bottom:442.112731pt;}
.y47_c01138{bottom:442.592527pt;}
.y46_c01138{bottom:442.971620pt;}
.y45_c01138{bottom:443.999148pt;}
.y44_c01138{bottom:470.944948pt;}
.y43_c01138{bottom:473.439925pt;}
.y42_c01138{bottom:475.274795pt;}
.y41_c01138{bottom:476.160352pt;}
.y40_c01138{bottom:498.878257pt;}
.y3f_c01138{bottom:499.670941pt;}
.y3e_c01138{bottom:500.571625pt;}
.y3d_c01138{bottom:500.906413pt;}
.y3c_c01138{bottom:501.277921pt;}
.y3b_c01138{bottom:502.336273pt;}
.y3a_c01138{bottom:503.470225pt;}
.y39_c01138{bottom:504.001333pt;}
.y38_c01138{bottom:534.948000pt;}
.y37_c01138{bottom:565.920251pt;}
.y36_c01138{bottom:566.239852pt;}
.y35_c01138{bottom:566.567256pt;}
.y5_c01138{bottom:567.484000pt;}
.y34_c01138{bottom:567.887403pt;}
.y33_c01138{bottom:568.312443pt;}
.y32_c01138{bottom:568.755904pt;}
.y31_c01138{bottom:570.247445pt;}
.y30_c01138{bottom:571.237387pt;}
.y2f_c01138{bottom:571.562033pt;}
.y2e_c01138{bottom:572.401333pt;}
.y2b_c01138{bottom:600.935616pt;}
.y2d_c01138{bottom:600.935851pt;}
.y2c_c01138{bottom:600.936160pt;}
.y2a_c01138{bottom:628.800011pt;}
.y29_c01138{bottom:629.113056pt;}
.y28_c01138{bottom:629.350944pt;}
.y4_c01138{bottom:629.518667pt;}
.y27_c01138{bottom:630.053888pt;}
.y26_c01138{bottom:630.301547pt;}
.y25_c01138{bottom:630.545259pt;}
.y24_c01138{bottom:630.852619pt;}
.y23_c01138{bottom:631.238496pt;}
.y22_c01138{bottom:631.486165pt;}
.y21_c01138{bottom:631.779520pt;}
.y20_c01138{bottom:632.499925pt;}
.y1f_c01138{bottom:633.360000pt;}
.y1e_c01138{bottom:662.748000pt;}
.y1d_c01138{bottom:693.165333pt;}
.y3_c01138{bottom:700.320000pt;}
.y1c_c01138{bottom:726.221333pt;}
.y1b_c01138{bottom:758.398667pt;}
.y1a_c01138{bottom:789.840000pt;}
.y19_c01138{bottom:821.040000pt;}
.y18_c01138{bottom:851.760000pt;}
.y17_c01138{bottom:884.133333pt;}
.y16_c01138{bottom:914.880000pt;}
.y15_c01138{bottom:946.930667pt;}
.y14_c01138{bottom:976.981333pt;}
.y2_c01138{bottom:979.568000pt;}
.y1_c01138{bottom:1003.817333pt;}
.yd_c01138{bottom:1003.925333pt;}
.ye_c01138{bottom:1005.263353pt;}
.yf_c01138{bottom:1005.684773pt;}
.y10_c01138{bottom:1006.577533pt;}
.y11_c01138{bottom:1007.322433pt;}
.y12_c01138{bottom:1007.931093pt;}
.y13_c01138{bottom:1009.676953pt;}
.yc_c01138{bottom:1056.601333pt;}
.h1c_c01138{height:16.000000pt;}
.h3_c01138{height:21.333333pt;}
.h5_c01138{height:32.000000pt;}
.h4_c01138{height:37.333333pt;}
.h6_c01138{height:58.666667pt;}
.h1d_c01138{height:58.680862pt;}
.h9_c01138{height:64.000000pt;}
.h13_c01138{height:64.001152pt;}
.h14_c01138{height:64.001568pt;}
.h10_c01138{height:64.002592pt;}
.h19_c01138{height:64.003872pt;}
.h16_c01138{height:64.009247pt;}
.h2_c01138{height:69.333333pt;}
.hc_c01138{height:69.335552pt;}
.h12_c01138{height:69.336141pt;}
.hd_c01138{height:69.337528pt;}
.h1b_c01138{height:69.341133pt;}
.h17_c01138{height:69.343351pt;}
.ha_c01138{height:74.666667pt;}
.h11_c01138{height:74.669691pt;}
.h18_c01138{height:74.671184pt;}
.h15_c01138{height:74.673984pt;}
.h1a_c01138{height:74.680143pt;}
.hb_c01138{height:80.000000pt;}
.he_c01138{height:85.333333pt;}
.hf_c01138{height:90.670339pt;}
.h8_c01138{height:101.344733pt;}
.h7_c01138{height:106.666667pt;}
.h0_c01138{height:1107.840000pt;}
.h1_c01138{height:1108.000000pt;}
.w0_c01138{width:798.666667pt;}
.x0_c01138{left:0.000000pt;}
.x1_c01138{left:37.680000pt;}
.x4_c01138{left:59.040000pt;}
.x8_c01138{left:61.440000pt;}
.x2_c01138{left:66.480000pt;}
.xa_c01138{left:72.720000pt;}
.xc_c01138{left:73.680000pt;}
.x9_c01138{left:82.560000pt;}
.x3_c01138{left:88.080000pt;}
.x5_c01138{left:90.000000pt;}
.x6_c01138{left:100.800000pt;}
.x7_c01138{left:101.760000pt;}
.xb_c01138{left:113.280000pt;}
.xf_c01138{left:115.040000pt;}
.x16_c01138{left:125.280000pt;}
.x37_c01138{left:127.920000pt;}
.x6b_c01138{left:130.008000pt;}
.x77_c01138{left:131.141333pt;}
.x55_c01138{left:138.350667pt;}
.x84_c01138{left:139.332000pt;}
.x88_c01138{left:141.686667pt;}
.x22_c01138{left:145.440000pt;}
.x96_c01138{left:149.760000pt;}
.x32_c01138{left:185.760000pt;}
.x3a_c01138{left:195.600000pt;}
.x56_c01138{left:197.362667pt;}
.x73_c01138{left:198.352000pt;}
.x10_c01138{left:204.241333pt;}
.x4f_c01138{left:205.204224pt;}
.x5b_c01138{left:206.510972pt;}
.x7f_c01138{left:208.420631pt;}
.x8f_c01138{left:210.352971pt;}
.x33_c01138{left:214.560000pt;}
.x47_c01138{left:216.000000pt;}
.x85_c01138{left:218.029333pt;}
.x17_c01138{left:222.480000pt;}
.x3e_c01138{left:224.880000pt;}
.x63_c01138{left:226.804688pt;}
.x78_c01138{left:229.998667pt;}
.x11_c01138{left:232.336000pt;}
.x1f_c01138{left:233.520000pt;}
.x51_c01138{left:234.604000pt;}
.x49_c01138{left:235.586667pt;}
.x6e_c01138{left:237.520000pt;}
.x50_c01138{left:244.805429pt;}
.x90_c01138{left:247.784971pt;}
.x93_c01138{left:249.649333pt;}
.x18_c01138{left:252.240000pt;}
.x3b_c01138{left:254.880000pt;}
.x64_c01138{left:256.325743pt;}
.x5e_c01138{left:266.298473pt;}
.x89_c01138{left:267.434667pt;}
.x34_c01138{left:273.600000pt;}
.x3f_c01138{left:274.800000pt;}
.x6f_c01138{left:275.900000pt;}
.x23_c01138{left:283.680000pt;}
.x5c_c01138{left:286.978853pt;}
.x12_c01138{left:291.853333pt;}
.x20_c01138{left:304.800000pt;}
.x86_c01138{left:307.938667pt;}
.x24_c01138{left:310.560000pt;}
.x35_c01138{left:312.720000pt;}
.x2a_c01138{left:321.600000pt;}
.x19_c01138{left:323.040000pt;}
.x52_c01138{left:324.598667pt;}
.x4a_c01138{left:325.637333pt;}
.x65_c01138{left:334.089376pt;}
.x80_c01138{left:336.810339pt;}
.x13_c01138{left:341.513333pt;}
.x74_c01138{left:344.490667pt;}
.x8a_c01138{left:346.650667pt;}
.x94_c01138{left:348.081333pt;}
.x40_c01138{left:353.520000pt;}
.x79_c01138{left:355.257333pt;}
.x97_c01138{left:359.280000pt;}
.x21_c01138{left:361.680000pt;}
.xd_c01138{left:370.560000pt;}
.x5f_c01138{left:373.583433pt;}
.x14_c01138{left:382.090667pt;}
.x7a_c01138{left:384.834667pt;}
.x81_c01138{left:386.297349pt;}
.xe_c01138{left:390.240000pt;}
.x2b_c01138{left:392.160000pt;}
.x4b_c01138{left:393.265333pt;}
.x38_c01138{left:399.120000pt;}
.x95_c01138{left:406.634667pt;}
.x36_c01138{left:409.920000pt;}
.x25_c01138{left:410.880000pt;}
.x66_c01138{left:413.773165pt;}
.x2c_c01138{left:419.520000pt;}
.x1a_c01138{left:420.720000pt;}
.x82_c01138{left:424.407975pt;}
.x8b_c01138{left:425.602667pt;}
.x6c_c01138{left:432.641333pt;}
.x7b_c01138{left:434.226667pt;}
.x4c_c01138{left:441.500000pt;}
.x1b_c01138{left:450.720000pt;}
.x5d_c01138{left:453.813187pt;}
.x2d_c01138{left:460.080000pt;}
.x83_c01138{left:463.058623pt;}
.x98_c01138{left:465.149333pt;}
.x3c_c01138{left:470.400000pt;}
.x60_c01138{left:471.738988pt;}
.x75_c01138{left:472.898667pt;}
.x26_c01138{left:480.480000pt;}
.x57_c01138{left:482.230667pt;}
.x92_c01138{left:484.646667pt;}
.x41_c01138{left:490.080000pt;}
.x99_c01138{left:494.917333pt;}
.x15_c01138{left:498.481333pt;}
.x53_c01138{left:500.508000pt;}
.x67_c01138{left:501.616281pt;}
.x91_c01138{left:502.924971pt;}
.x4d_c01138{left:510.384000pt;}
.x8c_c01138{left:513.482667pt;}
.x9a_c01138{left:514.758667pt;}
.x58_c01138{left:519.429333pt;}
.x42_c01138{left:521.280000pt;}
.x7c_c01138{left:523.314667pt;}
.x2e_c01138{left:529.440000pt;}
.x68_c01138{left:532.097420pt;}
.x1c_c01138{left:538.800000pt;}
.x4e_c01138{left:541.341333pt;}
.x8d_c01138{left:543.462667pt;}
.x43_c01138{left:548.400000pt;}
.x70_c01138{left:552.146667pt;}
.x2f_c01138{left:558.720000pt;}
.x7d_c01138{left:562.156000pt;}
.x1d_c01138{left:569.040000pt;}
.x71_c01138{left:571.350667pt;}
.x6d_c01138{left:580.964000pt;}
.x48_c01138{left:588.240000pt;}
.x7e_c01138{left:592.656000pt;}
.x27_c01138{left:598.800000pt;}
.x72_c01138{left:600.634667pt;}
.x87_c01138{left:602.062667pt;}
.x39_c01138{left:604.560000pt;}
.x59_c01138{left:619.505333pt;}
.x61_c01138{left:620.549665pt;}
.x3d_c01138{left:628.800000pt;}
.x76_c01138{left:630.046667pt;}
.x8e_c01138{left:631.556000pt;}
.x30_c01138{left:637.920000pt;}
.x44_c01138{left:639.120000pt;}
.x1e_c01138{left:648.240000pt;}
.x69_c01138{left:650.181651pt;}
.x29_c01138{left:657.840000pt;}
.x45_c01138{left:658.800000pt;}
.x9b_c01138{left:673.028000pt;}
.x6a_c01138{left:679.462693pt;}
.x28_c01138{left:680.400000pt;}
.x54_c01138{left:688.925333pt;}
.x9c_c01138{left:692.400000pt;}
.x31_c01138{left:697.200000pt;}
.x5a_c01138{left:707.581333pt;}
.x62_c01138{left:709.877136pt;}
.x46_c01138{left:718.560000pt;}
.x9d_c01138{left:788.400000pt;}
.x9e_c01138{left:792.480000pt;}
}





/* 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_c01139 {
    display:none;
  }
  .loading-indicator_c01139.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01139 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_c01139 { 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_c01139" -> "#page-container .classname_c01139")
 */
.pf_c01139 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01139 { /* 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_c01139.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01139 { /* 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_c01139 { /* 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_c01139 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01139 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01139 {overflow:visible;}
  }
}
.c_c01139 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01139 { /* 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_c01139:after { /* webkit #35443 */
  content: '';
}
.t_c01139:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01139 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 */
}
.__c01139 { /* 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_c01139 { /* info for Javascript */
  display:none;
}
.l_c01139 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01139 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01139 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01139: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_c01139 {
    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_c01139.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01139.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_c01139 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01139{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01139;src:url('chunks/assets/font_fc0772ff308ae5fbe034c379.woff2')format("woff");}.ff1_c01139{font-family:ff1_c01139;line-height:1.000000;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;}
.m2_c01139{transform:matrix(0.303725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303725,0.000000,0.000000,0.250000,0,0);}
.m3_c01139{transform:matrix(0.321015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321015,0.000000,0.000000,0.250000,0,0);}
.m0_c01139{transform:matrix(0.448035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448035,0.000000,0.000000,0.250000,0,0);}
.m1_c01139{transform:matrix(0.507490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507490,0.000000,0.000000,0.250000,0,0);}
.v0_c01139{vertical-align:0.000000px;}
.ls0_c01139{letter-spacing:0.000000px;}
.sc__c01139{text-shadow:none;}
.sc0_c01139{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__c01139{-webkit-text-stroke:0px transparent;}
.sc0_c01139{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01139{word-spacing:0.000000px;}
.fc0_c01139{color:transparent;}
.fs1_c01139{font-size:18.000000px;}
.fs0_c01139{font-size:30.000000px;}
.y0_c01139{bottom:0.000000px;}
.y2_c01139{bottom:1113.750000px;}
.y3_c01139{bottom:1114.290000px;}
.y1_c01139{bottom:1119.690000px;}
.h3_c01139{height:18.000000px;}
.h2_c01139{height:30.000000px;}
.h1_c01139{height:1258.500000px;}
.h0_c01139{height:1258.740000px;}
.w0_c01139{width:920.100000px;}
.w1_c01139{width:920.250000px;}
.x0_c01139{left:0.000000px;}
.x1_c01139{left:4.320000px;}
@media print{
.v0_c01139{vertical-align:0.000000pt;}
.ls0_c01139{letter-spacing:0.000000pt;}
.ws0_c01139{word-spacing:0.000000pt;}
.fs1_c01139{font-size:16.000000pt;}
.fs0_c01139{font-size:26.666667pt;}
.y0_c01139{bottom:0.000000pt;}
.y2_c01139{bottom:990.000000pt;}
.y3_c01139{bottom:990.480000pt;}
.y1_c01139{bottom:995.280000pt;}
.h3_c01139{height:16.000000pt;}
.h2_c01139{height:26.666667pt;}
.h1_c01139{height:1118.666667pt;}
.h0_c01139{height:1118.880000pt;}
.w0_c01139{width:817.866667pt;}
.w1_c01139{width:818.000000pt;}
.x0_c01139{left:0.000000pt;}
.x1_c01139{left:3.840000pt;}
}





/* 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_c01140 {
    display:none;
  }
  .loading-indicator_c01140.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01140 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_c01140 { 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_c01140" -> "#page-container .classname_c01140")
 */
.pf_c01140 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01140 { /* 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_c01140.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01140 { /* 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_c01140 { /* 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_c01140 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01140 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01140 {overflow:visible;}
  }
}
.c_c01140 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01140 { /* 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_c01140:after { /* webkit #35443 */
  content: '';
}
.t_c01140:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01140 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 */
}
.__c01140 { /* 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_c01140 { /* info for Javascript */
  display:none;
}
.l_c01140 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01140 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01140 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01140: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_c01140 {
    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_c01140.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01140.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_c01140 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01140{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01140;src:url('chunks/assets/font_53ec0c54e60da7c2d414b553.woff2')format("woff");}.ff1_c01140{font-family:ff1_c01140;line-height:1.000000;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;}
.m7f_c01140{transform:matrix(0.011858,0.000225,-0.004749,0.249955,0,0);-ms-transform:matrix(0.011858,0.000225,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.011858,0.000225,-0.004749,0.249955,0,0);}
.mcf_c01140{transform:matrix(0.022163,0.000266,-0.003000,0.249982,0,0);-ms-transform:matrix(0.022163,0.000266,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.022163,0.000266,-0.003000,0.249982,0,0);}
.m9b_c01140{transform:matrix(0.024003,0.000576,-0.005998,0.249928,0,0);-ms-transform:matrix(0.024003,0.000576,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.024003,0.000576,-0.005998,0.249928,0,0);}
.m1_c01140{transform:matrix(0.129495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129495,0.000000,0.000000,0.250000,0,0);}
.me8_c01140{transform:matrix(0.135079,0.003512,-0.006498,0.249916,0,0);-ms-transform:matrix(0.135079,0.003512,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.135079,0.003512,-0.006498,0.249916,0,0);}
.mec_c01140{transform:matrix(0.140912,0.003664,-0.006498,0.249916,0,0);-ms-transform:matrix(0.140912,0.003664,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.140912,0.003664,-0.006498,0.249916,0,0);}
.m106_c01140{transform:matrix(0.142667,0.005141,-0.009003,0.249838,0,0);-ms-transform:matrix(0.142667,0.005141,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.142667,0.005141,-0.009003,0.249838,0,0);}
.med_c01140{transform:matrix(0.145136,0.003774,-0.006498,0.249916,0,0);-ms-transform:matrix(0.145136,0.003774,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.145136,0.003774,-0.006498,0.249916,0,0);}
.mea_c01140{transform:matrix(0.147740,0.003841,-0.006498,0.249916,0,0);-ms-transform:matrix(0.147740,0.003841,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.147740,0.003841,-0.006498,0.249916,0,0);}
.mb_c01140{transform:matrix(0.148585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148585,0.000000,0.000000,0.250000,0,0);}
.m45_c01140{transform:matrix(0.156537,0.002974,-0.004749,0.249955,0,0);-ms-transform:matrix(0.156537,0.002974,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.156537,0.002974,-0.004749,0.249955,0,0);}
.m43_c01140{transform:matrix(0.158276,0.003007,-0.004749,0.249955,0,0);-ms-transform:matrix(0.158276,0.003007,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.158276,0.003007,-0.004749,0.249955,0,0);}
.md_c01140{transform:matrix(0.158815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158815,0.000000,0.000000,0.250000,0,0);}
.m89_c01140{transform:matrix(0.159316,0.003027,-0.004749,0.249955,0,0);-ms-transform:matrix(0.159316,0.003027,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.159316,0.003027,-0.004749,0.249955,0,0);}
.md6_c01140{transform:matrix(0.162627,0.004716,-0.007247,0.249895,0,0);-ms-transform:matrix(0.162627,0.004716,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.162627,0.004716,-0.007247,0.249895,0,0);}
.mf5_c01140{transform:matrix(0.165991,0.006148,-0.009253,0.249829,0,0);-ms-transform:matrix(0.165991,0.006148,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.165991,0.006148,-0.009253,0.249829,0,0);}
.mf_c01140{transform:matrix(0.166515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166515,0.000000,0.000000,0.250000,0,0);}
.m103_c01140{transform:matrix(0.171163,0.004793,-0.006997,0.249902,0,0);-ms-transform:matrix(0.171163,0.004793,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.171163,0.004793,-0.006997,0.249902,0,0);}
.m3d_c01140{transform:matrix(0.176258,0.003349,-0.004749,0.249955,0,0);-ms-transform:matrix(0.176258,0.003349,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.176258,0.003349,-0.004749,0.249955,0,0);}
.m5_c01140{transform:matrix(0.181780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181780,0.000000,0.000000,0.250000,0,0);}
.md8_c01140{transform:matrix(0.185842,0.005389,-0.007247,0.249895,0,0);-ms-transform:matrix(0.185842,0.005389,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.185842,0.005389,-0.007247,0.249895,0,0);}
.me2_c01140{transform:matrix(0.187761,0.005445,-0.007247,0.249895,0,0);-ms-transform:matrix(0.187761,0.005445,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.187761,0.005445,-0.007247,0.249895,0,0);}
.me7_c01140{transform:matrix(0.189686,0.004932,-0.006498,0.249916,0,0);-ms-transform:matrix(0.189686,0.004932,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.189686,0.004932,-0.006498,0.249916,0,0);}
.m3_c01140{transform:matrix(0.190920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190920,0.000000,0.000000,0.250000,0,0);}
.me6_c01140{transform:matrix(0.191725,0.004985,-0.006498,0.249916,0,0);-ms-transform:matrix(0.191725,0.004985,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.191725,0.004985,-0.006498,0.249916,0,0);}
.m47_c01140{transform:matrix(0.192360,0.003655,-0.004749,0.249955,0,0);-ms-transform:matrix(0.192360,0.003655,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.192360,0.003655,-0.004749,0.249955,0,0);}
.mfd_c01140{transform:matrix(0.194464,0.005445,-0.006997,0.249902,0,0);-ms-transform:matrix(0.194464,0.005445,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.194464,0.005445,-0.006997,0.249902,0,0);}
.m8a_c01140{transform:matrix(0.195055,0.003706,-0.004749,0.249955,0,0);-ms-transform:matrix(0.195055,0.003706,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.195055,0.003706,-0.004749,0.249955,0,0);}
.m28_c01140{transform:matrix(0.197233,0.002170,-0.002750,0.249985,0,0);-ms-transform:matrix(0.197233,0.002170,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.197233,0.002170,-0.002750,0.249985,0,0);}
.mfa_c01140{transform:matrix(0.198457,0.005557,-0.006997,0.249902,0,0);-ms-transform:matrix(0.198457,0.005557,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.198457,0.005557,-0.006997,0.249902,0,0);}
.m100_c01140{transform:matrix(0.200801,0.005622,-0.006997,0.249902,0,0);-ms-transform:matrix(0.200801,0.005622,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.200801,0.005622,-0.006997,0.249902,0,0);}
.m10_c01140{transform:matrix(0.203595,0.002850,-0.003500,0.249976,0,0);-ms-transform:matrix(0.203595,0.002850,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.203595,0.002850,-0.003500,0.249976,0,0);}
.mda_c01140{transform:matrix(0.208362,0.006043,-0.007247,0.249895,0,0);-ms-transform:matrix(0.208362,0.006043,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.208362,0.006043,-0.007247,0.249895,0,0);}
.mfe_c01140{transform:matrix(0.209138,0.005856,-0.006997,0.249902,0,0);-ms-transform:matrix(0.209138,0.005856,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.209138,0.005856,-0.006997,0.249902,0,0);}
.ma1_c01140{transform:matrix(0.212519,0.004675,-0.005499,0.249940,0,0);-ms-transform:matrix(0.212519,0.004675,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.212519,0.004675,-0.005499,0.249940,0,0);}
.m109_c01140{transform:matrix(0.212677,0.007664,-0.009003,0.249838,0,0);-ms-transform:matrix(0.212677,0.007664,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.212677,0.007664,-0.009003,0.249838,0,0);}
.m71_c01140{transform:matrix(0.213762,0.004275,-0.004999,0.249950,0,0);-ms-transform:matrix(0.213762,0.004275,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.213762,0.004275,-0.004999,0.249950,0,0);}
.m10f_c01140{transform:matrix(0.214235,0.008792,-0.010252,0.249790,0,0);-ms-transform:matrix(0.214235,0.008792,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.214235,0.008792,-0.010252,0.249790,0,0);}
.m101_c01140{transform:matrix(0.214336,0.006001,-0.006997,0.249902,0,0);-ms-transform:matrix(0.214336,0.006001,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.214336,0.006001,-0.006997,0.249902,0,0);}
.mfb_c01140{transform:matrix(0.214566,0.006008,-0.006997,0.249902,0,0);-ms-transform:matrix(0.214566,0.006008,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.214566,0.006008,-0.006997,0.249902,0,0);}
.m73_c01140{transform:matrix(0.218211,0.004364,-0.004999,0.249950,0,0);-ms-transform:matrix(0.218211,0.004364,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.218211,0.004364,-0.004999,0.249950,0,0);}
.m10b_c01140{transform:matrix(0.218256,0.008957,-0.010252,0.249790,0,0);-ms-transform:matrix(0.218256,0.008957,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.218256,0.008957,-0.010252,0.249790,0,0);}
.md1_c01140{transform:matrix(0.218924,0.002627,-0.003000,0.249982,0,0);-ms-transform:matrix(0.218924,0.002627,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.218924,0.002627,-0.003000,0.249982,0,0);}
.m102_c01140{transform:matrix(0.219069,0.006134,-0.006997,0.249902,0,0);-ms-transform:matrix(0.219069,0.006134,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.219069,0.006134,-0.006997,0.249902,0,0);}
.m82_c01140{transform:matrix(0.220215,0.004184,-0.004749,0.249955,0,0);-ms-transform:matrix(0.220215,0.004184,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.220215,0.004184,-0.004749,0.249955,0,0);}
.mff_c01140{transform:matrix(0.221148,0.006192,-0.006997,0.249902,0,0);-ms-transform:matrix(0.221148,0.006192,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.221148,0.006192,-0.006997,0.249902,0,0);}
.mba_c01140{transform:matrix(0.221221,0.004867,-0.005499,0.249940,0,0);-ms-transform:matrix(0.221221,0.004867,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.221221,0.004867,-0.005499,0.249940,0,0);}
.md3_c01140{transform:matrix(0.222179,0.002666,-0.003000,0.249982,0,0);-ms-transform:matrix(0.222179,0.002666,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.222179,0.002666,-0.003000,0.249982,0,0);}
.mc8_c01140{transform:matrix(0.222594,0.002671,-0.003000,0.249982,0,0);-ms-transform:matrix(0.222594,0.002671,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.222594,0.002671,-0.003000,0.249982,0,0);}
.m6c_c01140{transform:matrix(0.223285,0.004466,-0.004999,0.249950,0,0);-ms-transform:matrix(0.223285,0.004466,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.223285,0.004466,-0.004999,0.249950,0,0);}
.m3b_c01140{transform:matrix(0.223930,0.004255,-0.004749,0.249955,0,0);-ms-transform:matrix(0.223930,0.004255,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.223930,0.004255,-0.004749,0.249955,0,0);}
.m16_c01140{transform:matrix(0.224691,0.003595,-0.003999,0.249968,0,0);-ms-transform:matrix(0.224691,0.003595,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.224691,0.003595,-0.003999,0.249968,0,0);}
.m111_c01140{transform:matrix(0.225016,0.009235,-0.010252,0.249790,0,0);-ms-transform:matrix(0.225016,0.009235,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.225016,0.009235,-0.010252,0.249790,0,0);}
.md7_c01140{transform:matrix(0.225845,0.006550,-0.007247,0.249895,0,0);-ms-transform:matrix(0.225845,0.006550,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.225845,0.006550,-0.007247,0.249895,0,0);}
.m33_c01140{transform:matrix(0.227393,0.004093,-0.004499,0.249960,0,0);-ms-transform:matrix(0.227393,0.004093,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.227393,0.004093,-0.004499,0.249960,0,0);}
.m4_c01140{transform:matrix(0.227825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227825,0.000000,0.000000,0.250000,0,0);}
.mb3_c01140{transform:matrix(0.227950,0.004787,-0.005249,0.249945,0,0);-ms-transform:matrix(0.227950,0.004787,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.227950,0.004787,-0.005249,0.249945,0,0);}
.me3_c01140{transform:matrix(0.228444,0.006625,-0.007247,0.249895,0,0);-ms-transform:matrix(0.228444,0.006625,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.228444,0.006625,-0.007247,0.249895,0,0);}
.mf9_c01140{transform:matrix(0.228995,0.006412,-0.006997,0.249902,0,0);-ms-transform:matrix(0.228995,0.006412,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.228995,0.006412,-0.006997,0.249902,0,0);}
.mc5_c01140{transform:matrix(0.229024,0.002748,-0.003000,0.249982,0,0);-ms-transform:matrix(0.229024,0.002748,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.229024,0.002748,-0.003000,0.249982,0,0);}
.m58_c01140{transform:matrix(0.229479,0.004590,-0.004999,0.249950,0,0);-ms-transform:matrix(0.229479,0.004590,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.229479,0.004590,-0.004999,0.249950,0,0);}
.m9f_c01140{transform:matrix(0.229479,0.005049,-0.005499,0.249940,0,0);-ms-transform:matrix(0.229479,0.005049,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.229479,0.005049,-0.005499,0.249940,0,0);}
.m1b_c01140{transform:matrix(0.229496,0.003672,-0.003999,0.249968,0,0);-ms-transform:matrix(0.229496,0.003672,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.229496,0.003672,-0.003999,0.249968,0,0);}
.m6f_c01140{transform:matrix(0.229729,0.004595,-0.004999,0.249950,0,0);-ms-transform:matrix(0.229729,0.004595,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.229729,0.004595,-0.004999,0.249950,0,0);}
.mf4_c01140{transform:matrix(0.230542,0.008539,-0.009253,0.249829,0,0);-ms-transform:matrix(0.230542,0.008539,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.230542,0.008539,-0.009253,0.249829,0,0);}
.m10a_c01140{transform:matrix(0.231230,0.009490,-0.010252,0.249790,0,0);-ms-transform:matrix(0.231230,0.009490,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.231230,0.009490,-0.010252,0.249790,0,0);}
.m3e_c01140{transform:matrix(0.231583,0.004400,-0.004749,0.249955,0,0);-ms-transform:matrix(0.231583,0.004400,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.231583,0.004400,-0.004749,0.249955,0,0);}
.m76_c01140{transform:matrix(0.232243,0.004413,-0.004749,0.249955,0,0);-ms-transform:matrix(0.232243,0.004413,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.232243,0.004413,-0.004749,0.249955,0,0);}
.mfc_c01140{transform:matrix(0.232589,0.006512,-0.006997,0.249902,0,0);-ms-transform:matrix(0.232589,0.006512,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.232589,0.006512,-0.006997,0.249902,0,0);}
.m11_c01140{transform:matrix(0.233192,0.003265,-0.003500,0.249976,0,0);-ms-transform:matrix(0.233192,0.003265,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.233192,0.003265,-0.003500,0.249976,0,0);}
.mcc_c01140{transform:matrix(0.233293,0.002800,-0.003000,0.249982,0,0);-ms-transform:matrix(0.233293,0.002800,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.233293,0.002800,-0.003000,0.249982,0,0);}
.m7a_c01140{transform:matrix(0.233693,0.004440,-0.004749,0.249955,0,0);-ms-transform:matrix(0.233693,0.004440,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.233693,0.004440,-0.004749,0.249955,0,0);}
.meb_c01140{transform:matrix(0.234046,0.006085,-0.006498,0.249916,0,0);-ms-transform:matrix(0.234046,0.006085,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.234046,0.006085,-0.006498,0.249916,0,0);}
.m110_c01140{transform:matrix(0.234063,0.009606,-0.010252,0.249790,0,0);-ms-transform:matrix(0.234063,0.009606,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.234063,0.009606,-0.010252,0.249790,0,0);}
.me1_c01140{transform:matrix(0.234067,0.006788,-0.007247,0.249895,0,0);-ms-transform:matrix(0.234067,0.006788,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.234067,0.006788,-0.007247,0.249895,0,0);}
.m7d_c01140{transform:matrix(0.234318,0.004452,-0.004749,0.249955,0,0);-ms-transform:matrix(0.234318,0.004452,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.234318,0.004452,-0.004749,0.249955,0,0);}
.m10d_c01140{transform:matrix(0.234647,0.009630,-0.010252,0.249790,0,0);-ms-transform:matrix(0.234647,0.009630,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.234647,0.009630,-0.010252,0.249790,0,0);}
.m30_c01140{transform:matrix(0.234897,0.004228,-0.004499,0.249960,0,0);-ms-transform:matrix(0.234897,0.004228,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.234897,0.004228,-0.004499,0.249960,0,0);}
.m5b_c01140{transform:matrix(0.235033,0.004701,-0.004999,0.249950,0,0);-ms-transform:matrix(0.235033,0.004701,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.235033,0.004701,-0.004999,0.249950,0,0);}
.m12_c01140{transform:matrix(0.235107,0.003291,-0.003500,0.249976,0,0);-ms-transform:matrix(0.235107,0.003291,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.235107,0.003291,-0.003500,0.249976,0,0);}
.m6b_c01140{transform:matrix(0.235158,0.004703,-0.004999,0.249950,0,0);-ms-transform:matrix(0.235158,0.004703,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.235158,0.004703,-0.004999,0.249950,0,0);}
.m78_c01140{transform:matrix(0.235597,0.004476,-0.004749,0.249955,0,0);-ms-transform:matrix(0.235597,0.004476,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.235597,0.004476,-0.004749,0.249955,0,0);}
.md5_c01140{transform:matrix(0.235656,0.006834,-0.007247,0.249895,0,0);-ms-transform:matrix(0.235656,0.006834,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.235656,0.006834,-0.007247,0.249895,0,0);}
.m52_c01140{transform:matrix(0.235673,0.004713,-0.004999,0.249950,0,0);-ms-transform:matrix(0.235673,0.004713,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.235673,0.004713,-0.004999,0.249950,0,0);}
.me_c01140{transform:matrix(0.236075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236075,0.000000,0.000000,0.250000,0,0);}
.m86_c01140{transform:matrix(0.236277,0.004489,-0.004749,0.249955,0,0);-ms-transform:matrix(0.236277,0.004489,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.236277,0.004489,-0.004749,0.249955,0,0);}
.m94_c01140{transform:matrix(0.236397,0.005674,-0.005998,0.249928,0,0);-ms-transform:matrix(0.236397,0.005674,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.236397,0.005674,-0.005998,0.249928,0,0);}
.m6e_c01140{transform:matrix(0.237283,0.004746,-0.004999,0.249950,0,0);-ms-transform:matrix(0.237283,0.004746,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.237283,0.004746,-0.004999,0.249950,0,0);}
.mf6_c01140{transform:matrix(0.237477,0.008795,-0.009253,0.249829,0,0);-ms-transform:matrix(0.237477,0.008795,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.237477,0.008795,-0.009253,0.249829,0,0);}
.md0_c01140{transform:matrix(0.237738,0.002853,-0.003000,0.249982,0,0);-ms-transform:matrix(0.237738,0.002853,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.237738,0.002853,-0.003000,0.249982,0,0);}
.mc6_c01140{transform:matrix(0.238338,0.002860,-0.003000,0.249982,0,0);-ms-transform:matrix(0.238338,0.002860,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.238338,0.002860,-0.003000,0.249982,0,0);}
.m9e_c01140{transform:matrix(0.239332,0.005265,-0.005499,0.249940,0,0);-ms-transform:matrix(0.239332,0.005265,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.239332,0.005265,-0.005499,0.249940,0,0);}
.m10c_c01140{transform:matrix(0.239728,0.009839,-0.010252,0.249790,0,0);-ms-transform:matrix(0.239728,0.009839,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.239728,0.009839,-0.010252,0.249790,0,0);}
.mcd_c01140{transform:matrix(0.242023,0.002904,-0.003000,0.249982,0,0);-ms-transform:matrix(0.242023,0.002904,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.242023,0.002904,-0.003000,0.249982,0,0);}
.m53_c01140{transform:matrix(0.242347,0.004847,-0.004999,0.249950,0,0);-ms-transform:matrix(0.242347,0.004847,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.242347,0.004847,-0.004999,0.249950,0,0);}
.m39_c01140{transform:matrix(0.242351,0.004605,-0.004749,0.249955,0,0);-ms-transform:matrix(0.242351,0.004605,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.242351,0.004605,-0.004749,0.249955,0,0);}
.mf1_c01140{transform:matrix(0.243148,0.009005,-0.009253,0.249829,0,0);-ms-transform:matrix(0.243148,0.009005,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.243148,0.009005,-0.009253,0.249829,0,0);}
.mca_c01140{transform:matrix(0.243267,0.002919,-0.003000,0.249982,0,0);-ms-transform:matrix(0.243267,0.002919,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.243267,0.002919,-0.003000,0.249982,0,0);}
.mbe_c01140{transform:matrix(0.243316,0.005353,-0.005499,0.249940,0,0);-ms-transform:matrix(0.243316,0.005353,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.243316,0.005353,-0.005499,0.249940,0,0);}
.mf7_c01140{transform:matrix(0.243353,0.009013,-0.009253,0.249829,0,0);-ms-transform:matrix(0.243353,0.009013,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.243353,0.009013,-0.009253,0.249829,0,0);}
.m1d_c01140{transform:matrix(0.243509,0.003896,-0.003999,0.249968,0,0);-ms-transform:matrix(0.243509,0.003896,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.243509,0.003896,-0.003999,0.249968,0,0);}
.me5_c01140{transform:matrix(0.243728,0.007068,-0.007247,0.249895,0,0);-ms-transform:matrix(0.243728,0.007068,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.243728,0.007068,-0.007247,0.249895,0,0);}
.maf_c01140{transform:matrix(0.243881,0.005122,-0.005249,0.249945,0,0);-ms-transform:matrix(0.243881,0.005122,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.243881,0.005122,-0.005249,0.249945,0,0);}
.ma2_c01140{transform:matrix(0.244371,0.005376,-0.005499,0.249940,0,0);-ms-transform:matrix(0.244371,0.005376,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.244371,0.005376,-0.005499,0.249940,0,0);}
.m17_c01140{transform:matrix(0.244829,0.003917,-0.003999,0.249968,0,0);-ms-transform:matrix(0.244829,0.003917,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.244829,0.003917,-0.003999,0.249968,0,0);}
.m14_c01140{transform:matrix(0.244886,0.003428,-0.003500,0.249976,0,0);-ms-transform:matrix(0.244886,0.003428,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.244886,0.003428,-0.003500,0.249976,0,0);}
.m7b_c01140{transform:matrix(0.245416,0.004663,-0.004749,0.249955,0,0);-ms-transform:matrix(0.245416,0.004663,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.245416,0.004663,-0.004749,0.249955,0,0);}
.m6a_c01140{transform:matrix(0.245701,0.004914,-0.004999,0.249950,0,0);-ms-transform:matrix(0.245701,0.004914,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.245701,0.004914,-0.004999,0.249950,0,0);}
.m6d_c01140{transform:matrix(0.246211,0.004924,-0.004999,0.249950,0,0);-ms-transform:matrix(0.246211,0.004924,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.246211,0.004924,-0.004999,0.249950,0,0);}
.m19_c01140{transform:matrix(0.246288,0.003941,-0.003999,0.249968,0,0);-ms-transform:matrix(0.246288,0.003941,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.246288,0.003941,-0.003999,0.249968,0,0);}
.mdf_c01140{transform:matrix(0.247356,0.007173,-0.007247,0.249895,0,0);-ms-transform:matrix(0.247356,0.007173,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.247356,0.007173,-0.007247,0.249895,0,0);}
.mb4_c01140{transform:matrix(0.247400,0.005195,-0.005249,0.249945,0,0);-ms-transform:matrix(0.247400,0.005195,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.247400,0.005195,-0.005249,0.249945,0,0);}
.m42_c01140{transform:matrix(0.247640,0.004705,-0.004749,0.249955,0,0);-ms-transform:matrix(0.247640,0.004705,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.247640,0.004705,-0.004749,0.249955,0,0);}
.m34_c01140{transform:matrix(0.248080,0.004465,-0.004499,0.249960,0,0);-ms-transform:matrix(0.248080,0.004465,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.248080,0.004465,-0.004499,0.249960,0,0);}
.m9d_c01140{transform:matrix(0.248105,0.005458,-0.005499,0.249940,0,0);-ms-transform:matrix(0.248105,0.005458,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.248105,0.005458,-0.005499,0.249940,0,0);}
.mce_c01140{transform:matrix(0.248322,0.002980,-0.003000,0.249982,0,0);-ms-transform:matrix(0.248322,0.002980,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.248322,0.002980,-0.003000,0.249982,0,0);}
.m72_c01140{transform:matrix(0.248730,0.004975,-0.004999,0.249950,0,0);-ms-transform:matrix(0.248730,0.004975,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.248730,0.004975,-0.004999,0.249950,0,0);}
.m0_c01140{transform:matrix(0.249220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249220,0.000000,0.000000,0.250000,0,0);}
.mb1_c01140{transform:matrix(0.249560,0.005241,-0.005249,0.249945,0,0);-ms-transform:matrix(0.249560,0.005241,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.249560,0.005241,-0.005249,0.249945,0,0);}
.m4d_c01140{transform:matrix(0.249620,0.004743,-0.004749,0.249955,0,0);-ms-transform:matrix(0.249620,0.004743,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.249620,0.004743,-0.004749,0.249955,0,0);}
.mc3_c01140{transform:matrix(0.250392,0.003005,-0.003000,0.249982,0,0);-ms-transform:matrix(0.250392,0.003005,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.250392,0.003005,-0.003000,0.249982,0,0);}
.mcb_c01140{transform:matrix(0.250452,0.003005,-0.003000,0.249982,0,0);-ms-transform:matrix(0.250452,0.003005,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.250452,0.003005,-0.003000,0.249982,0,0);}
.m6_c01140{transform:matrix(0.251865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251865,0.000000,0.000000,0.250000,0,0);}
.m81_c01140{transform:matrix(0.251960,0.004787,-0.004749,0.249955,0,0);-ms-transform:matrix(0.251960,0.004787,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.251960,0.004787,-0.004749,0.249955,0,0);}
.m31_c01140{transform:matrix(0.252014,0.004536,-0.004499,0.249960,0,0);-ms-transform:matrix(0.252014,0.004536,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.252014,0.004536,-0.004499,0.249960,0,0);}
.m75_c01140{transform:matrix(0.252015,0.004788,-0.004749,0.249955,0,0);-ms-transform:matrix(0.252015,0.004788,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.252015,0.004788,-0.004749,0.249955,0,0);}
.m9_c01140{transform:matrix(0.252105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252105,0.000000,0.000000,0.250000,0,0);}
.m80_c01140{transform:matrix(0.252799,0.004803,-0.004749,0.249955,0,0);-ms-transform:matrix(0.252799,0.004803,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.252799,0.004803,-0.004749,0.249955,0,0);}
.m1f_c01140{transform:matrix(0.253098,0.004050,-0.003999,0.249968,0,0);-ms-transform:matrix(0.253098,0.004050,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.253098,0.004050,-0.003999,0.249968,0,0);}
.m7_c01140{transform:matrix(0.253310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253310,0.000000,0.000000,0.250000,0,0);}
.m63_c01140{transform:matrix(0.254934,0.004844,-0.004749,0.249955,0,0);-ms-transform:matrix(0.254934,0.004844,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.254934,0.004844,-0.004749,0.249955,0,0);}
.m22_c01140{transform:matrix(0.255632,0.004090,-0.003999,0.249968,0,0);-ms-transform:matrix(0.255632,0.004090,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.255632,0.004090,-0.003999,0.249968,0,0);}
.m4b_c01140{transform:matrix(0.255864,0.004861,-0.004749,0.249955,0,0);-ms-transform:matrix(0.255864,0.004861,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.255864,0.004861,-0.004749,0.249955,0,0);}
.m38_c01140{transform:matrix(0.256434,0.004872,-0.004749,0.249955,0,0);-ms-transform:matrix(0.256434,0.004872,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.256434,0.004872,-0.004749,0.249955,0,0);}
.mae_c01140{transform:matrix(0.256443,0.005385,-0.005249,0.249945,0,0);-ms-transform:matrix(0.256443,0.005385,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.256443,0.005385,-0.005249,0.249945,0,0);}
.md2_c01140{transform:matrix(0.256762,0.003081,-0.003000,0.249982,0,0);-ms-transform:matrix(0.256762,0.003081,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.256762,0.003081,-0.003000,0.249982,0,0);}
.m9c_c01140{transform:matrix(0.257458,0.005664,-0.005499,0.249940,0,0);-ms-transform:matrix(0.257458,0.005664,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.257458,0.005664,-0.005499,0.249940,0,0);}
.m50_c01140{transform:matrix(0.258023,0.004902,-0.004749,0.249955,0,0);-ms-transform:matrix(0.258023,0.004902,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.258023,0.004902,-0.004749,0.249955,0,0);}
.m61_c01140{transform:matrix(0.258123,0.004904,-0.004749,0.249955,0,0);-ms-transform:matrix(0.258123,0.004904,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.258123,0.004904,-0.004749,0.249955,0,0);}
.m3c_c01140{transform:matrix(0.258173,0.004905,-0.004749,0.249955,0,0);-ms-transform:matrix(0.258173,0.004905,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.258173,0.004905,-0.004749,0.249955,0,0);}
.ma0_c01140{transform:matrix(0.259997,0.005720,-0.005499,0.249940,0,0);-ms-transform:matrix(0.259997,0.005720,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.259997,0.005720,-0.005499,0.249940,0,0);}
.m108_c01140{transform:matrix(0.260051,0.009371,-0.009003,0.249838,0,0);-ms-transform:matrix(0.260051,0.009371,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.260051,0.009371,-0.009003,0.249838,0,0);}
.m70_c01140{transform:matrix(0.260388,0.005208,-0.004999,0.249950,0,0);-ms-transform:matrix(0.260388,0.005208,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.260388,0.005208,-0.004999,0.249950,0,0);}
.m13_c01140{transform:matrix(0.260729,0.003650,-0.003500,0.249976,0,0);-ms-transform:matrix(0.260729,0.003650,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.260729,0.003650,-0.003500,0.249976,0,0);}
.m60_c01140{transform:matrix(0.260973,0.004958,-0.004749,0.249955,0,0);-ms-transform:matrix(0.260973,0.004958,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.260973,0.004958,-0.004749,0.249955,0,0);}
.m113_c01140{transform:matrix(0.261142,0.005484,-0.005249,0.249945,0,0);-ms-transform:matrix(0.261142,0.005484,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.261142,0.005484,-0.005249,0.249945,0,0);}
.mf3_c01140{transform:matrix(0.261186,0.009674,-0.009253,0.249829,0,0);-ms-transform:matrix(0.261186,0.009674,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.261186,0.009674,-0.009253,0.249829,0,0);}
.m10e_c01140{transform:matrix(0.261195,0.010720,-0.010252,0.249790,0,0);-ms-transform:matrix(0.261195,0.010720,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.261195,0.010720,-0.010252,0.249790,0,0);}
.m112_c01140{transform:matrix(0.261765,0.010743,-0.010252,0.249790,0,0);-ms-transform:matrix(0.261765,0.010743,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.261765,0.010743,-0.010252,0.249790,0,0);}
.mc4_c01140{transform:matrix(0.261926,0.003143,-0.003000,0.249982,0,0);-ms-transform:matrix(0.261926,0.003143,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.261926,0.003143,-0.003000,0.249982,0,0);}
.mdc_c01140{transform:matrix(0.262390,0.007609,-0.007247,0.249895,0,0);-ms-transform:matrix(0.262390,0.007609,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.262390,0.007609,-0.007247,0.249895,0,0);}
.ma9_c01140{transform:matrix(0.262413,0.005248,-0.004999,0.249950,0,0);-ms-transform:matrix(0.262413,0.005248,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.262413,0.005248,-0.004999,0.249950,0,0);}
.m23_c01140{transform:matrix(0.262481,0.004200,-0.003999,0.249968,0,0);-ms-transform:matrix(0.262481,0.004200,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.262481,0.004200,-0.003999,0.249968,0,0);}
.md9_c01140{transform:matrix(0.262705,0.007618,-0.007247,0.249895,0,0);-ms-transform:matrix(0.262705,0.007618,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.262705,0.007618,-0.007247,0.249895,0,0);}
.mf8_c01140{transform:matrix(0.262760,0.009732,-0.009253,0.249829,0,0);-ms-transform:matrix(0.262760,0.009732,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.262760,0.009732,-0.009253,0.249829,0,0);}
.m4f_c01140{transform:matrix(0.262898,0.004995,-0.004749,0.249955,0,0);-ms-transform:matrix(0.262898,0.004995,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.262898,0.004995,-0.004749,0.249955,0,0);}
.mab_c01140{transform:matrix(0.263102,0.005262,-0.004999,0.249950,0,0);-ms-transform:matrix(0.263102,0.005262,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.263102,0.005262,-0.004999,0.249950,0,0);}
.m84_c01140{transform:matrix(0.263417,0.005005,-0.004749,0.249955,0,0);-ms-transform:matrix(0.263417,0.005005,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.263417,0.005005,-0.004749,0.249955,0,0);}
.m4a_c01140{transform:matrix(0.263762,0.005011,-0.004749,0.249955,0,0);-ms-transform:matrix(0.263762,0.005011,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.263762,0.005011,-0.004749,0.249955,0,0);}
.mb9_c01140{transform:matrix(0.263996,0.005808,-0.005499,0.249940,0,0);-ms-transform:matrix(0.263996,0.005808,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.263996,0.005808,-0.005499,0.249940,0,0);}
.m93_c01140{transform:matrix(0.264144,0.006339,-0.005998,0.249928,0,0);-ms-transform:matrix(0.264144,0.006339,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.264144,0.006339,-0.005998,0.249928,0,0);}
.m4e_c01140{transform:matrix(0.265047,0.005036,-0.004749,0.249955,0,0);-ms-transform:matrix(0.265047,0.005036,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.265047,0.005036,-0.004749,0.249955,0,0);}
.m7c_c01140{transform:matrix(0.265292,0.005041,-0.004749,0.249955,0,0);-ms-transform:matrix(0.265292,0.005041,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.265292,0.005041,-0.004749,0.249955,0,0);}
.m95_c01140{transform:matrix(0.265339,0.006368,-0.005998,0.249928,0,0);-ms-transform:matrix(0.265339,0.006368,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.265339,0.006368,-0.005998,0.249928,0,0);}
.m98_c01140{transform:matrix(0.265434,0.006370,-0.005998,0.249928,0,0);-ms-transform:matrix(0.265434,0.006370,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.265434,0.006370,-0.005998,0.249928,0,0);}
.m20_c01140{transform:matrix(0.265601,0.004250,-0.003999,0.249968,0,0);-ms-transform:matrix(0.265601,0.004250,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.265601,0.004250,-0.003999,0.249968,0,0);}
.mde_c01140{transform:matrix(0.265688,0.007705,-0.007247,0.249895,0,0);-ms-transform:matrix(0.265688,0.007705,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.265688,0.007705,-0.007247,0.249895,0,0);}
.m96_c01140{transform:matrix(0.267348,0.006416,-0.005998,0.249928,0,0);-ms-transform:matrix(0.267348,0.006416,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.267348,0.006416,-0.005998,0.249928,0,0);}
.m57_c01140{transform:matrix(0.267357,0.005347,-0.004999,0.249950,0,0);-ms-transform:matrix(0.267357,0.005347,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.267357,0.005347,-0.004999,0.249950,0,0);}
.m40_c01140{transform:matrix(0.267862,0.005089,-0.004749,0.249955,0,0);-ms-transform:matrix(0.267862,0.005089,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.267862,0.005089,-0.004749,0.249955,0,0);}
.m54_c01140{transform:matrix(0.267866,0.005357,-0.004999,0.249950,0,0);-ms-transform:matrix(0.267866,0.005357,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.267866,0.005357,-0.004999,0.249950,0,0);}
.m1c_c01140{transform:matrix(0.268586,0.004297,-0.003999,0.249968,0,0);-ms-transform:matrix(0.268586,0.004297,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.268586,0.004297,-0.003999,0.249968,0,0);}
.m56_c01140{transform:matrix(0.268981,0.005380,-0.004999,0.249950,0,0);-ms-transform:matrix(0.268981,0.005380,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.268981,0.005380,-0.004999,0.249950,0,0);}
.m7e_c01140{transform:matrix(0.269211,0.005115,-0.004749,0.249955,0,0);-ms-transform:matrix(0.269211,0.005115,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.269211,0.005115,-0.004749,0.249955,0,0);}
.m79_c01140{transform:matrix(0.269671,0.005124,-0.004749,0.249955,0,0);-ms-transform:matrix(0.269671,0.005124,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.269671,0.005124,-0.004749,0.249955,0,0);}
.m1a_c01140{transform:matrix(0.269945,0.004319,-0.003999,0.249968,0,0);-ms-transform:matrix(0.269945,0.004319,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.269945,0.004319,-0.003999,0.249968,0,0);}
.m5d_c01140{transform:matrix(0.270261,0.005405,-0.004999,0.249950,0,0);-ms-transform:matrix(0.270261,0.005405,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.270261,0.005405,-0.004999,0.249950,0,0);}
.ma7_c01140{transform:matrix(0.270456,0.005409,-0.004999,0.249950,0,0);-ms-transform:matrix(0.270456,0.005409,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.270456,0.005409,-0.004999,0.249950,0,0);}
.mbc_c01140{transform:matrix(0.270580,0.005953,-0.005499,0.249940,0,0);-ms-transform:matrix(0.270580,0.005953,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.270580,0.005953,-0.005499,0.249940,0,0);}
.m3f_c01140{transform:matrix(0.270706,0.005143,-0.004749,0.249955,0,0);-ms-transform:matrix(0.270706,0.005143,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.270706,0.005143,-0.004749,0.249955,0,0);}
.m83_c01140{transform:matrix(0.271071,0.005150,-0.004749,0.249955,0,0);-ms-transform:matrix(0.271071,0.005150,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.271071,0.005150,-0.004749,0.249955,0,0);}
.mc7_c01140{transform:matrix(0.271695,0.003260,-0.003000,0.249982,0,0);-ms-transform:matrix(0.271695,0.003260,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.271695,0.003260,-0.003000,0.249982,0,0);}
.mdb_c01140{transform:matrix(0.271821,0.007883,-0.007247,0.249895,0,0);-ms-transform:matrix(0.271821,0.007883,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.271821,0.007883,-0.007247,0.249895,0,0);}
.mbf_c01140{transform:matrix(0.272009,0.005984,-0.005499,0.249940,0,0);-ms-transform:matrix(0.272009,0.005984,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.272009,0.005984,-0.005499,0.249940,0,0);}
.mef_c01140{transform:matrix(0.272422,0.006538,-0.005998,0.249928,0,0);-ms-transform:matrix(0.272422,0.006538,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.272422,0.006538,-0.005998,0.249928,0,0);}
.m77_c01140{transform:matrix(0.273166,0.005190,-0.004749,0.249955,0,0);-ms-transform:matrix(0.273166,0.005190,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.273166,0.005190,-0.004749,0.249955,0,0);}
.m85_c01140{transform:matrix(0.273736,0.005201,-0.004749,0.249955,0,0);-ms-transform:matrix(0.273736,0.005201,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.273736,0.005201,-0.004749,0.249955,0,0);}
.m18_c01140{transform:matrix(0.273925,0.004383,-0.003999,0.249968,0,0);-ms-transform:matrix(0.273925,0.004383,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.273925,0.004383,-0.003999,0.249968,0,0);}
.m87_c01140{transform:matrix(0.273956,0.005205,-0.004749,0.249955,0,0);-ms-transform:matrix(0.273956,0.005205,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.273956,0.005205,-0.004749,0.249955,0,0);}
.m5c_c01140{transform:matrix(0.274250,0.005485,-0.004999,0.249950,0,0);-ms-transform:matrix(0.274250,0.005485,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.274250,0.005485,-0.004999,0.249950,0,0);}
.m5a_c01140{transform:matrix(0.274380,0.005488,-0.004999,0.249950,0,0);-ms-transform:matrix(0.274380,0.005488,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.274380,0.005488,-0.004999,0.249950,0,0);}
.m8_c01140{transform:matrix(0.274420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274420,0.000000,0.000000,0.250000,0,0);}
.m35_c01140{transform:matrix(0.274835,0.004947,-0.004499,0.249960,0,0);-ms-transform:matrix(0.274835,0.004947,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.274835,0.004947,-0.004499,0.249960,0,0);}
.m49_c01140{transform:matrix(0.275195,0.005229,-0.004749,0.249955,0,0);-ms-transform:matrix(0.275195,0.005229,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.275195,0.005229,-0.004749,0.249955,0,0);}
.m2f_c01140{transform:matrix(0.275330,0.004956,-0.004499,0.249960,0,0);-ms-transform:matrix(0.275330,0.004956,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.275330,0.004956,-0.004499,0.249960,0,0);}
.mac_c01140{transform:matrix(0.275355,0.005507,-0.004999,0.249950,0,0);-ms-transform:matrix(0.275355,0.005507,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.275355,0.005507,-0.004999,0.249950,0,0);}
.m97_c01140{transform:matrix(0.275401,0.006610,-0.005998,0.249928,0,0);-ms-transform:matrix(0.275401,0.006610,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.275401,0.006610,-0.005998,0.249928,0,0);}
.m32_c01140{transform:matrix(0.276275,0.004973,-0.004499,0.249960,0,0);-ms-transform:matrix(0.276275,0.004973,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.276275,0.004973,-0.004499,0.249960,0,0);}
.m15_c01140{transform:matrix(0.276585,0.004425,-0.003999,0.249968,0,0);-ms-transform:matrix(0.276585,0.004425,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.276585,0.004425,-0.003999,0.249968,0,0);}
.m48_c01140{transform:matrix(0.277330,0.005269,-0.004749,0.249955,0,0);-ms-transform:matrix(0.277330,0.005269,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.277330,0.005269,-0.004749,0.249955,0,0);}
.m37_c01140{transform:matrix(0.277535,0.005273,-0.004749,0.249955,0,0);-ms-transform:matrix(0.277535,0.005273,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.277535,0.005273,-0.004749,0.249955,0,0);}
.mf2_c01140{transform:matrix(0.277620,0.010282,-0.009253,0.249829,0,0);-ms-transform:matrix(0.277620,0.010282,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.277620,0.010282,-0.009253,0.249829,0,0);}
.m55_c01140{transform:matrix(0.277804,0.005556,-0.004999,0.249950,0,0);-ms-transform:matrix(0.277804,0.005556,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.277804,0.005556,-0.004999,0.249950,0,0);}
.m3a_c01140{transform:matrix(0.277950,0.005281,-0.004749,0.249955,0,0);-ms-transform:matrix(0.277950,0.005281,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.277950,0.005281,-0.004749,0.249955,0,0);}
.m4c_c01140{transform:matrix(0.278905,0.005299,-0.004749,0.249955,0,0);-ms-transform:matrix(0.278905,0.005299,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.278905,0.005299,-0.004749,0.249955,0,0);}
.mc9_c01140{transform:matrix(0.279050,0.003349,-0.003000,0.249982,0,0);-ms-transform:matrix(0.279050,0.003349,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.279050,0.003349,-0.003000,0.249982,0,0);}
.m5f_c01140{transform:matrix(0.279189,0.005584,-0.004999,0.249950,0,0);-ms-transform:matrix(0.279189,0.005584,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.279189,0.005584,-0.004999,0.249950,0,0);}
.m114_c01140{transform:matrix(0.279623,0.005872,-0.005249,0.249945,0,0);-ms-transform:matrix(0.279623,0.005872,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.279623,0.005872,-0.005249,0.249945,0,0);}
.m99_c01140{transform:matrix(0.280049,0.006721,-0.005998,0.249928,0,0);-ms-transform:matrix(0.280049,0.006721,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.280049,0.006721,-0.005998,0.249928,0,0);}
.mdd_c01140{transform:matrix(0.280082,0.008122,-0.007247,0.249895,0,0);-ms-transform:matrix(0.280082,0.008122,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.280082,0.008122,-0.007247,0.249895,0,0);}
.m105_c01140{transform:matrix(0.280293,0.010101,-0.009003,0.249838,0,0);-ms-transform:matrix(0.280293,0.010101,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.280293,0.010101,-0.009003,0.249838,0,0);}
.mbd_c01140{transform:matrix(0.280572,0.006173,-0.005499,0.249940,0,0);-ms-transform:matrix(0.280572,0.006173,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.280572,0.006173,-0.005499,0.249940,0,0);}
.ma8_c01140{transform:matrix(0.280759,0.005615,-0.004999,0.249950,0,0);-ms-transform:matrix(0.280759,0.005615,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.280759,0.005615,-0.004999,0.249950,0,0);}
.m1e_c01140{transform:matrix(0.280969,0.004496,-0.003999,0.249968,0,0);-ms-transform:matrix(0.280969,0.004496,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.280969,0.004496,-0.003999,0.249968,0,0);}
.m44_c01140{transform:matrix(0.281179,0.005342,-0.004749,0.249955,0,0);-ms-transform:matrix(0.281179,0.005342,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.281179,0.005342,-0.004749,0.249955,0,0);}
.m36_c01140{transform:matrix(0.281834,0.005073,-0.004499,0.249960,0,0);-ms-transform:matrix(0.281834,0.005073,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.281834,0.005073,-0.004499,0.249960,0,0);}
.m2b_c01140{transform:matrix(0.282048,0.003103,-0.002750,0.249985,0,0);-ms-transform:matrix(0.282048,0.003103,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.282048,0.003103,-0.002750,0.249985,0,0);}
.m51_c01140{transform:matrix(0.282064,0.005359,-0.004749,0.249955,0,0);-ms-transform:matrix(0.282064,0.005359,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.282064,0.005359,-0.004749,0.249955,0,0);}
.m64_c01140{transform:matrix(0.282089,0.005360,-0.004749,0.249955,0,0);-ms-transform:matrix(0.282089,0.005360,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.282089,0.005360,-0.004749,0.249955,0,0);}
.m59_c01140{transform:matrix(0.283118,0.005662,-0.004999,0.249950,0,0);-ms-transform:matrix(0.283118,0.005662,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.283118,0.005662,-0.004999,0.249950,0,0);}
.m88_c01140{transform:matrix(0.284099,0.005398,-0.004749,0.249955,0,0);-ms-transform:matrix(0.284099,0.005398,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.284099,0.005398,-0.004749,0.249955,0,0);}
.mbb_c01140{transform:matrix(0.284466,0.006258,-0.005499,0.249940,0,0);-ms-transform:matrix(0.284466,0.006258,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.284466,0.006258,-0.005499,0.249940,0,0);}
.m107_c01140{transform:matrix(0.284940,0.010268,-0.009003,0.249838,0,0);-ms-transform:matrix(0.284940,0.010268,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.284940,0.010268,-0.009003,0.249838,0,0);}
.maa_c01140{transform:matrix(0.285503,0.005710,-0.004999,0.249950,0,0);-ms-transform:matrix(0.285503,0.005710,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.285503,0.005710,-0.004999,0.249950,0,0);}
.m115_c01140{transform:matrix(0.286142,0.006009,-0.005249,0.249945,0,0);-ms-transform:matrix(0.286142,0.006009,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.286142,0.006009,-0.005249,0.249945,0,0);}
.m5e_c01140{transform:matrix(0.287448,0.005749,-0.004999,0.249950,0,0);-ms-transform:matrix(0.287448,0.005749,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.287448,0.005749,-0.004999,0.249950,0,0);}
.m62_c01140{transform:matrix(0.289263,0.005496,-0.004749,0.249955,0,0);-ms-transform:matrix(0.289263,0.005496,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.289263,0.005496,-0.004749,0.249955,0,0);}
.m29_c01140{transform:matrix(0.289682,0.003187,-0.002750,0.249985,0,0);-ms-transform:matrix(0.289682,0.003187,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.289682,0.003187,-0.002750,0.249985,0,0);}
.mc0_c01140{transform:matrix(0.289905,0.006378,-0.005499,0.249940,0,0);-ms-transform:matrix(0.289905,0.006378,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.289905,0.006378,-0.005499,0.249940,0,0);}
.mb0_c01140{transform:matrix(0.292356,0.006139,-0.005249,0.249945,0,0);-ms-transform:matrix(0.292356,0.006139,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.292356,0.006139,-0.005249,0.249945,0,0);}
.m25_c01140{transform:matrix(0.292908,0.004687,-0.003999,0.249968,0,0);-ms-transform:matrix(0.292908,0.004687,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.292908,0.004687,-0.003999,0.249968,0,0);}
.mb2_c01140{transform:matrix(0.293590,0.006165,-0.005249,0.249945,0,0);-ms-transform:matrix(0.293590,0.006165,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.293590,0.006165,-0.005249,0.249945,0,0);}
.me4_c01140{transform:matrix(0.297930,0.008640,-0.007247,0.249895,0,0);-ms-transform:matrix(0.297930,0.008640,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.297930,0.008640,-0.007247,0.249895,0,0);}
.mee_c01140{transform:matrix(0.298399,0.007162,-0.005998,0.249928,0,0);-ms-transform:matrix(0.298399,0.007162,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.298399,0.007162,-0.005998,0.249928,0,0);}
.m24_c01140{transform:matrix(0.303506,0.004856,-0.003999,0.249968,0,0);-ms-transform:matrix(0.303506,0.004856,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.303506,0.004856,-0.003999,0.249968,0,0);}
.m21_c01140{transform:matrix(0.303781,0.004860,-0.003999,0.249968,0,0);-ms-transform:matrix(0.303781,0.004860,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.303781,0.004860,-0.003999,0.249968,0,0);}
.mf0_c01140{transform:matrix(0.303813,0.007292,-0.005998,0.249928,0,0);-ms-transform:matrix(0.303813,0.007292,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.303813,0.007292,-0.005998,0.249928,0,0);}
.m41_c01140{transform:matrix(0.304670,0.005789,-0.004749,0.249955,0,0);-ms-transform:matrix(0.304670,0.005789,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.304670,0.005789,-0.004749,0.249955,0,0);}
.m9a_c01140{transform:matrix(0.306067,0.007346,-0.005998,0.249928,0,0);-ms-transform:matrix(0.306067,0.007346,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.306067,0.007346,-0.005998,0.249928,0,0);}
.m74_c01140{transform:matrix(0.306509,0.006130,-0.004999,0.249950,0,0);-ms-transform:matrix(0.306509,0.006130,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.306509,0.006130,-0.004999,0.249950,0,0);}
.m2e_c01140{transform:matrix(0.311311,0.003424,-0.002750,0.249985,0,0);-ms-transform:matrix(0.311311,0.003424,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.311311,0.003424,-0.002750,0.249985,0,0);}
.mc_c01140{transform:matrix(0.316730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316730,0.000000,0.000000,0.250000,0,0);}
.m104_c01140{transform:matrix(0.318155,0.008908,-0.006997,0.249902,0,0);-ms-transform:matrix(0.318155,0.008908,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.318155,0.008908,-0.006997,0.249902,0,0);}
.m8c_c01140{transform:matrix(0.320941,0.006419,-0.004999,0.249950,0,0);-ms-transform:matrix(0.320941,0.006419,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.320941,0.006419,-0.004999,0.249950,0,0);}
.m2c_c01140{transform:matrix(0.322016,0.003542,-0.002750,0.249985,0,0);-ms-transform:matrix(0.322016,0.003542,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.322016,0.003542,-0.002750,0.249985,0,0);}
.m2d_c01140{transform:matrix(0.323090,0.003554,-0.002750,0.249985,0,0);-ms-transform:matrix(0.323090,0.003554,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.323090,0.003554,-0.002750,0.249985,0,0);}
.m26_c01140{transform:matrix(0.331435,0.003646,-0.002750,0.249985,0,0);-ms-transform:matrix(0.331435,0.003646,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.331435,0.003646,-0.002750,0.249985,0,0);}
.m2a_c01140{transform:matrix(0.332740,0.003660,-0.002750,0.249985,0,0);-ms-transform:matrix(0.332740,0.003660,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.332740,0.003660,-0.002750,0.249985,0,0);}
.m27_c01140{transform:matrix(0.335360,0.003689,-0.002750,0.249985,0,0);-ms-transform:matrix(0.335360,0.003689,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.335360,0.003689,-0.002750,0.249985,0,0);}
.m46_c01140{transform:matrix(0.347232,0.006597,-0.004749,0.249955,0,0);-ms-transform:matrix(0.347232,0.006597,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.347232,0.006597,-0.004749,0.249955,0,0);}
.me9_c01140{transform:matrix(0.357834,0.009304,-0.006498,0.249916,0,0);-ms-transform:matrix(0.357834,0.009304,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.357834,0.009304,-0.006498,0.249916,0,0);}
.m8e_c01140{transform:matrix(0.365162,0.007303,-0.004999,0.249950,0,0);-ms-transform:matrix(0.365162,0.007303,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.365162,0.007303,-0.004999,0.249950,0,0);}
.m8f_c01140{transform:matrix(0.368201,0.007364,-0.004999,0.249950,0,0);-ms-transform:matrix(0.368201,0.007364,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.368201,0.007364,-0.004999,0.249950,0,0);}
.m8b_c01140{transform:matrix(0.380681,0.007233,-0.004749,0.249955,0,0);-ms-transform:matrix(0.380681,0.007233,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.380681,0.007233,-0.004749,0.249955,0,0);}
.mad_c01140{transform:matrix(0.400420,0.008008,-0.004999,0.249950,0,0);-ms-transform:matrix(0.400420,0.008008,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.400420,0.008008,-0.004999,0.249950,0,0);}
.m8d_c01140{transform:matrix(0.403759,0.008075,-0.004999,0.249950,0,0);-ms-transform:matrix(0.403759,0.008075,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.403759,0.008075,-0.004999,0.249950,0,0);}
.mc1_c01140{transform:matrix(0.462792,0.005554,-0.003000,0.249982,0,0);-ms-transform:matrix(0.462792,0.005554,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.462792,0.005554,-0.003000,0.249982,0,0);}
.me0_c01140{transform:matrix(0.475235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475235,0.000000,0.000000,0.250000,0,0);}
.md4_c01140{transform:matrix(0.478911,0.005747,-0.003000,0.249982,0,0);-ms-transform:matrix(0.478911,0.005747,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.478911,0.005747,-0.003000,0.249982,0,0);}
.m2_c01140{transform:matrix(0.549380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549380,0.000000,0.000000,0.250000,0,0);}
.ma_c01140{transform:matrix(0.628060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.628060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.628060,0.000000,0.000000,0.250000,0,0);}
.mb7_c01140{transform:matrix(0.759108,0.015941,-0.005249,0.249945,0,0);-ms-transform:matrix(0.759108,0.015941,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.759108,0.015941,-0.005249,0.249945,0,0);}
.mb8_c01140{transform:matrix(0.790081,0.016592,-0.005249,0.249945,0,0);-ms-transform:matrix(0.790081,0.016592,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.790081,0.016592,-0.005249,0.249945,0,0);}
.ma4_c01140{transform:matrix(0.790599,0.017393,-0.005499,0.249940,0,0);-ms-transform:matrix(0.790599,0.017393,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.790599,0.017393,-0.005499,0.249940,0,0);}
.ma6_c01140{transform:matrix(0.933254,0.020532,-0.005499,0.249940,0,0);-ms-transform:matrix(0.933254,0.020532,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.933254,0.020532,-0.005499,0.249940,0,0);}
.m67_c01140{transform:matrix(0.965086,0.018337,-0.004749,0.249955,0,0);-ms-transform:matrix(0.965086,0.018337,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.965086,0.018337,-0.004749,0.249955,0,0);}
.ma5_c01140{transform:matrix(0.976639,0.021486,-0.005499,0.249940,0,0);-ms-transform:matrix(0.976639,0.021486,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.976639,0.021486,-0.005499,0.249940,0,0);}
.m90_c01140{transform:matrix(1.093161,0.021863,-0.004999,0.249950,0,0);-ms-transform:matrix(1.093161,0.021863,-0.004999,0.249950,0,0);-webkit-transform:matrix(1.093161,0.021863,-0.004999,0.249950,0,0);}
.mc2_c01140{transform:matrix(1.150022,0.013800,-0.003000,0.249982,0,0);-ms-transform:matrix(1.150022,0.013800,-0.003000,0.249982,0,0);-webkit-transform:matrix(1.150022,0.013800,-0.003000,0.249982,0,0);}
.m66_c01140{transform:matrix(1.222899,0.023235,-0.004749,0.249955,0,0);-ms-transform:matrix(1.222899,0.023235,-0.004749,0.249955,0,0);-webkit-transform:matrix(1.222899,0.023235,-0.004749,0.249955,0,0);}
.m91_c01140{transform:matrix(1.402240,0.028045,-0.004999,0.249950,0,0);-ms-transform:matrix(1.402240,0.028045,-0.004999,0.249950,0,0);-webkit-transform:matrix(1.402240,0.028045,-0.004999,0.249950,0,0);}
.m68_c01140{transform:matrix(1.415954,0.026903,-0.004749,0.249955,0,0);-ms-transform:matrix(1.415954,0.026903,-0.004749,0.249955,0,0);-webkit-transform:matrix(1.415954,0.026903,-0.004749,0.249955,0,0);}
.m69_c01140{transform:matrix(1.468970,0.027910,-0.004749,0.249955,0,0);-ms-transform:matrix(1.468970,0.027910,-0.004749,0.249955,0,0);-webkit-transform:matrix(1.468970,0.027910,-0.004749,0.249955,0,0);}
.mb6_c01140{transform:matrix(1.672981,0.035133,-0.005249,0.249945,0,0);-ms-transform:matrix(1.672981,0.035133,-0.005249,0.249945,0,0);-webkit-transform:matrix(1.672981,0.035133,-0.005249,0.249945,0,0);}
.m92_c01140{transform:matrix(1.941442,0.038829,-0.004999,0.249950,0,0);-ms-transform:matrix(1.941442,0.038829,-0.004999,0.249950,0,0);-webkit-transform:matrix(1.941442,0.038829,-0.004999,0.249950,0,0);}
.ma3_c01140{transform:matrix(2.558776,0.056293,-0.005499,0.249940,0,0);-ms-transform:matrix(2.558776,0.056293,-0.005499,0.249940,0,0);-webkit-transform:matrix(2.558776,0.056293,-0.005499,0.249940,0,0);}
.mb5_c01140{transform:matrix(5.329735,0.111924,-0.005249,0.249945,0,0);-ms-transform:matrix(5.329735,0.111924,-0.005249,0.249945,0,0);-webkit-transform:matrix(5.329735,0.111924,-0.005249,0.249945,0,0);}
.m65_c01140{transform:matrix(11.432877,0.217225,-0.004749,0.249955,0,0);-ms-transform:matrix(11.432877,0.217225,-0.004749,0.249955,0,0);-webkit-transform:matrix(11.432877,0.217225,-0.004749,0.249955,0,0);}
.v0_c01140{vertical-align:0.000000px;}
.ls0_c01140{letter-spacing:0.000000px;}
.sc__c01140{text-shadow:none;}
.sc0_c01140{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__c01140{-webkit-text-stroke:0px transparent;}
.sc0_c01140{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01140{word-spacing:0.000000px;}
.fc0_c01140{color:transparent;}
.fse_c01140{font-size:12.002166px;}
.fs16_c01140{font-size:18.003969px;}
.fs11_c01140{font-size:24.004800px;}
.fs14_c01140{font-size:24.005807px;}
.fs2_c01140{font-size:42.000000px;}
.fs1_c01140{font-size:48.000000px;}
.fs18_c01140{font-size:48.003456px;}
.fs10_c01140{font-size:54.010799px;}
.fs5_c01140{font-size:60.000000px;}
.fs9_c01140{font-size:60.003630px;}
.fs21_c01140{font-size:65.976797px;}
.fs8_c01140{font-size:66.008447px;}
.fsd_c01140{font-size:66.011912px;}
.fs15_c01140{font-size:66.014551px;}
.fs1e_c01140{font-size:66.019005px;}
.fs1c_c01140{font-size:66.027747px;}
.fs1f_c01140{font-size:71.977316px;}
.fs19_c01140{font-size:72.005184px;}
.fs7_c01140{font-size:72.009215px;}
.fsa_c01140{font-size:72.011663px;}
.fsb_c01140{font-size:72.012995px;}
.fsc_c01140{font-size:72.014399px;}
.fs23_c01140{font-size:72.015874px;}
.fs17_c01140{font-size:72.017422px;}
.fs12_c01140{font-size:72.020733px;}
.fs1b_c01140{font-size:72.030270px;}
.fs22_c01140{font-size:77.987597px;}
.fs3_c01140{font-size:78.000000px;}
.fs1a_c01140{font-size:78.005616px;}
.fs6_c01140{font-size:78.007644px;}
.fsf_c01140{font-size:78.015598px;}
.fs13_c01140{font-size:78.018874px;}
.fs4_c01140{font-size:84.000000px;}
.fs1d_c01140{font-size:84.028387px;}
.fs20_c01140{font-size:84.032922px;}
.fs0_c01140{font-size:120.000000px;}
.y0_c01140{bottom:0.000000px;}
.y116_c01140{bottom:35.902793px;}
.y115_c01140{bottom:37.752126px;}
.y114_c01140{bottom:38.886000px;}
.y113_c01140{bottom:57.772937px;}
.y112_c01140{bottom:61.384155px;}
.y111_c01140{bottom:63.232230px;}
.y110_c01140{bottom:64.599068px;}
.y10f_c01140{bottom:70.027427px;}
.y10e_c01140{bottom:74.989431px;}
.y10d_c01140{bottom:78.244011px;}
.y105_c01140{bottom:78.283020px;}
.y10c_c01140{bottom:80.034460px;}
.y10b_c01140{bottom:85.863000px;}
.y104_c01140{bottom:93.657708px;}
.y103_c01140{bottom:100.632270px;}
.y102_c01140{bottom:101.849598px;}
.y101_c01140{bottom:102.794850px;}
.y100_c01140{bottom:104.361492px;}
.yff_c01140{bottom:105.283854px;}
.yfe_c01140{bottom:106.204116px;}
.yfd_c01140{bottom:108.098022px;}
.yfc_c01140{bottom:109.012866px;}
.yfb_c01140{bottom:109.927500px;}
.yfa_c01140{bottom:112.059000px;}
.yf9_c01140{bottom:128.585751px;}
.yf8_c01140{bottom:131.893496px;}
.yf7_c01140{bottom:135.964032px;}
.yf6_c01140{bottom:137.250411px;}
.yf5_c01140{bottom:141.320947px;}
.yf4_c01140{bottom:143.380442px;}
.yf3_c01140{bottom:147.436215px;}
.yf2_c01140{bottom:151.480500px;}
.yf1_c01140{bottom:179.347116px;}
.yf0_c01140{bottom:179.884020px;}
.yef_c01140{bottom:182.257500px;}
.y10a_c01140{bottom:199.773030px;}
.y109_c01140{bottom:201.405990px;}
.y108_c01140{bottom:203.797650px;}
.y107_c01140{bottom:204.991050px;}
.y106_c01140{bottom:207.376500px;}
.yee_c01140{bottom:208.572927px;}
.yed_c01140{bottom:209.739300px;}
.yec_c01140{bottom:211.766208px;}
.yeb_c01140{bottom:213.483690px;}
.yea_c01140{bottom:215.183037px;}
.ye9_c01140{bottom:216.058977px;}
.ye8_c01140{bottom:217.203198px;}
.ye7_c01140{bottom:219.247500px;}
.ye0_c01140{bottom:238.063326px;}
.ydf_c01140{bottom:239.665213px;}
.yde_c01140{bottom:242.272429px;}
.ydd_c01140{bottom:242.893218px;}
.ydc_c01140{bottom:245.430225px;}
.ydb_c01140{bottom:247.410171px;}
.yda_c01140{bottom:249.033243px;}
.yd9_c01140{bottom:250.573273px;}
.yd8_c01140{bottom:251.567509px;}
.yd7_c01140{bottom:252.539604px;}
.yd6_c01140{bottom:253.810500px;}
.yd5_c01140{bottom:273.086724px;}
.yd4_c01140{bottom:275.554560px;}
.yd3_c01140{bottom:277.459452px;}
.yd2_c01140{bottom:278.162946px;}
.yd1_c01140{bottom:279.336360px;}
.yd0_c01140{bottom:279.766416px;}
.ycf_c01140{bottom:281.435448px;}
.yce_c01140{bottom:283.024098px;}
.ycd_c01140{bottom:284.452974px;}
.ycc_c01140{bottom:286.545696px;}
.ycb_c01140{bottom:288.358884px;}
.yca_c01140{bottom:317.955036px;}
.yc9_c01140{bottom:318.595446px;}
.yc8_c01140{bottom:320.268708px;}
.yc7_c01140{bottom:321.090180px;}
.yc6_c01140{bottom:321.952572px;}
.yc5_c01140{bottom:323.230404px;}
.yc4_c01140{bottom:324.271872px;}
.yb_c01140{bottom:328.320000px;}
.yc3_c01140{bottom:350.963718px;}
.yc2_c01140{bottom:358.831500px;}
.yc1_c01140{bottom:381.179928px;}
.yc0_c01140{bottom:382.891671px;}
.ybf_c01140{bottom:383.635161px;}
.ybe_c01140{bottom:386.053203px;}
.ybd_c01140{bottom:388.298886px;}
.ybc_c01140{bottom:391.198860px;}
.ybb_c01140{bottom:391.922847px;}
.yba_c01140{bottom:393.396000px;}
.yb9_c01140{bottom:417.139554px;}
.yb8_c01140{bottom:417.722088px;}
.yb7_c01140{bottom:418.375630px;}
.yb6_c01140{bottom:419.492339px;}
.yb4_c01140{bottom:422.973510px;}
.yb3_c01140{bottom:423.483338px;}
.yb5_c01140{bottom:424.194876px;}
.yb2_c01140{bottom:425.361115px;}
.yb1_c01140{bottom:426.070054px;}
.yb0_c01140{bottom:427.465505px;}
.yaf_c01140{bottom:428.138786px;}
.yae_c01140{bottom:429.036000px;}
.yad_c01140{bottom:452.485230px;}
.yac_c01140{bottom:454.489530px;}
.yab_c01140{bottom:455.839920px;}
.yaa_c01140{bottom:458.697030px;}
.ya9_c01140{bottom:460.296180px;}
.ya8_c01140{bottom:462.937650px;}
.ya7_c01140{bottom:464.676000px;}
.ya_c01140{bottom:469.792500px;}
.ya6_c01140{bottom:487.627812px;}
.ya5_c01140{bottom:488.842182px;}
.ya2_c01140{bottom:488.887599px;}
.ya4_c01140{bottom:489.389157px;}
.ya1_c01140{bottom:489.606570px;}
.ya3_c01140{bottom:491.697477px;}
.ya0_c01140{bottom:492.755331px;}
.y9f_c01140{bottom:493.747839px;}
.y9e_c01140{bottom:495.429222px;}
.y9d_c01140{bottom:497.658405px;}
.y9_c01140{bottom:499.912500px;}
.y9c_c01140{bottom:500.586000px;}
.y9b_c01140{bottom:520.460724px;}
.y9a_c01140{bottom:523.443864px;}
.y99_c01140{bottom:525.622224px;}
.y98_c01140{bottom:526.132452px;}
.y97_c01140{bottom:529.031280px;}
.y96_c01140{bottom:530.904396px;}
.y95_c01140{bottom:533.303184px;}
.y94_c01140{bottom:534.385488px;}
.y93_c01140{bottom:536.497500px;}
.y92_c01140{bottom:564.579330px;}
.y91_c01140{bottom:565.743960px;}
.y90_c01140{bottom:567.834810px;}
.y8f_c01140{bottom:568.736670px;}
.y8e_c01140{bottom:570.432900px;}
.y8d_c01140{bottom:571.734810px;}
.y8c_c01140{bottom:573.484500px;}
.y8b_c01140{bottom:595.086143px;}
.y8a_c01140{bottom:597.126800px;}
.y89_c01140{bottom:598.027599px;}
.y88_c01140{bottom:598.835945px;}
.y87_c01140{bottom:601.204066px;}
.y86_c01140{bottom:603.071843px;}
.y85_c01140{bottom:604.795808px;}
.y84_c01140{bottom:606.694535px;}
.y83_c01140{bottom:607.305090px;}
.y8_c01140{bottom:607.366500px;}
.y82_c01140{bottom:608.572058px;}
.y81_c01140{bottom:641.049604px;}
.y80_c01140{bottom:641.716719px;}
.y7f_c01140{bottom:642.187424px;}
.y7e_c01140{bottom:643.118669px;}
.y7d_c01140{bottom:644.218889px;}
.y7c_c01140{bottom:666.912920px;}
.y7b_c01140{bottom:667.564800px;}
.y7a_c01140{bottom:669.032578px;}
.y79_c01140{bottom:669.669069px;}
.y78_c01140{bottom:670.320551px;}
.y77_c01140{bottom:671.978025px;}
.y76_c01140{bottom:672.850154px;}
.y75_c01140{bottom:674.538095px;}
.y74_c01140{bottom:675.179914px;}
.y73_c01140{bottom:678.514500px;}
.y72_c01140{bottom:699.946560px;}
.y71_c01140{bottom:700.626600px;}
.y70_c01140{bottom:702.177060px;}
.y6f_c01140{bottom:702.857640px;}
.y6e_c01140{bottom:705.082860px;}
.y6d_c01140{bottom:705.742290px;}
.y6c_c01140{bottom:706.842480px;}
.y6b_c01140{bottom:708.604680px;}
.y6a_c01140{bottom:709.479510px;}
.y69_c01140{bottom:710.819190px;}
.y7_c01140{bottom:712.264500px;}
.y68_c01140{bottom:712.806000px;}
.y67_c01140{bottom:738.813846px;}
.y66_c01140{bottom:739.380882px;}
.y65_c01140{bottom:739.785046px;}
.y64_c01140{bottom:740.352082px;}
.y62_c01140{bottom:743.800569px;}
.y61_c01140{bottom:744.426315px;}
.y63_c01140{bottom:744.660996px;}
.y60_c01140{bottom:745.903869px;}
.y5f_c01140{bottom:747.560945px;}
.y5e_c01140{bottom:749.254500px;}
.y5d_c01140{bottom:773.556840px;}
.y5c_c01140{bottom:777.266460px;}
.y5b_c01140{bottom:779.404260px;}
.y5a_c01140{bottom:781.938660px;}
.y59_c01140{bottom:782.659140px;}
.y6_c01140{bottom:784.086000px;}
.y58_c01140{bottom:785.158980px;}
.y57_c01140{bottom:812.321160px;}
.y56_c01140{bottom:812.980050px;}
.y55_c01140{bottom:814.319520px;}
.y54_c01140{bottom:815.880450px;}
.y53_c01140{bottom:817.630350px;}
.y52_c01140{bottom:818.294640px;}
.y51_c01140{bottom:819.369240px;}
.y50_c01140{bottom:820.264500px;}
.y4f_c01140{bottom:845.391420px;}
.y4e_c01140{bottom:845.805896px;}
.y4d_c01140{bottom:847.483890px;}
.y4c_c01140{bottom:848.978316px;}
.y4b_c01140{bottom:849.834969px;}
.y4a_c01140{bottom:851.933339px;}
.y49_c01140{bottom:852.342798px;}
.y48_c01140{bottom:853.816590px;}
.y47_c01140{bottom:855.904500px;}
.y46_c01140{bottom:884.941040px;}
.y45_c01140{bottom:885.649881px;}
.y44_c01140{bottom:886.270413px;}
.y43_c01140{bottom:886.778532px;}
.y42_c01140{bottom:888.721605px;}
.y41_c01140{bottom:889.418124px;}
.y40_c01140{bottom:890.187228px;}
.y3f_c01140{bottom:914.520980px;}
.y3e_c01140{bottom:916.030482px;}
.y3d_c01140{bottom:916.900416px;}
.y3c_c01140{bottom:917.513850px;}
.y3b_c01140{bottom:917.882270px;}
.y3a_c01140{bottom:919.196975px;}
.y39_c01140{bottom:919.827765px;}
.y38_c01140{bottom:921.912398px;}
.y37_c01140{bottom:922.998704px;}
.y36_c01140{bottom:924.245066px;}
.y35_c01140{bottom:926.374500px;}
.y34_c01140{bottom:950.969988px;}
.y33_c01140{bottom:952.588881px;}
.y32_c01140{bottom:953.754660px;}
.y31_c01140{bottom:954.382545px;}
.y30_c01140{bottom:956.555478px;}
.y2f_c01140{bottom:957.785112px;}
.y2e_c01140{bottom:958.582017px;}
.y2d_c01140{bottom:960.934500px;}
.y5_c01140{bottom:960.936000px;}
.y2a_c01140{bottom:993.596742px;}
.y2c_c01140{bottom:993.596781px;}
.y2b_c01140{bottom:993.597165px;}
.ye6_c01140{bottom:1020.105279px;}
.ye5_c01140{bottom:1022.713147px;}
.ye4_c01140{bottom:1023.353337px;}
.ye3_c01140{bottom:1024.629105px;}
.ye2_c01140{bottom:1026.550500px;}
.ye1_c01140{bottom:1026.673500px;}
.y29_c01140{bottom:1026.889911px;}
.y28_c01140{bottom:1027.867239px;}
.y27_c01140{bottom:1028.229595px;}
.y26_c01140{bottom:1028.603469px;}
.y25_c01140{bottom:1029.928469px;}
.y24_c01140{bottom:1031.131500px;}
.y4_c01140{bottom:1031.263500px;}
.y23_c01140{bottom:1061.393424px;}
.y22_c01140{bottom:1062.682056px;}
.y21_c01140{bottom:1063.114368px;}
.y20_c01140{bottom:1063.556688px;}
.y1f_c01140{bottom:1064.848140px;}
.y1e_c01140{bottom:1065.417528px;}
.y1d_c01140{bottom:1090.859880px;}
.y1c_c01140{bottom:1092.657672px;}
.y1b_c01140{bottom:1093.189032px;}
.y1a_c01140{bottom:1094.269320px;}
.y19_c01140{bottom:1094.796432px;}
.y18_c01140{bottom:1095.872184px;}
.y17_c01140{bottom:1096.399440px;}
.y16_c01140{bottom:1097.086224px;}
.y15_c01140{bottom:1098.520632px;}
.y14_c01140{bottom:1099.052064px;}
.y3_c01140{bottom:1099.572000px;}
.y13_c01140{bottom:1099.583280px;}
.y12_c01140{bottom:1101.333000px;}
.y11_c01140{bottom:1133.658165px;}
.y10_c01140{bottom:1134.438840px;}
.yf_c01140{bottom:1135.196898px;}
.ye_c01140{bottom:1135.995087px;}
.yd_c01140{bottom:1136.433000px;}
.yc_c01140{bottom:1186.258500px;}
.y2_c01140{bottom:1229.040000px;}
.y1_c01140{bottom:1236.052500px;}
.h10_c01140{height:12.002166px;}
.h18_c01140{height:18.003969px;}
.h13_c01140{height:24.004800px;}
.h16_c01140{height:24.005807px;}
.h4_c01140{height:42.000000px;}
.h3_c01140{height:48.000000px;}
.h1a_c01140{height:48.003456px;}
.h12_c01140{height:54.010799px;}
.h7_c01140{height:60.000000px;}
.hb_c01140{height:60.003630px;}
.h23_c01140{height:65.976797px;}
.ha_c01140{height:66.008447px;}
.hf_c01140{height:66.011912px;}
.h17_c01140{height:66.014551px;}
.h20_c01140{height:66.019005px;}
.h1e_c01140{height:66.027747px;}
.h21_c01140{height:71.977316px;}
.h1b_c01140{height:72.005184px;}
.h9_c01140{height:72.009215px;}
.hc_c01140{height:72.011663px;}
.hd_c01140{height:72.012995px;}
.he_c01140{height:72.014399px;}
.h25_c01140{height:72.015874px;}
.h19_c01140{height:72.017422px;}
.h14_c01140{height:72.020733px;}
.h1d_c01140{height:72.030270px;}
.h24_c01140{height:77.987597px;}
.h5_c01140{height:78.000000px;}
.h1c_c01140{height:78.005616px;}
.h8_c01140{height:78.007644px;}
.h11_c01140{height:78.015598px;}
.h15_c01140{height:78.018874px;}
.h6_c01140{height:84.000000px;}
.h1f_c01140{height:84.028387px;}
.h22_c01140{height:84.032922px;}
.h2_c01140{height:120.000000px;}
.h1_c01140{height:1258.500000px;}
.h0_c01140{height:1258.740000px;}
.w0_c01140{width:920.100000px;}
.w1_c01140{width:920.250000px;}
.x0_c01140{left:0.000000px;}
.xb3_c01140{left:76.332000px;}
.x5_c01140{left:92.070000px;}
.x4_c01140{left:94.230000px;}
.x3_c01140{left:96.390000px;}
.x1_c01140{left:97.740000px;}
.x7_c01140{left:102.330000px;}
.x6_c01140{left:103.410000px;}
.x8_c01140{left:132.300000px;}
.x2_c01140{left:143.370000px;}
.xa4_c01140{left:186.276000px;}
.x11_c01140{left:187.434000px;}
.x77_c01140{left:189.237000px;}
.x62_c01140{left:190.636488px;}
.x5a_c01140{left:192.258000px;}
.x2f_c01140{left:193.873500px;}
.x3b_c01140{left:195.763500px;}
.x21_c01140{left:197.761500px;}
.xb4_c01140{left:218.349340px;}
.xbb_c01140{left:240.810000px;}
.xac_c01140{left:242.127000px;}
.x6e_c01140{left:243.146700px;}
.x4e_c01140{left:246.145935px;}
.x4a_c01140{left:248.418000px;}
.x27_c01140{left:250.833089px;}
.x1c_c01140{left:252.280596px;}
.xc_c01140{left:254.421000px;}
.x63_c01140{left:257.318988px;}
.xb5_c01140{left:261.975171px;}
.xa5_c01140{left:264.903000px;}
.x95_c01140{left:275.332296px;}
.x80_c01140{left:277.267500px;}
.x70_c01140{left:278.553000px;}
.xd_c01140{left:285.700500px;}
.x8b_c01140{left:288.303000px;}
.x64_c01140{left:289.453488px;}
.x60_c01140{left:291.397311px;}
.x51_c01140{left:292.930500px;}
.x28_c01140{left:294.845418px;}
.x12_c01140{left:296.791500px;}
.x30_c01140{left:305.949000px;}
.x22_c01140{left:307.128000px;}
.x91_c01140{left:309.689064px;}
.x48_c01140{left:314.261850px;}
.xad_c01140{left:318.252000px;}
.x9e_c01140{left:319.960500px;}
.x85_c01140{left:321.018000px;}
.x78_c01140{left:322.309500px;}
.x71_c01140{left:323.649000px;}
.x2a_c01140{left:327.550500px;}
.x13_c01140{left:329.992500px;}
.x6b_c01140{left:334.011000px;}
.x37_c01140{left:337.915334px;}
.xb6_c01140{left:341.275791px;}
.xe_c01140{left:342.714000px;}
.x61_c01140{left:345.596259px;}
.x42_c01140{left:348.588000px;}
.xae_c01140{left:350.917500px;}
.x92_c01140{left:355.051248px;}
.x52_c01140{left:359.914500px;}
.x14_c01140{left:363.207000px;}
.xa8_c01140{left:364.225500px;}
.x5b_c01140{left:367.762500px;}
.x2b_c01140{left:371.823000px;}
.x96_c01140{left:374.965032px;}
.x43_c01140{left:381.802500px;}
.x3c_c01140{left:383.221500px;}
.x29_c01140{left:385.300358px;}
.x86_c01140{left:387.468000px;}
.x65_c01140{left:389.386488px;}
.x6f_c01140{left:391.064760px;}
.x1d_c01140{left:395.402460px;}
.xf_c01140{left:396.861000px;}
.x6c_c01140{left:399.106500px;}
.x5c_c01140{left:401.542500px;}
.x53_c01140{left:403.656000px;}
.x3d_c01140{left:404.772000px;}
.x9f_c01140{left:407.349000px;}
.x81_c01140{left:409.341000px;}
.x9_c01140{left:414.720000px;}
.x7d_c01140{left:418.699053px;}
.x8c_c01140{left:420.120000px;}
.x87_c01140{left:421.227000px;}
.x72_c01140{left:423.598500px;}
.x4b_c01140{left:424.767000px;}
.x23_c01140{left:427.582500px;}
.x1e_c01140{left:429.424092px;}
.xa_c01140{left:436.590000px;}
.x2c_c01140{left:440.136000px;}
.x97_c01140{left:443.030688px;}
.xaf_c01140{left:451.230000px;}
.x10_c01140{left:452.623500px;}
.x24_c01140{left:461.571000px;}
.x1f_c01140{left:462.632676px;}
.x88_c01140{left:466.660838px;}
.x44_c01140{left:469.297500px;}
.xa6_c01140{left:474.018000px;}
.xb_c01140{left:480.870000px;}
.x38_c01140{left:482.088806px;}
.x6d_c01140{left:483.918000px;}
.x93_c01140{left:486.309714px;}
.x4f_c01140{left:489.901789px;}
.x54_c01140{left:491.766000px;}
.x25_c01140{left:494.512500px;}
.x15_c01140{left:495.781500px;}
.x79_c01140{left:500.062500px;}
.x4c_c01140{left:502.533000px;}
.x50_c01140{left:510.146919px;}
.x3e_c01140{left:515.212500px;}
.x89_c01140{left:517.407766px;}
.x39_c01140{left:518.618202px;}
.x94_c01140{left:520.049388px;}
.x8d_c01140{left:522.196500px;}
.x16_c01140{left:528.735000px;}
.xa0_c01140{left:531.591000px;}
.x7e_c01140{left:532.863996px;}
.x4d_c01140{left:535.467000px;}
.x31_c01140{left:538.438500px;}
.x7a_c01140{left:545.176500px;}
.x45_c01140{left:547.344000px;}
.xa7_c01140{left:551.976000px;}
.x3a_c01140{left:560.348298px;}
.x20_c01140{left:561.739428px;}
.x32_c01140{left:571.638000px;}
.x8a_c01140{left:573.553069px;}
.x66_c01140{left:578.425488px;}
.x55_c01140{left:579.747000px;}
.x7f_c01140{left:581.445795px;}
.x26_c01140{left:583.360500px;}
.xb7_c01140{left:594.445867px;}
.x17_c01140{left:595.969500px;}
.x98_c01140{left:598.112430px;}
.xa9_c01140{left:607.115136px;}
.xa2_c01140{left:609.120000px;}
.x46_c01140{left:614.317500px;}
.x99_c01140{left:618.573216px;}
.x73_c01140{left:622.429500px;}
.x5d_c01140{left:623.518500px;}
.xb8_c01140{left:627.750030px;}
.x18_c01140{left:628.914000px;}
.x82_c01140{left:632.154000px;}
.x3f_c01140{left:638.953500px;}
.x33_c01140{left:640.833000px;}
.x74_c01140{left:643.689000px;}
.x47_c01140{left:647.262000px;}
.xb0_c01140{left:650.224500px;}
.x5e_c01140{left:657.807000px;}
.x2d_c01140{left:660.502500px;}
.x8e_c01140{left:665.902500px;}
.xb9_c01140{left:672.779955px;}
.x9a_c01140{left:674.476686px;}
.xa3_c01140{left:685.029000px;}
.x7b_c01140{left:688.302000px;}
.x56_c01140{left:691.008000px;}
.x34_c01140{left:692.509500px;}
.x19_c01140{left:696.432000px;}
.x83_c01140{left:699.673500px;}
.x67_c01140{left:703.063488px;}
.x9b_c01140{left:707.972568px;}
.xaa_c01140{left:717.019622px;}
.x7c_c01140{left:720.982500px;}
.x57_c01140{left:725.037000px;}
.x40_c01140{left:727.269000px;}
.x1a_c01140{left:729.642000px;}
.x75_c01140{left:734.454000px;}
.x35_c01140{left:738.295500px;}
.xb1_c01140{left:740.656088px;}
.x8f_c01140{left:743.709000px;}
.x68_c01140{left:745.607988px;}
.x49_c01140{left:747.693180px;}
.x41_c01140{left:749.083500px;}
.x2e_c01140{left:750.441000px;}
.xba_c01140{left:760.770376px;}
.x5f_c01140{left:768.558000px;}
.xa1_c01140{left:785.622000px;}
.x69_c01140{left:793.018488px;}
.x9c_c01140{left:798.703776px;}
.x84_c01140{left:799.888500px;}
.x58_c01140{left:802.560000px;}
.xab_c01140{left:806.328723px;}
.x36_c01140{left:817.743000px;}
.x59_c01140{left:836.562000px;}
.x1b_c01140{left:842.004000px;}
.xb2_c01140{left:852.339292px;}
.x76_c01140{left:858.751500px;}
.x90_c01140{left:899.026500px;}
.x6a_c01140{left:900.421488px;}
.x9d_c01140{left:916.219086px;}
@media print{
.v0_c01140{vertical-align:0.000000pt;}
.ls0_c01140{letter-spacing:0.000000pt;}
.ws0_c01140{word-spacing:0.000000pt;}
.fse_c01140{font-size:10.668592pt;}
.fs16_c01140{font-size:16.003528pt;}
.fs11_c01140{font-size:21.337600pt;}
.fs14_c01140{font-size:21.338495pt;}
.fs2_c01140{font-size:37.333333pt;}
.fs1_c01140{font-size:42.666667pt;}
.fs18_c01140{font-size:42.669739pt;}
.fs10_c01140{font-size:48.009599pt;}
.fs5_c01140{font-size:53.333333pt;}
.fs9_c01140{font-size:53.336560pt;}
.fs21_c01140{font-size:58.646042pt;}
.fs8_c01140{font-size:58.674176pt;}
.fsd_c01140{font-size:58.677255pt;}
.fs15_c01140{font-size:58.679601pt;}
.fs1e_c01140{font-size:58.683560pt;}
.fs1c_c01140{font-size:58.691331pt;}
.fs1f_c01140{font-size:63.979837pt;}
.fs19_c01140{font-size:64.004608pt;}
.fs7_c01140{font-size:64.008191pt;}
.fsa_c01140{font-size:64.010367pt;}
.fsb_c01140{font-size:64.011551pt;}
.fsc_c01140{font-size:64.012799pt;}
.fs23_c01140{font-size:64.014110pt;}
.fs17_c01140{font-size:64.015486pt;}
.fs12_c01140{font-size:64.018429pt;}
.fs1b_c01140{font-size:64.026906pt;}
.fs22_c01140{font-size:69.322308pt;}
.fs3_c01140{font-size:69.333333pt;}
.fs1a_c01140{font-size:69.338325pt;}
.fs6_c01140{font-size:69.340128pt;}
.fsf_c01140{font-size:69.347199pt;}
.fs13_c01140{font-size:69.350110pt;}
.fs4_c01140{font-size:74.666667pt;}
.fs1d_c01140{font-size:74.691900pt;}
.fs20_c01140{font-size:74.695930pt;}
.fs0_c01140{font-size:106.666667pt;}
.y0_c01140{bottom:0.000000pt;}
.y116_c01140{bottom:31.913593pt;}
.y115_c01140{bottom:33.557445pt;}
.y114_c01140{bottom:34.565333pt;}
.y113_c01140{bottom:51.353721pt;}
.y112_c01140{bottom:54.563693pt;}
.y111_c01140{bottom:56.206427pt;}
.y110_c01140{bottom:57.421393pt;}
.y10f_c01140{bottom:62.246601pt;}
.y10e_c01140{bottom:66.657272pt;}
.y10d_c01140{bottom:69.550232pt;}
.y105_c01140{bottom:69.584907pt;}
.y10c_c01140{bottom:71.141743pt;}
.y10b_c01140{bottom:76.322667pt;}
.y104_c01140{bottom:83.251296pt;}
.y103_c01140{bottom:89.450907pt;}
.y102_c01140{bottom:90.532976pt;}
.y101_c01140{bottom:91.373200pt;}
.y100_c01140{bottom:92.765771pt;}
.yff_c01140{bottom:93.585648pt;}
.yfe_c01140{bottom:94.403659pt;}
.yfd_c01140{bottom:96.087131pt;}
.yfc_c01140{bottom:96.900325pt;}
.yfb_c01140{bottom:97.713333pt;}
.yfa_c01140{bottom:99.608000pt;}
.yf9_c01140{bottom:114.298445pt;}
.yf8_c01140{bottom:117.238663pt;}
.yf7_c01140{bottom:120.856917pt;}
.yf6_c01140{bottom:122.000365pt;}
.yf5_c01140{bottom:125.618620pt;}
.yf4_c01140{bottom:127.449281pt;}
.yf3_c01140{bottom:131.054413pt;}
.yf2_c01140{bottom:134.649333pt;}
.yf1_c01140{bottom:159.419659pt;}
.yf0_c01140{bottom:159.896907pt;}
.yef_c01140{bottom:162.006667pt;}
.y10a_c01140{bottom:177.576027pt;}
.y109_c01140{bottom:179.027547pt;}
.y108_c01140{bottom:181.153467pt;}
.y107_c01140{bottom:182.214267pt;}
.y106_c01140{bottom:184.334667pt;}
.yee_c01140{bottom:185.398157pt;}
.yed_c01140{bottom:186.434933pt;}
.yec_c01140{bottom:188.236629pt;}
.yeb_c01140{bottom:189.763280pt;}
.yea_c01140{bottom:191.273811pt;}
.ye9_c01140{bottom:192.052424pt;}
.ye8_c01140{bottom:193.069509pt;}
.ye7_c01140{bottom:194.886667pt;}
.ye0_c01140{bottom:211.611845pt;}
.ydf_c01140{bottom:213.035745pt;}
.yde_c01140{bottom:215.353271pt;}
.ydd_c01140{bottom:215.905083pt;}
.ydc_c01140{bottom:218.160200pt;}
.ydb_c01140{bottom:219.920152pt;}
.yda_c01140{bottom:221.362883pt;}
.yd9_c01140{bottom:222.731799pt;}
.yd8_c01140{bottom:223.615564pt;}
.yd7_c01140{bottom:224.479648pt;}
.yd6_c01140{bottom:225.609333pt;}
.yd5_c01140{bottom:242.743755pt;}
.yd4_c01140{bottom:244.937387pt;}
.yd3_c01140{bottom:246.630624pt;}
.yd2_c01140{bottom:247.255952pt;}
.yd1_c01140{bottom:248.298987pt;}
.yd0_c01140{bottom:248.681259pt;}
.ycf_c01140{bottom:250.164843pt;}
.yce_c01140{bottom:251.576976pt;}
.ycd_c01140{bottom:252.847088pt;}
.ycc_c01140{bottom:254.707285pt;}
.ycb_c01140{bottom:256.319008pt;}
.yca_c01140{bottom:282.626699pt;}
.yc9_c01140{bottom:283.195952pt;}
.yc8_c01140{bottom:284.683296pt;}
.yc7_c01140{bottom:285.413493pt;}
.yc6_c01140{bottom:286.180064pt;}
.yc5_c01140{bottom:287.315915pt;}
.yc4_c01140{bottom:288.241664pt;}
.yb_c01140{bottom:291.840000pt;}
.yc3_c01140{bottom:311.967749pt;}
.yc2_c01140{bottom:318.961333pt;}
.yc1_c01140{bottom:338.826603pt;}
.yc0_c01140{bottom:340.348152pt;}
.ybf_c01140{bottom:341.009032pt;}
.ybe_c01140{bottom:343.158403pt;}
.ybd_c01140{bottom:345.154565pt;}
.ybc_c01140{bottom:347.732320pt;}
.ybb_c01140{bottom:348.375864pt;}
.yba_c01140{bottom:349.685333pt;}
.yb9_c01140{bottom:370.790715pt;}
.yb8_c01140{bottom:371.308523pt;}
.yb7_c01140{bottom:371.889449pt;}
.yb6_c01140{bottom:372.882079pt;}
.yb4_c01140{bottom:375.976453pt;}
.yb3_c01140{bottom:376.429633pt;}
.yb5_c01140{bottom:377.062112pt;}
.yb2_c01140{bottom:378.098769pt;}
.yb1_c01140{bottom:378.728937pt;}
.yb0_c01140{bottom:379.969337pt;}
.yaf_c01140{bottom:380.567809pt;}
.yae_c01140{bottom:381.365333pt;}
.yad_c01140{bottom:402.209093pt;}
.yac_c01140{bottom:403.990693pt;}
.yab_c01140{bottom:405.191040pt;}
.yaa_c01140{bottom:407.730693pt;}
.ya9_c01140{bottom:409.152160pt;}
.ya8_c01140{bottom:411.500133pt;}
.ya7_c01140{bottom:413.045333pt;}
.ya_c01140{bottom:417.593333pt;}
.ya6_c01140{bottom:433.446944pt;}
.ya5_c01140{bottom:434.526384pt;}
.ya2_c01140{bottom:434.566755pt;}
.ya4_c01140{bottom:435.012584pt;}
.ya1_c01140{bottom:435.205840pt;}
.ya3_c01140{bottom:437.064424pt;}
.ya0_c01140{bottom:438.004739pt;}
.y9f_c01140{bottom:438.886968pt;}
.y9e_c01140{bottom:440.381531pt;}
.y9d_c01140{bottom:442.363027pt;}
.y9_c01140{bottom:444.366667pt;}
.y9c_c01140{bottom:444.965333pt;}
.y9b_c01140{bottom:462.631755pt;}
.y9a_c01140{bottom:465.283435pt;}
.y99_c01140{bottom:467.219755pt;}
.y98_c01140{bottom:467.673291pt;}
.y97_c01140{bottom:470.250027pt;}
.y96_c01140{bottom:471.915019pt;}
.y95_c01140{bottom:474.047275pt;}
.y94_c01140{bottom:475.009323pt;}
.y93_c01140{bottom:476.886667pt;}
.y92_c01140{bottom:501.848293pt;}
.y91_c01140{bottom:502.883520pt;}
.y90_c01140{bottom:504.742053pt;}
.y8f_c01140{bottom:505.543707pt;}
.y8e_c01140{bottom:507.051467pt;}
.y8d_c01140{bottom:508.208720pt;}
.y8c_c01140{bottom:509.764000pt;}
.y8b_c01140{bottom:528.965460pt;}
.y8a_c01140{bottom:530.779377pt;}
.y89_c01140{bottom:531.580088pt;}
.y88_c01140{bottom:532.298617pt;}
.y87_c01140{bottom:534.403615pt;}
.y86_c01140{bottom:536.063860pt;}
.y85_c01140{bottom:537.596273pt;}
.y84_c01140{bottom:539.284031pt;}
.y83_c01140{bottom:539.826747pt;}
.y8_c01140{bottom:539.881333pt;}
.y82_c01140{bottom:540.952940pt;}
.y81_c01140{bottom:569.821871pt;}
.y80_c01140{bottom:570.414861pt;}
.y7f_c01140{bottom:570.833265pt;}
.y7e_c01140{bottom:571.661039pt;}
.y7d_c01140{bottom:572.639012pt;}
.y7c_c01140{bottom:592.811484pt;}
.y7b_c01140{bottom:593.390933pt;}
.y7a_c01140{bottom:594.695625pt;}
.y79_c01140{bottom:595.261395pt;}
.y78_c01140{bottom:595.840489pt;}
.y77_c01140{bottom:597.313800pt;}
.y76_c01140{bottom:598.089025pt;}
.y75_c01140{bottom:599.589417pt;}
.y74_c01140{bottom:600.159924pt;}
.y73_c01140{bottom:603.124000pt;}
.y72_c01140{bottom:622.174720pt;}
.y71_c01140{bottom:622.779200pt;}
.y70_c01140{bottom:624.157387pt;}
.y6f_c01140{bottom:624.762347pt;}
.y6e_c01140{bottom:626.740320pt;}
.y6d_c01140{bottom:627.326480pt;}
.y6c_c01140{bottom:628.304427pt;}
.y6b_c01140{bottom:629.870827pt;}
.y6a_c01140{bottom:630.648453pt;}
.y69_c01140{bottom:631.839280pt;}
.y7_c01140{bottom:633.124000pt;}
.y68_c01140{bottom:633.605333pt;}
.y67_c01140{bottom:656.723419pt;}
.y66_c01140{bottom:657.227451pt;}
.y65_c01140{bottom:657.586708pt;}
.y64_c01140{bottom:658.090740pt;}
.y62_c01140{bottom:661.156061pt;}
.y61_c01140{bottom:661.712280pt;}
.y63_c01140{bottom:661.920885pt;}
.y60_c01140{bottom:663.025661pt;}
.y5f_c01140{bottom:664.498617pt;}
.y5e_c01140{bottom:666.004000pt;}
.y5d_c01140{bottom:687.606080pt;}
.y5c_c01140{bottom:690.903520pt;}
.y5b_c01140{bottom:692.803787pt;}
.y5a_c01140{bottom:695.056587pt;}
.y59_c01140{bottom:695.697013pt;}
.y6_c01140{bottom:696.965333pt;}
.y58_c01140{bottom:697.919093pt;}
.y57_c01140{bottom:722.063253pt;}
.y56_c01140{bottom:722.648933pt;}
.y55_c01140{bottom:723.839573pt;}
.y54_c01140{bottom:725.227067pt;}
.y53_c01140{bottom:726.782533pt;}
.y52_c01140{bottom:727.373013pt;}
.y51_c01140{bottom:728.328213pt;}
.y50_c01140{bottom:729.124000pt;}
.y4f_c01140{bottom:751.459040pt;}
.y4e_c01140{bottom:751.827463pt;}
.y4d_c01140{bottom:753.319013pt;}
.y4c_c01140{bottom:754.647392pt;}
.y4b_c01140{bottom:755.408861pt;}
.y4a_c01140{bottom:757.274079pt;}
.y49_c01140{bottom:757.638043pt;}
.y48_c01140{bottom:758.948080pt;}
.y47_c01140{bottom:760.804000pt;}
.y46_c01140{bottom:786.614257pt;}
.y45_c01140{bottom:787.244339pt;}
.y44_c01140{bottom:787.795923pt;}
.y43_c01140{bottom:788.247584pt;}
.y42_c01140{bottom:789.974760pt;}
.y41_c01140{bottom:790.593888pt;}
.y40_c01140{bottom:791.277536pt;}
.y3f_c01140{bottom:812.907537pt;}
.y3e_c01140{bottom:814.249317pt;}
.y3d_c01140{bottom:815.022592pt;}
.y3c_c01140{bottom:815.567867pt;}
.y3b_c01140{bottom:815.895351pt;}
.y3a_c01140{bottom:817.063977pt;}
.y39_c01140{bottom:817.624680pt;}
.y38_c01140{bottom:819.477687pt;}
.y37_c01140{bottom:820.443292pt;}
.y36_c01140{bottom:821.551169pt;}
.y35_c01140{bottom:823.444000pt;}
.y34_c01140{bottom:845.306656pt;}
.y33_c01140{bottom:846.745672pt;}
.y32_c01140{bottom:847.781920pt;}
.y31_c01140{bottom:848.340040pt;}
.y30_c01140{bottom:850.271536pt;}
.y2f_c01140{bottom:851.364544pt;}
.y2e_c01140{bottom:852.072904pt;}
.y2d_c01140{bottom:854.164000pt;}
.y5_c01140{bottom:854.165333pt;}
.y2a_c01140{bottom:883.197104pt;}
.y2c_c01140{bottom:883.197139pt;}
.y2b_c01140{bottom:883.197480pt;}
.ye6_c01140{bottom:906.760248pt;}
.ye5_c01140{bottom:909.078353pt;}
.ye4_c01140{bottom:909.647411pt;}
.ye3_c01140{bottom:910.781427pt;}
.ye2_c01140{bottom:912.489333pt;}
.ye1_c01140{bottom:912.598667pt;}
.y29_c01140{bottom:912.791032pt;}
.y28_c01140{bottom:913.659768pt;}
.y27_c01140{bottom:913.981863pt;}
.y26_c01140{bottom:914.314195pt;}
.y25_c01140{bottom:915.491972pt;}
.y24_c01140{bottom:916.561333pt;}
.y4_c01140{bottom:916.678667pt;}
.y23_c01140{bottom:943.460821pt;}
.y22_c01140{bottom:944.606272pt;}
.y21_c01140{bottom:944.990549pt;}
.y20_c01140{bottom:945.383723pt;}
.y1f_c01140{bottom:946.531680pt;}
.y1e_c01140{bottom:947.037803pt;}
.y1d_c01140{bottom:969.653227pt;}
.y1c_c01140{bottom:971.251264pt;}
.y1b_c01140{bottom:971.723584pt;}
.y1a_c01140{bottom:972.683840pt;}
.y19_c01140{bottom:973.152384pt;}
.y18_c01140{bottom:974.108608pt;}
.y17_c01140{bottom:974.577280pt;}
.y16_c01140{bottom:975.187755pt;}
.y15_c01140{bottom:976.462784pt;}
.y14_c01140{bottom:976.935168pt;}
.y3_c01140{bottom:977.397333pt;}
.y13_c01140{bottom:977.407360pt;}
.y12_c01140{bottom:978.962667pt;}
.y11_c01140{bottom:1007.696147pt;}
.y10_c01140{bottom:1008.390080pt;}
.yf_c01140{bottom:1009.063909pt;}
.ye_c01140{bottom:1009.773411pt;}
.yd_c01140{bottom:1010.162667pt;}
.yc_c01140{bottom:1054.452000pt;}
.y2_c01140{bottom:1092.480000pt;}
.y1_c01140{bottom:1098.713333pt;}
.h10_c01140{height:10.668592pt;}
.h18_c01140{height:16.003528pt;}
.h13_c01140{height:21.337600pt;}
.h16_c01140{height:21.338495pt;}
.h4_c01140{height:37.333333pt;}
.h3_c01140{height:42.666667pt;}
.h1a_c01140{height:42.669739pt;}
.h12_c01140{height:48.009599pt;}
.h7_c01140{height:53.333333pt;}
.hb_c01140{height:53.336560pt;}
.h23_c01140{height:58.646042pt;}
.ha_c01140{height:58.674176pt;}
.hf_c01140{height:58.677255pt;}
.h17_c01140{height:58.679601pt;}
.h20_c01140{height:58.683560pt;}
.h1e_c01140{height:58.691331pt;}
.h21_c01140{height:63.979837pt;}
.h1b_c01140{height:64.004608pt;}
.h9_c01140{height:64.008191pt;}
.hc_c01140{height:64.010367pt;}
.hd_c01140{height:64.011551pt;}
.he_c01140{height:64.012799pt;}
.h25_c01140{height:64.014110pt;}
.h19_c01140{height:64.015486pt;}
.h14_c01140{height:64.018429pt;}
.h1d_c01140{height:64.026906pt;}
.h24_c01140{height:69.322308pt;}
.h5_c01140{height:69.333333pt;}
.h1c_c01140{height:69.338325pt;}
.h8_c01140{height:69.340128pt;}
.h11_c01140{height:69.347199pt;}
.h15_c01140{height:69.350110pt;}
.h6_c01140{height:74.666667pt;}
.h1f_c01140{height:74.691900pt;}
.h22_c01140{height:74.695930pt;}
.h2_c01140{height:106.666667pt;}
.h1_c01140{height:1118.666667pt;}
.h0_c01140{height:1118.880000pt;}
.w0_c01140{width:817.866667pt;}
.w1_c01140{width:818.000000pt;}
.x0_c01140{left:0.000000pt;}
.xb3_c01140{left:67.850667pt;}
.x5_c01140{left:81.840000pt;}
.x4_c01140{left:83.760000pt;}
.x3_c01140{left:85.680000pt;}
.x1_c01140{left:86.880000pt;}
.x7_c01140{left:90.960000pt;}
.x6_c01140{left:91.920000pt;}
.x8_c01140{left:117.600000pt;}
.x2_c01140{left:127.440000pt;}
.xa4_c01140{left:165.578667pt;}
.x11_c01140{left:166.608000pt;}
.x77_c01140{left:168.210667pt;}
.x62_c01140{left:169.454656pt;}
.x5a_c01140{left:170.896000pt;}
.x2f_c01140{left:172.332000pt;}
.x3b_c01140{left:174.012000pt;}
.x21_c01140{left:175.788000pt;}
.xb4_c01140{left:194.088303pt;}
.xbb_c01140{left:214.053333pt;}
.xac_c01140{left:215.224000pt;}
.x6e_c01140{left:216.130400pt;}
.x4e_c01140{left:218.796387pt;}
.x4a_c01140{left:220.816000pt;}
.x27_c01140{left:222.962745pt;}
.x1c_c01140{left:224.249419pt;}
.xc_c01140{left:226.152000pt;}
.x63_c01140{left:228.727989pt;}
.xb5_c01140{left:232.866819pt;}
.xa5_c01140{left:235.469333pt;}
.x95_c01140{left:244.739819pt;}
.x80_c01140{left:246.460000pt;}
.x70_c01140{left:247.602667pt;}
.xd_c01140{left:253.956000pt;}
.x8b_c01140{left:256.269333pt;}
.x64_c01140{left:257.291989pt;}
.x60_c01140{left:259.019832pt;}
.x51_c01140{left:260.382667pt;}
.x28_c01140{left:262.084816pt;}
.x12_c01140{left:263.814667pt;}
.x30_c01140{left:271.954667pt;}
.x22_c01140{left:273.002667pt;}
.x91_c01140{left:275.279168pt;}
.x48_c01140{left:279.343867pt;}
.xad_c01140{left:282.890667pt;}
.x9e_c01140{left:284.409333pt;}
.x85_c01140{left:285.349333pt;}
.x78_c01140{left:286.497333pt;}
.x71_c01140{left:287.688000pt;}
.x2a_c01140{left:291.156000pt;}
.x13_c01140{left:293.326667pt;}
.x6b_c01140{left:296.898667pt;}
.x37_c01140{left:300.369185pt;}
.xb6_c01140{left:303.356259pt;}
.xe_c01140{left:304.634667pt;}
.x61_c01140{left:307.196675pt;}
.x42_c01140{left:309.856000pt;}
.xae_c01140{left:311.926667pt;}
.x92_c01140{left:315.601109pt;}
.x52_c01140{left:319.924000pt;}
.x14_c01140{left:322.850667pt;}
.xa8_c01140{left:323.756000pt;}
.x5b_c01140{left:326.900000pt;}
.x2b_c01140{left:330.509333pt;}
.x96_c01140{left:333.302251pt;}
.x43_c01140{left:339.380000pt;}
.x3c_c01140{left:340.641333pt;}
.x29_c01140{left:342.489207pt;}
.x86_c01140{left:344.416000pt;}
.x65_c01140{left:346.121323pt;}
.x6f_c01140{left:347.613120pt;}
.x1d_c01140{left:351.468853pt;}
.xf_c01140{left:352.765333pt;}
.x6c_c01140{left:354.761333pt;}
.x5c_c01140{left:356.926667pt;}
.x53_c01140{left:358.805333pt;}
.x3d_c01140{left:359.797333pt;}
.x9f_c01140{left:362.088000pt;}
.x81_c01140{left:363.858667pt;}
.x9_c01140{left:368.640000pt;}
.x7d_c01140{left:372.176936pt;}
.x8c_c01140{left:373.440000pt;}
.x87_c01140{left:374.424000pt;}
.x72_c01140{left:376.532000pt;}
.x4b_c01140{left:377.570667pt;}
.x23_c01140{left:380.073333pt;}
.x1e_c01140{left:381.710304pt;}
.xa_c01140{left:388.080000pt;}
.x2c_c01140{left:391.232000pt;}
.x97_c01140{left:393.805056pt;}
.xaf_c01140{left:401.093333pt;}
.x10_c01140{left:402.332000pt;}
.x24_c01140{left:410.285333pt;}
.x1f_c01140{left:411.229045pt;}
.x88_c01140{left:414.809633pt;}
.x44_c01140{left:417.153333pt;}
.xa6_c01140{left:421.349333pt;}
.xb_c01140{left:427.440000pt;}
.x38_c01140{left:428.523383pt;}
.x6d_c01140{left:430.149333pt;}
.x93_c01140{left:432.275301pt;}
.x4f_c01140{left:435.468257pt;}
.x54_c01140{left:437.125333pt;}
.x25_c01140{left:439.566667pt;}
.x15_c01140{left:440.694667pt;}
.x79_c01140{left:444.500000pt;}
.x4c_c01140{left:446.696000pt;}
.x50_c01140{left:453.463928pt;}
.x3e_c01140{left:457.966667pt;}
.x89_c01140{left:459.918015pt;}
.x39_c01140{left:460.993957pt;}
.x94_c01140{left:462.266123pt;}
.x8d_c01140{left:464.174667pt;}
.x16_c01140{left:469.986667pt;}
.xa0_c01140{left:472.525333pt;}
.x7e_c01140{left:473.656885pt;}
.x4d_c01140{left:475.970667pt;}
.x31_c01140{left:478.612000pt;}
.x7a_c01140{left:484.601333pt;}
.x45_c01140{left:486.528000pt;}
.xa7_c01140{left:490.645333pt;}
.x3a_c01140{left:498.087376pt;}
.x20_c01140{left:499.323936pt;}
.x32_c01140{left:508.122667pt;}
.x8a_c01140{left:509.824951pt;}
.x66_c01140{left:514.155989pt;}
.x55_c01140{left:515.330667pt;}
.x7f_c01140{left:516.840707pt;}
.x26_c01140{left:518.542667pt;}
.xb7_c01140{left:528.396327pt;}
.x17_c01140{left:529.750667pt;}
.x98_c01140{left:531.655493pt;}
.xa9_c01140{left:539.657899pt;}
.xa2_c01140{left:541.440000pt;}
.x46_c01140{left:546.060000pt;}
.x99_c01140{left:549.842859pt;}
.x73_c01140{left:553.270667pt;}
.x5d_c01140{left:554.238667pt;}
.xb8_c01140{left:558.000027pt;}
.x18_c01140{left:559.034667pt;}
.x82_c01140{left:561.914667pt;}
.x3f_c01140{left:567.958667pt;}
.x33_c01140{left:569.629333pt;}
.x74_c01140{left:572.168000pt;}
.x47_c01140{left:575.344000pt;}
.xb0_c01140{left:577.977333pt;}
.x5e_c01140{left:584.717333pt;}
.x2d_c01140{left:587.113333pt;}
.x8e_c01140{left:591.913333pt;}
.xb9_c01140{left:598.026627pt;}
.x9a_c01140{left:599.534832pt;}
.xa3_c01140{left:608.914667pt;}
.x7b_c01140{left:611.824000pt;}
.x56_c01140{left:614.229333pt;}
.x34_c01140{left:615.564000pt;}
.x19_c01140{left:619.050667pt;}
.x83_c01140{left:621.932000pt;}
.x67_c01140{left:624.945323pt;}
.x9b_c01140{left:629.308949pt;}
.xaa_c01140{left:637.350775pt;}
.x7c_c01140{left:640.873333pt;}
.x57_c01140{left:644.477333pt;}
.x40_c01140{left:646.461333pt;}
.x1a_c01140{left:648.570667pt;}
.x75_c01140{left:652.848000pt;}
.x35_c01140{left:656.262667pt;}
.xb1_c01140{left:658.360967pt;}
.x8f_c01140{left:661.074667pt;}
.x68_c01140{left:662.762656pt;}
.x49_c01140{left:664.616160pt;}
.x41_c01140{left:665.852000pt;}
.x2e_c01140{left:667.058667pt;}
.xba_c01140{left:676.240335pt;}
.x5f_c01140{left:683.162667pt;}
.xa1_c01140{left:698.330667pt;}
.x69_c01140{left:704.905323pt;}
.x9c_c01140{left:709.958912pt;}
.x84_c01140{left:711.012000pt;}
.x58_c01140{left:713.386667pt;}
.xab_c01140{left:716.736643pt;}
.x36_c01140{left:726.882667pt;}
.x59_c01140{left:743.610667pt;}
.x1b_c01140{left:748.448000pt;}
.xb2_c01140{left:757.634927pt;}
.x76_c01140{left:763.334667pt;}
.x90_c01140{left:799.134667pt;}
.x6a_c01140{left:800.374656pt;}
.x9d_c01140{left:814.416965pt;}
}





/* 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_c01141 {
    display:none;
  }
  .loading-indicator_c01141.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01141 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_c01141 { 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_c01141" -> "#page-container .classname_c01141")
 */
.pf_c01141 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01141 { /* 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_c01141.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01141 { /* 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_c01141 { /* 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_c01141 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01141 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01141 {overflow:visible;}
  }
}
.c_c01141 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01141 { /* 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_c01141:after { /* webkit #35443 */
  content: '';
}
.t_c01141:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01141 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 */
}
.__c01141 { /* 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_c01141 { /* info for Javascript */
  display:none;
}
.l_c01141 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01141 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01141 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01141: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_c01141 {
    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_c01141.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01141.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_c01141 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01141{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01141;src:url('chunks/assets/font_944db81570d4ec07251d83b9.woff2')format("woff");}.ff1_c01141{font-family:ff1_c01141;line-height:1.000000;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;}
.m3_c01141{transform:matrix(0.124198,-0.002360,0.004749,0.249955,0,0);-ms-transform:matrix(0.124198,-0.002360,0.004749,0.249955,0,0);-webkit-transform:matrix(0.124198,-0.002360,0.004749,0.249955,0,0);}
.m2_c01141{transform:matrix(0.138195,-0.002626,0.004749,0.249955,0,0);-ms-transform:matrix(0.138195,-0.002626,0.004749,0.249955,0,0);-webkit-transform:matrix(0.138195,-0.002626,0.004749,0.249955,0,0);}
.m0_c01141{transform:matrix(0.152597,-0.002899,0.004749,0.249955,0,0);-ms-transform:matrix(0.152597,-0.002899,0.004749,0.249955,0,0);-webkit-transform:matrix(0.152597,-0.002899,0.004749,0.249955,0,0);}
.m1_c01141{transform:matrix(0.155597,-0.002956,0.004749,0.249955,0,0);-ms-transform:matrix(0.155597,-0.002956,0.004749,0.249955,0,0);-webkit-transform:matrix(0.155597,-0.002956,0.004749,0.249955,0,0);}
.m4_c01141{transform:matrix(0.263805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263805,0.000000,0.000000,0.250000,0,0);}
.v0_c01141{vertical-align:0.000000px;}
.ls0_c01141{letter-spacing:0.000000px;}
.sc__c01141{text-shadow:none;}
.sc0_c01141{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__c01141{-webkit-text-stroke:0px transparent;}
.sc0_c01141{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01141{word-spacing:0.000000px;}
.fc0_c01141{color:transparent;}
.fs1_c01141{font-size:42.000000px;}
.fs0_c01141{font-size:144.025990px;}
.y0_c01141{bottom:0.000000px;}
.y1_c01141{bottom:524.079000px;}
.y2_c01141{bottom:524.432172px;}
.y3_c01141{bottom:526.380147px;}
.y4_c01141{bottom:527.391555px;}
.y5_c01141{bottom:542.160000px;}
.h3_c01141{height:42.000000px;}
.h2_c01141{height:144.025990px;}
.h1_c01141{height:1258.500000px;}
.h0_c01141{height:1258.740000px;}
.w0_c01141{width:920.100000px;}
.w1_c01141{width:920.250000px;}
.x0_c01141{left:0.000000px;}
.x1_c01141{left:480.129000px;}
.x2_c01141{left:498.717000px;}
.x3_c01141{left:601.242000px;}
.x4_c01141{left:654.474000px;}
.x5_c01141{left:798.120000px;}
@media print{
.v0_c01141{vertical-align:0.000000pt;}
.ls0_c01141{letter-spacing:0.000000pt;}
.ws0_c01141{word-spacing:0.000000pt;}
.fs1_c01141{font-size:37.333333pt;}
.fs0_c01141{font-size:128.023102pt;}
.y0_c01141{bottom:0.000000pt;}
.y1_c01141{bottom:465.848000pt;}
.y2_c01141{bottom:466.161931pt;}
.y3_c01141{bottom:467.893464pt;}
.y4_c01141{bottom:468.792493pt;}
.y5_c01141{bottom:481.920000pt;}
.h3_c01141{height:37.333333pt;}
.h2_c01141{height:128.023102pt;}
.h1_c01141{height:1118.666667pt;}
.h0_c01141{height:1118.880000pt;}
.w0_c01141{width:817.866667pt;}
.w1_c01141{width:818.000000pt;}
.x0_c01141{left:0.000000pt;}
.x1_c01141{left:426.781333pt;}
.x2_c01141{left:443.304000pt;}
.x3_c01141{left:534.437333pt;}
.x4_c01141{left:581.754667pt;}
.x5_c01141{left:709.440000pt;}
}





/* 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_c01142 {
    display:none;
  }
  .loading-indicator_c01142.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01142 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_c01142 { 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_c01142" -> "#page-container .classname_c01142")
 */
.pf_c01142 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01142 { /* 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_c01142.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01142 { /* 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_c01142 { /* 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_c01142 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01142 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01142 {overflow:visible;}
  }
}
.c_c01142 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01142 { /* 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_c01142:after { /* webkit #35443 */
  content: '';
}
.t_c01142:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01142 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 */
}
.__c01142 { /* 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_c01142 { /* info for Javascript */
  display:none;
}
.l_c01142 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01142 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01142 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01142: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_c01142 {
    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_c01142.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01142.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_c01142 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01142{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01142;src:url('chunks/assets/font_c605e72f209fc835e906f064.woff2')format("woff");}.ff1_c01142{font-family:ff1_c01142;line-height:1.000000;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;}
.m41_c01142{transform:matrix(0.024000,0.000696,-0.007247,0.249895,0,0);-ms-transform:matrix(0.024000,0.000696,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.024000,0.000696,-0.007247,0.249895,0,0);}
.me9_c01142{transform:matrix(0.052396,0.002780,-0.013245,0.249649,0,0);-ms-transform:matrix(0.052396,0.002780,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.052396,0.002780,-0.013245,0.249649,0,0);}
.m8a_c01142{transform:matrix(0.088635,0.003638,-0.010252,0.249790,0,0);-ms-transform:matrix(0.088635,0.003638,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.088635,0.003638,-0.010252,0.249790,0,0);}
.mb_c01142{transform:matrix(0.133550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133550,0.000000,0.000000,0.250000,0,0);}
.me_c01142{transform:matrix(0.139744,0.005316,-0.009503,0.249819,0,0);-ms-transform:matrix(0.139744,0.005316,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.139744,0.005316,-0.009503,0.249819,0,0);}
.md8_c01142{transform:matrix(0.150956,0.007858,-0.012995,0.249662,0,0);-ms-transform:matrix(0.150956,0.007858,-0.012995,0.249662,0,0);-webkit-transform:matrix(0.150956,0.007858,-0.012995,0.249662,0,0);}
.m7a_c01142{transform:matrix(0.159042,0.005572,-0.008753,0.249847,0,0);-ms-transform:matrix(0.159042,0.005572,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.159042,0.005572,-0.008753,0.249847,0,0);}
.m4d_c01142{transform:matrix(0.159383,0.004622,-0.007247,0.249895,0,0);-ms-transform:matrix(0.159383,0.004622,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.159383,0.004622,-0.007247,0.249895,0,0);}
.md4_c01142{transform:matrix(0.167823,0.008736,-0.012995,0.249662,0,0);-ms-transform:matrix(0.167823,0.008736,-0.012995,0.249662,0,0);-webkit-transform:matrix(0.167823,0.008736,-0.012995,0.249662,0,0);}
.m112_c01142{transform:matrix(0.169907,0.009184,-0.013494,0.249636,0,0);-ms-transform:matrix(0.169907,0.009184,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.169907,0.009184,-0.013494,0.249636,0,0);}
.m20_c01142{transform:matrix(0.173516,0.005558,-0.008004,0.249872,0,0);-ms-transform:matrix(0.173516,0.005558,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.173516,0.005558,-0.008004,0.249872,0,0);}
.m9_c01142{transform:matrix(0.180430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180430,0.000000,0.000000,0.250000,0,0);}
.m100_c01142{transform:matrix(0.182325,0.008213,-0.011250,0.249747,0,0);-ms-transform:matrix(0.182325,0.008213,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.182325,0.008213,-0.011250,0.249747,0,0);}
.m105_c01142{transform:matrix(0.192844,0.008687,-0.011250,0.249747,0,0);-ms-transform:matrix(0.192844,0.008687,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.192844,0.008687,-0.011250,0.249747,0,0);}
.m2f_c01142{transform:matrix(0.194794,0.005065,-0.006498,0.249916,0,0);-ms-transform:matrix(0.194794,0.005065,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.194794,0.005065,-0.006498,0.249916,0,0);}
.me8_c01142{transform:matrix(0.195066,0.010349,-0.013245,0.249649,0,0);-ms-transform:matrix(0.195066,0.010349,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.195066,0.010349,-0.013245,0.249649,0,0);}
.m101_c01142{transform:matrix(0.195722,0.008816,-0.011250,0.249747,0,0);-ms-transform:matrix(0.195722,0.008816,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.195722,0.008816,-0.011250,0.249747,0,0);}
.m1f_c01142{transform:matrix(0.198183,0.006348,-0.008004,0.249872,0,0);-ms-transform:matrix(0.198183,0.006348,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.198183,0.006348,-0.008004,0.249872,0,0);}
.m106_c01142{transform:matrix(0.202280,0.009112,-0.011250,0.249747,0,0);-ms-transform:matrix(0.202280,0.009112,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.202280,0.009112,-0.011250,0.249747,0,0);}
.m0_c01142{transform:matrix(0.202806,0.008526,-0.010501,0.249779,0,0);-ms-transform:matrix(0.202806,0.008526,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.202806,0.008526,-0.010501,0.249779,0,0);}
.mec_c01142{transform:matrix(0.203519,0.010797,-0.013245,0.249649,0,0);-ms-transform:matrix(0.203519,0.010797,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.203519,0.010797,-0.013245,0.249649,0,0);}
.mf8_c01142{transform:matrix(0.204058,0.007353,-0.009003,0.249838,0,0);-ms-transform:matrix(0.204058,0.007353,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.204058,0.007353,-0.009003,0.249838,0,0);}
.m119_c01142{transform:matrix(0.207440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207440,0.000000,0.000000,0.250000,0,0);}
.m7e_c01142{transform:matrix(0.209721,0.007348,-0.008753,0.249847,0,0);-ms-transform:matrix(0.209721,0.007348,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.209721,0.007348,-0.008753,0.249847,0,0);}
.m4c_c01142{transform:matrix(0.210282,0.006098,-0.007247,0.249895,0,0);-ms-transform:matrix(0.210282,0.006098,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.210282,0.006098,-0.007247,0.249895,0,0);}
.m103_c01142{transform:matrix(0.211870,0.009544,-0.011250,0.249747,0,0);-ms-transform:matrix(0.211870,0.009544,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.211870,0.009544,-0.011250,0.249747,0,0);}
.mfa_c01142{transform:matrix(0.212012,0.007640,-0.009003,0.249838,0,0);-ms-transform:matrix(0.212012,0.007640,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.212012,0.007640,-0.009003,0.249838,0,0);}
.m104_c01142{transform:matrix(0.212829,0.009587,-0.011250,0.249747,0,0);-ms-transform:matrix(0.212829,0.009587,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.212829,0.009587,-0.011250,0.249747,0,0);}
.mda_c01142{transform:matrix(0.213401,0.011108,-0.012995,0.249662,0,0);-ms-transform:matrix(0.213401,0.011108,-0.012995,0.249662,0,0);-webkit-transform:matrix(0.213401,0.011108,-0.012995,0.249662,0,0);}
.mff_c01142{transform:matrix(0.213918,0.009636,-0.011250,0.249747,0,0);-ms-transform:matrix(0.213918,0.009636,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.213918,0.009636,-0.011250,0.249747,0,0);}
.mba_c01142{transform:matrix(0.214140,0.008145,-0.009503,0.249819,0,0);-ms-transform:matrix(0.214140,0.008145,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.214140,0.008145,-0.009503,0.249819,0,0);}
.m115_c01142{transform:matrix(0.214765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214765,0.000000,0.000000,0.250000,0,0);}
.m102_c01142{transform:matrix(0.214787,0.009675,-0.011250,0.249747,0,0);-ms-transform:matrix(0.214787,0.009675,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.214787,0.009675,-0.011250,0.249747,0,0);}
.mde_c01142{transform:matrix(0.215418,0.011213,-0.012995,0.249662,0,0);-ms-transform:matrix(0.215418,0.011213,-0.012995,0.249662,0,0);-webkit-transform:matrix(0.215418,0.011213,-0.012995,0.249662,0,0);}
.mfe_c01142{transform:matrix(0.216910,0.009771,-0.011250,0.249747,0,0);-ms-transform:matrix(0.216910,0.009771,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.216910,0.009771,-0.011250,0.249747,0,0);}
.m2d_c01142{transform:matrix(0.220181,0.005725,-0.006498,0.249916,0,0);-ms-transform:matrix(0.220181,0.005725,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.220181,0.005725,-0.006498,0.249916,0,0);}
.m91_c01142{transform:matrix(0.223357,0.008272,-0.009253,0.249829,0,0);-ms-transform:matrix(0.223357,0.008272,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.223357,0.008272,-0.009253,0.249829,0,0);}
.m111_c01142{transform:matrix(0.223673,0.012090,-0.013494,0.249636,0,0);-ms-transform:matrix(0.223673,0.012090,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.223673,0.012090,-0.013494,0.249636,0,0);}
.mee_c01142{transform:matrix(0.224582,0.007868,-0.008753,0.249847,0,0);-ms-transform:matrix(0.224582,0.007868,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.224582,0.007868,-0.008753,0.249847,0,0);}
.m31_c01142{transform:matrix(0.224674,0.005842,-0.006498,0.249916,0,0);-ms-transform:matrix(0.224674,0.005842,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.224674,0.005842,-0.006498,0.249916,0,0);}
.maf_c01142{transform:matrix(0.225673,0.008810,-0.009752,0.249810,0,0);-ms-transform:matrix(0.225673,0.008810,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.225673,0.008810,-0.009752,0.249810,0,0);}
.mca_c01142{transform:matrix(0.226240,0.009512,-0.010501,0.249779,0,0);-ms-transform:matrix(0.226240,0.009512,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.226240,0.009512,-0.010501,0.249779,0,0);}
.m2e_c01142{transform:matrix(0.226593,0.005891,-0.006498,0.249916,0,0);-ms-transform:matrix(0.226593,0.005891,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.226593,0.005891,-0.006498,0.249916,0,0);}
.m93_c01142{transform:matrix(0.226595,0.008392,-0.009253,0.249829,0,0);-ms-transform:matrix(0.226595,0.008392,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.226595,0.008392,-0.009253,0.249829,0,0);}
.m97_c01142{transform:matrix(0.226809,0.008400,-0.009253,0.249829,0,0);-ms-transform:matrix(0.226809,0.008400,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.226809,0.008400,-0.009253,0.249829,0,0);}
.md6_c01142{transform:matrix(0.227033,0.011818,-0.012995,0.249662,0,0);-ms-transform:matrix(0.227033,0.011818,-0.012995,0.249662,0,0);-webkit-transform:matrix(0.227033,0.011818,-0.012995,0.249662,0,0);}
.md2_c01142{transform:matrix(0.228352,0.008229,-0.009003,0.249838,0,0);-ms-transform:matrix(0.228352,0.008229,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.228352,0.008229,-0.009003,0.249838,0,0);}
.mf_c01142{transform:matrix(0.228644,0.005487,-0.005998,0.249928,0,0);-ms-transform:matrix(0.228644,0.005487,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.228644,0.005487,-0.005998,0.249928,0,0);}
.m46_c01142{transform:matrix(0.228944,0.006639,-0.007247,0.249895,0,0);-ms-transform:matrix(0.228944,0.006639,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.228944,0.006639,-0.007247,0.249895,0,0);}
.ma1_c01142{transform:matrix(0.229681,0.008277,-0.009003,0.249838,0,0);-ms-transform:matrix(0.229681,0.008277,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.229681,0.008277,-0.009003,0.249838,0,0);}
.mc8_c01142{transform:matrix(0.230297,0.009682,-0.010501,0.249779,0,0);-ms-transform:matrix(0.230297,0.009682,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.230297,0.009682,-0.010501,0.249779,0,0);}
.mcd_c01142{transform:matrix(0.230691,0.009699,-0.010501,0.249779,0,0);-ms-transform:matrix(0.230691,0.009699,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.230691,0.009699,-0.010501,0.249779,0,0);}
.m17_c01142{transform:matrix(0.230777,0.007392,-0.008004,0.249872,0,0);-ms-transform:matrix(0.230777,0.007392,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.230777,0.007392,-0.008004,0.249872,0,0);}
.meb_c01142{transform:matrix(0.232553,0.012338,-0.013245,0.249649,0,0);-ms-transform:matrix(0.232553,0.012338,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.232553,0.012338,-0.013245,0.249649,0,0);}
.m118_c01142{transform:matrix(0.233740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233740,0.000000,0.000000,0.250000,0,0);}
.m30_c01142{transform:matrix(0.233751,0.006078,-0.006498,0.249916,0,0);-ms-transform:matrix(0.233751,0.006078,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.233751,0.006078,-0.006498,0.249916,0,0);}
.m37_c01142{transform:matrix(0.233902,0.006783,-0.007247,0.249895,0,0);-ms-transform:matrix(0.233902,0.006783,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.233902,0.006783,-0.007247,0.249895,0,0);}
.m3e_c01142{transform:matrix(0.236546,0.006860,-0.007247,0.249895,0,0);-ms-transform:matrix(0.236546,0.006860,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.236546,0.006860,-0.007247,0.249895,0,0);}
.m1d_c01142{transform:matrix(0.237063,0.007594,-0.008004,0.249872,0,0);-ms-transform:matrix(0.237063,0.007594,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.237063,0.007594,-0.008004,0.249872,0,0);}
.mbb_c01142{transform:matrix(0.237973,0.009052,-0.009503,0.249819,0,0);-ms-transform:matrix(0.237973,0.009052,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.237973,0.009052,-0.009503,0.249819,0,0);}
.m29_c01142{transform:matrix(0.238023,0.007624,-0.008004,0.249872,0,0);-ms-transform:matrix(0.238023,0.007624,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.238023,0.007624,-0.008004,0.249872,0,0);}
.m2b_c01142{transform:matrix(0.238413,0.007637,-0.008004,0.249872,0,0);-ms-transform:matrix(0.238413,0.007637,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.238413,0.007637,-0.008004,0.249872,0,0);}
.m4b_c01142{transform:matrix(0.238615,0.006920,-0.007247,0.249895,0,0);-ms-transform:matrix(0.238615,0.006920,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.238615,0.006920,-0.007247,0.249895,0,0);}
.m27_c01142{transform:matrix(0.239172,0.007661,-0.008004,0.249872,0,0);-ms-transform:matrix(0.239172,0.007661,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.239172,0.007661,-0.008004,0.249872,0,0);}
.m19_c01142{transform:matrix(0.239707,0.007678,-0.008004,0.249872,0,0);-ms-transform:matrix(0.239707,0.007678,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.239707,0.007678,-0.008004,0.249872,0,0);}
.m13_c01142{transform:matrix(0.239711,0.005753,-0.005998,0.249928,0,0);-ms-transform:matrix(0.239711,0.005753,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.239711,0.005753,-0.005998,0.249928,0,0);}
.ma4_c01142{transform:matrix(0.239909,0.008645,-0.009003,0.249838,0,0);-ms-transform:matrix(0.239909,0.008645,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.239909,0.008645,-0.009003,0.249838,0,0);}
.ma_c01142{transform:matrix(0.240175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240175,0.000000,0.000000,0.250000,0,0);}
.m8_c01142{transform:matrix(0.240980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240980,0.000000,0.000000,0.250000,0,0);}
.m82_c01142{transform:matrix(0.241322,0.008455,-0.008753,0.249847,0,0);-ms-transform:matrix(0.241322,0.008455,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.241322,0.008455,-0.008753,0.249847,0,0);}
.m3a_c01142{transform:matrix(0.241399,0.007001,-0.007247,0.249895,0,0);-ms-transform:matrix(0.241399,0.007001,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.241399,0.007001,-0.007247,0.249895,0,0);}
.mb0_c01142{transform:matrix(0.241811,0.009440,-0.009752,0.249810,0,0);-ms-transform:matrix(0.241811,0.009440,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.241811,0.009440,-0.009752,0.249810,0,0);}
.m4a_c01142{transform:matrix(0.241893,0.007015,-0.007247,0.249895,0,0);-ms-transform:matrix(0.241893,0.007015,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.241893,0.007015,-0.007247,0.249895,0,0);}
.m43_c01142{transform:matrix(0.241913,0.007015,-0.007247,0.249895,0,0);-ms-transform:matrix(0.241913,0.007015,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.241913,0.007015,-0.007247,0.249895,0,0);}
.m109_c01142{transform:matrix(0.242604,0.010928,-0.011250,0.249747,0,0);-ms-transform:matrix(0.242604,0.010928,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.242604,0.010928,-0.011250,0.249747,0,0);}
.m2c_c01142{transform:matrix(0.243115,0.007787,-0.008004,0.249872,0,0);-ms-transform:matrix(0.243115,0.007787,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.243115,0.007787,-0.008004,0.249872,0,0);}
.me7_c01142{transform:matrix(0.243273,0.012906,-0.013245,0.249649,0,0);-ms-transform:matrix(0.243273,0.012906,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.243273,0.012906,-0.013245,0.249649,0,0);}
.m6_c01142{transform:matrix(0.243685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243685,0.000000,0.000000,0.250000,0,0);}
.m113_c01142{transform:matrix(0.243739,0.013175,-0.013494,0.249636,0,0);-ms-transform:matrix(0.243739,0.013175,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.243739,0.013175,-0.013494,0.249636,0,0);}
.m15_c01142{transform:matrix(0.244155,0.005860,-0.005998,0.249928,0,0);-ms-transform:matrix(0.244155,0.005860,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.244155,0.005860,-0.005998,0.249928,0,0);}
.mb3_c01142{transform:matrix(0.246392,0.009619,-0.009752,0.249810,0,0);-ms-transform:matrix(0.246392,0.009619,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.246392,0.009619,-0.009752,0.249810,0,0);}
.m35_c01142{transform:matrix(0.246516,0.007149,-0.007247,0.249895,0,0);-ms-transform:matrix(0.246516,0.007149,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.246516,0.007149,-0.007247,0.249895,0,0);}
.mb9_c01142{transform:matrix(0.246762,0.009386,-0.009503,0.249819,0,0);-ms-transform:matrix(0.246762,0.009386,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.246762,0.009386,-0.009503,0.249819,0,0);}
.mc4_c01142{transform:matrix(0.246976,0.009394,-0.009503,0.249819,0,0);-ms-transform:matrix(0.246976,0.009394,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.246976,0.009394,-0.009503,0.249819,0,0);}
.mbc_c01142{transform:matrix(0.247446,0.009412,-0.009503,0.249819,0,0);-ms-transform:matrix(0.247446,0.009412,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.247446,0.009412,-0.009503,0.249819,0,0);}
.m1a_c01142{transform:matrix(0.248323,0.007954,-0.008004,0.249872,0,0);-ms-transform:matrix(0.248323,0.007954,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.248323,0.007954,-0.008004,0.249872,0,0);}
.mad_c01142{transform:matrix(0.248366,0.009696,-0.009752,0.249810,0,0);-ms-transform:matrix(0.248366,0.009696,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.248366,0.009696,-0.009752,0.249810,0,0);}
.m1e_c01142{transform:matrix(0.248797,0.007969,-0.008004,0.249872,0,0);-ms-transform:matrix(0.248797,0.007969,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.248797,0.007969,-0.008004,0.249872,0,0);}
.m61_c01142{transform:matrix(0.248853,0.008968,-0.009003,0.249838,0,0);-ms-transform:matrix(0.248853,0.008968,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.248853,0.008968,-0.009003,0.249838,0,0);}
.m11_c01142{transform:matrix(0.249718,0.005993,-0.005998,0.249928,0,0);-ms-transform:matrix(0.249718,0.005993,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.249718,0.005993,-0.005998,0.249928,0,0);}
.m14_c01142{transform:matrix(0.249923,0.005998,-0.005998,0.249928,0,0);-ms-transform:matrix(0.249923,0.005998,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.249923,0.005998,-0.005998,0.249928,0,0);}
.mf0_c01142{transform:matrix(0.250476,0.008775,-0.008753,0.249847,0,0);-ms-transform:matrix(0.250476,0.008775,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.250476,0.008775,-0.008753,0.249847,0,0);}
.me3_c01142{transform:matrix(0.250544,0.009530,-0.009503,0.249819,0,0);-ms-transform:matrix(0.250544,0.009530,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.250544,0.009530,-0.009503,0.249819,0,0);}
.m52_c01142{transform:matrix(0.250740,0.008534,-0.008504,0.249855,0,0);-ms-transform:matrix(0.250740,0.008534,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.250740,0.008534,-0.008504,0.249855,0,0);}
.m7f_c01142{transform:matrix(0.250771,0.008786,-0.008753,0.249847,0,0);-ms-transform:matrix(0.250771,0.008786,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.250771,0.008786,-0.008753,0.249847,0,0);}
.m7b_c01142{transform:matrix(0.251061,0.008796,-0.008753,0.249847,0,0);-ms-transform:matrix(0.251061,0.008796,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.251061,0.008796,-0.008753,0.249847,0,0);}
.m95_c01142{transform:matrix(0.251523,0.009316,-0.009253,0.249829,0,0);-ms-transform:matrix(0.251523,0.009316,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.251523,0.009316,-0.009253,0.249829,0,0);}
.m69_c01142{transform:matrix(0.251772,0.007553,-0.007497,0.249888,0,0);-ms-transform:matrix(0.251772,0.007553,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.251772,0.007553,-0.007497,0.249888,0,0);}
.mdd_c01142{transform:matrix(0.251909,0.013112,-0.012995,0.249662,0,0);-ms-transform:matrix(0.251909,0.013112,-0.012995,0.249662,0,0);-webkit-transform:matrix(0.251909,0.013112,-0.012995,0.249662,0,0);}
.mf9_c01142{transform:matrix(0.252241,0.009090,-0.009003,0.249838,0,0);-ms-transform:matrix(0.252241,0.009090,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.252241,0.009090,-0.009003,0.249838,0,0);}
.m89_c01142{transform:matrix(0.252467,0.010362,-0.010252,0.249790,0,0);-ms-transform:matrix(0.252467,0.010362,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.252467,0.010362,-0.010252,0.249790,0,0);}
.mb2_c01142{transform:matrix(0.252648,0.009863,-0.009752,0.249810,0,0);-ms-transform:matrix(0.252648,0.009863,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.252648,0.009863,-0.009752,0.249810,0,0);}
.m98_c01142{transform:matrix(0.252932,0.009368,-0.009253,0.249829,0,0);-ms-transform:matrix(0.252932,0.009368,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.252932,0.009368,-0.009253,0.249829,0,0);}
.m83_c01142{transform:matrix(0.252960,0.008862,-0.008753,0.249847,0,0);-ms-transform:matrix(0.252960,0.008862,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.252960,0.008862,-0.008753,0.249847,0,0);}
.ma3_c01142{transform:matrix(0.252996,0.009117,-0.009003,0.249838,0,0);-ms-transform:matrix(0.252996,0.009117,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.252996,0.009117,-0.009003,0.249838,0,0);}
.m10c_c01142{transform:matrix(0.253143,0.011403,-0.011250,0.249747,0,0);-ms-transform:matrix(0.253143,0.011403,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.253143,0.011403,-0.011250,0.249747,0,0);}
.m80_c01142{transform:matrix(0.253544,0.008883,-0.008753,0.249847,0,0);-ms-transform:matrix(0.253544,0.008883,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.253544,0.008883,-0.008753,0.249847,0,0);}
.md9_c01142{transform:matrix(0.253597,0.013200,-0.012995,0.249662,0,0);-ms-transform:matrix(0.253597,0.013200,-0.012995,0.249662,0,0);-webkit-transform:matrix(0.253597,0.013200,-0.012995,0.249662,0,0);}
.m12_c01142{transform:matrix(0.253877,0.006093,-0.005998,0.249928,0,0);-ms-transform:matrix(0.253877,0.006093,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.253877,0.006093,-0.005998,0.249928,0,0);}
.mdb_c01142{transform:matrix(0.254765,0.013261,-0.012995,0.249662,0,0);-ms-transform:matrix(0.254765,0.013261,-0.012995,0.249662,0,0);-webkit-transform:matrix(0.254765,0.013261,-0.012995,0.249662,0,0);}
.mb4_c01142{transform:matrix(0.255865,0.009989,-0.009752,0.249810,0,0);-ms-transform:matrix(0.255865,0.009989,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.255865,0.009989,-0.009752,0.249810,0,0);}
.m10_c01142{transform:matrix(0.256296,0.006151,-0.005998,0.249928,0,0);-ms-transform:matrix(0.256296,0.006151,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.256296,0.006151,-0.005998,0.249928,0,0);}
.m7d_c01142{transform:matrix(0.256513,0.008987,-0.008753,0.249847,0,0);-ms-transform:matrix(0.256513,0.008987,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.256513,0.008987,-0.008753,0.249847,0,0);}
.m44_c01142{transform:matrix(0.256562,0.007440,-0.007247,0.249895,0,0);-ms-transform:matrix(0.256562,0.007440,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.256562,0.007440,-0.007247,0.249895,0,0);}
.md1_c01142{transform:matrix(0.256713,0.009251,-0.009003,0.249838,0,0);-ms-transform:matrix(0.256713,0.009251,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.256713,0.009251,-0.009003,0.249838,0,0);}
.me0_c01142{transform:matrix(0.256729,0.009765,-0.009503,0.249819,0,0);-ms-transform:matrix(0.256729,0.009765,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.256729,0.009765,-0.009503,0.249819,0,0);}
.ma0_c01142{transform:matrix(0.256943,0.009259,-0.009003,0.249838,0,0);-ms-transform:matrix(0.256943,0.009259,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.256943,0.009259,-0.009003,0.249838,0,0);}
.m6f_c01142{transform:matrix(0.257074,0.007712,-0.007497,0.249888,0,0);-ms-transform:matrix(0.257074,0.007712,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.257074,0.007712,-0.007497,0.249888,0,0);}
.m58_c01142{transform:matrix(0.257791,0.008774,-0.008504,0.249855,0,0);-ms-transform:matrix(0.257791,0.008774,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.257791,0.008774,-0.008504,0.249855,0,0);}
.m3f_c01142{transform:matrix(0.258416,0.007494,-0.007247,0.249895,0,0);-ms-transform:matrix(0.258416,0.007494,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.258416,0.007494,-0.007247,0.249895,0,0);}
.m2a_c01142{transform:matrix(0.258887,0.008293,-0.008004,0.249872,0,0);-ms-transform:matrix(0.258887,0.008293,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.258887,0.008293,-0.008004,0.249872,0,0);}
.mf1_c01142{transform:matrix(0.259651,0.009097,-0.008753,0.249847,0,0);-ms-transform:matrix(0.259651,0.009097,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.259651,0.009097,-0.008753,0.249847,0,0);}
.m81_c01142{transform:matrix(0.260925,0.009142,-0.008753,0.249847,0,0);-ms-transform:matrix(0.260925,0.009142,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.260925,0.009142,-0.008753,0.249847,0,0);}
.mf7_c01142{transform:matrix(0.261205,0.009413,-0.009003,0.249838,0,0);-ms-transform:matrix(0.261205,0.009413,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.261205,0.009413,-0.009003,0.249838,0,0);}
.mfc_c01142{transform:matrix(0.261510,0.009424,-0.009003,0.249838,0,0);-ms-transform:matrix(0.261510,0.009424,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.261510,0.009424,-0.009003,0.249838,0,0);}
.ma7_c01142{transform:matrix(0.261796,0.009958,-0.009503,0.249819,0,0);-ms-transform:matrix(0.261796,0.009958,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.261796,0.009958,-0.009503,0.249819,0,0);}
.mf2_c01142{transform:matrix(0.261884,0.009175,-0.008753,0.249847,0,0);-ms-transform:matrix(0.261884,0.009175,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.261884,0.009175,-0.008753,0.249847,0,0);}
.m48_c01142{transform:matrix(0.262200,0.007604,-0.007247,0.249895,0,0);-ms-transform:matrix(0.262200,0.007604,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.262200,0.007604,-0.007247,0.249895,0,0);}
.me5_c01142{transform:matrix(0.262325,0.009978,-0.009503,0.249819,0,0);-ms-transform:matrix(0.262325,0.009978,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.262325,0.009978,-0.009503,0.249819,0,0);}
.m6a_c01142{transform:matrix(0.262397,0.007872,-0.007497,0.249888,0,0);-ms-transform:matrix(0.262397,0.007872,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.262397,0.007872,-0.007497,0.249888,0,0);}
.m3c_c01142{transform:matrix(0.262415,0.007610,-0.007247,0.249895,0,0);-ms-transform:matrix(0.262415,0.007610,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.262415,0.007610,-0.007247,0.249895,0,0);}
.mfb_c01142{transform:matrix(0.262555,0.009461,-0.009003,0.249838,0,0);-ms-transform:matrix(0.262555,0.009461,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.262555,0.009461,-0.009003,0.249838,0,0);}
.m9f_c01142{transform:matrix(0.262704,0.009467,-0.009003,0.249838,0,0);-ms-transform:matrix(0.262704,0.009467,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.262704,0.009467,-0.009003,0.249838,0,0);}
.m16_c01142{transform:matrix(0.263020,0.008425,-0.008004,0.249872,0,0);-ms-transform:matrix(0.263020,0.008425,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.263020,0.008425,-0.008004,0.249872,0,0);}
.m26_c01142{transform:matrix(0.263210,0.008431,-0.008004,0.249872,0,0);-ms-transform:matrix(0.263210,0.008431,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.263210,0.008431,-0.008004,0.249872,0,0);}
.m10e_c01142{transform:matrix(0.263610,0.014249,-0.013494,0.249636,0,0);-ms-transform:matrix(0.263610,0.014249,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.263610,0.014249,-0.013494,0.249636,0,0);}
.mb6_c01142{transform:matrix(0.263994,0.010306,-0.009752,0.249810,0,0);-ms-transform:matrix(0.263994,0.010306,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.263994,0.010306,-0.009752,0.249810,0,0);}
.med_c01142{transform:matrix(0.264203,0.009256,-0.008753,0.249847,0,0);-ms-transform:matrix(0.264203,0.009256,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.264203,0.009256,-0.008753,0.249847,0,0);}
.mbe_c01142{transform:matrix(0.264988,0.010080,-0.009503,0.249819,0,0);-ms-transform:matrix(0.264988,0.010080,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.264988,0.010080,-0.009503,0.249819,0,0);}
.m10b_c01142{transform:matrix(0.265371,0.011954,-0.011250,0.249747,0,0);-ms-transform:matrix(0.265371,0.011954,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.265371,0.011954,-0.011250,0.249747,0,0);}
.mcb_c01142{transform:matrix(0.266794,0.011217,-0.010501,0.249779,0,0);-ms-transform:matrix(0.266794,0.011217,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.266794,0.011217,-0.010501,0.249779,0,0);}
.m114_c01142{transform:matrix(0.266955,0.014430,-0.013494,0.249636,0,0);-ms-transform:matrix(0.266955,0.014430,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.266955,0.014430,-0.013494,0.249636,0,0);}
.mb7_c01142{transform:matrix(0.267481,0.010442,-0.009752,0.249810,0,0);-ms-transform:matrix(0.267481,0.010442,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.267481,0.010442,-0.009752,0.249810,0,0);}
.m40_c01142{transform:matrix(0.267617,0.007761,-0.007247,0.249895,0,0);-ms-transform:matrix(0.267617,0.007761,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.267617,0.007761,-0.007247,0.249895,0,0);}
.m18_c01142{transform:matrix(0.267713,0.008575,-0.008004,0.249872,0,0);-ms-transform:matrix(0.267713,0.008575,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.267713,0.008575,-0.008004,0.249872,0,0);}
.m90_c01142{transform:matrix(0.267846,0.009920,-0.009253,0.249829,0,0);-ms-transform:matrix(0.267846,0.009920,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.267846,0.009920,-0.009253,0.249829,0,0);}
.m6b_c01142{transform:matrix(0.268284,0.008049,-0.007497,0.249888,0,0);-ms-transform:matrix(0.268284,0.008049,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.268284,0.008049,-0.007497,0.249888,0,0);}
.md7_c01142{transform:matrix(0.268292,0.013965,-0.012995,0.249662,0,0);-ms-transform:matrix(0.268292,0.013965,-0.012995,0.249662,0,0);-webkit-transform:matrix(0.268292,0.013965,-0.012995,0.249662,0,0);}
.md3_c01142{transform:matrix(0.268971,0.014000,-0.012995,0.249662,0,0);-ms-transform:matrix(0.268971,0.014000,-0.012995,0.249662,0,0);-webkit-transform:matrix(0.268971,0.014000,-0.012995,0.249662,0,0);}
.m1c_c01142{transform:matrix(0.269057,0.008618,-0.008004,0.249872,0,0);-ms-transform:matrix(0.269057,0.008618,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.269057,0.008618,-0.008004,0.249872,0,0);}
.m64_c01142{transform:matrix(0.269110,0.009698,-0.009003,0.249838,0,0);-ms-transform:matrix(0.269110,0.009698,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.269110,0.009698,-0.009003,0.249838,0,0);}
.m11a_c01142{transform:matrix(0.270415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270415,0.000000,0.000000,0.250000,0,0);}
.m3d_c01142{transform:matrix(0.270876,0.007855,-0.007247,0.249895,0,0);-ms-transform:matrix(0.270876,0.007855,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.270876,0.007855,-0.007247,0.249895,0,0);}
.mdc_c01142{transform:matrix(0.271153,0.014114,-0.012995,0.249662,0,0);-ms-transform:matrix(0.271153,0.014114,-0.012995,0.249662,0,0);-webkit-transform:matrix(0.271153,0.014114,-0.012995,0.249662,0,0);}
.m94_c01142{transform:matrix(0.271329,0.010049,-0.009253,0.249829,0,0);-ms-transform:matrix(0.271329,0.010049,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.271329,0.010049,-0.009253,0.249829,0,0);}
.mae_c01142{transform:matrix(0.271333,0.010593,-0.009752,0.249810,0,0);-ms-transform:matrix(0.271333,0.010593,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.271333,0.010593,-0.009752,0.249810,0,0);}
.m2_c01142{transform:matrix(0.272090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272090,0.000000,0.000000,0.250000,0,0);}
.m6d_c01142{transform:matrix(0.272602,0.008178,-0.007497,0.249888,0,0);-ms-transform:matrix(0.272602,0.008178,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.272602,0.008178,-0.007497,0.249888,0,0);}
.mce_c01142{transform:matrix(0.272654,0.011463,-0.010501,0.249779,0,0);-ms-transform:matrix(0.272654,0.011463,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.272654,0.011463,-0.010501,0.249779,0,0);}
.mb5_c01142{transform:matrix(0.273117,0.010662,-0.009752,0.249810,0,0);-ms-transform:matrix(0.273117,0.010662,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.273117,0.010662,-0.009752,0.249810,0,0);}
.mac_c01142{transform:matrix(0.273552,0.010679,-0.009752,0.249810,0,0);-ms-transform:matrix(0.273552,0.010679,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.273552,0.010679,-0.009752,0.249810,0,0);}
.m47_c01142{transform:matrix(0.273780,0.007940,-0.007247,0.249895,0,0);-ms-transform:matrix(0.273780,0.007940,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.273780,0.007940,-0.007247,0.249895,0,0);}
.mb8_c01142{transform:matrix(0.274122,0.010427,-0.009503,0.249819,0,0);-ms-transform:matrix(0.274122,0.010427,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.274122,0.010427,-0.009503,0.249819,0,0);}
.mab_c01142{transform:matrix(0.274187,0.010430,-0.009503,0.249819,0,0);-ms-transform:matrix(0.274187,0.010430,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.274187,0.010430,-0.009503,0.249819,0,0);}
.mc9_c01142{transform:matrix(0.274448,0.011538,-0.010501,0.249779,0,0);-ms-transform:matrix(0.274448,0.011538,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.274448,0.011538,-0.010501,0.249779,0,0);}
.m1b_c01142{transform:matrix(0.274484,0.008792,-0.008004,0.249872,0,0);-ms-transform:matrix(0.274484,0.008792,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.274484,0.008792,-0.008004,0.249872,0,0);}
.ma2_c01142{transform:matrix(0.274897,0.009906,-0.009003,0.249838,0,0);-ms-transform:matrix(0.274897,0.009906,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.274897,0.009906,-0.009003,0.249838,0,0);}
.mef_c01142{transform:matrix(0.275051,0.009636,-0.008753,0.249847,0,0);-ms-transform:matrix(0.275051,0.009636,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.275051,0.009636,-0.008753,0.249847,0,0);}
.m42_c01142{transform:matrix(0.276159,0.008009,-0.007247,0.249895,0,0);-ms-transform:matrix(0.276159,0.008009,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.276159,0.008009,-0.007247,0.249895,0,0);}
.m88_c01142{transform:matrix(0.276212,0.011336,-0.010252,0.249790,0,0);-ms-transform:matrix(0.276212,0.011336,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.276212,0.011336,-0.010252,0.249790,0,0);}
.m9a_c01142{transform:matrix(0.276845,0.010254,-0.009253,0.249829,0,0);-ms-transform:matrix(0.276845,0.010254,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.276845,0.010254,-0.009253,0.249829,0,0);}
.m28_c01142{transform:matrix(0.277188,0.008879,-0.008004,0.249872,0,0);-ms-transform:matrix(0.277188,0.008879,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.277188,0.008879,-0.008004,0.249872,0,0);}
.m68_c01142{transform:matrix(0.277215,0.008316,-0.007497,0.249888,0,0);-ms-transform:matrix(0.277215,0.008316,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.277215,0.008316,-0.007497,0.249888,0,0);}
.m8e_c01142{transform:matrix(0.277232,0.011378,-0.010252,0.249790,0,0);-ms-transform:matrix(0.277232,0.011378,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.277232,0.011378,-0.010252,0.249790,0,0);}
.m1_c01142{transform:matrix(0.277355,0.011661,-0.010501,0.249779,0,0);-ms-transform:matrix(0.277355,0.011661,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.277355,0.011661,-0.010501,0.249779,0,0);}
.m38_c01142{transform:matrix(0.278383,0.008073,-0.007247,0.249895,0,0);-ms-transform:matrix(0.278383,0.008073,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.278383,0.008073,-0.007247,0.249895,0,0);}
.m92_c01142{transform:matrix(0.278724,0.010323,-0.009253,0.249829,0,0);-ms-transform:matrix(0.278724,0.010323,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.278724,0.010323,-0.009253,0.249829,0,0);}
.m8c_c01142{transform:matrix(0.279245,0.011461,-0.010252,0.249790,0,0);-ms-transform:matrix(0.279245,0.011461,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.279245,0.011461,-0.010252,0.249790,0,0);}
.md5_c01142{transform:matrix(0.279282,0.014537,-0.012995,0.249662,0,0);-ms-transform:matrix(0.279282,0.014537,-0.012995,0.249662,0,0);-webkit-transform:matrix(0.279282,0.014537,-0.012995,0.249662,0,0);}
.mbd_c01142{transform:matrix(0.279943,0.010648,-0.009503,0.249819,0,0);-ms-transform:matrix(0.279943,0.010648,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.279943,0.010648,-0.009503,0.249819,0,0);}
.m49_c01142{transform:matrix(0.280007,0.008120,-0.007247,0.249895,0,0);-ms-transform:matrix(0.280007,0.008120,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.280007,0.008120,-0.007247,0.249895,0,0);}
.m45_c01142{transform:matrix(0.280267,0.008128,-0.007247,0.249895,0,0);-ms-transform:matrix(0.280267,0.008128,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.280267,0.008128,-0.007247,0.249895,0,0);}
.m55_c01142{transform:matrix(0.280478,0.009546,-0.008504,0.249855,0,0);-ms-transform:matrix(0.280478,0.009546,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.280478,0.009546,-0.008504,0.249855,0,0);}
.mcc_c01142{transform:matrix(0.280772,0.011804,-0.010501,0.249779,0,0);-ms-transform:matrix(0.280772,0.011804,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.280772,0.011804,-0.010501,0.249779,0,0);}
.ma5_c01142{transform:matrix(0.280898,0.010122,-0.009003,0.249838,0,0);-ms-transform:matrix(0.280898,0.010122,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.280898,0.010122,-0.009003,0.249838,0,0);}
.m96_c01142{transform:matrix(0.281332,0.010420,-0.009253,0.249829,0,0);-ms-transform:matrix(0.281332,0.010420,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.281332,0.010420,-0.009253,0.249829,0,0);}
.mbf_c01142{transform:matrix(0.281726,0.010716,-0.009503,0.249819,0,0);-ms-transform:matrix(0.281726,0.010716,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.281726,0.010716,-0.009503,0.249819,0,0);}
.mc3_c01142{transform:matrix(0.281826,0.010720,-0.009503,0.249819,0,0);-ms-transform:matrix(0.281826,0.010720,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.281826,0.010720,-0.009503,0.249819,0,0);}
.mc2_c01142{transform:matrix(0.282721,0.010754,-0.009503,0.249819,0,0);-ms-transform:matrix(0.282721,0.010754,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.282721,0.010754,-0.009503,0.249819,0,0);}
.m57_c01142{transform:matrix(0.282731,0.009622,-0.008504,0.249855,0,0);-ms-transform:matrix(0.282731,0.009622,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.282731,0.009622,-0.008504,0.249855,0,0);}
.m99_c01142{transform:matrix(0.282891,0.010477,-0.009253,0.249829,0,0);-ms-transform:matrix(0.282891,0.010477,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.282891,0.010477,-0.009253,0.249829,0,0);}
.m66_c01142{transform:matrix(0.283746,0.010225,-0.009003,0.249838,0,0);-ms-transform:matrix(0.283746,0.010225,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.283746,0.010225,-0.009003,0.249838,0,0);}
.mc7_c01142{transform:matrix(0.284524,0.011962,-0.010501,0.249779,0,0);-ms-transform:matrix(0.284524,0.011962,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.284524,0.011962,-0.010501,0.249779,0,0);}
.mb1_c01142{transform:matrix(0.284838,0.011120,-0.009752,0.249810,0,0);-ms-transform:matrix(0.284838,0.011120,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.284838,0.011120,-0.009752,0.249810,0,0);}
.m71_c01142{transform:matrix(0.284997,0.008550,-0.007497,0.249888,0,0);-ms-transform:matrix(0.284997,0.008550,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.284997,0.008550,-0.007497,0.249888,0,0);}
.m63_c01142{transform:matrix(0.285879,0.010302,-0.009003,0.249838,0,0);-ms-transform:matrix(0.285879,0.010302,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.285879,0.010302,-0.009003,0.249838,0,0);}
.maa_c01142{transform:matrix(0.286997,0.010917,-0.009503,0.249819,0,0);-ms-transform:matrix(0.286997,0.010917,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.286997,0.010917,-0.009503,0.249819,0,0);}
.m34_c01142{transform:matrix(0.287294,0.008332,-0.007247,0.249895,0,0);-ms-transform:matrix(0.287294,0.008332,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.287294,0.008332,-0.007247,0.249895,0,0);}
.m7c_c01142{transform:matrix(0.288978,0.010124,-0.008753,0.249847,0,0);-ms-transform:matrix(0.288978,0.010124,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.288978,0.010124,-0.008753,0.249847,0,0);}
.m65_c01142{transform:matrix(0.289242,0.010423,-0.009003,0.249838,0,0);-ms-transform:matrix(0.289242,0.010423,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.289242,0.010423,-0.009003,0.249838,0,0);}
.me1_c01142{transform:matrix(0.290265,0.011041,-0.009503,0.249819,0,0);-ms-transform:matrix(0.290265,0.011041,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.290265,0.011041,-0.009503,0.249819,0,0);}
.mc6_c01142{transform:matrix(0.290505,0.011050,-0.009503,0.249819,0,0);-ms-transform:matrix(0.290505,0.011050,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.290505,0.011050,-0.009503,0.249819,0,0);}
.m5e_c01142{transform:matrix(0.290886,0.010482,-0.009003,0.249838,0,0);-ms-transform:matrix(0.290886,0.010482,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.290886,0.010482,-0.009003,0.249838,0,0);}
.m36_c01142{transform:matrix(0.291632,0.008457,-0.007247,0.249895,0,0);-ms-transform:matrix(0.291632,0.008457,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.291632,0.008457,-0.007247,0.249895,0,0);}
.m10a_c01142{transform:matrix(0.291724,0.013141,-0.011250,0.249747,0,0);-ms-transform:matrix(0.291724,0.013141,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.291724,0.013141,-0.011250,0.249747,0,0);}
.m5_c01142{transform:matrix(0.293840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293840,0.000000,0.000000,0.250000,0,0);}
.m4f_c01142{transform:matrix(0.294674,0.010029,-0.008504,0.249855,0,0);-ms-transform:matrix(0.294674,0.010029,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.294674,0.010029,-0.008504,0.249855,0,0);}
.m5a_c01142{transform:matrix(0.294684,0.010029,-0.008504,0.249855,0,0);-ms-transform:matrix(0.294684,0.010029,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.294684,0.010029,-0.008504,0.249855,0,0);}
.ma8_c01142{transform:matrix(0.295596,0.011244,-0.009503,0.249819,0,0);-ms-transform:matrix(0.295596,0.011244,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.295596,0.011244,-0.009503,0.249819,0,0);}
.m53_c01142{transform:matrix(0.297098,0.010111,-0.008504,0.249855,0,0);-ms-transform:matrix(0.297098,0.010111,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.297098,0.010111,-0.008504,0.249855,0,0);}
.me4_c01142{transform:matrix(0.298039,0.011337,-0.009503,0.249819,0,0);-ms-transform:matrix(0.298039,0.011337,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.298039,0.011337,-0.009503,0.249819,0,0);}
.m10d_c01142{transform:matrix(0.298819,0.016152,-0.013494,0.249636,0,0);-ms-transform:matrix(0.298819,0.016152,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.298819,0.016152,-0.013494,0.249636,0,0);}
.me2_c01142{transform:matrix(0.298954,0.011372,-0.009503,0.249819,0,0);-ms-transform:matrix(0.298954,0.011372,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.298954,0.011372,-0.009503,0.249819,0,0);}
.mdf_c01142{transform:matrix(0.299274,0.011384,-0.009503,0.249819,0,0);-ms-transform:matrix(0.299274,0.011384,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.299274,0.011384,-0.009503,0.249819,0,0);}
.m5f_c01142{transform:matrix(0.299705,0.010800,-0.009003,0.249838,0,0);-ms-transform:matrix(0.299705,0.010800,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.299705,0.010800,-0.009003,0.249838,0,0);}
.m108_c01142{transform:matrix(0.299726,0.013501,-0.011250,0.249747,0,0);-ms-transform:matrix(0.299726,0.013501,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.299726,0.013501,-0.011250,0.249747,0,0);}
.m67_c01142{transform:matrix(0.300645,0.010834,-0.009003,0.249838,0,0);-ms-transform:matrix(0.300645,0.010834,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.300645,0.010834,-0.009003,0.249838,0,0);}
.m6e_c01142{transform:matrix(0.301030,0.009031,-0.007497,0.249888,0,0);-ms-transform:matrix(0.301030,0.009031,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.301030,0.009031,-0.007497,0.249888,0,0);}
.m6c_c01142{transform:matrix(0.301045,0.009031,-0.007497,0.249888,0,0);-ms-transform:matrix(0.301045,0.009031,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.301045,0.009031,-0.007497,0.249888,0,0);}
.m8f_c01142{transform:matrix(0.301127,0.012359,-0.010252,0.249790,0,0);-ms-transform:matrix(0.301127,0.012359,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.301127,0.012359,-0.010252,0.249790,0,0);}
.m59_c01142{transform:matrix(0.301276,0.010254,-0.008504,0.249855,0,0);-ms-transform:matrix(0.301276,0.010254,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.301276,0.010254,-0.008504,0.249855,0,0);}
.m50_c01142{transform:matrix(0.301495,0.010261,-0.008504,0.249855,0,0);-ms-transform:matrix(0.301495,0.010261,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.301495,0.010261,-0.008504,0.249855,0,0);}
.m62_c01142{transform:matrix(0.302424,0.010898,-0.009003,0.249838,0,0);-ms-transform:matrix(0.302424,0.010898,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.302424,0.010898,-0.009003,0.249838,0,0);}
.m3b_c01142{transform:matrix(0.302763,0.008780,-0.007247,0.249895,0,0);-ms-transform:matrix(0.302763,0.008780,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.302763,0.008780,-0.007247,0.249895,0,0);}
.ma9_c01142{transform:matrix(0.302936,0.011523,-0.009503,0.249819,0,0);-ms-transform:matrix(0.302936,0.011523,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.302936,0.011523,-0.009503,0.249819,0,0);}
.m60_c01142{transform:matrix(0.303663,0.010943,-0.009003,0.249838,0,0);-ms-transform:matrix(0.303663,0.010943,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.303663,0.010943,-0.009003,0.249838,0,0);}
.m51_c01142{transform:matrix(0.303954,0.010345,-0.008504,0.249855,0,0);-ms-transform:matrix(0.303954,0.010345,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.303954,0.010345,-0.008504,0.249855,0,0);}
.m78_c01142{transform:matrix(0.304608,0.010672,-0.008753,0.249847,0,0);-ms-transform:matrix(0.304608,0.010672,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.304608,0.010672,-0.008753,0.249847,0,0);}
.m8d_c01142{transform:matrix(0.305213,0.012526,-0.010252,0.249790,0,0);-ms-transform:matrix(0.305213,0.012526,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.305213,0.012526,-0.010252,0.249790,0,0);}
.md_c01142{transform:matrix(0.305754,0.011630,-0.009503,0.249819,0,0);-ms-transform:matrix(0.305754,0.011630,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.305754,0.011630,-0.009503,0.249819,0,0);}
.m39_c01142{transform:matrix(0.306436,0.008887,-0.007247,0.249895,0,0);-ms-transform:matrix(0.306436,0.008887,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.306436,0.008887,-0.007247,0.249895,0,0);}
.m10f_c01142{transform:matrix(0.306478,0.016566,-0.013494,0.249636,0,0);-ms-transform:matrix(0.306478,0.016566,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.306478,0.016566,-0.013494,0.249636,0,0);}
.m54_c01142{transform:matrix(0.307127,0.010453,-0.008504,0.249855,0,0);-ms-transform:matrix(0.307127,0.010453,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.307127,0.010453,-0.008504,0.249855,0,0);}
.m8b_c01142{transform:matrix(0.309714,0.012711,-0.010252,0.249790,0,0);-ms-transform:matrix(0.309714,0.012711,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.309714,0.012711,-0.010252,0.249790,0,0);}
.m110_c01142{transform:matrix(0.310352,0.016776,-0.013494,0.249636,0,0);-ms-transform:matrix(0.310352,0.016776,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.310352,0.016776,-0.013494,0.249636,0,0);}
.m70_c01142{transform:matrix(0.311920,0.009358,-0.007497,0.249888,0,0);-ms-transform:matrix(0.311920,0.009358,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.311920,0.009358,-0.007497,0.249888,0,0);}
.mc5_c01142{transform:matrix(0.312629,0.011892,-0.009503,0.249819,0,0);-ms-transform:matrix(0.312629,0.011892,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.312629,0.011892,-0.009503,0.249819,0,0);}
.mfd_c01142{transform:matrix(0.313082,0.011282,-0.009003,0.249838,0,0);-ms-transform:matrix(0.313082,0.011282,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.313082,0.011282,-0.009003,0.249838,0,0);}
.m72_c01142{transform:matrix(0.318772,0.009563,-0.007497,0.249888,0,0);-ms-transform:matrix(0.318772,0.009563,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.318772,0.009563,-0.007497,0.249888,0,0);}
.mc_c01142{transform:matrix(0.324325,0.012337,-0.009503,0.249819,0,0);-ms-transform:matrix(0.324325,0.012337,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.324325,0.012337,-0.009503,0.249819,0,0);}
.ma6_c01142{transform:matrix(0.333004,0.012667,-0.009503,0.249819,0,0);-ms-transform:matrix(0.333004,0.012667,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.333004,0.012667,-0.009503,0.249819,0,0);}
.m7_c01142{transform:matrix(0.341625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341625,0.000000,0.000000,0.250000,0,0);}
.m9c_c01142{transform:matrix(0.346115,0.012473,-0.009003,0.249838,0,0);-ms-transform:matrix(0.346115,0.012473,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.346115,0.012473,-0.009003,0.249838,0,0);}
.m56_c01142{transform:matrix(0.358173,0.012190,-0.008504,0.249855,0,0);-ms-transform:matrix(0.358173,0.012190,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.358173,0.012190,-0.008504,0.249855,0,0);}
.m79_c01142{transform:matrix(0.361373,0.012661,-0.008753,0.249847,0,0);-ms-transform:matrix(0.361373,0.012661,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.361373,0.012661,-0.008753,0.249847,0,0);}
.m116_c01142{transform:matrix(0.368410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368410,0.000000,0.000000,0.250000,0,0);}
.mcf_c01142{transform:matrix(0.369365,0.013310,-0.009003,0.249838,0,0);-ms-transform:matrix(0.369365,0.013310,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.369365,0.013310,-0.009003,0.249838,0,0);}
.m9e_c01142{transform:matrix(0.370190,0.013340,-0.009003,0.249838,0,0);-ms-transform:matrix(0.370190,0.013340,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.370190,0.013340,-0.009003,0.249838,0,0);}
.m4_c01142{transform:matrix(0.387470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387470,0.000000,0.000000,0.250000,0,0);}
.m9d_c01142{transform:matrix(0.391896,0.014122,-0.009003,0.249838,0,0);-ms-transform:matrix(0.391896,0.014122,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.391896,0.014122,-0.009003,0.249838,0,0);}
.m9b_c01142{transform:matrix(0.404792,0.014587,-0.009003,0.249838,0,0);-ms-transform:matrix(0.404792,0.014587,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.404792,0.014587,-0.009003,0.249838,0,0);}
.m117_c01142{transform:matrix(0.424480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424480,0.000000,0.000000,0.250000,0,0);}
.m3_c01142{transform:matrix(0.436005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436005,0.000000,0.000000,0.250000,0,0);}
.mf4_c01142{transform:matrix(0.483853,0.016952,-0.008753,0.249847,0,0);-ms-transform:matrix(0.483853,0.016952,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.483853,0.016952,-0.008753,0.249847,0,0);}
.md0_c01142{transform:matrix(0.498711,0.017972,-0.009003,0.249838,0,0);-ms-transform:matrix(0.498711,0.017972,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.498711,0.017972,-0.009003,0.249838,0,0);}
.mf5_c01142{transform:matrix(0.511186,0.017909,-0.008753,0.249847,0,0);-ms-transform:matrix(0.511186,0.017909,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.511186,0.017909,-0.008753,0.249847,0,0);}
.m77_c01142{transform:matrix(0.530951,0.015929,-0.007497,0.249888,0,0);-ms-transform:matrix(0.530951,0.015929,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.530951,0.015929,-0.007497,0.249888,0,0);}
.m84_c01142{transform:matrix(0.551876,0.019335,-0.008753,0.249847,0,0);-ms-transform:matrix(0.551876,0.019335,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.551876,0.019335,-0.008753,0.249847,0,0);}
.m33_c01142{transform:matrix(0.566199,0.014721,-0.006498,0.249916,0,0);-ms-transform:matrix(0.566199,0.014721,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.566199,0.014721,-0.006498,0.249916,0,0);}
.m75_c01142{transform:matrix(0.629897,0.018897,-0.007497,0.249888,0,0);-ms-transform:matrix(0.629897,0.018897,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.629897,0.018897,-0.007497,0.249888,0,0);}
.m76_c01142{transform:matrix(0.642186,0.019266,-0.007497,0.249888,0,0);-ms-transform:matrix(0.642186,0.019266,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.642186,0.019266,-0.007497,0.249888,0,0);}
.mea_c01142{transform:matrix(0.644718,0.034204,-0.013245,0.249649,0,0);-ms-transform:matrix(0.644718,0.034204,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.644718,0.034204,-0.013245,0.249649,0,0);}
.m107_c01142{transform:matrix(0.727892,0.032788,-0.011250,0.249747,0,0);-ms-transform:matrix(0.727892,0.032788,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.727892,0.032788,-0.011250,0.249747,0,0);}
.m24_c01142{transform:matrix(0.790565,0.025323,-0.008004,0.249872,0,0);-ms-transform:matrix(0.790565,0.025323,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.790565,0.025323,-0.008004,0.249872,0,0);}
.mf6_c01142{transform:matrix(0.800639,0.028050,-0.008753,0.249847,0,0);-ms-transform:matrix(0.800639,0.028050,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.800639,0.028050,-0.008753,0.249847,0,0);}
.m87_c01142{transform:matrix(0.821526,0.028782,-0.008753,0.249847,0,0);-ms-transform:matrix(0.821526,0.028782,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.821526,0.028782,-0.008753,0.249847,0,0);}
.m23_c01142{transform:matrix(0.886315,0.028390,-0.008004,0.249872,0,0);-ms-transform:matrix(0.886315,0.028390,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.886315,0.028390,-0.008004,0.249872,0,0);}
.m86_c01142{transform:matrix(0.917397,0.032141,-0.008753,0.249847,0,0);-ms-transform:matrix(0.917397,0.032141,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.917397,0.032141,-0.008753,0.249847,0,0);}
.m4e_c01142{transform:matrix(0.922937,0.026765,-0.007247,0.249895,0,0);-ms-transform:matrix(0.922937,0.026765,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.922937,0.026765,-0.007247,0.249895,0,0);}
.m25_c01142{transform:matrix(0.952317,0.030505,-0.008004,0.249872,0,0);-ms-transform:matrix(0.952317,0.030505,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.952317,0.030505,-0.008004,0.249872,0,0);}
.mf3_c01142{transform:matrix(0.967137,0.033884,-0.008753,0.249847,0,0);-ms-transform:matrix(0.967137,0.033884,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.967137,0.033884,-0.008753,0.249847,0,0);}
.m5b_c01142{transform:matrix(1.280858,0.043593,-0.008504,0.249855,0,0);-ms-transform:matrix(1.280858,0.043593,-0.008504,0.249855,0,0);-webkit-transform:matrix(1.280858,0.043593,-0.008504,0.249855,0,0);}
.m5d_c01142{transform:matrix(1.558233,0.053033,-0.008504,0.249855,0,0);-ms-transform:matrix(1.558233,0.053033,-0.008504,0.249855,0,0);-webkit-transform:matrix(1.558233,0.053033,-0.008504,0.249855,0,0);}
.m74_c01142{transform:matrix(1.576521,0.047296,-0.007497,0.249888,0,0);-ms-transform:matrix(1.576521,0.047296,-0.007497,0.249888,0,0);-webkit-transform:matrix(1.576521,0.047296,-0.007497,0.249888,0,0);}
.mc1_c01142{transform:matrix(1.798699,0.068419,-0.009503,0.249819,0,0);-ms-transform:matrix(1.798699,0.068419,-0.009503,0.249819,0,0);-webkit-transform:matrix(1.798699,0.068419,-0.009503,0.249819,0,0);}
.me6_c01142{transform:matrix(1.941415,0.102998,-0.013245,0.249649,0,0);-ms-transform:matrix(1.941415,0.102998,-0.013245,0.249649,0,0);-webkit-transform:matrix(1.941415,0.102998,-0.013245,0.249649,0,0);}
.m5c_c01142{transform:matrix(1.944544,0.066181,-0.008504,0.249855,0,0);-ms-transform:matrix(1.944544,0.066181,-0.008504,0.249855,0,0);-webkit-transform:matrix(1.944544,0.066181,-0.008504,0.249855,0,0);}
.m22_c01142{transform:matrix(2.542416,0.081439,-0.008004,0.249872,0,0);-ms-transform:matrix(2.542416,0.081439,-0.008004,0.249872,0,0);-webkit-transform:matrix(2.542416,0.081439,-0.008004,0.249872,0,0);}
.m32_c01142{transform:matrix(2.665874,0.069313,-0.006498,0.249916,0,0);-ms-transform:matrix(2.665874,0.069313,-0.006498,0.249916,0,0);-webkit-transform:matrix(2.665874,0.069313,-0.006498,0.249916,0,0);}
.m73_c01142{transform:matrix(2.901740,0.087052,-0.007497,0.249888,0,0);-ms-transform:matrix(2.901740,0.087052,-0.007497,0.249888,0,0);-webkit-transform:matrix(2.901740,0.087052,-0.007497,0.249888,0,0);}
.m21_c01142{transform:matrix(3.409301,0.109207,-0.008004,0.249872,0,0);-ms-transform:matrix(3.409301,0.109207,-0.008004,0.249872,0,0);-webkit-transform:matrix(3.409301,0.109207,-0.008004,0.249872,0,0);}
.m85_c01142{transform:matrix(4.264828,0.149418,-0.008753,0.249847,0,0);-ms-transform:matrix(4.264828,0.149418,-0.008753,0.249847,0,0);-webkit-transform:matrix(4.264828,0.149418,-0.008753,0.249847,0,0);}
.mc0_c01142{transform:matrix(7.071606,0.268990,-0.009503,0.249819,0,0);-ms-transform:matrix(7.071606,0.268990,-0.009503,0.249819,0,0);-webkit-transform:matrix(7.071606,0.268990,-0.009503,0.249819,0,0);}
.v0_c01142{vertical-align:0.000000px;}
.ls0_c01142{letter-spacing:0.000000px;}
.sc__c01142{text-shadow:none;}
.sc0_c01142{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__c01142{-webkit-text-stroke:0px transparent;}
.sc0_c01142{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01142{word-spacing:0.000000px;}
.fc0_c01142{color:transparent;}
.fsf_c01142{font-size:17.992411px;}
.fs23_c01142{font-size:17.993033px;}
.fs1d_c01142{font-size:17.995004px;}
.fs2_c01142{font-size:18.000000px;}
.fsa_c01142{font-size:18.006083px;}
.fsd_c01142{font-size:18.007567px;}
.fs8_c01142{font-size:23.988297px;}
.fs15_c01142{font-size:23.990710px;}
.fs26_c01142{font-size:30.000390px;}
.fs12_c01142{font-size:36.016196px;}
.fs4_c01142{font-size:42.000000px;}
.fs18_c01142{font-size:47.983125px;}
.fs13_c01142{font-size:53.979098px;}
.fs2a_c01142{font-size:54.000000px;}
.fs5_c01142{font-size:59.983348px;}
.fs2b_c01142{font-size:60.000000px;}
.fse_c01142{font-size:65.972175px;}
.fs10_c01142{font-size:65.976797px;}
.fs1a_c01142{font-size:65.981682px;}
.fs16_c01142{font-size:65.989505px;}
.fs27_c01142{font-size:66.000858px;}
.fsb_c01142{font-size:66.027747px;}
.fs11_c01142{font-size:66.029693px;}
.fs28_c01142{font-size:66.030254px;}
.fs7_c01142{font-size:71.964891px;}
.fs22_c01142{font-size:71.972131px;}
.fs19_c01142{font-size:71.974688px;}
.fs17_c01142{font-size:71.977316px;}
.fs1c_c01142{font-size:71.980017px;}
.fs1b_c01142{font-size:71.982790px;}
.fs0_c01142{font-size:71.991540px;}
.fs1_c01142{font-size:72.000000px;}
.fs1f_c01142{font-size:72.025376px;}
.fsc_c01142{font-size:72.030270px;}
.fs29_c01142{font-size:72.033004px;}
.fs14_c01142{font-size:77.969808px;}
.fs24_c01142{font-size:77.972578px;}
.fs3_c01142{font-size:78.000000px;}
.fs6_c01142{font-size:78.022461px;}
.fs9_c01142{font-size:84.028387px;}
.fs25_c01142{font-size:90.001170px;}
.fs1e_c01142{font-size:95.966250px;}
.fs21_c01142{font-size:96.038872px;}
.fs20_c01142{font-size:108.043731px;}
.y0_c01142{bottom:0.000000px;}
.y116_c01142{bottom:9.990000px;}
.y112_c01142{bottom:24.666276px;}
.y111_c01142{bottom:25.941621px;}
.y110_c01142{bottom:29.511534px;}
.y10f_c01142{bottom:30.831672px;}
.y10e_c01142{bottom:36.340806px;}
.y10d_c01142{bottom:42.865113px;}
.y115_c01142{bottom:43.738500px;}
.y10c_c01142{bottom:44.662908px;}
.y10b_c01142{bottom:49.444500px;}
.y10a_c01142{bottom:51.107378px;}
.y109_c01142{bottom:52.908332px;}
.y108_c01142{bottom:55.428768px;}
.y107_c01142{bottom:56.449166px;}
.y106_c01142{bottom:59.978093px;}
.y105_c01142{bottom:72.112500px;}
.y104_c01142{bottom:75.188663px;}
.y103_c01142{bottom:76.685408px;}
.y102_c01142{bottom:79.714808px;}
.y101_c01142{bottom:82.645455px;}
.y100_c01142{bottom:86.177933px;}
.yff_c01142{bottom:88.095135px;}
.yfe_c01142{bottom:90.139170px;}
.yfd_c01142{bottom:93.653558px;}
.yfc_c01142{bottom:98.571000px;}
.yfb_c01142{bottom:110.248266px;}
.yfa_c01142{bottom:114.628800px;}
.yf9_c01142{bottom:119.416332px;}
.yf8_c01142{bottom:121.059714px;}
.yf7_c01142{bottom:124.270500px;}
.yf6_c01142{bottom:125.459094px;}
.yf5_c01142{bottom:131.776500px;}
.y114_c01142{bottom:135.000000px;}
.y113_c01142{bottom:144.853500px;}
.yf4_c01142{bottom:149.407182px;}
.yf3_c01142{bottom:150.787151px;}
.yf2_c01142{bottom:151.224126px;}
.yf1_c01142{bottom:152.321264px;}
.yf0_c01142{bottom:154.703318px;}
.yef_c01142{bottom:157.013003px;}
.yee_c01142{bottom:159.387158px;}
.yed_c01142{bottom:163.641705px;}
.yec_c01142{bottom:164.794238px;}
.yeb_c01142{bottom:167.146500px;}
.yea_c01142{bottom:195.190289px;}
.ye9_c01142{bottom:196.069927px;}
.ye8_c01142{bottom:197.659704px;}
.ye7_c01142{bottom:205.129480px;}
.ye6_c01142{bottom:214.530912px;}
.ye5_c01142{bottom:216.405919px;}
.ye4_c01142{bottom:222.247500px;}
.ye3_c01142{bottom:223.142427px;}
.ye2_c01142{bottom:226.425057px;}
.ye1_c01142{bottom:228.164868px;}
.ye0_c01142{bottom:231.964944px;}
.ydf_c01142{bottom:235.321845px;}
.yde_c01142{bottom:236.117280px;}
.y9_c01142{bottom:236.529000px;}
.y8_c01142{bottom:238.977000px;}
.ydd_c01142{bottom:239.506500px;}
.ydc_c01142{bottom:246.074754px;}
.ydb_c01142{bottom:249.120810px;}
.yda_c01142{bottom:253.676010px;}
.yd9_c01142{bottom:256.080906px;}
.yd8_c01142{bottom:257.717034px;}
.yd7_c01142{bottom:261.216270px;}
.yd6_c01142{bottom:262.322310px;}
.yd5_c01142{bottom:266.945448px;}
.yd4_c01142{bottom:269.303934px;}
.y7_c01142{bottom:273.898500px;}
.yd3_c01142{bottom:273.982452px;}
.yd2_c01142{bottom:275.684100px;}
.yd1_c01142{bottom:280.816500px;}
.yd0_c01142{bottom:285.346752px;}
.ycf_c01142{bottom:286.502676px;}
.ycc_c01142{bottom:286.918734px;}
.ycb_c01142{bottom:288.303852px;}
.yce_c01142{bottom:291.859314px;}
.yca_c01142{bottom:293.447739px;}
.ycd_c01142{bottom:293.766000px;}
.yc9_c01142{bottom:297.148485px;}
.yc8_c01142{bottom:299.054298px;}
.yc7_c01142{bottom:302.832912px;}
.yc6_c01142{bottom:304.082517px;}
.yc5_c01142{bottom:311.601000px;}
.y6_c01142{bottom:314.974500px;}
.yc4_c01142{bottom:336.091193px;}
.yc3_c01142{bottom:340.130238px;}
.yc2_c01142{bottom:341.402226px;}
.yc1_c01142{bottom:343.048926px;}
.y5_c01142{bottom:344.662500px;}
.yc0_c01142{bottom:345.081689px;}
.ybf_c01142{bottom:354.915168px;}
.ybd_c01142{bottom:362.559399px;}
.ybe_c01142{bottom:363.694406px;}
.ybc_c01142{bottom:364.685556px;}
.ybb_c01142{bottom:368.864226px;}
.yba_c01142{bottom:370.906422px;}
.yb9_c01142{bottom:372.606789px;}
.yb8_c01142{bottom:375.974691px;}
.yb7_c01142{bottom:377.693526px;}
.yb6_c01142{bottom:381.796500px;}
.yb5_c01142{bottom:415.550437px;}
.yb4_c01142{bottom:427.864836px;}
.yb3_c01142{bottom:429.658914px;}
.yb2_c01142{bottom:431.398762px;}
.yb1_c01142{bottom:434.832654px;}
.yb0_c01142{bottom:435.694651px;}
.yaf_c01142{bottom:440.515519px;}
.yae_c01142{bottom:441.779821px;}
.yad_c01142{bottom:443.070331px;}
.yac_c01142{bottom:446.929986px;}
.yab_c01142{bottom:449.124321px;}
.yaa_c01142{bottom:453.346500px;}
.ya9_c01142{bottom:468.488586px;}
.ya8_c01142{bottom:470.634123px;}
.ya7_c01142{bottom:475.654683px;}
.ya6_c01142{bottom:479.390919px;}
.ya5_c01142{bottom:481.543581px;}
.ya4_c01142{bottom:488.176500px;}
.ya3_c01142{bottom:509.757952px;}
.ya2_c01142{bottom:511.265025px;}
.ya1_c01142{bottom:513.523899px;}
.ya0_c01142{bottom:516.879931px;}
.y9f_c01142{bottom:518.450171px;}
.y9e_c01142{bottom:520.315776px;}
.y9d_c01142{bottom:523.289394px;}
.y9c_c01142{bottom:550.171026px;}
.y9b_c01142{bottom:554.668200px;}
.y9a_c01142{bottom:555.854310px;}
.y99_c01142{bottom:557.838000px;}
.y98_c01142{bottom:571.534522px;}
.y97_c01142{bottom:574.876288px;}
.y96_c01142{bottom:576.116436px;}
.y95_c01142{bottom:577.341765px;}
.y94_c01142{bottom:581.485117px;}
.y93_c01142{bottom:582.230149px;}
.y92_c01142{bottom:585.502762px;}
.y91_c01142{bottom:587.210997px;}
.y90_c01142{bottom:590.520240px;}
.y8f_c01142{bottom:591.721926px;}
.y8e_c01142{bottom:595.366500px;}
.y8d_c01142{bottom:608.706345px;}
.y8c_c01142{bottom:610.512846px;}
.y8b_c01142{bottom:615.110278px;}
.y8a_c01142{bottom:617.359702px;}
.y89_c01142{bottom:624.636567px;}
.y88_c01142{bottom:625.444615px;}
.y87_c01142{bottom:627.383710px;}
.y86_c01142{bottom:629.122500px;}
.y85_c01142{bottom:637.272758px;}
.y84_c01142{bottom:637.756272px;}
.y81_c01142{bottom:642.518584px;}
.y83_c01142{bottom:642.689260px;}
.y80_c01142{bottom:643.853148px;}
.y7f_c01142{bottom:645.200130px;}
.y7e_c01142{bottom:649.661443px;}
.y82_c01142{bottom:652.387833px;}
.y7d_c01142{bottom:654.479300px;}
.y7c_c01142{bottom:656.294171px;}
.y7b_c01142{bottom:660.756219px;}
.y7a_c01142{bottom:662.538245px;}
.y79_c01142{bottom:666.932005px;}
.y78_c01142{bottom:694.929098px;}
.y77_c01142{bottom:698.767215px;}
.y76_c01142{bottom:699.315000px;}
.y70_c01142{bottom:717.741015px;}
.y75_c01142{bottom:717.778470px;}
.y74_c01142{bottom:718.518255px;}
.y73_c01142{bottom:719.122320px;}
.y6f_c01142{bottom:719.754075px;}
.y72_c01142{bottom:720.506745px;}
.y6e_c01142{bottom:724.323465px;}
.y71_c01142{bottom:724.660995px;}
.y6d_c01142{bottom:725.521290px;}
.y6c_c01142{bottom:729.558765px;}
.y6b_c01142{bottom:732.067710px;}
.y6a_c01142{bottom:736.560945px;}
.y69_c01142{bottom:765.263475px;}
.y68_c01142{bottom:766.284570px;}
.y67_c01142{bottom:767.289240px;}
.y66_c01142{bottom:769.239000px;}
.y65_c01142{bottom:785.291154px;}
.y64_c01142{bottom:786.110820px;}
.y63_c01142{bottom:788.576406px;}
.y62_c01142{bottom:789.763920px;}
.y61_c01142{bottom:790.994850px;}
.y60_c01142{bottom:794.549346px;}
.y5f_c01142{bottom:796.182306px;}
.y5e_c01142{bottom:800.170152px;}
.y5d_c01142{bottom:804.157674px;}
.y5c_c01142{bottom:807.315000px;}
.y4_c01142{bottom:809.860500px;}
.y5b_c01142{bottom:831.657393px;}
.y5a_c01142{bottom:833.796157px;}
.y58_c01142{bottom:834.158505px;}
.y59_c01142{bottom:836.245854px;}
.y57_c01142{bottom:837.474545px;}
.y56_c01142{bottom:838.581682px;}
.y55_c01142{bottom:841.075169px;}
.y54_c01142{bottom:856.901628px;}
.y53_c01142{bottom:857.651787px;}
.y52_c01142{bottom:862.184871px;}
.y51_c01142{bottom:865.942602px;}
.y50_c01142{bottom:867.521919px;}
.y4f_c01142{bottom:871.296786px;}
.y4e_c01142{bottom:875.071653px;}
.y4d_c01142{bottom:878.055000px;}
.y4b_c01142{bottom:890.938389px;}
.y4c_c01142{bottom:891.372339px;}
.y4a_c01142{bottom:891.729084px;}
.y49_c01142{bottom:892.856514px;}
.y48_c01142{bottom:893.988685px;}
.y47_c01142{bottom:897.287047px;}
.y46_c01142{bottom:899.132271px;}
.y45_c01142{bottom:902.378479px;}
.y44_c01142{bottom:903.901170px;}
.y43_c01142{bottom:907.555318px;}
.y42_c01142{bottom:910.058896px;}
.y41_c01142{bottom:910.822579px;}
.y40_c01142{bottom:913.393534px;}
.y3f_c01142{bottom:935.968608px;}
.y3e_c01142{bottom:943.688121px;}
.y3d_c01142{bottom:945.190579px;}
.y3c_c01142{bottom:946.343046px;}
.y3b_c01142{bottom:964.615446px;}
.y3a_c01142{bottom:965.352988px;}
.y39_c01142{bottom:968.902806px;}
.y38_c01142{bottom:969.863677px;}
.y37_c01142{bottom:973.376172px;}
.y36_c01142{bottom:976.203889px;}
.y35_c01142{bottom:977.621641px;}
.y34_c01142{bottom:980.197755px;}
.y33_c01142{bottom:981.130047px;}
.y32_c01142{bottom:983.080500px;}
.y3_c01142{bottom:984.297000px;}
.y31_c01142{bottom:1004.719209px;}
.y30_c01142{bottom:1009.261197px;}
.y2f_c01142{bottom:1010.965677px;}
.y2e_c01142{bottom:1013.523180px;}
.y2d_c01142{bottom:1014.716736px;}
.y2c_c01142{bottom:1016.439171px;}
.y2b_c01142{bottom:1018.179000px;}
.y2a_c01142{bottom:1041.663267px;}
.y29_c01142{bottom:1042.657199px;}
.y28_c01142{bottom:1044.256172px;}
.y27_c01142{bottom:1045.538671px;}
.y26_c01142{bottom:1048.448540px;}
.y25_c01142{bottom:1049.412647px;}
.y24_c01142{bottom:1051.673537px;}
.y23_c01142{bottom:1062.983900px;}
.y22_c01142{bottom:1064.036142px;}
.y21_c01142{bottom:1065.461704px;}
.y1e_c01142{bottom:1067.746512px;}
.y20_c01142{bottom:1067.882517px;}
.y1d_c01142{bottom:1069.518720px;}
.y1c_c01142{bottom:1070.966688px;}
.y1b_c01142{bottom:1072.055616px;}
.y1f_c01142{bottom:1073.826849px;}
.y1a_c01142{bottom:1074.524832px;}
.y19_c01142{bottom:1078.763472px;}
.y18_c01142{bottom:1080.932928px;}
.y17_c01142{bottom:1082.367792px;}
.y16_c01142{bottom:1085.203008px;}
.y15_c01142{bottom:1086.239568px;}
.y14_c01142{bottom:1088.382000px;}
.y13_c01142{bottom:1109.614332px;}
.y12_c01142{bottom:1111.482840px;}
.y11_c01142{bottom:1112.591064px;}
.y10_c01142{bottom:1114.931064px;}
.yf_c01142{bottom:1117.110036px;}
.ye_c01142{bottom:1120.021500px;}
.y2_c01142{bottom:1120.904268px;}
.yd_c01142{bottom:1121.587500px;}
.y1_c01142{bottom:1122.162000px;}
.yc_c01142{bottom:1176.034101px;}
.yb_c01142{bottom:1177.736691px;}
.ya_c01142{bottom:1178.827500px;}
.h11_c01142{height:17.992411px;}
.h25_c01142{height:17.993033px;}
.h1f_c01142{height:17.995004px;}
.h4_c01142{height:18.000000px;}
.hc_c01142{height:18.006083px;}
.hf_c01142{height:18.007567px;}
.ha_c01142{height:23.988297px;}
.h17_c01142{height:23.990710px;}
.h28_c01142{height:30.000390px;}
.h14_c01142{height:36.016196px;}
.h6_c01142{height:42.000000px;}
.h1a_c01142{height:47.983125px;}
.h15_c01142{height:53.979098px;}
.h2c_c01142{height:54.000000px;}
.h7_c01142{height:59.983348px;}
.h2d_c01142{height:60.000000px;}
.h10_c01142{height:65.972175px;}
.h12_c01142{height:65.976797px;}
.h1c_c01142{height:65.981682px;}
.h18_c01142{height:65.989505px;}
.h29_c01142{height:66.000858px;}
.hd_c01142{height:66.027747px;}
.h13_c01142{height:66.029693px;}
.h2a_c01142{height:66.030254px;}
.h9_c01142{height:71.964891px;}
.h24_c01142{height:71.972131px;}
.h1b_c01142{height:71.974688px;}
.h19_c01142{height:71.977316px;}
.h1e_c01142{height:71.980017px;}
.h1d_c01142{height:71.982790px;}
.h2_c01142{height:71.991540px;}
.h3_c01142{height:72.000000px;}
.h21_c01142{height:72.025376px;}
.he_c01142{height:72.030270px;}
.h2b_c01142{height:72.033004px;}
.h16_c01142{height:77.969808px;}
.h26_c01142{height:77.972578px;}
.h5_c01142{height:78.000000px;}
.h8_c01142{height:78.022461px;}
.hb_c01142{height:84.028387px;}
.h27_c01142{height:90.001170px;}
.h20_c01142{height:95.966250px;}
.h23_c01142{height:96.038872px;}
.h22_c01142{height:108.043731px;}
.h1_c01142{height:1258.500000px;}
.h0_c01142{height:1258.740000px;}
.w0_c01142{width:920.100000px;}
.w1_c01142{width:920.250000px;}
.x0_c01142{left:0.000000px;}
.x1_c01142{left:74.334000px;}
.xa_c01142{left:81.457500px;}
.x9_c01142{left:83.430000px;}
.x6_c01142{left:85.050000px;}
.x3_c01142{left:101.250000px;}
.x2_c01142{left:104.250054px;}
.x7_c01142{left:106.650000px;}
.xb_c01142{left:139.744500px;}
.x8_c01142{left:141.480000px;}
.x4_c01142{left:142.830000px;}
.x5_c01142{left:152.550000px;}
.x9e_c01142{left:182.670282px;}
.x97_c01142{left:186.669000px;}
.xc1_c01142{left:187.759367px;}
.x84_c01142{left:188.869743px;}
.x78_c01142{left:190.180500px;}
.x68_c01142{left:191.552819px;}
.x5f_c01142{left:193.409745px;}
.x52_c01142{left:195.622500px;}
.x39_c01142{left:198.024099px;}
.x2f_c01142{left:199.425000px;}
.x2a_c01142{left:200.791500px;}
.x16_c01142{left:202.372500px;}
.xf_c01142{left:204.330000px;}
.xc7_c01142{left:241.873610px;}
.xb5_c01142{left:244.260513px;}
.x9f_c01142{left:250.352630px;}
.x96_c01142{left:252.535802px;}
.x81_c01142{left:254.925000px;}
.x66_c01142{left:257.425500px;}
.x50_c01142{left:260.094170px;}
.x5c_c01142{left:262.132500px;}
.x4c_c01142{left:263.971614px;}
.x30_c01142{left:266.682000px;}
.x24_c01142{left:267.778819px;}
.x10_c01142{left:269.580000px;}
.x67_c01142{left:273.060849px;}
.x3a_c01142{left:275.910051px;}
.xaf_c01142{left:280.889310px;}
.x53_c01142{left:283.238296px;}
.x45_c01142{left:284.876254px;}
.x79_c01142{left:288.583998px;}
.xa7_c01142{left:291.058800px;}
.x98_c01142{left:294.534027px;}
.x8d_c01142{left:296.441739px;}
.xbc_c01142{left:297.694724px;}
.x31_c01142{left:298.830000px;}
.x72_c01142{left:300.215591px;}
.x17_c01142{left:301.616656px;}
.xa0_c01142{left:305.163425px;}
.x36_c01142{left:309.934476px;}
.x60_c01142{left:314.858775px;}
.x7a_c01142{left:321.029520px;}
.xa8_c01142{left:323.750076px;}
.x5d_c01142{left:327.124500px;}
.xc2_c01142{left:329.688768px;}
.x85_c01142{left:331.027659px;}
.xb6_c01142{left:332.245865px;}
.x2b_c01142{left:333.955500px;}
.x4d_c01142{left:339.440123px;}
.x82_c01142{left:342.886950px;}
.x25_c01142{left:345.666350px;}
.x73_c01142{left:347.463296px;}
.x8e_c01142{left:352.650474px;}
.x5e_c01142{left:360.613500px;}
.x8a_c01142{left:363.744950px;}
.x37_c01142{left:365.574195px;}
.x74_c01142{left:367.152087px;}
.x4e_c01142{left:372.940212px;}
.x3b_c01142{left:374.907567px;}
.x86_c01142{left:377.183309px;}
.x26_c01142{left:378.855299px;}
.x2c_c01142{left:379.861500px;}
.x61_c01142{left:382.676055px;}
.x2d_c01142{left:387.101154px;}
.x11_c01142{left:390.891000px;}
.x54_c01142{left:393.892032px;}
.x46_c01142{left:395.790729px;}
.xb9_c01142{left:397.915500px;}
.x51_c01142{left:398.969352px;}
.xa1_c01142{left:401.927736px;}
.xc3_c01142{left:408.343049px;}
.x7b_c01142{left:410.379081px;}
.xa9_c01142{left:413.631605px;}
.x8b_c01142{left:420.337301px;}
.x99_c01142{left:428.261666px;}
.x18_c01142{left:434.923216px;}
.x32_c01142{left:436.549500px;}
.xc_c01142{left:442.335000px;}
.x8f_c01142{left:451.517009px;}
.x69_c01142{left:457.287808px;}
.xaa_c01142{left:458.941749px;}
.xbd_c01142{left:463.653598px;}
.x83_c01142{left:467.683529px;}
.xd_c01142{left:471.011794px;}
.x4f_c01142{left:473.326646px;}
.x87_c01142{left:475.767707px;}
.x27_c01142{left:479.063599px;}
.x12_c01142{left:481.681500px;}
.x90_c01142{left:484.573918px;}
.x3c_c01142{left:485.641234px;}
.xba_c01142{left:487.014811px;}
.xb0_c01142{left:489.954036px;}
.x62_c01142{left:491.785650px;}
.x6e_c01142{left:497.912169px;}
.x19_c01142{left:502.650921px;}
.x55_c01142{left:504.554758px;}
.x47_c01142{left:506.705203px;}
.x1f_c01142{left:509.628469px;}
.xe_c01142{left:515.771990px;}
.x91_c01142{left:516.959500px;}
.x8c_c01142{left:518.560978px;}
.x28_c01142{left:523.222625px;}
.x9a_c01142{left:526.651677px;}
.xb7_c01142{left:527.742013px;}
.x3d_c01142{left:531.780384px;}
.x2e_c01142{left:533.620122px;}
.xb1_c01142{left:535.692751px;}
.xa2_c01142{left:537.135892px;}
.x88_c01142{left:542.115549px;}
.xb2_c01142{left:543.336000px;}
.x75_c01142{left:544.459102px;}
.xa5_c01142{left:545.784000px;}
.xab_c01142{left:547.759342px;}
.x56_c01142{left:549.869398px;}
.x48_c01142{left:553.109253px;}
.x7c_c01142{left:564.977827px;}
.xb8_c01142{left:566.016834px;}
.x9d_c01142{left:569.260086px;}
.xc4_c01142{left:574.373952px;}
.x13_c01142{left:579.181500px;}
.x89_c01142{left:586.393416px;}
.x76_c01142{left:599.268239px;}
.xbe_c01142{left:607.134973px;}
.x29_c01142{left:612.552306px;}
.x6a_c01142{left:622.965955px;}
.x14_c01142{left:625.357500px;}
.x3e_c01142{left:630.155487px;}
.x1a_c01142{left:634.975963px;}
.x9b_c01142{left:636.506712px;}
.x92_c01142{left:640.447888px;}
.x57_c01142{left:648.506662px;}
.x38_c01142{left:651.487769px;}
.xb3_c01142{left:653.444281px;}
.x33_c01142{left:655.177500px;}
.x49_c01142{left:663.520231px;}
.xbb_c01142{left:665.472675px;}
.xac_c01142{left:667.666315px;}
.xbf_c01142{left:674.387653px;}
.x7d_c01142{left:676.848345px;}
.x58_c01142{left:682.664970px;}
.x3f_c01142{left:686.070506px;}
.x34_c01142{left:688.311000px;}
.x44_c01142{left:689.788748px;}
.x9c_c01142{left:692.402261px;}
.x63_c01142{left:702.034005px;}
.x15_c01142{left:703.212000px;}
.x20_c01142{left:707.566019px;}
.x6f_c01142{left:708.574102px;}
.x7e_c01142{left:709.932228px;}
.x1b_c01142{left:712.061800px;}
.xad_c01142{left:713.868067px;}
.x59_c01142{left:715.618483px;}
.x64_c01142{left:716.745135px;}
.xc5_c01142{left:728.332839px;}
.xc0_c01142{left:731.730000px;}
.x6b_c01142{left:734.416896px;}
.x7f_c01142{left:743.416211px;}
.x1c_c01142{left:746.056771px;}
.xa3_c01142{left:747.511806px;}
.x93_c01142{left:750.488738px;}
.x65_c01142{left:752.244450px;}
.x77_c01142{left:755.305545px;}
.x6c_c01142{left:768.067326px;}
.xa6_c01142{left:779.418132px;}
.xa4_c01142{left:780.457827px;}
.x5a_c01142{left:784.038495px;}
.x40_c01142{left:786.036935px;}
.x21_c01142{left:788.151494px;}
.x1d_c01142{left:791.260522px;}
.x94_c01142{left:795.055626px;}
.x4a_c01142{left:796.712906px;}
.x6d_c01142{left:801.406120px;}
.x5b_c01142{left:806.784226px;}
.x35_c01142{left:810.718500px;}
.x70_c01142{left:815.716047px;}
.x4b_c01142{left:818.754342px;}
.x41_c01142{left:820.366476px;}
.x71_c01142{left:826.219487px;}
.xc6_c01142{left:830.251818px;}
.x80_c01142{left:833.643892px;}
.x22_c01142{left:835.606019px;}
.x95_c01142{left:841.011624px;}
.x1e_c01142{left:846.586641px;}
.x42_c01142{left:854.532518px;}
.xae_c01142{left:859.899890px;}
.xb4_c01142{left:865.994518px;}
.x23_c01142{left:870.656691px;}
.x43_c01142{left:878.484733px;}
.xcb_c01142{left:896.400000px;}
.xca_c01142{left:903.420000px;}
.xc8_c01142{left:904.770000px;}
.xc9_c01142{left:915.030000px;}
@media print{
.v0_c01142{vertical-align:0.000000pt;}
.ls0_c01142{letter-spacing:0.000000pt;}
.ws0_c01142{word-spacing:0.000000pt;}
.fsf_c01142{font-size:15.993255pt;}
.fs23_c01142{font-size:15.993807pt;}
.fs1d_c01142{font-size:15.995559pt;}
.fs2_c01142{font-size:16.000000pt;}
.fsa_c01142{font-size:16.005407pt;}
.fsd_c01142{font-size:16.006727pt;}
.fs8_c01142{font-size:21.322931pt;}
.fs15_c01142{font-size:21.325076pt;}
.fs26_c01142{font-size:26.667013pt;}
.fs12_c01142{font-size:32.014397pt;}
.fs4_c01142{font-size:37.333333pt;}
.fs18_c01142{font-size:42.651667pt;}
.fs13_c01142{font-size:47.981420pt;}
.fs2a_c01142{font-size:48.000000pt;}
.fs5_c01142{font-size:53.318531pt;}
.fs2b_c01142{font-size:53.333333pt;}
.fse_c01142{font-size:58.641933pt;}
.fs10_c01142{font-size:58.646042pt;}
.fs1a_c01142{font-size:58.650384pt;}
.fs16_c01142{font-size:58.657338pt;}
.fs27_c01142{font-size:58.667429pt;}
.fsb_c01142{font-size:58.691331pt;}
.fs11_c01142{font-size:58.693061pt;}
.fs28_c01142{font-size:58.693559pt;}
.fs7_c01142{font-size:63.968792pt;}
.fs22_c01142{font-size:63.975227pt;}
.fs19_c01142{font-size:63.977500pt;}
.fs17_c01142{font-size:63.979837pt;}
.fs1c_c01142{font-size:63.982238pt;}
.fs1b_c01142{font-size:63.984702pt;}
.fs0_c01142{font-size:63.992480pt;}
.fs1_c01142{font-size:64.000000pt;}
.fs1f_c01142{font-size:64.022556pt;}
.fsc_c01142{font-size:64.026906pt;}
.fs29_c01142{font-size:64.029337pt;}
.fs14_c01142{font-size:69.306496pt;}
.fs24_c01142{font-size:69.308958pt;}
.fs3_c01142{font-size:69.333333pt;}
.fs6_c01142{font-size:69.353298pt;}
.fs9_c01142{font-size:74.691900pt;}
.fs25_c01142{font-size:80.001040pt;}
.fs1e_c01142{font-size:85.303333pt;}
.fs21_c01142{font-size:85.367886pt;}
.fs20_c01142{font-size:96.038872pt;}
.y0_c01142{bottom:0.000000pt;}
.y116_c01142{bottom:8.880000pt;}
.y112_c01142{bottom:21.925579pt;}
.y111_c01142{bottom:23.059219pt;}
.y110_c01142{bottom:26.232475pt;}
.y10f_c01142{bottom:27.405931pt;}
.y10e_c01142{bottom:32.302939pt;}
.y10d_c01142{bottom:38.102323pt;}
.y115_c01142{bottom:38.878667pt;}
.y10c_c01142{bottom:39.700363pt;}
.y10b_c01142{bottom:43.950667pt;}
.y10a_c01142{bottom:45.428780pt;}
.y109_c01142{bottom:47.029628pt;}
.y108_c01142{bottom:49.270016pt;}
.y107_c01142{bottom:50.177036pt;}
.y106_c01142{bottom:53.313860pt;}
.y105_c01142{bottom:64.100000pt;}
.y104_c01142{bottom:66.834367pt;}
.y103_c01142{bottom:68.164807pt;}
.y102_c01142{bottom:70.857607pt;}
.y101_c01142{bottom:73.462627pt;}
.y100_c01142{bottom:76.602607pt;}
.yff_c01142{bottom:78.306787pt;}
.yfe_c01142{bottom:80.123707pt;}
.yfd_c01142{bottom:83.247607pt;}
.yfc_c01142{bottom:87.618667pt;}
.yfb_c01142{bottom:97.998459pt;}
.yfa_c01142{bottom:101.892267pt;}
.yf9_c01142{bottom:106.147851pt;}
.yf8_c01142{bottom:107.608635pt;}
.yf7_c01142{bottom:110.462667pt;}
.yf6_c01142{bottom:111.519195pt;}
.yf5_c01142{bottom:117.134667pt;}
.y114_c01142{bottom:120.000000pt;}
.y113_c01142{bottom:128.758667pt;}
.yf4_c01142{bottom:132.806384pt;}
.yf3_c01142{bottom:134.033023pt;}
.yf2_c01142{bottom:134.421445pt;}
.yf1_c01142{bottom:135.396679pt;}
.yf0_c01142{bottom:137.514060pt;}
.yef_c01142{bottom:139.567113pt;}
.yee_c01142{bottom:141.677473pt;}
.yed_c01142{bottom:145.459293pt;}
.yec_c01142{bottom:146.483767pt;}
.yeb_c01142{bottom:148.574667pt;}
.yea_c01142{bottom:173.502479pt;}
.ye9_c01142{bottom:174.284380pt;}
.ye8_c01142{bottom:175.697515pt;}
.ye7_c01142{bottom:182.337316pt;}
.ye6_c01142{bottom:190.694144pt;}
.ye5_c01142{bottom:192.360817pt;}
.ye4_c01142{bottom:197.553333pt;}
.ye3_c01142{bottom:198.348824pt;}
.ye2_c01142{bottom:201.266717pt;}
.ye1_c01142{bottom:202.813216pt;}
.ye0_c01142{bottom:206.191061pt;}
.ydf_c01142{bottom:209.174973pt;}
.yde_c01142{bottom:209.882027pt;}
.y9_c01142{bottom:210.248000pt;}
.y8_c01142{bottom:212.424000pt;}
.ydd_c01142{bottom:212.894667pt;}
.ydc_c01142{bottom:218.733115pt;}
.ydb_c01142{bottom:221.440720pt;}
.yda_c01142{bottom:225.489787pt;}
.yd9_c01142{bottom:227.627472pt;}
.yd8_c01142{bottom:229.081808pt;}
.yd7_c01142{bottom:232.192240pt;}
.yd6_c01142{bottom:233.175387pt;}
.yd5_c01142{bottom:237.284843pt;}
.yd4_c01142{bottom:239.381275pt;}
.y7_c01142{bottom:243.465333pt;}
.yd3_c01142{bottom:243.539957pt;}
.yd2_c01142{bottom:245.052533pt;}
.yd1_c01142{bottom:249.614667pt;}
.yd0_c01142{bottom:253.641557pt;}
.ycf_c01142{bottom:254.669045pt;}
.ycc_c01142{bottom:255.038875pt;}
.ycb_c01142{bottom:256.270091pt;}
.yce_c01142{bottom:259.430501pt;}
.yca_c01142{bottom:260.842435pt;}
.ycd_c01142{bottom:261.125333pt;}
.yc9_c01142{bottom:264.131987pt;}
.yc8_c01142{bottom:265.826043pt;}
.yc7_c01142{bottom:269.184811pt;}
.yc6_c01142{bottom:270.295571pt;}
.yc5_c01142{bottom:276.978667pt;}
.y6_c01142{bottom:279.977333pt;}
.yc4_c01142{bottom:298.747727pt;}
.yc3_c01142{bottom:302.337989pt;}
.yc2_c01142{bottom:303.468645pt;}
.yc1_c01142{bottom:304.932379pt;}
.y5_c01142{bottom:306.366667pt;}
.yc0_c01142{bottom:306.739279pt;}
.ybf_c01142{bottom:315.480149pt;}
.ybd_c01142{bottom:322.275021pt;}
.ybe_c01142{bottom:323.283916pt;}
.ybc_c01142{bottom:324.164939pt;}
.ybb_c01142{bottom:327.879312pt;}
.yba_c01142{bottom:329.694597pt;}
.yb9_c01142{bottom:331.206035pt;}
.yb8_c01142{bottom:334.199725pt;}
.yb7_c01142{bottom:335.727579pt;}
.yb6_c01142{bottom:339.374667pt;}
.yb5_c01142{bottom:369.378167pt;}
.yb4_c01142{bottom:380.324299pt;}
.yb3_c01142{bottom:381.919035pt;}
.yb2_c01142{bottom:383.465567pt;}
.yb1_c01142{bottom:386.517915pt;}
.yb0_c01142{bottom:387.284135pt;}
.yaf_c01142{bottom:391.569351pt;}
.yae_c01142{bottom:392.693175pt;}
.yad_c01142{bottom:393.840295pt;}
.yac_c01142{bottom:397.271099pt;}
.yab_c01142{bottom:399.221619pt;}
.yaa_c01142{bottom:402.974667pt;}
.ya9_c01142{bottom:416.434299pt;}
.ya8_c01142{bottom:418.341443pt;}
.ya7_c01142{bottom:422.804163pt;}
.ya6_c01142{bottom:426.125261pt;}
.ya5_c01142{bottom:428.038739pt;}
.ya4_c01142{bottom:433.934667pt;}
.ya3_c01142{bottom:453.118180pt;}
.ya2_c01142{bottom:454.457800pt;}
.ya1_c01142{bottom:456.465688pt;}
.ya0_c01142{bottom:459.448828pt;}
.y9f_c01142{bottom:460.844596pt;}
.y9e_c01142{bottom:462.502912pt;}
.y9d_c01142{bottom:465.146128pt;}
.y9c_c01142{bottom:489.040912pt;}
.y9b_c01142{bottom:493.038400pt;}
.y9a_c01142{bottom:494.092720pt;}
.y99_c01142{bottom:495.856000pt;}
.y98_c01142{bottom:508.030687pt;}
.y97_c01142{bottom:511.001145pt;}
.y96_c01142{bottom:512.103499pt;}
.y95_c01142{bottom:513.192680pt;}
.y94_c01142{bottom:516.875660pt;}
.y93_c01142{bottom:517.537911pt;}
.y92_c01142{bottom:520.446900pt;}
.y91_c01142{bottom:521.965331pt;}
.y90_c01142{bottom:524.906880pt;}
.y8f_c01142{bottom:525.975045pt;}
.y8e_c01142{bottom:529.214667pt;}
.y8d_c01142{bottom:541.072307pt;}
.y8c_c01142{bottom:542.678085pt;}
.y8b_c01142{bottom:546.764692pt;}
.y8a_c01142{bottom:548.764180pt;}
.y89_c01142{bottom:555.232504pt;}
.y88_c01142{bottom:555.950769pt;}
.y87_c01142{bottom:557.674409pt;}
.y86_c01142{bottom:559.220000pt;}
.y85_c01142{bottom:566.464673pt;}
.y84_c01142{bottom:566.894464pt;}
.y81_c01142{bottom:571.127631pt;}
.y83_c01142{bottom:571.279343pt;}
.y80_c01142{bottom:572.313909pt;}
.y7f_c01142{bottom:573.511227pt;}
.y7e_c01142{bottom:577.476839pt;}
.y82_c01142{bottom:579.900296pt;}
.y7d_c01142{bottom:581.759377pt;}
.y7c_c01142{bottom:583.372596pt;}
.y7b_c01142{bottom:587.338861pt;}
.y7a_c01142{bottom:588.922884pt;}
.y79_c01142{bottom:592.828449pt;}
.y78_c01142{bottom:617.714753pt;}
.y77_c01142{bottom:621.126413pt;}
.y76_c01142{bottom:621.613333pt;}
.y70_c01142{bottom:637.992013pt;}
.y75_c01142{bottom:638.025307pt;}
.y74_c01142{bottom:638.682893pt;}
.y73_c01142{bottom:639.219840pt;}
.y6f_c01142{bottom:639.781400pt;}
.y72_c01142{bottom:640.450440pt;}
.y6e_c01142{bottom:643.843080pt;}
.y71_c01142{bottom:644.143107pt;}
.y6d_c01142{bottom:644.907813pt;}
.y6c_c01142{bottom:648.496680pt;}
.y6b_c01142{bottom:650.726853pt;}
.y6a_c01142{bottom:654.720840pt;}
.y69_c01142{bottom:680.234200pt;}
.y68_c01142{bottom:681.141840pt;}
.y67_c01142{bottom:682.034880pt;}
.y66_c01142{bottom:683.768000pt;}
.y65_c01142{bottom:698.036581pt;}
.y64_c01142{bottom:698.765173pt;}
.y63_c01142{bottom:700.956805pt;}
.y62_c01142{bottom:702.012373pt;}
.y61_c01142{bottom:703.106533pt;}
.y60_c01142{bottom:706.266085pt;}
.y5f_c01142{bottom:707.717605pt;}
.y5e_c01142{bottom:711.262357pt;}
.y5d_c01142{bottom:714.806821pt;}
.y5c_c01142{bottom:717.613333pt;}
.y4_c01142{bottom:719.876000pt;}
.y5b_c01142{bottom:739.251016pt;}
.y5a_c01142{bottom:741.152140pt;}
.y58_c01142{bottom:741.474227pt;}
.y59_c01142{bottom:743.329648pt;}
.y57_c01142{bottom:744.421817pt;}
.y56_c01142{bottom:745.405940pt;}
.y55_c01142{bottom:747.622372pt;}
.y54_c01142{bottom:761.690336pt;}
.y53_c01142{bottom:762.357144pt;}
.y52_c01142{bottom:766.386552pt;}
.y51_c01142{bottom:769.726757pt;}
.y50_c01142{bottom:771.130595pt;}
.y4f_c01142{bottom:774.486032pt;}
.y4e_c01142{bottom:777.841469pt;}
.y4d_c01142{bottom:780.493333pt;}
.y4b_c01142{bottom:791.945235pt;}
.y4c_c01142{bottom:792.330968pt;}
.y4a_c01142{bottom:792.648075pt;}
.y49_c01142{bottom:793.650235pt;}
.y48_c01142{bottom:794.656609pt;}
.y47_c01142{bottom:797.588487pt;}
.y46_c01142{bottom:799.228685pt;}
.y45_c01142{bottom:802.114204pt;}
.y44_c01142{bottom:803.467707pt;}
.y43_c01142{bottom:806.715839pt;}
.y42_c01142{bottom:808.941241pt;}
.y41_c01142{bottom:809.620071pt;}
.y40_c01142{bottom:811.905364pt;}
.y3f_c01142{bottom:831.972096pt;}
.y3e_c01142{bottom:838.833885pt;}
.y3d_c01142{bottom:840.169404pt;}
.y3c_c01142{bottom:841.193819pt;}
.y3b_c01142{bottom:857.435952pt;}
.y3a_c01142{bottom:858.091545pt;}
.y39_c01142{bottom:861.246939pt;}
.y38_c01142{bottom:862.101047pt;}
.y37_c01142{bottom:865.223264pt;}
.y36_c01142{bottom:867.736791pt;}
.y35_c01142{bottom:868.997015pt;}
.y34_c01142{bottom:871.286893pt;}
.y33_c01142{bottom:872.115597pt;}
.y32_c01142{bottom:873.849333pt;}
.y3_c01142{bottom:874.930667pt;}
.y31_c01142{bottom:893.083741pt;}
.y30_c01142{bottom:897.121064pt;}
.y2f_c01142{bottom:898.636157pt;}
.y2e_c01142{bottom:900.909493pt;}
.y2d_c01142{bottom:901.970432pt;}
.y2c_c01142{bottom:903.501485pt;}
.y2b_c01142{bottom:905.048000pt;}
.y2a_c01142{bottom:925.922904pt;}
.y29_c01142{bottom:926.806399pt;}
.y28_c01142{bottom:928.227708pt;}
.y27_c01142{bottom:929.367708pt;}
.y26_c01142{bottom:931.954257pt;}
.y25_c01142{bottom:932.811241pt;}
.y24_c01142{bottom:934.820921pt;}
.y23_c01142{bottom:944.874577pt;}
.y22_c01142{bottom:945.809904pt;}
.y21_c01142{bottom:947.077071pt;}
.y1e_c01142{bottom:949.108011pt;}
.y20_c01142{bottom:949.228904pt;}
.y1d_c01142{bottom:950.683307pt;}
.y1c_c01142{bottom:951.970389pt;}
.y1b_c01142{bottom:952.938325pt;}
.y1f_c01142{bottom:954.512755pt;}
.y1a_c01142{bottom:955.133184pt;}
.y19_c01142{bottom:958.900864pt;}
.y18_c01142{bottom:960.829269pt;}
.y17_c01142{bottom:962.104704pt;}
.y16_c01142{bottom:964.624896pt;}
.y15_c01142{bottom:965.546283pt;}
.y14_c01142{bottom:967.450667pt;}
.y13_c01142{bottom:986.323851pt;}
.y12_c01142{bottom:987.984747pt;}
.y11_c01142{bottom:988.969835pt;}
.y10_c01142{bottom:991.049835pt;}
.yf_c01142{bottom:992.986699pt;}
.ye_c01142{bottom:995.574667pt;}
.y2_c01142{bottom:996.359349pt;}
.yd_c01142{bottom:996.966667pt;}
.y1_c01142{bottom:997.477333pt;}
.yc_c01142{bottom:1045.363645pt;}
.yb_c01142{bottom:1046.877059pt;}
.ya_c01142{bottom:1047.846667pt;}
.h11_c01142{height:15.993255pt;}
.h25_c01142{height:15.993807pt;}
.h1f_c01142{height:15.995559pt;}
.h4_c01142{height:16.000000pt;}
.hc_c01142{height:16.005407pt;}
.hf_c01142{height:16.006727pt;}
.ha_c01142{height:21.322931pt;}
.h17_c01142{height:21.325076pt;}
.h28_c01142{height:26.667013pt;}
.h14_c01142{height:32.014397pt;}
.h6_c01142{height:37.333333pt;}
.h1a_c01142{height:42.651667pt;}
.h15_c01142{height:47.981420pt;}
.h2c_c01142{height:48.000000pt;}
.h7_c01142{height:53.318531pt;}
.h2d_c01142{height:53.333333pt;}
.h10_c01142{height:58.641933pt;}
.h12_c01142{height:58.646042pt;}
.h1c_c01142{height:58.650384pt;}
.h18_c01142{height:58.657338pt;}
.h29_c01142{height:58.667429pt;}
.hd_c01142{height:58.691331pt;}
.h13_c01142{height:58.693061pt;}
.h2a_c01142{height:58.693559pt;}
.h9_c01142{height:63.968792pt;}
.h24_c01142{height:63.975227pt;}
.h1b_c01142{height:63.977500pt;}
.h19_c01142{height:63.979837pt;}
.h1e_c01142{height:63.982238pt;}
.h1d_c01142{height:63.984702pt;}
.h2_c01142{height:63.992480pt;}
.h3_c01142{height:64.000000pt;}
.h21_c01142{height:64.022556pt;}
.he_c01142{height:64.026906pt;}
.h2b_c01142{height:64.029337pt;}
.h16_c01142{height:69.306496pt;}
.h26_c01142{height:69.308958pt;}
.h5_c01142{height:69.333333pt;}
.h8_c01142{height:69.353298pt;}
.hb_c01142{height:74.691900pt;}
.h27_c01142{height:80.001040pt;}
.h20_c01142{height:85.303333pt;}
.h23_c01142{height:85.367886pt;}
.h22_c01142{height:96.038872pt;}
.h1_c01142{height:1118.666667pt;}
.h0_c01142{height:1118.880000pt;}
.w0_c01142{width:817.866667pt;}
.w1_c01142{width:818.000000pt;}
.x0_c01142{left:0.000000pt;}
.x1_c01142{left:66.074667pt;}
.xa_c01142{left:72.406667pt;}
.x9_c01142{left:74.160000pt;}
.x6_c01142{left:75.600000pt;}
.x3_c01142{left:90.000000pt;}
.x2_c01142{left:92.666715pt;}
.x7_c01142{left:94.800000pt;}
.xb_c01142{left:124.217333pt;}
.x8_c01142{left:125.760000pt;}
.x4_c01142{left:126.960000pt;}
.x5_c01142{left:135.600000pt;}
.x9e_c01142{left:162.373584pt;}
.x97_c01142{left:165.928000pt;}
.xc1_c01142{left:166.897215pt;}
.x84_c01142{left:167.884216pt;}
.x78_c01142{left:169.049333pt;}
.x68_c01142{left:170.269172pt;}
.x5f_c01142{left:171.919773pt;}
.x52_c01142{left:173.886667pt;}
.x39_c01142{left:176.021421pt;}
.x2f_c01142{left:177.266667pt;}
.x2a_c01142{left:178.481333pt;}
.x16_c01142{left:179.886667pt;}
.xf_c01142{left:181.626667pt;}
.xc7_c01142{left:214.998764pt;}
.xb5_c01142{left:217.120456pt;}
.x9f_c01142{left:222.535671pt;}
.x96_c01142{left:224.476268pt;}
.x81_c01142{left:226.600000pt;}
.x66_c01142{left:228.822667pt;}
.x50_c01142{left:231.194817pt;}
.x5c_c01142{left:233.006667pt;}
.x4c_c01142{left:234.641435pt;}
.x30_c01142{left:237.050667pt;}
.x24_c01142{left:238.025617pt;}
.x10_c01142{left:239.626667pt;}
.x67_c01142{left:242.720755pt;}
.x3a_c01142{left:245.253379pt;}
.xaf_c01142{left:249.679387pt;}
.x53_c01142{left:251.767375pt;}
.x45_c01142{left:253.223337pt;}
.x79_c01142{left:256.519109pt;}
.xa7_c01142{left:258.718933pt;}
.x98_c01142{left:261.808024pt;}
.x8d_c01142{left:263.503768pt;}
.xbc_c01142{left:264.617532pt;}
.x31_c01142{left:265.626667pt;}
.x72_c01142{left:266.858303pt;}
.x17_c01142{left:268.103695pt;}
.xa0_c01142{left:271.256377pt;}
.x36_c01142{left:275.497312pt;}
.x60_c01142{left:279.874467pt;}
.x7a_c01142{left:285.359573pt;}
.xa8_c01142{left:287.777845pt;}
.x5d_c01142{left:290.777333pt;}
.xc2_c01142{left:293.056683pt;}
.x85_c01142{left:294.246808pt;}
.xb6_c01142{left:295.329657pt;}
.x2b_c01142{left:296.849333pt;}
.x4d_c01142{left:301.724553pt;}
.x82_c01142{left:304.788400pt;}
.x25_c01142{left:307.258977pt;}
.x73_c01142{left:308.856263pt;}
.x8e_c01142{left:313.467088pt;}
.x5e_c01142{left:320.545333pt;}
.x8a_c01142{left:323.328844pt;}
.x37_c01142{left:324.954840pt;}
.x74_c01142{left:326.357411pt;}
.x4e_c01142{left:331.502411pt;}
.x3b_c01142{left:333.251171pt;}
.x86_c01142{left:335.274052pt;}
.x26_c01142{left:336.760265pt;}
.x2c_c01142{left:337.654667pt;}
.x61_c01142{left:340.156493pt;}
.x2d_c01142{left:344.089915pt;}
.x11_c01142{left:347.458667pt;}
.x54_c01142{left:350.126251pt;}
.x46_c01142{left:351.813981pt;}
.xb9_c01142{left:353.702667pt;}
.x51_c01142{left:354.639424pt;}
.xa1_c01142{left:357.269099pt;}
.xc3_c01142{left:362.971599pt;}
.x7b_c01142{left:364.781405pt;}
.xa9_c01142{left:367.672537pt;}
.x8b_c01142{left:373.633156pt;}
.x99_c01142{left:380.677036pt;}
.x18_c01142{left:386.598415pt;}
.x32_c01142{left:388.044000pt;}
.xc_c01142{left:393.186667pt;}
.x8f_c01142{left:401.348452pt;}
.x69_c01142{left:406.478052pt;}
.xaa_c01142{left:407.948221pt;}
.xbd_c01142{left:412.136532pt;}
.x83_c01142{left:415.718692pt;}
.xd_c01142{left:418.677151pt;}
.x4f_c01142{left:420.734796pt;}
.x87_c01142{left:422.904628pt;}
.x27_c01142{left:425.834311pt;}
.x12_c01142{left:428.161333pt;}
.x90_c01142{left:430.732372pt;}
.x3c_c01142{left:431.681097pt;}
.xba_c01142{left:432.902055pt;}
.xb0_c01142{left:435.514699pt;}
.x62_c01142{left:437.142800pt;}
.x6e_c01142{left:442.588595pt;}
.x19_c01142{left:446.800819pt;}
.x55_c01142{left:448.493119pt;}
.x47_c01142{left:450.404625pt;}
.x1f_c01142{left:453.003084pt;}
.xe_c01142{left:458.463991pt;}
.x91_c01142{left:459.519556pt;}
.x8c_c01142{left:460.943092pt;}
.x28_c01142{left:465.086777pt;}
.x9a_c01142{left:468.134824pt;}
.xb7_c01142{left:469.104012pt;}
.x3d_c01142{left:472.693675pt;}
.x2e_c01142{left:474.328997pt;}
.xb1_c01142{left:476.171335pt;}
.xa2_c01142{left:477.454127pt;}
.x88_c01142{left:481.880488pt;}
.xb2_c01142{left:482.965333pt;}
.x75_c01142{left:483.963647pt;}
.xa5_c01142{left:485.141333pt;}
.xab_c01142{left:486.897193pt;}
.x56_c01142{left:488.772799pt;}
.x48_c01142{left:491.652669pt;}
.x7c_c01142{left:502.202513pt;}
.xb8_c01142{left:503.126075pt;}
.x9d_c01142{left:506.008965pt;}
.xc4_c01142{left:510.554624pt;}
.x13_c01142{left:514.828000pt;}
.x89_c01142{left:521.238592pt;}
.x76_c01142{left:532.682879pt;}
.xbe_c01142{left:539.675532pt;}
.x29_c01142{left:544.490939pt;}
.x6a_c01142{left:553.747516pt;}
.x14_c01142{left:555.873333pt;}
.x3e_c01142{left:560.138211pt;}
.x1a_c01142{left:564.423079pt;}
.x9b_c01142{left:565.783744pt;}
.x92_c01142{left:569.287012pt;}
.x57_c01142{left:576.450367pt;}
.x38_c01142{left:579.100239pt;}
.xb3_c01142{left:580.839361pt;}
.x33_c01142{left:582.380000pt;}
.x49_c01142{left:589.795761pt;}
.xbb_c01142{left:591.531267pt;}
.xac_c01142{left:593.481169pt;}
.xbf_c01142{left:599.455692pt;}
.x7d_c01142{left:601.642973pt;}
.x58_c01142{left:606.813307pt;}
.x3f_c01142{left:609.840449pt;}
.x34_c01142{left:611.832000pt;}
.x44_c01142{left:613.145553pt;}
.x9c_c01142{left:615.468676pt;}
.x63_c01142{left:624.030227pt;}
.x15_c01142{left:625.077333pt;}
.x20_c01142{left:628.947572pt;}
.x6f_c01142{left:629.843647pt;}
.x7e_c01142{left:631.050869pt;}
.x1b_c01142{left:632.943823pt;}
.xad_c01142{left:634.549393pt;}
.x59_c01142{left:636.105319pt;}
.x64_c01142{left:637.106787pt;}
.xc5_c01142{left:647.406968pt;}
.xc0_c01142{left:650.426667pt;}
.x6b_c01142{left:652.815019pt;}
.x7f_c01142{left:660.814409pt;}
.x1c_c01142{left:663.161575pt;}
.xa3_c01142{left:664.454939pt;}
.x93_c01142{left:667.101100pt;}
.x65_c01142{left:668.661733pt;}
.x77_c01142{left:671.382707pt;}
.x6c_c01142{left:682.726512pt;}
.xa6_c01142{left:692.816117pt;}
.xa4_c01142{left:693.740291pt;}
.x5a_c01142{left:696.923107pt;}
.x40_c01142{left:698.699497pt;}
.x21_c01142{left:700.579105pt;}
.x1d_c01142{left:703.342687pt;}
.x94_c01142{left:706.716112pt;}
.x4a_c01142{left:708.189249pt;}
.x6d_c01142{left:712.360996pt;}
.x5b_c01142{left:717.141535pt;}
.x35_c01142{left:720.638667pt;}
.x70_c01142{left:725.080931pt;}
.x4b_c01142{left:727.781637pt;}
.x41_c01142{left:729.214645pt;}
.x71_c01142{left:734.417321pt;}
.xc6_c01142{left:738.001616pt;}
.x80_c01142{left:741.016793pt;}
.x22_c01142{left:742.760905pt;}
.x95_c01142{left:747.565888pt;}
.x1e_c01142{left:752.521459pt;}
.x42_c01142{left:759.584460pt;}
.xae_c01142{left:764.355457pt;}
.xb4_c01142{left:769.772905pt;}
.x23_c01142{left:773.917059pt;}
.x43_c01142{left:780.875319pt;}
.xcb_c01142{left:796.800000pt;}
.xca_c01142{left:803.040000pt;}
.xc8_c01142{left:804.240000pt;}
.xc9_c01142{left:813.360000pt;}
}





/* 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_c01143 {
    display:none;
  }
  .loading-indicator_c01143.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01143 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_c01143 { 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_c01143" -> "#page-container .classname_c01143")
 */
.pf_c01143 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01143 { /* 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_c01143.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01143 { /* 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_c01143 { /* 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_c01143 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01143 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01143 {overflow:visible;}
  }
}
.c_c01143 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01143 { /* 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_c01143:after { /* webkit #35443 */
  content: '';
}
.t_c01143:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01143 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 */
}
.__c01143 { /* 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_c01143 { /* info for Javascript */
  display:none;
}
.l_c01143 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01143 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01143 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01143: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_c01143 {
    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_c01143.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01143.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_c01143 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01143{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01143;src:url('chunks/assets/font_4da7a6454ecdf6444bf893b7.woff2')format("woff");}.ff1_c01143{font-family:ff1_c01143;line-height:1.000000;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;}
.m1_c01143{transform:matrix(0.067080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.067080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.067080,0.000000,0.000000,0.250000,0,0);}
.m3_c01143{transform:matrix(0.241870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241870,0.000000,0.000000,0.250000,0,0);}
.m0_c01143{transform:matrix(0.289505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289505,0.000000,0.000000,0.250000,0,0);}
.m2_c01143{transform:matrix(0.492035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492035,0.000000,0.000000,0.250000,0,0);}
.v0_c01143{vertical-align:0.000000px;}
.ls0_c01143{letter-spacing:0.000000px;}
.sc__c01143{text-shadow:none;}
.sc0_c01143{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__c01143{-webkit-text-stroke:0px transparent;}
.sc0_c01143{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01143{word-spacing:0.000000px;}
.fc0_c01143{color:transparent;}
.fs0_c01143{font-size:18.000000px;}
.y0_c01143{bottom:0.000000px;}
.y2_c01143{bottom:325.890000px;}
.y1_c01143{bottom:347.490000px;}
.h2_c01143{height:18.000000px;}
.h1_c01143{height:1258.500000px;}
.h0_c01143{height:1258.740000px;}
.w0_c01143{width:920.100000px;}
.w1_c01143{width:920.250000px;}
.x0_c01143{left:0.000000px;}
.x3_c01143{left:904.500000px;}
.x1_c01143{left:907.470000px;}
.x2_c01143{left:909.360000px;}
@media print{
.v0_c01143{vertical-align:0.000000pt;}
.ls0_c01143{letter-spacing:0.000000pt;}
.ws0_c01143{word-spacing:0.000000pt;}
.fs0_c01143{font-size:16.000000pt;}
.y0_c01143{bottom:0.000000pt;}
.y2_c01143{bottom:289.680000pt;}
.y1_c01143{bottom:308.880000pt;}
.h2_c01143{height:16.000000pt;}
.h1_c01143{height:1118.666667pt;}
.h0_c01143{height:1118.880000pt;}
.w0_c01143{width:817.866667pt;}
.w1_c01143{width:818.000000pt;}
.x0_c01143{left:0.000000pt;}
.x3_c01143{left:804.000000pt;}
.x1_c01143{left:806.640000pt;}
.x2_c01143{left:808.320000pt;}
}





/* 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_c01144 {
    display:none;
  }
  .loading-indicator_c01144.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01144 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_c01144 { 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_c01144" -> "#page-container .classname_c01144")
 */
.pf_c01144 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01144 { /* 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_c01144.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01144 { /* 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_c01144 { /* 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_c01144 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01144 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01144 {overflow:visible;}
  }
}
.c_c01144 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01144 { /* 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_c01144:after { /* webkit #35443 */
  content: '';
}
.t_c01144:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01144 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 */
}
.__c01144 { /* 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_c01144 { /* info for Javascript */
  display:none;
}
.l_c01144 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01144 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01144 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01144: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_c01144 {
    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_c01144.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01144.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_c01144 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01144{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01144;src:url('chunks/assets/font_7c6b9abe6ee2a268480c528b.woff2')format("woff");}.ff1_c01144{font-family:ff1_c01144;line-height:1.000000;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;}
.me4_c01144{transform:matrix(0.010605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.010605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.010605,0.000000,0.000000,0.250000,0,0);}
.m43_c01144{transform:matrix(0.011568,0.000220,-0.004749,0.249955,0,0);-ms-transform:matrix(0.011568,0.000220,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.011568,0.000220,-0.004749,0.249955,0,0);}
.m38_c01144{transform:matrix(0.014682,0.000279,-0.004749,0.249955,0,0);-ms-transform:matrix(0.014682,0.000279,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.014682,0.000279,-0.004749,0.249955,0,0);}
.m1d_c01144{transform:matrix(0.015908,0.000255,-0.003999,0.249968,0,0);-ms-transform:matrix(0.015908,0.000255,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.015908,0.000255,-0.003999,0.249968,0,0);}
.m4f_c01144{transform:matrix(0.059239,0.001126,-0.004749,0.249955,0,0);-ms-transform:matrix(0.059239,0.001126,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.059239,0.001126,-0.004749,0.249955,0,0);}
.m90_c01144{transform:matrix(0.068603,0.001303,-0.004749,0.249955,0,0);-ms-transform:matrix(0.068603,0.001303,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.068603,0.001303,-0.004749,0.249955,0,0);}
.m9a_c01144{transform:matrix(0.073417,0.001395,-0.004749,0.249955,0,0);-ms-transform:matrix(0.073417,0.001395,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.073417,0.001395,-0.004749,0.249955,0,0);}
.m25_c01144{transform:matrix(0.083609,0.001338,-0.003999,0.249968,0,0);-ms-transform:matrix(0.083609,0.001338,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.083609,0.001338,-0.003999,0.249968,0,0);}
.mc5_c01144{transform:matrix(0.091416,0.002103,-0.005748,0.249934,0,0);-ms-transform:matrix(0.091416,0.002103,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.091416,0.002103,-0.005748,0.249934,0,0);}
.mbc_c01144{transform:matrix(0.092416,0.002126,-0.005748,0.249934,0,0);-ms-transform:matrix(0.092416,0.002126,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.092416,0.002126,-0.005748,0.249934,0,0);}
.m9c_c01144{transform:matrix(0.102781,0.001953,-0.004749,0.249955,0,0);-ms-transform:matrix(0.102781,0.001953,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.102781,0.001953,-0.004749,0.249955,0,0);}
.m83_c01144{transform:matrix(0.114029,0.002167,-0.004749,0.249955,0,0);-ms-transform:matrix(0.114029,0.002167,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.114029,0.002167,-0.004749,0.249955,0,0);}
.m61_c01144{transform:matrix(0.125155,0.002253,-0.004499,0.249960,0,0);-ms-transform:matrix(0.125155,0.002253,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.125155,0.002253,-0.004499,0.249960,0,0);}
.m54_c01144{transform:matrix(0.127139,0.002034,-0.003999,0.249968,0,0);-ms-transform:matrix(0.127139,0.002034,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.127139,0.002034,-0.003999,0.249968,0,0);}
.m8f_c01144{transform:matrix(0.132241,0.002513,-0.004749,0.249955,0,0);-ms-transform:matrix(0.132241,0.002513,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.132241,0.002513,-0.004749,0.249955,0,0);}
.m33_c01144{transform:matrix(0.136575,0.002595,-0.004749,0.249955,0,0);-ms-transform:matrix(0.136575,0.002595,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.136575,0.002595,-0.004749,0.249955,0,0);}
.m32_c01144{transform:matrix(0.139515,0.002651,-0.004749,0.249955,0,0);-ms-transform:matrix(0.139515,0.002651,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.139515,0.002651,-0.004749,0.249955,0,0);}
.ma_c01144{transform:matrix(0.141947,0.002271,-0.003999,0.249968,0,0);-ms-transform:matrix(0.141947,0.002271,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.141947,0.002271,-0.003999,0.249968,0,0);}
.m9b_c01144{transform:matrix(0.144409,0.002744,-0.004749,0.249955,0,0);-ms-transform:matrix(0.144409,0.002744,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.144409,0.002744,-0.004749,0.249955,0,0);}
.m12_c01144{transform:matrix(0.145846,0.002334,-0.003999,0.249968,0,0);-ms-transform:matrix(0.145846,0.002334,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.145846,0.002334,-0.003999,0.249968,0,0);}
.m91_c01144{transform:matrix(0.151098,0.002871,-0.004749,0.249955,0,0);-ms-transform:matrix(0.151098,0.002871,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.151098,0.002871,-0.004749,0.249955,0,0);}
.m82_c01144{transform:matrix(0.151328,0.002875,-0.004749,0.249955,0,0);-ms-transform:matrix(0.151328,0.002875,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.151328,0.002875,-0.004749,0.249955,0,0);}
.m9d_c01144{transform:matrix(0.153222,0.002911,-0.004749,0.249955,0,0);-ms-transform:matrix(0.153222,0.002911,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.153222,0.002911,-0.004749,0.249955,0,0);}
.m71_c01144{transform:matrix(0.154352,0.002933,-0.004749,0.249955,0,0);-ms-transform:matrix(0.154352,0.002933,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.154352,0.002933,-0.004749,0.249955,0,0);}
.maf_c01144{transform:matrix(0.161516,0.003553,-0.005499,0.249940,0,0);-ms-transform:matrix(0.161516,0.003553,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.161516,0.003553,-0.005499,0.249940,0,0);}
.m39_c01144{transform:matrix(0.163251,0.003102,-0.004749,0.249955,0,0);-ms-transform:matrix(0.163251,0.003102,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.163251,0.003102,-0.004749,0.249955,0,0);}
.m3b_c01144{transform:matrix(0.164450,0.003125,-0.004749,0.249955,0,0);-ms-transform:matrix(0.164450,0.003125,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.164450,0.003125,-0.004749,0.249955,0,0);}
.m84_c01144{transform:matrix(0.168510,0.003202,-0.004749,0.249955,0,0);-ms-transform:matrix(0.168510,0.003202,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.168510,0.003202,-0.004749,0.249955,0,0);}
.m5b_c01144{transform:matrix(0.180232,0.002884,-0.003999,0.249968,0,0);-ms-transform:matrix(0.180232,0.002884,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.180232,0.002884,-0.003999,0.249968,0,0);}
.m50_c01144{transform:matrix(0.182517,0.002920,-0.003999,0.249968,0,0);-ms-transform:matrix(0.182517,0.002920,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.182517,0.002920,-0.003999,0.249968,0,0);}
.mc6_c01144{transform:matrix(0.186361,0.004286,-0.005748,0.249934,0,0);-ms-transform:matrix(0.186361,0.004286,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.186361,0.004286,-0.005748,0.249934,0,0);}
.mb_c01144{transform:matrix(0.186956,0.002991,-0.003999,0.249968,0,0);-ms-transform:matrix(0.186956,0.002991,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.186956,0.002991,-0.003999,0.249968,0,0);}
.m29_c01144{transform:matrix(0.189581,0.003033,-0.003999,0.249968,0,0);-ms-transform:matrix(0.189581,0.003033,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.189581,0.003033,-0.003999,0.249968,0,0);}
.m6a_c01144{transform:matrix(0.189714,0.003415,-0.004499,0.249960,0,0);-ms-transform:matrix(0.189714,0.003415,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.189714,0.003415,-0.004499,0.249960,0,0);}
.m0_c01144{transform:matrix(0.190185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190185,0.000000,0.000000,0.250000,0,0);}
.m13_c01144{transform:matrix(0.193105,0.003090,-0.003999,0.249968,0,0);-ms-transform:matrix(0.193105,0.003090,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.193105,0.003090,-0.003999,0.249968,0,0);}
.mf8_c01144{transform:matrix(0.194846,0.002338,-0.003000,0.249982,0,0);-ms-transform:matrix(0.194846,0.002338,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.194846,0.002338,-0.003000,0.249982,0,0);}
.mfa_c01144{transform:matrix(0.195241,0.002343,-0.003000,0.249982,0,0);-ms-transform:matrix(0.195241,0.002343,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.195241,0.002343,-0.003000,0.249982,0,0);}
.mc3_c01144{transform:matrix(0.196073,0.004510,-0.005748,0.249934,0,0);-ms-transform:matrix(0.196073,0.004510,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.196073,0.004510,-0.005748,0.249934,0,0);}
.mfc_c01144{transform:matrix(0.199366,0.002392,-0.003000,0.249982,0,0);-ms-transform:matrix(0.199366,0.002392,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.199366,0.002392,-0.003000,0.249982,0,0);}
.m6e_c01144{transform:matrix(0.199664,0.003794,-0.004749,0.249955,0,0);-ms-transform:matrix(0.199664,0.003794,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.199664,0.003794,-0.004749,0.249955,0,0);}
.md5_c01144{transform:matrix(0.200187,0.004604,-0.005748,0.249934,0,0);-ms-transform:matrix(0.200187,0.004604,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.200187,0.004604,-0.005748,0.249934,0,0);}
.mf0_c01144{transform:matrix(0.200835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200835,0.000000,0.000000,0.250000,0,0);}
.m5_c01144{transform:matrix(0.202730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202730,0.000000,0.000000,0.250000,0,0);}
.m5d_c01144{transform:matrix(0.203829,0.003261,-0.003999,0.249968,0,0);-ms-transform:matrix(0.203829,0.003261,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.203829,0.003261,-0.003999,0.249968,0,0);}
.m31_c01144{transform:matrix(0.203974,0.003264,-0.003999,0.249968,0,0);-ms-transform:matrix(0.203974,0.003264,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.203974,0.003264,-0.003999,0.249968,0,0);}
.mcf_c01144{transform:matrix(0.204006,0.004692,-0.005748,0.249934,0,0);-ms-transform:matrix(0.204006,0.004692,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.204006,0.004692,-0.005748,0.249934,0,0);}
.mf2_c01144{transform:matrix(0.204460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204460,0.000000,0.000000,0.250000,0,0);}
.me7_c01144{transform:matrix(0.205840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205840,0.000000,0.000000,0.250000,0,0);}
.m62_c01144{transform:matrix(0.206442,0.003716,-0.004499,0.249960,0,0);-ms-transform:matrix(0.206442,0.003716,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.206442,0.003716,-0.004499,0.249960,0,0);}
.m5a_c01144{transform:matrix(0.206989,0.003312,-0.003999,0.249968,0,0);-ms-transform:matrix(0.206989,0.003312,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.206989,0.003312,-0.003999,0.249968,0,0);}
.m65_c01144{transform:matrix(0.208166,0.003747,-0.004499,0.249960,0,0);-ms-transform:matrix(0.208166,0.003747,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.208166,0.003747,-0.004499,0.249960,0,0);}
.m6b_c01144{transform:matrix(0.208801,0.003758,-0.004499,0.249960,0,0);-ms-transform:matrix(0.208801,0.003758,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.208801,0.003758,-0.004499,0.249960,0,0);}
.m5f_c01144{transform:matrix(0.209898,0.003358,-0.003999,0.249968,0,0);-ms-transform:matrix(0.209898,0.003358,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.209898,0.003358,-0.003999,0.249968,0,0);}
.m8_c01144{transform:matrix(0.210395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210395,0.000000,0.000000,0.250000,0,0);}
.m5c_c01144{transform:matrix(0.211413,0.003383,-0.003999,0.249968,0,0);-ms-transform:matrix(0.211413,0.003383,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.211413,0.003383,-0.003999,0.249968,0,0);}
.mfb_c01144{transform:matrix(0.211470,0.002538,-0.003000,0.249982,0,0);-ms-transform:matrix(0.211470,0.002538,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.211470,0.002538,-0.003000,0.249982,0,0);}
.mf4_c01144{transform:matrix(0.211645,0.002540,-0.003000,0.249982,0,0);-ms-transform:matrix(0.211645,0.002540,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.211645,0.002540,-0.003000,0.249982,0,0);}
.m36_c01144{transform:matrix(0.211832,0.004025,-0.004749,0.249955,0,0);-ms-transform:matrix(0.211832,0.004025,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.211832,0.004025,-0.004749,0.249955,0,0);}
.m60_c01144{transform:matrix(0.212128,0.003394,-0.003999,0.249968,0,0);-ms-transform:matrix(0.212128,0.003394,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.212128,0.003394,-0.003999,0.249968,0,0);}
.m6c_c01144{transform:matrix(0.212471,0.003824,-0.004499,0.249960,0,0);-ms-transform:matrix(0.212471,0.003824,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.212471,0.003824,-0.004499,0.249960,0,0);}
.mdb_c01144{transform:matrix(0.213079,0.004901,-0.005748,0.249934,0,0);-ms-transform:matrix(0.213079,0.004901,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.213079,0.004901,-0.005748,0.249934,0,0);}
.md2_c01144{transform:matrix(0.213089,0.004901,-0.005748,0.249934,0,0);-ms-transform:matrix(0.213089,0.004901,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.213089,0.004901,-0.005748,0.249934,0,0);}
.md6_c01144{transform:matrix(0.214103,0.004924,-0.005748,0.249934,0,0);-ms-transform:matrix(0.214103,0.004924,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.214103,0.004924,-0.005748,0.249934,0,0);}
.m95_c01144{transform:matrix(0.215021,0.004085,-0.004749,0.249955,0,0);-ms-transform:matrix(0.215021,0.004085,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.215021,0.004085,-0.004749,0.249955,0,0);}
.m2a_c01144{transform:matrix(0.215167,0.003443,-0.003999,0.249968,0,0);-ms-transform:matrix(0.215167,0.003443,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.215167,0.003443,-0.003999,0.249968,0,0);}
.m20_c01144{transform:matrix(0.215592,0.003449,-0.003999,0.249968,0,0);-ms-transform:matrix(0.215592,0.003449,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.215592,0.003449,-0.003999,0.249968,0,0);}
.mfd_c01144{transform:matrix(0.216084,0.002593,-0.003000,0.249982,0,0);-ms-transform:matrix(0.216084,0.002593,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.216084,0.002593,-0.003000,0.249982,0,0);}
.m4d_c01144{transform:matrix(0.216296,0.004110,-0.004749,0.249955,0,0);-ms-transform:matrix(0.216296,0.004110,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.216296,0.004110,-0.004749,0.249955,0,0);}
.mc2_c01144{transform:matrix(0.216343,0.004976,-0.005748,0.249934,0,0);-ms-transform:matrix(0.216343,0.004976,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.216343,0.004976,-0.005748,0.249934,0,0);}
.m1f_c01144{transform:matrix(0.216472,0.003464,-0.003999,0.249968,0,0);-ms-transform:matrix(0.216472,0.003464,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.216472,0.003464,-0.003999,0.249968,0,0);}
.mc1_c01144{transform:matrix(0.216668,0.004983,-0.005748,0.249934,0,0);-ms-transform:matrix(0.216668,0.004983,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.216668,0.004983,-0.005748,0.249934,0,0);}
.m5e_c01144{transform:matrix(0.216677,0.003467,-0.003999,0.249968,0,0);-ms-transform:matrix(0.216677,0.003467,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.216677,0.003467,-0.003999,0.249968,0,0);}
.ma5_c01144{transform:matrix(0.216686,0.004117,-0.004749,0.249955,0,0);-ms-transform:matrix(0.216686,0.004117,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.216686,0.004117,-0.004749,0.249955,0,0);}
.mab_c01144{transform:matrix(0.216716,0.004118,-0.004749,0.249955,0,0);-ms-transform:matrix(0.216716,0.004118,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.216716,0.004118,-0.004749,0.249955,0,0);}
.m53_c01144{transform:matrix(0.217862,0.003486,-0.003999,0.249968,0,0);-ms-transform:matrix(0.217862,0.003486,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.217862,0.003486,-0.003999,0.249968,0,0);}
.m24_c01144{transform:matrix(0.218262,0.003492,-0.003999,0.249968,0,0);-ms-transform:matrix(0.218262,0.003492,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.218262,0.003492,-0.003999,0.249968,0,0);}
.me9_c01144{transform:matrix(0.218940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218940,0.000000,0.000000,0.250000,0,0);}
.m6d_c01144{transform:matrix(0.219205,0.004165,-0.004749,0.249955,0,0);-ms-transform:matrix(0.219205,0.004165,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.219205,0.004165,-0.004749,0.249955,0,0);}
.me1_c01144{transform:matrix(0.219477,0.005048,-0.005748,0.249934,0,0);-ms-transform:matrix(0.219477,0.005048,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.219477,0.005048,-0.005748,0.249934,0,0);}
.m2d_c01144{transform:matrix(0.219562,0.003513,-0.003999,0.249968,0,0);-ms-transform:matrix(0.219562,0.003513,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.219562,0.003513,-0.003999,0.249968,0,0);}
.m56_c01144{transform:matrix(0.219657,0.003515,-0.003999,0.249968,0,0);-ms-transform:matrix(0.219657,0.003515,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.219657,0.003515,-0.003999,0.249968,0,0);}
.mff_c01144{transform:matrix(0.220529,0.006175,-0.006997,0.249902,0,0);-ms-transform:matrix(0.220529,0.006175,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.220529,0.006175,-0.006997,0.249902,0,0);}
.mdd_c01144{transform:matrix(0.220672,0.005075,-0.005748,0.249934,0,0);-ms-transform:matrix(0.220672,0.005075,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.220672,0.005075,-0.005748,0.249934,0,0);}
.m69_c01144{transform:matrix(0.221349,0.003984,-0.004499,0.249960,0,0);-ms-transform:matrix(0.221349,0.003984,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.221349,0.003984,-0.004499,0.249960,0,0);}
.ma7_c01144{transform:matrix(0.221775,0.004214,-0.004749,0.249955,0,0);-ms-transform:matrix(0.221775,0.004214,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.221775,0.004214,-0.004749,0.249955,0,0);}
.m7d_c01144{transform:matrix(0.222085,0.004220,-0.004749,0.249955,0,0);-ms-transform:matrix(0.222085,0.004220,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.222085,0.004220,-0.004749,0.249955,0,0);}
.m23_c01144{transform:matrix(0.222462,0.003559,-0.003999,0.249968,0,0);-ms-transform:matrix(0.222462,0.003559,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.222462,0.003559,-0.003999,0.249968,0,0);}
.md3_c01144{transform:matrix(0.224371,0.005161,-0.005748,0.249934,0,0);-ms-transform:matrix(0.224371,0.005161,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.224371,0.005161,-0.005748,0.249934,0,0);}
.mbf_c01144{transform:matrix(0.224461,0.005163,-0.005748,0.249934,0,0);-ms-transform:matrix(0.224461,0.005163,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.224461,0.005163,-0.005748,0.249934,0,0);}
.ma2_c01144{transform:matrix(0.224614,0.004268,-0.004749,0.249955,0,0);-ms-transform:matrix(0.224614,0.004268,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.224614,0.004268,-0.004749,0.249955,0,0);}
.m59_c01144{transform:matrix(0.224841,0.003597,-0.003999,0.249968,0,0);-ms-transform:matrix(0.224841,0.003597,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.224841,0.003597,-0.003999,0.249968,0,0);}
.mf3_c01144{transform:matrix(0.224925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224925,0.000000,0.000000,0.250000,0,0);}
.mec_c01144{transform:matrix(0.225315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225315,0.000000,0.000000,0.250000,0,0);}
.m52_c01144{transform:matrix(0.225716,0.003611,-0.003999,0.249968,0,0);-ms-transform:matrix(0.225716,0.003611,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.225716,0.003611,-0.003999,0.249968,0,0);}
.m2c_c01144{transform:matrix(0.225846,0.003614,-0.003999,0.249968,0,0);-ms-transform:matrix(0.225846,0.003614,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.225846,0.003614,-0.003999,0.249968,0,0);}
.m9f_c01144{transform:matrix(0.225899,0.004292,-0.004749,0.249955,0,0);-ms-transform:matrix(0.225899,0.004292,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.225899,0.004292,-0.004749,0.249955,0,0);}
.mb4_c01144{transform:matrix(0.226010,0.004972,-0.005499,0.249940,0,0);-ms-transform:matrix(0.226010,0.004972,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.226010,0.004972,-0.005499,0.249940,0,0);}
.mbb_c01144{transform:matrix(0.226065,0.004973,-0.005499,0.249940,0,0);-ms-transform:matrix(0.226065,0.004973,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.226065,0.004973,-0.005499,0.249940,0,0);}
.m51_c01144{transform:matrix(0.227836,0.003645,-0.003999,0.249968,0,0);-ms-transform:matrix(0.227836,0.003645,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.227836,0.003645,-0.003999,0.249968,0,0);}
.mf_c01144{transform:matrix(0.228171,0.003651,-0.003999,0.249968,0,0);-ms-transform:matrix(0.228171,0.003651,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.228171,0.003651,-0.003999,0.249968,0,0);}
.m105_c01144{transform:matrix(0.228725,0.006404,-0.006997,0.249902,0,0);-ms-transform:matrix(0.228725,0.006404,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.228725,0.006404,-0.006997,0.249902,0,0);}
.m114_c01144{transform:matrix(0.228732,0.006176,-0.006748,0.249909,0,0);-ms-transform:matrix(0.228732,0.006176,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.228732,0.006176,-0.006748,0.249909,0,0);}
.m18_c01144{transform:matrix(0.228786,0.003661,-0.003999,0.249968,0,0);-ms-transform:matrix(0.228786,0.003661,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.228786,0.003661,-0.003999,0.249968,0,0);}
.ma8_c01144{transform:matrix(0.229424,0.004359,-0.004749,0.249955,0,0);-ms-transform:matrix(0.229424,0.004359,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.229424,0.004359,-0.004749,0.249955,0,0);}
.mc0_c01144{transform:matrix(0.229644,0.005282,-0.005748,0.249934,0,0);-ms-transform:matrix(0.229644,0.005282,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.229644,0.005282,-0.005748,0.249934,0,0);}
.m57_c01144{transform:matrix(0.229991,0.003680,-0.003999,0.249968,0,0);-ms-transform:matrix(0.229991,0.003680,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.229991,0.003680,-0.003999,0.249968,0,0);}
.mde_c01144{transform:matrix(0.230074,0.005292,-0.005748,0.249934,0,0);-ms-transform:matrix(0.230074,0.005292,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.230074,0.005292,-0.005748,0.249934,0,0);}
.m4_c01144{transform:matrix(0.230450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230450,0.000000,0.000000,0.250000,0,0);}
.mf6_c01144{transform:matrix(0.231133,0.002774,-0.003000,0.249982,0,0);-ms-transform:matrix(0.231133,0.002774,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.231133,0.002774,-0.003000,0.249982,0,0);}
.m49_c01144{transform:matrix(0.231363,0.004396,-0.004749,0.249955,0,0);-ms-transform:matrix(0.231363,0.004396,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.231363,0.004396,-0.004749,0.249955,0,0);}
.mf7_c01144{transform:matrix(0.231478,0.002778,-0.003000,0.249982,0,0);-ms-transform:matrix(0.231478,0.002778,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.231478,0.002778,-0.003000,0.249982,0,0);}
.mef_c01144{transform:matrix(0.231570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231570,0.000000,0.000000,0.250000,0,0);}
.mca_c01144{transform:matrix(0.232004,0.005336,-0.005748,0.249934,0,0);-ms-transform:matrix(0.232004,0.005336,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.232004,0.005336,-0.005748,0.249934,0,0);}
.ma1_c01144{transform:matrix(0.232453,0.004417,-0.004749,0.249955,0,0);-ms-transform:matrix(0.232453,0.004417,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.232453,0.004417,-0.004749,0.249955,0,0);}
.m26_c01144{transform:matrix(0.232755,0.003724,-0.003999,0.249968,0,0);-ms-transform:matrix(0.232755,0.003724,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.232755,0.003724,-0.003999,0.249968,0,0);}
.m28_c01144{transform:matrix(0.233130,0.003730,-0.003999,0.249968,0,0);-ms-transform:matrix(0.233130,0.003730,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.233130,0.003730,-0.003999,0.249968,0,0);}
.m6_c01144{transform:matrix(0.233450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233450,0.000000,0.000000,0.250000,0,0);}
.m21_c01144{transform:matrix(0.234065,0.003745,-0.003999,0.249968,0,0);-ms-transform:matrix(0.234065,0.003745,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.234065,0.003745,-0.003999,0.249968,0,0);}
.mac_c01144{transform:matrix(0.234483,0.004455,-0.004749,0.249955,0,0);-ms-transform:matrix(0.234483,0.004455,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.234483,0.004455,-0.004749,0.249955,0,0);}
.m6f_c01144{transform:matrix(0.236357,0.004491,-0.004749,0.249955,0,0);-ms-transform:matrix(0.236357,0.004491,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.236357,0.004491,-0.004749,0.249955,0,0);}
.m55_c01144{transform:matrix(0.236380,0.003782,-0.003999,0.249968,0,0);-ms-transform:matrix(0.236380,0.003782,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.236380,0.003782,-0.003999,0.249968,0,0);}
.m27_c01144{transform:matrix(0.236590,0.003785,-0.003999,0.249968,0,0);-ms-transform:matrix(0.236590,0.003785,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.236590,0.003785,-0.003999,0.249968,0,0);}
.me2_c01144{transform:matrix(0.236767,0.005446,-0.005748,0.249934,0,0);-ms-transform:matrix(0.236767,0.005446,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.236767,0.005446,-0.005748,0.249934,0,0);}
.m7_c01144{transform:matrix(0.237105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237105,0.000000,0.000000,0.250000,0,0);}
.m1e_c01144{transform:matrix(0.237355,0.003798,-0.003999,0.249968,0,0);-ms-transform:matrix(0.237355,0.003798,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.237355,0.003798,-0.003999,0.249968,0,0);}
.m110_c01144{transform:matrix(0.237988,0.006426,-0.006748,0.249909,0,0);-ms-transform:matrix(0.237988,0.006426,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.237988,0.006426,-0.006748,0.249909,0,0);}
.mc4_c01144{transform:matrix(0.238127,0.005477,-0.005748,0.249934,0,0);-ms-transform:matrix(0.238127,0.005477,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.238127,0.005477,-0.005748,0.249934,0,0);}
.m2b_c01144{transform:matrix(0.238260,0.003812,-0.003999,0.249968,0,0);-ms-transform:matrix(0.238260,0.003812,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.238260,0.003812,-0.003999,0.249968,0,0);}
.mf1_c01144{transform:matrix(0.238325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238325,0.000000,0.000000,0.250000,0,0);}
.m2e_c01144{transform:matrix(0.238724,0.003820,-0.003999,0.249968,0,0);-ms-transform:matrix(0.238724,0.003820,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.238724,0.003820,-0.003999,0.249968,0,0);}
.m64_c01144{transform:matrix(0.238801,0.004298,-0.004499,0.249960,0,0);-ms-transform:matrix(0.238801,0.004298,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.238801,0.004298,-0.004499,0.249960,0,0);}
.mad_c01144{transform:matrix(0.239137,0.004544,-0.004749,0.249955,0,0);-ms-transform:matrix(0.239137,0.004544,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.239137,0.004544,-0.004749,0.249955,0,0);}
.m19_c01144{transform:matrix(0.239264,0.003828,-0.003999,0.249968,0,0);-ms-transform:matrix(0.239264,0.003828,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.239264,0.003828,-0.003999,0.249968,0,0);}
.mdc_c01144{transform:matrix(0.239337,0.005505,-0.005748,0.249934,0,0);-ms-transform:matrix(0.239337,0.005505,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.239337,0.005505,-0.005748,0.249934,0,0);}
.m34_c01144{transform:matrix(0.239337,0.004547,-0.004749,0.249955,0,0);-ms-transform:matrix(0.239337,0.004547,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.239337,0.004547,-0.004749,0.249955,0,0);}
.mf9_c01144{transform:matrix(0.239423,0.002873,-0.003000,0.249982,0,0);-ms-transform:matrix(0.239423,0.002873,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.239423,0.002873,-0.003000,0.249982,0,0);}
.m9_c01144{transform:matrix(0.239465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239465,0.000000,0.000000,0.250000,0,0);}
.mb5_c01144{transform:matrix(0.239852,0.005277,-0.005499,0.249940,0,0);-ms-transform:matrix(0.239852,0.005277,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.239852,0.005277,-0.005499,0.249940,0,0);}
.md7_c01144{transform:matrix(0.240057,0.005521,-0.005748,0.249934,0,0);-ms-transform:matrix(0.240057,0.005521,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.240057,0.005521,-0.005748,0.249934,0,0);}
.mfe_c01144{transform:matrix(0.240903,0.002891,-0.003000,0.249982,0,0);-ms-transform:matrix(0.240903,0.002891,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.240903,0.002891,-0.003000,0.249982,0,0);}
.m7a_c01144{transform:matrix(0.241216,0.004583,-0.004749,0.249955,0,0);-ms-transform:matrix(0.241216,0.004583,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.241216,0.004583,-0.004749,0.249955,0,0);}
.m58_c01144{transform:matrix(0.241384,0.003862,-0.003999,0.249968,0,0);-ms-transform:matrix(0.241384,0.003862,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.241384,0.003862,-0.003999,0.249968,0,0);}
.mbd_c01144{transform:matrix(0.241451,0.005553,-0.005748,0.249934,0,0);-ms-transform:matrix(0.241451,0.005553,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.241451,0.005553,-0.005748,0.249934,0,0);}
.mc8_c01144{transform:matrix(0.241646,0.005558,-0.005748,0.249934,0,0);-ms-transform:matrix(0.241646,0.005558,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.241646,0.005558,-0.005748,0.249934,0,0);}
.m72_c01144{transform:matrix(0.241731,0.004593,-0.004749,0.249955,0,0);-ms-transform:matrix(0.241731,0.004593,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.241731,0.004593,-0.004749,0.249955,0,0);}
.m45_c01144{transform:matrix(0.241921,0.004597,-0.004749,0.249955,0,0);-ms-transform:matrix(0.241921,0.004597,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.241921,0.004597,-0.004749,0.249955,0,0);}
.mc7_c01144{transform:matrix(0.244105,0.005614,-0.005748,0.249934,0,0);-ms-transform:matrix(0.244105,0.005614,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.244105,0.005614,-0.005748,0.249934,0,0);}
.m89_c01144{transform:matrix(0.244426,0.004644,-0.004749,0.249955,0,0);-ms-transform:matrix(0.244426,0.004644,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.244426,0.004644,-0.004749,0.249955,0,0);}
.m37_c01144{transform:matrix(0.244501,0.004646,-0.004749,0.249955,0,0);-ms-transform:matrix(0.244501,0.004646,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.244501,0.004646,-0.004749,0.249955,0,0);}
.m8c_c01144{transform:matrix(0.244661,0.004649,-0.004749,0.249955,0,0);-ms-transform:matrix(0.244661,0.004649,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.244661,0.004649,-0.004749,0.249955,0,0);}
.me3_c01144{transform:matrix(0.244715,0.005628,-0.005748,0.249934,0,0);-ms-transform:matrix(0.244715,0.005628,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.244715,0.005628,-0.005748,0.249934,0,0);}
.med_c01144{transform:matrix(0.245265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245265,0.000000,0.000000,0.250000,0,0);}
.m7b_c01144{transform:matrix(0.245786,0.004670,-0.004749,0.249955,0,0);-ms-transform:matrix(0.245786,0.004670,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.245786,0.004670,-0.004749,0.249955,0,0);}
.mee_c01144{transform:matrix(0.245990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245990,0.000000,0.000000,0.250000,0,0);}
.mdf_c01144{transform:matrix(0.246145,0.005661,-0.005748,0.249934,0,0);-ms-transform:matrix(0.246145,0.005661,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.246145,0.005661,-0.005748,0.249934,0,0);}
.mda_c01144{transform:matrix(0.247395,0.005690,-0.005748,0.249934,0,0);-ms-transform:matrix(0.247395,0.005690,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.247395,0.005690,-0.005748,0.249934,0,0);}
.mc_c01144{transform:matrix(0.247488,0.003960,-0.003999,0.249968,0,0);-ms-transform:matrix(0.247488,0.003960,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.247488,0.003960,-0.003999,0.249968,0,0);}
.m70_c01144{transform:matrix(0.247655,0.004705,-0.004749,0.249955,0,0);-ms-transform:matrix(0.247655,0.004705,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.247655,0.004705,-0.004749,0.249955,0,0);}
.meb_c01144{transform:matrix(0.247670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247670,0.000000,0.000000,0.250000,0,0);}
.me_c01144{transform:matrix(0.248438,0.003975,-0.003999,0.249968,0,0);-ms-transform:matrix(0.248438,0.003975,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.248438,0.003975,-0.003999,0.249968,0,0);}
.ma6_c01144{transform:matrix(0.248565,0.004723,-0.004749,0.249955,0,0);-ms-transform:matrix(0.248565,0.004723,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.248565,0.004723,-0.004749,0.249955,0,0);}
.m35_c01144{transform:matrix(0.248670,0.004725,-0.004749,0.249955,0,0);-ms-transform:matrix(0.248670,0.004725,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.248670,0.004725,-0.004749,0.249955,0,0);}
.m30_c01144{transform:matrix(0.248918,0.003983,-0.003999,0.249968,0,0);-ms-transform:matrix(0.248918,0.003983,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.248918,0.003983,-0.003999,0.249968,0,0);}
.md4_c01144{transform:matrix(0.248934,0.005725,-0.005748,0.249934,0,0);-ms-transform:matrix(0.248934,0.005725,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.248934,0.005725,-0.005748,0.249934,0,0);}
.m92_c01144{transform:matrix(0.249305,0.004737,-0.004749,0.249955,0,0);-ms-transform:matrix(0.249305,0.004737,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.249305,0.004737,-0.004749,0.249955,0,0);}
.m4c_c01144{transform:matrix(0.249945,0.004749,-0.004749,0.249955,0,0);-ms-transform:matrix(0.249945,0.004749,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.249945,0.004749,-0.004749,0.249955,0,0);}
.me8_c01144{transform:matrix(0.249970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249970,0.000000,0.000000,0.250000,0,0);}
.md1_c01144{transform:matrix(0.250069,0.005752,-0.005748,0.249934,0,0);-ms-transform:matrix(0.250069,0.005752,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.250069,0.005752,-0.005748,0.249934,0,0);}
.ma0_c01144{transform:matrix(0.251150,0.004772,-0.004749,0.249955,0,0);-ms-transform:matrix(0.251150,0.004772,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.251150,0.004772,-0.004749,0.249955,0,0);}
.m103_c01144{transform:matrix(0.251621,0.007045,-0.006997,0.249902,0,0);-ms-transform:matrix(0.251621,0.007045,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.251621,0.007045,-0.006997,0.249902,0,0);}
.m73_c01144{transform:matrix(0.251635,0.004781,-0.004749,0.249955,0,0);-ms-transform:matrix(0.251635,0.004781,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.251635,0.004781,-0.004749,0.249955,0,0);}
.m80_c01144{transform:matrix(0.251705,0.004782,-0.004749,0.249955,0,0);-ms-transform:matrix(0.251705,0.004782,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.251705,0.004782,-0.004749,0.249955,0,0);}
.m75_c01144{transform:matrix(0.251960,0.004787,-0.004749,0.249955,0,0);-ms-transform:matrix(0.251960,0.004787,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.251960,0.004787,-0.004749,0.249955,0,0);}
.m98_c01144{transform:matrix(0.251980,0.004788,-0.004749,0.249955,0,0);-ms-transform:matrix(0.251980,0.004788,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.251980,0.004788,-0.004749,0.249955,0,0);}
.mc9_c01144{transform:matrix(0.252133,0.005799,-0.005748,0.249934,0,0);-ms-transform:matrix(0.252133,0.005799,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.252133,0.005799,-0.005748,0.249934,0,0);}
.m16_c01144{transform:matrix(0.252808,0.004045,-0.003999,0.249968,0,0);-ms-transform:matrix(0.252808,0.004045,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.252808,0.004045,-0.003999,0.249968,0,0);}
.mea_c01144{transform:matrix(0.253515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253515,0.000000,0.000000,0.250000,0,0);}
.md_c01144{transform:matrix(0.253638,0.004058,-0.003999,0.249968,0,0);-ms-transform:matrix(0.253638,0.004058,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.253638,0.004058,-0.003999,0.249968,0,0);}
.m93_c01144{transform:matrix(0.254184,0.004829,-0.004749,0.249955,0,0);-ms-transform:matrix(0.254184,0.004829,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.254184,0.004829,-0.004749,0.249955,0,0);}
.m81_c01144{transform:matrix(0.254454,0.004835,-0.004749,0.249955,0,0);-ms-transform:matrix(0.254454,0.004835,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.254454,0.004835,-0.004749,0.249955,0,0);}
.m74_c01144{transform:matrix(0.254519,0.004836,-0.004749,0.249955,0,0);-ms-transform:matrix(0.254519,0.004836,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.254519,0.004836,-0.004749,0.249955,0,0);}
.m40_c01144{transform:matrix(0.254934,0.004844,-0.004749,0.249955,0,0);-ms-transform:matrix(0.254934,0.004844,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.254934,0.004844,-0.004749,0.249955,0,0);}
.ma3_c01144{transform:matrix(0.254969,0.004844,-0.004749,0.249955,0,0);-ms-transform:matrix(0.254969,0.004844,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.254969,0.004844,-0.004749,0.249955,0,0);}
.mae_c01144{transform:matrix(0.255293,0.005616,-0.005499,0.249940,0,0);-ms-transform:matrix(0.255293,0.005616,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.255293,0.005616,-0.005499,0.249940,0,0);}
.me0_c01144{transform:matrix(0.255377,0.005874,-0.005748,0.249934,0,0);-ms-transform:matrix(0.255377,0.005874,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.255377,0.005874,-0.005748,0.249934,0,0);}
.m4a_c01144{transform:matrix(0.255689,0.004858,-0.004749,0.249955,0,0);-ms-transform:matrix(0.255689,0.004858,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.255689,0.004858,-0.004749,0.249955,0,0);}
.mcb_c01144{transform:matrix(0.256167,0.005892,-0.005748,0.249934,0,0);-ms-transform:matrix(0.256167,0.005892,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.256167,0.005892,-0.005748,0.249934,0,0);}
.m79_c01144{transform:matrix(0.256249,0.004869,-0.004749,0.249955,0,0);-ms-transform:matrix(0.256249,0.004869,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.256249,0.004869,-0.004749,0.249955,0,0);}
.mce_c01144{transform:matrix(0.256687,0.005904,-0.005748,0.249934,0,0);-ms-transform:matrix(0.256687,0.005904,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.256687,0.005904,-0.005748,0.249934,0,0);}
.m4e_c01144{transform:matrix(0.257404,0.004891,-0.004749,0.249955,0,0);-ms-transform:matrix(0.257404,0.004891,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.257404,0.004891,-0.004749,0.249955,0,0);}
.m94_c01144{transform:matrix(0.257499,0.004892,-0.004749,0.249955,0,0);-ms-transform:matrix(0.257499,0.004892,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.257499,0.004892,-0.004749,0.249955,0,0);}
.mbe_c01144{transform:matrix(0.257757,0.005928,-0.005748,0.249934,0,0);-ms-transform:matrix(0.257757,0.005928,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.257757,0.005928,-0.005748,0.249934,0,0);}
.m10_c01144{transform:matrix(0.257912,0.004127,-0.003999,0.249968,0,0);-ms-transform:matrix(0.257912,0.004127,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.257912,0.004127,-0.003999,0.249968,0,0);}
.mb8_c01144{transform:matrix(0.257953,0.005675,-0.005499,0.249940,0,0);-ms-transform:matrix(0.257953,0.005675,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.257953,0.005675,-0.005499,0.249940,0,0);}
.m3d_c01144{transform:matrix(0.257973,0.004901,-0.004749,0.249955,0,0);-ms-transform:matrix(0.257973,0.004901,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.257973,0.004901,-0.004749,0.249955,0,0);}
.m7e_c01144{transform:matrix(0.258268,0.004907,-0.004749,0.249955,0,0);-ms-transform:matrix(0.258268,0.004907,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.258268,0.004907,-0.004749,0.249955,0,0);}
.m86_c01144{transform:matrix(0.260388,0.004947,-0.004749,0.249955,0,0);-ms-transform:matrix(0.260388,0.004947,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.260388,0.004947,-0.004749,0.249955,0,0);}
.ma4_c01144{transform:matrix(0.260488,0.004949,-0.004749,0.249955,0,0);-ms-transform:matrix(0.260488,0.004949,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.260488,0.004949,-0.004749,0.249955,0,0);}
.m11_c01144{transform:matrix(0.261137,0.004178,-0.003999,0.249968,0,0);-ms-transform:matrix(0.261137,0.004178,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.261137,0.004178,-0.003999,0.249968,0,0);}
.m76_c01144{transform:matrix(0.261298,0.004965,-0.004749,0.249955,0,0);-ms-transform:matrix(0.261298,0.004965,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.261298,0.004965,-0.004749,0.249955,0,0);}
.m66_c01144{transform:matrix(0.262228,0.004720,-0.004499,0.249960,0,0);-ms-transform:matrix(0.262228,0.004720,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.262228,0.004720,-0.004499,0.249960,0,0);}
.m102_c01144{transform:matrix(0.262782,0.007358,-0.006997,0.249902,0,0);-ms-transform:matrix(0.262782,0.007358,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.262782,0.007358,-0.006997,0.249902,0,0);}
.m9e_c01144{transform:matrix(0.263242,0.005002,-0.004749,0.249955,0,0);-ms-transform:matrix(0.263242,0.005002,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.263242,0.005002,-0.004749,0.249955,0,0);}
.m48_c01144{transform:matrix(0.263372,0.005004,-0.004749,0.249955,0,0);-ms-transform:matrix(0.263372,0.005004,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.263372,0.005004,-0.004749,0.249955,0,0);}
.m78_c01144{transform:matrix(0.263657,0.005009,-0.004749,0.249955,0,0);-ms-transform:matrix(0.263657,0.005009,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.263657,0.005009,-0.004749,0.249955,0,0);}
.m112_c01144{transform:matrix(0.264114,0.007131,-0.006748,0.249909,0,0);-ms-transform:matrix(0.264114,0.007131,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.264114,0.007131,-0.006748,0.249909,0,0);}
.m113_c01144{transform:matrix(0.264239,0.007134,-0.006748,0.249909,0,0);-ms-transform:matrix(0.264239,0.007134,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.264239,0.007134,-0.006748,0.249909,0,0);}
.m8a_c01144{transform:matrix(0.264352,0.005023,-0.004749,0.249955,0,0);-ms-transform:matrix(0.264352,0.005023,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.264352,0.005023,-0.004749,0.249955,0,0);}
.m68_c01144{transform:matrix(0.264602,0.004763,-0.004499,0.249960,0,0);-ms-transform:matrix(0.264602,0.004763,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.264602,0.004763,-0.004499,0.249960,0,0);}
.m4b_c01144{transform:matrix(0.264992,0.005035,-0.004749,0.249955,0,0);-ms-transform:matrix(0.264992,0.005035,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.264992,0.005035,-0.004749,0.249955,0,0);}
.m77_c01144{transform:matrix(0.265032,0.005036,-0.004749,0.249955,0,0);-ms-transform:matrix(0.265032,0.005036,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.265032,0.005036,-0.004749,0.249955,0,0);}
.m87_c01144{transform:matrix(0.267462,0.005082,-0.004749,0.249955,0,0);-ms-transform:matrix(0.267462,0.005082,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.267462,0.005082,-0.004749,0.249955,0,0);}
.m100_c01144{transform:matrix(0.267470,0.007489,-0.006997,0.249902,0,0);-ms-transform:matrix(0.267470,0.007489,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.267470,0.007489,-0.006997,0.249902,0,0);}
.m96_c01144{transform:matrix(0.268142,0.005095,-0.004749,0.249955,0,0);-ms-transform:matrix(0.268142,0.005095,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.268142,0.005095,-0.004749,0.249955,0,0);}
.m104_c01144{transform:matrix(0.268360,0.007514,-0.006997,0.249902,0,0);-ms-transform:matrix(0.268360,0.007514,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.268360,0.007514,-0.006997,0.249902,0,0);}
.m42_c01144{transform:matrix(0.268447,0.005100,-0.004749,0.249955,0,0);-ms-transform:matrix(0.268447,0.005100,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.268447,0.005100,-0.004749,0.249955,0,0);}
.mf5_c01144{transform:matrix(0.269406,0.003233,-0.003000,0.249982,0,0);-ms-transform:matrix(0.269406,0.003233,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.269406,0.003233,-0.003000,0.249982,0,0);}
.m99_c01144{transform:matrix(0.269481,0.005120,-0.004749,0.249955,0,0);-ms-transform:matrix(0.269481,0.005120,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.269481,0.005120,-0.004749,0.249955,0,0);}
.m17_c01144{transform:matrix(0.269486,0.004312,-0.003999,0.249968,0,0);-ms-transform:matrix(0.269486,0.004312,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.269486,0.004312,-0.003999,0.249968,0,0);}
.m22_c01144{transform:matrix(0.270380,0.004326,-0.003999,0.249968,0,0);-ms-transform:matrix(0.270380,0.004326,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.270380,0.004326,-0.003999,0.249968,0,0);}
.m106_c01144{transform:matrix(0.271699,0.007608,-0.006997,0.249902,0,0);-ms-transform:matrix(0.271699,0.007608,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.271699,0.007608,-0.006997,0.249902,0,0);}
.m101_c01144{transform:matrix(0.271724,0.007608,-0.006997,0.249902,0,0);-ms-transform:matrix(0.271724,0.007608,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.271724,0.007608,-0.006997,0.249902,0,0);}
.mb2_c01144{transform:matrix(0.273679,0.006021,-0.005499,0.249940,0,0);-ms-transform:matrix(0.273679,0.006021,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.273679,0.006021,-0.005499,0.249940,0,0);}
.mb1_c01144{transform:matrix(0.274144,0.006031,-0.005499,0.249940,0,0);-ms-transform:matrix(0.274144,0.006031,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.274144,0.006031,-0.005499,0.249940,0,0);}
.m85_c01144{transform:matrix(0.274171,0.005209,-0.004749,0.249955,0,0);-ms-transform:matrix(0.274171,0.005209,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.274171,0.005209,-0.004749,0.249955,0,0);}
.m115_c01144{transform:matrix(0.274345,0.007407,-0.006748,0.249909,0,0);-ms-transform:matrix(0.274345,0.007407,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.274345,0.007407,-0.006748,0.249909,0,0);}
.mb0_c01144{transform:matrix(0.274489,0.006039,-0.005499,0.249940,0,0);-ms-transform:matrix(0.274489,0.006039,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.274489,0.006039,-0.005499,0.249940,0,0);}
.m1c_c01144{transform:matrix(0.274925,0.004399,-0.003999,0.249968,0,0);-ms-transform:matrix(0.274925,0.004399,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.274925,0.004399,-0.003999,0.249968,0,0);}
.m8b_c01144{transform:matrix(0.275900,0.005242,-0.004749,0.249955,0,0);-ms-transform:matrix(0.275900,0.005242,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.275900,0.005242,-0.004749,0.249955,0,0);}
.m116_c01144{transform:matrix(0.276194,0.007457,-0.006748,0.249909,0,0);-ms-transform:matrix(0.276194,0.007457,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.276194,0.007457,-0.006748,0.249909,0,0);}
.m1a_c01144{transform:matrix(0.277519,0.004440,-0.003999,0.249968,0,0);-ms-transform:matrix(0.277519,0.004440,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.277519,0.004440,-0.003999,0.249968,0,0);}
.mb7_c01144{transform:matrix(0.278278,0.006122,-0.005499,0.249940,0,0);-ms-transform:matrix(0.278278,0.006122,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.278278,0.006122,-0.005499,0.249940,0,0);}
.m88_c01144{transform:matrix(0.278485,0.005291,-0.004749,0.249955,0,0);-ms-transform:matrix(0.278485,0.005291,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.278485,0.005291,-0.004749,0.249955,0,0);}
.m10c_c01144{transform:matrix(0.279041,0.011173,-0.010002,0.249800,0,0);-ms-transform:matrix(0.279041,0.011173,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.279041,0.011173,-0.010002,0.249800,0,0);}
.mb6_c01144{transform:matrix(0.279292,0.006144,-0.005499,0.249940,0,0);-ms-transform:matrix(0.279292,0.006144,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.279292,0.006144,-0.005499,0.249940,0,0);}
.m117_c01144{transform:matrix(0.279768,0.007554,-0.006748,0.249909,0,0);-ms-transform:matrix(0.279768,0.007554,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.279768,0.007554,-0.006748,0.249909,0,0);}
.mb3_c01144{transform:matrix(0.280882,0.006179,-0.005499,0.249940,0,0);-ms-transform:matrix(0.280882,0.006179,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.280882,0.006179,-0.005499,0.249940,0,0);}
.m1b_c01144{transform:matrix(0.281489,0.004504,-0.003999,0.249968,0,0);-ms-transform:matrix(0.281489,0.004504,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.281489,0.004504,-0.003999,0.249968,0,0);}
.m14_c01144{transform:matrix(0.282209,0.004515,-0.003999,0.249968,0,0);-ms-transform:matrix(0.282209,0.004515,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.282209,0.004515,-0.003999,0.249968,0,0);}
.m41_c01144{transform:matrix(0.284729,0.005410,-0.004749,0.249955,0,0);-ms-transform:matrix(0.284729,0.005410,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.284729,0.005410,-0.004749,0.249955,0,0);}
.m3a_c01144{transform:matrix(0.284744,0.005410,-0.004749,0.249955,0,0);-ms-transform:matrix(0.284744,0.005410,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.284744,0.005410,-0.004749,0.249955,0,0);}
.m3f_c01144{transform:matrix(0.284749,0.005410,-0.004749,0.249955,0,0);-ms-transform:matrix(0.284749,0.005410,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.284749,0.005410,-0.004749,0.249955,0,0);}
.m15_c01144{transform:matrix(0.286483,0.004584,-0.003999,0.249968,0,0);-ms-transform:matrix(0.286483,0.004584,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.286483,0.004584,-0.003999,0.249968,0,0);}
.m46_c01144{transform:matrix(0.286743,0.005448,-0.004749,0.249955,0,0);-ms-transform:matrix(0.286743,0.005448,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.286743,0.005448,-0.004749,0.249955,0,0);}
.m8d_c01144{transform:matrix(0.287443,0.005461,-0.004749,0.249955,0,0);-ms-transform:matrix(0.287443,0.005461,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.287443,0.005461,-0.004749,0.249955,0,0);}
.m7c_c01144{transform:matrix(0.288598,0.005483,-0.004749,0.249955,0,0);-ms-transform:matrix(0.288598,0.005483,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.288598,0.005483,-0.004749,0.249955,0,0);}
.m111_c01144{transform:matrix(0.292938,0.007909,-0.006748,0.249909,0,0);-ms-transform:matrix(0.292938,0.007909,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.292938,0.007909,-0.006748,0.249909,0,0);}
.md9_c01144{transform:matrix(0.292943,0.006738,-0.005748,0.249934,0,0);-ms-transform:matrix(0.292943,0.006738,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.292943,0.006738,-0.005748,0.249934,0,0);}
.maa_c01144{transform:matrix(0.293517,0.005577,-0.004749,0.249955,0,0);-ms-transform:matrix(0.293517,0.005577,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.293517,0.005577,-0.004749,0.249955,0,0);}
.m97_c01144{transform:matrix(0.294917,0.005603,-0.004749,0.249955,0,0);-ms-transform:matrix(0.294917,0.005603,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.294917,0.005603,-0.004749,0.249955,0,0);}
.mcd_c01144{transform:matrix(0.295497,0.006796,-0.005748,0.249934,0,0);-ms-transform:matrix(0.295497,0.006796,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.295497,0.006796,-0.005748,0.249934,0,0);}
.m67_c01144{transform:matrix(0.298652,0.005376,-0.004499,0.249960,0,0);-ms-transform:matrix(0.298652,0.005376,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.298652,0.005376,-0.004499,0.249960,0,0);}
.m10d_c01144{transform:matrix(0.300539,0.012034,-0.010002,0.249800,0,0);-ms-transform:matrix(0.300539,0.012034,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.300539,0.012034,-0.010002,0.249800,0,0);}
.m3e_c01144{transform:matrix(0.303950,0.005775,-0.004749,0.249955,0,0);-ms-transform:matrix(0.303950,0.005775,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.303950,0.005775,-0.004749,0.249955,0,0);}
.m3c_c01144{transform:matrix(0.305825,0.005811,-0.004749,0.249955,0,0);-ms-transform:matrix(0.305825,0.005811,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.305825,0.005811,-0.004749,0.249955,0,0);}
.m2_c01144{transform:matrix(0.306185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306185,0.000000,0.000000,0.250000,0,0);}
.md8_c01144{transform:matrix(0.311243,0.007159,-0.005748,0.249934,0,0);-ms-transform:matrix(0.311243,0.007159,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.311243,0.007159,-0.005748,0.249934,0,0);}
.m63_c01144{transform:matrix(0.312219,0.005620,-0.004499,0.249960,0,0);-ms-transform:matrix(0.312219,0.005620,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.312219,0.005620,-0.004499,0.249960,0,0);}
.ma9_c01144{transform:matrix(0.315973,0.006003,-0.004749,0.249955,0,0);-ms-transform:matrix(0.315973,0.006003,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.315973,0.006003,-0.004749,0.249955,0,0);}
.mb9_c01144{transform:matrix(0.332335,0.007311,-0.005499,0.249940,0,0);-ms-transform:matrix(0.332335,0.007311,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.332335,0.007311,-0.005499,0.249940,0,0);}
.m7f_c01144{transform:matrix(0.343773,0.006532,-0.004749,0.249955,0,0);-ms-transform:matrix(0.343773,0.006532,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.343773,0.006532,-0.004749,0.249955,0,0);}
.mcc_c01144{transform:matrix(0.347568,0.007994,-0.005748,0.249934,0,0);-ms-transform:matrix(0.347568,0.007994,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.347568,0.007994,-0.005748,0.249934,0,0);}
.m1_c01144{transform:matrix(0.351900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351900,0.000000,0.000000,0.250000,0,0);}
.me6_c01144{transform:matrix(0.368735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368735,0.000000,0.000000,0.250000,0,0);}
.me5_c01144{transform:matrix(0.394910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394910,0.000000,0.000000,0.250000,0,0);}
.mba_c01144{transform:matrix(0.395009,0.008690,-0.005499,0.249940,0,0);-ms-transform:matrix(0.395009,0.008690,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.395009,0.008690,-0.005499,0.249940,0,0);}
.m3_c01144{transform:matrix(0.418515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418515,0.000000,0.000000,0.250000,0,0);}
.m47_c01144{transform:matrix(0.440231,0.008364,-0.004749,0.249955,0,0);-ms-transform:matrix(0.440231,0.008364,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.440231,0.008364,-0.004749,0.249955,0,0);}
.m118_c01144{transform:matrix(0.448117,0.012099,-0.006748,0.249909,0,0);-ms-transform:matrix(0.448117,0.012099,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.448117,0.012099,-0.006748,0.249909,0,0);}
.m8e_c01144{transform:matrix(0.484593,0.009207,-0.004749,0.249955,0,0);-ms-transform:matrix(0.484593,0.009207,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.484593,0.009207,-0.004749,0.249955,0,0);}
.m108_c01144{transform:matrix(0.487639,0.013654,-0.006997,0.249902,0,0);-ms-transform:matrix(0.487639,0.013654,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.487639,0.013654,-0.006997,0.249902,0,0);}
.m10a_c01144{transform:matrix(0.493167,0.013809,-0.006997,0.249902,0,0);-ms-transform:matrix(0.493167,0.013809,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.493167,0.013809,-0.006997,0.249902,0,0);}
.m44_c01144{transform:matrix(0.499820,0.009497,-0.004749,0.249955,0,0);-ms-transform:matrix(0.499820,0.009497,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.499820,0.009497,-0.004749,0.249955,0,0);}
.m10f_c01144{transform:matrix(0.506609,0.016735,-0.008254,0.249864,0,0);-ms-transform:matrix(0.506609,0.016735,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.506609,0.016735,-0.008254,0.249864,0,0);}
.m2f_c01144{transform:matrix(0.559343,0.008949,-0.003999,0.249968,0,0);-ms-transform:matrix(0.559343,0.008949,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.559343,0.008949,-0.003999,0.249968,0,0);}
.m109_c01144{transform:matrix(0.628079,0.017586,-0.006997,0.249902,0,0);-ms-transform:matrix(0.628079,0.017586,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.628079,0.017586,-0.006997,0.249902,0,0);}
.md0_c01144{transform:matrix(0.732496,0.016847,-0.005748,0.249934,0,0);-ms-transform:matrix(0.732496,0.016847,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.732496,0.016847,-0.005748,0.249934,0,0);}
.m10b_c01144{transform:matrix(1.017501,0.028490,-0.006997,0.249902,0,0);-ms-transform:matrix(1.017501,0.028490,-0.006997,0.249902,0,0);-webkit-transform:matrix(1.017501,0.028490,-0.006997,0.249902,0,0);}
.m10e_c01144{transform:matrix(1.034046,0.034158,-0.008254,0.249864,0,0);-ms-transform:matrix(1.034046,0.034158,-0.008254,0.249864,0,0);-webkit-transform:matrix(1.034046,0.034158,-0.008254,0.249864,0,0);}
.m107_c01144{transform:matrix(3.532860,0.098920,-0.006997,0.249902,0,0);-ms-transform:matrix(3.532860,0.098920,-0.006997,0.249902,0,0);-webkit-transform:matrix(3.532860,0.098920,-0.006997,0.249902,0,0);}
.v0_c01144{vertical-align:0.000000px;}
.ls0_c01144{letter-spacing:0.000000px;}
.sc__c01144{text-shadow:none;}
.sc0_c01144{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__c01144{-webkit-text-stroke:0px transparent;}
.sc0_c01144{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01144{word-spacing:0.000000px;}
.fc0_c01144{color:transparent;}
.fs16_c01144{font-size:29.986347px;}
.fs14_c01144{font-size:30.011758px;}
.fsc_c01144{font-size:60.014518px;}
.fs15_c01144{font-size:65.986832px;}
.fs6_c01144{font-size:66.011912px;}
.fs10_c01144{font-size:72.000000px;}
.fs2_c01144{font-size:72.009215px;}
.fsa_c01144{font-size:72.012995px;}
.fsb_c01144{font-size:72.017422px;}
.fs17_c01144{font-size:72.026239px;}
.fs13_c01144{font-size:72.028218px;}
.fs11_c01144{font-size:78.000000px;}
.fs1_c01144{font-size:78.009983px;}
.fs5_c01144{font-size:78.014078px;}
.fse_c01144{font-size:78.020628px;}
.fs0_c01144{font-size:84.000000px;}
.fs12_c01144{font-size:84.006048px;}
.fs4_c01144{font-size:84.010751px;}
.fs9_c01144{font-size:84.015161px;}
.fsd_c01144{font-size:84.022215px;}
.fs7_c01144{font-size:90.011519px;}
.fs8_c01144{font-size:90.014579px;}
.fs3_c01144{font-size:96.012287px;}
.fsf_c01144{font-size:96.025389px;}
.y0_c01144{bottom:0.000000px;}
.y11d_c01144{bottom:22.480506px;}
.y11c_c01144{bottom:27.823509px;}
.y11b_c01144{bottom:30.266752px;}
.y11a_c01144{bottom:32.645560px;}
.y119_c01144{bottom:33.542311px;}
.y118_c01144{bottom:35.590235px;}
.y117_c01144{bottom:36.210451px;}
.y116_c01144{bottom:42.489571px;}
.y115_c01144{bottom:44.559000px;}
.y114_c01144{bottom:74.668513px;}
.y113_c01144{bottom:77.229000px;}
.y112_c01144{bottom:91.550340px;}
.y111_c01144{bottom:92.901000px;}
.y10e_c01144{bottom:115.013604px;}
.y10f_c01144{bottom:115.013742px;}
.y10d_c01144{bottom:115.013856px;}
.y110_c01144{bottom:115.014048px;}
.y10c_c01144{bottom:115.014150px;}
.y10b_c01144{bottom:119.273070px;}
.y10a_c01144{bottom:120.225882px;}
.y109_c01144{bottom:122.419752px;}
.y108_c01144{bottom:124.219158px;}
.y107_c01144{bottom:126.404418px;}
.y106_c01144{bottom:129.181458px;}
.y105_c01144{bottom:130.497024px;}
.y104_c01144{bottom:132.310500px;}
.y103_c01144{bottom:159.161568px;}
.y102_c01144{bottom:159.706518px;}
.y101_c01144{bottom:160.636326px;}
.y100_c01144{bottom:161.171592px;}
.yff_c01144{bottom:161.692836px;}
.yfe_c01144{bottom:162.887010px;}
.yfd_c01144{bottom:163.433760px;}
.yfc_c01144{bottom:164.370318px;}
.yfb_c01144{bottom:165.552720px;}
.yfa_c01144{bottom:166.330140px;}
.yf9_c01144{bottom:166.861500px;}
.yf8_c01144{bottom:198.040500px;}
.yf7_c01144{bottom:198.754500px;}
.yf6_c01144{bottom:201.069000px;}
.yf5_c01144{bottom:201.526500px;}
.yf4_c01144{bottom:203.586000px;}
.yf3_c01144{bottom:225.178500px;}
.yf2_c01144{bottom:227.389500px;}
.yf1_c01144{bottom:228.327000px;}
.yf0_c01144{bottom:230.740500px;}
.yef_c01144{bottom:233.922000px;}
.yee_c01144{bottom:234.874500px;}
.yed_c01144{bottom:237.052500px;}
.yec_c01144{bottom:238.225500px;}
.yeb_c01144{bottom:241.389000px;}
.yea_c01144{bottom:245.014500px;}
.ye9_c01144{bottom:262.484920px;}
.ye8_c01144{bottom:263.087375px;}
.ye7_c01144{bottom:263.689621px;}
.ye6_c01144{bottom:265.677753px;}
.ye5_c01144{bottom:267.049353px;}
.ye4_c01144{bottom:268.279104px;}
.ye3_c01144{bottom:269.086740px;}
.ye2_c01144{bottom:270.283073px;}
.ye1_c01144{bottom:270.861562px;}
.ye0_c01144{bottom:272.436654px;}
.ydf_c01144{bottom:274.030896px;}
.yde_c01144{bottom:292.204611px;}
.ydd_c01144{bottom:294.448953px;}
.ydc_c01144{bottom:296.679064px;}
.ydb_c01144{bottom:297.798993px;}
.yda_c01144{bottom:299.769709px;}
.yd9_c01144{bottom:300.607008px;}
.yd8_c01144{bottom:301.976758px;}
.yd7_c01144{bottom:304.183773px;}
.yd6_c01144{bottom:305.021072px;}
.yd5_c01144{bottom:308.609635px;}
.yd4_c01144{bottom:310.768232px;}
.yd3_c01144{bottom:335.128539px;}
.yd2_c01144{bottom:335.957816px;}
.yd1_c01144{bottom:338.178822px;}
.yd0_c01144{bottom:340.017499px;}
.ycf_c01144{bottom:341.222930px;}
.yce_c01144{bottom:343.277336px;}
.ycd_c01144{bottom:344.550627px;}
.ycc_c01144{bottom:346.527029px;}
.ycb_c01144{bottom:347.528633px;}
.yca_c01144{bottom:348.574500px;}
.yc9_c01144{bottom:372.331530px;}
.yc8_c01144{bottom:373.076661px;}
.yc7_c01144{bottom:374.342293px;}
.yc6_c01144{bottom:375.865330px;}
.yc5_c01144{bottom:377.691864px;}
.yc4_c01144{bottom:379.170016px;}
.yc3_c01144{bottom:380.254835px;}
.yc2_c01144{bottom:382.505752px;}
.yc1_c01144{bottom:384.484500px;}
.yc0_c01144{bottom:400.291269px;}
.ybf_c01144{bottom:413.312112px;}
.ybe_c01144{bottom:415.259970px;}
.ybd_c01144{bottom:433.958448px;}
.ybc_c01144{bottom:436.263531px;}
.ybb_c01144{bottom:438.438759px;}
.yba_c01144{bottom:439.169610px;}
.yb9_c01144{bottom:439.906137px;}
.yb8_c01144{bottom:442.335795px;}
.yb7_c01144{bottom:444.533331px;}
.yb6_c01144{bottom:446.258142px;}
.yb5_c01144{bottom:448.188708px;}
.yb4_c01144{bottom:448.891080px;}
.yb3_c01144{bottom:450.367500px;}
.yb2_c01144{bottom:480.778932px;}
.yb1_c01144{bottom:482.446068px;}
.yb0_c01144{bottom:483.492787px;}
.yaf_c01144{bottom:484.145922px;}
.yae_c01144{bottom:486.227932px;}
.yad_c01144{bottom:487.084500px;}
.yac_c01144{bottom:509.362925px;}
.yab_c01144{bottom:511.191567px;}
.yaa_c01144{bottom:511.978693px;}
.ya9_c01144{bottom:514.297878px;}
.ya8_c01144{bottom:516.328145px;}
.ya7_c01144{bottom:517.079203px;}
.ya6_c01144{bottom:518.096127px;}
.ya5_c01144{bottom:520.148392px;}
.ya4_c01144{bottom:520.891653px;}
.ya3_c01144{bottom:523.948522px;}
.ya2_c01144{bottom:524.688933px;}
.ya1_c01144{bottom:525.147113px;}
.ya0_c01144{bottom:525.933583px;}
.y9f_c01144{bottom:544.131006px;}
.y9e_c01144{bottom:546.889792px;}
.y9d_c01144{bottom:549.194593px;}
.y9c_c01144{bottom:550.425089px;}
.y9b_c01144{bottom:552.743987px;}
.y9a_c01144{bottom:553.435875px;}
.y99_c01144{bottom:555.290984px;}
.y98_c01144{bottom:557.350329px;}
.y97_c01144{bottom:559.192595px;}
.y96_c01144{bottom:559.915185px;}
.y95_c01144{bottom:560.327934px;}
.y94_c01144{bottom:561.039677px;}
.y93_c01144{bottom:578.744640px;}
.y92_c01144{bottom:581.583124px;}
.y91_c01144{bottom:582.499269px;}
.y90_c01144{bottom:584.803181px;}
.y8f_c01144{bottom:586.864132px;}
.y8e_c01144{bottom:588.194810px;}
.y8d_c01144{bottom:590.618020px;}
.y8c_c01144{bottom:591.378901px;}
.y8b_c01144{bottom:592.565619px;}
.y8a_c01144{bottom:594.522127px;}
.y89_c01144{bottom:595.224835px;}
.y88_c01144{bottom:595.663686px;}
.y87_c01144{bottom:596.415286px;}
.y86_c01144{bottom:616.040152px;}
.y85_c01144{bottom:617.062267px;}
.y84_c01144{bottom:619.833013px;}
.y83_c01144{bottom:622.204749px;}
.y82_c01144{bottom:622.989150px;}
.y81_c01144{bottom:623.804830px;}
.y80_c01144{bottom:626.734375px;}
.y7f_c01144{bottom:627.260260px;}
.y7e_c01144{bottom:628.586371px;}
.y7d_c01144{bottom:630.713222px;}
.y7c_c01144{bottom:652.186234px;}
.y7b_c01144{bottom:654.534495px;}
.y7a_c01144{bottom:657.100690px;}
.y79_c01144{bottom:658.450346px;}
.y78_c01144{bottom:661.045904px;}
.y77_c01144{bottom:663.128551px;}
.y76_c01144{bottom:664.288807px;}
.y75_c01144{bottom:664.961156px;}
.y74_c01144{bottom:666.363019px;}
.y73_c01144{bottom:697.997842px;}
.y72_c01144{bottom:698.623588px;}
.y71_c01144{bottom:699.844500px;}
.y70_c01144{bottom:724.349727px;}
.y6f_c01144{bottom:725.530950px;}
.y6e_c01144{bottom:726.172983px;}
.y6d_c01144{bottom:727.753023px;}
.y6c_c01144{bottom:728.376399px;}
.y6b_c01144{bottom:730.358442px;}
.y6a_c01144{bottom:731.805777px;}
.y69_c01144{bottom:732.223845px;}
.y68_c01144{bottom:732.971232px;}
.y67_c01144{bottom:735.749478px;}
.y66_c01144{bottom:736.488954px;}
.y65_c01144{bottom:737.104500px;}
.y64_c01144{bottom:758.913780px;}
.y63_c01144{bottom:760.090848px;}
.y62_c01144{bottom:761.209356px;}
.y61_c01144{bottom:761.912364px;}
.y60_c01144{bottom:763.007460px;}
.y5f_c01144{bottom:763.672464px;}
.y5e_c01144{bottom:764.558136px;}
.y5d_c01144{bottom:765.675852px;}
.y5c_c01144{bottom:767.692008px;}
.y5b_c01144{bottom:769.441404px;}
.y5a_c01144{bottom:770.311044px;}
.y59_c01144{bottom:772.110252px;}
.y58_c01144{bottom:772.738572px;}
.y57_c01144{bottom:774.090948px;}
.y56_c01144{bottom:803.646696px;}
.y55_c01144{bottom:805.957464px;}
.y54_c01144{bottom:806.493000px;}
.y53_c01144{bottom:828.560103px;}
.y52_c01144{bottom:831.881189px;}
.y51_c01144{bottom:832.488395px;}
.y50_c01144{bottom:833.906883px;}
.y4f_c01144{bottom:836.492699px;}
.y4e_c01144{bottom:838.300701px;}
.y4d_c01144{bottom:838.692819px;}
.y4c_c01144{bottom:840.715796px;}
.y4b_c01144{bottom:841.425035px;}
.y4a_c01144{bottom:842.431445px;}
.y49_c01144{bottom:843.471648px;}
.y48_c01144{bottom:864.731428px;}
.y47_c01144{bottom:865.944788px;}
.y46_c01144{bottom:870.146286px;}
.y45_c01144{bottom:871.413254px;}
.y44_c01144{bottom:872.059804px;}
.y43_c01144{bottom:873.650504px;}
.y42_c01144{bottom:875.856403px;}
.y41_c01144{bottom:876.697952px;}
.y40_c01144{bottom:878.587786px;}
.y3f_c01144{bottom:879.363215px;}
.y3e_c01144{bottom:880.468787px;}
.y3d_c01144{bottom:900.250193px;}
.y3c_c01144{bottom:908.369814px;}
.y3b_c01144{bottom:910.767576px;}
.y3a_c01144{bottom:911.398367px;}
.y39_c01144{bottom:913.061256px;}
.y38_c01144{bottom:914.317679px;}
.y37_c01144{bottom:914.920853px;}
.y36_c01144{bottom:915.574500px;}
.y33_c01144{bottom:941.783976px;}
.y34_c01144{bottom:941.784444px;}
.y35_c01144{bottom:941.784876px;}
.y32_c01144{bottom:973.492968px;}
.y31_c01144{bottom:974.442060px;}
.y30_c01144{bottom:975.218124px;}
.y2f_c01144{bottom:977.081880px;}
.y2e_c01144{bottom:978.248304px;}
.y2d_c01144{bottom:978.821376px;}
.y2c_c01144{bottom:980.684772px;}
.y2b_c01144{bottom:982.377996px;}
.y2a_c01144{bottom:983.870952px;}
.y29_c01144{bottom:1004.772636px;}
.y28_c01144{bottom:1005.984348px;}
.y27_c01144{bottom:1006.405200px;}
.y26_c01144{bottom:1008.299784px;}
.y25_c01144{bottom:1008.756336px;}
.y24_c01144{bottom:1009.177188px;}
.y23_c01144{bottom:1009.914816px;}
.y22_c01144{bottom:1010.335668px;}
.y21_c01144{bottom:1011.073296px;}
.y20_c01144{bottom:1012.056300px;}
.y1f_c01144{bottom:1013.762628px;}
.y1e_c01144{bottom:1014.923928px;}
.y1d_c01144{bottom:1049.138388px;}
.y1c_c01144{bottom:1053.541896px;}
.y1b_c01144{bottom:1080.592368px;}
.y1a_c01144{bottom:1080.958896px;}
.y19_c01144{bottom:1082.748528px;}
.y18_c01144{bottom:1083.279888px;}
.y17_c01144{bottom:1083.819816px;}
.y16_c01144{bottom:1084.904352px;}
.y15_c01144{bottom:1085.236200px;}
.y14_c01144{bottom:1087.379880px;}
.y13_c01144{bottom:1088.969640px;}
.y12_c01144{bottom:1089.615888px;}
.y11_c01144{bottom:1089.993000px;}
.y10_c01144{bottom:1117.956192px;}
.yf_c01144{bottom:1119.915984px;}
.ye_c01144{bottom:1120.624368px;}
.yd_c01144{bottom:1122.024216px;}
.yc_c01144{bottom:1124.003064px;}
.yb_c01144{bottom:1125.424152px;}
.ya_c01144{bottom:1126.070208px;}
.y9_c01144{bottom:1126.443000px;}
.y8_c01144{bottom:1155.120000px;}
.y7_c01144{bottom:1155.525000px;}
.y6_c01144{bottom:1156.840500px;}
.y5_c01144{bottom:1158.072000px;}
.y4_c01144{bottom:1158.594000px;}
.y3_c01144{bottom:1159.779000px;}
.y2_c01144{bottom:1161.271500px;}
.y1_c01144{bottom:1208.805000px;}
.h18_c01144{height:29.986347px;}
.h16_c01144{height:30.011758px;}
.he_c01144{height:60.014518px;}
.h17_c01144{height:65.986832px;}
.h8_c01144{height:66.011912px;}
.h12_c01144{height:72.000000px;}
.h4_c01144{height:72.009215px;}
.hc_c01144{height:72.012995px;}
.hd_c01144{height:72.017422px;}
.h19_c01144{height:72.026239px;}
.h15_c01144{height:72.028218px;}
.h13_c01144{height:78.000000px;}
.h3_c01144{height:78.009983px;}
.h7_c01144{height:78.014078px;}
.h10_c01144{height:78.020628px;}
.h2_c01144{height:84.000000px;}
.h14_c01144{height:84.006048px;}
.h6_c01144{height:84.010751px;}
.hb_c01144{height:84.015161px;}
.hf_c01144{height:84.022215px;}
.h9_c01144{height:90.011519px;}
.ha_c01144{height:90.014579px;}
.h5_c01144{height:96.012287px;}
.h11_c01144{height:96.025389px;}
.h1_c01144{height:1258.500000px;}
.h0_c01144{height:1258.740000px;}
.w0_c01144{width:920.100000px;}
.w1_c01144{width:920.250000px;}
.x0_c01144{left:0.000000px;}
.x4_c01144{left:55.240500px;}
.xb9_c01144{left:80.928000px;}
.x87_c01144{left:83.895000px;}
.x5d_c01144{left:86.190082px;}
.x33_c01144{left:87.770550px;}
.x1c_c01144{left:89.397396px;}
.x98_c01144{left:94.116117px;}
.x8f_c01144{left:96.198000px;}
.x6b_c01144{left:98.272915px;}
.x4f_c01144{left:110.481000px;}
.x2c_c01144{left:111.829500px;}
.xb_c01144{left:114.607500px;}
.x6c_c01144{left:132.460478px;}
.xc_c01144{left:137.907000px;}
.x93_c01144{left:141.099000px;}
.x50_c01144{left:144.678000px;}
.x2d_c01144{left:146.232000px;}
.x73_c01144{left:151.867504px;}
.x5e_c01144{left:152.943546px;}
.x45_c01144{left:154.599036px;}
.xba_c01144{left:157.573500px;}
.xd_c01144{left:178.285500px;}
.x5_c01144{left:179.670000px;}
.x88_c01144{left:182.931000px;}
.x63_c01144{left:184.590490px;}
.x51_c01144{left:185.760000px;}
.x34_c01144{left:186.770550px;}
.x3c_c01144{left:201.478020px;}
.xad_c01144{left:202.863000px;}
.xa6_c01144{left:224.037000px;}
.x82_c01144{left:226.813500px;}
.x29_c01144{left:231.135732px;}
.x1a_c01144{left:233.554020px;}
.x3d_c01144{left:240.859761px;}
.x2e_c01144{left:244.105500px;}
.x43_c01144{left:264.384000px;}
.xe_c01144{left:267.103500px;}
.x89_c01144{left:270.684000px;}
.x83_c01144{left:271.896000px;}
.x64_c01144{left:273.232083px;}
.x46_c01144{left:275.936760px;}
.x13_c01144{left:277.357500px;}
.x6_c01144{left:278.466000px;}
.x90_c01144{left:280.096500px;}
.x35_c01144{left:286.235550px;}
.xaf_c01144{left:289.576500px;}
.x5b_c01144{left:295.927500px;}
.x9f_c01144{left:302.128431px;}
.x2a_c01144{left:308.094936px;}
.x1d_c01144{left:309.978480px;}
.x7a_c01144{left:316.713813px;}
.x47_c01144{left:319.411476px;}
.x7_c01144{left:321.939000px;}
.x99_c01144{left:324.025560px;}
.x94_c01144{left:325.938000px;}
.x6d_c01144{left:327.174863px;}
.x5c_c01144{left:328.861500px;}
.x36_c01144{left:330.527550px;}
.x2f_c01144{left:331.626000px;}
.xa7_c01144{left:337.018500px;}
.x52_c01144{left:340.107000px;}
.x2b_c01144{left:342.389220px;}
.xac_c01144{left:346.356000px;}
.x7b_c01144{left:349.040862px;}
.x65_c01144{left:350.408758px;}
.x3e_c01144{left:353.255398px;}
.x9a_c01144{left:357.493507px;}
.x6e_c01144{left:361.771896px;}
.x30_c01144{left:364.825500px;}
.xa0_c01144{left:368.563556px;}
.x74_c01144{left:372.027625px;}
.x3f_c01144{left:375.077826px;}
.xa8_c01144{left:378.934500px;}
.x53_c01144{left:381.628500px;}
.x1e_c01144{left:385.576104px;}
.x26_c01144{left:386.680488px;}
.xf_c01144{left:390.781500px;}
.x54_c01144{left:404.854500px;}
.x48_c01144{left:406.899384px;}
.x44_c01144{left:408.807000px;}
.x14_c01144{left:411.337500px;}
.xa1_c01144{left:413.400696px;}
.x84_c01144{left:415.851000px;}
.x1_c01144{left:418.500000px;}
.x27_c01144{left:420.434460px;}
.xb7_c01144{left:421.741500px;}
.x8_c01144{left:424.549500px;}
.x15_c01144{left:432.078000px;}
.xb0_c01144{left:435.741000px;}
.x7c_c01144{left:438.258579px;}
.x2_c01144{left:442.530000px;}
.x37_c01144{left:446.627550px;}
.x8a_c01144{left:448.972500px;}
.x1b_c01144{left:453.727932px;}
.xb8_c01144{left:455.474234px;}
.xa9_c01144{left:456.709500px;}
.x75_c01144{left:460.345762px;}
.x5f_c01144{left:462.921747px;}
.x95_c01144{left:467.670000px;}
.x85_c01144{left:470.941500px;}
.x66_c01144{left:472.452159px;}
.x1f_c01144{left:474.672876px;}
.x10_c01144{left:478.272000px;}
.x7d_c01144{left:482.461716px;}
.x55_c01144{left:485.262000px;}
.x3_c01144{left:488.160000px;}
.x31_c01144{left:491.023500px;}
.x76_c01144{left:493.286008px;}
.x16_c01144{left:499.861500px;}
.x67_c01144{left:506.458438px;}
.x49_c01144{left:507.683928px;}
.xb1_c01144{left:513.786000px;}
.x7e_c01144{left:515.120236px;}
.x11_c01144{left:522.546000px;}
.xae_c01144{left:524.520000px;}
.x60_c01144{left:527.164296px;}
.x38_c01144{left:530.348550px;}
.x20_c01144{left:531.371088px;}
.x6f_c01144{left:532.414178px;}
.x9_c01144{left:534.160500px;}
.x91_c01144{left:537.163500px;}
.x68_c01144{left:539.134332px;}
.x96_c01144{left:547.612500px;}
.x86_c01144{left:558.685500px;}
.x21_c01144{left:563.769648px;}
.x17_c01144{left:566.817000px;}
.xa_c01144{left:567.915000px;}
.xb2_c01144{left:578.050500px;}
.xb4_c01144{left:587.121912px;}
.x8b_c01144{left:592.890000px;}
.x56_c01144{left:595.375500px;}
.x22_c01144{left:598.868328px;}
.x77_c01144{left:603.723819px;}
.x4a_c01144{left:607.858020px;}
.xbb_c01144{left:610.270500px;}
.x9b_c01144{left:612.841743px;}
.x40_c01144{left:619.204471px;}
.x92_c01144{left:624.588000px;}
.x70_c01144{left:626.116848px;}
.x57_c01144{left:630.007500px;}
.x39_c01144{left:631.060050px;}
.x69_c01144{left:637.979455px;}
.x4b_c01144{left:641.074884px;}
.x12_c01144{left:645.033000px;}
.x61_c01144{left:649.354150px;}
.xb5_c01144{left:653.568450px;}
.xb3_c01144{left:656.403000px;}
.x9c_c01144{left:657.619173px;}
.x78_c01144{left:662.326596px;}
.xa2_c01144{left:668.407521px;}
.x18_c01144{left:678.669000px;}
.x97_c01144{left:680.233500px;}
.xb6_c01144{left:688.412250px;}
.xaa_c01144{left:690.543000px;}
.x4c_c01144{left:695.827380px;}
.x41_c01144{left:698.047482px;}
.x28_c01144{left:700.200996px;}
.x19_c01144{left:701.577000px;}
.x7f_c01144{left:704.234872px;}
.x58_c01144{left:717.787500px;}
.x8c_c01144{left:724.984500px;}
.x42_c01144{left:731.822137px;}
.xa3_c01144{left:735.402249px;}
.x80_c01144{left:738.475779px;}
.x23_c01144{left:744.661836px;}
.x9d_c01144{left:746.815567px;}
.x59_c01144{left:753.456000px;}
.x62_c01144{left:761.179404px;}
.xa4_c01144{left:770.580000px;}
.x71_c01144{left:772.532526px;}
.x24_c01144{left:777.060396px;}
.x4d_c01144{left:786.885048px;}
.x6a_c01144{left:795.983436px;}
.xab_c01144{left:803.002500px;}
.x81_c01144{left:817.977237px;}
.x5a_c01144{left:819.079500px;}
.x8d_c01144{left:829.761000px;}
.x9e_c01144{left:836.565427px;}
.x4e_c01144{left:845.729280px;}
.x3a_c01144{left:852.191550px;}
.x25_c01144{left:870.234360px;}
.xa5_c01144{left:895.590000px;}
.xbc_c01144{left:898.650000px;}
.x72_c01144{left:901.550673px;}
.x79_c01144{left:903.479947px;}
.x8e_c01144{left:908.203128px;}
.x3b_c01144{left:916.052550px;}
.x32_c01144{left:918.372000px;}
@media print{
.v0_c01144{vertical-align:0.000000pt;}
.ls0_c01144{letter-spacing:0.000000pt;}
.ws0_c01144{word-spacing:0.000000pt;}
.fs16_c01144{font-size:26.654531pt;}
.fs14_c01144{font-size:26.677118pt;}
.fsc_c01144{font-size:53.346238pt;}
.fs15_c01144{font-size:58.654961pt;}
.fs6_c01144{font-size:58.677255pt;}
.fs10_c01144{font-size:64.000000pt;}
.fs2_c01144{font-size:64.008191pt;}
.fsa_c01144{font-size:64.011551pt;}
.fsb_c01144{font-size:64.015486pt;}
.fs17_c01144{font-size:64.023324pt;}
.fs13_c01144{font-size:64.025083pt;}
.fs11_c01144{font-size:69.333333pt;}
.fs1_c01144{font-size:69.342207pt;}
.fs5_c01144{font-size:69.345847pt;}
.fse_c01144{font-size:69.351670pt;}
.fs0_c01144{font-size:74.666667pt;}
.fs12_c01144{font-size:74.672042pt;}
.fs4_c01144{font-size:74.676223pt;}
.fs9_c01144{font-size:74.680143pt;}
.fsd_c01144{font-size:74.686413pt;}
.fs7_c01144{font-size:80.010239pt;}
.fs8_c01144{font-size:80.012959pt;}
.fs3_c01144{font-size:85.344255pt;}
.fsf_c01144{font-size:85.355901pt;}
.y0_c01144{bottom:0.000000pt;}
.y11d_c01144{bottom:19.982672pt;}
.y11c_c01144{bottom:24.732008pt;}
.y11b_c01144{bottom:26.903780pt;}
.y11a_c01144{bottom:29.018276pt;}
.y119_c01144{bottom:29.815388pt;}
.y118_c01144{bottom:31.635764pt;}
.y117_c01144{bottom:32.187068pt;}
.y116_c01144{bottom:37.768508pt;}
.y115_c01144{bottom:39.608000pt;}
.y114_c01144{bottom:66.372012pt;}
.y113_c01144{bottom:68.648000pt;}
.y112_c01144{bottom:81.378080pt;}
.y111_c01144{bottom:82.578667pt;}
.y10e_c01144{bottom:102.234315pt;}
.y10f_c01144{bottom:102.234437pt;}
.y10d_c01144{bottom:102.234539pt;}
.y110_c01144{bottom:102.234709pt;}
.y10c_c01144{bottom:102.234800pt;}
.y10b_c01144{bottom:106.020507pt;}
.y10a_c01144{bottom:106.867451pt;}
.y109_c01144{bottom:108.817557pt;}
.y108_c01144{bottom:110.417029pt;}
.y107_c01144{bottom:112.359483pt;}
.y106_c01144{bottom:114.827963pt;}
.y105_c01144{bottom:115.997355pt;}
.y104_c01144{bottom:117.609333pt;}
.y103_c01144{bottom:141.476949pt;}
.y102_c01144{bottom:141.961349pt;}
.y101_c01144{bottom:142.787845pt;}
.y100_c01144{bottom:143.263637pt;}
.yff_c01144{bottom:143.726965pt;}
.yfe_c01144{bottom:144.788453pt;}
.yfd_c01144{bottom:145.274453pt;}
.yfc_c01144{bottom:146.106949pt;}
.yfb_c01144{bottom:147.157973pt;}
.yfa_c01144{bottom:147.849013pt;}
.yf9_c01144{bottom:148.321333pt;}
.yf8_c01144{bottom:176.036000pt;}
.yf7_c01144{bottom:176.670667pt;}
.yf6_c01144{bottom:178.728000pt;}
.yf5_c01144{bottom:179.134667pt;}
.yf4_c01144{bottom:180.965333pt;}
.yf3_c01144{bottom:200.158667pt;}
.yf2_c01144{bottom:202.124000pt;}
.yf1_c01144{bottom:202.957333pt;}
.yf0_c01144{bottom:205.102667pt;}
.yef_c01144{bottom:207.930667pt;}
.yee_c01144{bottom:208.777333pt;}
.yed_c01144{bottom:210.713333pt;}
.yec_c01144{bottom:211.756000pt;}
.yeb_c01144{bottom:214.568000pt;}
.yea_c01144{bottom:217.790667pt;}
.ye9_c01144{bottom:233.319929pt;}
.ye8_c01144{bottom:233.855444pt;}
.ye7_c01144{bottom:234.390775pt;}
.ye6_c01144{bottom:236.158003pt;}
.ye5_c01144{bottom:237.377203pt;}
.ye4_c01144{bottom:238.470315pt;}
.ye3_c01144{bottom:239.188213pt;}
.ye2_c01144{bottom:240.251620pt;}
.ye1_c01144{bottom:240.765833pt;}
.ye0_c01144{bottom:242.165915pt;}
.ydf_c01144{bottom:243.583019pt;}
.yde_c01144{bottom:259.737432pt;}
.ydd_c01144{bottom:261.732403pt;}
.ydc_c01144{bottom:263.714724pt;}
.ydb_c01144{bottom:264.710216pt;}
.yda_c01144{bottom:266.461964pt;}
.yd9_c01144{bottom:267.206229pt;}
.yd8_c01144{bottom:268.423785pt;}
.yd7_c01144{bottom:270.385576pt;}
.yd6_c01144{bottom:271.129841pt;}
.yd5_c01144{bottom:274.319676pt;}
.yd4_c01144{bottom:276.238428pt;}
.yd3_c01144{bottom:297.892035pt;}
.yd2_c01144{bottom:298.629169pt;}
.yd1_c01144{bottom:300.603397pt;}
.yd0_c01144{bottom:302.237777pt;}
.ycf_c01144{bottom:303.309271pt;}
.yce_c01144{bottom:305.135409pt;}
.ycd_c01144{bottom:306.267224pt;}
.ycc_c01144{bottom:308.024025pt;}
.ycb_c01144{bottom:308.914340pt;}
.yca_c01144{bottom:309.844000pt;}
.yc9_c01144{bottom:330.961360pt;}
.yc8_c01144{bottom:331.623699pt;}
.yc7_c01144{bottom:332.748705pt;}
.yc6_c01144{bottom:334.102516pt;}
.yc5_c01144{bottom:335.726101pt;}
.yc4_c01144{bottom:337.040015pt;}
.yc3_c01144{bottom:338.004297pt;}
.yc2_c01144{bottom:340.005113pt;}
.yc1_c01144{bottom:341.764000pt;}
.yc0_c01144{bottom:355.814461pt;}
.ybf_c01144{bottom:367.388544pt;}
.ybe_c01144{bottom:369.119973pt;}
.ybd_c01144{bottom:385.740843pt;}
.ybc_c01144{bottom:387.789805pt;}
.ybb_c01144{bottom:389.723341pt;}
.yba_c01144{bottom:390.372987pt;}
.yb9_c01144{bottom:391.027677pt;}
.yb8_c01144{bottom:393.187373pt;}
.yb7_c01144{bottom:395.140739pt;}
.yb6_c01144{bottom:396.673904pt;}
.yb5_c01144{bottom:398.389963pt;}
.yb4_c01144{bottom:399.014293pt;}
.yb3_c01144{bottom:400.326667pt;}
.yb2_c01144{bottom:427.359051pt;}
.yb1_c01144{bottom:428.840949pt;}
.yb0_c01144{bottom:429.771367pt;}
.yaf_c01144{bottom:430.351931pt;}
.yae_c01144{bottom:432.202607pt;}
.yad_c01144{bottom:432.964000pt;}
.yac_c01144{bottom:452.767044pt;}
.yab_c01144{bottom:454.392504pt;}
.yaa_c01144{bottom:455.092172pt;}
.ya9_c01144{bottom:457.153669pt;}
.ya8_c01144{bottom:458.958351pt;}
.ya7_c01144{bottom:459.625959pt;}
.ya6_c01144{bottom:460.529891pt;}
.ya5_c01144{bottom:462.354127pt;}
.ya4_c01144{bottom:463.014803pt;}
.ya3_c01144{bottom:465.732020pt;}
.ya2_c01144{bottom:466.390163pt;}
.ya1_c01144{bottom:466.797433pt;}
.ya0_c01144{bottom:467.496519pt;}
.y9f_c01144{bottom:483.672005pt;}
.y9e_c01144{bottom:486.124260pt;}
.y9d_c01144{bottom:488.172972pt;}
.y9c_c01144{bottom:489.266745pt;}
.y9b_c01144{bottom:491.327988pt;}
.y9a_c01144{bottom:491.943000pt;}
.y99_c01144{bottom:493.591985pt;}
.y98_c01144{bottom:495.422515pt;}
.y97_c01144{bottom:497.060084pt;}
.y96_c01144{bottom:497.702387pt;}
.y95_c01144{bottom:498.069275pt;}
.y94_c01144{bottom:498.701935pt;}
.y93_c01144{bottom:514.439680pt;}
.y92_c01144{bottom:516.962777pt;}
.y91_c01144{bottom:517.777128pt;}
.y90_c01144{bottom:519.825049pt;}
.y8f_c01144{bottom:521.657007pt;}
.y8e_c01144{bottom:522.839831pt;}
.y8d_c01144{bottom:524.993796pt;}
.y8c_c01144{bottom:525.670135pt;}
.y8b_c01144{bottom:526.724995pt;}
.y8a_c01144{bottom:528.464113pt;}
.y89_c01144{bottom:529.088743pt;}
.y88_c01144{bottom:529.478832pt;}
.y87_c01144{bottom:530.146921pt;}
.y86_c01144{bottom:547.591247pt;}
.y85_c01144{bottom:548.499793pt;}
.y84_c01144{bottom:550.962679pt;}
.y83_c01144{bottom:553.070888pt;}
.y82_c01144{bottom:553.768133pt;}
.y81_c01144{bottom:554.493183pt;}
.y80_c01144{bottom:557.097223pt;}
.y7f_c01144{bottom:557.564676pt;}
.y7e_c01144{bottom:558.743441pt;}
.y7d_c01144{bottom:560.633975pt;}
.y7c_c01144{bottom:579.721097pt;}
.y7b_c01144{bottom:581.808440pt;}
.y7a_c01144{bottom:584.089503pt;}
.y79_c01144{bottom:585.289196pt;}
.y78_c01144{bottom:587.596359pt;}
.y77_c01144{bottom:589.447601pt;}
.y76_c01144{bottom:590.478940pt;}
.y75_c01144{bottom:591.076583pt;}
.y74_c01144{bottom:592.322684pt;}
.y73_c01144{bottom:620.442527pt;}
.y72_c01144{bottom:620.998745pt;}
.y71_c01144{bottom:622.084000pt;}
.y70_c01144{bottom:643.866424pt;}
.y6f_c01144{bottom:644.916400pt;}
.y6e_c01144{bottom:645.487096pt;}
.y6d_c01144{bottom:646.891576pt;}
.y6c_c01144{bottom:647.445688pt;}
.y6b_c01144{bottom:649.207504pt;}
.y6a_c01144{bottom:650.494024pt;}
.y69_c01144{bottom:650.865640pt;}
.y68_c01144{bottom:651.529984pt;}
.y67_c01144{bottom:653.999536pt;}
.y66_c01144{bottom:654.656848pt;}
.y65_c01144{bottom:655.204000pt;}
.y64_c01144{bottom:674.590027pt;}
.y63_c01144{bottom:675.636309pt;}
.y62_c01144{bottom:676.630539pt;}
.y61_c01144{bottom:677.255435pt;}
.y60_c01144{bottom:678.228853pt;}
.y5f_c01144{bottom:678.819968pt;}
.y5e_c01144{bottom:679.607232pt;}
.y5d_c01144{bottom:680.600757pt;}
.y5c_c01144{bottom:682.392896pt;}
.y5b_c01144{bottom:683.947915pt;}
.y5a_c01144{bottom:684.720928pt;}
.y59_c01144{bottom:686.320224pt;}
.y58_c01144{bottom:686.878731pt;}
.y57_c01144{bottom:688.080843pt;}
.y56_c01144{bottom:714.352619pt;}
.y55_c01144{bottom:716.406635pt;}
.y54_c01144{bottom:716.882667pt;}
.y53_c01144{bottom:736.497869pt;}
.y52_c01144{bottom:739.449945pt;}
.y51_c01144{bottom:739.989684pt;}
.y50_c01144{bottom:741.250563pt;}
.y4f_c01144{bottom:743.549065pt;}
.y4e_c01144{bottom:745.156179pt;}
.y4d_c01144{bottom:745.504728pt;}
.y4c_c01144{bottom:747.302929pt;}
.y4b_c01144{bottom:747.933364pt;}
.y4a_c01144{bottom:748.827951pt;}
.y49_c01144{bottom:749.752576pt;}
.y48_c01144{bottom:768.650159pt;}
.y47_c01144{bottom:769.728700pt;}
.y46_c01144{bottom:773.463365pt;}
.y45_c01144{bottom:774.589559pt;}
.y44_c01144{bottom:775.164271pt;}
.y43_c01144{bottom:776.578225pt;}
.y42_c01144{bottom:778.539025pt;}
.y41_c01144{bottom:779.287068pt;}
.y40_c01144{bottom:780.966921pt;}
.y3f_c01144{bottom:781.656191pt;}
.y3e_c01144{bottom:782.638921pt;}
.y3d_c01144{bottom:800.222393pt;}
.y3c_c01144{bottom:807.439835pt;}
.y3b_c01144{bottom:809.571179pt;}
.y3a_c01144{bottom:810.131881pt;}
.y39_c01144{bottom:811.610005pt;}
.y38_c01144{bottom:812.726825pt;}
.y37_c01144{bottom:813.262980pt;}
.y36_c01144{bottom:813.844000pt;}
.y33_c01144{bottom:837.141312pt;}
.y34_c01144{bottom:837.141728pt;}
.y35_c01144{bottom:837.142112pt;}
.y32_c01144{bottom:865.327083pt;}
.y31_c01144{bottom:866.170720pt;}
.y30_c01144{bottom:866.860555pt;}
.y2f_c01144{bottom:868.517227pt;}
.y2e_c01144{bottom:869.554048pt;}
.y2d_c01144{bottom:870.063445pt;}
.y2c_c01144{bottom:871.719797pt;}
.y2b_c01144{bottom:873.224885pt;}
.y2a_c01144{bottom:874.551957pt;}
.y29_c01144{bottom:893.131232pt;}
.y28_c01144{bottom:894.208309pt;}
.y27_c01144{bottom:894.582400pt;}
.y26_c01144{bottom:896.266475pt;}
.y25_c01144{bottom:896.672299pt;}
.y24_c01144{bottom:897.046389pt;}
.y23_c01144{bottom:897.702059pt;}
.y22_c01144{bottom:898.076149pt;}
.y21_c01144{bottom:898.731819pt;}
.y20_c01144{bottom:899.605600pt;}
.y1f_c01144{bottom:901.122336pt;}
.y1e_c01144{bottom:902.154603pt;}
.y1d_c01144{bottom:932.567456pt;}
.y1c_c01144{bottom:936.481685pt;}
.y1b_c01144{bottom:960.526549pt;}
.y1a_c01144{bottom:960.852352pt;}
.y19_c01144{bottom:962.443136pt;}
.y18_c01144{bottom:962.915456pt;}
.y17_c01144{bottom:963.395392pt;}
.y16_c01144{bottom:964.359424pt;}
.y15_c01144{bottom:964.654400pt;}
.y14_c01144{bottom:966.559893pt;}
.y13_c01144{bottom:967.973013pt;}
.y12_c01144{bottom:968.547456pt;}
.y11_c01144{bottom:968.882667pt;}
.y10_c01144{bottom:993.738837pt;}
.yf_c01144{bottom:995.480875pt;}
.ye_c01144{bottom:996.110549pt;}
.yd_c01144{bottom:997.354859pt;}
.yc_c01144{bottom:999.113835pt;}
.yb_c01144{bottom:1000.377024pt;}
.ya_c01144{bottom:1000.951296pt;}
.y9_c01144{bottom:1001.282667pt;}
.y8_c01144{bottom:1026.773333pt;}
.y7_c01144{bottom:1027.133333pt;}
.y6_c01144{bottom:1028.302667pt;}
.y5_c01144{bottom:1029.397333pt;}
.y4_c01144{bottom:1029.861333pt;}
.y3_c01144{bottom:1030.914667pt;}
.y2_c01144{bottom:1032.241333pt;}
.y1_c01144{bottom:1074.493333pt;}
.h18_c01144{height:26.654531pt;}
.h16_c01144{height:26.677118pt;}
.he_c01144{height:53.346238pt;}
.h17_c01144{height:58.654961pt;}
.h8_c01144{height:58.677255pt;}
.h12_c01144{height:64.000000pt;}
.h4_c01144{height:64.008191pt;}
.hc_c01144{height:64.011551pt;}
.hd_c01144{height:64.015486pt;}
.h19_c01144{height:64.023324pt;}
.h15_c01144{height:64.025083pt;}
.h13_c01144{height:69.333333pt;}
.h3_c01144{height:69.342207pt;}
.h7_c01144{height:69.345847pt;}
.h10_c01144{height:69.351670pt;}
.h2_c01144{height:74.666667pt;}
.h14_c01144{height:74.672042pt;}
.h6_c01144{height:74.676223pt;}
.hb_c01144{height:74.680143pt;}
.hf_c01144{height:74.686413pt;}
.h9_c01144{height:80.010239pt;}
.ha_c01144{height:80.012959pt;}
.h5_c01144{height:85.344255pt;}
.h11_c01144{height:85.355901pt;}
.h1_c01144{height:1118.666667pt;}
.h0_c01144{height:1118.880000pt;}
.w0_c01144{width:817.866667pt;}
.w1_c01144{width:818.000000pt;}
.x0_c01144{left:0.000000pt;}
.x4_c01144{left:49.102667pt;}
.xb9_c01144{left:71.936000pt;}
.x87_c01144{left:74.573333pt;}
.x5d_c01144{left:76.613407pt;}
.x33_c01144{left:78.018267pt;}
.x1c_c01144{left:79.464352pt;}
.x98_c01144{left:83.658771pt;}
.x8f_c01144{left:85.509333pt;}
.x6b_c01144{left:87.353703pt;}
.x4f_c01144{left:98.205333pt;}
.x2c_c01144{left:99.404000pt;}
.xb_c01144{left:101.873333pt;}
.x6c_c01144{left:117.742647pt;}
.xc_c01144{left:122.584000pt;}
.x93_c01144{left:125.421333pt;}
.x50_c01144{left:128.602667pt;}
.x2d_c01144{left:129.984000pt;}
.x73_c01144{left:134.993337pt;}
.x5e_c01144{left:135.949819pt;}
.x45_c01144{left:137.421365pt;}
.xba_c01144{left:140.065333pt;}
.xd_c01144{left:158.476000pt;}
.x5_c01144{left:159.706667pt;}
.x88_c01144{left:162.605333pt;}
.x63_c01144{left:164.080436pt;}
.x51_c01144{left:165.120000pt;}
.x34_c01144{left:166.018267pt;}
.x3c_c01144{left:179.091573pt;}
.xad_c01144{left:180.322667pt;}
.xa6_c01144{left:199.144000pt;}
.x82_c01144{left:201.612000pt;}
.x29_c01144{left:205.453984pt;}
.x1a_c01144{left:207.603573pt;}
.x3d_c01144{left:214.097565pt;}
.x2e_c01144{left:216.982667pt;}
.x43_c01144{left:235.008000pt;}
.xe_c01144{left:237.425333pt;}
.x89_c01144{left:240.608000pt;}
.x83_c01144{left:241.685333pt;}
.x64_c01144{left:242.872963pt;}
.x46_c01144{left:245.277120pt;}
.x13_c01144{left:246.540000pt;}
.x6_c01144{left:247.525333pt;}
.x90_c01144{left:248.974667pt;}
.x35_c01144{left:254.431600pt;}
.xaf_c01144{left:257.401333pt;}
.x5b_c01144{left:263.046667pt;}
.x9f_c01144{left:268.558605pt;}
.x2a_c01144{left:273.862165pt;}
.x1d_c01144{left:275.536427pt;}
.x7a_c01144{left:281.523389pt;}
.x47_c01144{left:283.921312pt;}
.x7_c01144{left:286.168000pt;}
.x99_c01144{left:288.022720pt;}
.x94_c01144{left:289.722667pt;}
.x6d_c01144{left:290.822100pt;}
.x5c_c01144{left:292.321333pt;}
.x36_c01144{left:293.802267pt;}
.x2f_c01144{left:294.778667pt;}
.xa7_c01144{left:299.572000pt;}
.x52_c01144{left:302.317333pt;}
.x2b_c01144{left:304.345973pt;}
.xac_c01144{left:307.872000pt;}
.x7b_c01144{left:310.258544pt;}
.x65_c01144{left:311.474452pt;}
.x3e_c01144{left:314.004799pt;}
.x9a_c01144{left:317.772007pt;}
.x6e_c01144{left:321.575019pt;}
.x30_c01144{left:324.289333pt;}
.xa0_c01144{left:327.612049pt;}
.x74_c01144{left:330.691223pt;}
.x3f_c01144{left:333.402512pt;}
.xa8_c01144{left:336.830667pt;}
.x53_c01144{left:339.225333pt;}
.x1e_c01144{left:342.734315pt;}
.x26_c01144{left:343.715989pt;}
.xf_c01144{left:347.361333pt;}
.x54_c01144{left:359.870667pt;}
.x48_c01144{left:361.688341pt;}
.x44_c01144{left:363.384000pt;}
.x14_c01144{left:365.633333pt;}
.xa1_c01144{left:367.467285pt;}
.x84_c01144{left:369.645333pt;}
.x1_c01144{left:372.000000pt;}
.x27_c01144{left:373.719520pt;}
.xb7_c01144{left:374.881333pt;}
.x8_c01144{left:377.377333pt;}
.x15_c01144{left:384.069333pt;}
.xb0_c01144{left:387.325333pt;}
.x7c_c01144{left:389.563181pt;}
.x2_c01144{left:393.360000pt;}
.x37_c01144{left:397.002267pt;}
.x8a_c01144{left:399.086667pt;}
.x1b_c01144{left:403.313717pt;}
.xb8_c01144{left:404.865985pt;}
.xa9_c01144{left:405.964000pt;}
.x75_c01144{left:409.196233pt;}
.x5f_c01144{left:411.485997pt;}
.x95_c01144{left:415.706667pt;}
.x85_c01144{left:418.614667pt;}
.x66_c01144{left:419.957475pt;}
.x1f_c01144{left:421.931445pt;}
.x10_c01144{left:425.130667pt;}
.x7d_c01144{left:428.854859pt;}
.x55_c01144{left:431.344000pt;}
.x3_c01144{left:433.920000pt;}
.x31_c01144{left:436.465333pt;}
.x76_c01144{left:438.476452pt;}
.x16_c01144{left:444.321333pt;}
.x67_c01144{left:450.185279pt;}
.x49_c01144{left:451.274603pt;}
.xb1_c01144{left:456.698667pt;}
.x7e_c01144{left:457.884655pt;}
.x11_c01144{left:464.485333pt;}
.xae_c01144{left:466.240000pt;}
.x60_c01144{left:468.590485pt;}
.x38_c01144{left:471.420933pt;}
.x20_c01144{left:472.329856pt;}
.x6f_c01144{left:473.257047pt;}
.x9_c01144{left:474.809333pt;}
.x91_c01144{left:477.478667pt;}
.x68_c01144{left:479.230517pt;}
.x96_c01144{left:486.766667pt;}
.x86_c01144{left:496.609333pt;}
.x21_c01144{left:501.128576pt;}
.x17_c01144{left:503.837333pt;}
.xa_c01144{left:504.813333pt;}
.xb2_c01144{left:513.822667pt;}
.xb4_c01144{left:521.886144pt;}
.x8b_c01144{left:527.013333pt;}
.x56_c01144{left:529.222667pt;}
.x22_c01144{left:532.327403pt;}
.x77_c01144{left:536.643395pt;}
.x4a_c01144{left:540.318240pt;}
.xbb_c01144{left:542.462667pt;}
.x9b_c01144{left:544.748216pt;}
.x40_c01144{left:550.403975pt;}
.x92_c01144{left:555.189333pt;}
.x70_c01144{left:556.548309pt;}
.x57_c01144{left:560.006667pt;}
.x39_c01144{left:560.942267pt;}
.x69_c01144{left:567.092849pt;}
.x4b_c01144{left:569.844341pt;}
.x12_c01144{left:573.362667pt;}
.x61_c01144{left:577.203689pt;}
.xb5_c01144{left:580.949733pt;}
.xb3_c01144{left:583.469333pt;}
.x9c_c01144{left:584.550376pt;}
.x78_c01144{left:588.734752pt;}
.xa2_c01144{left:594.140019pt;}
.x18_c01144{left:603.261333pt;}
.x97_c01144{left:604.652000pt;}
.xb6_c01144{left:611.922000pt;}
.xaa_c01144{left:613.816000pt;}
.x4c_c01144{left:618.513227pt;}
.x41_c01144{left:620.486651pt;}
.x28_c01144{left:622.400885pt;}
.x19_c01144{left:623.624000pt;}
.x7f_c01144{left:625.986553pt;}
.x58_c01144{left:638.033333pt;}
.x8c_c01144{left:644.430667pt;}
.x42_c01144{left:650.508567pt;}
.xa3_c01144{left:653.690888pt;}
.x80_c01144{left:656.422915pt;}
.x23_c01144{left:661.921632pt;}
.x9d_c01144{left:663.836060pt;}
.x59_c01144{left:669.738667pt;}
.x62_c01144{left:676.603915pt;}
.xa4_c01144{left:684.960000pt;}
.x71_c01144{left:686.695579pt;}
.x24_c01144{left:690.720352pt;}
.x4d_c01144{left:699.453376pt;}
.x6a_c01144{left:707.540832pt;}
.xab_c01144{left:713.780000pt;}
.x81_c01144{left:727.090877pt;}
.x5a_c01144{left:728.070667pt;}
.x8d_c01144{left:737.565333pt;}
.x9e_c01144{left:743.613713pt;}
.x4e_c01144{left:751.759360pt;}
.x3a_c01144{left:757.503600pt;}
.x25_c01144{left:773.541653pt;}
.xa5_c01144{left:796.080000pt;}
.xbc_c01144{left:798.800000pt;}
.x72_c01144{left:801.378376pt;}
.x79_c01144{left:803.093287pt;}
.x8e_c01144{left:807.291669pt;}
.x3b_c01144{left:814.268933pt;}
.x32_c01144{left:816.330667pt;}
}





/* 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_c01145 {
    display:none;
  }
  .loading-indicator_c01145.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01145 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_c01145 { 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_c01145" -> "#page-container .classname_c01145")
 */
.pf_c01145 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01145 { /* 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_c01145.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01145 { /* 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_c01145 { /* 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_c01145 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01145 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01145 {overflow:visible;}
  }
}
.c_c01145 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01145 { /* 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_c01145:after { /* webkit #35443 */
  content: '';
}
.t_c01145:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01145 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 */
}
.__c01145 { /* 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_c01145 { /* info for Javascript */
  display:none;
}
.l_c01145 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01145 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01145 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01145: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_c01145 {
    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_c01145.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01145.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_c01145 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01145{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01145;src:url('chunks/assets/font_132af6d682320e9b248f68cf.woff2')format("woff");}.ff1_c01145{font-family:ff1_c01145;line-height:1.000000;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;}
.m0_c01145{transform:matrix(0.070890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.070890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.070890,0.000000,0.000000,0.250000,0,0);}
.m4_c01145{transform:matrix(0.114400,0.001030,-0.002250,0.249990,0,0);-ms-transform:matrix(0.114400,0.001030,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.114400,0.001030,-0.002250,0.249990,0,0);}
.ma_c01145{transform:matrix(0.134165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134165,0.000000,0.000000,0.250000,0,0);}
.m8_c01145{transform:matrix(0.142689,0.001284,-0.002250,0.249990,0,0);-ms-transform:matrix(0.142689,0.001284,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.142689,0.001284,-0.002250,0.249990,0,0);}
.m7_c01145{transform:matrix(0.143879,0.001295,-0.002250,0.249990,0,0);-ms-transform:matrix(0.143879,0.001295,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.143879,0.001295,-0.002250,0.249990,0,0);}
.m3_c01145{transform:matrix(0.144930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144930,0.000000,0.000000,0.250000,0,0);}
.m9_c01145{transform:matrix(0.145034,0.001305,-0.002250,0.249990,0,0);-ms-transform:matrix(0.145034,0.001305,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.145034,0.001305,-0.002250,0.249990,0,0);}
.mf_c01145{transform:matrix(0.148490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148490,0.000000,0.000000,0.250000,0,0);}
.m2_c01145{transform:matrix(0.149570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149570,0.000000,0.000000,0.250000,0,0);}
.m5_c01145{transform:matrix(0.150429,0.001354,-0.002250,0.249990,0,0);-ms-transform:matrix(0.150429,0.001354,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.150429,0.001354,-0.002250,0.249990,0,0);}
.me_c01145{transform:matrix(0.163935,0.001803,-0.002750,0.249985,0,0);-ms-transform:matrix(0.163935,0.001803,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.163935,0.001803,-0.002750,0.249985,0,0);}
.m1_c01145{transform:matrix(0.179310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179310,0.000000,0.000000,0.250000,0,0);}
.m6_c01145{transform:matrix(0.203377,0.001830,-0.002250,0.249990,0,0);-ms-transform:matrix(0.203377,0.001830,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.203377,0.001830,-0.002250,0.249990,0,0);}
.mb_c01145{transform:matrix(0.233450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233450,0.000000,0.000000,0.250000,0,0);}
.md_c01145{transform:matrix(0.307136,0.003379,-0.002750,0.249985,0,0);-ms-transform:matrix(0.307136,0.003379,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.307136,0.003379,-0.002750,0.249985,0,0);}
.mc_c01145{transform:matrix(0.362798,0.003991,-0.002750,0.249985,0,0);-ms-transform:matrix(0.362798,0.003991,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.362798,0.003991,-0.002750,0.249985,0,0);}
.v0_c01145{vertical-align:0.000000px;}
.ls0_c01145{letter-spacing:0.000000px;}
.sc__c01145{text-shadow:none;}
.sc0_c01145{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__c01145{-webkit-text-stroke:0px transparent;}
.sc0_c01145{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01145{word-spacing:0.000000px;}
.fc0_c01145{color:transparent;}
.fs2_c01145{font-size:18.000000px;}
.fs3_c01145{font-size:126.007623px;}
.fs1_c01145{font-size:144.005832px;}
.fs0_c01145{font-size:186.000000px;}
.y0_c01145{bottom:0.000000px;}
.yd_c01145{bottom:136.890000px;}
.yc_c01145{bottom:190.977609px;}
.yb_c01145{bottom:191.218295px;}
.ya_c01145{bottom:192.513000px;}
.y9_c01145{bottom:942.570000px;}
.y8_c01145{bottom:949.590000px;}
.y7_c01145{bottom:963.153951px;}
.y6_c01145{bottom:964.123481px;}
.y5_c01145{bottom:964.429472px;}
.y4_c01145{bottom:965.024781px;}
.y3_c01145{bottom:966.098801px;}
.y2_c01145{bottom:966.331500px;}
.y1_c01145{bottom:1139.547000px;}
.h4_c01145{height:18.000000px;}
.h5_c01145{height:126.007623px;}
.h3_c01145{height:144.005832px;}
.h2_c01145{height:186.000000px;}
.h1_c01145{height:1258.500000px;}
.h0_c01145{height:1258.740000px;}
.w0_c01145{width:920.100000px;}
.w1_c01145{width:920.250000px;}
.x0_c01145{left:0.000000px;}
.x5_c01145{left:279.280500px;}
.x6_c01145{left:305.136000px;}
.xb_c01145{left:336.960000px;}
.xc_c01145{left:339.120000px;}
.x7_c01145{left:424.471500px;}
.xd_c01145{left:442.791000px;}
.x1_c01145{left:468.180000px;}
.x2_c01145{left:488.430000px;}
.x8_c01145{left:490.617000px;}
.x9_c01145{left:524.616000px;}
.xe_c01145{left:560.491500px;}
.xf_c01145{left:582.372000px;}
.x3_c01145{left:586.170000px;}
.x4_c01145{left:626.940000px;}
.xa_c01145{left:632.341500px;}
.x10_c01145{left:765.180000px;}
@media print{
.v0_c01145{vertical-align:0.000000pt;}
.ls0_c01145{letter-spacing:0.000000pt;}
.ws0_c01145{word-spacing:0.000000pt;}
.fs2_c01145{font-size:16.000000pt;}
.fs3_c01145{font-size:112.006776pt;}
.fs1_c01145{font-size:128.005184pt;}
.fs0_c01145{font-size:165.333333pt;}
.y0_c01145{bottom:0.000000pt;}
.yd_c01145{bottom:121.680000pt;}
.yc_c01145{bottom:169.757875pt;}
.yb_c01145{bottom:169.971817pt;}
.ya_c01145{bottom:171.122667pt;}
.y9_c01145{bottom:837.840000pt;}
.y8_c01145{bottom:844.080000pt;}
.y7_c01145{bottom:856.136845pt;}
.y6_c01145{bottom:856.998649pt;}
.y5_c01145{bottom:857.270641pt;}
.y4_c01145{bottom:857.799805pt;}
.y3_c01145{bottom:858.754489pt;}
.y2_c01145{bottom:858.961333pt;}
.y1_c01145{bottom:1012.930667pt;}
.h4_c01145{height:16.000000pt;}
.h5_c01145{height:112.006776pt;}
.h3_c01145{height:128.005184pt;}
.h2_c01145{height:165.333333pt;}
.h1_c01145{height:1118.666667pt;}
.h0_c01145{height:1118.880000pt;}
.w0_c01145{width:817.866667pt;}
.w1_c01145{width:818.000000pt;}
.x0_c01145{left:0.000000pt;}
.x5_c01145{left:248.249333pt;}
.x6_c01145{left:271.232000pt;}
.xb_c01145{left:299.520000pt;}
.xc_c01145{left:301.440000pt;}
.x7_c01145{left:377.308000pt;}
.xd_c01145{left:393.592000pt;}
.x1_c01145{left:416.160000pt;}
.x2_c01145{left:434.160000pt;}
.x8_c01145{left:436.104000pt;}
.x9_c01145{left:466.325333pt;}
.xe_c01145{left:498.214667pt;}
.xf_c01145{left:517.664000pt;}
.x3_c01145{left:521.040000pt;}
.x4_c01145{left:557.280000pt;}
.xa_c01145{left:562.081333pt;}
.x10_c01145{left:680.160000pt;}
}





/* 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_c01146 {
    display:none;
  }
  .loading-indicator_c01146.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01146 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_c01146 { 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_c01146" -> "#page-container .classname_c01146")
 */
.pf_c01146 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01146 { /* 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_c01146.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01146 { /* 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_c01146 { /* 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_c01146 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01146 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01146 {overflow:visible;}
  }
}
.c_c01146 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01146 { /* 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_c01146:after { /* webkit #35443 */
  content: '';
}
.t_c01146:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01146 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 */
}
.__c01146 { /* 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_c01146 { /* info for Javascript */
  display:none;
}
.l_c01146 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01146 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01146 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01146: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_c01146 {
    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_c01146.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01146.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_c01146 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01146{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01146;src:url('chunks/assets/font_cfe63ee56e9e10a97d33a3db.woff2')format("woff");}.ff1_c01146{font-family:ff1_c01146;line-height:1.000000;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;}
.m3_c01146{transform:matrix(0.127280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127280,0.000000,0.000000,0.250000,0,0);}
.m5d_c01146{transform:matrix(0.168575,0.001854,-0.002750,0.249985,0,0);-ms-transform:matrix(0.168575,0.001854,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.168575,0.001854,-0.002750,0.249985,0,0);}
.m61_c01146{transform:matrix(0.178939,0.001968,-0.002750,0.249985,0,0);-ms-transform:matrix(0.178939,0.001968,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.178939,0.001968,-0.002750,0.249985,0,0);}
.m27_c01146{transform:matrix(0.181384,0.001995,-0.002750,0.249985,0,0);-ms-transform:matrix(0.181384,0.001995,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.181384,0.001995,-0.002750,0.249985,0,0);}
.m63_c01146{transform:matrix(0.181894,0.002001,-0.002750,0.249985,0,0);-ms-transform:matrix(0.181894,0.002001,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.181894,0.002001,-0.002750,0.249985,0,0);}
.m28_c01146{transform:matrix(0.183139,0.002015,-0.002750,0.249985,0,0);-ms-transform:matrix(0.183139,0.002015,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.183139,0.002015,-0.002750,0.249985,0,0);}
.m32_c01146{transform:matrix(0.189019,0.002079,-0.002750,0.249985,0,0);-ms-transform:matrix(0.189019,0.002079,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.189019,0.002079,-0.002750,0.249985,0,0);}
.m39_c01146{transform:matrix(0.190578,0.002096,-0.002750,0.249985,0,0);-ms-transform:matrix(0.190578,0.002096,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.190578,0.002096,-0.002750,0.249985,0,0);}
.m30_c01146{transform:matrix(0.190818,0.002099,-0.002750,0.249985,0,0);-ms-transform:matrix(0.190818,0.002099,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.190818,0.002099,-0.002750,0.249985,0,0);}
.m2e_c01146{transform:matrix(0.191373,0.002105,-0.002750,0.249985,0,0);-ms-transform:matrix(0.191373,0.002105,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.191373,0.002105,-0.002750,0.249985,0,0);}
.m94_c01146{transform:matrix(0.192060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192060,0.000000,0.000000,0.250000,0,0);}
.m62_c01146{transform:matrix(0.194718,0.002142,-0.002750,0.249985,0,0);-ms-transform:matrix(0.194718,0.002142,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.194718,0.002142,-0.002750,0.249985,0,0);}
.m92_c01146{transform:matrix(0.195565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195565,0.000000,0.000000,0.250000,0,0);}
.m69_c01146{transform:matrix(0.196113,0.002157,-0.002750,0.249985,0,0);-ms-transform:matrix(0.196113,0.002157,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.196113,0.002157,-0.002750,0.249985,0,0);}
.m8a_c01146{transform:matrix(0.196735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196735,0.000000,0.000000,0.250000,0,0);}
.m60_c01146{transform:matrix(0.197808,0.002176,-0.002750,0.249985,0,0);-ms-transform:matrix(0.197808,0.002176,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.197808,0.002176,-0.002750,0.249985,0,0);}
.m24_c01146{transform:matrix(0.198138,0.002180,-0.002750,0.249985,0,0);-ms-transform:matrix(0.198138,0.002180,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.198138,0.002180,-0.002750,0.249985,0,0);}
.mb_c01146{transform:matrix(0.199078,0.002986,-0.003750,0.249972,0,0);-ms-transform:matrix(0.199078,0.002986,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.199078,0.002986,-0.003750,0.249972,0,0);}
.m8c_c01146{transform:matrix(0.199700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199700,0.000000,0.000000,0.250000,0,0);}
.m9_c01146{transform:matrix(0.202642,0.003040,-0.003750,0.249972,0,0);-ms-transform:matrix(0.202642,0.003040,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.202642,0.003040,-0.003750,0.249972,0,0);}
.m2a_c01146{transform:matrix(0.203083,0.002234,-0.002750,0.249985,0,0);-ms-transform:matrix(0.203083,0.002234,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.203083,0.002234,-0.002750,0.249985,0,0);}
.m29_c01146{transform:matrix(0.205288,0.002258,-0.002750,0.249985,0,0);-ms-transform:matrix(0.205288,0.002258,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.205288,0.002258,-0.002750,0.249985,0,0);}
.m59_c01146{transform:matrix(0.205653,0.002262,-0.002750,0.249985,0,0);-ms-transform:matrix(0.205653,0.002262,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.205653,0.002262,-0.002750,0.249985,0,0);}
.m36_c01146{transform:matrix(0.205933,0.002265,-0.002750,0.249985,0,0);-ms-transform:matrix(0.205933,0.002265,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.205933,0.002265,-0.002750,0.249985,0,0);}
.m70_c01146{transform:matrix(0.208022,0.002288,-0.002750,0.249985,0,0);-ms-transform:matrix(0.208022,0.002288,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.208022,0.002288,-0.002750,0.249985,0,0);}
.m8e_c01146{transform:matrix(0.208175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208175,0.000000,0.000000,0.250000,0,0);}
.m2d_c01146{transform:matrix(0.208567,0.002294,-0.002750,0.249985,0,0);-ms-transform:matrix(0.208567,0.002294,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.208567,0.002294,-0.002750,0.249985,0,0);}
.m3a_c01146{transform:matrix(0.209322,0.002303,-0.002750,0.249985,0,0);-ms-transform:matrix(0.209322,0.002303,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.209322,0.002303,-0.002750,0.249985,0,0);}
.m9d_c01146{transform:matrix(0.210481,0.003157,-0.003750,0.249972,0,0);-ms-transform:matrix(0.210481,0.003157,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.210481,0.003157,-0.003750,0.249972,0,0);}
.m64_c01146{transform:matrix(0.210552,0.002316,-0.002750,0.249985,0,0);-ms-transform:matrix(0.210552,0.002316,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.210552,0.002316,-0.002750,0.249985,0,0);}
.m25_c01146{transform:matrix(0.210862,0.002319,-0.002750,0.249985,0,0);-ms-transform:matrix(0.210862,0.002319,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.210862,0.002319,-0.002750,0.249985,0,0);}
.me_c01146{transform:matrix(0.211556,0.003173,-0.003750,0.249972,0,0);-ms-transform:matrix(0.211556,0.003173,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.211556,0.003173,-0.003750,0.249972,0,0);}
.m6e_c01146{transform:matrix(0.211917,0.002331,-0.002750,0.249985,0,0);-ms-transform:matrix(0.211917,0.002331,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.211917,0.002331,-0.002750,0.249985,0,0);}
.m9a_c01146{transform:matrix(0.212136,0.003182,-0.003750,0.249972,0,0);-ms-transform:matrix(0.212136,0.003182,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.212136,0.003182,-0.003750,0.249972,0,0);}
.m34_c01146{transform:matrix(0.212152,0.002334,-0.002750,0.249985,0,0);-ms-transform:matrix(0.212152,0.002334,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.212152,0.002334,-0.002750,0.249985,0,0);}
.m57_c01146{transform:matrix(0.212497,0.002337,-0.002750,0.249985,0,0);-ms-transform:matrix(0.212497,0.002337,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.212497,0.002337,-0.002750,0.249985,0,0);}
.m9c_c01146{transform:matrix(0.212581,0.003189,-0.003750,0.249972,0,0);-ms-transform:matrix(0.212581,0.003189,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.212581,0.003189,-0.003750,0.249972,0,0);}
.m89_c01146{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m8f_c01146{transform:matrix(0.214265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214265,0.000000,0.000000,0.250000,0,0);}
.m38_c01146{transform:matrix(0.214847,0.002363,-0.002750,0.249985,0,0);-ms-transform:matrix(0.214847,0.002363,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.214847,0.002363,-0.002750,0.249985,0,0);}
.m95_c01146{transform:matrix(0.215910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215910,0.000000,0.000000,0.250000,0,0);}
.m2b_c01146{transform:matrix(0.216152,0.002378,-0.002750,0.249985,0,0);-ms-transform:matrix(0.216152,0.002378,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.216152,0.002378,-0.002750,0.249985,0,0);}
.m6b_c01146{transform:matrix(0.216332,0.002380,-0.002750,0.249985,0,0);-ms-transform:matrix(0.216332,0.002380,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.216332,0.002380,-0.002750,0.249985,0,0);}
.m67_c01146{transform:matrix(0.216692,0.002384,-0.002750,0.249985,0,0);-ms-transform:matrix(0.216692,0.002384,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.216692,0.002384,-0.002750,0.249985,0,0);}
.m55_c01146{transform:matrix(0.217022,0.002387,-0.002750,0.249985,0,0);-ms-transform:matrix(0.217022,0.002387,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.217022,0.002387,-0.002750,0.249985,0,0);}
.md_c01146{transform:matrix(0.217111,0.003257,-0.003750,0.249972,0,0);-ms-transform:matrix(0.217111,0.003257,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.217111,0.003257,-0.003750,0.249972,0,0);}
.m26_c01146{transform:matrix(0.219682,0.002416,-0.002750,0.249985,0,0);-ms-transform:matrix(0.219682,0.002416,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.219682,0.002416,-0.002750,0.249985,0,0);}
.m35_c01146{transform:matrix(0.221362,0.002435,-0.002750,0.249985,0,0);-ms-transform:matrix(0.221362,0.002435,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.221362,0.002435,-0.002750,0.249985,0,0);}
.m90_c01146{transform:matrix(0.221670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221670,0.000000,0.000000,0.250000,0,0);}
.m31_c01146{transform:matrix(0.221827,0.002440,-0.002750,0.249985,0,0);-ms-transform:matrix(0.221827,0.002440,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.221827,0.002440,-0.002750,0.249985,0,0);}
.m2f_c01146{transform:matrix(0.222817,0.002451,-0.002750,0.249985,0,0);-ms-transform:matrix(0.222817,0.002451,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.222817,0.002451,-0.002750,0.249985,0,0);}
.m74_c01146{transform:matrix(0.223358,0.003127,-0.003500,0.249976,0,0);-ms-transform:matrix(0.223358,0.003127,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.223358,0.003127,-0.003500,0.249976,0,0);}
.m33_c01146{transform:matrix(0.223821,0.002462,-0.002750,0.249985,0,0);-ms-transform:matrix(0.223821,0.002462,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.223821,0.002462,-0.002750,0.249985,0,0);}
.m18_c01146{transform:matrix(0.224048,0.003137,-0.003500,0.249976,0,0);-ms-transform:matrix(0.224048,0.003137,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.224048,0.003137,-0.003500,0.249976,0,0);}
.m76_c01146{transform:matrix(0.224318,0.003140,-0.003500,0.249976,0,0);-ms-transform:matrix(0.224318,0.003140,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.224318,0.003140,-0.003500,0.249976,0,0);}
.m2c_c01146{transform:matrix(0.224341,0.002468,-0.002750,0.249985,0,0);-ms-transform:matrix(0.224341,0.002468,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.224341,0.002468,-0.002750,0.249985,0,0);}
.m8b_c01146{transform:matrix(0.224880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224880,0.000000,0.000000,0.250000,0,0);}
.m7_c01146{transform:matrix(0.224885,0.003373,-0.003750,0.249972,0,0);-ms-transform:matrix(0.224885,0.003373,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.224885,0.003373,-0.003750,0.249972,0,0);}
.m37_c01146{transform:matrix(0.225261,0.002478,-0.002750,0.249985,0,0);-ms-transform:matrix(0.225261,0.002478,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.225261,0.002478,-0.002750,0.249985,0,0);}
.m8d_c01146{transform:matrix(0.225410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225410,0.000000,0.000000,0.250000,0,0);}
.m6a_c01146{transform:matrix(0.225646,0.002482,-0.002750,0.249985,0,0);-ms-transform:matrix(0.225646,0.002482,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.225646,0.002482,-0.002750,0.249985,0,0);}
.m7d_c01146{transform:matrix(0.226054,0.002261,-0.002500,0.249988,0,0);-ms-transform:matrix(0.226054,0.002261,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.226054,0.002261,-0.002500,0.249988,0,0);}
.m80_c01146{transform:matrix(0.227419,0.002274,-0.002500,0.249988,0,0);-ms-transform:matrix(0.227419,0.002274,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.227419,0.002274,-0.002500,0.249988,0,0);}
.m6c_c01146{transform:matrix(0.227436,0.002502,-0.002750,0.249985,0,0);-ms-transform:matrix(0.227436,0.002502,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.227436,0.002502,-0.002750,0.249985,0,0);}
.m1d_c01146{transform:matrix(0.228091,0.002509,-0.002750,0.249985,0,0);-ms-transform:matrix(0.228091,0.002509,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.228091,0.002509,-0.002750,0.249985,0,0);}
.m5f_c01146{transform:matrix(0.228171,0.002510,-0.002750,0.249985,0,0);-ms-transform:matrix(0.228171,0.002510,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.228171,0.002510,-0.002750,0.249985,0,0);}
.m3c_c01146{transform:matrix(0.228494,0.003427,-0.003750,0.249972,0,0);-ms-transform:matrix(0.228494,0.003427,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.228494,0.003427,-0.003750,0.249972,0,0);}
.m44_c01146{transform:matrix(0.228604,0.003429,-0.003750,0.249972,0,0);-ms-transform:matrix(0.228604,0.003429,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.228604,0.003429,-0.003750,0.249972,0,0);}
.m9b_c01146{transform:matrix(0.228949,0.003434,-0.003750,0.249972,0,0);-ms-transform:matrix(0.228949,0.003434,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.228949,0.003434,-0.003750,0.249972,0,0);}
.m3e_c01146{transform:matrix(0.228974,0.003435,-0.003750,0.249972,0,0);-ms-transform:matrix(0.228974,0.003435,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.228974,0.003435,-0.003750,0.249972,0,0);}
.m66_c01146{transform:matrix(0.229466,0.002524,-0.002750,0.249985,0,0);-ms-transform:matrix(0.229466,0.002524,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.229466,0.002524,-0.002750,0.249985,0,0);}
.m83_c01146{transform:matrix(0.230328,0.002303,-0.002500,0.249988,0,0);-ms-transform:matrix(0.230328,0.002303,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.230328,0.002303,-0.002500,0.249988,0,0);}
.m78_c01146{transform:matrix(0.230362,0.003225,-0.003500,0.249976,0,0);-ms-transform:matrix(0.230362,0.003225,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.230362,0.003225,-0.003500,0.249976,0,0);}
.ma_c01146{transform:matrix(0.230729,0.003461,-0.003750,0.249972,0,0);-ms-transform:matrix(0.230729,0.003461,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.230729,0.003461,-0.003750,0.249972,0,0);}
.m47_c01146{transform:matrix(0.230872,0.003232,-0.003500,0.249976,0,0);-ms-transform:matrix(0.230872,0.003232,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.230872,0.003232,-0.003500,0.249976,0,0);}
.m12_c01146{transform:matrix(0.231597,0.003242,-0.003500,0.249976,0,0);-ms-transform:matrix(0.231597,0.003242,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.231597,0.003242,-0.003500,0.249976,0,0);}
.m6d_c01146{transform:matrix(0.232216,0.002554,-0.002750,0.249985,0,0);-ms-transform:matrix(0.232216,0.002554,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.232216,0.002554,-0.002750,0.249985,0,0);}
.m77_c01146{transform:matrix(0.233042,0.003263,-0.003500,0.249976,0,0);-ms-transform:matrix(0.233042,0.003263,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.233042,0.003263,-0.003500,0.249976,0,0);}
.m91_c01146{transform:matrix(0.234295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234295,0.000000,0.000000,0.250000,0,0);}
.m46_c01146{transform:matrix(0.234337,0.003281,-0.003500,0.249976,0,0);-ms-transform:matrix(0.234337,0.003281,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.234337,0.003281,-0.003500,0.249976,0,0);}
.m81_c01146{transform:matrix(0.235468,0.002355,-0.002500,0.249988,0,0);-ms-transform:matrix(0.235468,0.002355,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.235468,0.002355,-0.002500,0.249988,0,0);}
.m1b_c01146{transform:matrix(0.235741,0.002593,-0.002750,0.249985,0,0);-ms-transform:matrix(0.235741,0.002593,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.235741,0.002593,-0.002750,0.249985,0,0);}
.m3b_c01146{transform:matrix(0.235763,0.003536,-0.003750,0.249972,0,0);-ms-transform:matrix(0.235763,0.003536,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.235763,0.003536,-0.003750,0.249972,0,0);}
.m93_c01146{transform:matrix(0.235765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235765,0.000000,0.000000,0.250000,0,0);}
.m87_c01146{transform:matrix(0.235903,0.002359,-0.002500,0.249988,0,0);-ms-transform:matrix(0.235903,0.002359,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.235903,0.002359,-0.002500,0.249988,0,0);}
.m68_c01146{transform:matrix(0.235921,0.002595,-0.002750,0.249985,0,0);-ms-transform:matrix(0.235921,0.002595,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.235921,0.002595,-0.002750,0.249985,0,0);}
.m16_c01146{transform:matrix(0.236862,0.003316,-0.003500,0.249976,0,0);-ms-transform:matrix(0.236862,0.003316,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.236862,0.003316,-0.003500,0.249976,0,0);}
.m65_c01146{transform:matrix(0.237236,0.002610,-0.002750,0.249985,0,0);-ms-transform:matrix(0.237236,0.002610,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.237236,0.002610,-0.002750,0.249985,0,0);}
.m96_c01146{transform:matrix(0.237420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237420,0.000000,0.000000,0.250000,0,0);}
.mc_c01146{transform:matrix(0.238138,0.003572,-0.003750,0.249972,0,0);-ms-transform:matrix(0.238138,0.003572,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.238138,0.003572,-0.003750,0.249972,0,0);}
.m4b_c01146{transform:matrix(0.238582,0.003340,-0.003500,0.249976,0,0);-ms-transform:matrix(0.238582,0.003340,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.238582,0.003340,-0.003500,0.249976,0,0);}
.m58_c01146{transform:matrix(0.240435,0.002645,-0.002750,0.249985,0,0);-ms-transform:matrix(0.240435,0.002645,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.240435,0.002645,-0.002750,0.249985,0,0);}
.mf_c01146{transform:matrix(0.241623,0.003624,-0.003750,0.249972,0,0);-ms-transform:matrix(0.241623,0.003624,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.241623,0.003624,-0.003750,0.249972,0,0);}
.m43_c01146{transform:matrix(0.242553,0.003638,-0.003750,0.249972,0,0);-ms-transform:matrix(0.242553,0.003638,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.242553,0.003638,-0.003750,0.249972,0,0);}
.m10_c01146{transform:matrix(0.242638,0.003640,-0.003750,0.249972,0,0);-ms-transform:matrix(0.242638,0.003640,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.242638,0.003640,-0.003750,0.249972,0,0);}
.m7e_c01146{transform:matrix(0.243528,0.002435,-0.002500,0.249988,0,0);-ms-transform:matrix(0.243528,0.002435,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.243528,0.002435,-0.002500,0.249988,0,0);}
.m56_c01146{transform:matrix(0.244750,0.002692,-0.002750,0.249985,0,0);-ms-transform:matrix(0.244750,0.002692,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.244750,0.002692,-0.002750,0.249985,0,0);}
.m42_c01146{transform:matrix(0.244877,0.003673,-0.003750,0.249972,0,0);-ms-transform:matrix(0.244877,0.003673,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.244877,0.003673,-0.003750,0.249972,0,0);}
.m3f_c01146{transform:matrix(0.245047,0.003676,-0.003750,0.249972,0,0);-ms-transform:matrix(0.245047,0.003676,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.245047,0.003676,-0.003750,0.249972,0,0);}
.m11_c01146{transform:matrix(0.245126,0.003432,-0.003500,0.249976,0,0);-ms-transform:matrix(0.245126,0.003432,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.245126,0.003432,-0.003500,0.249976,0,0);}
.m5b_c01146{transform:matrix(0.245140,0.002697,-0.002750,0.249985,0,0);-ms-transform:matrix(0.245140,0.002697,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.245140,0.002697,-0.002750,0.249985,0,0);}
.m7b_c01146{transform:matrix(0.245203,0.002452,-0.002500,0.249988,0,0);-ms-transform:matrix(0.245203,0.002452,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.245203,0.002452,-0.002500,0.249988,0,0);}
.m53_c01146{transform:matrix(0.246005,0.002706,-0.002750,0.249985,0,0);-ms-transform:matrix(0.246005,0.002706,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.246005,0.002706,-0.002750,0.249985,0,0);}
.m13_c01146{transform:matrix(0.246846,0.003456,-0.003500,0.249976,0,0);-ms-transform:matrix(0.246846,0.003456,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.246846,0.003456,-0.003500,0.249976,0,0);}
.m20_c01146{transform:matrix(0.247055,0.002718,-0.002750,0.249985,0,0);-ms-transform:matrix(0.247055,0.002718,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.247055,0.002718,-0.002750,0.249985,0,0);}
.m71_c01146{transform:matrix(0.247136,0.003460,-0.003500,0.249976,0,0);-ms-transform:matrix(0.247136,0.003460,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.247136,0.003460,-0.003500,0.249976,0,0);}
.m48_c01146{transform:matrix(0.247526,0.003465,-0.003500,0.249976,0,0);-ms-transform:matrix(0.247526,0.003465,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.247526,0.003465,-0.003500,0.249976,0,0);}
.m9f_c01146{transform:matrix(0.247697,0.003715,-0.003750,0.249972,0,0);-ms-transform:matrix(0.247697,0.003715,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.247697,0.003715,-0.003750,0.249972,0,0);}
.m73_c01146{transform:matrix(0.247786,0.003469,-0.003500,0.249976,0,0);-ms-transform:matrix(0.247786,0.003469,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.247786,0.003469,-0.003500,0.249976,0,0);}
.ma0_c01146{transform:matrix(0.248177,0.003723,-0.003750,0.249972,0,0);-ms-transform:matrix(0.248177,0.003723,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.248177,0.003723,-0.003750,0.249972,0,0);}
.m82_c01146{transform:matrix(0.251402,0.002514,-0.002500,0.249988,0,0);-ms-transform:matrix(0.251402,0.002514,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.251402,0.002514,-0.002500,0.249988,0,0);}
.m9e_c01146{transform:matrix(0.252332,0.003785,-0.003750,0.249972,0,0);-ms-transform:matrix(0.252332,0.003785,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.252332,0.003785,-0.003750,0.249972,0,0);}
.m98_c01146{transform:matrix(0.252917,0.003794,-0.003750,0.249972,0,0);-ms-transform:matrix(0.252917,0.003794,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.252917,0.003794,-0.003750,0.249972,0,0);}
.ma1_c01146{transform:matrix(0.253486,0.003802,-0.003750,0.249972,0,0);-ms-transform:matrix(0.253486,0.003802,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.253486,0.003802,-0.003750,0.249972,0,0);}
.m40_c01146{transform:matrix(0.253976,0.003810,-0.003750,0.249972,0,0);-ms-transform:matrix(0.253976,0.003810,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.253976,0.003810,-0.003750,0.249972,0,0);}
.m72_c01146{transform:matrix(0.254420,0.003562,-0.003500,0.249976,0,0);-ms-transform:matrix(0.254420,0.003562,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.254420,0.003562,-0.003500,0.249976,0,0);}
.m23_c01146{transform:matrix(0.254555,0.002800,-0.002750,0.249985,0,0);-ms-transform:matrix(0.254555,0.002800,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.254555,0.002800,-0.002750,0.249985,0,0);}
.m6f_c01146{transform:matrix(0.254700,0.002802,-0.002750,0.249985,0,0);-ms-transform:matrix(0.254700,0.002802,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.254700,0.002802,-0.002750,0.249985,0,0);}
.m19_c01146{transform:matrix(0.254860,0.003568,-0.003500,0.249976,0,0);-ms-transform:matrix(0.254860,0.003568,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.254860,0.003568,-0.003500,0.249976,0,0);}
.m5a_c01146{transform:matrix(0.255185,0.002807,-0.002750,0.249985,0,0);-ms-transform:matrix(0.255185,0.002807,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.255185,0.002807,-0.002750,0.249985,0,0);}
.m1e_c01146{transform:matrix(0.255195,0.002807,-0.002750,0.249985,0,0);-ms-transform:matrix(0.255195,0.002807,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.255195,0.002807,-0.002750,0.249985,0,0);}
.m14_c01146{transform:matrix(0.255915,0.003583,-0.003500,0.249976,0,0);-ms-transform:matrix(0.255915,0.003583,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.255915,0.003583,-0.003500,0.249976,0,0);}
.m15_c01146{transform:matrix(0.256520,0.003591,-0.003500,0.249976,0,0);-ms-transform:matrix(0.256520,0.003591,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.256520,0.003591,-0.003500,0.249976,0,0);}
.m85_c01146{transform:matrix(0.257537,0.002575,-0.002500,0.249988,0,0);-ms-transform:matrix(0.257537,0.002575,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.257537,0.002575,-0.002500,0.249988,0,0);}
.m17_c01146{transform:matrix(0.257650,0.003607,-0.003500,0.249976,0,0);-ms-transform:matrix(0.257650,0.003607,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.257650,0.003607,-0.003500,0.249976,0,0);}
.m54_c01146{transform:matrix(0.257724,0.002835,-0.002750,0.249985,0,0);-ms-transform:matrix(0.257724,0.002835,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.257724,0.002835,-0.002750,0.249985,0,0);}
.m75_c01146{transform:matrix(0.258210,0.003615,-0.003500,0.249976,0,0);-ms-transform:matrix(0.258210,0.003615,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.258210,0.003615,-0.003500,0.249976,0,0);}
.m88_c01146{transform:matrix(0.261482,0.002615,-0.002500,0.249988,0,0);-ms-transform:matrix(0.261482,0.002615,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.261482,0.002615,-0.002500,0.249988,0,0);}
.m79_c01146{transform:matrix(0.261764,0.003665,-0.003500,0.249976,0,0);-ms-transform:matrix(0.261764,0.003665,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.261764,0.003665,-0.003500,0.249976,0,0);}
.m50_c01146{transform:matrix(0.261894,0.003667,-0.003500,0.249976,0,0);-ms-transform:matrix(0.261894,0.003667,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.261894,0.003667,-0.003500,0.249976,0,0);}
.m49_c01146{transform:matrix(0.262824,0.003680,-0.003500,0.249976,0,0);-ms-transform:matrix(0.262824,0.003680,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.262824,0.003680,-0.003500,0.249976,0,0);}
.m4_c01146{transform:matrix(0.264010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264010,0.000000,0.000000,0.250000,0,0);}
.m3d_c01146{transform:matrix(0.265145,0.003977,-0.003750,0.249972,0,0);-ms-transform:matrix(0.265145,0.003977,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.265145,0.003977,-0.003750,0.249972,0,0);}
.m4d_c01146{transform:matrix(0.265984,0.003724,-0.003500,0.249976,0,0);-ms-transform:matrix(0.265984,0.003724,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.265984,0.003724,-0.003500,0.249976,0,0);}
.m84_c01146{transform:matrix(0.266777,0.002668,-0.002500,0.249988,0,0);-ms-transform:matrix(0.266777,0.002668,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.266777,0.002668,-0.002500,0.249988,0,0);}
.m4a_c01146{transform:matrix(0.267384,0.003743,-0.003500,0.249976,0,0);-ms-transform:matrix(0.267384,0.003743,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.267384,0.003743,-0.003500,0.249976,0,0);}
.m7f_c01146{transform:matrix(0.269827,0.002698,-0.002500,0.249988,0,0);-ms-transform:matrix(0.269827,0.002698,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.269827,0.002698,-0.002500,0.249988,0,0);}
.m4e_c01146{transform:matrix(0.269974,0.003780,-0.003500,0.249976,0,0);-ms-transform:matrix(0.269974,0.003780,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.269974,0.003780,-0.003500,0.249976,0,0);}
.m7a_c01146{transform:matrix(0.272838,0.003820,-0.003500,0.249976,0,0);-ms-transform:matrix(0.272838,0.003820,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.272838,0.003820,-0.003500,0.249976,0,0);}
.m2_c01146{transform:matrix(0.273165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273165,0.000000,0.000000,0.250000,0,0);}
.m4f_c01146{transform:matrix(0.273198,0.003825,-0.003500,0.249976,0,0);-ms-transform:matrix(0.273198,0.003825,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.273198,0.003825,-0.003500,0.249976,0,0);}
.m1a_c01146{transform:matrix(0.274478,0.003019,-0.002750,0.249985,0,0);-ms-transform:matrix(0.274478,0.003019,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.274478,0.003019,-0.002750,0.249985,0,0);}
.m1c_c01146{transform:matrix(0.275653,0.003032,-0.002750,0.249985,0,0);-ms-transform:matrix(0.275653,0.003032,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.275653,0.003032,-0.002750,0.249985,0,0);}
.m22_c01146{transform:matrix(0.277053,0.003048,-0.002750,0.249985,0,0);-ms-transform:matrix(0.277053,0.003048,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.277053,0.003048,-0.002750,0.249985,0,0);}
.m7c_c01146{transform:matrix(0.278976,0.002790,-0.002500,0.249988,0,0);-ms-transform:matrix(0.278976,0.002790,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.278976,0.002790,-0.002500,0.249988,0,0);}
.m21_c01146{transform:matrix(0.281518,0.003097,-0.002750,0.249985,0,0);-ms-transform:matrix(0.281518,0.003097,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.281518,0.003097,-0.002750,0.249985,0,0);}
.m1_c01146{transform:matrix(0.282485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282485,0.000000,0.000000,0.250000,0,0);}
.m1f_c01146{transform:matrix(0.283083,0.003114,-0.002750,0.249985,0,0);-ms-transform:matrix(0.283083,0.003114,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.283083,0.003114,-0.002750,0.249985,0,0);}
.m99_c01146{transform:matrix(0.284843,0.004273,-0.003750,0.249972,0,0);-ms-transform:matrix(0.284843,0.004273,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.284843,0.004273,-0.003750,0.249972,0,0);}
.m4c_c01146{transform:matrix(0.306475,0.004291,-0.003500,0.249976,0,0);-ms-transform:matrix(0.306475,0.004291,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.306475,0.004291,-0.003500,0.249976,0,0);}
.m41_c01146{transform:matrix(0.308740,0.004631,-0.003750,0.249972,0,0);-ms-transform:matrix(0.308740,0.004631,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.308740,0.004631,-0.003750,0.249972,0,0);}
.m8_c01146{transform:matrix(0.320594,0.004809,-0.003750,0.249972,0,0);-ms-transform:matrix(0.320594,0.004809,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.320594,0.004809,-0.003750,0.249972,0,0);}
.m97_c01146{transform:matrix(0.327025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327025,0.000000,0.000000,0.250000,0,0);}
.m5e_c01146{transform:matrix(0.329540,0.003625,-0.002750,0.249985,0,0);-ms-transform:matrix(0.329540,0.003625,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.329540,0.003625,-0.002750,0.249985,0,0);}
.m51_c01146{transform:matrix(0.332052,0.004649,-0.003500,0.249976,0,0);-ms-transform:matrix(0.332052,0.004649,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.332052,0.004649,-0.003500,0.249976,0,0);}
.m5c_c01146{transform:matrix(0.351324,0.003865,-0.002750,0.249985,0,0);-ms-transform:matrix(0.351324,0.003865,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.351324,0.003865,-0.002750,0.249985,0,0);}
.m6_c01146{transform:matrix(0.499120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.499120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.499120,0.000000,0.000000,0.250000,0,0);}
.m86_c01146{transform:matrix(0.638018,0.006380,-0.002500,0.249988,0,0);-ms-transform:matrix(0.638018,0.006380,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.638018,0.006380,-0.002500,0.249988,0,0);}
.m45_c01146{transform:matrix(0.647247,0.009709,-0.003750,0.249972,0,0);-ms-transform:matrix(0.647247,0.009709,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.647247,0.009709,-0.003750,0.249972,0,0);}
.m52_c01146{transform:matrix(0.684590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.684590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.684590,0.000000,0.000000,0.250000,0,0);}
.m0_c01146{transform:matrix(1.186575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.186575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.186575,0.000000,0.000000,0.250000,0,0);}
.m5_c01146{transform:matrix(1.600835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.600835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.600835,0.000000,0.000000,0.250000,0,0);}
.v0_c01146{vertical-align:0.000000px;}
.ls0_c01146{letter-spacing:0.000000px;}
.sc__c01146{text-shadow:none;}
.sc0_c01146{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__c01146{-webkit-text-stroke:0px transparent;}
.sc0_c01146{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01146{word-spacing:0.000000px;}
.fc0_c01146{color:transparent;}
.fsd_c01146{font-size:24.000000px;}
.fs1_c01146{font-size:36.000000px;}
.fs8_c01146{font-size:42.000000px;}
.fsc_c01146{font-size:72.003600px;}
.fs4_c01146{font-size:72.004356px;}
.fs7_c01146{font-size:72.007056px;}
.fse_c01146{font-size:72.008100px;}
.fs9_c01146{font-size:78.004719px;}
.fs3_c01146{font-size:78.007644px;}
.fs6_c01146{font-size:78.008775px;}
.fs0_c01146{font-size:84.000000px;}
.fsb_c01146{font-size:84.005082px;}
.fs2_c01146{font-size:84.009449px;}
.fs5_c01146{font-size:90.005445px;}
.fsa_c01146{font-size:96.005808px;}
.y0_c01146{bottom:0.000000px;}
.y9a_c01146{bottom:489.511695px;}
.y99_c01146{bottom:490.326195px;}
.y98_c01146{bottom:491.168370px;}
.y97_c01146{bottom:491.978707px;}
.y96_c01146{bottom:492.460545px;}
.y95_c01146{bottom:492.966682px;}
.y94_c01146{bottom:493.643505px;}
.y93_c01146{bottom:494.109255px;}
.y92_c01146{bottom:496.308652px;}
.y91_c01146{bottom:496.803000px;}
.y90_c01146{bottom:530.820000px;}
.y8f_c01146{bottom:594.040500px;}
.y8e_c01146{bottom:595.225500px;}
.y8d_c01146{bottom:595.906500px;}
.y8c_c01146{bottom:597.799500px;}
.y8b_c01146{bottom:598.485000px;}
.y8a_c01146{bottom:600.351000px;}
.y89_c01146{bottom:601.500000px;}
.y88_c01146{bottom:602.646000px;}
.y87_c01146{bottom:635.602500px;}
.y86_c01146{bottom:664.686570px;}
.y85_c01146{bottom:665.010615px;}
.y84_c01146{bottom:665.912850px;}
.y83_c01146{bottom:666.142170px;}
.y82_c01146{bottom:666.801315px;}
.y81_c01146{bottom:667.130460px;}
.y80_c01146{bottom:667.675935px;}
.y7f_c01146{bottom:668.113425px;}
.y7e_c01146{bottom:668.459310px;}
.y7d_c01146{bottom:669.137010px;}
.y7c_c01146{bottom:669.458460px;}
.y7b_c01146{bottom:669.785175px;}
.y7a_c01146{bottom:670.786875px;}
.y79_c01146{bottom:671.221500px;}
.y78_c01146{bottom:698.054697px;}
.y77_c01146{bottom:699.729762px;}
.y76_c01146{bottom:700.504158px;}
.y75_c01146{bottom:701.275194px;}
.y74_c01146{bottom:701.914161px;}
.y73_c01146{bottom:703.313475px;}
.y72_c01146{bottom:703.767285px;}
.y71_c01146{bottom:704.095536px;}
.y70_c01146{bottom:705.782088px;}
.y6f_c01146{bottom:706.863000px;}
.y6e_c01146{bottom:734.405490px;}
.y6d_c01146{bottom:735.134199px;}
.y6c_c01146{bottom:735.703610px;}
.y6b_c01146{bottom:737.139500px;}
.y6a_c01146{bottom:738.311546px;}
.y69_c01146{bottom:739.168275px;}
.y68_c01146{bottom:739.891194px;}
.y67_c01146{bottom:740.316614px;}
.y66_c01146{bottom:741.194081px;}
.y65_c01146{bottom:741.893144px;}
.y64_c01146{bottom:742.767723px;}
.y63_c01146{bottom:770.652194px;}
.y62_c01146{bottom:772.317160px;}
.y61_c01146{bottom:772.988268px;}
.y60_c01146{bottom:773.984471px;}
.y5f_c01146{bottom:774.491166px;}
.y5e_c01146{bottom:775.491674px;}
.y5d_c01146{bottom:776.153609px;}
.y5c_c01146{bottom:777.295055px;}
.y5b_c01146{bottom:777.805906px;}
.y5a_c01146{bottom:778.682235px;}
.y59_c01146{bottom:808.824053px;}
.y58_c01146{bottom:809.920048px;}
.y57_c01146{bottom:810.163242px;}
.y56_c01146{bottom:810.891304px;}
.y55_c01146{bottom:811.256598px;}
.y54_c01146{bottom:811.868550px;}
.y53_c01146{bottom:812.230907px;}
.y52_c01146{bottom:813.332744px;}
.y51_c01146{bottom:814.051500px;}
.y50_c01146{bottom:818.100000px;}
.y4f_c01146{bottom:842.769015px;}
.y4e_c01146{bottom:843.550614px;}
.y4d_c01146{bottom:844.488747px;}
.y4c_c01146{bottom:845.554770px;}
.y4b_c01146{bottom:845.890728px;}
.y4a_c01146{bottom:846.964941px;}
.y49_c01146{bottom:847.267467px;}
.y48_c01146{bottom:848.208603px;}
.y47_c01146{bottom:849.142221px;}
.y46_c01146{bottom:849.595989px;}
.y45_c01146{bottom:850.049442px;}
.y44_c01146{bottom:850.503000px;}
.y43_c01146{bottom:878.968102px;}
.y42_c01146{bottom:879.624247px;}
.y41_c01146{bottom:880.644240px;}
.y40_c01146{bottom:881.632642px;}
.y3f_c01146{bottom:882.006952px;}
.y3e_c01146{bottom:883.281645px;}
.y3d_c01146{bottom:883.629180px;}
.y3c_c01146{bottom:884.629710px;}
.y3b_c01146{bottom:885.424095px;}
.y3a_c01146{bottom:886.024035px;}
.y39_c01146{bottom:886.597987px;}
.y38_c01146{bottom:887.080500px;}
.y37_c01146{bottom:913.889527px;}
.y36_c01146{bottom:914.245713px;}
.y35_c01146{bottom:915.104356px;}
.y34_c01146{bottom:916.221720px;}
.y33_c01146{bottom:916.705087px;}
.y32_c01146{bottom:917.679709px;}
.y31_c01146{bottom:918.535020px;}
.y30_c01146{bottom:919.625175px;}
.y2f_c01146{bottom:919.981261px;}
.y2e_c01146{bottom:920.967500px;}
.y2d_c01146{bottom:947.698152px;}
.y2c_c01146{bottom:949.001352px;}
.y2b_c01146{bottom:949.450512px;}
.y2a_c01146{bottom:949.744579px;}
.y29_c01146{bottom:951.037683px;}
.y28_c01146{bottom:951.763374px;}
.y27_c01146{bottom:952.188827px;}
.y26_c01146{bottom:953.055933px;}
.y25_c01146{bottom:953.915567px;}
.y24_c01146{bottom:954.333496px;}
.y23_c01146{bottom:955.214527px;}
.y22_c01146{bottom:955.505015px;}
.y21_c01146{bottom:956.070614px;}
.y20_c01146{bottom:983.402031px;}
.y1f_c01146{bottom:984.602290px;}
.y1e_c01146{bottom:985.734058px;}
.y1d_c01146{bottom:986.324791px;}
.y1c_c01146{bottom:987.557754px;}
.y1b_c01146{bottom:987.923180px;}
.y1a_c01146{bottom:988.160367px;}
.y19_c01146{bottom:989.129016px;}
.y18_c01146{bottom:989.494244px;}
.y17_c01146{bottom:990.361500px;}
.y16_c01146{bottom:1017.844863px;}
.y15_c01146{bottom:1018.302201px;}
.y14_c01146{bottom:1019.704665px;}
.y13_c01146{bottom:1020.646053px;}
.y12_c01146{bottom:1022.184723px;}
.y11_c01146{bottom:1023.742398px;}
.y10_c01146{bottom:1024.982007px;}
.yf_c01146{bottom:1025.601927px;}
.ye_c01146{bottom:1026.543000px;}
.yd_c01146{bottom:1055.176792px;}
.yc_c01146{bottom:1056.848587px;}
.yb_c01146{bottom:1057.343002px;}
.ya_c01146{bottom:1058.169045px;}
.y9_c01146{bottom:1059.007777px;}
.y8_c01146{bottom:1059.505747px;}
.y7_c01146{bottom:1060.664047px;}
.y6_c01146{bottom:1061.166383px;}
.y5_c01146{bottom:1061.672475px;}
.y4_c01146{bottom:1062.183000px;}
.y3_c01146{bottom:1114.051500px;}
.y2_c01146{bottom:1129.729500px;}
.y1_c01146{bottom:1186.269000px;}
.hf_c01146{height:24.000000px;}
.h3_c01146{height:36.000000px;}
.ha_c01146{height:42.000000px;}
.he_c01146{height:72.003600px;}
.h6_c01146{height:72.004356px;}
.h9_c01146{height:72.007056px;}
.h10_c01146{height:72.008100px;}
.hb_c01146{height:78.004719px;}
.h5_c01146{height:78.007644px;}
.h8_c01146{height:78.008775px;}
.h2_c01146{height:84.000000px;}
.hd_c01146{height:84.005082px;}
.h4_c01146{height:84.009449px;}
.h7_c01146{height:90.005445px;}
.hc_c01146{height:96.005808px;}
.h1_c01146{height:1258.500000px;}
.h0_c01146{height:1258.740000px;}
.w0_c01146{width:920.100000px;}
.w1_c01146{width:920.250000px;}
.x0_c01146{left:0.000000px;}
.x12_c01146{left:183.138000px;}
.x32_c01146{left:184.761000px;}
.x33_c01146{left:216.928500px;}
.x21_c01146{left:226.658985px;}
.x22_c01146{left:248.975490px;}
.x13_c01146{left:250.357500px;}
.x34_c01146{left:255.192000px;}
.x52_c01146{left:260.010000px;}
.x1a_c01146{left:261.198000px;}
.x42_c01146{left:269.181858px;}
.x2c_c01146{left:272.296793px;}
.x3a_c01146{left:281.694000px;}
.x8_c01146{left:292.747500px;}
.x14_c01146{left:294.637500px;}
.x2d_c01146{left:304.668293px;}
.x53_c01146{left:315.630000px;}
.x23_c01146{left:316.795005px;}
.x9_c01146{left:326.782500px;}
.x57_c01146{left:329.130000px;}
.x2_c01146{left:335.340000px;}
.x35_c01146{left:348.147000px;}
.x6_c01146{left:349.380000px;}
.xa_c01146{left:360.522000px;}
.x43_c01146{left:361.603283px;}
.x58_c01146{left:362.686500px;}
.x46_c01146{left:371.328746px;}
.x4a_c01146{left:380.805000px;}
.x3e_c01146{left:381.895500px;}
.x15_c01146{left:383.181000px;}
.x4d_c01146{left:391.908000px;}
.xb_c01146{left:394.011000px;}
.x1b_c01146{left:404.022000px;}
.x1_c01146{left:407.970000px;}
.x24_c01146{left:415.071343px;}
.x54_c01146{left:417.420000px;}
.x1c_c01146{left:437.242500px;}
.x59_c01146{left:438.858000px;}
.x3_c01146{left:455.490000px;}
.x47_c01146{left:459.630299px;}
.xc_c01146{left:471.231000px;}
.x5a_c01146{left:472.600500px;}
.x25_c01146{left:481.761375px;}
.x55_c01146{left:492.171000px;}
.x7_c01146{left:493.830000px;}
.xd_c01146{left:504.429000px;}
.x26_c01146{left:514.438149px;}
.x4_c01146{left:517.860000px;}
.x36_c01146{left:522.997500px;}
.x48_c01146{left:525.513347px;}
.x5_c01146{left:532.170000px;}
.x3f_c01146{left:536.923500px;}
.x3b_c01146{left:537.940500px;}
.x37_c01146{left:547.951500px;}
.x1d_c01146{left:549.330000px;}
.x40_c01146{left:559.032000px;}
.xe_c01146{left:560.344500px;}
.x27_c01146{left:570.317928px;}
.x44_c01146{left:582.237564px;}
.x4e_c01146{left:592.563000px;}
.x1e_c01146{left:603.033000px;}
.x16_c01146{left:604.348500px;}
.x2e_c01146{left:614.073292px;}
.xf_c01146{left:615.414000px;}
.x4f_c01146{left:625.477500px;}
.x4b_c01146{left:637.332000px;}
.x10_c01146{left:648.375000px;}
.x41_c01146{left:658.668000px;}
.x28_c01146{left:669.734233px;}
.x17_c01146{left:671.590500px;}
.x38_c01146{left:681.844500px;}
.x29_c01146{left:692.376238px;}
.x45_c01146{left:693.442680px;}
.x56_c01146{left:703.843500px;}
.x1f_c01146{left:705.921000px;}
.x50_c01146{left:714.324000px;}
.x2f_c01146{left:715.651793px;}
.x39_c01146{left:725.587500px;}
.x2a_c01146{left:726.935479px;}
.x3c_c01146{left:736.923000px;}
.x11_c01146{left:759.828000px;}
.x49_c01146{left:770.039484px;}
.x18_c01146{left:771.766500px;}
.x30_c01146{left:793.710293px;}
.x19_c01146{left:804.433500px;}
.x4c_c01146{left:812.293500px;}
.x20_c01146{left:815.035500px;}
.x31_c01146{left:826.090793px;}
.x2b_c01146{left:827.133268px;}
.x51_c01146{left:836.952000px;}
.x3d_c01146{left:842.130000px;}
@media print{
.v0_c01146{vertical-align:0.000000pt;}
.ls0_c01146{letter-spacing:0.000000pt;}
.ws0_c01146{word-spacing:0.000000pt;}
.fsd_c01146{font-size:21.333333pt;}
.fs1_c01146{font-size:32.000000pt;}
.fs8_c01146{font-size:37.333333pt;}
.fsc_c01146{font-size:64.003200pt;}
.fs4_c01146{font-size:64.003872pt;}
.fs7_c01146{font-size:64.006272pt;}
.fse_c01146{font-size:64.007200pt;}
.fs9_c01146{font-size:69.337528pt;}
.fs3_c01146{font-size:69.340128pt;}
.fs6_c01146{font-size:69.341133pt;}
.fs0_c01146{font-size:74.666667pt;}
.fsb_c01146{font-size:74.671184pt;}
.fs2_c01146{font-size:74.675066pt;}
.fs5_c01146{font-size:80.004840pt;}
.fsa_c01146{font-size:85.338496pt;}
.y0_c01146{bottom:0.000000pt;}
.y9a_c01146{bottom:435.121507pt;}
.y99_c01146{bottom:435.845507pt;}
.y98_c01146{bottom:436.594107pt;}
.y97_c01146{bottom:437.314407pt;}
.y96_c01146{bottom:437.742707pt;}
.y95_c01146{bottom:438.192607pt;}
.y94_c01146{bottom:438.794227pt;}
.y93_c01146{bottom:439.208227pt;}
.y92_c01146{bottom:441.163247pt;}
.y91_c01146{bottom:441.602667pt;}
.y90_c01146{bottom:471.840000pt;}
.y8f_c01146{bottom:528.036000pt;}
.y8e_c01146{bottom:529.089333pt;}
.y8d_c01146{bottom:529.694667pt;}
.y8c_c01146{bottom:531.377333pt;}
.y8b_c01146{bottom:531.986667pt;}
.y8a_c01146{bottom:533.645333pt;}
.y89_c01146{bottom:534.666667pt;}
.y88_c01146{bottom:535.685333pt;}
.y87_c01146{bottom:564.980000pt;}
.y86_c01146{bottom:590.832507pt;}
.y85_c01146{bottom:591.120547pt;}
.y84_c01146{bottom:591.922533pt;}
.y83_c01146{bottom:592.126373pt;}
.y82_c01146{bottom:592.712280pt;}
.y81_c01146{bottom:593.004853pt;}
.y80_c01146{bottom:593.489720pt;}
.y7f_c01146{bottom:593.878600pt;}
.y7e_c01146{bottom:594.186053pt;}
.y7d_c01146{bottom:594.788453pt;}
.y7c_c01146{bottom:595.074187pt;}
.y7b_c01146{bottom:595.364600pt;}
.y7a_c01146{bottom:596.255000pt;}
.y79_c01146{bottom:596.641333pt;}
.y78_c01146{bottom:620.493064pt;}
.y77_c01146{bottom:621.982011pt;}
.y76_c01146{bottom:622.670363pt;}
.y75_c01146{bottom:623.355728pt;}
.y74_c01146{bottom:623.923699pt;}
.y73_c01146{bottom:625.167533pt;}
.y72_c01146{bottom:625.570920pt;}
.y71_c01146{bottom:625.862699pt;}
.y70_c01146{bottom:627.361856pt;}
.y6f_c01146{bottom:628.322667pt;}
.y6e_c01146{bottom:652.804880pt;}
.y6d_c01146{bottom:653.452621pt;}
.y6c_c01146{bottom:653.958764pt;}
.y6b_c01146{bottom:655.235111pt;}
.y6a_c01146{bottom:656.276929pt;}
.y69_c01146{bottom:657.038467pt;}
.y68_c01146{bottom:657.681061pt;}
.y67_c01146{bottom:658.059212pt;}
.y66_c01146{bottom:658.839183pt;}
.y65_c01146{bottom:659.460572pt;}
.y64_c01146{bottom:660.237976pt;}
.y63_c01146{bottom:685.024172pt;}
.y62_c01146{bottom:686.504143pt;}
.y61_c01146{bottom:687.100683pt;}
.y60_c01146{bottom:687.986196pt;}
.y5f_c01146{bottom:688.436592pt;}
.y5e_c01146{bottom:689.325932pt;}
.y5d_c01146{bottom:689.914319pt;}
.y5c_c01146{bottom:690.928937pt;}
.y5b_c01146{bottom:691.383028pt;}
.y5a_c01146{bottom:692.161987pt;}
.y59_c01146{bottom:718.954713pt;}
.y58_c01146{bottom:719.928932pt;}
.y57_c01146{bottom:720.145104pt;}
.y56_c01146{bottom:720.792271pt;}
.y55_c01146{bottom:721.116976pt;}
.y54_c01146{bottom:721.660933pt;}
.y53_c01146{bottom:721.983028pt;}
.y52_c01146{bottom:722.962439pt;}
.y51_c01146{bottom:723.601333pt;}
.y50_c01146{bottom:727.200000pt;}
.y4f_c01146{bottom:749.128013pt;}
.y4e_c01146{bottom:749.822768pt;}
.y4d_c01146{bottom:750.656664pt;}
.y4c_c01146{bottom:751.604240pt;}
.y4b_c01146{bottom:751.902869pt;}
.y4a_c01146{bottom:752.857725pt;}
.y49_c01146{bottom:753.126637pt;}
.y48_c01146{bottom:753.963203pt;}
.y47_c01146{bottom:754.793085pt;}
.y46_c01146{bottom:755.196435pt;}
.y45_c01146{bottom:755.599504pt;}
.y44_c01146{bottom:756.002667pt;}
.y43_c01146{bottom:781.304980pt;}
.y42_c01146{bottom:781.888220pt;}
.y41_c01146{bottom:782.794880pt;}
.y40_c01146{bottom:783.673460pt;}
.y3f_c01146{bottom:784.006180pt;}
.y3e_c01146{bottom:785.139240pt;}
.y3d_c01146{bottom:785.448160pt;}
.y3c_c01146{bottom:786.337520pt;}
.y3b_c01146{bottom:787.043640pt;}
.y3a_c01146{bottom:787.576920pt;}
.y39_c01146{bottom:788.087100pt;}
.y38_c01146{bottom:788.516000pt;}
.y37_c01146{bottom:812.346247pt;}
.y36_c01146{bottom:812.662856pt;}
.y35_c01146{bottom:813.426095pt;}
.y34_c01146{bottom:814.419307pt;}
.y33_c01146{bottom:814.848967pt;}
.y32_c01146{bottom:815.715297pt;}
.y31_c01146{bottom:816.475573pt;}
.y30_c01146{bottom:817.444600pt;}
.y2f_c01146{bottom:817.761121pt;}
.y2e_c01146{bottom:818.637777pt;}
.y2d_c01146{bottom:842.398357pt;}
.y2c_c01146{bottom:843.556757pt;}
.y2b_c01146{bottom:843.956011pt;}
.y2a_c01146{bottom:844.217404pt;}
.y29_c01146{bottom:845.366829pt;}
.y28_c01146{bottom:846.011888pt;}
.y27_c01146{bottom:846.390068pt;}
.y26_c01146{bottom:847.160829pt;}
.y25_c01146{bottom:847.924948pt;}
.y24_c01146{bottom:848.296441pt;}
.y23_c01146{bottom:849.079580pt;}
.y22_c01146{bottom:849.337791pt;}
.y21_c01146{bottom:849.840545pt;}
.y20_c01146{bottom:874.135139pt;}
.y1f_c01146{bottom:875.202036pt;}
.y1e_c01146{bottom:876.208052pt;}
.y1d_c01146{bottom:876.733148pt;}
.y1c_c01146{bottom:877.829115pt;}
.y1b_c01146{bottom:878.153937pt;}
.y1a_c01146{bottom:878.364771pt;}
.y19_c01146{bottom:879.225792pt;}
.y18_c01146{bottom:879.550439pt;}
.y17_c01146{bottom:880.321333pt;}
.y16_c01146{bottom:904.750989pt;}
.y15_c01146{bottom:905.157512pt;}
.y14_c01146{bottom:906.404147pt;}
.y13_c01146{bottom:907.240936pt;}
.y12_c01146{bottom:908.608643pt;}
.y11_c01146{bottom:909.993243pt;}
.y10_c01146{bottom:911.095117pt;}
.yf_c01146{bottom:911.646157pt;}
.ye_c01146{bottom:912.482667pt;}
.yd_c01146{bottom:937.934927pt;}
.yc_c01146{bottom:939.420967pt;}
.yb_c01146{bottom:939.860447pt;}
.ya_c01146{bottom:940.594707pt;}
.y9_c01146{bottom:941.340247pt;}
.y8_c01146{bottom:941.782887pt;}
.y7_c01146{bottom:942.812487pt;}
.y6_c01146{bottom:943.259007pt;}
.y5_c01146{bottom:943.708867pt;}
.y4_c01146{bottom:944.162667pt;}
.y3_c01146{bottom:990.268000pt;}
.y2_c01146{bottom:1004.204000pt;}
.y1_c01146{bottom:1054.461333pt;}
.hf_c01146{height:21.333333pt;}
.h3_c01146{height:32.000000pt;}
.ha_c01146{height:37.333333pt;}
.he_c01146{height:64.003200pt;}
.h6_c01146{height:64.003872pt;}
.h9_c01146{height:64.006272pt;}
.h10_c01146{height:64.007200pt;}
.hb_c01146{height:69.337528pt;}
.h5_c01146{height:69.340128pt;}
.h8_c01146{height:69.341133pt;}
.h2_c01146{height:74.666667pt;}
.hd_c01146{height:74.671184pt;}
.h4_c01146{height:74.675066pt;}
.h7_c01146{height:80.004840pt;}
.hc_c01146{height:85.338496pt;}
.h1_c01146{height:1118.666667pt;}
.h0_c01146{height:1118.880000pt;}
.w0_c01146{width:817.866667pt;}
.w1_c01146{width:818.000000pt;}
.x0_c01146{left:0.000000pt;}
.x12_c01146{left:162.789333pt;}
.x32_c01146{left:164.232000pt;}
.x33_c01146{left:192.825333pt;}
.x21_c01146{left:201.474653pt;}
.x22_c01146{left:221.311547pt;}
.x13_c01146{left:222.540000pt;}
.x34_c01146{left:226.837333pt;}
.x52_c01146{left:231.120000pt;}
.x1a_c01146{left:232.176000pt;}
.x42_c01146{left:239.272763pt;}
.x2c_c01146{left:242.041593pt;}
.x3a_c01146{left:250.394667pt;}
.x8_c01146{left:260.220000pt;}
.x14_c01146{left:261.900000pt;}
.x2d_c01146{left:270.816260pt;}
.x53_c01146{left:280.560000pt;}
.x23_c01146{left:281.595560pt;}
.x9_c01146{left:290.473333pt;}
.x57_c01146{left:292.560000pt;}
.x2_c01146{left:298.080000pt;}
.x35_c01146{left:309.464000pt;}
.x6_c01146{left:310.560000pt;}
.xa_c01146{left:320.464000pt;}
.x43_c01146{left:321.425140pt;}
.x58_c01146{left:322.388000pt;}
.x46_c01146{left:330.069996pt;}
.x4a_c01146{left:338.493333pt;}
.x3e_c01146{left:339.462667pt;}
.x15_c01146{left:340.605333pt;}
.x4d_c01146{left:348.362667pt;}
.xb_c01146{left:350.232000pt;}
.x1b_c01146{left:359.130667pt;}
.x1_c01146{left:362.640000pt;}
.x24_c01146{left:368.952305pt;}
.x54_c01146{left:371.040000pt;}
.x1c_c01146{left:388.660000pt;}
.x59_c01146{left:390.096000pt;}
.x3_c01146{left:404.880000pt;}
.x47_c01146{left:408.560265pt;}
.xc_c01146{left:418.872000pt;}
.x5a_c01146{left:420.089333pt;}
.x25_c01146{left:428.232333pt;}
.x55_c01146{left:437.485333pt;}
.x7_c01146{left:438.960000pt;}
.xd_c01146{left:448.381333pt;}
.x26_c01146{left:457.278355pt;}
.x4_c01146{left:460.320000pt;}
.x36_c01146{left:464.886667pt;}
.x48_c01146{left:467.122975pt;}
.x5_c01146{left:473.040000pt;}
.x3f_c01146{left:477.265333pt;}
.x3b_c01146{left:478.169333pt;}
.x37_c01146{left:487.068000pt;}
.x1d_c01146{left:488.293333pt;}
.x40_c01146{left:496.917333pt;}
.xe_c01146{left:498.084000pt;}
.x27_c01146{left:506.949269pt;}
.x44_c01146{left:517.544501pt;}
.x4e_c01146{left:526.722667pt;}
.x1e_c01146{left:536.029333pt;}
.x16_c01146{left:537.198667pt;}
.x2e_c01146{left:545.842927pt;}
.xf_c01146{left:547.034667pt;}
.x4f_c01146{left:555.980000pt;}
.x4b_c01146{left:566.517333pt;}
.x10_c01146{left:576.333333pt;}
.x41_c01146{left:585.482667pt;}
.x28_c01146{left:595.319319pt;}
.x17_c01146{left:596.969333pt;}
.x38_c01146{left:606.084000pt;}
.x29_c01146{left:615.445545pt;}
.x45_c01146{left:616.393493pt;}
.x56_c01146{left:625.638667pt;}
.x1f_c01146{left:627.485333pt;}
.x50_c01146{left:634.954667pt;}
.x2f_c01146{left:636.134927pt;}
.x39_c01146{left:644.966667pt;}
.x2a_c01146{left:646.164871pt;}
.x3c_c01146{left:655.042667pt;}
.x11_c01146{left:675.402667pt;}
.x49_c01146{left:684.479541pt;}
.x18_c01146{left:686.014667pt;}
.x30_c01146{left:705.520260pt;}
.x19_c01146{left:715.052000pt;}
.x4c_c01146{left:722.038667pt;}
.x20_c01146{left:724.476000pt;}
.x31_c01146{left:734.302927pt;}
.x2b_c01146{left:735.229572pt;}
.x51_c01146{left:743.957333pt;}
.x3d_c01146{left:748.560000pt;}
}





/* 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_c01147 {
    display:none;
  }
  .loading-indicator_c01147.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01147 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_c01147 { 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_c01147" -> "#page-container .classname_c01147")
 */
.pf_c01147 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01147 { /* 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_c01147.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01147 { /* 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_c01147 { /* 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_c01147 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01147 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01147 {overflow:visible;}
  }
}
.c_c01147 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01147 { /* 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_c01147:after { /* webkit #35443 */
  content: '';
}
.t_c01147:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01147 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 */
}
.__c01147 { /* 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_c01147 { /* info for Javascript */
  display:none;
}
.l_c01147 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01147 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01147 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01147: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_c01147 {
    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_c01147.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01147.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_c01147 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01147{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01147;src:url('chunks/assets/font_b11a17f404e7258299fdf971.woff2')format("woff");}.ff1_c01147{font-family:ff1_c01147;line-height:1.000000;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;}
.m18_c01147{transform:matrix(0.169870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169870,0.000000,0.000000,0.250000,0,0);}
.m1a_c01147{transform:matrix(0.178480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178480,0.000000,0.000000,0.250000,0,0);}
.m3_c01147{transform:matrix(0.183509,-0.027647,0.037244,0.247210,0,0);-ms-transform:matrix(0.183509,-0.027647,0.037244,0.247210,0,0);-webkit-transform:matrix(0.183509,-0.027647,0.037244,0.247210,0,0);}
.m5_c01147{transform:matrix(0.188038,-0.028329,0.037244,0.247210,0,0);-ms-transform:matrix(0.188038,-0.028329,0.037244,0.247210,0,0);-webkit-transform:matrix(0.188038,-0.028329,0.037244,0.247210,0,0);}
.mb_c01147{transform:matrix(0.195010,-0.009370,0.011998,0.249712,0,0);-ms-transform:matrix(0.195010,-0.009370,0.011998,0.249712,0,0);-webkit-transform:matrix(0.195010,-0.009370,0.011998,0.249712,0,0);}
.m1_c01147{transform:matrix(0.198155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198155,0.000000,0.000000,0.250000,0,0);}
.m7_c01147{transform:matrix(0.201245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201245,0.000000,0.000000,0.250000,0,0);}
.m8_c01147{transform:matrix(0.208030,-0.009995,0.011998,0.249712,0,0);-ms-transform:matrix(0.208030,-0.009995,0.011998,0.249712,0,0);-webkit-transform:matrix(0.208030,-0.009995,0.011998,0.249712,0,0);}
.ma_c01147{transform:matrix(0.221829,-0.010658,0.011998,0.249712,0,0);-ms-transform:matrix(0.221829,-0.010658,0.011998,0.249712,0,0);-webkit-transform:matrix(0.221829,-0.010658,0.011998,0.249712,0,0);}
.m19_c01147{transform:matrix(0.227710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227710,0.000000,0.000000,0.250000,0,0);}
.m4_c01147{transform:matrix(0.234266,-0.035294,0.037244,0.247210,0,0);-ms-transform:matrix(0.234266,-0.035294,0.037244,0.247210,0,0);-webkit-transform:matrix(0.234266,-0.035294,0.037244,0.247210,0,0);}
.mf_c01147{transform:matrix(0.241017,-0.025192,0.025989,0.248645,0,0);-ms-transform:matrix(0.241017,-0.025192,0.025989,0.248645,0,0);-webkit-transform:matrix(0.241017,-0.025192,0.025989,0.248645,0,0);}
.m6_c01147{transform:matrix(0.247986,-0.037361,0.037244,0.247210,0,0);-ms-transform:matrix(0.247986,-0.037361,0.037244,0.247210,0,0);-webkit-transform:matrix(0.247986,-0.037361,0.037244,0.247210,0,0);}
.m1c_c01147{transform:matrix(0.252260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252260,0.000000,0.000000,0.250000,0,0);}
.md_c01147{transform:matrix(0.280795,-0.029349,0.025989,0.248645,0,0);-ms-transform:matrix(0.280795,-0.029349,0.025989,0.248645,0,0);-webkit-transform:matrix(0.280795,-0.029349,0.025989,0.248645,0,0);}
.m16_c01147{transform:matrix(0.346323,-0.036199,0.025989,0.248645,0,0);-ms-transform:matrix(0.346323,-0.036199,0.025989,0.248645,0,0);-webkit-transform:matrix(0.346323,-0.036199,0.025989,0.248645,0,0);}
.m9_c01147{transform:matrix(0.354536,-0.017035,0.011998,0.249712,0,0);-ms-transform:matrix(0.354536,-0.017035,0.011998,0.249712,0,0);-webkit-transform:matrix(0.354536,-0.017035,0.011998,0.249712,0,0);}
.m10_c01147{transform:matrix(0.419012,-0.043796,0.025989,0.248645,0,0);-ms-transform:matrix(0.419012,-0.043796,0.025989,0.248645,0,0);-webkit-transform:matrix(0.419012,-0.043796,0.025989,0.248645,0,0);}
.m1b_c01147{transform:matrix(0.468155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468155,0.000000,0.000000,0.250000,0,0);}
.m15_c01147{transform:matrix(0.500459,-0.052309,0.025989,0.248645,0,0);-ms-transform:matrix(0.500459,-0.052309,0.025989,0.248645,0,0);-webkit-transform:matrix(0.500459,-0.052309,0.025989,0.248645,0,0);}
.m13_c01147{transform:matrix(0.583889,-0.061030,0.025989,0.248645,0,0);-ms-transform:matrix(0.583889,-0.061030,0.025989,0.248645,0,0);-webkit-transform:matrix(0.583889,-0.061030,0.025989,0.248645,0,0);}
.m17_c01147{transform:matrix(0.597823,-0.062486,0.025989,0.248645,0,0);-ms-transform:matrix(0.597823,-0.062486,0.025989,0.248645,0,0);-webkit-transform:matrix(0.597823,-0.062486,0.025989,0.248645,0,0);}
.m14_c01147{transform:matrix(0.702309,-0.073407,0.025989,0.248645,0,0);-ms-transform:matrix(0.702309,-0.073407,0.025989,0.248645,0,0);-webkit-transform:matrix(0.702309,-0.073407,0.025989,0.248645,0,0);}
.m12_c01147{transform:matrix(0.757876,-0.079215,0.025989,0.248645,0,0);-ms-transform:matrix(0.757876,-0.079215,0.025989,0.248645,0,0);-webkit-transform:matrix(0.757876,-0.079215,0.025989,0.248645,0,0);}
.m11_c01147{transform:matrix(0.772686,-0.080763,0.025989,0.248645,0,0);-ms-transform:matrix(0.772686,-0.080763,0.025989,0.248645,0,0);-webkit-transform:matrix(0.772686,-0.080763,0.025989,0.248645,0,0);}
.m2_c01147{transform:matrix(0.954595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.954595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.954595,0.000000,0.000000,0.250000,0,0);}
.me_c01147{transform:matrix(0.993746,-0.103869,0.025989,0.248645,0,0);-ms-transform:matrix(0.993746,-0.103869,0.025989,0.248645,0,0);-webkit-transform:matrix(0.993746,-0.103869,0.025989,0.248645,0,0);}
.mc_c01147{transform:matrix(1.075804,-0.112446,0.025989,0.248645,0,0);-ms-transform:matrix(1.075804,-0.112446,0.025989,0.248645,0,0);-webkit-transform:matrix(1.075804,-0.112446,0.025989,0.248645,0,0);}
.m0_c01147{transform:matrix(1.110735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.110735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.110735,0.000000,0.000000,0.250000,0,0);}
.v0_c01147{vertical-align:0.000000px;}
.ls0_c01147{letter-spacing:0.000000px;}
.sc__c01147{text-shadow:none;}
.sc0_c01147{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__c01147{-webkit-text-stroke:0px transparent;}
.sc0_c01147{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01147{word-spacing:0.000000px;}
.fc0_c01147{color:transparent;}
.fs1_c01147{font-size:18.000000px;}
.fs0_c01147{font-size:24.000000px;}
.fs4_c01147{font-size:36.015135px;}
.fs5_c01147{font-size:102.000000px;}
.fs3_c01147{font-size:102.015554px;}
.fs2_c01147{font-size:156.025114px;}
.y0_c01147{bottom:0.000000px;}
.y18_c01147{bottom:642.070500px;}
.yc_c01147{bottom:664.471500px;}
.yd_c01147{bottom:668.271036px;}
.ye_c01147{bottom:670.349268px;}
.yf_c01147{bottom:673.536036px;}
.y10_c01147{bottom:674.414784px;}
.y11_c01147{bottom:679.264980px;}
.y12_c01147{bottom:682.094352px;}
.y13_c01147{bottom:689.389068px;}
.y14_c01147{bottom:692.987052px;}
.y15_c01147{bottom:696.376464px;}
.y8_c01147{bottom:701.239500px;}
.y16_c01147{bottom:701.370804px;}
.y9_c01147{bottom:703.818684px;}
.y17_c01147{bottom:703.945896px;}
.ya_c01147{bottom:706.462596px;}
.yb_c01147{bottom:710.903412px;}
.y7_c01147{bottom:729.000000px;}
.y3_c01147{bottom:894.550500px;}
.y4_c01147{bottom:896.567140px;}
.y5_c01147{bottom:903.962308px;}
.y6_c01147{bottom:917.648554px;}
.y1_c01147{bottom:1120.770000px;}
.y2_c01147{bottom:1138.320000px;}
.h3_c01147{height:18.000000px;}
.h2_c01147{height:24.000000px;}
.h6_c01147{height:36.015135px;}
.h7_c01147{height:102.000000px;}
.h5_c01147{height:102.015554px;}
.h4_c01147{height:156.025114px;}
.h1_c01147{height:1258.500000px;}
.h0_c01147{height:1258.740000px;}
.w0_c01147{width:920.100000px;}
.w1_c01147{width:920.250000px;}
.x0_c01147{left:0.000000px;}
.x9_c01147{left:268.065000px;}
.x4_c01147{left:278.494500px;}
.xd_c01147{left:281.490000px;}
.x5_c01147{left:291.880120px;}
.xe_c01147{left:317.841330px;}
.xa_c01147{left:321.744267px;}
.xf_c01147{left:337.724415px;}
.x6_c01147{left:340.966168px;}
.x10_c01147{left:368.213205px;}
.xb_c01147{left:376.770686px;}
.x11_c01147{left:423.023775px;}
.x7_c01147{left:431.809775px;}
.x12_c01147{left:450.093247px;}
.x8_c01147{left:458.460000px;}
.xc_c01147{left:469.195169px;}
.x18_c01147{left:503.010000px;}
.x13_c01147{left:519.884040px;}
.x19_c01147{left:526.500000px;}
.x14_c01147{left:554.307060px;}
.x1a_c01147{left:568.080000px;}
.x15_c01147{left:586.734608px;}
.x1b_c01147{left:588.330000px;}
.x16_c01147{left:634.516995px;}
.x1c_c01147{left:657.720000px;}
.x17_c01147{left:659.153693px;}
.x1_c01147{left:886.680000px;}
.x2_c01147{left:888.570000px;}
.x3_c01147{left:892.350000px;}
@media print{
.v0_c01147{vertical-align:0.000000pt;}
.ls0_c01147{letter-spacing:0.000000pt;}
.ws0_c01147{word-spacing:0.000000pt;}
.fs1_c01147{font-size:16.000000pt;}
.fs0_c01147{font-size:21.333333pt;}
.fs4_c01147{font-size:32.013453pt;}
.fs5_c01147{font-size:90.666667pt;}
.fs3_c01147{font-size:90.680492pt;}
.fs2_c01147{font-size:138.688990pt;}
.y0_c01147{bottom:0.000000pt;}
.y18_c01147{bottom:570.729333pt;}
.yc_c01147{bottom:590.641333pt;}
.yd_c01147{bottom:594.018699pt;}
.ye_c01147{bottom:595.866016pt;}
.yf_c01147{bottom:598.698699pt;}
.y10_c01147{bottom:599.479808pt;}
.y11_c01147{bottom:603.791093pt;}
.y12_c01147{bottom:606.306091pt;}
.y13_c01147{bottom:612.790283pt;}
.y14_c01147{bottom:615.988491pt;}
.y15_c01147{bottom:619.001301pt;}
.y8_c01147{bottom:623.324000pt;}
.y16_c01147{bottom:623.440715pt;}
.y9_c01147{bottom:625.616608pt;}
.y17_c01147{bottom:625.729685pt;}
.ya_c01147{bottom:627.966752pt;}
.yb_c01147{bottom:631.914144pt;}
.y7_c01147{bottom:648.000000pt;}
.y3_c01147{bottom:795.156000pt;}
.y4_c01147{bottom:796.948569pt;}
.y5_c01147{bottom:803.522052pt;}
.y6_c01147{bottom:815.687604pt;}
.y1_c01147{bottom:996.240000pt;}
.y2_c01147{bottom:1011.840000pt;}
.h3_c01147{height:16.000000pt;}
.h2_c01147{height:21.333333pt;}
.h6_c01147{height:32.013453pt;}
.h7_c01147{height:90.666667pt;}
.h5_c01147{height:90.680492pt;}
.h4_c01147{height:138.688990pt;}
.h1_c01147{height:1118.666667pt;}
.h0_c01147{height:1118.880000pt;}
.w0_c01147{width:817.866667pt;}
.w1_c01147{width:818.000000pt;}
.x0_c01147{left:0.000000pt;}
.x9_c01147{left:238.280000pt;}
.x4_c01147{left:247.550667pt;}
.xd_c01147{left:250.213333pt;}
.x5_c01147{left:259.448996pt;}
.xe_c01147{left:282.525627pt;}
.xa_c01147{left:285.994904pt;}
.xf_c01147{left:300.199480pt;}
.x6_c01147{left:303.081039pt;}
.x10_c01147{left:327.300627pt;}
.xb_c01147{left:334.907276pt;}
.x11_c01147{left:376.021133pt;}
.x7_c01147{left:383.830911pt;}
.x12_c01147{left:400.082887pt;}
.x8_c01147{left:407.520000pt;}
.xc_c01147{left:417.062372pt;}
.x18_c01147{left:447.120000pt;}
.x13_c01147{left:462.119147pt;}
.x19_c01147{left:468.000000pt;}
.x14_c01147{left:492.717387pt;}
.x1a_c01147{left:504.960000pt;}
.x15_c01147{left:521.541873pt;}
.x1b_c01147{left:522.960000pt;}
.x16_c01147{left:564.015107pt;}
.x1c_c01147{left:584.640000pt;}
.x17_c01147{left:585.914393pt;}
.x1_c01147{left:788.160000pt;}
.x2_c01147{left:789.840000pt;}
.x3_c01147{left:793.200000pt;}
}





/* 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_c01148 {
    display:none;
  }
  .loading-indicator_c01148.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01148 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_c01148 { 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_c01148" -> "#page-container .classname_c01148")
 */
.pf_c01148 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01148 { /* 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_c01148.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01148 { /* 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_c01148 { /* 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_c01148 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01148 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01148 {overflow:visible;}
  }
}
.c_c01148 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01148 { /* 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_c01148:after { /* webkit #35443 */
  content: '';
}
.t_c01148:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01148 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 */
}
.__c01148 { /* 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_c01148 { /* info for Javascript */
  display:none;
}
.l_c01148 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01148 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01148 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01148: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_c01148 {
    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_c01148.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01148.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_c01148 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01148{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01148;src:url('chunks/assets/font_b11a17f404e7258299fdf971.woff2')format("woff");}.ff1_c01148{font-family:ff1_c01148;line-height:1.000000;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;}
.m5_c01148{transform:matrix(0.011839,0.000142,-0.003000,0.249982,0,0);-ms-transform:matrix(0.011839,0.000142,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.011839,0.000142,-0.003000,0.249982,0,0);}
.m6_c01148{transform:matrix(0.025173,0.000302,-0.003000,0.249982,0,0);-ms-transform:matrix(0.025173,0.000302,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.025173,0.000302,-0.003000,0.249982,0,0);}
.m69_c01148{transform:matrix(0.035502,0.000462,-0.003250,0.249979,0,0);-ms-transform:matrix(0.035502,0.000462,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.035502,0.000462,-0.003250,0.249979,0,0);}
.m3_c01148{transform:matrix(0.073005,0.000876,-0.003000,0.249982,0,0);-ms-transform:matrix(0.073005,0.000876,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.073005,0.000876,-0.003000,0.249982,0,0);}
.m7a_c01148{transform:matrix(0.161903,0.001943,-0.003000,0.249982,0,0);-ms-transform:matrix(0.161903,0.001943,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.161903,0.001943,-0.003000,0.249982,0,0);}
.m76_c01148{transform:matrix(0.170118,0.002041,-0.003000,0.249982,0,0);-ms-transform:matrix(0.170118,0.002041,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.170118,0.002041,-0.003000,0.249982,0,0);}
.m73_c01148{transform:matrix(0.175887,0.002111,-0.003000,0.249982,0,0);-ms-transform:matrix(0.175887,0.002111,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.175887,0.002111,-0.003000,0.249982,0,0);}
.m7d_c01148{transform:matrix(0.180037,0.002160,-0.003000,0.249982,0,0);-ms-transform:matrix(0.180037,0.002160,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.180037,0.002160,-0.003000,0.249982,0,0);}
.m1_c01148{transform:matrix(0.181047,0.002173,-0.003000,0.249982,0,0);-ms-transform:matrix(0.181047,0.002173,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.181047,0.002173,-0.003000,0.249982,0,0);}
.m7b_c01148{transform:matrix(0.184242,0.002211,-0.003000,0.249982,0,0);-ms-transform:matrix(0.184242,0.002211,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.184242,0.002211,-0.003000,0.249982,0,0);}
.m79_c01148{transform:matrix(0.189256,0.002271,-0.003000,0.249982,0,0);-ms-transform:matrix(0.189256,0.002271,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.189256,0.002271,-0.003000,0.249982,0,0);}
.m53_c01148{transform:matrix(0.193139,0.002511,-0.003250,0.249979,0,0);-ms-transform:matrix(0.193139,0.002511,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.193139,0.002511,-0.003250,0.249979,0,0);}
.m75_c01148{transform:matrix(0.193541,0.002322,-0.003000,0.249982,0,0);-ms-transform:matrix(0.193541,0.002322,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.193541,0.002322,-0.003000,0.249982,0,0);}
.m63_c01148{transform:matrix(0.193754,0.002519,-0.003250,0.249979,0,0);-ms-transform:matrix(0.193754,0.002519,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.193754,0.002519,-0.003250,0.249979,0,0);}
.m74_c01148{transform:matrix(0.195351,0.002344,-0.003000,0.249982,0,0);-ms-transform:matrix(0.195351,0.002344,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.195351,0.002344,-0.003000,0.249982,0,0);}
.m32_c01148{transform:matrix(0.196108,0.002549,-0.003250,0.249979,0,0);-ms-transform:matrix(0.196108,0.002549,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.196108,0.002549,-0.003250,0.249979,0,0);}
.m35_c01148{transform:matrix(0.196718,0.002557,-0.003250,0.249979,0,0);-ms-transform:matrix(0.196718,0.002557,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.196718,0.002557,-0.003250,0.249979,0,0);}
.m77_c01148{transform:matrix(0.198326,0.002380,-0.003000,0.249982,0,0);-ms-transform:matrix(0.198326,0.002380,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.198326,0.002380,-0.003000,0.249982,0,0);}
.m78_c01148{transform:matrix(0.198486,0.002382,-0.003000,0.249982,0,0);-ms-transform:matrix(0.198486,0.002382,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.198486,0.002382,-0.003000,0.249982,0,0);}
.m38_c01148{transform:matrix(0.200328,0.002604,-0.003250,0.249979,0,0);-ms-transform:matrix(0.200328,0.002604,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.200328,0.002604,-0.003250,0.249979,0,0);}
.m58_c01148{transform:matrix(0.203528,0.002646,-0.003250,0.249979,0,0);-ms-transform:matrix(0.203528,0.002646,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.203528,0.002646,-0.003250,0.249979,0,0);}
.m49_c01148{transform:matrix(0.204798,0.002662,-0.003250,0.249979,0,0);-ms-transform:matrix(0.204798,0.002662,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.204798,0.002662,-0.003250,0.249979,0,0);}
.m34_c01148{transform:matrix(0.205308,0.002669,-0.003250,0.249979,0,0);-ms-transform:matrix(0.205308,0.002669,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.205308,0.002669,-0.003250,0.249979,0,0);}
.m30_c01148{transform:matrix(0.205798,0.002675,-0.003250,0.249979,0,0);-ms-transform:matrix(0.205798,0.002675,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.205798,0.002675,-0.003250,0.249979,0,0);}
.m47_c01148{transform:matrix(0.206078,0.002679,-0.003250,0.249979,0,0);-ms-transform:matrix(0.206078,0.002679,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.206078,0.002679,-0.003250,0.249979,0,0);}
.m57_c01148{transform:matrix(0.206243,0.002681,-0.003250,0.249979,0,0);-ms-transform:matrix(0.206243,0.002681,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.206243,0.002681,-0.003250,0.249979,0,0);}
.m67_c01148{transform:matrix(0.206978,0.002691,-0.003250,0.249979,0,0);-ms-transform:matrix(0.206978,0.002691,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.206978,0.002691,-0.003250,0.249979,0,0);}
.m2f_c01148{transform:matrix(0.207357,0.002696,-0.003250,0.249979,0,0);-ms-transform:matrix(0.207357,0.002696,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.207357,0.002696,-0.003250,0.249979,0,0);}
.m5e_c01148{transform:matrix(0.207407,0.002696,-0.003250,0.249979,0,0);-ms-transform:matrix(0.207407,0.002696,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.207407,0.002696,-0.003250,0.249979,0,0);}
.m7c_c01148{transform:matrix(0.207525,0.002490,-0.003000,0.249982,0,0);-ms-transform:matrix(0.207525,0.002490,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.207525,0.002490,-0.003000,0.249982,0,0);}
.m9_c01148{transform:matrix(0.207878,0.003326,-0.003999,0.249968,0,0);-ms-transform:matrix(0.207878,0.003326,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.207878,0.003326,-0.003999,0.249968,0,0);}
.m8_c01148{transform:matrix(0.208293,0.003333,-0.003999,0.249968,0,0);-ms-transform:matrix(0.208293,0.003333,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.208293,0.003333,-0.003999,0.249968,0,0);}
.m4f_c01148{transform:matrix(0.209917,0.002729,-0.003250,0.249979,0,0);-ms-transform:matrix(0.209917,0.002729,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.209917,0.002729,-0.003250,0.249979,0,0);}
.m36_c01148{transform:matrix(0.210167,0.002732,-0.003250,0.249979,0,0);-ms-transform:matrix(0.210167,0.002732,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.210167,0.002732,-0.003250,0.249979,0,0);}
.m55_c01148{transform:matrix(0.212537,0.002763,-0.003250,0.249979,0,0);-ms-transform:matrix(0.212537,0.002763,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.212537,0.002763,-0.003250,0.249979,0,0);}
.m61_c01148{transform:matrix(0.215087,0.002796,-0.003250,0.249979,0,0);-ms-transform:matrix(0.215087,0.002796,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.215087,0.002796,-0.003250,0.249979,0,0);}
.m60_c01148{transform:matrix(0.216952,0.002820,-0.003250,0.249979,0,0);-ms-transform:matrix(0.216952,0.002820,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.216952,0.002820,-0.003250,0.249979,0,0);}
.m56_c01148{transform:matrix(0.217562,0.002828,-0.003250,0.249979,0,0);-ms-transform:matrix(0.217562,0.002828,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.217562,0.002828,-0.003250,0.249979,0,0);}
.m5f_c01148{transform:matrix(0.219601,0.002855,-0.003250,0.249979,0,0);-ms-transform:matrix(0.219601,0.002855,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.219601,0.002855,-0.003250,0.249979,0,0);}
.m3d_c01148{transform:matrix(0.221186,0.002875,-0.003250,0.249979,0,0);-ms-transform:matrix(0.221186,0.002875,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.221186,0.002875,-0.003250,0.249979,0,0);}
.m4c_c01148{transform:matrix(0.222106,0.002887,-0.003250,0.249979,0,0);-ms-transform:matrix(0.222106,0.002887,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.222106,0.002887,-0.003250,0.249979,0,0);}
.m3b_c01148{transform:matrix(0.223251,0.002902,-0.003250,0.249979,0,0);-ms-transform:matrix(0.223251,0.002902,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.223251,0.002902,-0.003250,0.249979,0,0);}
.mc_c01148{transform:matrix(0.223440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223440,0.000000,0.000000,0.250000,0,0);}
.m70_c01148{transform:matrix(0.223589,0.002683,-0.003000,0.249982,0,0);-ms-transform:matrix(0.223589,0.002683,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.223589,0.002683,-0.003000,0.249982,0,0);}
.m66_c01148{transform:matrix(0.224286,0.002916,-0.003250,0.249979,0,0);-ms-transform:matrix(0.224286,0.002916,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.224286,0.002916,-0.003250,0.249979,0,0);}
.m2b_c01148{transform:matrix(0.224661,0.002921,-0.003250,0.249979,0,0);-ms-transform:matrix(0.224661,0.002921,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.224661,0.002921,-0.003250,0.249979,0,0);}
.m3a_c01148{transform:matrix(0.225326,0.002929,-0.003250,0.249979,0,0);-ms-transform:matrix(0.225326,0.002929,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.225326,0.002929,-0.003250,0.249979,0,0);}
.m54_c01148{transform:matrix(0.225811,0.002936,-0.003250,0.249979,0,0);-ms-transform:matrix(0.225811,0.002936,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.225811,0.002936,-0.003250,0.249979,0,0);}
.m82_c01148{transform:matrix(0.226036,0.003617,-0.003999,0.249968,0,0);-ms-transform:matrix(0.226036,0.003617,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.226036,0.003617,-0.003999,0.249968,0,0);}
.m7_c01148{transform:matrix(0.227446,0.003639,-0.003999,0.249968,0,0);-ms-transform:matrix(0.227446,0.003639,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.227446,0.003639,-0.003999,0.249968,0,0);}
.m31_c01148{transform:matrix(0.227821,0.002962,-0.003250,0.249979,0,0);-ms-transform:matrix(0.227821,0.002962,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.227821,0.002962,-0.003250,0.249979,0,0);}
.m3f_c01148{transform:matrix(0.229246,0.002980,-0.003250,0.249979,0,0);-ms-transform:matrix(0.229246,0.002980,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.229246,0.002980,-0.003250,0.249979,0,0);}
.m59_c01148{transform:matrix(0.230026,0.002990,-0.003250,0.249979,0,0);-ms-transform:matrix(0.230026,0.002990,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.230026,0.002990,-0.003250,0.249979,0,0);}
.m45_c01148{transform:matrix(0.230321,0.002994,-0.003250,0.249979,0,0);-ms-transform:matrix(0.230321,0.002994,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.230321,0.002994,-0.003250,0.249979,0,0);}
.m5b_c01148{transform:matrix(0.230381,0.002995,-0.003250,0.249979,0,0);-ms-transform:matrix(0.230381,0.002995,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.230381,0.002995,-0.003250,0.249979,0,0);}
.m4b_c01148{transform:matrix(0.230766,0.003000,-0.003250,0.249979,0,0);-ms-transform:matrix(0.230766,0.003000,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.230766,0.003000,-0.003250,0.249979,0,0);}
.m80_c01148{transform:matrix(0.230865,0.003694,-0.003999,0.249968,0,0);-ms-transform:matrix(0.230865,0.003694,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.230865,0.003694,-0.003999,0.249968,0,0);}
.m62_c01148{transform:matrix(0.231420,0.003008,-0.003250,0.249979,0,0);-ms-transform:matrix(0.231420,0.003008,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.231420,0.003008,-0.003250,0.249979,0,0);}
.m27_c01148{transform:matrix(0.231605,0.003011,-0.003250,0.249979,0,0);-ms-transform:matrix(0.231605,0.003011,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.231605,0.003011,-0.003250,0.249979,0,0);}
.m64_c01148{transform:matrix(0.231885,0.003015,-0.003250,0.249979,0,0);-ms-transform:matrix(0.231885,0.003015,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.231885,0.003015,-0.003250,0.249979,0,0);}
.m5d_c01148{transform:matrix(0.233570,0.003036,-0.003250,0.249979,0,0);-ms-transform:matrix(0.233570,0.003036,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.233570,0.003036,-0.003250,0.249979,0,0);}
.m37_c01148{transform:matrix(0.233640,0.003037,-0.003250,0.249979,0,0);-ms-transform:matrix(0.233640,0.003037,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.233640,0.003037,-0.003250,0.249979,0,0);}
.m52_c01148{transform:matrix(0.237000,0.003081,-0.003250,0.249979,0,0);-ms-transform:matrix(0.237000,0.003081,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.237000,0.003081,-0.003250,0.249979,0,0);}
.m29_c01148{transform:matrix(0.237100,0.003082,-0.003250,0.249979,0,0);-ms-transform:matrix(0.237100,0.003082,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.237100,0.003082,-0.003250,0.249979,0,0);}
.m48_c01148{transform:matrix(0.237530,0.003088,-0.003250,0.249979,0,0);-ms-transform:matrix(0.237530,0.003088,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.237530,0.003088,-0.003250,0.249979,0,0);}
.m33_c01148{transform:matrix(0.239470,0.003113,-0.003250,0.249979,0,0);-ms-transform:matrix(0.239470,0.003113,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.239470,0.003113,-0.003250,0.249979,0,0);}
.m5c_c01148{transform:matrix(0.239810,0.003118,-0.003250,0.249979,0,0);-ms-transform:matrix(0.239810,0.003118,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.239810,0.003118,-0.003250,0.249979,0,0);}
.m5a_c01148{transform:matrix(0.239850,0.003118,-0.003250,0.249979,0,0);-ms-transform:matrix(0.239850,0.003118,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.239850,0.003118,-0.003250,0.249979,0,0);}
.m4a_c01148{transform:matrix(0.241210,0.003136,-0.003250,0.249979,0,0);-ms-transform:matrix(0.241210,0.003136,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.241210,0.003136,-0.003250,0.249979,0,0);}
.m85_c01148{transform:matrix(0.241964,0.003871,-0.003999,0.249968,0,0);-ms-transform:matrix(0.241964,0.003871,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.241964,0.003871,-0.003999,0.249968,0,0);}
.m46_c01148{transform:matrix(0.244749,0.003182,-0.003250,0.249979,0,0);-ms-transform:matrix(0.244749,0.003182,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.244749,0.003182,-0.003250,0.249979,0,0);}
.m40_c01148{transform:matrix(0.244839,0.003183,-0.003250,0.249979,0,0);-ms-transform:matrix(0.244839,0.003183,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.244839,0.003183,-0.003250,0.249979,0,0);}
.m84_c01148{transform:matrix(0.246283,0.003941,-0.003999,0.249968,0,0);-ms-transform:matrix(0.246283,0.003941,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.246283,0.003941,-0.003999,0.249968,0,0);}
.m81_c01148{transform:matrix(0.248543,0.003977,-0.003999,0.249968,0,0);-ms-transform:matrix(0.248543,0.003977,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.248543,0.003977,-0.003999,0.249968,0,0);}
.m65_c01148{transform:matrix(0.249724,0.003246,-0.003250,0.249979,0,0);-ms-transform:matrix(0.249724,0.003246,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.249724,0.003246,-0.003250,0.249979,0,0);}
.m68_c01148{transform:matrix(0.250364,0.003255,-0.003250,0.249979,0,0);-ms-transform:matrix(0.250364,0.003255,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.250364,0.003255,-0.003250,0.249979,0,0);}
.m7e_c01148{transform:matrix(0.251088,0.004017,-0.003999,0.249968,0,0);-ms-transform:matrix(0.251088,0.004017,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.251088,0.004017,-0.003999,0.249968,0,0);}
.m44_c01148{transform:matrix(0.251424,0.003269,-0.003250,0.249979,0,0);-ms-transform:matrix(0.251424,0.003269,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.251424,0.003269,-0.003250,0.249979,0,0);}
.m43_c01148{transform:matrix(0.252094,0.003277,-0.003250,0.249979,0,0);-ms-transform:matrix(0.252094,0.003277,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.252094,0.003277,-0.003250,0.249979,0,0);}
.m4e_c01148{transform:matrix(0.252384,0.003281,-0.003250,0.249979,0,0);-ms-transform:matrix(0.252384,0.003281,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.252384,0.003281,-0.003250,0.249979,0,0);}
.m2a_c01148{transform:matrix(0.252464,0.003282,-0.003250,0.249979,0,0);-ms-transform:matrix(0.252464,0.003282,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.252464,0.003282,-0.003250,0.249979,0,0);}
.m86_c01148{transform:matrix(0.252828,0.004045,-0.003999,0.249968,0,0);-ms-transform:matrix(0.252828,0.004045,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.252828,0.004045,-0.003999,0.249968,0,0);}
.m50_c01148{transform:matrix(0.255103,0.003316,-0.003250,0.249979,0,0);-ms-transform:matrix(0.255103,0.003316,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.255103,0.003316,-0.003250,0.249979,0,0);}
.m6a_c01148{transform:matrix(0.255522,0.003066,-0.003000,0.249982,0,0);-ms-transform:matrix(0.255522,0.003066,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.255522,0.003066,-0.003000,0.249982,0,0);}
.m39_c01148{transform:matrix(0.256223,0.003331,-0.003250,0.249979,0,0);-ms-transform:matrix(0.256223,0.003331,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.256223,0.003331,-0.003250,0.249979,0,0);}
.m51_c01148{transform:matrix(0.256443,0.003334,-0.003250,0.249979,0,0);-ms-transform:matrix(0.256443,0.003334,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.256443,0.003334,-0.003250,0.249979,0,0);}
.m4d_c01148{transform:matrix(0.256858,0.003339,-0.003250,0.249979,0,0);-ms-transform:matrix(0.256858,0.003339,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.256858,0.003339,-0.003250,0.249979,0,0);}
.m6b_c01148{transform:matrix(0.257371,0.003088,-0.003000,0.249982,0,0);-ms-transform:matrix(0.257371,0.003088,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.257371,0.003088,-0.003000,0.249982,0,0);}
.m2d_c01148{transform:matrix(0.258538,0.003361,-0.003250,0.249979,0,0);-ms-transform:matrix(0.258538,0.003361,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.258538,0.003361,-0.003250,0.249979,0,0);}
.m3c_c01148{transform:matrix(0.259033,0.003367,-0.003250,0.249979,0,0);-ms-transform:matrix(0.259033,0.003367,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.259033,0.003367,-0.003250,0.249979,0,0);}
.m83_c01148{transform:matrix(0.259622,0.004154,-0.003999,0.249968,0,0);-ms-transform:matrix(0.259622,0.004154,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.259622,0.004154,-0.003999,0.249968,0,0);}
.m2e_c01148{transform:matrix(0.263763,0.003429,-0.003250,0.249979,0,0);-ms-transform:matrix(0.263763,0.003429,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.263763,0.003429,-0.003250,0.249979,0,0);}
.m3e_c01148{transform:matrix(0.263858,0.003430,-0.003250,0.249979,0,0);-ms-transform:matrix(0.263858,0.003430,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.263858,0.003430,-0.003250,0.249979,0,0);}
.m7f_c01148{transform:matrix(0.264766,0.004236,-0.003999,0.249968,0,0);-ms-transform:matrix(0.264766,0.004236,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.264766,0.004236,-0.003999,0.249968,0,0);}
.m6c_c01148{transform:matrix(0.265866,0.003190,-0.003000,0.249982,0,0);-ms-transform:matrix(0.265866,0.003190,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.265866,0.003190,-0.003000,0.249982,0,0);}
.m28_c01148{transform:matrix(0.266922,0.003470,-0.003250,0.249979,0,0);-ms-transform:matrix(0.266922,0.003470,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.266922,0.003470,-0.003250,0.249979,0,0);}
.m6d_c01148{transform:matrix(0.268946,0.003227,-0.003000,0.249982,0,0);-ms-transform:matrix(0.268946,0.003227,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.268946,0.003227,-0.003000,0.249982,0,0);}
.m72_c01148{transform:matrix(0.271340,0.003256,-0.003000,0.249982,0,0);-ms-transform:matrix(0.271340,0.003256,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.271340,0.003256,-0.003000,0.249982,0,0);}
.m6f_c01148{transform:matrix(0.271355,0.003256,-0.003000,0.249982,0,0);-ms-transform:matrix(0.271355,0.003256,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.271355,0.003256,-0.003000,0.249982,0,0);}
.m23_c01148{transform:matrix(0.273640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273640,0.000000,0.000000,0.250000,0,0);}
.m42_c01148{transform:matrix(0.275542,0.003582,-0.003250,0.249979,0,0);-ms-transform:matrix(0.275542,0.003582,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.275542,0.003582,-0.003250,0.249979,0,0);}
.m26_c01148{transform:matrix(0.276512,0.003595,-0.003250,0.249979,0,0);-ms-transform:matrix(0.276512,0.003595,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.276512,0.003595,-0.003250,0.249979,0,0);}
.m2c_c01148{transform:matrix(0.277137,0.003603,-0.003250,0.249979,0,0);-ms-transform:matrix(0.277137,0.003603,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.277137,0.003603,-0.003250,0.249979,0,0);}
.m71_c01148{transform:matrix(0.278310,0.003340,-0.003000,0.249982,0,0);-ms-transform:matrix(0.278310,0.003340,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.278310,0.003340,-0.003000,0.249982,0,0);}
.m6e_c01148{transform:matrix(0.280090,0.003361,-0.003000,0.249982,0,0);-ms-transform:matrix(0.280090,0.003361,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.280090,0.003361,-0.003000,0.249982,0,0);}
.m41_c01148{transform:matrix(0.280101,0.003641,-0.003250,0.249979,0,0);-ms-transform:matrix(0.280101,0.003641,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.280101,0.003641,-0.003250,0.249979,0,0);}
.m12_c01148{transform:matrix(0.297175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297175,0.000000,0.000000,0.250000,0,0);}
.m1f_c01148{transform:matrix(0.303725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303725,0.000000,0.000000,0.250000,0,0);}
.m4_c01148{transform:matrix(0.321427,0.003857,-0.003000,0.249982,0,0);-ms-transform:matrix(0.321427,0.003857,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.321427,0.003857,-0.003000,0.249982,0,0);}
.m0_c01148{transform:matrix(0.321527,0.003858,-0.003000,0.249982,0,0);-ms-transform:matrix(0.321527,0.003858,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.321527,0.003858,-0.003000,0.249982,0,0);}
.m21_c01148{transform:matrix(0.322065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322065,0.000000,0.000000,0.250000,0,0);}
.m1c_c01148{transform:matrix(0.322800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322800,0.000000,0.000000,0.250000,0,0);}
.m1b_c01148{transform:matrix(0.323110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323110,0.000000,0.000000,0.250000,0,0);}
.md_c01148{transform:matrix(0.323890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323890,0.000000,0.000000,0.250000,0,0);}
.m24_c01148{transform:matrix(0.324585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324585,0.000000,0.000000,0.250000,0,0);}
.m1a_c01148{transform:matrix(0.329315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329315,0.000000,0.000000,0.250000,0,0);}
.m11_c01148{transform:matrix(0.335160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335160,0.000000,0.000000,0.250000,0,0);}
.me_c01148{transform:matrix(0.335410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335410,0.000000,0.000000,0.250000,0,0);}
.m13_c01148{transform:matrix(0.340900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340900,0.000000,0.000000,0.250000,0,0);}
.m1d_c01148{transform:matrix(0.342055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342055,0.000000,0.000000,0.250000,0,0);}
.m17_c01148{transform:matrix(0.344710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344710,0.000000,0.000000,0.250000,0,0);}
.m19_c01148{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m15_c01148{transform:matrix(0.352280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352280,0.000000,0.000000,0.250000,0,0);}
.m20_c01148{transform:matrix(0.362490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362490,0.000000,0.000000,0.250000,0,0);}
.m22_c01148{transform:matrix(0.368780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368780,0.000000,0.000000,0.250000,0,0);}
.mb_c01148{transform:matrix(0.370135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370135,0.000000,0.000000,0.250000,0,0);}
.m10_c01148{transform:matrix(0.389485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389485,0.000000,0.000000,0.250000,0,0);}
.m1e_c01148{transform:matrix(0.403115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403115,0.000000,0.000000,0.250000,0,0);}
.mf_c01148{transform:matrix(0.417255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417255,0.000000,0.000000,0.250000,0,0);}
.m18_c01148{transform:matrix(0.432780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432780,0.000000,0.000000,0.250000,0,0);}
.m16_c01148{transform:matrix(0.439320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439320,0.000000,0.000000,0.250000,0,0);}
.m25_c01148{transform:matrix(0.476470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.476470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.476470,0.000000,0.000000,0.250000,0,0);}
.m2_c01148{transform:matrix(0.493519,0.005922,-0.003000,0.249982,0,0);-ms-transform:matrix(0.493519,0.005922,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.493519,0.005922,-0.003000,0.249982,0,0);}
.ma_c01148{transform:matrix(0.813450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.813450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.813450,0.000000,0.000000,0.250000,0,0);}
.m14_c01148{transform:matrix(1.564610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.564610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.564610,0.000000,0.000000,0.250000,0,0);}
.v0_c01148{vertical-align:0.000000px;}
.ls0_c01148{letter-spacing:0.000000px;}
.sc__c01148{text-shadow:none;}
.sc0_c01148{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__c01148{-webkit-text-stroke:0px transparent;}
.sc0_c01148{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01148{word-spacing:0.000000px;}
.fc0_c01148{color:transparent;}
.fs3_c01148{font-size:18.000000px;}
.fs7_c01148{font-size:72.005184px;}
.fs4_c01148{font-size:72.006084px;}
.fs9_c01148{font-size:72.009215px;}
.fs6_c01148{font-size:78.006591px;}
.fs5_c01148{font-size:84.007098px;}
.fs2_c01148{font-size:90.011519px;}
.fs8_c01148{font-size:96.006912px;}
.fs1_c01148{font-size:114.008208px;}
.fs0_c01148{font-size:144.010368px;}
.y0_c01148{bottom:0.000000px;}
.y6d_c01148{bottom:675.508644px;}
.y6c_c01148{bottom:676.023084px;}
.y6b_c01148{bottom:676.913028px;}
.y6a_c01148{bottom:677.803188px;}
.y69_c01148{bottom:678.325644px;}
.y68_c01148{bottom:678.680052px;}
.y67_c01148{bottom:679.747452px;}
.y66_c01148{bottom:682.041708px;}
.y65_c01148{bottom:682.564500px;}
.y64_c01148{bottom:781.503792px;}
.y63_c01148{bottom:782.570418px;}
.y62_c01148{bottom:782.962512px;}
.y61_c01148{bottom:783.351006px;}
.y60_c01148{bottom:784.012380px;}
.y5f_c01148{bottom:784.554234px;}
.y5e_c01148{bottom:785.613138px;}
.y5d_c01148{bottom:786.008274px;}
.y5c_c01148{bottom:786.802254px;}
.y5b_c01148{bottom:787.472772px;}
.y5a_c01148{bottom:787.861500px;}
.y59_c01148{bottom:818.169936px;}
.y58_c01148{bottom:819.365712px;}
.y57_c01148{bottom:819.763854px;}
.y56_c01148{bottom:820.833720px;}
.y55_c01148{bottom:821.247936px;}
.y54_c01148{bottom:822.171822px;}
.y53_c01148{bottom:822.968952px;}
.y52_c01148{bottom:823.626816px;}
.y51_c01148{bottom:824.041500px;}
.y50_c01148{bottom:851.124517px;}
.y4f_c01148{bottom:851.675049px;}
.y4e_c01148{bottom:853.403049px;}
.y4d_c01148{bottom:854.216871px;}
.y4c_c01148{bottom:854.496328px;}
.y4b_c01148{bottom:855.425289px;}
.y4a_c01148{bottom:855.820353px;}
.y49_c01148{bottom:856.627486px;}
.y48_c01148{bottom:857.148765px;}
.y47_c01148{bottom:857.686249px;}
.y46_c01148{bottom:858.467640px;}
.y45_c01148{bottom:858.875575px;}
.y44_c01148{bottom:859.938180px;}
.y43_c01148{bottom:888.371490px;}
.y42_c01148{bottom:889.393036px;}
.y41_c01148{bottom:889.684971px;}
.y40_c01148{bottom:890.674791px;}
.y3f_c01148{bottom:891.263457px;}
.y3e_c01148{bottom:891.695830px;}
.y3d_c01148{bottom:892.278022px;}
.y3c_c01148{bottom:893.113929px;}
.y3b_c01148{bottom:893.987977px;}
.y3a_c01148{bottom:894.419629px;}
.y39_c01148{bottom:895.582063px;}
.y38_c01148{bottom:924.597646px;}
.y37_c01148{bottom:925.480306px;}
.y36_c01148{bottom:925.820508px;}
.y35_c01148{bottom:926.708376px;}
.y34_c01148{bottom:927.815995px;}
.y33_c01148{bottom:928.150930px;}
.y32_c01148{bottom:928.698343px;}
.y31_c01148{bottom:929.362498px;}
.y30_c01148{bottom:929.689572px;}
.y2f_c01148{bottom:930.340501px;}
.y2e_c01148{bottom:930.682713px;}
.y2d_c01148{bottom:957.821194px;}
.y2c_c01148{bottom:958.219378px;}
.y2b_c01148{bottom:958.894446px;}
.y2a_c01148{bottom:959.435440px;}
.y29_c01148{bottom:960.618078px;}
.y28_c01148{bottom:961.962247px;}
.y27_c01148{bottom:962.357740px;}
.y26_c01148{bottom:962.748924px;}
.y25_c01148{bottom:963.692899px;}
.y24_c01148{bottom:964.072030px;}
.y23_c01148{bottom:964.739532px;}
.y22_c01148{bottom:965.127654px;}
.y21_c01148{bottom:965.515873px;}
.y20_c01148{bottom:993.261894px;}
.y1f_c01148{bottom:993.708034px;}
.y1e_c01148{bottom:994.996321px;}
.y1d_c01148{bottom:995.589687px;}
.y1c_c01148{bottom:996.024888px;}
.y1b_c01148{bottom:996.593098px;}
.y1a_c01148{bottom:998.317191px;}
.y19_c01148{bottom:998.748784px;}
.y18_c01148{bottom:999.763096px;}
.y17_c01148{bottom:1000.053861px;}
.y16_c01148{bottom:1000.618971px;}
.y15_c01148{bottom:1029.365613px;}
.y14_c01148{bottom:1030.679835px;}
.y13_c01148{bottom:1031.686015px;}
.y12_c01148{bottom:1032.103725px;}
.y11_c01148{bottom:1032.829905px;}
.y10_c01148{bottom:1033.272126px;}
.yf_c01148{bottom:1034.276668px;}
.ye_c01148{bottom:1034.711908px;}
.yd_c01148{bottom:1035.993000px;}
.yc_c01148{bottom:1108.395000px;}
.yb_c01148{bottom:1111.722000px;}
.ya_c01148{bottom:1122.490188px;}
.y9_c01148{bottom:1123.730148px;}
.y8_c01148{bottom:1124.824500px;}
.y7_c01148{bottom:1185.267114px;}
.y6_c01148{bottom:1187.323434px;}
.y5_c01148{bottom:1188.982692px;}
.y4_c01148{bottom:1189.900494px;}
.y3_c01148{bottom:1190.698722px;}
.y2_c01148{bottom:1225.878282px;}
.y1_c01148{bottom:1230.660000px;}
.h5_c01148{height:18.000000px;}
.h9_c01148{height:72.005184px;}
.h6_c01148{height:72.006084px;}
.hb_c01148{height:72.009215px;}
.h8_c01148{height:78.006591px;}
.h7_c01148{height:84.007098px;}
.h4_c01148{height:90.011519px;}
.ha_c01148{height:96.006912px;}
.h3_c01148{height:114.008208px;}
.h2_c01148{height:144.010368px;}
.h1_c01148{height:1258.500000px;}
.h0_c01148{height:1258.740000px;}
.w0_c01148{width:920.100000px;}
.w1_c01148{width:920.250000px;}
.x0_c01148{left:0.000000px;}
.x46_c01148{left:174.717749px;}
.x27_c01148{left:176.705833px;}
.x32_c01148{left:177.757248px;}
.x5c_c01148{left:207.735000px;}
.x33_c01148{left:210.159177px;}
.x28_c01148{left:220.175833px;}
.x29_c01148{left:242.542333px;}
.x47_c01148{left:264.135749px;}
.x3e_c01148{left:275.523605px;}
.x54_c01148{left:284.145000px;}
.x1e_c01148{left:288.451500px;}
.x34_c01148{left:298.169828px;}
.x3f_c01148{left:308.184372px;}
.x55_c01148{left:318.702000px;}
.x2a_c01148{left:320.566333px;}
.x35_c01148{left:329.757237px;}
.x8_c01148{left:330.979500px;}
.x16_c01148{left:332.640000px;}
.xa_c01148{left:333.720000px;}
.x61_c01148{left:350.235000px;}
.x2b_c01148{left:353.765833px;}
.xb_c01148{left:356.670000px;}
.x4d_c01148{left:362.434905px;}
.x48_c01148{left:364.574249px;}
.xc_c01148{left:367.200000px;}
.x17_c01148{left:370.440000px;}
.x56_c01148{left:373.524000px;}
.x40_c01148{left:374.621966px;}
.xd_c01148{left:378.810000px;}
.x18_c01148{left:380.430000px;}
.x1f_c01148{left:386.997000px;}
.xe_c01148{left:391.230000px;}
.x9_c01148{left:399.376500px;}
.x4e_c01148{left:407.241990px;}
.x36_c01148{left:408.371751px;}
.x3_c01148{left:411.307200px;}
.x62_c01148{left:416.947500px;}
.x20_c01148{left:420.477000px;}
.xf_c01148{left:423.090000px;}
.x41_c01148{left:429.425111px;}
.x10_c01148{left:433.080000px;}
.x1_c01148{left:437.934000px;}
.x57_c01148{left:439.951500px;}
.x37_c01148{left:441.001680px;}
.x11_c01148{left:444.150000px;}
.x4f_c01148{left:450.687056px;}
.x12_c01148{left:455.220000px;}
.x19_c01148{left:458.460000px;}
.x42_c01148{left:462.921417px;}
.x13_c01148{left:466.560000px;}
.x1a_c01148{left:469.260000px;}
.x63_c01148{left:471.751500px;}
.x38_c01148{left:473.963109px;}
.x4_c01148{left:477.826200px;}
.x2c_c01148{left:486.388333px;}
.x1b_c01148{left:488.700000px;}
.x14_c01148{left:489.780000px;}
.x5d_c01148{left:496.101000px;}
.x21_c01148{left:497.749500px;}
.x15_c01148{left:499.500000px;}
.x1c_c01148{left:500.850000px;}
.x49_c01148{left:506.918249px;}
.x1d_c01148{left:510.840000px;}
.x58_c01148{left:516.942000px;}
.x50_c01148{left:517.967433px;}
.x64_c01148{left:527.386500px;}
.x2d_c01148{left:530.096834px;}
.x22_c01148{left:531.766500px;}
.x51_c01148{left:550.895862px;}
.x4a_c01148{left:552.200249px;}
.x5_c01148{left:554.309700px;}
.x2e_c01148{left:563.573833px;}
.x43_c01148{left:573.627227px;}
.x5e_c01148{left:583.590000px;}
.x39_c01148{left:586.016072px;}
.x23_c01148{left:587.626500px;}
.x2f_c01148{left:609.217333px;}
.x65_c01148{left:615.160500px;}
.x5f_c01148{left:616.264500px;}
.x24_c01148{left:619.758000px;}
.x4b_c01148{left:628.340249px;}
.x59_c01148{left:640.615500px;}
.x4c_c01148{left:650.796749px;}
.x44_c01148{left:662.466698px;}
.x5a_c01148{left:673.794000px;}
.x3a_c01148{left:684.604859px;}
.x6_c01148{left:692.581200px;}
.x25_c01148{left:697.156500px;}
.x60_c01148{left:705.150000px;}
.x30_c01148{left:708.316333px;}
.x52_c01148{left:719.378046px;}
.x3b_c01148{left:729.681944px;}
.x31_c01148{left:742.634834px;}
.x5b_c01148{left:773.442000px;}
.x45_c01148{left:784.806975px;}
.x3c_c01148{left:785.880165px;}
.x26_c01148{left:798.250500px;}
.x3d_c01148{left:819.048594px;}
.x2_c01148{left:836.410500px;}
.x7_c01148{left:863.941200px;}
.x53_c01148{left:909.306023px;}
@media print{
.v0_c01148{vertical-align:0.000000pt;}
.ls0_c01148{letter-spacing:0.000000pt;}
.ws0_c01148{word-spacing:0.000000pt;}
.fs3_c01148{font-size:16.000000pt;}
.fs7_c01148{font-size:64.004608pt;}
.fs4_c01148{font-size:64.005408pt;}
.fs9_c01148{font-size:64.008191pt;}
.fs6_c01148{font-size:69.339192pt;}
.fs5_c01148{font-size:74.672976pt;}
.fs2_c01148{font-size:80.010239pt;}
.fs8_c01148{font-size:85.339477pt;}
.fs1_c01148{font-size:101.340629pt;}
.fs0_c01148{font-size:128.009216pt;}
.y0_c01148{bottom:0.000000pt;}
.y6d_c01148{bottom:600.452128pt;}
.y6c_c01148{bottom:600.909408pt;}
.y6b_c01148{bottom:601.700469pt;}
.y6a_c01148{bottom:602.491723pt;}
.y69_c01148{bottom:602.956128pt;}
.y68_c01148{bottom:603.271157pt;}
.y67_c01148{bottom:604.219957pt;}
.y66_c01148{bottom:606.259296pt;}
.y65_c01148{bottom:606.724000pt;}
.y64_c01148{bottom:694.670037pt;}
.y63_c01148{bottom:695.618149pt;}
.y62_c01148{bottom:695.966677pt;}
.y61_c01148{bottom:696.312005pt;}
.y60_c01148{bottom:696.899893pt;}
.y5f_c01148{bottom:697.381541pt;}
.y5e_c01148{bottom:698.322789pt;}
.y5d_c01148{bottom:698.674021pt;}
.y5c_c01148{bottom:699.379781pt;}
.y5b_c01148{bottom:699.975797pt;}
.y5a_c01148{bottom:700.321333pt;}
.y59_c01148{bottom:727.262165pt;}
.y58_c01148{bottom:728.325077pt;}
.y57_c01148{bottom:728.678981pt;}
.y56_c01148{bottom:729.629973pt;}
.y55_c01148{bottom:729.998165pt;}
.y54_c01148{bottom:730.819397pt;}
.y53_c01148{bottom:731.527957pt;}
.y52_c01148{bottom:732.112725pt;}
.y51_c01148{bottom:732.481333pt;}
.y50_c01148{bottom:756.555127pt;}
.y4f_c01148{bottom:757.044488pt;}
.y4e_c01148{bottom:758.580488pt;}
.y4d_c01148{bottom:759.303885pt;}
.y4c_c01148{bottom:759.552292pt;}
.y4b_c01148{bottom:760.378035pt;}
.y4a_c01148{bottom:760.729203pt;}
.y49_c01148{bottom:761.446655pt;}
.y48_c01148{bottom:761.910013pt;}
.y47_c01148{bottom:762.387777pt;}
.y46_c01148{bottom:763.082347pt;}
.y45_c01148{bottom:763.444956pt;}
.y44_c01148{bottom:764.389493pt;}
.y43_c01148{bottom:789.663547pt;}
.y42_c01148{bottom:790.571588pt;}
.y41_c01148{bottom:790.831085pt;}
.y40_c01148{bottom:791.710925pt;}
.y3f_c01148{bottom:792.234184pt;}
.y3e_c01148{bottom:792.618516pt;}
.y3d_c01148{bottom:793.136020pt;}
.y3c_c01148{bottom:793.879048pt;}
.y3b_c01148{bottom:794.655980pt;}
.y3a_c01148{bottom:795.039671pt;}
.y39_c01148{bottom:796.072945pt;}
.y38_c01148{bottom:821.864575pt;}
.y37_c01148{bottom:822.649161pt;}
.y36_c01148{bottom:822.951563pt;}
.y35_c01148{bottom:823.740779pt;}
.y34_c01148{bottom:824.725329pt;}
.y33_c01148{bottom:825.023049pt;}
.y32_c01148{bottom:825.509639pt;}
.y31_c01148{bottom:826.099999pt;}
.y30_c01148{bottom:826.390731pt;}
.y2f_c01148{bottom:826.969335pt;}
.y2e_c01148{bottom:827.273523pt;}
.y2d_c01148{bottom:851.396617pt;}
.y2c_c01148{bottom:851.750559pt;}
.y2b_c01148{bottom:852.350619pt;}
.y2a_c01148{bottom:852.831503pt;}
.y29_c01148{bottom:853.882736pt;}
.y28_c01148{bottom:855.077553pt;}
.y27_c01148{bottom:855.429103pt;}
.y26_c01148{bottom:855.776821pt;}
.y25_c01148{bottom:856.615911pt;}
.y24_c01148{bottom:856.952916pt;}
.y23_c01148{bottom:857.546251pt;}
.y22_c01148{bottom:857.891248pt;}
.y21_c01148{bottom:858.236332pt;}
.y20_c01148{bottom:882.899461pt;}
.y1f_c01148{bottom:883.296031pt;}
.y1e_c01148{bottom:884.441175pt;}
.y1d_c01148{bottom:884.968611pt;}
.y1c_c01148{bottom:885.355456pt;}
.y1b_c01148{bottom:885.860532pt;}
.y1a_c01148{bottom:887.393059pt;}
.y19_c01148{bottom:887.776697pt;}
.y18_c01148{bottom:888.678308pt;}
.y17_c01148{bottom:888.936765pt;}
.y16_c01148{bottom:889.439085pt;}
.y15_c01148{bottom:914.991656pt;}
.y14_c01148{bottom:916.159853pt;}
.y13_c01148{bottom:917.054236pt;}
.y12_c01148{bottom:917.425533pt;}
.y11_c01148{bottom:918.071027pt;}
.y10_c01148{bottom:918.464112pt;}
.yf_c01148{bottom:919.357039pt;}
.ye_c01148{bottom:919.743919pt;}
.yd_c01148{bottom:920.882667pt;}
.yc_c01148{bottom:985.240000pt;}
.yb_c01148{bottom:988.197333pt;}
.ya_c01148{bottom:997.769056pt;}
.y9_c01148{bottom:998.871243pt;}
.y8_c01148{bottom:999.844000pt;}
.y7_c01148{bottom:1053.570768pt;}
.y6_c01148{bottom:1055.398608pt;}
.y5_c01148{bottom:1056.873504pt;}
.y4_c01148{bottom:1057.689328pt;}
.y3_c01148{bottom:1058.398864pt;}
.y2_c01148{bottom:1089.669584pt;}
.y1_c01148{bottom:1093.920000pt;}
.h5_c01148{height:16.000000pt;}
.h9_c01148{height:64.004608pt;}
.h6_c01148{height:64.005408pt;}
.hb_c01148{height:64.008191pt;}
.h8_c01148{height:69.339192pt;}
.h7_c01148{height:74.672976pt;}
.h4_c01148{height:80.010239pt;}
.ha_c01148{height:85.339477pt;}
.h3_c01148{height:101.340629pt;}
.h2_c01148{height:128.009216pt;}
.h1_c01148{height:1118.666667pt;}
.h0_c01148{height:1118.880000pt;}
.w0_c01148{width:817.866667pt;}
.w1_c01148{width:818.000000pt;}
.x0_c01148{left:0.000000pt;}
.x46_c01148{left:155.304665pt;}
.x27_c01148{left:157.071852pt;}
.x32_c01148{left:158.006443pt;}
.x5c_c01148{left:184.653333pt;}
.x33_c01148{left:186.808157pt;}
.x28_c01148{left:195.711852pt;}
.x29_c01148{left:215.593185pt;}
.x47_c01148{left:234.787332pt;}
.x3e_c01148{left:244.909871pt;}
.x54_c01148{left:252.573333pt;}
.x1e_c01148{left:256.401333pt;}
.x34_c01148{left:265.039847pt;}
.x3f_c01148{left:273.941664pt;}
.x55_c01148{left:283.290667pt;}
.x2a_c01148{left:284.947852pt;}
.x35_c01148{left:293.117544pt;}
.x8_c01148{left:294.204000pt;}
.x16_c01148{left:295.680000pt;}
.xa_c01148{left:296.640000pt;}
.x61_c01148{left:311.320000pt;}
.x2b_c01148{left:314.458519pt;}
.xb_c01148{left:317.040000pt;}
.x4d_c01148{left:322.164360pt;}
.x48_c01148{left:324.065999pt;}
.xc_c01148{left:326.400000pt;}
.x17_c01148{left:329.280000pt;}
.x56_c01148{left:332.021333pt;}
.x40_c01148{left:332.997303pt;}
.xd_c01148{left:336.720000pt;}
.x18_c01148{left:338.160000pt;}
.x1f_c01148{left:343.997333pt;}
.xe_c01148{left:347.760000pt;}
.x9_c01148{left:355.001333pt;}
.x4e_c01148{left:361.992880pt;}
.x36_c01148{left:362.997112pt;}
.x3_c01148{left:365.606400pt;}
.x62_c01148{left:370.620000pt;}
.x20_c01148{left:373.757333pt;}
.xf_c01148{left:376.080000pt;}
.x41_c01148{left:381.711209pt;}
.x10_c01148{left:384.960000pt;}
.x1_c01148{left:389.274667pt;}
.x57_c01148{left:391.068000pt;}
.x37_c01148{left:392.001493pt;}
.x11_c01148{left:394.800000pt;}
.x4f_c01148{left:400.610716pt;}
.x12_c01148{left:404.640000pt;}
.x19_c01148{left:407.520000pt;}
.x42_c01148{left:411.485704pt;}
.x13_c01148{left:414.720000pt;}
.x1a_c01148{left:417.120000pt;}
.x63_c01148{left:419.334667pt;}
.x38_c01148{left:421.300541pt;}
.x4_c01148{left:424.734400pt;}
.x2c_c01148{left:432.345185pt;}
.x1b_c01148{left:434.400000pt;}
.x14_c01148{left:435.360000pt;}
.x5d_c01148{left:440.978667pt;}
.x21_c01148{left:442.444000pt;}
.x15_c01148{left:444.000000pt;}
.x1c_c01148{left:445.200000pt;}
.x49_c01148{left:450.593999pt;}
.x1d_c01148{left:454.080000pt;}
.x58_c01148{left:459.504000pt;}
.x50_c01148{left:460.415496pt;}
.x64_c01148{left:468.788000pt;}
.x2d_c01148{left:471.197185pt;}
.x22_c01148{left:472.681333pt;}
.x51_c01148{left:489.685211pt;}
.x4a_c01148{left:490.844665pt;}
.x5_c01148{left:492.719733pt;}
.x2e_c01148{left:500.954519pt;}
.x43_c01148{left:509.890868pt;}
.x5e_c01148{left:518.746667pt;}
.x39_c01148{left:520.903175pt;}
.x23_c01148{left:522.334667pt;}
.x2f_c01148{left:541.526519pt;}
.x65_c01148{left:546.809333pt;}
.x5f_c01148{left:547.790667pt;}
.x24_c01148{left:550.896000pt;}
.x4b_c01148{left:558.524665pt;}
.x59_c01148{left:569.436000pt;}
.x4c_c01148{left:578.485999pt;}
.x44_c01148{left:588.859287pt;}
.x5a_c01148{left:598.928000pt;}
.x3a_c01148{left:608.537652pt;}
.x6_c01148{left:615.627733pt;}
.x25_c01148{left:619.694667pt;}
.x60_c01148{left:626.800000pt;}
.x30_c01148{left:629.614519pt;}
.x52_c01148{left:639.447152pt;}
.x3b_c01148{left:648.606172pt;}
.x31_c01148{left:660.119852pt;}
.x5b_c01148{left:687.504000pt;}
.x45_c01148{left:697.606200pt;}
.x3c_c01148{left:698.560147pt;}
.x26_c01148{left:709.556000pt;}
.x3d_c01148{left:728.043195pt;}
.x2_c01148{left:743.476000pt;}
.x7_c01148{left:767.947733pt;}
.x53_c01148{left:808.272020pt;}
}





/* 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_c01149 {
    display:none;
  }
  .loading-indicator_c01149.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01149 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_c01149 { 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_c01149" -> "#page-container .classname_c01149")
 */
.pf_c01149 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01149 { /* 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_c01149.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01149 { /* 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_c01149 { /* 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_c01149 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01149 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01149 {overflow:visible;}
  }
}
.c_c01149 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01149 { /* 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_c01149:after { /* webkit #35443 */
  content: '';
}
.t_c01149:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01149 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 */
}
.__c01149 { /* 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_c01149 { /* info for Javascript */
  display:none;
}
.l_c01149 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01149 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01149 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01149: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_c01149 {
    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_c01149.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01149.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_c01149 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01149{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01149;src:url('chunks/assets/font_c3e4ad8bbd860aacb2f1cb75.woff2')format("woff");}.ff1_c01149{font-family:ff1_c01149;line-height:1.000000;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;}
.m2_c01149{transform:matrix(0.054085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054085,0.000000,0.000000,0.250000,0,0);}
.m0_c01149{transform:matrix(0.202810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202810,0.000000,0.000000,0.250000,0,0);}
.m7_c01149{transform:matrix(0.229595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229595,0.000000,0.000000,0.250000,0,0);}
.m3_c01149{transform:matrix(0.237170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237170,0.000000,0.000000,0.250000,0,0);}
.m5_c01149{transform:matrix(0.255675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255675,0.000000,0.000000,0.250000,0,0);}
.m9_c01149{transform:matrix(0.272695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272695,0.000000,0.000000,0.250000,0,0);}
.m1_c01149{transform:matrix(0.286200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286200,0.000000,0.000000,0.250000,0,0);}
.m6_c01149{transform:matrix(0.295180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295180,0.000000,0.000000,0.250000,0,0);}
.m8_c01149{transform:matrix(0.380215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380215,0.000000,0.000000,0.250000,0,0);}
.m4_c01149{transform:matrix(1.459865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.459865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.459865,0.000000,0.000000,0.250000,0,0);}
.v0_c01149{vertical-align:0.000000px;}
.ls0_c01149{letter-spacing:0.000000px;}
.sc__c01149{text-shadow:none;}
.sc0_c01149{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__c01149{-webkit-text-stroke:0px transparent;}
.sc0_c01149{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01149{word-spacing:0.000000px;}
.fc0_c01149{color:transparent;}
.fs1_c01149{font-size:18.000000px;}
.fs0_c01149{font-size:24.000000px;}
.y0_c01149{bottom:0.000000px;}
.y3_c01149{bottom:166.860000px;}
.y2_c01149{bottom:219.240000px;}
.y1_c01149{bottom:940.542000px;}
.h3_c01149{height:18.000000px;}
.h2_c01149{height:24.000000px;}
.h1_c01149{height:1258.500000px;}
.h0_c01149{height:1258.740000px;}
.w0_c01149{width:920.100000px;}
.w1_c01149{width:920.250000px;}
.x0_c01149{left:0.000000px;}
.x5_c01149{left:14.580000px;}
.x4_c01149{left:15.930000px;}
.x3_c01149{left:18.090000px;}
.x1_c01149{left:548.640000px;}
.x2_c01149{left:561.600000px;}
@media print{
.v0_c01149{vertical-align:0.000000pt;}
.ls0_c01149{letter-spacing:0.000000pt;}
.ws0_c01149{word-spacing:0.000000pt;}
.fs1_c01149{font-size:16.000000pt;}
.fs0_c01149{font-size:21.333333pt;}
.y0_c01149{bottom:0.000000pt;}
.y3_c01149{bottom:148.320000pt;}
.y2_c01149{bottom:194.880000pt;}
.y1_c01149{bottom:836.037333pt;}
.h3_c01149{height:16.000000pt;}
.h2_c01149{height:21.333333pt;}
.h1_c01149{height:1118.666667pt;}
.h0_c01149{height:1118.880000pt;}
.w0_c01149{width:817.866667pt;}
.w1_c01149{width:818.000000pt;}
.x0_c01149{left:0.000000pt;}
.x5_c01149{left:12.960000pt;}
.x4_c01149{left:14.160000pt;}
.x3_c01149{left:16.080000pt;}
.x1_c01149{left:487.680000pt;}
.x2_c01149{left:499.200000pt;}
}





/* 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_c01150 {
    display:none;
  }
  .loading-indicator_c01150.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01150 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_c01150 { 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_c01150" -> "#page-container .classname_c01150")
 */
.pf_c01150 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01150 { /* 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_c01150.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01150 { /* 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_c01150 { /* 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_c01150 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01150 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01150 {overflow:visible;}
  }
}
.c_c01150 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01150 { /* 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_c01150:after { /* webkit #35443 */
  content: '';
}
.t_c01150:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01150 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 */
}
.__c01150 { /* 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_c01150 { /* info for Javascript */
  display:none;
}
.l_c01150 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01150 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01150 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01150: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_c01150 {
    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_c01150.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01150.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_c01150 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01150{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01150;src:url('chunks/assets/font_b11a17f404e7258299fdf971.woff2')format("woff");}.ff1_c01150{font-family:ff1_c01150;line-height:1.000000;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;}
.m147_c01150{transform:matrix(0.122065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122065,0.000000,0.000000,0.250000,0,0);}
.m14c_c01150{transform:matrix(0.150935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150935,0.000000,0.000000,0.250000,0,0);}
.mae_c01150{transform:matrix(0.155560,-0.002489,0.003999,0.249968,0,0);-ms-transform:matrix(0.155560,-0.002489,0.003999,0.249968,0,0);-webkit-transform:matrix(0.155560,-0.002489,0.003999,0.249968,0,0);}
.m136_c01150{transform:matrix(0.166459,-0.002663,0.003999,0.249968,0,0);-ms-transform:matrix(0.166459,-0.002663,0.003999,0.249968,0,0);-webkit-transform:matrix(0.166459,-0.002663,0.003999,0.249968,0,0);}
.m1_c01150{transform:matrix(0.168398,-0.006911,0.010252,0.249790,0,0);-ms-transform:matrix(0.168398,-0.006911,0.010252,0.249790,0,0);-webkit-transform:matrix(0.168398,-0.006911,0.010252,0.249790,0,0);}
.mb6_c01150{transform:matrix(0.168988,-0.002704,0.003999,0.249968,0,0);-ms-transform:matrix(0.168988,-0.002704,0.003999,0.249968,0,0);-webkit-transform:matrix(0.168988,-0.002704,0.003999,0.249968,0,0);}
.mb9_c01150{transform:matrix(0.169363,-0.002710,0.003999,0.249968,0,0);-ms-transform:matrix(0.169363,-0.002710,0.003999,0.249968,0,0);-webkit-transform:matrix(0.169363,-0.002710,0.003999,0.249968,0,0);}
.mb2_c01150{transform:matrix(0.171588,-0.002745,0.003999,0.249968,0,0);-ms-transform:matrix(0.171588,-0.002745,0.003999,0.249968,0,0);-webkit-transform:matrix(0.171588,-0.002745,0.003999,0.249968,0,0);}
.m3_c01150{transform:matrix(0.171905,-0.007055,0.010252,0.249790,0,0);-ms-transform:matrix(0.171905,-0.007055,0.010252,0.249790,0,0);-webkit-transform:matrix(0.171905,-0.007055,0.010252,0.249790,0,0);}
.maf_c01150{transform:matrix(0.173708,-0.002779,0.003999,0.249968,0,0);-ms-transform:matrix(0.173708,-0.002779,0.003999,0.249968,0,0);-webkit-transform:matrix(0.173708,-0.002779,0.003999,0.249968,0,0);}
.mb3_c01150{transform:matrix(0.176117,-0.002818,0.003999,0.249968,0,0);-ms-transform:matrix(0.176117,-0.002818,0.003999,0.249968,0,0);-webkit-transform:matrix(0.176117,-0.002818,0.003999,0.249968,0,0);}
.mff_c01150{transform:matrix(0.176287,-0.002821,0.003999,0.249968,0,0);-ms-transform:matrix(0.176287,-0.002821,0.003999,0.249968,0,0);-webkit-transform:matrix(0.176287,-0.002821,0.003999,0.249968,0,0);}
.mb4_c01150{transform:matrix(0.177867,-0.002846,0.003999,0.249968,0,0);-ms-transform:matrix(0.177867,-0.002846,0.003999,0.249968,0,0);-webkit-transform:matrix(0.177867,-0.002846,0.003999,0.249968,0,0);}
.mb7_c01150{transform:matrix(0.182042,-0.002913,0.003999,0.249968,0,0);-ms-transform:matrix(0.182042,-0.002913,0.003999,0.249968,0,0);-webkit-transform:matrix(0.182042,-0.002913,0.003999,0.249968,0,0);}
.mfa_c01150{transform:matrix(0.184631,-0.002954,0.003999,0.249968,0,0);-ms-transform:matrix(0.184631,-0.002954,0.003999,0.249968,0,0);-webkit-transform:matrix(0.184631,-0.002954,0.003999,0.249968,0,0);}
.m129_c01150{transform:matrix(0.185741,-0.002972,0.003999,0.249968,0,0);-ms-transform:matrix(0.185741,-0.002972,0.003999,0.249968,0,0);-webkit-transform:matrix(0.185741,-0.002972,0.003999,0.249968,0,0);}
.m37_c01150{transform:matrix(0.186051,-0.002977,0.003999,0.249968,0,0);-ms-transform:matrix(0.186051,-0.002977,0.003999,0.249968,0,0);-webkit-transform:matrix(0.186051,-0.002977,0.003999,0.249968,0,0);}
.m100_c01150{transform:matrix(0.187486,-0.003000,0.003999,0.249968,0,0);-ms-transform:matrix(0.187486,-0.003000,0.003999,0.249968,0,0);-webkit-transform:matrix(0.187486,-0.003000,0.003999,0.249968,0,0);}
.mfc_c01150{transform:matrix(0.188166,-0.003011,0.003999,0.249968,0,0);-ms-transform:matrix(0.188166,-0.003011,0.003999,0.249968,0,0);-webkit-transform:matrix(0.188166,-0.003011,0.003999,0.249968,0,0);}
.mb8_c01150{transform:matrix(0.188176,-0.003011,0.003999,0.249968,0,0);-ms-transform:matrix(0.188176,-0.003011,0.003999,0.249968,0,0);-webkit-transform:matrix(0.188176,-0.003011,0.003999,0.249968,0,0);}
.m96_c01150{transform:matrix(0.188746,-0.003020,0.003999,0.249968,0,0);-ms-transform:matrix(0.188746,-0.003020,0.003999,0.249968,0,0);-webkit-transform:matrix(0.188746,-0.003020,0.003999,0.249968,0,0);}
.m1e_c01150{transform:matrix(0.191351,-0.003062,0.003999,0.249968,0,0);-ms-transform:matrix(0.191351,-0.003062,0.003999,0.249968,0,0);-webkit-transform:matrix(0.191351,-0.003062,0.003999,0.249968,0,0);}
.mb1_c01150{transform:matrix(0.191555,-0.003065,0.003999,0.249968,0,0);-ms-transform:matrix(0.191555,-0.003065,0.003999,0.249968,0,0);-webkit-transform:matrix(0.191555,-0.003065,0.003999,0.249968,0,0);}
.m36_c01150{transform:matrix(0.192210,-0.003075,0.003999,0.249968,0,0);-ms-transform:matrix(0.192210,-0.003075,0.003999,0.249968,0,0);-webkit-transform:matrix(0.192210,-0.003075,0.003999,0.249968,0,0);}
.m127_c01150{transform:matrix(0.192355,-0.003078,0.003999,0.249968,0,0);-ms-transform:matrix(0.192355,-0.003078,0.003999,0.249968,0,0);-webkit-transform:matrix(0.192355,-0.003078,0.003999,0.249968,0,0);}
.m131_c01150{transform:matrix(0.192495,-0.003080,0.003999,0.249968,0,0);-ms-transform:matrix(0.192495,-0.003080,0.003999,0.249968,0,0);-webkit-transform:matrix(0.192495,-0.003080,0.003999,0.249968,0,0);}
.m9c_c01150{transform:matrix(0.193130,-0.003090,0.003999,0.249968,0,0);-ms-transform:matrix(0.193130,-0.003090,0.003999,0.249968,0,0);-webkit-transform:matrix(0.193130,-0.003090,0.003999,0.249968,0,0);}
.mf9_c01150{transform:matrix(0.193150,-0.003090,0.003999,0.249968,0,0);-ms-transform:matrix(0.193150,-0.003090,0.003999,0.249968,0,0);-webkit-transform:matrix(0.193150,-0.003090,0.003999,0.249968,0,0);}
.mfd_c01150{transform:matrix(0.193525,-0.003096,0.003999,0.249968,0,0);-ms-transform:matrix(0.193525,-0.003096,0.003999,0.249968,0,0);-webkit-transform:matrix(0.193525,-0.003096,0.003999,0.249968,0,0);}
.m12e_c01150{transform:matrix(0.194100,-0.003106,0.003999,0.249968,0,0);-ms-transform:matrix(0.194100,-0.003106,0.003999,0.249968,0,0);-webkit-transform:matrix(0.194100,-0.003106,0.003999,0.249968,0,0);}
.m17_c01150{transform:matrix(0.194915,-0.003119,0.003999,0.249968,0,0);-ms-transform:matrix(0.194915,-0.003119,0.003999,0.249968,0,0);-webkit-transform:matrix(0.194915,-0.003119,0.003999,0.249968,0,0);}
.m3c_c01150{transform:matrix(0.196160,-0.003139,0.003999,0.249968,0,0);-ms-transform:matrix(0.196160,-0.003139,0.003999,0.249968,0,0);-webkit-transform:matrix(0.196160,-0.003139,0.003999,0.249968,0,0);}
.mba_c01150{transform:matrix(0.198320,-0.003173,0.003999,0.249968,0,0);-ms-transform:matrix(0.198320,-0.003173,0.003999,0.249968,0,0);-webkit-transform:matrix(0.198320,-0.003173,0.003999,0.249968,0,0);}
.m5a_c01150{transform:matrix(0.198345,-0.003174,0.003999,0.249968,0,0);-ms-transform:matrix(0.198345,-0.003174,0.003999,0.249968,0,0);-webkit-transform:matrix(0.198345,-0.003174,0.003999,0.249968,0,0);}
.m134_c01150{transform:matrix(0.198620,-0.003178,0.003999,0.249968,0,0);-ms-transform:matrix(0.198620,-0.003178,0.003999,0.249968,0,0);-webkit-transform:matrix(0.198620,-0.003178,0.003999,0.249968,0,0);}
.mfb_c01150{transform:matrix(0.198960,-0.003183,0.003999,0.249968,0,0);-ms-transform:matrix(0.198960,-0.003183,0.003999,0.249968,0,0);-webkit-transform:matrix(0.198960,-0.003183,0.003999,0.249968,0,0);}
.m6b_c01150{transform:matrix(0.199289,-0.003189,0.003999,0.249968,0,0);-ms-transform:matrix(0.199289,-0.003189,0.003999,0.249968,0,0);-webkit-transform:matrix(0.199289,-0.003189,0.003999,0.249968,0,0);}
.m0_c01150{transform:matrix(0.200125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200125,0.000000,0.000000,0.250000,0,0);}
.m13a_c01150{transform:matrix(0.200710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200710,0.000000,0.000000,0.250000,0,0);}
.m12f_c01150{transform:matrix(0.201669,-0.003227,0.003999,0.249968,0,0);-ms-transform:matrix(0.201669,-0.003227,0.003999,0.249968,0,0);-webkit-transform:matrix(0.201669,-0.003227,0.003999,0.249968,0,0);}
.md8_c01150{transform:matrix(0.201779,-0.003228,0.003999,0.249968,0,0);-ms-transform:matrix(0.201779,-0.003228,0.003999,0.249968,0,0);-webkit-transform:matrix(0.201779,-0.003228,0.003999,0.249968,0,0);}
.m97_c01150{transform:matrix(0.201814,-0.003229,0.003999,0.249968,0,0);-ms-transform:matrix(0.201814,-0.003229,0.003999,0.249968,0,0);-webkit-transform:matrix(0.201814,-0.003229,0.003999,0.249968,0,0);}
.m1c_c01150{transform:matrix(0.202324,-0.003237,0.003999,0.249968,0,0);-ms-transform:matrix(0.202324,-0.003237,0.003999,0.249968,0,0);-webkit-transform:matrix(0.202324,-0.003237,0.003999,0.249968,0,0);}
.mb5_c01150{transform:matrix(0.202484,-0.003240,0.003999,0.249968,0,0);-ms-transform:matrix(0.202484,-0.003240,0.003999,0.249968,0,0);-webkit-transform:matrix(0.202484,-0.003240,0.003999,0.249968,0,0);}
.m10d_c01150{transform:matrix(0.203014,-0.003248,0.003999,0.249968,0,0);-ms-transform:matrix(0.203014,-0.003248,0.003999,0.249968,0,0);-webkit-transform:matrix(0.203014,-0.003248,0.003999,0.249968,0,0);}
.m101_c01150{transform:matrix(0.203089,-0.003249,0.003999,0.249968,0,0);-ms-transform:matrix(0.203089,-0.003249,0.003999,0.249968,0,0);-webkit-transform:matrix(0.203089,-0.003249,0.003999,0.249968,0,0);}
.m3b_c01150{transform:matrix(0.203314,-0.003253,0.003999,0.249968,0,0);-ms-transform:matrix(0.203314,-0.003253,0.003999,0.249968,0,0);-webkit-transform:matrix(0.203314,-0.003253,0.003999,0.249968,0,0);}
.m12c_c01150{transform:matrix(0.203724,-0.003260,0.003999,0.249968,0,0);-ms-transform:matrix(0.203724,-0.003260,0.003999,0.249968,0,0);-webkit-transform:matrix(0.203724,-0.003260,0.003999,0.249968,0,0);}
.m99_c01150{transform:matrix(0.204129,-0.003266,0.003999,0.249968,0,0);-ms-transform:matrix(0.204129,-0.003266,0.003999,0.249968,0,0);-webkit-transform:matrix(0.204129,-0.003266,0.003999,0.249968,0,0);}
.m102_c01150{transform:matrix(0.204234,-0.003268,0.003999,0.249968,0,0);-ms-transform:matrix(0.204234,-0.003268,0.003999,0.249968,0,0);-webkit-transform:matrix(0.204234,-0.003268,0.003999,0.249968,0,0);}
.mb0_c01150{transform:matrix(0.204294,-0.003269,0.003999,0.249968,0,0);-ms-transform:matrix(0.204294,-0.003269,0.003999,0.249968,0,0);-webkit-transform:matrix(0.204294,-0.003269,0.003999,0.249968,0,0);}
.mf6_c01150{transform:matrix(0.204304,-0.003269,0.003999,0.249968,0,0);-ms-transform:matrix(0.204304,-0.003269,0.003999,0.249968,0,0);-webkit-transform:matrix(0.204304,-0.003269,0.003999,0.249968,0,0);}
.me4_c01150{transform:matrix(0.204684,-0.003275,0.003999,0.249968,0,0);-ms-transform:matrix(0.204684,-0.003275,0.003999,0.249968,0,0);-webkit-transform:matrix(0.204684,-0.003275,0.003999,0.249968,0,0);}
.m128_c01150{transform:matrix(0.204754,-0.003276,0.003999,0.249968,0,0);-ms-transform:matrix(0.204754,-0.003276,0.003999,0.249968,0,0);-webkit-transform:matrix(0.204754,-0.003276,0.003999,0.249968,0,0);}
.m1f_c01150{transform:matrix(0.205299,-0.003285,0.003999,0.249968,0,0);-ms-transform:matrix(0.205299,-0.003285,0.003999,0.249968,0,0);-webkit-transform:matrix(0.205299,-0.003285,0.003999,0.249968,0,0);}
.m9a_c01150{transform:matrix(0.206234,-0.003300,0.003999,0.249968,0,0);-ms-transform:matrix(0.206234,-0.003300,0.003999,0.249968,0,0);-webkit-transform:matrix(0.206234,-0.003300,0.003999,0.249968,0,0);}
.m12d_c01150{transform:matrix(0.206824,-0.003309,0.003999,0.249968,0,0);-ms-transform:matrix(0.206824,-0.003309,0.003999,0.249968,0,0);-webkit-transform:matrix(0.206824,-0.003309,0.003999,0.249968,0,0);}
.m3e_c01150{transform:matrix(0.206864,-0.003310,0.003999,0.249968,0,0);-ms-transform:matrix(0.206864,-0.003310,0.003999,0.249968,0,0);-webkit-transform:matrix(0.206864,-0.003310,0.003999,0.249968,0,0);}
.m143_c01150{transform:matrix(0.207440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207440,0.000000,0.000000,0.250000,0,0);}
.m12a_c01150{transform:matrix(0.207943,-0.003327,0.003999,0.249968,0,0);-ms-transform:matrix(0.207943,-0.003327,0.003999,0.249968,0,0);-webkit-transform:matrix(0.207943,-0.003327,0.003999,0.249968,0,0);}
.m5e_c01150{transform:matrix(0.207988,-0.003328,0.003999,0.249968,0,0);-ms-transform:matrix(0.207988,-0.003328,0.003999,0.249968,0,0);-webkit-transform:matrix(0.207988,-0.003328,0.003999,0.249968,0,0);}
.m5b_c01150{transform:matrix(0.208688,-0.003339,0.003999,0.249968,0,0);-ms-transform:matrix(0.208688,-0.003339,0.003999,0.249968,0,0);-webkit-transform:matrix(0.208688,-0.003339,0.003999,0.249968,0,0);}
.mad_c01150{transform:matrix(0.208908,-0.003343,0.003999,0.249968,0,0);-ms-transform:matrix(0.208908,-0.003343,0.003999,0.249968,0,0);-webkit-transform:matrix(0.208908,-0.003343,0.003999,0.249968,0,0);}
.m38_c01150{transform:matrix(0.209158,-0.003347,0.003999,0.249968,0,0);-ms-transform:matrix(0.209158,-0.003347,0.003999,0.249968,0,0);-webkit-transform:matrix(0.209158,-0.003347,0.003999,0.249968,0,0);}
.m4a_c01150{transform:matrix(0.209273,-0.003348,0.003999,0.249968,0,0);-ms-transform:matrix(0.209273,-0.003348,0.003999,0.249968,0,0);-webkit-transform:matrix(0.209273,-0.003348,0.003999,0.249968,0,0);}
.mfe_c01150{transform:matrix(0.209833,-0.003357,0.003999,0.249968,0,0);-ms-transform:matrix(0.209833,-0.003357,0.003999,0.249968,0,0);-webkit-transform:matrix(0.209833,-0.003357,0.003999,0.249968,0,0);}
.m130_c01150{transform:matrix(0.210378,-0.003366,0.003999,0.249968,0,0);-ms-transform:matrix(0.210378,-0.003366,0.003999,0.249968,0,0);-webkit-transform:matrix(0.210378,-0.003366,0.003999,0.249968,0,0);}
.m4c_c01150{transform:matrix(0.210583,-0.003369,0.003999,0.249968,0,0);-ms-transform:matrix(0.210583,-0.003369,0.003999,0.249968,0,0);-webkit-transform:matrix(0.210583,-0.003369,0.003999,0.249968,0,0);}
.m120_c01150{transform:matrix(0.210593,-0.003369,0.003999,0.249968,0,0);-ms-transform:matrix(0.210593,-0.003369,0.003999,0.249968,0,0);-webkit-transform:matrix(0.210593,-0.003369,0.003999,0.249968,0,0);}
.m52_c01150{transform:matrix(0.210633,-0.003370,0.003999,0.249968,0,0);-ms-transform:matrix(0.210633,-0.003370,0.003999,0.249968,0,0);-webkit-transform:matrix(0.210633,-0.003370,0.003999,0.249968,0,0);}
.m9f_c01150{transform:matrix(0.211873,-0.003390,0.003999,0.249968,0,0);-ms-transform:matrix(0.211873,-0.003390,0.003999,0.249968,0,0);-webkit-transform:matrix(0.211873,-0.003390,0.003999,0.249968,0,0);}
.m8e_c01150{transform:matrix(0.212473,-0.003400,0.003999,0.249968,0,0);-ms-transform:matrix(0.212473,-0.003400,0.003999,0.249968,0,0);-webkit-transform:matrix(0.212473,-0.003400,0.003999,0.249968,0,0);}
.ma0_c01150{transform:matrix(0.212658,-0.003403,0.003999,0.249968,0,0);-ms-transform:matrix(0.212658,-0.003403,0.003999,0.249968,0,0);-webkit-transform:matrix(0.212658,-0.003403,0.003999,0.249968,0,0);}
.m12b_c01150{transform:matrix(0.212773,-0.003404,0.003999,0.249968,0,0);-ms-transform:matrix(0.212773,-0.003404,0.003999,0.249968,0,0);-webkit-transform:matrix(0.212773,-0.003404,0.003999,0.249968,0,0);}
.m44_c01150{transform:matrix(0.214008,-0.003424,0.003999,0.249968,0,0);-ms-transform:matrix(0.214008,-0.003424,0.003999,0.249968,0,0);-webkit-transform:matrix(0.214008,-0.003424,0.003999,0.249968,0,0);}
.ma2_c01150{transform:matrix(0.214528,-0.003432,0.003999,0.249968,0,0);-ms-transform:matrix(0.214528,-0.003432,0.003999,0.249968,0,0);-webkit-transform:matrix(0.214528,-0.003432,0.003999,0.249968,0,0);}
.m9d_c01150{transform:matrix(0.214658,-0.003435,0.003999,0.249968,0,0);-ms-transform:matrix(0.214658,-0.003435,0.003999,0.249968,0,0);-webkit-transform:matrix(0.214658,-0.003435,0.003999,0.249968,0,0);}
.m90_c01150{transform:matrix(0.214902,-0.003438,0.003999,0.249968,0,0);-ms-transform:matrix(0.214902,-0.003438,0.003999,0.249968,0,0);-webkit-transform:matrix(0.214902,-0.003438,0.003999,0.249968,0,0);}
.m3d_c01150{transform:matrix(0.215892,-0.003454,0.003999,0.249968,0,0);-ms-transform:matrix(0.215892,-0.003454,0.003999,0.249968,0,0);-webkit-transform:matrix(0.215892,-0.003454,0.003999,0.249968,0,0);}
.m4d_c01150{transform:matrix(0.216182,-0.003459,0.003999,0.249968,0,0);-ms-transform:matrix(0.216182,-0.003459,0.003999,0.249968,0,0);-webkit-transform:matrix(0.216182,-0.003459,0.003999,0.249968,0,0);}
.m49_c01150{transform:matrix(0.216967,-0.003471,0.003999,0.249968,0,0);-ms-transform:matrix(0.216967,-0.003471,0.003999,0.249968,0,0);-webkit-transform:matrix(0.216967,-0.003471,0.003999,0.249968,0,0);}
.m39_c01150{transform:matrix(0.217167,-0.003475,0.003999,0.249968,0,0);-ms-transform:matrix(0.217167,-0.003475,0.003999,0.249968,0,0);-webkit-transform:matrix(0.217167,-0.003475,0.003999,0.249968,0,0);}
.m132_c01150{transform:matrix(0.217667,-0.003483,0.003999,0.249968,0,0);-ms-transform:matrix(0.217667,-0.003483,0.003999,0.249968,0,0);-webkit-transform:matrix(0.217667,-0.003483,0.003999,0.249968,0,0);}
.m48_c01150{transform:matrix(0.217887,-0.003486,0.003999,0.249968,0,0);-ms-transform:matrix(0.217887,-0.003486,0.003999,0.249968,0,0);-webkit-transform:matrix(0.217887,-0.003486,0.003999,0.249968,0,0);}
.m137_c01150{transform:matrix(0.218462,-0.003495,0.003999,0.249968,0,0);-ms-transform:matrix(0.218462,-0.003495,0.003999,0.249968,0,0);-webkit-transform:matrix(0.218462,-0.003495,0.003999,0.249968,0,0);}
.mc5_c01150{transform:matrix(0.218932,-0.003503,0.003999,0.249968,0,0);-ms-transform:matrix(0.218932,-0.003503,0.003999,0.249968,0,0);-webkit-transform:matrix(0.218932,-0.003503,0.003999,0.249968,0,0);}
.m133_c01150{transform:matrix(0.219642,-0.003514,0.003999,0.249968,0,0);-ms-transform:matrix(0.219642,-0.003514,0.003999,0.249968,0,0);-webkit-transform:matrix(0.219642,-0.003514,0.003999,0.249968,0,0);}
.m1a_c01150{transform:matrix(0.220432,-0.003527,0.003999,0.249968,0,0);-ms-transform:matrix(0.220432,-0.003527,0.003999,0.249968,0,0);-webkit-transform:matrix(0.220432,-0.003527,0.003999,0.249968,0,0);}
.m126_c01150{transform:matrix(0.220452,-0.003527,0.003999,0.249968,0,0);-ms-transform:matrix(0.220452,-0.003527,0.003999,0.249968,0,0);-webkit-transform:matrix(0.220452,-0.003527,0.003999,0.249968,0,0);}
.m103_c01150{transform:matrix(0.221177,-0.003539,0.003999,0.249968,0,0);-ms-transform:matrix(0.221177,-0.003539,0.003999,0.249968,0,0);-webkit-transform:matrix(0.221177,-0.003539,0.003999,0.249968,0,0);}
.m3f_c01150{transform:matrix(0.221557,-0.003545,0.003999,0.249968,0,0);-ms-transform:matrix(0.221557,-0.003545,0.003999,0.249968,0,0);-webkit-transform:matrix(0.221557,-0.003545,0.003999,0.249968,0,0);}
.m32_c01150{transform:matrix(0.221782,-0.003549,0.003999,0.249968,0,0);-ms-transform:matrix(0.221782,-0.003549,0.003999,0.249968,0,0);-webkit-transform:matrix(0.221782,-0.003549,0.003999,0.249968,0,0);}
.m18_c01150{transform:matrix(0.221792,-0.003549,0.003999,0.249968,0,0);-ms-transform:matrix(0.221792,-0.003549,0.003999,0.249968,0,0);-webkit-transform:matrix(0.221792,-0.003549,0.003999,0.249968,0,0);}
.m114_c01150{transform:matrix(0.222597,-0.003562,0.003999,0.249968,0,0);-ms-transform:matrix(0.222597,-0.003562,0.003999,0.249968,0,0);-webkit-transform:matrix(0.222597,-0.003562,0.003999,0.249968,0,0);}
.m135_c01150{transform:matrix(0.222761,-0.003564,0.003999,0.249968,0,0);-ms-transform:matrix(0.222761,-0.003564,0.003999,0.249968,0,0);-webkit-transform:matrix(0.222761,-0.003564,0.003999,0.249968,0,0);}
.m68_c01150{transform:matrix(0.222771,-0.003564,0.003999,0.249968,0,0);-ms-transform:matrix(0.222771,-0.003564,0.003999,0.249968,0,0);-webkit-transform:matrix(0.222771,-0.003564,0.003999,0.249968,0,0);}
.m7e_c01150{transform:matrix(0.223241,-0.003572,0.003999,0.249968,0,0);-ms-transform:matrix(0.223241,-0.003572,0.003999,0.249968,0,0);-webkit-transform:matrix(0.223241,-0.003572,0.003999,0.249968,0,0);}
.m9e_c01150{transform:matrix(0.223406,-0.003575,0.003999,0.249968,0,0);-ms-transform:matrix(0.223406,-0.003575,0.003999,0.249968,0,0);-webkit-transform:matrix(0.223406,-0.003575,0.003999,0.249968,0,0);}
.m53_c01150{transform:matrix(0.224041,-0.003585,0.003999,0.249968,0,0);-ms-transform:matrix(0.224041,-0.003585,0.003999,0.249968,0,0);-webkit-transform:matrix(0.224041,-0.003585,0.003999,0.249968,0,0);}
.m40_c01150{transform:matrix(0.224781,-0.003596,0.003999,0.249968,0,0);-ms-transform:matrix(0.224781,-0.003596,0.003999,0.249968,0,0);-webkit-transform:matrix(0.224781,-0.003596,0.003999,0.249968,0,0);}
.m141_c01150{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m62_c01150{transform:matrix(0.225316,-0.003605,0.003999,0.249968,0,0);-ms-transform:matrix(0.225316,-0.003605,0.003999,0.249968,0,0);-webkit-transform:matrix(0.225316,-0.003605,0.003999,0.249968,0,0);}
.m85_c01150{transform:matrix(0.226036,-0.003617,0.003999,0.249968,0,0);-ms-transform:matrix(0.226036,-0.003617,0.003999,0.249968,0,0);-webkit-transform:matrix(0.226036,-0.003617,0.003999,0.249968,0,0);}
.m4f_c01150{transform:matrix(0.227051,-0.003633,0.003999,0.249968,0,0);-ms-transform:matrix(0.227051,-0.003633,0.003999,0.249968,0,0);-webkit-transform:matrix(0.227051,-0.003633,0.003999,0.249968,0,0);}
.m112_c01150{transform:matrix(0.227231,-0.003636,0.003999,0.249968,0,0);-ms-transform:matrix(0.227231,-0.003636,0.003999,0.249968,0,0);-webkit-transform:matrix(0.227231,-0.003636,0.003999,0.249968,0,0);}
.m13f_c01150{transform:matrix(0.227260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227260,0.000000,0.000000,0.250000,0,0);}
.m8b_c01150{transform:matrix(0.227401,-0.003638,0.003999,0.249968,0,0);-ms-transform:matrix(0.227401,-0.003638,0.003999,0.249968,0,0);-webkit-transform:matrix(0.227401,-0.003638,0.003999,0.249968,0,0);}
.m14e_c01150{transform:matrix(0.227735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227735,0.000000,0.000000,0.250000,0,0);}
.mf8_c01150{transform:matrix(0.228131,-0.003650,0.003999,0.249968,0,0);-ms-transform:matrix(0.228131,-0.003650,0.003999,0.249968,0,0);-webkit-transform:matrix(0.228131,-0.003650,0.003999,0.249968,0,0);}
.m2b_c01150{transform:matrix(0.228186,-0.003651,0.003999,0.249968,0,0);-ms-transform:matrix(0.228186,-0.003651,0.003999,0.249968,0,0);-webkit-transform:matrix(0.228186,-0.003651,0.003999,0.249968,0,0);}
.ma1_c01150{transform:matrix(0.229086,-0.003665,0.003999,0.249968,0,0);-ms-transform:matrix(0.229086,-0.003665,0.003999,0.249968,0,0);-webkit-transform:matrix(0.229086,-0.003665,0.003999,0.249968,0,0);}
.m69_c01150{transform:matrix(0.229166,-0.003667,0.003999,0.249968,0,0);-ms-transform:matrix(0.229166,-0.003667,0.003999,0.249968,0,0);-webkit-transform:matrix(0.229166,-0.003667,0.003999,0.249968,0,0);}
.m28_c01150{transform:matrix(0.229236,-0.003668,0.003999,0.249968,0,0);-ms-transform:matrix(0.229236,-0.003668,0.003999,0.249968,0,0);-webkit-transform:matrix(0.229236,-0.003668,0.003999,0.249968,0,0);}
.m5f_c01150{transform:matrix(0.229431,-0.003671,0.003999,0.249968,0,0);-ms-transform:matrix(0.229431,-0.003671,0.003999,0.249968,0,0);-webkit-transform:matrix(0.229431,-0.003671,0.003999,0.249968,0,0);}
.mc9_c01150{transform:matrix(0.230186,-0.003683,0.003999,0.249968,0,0);-ms-transform:matrix(0.230186,-0.003683,0.003999,0.249968,0,0);-webkit-transform:matrix(0.230186,-0.003683,0.003999,0.249968,0,0);}
.me0_c01150{transform:matrix(0.230311,-0.003685,0.003999,0.249968,0,0);-ms-transform:matrix(0.230311,-0.003685,0.003999,0.249968,0,0);-webkit-transform:matrix(0.230311,-0.003685,0.003999,0.249968,0,0);}
.m35_c01150{transform:matrix(0.231375,-0.003702,0.003999,0.249968,0,0);-ms-transform:matrix(0.231375,-0.003702,0.003999,0.249968,0,0);-webkit-transform:matrix(0.231375,-0.003702,0.003999,0.249968,0,0);}
.m9b_c01150{transform:matrix(0.231410,-0.003703,0.003999,0.249968,0,0);-ms-transform:matrix(0.231410,-0.003703,0.003999,0.249968,0,0);-webkit-transform:matrix(0.231410,-0.003703,0.003999,0.249968,0,0);}
.m13d_c01150{transform:matrix(0.231630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231630,0.000000,0.000000,0.250000,0,0);}
.m81_c01150{transform:matrix(0.232740,-0.003724,0.003999,0.249968,0,0);-ms-transform:matrix(0.232740,-0.003724,0.003999,0.249968,0,0);-webkit-transform:matrix(0.232740,-0.003724,0.003999,0.249968,0,0);}
.md6_c01150{transform:matrix(0.233045,-0.003729,0.003999,0.249968,0,0);-ms-transform:matrix(0.233045,-0.003729,0.003999,0.249968,0,0);-webkit-transform:matrix(0.233045,-0.003729,0.003999,0.249968,0,0);}
.m46_c01150{transform:matrix(0.233365,-0.003734,0.003999,0.249968,0,0);-ms-transform:matrix(0.233365,-0.003734,0.003999,0.249968,0,0);-webkit-transform:matrix(0.233365,-0.003734,0.003999,0.249968,0,0);}
.mf4_c01150{transform:matrix(0.233650,-0.003738,0.003999,0.249968,0,0);-ms-transform:matrix(0.233650,-0.003738,0.003999,0.249968,0,0);-webkit-transform:matrix(0.233650,-0.003738,0.003999,0.249968,0,0);}
.mcf_c01150{transform:matrix(0.233690,-0.003739,0.003999,0.249968,0,0);-ms-transform:matrix(0.233690,-0.003739,0.003999,0.249968,0,0);-webkit-transform:matrix(0.233690,-0.003739,0.003999,0.249968,0,0);}
.m55_c01150{transform:matrix(0.234230,-0.003748,0.003999,0.249968,0,0);-ms-transform:matrix(0.234230,-0.003748,0.003999,0.249968,0,0);-webkit-transform:matrix(0.234230,-0.003748,0.003999,0.249968,0,0);}
.m66_c01150{transform:matrix(0.234825,-0.003757,0.003999,0.249968,0,0);-ms-transform:matrix(0.234825,-0.003757,0.003999,0.249968,0,0);-webkit-transform:matrix(0.234825,-0.003757,0.003999,0.249968,0,0);}
.m59_c01150{transform:matrix(0.235285,-0.003765,0.003999,0.249968,0,0);-ms-transform:matrix(0.235285,-0.003765,0.003999,0.249968,0,0);-webkit-transform:matrix(0.235285,-0.003765,0.003999,0.249968,0,0);}
.m98_c01150{transform:matrix(0.235310,-0.003765,0.003999,0.249968,0,0);-ms-transform:matrix(0.235310,-0.003765,0.003999,0.249968,0,0);-webkit-transform:matrix(0.235310,-0.003765,0.003999,0.249968,0,0);}
.m3a_c01150{transform:matrix(0.235620,-0.003770,0.003999,0.249968,0,0);-ms-transform:matrix(0.235620,-0.003770,0.003999,0.249968,0,0);-webkit-transform:matrix(0.235620,-0.003770,0.003999,0.249968,0,0);}
.m34_c01150{transform:matrix(0.235820,-0.003773,0.003999,0.249968,0,0);-ms-transform:matrix(0.235820,-0.003773,0.003999,0.249968,0,0);-webkit-transform:matrix(0.235820,-0.003773,0.003999,0.249968,0,0);}
.m138_c01150{transform:matrix(0.236285,-0.003781,0.003999,0.249968,0,0);-ms-transform:matrix(0.236285,-0.003781,0.003999,0.249968,0,0);-webkit-transform:matrix(0.236285,-0.003781,0.003999,0.249968,0,0);}
.m89_c01150{transform:matrix(0.236415,-0.003783,0.003999,0.249968,0,0);-ms-transform:matrix(0.236415,-0.003783,0.003999,0.249968,0,0);-webkit-transform:matrix(0.236415,-0.003783,0.003999,0.249968,0,0);}
.m24_c01150{transform:matrix(0.236555,-0.003785,0.003999,0.249968,0,0);-ms-transform:matrix(0.236555,-0.003785,0.003999,0.249968,0,0);-webkit-transform:matrix(0.236555,-0.003785,0.003999,0.249968,0,0);}
.m16_c01150{transform:matrix(0.236925,-0.003791,0.003999,0.249968,0,0);-ms-transform:matrix(0.236925,-0.003791,0.003999,0.249968,0,0);-webkit-transform:matrix(0.236925,-0.003791,0.003999,0.249968,0,0);}
.m7a_c01150{transform:matrix(0.237140,-0.003794,0.003999,0.249968,0,0);-ms-transform:matrix(0.237140,-0.003794,0.003999,0.249968,0,0);-webkit-transform:matrix(0.237140,-0.003794,0.003999,0.249968,0,0);}
.m13e_c01150{transform:matrix(0.237260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237260,0.000000,0.000000,0.250000,0,0);}
.m20_c01150{transform:matrix(0.237470,-0.003800,0.003999,0.249968,0,0);-ms-transform:matrix(0.237470,-0.003800,0.003999,0.249968,0,0);-webkit-transform:matrix(0.237470,-0.003800,0.003999,0.249968,0,0);}
.me8_c01150{transform:matrix(0.238155,-0.003810,0.003999,0.249968,0,0);-ms-transform:matrix(0.238155,-0.003810,0.003999,0.249968,0,0);-webkit-transform:matrix(0.238155,-0.003810,0.003999,0.249968,0,0);}
.m5c_c01150{transform:matrix(0.238304,-0.003813,0.003999,0.249968,0,0);-ms-transform:matrix(0.238304,-0.003813,0.003999,0.249968,0,0);-webkit-transform:matrix(0.238304,-0.003813,0.003999,0.249968,0,0);}
.mdb_c01150{transform:matrix(0.238324,-0.003813,0.003999,0.249968,0,0);-ms-transform:matrix(0.238324,-0.003813,0.003999,0.249968,0,0);-webkit-transform:matrix(0.238324,-0.003813,0.003999,0.249968,0,0);}
.m1d_c01150{transform:matrix(0.238824,-0.003821,0.003999,0.249968,0,0);-ms-transform:matrix(0.238824,-0.003821,0.003999,0.249968,0,0);-webkit-transform:matrix(0.238824,-0.003821,0.003999,0.249968,0,0);}
.m1b_c01150{transform:matrix(0.239039,-0.003825,0.003999,0.249968,0,0);-ms-transform:matrix(0.239039,-0.003825,0.003999,0.249968,0,0);-webkit-transform:matrix(0.239039,-0.003825,0.003999,0.249968,0,0);}
.m6_c01150{transform:matrix(0.239173,-0.003588,0.003750,0.249972,0,0);-ms-transform:matrix(0.239173,-0.003588,0.003750,0.249972,0,0);-webkit-transform:matrix(0.239173,-0.003588,0.003750,0.249972,0,0);}
.m56_c01150{transform:matrix(0.239809,-0.003837,0.003999,0.249968,0,0);-ms-transform:matrix(0.239809,-0.003837,0.003999,0.249968,0,0);-webkit-transform:matrix(0.239809,-0.003837,0.003999,0.249968,0,0);}
.mc1_c01150{transform:matrix(0.239879,-0.003838,0.003999,0.249968,0,0);-ms-transform:matrix(0.239879,-0.003838,0.003999,0.249968,0,0);-webkit-transform:matrix(0.239879,-0.003838,0.003999,0.249968,0,0);}
.mec_c01150{transform:matrix(0.240264,-0.003844,0.003999,0.249968,0,0);-ms-transform:matrix(0.240264,-0.003844,0.003999,0.249968,0,0);-webkit-transform:matrix(0.240264,-0.003844,0.003999,0.249968,0,0);}
.m33_c01150{transform:matrix(0.240359,-0.003846,0.003999,0.249968,0,0);-ms-transform:matrix(0.240359,-0.003846,0.003999,0.249968,0,0);-webkit-transform:matrix(0.240359,-0.003846,0.003999,0.249968,0,0);}
.mc8_c01150{transform:matrix(0.240564,-0.003849,0.003999,0.249968,0,0);-ms-transform:matrix(0.240564,-0.003849,0.003999,0.249968,0,0);-webkit-transform:matrix(0.240564,-0.003849,0.003999,0.249968,0,0);}
.mce_c01150{transform:matrix(0.240699,-0.003851,0.003999,0.249968,0,0);-ms-transform:matrix(0.240699,-0.003851,0.003999,0.249968,0,0);-webkit-transform:matrix(0.240699,-0.003851,0.003999,0.249968,0,0);}
.m142_c01150{transform:matrix(0.241260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241260,0.000000,0.000000,0.250000,0,0);}
.m27_c01150{transform:matrix(0.241434,-0.003863,0.003999,0.249968,0,0);-ms-transform:matrix(0.241434,-0.003863,0.003999,0.249968,0,0);-webkit-transform:matrix(0.241434,-0.003863,0.003999,0.249968,0,0);}
.m43_c01150{transform:matrix(0.241479,-0.003864,0.003999,0.249968,0,0);-ms-transform:matrix(0.241479,-0.003864,0.003999,0.249968,0,0);-webkit-transform:matrix(0.241479,-0.003864,0.003999,0.249968,0,0);}
.m22_c01150{transform:matrix(0.241749,-0.003868,0.003999,0.249968,0,0);-ms-transform:matrix(0.241749,-0.003868,0.003999,0.249968,0,0);-webkit-transform:matrix(0.241749,-0.003868,0.003999,0.249968,0,0);}
.mcc_c01150{transform:matrix(0.241989,-0.003872,0.003999,0.249968,0,0);-ms-transform:matrix(0.241989,-0.003872,0.003999,0.249968,0,0);-webkit-transform:matrix(0.241989,-0.003872,0.003999,0.249968,0,0);}
.m5_c01150{transform:matrix(0.242103,-0.003632,0.003750,0.249972,0,0);-ms-transform:matrix(0.242103,-0.003632,0.003750,0.249972,0,0);-webkit-transform:matrix(0.242103,-0.003632,0.003750,0.249972,0,0);}
.m7f_c01150{transform:matrix(0.242209,-0.003875,0.003999,0.249968,0,0);-ms-transform:matrix(0.242209,-0.003875,0.003999,0.249968,0,0);-webkit-transform:matrix(0.242209,-0.003875,0.003999,0.249968,0,0);}
.md4_c01150{transform:matrix(0.242514,-0.003880,0.003999,0.249968,0,0);-ms-transform:matrix(0.242514,-0.003880,0.003999,0.249968,0,0);-webkit-transform:matrix(0.242514,-0.003880,0.003999,0.249968,0,0);}
.m47_c01150{transform:matrix(0.242624,-0.003882,0.003999,0.249968,0,0);-ms-transform:matrix(0.242624,-0.003882,0.003999,0.249968,0,0);-webkit-transform:matrix(0.242624,-0.003882,0.003999,0.249968,0,0);}
.m109_c01150{transform:matrix(0.242674,-0.003883,0.003999,0.249968,0,0);-ms-transform:matrix(0.242674,-0.003883,0.003999,0.249968,0,0);-webkit-transform:matrix(0.242674,-0.003883,0.003999,0.249968,0,0);}
.m82_c01150{transform:matrix(0.242724,-0.003884,0.003999,0.249968,0,0);-ms-transform:matrix(0.242724,-0.003884,0.003999,0.249968,0,0);-webkit-transform:matrix(0.242724,-0.003884,0.003999,0.249968,0,0);}
.m10e_c01150{transform:matrix(0.243024,-0.003888,0.003999,0.249968,0,0);-ms-transform:matrix(0.243024,-0.003888,0.003999,0.249968,0,0);-webkit-transform:matrix(0.243024,-0.003888,0.003999,0.249968,0,0);}
.m73_c01150{transform:matrix(0.243089,-0.003889,0.003999,0.249968,0,0);-ms-transform:matrix(0.243089,-0.003889,0.003999,0.249968,0,0);-webkit-transform:matrix(0.243089,-0.003889,0.003999,0.249968,0,0);}
.m4e_c01150{transform:matrix(0.243169,-0.003891,0.003999,0.249968,0,0);-ms-transform:matrix(0.243169,-0.003891,0.003999,0.249968,0,0);-webkit-transform:matrix(0.243169,-0.003891,0.003999,0.249968,0,0);}
.m25_c01150{transform:matrix(0.243344,-0.003894,0.003999,0.249968,0,0);-ms-transform:matrix(0.243344,-0.003894,0.003999,0.249968,0,0);-webkit-transform:matrix(0.243344,-0.003894,0.003999,0.249968,0,0);}
.mf1_c01150{transform:matrix(0.243669,-0.003899,0.003999,0.249968,0,0);-ms-transform:matrix(0.243669,-0.003899,0.003999,0.249968,0,0);-webkit-transform:matrix(0.243669,-0.003899,0.003999,0.249968,0,0);}
.m10a_c01150{transform:matrix(0.243719,-0.003900,0.003999,0.249968,0,0);-ms-transform:matrix(0.243719,-0.003900,0.003999,0.249968,0,0);-webkit-transform:matrix(0.243719,-0.003900,0.003999,0.249968,0,0);}
.m94_c01150{transform:matrix(0.244064,-0.003905,0.003999,0.249968,0,0);-ms-transform:matrix(0.244064,-0.003905,0.003999,0.249968,0,0);-webkit-transform:matrix(0.244064,-0.003905,0.003999,0.249968,0,0);}
.mda_c01150{transform:matrix(0.244444,-0.003911,0.003999,0.249968,0,0);-ms-transform:matrix(0.244444,-0.003911,0.003999,0.249968,0,0);-webkit-transform:matrix(0.244444,-0.003911,0.003999,0.249968,0,0);}
.mbc_c01150{transform:matrix(0.244829,-0.003917,0.003999,0.249968,0,0);-ms-transform:matrix(0.244829,-0.003917,0.003999,0.249968,0,0);-webkit-transform:matrix(0.244829,-0.003917,0.003999,0.249968,0,0);}
.m11e_c01150{transform:matrix(0.244874,-0.003918,0.003999,0.249968,0,0);-ms-transform:matrix(0.244874,-0.003918,0.003999,0.249968,0,0);-webkit-transform:matrix(0.244874,-0.003918,0.003999,0.249968,0,0);}
.mdc_c01150{transform:matrix(0.244994,-0.003920,0.003999,0.249968,0,0);-ms-transform:matrix(0.244994,-0.003920,0.003999,0.249968,0,0);-webkit-transform:matrix(0.244994,-0.003920,0.003999,0.249968,0,0);}
.m78_c01150{transform:matrix(0.245359,-0.003926,0.003999,0.249968,0,0);-ms-transform:matrix(0.245359,-0.003926,0.003999,0.249968,0,0);-webkit-transform:matrix(0.245359,-0.003926,0.003999,0.249968,0,0);}
.m121_c01150{transform:matrix(0.245694,-0.003931,0.003999,0.249968,0,0);-ms-transform:matrix(0.245694,-0.003931,0.003999,0.249968,0,0);-webkit-transform:matrix(0.245694,-0.003931,0.003999,0.249968,0,0);}
.m2f_c01150{transform:matrix(0.245834,-0.003933,0.003999,0.249968,0,0);-ms-transform:matrix(0.245834,-0.003933,0.003999,0.249968,0,0);-webkit-transform:matrix(0.245834,-0.003933,0.003999,0.249968,0,0);}
.md2_c01150{transform:matrix(0.246673,-0.003947,0.003999,0.249968,0,0);-ms-transform:matrix(0.246673,-0.003947,0.003999,0.249968,0,0);-webkit-transform:matrix(0.246673,-0.003947,0.003999,0.249968,0,0);}
.md1_c01150{transform:matrix(0.246698,-0.003947,0.003999,0.249968,0,0);-ms-transform:matrix(0.246698,-0.003947,0.003999,0.249968,0,0);-webkit-transform:matrix(0.246698,-0.003947,0.003999,0.249968,0,0);}
.m51_c01150{transform:matrix(0.246808,-0.003949,0.003999,0.249968,0,0);-ms-transform:matrix(0.246808,-0.003949,0.003999,0.249968,0,0);-webkit-transform:matrix(0.246808,-0.003949,0.003999,0.249968,0,0);}
.me6_c01150{transform:matrix(0.247103,-0.003954,0.003999,0.249968,0,0);-ms-transform:matrix(0.247103,-0.003954,0.003999,0.249968,0,0);-webkit-transform:matrix(0.247103,-0.003954,0.003999,0.249968,0,0);}
.m54_c01150{transform:matrix(0.247128,-0.003954,0.003999,0.249968,0,0);-ms-transform:matrix(0.247128,-0.003954,0.003999,0.249968,0,0);-webkit-transform:matrix(0.247128,-0.003954,0.003999,0.249968,0,0);}
.m57_c01150{transform:matrix(0.247593,-0.003961,0.003999,0.249968,0,0);-ms-transform:matrix(0.247593,-0.003961,0.003999,0.249968,0,0);-webkit-transform:matrix(0.247593,-0.003961,0.003999,0.249968,0,0);}
.m64_c01150{transform:matrix(0.247723,-0.003964,0.003999,0.249968,0,0);-ms-transform:matrix(0.247723,-0.003964,0.003999,0.249968,0,0);-webkit-transform:matrix(0.247723,-0.003964,0.003999,0.249968,0,0);}
.m19_c01150{transform:matrix(0.248718,-0.003979,0.003999,0.249968,0,0);-ms-transform:matrix(0.248718,-0.003979,0.003999,0.249968,0,0);-webkit-transform:matrix(0.248718,-0.003979,0.003999,0.249968,0,0);}
.mab_c01150{transform:matrix(0.248868,-0.003982,0.003999,0.249968,0,0);-ms-transform:matrix(0.248868,-0.003982,0.003999,0.249968,0,0);-webkit-transform:matrix(0.248868,-0.003982,0.003999,0.249968,0,0);}
.m10f_c01150{transform:matrix(0.248973,-0.003984,0.003999,0.249968,0,0);-ms-transform:matrix(0.248973,-0.003984,0.003999,0.249968,0,0);-webkit-transform:matrix(0.248973,-0.003984,0.003999,0.249968,0,0);}
.m2c_c01150{transform:matrix(0.249623,-0.003994,0.003999,0.249968,0,0);-ms-transform:matrix(0.249623,-0.003994,0.003999,0.249968,0,0);-webkit-transform:matrix(0.249623,-0.003994,0.003999,0.249968,0,0);}
.m104_c01150{transform:matrix(0.249998,-0.004000,0.003999,0.249968,0,0);-ms-transform:matrix(0.249998,-0.004000,0.003999,0.249968,0,0);-webkit-transform:matrix(0.249998,-0.004000,0.003999,0.249968,0,0);}
.m10c_c01150{transform:matrix(0.250023,-0.004000,0.003999,0.249968,0,0);-ms-transform:matrix(0.250023,-0.004000,0.003999,0.249968,0,0);-webkit-transform:matrix(0.250023,-0.004000,0.003999,0.249968,0,0);}
.m7c_c01150{transform:matrix(0.250123,-0.004002,0.003999,0.249968,0,0);-ms-transform:matrix(0.250123,-0.004002,0.003999,0.249968,0,0);-webkit-transform:matrix(0.250123,-0.004002,0.003999,0.249968,0,0);}
.m123_c01150{transform:matrix(0.250138,-0.004002,0.003999,0.249968,0,0);-ms-transform:matrix(0.250138,-0.004002,0.003999,0.249968,0,0);-webkit-transform:matrix(0.250138,-0.004002,0.003999,0.249968,0,0);}
.m119_c01150{transform:matrix(0.250358,-0.004006,0.003999,0.249968,0,0);-ms-transform:matrix(0.250358,-0.004006,0.003999,0.249968,0,0);-webkit-transform:matrix(0.250358,-0.004006,0.003999,0.249968,0,0);}
.m139_c01150{transform:matrix(0.250435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250435,0.000000,0.000000,0.250000,0,0);}
.med_c01150{transform:matrix(0.250438,-0.004007,0.003999,0.249968,0,0);-ms-transform:matrix(0.250438,-0.004007,0.003999,0.249968,0,0);-webkit-transform:matrix(0.250438,-0.004007,0.003999,0.249968,0,0);}
.m4_c01150{transform:matrix(0.250997,-0.003765,0.003750,0.249972,0,0);-ms-transform:matrix(0.250997,-0.003765,0.003750,0.249972,0,0);-webkit-transform:matrix(0.250997,-0.003765,0.003750,0.249972,0,0);}
.m13b_c01150{transform:matrix(0.251345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251345,0.000000,0.000000,0.250000,0,0);}
.m122_c01150{transform:matrix(0.251373,-0.004022,0.003999,0.249968,0,0);-ms-transform:matrix(0.251373,-0.004022,0.003999,0.249968,0,0);-webkit-transform:matrix(0.251373,-0.004022,0.003999,0.249968,0,0);}
.m30_c01150{transform:matrix(0.251793,-0.004029,0.003999,0.249968,0,0);-ms-transform:matrix(0.251793,-0.004029,0.003999,0.249968,0,0);-webkit-transform:matrix(0.251793,-0.004029,0.003999,0.249968,0,0);}
.ma6_c01150{transform:matrix(0.251853,-0.004030,0.003999,0.249968,0,0);-ms-transform:matrix(0.251853,-0.004030,0.003999,0.249968,0,0);-webkit-transform:matrix(0.251853,-0.004030,0.003999,0.249968,0,0);}
.mc0_c01150{transform:matrix(0.251863,-0.004030,0.003999,0.249968,0,0);-ms-transform:matrix(0.251863,-0.004030,0.003999,0.249968,0,0);-webkit-transform:matrix(0.251863,-0.004030,0.003999,0.249968,0,0);}
.m2e_c01150{transform:matrix(0.251973,-0.004032,0.003999,0.249968,0,0);-ms-transform:matrix(0.251973,-0.004032,0.003999,0.249968,0,0);-webkit-transform:matrix(0.251973,-0.004032,0.003999,0.249968,0,0);}
.m11f_c01150{transform:matrix(0.252003,-0.004032,0.003999,0.249968,0,0);-ms-transform:matrix(0.252003,-0.004032,0.003999,0.249968,0,0);-webkit-transform:matrix(0.252003,-0.004032,0.003999,0.249968,0,0);}
.m140_c01150{transform:matrix(0.252355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252355,0.000000,0.000000,0.250000,0,0);}
.mf5_c01150{transform:matrix(0.252453,-0.004039,0.003999,0.249968,0,0);-ms-transform:matrix(0.252453,-0.004039,0.003999,0.249968,0,0);-webkit-transform:matrix(0.252453,-0.004039,0.003999,0.249968,0,0);}
.m86_c01150{transform:matrix(0.252848,-0.004046,0.003999,0.249968,0,0);-ms-transform:matrix(0.252848,-0.004046,0.003999,0.249968,0,0);-webkit-transform:matrix(0.252848,-0.004046,0.003999,0.249968,0,0);}
.m124_c01150{transform:matrix(0.253528,-0.004056,0.003999,0.249968,0,0);-ms-transform:matrix(0.253528,-0.004056,0.003999,0.249968,0,0);-webkit-transform:matrix(0.253528,-0.004056,0.003999,0.249968,0,0);}
.m6d_c01150{transform:matrix(0.253558,-0.004057,0.003999,0.249968,0,0);-ms-transform:matrix(0.253558,-0.004057,0.003999,0.249968,0,0);-webkit-transform:matrix(0.253558,-0.004057,0.003999,0.249968,0,0);}
.mc4_c01150{transform:matrix(0.253813,-0.004061,0.003999,0.249968,0,0);-ms-transform:matrix(0.253813,-0.004061,0.003999,0.249968,0,0);-webkit-transform:matrix(0.253813,-0.004061,0.003999,0.249968,0,0);}
.m111_c01150{transform:matrix(0.254527,-0.004072,0.003999,0.249968,0,0);-ms-transform:matrix(0.254527,-0.004072,0.003999,0.249968,0,0);-webkit-transform:matrix(0.254527,-0.004072,0.003999,0.249968,0,0);}
.m75_c01150{transform:matrix(0.254537,-0.004073,0.003999,0.249968,0,0);-ms-transform:matrix(0.254537,-0.004073,0.003999,0.249968,0,0);-webkit-transform:matrix(0.254537,-0.004073,0.003999,0.249968,0,0);}
.m4b_c01150{transform:matrix(0.254707,-0.004075,0.003999,0.249968,0,0);-ms-transform:matrix(0.254707,-0.004075,0.003999,0.249968,0,0);-webkit-transform:matrix(0.254707,-0.004075,0.003999,0.249968,0,0);}
.m110_c01150{transform:matrix(0.254827,-0.004077,0.003999,0.249968,0,0);-ms-transform:matrix(0.254827,-0.004077,0.003999,0.249968,0,0);-webkit-transform:matrix(0.254827,-0.004077,0.003999,0.249968,0,0);}
.m72_c01150{transform:matrix(0.255177,-0.004083,0.003999,0.249968,0,0);-ms-transform:matrix(0.255177,-0.004083,0.003999,0.249968,0,0);-webkit-transform:matrix(0.255177,-0.004083,0.003999,0.249968,0,0);}
.mee_c01150{transform:matrix(0.255292,-0.004085,0.003999,0.249968,0,0);-ms-transform:matrix(0.255292,-0.004085,0.003999,0.249968,0,0);-webkit-transform:matrix(0.255292,-0.004085,0.003999,0.249968,0,0);}
.me9_c01150{transform:matrix(0.255712,-0.004091,0.003999,0.249968,0,0);-ms-transform:matrix(0.255712,-0.004091,0.003999,0.249968,0,0);-webkit-transform:matrix(0.255712,-0.004091,0.003999,0.249968,0,0);}
.mbe_c01150{transform:matrix(0.256607,-0.004106,0.003999,0.249968,0,0);-ms-transform:matrix(0.256607,-0.004106,0.003999,0.249968,0,0);-webkit-transform:matrix(0.256607,-0.004106,0.003999,0.249968,0,0);}
.m60_c01150{transform:matrix(0.257032,-0.004113,0.003999,0.249968,0,0);-ms-transform:matrix(0.257032,-0.004113,0.003999,0.249968,0,0);-webkit-transform:matrix(0.257032,-0.004113,0.003999,0.249968,0,0);}
.m45_c01150{transform:matrix(0.257727,-0.004124,0.003999,0.249968,0,0);-ms-transform:matrix(0.257727,-0.004124,0.003999,0.249968,0,0);-webkit-transform:matrix(0.257727,-0.004124,0.003999,0.249968,0,0);}
.m5d_c01150{transform:matrix(0.257827,-0.004125,0.003999,0.249968,0,0);-ms-transform:matrix(0.257827,-0.004125,0.003999,0.249968,0,0);-webkit-transform:matrix(0.257827,-0.004125,0.003999,0.249968,0,0);}
.m29_c01150{transform:matrix(0.258197,-0.004131,0.003999,0.249968,0,0);-ms-transform:matrix(0.258197,-0.004131,0.003999,0.249968,0,0);-webkit-transform:matrix(0.258197,-0.004131,0.003999,0.249968,0,0);}
.m58_c01150{transform:matrix(0.258252,-0.004132,0.003999,0.249968,0,0);-ms-transform:matrix(0.258252,-0.004132,0.003999,0.249968,0,0);-webkit-transform:matrix(0.258252,-0.004132,0.003999,0.249968,0,0);}
.m2_c01150{transform:matrix(0.258897,-0.010625,0.010252,0.249790,0,0);-ms-transform:matrix(0.258897,-0.010625,0.010252,0.249790,0,0);-webkit-transform:matrix(0.258897,-0.010625,0.010252,0.249790,0,0);}
.m23_c01150{transform:matrix(0.259092,-0.004145,0.003999,0.249968,0,0);-ms-transform:matrix(0.259092,-0.004145,0.003999,0.249968,0,0);-webkit-transform:matrix(0.259092,-0.004145,0.003999,0.249968,0,0);}
.m93_c01150{transform:matrix(0.259462,-0.004151,0.003999,0.249968,0,0);-ms-transform:matrix(0.259462,-0.004151,0.003999,0.249968,0,0);-webkit-transform:matrix(0.259462,-0.004151,0.003999,0.249968,0,0);}
.m8c_c01150{transform:matrix(0.259922,-0.004159,0.003999,0.249968,0,0);-ms-transform:matrix(0.259922,-0.004159,0.003999,0.249968,0,0);-webkit-transform:matrix(0.259922,-0.004159,0.003999,0.249968,0,0);}
.mc2_c01150{transform:matrix(0.260087,-0.004161,0.003999,0.249968,0,0);-ms-transform:matrix(0.260087,-0.004161,0.003999,0.249968,0,0);-webkit-transform:matrix(0.260087,-0.004161,0.003999,0.249968,0,0);}
.m113_c01150{transform:matrix(0.260262,-0.004164,0.003999,0.249968,0,0);-ms-transform:matrix(0.260262,-0.004164,0.003999,0.249968,0,0);-webkit-transform:matrix(0.260262,-0.004164,0.003999,0.249968,0,0);}
.m70_c01150{transform:matrix(0.260692,-0.004171,0.003999,0.249968,0,0);-ms-transform:matrix(0.260692,-0.004171,0.003999,0.249968,0,0);-webkit-transform:matrix(0.260692,-0.004171,0.003999,0.249968,0,0);}
.m116_c01150{transform:matrix(0.260757,-0.004172,0.003999,0.249968,0,0);-ms-transform:matrix(0.260757,-0.004172,0.003999,0.249968,0,0);-webkit-transform:matrix(0.260757,-0.004172,0.003999,0.249968,0,0);}
.m125_c01150{transform:matrix(0.261057,-0.004177,0.003999,0.249968,0,0);-ms-transform:matrix(0.261057,-0.004177,0.003999,0.249968,0,0);-webkit-transform:matrix(0.261057,-0.004177,0.003999,0.249968,0,0);}
.m11c_c01150{transform:matrix(0.261177,-0.004179,0.003999,0.249968,0,0);-ms-transform:matrix(0.261177,-0.004179,0.003999,0.249968,0,0);-webkit-transform:matrix(0.261177,-0.004179,0.003999,0.249968,0,0);}
.ma5_c01150{transform:matrix(0.261312,-0.004181,0.003999,0.249968,0,0);-ms-transform:matrix(0.261312,-0.004181,0.003999,0.249968,0,0);-webkit-transform:matrix(0.261312,-0.004181,0.003999,0.249968,0,0);}
.m31_c01150{transform:matrix(0.261347,-0.004182,0.003999,0.249968,0,0);-ms-transform:matrix(0.261347,-0.004182,0.003999,0.249968,0,0);-webkit-transform:matrix(0.261347,-0.004182,0.003999,0.249968,0,0);}
.m2d_c01150{transform:matrix(0.261946,-0.004191,0.003999,0.249968,0,0);-ms-transform:matrix(0.261946,-0.004191,0.003999,0.249968,0,0);-webkit-transform:matrix(0.261946,-0.004191,0.003999,0.249968,0,0);}
.m6a_c01150{transform:matrix(0.262541,-0.004201,0.003999,0.249968,0,0);-ms-transform:matrix(0.262541,-0.004201,0.003999,0.249968,0,0);-webkit-transform:matrix(0.262541,-0.004201,0.003999,0.249968,0,0);}
.mef_c01150{transform:matrix(0.262836,-0.004205,0.003999,0.249968,0,0);-ms-transform:matrix(0.262836,-0.004205,0.003999,0.249968,0,0);-webkit-transform:matrix(0.262836,-0.004205,0.003999,0.249968,0,0);}
.m65_c01150{transform:matrix(0.263016,-0.004208,0.003999,0.249968,0,0);-ms-transform:matrix(0.263016,-0.004208,0.003999,0.249968,0,0);-webkit-transform:matrix(0.263016,-0.004208,0.003999,0.249968,0,0);}
.mf2_c01150{transform:matrix(0.263121,-0.004210,0.003999,0.249968,0,0);-ms-transform:matrix(0.263121,-0.004210,0.003999,0.249968,0,0);-webkit-transform:matrix(0.263121,-0.004210,0.003999,0.249968,0,0);}
.m50_c01150{transform:matrix(0.263411,-0.004215,0.003999,0.249968,0,0);-ms-transform:matrix(0.263411,-0.004215,0.003999,0.249968,0,0);-webkit-transform:matrix(0.263411,-0.004215,0.003999,0.249968,0,0);}
.m21_c01150{transform:matrix(0.263546,-0.004217,0.003999,0.249968,0,0);-ms-transform:matrix(0.263546,-0.004217,0.003999,0.249968,0,0);-webkit-transform:matrix(0.263546,-0.004217,0.003999,0.249968,0,0);}
.mca_c01150{transform:matrix(0.263656,-0.004219,0.003999,0.249968,0,0);-ms-transform:matrix(0.263656,-0.004219,0.003999,0.249968,0,0);-webkit-transform:matrix(0.263656,-0.004219,0.003999,0.249968,0,0);}
.m26_c01150{transform:matrix(0.263726,-0.004220,0.003999,0.249968,0,0);-ms-transform:matrix(0.263726,-0.004220,0.003999,0.249968,0,0);-webkit-transform:matrix(0.263726,-0.004220,0.003999,0.249968,0,0);}
.m74_c01150{transform:matrix(0.263901,-0.004222,0.003999,0.249968,0,0);-ms-transform:matrix(0.263901,-0.004222,0.003999,0.249968,0,0);-webkit-transform:matrix(0.263901,-0.004222,0.003999,0.249968,0,0);}
.m105_c01150{transform:matrix(0.263971,-0.004224,0.003999,0.249968,0,0);-ms-transform:matrix(0.263971,-0.004224,0.003999,0.249968,0,0);-webkit-transform:matrix(0.263971,-0.004224,0.003999,0.249968,0,0);}
.mbb_c01150{transform:matrix(0.264216,-0.004227,0.003999,0.249968,0,0);-ms-transform:matrix(0.264216,-0.004227,0.003999,0.249968,0,0);-webkit-transform:matrix(0.264216,-0.004227,0.003999,0.249968,0,0);}
.mbf_c01150{transform:matrix(0.264411,-0.004231,0.003999,0.249968,0,0);-ms-transform:matrix(0.264411,-0.004231,0.003999,0.249968,0,0);-webkit-transform:matrix(0.264411,-0.004231,0.003999,0.249968,0,0);}
.mc7_c01150{transform:matrix(0.264511,-0.004232,0.003999,0.249968,0,0);-ms-transform:matrix(0.264511,-0.004232,0.003999,0.249968,0,0);-webkit-transform:matrix(0.264511,-0.004232,0.003999,0.249968,0,0);}
.m92_c01150{transform:matrix(0.264946,-0.004239,0.003999,0.249968,0,0);-ms-transform:matrix(0.264946,-0.004239,0.003999,0.249968,0,0);-webkit-transform:matrix(0.264946,-0.004239,0.003999,0.249968,0,0);}
.maa_c01150{transform:matrix(0.265096,-0.004242,0.003999,0.249968,0,0);-ms-transform:matrix(0.265096,-0.004242,0.003999,0.249968,0,0);-webkit-transform:matrix(0.265096,-0.004242,0.003999,0.249968,0,0);}
.m7b_c01150{transform:matrix(0.265171,-0.004243,0.003999,0.249968,0,0);-ms-transform:matrix(0.265171,-0.004243,0.003999,0.249968,0,0);-webkit-transform:matrix(0.265171,-0.004243,0.003999,0.249968,0,0);}
.m76_c01150{transform:matrix(0.265196,-0.004243,0.003999,0.249968,0,0);-ms-transform:matrix(0.265196,-0.004243,0.003999,0.249968,0,0);-webkit-transform:matrix(0.265196,-0.004243,0.003999,0.249968,0,0);}
.m11d_c01150{transform:matrix(0.265241,-0.004244,0.003999,0.249968,0,0);-ms-transform:matrix(0.265241,-0.004244,0.003999,0.249968,0,0);-webkit-transform:matrix(0.265241,-0.004244,0.003999,0.249968,0,0);}
.m63_c01150{transform:matrix(0.265396,-0.004246,0.003999,0.249968,0,0);-ms-transform:matrix(0.265396,-0.004246,0.003999,0.249968,0,0);-webkit-transform:matrix(0.265396,-0.004246,0.003999,0.249968,0,0);}
.m13c_c01150{transform:matrix(0.265575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265575,0.000000,0.000000,0.250000,0,0);}
.me3_c01150{transform:matrix(0.265606,-0.004250,0.003999,0.249968,0,0);-ms-transform:matrix(0.265606,-0.004250,0.003999,0.249968,0,0);-webkit-transform:matrix(0.265606,-0.004250,0.003999,0.249968,0,0);}
.me5_c01150{transform:matrix(0.265821,-0.004253,0.003999,0.249968,0,0);-ms-transform:matrix(0.265821,-0.004253,0.003999,0.249968,0,0);-webkit-transform:matrix(0.265821,-0.004253,0.003999,0.249968,0,0);}
.m67_c01150{transform:matrix(0.265891,-0.004254,0.003999,0.249968,0,0);-ms-transform:matrix(0.265891,-0.004254,0.003999,0.249968,0,0);-webkit-transform:matrix(0.265891,-0.004254,0.003999,0.249968,0,0);}
.m84_c01150{transform:matrix(0.266216,-0.004259,0.003999,0.249968,0,0);-ms-transform:matrix(0.266216,-0.004259,0.003999,0.249968,0,0);-webkit-transform:matrix(0.266216,-0.004259,0.003999,0.249968,0,0);}
.mf7_c01150{transform:matrix(0.266756,-0.004268,0.003999,0.249968,0,0);-ms-transform:matrix(0.266756,-0.004268,0.003999,0.249968,0,0);-webkit-transform:matrix(0.266756,-0.004268,0.003999,0.249968,0,0);}
.m83_c01150{transform:matrix(0.266911,-0.004271,0.003999,0.249968,0,0);-ms-transform:matrix(0.266911,-0.004271,0.003999,0.249968,0,0);-webkit-transform:matrix(0.266911,-0.004271,0.003999,0.249968,0,0);}
.mdd_c01150{transform:matrix(0.268416,-0.004295,0.003999,0.249968,0,0);-ms-transform:matrix(0.268416,-0.004295,0.003999,0.249968,0,0);-webkit-transform:matrix(0.268416,-0.004295,0.003999,0.249968,0,0);}
.m71_c01150{transform:matrix(0.268586,-0.004297,0.003999,0.249968,0,0);-ms-transform:matrix(0.268586,-0.004297,0.003999,0.249968,0,0);-webkit-transform:matrix(0.268586,-0.004297,0.003999,0.249968,0,0);}
.m2a_c01150{transform:matrix(0.268971,-0.004304,0.003999,0.249968,0,0);-ms-transform:matrix(0.268971,-0.004304,0.003999,0.249968,0,0);-webkit-transform:matrix(0.268971,-0.004304,0.003999,0.249968,0,0);}
.m115_c01150{transform:matrix(0.269241,-0.004308,0.003999,0.249968,0,0);-ms-transform:matrix(0.269241,-0.004308,0.003999,0.249968,0,0);-webkit-transform:matrix(0.269241,-0.004308,0.003999,0.249968,0,0);}
.md5_c01150{transform:matrix(0.269331,-0.004309,0.003999,0.249968,0,0);-ms-transform:matrix(0.269331,-0.004309,0.003999,0.249968,0,0);-webkit-transform:matrix(0.269331,-0.004309,0.003999,0.249968,0,0);}
.m95_c01150{transform:matrix(0.269476,-0.004312,0.003999,0.249968,0,0);-ms-transform:matrix(0.269476,-0.004312,0.003999,0.249968,0,0);-webkit-transform:matrix(0.269476,-0.004312,0.003999,0.249968,0,0);}
.me1_c01150{transform:matrix(0.270070,-0.004321,0.003999,0.249968,0,0);-ms-transform:matrix(0.270070,-0.004321,0.003999,0.249968,0,0);-webkit-transform:matrix(0.270070,-0.004321,0.003999,0.249968,0,0);}
.m79_c01150{transform:matrix(0.270110,-0.004322,0.003999,0.249968,0,0);-ms-transform:matrix(0.270110,-0.004322,0.003999,0.249968,0,0);-webkit-transform:matrix(0.270110,-0.004322,0.003999,0.249968,0,0);}
.m8f_c01150{transform:matrix(0.270235,-0.004324,0.003999,0.249968,0,0);-ms-transform:matrix(0.270235,-0.004324,0.003999,0.249968,0,0);-webkit-transform:matrix(0.270235,-0.004324,0.003999,0.249968,0,0);}
.md0_c01150{transform:matrix(0.270400,-0.004326,0.003999,0.249968,0,0);-ms-transform:matrix(0.270400,-0.004326,0.003999,0.249968,0,0);-webkit-transform:matrix(0.270400,-0.004326,0.003999,0.249968,0,0);}
.me2_c01150{transform:matrix(0.270430,-0.004327,0.003999,0.249968,0,0);-ms-transform:matrix(0.270430,-0.004327,0.003999,0.249968,0,0);-webkit-transform:matrix(0.270430,-0.004327,0.003999,0.249968,0,0);}
.md7_c01150{transform:matrix(0.270740,-0.004332,0.003999,0.249968,0,0);-ms-transform:matrix(0.270740,-0.004332,0.003999,0.249968,0,0);-webkit-transform:matrix(0.270740,-0.004332,0.003999,0.249968,0,0);}
.m77_c01150{transform:matrix(0.270975,-0.004336,0.003999,0.249968,0,0);-ms-transform:matrix(0.270975,-0.004336,0.003999,0.249968,0,0);-webkit-transform:matrix(0.270975,-0.004336,0.003999,0.249968,0,0);}
.m6e_c01150{transform:matrix(0.271160,-0.004339,0.003999,0.249968,0,0);-ms-transform:matrix(0.271160,-0.004339,0.003999,0.249968,0,0);-webkit-transform:matrix(0.271160,-0.004339,0.003999,0.249968,0,0);}
.m11b_c01150{transform:matrix(0.271545,-0.004345,0.003999,0.249968,0,0);-ms-transform:matrix(0.271545,-0.004345,0.003999,0.249968,0,0);-webkit-transform:matrix(0.271545,-0.004345,0.003999,0.249968,0,0);}
.mbd_c01150{transform:matrix(0.271565,-0.004345,0.003999,0.249968,0,0);-ms-transform:matrix(0.271565,-0.004345,0.003999,0.249968,0,0);-webkit-transform:matrix(0.271565,-0.004345,0.003999,0.249968,0,0);}
.m108_c01150{transform:matrix(0.272135,-0.004354,0.003999,0.249968,0,0);-ms-transform:matrix(0.272135,-0.004354,0.003999,0.249968,0,0);-webkit-transform:matrix(0.272135,-0.004354,0.003999,0.249968,0,0);}
.m11a_c01150{transform:matrix(0.272820,-0.004365,0.003999,0.249968,0,0);-ms-transform:matrix(0.272820,-0.004365,0.003999,0.249968,0,0);-webkit-transform:matrix(0.272820,-0.004365,0.003999,0.249968,0,0);}
.mde_c01150{transform:matrix(0.273340,-0.004373,0.003999,0.249968,0,0);-ms-transform:matrix(0.273340,-0.004373,0.003999,0.249968,0,0);-webkit-transform:matrix(0.273340,-0.004373,0.003999,0.249968,0,0);}
.m10b_c01150{transform:matrix(0.273410,-0.004375,0.003999,0.249968,0,0);-ms-transform:matrix(0.273410,-0.004375,0.003999,0.249968,0,0);-webkit-transform:matrix(0.273410,-0.004375,0.003999,0.249968,0,0);}
.m117_c01150{transform:matrix(0.273560,-0.004377,0.003999,0.249968,0,0);-ms-transform:matrix(0.273560,-0.004377,0.003999,0.249968,0,0);-webkit-transform:matrix(0.273560,-0.004377,0.003999,0.249968,0,0);}
.mdf_c01150{transform:matrix(0.273690,-0.004379,0.003999,0.249968,0,0);-ms-transform:matrix(0.273690,-0.004379,0.003999,0.249968,0,0);-webkit-transform:matrix(0.273690,-0.004379,0.003999,0.249968,0,0);}
.mc6_c01150{transform:matrix(0.273750,-0.004380,0.003999,0.249968,0,0);-ms-transform:matrix(0.273750,-0.004380,0.003999,0.249968,0,0);-webkit-transform:matrix(0.273750,-0.004380,0.003999,0.249968,0,0);}
.meb_c01150{transform:matrix(0.274045,-0.004385,0.003999,0.249968,0,0);-ms-transform:matrix(0.274045,-0.004385,0.003999,0.249968,0,0);-webkit-transform:matrix(0.274045,-0.004385,0.003999,0.249968,0,0);}
.mcd_c01150{transform:matrix(0.274330,-0.004389,0.003999,0.249968,0,0);-ms-transform:matrix(0.274330,-0.004389,0.003999,0.249968,0,0);-webkit-transform:matrix(0.274330,-0.004389,0.003999,0.249968,0,0);}
.mf0_c01150{transform:matrix(0.274365,-0.004390,0.003999,0.249968,0,0);-ms-transform:matrix(0.274365,-0.004390,0.003999,0.249968,0,0);-webkit-transform:matrix(0.274365,-0.004390,0.003999,0.249968,0,0);}
.m7d_c01150{transform:matrix(0.274375,-0.004390,0.003999,0.249968,0,0);-ms-transform:matrix(0.274375,-0.004390,0.003999,0.249968,0,0);-webkit-transform:matrix(0.274375,-0.004390,0.003999,0.249968,0,0);}
.md3_c01150{transform:matrix(0.274865,-0.004398,0.003999,0.249968,0,0);-ms-transform:matrix(0.274865,-0.004398,0.003999,0.249968,0,0);-webkit-transform:matrix(0.274865,-0.004398,0.003999,0.249968,0,0);}
.me7_c01150{transform:matrix(0.275635,-0.004410,0.003999,0.249968,0,0);-ms-transform:matrix(0.275635,-0.004410,0.003999,0.249968,0,0);-webkit-transform:matrix(0.275635,-0.004410,0.003999,0.249968,0,0);}
.m61_c01150{transform:matrix(0.275680,-0.004411,0.003999,0.249968,0,0);-ms-transform:matrix(0.275680,-0.004411,0.003999,0.249968,0,0);-webkit-transform:matrix(0.275680,-0.004411,0.003999,0.249968,0,0);}
.m91_c01150{transform:matrix(0.276050,-0.004417,0.003999,0.249968,0,0);-ms-transform:matrix(0.276050,-0.004417,0.003999,0.249968,0,0);-webkit-transform:matrix(0.276050,-0.004417,0.003999,0.249968,0,0);}
.mf3_c01150{transform:matrix(0.276500,-0.004424,0.003999,0.249968,0,0);-ms-transform:matrix(0.276500,-0.004424,0.003999,0.249968,0,0);-webkit-transform:matrix(0.276500,-0.004424,0.003999,0.249968,0,0);}
.m6c_c01150{transform:matrix(0.277389,-0.004438,0.003999,0.249968,0,0);-ms-transform:matrix(0.277389,-0.004438,0.003999,0.249968,0,0);-webkit-transform:matrix(0.277389,-0.004438,0.003999,0.249968,0,0);}
.mc3_c01150{transform:matrix(0.277984,-0.004448,0.003999,0.249968,0,0);-ms-transform:matrix(0.277984,-0.004448,0.003999,0.249968,0,0);-webkit-transform:matrix(0.277984,-0.004448,0.003999,0.249968,0,0);}
.m42_c01150{transform:matrix(0.278309,-0.004453,0.003999,0.249968,0,0);-ms-transform:matrix(0.278309,-0.004453,0.003999,0.249968,0,0);-webkit-transform:matrix(0.278309,-0.004453,0.003999,0.249968,0,0);}
.m87_c01150{transform:matrix(0.279114,-0.004466,0.003999,0.249968,0,0);-ms-transform:matrix(0.279114,-0.004466,0.003999,0.249968,0,0);-webkit-transform:matrix(0.279114,-0.004466,0.003999,0.249968,0,0);}
.ma8_c01150{transform:matrix(0.279304,-0.004469,0.003999,0.249968,0,0);-ms-transform:matrix(0.279304,-0.004469,0.003999,0.249968,0,0);-webkit-transform:matrix(0.279304,-0.004469,0.003999,0.249968,0,0);}
.m118_c01150{transform:matrix(0.279499,-0.004472,0.003999,0.249968,0,0);-ms-transform:matrix(0.279499,-0.004472,0.003999,0.249968,0,0);-webkit-transform:matrix(0.279499,-0.004472,0.003999,0.249968,0,0);}
.mcb_c01150{transform:matrix(0.279789,-0.004477,0.003999,0.249968,0,0);-ms-transform:matrix(0.279789,-0.004477,0.003999,0.249968,0,0);-webkit-transform:matrix(0.279789,-0.004477,0.003999,0.249968,0,0);}
.m88_c01150{transform:matrix(0.280094,-0.004482,0.003999,0.249968,0,0);-ms-transform:matrix(0.280094,-0.004482,0.003999,0.249968,0,0);-webkit-transform:matrix(0.280094,-0.004482,0.003999,0.249968,0,0);}
.m8d_c01150{transform:matrix(0.280299,-0.004485,0.003999,0.249968,0,0);-ms-transform:matrix(0.280299,-0.004485,0.003999,0.249968,0,0);-webkit-transform:matrix(0.280299,-0.004485,0.003999,0.249968,0,0);}
.mea_c01150{transform:matrix(0.280829,-0.004493,0.003999,0.249968,0,0);-ms-transform:matrix(0.280829,-0.004493,0.003999,0.249968,0,0);-webkit-transform:matrix(0.280829,-0.004493,0.003999,0.249968,0,0);}
.m80_c01150{transform:matrix(0.282044,-0.004513,0.003999,0.249968,0,0);-ms-transform:matrix(0.282044,-0.004513,0.003999,0.249968,0,0);-webkit-transform:matrix(0.282044,-0.004513,0.003999,0.249968,0,0);}
.md9_c01150{transform:matrix(0.282389,-0.004518,0.003999,0.249968,0,0);-ms-transform:matrix(0.282389,-0.004518,0.003999,0.249968,0,0);-webkit-transform:matrix(0.282389,-0.004518,0.003999,0.249968,0,0);}
.m8a_c01150{transform:matrix(0.284404,-0.004550,0.003999,0.249968,0,0);-ms-transform:matrix(0.284404,-0.004550,0.003999,0.249968,0,0);-webkit-transform:matrix(0.284404,-0.004550,0.003999,0.249968,0,0);}
.m6f_c01150{transform:matrix(0.286538,-0.004585,0.003999,0.249968,0,0);-ms-transform:matrix(0.286538,-0.004585,0.003999,0.249968,0,0);-webkit-transform:matrix(0.286538,-0.004585,0.003999,0.249968,0,0);}
.m12_c01150{transform:matrix(0.288483,-0.005193,0.004499,0.249960,0,0);-ms-transform:matrix(0.288483,-0.005193,0.004499,0.249960,0,0);-webkit-transform:matrix(0.288483,-0.005193,0.004499,0.249960,0,0);}
.ma7_c01150{transform:matrix(0.289683,-0.004635,0.003999,0.249968,0,0);-ms-transform:matrix(0.289683,-0.004635,0.003999,0.249968,0,0);-webkit-transform:matrix(0.289683,-0.004635,0.003999,0.249968,0,0);}
.mac_c01150{transform:matrix(0.294647,-0.004714,0.003999,0.249968,0,0);-ms-transform:matrix(0.294647,-0.004714,0.003999,0.249968,0,0);-webkit-transform:matrix(0.294647,-0.004714,0.003999,0.249968,0,0);}
.m14a_c01150{transform:matrix(0.297220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297220,0.000000,0.000000,0.250000,0,0);}
.ma3_c01150{transform:matrix(0.297527,-0.004760,0.003999,0.249968,0,0);-ms-transform:matrix(0.297527,-0.004760,0.003999,0.249968,0,0);-webkit-transform:matrix(0.297527,-0.004760,0.003999,0.249968,0,0);}
.ma4_c01150{transform:matrix(0.300921,-0.004815,0.003999,0.249968,0,0);-ms-transform:matrix(0.300921,-0.004815,0.003999,0.249968,0,0);-webkit-transform:matrix(0.300921,-0.004815,0.003999,0.249968,0,0);}
.ma9_c01150{transform:matrix(0.303031,-0.004848,0.003999,0.249968,0,0);-ms-transform:matrix(0.303031,-0.004848,0.003999,0.249968,0,0);-webkit-transform:matrix(0.303031,-0.004848,0.003999,0.249968,0,0);}
.m13_c01150{transform:matrix(0.323058,-0.005815,0.004499,0.249960,0,0);-ms-transform:matrix(0.323058,-0.005815,0.004499,0.249960,0,0);-webkit-transform:matrix(0.323058,-0.005815,0.004499,0.249960,0,0);}
.m10_c01150{transform:matrix(0.328922,-0.005921,0.004499,0.249960,0,0);-ms-transform:matrix(0.328922,-0.005921,0.004499,0.249960,0,0);-webkit-transform:matrix(0.328922,-0.005921,0.004499,0.249960,0,0);}
.m146_c01150{transform:matrix(0.338380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338380,0.000000,0.000000,0.250000,0,0);}
.m41_c01150{transform:matrix(0.340836,-0.005453,0.003999,0.249968,0,0);-ms-transform:matrix(0.340836,-0.005453,0.003999,0.249968,0,0);-webkit-transform:matrix(0.340836,-0.005453,0.003999,0.249968,0,0);}
.m144_c01150{transform:matrix(0.353555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353555,0.000000,0.000000,0.250000,0,0);}
.m11_c01150{transform:matrix(0.356487,-0.006417,0.004499,0.249960,0,0);-ms-transform:matrix(0.356487,-0.006417,0.004499,0.249960,0,0);-webkit-transform:matrix(0.356487,-0.006417,0.004499,0.249960,0,0);}
.m106_c01150{transform:matrix(0.358309,-0.005733,0.003999,0.249968,0,0);-ms-transform:matrix(0.358309,-0.005733,0.003999,0.249968,0,0);-webkit-transform:matrix(0.358309,-0.005733,0.003999,0.249968,0,0);}
.m148_c01150{transform:matrix(0.360390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360390,0.000000,0.000000,0.250000,0,0);}
.mf_c01150{transform:matrix(0.370075,-0.006661,0.004499,0.249960,0,0);-ms-transform:matrix(0.370075,-0.006661,0.004499,0.249960,0,0);-webkit-transform:matrix(0.370075,-0.006661,0.004499,0.249960,0,0);}
.m14_c01150{transform:matrix(0.370415,-0.006667,0.004499,0.249960,0,0);-ms-transform:matrix(0.370415,-0.006667,0.004499,0.249960,0,0);-webkit-transform:matrix(0.370415,-0.006667,0.004499,0.249960,0,0);}
.m107_c01150{transform:matrix(0.370598,-0.005930,0.003999,0.249968,0,0);-ms-transform:matrix(0.370598,-0.005930,0.003999,0.249968,0,0);-webkit-transform:matrix(0.370598,-0.005930,0.003999,0.249968,0,0);}
.m145_c01150{transform:matrix(0.379475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379475,0.000000,0.000000,0.250000,0,0);}
.m14b_c01150{transform:matrix(0.407650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407650,0.000000,0.000000,0.250000,0,0);}
.mc_c01150{transform:matrix(0.479217,-0.008626,0.004499,0.249960,0,0);-ms-transform:matrix(0.479217,-0.008626,0.004499,0.249960,0,0);-webkit-transform:matrix(0.479217,-0.008626,0.004499,0.249960,0,0);}
.md_c01150{transform:matrix(0.528329,-0.009510,0.004499,0.249960,0,0);-ms-transform:matrix(0.528329,-0.009510,0.004499,0.249960,0,0);-webkit-transform:matrix(0.528329,-0.009510,0.004499,0.249960,0,0);}
.m149_c01150{transform:matrix(0.533635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533635,0.000000,0.000000,0.250000,0,0);}
.m7_c01150{transform:matrix(0.603642,-0.010866,0.004499,0.249960,0,0);-ms-transform:matrix(0.603642,-0.010866,0.004499,0.249960,0,0);-webkit-transform:matrix(0.603642,-0.010866,0.004499,0.249960,0,0);}
.m15_c01150{transform:matrix(0.618365,-0.011131,0.004499,0.249960,0,0);-ms-transform:matrix(0.618365,-0.011131,0.004499,0.249960,0,0);-webkit-transform:matrix(0.618365,-0.011131,0.004499,0.249960,0,0);}
.mb_c01150{transform:matrix(0.647725,-0.011659,0.004499,0.249960,0,0);-ms-transform:matrix(0.647725,-0.011659,0.004499,0.249960,0,0);-webkit-transform:matrix(0.647725,-0.011659,0.004499,0.249960,0,0);}
.m14d_c01150{transform:matrix(0.660985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.660985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.660985,0.000000,0.000000,0.250000,0,0);}
.m8_c01150{transform:matrix(0.784223,-0.014116,0.004499,0.249960,0,0);-ms-transform:matrix(0.784223,-0.014116,0.004499,0.249960,0,0);-webkit-transform:matrix(0.784223,-0.014116,0.004499,0.249960,0,0);}
.me_c01150{transform:matrix(0.935398,-0.016837,0.004499,0.249960,0,0);-ms-transform:matrix(0.935398,-0.016837,0.004499,0.249960,0,0);-webkit-transform:matrix(0.935398,-0.016837,0.004499,0.249960,0,0);}
.m9_c01150{transform:matrix(1.211234,-0.021802,0.004499,0.249960,0,0);-ms-transform:matrix(1.211234,-0.021802,0.004499,0.249960,0,0);-webkit-transform:matrix(1.211234,-0.021802,0.004499,0.249960,0,0);}
.ma_c01150{transform:matrix(1.652612,-0.029747,0.004499,0.249960,0,0);-ms-transform:matrix(1.652612,-0.029747,0.004499,0.249960,0,0);-webkit-transform:matrix(1.652612,-0.029747,0.004499,0.249960,0,0);}
.v0_c01150{vertical-align:0.000000px;}
.ls0_c01150{letter-spacing:0.000000px;}
.sc__c01150{text-shadow:none;}
.sc0_c01150{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__c01150{-webkit-text-stroke:0px transparent;}
.sc0_c01150{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01150{word-spacing:0.000000px;}
.fc0_c01150{color:transparent;}
.fs0_c01150{font-size:18.000000px;}
.fs4_c01150{font-size:18.002916px;}
.fsc_c01150{font-size:24.000000px;}
.fs3_c01150{font-size:24.003888px;}
.fs9_c01150{font-size:66.008447px;}
.fs1_c01150{font-size:71.988551px;}
.fs6_c01150{font-size:72.009215px;}
.fsb_c01150{font-size:78.000000px;}
.fs2_c01150{font-size:78.008775px;}
.fs7_c01150{font-size:78.009983px;}
.fs5_c01150{font-size:84.010751px;}
.fs8_c01150{font-size:90.011519px;}
.fsa_c01150{font-size:96.012287px;}
.y0_c01150{bottom:0.000000px;}
.y14e_c01150{bottom:39.960000px;}
.y143_c01150{bottom:73.860624px;}
.y144_c01150{bottom:74.085804px;}
.y145_c01150{bottom:74.468412px;}
.y146_c01150{bottom:74.631108px;}
.y147_c01150{bottom:75.073056px;}
.y148_c01150{bottom:75.569148px;}
.y149_c01150{bottom:75.960852px;}
.y14a_c01150{bottom:76.132944px;}
.y14b_c01150{bottom:76.634352px;}
.y14c_c01150{bottom:76.798536px;}
.y14d_c01150{bottom:77.187936px;}
.y13a_c01150{bottom:109.503612px;}
.y13b_c01150{bottom:110.124624px;}
.y13c_c01150{bottom:110.830740px;}
.y13d_c01150{bottom:111.190008px;}
.y13e_c01150{bottom:111.891216px;}
.y13f_c01150{bottom:112.954344px;}
.y140_c01150{bottom:113.486160px;}
.y141_c01150{bottom:114.205572px;}
.y142_c01150{bottom:114.476028px;}
.y130_c01150{bottom:148.120548px;}
.y131_c01150{bottom:148.438716px;}
.y132_c01150{bottom:149.102844px;}
.y133_c01150{bottom:149.994300px;}
.y134_c01150{bottom:150.320136px;}
.y135_c01150{bottom:150.989904px;}
.y136_c01150{bottom:151.875816px;}
.y137_c01150{bottom:152.761680px;}
.y138_c01150{bottom:153.550452px;}
.y139_c01150{bottom:154.659324px;}
.y125_c01150{bottom:183.763704px;}
.y126_c01150{bottom:184.053168px;}
.y127_c01150{bottom:184.647036px;}
.y128_c01150{bottom:185.336868px;}
.y129_c01150{bottom:185.948676px;}
.y12a_c01150{bottom:187.044756px;}
.y12b_c01150{bottom:187.431564px;}
.y12c_c01150{bottom:188.136888px;}
.y12d_c01150{bottom:188.831832px;}
.y12e_c01150{bottom:189.045924px;}
.y12f_c01150{bottom:189.340572px;}
.y11d_c01150{bottom:218.328324px;}
.y11e_c01150{bottom:219.214284px;}
.y11f_c01150{bottom:219.557808px;}
.y120_c01150{bottom:220.419744px;}
.y121_c01150{bottom:221.315508px;}
.y122_c01150{bottom:222.425004px;}
.y123_c01150{bottom:223.526040px;}
.y124_c01150{bottom:223.869060px;}
.y111_c01150{bottom:253.432944px;}
.y112_c01150{bottom:253.828464px;}
.y113_c01150{bottom:254.476656px;}
.y114_c01150{bottom:254.868876px;}
.y115_c01150{bottom:255.539760px;}
.y116_c01150{bottom:256.605636px;}
.y117_c01150{bottom:257.529504px;}
.y118_c01150{bottom:257.797824px;}
.y119_c01150{bottom:259.126596px;}
.y11a_c01150{bottom:259.531548px;}
.y11b_c01150{bottom:259.939176px;}
.y11c_c01150{bottom:260.455152px;}
.y106_c01150{bottom:289.347516px;}
.y107_c01150{bottom:290.015676px;}
.y108_c01150{bottom:290.534160px;}
.y109_c01150{bottom:291.331500px;}
.y10a_c01150{bottom:291.860664px;}
.y10b_c01150{bottom:292.524288px;}
.y10c_c01150{bottom:293.719200px;}
.y10d_c01150{bottom:294.127092px;}
.y10e_c01150{bottom:294.798696px;}
.y10f_c01150{bottom:295.850904px;}
.y110_c01150{bottom:296.786760px;}
.yfa_c01150{bottom:327.422148px;}
.yfb_c01150{bottom:328.024932px;}
.yfc_c01150{bottom:328.560864px;}
.yfd_c01150{bottom:329.353848px;}
.yfe_c01150{bottom:329.705868px;}
.yff_c01150{bottom:330.238932px;}
.y100_c01150{bottom:331.031964px;}
.y101_c01150{bottom:331.306104px;}
.y102_c01150{bottom:331.573308px;}
.y103_c01150{bottom:332.016288px;}
.y104_c01150{bottom:332.186952px;}
.y105_c01150{bottom:332.731092px;}
.yef_c01150{bottom:360.097296px;}
.yf0_c01150{bottom:360.457572px;}
.yf1_c01150{bottom:361.304916px;}
.yf2_c01150{bottom:361.904628px;}
.yf3_c01150{bottom:362.263800px;}
.yf4_c01150{bottom:363.237636px;}
.yf5_c01150{bottom:363.611532px;}
.yf6_c01150{bottom:364.211196px;}
.yf7_c01150{bottom:365.447244px;}
.yf8_c01150{bottom:366.658752px;}
.yf9_c01150{bottom:367.167024px;}
.ye3_c01150{bottom:397.634292px;}
.ye4_c01150{bottom:398.018280px;}
.ye5_c01150{bottom:398.413968px;}
.ye6_c01150{bottom:398.812020px;}
.y1_c01150{bottom:399.060000px;}
.ye7_c01150{bottom:399.397068px;}
.ye8_c01150{bottom:400.103616px;}
.ye9_c01150{bottom:400.406808px;}
.yea_c01150{bottom:401.303292px;}
.yeb_c01150{bottom:401.607360px;}
.yec_c01150{bottom:401.899644px;}
.yed_c01150{bottom:402.494520px;}
.yee_c01150{bottom:403.111776px;}
.yd8_c01150{bottom:432.200316px;}
.yd9_c01150{bottom:433.193700px;}
.yda_c01150{bottom:433.633764px;}
.ydb_c01150{bottom:434.187840px;}
.ydc_c01150{bottom:434.522520px;}
.ydd_c01150{bottom:435.514080px;}
.yde_c01150{bottom:435.965520px;}
.ydf_c01150{bottom:436.731852px;}
.ye0_c01150{bottom:437.072124px;}
.ye1_c01150{bottom:437.843592px;}
.ye2_c01150{bottom:438.062016px;}
.ycd_c01150{bottom:469.734516px;}
.yce_c01150{bottom:470.074188px;}
.ycf_c01150{bottom:470.784516px;}
.yd0_c01150{bottom:471.396144px;}
.yd1_c01150{bottom:471.759336px;}
.yd2_c01150{bottom:472.030224px;}
.yd3_c01150{bottom:472.556940px;}
.yd4_c01150{bottom:473.532960px;}
.yd5_c01150{bottom:473.884332px;}
.yd6_c01150{bottom:474.608412px;}
.yd7_c01150{bottom:474.964380px;}
.yc2_c01150{bottom:505.106376px;}
.yc3_c01150{bottom:505.763544px;}
.yc4_c01150{bottom:506.104080px;}
.yc5_c01150{bottom:506.987220px;}
.yc6_c01150{bottom:507.535704px;}
.yc7_c01150{bottom:508.430076px;}
.yc8_c01150{bottom:508.978608px;}
.yc9_c01150{bottom:509.310348px;}
.yca_c01150{bottom:509.974116px;}
.ycb_c01150{bottom:510.871308px;}
.ycc_c01150{bottom:511.317156px;}
.yb4_c01150{bottom:540.481476px;}
.yb5_c01150{bottom:541.686084px;}
.yb6_c01150{bottom:541.942512px;}
.yb7_c01150{bottom:542.334684px;}
.yb8_c01150{bottom:543.655476px;}
.yb9_c01150{bottom:543.941784px;}
.yba_c01150{bottom:544.330680px;}
.ybb_c01150{bottom:544.736352px;}
.ybc_c01150{bottom:545.128572px;}
.ybd_c01150{bottom:545.938476px;}
.ybe_c01150{bottom:546.340608px;}
.ybf_c01150{bottom:546.872184px;}
.yc0_c01150{bottom:547.529496px;}
.yc1_c01150{bottom:547.951512px;}
.yaa_c01150{bottom:576.395520px;}
.yab_c01150{bottom:577.578324px;}
.yac_c01150{bottom:578.896416px;}
.yad_c01150{bottom:579.431292px;}
.yae_c01150{bottom:579.833472px;}
.yaf_c01150{bottom:580.627488px;}
.yb0_c01150{bottom:581.175072px;}
.yb1_c01150{bottom:582.626808px;}
.yb2_c01150{bottom:583.168872px;}
.yb3_c01150{bottom:583.553856px;}
.y152_c01150{bottom:604.260000px;}
.y9d_c01150{bottom:612.039216px;}
.y9e_c01150{bottom:612.288360px;}
.y9f_c01150{bottom:612.773244px;}
.ya0_c01150{bottom:613.859952px;}
.ya1_c01150{bottom:614.228160px;}
.ya2_c01150{bottom:614.584560px;}
.ya3_c01150{bottom:615.332532px;}
.ya4_c01150{bottom:615.694620px;}
.ya5_c01150{bottom:616.288260px;}
.ya6_c01150{bottom:617.152764px;}
.ya7_c01150{bottom:617.654460px;}
.ya8_c01150{bottom:618.267288px;}
.ya9_c01150{bottom:619.117452px;}
.y150_c01150{bottom:639.360000px;}
.y91_c01150{bottom:648.226440px;}
.y151_c01150{bottom:648.270000px;}
.y92_c01150{bottom:648.547212px;}
.y93_c01150{bottom:648.873696px;}
.y94_c01150{bottom:649.425144px;}
.y95_c01150{bottom:650.537028px;}
.y96_c01150{bottom:650.875056px;}
.y97_c01150{bottom:651.643704px;}
.y98_c01150{bottom:651.862200px;}
.y99_c01150{bottom:652.760664px;}
.y9a_c01150{bottom:653.522568px;}
.y9b_c01150{bottom:653.975760px;}
.y9c_c01150{bottom:654.301596px;}
.y14f_c01150{bottom:667.170000px;}
.y88_c01150{bottom:682.791444px;}
.y89_c01150{bottom:683.721000px;}
.y8a_c01150{bottom:684.650388px;}
.y8b_c01150{bottom:685.048320px;}
.y8c_c01150{bottom:685.576980px;}
.y8d_c01150{bottom:686.232096px;}
.y8e_c01150{bottom:687.444468px;}
.y8f_c01150{bottom:688.909656px;}
.y90_c01150{bottom:689.311740px;}
.y7c_c01150{bottom:718.165512px;}
.y7d_c01150{bottom:719.432460px;}
.y7e_c01150{bottom:719.721012px;}
.y7f_c01150{bottom:720.595716px;}
.y80_c01150{bottom:721.171296px;}
.y81_c01150{bottom:722.163636px;}
.y82_c01150{bottom:722.472612px;}
.y83_c01150{bottom:723.768168px;}
.y84_c01150{bottom:724.193460px;}
.y85_c01150{bottom:724.621500px;}
.y86_c01150{bottom:725.786496px;}
.y87_c01150{bottom:726.219024px;}
.y71_c01150{bottom:754.888260px;}
.y72_c01150{bottom:756.190992px;}
.y73_c01150{bottom:756.723240px;}
.y74_c01150{bottom:757.791036px;}
.y75_c01150{bottom:758.716416px;}
.y76_c01150{bottom:758.982756px;}
.y77_c01150{bottom:759.795600px;}
.y78_c01150{bottom:760.450668px;}
.y79_c01150{bottom:760.875756px;}
.y7a_c01150{bottom:761.791740px;}
.y7b_c01150{bottom:762.320904px;}
.y65_c01150{bottom:789.182904px;}
.y66_c01150{bottom:790.491816px;}
.y67_c01150{bottom:791.987160px;}
.y68_c01150{bottom:792.476952px;}
.y69_c01150{bottom:793.630812px;}
.y6a_c01150{bottom:793.962960px;}
.y6b_c01150{bottom:794.979660px;}
.y6c_c01150{bottom:795.483324px;}
.y6d_c01150{bottom:796.960236px;}
.y6e_c01150{bottom:797.312100px;}
.y6f_c01150{bottom:797.806284px;}
.y70_c01150{bottom:798.807132px;}
.y5a_c01150{bottom:825.369108px;}
.y5b_c01150{bottom:826.203624px;}
.y5c_c01150{bottom:827.025372px;}
.y5d_c01150{bottom:828.329700px;}
.y5e_c01150{bottom:829.984860px;}
.y5f_c01150{bottom:830.672808px;}
.y60_c01150{bottom:831.171888px;}
.y61_c01150{bottom:831.661872px;}
.y62_c01150{bottom:832.820748px;}
.y63_c01150{bottom:834.342948px;}
.y64_c01150{bottom:834.861528px;}
.y50_c01150{bottom:861.284232px;}
.y51_c01150{bottom:863.211120px;}
.y52_c01150{bottom:863.733216px;}
.y53_c01150{bottom:864.429408px;}
.y54_c01150{bottom:865.509552px;}
.y55_c01150{bottom:866.386872px;}
.y56_c01150{bottom:868.865808px;}
.y57_c01150{bottom:869.949984px;}
.y58_c01150{bottom:870.482304px;}
.y59_c01150{bottom:871.035528px;}
.y45_c01150{bottom:897.466260px;}
.y46_c01150{bottom:897.961980px;}
.y47_c01150{bottom:899.622228px;}
.y48_c01150{bottom:900.115236px;}
.y49_c01150{bottom:901.115628px;}
.y4a_c01150{bottom:901.779120px;}
.y4b_c01150{bottom:903.757104px;}
.y4c_c01150{bottom:904.438560px;}
.y4d_c01150{bottom:905.766348px;}
.y4e_c01150{bottom:906.272832px;}
.y4f_c01150{bottom:906.779712px;}
.y3a_c01150{bottom:932.299548px;}
.y3b_c01150{bottom:932.924016px;}
.y3c_c01150{bottom:933.381648px;}
.y3d_c01150{bottom:934.458588px;}
.y3e_c01150{bottom:935.556420px;}
.y3f_c01150{bottom:935.868444px;}
.y40_c01150{bottom:936.965412px;}
.y41_c01150{bottom:937.733400px;}
.y42_c01150{bottom:939.282192px;}
.y43_c01150{bottom:939.748224px;}
.y44_c01150{bottom:940.540692px;}
.y30_c01150{bottom:967.406472px;}
.y31_c01150{bottom:968.806656px;}
.y32_c01150{bottom:970.914816px;}
.y33_c01150{bottom:972.149544px;}
.y34_c01150{bottom:972.513336px;}
.y35_c01150{bottom:973.204728px;}
.y36_c01150{bottom:974.483352px;}
.y37_c01150{bottom:975.192096px;}
.y38_c01150{bottom:976.276272px;}
.y39_c01150{bottom:977.520552px;}
.y24_c01150{bottom:1002.779076px;}
.y25_c01150{bottom:1003.316448px;}
.y26_c01150{bottom:1004.817156px;}
.y27_c01150{bottom:1005.575220px;}
.y28_c01150{bottom:1006.714008px;}
.y29_c01150{bottom:1007.458500px;}
.y2a_c01150{bottom:1008.009612px;}
.y2b_c01150{bottom:1009.147872px;}
.y2c_c01150{bottom:1010.101956px;}
.y2d_c01150{bottom:1010.663316px;}
.y2e_c01150{bottom:1011.795396px;}
.y2f_c01150{bottom:1013.319420px;}
.y1a_c01150{bottom:1040.314500px;}
.y1b_c01150{bottom:1042.116060px;}
.y1c_c01150{bottom:1042.639116px;}
.y1d_c01150{bottom:1043.525508px;}
.y1e_c01150{bottom:1043.883540px;}
.y1f_c01150{bottom:1044.778764px;}
.y20_c01150{bottom:1046.357892px;}
.y21_c01150{bottom:1046.920668px;}
.y22_c01150{bottom:1048.691700px;}
.y23_c01150{bottom:1049.222508px;}
.yd_c01150{bottom:1099.170504px;}
.ye_c01150{bottom:1099.398582px;}
.yf_c01150{bottom:1099.730265px;}
.y10_c01150{bottom:1100.075121px;}
.y11_c01150{bottom:1100.200254px;}
.y12_c01150{bottom:1100.365623px;}
.y13_c01150{bottom:1100.543517px;}
.y14_c01150{bottom:1100.729550px;}
.y15_c01150{bottom:1100.846463px;}
.y16_c01150{bottom:1101.049071px;}
.y17_c01150{bottom:1101.207084px;}
.y18_c01150{bottom:1101.373479px;}
.y19_c01150{bottom:1101.636987px;}
.y8_c01150{bottom:1101.871500px;}
.y9_c01150{bottom:1102.333119px;}
.ya_c01150{bottom:1103.212887px;}
.yb_c01150{bottom:1104.554463px;}
.yc_c01150{bottom:1105.663488px;}
.y5_c01150{bottom:1114.293000px;}
.y6_c01150{bottom:1115.670517px;}
.y7_c01150{bottom:1117.132702px;}
.y2_c01150{bottom:1188.012000px;}
.y3_c01150{bottom:1188.977304px;}
.y4_c01150{bottom:1190.755515px;}
.h2_c01150{height:18.000000px;}
.h6_c01150{height:18.002916px;}
.he_c01150{height:24.000000px;}
.h5_c01150{height:24.003888px;}
.hb_c01150{height:66.008447px;}
.h3_c01150{height:71.988551px;}
.h8_c01150{height:72.009215px;}
.hd_c01150{height:78.000000px;}
.h4_c01150{height:78.008775px;}
.h9_c01150{height:78.009983px;}
.h7_c01150{height:84.010751px;}
.ha_c01150{height:90.011519px;}
.hc_c01150{height:96.012287px;}
.h1_c01150{height:1258.500000px;}
.h0_c01150{height:1258.740000px;}
.w0_c01150{width:920.100000px;}
.w1_c01150{width:920.250000px;}
.x0_c01150{left:0.000000px;}
.x30_c01150{left:177.258060px;}
.x21_c01150{left:178.413972px;}
.x3f_c01150{left:180.593868px;}
.x50_c01150{left:182.164596px;}
.x61_c01150{left:183.213852px;}
.x73_c01150{left:184.515924px;}
.x89_c01150{left:185.920284px;}
.xa0_c01150{left:188.533092px;}
.xad_c01150{left:190.172820px;}
.xb6_c01150{left:192.037404px;}
.xca_c01150{left:194.214408px;}
.xd9_c01150{left:195.530244px;}
.xe0_c01150{left:197.100000px;}
.x7f_c01150{left:206.403888px;}
.x22_c01150{left:210.030468px;}
.x38_c01150{left:211.968204px;}
.x74_c01150{left:216.661020px;}
.x31_c01150{left:221.819976px;}
.xb3_c01150{left:223.731084px;}
.xc1_c01150{left:225.899268px;}
.xa1_c01150{left:230.955516px;}
.xae_c01150{left:232.833096px;}
.x47_c01150{left:236.193744px;}
.xda_c01150{left:240.643188px;}
.xbb_c01150{left:246.682740px;}
.x75_c01150{left:249.350664px;}
.x80_c01150{left:250.493916px;}
.x18_c01150{left:252.421500px;}
.x32_c01150{left:254.548032px;}
.x6d_c01150{left:260.190024px;}
.x2b_c01150{left:265.672224px;}
.xb7_c01150{left:267.408552px;}
.x51_c01150{left:269.410488px;}
.xd3_c01150{left:272.032248px;}
.xaf_c01150{left:276.881040px;}
.x62_c01150{left:280.684032px;}
.x8a_c01150{left:284.508096px;}
.x90_c01150{left:285.817560px;}
.xa8_c01150{left:287.716980px;}
.xbc_c01150{left:289.872000px;}
.x48_c01150{left:291.022632px;}
.xcb_c01150{left:292.277376px;}
.x23_c01150{left:298.292052px;}
.x40_c01150{left:301.024368px;}
.x63_c01150{left:302.844588px;}
.x76_c01150{left:304.446444px;}
.x91_c01150{left:307.189428px;}
.xc2_c01150{left:312.586812px;}
.xc7_c01150{left:315.804468px;}
.xdb_c01150{left:317.069628px;}
.xa2_c01150{left:319.799892px;}
.xb0_c01150{left:321.170508px;}
.x39_c01150{left:322.672980px;}
.x33_c01150{left:331.515504px;}
.x41_c01150{left:333.655368px;}
.x5a_c01150{left:334.993932px;}
.x6e_c01150{left:337.687992px;}
.x92_c01150{left:339.858516px;}
.x24_c01150{left:342.857832px;}
.x81_c01150{left:349.264812px;}
.x4_c01150{left:350.949000px;}
.x7_c01150{left:352.413000px;}
.x3a_c01150{left:355.549008px;}
.xd4_c01150{left:360.332052px;}
.x19_c01150{left:365.019000px;}
.x52_c01150{left:369.058572px;}
.x64_c01150{left:370.079304px;}
.xc_c01150{left:373.996593px;}
.x8_c01150{left:378.058500px;}
.x82_c01150{left:382.780500px;}
.xa9_c01150{left:387.079008px;}
.xd_c01150{left:389.168403px;}
.x1_c01150{left:393.418500px;}
.xa3_c01150{left:396.192660px;}
.x1a_c01150{left:397.710000px;}
.xbd_c01150{left:400.348056px;}
.x53_c01150{left:401.733600px;}
.xd5_c01150{left:405.198288px;}
.x25_c01150{left:409.812252px;}
.xe_c01150{left:411.263091px;}
.x65_c01150{left:414.398940px;}
.x77_c01150{left:415.668624px;}
.x2_c01150{left:416.938956px;}
.xaa_c01150{left:420.562224px;}
.x3b_c01150{left:422.199564px;}
.x5b_c01150{left:423.955620px;}
.x9_c01150{left:426.934500px;}
.x9b_c01150{left:429.470592px;}
.x34_c01150{left:432.197220px;}
.xf_c01150{left:434.256333px;}
.xcc_c01150{left:437.021100px;}
.x8b_c01150{left:438.953484px;}
.xa4_c01150{left:441.585468px;}
.x5_c01150{left:442.783500px;}
.x42_c01150{left:444.676368px;}
.x78_c01150{left:449.454864px;}
.x10_c01150{left:453.646386px;}
.xbe_c01150{left:455.703108px;}
.xc3_c01150{left:457.331076px;}
.x3_c01150{left:460.266585px;}
.x11_c01150{left:465.530034px;}
.x6f_c01150{left:469.459416px;}
.x8c_c01150{left:472.435620px;}
.x93_c01150{left:473.779584px;}
.x1b_c01150{left:475.486500px;}
.x12_c01150{left:477.949209px;}
.xcf_c01150{left:481.574700px;}
.x83_c01150{left:483.218040px;}
.x13_c01150{left:485.778141px;}
.x49_c01150{left:488.368800px;}
.x66_c01150{left:490.767612px;}
.xd6_c01150{left:492.910020px;}
.x2c_c01150{left:497.339724px;}
.x14_c01150{left:499.284870px;}
.xa_c01150{left:501.466500px;}
.x94_c01150{left:506.150148px;}
.x15_c01150{left:509.813937px;}
.x67_c01150{left:514.579764px;}
.x84_c01150{left:516.163680px;}
.x9c_c01150{left:518.846160px;}
.x16_c01150{left:520.892031px;}
.x5c_c01150{left:523.194456px;}
.x79_c01150{left:526.377756px;}
.x1c_c01150{left:531.438000px;}
.x4a_c01150{left:534.272544px;}
.xdc_c01150{left:537.404412px;}
.x17_c01150{left:538.448976px;}
.x6_c01150{left:540.262500px;}
.xb8_c01150{left:544.193976px;}
.x7a_c01150{left:548.285868px;}
.x26_c01150{left:552.926448px;}
.xbf_c01150{left:555.328992px;}
.xc4_c01150{left:556.692936px;}
.xcd_c01150{left:558.789732px;}
.xe1_c01150{left:561.330000px;}
.xb_c01150{left:563.079000px;}
.x35_c01150{left:565.354968px;}
.x4b_c01150{left:567.528072px;}
.x54_c01150{left:568.561764px;}
.x70_c01150{left:570.457872px;}
.x95_c01150{left:572.616396px;}
.x9d_c01150{left:573.665916px;}
.x8d_c01150{left:584.230272px;}
.xc0_c01150{left:589.355676px;}
.x5d_c01150{left:590.970300px;}
.x3c_c01150{left:598.263372px;}
.x4c_c01150{left:600.215100px;}
.x55_c01150{left:602.103792px;}
.x9e_c01150{left:606.871608px;}
.x27_c01150{left:609.087060px;}
.x68_c01150{left:614.213040px;}
.xdd_c01150{left:615.712188px;}
.x2d_c01150{left:620.465724px;}
.xd7_c01150{left:625.747512px;}
.x1d_c01150{left:630.133500px;}
.xb1_c01150{left:631.945332px;}
.x7b_c01150{left:638.198508px;}
.x96_c01150{left:640.114716px;}
.x28_c01150{left:642.109032px;}
.x3d_c01150{left:643.667592px;}
.x5e_c01150{left:645.509280px;}
.x69_c01150{left:646.889100px;}
.x85_c01150{left:648.745788px;}
.xde_c01150{left:650.005212px;}
.x43_c01150{left:654.442368px;}
.xd0_c01150{left:658.702692px;}
.xe2_c01150{left:660.960000px;}
.xa5_c01150{left:663.277836px;}
.x1e_c01150{left:665.307000px;}
.xc5_c01150{left:667.404516px;}
.x97_c01150{left:673.593852px;}
.x36_c01150{left:676.033020px;}
.x4d_c01150{left:677.427324px;}
.x6a_c01150{left:679.830684px;}
.x5f_c01150{left:680.892036px;}
.x71_c01150{left:692.508672px;}
.x86_c01150{left:694.355436px;}
.x56_c01150{left:700.599876px;}
.x8e_c01150{left:705.159000px;}
.xa6_c01150{left:707.275476px;}
.x29_c01150{left:708.737976px;}
.xb9_c01150{left:711.051336px;}
.xc8_c01150{left:712.732080px;}
.x7c_c01150{left:714.324804px;}
.x98_c01150{left:717.882684px;}
.x44_c01150{left:722.203368px;}
.x57_c01150{left:724.091760px;}
.x72_c01150{left:725.984808px;}
.xb2_c01150{left:730.528872px;}
.x2e_c01150{left:732.523224px;}
.xc6_c01150{left:735.163860px;}
.xd1_c01150{left:737.539752px;}
.xc9_c01150{left:747.017868px;}
.x87_c01150{left:750.005376px;}
.xab_c01150{left:752.661096px;}
.x45_c01150{left:755.473368px;}
.x58_c01150{left:757.041288px;}
.x7d_c01150{left:759.716172px;}
.x9f_c01150{left:762.946584px;}
.x37_c01150{left:765.848376px;}
.x6b_c01150{left:769.428480px;}
.x99_c01150{left:772.655688px;}
.xac_c01150{left:774.564708px;}
.x1f_c01150{left:775.996500px;}
.x4e_c01150{left:778.941456px;}
.xce_c01150{left:781.012596px;}
.x8f_c01150{left:782.416944px;}
.xb4_c01150{left:787.506180px;}
.x46_c01150{left:790.049868px;}
.x7e_c01150{left:792.365316px;}
.x2a_c01150{left:798.363036px;}
.x3e_c01150{left:799.742088px;}
.x60_c01150{left:801.315240px;}
.x6c_c01150{left:802.650564px;}
.x9a_c01150{left:807.846444px;}
.x20_c01150{left:809.172000px;}
.x2f_c01150{left:810.290724px;}
.x4f_c01150{left:813.509508px;}
.xd8_c01150{left:815.845824px;}
.xe3_c01150{left:817.560000px;}
.x59_c01150{left:823.720344px;}
.x88_c01150{left:827.240544px;}
.xb5_c01150{left:833.714376px;}
.xa7_c01150{left:842.295756px;}
.xd2_c01150{left:848.479908px;}
.xba_c01150{left:855.806364px;}
.xdf_c01150{left:860.916816px;}
.xe4_c01150{left:898.290000px;}
.xe5_c01150{left:911.790000px;}
.xe7_c01150{left:913.140000px;}
.xe8_c01150{left:914.220000px;}
.xe6_c01150{left:915.570000px;}
.xe9_c01150{left:916.650000px;}
@media print{
.v0_c01150{vertical-align:0.000000pt;}
.ls0_c01150{letter-spacing:0.000000pt;}
.ws0_c01150{word-spacing:0.000000pt;}
.fs0_c01150{font-size:16.000000pt;}
.fs4_c01150{font-size:16.002592pt;}
.fsc_c01150{font-size:21.333333pt;}
.fs3_c01150{font-size:21.336789pt;}
.fs9_c01150{font-size:58.674176pt;}
.fs1_c01150{font-size:63.989823pt;}
.fs6_c01150{font-size:64.008191pt;}
.fsb_c01150{font-size:69.333333pt;}
.fs2_c01150{font-size:69.341133pt;}
.fs7_c01150{font-size:69.342207pt;}
.fs5_c01150{font-size:74.676223pt;}
.fs8_c01150{font-size:80.010239pt;}
.fsa_c01150{font-size:85.344255pt;}
.y0_c01150{bottom:0.000000pt;}
.y14e_c01150{bottom:35.520000pt;}
.y143_c01150{bottom:65.653888pt;}
.y144_c01150{bottom:65.854048pt;}
.y145_c01150{bottom:66.194144pt;}
.y146_c01150{bottom:66.338763pt;}
.y147_c01150{bottom:66.731605pt;}
.y148_c01150{bottom:67.172576pt;}
.y149_c01150{bottom:67.520757pt;}
.y14a_c01150{bottom:67.673728pt;}
.y14b_c01150{bottom:68.119424pt;}
.y14c_c01150{bottom:68.265365pt;}
.y14d_c01150{bottom:68.611499pt;}
.y13a_c01150{bottom:97.336544pt;}
.y13b_c01150{bottom:97.888555pt;}
.y13c_c01150{bottom:98.516213pt;}
.y13d_c01150{bottom:98.835563pt;}
.y13e_c01150{bottom:99.458859pt;}
.y13f_c01150{bottom:100.403861pt;}
.y140_c01150{bottom:100.876587pt;}
.y141_c01150{bottom:101.516064pt;}
.y142_c01150{bottom:101.756469pt;}
.y130_c01150{bottom:131.662709pt;}
.y131_c01150{bottom:131.945525pt;}
.y132_c01150{bottom:132.535861pt;}
.y133_c01150{bottom:133.328267pt;}
.y134_c01150{bottom:133.617899pt;}
.y135_c01150{bottom:134.213248pt;}
.y136_c01150{bottom:135.000725pt;}
.y137_c01150{bottom:135.788160pt;}
.y138_c01150{bottom:136.489291pt;}
.y139_c01150{bottom:137.474955pt;}
.y125_c01150{bottom:163.345515pt;}
.y126_c01150{bottom:163.602816pt;}
.y127_c01150{bottom:164.130699pt;}
.y128_c01150{bottom:164.743883pt;}
.y129_c01150{bottom:165.287712pt;}
.y12a_c01150{bottom:166.262005pt;}
.y12b_c01150{bottom:166.605835pt;}
.y12c_c01150{bottom:167.232789pt;}
.y12d_c01150{bottom:167.850517pt;}
.y12e_c01150{bottom:168.040821pt;}
.y12f_c01150{bottom:168.302731pt;}
.y11d_c01150{bottom:194.069621pt;}
.y11e_c01150{bottom:194.857141pt;}
.y11f_c01150{bottom:195.162496pt;}
.y120_c01150{bottom:195.928661pt;}
.y121_c01150{bottom:196.724896pt;}
.y122_c01150{bottom:197.711115pt;}
.y123_c01150{bottom:198.689813pt;}
.y124_c01150{bottom:198.994720pt;}
.y111_c01150{bottom:225.273728pt;}
.y112_c01150{bottom:225.625301pt;}
.y113_c01150{bottom:226.201472pt;}
.y114_c01150{bottom:226.550112pt;}
.y115_c01150{bottom:227.146453pt;}
.y116_c01150{bottom:228.093899pt;}
.y117_c01150{bottom:228.915115pt;}
.y118_c01150{bottom:229.153621pt;}
.y119_c01150{bottom:230.334752pt;}
.y11a_c01150{bottom:230.694709pt;}
.y11b_c01150{bottom:231.057045pt;}
.y11c_c01150{bottom:231.515691pt;}
.y106_c01150{bottom:257.197792pt;}
.y107_c01150{bottom:257.791712pt;}
.y108_c01150{bottom:258.252587pt;}
.y109_c01150{bottom:258.961333pt;}
.y10a_c01150{bottom:259.431701pt;}
.y10b_c01150{bottom:260.021589pt;}
.y10c_c01150{bottom:261.083733pt;}
.y10d_c01150{bottom:261.446304pt;}
.y10e_c01150{bottom:262.043285pt;}
.y10f_c01150{bottom:262.978581pt;}
.y110_c01150{bottom:263.810453pt;}
.yfa_c01150{bottom:291.041909pt;}
.yfb_c01150{bottom:291.577717pt;}
.yfc_c01150{bottom:292.054101pt;}
.yfd_c01150{bottom:292.758976pt;}
.yfe_c01150{bottom:293.071883pt;}
.yff_c01150{bottom:293.545717pt;}
.y100_c01150{bottom:294.250635pt;}
.y101_c01150{bottom:294.494315pt;}
.y102_c01150{bottom:294.731829pt;}
.y103_c01150{bottom:295.125589pt;}
.y104_c01150{bottom:295.277291pt;}
.y105_c01150{bottom:295.760971pt;}
.yef_c01150{bottom:320.086485pt;}
.yf0_c01150{bottom:320.406731pt;}
.yf1_c01150{bottom:321.159925pt;}
.yf2_c01150{bottom:321.693003pt;}
.yf3_c01150{bottom:322.012267pt;}
.yf4_c01150{bottom:322.877899pt;}
.yf5_c01150{bottom:323.210251pt;}
.yf6_c01150{bottom:323.743285pt;}
.yf7_c01150{bottom:324.841995pt;}
.yf8_c01150{bottom:325.918891pt;}
.yf9_c01150{bottom:326.370688pt;}
.ye3_c01150{bottom:353.452704pt;}
.ye4_c01150{bottom:353.794027pt;}
.ye5_c01150{bottom:354.145749pt;}
.ye6_c01150{bottom:354.499573pt;}
.y1_c01150{bottom:354.720000pt;}
.ye7_c01150{bottom:355.019616pt;}
.ye8_c01150{bottom:355.647659pt;}
.ye9_c01150{bottom:355.917163pt;}
.yea_c01150{bottom:356.714037pt;}
.yeb_c01150{bottom:356.984320pt;}
.yec_c01150{bottom:357.244128pt;}
.yed_c01150{bottom:357.772907pt;}
.yee_c01150{bottom:358.321579pt;}
.yd8_c01150{bottom:384.178059pt;}
.yd9_c01150{bottom:385.061067pt;}
.yda_c01150{bottom:385.452235pt;}
.ydb_c01150{bottom:385.944747pt;}
.ydc_c01150{bottom:386.242240pt;}
.ydd_c01150{bottom:387.123627pt;}
.yde_c01150{bottom:387.524907pt;}
.ydf_c01150{bottom:388.206091pt;}
.ye0_c01150{bottom:388.508555pt;}
.ye1_c01150{bottom:389.194304pt;}
.ye2_c01150{bottom:389.388459pt;}
.ycd_c01150{bottom:417.541792pt;}
.yce_c01150{bottom:417.843723pt;}
.ycf_c01150{bottom:418.475125pt;}
.yd0_c01150{bottom:419.018795pt;}
.yd1_c01150{bottom:419.341632pt;}
.yd2_c01150{bottom:419.582421pt;}
.yd3_c01150{bottom:420.050613pt;}
.yd4_c01150{bottom:420.918187pt;}
.yd5_c01150{bottom:421.230517pt;}
.yd6_c01150{bottom:421.874144pt;}
.yd7_c01150{bottom:422.190560pt;}
.yc2_c01150{bottom:448.983445pt;}
.yc3_c01150{bottom:449.567595pt;}
.yc4_c01150{bottom:449.870293pt;}
.yc5_c01150{bottom:450.655307pt;}
.yc6_c01150{bottom:451.142848pt;}
.yc7_c01150{bottom:451.937845pt;}
.yc8_c01150{bottom:452.425429pt;}
.yc9_c01150{bottom:452.720309pt;}
.yca_c01150{bottom:453.310325pt;}
.ycb_c01150{bottom:454.107829pt;}
.ycc_c01150{bottom:454.504139pt;}
.yb4_c01150{bottom:480.427979pt;}
.yb5_c01150{bottom:481.498741pt;}
.yb6_c01150{bottom:481.726677pt;}
.yb7_c01150{bottom:482.075275pt;}
.yb8_c01150{bottom:483.249312pt;}
.yb9_c01150{bottom:483.503808pt;}
.yba_c01150{bottom:483.849493pt;}
.ybb_c01150{bottom:484.210091pt;}
.ybc_c01150{bottom:484.558731pt;}
.ybd_c01150{bottom:485.278645pt;}
.ybe_c01150{bottom:485.636096pt;}
.ybf_c01150{bottom:486.108608pt;}
.yc0_c01150{bottom:486.692885pt;}
.yc1_c01150{bottom:487.068011pt;}
.yaa_c01150{bottom:512.351573pt;}
.yab_c01150{bottom:513.402955pt;}
.yac_c01150{bottom:514.574592pt;}
.yad_c01150{bottom:515.050037pt;}
.yae_c01150{bottom:515.407531pt;}
.yaf_c01150{bottom:516.113323pt;}
.yb0_c01150{bottom:516.600064pt;}
.yb1_c01150{bottom:517.890496pt;}
.yb2_c01150{bottom:518.372331pt;}
.yb3_c01150{bottom:518.714539pt;}
.y152_c01150{bottom:537.120000pt;}
.y9d_c01150{bottom:544.034859pt;}
.y9e_c01150{bottom:544.256320pt;}
.y9f_c01150{bottom:544.687328pt;}
.ya0_c01150{bottom:545.653291pt;}
.ya1_c01150{bottom:545.980587pt;}
.ya2_c01150{bottom:546.297387pt;}
.ya3_c01150{bottom:546.962251pt;}
.ya4_c01150{bottom:547.284107pt;}
.ya5_c01150{bottom:547.811787pt;}
.ya6_c01150{bottom:548.580235pt;}
.ya7_c01150{bottom:549.026187pt;}
.ya8_c01150{bottom:549.570923pt;}
.ya9_c01150{bottom:550.326624pt;}
.y150_c01150{bottom:568.320000pt;}
.y91_c01150{bottom:576.201280pt;}
.y151_c01150{bottom:576.240000pt;}
.y92_c01150{bottom:576.486411pt;}
.y93_c01150{bottom:576.776619pt;}
.y94_c01150{bottom:577.266795pt;}
.y95_c01150{bottom:578.255136pt;}
.y96_c01150{bottom:578.555605pt;}
.y97_c01150{bottom:579.238848pt;}
.y98_c01150{bottom:579.433067pt;}
.y99_c01150{bottom:580.231701pt;}
.y9a_c01150{bottom:580.908949pt;}
.y9b_c01150{bottom:581.311787pt;}
.y9c_c01150{bottom:581.601419pt;}
.y14f_c01150{bottom:593.040000pt;}
.y88_c01150{bottom:606.925728pt;}
.y89_c01150{bottom:607.752000pt;}
.y8a_c01150{bottom:608.578123pt;}
.y8b_c01150{bottom:608.931840pt;}
.y8c_c01150{bottom:609.401760pt;}
.y8d_c01150{bottom:609.984085pt;}
.y8e_c01150{bottom:611.061749pt;}
.y8f_c01150{bottom:612.364139pt;}
.y90_c01150{bottom:612.721547pt;}
.y7c_c01150{bottom:638.369344pt;}
.y7d_c01150{bottom:639.495520pt;}
.y7e_c01150{bottom:639.752011pt;}
.y7f_c01150{bottom:640.529525pt;}
.y80_c01150{bottom:641.041152pt;}
.y81_c01150{bottom:641.923232pt;}
.y82_c01150{bottom:642.197877pt;}
.y83_c01150{bottom:643.349483pt;}
.y84_c01150{bottom:643.727520pt;}
.y85_c01150{bottom:644.108000pt;}
.y86_c01150{bottom:645.143552pt;}
.y87_c01150{bottom:645.528021pt;}
.y71_c01150{bottom:671.011787pt;}
.y72_c01150{bottom:672.169771pt;}
.y73_c01150{bottom:672.642880pt;}
.y74_c01150{bottom:673.592032pt;}
.y75_c01150{bottom:674.414592pt;}
.y76_c01150{bottom:674.651339pt;}
.y77_c01150{bottom:675.373867pt;}
.y78_c01150{bottom:675.956149pt;}
.y79_c01150{bottom:676.334005pt;}
.y7a_c01150{bottom:677.148213pt;}
.y7b_c01150{bottom:677.618581pt;}
.y65_c01150{bottom:701.495915pt;}
.y66_c01150{bottom:702.659392pt;}
.y67_c01150{bottom:703.988587pt;}
.y68_c01150{bottom:704.423957pt;}
.y69_c01150{bottom:705.449611pt;}
.y6a_c01150{bottom:705.744853pt;}
.y6b_c01150{bottom:706.648587pt;}
.y6c_c01150{bottom:707.096288pt;}
.y6d_c01150{bottom:708.409099pt;}
.y6e_c01150{bottom:708.721867pt;}
.y6f_c01150{bottom:709.161141pt;}
.y70_c01150{bottom:710.050784pt;}
.y5a_c01150{bottom:733.661429pt;}
.y5b_c01150{bottom:734.403221pt;}
.y5c_c01150{bottom:735.133664pt;}
.y5d_c01150{bottom:736.293067pt;}
.y5e_c01150{bottom:737.764320pt;}
.y5f_c01150{bottom:738.375829pt;}
.y60_c01150{bottom:738.819456pt;}
.y61_c01150{bottom:739.254997pt;}
.y62_c01150{bottom:740.285109pt;}
.y63_c01150{bottom:741.638176pt;}
.y64_c01150{bottom:742.099136pt;}
.y50_c01150{bottom:765.585984pt;}
.y51_c01150{bottom:767.298773pt;}
.y52_c01150{bottom:767.762859pt;}
.y53_c01150{bottom:768.381696pt;}
.y54_c01150{bottom:769.341824pt;}
.y55_c01150{bottom:770.121664pt;}
.y56_c01150{bottom:772.325163pt;}
.y57_c01150{bottom:773.288875pt;}
.y58_c01150{bottom:773.762048pt;}
.y59_c01150{bottom:774.253803pt;}
.y45_c01150{bottom:797.747787pt;}
.y46_c01150{bottom:798.188427pt;}
.y47_c01150{bottom:799.664203pt;}
.y48_c01150{bottom:800.102432pt;}
.y49_c01150{bottom:800.991669pt;}
.y4a_c01150{bottom:801.581440pt;}
.y4b_c01150{bottom:803.339648pt;}
.y4c_c01150{bottom:803.945387pt;}
.y4d_c01150{bottom:805.125643pt;}
.y4e_c01150{bottom:805.575851pt;}
.y4f_c01150{bottom:806.026411pt;}
.y3a_c01150{bottom:828.710709pt;}
.y3b_c01150{bottom:829.265792pt;}
.y3c_c01150{bottom:829.672576pt;}
.y3d_c01150{bottom:830.629856pt;}
.y3e_c01150{bottom:831.605707pt;}
.y3f_c01150{bottom:831.883061pt;}
.y40_c01150{bottom:832.858144pt;}
.y41_c01150{bottom:833.540800pt;}
.y42_c01150{bottom:834.917504pt;}
.y43_c01150{bottom:835.331755pt;}
.y44_c01150{bottom:836.036171pt;}
.y30_c01150{bottom:859.916864pt;}
.y31_c01150{bottom:861.161472pt;}
.y32_c01150{bottom:863.035392pt;}
.y33_c01150{bottom:864.132928pt;}
.y34_c01150{bottom:864.456299pt;}
.y35_c01150{bottom:865.070869pt;}
.y36_c01150{bottom:866.207424pt;}
.y37_c01150{bottom:866.837419pt;}
.y38_c01150{bottom:867.801131pt;}
.y39_c01150{bottom:868.907157pt;}
.y24_c01150{bottom:891.359179pt;}
.y25_c01150{bottom:891.836843pt;}
.y26_c01150{bottom:893.170805pt;}
.y27_c01150{bottom:893.844640pt;}
.y28_c01150{bottom:894.856896pt;}
.y29_c01150{bottom:895.518667pt;}
.y2a_c01150{bottom:896.008544pt;}
.y2b_c01150{bottom:897.020331pt;}
.y2c_c01150{bottom:897.868405pt;}
.y2d_c01150{bottom:898.367392pt;}
.y2e_c01150{bottom:899.373685pt;}
.y2f_c01150{bottom:900.728373pt;}
.y1a_c01150{bottom:924.724000pt;}
.y1b_c01150{bottom:926.325387pt;}
.y1c_c01150{bottom:926.790325pt;}
.y1d_c01150{bottom:927.578229pt;}
.y1e_c01150{bottom:927.896480pt;}
.y1f_c01150{bottom:928.692235pt;}
.y20_c01150{bottom:930.095904pt;}
.y21_c01150{bottom:930.596149pt;}
.y22_c01150{bottom:932.170400pt;}
.y23_c01150{bottom:932.642229pt;}
.yd_c01150{bottom:977.040448pt;}
.ye_c01150{bottom:977.243184pt;}
.yf_c01150{bottom:977.538013pt;}
.y10_c01150{bottom:977.844552pt;}
.y11_c01150{bottom:977.955781pt;}
.y12_c01150{bottom:978.102776pt;}
.y13_c01150{bottom:978.260904pt;}
.y14_c01150{bottom:978.426267pt;}
.y15_c01150{bottom:978.530189pt;}
.y16_c01150{bottom:978.710285pt;}
.y17_c01150{bottom:978.850741pt;}
.y18_c01150{bottom:978.998648pt;}
.y19_c01150{bottom:979.232877pt;}
.y8_c01150{bottom:979.441333pt;}
.y9_c01150{bottom:979.851661pt;}
.ya_c01150{bottom:980.633677pt;}
.yb_c01150{bottom:981.826189pt;}
.yc_c01150{bottom:982.811989pt;}
.y5_c01150{bottom:990.482667pt;}
.y6_c01150{bottom:991.707127pt;}
.y7_c01150{bottom:993.006847pt;}
.y2_c01150{bottom:1056.010667pt;}
.y3_c01150{bottom:1056.868715pt;}
.y4_c01150{bottom:1058.449347pt;}
.h2_c01150{height:16.000000pt;}
.h6_c01150{height:16.002592pt;}
.he_c01150{height:21.333333pt;}
.h5_c01150{height:21.336789pt;}
.hb_c01150{height:58.674176pt;}
.h3_c01150{height:63.989823pt;}
.h8_c01150{height:64.008191pt;}
.hd_c01150{height:69.333333pt;}
.h4_c01150{height:69.341133pt;}
.h9_c01150{height:69.342207pt;}
.h7_c01150{height:74.676223pt;}
.ha_c01150{height:80.010239pt;}
.hc_c01150{height:85.344255pt;}
.h1_c01150{height:1118.666667pt;}
.h0_c01150{height:1118.880000pt;}
.w0_c01150{width:817.866667pt;}
.w1_c01150{width:818.000000pt;}
.x0_c01150{left:0.000000pt;}
.x30_c01150{left:157.562720pt;}
.x21_c01150{left:158.590197pt;}
.x3f_c01150{left:160.527883pt;}
.x50_c01150{left:161.924085pt;}
.x61_c01150{left:162.856757pt;}
.x73_c01150{left:164.014155pt;}
.x89_c01150{left:165.262475pt;}
.xa0_c01150{left:167.584971pt;}
.xad_c01150{left:169.042507pt;}
.xb6_c01150{left:170.699915pt;}
.xca_c01150{left:172.635029pt;}
.xd9_c01150{left:173.804661pt;}
.xe0_c01150{left:175.200000pt;}
.x7f_c01150{left:183.470123pt;}
.x22_c01150{left:186.693749pt;}
.x38_c01150{left:188.416181pt;}
.x74_c01150{left:192.587573pt;}
.x31_c01150{left:197.173312pt;}
.xb3_c01150{left:198.872075pt;}
.xc1_c01150{left:200.799349pt;}
.xa1_c01150{left:205.293792pt;}
.xae_c01150{left:206.962752pt;}
.x47_c01150{left:209.949995pt;}
.xda_c01150{left:213.905056pt;}
.xbb_c01150{left:219.273547pt;}
.x75_c01150{left:221.645035pt;}
.x80_c01150{left:222.661259pt;}
.x18_c01150{left:224.374667pt;}
.x32_c01150{left:226.264917pt;}
.x6d_c01150{left:231.280021pt;}
.x2b_c01150{left:236.153088pt;}
.xb7_c01150{left:237.696491pt;}
.x51_c01150{left:239.475989pt;}
.xd3_c01150{left:241.806443pt;}
.xaf_c01150{left:246.116480pt;}
.x62_c01150{left:249.496917pt;}
.x8a_c01150{left:252.896085pt;}
.x90_c01150{left:254.060053pt;}
.xa8_c01150{left:255.748427pt;}
.xbc_c01150{left:257.664000pt;}
.x48_c01150{left:258.686784pt;}
.xcb_c01150{left:259.802112pt;}
.x23_c01150{left:265.148491pt;}
.x40_c01150{left:267.577216pt;}
.x63_c01150{left:269.195189pt;}
.x76_c01150{left:270.619061pt;}
.x91_c01150{left:273.057269pt;}
.xc2_c01150{left:277.854944pt;}
.xc7_c01150{left:280.715083pt;}
.xdb_c01150{left:281.839669pt;}
.xa2_c01150{left:284.266571pt;}
.xb0_c01150{left:285.484896pt;}
.x39_c01150{left:286.820427pt;}
.x33_c01150{left:294.680448pt;}
.x41_c01150{left:296.582549pt;}
.x5a_c01150{left:297.772384pt;}
.x6e_c01150{left:300.167104pt;}
.x92_c01150{left:302.096459pt;}
.x24_c01150{left:304.762517pt;}
.x81_c01150{left:310.457611pt;}
.x4_c01150{left:311.954667pt;}
.x7_c01150{left:313.256000pt;}
.x3a_c01150{left:316.043563pt;}
.xd4_c01150{left:320.295157pt;}
.x19_c01150{left:324.461333pt;}
.x52_c01150{left:328.052064pt;}
.x64_c01150{left:328.959381pt;}
.xc_c01150{left:332.441416pt;}
.x8_c01150{left:336.052000pt;}
.x82_c01150{left:340.249333pt;}
.xa9_c01150{left:344.070229pt;}
.xd_c01150{left:345.927469pt;}
.x1_c01150{left:349.705333pt;}
.xa3_c01150{left:352.171253pt;}
.x1a_c01150{left:353.520000pt;}
.xbd_c01150{left:355.864939pt;}
.x53_c01150{left:357.096533pt;}
.xd5_c01150{left:360.176256pt;}
.x25_c01150{left:364.277557pt;}
.xe_c01150{left:365.567192pt;}
.x65_c01150{left:368.354613pt;}
.x77_c01150{left:369.483221pt;}
.x2_c01150{left:370.612405pt;}
.xaa_c01150{left:373.833088pt;}
.x3b_c01150{left:375.288501pt;}
.x5b_c01150{left:376.849440pt;}
.x9_c01150{left:379.497333pt;}
.x9b_c01150{left:381.751637pt;}
.x34_c01150{left:384.175307pt;}
.xf_c01150{left:386.005629pt;}
.xcc_c01150{left:388.463200pt;}
.x8b_c01150{left:390.180875pt;}
.xa4_c01150{left:392.520416pt;}
.x5_c01150{left:393.585333pt;}
.x42_c01150{left:395.267883pt;}
.x78_c01150{left:399.515435pt;}
.x10_c01150{left:403.241232pt;}
.xbe_c01150{left:405.069429pt;}
.xc3_c01150{left:406.516512pt;}
.x3_c01150{left:409.125853pt;}
.x11_c01150{left:413.804475pt;}
.x6f_c01150{left:417.297259pt;}
.x8c_c01150{left:419.942773pt;}
.x93_c01150{left:421.137408pt;}
.x1b_c01150{left:422.654667pt;}
.x12_c01150{left:424.843741pt;}
.xcf_c01150{left:428.066400pt;}
.x83_c01150{left:429.527147pt;}
.x13_c01150{left:431.802792pt;}
.x49_c01150{left:434.105600pt;}
.x66_c01150{left:436.237877pt;}
.xd6_c01150{left:438.142240pt;}
.x2c_c01150{left:442.079755pt;}
.x14_c01150{left:443.808773pt;}
.xa_c01150{left:445.748000pt;}
.x94_c01150{left:449.911243pt;}
.x15_c01150{left:453.167944pt;}
.x67_c01150{left:457.404235pt;}
.x84_c01150{left:458.812160pt;}
.x9c_c01150{left:461.196587pt;}
.x16_c01150{left:463.015139pt;}
.x5c_c01150{left:465.061739pt;}
.x79_c01150{left:467.891339pt;}
.x1c_c01150{left:472.389333pt;}
.x4a_c01150{left:474.908928pt;}
.xdc_c01150{left:477.692811pt;}
.x17_c01150{left:478.621312pt;}
.x6_c01150{left:480.233333pt;}
.xb8_c01150{left:483.727979pt;}
.x7a_c01150{left:487.365216pt;}
.x26_c01150{left:491.490176pt;}
.xbf_c01150{left:493.625771pt;}
.xc4_c01150{left:494.838165pt;}
.xcd_c01150{left:496.701984pt;}
.xe1_c01150{left:498.960000pt;}
.xb_c01150{left:500.514667pt;}
.x35_c01150{left:502.537749pt;}
.x4b_c01150{left:504.469397pt;}
.x54_c01150{left:505.388235pt;}
.x70_c01150{left:507.073664pt;}
.x95_c01150{left:508.992352pt;}
.x9d_c01150{left:509.925259pt;}
.x8d_c01150{left:519.315797pt;}
.xc0_c01150{left:523.871712pt;}
.x5d_c01150{left:525.306933pt;}
.x3c_c01150{left:531.789664pt;}
.x4c_c01150{left:533.524533pt;}
.x55_c01150{left:535.203371pt;}
.x9e_c01150{left:539.441429pt;}
.x27_c01150{left:541.410720pt;}
.x68_c01150{left:545.967147pt;}
.xdd_c01150{left:547.299723pt;}
.x2d_c01150{left:551.525088pt;}
.xd7_c01150{left:556.220011pt;}
.x1d_c01150{left:560.118667pt;}
.xb1_c01150{left:561.729184pt;}
.x7b_c01150{left:567.287563pt;}
.x96_c01150{left:568.990859pt;}
.x28_c01150{left:570.763584pt;}
.x3d_c01150{left:572.148971pt;}
.x5e_c01150{left:573.786027pt;}
.x69_c01150{left:575.012533pt;}
.x85_c01150{left:576.662923pt;}
.xde_c01150{left:577.782411pt;}
.x43_c01150{left:581.726549pt;}
.xd0_c01150{left:585.513504pt;}
.xe2_c01150{left:587.520000pt;}
.xa5_c01150{left:589.580299pt;}
.x1e_c01150{left:591.384000pt;}
.xc5_c01150{left:593.248459pt;}
.x97_c01150{left:598.750091pt;}
.x36_c01150{left:600.918240pt;}
.x4d_c01150{left:602.157621pt;}
.x6a_c01150{left:604.293941pt;}
.x5f_c01150{left:605.237365pt;}
.x71_c01150{left:615.563264pt;}
.x86_c01150{left:617.204832pt;}
.x56_c01150{left:622.755445pt;}
.x8e_c01150{left:626.808000pt;}
.xa6_c01150{left:628.689312pt;}
.x29_c01150{left:629.989312pt;}
.xb9_c01150{left:632.045632pt;}
.xc8_c01150{left:633.539627pt;}
.x7c_c01150{left:634.955381pt;}
.x98_c01150{left:638.117941pt;}
.x44_c01150{left:641.958549pt;}
.x57_c01150{left:643.637120pt;}
.x72_c01150{left:645.319829pt;}
.xb2_c01150{left:649.358997pt;}
.x2e_c01150{left:651.131755pt;}
.xc6_c01150{left:653.478987pt;}
.xd1_c01150{left:655.590891pt;}
.xc9_c01150{left:664.015883pt;}
.x87_c01150{left:666.671445pt;}
.xab_c01150{left:669.032085pt;}
.x45_c01150{left:671.531883pt;}
.x58_c01150{left:672.925589pt;}
.x7d_c01150{left:675.303264pt;}
.x9f_c01150{left:678.174741pt;}
.x37_c01150{left:680.754112pt;}
.x6b_c01150{left:683.936427pt;}
.x99_c01150{left:686.805056pt;}
.xac_c01150{left:688.501963pt;}
.x1f_c01150{left:689.774667pt;}
.x4e_c01150{left:692.392405pt;}
.xce_c01150{left:694.233419pt;}
.x8f_c01150{left:695.481728pt;}
.xb4_c01150{left:700.005493pt;}
.x46_c01150{left:702.266549pt;}
.x7e_c01150{left:704.324725pt;}
.x2a_c01150{left:709.656032pt;}
.x3e_c01150{left:710.881856pt;}
.x60_c01150{left:712.280213pt;}
.x6c_c01150{left:713.467168pt;}
.x9a_c01150{left:718.085728pt;}
.x20_c01150{left:719.264000pt;}
.x2f_c01150{left:720.258421pt;}
.x4f_c01150{left:723.119563pt;}
.xd8_c01150{left:725.196288pt;}
.xe3_c01150{left:726.720000pt;}
.x59_c01150{left:732.195861pt;}
.x88_c01150{left:735.324928pt;}
.xb5_c01150{left:741.079445pt;}
.xa7_c01150{left:748.707339pt;}
.xd2_c01150{left:754.204363pt;}
.xba_c01150{left:760.716768pt;}
.xdf_c01150{left:765.259392pt;}
.xe4_c01150{left:798.480000pt;}
.xe5_c01150{left:810.480000pt;}
.xe7_c01150{left:811.680000pt;}
.xe8_c01150{left:812.640000pt;}
.xe6_c01150{left:813.840000pt;}
.xe9_c01150{left:814.800000pt;}
}





/* 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_c01151 {
    display:none;
  }
  .loading-indicator_c01151.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01151 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_c01151 { 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_c01151" -> "#page-container .classname_c01151")
 */
.pf_c01151 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01151 { /* 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_c01151.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01151 { /* 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_c01151 { /* 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_c01151 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01151 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01151 {overflow:visible;}
  }
}
.c_c01151 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01151 { /* 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_c01151:after { /* webkit #35443 */
  content: '';
}
.t_c01151:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01151 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 */
}
.__c01151 { /* 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_c01151 { /* info for Javascript */
  display:none;
}
.l_c01151 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01151 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01151 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01151: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_c01151 {
    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_c01151.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01151.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_c01151 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01151{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01151;src:url('chunks/assets/font_fabf4b590f7fb32aea93ffb2.woff2')format("woff");}.ff1_c01151{font-family:ff1_c01151;line-height:1.000000;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;}
.m1c_c01151{transform:matrix(0.004990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.004990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.004990,0.000000,0.000000,0.250000,0,0);}
.me_c01151{transform:matrix(0.041825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.041825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.041825,0.000000,0.000000,0.250000,0,0);}
.m4_c01151{transform:matrix(0.045135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.045135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.045135,0.000000,0.000000,0.250000,0,0);}
.m25_c01151{transform:matrix(0.158600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158600,0.000000,0.000000,0.250000,0,0);}
.m24_c01151{transform:matrix(0.162835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162835,0.000000,0.000000,0.250000,0,0);}
.m2c_c01151{transform:matrix(0.164145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164145,0.000000,0.000000,0.250000,0,0);}
.m1e_c01151{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m1b_c01151{transform:matrix(0.186580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186580,0.000000,0.000000,0.250000,0,0);}
.m23_c01151{transform:matrix(0.192610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192610,0.000000,0.000000,0.250000,0,0);}
.m15_c01151{transform:matrix(0.194400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194400,0.000000,0.000000,0.250000,0,0);}
.m8_c01151{transform:matrix(0.196220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196220,0.000000,0.000000,0.250000,0,0);}
.m20_c01151{transform:matrix(0.200555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200555,0.000000,0.000000,0.250000,0,0);}
.m26_c01151{transform:matrix(0.202310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202310,0.000000,0.000000,0.250000,0,0);}
.m13_c01151{transform:matrix(0.204745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204745,0.000000,0.000000,0.250000,0,0);}
.m46_c01151{transform:matrix(0.211215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211215,0.000000,0.000000,0.250000,0,0);}
.m2d_c01151{transform:matrix(0.211290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211290,0.000000,0.000000,0.250000,0,0);}
.m18_c01151{transform:matrix(0.212720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212720,0.000000,0.000000,0.250000,0,0);}
.m16_c01151{transform:matrix(0.218995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218995,0.000000,0.000000,0.250000,0,0);}
.m3d_c01151{transform:matrix(0.222030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222030,0.000000,0.000000,0.250000,0,0);}
.m38_c01151{transform:matrix(0.222900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222900,0.000000,0.000000,0.250000,0,0);}
.m10_c01151{transform:matrix(0.226970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226970,0.000000,0.000000,0.250000,0,0);}
.m1f_c01151{transform:matrix(0.227535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227535,0.000000,0.000000,0.250000,0,0);}
.m39_c01151{transform:matrix(0.233485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233485,0.000000,0.000000,0.250000,0,0);}
.m35_c01151{transform:matrix(0.235470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235470,0.000000,0.000000,0.250000,0,0);}
.m36_c01151{transform:matrix(0.235905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235905,0.000000,0.000000,0.250000,0,0);}
.m41_c01151{transform:matrix(0.242040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242040,0.000000,0.000000,0.250000,0,0);}
.m2b_c01151{transform:matrix(0.244415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244415,0.000000,0.000000,0.250000,0,0);}
.m3c_c01151{transform:matrix(0.244705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244705,0.000000,0.000000,0.250000,0,0);}
.m21_c01151{transform:matrix(0.245210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245210,0.000000,0.000000,0.250000,0,0);}
.m22_c01151{transform:matrix(0.245800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245800,0.000000,0.000000,0.250000,0,0);}
.m34_c01151{transform:matrix(0.246940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246940,0.000000,0.000000,0.250000,0,0);}
.m17_c01151{transform:matrix(0.248855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248855,0.000000,0.000000,0.250000,0,0);}
.m3f_c01151{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m47_c01151{transform:matrix(0.250955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250955,0.000000,0.000000,0.250000,0,0);}
.m40_c01151{transform:matrix(0.254110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254110,0.000000,0.000000,0.250000,0,0);}
.m12_c01151{transform:matrix(0.257780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257780,0.000000,0.000000,0.250000,0,0);}
.m33_c01151{transform:matrix(0.259465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259465,0.000000,0.000000,0.250000,0,0);}
.m6_c01151{transform:matrix(0.260240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260240,0.000000,0.000000,0.250000,0,0);}
.m31_c01151{transform:matrix(0.260700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260700,0.000000,0.000000,0.250000,0,0);}
.m2_c01151{transform:matrix(0.261575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261575,0.000000,0.000000,0.250000,0,0);}
.m19_c01151{transform:matrix(0.261845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261845,0.000000,0.000000,0.250000,0,0);}
.m32_c01151{transform:matrix(0.264415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264415,0.000000,0.000000,0.250000,0,0);}
.m9_c01151{transform:matrix(0.265365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265365,0.000000,0.000000,0.250000,0,0);}
.m3b_c01151{transform:matrix(0.271995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271995,0.000000,0.000000,0.250000,0,0);}
.m29_c01151{transform:matrix(0.272095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272095,0.000000,0.000000,0.250000,0,0);}
.m37_c01151{transform:matrix(0.273490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273490,0.000000,0.000000,0.250000,0,0);}
.m48_c01151{transform:matrix(0.273535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273535,0.000000,0.000000,0.250000,0,0);}
.m1a_c01151{transform:matrix(0.274705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274705,0.000000,0.000000,0.250000,0,0);}
.mc_c01151{transform:matrix(0.276855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276855,0.000000,0.000000,0.250000,0,0);}
.m43_c01151{transform:matrix(0.287985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287985,0.000000,0.000000,0.250000,0,0);}
.m3_c01151{transform:matrix(0.290485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290485,0.000000,0.000000,0.250000,0,0);}
.mb_c01151{transform:matrix(0.292215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292215,0.000000,0.000000,0.250000,0,0);}
.m2a_c01151{transform:matrix(0.293640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293640,0.000000,0.000000,0.250000,0,0);}
.m2e_c01151{transform:matrix(0.295465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295465,0.000000,0.000000,0.250000,0,0);}
.m49_c01151{transform:matrix(0.303220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303220,0.000000,0.000000,0.250000,0,0);}
.m14_c01151{transform:matrix(0.313525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313525,0.000000,0.000000,0.250000,0,0);}
.m3e_c01151{transform:matrix(0.317035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317035,0.000000,0.000000,0.250000,0,0);}
.m44_c01151{transform:matrix(0.324425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324425,0.000000,0.000000,0.250000,0,0);}
.m11_c01151{transform:matrix(0.326945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326945,0.000000,0.000000,0.250000,0,0);}
.m3a_c01151{transform:matrix(0.350320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350320,0.000000,0.000000,0.250000,0,0);}
.m28_c01151{transform:matrix(0.384680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384680,0.000000,0.000000,0.250000,0,0);}
.m30_c01151{transform:matrix(0.384960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384960,0.000000,0.000000,0.250000,0,0);}
.m1d_c01151{transform:matrix(0.410510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410510,0.000000,0.000000,0.250000,0,0);}
.mf_c01151{transform:matrix(0.449385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449385,0.000000,0.000000,0.250000,0,0);}
.md_c01151{transform:matrix(0.467100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467100,0.000000,0.000000,0.250000,0,0);}
.m27_c01151{transform:matrix(0.516900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516900,0.000000,0.000000,0.250000,0,0);}
.m7_c01151{transform:matrix(0.583555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583555,0.000000,0.000000,0.250000,0,0);}
.ma_c01151{transform:matrix(0.617240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617240,0.000000,0.000000,0.250000,0,0);}
.m2f_c01151{transform:matrix(0.621960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.621960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.621960,0.000000,0.000000,0.250000,0,0);}
.m5_c01151{transform:matrix(0.641925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.641925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.641925,0.000000,0.000000,0.250000,0,0);}
.m45_c01151{transform:matrix(0.654100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.654100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.654100,0.000000,0.000000,0.250000,0,0);}
.m42_c01151{transform:matrix(0.662030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662030,0.000000,0.000000,0.250000,0,0);}
.m1_c01151{transform:matrix(0.935900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.935900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.935900,0.000000,0.000000,0.250000,0,0);}
.m0_c01151{transform:matrix(2.317000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.317000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.317000,0.000000,0.000000,0.250000,0,0);}
.v0_c01151{vertical-align:0.000000px;}
.ls0_c01151{letter-spacing:0.000000px;}
.sc__c01151{text-shadow:none;}
.sc0_c01151{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__c01151{-webkit-text-stroke:0px transparent;}
.sc0_c01151{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01151{word-spacing:0.000000px;}
.fc0_c01151{color:transparent;}
.fs0_c01151{font-size:18.000000px;}
.fs1_c01151{font-size:78.000000px;}
.fs4_c01151{font-size:84.000000px;}
.fs3_c01151{font-size:90.000000px;}
.fs2_c01151{font-size:102.000000px;}
.y0_c01151{bottom:0.000000px;}
.y1f_c01151{bottom:449.082000px;}
.y1e_c01151{bottom:484.879500px;}
.y1d_c01151{bottom:520.801500px;}
.y1c_c01151{bottom:556.665000px;}
.y11_c01151{bottom:874.800000px;}
.y12_c01151{bottom:874.900500px;}
.y13_c01151{bottom:875.107500px;}
.y14_c01151{bottom:875.278500px;}
.y15_c01151{bottom:875.620500px;}
.y16_c01151{bottom:876.075000px;}
.y17_c01151{bottom:876.382500px;}
.y18_c01151{bottom:876.669000px;}
.y19_c01151{bottom:877.005000px;}
.y1a_c01151{bottom:877.227000px;}
.y1b_c01151{bottom:877.393500px;}
.y3_c01151{bottom:909.631500px;}
.y4_c01151{bottom:909.655500px;}
.y5_c01151{bottom:909.975000px;}
.y6_c01151{bottom:910.141500px;}
.y7_c01151{bottom:910.396500px;}
.y8_c01151{bottom:910.914000px;}
.y9_c01151{bottom:911.182500px;}
.ya_c01151{bottom:911.514000px;}
.yb_c01151{bottom:911.980500px;}
.yc_c01151{bottom:912.241500px;}
.yd_c01151{bottom:912.645000px;}
.ye_c01151{bottom:912.835500px;}
.yf_c01151{bottom:913.330500px;}
.y10_c01151{bottom:913.497000px;}
.y2_c01151{bottom:947.560500px;}
.y1_c01151{bottom:1113.750000px;}
.h2_c01151{height:18.000000px;}
.h3_c01151{height:78.000000px;}
.h6_c01151{height:84.000000px;}
.h5_c01151{height:90.000000px;}
.h4_c01151{height:102.000000px;}
.h1_c01151{height:1258.500000px;}
.h0_c01151{height:1258.740000px;}
.w0_c01151{width:920.100000px;}
.w1_c01151{width:920.250000px;}
.x0_c01151{left:0.000000px;}
.x2_c01151{left:38.610000px;}
.xf_c01151{left:39.826500px;}
.x10_c01151{left:43.879500px;}
.x1d_c01151{left:80.022000px;}
.x27_c01151{left:86.130000px;}
.x11_c01151{left:97.068000px;}
.x1e_c01151{left:100.014000px;}
.x12_c01151{left:124.831500px;}
.x3_c01151{left:131.760000px;}
.x28_c01151{left:132.840000px;}
.x1f_c01151{left:141.276000px;}
.x13_c01151{left:167.275500px;}
.x20_c01151{left:175.567500px;}
.x4_c01151{left:186.300000px;}
.x38_c01151{left:189.810000px;}
.x29_c01151{left:191.160000px;}
.x30_c01151{left:196.830000px;}
.x5_c01151{left:217.620000px;}
.x40_c01151{left:222.750000px;}
.x31_c01151{left:231.660000px;}
.x2a_c01151{left:233.550000px;}
.x39_c01151{left:241.920000px;}
.x21_c01151{left:243.930000px;}
.x6_c01151{left:252.180000px;}
.x14_c01151{left:253.639500px;}
.x41_c01151{left:265.410000px;}
.x2b_c01151{left:270.810000px;}
.x15_c01151{left:298.492500px;}
.x32_c01151{left:299.970000px;}
.x7_c01151{left:330.750000px;}
.x33_c01151{left:333.180000px;}
.x22_c01151{left:334.917000px;}
.x42_c01151{left:345.330000px;}
.x16_c01151{left:353.799000px;}
.x2c_c01151{left:366.390000px;}
.x3a_c01151{left:367.470000px;}
.x43_c01151{left:386.100000px;}
.x8_c01151{left:390.150000px;}
.x34_c01151{left:391.500000px;}
.x23_c01151{left:396.495000px;}
.x2d_c01151{left:398.250000px;}
.x9_c01151{left:426.060000px;}
.x17_c01151{left:431.548500px;}
.x3b_c01151{left:433.890000px;}
.x24_c01151{left:453.714000px;}
.x2e_c01151{left:457.380000px;}
.xa_c01151{left:464.400000px;}
.x3c_c01151{left:466.290000px;}
.x18_c01151{left:475.054500px;}
.xb_c01151{left:486.540000px;}
.x44_c01151{left:489.240000px;}
.x3d_c01151{left:510.030000px;}
.x25_c01151{left:520.896000px;}
.x45_c01151{left:522.180000px;}
.x35_c01151{left:530.820000px;}
.x19_c01151{left:542.239500px;}
.xc_c01151{left:565.920000px;}
.x2f_c01151{left:567.810000px;}
.x1a_c01151{left:573.871500px;}
.x46_c01151{left:576.450000px;}
.x3e_c01151{left:586.980000px;}
.x26_c01151{left:598.458000px;}
.x36_c01151{left:619.920000px;}
.xd_c01151{left:639.630000px;}
.x37_c01151{left:652.050000px;}
.x1b_c01151{left:656.457000px;}
.xe_c01151{left:671.760000px;}
.x3f_c01151{left:678.510000px;}
.x1c_c01151{left:684.277500px;}
.x1_c01151{left:901.800000px;}
@media print{
.v0_c01151{vertical-align:0.000000pt;}
.ls0_c01151{letter-spacing:0.000000pt;}
.ws0_c01151{word-spacing:0.000000pt;}
.fs0_c01151{font-size:16.000000pt;}
.fs1_c01151{font-size:69.333333pt;}
.fs4_c01151{font-size:74.666667pt;}
.fs3_c01151{font-size:80.000000pt;}
.fs2_c01151{font-size:90.666667pt;}
.y0_c01151{bottom:0.000000pt;}
.y1f_c01151{bottom:399.184000pt;}
.y1e_c01151{bottom:431.004000pt;}
.y1d_c01151{bottom:462.934667pt;}
.y1c_c01151{bottom:494.813333pt;}
.y11_c01151{bottom:777.600000pt;}
.y12_c01151{bottom:777.689333pt;}
.y13_c01151{bottom:777.873333pt;}
.y14_c01151{bottom:778.025333pt;}
.y15_c01151{bottom:778.329333pt;}
.y16_c01151{bottom:778.733333pt;}
.y17_c01151{bottom:779.006667pt;}
.y18_c01151{bottom:779.261333pt;}
.y19_c01151{bottom:779.560000pt;}
.y1a_c01151{bottom:779.757333pt;}
.y1b_c01151{bottom:779.905333pt;}
.y3_c01151{bottom:808.561333pt;}
.y4_c01151{bottom:808.582667pt;}
.y5_c01151{bottom:808.866667pt;}
.y6_c01151{bottom:809.014667pt;}
.y7_c01151{bottom:809.241333pt;}
.y8_c01151{bottom:809.701333pt;}
.y9_c01151{bottom:809.940000pt;}
.ya_c01151{bottom:810.234667pt;}
.yb_c01151{bottom:810.649333pt;}
.yc_c01151{bottom:810.881333pt;}
.yd_c01151{bottom:811.240000pt;}
.ye_c01151{bottom:811.409333pt;}
.yf_c01151{bottom:811.849333pt;}
.y10_c01151{bottom:811.997333pt;}
.y2_c01151{bottom:842.276000pt;}
.y1_c01151{bottom:990.000000pt;}
.h2_c01151{height:16.000000pt;}
.h3_c01151{height:69.333333pt;}
.h6_c01151{height:74.666667pt;}
.h5_c01151{height:80.000000pt;}
.h4_c01151{height:90.666667pt;}
.h1_c01151{height:1118.666667pt;}
.h0_c01151{height:1118.880000pt;}
.w0_c01151{width:817.866667pt;}
.w1_c01151{width:818.000000pt;}
.x0_c01151{left:0.000000pt;}
.x2_c01151{left:34.320000pt;}
.xf_c01151{left:35.401333pt;}
.x10_c01151{left:39.004000pt;}
.x1d_c01151{left:71.130667pt;}
.x27_c01151{left:76.560000pt;}
.x11_c01151{left:86.282667pt;}
.x1e_c01151{left:88.901333pt;}
.x12_c01151{left:110.961333pt;}
.x3_c01151{left:117.120000pt;}
.x28_c01151{left:118.080000pt;}
.x1f_c01151{left:125.578667pt;}
.x13_c01151{left:148.689333pt;}
.x20_c01151{left:156.060000pt;}
.x4_c01151{left:165.600000pt;}
.x38_c01151{left:168.720000pt;}
.x29_c01151{left:169.920000pt;}
.x30_c01151{left:174.960000pt;}
.x5_c01151{left:193.440000pt;}
.x40_c01151{left:198.000000pt;}
.x31_c01151{left:205.920000pt;}
.x2a_c01151{left:207.600000pt;}
.x39_c01151{left:215.040000pt;}
.x21_c01151{left:216.826667pt;}
.x6_c01151{left:224.160000pt;}
.x14_c01151{left:225.457333pt;}
.x41_c01151{left:235.920000pt;}
.x2b_c01151{left:240.720000pt;}
.x15_c01151{left:265.326667pt;}
.x32_c01151{left:266.640000pt;}
.x7_c01151{left:294.000000pt;}
.x33_c01151{left:296.160000pt;}
.x22_c01151{left:297.704000pt;}
.x42_c01151{left:306.960000pt;}
.x16_c01151{left:314.488000pt;}
.x2c_c01151{left:325.680000pt;}
.x3a_c01151{left:326.640000pt;}
.x43_c01151{left:343.200000pt;}
.x8_c01151{left:346.800000pt;}
.x34_c01151{left:348.000000pt;}
.x23_c01151{left:352.440000pt;}
.x2d_c01151{left:354.000000pt;}
.x9_c01151{left:378.720000pt;}
.x17_c01151{left:383.598667pt;}
.x3b_c01151{left:385.680000pt;}
.x24_c01151{left:403.301333pt;}
.x2e_c01151{left:406.560000pt;}
.xa_c01151{left:412.800000pt;}
.x3c_c01151{left:414.480000pt;}
.x18_c01151{left:422.270667pt;}
.xb_c01151{left:432.480000pt;}
.x44_c01151{left:434.880000pt;}
.x3d_c01151{left:453.360000pt;}
.x25_c01151{left:463.018667pt;}
.x45_c01151{left:464.160000pt;}
.x35_c01151{left:471.840000pt;}
.x19_c01151{left:481.990667pt;}
.xc_c01151{left:503.040000pt;}
.x2f_c01151{left:504.720000pt;}
.x1a_c01151{left:510.108000pt;}
.x46_c01151{left:512.400000pt;}
.x3e_c01151{left:521.760000pt;}
.x26_c01151{left:531.962667pt;}
.x36_c01151{left:551.040000pt;}
.xd_c01151{left:568.560000pt;}
.x37_c01151{left:579.600000pt;}
.x1b_c01151{left:583.517333pt;}
.xe_c01151{left:597.120000pt;}
.x3f_c01151{left:603.120000pt;}
.x1c_c01151{left:608.246667pt;}
.x1_c01151{left:801.600000pt;}
}





/* 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_c01152 {
    display:none;
  }
  .loading-indicator_c01152.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01152 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_c01152 { 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_c01152" -> "#page-container .classname_c01152")
 */
.pf_c01152 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01152 { /* 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_c01152.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01152 { /* 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_c01152 { /* 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_c01152 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01152 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01152 {overflow:visible;}
  }
}
.c_c01152 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01152 { /* 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_c01152:after { /* webkit #35443 */
  content: '';
}
.t_c01152:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01152 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 */
}
.__c01152 { /* 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_c01152 { /* info for Javascript */
  display:none;
}
.l_c01152 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01152 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01152 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01152: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_c01152 {
    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_c01152.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01152.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_c01152 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01152{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01152;src:url('chunks/assets/font_53ec0c54e60da7c2d414b553.woff2')format("woff");}.ff1_c01152{font-family:ff1_c01152;line-height:1.000000;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;}
.m6a_c01152{transform:matrix(0.025140,0.000856,-0.008504,0.249855,0,0);-ms-transform:matrix(0.025140,0.000856,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.025140,0.000856,-0.008504,0.249855,0,0);}
.ma4_c01152{transform:matrix(0.053004,0.001804,-0.008504,0.249855,0,0);-ms-transform:matrix(0.053004,0.001804,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.053004,0.001804,-0.008504,0.249855,0,0);}
.m18_c01152{transform:matrix(0.102860,0.003501,-0.008504,0.249855,0,0);-ms-transform:matrix(0.102860,0.003501,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.102860,0.003501,-0.008504,0.249855,0,0);}
.m2_c01152{transform:matrix(0.123649,0.005694,-0.011499,0.249735,0,0);-ms-transform:matrix(0.123649,0.005694,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.123649,0.005694,-0.011499,0.249735,0,0);}
.m145_c01152{transform:matrix(0.124739,0.006243,-0.012497,0.249687,0,0);-ms-transform:matrix(0.124739,0.006243,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.124739,0.006243,-0.012497,0.249687,0,0);}
.m6c_c01152{transform:matrix(0.128141,0.004361,-0.008504,0.249855,0,0);-ms-transform:matrix(0.128141,0.004361,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.128141,0.004361,-0.008504,0.249855,0,0);}
.m6d_c01152{transform:matrix(0.136816,0.004656,-0.008504,0.249855,0,0);-ms-transform:matrix(0.136816,0.004656,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.136816,0.004656,-0.008504,0.249855,0,0);}
.m2f_c01152{transform:matrix(0.137560,0.004682,-0.008504,0.249855,0,0);-ms-transform:matrix(0.137560,0.004682,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.137560,0.004682,-0.008504,0.249855,0,0);}
.m0_c01152{transform:matrix(0.138353,0.006371,-0.011499,0.249735,0,0);-ms-transform:matrix(0.138353,0.006371,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.138353,0.006371,-0.011499,0.249735,0,0);}
.m73_c01152{transform:matrix(0.145126,0.004939,-0.008504,0.249855,0,0);-ms-transform:matrix(0.145126,0.004939,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.145126,0.004939,-0.008504,0.249855,0,0);}
.m6f_c01152{transform:matrix(0.145821,0.004963,-0.008504,0.249855,0,0);-ms-transform:matrix(0.145821,0.004963,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.145821,0.004963,-0.008504,0.249855,0,0);}
.m71_c01152{transform:matrix(0.146930,0.005001,-0.008504,0.249855,0,0);-ms-transform:matrix(0.146930,0.005001,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.146930,0.005001,-0.008504,0.249855,0,0);}
.m2e_c01152{transform:matrix(0.150898,0.005136,-0.008504,0.249855,0,0);-ms-transform:matrix(0.150898,0.005136,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.150898,0.005136,-0.008504,0.249855,0,0);}
.m147_c01152{transform:matrix(0.156534,0.007835,-0.012497,0.249687,0,0);-ms-transform:matrix(0.156534,0.007835,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.156534,0.007835,-0.012497,0.249687,0,0);}
.m141_c01152{transform:matrix(0.159835,0.008000,-0.012497,0.249687,0,0);-ms-transform:matrix(0.159835,0.008000,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.159835,0.008000,-0.012497,0.249687,0,0);}
.m70_c01152{transform:matrix(0.159932,0.005443,-0.008504,0.249855,0,0);-ms-transform:matrix(0.159932,0.005443,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.159932,0.005443,-0.008504,0.249855,0,0);}
.m72_c01152{transform:matrix(0.160712,0.005470,-0.008504,0.249855,0,0);-ms-transform:matrix(0.160712,0.005470,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.160712,0.005470,-0.008504,0.249855,0,0);}
.m140_c01152{transform:matrix(0.160854,0.008051,-0.012497,0.249687,0,0);-ms-transform:matrix(0.160854,0.008051,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.160854,0.008051,-0.012497,0.249687,0,0);}
.m6e_c01152{transform:matrix(0.161137,0.005484,-0.008504,0.249855,0,0);-ms-transform:matrix(0.161137,0.005484,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.161137,0.005484,-0.008504,0.249855,0,0);}
.m6b_c01152{transform:matrix(0.162626,0.005535,-0.008504,0.249855,0,0);-ms-transform:matrix(0.162626,0.005535,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.162626,0.005535,-0.008504,0.249855,0,0);}
.me7_c01152{transform:matrix(0.163347,0.006213,-0.009503,0.249819,0,0);-ms-transform:matrix(0.163347,0.006213,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.163347,0.006213,-0.009503,0.249819,0,0);}
.m143_c01152{transform:matrix(0.163530,0.008185,-0.012497,0.249687,0,0);-ms-transform:matrix(0.163530,0.008185,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.163530,0.008185,-0.012497,0.249687,0,0);}
.m74_c01152{transform:matrix(0.164510,0.005599,-0.008504,0.249855,0,0);-ms-transform:matrix(0.164510,0.005599,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.164510,0.005599,-0.008504,0.249855,0,0);}
.m10f_c01152{transform:matrix(0.165624,0.007295,-0.011000,0.249758,0,0);-ms-transform:matrix(0.165624,0.007295,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.165624,0.007295,-0.011000,0.249758,0,0);}
.m14e_c01152{transform:matrix(0.165852,0.008301,-0.012497,0.249687,0,0);-ms-transform:matrix(0.165852,0.008301,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.165852,0.008301,-0.012497,0.249687,0,0);}
.mc0_c01152{transform:matrix(0.166290,0.006325,-0.009503,0.249819,0,0);-ms-transform:matrix(0.166290,0.006325,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.166290,0.006325,-0.009503,0.249819,0,0);}
.m146_c01152{transform:matrix(0.168659,0.008441,-0.012497,0.249687,0,0);-ms-transform:matrix(0.168659,0.008441,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.168659,0.008441,-0.012497,0.249687,0,0);}
.m75_c01152{transform:matrix(0.169877,0.005782,-0.008504,0.249855,0,0);-ms-transform:matrix(0.169877,0.005782,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.169877,0.005782,-0.008504,0.249855,0,0);}
.m10b_c01152{transform:matrix(0.170480,0.007509,-0.011000,0.249758,0,0);-ms-transform:matrix(0.170480,0.007509,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.170480,0.007509,-0.011000,0.249758,0,0);}
.m76_c01152{transform:matrix(0.171256,0.005829,-0.008504,0.249855,0,0);-ms-transform:matrix(0.171256,0.005829,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.171256,0.005829,-0.008504,0.249855,0,0);}
.m10c_c01152{transform:matrix(0.175100,0.007712,-0.011000,0.249758,0,0);-ms-transform:matrix(0.175100,0.007712,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.175100,0.007712,-0.011000,0.249758,0,0);}
.m4_c01152{transform:matrix(0.178635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178635,0.000000,0.000000,0.250000,0,0);}
.m109_c01152{transform:matrix(0.178752,0.007873,-0.011000,0.249758,0,0);-ms-transform:matrix(0.178752,0.007873,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.178752,0.007873,-0.011000,0.249758,0,0);}
.m100_c01152{transform:matrix(0.179440,0.006826,-0.009503,0.249819,0,0);-ms-transform:matrix(0.179440,0.006826,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.179440,0.006826,-0.009503,0.249819,0,0);}
.m3f_c01152{transform:matrix(0.179641,0.006114,-0.008504,0.249855,0,0);-ms-transform:matrix(0.179641,0.006114,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.179641,0.006114,-0.008504,0.249855,0,0);}
.m29_c01152{transform:matrix(0.180176,0.006132,-0.008504,0.249855,0,0);-ms-transform:matrix(0.180176,0.006132,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.180176,0.006132,-0.008504,0.249855,0,0);}
.m13f_c01152{transform:matrix(0.180569,0.009037,-0.012497,0.249687,0,0);-ms-transform:matrix(0.180569,0.009037,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.180569,0.009037,-0.012497,0.249687,0,0);}
.m42_c01152{transform:matrix(0.181290,0.006170,-0.008504,0.249855,0,0);-ms-transform:matrix(0.181290,0.006170,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.181290,0.006170,-0.008504,0.249855,0,0);}
.m13c_c01152{transform:matrix(0.181598,0.009089,-0.012497,0.249687,0,0);-ms-transform:matrix(0.181598,0.009089,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.181598,0.009089,-0.012497,0.249687,0,0);}
.mc1_c01152{transform:matrix(0.181774,0.006914,-0.009503,0.249819,0,0);-ms-transform:matrix(0.181774,0.006914,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.181774,0.006914,-0.009503,0.249819,0,0);}
.m40_c01152{transform:matrix(0.182364,0.006207,-0.008504,0.249855,0,0);-ms-transform:matrix(0.182364,0.006207,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.182364,0.006207,-0.008504,0.249855,0,0);}
.m13d_c01152{transform:matrix(0.182836,0.009151,-0.012497,0.249687,0,0);-ms-transform:matrix(0.182836,0.009151,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.182836,0.009151,-0.012497,0.249687,0,0);}
.m1f_c01152{transform:matrix(0.184068,0.006265,-0.008504,0.249855,0,0);-ms-transform:matrix(0.184068,0.006265,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.184068,0.006265,-0.008504,0.249855,0,0);}
.m3_c01152{transform:matrix(0.184190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184190,0.000000,0.000000,0.250000,0,0);}
.me4_c01152{transform:matrix(0.184911,0.007034,-0.009503,0.249819,0,0);-ms-transform:matrix(0.184911,0.007034,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.184911,0.007034,-0.009503,0.249819,0,0);}
.m10d_c01152{transform:matrix(0.184951,0.008146,-0.011000,0.249758,0,0);-ms-transform:matrix(0.184951,0.008146,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.184951,0.008146,-0.011000,0.249758,0,0);}
.m1c_c01152{transform:matrix(0.185203,0.006303,-0.008504,0.249855,0,0);-ms-transform:matrix(0.185203,0.006303,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.185203,0.006303,-0.008504,0.249855,0,0);}
.m2d_c01152{transform:matrix(0.186277,0.006340,-0.008504,0.249855,0,0);-ms-transform:matrix(0.186277,0.006340,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.186277,0.006340,-0.008504,0.249855,0,0);}
.m13e_c01152{transform:matrix(0.187051,0.009362,-0.012497,0.249687,0,0);-ms-transform:matrix(0.187051,0.009362,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.187051,0.009362,-0.012497,0.249687,0,0);}
.m43_c01152{transform:matrix(0.187272,0.006374,-0.008504,0.249855,0,0);-ms-transform:matrix(0.187272,0.006374,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.187272,0.006374,-0.008504,0.249855,0,0);}
.m110_c01152{transform:matrix(0.187313,0.008250,-0.011000,0.249758,0,0);-ms-transform:matrix(0.187313,0.008250,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.187313,0.008250,-0.011000,0.249758,0,0);}
.m2a_c01152{transform:matrix(0.187392,0.006378,-0.008504,0.249855,0,0);-ms-transform:matrix(0.187392,0.006378,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.187392,0.006378,-0.008504,0.249855,0,0);}
.me5_c01152{transform:matrix(0.187694,0.007140,-0.009503,0.249819,0,0);-ms-transform:matrix(0.187694,0.007140,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.187694,0.007140,-0.009503,0.249819,0,0);}
.m144_c01152{transform:matrix(0.188359,0.009427,-0.012497,0.249687,0,0);-ms-transform:matrix(0.188359,0.009427,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.188359,0.009427,-0.012497,0.249687,0,0);}
.m1a_c01152{transform:matrix(0.188636,0.006420,-0.008504,0.249855,0,0);-ms-transform:matrix(0.188636,0.006420,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.188636,0.006420,-0.008504,0.249855,0,0);}
.m4e_c01152{transform:matrix(0.188876,0.006428,-0.008504,0.249855,0,0);-ms-transform:matrix(0.188876,0.006428,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.188876,0.006428,-0.008504,0.249855,0,0);}
.m45_c01152{transform:matrix(0.189585,0.006452,-0.008504,0.249855,0,0);-ms-transform:matrix(0.189585,0.006452,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.189585,0.006452,-0.008504,0.249855,0,0);}
.mbc_c01152{transform:matrix(0.190502,0.007246,-0.009503,0.249819,0,0);-ms-transform:matrix(0.190502,0.007246,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.190502,0.007246,-0.009503,0.249819,0,0);}
.m1_c01152{transform:matrix(0.194129,0.008939,-0.011499,0.249735,0,0);-ms-transform:matrix(0.194129,0.008939,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.194129,0.008939,-0.011499,0.249735,0,0);}
.m1d_c01152{transform:matrix(0.194542,0.006621,-0.008504,0.249855,0,0);-ms-transform:matrix(0.194542,0.006621,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.194542,0.006621,-0.008504,0.249855,0,0);}
.m142_c01152{transform:matrix(0.195410,0.009780,-0.012497,0.249687,0,0);-ms-transform:matrix(0.195410,0.009780,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.195410,0.009780,-0.012497,0.249687,0,0);}
.m48_c01152{transform:matrix(0.195702,0.006661,-0.008504,0.249855,0,0);-ms-transform:matrix(0.195702,0.006661,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.195702,0.006661,-0.008504,0.249855,0,0);}
.m11c_c01152{transform:matrix(0.195790,0.008623,-0.011000,0.249758,0,0);-ms-transform:matrix(0.195790,0.008623,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.195790,0.008623,-0.011000,0.249758,0,0);}
.m41_c01152{transform:matrix(0.196271,0.006680,-0.008504,0.249855,0,0);-ms-transform:matrix(0.196271,0.006680,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.196271,0.006680,-0.008504,0.249855,0,0);}
.mbb_c01152{transform:matrix(0.197013,0.007494,-0.009503,0.249819,0,0);-ms-transform:matrix(0.197013,0.007494,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.197013,0.007494,-0.009503,0.249819,0,0);}
.mdd_c01152{transform:matrix(0.197187,0.007501,-0.009503,0.249819,0,0);-ms-transform:matrix(0.197187,0.007501,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.197187,0.007501,-0.009503,0.249819,0,0);}
.m3c_c01152{transform:matrix(0.198290,0.006749,-0.008504,0.249855,0,0);-ms-transform:matrix(0.198290,0.006749,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.198290,0.006749,-0.008504,0.249855,0,0);}
.meb_c01152{transform:matrix(0.198591,0.007554,-0.009503,0.249819,0,0);-ms-transform:matrix(0.198591,0.007554,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.198591,0.007554,-0.009503,0.249819,0,0);}
.m105_c01152{transform:matrix(0.198956,0.007568,-0.009503,0.249819,0,0);-ms-transform:matrix(0.198956,0.007568,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.198956,0.007568,-0.009503,0.249819,0,0);}
.m123_c01152{transform:matrix(0.199826,0.008801,-0.011000,0.249758,0,0);-ms-transform:matrix(0.199826,0.008801,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.199826,0.008801,-0.011000,0.249758,0,0);}
.m27_c01152{transform:matrix(0.200134,0.006811,-0.008504,0.249855,0,0);-ms-transform:matrix(0.200134,0.006811,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.200134,0.006811,-0.008504,0.249855,0,0);}
.mf0_c01152{transform:matrix(0.200735,0.007636,-0.009503,0.249819,0,0);-ms-transform:matrix(0.200735,0.007636,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.200735,0.007636,-0.009503,0.249819,0,0);}
.mea_c01152{transform:matrix(0.200755,0.007636,-0.009503,0.249819,0,0);-ms-transform:matrix(0.200755,0.007636,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.200755,0.007636,-0.009503,0.249819,0,0);}
.mbd_c01152{transform:matrix(0.200950,0.007644,-0.009503,0.249819,0,0);-ms-transform:matrix(0.200950,0.007644,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.200950,0.007644,-0.009503,0.249819,0,0);}
.m10a_c01152{transform:matrix(0.201220,0.008863,-0.011000,0.249758,0,0);-ms-transform:matrix(0.201220,0.008863,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.201220,0.008863,-0.011000,0.249758,0,0);}
.m19_c01152{transform:matrix(0.202458,0.006890,-0.008504,0.249855,0,0);-ms-transform:matrix(0.202458,0.006890,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.202458,0.006890,-0.008504,0.249855,0,0);}
.mee_c01152{transform:matrix(0.202953,0.007720,-0.009503,0.249819,0,0);-ms-transform:matrix(0.202953,0.007720,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.202953,0.007720,-0.009503,0.249819,0,0);}
.m108_c01152{transform:matrix(0.203208,0.008950,-0.011000,0.249758,0,0);-ms-transform:matrix(0.203208,0.008950,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.203208,0.008950,-0.011000,0.249758,0,0);}
.mab_c01152{transform:matrix(0.203468,0.007740,-0.009503,0.249819,0,0);-ms-transform:matrix(0.203468,0.007740,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.203468,0.007740,-0.009503,0.249819,0,0);}
.m44_c01152{transform:matrix(0.203957,0.006941,-0.008504,0.249855,0,0);-ms-transform:matrix(0.203957,0.006941,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.203957,0.006941,-0.008504,0.249855,0,0);}
.mf7_c01152{transform:matrix(0.204047,0.007762,-0.009503,0.249819,0,0);-ms-transform:matrix(0.204047,0.007762,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.204047,0.007762,-0.009503,0.249819,0,0);}
.m24_c01152{transform:matrix(0.204197,0.006950,-0.008504,0.249855,0,0);-ms-transform:matrix(0.204197,0.006950,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.204197,0.006950,-0.008504,0.249855,0,0);}
.m26_c01152{transform:matrix(0.204237,0.006951,-0.008504,0.249855,0,0);-ms-transform:matrix(0.204237,0.006951,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.204237,0.006951,-0.008504,0.249855,0,0);}
.mc2_c01152{transform:matrix(0.204702,0.007786,-0.009503,0.249819,0,0);-ms-transform:matrix(0.204702,0.007786,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.204702,0.007786,-0.009503,0.249819,0,0);}
.ma6_c01152{transform:matrix(0.204862,0.007793,-0.009503,0.249819,0,0);-ms-transform:matrix(0.204862,0.007793,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.204862,0.007793,-0.009503,0.249819,0,0);}
.m102_c01152{transform:matrix(0.204952,0.007796,-0.009503,0.249819,0,0);-ms-transform:matrix(0.204952,0.007796,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.204952,0.007796,-0.009503,0.249819,0,0);}
.m53_c01152{transform:matrix(0.205516,0.006995,-0.008504,0.249855,0,0);-ms-transform:matrix(0.205516,0.006995,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.205516,0.006995,-0.008504,0.249855,0,0);}
.m111_c01152{transform:matrix(0.205656,0.009058,-0.011000,0.249758,0,0);-ms-transform:matrix(0.205656,0.009058,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.205656,0.009058,-0.011000,0.249758,0,0);}
.mbf_c01152{transform:matrix(0.205896,0.007832,-0.009503,0.249819,0,0);-ms-transform:matrix(0.205896,0.007832,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.205896,0.007832,-0.009503,0.249819,0,0);}
.m135_c01152{transform:matrix(0.206630,0.009101,-0.011000,0.249758,0,0);-ms-transform:matrix(0.206630,0.009101,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.206630,0.009101,-0.011000,0.249758,0,0);}
.m7e_c01152{transform:matrix(0.206775,0.007037,-0.008504,0.249855,0,0);-ms-transform:matrix(0.206775,0.007037,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.206775,0.007037,-0.008504,0.249855,0,0);}
.m149_c01152{transform:matrix(0.207166,0.010369,-0.012497,0.249687,0,0);-ms-transform:matrix(0.207166,0.010369,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.207166,0.010369,-0.012497,0.249687,0,0);}
.m25_c01152{transform:matrix(0.207250,0.007054,-0.008504,0.249855,0,0);-ms-transform:matrix(0.207250,0.007054,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.207250,0.007054,-0.008504,0.249855,0,0);}
.m10e_c01152{transform:matrix(0.207394,0.009134,-0.011000,0.249758,0,0);-ms-transform:matrix(0.207394,0.009134,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.207394,0.009134,-0.011000,0.249758,0,0);}
.m106_c01152{transform:matrix(0.207745,0.007902,-0.009503,0.249819,0,0);-ms-transform:matrix(0.207745,0.007902,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.207745,0.007902,-0.009503,0.249819,0,0);}
.m4d_c01152{transform:matrix(0.207955,0.007078,-0.008504,0.249855,0,0);-ms-transform:matrix(0.207955,0.007078,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.207955,0.007078,-0.008504,0.249855,0,0);}
.mf_c01152{transform:matrix(0.209179,0.007119,-0.008504,0.249855,0,0);-ms-transform:matrix(0.209179,0.007119,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.209179,0.007119,-0.008504,0.249855,0,0);}
.ma0_c01152{transform:matrix(0.209194,0.007120,-0.008504,0.249855,0,0);-ms-transform:matrix(0.209194,0.007120,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.209194,0.007120,-0.008504,0.249855,0,0);}
.m33_c01152{transform:matrix(0.209814,0.007141,-0.008504,0.249855,0,0);-ms-transform:matrix(0.209814,0.007141,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.209814,0.007141,-0.008504,0.249855,0,0);}
.mbe_c01152{transform:matrix(0.210153,0.007994,-0.009503,0.249819,0,0);-ms-transform:matrix(0.210153,0.007994,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.210153,0.007994,-0.009503,0.249819,0,0);}
.me3_c01152{transform:matrix(0.210263,0.007998,-0.009503,0.249819,0,0);-ms-transform:matrix(0.210263,0.007998,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.210263,0.007998,-0.009503,0.249819,0,0);}
.m4c_c01152{transform:matrix(0.210273,0.007156,-0.008504,0.249855,0,0);-ms-transform:matrix(0.210273,0.007156,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.210273,0.007156,-0.008504,0.249855,0,0);}
.m129_c01152{transform:matrix(0.210346,0.009264,-0.011000,0.249758,0,0);-ms-transform:matrix(0.210346,0.009264,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.210346,0.009264,-0.011000,0.249758,0,0);}
.mec_c01152{transform:matrix(0.210698,0.008015,-0.009503,0.249819,0,0);-ms-transform:matrix(0.210698,0.008015,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.210698,0.008015,-0.009503,0.249819,0,0);}
.m103_c01152{transform:matrix(0.210863,0.008021,-0.009503,0.249819,0,0);-ms-transform:matrix(0.210863,0.008021,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.210863,0.008021,-0.009503,0.249819,0,0);}
.m118_c01152{transform:matrix(0.211060,0.009296,-0.011000,0.249758,0,0);-ms-transform:matrix(0.211060,0.009296,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.211060,0.009296,-0.011000,0.249758,0,0);}
.m36_c01152{transform:matrix(0.211093,0.007184,-0.008504,0.249855,0,0);-ms-transform:matrix(0.211093,0.007184,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.211093,0.007184,-0.008504,0.249855,0,0);}
.m2c_c01152{transform:matrix(0.211243,0.007189,-0.008504,0.249855,0,0);-ms-transform:matrix(0.211243,0.007189,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.211243,0.007189,-0.008504,0.249855,0,0);}
.mdb_c01152{transform:matrix(0.211332,0.008039,-0.009503,0.249819,0,0);-ms-transform:matrix(0.211332,0.008039,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.211332,0.008039,-0.009503,0.249819,0,0);}
.m3e_c01152{transform:matrix(0.211368,0.007194,-0.008504,0.249855,0,0);-ms-transform:matrix(0.211368,0.007194,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.211368,0.007194,-0.008504,0.249855,0,0);}
.mc3_c01152{transform:matrix(0.211997,0.008064,-0.009503,0.249819,0,0);-ms-transform:matrix(0.211997,0.008064,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.211997,0.008064,-0.009503,0.249819,0,0);}
.m130_c01152{transform:matrix(0.212294,0.009350,-0.011000,0.249758,0,0);-ms-transform:matrix(0.212294,0.009350,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.212294,0.009350,-0.011000,0.249758,0,0);}
.m3b_c01152{transform:matrix(0.212732,0.007240,-0.008504,0.249855,0,0);-ms-transform:matrix(0.212732,0.007240,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.212732,0.007240,-0.008504,0.249855,0,0);}
.me1_c01152{transform:matrix(0.213206,0.008110,-0.009503,0.249819,0,0);-ms-transform:matrix(0.213206,0.008110,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.213206,0.008110,-0.009503,0.249819,0,0);}
.m1b_c01152{transform:matrix(0.213351,0.007261,-0.008504,0.249855,0,0);-ms-transform:matrix(0.213351,0.007261,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.213351,0.007261,-0.008504,0.249855,0,0);}
.m153_c01152{transform:matrix(0.214125,0.011146,-0.012995,0.249662,0,0);-ms-transform:matrix(0.214125,0.011146,-0.012995,0.249662,0,0);-webkit-transform:matrix(0.214125,0.011146,-0.012995,0.249662,0,0);}
.m11b_c01152{transform:matrix(0.214207,0.009435,-0.011000,0.249758,0,0);-ms-transform:matrix(0.214207,0.009435,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.214207,0.009435,-0.011000,0.249758,0,0);}
.m62_c01152{transform:matrix(0.214806,0.007311,-0.008504,0.249855,0,0);-ms-transform:matrix(0.214806,0.007311,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.214806,0.007311,-0.008504,0.249855,0,0);}
.m107_c01152{transform:matrix(0.215459,0.008196,-0.009503,0.249819,0,0);-ms-transform:matrix(0.215459,0.008196,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.215459,0.008196,-0.009503,0.249819,0,0);}
.m11_c01152{transform:matrix(0.215590,0.007337,-0.008504,0.249855,0,0);-ms-transform:matrix(0.215590,0.007337,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.215590,0.007337,-0.008504,0.249855,0,0);}
.m3d_c01152{transform:matrix(0.215650,0.007339,-0.008504,0.249855,0,0);-ms-transform:matrix(0.215650,0.007339,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.215650,0.007339,-0.008504,0.249855,0,0);}
.md_c01152{transform:matrix(0.215690,0.007341,-0.008504,0.249855,0,0);-ms-transform:matrix(0.215690,0.007341,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.215690,0.007341,-0.008504,0.249855,0,0);}
.me8_c01152{transform:matrix(0.215709,0.008205,-0.009503,0.249819,0,0);-ms-transform:matrix(0.215709,0.008205,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.215709,0.008205,-0.009503,0.249819,0,0);}
.m52_c01152{transform:matrix(0.216180,0.007357,-0.008504,0.249855,0,0);-ms-transform:matrix(0.216180,0.007357,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.216180,0.007357,-0.008504,0.249855,0,0);}
.m28_c01152{transform:matrix(0.217259,0.007394,-0.008504,0.249855,0,0);-ms-transform:matrix(0.217259,0.007394,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.217259,0.007394,-0.008504,0.249855,0,0);}
.m22_c01152{transform:matrix(0.217269,0.007395,-0.008504,0.249855,0,0);-ms-transform:matrix(0.217269,0.007395,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.217269,0.007395,-0.008504,0.249855,0,0);}
.mb8_c01152{transform:matrix(0.217343,0.008267,-0.009503,0.249819,0,0);-ms-transform:matrix(0.217343,0.008267,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.217343,0.008267,-0.009503,0.249819,0,0);}
.m20_c01152{transform:matrix(0.217424,0.007400,-0.008504,0.249855,0,0);-ms-transform:matrix(0.217424,0.007400,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.217424,0.007400,-0.008504,0.249855,0,0);}
.m4b_c01152{transform:matrix(0.217454,0.007401,-0.008504,0.249855,0,0);-ms-transform:matrix(0.217454,0.007401,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.217454,0.007401,-0.008504,0.249855,0,0);}
.mdc_c01152{transform:matrix(0.217822,0.008286,-0.009503,0.249819,0,0);-ms-transform:matrix(0.217822,0.008286,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.217822,0.008286,-0.009503,0.249819,0,0);}
.m23_c01152{transform:matrix(0.217859,0.007415,-0.008504,0.249855,0,0);-ms-transform:matrix(0.217859,0.007415,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.217859,0.007415,-0.008504,0.249855,0,0);}
.m13a_c01152{transform:matrix(0.218203,0.009611,-0.011000,0.249758,0,0);-ms-transform:matrix(0.218203,0.009611,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.218203,0.009611,-0.011000,0.249758,0,0);}
.me0_c01152{transform:matrix(0.218302,0.008304,-0.009503,0.249819,0,0);-ms-transform:matrix(0.218302,0.008304,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.218302,0.008304,-0.009503,0.249819,0,0);}
.m46_c01152{transform:matrix(0.218399,0.007433,-0.008504,0.249855,0,0);-ms-transform:matrix(0.218399,0.007433,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.218399,0.007433,-0.008504,0.249855,0,0);}
.m39_c01152{transform:matrix(0.218798,0.007447,-0.008504,0.249855,0,0);-ms-transform:matrix(0.218798,0.007447,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.218798,0.007447,-0.008504,0.249855,0,0);}
.m119_c01152{transform:matrix(0.218888,0.009641,-0.011000,0.249758,0,0);-ms-transform:matrix(0.218888,0.009641,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.218888,0.009641,-0.011000,0.249758,0,0);}
.mfd_c01152{transform:matrix(0.219216,0.008339,-0.009503,0.249819,0,0);-ms-transform:matrix(0.219216,0.008339,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.219216,0.008339,-0.009503,0.249819,0,0);}
.m157_c01152{transform:matrix(0.219588,0.011430,-0.012995,0.249662,0,0);-ms-transform:matrix(0.219588,0.011430,-0.012995,0.249662,0,0);-webkit-transform:matrix(0.219588,0.011430,-0.012995,0.249662,0,0);}
.m14b_c01152{transform:matrix(0.219660,0.010994,-0.012497,0.249687,0,0);-ms-transform:matrix(0.219660,0.010994,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.219660,0.010994,-0.012497,0.249687,0,0);}
.m14_c01152{transform:matrix(0.220063,0.007490,-0.008504,0.249855,0,0);-ms-transform:matrix(0.220063,0.007490,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.220063,0.007490,-0.008504,0.249855,0,0);}
.mef_c01152{transform:matrix(0.220461,0.008386,-0.009503,0.249819,0,0);-ms-transform:matrix(0.220461,0.008386,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.220461,0.008386,-0.009503,0.249819,0,0);}
.med_c01152{transform:matrix(0.220910,0.008403,-0.009503,0.249819,0,0);-ms-transform:matrix(0.220910,0.008403,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.220910,0.008403,-0.009503,0.249819,0,0);}
.m9d_c01152{transform:matrix(0.221077,0.007524,-0.008504,0.249855,0,0);-ms-transform:matrix(0.221077,0.007524,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.221077,0.007524,-0.008504,0.249855,0,0);}
.m47_c01152{transform:matrix(0.221327,0.007533,-0.008504,0.249855,0,0);-ms-transform:matrix(0.221327,0.007533,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.221327,0.007533,-0.008504,0.249855,0,0);}
.m21_c01152{transform:matrix(0.221712,0.007546,-0.008504,0.249855,0,0);-ms-transform:matrix(0.221712,0.007546,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.221712,0.007546,-0.008504,0.249855,0,0);}
.m83_c01152{transform:matrix(0.221907,0.007552,-0.008504,0.249855,0,0);-ms-transform:matrix(0.221907,0.007552,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.221907,0.007552,-0.008504,0.249855,0,0);}
.m1e_c01152{transform:matrix(0.222121,0.007560,-0.008504,0.249855,0,0);-ms-transform:matrix(0.222121,0.007560,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.222121,0.007560,-0.008504,0.249855,0,0);}
.mb6_c01152{transform:matrix(0.222449,0.008462,-0.009503,0.249819,0,0);-ms-transform:matrix(0.222449,0.008462,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.222449,0.008462,-0.009503,0.249819,0,0);}
.m11e_c01152{transform:matrix(0.223563,0.009847,-0.011000,0.249758,0,0);-ms-transform:matrix(0.223563,0.009847,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.223563,0.009847,-0.011000,0.249758,0,0);}
.m2b_c01152{transform:matrix(0.224350,0.007636,-0.008504,0.249855,0,0);-ms-transform:matrix(0.224350,0.007636,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.224350,0.007636,-0.008504,0.249855,0,0);}
.me6_c01152{transform:matrix(0.224468,0.008538,-0.009503,0.249819,0,0);-ms-transform:matrix(0.224468,0.008538,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.224468,0.008538,-0.009503,0.249819,0,0);}
.m101_c01152{transform:matrix(0.224503,0.008540,-0.009503,0.249819,0,0);-ms-transform:matrix(0.224503,0.008540,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.224503,0.008540,-0.009503,0.249819,0,0);}
.m87_c01152{transform:matrix(0.224550,0.007642,-0.008504,0.249855,0,0);-ms-transform:matrix(0.224550,0.007642,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.224550,0.007642,-0.008504,0.249855,0,0);}
.m9f_c01152{transform:matrix(0.224900,0.007654,-0.008504,0.249855,0,0);-ms-transform:matrix(0.224900,0.007654,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.224900,0.007654,-0.008504,0.249855,0,0);}
.m5e_c01152{transform:matrix(0.225714,0.007682,-0.008504,0.249855,0,0);-ms-transform:matrix(0.225714,0.007682,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.225714,0.007682,-0.008504,0.249855,0,0);}
.m4a_c01152{transform:matrix(0.225809,0.007685,-0.008504,0.249855,0,0);-ms-transform:matrix(0.225809,0.007685,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.225809,0.007685,-0.008504,0.249855,0,0);}
.m34_c01152{transform:matrix(0.225894,0.007688,-0.008504,0.249855,0,0);-ms-transform:matrix(0.225894,0.007688,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.225894,0.007688,-0.008504,0.249855,0,0);}
.m14c_c01152{transform:matrix(0.226387,0.011331,-0.012497,0.249687,0,0);-ms-transform:matrix(0.226387,0.011331,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.226387,0.011331,-0.012497,0.249687,0,0);}
.m158_c01152{transform:matrix(0.226958,0.011814,-0.012995,0.249662,0,0);-ms-transform:matrix(0.226958,0.011814,-0.012995,0.249662,0,0);-webkit-transform:matrix(0.226958,0.011814,-0.012995,0.249662,0,0);}
.m37_c01152{transform:matrix(0.227128,0.007730,-0.008504,0.249855,0,0);-ms-transform:matrix(0.227128,0.007730,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.227128,0.007730,-0.008504,0.249855,0,0);}
.mda_c01152{transform:matrix(0.227251,0.008644,-0.009503,0.249819,0,0);-ms-transform:matrix(0.227251,0.008644,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.227251,0.008644,-0.009503,0.249819,0,0);}
.me_c01152{transform:matrix(0.227408,0.007740,-0.008504,0.249855,0,0);-ms-transform:matrix(0.227408,0.007740,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.227408,0.007740,-0.008504,0.249855,0,0);}
.mae_c01152{transform:matrix(0.227461,0.008652,-0.009503,0.249819,0,0);-ms-transform:matrix(0.227461,0.008652,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.227461,0.008652,-0.009503,0.249819,0,0);}
.mb4_c01152{transform:matrix(0.228005,0.008673,-0.009503,0.249819,0,0);-ms-transform:matrix(0.228005,0.008673,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.228005,0.008673,-0.009503,0.249819,0,0);}
.mb_c01152{transform:matrix(0.228028,0.007761,-0.008504,0.249855,0,0);-ms-transform:matrix(0.228028,0.007761,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.228028,0.007761,-0.008504,0.249855,0,0);}
.m148_c01152{transform:matrix(0.228070,0.011415,-0.012497,0.249687,0,0);-ms-transform:matrix(0.228070,0.011415,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.228070,0.011415,-0.012497,0.249687,0,0);}
.md5_c01152{transform:matrix(0.228645,0.008697,-0.009503,0.249819,0,0);-ms-transform:matrix(0.228645,0.008697,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.228645,0.008697,-0.009503,0.249819,0,0);}
.m120_c01152{transform:matrix(0.229108,0.010091,-0.011000,0.249758,0,0);-ms-transform:matrix(0.229108,0.010091,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.229108,0.010091,-0.011000,0.249758,0,0);}
.m104_c01152{transform:matrix(0.229234,0.008720,-0.009503,0.249819,0,0);-ms-transform:matrix(0.229234,0.008720,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.229234,0.008720,-0.009503,0.249819,0,0);}
.m66_c01152{transform:matrix(0.229392,0.007807,-0.008504,0.249855,0,0);-ms-transform:matrix(0.229392,0.007807,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.229392,0.007807,-0.008504,0.249855,0,0);}
.mff_c01152{transform:matrix(0.229854,0.008743,-0.009503,0.249819,0,0);-ms-transform:matrix(0.229854,0.008743,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.229854,0.008743,-0.009503,0.249819,0,0);}
.m137_c01152{transform:matrix(0.230691,0.010161,-0.011000,0.249758,0,0);-ms-transform:matrix(0.230691,0.010161,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.230691,0.010161,-0.011000,0.249758,0,0);}
.mde_c01152{transform:matrix(0.230713,0.008776,-0.009503,0.249819,0,0);-ms-transform:matrix(0.230713,0.008776,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.230713,0.008776,-0.009503,0.249819,0,0);}
.m3a_c01152{transform:matrix(0.230781,0.007854,-0.008504,0.249855,0,0);-ms-transform:matrix(0.230781,0.007854,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.230781,0.007854,-0.008504,0.249855,0,0);}
.ma1_c01152{transform:matrix(0.230911,0.007859,-0.008504,0.249855,0,0);-ms-transform:matrix(0.230911,0.007859,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.230911,0.007859,-0.008504,0.249855,0,0);}
.ma7_c01152{transform:matrix(0.231033,0.008788,-0.009503,0.249819,0,0);-ms-transform:matrix(0.231033,0.008788,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.231033,0.008788,-0.009503,0.249819,0,0);}
.m89_c01152{transform:matrix(0.231341,0.007873,-0.008504,0.249855,0,0);-ms-transform:matrix(0.231341,0.007873,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.231341,0.007873,-0.008504,0.249855,0,0);}
.m156_c01152{transform:matrix(0.231432,0.012046,-0.012995,0.249662,0,0);-ms-transform:matrix(0.231432,0.012046,-0.012995,0.249662,0,0);-webkit-transform:matrix(0.231432,0.012046,-0.012995,0.249662,0,0);}
.m14a_c01152{transform:matrix(0.231460,0.011585,-0.012497,0.249687,0,0);-ms-transform:matrix(0.231460,0.011585,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.231460,0.011585,-0.012497,0.249687,0,0);}
.m50_c01152{transform:matrix(0.231526,0.007880,-0.008504,0.249855,0,0);-ms-transform:matrix(0.231526,0.007880,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.231526,0.007880,-0.008504,0.249855,0,0);}
.m11d_c01152{transform:matrix(0.231700,0.010205,-0.011000,0.249758,0,0);-ms-transform:matrix(0.231700,0.010205,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.231700,0.010205,-0.011000,0.249758,0,0);}
.m131_c01152{transform:matrix(0.232290,0.010231,-0.011000,0.249758,0,0);-ms-transform:matrix(0.232290,0.010231,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.232290,0.010231,-0.011000,0.249758,0,0);}
.m49_c01152{transform:matrix(0.232855,0.007925,-0.008504,0.249855,0,0);-ms-transform:matrix(0.232855,0.007925,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.232855,0.007925,-0.008504,0.249855,0,0);}
.mfe_c01152{transform:matrix(0.233251,0.008872,-0.009503,0.249819,0,0);-ms-transform:matrix(0.233251,0.008872,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.233251,0.008872,-0.009503,0.249819,0,0);}
.m13_c01152{transform:matrix(0.233290,0.007940,-0.008504,0.249855,0,0);-ms-transform:matrix(0.233290,0.007940,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.233290,0.007940,-0.008504,0.249855,0,0);}
.m30_c01152{transform:matrix(0.233755,0.007956,-0.008504,0.249855,0,0);-ms-transform:matrix(0.233755,0.007956,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.233755,0.007956,-0.008504,0.249855,0,0);}
.me9_c01152{transform:matrix(0.233926,0.008898,-0.009503,0.249819,0,0);-ms-transform:matrix(0.233926,0.008898,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.233926,0.008898,-0.009503,0.249819,0,0);}
.m14f_c01152{transform:matrix(0.234012,0.011712,-0.012497,0.249687,0,0);-ms-transform:matrix(0.234012,0.011712,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.234012,0.011712,-0.012497,0.249687,0,0);}
.m4f_c01152{transform:matrix(0.234025,0.007965,-0.008504,0.249855,0,0);-ms-transform:matrix(0.234025,0.007965,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.234025,0.007965,-0.008504,0.249855,0,0);}
.m11f_c01152{transform:matrix(0.234113,0.010311,-0.011000,0.249758,0,0);-ms-transform:matrix(0.234113,0.010311,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.234113,0.010311,-0.011000,0.249758,0,0);}
.m5f_c01152{transform:matrix(0.234649,0.007986,-0.008504,0.249855,0,0);-ms-transform:matrix(0.234649,0.007986,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.234649,0.007986,-0.008504,0.249855,0,0);}
.mf9_c01152{transform:matrix(0.234715,0.008928,-0.009503,0.249819,0,0);-ms-transform:matrix(0.234715,0.008928,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.234715,0.008928,-0.009503,0.249819,0,0);}
.m11a_c01152{transform:matrix(0.235487,0.010372,-0.011000,0.249758,0,0);-ms-transform:matrix(0.235487,0.010372,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.235487,0.010372,-0.011000,0.249758,0,0);}
.m159_c01152{transform:matrix(0.235641,0.012266,-0.012995,0.249662,0,0);-ms-transform:matrix(0.235641,0.012266,-0.012995,0.249662,0,0);-webkit-transform:matrix(0.235641,0.012266,-0.012995,0.249662,0,0);}
.m6_c01152{transform:matrix(0.235858,0.008027,-0.008504,0.249855,0,0);-ms-transform:matrix(0.235858,0.008027,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.235858,0.008027,-0.008504,0.249855,0,0);}
.m54_c01152{transform:matrix(0.235968,0.008031,-0.008504,0.249855,0,0);-ms-transform:matrix(0.235968,0.008031,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.235968,0.008031,-0.008504,0.249855,0,0);}
.m136_c01152{transform:matrix(0.236116,0.010400,-0.011000,0.249758,0,0);-ms-transform:matrix(0.236116,0.010400,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.236116,0.010400,-0.011000,0.249758,0,0);}
.m69_c01152{transform:matrix(0.236428,0.008047,-0.008504,0.249855,0,0);-ms-transform:matrix(0.236428,0.008047,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.236428,0.008047,-0.008504,0.249855,0,0);}
.ma8_c01152{transform:matrix(0.237153,0.009021,-0.009503,0.249819,0,0);-ms-transform:matrix(0.237153,0.009021,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.237153,0.009021,-0.009503,0.249819,0,0);}
.m12_c01152{transform:matrix(0.237647,0.008088,-0.008504,0.249855,0,0);-ms-transform:matrix(0.237647,0.008088,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.237647,0.008088,-0.008504,0.249855,0,0);}
.m14d_c01152{transform:matrix(0.237648,0.011894,-0.012497,0.249687,0,0);-ms-transform:matrix(0.237648,0.011894,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.237648,0.011894,-0.012497,0.249687,0,0);}
.maf_c01152{transform:matrix(0.237748,0.009043,-0.009503,0.249819,0,0);-ms-transform:matrix(0.237748,0.009043,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.237748,0.009043,-0.009503,0.249819,0,0);}
.m67_c01152{transform:matrix(0.237887,0.008096,-0.008504,0.249855,0,0);-ms-transform:matrix(0.237887,0.008096,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.237887,0.008096,-0.008504,0.249855,0,0);}
.m139_c01152{transform:matrix(0.237949,0.010480,-0.011000,0.249758,0,0);-ms-transform:matrix(0.237949,0.010480,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.237949,0.010480,-0.011000,0.249758,0,0);}
.m95_c01152{transform:matrix(0.238007,0.008100,-0.008504,0.249855,0,0);-ms-transform:matrix(0.238007,0.008100,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.238007,0.008100,-0.008504,0.249855,0,0);}
.md3_c01152{transform:matrix(0.238183,0.009060,-0.009503,0.249819,0,0);-ms-transform:matrix(0.238183,0.009060,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.238183,0.009060,-0.009503,0.249819,0,0);}
.m151_c01152{transform:matrix(0.238832,0.012432,-0.012995,0.249662,0,0);-ms-transform:matrix(0.238832,0.012432,-0.012995,0.249662,0,0);-webkit-transform:matrix(0.238832,0.012432,-0.012995,0.249662,0,0);}
.mad_c01152{transform:matrix(0.239212,0.009099,-0.009503,0.249819,0,0);-ms-transform:matrix(0.239212,0.009099,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.239212,0.009099,-0.009503,0.249819,0,0);}
.m58_c01152{transform:matrix(0.239771,0.008160,-0.008504,0.249855,0,0);-ms-transform:matrix(0.239771,0.008160,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.239771,0.008160,-0.008504,0.249855,0,0);}
.m51_c01152{transform:matrix(0.239876,0.008164,-0.008504,0.249855,0,0);-ms-transform:matrix(0.239876,0.008164,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.239876,0.008164,-0.008504,0.249855,0,0);}
.md0_c01152{transform:matrix(0.240421,0.009145,-0.009503,0.249819,0,0);-ms-transform:matrix(0.240421,0.009145,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.240421,0.009145,-0.009503,0.249819,0,0);}
.m138_c01152{transform:matrix(0.240627,0.010598,-0.011000,0.249758,0,0);-ms-transform:matrix(0.240627,0.010598,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.240627,0.010598,-0.011000,0.249758,0,0);}
.m116_c01152{transform:matrix(0.241176,0.010622,-0.011000,0.249758,0,0);-ms-transform:matrix(0.241176,0.010622,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.241176,0.010622,-0.011000,0.249758,0,0);}
.ma2_c01152{transform:matrix(0.241305,0.008213,-0.008504,0.249855,0,0);-ms-transform:matrix(0.241305,0.008213,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.241305,0.008213,-0.008504,0.249855,0,0);}
.m17_c01152{transform:matrix(0.241570,0.008222,-0.008504,0.249855,0,0);-ms-transform:matrix(0.241570,0.008222,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.241570,0.008222,-0.008504,0.249855,0,0);}
.m81_c01152{transform:matrix(0.241855,0.008231,-0.008504,0.249855,0,0);-ms-transform:matrix(0.241855,0.008231,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.241855,0.008231,-0.008504,0.249855,0,0);}
.me2_c01152{transform:matrix(0.241955,0.009203,-0.009503,0.249819,0,0);-ms-transform:matrix(0.241955,0.009203,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.241955,0.009203,-0.009503,0.249819,0,0);}
.mdf_c01152{transform:matrix(0.242200,0.009213,-0.009503,0.249819,0,0);-ms-transform:matrix(0.242200,0.009213,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.242200,0.009213,-0.009503,0.249819,0,0);}
.m9e_c01152{transform:matrix(0.242405,0.008250,-0.008504,0.249855,0,0);-ms-transform:matrix(0.242405,0.008250,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.242405,0.008250,-0.008504,0.249855,0,0);}
.m7c_c01152{transform:matrix(0.243354,0.008282,-0.008504,0.249855,0,0);-ms-transform:matrix(0.243354,0.008282,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.243354,0.008282,-0.008504,0.249855,0,0);}
.md1_c01152{transform:matrix(0.244078,0.009284,-0.009503,0.249819,0,0);-ms-transform:matrix(0.244078,0.009284,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.244078,0.009284,-0.009503,0.249819,0,0);}
.m97_c01152{transform:matrix(0.244169,0.008310,-0.008504,0.249855,0,0);-ms-transform:matrix(0.244169,0.008310,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.244169,0.008310,-0.008504,0.249855,0,0);}
.md8_c01152{transform:matrix(0.244593,0.009304,-0.009503,0.249819,0,0);-ms-transform:matrix(0.244593,0.009304,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.244593,0.009304,-0.009503,0.249819,0,0);}
.m9c_c01152{transform:matrix(0.245113,0.008342,-0.008504,0.249855,0,0);-ms-transform:matrix(0.245113,0.008342,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.245113,0.008342,-0.008504,0.249855,0,0);}
.mf5_c01152{transform:matrix(0.245298,0.009331,-0.009503,0.249819,0,0);-ms-transform:matrix(0.245298,0.009331,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.245298,0.009331,-0.009503,0.249819,0,0);}
.m8e_c01152{transform:matrix(0.245333,0.008350,-0.008504,0.249855,0,0);-ms-transform:matrix(0.245333,0.008350,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.245333,0.008350,-0.008504,0.249855,0,0);}
.m134_c01152{transform:matrix(0.245487,0.010812,-0.011000,0.249758,0,0);-ms-transform:matrix(0.245487,0.010812,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.245487,0.010812,-0.011000,0.249758,0,0);}
.m9b_c01152{transform:matrix(0.245878,0.008368,-0.008504,0.249855,0,0);-ms-transform:matrix(0.245878,0.008368,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.245878,0.008368,-0.008504,0.249855,0,0);}
.mfb_c01152{transform:matrix(0.246047,0.009359,-0.009503,0.249819,0,0);-ms-transform:matrix(0.246047,0.009359,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.246047,0.009359,-0.009503,0.249819,0,0);}
.m99_c01152{transform:matrix(0.246452,0.008388,-0.008504,0.249855,0,0);-ms-transform:matrix(0.246452,0.008388,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.246452,0.008388,-0.008504,0.249855,0,0);}
.m79_c01152{transform:matrix(0.246587,0.008392,-0.008504,0.249855,0,0);-ms-transform:matrix(0.246587,0.008392,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.246587,0.008392,-0.008504,0.249855,0,0);}
.m155_c01152{transform:matrix(0.246796,0.012846,-0.012995,0.249662,0,0);-ms-transform:matrix(0.246796,0.012846,-0.012995,0.249662,0,0);-webkit-transform:matrix(0.246796,0.012846,-0.012995,0.249662,0,0);}
.m32_c01152{transform:matrix(0.247357,0.008419,-0.008504,0.249855,0,0);-ms-transform:matrix(0.247357,0.008419,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.247357,0.008419,-0.008504,0.249855,0,0);}
.md6_c01152{transform:matrix(0.247506,0.009415,-0.009503,0.249819,0,0);-ms-transform:matrix(0.247506,0.009415,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.247506,0.009415,-0.009503,0.249819,0,0);}
.m117_c01152{transform:matrix(0.247545,0.010903,-0.011000,0.249758,0,0);-ms-transform:matrix(0.247545,0.010903,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.247545,0.010903,-0.011000,0.249758,0,0);}
.m133_c01152{transform:matrix(0.248005,0.010923,-0.011000,0.249758,0,0);-ms-transform:matrix(0.248005,0.010923,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.248005,0.010923,-0.011000,0.249758,0,0);}
.mb3_c01152{transform:matrix(0.249290,0.009482,-0.009503,0.249819,0,0);-ms-transform:matrix(0.249290,0.009482,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.249290,0.009482,-0.009503,0.249819,0,0);}
.m152_c01152{transform:matrix(0.249517,0.012988,-0.012995,0.249662,0,0);-ms-transform:matrix(0.249517,0.012988,-0.012995,0.249662,0,0);-webkit-transform:matrix(0.249517,0.012988,-0.012995,0.249662,0,0);}
.m115_c01152{transform:matrix(0.251017,0.011056,-0.011000,0.249758,0,0);-ms-transform:matrix(0.251017,0.011056,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.251017,0.011056,-0.011000,0.249758,0,0);}
.mf6_c01152{transform:matrix(0.251218,0.009556,-0.009503,0.249819,0,0);-ms-transform:matrix(0.251218,0.009556,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.251218,0.009556,-0.009503,0.249819,0,0);}
.m8d_c01152{transform:matrix(0.251449,0.008558,-0.008504,0.249855,0,0);-ms-transform:matrix(0.251449,0.008558,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.251449,0.008558,-0.008504,0.249855,0,0);}
.m126_c01152{transform:matrix(0.251451,0.011075,-0.011000,0.249758,0,0);-ms-transform:matrix(0.251451,0.011075,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.251451,0.011075,-0.011000,0.249758,0,0);}
.ma9_c01152{transform:matrix(0.251538,0.009568,-0.009503,0.249819,0,0);-ms-transform:matrix(0.251538,0.009568,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.251538,0.009568,-0.009503,0.249819,0,0);}
.mc8_c01152{transform:matrix(0.252163,0.009592,-0.009503,0.249819,0,0);-ms-transform:matrix(0.252163,0.009592,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.252163,0.009592,-0.009503,0.249819,0,0);}
.m80_c01152{transform:matrix(0.252679,0.008600,-0.008504,0.249855,0,0);-ms-transform:matrix(0.252679,0.008600,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.252679,0.008600,-0.008504,0.249855,0,0);}
.maa_c01152{transform:matrix(0.252742,0.009614,-0.009503,0.249819,0,0);-ms-transform:matrix(0.252742,0.009614,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.252742,0.009614,-0.009503,0.249819,0,0);}
.mac_c01152{transform:matrix(0.252912,0.009620,-0.009503,0.249819,0,0);-ms-transform:matrix(0.252912,0.009620,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.252912,0.009620,-0.009503,0.249819,0,0);}
.m9_c01152{transform:matrix(0.253338,0.008622,-0.008504,0.249855,0,0);-ms-transform:matrix(0.253338,0.008622,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.253338,0.008622,-0.008504,0.249855,0,0);}
.m31_c01152{transform:matrix(0.253753,0.008636,-0.008504,0.249855,0,0);-ms-transform:matrix(0.253753,0.008636,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.253753,0.008636,-0.008504,0.249855,0,0);}
.m12d_c01152{transform:matrix(0.254004,0.011187,-0.011000,0.249758,0,0);-ms-transform:matrix(0.254004,0.011187,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.254004,0.011187,-0.011000,0.249758,0,0);}
.m93_c01152{transform:matrix(0.254048,0.008646,-0.008504,0.249855,0,0);-ms-transform:matrix(0.254048,0.008646,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.254048,0.008646,-0.008504,0.249855,0,0);}
.m154_c01152{transform:matrix(0.254475,0.013246,-0.012995,0.249662,0,0);-ms-transform:matrix(0.254475,0.013246,-0.012995,0.249662,0,0);-webkit-transform:matrix(0.254475,0.013246,-0.012995,0.249662,0,0);}
.mca_c01152{transform:matrix(0.254756,0.009690,-0.009503,0.249819,0,0);-ms-transform:matrix(0.254756,0.009690,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.254756,0.009690,-0.009503,0.249819,0,0);}
.md2_c01152{transform:matrix(0.255086,0.009703,-0.009503,0.249819,0,0);-ms-transform:matrix(0.255086,0.009703,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.255086,0.009703,-0.009503,0.249819,0,0);}
.m10_c01152{transform:matrix(0.255132,0.008683,-0.008504,0.249855,0,0);-ms-transform:matrix(0.255132,0.008683,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.255132,0.008683,-0.008504,0.249855,0,0);}
.m85_c01152{transform:matrix(0.255292,0.008689,-0.008504,0.249855,0,0);-ms-transform:matrix(0.255292,0.008689,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.255292,0.008689,-0.008504,0.249855,0,0);}
.m7d_c01152{transform:matrix(0.256042,0.008714,-0.008504,0.249855,0,0);-ms-transform:matrix(0.256042,0.008714,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.256042,0.008714,-0.008504,0.249855,0,0);}
.m15_c01152{transform:matrix(0.256292,0.008723,-0.008504,0.249855,0,0);-ms-transform:matrix(0.256292,0.008723,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.256292,0.008723,-0.008504,0.249855,0,0);}
.m121_c01152{transform:matrix(0.256636,0.011303,-0.011000,0.249758,0,0);-ms-transform:matrix(0.256636,0.011303,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.256636,0.011303,-0.011000,0.249758,0,0);}
.m5_c01152{transform:matrix(0.256881,0.008743,-0.008504,0.249855,0,0);-ms-transform:matrix(0.256881,0.008743,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.256881,0.008743,-0.008504,0.249855,0,0);}
.mb2_c01152{transform:matrix(0.257014,0.009776,-0.009503,0.249819,0,0);-ms-transform:matrix(0.257014,0.009776,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.257014,0.009776,-0.009503,0.249819,0,0);}
.m12f_c01152{transform:matrix(0.257370,0.011336,-0.011000,0.249758,0,0);-ms-transform:matrix(0.257370,0.011336,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.257370,0.011336,-0.011000,0.249758,0,0);}
.m35_c01152{transform:matrix(0.257416,0.008761,-0.008504,0.249855,0,0);-ms-transform:matrix(0.257416,0.008761,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.257416,0.008761,-0.008504,0.249855,0,0);}
.mf4_c01152{transform:matrix(0.257694,0.009802,-0.009503,0.249819,0,0);-ms-transform:matrix(0.257694,0.009802,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.257694,0.009802,-0.009503,0.249819,0,0);}
.m5a_c01152{transform:matrix(0.258166,0.008786,-0.008504,0.249855,0,0);-ms-transform:matrix(0.258166,0.008786,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.258166,0.008786,-0.008504,0.249855,0,0);}
.m55_c01152{transform:matrix(0.258480,0.008797,-0.008504,0.249855,0,0);-ms-transform:matrix(0.258480,0.008797,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.258480,0.008797,-0.008504,0.249855,0,0);}
.ma5_c01152{transform:matrix(0.259103,0.009856,-0.009503,0.249819,0,0);-ms-transform:matrix(0.259103,0.009856,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.259103,0.009856,-0.009503,0.249819,0,0);}
.mcf_c01152{transform:matrix(0.259637,0.009876,-0.009503,0.249819,0,0);-ms-transform:matrix(0.259637,0.009876,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.259637,0.009876,-0.009503,0.249819,0,0);}
.m8b_c01152{transform:matrix(0.259690,0.008838,-0.008504,0.249855,0,0);-ms-transform:matrix(0.259690,0.008838,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.259690,0.008838,-0.008504,0.249855,0,0);}
.m78_c01152{transform:matrix(0.260414,0.008863,-0.008504,0.249855,0,0);-ms-transform:matrix(0.260414,0.008863,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.260414,0.008863,-0.008504,0.249855,0,0);}
.m92_c01152{transform:matrix(0.260489,0.008865,-0.008504,0.249855,0,0);-ms-transform:matrix(0.260489,0.008865,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.260489,0.008865,-0.008504,0.249855,0,0);}
.m77_c01152{transform:matrix(0.260574,0.008868,-0.008504,0.249855,0,0);-ms-transform:matrix(0.260574,0.008868,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.260574,0.008868,-0.008504,0.249855,0,0);}
.m16_c01152{transform:matrix(0.261169,0.008889,-0.008504,0.249855,0,0);-ms-transform:matrix(0.261169,0.008889,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.261169,0.008889,-0.008504,0.249855,0,0);}
.m13b_c01152{transform:matrix(0.261926,0.011536,-0.011000,0.249758,0,0);-ms-transform:matrix(0.261926,0.011536,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.261926,0.011536,-0.011000,0.249758,0,0);}
.m38_c01152{transform:matrix(0.262088,0.008920,-0.008504,0.249855,0,0);-ms-transform:matrix(0.262088,0.008920,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.262088,0.008920,-0.008504,0.249855,0,0);}
.m86_c01152{transform:matrix(0.262158,0.008922,-0.008504,0.249855,0,0);-ms-transform:matrix(0.262158,0.008922,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.262158,0.008922,-0.008504,0.249855,0,0);}
.m5b_c01152{transform:matrix(0.262548,0.008936,-0.008504,0.249855,0,0);-ms-transform:matrix(0.262548,0.008936,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.262548,0.008936,-0.008504,0.249855,0,0);}
.mb5_c01152{transform:matrix(0.262815,0.009997,-0.009503,0.249819,0,0);-ms-transform:matrix(0.262815,0.009997,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.262815,0.009997,-0.009503,0.249819,0,0);}
.m61_c01152{transform:matrix(0.263018,0.008952,-0.008504,0.249855,0,0);-ms-transform:matrix(0.263018,0.008952,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.263018,0.008952,-0.008504,0.249855,0,0);}
.m127_c01152{transform:matrix(0.263849,0.011621,-0.011000,0.249758,0,0);-ms-transform:matrix(0.263849,0.011621,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.263849,0.011621,-0.011000,0.249758,0,0);}
.mf1_c01152{transform:matrix(0.263964,0.010041,-0.009503,0.249819,0,0);-ms-transform:matrix(0.263964,0.010041,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.263964,0.010041,-0.009503,0.249819,0,0);}
.m90_c01152{transform:matrix(0.265221,0.009027,-0.008504,0.249855,0,0);-ms-transform:matrix(0.265221,0.009027,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.265221,0.009027,-0.008504,0.249855,0,0);}
.md7_c01152{transform:matrix(0.265238,0.010089,-0.009503,0.249819,0,0);-ms-transform:matrix(0.265238,0.010089,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.265238,0.010089,-0.009503,0.249819,0,0);}
.mf3_c01152{transform:matrix(0.266437,0.010135,-0.009503,0.249819,0,0);-ms-transform:matrix(0.266437,0.010135,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.266437,0.010135,-0.009503,0.249819,0,0);}
.mcd_c01152{transform:matrix(0.266942,0.010154,-0.009503,0.249819,0,0);-ms-transform:matrix(0.266942,0.010154,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.266942,0.010154,-0.009503,0.249819,0,0);}
.mb9_c01152{transform:matrix(0.267537,0.010177,-0.009503,0.249819,0,0);-ms-transform:matrix(0.267537,0.010177,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.267537,0.010177,-0.009503,0.249819,0,0);}
.m63_c01152{transform:matrix(0.268225,0.009129,-0.008504,0.249855,0,0);-ms-transform:matrix(0.268225,0.009129,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.268225,0.009129,-0.008504,0.249855,0,0);}
.mb0_c01152{transform:matrix(0.269280,0.010243,-0.009503,0.249819,0,0);-ms-transform:matrix(0.269280,0.010243,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.269280,0.010243,-0.009503,0.249819,0,0);}
.m8c_c01152{transform:matrix(0.270358,0.009201,-0.008504,0.249855,0,0);-ms-transform:matrix(0.270358,0.009201,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.270358,0.009201,-0.008504,0.249855,0,0);}
.m57_c01152{transform:matrix(0.270493,0.009206,-0.008504,0.249855,0,0);-ms-transform:matrix(0.270493,0.009206,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.270493,0.009206,-0.008504,0.249855,0,0);}
.m88_c01152{transform:matrix(0.270533,0.009207,-0.008504,0.249855,0,0);-ms-transform:matrix(0.270533,0.009207,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.270533,0.009207,-0.008504,0.249855,0,0);}
.m91_c01152{transform:matrix(0.271038,0.009225,-0.008504,0.249855,0,0);-ms-transform:matrix(0.271038,0.009225,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.271038,0.009225,-0.008504,0.249855,0,0);}
.m65_c01152{transform:matrix(0.271853,0.009252,-0.008504,0.249855,0,0);-ms-transform:matrix(0.271853,0.009252,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.271853,0.009252,-0.008504,0.249855,0,0);}
.m9a_c01152{transform:matrix(0.272032,0.009258,-0.008504,0.249855,0,0);-ms-transform:matrix(0.272032,0.009258,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.272032,0.009258,-0.008504,0.249855,0,0);}
.m124_c01152{transform:matrix(0.272346,0.011995,-0.011000,0.249758,0,0);-ms-transform:matrix(0.272346,0.011995,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.272346,0.011995,-0.011000,0.249758,0,0);}
.m84_c01152{transform:matrix(0.272347,0.009269,-0.008504,0.249855,0,0);-ms-transform:matrix(0.272347,0.009269,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.272347,0.009269,-0.008504,0.249855,0,0);}
.m8a_c01152{transform:matrix(0.273027,0.009292,-0.008504,0.249855,0,0);-ms-transform:matrix(0.273027,0.009292,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.273027,0.009292,-0.008504,0.249855,0,0);}
.mb7_c01152{transform:matrix(0.273642,0.010409,-0.009503,0.249819,0,0);-ms-transform:matrix(0.273642,0.010409,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.273642,0.010409,-0.009503,0.249819,0,0);}
.md9_c01152{transform:matrix(0.273737,0.010412,-0.009503,0.249819,0,0);-ms-transform:matrix(0.273737,0.010412,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.273737,0.010412,-0.009503,0.249819,0,0);}
.mce_c01152{transform:matrix(0.273757,0.010413,-0.009503,0.249819,0,0);-ms-transform:matrix(0.273757,0.010413,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.273757,0.010413,-0.009503,0.249819,0,0);}
.m12e_c01152{transform:matrix(0.273989,0.012068,-0.011000,0.249758,0,0);-ms-transform:matrix(0.273989,0.012068,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.273989,0.012068,-0.011000,0.249758,0,0);}
.m60_c01152{transform:matrix(0.274101,0.009329,-0.008504,0.249855,0,0);-ms-transform:matrix(0.274101,0.009329,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.274101,0.009329,-0.008504,0.249855,0,0);}
.m128_c01152{transform:matrix(0.274489,0.012090,-0.011000,0.249758,0,0);-ms-transform:matrix(0.274489,0.012090,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.274489,0.012090,-0.011000,0.249758,0,0);}
.m7a_c01152{transform:matrix(0.274806,0.009353,-0.008504,0.249855,0,0);-ms-transform:matrix(0.274806,0.009353,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.274806,0.009353,-0.008504,0.249855,0,0);}
.m7f_c01152{transform:matrix(0.274916,0.009356,-0.008504,0.249855,0,0);-ms-transform:matrix(0.274916,0.009356,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.274916,0.009356,-0.008504,0.249855,0,0);}
.m132_c01152{transform:matrix(0.274923,0.012109,-0.011000,0.249758,0,0);-ms-transform:matrix(0.274923,0.012109,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.274923,0.012109,-0.011000,0.249758,0,0);}
.mcc_c01152{transform:matrix(0.275351,0.010474,-0.009503,0.249819,0,0);-ms-transform:matrix(0.275351,0.010474,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.275351,0.010474,-0.009503,0.249819,0,0);}
.mba_c01152{transform:matrix(0.275791,0.010491,-0.009503,0.249819,0,0);-ms-transform:matrix(0.275791,0.010491,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.275791,0.010491,-0.009503,0.249819,0,0);}
.m8_c01152{transform:matrix(0.276035,0.009395,-0.008504,0.249855,0,0);-ms-transform:matrix(0.276035,0.009395,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.276035,0.009395,-0.008504,0.249855,0,0);}
.m82_c01152{transform:matrix(0.276225,0.009401,-0.008504,0.249855,0,0);-ms-transform:matrix(0.276225,0.009401,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.276225,0.009401,-0.008504,0.249855,0,0);}
.m56_c01152{transform:matrix(0.276450,0.009409,-0.008504,0.249855,0,0);-ms-transform:matrix(0.276450,0.009409,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.276450,0.009409,-0.008504,0.249855,0,0);}
.md4_c01152{transform:matrix(0.277020,0.010537,-0.009503,0.249819,0,0);-ms-transform:matrix(0.277020,0.010537,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.277020,0.010537,-0.009503,0.249819,0,0);}
.ma_c01152{transform:matrix(0.277040,0.009429,-0.008504,0.249855,0,0);-ms-transform:matrix(0.277040,0.009429,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.277040,0.009429,-0.008504,0.249855,0,0);}
.m12b_c01152{transform:matrix(0.277286,0.012213,-0.011000,0.249758,0,0);-ms-transform:matrix(0.277286,0.012213,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.277286,0.012213,-0.011000,0.249758,0,0);}
.m64_c01152{transform:matrix(0.277434,0.009442,-0.008504,0.249855,0,0);-ms-transform:matrix(0.277434,0.009442,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.277434,0.009442,-0.008504,0.249855,0,0);}
.m122_c01152{transform:matrix(0.277446,0.012220,-0.011000,0.249758,0,0);-ms-transform:matrix(0.277446,0.012220,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.277446,0.012220,-0.011000,0.249758,0,0);}
.mc_c01152{transform:matrix(0.277764,0.009453,-0.008504,0.249855,0,0);-ms-transform:matrix(0.277764,0.009453,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.277764,0.009453,-0.008504,0.249855,0,0);}
.m59_c01152{transform:matrix(0.278004,0.009462,-0.008504,0.249855,0,0);-ms-transform:matrix(0.278004,0.009462,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.278004,0.009462,-0.008504,0.249855,0,0);}
.m5c_c01152{transform:matrix(0.278719,0.009486,-0.008504,0.249855,0,0);-ms-transform:matrix(0.278719,0.009486,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.278719,0.009486,-0.008504,0.249855,0,0);}
.m125_c01152{transform:matrix(0.278830,0.012281,-0.011000,0.249758,0,0);-ms-transform:matrix(0.278830,0.012281,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.278830,0.012281,-0.011000,0.249758,0,0);}
.m5d_c01152{transform:matrix(0.280413,0.009544,-0.008504,0.249855,0,0);-ms-transform:matrix(0.280413,0.009544,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.280413,0.009544,-0.008504,0.249855,0,0);}
.m7_c01152{transform:matrix(0.280498,0.009546,-0.008504,0.249855,0,0);-ms-transform:matrix(0.280498,0.009546,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.280498,0.009546,-0.008504,0.249855,0,0);}
.mf8_c01152{transform:matrix(0.280552,0.010672,-0.009503,0.249819,0,0);-ms-transform:matrix(0.280552,0.010672,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.280552,0.010672,-0.009503,0.249819,0,0);}
.m7b_c01152{transform:matrix(0.280593,0.009550,-0.008504,0.249855,0,0);-ms-transform:matrix(0.280593,0.009550,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.280593,0.009550,-0.008504,0.249855,0,0);}
.m12c_c01152{transform:matrix(0.280638,0.012360,-0.011000,0.249758,0,0);-ms-transform:matrix(0.280638,0.012360,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.280638,0.012360,-0.011000,0.249758,0,0);}
.mfc_c01152{transform:matrix(0.281956,0.010725,-0.009503,0.249819,0,0);-ms-transform:matrix(0.281956,0.010725,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.281956,0.010725,-0.009503,0.249819,0,0);}
.ma3_c01152{transform:matrix(0.283181,0.009638,-0.008504,0.249855,0,0);-ms-transform:matrix(0.283181,0.009638,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.283181,0.009638,-0.008504,0.249855,0,0);}
.m96_c01152{transform:matrix(0.283291,0.009642,-0.008504,0.249855,0,0);-ms-transform:matrix(0.283291,0.009642,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.283291,0.009642,-0.008504,0.249855,0,0);}
.mfa_c01152{transform:matrix(0.284499,0.010822,-0.009503,0.249819,0,0);-ms-transform:matrix(0.284499,0.010822,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.284499,0.010822,-0.009503,0.249819,0,0);}
.m94_c01152{transform:matrix(0.288473,0.009818,-0.008504,0.249855,0,0);-ms-transform:matrix(0.288473,0.009818,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.288473,0.009818,-0.008504,0.249855,0,0);}
.mf2_c01152{transform:matrix(0.290505,0.011050,-0.009503,0.249819,0,0);-ms-transform:matrix(0.290505,0.011050,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.290505,0.011050,-0.009503,0.249819,0,0);}
.mcb_c01152{transform:matrix(0.295361,0.011235,-0.009503,0.249819,0,0);-ms-transform:matrix(0.295361,0.011235,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.295361,0.011235,-0.009503,0.249819,0,0);}
.m68_c01152{transform:matrix(0.296293,0.010084,-0.008504,0.249855,0,0);-ms-transform:matrix(0.296293,0.010084,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.296293,0.010084,-0.008504,0.249855,0,0);}
.mc9_c01152{transform:matrix(0.298369,0.011349,-0.009503,0.249819,0,0);-ms-transform:matrix(0.298369,0.011349,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.298369,0.011349,-0.009503,0.249819,0,0);}
.mc7_c01152{transform:matrix(0.300198,0.011419,-0.009503,0.249819,0,0);-ms-transform:matrix(0.300198,0.011419,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.300198,0.011419,-0.009503,0.249819,0,0);}
.m12a_c01152{transform:matrix(0.302791,0.013336,-0.011000,0.249758,0,0);-ms-transform:matrix(0.302791,0.013336,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.302791,0.013336,-0.011000,0.249758,0,0);}
.mc6_c01152{transform:matrix(0.303910,0.011560,-0.009503,0.249819,0,0);-ms-transform:matrix(0.303910,0.011560,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.303910,0.011560,-0.009503,0.249819,0,0);}
.mc4_c01152{transform:matrix(0.307692,0.011704,-0.009503,0.249819,0,0);-ms-transform:matrix(0.307692,0.011704,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.307692,0.011704,-0.009503,0.249819,0,0);}
.m98_c01152{transform:matrix(0.329999,0.011231,-0.008504,0.249855,0,0);-ms-transform:matrix(0.329999,0.011231,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.329999,0.011231,-0.008504,0.249855,0,0);}
.mb1_c01152{transform:matrix(0.337776,0.012848,-0.009503,0.249819,0,0);-ms-transform:matrix(0.337776,0.012848,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.337776,0.012848,-0.009503,0.249819,0,0);}
.mc5_c01152{transform:matrix(0.342143,0.013014,-0.009503,0.249819,0,0);-ms-transform:matrix(0.342143,0.013014,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.342143,0.013014,-0.009503,0.249819,0,0);}
.m8f_c01152{transform:matrix(0.453872,0.015447,-0.008504,0.249855,0,0);-ms-transform:matrix(0.453872,0.015447,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.453872,0.015447,-0.008504,0.249855,0,0);}
.m150_c01152{transform:matrix(0.554371,0.027746,-0.012497,0.249687,0,0);-ms-transform:matrix(0.554371,0.027746,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.554371,0.027746,-0.012497,0.249687,0,0);}
.m114_c01152{transform:matrix(0.556820,0.024525,-0.011000,0.249758,0,0);-ms-transform:matrix(0.556820,0.024525,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.556820,0.024525,-0.011000,0.249758,0,0);}
.m113_c01152{transform:matrix(0.827668,0.036454,-0.011000,0.249758,0,0);-ms-transform:matrix(0.827668,0.036454,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.827668,0.036454,-0.011000,0.249758,0,0);}
.m112_c01152{transform:matrix(3.108197,0.136898,-0.011000,0.249758,0,0);-ms-transform:matrix(3.108197,0.136898,-0.011000,0.249758,0,0);-webkit-transform:matrix(3.108197,0.136898,-0.011000,0.249758,0,0);}
.v0_c01152{vertical-align:0.000000px;}
.ls0_c01152{letter-spacing:0.000000px;}
.sc__c01152{text-shadow:none;}
.sc0_c01152{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__c01152{-webkit-text-stroke:0px transparent;}
.sc0_c01152{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01152{word-spacing:0.000000px;}
.fc0_c01152{color:transparent;}
.fse_c01152{font-size:35.998866px;}
.fsa_c01152{font-size:65.981682px;}
.fs2_c01152{font-size:71.969646px;}
.fs8_c01152{font-size:71.980017px;}
.fs10_c01152{font-size:71.997732px;}
.fs3_c01152{font-size:77.967116px;}
.fs7_c01152{font-size:77.978352px;}
.fsf_c01152{font-size:77.997543px;}
.fs13_c01152{font-size:78.027490px;}
.fs5_c01152{font-size:83.964587px;}
.fsb_c01152{font-size:83.976687px;}
.fs12_c01152{font-size:84.021039px;}
.fs4_c01152{font-size:89.962057px;}
.fsc_c01152{font-size:89.975022px;}
.fs9_c01152{font-size:95.973356px;}
.fsd_c01152{font-size:95.996976px;}
.fs1_c01152{font-size:96.000000px;}
.fs0_c01152{font-size:96.005616px;}
.fs11_c01152{font-size:102.025548px;}
.fs6_c01152{font-size:119.949409px;}
.y0_c01152{bottom:0.000000px;}
.y15d_c01152{bottom:68.356644px;}
.y15c_c01152{bottom:71.324700px;}
.y15b_c01152{bottom:75.929976px;}
.y15a_c01152{bottom:78.712704px;}
.y159_c01152{bottom:83.340912px;}
.y158_c01152{bottom:84.546714px;}
.y157_c01152{bottom:86.261622px;}
.y156_c01152{bottom:90.807384px;}
.y155_c01152{bottom:93.718500px;}
.y154_c01152{bottom:97.630450px;}
.y153_c01152{bottom:103.915053px;}
.y152_c01152{bottom:104.695669px;}
.y151_c01152{bottom:110.113630px;}
.y150_c01152{bottom:113.385046px;}
.y14f_c01152{bottom:116.625262px;}
.y14b_c01152{bottom:117.417375px;}
.y14a_c01152{bottom:119.147925px;}
.y14e_c01152{bottom:119.899078px;}
.y149_c01152{bottom:120.829950px;}
.y14d_c01152{bottom:121.540111px;}
.y14c_c01152{bottom:125.830798px;}
.y148_c01152{bottom:125.856450px;}
.y147_c01152{bottom:127.506150px;}
.y146_c01152{bottom:132.489525px;}
.y145_c01152{bottom:134.141175px;}
.y144_c01152{bottom:135.815775px;}
.y143_c01152{bottom:137.507250px;}
.y142_c01152{bottom:141.289275px;}
.y141_c01152{bottom:145.228350px;}
.y140_c01152{bottom:147.987000px;}
.y13f_c01152{bottom:163.463352px;}
.y13e_c01152{bottom:165.363360px;}
.y13d_c01152{bottom:167.373324px;}
.y137_c01152{bottom:169.641220px;}
.y13c_c01152{bottom:169.781202px;}
.y13b_c01152{bottom:171.706488px;}
.y136_c01152{bottom:173.256369px;}
.y13a_c01152{bottom:174.658206px;}
.y135_c01152{bottom:174.765921px;}
.y139_c01152{bottom:176.083476px;}
.y134_c01152{bottom:176.300685px;}
.y133_c01152{bottom:178.923495px;}
.y138_c01152{bottom:179.040276px;}
.y132_c01152{bottom:184.486993px;}
.y131_c01152{bottom:187.058230px;}
.y12e_c01152{bottom:187.708619px;}
.y12d_c01152{bottom:189.220744px;}
.y130_c01152{bottom:192.638361px;}
.y12c_c01152{bottom:193.368221px;}
.y12b_c01152{bottom:196.424417px;}
.y12f_c01152{bottom:197.671644px;}
.y12a_c01152{bottom:198.503302px;}
.y129_c01152{bottom:204.607623px;}
.y128_c01152{bottom:210.053106px;}
.y125_c01152{bottom:210.901078px;}
.y127_c01152{bottom:211.718538px;}
.y124_c01152{bottom:212.934275px;}
.y123_c01152{bottom:214.432870px;}
.y126_c01152{bottom:216.306178px;}
.y122_c01152{bottom:216.372676px;}
.y121_c01152{bottom:218.845498px;}
.y120_c01152{bottom:221.723956px;}
.y11f_c01152{bottom:223.185856px;}
.y11e_c01152{bottom:224.126092px;}
.y11d_c01152{bottom:226.110779px;}
.y11c_c01152{bottom:227.563438px;}
.y11b_c01152{bottom:230.974912px;}
.y11a_c01152{bottom:234.370877px;}
.y119_c01152{bottom:236.822051px;}
.y118_c01152{bottom:251.474788px;}
.y117_c01152{bottom:252.763398px;}
.y115_c01152{bottom:258.043224px;}
.y116_c01152{bottom:258.404251px;}
.y114_c01152{bottom:260.040780px;}
.y113_c01152{bottom:262.852710px;}
.y112_c01152{bottom:266.854488px;}
.y111_c01152{bottom:268.329852px;}
.y110_c01152{bottom:269.767002px;}
.y10f_c01152{bottom:272.691858px;}
.y10e_c01152{bottom:275.653938px;}
.y10d_c01152{bottom:277.105014px;}
.y10c_c01152{bottom:280.017000px;}
.y10b_c01152{bottom:299.973712px;}
.y10a_c01152{bottom:301.605657px;}
.y109_c01152{bottom:302.856216px;}
.y108_c01152{bottom:305.335714px;}
.y107_c01152{bottom:306.544891px;}
.y106_c01152{bottom:307.770370px;}
.y105_c01152{bottom:310.215628px;}
.y104_c01152{bottom:311.039601px;}
.y103_c01152{bottom:314.292130px;}
.y102_c01152{bottom:317.598240px;}
.y101_c01152{bottom:318.413092px;}
.y100_c01152{bottom:329.447398px;}
.yff_c01152{bottom:331.056886px;}
.yfe_c01152{bottom:335.067586px;}
.yfd_c01152{bottom:337.474539px;}
.yfc_c01152{bottom:341.451910px;}
.yfb_c01152{bottom:342.235296px;}
.yfa_c01152{bottom:344.223090px;}
.yf9_c01152{bottom:344.998438px;}
.yf8_c01152{bottom:345.864139px;}
.yf7_c01152{bottom:348.572440px;}
.yf6_c01152{bottom:349.403787px;}
.yf5_c01152{bottom:352.158111px;}
.yf4_c01152{bottom:363.245113px;}
.yf3_c01152{bottom:366.126408px;}
.yf2_c01152{bottom:368.084253px;}
.yf1_c01152{bottom:371.344081px;}
.yf0_c01152{bottom:373.719586px;}
.yef_c01152{bottom:376.053742px;}
.yee_c01152{bottom:377.717119px;}
.yed_c01152{bottom:378.500562px;}
.yec_c01152{bottom:380.904493px;}
.yeb_c01152{bottom:381.682065px;}
.yea_c01152{bottom:386.042075px;}
.ye9_c01152{bottom:387.244960px;}
.ye8_c01152{bottom:395.531299px;}
.ye7_c01152{bottom:397.393224px;}
.ye6_c01152{bottom:401.959509px;}
.ye5_c01152{bottom:403.360665px;}
.ye4_c01152{bottom:405.192802px;}
.ye3_c01152{bottom:410.595270px;}
.ye2_c01152{bottom:414.707187px;}
.ye1_c01152{bottom:416.063451px;}
.ye0_c01152{bottom:418.306546px;}
.ydf_c01152{bottom:420.150727px;}
.yde_c01152{bottom:423.688876px;}
.ydd_c01152{bottom:433.089060px;}
.ydc_c01152{bottom:434.518399px;}
.ydb_c01152{bottom:437.849974px;}
.yda_c01152{bottom:439.841473px;}
.yd9_c01152{bottom:444.152365px;}
.yd8_c01152{bottom:449.813536px;}
.yd7_c01152{bottom:451.700365px;}
.yd6_c01152{bottom:454.520959px;}
.yd5_c01152{bottom:456.462403px;}
.yd4_c01152{bottom:458.383710px;}
.yd3_c01152{bottom:461.207113px;}
.yd2_c01152{bottom:469.907599px;}
.yd1_c01152{bottom:471.207712px;}
.yd0_c01152{bottom:472.080325px;}
.ycf_c01152{bottom:474.972220px;}
.yce_c01152{bottom:476.282992px;}
.ycd_c01152{bottom:478.863040px;}
.ycc_c01152{bottom:480.441940px;}
.ycb_c01152{bottom:484.274734px;}
.yca_c01152{bottom:488.493988px;}
.yc9_c01152{bottom:490.143853px;}
.yc8_c01152{bottom:495.215258px;}
.yc7_c01152{bottom:507.988336px;}
.yc6_c01152{bottom:511.174333px;}
.yc5_c01152{bottom:512.915899px;}
.yc4_c01152{bottom:514.233382px;}
.yc3_c01152{bottom:518.641338px;}
.yc2_c01152{bottom:523.107238px;}
.yc1_c01152{bottom:526.228279px;}
.yc0_c01152{bottom:527.979250px;}
.ybf_c01152{bottom:530.586042px;}
.ybe_c01152{bottom:545.731650px;}
.ybd_c01152{bottom:548.267181px;}
.ybc_c01152{bottom:549.128793px;}
.ybb_c01152{bottom:552.482046px;}
.yba_c01152{bottom:553.753374px;}
.yb9_c01152{bottom:556.700958px;}
.yb8_c01152{bottom:557.982945px;}
.yb7_c01152{bottom:561.789405px;}
.yb6_c01152{bottom:564.658443px;}
.yb5_c01152{bottom:565.940430px;}
.yb4_c01152{bottom:568.905000px;}
.yb3_c01152{bottom:578.986044px;}
.yb2_c01152{bottom:580.716678px;}
.yb1_c01152{bottom:582.456375px;}
.yb0_c01152{bottom:587.043963px;}
.yaf_c01152{bottom:588.306969px;}
.yae_c01152{bottom:592.125228px;}
.yad_c01152{bottom:592.972191px;}
.yac_c01152{bottom:595.091736px;}
.yab_c01152{bottom:597.155250px;}
.yaa_c01152{bottom:598.439175px;}
.ya9_c01152{bottom:603.468000px;}
.ya8_c01152{bottom:609.600231px;}
.ya7_c01152{bottom:614.968836px;}
.ya6_c01152{bottom:618.749024px;}
.ya5_c01152{bottom:620.035418px;}
.ya4_c01152{bottom:621.272946px;}
.ya3_c01152{bottom:622.914074px;}
.ya2_c01152{bottom:626.353521px;}
.ya1_c01152{bottom:628.009152px;}
.ya0_c01152{bottom:631.795051px;}
.y9f_c01152{bottom:632.664822px;}
.y9e_c01152{bottom:636.040747px;}
.y9d_c01152{bottom:637.687077px;}
.y9c_c01152{bottom:645.530469px;}
.y9b_c01152{bottom:647.307243px;}
.y9a_c01152{bottom:651.083640px;}
.y99_c01152{bottom:652.338036px;}
.y98_c01152{bottom:658.896960px;}
.y97_c01152{bottom:661.377561px;}
.y96_c01152{bottom:664.187565px;}
.y95_c01152{bottom:665.467226px;}
.y94_c01152{bottom:666.671583px;}
.y93_c01152{bottom:669.984107px;}
.y92_c01152{bottom:672.775272px;}
.y91_c01152{bottom:679.823466px;}
.y90_c01152{bottom:681.717008px;}
.y8f_c01152{bottom:683.528487px;}
.y8e_c01152{bottom:686.651640px;}
.y8d_c01152{bottom:689.297466px;}
.y8c_c01152{bottom:691.147580px;}
.y8b_c01152{bottom:695.973980px;}
.y8a_c01152{bottom:697.288968px;}
.y89_c01152{bottom:700.815138px;}
.y88_c01152{bottom:702.144139px;}
.y87_c01152{bottom:704.402440px;}
.y86_c01152{bottom:705.314820px;}
.y85_c01152{bottom:707.954730px;}
.y84_c01152{bottom:709.206413px;}
.y83_c01152{bottom:720.098602px;}
.y82_c01152{bottom:721.447551px;}
.y81_c01152{bottom:723.627195px;}
.y80_c01152{bottom:727.117122px;}
.y7f_c01152{bottom:727.953784px;}
.y7e_c01152{bottom:730.155500px;}
.y7d_c01152{bottom:731.884480px;}
.y7c_c01152{bottom:736.184868px;}
.y7b_c01152{bottom:739.220491px;}
.y7a_c01152{bottom:740.915346px;}
.y79_c01152{bottom:743.882308px;}
.y78_c01152{bottom:744.826725px;}
.y77_c01152{bottom:752.744931px;}
.y76_c01152{bottom:758.303452px;}
.y75_c01152{bottom:760.984041px;}
.y74_c01152{bottom:762.704383px;}
.y73_c01152{bottom:765.679270px;}
.y72_c01152{bottom:767.427753px;}
.y71_c01152{bottom:770.481520px;}
.y70_c01152{bottom:772.136160px;}
.y6f_c01152{bottom:775.190998px;}
.y6e_c01152{bottom:776.518284px;}
.y6d_c01152{bottom:777.776143px;}
.y6c_c01152{bottom:781.265713px;}
.y6b_c01152{bottom:788.404297px;}
.y6a_c01152{bottom:790.576138px;}
.y69_c01152{bottom:794.600590px;}
.y68_c01152{bottom:795.659825px;}
.y67_c01152{bottom:796.972216px;}
.y66_c01152{bottom:800.330304px;}
.y65_c01152{bottom:805.020764px;}
.y64_c01152{bottom:807.556435px;}
.y63_c01152{bottom:808.363398px;}
.y62_c01152{bottom:809.235565px;}
.y61_c01152{bottom:812.564544px;}
.y60_c01152{bottom:813.802430px;}
.y5f_c01152{bottom:815.068659px;}
.y5e_c01152{bottom:816.346689px;}
.y5d_c01152{bottom:828.206784px;}
.y5c_c01152{bottom:832.338511px;}
.y5b_c01152{bottom:834.819112px;}
.y5a_c01152{bottom:835.673902px;}
.y59_c01152{bottom:839.785108px;}
.y58_c01152{bottom:841.025103px;}
.y57_c01152{bottom:844.642612px;}
.y56_c01152{bottom:848.776023px;}
.y55_c01152{bottom:851.165593px;}
.y54_c01152{bottom:863.504410px;}
.y53_c01152{bottom:864.763549px;}
.y52_c01152{bottom:866.832355px;}
.y51_c01152{bottom:870.951007px;}
.y50_c01152{bottom:873.851379px;}
.y4f_c01152{bottom:876.703089px;}
.y4e_c01152{bottom:877.936250px;}
.y4d_c01152{bottom:879.574301px;}
.y4c_c01152{bottom:880.808838px;}
.y4b_c01152{bottom:882.453131px;}
.y4a_c01152{bottom:883.291836px;}
.y49_c01152{bottom:887.331462px;}
.y48_c01152{bottom:898.414041px;}
.y47_c01152{bottom:901.273689px;}
.y46_c01152{bottom:903.671812px;}
.y45_c01152{bottom:905.249149px;}
.y44_c01152{bottom:907.253209px;}
.y43_c01152{bottom:908.818816px;}
.y42_c01152{bottom:910.038288px;}
.y41_c01152{bottom:911.652078px;}
.y40_c01152{bottom:912.824897px;}
.y3f_c01152{bottom:914.035545px;}
.y3e_c01152{bottom:916.445398px;}
.y3d_c01152{bottom:919.606569px;}
.y3c_c01152{bottom:920.763731px;}
.y3b_c01152{bottom:922.420992px;}
.y3a_c01152{bottom:935.469862px;}
.y39_c01152{bottom:936.653715px;}
.y38_c01152{bottom:940.587481px;}
.y37_c01152{bottom:941.750813px;}
.y36_c01152{bottom:942.904351px;}
.y35_c01152{bottom:946.761069px;}
.y34_c01152{bottom:947.962618px;}
.y33_c01152{bottom:949.115800px;}
.y32_c01152{bottom:951.846385px;}
.y31_c01152{bottom:955.741627px;}
.y30_c01152{bottom:958.038863px;}
.y2f_c01152{bottom:970.613069px;}
.y2e_c01152{bottom:971.653395px;}
.y2d_c01152{bottom:972.766338px;}
.y2c_c01152{bottom:974.555894px;}
.y2b_c01152{bottom:978.445819px;}
.y2a_c01152{bottom:979.879585px;}
.y29_c01152{bottom:980.945750px;}
.y28_c01152{bottom:983.775121px;}
.y27_c01152{bottom:984.880618px;}
.y26_c01152{bottom:985.603162px;}
.y25_c01152{bottom:987.697311px;}
.y24_c01152{bottom:989.467047px;}
.y23_c01152{bottom:992.312994px;}
.y22_c01152{bottom:1008.248389px;}
.y21_c01152{bottom:1011.924010px;}
.y20_c01152{bottom:1015.116106px;}
.y1f_c01152{bottom:1016.282397px;}
.y1e_c01152{bottom:1020.664977px;}
.y1d_c01152{bottom:1022.272066px;}
.y1c_c01152{bottom:1023.458572px;}
.y1b_c01152{bottom:1025.860215px;}
.y1a_c01152{bottom:1027.071424px;}
.y19_c01152{bottom:1029.024038px;}
.y18_c01152{bottom:1040.375772px;}
.y17_c01152{bottom:1042.238418px;}
.y16_c01152{bottom:1045.938790px;}
.y15_c01152{bottom:1049.575248px;}
.y14_c01152{bottom:1050.682998px;}
.y13_c01152{bottom:1052.518225px;}
.y12_c01152{bottom:1054.356768px;}
.y11_c01152{bottom:1055.452941px;}
.y10_c01152{bottom:1059.428463px;}
.yf_c01152{bottom:1060.551851px;}
.ye_c01152{bottom:1061.658377px;}
.yd_c01152{bottom:1062.749705px;}
.yc_c01152{bottom:1079.624358px;}
.yb_c01152{bottom:1080.799959px;}
.ya_c01152{bottom:1084.226190px;}
.y9_c01152{bottom:1085.756496px;}
.y8_c01152{bottom:1089.111837px;}
.y7_c01152{bottom:1092.912969px;}
.y6_c01152{bottom:1094.381208px;}
.y5_c01152{bottom:1095.946500px;}
.y4_c01152{bottom:1131.300000px;}
.y3_c01152{bottom:1195.450557px;}
.y2_c01152{bottom:1197.529527px;}
.y1_c01152{bottom:1198.545000px;}
.h10_c01152{height:35.998866px;}
.hc_c01152{height:65.981682px;}
.h4_c01152{height:71.969646px;}
.ha_c01152{height:71.980017px;}
.h12_c01152{height:71.997732px;}
.h5_c01152{height:77.967116px;}
.h9_c01152{height:77.978352px;}
.h11_c01152{height:77.997543px;}
.h15_c01152{height:78.027490px;}
.h7_c01152{height:83.964587px;}
.hd_c01152{height:83.976687px;}
.h14_c01152{height:84.021039px;}
.h6_c01152{height:89.962057px;}
.he_c01152{height:89.975022px;}
.hb_c01152{height:95.973356px;}
.hf_c01152{height:95.996976px;}
.h3_c01152{height:96.000000px;}
.h2_c01152{height:96.005616px;}
.h13_c01152{height:102.025548px;}
.h8_c01152{height:119.949409px;}
.h1_c01152{height:1258.500000px;}
.h0_c01152{height:1258.740000px;}
.w0_c01152{width:920.100000px;}
.w1_c01152{width:920.250000px;}
.x0_c01152{left:0.000000px;}
.xe7_c01152{left:162.264000px;}
.xdd_c01152{left:163.338000px;}
.xcb_c01152{left:164.533386px;}
.xbd_c01152{left:167.353058px;}
.xb1_c01152{left:169.425044px;}
.xa0_c01152{left:172.101885px;}
.x92_c01152{left:174.010500px;}
.x85_c01152{left:176.331350px;}
.x6c_c01152{left:178.129454px;}
.x62_c01152{left:179.635161px;}
.x56_c01152{left:180.841110px;}
.x37_c01152{left:183.261559px;}
.x2d_c01152{left:184.296751px;}
.x23_c01152{left:185.406229px;}
.xe_c01152{left:187.635448px;}
.xbe_c01152{left:189.366878px;}
.x4_c01152{left:190.890000px;}
.x6d_c01152{left:202.308116px;}
.x77_c01152{left:210.637356px;}
.x57_c01152{left:214.425397px;}
.xde_c01152{left:218.455827px;}
.x86_c01152{left:219.635132px;}
.xf_c01152{left:220.671003px;}
.x38_c01152{left:229.266894px;}
.xa6_c01152{left:237.135465px;}
.x9c_c01152{left:239.132953px;}
.x1a_c01152{left:241.580340px;}
.xb8_c01152{left:245.772774px;}
.x50_c01152{left:247.395595px;}
.x2e_c01152{left:249.855381px;}
.x93_c01152{left:251.947485px;}
.x10_c01152{left:254.153110px;}
.x5_c01152{left:258.660000px;}
.x39_c01152{left:261.371562px;}
.x63_c01152{left:269.030963px;}
.x1b_c01152{left:275.184905px;}
.x78_c01152{left:276.566883px;}
.x6e_c01152{left:278.332100px;}
.x58_c01152{left:280.244028px;}
.xa7_c01152{left:281.767287px;}
.x9d_c01152{left:282.876856px;}
.x94_c01152{left:285.650249px;}
.x11_c01152{left:288.174729px;}
.xcc_c01152{left:289.777034px;}
.x45_c01152{left:292.228668px;}
.xdf_c01152{left:297.158546px;}
.x6_c01152{left:298.422000px;}
.x64_c01152{left:301.273226px;}
.xad_c01152{left:302.909973px;}
.xa1_c01152{left:305.426427px;}
.x87_c01152{left:308.380698px;}
.x46_c01152{left:314.888188px;}
.xcd_c01152{left:318.386640px;}
.xd2_c01152{left:320.102363px;}
.x6f_c01152{left:321.739247px;}
.xb2_c01152{left:323.758253px;}
.xa8_c01152{left:326.889062px;}
.x24_c01152{left:329.489304px;}
.x88_c01152{left:331.247694px;}
.x65_c01152{left:335.290905px;}
.xe8_c01152{left:338.468119px;}
.xe4_c01152{left:339.772002px;}
.x1c_c01152{left:341.827652px;}
.x81_c01152{left:343.221378px;}
.x7_c01152{left:344.413962px;}
.x3a_c01152{left:349.096776px;}
.x79_c01152{left:355.755432px;}
.xae_c01152{left:357.579530px;}
.x47_c01152{left:359.278211px;}
.x2f_c01152{left:361.044802px;}
.xbf_c01152{left:366.445355px;}
.x59_c01152{left:367.786503px;}
.xe0_c01152{left:372.723405px;}
.x1d_c01152{left:374.750450px;}
.xd9_c01152{left:385.747235px;}
.x8_c01152{left:387.554279px;}
.x7a_c01152{left:388.941923px;}
.x5a_c01152{left:390.723928px;}
.x48_c01152{left:392.598436px;}
.x25_c01152{left:394.855314px;}
.x70_c01152{left:399.516170px;}
.xe1_c01152{left:406.519075px;}
.x12_c01152{left:408.511356px;}
.x82_c01152{left:410.300891px;}
.x5b_c01152{left:411.921799px;}
.x66_c01152{left:413.544249px;}
.x3b_c01152{left:415.980781px;}
.x26_c01152{left:417.407770px;}
.x1e_c01152{left:419.369773px;}
.xda_c01152{left:429.459978px;}
.x89_c01152{left:430.805009px;}
.xb3_c01152{left:433.793994px;}
.x49_c01152{left:436.849149px;}
.x30_c01152{left:438.983631px;}
.x13_c01152{left:441.689268px;}
.xc6_c01152{left:442.999520px;}
.xb9_c01152{left:444.722802px;}
.x3c_c01152{left:449.568862px;}
.x27_c01152{left:451.917574px;}
.xce_c01152{left:453.493325px;}
.xc0_c01152{left:454.719359px;}
.x51_c01152{left:456.710232px;}
.xa2_c01152{left:459.722476px;}
.x95_c01152{left:461.145578px;}
.xba_c01152{left:466.461696px;}
.x1_c01152{left:467.845500px;}
.x4a_c01152{left:470.128915px;}
.x31_c01152{left:471.897061px;}
.xe2_c01152{left:472.977550px;}
.x8a_c01152{left:474.338010px;}
.x7b_c01152{left:477.032774px;}
.x5c_c01152{left:478.579488px;}
.xb4_c01152{left:479.969310px;}
.x3d_c01152{left:482.133570px;}
.xdb_c01152{left:484.129754px;}
.x83_c01152{left:486.165191px;}
.xc1_c01152{left:487.804496px;}
.x2_c01152{left:489.898925px;}
.x96_c01152{left:494.848341px;}
.x14_c01152{left:497.340949px;}
.x9_c01152{left:499.240480px;}
.xe9_c01152{left:504.008913px;}
.x32_c01152{left:506.187562px;}
.xcf_c01152{left:508.032731px;}
.x71_c01152{left:509.694146px;}
.xc2_c01152{left:520.461062px;}
.x3e_c01152{left:526.905690px;}
.xdc_c01152{left:529.765073px;}
.x3_c01152{left:535.048730px;}
.xe5_c01152{left:539.247237px;}
.x1f_c01152{left:540.999252px;}
.xc7_c01152{left:542.036883px;}
.xb5_c01152{left:544.725896px;}
.x4b_c01152{left:547.130475px;}
.x15_c01152{left:552.895229px;}
.x72_c01152{left:553.971768px;}
.x3f_c01152{left:560.753011px;}
.x8b_c01152{left:564.773681px;}
.xa9_c01152{left:567.833616px;}
.x97_c01152{left:572.338773px;}
.x20_c01152{left:573.372151px;}
.xc8_c01152{left:575.534352px;}
.xbb_c01152{left:576.824111px;}
.x67_c01152{left:578.974524px;}
.x9e_c01152{left:582.435675px;}
.x16_c01152{left:586.413300px;}
.xc3_c01152{left:587.421102px;}
.xea_c01152{left:592.483350px;}
.xa_c01152{left:597.828294px;}
.x52_c01152{left:601.201842px;}
.x40_c01152{left:604.197563px;}
.x98_c01152{left:605.761317px;}
.x8c_c01152{left:607.924616px;}
.x73_c01152{left:610.376210px;}
.x33_c01152{left:616.289124px;}
.x28_c01152{left:618.290868px;}
.xc4_c01152{left:621.165579px;}
.xaf_c01152{left:622.493168px;}
.x53_c01152{left:624.289882px;}
.x4c_c01152{left:625.429582px;}
.xd6_c01152{left:628.294584px;}
.x7c_c01152{left:630.459899px;}
.x74_c01152{left:631.829610px;}
.x8d_c01152{left:640.451115px;}
.xb_c01152{left:642.792285px;}
.x34_c01152{left:649.213044px;}
.xd3_c01152{left:652.247118px;}
.x68_c01152{left:655.187268px;}
.x41_c01152{left:659.819607px;}
.x21_c01152{left:661.961949px;}
.xc5_c01152{left:665.212643px;}
.xc9_c01152{left:666.392902px;}
.xaa_c01152{left:667.987805px;}
.xa3_c01152{left:669.821168px;}
.x8e_c01152{left:674.281157px;}
.x7d_c01152{left:676.665702px;}
.x35_c01152{left:682.424676px;}
.xd7_c01152{left:685.253547px;}
.x5d_c01152{left:690.203360px;}
.x54_c01152{left:691.268995px;}
.x99_c01152{left:693.916573px;}
.x17_c01152{left:696.478851px;}
.x69_c01152{left:699.255152px;}
.xb0_c01152{left:701.300823px;}
.x42_c01152{left:703.608813px;}
.xe3_c01152{left:705.935859px;}
.xd0_c01152{left:707.598465px;}
.xab_c01152{left:714.267692px;}
.x9a_c01152{left:716.567899px;}
.xd4_c01152{left:718.636848px;}
.x75_c01152{left:721.235901px;}
.x5e_c01152{left:724.709122px;}
.x90_c01152{left:727.953562px;}
.x84_c01152{left:730.256442px;}
.x4d_c01152{left:736.659408px;}
.x9f_c01152{left:738.408678px;}
.x29_c01152{left:739.727080px;}
.xc_c01152{left:743.463013px;}
.xd8_c01152{left:751.373547px;}
.x5f_c01152{left:752.569956px;}
.xd1_c01152{left:753.761256px;}
.xb6_c01152{left:755.432511px;}
.x22_c01152{left:763.965400px;}
.x6a_c01152{left:767.922724px;}
.x43_c01152{left:770.148164px;}
.x8f_c01152{left:773.670639px;}
.xca_c01152{left:775.590096px;}
.xd_c01152{left:778.004937px;}
.xa4_c01152{left:780.307071px;}
.x9b_c01152{left:783.225675px;}
.x4e_c01152{left:792.508785px;}
.xe6_c01152{left:793.763729px;}
.x2a_c01152{left:795.614466px;}
.xbc_c01152{left:799.570587px;}
.x55_c01152{left:802.838929px;}
.x18_c01152{left:808.510536px;}
.x76_c01152{left:811.646034px;}
.x91_c01152{left:819.186738px;}
.x7e_c01152{left:820.781537px;}
.xac_c01152{left:824.871922px;}
.x4f_c01152{left:826.507780px;}
.x36_c01152{left:828.472479px;}
.x2b_c01152{left:830.343051px;}
.xb7_c01152{left:835.401567px;}
.xa5_c01152{left:837.426894px;}
.xd5_c01152{left:841.544982px;}
.x44_c01152{left:849.498822px;}
.x60_c01152{left:858.387136px;}
.x2c_c01152{left:862.805751px;}
.x19_c01152{left:864.914516px;}
.x7f_c01152{left:866.028504px;}
.x6b_c01152{left:910.306949px;}
.x80_c01152{left:913.334003px;}
.x61_c01152{left:915.500706px;}
@media print{
.v0_c01152{vertical-align:0.000000pt;}
.ls0_c01152{letter-spacing:0.000000pt;}
.ws0_c01152{word-spacing:0.000000pt;}
.fse_c01152{font-size:31.998992pt;}
.fsa_c01152{font-size:58.650384pt;}
.fs2_c01152{font-size:63.973018pt;}
.fs8_c01152{font-size:63.982238pt;}
.fs10_c01152{font-size:63.997984pt;}
.fs3_c01152{font-size:69.304103pt;}
.fs7_c01152{font-size:69.314091pt;}
.fsf_c01152{font-size:69.331149pt;}
.fs13_c01152{font-size:69.357769pt;}
.fs5_c01152{font-size:74.635188pt;}
.fsb_c01152{font-size:74.645944pt;}
.fs12_c01152{font-size:74.685368pt;}
.fs4_c01152{font-size:79.966273pt;}
.fsc_c01152{font-size:79.977797pt;}
.fs9_c01152{font-size:85.309650pt;}
.fsd_c01152{font-size:85.330645pt;}
.fs1_c01152{font-size:85.333333pt;}
.fs0_c01152{font-size:85.338325pt;}
.fs11_c01152{font-size:90.689376pt;}
.fs6_c01152{font-size:106.621697pt;}
.y0_c01152{bottom:0.000000pt;}
.y15d_c01152{bottom:60.761461pt;}
.y15c_c01152{bottom:63.399733pt;}
.y15b_c01152{bottom:67.493312pt;}
.y15a_c01152{bottom:69.966848pt;}
.y159_c01152{bottom:74.080811pt;}
.y158_c01152{bottom:75.152635pt;}
.y157_c01152{bottom:76.676997pt;}
.y156_c01152{bottom:80.717675pt;}
.y155_c01152{bottom:83.305333pt;}
.y154_c01152{bottom:86.782623pt;}
.y153_c01152{bottom:92.368936pt;}
.y152_c01152{bottom:93.062817pt;}
.y151_c01152{bottom:97.878783pt;}
.y150_c01152{bottom:100.786708pt;}
.y14f_c01152{bottom:103.666900pt;}
.y14b_c01152{bottom:104.371000pt;}
.y14a_c01152{bottom:105.909267pt;}
.y14e_c01152{bottom:106.576959pt;}
.y149_c01152{bottom:107.404400pt;}
.y14d_c01152{bottom:108.035655pt;}
.y14c_c01152{bottom:111.849599pt;}
.y148_c01152{bottom:111.872400pt;}
.y147_c01152{bottom:113.338800pt;}
.y146_c01152{bottom:117.768467pt;}
.y145_c01152{bottom:119.236600pt;}
.y144_c01152{bottom:120.725133pt;}
.y143_c01152{bottom:122.228667pt;}
.y142_c01152{bottom:125.590467pt;}
.y141_c01152{bottom:129.091867pt;}
.y140_c01152{bottom:131.544000pt;}
.y13f_c01152{bottom:145.300757pt;}
.y13e_c01152{bottom:146.989653pt;}
.y13d_c01152{bottom:148.776288pt;}
.y137_c01152{bottom:150.792196pt;}
.y13c_c01152{bottom:150.916624pt;}
.y13b_c01152{bottom:152.627989pt;}
.y136_c01152{bottom:154.005661pt;}
.y13a_c01152{bottom:155.251739pt;}
.y135_c01152{bottom:155.347485pt;}
.y139_c01152{bottom:156.518645pt;}
.y134_c01152{bottom:156.711720pt;}
.y133_c01152{bottom:159.043107pt;}
.y138_c01152{bottom:159.146912pt;}
.y132_c01152{bottom:163.988439pt;}
.y131_c01152{bottom:166.273983pt;}
.y12e_c01152{bottom:166.852105pt;}
.y12d_c01152{bottom:168.196217pt;}
.y130_c01152{bottom:171.234099pt;}
.y12c_c01152{bottom:171.882863pt;}
.y12b_c01152{bottom:174.599481pt;}
.y12f_c01152{bottom:175.708128pt;}
.y12a_c01152{bottom:176.447380pt;}
.y129_c01152{bottom:181.873443pt;}
.y128_c01152{bottom:186.713872pt;}
.y125_c01152{bottom:187.467625pt;}
.y127_c01152{bottom:188.194256pt;}
.y124_c01152{bottom:189.274911pt;}
.y123_c01152{bottom:190.606996pt;}
.y126_c01152{bottom:192.272159pt;}
.y122_c01152{bottom:192.331268pt;}
.y121_c01152{bottom:194.529332pt;}
.y120_c01152{bottom:197.087961pt;}
.y11f_c01152{bottom:198.387428pt;}
.y11e_c01152{bottom:199.223193pt;}
.y11d_c01152{bottom:200.987359pt;}
.y11c_c01152{bottom:202.278612pt;}
.y11b_c01152{bottom:205.311033pt;}
.y11a_c01152{bottom:208.329668pt;}
.y119_c01152{bottom:210.508489pt;}
.y118_c01152{bottom:223.533145pt;}
.y117_c01152{bottom:224.678576pt;}
.y115_c01152{bottom:229.371755pt;}
.y116_c01152{bottom:229.692668pt;}
.y114_c01152{bottom:231.147360pt;}
.y113_c01152{bottom:233.646853pt;}
.y112_c01152{bottom:237.203989pt;}
.y111_c01152{bottom:238.515424pt;}
.y110_c01152{bottom:239.792891pt;}
.y10f_c01152{bottom:242.392763pt;}
.y10e_c01152{bottom:245.025723pt;}
.y10d_c01152{bottom:246.315568pt;}
.y10c_c01152{bottom:248.904000pt;}
.y10b_c01152{bottom:266.643300pt;}
.y10a_c01152{bottom:268.093917pt;}
.y109_c01152{bottom:269.205525pt;}
.y108_c01152{bottom:271.409524pt;}
.y107_c01152{bottom:272.484348pt;}
.y106_c01152{bottom:273.573663pt;}
.y105_c01152{bottom:275.747225pt;}
.y104_c01152{bottom:276.479645pt;}
.y103_c01152{bottom:279.370783pt;}
.y102_c01152{bottom:282.309547pt;}
.y101_c01152{bottom:283.033860pt;}
.y100_c01152{bottom:292.842132pt;}
.yff_c01152{bottom:294.272788pt;}
.yfe_c01152{bottom:297.837855pt;}
.yfd_c01152{bottom:299.977368pt;}
.yfc_c01152{bottom:303.512809pt;}
.yfb_c01152{bottom:304.209152pt;}
.yfa_c01152{bottom:305.976080pt;}
.yf9_c01152{bottom:306.665279pt;}
.yf8_c01152{bottom:307.434791pt;}
.yf7_c01152{bottom:309.842169pt;}
.yf6_c01152{bottom:310.581144pt;}
.yf5_c01152{bottom:313.029432pt;}
.yf4_c01152{bottom:322.884545pt;}
.yf3_c01152{bottom:325.445696pt;}
.yf2_c01152{bottom:327.186003pt;}
.yf1_c01152{bottom:330.083628pt;}
.yf0_c01152{bottom:332.195188pt;}
.yef_c01152{bottom:334.269993pt;}
.yee_c01152{bottom:335.748551pt;}
.yed_c01152{bottom:336.444944pt;}
.yec_c01152{bottom:338.581772pt;}
.yeb_c01152{bottom:339.272947pt;}
.yea_c01152{bottom:343.148511pt;}
.ye9_c01152{bottom:344.217743pt;}
.ye8_c01152{bottom:351.583377pt;}
.ye7_c01152{bottom:353.238421pt;}
.ye6_c01152{bottom:357.297341pt;}
.ye5_c01152{bottom:358.542813pt;}
.ye4_c01152{bottom:360.171380pt;}
.ye3_c01152{bottom:364.973573pt;}
.ye2_c01152{bottom:368.628611pt;}
.ye1_c01152{bottom:369.834179pt;}
.ye0_c01152{bottom:371.828041pt;}
.ydf_c01152{bottom:373.467313pt;}
.yde_c01152{bottom:376.612335pt;}
.ydd_c01152{bottom:384.968053pt;}
.ydc_c01152{bottom:386.238577pt;}
.ydb_c01152{bottom:389.199977pt;}
.yda_c01152{bottom:390.970199pt;}
.yd9_c01152{bottom:394.802103pt;}
.yd8_c01152{bottom:399.834255pt;}
.yd7_c01152{bottom:401.511436pt;}
.yd6_c01152{bottom:404.018631pt;}
.yd5_c01152{bottom:405.744359pt;}
.yd4_c01152{bottom:407.452187pt;}
.yd3_c01152{bottom:409.961879pt;}
.yd2_c01152{bottom:417.695644pt;}
.yd1_c01152{bottom:418.851300pt;}
.yd0_c01152{bottom:419.626956pt;}
.ycf_c01152{bottom:422.197529pt;}
.yce_c01152{bottom:423.362660pt;}
.ycd_c01152{bottom:425.656036pt;}
.ycc_c01152{bottom:427.059503pt;}
.ycb_c01152{bottom:430.466431pt;}
.yca_c01152{bottom:434.216879pt;}
.yc9_c01152{bottom:435.683425pt;}
.yc8_c01152{bottom:440.191340pt;}
.yc7_c01152{bottom:451.545188pt;}
.yc6_c01152{bottom:454.377185pt;}
.yc5_c01152{bottom:455.925244pt;}
.yc4_c01152{bottom:457.096340pt;}
.yc3_c01152{bottom:461.014523pt;}
.yc2_c01152{bottom:464.984212pt;}
.yc1_c01152{bottom:467.758471pt;}
.yc0_c01152{bottom:469.314889pt;}
.ybf_c01152{bottom:471.632037pt;}
.ybe_c01152{bottom:485.094800pt;}
.ybd_c01152{bottom:487.348605pt;}
.ybc_c01152{bottom:488.114483pt;}
.ybb_c01152{bottom:491.095152pt;}
.yba_c01152{bottom:492.225221pt;}
.yb9_c01152{bottom:494.845296pt;}
.yb8_c01152{bottom:495.984840pt;}
.yb7_c01152{bottom:499.368360pt;}
.yb6_c01152{bottom:501.918616pt;}
.yb5_c01152{bottom:503.058160pt;}
.yb4_c01152{bottom:505.693333pt;}
.yb3_c01152{bottom:514.654261pt;}
.yb2_c01152{bottom:516.192603pt;}
.yb1_c01152{bottom:517.739000pt;}
.yb0_c01152{bottom:521.816856pt;}
.yaf_c01152{bottom:522.939528pt;}
.yae_c01152{bottom:526.333536pt;}
.yad_c01152{bottom:527.086392pt;}
.yac_c01152{bottom:528.970432pt;}
.yab_c01152{bottom:530.804667pt;}
.yaa_c01152{bottom:531.945933pt;}
.ya9_c01152{bottom:536.416000pt;}
.ya8_c01152{bottom:541.866872pt;}
.ya7_c01152{bottom:546.638965pt;}
.ya6_c01152{bottom:549.999132pt;}
.ya5_c01152{bottom:551.142593pt;}
.ya4_c01152{bottom:552.242619pt;}
.ya3_c01152{bottom:553.701399pt;}
.ya2_c01152{bottom:556.758685pt;}
.ya1_c01152{bottom:558.230357pt;}
.ya0_c01152{bottom:561.595601pt;}
.y9f_c01152{bottom:562.368731pt;}
.y9e_c01152{bottom:565.369553pt;}
.y9d_c01152{bottom:566.832957pt;}
.y9c_c01152{bottom:573.804861pt;}
.y9b_c01152{bottom:575.384216pt;}
.y9a_c01152{bottom:578.741013pt;}
.y99_c01152{bottom:579.856032pt;}
.y98_c01152{bottom:585.686187pt;}
.y97_c01152{bottom:587.891165pt;}
.y96_c01152{bottom:590.388947pt;}
.y95_c01152{bottom:591.526423pt;}
.y94_c01152{bottom:592.596963pt;}
.y93_c01152{bottom:595.541428pt;}
.y92_c01152{bottom:598.022464pt;}
.y91_c01152{bottom:604.287525pt;}
.y90_c01152{bottom:605.970673pt;}
.y8f_c01152{bottom:607.580877pt;}
.y8e_c01152{bottom:610.357013pt;}
.y8d_c01152{bottom:612.708859pt;}
.y8c_c01152{bottom:614.353404pt;}
.y8b_c01152{bottom:618.643537pt;}
.y8a_c01152{bottom:619.812416pt;}
.y89_c01152{bottom:622.946789pt;}
.y88_c01152{bottom:624.128124pt;}
.y87_c01152{bottom:626.135503pt;}
.y86_c01152{bottom:626.946507pt;}
.y85_c01152{bottom:629.293093pt;}
.y84_c01152{bottom:630.405700pt;}
.y83_c01152{bottom:640.087647pt;}
.y82_c01152{bottom:641.286712pt;}
.y81_c01152{bottom:643.224173pt;}
.y80_c01152{bottom:646.326331pt;}
.y7f_c01152{bottom:647.070031pt;}
.y7e_c01152{bottom:649.027111pt;}
.y7d_c01152{bottom:650.563983pt;}
.y7c_c01152{bottom:654.386549pt;}
.y7b_c01152{bottom:657.084881pt;}
.y7a_c01152{bottom:658.591419pt;}
.y79_c01152{bottom:661.228719pt;}
.y78_c01152{bottom:662.068200pt;}
.y77_c01152{bottom:669.106605pt;}
.y76_c01152{bottom:674.047513pt;}
.y75_c01152{bottom:676.430259pt;}
.y74_c01152{bottom:677.959452pt;}
.y73_c01152{bottom:680.603796pt;}
.y72_c01152{bottom:682.158003pt;}
.y71_c01152{bottom:684.872463pt;}
.y70_c01152{bottom:686.343253pt;}
.y6f_c01152{bottom:689.058665pt;}
.y6e_c01152{bottom:690.238475pt;}
.y6d_c01152{bottom:691.356572pt;}
.y6c_c01152{bottom:694.458412pt;}
.y6b_c01152{bottom:700.803820pt;}
.y6a_c01152{bottom:702.734345pt;}
.y69_c01152{bottom:706.311636pt;}
.y68_c01152{bottom:707.253177pt;}
.y67_c01152{bottom:708.419748pt;}
.y66_c01152{bottom:711.404715pt;}
.y65_c01152{bottom:715.574012pt;}
.y64_c01152{bottom:717.827943pt;}
.y63_c01152{bottom:718.545243pt;}
.y62_c01152{bottom:719.320503pt;}
.y61_c01152{bottom:722.279595pt;}
.y60_c01152{bottom:723.379937pt;}
.y5f_c01152{bottom:724.505475pt;}
.y5e_c01152{bottom:725.641501pt;}
.y5d_c01152{bottom:736.183808pt;}
.y5c_c01152{bottom:739.856455pt;}
.y5b_c01152{bottom:742.061433pt;}
.y5a_c01152{bottom:742.821247pt;}
.y59_c01152{bottom:746.475652pt;}
.y58_c01152{bottom:747.577869pt;}
.y57_c01152{bottom:750.793433pt;}
.y56_c01152{bottom:754.467576pt;}
.y55_c01152{bottom:756.591639pt;}
.y54_c01152{bottom:767.559476pt;}
.y53_c01152{bottom:768.678711pt;}
.y52_c01152{bottom:770.517649pt;}
.y51_c01152{bottom:774.178673pt;}
.y50_c01152{bottom:776.756781pt;}
.y4f_c01152{bottom:779.291635pt;}
.y4e_c01152{bottom:780.387777pt;}
.y4d_c01152{bottom:781.843823pt;}
.y4c_c01152{bottom:782.941189pt;}
.y4b_c01152{bottom:784.402783pt;}
.y4a_c01152{bottom:785.148299pt;}
.y49_c01152{bottom:788.739077pt;}
.y48_c01152{bottom:798.590259pt;}
.y47_c01152{bottom:801.132168pt;}
.y46_c01152{bottom:803.263833pt;}
.y45_c01152{bottom:804.665911pt;}
.y44_c01152{bottom:806.447297pt;}
.y43_c01152{bottom:807.838948pt;}
.y42_c01152{bottom:808.922923pt;}
.y41_c01152{bottom:810.357403pt;}
.y40_c01152{bottom:811.399908pt;}
.y3f_c01152{bottom:812.476040pt;}
.y3e_c01152{bottom:814.618132pt;}
.y3d_c01152{bottom:817.428061pt;}
.y3c_c01152{bottom:818.456649pt;}
.y3b_c01152{bottom:819.929771pt;}
.y3a_c01152{bottom:831.528767pt;}
.y39_c01152{bottom:832.581080pt;}
.y38_c01152{bottom:836.077761pt;}
.y37_c01152{bottom:837.111833pt;}
.y36_c01152{bottom:838.137201pt;}
.y35_c01152{bottom:841.565395pt;}
.y34_c01152{bottom:842.633439pt;}
.y33_c01152{bottom:843.658489pt;}
.y32_c01152{bottom:846.085676pt;}
.y31_c01152{bottom:849.548113pt;}
.y30_c01152{bottom:851.590100pt;}
.y2f_c01152{bottom:862.767172pt;}
.y2e_c01152{bottom:863.691907pt;}
.y2d_c01152{bottom:864.681189pt;}
.y2c_c01152{bottom:866.271905pt;}
.y2b_c01152{bottom:869.729617pt;}
.y2a_c01152{bottom:871.004076pt;}
.y29_c01152{bottom:871.951777pt;}
.y28_c01152{bottom:874.466775pt;}
.y27_c01152{bottom:875.449439pt;}
.y26_c01152{bottom:876.091700pt;}
.y25_c01152{bottom:877.953165pt;}
.y24_c01152{bottom:879.526264pt;}
.y23_c01152{bottom:882.055995pt;}
.y22_c01152{bottom:896.220791pt;}
.y21_c01152{bottom:899.488009pt;}
.y20_c01152{bottom:902.325428pt;}
.y1f_c01152{bottom:903.362131pt;}
.y1e_c01152{bottom:907.257757pt;}
.y1d_c01152{bottom:908.686281pt;}
.y1c_c01152{bottom:909.740953pt;}
.y1b_c01152{bottom:911.875747pt;}
.y1a_c01152{bottom:912.952377pt;}
.y19_c01152{bottom:914.688033pt;}
.y18_c01152{bottom:924.778464pt;}
.y17_c01152{bottom:926.434149pt;}
.y16_c01152{bottom:929.723369pt;}
.y15_c01152{bottom:932.955776pt;}
.y14_c01152{bottom:933.940443pt;}
.y13_c01152{bottom:935.571756pt;}
.y12_c01152{bottom:937.206016pt;}
.y11_c01152{bottom:938.180392pt;}
.y10_c01152{bottom:941.714189pt;}
.yf_c01152{bottom:942.712756pt;}
.ye_c01152{bottom:943.696335pt;}
.yd_c01152{bottom:944.666404pt;}
.yc_c01152{bottom:959.666096pt;}
.yb_c01152{bottom:960.711075pt;}
.ya_c01152{bottom:963.756613pt;}
.y9_c01152{bottom:965.116885pt;}
.y8_c01152{bottom:968.099411pt;}
.y7_c01152{bottom:971.478195pt;}
.y6_c01152{bottom:972.783296pt;}
.y5_c01152{bottom:974.174667pt;}
.y4_c01152{bottom:1005.600000pt;}
.y3_c01152{bottom:1062.622717pt;}
.y2_c01152{bottom:1064.470691pt;}
.y1_c01152{bottom:1065.373333pt;}
.h10_c01152{height:31.998992pt;}
.hc_c01152{height:58.650384pt;}
.h4_c01152{height:63.973018pt;}
.ha_c01152{height:63.982238pt;}
.h12_c01152{height:63.997984pt;}
.h5_c01152{height:69.304103pt;}
.h9_c01152{height:69.314091pt;}
.h11_c01152{height:69.331149pt;}
.h15_c01152{height:69.357769pt;}
.h7_c01152{height:74.635188pt;}
.hd_c01152{height:74.645944pt;}
.h14_c01152{height:74.685368pt;}
.h6_c01152{height:79.966273pt;}
.he_c01152{height:79.977797pt;}
.hb_c01152{height:85.309650pt;}
.hf_c01152{height:85.330645pt;}
.h3_c01152{height:85.333333pt;}
.h2_c01152{height:85.338325pt;}
.h13_c01152{height:90.689376pt;}
.h8_c01152{height:106.621697pt;}
.h1_c01152{height:1118.666667pt;}
.h0_c01152{height:1118.880000pt;}
.w0_c01152{width:817.866667pt;}
.w1_c01152{width:818.000000pt;}
.x0_c01152{left:0.000000pt;}
.xe7_c01152{left:144.234667pt;}
.xdd_c01152{left:145.189333pt;}
.xcb_c01152{left:146.251899pt;}
.xbd_c01152{left:148.758273pt;}
.xb1_c01152{left:150.600039pt;}
.xa0_c01152{left:152.979453pt;}
.x92_c01152{left:154.676000pt;}
.x85_c01152{left:156.738977pt;}
.x6c_c01152{left:158.337292pt;}
.x62_c01152{left:159.675699pt;}
.x56_c01152{left:160.747653pt;}
.x37_c01152{left:162.899164pt;}
.x2d_c01152{left:163.819335pt;}
.x23_c01152{left:164.805537pt;}
.xe_c01152{left:166.787065pt;}
.xbe_c01152{left:168.326113pt;}
.x4_c01152{left:169.680000pt;}
.x6d_c01152{left:179.829436pt;}
.x77_c01152{left:187.233205pt;}
.x57_c01152{left:190.600353pt;}
.xde_c01152{left:194.182957pt;}
.x86_c01152{left:195.231228pt;}
.xf_c01152{left:196.152003pt;}
.x38_c01152{left:203.792795pt;}
.xa6_c01152{left:210.787080pt;}
.x9c_c01152{left:212.562625pt;}
.x1a_c01152{left:214.738080pt;}
.xb8_c01152{left:218.464688pt;}
.x50_c01152{left:219.907196pt;}
.x2e_c01152{left:222.093672pt;}
.x93_c01152{left:223.953320pt;}
.x10_c01152{left:225.913876pt;}
.x5_c01152{left:229.920000pt;}
.x39_c01152{left:232.330277pt;}
.x63_c01152{left:239.138633pt;}
.x1b_c01152{left:244.608804pt;}
.x78_c01152{left:245.837229pt;}
.x6e_c01152{left:247.406311pt;}
.x58_c01152{left:249.105803pt;}
.xa7_c01152{left:250.459811pt;}
.x9d_c01152{left:251.446095pt;}
.x94_c01152{left:253.911332pt;}
.x11_c01152{left:256.155315pt;}
.xcc_c01152{left:257.579585pt;}
.x45_c01152{left:259.758816pt;}
.xdf_c01152{left:264.140929pt;}
.x6_c01152{left:265.264000pt;}
.x64_c01152{left:267.798423pt;}
.xad_c01152{left:269.253309pt;}
.xa1_c01152{left:271.490157pt;}
.x87_c01152{left:274.116176pt;}
.x46_c01152{left:279.900612pt;}
.xcd_c01152{left:283.010347pt;}
.xd2_c01152{left:284.535433pt;}
.x6f_c01152{left:285.990441pt;}
.xb2_c01152{left:287.785113pt;}
.xa8_c01152{left:290.568055pt;}
.x24_c01152{left:292.879381pt;}
.x88_c01152{left:294.442395pt;}
.x65_c01152{left:298.036360pt;}
.xe8_c01152{left:300.860551pt;}
.xe4_c01152{left:302.019557pt;}
.x1c_c01152{left:303.846801pt;}
.x81_c01152{left:305.085669pt;}
.x7_c01152{left:306.145744pt;}
.x3a_c01152{left:310.308245pt;}
.x79_c01152{left:316.227051pt;}
.xae_c01152{left:317.848471pt;}
.x47_c01152{left:319.358409pt;}
.x2f_c01152{left:320.928713pt;}
.xbf_c01152{left:325.729204pt;}
.x59_c01152{left:326.921336pt;}
.xe0_c01152{left:331.309693pt;}
.x1d_c01152{left:333.111511pt;}
.xd9_c01152{left:342.886431pt;}
.x8_c01152{left:344.492692pt;}
.x7a_c01152{left:345.726153pt;}
.x5a_c01152{left:347.310159pt;}
.x48_c01152{left:348.976388pt;}
.x25_c01152{left:350.982501pt;}
.x70_c01152{left:355.125484pt;}
.xe1_c01152{left:361.350289pt;}
.x12_c01152{left:363.121205pt;}
.x82_c01152{left:364.711903pt;}
.x5b_c01152{left:366.152711pt;}
.x66_c01152{left:367.594888pt;}
.x3b_c01152{left:369.760695pt;}
.x26_c01152{left:371.029129pt;}
.x1e_c01152{left:372.773132pt;}
.xda_c01152{left:381.742203pt;}
.x89_c01152{left:382.937785pt;}
.xb3_c01152{left:385.594661pt;}
.x49_c01152{left:388.310355pt;}
.x30_c01152{left:390.207672pt;}
.x13_c01152{left:392.612683pt;}
.xc6_c01152{left:393.777351pt;}
.xb9_c01152{left:395.309157pt;}
.x3c_c01152{left:399.616767pt;}
.x27_c01152{left:401.704511pt;}
.xce_c01152{left:403.105177pt;}
.xc0_c01152{left:404.194985pt;}
.x51_c01152{left:405.964651pt;}
.xa2_c01152{left:408.642201pt;}
.x95_c01152{left:409.907180pt;}
.xba_c01152{left:414.632619pt;}
.x1_c01152{left:415.862667pt;}
.x4a_c01152{left:417.892369pt;}
.x31_c01152{left:419.464055pt;}
.xe2_c01152{left:420.424489pt;}
.x8a_c01152{left:421.633787pt;}
.x7b_c01152{left:424.029132pt;}
.x5c_c01152{left:425.403989pt;}
.xb4_c01152{left:426.639387pt;}
.x3d_c01152{left:428.563173pt;}
.xdb_c01152{left:430.337559pt;}
.x83_c01152{left:432.146836pt;}
.xc1_c01152{left:433.603996pt;}
.x2_c01152{left:435.465711pt;}
.x96_c01152{left:439.865192pt;}
.x14_c01152{left:442.080844pt;}
.x9_c01152{left:443.769316pt;}
.xe9_c01152{left:448.007923pt;}
.x32_c01152{left:449.944500pt;}
.xcf_c01152{left:451.584649pt;}
.x71_c01152{left:453.061463pt;}
.xc2_c01152{left:462.632055pt;}
.x3e_c01152{left:468.360613pt;}
.xdc_c01152{left:470.902287pt;}
.x3_c01152{left:475.598871pt;}
.xe5_c01152{left:479.330877pt;}
.x1f_c01152{left:480.888224pt;}
.xc7_c01152{left:481.810563pt;}
.xb5_c01152{left:484.200796pt;}
.x4b_c01152{left:486.338200pt;}
.x15_c01152{left:491.462425pt;}
.x72_c01152{left:492.419349pt;}
.x3f_c01152{left:498.447121pt;}
.x8b_c01152{left:502.021049pt;}
.xa9_c01152{left:504.740992pt;}
.x97_c01152{left:508.745576pt;}
.x20_c01152{left:509.664135pt;}
.xc8_c01152{left:511.586091pt;}
.xbb_c01152{left:512.732543pt;}
.x67_c01152{left:514.644021pt;}
.x9e_c01152{left:517.720600pt;}
.x16_c01152{left:521.256267pt;}
.xc3_c01152{left:522.152091pt;}
.xea_c01152{left:526.651867pt;}
.xa_c01152{left:531.402928pt;}
.x52_c01152{left:534.401637pt;}
.x40_c01152{left:537.064500pt;}
.x98_c01152{left:538.454504pt;}
.x8c_c01152{left:540.377436pt;}
.x73_c01152{left:542.556631pt;}
.x33_c01152{left:547.812555pt;}
.x28_c01152{left:549.591883pt;}
.xc4_c01152{left:552.147181pt;}
.xaf_c01152{left:553.327260pt;}
.x53_c01152{left:554.924340pt;}
.x4c_c01152{left:555.937407pt;}
.xd6_c01152{left:558.484075pt;}
.x7c_c01152{left:560.408799pt;}
.x74_c01152{left:561.626320pt;}
.x8d_c01152{left:569.289880pt;}
.xb_c01152{left:571.370920pt;}
.x34_c01152{left:577.078261pt;}
.xd3_c01152{left:579.775216pt;}
.x68_c01152{left:582.388683pt;}
.x41_c01152{left:586.506317pt;}
.x21_c01152{left:588.410621pt;}
.xc5_c01152{left:591.300127pt;}
.xc9_c01152{left:592.349247pt;}
.xaa_c01152{left:593.766937pt;}
.xa3_c01152{left:595.396593pt;}
.x8e_c01152{left:599.361028pt;}
.x7d_c01152{left:601.480624pt;}
.x35_c01152{left:606.599712pt;}
.xd7_c01152{left:609.114264pt;}
.x5d_c01152{left:613.514097pt;}
.x54_c01152{left:614.461329pt;}
.x99_c01152{left:616.814732pt;}
.x17_c01152{left:619.092312pt;}
.x69_c01152{left:621.560135pt;}
.xb0_c01152{left:623.378509pt;}
.x42_c01152{left:625.430056pt;}
.xe3_c01152{left:627.498541pt;}
.xd0_c01152{left:628.976413pt;}
.xab_c01152{left:634.904615pt;}
.x9a_c01152{left:636.949244pt;}
.xd4_c01152{left:638.788309pt;}
.x75_c01152{left:641.098579pt;}
.x5e_c01152{left:644.185887pt;}
.x90_c01152{left:647.069833pt;}
.x84_c01152{left:649.116837pt;}
.x4d_c01152{left:654.808363pt;}
.x9f_c01152{left:656.363269pt;}
.x29_c01152{left:657.535183pt;}
.xc_c01152{left:660.856012pt;}
.xd8_c01152{left:667.887597pt;}
.x5f_c01152{left:668.951072pt;}
.xd1_c01152{left:670.010005pt;}
.xb6_c01152{left:671.495565pt;}
.x22_c01152{left:679.080356pt;}
.x6a_c01152{left:682.597977pt;}
.x43_c01152{left:684.576145pt;}
.x8f_c01152{left:687.707235pt;}
.xca_c01152{left:689.413419pt;}
.xd_c01152{left:691.559944pt;}
.xa4_c01152{left:693.606285pt;}
.x9b_c01152{left:696.200600pt;}
.x4e_c01152{left:704.452253pt;}
.xe6_c01152{left:705.567759pt;}
.x2a_c01152{left:707.212859pt;}
.xbc_c01152{left:710.729411pt;}
.x55_c01152{left:713.634604pt;}
.x18_c01152{left:718.676032pt;}
.x76_c01152{left:721.463141pt;}
.x91_c01152{left:728.165989pt;}
.x7e_c01152{left:729.583588pt;}
.xac_c01152{left:733.219487pt;}
.x4f_c01152{left:734.673583pt;}
.x36_c01152{left:736.419981pt;}
.x2b_c01152{left:738.082712pt;}
.xb7_c01152{left:742.579171pt;}
.xa5_c01152{left:744.379461pt;}
.xd5_c01152{left:748.039984pt;}
.x44_c01152{left:755.110064pt;}
.x60_c01152{left:763.010788pt;}
.x2c_c01152{left:766.938445pt;}
.x19_c01152{left:768.812903pt;}
.x7f_c01152{left:769.803115pt;}
.x6b_c01152{left:809.161732pt;}
.x80_c01152{left:811.852447pt;}
.x61_c01152{left:813.778405pt;}
}





/* 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_c01153 {
    display:none;
  }
  .loading-indicator_c01153.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01153 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_c01153 { 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_c01153" -> "#page-container .classname_c01153")
 */
.pf_c01153 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01153 { /* 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_c01153.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01153 { /* 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_c01153 { /* 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_c01153 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01153 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01153 {overflow:visible;}
  }
}
.c_c01153 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01153 { /* 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_c01153:after { /* webkit #35443 */
  content: '';
}
.t_c01153:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01153 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 */
}
.__c01153 { /* 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_c01153 { /* info for Javascript */
  display:none;
}
.l_c01153 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01153 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01153 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01153: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_c01153 {
    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_c01153.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01153.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_c01153 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01153{font-family:sans-serif;visibility:hidden;}
.sc__c01153{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01153{-webkit-text-stroke:0px transparent;}
}
.y0_c01153{bottom:0.000000px;}
.h1_c01153{height:1258.500000px;}
.h0_c01153{height:1258.740000px;}
.w0_c01153{width:920.100000px;}
.w1_c01153{width:920.250000px;}
.x0_c01153{left:0.000000px;}
@media print{
.y0_c01153{bottom:0.000000pt;}
.h1_c01153{height:1118.666667pt;}
.h0_c01153{height:1118.880000pt;}
.w0_c01153{width:817.866667pt;}
.w1_c01153{width:818.000000pt;}
.x0_c01153{left:0.000000pt;}
}





/* 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_c01154 {
    display:none;
  }
  .loading-indicator_c01154.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01154 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_c01154 { 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_c01154" -> "#page-container .classname_c01154")
 */
.pf_c01154 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01154 { /* 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_c01154.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01154 { /* 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_c01154 { /* 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_c01154 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01154 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01154 {overflow:visible;}
  }
}
.c_c01154 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01154 { /* 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_c01154:after { /* webkit #35443 */
  content: '';
}
.t_c01154:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01154 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 */
}
.__c01154 { /* 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_c01154 { /* info for Javascript */
  display:none;
}
.l_c01154 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01154 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01154 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01154: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_c01154 {
    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_c01154.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01154.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_c01154 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01154{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01154;src:url('chunks/assets/font_cfe63ee56e9e10a97d33a3db.woff2')format("woff");}.ff1_c01154{font-family:ff1_c01154;line-height:1.000000;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;}
.m71_c01154{transform:matrix(0.020555,0.001008,-0.012248,0.249700,0,0);-ms-transform:matrix(0.020555,0.001008,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.020555,0.001008,-0.012248,0.249700,0,0);}
.m9d_c01154{transform:matrix(0.127722,0.007295,-0.014255,0.249593,0,0);-ms-transform:matrix(0.127722,0.007295,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.127722,0.007295,-0.014255,0.249593,0,0);}
.m9e_c01154{transform:matrix(0.140211,0.008008,-0.014255,0.249593,0,0);-ms-transform:matrix(0.140211,0.008008,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.140211,0.008008,-0.014255,0.249593,0,0);}
.maf_c01154{transform:matrix(0.146621,0.008374,-0.014255,0.249593,0,0);-ms-transform:matrix(0.146621,0.008374,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.146621,0.008374,-0.014255,0.249593,0,0);}
.m62_c01154{transform:matrix(0.183370,0.008994,-0.012248,0.249700,0,0);-ms-transform:matrix(0.183370,0.008994,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.183370,0.008994,-0.012248,0.249700,0,0);}
.mb0_c01154{transform:matrix(0.183970,0.010507,-0.014255,0.249593,0,0);-ms-transform:matrix(0.183970,0.010507,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.183970,0.010507,-0.014255,0.249593,0,0);}
.m5b_c01154{transform:matrix(0.185897,0.009118,-0.012248,0.249700,0,0);-ms-transform:matrix(0.185897,0.009118,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.185897,0.009118,-0.012248,0.249700,0,0);}
.m8d_c01154{transform:matrix(0.189918,0.010076,-0.013245,0.249649,0,0);-ms-transform:matrix(0.189918,0.010076,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.189918,0.010076,-0.013245,0.249649,0,0);}
.mc9_c01154{transform:matrix(0.190005,0.010852,-0.014255,0.249593,0,0);-ms-transform:matrix(0.190005,0.010852,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.190005,0.010852,-0.014255,0.249593,0,0);}
.m57_c01154{transform:matrix(0.190856,0.009361,-0.012248,0.249700,0,0);-ms-transform:matrix(0.190856,0.009361,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.190856,0.009361,-0.012248,0.249700,0,0);}
.m59_c01154{transform:matrix(0.191490,0.009392,-0.012248,0.249700,0,0);-ms-transform:matrix(0.191490,0.009392,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.191490,0.009392,-0.012248,0.249700,0,0);}
.m2f_c01154{transform:matrix(0.192354,0.009435,-0.012248,0.249700,0,0);-ms-transform:matrix(0.192354,0.009435,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.192354,0.009435,-0.012248,0.249700,0,0);}
.m2d_c01154{transform:matrix(0.193572,0.009495,-0.012248,0.249700,0,0);-ms-transform:matrix(0.193572,0.009495,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.193572,0.009495,-0.012248,0.249700,0,0);}
.m5e_c01154{transform:matrix(0.194766,0.009553,-0.012248,0.249700,0,0);-ms-transform:matrix(0.194766,0.009553,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.194766,0.009553,-0.012248,0.249700,0,0);}
.m42_c01154{transform:matrix(0.195640,0.009596,-0.012248,0.249700,0,0);-ms-transform:matrix(0.195640,0.009596,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.195640,0.009596,-0.012248,0.249700,0,0);}
.m4c_c01154{transform:matrix(0.197093,0.009667,-0.012248,0.249700,0,0);-ms-transform:matrix(0.197093,0.009667,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.197093,0.009667,-0.012248,0.249700,0,0);}
.ma3_c01154{transform:matrix(0.197352,0.011469,-0.014505,0.249579,0,0);-ms-transform:matrix(0.197352,0.011469,-0.014505,0.249579,0,0);-webkit-transform:matrix(0.197352,0.011469,-0.014505,0.249579,0,0);}
.ma1_c01154{transform:matrix(0.197452,0.011475,-0.014505,0.249579,0,0);-ms-transform:matrix(0.197452,0.011475,-0.014505,0.249579,0,0);-webkit-transform:matrix(0.197452,0.011475,-0.014505,0.249579,0,0);}
.m3f_c01154{transform:matrix(0.198137,0.009718,-0.012248,0.249700,0,0);-ms-transform:matrix(0.198137,0.009718,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.198137,0.009718,-0.012248,0.249700,0,0);}
.m55_c01154{transform:matrix(0.198307,0.009727,-0.012248,0.249700,0,0);-ms-transform:matrix(0.198307,0.009727,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.198307,0.009727,-0.012248,0.249700,0,0);}
.m87_c01154{transform:matrix(0.199684,0.010594,-0.013245,0.249649,0,0);-ms-transform:matrix(0.199684,0.010594,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.199684,0.010594,-0.013245,0.249649,0,0);}
.mc6_c01154{transform:matrix(0.200553,0.011454,-0.014255,0.249593,0,0);-ms-transform:matrix(0.200553,0.011454,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.200553,0.011454,-0.014255,0.249593,0,0);}
.m8e_c01154{transform:matrix(0.201247,0.010677,-0.013245,0.249649,0,0);-ms-transform:matrix(0.201247,0.010677,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.201247,0.010677,-0.013245,0.249649,0,0);}
.m6f_c01154{transform:matrix(0.201972,0.009907,-0.012248,0.249700,0,0);-ms-transform:matrix(0.201972,0.009907,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.201972,0.009907,-0.012248,0.249700,0,0);}
.m51_c01154{transform:matrix(0.203955,0.010004,-0.012248,0.249700,0,0);-ms-transform:matrix(0.203955,0.010004,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.203955,0.010004,-0.012248,0.249700,0,0);}
.m23_c01154{transform:matrix(0.205558,0.010082,-0.012248,0.249700,0,0);-ms-transform:matrix(0.205558,0.010082,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.205558,0.010082,-0.012248,0.249700,0,0);}
.m88_c01154{transform:matrix(0.206310,0.010945,-0.013245,0.249649,0,0);-ms-transform:matrix(0.206310,0.010945,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.206310,0.010945,-0.013245,0.249649,0,0);}
.m50_c01154{transform:matrix(0.207645,0.010185,-0.012248,0.249700,0,0);-ms-transform:matrix(0.207645,0.010185,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.207645,0.010185,-0.012248,0.249700,0,0);}
.m80_c01154{transform:matrix(0.208182,0.011045,-0.013245,0.249649,0,0);-ms-transform:matrix(0.208182,0.011045,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.208182,0.011045,-0.013245,0.249649,0,0);}
.m35_c01154{transform:matrix(0.208664,0.010235,-0.012248,0.249700,0,0);-ms-transform:matrix(0.208664,0.010235,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.208664,0.010235,-0.012248,0.249700,0,0);}
.m7d_c01154{transform:matrix(0.209096,0.011093,-0.013245,0.249649,0,0);-ms-transform:matrix(0.209096,0.011093,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.209096,0.011093,-0.013245,0.249649,0,0);}
.m82_c01154{transform:matrix(0.210249,0.011154,-0.013245,0.249649,0,0);-ms-transform:matrix(0.210249,0.011154,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.210249,0.011154,-0.013245,0.249649,0,0);}
.m18_c01154{transform:matrix(0.210302,0.010315,-0.012248,0.249700,0,0);-ms-transform:matrix(0.210302,0.010315,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.210302,0.010315,-0.012248,0.249700,0,0);}
.m3b_c01154{transform:matrix(0.210582,0.010329,-0.012248,0.249700,0,0);-ms-transform:matrix(0.210582,0.010329,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.210582,0.010329,-0.012248,0.249700,0,0);}
.m56_c01154{transform:matrix(0.210672,0.010333,-0.012248,0.249700,0,0);-ms-transform:matrix(0.210672,0.010333,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.210672,0.010333,-0.012248,0.249700,0,0);}
.m85_c01154{transform:matrix(0.210819,0.011185,-0.013245,0.249649,0,0);-ms-transform:matrix(0.210819,0.011185,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.210819,0.011185,-0.013245,0.249649,0,0);}
.mc7_c01154{transform:matrix(0.211905,0.012103,-0.014255,0.249593,0,0);-ms-transform:matrix(0.211905,0.012103,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.211905,0.012103,-0.014255,0.249593,0,0);}
.mf_c01154{transform:matrix(0.212255,0.010411,-0.012248,0.249700,0,0);-ms-transform:matrix(0.212255,0.010411,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.212255,0.010411,-0.012248,0.249700,0,0);}
.m3e_c01154{transform:matrix(0.212260,0.010411,-0.012248,0.249700,0,0);-ms-transform:matrix(0.212260,0.010411,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.212260,0.010411,-0.012248,0.249700,0,0);}
.mb4_c01154{transform:matrix(0.212544,0.012139,-0.014255,0.249593,0,0);-ms-transform:matrix(0.212544,0.012139,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.212544,0.012139,-0.014255,0.249593,0,0);}
.m37_c01154{transform:matrix(0.212694,0.010432,-0.012248,0.249700,0,0);-ms-transform:matrix(0.212694,0.010432,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.212694,0.010432,-0.012248,0.249700,0,0);}
.m5a_c01154{transform:matrix(0.212869,0.010441,-0.012248,0.249700,0,0);-ms-transform:matrix(0.212869,0.010441,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.212869,0.010441,-0.012248,0.249700,0,0);}
.md_c01154{transform:matrix(0.212879,0.010442,-0.012248,0.249700,0,0);-ms-transform:matrix(0.212879,0.010442,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.212879,0.010442,-0.012248,0.249700,0,0);}
.m86_c01154{transform:matrix(0.213085,0.011305,-0.013245,0.249649,0,0);-ms-transform:matrix(0.213085,0.011305,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.213085,0.011305,-0.013245,0.249649,0,0);}
.m8b_c01154{transform:matrix(0.213540,0.011329,-0.013245,0.249649,0,0);-ms-transform:matrix(0.213540,0.011329,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.213540,0.011329,-0.013245,0.249649,0,0);}
.m84_c01154{transform:matrix(0.213560,0.011330,-0.013245,0.249649,0,0);-ms-transform:matrix(0.213560,0.011330,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.213560,0.011330,-0.013245,0.249649,0,0);}
.m3d_c01154{transform:matrix(0.214512,0.010522,-0.012248,0.249700,0,0);-ms-transform:matrix(0.214512,0.010522,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.214512,0.010522,-0.012248,0.249700,0,0);}
.m20_c01154{transform:matrix(0.215096,0.010550,-0.012248,0.249700,0,0);-ms-transform:matrix(0.215096,0.010550,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.215096,0.010550,-0.012248,0.249700,0,0);}
.m60_c01154{transform:matrix(0.215456,0.010568,-0.012248,0.249700,0,0);-ms-transform:matrix(0.215456,0.010568,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.215456,0.010568,-0.012248,0.249700,0,0);}
.m64_c01154{transform:matrix(0.216465,0.010617,-0.012248,0.249700,0,0);-ms-transform:matrix(0.216465,0.010617,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.216465,0.010617,-0.012248,0.249700,0,0);}
.m6a_c01154{transform:matrix(0.216530,0.010621,-0.012248,0.249700,0,0);-ms-transform:matrix(0.216530,0.010621,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.216530,0.010621,-0.012248,0.249700,0,0);}
.m58_c01154{transform:matrix(0.216784,0.010633,-0.012248,0.249700,0,0);-ms-transform:matrix(0.216784,0.010633,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.216784,0.010633,-0.012248,0.249700,0,0);}
.m1_c01154{transform:matrix(0.216824,0.010635,-0.012248,0.249700,0,0);-ms-transform:matrix(0.216824,0.010635,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.216824,0.010635,-0.012248,0.249700,0,0);}
.m5c_c01154{transform:matrix(0.217598,0.010673,-0.012248,0.249700,0,0);-ms-transform:matrix(0.217598,0.010673,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.217598,0.010673,-0.012248,0.249700,0,0);}
.m15_c01154{transform:matrix(0.218567,0.010721,-0.012248,0.249700,0,0);-ms-transform:matrix(0.218567,0.010721,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.218567,0.010721,-0.012248,0.249700,0,0);}
.m1c_c01154{transform:matrix(0.218732,0.010729,-0.012248,0.249700,0,0);-ms-transform:matrix(0.218732,0.010729,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.218732,0.010729,-0.012248,0.249700,0,0);}
.m5f_c01154{transform:matrix(0.218932,0.010738,-0.012248,0.249700,0,0);-ms-transform:matrix(0.218932,0.010738,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.218932,0.010738,-0.012248,0.249700,0,0);}
.m6e_c01154{transform:matrix(0.218992,0.010741,-0.012248,0.249700,0,0);-ms-transform:matrix(0.218992,0.010741,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.218992,0.010741,-0.012248,0.249700,0,0);}
.m33_c01154{transform:matrix(0.219082,0.010746,-0.012248,0.249700,0,0);-ms-transform:matrix(0.219082,0.010746,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.219082,0.010746,-0.012248,0.249700,0,0);}
.m8a_c01154{transform:matrix(0.219851,0.011664,-0.013245,0.249649,0,0);-ms-transform:matrix(0.219851,0.011664,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.219851,0.011664,-0.013245,0.249649,0,0);}
.mb2_c01154{transform:matrix(0.220271,0.012581,-0.014255,0.249593,0,0);-ms-transform:matrix(0.220271,0.012581,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.220271,0.012581,-0.014255,0.249593,0,0);}
.m5d_c01154{transform:matrix(0.220745,0.010827,-0.012248,0.249700,0,0);-ms-transform:matrix(0.220745,0.010827,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.220745,0.010827,-0.012248,0.249700,0,0);}
.m38_c01154{transform:matrix(0.220904,0.010835,-0.012248,0.249700,0,0);-ms-transform:matrix(0.220904,0.010835,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.220904,0.010835,-0.012248,0.249700,0,0);}
.m8c_c01154{transform:matrix(0.221249,0.011738,-0.013245,0.249649,0,0);-ms-transform:matrix(0.221249,0.011738,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.221249,0.011738,-0.013245,0.249649,0,0);}
.m6d_c01154{transform:matrix(0.221619,0.010870,-0.012248,0.249700,0,0);-ms-transform:matrix(0.221619,0.010870,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.221619,0.010870,-0.012248,0.249700,0,0);}
.m90_c01154{transform:matrix(0.221838,0.011769,-0.013245,0.249649,0,0);-ms-transform:matrix(0.221838,0.011769,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.221838,0.011769,-0.013245,0.249649,0,0);}
.m81_c01154{transform:matrix(0.222118,0.011784,-0.013245,0.249649,0,0);-ms-transform:matrix(0.222118,0.011784,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.222118,0.011784,-0.013245,0.249649,0,0);}
.m76_c01154{transform:matrix(0.222203,0.011789,-0.013245,0.249649,0,0);-ms-transform:matrix(0.222203,0.011789,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.222203,0.011789,-0.013245,0.249649,0,0);}
.m10_c01154{transform:matrix(0.222652,0.010921,-0.012248,0.249700,0,0);-ms-transform:matrix(0.222652,0.010921,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.222652,0.010921,-0.012248,0.249700,0,0);}
.m4f_c01154{transform:matrix(0.222722,0.010924,-0.012248,0.249700,0,0);-ms-transform:matrix(0.222722,0.010924,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.222722,0.010924,-0.012248,0.249700,0,0);}
.mc1_c01154{transform:matrix(0.223151,0.012745,-0.014255,0.249593,0,0);-ms-transform:matrix(0.223151,0.012745,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.223151,0.012745,-0.014255,0.249593,0,0);}
.m70_c01154{transform:matrix(0.223491,0.010962,-0.012248,0.249700,0,0);-ms-transform:matrix(0.223491,0.010962,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.223491,0.010962,-0.012248,0.249700,0,0);}
.m99_c01154{transform:matrix(0.223693,0.013000,-0.014505,0.249579,0,0);-ms-transform:matrix(0.223693,0.013000,-0.014505,0.249579,0,0);-webkit-transform:matrix(0.223693,0.013000,-0.014505,0.249579,0,0);}
.m66_c01154{transform:matrix(0.223721,0.010973,-0.012248,0.249700,0,0);-ms-transform:matrix(0.223721,0.010973,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.223721,0.010973,-0.012248,0.249700,0,0);}
.mc2_c01154{transform:matrix(0.223730,0.012778,-0.014255,0.249593,0,0);-ms-transform:matrix(0.223730,0.012778,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.223730,0.012778,-0.014255,0.249593,0,0);}
.m36_c01154{transform:matrix(0.224255,0.011000,-0.012248,0.249700,0,0);-ms-transform:matrix(0.224255,0.011000,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.224255,0.011000,-0.012248,0.249700,0,0);}
.m7a_c01154{transform:matrix(0.224305,0.011900,-0.013245,0.249649,0,0);-ms-transform:matrix(0.224305,0.011900,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.224305,0.011900,-0.013245,0.249649,0,0);}
.m31_c01154{transform:matrix(0.225304,0.011051,-0.012248,0.249700,0,0);-ms-transform:matrix(0.225304,0.011051,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.225304,0.011051,-0.012248,0.249700,0,0);}
.m3c_c01154{transform:matrix(0.225839,0.011077,-0.012248,0.249700,0,0);-ms-transform:matrix(0.225839,0.011077,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.225839,0.011077,-0.012248,0.249700,0,0);}
.m1f_c01154{transform:matrix(0.226083,0.011089,-0.012248,0.249700,0,0);-ms-transform:matrix(0.226083,0.011089,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.226083,0.011089,-0.012248,0.249700,0,0);}
.ma5_c01154{transform:matrix(0.226118,0.013141,-0.014505,0.249579,0,0);-ms-transform:matrix(0.226118,0.013141,-0.014505,0.249579,0,0);-webkit-transform:matrix(0.226118,0.013141,-0.014505,0.249579,0,0);}
.m48_c01154{transform:matrix(0.226303,0.011100,-0.012248,0.249700,0,0);-ms-transform:matrix(0.226303,0.011100,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.226303,0.011100,-0.012248,0.249700,0,0);}
.m40_c01154{transform:matrix(0.227701,0.011169,-0.012248,0.249700,0,0);-ms-transform:matrix(0.227701,0.011169,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.227701,0.011169,-0.012248,0.249700,0,0);}
.m92_c01154{transform:matrix(0.228943,0.012146,-0.013245,0.249649,0,0);-ms-transform:matrix(0.228943,0.012146,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.228943,0.012146,-0.013245,0.249649,0,0);}
.m8f_c01154{transform:matrix(0.229153,0.012157,-0.013245,0.249649,0,0);-ms-transform:matrix(0.229153,0.012157,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.229153,0.012157,-0.013245,0.249649,0,0);}
.m39_c01154{transform:matrix(0.229389,0.011251,-0.012248,0.249700,0,0);-ms-transform:matrix(0.229389,0.011251,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.229389,0.011251,-0.012248,0.249700,0,0);}
.m9f_c01154{transform:matrix(0.229478,0.013336,-0.014505,0.249579,0,0);-ms-transform:matrix(0.229478,0.013336,-0.014505,0.249579,0,0);-webkit-transform:matrix(0.229478,0.013336,-0.014505,0.249579,0,0);}
.m61_c01154{transform:matrix(0.231467,0.011353,-0.012248,0.249700,0,0);-ms-transform:matrix(0.231467,0.011353,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.231467,0.011353,-0.012248,0.249700,0,0);}
.mc3_c01154{transform:matrix(0.231757,0.013237,-0.014255,0.249593,0,0);-ms-transform:matrix(0.231757,0.013237,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.231757,0.013237,-0.014255,0.249593,0,0);}
.m12_c01154{transform:matrix(0.232216,0.011390,-0.012248,0.249700,0,0);-ms-transform:matrix(0.232216,0.011390,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.232216,0.011390,-0.012248,0.249700,0,0);}
.ma0_c01154{transform:matrix(0.232268,0.013499,-0.014505,0.249579,0,0);-ms-transform:matrix(0.232268,0.013499,-0.014505,0.249579,0,0);-webkit-transform:matrix(0.232268,0.013499,-0.014505,0.249579,0,0);}
.m75_c01154{transform:matrix(0.232268,0.012323,-0.013245,0.249649,0,0);-ms-transform:matrix(0.232268,0.012323,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.232268,0.012323,-0.013245,0.249649,0,0);}
.m2e_c01154{transform:matrix(0.232970,0.011427,-0.012248,0.249700,0,0);-ms-transform:matrix(0.232970,0.011427,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.232970,0.011427,-0.012248,0.249700,0,0);}
.mc4_c01154{transform:matrix(0.232985,0.013307,-0.014255,0.249593,0,0);-ms-transform:matrix(0.232985,0.013307,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.232985,0.013307,-0.014255,0.249593,0,0);}
.m30_c01154{transform:matrix(0.233250,0.011441,-0.012248,0.249700,0,0);-ms-transform:matrix(0.233250,0.011441,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.233250,0.011441,-0.012248,0.249700,0,0);}
.m3a_c01154{transform:matrix(0.233310,0.011444,-0.012248,0.249700,0,0);-ms-transform:matrix(0.233310,0.011444,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.233310,0.011444,-0.012248,0.249700,0,0);}
.ma2_c01154{transform:matrix(0.233481,0.013569,-0.014505,0.249579,0,0);-ms-transform:matrix(0.233481,0.013569,-0.014505,0.249579,0,0);-webkit-transform:matrix(0.233481,0.013569,-0.014505,0.249579,0,0);}
.m54_c01154{transform:matrix(0.234263,0.011490,-0.012248,0.249700,0,0);-ms-transform:matrix(0.234263,0.011490,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.234263,0.011490,-0.012248,0.249700,0,0);}
.m24_c01154{transform:matrix(0.234498,0.011502,-0.012248,0.249700,0,0);-ms-transform:matrix(0.234498,0.011502,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.234498,0.011502,-0.012248,0.249700,0,0);}
.m32_c01154{transform:matrix(0.234708,0.011512,-0.012248,0.249700,0,0);-ms-transform:matrix(0.234708,0.011512,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.234708,0.011512,-0.012248,0.249700,0,0);}
.m2c_c01154{transform:matrix(0.234858,0.011520,-0.012248,0.249700,0,0);-ms-transform:matrix(0.234858,0.011520,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.234858,0.011520,-0.012248,0.249700,0,0);}
.m53_c01154{transform:matrix(0.234978,0.011525,-0.012248,0.249700,0,0);-ms-transform:matrix(0.234978,0.011525,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.234978,0.011525,-0.012248,0.249700,0,0);}
.m89_c01154{transform:matrix(0.235104,0.012473,-0.013245,0.249649,0,0);-ms-transform:matrix(0.235104,0.012473,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.235104,0.012473,-0.013245,0.249649,0,0);}
.m63_c01154{transform:matrix(0.235197,0.011536,-0.012248,0.249700,0,0);-ms-transform:matrix(0.235197,0.011536,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.235197,0.011536,-0.012248,0.249700,0,0);}
.m68_c01154{transform:matrix(0.235507,0.011551,-0.012248,0.249700,0,0);-ms-transform:matrix(0.235507,0.011551,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.235507,0.011551,-0.012248,0.249700,0,0);}
.m34_c01154{transform:matrix(0.235577,0.011555,-0.012248,0.249700,0,0);-ms-transform:matrix(0.235577,0.011555,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.235577,0.011555,-0.012248,0.249700,0,0);}
.m21_c01154{transform:matrix(0.235762,0.011564,-0.012248,0.249700,0,0);-ms-transform:matrix(0.235762,0.011564,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.235762,0.011564,-0.012248,0.249700,0,0);}
.m19_c01154{transform:matrix(0.235836,0.011568,-0.012248,0.249700,0,0);-ms-transform:matrix(0.235836,0.011568,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.235836,0.011568,-0.012248,0.249700,0,0);}
.m4b_c01154{transform:matrix(0.236596,0.011605,-0.012248,0.249700,0,0);-ms-transform:matrix(0.236596,0.011605,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.236596,0.011605,-0.012248,0.249700,0,0);}
.ma6_c01154{transform:matrix(0.237040,0.013776,-0.014505,0.249579,0,0);-ms-transform:matrix(0.237040,0.013776,-0.014505,0.249579,0,0);-webkit-transform:matrix(0.237040,0.013776,-0.014505,0.249579,0,0);}
.mb8_c01154{transform:matrix(0.237753,0.013579,-0.014255,0.249593,0,0);-ms-transform:matrix(0.237753,0.013579,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.237753,0.013579,-0.014255,0.249593,0,0);}
.m3_c01154{transform:matrix(0.237859,0.011667,-0.012248,0.249700,0,0);-ms-transform:matrix(0.237859,0.011667,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.237859,0.011667,-0.012248,0.249700,0,0);}
.m67_c01154{transform:matrix(0.238913,0.011718,-0.012248,0.249700,0,0);-ms-transform:matrix(0.238913,0.011718,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.238913,0.011718,-0.012248,0.249700,0,0);}
.mc5_c01154{transform:matrix(0.239160,0.013659,-0.014255,0.249593,0,0);-ms-transform:matrix(0.239160,0.013659,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.239160,0.013659,-0.014255,0.249593,0,0);}
.m6_c01154{transform:matrix(0.239622,0.011753,-0.012248,0.249700,0,0);-ms-transform:matrix(0.239622,0.011753,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.239622,0.011753,-0.012248,0.249700,0,0);}
.m69_c01154{transform:matrix(0.239702,0.011757,-0.012248,0.249700,0,0);-ms-transform:matrix(0.239702,0.011757,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.239702,0.011757,-0.012248,0.249700,0,0);}
.m52_c01154{transform:matrix(0.239957,0.011770,-0.012248,0.249700,0,0);-ms-transform:matrix(0.239957,0.011770,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.239957,0.011770,-0.012248,0.249700,0,0);}
.m1a_c01154{transform:matrix(0.240031,0.011773,-0.012248,0.249700,0,0);-ms-transform:matrix(0.240031,0.011773,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.240031,0.011773,-0.012248,0.249700,0,0);}
.mc8_c01154{transform:matrix(0.240398,0.013730,-0.014255,0.249593,0,0);-ms-transform:matrix(0.240398,0.013730,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.240398,0.013730,-0.014255,0.249593,0,0);}
.m8_c01154{transform:matrix(0.240486,0.011796,-0.012248,0.249700,0,0);-ms-transform:matrix(0.240486,0.011796,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.240486,0.011796,-0.012248,0.249700,0,0);}
.md3_c01154{transform:matrix(0.241143,0.012069,-0.012497,0.249687,0,0);-ms-transform:matrix(0.241143,0.012069,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.241143,0.012069,-0.012497,0.249687,0,0);}
.m13_c01154{transform:matrix(0.241160,0.011829,-0.012248,0.249700,0,0);-ms-transform:matrix(0.241160,0.011829,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.241160,0.011829,-0.012248,0.249700,0,0);}
.m95_c01154{transform:matrix(0.241208,0.014018,-0.014505,0.249579,0,0);-ms-transform:matrix(0.241208,0.014018,-0.014505,0.249579,0,0);-webkit-transform:matrix(0.241208,0.014018,-0.014505,0.249579,0,0);}
.m43_c01154{transform:matrix(0.241225,0.011832,-0.012248,0.249700,0,0);-ms-transform:matrix(0.241225,0.011832,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.241225,0.011832,-0.012248,0.249700,0,0);}
.m17_c01154{transform:matrix(0.241300,0.011836,-0.012248,0.249700,0,0);-ms-transform:matrix(0.241300,0.011836,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.241300,0.011836,-0.012248,0.249700,0,0);}
.m41_c01154{transform:matrix(0.241829,0.011861,-0.012248,0.249700,0,0);-ms-transform:matrix(0.241829,0.011861,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.241829,0.011861,-0.012248,0.249700,0,0);}
.mca_c01154{transform:matrix(0.241891,0.013815,-0.014255,0.249593,0,0);-ms-transform:matrix(0.241891,0.013815,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.241891,0.013815,-0.014255,0.249593,0,0);}
.m1b_c01154{transform:matrix(0.242084,0.011874,-0.012248,0.249700,0,0);-ms-transform:matrix(0.242084,0.011874,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.242084,0.011874,-0.012248,0.249700,0,0);}
.m6c_c01154{transform:matrix(0.242633,0.011901,-0.012248,0.249700,0,0);-ms-transform:matrix(0.242633,0.011901,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.242633,0.011901,-0.012248,0.249700,0,0);}
.m9c_c01154{transform:matrix(0.242930,0.014118,-0.014505,0.249579,0,0);-ms-transform:matrix(0.242930,0.014118,-0.014505,0.249579,0,0);-webkit-transform:matrix(0.242930,0.014118,-0.014505,0.249579,0,0);}
.m4_c01154{transform:matrix(0.243063,0.011922,-0.012248,0.249700,0,0);-ms-transform:matrix(0.243063,0.011922,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.243063,0.011922,-0.012248,0.249700,0,0);}
.m27_c01154{transform:matrix(0.243083,0.011923,-0.012248,0.249700,0,0);-ms-transform:matrix(0.243083,0.011923,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.243083,0.011923,-0.012248,0.249700,0,0);}
.m97_c01154{transform:matrix(0.243339,0.014142,-0.014505,0.249579,0,0);-ms-transform:matrix(0.243339,0.014142,-0.014505,0.249579,0,0);-webkit-transform:matrix(0.243339,0.014142,-0.014505,0.249579,0,0);}
.m9_c01154{transform:matrix(0.244566,0.011996,-0.012248,0.249700,0,0);-ms-transform:matrix(0.244566,0.011996,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.244566,0.011996,-0.012248,0.249700,0,0);}
.m9a_c01154{transform:matrix(0.245311,0.014257,-0.014505,0.249579,0,0);-ms-transform:matrix(0.245311,0.014257,-0.014505,0.249579,0,0);-webkit-transform:matrix(0.245311,0.014257,-0.014505,0.249579,0,0);}
.m46_c01154{transform:matrix(0.246024,0.012067,-0.012248,0.249700,0,0);-ms-transform:matrix(0.246024,0.012067,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.246024,0.012067,-0.012248,0.249700,0,0);}
.ma4_c01154{transform:matrix(0.246205,0.014308,-0.014505,0.249579,0,0);-ms-transform:matrix(0.246205,0.014308,-0.014505,0.249579,0,0);-webkit-transform:matrix(0.246205,0.014308,-0.014505,0.249579,0,0);}
.mab_c01154{transform:matrix(0.247059,0.014853,-0.015003,0.249549,0,0);-ms-transform:matrix(0.247059,0.014853,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.247059,0.014853,-0.015003,0.249549,0,0);}
.md2_c01154{transform:matrix(0.247226,0.012374,-0.012497,0.249687,0,0);-ms-transform:matrix(0.247226,0.012374,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.247226,0.012374,-0.012497,0.249687,0,0);}
.m7f_c01154{transform:matrix(0.247542,0.013133,-0.013245,0.249649,0,0);-ms-transform:matrix(0.247542,0.013133,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.247542,0.013133,-0.013245,0.249649,0,0);}
.ma7_c01154{transform:matrix(0.247847,0.014901,-0.015003,0.249549,0,0);-ms-transform:matrix(0.247847,0.014901,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.247847,0.014901,-0.015003,0.249549,0,0);}
.m22_c01154{transform:matrix(0.248451,0.012186,-0.012248,0.249700,0,0);-ms-transform:matrix(0.248451,0.012186,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.248451,0.012186,-0.012248,0.249700,0,0);}
.m7e_c01154{transform:matrix(0.248860,0.013203,-0.013245,0.249649,0,0);-ms-transform:matrix(0.248860,0.013203,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.248860,0.013203,-0.013245,0.249649,0,0);}
.m65_c01154{transform:matrix(0.249535,0.012239,-0.012248,0.249700,0,0);-ms-transform:matrix(0.249535,0.012239,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.249535,0.012239,-0.012248,0.249700,0,0);}
.mb1_c01154{transform:matrix(0.249603,0.014256,-0.014255,0.249593,0,0);-ms-transform:matrix(0.249603,0.014256,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.249603,0.014256,-0.014255,0.249593,0,0);}
.m45_c01154{transform:matrix(0.250514,0.012287,-0.012248,0.249700,0,0);-ms-transform:matrix(0.250514,0.012287,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.250514,0.012287,-0.012248,0.249700,0,0);}
.mb6_c01154{transform:matrix(0.250681,0.014317,-0.014255,0.249593,0,0);-ms-transform:matrix(0.250681,0.014317,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.250681,0.014317,-0.014255,0.249593,0,0);}
.m72_c01154{transform:matrix(0.250772,0.013304,-0.013245,0.249649,0,0);-ms-transform:matrix(0.250772,0.013304,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.250772,0.013304,-0.013245,0.249649,0,0);}
.mb3_c01154{transform:matrix(0.250986,0.014335,-0.014255,0.249593,0,0);-ms-transform:matrix(0.250986,0.014335,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.250986,0.014335,-0.014255,0.249593,0,0);}
.m93_c01154{transform:matrix(0.251541,0.013345,-0.013245,0.249649,0,0);-ms-transform:matrix(0.251541,0.013345,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.251541,0.013345,-0.013245,0.249649,0,0);}
.m49_c01154{transform:matrix(0.251822,0.012352,-0.012248,0.249700,0,0);-ms-transform:matrix(0.251822,0.012352,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.251822,0.012352,-0.012248,0.249700,0,0);}
.m7b_c01154{transform:matrix(0.251886,0.013363,-0.013245,0.249649,0,0);-ms-transform:matrix(0.251886,0.013363,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.251886,0.013363,-0.013245,0.249649,0,0);}
.m6b_c01154{transform:matrix(0.252017,0.012361,-0.012248,0.249700,0,0);-ms-transform:matrix(0.252017,0.012361,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.252017,0.012361,-0.012248,0.249700,0,0);}
.m44_c01154{transform:matrix(0.252282,0.012374,-0.012248,0.249700,0,0);-ms-transform:matrix(0.252282,0.012374,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.252282,0.012374,-0.012248,0.249700,0,0);}
.mba_c01154{transform:matrix(0.252284,0.014409,-0.014255,0.249593,0,0);-ms-transform:matrix(0.252284,0.014409,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.252284,0.014409,-0.014255,0.249593,0,0);}
.m16_c01154{transform:matrix(0.252407,0.012380,-0.012248,0.249700,0,0);-ms-transform:matrix(0.252407,0.012380,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.252407,0.012380,-0.012248,0.249700,0,0);}
.m7c_c01154{transform:matrix(0.254302,0.013492,-0.013245,0.249649,0,0);-ms-transform:matrix(0.254302,0.013492,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.254302,0.013492,-0.013245,0.249649,0,0);}
.m4a_c01154{transform:matrix(0.254454,0.012481,-0.012248,0.249700,0,0);-ms-transform:matrix(0.254454,0.012481,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.254454,0.012481,-0.012248,0.249700,0,0);}
.mbf_c01154{transform:matrix(0.254525,0.014537,-0.014255,0.249593,0,0);-ms-transform:matrix(0.254525,0.014537,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.254525,0.014537,-0.014255,0.249593,0,0);}
.mcf_c01154{transform:matrix(0.254661,0.012746,-0.012497,0.249687,0,0);-ms-transform:matrix(0.254661,0.012746,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.254661,0.012746,-0.012497,0.249687,0,0);}
.m83_c01154{transform:matrix(0.254842,0.013520,-0.013245,0.249649,0,0);-ms-transform:matrix(0.254842,0.013520,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.254842,0.013520,-0.013245,0.249649,0,0);}
.m14_c01154{transform:matrix(0.255003,0.012508,-0.012248,0.249700,0,0);-ms-transform:matrix(0.255003,0.012508,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.255003,0.012508,-0.012248,0.249700,0,0);}
.me_c01154{transform:matrix(0.255807,0.012547,-0.012248,0.249700,0,0);-ms-transform:matrix(0.255807,0.012547,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.255807,0.012547,-0.012248,0.249700,0,0);}
.m94_c01154{transform:matrix(0.256749,0.013621,-0.013245,0.249649,0,0);-ms-transform:matrix(0.256749,0.013621,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.256749,0.013621,-0.013245,0.249649,0,0);}
.m1d_c01154{transform:matrix(0.256906,0.012601,-0.012248,0.249700,0,0);-ms-transform:matrix(0.256906,0.012601,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.256906,0.012601,-0.012248,0.249700,0,0);}
.m73_c01154{transform:matrix(0.257283,0.013650,-0.013245,0.249649,0,0);-ms-transform:matrix(0.257283,0.013650,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.257283,0.013650,-0.013245,0.249649,0,0);}
.m5_c01154{transform:matrix(0.257870,0.012648,-0.012248,0.249700,0,0);-ms-transform:matrix(0.257870,0.012648,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.257870,0.012648,-0.012248,0.249700,0,0);}
.m11_c01154{transform:matrix(0.258015,0.012655,-0.012248,0.249700,0,0);-ms-transform:matrix(0.258015,0.012655,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.258015,0.012655,-0.012248,0.249700,0,0);}
.m2a_c01154{transform:matrix(0.258120,0.012661,-0.012248,0.249700,0,0);-ms-transform:matrix(0.258120,0.012661,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.258120,0.012661,-0.012248,0.249700,0,0);}
.m47_c01154{transform:matrix(0.258175,0.012663,-0.012248,0.249700,0,0);-ms-transform:matrix(0.258175,0.012663,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.258175,0.012663,-0.012248,0.249700,0,0);}
.m77_c01154{transform:matrix(0.259890,0.013788,-0.013245,0.249649,0,0);-ms-transform:matrix(0.259890,0.013788,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.259890,0.013788,-0.013245,0.249649,0,0);}
.m1e_c01154{transform:matrix(0.260552,0.012780,-0.012248,0.249700,0,0);-ms-transform:matrix(0.260552,0.012780,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.260552,0.012780,-0.012248,0.249700,0,0);}
.m0_c01154{transform:matrix(0.261071,0.012805,-0.012248,0.249700,0,0);-ms-transform:matrix(0.261071,0.012805,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.261071,0.012805,-0.012248,0.249700,0,0);}
.mb_c01154{transform:matrix(0.261536,0.012828,-0.012248,0.249700,0,0);-ms-transform:matrix(0.261536,0.012828,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.261536,0.012828,-0.012248,0.249700,0,0);}
.md4_c01154{transform:matrix(0.261777,0.013102,-0.012497,0.249687,0,0);-ms-transform:matrix(0.261777,0.013102,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.261777,0.013102,-0.012497,0.249687,0,0);}
.m7_c01154{transform:matrix(0.262569,0.012879,-0.012248,0.249700,0,0);-ms-transform:matrix(0.262569,0.012879,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.262569,0.012879,-0.012248,0.249700,0,0);}
.m28_c01154{transform:matrix(0.263089,0.012904,-0.012248,0.249700,0,0);-ms-transform:matrix(0.263089,0.012904,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.263089,0.012904,-0.012248,0.249700,0,0);}
.md0_c01154{transform:matrix(0.264159,0.013221,-0.012497,0.249687,0,0);-ms-transform:matrix(0.264159,0.013221,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.264159,0.013221,-0.012497,0.249687,0,0);}
.maa_c01154{transform:matrix(0.264482,0.015901,-0.015003,0.249549,0,0);-ms-transform:matrix(0.264482,0.015901,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.264482,0.015901,-0.015003,0.249549,0,0);}
.ma_c01154{transform:matrix(0.265131,0.013004,-0.012248,0.249700,0,0);-ms-transform:matrix(0.265131,0.013004,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.265131,0.013004,-0.012248,0.249700,0,0);}
.mb5_c01154{transform:matrix(0.265263,0.015150,-0.014255,0.249593,0,0);-ms-transform:matrix(0.265263,0.015150,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.265263,0.015150,-0.014255,0.249593,0,0);}
.m26_c01154{transform:matrix(0.265266,0.013011,-0.012248,0.249700,0,0);-ms-transform:matrix(0.265266,0.013011,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.265266,0.013011,-0.012248,0.249700,0,0);}
.ma9_c01154{transform:matrix(0.265875,0.015984,-0.015003,0.249549,0,0);-ms-transform:matrix(0.265875,0.015984,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.265875,0.015984,-0.015003,0.249549,0,0);}
.m98_c01154{transform:matrix(0.266371,0.015480,-0.014505,0.249579,0,0);-ms-transform:matrix(0.266371,0.015480,-0.014505,0.249579,0,0);-webkit-transform:matrix(0.266371,0.015480,-0.014505,0.249579,0,0);}
.m25_c01154{transform:matrix(0.266854,0.013089,-0.012248,0.249700,0,0);-ms-transform:matrix(0.266854,0.013089,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.266854,0.013089,-0.012248,0.249700,0,0);}
.m2_c01154{transform:matrix(0.267668,0.013129,-0.012248,0.249700,0,0);-ms-transform:matrix(0.267668,0.013129,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.267668,0.013129,-0.012248,0.249700,0,0);}
.ma8_c01154{transform:matrix(0.268216,0.016125,-0.015003,0.249549,0,0);-ms-transform:matrix(0.268216,0.016125,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.268216,0.016125,-0.015003,0.249549,0,0);}
.mbd_c01154{transform:matrix(0.269571,0.015396,-0.014255,0.249593,0,0);-ms-transform:matrix(0.269571,0.015396,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.269571,0.015396,-0.014255,0.249593,0,0);}
.md1_c01154{transform:matrix(0.270177,0.013522,-0.012497,0.249687,0,0);-ms-transform:matrix(0.270177,0.013522,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.270177,0.013522,-0.012497,0.249687,0,0);}
.m96_c01154{transform:matrix(0.272306,0.015825,-0.014505,0.249579,0,0);-ms-transform:matrix(0.272306,0.015825,-0.014505,0.249579,0,0);-webkit-transform:matrix(0.272306,0.015825,-0.014505,0.249579,0,0);}
.m91_c01154{transform:matrix(0.273066,0.014487,-0.013245,0.249649,0,0);-ms-transform:matrix(0.273066,0.014487,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.273066,0.014487,-0.013245,0.249649,0,0);}
.mac_c01154{transform:matrix(0.274599,0.016509,-0.015003,0.249549,0,0);-ms-transform:matrix(0.274599,0.016509,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.274599,0.016509,-0.015003,0.249549,0,0);}
.m2b_c01154{transform:matrix(0.275853,0.013530,-0.012248,0.249700,0,0);-ms-transform:matrix(0.275853,0.013530,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.275853,0.013530,-0.012248,0.249700,0,0);}
.mbb_c01154{transform:matrix(0.275860,0.015756,-0.014255,0.249593,0,0);-ms-transform:matrix(0.275860,0.015756,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.275860,0.015756,-0.014255,0.249593,0,0);}
.mc_c01154{transform:matrix(0.277441,0.013608,-0.012248,0.249700,0,0);-ms-transform:matrix(0.277441,0.013608,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.277441,0.013608,-0.012248,0.249700,0,0);}
.m74_c01154{transform:matrix(0.277769,0.014737,-0.013245,0.249649,0,0);-ms-transform:matrix(0.277769,0.014737,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.277769,0.014737,-0.013245,0.249649,0,0);}
.m9b_c01154{transform:matrix(0.278181,0.016167,-0.014505,0.249579,0,0);-ms-transform:matrix(0.278181,0.016167,-0.014505,0.249579,0,0);-webkit-transform:matrix(0.278181,0.016167,-0.014505,0.249579,0,0);}
.m29_c01154{transform:matrix(0.279714,0.013720,-0.012248,0.249700,0,0);-ms-transform:matrix(0.279714,0.013720,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.279714,0.013720,-0.012248,0.249700,0,0);}
.m78_c01154{transform:matrix(0.290896,0.015433,-0.013245,0.249649,0,0);-ms-transform:matrix(0.290896,0.015433,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.290896,0.015433,-0.013245,0.249649,0,0);}
.mbe_c01154{transform:matrix(0.294565,0.016824,-0.014255,0.249593,0,0);-ms-transform:matrix(0.294565,0.016824,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.294565,0.016824,-0.014255,0.249593,0,0);}
.mc0_c01154{transform:matrix(0.298364,0.017041,-0.014255,0.249593,0,0);-ms-transform:matrix(0.298364,0.017041,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.298364,0.017041,-0.014255,0.249593,0,0);}
.mbc_c01154{transform:matrix(0.299647,0.017114,-0.014255,0.249593,0,0);-ms-transform:matrix(0.299647,0.017114,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.299647,0.017114,-0.014255,0.249593,0,0);}
.m4d_c01154{transform:matrix(0.300254,0.014727,-0.012248,0.249700,0,0);-ms-transform:matrix(0.300254,0.014727,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.300254,0.014727,-0.012248,0.249700,0,0);}
.m4e_c01154{transform:matrix(0.338089,0.016583,-0.012248,0.249700,0,0);-ms-transform:matrix(0.338089,0.016583,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.338089,0.016583,-0.012248,0.249700,0,0);}
.mb7_c01154{transform:matrix(0.342152,0.019542,-0.014255,0.249593,0,0);-ms-transform:matrix(0.342152,0.019542,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.342152,0.019542,-0.014255,0.249593,0,0);}
.mb9_c01154{transform:matrix(0.347733,0.019861,-0.014255,0.249593,0,0);-ms-transform:matrix(0.347733,0.019861,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.347733,0.019861,-0.014255,0.249593,0,0);}
.mae_c01154{transform:matrix(0.383562,0.023060,-0.015003,0.249549,0,0);-ms-transform:matrix(0.383562,0.023060,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.383562,0.023060,-0.015003,0.249549,0,0);}
.mcd_c01154{transform:matrix(0.958977,0.054771,-0.014255,0.249593,0,0);-ms-transform:matrix(0.958977,0.054771,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.958977,0.054771,-0.014255,0.249593,0,0);}
.m79_c01154{transform:matrix(1.006225,0.053383,-0.013245,0.249649,0,0);-ms-transform:matrix(1.006225,0.053383,-0.013245,0.249649,0,0);-webkit-transform:matrix(1.006225,0.053383,-0.013245,0.249649,0,0);}
.mce_c01154{transform:matrix(1.078011,0.053954,-0.012497,0.249687,0,0);-ms-transform:matrix(1.078011,0.053954,-0.012497,0.249687,0,0);-webkit-transform:matrix(1.078011,0.053954,-0.012497,0.249687,0,0);}
.mcc_c01154{transform:matrix(1.140556,0.065142,-0.014255,0.249593,0,0);-ms-transform:matrix(1.140556,0.065142,-0.014255,0.249593,0,0);-webkit-transform:matrix(1.140556,0.065142,-0.014255,0.249593,0,0);}
.mad_c01154{transform:matrix(1.812937,0.108994,-0.015003,0.249549,0,0);-ms-transform:matrix(1.812937,0.108994,-0.015003,0.249549,0,0);-webkit-transform:matrix(1.812937,0.108994,-0.015003,0.249549,0,0);}
.mcb_c01154{transform:matrix(2.805733,0.160247,-0.014255,0.249593,0,0);-ms-transform:matrix(2.805733,0.160247,-0.014255,0.249593,0,0);-webkit-transform:matrix(2.805733,0.160247,-0.014255,0.249593,0,0);}
.v0_c01154{vertical-align:0.000000px;}
.ls0_c01154{letter-spacing:0.000000px;}
.sc__c01154{text-shadow:none;}
.sc0_c01154{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__c01154{-webkit-text-stroke:0px transparent;}
.sc0_c01154{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01154{word-spacing:0.000000px;}
.fc0_c01154{color:transparent;}
.fsf_c01154{font-size:23.991034px;}
.fsb_c01154{font-size:35.992871px;}
.fsd_c01154{font-size:65.975344px;}
.fs7_c01154{font-size:71.977244px;}
.fsa_c01154{font-size:71.985743px;}
.fs0_c01154{font-size:72.014471px;}
.fs11_c01154{font-size:72.018034px;}
.fs4_c01154{font-size:72.029154px;}
.fsc_c01154{font-size:77.970862px;}
.fs1_c01154{font-size:78.015676px;}
.fs10_c01154{font-size:78.019537px;}
.fs5_c01154{font-size:78.031584px;}
.fse_c01154{font-size:83.968620px;}
.fs9_c01154{font-size:83.973452px;}
.fs2_c01154{font-size:84.016882px;}
.fs6_c01154{font-size:84.034013px;}
.fs3_c01154{font-size:90.018088px;}
.fs8_c01154{font-size:143.946206px;}
.y0_c01154{bottom:0.000000px;}
.yd9_c01154{bottom:197.548096px;}
.yd8_c01154{bottom:200.405166px;}
.yd7_c01154{bottom:202.662097px;}
.yd6_c01154{bottom:206.602746px;}
.yd5_c01154{bottom:211.078359px;}
.yd4_c01154{bottom:213.320140px;}
.yd2_c01154{bottom:243.814961px;}
.yd3_c01154{bottom:245.158500px;}
.yd1_c01154{bottom:246.144642px;}
.ycf_c01154{bottom:255.517052px;}
.yce_c01154{bottom:257.364365px;}
.yd0_c01154{bottom:258.166302px;}
.ycd_c01154{bottom:264.873402px;}
.ycc_c01154{bottom:268.174643px;}
.ycb_c01154{bottom:270.068040px;}
.yca_c01154{bottom:276.404958px;}
.yc9_c01154{bottom:282.655436px;}
.yc8_c01154{bottom:287.041500px;}
.yc7_c01154{bottom:305.449475px;}
.yc6_c01154{bottom:307.299178px;}
.yc5_c01154{bottom:327.227717px;}
.yc4_c01154{bottom:329.198833px;}
.yc3_c01154{bottom:334.201268px;}
.yc2_c01154{bottom:336.782085px;}
.yc1_c01154{bottom:341.207650px;}
.yc0_c01154{bottom:343.752558px;}
.ybf_c01154{bottom:345.616116px;}
.ybe_c01154{bottom:349.413000px;}
.ybd_c01154{bottom:356.534172px;}
.ybc_c01154{bottom:357.797520px;}
.ybb_c01154{bottom:362.849117px;}
.yba_c01154{bottom:373.516780px;}
.yb9_c01154{bottom:376.166597px;}
.yb8_c01154{bottom:380.609262px;}
.yb7_c01154{bottom:383.105435px;}
.yb6_c01154{bottom:388.789133px;}
.yb5_c01154{bottom:390.489898px;}
.yb4_c01154{bottom:391.806000px;}
.yb3_c01154{bottom:395.963574px;}
.yb1_c01154{bottom:405.148800px;}
.yb0_c01154{bottom:407.795340px;}
.yaf_c01154{bottom:411.823830px;}
.yae_c01154{bottom:413.154660px;}
.yb2_c01154{bottom:414.735003px;}
.yad_c01154{bottom:417.760140px;}
.yac_c01154{bottom:420.438000px;}
.yab_c01154{bottom:430.022211px;}
.yaa_c01154{bottom:433.876050px;}
.ya9_c01154{bottom:444.744699px;}
.ya8_c01154{bottom:447.396807px;}
.ya7_c01154{bottom:451.946907px;}
.ya6_c01154{bottom:454.455552px;}
.ya5_c01154{bottom:460.288554px;}
.ya4_c01154{bottom:464.704500px;}
.ya3_c01154{bottom:476.452248px;}
.ya2_c01154{bottom:478.455000px;}
.ya1_c01154{bottom:520.870548px;}
.ya0_c01154{bottom:526.680408px;}
.y9f_c01154{bottom:529.875135px;}
.y9e_c01154{bottom:531.794268px;}
.y9d_c01154{bottom:536.912826px;}
.y9c_c01154{bottom:539.597037px;}
.y9b_c01154{bottom:545.300148px;}
.y9a_c01154{bottom:547.875000px;}
.y99_c01154{bottom:579.350985px;}
.y98_c01154{bottom:581.589134px;}
.y97_c01154{bottom:582.981489px;}
.y96_c01154{bottom:586.156105px;}
.y95_c01154{bottom:590.122507px;}
.y94_c01154{bottom:594.147330px;}
.y93_c01154{bottom:595.902954px;}
.y92_c01154{bottom:597.644268px;}
.y91_c01154{bottom:600.544634px;}
.y90_c01154{bottom:601.785105px;}
.y8f_c01154{bottom:604.579326px;}
.y8e_c01154{bottom:609.240416px;}
.y8d_c01154{bottom:611.496258px;}
.y8c_c01154{bottom:613.794951px;}
.y8b_c01154{bottom:616.128159px;}
.y8a_c01154{bottom:618.974294px;}
.y89_c01154{bottom:621.824323px;}
.y88_c01154{bottom:627.189612px;}
.y87_c01154{bottom:628.927984px;}
.y86_c01154{bottom:631.194241px;}
.y85_c01154{bottom:632.993444px;}
.y84_c01154{bottom:638.217159px;}
.y83_c01154{bottom:642.817419px;}
.y82_c01154{bottom:644.558733px;}
.y81_c01154{bottom:650.812289px;}
.y80_c01154{bottom:656.015811px;}
.y7f_c01154{bottom:658.823706px;}
.y7e_c01154{bottom:660.792762px;}
.y7d_c01154{bottom:667.351750px;}
.y7c_c01154{bottom:673.773363px;}
.y7b_c01154{bottom:675.497162px;}
.y7a_c01154{bottom:677.301493px;}
.y79_c01154{bottom:682.628789px;}
.y78_c01154{bottom:686.634555px;}
.y77_c01154{bottom:689.076000px;}
.y76_c01154{bottom:695.085654px;}
.y75_c01154{bottom:722.792281px;}
.y74_c01154{bottom:724.315893px;}
.y73_c01154{bottom:727.368187px;}
.y72_c01154{bottom:730.302634px;}
.y71_c01154{bottom:731.450250px;}
.y70_c01154{bottom:737.450130px;}
.y6f_c01154{bottom:739.238848px;}
.y6e_c01154{bottom:742.571784px;}
.y6d_c01154{bottom:743.711461px;}
.y6c_c01154{bottom:746.410746px;}
.y6b_c01154{bottom:748.120056px;}
.y6a_c01154{bottom:753.073558px;}
.y69_c01154{bottom:754.729773px;}
.y68_c01154{bottom:758.022430px;}
.y67_c01154{bottom:759.148216px;}
.y66_c01154{bottom:761.899200px;}
.y65_c01154{bottom:763.558722px;}
.y64_c01154{bottom:769.994626px;}
.y63_c01154{bottom:772.302913px;}
.y62_c01154{bottom:778.001278px;}
.y61_c01154{bottom:782.454274px;}
.y60_c01154{bottom:784.174648px;}
.y5f_c01154{bottom:788.098119px;}
.y5e_c01154{bottom:790.405083px;}
.y5d_c01154{bottom:794.353792px;}
.y5c_c01154{bottom:796.607073px;}
.y5b_c01154{bottom:800.553063px;}
.y5a_c01154{bottom:802.670949px;}
.y59_c01154{bottom:807.158290px;}
.y58_c01154{bottom:811.606501px;}
.y57_c01154{bottom:816.632871px;}
.y56_c01154{bottom:818.235402px;}
.y55_c01154{bottom:820.436598px;}
.y54_c01154{bottom:823.737855px;}
.y53_c01154{bottom:824.878855px;}
.y52_c01154{bottom:829.285465px;}
.y51_c01154{bottom:830.972770px;}
.y50_c01154{bottom:835.930242px;}
.y4f_c01154{bottom:841.748602px;}
.y4e_c01154{bottom:846.094510px;}
.y4d_c01154{bottom:847.736280px;}
.y4c_c01154{bottom:854.197738px;}
.y4b_c01154{bottom:857.561245px;}
.y4a_c01154{bottom:861.778234px;}
.y49_c01154{bottom:867.736879px;}
.y48_c01154{bottom:870.488646px;}
.y47_c01154{bottom:871.568287px;}
.y46_c01154{bottom:879.859114px;}
.y45_c01154{bottom:883.089112px;}
.y44_c01154{bottom:884.680936px;}
.y43_c01154{bottom:886.823415px;}
.y42_c01154{bottom:889.405546px;}
.y41_c01154{bottom:892.155862px;}
.y40_c01154{bottom:894.167347px;}
.y3f_c01154{bottom:898.495008px;}
.y3e_c01154{bottom:902.711814px;}
.y3d_c01154{bottom:904.896996px;}
.y3c_c01154{bottom:906.953757px;}
.y3b_c01154{bottom:911.170168px;}
.y3a_c01154{bottom:912.822748px;}
.y39_c01154{bottom:917.058195px;}
.y38_c01154{bottom:919.738200px;}
.y37_c01154{bottom:924.027816px;}
.y36_c01154{bottom:925.124155px;}
.y35_c01154{bottom:929.787348px;}
.y34_c01154{bottom:931.422361px;}
.y33_c01154{bottom:935.665305px;}
.y32_c01154{bottom:937.260951px;}
.y31_c01154{bottom:942.067117px;}
.y30_c01154{bottom:948.854511px;}
.y2f_c01154{bottom:951.054513px;}
.y2e_c01154{bottom:955.465836px;}
.y2d_c01154{bottom:959.161636px;}
.y2c_c01154{bottom:962.459728px;}
.y2b_c01154{bottom:964.127958px;}
.y2a_c01154{bottom:967.861464px;}
.y29_c01154{bottom:971.186016px;}
.y28_c01154{bottom:972.843000px;}
.y27_c01154{bottom:1004.184876px;}
.y26_c01154{bottom:1005.648332px;}
.y25_c01154{bottom:1006.609101px;}
.y24_c01154{bottom:1010.478566px;}
.y23_c01154{bottom:1011.965219px;}
.y22_c01154{bottom:1017.465348px;}
.y21_c01154{bottom:1022.938305px;}
.y20_c01154{bottom:1027.828554px;}
.y1f_c01154{bottom:1029.981810px;}
.y1e_c01154{bottom:1031.616891px;}
.y1d_c01154{bottom:1034.872721px;}
.y1c_c01154{bottom:1036.020423px;}
.y1b_c01154{bottom:1039.209294px;}
.y1a_c01154{bottom:1040.830116px;}
.y19_c01154{bottom:1044.569428px;}
.y18_c01154{bottom:1048.962377px;}
.y17_c01154{bottom:1051.463493px;}
.y16_c01154{bottom:1055.763518px;}
.y15_c01154{bottom:1059.489000px;}
.y14_c01154{bottom:1061.669846px;}
.y13_c01154{bottom:1063.239032px;}
.y12_c01154{bottom:1067.545965px;}
.y11_c01154{bottom:1070.206492px;}
.y10_c01154{bottom:1071.750790px;}
.yf_c01154{bottom:1078.096772px;}
.ye_c01154{bottom:1079.743104px;}
.yd_c01154{bottom:1083.809366px;}
.yc_c01154{bottom:1088.082528px;}
.yb_c01154{bottom:1091.419648px;}
.ya_c01154{bottom:1093.101108px;}
.y9_c01154{bottom:1095.213424px;}
.y8_c01154{bottom:1099.043289px;}
.y7_c01154{bottom:1101.181110px;}
.y6_c01154{bottom:1105.008402px;}
.y5_c01154{bottom:1109.421636px;}
.y4_c01154{bottom:1111.030551px;}
.y3_c01154{bottom:1114.874969px;}
.y2_c01154{bottom:1116.352980px;}
.y1_c01154{bottom:1119.169500px;}
.h11_c01154{height:23.991034px;}
.hd_c01154{height:35.992871px;}
.hf_c01154{height:65.975344px;}
.h9_c01154{height:71.977244px;}
.hc_c01154{height:71.985743px;}
.h2_c01154{height:72.014471px;}
.h13_c01154{height:72.018034px;}
.h6_c01154{height:72.029154px;}
.he_c01154{height:77.970862px;}
.h3_c01154{height:78.015676px;}
.h12_c01154{height:78.019537px;}
.h7_c01154{height:78.031584px;}
.h10_c01154{height:83.968620px;}
.hb_c01154{height:83.973452px;}
.h4_c01154{height:84.016882px;}
.h8_c01154{height:84.034013px;}
.h5_c01154{height:90.018088px;}
.ha_c01154{height:143.946206px;}
.h1_c01154{height:1258.500000px;}
.h0_c01154{height:1258.740000px;}
.w0_c01154{width:920.100000px;}
.w1_c01154{width:920.250000px;}
.x0_c01154{left:0.000000px;}
.xad_c01154{left:155.547000px;}
.xa3_c01154{left:159.018000px;}
.x8b_c01154{left:166.537500px;}
.x80_c01154{left:171.117253px;}
.x76_c01154{left:173.445350px;}
.x6f_c01154{left:175.976307px;}
.x66_c01154{left:177.229250px;}
.x59_c01154{left:179.121525px;}
.x50_c01154{left:180.275136px;}
.x46_c01154{left:182.396394px;}
.x3f_c01154{left:184.190972px;}
.xd_c01154{left:185.814334px;}
.x97_c01154{left:187.005000px;}
.x22_c01154{left:188.937262px;}
.x18_c01154{left:191.717792px;}
.x1_c01154{left:194.530500px;}
.xae_c01154{left:199.969491px;}
.x40_c01154{left:206.202438px;}
.x98_c01154{left:210.048321px;}
.x5a_c01154{left:212.281713px;}
.x23_c01154{left:222.676729px;}
.x37_c01154{left:228.443439px;}
.x70_c01154{left:229.922172px;}
.xa4_c01154{left:235.812603px;}
.x99_c01154{left:239.826645px;}
.x67_c01154{left:243.501123px;}
.x81_c01154{left:248.460513px;}
.x2_c01154{left:251.953020px;}
.x51_c01154{left:257.570685px;}
.x41_c01154{left:262.304780px;}
.x5b_c01154{left:267.234983px;}
.xe_c01154{left:270.431253px;}
.x38_c01154{left:273.913131px;}
.x68_c01154{left:276.585362px;}
.x83_c01154{left:280.560000px;}
.x3_c01154{left:282.086357px;}
.x2f_c01154{left:286.607649px;}
.xaf_c01154{left:287.651367px;}
.x5c_c01154{left:289.727864px;}
.x27_c01154{left:297.690000px;}
.x52_c01154{left:301.703168px;}
.xf_c01154{left:304.700641px;}
.x24_c01154{left:310.508793px;}
.x47_c01154{left:315.173510px;}
.x95_c01154{left:317.282673px;}
.x30_c01154{left:319.813029px;}
.x84_c01154{left:324.865212px;}
.x77_c01154{left:327.680577px;}
.x71_c01154{left:329.901424px;}
.x25_c01154{left:332.332318px;}
.x82_c01154{left:336.917730px;}
.x9a_c01154{left:339.341217px;}
.x8c_c01154{left:342.890088px;}
.xa5_c01154{left:345.250788px;}
.x5d_c01154{left:355.510278px;}
.x19_c01154{left:357.516327px;}
.x4_c01154{left:360.465399px;}
.x39_c01154{left:361.660563px;}
.x91_c01154{left:363.701238px;}
.x26_c01154{left:365.568216px;}
.x78_c01154{left:371.830191px;}
.x53_c01154{left:379.054161px;}
.x9e_c01154{left:382.335276px;}
.x42_c01154{left:383.788175px;}
.x8d_c01154{left:386.056083px;}
.x5e_c01154{left:388.603034px;}
.x1a_c01154{left:390.561249px;}
.x5_c01154{left:393.267564px;}
.x28_c01154{left:399.252336px;}
.x48_c01154{left:403.207547px;}
.x31_c01154{left:408.123971px;}
.x79_c01154{left:415.172114px;}
.x85_c01154{left:422.998053px;}
.x54_c01154{left:424.250505px;}
.x49_c01154{left:426.010617px;}
.xa1_c01154{left:434.732781px;}
.x10_c01154{left:436.775908px;}
.x92_c01154{left:440.305722px;}
.x32_c01154{left:442.162590px;}
.x72_c01154{left:450.041031px;}
.x3a_c01154{left:451.729318px;}
.x1b_c01154{left:455.575170px;}
.x9f_c01154{left:459.522093px;}
.x9b_c01154{left:460.831749px;}
.x93_c01154{left:462.441861px;}
.x8e_c01154{left:464.349183px;}
.x11_c01154{left:468.903794px;}
.xa2_c01154{left:470.221770px;}
.x29_c01154{left:475.370142px;}
.x8a_c01154{left:476.788728px;}
.x1c_c01154{left:478.974248px;}
.x6_c01154{left:483.243498px;}
.x5f_c01154{left:487.572609px;}
.xa6_c01154{left:489.353505px;}
.x4a_c01154{left:491.968356px;}
.x3b_c01154{left:493.596469px;}
.x55_c01154{left:501.117557px;}
.x7a_c01154{left:504.728742px;}
.x6a_c01154{left:507.737840px;}
.x2a_c01154{left:509.381597px;}
.x60_c01154{left:521.717238px;}
.x12_c01154{left:524.279085px;}
.x94_c01154{left:529.449078px;}
.x56_c01154{left:534.814016px;}
.x4b_c01154{left:535.957689px;}
.xa0_c01154{left:537.008310px;}
.x33_c01154{left:539.225212px;}
.x6b_c01154{left:541.747795px;}
.x1d_c01154{left:545.353302px;}
.xa7_c01154{left:547.154172px;}
.x3c_c01154{left:550.832971px;}
.x86_c01154{left:557.259492px;}
.x7b_c01154{left:558.416865px;}
.x7_c01154{left:561.273390px;}
.xaa_c01154{left:563.820480px;}
.x4c_c01154{left:567.986583px;}
.x73_c01154{left:571.868028px;}
.x6c_c01154{left:574.239771px;}
.x2b_c01154{left:576.622289px;}
.x1e_c01154{left:578.688933px;}
.x7c_c01154{left:582.251780px;}
.x87_c01154{left:590.281815px;}
.x61_c01154{left:598.423203px;}
.x8_c01154{left:604.858761px;}
.x13_c01154{left:613.925264px;}
.x1f_c01154{left:622.588989px;}
.x7d_c01154{left:637.968951px;}
.x88_c01154{left:645.253152px;}
.x14_c01154{left:646.591183px;}
.x3d_c01154{left:649.178383px;}
.x2c_c01154{left:651.971364px;}
.x96_c01154{left:657.827892px;}
.x62_c01154{left:665.026796px;}
.x4d_c01154{left:668.411129px;}
.x43_c01154{left:670.072104px;}
.x74_c01154{left:672.227899px;}
.xa8_c01154{left:678.628197px;}
.x9_c01154{left:682.941100px;}
.x15_c01154{left:691.972464px;}
.x9c_c01154{left:694.004469px;}
.x6d_c01154{left:695.281108px;}
.x8f_c01154{left:696.999450px;}
.x63_c01154{left:700.759761px;}
.x44_c01154{left:703.544099px;}
.x7e_c01154{left:705.129225px;}
.x34_c01154{left:707.071365px;}
.xa9_c01154{left:710.972379px;}
.x20_c01154{left:722.290188px;}
.xa_c01154{left:726.006492px;}
.x57_c01154{left:733.661972px;}
.x2d_c01154{left:741.908337px;}
.x89_c01154{left:745.222812px;}
.x3e_c01154{left:749.536355px;}
.x4e_c01154{left:757.293317px;}
.xb_c01154{left:760.287676px;}
.x90_c01154{left:763.312059px;}
.x16_c01154{left:769.519165px;}
.xab_c01154{left:770.676117px;}
.x58_c01154{left:778.885289px;}
.x7f_c01154{left:782.437897px;}
.x75_c01154{left:783.720684px;}
.x2e_c01154{left:786.761439px;}
.x45_c01154{left:792.147407px;}
.x35_c01154{left:795.229459px;}
.x9d_c01154{left:804.571392px;}
.xac_c01154{left:810.755984px;}
.x6e_c01154{left:818.911854px;}
.x64_c01154{left:820.633881px;}
.xc_c01154{left:828.324072px;}
.x36_c01154{left:829.626221px;}
.x21_c01154{left:833.871495px;}
.x65_c01154{left:843.571817px;}
.x4f_c01154{left:846.942663px;}
.x17_c01154{left:859.024485px;}
.x69_c01154{left:878.272008px;}
@media print{
.v0_c01154{vertical-align:0.000000pt;}
.ls0_c01154{letter-spacing:0.000000pt;}
.ws0_c01154{word-spacing:0.000000pt;}
.fsf_c01154{font-size:21.325364pt;}
.fsb_c01154{font-size:31.993663pt;}
.fsd_c01154{font-size:58.644751pt;}
.fs7_c01154{font-size:63.979773pt;}
.fsa_c01154{font-size:63.987327pt;}
.fs0_c01154{font-size:64.012863pt;}
.fs11_c01154{font-size:64.016030pt;}
.fs4_c01154{font-size:64.025915pt;}
.fsc_c01154{font-size:69.307432pt;}
.fs1_c01154{font-size:69.347268pt;}
.fs10_c01154{font-size:69.350699pt;}
.fs5_c01154{font-size:69.361408pt;}
.fse_c01154{font-size:74.638773pt;}
.fs9_c01154{font-size:74.643068pt;}
.fs2_c01154{font-size:74.681673pt;}
.fs6_c01154{font-size:74.696901pt;}
.fs3_c01154{font-size:80.016078pt;}
.fs8_c01154{font-size:127.952183pt;}
.y0_c01154{bottom:0.000000pt;}
.yd9_c01154{bottom:175.598308pt;}
.yd8_c01154{bottom:178.137925pt;}
.yd7_c01154{bottom:180.144087pt;}
.yd6_c01154{bottom:183.646885pt;}
.yd5_c01154{bottom:187.625208pt;}
.yd4_c01154{bottom:189.617903pt;}
.yd2_c01154{bottom:216.724409pt;}
.yd3_c01154{bottom:217.918667pt;}
.yd1_c01154{bottom:218.795237pt;}
.ycf_c01154{bottom:227.126268pt;}
.yce_c01154{bottom:228.768324pt;}
.yd0_c01154{bottom:229.481157pt;}
.ycd_c01154{bottom:235.443024pt;}
.ycc_c01154{bottom:238.377460pt;}
.ycb_c01154{bottom:240.060480pt;}
.yca_c01154{bottom:245.693296pt;}
.yc9_c01154{bottom:251.249276pt;}
.yc8_c01154{bottom:255.148000pt;}
.yc7_c01154{bottom:271.510644pt;}
.yc6_c01154{bottom:273.154825pt;}
.yc5_c01154{bottom:290.869081pt;}
.yc4_c01154{bottom:292.621185pt;}
.yc3_c01154{bottom:297.067793pt;}
.yc2_c01154{bottom:299.361853pt;}
.yc1_c01154{bottom:303.295689pt;}
.yc0_c01154{bottom:305.557829pt;}
.ybf_c01154{bottom:307.214325pt;}
.ybe_c01154{bottom:310.589333pt;}
.ybd_c01154{bottom:316.919264pt;}
.ybc_c01154{bottom:318.042240pt;}
.ybb_c01154{bottom:322.532548pt;}
.yba_c01154{bottom:332.014916pt;}
.yb9_c01154{bottom:334.370308pt;}
.yb8_c01154{bottom:338.319344pt;}
.yb7_c01154{bottom:340.538164pt;}
.yb6_c01154{bottom:345.590340pt;}
.yb5_c01154{bottom:347.102132pt;}
.yb4_c01154{bottom:348.272000pt;}
.yb3_c01154{bottom:351.967621pt;}
.yb1_c01154{bottom:360.132267pt;}
.yb0_c01154{bottom:362.484747pt;}
.yaf_c01154{bottom:366.065627pt;}
.yae_c01154{bottom:367.248587pt;}
.yb2_c01154{bottom:368.653336pt;}
.yad_c01154{bottom:371.342347pt;}
.yac_c01154{bottom:373.722667pt;}
.yab_c01154{bottom:382.241965pt;}
.yaa_c01154{bottom:385.667600pt;}
.ya9_c01154{bottom:395.328621pt;}
.ya8_c01154{bottom:397.686051pt;}
.ya7_c01154{bottom:401.730584pt;}
.ya6_c01154{bottom:403.960491pt;}
.ya5_c01154{bottom:409.145381pt;}
.ya4_c01154{bottom:413.070667pt;}
.ya3_c01154{bottom:423.513109pt;}
.ya2_c01154{bottom:425.293333pt;}
.ya1_c01154{bottom:462.996043pt;}
.ya0_c01154{bottom:468.160363pt;}
.y9f_c01154{bottom:471.000120pt;}
.y9e_c01154{bottom:472.706016pt;}
.y9d_c01154{bottom:477.255845pt;}
.y9c_c01154{bottom:479.641811pt;}
.y9b_c01154{bottom:484.711243pt;}
.y9a_c01154{bottom:487.000000pt;}
.y99_c01154{bottom:514.978653pt;}
.y98_c01154{bottom:516.968119pt;}
.y97_c01154{bottom:518.205768pt;}
.y96_c01154{bottom:521.027649pt;}
.y95_c01154{bottom:524.553340pt;}
.y94_c01154{bottom:528.130960pt;}
.y93_c01154{bottom:529.691515pt;}
.y92_c01154{bottom:531.239349pt;}
.y91_c01154{bottom:533.817452pt;}
.y90_c01154{bottom:534.920093pt;}
.y8f_c01154{bottom:537.403845pt;}
.y8e_c01154{bottom:541.547036pt;}
.y8d_c01154{bottom:543.552229pt;}
.y8c_c01154{bottom:545.595512pt;}
.y8b_c01154{bottom:547.669475pt;}
.y8a_c01154{bottom:550.199372pt;}
.y89_c01154{bottom:552.732732pt;}
.y88_c01154{bottom:557.501877pt;}
.y87_c01154{bottom:559.047097pt;}
.y86_c01154{bottom:561.061548pt;}
.y85_c01154{bottom:562.660839pt;}
.y84_c01154{bottom:567.304141pt;}
.y83_c01154{bottom:571.393261pt;}
.y82_c01154{bottom:572.941096pt;}
.y81_c01154{bottom:578.499812pt;}
.y80_c01154{bottom:583.125165pt;}
.y7f_c01154{bottom:585.621072pt;}
.y7e_c01154{bottom:587.371344pt;}
.y7d_c01154{bottom:593.201556pt;}
.y7c_c01154{bottom:598.909656pt;}
.y7b_c01154{bottom:600.441921pt;}
.y7a_c01154{bottom:602.045772pt;}
.y79_c01154{bottom:606.781145pt;}
.y78_c01154{bottom:610.341827pt;}
.y77_c01154{bottom:612.512000pt;}
.y76_c01154{bottom:617.853915pt;}
.y75_c01154{bottom:642.482028pt;}
.y74_c01154{bottom:643.836349pt;}
.y73_c01154{bottom:646.549500pt;}
.y72_c01154{bottom:649.157897pt;}
.y71_c01154{bottom:650.178000pt;}
.y70_c01154{bottom:655.511227pt;}
.y6f_c01154{bottom:657.101199pt;}
.y6e_c01154{bottom:660.063808pt;}
.y6d_c01154{bottom:661.076855pt;}
.y6c_c01154{bottom:663.476219pt;}
.y6b_c01154{bottom:664.995605pt;}
.y6a_c01154{bottom:669.398719pt;}
.y69_c01154{bottom:670.870909pt;}
.y68_c01154{bottom:673.797716pt;}
.y67_c01154{bottom:674.798415pt;}
.y66_c01154{bottom:677.243733pt;}
.y65_c01154{bottom:678.718864pt;}
.y64_c01154{bottom:684.439668pt;}
.y63_c01154{bottom:686.491479pt;}
.y62_c01154{bottom:691.556692pt;}
.y61_c01154{bottom:695.514911pt;}
.y60_c01154{bottom:697.044132pt;}
.y5f_c01154{bottom:700.531661pt;}
.y5e_c01154{bottom:702.582296pt;}
.y5d_c01154{bottom:706.092260pt;}
.y5c_c01154{bottom:708.095176pt;}
.y5b_c01154{bottom:711.602723pt;}
.y5a_c01154{bottom:713.485288pt;}
.y59_c01154{bottom:717.474036pt;}
.y58_c01154{bottom:721.428001pt;}
.y57_c01154{bottom:725.895885pt;}
.y56_c01154{bottom:727.320357pt;}
.y55_c01154{bottom:729.276976pt;}
.y54_c01154{bottom:732.211427pt;}
.y53_c01154{bottom:733.225649pt;}
.y52_c01154{bottom:737.142636pt;}
.y51_c01154{bottom:738.642463pt;}
.y50_c01154{bottom:743.049104pt;}
.y4f_c01154{bottom:748.220980pt;}
.y4e_c01154{bottom:752.084009pt;}
.y4d_c01154{bottom:753.543360pt;}
.y4c_c01154{bottom:759.286879pt;}
.y4b_c01154{bottom:762.276663pt;}
.y4a_c01154{bottom:766.025097pt;}
.y49_c01154{bottom:771.321671pt;}
.y48_c01154{bottom:773.767685pt;}
.y47_c01154{bottom:774.727367pt;}
.y46_c01154{bottom:782.096991pt;}
.y45_c01154{bottom:784.968100pt;}
.y44_c01154{bottom:786.383055pt;}
.y43_c01154{bottom:788.287480pt;}
.y42_c01154{bottom:790.582708pt;}
.y41_c01154{bottom:793.027433pt;}
.y40_c01154{bottom:794.815420pt;}
.y3f_c01154{bottom:798.662229pt;}
.y3e_c01154{bottom:802.410501pt;}
.y3d_c01154{bottom:804.352885pt;}
.y3c_c01154{bottom:806.181117pt;}
.y3b_c01154{bottom:809.929039pt;}
.y3a_c01154{bottom:811.397999pt;}
.y39_c01154{bottom:815.162840pt;}
.y38_c01154{bottom:817.545067pt;}
.y37_c01154{bottom:821.358059pt;}
.y36_c01154{bottom:822.332583pt;}
.y35_c01154{bottom:826.477643pt;}
.y34_c01154{bottom:827.930988pt;}
.y33_c01154{bottom:831.702493pt;}
.y32_c01154{bottom:833.120845pt;}
.y31_c01154{bottom:837.392993pt;}
.y30_c01154{bottom:843.426232pt;}
.y2f_c01154{bottom:845.381789pt;}
.y2e_c01154{bottom:849.302965pt;}
.y2d_c01154{bottom:852.588121pt;}
.y2c_c01154{bottom:855.519759pt;}
.y2b_c01154{bottom:857.002629pt;}
.y2a_c01154{bottom:860.321301pt;}
.y29_c01154{bottom:863.276459pt;}
.y28_c01154{bottom:864.749333pt;}
.y27_c01154{bottom:892.608779pt;}
.y26_c01154{bottom:893.909628pt;}
.y25_c01154{bottom:894.763645pt;}
.y24_c01154{bottom:898.203169pt;}
.y23_c01154{bottom:899.524639pt;}
.y22_c01154{bottom:904.413643pt;}
.y21_c01154{bottom:909.278493pt;}
.y20_c01154{bottom:913.625381pt;}
.y1f_c01154{bottom:915.539387pt;}
.y1e_c01154{bottom:916.992792pt;}
.y1d_c01154{bottom:919.886863pt;}
.y1c_c01154{bottom:920.907043pt;}
.y1b_c01154{bottom:923.741595pt;}
.y1a_c01154{bottom:925.182325pt;}
.y19_c01154{bottom:928.506159pt;}
.y18_c01154{bottom:932.411001pt;}
.y17_c01154{bottom:934.634216pt;}
.y16_c01154{bottom:938.456460pt;}
.y15_c01154{bottom:941.768000pt;}
.y14_c01154{bottom:943.706529pt;}
.y13_c01154{bottom:945.101361pt;}
.y12_c01154{bottom:948.929747pt;}
.y11_c01154{bottom:951.294660pt;}
.y10_c01154{bottom:952.667369pt;}
.yf_c01154{bottom:958.308241pt;}
.ye_c01154{bottom:959.771648pt;}
.yd_c01154{bottom:963.386103pt;}
.yc_c01154{bottom:967.184469pt;}
.yb_c01154{bottom:970.150799pt;}
.ya_c01154{bottom:971.645429pt;}
.y9_c01154{bottom:973.523044pt;}
.y8_c01154{bottom:976.927368pt;}
.y7_c01154{bottom:978.827653pt;}
.y6_c01154{bottom:982.229691pt;}
.y5_c01154{bottom:986.152565pt;}
.y4_c01154{bottom:987.582712pt;}
.y3_c01154{bottom:990.999972pt;}
.y2_c01154{bottom:992.313760pt;}
.y1_c01154{bottom:994.817333pt;}
.h11_c01154{height:21.325364pt;}
.hd_c01154{height:31.993663pt;}
.hf_c01154{height:58.644751pt;}
.h9_c01154{height:63.979773pt;}
.hc_c01154{height:63.987327pt;}
.h2_c01154{height:64.012863pt;}
.h13_c01154{height:64.016030pt;}
.h6_c01154{height:64.025915pt;}
.he_c01154{height:69.307432pt;}
.h3_c01154{height:69.347268pt;}
.h12_c01154{height:69.350699pt;}
.h7_c01154{height:69.361408pt;}
.h10_c01154{height:74.638773pt;}
.hb_c01154{height:74.643068pt;}
.h4_c01154{height:74.681673pt;}
.h8_c01154{height:74.696901pt;}
.h5_c01154{height:80.016078pt;}
.ha_c01154{height:127.952183pt;}
.h1_c01154{height:1118.666667pt;}
.h0_c01154{height:1118.880000pt;}
.w0_c01154{width:817.866667pt;}
.w1_c01154{width:818.000000pt;}
.x0_c01154{left:0.000000pt;}
.xad_c01154{left:138.264000pt;}
.xa3_c01154{left:141.349333pt;}
.x8b_c01154{left:148.033333pt;}
.x80_c01154{left:152.104225pt;}
.x76_c01154{left:154.173644pt;}
.x6f_c01154{left:156.423384pt;}
.x66_c01154{left:157.537111pt;}
.x59_c01154{left:159.219133pt;}
.x50_c01154{left:160.244565pt;}
.x46_c01154{left:162.130128pt;}
.x3f_c01154{left:163.725308pt;}
.xd_c01154{left:165.168297pt;}
.x97_c01154{left:166.226667pt;}
.x22_c01154{left:167.944233pt;}
.x18_c01154{left:170.415815pt;}
.x1_c01154{left:172.916000pt;}
.xae_c01154{left:177.750659pt;}
.x40_c01154{left:183.291056pt;}
.x98_c01154{left:186.709619pt;}
.x5a_c01154{left:188.694856pt;}
.x23_c01154{left:197.934871pt;}
.x37_c01154{left:203.060835pt;}
.x70_c01154{left:204.375264pt;}
.xa4_c01154{left:209.611203pt;}
.x99_c01154{left:213.179240pt;}
.x67_c01154{left:216.445443pt;}
.x81_c01154{left:220.853789pt;}
.x2_c01154{left:223.958240pt;}
.x51_c01154{left:228.951720pt;}
.x41_c01154{left:233.159804pt;}
.x5b_c01154{left:237.542207pt;}
.xe_c01154{left:240.383336pt;}
.x38_c01154{left:243.478339pt;}
.x68_c01154{left:245.853655pt;}
.x83_c01154{left:249.386667pt;}
.x3_c01154{left:250.743428pt;}
.x2f_c01154{left:254.762355pt;}
.xaf_c01154{left:255.690104pt;}
.x5c_c01154{left:257.535879pt;}
.x27_c01154{left:264.613333pt;}
.x52_c01154{left:268.180593pt;}
.xf_c01154{left:270.845015pt;}
.x24_c01154{left:276.007816pt;}
.x47_c01154{left:280.154231pt;}
.x95_c01154{left:282.029043pt;}
.x30_c01154{left:284.278248pt;}
.x84_c01154{left:288.769077pt;}
.x77_c01154{left:291.271624pt;}
.x71_c01154{left:293.245711pt;}
.x25_c01154{left:295.406505pt;}
.x82_c01154{left:299.482427pt;}
.x9a_c01154{left:301.636637pt;}
.x8c_c01154{left:304.791189pt;}
.xa5_c01154{left:306.889589pt;}
.x5d_c01154{left:316.009136pt;}
.x19_c01154{left:317.792291pt;}
.x4_c01154{left:320.413688pt;}
.x39_c01154{left:321.476056pt;}
.x91_c01154{left:323.289989pt;}
.x26_c01154{left:324.949525pt;}
.x78_c01154{left:330.515725pt;}
.x53_c01154{left:336.937032pt;}
.x9e_c01154{left:339.853579pt;}
.x42_c01154{left:341.145044pt;}
.x8d_c01154{left:343.160963pt;}
.x5e_c01154{left:345.424919pt;}
.x1a_c01154{left:347.165555pt;}
.x5_c01154{left:349.571168pt;}
.x28_c01154{left:354.890965pt;}
.x48_c01154{left:358.406708pt;}
.x31_c01154{left:362.776863pt;}
.x79_c01154{left:369.041879pt;}
.x85_c01154{left:375.998269pt;}
.x54_c01154{left:377.111560pt;}
.x49_c01154{left:378.676104pt;}
.xa1_c01154{left:386.429139pt;}
.x10_c01154{left:388.245252pt;}
.x92_c01154{left:391.382864pt;}
.x32_c01154{left:393.033413pt;}
.x72_c01154{left:400.036472pt;}
.x3a_c01154{left:401.537172pt;}
.x1b_c01154{left:404.955707pt;}
.x9f_c01154{left:408.464083pt;}
.x9b_c01154{left:409.628221pt;}
.x93_c01154{left:411.059432pt;}
.x8e_c01154{left:412.754829pt;}
.x11_c01154{left:416.803372pt;}
.xa2_c01154{left:417.974907pt;}
.x29_c01154{left:422.551237pt;}
.x8a_c01154{left:423.812203pt;}
.x1c_c01154{left:425.754887pt;}
.x6_c01154{left:429.549776pt;}
.x5f_c01154{left:433.397875pt;}
.xa6_c01154{left:434.980893pt;}
.x4a_c01154{left:437.305205pt;}
.x3b_c01154{left:438.752417pt;}
.x55_c01154{left:445.437828pt;}
.x7a_c01154{left:448.647771pt;}
.x6a_c01154{left:451.322524pt;}
.x2a_c01154{left:452.783641pt;}
.x60_c01154{left:463.748656pt;}
.x12_c01154{left:466.025853pt;}
.x94_c01154{left:470.621403pt;}
.x56_c01154{left:475.390236pt;}
.x4b_c01154{left:476.406835pt;}
.xa0_c01154{left:477.340720pt;}
.x33_c01154{left:479.311300pt;}
.x6b_c01154{left:481.553596pt;}
.x1d_c01154{left:484.758491pt;}
.xa7_c01154{left:486.359264pt;}
.x3c_c01154{left:489.629308pt;}
.x86_c01154{left:495.341771pt;}
.x7b_c01154{left:496.370547pt;}
.x7_c01154{left:498.909680pt;}
.xaa_c01154{left:501.173760pt;}
.x4c_c01154{left:504.876963pt;}
.x73_c01154{left:508.327136pt;}
.x6c_c01154{left:510.435352pt;}
.x2b_c01154{left:512.553145pt;}
.x1e_c01154{left:514.390163pt;}
.x7c_c01154{left:517.557137pt;}
.x87_c01154{left:524.694947pt;}
.x61_c01154{left:531.931736pt;}
.x8_c01154{left:537.652232pt;}
.x13_c01154{left:545.711345pt;}
.x1f_c01154{left:553.412435pt;}
.x7d_c01154{left:567.083512pt;}
.x88_c01154{left:573.558357pt;}
.x14_c01154{left:574.747719pt;}
.x3d_c01154{left:577.047452pt;}
.x2c_c01154{left:579.530101pt;}
.x96_c01154{left:584.735904pt;}
.x62_c01154{left:591.134929pt;}
.x4d_c01154{left:594.143225pt;}
.x43_c01154{left:595.619648pt;}
.x74_c01154{left:597.535911pt;}
.xa8_c01154{left:603.225064pt;}
.x9_c01154{left:607.058756pt;}
.x15_c01154{left:615.086635pt;}
.x9c_c01154{left:616.892861pt;}
.x6d_c01154{left:618.027652pt;}
.x8f_c01154{left:619.555067pt;}
.x63_c01154{left:622.897565pt;}
.x44_c01154{left:625.372532pt;}
.x7e_c01154{left:626.781533pt;}
.x34_c01154{left:628.507880pt;}
.xa9_c01154{left:631.975448pt;}
.x20_c01154{left:642.035723pt;}
.xa_c01154{left:645.339104pt;}
.x57_c01154{left:652.143975pt;}
.x2d_c01154{left:659.474077pt;}
.x89_c01154{left:662.420277pt;}
.x3e_c01154{left:666.254537pt;}
.x4e_c01154{left:673.149615pt;}
.xb_c01154{left:675.811268pt;}
.x90_c01154{left:678.499608pt;}
.x16_c01154{left:684.017036pt;}
.xab_c01154{left:685.045437pt;}
.x58_c01154{left:692.342479pt;}
.x7f_c01154{left:695.500353pt;}
.x75_c01154{left:696.640608pt;}
.x2e_c01154{left:699.343501pt;}
.x45_c01154{left:704.131028pt;}
.x35_c01154{left:706.870631pt;}
.x9d_c01154{left:715.174571pt;}
.xac_c01154{left:720.671985pt;}
.x6e_c01154{left:727.921648pt;}
.x64_c01154{left:729.452339pt;}
.xc_c01154{left:736.288064pt;}
.x36_c01154{left:737.445529pt;}
.x21_c01154{left:741.219107pt;}
.x65_c01154{left:749.841615pt;}
.x4f_c01154{left:752.837923pt;}
.x17_c01154{left:763.577320pt;}
.x69_c01154{left:780.686229pt;}
}





/* 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_c01155 {
    display:none;
  }
  .loading-indicator_c01155.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01155 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_c01155 { 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_c01155" -> "#page-container .classname_c01155")
 */
.pf_c01155 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01155 { /* 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_c01155.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01155 { /* 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_c01155 { /* 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_c01155 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01155 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01155 {overflow:visible;}
  }
}
.c_c01155 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01155 { /* 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_c01155:after { /* webkit #35443 */
  content: '';
}
.t_c01155:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01155 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 */
}
.__c01155 { /* 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_c01155 { /* info for Javascript */
  display:none;
}
.l_c01155 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01155 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01155 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01155: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_c01155 {
    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_c01155.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01155.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_c01155 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01155{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01155;src:url('chunks/assets/font_c605e72f209fc835e906f064.woff2')format("woff");}.ff1_c01155{font-family:ff1_c01155;line-height:1.000000;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;}
.m2a_c01155{transform:matrix(0.038050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.038050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.038050,0.000000,0.000000,0.250000,0,0);}
.m10_c01155{transform:matrix(0.128865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128865,0.000000,0.000000,0.250000,0,0);}
.m2_c01155{transform:matrix(0.131315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131315,0.000000,0.000000,0.250000,0,0);}
.m27_c01155{transform:matrix(0.138190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138190,0.000000,0.000000,0.250000,0,0);}
.m15_c01155{transform:matrix(0.139560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139560,0.000000,0.000000,0.250000,0,0);}
.me_c01155{transform:matrix(0.146430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146430,0.000000,0.000000,0.250000,0,0);}
.m14_c01155{transform:matrix(0.148545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148545,0.000000,0.000000,0.250000,0,0);}
.mf_c01155{transform:matrix(0.153860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153860,0.000000,0.000000,0.250000,0,0);}
.m2b_c01155{transform:matrix(0.154890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154890,0.000000,0.000000,0.250000,0,0);}
.m13_c01155{transform:matrix(0.160035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160035,0.000000,0.000000,0.250000,0,0);}
.m11_c01155{transform:matrix(0.160820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160820,0.000000,0.000000,0.250000,0,0);}
.m21_c01155{transform:matrix(0.170855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170855,0.000000,0.000000,0.250000,0,0);}
.m42_c01155{transform:matrix(0.171346,-0.001713,0.002500,0.249988,0,0);-ms-transform:matrix(0.171346,-0.001713,0.002500,0.249988,0,0);-webkit-transform:matrix(0.171346,-0.001713,0.002500,0.249988,0,0);}
.m45_c01155{transform:matrix(0.174811,-0.001748,0.002500,0.249988,0,0);-ms-transform:matrix(0.174811,-0.001748,0.002500,0.249988,0,0);-webkit-transform:matrix(0.174811,-0.001748,0.002500,0.249988,0,0);}
.m3c_c01155{transform:matrix(0.183936,-0.001839,0.002500,0.249988,0,0);-ms-transform:matrix(0.183936,-0.001839,0.002500,0.249988,0,0);-webkit-transform:matrix(0.183936,-0.001839,0.002500,0.249988,0,0);}
.m1_c01155{transform:matrix(0.184515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184515,0.000000,0.000000,0.250000,0,0);}
.m3f_c01155{transform:matrix(0.185756,-0.001858,0.002500,0.249988,0,0);-ms-transform:matrix(0.185756,-0.001858,0.002500,0.249988,0,0);-webkit-transform:matrix(0.185756,-0.001858,0.002500,0.249988,0,0);}
.m43_c01155{transform:matrix(0.187581,-0.001876,0.002500,0.249988,0,0);-ms-transform:matrix(0.187581,-0.001876,0.002500,0.249988,0,0);-webkit-transform:matrix(0.187581,-0.001876,0.002500,0.249988,0,0);}
.m41_c01155{transform:matrix(0.196520,-0.001965,0.002500,0.249988,0,0);-ms-transform:matrix(0.196520,-0.001965,0.002500,0.249988,0,0);-webkit-transform:matrix(0.196520,-0.001965,0.002500,0.249988,0,0);}
.m3b_c01155{transform:matrix(0.196585,-0.001966,0.002500,0.249988,0,0);-ms-transform:matrix(0.196585,-0.001966,0.002500,0.249988,0,0);-webkit-transform:matrix(0.196585,-0.001966,0.002500,0.249988,0,0);}
.m46_c01155{transform:matrix(0.196630,-0.001966,0.002500,0.249988,0,0);-ms-transform:matrix(0.196630,-0.001966,0.002500,0.249988,0,0);-webkit-transform:matrix(0.196630,-0.001966,0.002500,0.249988,0,0);}
.m1a_c01155{transform:matrix(0.198450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198450,0.000000,0.000000,0.250000,0,0);}
.m3e_c01155{transform:matrix(0.199835,-0.001998,0.002500,0.249988,0,0);-ms-transform:matrix(0.199835,-0.001998,0.002500,0.249988,0,0);-webkit-transform:matrix(0.199835,-0.001998,0.002500,0.249988,0,0);}
.m3d_c01155{transform:matrix(0.201360,-0.002014,0.002500,0.249988,0,0);-ms-transform:matrix(0.201360,-0.002014,0.002500,0.249988,0,0);-webkit-transform:matrix(0.201360,-0.002014,0.002500,0.249988,0,0);}
.m12_c01155{transform:matrix(0.208390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208390,0.000000,0.000000,0.250000,0,0);}
.m36_c01155{transform:matrix(0.212144,-0.002121,0.002500,0.249988,0,0);-ms-transform:matrix(0.212144,-0.002121,0.002500,0.249988,0,0);-webkit-transform:matrix(0.212144,-0.002121,0.002500,0.249988,0,0);}
.md_c01155{transform:matrix(0.218300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218300,0.000000,0.000000,0.250000,0,0);}
.m26_c01155{transform:matrix(0.221745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221745,0.000000,0.000000,0.250000,0,0);}
.m25_c01155{transform:matrix(0.222470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222470,0.000000,0.000000,0.250000,0,0);}
.m32_c01155{transform:matrix(0.231793,-0.002318,0.002500,0.249988,0,0);-ms-transform:matrix(0.231793,-0.002318,0.002500,0.249988,0,0);-webkit-transform:matrix(0.231793,-0.002318,0.002500,0.249988,0,0);}
.m33_c01155{transform:matrix(0.237413,-0.002374,0.002500,0.249988,0,0);-ms-transform:matrix(0.237413,-0.002374,0.002500,0.249988,0,0);-webkit-transform:matrix(0.237413,-0.002374,0.002500,0.249988,0,0);}
.m0_c01155{transform:matrix(0.246020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246020,0.000000,0.000000,0.250000,0,0);}
.m9_c01155{transform:matrix(0.246920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246920,0.000000,0.000000,0.250000,0,0);}
.mc_c01155{transform:matrix(0.247730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247730,0.000000,0.000000,0.250000,0,0);}
.m1d_c01155{transform:matrix(0.250525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250525,0.000000,0.000000,0.250000,0,0);}
.m40_c01155{transform:matrix(0.251612,-0.002516,0.002500,0.249988,0,0);-ms-transform:matrix(0.251612,-0.002516,0.002500,0.249988,0,0);-webkit-transform:matrix(0.251612,-0.002516,0.002500,0.249988,0,0);}
.m19_c01155{transform:matrix(0.255915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255915,0.000000,0.000000,0.250000,0,0);}
.m17_c01155{transform:matrix(0.258265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258265,0.000000,0.000000,0.250000,0,0);}
.ma_c01155{transform:matrix(0.259320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259320,0.000000,0.000000,0.250000,0,0);}
.m24_c01155{transform:matrix(0.267070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267070,0.000000,0.000000,0.250000,0,0);}
.m39_c01155{transform:matrix(0.269577,-0.002696,0.002500,0.249988,0,0);-ms-transform:matrix(0.269577,-0.002696,0.002500,0.249988,0,0);-webkit-transform:matrix(0.269577,-0.002696,0.002500,0.249988,0,0);}
.m38_c01155{transform:matrix(0.269712,-0.002697,0.002500,0.249988,0,0);-ms-transform:matrix(0.269712,-0.002697,0.002500,0.249988,0,0);-webkit-transform:matrix(0.269712,-0.002697,0.002500,0.249988,0,0);}
.m22_c01155{transform:matrix(0.272610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272610,0.000000,0.000000,0.250000,0,0);}
.m16_c01155{transform:matrix(0.274830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274830,0.000000,0.000000,0.250000,0,0);}
.m3a_c01155{transform:matrix(0.275746,-0.002757,0.002500,0.249988,0,0);-ms-transform:matrix(0.275746,-0.002757,0.002500,0.249988,0,0);-webkit-transform:matrix(0.275746,-0.002757,0.002500,0.249988,0,0);}
.m1c_c01155{transform:matrix(0.276330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276330,0.000000,0.000000,0.250000,0,0);}
.m1b_c01155{transform:matrix(0.276585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276585,0.000000,0.000000,0.250000,0,0);}
.m44_c01155{transform:matrix(0.277361,-0.002774,0.002500,0.249988,0,0);-ms-transform:matrix(0.277361,-0.002774,0.002500,0.249988,0,0);-webkit-transform:matrix(0.277361,-0.002774,0.002500,0.249988,0,0);}
.m37_c01155{transform:matrix(0.284386,-0.002844,0.002500,0.249988,0,0);-ms-transform:matrix(0.284386,-0.002844,0.002500,0.249988,0,0);-webkit-transform:matrix(0.284386,-0.002844,0.002500,0.249988,0,0);}
.m18_c01155{transform:matrix(0.287195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287195,0.000000,0.000000,0.250000,0,0);}
.m2c_c01155{transform:matrix(0.290015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290015,0.000000,0.000000,0.250000,0,0);}
.m28_c01155{transform:matrix(0.293650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293650,0.000000,0.000000,0.250000,0,0);}
.m1f_c01155{transform:matrix(0.294150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294150,0.000000,0.000000,0.250000,0,0);}
.m1e_c01155{transform:matrix(0.294825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294825,0.000000,0.000000,0.250000,0,0);}
.m2e_c01155{transform:matrix(0.308590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308590,0.000000,0.000000,0.250000,0,0);}
.m20_c01155{transform:matrix(0.325520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325520,0.000000,0.000000,0.250000,0,0);}
.m30_c01155{transform:matrix(0.326505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326505,0.000000,0.000000,0.250000,0,0);}
.m6_c01155{transform:matrix(0.329745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329745,0.000000,0.000000,0.250000,0,0);}
.m34_c01155{transform:matrix(0.334968,-0.003350,0.002500,0.249988,0,0);-ms-transform:matrix(0.334968,-0.003350,0.002500,0.249988,0,0);-webkit-transform:matrix(0.334968,-0.003350,0.002500,0.249988,0,0);}
.m8_c01155{transform:matrix(0.335715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335715,0.000000,0.000000,0.250000,0,0);}
.m23_c01155{transform:matrix(0.354510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354510,0.000000,0.000000,0.250000,0,0);}
.m29_c01155{transform:matrix(0.355880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355880,0.000000,0.000000,0.250000,0,0);}
.m35_c01155{transform:matrix(0.358667,-0.003587,0.002500,0.249988,0,0);-ms-transform:matrix(0.358667,-0.003587,0.002500,0.249988,0,0);-webkit-transform:matrix(0.358667,-0.003587,0.002500,0.249988,0,0);}
.m31_c01155{transform:matrix(0.362655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362655,0.000000,0.000000,0.250000,0,0);}
.m2f_c01155{transform:matrix(0.391235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391235,0.000000,0.000000,0.250000,0,0);}
.m3_c01155{transform:matrix(0.391745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391745,0.000000,0.000000,0.250000,0,0);}
.mb_c01155{transform:matrix(0.392470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392470,0.000000,0.000000,0.250000,0,0);}
.m2d_c01155{transform:matrix(0.452680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452680,0.000000,0.000000,0.250000,0,0);}
.m4_c01155{transform:matrix(0.477780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477780,0.000000,0.000000,0.250000,0,0);}
.m5_c01155{transform:matrix(1.050050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.050050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.050050,0.000000,0.000000,0.250000,0,0);}
.m7_c01155{transform:matrix(1.776995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.776995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.776995,0.000000,0.000000,0.250000,0,0);}
.v0_c01155{vertical-align:0.000000px;}
.ls0_c01155{letter-spacing:0.000000px;}
.sc__c01155{text-shadow:none;}
.sc0_c01155{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__c01155{-webkit-text-stroke:0px transparent;}
.sc0_c01155{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01155{word-spacing:0.000000px;}
.fc0_c01155{color:transparent;}
.fs1_c01155{font-size:18.000000px;}
.fs2_c01155{font-size:24.000000px;}
.fs0_c01155{font-size:48.000000px;}
.fs5_c01155{font-size:72.000000px;}
.fs8_c01155{font-size:78.003900px;}
.fs3_c01155{font-size:84.000000px;}
.fs7_c01155{font-size:102.000000px;}
.fs9_c01155{font-size:102.005100px;}
.fs6_c01155{font-size:114.000000px;}
.fs4_c01155{font-size:132.000000px;}
.y0_c01155{bottom:0.000000px;}
.y5_c01155{bottom:86.400000px;}
.y4_c01155{bottom:153.090000px;}
.y1f_c01155{bottom:592.379550px;}
.y20_c01155{bottom:593.086725px;}
.y21_c01155{bottom:593.376825px;}
.y22_c01155{bottom:593.667045px;}
.y23_c01155{bottom:594.184320px;}
.y24_c01155{bottom:594.389100px;}
.y25_c01155{bottom:594.887340px;}
.y26_c01155{bottom:595.681260px;}
.y27_c01155{bottom:596.089575px;}
.y28_c01155{bottom:596.466105px;}
.y29_c01155{bottom:596.901600px;}
.y2a_c01155{bottom:597.382395px;}
.y16_c01155{bottom:629.641500px;}
.y17_c01155{bottom:630.065430px;}
.y18_c01155{bottom:630.463875px;}
.y19_c01155{bottom:631.442985px;}
.y1a_c01155{bottom:632.026485px;}
.y1b_c01155{bottom:632.321445px;}
.y1c_c01155{bottom:632.637540px;}
.y1d_c01155{bottom:633.862305px;}
.y1e_c01155{bottom:634.845540px;}
.y3_c01155{bottom:674.460000px;}
.y2_c01155{bottom:686.070000px;}
.y1_c01155{bottom:697.273500px;}
.y15_c01155{bottom:808.150500px;}
.y14_c01155{bottom:840.930000px;}
.y13_c01155{bottom:878.191500px;}
.y8_c01155{bottom:913.236000px;}
.y9_c01155{bottom:913.725000px;}
.ya_c01155{bottom:914.841000px;}
.yb_c01155{bottom:915.652500px;}
.yc_c01155{bottom:916.048500px;}
.yd_c01155{bottom:916.743000px;}
.ye_c01155{bottom:917.031000px;}
.yf_c01155{bottom:918.340500px;}
.y10_c01155{bottom:918.732000px;}
.y11_c01155{bottom:919.825500px;}
.y12_c01155{bottom:920.343000px;}
.y7_c01155{bottom:949.521000px;}
.y6_c01155{bottom:986.170500px;}
.h3_c01155{height:18.000000px;}
.h4_c01155{height:24.000000px;}
.h2_c01155{height:48.000000px;}
.h7_c01155{height:72.000000px;}
.ha_c01155{height:78.003900px;}
.h5_c01155{height:84.000000px;}
.h9_c01155{height:102.000000px;}
.hb_c01155{height:102.005100px;}
.h8_c01155{height:114.000000px;}
.h6_c01155{height:132.000000px;}
.h1_c01155{height:1258.500000px;}
.h0_c01155{height:1258.740000px;}
.w0_c01155{width:920.100000px;}
.w1_c01155{width:920.250000px;}
.x0_c01155{left:0.000000px;}
.x3_c01155{left:2.970000px;}
.x1_c01155{left:4.050000px;}
.x2_c01155{left:6.210000px;}
.x11_c01155{left:97.080000px;}
.x33_c01155{left:133.578270px;}
.x12_c01155{left:134.685000px;}
.x9_c01155{left:143.640000px;}
.x1c_c01155{left:151.740000px;}
.x27_c01155{left:167.400000px;}
.x1d_c01155{left:184.140000px;}
.xa_c01155{left:187.920000px;}
.x2c_c01155{left:209.097000px;}
.x34_c01155{left:212.096550px;}
.x13_c01155{left:220.548000px;}
.x35_c01155{left:244.256865px;}
.x1e_c01155{left:246.510000px;}
.x2d_c01155{left:248.941500px;}
.x28_c01155{left:260.550000px;}
.xb_c01155{left:277.290000px;}
.x1f_c01155{left:279.990000px;}
.x14_c01155{left:282.928500px;}
.x15_c01155{left:313.434000px;}
.x20_c01155{left:323.190000px;}
.x36_c01155{left:333.857250px;}
.x2e_c01155{left:346.852500px;}
.xc_c01155{left:354.780000px;}
.x37_c01155{left:356.585475px;}
.x16_c01155{left:366.829500px;}
.x21_c01155{left:380.700000px;}
.x17_c01155{left:389.008500px;}
.x2f_c01155{left:405.202500px;}
.x38_c01155{left:411.960030px;}
.xd_c01155{left:422.550000px;}
.x30_c01155{left:434.698500px;}
.x22_c01155{left:438.210000px;}
.xe_c01155{left:448.740000px;}
.x4_c01155{left:466.560000px;}
.x18_c01155{left:489.684000px;}
.x23_c01155{left:495.720000px;}
.x39_c01155{left:500.202915px;}
.x29_c01155{left:502.200000px;}
.x25_c01155{left:515.970000px;}
.x19_c01155{left:519.750000px;}
.x2a_c01155{left:525.690000px;}
.xf_c01155{left:531.090000px;}
.x26_c01155{left:544.590000px;}
.x5_c01155{left:563.760000px;}
.x24_c01155{left:567.540000px;}
.x3a_c01155{left:587.388285px;}
.x31_c01155{left:588.784500px;}
.x6_c01155{left:595.080000px;}
.x10_c01155{left:597.780000px;}
.x1a_c01155{left:603.838500px;}
.x2b_c01155{left:614.250000px;}
.x7_c01155{left:619.380000px;}
.x3b_c01155{left:635.738265px;}
.x1b_c01155{left:643.627500px;}
.x32_c01155{left:687.108000px;}
.x3c_c01155{left:689.218305px;}
.x8_c01155{left:707.670000px;}
@media print{
.v0_c01155{vertical-align:0.000000pt;}
.ls0_c01155{letter-spacing:0.000000pt;}
.ws0_c01155{word-spacing:0.000000pt;}
.fs1_c01155{font-size:16.000000pt;}
.fs2_c01155{font-size:21.333333pt;}
.fs0_c01155{font-size:42.666667pt;}
.fs5_c01155{font-size:64.000000pt;}
.fs8_c01155{font-size:69.336800pt;}
.fs3_c01155{font-size:74.666667pt;}
.fs7_c01155{font-size:90.666667pt;}
.fs9_c01155{font-size:90.671200pt;}
.fs6_c01155{font-size:101.333333pt;}
.fs4_c01155{font-size:117.333333pt;}
.y0_c01155{bottom:0.000000pt;}
.y5_c01155{bottom:76.800000pt;}
.y4_c01155{bottom:136.080000pt;}
.y1f_c01155{bottom:526.559600pt;}
.y20_c01155{bottom:527.188200pt;}
.y21_c01155{bottom:527.446067pt;}
.y22_c01155{bottom:527.704040pt;}
.y23_c01155{bottom:528.163840pt;}
.y24_c01155{bottom:528.345867pt;}
.y25_c01155{bottom:528.788747pt;}
.y26_c01155{bottom:529.494453pt;}
.y27_c01155{bottom:529.857400pt;}
.y28_c01155{bottom:530.192093pt;}
.y29_c01155{bottom:530.579200pt;}
.y2a_c01155{bottom:531.006573pt;}
.y16_c01155{bottom:559.681333pt;}
.y17_c01155{bottom:560.058160pt;}
.y18_c01155{bottom:560.412333pt;}
.y19_c01155{bottom:561.282653pt;}
.y1a_c01155{bottom:561.801320pt;}
.y1b_c01155{bottom:562.063507pt;}
.y1c_c01155{bottom:562.344480pt;}
.y1d_c01155{bottom:563.433160pt;}
.y1e_c01155{bottom:564.307147pt;}
.y3_c01155{bottom:599.520000pt;}
.y2_c01155{bottom:609.840000pt;}
.y1_c01155{bottom:619.798667pt;}
.y15_c01155{bottom:718.356000pt;}
.y14_c01155{bottom:747.493333pt;}
.y13_c01155{bottom:780.614667pt;}
.y8_c01155{bottom:811.765333pt;}
.y9_c01155{bottom:812.200000pt;}
.ya_c01155{bottom:813.192000pt;}
.yb_c01155{bottom:813.913333pt;}
.yc_c01155{bottom:814.265333pt;}
.yd_c01155{bottom:814.882667pt;}
.ye_c01155{bottom:815.138667pt;}
.yf_c01155{bottom:816.302667pt;}
.y10_c01155{bottom:816.650667pt;}
.y11_c01155{bottom:817.622667pt;}
.y12_c01155{bottom:818.082667pt;}
.y7_c01155{bottom:844.018667pt;}
.y6_c01155{bottom:876.596000pt;}
.h3_c01155{height:16.000000pt;}
.h4_c01155{height:21.333333pt;}
.h2_c01155{height:42.666667pt;}
.h7_c01155{height:64.000000pt;}
.ha_c01155{height:69.336800pt;}
.h5_c01155{height:74.666667pt;}
.h9_c01155{height:90.666667pt;}
.hb_c01155{height:90.671200pt;}
.h8_c01155{height:101.333333pt;}
.h6_c01155{height:117.333333pt;}
.h1_c01155{height:1118.666667pt;}
.h0_c01155{height:1118.880000pt;}
.w0_c01155{width:817.866667pt;}
.w1_c01155{width:818.000000pt;}
.x0_c01155{left:0.000000pt;}
.x3_c01155{left:2.640000pt;}
.x1_c01155{left:3.600000pt;}
.x2_c01155{left:5.520000pt;}
.x11_c01155{left:86.293333pt;}
.x33_c01155{left:118.736240pt;}
.x12_c01155{left:119.720000pt;}
.x9_c01155{left:127.680000pt;}
.x1c_c01155{left:134.880000pt;}
.x27_c01155{left:148.800000pt;}
.x1d_c01155{left:163.680000pt;}
.xa_c01155{left:167.040000pt;}
.x2c_c01155{left:185.864000pt;}
.x34_c01155{left:188.530267pt;}
.x13_c01155{left:196.042667pt;}
.x35_c01155{left:217.117213pt;}
.x1e_c01155{left:219.120000pt;}
.x2d_c01155{left:221.281333pt;}
.x28_c01155{left:231.600000pt;}
.xb_c01155{left:246.480000pt;}
.x1f_c01155{left:248.880000pt;}
.x14_c01155{left:251.492000pt;}
.x15_c01155{left:278.608000pt;}
.x20_c01155{left:287.280000pt;}
.x36_c01155{left:296.762000pt;}
.x2e_c01155{left:308.313333pt;}
.xc_c01155{left:315.360000pt;}
.x37_c01155{left:316.964867pt;}
.x16_c01155{left:326.070667pt;}
.x21_c01155{left:338.400000pt;}
.x17_c01155{left:345.785333pt;}
.x2f_c01155{left:360.180000pt;}
.x38_c01155{left:366.186693pt;}
.xd_c01155{left:375.600000pt;}
.x30_c01155{left:386.398667pt;}
.x22_c01155{left:389.520000pt;}
.xe_c01155{left:398.880000pt;}
.x4_c01155{left:414.720000pt;}
.x18_c01155{left:435.274667pt;}
.x23_c01155{left:440.640000pt;}
.x39_c01155{left:444.624813pt;}
.x29_c01155{left:446.400000pt;}
.x25_c01155{left:458.640000pt;}
.x19_c01155{left:462.000000pt;}
.x2a_c01155{left:467.280000pt;}
.xf_c01155{left:472.080000pt;}
.x26_c01155{left:484.080000pt;}
.x5_c01155{left:501.120000pt;}
.x24_c01155{left:504.480000pt;}
.x3a_c01155{left:522.122920pt;}
.x31_c01155{left:523.364000pt;}
.x6_c01155{left:528.960000pt;}
.x10_c01155{left:531.360000pt;}
.x1a_c01155{left:536.745333pt;}
.x2b_c01155{left:546.000000pt;}
.x7_c01155{left:550.560000pt;}
.x3b_c01155{left:565.100680pt;}
.x1b_c01155{left:572.113333pt;}
.x32_c01155{left:610.762667pt;}
.x3c_c01155{left:612.638493pt;}
.x8_c01155{left:629.040000pt;}
}





/* 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_c01156 {
    display:none;
  }
  .loading-indicator_c01156.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01156 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_c01156 { 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_c01156" -> "#page-container .classname_c01156")
 */
.pf_c01156 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01156 { /* 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_c01156.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01156 { /* 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_c01156 { /* 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_c01156 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01156 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01156 {overflow:visible;}
  }
}
.c_c01156 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01156 { /* 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_c01156:after { /* webkit #35443 */
  content: '';
}
.t_c01156:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01156 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 */
}
.__c01156 { /* 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_c01156 { /* info for Javascript */
  display:none;
}
.l_c01156 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01156 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01156 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01156: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_c01156 {
    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_c01156.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01156.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_c01156 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01156{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01156;src:url('chunks/assets/font_c605e72f209fc835e906f064.woff2')format("woff");}.ff1_c01156{font-family:ff1_c01156;line-height:1.000000;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;}
.ma9_c01156{transform:matrix(0.015906,0.000366,-0.005748,0.249934,0,0);-ms-transform:matrix(0.015906,0.000366,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.015906,0.000366,-0.005748,0.249934,0,0);}
.md0_c01156{transform:matrix(0.061845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.061845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.061845,0.000000,0.000000,0.250000,0,0);}
.m94_c01156{transform:matrix(0.129336,0.002199,-0.004249,0.249964,0,0);-ms-transform:matrix(0.129336,0.002199,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.129336,0.002199,-0.004249,0.249964,0,0);}
.m93_c01156{transform:matrix(0.147309,0.002504,-0.004249,0.249964,0,0);-ms-transform:matrix(0.147309,0.002504,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.147309,0.002504,-0.004249,0.249964,0,0);}
.md5_c01156{transform:matrix(0.165680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165680,0.000000,0.000000,0.250000,0,0);}
.m38_c01156{transform:matrix(0.169831,0.002208,-0.003250,0.249979,0,0);-ms-transform:matrix(0.169831,0.002208,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.169831,0.002208,-0.003250,0.249979,0,0);}
.m69_c01156{transform:matrix(0.181865,0.002728,-0.003750,0.249972,0,0);-ms-transform:matrix(0.181865,0.002728,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.181865,0.002728,-0.003750,0.249972,0,0);}
.m72_c01156{transform:matrix(0.190704,0.002861,-0.003750,0.249972,0,0);-ms-transform:matrix(0.190704,0.002861,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.190704,0.002861,-0.003750,0.249972,0,0);}
.m9a_c01156{transform:matrix(0.191407,0.003254,-0.004249,0.249964,0,0);-ms-transform:matrix(0.191407,0.003254,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.191407,0.003254,-0.004249,0.249964,0,0);}
.m98_c01156{transform:matrix(0.194167,0.003301,-0.004249,0.249964,0,0);-ms-transform:matrix(0.194167,0.003301,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.194167,0.003301,-0.004249,0.249964,0,0);}
.m51_c01156{transform:matrix(0.198258,0.002577,-0.003250,0.249979,0,0);-ms-transform:matrix(0.198258,0.002577,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.198258,0.002577,-0.003250,0.249979,0,0);}
.m2b_c01156{transform:matrix(0.199263,0.002590,-0.003250,0.249979,0,0);-ms-transform:matrix(0.199263,0.002590,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.199263,0.002590,-0.003250,0.249979,0,0);}
.m86_c01156{transform:matrix(0.199381,0.003389,-0.004249,0.249964,0,0);-ms-transform:matrix(0.199381,0.003389,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.199381,0.003389,-0.004249,0.249964,0,0);}
.m9b_c01156{transform:matrix(0.202271,0.003439,-0.004249,0.249964,0,0);-ms-transform:matrix(0.202271,0.003439,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.202271,0.003439,-0.004249,0.249964,0,0);}
.m96_c01156{transform:matrix(0.203776,0.003464,-0.004249,0.249964,0,0);-ms-transform:matrix(0.203776,0.003464,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.203776,0.003464,-0.004249,0.249964,0,0);}
.mae_c01156{transform:matrix(0.204381,0.004701,-0.005748,0.249934,0,0);-ms-transform:matrix(0.204381,0.004701,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.204381,0.004701,-0.005748,0.249934,0,0);}
.m1e_c01156{transform:matrix(0.204443,0.002658,-0.003250,0.249979,0,0);-ms-transform:matrix(0.204443,0.002658,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.204443,0.002658,-0.003250,0.249979,0,0);}
.m1c_c01156{transform:matrix(0.205093,0.002666,-0.003250,0.249979,0,0);-ms-transform:matrix(0.205093,0.002666,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.205093,0.002666,-0.003250,0.249979,0,0);}
.m1d_c01156{transform:matrix(0.206253,0.002681,-0.003250,0.249979,0,0);-ms-transform:matrix(0.206253,0.002681,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.206253,0.002681,-0.003250,0.249979,0,0);}
.m70_c01156{transform:matrix(0.206407,0.003096,-0.003750,0.249972,0,0);-ms-transform:matrix(0.206407,0.003096,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.206407,0.003096,-0.003750,0.249972,0,0);}
.m20_c01156{transform:matrix(0.206908,0.002690,-0.003250,0.249979,0,0);-ms-transform:matrix(0.206908,0.002690,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.206908,0.002690,-0.003250,0.249979,0,0);}
.m82_c01156{transform:matrix(0.207210,0.003523,-0.004249,0.249964,0,0);-ms-transform:matrix(0.207210,0.003523,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.207210,0.003523,-0.004249,0.249964,0,0);}
.m83_c01156{transform:matrix(0.208035,0.003537,-0.004249,0.249964,0,0);-ms-transform:matrix(0.208035,0.003537,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.208035,0.003537,-0.004249,0.249964,0,0);}
.mac_c01156{transform:matrix(0.209480,0.004818,-0.005748,0.249934,0,0);-ms-transform:matrix(0.209480,0.004818,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.209480,0.004818,-0.005748,0.249934,0,0);}
.mdb_c01156{transform:matrix(0.210240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210240,0.000000,0.000000,0.250000,0,0);}
.md1_c01156{transform:matrix(0.210950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210950,0.000000,0.000000,0.250000,0,0);}
.m9_c01156{transform:matrix(0.211839,0.003601,-0.004249,0.249964,0,0);-ms-transform:matrix(0.211839,0.003601,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.211839,0.003601,-0.004249,0.249964,0,0);}
.m23_c01156{transform:matrix(0.212167,0.002758,-0.003250,0.249979,0,0);-ms-transform:matrix(0.212167,0.002758,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.212167,0.002758,-0.003250,0.249979,0,0);}
.m40_c01156{transform:matrix(0.212482,0.002762,-0.003250,0.249979,0,0);-ms-transform:matrix(0.212482,0.002762,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.212482,0.002762,-0.003250,0.249979,0,0);}
.m6f_c01156{transform:matrix(0.212756,0.003191,-0.003750,0.249972,0,0);-ms-transform:matrix(0.212756,0.003191,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.212756,0.003191,-0.003750,0.249972,0,0);}
.m88_c01156{transform:matrix(0.213104,0.003623,-0.004249,0.249964,0,0);-ms-transform:matrix(0.213104,0.003623,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.213104,0.003623,-0.004249,0.249964,0,0);}
.m3c_c01156{transform:matrix(0.214647,0.002790,-0.003250,0.249979,0,0);-ms-transform:matrix(0.214647,0.002790,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.214647,0.002790,-0.003250,0.249979,0,0);}
.m26_c01156{transform:matrix(0.215042,0.002796,-0.003250,0.249979,0,0);-ms-transform:matrix(0.215042,0.002796,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.215042,0.002796,-0.003250,0.249979,0,0);}
.m22_c01156{transform:matrix(0.215127,0.002797,-0.003250,0.249979,0,0);-ms-transform:matrix(0.215127,0.002797,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.215127,0.002797,-0.003250,0.249979,0,0);}
.mb_c01156{transform:matrix(0.216759,0.003685,-0.004249,0.249964,0,0);-ms-transform:matrix(0.216759,0.003685,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.216759,0.003685,-0.004249,0.249964,0,0);}
.m6_c01156{transform:matrix(0.216964,0.003688,-0.004249,0.249964,0,0);-ms-transform:matrix(0.216964,0.003688,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.216964,0.003688,-0.004249,0.249964,0,0);}
.m7f_c01156{transform:matrix(0.217264,0.003693,-0.004249,0.249964,0,0);-ms-transform:matrix(0.217264,0.003693,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.217264,0.003693,-0.004249,0.249964,0,0);}
.m8f_c01156{transform:matrix(0.217739,0.003702,-0.004249,0.249964,0,0);-ms-transform:matrix(0.217739,0.003702,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.217739,0.003702,-0.004249,0.249964,0,0);}
.m36_c01156{transform:matrix(0.218237,0.002837,-0.003250,0.249979,0,0);-ms-transform:matrix(0.218237,0.002837,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.218237,0.002837,-0.003250,0.249979,0,0);}
.m6e_c01156{transform:matrix(0.219040,0.003286,-0.003750,0.249972,0,0);-ms-transform:matrix(0.219040,0.003286,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.219040,0.003286,-0.003750,0.249972,0,0);}
.m8b_c01156{transform:matrix(0.219283,0.003728,-0.004249,0.249964,0,0);-ms-transform:matrix(0.219283,0.003728,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.219283,0.003728,-0.004249,0.249964,0,0);}
.m71_c01156{transform:matrix(0.219660,0.003295,-0.003750,0.249972,0,0);-ms-transform:matrix(0.219660,0.003295,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.219660,0.003295,-0.003750,0.249972,0,0);}
.m90_c01156{transform:matrix(0.219988,0.003740,-0.004249,0.249964,0,0);-ms-transform:matrix(0.219988,0.003740,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.219988,0.003740,-0.004249,0.249964,0,0);}
.m9c_c01156{transform:matrix(0.220128,0.003742,-0.004249,0.249964,0,0);-ms-transform:matrix(0.220128,0.003742,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.220128,0.003742,-0.004249,0.249964,0,0);}
.m1a_c01156{transform:matrix(0.220536,0.002867,-0.003250,0.249979,0,0);-ms-transform:matrix(0.220536,0.002867,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.220536,0.002867,-0.003250,0.249979,0,0);}
.m97_c01156{transform:matrix(0.220608,0.003750,-0.004249,0.249964,0,0);-ms-transform:matrix(0.220608,0.003750,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.220608,0.003750,-0.004249,0.249964,0,0);}
.m8d_c01156{transform:matrix(0.220858,0.003755,-0.004249,0.249964,0,0);-ms-transform:matrix(0.220858,0.003755,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.220858,0.003755,-0.004249,0.249964,0,0);}
.m4f_c01156{transform:matrix(0.220881,0.002871,-0.003250,0.249979,0,0);-ms-transform:matrix(0.220881,0.002871,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.220881,0.002871,-0.003250,0.249979,0,0);}
.m73_c01156{transform:matrix(0.221155,0.003317,-0.003750,0.249972,0,0);-ms-transform:matrix(0.221155,0.003317,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.221155,0.003317,-0.003750,0.249972,0,0);}
.m3_c01156{transform:matrix(0.221328,0.003763,-0.004249,0.249964,0,0);-ms-transform:matrix(0.221328,0.003763,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.221328,0.003763,-0.004249,0.249964,0,0);}
.m95_c01156{transform:matrix(0.221403,0.003764,-0.004249,0.249964,0,0);-ms-transform:matrix(0.221403,0.003764,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.221403,0.003764,-0.004249,0.249964,0,0);}
.m4e_c01156{transform:matrix(0.221866,0.002884,-0.003250,0.249979,0,0);-ms-transform:matrix(0.221866,0.002884,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.221866,0.002884,-0.003250,0.249979,0,0);}
.m8c_c01156{transform:matrix(0.222278,0.003779,-0.004249,0.249964,0,0);-ms-transform:matrix(0.222278,0.003779,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.222278,0.003779,-0.004249,0.249964,0,0);}
.m7e_c01156{transform:matrix(0.222528,0.003783,-0.004249,0.249964,0,0);-ms-transform:matrix(0.222528,0.003783,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.222528,0.003783,-0.004249,0.249964,0,0);}
.m31_c01156{transform:matrix(0.222826,0.002897,-0.003250,0.249979,0,0);-ms-transform:matrix(0.222826,0.002897,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.222826,0.002897,-0.003250,0.249979,0,0);}
.m2d_c01156{transform:matrix(0.223296,0.002903,-0.003250,0.249979,0,0);-ms-transform:matrix(0.223296,0.002903,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.223296,0.002903,-0.003250,0.249979,0,0);}
.m99_c01156{transform:matrix(0.223703,0.003803,-0.004249,0.249964,0,0);-ms-transform:matrix(0.223703,0.003803,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.223703,0.003803,-0.004249,0.249964,0,0);}
.mb1_c01156{transform:matrix(0.224596,0.005166,-0.005748,0.249934,0,0);-ms-transform:matrix(0.224596,0.005166,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.224596,0.005166,-0.005748,0.249934,0,0);}
.m6a_c01156{transform:matrix(0.225495,0.003382,-0.003750,0.249972,0,0);-ms-transform:matrix(0.225495,0.003382,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.225495,0.003382,-0.003750,0.249972,0,0);}
.m21_c01156{transform:matrix(0.225716,0.002934,-0.003250,0.249979,0,0);-ms-transform:matrix(0.225716,0.002934,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.225716,0.002934,-0.003250,0.249979,0,0);}
.m1f_c01156{transform:matrix(0.226356,0.002943,-0.003250,0.249979,0,0);-ms-transform:matrix(0.226356,0.002943,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.226356,0.002943,-0.003250,0.249979,0,0);}
.mbf_c01156{transform:matrix(0.226928,0.004085,-0.004499,0.249960,0,0);-ms-transform:matrix(0.226928,0.004085,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.226928,0.004085,-0.004499,0.249960,0,0);}
.m61_c01156{transform:matrix(0.227136,0.002953,-0.003250,0.249979,0,0);-ms-transform:matrix(0.227136,0.002953,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.227136,0.002953,-0.003250,0.249979,0,0);}
.m6c_c01156{transform:matrix(0.228579,0.003429,-0.003750,0.249972,0,0);-ms-transform:matrix(0.228579,0.003429,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.228579,0.003429,-0.003750,0.249972,0,0);}
.m52_c01156{transform:matrix(0.229186,0.002979,-0.003250,0.249979,0,0);-ms-transform:matrix(0.229186,0.002979,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.229186,0.002979,-0.003250,0.249979,0,0);}
.m6b_c01156{transform:matrix(0.229749,0.003446,-0.003750,0.249972,0,0);-ms-transform:matrix(0.229749,0.003446,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.229749,0.003446,-0.003750,0.249972,0,0);}
.m2e_c01156{transform:matrix(0.229756,0.002987,-0.003250,0.249979,0,0);-ms-transform:matrix(0.229756,0.002987,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.229756,0.002987,-0.003250,0.249979,0,0);}
.m7_c01156{transform:matrix(0.230937,0.003926,-0.004249,0.249964,0,0);-ms-transform:matrix(0.230937,0.003926,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.230937,0.003926,-0.004249,0.249964,0,0);}
.mc_c01156{transform:matrix(0.231667,0.003938,-0.004249,0.249964,0,0);-ms-transform:matrix(0.231667,0.003938,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.231667,0.003938,-0.004249,0.249964,0,0);}
.m3d_c01156{transform:matrix(0.232335,0.003020,-0.003250,0.249979,0,0);-ms-transform:matrix(0.232335,0.003020,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.232335,0.003020,-0.003250,0.249979,0,0);}
.m0_c01156{transform:matrix(0.232975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232975,0.000000,0.000000,0.250000,0,0);}
.m6d_c01156{transform:matrix(0.233304,0.003500,-0.003750,0.249972,0,0);-ms-transform:matrix(0.233304,0.003500,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.233304,0.003500,-0.003750,0.249972,0,0);}
.mb3_c01156{transform:matrix(0.234298,0.005389,-0.005748,0.249934,0,0);-ms-transform:matrix(0.234298,0.005389,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.234298,0.005389,-0.005748,0.249934,0,0);}
.m29_c01156{transform:matrix(0.235650,0.003063,-0.003250,0.249979,0,0);-ms-transform:matrix(0.235650,0.003063,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.235650,0.003063,-0.003250,0.249979,0,0);}
.m89_c01156{transform:matrix(0.236256,0.004016,-0.004249,0.249964,0,0);-ms-transform:matrix(0.236256,0.004016,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.236256,0.004016,-0.004249,0.249964,0,0);}
.m2_c01156{transform:matrix(0.236281,0.004017,-0.004249,0.249964,0,0);-ms-transform:matrix(0.236281,0.004017,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.236281,0.004017,-0.004249,0.249964,0,0);}
.m60_c01156{transform:matrix(0.236460,0.003074,-0.003250,0.249979,0,0);-ms-transform:matrix(0.236460,0.003074,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.236460,0.003074,-0.003250,0.249979,0,0);}
.m4c_c01156{transform:matrix(0.236785,0.003078,-0.003250,0.249979,0,0);-ms-transform:matrix(0.236785,0.003078,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.236785,0.003078,-0.003250,0.249979,0,0);}
.md4_c01156{transform:matrix(0.237170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237170,0.000000,0.000000,0.250000,0,0);}
.m3f_c01156{transform:matrix(0.237405,0.003086,-0.003250,0.249979,0,0);-ms-transform:matrix(0.237405,0.003086,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.237405,0.003086,-0.003250,0.249979,0,0);}
.m68_c01156{transform:matrix(0.237678,0.003565,-0.003750,0.249972,0,0);-ms-transform:matrix(0.237678,0.003565,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.237678,0.003565,-0.003750,0.249972,0,0);}
.m1_c01156{transform:matrix(0.237701,0.004041,-0.004249,0.249964,0,0);-ms-transform:matrix(0.237701,0.004041,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.237701,0.004041,-0.004249,0.249964,0,0);}
.m47_c01156{transform:matrix(0.238005,0.003094,-0.003250,0.249979,0,0);-ms-transform:matrix(0.238005,0.003094,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.238005,0.003094,-0.003250,0.249979,0,0);}
.mc5_c01156{transform:matrix(0.238106,0.004286,-0.004499,0.249960,0,0);-ms-transform:matrix(0.238106,0.004286,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.238106,0.004286,-0.004499,0.249960,0,0);}
.m7c_c01156{transform:matrix(0.238111,0.004048,-0.004249,0.249964,0,0);-ms-transform:matrix(0.238111,0.004048,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.238111,0.004048,-0.004249,0.249964,0,0);}
.m80_c01156{transform:matrix(0.238166,0.004049,-0.004249,0.249964,0,0);-ms-transform:matrix(0.238166,0.004049,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.238166,0.004049,-0.004249,0.249964,0,0);}
.m25_c01156{transform:matrix(0.238370,0.003099,-0.003250,0.249979,0,0);-ms-transform:matrix(0.238370,0.003099,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.238370,0.003099,-0.003250,0.249979,0,0);}
.m3a_c01156{transform:matrix(0.238425,0.003100,-0.003250,0.249979,0,0);-ms-transform:matrix(0.238425,0.003100,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.238425,0.003100,-0.003250,0.249979,0,0);}
.ma0_c01156{transform:matrix(0.238542,0.005486,-0.005748,0.249934,0,0);-ms-transform:matrix(0.238542,0.005486,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.238542,0.005486,-0.005748,0.249934,0,0);}
.m49_c01156{transform:matrix(0.238585,0.003102,-0.003250,0.249979,0,0);-ms-transform:matrix(0.238585,0.003102,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.238585,0.003102,-0.003250,0.249979,0,0);}
.m33_c01156{transform:matrix(0.238980,0.003107,-0.003250,0.249979,0,0);-ms-transform:matrix(0.238980,0.003107,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.238980,0.003107,-0.003250,0.249979,0,0);}
.m48_c01156{transform:matrix(0.239105,0.003108,-0.003250,0.249979,0,0);-ms-transform:matrix(0.239105,0.003108,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.239105,0.003108,-0.003250,0.249979,0,0);}
.mad_c01156{transform:matrix(0.239272,0.005503,-0.005748,0.249934,0,0);-ms-transform:matrix(0.239272,0.005503,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.239272,0.005503,-0.005748,0.249934,0,0);}
.m18_c01156{transform:matrix(0.239275,0.003111,-0.003250,0.249979,0,0);-ms-transform:matrix(0.239275,0.003111,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.239275,0.003111,-0.003250,0.249979,0,0);}
.m24_c01156{transform:matrix(0.239370,0.003112,-0.003250,0.249979,0,0);-ms-transform:matrix(0.239370,0.003112,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.239370,0.003112,-0.003250,0.249979,0,0);}
.m10_c01156{transform:matrix(0.239525,0.003114,-0.003250,0.249979,0,0);-ms-transform:matrix(0.239525,0.003114,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.239525,0.003114,-0.003250,0.249979,0,0);}
.m85_c01156{transform:matrix(0.239615,0.004073,-0.004249,0.249964,0,0);-ms-transform:matrix(0.239615,0.004073,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.239615,0.004073,-0.004249,0.249964,0,0);}
.m1b_c01156{transform:matrix(0.239630,0.003115,-0.003250,0.249979,0,0);-ms-transform:matrix(0.239630,0.003115,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.239630,0.003115,-0.003250,0.249979,0,0);}
.mc8_c01156{transform:matrix(0.239871,0.004318,-0.004499,0.249960,0,0);-ms-transform:matrix(0.239871,0.004318,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.239871,0.004318,-0.004499,0.249960,0,0);}
.m13_c01156{transform:matrix(0.239890,0.003119,-0.003250,0.249979,0,0);-ms-transform:matrix(0.239890,0.003119,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.239890,0.003119,-0.003250,0.249979,0,0);}
.m45_c01156{transform:matrix(0.240420,0.003125,-0.003250,0.249979,0,0);-ms-transform:matrix(0.240420,0.003125,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.240420,0.003125,-0.003250,0.249979,0,0);}
.m5d_c01156{transform:matrix(0.240815,0.003131,-0.003250,0.249979,0,0);-ms-transform:matrix(0.240815,0.003131,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.240815,0.003131,-0.003250,0.249979,0,0);}
.mc0_c01156{transform:matrix(0.241261,0.004343,-0.004499,0.249960,0,0);-ms-transform:matrix(0.241261,0.004343,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.241261,0.004343,-0.004499,0.249960,0,0);}
.m32_c01156{transform:matrix(0.241360,0.003138,-0.003250,0.249979,0,0);-ms-transform:matrix(0.241360,0.003138,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.241360,0.003138,-0.003250,0.249979,0,0);}
.ma4_c01156{transform:matrix(0.242481,0.005577,-0.005748,0.249934,0,0);-ms-transform:matrix(0.242481,0.005577,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.242481,0.005577,-0.005748,0.249934,0,0);}
.ma1_c01156{transform:matrix(0.243111,0.005592,-0.005748,0.249934,0,0);-ms-transform:matrix(0.243111,0.005592,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.243111,0.005592,-0.005748,0.249934,0,0);}
.mf_c01156{transform:matrix(0.243354,0.003164,-0.003250,0.249979,0,0);-ms-transform:matrix(0.243354,0.003164,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.243354,0.003164,-0.003250,0.249979,0,0);}
.m84_c01156{transform:matrix(0.243815,0.004145,-0.004249,0.249964,0,0);-ms-transform:matrix(0.243815,0.004145,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.243815,0.004145,-0.004249,0.249964,0,0);}
.m34_c01156{transform:matrix(0.243894,0.003171,-0.003250,0.249979,0,0);-ms-transform:matrix(0.243894,0.003171,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.243894,0.003171,-0.003250,0.249979,0,0);}
.m81_c01156{transform:matrix(0.244025,0.004148,-0.004249,0.249964,0,0);-ms-transform:matrix(0.244025,0.004148,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.244025,0.004148,-0.004249,0.249964,0,0);}
.mc2_c01156{transform:matrix(0.244215,0.004396,-0.004499,0.249960,0,0);-ms-transform:matrix(0.244215,0.004396,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.244215,0.004396,-0.004499,0.249960,0,0);}
.m37_c01156{transform:matrix(0.244249,0.003175,-0.003250,0.249979,0,0);-ms-transform:matrix(0.244249,0.003175,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.244249,0.003175,-0.003250,0.249979,0,0);}
.mbe_c01156{transform:matrix(0.244350,0.004398,-0.004499,0.249960,0,0);-ms-transform:matrix(0.244350,0.004398,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.244350,0.004398,-0.004499,0.249960,0,0);}
.m27_c01156{transform:matrix(0.244369,0.003177,-0.003250,0.249979,0,0);-ms-transform:matrix(0.244369,0.003177,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.244369,0.003177,-0.003250,0.249979,0,0);}
.m44_c01156{transform:matrix(0.244534,0.003179,-0.003250,0.249979,0,0);-ms-transform:matrix(0.244534,0.003179,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.244534,0.003179,-0.003250,0.249979,0,0);}
.m28_c01156{transform:matrix(0.244584,0.003180,-0.003250,0.249979,0,0);-ms-transform:matrix(0.244584,0.003180,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.244584,0.003180,-0.003250,0.249979,0,0);}
.m5c_c01156{transform:matrix(0.244749,0.003182,-0.003250,0.249979,0,0);-ms-transform:matrix(0.244749,0.003182,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.244749,0.003182,-0.003250,0.249979,0,0);}
.m8e_c01156{transform:matrix(0.245170,0.004168,-0.004249,0.249964,0,0);-ms-transform:matrix(0.245170,0.004168,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.245170,0.004168,-0.004249,0.249964,0,0);}
.m50_c01156{transform:matrix(0.245204,0.003188,-0.003250,0.249979,0,0);-ms-transform:matrix(0.245204,0.003188,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.245204,0.003188,-0.003250,0.249979,0,0);}
.m56_c01156{transform:matrix(0.245439,0.003191,-0.003250,0.249979,0,0);-ms-transform:matrix(0.245439,0.003191,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.245439,0.003191,-0.003250,0.249979,0,0);}
.m2f_c01156{transform:matrix(0.245999,0.003198,-0.003250,0.249979,0,0);-ms-transform:matrix(0.245999,0.003198,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.245999,0.003198,-0.003250,0.249979,0,0);}
.m46_c01156{transform:matrix(0.246184,0.003200,-0.003250,0.249979,0,0);-ms-transform:matrix(0.246184,0.003200,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.246184,0.003200,-0.003250,0.249979,0,0);}
.m65_c01156{transform:matrix(0.246299,0.003202,-0.003250,0.249979,0,0);-ms-transform:matrix(0.246299,0.003202,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.246299,0.003202,-0.003250,0.249979,0,0);}
.m55_c01156{transform:matrix(0.246639,0.003206,-0.003250,0.249979,0,0);-ms-transform:matrix(0.246639,0.003206,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.246639,0.003206,-0.003250,0.249979,0,0);}
.m92_c01156{transform:matrix(0.247119,0.004201,-0.004249,0.249964,0,0);-ms-transform:matrix(0.247119,0.004201,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.247119,0.004201,-0.004249,0.249964,0,0);}
.m91_c01156{transform:matrix(0.247124,0.004201,-0.004249,0.249964,0,0);-ms-transform:matrix(0.247124,0.004201,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.247124,0.004201,-0.004249,0.249964,0,0);}
.mc3_c01156{transform:matrix(0.247360,0.004452,-0.004499,0.249960,0,0);-ms-transform:matrix(0.247360,0.004452,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.247360,0.004452,-0.004499,0.249960,0,0);}
.m30_c01156{transform:matrix(0.247374,0.003216,-0.003250,0.249979,0,0);-ms-transform:matrix(0.247374,0.003216,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.247374,0.003216,-0.003250,0.249979,0,0);}
.mb6_c01156{transform:matrix(0.247485,0.005692,-0.005748,0.249934,0,0);-ms-transform:matrix(0.247485,0.005692,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.247485,0.005692,-0.005748,0.249934,0,0);}
.m16_c01156{transform:matrix(0.247734,0.003221,-0.003250,0.249979,0,0);-ms-transform:matrix(0.247734,0.003221,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.247734,0.003221,-0.003250,0.249979,0,0);}
.m8_c01156{transform:matrix(0.248089,0.004218,-0.004249,0.249964,0,0);-ms-transform:matrix(0.248089,0.004218,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.248089,0.004218,-0.004249,0.249964,0,0);}
.m2a_c01156{transform:matrix(0.248694,0.003233,-0.003250,0.249979,0,0);-ms-transform:matrix(0.248694,0.003233,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.248694,0.003233,-0.003250,0.249979,0,0);}
.mb0_c01156{transform:matrix(0.248784,0.005722,-0.005748,0.249934,0,0);-ms-transform:matrix(0.248784,0.005722,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.248784,0.005722,-0.005748,0.249934,0,0);}
.m63_c01156{transform:matrix(0.249284,0.003241,-0.003250,0.249979,0,0);-ms-transform:matrix(0.249284,0.003241,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.249284,0.003241,-0.003250,0.249979,0,0);}
.ma8_c01156{transform:matrix(0.249599,0.005741,-0.005748,0.249934,0,0);-ms-transform:matrix(0.249599,0.005741,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.249599,0.005741,-0.005748,0.249934,0,0);}
.md_c01156{transform:matrix(0.250234,0.004254,-0.004249,0.249964,0,0);-ms-transform:matrix(0.250234,0.004254,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.250234,0.004254,-0.004249,0.249964,0,0);}
.m7d_c01156{transform:matrix(0.250274,0.004255,-0.004249,0.249964,0,0);-ms-transform:matrix(0.250274,0.004255,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.250274,0.004255,-0.004249,0.249964,0,0);}
.m39_c01156{transform:matrix(0.250464,0.003256,-0.003250,0.249979,0,0);-ms-transform:matrix(0.250464,0.003256,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.250464,0.003256,-0.003250,0.249979,0,0);}
.m66_c01156{transform:matrix(0.250614,0.003258,-0.003250,0.249979,0,0);-ms-transform:matrix(0.250614,0.003258,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.250614,0.003258,-0.003250,0.249979,0,0);}
.m41_c01156{transform:matrix(0.251104,0.003264,-0.003250,0.249979,0,0);-ms-transform:matrix(0.251104,0.003264,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.251104,0.003264,-0.003250,0.249979,0,0);}
.m5_c01156{transform:matrix(0.251374,0.004273,-0.004249,0.249964,0,0);-ms-transform:matrix(0.251374,0.004273,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.251374,0.004273,-0.004249,0.249964,0,0);}
.m4b_c01156{transform:matrix(0.251419,0.003268,-0.003250,0.249979,0,0);-ms-transform:matrix(0.251419,0.003268,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.251419,0.003268,-0.003250,0.249979,0,0);}
.m5b_c01156{transform:matrix(0.251719,0.003272,-0.003250,0.249979,0,0);-ms-transform:matrix(0.251719,0.003272,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.251719,0.003272,-0.003250,0.249979,0,0);}
.m5f_c01156{transform:matrix(0.252014,0.003276,-0.003250,0.249979,0,0);-ms-transform:matrix(0.252014,0.003276,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.252014,0.003276,-0.003250,0.249979,0,0);}
.m3b_c01156{transform:matrix(0.252329,0.003280,-0.003250,0.249979,0,0);-ms-transform:matrix(0.252329,0.003280,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.252329,0.003280,-0.003250,0.249979,0,0);}
.m54_c01156{transform:matrix(0.252409,0.003281,-0.003250,0.249979,0,0);-ms-transform:matrix(0.252409,0.003281,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.252409,0.003281,-0.003250,0.249979,0,0);}
.m62_c01156{transform:matrix(0.252649,0.003284,-0.003250,0.249979,0,0);-ms-transform:matrix(0.252649,0.003284,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.252649,0.003284,-0.003250,0.249979,0,0);}
.ma_c01156{transform:matrix(0.252688,0.004296,-0.004249,0.249964,0,0);-ms-transform:matrix(0.252688,0.004296,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.252688,0.004296,-0.004249,0.249964,0,0);}
.mc6_c01156{transform:matrix(0.253064,0.004555,-0.004499,0.249960,0,0);-ms-transform:matrix(0.253064,0.004555,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.253064,0.004555,-0.004499,0.249960,0,0);}
.ma2_c01156{transform:matrix(0.253323,0.005826,-0.005748,0.249934,0,0);-ms-transform:matrix(0.253323,0.005826,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.253323,0.005826,-0.005748,0.249934,0,0);}
.m2c_c01156{transform:matrix(0.253354,0.003294,-0.003250,0.249979,0,0);-ms-transform:matrix(0.253354,0.003294,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.253354,0.003294,-0.003250,0.249979,0,0);}
.me_c01156{transform:matrix(0.254753,0.003312,-0.003250,0.249979,0,0);-ms-transform:matrix(0.254753,0.003312,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.254753,0.003312,-0.003250,0.249979,0,0);}
.maf_c01156{transform:matrix(0.255193,0.005869,-0.005748,0.249934,0,0);-ms-transform:matrix(0.255193,0.005869,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.255193,0.005869,-0.005748,0.249934,0,0);}
.maa_c01156{transform:matrix(0.255647,0.005880,-0.005748,0.249934,0,0);-ms-transform:matrix(0.255647,0.005880,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.255647,0.005880,-0.005748,0.249934,0,0);}
.m74_c01156{transform:matrix(0.255853,0.004350,-0.004249,0.249964,0,0);-ms-transform:matrix(0.255853,0.004350,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.255853,0.004350,-0.004249,0.249964,0,0);}
.mb8_c01156{transform:matrix(0.255992,0.005888,-0.005748,0.249934,0,0);-ms-transform:matrix(0.255992,0.005888,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.255992,0.005888,-0.005748,0.249934,0,0);}
.m15_c01156{transform:matrix(0.256123,0.003330,-0.003250,0.249979,0,0);-ms-transform:matrix(0.256123,0.003330,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.256123,0.003330,-0.003250,0.249979,0,0);}
.ma7_c01156{transform:matrix(0.256607,0.005902,-0.005748,0.249934,0,0);-ms-transform:matrix(0.256607,0.005902,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.256607,0.005902,-0.005748,0.249934,0,0);}
.m35_c01156{transform:matrix(0.256753,0.003338,-0.003250,0.249979,0,0);-ms-transform:matrix(0.256753,0.003338,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.256753,0.003338,-0.003250,0.249979,0,0);}
.m53_c01156{transform:matrix(0.257408,0.003346,-0.003250,0.249979,0,0);-ms-transform:matrix(0.257408,0.003346,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.257408,0.003346,-0.003250,0.249979,0,0);}
.mc9_c01156{transform:matrix(0.257553,0.004636,-0.004499,0.249960,0,0);-ms-transform:matrix(0.257553,0.004636,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.257553,0.004636,-0.004499,0.249960,0,0);}
.mb4_c01156{transform:matrix(0.257657,0.005926,-0.005748,0.249934,0,0);-ms-transform:matrix(0.257657,0.005926,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.257657,0.005926,-0.005748,0.249934,0,0);}
.m9f_c01156{transform:matrix(0.257707,0.005927,-0.005748,0.249934,0,0);-ms-transform:matrix(0.257707,0.005927,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.257707,0.005927,-0.005748,0.249934,0,0);}
.m8a_c01156{transform:matrix(0.258458,0.004394,-0.004249,0.249964,0,0);-ms-transform:matrix(0.258458,0.004394,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.258458,0.004394,-0.004249,0.249964,0,0);}
.md6_c01156{transform:matrix(0.258940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258940,0.000000,0.000000,0.250000,0,0);}
.mcb_c01156{transform:matrix(0.260163,0.004683,-0.004499,0.249960,0,0);-ms-transform:matrix(0.260163,0.004683,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.260163,0.004683,-0.004499,0.249960,0,0);}
.m4a_c01156{transform:matrix(0.260463,0.003386,-0.003250,0.249979,0,0);-ms-transform:matrix(0.260463,0.003386,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.260463,0.003386,-0.003250,0.249979,0,0);}
.m9d_c01156{transform:matrix(0.260701,0.005996,-0.005748,0.249934,0,0);-ms-transform:matrix(0.260701,0.005996,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.260701,0.005996,-0.005748,0.249934,0,0);}
.m3e_c01156{transform:matrix(0.260858,0.003391,-0.003250,0.249979,0,0);-ms-transform:matrix(0.260858,0.003391,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.260858,0.003391,-0.003250,0.249979,0,0);}
.m87_c01156{transform:matrix(0.262037,0.004455,-0.004249,0.249964,0,0);-ms-transform:matrix(0.262037,0.004455,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.262037,0.004455,-0.004249,0.249964,0,0);}
.m64_c01156{transform:matrix(0.262413,0.003411,-0.003250,0.249979,0,0);-ms-transform:matrix(0.262413,0.003411,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.262413,0.003411,-0.003250,0.249979,0,0);}
.ma5_c01156{transform:matrix(0.262421,0.006036,-0.005748,0.249934,0,0);-ms-transform:matrix(0.262421,0.006036,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.262421,0.006036,-0.005748,0.249934,0,0);}
.m42_c01156{transform:matrix(0.262878,0.003417,-0.003250,0.249979,0,0);-ms-transform:matrix(0.262878,0.003417,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.262878,0.003417,-0.003250,0.249979,0,0);}
.m57_c01156{transform:matrix(0.263003,0.003419,-0.003250,0.249979,0,0);-ms-transform:matrix(0.263003,0.003419,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.263003,0.003419,-0.003250,0.249979,0,0);}
.mb5_c01156{transform:matrix(0.264060,0.006073,-0.005748,0.249934,0,0);-ms-transform:matrix(0.264060,0.006073,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.264060,0.006073,-0.005748,0.249934,0,0);}
.m76_c01156{transform:matrix(0.264662,0.004499,-0.004249,0.249964,0,0);-ms-transform:matrix(0.264662,0.004499,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.264662,0.004499,-0.004249,0.249964,0,0);}
.mb7_c01156{transform:matrix(0.264910,0.006093,-0.005748,0.249934,0,0);-ms-transform:matrix(0.264910,0.006093,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.264910,0.006093,-0.005748,0.249934,0,0);}
.m59_c01156{transform:matrix(0.264968,0.003445,-0.003250,0.249979,0,0);-ms-transform:matrix(0.264968,0.003445,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.264968,0.003445,-0.003250,0.249979,0,0);}
.m17_c01156{transform:matrix(0.265553,0.003452,-0.003250,0.249979,0,0);-ms-transform:matrix(0.265553,0.003452,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.265553,0.003452,-0.003250,0.249979,0,0);}
.mbb_c01156{transform:matrix(0.265570,0.006108,-0.005748,0.249934,0,0);-ms-transform:matrix(0.265570,0.006108,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.265570,0.006108,-0.005748,0.249934,0,0);}
.m75_c01156{transform:matrix(0.266317,0.004527,-0.004249,0.249964,0,0);-ms-transform:matrix(0.266317,0.004527,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.266317,0.004527,-0.004249,0.249964,0,0);}
.m4d_c01156{transform:matrix(0.266572,0.003465,-0.003250,0.249979,0,0);-ms-transform:matrix(0.266572,0.003465,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.266572,0.003465,-0.003250,0.249979,0,0);}
.m58_c01156{transform:matrix(0.266922,0.003470,-0.003250,0.249979,0,0);-ms-transform:matrix(0.266922,0.003470,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.266922,0.003470,-0.003250,0.249979,0,0);}
.m7b_c01156{transform:matrix(0.268186,0.004559,-0.004249,0.249964,0,0);-ms-transform:matrix(0.268186,0.004559,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.268186,0.004559,-0.004249,0.249964,0,0);}
.m9e_c01156{transform:matrix(0.268309,0.006171,-0.005748,0.249934,0,0);-ms-transform:matrix(0.268309,0.006171,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.268309,0.006171,-0.005748,0.249934,0,0);}
.mc1_c01156{transform:matrix(0.269216,0.004846,-0.004499,0.249960,0,0);-ms-transform:matrix(0.269216,0.004846,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.269216,0.004846,-0.004499,0.249960,0,0);}
.m19_c01156{transform:matrix(0.270557,0.003517,-0.003250,0.249979,0,0);-ms-transform:matrix(0.270557,0.003517,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.270557,0.003517,-0.003250,0.249979,0,0);}
.mc4_c01156{transform:matrix(0.271261,0.004883,-0.004499,0.249960,0,0);-ms-transform:matrix(0.271261,0.004883,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.271261,0.004883,-0.004499,0.249960,0,0);}
.m78_c01156{transform:matrix(0.272036,0.004625,-0.004249,0.249964,0,0);-ms-transform:matrix(0.272036,0.004625,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.272036,0.004625,-0.004249,0.249964,0,0);}
.m5e_c01156{transform:matrix(0.272307,0.003540,-0.003250,0.249979,0,0);-ms-transform:matrix(0.272307,0.003540,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.272307,0.003540,-0.003250,0.249979,0,0);}
.m79_c01156{transform:matrix(0.274460,0.004666,-0.004249,0.249964,0,0);-ms-transform:matrix(0.274460,0.004666,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.274460,0.004666,-0.004249,0.249964,0,0);}
.m5a_c01156{transform:matrix(0.275072,0.003576,-0.003250,0.249979,0,0);-ms-transform:matrix(0.275072,0.003576,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.275072,0.003576,-0.003250,0.249979,0,0);}
.mb9_c01156{transform:matrix(0.275902,0.006346,-0.005748,0.249934,0,0);-ms-transform:matrix(0.275902,0.006346,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.275902,0.006346,-0.005748,0.249934,0,0);}
.m77_c01156{transform:matrix(0.276170,0.004695,-0.004249,0.249964,0,0);-ms-transform:matrix(0.276170,0.004695,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.276170,0.004695,-0.004249,0.249964,0,0);}
.m11_c01156{transform:matrix(0.276742,0.003598,-0.003250,0.249979,0,0);-ms-transform:matrix(0.276742,0.003598,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.276742,0.003598,-0.003250,0.249979,0,0);}
.mc7_c01156{transform:matrix(0.276955,0.004985,-0.004499,0.249960,0,0);-ms-transform:matrix(0.276955,0.004985,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.276955,0.004985,-0.004499,0.249960,0,0);}
.m7a_c01156{transform:matrix(0.277140,0.004711,-0.004249,0.249964,0,0);-ms-transform:matrix(0.277140,0.004711,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.277140,0.004711,-0.004249,0.249964,0,0);}
.mba_c01156{transform:matrix(0.277227,0.006376,-0.005748,0.249934,0,0);-ms-transform:matrix(0.277227,0.006376,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.277227,0.006376,-0.005748,0.249934,0,0);}
.mbc_c01156{transform:matrix(0.278951,0.006416,-0.005748,0.249934,0,0);-ms-transform:matrix(0.278951,0.006416,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.278951,0.006416,-0.005748,0.249934,0,0);}
.mbd_c01156{transform:matrix(0.279026,0.006418,-0.005748,0.249934,0,0);-ms-transform:matrix(0.279026,0.006418,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.279026,0.006418,-0.005748,0.249934,0,0);}
.m12_c01156{transform:matrix(0.280846,0.003651,-0.003250,0.249979,0,0);-ms-transform:matrix(0.280846,0.003651,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.280846,0.003651,-0.003250,0.249979,0,0);}
.ma3_c01156{transform:matrix(0.281895,0.006484,-0.005748,0.249934,0,0);-ms-transform:matrix(0.281895,0.006484,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.281895,0.006484,-0.005748,0.249934,0,0);}
.mca_c01156{transform:matrix(0.283419,0.005102,-0.004499,0.249960,0,0);-ms-transform:matrix(0.283419,0.005102,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.283419,0.005102,-0.004499,0.249960,0,0);}
.m14_c01156{transform:matrix(0.284091,0.003693,-0.003250,0.249979,0,0);-ms-transform:matrix(0.284091,0.003693,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.284091,0.003693,-0.003250,0.249979,0,0);}
.m43_c01156{transform:matrix(0.287196,0.003734,-0.003250,0.249979,0,0);-ms-transform:matrix(0.287196,0.003734,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.287196,0.003734,-0.003250,0.249979,0,0);}
.mde_c01156{transform:matrix(0.294705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294705,0.000000,0.000000,0.250000,0,0);}
.mdd_c01156{transform:matrix(0.303725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303725,0.000000,0.000000,0.250000,0,0);}
.ma6_c01156{transform:matrix(0.308313,0.007091,-0.005748,0.249934,0,0);-ms-transform:matrix(0.308313,0.007091,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.308313,0.007091,-0.005748,0.249934,0,0);}
.mce_c01156{transform:matrix(0.330765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330765,0.000000,0.000000,0.250000,0,0);}
.md9_c01156{transform:matrix(0.342055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342055,0.000000,0.000000,0.250000,0,0);}
.mab_c01156{transform:matrix(0.360890,0.008300,-0.005748,0.249934,0,0);-ms-transform:matrix(0.360890,0.008300,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.360890,0.008300,-0.005748,0.249934,0,0);}
.mcc_c01156{transform:matrix(0.368795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368795,0.000000,0.000000,0.250000,0,0);}
.md3_c01156{transform:matrix(0.404755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404755,0.000000,0.000000,0.250000,0,0);}
.m67_c01156{transform:matrix(0.437755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437755,0.000000,0.000000,0.250000,0,0);}
.mcd_c01156{transform:matrix(0.451000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451000,0.000000,0.000000,0.250000,0,0);}
.mb2_c01156{transform:matrix(0.542846,0.012485,-0.005748,0.249934,0,0);-ms-transform:matrix(0.542846,0.012485,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.542846,0.012485,-0.005748,0.249934,0,0);}
.mdf_c01156{transform:matrix(0.715680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.715680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.715680,0.000000,0.000000,0.250000,0,0);}
.md8_c01156{transform:matrix(0.816365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.816365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.816365,0.000000,0.000000,0.250000,0,0);}
.md2_c01156{transform:matrix(0.890505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.890505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.890505,0.000000,0.000000,0.250000,0,0);}
.mda_c01156{transform:matrix(1.074665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.074665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.074665,0.000000,0.000000,0.250000,0,0);}
.mcf_c01156{transform:matrix(1.129890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.129890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.129890,0.000000,0.000000,0.250000,0,0);}
.md7_c01156{transform:matrix(2.170830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.170830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.170830,0.000000,0.000000,0.250000,0,0);}
.m4_c01156{transform:matrix(3.168222,0.053860,-0.004249,0.249964,0,0);-ms-transform:matrix(3.168222,0.053860,-0.004249,0.249964,0,0);-webkit-transform:matrix(3.168222,0.053860,-0.004249,0.249964,0,0);}
.mdc_c01156{transform:matrix(5.747370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.747370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.747370,0.000000,0.000000,0.250000,0,0);}
.v0_c01156{vertical-align:0.000000px;}
.ls0_c01156{letter-spacing:0.000000px;}
.sc__c01156{text-shadow:none;}
.sc0_c01156{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__c01156{-webkit-text-stroke:0px transparent;}
.sc0_c01156{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01156{word-spacing:0.000000px;}
.fc0_c01156{color:transparent;}
.fse_c01156{font-size:18.000000px;}
.fs6_c01156{font-size:42.000000px;}
.fs3_c01156{font-size:72.006084px;}
.fs8_c01156{font-size:72.010403px;}
.fsd_c01156{font-size:72.011663px;}
.fsb_c01156{font-size:72.019041px;}
.fs5_c01156{font-size:78.006591px;}
.fs2_c01156{font-size:78.011270px;}
.fsc_c01156{font-size:78.020628px;}
.fs0_c01156{font-size:84.000000px;}
.fs4_c01156{font-size:84.007098px;}
.fs7_c01156{font-size:84.009449px;}
.fs1_c01156{font-size:84.012137px;}
.fsa_c01156{font-size:90.013004px;}
.fs9_c01156{font-size:132.019073px;}
.y0_c01156{bottom:0.000000px;}
.yd3_c01156{bottom:2.238000px;}
.yd2_c01156{bottom:397.975308px;}
.yd1_c01156{bottom:422.764209px;}
.yd0_c01156{bottom:423.551826px;}
.ycf_c01156{bottom:424.164267px;}
.yce_c01156{bottom:425.768499px;}
.ycd_c01156{bottom:426.366630px;}
.ycc_c01156{bottom:426.963438px;}
.ycb_c01156{bottom:428.534622px;}
.yca_c01156{bottom:429.341598px;}
.yc9_c01156{bottom:430.132941px;}
.yc8_c01156{bottom:431.713143px;}
.yc7_c01156{bottom:432.316215px;}
.yc6_c01156{bottom:432.907812px;}
.yc5_c01156{bottom:433.894500px;}
.yc4_c01156{bottom:461.009879px;}
.yc3_c01156{bottom:462.354373px;}
.yc2_c01156{bottom:463.142076px;}
.yc1_c01156{bottom:464.209080px;}
.yc0_c01156{bottom:465.518196px;}
.ybf_c01156{bottom:466.065427px;}
.ybe_c01156{bottom:466.995594px;}
.ybd_c01156{bottom:467.393769px;}
.ybc_c01156{bottom:467.652672px;}
.ybb_c01156{bottom:468.307747px;}
.yba_c01156{bottom:468.703246px;}
.yb9_c01156{bottom:493.714373px;}
.yb8_c01156{bottom:494.312289px;}
.yb7_c01156{bottom:495.518387px;}
.yb6_c01156{bottom:497.511883px;}
.yb5_c01156{bottom:498.114043px;}
.yb4_c01156{bottom:499.325748px;}
.yb3_c01156{bottom:500.284464px;}
.yb2_c01156{bottom:503.302632px;}
.yb1_c01156{bottom:505.435943px;}
.yb0_c01156{bottom:527.711100px;}
.yaf_c01156{bottom:528.834316px;}
.yae_c01156{bottom:529.865901px;}
.yad_c01156{bottom:531.623296px;}
.yac_c01156{bottom:532.181334px;}
.yab_c01156{bottom:533.199947px;}
.yaa_c01156{bottom:535.779546px;}
.ya9_c01156{bottom:536.574081px;}
.ya8_c01156{bottom:537.766953px;}
.ya7_c01156{bottom:538.592814px;}
.ya6_c01156{bottom:539.592934px;}
.ya5_c01156{bottom:541.133739px;}
.ya4_c01156{bottom:541.897500px;}
.ya3_c01156{bottom:566.512497px;}
.ya2_c01156{bottom:567.819625px;}
.ya1_c01156{bottom:568.596335px;}
.ya0_c01156{bottom:571.390580px;}
.y9f_c01156{bottom:572.173914px;}
.y9e_c01156{bottom:574.210536px;}
.y9d_c01156{bottom:575.458677px;}
.y9c_c01156{bottom:577.515809px;}
.y9b_c01156{bottom:611.111041px;}
.y9a_c01156{bottom:611.111437px;}
.y99_c01156{bottom:635.711032px;}
.y98_c01156{bottom:637.032136px;}
.y97_c01156{bottom:637.785253px;}
.y96_c01156{bottom:638.363670px;}
.y95_c01156{bottom:639.489393px;}
.y94_c01156{bottom:640.053886px;}
.y93_c01156{bottom:640.802260px;}
.y92_c01156{bottom:641.558871px;}
.y91_c01156{bottom:643.258166px;}
.y90_c01156{bottom:644.377717px;}
.y8f_c01156{bottom:644.952411px;}
.y8e_c01156{bottom:647.186262px;}
.y8d_c01156{bottom:670.780369px;}
.y8c_c01156{bottom:672.539433px;}
.y8b_c01156{bottom:674.515032px;}
.y8a_c01156{bottom:675.046755px;}
.y89_c01156{bottom:675.750736px;}
.y88_c01156{bottom:678.068047px;}
.y87_c01156{bottom:680.007993px;}
.y86_c01156{bottom:680.867428px;}
.y85_c01156{bottom:681.748467px;}
.y84_c01156{bottom:706.468515px;}
.y83_c01156{bottom:707.047161px;}
.y82_c01156{bottom:707.624634px;}
.y81_c01156{bottom:708.943010px;}
.y80_c01156{bottom:710.618895px;}
.y7f_c01156{bottom:712.156647px;}
.y7e_c01156{bottom:713.469591px;}
.y7d_c01156{bottom:715.328898px;}
.y7c_c01156{bottom:716.283720px;}
.y7b_c01156{bottom:716.632738px;}
.y7a_c01156{bottom:717.394500px;}
.y79_c01156{bottom:742.736640px;}
.y78_c01156{bottom:743.229952px;}
.y77_c01156{bottom:743.914560px;}
.y76_c01156{bottom:744.570885px;}
.y75_c01156{bottom:745.082040px;}
.y74_c01156{bottom:745.753665px;}
.y73_c01156{bottom:747.232725px;}
.y72_c01156{bottom:748.395300px;}
.y71_c01156{bottom:749.719808px;}
.y70_c01156{bottom:750.878153px;}
.y6f_c01156{bottom:751.221885px;}
.y6e_c01156{bottom:753.033000px;}
.y6c_c01156{bottom:778.807762px;}
.y6b_c01156{bottom:779.874564px;}
.y6a_c01156{bottom:782.199756px;}
.y69_c01156{bottom:783.434655px;}
.y68_c01156{bottom:784.859740px;}
.y67_c01156{bottom:785.568802px;}
.y66_c01156{bottom:786.429760px;}
.y65_c01156{bottom:787.846774px;}
.y64_c01156{bottom:788.385849px;}
.y63_c01156{bottom:814.573804px;}
.y62_c01156{bottom:815.272339px;}
.y61_c01156{bottom:815.817321px;}
.y60_c01156{bottom:816.524259px;}
.y5f_c01156{bottom:818.460870px;}
.y5e_c01156{bottom:819.540870px;}
.y5d_c01156{bottom:820.784289px;}
.y5c_c01156{bottom:821.470852px;}
.y5b_c01156{bottom:822.698011px;}
.y5a_c01156{bottom:823.250791px;}
.y59_c01156{bottom:824.109625px;}
.y58_c01156{bottom:824.835103px;}
.y57_c01156{bottom:851.655718px;}
.y56_c01156{bottom:852.143203px;}
.y55_c01156{bottom:852.449448px;}
.y54_c01156{bottom:853.519921px;}
.y53_c01156{bottom:854.150682px;}
.y52_c01156{bottom:854.638674px;}
.y51_c01156{bottom:855.099309px;}
.y50_c01156{bottom:857.572648px;}
.y4f_c01156{bottom:857.878932px;}
.y4e_c01156{bottom:859.398400px;}
.y4d_c01156{bottom:886.339989px;}
.y4c_c01156{bottom:886.847038px;}
.y4b_c01156{bottom:887.498661px;}
.y4a_c01156{bottom:888.002083px;}
.y49_c01156{bottom:888.824133px;}
.y48_c01156{bottom:889.350406px;}
.y47_c01156{bottom:889.650666px;}
.y46_c01156{bottom:891.692005px;}
.y45_c01156{bottom:892.328614px;}
.y44_c01156{bottom:893.329240px;}
.y43_c01156{bottom:893.989812px;}
.y42_c01156{bottom:894.990282px;}
.y41_c01156{bottom:895.459818px;}
.y40_c01156{bottom:896.124055px;}
.y3f_c01156{bottom:922.029304px;}
.y3e_c01156{bottom:922.509535px;}
.y3d_c01156{bottom:922.977190px;}
.y3c_c01156{bottom:924.057999px;}
.y3b_c01156{bottom:924.371556px;}
.y3a_c01156{bottom:925.448991px;}
.y39_c01156{bottom:925.766643px;}
.y38_c01156{bottom:926.862445px;}
.y37_c01156{bottom:927.320116px;}
.y36_c01156{bottom:928.714384px;}
.y35_c01156{bottom:929.485944px;}
.y34_c01156{bottom:930.415365px;}
.y33_c01156{bottom:956.356198px;}
.y32_c01156{bottom:956.777418px;}
.y31_c01156{bottom:957.504339px;}
.y30_c01156{bottom:958.374877px;}
.y2f_c01156{bottom:958.796136px;}
.y2e_c01156{bottom:959.364210px;}
.y2d_c01156{bottom:960.379380px;}
.y2c_c01156{bottom:960.807015px;}
.y2b_c01156{bottom:961.969449px;}
.y2a_c01156{bottom:962.545186px;}
.y29_c01156{bottom:963.408627px;}
.y28_c01156{bottom:964.521336px;}
.y27_c01156{bottom:964.977499px;}
.y26_c01156{bottom:991.621497px;}
.y25_c01156{bottom:993.071049px;}
.y24_c01156{bottom:993.495915px;}
.y23_c01156{bottom:994.218877px;}
.y22_c01156{bottom:994.945935px;}
.y21_c01156{bottom:995.380902px;}
.y20_c01156{bottom:996.230439px;}
.y1f_c01156{bottom:996.672699px;}
.y1e_c01156{bottom:997.097506px;}
.y1d_c01156{bottom:997.536217px;}
.y1c_c01156{bottom:998.964748px;}
.y1b_c01156{bottom:999.539881px;}
.y1a_c01156{bottom:1026.863770px;}
.y19_c01156{bottom:1027.309599px;}
.y18_c01156{bottom:1028.165649px;}
.y17_c01156{bottom:1028.460547px;}
.y16_c01156{bottom:1029.173701px;}
.y15_c01156{bottom:1030.911288px;}
.y14_c01156{bottom:1031.343076px;}
.y13_c01156{bottom:1032.204820px;}
.y12_c01156{bottom:1033.224690px;}
.y11_c01156{bottom:1033.771665px;}
.y10_c01156{bottom:1034.214432px;}
.yf_c01156{bottom:1034.913000px;}
.ye_c01156{bottom:1062.198176px;}
.yd_c01156{bottom:1062.756015px;}
.yc_c01156{bottom:1063.291232px;}
.yb_c01156{bottom:1064.887115px;}
.ya_c01156{bottom:1065.418608px;}
.y9_c01156{bottom:1066.671912px;}
.y8_c01156{bottom:1068.435030px;}
.y7_c01156{bottom:1068.974637px;}
.y6_c01156{bottom:1070.543613px;}
.y5_c01156{bottom:1125.359540px;}
.y4_c01156{bottom:1137.443969px;}
.y3_c01156{bottom:1139.334921px;}
.y2_c01156{bottom:1141.024500px;}
.y1_c01156{bottom:1211.232000px;}
.y6d_c01156{bottom:1249.831500px;}
.h10_c01156{height:18.000000px;}
.h8_c01156{height:42.000000px;}
.h5_c01156{height:72.006084px;}
.ha_c01156{height:72.010403px;}
.hf_c01156{height:72.011663px;}
.hd_c01156{height:72.019041px;}
.h7_c01156{height:78.006591px;}
.h4_c01156{height:78.011270px;}
.he_c01156{height:78.020628px;}
.h2_c01156{height:84.000000px;}
.h6_c01156{height:84.007098px;}
.h9_c01156{height:84.009449px;}
.h3_c01156{height:84.012137px;}
.hc_c01156{height:90.013004px;}
.hb_c01156{height:132.019073px;}
.h1_c01156{height:1258.500000px;}
.h0_c01156{height:1258.740000px;}
.w0_c01156{width:920.100000px;}
.w1_c01156{width:920.250000px;}
.x0_c01156{left:0.000000px;}
.x84_c01156{left:160.181958px;}
.x4b_c01156{left:162.585500px;}
.x2a_c01156{left:163.699760px;}
.x19_c01156{left:164.827917px;}
.xf_c01156{left:166.663500px;}
.x85_c01156{left:193.103273px;}
.x4c_c01156{left:196.320693px;}
.x22_c01156{left:199.882176px;}
.x57_c01156{left:207.093000px;}
.x1a_c01156{left:209.068917px;}
.x8b_c01156{left:214.977000px;}
.x5e_c01156{left:217.918293px;}
.x10_c01156{left:220.399500px;}
.x58_c01156{left:227.623500px;}
.x2b_c01156{left:230.115902px;}
.x32_c01156{left:240.643313px;}
.x86_c01156{left:247.685573px;}
.x11_c01156{left:254.458500px;}
.x44_c01156{left:262.483047px;}
.x73_c01156{left:268.867500px;}
.x5f_c01156{left:271.650711px;}
.x3b_c01156{left:273.616518px;}
.x6_c01156{left:277.051217px;}
.x6c_c01156{left:281.040060px;}
.x51_c01156{left:283.876500px;}
.x23_c01156{left:285.475176px;}
.x65_c01156{left:293.507253px;}
.x3c_c01156{left:295.445726px;}
.x12_c01156{left:296.533500px;}
.x93_c01156{left:298.080000px;}
.x74_c01156{left:302.074500px;}
.x33_c01156{left:307.331577px;}
.x9a_c01156{left:317.250000px;}
.x1b_c01156{left:318.955917px;}
.x94_c01156{left:326.160000px;}
.x66_c01156{left:327.312753px;}
.x4d_c01156{left:338.659136px;}
.x5_c01156{left:341.446923px;}
.x2_c01156{left:342.657000px;}
.x95_c01156{left:350.190000px;}
.x34_c01156{left:351.335927px;}
.x1c_c01156{left:352.702917px;}
.x75_c01156{left:369.066000px;}
.x6d_c01156{left:370.450431px;}
.x45_c01156{left:373.781718px;}
.x7_c01156{left:375.080874px;}
.x87_c01156{left:379.990537px;}
.x4e_c01156{left:382.931400px;}
.x52_c01156{left:384.015000px;}
.x1d_c01156{left:385.380417px;}
.x1_c01156{left:387.990000px;}
.x59_c01156{left:393.160500px;}
.x24_c01156{left:396.181176px;}
.x8_c01156{left:408.852461px;}
.x76_c01156{left:412.549500px;}
.x2c_c01156{left:417.497964px;}
.x1e_c01156{left:419.400417px;}
.x6e_c01156{left:424.717898px;}
.x96_c01156{left:431.190000px;}
.x3_c01156{left:442.044000px;}
.x77_c01156{left:448.456500px;}
.x8c_c01156{left:457.932000px;}
.x35_c01156{left:460.428080px;}
.x9b_c01156{left:466.020000px;}
.x5a_c01156{left:470.392500px;}
.x3d_c01156{left:472.084925px;}
.x13_c01156{left:474.487500px;}
.x97_c01156{left:479.250000px;}
.x9c_c01156{left:483.570000px;}
.x1f_c01156{left:484.749417px;}
.x67_c01156{left:493.127253px;}
.x46_c01156{left:494.429519px;}
.x2d_c01156{left:495.789450px;}
.x78_c01156{left:500.320500px;}
.x7e_c01156{left:501.435831px;}
.x3e_c01156{left:504.979496px;}
.x6f_c01156{left:513.274871px;}
.x9_c01156{left:519.008322px;}
.x98_c01156{left:521.370000px;}
.x79_c01156{left:534.865500px;}
.x60_c01156{left:537.699725px;}
.x3f_c01156{left:539.863047px;}
.x9d_c01156{left:542.160000px;}
.x8d_c01156{left:545.220000px;}
.x70_c01156{left:547.349903px;}
.x4f_c01156{left:549.231426px;}
.x4_c01156{left:553.276500px;}
.x5b_c01156{left:560.848500px;}
.x47_c01156{left:561.926886px;}
.x7f_c01156{left:568.735059px;}
.x20_c01156{left:574.135917px;}
.x8e_c01156{left:578.376000px;}
.x61_c01156{left:581.669964px;}
.x40_c01156{left:584.920962px;}
.x99_c01156{left:588.330000px;}
.x2e_c01156{left:595.487163px;}
.xa_c01156{left:597.321648px;}
.x80_c01156{left:602.158888px;}
.x14_c01156{left:608.148000px;}
.x8f_c01156{left:611.605500px;}
.x62_c01156{left:614.889525px;}
.x36_c01156{left:616.547024px;}
.x2f_c01156{left:617.875871px;}
.x88_c01156{left:623.632654px;}
.xb_c01156{left:630.527709px;}
.x25_c01156{left:640.282176px;}
.x7a_c01156{left:647.022000px;}
.x53_c01156{left:648.424500px;}
.x37_c01156{left:651.605607px;}
.x5c_c01156{left:659.430000px;}
.x41_c01156{left:661.379468px;}
.x15_c01156{left:663.006000px;}
.x71_c01156{left:668.822510px;}
.x26_c01156{left:672.686676px;}
.x68_c01156{left:681.080253px;}
.x42_c01156{left:683.205675px;}
.x16_c01156{left:685.690500px;}
.x89_c01156{left:689.266749px;}
.x7b_c01156{left:691.309500px;}
.x54_c01156{left:693.199500px;}
.x30_c01156{left:695.129376px;}
.x90_c01156{left:700.729500px;}
.x72_c01156{left:702.596067px;}
.x38_c01156{left:706.415684px;}
.x81_c01156{left:712.910619px;}
.x69_c01156{left:715.104753px;}
.x43_c01156{left:718.050227px;}
.x48_c01156{left:727.193451px;}
.x31_c01156{left:728.563947px;}
.xc_c01156{left:730.228392px;}
.x91_c01156{left:734.754000px;}
.x5d_c01156{left:736.981500px;}
.x63_c01156{left:738.338616px;}
.x27_c01156{left:739.651176px;}
.x17_c01156{left:751.540500px;}
.x6a_c01156{left:759.405753px;}
.x49_c01156{left:761.267625px;}
.xd_c01156{left:763.653453px;}
.x55_c01156{left:771.031500px;}
.x21_c01156{left:773.934417px;}
.x92_c01156{left:778.510500px;}
.x82_c01156{left:779.900813px;}
.x39_c01156{left:783.378675px;}
.x18_c01156{left:785.835000px;}
.x7c_c01156{left:791.980500px;}
.x28_c01156{left:795.568176px;}
.xe_c01156{left:798.497539px;}
.x8a_c01156{left:801.360108px;}
.x4a_c01156{left:804.960929px;}
.x83_c01156{left:813.140142px;}
.x3a_c01156{left:817.189298px;}
.x29_c01156{left:827.969676px;}
.x6b_c01156{left:837.117753px;}
.x64_c01156{left:848.255978px;}
.x56_c01156{left:849.559500px;}
.x7d_c01156{left:885.667500px;}
.x50_c01156{left:904.230000px;}
@media print{
.v0_c01156{vertical-align:0.000000pt;}
.ls0_c01156{letter-spacing:0.000000pt;}
.ws0_c01156{word-spacing:0.000000pt;}
.fse_c01156{font-size:16.000000pt;}
.fs6_c01156{font-size:37.333333pt;}
.fs3_c01156{font-size:64.005408pt;}
.fs8_c01156{font-size:64.009247pt;}
.fsd_c01156{font-size:64.010367pt;}
.fsb_c01156{font-size:64.016926pt;}
.fs5_c01156{font-size:69.339192pt;}
.fs2_c01156{font-size:69.343351pt;}
.fsc_c01156{font-size:69.351670pt;}
.fs0_c01156{font-size:74.666667pt;}
.fs4_c01156{font-size:74.672976pt;}
.fs7_c01156{font-size:74.675066pt;}
.fs1_c01156{font-size:74.677455pt;}
.fsa_c01156{font-size:80.011559pt;}
.fs9_c01156{font-size:117.350287pt;}
.y0_c01156{bottom:0.000000pt;}
.yd3_c01156{bottom:1.989333pt;}
.yd2_c01156{bottom:353.755829pt;}
.yd1_c01156{bottom:375.790408pt;}
.yd0_c01156{bottom:376.490512pt;}
.ycf_c01156{bottom:377.034904pt;}
.yce_c01156{bottom:378.460888pt;}
.ycd_c01156{bottom:378.992560pt;}
.ycc_c01156{bottom:379.523056pt;}
.ycb_c01156{bottom:380.919664pt;}
.yca_c01156{bottom:381.636976pt;}
.yc9_c01156{bottom:382.340392pt;}
.yc8_c01156{bottom:383.745016pt;}
.yc7_c01156{bottom:384.281080pt;}
.yc6_c01156{bottom:384.806944pt;}
.yc5_c01156{bottom:385.684000pt;}
.yc4_c01156{bottom:409.786559pt;}
.yc3_c01156{bottom:410.981665pt;}
.yc2_c01156{bottom:411.681845pt;}
.yc1_c01156{bottom:412.630293pt;}
.yc0_c01156{bottom:413.793952pt;}
.ybf_c01156{bottom:414.280380pt;}
.ybe_c01156{bottom:415.107195pt;}
.ybd_c01156{bottom:415.461128pt;}
.ybc_c01156{bottom:415.691264pt;}
.ybb_c01156{bottom:416.273553pt;}
.yba_c01156{bottom:416.625108pt;}
.yb9_c01156{bottom:438.857220pt;}
.yb8_c01156{bottom:439.388701pt;}
.yb7_c01156{bottom:440.460788pt;}
.yb6_c01156{bottom:442.232785pt;}
.yb5_c01156{bottom:442.768039pt;}
.yb4_c01156{bottom:443.845109pt;}
.yb3_c01156{bottom:444.697301pt;}
.yb2_c01156{bottom:447.380117pt;}
.yb1_c01156{bottom:449.276393pt;}
.yb0_c01156{bottom:469.076533pt;}
.yaf_c01156{bottom:470.074948pt;}
.yae_c01156{bottom:470.991912pt;}
.yad_c01156{bottom:472.554041pt;}
.yac_c01156{bottom:473.050075pt;}
.yab_c01156{bottom:473.955508pt;}
.yaa_c01156{bottom:476.248485pt;}
.ya9_c01156{bottom:476.954739pt;}
.ya8_c01156{bottom:478.015069pt;}
.ya7_c01156{bottom:478.749168pt;}
.ya6_c01156{bottom:479.638164pt;}
.ya5_c01156{bottom:481.007768pt;}
.ya4_c01156{bottom:481.686667pt;}
.ya3_c01156{bottom:503.566664pt;}
.ya2_c01156{bottom:504.728556pt;}
.ya1_c01156{bottom:505.418964pt;}
.ya0_c01156{bottom:507.902737pt;}
.y9f_c01156{bottom:508.599035pt;}
.y9e_c01156{bottom:510.409365pt;}
.y9d_c01156{bottom:511.518824pt;}
.y9c_c01156{bottom:513.347385pt;}
.y9b_c01156{bottom:543.209815pt;}
.y9a_c01156{bottom:543.210167pt;}
.y99_c01156{bottom:565.076473pt;}
.y98_c01156{bottom:566.250788pt;}
.y97_c01156{bottom:566.920225pt;}
.y96_c01156{bottom:567.434373pt;}
.y95_c01156{bottom:568.435016pt;}
.y94_c01156{bottom:568.936788pt;}
.y93_c01156{bottom:569.602009pt;}
.y92_c01156{bottom:570.274552pt;}
.y91_c01156{bottom:571.785036pt;}
.y90_c01156{bottom:572.780193pt;}
.y8f_c01156{bottom:573.291032pt;}
.y8e_c01156{bottom:575.276677pt;}
.y8d_c01156{bottom:596.249217pt;}
.y8c_c01156{bottom:597.812829pt;}
.y8b_c01156{bottom:599.568917pt;}
.y8a_c01156{bottom:600.041560pt;}
.y89_c01156{bottom:600.667321pt;}
.y88_c01156{bottom:602.727153pt;}
.y87_c01156{bottom:604.451549pt;}
.y86_c01156{bottom:605.215492pt;}
.y85_c01156{bottom:605.998637pt;}
.y84_c01156{bottom:627.972013pt;}
.y83_c01156{bottom:628.486365pt;}
.y82_c01156{bottom:628.999675pt;}
.y81_c01156{bottom:630.171564pt;}
.y80_c01156{bottom:631.661240pt;}
.y7f_c01156{bottom:633.028131pt;}
.y7e_c01156{bottom:634.195192pt;}
.y7d_c01156{bottom:635.847909pt;}
.y7c_c01156{bottom:636.696640pt;}
.y7b_c01156{bottom:637.006879pt;}
.y7a_c01156{bottom:637.684000pt;}
.y79_c01156{bottom:660.210347pt;}
.y78_c01156{bottom:660.648847pt;}
.y77_c01156{bottom:661.257387pt;}
.y76_c01156{bottom:661.840787pt;}
.y75_c01156{bottom:662.295147pt;}
.y74_c01156{bottom:662.892147pt;}
.y73_c01156{bottom:664.206867pt;}
.y72_c01156{bottom:665.240267pt;}
.y71_c01156{bottom:666.417607pt;}
.y70_c01156{bottom:667.447247pt;}
.y6f_c01156{bottom:667.752787pt;}
.y6e_c01156{bottom:669.362667pt;}
.y6c_c01156{bottom:692.273567pt;}
.y6b_c01156{bottom:693.221835pt;}
.y6a_c01156{bottom:695.288672pt;}
.y69_c01156{bottom:696.386360pt;}
.y68_c01156{bottom:697.653103pt;}
.y67_c01156{bottom:698.283380pt;}
.y66_c01156{bottom:699.048676pt;}
.y65_c01156{bottom:700.308244pt;}
.y64_c01156{bottom:700.787421pt;}
.y63_c01156{bottom:724.065604pt;}
.y62_c01156{bottom:724.686524pt;}
.y61_c01156{bottom:725.170952pt;}
.y60_c01156{bottom:725.799341pt;}
.y5f_c01156{bottom:727.520773pt;}
.y5e_c01156{bottom:728.480773pt;}
.y5d_c01156{bottom:729.586035pt;}
.y5c_c01156{bottom:730.196313pt;}
.y5b_c01156{bottom:731.287121pt;}
.y5a_c01156{bottom:731.778481pt;}
.y59_c01156{bottom:732.541889pt;}
.y58_c01156{bottom:733.186759pt;}
.y57_c01156{bottom:757.027305pt;}
.y56_c01156{bottom:757.460625pt;}
.y55_c01156{bottom:757.732843pt;}
.y54_c01156{bottom:758.684375pt;}
.y53_c01156{bottom:759.245051pt;}
.y52_c01156{bottom:759.678821pt;}
.y51_c01156{bottom:760.088275pt;}
.y50_c01156{bottom:762.286799pt;}
.y4f_c01156{bottom:762.559051pt;}
.y4e_c01156{bottom:763.909689pt;}
.y4d_c01156{bottom:787.857768pt;}
.y4c_c01156{bottom:788.308479pt;}
.y4b_c01156{bottom:788.887699pt;}
.y4a_c01156{bottom:789.335185pt;}
.y49_c01156{bottom:790.065896pt;}
.y48_c01156{bottom:790.533695pt;}
.y47_c01156{bottom:790.800592pt;}
.y46_c01156{bottom:792.615116pt;}
.y45_c01156{bottom:793.180991pt;}
.y44_c01156{bottom:794.070436pt;}
.y43_c01156{bottom:794.657611pt;}
.y42_c01156{bottom:795.546917pt;}
.y41_c01156{bottom:795.964283pt;}
.y40_c01156{bottom:796.554716pt;}
.y3f_c01156{bottom:819.581604pt;}
.y3e_c01156{bottom:820.008476pt;}
.y3d_c01156{bottom:820.424169pt;}
.y3c_c01156{bottom:821.384888pt;}
.y3b_c01156{bottom:821.663605pt;}
.y3a_c01156{bottom:822.621325pt;}
.y39_c01156{bottom:822.903683pt;}
.y38_c01156{bottom:823.877729pt;}
.y37_c01156{bottom:824.284548pt;}
.y36_c01156{bottom:825.523897pt;}
.y35_c01156{bottom:826.209728pt;}
.y34_c01156{bottom:827.035880pt;}
.y33_c01156{bottom:850.094399pt;}
.y32_c01156{bottom:850.468816pt;}
.y31_c01156{bottom:851.114968pt;}
.y30_c01156{bottom:851.888780pt;}
.y2f_c01156{bottom:852.263232pt;}
.y2e_c01156{bottom:852.768187pt;}
.y2d_c01156{bottom:853.670560pt;}
.y2c_c01156{bottom:854.050680pt;}
.y2b_c01156{bottom:855.083955pt;}
.y2a_c01156{bottom:855.595721pt;}
.y29_c01156{bottom:856.363224pt;}
.y28_c01156{bottom:857.352299pt;}
.y27_c01156{bottom:857.757777pt;}
.y26_c01156{bottom:881.441331pt;}
.y25_c01156{bottom:882.729821pt;}
.y24_c01156{bottom:883.107480pt;}
.y23_c01156{bottom:883.750113pt;}
.y22_c01156{bottom:884.396387pt;}
.y21_c01156{bottom:884.783024pt;}
.y20_c01156{bottom:885.538168pt;}
.y1f_c01156{bottom:885.931288pt;}
.y1e_c01156{bottom:886.308895pt;}
.y1d_c01156{bottom:886.698860pt;}
.y1c_c01156{bottom:887.968665pt;}
.y1b_c01156{bottom:888.479895pt;}
.y1a_c01156{bottom:912.767796pt;}
.y19_c01156{bottom:913.164088pt;}
.y18_c01156{bottom:913.925021pt;}
.y17_c01156{bottom:914.187153pt;}
.y16_c01156{bottom:914.821068pt;}
.y15_c01156{bottom:916.365589pt;}
.y14_c01156{bottom:916.749401pt;}
.y13_c01156{bottom:917.515396pt;}
.y12_c01156{bottom:918.421947pt;}
.y11_c01156{bottom:918.908147pt;}
.y10_c01156{bottom:919.301717pt;}
.yf_c01156{bottom:919.922667pt;}
.ye_c01156{bottom:944.176156pt;}
.yd_c01156{bottom:944.672013pt;}
.yc_c01156{bottom:945.147761pt;}
.yb_c01156{bottom:946.566324pt;}
.ya_c01156{bottom:947.038763pt;}
.y9_c01156{bottom:948.152811pt;}
.y8_c01156{bottom:949.720027pt;}
.y7_c01156{bottom:950.199677pt;}
.y6_c01156{bottom:951.594323pt;}
.y5_c01156{bottom:1000.319591pt;}
.y4_c01156{bottom:1011.061305pt;}
.y3_c01156{bottom:1012.742152pt;}
.y2_c01156{bottom:1014.244000pt;}
.y1_c01156{bottom:1076.650667pt;}
.y6d_c01156{bottom:1110.961333pt;}
.h10_c01156{height:16.000000pt;}
.h8_c01156{height:37.333333pt;}
.h5_c01156{height:64.005408pt;}
.ha_c01156{height:64.009247pt;}
.hf_c01156{height:64.010367pt;}
.hd_c01156{height:64.016926pt;}
.h7_c01156{height:69.339192pt;}
.h4_c01156{height:69.343351pt;}
.he_c01156{height:69.351670pt;}
.h2_c01156{height:74.666667pt;}
.h6_c01156{height:74.672976pt;}
.h9_c01156{height:74.675066pt;}
.h3_c01156{height:74.677455pt;}
.hc_c01156{height:80.011559pt;}
.hb_c01156{height:117.350287pt;}
.h1_c01156{height:1118.666667pt;}
.h0_c01156{height:1118.880000pt;}
.w0_c01156{width:817.866667pt;}
.w1_c01156{width:818.000000pt;}
.x0_c01156{left:0.000000pt;}
.x84_c01156{left:142.383963pt;}
.x4b_c01156{left:144.520444pt;}
.x2a_c01156{left:145.510897pt;}
.x19_c01156{left:146.513704pt;}
.xf_c01156{left:148.145333pt;}
.x85_c01156{left:171.647353pt;}
.x4c_c01156{left:174.507283pt;}
.x22_c01156{left:177.673045pt;}
.x57_c01156{left:184.082667pt;}
.x1a_c01156{left:185.839037pt;}
.x8b_c01156{left:191.090667pt;}
.x5e_c01156{left:193.705149pt;}
.x10_c01156{left:195.910667pt;}
.x58_c01156{left:202.332000pt;}
.x2b_c01156{left:204.547468pt;}
.x32_c01156{left:213.905167pt;}
.x86_c01156{left:220.164953pt;}
.x11_c01156{left:226.185333pt;}
.x44_c01156{left:233.318264pt;}
.x73_c01156{left:238.993333pt;}
.x5f_c01156{left:241.467299pt;}
.x3b_c01156{left:243.214683pt;}
.x6_c01156{left:246.267748pt;}
.x6c_c01156{left:249.813387pt;}
.x51_c01156{left:252.334667pt;}
.x23_c01156{left:253.755712pt;}
.x65_c01156{left:260.895336pt;}
.x3c_c01156{left:262.618423pt;}
.x12_c01156{left:263.585333pt;}
.x93_c01156{left:264.960000pt;}
.x74_c01156{left:268.510667pt;}
.x33_c01156{left:273.183624pt;}
.x9a_c01156{left:282.000000pt;}
.x1b_c01156{left:283.516371pt;}
.x94_c01156{left:289.920000pt;}
.x66_c01156{left:290.944669pt;}
.x4d_c01156{left:301.030343pt;}
.x5_c01156{left:303.508376pt;}
.x2_c01156{left:304.584000pt;}
.x95_c01156{left:311.280000pt;}
.x34_c01156{left:312.298601pt;}
.x1c_c01156{left:313.513704pt;}
.x75_c01156{left:328.058667pt;}
.x6d_c01156{left:329.289272pt;}
.x45_c01156{left:332.250416pt;}
.x7_c01156{left:333.405221pt;}
.x87_c01156{left:337.769367pt;}
.x4e_c01156{left:340.383467pt;}
.x52_c01156{left:341.346667pt;}
.x1d_c01156{left:342.560371pt;}
.x1_c01156{left:344.880000pt;}
.x59_c01156{left:349.476000pt;}
.x24_c01156{left:352.161045pt;}
.x8_c01156{left:363.424409pt;}
.x76_c01156{left:366.710667pt;}
.x2c_c01156{left:371.109301pt;}
.x1e_c01156{left:372.800371pt;}
.x6e_c01156{left:377.527020pt;}
.x96_c01156{left:383.280000pt;}
.x3_c01156{left:392.928000pt;}
.x77_c01156{left:398.628000pt;}
.x8c_c01156{left:407.050667pt;}
.x35_c01156{left:409.269404pt;}
.x9b_c01156{left:414.240000pt;}
.x5a_c01156{left:418.126667pt;}
.x3d_c01156{left:419.631044pt;}
.x13_c01156{left:421.766667pt;}
.x97_c01156{left:426.000000pt;}
.x9c_c01156{left:429.840000pt;}
.x1f_c01156{left:430.888371pt;}
.x67_c01156{left:438.335336pt;}
.x46_c01156{left:439.492905pt;}
.x2d_c01156{left:440.701733pt;}
.x78_c01156{left:444.729333pt;}
.x7e_c01156{left:445.720739pt;}
.x3e_c01156{left:448.870663pt;}
.x6f_c01156{left:456.244329pt;}
.x9_c01156{left:461.340731pt;}
.x98_c01156{left:463.440000pt;}
.x79_c01156{left:475.436000pt;}
.x60_c01156{left:477.955311pt;}
.x3f_c01156{left:479.878264pt;}
.x9d_c01156{left:481.920000pt;}
.x8d_c01156{left:484.640000pt;}
.x70_c01156{left:486.533247pt;}
.x4f_c01156{left:488.205712pt;}
.x4_c01156{left:491.801333pt;}
.x5b_c01156{left:498.532000pt;}
.x47_c01156{left:499.490565pt;}
.x7f_c01156{left:505.542275pt;}
.x20_c01156{left:510.343037pt;}
.x8e_c01156{left:514.112000pt;}
.x61_c01156{left:517.039968pt;}
.x40_c01156{left:519.929744pt;}
.x99_c01156{left:522.960000pt;}
.x2e_c01156{left:529.321923pt;}
.xa_c01156{left:530.952576pt;}
.x80_c01156{left:535.252345pt;}
.x14_c01156{left:540.576000pt;}
.x8f_c01156{left:543.649333pt;}
.x62_c01156{left:546.568467pt;}
.x36_c01156{left:548.041799pt;}
.x2f_c01156{left:549.222996pt;}
.x88_c01156{left:554.340137pt;}
.xb_c01156{left:560.469075pt;}
.x25_c01156{left:569.139712pt;}
.x7a_c01156{left:575.130667pt;}
.x53_c01156{left:576.377333pt;}
.x37_c01156{left:579.204984pt;}
.x5c_c01156{left:586.160000pt;}
.x41_c01156{left:587.892860pt;}
.x15_c01156{left:589.338667pt;}
.x71_c01156{left:594.508897pt;}
.x26_c01156{left:597.943712pt;}
.x68_c01156{left:605.404669pt;}
.x42_c01156{left:607.293933pt;}
.x16_c01156{left:609.502667pt;}
.x89_c01156{left:612.681555pt;}
.x7b_c01156{left:614.497333pt;}
.x54_c01156{left:616.177333pt;}
.x30_c01156{left:617.892779pt;}
.x90_c01156{left:622.870667pt;}
.x72_c01156{left:624.529837pt;}
.x38_c01156{left:627.925052pt;}
.x81_c01156{left:633.698328pt;}
.x69_c01156{left:635.648669pt;}
.x43_c01156{left:638.266868pt;}
.x48_c01156{left:646.394179pt;}
.x31_c01156{left:647.612397pt;}
.xc_c01156{left:649.091904pt;}
.x91_c01156{left:653.114667pt;}
.x5d_c01156{left:655.094667pt;}
.x63_c01156{left:656.300992pt;}
.x27_c01156{left:657.467712pt;}
.x17_c01156{left:668.036000pt;}
.x6a_c01156{left:675.027336pt;}
.x49_c01156{left:676.682333pt;}
.xd_c01156{left:678.803069pt;}
.x55_c01156{left:685.361333pt;}
.x21_c01156{left:687.941704pt;}
.x92_c01156{left:692.009333pt;}
.x82_c01156{left:693.245167pt;}
.x39_c01156{left:696.336600pt;}
.x18_c01156{left:698.520000pt;}
.x7c_c01156{left:703.982667pt;}
.x28_c01156{left:707.171712pt;}
.xe_c01156{left:709.775591pt;}
.x8a_c01156{left:712.320096pt;}
.x4a_c01156{left:715.520825pt;}
.x83_c01156{left:722.791237pt;}
.x3a_c01156{left:726.390487pt;}
.x29_c01156{left:735.973045pt;}
.x6b_c01156{left:744.104669pt;}
.x64_c01156{left:754.005313pt;}
.x56_c01156{left:755.164000pt;}
.x7d_c01156{left:787.260000pt;}
.x50_c01156{left:803.760000pt;}
}





/* 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_c01157 {
    display:none;
  }
  .loading-indicator_c01157.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01157 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_c01157 { 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_c01157" -> "#page-container .classname_c01157")
 */
.pf_c01157 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01157 { /* 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_c01157.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01157 { /* 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_c01157 { /* 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_c01157 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01157 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01157 {overflow:visible;}
  }
}
.c_c01157 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01157 { /* 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_c01157:after { /* webkit #35443 */
  content: '';
}
.t_c01157:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01157 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 */
}
.__c01157 { /* 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_c01157 { /* info for Javascript */
  display:none;
}
.l_c01157 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01157 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01157 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01157: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_c01157 {
    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_c01157.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01157.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_c01157 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01157{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01157;src:url('chunks/assets/font_b11a17f404e7258299fdf971.woff2')format("woff");}.ff1_c01157{font-family:ff1_c01157;line-height:1.000000;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;}
.m6_c01157{transform:matrix(0.091785,-0.000918,0.002500,0.249988,0,0);-ms-transform:matrix(0.091785,-0.000918,0.002500,0.249988,0,0);-webkit-transform:matrix(0.091785,-0.000918,0.002500,0.249988,0,0);}
.m4_c01157{transform:matrix(0.099995,-0.001000,0.002500,0.249988,0,0);-ms-transform:matrix(0.099995,-0.001000,0.002500,0.249988,0,0);-webkit-transform:matrix(0.099995,-0.001000,0.002500,0.249988,0,0);}
.m2_c01157{transform:matrix(0.107830,-0.001078,0.002500,0.249988,0,0);-ms-transform:matrix(0.107830,-0.001078,0.002500,0.249988,0,0);-webkit-transform:matrix(0.107830,-0.001078,0.002500,0.249988,0,0);}
.m5_c01157{transform:matrix(0.108715,-0.001087,0.002500,0.249988,0,0);-ms-transform:matrix(0.108715,-0.001087,0.002500,0.249988,0,0);-webkit-transform:matrix(0.108715,-0.001087,0.002500,0.249988,0,0);}
.m0_c01157{transform:matrix(0.114264,-0.001143,0.002500,0.249988,0,0);-ms-transform:matrix(0.114264,-0.001143,0.002500,0.249988,0,0);-webkit-transform:matrix(0.114264,-0.001143,0.002500,0.249988,0,0);}
.m3_c01157{transform:matrix(0.144563,-0.001446,0.002500,0.249988,0,0);-ms-transform:matrix(0.144563,-0.001446,0.002500,0.249988,0,0);-webkit-transform:matrix(0.144563,-0.001446,0.002500,0.249988,0,0);}
.m1_c01157{transform:matrix(0.158107,-0.001581,0.002500,0.249988,0,0);-ms-transform:matrix(0.158107,-0.001581,0.002500,0.249988,0,0);-webkit-transform:matrix(0.158107,-0.001581,0.002500,0.249988,0,0);}
.v0_c01157{vertical-align:0.000000px;}
.ls0_c01157{letter-spacing:0.000000px;}
.sc__c01157{text-shadow:none;}
.sc0_c01157{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__c01157{-webkit-text-stroke:0px transparent;}
.sc0_c01157{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01157{word-spacing:0.000000px;}
.fc0_c01157{color:transparent;}
.fs0_c01157{font-size:192.009600px;}
.y0_c01157{bottom:0.000000px;}
.y1_c01157{bottom:440.920500px;}
.y2_c01157{bottom:441.606075px;}
.y3_c01157{bottom:442.062435px;}
.y4_c01157{bottom:442.827150px;}
.y5_c01157{bottom:443.188020px;}
.y6_c01157{bottom:443.366505px;}
.y7_c01157{bottom:443.941470px;}
.h2_c01157{height:192.009600px;}
.h1_c01157{height:1258.500000px;}
.h0_c01157{height:1258.740000px;}
.w1_c01157{width:883.500000px;}
.w0_c01157{width:883.650000px;}
.x0_c01157{left:0.000000px;}
.x1_c01157{left:406.924500px;}
.x2_c01157{left:475.482000px;}
.x3_c01157{left:521.118000px;}
.x4_c01157{left:597.589500px;}
.x5_c01157{left:633.676500px;}
.x6_c01157{left:651.525000px;}
.x7_c01157{left:709.021500px;}
@media print{
.v0_c01157{vertical-align:0.000000pt;}
.ls0_c01157{letter-spacing:0.000000pt;}
.ws0_c01157{word-spacing:0.000000pt;}
.fs0_c01157{font-size:170.675200pt;}
.y0_c01157{bottom:0.000000pt;}
.y1_c01157{bottom:391.929333pt;}
.y2_c01157{bottom:392.538733pt;}
.y3_c01157{bottom:392.944387pt;}
.y4_c01157{bottom:393.624133pt;}
.y5_c01157{bottom:393.944907pt;}
.y6_c01157{bottom:394.103560pt;}
.y7_c01157{bottom:394.614640pt;}
.h2_c01157{height:170.675200pt;}
.h1_c01157{height:1118.666667pt;}
.h0_c01157{height:1118.880000pt;}
.w1_c01157{width:785.333333pt;}
.w0_c01157{width:785.466667pt;}
.x0_c01157{left:0.000000pt;}
.x1_c01157{left:361.710667pt;}
.x2_c01157{left:422.650667pt;}
.x3_c01157{left:463.216000pt;}
.x4_c01157{left:531.190667pt;}
.x5_c01157{left:563.268000pt;}
.x6_c01157{left:579.133333pt;}
.x7_c01157{left:630.241333pt;}
}





/* 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_c01158 {
    display:none;
  }
  .loading-indicator_c01158.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01158 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_c01158 { 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_c01158" -> "#page-container .classname_c01158")
 */
.pf_c01158 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01158 { /* 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_c01158.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01158 { /* 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_c01158 { /* 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_c01158 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01158 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01158 {overflow:visible;}
  }
}
.c_c01158 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01158 { /* 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_c01158:after { /* webkit #35443 */
  content: '';
}
.t_c01158:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01158 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 */
}
.__c01158 { /* 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_c01158 { /* info for Javascript */
  display:none;
}
.l_c01158 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01158 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01158 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01158: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_c01158 {
    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_c01158.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01158.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_c01158 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01158{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01158;src:url('chunks/assets/font_53ec0c54e60da7c2d414b553.woff2')format("woff");}.ff1_c01158{font-family:ff1_c01158;line-height:1.000000;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;}
.m8a_c01158{transform:matrix(0.013520,-0.000081,0.001500,0.249996,0,0);-ms-transform:matrix(0.013520,-0.000081,0.001500,0.249996,0,0);-webkit-transform:matrix(0.013520,-0.000081,0.001500,0.249996,0,0);}
.m11e_c01158{transform:matrix(0.081234,-0.000487,0.001500,0.249996,0,0);-ms-transform:matrix(0.081234,-0.000487,0.001500,0.249996,0,0);-webkit-transform:matrix(0.081234,-0.000487,0.001500,0.249996,0,0);}
.ma7_c01158{transform:matrix(0.169757,-0.001019,0.001500,0.249996,0,0);-ms-transform:matrix(0.169757,-0.001019,0.001500,0.249996,0,0);-webkit-transform:matrix(0.169757,-0.001019,0.001500,0.249996,0,0);}
.m89_c01158{transform:matrix(0.169838,-0.001529,0.002250,0.249990,0,0);-ms-transform:matrix(0.169838,-0.001529,0.002250,0.249990,0,0);-webkit-transform:matrix(0.169838,-0.001529,0.002250,0.249990,0,0);}
.mb4_c01158{transform:matrix(0.179567,-0.001077,0.001500,0.249996,0,0);-ms-transform:matrix(0.179567,-0.001077,0.001500,0.249996,0,0);-webkit-transform:matrix(0.179567,-0.001077,0.001500,0.249996,0,0);}
.ma5_c01158{transform:matrix(0.180852,-0.001085,0.001500,0.249996,0,0);-ms-transform:matrix(0.180852,-0.001085,0.001500,0.249996,0,0);-webkit-transform:matrix(0.180852,-0.001085,0.001500,0.249996,0,0);}
.ma9_c01158{transform:matrix(0.181567,-0.001089,0.001500,0.249996,0,0);-ms-transform:matrix(0.181567,-0.001089,0.001500,0.249996,0,0);-webkit-transform:matrix(0.181567,-0.001089,0.001500,0.249996,0,0);}
.m87_c01158{transform:matrix(0.182853,-0.001646,0.002250,0.249990,0,0);-ms-transform:matrix(0.182853,-0.001646,0.002250,0.249990,0,0);-webkit-transform:matrix(0.182853,-0.001646,0.002250,0.249990,0,0);}
.maf_c01158{transform:matrix(0.187877,-0.001127,0.001500,0.249996,0,0);-ms-transform:matrix(0.187877,-0.001127,0.001500,0.249996,0,0);-webkit-transform:matrix(0.187877,-0.001127,0.001500,0.249996,0,0);}
.mb2_c01158{transform:matrix(0.189152,-0.001135,0.001500,0.249996,0,0);-ms-transform:matrix(0.189152,-0.001135,0.001500,0.249996,0,0);-webkit-transform:matrix(0.189152,-0.001135,0.001500,0.249996,0,0);}
.mb1_c01158{transform:matrix(0.189462,-0.001137,0.001500,0.249996,0,0);-ms-transform:matrix(0.189462,-0.001137,0.001500,0.249996,0,0);-webkit-transform:matrix(0.189462,-0.001137,0.001500,0.249996,0,0);}
.mab_c01158{transform:matrix(0.190827,-0.001145,0.001500,0.249996,0,0);-ms-transform:matrix(0.190827,-0.001145,0.001500,0.249996,0,0);-webkit-transform:matrix(0.190827,-0.001145,0.001500,0.249996,0,0);}
.mad_c01158{transform:matrix(0.191432,-0.001149,0.001500,0.249996,0,0);-ms-transform:matrix(0.191432,-0.001149,0.001500,0.249996,0,0);-webkit-transform:matrix(0.191432,-0.001149,0.001500,0.249996,0,0);}
.mb6_c01158{transform:matrix(0.194571,-0.001167,0.001500,0.249996,0,0);-ms-transform:matrix(0.194571,-0.001167,0.001500,0.249996,0,0);-webkit-transform:matrix(0.194571,-0.001167,0.001500,0.249996,0,0);}
.mdf_c01158{transform:matrix(0.195571,-0.001173,0.001500,0.249996,0,0);-ms-transform:matrix(0.195571,-0.001173,0.001500,0.249996,0,0);-webkit-transform:matrix(0.195571,-0.001173,0.001500,0.249996,0,0);}
.m88_c01158{transform:matrix(0.197167,-0.001775,0.002250,0.249990,0,0);-ms-transform:matrix(0.197167,-0.001775,0.002250,0.249990,0,0);-webkit-transform:matrix(0.197167,-0.001775,0.002250,0.249990,0,0);}
.mfa_c01158{transform:matrix(0.197431,-0.001185,0.001500,0.249996,0,0);-ms-transform:matrix(0.197431,-0.001185,0.001500,0.249996,0,0);-webkit-transform:matrix(0.197431,-0.001185,0.001500,0.249996,0,0);}
.me3_c01158{transform:matrix(0.198191,-0.001189,0.001500,0.249996,0,0);-ms-transform:matrix(0.198191,-0.001189,0.001500,0.249996,0,0);-webkit-transform:matrix(0.198191,-0.001189,0.001500,0.249996,0,0);}
.m122_c01158{transform:matrix(0.198531,-0.001191,0.001500,0.249996,0,0);-ms-transform:matrix(0.198531,-0.001191,0.001500,0.249996,0,0);-webkit-transform:matrix(0.198531,-0.001191,0.001500,0.249996,0,0);}
.mae_c01158{transform:matrix(0.200426,-0.001203,0.001500,0.249996,0,0);-ms-transform:matrix(0.200426,-0.001203,0.001500,0.249996,0,0);-webkit-transform:matrix(0.200426,-0.001203,0.001500,0.249996,0,0);}
.md8_c01158{transform:matrix(0.201291,-0.001208,0.001500,0.249996,0,0);-ms-transform:matrix(0.201291,-0.001208,0.001500,0.249996,0,0);-webkit-transform:matrix(0.201291,-0.001208,0.001500,0.249996,0,0);}
.m124_c01158{transform:matrix(0.201371,-0.001208,0.001500,0.249996,0,0);-ms-transform:matrix(0.201371,-0.001208,0.001500,0.249996,0,0);-webkit-transform:matrix(0.201371,-0.001208,0.001500,0.249996,0,0);}
.mda_c01158{transform:matrix(0.202071,-0.001212,0.001500,0.249996,0,0);-ms-transform:matrix(0.202071,-0.001212,0.001500,0.249996,0,0);-webkit-transform:matrix(0.202071,-0.001212,0.001500,0.249996,0,0);}
.m127_c01158{transform:matrix(0.202661,-0.001216,0.001500,0.249996,0,0);-ms-transform:matrix(0.202661,-0.001216,0.001500,0.249996,0,0);-webkit-transform:matrix(0.202661,-0.001216,0.001500,0.249996,0,0);}
.ma8_c01158{transform:matrix(0.202711,-0.001216,0.001500,0.249996,0,0);-ms-transform:matrix(0.202711,-0.001216,0.001500,0.249996,0,0);-webkit-transform:matrix(0.202711,-0.001216,0.001500,0.249996,0,0);}
.m12a_c01158{transform:matrix(0.202766,-0.001217,0.001500,0.249996,0,0);-ms-transform:matrix(0.202766,-0.001217,0.001500,0.249996,0,0);-webkit-transform:matrix(0.202766,-0.001217,0.001500,0.249996,0,0);}
.mba_c01158{transform:matrix(0.203286,-0.001220,0.001500,0.249996,0,0);-ms-transform:matrix(0.203286,-0.001220,0.001500,0.249996,0,0);-webkit-transform:matrix(0.203286,-0.001220,0.001500,0.249996,0,0);}
.m60_c01158{transform:matrix(0.203722,-0.001833,0.002250,0.249990,0,0);-ms-transform:matrix(0.203722,-0.001833,0.002250,0.249990,0,0);-webkit-transform:matrix(0.203722,-0.001833,0.002250,0.249990,0,0);}
.mf0_c01158{transform:matrix(0.203821,-0.001223,0.001500,0.249996,0,0);-ms-transform:matrix(0.203821,-0.001223,0.001500,0.249996,0,0);-webkit-transform:matrix(0.203821,-0.001223,0.001500,0.249996,0,0);}
.ma6_c01158{transform:matrix(0.205941,-0.001236,0.001500,0.249996,0,0);-ms-transform:matrix(0.205941,-0.001236,0.001500,0.249996,0,0);-webkit-transform:matrix(0.205941,-0.001236,0.001500,0.249996,0,0);}
.mac_c01158{transform:matrix(0.206176,-0.001237,0.001500,0.249996,0,0);-ms-transform:matrix(0.206176,-0.001237,0.001500,0.249996,0,0);-webkit-transform:matrix(0.206176,-0.001237,0.001500,0.249996,0,0);}
.m0_c01158{transform:matrix(0.206460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206460,0.000000,0.000000,0.250000,0,0);}
.mc0_c01158{transform:matrix(0.206891,-0.001241,0.001500,0.249996,0,0);-ms-transform:matrix(0.206891,-0.001241,0.001500,0.249996,0,0);-webkit-transform:matrix(0.206891,-0.001241,0.001500,0.249996,0,0);}
.m12_c01158{transform:matrix(0.207440,-0.002904,0.003500,0.249976,0,0);-ms-transform:matrix(0.207440,-0.002904,0.003500,0.249976,0,0);-webkit-transform:matrix(0.207440,-0.002904,0.003500,0.249976,0,0);}
.m2a_c01158{transform:matrix(0.207945,-0.002911,0.003500,0.249976,0,0);-ms-transform:matrix(0.207945,-0.002911,0.003500,0.249976,0,0);-webkit-transform:matrix(0.207945,-0.002911,0.003500,0.249976,0,0);}
.mc9_c01158{transform:matrix(0.208011,-0.001248,0.001500,0.249996,0,0);-ms-transform:matrix(0.208011,-0.001248,0.001500,0.249996,0,0);-webkit-transform:matrix(0.208011,-0.001248,0.001500,0.249996,0,0);}
.m2_c01158{transform:matrix(0.208075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208075,0.000000,0.000000,0.250000,0,0);}
.mbd_c01158{transform:matrix(0.208331,-0.001250,0.001500,0.249996,0,0);-ms-transform:matrix(0.208331,-0.001250,0.001500,0.249996,0,0);-webkit-transform:matrix(0.208331,-0.001250,0.001500,0.249996,0,0);}
.me6_c01158{transform:matrix(0.208471,-0.001251,0.001500,0.249996,0,0);-ms-transform:matrix(0.208471,-0.001251,0.001500,0.249996,0,0);-webkit-transform:matrix(0.208471,-0.001251,0.001500,0.249996,0,0);}
.mf5_c01158{transform:matrix(0.208671,-0.001252,0.001500,0.249996,0,0);-ms-transform:matrix(0.208671,-0.001252,0.001500,0.249996,0,0);-webkit-transform:matrix(0.208671,-0.001252,0.001500,0.249996,0,0);}
.mc5_c01158{transform:matrix(0.209491,-0.001257,0.001500,0.249996,0,0);-ms-transform:matrix(0.209491,-0.001257,0.001500,0.249996,0,0);-webkit-transform:matrix(0.209491,-0.001257,0.001500,0.249996,0,0);}
.med_c01158{transform:matrix(0.209501,-0.001257,0.001500,0.249996,0,0);-ms-transform:matrix(0.209501,-0.001257,0.001500,0.249996,0,0);-webkit-transform:matrix(0.209501,-0.001257,0.001500,0.249996,0,0);}
.m125_c01158{transform:matrix(0.209876,-0.001259,0.001500,0.249996,0,0);-ms-transform:matrix(0.209876,-0.001259,0.001500,0.249996,0,0);-webkit-transform:matrix(0.209876,-0.001259,0.001500,0.249996,0,0);}
.m5_c01158{transform:matrix(0.209911,-0.003149,0.003750,0.249972,0,0);-ms-transform:matrix(0.209911,-0.003149,0.003750,0.249972,0,0);-webkit-transform:matrix(0.209911,-0.003149,0.003750,0.249972,0,0);}
.m3c_c01158{transform:matrix(0.209914,-0.002939,0.003500,0.249976,0,0);-ms-transform:matrix(0.209914,-0.002939,0.003500,0.249976,0,0);-webkit-transform:matrix(0.209914,-0.002939,0.003500,0.249976,0,0);}
.mff_c01158{transform:matrix(0.210006,-0.001260,0.001500,0.249996,0,0);-ms-transform:matrix(0.210006,-0.001260,0.001500,0.249996,0,0);-webkit-transform:matrix(0.210006,-0.001260,0.001500,0.249996,0,0);}
.ma4_c01158{transform:matrix(0.210436,-0.001263,0.001500,0.249996,0,0);-ms-transform:matrix(0.210436,-0.001263,0.001500,0.249996,0,0);-webkit-transform:matrix(0.210436,-0.001263,0.001500,0.249996,0,0);}
.m111_c01158{transform:matrix(0.210546,-0.001263,0.001500,0.249996,0,0);-ms-transform:matrix(0.210546,-0.001263,0.001500,0.249996,0,0);-webkit-transform:matrix(0.210546,-0.001263,0.001500,0.249996,0,0);}
.m102_c01158{transform:matrix(0.210696,-0.001264,0.001500,0.249996,0,0);-ms-transform:matrix(0.210696,-0.001264,0.001500,0.249996,0,0);-webkit-transform:matrix(0.210696,-0.001264,0.001500,0.249996,0,0);}
.mfd_c01158{transform:matrix(0.211416,-0.001268,0.001500,0.249996,0,0);-ms-transform:matrix(0.211416,-0.001268,0.001500,0.249996,0,0);-webkit-transform:matrix(0.211416,-0.001268,0.001500,0.249996,0,0);}
.mb8_c01158{transform:matrix(0.211841,-0.001271,0.001500,0.249996,0,0);-ms-transform:matrix(0.211841,-0.001271,0.001500,0.249996,0,0);-webkit-transform:matrix(0.211841,-0.001271,0.001500,0.249996,0,0);}
.m64_c01158{transform:matrix(0.212191,-0.001910,0.002250,0.249990,0,0);-ms-transform:matrix(0.212191,-0.001910,0.002250,0.249990,0,0);-webkit-transform:matrix(0.212191,-0.001910,0.002250,0.249990,0,0);}
.m43_c01158{transform:matrix(0.212739,-0.002978,0.003500,0.249976,0,0);-ms-transform:matrix(0.212739,-0.002978,0.003500,0.249976,0,0);-webkit-transform:matrix(0.212739,-0.002978,0.003500,0.249976,0,0);}
.md9_c01158{transform:matrix(0.213081,-0.001278,0.001500,0.249996,0,0);-ms-transform:matrix(0.213081,-0.001278,0.001500,0.249996,0,0);-webkit-transform:matrix(0.213081,-0.001278,0.001500,0.249996,0,0);}
.mcd_c01158{transform:matrix(0.213316,-0.001280,0.001500,0.249996,0,0);-ms-transform:matrix(0.213316,-0.001280,0.001500,0.249996,0,0);-webkit-transform:matrix(0.213316,-0.001280,0.001500,0.249996,0,0);}
.m104_c01158{transform:matrix(0.213961,-0.001284,0.001500,0.249996,0,0);-ms-transform:matrix(0.213961,-0.001284,0.001500,0.249996,0,0);-webkit-transform:matrix(0.213961,-0.001284,0.001500,0.249996,0,0);}
.mb5_c01158{transform:matrix(0.214821,-0.001289,0.001500,0.249996,0,0);-ms-transform:matrix(0.214821,-0.001289,0.001500,0.249996,0,0);-webkit-transform:matrix(0.214821,-0.001289,0.001500,0.249996,0,0);}
.m100_c01158{transform:matrix(0.215081,-0.001290,0.001500,0.249996,0,0);-ms-transform:matrix(0.215081,-0.001290,0.001500,0.249996,0,0);-webkit-transform:matrix(0.215081,-0.001290,0.001500,0.249996,0,0);}
.mee_c01158{transform:matrix(0.215286,-0.001292,0.001500,0.249996,0,0);-ms-transform:matrix(0.215286,-0.001292,0.001500,0.249996,0,0);-webkit-transform:matrix(0.215286,-0.001292,0.001500,0.249996,0,0);}
.mf1_c01158{transform:matrix(0.215641,-0.001294,0.001500,0.249996,0,0);-ms-transform:matrix(0.215641,-0.001294,0.001500,0.249996,0,0);-webkit-transform:matrix(0.215641,-0.001294,0.001500,0.249996,0,0);}
.m98_c01158{transform:matrix(0.215751,-0.001295,0.001500,0.249996,0,0);-ms-transform:matrix(0.215751,-0.001295,0.001500,0.249996,0,0);-webkit-transform:matrix(0.215751,-0.001295,0.001500,0.249996,0,0);}
.maa_c01158{transform:matrix(0.216176,-0.001297,0.001500,0.249996,0,0);-ms-transform:matrix(0.216176,-0.001297,0.001500,0.249996,0,0);-webkit-transform:matrix(0.216176,-0.001297,0.001500,0.249996,0,0);}
.mde_c01158{transform:matrix(0.216301,-0.001298,0.001500,0.249996,0,0);-ms-transform:matrix(0.216301,-0.001298,0.001500,0.249996,0,0);-webkit-transform:matrix(0.216301,-0.001298,0.001500,0.249996,0,0);}
.m129_c01158{transform:matrix(0.218106,-0.001309,0.001500,0.249996,0,0);-ms-transform:matrix(0.218106,-0.001309,0.001500,0.249996,0,0);-webkit-transform:matrix(0.218106,-0.001309,0.001500,0.249996,0,0);}
.mfb_c01158{transform:matrix(0.218541,-0.001311,0.001500,0.249996,0,0);-ms-transform:matrix(0.218541,-0.001311,0.001500,0.249996,0,0);-webkit-transform:matrix(0.218541,-0.001311,0.001500,0.249996,0,0);}
.m40_c01158{transform:matrix(0.218904,-0.003065,0.003500,0.249976,0,0);-ms-transform:matrix(0.218904,-0.003065,0.003500,0.249976,0,0);-webkit-transform:matrix(0.218904,-0.003065,0.003500,0.249976,0,0);}
.m14_c01158{transform:matrix(0.218934,-0.003065,0.003500,0.249976,0,0);-ms-transform:matrix(0.218934,-0.003065,0.003500,0.249976,0,0);-webkit-transform:matrix(0.218934,-0.003065,0.003500,0.249976,0,0);}
.mf4_c01158{transform:matrix(0.218936,-0.001314,0.001500,0.249996,0,0);-ms-transform:matrix(0.218936,-0.001314,0.001500,0.249996,0,0);-webkit-transform:matrix(0.218936,-0.001314,0.001500,0.249996,0,0);}
.md0_c01158{transform:matrix(0.219311,-0.001316,0.001500,0.249996,0,0);-ms-transform:matrix(0.219311,-0.001316,0.001500,0.249996,0,0);-webkit-transform:matrix(0.219311,-0.001316,0.001500,0.249996,0,0);}
.me5_c01158{transform:matrix(0.219496,-0.001317,0.001500,0.249996,0,0);-ms-transform:matrix(0.219496,-0.001317,0.001500,0.249996,0,0);-webkit-transform:matrix(0.219496,-0.001317,0.001500,0.249996,0,0);}
.mb3_c01158{transform:matrix(0.220016,-0.001320,0.001500,0.249996,0,0);-ms-transform:matrix(0.220016,-0.001320,0.001500,0.249996,0,0);-webkit-transform:matrix(0.220016,-0.001320,0.001500,0.249996,0,0);}
.mb0_c01158{transform:matrix(0.220116,-0.001321,0.001500,0.249996,0,0);-ms-transform:matrix(0.220116,-0.001321,0.001500,0.249996,0,0);-webkit-transform:matrix(0.220116,-0.001321,0.001500,0.249996,0,0);}
.m113_c01158{transform:matrix(0.220296,-0.001322,0.001500,0.249996,0,0);-ms-transform:matrix(0.220296,-0.001322,0.001500,0.249996,0,0);-webkit-transform:matrix(0.220296,-0.001322,0.001500,0.249996,0,0);}
.m23_c01158{transform:matrix(0.220488,-0.003087,0.003500,0.249976,0,0);-ms-transform:matrix(0.220488,-0.003087,0.003500,0.249976,0,0);-webkit-transform:matrix(0.220488,-0.003087,0.003500,0.249976,0,0);}
.mb7_c01158{transform:matrix(0.220876,-0.001325,0.001500,0.249996,0,0);-ms-transform:matrix(0.220876,-0.001325,0.001500,0.249996,0,0);-webkit-transform:matrix(0.220876,-0.001325,0.001500,0.249996,0,0);}
.mf9_c01158{transform:matrix(0.220896,-0.001325,0.001500,0.249996,0,0);-ms-transform:matrix(0.220896,-0.001325,0.001500,0.249996,0,0);-webkit-transform:matrix(0.220896,-0.001325,0.001500,0.249996,0,0);}
.m47_c01158{transform:matrix(0.220903,-0.003093,0.003500,0.249976,0,0);-ms-transform:matrix(0.220903,-0.003093,0.003500,0.249976,0,0);-webkit-transform:matrix(0.220903,-0.003093,0.003500,0.249976,0,0);}
.mcc_c01158{transform:matrix(0.221071,-0.001326,0.001500,0.249996,0,0);-ms-transform:matrix(0.221071,-0.001326,0.001500,0.249996,0,0);-webkit-transform:matrix(0.221071,-0.001326,0.001500,0.249996,0,0);}
.mdc_c01158{transform:matrix(0.221201,-0.001327,0.001500,0.249996,0,0);-ms-transform:matrix(0.221201,-0.001327,0.001500,0.249996,0,0);-webkit-transform:matrix(0.221201,-0.001327,0.001500,0.249996,0,0);}
.m38_c01158{transform:matrix(0.221353,-0.003099,0.003500,0.249976,0,0);-ms-transform:matrix(0.221353,-0.003099,0.003500,0.249976,0,0);-webkit-transform:matrix(0.221353,-0.003099,0.003500,0.249976,0,0);}
.m120_c01158{transform:matrix(0.221551,-0.001329,0.001500,0.249996,0,0);-ms-transform:matrix(0.221551,-0.001329,0.001500,0.249996,0,0);-webkit-transform:matrix(0.221551,-0.001329,0.001500,0.249996,0,0);}
.m9a_c01158{transform:matrix(0.221596,-0.001330,0.001500,0.249996,0,0);-ms-transform:matrix(0.221596,-0.001330,0.001500,0.249996,0,0);-webkit-transform:matrix(0.221596,-0.001330,0.001500,0.249996,0,0);}
.mfc_c01158{transform:matrix(0.221856,-0.001331,0.001500,0.249996,0,0);-ms-transform:matrix(0.221856,-0.001331,0.001500,0.249996,0,0);-webkit-transform:matrix(0.221856,-0.001331,0.001500,0.249996,0,0);}
.meb_c01158{transform:matrix(0.222121,-0.001333,0.001500,0.249996,0,0);-ms-transform:matrix(0.222121,-0.001333,0.001500,0.249996,0,0);-webkit-transform:matrix(0.222121,-0.001333,0.001500,0.249996,0,0);}
.m115_c01158{transform:matrix(0.222606,-0.001336,0.001500,0.249996,0,0);-ms-transform:matrix(0.222606,-0.001336,0.001500,0.249996,0,0);-webkit-transform:matrix(0.222606,-0.001336,0.001500,0.249996,0,0);}
.md4_c01158{transform:matrix(0.222841,-0.001337,0.001500,0.249996,0,0);-ms-transform:matrix(0.222841,-0.001337,0.001500,0.249996,0,0);-webkit-transform:matrix(0.222841,-0.001337,0.001500,0.249996,0,0);}
.m131_c01158{transform:matrix(0.223286,-0.002903,0.003250,0.249979,0,0);-ms-transform:matrix(0.223286,-0.002903,0.003250,0.249979,0,0);-webkit-transform:matrix(0.223286,-0.002903,0.003250,0.249979,0,0);}
.me7_c01158{transform:matrix(0.223376,-0.001340,0.001500,0.249996,0,0);-ms-transform:matrix(0.223376,-0.001340,0.001500,0.249996,0,0);-webkit-transform:matrix(0.223376,-0.001340,0.001500,0.249996,0,0);}
.m7_c01158{transform:matrix(0.223720,-0.003356,0.003750,0.249972,0,0);-ms-transform:matrix(0.223720,-0.003356,0.003750,0.249972,0,0);-webkit-transform:matrix(0.223720,-0.003356,0.003750,0.249972,0,0);}
.m2f_c01158{transform:matrix(0.224728,-0.003146,0.003500,0.249976,0,0);-ms-transform:matrix(0.224728,-0.003146,0.003500,0.249976,0,0);-webkit-transform:matrix(0.224728,-0.003146,0.003500,0.249976,0,0);}
.m16_c01158{transform:matrix(0.224958,-0.003149,0.003500,0.249976,0,0);-ms-transform:matrix(0.224958,-0.003149,0.003500,0.249976,0,0);-webkit-transform:matrix(0.224958,-0.003149,0.003500,0.249976,0,0);}
.m25_c01158{transform:matrix(0.225503,-0.003157,0.003500,0.249976,0,0);-ms-transform:matrix(0.225503,-0.003157,0.003500,0.249976,0,0);-webkit-transform:matrix(0.225503,-0.003157,0.003500,0.249976,0,0);}
.m107_c01158{transform:matrix(0.226061,-0.001356,0.001500,0.249996,0,0);-ms-transform:matrix(0.226061,-0.001356,0.001500,0.249996,0,0);-webkit-transform:matrix(0.226061,-0.001356,0.001500,0.249996,0,0);}
.m33_c01158{transform:matrix(0.226818,-0.003175,0.003500,0.249976,0,0);-ms-transform:matrix(0.226818,-0.003175,0.003500,0.249976,0,0);-webkit-transform:matrix(0.226818,-0.003175,0.003500,0.249976,0,0);}
.m69_c01158{transform:matrix(0.226831,-0.002041,0.002250,0.249990,0,0);-ms-transform:matrix(0.226831,-0.002041,0.002250,0.249990,0,0);-webkit-transform:matrix(0.226831,-0.002041,0.002250,0.249990,0,0);}
.mdb_c01158{transform:matrix(0.226866,-0.001361,0.001500,0.249996,0,0);-ms-transform:matrix(0.226866,-0.001361,0.001500,0.249996,0,0);-webkit-transform:matrix(0.226866,-0.001361,0.001500,0.249996,0,0);}
.m128_c01158{transform:matrix(0.227406,-0.001364,0.001500,0.249996,0,0);-ms-transform:matrix(0.227406,-0.001364,0.001500,0.249996,0,0);-webkit-transform:matrix(0.227406,-0.001364,0.001500,0.249996,0,0);}
.m5c_c01158{transform:matrix(0.227421,-0.002047,0.002250,0.249990,0,0);-ms-transform:matrix(0.227421,-0.002047,0.002250,0.249990,0,0);-webkit-transform:matrix(0.227421,-0.002047,0.002250,0.249990,0,0);}
.m123_c01158{transform:matrix(0.227911,-0.001367,0.001500,0.249996,0,0);-ms-transform:matrix(0.227911,-0.001367,0.001500,0.249996,0,0);-webkit-transform:matrix(0.227911,-0.001367,0.001500,0.249996,0,0);}
.m57_c01158{transform:matrix(0.228068,-0.003193,0.003500,0.249976,0,0);-ms-transform:matrix(0.228068,-0.003193,0.003500,0.249976,0,0);-webkit-transform:matrix(0.228068,-0.003193,0.003500,0.249976,0,0);}
.m62_c01158{transform:matrix(0.228081,-0.002053,0.002250,0.249990,0,0);-ms-transform:matrix(0.228081,-0.002053,0.002250,0.249990,0,0);-webkit-transform:matrix(0.228081,-0.002053,0.002250,0.249990,0,0);}
.m1f_c01158{transform:matrix(0.228148,-0.003194,0.003500,0.249976,0,0);-ms-transform:matrix(0.228148,-0.003194,0.003500,0.249976,0,0);-webkit-transform:matrix(0.228148,-0.003194,0.003500,0.249976,0,0);}
.m19_c01158{transform:matrix(0.228193,-0.003195,0.003500,0.249976,0,0);-ms-transform:matrix(0.228193,-0.003195,0.003500,0.249976,0,0);-webkit-transform:matrix(0.228193,-0.003195,0.003500,0.249976,0,0);}
.md6_c01158{transform:matrix(0.228351,-0.001370,0.001500,0.249996,0,0);-ms-transform:matrix(0.228351,-0.001370,0.001500,0.249996,0,0);-webkit-transform:matrix(0.228351,-0.001370,0.001500,0.249996,0,0);}
.m7d_c01158{transform:matrix(0.228956,-0.002061,0.002250,0.249990,0,0);-ms-transform:matrix(0.228956,-0.002061,0.002250,0.249990,0,0);-webkit-transform:matrix(0.228956,-0.002061,0.002250,0.249990,0,0);}
.me_c01158{transform:matrix(0.229438,-0.003212,0.003500,0.249976,0,0);-ms-transform:matrix(0.229438,-0.003212,0.003500,0.249976,0,0);-webkit-transform:matrix(0.229438,-0.003212,0.003500,0.249976,0,0);}
.m17_c01158{transform:matrix(0.229443,-0.003212,0.003500,0.249976,0,0);-ms-transform:matrix(0.229443,-0.003212,0.003500,0.249976,0,0);-webkit-transform:matrix(0.229443,-0.003212,0.003500,0.249976,0,0);}
.md7_c01158{transform:matrix(0.229451,-0.001377,0.001500,0.249996,0,0);-ms-transform:matrix(0.229451,-0.001377,0.001500,0.249996,0,0);-webkit-transform:matrix(0.229451,-0.001377,0.001500,0.249996,0,0);}
.m11f_c01158{transform:matrix(0.230096,-0.001381,0.001500,0.249996,0,0);-ms-transform:matrix(0.230096,-0.001381,0.001500,0.249996,0,0);-webkit-transform:matrix(0.230096,-0.001381,0.001500,0.249996,0,0);}
.m93_c01158{transform:matrix(0.230891,-0.001385,0.001500,0.249996,0,0);-ms-transform:matrix(0.230891,-0.001385,0.001500,0.249996,0,0);-webkit-transform:matrix(0.230891,-0.001385,0.001500,0.249996,0,0);}
.m6b_c01158{transform:matrix(0.231091,-0.002080,0.002250,0.249990,0,0);-ms-transform:matrix(0.231091,-0.002080,0.002250,0.249990,0,0);-webkit-transform:matrix(0.231091,-0.002080,0.002250,0.249990,0,0);}
.mdd_c01158{transform:matrix(0.231231,-0.001387,0.001500,0.249996,0,0);-ms-transform:matrix(0.231231,-0.001387,0.001500,0.249996,0,0);-webkit-transform:matrix(0.231231,-0.001387,0.001500,0.249996,0,0);}
.m11a_c01158{transform:matrix(0.231431,-0.001389,0.001500,0.249996,0,0);-ms-transform:matrix(0.231431,-0.001389,0.001500,0.249996,0,0);-webkit-transform:matrix(0.231431,-0.001389,0.001500,0.249996,0,0);}
.m75_c01158{transform:matrix(0.231616,-0.002085,0.002250,0.249990,0,0);-ms-transform:matrix(0.231616,-0.002085,0.002250,0.249990,0,0);-webkit-transform:matrix(0.231616,-0.002085,0.002250,0.249990,0,0);}
.m1c_c01158{transform:matrix(0.231667,-0.003243,0.003500,0.249976,0,0);-ms-transform:matrix(0.231667,-0.003243,0.003500,0.249976,0,0);-webkit-transform:matrix(0.231667,-0.003243,0.003500,0.249976,0,0);}
.m12c_c01158{transform:matrix(0.231715,-0.003012,0.003250,0.249979,0,0);-ms-transform:matrix(0.231715,-0.003012,0.003250,0.249979,0,0);-webkit-transform:matrix(0.231715,-0.003012,0.003250,0.249979,0,0);}
.mfe_c01158{transform:matrix(0.231846,-0.001391,0.001500,0.249996,0,0);-ms-transform:matrix(0.231846,-0.001391,0.001500,0.249996,0,0);-webkit-transform:matrix(0.231846,-0.001391,0.001500,0.249996,0,0);}
.m84_c01158{transform:matrix(0.232586,-0.002093,0.002250,0.249990,0,0);-ms-transform:matrix(0.232586,-0.002093,0.002250,0.249990,0,0);-webkit-transform:matrix(0.232586,-0.002093,0.002250,0.249990,0,0);}
.m8f_c01158{transform:matrix(0.232591,-0.001396,0.001500,0.249996,0,0);-ms-transform:matrix(0.232591,-0.001396,0.001500,0.249996,0,0);-webkit-transform:matrix(0.232591,-0.001396,0.001500,0.249996,0,0);}
.ma0_c01158{transform:matrix(0.232981,-0.001398,0.001500,0.249996,0,0);-ms-transform:matrix(0.232981,-0.001398,0.001500,0.249996,0,0);-webkit-transform:matrix(0.232981,-0.001398,0.001500,0.249996,0,0);}
.md3_c01158{transform:matrix(0.233016,-0.001398,0.001500,0.249996,0,0);-ms-transform:matrix(0.233016,-0.001398,0.001500,0.249996,0,0);-webkit-transform:matrix(0.233016,-0.001398,0.001500,0.249996,0,0);}
.m10a_c01158{transform:matrix(0.233226,-0.001399,0.001500,0.249996,0,0);-ms-transform:matrix(0.233226,-0.001399,0.001500,0.249996,0,0);-webkit-transform:matrix(0.233226,-0.001399,0.001500,0.249996,0,0);}
.mbc_c01158{transform:matrix(0.233296,-0.001400,0.001500,0.249996,0,0);-ms-transform:matrix(0.233296,-0.001400,0.001500,0.249996,0,0);-webkit-transform:matrix(0.233296,-0.001400,0.001500,0.249996,0,0);}
.me2_c01158{transform:matrix(0.233386,-0.001400,0.001500,0.249996,0,0);-ms-transform:matrix(0.233386,-0.001400,0.001500,0.249996,0,0);-webkit-transform:matrix(0.233386,-0.001400,0.001500,0.249996,0,0);}
.m86_c01158{transform:matrix(0.233726,-0.002104,0.002250,0.249990,0,0);-ms-transform:matrix(0.233726,-0.002104,0.002250,0.249990,0,0);-webkit-transform:matrix(0.233726,-0.002104,0.002250,0.249990,0,0);}
.m130_c01158{transform:matrix(0.233995,-0.003042,0.003250,0.249979,0,0);-ms-transform:matrix(0.233995,-0.003042,0.003250,0.249979,0,0);-webkit-transform:matrix(0.233995,-0.003042,0.003250,0.249979,0,0);}
.m79_c01158{transform:matrix(0.234156,-0.002107,0.002250,0.249990,0,0);-ms-transform:matrix(0.234156,-0.002107,0.002250,0.249990,0,0);-webkit-transform:matrix(0.234156,-0.002107,0.002250,0.249990,0,0);}
.mbb_c01158{transform:matrix(0.234221,-0.001405,0.001500,0.249996,0,0);-ms-transform:matrix(0.234221,-0.001405,0.001500,0.249996,0,0);-webkit-transform:matrix(0.234221,-0.001405,0.001500,0.249996,0,0);}
.m3e_c01158{transform:matrix(0.234237,-0.003279,0.003500,0.249976,0,0);-ms-transform:matrix(0.234237,-0.003279,0.003500,0.249976,0,0);-webkit-transform:matrix(0.234237,-0.003279,0.003500,0.249976,0,0);}
.m10f_c01158{transform:matrix(0.234781,-0.001409,0.001500,0.249996,0,0);-ms-transform:matrix(0.234781,-0.001409,0.001500,0.249996,0,0);-webkit-transform:matrix(0.234781,-0.001409,0.001500,0.249996,0,0);}
.m7e_c01158{transform:matrix(0.235070,-0.002116,0.002250,0.249990,0,0);-ms-transform:matrix(0.235070,-0.002116,0.002250,0.249990,0,0);-webkit-transform:matrix(0.235070,-0.002116,0.002250,0.249990,0,0);}
.mf7_c01158{transform:matrix(0.235571,-0.001413,0.001500,0.249996,0,0);-ms-transform:matrix(0.235571,-0.001413,0.001500,0.249996,0,0);-webkit-transform:matrix(0.235571,-0.001413,0.001500,0.249996,0,0);}
.m5f_c01158{transform:matrix(0.235870,-0.002123,0.002250,0.249990,0,0);-ms-transform:matrix(0.235870,-0.002123,0.002250,0.249990,0,0);-webkit-transform:matrix(0.235870,-0.002123,0.002250,0.249990,0,0);}
.m91_c01158{transform:matrix(0.235926,-0.001416,0.001500,0.249996,0,0);-ms-transform:matrix(0.235926,-0.001416,0.001500,0.249996,0,0);-webkit-transform:matrix(0.235926,-0.001416,0.001500,0.249996,0,0);}
.m126_c01158{transform:matrix(0.236286,-0.001418,0.001500,0.249996,0,0);-ms-transform:matrix(0.236286,-0.001418,0.001500,0.249996,0,0);-webkit-transform:matrix(0.236286,-0.001418,0.001500,0.249996,0,0);}
.m27_c01158{transform:matrix(0.236622,-0.003313,0.003500,0.249976,0,0);-ms-transform:matrix(0.236622,-0.003313,0.003500,0.249976,0,0);-webkit-transform:matrix(0.236622,-0.003313,0.003500,0.249976,0,0);}
.m8b_c01158{transform:matrix(0.236716,-0.001420,0.001500,0.249996,0,0);-ms-transform:matrix(0.236716,-0.001420,0.001500,0.249996,0,0);-webkit-transform:matrix(0.236716,-0.001420,0.001500,0.249996,0,0);}
.m3_c01158{transform:matrix(0.236873,-0.003553,0.003750,0.249972,0,0);-ms-transform:matrix(0.236873,-0.003553,0.003750,0.249972,0,0);-webkit-transform:matrix(0.236873,-0.003553,0.003750,0.249972,0,0);}
.mce_c01158{transform:matrix(0.237091,-0.001423,0.001500,0.249996,0,0);-ms-transform:matrix(0.237091,-0.001423,0.001500,0.249996,0,0);-webkit-transform:matrix(0.237091,-0.001423,0.001500,0.249996,0,0);}
.m71_c01158{transform:matrix(0.237785,-0.002140,0.002250,0.249990,0,0);-ms-transform:matrix(0.237785,-0.002140,0.002250,0.249990,0,0);-webkit-transform:matrix(0.237785,-0.002140,0.002250,0.249990,0,0);}
.m7b_c01158{transform:matrix(0.238205,-0.002144,0.002250,0.249990,0,0);-ms-transform:matrix(0.238205,-0.002144,0.002250,0.249990,0,0);-webkit-transform:matrix(0.238205,-0.002144,0.002250,0.249990,0,0);}
.mca_c01158{transform:matrix(0.238216,-0.001429,0.001500,0.249996,0,0);-ms-transform:matrix(0.238216,-0.001429,0.001500,0.249996,0,0);-webkit-transform:matrix(0.238216,-0.001429,0.001500,0.249996,0,0);}
.m96_c01158{transform:matrix(0.238896,-0.001433,0.001500,0.249996,0,0);-ms-transform:matrix(0.238896,-0.001433,0.001500,0.249996,0,0);-webkit-transform:matrix(0.238896,-0.001433,0.001500,0.249996,0,0);}
.m101_c01158{transform:matrix(0.239006,-0.001434,0.001500,0.249996,0,0);-ms-transform:matrix(0.239006,-0.001434,0.001500,0.249996,0,0);-webkit-transform:matrix(0.239006,-0.001434,0.001500,0.249996,0,0);}
.m76_c01158{transform:matrix(0.239285,-0.002154,0.002250,0.249990,0,0);-ms-transform:matrix(0.239285,-0.002154,0.002250,0.249990,0,0);-webkit-transform:matrix(0.239285,-0.002154,0.002250,0.249990,0,0);}
.m35_c01158{transform:matrix(0.239522,-0.003353,0.003500,0.249976,0,0);-ms-transform:matrix(0.239522,-0.003353,0.003500,0.249976,0,0);-webkit-transform:matrix(0.239522,-0.003353,0.003500,0.249976,0,0);}
.m37_c01158{transform:matrix(0.239567,-0.003354,0.003500,0.249976,0,0);-ms-transform:matrix(0.239567,-0.003354,0.003500,0.249976,0,0);-webkit-transform:matrix(0.239567,-0.003354,0.003500,0.249976,0,0);}
.m1a_c01158{transform:matrix(0.240041,-0.003361,0.003500,0.249976,0,0);-ms-transform:matrix(0.240041,-0.003361,0.003500,0.249976,0,0);-webkit-transform:matrix(0.240041,-0.003361,0.003500,0.249976,0,0);}
.m55_c01158{transform:matrix(0.240091,-0.003361,0.003500,0.249976,0,0);-ms-transform:matrix(0.240091,-0.003361,0.003500,0.249976,0,0);-webkit-transform:matrix(0.240091,-0.003361,0.003500,0.249976,0,0);}
.m10e_c01158{transform:matrix(0.240111,-0.001441,0.001500,0.249996,0,0);-ms-transform:matrix(0.240111,-0.001441,0.001500,0.249996,0,0);-webkit-transform:matrix(0.240111,-0.001441,0.001500,0.249996,0,0);}
.me4_c01158{transform:matrix(0.240116,-0.001441,0.001500,0.249996,0,0);-ms-transform:matrix(0.240116,-0.001441,0.001500,0.249996,0,0);-webkit-transform:matrix(0.240116,-0.001441,0.001500,0.249996,0,0);}
.m68_c01158{transform:matrix(0.240145,-0.002161,0.002250,0.249990,0,0);-ms-transform:matrix(0.240145,-0.002161,0.002250,0.249990,0,0);-webkit-transform:matrix(0.240145,-0.002161,0.002250,0.249990,0,0);}
.m45_c01158{transform:matrix(0.240361,-0.003365,0.003500,0.249976,0,0);-ms-transform:matrix(0.240361,-0.003365,0.003500,0.249976,0,0);-webkit-transform:matrix(0.240361,-0.003365,0.003500,0.249976,0,0);}
.m13_c01158{transform:matrix(0.240381,-0.003365,0.003500,0.249976,0,0);-ms-transform:matrix(0.240381,-0.003365,0.003500,0.249976,0,0);-webkit-transform:matrix(0.240381,-0.003365,0.003500,0.249976,0,0);}
.m114_c01158{transform:matrix(0.240771,-0.001445,0.001500,0.249996,0,0);-ms-transform:matrix(0.240771,-0.001445,0.001500,0.249996,0,0);-webkit-transform:matrix(0.240771,-0.001445,0.001500,0.249996,0,0);}
.m7a_c01158{transform:matrix(0.240825,-0.002167,0.002250,0.249990,0,0);-ms-transform:matrix(0.240825,-0.002167,0.002250,0.249990,0,0);-webkit-transform:matrix(0.240825,-0.002167,0.002250,0.249990,0,0);}
.mef_c01158{transform:matrix(0.241066,-0.001446,0.001500,0.249996,0,0);-ms-transform:matrix(0.241066,-0.001446,0.001500,0.249996,0,0);-webkit-transform:matrix(0.241066,-0.001446,0.001500,0.249996,0,0);}
.m9b_c01158{transform:matrix(0.241071,-0.001446,0.001500,0.249996,0,0);-ms-transform:matrix(0.241071,-0.001446,0.001500,0.249996,0,0);-webkit-transform:matrix(0.241071,-0.001446,0.001500,0.249996,0,0);}
.m26_c01158{transform:matrix(0.241276,-0.003378,0.003500,0.249976,0,0);-ms-transform:matrix(0.241276,-0.003378,0.003500,0.249976,0,0);-webkit-transform:matrix(0.241276,-0.003378,0.003500,0.249976,0,0);}
.m1d_c01158{transform:matrix(0.241296,-0.003378,0.003500,0.249976,0,0);-ms-transform:matrix(0.241296,-0.003378,0.003500,0.249976,0,0);-webkit-transform:matrix(0.241296,-0.003378,0.003500,0.249976,0,0);}
.mc1_c01158{transform:matrix(0.241411,-0.001448,0.001500,0.249996,0,0);-ms-transform:matrix(0.241411,-0.001448,0.001500,0.249996,0,0);-webkit-transform:matrix(0.241411,-0.001448,0.001500,0.249996,0,0);}
.mcf_c01158{transform:matrix(0.241696,-0.001450,0.001500,0.249996,0,0);-ms-transform:matrix(0.241696,-0.001450,0.001500,0.249996,0,0);-webkit-transform:matrix(0.241696,-0.001450,0.001500,0.249996,0,0);}
.md2_c01158{transform:matrix(0.241791,-0.001451,0.001500,0.249996,0,0);-ms-transform:matrix(0.241791,-0.001451,0.001500,0.249996,0,0);-webkit-transform:matrix(0.241791,-0.001451,0.001500,0.249996,0,0);}
.m54_c01158{transform:matrix(0.242306,-0.003392,0.003500,0.249976,0,0);-ms-transform:matrix(0.242306,-0.003392,0.003500,0.249976,0,0);-webkit-transform:matrix(0.242306,-0.003392,0.003500,0.249976,0,0);}
.m5d_c01158{transform:matrix(0.242735,-0.002185,0.002250,0.249990,0,0);-ms-transform:matrix(0.242735,-0.002185,0.002250,0.249990,0,0);-webkit-transform:matrix(0.242735,-0.002185,0.002250,0.249990,0,0);}
.m9c_c01158{transform:matrix(0.242741,-0.001456,0.001500,0.249996,0,0);-ms-transform:matrix(0.242741,-0.001456,0.001500,0.249996,0,0);-webkit-transform:matrix(0.242741,-0.001456,0.001500,0.249996,0,0);}
.m4a_c01158{transform:matrix(0.242826,-0.003400,0.003500,0.249976,0,0);-ms-transform:matrix(0.242826,-0.003400,0.003500,0.249976,0,0);-webkit-transform:matrix(0.242826,-0.003400,0.003500,0.249976,0,0);}
.m6f_c01158{transform:matrix(0.243045,-0.002187,0.002250,0.249990,0,0);-ms-transform:matrix(0.243045,-0.002187,0.002250,0.249990,0,0);-webkit-transform:matrix(0.243045,-0.002187,0.002250,0.249990,0,0);}
.mec_c01158{transform:matrix(0.243076,-0.001458,0.001500,0.249996,0,0);-ms-transform:matrix(0.243076,-0.001458,0.001500,0.249996,0,0);-webkit-transform:matrix(0.243076,-0.001458,0.001500,0.249996,0,0);}
.m97_c01158{transform:matrix(0.243281,-0.001460,0.001500,0.249996,0,0);-ms-transform:matrix(0.243281,-0.001460,0.001500,0.249996,0,0);-webkit-transform:matrix(0.243281,-0.001460,0.001500,0.249996,0,0);}
.m103_c01158{transform:matrix(0.243426,-0.001461,0.001500,0.249996,0,0);-ms-transform:matrix(0.243426,-0.001461,0.001500,0.249996,0,0);-webkit-transform:matrix(0.243426,-0.001461,0.001500,0.249996,0,0);}
.m8_c01158{transform:matrix(0.243603,-0.003654,0.003750,0.249972,0,0);-ms-transform:matrix(0.243603,-0.003654,0.003750,0.249972,0,0);-webkit-transform:matrix(0.243603,-0.003654,0.003750,0.249972,0,0);}
.m4_c01158{transform:matrix(0.243963,-0.003659,0.003750,0.249972,0,0);-ms-transform:matrix(0.243963,-0.003659,0.003750,0.249972,0,0);-webkit-transform:matrix(0.243963,-0.003659,0.003750,0.249972,0,0);}
.me8_c01158{transform:matrix(0.244041,-0.001464,0.001500,0.249996,0,0);-ms-transform:matrix(0.244041,-0.001464,0.001500,0.249996,0,0);-webkit-transform:matrix(0.244041,-0.001464,0.001500,0.249996,0,0);}
.m109_c01158{transform:matrix(0.244471,-0.001467,0.001500,0.249996,0,0);-ms-transform:matrix(0.244471,-0.001467,0.001500,0.249996,0,0);-webkit-transform:matrix(0.244471,-0.001467,0.001500,0.249996,0,0);}
.mb9_c01158{transform:matrix(0.244556,-0.001467,0.001500,0.249996,0,0);-ms-transform:matrix(0.244556,-0.001467,0.001500,0.249996,0,0);-webkit-transform:matrix(0.244556,-0.001467,0.001500,0.249996,0,0);}
.m112_c01158{transform:matrix(0.244571,-0.001467,0.001500,0.249996,0,0);-ms-transform:matrix(0.244571,-0.001467,0.001500,0.249996,0,0);-webkit-transform:matrix(0.244571,-0.001467,0.001500,0.249996,0,0);}
.m12d_c01158{transform:matrix(0.245129,-0.003187,0.003250,0.249979,0,0);-ms-transform:matrix(0.245129,-0.003187,0.003250,0.249979,0,0);-webkit-transform:matrix(0.245129,-0.003187,0.003250,0.249979,0,0);}
.m132_c01158{transform:matrix(0.245214,-0.003188,0.003250,0.249979,0,0);-ms-transform:matrix(0.245214,-0.003188,0.003250,0.249979,0,0);-webkit-transform:matrix(0.245214,-0.003188,0.003250,0.249979,0,0);}
.m29_c01158{transform:matrix(0.245366,-0.003435,0.003500,0.249976,0,0);-ms-transform:matrix(0.245366,-0.003435,0.003500,0.249976,0,0);-webkit-transform:matrix(0.245366,-0.003435,0.003500,0.249976,0,0);}
.m99_c01158{transform:matrix(0.245451,-0.001473,0.001500,0.249996,0,0);-ms-transform:matrix(0.245451,-0.001473,0.001500,0.249996,0,0);-webkit-transform:matrix(0.245451,-0.001473,0.001500,0.249996,0,0);}
.m15_c01158{transform:matrix(0.245746,-0.003440,0.003500,0.249976,0,0);-ms-transform:matrix(0.245746,-0.003440,0.003500,0.249976,0,0);-webkit-transform:matrix(0.245746,-0.003440,0.003500,0.249976,0,0);}
.m3d_c01158{transform:matrix(0.245966,-0.003444,0.003500,0.249976,0,0);-ms-transform:matrix(0.245966,-0.003444,0.003500,0.249976,0,0);-webkit-transform:matrix(0.245966,-0.003444,0.003500,0.249976,0,0);}
.m58_c01158{transform:matrix(0.246171,-0.003446,0.003500,0.249976,0,0);-ms-transform:matrix(0.246171,-0.003446,0.003500,0.249976,0,0);-webkit-transform:matrix(0.246171,-0.003446,0.003500,0.249976,0,0);}
.m11c_c01158{transform:matrix(0.246191,-0.001477,0.001500,0.249996,0,0);-ms-transform:matrix(0.246191,-0.001477,0.001500,0.249996,0,0);-webkit-transform:matrix(0.246191,-0.001477,0.001500,0.249996,0,0);}
.m4c_c01158{transform:matrix(0.246461,-0.003450,0.003500,0.249976,0,0);-ms-transform:matrix(0.246461,-0.003450,0.003500,0.249976,0,0);-webkit-transform:matrix(0.246461,-0.003450,0.003500,0.249976,0,0);}
.m52_c01158{transform:matrix(0.246596,-0.003452,0.003500,0.249976,0,0);-ms-transform:matrix(0.246596,-0.003452,0.003500,0.249976,0,0);-webkit-transform:matrix(0.246596,-0.003452,0.003500,0.249976,0,0);}
.m118_c01158{transform:matrix(0.246726,-0.001480,0.001500,0.249996,0,0);-ms-transform:matrix(0.246726,-0.001480,0.001500,0.249996,0,0);-webkit-transform:matrix(0.246726,-0.001480,0.001500,0.249996,0,0);}
.mbe_c01158{transform:matrix(0.246811,-0.001481,0.001500,0.249996,0,0);-ms-transform:matrix(0.246811,-0.001481,0.001500,0.249996,0,0);-webkit-transform:matrix(0.246811,-0.001481,0.001500,0.249996,0,0);}
.md_c01158{transform:matrix(0.246911,-0.003457,0.003500,0.249976,0,0);-ms-transform:matrix(0.246911,-0.003457,0.003500,0.249976,0,0);-webkit-transform:matrix(0.246911,-0.003457,0.003500,0.249976,0,0);}
.m67_c01158{transform:matrix(0.246930,-0.002222,0.002250,0.249990,0,0);-ms-transform:matrix(0.246930,-0.002222,0.002250,0.249990,0,0);-webkit-transform:matrix(0.246930,-0.002222,0.002250,0.249990,0,0);}
.mcb_c01158{transform:matrix(0.246936,-0.001482,0.001500,0.249996,0,0);-ms-transform:matrix(0.246936,-0.001482,0.001500,0.249996,0,0);-webkit-transform:matrix(0.246936,-0.001482,0.001500,0.249996,0,0);}
.me0_c01158{transform:matrix(0.247201,-0.001483,0.001500,0.249996,0,0);-ms-transform:matrix(0.247201,-0.001483,0.001500,0.249996,0,0);-webkit-transform:matrix(0.247201,-0.001483,0.001500,0.249996,0,0);}
.m121_c01158{transform:matrix(0.247346,-0.001484,0.001500,0.249996,0,0);-ms-transform:matrix(0.247346,-0.001484,0.001500,0.249996,0,0);-webkit-transform:matrix(0.247346,-0.001484,0.001500,0.249996,0,0);}
.m41_c01158{transform:matrix(0.247436,-0.003464,0.003500,0.249976,0,0);-ms-transform:matrix(0.247436,-0.003464,0.003500,0.249976,0,0);-webkit-transform:matrix(0.247436,-0.003464,0.003500,0.249976,0,0);}
.mf3_c01158{transform:matrix(0.247616,-0.001486,0.001500,0.249996,0,0);-ms-transform:matrix(0.247616,-0.001486,0.001500,0.249996,0,0);-webkit-transform:matrix(0.247616,-0.001486,0.001500,0.249996,0,0);}
.m18_c01158{transform:matrix(0.247686,-0.003468,0.003500,0.249976,0,0);-ms-transform:matrix(0.247686,-0.003468,0.003500,0.249976,0,0);-webkit-transform:matrix(0.247686,-0.003468,0.003500,0.249976,0,0);}
.m6d_c01158{transform:matrix(0.247745,-0.002230,0.002250,0.249990,0,0);-ms-transform:matrix(0.247745,-0.002230,0.002250,0.249990,0,0);-webkit-transform:matrix(0.247745,-0.002230,0.002250,0.249990,0,0);}
.m3f_c01158{transform:matrix(0.247786,-0.003469,0.003500,0.249976,0,0);-ms-transform:matrix(0.247786,-0.003469,0.003500,0.249976,0,0);-webkit-transform:matrix(0.247786,-0.003469,0.003500,0.249976,0,0);}
.m8c_c01158{transform:matrix(0.248246,-0.001489,0.001500,0.249996,0,0);-ms-transform:matrix(0.248246,-0.001489,0.001500,0.249996,0,0);-webkit-transform:matrix(0.248246,-0.001489,0.001500,0.249996,0,0);}
.mc7_c01158{transform:matrix(0.248301,-0.001490,0.001500,0.249996,0,0);-ms-transform:matrix(0.248301,-0.001490,0.001500,0.249996,0,0);-webkit-transform:matrix(0.248301,-0.001490,0.001500,0.249996,0,0);}
.md1_c01158{transform:matrix(0.248466,-0.001491,0.001500,0.249996,0,0);-ms-transform:matrix(0.248466,-0.001491,0.001500,0.249996,0,0);-webkit-transform:matrix(0.248466,-0.001491,0.001500,0.249996,0,0);}
.m42_c01158{transform:matrix(0.248671,-0.003481,0.003500,0.249976,0,0);-ms-transform:matrix(0.248671,-0.003481,0.003500,0.249976,0,0);-webkit-transform:matrix(0.248671,-0.003481,0.003500,0.249976,0,0);}
.m46_c01158{transform:matrix(0.248856,-0.003484,0.003500,0.249976,0,0);-ms-transform:matrix(0.248856,-0.003484,0.003500,0.249976,0,0);-webkit-transform:matrix(0.248856,-0.003484,0.003500,0.249976,0,0);}
.m65_c01158{transform:matrix(0.248965,-0.002241,0.002250,0.249990,0,0);-ms-transform:matrix(0.248965,-0.002241,0.002250,0.249990,0,0);-webkit-transform:matrix(0.248965,-0.002241,0.002250,0.249990,0,0);}
.mf6_c01158{transform:matrix(0.249636,-0.001498,0.001500,0.249996,0,0);-ms-transform:matrix(0.249636,-0.001498,0.001500,0.249996,0,0);-webkit-transform:matrix(0.249636,-0.001498,0.001500,0.249996,0,0);}
.m6c_c01158{transform:matrix(0.249655,-0.002247,0.002250,0.249990,0,0);-ms-transform:matrix(0.249655,-0.002247,0.002250,0.249990,0,0);-webkit-transform:matrix(0.249655,-0.002247,0.002250,0.249990,0,0);}
.me9_c01158{transform:matrix(0.249681,-0.001498,0.001500,0.249996,0,0);-ms-transform:matrix(0.249681,-0.001498,0.001500,0.249996,0,0);-webkit-transform:matrix(0.249681,-0.001498,0.001500,0.249996,0,0);}
.m10b_c01158{transform:matrix(0.250150,-0.001501,0.001500,0.249996,0,0);-ms-transform:matrix(0.250150,-0.001501,0.001500,0.249996,0,0);-webkit-transform:matrix(0.250150,-0.001501,0.001500,0.249996,0,0);}
.m85_c01158{transform:matrix(0.250650,-0.002256,0.002250,0.249990,0,0);-ms-transform:matrix(0.250650,-0.002256,0.002250,0.249990,0,0);-webkit-transform:matrix(0.250650,-0.002256,0.002250,0.249990,0,0);}
.mf8_c01158{transform:matrix(0.250835,-0.001505,0.001500,0.249996,0,0);-ms-transform:matrix(0.250835,-0.001505,0.001500,0.249996,0,0);-webkit-transform:matrix(0.250835,-0.001505,0.001500,0.249996,0,0);}
.m92_c01158{transform:matrix(0.251030,-0.001506,0.001500,0.249996,0,0);-ms-transform:matrix(0.251030,-0.001506,0.001500,0.249996,0,0);-webkit-transform:matrix(0.251030,-0.001506,0.001500,0.249996,0,0);}
.m6_c01158{transform:matrix(0.251132,-0.003767,0.003750,0.249972,0,0);-ms-transform:matrix(0.251132,-0.003767,0.003750,0.249972,0,0);-webkit-transform:matrix(0.251132,-0.003767,0.003750,0.249972,0,0);}
.md5_c01158{transform:matrix(0.251545,-0.001509,0.001500,0.249996,0,0);-ms-transform:matrix(0.251545,-0.001509,0.001500,0.249996,0,0);-webkit-transform:matrix(0.251545,-0.001509,0.001500,0.249996,0,0);}
.m44_c01158{transform:matrix(0.252100,-0.003529,0.003500,0.249976,0,0);-ms-transform:matrix(0.252100,-0.003529,0.003500,0.249976,0,0);-webkit-transform:matrix(0.252100,-0.003529,0.003500,0.249976,0,0);}
.mf2_c01158{transform:matrix(0.252305,-0.001514,0.001500,0.249996,0,0);-ms-transform:matrix(0.252305,-0.001514,0.001500,0.249996,0,0);-webkit-transform:matrix(0.252305,-0.001514,0.001500,0.249996,0,0);}
.m2b_c01158{transform:matrix(0.252340,-0.003533,0.003500,0.249976,0,0);-ms-transform:matrix(0.252340,-0.003533,0.003500,0.249976,0,0);-webkit-transform:matrix(0.252340,-0.003533,0.003500,0.249976,0,0);}
.m66_c01158{transform:matrix(0.252345,-0.002271,0.002250,0.249990,0,0);-ms-transform:matrix(0.252345,-0.002271,0.002250,0.249990,0,0);-webkit-transform:matrix(0.252345,-0.002271,0.002250,0.249990,0,0);}
.m12e_c01158{transform:matrix(0.252394,-0.003281,0.003250,0.249979,0,0);-ms-transform:matrix(0.252394,-0.003281,0.003250,0.249979,0,0);-webkit-transform:matrix(0.252394,-0.003281,0.003250,0.249979,0,0);}
.m72_c01158{transform:matrix(0.253525,-0.002282,0.002250,0.249990,0,0);-ms-transform:matrix(0.253525,-0.002282,0.002250,0.249990,0,0);-webkit-transform:matrix(0.253525,-0.002282,0.002250,0.249990,0,0);}
.m9_c01158{transform:matrix(0.254631,-0.003819,0.003750,0.249972,0,0);-ms-transform:matrix(0.254631,-0.003819,0.003750,0.249972,0,0);-webkit-transform:matrix(0.254631,-0.003819,0.003750,0.249972,0,0);}
.m11b_c01158{transform:matrix(0.254770,-0.001529,0.001500,0.249996,0,0);-ms-transform:matrix(0.254770,-0.001529,0.001500,0.249996,0,0);-webkit-transform:matrix(0.254770,-0.001529,0.001500,0.249996,0,0);}
.m11_c01158{transform:matrix(0.255715,-0.003580,0.003500,0.249976,0,0);-ms-transform:matrix(0.255715,-0.003580,0.003500,0.249976,0,0);-webkit-transform:matrix(0.255715,-0.003580,0.003500,0.249976,0,0);}
.m106_c01158{transform:matrix(0.255905,-0.001535,0.001500,0.249996,0,0);-ms-transform:matrix(0.255905,-0.001535,0.001500,0.249996,0,0);-webkit-transform:matrix(0.255905,-0.001535,0.001500,0.249996,0,0);}
.m4b_c01158{transform:matrix(0.256475,-0.003591,0.003500,0.249976,0,0);-ms-transform:matrix(0.256475,-0.003591,0.003500,0.249976,0,0);-webkit-transform:matrix(0.256475,-0.003591,0.003500,0.249976,0,0);}
.me1_c01158{transform:matrix(0.256510,-0.001539,0.001500,0.249996,0,0);-ms-transform:matrix(0.256510,-0.001539,0.001500,0.249996,0,0);-webkit-transform:matrix(0.256510,-0.001539,0.001500,0.249996,0,0);}
.mea_c01158{transform:matrix(0.256605,-0.001540,0.001500,0.249996,0,0);-ms-transform:matrix(0.256605,-0.001540,0.001500,0.249996,0,0);-webkit-transform:matrix(0.256605,-0.001540,0.001500,0.249996,0,0);}
.m2c_c01158{transform:matrix(0.256785,-0.003595,0.003500,0.249976,0,0);-ms-transform:matrix(0.256785,-0.003595,0.003500,0.249976,0,0);-webkit-transform:matrix(0.256785,-0.003595,0.003500,0.249976,0,0);}
.m2e_c01158{transform:matrix(0.257595,-0.003606,0.003500,0.249976,0,0);-ms-transform:matrix(0.257595,-0.003606,0.003500,0.249976,0,0);-webkit-transform:matrix(0.257595,-0.003606,0.003500,0.249976,0,0);}
.m48_c01158{transform:matrix(0.257915,-0.003611,0.003500,0.249976,0,0);-ms-transform:matrix(0.257915,-0.003611,0.003500,0.249976,0,0);-webkit-transform:matrix(0.257915,-0.003611,0.003500,0.249976,0,0);}
.m56_c01158{transform:matrix(0.258245,-0.003615,0.003500,0.249976,0,0);-ms-transform:matrix(0.258245,-0.003615,0.003500,0.249976,0,0);-webkit-transform:matrix(0.258245,-0.003615,0.003500,0.249976,0,0);}
.m12f_c01158{transform:matrix(0.259308,-0.003371,0.003250,0.249979,0,0);-ms-transform:matrix(0.259308,-0.003371,0.003250,0.249979,0,0);-webkit-transform:matrix(0.259308,-0.003371,0.003250,0.249979,0,0);}
.m21_c01158{transform:matrix(0.259770,-0.003637,0.003500,0.249976,0,0);-ms-transform:matrix(0.259770,-0.003637,0.003500,0.249976,0,0);-webkit-transform:matrix(0.259770,-0.003637,0.003500,0.249976,0,0);}
.m82_c01158{transform:matrix(0.260529,-0.002345,0.002250,0.249990,0,0);-ms-transform:matrix(0.260529,-0.002345,0.002250,0.249990,0,0);-webkit-transform:matrix(0.260529,-0.002345,0.002250,0.249990,0,0);}
.m53_c01158{transform:matrix(0.260649,-0.003649,0.003500,0.249976,0,0);-ms-transform:matrix(0.260649,-0.003649,0.003500,0.249976,0,0);-webkit-transform:matrix(0.260649,-0.003649,0.003500,0.249976,0,0);}
.m49_c01158{transform:matrix(0.261179,-0.003657,0.003500,0.249976,0,0);-ms-transform:matrix(0.261179,-0.003657,0.003500,0.249976,0,0);-webkit-transform:matrix(0.261179,-0.003657,0.003500,0.249976,0,0);}
.m116_c01158{transform:matrix(0.261630,-0.001570,0.001500,0.249996,0,0);-ms-transform:matrix(0.261630,-0.001570,0.001500,0.249996,0,0);-webkit-transform:matrix(0.261630,-0.001570,0.001500,0.249996,0,0);}
.m73_c01158{transform:matrix(0.262279,-0.002361,0.002250,0.249990,0,0);-ms-transform:matrix(0.262279,-0.002361,0.002250,0.249990,0,0);-webkit-transform:matrix(0.262279,-0.002361,0.002250,0.249990,0,0);}
.m3b_c01158{transform:matrix(0.262789,-0.003679,0.003500,0.249976,0,0);-ms-transform:matrix(0.262789,-0.003679,0.003500,0.249976,0,0);-webkit-transform:matrix(0.262789,-0.003679,0.003500,0.249976,0,0);}
.m30_c01158{transform:matrix(0.262904,-0.003681,0.003500,0.249976,0,0);-ms-transform:matrix(0.262904,-0.003681,0.003500,0.249976,0,0);-webkit-transform:matrix(0.262904,-0.003681,0.003500,0.249976,0,0);}
.mc3_c01158{transform:matrix(0.263150,-0.001579,0.001500,0.249996,0,0);-ms-transform:matrix(0.263150,-0.001579,0.001500,0.249996,0,0);-webkit-transform:matrix(0.263150,-0.001579,0.001500,0.249996,0,0);}
.m80_c01158{transform:matrix(0.263724,-0.002374,0.002250,0.249990,0,0);-ms-transform:matrix(0.263724,-0.002374,0.002250,0.249990,0,0);-webkit-transform:matrix(0.263724,-0.002374,0.002250,0.249990,0,0);}
.m39_c01158{transform:matrix(0.264024,-0.003696,0.003500,0.249976,0,0);-ms-transform:matrix(0.264024,-0.003696,0.003500,0.249976,0,0);-webkit-transform:matrix(0.264024,-0.003696,0.003500,0.249976,0,0);}
.m110_c01158{transform:matrix(0.264055,-0.001584,0.001500,0.249996,0,0);-ms-transform:matrix(0.264055,-0.001584,0.001500,0.249996,0,0);-webkit-transform:matrix(0.264055,-0.001584,0.001500,0.249996,0,0);}
.m32_c01158{transform:matrix(0.264299,-0.003700,0.003500,0.249976,0,0);-ms-transform:matrix(0.264299,-0.003700,0.003500,0.249976,0,0);-webkit-transform:matrix(0.264299,-0.003700,0.003500,0.249976,0,0);}
.m1b_c01158{transform:matrix(0.265179,-0.003713,0.003500,0.249976,0,0);-ms-transform:matrix(0.265179,-0.003713,0.003500,0.249976,0,0);-webkit-transform:matrix(0.265179,-0.003713,0.003500,0.249976,0,0);}
.m108_c01158{transform:matrix(0.265200,-0.001591,0.001500,0.249996,0,0);-ms-transform:matrix(0.265200,-0.001591,0.001500,0.249996,0,0);-webkit-transform:matrix(0.265200,-0.001591,0.001500,0.249996,0,0);}
.ma3_c01158{transform:matrix(0.265305,-0.001592,0.001500,0.249996,0,0);-ms-transform:matrix(0.265305,-0.001592,0.001500,0.249996,0,0);-webkit-transform:matrix(0.265305,-0.001592,0.001500,0.249996,0,0);}
.m81_c01158{transform:matrix(0.265874,-0.002393,0.002250,0.249990,0,0);-ms-transform:matrix(0.265874,-0.002393,0.002250,0.249990,0,0);-webkit-transform:matrix(0.265874,-0.002393,0.002250,0.249990,0,0);}
.m11d_c01158{transform:matrix(0.265915,-0.001595,0.001500,0.249996,0,0);-ms-transform:matrix(0.265915,-0.001595,0.001500,0.249996,0,0);-webkit-transform:matrix(0.265915,-0.001595,0.001500,0.249996,0,0);}
.m22_c01158{transform:matrix(0.266204,-0.003727,0.003500,0.249976,0,0);-ms-transform:matrix(0.266204,-0.003727,0.003500,0.249976,0,0);-webkit-transform:matrix(0.266204,-0.003727,0.003500,0.249976,0,0);}
.mc4_c01158{transform:matrix(0.266305,-0.001598,0.001500,0.249996,0,0);-ms-transform:matrix(0.266305,-0.001598,0.001500,0.249996,0,0);-webkit-transform:matrix(0.266305,-0.001598,0.001500,0.249996,0,0);}
.m24_c01158{transform:matrix(0.267134,-0.003740,0.003500,0.249976,0,0);-ms-transform:matrix(0.267134,-0.003740,0.003500,0.249976,0,0);-webkit-transform:matrix(0.267134,-0.003740,0.003500,0.249976,0,0);}
.m9f_c01158{transform:matrix(0.267570,-0.001605,0.001500,0.249996,0,0);-ms-transform:matrix(0.267570,-0.001605,0.001500,0.249996,0,0);-webkit-transform:matrix(0.267570,-0.001605,0.001500,0.249996,0,0);}
.m2d_c01158{transform:matrix(0.268239,-0.003755,0.003500,0.249976,0,0);-ms-transform:matrix(0.268239,-0.003755,0.003500,0.249976,0,0);-webkit-transform:matrix(0.268239,-0.003755,0.003500,0.249976,0,0);}
.m5a_c01158{transform:matrix(0.269224,-0.002423,0.002250,0.249990,0,0);-ms-transform:matrix(0.269224,-0.002423,0.002250,0.249990,0,0);-webkit-transform:matrix(0.269224,-0.002423,0.002250,0.249990,0,0);}
.m28_c01158{transform:matrix(0.269374,-0.003771,0.003500,0.249976,0,0);-ms-transform:matrix(0.269374,-0.003771,0.003500,0.249976,0,0);-webkit-transform:matrix(0.269374,-0.003771,0.003500,0.249976,0,0);}
.m3a_c01158{transform:matrix(0.270159,-0.003782,0.003500,0.249976,0,0);-ms-transform:matrix(0.270159,-0.003782,0.003500,0.249976,0,0);-webkit-transform:matrix(0.270159,-0.003782,0.003500,0.249976,0,0);}
.m50_c01158{transform:matrix(0.270443,-0.003786,0.003500,0.249976,0,0);-ms-transform:matrix(0.270443,-0.003786,0.003500,0.249976,0,0);-webkit-transform:matrix(0.270443,-0.003786,0.003500,0.249976,0,0);}
.m74_c01158{transform:matrix(0.270779,-0.002437,0.002250,0.249990,0,0);-ms-transform:matrix(0.270779,-0.002437,0.002250,0.249990,0,0);-webkit-transform:matrix(0.270779,-0.002437,0.002250,0.249990,0,0);}
.m36_c01158{transform:matrix(0.270863,-0.003792,0.003500,0.249976,0,0);-ms-transform:matrix(0.270863,-0.003792,0.003500,0.249976,0,0);-webkit-transform:matrix(0.270863,-0.003792,0.003500,0.249976,0,0);}
.mc2_c01158{transform:matrix(0.270890,-0.001625,0.001500,0.249996,0,0);-ms-transform:matrix(0.270890,-0.001625,0.001500,0.249996,0,0);-webkit-transform:matrix(0.270890,-0.001625,0.001500,0.249996,0,0);}
.m59_c01158{transform:matrix(0.271243,-0.003797,0.003500,0.249976,0,0);-ms-transform:matrix(0.271243,-0.003797,0.003500,0.249976,0,0);-webkit-transform:matrix(0.271243,-0.003797,0.003500,0.249976,0,0);}
.m70_c01158{transform:matrix(0.271364,-0.002442,0.002250,0.249990,0,0);-ms-transform:matrix(0.271364,-0.002442,0.002250,0.249990,0,0);-webkit-transform:matrix(0.271364,-0.002442,0.002250,0.249990,0,0);}
.m9d_c01158{transform:matrix(0.271620,-0.001630,0.001500,0.249996,0,0);-ms-transform:matrix(0.271620,-0.001630,0.001500,0.249996,0,0);-webkit-transform:matrix(0.271620,-0.001630,0.001500,0.249996,0,0);}
.m10c_c01158{transform:matrix(0.271675,-0.001630,0.001500,0.249996,0,0);-ms-transform:matrix(0.271675,-0.001630,0.001500,0.249996,0,0);-webkit-transform:matrix(0.271675,-0.001630,0.001500,0.249996,0,0);}
.m63_c01158{transform:matrix(0.271929,-0.002447,0.002250,0.249990,0,0);-ms-transform:matrix(0.271929,-0.002447,0.002250,0.249990,0,0);-webkit-transform:matrix(0.271929,-0.002447,0.002250,0.249990,0,0);}
.m119_c01158{transform:matrix(0.271950,-0.001632,0.001500,0.249996,0,0);-ms-transform:matrix(0.271950,-0.001632,0.001500,0.249996,0,0);-webkit-transform:matrix(0.271950,-0.001632,0.001500,0.249996,0,0);}
.m10d_c01158{transform:matrix(0.272150,-0.001633,0.001500,0.249996,0,0);-ms-transform:matrix(0.272150,-0.001633,0.001500,0.249996,0,0);-webkit-transform:matrix(0.272150,-0.001633,0.001500,0.249996,0,0);}
.m83_c01158{transform:matrix(0.272179,-0.002450,0.002250,0.249990,0,0);-ms-transform:matrix(0.272179,-0.002450,0.002250,0.249990,0,0);-webkit-transform:matrix(0.272179,-0.002450,0.002250,0.249990,0,0);}
.m8e_c01158{transform:matrix(0.272315,-0.001634,0.001500,0.249996,0,0);-ms-transform:matrix(0.272315,-0.001634,0.001500,0.249996,0,0);-webkit-transform:matrix(0.272315,-0.001634,0.001500,0.249996,0,0);}
.m105_c01158{transform:matrix(0.272945,-0.001638,0.001500,0.249996,0,0);-ms-transform:matrix(0.272945,-0.001638,0.001500,0.249996,0,0);-webkit-transform:matrix(0.272945,-0.001638,0.001500,0.249996,0,0);}
.m34_c01158{transform:matrix(0.273103,-0.003823,0.003500,0.249976,0,0);-ms-transform:matrix(0.273103,-0.003823,0.003500,0.249976,0,0);-webkit-transform:matrix(0.273103,-0.003823,0.003500,0.249976,0,0);}
.m9e_c01158{transform:matrix(0.273110,-0.001639,0.001500,0.249996,0,0);-ms-transform:matrix(0.273110,-0.001639,0.001500,0.249996,0,0);-webkit-transform:matrix(0.273110,-0.001639,0.001500,0.249996,0,0);}
.mc6_c01158{transform:matrix(0.273255,-0.001640,0.001500,0.249996,0,0);-ms-transform:matrix(0.273255,-0.001640,0.001500,0.249996,0,0);-webkit-transform:matrix(0.273255,-0.001640,0.001500,0.249996,0,0);}
.m8d_c01158{transform:matrix(0.273755,-0.001643,0.001500,0.249996,0,0);-ms-transform:matrix(0.273755,-0.001643,0.001500,0.249996,0,0);-webkit-transform:matrix(0.273755,-0.001643,0.001500,0.249996,0,0);}
.m20_c01158{transform:matrix(0.274128,-0.003838,0.003500,0.249976,0,0);-ms-transform:matrix(0.274128,-0.003838,0.003500,0.249976,0,0);-webkit-transform:matrix(0.274128,-0.003838,0.003500,0.249976,0,0);}
.m78_c01158{transform:matrix(0.274629,-0.002472,0.002250,0.249990,0,0);-ms-transform:matrix(0.274629,-0.002472,0.002250,0.249990,0,0);-webkit-transform:matrix(0.274629,-0.002472,0.002250,0.249990,0,0);}
.ma2_c01158{transform:matrix(0.274890,-0.001649,0.001500,0.249996,0,0);-ms-transform:matrix(0.274890,-0.001649,0.001500,0.249996,0,0);-webkit-transform:matrix(0.274890,-0.001649,0.001500,0.249996,0,0);}
.ma1_c01158{transform:matrix(0.274925,-0.001650,0.001500,0.249996,0,0);-ms-transform:matrix(0.274925,-0.001650,0.001500,0.249996,0,0);-webkit-transform:matrix(0.274925,-0.001650,0.001500,0.249996,0,0);}
.m1e_c01158{transform:matrix(0.275773,-0.003861,0.003500,0.249976,0,0);-ms-transform:matrix(0.275773,-0.003861,0.003500,0.249976,0,0);-webkit-transform:matrix(0.275773,-0.003861,0.003500,0.249976,0,0);}
.m6a_c01158{transform:matrix(0.276609,-0.002489,0.002250,0.249990,0,0);-ms-transform:matrix(0.276609,-0.002489,0.002250,0.249990,0,0);-webkit-transform:matrix(0.276609,-0.002489,0.002250,0.249990,0,0);}
.m31_c01158{transform:matrix(0.277008,-0.003878,0.003500,0.249976,0,0);-ms-transform:matrix(0.277008,-0.003878,0.003500,0.249976,0,0);-webkit-transform:matrix(0.277008,-0.003878,0.003500,0.249976,0,0);}
.m5e_c01158{transform:matrix(0.278204,-0.002504,0.002250,0.249990,0,0);-ms-transform:matrix(0.278204,-0.002504,0.002250,0.249990,0,0);-webkit-transform:matrix(0.278204,-0.002504,0.002250,0.249990,0,0);}
.m5b_c01158{transform:matrix(0.278629,-0.002508,0.002250,0.249990,0,0);-ms-transform:matrix(0.278629,-0.002508,0.002250,0.249990,0,0);-webkit-transform:matrix(0.278629,-0.002508,0.002250,0.249990,0,0);}
.m90_c01158{transform:matrix(0.278635,-0.001672,0.001500,0.249996,0,0);-ms-transform:matrix(0.278635,-0.001672,0.001500,0.249996,0,0);-webkit-transform:matrix(0.278635,-0.001672,0.001500,0.249996,0,0);}
.m10_c01158{transform:matrix(0.279243,-0.003909,0.003500,0.249976,0,0);-ms-transform:matrix(0.279243,-0.003909,0.003500,0.249976,0,0);-webkit-transform:matrix(0.279243,-0.003909,0.003500,0.249976,0,0);}
.m77_c01158{transform:matrix(0.279739,-0.002518,0.002250,0.249990,0,0);-ms-transform:matrix(0.279739,-0.002518,0.002250,0.249990,0,0);-webkit-transform:matrix(0.279739,-0.002518,0.002250,0.249990,0,0);}
.m7c_c01158{transform:matrix(0.280689,-0.002526,0.002250,0.249990,0,0);-ms-transform:matrix(0.280689,-0.002526,0.002250,0.249990,0,0);-webkit-transform:matrix(0.280689,-0.002526,0.002250,0.249990,0,0);}
.m6e_c01158{transform:matrix(0.280794,-0.002527,0.002250,0.249990,0,0);-ms-transform:matrix(0.280794,-0.002527,0.002250,0.249990,0,0);-webkit-transform:matrix(0.280794,-0.002527,0.002250,0.249990,0,0);}
.m7f_c01158{transform:matrix(0.281279,-0.002532,0.002250,0.249990,0,0);-ms-transform:matrix(0.281279,-0.002532,0.002250,0.249990,0,0);-webkit-transform:matrix(0.281279,-0.002532,0.002250,0.249990,0,0);}
.m61_c01158{transform:matrix(0.282609,-0.002543,0.002250,0.249990,0,0);-ms-transform:matrix(0.282609,-0.002543,0.002250,0.249990,0,0);-webkit-transform:matrix(0.282609,-0.002543,0.002250,0.249990,0,0);}
.mbf_c01158{transform:matrix(0.284655,-0.001708,0.001500,0.249996,0,0);-ms-transform:matrix(0.284655,-0.001708,0.001500,0.249996,0,0);-webkit-transform:matrix(0.284655,-0.001708,0.001500,0.249996,0,0);}
.m117_c01158{transform:matrix(0.284860,-0.001709,0.001500,0.249996,0,0);-ms-transform:matrix(0.284860,-0.001709,0.001500,0.249996,0,0);-webkit-transform:matrix(0.284860,-0.001709,0.001500,0.249996,0,0);}
.m4d_c01158{transform:matrix(0.289532,-0.004053,0.003500,0.249976,0,0);-ms-transform:matrix(0.289532,-0.004053,0.003500,0.249976,0,0);-webkit-transform:matrix(0.289532,-0.004053,0.003500,0.249976,0,0);}
.m4e_c01158{transform:matrix(0.296841,-0.004156,0.003500,0.249976,0,0);-ms-transform:matrix(0.296841,-0.004156,0.003500,0.249976,0,0);-webkit-transform:matrix(0.296841,-0.004156,0.003500,0.249976,0,0);}
.m51_c01158{transform:matrix(0.301290,-0.004218,0.003500,0.249976,0,0);-ms-transform:matrix(0.301290,-0.004218,0.003500,0.249976,0,0);-webkit-transform:matrix(0.301290,-0.004218,0.003500,0.249976,0,0);}
.m4f_c01158{transform:matrix(0.302915,-0.004241,0.003500,0.249976,0,0);-ms-transform:matrix(0.302915,-0.004241,0.003500,0.249976,0,0);-webkit-transform:matrix(0.302915,-0.004241,0.003500,0.249976,0,0);}
.m1_c01158{transform:matrix(0.305900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305900,0.000000,0.000000,0.250000,0,0);}
.mf_c01158{transform:matrix(0.340022,-0.004760,0.003500,0.249976,0,0);-ms-transform:matrix(0.340022,-0.004760,0.003500,0.249976,0,0);-webkit-transform:matrix(0.340022,-0.004760,0.003500,0.249976,0,0);}
.m94_c01158{transform:matrix(0.348654,-0.002092,0.001500,0.249996,0,0);-ms-transform:matrix(0.348654,-0.002092,0.001500,0.249996,0,0);-webkit-transform:matrix(0.348654,-0.002092,0.001500,0.249996,0,0);}
.m95_c01158{transform:matrix(0.353074,-0.002118,0.001500,0.249996,0,0);-ms-transform:matrix(0.353074,-0.002118,0.001500,0.249996,0,0);-webkit-transform:matrix(0.353074,-0.002118,0.001500,0.249996,0,0);}
.mc_c01158{transform:matrix(0.406725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406725,0.000000,0.000000,0.250000,0,0);}
.mc8_c01158{transform:matrix(0.520346,-0.003122,0.001500,0.249996,0,0);-ms-transform:matrix(0.520346,-0.003122,0.001500,0.249996,0,0);-webkit-transform:matrix(0.520346,-0.003122,0.001500,0.249996,0,0);}
.m12b_c01158{transform:matrix(0.554493,-0.011644,0.005249,0.249945,0,0);-ms-transform:matrix(0.554493,-0.011644,0.005249,0.249945,0,0);-webkit-transform:matrix(0.554493,-0.011644,0.005249,0.249945,0,0);}
.ma_c01158{transform:matrix(1.952740,-0.031244,0.003999,0.249968,0,0);-ms-transform:matrix(1.952740,-0.031244,0.003999,0.249968,0,0);-webkit-transform:matrix(1.952740,-0.031244,0.003999,0.249968,0,0);}
.mb_c01158{transform:matrix(4.264204,-0.068227,0.003999,0.249968,0,0);-ms-transform:matrix(4.264204,-0.068227,0.003999,0.249968,0,0);-webkit-transform:matrix(4.264204,-0.068227,0.003999,0.249968,0,0);}
.v0_c01158{vertical-align:0.000000px;}
.ls0_c01158{letter-spacing:0.000000px;}
.sc__c01158{text-shadow:none;}
.sc0_c01158{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__c01158{-webkit-text-stroke:0px transparent;}
.sc0_c01158{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01158{word-spacing:0.000000px;}
.fc0_c01158{color:transparent;}
.fs2_c01158{font-size:30.003840px;}
.fs3_c01158{font-size:36.000000px;}
.fsd_c01158{font-size:36.007937px;}
.fs0_c01158{font-size:60.000000px;}
.fs6_c01158{font-size:66.006468px;}
.fs9_c01158{font-size:72.001296px;}
.fs7_c01158{font-size:72.002916px;}
.fs5_c01158{font-size:72.007056px;}
.fsa_c01158{font-size:78.001404px;}
.fse_c01158{font-size:78.006591px;}
.fs4_c01158{font-size:78.007644px;}
.fs1_c01158{font-size:78.008775px;}
.fsc_c01158{font-size:84.001512px;}
.fsb_c01158{font-size:90.001620px;}
.fs8_c01158{font-size:102.004131px;}
.y0_c01158{bottom:0.000000px;}
.y12d_c01158{bottom:61.293000px;}
.y12e_c01158{bottom:61.703495px;}
.y12f_c01158{bottom:62.560637px;}
.y130_c01158{bottom:63.585752px;}
.y131_c01158{bottom:65.284357px;}
.y132_c01158{bottom:67.452758px;}
.y133_c01158{bottom:68.155284px;}
.y12c_c01158{bottom:90.972000px;}
.y122_c01158{bottom:137.961774px;}
.y121_c01158{bottom:137.961783px;}
.y128_c01158{bottom:137.961798px;}
.y129_c01158{bottom:137.962029px;}
.y12a_c01158{bottom:137.962140px;}
.y127_c01158{bottom:137.962158px;}
.y125_c01158{bottom:137.962236px;}
.y126_c01158{bottom:137.962347px;}
.y123_c01158{bottom:137.962434px;}
.y124_c01158{bottom:137.962716px;}
.y12b_c01158{bottom:137.962791px;}
.y114_c01158{bottom:168.747333px;}
.y115_c01158{bottom:169.463214px;}
.y116_c01158{bottom:169.888923px;}
.y117_c01158{bottom:170.457588px;}
.y118_c01158{bottom:170.886354px;}
.y119_c01158{bottom:171.739032px;}
.y11a_c01158{bottom:173.767356px;}
.y11b_c01158{bottom:174.318669px;}
.y11c_c01158{bottom:175.483194px;}
.y11d_c01158{bottom:175.928916px;}
.y11e_c01158{bottom:176.631114px;}
.y11f_c01158{bottom:177.065976px;}
.y120_c01158{bottom:178.088850px;}
.y107_c01158{bottom:201.960504px;}
.y108_c01158{bottom:203.542203px;}
.y109_c01158{bottom:203.904477px;}
.y10a_c01158{bottom:204.401583px;}
.y10b_c01158{bottom:205.645161px;}
.y10c_c01158{bottom:206.360802px;}
.y10d_c01158{bottom:207.049224px;}
.y10e_c01158{bottom:207.769638px;}
.y10f_c01158{bottom:209.380317px;}
.y110_c01158{bottom:211.305396px;}
.y111_c01158{bottom:211.660236px;}
.y112_c01158{bottom:212.192694px;}
.y113_c01158{bottom:213.284667px;}
.yfc_c01158{bottom:238.679328px;}
.yfd_c01158{bottom:239.141553px;}
.yfe_c01158{bottom:240.075774px;}
.yff_c01158{bottom:241.146306px;}
.y100_c01158{bottom:241.928646px;}
.y101_c01158{bottom:243.146403px;}
.y102_c01158{bottom:243.614121px;}
.y103_c01158{bottom:244.388496px;}
.y104_c01158{bottom:245.926908px;}
.y105_c01158{bottom:246.562482px;}
.y106_c01158{bottom:248.413044px;}
.yef_c01158{bottom:277.555395px;}
.yf0_c01158{bottom:277.861605px;}
.yf1_c01158{bottom:278.251656px;}
.yf2_c01158{bottom:278.840151px;}
.yf3_c01158{bottom:279.143088px;}
.yf4_c01158{bottom:279.542430px;}
.yf5_c01158{bottom:280.527030px;}
.yf6_c01158{bottom:281.418570px;}
.yf7_c01158{bottom:281.727783px;}
.yf8_c01158{bottom:282.021321px;}
.yf9_c01158{bottom:282.714030px;}
.yfa_c01158{bottom:283.023315px;}
.yfb_c01158{bottom:283.823034px;}
.yed_c01158{bottom:317.080182px;}
.yee_c01158{bottom:317.080422px;}
.yeb_c01158{bottom:317.080440px;}
.ye9_c01158{bottom:317.080749px;}
.yec_c01158{bottom:317.080911px;}
.yea_c01158{bottom:317.081109px;}
.ye5_c01158{bottom:317.081178px;}
.ye8_c01158{bottom:317.081229px;}
.ye4_c01158{bottom:317.081478px;}
.ye3_c01158{bottom:317.081616px;}
.ye6_c01158{bottom:317.081838px;}
.ye7_c01158{bottom:317.081889px;}
.yd7_c01158{bottom:345.330927px;}
.yd8_c01158{bottom:346.559400px;}
.yd9_c01158{bottom:346.866417px;}
.yda_c01158{bottom:347.947584px;}
.ydb_c01158{bottom:348.276258px;}
.ydc_c01158{bottom:349.187214px;}
.ydd_c01158{bottom:349.643910px;}
.yde_c01158{bottom:350.586150px;}
.ydf_c01158{bottom:350.869569px;}
.ye0_c01158{bottom:352.124364px;}
.ye1_c01158{bottom:352.898874px;}
.ye2_c01158{bottom:353.371374px;}
.yca_c01158{bottom:380.697333px;}
.ycb_c01158{bottom:381.080610px;}
.ycc_c01158{bottom:381.758433px;}
.ycd_c01158{bottom:382.838235px;}
.yce_c01158{bottom:383.471958px;}
.ycf_c01158{bottom:383.861403px;}
.yd0_c01158{bottom:384.521874px;}
.yd1_c01158{bottom:385.191471px;}
.yd2_c01158{bottom:385.733763px;}
.yd3_c01158{bottom:386.780460px;}
.yd4_c01158{bottom:387.581010px;}
.yd5_c01158{bottom:388.252359px;}
.yd6_c01158{bottom:388.668804px;}
.ybf_c01158{bottom:416.881662px;}
.yc0_c01158{bottom:418.887987px;}
.yc1_c01158{bottom:419.163153px;}
.yc2_c01158{bottom:419.591919px;}
.yc3_c01158{bottom:420.605982px;}
.yc4_c01158{bottom:421.461843px;}
.yc5_c01158{bottom:422.334282px;}
.yc6_c01158{bottom:422.632761px;}
.yc7_c01158{bottom:423.909144px;}
.yc8_c01158{bottom:424.338054px;}
.yc9_c01158{bottom:424.789377px;}
.yb3_c01158{bottom:451.979286px;}
.yb4_c01158{bottom:452.590317px;}
.yb5_c01158{bottom:452.828268px;}
.yb6_c01158{bottom:453.550275px;}
.yb7_c01158{bottom:453.925629px;}
.yb8_c01158{bottom:454.658778px;}
.yb9_c01158{bottom:455.243427px;}
.yba_c01158{bottom:456.721917px;}
.ybb_c01158{bottom:457.212933px;}
.ybc_c01158{bottom:458.291502px;}
.ybd_c01158{bottom:459.280674px;}
.ybe_c01158{bottom:459.535008px;}
.ya4_c01158{bottom:487.889958px;}
.ya5_c01158{bottom:488.687712px;}
.ya6_c01158{bottom:489.089925px;}
.ya7_c01158{bottom:489.743823px;}
.ya8_c01158{bottom:490.013580px;}
.ya9_c01158{bottom:490.803090px;}
.yaa_c01158{bottom:491.195808px;}
.yab_c01158{bottom:492.122610px;}
.yac_c01158{bottom:492.527646px;}
.yad_c01158{bottom:493.191201px;}
.yae_c01158{bottom:493.590060px;}
.yaf_c01158{bottom:494.256420px;}
.yb0_c01158{bottom:494.472987px;}
.yb1_c01158{bottom:494.910939px;}
.yb2_c01158{bottom:495.847038px;}
.y9b_c01158{bottom:527.850000px;}
.y9c_c01158{bottom:528.060645px;}
.y9d_c01158{bottom:528.645501px;}
.y9e_c01158{bottom:529.113645px;}
.y9f_c01158{bottom:529.640163px;}
.ya0_c01158{bottom:529.832961px;}
.ya1_c01158{bottom:530.310933px;}
.ya2_c01158{bottom:530.905320px;}
.ya3_c01158{bottom:531.111159px;}
.y95_c01158{bottom:561.601686px;}
.y96_c01158{bottom:562.368528px;}
.y97_c01158{bottom:563.581755px;}
.y98_c01158{bottom:564.043458px;}
.y99_c01158{bottom:565.295151px;}
.y9a_c01158{bottom:565.907127px;}
.y89_c01158{bottom:600.480000px;}
.y8a_c01158{bottom:600.762411px;}
.y8b_c01158{bottom:601.089669px;}
.y8c_c01158{bottom:601.357014px;}
.y8d_c01158{bottom:602.024445px;}
.y8e_c01158{bottom:602.550846px;}
.y8f_c01158{bottom:602.753472px;}
.y90_c01158{bottom:603.412731px;}
.y91_c01158{bottom:603.623313px;}
.y92_c01158{bottom:603.950643px;}
.y93_c01158{bottom:604.143432px;}
.y94_c01158{bottom:604.276308px;}
.y86_c01158{bottom:631.262001px;}
.y87_c01158{bottom:632.762554px;}
.y88_c01158{bottom:633.622146px;}
.y7b_c01158{bottom:666.357025px;}
.y7c_c01158{bottom:667.693485px;}
.y7d_c01158{bottom:668.064870px;}
.y7e_c01158{bottom:668.412302px;}
.y7f_c01158{bottom:669.639378px;}
.y80_c01158{bottom:670.244598px;}
.y81_c01158{bottom:670.989568px;}
.y82_c01158{bottom:671.939695px;}
.y83_c01158{bottom:672.928562px;}
.y84_c01158{bottom:673.308561px;}
.y85_c01158{bottom:673.905207px;}
.y6f_c01158{bottom:700.651542px;}
.y70_c01158{bottom:701.967468px;}
.y71_c01158{bottom:702.291097px;}
.y72_c01158{bottom:703.304097px;}
.y73_c01158{bottom:704.425909px;}
.y74_c01158{bottom:705.438072px;}
.y75_c01158{bottom:705.936530px;}
.y76_c01158{bottom:706.423453px;}
.y77_c01158{bottom:708.411394px;}
.y78_c01158{bottom:709.604785px;}
.y79_c01158{bottom:710.265226px;}
.y7a_c01158{bottom:710.925263px;}
.y62_c01158{bottom:736.561810px;}
.y63_c01158{bottom:737.731730px;}
.y64_c01158{bottom:738.073011px;}
.y65_c01158{bottom:739.044860px;}
.y66_c01158{bottom:739.870593px;}
.y67_c01158{bottom:740.530224px;}
.y68_c01158{bottom:741.198484px;}
.y69_c01158{bottom:741.685260px;}
.y6a_c01158{bottom:743.349896px;}
.y6b_c01158{bottom:743.848434px;}
.y6c_c01158{bottom:744.519855px;}
.y6d_c01158{bottom:744.860921px;}
.y6e_c01158{bottom:746.694562px;}
.y59_c01158{bottom:776.251500px;}
.y5a_c01158{bottom:776.939204px;}
.y5b_c01158{bottom:777.930671px;}
.y5c_c01158{bottom:778.229587px;}
.y5d_c01158{bottom:778.538292px;}
.y5e_c01158{bottom:779.529516px;}
.y5f_c01158{bottom:779.935313px;}
.y60_c01158{bottom:780.219987px;}
.y61_c01158{bottom:781.325246px;}
.y53_c01158{bottom:808.901919px;}
.y54_c01158{bottom:809.757906px;}
.y55_c01158{bottom:810.789690px;}
.y56_c01158{bottom:812.247147px;}
.y57_c01158{bottom:812.874294px;}
.y58_c01158{bottom:813.514836px;}
.y46_c01158{bottom:844.544838px;}
.y47_c01158{bottom:845.023239px;}
.y48_c01158{bottom:845.533578px;}
.y49_c01158{bottom:846.344166px;}
.y4a_c01158{bottom:846.841833px;}
.y4b_c01158{bottom:847.497630px;}
.y4c_c01158{bottom:847.996431px;}
.y4d_c01158{bottom:849.166851px;}
.y4e_c01158{bottom:850.648953px;}
.y4f_c01158{bottom:852.139518px;}
.y50_c01158{bottom:852.795483px;}
.y51_c01158{bottom:854.144076px;}
.y52_c01158{bottom:854.649009px;}
.y3b_c01158{bottom:879.919917px;}
.y3c_c01158{bottom:880.397751px;}
.y3d_c01158{bottom:881.418210px;}
.y3e_c01158{bottom:881.713629px;}
.y3f_c01158{bottom:883.061886px;}
.y40_c01158{bottom:883.722240px;}
.y41_c01158{bottom:885.046884px;}
.y42_c01158{bottom:886.374573px;}
.y43_c01158{bottom:886.877154px;}
.y44_c01158{bottom:888.225873px;}
.y45_c01158{bottom:889.526295px;}
.y30_c01158{bottom:916.103055px;}
.y31_c01158{bottom:917.210385px;}
.y32_c01158{bottom:918.431619px;}
.y33_c01158{bottom:918.877890px;}
.y34_c01158{bottom:919.981230px;}
.y35_c01158{bottom:920.609382px;}
.y36_c01158{bottom:922.150992px;}
.y37_c01158{bottom:922.472481px;}
.y38_c01158{bottom:922.926837px;}
.y39_c01158{bottom:924.000189px;}
.y3a_c01158{bottom:925.247736px;}
.y22_c01158{bottom:950.396580px;}
.y23_c01158{bottom:950.858118px;}
.y24_c01158{bottom:952.082880px;}
.y25_c01158{bottom:952.548135px;}
.y26_c01158{bottom:953.020110px;}
.y27_c01158{bottom:953.618400px;}
.y28_c01158{bottom:954.558675px;}
.y29_c01158{bottom:954.879996px;}
.y2a_c01158{bottom:955.349577px;}
.y2b_c01158{bottom:956.105283px;}
.y2c_c01158{bottom:957.031614px;}
.y2d_c01158{bottom:958.278531px;}
.y2e_c01158{bottom:959.068530px;}
.y2f_c01158{bottom:959.518833px;}
.y16_c01158{bottom:985.227912px;}
.y17_c01158{bottom:985.795347px;}
.y18_c01158{bottom:987.022893px;}
.y19_c01158{bottom:987.530691px;}
.y1a_c01158{bottom:988.190436px;}
.y1b_c01158{bottom:989.356677px;}
.y1c_c01158{bottom:990.008736px;}
.y1d_c01158{bottom:990.665436px;}
.y1e_c01158{bottom:992.001147px;}
.y1f_c01158{bottom:992.508315px;}
.y20_c01158{bottom:993.853296px;}
.y21_c01158{bottom:995.149812px;}
.yc_c01158{bottom:1023.843000px;}
.yd_c01158{bottom:1024.780188px;}
.ye_c01158{bottom:1025.570607px;}
.yf_c01158{bottom:1027.136493px;}
.y10_c01158{bottom:1027.577766px;}
.y11_c01158{bottom:1029.119481px;}
.y12_c01158{bottom:1029.585492px;}
.y13_c01158{bottom:1030.359321px;}
.y14_c01158{bottom:1030.677597px;}
.y15_c01158{bottom:1031.758047px;}
.yb_c01158{bottom:1083.045000px;}
.y9_c01158{bottom:1114.293000px;}
.ya_c01158{bottom:1117.801416px;}
.y2_c01158{bottom:1129.683000px;}
.y3_c01158{bottom:1130.517278px;}
.y4_c01158{bottom:1131.829882px;}
.y5_c01158{bottom:1132.315837px;}
.y6_c01158{bottom:1133.510025px;}
.y7_c01158{bottom:1133.802435px;}
.y8_c01158{bottom:1135.151535px;}
.y1_c01158{bottom:1210.683000px;}
.h4_c01158{height:30.003840px;}
.h5_c01158{height:36.000000px;}
.hf_c01158{height:36.007937px;}
.h2_c01158{height:60.000000px;}
.h8_c01158{height:66.006468px;}
.hb_c01158{height:72.001296px;}
.h9_c01158{height:72.002916px;}
.h7_c01158{height:72.007056px;}
.hc_c01158{height:78.001404px;}
.h10_c01158{height:78.006591px;}
.h6_c01158{height:78.007644px;}
.h3_c01158{height:78.008775px;}
.he_c01158{height:84.001512px;}
.hd_c01158{height:90.001620px;}
.ha_c01158{height:102.004131px;}
.h1_c01158{height:1258.500000px;}
.h0_c01158{height:1258.740000px;}
.w1_c01158{width:883.500000px;}
.w0_c01158{width:883.650000px;}
.x0_c01158{left:0.000000px;}
.x2d_c01158{left:117.375237px;}
.x17_c01158{left:118.683435px;}
.x39_c01158{left:121.112088px;}
.x5c_c01158{left:122.800017px;}
.x79_c01158{left:125.738265px;}
.x90_c01158{left:126.797823px;}
.xa1_c01158{left:128.400057px;}
.xb2_c01158{left:130.412310px;}
.xc3_c01158{left:131.751060px;}
.xd8_c01158{left:133.849500px;}
.x22_c01158{left:151.399929px;}
.x3a_c01158{left:153.033147px;}
.x18_c01158{left:156.535410px;}
.xa2_c01158{left:160.278405px;}
.xb9_c01158{left:163.980330px;}
.x46_c01158{left:165.719751px;}
.x6c_c01158{left:179.028023px;}
.x7a_c01158{left:180.542637px;}
.x91_c01158{left:182.384658px;}
.x3b_c01158{left:187.021164px;}
.x84_c01158{left:192.150933px;}
.x2e_c01158{left:196.470237px;}
.x50_c01158{left:199.160007px;}
.x92_c01158{left:204.042510px;}
.xba_c01158{left:207.238047px;}
.x6d_c01158{left:208.977000px;}
.x5d_c01158{left:210.509279px;}
.x4_c01158{left:214.317000px;}
.xa3_c01158{left:216.746871px;}
.x33_c01158{left:219.213186px;}
.x51_c01158{left:221.912278px;}
.xd_c01158{left:226.206000px;}
.xbe_c01158{left:230.570934px;}
.x49_c01158{left:231.790500px;}
.x7c_c01158{left:234.715500px;}
.x19_c01158{left:238.323255px;}
.x3c_c01158{left:241.062408px;}
.x66_c01158{left:243.433386px;}
.xc4_c01158{left:253.239270px;}
.x6e_c01158{left:256.045500px;}
.xcb_c01158{left:263.458812px;}
.x7b_c01158{left:267.242979px;}
.x5_c01158{left:269.935500px;}
.x1a_c01158{left:272.129772px;}
.x3d_c01158{left:274.252446px;}
.x67_c01158{left:277.197779px;}
.x85_c01158{left:280.166265px;}
.x9a_c01158{left:281.785443px;}
.x2f_c01158{left:283.701237px;}
.x52_c01158{left:286.725282px;}
.xe_c01158{left:293.148000px;}
.xb3_c01158{left:294.845232px;}
.x47_c01158{left:296.692074px;}
.x5e_c01158{left:299.685473px;}
.x86_c01158{left:302.624955px;}
.x93_c01158{left:303.683013px;}
.x23_c01158{left:305.827929px;}
.xbf_c01158{left:306.989262px;}
.x4a_c01158{left:308.202000px;}
.x6f_c01158{left:310.588500px;}
.x1b_c01158{left:316.146663px;}
.x3e_c01158{left:317.987337px;}
.xb4_c01158{left:326.706375px;}
.x34_c01158{left:328.795653px;}
.x9b_c01158{left:335.855166px;}
.xac_c01158{left:339.089661px;}
.x53_c01158{left:341.803812px;}
.x24_c01158{left:348.562929px;}
.xf_c01158{left:349.606500px;}
.x3f_c01158{left:351.258375px;}
.x70_c01158{left:355.146000px;}
.x6_c01158{left:357.442500px;}
.xa4_c01158{left:359.579232px;}
.xc5_c01158{left:362.096745px;}
.x48_c01158{left:363.450912px;}
.x7d_c01158{left:367.299000px;}
.x87_c01158{left:368.457588px;}
.x94_c01158{left:370.372515px;}
.x35_c01158{left:372.856044px;}
.x5f_c01158{left:374.493936px;}
.x1_c01158{left:383.130000px;}
.x54_c01158{left:385.760436px;}
.x7_c01158{left:389.839500px;}
.xa5_c01158{left:391.985562px;}
.x1c_c01158{left:393.877071px;}
.xd1_c01158{left:396.096549px;}
.x88_c01158{left:401.159409px;}
.xc_c01158{left:402.300000px;}
.x2_c01158{left:405.000000px;}
.xc6_c01158{left:406.867563px;}
.x9c_c01158{left:413.862390px;}
.x25_c01158{left:415.725429px;}
.x4b_c01158{left:418.365000px;}
.x68_c01158{left:420.307200px;}
.x95_c01158{left:423.562422px;}
.xb5_c01158{left:426.608475px;}
.x40_c01158{left:429.287283px;}
.x55_c01158{left:430.342533px;}
.xb_c01158{left:433.002000px;}
.x1d_c01158{left:437.344962px;}
.x26_c01158{left:438.676929px;}
.xd9_c01158{left:440.877000px;}
.x60_c01158{left:441.952791px;}
.x7e_c01158{left:445.323000px;}
.xa6_c01158{left:447.062082px;}
.x3_c01158{left:449.550000px;}
.x4c_c01158{left:451.578000px;}
.xb6_c01158{left:459.279654px;}
.x10_c01158{left:461.455500px;}
.x56_c01158{left:462.760278px;}
.x71_c01158{left:466.384500px;}
.x8_c01158{left:469.452000px;}
.x27_c01158{left:472.218429px;}
.x61_c01158{left:475.168496px;}
.x89_c01158{left:478.373628px;}
.x9d_c01158{left:479.753127px;}
.x1e_c01158{left:481.144353px;}
.xc0_c01158{left:483.283302px;}
.x4d_c01158{left:485.878500px;}
.x9_c01158{left:488.946000px;}
.x11_c01158{left:492.975000px;}
.xc7_c01158{left:494.918280px;}
.xd2_c01158{left:496.538667px;}
.xa7_c01158{left:502.909575px;}
.xad_c01158{left:504.063741px;}
.x62_c01158{left:507.602741px;}
.x8a_c01158{left:512.128413px;}
.xcc_c01158{left:518.076120px;}
.xae_c01158{left:524.299269px;}
.x28_c01158{left:526.197429px;}
.x41_c01158{left:528.078897px;}
.x7f_c01158{left:533.076000px;}
.xc1_c01158{left:538.593147px;}
.xd3_c01158{left:540.008733px;}
.x69_c01158{left:543.159500px;}
.x9e_c01158{left:546.906810px;}
.xa8_c01158{left:548.039946px;}
.x30_c01158{left:549.370737px;}
.x72_c01158{left:554.118000px;}
.x96_c01158{left:557.973390px;}
.xbb_c01158{left:559.050711px;}
.xcd_c01158{left:560.459838px;}
.x80_c01158{left:565.209000px;}
.x8b_c01158{left:567.468924px;}
.x1f_c01158{left:570.229614px;}
.x31_c01158{left:572.334237px;}
.x57_c01158{left:573.713784px;}
.xa_c01158{left:578.886000px;}
.x36_c01158{left:583.204104px;}
.x73_c01158{left:587.889000px;}
.x29_c01158{left:592.363929px;}
.x4e_c01158{left:596.014500px;}
.x8c_c01158{left:600.694227px;}
.x12_c01158{left:603.097500px;}
.x32_c01158{left:604.788237px;}
.x58_c01158{left:606.938488px;}
.xaf_c01158{left:613.927467px;}
.xbc_c01158{left:626.008005px;}
.x42_c01158{left:627.475011px;}
.x6a_c01158{left:629.560947px;}
.xa9_c01158{left:635.236305px;}
.x13_c01158{left:636.384000px;}
.x4f_c01158{left:641.103000px;}
.x81_c01158{left:644.871000px;}
.xc2_c01158{left:648.489873px;}
.xce_c01158{left:650.043576px;}
.x59_c01158{left:651.705072px;}
.x8d_c01158{left:656.252229px;}
.xb7_c01158{left:658.813836px;}
.xd4_c01158{left:661.241598px;}
.x9f_c01158{left:668.128725px;}
.xb0_c01158{left:669.259812px;}
.x43_c01158{left:671.221902px;}
.x37_c01158{left:673.111344px;}
.x5a_c01158{left:674.433343px;}
.x2a_c01158{left:681.429429px;}
.xcf_c01158{left:684.329136px;}
.x14_c01158{left:691.657500px;}
.x20_c01158{left:693.631371px;}
.xd5_c01158{left:694.992813px;}
.x74_c01158{left:697.765500px;}
.x97_c01158{left:700.566606px;}
.xaa_c01158{left:701.908902px;}
.xb1_c01158{left:703.008192px;}
.x8e_c01158{left:710.836767px;}
.x15_c01158{left:714.391500px;}
.xc8_c01158{left:715.948023px;}
.x63_c01158{left:719.739293px;}
.x75_c01158{left:732.862500px;}
.xa0_c01158{left:735.831381px;}
.x2b_c01158{left:737.857929px;}
.x82_c01158{left:743.935500px;}
.x6b_c01158{left:753.988206px;}
.xab_c01158{left:757.798386px;}
.x38_c01158{left:759.783126px;}
.x44_c01158{left:761.120142px;}
.xd6_c01158{left:762.763752px;}
.x64_c01158{left:763.785917px;}
.x2c_c01158{left:770.022429px;}
.xc9_c01158{left:771.327693px;}
.x83_c01158{left:778.242000px;}
.x21_c01158{left:780.024153px;}
.x76_c01158{left:787.417500px;}
.x8f_c01158{left:788.850459px;}
.x98_c01158{left:790.425906px;}
.x16_c01158{left:791.566500px;}
.xb8_c01158{left:792.737160px;}
.x45_c01158{left:794.829180px;}
.x5b_c01158{left:796.664742px;}
.x65_c01158{left:807.787540px;}
.x99_c01158{left:813.564213px;}
.x77_c01158{left:819.549000px;}
.xbd_c01158{left:826.039896px;}
.xd7_c01158{left:828.374610px;}
.xca_c01158{left:839.569098px;}
.x78_c01158{left:841.695000px;}
.xd0_c01158{left:850.561161px;}
@media print{
.v0_c01158{vertical-align:0.000000pt;}
.ls0_c01158{letter-spacing:0.000000pt;}
.ws0_c01158{word-spacing:0.000000pt;}
.fs2_c01158{font-size:26.670080pt;}
.fs3_c01158{font-size:32.000000pt;}
.fsd_c01158{font-size:32.007055pt;}
.fs0_c01158{font-size:53.333333pt;}
.fs6_c01158{font-size:58.672416pt;}
.fs9_c01158{font-size:64.001152pt;}
.fs7_c01158{font-size:64.002592pt;}
.fs5_c01158{font-size:64.006272pt;}
.fsa_c01158{font-size:69.334581pt;}
.fse_c01158{font-size:69.339192pt;}
.fs4_c01158{font-size:69.340128pt;}
.fs1_c01158{font-size:69.341133pt;}
.fsc_c01158{font-size:74.668011pt;}
.fsb_c01158{font-size:80.001440pt;}
.fs8_c01158{font-size:90.670339pt;}
.y0_c01158{bottom:0.000000pt;}
.y12d_c01158{bottom:54.482667pt;}
.y12e_c01158{bottom:54.847551pt;}
.y12f_c01158{bottom:55.609455pt;}
.y130_c01158{bottom:56.520668pt;}
.y131_c01158{bottom:58.030540pt;}
.y132_c01158{bottom:59.958007pt;}
.y133_c01158{bottom:60.582475pt;}
.y12c_c01158{bottom:80.864000pt;}
.y122_c01158{bottom:122.632688pt;}
.y121_c01158{bottom:122.632696pt;}
.y128_c01158{bottom:122.632709pt;}
.y129_c01158{bottom:122.632915pt;}
.y12a_c01158{bottom:122.633013pt;}
.y127_c01158{bottom:122.633029pt;}
.y125_c01158{bottom:122.633099pt;}
.y126_c01158{bottom:122.633197pt;}
.y123_c01158{bottom:122.633275pt;}
.y124_c01158{bottom:122.633525pt;}
.y12b_c01158{bottom:122.633592pt;}
.y114_c01158{bottom:149.997629pt;}
.y115_c01158{bottom:150.633968pt;}
.y116_c01158{bottom:151.012376pt;}
.y117_c01158{bottom:151.517856pt;}
.y118_c01158{bottom:151.898981pt;}
.y119_c01158{bottom:152.656917pt;}
.y11a_c01158{bottom:154.459872pt;}
.y11b_c01158{bottom:154.949928pt;}
.y11c_c01158{bottom:155.985061pt;}
.y11d_c01158{bottom:156.381259pt;}
.y11e_c01158{bottom:157.005435pt;}
.y11f_c01158{bottom:157.391979pt;}
.y120_c01158{bottom:158.301200pt;}
.y107_c01158{bottom:179.520448pt;}
.y108_c01158{bottom:180.926403pt;}
.y109_c01158{bottom:181.248424pt;}
.y10a_c01158{bottom:181.690296pt;}
.y10b_c01158{bottom:182.795699pt;}
.y10c_c01158{bottom:183.431824pt;}
.y10d_c01158{bottom:184.043755pt;}
.y10e_c01158{bottom:184.684123pt;}
.y10f_c01158{bottom:186.115837pt;}
.y110_c01158{bottom:187.827019pt;}
.y111_c01158{bottom:188.142432pt;}
.y112_c01158{bottom:188.615728pt;}
.y113_c01158{bottom:189.586371pt;}
.yfc_c01158{bottom:212.159403pt;}
.yfd_c01158{bottom:212.570269pt;}
.yfe_c01158{bottom:213.400688pt;}
.yff_c01158{bottom:214.352272pt;}
.y100_c01158{bottom:215.047685pt;}
.y101_c01158{bottom:216.130136pt;}
.y102_c01158{bottom:216.545885pt;}
.y103_c01158{bottom:217.234219pt;}
.y104_c01158{bottom:218.601696pt;}
.y105_c01158{bottom:219.166651pt;}
.y106_c01158{bottom:220.811595pt;}
.yef_c01158{bottom:246.715907pt;}
.yf0_c01158{bottom:246.988093pt;}
.yf1_c01158{bottom:247.334805pt;}
.yf2_c01158{bottom:247.857912pt;}
.yf3_c01158{bottom:248.127189pt;}
.yf4_c01158{bottom:248.482160pt;}
.yf5_c01158{bottom:249.357360pt;}
.yf6_c01158{bottom:250.149840pt;}
.yf7_c01158{bottom:250.424696pt;}
.yf8_c01158{bottom:250.685619pt;}
.yf9_c01158{bottom:251.301360pt;}
.yfa_c01158{bottom:251.576280pt;}
.yfb_c01158{bottom:252.287141pt;}
.yed_c01158{bottom:281.849051pt;}
.yee_c01158{bottom:281.849264pt;}
.yeb_c01158{bottom:281.849280pt;}
.ye9_c01158{bottom:281.849555pt;}
.yec_c01158{bottom:281.849699pt;}
.yea_c01158{bottom:281.849875pt;}
.ye5_c01158{bottom:281.849936pt;}
.ye8_c01158{bottom:281.849981pt;}
.ye4_c01158{bottom:281.850203pt;}
.ye3_c01158{bottom:281.850325pt;}
.ye6_c01158{bottom:281.850523pt;}
.ye7_c01158{bottom:281.850568pt;}
.yd7_c01158{bottom:306.960824pt;}
.yd8_c01158{bottom:308.052800pt;}
.yd9_c01158{bottom:308.325704pt;}
.yda_c01158{bottom:309.286741pt;}
.ydb_c01158{bottom:309.578896pt;}
.ydc_c01158{bottom:310.388635pt;}
.ydd_c01158{bottom:310.794587pt;}
.yde_c01158{bottom:311.632133pt;}
.ydf_c01158{bottom:311.884061pt;}
.ye0_c01158{bottom:312.999435pt;}
.ye1_c01158{bottom:313.687888pt;}
.ye2_c01158{bottom:314.107888pt;}
.yca_c01158{bottom:338.397629pt;}
.ycb_c01158{bottom:338.738320pt;}
.ycc_c01158{bottom:339.340829pt;}
.ycd_c01158{bottom:340.300653pt;}
.yce_c01158{bottom:340.863963pt;}
.ycf_c01158{bottom:341.210136pt;}
.yd0_c01158{bottom:341.797221pt;}
.yd1_c01158{bottom:342.392419pt;}
.yd2_c01158{bottom:342.874456pt;}
.yd3_c01158{bottom:343.804853pt;}
.yd4_c01158{bottom:344.516453pt;}
.yd5_c01158{bottom:345.113208pt;}
.yd6_c01158{bottom:345.483381pt;}
.ybf_c01158{bottom:370.561477pt;}
.yc0_c01158{bottom:372.344877pt;}
.yc1_c01158{bottom:372.589469pt;}
.yc2_c01158{bottom:372.970595pt;}
.yc3_c01158{bottom:373.871984pt;}
.yc4_c01158{bottom:374.632749pt;}
.yc5_c01158{bottom:375.408251pt;}
.yc6_c01158{bottom:375.673565pt;}
.yc7_c01158{bottom:376.808128pt;}
.yc8_c01158{bottom:377.189381pt;}
.yc9_c01158{bottom:377.590557pt;}
.yb3_c01158{bottom:401.759365pt;}
.yb4_c01158{bottom:402.302504pt;}
.yb5_c01158{bottom:402.514016pt;}
.yb6_c01158{bottom:403.155800pt;}
.yb7_c01158{bottom:403.489448pt;}
.yb8_c01158{bottom:404.141136pt;}
.yb9_c01158{bottom:404.660824pt;}
.yba_c01158{bottom:405.975037pt;}
.ybb_c01158{bottom:406.411496pt;}
.ybc_c01158{bottom:407.370224pt;}
.ybd_c01158{bottom:408.249488pt;}
.ybe_c01158{bottom:408.475563pt;}
.ya4_c01158{bottom:433.679963pt;}
.ya5_c01158{bottom:434.389077pt;}
.ya6_c01158{bottom:434.746600pt;}
.ya7_c01158{bottom:435.327843pt;}
.ya8_c01158{bottom:435.567627pt;}
.ya9_c01158{bottom:436.269413pt;}
.yaa_c01158{bottom:436.618496pt;}
.yab_c01158{bottom:437.442320pt;}
.yac_c01158{bottom:437.802352pt;}
.yad_c01158{bottom:438.392179pt;}
.yae_c01158{bottom:438.746720pt;}
.yaf_c01158{bottom:439.339040pt;}
.yb0_c01158{bottom:439.531544pt;}
.yb1_c01158{bottom:439.920835pt;}
.yb2_c01158{bottom:440.752923pt;}
.y9b_c01158{bottom:469.200000pt;}
.y9c_c01158{bottom:469.387240pt;}
.y9d_c01158{bottom:469.907112pt;}
.y9e_c01158{bottom:470.323240pt;}
.y9f_c01158{bottom:470.791256pt;}
.ya0_c01158{bottom:470.962632pt;}
.ya1_c01158{bottom:471.387496pt;}
.ya2_c01158{bottom:471.915840pt;}
.ya3_c01158{bottom:472.098808pt;}
.y95_c01158{bottom:499.201499pt;}
.y96_c01158{bottom:499.883136pt;}
.y97_c01158{bottom:500.961560pt;}
.y98_c01158{bottom:501.371963pt;}
.y99_c01158{bottom:502.484579pt;}
.y9a_c01158{bottom:503.028557pt;}
.y89_c01158{bottom:533.760000pt;}
.y8a_c01158{bottom:534.011032pt;}
.y8b_c01158{bottom:534.301928pt;}
.y8c_c01158{bottom:534.539568pt;}
.y8d_c01158{bottom:535.132840pt;}
.y8e_c01158{bottom:535.600752pt;}
.y8f_c01158{bottom:535.780864pt;}
.y90_c01158{bottom:536.366872pt;}
.y91_c01158{bottom:536.554056pt;}
.y92_c01158{bottom:536.845016pt;}
.y93_c01158{bottom:537.016384pt;}
.y94_c01158{bottom:537.134496pt;}
.y86_c01158{bottom:561.121779pt;}
.y87_c01158{bottom:562.455604pt;}
.y88_c01158{bottom:563.219685pt;}
.y7b_c01158{bottom:592.317356pt;}
.y7c_c01158{bottom:593.505320pt;}
.y7d_c01158{bottom:593.835440pt;}
.y7e_c01158{bottom:594.144268pt;}
.y7f_c01158{bottom:595.235003pt;}
.y80_c01158{bottom:595.772976pt;}
.y81_c01158{bottom:596.435172pt;}
.y82_c01158{bottom:597.279729pt;}
.y83_c01158{bottom:598.158721pt;}
.y84_c01158{bottom:598.496499pt;}
.y85_c01158{bottom:599.026851pt;}
.y6f_c01158{bottom:622.801371pt;}
.y70_c01158{bottom:623.971083pt;}
.y71_c01158{bottom:624.258753pt;}
.y72_c01158{bottom:625.159197pt;}
.y73_c01158{bottom:626.156364pt;}
.y74_c01158{bottom:627.056064pt;}
.y75_c01158{bottom:627.499137pt;}
.y76_c01158{bottom:627.931959pt;}
.y77_c01158{bottom:629.699017pt;}
.y78_c01158{bottom:630.759809pt;}
.y79_c01158{bottom:631.346868pt;}
.y7a_c01158{bottom:631.933567pt;}
.y62_c01158{bottom:654.721609pt;}
.y63_c01158{bottom:655.761537pt;}
.y64_c01158{bottom:656.064899pt;}
.y65_c01158{bottom:656.928764pt;}
.y66_c01158{bottom:657.662749pt;}
.y67_c01158{bottom:658.249088pt;}
.y68_c01158{bottom:658.843097pt;}
.y69_c01158{bottom:659.275787pt;}
.y6a_c01158{bottom:660.755463pt;}
.y6b_c01158{bottom:661.198608pt;}
.y6c_c01158{bottom:661.795427pt;}
.y6d_c01158{bottom:662.098596pt;}
.y6e_c01158{bottom:663.728500pt;}
.y59_c01158{bottom:690.001333pt;}
.y5a_c01158{bottom:690.612625pt;}
.y5b_c01158{bottom:691.493929pt;}
.y5c_c01158{bottom:691.759633pt;}
.y5d_c01158{bottom:692.034037pt;}
.y5e_c01158{bottom:692.915125pt;}
.y5f_c01158{bottom:693.275833pt;}
.y60_c01158{bottom:693.528877pt;}
.y61_c01158{bottom:694.511329pt;}
.y53_c01158{bottom:719.023928pt;}
.y54_c01158{bottom:719.784805pt;}
.y55_c01158{bottom:720.701947pt;}
.y56_c01158{bottom:721.997464pt;}
.y57_c01158{bottom:722.554928pt;}
.y58_c01158{bottom:723.124299pt;}
.y46_c01158{bottom:750.706523pt;}
.y47_c01158{bottom:751.131768pt;}
.y48_c01158{bottom:751.585403pt;}
.y49_c01158{bottom:752.305925pt;}
.y4a_c01158{bottom:752.748296pt;}
.y4b_c01158{bottom:753.331227pt;}
.y4c_c01158{bottom:753.774605pt;}
.y4d_c01158{bottom:754.814979pt;}
.y4e_c01158{bottom:756.132403pt;}
.y4f_c01158{bottom:757.457349pt;}
.y50_c01158{bottom:758.040429pt;}
.y51_c01158{bottom:759.239179pt;}
.y52_c01158{bottom:759.688008pt;}
.y3b_c01158{bottom:782.151037pt;}
.y3c_c01158{bottom:782.575779pt;}
.y3d_c01158{bottom:783.482853pt;}
.y3e_c01158{bottom:783.745448pt;}
.y3f_c01158{bottom:784.943899pt;}
.y40_c01158{bottom:785.530880pt;}
.y41_c01158{bottom:786.708341pt;}
.y42_c01158{bottom:787.888509pt;}
.y43_c01158{bottom:788.335248pt;}
.y44_c01158{bottom:789.534109pt;}
.y45_c01158{bottom:790.690040pt;}
.y30_c01158{bottom:814.313827pt;}
.y31_c01158{bottom:815.298120pt;}
.y32_c01158{bottom:816.383661pt;}
.y33_c01158{bottom:816.780347pt;}
.y34_c01158{bottom:817.761093pt;}
.y35_c01158{bottom:818.319451pt;}
.y36_c01158{bottom:819.689771pt;}
.y37_c01158{bottom:819.975539pt;}
.y38_c01158{bottom:820.379411pt;}
.y39_c01158{bottom:821.333501pt;}
.y3a_c01158{bottom:822.442432pt;}
.y22_c01158{bottom:844.796960pt;}
.y23_c01158{bottom:845.207216pt;}
.y24_c01158{bottom:846.295893pt;}
.y25_c01158{bottom:846.709453pt;}
.y26_c01158{bottom:847.128987pt;}
.y27_c01158{bottom:847.660800pt;}
.y28_c01158{bottom:848.496600pt;}
.y29_c01158{bottom:848.782219pt;}
.y2a_c01158{bottom:849.199624pt;}
.y2b_c01158{bottom:849.871363pt;}
.y2c_c01158{bottom:850.694768pt;}
.y2d_c01158{bottom:851.803139pt;}
.y2e_c01158{bottom:852.505360pt;}
.y2f_c01158{bottom:852.905629pt;}
.y16_c01158{bottom:875.758144pt;}
.y17_c01158{bottom:876.262531pt;}
.y18_c01158{bottom:877.353683pt;}
.y19_c01158{bottom:877.805059pt;}
.y1a_c01158{bottom:878.391499pt;}
.y1b_c01158{bottom:879.428157pt;}
.y1c_c01158{bottom:880.007765pt;}
.y1d_c01158{bottom:880.591499pt;}
.y1e_c01158{bottom:881.778797pt;}
.y1f_c01158{bottom:882.229613pt;}
.y20_c01158{bottom:883.425152pt;}
.y21_c01158{bottom:884.577611pt;}
.yc_c01158{bottom:910.082667pt;}
.yd_c01158{bottom:910.915723pt;}
.ye_c01158{bottom:911.618317pt;}
.yf_c01158{bottom:913.010216pt;}
.y10_c01158{bottom:913.402459pt;}
.y11_c01158{bottom:914.772872pt;}
.y12_c01158{bottom:915.187104pt;}
.y13_c01158{bottom:915.874952pt;}
.y14_c01158{bottom:916.157864pt;}
.y15_c01158{bottom:917.118264pt;}
.yb_c01158{bottom:962.706667pt;}
.y9_c01158{bottom:990.482667pt;}
.ya_c01158{bottom:993.601259pt;}
.y2_c01158{bottom:1004.162667pt;}
.y3_c01158{bottom:1004.904247pt;}
.y4_c01158{bottom:1006.071007pt;}
.y5_c01158{bottom:1006.502967pt;}
.y6_c01158{bottom:1007.564467pt;}
.y7_c01158{bottom:1007.824387pt;}
.y8_c01158{bottom:1009.023587pt;}
.y1_c01158{bottom:1076.162667pt;}
.h4_c01158{height:26.670080pt;}
.h5_c01158{height:32.000000pt;}
.hf_c01158{height:32.007055pt;}
.h2_c01158{height:53.333333pt;}
.h8_c01158{height:58.672416pt;}
.hb_c01158{height:64.001152pt;}
.h9_c01158{height:64.002592pt;}
.h7_c01158{height:64.006272pt;}
.hc_c01158{height:69.334581pt;}
.h10_c01158{height:69.339192pt;}
.h6_c01158{height:69.340128pt;}
.h3_c01158{height:69.341133pt;}
.he_c01158{height:74.668011pt;}
.hd_c01158{height:80.001440pt;}
.ha_c01158{height:90.670339pt;}
.h1_c01158{height:1118.666667pt;}
.h0_c01158{height:1118.880000pt;}
.w1_c01158{width:785.333333pt;}
.w0_c01158{width:785.466667pt;}
.x0_c01158{left:0.000000pt;}
.x2d_c01158{left:104.333544pt;}
.x17_c01158{left:105.496387pt;}
.x39_c01158{left:107.655189pt;}
.x5c_c01158{left:109.155571pt;}
.x79_c01158{left:111.767347pt;}
.x90_c01158{left:112.709176pt;}
.xa1_c01158{left:114.133384pt;}
.xb2_c01158{left:115.922053pt;}
.xc3_c01158{left:117.112053pt;}
.xd8_c01158{left:118.977333pt;}
.x22_c01158{left:134.577715pt;}
.x3a_c01158{left:136.029464pt;}
.x18_c01158{left:139.142587pt;}
.xa2_c01158{left:142.469693pt;}
.xb9_c01158{left:145.760293pt;}
.x46_c01158{left:147.306445pt;}
.x6c_c01158{left:159.136020pt;}
.x7a_c01158{left:160.482344pt;}
.x91_c01158{left:162.119696pt;}
.x3b_c01158{left:166.241035pt;}
.x84_c01158{left:170.800829pt;}
.x2e_c01158{left:174.640211pt;}
.x50_c01158{left:177.031117pt;}
.x92_c01158{left:181.371120pt;}
.xba_c01158{left:184.211597pt;}
.x6d_c01158{left:185.757333pt;}
.x5d_c01158{left:187.119359pt;}
.x4_c01158{left:190.504000pt;}
.xa3_c01158{left:192.663885pt;}
.x33_c01158{left:194.856165pt;}
.x51_c01158{left:197.255359pt;}
.xd_c01158{left:201.072000pt;}
.xbe_c01158{left:204.951941pt;}
.x49_c01158{left:206.036000pt;}
.x7c_c01158{left:208.636000pt;}
.x19_c01158{left:211.842893pt;}
.x3c_c01158{left:214.277696pt;}
.x66_c01158{left:216.385232pt;}
.xc4_c01158{left:225.101573pt;}
.x6e_c01158{left:227.596000pt;}
.xcb_c01158{left:234.185611pt;}
.x7b_c01158{left:237.549315pt;}
.x5_c01158{left:239.942667pt;}
.x1a_c01158{left:241.893131pt;}
.x3d_c01158{left:243.779952pt;}
.x67_c01158{left:246.398025pt;}
.x85_c01158{left:249.036680pt;}
.x9a_c01158{left:250.475949pt;}
.x2f_c01158{left:252.178877pt;}
.x52_c01158{left:254.866917pt;}
.xe_c01158{left:260.576000pt;}
.xb3_c01158{left:262.084651pt;}
.x47_c01158{left:263.726288pt;}
.x5e_c01158{left:266.387087pt;}
.x86_c01158{left:268.999960pt;}
.x93_c01158{left:269.940456pt;}
.x23_c01158{left:271.847048pt;}
.xbf_c01158{left:272.879344pt;}
.x4a_c01158{left:273.957333pt;}
.x6f_c01158{left:276.078667pt;}
.x1b_c01158{left:281.019256pt;}
.x3e_c01158{left:282.655411pt;}
.xb4_c01158{left:290.405667pt;}
.x34_c01158{left:292.262803pt;}
.x9b_c01158{left:298.537925pt;}
.xac_c01158{left:301.413032pt;}
.x53_c01158{left:303.825611pt;}
.x24_c01158{left:309.833715pt;}
.xf_c01158{left:310.761333pt;}
.x3f_c01158{left:312.229667pt;}
.x70_c01158{left:315.685333pt;}
.x6_c01158{left:317.726667pt;}
.xa4_c01158{left:319.625984pt;}
.xc5_c01158{left:321.863773pt;}
.x48_c01158{left:323.067477pt;}
.x7d_c01158{left:326.488000pt;}
.x87_c01158{left:327.517856pt;}
.x94_c01158{left:329.220013pt;}
.x35_c01158{left:331.427595pt;}
.x5f_c01158{left:332.883499pt;}
.x1_c01158{left:340.560000pt;}
.x54_c01158{left:342.898165pt;}
.x7_c01158{left:346.524000pt;}
.xa5_c01158{left:348.431611pt;}
.x1c_c01158{left:350.112952pt;}
.xd1_c01158{left:352.085821pt;}
.x88_c01158{left:356.586141pt;}
.xc_c01158{left:357.600000pt;}
.x2_c01158{left:360.000000pt;}
.xc6_c01158{left:361.660056pt;}
.x9c_c01158{left:367.877680pt;}
.x25_c01158{left:369.533715pt;}
.x4b_c01158{left:371.880000pt;}
.x68_c01158{left:373.606400pt;}
.x95_c01158{left:376.499931pt;}
.xb5_c01158{left:379.207533pt;}
.x40_c01158{left:381.588696pt;}
.x55_c01158{left:382.526696pt;}
.xb_c01158{left:384.890667pt;}
.x1d_c01158{left:388.751077pt;}
.x26_c01158{left:389.935048pt;}
.xd9_c01158{left:391.890667pt;}
.x60_c01158{left:392.846925pt;}
.x7e_c01158{left:395.842667pt;}
.xa6_c01158{left:397.388517pt;}
.x3_c01158{left:399.600000pt;}
.x4c_c01158{left:401.402667pt;}
.xb6_c01158{left:408.248581pt;}
.x10_c01158{left:410.182667pt;}
.x56_c01158{left:411.342469pt;}
.x71_c01158{left:414.564000pt;}
.x8_c01158{left:417.290667pt;}
.x27_c01158{left:419.749715pt;}
.x61_c01158{left:422.371996pt;}
.x89_c01158{left:425.221003pt;}
.x9d_c01158{left:426.447224pt;}
.x1e_c01158{left:427.683869pt;}
.xc0_c01158{left:429.585157pt;}
.x4d_c01158{left:431.892000pt;}
.x9_c01158{left:434.618667pt;}
.x11_c01158{left:438.200000pt;}
.xc7_c01158{left:439.927360pt;}
.xd2_c01158{left:441.367704pt;}
.xa7_c01158{left:447.030733pt;}
.xad_c01158{left:448.056659pt;}
.x62_c01158{left:451.202436pt;}
.x8a_c01158{left:455.225256pt;}
.xcc_c01158{left:460.512107pt;}
.xae_c01158{left:466.043795pt;}
.x28_c01158{left:467.731048pt;}
.x41_c01158{left:469.403464pt;}
.x7f_c01158{left:473.845333pt;}
.xc1_c01158{left:478.749464pt;}
.xd3_c01158{left:480.007763pt;}
.x69_c01158{left:482.808444pt;}
.x9e_c01158{left:486.139387pt;}
.xa8_c01158{left:487.146619pt;}
.x30_c01158{left:488.329544pt;}
.x72_c01158{left:492.549333pt;}
.x96_c01158{left:495.976347pt;}
.xbb_c01158{left:496.933965pt;}
.xcd_c01158{left:498.186523pt;}
.x80_c01158{left:502.408000pt;}
.x8b_c01158{left:504.416821pt;}
.x1f_c01158{left:506.870768pt;}
.x31_c01158{left:508.741544pt;}
.x57_c01158{left:509.967808pt;}
.xa_c01158{left:514.565333pt;}
.x36_c01158{left:518.403648pt;}
.x73_c01158{left:522.568000pt;}
.x29_c01158{left:526.545715pt;}
.x4e_c01158{left:529.790667pt;}
.x8c_c01158{left:533.950424pt;}
.x12_c01158{left:536.086667pt;}
.x32_c01158{left:537.589544pt;}
.x58_c01158{left:539.500879pt;}
.xaf_c01158{left:545.713304pt;}
.xbc_c01158{left:556.451560pt;}
.x42_c01158{left:557.755565pt;}
.x6a_c01158{left:559.609731pt;}
.xa9_c01158{left:564.654493pt;}
.x13_c01158{left:565.674667pt;}
.x4f_c01158{left:569.869333pt;}
.x81_c01158{left:573.218667pt;}
.xc2_c01158{left:576.435443pt;}
.xce_c01158{left:577.816512pt;}
.x59_c01158{left:579.293397pt;}
.x8d_c01158{left:583.335315pt;}
.xb7_c01158{left:585.612299pt;}
.xd4_c01158{left:587.770309pt;}
.x9f_c01158{left:593.892200pt;}
.xb0_c01158{left:594.897611pt;}
.x43_c01158{left:596.641691pt;}
.x37_c01158{left:598.321195pt;}
.x5a_c01158{left:599.496305pt;}
.x2a_c01158{left:605.715048pt;}
.xcf_c01158{left:608.292565pt;}
.x14_c01158{left:614.806667pt;}
.x20_c01158{left:616.561219pt;}
.xd5_c01158{left:617.771389pt;}
.x74_c01158{left:620.236000pt;}
.x97_c01158{left:622.725872pt;}
.xaa_c01158{left:623.919024pt;}
.xb1_c01158{left:624.896171pt;}
.x8e_c01158{left:631.854904pt;}
.x15_c01158{left:635.014667pt;}
.xc8_c01158{left:636.398243pt;}
.x63_c01158{left:639.768260pt;}
.x75_c01158{left:651.433333pt;}
.xa0_c01158{left:654.072339pt;}
.x2b_c01158{left:655.873715pt;}
.x82_c01158{left:661.276000pt;}
.x6b_c01158{left:670.211739pt;}
.xab_c01158{left:673.598565pt;}
.x38_c01158{left:675.362779pt;}
.x44_c01158{left:676.551237pt;}
.xd6_c01158{left:678.012224pt;}
.x64_c01158{left:678.920815pt;}
.x2c_c01158{left:684.464381pt;}
.xc9_c01158{left:685.624616pt;}
.x83_c01158{left:691.770667pt;}
.x21_c01158{left:693.354803pt;}
.x76_c01158{left:699.926667pt;}
.x8f_c01158{left:701.200408pt;}
.x98_c01158{left:702.600805pt;}
.x16_c01158{left:703.614667pt;}
.xb8_c01158{left:704.655253pt;}
.x45_c01158{left:706.514827pt;}
.x5b_c01158{left:708.146437pt;}
.x65_c01158{left:718.033369pt;}
.x99_c01158{left:723.168189pt;}
.x77_c01158{left:728.488000pt;}
.xbd_c01158{left:734.257685pt;}
.xd7_c01158{left:736.332987pt;}
.xca_c01158{left:746.283643pt;}
.x78_c01158{left:748.173333pt;}
.xd0_c01158{left:756.054365pt;}
}





/* 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_c01159 {
    display:none;
  }
  .loading-indicator_c01159.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01159 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_c01159 { 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_c01159" -> "#page-container .classname_c01159")
 */
.pf_c01159 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01159 { /* 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_c01159.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01159 { /* 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_c01159 { /* 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_c01159 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01159 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01159 {overflow:visible;}
  }
}
.c_c01159 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01159 { /* 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_c01159:after { /* webkit #35443 */
  content: '';
}
.t_c01159:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01159 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 */
}
.__c01159 { /* 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_c01159 { /* info for Javascript */
  display:none;
}
.l_c01159 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01159 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01159 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01159: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_c01159 {
    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_c01159.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01159.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_c01159 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01159{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01159;src:url('chunks/assets/font_fabf4b590f7fb32aea93ffb2.woff2')format("woff");}.ff1_c01159{font-family:ff1_c01159;line-height:1.000000;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_c01159{transform:matrix(0.029775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.029775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.029775,0.000000,0.000000,0.250000,0,0);}
.m46_c01159{transform:matrix(0.049750,-0.000995,0.004999,0.249950,0,0);-ms-transform:matrix(0.049750,-0.000995,0.004999,0.249950,0,0);-webkit-transform:matrix(0.049750,-0.000995,0.004999,0.249950,0,0);}
.m1f_c01159{transform:matrix(0.116940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116940,0.000000,0.000000,0.250000,0,0);}
.m2c_c01159{transform:matrix(0.146990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146990,0.000000,0.000000,0.250000,0,0);}
.m11_c01159{transform:matrix(0.148025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148025,0.000000,0.000000,0.250000,0,0);}
.m1d_c01159{transform:matrix(0.152070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152070,0.000000,0.000000,0.250000,0,0);}
.m29_c01159{transform:matrix(0.155320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155320,0.000000,0.000000,0.250000,0,0);}
.m19_c01159{transform:matrix(0.159565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159565,0.000000,0.000000,0.250000,0,0);}
.m1a_c01159{transform:matrix(0.160415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160415,0.000000,0.000000,0.250000,0,0);}
.m7_c01159{transform:matrix(0.161620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161620,0.000000,0.000000,0.250000,0,0);}
.m28_c01159{transform:matrix(0.161695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161695,0.000000,0.000000,0.250000,0,0);}
.m57_c01159{transform:matrix(0.167307,-0.003346,0.004999,0.249950,0,0);-ms-transform:matrix(0.167307,-0.003346,0.004999,0.249950,0,0);-webkit-transform:matrix(0.167307,-0.003346,0.004999,0.249950,0,0);}
.m27_c01159{transform:matrix(0.168005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168005,0.000000,0.000000,0.250000,0,0);}
.m12_c01159{transform:matrix(0.171025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171025,0.000000,0.000000,0.250000,0,0);}
.m2b_c01159{transform:matrix(0.174005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174005,0.000000,0.000000,0.250000,0,0);}
.m18_c01159{transform:matrix(0.174375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174375,0.000000,0.000000,0.250000,0,0);}
.m24_c01159{transform:matrix(0.174400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174400,0.000000,0.000000,0.250000,0,0);}
.m1c_c01159{transform:matrix(0.175115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175115,0.000000,0.000000,0.250000,0,0);}
.m8_c01159{transform:matrix(0.175765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175765,0.000000,0.000000,0.250000,0,0);}
.m1b_c01159{transform:matrix(0.176270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176270,0.000000,0.000000,0.250000,0,0);}
.m59_c01159{transform:matrix(0.178194,-0.003564,0.004999,0.249950,0,0);-ms-transform:matrix(0.178194,-0.003564,0.004999,0.249950,0,0);-webkit-transform:matrix(0.178194,-0.003564,0.004999,0.249950,0,0);}
.me_c01159{transform:matrix(0.179140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179140,0.000000,0.000000,0.250000,0,0);}
.m21_c01159{transform:matrix(0.179700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179700,0.000000,0.000000,0.250000,0,0);}
.m2a_c01159{transform:matrix(0.181660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181660,0.000000,0.000000,0.250000,0,0);}
.mb_c01159{transform:matrix(0.183055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183055,0.000000,0.000000,0.250000,0,0);}
.m13_c01159{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m4b_c01159{transform:matrix(0.187697,-0.003754,0.004999,0.249950,0,0);-ms-transform:matrix(0.187697,-0.003754,0.004999,0.249950,0,0);-webkit-transform:matrix(0.187697,-0.003754,0.004999,0.249950,0,0);}
.m26_c01159{transform:matrix(0.187930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187930,0.000000,0.000000,0.250000,0,0);}
.m10_c01159{transform:matrix(0.188495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188495,0.000000,0.000000,0.250000,0,0);}
.m25_c01159{transform:matrix(0.189040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189040,0.000000,0.000000,0.250000,0,0);}
.m0_c01159{transform:matrix(0.191650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191650,0.000000,0.000000,0.250000,0,0);}
.m53_c01159{transform:matrix(0.192292,-0.003846,0.004999,0.249950,0,0);-ms-transform:matrix(0.192292,-0.003846,0.004999,0.249950,0,0);-webkit-transform:matrix(0.192292,-0.003846,0.004999,0.249950,0,0);}
.m4_c01159{transform:matrix(0.192455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192455,0.000000,0.000000,0.250000,0,0);}
.m47_c01159{transform:matrix(0.193891,-0.003878,0.004999,0.249950,0,0);-ms-transform:matrix(0.193891,-0.003878,0.004999,0.249950,0,0);-webkit-transform:matrix(0.193891,-0.003878,0.004999,0.249950,0,0);}
.m1e_c01159{transform:matrix(0.195530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195530,0.000000,0.000000,0.250000,0,0);}
.m40_c01159{transform:matrix(0.195944,0.001568,-0.002000,0.249992,0,0);-ms-transform:matrix(0.195944,0.001568,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.195944,0.001568,-0.002000,0.249992,0,0);}
.m52_c01159{transform:matrix(0.197640,-0.003953,0.004999,0.249950,0,0);-ms-transform:matrix(0.197640,-0.003953,0.004999,0.249950,0,0);-webkit-transform:matrix(0.197640,-0.003953,0.004999,0.249950,0,0);}
.m4d_c01159{transform:matrix(0.199035,-0.003981,0.004999,0.249950,0,0);-ms-transform:matrix(0.199035,-0.003981,0.004999,0.249950,0,0);-webkit-transform:matrix(0.199035,-0.003981,0.004999,0.249950,0,0);}
.m41_c01159{transform:matrix(0.199989,0.001600,-0.002000,0.249992,0,0);-ms-transform:matrix(0.199989,0.001600,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.199989,0.001600,-0.002000,0.249992,0,0);}
.m3f_c01159{transform:matrix(0.200244,0.001602,-0.002000,0.249992,0,0);-ms-transform:matrix(0.200244,0.001602,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.200244,0.001602,-0.002000,0.249992,0,0);}
.m17_c01159{transform:matrix(0.200820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200820,0.000000,0.000000,0.250000,0,0);}
.md_c01159{transform:matrix(0.202535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202535,0.000000,0.000000,0.250000,0,0);}
.m58_c01159{transform:matrix(0.205634,-0.004113,0.004999,0.249950,0,0);-ms-transform:matrix(0.205634,-0.004113,0.004999,0.249950,0,0);-webkit-transform:matrix(0.205634,-0.004113,0.004999,0.249950,0,0);}
.m43_c01159{transform:matrix(0.208398,0.001667,-0.002000,0.249992,0,0);-ms-transform:matrix(0.208398,0.001667,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.208398,0.001667,-0.002000,0.249992,0,0);}
.m4e_c01159{transform:matrix(0.208738,-0.004175,0.004999,0.249950,0,0);-ms-transform:matrix(0.208738,-0.004175,0.004999,0.249950,0,0);-webkit-transform:matrix(0.208738,-0.004175,0.004999,0.249950,0,0);}
.m30_c01159{transform:matrix(0.209505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209505,0.000000,0.000000,0.250000,0,0);}
.m56_c01159{transform:matrix(0.210303,-0.004206,0.004999,0.249950,0,0);-ms-transform:matrix(0.210303,-0.004206,0.004999,0.249950,0,0);-webkit-transform:matrix(0.210303,-0.004206,0.004999,0.249950,0,0);}
.m14_c01159{transform:matrix(0.210550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210550,0.000000,0.000000,0.250000,0,0);}
.m44_c01159{transform:matrix(0.211298,0.001690,-0.002000,0.249992,0,0);-ms-transform:matrix(0.211298,0.001690,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.211298,0.001690,-0.002000,0.249992,0,0);}
.m9_c01159{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m23_c01159{transform:matrix(0.211915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211915,0.000000,0.000000,0.250000,0,0);}
.m5_c01159{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m4f_c01159{transform:matrix(0.212762,-0.004255,0.004999,0.249950,0,0);-ms-transform:matrix(0.212762,-0.004255,0.004999,0.249950,0,0);-webkit-transform:matrix(0.212762,-0.004255,0.004999,0.249950,0,0);}
.m16_c01159{transform:matrix(0.213300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213300,0.000000,0.000000,0.250000,0,0);}
.m22_c01159{transform:matrix(0.214675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214675,0.000000,0.000000,0.250000,0,0);}
.m49_c01159{transform:matrix(0.215427,-0.004309,0.004999,0.249950,0,0);-ms-transform:matrix(0.215427,-0.004309,0.004999,0.249950,0,0);-webkit-transform:matrix(0.215427,-0.004309,0.004999,0.249950,0,0);}
.m48_c01159{transform:matrix(0.215607,-0.004312,0.004999,0.249950,0,0);-ms-transform:matrix(0.215607,-0.004312,0.004999,0.249950,0,0);-webkit-transform:matrix(0.215607,-0.004312,0.004999,0.249950,0,0);}
.m55_c01159{transform:matrix(0.215757,-0.004315,0.004999,0.249950,0,0);-ms-transform:matrix(0.215757,-0.004315,0.004999,0.249950,0,0);-webkit-transform:matrix(0.215757,-0.004315,0.004999,0.249950,0,0);}
.m39_c01159{transform:matrix(0.216783,0.001734,-0.002000,0.249992,0,0);-ms-transform:matrix(0.216783,0.001734,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.216783,0.001734,-0.002000,0.249992,0,0);}
.m6_c01159{transform:matrix(0.216955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216955,0.000000,0.000000,0.250000,0,0);}
.m35_c01159{transform:matrix(0.218548,0.001748,-0.002000,0.249992,0,0);-ms-transform:matrix(0.218548,0.001748,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.218548,0.001748,-0.002000,0.249992,0,0);}
.m42_c01159{transform:matrix(0.220023,0.001760,-0.002000,0.249992,0,0);-ms-transform:matrix(0.220023,0.001760,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.220023,0.001760,-0.002000,0.249992,0,0);}
.m38_c01159{transform:matrix(0.221083,0.001769,-0.002000,0.249992,0,0);-ms-transform:matrix(0.221083,0.001769,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.221083,0.001769,-0.002000,0.249992,0,0);}
.m2_c01159{transform:matrix(0.221865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221865,0.000000,0.000000,0.250000,0,0);}
.mf_c01159{transform:matrix(0.222940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222940,0.000000,0.000000,0.250000,0,0);}
.m2f_c01159{transform:matrix(0.225315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225315,0.000000,0.000000,0.250000,0,0);}
.m3_c01159{transform:matrix(0.225705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225705,0.000000,0.000000,0.250000,0,0);}
.m54_c01159{transform:matrix(0.229269,-0.004585,0.004999,0.249950,0,0);-ms-transform:matrix(0.229269,-0.004585,0.004999,0.249950,0,0);-webkit-transform:matrix(0.229269,-0.004585,0.004999,0.249950,0,0);}
.m3b_c01159{transform:matrix(0.229643,0.001837,-0.002000,0.249992,0,0);-ms-transform:matrix(0.229643,0.001837,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.229643,0.001837,-0.002000,0.249992,0,0);}
.ma_c01159{transform:matrix(0.230415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230415,0.000000,0.000000,0.250000,0,0);}
.m3a_c01159{transform:matrix(0.232128,0.001857,-0.002000,0.249992,0,0);-ms-transform:matrix(0.232128,0.001857,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.232128,0.001857,-0.002000,0.249992,0,0);}
.m4c_c01159{transform:matrix(0.234208,-0.004684,0.004999,0.249950,0,0);-ms-transform:matrix(0.234208,-0.004684,0.004999,0.249950,0,0);-webkit-transform:matrix(0.234208,-0.004684,0.004999,0.249950,0,0);}
.m15_c01159{transform:matrix(0.235025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235025,0.000000,0.000000,0.250000,0,0);}
.m45_c01159{transform:matrix(0.235932,0.001887,-0.002000,0.249992,0,0);-ms-transform:matrix(0.235932,0.001887,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.235932,0.001887,-0.002000,0.249992,0,0);}
.m34_c01159{transform:matrix(0.237077,0.001897,-0.002000,0.249992,0,0);-ms-transform:matrix(0.237077,0.001897,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.237077,0.001897,-0.002000,0.249992,0,0);}
.m3e_c01159{transform:matrix(0.242632,0.001941,-0.002000,0.249992,0,0);-ms-transform:matrix(0.242632,0.001941,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.242632,0.001941,-0.002000,0.249992,0,0);}
.m36_c01159{transform:matrix(0.243847,0.001951,-0.002000,0.249992,0,0);-ms-transform:matrix(0.243847,0.001951,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.243847,0.001951,-0.002000,0.249992,0,0);}
.m51_c01159{transform:matrix(0.251775,-0.005035,0.004999,0.249950,0,0);-ms-transform:matrix(0.251775,-0.005035,0.004999,0.249950,0,0);-webkit-transform:matrix(0.251775,-0.005035,0.004999,0.249950,0,0);}
.m2e_c01159{transform:matrix(0.253095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253095,0.000000,0.000000,0.250000,0,0);}
.m20_c01159{transform:matrix(0.257375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257375,0.000000,0.000000,0.250000,0,0);}
.m32_c01159{transform:matrix(0.263255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263255,0.000000,0.000000,0.250000,0,0);}
.m50_c01159{transform:matrix(0.267901,-0.005358,0.004999,0.249950,0,0);-ms-transform:matrix(0.267901,-0.005358,0.004999,0.249950,0,0);-webkit-transform:matrix(0.267901,-0.005358,0.004999,0.249950,0,0);}
.m4a_c01159{transform:matrix(0.269586,-0.005392,0.004999,0.249950,0,0);-ms-transform:matrix(0.269586,-0.005392,0.004999,0.249950,0,0);-webkit-transform:matrix(0.269586,-0.005392,0.004999,0.249950,0,0);}
.m37_c01159{transform:matrix(0.270066,0.002161,-0.002000,0.249992,0,0);-ms-transform:matrix(0.270066,0.002161,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.270066,0.002161,-0.002000,0.249992,0,0);}
.mc_c01159{transform:matrix(0.272130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272130,0.000000,0.000000,0.250000,0,0);}
.m31_c01159{transform:matrix(0.280195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280195,0.000000,0.000000,0.250000,0,0);}
.m3d_c01159{transform:matrix(0.285261,0.002282,-0.002000,0.249992,0,0);-ms-transform:matrix(0.285261,0.002282,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.285261,0.002282,-0.002000,0.249992,0,0);}
.m1_c01159{transform:matrix(0.292690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292690,0.000000,0.000000,0.250000,0,0);}
.m3c_c01159{transform:matrix(0.294851,0.002359,-0.002000,0.249992,0,0);-ms-transform:matrix(0.294851,0.002359,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.294851,0.002359,-0.002000,0.249992,0,0);}
.m33_c01159{transform:matrix(0.304265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304265,0.000000,0.000000,0.250000,0,0);}
.m5a_c01159{transform:matrix(0.381840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381840,0.000000,0.000000,0.250000,0,0);}
.v0_c01159{vertical-align:0.000000px;}
.ls0_c01159{letter-spacing:0.000000px;}
.sc__c01159{text-shadow:none;}
.sc0_c01159{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__c01159{-webkit-text-stroke:0px transparent;}
.sc0_c01159{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01159{word-spacing:0.000000px;}
.fc0_c01159{color:transparent;}
.fs8_c01159{font-size:12.000000px;}
.fs3_c01159{font-size:78.000000px;}
.fs4_c01159{font-size:84.002688px;}
.fs5_c01159{font-size:90.002880px;}
.fs6_c01159{font-size:96.019198px;}
.fs0_c01159{font-size:102.000000px;}
.fs1_c01159{font-size:108.000000px;}
.fs7_c01159{font-size:108.021598px;}
.fs2_c01159{font-size:114.000000px;}
.y0_c01159{bottom:0.000000px;}
.y32_c01159{bottom:649.890000px;}
.y2a_c01159{bottom:661.496190px;}
.y2b_c01159{bottom:662.873280px;}
.y2c_c01159{bottom:664.177680px;}
.y2d_c01159{bottom:665.179770px;}
.y2e_c01159{bottom:666.023880px;}
.y2f_c01159{bottom:667.679310px;}
.y30_c01159{bottom:668.176680px;}
.y31_c01159{bottom:668.676960px;}
.y1e_c01159{bottom:707.941500px;}
.y1f_c01159{bottom:708.285510px;}
.y20_c01159{bottom:709.125030px;}
.y21_c01159{bottom:710.672040px;}
.y22_c01159{bottom:713.298390px;}
.y23_c01159{bottom:713.975940px;}
.y24_c01159{bottom:714.462390px;}
.y25_c01159{bottom:715.945260px;}
.y26_c01159{bottom:717.530700px;}
.y27_c01159{bottom:718.757010px;}
.y28_c01159{bottom:719.637780px;}
.y29_c01159{bottom:720.018180px;}
.y1c_c01159{bottom:740.067516px;}
.y18_c01159{bottom:740.067648px;}
.y1b_c01159{bottom:740.067924px;}
.y17_c01159{bottom:740.067996px;}
.y16_c01159{bottom:740.068092px;}
.y1d_c01159{bottom:740.068236px;}
.y19_c01159{bottom:740.068260px;}
.y1a_c01159{bottom:740.068512px;}
.y13_c01159{bottom:740.068668px;}
.y15_c01159{bottom:740.068740px;}
.y14_c01159{bottom:740.069148px;}
.y12_c01159{bottom:774.422808px;}
.y11_c01159{bottom:775.299792px;}
.y10_c01159{bottom:775.561284px;}
.yf_c01159{bottom:775.866180px;}
.ye_c01159{bottom:776.721240px;}
.yd_c01159{bottom:777.066552px;}
.yc_c01159{bottom:777.330000px;}
.yb_c01159{bottom:810.025500px;}
.ya_c01159{bottom:810.766500px;}
.y9_c01159{bottom:811.720500px;}
.y8_c01159{bottom:812.169000px;}
.y7_c01159{bottom:812.601000px;}
.y6_c01159{bottom:814.135500px;}
.y5_c01159{bottom:815.398500px;}
.y4_c01159{bottom:845.515500px;}
.y3_c01159{bottom:882.141000px;}
.y2_c01159{bottom:916.765500px;}
.y1_c01159{bottom:951.219000px;}
.ha_c01159{height:12.000000px;}
.h5_c01159{height:78.000000px;}
.h6_c01159{height:84.002688px;}
.h7_c01159{height:90.002880px;}
.h8_c01159{height:96.019198px;}
.h2_c01159{height:102.000000px;}
.h3_c01159{height:108.000000px;}
.h9_c01159{height:108.021598px;}
.h4_c01159{height:114.000000px;}
.h1_c01159{height:1258.500000px;}
.h0_c01159{height:1258.740000px;}
.w0_c01159{width:904.200000px;}
.w1_c01159{width:904.500000px;}
.x0_c01159{left:0.000000px;}
.x1_c01159{left:26.730000px;}
.x2_c01159{left:55.350000px;}
.x10_c01159{left:106.110000px;}
.x3d_c01159{left:116.164500px;}
.x3_c01159{left:118.260000px;}
.x19_c01159{left:119.340000px;}
.x23_c01159{left:125.010000px;}
.x3e_c01159{left:133.365000px;}
.x4_c01159{left:151.200000px;}
.x46_c01159{left:170.999460px;}
.x3f_c01159{left:175.341000px;}
.x11_c01159{left:207.630000px;}
.x5_c01159{left:208.710000px;}
.x36_c01159{left:214.921692px;}
.x1a_c01159{left:217.080000px;}
.x31_c01159{left:218.616000px;}
.x37_c01159{left:227.612508px;}
.x32_c01159{left:251.547000px;}
.x40_c01159{left:252.691500px;}
.x24_c01159{left:263.790000px;}
.x38_c01159{left:284.854668px;}
.x12_c01159{left:287.010000px;}
.x33_c01159{left:294.711000px;}
.x6_c01159{left:296.730000px;}
.x1b_c01159{left:305.640000px;}
.x2a_c01159{left:311.965500px;}
.x13_c01159{left:317.790000px;}
.x1c_c01159{left:339.660000px;}
.x14_c01159{left:343.440000px;}
.x47_c01159{left:349.791840px;}
.x7_c01159{left:363.150000px;}
.x41_c01159{left:384.009000px;}
.x4b_c01159{left:386.370000px;}
.x34_c01159{left:401.593500px;}
.x2b_c01159{left:409.146000px;}
.x48_c01159{left:416.553000px;}
.x8_c01159{left:417.960000px;}
.x1d_c01159{left:428.490000px;}
.x35_c01159{left:439.705500px;}
.x42_c01159{left:442.209000px;}
.x9_c01159{left:450.360000px;}
.x25_c01159{left:461.700000px;}
.xa_c01159{left:472.500000px;}
.x15_c01159{left:494.910000px;}
.x39_c01159{left:505.991316px;}
.x1e_c01159{left:516.780000px;}
.x2c_c01159{left:527.133000px;}
.xb_c01159{left:538.650000px;}
.x3a_c01159{left:549.462600px;}
.x2d_c01159{left:560.389500px;}
.x1f_c01159{left:563.220000px;}
.x16_c01159{left:571.860000px;}
.x26_c01159{left:572.940000px;}
.xc_c01159{left:581.850000px;}
.x49_c01159{left:583.246680px;}
.x2e_c01159{left:594.940500px;}
.x3b_c01159{left:606.164724px;}
.x17_c01159{left:607.770000px;}
.xd_c01159{left:616.410000px;}
.x27_c01159{left:646.110000px;}
.x20_c01159{left:648.270000px;}
.x4a_c01159{left:649.785840px;}
.xe_c01159{left:650.970000px;}
.x43_c01159{left:656.940000px;}
.x2f_c01159{left:668.364000px;}
.x3c_c01159{left:670.157316px;}
.x21_c01159{left:671.490000px;}
.x18_c01159{left:692.280000px;}
.x44_c01159{left:700.978500px;}
.x28_c01159{left:704.430000px;}
.x45_c01159{left:719.998500px;}
.x30_c01159{left:725.314500px;}
.x22_c01159{left:735.210000px;}
.xf_c01159{left:737.100000px;}
.x29_c01159{left:738.180000px;}
@media print{
.v0_c01159{vertical-align:0.000000pt;}
.ls0_c01159{letter-spacing:0.000000pt;}
.ws0_c01159{word-spacing:0.000000pt;}
.fs8_c01159{font-size:10.666667pt;}
.fs3_c01159{font-size:69.333333pt;}
.fs4_c01159{font-size:74.669056pt;}
.fs5_c01159{font-size:80.002560pt;}
.fs6_c01159{font-size:85.350398pt;}
.fs0_c01159{font-size:90.666667pt;}
.fs1_c01159{font-size:96.000000pt;}
.fs7_c01159{font-size:96.019198pt;}
.fs2_c01159{font-size:101.333333pt;}
.y0_c01159{bottom:0.000000pt;}
.y32_c01159{bottom:577.680000pt;}
.y2a_c01159{bottom:587.996613pt;}
.y2b_c01159{bottom:589.220693pt;}
.y2c_c01159{bottom:590.380160pt;}
.y2d_c01159{bottom:591.270907pt;}
.y2e_c01159{bottom:592.021227pt;}
.y2f_c01159{bottom:593.492720pt;}
.y30_c01159{bottom:593.934827pt;}
.y31_c01159{bottom:594.379520pt;}
.y1e_c01159{bottom:629.281333pt;}
.y1f_c01159{bottom:629.587120pt;}
.y20_c01159{bottom:630.333360pt;}
.y21_c01159{bottom:631.708480pt;}
.y22_c01159{bottom:634.043013pt;}
.y23_c01159{bottom:634.645280pt;}
.y24_c01159{bottom:635.077680pt;}
.y25_c01159{bottom:636.395787pt;}
.y26_c01159{bottom:637.805067pt;}
.y27_c01159{bottom:638.895120pt;}
.y28_c01159{bottom:639.678027pt;}
.y29_c01159{bottom:640.016160pt;}
.y1c_c01159{bottom:657.837792pt;}
.y18_c01159{bottom:657.837909pt;}
.y1b_c01159{bottom:657.838155pt;}
.y17_c01159{bottom:657.838219pt;}
.y16_c01159{bottom:657.838304pt;}
.y1d_c01159{bottom:657.838432pt;}
.y19_c01159{bottom:657.838453pt;}
.y1a_c01159{bottom:657.838677pt;}
.y13_c01159{bottom:657.838816pt;}
.y15_c01159{bottom:657.838880pt;}
.y14_c01159{bottom:657.839243pt;}
.y12_c01159{bottom:688.375829pt;}
.y11_c01159{bottom:689.155371pt;}
.y10_c01159{bottom:689.387808pt;}
.yf_c01159{bottom:689.658827pt;}
.ye_c01159{bottom:690.418880pt;}
.yd_c01159{bottom:690.725824pt;}
.yc_c01159{bottom:690.960000pt;}
.yb_c01159{bottom:720.022667pt;}
.ya_c01159{bottom:720.681333pt;}
.y9_c01159{bottom:721.529333pt;}
.y8_c01159{bottom:721.928000pt;}
.y7_c01159{bottom:722.312000pt;}
.y6_c01159{bottom:723.676000pt;}
.y5_c01159{bottom:724.798667pt;}
.y4_c01159{bottom:751.569333pt;}
.y3_c01159{bottom:784.125333pt;}
.y2_c01159{bottom:814.902667pt;}
.y1_c01159{bottom:845.528000pt;}
.ha_c01159{height:10.666667pt;}
.h5_c01159{height:69.333333pt;}
.h6_c01159{height:74.669056pt;}
.h7_c01159{height:80.002560pt;}
.h8_c01159{height:85.350398pt;}
.h2_c01159{height:90.666667pt;}
.h3_c01159{height:96.000000pt;}
.h9_c01159{height:96.019198pt;}
.h4_c01159{height:101.333333pt;}
.h1_c01159{height:1118.666667pt;}
.h0_c01159{height:1118.880000pt;}
.w0_c01159{width:803.733333pt;}
.w1_c01159{width:804.000000pt;}
.x0_c01159{left:0.000000pt;}
.x1_c01159{left:23.760000pt;}
.x2_c01159{left:49.200000pt;}
.x10_c01159{left:94.320000pt;}
.x3d_c01159{left:103.257333pt;}
.x3_c01159{left:105.120000pt;}
.x19_c01159{left:106.080000pt;}
.x23_c01159{left:111.120000pt;}
.x3e_c01159{left:118.546667pt;}
.x4_c01159{left:134.400000pt;}
.x46_c01159{left:151.999520pt;}
.x3f_c01159{left:155.858667pt;}
.x11_c01159{left:184.560000pt;}
.x5_c01159{left:185.520000pt;}
.x36_c01159{left:191.041504pt;}
.x1a_c01159{left:192.960000pt;}
.x31_c01159{left:194.325333pt;}
.x37_c01159{left:202.322229pt;}
.x32_c01159{left:223.597333pt;}
.x40_c01159{left:224.614667pt;}
.x24_c01159{left:234.480000pt;}
.x38_c01159{left:253.204149pt;}
.x12_c01159{left:255.120000pt;}
.x33_c01159{left:261.965333pt;}
.x6_c01159{left:263.760000pt;}
.x1b_c01159{left:271.680000pt;}
.x2a_c01159{left:277.302667pt;}
.x13_c01159{left:282.480000pt;}
.x1c_c01159{left:301.920000pt;}
.x14_c01159{left:305.280000pt;}
.x47_c01159{left:310.926080pt;}
.x7_c01159{left:322.800000pt;}
.x41_c01159{left:341.341333pt;}
.x4b_c01159{left:343.440000pt;}
.x34_c01159{left:356.972000pt;}
.x2b_c01159{left:363.685333pt;}
.x48_c01159{left:370.269333pt;}
.x8_c01159{left:371.520000pt;}
.x1d_c01159{left:380.880000pt;}
.x35_c01159{left:390.849333pt;}
.x42_c01159{left:393.074667pt;}
.x9_c01159{left:400.320000pt;}
.x25_c01159{left:410.400000pt;}
.xa_c01159{left:420.000000pt;}
.x15_c01159{left:439.920000pt;}
.x39_c01159{left:449.770059pt;}
.x1e_c01159{left:459.360000pt;}
.x2c_c01159{left:468.562667pt;}
.xb_c01159{left:478.800000pt;}
.x3a_c01159{left:488.411200pt;}
.x2d_c01159{left:498.124000pt;}
.x1f_c01159{left:500.640000pt;}
.x16_c01159{left:508.320000pt;}
.x26_c01159{left:509.280000pt;}
.xc_c01159{left:517.200000pt;}
.x49_c01159{left:518.441493pt;}
.x2e_c01159{left:528.836000pt;}
.x3b_c01159{left:538.813088pt;}
.x17_c01159{left:540.240000pt;}
.xd_c01159{left:547.920000pt;}
.x27_c01159{left:574.320000pt;}
.x20_c01159{left:576.240000pt;}
.x4a_c01159{left:577.587413pt;}
.xe_c01159{left:578.640000pt;}
.x43_c01159{left:583.946667pt;}
.x2f_c01159{left:594.101333pt;}
.x3c_c01159{left:595.695392pt;}
.x21_c01159{left:596.880000pt;}
.x18_c01159{left:615.360000pt;}
.x44_c01159{left:623.092000pt;}
.x28_c01159{left:626.160000pt;}
.x45_c01159{left:639.998667pt;}
.x30_c01159{left:644.724000pt;}
.x22_c01159{left:653.520000pt;}
.xf_c01159{left:655.200000pt;}
.x29_c01159{left:656.160000pt;}
}





/* 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_c01160 {
    display:none;
  }
  .loading-indicator_c01160.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01160 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_c01160 { 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_c01160" -> "#page-container .classname_c01160")
 */
.pf_c01160 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01160 { /* 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_c01160.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01160 { /* 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_c01160 { /* 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_c01160 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01160 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01160 {overflow:visible;}
  }
}
.c_c01160 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01160 { /* 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_c01160:after { /* webkit #35443 */
  content: '';
}
.t_c01160:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01160 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 */
}
.__c01160 { /* 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_c01160 { /* info for Javascript */
  display:none;
}
.l_c01160 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01160 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01160 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01160: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_c01160 {
    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_c01160.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01160.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_c01160 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01160{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01160;src:url('chunks/assets/font_fabf4b590f7fb32aea93ffb2.woff2')format("woff");}.ff1_c01160{font-family:ff1_c01160;line-height:1.000000;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;}
.m149_c01160{transform:matrix(0.134486,0.003631,-0.006748,0.249909,0,0);-ms-transform:matrix(0.134486,0.003631,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.134486,0.003631,-0.006748,0.249909,0,0);}
.m8c_c01160{transform:matrix(0.142764,0.002998,-0.005249,0.249945,0,0);-ms-transform:matrix(0.142764,0.002998,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.142764,0.002998,-0.005249,0.249945,0,0);}
.m133_c01160{transform:matrix(0.144663,0.003472,-0.005998,0.249928,0,0);-ms-transform:matrix(0.144663,0.003472,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.144663,0.003472,-0.005998,0.249928,0,0);}
.m141_c01160{transform:matrix(0.146457,0.003954,-0.006748,0.249909,0,0);-ms-transform:matrix(0.146457,0.003954,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.146457,0.003954,-0.006748,0.249909,0,0);}
.m2_c01160{transform:matrix(0.152345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152345,0.000000,0.000000,0.250000,0,0);}
.m118_c01160{transform:matrix(0.153886,0.003693,-0.005998,0.249928,0,0);-ms-transform:matrix(0.153886,0.003693,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.153886,0.003693,-0.005998,0.249928,0,0);}
.m119_c01160{transform:matrix(0.154371,0.003705,-0.005998,0.249928,0,0);-ms-transform:matrix(0.154371,0.003705,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.154371,0.003705,-0.005998,0.249928,0,0);}
.m121_c01160{transform:matrix(0.155275,0.003727,-0.005998,0.249928,0,0);-ms-transform:matrix(0.155275,0.003727,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.155275,0.003727,-0.005998,0.249928,0,0);}
.m117_c01160{transform:matrix(0.157360,0.003777,-0.005998,0.249928,0,0);-ms-transform:matrix(0.157360,0.003777,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.157360,0.003777,-0.005998,0.249928,0,0);}
.m11b_c01160{transform:matrix(0.157585,0.003782,-0.005998,0.249928,0,0);-ms-transform:matrix(0.157585,0.003782,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.157585,0.003782,-0.005998,0.249928,0,0);}
.mb4_c01160{transform:matrix(0.158149,0.003796,-0.005998,0.249928,0,0);-ms-transform:matrix(0.158149,0.003796,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.158149,0.003796,-0.005998,0.249928,0,0);}
.m0_c01160{transform:matrix(0.158815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158815,0.000000,0.000000,0.250000,0,0);}
.m11e_c01160{transform:matrix(0.164443,0.003947,-0.005998,0.249928,0,0);-ms-transform:matrix(0.164443,0.003947,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.164443,0.003947,-0.005998,0.249928,0,0);}
.m122_c01160{transform:matrix(0.164987,0.003960,-0.005998,0.249928,0,0);-ms-transform:matrix(0.164987,0.003960,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.164987,0.003960,-0.005998,0.249928,0,0);}
.m13_c01160{transform:matrix(0.171475,0.002915,-0.004249,0.249964,0,0);-ms-transform:matrix(0.171475,0.002915,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.171475,0.002915,-0.004249,0.249964,0,0);}
.m11f_c01160{transform:matrix(0.172225,0.004133,-0.005998,0.249928,0,0);-ms-transform:matrix(0.172225,0.004133,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.172225,0.004133,-0.005998,0.249928,0,0);}
.m11a_c01160{transform:matrix(0.174785,0.004195,-0.005998,0.249928,0,0);-ms-transform:matrix(0.174785,0.004195,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.174785,0.004195,-0.005998,0.249928,0,0);}
.m11c_c01160{transform:matrix(0.177634,0.004263,-0.005998,0.249928,0,0);-ms-transform:matrix(0.177634,0.004263,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.177634,0.004263,-0.005998,0.249928,0,0);}
.m120_c01160{transform:matrix(0.180643,0.004335,-0.005998,0.249928,0,0);-ms-transform:matrix(0.180643,0.004335,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.180643,0.004335,-0.005998,0.249928,0,0);}
.m142_c01160{transform:matrix(0.184133,0.004972,-0.006748,0.249909,0,0);-ms-transform:matrix(0.184133,0.004972,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.184133,0.004972,-0.006748,0.249909,0,0);}
.m11d_c01160{transform:matrix(0.184747,0.004434,-0.005998,0.249928,0,0);-ms-transform:matrix(0.184747,0.004434,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.184747,0.004434,-0.005998,0.249928,0,0);}
.m123_c01160{transform:matrix(0.186381,0.004473,-0.005998,0.249928,0,0);-ms-transform:matrix(0.186381,0.004473,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.186381,0.004473,-0.005998,0.249928,0,0);}
.ma9_c01160{transform:matrix(0.186816,0.004484,-0.005998,0.249928,0,0);-ms-transform:matrix(0.186816,0.004484,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.186816,0.004484,-0.005998,0.249928,0,0);}
.mf_c01160{transform:matrix(0.187303,0.003184,-0.004249,0.249964,0,0);-ms-transform:matrix(0.187303,0.003184,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.187303,0.003184,-0.004249,0.249964,0,0);}
.m5a_c01160{transform:matrix(0.190029,0.004181,-0.005499,0.249940,0,0);-ms-transform:matrix(0.190029,0.004181,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.190029,0.004181,-0.005499,0.249940,0,0);}
.m29_c01160{transform:matrix(0.190878,0.004008,-0.005249,0.249945,0,0);-ms-transform:matrix(0.190878,0.004008,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.190878,0.004008,-0.005249,0.249945,0,0);}
.me8_c01160{transform:matrix(0.196127,0.005884,-0.007497,0.249888,0,0);-ms-transform:matrix(0.196127,0.005884,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.196127,0.005884,-0.007497,0.249888,0,0);}
.me5_c01160{transform:matrix(0.200255,0.006008,-0.007497,0.249888,0,0);-ms-transform:matrix(0.200255,0.006008,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.200255,0.006008,-0.007497,0.249888,0,0);}
.me7_c01160{transform:matrix(0.201404,0.006042,-0.007497,0.249888,0,0);-ms-transform:matrix(0.201404,0.006042,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.201404,0.006042,-0.007497,0.249888,0,0);}
.m148_c01160{transform:matrix(0.201896,0.005451,-0.006748,0.249909,0,0);-ms-transform:matrix(0.201896,0.005451,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.201896,0.005451,-0.006748,0.249909,0,0);}
.m79_c01160{transform:matrix(0.202241,0.004449,-0.005499,0.249940,0,0);-ms-transform:matrix(0.202241,0.004449,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.202241,0.004449,-0.005499,0.249940,0,0);}
.maa_c01160{transform:matrix(0.202607,0.004863,-0.005998,0.249928,0,0);-ms-transform:matrix(0.202607,0.004863,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.202607,0.004863,-0.005998,0.249928,0,0);}
.mea_c01160{transform:matrix(0.203493,0.006105,-0.007497,0.249888,0,0);-ms-transform:matrix(0.203493,0.006105,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.203493,0.006105,-0.007497,0.249888,0,0);}
.mab_c01160{transform:matrix(0.204246,0.004902,-0.005998,0.249928,0,0);-ms-transform:matrix(0.204246,0.004902,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.204246,0.004902,-0.005998,0.249928,0,0);}
.m107_c01160{transform:matrix(0.205686,0.004936,-0.005998,0.249928,0,0);-ms-transform:matrix(0.205686,0.004936,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.205686,0.004936,-0.005998,0.249928,0,0);}
.mb0_c01160{transform:matrix(0.206865,0.004965,-0.005998,0.249928,0,0);-ms-transform:matrix(0.206865,0.004965,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.206865,0.004965,-0.005998,0.249928,0,0);}
.m82_c01160{transform:matrix(0.207054,0.004348,-0.005249,0.249945,0,0);-ms-transform:matrix(0.207054,0.004348,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.207054,0.004348,-0.005249,0.249945,0,0);}
.mf6_c01160{transform:matrix(0.207400,0.004978,-0.005998,0.249928,0,0);-ms-transform:matrix(0.207400,0.004978,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.207400,0.004978,-0.005998,0.249928,0,0);}
.m5_c01160{transform:matrix(0.209600,0.003563,-0.004249,0.249964,0,0);-ms-transform:matrix(0.209600,0.003563,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.209600,0.003563,-0.004249,0.249964,0,0);}
.mf8_c01160{transform:matrix(0.209875,0.005037,-0.005998,0.249928,0,0);-ms-transform:matrix(0.209875,0.005037,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.209875,0.005037,-0.005998,0.249928,0,0);}
.m2b_c01160{transform:matrix(0.210499,0.004420,-0.005249,0.249945,0,0);-ms-transform:matrix(0.210499,0.004420,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.210499,0.004420,-0.005249,0.249945,0,0);}
.mae_c01160{transform:matrix(0.210964,0.005063,-0.005998,0.249928,0,0);-ms-transform:matrix(0.210964,0.005063,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.210964,0.005063,-0.005998,0.249928,0,0);}
.mb3_c01160{transform:matrix(0.211154,0.005068,-0.005998,0.249928,0,0);-ms-transform:matrix(0.211154,0.005068,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.211154,0.005068,-0.005998,0.249928,0,0);}
.m73_c01160{transform:matrix(0.211579,0.004655,-0.005499,0.249940,0,0);-ms-transform:matrix(0.211579,0.004655,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.211579,0.004655,-0.005499,0.249940,0,0);}
.mfa_c01160{transform:matrix(0.211809,0.005083,-0.005998,0.249928,0,0);-ms-transform:matrix(0.211809,0.005083,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.211809,0.005083,-0.005998,0.249928,0,0);}
.m72_c01160{transform:matrix(0.212838,0.004682,-0.005499,0.249940,0,0);-ms-transform:matrix(0.212838,0.004682,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.212838,0.004682,-0.005499,0.249940,0,0);}
.m60_c01160{transform:matrix(0.213583,0.004699,-0.005499,0.249940,0,0);-ms-transform:matrix(0.213583,0.004699,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.213583,0.004699,-0.005499,0.249940,0,0);}
.m13b_c01160{transform:matrix(0.213852,0.005774,-0.006748,0.249909,0,0);-ms-transform:matrix(0.213852,0.005774,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.213852,0.005774,-0.006748,0.249909,0,0);}
.m63_c01160{transform:matrix(0.214363,0.004716,-0.005499,0.249940,0,0);-ms-transform:matrix(0.214363,0.004716,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.214363,0.004716,-0.005499,0.249940,0,0);}
.m128_c01160{transform:matrix(0.214603,0.005150,-0.005998,0.249928,0,0);-ms-transform:matrix(0.214603,0.005150,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.214603,0.005150,-0.005998,0.249928,0,0);}
.me4_c01160{transform:matrix(0.214823,0.006445,-0.007497,0.249888,0,0);-ms-transform:matrix(0.214823,0.006445,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.214823,0.006445,-0.007497,0.249888,0,0);}
.m12a_c01160{transform:matrix(0.215693,0.005177,-0.005998,0.249928,0,0);-ms-transform:matrix(0.215693,0.005177,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.215693,0.005177,-0.005998,0.249928,0,0);}
.m81_c01160{transform:matrix(0.216472,0.004546,-0.005249,0.249945,0,0);-ms-transform:matrix(0.216472,0.004546,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.216472,0.004546,-0.005249,0.249945,0,0);}
.m5d_c01160{transform:matrix(0.216673,0.004767,-0.005499,0.249940,0,0);-ms-transform:matrix(0.216673,0.004767,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.216673,0.004767,-0.005499,0.249940,0,0);}
.m78_c01160{transform:matrix(0.216943,0.004773,-0.005499,0.249940,0,0);-ms-transform:matrix(0.216943,0.004773,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.216943,0.004773,-0.005499,0.249940,0,0);}
.m71_c01160{transform:matrix(0.217652,0.004788,-0.005499,0.249940,0,0);-ms-transform:matrix(0.217652,0.004788,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.217652,0.004788,-0.005499,0.249940,0,0);}
.mf4_c01160{transform:matrix(0.217782,0.005227,-0.005998,0.249928,0,0);-ms-transform:matrix(0.217782,0.005227,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.217782,0.005227,-0.005998,0.249928,0,0);}
.m101_c01160{transform:matrix(0.218192,0.005237,-0.005998,0.249928,0,0);-ms-transform:matrix(0.218192,0.005237,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.218192,0.005237,-0.005998,0.249928,0,0);}
.m12b_c01160{transform:matrix(0.218562,0.005245,-0.005998,0.249928,0,0);-ms-transform:matrix(0.218562,0.005245,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.218562,0.005245,-0.005998,0.249928,0,0);}
.me_c01160{transform:matrix(0.219128,0.003725,-0.004249,0.249964,0,0);-ms-transform:matrix(0.219128,0.003725,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.219128,0.003725,-0.004249,0.249964,0,0);}
.mb1_c01160{transform:matrix(0.219267,0.005262,-0.005998,0.249928,0,0);-ms-transform:matrix(0.219267,0.005262,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.219267,0.005262,-0.005998,0.249928,0,0);}
.m7e_c01160{transform:matrix(0.220531,0.004631,-0.005249,0.249945,0,0);-ms-transform:matrix(0.220531,0.004631,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.220531,0.004631,-0.005249,0.249945,0,0);}
.me9_c01160{transform:matrix(0.221046,0.006631,-0.007497,0.249888,0,0);-ms-transform:matrix(0.221046,0.006631,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.221046,0.006631,-0.007497,0.249888,0,0);}
.m12c_c01160{transform:matrix(0.221056,0.005305,-0.005998,0.249928,0,0);-ms-transform:matrix(0.221056,0.005305,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.221056,0.005305,-0.005998,0.249928,0,0);}
.m1a_c01160{transform:matrix(0.221383,0.003764,-0.004249,0.249964,0,0);-ms-transform:matrix(0.221383,0.003764,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.221383,0.003764,-0.004249,0.249964,0,0);}
.ma7_c01160{transform:matrix(0.221916,0.005326,-0.005998,0.249928,0,0);-ms-transform:matrix(0.221916,0.005326,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.221916,0.005326,-0.005998,0.249928,0,0);}
.mfe_c01160{transform:matrix(0.223316,0.005360,-0.005998,0.249928,0,0);-ms-transform:matrix(0.223316,0.005360,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.223316,0.005360,-0.005998,0.249928,0,0);}
.m69_c01160{transform:matrix(0.223916,0.004926,-0.005499,0.249940,0,0);-ms-transform:matrix(0.223916,0.004926,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.223916,0.004926,-0.005499,0.249940,0,0);}
.mac_c01160{transform:matrix(0.223936,0.005374,-0.005998,0.249928,0,0);-ms-transform:matrix(0.223936,0.005374,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.223936,0.005374,-0.005998,0.249928,0,0);}
.m30_c01160{transform:matrix(0.224031,0.004705,-0.005249,0.249945,0,0);-ms-transform:matrix(0.224031,0.004705,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.224031,0.004705,-0.005249,0.249945,0,0);}
.m4d_c01160{transform:matrix(0.224695,0.003370,-0.003750,0.249972,0,0);-ms-transform:matrix(0.224695,0.003370,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.224695,0.003370,-0.003750,0.249972,0,0);}
.m15_c01160{transform:matrix(0.224718,0.003820,-0.004249,0.249964,0,0);-ms-transform:matrix(0.224718,0.003820,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.224718,0.003820,-0.004249,0.249964,0,0);}
.m61_c01160{transform:matrix(0.225260,0.004956,-0.005499,0.249940,0,0);-ms-transform:matrix(0.225260,0.004956,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.225260,0.004956,-0.005499,0.249940,0,0);}
.mee_c01160{transform:matrix(0.225780,0.005419,-0.005998,0.249928,0,0);-ms-transform:matrix(0.225780,0.005419,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.225780,0.005419,-0.005998,0.249928,0,0);}
.mf5_c01160{transform:matrix(0.225970,0.005423,-0.005998,0.249928,0,0);-ms-transform:matrix(0.225970,0.005423,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.225970,0.005423,-0.005998,0.249928,0,0);}
.m2d_c01160{transform:matrix(0.225985,0.004746,-0.005249,0.249945,0,0);-ms-transform:matrix(0.225985,0.004746,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.225985,0.004746,-0.005249,0.249945,0,0);}
.mad_c01160{transform:matrix(0.226335,0.005432,-0.005998,0.249928,0,0);-ms-transform:matrix(0.226335,0.005432,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.226335,0.005432,-0.005998,0.249928,0,0);}
.mb6_c01160{transform:matrix(0.226450,0.005435,-0.005998,0.249928,0,0);-ms-transform:matrix(0.226450,0.005435,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.226450,0.005435,-0.005998,0.249928,0,0);}
.m38_c01160{transform:matrix(0.226979,0.003405,-0.003750,0.249972,0,0);-ms-transform:matrix(0.226979,0.003405,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.226979,0.003405,-0.003750,0.249972,0,0);}
.mfd_c01160{transform:matrix(0.227250,0.005454,-0.005998,0.249928,0,0);-ms-transform:matrix(0.227250,0.005454,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.227250,0.005454,-0.005998,0.249928,0,0);}
.ma_c01160{transform:matrix(0.227397,0.003866,-0.004249,0.249964,0,0);-ms-transform:matrix(0.227397,0.003866,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.227397,0.003866,-0.004249,0.249964,0,0);}
.mf7_c01160{transform:matrix(0.227474,0.005459,-0.005998,0.249928,0,0);-ms-transform:matrix(0.227474,0.005459,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.227474,0.005459,-0.005998,0.249928,0,0);}
.m1_c01160{transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);}
.m95_c01160{transform:matrix(0.228044,0.004561,-0.004999,0.249950,0,0);-ms-transform:matrix(0.228044,0.004561,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.228044,0.004561,-0.004999,0.249950,0,0);}
.m85_c01160{transform:matrix(0.228120,0.004791,-0.005249,0.249945,0,0);-ms-transform:matrix(0.228120,0.004791,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.228120,0.004791,-0.005249,0.249945,0,0);}
.m76_c01160{transform:matrix(0.228575,0.005029,-0.005499,0.249940,0,0);-ms-transform:matrix(0.228575,0.005029,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.228575,0.005029,-0.005499,0.249940,0,0);}
.m6e_c01160{transform:matrix(0.228760,0.005033,-0.005499,0.249940,0,0);-ms-transform:matrix(0.228760,0.005033,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.228760,0.005033,-0.005499,0.249940,0,0);}
.m7c_c01160{transform:matrix(0.229140,0.005041,-0.005499,0.249940,0,0);-ms-transform:matrix(0.229140,0.005041,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.229140,0.005041,-0.005499,0.249940,0,0);}
.m1f_c01160{transform:matrix(0.229232,0.003897,-0.004249,0.249964,0,0);-ms-transform:matrix(0.229232,0.003897,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.229232,0.003897,-0.004249,0.249964,0,0);}
.mdf_c01160{transform:matrix(0.229422,0.006883,-0.007497,0.249888,0,0);-ms-transform:matrix(0.229422,0.006883,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.229422,0.006883,-0.007497,0.249888,0,0);}
.m146_c01160{transform:matrix(0.229441,0.006195,-0.006748,0.249909,0,0);-ms-transform:matrix(0.229441,0.006195,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.229441,0.006195,-0.006748,0.249909,0,0);}
.m111_c01160{transform:matrix(0.229459,0.005507,-0.005998,0.249928,0,0);-ms-transform:matrix(0.229459,0.005507,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.229459,0.005507,-0.005998,0.249928,0,0);}
.mba_c01160{transform:matrix(0.230111,0.006903,-0.007497,0.249888,0,0);-ms-transform:matrix(0.230111,0.006903,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.230111,0.006903,-0.007497,0.249888,0,0);}
.m105_c01160{transform:matrix(0.230219,0.005525,-0.005998,0.249928,0,0);-ms-transform:matrix(0.230219,0.005525,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.230219,0.005525,-0.005998,0.249928,0,0);}
.md5_c01160{transform:matrix(0.230236,0.006907,-0.007497,0.249888,0,0);-ms-transform:matrix(0.230236,0.006907,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.230236,0.006907,-0.007497,0.249888,0,0);}
.mbb_c01160{transform:matrix(0.230791,0.006924,-0.007497,0.249888,0,0);-ms-transform:matrix(0.230791,0.006924,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.230791,0.006924,-0.007497,0.249888,0,0);}
.mb7_c01160{transform:matrix(0.230849,0.005540,-0.005998,0.249928,0,0);-ms-transform:matrix(0.230849,0.005540,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.230849,0.005540,-0.005998,0.249928,0,0);}
.m102_c01160{transform:matrix(0.231058,0.005545,-0.005998,0.249928,0,0);-ms-transform:matrix(0.231058,0.005545,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.231058,0.005545,-0.005998,0.249928,0,0);}
.mfc_c01160{transform:matrix(0.231338,0.005552,-0.005998,0.249928,0,0);-ms-transform:matrix(0.231338,0.005552,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.231338,0.005552,-0.005998,0.249928,0,0);}
.m45_c01160{transform:matrix(0.231493,0.004167,-0.004499,0.249960,0,0);-ms-transform:matrix(0.231493,0.004167,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.231493,0.004167,-0.004499,0.249960,0,0);}
.ma3_c01160{transform:matrix(0.231579,0.004632,-0.004999,0.249950,0,0);-ms-transform:matrix(0.231579,0.004632,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.231579,0.004632,-0.004999,0.249950,0,0);}
.m42_c01160{transform:matrix(0.231587,0.004169,-0.004499,0.249960,0,0);-ms-transform:matrix(0.231587,0.004169,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.231587,0.004169,-0.004499,0.249960,0,0);}
.mf9_c01160{transform:matrix(0.232113,0.005571,-0.005998,0.249928,0,0);-ms-transform:matrix(0.232113,0.005571,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.232113,0.005571,-0.005998,0.249928,0,0);}
.mbd_c01160{transform:matrix(0.232181,0.006965,-0.007497,0.249888,0,0);-ms-transform:matrix(0.232181,0.006965,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.232181,0.006965,-0.007497,0.249888,0,0);}
.m52_c01160{transform:matrix(0.232269,0.005110,-0.005499,0.249940,0,0);-ms-transform:matrix(0.232269,0.005110,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.232269,0.005110,-0.005499,0.249940,0,0);}
.m26_c01160{transform:matrix(0.232371,0.003950,-0.004249,0.249964,0,0);-ms-transform:matrix(0.232371,0.003950,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.232371,0.003950,-0.004249,0.249964,0,0);}
.mdb_c01160{transform:matrix(0.232975,0.006989,-0.007497,0.249888,0,0);-ms-transform:matrix(0.232975,0.006989,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.232975,0.006989,-0.007497,0.249888,0,0);}
.m32_c01160{transform:matrix(0.233654,0.003505,-0.003750,0.249972,0,0);-ms-transform:matrix(0.233654,0.003505,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.233654,0.003505,-0.003750,0.249972,0,0);}
.m83_c01160{transform:matrix(0.233683,0.004907,-0.005249,0.249945,0,0);-ms-transform:matrix(0.233683,0.004907,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.233683,0.004907,-0.005249,0.249945,0,0);}
.m7_c01160{transform:matrix(0.233701,0.003973,-0.004249,0.249964,0,0);-ms-transform:matrix(0.233701,0.003973,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.233701,0.003973,-0.004249,0.249964,0,0);}
.m109_c01160{transform:matrix(0.234158,0.005620,-0.005998,0.249928,0,0);-ms-transform:matrix(0.234158,0.005620,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.234158,0.005620,-0.005998,0.249928,0,0);}
.m98_c01160{transform:matrix(0.234313,0.004686,-0.004999,0.249950,0,0);-ms-transform:matrix(0.234313,0.004686,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.234313,0.004686,-0.004999,0.249950,0,0);}
.m137_c01160{transform:matrix(0.234470,0.006331,-0.006748,0.249909,0,0);-ms-transform:matrix(0.234470,0.006331,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.234470,0.006331,-0.006748,0.249909,0,0);}
.ma4_c01160{transform:matrix(0.234798,0.004696,-0.004999,0.249950,0,0);-ms-transform:matrix(0.234798,0.004696,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.234798,0.004696,-0.004999,0.249950,0,0);}
.m18_c01160{transform:matrix(0.235091,0.003997,-0.004249,0.249964,0,0);-ms-transform:matrix(0.235091,0.003997,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.235091,0.003997,-0.004249,0.249964,0,0);}
.m62_c01160{transform:matrix(0.235333,0.005177,-0.005499,0.249940,0,0);-ms-transform:matrix(0.235333,0.005177,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.235333,0.005177,-0.005499,0.249940,0,0);}
.mc7_c01160{transform:matrix(0.235614,0.007068,-0.007497,0.249888,0,0);-ms-transform:matrix(0.235614,0.007068,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.235614,0.007068,-0.007497,0.249888,0,0);}
.md3_c01160{transform:matrix(0.235744,0.007072,-0.007497,0.249888,0,0);-ms-transform:matrix(0.235744,0.007072,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.235744,0.007072,-0.007497,0.249888,0,0);}
.m57_c01160{transform:matrix(0.235793,0.005187,-0.005499,0.249940,0,0);-ms-transform:matrix(0.235793,0.005187,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.235793,0.005187,-0.005499,0.249940,0,0);}
.mfb_c01160{transform:matrix(0.236412,0.005674,-0.005998,0.249928,0,0);-ms-transform:matrix(0.236412,0.005674,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.236412,0.005674,-0.005998,0.249928,0,0);}
.m126_c01160{transform:matrix(0.236537,0.005677,-0.005998,0.249928,0,0);-ms-transform:matrix(0.236537,0.005677,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.236537,0.005677,-0.005998,0.249928,0,0);}
.md6_c01160{transform:matrix(0.236918,0.007108,-0.007497,0.249888,0,0);-ms-transform:matrix(0.236918,0.007108,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.236918,0.007108,-0.007497,0.249888,0,0);}
.m8a_c01160{transform:matrix(0.236973,0.004976,-0.005249,0.249945,0,0);-ms-transform:matrix(0.236973,0.004976,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.236973,0.004976,-0.005249,0.249945,0,0);}
.m77_c01160{transform:matrix(0.236978,0.005214,-0.005499,0.249940,0,0);-ms-transform:matrix(0.236978,0.005214,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.236978,0.005214,-0.005499,0.249940,0,0);}
.m74_c01160{transform:matrix(0.237038,0.005215,-0.005499,0.249940,0,0);-ms-transform:matrix(0.237038,0.005215,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.237038,0.005215,-0.005499,0.249940,0,0);}
.m114_c01160{transform:matrix(0.237117,0.005691,-0.005998,0.249928,0,0);-ms-transform:matrix(0.237117,0.005691,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.237117,0.005691,-0.005998,0.249928,0,0);}
.m22_c01160{transform:matrix(0.237151,0.004032,-0.004249,0.249964,0,0);-ms-transform:matrix(0.237151,0.004032,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.237151,0.004032,-0.004249,0.249964,0,0);}
.m55_c01160{transform:matrix(0.237443,0.005224,-0.005499,0.249940,0,0);-ms-transform:matrix(0.237443,0.005224,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.237443,0.005224,-0.005499,0.249940,0,0);}
.m5b_c01160{transform:matrix(0.237727,0.005230,-0.005499,0.249940,0,0);-ms-transform:matrix(0.237727,0.005230,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.237727,0.005230,-0.005499,0.249940,0,0);}
.maf_c01160{transform:matrix(0.237901,0.005710,-0.005998,0.249928,0,0);-ms-transform:matrix(0.237901,0.005710,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.237901,0.005710,-0.005998,0.249928,0,0);}
.m39_c01160{transform:matrix(0.237948,0.003569,-0.003750,0.249972,0,0);-ms-transform:matrix(0.237948,0.003569,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.237948,0.003569,-0.003750,0.249972,0,0);}
.mf0_c01160{transform:matrix(0.238286,0.005719,-0.005998,0.249928,0,0);-ms-transform:matrix(0.238286,0.005719,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.238286,0.005719,-0.005998,0.249928,0,0);}
.mc1_c01160{transform:matrix(0.238428,0.007153,-0.007497,0.249888,0,0);-ms-transform:matrix(0.238428,0.007153,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.238428,0.007153,-0.007497,0.249888,0,0);}
.m11_c01160{transform:matrix(0.238631,0.004057,-0.004249,0.249964,0,0);-ms-transform:matrix(0.238631,0.004057,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.238631,0.004057,-0.004249,0.249964,0,0);}
.m9d_c01160{transform:matrix(0.239247,0.004785,-0.004999,0.249950,0,0);-ms-transform:matrix(0.239247,0.004785,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.239247,0.004785,-0.004999,0.249950,0,0);}
.m88_c01160{transform:matrix(0.239257,0.005024,-0.005249,0.249945,0,0);-ms-transform:matrix(0.239257,0.005024,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.239257,0.005024,-0.005249,0.249945,0,0);}
.me6_c01160{transform:matrix(0.239382,0.007181,-0.007497,0.249888,0,0);-ms-transform:matrix(0.239382,0.007181,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.239382,0.007181,-0.007497,0.249888,0,0);}
.m4a_c01160{transform:matrix(0.239446,0.004310,-0.004499,0.249960,0,0);-ms-transform:matrix(0.239446,0.004310,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.239446,0.004310,-0.004499,0.249960,0,0);}
.m6c_c01160{transform:matrix(0.239532,0.005270,-0.005499,0.249940,0,0);-ms-transform:matrix(0.239532,0.005270,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.239532,0.005270,-0.005499,0.249940,0,0);}
.m37_c01160{transform:matrix(0.239538,0.003593,-0.003750,0.249972,0,0);-ms-transform:matrix(0.239538,0.003593,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.239538,0.003593,-0.003750,0.249972,0,0);}
.mda_c01160{transform:matrix(0.239977,0.007199,-0.007497,0.249888,0,0);-ms-transform:matrix(0.239977,0.007199,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.239977,0.007199,-0.007497,0.249888,0,0);}
.m46_c01160{transform:matrix(0.240066,0.004321,-0.004499,0.249960,0,0);-ms-transform:matrix(0.240066,0.004321,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.240066,0.004321,-0.004499,0.249960,0,0);}
.m16_c01160{transform:matrix(0.240070,0.004081,-0.004249,0.249964,0,0);-ms-transform:matrix(0.240070,0.004081,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.240070,0.004081,-0.004249,0.249964,0,0);}
.m1b_c01160{transform:matrix(0.240080,0.004081,-0.004249,0.249964,0,0);-ms-transform:matrix(0.240080,0.004081,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.240080,0.004081,-0.004249,0.249964,0,0);}
.ma8_c01160{transform:matrix(0.240166,0.005764,-0.005998,0.249928,0,0);-ms-transform:matrix(0.240166,0.005764,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.240166,0.005764,-0.005998,0.249928,0,0);}
.m2c_c01160{transform:matrix(0.240442,0.005049,-0.005249,0.249945,0,0);-ms-transform:matrix(0.240442,0.005049,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.240442,0.005049,-0.005249,0.249945,0,0);}
.mdc_c01160{transform:matrix(0.240527,0.007216,-0.007497,0.249888,0,0);-ms-transform:matrix(0.240527,0.007216,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.240527,0.007216,-0.007497,0.249888,0,0);}
.m4f_c01160{transform:matrix(0.240902,0.005300,-0.005499,0.249940,0,0);-ms-transform:matrix(0.240902,0.005300,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.240902,0.005300,-0.005499,0.249940,0,0);}
.m7d_c01160{transform:matrix(0.240907,0.005300,-0.005499,0.249940,0,0);-ms-transform:matrix(0.240907,0.005300,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.240907,0.005300,-0.005499,0.249940,0,0);}
.mcd_c01160{transform:matrix(0.241886,0.007257,-0.007497,0.249888,0,0);-ms-transform:matrix(0.241886,0.007257,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.241886,0.007257,-0.007497,0.249888,0,0);}
.mf1_c01160{transform:matrix(0.241945,0.005807,-0.005998,0.249928,0,0);-ms-transform:matrix(0.241945,0.005807,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.241945,0.005807,-0.005998,0.249928,0,0);}
.m44_c01160{transform:matrix(0.241976,0.004356,-0.004499,0.249960,0,0);-ms-transform:matrix(0.241976,0.004356,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.241976,0.004356,-0.004499,0.249960,0,0);}
.m129_c01160{transform:matrix(0.242110,0.005811,-0.005998,0.249928,0,0);-ms-transform:matrix(0.242110,0.005811,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.242110,0.005811,-0.005998,0.249928,0,0);}
.mb9_c01160{transform:matrix(0.242131,0.007264,-0.007497,0.249888,0,0);-ms-transform:matrix(0.242131,0.007264,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.242131,0.007264,-0.007497,0.249888,0,0);}
.m2f_c01160{transform:matrix(0.242322,0.005089,-0.005249,0.249945,0,0);-ms-transform:matrix(0.242322,0.005089,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.242322,0.005089,-0.005249,0.249945,0,0);}
.m2e_c01160{transform:matrix(0.242652,0.005096,-0.005249,0.249945,0,0);-ms-transform:matrix(0.242652,0.005096,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.242652,0.005096,-0.005249,0.249945,0,0);}
.ma1_c01160{transform:matrix(0.244046,0.004881,-0.004999,0.249950,0,0);-ms-transform:matrix(0.244046,0.004881,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.244046,0.004881,-0.004999,0.249950,0,0);}
.m8f_c01160{transform:matrix(0.244066,0.004881,-0.004999,0.249950,0,0);-ms-transform:matrix(0.244066,0.004881,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.244066,0.004881,-0.004999,0.249950,0,0);}
.ma0_c01160{transform:matrix(0.244421,0.004888,-0.004999,0.249950,0,0);-ms-transform:matrix(0.244421,0.004888,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.244421,0.004888,-0.004999,0.249950,0,0);}
.mb8_c01160{transform:matrix(0.244490,0.005868,-0.005998,0.249928,0,0);-ms-transform:matrix(0.244490,0.005868,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.244490,0.005868,-0.005998,0.249928,0,0);}
.m89_c01160{transform:matrix(0.244816,0.005141,-0.005249,0.249945,0,0);-ms-transform:matrix(0.244816,0.005141,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.244816,0.005141,-0.005249,0.249945,0,0);}
.m48_c01160{transform:matrix(0.244985,0.004410,-0.004499,0.249960,0,0);-ms-transform:matrix(0.244985,0.004410,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.244985,0.004410,-0.004499,0.249960,0,0);}
.mc5_c01160{transform:matrix(0.245105,0.007353,-0.007497,0.249888,0,0);-ms-transform:matrix(0.245105,0.007353,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.245105,0.007353,-0.007497,0.249888,0,0);}
.m115_c01160{transform:matrix(0.245389,0.005889,-0.005998,0.249928,0,0);-ms-transform:matrix(0.245389,0.005889,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.245389,0.005889,-0.005998,0.249928,0,0);}
.m124_c01160{transform:matrix(0.245554,0.005893,-0.005998,0.249928,0,0);-ms-transform:matrix(0.245554,0.005893,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.245554,0.005893,-0.005998,0.249928,0,0);}
.m51_c01160{transform:matrix(0.245666,0.005405,-0.005499,0.249940,0,0);-ms-transform:matrix(0.245666,0.005405,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.245666,0.005405,-0.005499,0.249940,0,0);}
.m125_c01160{transform:matrix(0.245689,0.005897,-0.005998,0.249928,0,0);-ms-transform:matrix(0.245689,0.005897,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.245689,0.005897,-0.005998,0.249928,0,0);}
.m2a_c01160{transform:matrix(0.245716,0.005160,-0.005249,0.249945,0,0);-ms-transform:matrix(0.245716,0.005160,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.245716,0.005160,-0.005249,0.249945,0,0);}
.m10a_c01160{transform:matrix(0.246124,0.005907,-0.005998,0.249928,0,0);-ms-transform:matrix(0.246124,0.005907,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.246124,0.005907,-0.005998,0.249928,0,0);}
.m1d_c01160{transform:matrix(0.246149,0.004185,-0.004249,0.249964,0,0);-ms-transform:matrix(0.246149,0.004185,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.246149,0.004185,-0.004249,0.249964,0,0);}
.m91_c01160{transform:matrix(0.246156,0.004923,-0.004999,0.249950,0,0);-ms-transform:matrix(0.246156,0.004923,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.246156,0.004923,-0.004999,0.249950,0,0);}
.md9_c01160{transform:matrix(0.246829,0.007405,-0.007497,0.249888,0,0);-ms-transform:matrix(0.246829,0.007405,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.246829,0.007405,-0.007497,0.249888,0,0);}
.m5e_c01160{transform:matrix(0.247240,0.005439,-0.005499,0.249940,0,0);-ms-transform:matrix(0.247240,0.005439,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.247240,0.005439,-0.005499,0.249940,0,0);}
.m94_c01160{transform:matrix(0.247251,0.004945,-0.004999,0.249950,0,0);-ms-transform:matrix(0.247251,0.004945,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.247251,0.004945,-0.004999,0.249950,0,0);}
.m12d_c01160{transform:matrix(0.247359,0.005937,-0.005998,0.249928,0,0);-ms-transform:matrix(0.247359,0.005937,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.247359,0.005937,-0.005998,0.249928,0,0);}
.m34_c01160{transform:matrix(0.247412,0.003711,-0.003750,0.249972,0,0);-ms-transform:matrix(0.247412,0.003711,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.247412,0.003711,-0.003750,0.249972,0,0);}
.m7f_c01160{transform:matrix(0.247630,0.005200,-0.005249,0.249945,0,0);-ms-transform:matrix(0.247630,0.005200,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.247630,0.005200,-0.005249,0.249945,0,0);}
.mc0_c01160{transform:matrix(0.248023,0.007441,-0.007497,0.249888,0,0);-ms-transform:matrix(0.248023,0.007441,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.248023,0.007441,-0.007497,0.249888,0,0);}
.m6a_c01160{transform:matrix(0.249345,0.005486,-0.005499,0.249940,0,0);-ms-transform:matrix(0.249345,0.005486,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.249345,0.005486,-0.005499,0.249940,0,0);}
.m10e_c01160{transform:matrix(0.249908,0.005998,-0.005998,0.249928,0,0);-ms-transform:matrix(0.249908,0.005998,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.249908,0.005998,-0.005998,0.249928,0,0);}
.m3e_c01160{transform:matrix(0.250419,0.004508,-0.004499,0.249960,0,0);-ms-transform:matrix(0.250419,0.004508,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.250419,0.004508,-0.004499,0.249960,0,0);}
.m84_c01160{transform:matrix(0.250685,0.005264,-0.005249,0.249945,0,0);-ms-transform:matrix(0.250685,0.005264,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.250685,0.005264,-0.005249,0.249945,0,0);}
.m86_c01160{transform:matrix(0.251700,0.005286,-0.005249,0.249945,0,0);-ms-transform:matrix(0.251700,0.005286,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.251700,0.005286,-0.005249,0.249945,0,0);}
.m68_c01160{transform:matrix(0.251889,0.005542,-0.005499,0.249940,0,0);-ms-transform:matrix(0.251889,0.005542,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.251889,0.005542,-0.005499,0.249940,0,0);}
.ma2_c01160{transform:matrix(0.252065,0.005041,-0.004999,0.249950,0,0);-ms-transform:matrix(0.252065,0.005041,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.252065,0.005041,-0.004999,0.249950,0,0);}
.m7a_c01160{transform:matrix(0.252474,0.005554,-0.005499,0.249940,0,0);-ms-transform:matrix(0.252474,0.005554,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.252474,0.005554,-0.005499,0.249940,0,0);}
.md4_c01160{transform:matrix(0.252866,0.007586,-0.007497,0.249888,0,0);-ms-transform:matrix(0.252866,0.007586,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.252866,0.007586,-0.007497,0.249888,0,0);}
.m21_c01160{transform:matrix(0.252948,0.004300,-0.004249,0.249964,0,0);-ms-transform:matrix(0.252948,0.004300,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.252948,0.004300,-0.004249,0.249964,0,0);}
.mbf_c01160{transform:matrix(0.253016,0.007590,-0.007497,0.249888,0,0);-ms-transform:matrix(0.253016,0.007590,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.253016,0.007590,-0.007497,0.249888,0,0);}
.m100_c01160{transform:matrix(0.253087,0.006074,-0.005998,0.249928,0,0);-ms-transform:matrix(0.253087,0.006074,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.253087,0.006074,-0.005998,0.249928,0,0);}
.m24_c01160{transform:matrix(0.253093,0.004303,-0.004249,0.249964,0,0);-ms-transform:matrix(0.253093,0.004303,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.253093,0.004303,-0.004249,0.249964,0,0);}
.mb5_c01160{transform:matrix(0.253187,0.006076,-0.005998,0.249928,0,0);-ms-transform:matrix(0.253187,0.006076,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.253187,0.006076,-0.005998,0.249928,0,0);}
.m58_c01160{transform:matrix(0.253239,0.005571,-0.005499,0.249940,0,0);-ms-transform:matrix(0.253239,0.005571,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.253239,0.005571,-0.005499,0.249940,0,0);}
.m64_c01160{transform:matrix(0.253539,0.005578,-0.005499,0.249940,0,0);-ms-transform:matrix(0.253539,0.005578,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.253539,0.005578,-0.005499,0.249940,0,0);}
.m75_c01160{transform:matrix(0.253559,0.005578,-0.005499,0.249940,0,0);-ms-transform:matrix(0.253559,0.005578,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.253559,0.005578,-0.005499,0.249940,0,0);}
.m28_c01160{transform:matrix(0.253564,0.005325,-0.005249,0.249945,0,0);-ms-transform:matrix(0.253564,0.005325,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.253564,0.005325,-0.005249,0.249945,0,0);}
.m14a_c01160{transform:matrix(0.254402,0.006869,-0.006748,0.249909,0,0);-ms-transform:matrix(0.254402,0.006869,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.254402,0.006869,-0.006748,0.249909,0,0);}
.mbe_c01160{transform:matrix(0.254660,0.007640,-0.007497,0.249888,0,0);-ms-transform:matrix(0.254660,0.007640,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.254660,0.007640,-0.007497,0.249888,0,0);}
.m3b_c01160{transform:matrix(0.254691,0.003820,-0.003750,0.249972,0,0);-ms-transform:matrix(0.254691,0.003820,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.254691,0.003820,-0.003750,0.249972,0,0);}
.mf2_c01160{transform:matrix(0.254907,0.006118,-0.005998,0.249928,0,0);-ms-transform:matrix(0.254907,0.006118,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.254907,0.006118,-0.005998,0.249928,0,0);}
.mc_c01160{transform:matrix(0.255173,0.004338,-0.004249,0.249964,0,0);-ms-transform:matrix(0.255173,0.004338,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.255173,0.004338,-0.004249,0.249964,0,0);}
.m33_c01160{transform:matrix(0.255306,0.003830,-0.003750,0.249972,0,0);-ms-transform:matrix(0.255306,0.003830,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.255306,0.003830,-0.003750,0.249972,0,0);}
.m8d_c01160{transform:matrix(0.255589,0.005112,-0.004999,0.249950,0,0);-ms-transform:matrix(0.255589,0.005112,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.255589,0.005112,-0.004999,0.249950,0,0);}
.m9b_c01160{transform:matrix(0.255614,0.005112,-0.004999,0.249950,0,0);-ms-transform:matrix(0.255614,0.005112,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.255614,0.005112,-0.004999,0.249950,0,0);}
.m87_c01160{transform:matrix(0.255619,0.005368,-0.005249,0.249945,0,0);-ms-transform:matrix(0.255619,0.005368,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.255619,0.005368,-0.005249,0.249945,0,0);}
.m7b_c01160{transform:matrix(0.255958,0.005631,-0.005499,0.249940,0,0);-ms-transform:matrix(0.255958,0.005631,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.255958,0.005631,-0.005499,0.249940,0,0);}
.m50_c01160{transform:matrix(0.256143,0.005635,-0.005499,0.249940,0,0);-ms-transform:matrix(0.256143,0.005635,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.256143,0.005635,-0.005499,0.249940,0,0);}
.m134_c01160{transform:matrix(0.256276,0.006151,-0.005998,0.249928,0,0);-ms-transform:matrix(0.256276,0.006151,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.256276,0.006151,-0.005998,0.249928,0,0);}
.mff_c01160{transform:matrix(0.256366,0.006153,-0.005998,0.249928,0,0);-ms-transform:matrix(0.256366,0.006153,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.256366,0.006153,-0.005998,0.249928,0,0);}
.m5c_c01160{transform:matrix(0.256538,0.005644,-0.005499,0.249940,0,0);-ms-transform:matrix(0.256538,0.005644,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.256538,0.005644,-0.005499,0.249940,0,0);}
.mcb_c01160{transform:matrix(0.256914,0.007707,-0.007497,0.249888,0,0);-ms-transform:matrix(0.256914,0.007707,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.256914,0.007707,-0.007497,0.249888,0,0);}
.m20_c01160{transform:matrix(0.257708,0.004381,-0.004249,0.249964,0,0);-ms-transform:matrix(0.257708,0.004381,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.257708,0.004381,-0.004249,0.249964,0,0);}
.mbc_c01160{transform:matrix(0.258514,0.007755,-0.007497,0.249888,0,0);-ms-transform:matrix(0.258514,0.007755,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.258514,0.007755,-0.007497,0.249888,0,0);}
.m56_c01160{transform:matrix(0.258927,0.005696,-0.005499,0.249940,0,0);-ms-transform:matrix(0.258927,0.005696,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.258927,0.005696,-0.005499,0.249940,0,0);}
.m12f_c01160{transform:matrix(0.259080,0.006218,-0.005998,0.249928,0,0);-ms-transform:matrix(0.259080,0.006218,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.259080,0.006218,-0.005998,0.249928,0,0);}
.m53_c01160{transform:matrix(0.259677,0.005713,-0.005499,0.249940,0,0);-ms-transform:matrix(0.259677,0.005713,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.259677,0.005713,-0.005499,0.249940,0,0);}
.me1_c01160{transform:matrix(0.259838,0.007795,-0.007497,0.249888,0,0);-ms-transform:matrix(0.259838,0.007795,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.259838,0.007795,-0.007497,0.249888,0,0);}
.m6d_c01160{transform:matrix(0.259882,0.005717,-0.005499,0.249940,0,0);-ms-transform:matrix(0.259882,0.005717,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.259882,0.005717,-0.005499,0.249940,0,0);}
.mb2_c01160{transform:matrix(0.260005,0.006240,-0.005998,0.249928,0,0);-ms-transform:matrix(0.260005,0.006240,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.260005,0.006240,-0.005998,0.249928,0,0);}
.mde_c01160{transform:matrix(0.260318,0.007810,-0.007497,0.249888,0,0);-ms-transform:matrix(0.260318,0.007810,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.260318,0.007810,-0.007497,0.249888,0,0);}
.m103_c01160{transform:matrix(0.260350,0.006248,-0.005998,0.249928,0,0);-ms-transform:matrix(0.260350,0.006248,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.260350,0.006248,-0.005998,0.249928,0,0);}
.m3d_c01160{transform:matrix(0.260456,0.003907,-0.003750,0.249972,0,0);-ms-transform:matrix(0.260456,0.003907,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.260456,0.003907,-0.003750,0.249972,0,0);}
.m59_c01160{transform:matrix(0.260502,0.005731,-0.005499,0.249940,0,0);-ms-transform:matrix(0.260502,0.005731,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.260502,0.005731,-0.005499,0.249940,0,0);}
.mdd_c01160{transform:matrix(0.260703,0.007821,-0.007497,0.249888,0,0);-ms-transform:matrix(0.260703,0.007821,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.260703,0.007821,-0.007497,0.249888,0,0);}
.m99_c01160{transform:matrix(0.260723,0.005214,-0.004999,0.249950,0,0);-ms-transform:matrix(0.260723,0.005214,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.260723,0.005214,-0.004999,0.249950,0,0);}
.m65_c01160{transform:matrix(0.260727,0.005736,-0.005499,0.249940,0,0);-ms-transform:matrix(0.260727,0.005736,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.260727,0.005736,-0.005499,0.249940,0,0);}
.m8b_c01160{transform:matrix(0.260872,0.005478,-0.005249,0.249945,0,0);-ms-transform:matrix(0.260872,0.005478,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.260872,0.005478,-0.005249,0.249945,0,0);}
.m9c_c01160{transform:matrix(0.260993,0.005220,-0.004999,0.249950,0,0);-ms-transform:matrix(0.260993,0.005220,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.260993,0.005220,-0.004999,0.249950,0,0);}
.m5f_c01160{transform:matrix(0.261052,0.005743,-0.005499,0.249940,0,0);-ms-transform:matrix(0.261052,0.005743,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.261052,0.005743,-0.005499,0.249940,0,0);}
.m31_c01160{transform:matrix(0.261992,0.005502,-0.005249,0.249945,0,0);-ms-transform:matrix(0.261992,0.005502,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.261992,0.005502,-0.005249,0.249945,0,0);}
.m67_c01160{transform:matrix(0.261997,0.005764,-0.005499,0.249940,0,0);-ms-transform:matrix(0.261997,0.005764,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.261997,0.005764,-0.005499,0.249940,0,0);}
.m3c_c01160{transform:matrix(0.262076,0.003931,-0.003750,0.249972,0,0);-ms-transform:matrix(0.262076,0.003931,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.262076,0.003931,-0.003750,0.249972,0,0);}
.m49_c01160{transform:matrix(0.262168,0.004719,-0.004499,0.249960,0,0);-ms-transform:matrix(0.262168,0.004719,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.262168,0.004719,-0.004499,0.249960,0,0);}
.m9a_c01160{transform:matrix(0.262173,0.005243,-0.004999,0.249950,0,0);-ms-transform:matrix(0.262173,0.005243,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.262173,0.005243,-0.004999,0.249950,0,0);}
.m4b_c01160{transform:matrix(0.262226,0.003933,-0.003750,0.249972,0,0);-ms-transform:matrix(0.262226,0.003933,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.262226,0.003933,-0.003750,0.249972,0,0);}
.md_c01160{transform:matrix(0.262327,0.004460,-0.004249,0.249964,0,0);-ms-transform:matrix(0.262327,0.004460,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.262327,0.004460,-0.004249,0.249964,0,0);}
.m23_c01160{transform:matrix(0.262512,0.004463,-0.004249,0.249964,0,0);-ms-transform:matrix(0.262512,0.004463,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.262512,0.004463,-0.004249,0.249964,0,0);}
.m1c_c01160{transform:matrix(0.262847,0.004468,-0.004249,0.249964,0,0);-ms-transform:matrix(0.262847,0.004468,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.262847,0.004468,-0.004249,0.249964,0,0);}
.mc4_c01160{transform:matrix(0.263037,0.007891,-0.007497,0.249888,0,0);-ms-transform:matrix(0.263037,0.007891,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.263037,0.007891,-0.007497,0.249888,0,0);}
.mef_c01160{transform:matrix(0.263154,0.006316,-0.005998,0.249928,0,0);-ms-transform:matrix(0.263154,0.006316,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.263154,0.006316,-0.005998,0.249928,0,0);}
.m25_c01160{transform:matrix(0.263427,0.004478,-0.004249,0.249964,0,0);-ms-transform:matrix(0.263427,0.004478,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.263427,0.004478,-0.004249,0.249964,0,0);}
.md2_c01160{transform:matrix(0.263901,0.007917,-0.007497,0.249888,0,0);-ms-transform:matrix(0.263901,0.007917,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.263901,0.007917,-0.007497,0.249888,0,0);}
.m80_c01160{transform:matrix(0.264097,0.005546,-0.005249,0.249945,0,0);-ms-transform:matrix(0.264097,0.005546,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.264097,0.005546,-0.005249,0.249945,0,0);}
.m12_c01160{transform:matrix(0.264537,0.004497,-0.004249,0.249964,0,0);-ms-transform:matrix(0.264537,0.004497,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.264537,0.004497,-0.004249,0.249964,0,0);}
.m96_c01160{transform:matrix(0.264637,0.005293,-0.004999,0.249950,0,0);-ms-transform:matrix(0.264637,0.005293,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.264637,0.005293,-0.004999,0.249950,0,0);}
.m70_c01160{transform:matrix(0.264851,0.005827,-0.005499,0.249940,0,0);-ms-transform:matrix(0.264851,0.005827,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.264851,0.005827,-0.005499,0.249940,0,0);}
.m4c_c01160{transform:matrix(0.265115,0.003977,-0.003750,0.249972,0,0);-ms-transform:matrix(0.265115,0.003977,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.265115,0.003977,-0.003750,0.249972,0,0);}
.m41_c01160{transform:matrix(0.265452,0.004778,-0.004499,0.249960,0,0);-ms-transform:matrix(0.265452,0.004778,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.265452,0.004778,-0.004499,0.249960,0,0);}
.mc6_c01160{transform:matrix(0.265735,0.007972,-0.007497,0.249888,0,0);-ms-transform:matrix(0.265735,0.007972,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.265735,0.007972,-0.007497,0.249888,0,0);}
.m14_c01160{transform:matrix(0.265772,0.004518,-0.004249,0.249964,0,0);-ms-transform:matrix(0.265772,0.004518,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.265772,0.004518,-0.004249,0.249964,0,0);}
.m104_c01160{transform:matrix(0.266173,0.006388,-0.005998,0.249928,0,0);-ms-transform:matrix(0.266173,0.006388,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.266173,0.006388,-0.005998,0.249928,0,0);}
.m9e_c01160{transform:matrix(0.266327,0.005327,-0.004999,0.249950,0,0);-ms-transform:matrix(0.266327,0.005327,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.266327,0.005327,-0.004999,0.249950,0,0);}
.m10_c01160{transform:matrix(0.266671,0.004533,-0.004249,0.249964,0,0);-ms-transform:matrix(0.266671,0.004533,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.266671,0.004533,-0.004249,0.249964,0,0);}
.m6_c01160{transform:matrix(0.266821,0.004536,-0.004249,0.249964,0,0);-ms-transform:matrix(0.266821,0.004536,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.266821,0.004536,-0.004249,0.249964,0,0);}
.med_c01160{transform:matrix(0.267083,0.006410,-0.005998,0.249928,0,0);-ms-transform:matrix(0.267083,0.006410,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.267083,0.006410,-0.005998,0.249928,0,0);}
.m36_c01160{transform:matrix(0.267940,0.004019,-0.003750,0.249972,0,0);-ms-transform:matrix(0.267940,0.004019,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.267940,0.004019,-0.003750,0.249972,0,0);}
.mc8_c01160{transform:matrix(0.268144,0.008044,-0.007497,0.249888,0,0);-ms-transform:matrix(0.268144,0.008044,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.268144,0.008044,-0.007497,0.249888,0,0);}
.m54_c01160{transform:matrix(0.268435,0.005906,-0.005499,0.249940,0,0);-ms-transform:matrix(0.268435,0.005906,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.268435,0.005906,-0.005499,0.249940,0,0);}
.m93_c01160{transform:matrix(0.268536,0.005371,-0.004999,0.249950,0,0);-ms-transform:matrix(0.268536,0.005371,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.268536,0.005371,-0.004999,0.249950,0,0);}
.m10f_c01160{transform:matrix(0.268718,0.006449,-0.005998,0.249928,0,0);-ms-transform:matrix(0.268718,0.006449,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.268718,0.006449,-0.005998,0.249928,0,0);}
.m127_c01160{transform:matrix(0.268763,0.006450,-0.005998,0.249928,0,0);-ms-transform:matrix(0.268763,0.006450,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.268763,0.006450,-0.005998,0.249928,0,0);}
.mcf_c01160{transform:matrix(0.269354,0.008081,-0.007497,0.249888,0,0);-ms-transform:matrix(0.269354,0.008081,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.269354,0.008081,-0.007497,0.249888,0,0);}
.m10d_c01160{transform:matrix(0.269362,0.006465,-0.005998,0.249928,0,0);-ms-transform:matrix(0.269362,0.006465,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.269362,0.006465,-0.005998,0.249928,0,0);}
.m92_c01160{transform:matrix(0.269456,0.005389,-0.004999,0.249950,0,0);-ms-transform:matrix(0.269456,0.005389,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.269456,0.005389,-0.004999,0.249950,0,0);}
.m9_c01160{transform:matrix(0.270061,0.004591,-0.004249,0.249964,0,0);-ms-transform:matrix(0.270061,0.004591,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.270061,0.004591,-0.004249,0.249964,0,0);}
.ma5_c01160{transform:matrix(0.270201,0.005404,-0.004999,0.249950,0,0);-ms-transform:matrix(0.270201,0.005404,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.270201,0.005404,-0.004999,0.249950,0,0);}
.m9f_c01160{transform:matrix(0.270301,0.005406,-0.004999,0.249950,0,0);-ms-transform:matrix(0.270301,0.005406,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.270301,0.005406,-0.004999,0.249950,0,0);}
.m6b_c01160{transform:matrix(0.270380,0.005948,-0.005499,0.249940,0,0);-ms-transform:matrix(0.270380,0.005948,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.270380,0.005948,-0.005499,0.249940,0,0);}
.m47_c01160{transform:matrix(0.270411,0.004867,-0.004499,0.249960,0,0);-ms-transform:matrix(0.270411,0.004867,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.270411,0.004867,-0.004499,0.249960,0,0);}
.m112_c01160{transform:matrix(0.270522,0.006493,-0.005998,0.249928,0,0);-ms-transform:matrix(0.270522,0.006493,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.270522,0.006493,-0.005998,0.249928,0,0);}
.mca_c01160{transform:matrix(0.270923,0.008128,-0.007497,0.249888,0,0);-ms-transform:matrix(0.270923,0.008128,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.270923,0.008128,-0.007497,0.249888,0,0);}
.m35_c01160{transform:matrix(0.270955,0.004064,-0.003750,0.249972,0,0);-ms-transform:matrix(0.270955,0.004064,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.270955,0.004064,-0.003750,0.249972,0,0);}
.m40_c01160{transform:matrix(0.271346,0.004884,-0.004499,0.249960,0,0);-ms-transform:matrix(0.271346,0.004884,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.271346,0.004884,-0.004499,0.249960,0,0);}
.m3f_c01160{transform:matrix(0.271721,0.004891,-0.004499,0.249960,0,0);-ms-transform:matrix(0.271721,0.004891,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.271721,0.004891,-0.004499,0.249960,0,0);}
.m10c_c01160{transform:matrix(0.271762,0.006522,-0.005998,0.249928,0,0);-ms-transform:matrix(0.271762,0.006522,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.271762,0.006522,-0.005998,0.249928,0,0);}
.m135_c01160{transform:matrix(0.272057,0.006529,-0.005998,0.249928,0,0);-ms-transform:matrix(0.272057,0.006529,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.272057,0.006529,-0.005998,0.249928,0,0);}
.m43_c01160{transform:matrix(0.272356,0.004902,-0.004499,0.249960,0,0);-ms-transform:matrix(0.272356,0.004902,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.272356,0.004902,-0.004499,0.249960,0,0);}
.md7_c01160{transform:matrix(0.272527,0.008176,-0.007497,0.249888,0,0);-ms-transform:matrix(0.272527,0.008176,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.272527,0.008176,-0.007497,0.249888,0,0);}
.mcc_c01160{transform:matrix(0.272597,0.008178,-0.007497,0.249888,0,0);-ms-transform:matrix(0.272597,0.008178,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.272597,0.008178,-0.007497,0.249888,0,0);}
.me0_c01160{transform:matrix(0.272637,0.008179,-0.007497,0.249888,0,0);-ms-transform:matrix(0.272637,0.008179,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.272637,0.008179,-0.007497,0.249888,0,0);}
.mb_c01160{transform:matrix(0.272886,0.004639,-0.004249,0.249964,0,0);-ms-transform:matrix(0.272886,0.004639,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.272886,0.004639,-0.004249,0.249964,0,0);}
.ma6_c01160{transform:matrix(0.272895,0.005458,-0.004999,0.249950,0,0);-ms-transform:matrix(0.272895,0.005458,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.272895,0.005458,-0.004999,0.249950,0,0);}
.m19_c01160{transform:matrix(0.273001,0.004641,-0.004249,0.249964,0,0);-ms-transform:matrix(0.273001,0.004641,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.273001,0.004641,-0.004249,0.249964,0,0);}
.m108_c01160{transform:matrix(0.273101,0.006554,-0.005998,0.249928,0,0);-ms-transform:matrix(0.273101,0.006554,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.273101,0.006554,-0.005998,0.249928,0,0);}
.md1_c01160{transform:matrix(0.273167,0.008195,-0.007497,0.249888,0,0);-ms-transform:matrix(0.273167,0.008195,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.273167,0.008195,-0.007497,0.249888,0,0);}
.mc9_c01160{transform:matrix(0.273257,0.008198,-0.007497,0.249888,0,0);-ms-transform:matrix(0.273257,0.008198,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.273257,0.008198,-0.007497,0.249888,0,0);}
.meb_c01160{transform:matrix(0.273511,0.006564,-0.005998,0.249928,0,0);-ms-transform:matrix(0.273511,0.006564,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.273511,0.006564,-0.005998,0.249928,0,0);}
.me3_c01160{transform:matrix(0.273512,0.008205,-0.007497,0.249888,0,0);-ms-transform:matrix(0.273512,0.008205,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.273512,0.008205,-0.007497,0.249888,0,0);}
.m90_c01160{transform:matrix(0.273810,0.005476,-0.004999,0.249950,0,0);-ms-transform:matrix(0.273810,0.005476,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.273810,0.005476,-0.004999,0.249950,0,0);}
.md0_c01160{transform:matrix(0.273882,0.008216,-0.007497,0.249888,0,0);-ms-transform:matrix(0.273882,0.008216,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.273882,0.008216,-0.007497,0.249888,0,0);}
.m136_c01160{transform:matrix(0.274181,0.006580,-0.005998,0.249928,0,0);-ms-transform:matrix(0.274181,0.006580,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.274181,0.006580,-0.005998,0.249928,0,0);}
.mf3_c01160{transform:matrix(0.274286,0.006583,-0.005998,0.249928,0,0);-ms-transform:matrix(0.274286,0.006583,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.274286,0.006583,-0.005998,0.249928,0,0);}
.m3_c01160{transform:matrix(0.274505,0.004667,-0.004249,0.249964,0,0);-ms-transform:matrix(0.274505,0.004667,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.274505,0.004667,-0.004249,0.249964,0,0);}
.m3a_c01160{transform:matrix(0.274849,0.004123,-0.003750,0.249972,0,0);-ms-transform:matrix(0.274849,0.004123,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.274849,0.004123,-0.003750,0.249972,0,0);}
.m10b_c01160{transform:matrix(0.274891,0.006597,-0.005998,0.249928,0,0);-ms-transform:matrix(0.274891,0.006597,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.274891,0.006597,-0.005998,0.249928,0,0);}
.m4e_c01160{transform:matrix(0.275554,0.004133,-0.003750,0.249972,0,0);-ms-transform:matrix(0.275554,0.004133,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.275554,0.004133,-0.003750,0.249972,0,0);}
.m66_c01160{transform:matrix(0.275728,0.006066,-0.005499,0.249940,0,0);-ms-transform:matrix(0.275728,0.006066,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.275728,0.006066,-0.005499,0.249940,0,0);}
.m4_c01160{transform:matrix(0.275950,0.004691,-0.004249,0.249964,0,0);-ms-transform:matrix(0.275950,0.004691,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.275950,0.004691,-0.004249,0.249964,0,0);}
.mc3_c01160{transform:matrix(0.275961,0.008279,-0.007497,0.249888,0,0);-ms-transform:matrix(0.275961,0.008279,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.275961,0.008279,-0.007497,0.249888,0,0);}
.m17_c01160{transform:matrix(0.276040,0.004693,-0.004249,0.249964,0,0);-ms-transform:matrix(0.276040,0.004693,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.276040,0.004693,-0.004249,0.249964,0,0);}
.m8e_c01160{transform:matrix(0.276285,0.005526,-0.004999,0.249950,0,0);-ms-transform:matrix(0.276285,0.005526,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.276285,0.005526,-0.004999,0.249950,0,0);}
.m106_c01160{transform:matrix(0.276675,0.006640,-0.005998,0.249928,0,0);-ms-transform:matrix(0.276675,0.006640,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.276675,0.006640,-0.005998,0.249928,0,0);}
.m8_c01160{transform:matrix(0.277760,0.004722,-0.004249,0.249964,0,0);-ms-transform:matrix(0.277760,0.004722,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.277760,0.004722,-0.004249,0.249964,0,0);}
.mc2_c01160{transform:matrix(0.278160,0.008345,-0.007497,0.249888,0,0);-ms-transform:matrix(0.278160,0.008345,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.278160,0.008345,-0.007497,0.249888,0,0);}
.m143_c01160{transform:matrix(0.278244,0.007513,-0.006748,0.249909,0,0);-ms-transform:matrix(0.278244,0.007513,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.278244,0.007513,-0.006748,0.249909,0,0);}
.m131_c01160{transform:matrix(0.278330,0.006680,-0.005998,0.249928,0,0);-ms-transform:matrix(0.278330,0.006680,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.278330,0.006680,-0.005998,0.249928,0,0);}
.m130_c01160{transform:matrix(0.278380,0.006681,-0.005998,0.249928,0,0);-ms-transform:matrix(0.278380,0.006681,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.278380,0.006681,-0.005998,0.249928,0,0);}
.m113_c01160{transform:matrix(0.279135,0.006699,-0.005998,0.249928,0,0);-ms-transform:matrix(0.279135,0.006699,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.279135,0.006699,-0.005998,0.249928,0,0);}
.me2_c01160{transform:matrix(0.279179,0.008375,-0.007497,0.249888,0,0);-ms-transform:matrix(0.279179,0.008375,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.279179,0.008375,-0.007497,0.249888,0,0);}
.mec_c01160{transform:matrix(0.279325,0.006704,-0.005998,0.249928,0,0);-ms-transform:matrix(0.279325,0.006704,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.279325,0.006704,-0.005998,0.249928,0,0);}
.m145_c01160{transform:matrix(0.279443,0.007545,-0.006748,0.249909,0,0);-ms-transform:matrix(0.279443,0.007545,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.279443,0.007545,-0.006748,0.249909,0,0);}
.md8_c01160{transform:matrix(0.280679,0.008420,-0.007497,0.249888,0,0);-ms-transform:matrix(0.280679,0.008420,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.280679,0.008420,-0.007497,0.249888,0,0);}
.m110_c01160{transform:matrix(0.281524,0.006757,-0.005998,0.249928,0,0);-ms-transform:matrix(0.281524,0.006757,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.281524,0.006757,-0.005998,0.249928,0,0);}
.m13e_c01160{transform:matrix(0.282807,0.007636,-0.006748,0.249909,0,0);-ms-transform:matrix(0.282807,0.007636,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.282807,0.007636,-0.006748,0.249909,0,0);}
.m6f_c01160{transform:matrix(0.283396,0.006235,-0.005499,0.249940,0,0);-ms-transform:matrix(0.283396,0.006235,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.283396,0.006235,-0.005499,0.249940,0,0);}
.m132_c01160{transform:matrix(0.286652,0.006880,-0.005998,0.249928,0,0);-ms-transform:matrix(0.286652,0.006880,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.286652,0.006880,-0.005998,0.249928,0,0);}
.m13c_c01160{transform:matrix(0.286716,0.007741,-0.006748,0.249909,0,0);-ms-transform:matrix(0.286716,0.007741,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.286716,0.007741,-0.006748,0.249909,0,0);}
.m116_c01160{transform:matrix(0.286967,0.006887,-0.005998,0.249928,0,0);-ms-transform:matrix(0.286967,0.006887,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.286967,0.006887,-0.005998,0.249928,0,0);}
.m13d_c01160{transform:matrix(0.288210,0.007782,-0.006748,0.249909,0,0);-ms-transform:matrix(0.288210,0.007782,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.288210,0.007782,-0.006748,0.249909,0,0);}
.m13a_c01160{transform:matrix(0.289475,0.007816,-0.006748,0.249909,0,0);-ms-transform:matrix(0.289475,0.007816,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.289475,0.007816,-0.006748,0.249909,0,0);}
.m27_c01160{transform:matrix(0.290053,0.004931,-0.004249,0.249964,0,0);-ms-transform:matrix(0.290053,0.004931,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.290053,0.004931,-0.004249,0.249964,0,0);}
.m140_c01160{transform:matrix(0.292733,0.007904,-0.006748,0.249909,0,0);-ms-transform:matrix(0.292733,0.007904,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.292733,0.007904,-0.006748,0.249909,0,0);}
.m97_c01160{transform:matrix(0.296986,0.005940,-0.004999,0.249950,0,0);-ms-transform:matrix(0.296986,0.005940,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.296986,0.005940,-0.004999,0.249950,0,0);}
.m12e_c01160{transform:matrix(0.305687,0.007336,-0.005998,0.249928,0,0);-ms-transform:matrix(0.305687,0.007336,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.305687,0.007336,-0.005998,0.249928,0,0);}
.m138_c01160{transform:matrix(0.307693,0.008308,-0.006748,0.249909,0,0);-ms-transform:matrix(0.307693,0.008308,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.307693,0.008308,-0.006748,0.249909,0,0);}
.m13f_c01160{transform:matrix(0.308533,0.008330,-0.006748,0.249909,0,0);-ms-transform:matrix(0.308533,0.008330,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.308533,0.008330,-0.006748,0.249909,0,0);}
.m139_c01160{transform:matrix(0.320503,0.008654,-0.006748,0.249909,0,0);-ms-transform:matrix(0.320503,0.008654,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.320503,0.008654,-0.006748,0.249909,0,0);}
.mce_c01160{transform:matrix(0.324519,0.009736,-0.007497,0.249888,0,0);-ms-transform:matrix(0.324519,0.009736,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.324519,0.009736,-0.007497,0.249888,0,0);}
.m1e_c01160{transform:matrix(0.348200,0.005919,-0.004249,0.249964,0,0);-ms-transform:matrix(0.348200,0.005919,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.348200,0.005919,-0.004249,0.249964,0,0);}
.m14b_c01160{transform:matrix(0.368226,0.009942,-0.006748,0.249909,0,0);-ms-transform:matrix(0.368226,0.009942,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.368226,0.009942,-0.006748,0.249909,0,0);}
.m144_c01160{transform:matrix(0.381701,0.010306,-0.006748,0.249909,0,0);-ms-transform:matrix(0.381701,0.010306,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.381701,0.010306,-0.006748,0.249909,0,0);}
.m147_c01160{transform:matrix(0.573821,0.015493,-0.006748,0.249909,0,0);-ms-transform:matrix(0.573821,0.015493,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.573821,0.015493,-0.006748,0.249909,0,0);}
.v0_c01160{vertical-align:0.000000px;}
.ls0_c01160{letter-spacing:0.000000px;}
.sc__c01160{text-shadow:none;}
.sc0_c01160{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__c01160{-webkit-text-stroke:0px transparent;}
.sc0_c01160{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01160{word-spacing:0.000000px;}
.fc0_c01160{color:transparent;}
.fs10_c01160{font-size:60.021866px;}
.fs2_c01160{font-size:66.009536px;}
.fs4_c01160{font-size:72.008100px;}
.fs1_c01160{font-size:72.010403px;}
.fs5_c01160{font-size:72.011663px;}
.fs9_c01160{font-size:72.014399px;}
.fs8_c01160{font-size:72.015874px;}
.fs6_c01160{font-size:72.017422px;}
.fse_c01160{font-size:72.020733px;}
.fs11_c01160{font-size:72.026239px;}
.fsc_c01160{font-size:72.032393px;}
.fs0_c01160{font-size:78.000000px;}
.fs3_c01160{font-size:78.017197px;}
.fs7_c01160{font-size:78.018874px;}
.fsb_c01160{font-size:78.022461px;}
.fsa_c01160{font-size:84.024189px;}
.fsd_c01160{font-size:84.037791px;}
.fsf_c01160{font-size:108.031100px;}
.y0_c01160{bottom:0.000000px;}
.y150_c01160{bottom:79.477469px;}
.y14f_c01160{bottom:81.610399px;}
.y14e_c01160{bottom:82.291497px;}
.y14d_c01160{bottom:83.683125px;}
.y14c_c01160{bottom:90.210873px;}
.y14b_c01160{bottom:90.891201px;}
.y14a_c01160{bottom:92.501225px;}
.y149_c01160{bottom:93.428166px;}
.y148_c01160{bottom:97.255584px;}
.y147_c01160{bottom:98.167279px;}
.y146_c01160{bottom:98.709089px;}
.y145_c01160{bottom:101.172987px;}
.y144_c01160{bottom:102.675942px;}
.y143_c01160{bottom:103.572288px;}
.y142_c01160{bottom:104.126895px;}
.y141_c01160{bottom:105.381504px;}
.y140_c01160{bottom:105.960573px;}
.y13f_c01160{bottom:106.519311px;}
.y13e_c01160{bottom:108.656294px;}
.y13d_c01160{bottom:110.718027px;}
.y13c_c01160{bottom:111.514500px;}
.y13b_c01160{bottom:150.202476px;}
.y13a_c01160{bottom:152.801628px;}
.y139_c01160{bottom:154.495464px;}
.y138_c01160{bottom:155.030028px;}
.y137_c01160{bottom:158.575572px;}
.y136_c01160{bottom:161.152704px;}
.y135_c01160{bottom:164.535924px;}
.y134_c01160{bottom:166.542228px;}
.y133_c01160{bottom:185.535444px;}
.y132_c01160{bottom:186.823356px;}
.y131_c01160{bottom:187.670088px;}
.y130_c01160{bottom:188.511456px;}
.y12f_c01160{bottom:189.153540px;}
.y12e_c01160{bottom:190.417056px;}
.y12d_c01160{bottom:191.041608px;}
.y12c_c01160{bottom:193.433916px;}
.y12b_c01160{bottom:194.407392px;}
.y12a_c01160{bottom:196.050792px;}
.y129_c01160{bottom:196.697124px;}
.y128_c01160{bottom:198.138756px;}
.y127_c01160{bottom:221.872956px;}
.y126_c01160{bottom:222.522792px;}
.y125_c01160{bottom:223.153296px;}
.y124_c01160{bottom:224.652072px;}
.y123_c01160{bottom:225.883848px;}
.y122_c01160{bottom:226.730088px;}
.y121_c01160{bottom:228.624216px;}
.y120_c01160{bottom:230.117256px;}
.y11f_c01160{bottom:230.733324px;}
.y11e_c01160{bottom:231.974556px;}
.y11d_c01160{bottom:232.589652px;}
.y11c_c01160{bottom:233.224884px;}
.y11b_c01160{bottom:234.054960px;}
.y11a_c01160{bottom:256.868196px;}
.y119_c01160{bottom:257.613192px;}
.y118_c01160{bottom:258.383640px;}
.y117_c01160{bottom:260.688372px;}
.y116_c01160{bottom:261.428244px;}
.y115_c01160{bottom:262.981212px;}
.y114_c01160{bottom:263.714604px;}
.y113_c01160{bottom:266.777436px;}
.y112_c01160{bottom:269.503188px;}
.y111_c01160{bottom:270.786600px;}
.y110_c01160{bottom:291.584208px;}
.y10f_c01160{bottom:293.308380px;}
.y10e_c01160{bottom:295.008132px;}
.y10d_c01160{bottom:295.726608px;}
.y10c_c01160{bottom:296.663688px;}
.y10b_c01160{bottom:298.850808px;}
.y10a_c01160{bottom:299.592120px;}
.y109_c01160{bottom:301.822176px;}
.y108_c01160{bottom:302.528904px;}
.y107_c01160{bottom:304.239108px;}
.y106_c01160{bottom:305.896164px;}
.y105_c01160{bottom:328.619556px;}
.y104_c01160{bottom:329.368896px;}
.y103_c01160{bottom:331.330848px;}
.y102_c01160{bottom:333.772200px;}
.y101_c01160{bottom:334.491216px;}
.y100_c01160{bottom:335.708292px;}
.yff_c01160{bottom:336.688164px;}
.yfe_c01160{bottom:337.901460px;}
.yfd_c01160{bottom:338.632464px;}
.yfc_c01160{bottom:340.075380px;}
.yfb_c01160{bottom:340.813200px;}
.yfa_c01160{bottom:341.538840px;}
.yf9_c01160{bottom:342.255252px;}
.yf8_c01160{bottom:342.729900px;}
.yf7_c01160{bottom:343.703868px;}
.yf6_c01160{bottom:364.162764px;}
.yf5_c01160{bottom:365.253420px;}
.yf4_c01160{bottom:365.776428px;}
.yf3_c01160{bottom:366.834864px;}
.yf2_c01160{bottom:368.442516px;}
.yf1_c01160{bottom:369.238692px;}
.yf0_c01160{bottom:371.359524px;}
.yef_c01160{bottom:374.536596px;}
.yee_c01160{bottom:376.927500px;}
.yed_c01160{bottom:405.626505px;}
.yec_c01160{bottom:406.929645px;}
.yeb_c01160{bottom:407.760900px;}
.yea_c01160{bottom:408.418590px;}
.ye9_c01160{bottom:410.902440px;}
.ye8_c01160{bottom:411.539250px;}
.ye7_c01160{bottom:412.769670px;}
.ye6_c01160{bottom:434.100420px;}
.ye5_c01160{bottom:434.919540px;}
.ye4_c01160{bottom:437.331720px;}
.ye3_c01160{bottom:438.661395px;}
.ye2_c01160{bottom:440.541525px;}
.ye1_c01160{bottom:441.306555px;}
.ye0_c01160{bottom:442.636815px;}
.ydf_c01160{bottom:444.250980px;}
.yde_c01160{bottom:445.028070px;}
.ydd_c01160{bottom:446.050935px;}
.ydc_c01160{bottom:447.387570px;}
.ydb_c01160{bottom:448.448310px;}
.yda_c01160{bottom:449.239950px;}
.yd9_c01160{bottom:468.377340px;}
.yd8_c01160{bottom:470.791410px;}
.yd7_c01160{bottom:471.640695px;}
.yd6_c01160{bottom:472.419105px;}
.yd5_c01160{bottom:473.995425px;}
.yd4_c01160{bottom:474.825495px;}
.yd3_c01160{bottom:476.412240px;}
.yd2_c01160{bottom:479.052585px;}
.yd1_c01160{bottom:481.438155px;}
.yd0_c01160{bottom:483.277665px;}
.ycf_c01160{bottom:506.327610px;}
.yce_c01160{bottom:506.995605px;}
.ycd_c01160{bottom:508.679205px;}
.ycc_c01160{bottom:509.551155px;}
.ycb_c01160{bottom:511.004580px;}
.yca_c01160{bottom:512.502825px;}
.yc9_c01160{bottom:513.109035px;}
.yc8_c01160{bottom:514.788135px;}
.yc7_c01160{bottom:515.619420px;}
.yc6_c01160{bottom:517.097130px;}
.yc5_c01160{bottom:517.927650px;}
.yc4_c01160{bottom:519.199140px;}
.yc3_c01160{bottom:540.706935px;}
.yc2_c01160{bottom:544.037205px;}
.yc1_c01160{bottom:545.034990px;}
.yc0_c01160{bottom:546.678795px;}
.ybf_c01160{bottom:548.029650px;}
.ybe_c01160{bottom:549.669720px;}
.ybd_c01160{bottom:550.673175px;}
.ybc_c01160{bottom:552.649890px;}
.ybb_c01160{bottom:553.663380px;}
.yba_c01160{bottom:554.660220px;}
.yb9_c01160{bottom:555.672000px;}
.yb8_c01160{bottom:587.672160px;}
.yb7_c01160{bottom:588.289368px;}
.yb6_c01160{bottom:588.590796px;}
.yb5_c01160{bottom:589.842612px;}
.yb4_c01160{bottom:590.299944px;}
.yb3_c01160{bottom:590.752968px;}
.yb2_c01160{bottom:611.251176px;}
.yb1_c01160{bottom:612.360948px;}
.yb0_c01160{bottom:613.184124px;}
.yaf_c01160{bottom:615.297252px;}
.yae_c01160{bottom:616.088676px;}
.yad_c01160{bottom:617.157876px;}
.yac_c01160{bottom:618.724344px;}
.yab_c01160{bottom:619.793868px;}
.yaa_c01160{bottom:620.592996px;}
.ya9_c01160{bottom:621.388416px;}
.ya8_c01160{bottom:625.096848px;}
.ya7_c01160{bottom:626.677500px;}
.ya6_c01160{bottom:650.139600px;}
.ya5_c01160{bottom:651.540870px;}
.ya4_c01160{bottom:652.342830px;}
.ya3_c01160{bottom:652.942080px;}
.ya2_c01160{bottom:653.928030px;}
.ya1_c01160{bottom:654.536790px;}
.ya0_c01160{bottom:654.934860px;}
.y9f_c01160{bottom:656.535720px;}
.y9e_c01160{bottom:657.926340px;}
.y9d_c01160{bottom:658.513920px;}
.y9c_c01160{bottom:659.699700px;}
.y9b_c01160{bottom:660.866790px;}
.y9a_c01160{bottom:661.497780px;}
.y99_c01160{bottom:683.167380px;}
.y98_c01160{bottom:683.842560px;}
.y97_c01160{bottom:685.944690px;}
.y96_c01160{bottom:687.198420px;}
.y95_c01160{bottom:687.850290px;}
.y94_c01160{bottom:688.287720px;}
.y93_c01160{bottom:689.866050px;}
.y92_c01160{bottom:691.405380px;}
.y91_c01160{bottom:692.280330px;}
.y90_c01160{bottom:694.268010px;}
.y8f_c01160{bottom:695.335920px;}
.y8e_c01160{bottom:696.025140px;}
.y8d_c01160{bottom:696.876000px;}
.y8c_c01160{bottom:717.565173px;}
.y8b_c01160{bottom:718.794020px;}
.y8a_c01160{bottom:719.507337px;}
.y89_c01160{bottom:719.966859px;}
.y88_c01160{bottom:720.910001px;}
.y87_c01160{bottom:722.061483px;}
.y86_c01160{bottom:722.776218px;}
.y85_c01160{bottom:723.467801px;}
.y84_c01160{bottom:724.834460px;}
.y83_c01160{bottom:725.554865px;}
.y82_c01160{bottom:726.018167px;}
.y81_c01160{bottom:726.683321px;}
.y80_c01160{bottom:730.664322px;}
.y7f_c01160{bottom:731.582768px;}
.y7e_c01160{bottom:732.246000px;}
.y7d_c01160{bottom:757.314057px;}
.y7c_c01160{bottom:758.018706px;}
.y7b_c01160{bottom:759.652950px;}
.y7a_c01160{bottom:761.221896px;}
.y79_c01160{bottom:761.760741px;}
.y78_c01160{bottom:762.310644px;}
.y77_c01160{bottom:763.352151px;}
.y76_c01160{bottom:764.074659px;}
.y75_c01160{bottom:765.492276px;}
.y74_c01160{bottom:766.370289px;}
.y73_c01160{bottom:766.899891px;}
.y72_c01160{bottom:767.581878px;}
.y71_c01160{bottom:768.126120px;}
.y70_c01160{bottom:788.397297px;}
.y6f_c01160{bottom:790.851507px;}
.y6e_c01160{bottom:791.565033px;}
.y6d_c01160{bottom:792.539358px;}
.y6c_c01160{bottom:793.025151px;}
.y6b_c01160{bottom:794.767254px;}
.y6a_c01160{bottom:795.705939px;}
.y69_c01160{bottom:796.436526px;}
.y68_c01160{bottom:797.642709px;}
.y67_c01160{bottom:799.347720px;}
.y66_c01160{bottom:801.545520px;}
.y65_c01160{bottom:803.239179px;}
.y64_c01160{bottom:825.913185px;}
.y63_c01160{bottom:826.632156px;}
.y62_c01160{bottom:828.088017px;}
.y61_c01160{bottom:828.843255px;}
.y60_c01160{bottom:829.578462px;}
.y5f_c01160{bottom:832.502724px;}
.y5e_c01160{bottom:834.665280px;}
.y5d_c01160{bottom:835.430451px;}
.y5c_c01160{bottom:838.301649px;}
.y5b_c01160{bottom:839.531328px;}
.y5a_c01160{bottom:840.235911px;}
.y59_c01160{bottom:862.304589px;}
.y58_c01160{bottom:863.530143px;}
.y57_c01160{bottom:864.284721px;}
.y56_c01160{bottom:865.503180px;}
.y55_c01160{bottom:866.198523px;}
.y54_c01160{bottom:868.152453px;}
.y53_c01160{bottom:869.851656px;}
.y52_c01160{bottom:870.854625px;}
.y51_c01160{bottom:872.061864px;}
.y50_c01160{bottom:873.524193px;}
.y4f_c01160{bottom:874.266000px;}
.y4e_c01160{bottom:908.208570px;}
.y4d_c01160{bottom:908.682307px;}
.y4c_c01160{bottom:909.994665px;}
.y4b_c01160{bottom:910.983000px;}
.y4a_c01160{bottom:933.049251px;}
.y49_c01160{bottom:934.347438px;}
.y48_c01160{bottom:935.105922px;}
.y47_c01160{bottom:936.705051px;}
.y46_c01160{bottom:937.332153px;}
.y45_c01160{bottom:937.924101px;}
.y44_c01160{bottom:938.327508px;}
.y43_c01160{bottom:939.932712px;}
.y42_c01160{bottom:940.515993px;}
.y41_c01160{bottom:942.090903px;}
.y40_c01160{bottom:943.500438px;}
.y3f_c01160{bottom:944.302473px;}
.y3e_c01160{bottom:945.274500px;}
.y3d_c01160{bottom:970.143037px;}
.y3c_c01160{bottom:970.783162px;}
.y3b_c01160{bottom:971.633820px;}
.y3a_c01160{bottom:972.958192px;}
.y39_c01160{bottom:973.464802px;}
.y38_c01160{bottom:973.954200px;}
.y37_c01160{bottom:974.618625px;}
.y36_c01160{bottom:976.113997px;}
.y35_c01160{bottom:977.592270px;}
.y34_c01160{bottom:978.580785px;}
.y33_c01160{bottom:979.589370px;}
.y32_c01160{bottom:980.103000px;}
.y31_c01160{bottom:1004.379630px;}
.y30_c01160{bottom:1005.310487px;}
.y2f_c01160{bottom:1006.728522px;}
.y2e_c01160{bottom:1008.100725px;}
.y2d_c01160{bottom:1008.575934px;}
.y2c_c01160{bottom:1009.745970px;}
.y2b_c01160{bottom:1010.441931px;}
.y2a_c01160{bottom:1012.087649px;}
.y29_c01160{bottom:1012.517151px;}
.y28_c01160{bottom:1014.396000px;}
.y27_c01160{bottom:1050.266103px;}
.y26_c01160{bottom:1073.426972px;}
.y25_c01160{bottom:1074.705290px;}
.y24_c01160{bottom:1075.542164px;}
.y23_c01160{bottom:1076.820048px;}
.y22_c01160{bottom:1077.435782px;}
.y21_c01160{bottom:1078.487834px;}
.y20_c01160{bottom:1079.724855px;}
.y1f_c01160{bottom:1080.391086px;}
.y1e_c01160{bottom:1081.443674px;}
.y1d_c01160{bottom:1082.481119px;}
.y1c_c01160{bottom:1083.959141px;}
.y1b_c01160{bottom:1084.384346px;}
.y1a_c01160{bottom:1085.848143px;}
.y19_c01160{bottom:1086.472797px;}
.y18_c01160{bottom:1109.844872px;}
.y17_c01160{bottom:1110.615405px;}
.y16_c01160{bottom:1112.328623px;}
.y15_c01160{bottom:1112.897936px;}
.y14_c01160{bottom:1113.452535px;}
.y13_c01160{bottom:1114.761654px;}
.y12_c01160{bottom:1115.152442px;}
.y11_c01160{bottom:1116.639474px;}
.y10_c01160{bottom:1117.575222px;}
.yf_c01160{bottom:1118.912034px;}
.ye_c01160{bottom:1119.646103px;}
.yd_c01160{bottom:1120.227936px;}
.yc_c01160{bottom:1143.655679px;}
.yb_c01160{bottom:1144.619834px;}
.ya_c01160{bottom:1146.139455px;}
.y9_c01160{bottom:1146.676561px;}
.y8_c01160{bottom:1148.186927px;}
.y7_c01160{bottom:1149.532230px;}
.y6_c01160{bottom:1150.087544px;}
.y5_c01160{bottom:1151.418771px;}
.y4_c01160{bottom:1151.776358px;}
.y3_c01160{bottom:1153.631610px;}
.y2_c01160{bottom:1155.334500px;}
.y1_c01160{bottom:1224.445500px;}
.h12_c01160{height:60.021866px;}
.h4_c01160{height:66.009536px;}
.h6_c01160{height:72.008100px;}
.h3_c01160{height:72.010403px;}
.h7_c01160{height:72.011663px;}
.hb_c01160{height:72.014399px;}
.ha_c01160{height:72.015874px;}
.h8_c01160{height:72.017422px;}
.h10_c01160{height:72.020733px;}
.h13_c01160{height:72.026239px;}
.he_c01160{height:72.032393px;}
.h2_c01160{height:78.000000px;}
.h5_c01160{height:78.017197px;}
.h9_c01160{height:78.018874px;}
.hd_c01160{height:78.022461px;}
.hc_c01160{height:84.024189px;}
.hf_c01160{height:84.037791px;}
.h11_c01160{height:108.031100px;}
.h1_c01160{height:1258.500000px;}
.h0_c01160{height:1258.740000px;}
.w0_c01160{width:904.200000px;}
.w1_c01160{width:904.500000px;}
.x0_c01160{left:0.000000px;}
.xe5_c01160{left:130.805047px;}
.xcc_c01160{left:133.373364px;}
.xb6_c01160{left:134.799744px;}
.x9a_c01160{left:136.041315px;}
.xac_c01160{left:137.151300px;}
.x7d_c01160{left:138.266760px;}
.x58_c01160{left:140.595084px;}
.x30_c01160{left:142.668000px;}
.xf_c01160{left:145.362071px;}
.x4_c01160{left:146.367000px;}
.xdf_c01160{left:156.169500px;}
.xa6_c01160{left:169.011345px;}
.x8f_c01160{left:170.159184px;}
.x69_c01160{left:172.773000px;}
.x4e_c01160{left:174.630090px;}
.x31_c01160{left:176.910000px;}
.x1a_c01160{left:178.216275px;}
.x10_c01160{left:179.587571px;}
.x74_c01160{left:183.207000px;}
.xe0_c01160{left:185.668500px;}
.xc6_c01160{left:190.246872px;}
.x39_c01160{left:197.119500px;}
.xb7_c01160{left:200.661912px;}
.x90_c01160{left:202.847532px;}
.x86_c01160{left:204.330000px;}
.x42_c01160{left:209.061000px;}
.xcd_c01160{left:210.562152px;}
.xa1_c01160{left:212.878095px;}
.x6a_c01160{left:216.508500px;}
.x59_c01160{left:217.579584px;}
.x11_c01160{left:222.768071px;}
.x4f_c01160{left:230.524590px;}
.xb8_c01160{left:233.201460px;}
.xad_c01160{left:235.424700px;}
.x7e_c01160{left:238.149750px;}
.x3a_c01160{left:241.677000px;}
.xce_c01160{left:242.945040px;}
.x32_c01160{left:244.149000px;}
.x5_c01160{left:246.537000px;}
.x45_c01160{left:251.355000px;}
.x26_c01160{left:253.506000px;}
.x1b_c01160{left:255.231149px;}
.xe1_c01160{left:262.029000px;}
.xb9_c01160{left:266.188044px;}
.xa7_c01160{left:268.891800px;}
.x75_c01160{left:271.063500px;}
.x1c_c01160{left:277.595384px;}
.x93_c01160{left:279.847500px;}
.xe6_c01160{left:283.988833px;}
.x46_c01160{left:285.073500px;}
.xc1_c01160{left:287.460996px;}
.x91_c01160{left:292.277988px;}
.x43_c01160{left:296.551500px;}
.xba_c01160{left:299.744664px;}
.x12_c01160{left:301.404071px;}
.x7f_c01160{left:304.041390px;}
.x62_c01160{left:305.431296px;}
.xc7_c01160{left:308.760216px;}
.x33_c01160{left:310.050000px;}
.xa2_c01160{left:312.264960px;}
.x92_c01160{left:313.842672px;}
.x5a_c01160{left:317.479584px;}
.x3b_c01160{left:319.984500px;}
.x9b_c01160{left:324.527505px;}
.x44_c01160{left:328.134000px;}
.xd5_c01160{left:329.955036px;}
.x80_c01160{left:336.721710px;}
.xcf_c01160{left:340.719276px;}
.x27_c01160{left:342.975000px;}
.xb1_c01160{left:344.463000px;}
.x94_c01160{left:346.858500px;}
.x47_c01160{left:351.543000px;}
.x6_c01160{left:355.669500px;}
.x87_c01160{left:358.848000px;}
.x50_c01160{left:361.033590px;}
.x28_c01160{left:363.427500px;}
.xae_c01160{left:366.162810px;}
.x9c_c01160{left:368.301450px;}
.x76_c01160{left:370.447500px;}
.x7_c01160{left:376.704000px;}
.xd6_c01160{left:381.210192px;}
.xe2_c01160{left:383.317500px;}
.x1_c01160{left:390.150000px;}
.x88_c01160{left:391.990500px;}
.x63_c01160{left:394.016478px;}
.x51_c01160{left:395.814090px;}
.xbb_c01160{left:398.516880px;}
.xaf_c01160{left:400.797240px;}
.x48_c01160{left:406.417500px;}
.x3c_c01160{left:407.479500px;}
.x34_c01160{left:408.601500px;}
.x1d_c01160{left:409.941870px;}
.x2_c01160{left:412.020000px;}
.x77_c01160{left:414.195000px;}
.xd0_c01160{left:419.313708px;}
.xc2_c01160{left:420.958404px;}
.xa3_c01160{left:422.296260px;}
.x89_c01160{left:425.287500px;}
.xe3_c01160{left:429.784500px;}
.x6b_c01160{left:437.754000px;}
.x3d_c01160{left:439.884000px;}
.x29_c01160{left:441.795000px;}
.x13_c01160{left:443.920571px;}
.x95_c01160{left:446.197500px;}
.x5b_c01160{left:449.806584px;}
.x49_c01160{left:452.007000px;}
.xbc_c01160{left:453.698544px;}
.x8_c01160{left:455.011500px;}
.x3_c01160{left:456.840000px;}
.x6c_c01160{left:459.816000px;}
.x1e_c01160{left:465.327483px;}
.x14_c01160{left:466.908071px;}
.x8a_c01160{left:469.851000px;}
.xc8_c01160{left:473.815176px;}
.x2a_c01160{left:474.936000px;}
.xb2_c01160{left:476.841000px;}
.x5c_c01160{left:483.015084px;}
.x9_c01160{left:487.677000px;}
.x78_c01160{left:491.161500px;}
.x52_c01160{left:494.112090px;}
.xa8_c01160{left:498.430065px;}
.x1f_c01160{left:500.369285px;}
.x81_c01160{left:502.877340px;}
.x64_c01160{left:504.213498px;}
.xd7_c01160{left:507.154812px;}
.x35_c01160{left:508.293000px;}
.xb0_c01160{left:513.080730px;}
.xd1_c01160{left:518.997660px;}
.xa4_c01160{left:522.974850px;}
.x5d_c01160{left:525.682584px;}
.x3e_c01160{left:529.062000px;}
.x2b_c01160{left:530.652000px;}
.x8b_c01160{left:535.120500px;}
.x65_c01160{left:538.554519px;}
.xd8_c01160{left:540.056772px;}
.xc9_c01160{left:541.336296px;}
.x15_c01160{left:543.915071px;}
.x96_c01160{left:545.895000px;}
.x3f_c01160{left:551.473500px;}
.x2c_c01160{left:553.281000px;}
.x6d_c01160{left:559.200000px;}
.xd2_c01160{left:563.575524px;}
.x20_c01160{left:565.456566px;}
.xa_c01160{left:566.812500px;}
.x79_c01160{left:570.078000px;}
.x66_c01160{left:572.256474px;}
.xca_c01160{left:573.477552px;}
.x16_c01160{left:576.538571px;}
.x8c_c01160{left:579.670500px;}
.x36_c01160{left:585.214500px;}
.xbd_c01160{left:586.265916px;}
.xa5_c01160{left:588.680685px;}
.x6e_c01160{left:592.132500px;}
.xe7_c01160{left:594.863175px;}
.xc3_c01160{left:596.717364px;}
.xb3_c01160{left:598.383000px;}
.x97_c01160{left:600.688500px;}
.x5e_c01160{left:604.869084px;}
.xd9_c01160{left:606.523728px;}
.x17_c01160{left:610.027571px;}
.x82_c01160{left:613.545750px;}
.x2d_c01160{left:618.624000px;}
.x21_c01160{left:620.810679px;}
.x7a_c01160{left:624.543000px;}
.x53_c01160{left:627.033090px;}
.xc4_c01160{left:629.405448px;}
.xe4_c01160{left:630.444000px;}
.xa9_c01160{left:632.147595px;}
.x98_c01160{left:633.948000px;}
.xda_c01160{left:640.343796px;}
.x9d_c01160{left:643.858260px;}
.x83_c01160{left:646.809570px;}
.x4a_c01160{left:649.665000px;}
.x22_c01160{left:653.235083px;}
.xb_c01160{left:655.657500px;}
.x54_c01160{left:660.451590px;}
.xde_c01160{left:661.846632px;}
.xb4_c01160{left:665.368500px;}
.x5f_c01160{left:671.238084px;}
.xcb_c01160{left:673.697964px;}
.x6f_c01160{left:681.000000px;}
.xdb_c01160{left:684.656124px;}
.x2e_c01160{left:686.149500px;}
.xc_c01160{left:687.252000px;}
.x9e_c01160{left:689.788425px;}
.x84_c01160{left:691.334340px;}
.xe8_c01160{left:693.535632px;}
.x55_c01160{left:694.780590px;}
.xbe_c01160{left:697.244244px;}
.x8d_c01160{left:700.693500px;}
.x60_c01160{left:703.671084px;}
.x4b_c01160{left:705.049500px;}
.x37_c01160{left:707.280000px;}
.xb5_c01160{left:709.470000px;}
.x18_c01160{left:710.805071px;}
.x23_c01160{left:720.461288px;}
.x70_c01160{left:725.911500px;}
.xdc_c01160{left:729.191952px;}
.x2f_c01160{left:730.476000px;}
.xaa_c01160{left:732.671685px;}
.x8e_c01160{left:734.992500px;}
.x4c_c01160{left:739.348500px;}
.xd3_c01160{left:740.515764px;}
.x99_c01160{left:744.957000px;}
.x71_c01160{left:747.793500px;}
.x40_c01160{left:750.177000px;}
.x19_c01160{left:756.130571px;}
.x56_c01160{left:760.956090px;}
.x24_c01160{left:764.481783px;}
.xab_c01160{left:766.781805px;}
.x85_c01160{left:769.200960px;}
.x67_c01160{left:772.427874px;}
.xd4_c01160{left:774.721368px;}
.xd_c01160{left:776.641500px;}
.x9f_c01160{left:778.437675px;}
.x72_c01160{left:781.761000px;}
.xc5_c01160{left:785.013900px;}
.xbf_c01160{left:786.434028px;}
.x7b_c01160{left:792.336000px;}
.x57_c01160{left:793.636590px;}
.x4d_c01160{left:795.055500px;}
.xdd_c01160{left:796.988088px;}
.x38_c01160{left:806.665500px;}
.xa0_c01160{left:813.565740px;}
.x61_c01160{left:815.226084px;}
.x68_c01160{left:816.463182px;}
.xc0_c01160{left:820.470648px;}
.x41_c01160{left:822.298500px;}
.x7c_c01160{left:826.095000px;}
.x25_c01160{left:831.733488px;}
.xe_c01160{left:833.356500px;}
.x73_c01160{left:840.277500px;}
@media print{
.v0_c01160{vertical-align:0.000000pt;}
.ls0_c01160{letter-spacing:0.000000pt;}
.ws0_c01160{word-spacing:0.000000pt;}
.fs10_c01160{font-size:53.352770pt;}
.fs2_c01160{font-size:58.675143pt;}
.fs4_c01160{font-size:64.007200pt;}
.fs1_c01160{font-size:64.009247pt;}
.fs5_c01160{font-size:64.010367pt;}
.fs9_c01160{font-size:64.012799pt;}
.fs8_c01160{font-size:64.014110pt;}
.fs6_c01160{font-size:64.015486pt;}
.fse_c01160{font-size:64.018429pt;}
.fs11_c01160{font-size:64.023324pt;}
.fsc_c01160{font-size:64.028794pt;}
.fs0_c01160{font-size:69.333333pt;}
.fs3_c01160{font-size:69.348620pt;}
.fs7_c01160{font-size:69.350110pt;}
.fsb_c01160{font-size:69.353298pt;}
.fsa_c01160{font-size:74.688168pt;}
.fsd_c01160{font-size:74.700259pt;}
.fsf_c01160{font-size:96.027644pt;}
.y0_c01160{bottom:0.000000pt;}
.y150_c01160{bottom:70.646639pt;}
.y14f_c01160{bottom:72.542577pt;}
.y14e_c01160{bottom:73.147997pt;}
.y14d_c01160{bottom:74.385000pt;}
.y14c_c01160{bottom:80.187443pt;}
.y14b_c01160{bottom:80.792179pt;}
.y14a_c01160{bottom:82.223311pt;}
.y149_c01160{bottom:83.047259pt;}
.y148_c01160{bottom:86.449408pt;}
.y147_c01160{bottom:87.259804pt;}
.y146_c01160{bottom:87.741412pt;}
.y145_c01160{bottom:89.931544pt;}
.y144_c01160{bottom:91.267504pt;}
.y143_c01160{bottom:92.064256pt;}
.y142_c01160{bottom:92.557240pt;}
.y141_c01160{bottom:93.672448pt;}
.y140_c01160{bottom:94.187176pt;}
.y13f_c01160{bottom:94.683832pt;}
.y13e_c01160{bottom:96.583372pt;}
.y13d_c01160{bottom:98.416024pt;}
.y13c_c01160{bottom:99.124000pt;}
.y13b_c01160{bottom:133.513312pt;}
.y13a_c01160{bottom:135.823669pt;}
.y139_c01160{bottom:137.329301pt;}
.y138_c01160{bottom:137.804469pt;}
.y137_c01160{bottom:140.956064pt;}
.y136_c01160{bottom:143.246848pt;}
.y135_c01160{bottom:146.254155pt;}
.y134_c01160{bottom:148.037536pt;}
.y133_c01160{bottom:164.920395pt;}
.y132_c01160{bottom:166.065205pt;}
.y131_c01160{bottom:166.817856pt;}
.y130_c01160{bottom:167.565739pt;}
.y12f_c01160{bottom:168.136480pt;}
.y12e_c01160{bottom:169.259605pt;}
.y12d_c01160{bottom:169.814763pt;}
.y12c_c01160{bottom:171.941259pt;}
.y12b_c01160{bottom:172.806571pt;}
.y12a_c01160{bottom:174.267371pt;}
.y129_c01160{bottom:174.841888pt;}
.y128_c01160{bottom:176.123339pt;}
.y127_c01160{bottom:197.220405pt;}
.y126_c01160{bottom:197.798037pt;}
.y125_c01160{bottom:198.358485pt;}
.y124_c01160{bottom:199.690731pt;}
.y123_c01160{bottom:200.785643pt;}
.y122_c01160{bottom:201.537856pt;}
.y121_c01160{bottom:203.221525pt;}
.y120_c01160{bottom:204.548672pt;}
.y11f_c01160{bottom:205.096288pt;}
.y11e_c01160{bottom:206.199605pt;}
.y11d_c01160{bottom:206.746357pt;}
.y11c_c01160{bottom:207.311008pt;}
.y11b_c01160{bottom:208.048853pt;}
.y11a_c01160{bottom:228.327285pt;}
.y119_c01160{bottom:228.989504pt;}
.y118_c01160{bottom:229.674347pt;}
.y117_c01160{bottom:231.722997pt;}
.y116_c01160{bottom:232.380661pt;}
.y115_c01160{bottom:233.761077pt;}
.y114_c01160{bottom:234.412981pt;}
.y113_c01160{bottom:237.135499pt;}
.y112_c01160{bottom:239.558389pt;}
.y111_c01160{bottom:240.699200pt;}
.y110_c01160{bottom:259.185963pt;}
.y10f_c01160{bottom:260.718560pt;}
.y10e_c01160{bottom:262.229451pt;}
.y10d_c01160{bottom:262.868096pt;}
.y10c_c01160{bottom:263.701056pt;}
.y10b_c01160{bottom:265.645163pt;}
.y10a_c01160{bottom:266.304107pt;}
.y109_c01160{bottom:268.286379pt;}
.y108_c01160{bottom:268.914581pt;}
.y107_c01160{bottom:270.434763pt;}
.y106_c01160{bottom:271.907701pt;}
.y105_c01160{bottom:292.106272pt;}
.y104_c01160{bottom:292.772352pt;}
.y103_c01160{bottom:294.516309pt;}
.y102_c01160{bottom:296.686400pt;}
.y101_c01160{bottom:297.325525pt;}
.y100_c01160{bottom:298.407371pt;}
.yff_c01160{bottom:299.278368pt;}
.yfe_c01160{bottom:300.356853pt;}
.yfd_c01160{bottom:301.006635pt;}
.yfc_c01160{bottom:302.289227pt;}
.yfb_c01160{bottom:302.945067pt;}
.yfa_c01160{bottom:303.590080pt;}
.yf9_c01160{bottom:304.226891pt;}
.yf8_c01160{bottom:304.648800pt;}
.yf7_c01160{bottom:305.514549pt;}
.yf6_c01160{bottom:323.700235pt;}
.yf5_c01160{bottom:324.669707pt;}
.yf4_c01160{bottom:325.134603pt;}
.yf3_c01160{bottom:326.075435pt;}
.yf2_c01160{bottom:327.504459pt;}
.yf1_c01160{bottom:328.212171pt;}
.yf0_c01160{bottom:330.097355pt;}
.yef_c01160{bottom:332.921419pt;}
.yee_c01160{bottom:335.046667pt;}
.yed_c01160{bottom:360.556893pt;}
.yec_c01160{bottom:361.715240pt;}
.yeb_c01160{bottom:362.454133pt;}
.yea_c01160{bottom:363.038747pt;}
.ye9_c01160{bottom:365.246613pt;}
.ye8_c01160{bottom:365.812667pt;}
.ye7_c01160{bottom:366.906373pt;}
.ye6_c01160{bottom:385.867040pt;}
.ye5_c01160{bottom:386.595147pt;}
.ye4_c01160{bottom:388.739307pt;}
.ye3_c01160{bottom:389.921240pt;}
.ye2_c01160{bottom:391.592467pt;}
.ye1_c01160{bottom:392.272493pt;}
.ye0_c01160{bottom:393.454947pt;}
.ydf_c01160{bottom:394.889760pt;}
.yde_c01160{bottom:395.580507pt;}
.ydd_c01160{bottom:396.489720pt;}
.ydc_c01160{bottom:397.677840pt;}
.ydb_c01160{bottom:398.620720pt;}
.yda_c01160{bottom:399.324400pt;}
.yd9_c01160{bottom:416.335413pt;}
.yd8_c01160{bottom:418.481253pt;}
.yd7_c01160{bottom:419.236173pt;}
.yd6_c01160{bottom:419.928093pt;}
.yd5_c01160{bottom:421.329267pt;}
.yd4_c01160{bottom:422.067107pt;}
.yd3_c01160{bottom:423.477547pt;}
.yd2_c01160{bottom:425.824520pt;}
.yd1_c01160{bottom:427.945027pt;}
.yd0_c01160{bottom:429.580147pt;}
.ycf_c01160{bottom:450.068987pt;}
.yce_c01160{bottom:450.662760pt;}
.ycd_c01160{bottom:452.159293pt;}
.ycc_c01160{bottom:452.934360pt;}
.ycb_c01160{bottom:454.226293pt;}
.yca_c01160{bottom:455.558067pt;}
.yc9_c01160{bottom:456.096920pt;}
.yc8_c01160{bottom:457.589453pt;}
.yc7_c01160{bottom:458.328373pt;}
.yc6_c01160{bottom:459.641893pt;}
.yc5_c01160{bottom:460.380133pt;}
.yc4_c01160{bottom:461.510347pt;}
.yc3_c01160{bottom:480.628387pt;}
.yc2_c01160{bottom:483.588627pt;}
.yc1_c01160{bottom:484.475547pt;}
.yc0_c01160{bottom:485.936707pt;}
.ybf_c01160{bottom:487.137467pt;}
.ybe_c01160{bottom:488.595307pt;}
.ybd_c01160{bottom:489.487267pt;}
.ybc_c01160{bottom:491.244347pt;}
.ybb_c01160{bottom:492.145227pt;}
.yba_c01160{bottom:493.031307pt;}
.yb9_c01160{bottom:493.930667pt;}
.yb8_c01160{bottom:522.375253pt;}
.yb7_c01160{bottom:522.923883pt;}
.yb6_c01160{bottom:523.191819pt;}
.yb5_c01160{bottom:524.304544pt;}
.yb4_c01160{bottom:524.711061pt;}
.yb3_c01160{bottom:525.113749pt;}
.yb2_c01160{bottom:543.334379pt;}
.yb1_c01160{bottom:544.320843pt;}
.yb0_c01160{bottom:545.052555pt;}
.yaf_c01160{bottom:546.930891pt;}
.yae_c01160{bottom:547.634379pt;}
.yad_c01160{bottom:548.584779pt;}
.yac_c01160{bottom:549.977195pt;}
.yab_c01160{bottom:550.927883pt;}
.yaa_c01160{bottom:551.638219pt;}
.ya9_c01160{bottom:552.345259pt;}
.ya8_c01160{bottom:555.641643pt;}
.ya7_c01160{bottom:557.046667pt;}
.ya6_c01160{bottom:577.901867pt;}
.ya5_c01160{bottom:579.147440pt;}
.ya4_c01160{bottom:579.860293pt;}
.ya3_c01160{bottom:580.392960pt;}
.ya2_c01160{bottom:581.269360pt;}
.ya1_c01160{bottom:581.810480pt;}
.ya0_c01160{bottom:582.164320pt;}
.y9f_c01160{bottom:583.587307pt;}
.y9e_c01160{bottom:584.823413pt;}
.y9d_c01160{bottom:585.345707pt;}
.y9c_c01160{bottom:586.399733pt;}
.y9b_c01160{bottom:587.437147pt;}
.y9a_c01160{bottom:587.998027pt;}
.y99_c01160{bottom:607.259893pt;}
.y98_c01160{bottom:607.860053pt;}
.y97_c01160{bottom:609.728613pt;}
.y96_c01160{bottom:610.843040pt;}
.y95_c01160{bottom:611.422480pt;}
.y94_c01160{bottom:611.811307pt;}
.y93_c01160{bottom:613.214267pt;}
.y92_c01160{bottom:614.582560pt;}
.y91_c01160{bottom:615.360293pt;}
.y90_c01160{bottom:617.127120pt;}
.y8f_c01160{bottom:618.076373pt;}
.y8e_c01160{bottom:618.689013pt;}
.y8d_c01160{bottom:619.445333pt;}
.y8c_c01160{bottom:637.835709pt;}
.y8b_c01160{bottom:638.928017pt;}
.y8a_c01160{bottom:639.562077pt;}
.y89_c01160{bottom:639.970541pt;}
.y88_c01160{bottom:640.808889pt;}
.y87_c01160{bottom:641.832429pt;}
.y86_c01160{bottom:642.467749pt;}
.y85_c01160{bottom:643.082489pt;}
.y84_c01160{bottom:644.297297pt;}
.y83_c01160{bottom:644.937657pt;}
.y82_c01160{bottom:645.349481pt;}
.y81_c01160{bottom:645.940729pt;}
.y80_c01160{bottom:649.479397pt;}
.y7f_c01160{bottom:650.295793pt;}
.y7e_c01160{bottom:650.885333pt;}
.y7d_c01160{bottom:673.168051pt;}
.y7c_c01160{bottom:673.794405pt;}
.y7b_c01160{bottom:675.247067pt;}
.y7a_c01160{bottom:676.641685pt;}
.y79_c01160{bottom:677.120659pt;}
.y78_c01160{bottom:677.609461pt;}
.y77_c01160{bottom:678.535245pt;}
.y76_c01160{bottom:679.177475pt;}
.y75_c01160{bottom:680.437579pt;}
.y74_c01160{bottom:681.218035pt;}
.y73_c01160{bottom:681.688792pt;}
.y72_c01160{bottom:682.295003pt;}
.y71_c01160{bottom:682.778773pt;}
.y70_c01160{bottom:700.797597pt;}
.y6f_c01160{bottom:702.979117pt;}
.y6e_c01160{bottom:703.613363pt;}
.y6d_c01160{bottom:704.479429pt;}
.y6c_c01160{bottom:704.911245pt;}
.y6b_c01160{bottom:706.459781pt;}
.y6a_c01160{bottom:707.294168pt;}
.y69_c01160{bottom:707.943579pt;}
.y68_c01160{bottom:709.015741pt;}
.y67_c01160{bottom:710.531307pt;}
.y66_c01160{bottom:712.484907pt;}
.y65_c01160{bottom:713.990381pt;}
.y64_c01160{bottom:734.145053pt;}
.y63_c01160{bottom:734.784139pt;}
.y62_c01160{bottom:736.078237pt;}
.y61_c01160{bottom:736.749560pt;}
.y60_c01160{bottom:737.403077pt;}
.y5f_c01160{bottom:740.002421pt;}
.y5e_c01160{bottom:741.924693pt;}
.y5d_c01160{bottom:742.604845pt;}
.y5c_c01160{bottom:745.157021pt;}
.y5b_c01160{bottom:746.250069pt;}
.y5a_c01160{bottom:746.876365pt;}
.y59_c01160{bottom:766.492968pt;}
.y58_c01160{bottom:767.582349pt;}
.y57_c01160{bottom:768.253085pt;}
.y56_c01160{bottom:769.336160pt;}
.y55_c01160{bottom:769.954243pt;}
.y54_c01160{bottom:771.691069pt;}
.y53_c01160{bottom:773.201472pt;}
.y52_c01160{bottom:774.093000pt;}
.y51_c01160{bottom:775.166101pt;}
.y50_c01160{bottom:776.465949pt;}
.y4f_c01160{bottom:777.125333pt;}
.y4e_c01160{bottom:807.296507pt;}
.y4d_c01160{bottom:807.717607pt;}
.y4c_c01160{bottom:808.884147pt;}
.y4b_c01160{bottom:809.762667pt;}
.y4a_c01160{bottom:829.377112pt;}
.y49_c01160{bottom:830.531056pt;}
.y48_c01160{bottom:831.205264pt;}
.y47_c01160{bottom:832.626712pt;}
.y46_c01160{bottom:833.184136pt;}
.y45_c01160{bottom:833.710312pt;}
.y44_c01160{bottom:834.068896pt;}
.y43_c01160{bottom:835.495744pt;}
.y42_c01160{bottom:836.014216pt;}
.y41_c01160{bottom:837.414136pt;}
.y40_c01160{bottom:838.667056pt;}
.y3f_c01160{bottom:839.379976pt;}
.y3e_c01160{bottom:840.244000pt;}
.y3d_c01160{bottom:862.349367pt;}
.y3c_c01160{bottom:862.918367pt;}
.y3b_c01160{bottom:863.674507pt;}
.y3a_c01160{bottom:864.851727pt;}
.y39_c01160{bottom:865.302047pt;}
.y38_c01160{bottom:865.737067pt;}
.y37_c01160{bottom:866.327667pt;}
.y36_c01160{bottom:867.656887pt;}
.y35_c01160{bottom:868.970907pt;}
.y34_c01160{bottom:869.849587pt;}
.y33_c01160{bottom:870.746107pt;}
.y32_c01160{bottom:871.202667pt;}
.y31_c01160{bottom:892.781893pt;}
.y30_c01160{bottom:893.609321pt;}
.y2f_c01160{bottom:894.869797pt;}
.y2e_c01160{bottom:896.089533pt;}
.y2d_c01160{bottom:896.511941pt;}
.y2c_c01160{bottom:897.551973pt;}
.y2b_c01160{bottom:898.170605pt;}
.y2a_c01160{bottom:899.633465pt;}
.y29_c01160{bottom:900.015245pt;}
.y28_c01160{bottom:901.685333pt;}
.y27_c01160{bottom:933.569869pt;}
.y26_c01160{bottom:954.157308pt;}
.y25_c01160{bottom:955.293591pt;}
.y24_c01160{bottom:956.037479pt;}
.y23_c01160{bottom:957.173376pt;}
.y22_c01160{bottom:957.720695pt;}
.y21_c01160{bottom:958.655852pt;}
.y20_c01160{bottom:959.755427pt;}
.y1f_c01160{bottom:960.347632pt;}
.y1e_c01160{bottom:961.283265pt;}
.y1d_c01160{bottom:962.205439pt;}
.y1c_c01160{bottom:963.519236pt;}
.y1b_c01160{bottom:963.897196pt;}
.y1a_c01160{bottom:965.198349pt;}
.y19_c01160{bottom:965.753597pt;}
.y18_c01160{bottom:986.528775pt;}
.y17_c01160{bottom:987.213693pt;}
.y16_c01160{bottom:988.736553pt;}
.y15_c01160{bottom:989.242609pt;}
.y14_c01160{bottom:989.735587pt;}
.y13_c01160{bottom:990.899248pt;}
.y12_c01160{bottom:991.246615pt;}
.y11_c01160{bottom:992.568421pt;}
.y10_c01160{bottom:993.400197pt;}
.yf_c01160{bottom:994.588475pt;}
.ye_c01160{bottom:995.240980pt;}
.yd_c01160{bottom:995.758165pt;}
.yc_c01160{bottom:1016.582825pt;}
.yb_c01160{bottom:1017.439852pt;}
.ya_c01160{bottom:1018.790627pt;}
.y9_c01160{bottom:1019.268055pt;}
.y8_c01160{bottom:1020.610601pt;}
.y7_c01160{bottom:1021.806427pt;}
.y6_c01160{bottom:1022.300039pt;}
.y5_c01160{bottom:1023.483352pt;}
.y4_c01160{bottom:1023.801207pt;}
.y3_c01160{bottom:1025.450320pt;}
.y2_c01160{bottom:1026.964000pt;}
.y1_c01160{bottom:1088.396000pt;}
.h12_c01160{height:53.352770pt;}
.h4_c01160{height:58.675143pt;}
.h6_c01160{height:64.007200pt;}
.h3_c01160{height:64.009247pt;}
.h7_c01160{height:64.010367pt;}
.hb_c01160{height:64.012799pt;}
.ha_c01160{height:64.014110pt;}
.h8_c01160{height:64.015486pt;}
.h10_c01160{height:64.018429pt;}
.h13_c01160{height:64.023324pt;}
.he_c01160{height:64.028794pt;}
.h2_c01160{height:69.333333pt;}
.h5_c01160{height:69.348620pt;}
.h9_c01160{height:69.350110pt;}
.hd_c01160{height:69.353298pt;}
.hc_c01160{height:74.688168pt;}
.hf_c01160{height:74.700259pt;}
.h11_c01160{height:96.027644pt;}
.h1_c01160{height:1118.666667pt;}
.h0_c01160{height:1118.880000pt;}
.w0_c01160{width:803.733333pt;}
.w1_c01160{width:804.000000pt;}
.x0_c01160{left:0.000000pt;}
.xe5_c01160{left:116.271153pt;}
.xcc_c01160{left:118.554101pt;}
.xb6_c01160{left:119.821995pt;}
.x9a_c01160{left:120.925613pt;}
.xac_c01160{left:121.912267pt;}
.x7d_c01160{left:122.903787pt;}
.x58_c01160{left:124.973408pt;}
.x30_c01160{left:126.816000pt;}
.xf_c01160{left:129.210729pt;}
.x4_c01160{left:130.104000pt;}
.xdf_c01160{left:138.817333pt;}
.xa6_c01160{left:150.232307pt;}
.x8f_c01160{left:151.252608pt;}
.x69_c01160{left:153.576000pt;}
.x4e_c01160{left:155.226747pt;}
.x31_c01160{left:157.253333pt;}
.x1a_c01160{left:158.414467pt;}
.x10_c01160{left:159.633396pt;}
.x74_c01160{left:162.850667pt;}
.xe0_c01160{left:165.038667pt;}
.xc6_c01160{left:169.108331pt;}
.x39_c01160{left:175.217333pt;}
.xb7_c01160{left:178.366144pt;}
.x90_c01160{left:180.308917pt;}
.x86_c01160{left:181.626667pt;}
.x42_c01160{left:185.832000pt;}
.xcd_c01160{left:187.166357pt;}
.xa1_c01160{left:189.224973pt;}
.x6a_c01160{left:192.452000pt;}
.x59_c01160{left:193.404075pt;}
.x11_c01160{left:198.016063pt;}
.x4f_c01160{left:204.910747pt;}
.xb8_c01160{left:207.290187pt;}
.xad_c01160{left:209.266400pt;}
.x7e_c01160{left:211.688667pt;}
.x3a_c01160{left:214.824000pt;}
.xce_c01160{left:215.951147pt;}
.x32_c01160{left:217.021333pt;}
.x5_c01160{left:219.144000pt;}
.x45_c01160{left:223.426667pt;}
.x26_c01160{left:225.338667pt;}
.x1b_c01160{left:226.872132pt;}
.xe1_c01160{left:232.914667pt;}
.xb9_c01160{left:236.611595pt;}
.xa7_c01160{left:239.014933pt;}
.x75_c01160{left:240.945333pt;}
.x1c_c01160{left:246.751452pt;}
.x93_c01160{left:248.753333pt;}
.xe6_c01160{left:252.434519pt;}
.x46_c01160{left:253.398667pt;}
.xc1_c01160{left:255.520885pt;}
.x91_c01160{left:259.802656pt;}
.x43_c01160{left:263.601333pt;}
.xba_c01160{left:266.439701pt;}
.x12_c01160{left:267.914729pt;}
.x7f_c01160{left:270.259013pt;}
.x62_c01160{left:271.494485pt;}
.xc7_c01160{left:274.453525pt;}
.x33_c01160{left:275.600000pt;}
.xa2_c01160{left:277.568853pt;}
.x92_c01160{left:278.971264pt;}
.x5a_c01160{left:282.204075pt;}
.x3b_c01160{left:284.430667pt;}
.x9b_c01160{left:288.468893pt;}
.x44_c01160{left:291.674667pt;}
.xd5_c01160{left:293.293365pt;}
.x80_c01160{left:299.308187pt;}
.xcf_c01160{left:302.861579pt;}
.x27_c01160{left:304.866667pt;}
.xb1_c01160{left:306.189333pt;}
.x94_c01160{left:308.318667pt;}
.x47_c01160{left:312.482667pt;}
.x6_c01160{left:316.150667pt;}
.x87_c01160{left:318.976000pt;}
.x50_c01160{left:320.918747pt;}
.x28_c01160{left:323.046667pt;}
.xae_c01160{left:325.478053pt;}
.x9c_c01160{left:327.379067pt;}
.x76_c01160{left:329.286667pt;}
.x7_c01160{left:334.848000pt;}
.xd6_c01160{left:338.853504pt;}
.xe2_c01160{left:340.726667pt;}
.x1_c01160{left:346.800000pt;}
.x88_c01160{left:348.436000pt;}
.x63_c01160{left:350.236869pt;}
.x51_c01160{left:351.834747pt;}
.xbb_c01160{left:354.237227pt;}
.xaf_c01160{left:356.264213pt;}
.x48_c01160{left:361.260000pt;}
.x3c_c01160{left:362.204000pt;}
.x34_c01160{left:363.201333pt;}
.x1d_c01160{left:364.392773pt;}
.x2_c01160{left:366.240000pt;}
.x77_c01160{left:368.173333pt;}
.xd0_c01160{left:372.723296pt;}
.xc2_c01160{left:374.185248pt;}
.xa3_c01160{left:375.374453pt;}
.x89_c01160{left:378.033333pt;}
.xe3_c01160{left:382.030667pt;}
.x6b_c01160{left:389.114667pt;}
.x3d_c01160{left:391.008000pt;}
.x29_c01160{left:392.706667pt;}
.x13_c01160{left:394.596063pt;}
.x95_c01160{left:396.620000pt;}
.x5b_c01160{left:399.828075pt;}
.x49_c01160{left:401.784000pt;}
.xbc_c01160{left:403.287595pt;}
.x8_c01160{left:404.454667pt;}
.x3_c01160{left:406.080000pt;}
.x6c_c01160{left:408.725333pt;}
.x1e_c01160{left:413.624429pt;}
.x14_c01160{left:415.029396pt;}
.x8a_c01160{left:417.645333pt;}
.xc8_c01160{left:421.169045pt;}
.x2a_c01160{left:422.165333pt;}
.xb2_c01160{left:423.858667pt;}
.x5c_c01160{left:429.346741pt;}
.x9_c01160{left:433.490667pt;}
.x78_c01160{left:436.588000pt;}
.x52_c01160{left:439.210747pt;}
.xa8_c01160{left:443.048947pt;}
.x1f_c01160{left:444.772697pt;}
.x81_c01160{left:447.002080pt;}
.x64_c01160{left:448.189776pt;}
.xd7_c01160{left:450.804277pt;}
.x35_c01160{left:451.816000pt;}
.xb0_c01160{left:456.071760pt;}
.xd1_c01160{left:461.331253pt;}
.xa4_c01160{left:464.866533pt;}
.x5d_c01160{left:467.273408pt;}
.x3e_c01160{left:470.277333pt;}
.x2b_c01160{left:471.690667pt;}
.x8b_c01160{left:475.662667pt;}
.x65_c01160{left:478.715128pt;}
.xd8_c01160{left:480.050464pt;}
.xc9_c01160{left:481.187819pt;}
.x15_c01160{left:483.480063pt;}
.x96_c01160{left:485.240000pt;}
.x3f_c01160{left:490.198667pt;}
.x2c_c01160{left:491.805333pt;}
.x6d_c01160{left:497.066667pt;}
.xd2_c01160{left:500.956021pt;}
.x20_c01160{left:502.628059pt;}
.xa_c01160{left:503.833333pt;}
.x79_c01160{left:506.736000pt;}
.x66_c01160{left:508.672421pt;}
.xca_c01160{left:509.757824pt;}
.x16_c01160{left:512.478729pt;}
.x8c_c01160{left:515.262667pt;}
.x36_c01160{left:520.190667pt;}
.xbd_c01160{left:521.125259pt;}
.xa5_c01160{left:523.271720pt;}
.x6e_c01160{left:526.340000pt;}
.xe7_c01160{left:528.767267pt;}
.xc3_c01160{left:530.415435pt;}
.xb3_c01160{left:531.896000pt;}
.x97_c01160{left:533.945333pt;}
.x5e_c01160{left:537.661408pt;}
.xd9_c01160{left:539.132203pt;}
.x17_c01160{left:542.246729pt;}
.x82_c01160{left:545.374000pt;}
.x2d_c01160{left:549.888000pt;}
.x21_c01160{left:551.831715pt;}
.x7a_c01160{left:555.149333pt;}
.x53_c01160{left:557.362747pt;}
.xc4_c01160{left:559.471509pt;}
.xe4_c01160{left:560.394667pt;}
.xa9_c01160{left:561.908973pt;}
.x98_c01160{left:563.509333pt;}
.xda_c01160{left:569.194485pt;}
.x9d_c01160{left:572.318453pt;}
.x83_c01160{left:574.941840pt;}
.x4a_c01160{left:577.480000pt;}
.x22_c01160{left:580.653407pt;}
.xb_c01160{left:582.806667pt;}
.x54_c01160{left:587.068080pt;}
.xde_c01160{left:588.308117pt;}
.xb4_c01160{left:591.438667pt;}
.x5f_c01160{left:596.656075pt;}
.xcb_c01160{left:598.842635pt;}
.x6f_c01160{left:605.333333pt;}
.xdb_c01160{left:608.583221pt;}
.x2e_c01160{left:609.910667pt;}
.xc_c01160{left:610.890667pt;}
.x9e_c01160{left:613.145267pt;}
.x84_c01160{left:614.519413pt;}
.xe8_c01160{left:616.476117pt;}
.x55_c01160{left:617.582747pt;}
.xbe_c01160{left:619.772661pt;}
.x8d_c01160{left:622.838667pt;}
.x60_c01160{left:625.485408pt;}
.x4b_c01160{left:626.710667pt;}
.x37_c01160{left:628.693333pt;}
.xb5_c01160{left:630.640000pt;}
.x18_c01160{left:631.826729pt;}
.x23_c01160{left:640.410033pt;}
.x70_c01160{left:645.254667pt;}
.xdc_c01160{left:648.170624pt;}
.x2f_c01160{left:649.312000pt;}
.xaa_c01160{left:651.263720pt;}
.x8e_c01160{left:653.326667pt;}
.x4c_c01160{left:657.198667pt;}
.xd3_c01160{left:658.236235pt;}
.x99_c01160{left:662.184000pt;}
.x71_c01160{left:664.705333pt;}
.x40_c01160{left:666.824000pt;}
.x19_c01160{left:672.116063pt;}
.x56_c01160{left:676.405413pt;}
.x24_c01160{left:679.539363pt;}
.xab_c01160{left:681.583827pt;}
.x85_c01160{left:683.734187pt;}
.x67_c01160{left:686.602555pt;}
.xd4_c01160{left:688.641216pt;}
.xd_c01160{left:690.348000pt;}
.x9f_c01160{left:691.944600pt;}
.x72_c01160{left:694.898667pt;}
.xc5_c01160{left:697.790133pt;}
.xbf_c01160{left:699.052469pt;}
.x7b_c01160{left:704.298667pt;}
.x57_c01160{left:705.454747pt;}
.x4d_c01160{left:706.716000pt;}
.xdd_c01160{left:708.433856pt;}
.x38_c01160{left:717.036000pt;}
.xa0_c01160{left:723.169547pt;}
.x61_c01160{left:724.645408pt;}
.x68_c01160{left:725.745051pt;}
.xc0_c01160{left:729.307243pt;}
.x41_c01160{left:730.932000pt;}
.x7c_c01160{left:734.306667pt;}
.x25_c01160{left:739.318656pt;}
.xe_c01160{left:740.761333pt;}
.x73_c01160{left:746.913333pt;}
}





/* 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_c01161 {
    display:none;
  }
  .loading-indicator_c01161.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01161 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_c01161 { 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_c01161" -> "#page-container .classname_c01161")
 */
.pf_c01161 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01161 { /* 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_c01161.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01161 { /* 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_c01161 { /* 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_c01161 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01161 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01161 {overflow:visible;}
  }
}
.c_c01161 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01161 { /* 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_c01161:after { /* webkit #35443 */
  content: '';
}
.t_c01161:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01161 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 */
}
.__c01161 { /* 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_c01161 { /* info for Javascript */
  display:none;
}
.l_c01161 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01161 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01161 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01161: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_c01161 {
    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_c01161.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01161.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_c01161 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01161{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01161;src:url('chunks/assets/font_132af6d682320e9b248f68cf.woff2')format("woff");}.ff1_c01161{font-family:ff1_c01161;line-height:1.000000;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;}
.m7_c01161{transform:matrix(0.129065,-0.001936,0.003750,0.249972,0,0);-ms-transform:matrix(0.129065,-0.001936,0.003750,0.249972,0,0);-webkit-transform:matrix(0.129065,-0.001936,0.003750,0.249972,0,0);}
.m8_c01161{transform:matrix(0.134785,-0.002022,0.003750,0.249972,0,0);-ms-transform:matrix(0.134785,-0.002022,0.003750,0.249972,0,0);-webkit-transform:matrix(0.134785,-0.002022,0.003750,0.249972,0,0);}
.ma_c01161{transform:matrix(0.138849,-0.002083,0.003750,0.249972,0,0);-ms-transform:matrix(0.138849,-0.002083,0.003750,0.249972,0,0);-webkit-transform:matrix(0.138849,-0.002083,0.003750,0.249972,0,0);}
.m9_c01161{transform:matrix(0.140569,-0.002109,0.003750,0.249972,0,0);-ms-transform:matrix(0.140569,-0.002109,0.003750,0.249972,0,0);-webkit-transform:matrix(0.140569,-0.002109,0.003750,0.249972,0,0);}
.m5_c01161{transform:matrix(0.148208,-0.002223,0.003750,0.249972,0,0);-ms-transform:matrix(0.148208,-0.002223,0.003750,0.249972,0,0);-webkit-transform:matrix(0.148208,-0.002223,0.003750,0.249972,0,0);}
.m3_c01161{transform:matrix(0.149793,-0.002247,0.003750,0.249972,0,0);-ms-transform:matrix(0.149793,-0.002247,0.003750,0.249972,0,0);-webkit-transform:matrix(0.149793,-0.002247,0.003750,0.249972,0,0);}
.m2_c01161{transform:matrix(0.149888,-0.002248,0.003750,0.249972,0,0);-ms-transform:matrix(0.149888,-0.002248,0.003750,0.249972,0,0);-webkit-transform:matrix(0.149888,-0.002248,0.003750,0.249972,0,0);}
.m4_c01161{transform:matrix(0.154383,-0.002316,0.003750,0.249972,0,0);-ms-transform:matrix(0.154383,-0.002316,0.003750,0.249972,0,0);-webkit-transform:matrix(0.154383,-0.002316,0.003750,0.249972,0,0);}
.m6_c01161{transform:matrix(0.161977,-0.002430,0.003750,0.249972,0,0);-ms-transform:matrix(0.161977,-0.002430,0.003750,0.249972,0,0);-webkit-transform:matrix(0.161977,-0.002430,0.003750,0.249972,0,0);}
.m19_c01161{transform:matrix(0.165921,-0.002489,0.003750,0.249972,0,0);-ms-transform:matrix(0.165921,-0.002489,0.003750,0.249972,0,0);-webkit-transform:matrix(0.165921,-0.002489,0.003750,0.249972,0,0);}
.m17_c01161{transform:matrix(0.172226,-0.002583,0.003750,0.249972,0,0);-ms-transform:matrix(0.172226,-0.002583,0.003750,0.249972,0,0);-webkit-transform:matrix(0.172226,-0.002583,0.003750,0.249972,0,0);}
.m13_c01161{transform:matrix(0.185709,-0.002786,0.003750,0.249972,0,0);-ms-transform:matrix(0.185709,-0.002786,0.003750,0.249972,0,0);-webkit-transform:matrix(0.185709,-0.002786,0.003750,0.249972,0,0);}
.m1a_c01161{transform:matrix(0.190949,-0.002864,0.003750,0.249972,0,0);-ms-transform:matrix(0.190949,-0.002864,0.003750,0.249972,0,0);-webkit-transform:matrix(0.190949,-0.002864,0.003750,0.249972,0,0);}
.m1_c01161{transform:matrix(0.192153,-0.002882,0.003750,0.249972,0,0);-ms-transform:matrix(0.192153,-0.002882,0.003750,0.249972,0,0);-webkit-transform:matrix(0.192153,-0.002882,0.003750,0.249972,0,0);}
.m1c_c01161{transform:matrix(0.197898,-0.002968,0.003750,0.249972,0,0);-ms-transform:matrix(0.197898,-0.002968,0.003750,0.249972,0,0);-webkit-transform:matrix(0.197898,-0.002968,0.003750,0.249972,0,0);}
.m16_c01161{transform:matrix(0.198208,-0.002973,0.003750,0.249972,0,0);-ms-transform:matrix(0.198208,-0.002973,0.003750,0.249972,0,0);-webkit-transform:matrix(0.198208,-0.002973,0.003750,0.249972,0,0);}
.m11_c01161{transform:matrix(0.202192,-0.003033,0.003750,0.249972,0,0);-ms-transform:matrix(0.202192,-0.003033,0.003750,0.249972,0,0);-webkit-transform:matrix(0.202192,-0.003033,0.003750,0.249972,0,0);}
.m14_c01161{transform:matrix(0.203547,-0.003053,0.003750,0.249972,0,0);-ms-transform:matrix(0.203547,-0.003053,0.003750,0.249972,0,0);-webkit-transform:matrix(0.203547,-0.003053,0.003750,0.249972,0,0);}
.m15_c01161{transform:matrix(0.206177,-0.003093,0.003750,0.249972,0,0);-ms-transform:matrix(0.206177,-0.003093,0.003750,0.249972,0,0);-webkit-transform:matrix(0.206177,-0.003093,0.003750,0.249972,0,0);}
.me_c01161{transform:matrix(0.211296,-0.003169,0.003750,0.249972,0,0);-ms-transform:matrix(0.211296,-0.003169,0.003750,0.249972,0,0);-webkit-transform:matrix(0.211296,-0.003169,0.003750,0.249972,0,0);}
.m18_c01161{transform:matrix(0.211826,-0.003177,0.003750,0.249972,0,0);-ms-transform:matrix(0.211826,-0.003177,0.003750,0.249972,0,0);-webkit-transform:matrix(0.211826,-0.003177,0.003750,0.249972,0,0);}
.m1b_c01161{transform:matrix(0.217840,-0.003268,0.003750,0.249972,0,0);-ms-transform:matrix(0.217840,-0.003268,0.003750,0.249972,0,0);-webkit-transform:matrix(0.217840,-0.003268,0.003750,0.249972,0,0);}
.md_c01161{transform:matrix(0.222430,-0.003336,0.003750,0.249972,0,0);-ms-transform:matrix(0.222430,-0.003336,0.003750,0.249972,0,0);-webkit-transform:matrix(0.222430,-0.003336,0.003750,0.249972,0,0);}
.mc_c01161{transform:matrix(0.222670,-0.003340,0.003750,0.249972,0,0);-ms-transform:matrix(0.222670,-0.003340,0.003750,0.249972,0,0);-webkit-transform:matrix(0.222670,-0.003340,0.003750,0.249972,0,0);}
.mb_c01161{transform:matrix(0.229979,-0.003450,0.003750,0.249972,0,0);-ms-transform:matrix(0.229979,-0.003450,0.003750,0.249972,0,0);-webkit-transform:matrix(0.229979,-0.003450,0.003750,0.249972,0,0);}
.m12_c01161{transform:matrix(0.239463,-0.003592,0.003750,0.249972,0,0);-ms-transform:matrix(0.239463,-0.003592,0.003750,0.249972,0,0);-webkit-transform:matrix(0.239463,-0.003592,0.003750,0.249972,0,0);}
.m10_c01161{transform:matrix(0.239648,-0.003595,0.003750,0.249972,0,0);-ms-transform:matrix(0.239648,-0.003595,0.003750,0.249972,0,0);-webkit-transform:matrix(0.239648,-0.003595,0.003750,0.249972,0,0);}
.mf_c01161{transform:matrix(0.244313,-0.003665,0.003750,0.249972,0,0);-ms-transform:matrix(0.244313,-0.003665,0.003750,0.249972,0,0);-webkit-transform:matrix(0.244313,-0.003665,0.003750,0.249972,0,0);}
.m1d_c01161{transform:matrix(0.327413,-0.004911,0.003750,0.249972,0,0);-ms-transform:matrix(0.327413,-0.004911,0.003750,0.249972,0,0);-webkit-transform:matrix(0.327413,-0.004911,0.003750,0.249972,0,0);}
.m0_c01161{transform:matrix(0.341207,-0.005118,0.003750,0.249972,0,0);-ms-transform:matrix(0.341207,-0.005118,0.003750,0.249972,0,0);-webkit-transform:matrix(0.341207,-0.005118,0.003750,0.249972,0,0);}
.v0_c01161{vertical-align:0.000000px;}
.ls0_c01161{letter-spacing:0.000000px;}
.sc__c01161{text-shadow:none;}
.sc0_c01161{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__c01161{-webkit-text-stroke:0px transparent;}
.sc0_c01161{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01161{word-spacing:0.000000px;}
.fc0_c01161{color:transparent;}
.fs1_c01161{font-size:84.009449px;}
.fs2_c01161{font-size:102.011474px;}
.fs0_c01161{font-size:132.014849px;}
.y0_c01161{bottom:0.000000px;}
.y16_c01161{bottom:780.564465px;}
.y17_c01161{bottom:781.105950px;}
.y18_c01161{bottom:781.388362px;}
.y19_c01161{bottom:782.302327px;}
.y1a_c01161{bottom:782.846070px;}
.y1b_c01161{bottom:783.238732px;}
.y1c_c01161{bottom:783.906510px;}
.y1d_c01161{bottom:784.820565px;}
.y1e_c01161{bottom:786.048330px;}
.yc_c01161{bottom:813.493860px;}
.yd_c01161{bottom:814.020675px;}
.ye_c01161{bottom:815.005252px;}
.yf_c01161{bottom:815.506845px;}
.y10_c01161{bottom:816.014197px;}
.y11_c01161{bottom:818.025135px;}
.y12_c01161{bottom:819.496365px;}
.y13_c01161{bottom:820.003402px;}
.y14_c01161{bottom:821.975775px;}
.y15_c01161{bottom:822.809625px;}
.y1_c01161{bottom:848.347500px;}
.y2_c01161{bottom:849.422257px;}
.y3_c01161{bottom:850.288080px;}
.y4_c01161{bottom:850.831072px;}
.y5_c01161{bottom:851.653852px;}
.y6_c01161{bottom:852.167730px;}
.y7_c01161{bottom:853.502700px;}
.y8_c01161{bottom:854.686425px;}
.y9_c01161{bottom:855.335145px;}
.ya_c01161{bottom:856.177747px;}
.yb_c01161{bottom:857.137125px;}
.h3_c01161{height:84.009449px;}
.h4_c01161{height:102.011474px;}
.h2_c01161{height:132.014849px;}
.h1_c01161{height:1258.500000px;}
.h0_c01161{height:1258.740000px;}
.w0_c01161{width:904.200000px;}
.w1_c01161{width:904.500000px;}
.x0_c01161{left:0.000000px;}
.x1_c01161{left:19.357500px;}
.x2_c01161{left:91.008000px;}
.xc_c01161{left:95.521320px;}
.xd_c01161{left:130.642320px;}
.x3_c01161{left:148.729500px;}
.x4_c01161{left:184.929000px;}
.xe_c01161{left:196.280820px;}
.x16_c01161{left:218.349780px;}
.xf_c01161{left:229.720320px;}
.x5_c01161{left:239.781000px;}
.x10_c01161{left:263.543820px;}
.x6_c01161{left:274.039500px;}
.x17_c01161{left:286.979363px;}
.x7_c01161{left:363.037500px;}
.x11_c01161{left:397.606320px;}
.x18_c01161{left:408.465330px;}
.x8_c01161{left:441.952500px;}
.x9_c01161{left:485.200500px;}
.x12_c01161{left:495.688320px;}
.x19_c01161{left:496.765290px;}
.x13_c01161{left:529.490820px;}
.xa_c01161{left:541.374000px;}
.x1a_c01161{left:572.905710px;}
.xb_c01161{left:605.332500px;}
.x14_c01161{left:660.982320px;}
.x1b_c01161{left:675.261323px;}
.x15_c01161{left:716.572320px;}
@media print{
.v0_c01161{vertical-align:0.000000pt;}
.ls0_c01161{letter-spacing:0.000000pt;}
.ws0_c01161{word-spacing:0.000000pt;}
.fs1_c01161{font-size:74.675066pt;}
.fs2_c01161{font-size:90.676866pt;}
.fs0_c01161{font-size:117.346533pt;}
.y0_c01161{bottom:0.000000pt;}
.y16_c01161{bottom:693.835080pt;}
.y17_c01161{bottom:694.316400pt;}
.y18_c01161{bottom:694.567433pt;}
.y19_c01161{bottom:695.379847pt;}
.y1a_c01161{bottom:695.863173pt;}
.y1b_c01161{bottom:696.212207pt;}
.y1c_c01161{bottom:696.805787pt;}
.y1d_c01161{bottom:697.618280pt;}
.y1e_c01161{bottom:698.709627pt;}
.yc_c01161{bottom:723.105653pt;}
.yd_c01161{bottom:723.573933pt;}
.ye_c01161{bottom:724.449113pt;}
.yf_c01161{bottom:724.894973pt;}
.y10_c01161{bottom:725.345953pt;}
.y11_c01161{bottom:727.133453pt;}
.y12_c01161{bottom:728.441213pt;}
.y13_c01161{bottom:728.891913pt;}
.y14_c01161{bottom:730.645133pt;}
.y15_c01161{bottom:731.386333pt;}
.y1_c01161{bottom:754.086667pt;}
.y2_c01161{bottom:755.042007pt;}
.y3_c01161{bottom:755.811627pt;}
.y4_c01161{bottom:756.294287pt;}
.y5_c01161{bottom:757.025647pt;}
.y6_c01161{bottom:757.482427pt;}
.y7_c01161{bottom:758.669067pt;}
.y8_c01161{bottom:759.721267pt;}
.y9_c01161{bottom:760.297907pt;}
.ya_c01161{bottom:761.046887pt;}
.yb_c01161{bottom:761.899667pt;}
.h3_c01161{height:74.675066pt;}
.h4_c01161{height:90.676866pt;}
.h2_c01161{height:117.346533pt;}
.h1_c01161{height:1118.666667pt;}
.h0_c01161{height:1118.880000pt;}
.w0_c01161{width:803.733333pt;}
.w1_c01161{width:804.000000pt;}
.x0_c01161{left:0.000000pt;}
.x1_c01161{left:17.206667pt;}
.x2_c01161{left:80.896000pt;}
.xc_c01161{left:84.907840pt;}
.xd_c01161{left:116.126507pt;}
.x3_c01161{left:132.204000pt;}
.x4_c01161{left:164.381333pt;}
.xe_c01161{left:174.471840pt;}
.x16_c01161{left:194.088693pt;}
.xf_c01161{left:204.195840pt;}
.x5_c01161{left:213.138667pt;}
.x10_c01161{left:234.261173pt;}
.x6_c01161{left:243.590667pt;}
.x17_c01161{left:255.092767pt;}
.x7_c01161{left:322.700000pt;}
.x11_c01161{left:353.427840pt;}
.x18_c01161{left:363.080293pt;}
.x8_c01161{left:392.846667pt;}
.x9_c01161{left:431.289333pt;}
.x12_c01161{left:440.611840pt;}
.x19_c01161{left:441.569147pt;}
.x13_c01161{left:470.658507pt;}
.xa_c01161{left:481.221333pt;}
.x1a_c01161{left:509.249520pt;}
.xb_c01161{left:538.073333pt;}
.x14_c01161{left:587.539840pt;}
.x1b_c01161{left:600.232287pt;}
.x15_c01161{left:636.953173pt;}
}





/* 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_c01162 {
    display:none;
  }
  .loading-indicator_c01162.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01162 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_c01162 { 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_c01162" -> "#page-container .classname_c01162")
 */
.pf_c01162 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01162 { /* 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_c01162.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01162 { /* 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_c01162 { /* 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_c01162 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01162 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01162 {overflow:visible;}
  }
}
.c_c01162 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01162 { /* 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_c01162:after { /* webkit #35443 */
  content: '';
}
.t_c01162:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01162 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 */
}
.__c01162 { /* 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_c01162 { /* info for Javascript */
  display:none;
}
.l_c01162 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01162 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01162 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01162: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_c01162 {
    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_c01162.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01162.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_c01162 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01162{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01162;src:url('chunks/assets/font_c605e72f209fc835e906f064.woff2')format("woff");}.ff1_c01162{font-family:ff1_c01162;line-height:1.000000;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;}
.mef_c01162{transform:matrix(0.012478,-0.000212,0.004249,0.249964,0,0);-ms-transform:matrix(0.012478,-0.000212,0.004249,0.249964,0,0);-webkit-transform:matrix(0.012478,-0.000212,0.004249,0.249964,0,0);}
.mf0_c01162{transform:matrix(0.014683,-0.000250,0.004249,0.249964,0,0);-ms-transform:matrix(0.014683,-0.000250,0.004249,0.249964,0,0);-webkit-transform:matrix(0.014683,-0.000250,0.004249,0.249964,0,0);}
.m144_c01162{transform:matrix(0.056244,-0.000844,0.003750,0.249972,0,0);-ms-transform:matrix(0.056244,-0.000844,0.003750,0.249972,0,0);-webkit-transform:matrix(0.056244,-0.000844,0.003750,0.249972,0,0);}
.m103_c01162{transform:matrix(0.149295,-0.002090,0.003500,0.249976,0,0);-ms-transform:matrix(0.149295,-0.002090,0.003500,0.249976,0,0);-webkit-transform:matrix(0.149295,-0.002090,0.003500,0.249976,0,0);}
.m83_c01162{transform:matrix(0.152061,-0.003649,0.005998,0.249928,0,0);-ms-transform:matrix(0.152061,-0.003649,0.005998,0.249928,0,0);-webkit-transform:matrix(0.152061,-0.003649,0.005998,0.249928,0,0);}
.mf6_c01162{transform:matrix(0.152955,-0.002141,0.003500,0.249976,0,0);-ms-transform:matrix(0.152955,-0.002141,0.003500,0.249976,0,0);-webkit-transform:matrix(0.152955,-0.002141,0.003500,0.249976,0,0);}
.mce_c01162{transform:matrix(0.162572,-0.002764,0.004249,0.249964,0,0);-ms-transform:matrix(0.162572,-0.002764,0.004249,0.249964,0,0);-webkit-transform:matrix(0.162572,-0.002764,0.004249,0.249964,0,0);}
.mf2_c01162{transform:matrix(0.165449,-0.002316,0.003500,0.249976,0,0);-ms-transform:matrix(0.165449,-0.002316,0.003500,0.249976,0,0);-webkit-transform:matrix(0.165449,-0.002316,0.003500,0.249976,0,0);}
.mcc_c01162{transform:matrix(0.165816,-0.002819,0.004249,0.249964,0,0);-ms-transform:matrix(0.165816,-0.002819,0.004249,0.249964,0,0);-webkit-transform:matrix(0.165816,-0.002819,0.004249,0.249964,0,0);}
.md4_c01162{transform:matrix(0.169835,-0.002887,0.004249,0.249964,0,0);-ms-transform:matrix(0.169835,-0.002887,0.004249,0.249964,0,0);-webkit-transform:matrix(0.169835,-0.002887,0.004249,0.249964,0,0);}
.md2_c01162{transform:matrix(0.169845,-0.002887,0.004249,0.249964,0,0);-ms-transform:matrix(0.169845,-0.002887,0.004249,0.249964,0,0);-webkit-transform:matrix(0.169845,-0.002887,0.004249,0.249964,0,0);}
.mcf_c01162{transform:matrix(0.171325,-0.002913,0.004249,0.249964,0,0);-ms-transform:matrix(0.171325,-0.002913,0.004249,0.249964,0,0);-webkit-transform:matrix(0.171325,-0.002913,0.004249,0.249964,0,0);}
.mca_c01162{transform:matrix(0.172035,-0.002925,0.004249,0.249964,0,0);-ms-transform:matrix(0.172035,-0.002925,0.004249,0.249964,0,0);-webkit-transform:matrix(0.172035,-0.002925,0.004249,0.249964,0,0);}
.md1_c01162{transform:matrix(0.181359,-0.003083,0.004249,0.249964,0,0);-ms-transform:matrix(0.181359,-0.003083,0.004249,0.249964,0,0);-webkit-transform:matrix(0.181359,-0.003083,0.004249,0.249964,0,0);}
.m148_c01162{transform:matrix(0.183016,-0.004026,0.005499,0.249940,0,0);-ms-transform:matrix(0.183016,-0.004026,0.005499,0.249940,0,0);-webkit-transform:matrix(0.183016,-0.004026,0.005499,0.249940,0,0);}
.mf4_c01162{transform:matrix(0.184252,-0.002580,0.003500,0.249976,0,0);-ms-transform:matrix(0.184252,-0.002580,0.003500,0.249976,0,0);-webkit-transform:matrix(0.184252,-0.002580,0.003500,0.249976,0,0);}
.mcd_c01162{transform:matrix(0.185513,-0.003154,0.004249,0.249964,0,0);-ms-transform:matrix(0.185513,-0.003154,0.004249,0.249964,0,0);-webkit-transform:matrix(0.185513,-0.003154,0.004249,0.249964,0,0);}
.m76_c01162{transform:matrix(0.186036,-0.004465,0.005998,0.249928,0,0);-ms-transform:matrix(0.186036,-0.004465,0.005998,0.249928,0,0);-webkit-transform:matrix(0.186036,-0.004465,0.005998,0.249928,0,0);}
.m0_c01162{transform:matrix(0.186305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186305,0.000000,0.000000,0.250000,0,0);}
.m53_c01162{transform:matrix(0.188561,-0.004525,0.005998,0.249928,0,0);-ms-transform:matrix(0.188561,-0.004525,0.005998,0.249928,0,0);-webkit-transform:matrix(0.188561,-0.004525,0.005998,0.249928,0,0);}
.mb2_c01162{transform:matrix(0.188938,-0.003212,0.004249,0.249964,0,0);-ms-transform:matrix(0.188938,-0.003212,0.004249,0.249964,0,0);-webkit-transform:matrix(0.188938,-0.003212,0.004249,0.249964,0,0);}
.md0_c01162{transform:matrix(0.190697,-0.003242,0.004249,0.249964,0,0);-ms-transform:matrix(0.190697,-0.003242,0.004249,0.249964,0,0);-webkit-transform:matrix(0.190697,-0.003242,0.004249,0.249964,0,0);}
.m149_c01162{transform:matrix(0.195518,-0.004301,0.005499,0.249940,0,0);-ms-transform:matrix(0.195518,-0.004301,0.005499,0.249940,0,0);-webkit-transform:matrix(0.195518,-0.004301,0.005499,0.249940,0,0);}
.m146_c01162{transform:matrix(0.195828,-0.004308,0.005499,0.249940,0,0);-ms-transform:matrix(0.195828,-0.004308,0.005499,0.249940,0,0);-webkit-transform:matrix(0.195828,-0.004308,0.005499,0.249940,0,0);}
.mcb_c01162{transform:matrix(0.196382,-0.003338,0.004249,0.249964,0,0);-ms-transform:matrix(0.196382,-0.003338,0.004249,0.249964,0,0);-webkit-transform:matrix(0.196382,-0.003338,0.004249,0.249964,0,0);}
.md3_c01162{transform:matrix(0.196767,-0.003345,0.004249,0.249964,0,0);-ms-transform:matrix(0.196767,-0.003345,0.004249,0.249964,0,0);-webkit-transform:matrix(0.196767,-0.003345,0.004249,0.249964,0,0);}
.m17_c01162{transform:matrix(0.197888,-0.004749,0.005998,0.249928,0,0);-ms-transform:matrix(0.197888,-0.004749,0.005998,0.249928,0,0);-webkit-transform:matrix(0.197888,-0.004749,0.005998,0.249928,0,0);}
.m13f_c01162{transform:matrix(0.200857,-0.003013,0.003750,0.249972,0,0);-ms-transform:matrix(0.200857,-0.003013,0.003750,0.249972,0,0);-webkit-transform:matrix(0.200857,-0.003013,0.003750,0.249972,0,0);}
.m8c_c01162{transform:matrix(0.202092,-0.004850,0.005998,0.249928,0,0);-ms-transform:matrix(0.202092,-0.004850,0.005998,0.249928,0,0);-webkit-transform:matrix(0.202092,-0.004850,0.005998,0.249928,0,0);}
.mb5_c01162{transform:matrix(0.204315,-0.003473,0.004249,0.249964,0,0);-ms-transform:matrix(0.204315,-0.003473,0.004249,0.249964,0,0);-webkit-transform:matrix(0.204315,-0.003473,0.004249,0.249964,0,0);}
.m14b_c01162{transform:matrix(0.204411,-0.004497,0.005499,0.249940,0,0);-ms-transform:matrix(0.204411,-0.004497,0.005499,0.249940,0,0);-webkit-transform:matrix(0.204411,-0.004497,0.005499,0.249940,0,0);}
.mf5_c01162{transform:matrix(0.205460,-0.002876,0.003500,0.249976,0,0);-ms-transform:matrix(0.205460,-0.002876,0.003500,0.249976,0,0);-webkit-transform:matrix(0.205460,-0.002876,0.003500,0.249976,0,0);}
.m14e_c01162{transform:matrix(0.205995,-0.004532,0.005499,0.249940,0,0);-ms-transform:matrix(0.205995,-0.004532,0.005499,0.249940,0,0);-webkit-transform:matrix(0.205995,-0.004532,0.005499,0.249940,0,0);}
.m13b_c01162{transform:matrix(0.206822,-0.003102,0.003750,0.249972,0,0);-ms-transform:matrix(0.206822,-0.003102,0.003750,0.249972,0,0);-webkit-transform:matrix(0.206822,-0.003102,0.003750,0.249972,0,0);}
.m13_c01162{transform:matrix(0.207040,-0.004969,0.005998,0.249928,0,0);-ms-transform:matrix(0.207040,-0.004969,0.005998,0.249928,0,0);-webkit-transform:matrix(0.207040,-0.004969,0.005998,0.249928,0,0);}
.m1f_c01162{transform:matrix(0.209330,-0.005024,0.005998,0.249928,0,0);-ms-transform:matrix(0.209330,-0.005024,0.005998,0.249928,0,0);-webkit-transform:matrix(0.209330,-0.005024,0.005998,0.249928,0,0);}
.mfa_c01162{transform:matrix(0.209389,-0.002931,0.003500,0.249976,0,0);-ms-transform:matrix(0.209389,-0.002931,0.003500,0.249976,0,0);-webkit-transform:matrix(0.209389,-0.002931,0.003500,0.249976,0,0);}
.m90_c01162{transform:matrix(0.209875,-0.005037,0.005998,0.249928,0,0);-ms-transform:matrix(0.209875,-0.005037,0.005998,0.249928,0,0);-webkit-transform:matrix(0.209875,-0.005037,0.005998,0.249928,0,0);}
.mee_c01162{transform:matrix(0.209885,-0.003568,0.004249,0.249964,0,0);-ms-transform:matrix(0.209885,-0.003568,0.004249,0.249964,0,0);-webkit-transform:matrix(0.209885,-0.003568,0.004249,0.249964,0,0);}
.m14d_c01162{transform:matrix(0.210199,-0.004624,0.005499,0.249940,0,0);-ms-transform:matrix(0.210199,-0.004624,0.005499,0.249940,0,0);-webkit-transform:matrix(0.210199,-0.004624,0.005499,0.249940,0,0);}
.m102_c01162{transform:matrix(0.210599,-0.002948,0.003500,0.249976,0,0);-ms-transform:matrix(0.210599,-0.002948,0.003500,0.249976,0,0);-webkit-transform:matrix(0.210599,-0.002948,0.003500,0.249976,0,0);}
.m140_c01162{transform:matrix(0.211556,-0.003173,0.003750,0.249972,0,0);-ms-transform:matrix(0.211556,-0.003173,0.003750,0.249972,0,0);-webkit-transform:matrix(0.211556,-0.003173,0.003750,0.249972,0,0);}
.mab_c01162{transform:matrix(0.211599,-0.003597,0.004249,0.249964,0,0);-ms-transform:matrix(0.211599,-0.003597,0.004249,0.249964,0,0);-webkit-transform:matrix(0.211599,-0.003597,0.004249,0.249964,0,0);}
.mfd_c01162{transform:matrix(0.211849,-0.002966,0.003500,0.249976,0,0);-ms-transform:matrix(0.211849,-0.002966,0.003500,0.249976,0,0);-webkit-transform:matrix(0.211849,-0.002966,0.003500,0.249976,0,0);}
.m13c_c01162{transform:matrix(0.212161,-0.003182,0.003750,0.249972,0,0);-ms-transform:matrix(0.212161,-0.003182,0.003750,0.249972,0,0);-webkit-transform:matrix(0.212161,-0.003182,0.003750,0.249972,0,0);}
.med_c01162{transform:matrix(0.212539,-0.003613,0.004249,0.249964,0,0);-ms-transform:matrix(0.212539,-0.003613,0.004249,0.249964,0,0);-webkit-transform:matrix(0.212539,-0.003613,0.004249,0.249964,0,0);}
.m51_c01162{transform:matrix(0.212559,-0.005101,0.005998,0.249928,0,0);-ms-transform:matrix(0.212559,-0.005101,0.005998,0.249928,0,0);-webkit-transform:matrix(0.212559,-0.005101,0.005998,0.249928,0,0);}
.m120_c01162{transform:matrix(0.212589,-0.002976,0.003500,0.249976,0,0);-ms-transform:matrix(0.212589,-0.002976,0.003500,0.249976,0,0);-webkit-transform:matrix(0.212589,-0.002976,0.003500,0.249976,0,0);}
.mac_c01162{transform:matrix(0.212964,-0.003620,0.004249,0.249964,0,0);-ms-transform:matrix(0.212964,-0.003620,0.004249,0.249964,0,0);-webkit-transform:matrix(0.212964,-0.003620,0.004249,0.249964,0,0);}
.mad_c01162{transform:matrix(0.213104,-0.003623,0.004249,0.249964,0,0);-ms-transform:matrix(0.213104,-0.003623,0.004249,0.249964,0,0);-webkit-transform:matrix(0.213104,-0.003623,0.004249,0.249964,0,0);}
.m11c_c01162{transform:matrix(0.213114,-0.002984,0.003500,0.249976,0,0);-ms-transform:matrix(0.213114,-0.002984,0.003500,0.249976,0,0);-webkit-transform:matrix(0.213114,-0.002984,0.003500,0.249976,0,0);}
.m122_c01162{transform:matrix(0.213614,-0.002991,0.003500,0.249976,0,0);-ms-transform:matrix(0.213614,-0.002991,0.003500,0.249976,0,0);-webkit-transform:matrix(0.213614,-0.002991,0.003500,0.249976,0,0);}
.maf_c01162{transform:matrix(0.213689,-0.003633,0.004249,0.249964,0,0);-ms-transform:matrix(0.213689,-0.003633,0.004249,0.249964,0,0);-webkit-transform:matrix(0.213689,-0.003633,0.004249,0.249964,0,0);}
.m11a_c01162{transform:matrix(0.213784,-0.002993,0.003500,0.249976,0,0);-ms-transform:matrix(0.213784,-0.002993,0.003500,0.249976,0,0);-webkit-transform:matrix(0.213784,-0.002993,0.003500,0.249976,0,0);}
.mc9_c01162{transform:matrix(0.215409,-0.003662,0.004249,0.249964,0,0);-ms-transform:matrix(0.215409,-0.003662,0.004249,0.249964,0,0);-webkit-transform:matrix(0.215409,-0.003662,0.004249,0.249964,0,0);}
.m7a_c01162{transform:matrix(0.215583,-0.005174,0.005998,0.249928,0,0);-ms-transform:matrix(0.215583,-0.005174,0.005998,0.249928,0,0);-webkit-transform:matrix(0.215583,-0.005174,0.005998,0.249928,0,0);}
.m105_c01162{transform:matrix(0.215734,-0.003020,0.003500,0.249976,0,0);-ms-transform:matrix(0.215734,-0.003020,0.003500,0.249976,0,0);-webkit-transform:matrix(0.215734,-0.003020,0.003500,0.249976,0,0);}
.m118_c01162{transform:matrix(0.215794,-0.003021,0.003500,0.249976,0,0);-ms-transform:matrix(0.215794,-0.003021,0.003500,0.249976,0,0);-webkit-transform:matrix(0.215794,-0.003021,0.003500,0.249976,0,0);}
.m107_c01162{transform:matrix(0.216474,-0.003031,0.003500,0.249976,0,0);-ms-transform:matrix(0.216474,-0.003031,0.003500,0.249976,0,0);-webkit-transform:matrix(0.216474,-0.003031,0.003500,0.249976,0,0);}
.m96_c01162{transform:matrix(0.216688,-0.005201,0.005998,0.249928,0,0);-ms-transform:matrix(0.216688,-0.005201,0.005998,0.249928,0,0);-webkit-transform:matrix(0.216688,-0.005201,0.005998,0.249928,0,0);}
.m4d_c01162{transform:matrix(0.216718,-0.005201,0.005998,0.249928,0,0);-ms-transform:matrix(0.216718,-0.005201,0.005998,0.249928,0,0);-webkit-transform:matrix(0.216718,-0.005201,0.005998,0.249928,0,0);}
.mf3_c01162{transform:matrix(0.216794,-0.003035,0.003500,0.249976,0,0);-ms-transform:matrix(0.216794,-0.003035,0.003500,0.249976,0,0);-webkit-transform:matrix(0.216794,-0.003035,0.003500,0.249976,0,0);}
.m1c_c01162{transform:matrix(0.217217,-0.005213,0.005998,0.249928,0,0);-ms-transform:matrix(0.217217,-0.005213,0.005998,0.249928,0,0);-webkit-transform:matrix(0.217217,-0.005213,0.005998,0.249928,0,0);}
.m14a_c01162{transform:matrix(0.217877,-0.004793,0.005499,0.249940,0,0);-ms-transform:matrix(0.217877,-0.004793,0.005499,0.249940,0,0);-webkit-transform:matrix(0.217877,-0.004793,0.005499,0.249940,0,0);}
.mf8_c01162{transform:matrix(0.218159,-0.003054,0.003500,0.249976,0,0);-ms-transform:matrix(0.218159,-0.003054,0.003500,0.249976,0,0);-webkit-transform:matrix(0.218159,-0.003054,0.003500,0.249976,0,0);}
.mf7_c01162{transform:matrix(0.218729,-0.003062,0.003500,0.249976,0,0);-ms-transform:matrix(0.218729,-0.003062,0.003500,0.249976,0,0);-webkit-transform:matrix(0.218729,-0.003062,0.003500,0.249976,0,0);}
.m9f_c01162{transform:matrix(0.218798,-0.003720,0.004249,0.249964,0,0);-ms-transform:matrix(0.218798,-0.003720,0.004249,0.249964,0,0);-webkit-transform:matrix(0.218798,-0.003720,0.004249,0.249964,0,0);}
.m12f_c01162{transform:matrix(0.218809,-0.003063,0.003500,0.249976,0,0);-ms-transform:matrix(0.218809,-0.003063,0.003500,0.249976,0,0);-webkit-transform:matrix(0.218809,-0.003063,0.003500,0.249976,0,0);}
.m58_c01162{transform:matrix(0.219097,-0.005258,0.005998,0.249928,0,0);-ms-transform:matrix(0.219097,-0.005258,0.005998,0.249928,0,0);-webkit-transform:matrix(0.219097,-0.005258,0.005998,0.249928,0,0);}
.mf9_c01162{transform:matrix(0.219683,-0.003076,0.003500,0.249976,0,0);-ms-transform:matrix(0.219683,-0.003076,0.003500,0.249976,0,0);-webkit-transform:matrix(0.219683,-0.003076,0.003500,0.249976,0,0);}
.m12e_c01162{transform:matrix(0.219998,-0.003080,0.003500,0.249976,0,0);-ms-transform:matrix(0.219998,-0.003080,0.003500,0.249976,0,0);-webkit-transform:matrix(0.219998,-0.003080,0.003500,0.249976,0,0);}
.mb8_c01162{transform:matrix(0.220158,-0.003743,0.004249,0.249964,0,0);-ms-transform:matrix(0.220158,-0.003743,0.004249,0.249964,0,0);-webkit-transform:matrix(0.220158,-0.003743,0.004249,0.249964,0,0);}
.mfe_c01162{transform:matrix(0.220168,-0.003082,0.003500,0.249976,0,0);-ms-transform:matrix(0.220168,-0.003082,0.003500,0.249976,0,0);-webkit-transform:matrix(0.220168,-0.003082,0.003500,0.249976,0,0);}
.m14c_c01162{transform:matrix(0.220177,-0.004844,0.005499,0.249940,0,0);-ms-transform:matrix(0.220177,-0.004844,0.005499,0.249940,0,0);-webkit-transform:matrix(0.220177,-0.004844,0.005499,0.249940,0,0);}
.m11e_c01162{transform:matrix(0.220193,-0.003083,0.003500,0.249976,0,0);-ms-transform:matrix(0.220193,-0.003083,0.003500,0.249976,0,0);-webkit-transform:matrix(0.220193,-0.003083,0.003500,0.249976,0,0);}
.m98_c01162{transform:matrix(0.220273,-0.003745,0.004249,0.249964,0,0);-ms-transform:matrix(0.220273,-0.003745,0.004249,0.249964,0,0);-webkit-transform:matrix(0.220273,-0.003745,0.004249,0.249964,0,0);}
.m26_c01162{transform:matrix(0.220826,-0.005300,0.005998,0.249928,0,0);-ms-transform:matrix(0.220826,-0.005300,0.005998,0.249928,0,0);-webkit-transform:matrix(0.220826,-0.005300,0.005998,0.249928,0,0);}
.m8f_c01162{transform:matrix(0.221076,-0.005306,0.005998,0.249928,0,0);-ms-transform:matrix(0.221076,-0.005306,0.005998,0.249928,0,0);-webkit-transform:matrix(0.221076,-0.005306,0.005998,0.249928,0,0);}
.m100_c01162{transform:matrix(0.221433,-0.003100,0.003500,0.249976,0,0);-ms-transform:matrix(0.221433,-0.003100,0.003500,0.249976,0,0);-webkit-transform:matrix(0.221433,-0.003100,0.003500,0.249976,0,0);}
.m130_c01162{transform:matrix(0.221658,-0.003103,0.003500,0.249976,0,0);-ms-transform:matrix(0.221658,-0.003103,0.003500,0.249976,0,0);-webkit-transform:matrix(0.221658,-0.003103,0.003500,0.249976,0,0);}
.mf1_c01162{transform:matrix(0.221898,-0.003107,0.003500,0.249976,0,0);-ms-transform:matrix(0.221898,-0.003107,0.003500,0.249976,0,0);-webkit-transform:matrix(0.221898,-0.003107,0.003500,0.249976,0,0);}
.m4a_c01162{transform:matrix(0.222381,-0.005337,0.005998,0.249928,0,0);-ms-transform:matrix(0.222381,-0.005337,0.005998,0.249928,0,0);-webkit-transform:matrix(0.222381,-0.005337,0.005998,0.249928,0,0);}
.m43_c01162{transform:matrix(0.223611,-0.005367,0.005998,0.249928,0,0);-ms-transform:matrix(0.223611,-0.005367,0.005998,0.249928,0,0);-webkit-transform:matrix(0.223611,-0.005367,0.005998,0.249928,0,0);}
.m72_c01162{transform:matrix(0.224005,-0.005376,0.005998,0.249928,0,0);-ms-transform:matrix(0.224005,-0.005376,0.005998,0.249928,0,0);-webkit-transform:matrix(0.224005,-0.005376,0.005998,0.249928,0,0);}
.m21_c01162{transform:matrix(0.224295,-0.005383,0.005998,0.249928,0,0);-ms-transform:matrix(0.224295,-0.005383,0.005998,0.249928,0,0);-webkit-transform:matrix(0.224295,-0.005383,0.005998,0.249928,0,0);}
.mbe_c01162{transform:matrix(0.224328,-0.003814,0.004249,0.249964,0,0);-ms-transform:matrix(0.224328,-0.003814,0.004249,0.249964,0,0);-webkit-transform:matrix(0.224328,-0.003814,0.004249,0.249964,0,0);}
.m45_c01162{transform:matrix(0.224655,-0.005392,0.005998,0.249928,0,0);-ms-transform:matrix(0.224655,-0.005392,0.005998,0.249928,0,0);-webkit-transform:matrix(0.224655,-0.005392,0.005998,0.249928,0,0);}
.me2_c01162{transform:matrix(0.224718,-0.003820,0.004249,0.249964,0,0);-ms-transform:matrix(0.224718,-0.003820,0.004249,0.249964,0,0);-webkit-transform:matrix(0.224718,-0.003820,0.004249,0.249964,0,0);}
.m4b_c01162{transform:matrix(0.225020,-0.005400,0.005998,0.249928,0,0);-ms-transform:matrix(0.225020,-0.005400,0.005998,0.249928,0,0);-webkit-transform:matrix(0.225020,-0.005400,0.005998,0.249928,0,0);}
.me_c01162{transform:matrix(0.225325,-0.005408,0.005998,0.249928,0,0);-ms-transform:matrix(0.225325,-0.005408,0.005998,0.249928,0,0);-webkit-transform:matrix(0.225325,-0.005408,0.005998,0.249928,0,0);}
.m8_c01162{transform:matrix(0.225460,-0.005411,0.005998,0.249928,0,0);-ms-transform:matrix(0.225460,-0.005411,0.005998,0.249928,0,0);-webkit-transform:matrix(0.225460,-0.005411,0.005998,0.249928,0,0);}
.m141_c01162{transform:matrix(0.225885,-0.003388,0.003750,0.249972,0,0);-ms-transform:matrix(0.225885,-0.003388,0.003750,0.249972,0,0);-webkit-transform:matrix(0.225885,-0.003388,0.003750,0.249972,0,0);}
.mf_c01162{transform:matrix(0.226000,-0.005424,0.005998,0.249928,0,0);-ms-transform:matrix(0.226000,-0.005424,0.005998,0.249928,0,0);-webkit-transform:matrix(0.226000,-0.005424,0.005998,0.249928,0,0);}
.m132_c01162{transform:matrix(0.226493,-0.003171,0.003500,0.249976,0,0);-ms-transform:matrix(0.226493,-0.003171,0.003500,0.249976,0,0);-webkit-transform:matrix(0.226493,-0.003171,0.003500,0.249976,0,0);}
.m42_c01162{transform:matrix(0.226940,-0.005447,0.005998,0.249928,0,0);-ms-transform:matrix(0.226940,-0.005447,0.005998,0.249928,0,0);-webkit-transform:matrix(0.226940,-0.005447,0.005998,0.249928,0,0);}
.m1d_c01162{transform:matrix(0.227030,-0.005449,0.005998,0.249928,0,0);-ms-transform:matrix(0.227030,-0.005449,0.005998,0.249928,0,0);-webkit-transform:matrix(0.227030,-0.005449,0.005998,0.249928,0,0);}
.m4e_c01162{transform:matrix(0.227185,-0.005452,0.005998,0.249928,0,0);-ms-transform:matrix(0.227185,-0.005452,0.005998,0.249928,0,0);-webkit-transform:matrix(0.227185,-0.005452,0.005998,0.249928,0,0);}
.m35_c01162{transform:matrix(0.227365,-0.005457,0.005998,0.249928,0,0);-ms-transform:matrix(0.227365,-0.005457,0.005998,0.249928,0,0);-webkit-transform:matrix(0.227365,-0.005457,0.005998,0.249928,0,0);}
.md9_c01162{transform:matrix(0.227397,-0.003866,0.004249,0.249964,0,0);-ms-transform:matrix(0.227397,-0.003866,0.004249,0.249964,0,0);-webkit-transform:matrix(0.227397,-0.003866,0.004249,0.249964,0,0);}
.m2f_c01162{transform:matrix(0.228474,-0.005483,0.005998,0.249928,0,0);-ms-transform:matrix(0.228474,-0.005483,0.005998,0.249928,0,0);-webkit-transform:matrix(0.228474,-0.005483,0.005998,0.249928,0,0);}
.m22_c01162{transform:matrix(0.228794,-0.005491,0.005998,0.249928,0,0);-ms-transform:matrix(0.228794,-0.005491,0.005998,0.249928,0,0);-webkit-transform:matrix(0.228794,-0.005491,0.005998,0.249928,0,0);}
.m11d_c01162{transform:matrix(0.229028,-0.003206,0.003500,0.249976,0,0);-ms-transform:matrix(0.229028,-0.003206,0.003500,0.249976,0,0);-webkit-transform:matrix(0.229028,-0.003206,0.003500,0.249976,0,0);}
.m9b_c01162{transform:matrix(0.229427,-0.003900,0.004249,0.249964,0,0);-ms-transform:matrix(0.229427,-0.003900,0.004249,0.249964,0,0);-webkit-transform:matrix(0.229427,-0.003900,0.004249,0.249964,0,0);}
.md_c01162{transform:matrix(0.229459,-0.005507,0.005998,0.249928,0,0);-ms-transform:matrix(0.229459,-0.005507,0.005998,0.249928,0,0);-webkit-transform:matrix(0.229459,-0.005507,0.005998,0.249928,0,0);}
.m139_c01162{transform:matrix(0.229859,-0.003448,0.003750,0.249972,0,0);-ms-transform:matrix(0.229859,-0.003448,0.003750,0.249972,0,0);-webkit-transform:matrix(0.229859,-0.003448,0.003750,0.249972,0,0);}
.m133_c01162{transform:matrix(0.229862,-0.003218,0.003500,0.249976,0,0);-ms-transform:matrix(0.229862,-0.003218,0.003500,0.249976,0,0);-webkit-transform:matrix(0.229862,-0.003218,0.003500,0.249976,0,0);}
.m134_c01162{transform:matrix(0.230422,-0.003226,0.003500,0.249976,0,0);-ms-transform:matrix(0.230422,-0.003226,0.003500,0.249976,0,0);-webkit-transform:matrix(0.230422,-0.003226,0.003500,0.249976,0,0);}
.m14_c01162{transform:matrix(0.230424,-0.005530,0.005998,0.249928,0,0);-ms-transform:matrix(0.230424,-0.005530,0.005998,0.249928,0,0);-webkit-transform:matrix(0.230424,-0.005530,0.005998,0.249928,0,0);}
.m119_c01162{transform:matrix(0.230552,-0.003228,0.003500,0.249976,0,0);-ms-transform:matrix(0.230552,-0.003228,0.003500,0.249976,0,0);-webkit-transform:matrix(0.230552,-0.003228,0.003500,0.249976,0,0);}
.m27_c01162{transform:matrix(0.230579,-0.005534,0.005998,0.249928,0,0);-ms-transform:matrix(0.230579,-0.005534,0.005998,0.249928,0,0);-webkit-transform:matrix(0.230579,-0.005534,0.005998,0.249928,0,0);}
.m16_c01162{transform:matrix(0.230679,-0.005536,0.005998,0.249928,0,0);-ms-transform:matrix(0.230679,-0.005536,0.005998,0.249928,0,0);-webkit-transform:matrix(0.230679,-0.005536,0.005998,0.249928,0,0);}
.mb9_c01162{transform:matrix(0.230752,-0.003923,0.004249,0.249964,0,0);-ms-transform:matrix(0.230752,-0.003923,0.004249,0.249964,0,0);-webkit-transform:matrix(0.230752,-0.003923,0.004249,0.249964,0,0);}
.m117_c01162{transform:matrix(0.230777,-0.003231,0.003500,0.249976,0,0);-ms-transform:matrix(0.230777,-0.003231,0.003500,0.249976,0,0);-webkit-transform:matrix(0.230777,-0.003231,0.003500,0.249976,0,0);}
.m147_c01162{transform:matrix(0.230954,-0.005081,0.005499,0.249940,0,0);-ms-transform:matrix(0.230954,-0.005081,0.005499,0.249940,0,0);-webkit-transform:matrix(0.230954,-0.005081,0.005499,0.249940,0,0);}
.ma9_c01162{transform:matrix(0.231092,-0.003929,0.004249,0.249964,0,0);-ms-transform:matrix(0.231092,-0.003929,0.004249,0.249964,0,0);-webkit-transform:matrix(0.231092,-0.003929,0.004249,0.249964,0,0);}
.m13e_c01162{transform:matrix(0.231334,-0.003470,0.003750,0.249972,0,0);-ms-transform:matrix(0.231334,-0.003470,0.003750,0.249972,0,0);-webkit-transform:matrix(0.231334,-0.003470,0.003750,0.249972,0,0);}
.m2_c01162{transform:matrix(0.231480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231480,0.000000,0.000000,0.250000,0,0);}
.m111_c01162{transform:matrix(0.231602,-0.003242,0.003500,0.249976,0,0);-ms-transform:matrix(0.231602,-0.003242,0.003500,0.249976,0,0);-webkit-transform:matrix(0.231602,-0.003242,0.003500,0.249976,0,0);}
.m10b_c01162{transform:matrix(0.232262,-0.003252,0.003500,0.249976,0,0);-ms-transform:matrix(0.232262,-0.003252,0.003500,0.249976,0,0);-webkit-transform:matrix(0.232262,-0.003252,0.003500,0.249976,0,0);}
.m145_c01162{transform:matrix(0.232264,-0.005110,0.005499,0.249940,0,0);-ms-transform:matrix(0.232264,-0.005110,0.005499,0.249940,0,0);-webkit-transform:matrix(0.232264,-0.005110,0.005499,0.249940,0,0);}
.m7b_c01162{transform:matrix(0.232338,-0.005576,0.005998,0.249928,0,0);-ms-transform:matrix(0.232338,-0.005576,0.005998,0.249928,0,0);-webkit-transform:matrix(0.232338,-0.005576,0.005998,0.249928,0,0);}
.m5e_c01162{transform:matrix(0.232388,-0.005577,0.005998,0.249928,0,0);-ms-transform:matrix(0.232388,-0.005577,0.005998,0.249928,0,0);-webkit-transform:matrix(0.232388,-0.005577,0.005998,0.249928,0,0);}
.mde_c01162{transform:matrix(0.232951,-0.003960,0.004249,0.249964,0,0);-ms-transform:matrix(0.232951,-0.003960,0.004249,0.249964,0,0);-webkit-transform:matrix(0.232951,-0.003960,0.004249,0.249964,0,0);}
.ma6_c01162{transform:matrix(0.233371,-0.003967,0.004249,0.249964,0,0);-ms-transform:matrix(0.233371,-0.003967,0.004249,0.249964,0,0);-webkit-transform:matrix(0.233371,-0.003967,0.004249,0.249964,0,0);}
.m3c_c01162{transform:matrix(0.233548,-0.005605,0.005998,0.249928,0,0);-ms-transform:matrix(0.233548,-0.005605,0.005998,0.249928,0,0);-webkit-transform:matrix(0.233548,-0.005605,0.005998,0.249928,0,0);}
.m1e_c01162{transform:matrix(0.233913,-0.005614,0.005998,0.249928,0,0);-ms-transform:matrix(0.233913,-0.005614,0.005998,0.249928,0,0);-webkit-transform:matrix(0.233913,-0.005614,0.005998,0.249928,0,0);}
.m125_c01162{transform:matrix(0.234337,-0.003281,0.003500,0.249976,0,0);-ms-transform:matrix(0.234337,-0.003281,0.003500,0.249976,0,0);-webkit-transform:matrix(0.234337,-0.003281,0.003500,0.249976,0,0);}
.m13d_c01162{transform:matrix(0.234534,-0.003518,0.003750,0.249972,0,0);-ms-transform:matrix(0.234534,-0.003518,0.003750,0.249972,0,0);-webkit-transform:matrix(0.234534,-0.003518,0.003750,0.249972,0,0);}
.mb7_c01162{transform:matrix(0.234656,-0.003989,0.004249,0.249964,0,0);-ms-transform:matrix(0.234656,-0.003989,0.004249,0.249964,0,0);-webkit-transform:matrix(0.234656,-0.003989,0.004249,0.249964,0,0);}
.m37_c01162{transform:matrix(0.234777,-0.005635,0.005998,0.249928,0,0);-ms-transform:matrix(0.234777,-0.005635,0.005998,0.249928,0,0);-webkit-transform:matrix(0.234777,-0.005635,0.005998,0.249928,0,0);}
.m12a_c01162{transform:matrix(0.234832,-0.003288,0.003500,0.249976,0,0);-ms-transform:matrix(0.234832,-0.003288,0.003500,0.249976,0,0);-webkit-transform:matrix(0.234832,-0.003288,0.003500,0.249976,0,0);}
.m138_c01162{transform:matrix(0.235114,-0.003527,0.003750,0.249972,0,0);-ms-transform:matrix(0.235114,-0.003527,0.003750,0.249972,0,0);-webkit-transform:matrix(0.235114,-0.003527,0.003750,0.249972,0,0);}
.m19_c01162{transform:matrix(0.235327,-0.005648,0.005998,0.249928,0,0);-ms-transform:matrix(0.235327,-0.005648,0.005998,0.249928,0,0);-webkit-transform:matrix(0.235327,-0.005648,0.005998,0.249928,0,0);}
.m78_c01162{transform:matrix(0.235512,-0.005652,0.005998,0.249928,0,0);-ms-transform:matrix(0.235512,-0.005652,0.005998,0.249928,0,0);-webkit-transform:matrix(0.235512,-0.005652,0.005998,0.249928,0,0);}
.m13a_c01162{transform:matrix(0.236133,-0.003542,0.003750,0.249972,0,0);-ms-transform:matrix(0.236133,-0.003542,0.003750,0.249972,0,0);-webkit-transform:matrix(0.236133,-0.003542,0.003750,0.249972,0,0);}
.mae_c01162{transform:matrix(0.236166,-0.004015,0.004249,0.249964,0,0);-ms-transform:matrix(0.236166,-0.004015,0.004249,0.249964,0,0);-webkit-transform:matrix(0.236166,-0.004015,0.004249,0.249964,0,0);}
.mba_c01162{transform:matrix(0.236551,-0.004021,0.004249,0.249964,0,0);-ms-transform:matrix(0.236551,-0.004021,0.004249,0.249964,0,0);-webkit-transform:matrix(0.236551,-0.004021,0.004249,0.249964,0,0);}
.m7e_c01162{transform:matrix(0.237527,-0.005701,0.005998,0.249928,0,0);-ms-transform:matrix(0.237527,-0.005701,0.005998,0.249928,0,0);-webkit-transform:matrix(0.237527,-0.005701,0.005998,0.249928,0,0);}
.m61_c01162{transform:matrix(0.237762,-0.005706,0.005998,0.249928,0,0);-ms-transform:matrix(0.237762,-0.005706,0.005998,0.249928,0,0);-webkit-transform:matrix(0.237762,-0.005706,0.005998,0.249928,0,0);}
.mc6_c01162{transform:matrix(0.238501,-0.004055,0.004249,0.249964,0,0);-ms-transform:matrix(0.238501,-0.004055,0.004249,0.249964,0,0);-webkit-transform:matrix(0.238501,-0.004055,0.004249,0.249964,0,0);}
.m10f_c01162{transform:matrix(0.238642,-0.003341,0.003500,0.249976,0,0);-ms-transform:matrix(0.238642,-0.003341,0.003500,0.249976,0,0);-webkit-transform:matrix(0.238642,-0.003341,0.003500,0.249976,0,0);}
.m10a_c01162{transform:matrix(0.238857,-0.003344,0.003500,0.249976,0,0);-ms-transform:matrix(0.238857,-0.003344,0.003500,0.249976,0,0);-webkit-transform:matrix(0.238857,-0.003344,0.003500,0.249976,0,0);}
.m128_c01162{transform:matrix(0.239102,-0.003347,0.003500,0.249976,0,0);-ms-transform:matrix(0.239102,-0.003347,0.003500,0.249976,0,0);-webkit-transform:matrix(0.239102,-0.003347,0.003500,0.249976,0,0);}
.m6_c01162{transform:matrix(0.239226,-0.005741,0.005998,0.249928,0,0);-ms-transform:matrix(0.239226,-0.005741,0.005998,0.249928,0,0);-webkit-transform:matrix(0.239226,-0.005741,0.005998,0.249928,0,0);}
.m9a_c01162{transform:matrix(0.239235,-0.004067,0.004249,0.249964,0,0);-ms-transform:matrix(0.239235,-0.004067,0.004249,0.249964,0,0);-webkit-transform:matrix(0.239235,-0.004067,0.004249,0.249964,0,0);}
.m109_c01162{transform:matrix(0.239272,-0.003350,0.003500,0.249976,0,0);-ms-transform:matrix(0.239272,-0.003350,0.003500,0.249976,0,0);-webkit-transform:matrix(0.239272,-0.003350,0.003500,0.249976,0,0);}
.mec_c01162{transform:matrix(0.239505,-0.004072,0.004249,0.249964,0,0);-ms-transform:matrix(0.239505,-0.004072,0.004249,0.249964,0,0);-webkit-transform:matrix(0.239505,-0.004072,0.004249,0.249964,0,0);}
.m9c_c01162{transform:matrix(0.239610,-0.004073,0.004249,0.249964,0,0);-ms-transform:matrix(0.239610,-0.004073,0.004249,0.249964,0,0);-webkit-transform:matrix(0.239610,-0.004073,0.004249,0.249964,0,0);}
.mdb_c01162{transform:matrix(0.239875,-0.004078,0.004249,0.249964,0,0);-ms-transform:matrix(0.239875,-0.004078,0.004249,0.249964,0,0);-webkit-transform:matrix(0.239875,-0.004078,0.004249,0.249964,0,0);}
.m8a_c01162{transform:matrix(0.240036,-0.005761,0.005998,0.249928,0,0);-ms-transform:matrix(0.240036,-0.005761,0.005998,0.249928,0,0);-webkit-transform:matrix(0.240036,-0.005761,0.005998,0.249928,0,0);}
.md7_c01162{transform:matrix(0.240260,-0.004084,0.004249,0.249964,0,0);-ms-transform:matrix(0.240260,-0.004084,0.004249,0.249964,0,0);-webkit-transform:matrix(0.240260,-0.004084,0.004249,0.249964,0,0);}
.mbf_c01162{transform:matrix(0.240415,-0.004087,0.004249,0.249964,0,0);-ms-transform:matrix(0.240415,-0.004087,0.004249,0.249964,0,0);-webkit-transform:matrix(0.240415,-0.004087,0.004249,0.249964,0,0);}
.m40_c01162{transform:matrix(0.240581,-0.005774,0.005998,0.249928,0,0);-ms-transform:matrix(0.240581,-0.005774,0.005998,0.249928,0,0);-webkit-transform:matrix(0.240581,-0.005774,0.005998,0.249928,0,0);}
.me7_c01162{transform:matrix(0.240600,-0.004090,0.004249,0.249964,0,0);-ms-transform:matrix(0.240600,-0.004090,0.004249,0.249964,0,0);-webkit-transform:matrix(0.240600,-0.004090,0.004249,0.249964,0,0);}
.me4_c01162{transform:matrix(0.240995,-0.004097,0.004249,0.249964,0,0);-ms-transform:matrix(0.240995,-0.004097,0.004249,0.249964,0,0);-webkit-transform:matrix(0.240995,-0.004097,0.004249,0.249964,0,0);}
.m99_c01162{transform:matrix(0.241230,-0.004101,0.004249,0.249964,0,0);-ms-transform:matrix(0.241230,-0.004101,0.004249,0.249964,0,0);-webkit-transform:matrix(0.241230,-0.004101,0.004249,0.249964,0,0);}
.m10c_c01162{transform:matrix(0.241391,-0.003379,0.003500,0.249976,0,0);-ms-transform:matrix(0.241391,-0.003379,0.003500,0.249976,0,0);-webkit-transform:matrix(0.241391,-0.003379,0.003500,0.249976,0,0);}
.ma1_c01162{transform:matrix(0.241745,-0.004110,0.004249,0.249964,0,0);-ms-transform:matrix(0.241745,-0.004110,0.004249,0.249964,0,0);-webkit-transform:matrix(0.241745,-0.004110,0.004249,0.249964,0,0);}
.m104_c01162{transform:matrix(0.242141,-0.003390,0.003500,0.249976,0,0);-ms-transform:matrix(0.242141,-0.003390,0.003500,0.249976,0,0);-webkit-transform:matrix(0.242141,-0.003390,0.003500,0.249976,0,0);}
.m11f_c01162{transform:matrix(0.242156,-0.003390,0.003500,0.249976,0,0);-ms-transform:matrix(0.242156,-0.003390,0.003500,0.249976,0,0);-webkit-transform:matrix(0.242156,-0.003390,0.003500,0.249976,0,0);}
.me3_c01162{transform:matrix(0.242710,-0.004126,0.004249,0.249964,0,0);-ms-transform:matrix(0.242710,-0.004126,0.004249,0.249964,0,0);-webkit-transform:matrix(0.242710,-0.004126,0.004249,0.249964,0,0);}
.m131_c01162{transform:matrix(0.242886,-0.003400,0.003500,0.249976,0,0);-ms-transform:matrix(0.242886,-0.003400,0.003500,0.249976,0,0);-webkit-transform:matrix(0.242886,-0.003400,0.003500,0.249976,0,0);}
.m92_c01162{transform:matrix(0.242925,-0.005830,0.005998,0.249928,0,0);-ms-transform:matrix(0.242925,-0.005830,0.005998,0.249928,0,0);-webkit-transform:matrix(0.242925,-0.005830,0.005998,0.249928,0,0);}
.m94_c01162{transform:matrix(0.242950,-0.005831,0.005998,0.249928,0,0);-ms-transform:matrix(0.242950,-0.005831,0.005998,0.249928,0,0);-webkit-transform:matrix(0.242950,-0.005831,0.005998,0.249928,0,0);}
.mb1_c01162{transform:matrix(0.242970,-0.004130,0.004249,0.249964,0,0);-ms-transform:matrix(0.242970,-0.004130,0.004249,0.249964,0,0);-webkit-transform:matrix(0.242970,-0.004130,0.004249,0.249964,0,0);}
.m66_c01162{transform:matrix(0.243270,-0.005838,0.005998,0.249928,0,0);-ms-transform:matrix(0.243270,-0.005838,0.005998,0.249928,0,0);-webkit-transform:matrix(0.243270,-0.005838,0.005998,0.249928,0,0);}
.m123_c01162{transform:matrix(0.243351,-0.003407,0.003500,0.249976,0,0);-ms-transform:matrix(0.243351,-0.003407,0.003500,0.249976,0,0);-webkit-transform:matrix(0.243351,-0.003407,0.003500,0.249976,0,0);}
.m55_c01162{transform:matrix(0.243425,-0.005842,0.005998,0.249928,0,0);-ms-transform:matrix(0.243425,-0.005842,0.005998,0.249928,0,0);-webkit-transform:matrix(0.243425,-0.005842,0.005998,0.249928,0,0);}
.ma_c01162{transform:matrix(0.243470,-0.005843,0.005998,0.249928,0,0);-ms-transform:matrix(0.243470,-0.005843,0.005998,0.249928,0,0);-webkit-transform:matrix(0.243470,-0.005843,0.005998,0.249928,0,0);}
.mb0_c01162{transform:matrix(0.243715,-0.004143,0.004249,0.249964,0,0);-ms-transform:matrix(0.243715,-0.004143,0.004249,0.249964,0,0);-webkit-transform:matrix(0.243715,-0.004143,0.004249,0.249964,0,0);}
.m108_c01162{transform:matrix(0.243921,-0.003415,0.003500,0.249976,0,0);-ms-transform:matrix(0.243921,-0.003415,0.003500,0.249976,0,0);-webkit-transform:matrix(0.243921,-0.003415,0.003500,0.249976,0,0);}
.m97_c01162{transform:matrix(0.244010,-0.004148,0.004249,0.249964,0,0);-ms-transform:matrix(0.244010,-0.004148,0.004249,0.249964,0,0);-webkit-transform:matrix(0.244010,-0.004148,0.004249,0.249964,0,0);}
.m116_c01162{transform:matrix(0.244706,-0.003426,0.003500,0.249976,0,0);-ms-transform:matrix(0.244706,-0.003426,0.003500,0.249976,0,0);-webkit-transform:matrix(0.244706,-0.003426,0.003500,0.249976,0,0);}
.m57_c01162{transform:matrix(0.244780,-0.005875,0.005998,0.249928,0,0);-ms-transform:matrix(0.244780,-0.005875,0.005998,0.249928,0,0);-webkit-transform:matrix(0.244780,-0.005875,0.005998,0.249928,0,0);}
.mc0_c01162{transform:matrix(0.244990,-0.004165,0.004249,0.249964,0,0);-ms-transform:matrix(0.244990,-0.004165,0.004249,0.249964,0,0);-webkit-transform:matrix(0.244990,-0.004165,0.004249,0.249964,0,0);}
.m2c_c01162{transform:matrix(0.245079,-0.005882,0.005998,0.249928,0,0);-ms-transform:matrix(0.245079,-0.005882,0.005998,0.249928,0,0);-webkit-transform:matrix(0.245079,-0.005882,0.005998,0.249928,0,0);}
.m75_c01162{transform:matrix(0.245154,-0.005884,0.005998,0.249928,0,0);-ms-transform:matrix(0.245154,-0.005884,0.005998,0.249928,0,0);-webkit-transform:matrix(0.245154,-0.005884,0.005998,0.249928,0,0);}
.m71_c01162{transform:matrix(0.245289,-0.005887,0.005998,0.249928,0,0);-ms-transform:matrix(0.245289,-0.005887,0.005998,0.249928,0,0);-webkit-transform:matrix(0.245289,-0.005887,0.005998,0.249928,0,0);}
.ma3_c01162{transform:matrix(0.245445,-0.004173,0.004249,0.249964,0,0);-ms-transform:matrix(0.245445,-0.004173,0.004249,0.249964,0,0);-webkit-transform:matrix(0.245445,-0.004173,0.004249,0.249964,0,0);}
.mb4_c01162{transform:matrix(0.245734,-0.004177,0.004249,0.249964,0,0);-ms-transform:matrix(0.245734,-0.004177,0.004249,0.249964,0,0);-webkit-transform:matrix(0.245734,-0.004177,0.004249,0.249964,0,0);}
.m1a_c01162{transform:matrix(0.245899,-0.005902,0.005998,0.249928,0,0);-ms-transform:matrix(0.245899,-0.005902,0.005998,0.249928,0,0);-webkit-transform:matrix(0.245899,-0.005902,0.005998,0.249928,0,0);}
.m1b_c01162{transform:matrix(0.246014,-0.005904,0.005998,0.249928,0,0);-ms-transform:matrix(0.246014,-0.005904,0.005998,0.249928,0,0);-webkit-transform:matrix(0.246014,-0.005904,0.005998,0.249928,0,0);}
.m38_c01162{transform:matrix(0.246114,-0.005907,0.005998,0.249928,0,0);-ms-transform:matrix(0.246114,-0.005907,0.005998,0.249928,0,0);-webkit-transform:matrix(0.246114,-0.005907,0.005998,0.249928,0,0);}
.m6f_c01162{transform:matrix(0.246124,-0.005907,0.005998,0.249928,0,0);-ms-transform:matrix(0.246124,-0.005907,0.005998,0.249928,0,0);-webkit-transform:matrix(0.246124,-0.005907,0.005998,0.249928,0,0);}
.m20_c01162{transform:matrix(0.246189,-0.005909,0.005998,0.249928,0,0);-ms-transform:matrix(0.246189,-0.005909,0.005998,0.249928,0,0);-webkit-transform:matrix(0.246189,-0.005909,0.005998,0.249928,0,0);}
.m9d_c01162{transform:matrix(0.246229,-0.004186,0.004249,0.249964,0,0);-ms-transform:matrix(0.246229,-0.004186,0.004249,0.249964,0,0);-webkit-transform:matrix(0.246229,-0.004186,0.004249,0.249964,0,0);}
.m112_c01162{transform:matrix(0.246636,-0.003453,0.003500,0.249976,0,0);-ms-transform:matrix(0.246636,-0.003453,0.003500,0.249976,0,0);-webkit-transform:matrix(0.246636,-0.003453,0.003500,0.249976,0,0);}
.m4c_c01162{transform:matrix(0.246794,-0.005923,0.005998,0.249928,0,0);-ms-transform:matrix(0.246794,-0.005923,0.005998,0.249928,0,0);-webkit-transform:matrix(0.246794,-0.005923,0.005998,0.249928,0,0);}
.m85_c01162{transform:matrix(0.246869,-0.005925,0.005998,0.249928,0,0);-ms-transform:matrix(0.246869,-0.005925,0.005998,0.249928,0,0);-webkit-transform:matrix(0.246869,-0.005925,0.005998,0.249928,0,0);}
.mff_c01162{transform:matrix(0.247001,-0.003458,0.003500,0.249976,0,0);-ms-transform:matrix(0.247001,-0.003458,0.003500,0.249976,0,0);-webkit-transform:matrix(0.247001,-0.003458,0.003500,0.249976,0,0);}
.m12d_c01162{transform:matrix(0.247081,-0.003459,0.003500,0.249976,0,0);-ms-transform:matrix(0.247081,-0.003459,0.003500,0.249976,0,0);-webkit-transform:matrix(0.247081,-0.003459,0.003500,0.249976,0,0);}
.m93_c01162{transform:matrix(0.247314,-0.005936,0.005998,0.249928,0,0);-ms-transform:matrix(0.247314,-0.005936,0.005998,0.249928,0,0);-webkit-transform:matrix(0.247314,-0.005936,0.005998,0.249928,0,0);}
.m79_c01162{transform:matrix(0.247429,-0.005938,0.005998,0.249928,0,0);-ms-transform:matrix(0.247429,-0.005938,0.005998,0.249928,0,0);-webkit-transform:matrix(0.247429,-0.005938,0.005998,0.249928,0,0);}
.me9_c01162{transform:matrix(0.247579,-0.004209,0.004249,0.249964,0,0);-ms-transform:matrix(0.247579,-0.004209,0.004249,0.249964,0,0);-webkit-transform:matrix(0.247579,-0.004209,0.004249,0.249964,0,0);}
.m12c_c01162{transform:matrix(0.247831,-0.003470,0.003500,0.249976,0,0);-ms-transform:matrix(0.247831,-0.003470,0.003500,0.249976,0,0);-webkit-transform:matrix(0.247831,-0.003470,0.003500,0.249976,0,0);}
.m24_c01162{transform:matrix(0.247919,-0.005950,0.005998,0.249928,0,0);-ms-transform:matrix(0.247919,-0.005950,0.005998,0.249928,0,0);-webkit-transform:matrix(0.247919,-0.005950,0.005998,0.249928,0,0);}
.m4f_c01162{transform:matrix(0.248004,-0.005952,0.005998,0.249928,0,0);-ms-transform:matrix(0.248004,-0.005952,0.005998,0.249928,0,0);-webkit-transform:matrix(0.248004,-0.005952,0.005998,0.249928,0,0);}
.m6a_c01162{transform:matrix(0.248174,-0.005956,0.005998,0.249928,0,0);-ms-transform:matrix(0.248174,-0.005956,0.005998,0.249928,0,0);-webkit-transform:matrix(0.248174,-0.005956,0.005998,0.249928,0,0);}
.m8d_c01162{transform:matrix(0.248234,-0.005958,0.005998,0.249928,0,0);-ms-transform:matrix(0.248234,-0.005958,0.005998,0.249928,0,0);-webkit-transform:matrix(0.248234,-0.005958,0.005998,0.249928,0,0);}
.ma4_c01162{transform:matrix(0.248549,-0.004225,0.004249,0.249964,0,0);-ms-transform:matrix(0.248549,-0.004225,0.004249,0.249964,0,0);-webkit-transform:matrix(0.248549,-0.004225,0.004249,0.249964,0,0);}
.mfb_c01162{transform:matrix(0.248781,-0.003483,0.003500,0.249976,0,0);-ms-transform:matrix(0.248781,-0.003483,0.003500,0.249976,0,0);-webkit-transform:matrix(0.248781,-0.003483,0.003500,0.249976,0,0);}
.m2b_c01162{transform:matrix(0.248978,-0.005975,0.005998,0.249928,0,0);-ms-transform:matrix(0.248978,-0.005975,0.005998,0.249928,0,0);-webkit-transform:matrix(0.248978,-0.005975,0.005998,0.249928,0,0);}
.m59_c01162{transform:matrix(0.249083,-0.005978,0.005998,0.249928,0,0);-ms-transform:matrix(0.249083,-0.005978,0.005998,0.249928,0,0);-webkit-transform:matrix(0.249083,-0.005978,0.005998,0.249928,0,0);}
.meb_c01162{transform:matrix(0.249224,-0.004237,0.004249,0.249964,0,0);-ms-transform:matrix(0.249224,-0.004237,0.004249,0.249964,0,0);-webkit-transform:matrix(0.249224,-0.004237,0.004249,0.249964,0,0);}
.m136_c01162{transform:matrix(0.249281,-0.003490,0.003500,0.249976,0,0);-ms-transform:matrix(0.249281,-0.003490,0.003500,0.249976,0,0);-webkit-transform:matrix(0.249281,-0.003490,0.003500,0.249976,0,0);}
.m12b_c01162{transform:matrix(0.249606,-0.003494,0.003500,0.249976,0,0);-ms-transform:matrix(0.249606,-0.003494,0.003500,0.249976,0,0);-webkit-transform:matrix(0.249606,-0.003494,0.003500,0.249976,0,0);}
.m88_c01162{transform:matrix(0.249943,-0.005999,0.005998,0.249928,0,0);-ms-transform:matrix(0.249943,-0.005999,0.005998,0.249928,0,0);-webkit-transform:matrix(0.249943,-0.005999,0.005998,0.249928,0,0);}
.m52_c01162{transform:matrix(0.250533,-0.006013,0.005998,0.249928,0,0);-ms-transform:matrix(0.250533,-0.006013,0.005998,0.249928,0,0);-webkit-transform:matrix(0.250533,-0.006013,0.005998,0.249928,0,0);}
.mbb_c01162{transform:matrix(0.250574,-0.004260,0.004249,0.249964,0,0);-ms-transform:matrix(0.250574,-0.004260,0.004249,0.249964,0,0);-webkit-transform:matrix(0.250574,-0.004260,0.004249,0.249964,0,0);}
.m114_c01162{transform:matrix(0.250785,-0.003511,0.003500,0.249976,0,0);-ms-transform:matrix(0.250785,-0.003511,0.003500,0.249976,0,0);-webkit-transform:matrix(0.250785,-0.003511,0.003500,0.249976,0,0);}
.m50_c01162{transform:matrix(0.250788,-0.006019,0.005998,0.249928,0,0);-ms-transform:matrix(0.250788,-0.006019,0.005998,0.249928,0,0);-webkit-transform:matrix(0.250788,-0.006019,0.005998,0.249928,0,0);}
.m5_c01162{transform:matrix(0.250988,-0.006024,0.005998,0.249928,0,0);-ms-transform:matrix(0.250988,-0.006024,0.005998,0.249928,0,0);-webkit-transform:matrix(0.250988,-0.006024,0.005998,0.249928,0,0);}
.m101_c01162{transform:matrix(0.251125,-0.003516,0.003500,0.249976,0,0);-ms-transform:matrix(0.251125,-0.003516,0.003500,0.249976,0,0);-webkit-transform:matrix(0.251125,-0.003516,0.003500,0.249976,0,0);}
.m33_c01162{transform:matrix(0.251148,-0.006028,0.005998,0.249928,0,0);-ms-transform:matrix(0.251148,-0.006028,0.005998,0.249928,0,0);-webkit-transform:matrix(0.251148,-0.006028,0.005998,0.249928,0,0);}
.mfc_c01162{transform:matrix(0.251645,-0.003523,0.003500,0.249976,0,0);-ms-transform:matrix(0.251645,-0.003523,0.003500,0.249976,0,0);-webkit-transform:matrix(0.251645,-0.003523,0.003500,0.249976,0,0);}
.m5b_c01162{transform:matrix(0.251822,-0.006044,0.005998,0.249928,0,0);-ms-transform:matrix(0.251822,-0.006044,0.005998,0.249928,0,0);-webkit-transform:matrix(0.251822,-0.006044,0.005998,0.249928,0,0);}
.mb3_c01162{transform:matrix(0.251874,-0.004282,0.004249,0.249964,0,0);-ms-transform:matrix(0.251874,-0.004282,0.004249,0.249964,0,0);-webkit-transform:matrix(0.251874,-0.004282,0.004249,0.249964,0,0);}
.m3a_c01162{transform:matrix(0.252042,-0.006049,0.005998,0.249928,0,0);-ms-transform:matrix(0.252042,-0.006049,0.005998,0.249928,0,0);-webkit-transform:matrix(0.252042,-0.006049,0.005998,0.249928,0,0);}
.m68_c01162{transform:matrix(0.252477,-0.006059,0.005998,0.249928,0,0);-ms-transform:matrix(0.252477,-0.006059,0.005998,0.249928,0,0);-webkit-transform:matrix(0.252477,-0.006059,0.005998,0.249928,0,0);}
.m91_c01162{transform:matrix(0.252652,-0.006064,0.005998,0.249928,0,0);-ms-transform:matrix(0.252652,-0.006064,0.005998,0.249928,0,0);-webkit-transform:matrix(0.252652,-0.006064,0.005998,0.249928,0,0);}
.mbc_c01162{transform:matrix(0.252673,-0.004295,0.004249,0.249964,0,0);-ms-transform:matrix(0.252673,-0.004295,0.004249,0.249964,0,0);-webkit-transform:matrix(0.252673,-0.004295,0.004249,0.249964,0,0);}
.m23_c01162{transform:matrix(0.252787,-0.006067,0.005998,0.249928,0,0);-ms-transform:matrix(0.252787,-0.006067,0.005998,0.249928,0,0);-webkit-transform:matrix(0.252787,-0.006067,0.005998,0.249928,0,0);}
.m65_c01162{transform:matrix(0.253252,-0.006078,0.005998,0.249928,0,0);-ms-transform:matrix(0.253252,-0.006078,0.005998,0.249928,0,0);-webkit-transform:matrix(0.253252,-0.006078,0.005998,0.249928,0,0);}
.md5_c01162{transform:matrix(0.253563,-0.004311,0.004249,0.249964,0,0);-ms-transform:matrix(0.253563,-0.004311,0.004249,0.249964,0,0);-webkit-transform:matrix(0.253563,-0.004311,0.004249,0.249964,0,0);}
.m121_c01162{transform:matrix(0.253660,-0.003551,0.003500,0.249976,0,0);-ms-transform:matrix(0.253660,-0.003551,0.003500,0.249976,0,0);-webkit-transform:matrix(0.253660,-0.003551,0.003500,0.249976,0,0);}
.m135_c01162{transform:matrix(0.254050,-0.003557,0.003500,0.249976,0,0);-ms-transform:matrix(0.254050,-0.003557,0.003500,0.249976,0,0);-webkit-transform:matrix(0.254050,-0.003557,0.003500,0.249976,0,0);}
.m47_c01162{transform:matrix(0.254177,-0.006100,0.005998,0.249928,0,0);-ms-transform:matrix(0.254177,-0.006100,0.005998,0.249928,0,0);-webkit-transform:matrix(0.254177,-0.006100,0.005998,0.249928,0,0);}
.me0_c01162{transform:matrix(0.254308,-0.004323,0.004249,0.249964,0,0);-ms-transform:matrix(0.254308,-0.004323,0.004249,0.249964,0,0);-webkit-transform:matrix(0.254308,-0.004323,0.004249,0.249964,0,0);}
.m73_c01162{transform:matrix(0.254432,-0.006106,0.005998,0.249928,0,0);-ms-transform:matrix(0.254432,-0.006106,0.005998,0.249928,0,0);-webkit-transform:matrix(0.254432,-0.006106,0.005998,0.249928,0,0);}
.m11b_c01162{transform:matrix(0.254925,-0.003569,0.003500,0.249976,0,0);-ms-transform:matrix(0.254925,-0.003569,0.003500,0.249976,0,0);-webkit-transform:matrix(0.254925,-0.003569,0.003500,0.249976,0,0);}
.mc3_c01162{transform:matrix(0.256153,-0.004355,0.004249,0.249964,0,0);-ms-transform:matrix(0.256153,-0.004355,0.004249,0.249964,0,0);-webkit-transform:matrix(0.256153,-0.004355,0.004249,0.249964,0,0);}
.m25_c01162{transform:matrix(0.256471,-0.006155,0.005998,0.249928,0,0);-ms-transform:matrix(0.256471,-0.006155,0.005998,0.249928,0,0);-webkit-transform:matrix(0.256471,-0.006155,0.005998,0.249928,0,0);}
.m5f_c01162{transform:matrix(0.256536,-0.006157,0.005998,0.249928,0,0);-ms-transform:matrix(0.256536,-0.006157,0.005998,0.249928,0,0);-webkit-transform:matrix(0.256536,-0.006157,0.005998,0.249928,0,0);}
.mb6_c01162{transform:matrix(0.256803,-0.004366,0.004249,0.249964,0,0);-ms-transform:matrix(0.256803,-0.004366,0.004249,0.249964,0,0);-webkit-transform:matrix(0.256803,-0.004366,0.004249,0.249964,0,0);}
.maa_c01162{transform:matrix(0.256968,-0.004368,0.004249,0.249964,0,0);-ms-transform:matrix(0.256968,-0.004368,0.004249,0.249964,0,0);-webkit-transform:matrix(0.256968,-0.004368,0.004249,0.249964,0,0);}
.m54_c01162{transform:matrix(0.256991,-0.006168,0.005998,0.249928,0,0);-ms-transform:matrix(0.256991,-0.006168,0.005998,0.249928,0,0);-webkit-transform:matrix(0.256991,-0.006168,0.005998,0.249928,0,0);}
.m74_c01162{transform:matrix(0.257466,-0.006179,0.005998,0.249928,0,0);-ms-transform:matrix(0.257466,-0.006179,0.005998,0.249928,0,0);-webkit-transform:matrix(0.257466,-0.006179,0.005998,0.249928,0,0);}
.m7c_c01162{transform:matrix(0.257621,-0.006183,0.005998,0.249928,0,0);-ms-transform:matrix(0.257621,-0.006183,0.005998,0.249928,0,0);-webkit-transform:matrix(0.257621,-0.006183,0.005998,0.249928,0,0);}
.m5a_c01162{transform:matrix(0.257926,-0.006190,0.005998,0.249928,0,0);-ms-transform:matrix(0.257926,-0.006190,0.005998,0.249928,0,0);-webkit-transform:matrix(0.257926,-0.006190,0.005998,0.249928,0,0);}
.m9e_c01162{transform:matrix(0.258643,-0.004397,0.004249,0.249964,0,0);-ms-transform:matrix(0.258643,-0.004397,0.004249,0.249964,0,0);-webkit-transform:matrix(0.258643,-0.004397,0.004249,0.249964,0,0);}
.m77_c01162{transform:matrix(0.259085,-0.006218,0.005998,0.249928,0,0);-ms-transform:matrix(0.259085,-0.006218,0.005998,0.249928,0,0);-webkit-transform:matrix(0.259085,-0.006218,0.005998,0.249928,0,0);}
.m106_c01162{transform:matrix(0.259430,-0.003632,0.003500,0.249976,0,0);-ms-transform:matrix(0.259430,-0.003632,0.003500,0.249976,0,0);-webkit-transform:matrix(0.259430,-0.003632,0.003500,0.249976,0,0);}
.m95_c01162{transform:matrix(0.259785,-0.006235,0.005998,0.249928,0,0);-ms-transform:matrix(0.259785,-0.006235,0.005998,0.249928,0,0);-webkit-transform:matrix(0.259785,-0.006235,0.005998,0.249928,0,0);}
.m44_c01162{transform:matrix(0.260100,-0.006242,0.005998,0.249928,0,0);-ms-transform:matrix(0.260100,-0.006242,0.005998,0.249928,0,0);-webkit-transform:matrix(0.260100,-0.006242,0.005998,0.249928,0,0);}
.m69_c01162{transform:matrix(0.260600,-0.006254,0.005998,0.249928,0,0);-ms-transform:matrix(0.260600,-0.006254,0.005998,0.249928,0,0);-webkit-transform:matrix(0.260600,-0.006254,0.005998,0.249928,0,0);}
.m56_c01162{transform:matrix(0.260745,-0.006258,0.005998,0.249928,0,0);-ms-transform:matrix(0.260745,-0.006258,0.005998,0.249928,0,0);-webkit-transform:matrix(0.260745,-0.006258,0.005998,0.249928,0,0);}
.ma2_c01162{transform:matrix(0.260892,-0.004435,0.004249,0.249964,0,0);-ms-transform:matrix(0.260892,-0.004435,0.004249,0.249964,0,0);-webkit-transform:matrix(0.260892,-0.004435,0.004249,0.249964,0,0);}
.me1_c01162{transform:matrix(0.261117,-0.004439,0.004249,0.249964,0,0);-ms-transform:matrix(0.261117,-0.004439,0.004249,0.249964,0,0);-webkit-transform:matrix(0.261117,-0.004439,0.004249,0.249964,0,0);}
.m67_c01162{transform:matrix(0.261170,-0.006268,0.005998,0.249928,0,0);-ms-transform:matrix(0.261170,-0.006268,0.005998,0.249928,0,0);-webkit-transform:matrix(0.261170,-0.006268,0.005998,0.249928,0,0);}
.m137_c01162{transform:matrix(0.261624,-0.003663,0.003500,0.249976,0,0);-ms-transform:matrix(0.261624,-0.003663,0.003500,0.249976,0,0);-webkit-transform:matrix(0.261624,-0.003663,0.003500,0.249976,0,0);}
.m10e_c01162{transform:matrix(0.261684,-0.003664,0.003500,0.249976,0,0);-ms-transform:matrix(0.261684,-0.003664,0.003500,0.249976,0,0);-webkit-transform:matrix(0.261684,-0.003664,0.003500,0.249976,0,0);}
.m49_c01162{transform:matrix(0.261770,-0.006282,0.005998,0.249928,0,0);-ms-transform:matrix(0.261770,-0.006282,0.005998,0.249928,0,0);-webkit-transform:matrix(0.261770,-0.006282,0.005998,0.249928,0,0);}
.m89_c01162{transform:matrix(0.261850,-0.006284,0.005998,0.249928,0,0);-ms-transform:matrix(0.261850,-0.006284,0.005998,0.249928,0,0);-webkit-transform:matrix(0.261850,-0.006284,0.005998,0.249928,0,0);}
.m82_c01162{transform:matrix(0.261870,-0.006285,0.005998,0.249928,0,0);-ms-transform:matrix(0.261870,-0.006285,0.005998,0.249928,0,0);-webkit-transform:matrix(0.261870,-0.006285,0.005998,0.249928,0,0);}
.mbd_c01162{transform:matrix(0.261967,-0.004453,0.004249,0.249964,0,0);-ms-transform:matrix(0.261967,-0.004453,0.004249,0.249964,0,0);-webkit-transform:matrix(0.261967,-0.004453,0.004249,0.249964,0,0);}
.m5c_c01162{transform:matrix(0.262214,-0.006293,0.005998,0.249928,0,0);-ms-transform:matrix(0.262214,-0.006293,0.005998,0.249928,0,0);-webkit-transform:matrix(0.262214,-0.006293,0.005998,0.249928,0,0);}
.m8e_c01162{transform:matrix(0.262424,-0.006298,0.005998,0.249928,0,0);-ms-transform:matrix(0.262424,-0.006298,0.005998,0.249928,0,0);-webkit-transform:matrix(0.262424,-0.006298,0.005998,0.249928,0,0);}
.m60_c01162{transform:matrix(0.262809,-0.006307,0.005998,0.249928,0,0);-ms-transform:matrix(0.262809,-0.006307,0.005998,0.249928,0,0);-webkit-transform:matrix(0.262809,-0.006307,0.005998,0.249928,0,0);}
.m110_c01162{transform:matrix(0.262904,-0.003681,0.003500,0.249976,0,0);-ms-transform:matrix(0.262904,-0.003681,0.003500,0.249976,0,0);-webkit-transform:matrix(0.262904,-0.003681,0.003500,0.249976,0,0);}
.m46_c01162{transform:matrix(0.263709,-0.006329,0.005998,0.249928,0,0);-ms-transform:matrix(0.263709,-0.006329,0.005998,0.249928,0,0);-webkit-transform:matrix(0.263709,-0.006329,0.005998,0.249928,0,0);}
.me5_c01162{transform:matrix(0.264067,-0.004489,0.004249,0.249964,0,0);-ms-transform:matrix(0.264067,-0.004489,0.004249,0.249964,0,0);-webkit-transform:matrix(0.264067,-0.004489,0.004249,0.249964,0,0);}
.md8_c01162{transform:matrix(0.264602,-0.004498,0.004249,0.249964,0,0);-ms-transform:matrix(0.264602,-0.004498,0.004249,0.249964,0,0);-webkit-transform:matrix(0.264602,-0.004498,0.004249,0.249964,0,0);}
.mdf_c01162{transform:matrix(0.264637,-0.004499,0.004249,0.249964,0,0);-ms-transform:matrix(0.264637,-0.004499,0.004249,0.249964,0,0);-webkit-transform:matrix(0.264637,-0.004499,0.004249,0.249964,0,0);}
.m28_c01162{transform:matrix(0.264734,-0.006354,0.005998,0.249928,0,0);-ms-transform:matrix(0.264734,-0.006354,0.005998,0.249928,0,0);-webkit-transform:matrix(0.264734,-0.006354,0.005998,0.249928,0,0);}
.mdc_c01162{transform:matrix(0.264957,-0.004504,0.004249,0.249964,0,0);-ms-transform:matrix(0.264957,-0.004504,0.004249,0.249964,0,0);-webkit-transform:matrix(0.264957,-0.004504,0.004249,0.249964,0,0);}
.m6e_c01162{transform:matrix(0.265069,-0.006362,0.005998,0.249928,0,0);-ms-transform:matrix(0.265069,-0.006362,0.005998,0.249928,0,0);-webkit-transform:matrix(0.265069,-0.006362,0.005998,0.249928,0,0);}
.m4_c01162{transform:matrix(0.265374,-0.006369,0.005998,0.249928,0,0);-ms-transform:matrix(0.265374,-0.006369,0.005998,0.249928,0,0);-webkit-transform:matrix(0.265374,-0.006369,0.005998,0.249928,0,0);}
.m8b_c01162{transform:matrix(0.265499,-0.006372,0.005998,0.249928,0,0);-ms-transform:matrix(0.265499,-0.006372,0.005998,0.249928,0,0);-webkit-transform:matrix(0.265499,-0.006372,0.005998,0.249928,0,0);}
.m62_c01162{transform:matrix(0.265579,-0.006374,0.005998,0.249928,0,0);-ms-transform:matrix(0.265579,-0.006374,0.005998,0.249928,0,0);-webkit-transform:matrix(0.265579,-0.006374,0.005998,0.249928,0,0);}
.m10_c01162{transform:matrix(0.265808,-0.006379,0.005998,0.249928,0,0);-ms-transform:matrix(0.265808,-0.006379,0.005998,0.249928,0,0);-webkit-transform:matrix(0.265808,-0.006379,0.005998,0.249928,0,0);}
.m64_c01162{transform:matrix(0.266173,-0.006388,0.005998,0.249928,0,0);-ms-transform:matrix(0.266173,-0.006388,0.005998,0.249928,0,0);-webkit-transform:matrix(0.266173,-0.006388,0.005998,0.249928,0,0);}
.m6d_c01162{transform:matrix(0.267018,-0.006408,0.005998,0.249928,0,0);-ms-transform:matrix(0.267018,-0.006408,0.005998,0.249928,0,0);-webkit-transform:matrix(0.267018,-0.006408,0.005998,0.249928,0,0);}
.m32_c01162{transform:matrix(0.267158,-0.006412,0.005998,0.249928,0,0);-ms-transform:matrix(0.267158,-0.006412,0.005998,0.249928,0,0);-webkit-transform:matrix(0.267158,-0.006412,0.005998,0.249928,0,0);}
.m10d_c01162{transform:matrix(0.267489,-0.003745,0.003500,0.249976,0,0);-ms-transform:matrix(0.267489,-0.003745,0.003500,0.249976,0,0);-webkit-transform:matrix(0.267489,-0.003745,0.003500,0.249976,0,0);}
.md6_c01162{transform:matrix(0.267691,-0.004551,0.004249,0.249964,0,0);-ms-transform:matrix(0.267691,-0.004551,0.004249,0.249964,0,0);-webkit-transform:matrix(0.267691,-0.004551,0.004249,0.249964,0,0);}
.m15_c01162{transform:matrix(0.268493,-0.006444,0.005998,0.249928,0,0);-ms-transform:matrix(0.268493,-0.006444,0.005998,0.249928,0,0);-webkit-transform:matrix(0.268493,-0.006444,0.005998,0.249928,0,0);}
.m12_c01162{transform:matrix(0.268578,-0.006446,0.005998,0.249928,0,0);-ms-transform:matrix(0.268578,-0.006446,0.005998,0.249928,0,0);-webkit-transform:matrix(0.268578,-0.006446,0.005998,0.249928,0,0);}
.m3e_c01162{transform:matrix(0.268858,-0.006453,0.005998,0.249928,0,0);-ms-transform:matrix(0.268858,-0.006453,0.005998,0.249928,0,0);-webkit-transform:matrix(0.268858,-0.006453,0.005998,0.249928,0,0);}
.m70_c01162{transform:matrix(0.269098,-0.006458,0.005998,0.249928,0,0);-ms-transform:matrix(0.269098,-0.006458,0.005998,0.249928,0,0);-webkit-transform:matrix(0.269098,-0.006458,0.005998,0.249928,0,0);}
.m80_c01162{transform:matrix(0.269277,-0.006463,0.005998,0.249928,0,0);-ms-transform:matrix(0.269277,-0.006463,0.005998,0.249928,0,0);-webkit-transform:matrix(0.269277,-0.006463,0.005998,0.249928,0,0);}
.mc_c01162{transform:matrix(0.269442,-0.006467,0.005998,0.249928,0,0);-ms-transform:matrix(0.269442,-0.006467,0.005998,0.249928,0,0);-webkit-transform:matrix(0.269442,-0.006467,0.005998,0.249928,0,0);}
.m9_c01162{transform:matrix(0.270717,-0.006497,0.005998,0.249928,0,0);-ms-transform:matrix(0.270717,-0.006497,0.005998,0.249928,0,0);-webkit-transform:matrix(0.270717,-0.006497,0.005998,0.249928,0,0);}
.ma0_c01162{transform:matrix(0.270976,-0.004607,0.004249,0.249964,0,0);-ms-transform:matrix(0.270976,-0.004607,0.004249,0.249964,0,0);-webkit-transform:matrix(0.270976,-0.004607,0.004249,0.249964,0,0);}
.m7_c01162{transform:matrix(0.271182,-0.006508,0.005998,0.249928,0,0);-ms-transform:matrix(0.271182,-0.006508,0.005998,0.249928,0,0);-webkit-transform:matrix(0.271182,-0.006508,0.005998,0.249928,0,0);}
.m5d_c01162{transform:matrix(0.271872,-0.006525,0.005998,0.249928,0,0);-ms-transform:matrix(0.271872,-0.006525,0.005998,0.249928,0,0);-webkit-transform:matrix(0.271872,-0.006525,0.005998,0.249928,0,0);}
.m87_c01162{transform:matrix(0.272057,-0.006529,0.005998,0.249928,0,0);-ms-transform:matrix(0.272057,-0.006529,0.005998,0.249928,0,0);-webkit-transform:matrix(0.272057,-0.006529,0.005998,0.249928,0,0);}
.m36_c01162{transform:matrix(0.272427,-0.006538,0.005998,0.249928,0,0);-ms-transform:matrix(0.272427,-0.006538,0.005998,0.249928,0,0);-webkit-transform:matrix(0.272427,-0.006538,0.005998,0.249928,0,0);}
.m86_c01162{transform:matrix(0.272846,-0.006548,0.005998,0.249928,0,0);-ms-transform:matrix(0.272846,-0.006548,0.005998,0.249928,0,0);-webkit-transform:matrix(0.272846,-0.006548,0.005998,0.249928,0,0);}
.m39_c01162{transform:matrix(0.273106,-0.006555,0.005998,0.249928,0,0);-ms-transform:matrix(0.273106,-0.006555,0.005998,0.249928,0,0);-webkit-transform:matrix(0.273106,-0.006555,0.005998,0.249928,0,0);}
.m81_c01162{transform:matrix(0.273201,-0.006557,0.005998,0.249928,0,0);-ms-transform:matrix(0.273201,-0.006557,0.005998,0.249928,0,0);-webkit-transform:matrix(0.273201,-0.006557,0.005998,0.249928,0,0);}
.mc2_c01162{transform:matrix(0.273395,-0.004648,0.004249,0.249964,0,0);-ms-transform:matrix(0.273395,-0.004648,0.004249,0.249964,0,0);-webkit-transform:matrix(0.273395,-0.004648,0.004249,0.249964,0,0);}
.mc5_c01162{transform:matrix(0.273430,-0.004648,0.004249,0.249964,0,0);-ms-transform:matrix(0.273430,-0.004648,0.004249,0.249964,0,0);-webkit-transform:matrix(0.273430,-0.004648,0.004249,0.249964,0,0);}
.mc1_c01162{transform:matrix(0.273455,-0.004649,0.004249,0.249964,0,0);-ms-transform:matrix(0.273455,-0.004649,0.004249,0.249964,0,0);-webkit-transform:matrix(0.273455,-0.004649,0.004249,0.249964,0,0);}
.m48_c01162{transform:matrix(0.273506,-0.006564,0.005998,0.249928,0,0);-ms-transform:matrix(0.273506,-0.006564,0.005998,0.249928,0,0);-webkit-transform:matrix(0.273506,-0.006564,0.005998,0.249928,0,0);}
.m31_c01162{transform:matrix(0.273666,-0.006568,0.005998,0.249928,0,0);-ms-transform:matrix(0.273666,-0.006568,0.005998,0.249928,0,0);-webkit-transform:matrix(0.273666,-0.006568,0.005998,0.249928,0,0);}
.m11_c01162{transform:matrix(0.273691,-0.006569,0.005998,0.249928,0,0);-ms-transform:matrix(0.273691,-0.006569,0.005998,0.249928,0,0);-webkit-transform:matrix(0.273691,-0.006569,0.005998,0.249928,0,0);}
.mda_c01162{transform:matrix(0.274135,-0.004660,0.004249,0.249964,0,0);-ms-transform:matrix(0.274135,-0.004660,0.004249,0.249964,0,0);-webkit-transform:matrix(0.274135,-0.004660,0.004249,0.249964,0,0);}
.m41_c01162{transform:matrix(0.274211,-0.006581,0.005998,0.249928,0,0);-ms-transform:matrix(0.274211,-0.006581,0.005998,0.249928,0,0);-webkit-transform:matrix(0.274211,-0.006581,0.005998,0.249928,0,0);}
.m124_c01162{transform:matrix(0.274473,-0.003843,0.003500,0.249976,0,0);-ms-transform:matrix(0.274473,-0.003843,0.003500,0.249976,0,0);-webkit-transform:matrix(0.274473,-0.003843,0.003500,0.249976,0,0);}
.me8_c01162{transform:matrix(0.274860,-0.004673,0.004249,0.249964,0,0);-ms-transform:matrix(0.274860,-0.004673,0.004249,0.249964,0,0);-webkit-transform:matrix(0.274860,-0.004673,0.004249,0.249964,0,0);}
.m129_c01162{transform:matrix(0.275353,-0.003855,0.003500,0.249976,0,0);-ms-transform:matrix(0.275353,-0.003855,0.003500,0.249976,0,0);-webkit-transform:matrix(0.275353,-0.003855,0.003500,0.249976,0,0);}
.mc7_c01162{transform:matrix(0.276345,-0.004698,0.004249,0.249964,0,0);-ms-transform:matrix(0.276345,-0.004698,0.004249,0.249964,0,0);-webkit-transform:matrix(0.276345,-0.004698,0.004249,0.249964,0,0);}
.m3b_c01162{transform:matrix(0.276770,-0.006642,0.005998,0.249928,0,0);-ms-transform:matrix(0.276770,-0.006642,0.005998,0.249928,0,0);-webkit-transform:matrix(0.276770,-0.006642,0.005998,0.249928,0,0);}
.m3f_c01162{transform:matrix(0.277240,-0.006654,0.005998,0.249928,0,0);-ms-transform:matrix(0.277240,-0.006654,0.005998,0.249928,0,0);-webkit-transform:matrix(0.277240,-0.006654,0.005998,0.249928,0,0);}
.m6b_c01162{transform:matrix(0.277285,-0.006655,0.005998,0.249928,0,0);-ms-transform:matrix(0.277285,-0.006655,0.005998,0.249928,0,0);-webkit-transform:matrix(0.277285,-0.006655,0.005998,0.249928,0,0);}
.mc8_c01162{transform:matrix(0.277430,-0.004716,0.004249,0.249964,0,0);-ms-transform:matrix(0.277430,-0.004716,0.004249,0.249964,0,0);-webkit-transform:matrix(0.277430,-0.004716,0.004249,0.249964,0,0);}
.m6c_c01162{transform:matrix(0.277430,-0.006658,0.005998,0.249928,0,0);-ms-transform:matrix(0.277430,-0.006658,0.005998,0.249928,0,0);-webkit-transform:matrix(0.277430,-0.006658,0.005998,0.249928,0,0);}
.mdd_c01162{transform:matrix(0.277630,-0.004720,0.004249,0.249964,0,0);-ms-transform:matrix(0.277630,-0.004720,0.004249,0.249964,0,0);-webkit-transform:matrix(0.277630,-0.004720,0.004249,0.249964,0,0);}
.ma5_c01162{transform:matrix(0.277655,-0.004720,0.004249,0.249964,0,0);-ms-transform:matrix(0.277655,-0.004720,0.004249,0.249964,0,0);-webkit-transform:matrix(0.277655,-0.004720,0.004249,0.249964,0,0);}
.me6_c01162{transform:matrix(0.277960,-0.004725,0.004249,0.249964,0,0);-ms-transform:matrix(0.277960,-0.004725,0.004249,0.249964,0,0);-webkit-transform:matrix(0.277960,-0.004725,0.004249,0.249964,0,0);}
.m7d_c01162{transform:matrix(0.278250,-0.006678,0.005998,0.249928,0,0);-ms-transform:matrix(0.278250,-0.006678,0.005998,0.249928,0,0);-webkit-transform:matrix(0.278250,-0.006678,0.005998,0.249928,0,0);}
.mc4_c01162{transform:matrix(0.278420,-0.004733,0.004249,0.249964,0,0);-ms-transform:matrix(0.278420,-0.004733,0.004249,0.249964,0,0);-webkit-transform:matrix(0.278420,-0.004733,0.004249,0.249964,0,0);}
.m7f_c01162{transform:matrix(0.278520,-0.006684,0.005998,0.249928,0,0);-ms-transform:matrix(0.278520,-0.006684,0.005998,0.249928,0,0);-webkit-transform:matrix(0.278520,-0.006684,0.005998,0.249928,0,0);}
.mea_c01162{transform:matrix(0.278885,-0.004741,0.004249,0.249964,0,0);-ms-transform:matrix(0.278885,-0.004741,0.004249,0.249964,0,0);-webkit-transform:matrix(0.278885,-0.004741,0.004249,0.249964,0,0);}
.m113_c01162{transform:matrix(0.279108,-0.003908,0.003500,0.249976,0,0);-ms-transform:matrix(0.279108,-0.003908,0.003500,0.249976,0,0);-webkit-transform:matrix(0.279108,-0.003908,0.003500,0.249976,0,0);}
.m3d_c01162{transform:matrix(0.279325,-0.006704,0.005998,0.249928,0,0);-ms-transform:matrix(0.279325,-0.006704,0.005998,0.249928,0,0);-webkit-transform:matrix(0.279325,-0.006704,0.005998,0.249928,0,0);}
.ma7_c01162{transform:matrix(0.279545,-0.004752,0.004249,0.249964,0,0);-ms-transform:matrix(0.279545,-0.004752,0.004249,0.249964,0,0);-webkit-transform:matrix(0.279545,-0.004752,0.004249,0.249964,0,0);}
.m18_c01162{transform:matrix(0.279579,-0.006710,0.005998,0.249928,0,0);-ms-transform:matrix(0.279579,-0.006710,0.005998,0.249928,0,0);-webkit-transform:matrix(0.279579,-0.006710,0.005998,0.249928,0,0);}
.mb_c01162{transform:matrix(0.279854,-0.006717,0.005998,0.249928,0,0);-ms-transform:matrix(0.279854,-0.006717,0.005998,0.249928,0,0);-webkit-transform:matrix(0.279854,-0.006717,0.005998,0.249928,0,0);}
.m142_c01162{transform:matrix(0.280004,-0.004200,0.003750,0.249972,0,0);-ms-transform:matrix(0.280004,-0.004200,0.003750,0.249972,0,0);-webkit-transform:matrix(0.280004,-0.004200,0.003750,0.249972,0,0);}
.m126_c01162{transform:matrix(0.280118,-0.003922,0.003500,0.249976,0,0);-ms-transform:matrix(0.280118,-0.003922,0.003500,0.249976,0,0);-webkit-transform:matrix(0.280118,-0.003922,0.003500,0.249976,0,0);}
.m63_c01162{transform:matrix(0.281584,-0.006758,0.005998,0.249928,0,0);-ms-transform:matrix(0.281584,-0.006758,0.005998,0.249928,0,0);-webkit-transform:matrix(0.281584,-0.006758,0.005998,0.249928,0,0);}
.m2d_c01162{transform:matrix(0.282414,-0.006778,0.005998,0.249928,0,0);-ms-transform:matrix(0.282414,-0.006778,0.005998,0.249928,0,0);-webkit-transform:matrix(0.282414,-0.006778,0.005998,0.249928,0,0);}
.ma8_c01162{transform:matrix(0.283999,-0.004828,0.004249,0.249964,0,0);-ms-transform:matrix(0.283999,-0.004828,0.004249,0.249964,0,0);-webkit-transform:matrix(0.283999,-0.004828,0.004249,0.249964,0,0);}
.m29_c01162{transform:matrix(0.284293,-0.006823,0.005998,0.249928,0,0);-ms-transform:matrix(0.284293,-0.006823,0.005998,0.249928,0,0);-webkit-transform:matrix(0.284293,-0.006823,0.005998,0.249928,0,0);}
.m127_c01162{transform:matrix(0.284712,-0.003986,0.003500,0.249976,0,0);-ms-transform:matrix(0.284712,-0.003986,0.003500,0.249976,0,0);-webkit-transform:matrix(0.284712,-0.003986,0.003500,0.249976,0,0);}
.m2a_c01162{transform:matrix(0.289347,-0.006944,0.005998,0.249928,0,0);-ms-transform:matrix(0.289347,-0.006944,0.005998,0.249928,0,0);-webkit-transform:matrix(0.289347,-0.006944,0.005998,0.249928,0,0);}
.m34_c01162{transform:matrix(0.300374,-0.007209,0.005998,0.249928,0,0);-ms-transform:matrix(0.300374,-0.007209,0.005998,0.249928,0,0);-webkit-transform:matrix(0.300374,-0.007209,0.005998,0.249928,0,0);}
.m2e_c01162{transform:matrix(0.303358,-0.007281,0.005998,0.249928,0,0);-ms-transform:matrix(0.303358,-0.007281,0.005998,0.249928,0,0);-webkit-transform:matrix(0.303358,-0.007281,0.005998,0.249928,0,0);}
.m84_c01162{transform:matrix(0.307052,-0.007369,0.005998,0.249928,0,0);-ms-transform:matrix(0.307052,-0.007369,0.005998,0.249928,0,0);-webkit-transform:matrix(0.307052,-0.007369,0.005998,0.249928,0,0);}
.m3_c01162{transform:matrix(0.332969,-0.007991,0.005998,0.249928,0,0);-ms-transform:matrix(0.332969,-0.007991,0.005998,0.249928,0,0);-webkit-transform:matrix(0.332969,-0.007991,0.005998,0.249928,0,0);}
.m115_c01162{transform:matrix(0.335797,-0.004701,0.003500,0.249976,0,0);-ms-transform:matrix(0.335797,-0.004701,0.003500,0.249976,0,0);-webkit-transform:matrix(0.335797,-0.004701,0.003500,0.249976,0,0);}
.m30_c01162{transform:matrix(0.407848,-0.009788,0.005998,0.249928,0,0);-ms-transform:matrix(0.407848,-0.009788,0.005998,0.249928,0,0);-webkit-transform:matrix(0.407848,-0.009788,0.005998,0.249928,0,0);}
.m1_c01162{transform:matrix(0.438075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.438075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.438075,0.000000,0.000000,0.250000,0,0);}
.m143_c01162{transform:matrix(1.814151,-0.027212,0.003750,0.249972,0,0);-ms-transform:matrix(1.814151,-0.027212,0.003750,0.249972,0,0);-webkit-transform:matrix(1.814151,-0.027212,0.003750,0.249972,0,0);}
.v0_c01162{vertical-align:0.000000px;}
.ls0_c01162{letter-spacing:0.000000px;}
.sc__c01162{text-shadow:none;}
.sc0_c01162{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__c01162{-webkit-text-stroke:0px transparent;}
.sc0_c01162{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01162{word-spacing:0.000000px;}
.fc0_c01162{color:transparent;}
.fsb_c01162{font-size:24.002700px;}
.fs0_c01162{font-size:66.000000px;}
.fs3_c01162{font-size:66.019005px;}
.fs9_c01162{font-size:72.007056px;}
.fs5_c01162{font-size:72.010403px;}
.fs1_c01162{font-size:72.020733px;}
.fs8_c01162{font-size:78.007644px;}
.fs4_c01162{font-size:78.011270px;}
.fs2_c01162{font-size:78.022461px;}
.fsa_c01162{font-size:84.009449px;}
.fsc_c01162{font-size:84.020326px;}
.fs7_c01162{font-size:90.008820px;}
.fs6_c01162{font-size:102.014738px;}
.y0_c01162{bottom:0.000000px;}
.y151_c01162{bottom:46.447500px;}
.y152_c01162{bottom:47.648271px;}
.y153_c01162{bottom:49.324638px;}
.y154_c01162{bottom:51.075981px;}
.y155_c01162{bottom:51.759180px;}
.y156_c01162{bottom:52.507455px;}
.y157_c01162{bottom:52.976616px;}
.y158_c01162{bottom:53.719710px;}
.y159_c01162{bottom:55.186791px;}
.y15a_c01162{bottom:56.428482px;}
.y14f_c01162{bottom:81.778455px;}
.y144_c01162{bottom:99.903000px;}
.y150_c01162{bottom:101.172172px;}
.y145_c01162{bottom:101.710492px;}
.y146_c01162{bottom:102.893070px;}
.y147_c01162{bottom:104.710642px;}
.y148_c01162{bottom:105.351442px;}
.y149_c01162{bottom:105.869842px;}
.y14a_c01162{bottom:107.502240px;}
.y14b_c01162{bottom:108.344190px;}
.y14c_c01162{bottom:108.850507px;}
.y14d_c01162{bottom:109.344495px;}
.y14e_c01162{bottom:110.360752px;}
.y138_c01162{bottom:139.843017px;}
.y139_c01162{bottom:140.714583px;}
.y13a_c01162{bottom:141.147072px;}
.y13b_c01162{bottom:141.476274px;}
.y13c_c01162{bottom:141.921957px;}
.y13d_c01162{bottom:142.583595px;}
.y13e_c01162{bottom:142.799478px;}
.y13f_c01162{bottom:143.352567px;}
.y140_c01162{bottom:143.684091px;}
.y141_c01162{bottom:144.783030px;}
.y142_c01162{bottom:145.565562px;}
.y143_c01162{bottom:145.889439px;}
.y12d_c01162{bottom:172.249863px;}
.y12e_c01162{bottom:172.938246px;}
.y12f_c01162{bottom:175.093092px;}
.y130_c01162{bottom:175.757742px;}
.y131_c01162{bottom:176.417175px;}
.y132_c01162{bottom:178.653015px;}
.y133_c01162{bottom:181.728813px;}
.y134_c01162{bottom:182.625717px;}
.y135_c01162{bottom:184.600269px;}
.y136_c01162{bottom:185.264604px;}
.y137_c01162{bottom:186.170934px;}
.y120_c01162{bottom:206.811414px;}
.y121_c01162{bottom:208.396257px;}
.y122_c01162{bottom:209.373684px;}
.y123_c01162{bottom:209.973132px;}
.y124_c01162{bottom:210.366333px;}
.y125_c01162{bottom:210.988362px;}
.y126_c01162{bottom:213.155658px;}
.y127_c01162{bottom:213.748944px;}
.y128_c01162{bottom:214.749687px;}
.y129_c01162{bottom:215.557671px;}
.y12a_c01162{bottom:216.757218px;}
.y12b_c01162{bottom:217.345833px;}
.y12c_c01162{bottom:219.147453px;}
.y113_c01162{bottom:246.503991px;}
.y114_c01162{bottom:247.293657px;}
.y115_c01162{bottom:248.638902px;}
.y116_c01162{bottom:249.246591px;}
.y117_c01162{bottom:249.820593px;}
.y118_c01162{bottom:251.424846px;}
.y119_c01162{bottom:252.837591px;}
.y11a_c01162{bottom:253.805130px;}
.y11b_c01162{bottom:255.000615px;}
.y11c_c01162{bottom:255.587802px;}
.y11d_c01162{bottom:256.585731px;}
.y11e_c01162{bottom:258.183759px;}
.y11f_c01162{bottom:259.015353px;}
.y105_c01162{bottom:279.719790px;}
.y106_c01162{bottom:280.316610px;}
.y107_c01162{bottom:281.794044px;}
.y108_c01162{bottom:282.425820px;}
.y109_c01162{bottom:283.036350px;}
.y10a_c01162{bottom:284.319018px;}
.y10b_c01162{bottom:284.934744px;}
.y10c_c01162{bottom:286.822158px;}
.y10d_c01162{bottom:287.462700px;}
.y10e_c01162{bottom:288.073797px;}
.y10f_c01162{bottom:289.118829px;}
.y110_c01162{bottom:289.750458px;}
.y111_c01162{bottom:291.867657px;}
.y112_c01162{bottom:292.498509px;}
.yfb_c01162{bottom:319.683000px;}
.yfc_c01162{bottom:320.933256px;}
.yfd_c01162{bottom:321.247752px;}
.yfe_c01162{bottom:322.468041px;}
.yff_c01162{bottom:322.941444px;}
.y100_c01162{bottom:323.715525px;}
.y101_c01162{bottom:324.038001px;}
.y102_c01162{bottom:325.413795px;}
.y103_c01162{bottom:326.658255px;}
.y104_c01162{bottom:327.753552px;}
.yf5_c01162{bottom:348.540946px;}
.yf6_c01162{bottom:351.757156px;}
.yf7_c01162{bottom:353.243991px;}
.yf8_c01162{bottom:354.122051px;}
.yf9_c01162{bottom:359.221459px;}
.yfa_c01162{bottom:366.834393px;}
.yea_c01162{bottom:382.832296px;}
.yeb_c01162{bottom:383.857794px;}
.yec_c01162{bottom:385.359232px;}
.yed_c01162{bottom:386.118742px;}
.yee_c01162{bottom:386.875932px;}
.yef_c01162{bottom:387.889683px;}
.yf0_c01162{bottom:389.442387px;}
.yf1_c01162{bottom:392.466513px;}
.yf2_c01162{bottom:393.249108px;}
.yf3_c01162{bottom:395.539435px;}
.yf4_c01162{bottom:396.818026px;}
.ydf_c01162{bottom:419.288775px;}
.ye0_c01162{bottom:420.845972px;}
.ye1_c01162{bottom:423.205818px;}
.ye2_c01162{bottom:424.300900px;}
.ye3_c01162{bottom:426.406227px;}
.ye4_c01162{bottom:427.163910px;}
.ye5_c01162{bottom:429.056547px;}
.ye6_c01162{bottom:429.873769px;}
.ye7_c01162{bottom:431.992674px;}
.ye8_c01162{bottom:434.375427px;}
.ye9_c01162{bottom:435.189594px;}
.yd3_c01162{bottom:455.475825px;}
.yd4_c01162{bottom:457.280104px;}
.yd5_c01162{bottom:457.835442px;}
.yd6_c01162{bottom:460.988691px;}
.yd7_c01162{bottom:462.047060px;}
.yd8_c01162{bottom:463.626168px;}
.yd9_c01162{bottom:464.424615px;}
.yda_c01162{bottom:465.208158px;}
.ydb_c01162{bottom:467.637867px;}
.ydc_c01162{bottom:469.205917px;}
.ydd_c01162{bottom:469.976847px;}
.yde_c01162{bottom:472.399140px;}
.yca_c01162{bottom:491.117763px;}
.ycb_c01162{bottom:492.131514px;}
.ycc_c01162{bottom:494.628230px;}
.ycd_c01162{bottom:496.664316px;}
.yce_c01162{bottom:497.963085px;}
.ycf_c01162{bottom:501.018069px;}
.yd0_c01162{bottom:503.272290px;}
.yd1_c01162{bottom:504.060669px;}
.yd2_c01162{bottom:506.090564px;}
.ybf_c01162{bottom:527.029944px;}
.yc0_c01162{bottom:527.788460px;}
.yc1_c01162{bottom:530.668941px;}
.yc2_c01162{bottom:531.881173px;}
.yc3_c01162{bottom:532.622668px;}
.yc4_c01162{bottom:533.804961px;}
.yc5_c01162{bottom:534.779823px;}
.yc6_c01162{bottom:536.484535px;}
.yc7_c01162{bottom:538.408221px;}
.yc8_c01162{bottom:540.895223px;}
.yc9_c01162{bottom:541.389508px;}
.yb3_c01162{bottom:562.406345px;}
.yb4_c01162{bottom:563.298878px;}
.yb5_c01162{bottom:565.911020px;}
.yb6_c01162{bottom:566.597781px;}
.yb7_c01162{bottom:567.474228px;}
.yb8_c01162{bottom:568.137594px;}
.yb9_c01162{bottom:569.448877px;}
.yba_c01162{bottom:570.103043px;}
.ybb_c01162{bottom:571.443051px;}
.ybc_c01162{bottom:573.006698px;}
.ybd_c01162{bottom:573.672940px;}
.ybe_c01162{bottom:575.681309px;}
.yaa_c01162{bottom:599.129667px;}
.yab_c01162{bottom:600.901018px;}
.yac_c01162{bottom:601.749633px;}
.yad_c01162{bottom:602.860832px;}
.yae_c01162{bottom:603.748137px;}
.yaf_c01162{bottom:604.845442px;}
.yb0_c01162{bottom:607.064091px;}
.yb1_c01162{bottom:607.940615px;}
.yb2_c01162{bottom:610.409051px;}
.ya1_c01162{bottom:639.093000px;}
.ya2_c01162{bottom:640.433331px;}
.ya3_c01162{bottom:641.366070px;}
.ya4_c01162{bottom:642.477003px;}
.ya5_c01162{bottom:643.606373px;}
.ya6_c01162{bottom:644.543294px;}
.ya7_c01162{bottom:645.672510px;}
.ya8_c01162{bottom:646.820010px;}
.ya9_c01162{bottom:648.893466px;}
.y98_c01162{bottom:669.474024px;}
.y99_c01162{bottom:670.555128px;}
.y9a_c01162{bottom:671.435220px;}
.y9b_c01162{bottom:673.990296px;}
.y9c_c01162{bottom:676.004772px;}
.y9d_c01162{bottom:677.753580px;}
.y9e_c01162{bottom:679.164636px;}
.y9f_c01162{bottom:680.597136px;}
.ya0_c01162{bottom:683.581032px;}
.y8c_c01162{bottom:704.311116px;}
.y8d_c01162{bottom:704.995392px;}
.y8e_c01162{bottom:707.744904px;}
.y8f_c01162{bottom:708.681036px;}
.y90_c01162{bottom:710.545884px;}
.y91_c01162{bottom:712.644024px;}
.y92_c01162{bottom:713.805204px;}
.y93_c01162{bottom:715.406040px;}
.y94_c01162{bottom:716.120484px;}
.y95_c01162{bottom:717.519564px;}
.y96_c01162{bottom:717.979956px;}
.y97_c01162{bottom:718.659480px;}
.y81_c01162{bottom:741.040428px;}
.y82_c01162{bottom:741.715536px;}
.y83_c01162{bottom:743.460588px;}
.y84_c01162{bottom:744.115428px;}
.y85_c01162{bottom:746.112480px;}
.y86_c01162{bottom:746.999532px;}
.y87_c01162{bottom:747.671316px;}
.y88_c01162{bottom:749.880600px;}
.y89_c01162{bottom:751.633728px;}
.y8a_c01162{bottom:752.305404px;}
.y8b_c01162{bottom:754.071432px;}
.y77_c01162{bottom:776.959764px;}
.y78_c01162{bottom:778.693704px;}
.y79_c01162{bottom:779.370108px;}
.y7a_c01162{bottom:781.368852px;}
.y7b_c01162{bottom:783.999864px;}
.y7c_c01162{bottom:785.554308px;}
.y7d_c01162{bottom:785.983068px;}
.y7e_c01162{bottom:788.208792px;}
.y7f_c01162{bottom:789.326112px;}
.y80_c01162{bottom:790.906704px;}
.y6d_c01162{bottom:812.342112px;}
.y6e_c01162{bottom:814.005300px;}
.y6f_c01162{bottom:814.742112px;}
.y70_c01162{bottom:815.942400px;}
.y71_c01162{bottom:818.859660px;}
.y72_c01162{bottom:821.538708px;}
.y73_c01162{bottom:823.476588px;}
.y74_c01162{bottom:824.243580px;}
.y75_c01162{bottom:826.174152px;}
.y76_c01162{bottom:826.909848px;}
.y62_c01162{bottom:848.534364px;}
.y63_c01162{bottom:849.533040px;}
.y64_c01162{bottom:851.203536px;}
.y65_c01162{bottom:851.928744px;}
.y66_c01162{bottom:853.620720px;}
.y67_c01162{bottom:854.364444px;}
.y68_c01162{bottom:857.512632px;}
.y69_c01162{bottom:859.241064px;}
.y6a_c01162{bottom:860.427768px;}
.y6b_c01162{bottom:861.676368px;}
.y6c_c01162{bottom:863.357028px;}
.y56_c01162{bottom:884.186100px;}
.y57_c01162{bottom:885.186492px;}
.y58_c01162{bottom:886.700460px;}
.y59_c01162{bottom:887.961984px;}
.y5a_c01162{bottom:888.726852px;}
.y5b_c01162{bottom:890.242296px;}
.y5c_c01162{bottom:891.801600px;}
.y5d_c01162{bottom:893.073852px;}
.y5e_c01162{bottom:894.857340px;}
.y5f_c01162{bottom:896.342028px;}
.y60_c01162{bottom:898.669836px;}
.y61_c01162{bottom:899.658168px;}
.y4b_c01162{bottom:919.564248px;}
.y4c_c01162{bottom:920.813124px;}
.y4d_c01162{bottom:922.100568px;}
.y4e_c01162{bottom:924.359808px;}
.y4f_c01162{bottom:924.864276px;}
.y50_c01162{bottom:926.124468px;}
.y51_c01162{bottom:927.931932px;}
.y52_c01162{bottom:930.197808px;}
.y53_c01162{bottom:930.989940px;}
.y54_c01162{bottom:933.005844px;}
.y55_c01162{bottom:933.536376px;}
.y3f_c01162{bottom:953.863524px;}
.y40_c01162{bottom:956.421516px;}
.y41_c01162{bottom:957.113184px;}
.y42_c01162{bottom:959.188572px;}
.y43_c01162{bottom:959.880348px;}
.y44_c01162{bottom:960.584952px;}
.y45_c01162{bottom:961.979712px;}
.y46_c01162{bottom:962.694948px;}
.y47_c01162{bottom:964.306164px;}
.y48_c01162{bottom:965.462940px;}
.y49_c01162{bottom:967.311636px;}
.y4a_c01162{bottom:968.031600px;}
.y34_c01162{bottom:988.433280px;}
.y35_c01162{bottom:989.188752px;}
.y36_c01162{bottom:991.337928px;}
.y37_c01162{bottom:991.832784px;}
.y38_c01162{bottom:993.046320px;}
.y39_c01162{bottom:995.678892px;}
.y3a_c01162{bottom:996.458064px;}
.y3b_c01162{bottom:998.665608px;}
.y3c_c01162{bottom:999.622068px;}
.y3d_c01162{bottom:1000.592544px;}
.y3e_c01162{bottom:1003.033896px;}
.y27_c01162{bottom:1023.275424px;}
.y28_c01162{bottom:1024.112352px;}
.y29_c01162{bottom:1025.927796px;}
.y2a_c01162{bottom:1027.552728px;}
.y2b_c01162{bottom:1028.578296px;}
.y2c_c01162{bottom:1029.382824px;}
.y2d_c01162{bottom:1030.977120px;}
.y2e_c01162{bottom:1032.828744px;}
.y2f_c01162{bottom:1033.387896px;}
.y30_c01162{bottom:1036.051644px;}
.y31_c01162{bottom:1037.326584px;}
.y32_c01162{bottom:1038.416916px;}
.y33_c01162{bottom:1039.239372px;}
.y1b_c01162{bottom:1058.924640px;}
.y1c_c01162{bottom:1059.868776px;}
.y1d_c01162{bottom:1060.381716px;}
.y1e_c01162{bottom:1061.801760px;}
.y1f_c01162{bottom:1062.569904px;}
.y20_c01162{bottom:1064.480808px;}
.y21_c01162{bottom:1064.957580px;}
.y22_c01162{bottom:1065.961632px;}
.y23_c01162{bottom:1067.910540px;}
.y24_c01162{bottom:1070.084796px;}
.y25_c01162{bottom:1072.526004px;}
.y26_c01162{bottom:1073.268432px;}
.ye_c01162{bottom:1093.765512px;}
.yf_c01162{bottom:1094.511264px;}
.y10_c01162{bottom:1096.059372px;}
.y11_c01162{bottom:1098.345408px;}
.y12_c01162{bottom:1100.616108px;}
.y13_c01162{bottom:1101.100872px;}
.y14_c01162{bottom:1101.860916px;}
.y15_c01162{bottom:1103.691468px;}
.y16_c01162{bottom:1104.715380px;}
.y17_c01162{bottom:1105.450860px;}
.y18_c01162{bottom:1107.790128px;}
.y19_c01162{bottom:1108.785228px;}
.y1a_c01162{bottom:1109.796348px;}
.y2_c01162{bottom:1128.885000px;}
.y3_c01162{bottom:1129.675452px;}
.y4_c01162{bottom:1131.276624px;}
.y5_c01162{bottom:1132.839096px;}
.y6_c01162{bottom:1133.643768px;}
.y7_c01162{bottom:1136.014764px;}
.y8_c01162{bottom:1136.838732px;}
.y9_c01162{bottom:1139.469792px;}
.ya_c01162{bottom:1140.307044px;}
.yb_c01162{bottom:1142.931012px;}
.yc_c01162{bottom:1144.557168px;}
.yd_c01162{bottom:1145.378652px;}
.y1_c01162{bottom:1196.371500px;}
.hd_c01162{height:24.002700px;}
.h2_c01162{height:66.000000px;}
.h5_c01162{height:66.019005px;}
.hb_c01162{height:72.007056px;}
.h7_c01162{height:72.010403px;}
.h3_c01162{height:72.020733px;}
.ha_c01162{height:78.007644px;}
.h6_c01162{height:78.011270px;}
.h4_c01162{height:78.022461px;}
.hc_c01162{height:84.009449px;}
.he_c01162{height:84.020326px;}
.h9_c01162{height:90.008820px;}
.h8_c01162{height:102.014738px;}
.h1_c01162{height:1258.500000px;}
.h0_c01162{height:1258.740000px;}
.w0_c01162{width:904.200000px;}
.w1_c01162{width:904.500000px;}
.x0_c01162{left:0.000000px;}
.x4_c01162{left:104.874000px;}
.x24_c01162{left:106.446576px;}
.x18_c01162{left:107.476080px;}
.x38_c01162{left:108.825372px;}
.x43_c01162{left:111.012840px;}
.xa5_c01162{left:112.779744px;}
.x60_c01162{left:113.997408px;}
.x7c_c01162{left:116.611164px;}
.x8d_c01162{left:118.566006px;}
.x9b_c01162{left:119.572638px;}
.xa1_c01162{left:121.290465px;}
.xae_c01162{left:123.747915px;}
.xb8_c01162{left:125.990429px;}
.xc2_c01162{left:128.946153px;}
.xd6_c01162{left:131.048526px;}
.xe4_c01162{left:132.127500px;}
.x5_c01162{left:137.809500px;}
.x25_c01162{left:141.318576px;}
.x2f_c01162{left:142.381872px;}
.x73_c01162{left:148.499832px;}
.x19_c01162{left:150.379632px;}
.x9c_c01162{left:154.041206px;}
.x4c_c01162{left:155.331444px;}
.x56_c01162{left:157.189704px;}
.x85_c01162{left:159.133320px;}
.x93_c01162{left:163.994579px;}
.x44_c01162{left:165.300636px;}
.xb4_c01162{left:168.069873px;}
.x1a_c01162{left:173.690748px;}
.xe5_c01162{left:186.708000px;}
.xa6_c01162{left:187.934294px;}
.x61_c01162{left:189.613044px;}
.x86_c01162{left:192.989700px;}
.x6a_c01162{left:201.212712px;}
.x6_c01162{left:204.525000px;}
.x8e_c01162{left:207.140993px;}
.xa7_c01162{left:211.069040px;}
.x26_c01162{left:216.962076px;}
.xd7_c01162{left:218.272419px;}
.x45_c01162{left:221.257968px;}
.x62_c01162{left:223.127664px;}
.x89_c01162{left:226.467000px;}
.x39_c01162{left:230.667156px;}
.x57_c01162{left:233.109840px;}
.x6b_c01162{left:235.024452px;}
.x1b_c01162{left:238.237344px;}
.x30_c01162{left:240.060552px;}
.xb9_c01162{left:245.100182px;}
.xc3_c01162{left:247.576017px;}
.x8f_c01162{left:249.557325px;}
.xde_c01162{left:251.422500px;}
.xd8_c01162{left:261.488334px;}
.x31_c01162{left:262.555632px;}
.x3a_c01162{left:263.614032px;}
.x58_c01162{left:266.078424px;}
.x74_c01162{left:268.506852px;}
.x7_c01162{left:269.628000px;}
.xce_c01162{left:271.695183px;}
.x1c_c01162{left:273.120000px;}
.x4d_c01162{left:276.042360px;}
.x63_c01162{left:277.704792px;}
.x7d_c01162{left:280.134936px;}
.xc4_c01162{left:281.337627px;}
.x27_c01162{left:284.667576px;}
.xaf_c01162{left:286.907484px;}
.x87_c01162{left:291.258984px;}
.x94_c01162{left:294.613923px;}
.xb5_c01162{left:299.270486px;}
.xbe_c01162{left:301.387092px;}
.x8_c01162{left:303.156000px;}
.x10_c01162{left:304.738584px;}
.x4e_c01162{left:309.287652px;}
.xc5_c01162{left:313.228842px;}
.x32_c01162{left:317.684760px;}
.x46_c01162{left:319.457808px;}
.xbb_c01162{left:323.640000px;}
.x7e_c01162{left:324.706140px;}
.x28_c01162{left:327.399576px;}
.x95_c01162{left:328.921664px;}
.xdf_c01162{left:330.261000px;}
.xb0_c01162{left:332.524553px;}
.x1_c01162{left:333.720000px;}
.x6c_c01162{left:334.940028px;}
.xcf_c01162{left:337.874118px;}
.xd9_c01162{left:339.020181px;}
.x9d_c01162{left:340.067396px;}
.x47_c01162{left:341.415348px;}
.x59_c01162{left:343.018632px;}
.xbc_c01162{left:346.104000px;}
.x90_c01162{left:349.464225px;}
.x2_c01162{left:356.130000px;}
.x1d_c01162{left:359.995176px;}
.x3b_c01162{left:362.408124px;}
.x75_c01162{left:368.351928px;}
.x96_c01162{left:372.710420px;}
.x9e_c01162{left:373.799540px;}
.x4f_c01162{left:375.182736px;}
.x5a_c01162{left:376.821252px;}
.x1e_c01162{left:381.674220px;}
.xa8_c01162{left:386.525655px;}
.x3c_c01162{left:395.359500px;}
.x3_c01162{left:398.520000px;}
.x9_c01162{left:401.947500px;}
.x11_c01162{left:403.478460px;}
.x97_c01162{left:405.906737px;}
.xe6_c01162{left:407.580000px;}
.x64_c01162{left:410.326164px;}
.x76_c01162{left:412.691676px;}
.xa2_c01162{left:418.926120px;}
.xb1_c01162{left:420.268623px;}
.x12_c01162{left:424.552464px;}
.x1f_c01162{left:427.324416px;}
.x3d_c01162{left:428.907912px;}
.xbd_c01162{left:433.267500px;}
.xa_c01162{left:436.279500px;}
.x33_c01162{left:437.318484px;}
.x50_c01162{left:442.967856px;}
.x77_c01162{left:446.248380px;}
.xd0_c01162{left:449.674731px;}
.xa9_c01162{left:452.318327px;}
.x13_c01162{left:457.596756px;}
.xe7_c01162{left:462.682500px;}
.x6d_c01162{left:466.453128px;}
.x98_c01162{left:471.478896px;}
.x34_c01162{left:472.723176px;}
.x48_c01162{left:474.800052px;}
.xc6_c01162{left:480.826455px;}
.xda_c01162{left:482.143203px;}
.xaa_c01162{left:485.605374px;}
.x88_c01162{left:490.284444px;}
.x8a_c01162{left:491.959500px;}
.xe0_c01162{left:494.152500px;}
.x3e_c01162{left:495.340200px;}
.x51_c01162{left:498.292188px;}
.xbf_c01162{left:500.645148px;}
.x29_c01162{left:504.501576px;}
.x7f_c01162{left:513.469248px;}
.x20_c01162{left:515.908164px;}
.xab_c01162{left:518.280498px;}
.x5b_c01162{left:519.940128px;}
.xba_c01162{left:521.512185px;}
.x2a_c01162{left:527.799576px;}
.x3f_c01162{left:529.394148px;}
.xb2_c01162{left:530.715491px;}
.x65_c01162{left:532.083996px;}
.xc0_c01162{left:534.395796px;}
.x14_c01162{left:537.184164px;}
.xb6_c01162{left:542.338700px;}
.x6e_c01162{left:544.166580px;}
.xb_c01162{left:545.907000px;}
.x8b_c01162{left:547.072500px;}
.x9f_c01162{left:549.335622px;}
.xa3_c01162{left:551.764580px;}
.x78_c01162{left:556.687464px;}
.x91_c01162{left:559.011015px;}
.x6f_c01162{left:565.596132px;}
.x80_c01162{left:568.793244px;}
.x99_c01162{left:571.219322px;}
.x35_c01162{left:573.084000px;}
.x52_c01162{left:575.856060px;}
.xc_c01162{left:580.792500px;}
.xe8_c01162{left:585.808500px;}
.x5c_c01162{left:598.524408px;}
.xc7_c01162{left:601.035735px;}
.xd1_c01162{left:603.468816px;}
.x40_c01162{left:606.096156px;}
.x49_c01162{left:607.782756px;}
.x15_c01162{left:613.681500px;}
.x21_c01162{left:614.756916px;}
.x36_c01162{left:616.563588px;}
.x66_c01162{left:620.145708px;}
.xc1_c01162{left:621.613206px;}
.xdb_c01162{left:625.255725px;}
.xc8_c01162{left:633.654408px;}
.xa0_c01162{left:636.809702px;}
.x2b_c01162{left:638.789076px;}
.x53_c01162{left:640.407108px;}
.x79_c01162{left:644.367888px;}
.xd2_c01162{left:648.351057px;}
.x9a_c01162{left:649.429844px;}
.x5d_c01162{left:652.473000px;}
.x67_c01162{left:654.980364px;}
.x37_c01162{left:660.689712px;}
.x70_c01162{left:676.845288px;}
.x7a_c01162{left:677.920092px;}
.x81_c01162{left:679.021164px;}
.x8c_c01162{left:680.997000px;}
.x92_c01162{left:682.412717px;}
.xa4_c01162{left:684.051090px;}
.xc9_c01162{left:689.074800px;}
.xd_c01162{left:690.124500px;}
.x2c_c01162{left:691.911576px;}
.xe1_c01162{left:693.669000px;}
.x4a_c01162{left:695.405844px;}
.xdc_c01162{left:703.548114px;}
.x5e_c01162{left:709.250736px;}
.xcc_c01162{left:713.421822px;}
.x16_c01162{left:715.403448px;}
.xac_c01162{left:716.973860px;}
.x4b_c01162{left:718.449384px;}
.x22_c01162{left:725.729244px;}
.xe2_c01162{left:727.423500px;}
.xb7_c01162{left:731.584922px;}
.x71_c01162{left:732.718152px;}
.xdd_c01162{left:736.005441px;}
.x2d_c01162{left:737.342076px;}
.x54_c01162{left:741.589020px;}
.x68_c01162{left:742.737576px;}
.x82_c01162{left:745.633452px;}
.xd3_c01162{left:747.060762px;}
.x41_c01162{left:749.209452px;}
.xb3_c01162{left:752.329124px;}
.xe_c01162{left:757.881000px;}
.x23_c01162{left:759.477864px;}
.x7b_c01162{left:766.200552px;}
.x83_c01162{left:767.568036px;}
.x2e_c01162{left:771.611076px;}
.x69_c01162{left:776.205696px;}
.xca_c01162{left:777.821823px;}
.xd4_c01162{left:780.260469px;}
.x42_c01162{left:783.522936px;}
.x55_c01162{left:784.583064px;}
.x5f_c01162{left:785.656908px;}
.xf_c01162{left:792.109500px;}
.x84_c01162{left:799.946376px;}
.x17_c01162{left:802.623036px;}
.x72_c01162{left:811.771248px;}
.xcd_c01162{left:813.496215px;}
.xad_c01162{left:817.890849px;}
.xcb_c01162{left:824.040240px;}
.xd5_c01162{left:825.601668px;}
.xe3_c01162{left:828.106500px;}
@media print{
.v0_c01162{vertical-align:0.000000pt;}
.ls0_c01162{letter-spacing:0.000000pt;}
.ws0_c01162{word-spacing:0.000000pt;}
.fsb_c01162{font-size:21.335733pt;}
.fs0_c01162{font-size:58.666667pt;}
.fs3_c01162{font-size:58.683560pt;}
.fs9_c01162{font-size:64.006272pt;}
.fs5_c01162{font-size:64.009247pt;}
.fs1_c01162{font-size:64.018429pt;}
.fs8_c01162{font-size:69.340128pt;}
.fs4_c01162{font-size:69.343351pt;}
.fs2_c01162{font-size:69.353298pt;}
.fsa_c01162{font-size:74.675066pt;}
.fsc_c01162{font-size:74.684734pt;}
.fs7_c01162{font-size:80.007840pt;}
.fs6_c01162{font-size:90.679767pt;}
.y0_c01162{bottom:0.000000pt;}
.y151_c01162{bottom:41.286667pt;}
.y152_c01162{bottom:42.354019pt;}
.y153_c01162{bottom:43.844123pt;}
.y154_c01162{bottom:45.400872pt;}
.y155_c01162{bottom:46.008160pt;}
.y156_c01162{bottom:46.673293pt;}
.y157_c01162{bottom:47.090325pt;}
.y158_c01162{bottom:47.750853pt;}
.y159_c01162{bottom:49.054925pt;}
.y15a_c01162{bottom:50.158651pt;}
.y14f_c01162{bottom:72.691960pt;}
.y144_c01162{bottom:88.802667pt;}
.y150_c01162{bottom:89.930820pt;}
.y145_c01162{bottom:90.409327pt;}
.y146_c01162{bottom:91.460507pt;}
.y147_c01162{bottom:93.076127pt;}
.y148_c01162{bottom:93.645727pt;}
.y149_c01162{bottom:94.106527pt;}
.y14a_c01162{bottom:95.557547pt;}
.y14b_c01162{bottom:96.305947pt;}
.y14c_c01162{bottom:96.756007pt;}
.y14d_c01162{bottom:97.195107pt;}
.y14e_c01162{bottom:98.098447pt;}
.y138_c01162{bottom:124.304904pt;}
.y139_c01162{bottom:125.079629pt;}
.y13a_c01162{bottom:125.464064pt;}
.y13b_c01162{bottom:125.756688pt;}
.y13c_c01162{bottom:126.152851pt;}
.y13d_c01162{bottom:126.740973pt;}
.y13e_c01162{bottom:126.932869pt;}
.y13f_c01162{bottom:127.424504pt;}
.y140_c01162{bottom:127.719192pt;}
.y141_c01162{bottom:128.696027pt;}
.y142_c01162{bottom:129.391611pt;}
.y143_c01162{bottom:129.679501pt;}
.y12d_c01162{bottom:153.110989pt;}
.y12e_c01162{bottom:153.722885pt;}
.y12f_c01162{bottom:155.638304pt;}
.y130_c01162{bottom:156.229104pt;}
.y131_c01162{bottom:156.815267pt;}
.y132_c01162{bottom:158.802680pt;}
.y133_c01162{bottom:161.536723pt;}
.y134_c01162{bottom:162.333971pt;}
.y135_c01162{bottom:164.089128pt;}
.y136_c01162{bottom:164.679648pt;}
.y137_c01162{bottom:165.485275pt;}
.y120_c01162{bottom:183.832368pt;}
.y121_c01162{bottom:185.241117pt;}
.y122_c01162{bottom:186.109941pt;}
.y123_c01162{bottom:186.642784pt;}
.y124_c01162{bottom:186.992296pt;}
.y125_c01162{bottom:187.545211pt;}
.y126_c01162{bottom:189.471696pt;}
.y127_c01162{bottom:189.999061pt;}
.y128_c01162{bottom:190.888611pt;}
.y129_c01162{bottom:191.606819pt;}
.y12a_c01162{bottom:192.673083pt;}
.y12b_c01162{bottom:193.196296pt;}
.y12c_c01162{bottom:194.797736pt;}
.y113_c01162{bottom:219.114659pt;}
.y114_c01162{bottom:219.816584pt;}
.y115_c01162{bottom:221.012357pt;}
.y116_c01162{bottom:221.552525pt;}
.y117_c01162{bottom:222.062749pt;}
.y118_c01162{bottom:223.488752pt;}
.y119_c01162{bottom:224.744525pt;}
.y11a_c01162{bottom:225.604560pt;}
.y11b_c01162{bottom:226.667213pt;}
.y11c_c01162{bottom:227.189157pt;}
.y11d_c01162{bottom:228.076205pt;}
.y11e_c01162{bottom:229.496675pt;}
.y11f_c01162{bottom:230.235869pt;}
.y105_c01162{bottom:248.639813pt;}
.y106_c01162{bottom:249.170320pt;}
.y107_c01162{bottom:250.483595pt;}
.y108_c01162{bottom:251.045173pt;}
.y109_c01162{bottom:251.587867pt;}
.y10a_c01162{bottom:252.728016pt;}
.y10b_c01162{bottom:253.275328pt;}
.y10c_c01162{bottom:254.953029pt;}
.y10d_c01162{bottom:255.522400pt;}
.y10e_c01162{bottom:256.065597pt;}
.y10f_c01162{bottom:256.994515pt;}
.y110_c01162{bottom:257.555963pt;}
.y111_c01162{bottom:259.437917pt;}
.y112_c01162{bottom:259.998675pt;}
.yfb_c01162{bottom:284.162667pt;}
.yfc_c01162{bottom:285.274005pt;}
.yfd_c01162{bottom:285.553557pt;}
.yfe_c01162{bottom:286.638259pt;}
.yff_c01162{bottom:287.059061pt;}
.y100_c01162{bottom:287.747133pt;}
.y101_c01162{bottom:288.033779pt;}
.y102_c01162{bottom:289.256707pt;}
.y103_c01162{bottom:290.362893pt;}
.y104_c01162{bottom:291.336491pt;}
.yf5_c01162{bottom:309.814175pt;}
.yf6_c01162{bottom:312.673028pt;}
.yf7_c01162{bottom:313.994659pt;}
.yf8_c01162{bottom:314.775156pt;}
.yf9_c01162{bottom:319.307964pt;}
.yfa_c01162{bottom:326.075016pt;}
.yea_c01162{bottom:340.295375pt;}
.yeb_c01162{bottom:341.206928pt;}
.yec_c01162{bottom:342.541540pt;}
.yed_c01162{bottom:343.216660pt;}
.yee_c01162{bottom:343.889717pt;}
.yef_c01162{bottom:344.790829pt;}
.yf0_c01162{bottom:346.171011pt;}
.yf1_c01162{bottom:348.859123pt;}
.yf2_c01162{bottom:349.554763pt;}
.yf3_c01162{bottom:351.590609pt;}
.yf4_c01162{bottom:352.727135pt;}
.ydf_c01162{bottom:372.701133pt;}
.ye0_c01162{bottom:374.085308pt;}
.ye1_c01162{bottom:376.182949pt;}
.ye2_c01162{bottom:377.156356pt;}
.ye3_c01162{bottom:379.027757pt;}
.ye4_c01162{bottom:379.701253pt;}
.ye5_c01162{bottom:381.383597pt;}
.ye6_c01162{bottom:382.110017pt;}
.ye7_c01162{bottom:383.993488pt;}
.ye8_c01162{bottom:386.111491pt;}
.ye9_c01162{bottom:386.835195pt;}
.yd3_c01162{bottom:404.867400pt;}
.yd4_c01162{bottom:406.471204pt;}
.yd5_c01162{bottom:406.964837pt;}
.yd6_c01162{bottom:409.767725pt;}
.yd7_c01162{bottom:410.708497pt;}
.yd8_c01162{bottom:412.112149pt;}
.yd9_c01162{bottom:412.821880pt;}
.yda_c01162{bottom:413.518363pt;}
.ydb_c01162{bottom:415.678104pt;}
.ydc_c01162{bottom:417.071927pt;}
.ydd_c01162{bottom:417.757197pt;}
.yde_c01162{bottom:419.910347pt;}
.yca_c01162{bottom:436.549123pt;}
.ycb_c01162{bottom:437.450235pt;}
.ycc_c01162{bottom:439.669537pt;}
.ycd_c01162{bottom:441.479392pt;}
.yce_c01162{bottom:442.633853pt;}
.ycf_c01162{bottom:445.349395pt;}
.yd0_c01162{bottom:447.353147pt;}
.yd1_c01162{bottom:448.053928pt;}
.yd2_c01162{bottom:449.858279pt;}
.ybf_c01162{bottom:468.471061pt;}
.yc0_c01162{bottom:469.145297pt;}
.yc1_c01162{bottom:471.705725pt;}
.yc2_c01162{bottom:472.783265pt;}
.yc3_c01162{bottom:473.442372pt;}
.yc4_c01162{bottom:474.493299pt;}
.yc5_c01162{bottom:475.359843pt;}
.yc6_c01162{bottom:476.875143pt;}
.yc7_c01162{bottom:478.585085pt;}
.yc8_c01162{bottom:480.795753pt;}
.yc9_c01162{bottom:481.235119pt;}
.yb3_c01162{bottom:499.916751pt;}
.yb4_c01162{bottom:500.710113pt;}
.yb5_c01162{bottom:503.032017pt;}
.yb6_c01162{bottom:503.642472pt;}
.yb7_c01162{bottom:504.421536pt;}
.yb8_c01162{bottom:505.011195pt;}
.yb9_c01162{bottom:506.176780pt;}
.yba_c01162{bottom:506.758260pt;}
.ybb_c01162{bottom:507.949379pt;}
.ybc_c01162{bottom:509.339287pt;}
.ybd_c01162{bottom:509.931503pt;}
.ybe_c01162{bottom:511.716719pt;}
.yaa_c01162{bottom:532.559704pt;}
.yab_c01162{bottom:534.134239pt;}
.yac_c01162{bottom:534.888563pt;}
.yad_c01162{bottom:535.876295pt;}
.yae_c01162{bottom:536.665011pt;}
.yaf_c01162{bottom:537.640393pt;}
.yb0_c01162{bottom:539.612525pt;}
.yb1_c01162{bottom:540.391657pt;}
.yb2_c01162{bottom:542.585823pt;}
.ya1_c01162{bottom:568.082667pt;}
.ya2_c01162{bottom:569.274072pt;}
.ya3_c01162{bottom:570.103173pt;}
.ya4_c01162{bottom:571.090669pt;}
.ya5_c01162{bottom:572.094553pt;}
.ya6_c01162{bottom:572.927372pt;}
.ya7_c01162{bottom:573.931120pt;}
.ya8_c01162{bottom:574.951120pt;}
.ya9_c01162{bottom:576.794192pt;}
.y98_c01162{bottom:595.088021pt;}
.y99_c01162{bottom:596.049003pt;}
.y9a_c01162{bottom:596.831307pt;}
.y9b_c01162{bottom:599.102485pt;}
.y9c_c01162{bottom:600.893131pt;}
.y9d_c01162{bottom:602.447627pt;}
.y9e_c01162{bottom:603.701899pt;}
.y9f_c01162{bottom:604.975232pt;}
.ya0_c01162{bottom:607.627584pt;}
.y8c_c01162{bottom:626.054325pt;}
.y8d_c01162{bottom:626.662571pt;}
.y8e_c01162{bottom:629.106581pt;}
.y8f_c01162{bottom:629.938699pt;}
.y90_c01162{bottom:631.596341pt;}
.y91_c01162{bottom:633.461355pt;}
.y92_c01162{bottom:634.493515pt;}
.y93_c01162{bottom:635.916480pt;}
.y94_c01162{bottom:636.551541pt;}
.y95_c01162{bottom:637.795168pt;}
.y96_c01162{bottom:638.204405pt;}
.y97_c01162{bottom:638.808427pt;}
.y81_c01162{bottom:658.702603pt;}
.y82_c01162{bottom:659.302699pt;}
.y83_c01162{bottom:660.853856pt;}
.y84_c01162{bottom:661.435936pt;}
.y85_c01162{bottom:663.211093pt;}
.y86_c01162{bottom:663.999584pt;}
.y87_c01162{bottom:664.596725pt;}
.y88_c01162{bottom:666.560533pt;}
.y89_c01162{bottom:668.118869pt;}
.y8a_c01162{bottom:668.715915pt;}
.y8b_c01162{bottom:670.285717pt;}
.y77_c01162{bottom:690.630901pt;}
.y78_c01162{bottom:692.172181pt;}
.y79_c01162{bottom:692.773429pt;}
.y7a_c01162{bottom:694.550091pt;}
.y7b_c01162{bottom:696.888768pt;}
.y7c_c01162{bottom:698.270496pt;}
.y7d_c01162{bottom:698.651616pt;}
.y7e_c01162{bottom:700.630037pt;}
.y7f_c01162{bottom:701.623211pt;}
.y80_c01162{bottom:703.028181pt;}
.y6d_c01162{bottom:722.081877pt;}
.y6e_c01162{bottom:723.560267pt;}
.y6f_c01162{bottom:724.215211pt;}
.y70_c01162{bottom:725.282133pt;}
.y71_c01162{bottom:727.875253pt;}
.y72_c01162{bottom:730.256629pt;}
.y73_c01162{bottom:731.979189pt;}
.y74_c01162{bottom:732.660960pt;}
.y75_c01162{bottom:734.377024pt;}
.y76_c01162{bottom:735.030976pt;}
.y62_c01162{bottom:754.252768pt;}
.y63_c01162{bottom:755.140480pt;}
.y64_c01162{bottom:756.625365pt;}
.y65_c01162{bottom:757.269995pt;}
.y66_c01162{bottom:758.773973pt;}
.y67_c01162{bottom:759.435061pt;}
.y68_c01162{bottom:762.233451pt;}
.y69_c01162{bottom:763.769835pt;}
.y6a_c01162{bottom:764.824683pt;}
.y6b_c01162{bottom:765.934549pt;}
.y6c_c01162{bottom:767.428469pt;}
.y56_c01162{bottom:785.943200pt;}
.y57_c01162{bottom:786.832437pt;}
.y58_c01162{bottom:788.178187pt;}
.y59_c01162{bottom:789.299541pt;}
.y5a_c01162{bottom:789.979424pt;}
.y5b_c01162{bottom:791.326485pt;}
.y5c_c01162{bottom:792.712533pt;}
.y5d_c01162{bottom:793.843424pt;}
.y5e_c01162{bottom:795.428747pt;}
.y5f_c01162{bottom:796.748469pt;}
.y60_c01162{bottom:798.817632pt;}
.y61_c01162{bottom:799.696149pt;}
.y4b_c01162{bottom:817.390443pt;}
.y4c_c01162{bottom:818.500555pt;}
.y4d_c01162{bottom:819.644949pt;}
.y4e_c01162{bottom:821.653163pt;}
.y4f_c01162{bottom:822.101579pt;}
.y50_c01162{bottom:823.221749pt;}
.y51_c01162{bottom:824.828384pt;}
.y52_c01162{bottom:826.842496pt;}
.y53_c01162{bottom:827.546613pt;}
.y54_c01162{bottom:829.338528pt;}
.y55_c01162{bottom:829.810112pt;}
.y3f_c01162{bottom:847.878688pt;}
.y40_c01162{bottom:850.152459pt;}
.y41_c01162{bottom:850.767275pt;}
.y42_c01162{bottom:852.612064pt;}
.y43_c01162{bottom:853.226976pt;}
.y44_c01162{bottom:853.853291pt;}
.y45_c01162{bottom:855.093077pt;}
.y46_c01162{bottom:855.728843pt;}
.y47_c01162{bottom:857.161035pt;}
.y48_c01162{bottom:858.189280pt;}
.y49_c01162{bottom:859.832565pt;}
.y4a_c01162{bottom:860.472533pt;}
.y34_c01162{bottom:878.607360pt;}
.y35_c01162{bottom:879.278891pt;}
.y36_c01162{bottom:881.189269pt;}
.y37_c01162{bottom:881.629141pt;}
.y38_c01162{bottom:882.707840pt;}
.y39_c01162{bottom:885.047904pt;}
.y3a_c01162{bottom:885.740501pt;}
.y3b_c01162{bottom:887.702763pt;}
.y3c_c01162{bottom:888.552949pt;}
.y3d_c01162{bottom:889.415595pt;}
.y3e_c01162{bottom:891.585685pt;}
.y27_c01162{bottom:909.578155pt;}
.y28_c01162{bottom:910.322091pt;}
.y29_c01162{bottom:911.935819pt;}
.y2a_c01162{bottom:913.380203pt;}
.y2b_c01162{bottom:914.291819pt;}
.y2c_c01162{bottom:915.006955pt;}
.y2d_c01162{bottom:916.424107pt;}
.y2e_c01162{bottom:918.069995pt;}
.y2f_c01162{bottom:918.567019pt;}
.y30_c01162{bottom:920.934795pt;}
.y31_c01162{bottom:922.068075pt;}
.y32_c01162{bottom:923.037259pt;}
.y33_c01162{bottom:923.768331pt;}
.y1b_c01162{bottom:941.266347pt;}
.y1c_c01162{bottom:942.105579pt;}
.y1d_c01162{bottom:942.561525pt;}
.y1e_c01162{bottom:943.823787pt;}
.y1f_c01162{bottom:944.506581pt;}
.y20_c01162{bottom:946.205163pt;}
.y21_c01162{bottom:946.628960pt;}
.y22_c01162{bottom:947.521451pt;}
.y23_c01162{bottom:949.253813pt;}
.y24_c01162{bottom:951.186485pt;}
.y25_c01162{bottom:953.356448pt;}
.y26_c01162{bottom:954.016384pt;}
.ye_c01162{bottom:972.236011pt;}
.yf_c01162{bottom:972.898901pt;}
.y10_c01162{bottom:974.274997pt;}
.y11_c01162{bottom:976.307029pt;}
.y12_c01162{bottom:978.325429pt;}
.y13_c01162{bottom:978.756331pt;}
.y14_c01162{bottom:979.431925pt;}
.y15_c01162{bottom:981.059083pt;}
.y16_c01162{bottom:981.969227pt;}
.y17_c01162{bottom:982.622987pt;}
.y18_c01162{bottom:984.702336pt;}
.y19_c01162{bottom:985.586869pt;}
.y1a_c01162{bottom:986.485643pt;}
.y2_c01162{bottom:1003.453333pt;}
.y3_c01162{bottom:1004.155957pt;}
.y4_c01162{bottom:1005.579221pt;}
.y5_c01162{bottom:1006.968085pt;}
.y6_c01162{bottom:1007.683349pt;}
.y7_c01162{bottom:1009.790901pt;}
.y8_c01162{bottom:1010.523317pt;}
.y9_c01162{bottom:1012.862037pt;}
.ya_c01162{bottom:1013.606261pt;}
.yb_c01162{bottom:1015.938677pt;}
.yc_c01162{bottom:1017.384149pt;}
.yd_c01162{bottom:1018.114357pt;}
.y1_c01162{bottom:1063.441333pt;}
.hd_c01162{height:21.335733pt;}
.h2_c01162{height:58.666667pt;}
.h5_c01162{height:58.683560pt;}
.hb_c01162{height:64.006272pt;}
.h7_c01162{height:64.009247pt;}
.h3_c01162{height:64.018429pt;}
.ha_c01162{height:69.340128pt;}
.h6_c01162{height:69.343351pt;}
.h4_c01162{height:69.353298pt;}
.hc_c01162{height:74.675066pt;}
.he_c01162{height:74.684734pt;}
.h9_c01162{height:80.007840pt;}
.h8_c01162{height:90.679767pt;}
.h1_c01162{height:1118.666667pt;}
.h0_c01162{height:1118.880000pt;}
.w0_c01162{width:803.733333pt;}
.w1_c01162{width:804.000000pt;}
.x0_c01162{left:0.000000pt;}
.x4_c01162{left:93.221333pt;}
.x24_c01162{left:94.619179pt;}
.x18_c01162{left:95.534293pt;}
.x38_c01162{left:96.733664pt;}
.x43_c01162{left:98.678080pt;}
.xa5_c01162{left:100.248661pt;}
.x60_c01162{left:101.331029pt;}
.x7c_c01162{left:103.654368pt;}
.x8d_c01162{left:105.392005pt;}
.x9b_c01162{left:106.286789pt;}
.xa1_c01162{left:107.813747pt;}
.xae_c01162{left:109.998147pt;}
.xb8_c01162{left:111.991492pt;}
.xc2_c01162{left:114.618803pt;}
.xd6_c01162{left:116.487579pt;}
.xe4_c01162{left:117.446667pt;}
.x5_c01162{left:122.497333pt;}
.x25_c01162{left:125.616512pt;}
.x2f_c01162{left:126.561664pt;}
.x73_c01162{left:131.999851pt;}
.x19_c01162{left:133.670784pt;}
.x9c_c01162{left:136.925516pt;}
.x4c_c01162{left:138.072395pt;}
.x56_c01162{left:139.724181pt;}
.x85_c01162{left:141.451840pt;}
.x93_c01162{left:145.772959pt;}
.x44_c01162{left:146.933899pt;}
.xb4_c01162{left:149.395443pt;}
.x1a_c01162{left:154.391776pt;}
.xe5_c01162{left:165.962667pt;}
.xa6_c01162{left:167.052705pt;}
.x61_c01162{left:168.544928pt;}
.x86_c01162{left:171.546400pt;}
.x6a_c01162{left:178.855744pt;}
.x6_c01162{left:181.800000pt;}
.x8e_c01162{left:184.125327pt;}
.xa7_c01162{left:187.616924pt;}
.x26_c01162{left:192.855179pt;}
.xd7_c01162{left:194.019928pt;}
.x45_c01162{left:196.673749pt;}
.x62_c01162{left:198.335701pt;}
.x89_c01162{left:201.304000pt;}
.x39_c01162{left:205.037472pt;}
.x57_c01162{left:207.208747pt;}
.x6b_c01162{left:208.910624pt;}
.x1b_c01162{left:211.766528pt;}
.x30_c01162{left:213.387157pt;}
.xb9_c01162{left:217.866828pt;}
.xc3_c01162{left:220.067571pt;}
.x8f_c01162{left:221.828733pt;}
.xde_c01162{left:223.486667pt;}
.xd8_c01162{left:232.434075pt;}
.x31_c01162{left:233.382784pt;}
.x3a_c01162{left:234.323584pt;}
.x58_c01162{left:236.514155pt;}
.x74_c01162{left:238.672757pt;}
.x7_c01162{left:239.669333pt;}
.xce_c01162{left:241.506829pt;}
.x1c_c01162{left:242.773333pt;}
.x4d_c01162{left:245.370987pt;}
.x63_c01162{left:246.848704pt;}
.x7d_c01162{left:249.008832pt;}
.xc4_c01162{left:250.077891pt;}
.x27_c01162{left:253.037845pt;}
.xaf_c01162{left:255.028875pt;}
.x87_c01162{left:258.896875pt;}
.x94_c01162{left:261.879043pt;}
.xb5_c01162{left:266.018209pt;}
.xbe_c01162{left:267.899637pt;}
.x8_c01162{left:269.472000pt;}
.x10_c01162{left:270.878741pt;}
.x4e_c01162{left:274.922357pt;}
.xc5_c01162{left:278.425637pt;}
.x32_c01162{left:282.386453pt;}
.x46_c01162{left:283.962496pt;}
.xbb_c01162{left:287.680000pt;}
.x7e_c01162{left:288.627680pt;}
.x28_c01162{left:291.021845pt;}
.x95_c01162{left:292.374812pt;}
.xdf_c01162{left:293.565333pt;}
.xb0_c01162{left:295.577380pt;}
.x1_c01162{left:296.640000pt;}
.x6c_c01162{left:297.724469pt;}
.xcf_c01162{left:300.332549pt;}
.xd9_c01162{left:301.351272pt;}
.x9d_c01162{left:302.282129pt;}
.x47_c01162{left:303.480309pt;}
.x59_c01162{left:304.905451pt;}
.xbc_c01162{left:307.648000pt;}
.x90_c01162{left:310.634867pt;}
.x2_c01162{left:316.560000pt;}
.x1d_c01162{left:319.995712pt;}
.x3b_c01162{left:322.140555pt;}
.x75_c01162{left:327.423936pt;}
.x96_c01162{left:331.298151pt;}
.x9e_c01162{left:332.266257pt;}
.x4f_c01162{left:333.495765pt;}
.x5a_c01162{left:334.952224pt;}
.x1e_c01162{left:339.265973pt;}
.xa8_c01162{left:343.578360pt;}
.x3c_c01162{left:351.430667pt;}
.x3_c01162{left:354.240000pt;}
.x9_c01162{left:357.286667pt;}
.x11_c01162{left:358.647520pt;}
.x97_c01162{left:360.805988pt;}
.xe6_c01162{left:362.293333pt;}
.x64_c01162{left:364.734368pt;}
.x76_c01162{left:366.837045pt;}
.xa2_c01162{left:372.378773pt;}
.xb1_c01162{left:373.572109pt;}
.x12_c01162{left:377.379968pt;}
.x1f_c01162{left:379.843925pt;}
.x3d_c01162{left:381.251477pt;}
.xbd_c01162{left:385.126667pt;}
.xa_c01162{left:387.804000pt;}
.x33_c01162{left:388.727541pt;}
.x50_c01162{left:393.749205pt;}
.x77_c01162{left:396.665227pt;}
.xd0_c01162{left:399.710872pt;}
.xa9_c01162{left:402.060735pt;}
.x13_c01162{left:406.752672pt;}
.xe7_c01162{left:411.273333pt;}
.x6d_c01162{left:414.625003pt;}
.x98_c01162{left:419.092352pt;}
.x34_c01162{left:420.198379pt;}
.x48_c01162{left:422.044491pt;}
.xc6_c01162{left:427.401293pt;}
.xda_c01162{left:428.571736pt;}
.xaa_c01162{left:431.649221pt;}
.x88_c01162{left:435.808395pt;}
.x8a_c01162{left:437.297333pt;}
.xe0_c01162{left:439.246667pt;}
.x3e_c01162{left:440.302400pt;}
.x51_c01162{left:442.926389pt;}
.xbf_c01162{left:445.017909pt;}
.x29_c01162{left:448.445845pt;}
.x7f_c01162{left:456.417109pt;}
.x20_c01162{left:458.585035pt;}
.xab_c01162{left:460.693776pt;}
.x5b_c01162{left:462.169003pt;}
.xba_c01162{left:463.566387pt;}
.x2a_c01162{left:469.155179pt;}
.x3f_c01162{left:470.572576pt;}
.xb2_c01162{left:471.747103pt;}
.x65_c01162{left:472.963552pt;}
.xc0_c01162{left:475.018485pt;}
.x14_c01162{left:477.497035pt;}
.xb6_c01162{left:482.078844pt;}
.x6e_c01162{left:483.703627pt;}
.xb_c01162{left:485.250667pt;}
.x8b_c01162{left:486.286667pt;}
.x9f_c01162{left:488.298331pt;}
.xa3_c01162{left:490.457404pt;}
.x78_c01162{left:494.833301pt;}
.x91_c01162{left:496.898680pt;}
.x6f_c01162{left:502.752117pt;}
.x80_c01162{left:505.593995pt;}
.x99_c01162{left:507.750508pt;}
.x35_c01162{left:509.408000pt;}
.x52_c01162{left:511.872053pt;}
.xc_c01162{left:516.260000pt;}
.xe8_c01162{left:520.718667pt;}
.x5c_c01162{left:532.021696pt;}
.xc7_c01162{left:534.253987pt;}
.xd1_c01162{left:536.416725pt;}
.x40_c01162{left:538.752139pt;}
.x49_c01162{left:540.251339pt;}
.x15_c01162{left:545.494667pt;}
.x21_c01162{left:546.450592pt;}
.x36_c01162{left:548.056523pt;}
.x66_c01162{left:551.240629pt;}
.xc1_c01162{left:552.545072pt;}
.xdb_c01162{left:555.782867pt;}
.xc8_c01162{left:563.248363pt;}
.xa0_c01162{left:566.053068pt;}
.x2b_c01162{left:567.812512pt;}
.x53_c01162{left:569.250763pt;}
.x79_c01162{left:572.771456pt;}
.xd2_c01162{left:576.312051pt;}
.x9a_c01162{left:577.270972pt;}
.x5d_c01162{left:579.976000pt;}
.x67_c01162{left:582.204768pt;}
.x37_c01162{left:587.279744pt;}
.x70_c01162{left:601.640256pt;}
.x7a_c01162{left:602.595637pt;}
.x81_c01162{left:603.574368pt;}
.x8c_c01162{left:605.330667pt;}
.x92_c01162{left:606.589081pt;}
.xa4_c01162{left:608.045413pt;}
.xc9_c01162{left:612.510933pt;}
.xd_c01162{left:613.444000pt;}
.x2c_c01162{left:615.032512pt;}
.xe1_c01162{left:616.594667pt;}
.x4a_c01162{left:618.138528pt;}
.xdc_c01162{left:625.376101pt;}
.x5e_c01162{left:630.445099pt;}
.xcc_c01162{left:634.152731pt;}
.x16_c01162{left:635.914176pt;}
.xac_c01162{left:637.310097pt;}
.x4b_c01162{left:638.621675pt;}
.x22_c01162{left:645.092661pt;}
.xe2_c01162{left:646.598667pt;}
.xb7_c01162{left:650.297708pt;}
.x71_c01162{left:651.305024pt;}
.xdd_c01162{left:654.227059pt;}
.x2d_c01162{left:655.415179pt;}
.x54_c01162{left:659.190240pt;}
.x68_c01162{left:660.211179pt;}
.x82_c01162{left:662.785291pt;}
.xd3_c01162{left:664.054011pt;}
.x41_c01162{left:665.963957pt;}
.xb3_c01162{left:668.736999pt;}
.xe_c01162{left:673.672000pt;}
.x23_c01162{left:675.091435pt;}
.x7b_c01162{left:681.067157pt;}
.x83_c01162{left:682.282699pt;}
.x2e_c01162{left:685.876512pt;}
.x69_c01162{left:689.960619pt;}
.xca_c01162{left:691.397176pt;}
.xd4_c01162{left:693.564861pt;}
.x42_c01162{left:696.464832pt;}
.x55_c01162{left:697.407168pt;}
.x5f_c01162{left:698.361696pt;}
.xf_c01162{left:704.097333pt;}
.x84_c01162{left:711.063445pt;}
.x17_c01162{left:713.442699pt;}
.x72_c01162{left:721.574443pt;}
.xcd_c01162{left:723.107747pt;}
.xad_c01162{left:727.014088pt;}
.xcb_c01162{left:732.480213pt;}
.xd5_c01162{left:733.868149pt;}
.xe3_c01162{left:736.094667pt;}
}





/* 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_c01163 {
    display:none;
  }
  .loading-indicator_c01163.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01163 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_c01163 { 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_c01163" -> "#page-container .classname_c01163")
 */
.pf_c01163 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01163 { /* 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_c01163.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01163 { /* 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_c01163 { /* 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_c01163 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01163 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01163 {overflow:visible;}
  }
}
.c_c01163 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01163 { /* 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_c01163:after { /* webkit #35443 */
  content: '';
}
.t_c01163:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01163 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 */
}
.__c01163 { /* 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_c01163 { /* info for Javascript */
  display:none;
}
.l_c01163 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01163 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01163 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01163: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_c01163 {
    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_c01163.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01163.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_c01163 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01163{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01163;src:url('chunks/assets/font_cfe63ee56e9e10a97d33a3db.woff2')format("woff");}.ff1_c01163{font-family:ff1_c01163;line-height:1.000000;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;}
.m9d_c01163{transform:matrix(0.014065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.014065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.014065,0.000000,0.000000,0.250000,0,0);}
.m6a_c01163{transform:matrix(0.041403,-0.000373,0.002250,0.249990,0,0);-ms-transform:matrix(0.041403,-0.000373,0.002250,0.249990,0,0);-webkit-transform:matrix(0.041403,-0.000373,0.002250,0.249990,0,0);}
.m52_c01163{transform:matrix(0.068407,-0.000616,0.002250,0.249990,0,0);-ms-transform:matrix(0.068407,-0.000616,0.002250,0.249990,0,0);-webkit-transform:matrix(0.068407,-0.000616,0.002250,0.249990,0,0);}
.me_c01163{transform:matrix(0.097756,-0.000880,0.002250,0.249990,0,0);-ms-transform:matrix(0.097756,-0.000880,0.002250,0.249990,0,0);-webkit-transform:matrix(0.097756,-0.000880,0.002250,0.249990,0,0);}
.m6d_c01163{transform:matrix(0.131620,-0.001185,0.002250,0.249990,0,0);-ms-transform:matrix(0.131620,-0.001185,0.002250,0.249990,0,0);-webkit-transform:matrix(0.131620,-0.001185,0.002250,0.249990,0,0);}
.m51_c01163{transform:matrix(0.133085,-0.001198,0.002250,0.249990,0,0);-ms-transform:matrix(0.133085,-0.001198,0.002250,0.249990,0,0);-webkit-transform:matrix(0.133085,-0.001198,0.002250,0.249990,0,0);}
.m2d_c01163{transform:matrix(0.136479,-0.001228,0.002250,0.249990,0,0);-ms-transform:matrix(0.136479,-0.001228,0.002250,0.249990,0,0);-webkit-transform:matrix(0.136479,-0.001228,0.002250,0.249990,0,0);}
.mb_c01163{transform:matrix(0.137524,-0.001238,0.002250,0.249990,0,0);-ms-transform:matrix(0.137524,-0.001238,0.002250,0.249990,0,0);-webkit-transform:matrix(0.137524,-0.001238,0.002250,0.249990,0,0);}
.m71_c01163{transform:matrix(0.145999,-0.001314,0.002250,0.249990,0,0);-ms-transform:matrix(0.145999,-0.001314,0.002250,0.249990,0,0);-webkit-transform:matrix(0.145999,-0.001314,0.002250,0.249990,0,0);}
.m6e_c01163{transform:matrix(0.147124,-0.001324,0.002250,0.249990,0,0);-ms-transform:matrix(0.147124,-0.001324,0.002250,0.249990,0,0);-webkit-transform:matrix(0.147124,-0.001324,0.002250,0.249990,0,0);}
.m29_c01163{transform:matrix(0.149784,-0.001348,0.002250,0.249990,0,0);-ms-transform:matrix(0.149784,-0.001348,0.002250,0.249990,0,0);-webkit-transform:matrix(0.149784,-0.001348,0.002250,0.249990,0,0);}
.m7d_c01163{transform:matrix(0.152954,-0.001377,0.002250,0.249990,0,0);-ms-transform:matrix(0.152954,-0.001377,0.002250,0.249990,0,0);-webkit-transform:matrix(0.152954,-0.001377,0.002250,0.249990,0,0);}
.m70_c01163{transform:matrix(0.153839,-0.001385,0.002250,0.249990,0,0);-ms-transform:matrix(0.153839,-0.001385,0.002250,0.249990,0,0);-webkit-transform:matrix(0.153839,-0.001385,0.002250,0.249990,0,0);}
.m68_c01163{transform:matrix(0.155814,-0.001402,0.002250,0.249990,0,0);-ms-transform:matrix(0.155814,-0.001402,0.002250,0.249990,0,0);-webkit-transform:matrix(0.155814,-0.001402,0.002250,0.249990,0,0);}
.m6f_c01163{transform:matrix(0.155929,-0.001403,0.002250,0.249990,0,0);-ms-transform:matrix(0.155929,-0.001403,0.002250,0.249990,0,0);-webkit-transform:matrix(0.155929,-0.001403,0.002250,0.249990,0,0);}
.m6c_c01163{transform:matrix(0.157814,-0.001420,0.002250,0.249990,0,0);-ms-transform:matrix(0.157814,-0.001420,0.002250,0.249990,0,0);-webkit-transform:matrix(0.157814,-0.001420,0.002250,0.249990,0,0);}
.m93_c01163{transform:matrix(0.160998,-0.001449,0.002250,0.249990,0,0);-ms-transform:matrix(0.160998,-0.001449,0.002250,0.249990,0,0);-webkit-transform:matrix(0.160998,-0.001449,0.002250,0.249990,0,0);}
.m64_c01163{transform:matrix(0.165518,-0.001490,0.002250,0.249990,0,0);-ms-transform:matrix(0.165518,-0.001490,0.002250,0.249990,0,0);-webkit-transform:matrix(0.165518,-0.001490,0.002250,0.249990,0,0);}
.m63_c01163{transform:matrix(0.167393,-0.001507,0.002250,0.249990,0,0);-ms-transform:matrix(0.167393,-0.001507,0.002250,0.249990,0,0);-webkit-transform:matrix(0.167393,-0.001507,0.002250,0.249990,0,0);}
.m72_c01163{transform:matrix(0.168488,-0.001516,0.002250,0.249990,0,0);-ms-transform:matrix(0.168488,-0.001516,0.002250,0.249990,0,0);-webkit-transform:matrix(0.168488,-0.001516,0.002250,0.249990,0,0);}
.m8d_c01163{transform:matrix(0.170798,-0.001537,0.002250,0.249990,0,0);-ms-transform:matrix(0.170798,-0.001537,0.002250,0.249990,0,0);-webkit-transform:matrix(0.170798,-0.001537,0.002250,0.249990,0,0);}
.m8e_c01163{transform:matrix(0.170873,-0.001538,0.002250,0.249990,0,0);-ms-transform:matrix(0.170873,-0.001538,0.002250,0.249990,0,0);-webkit-transform:matrix(0.170873,-0.001538,0.002250,0.249990,0,0);}
.m37_c01163{transform:matrix(0.172738,-0.001555,0.002250,0.249990,0,0);-ms-transform:matrix(0.172738,-0.001555,0.002250,0.249990,0,0);-webkit-transform:matrix(0.172738,-0.001555,0.002250,0.249990,0,0);}
.m95_c01163{transform:matrix(0.175633,-0.001581,0.002250,0.249990,0,0);-ms-transform:matrix(0.175633,-0.001581,0.002250,0.249990,0,0);-webkit-transform:matrix(0.175633,-0.001581,0.002250,0.249990,0,0);}
.m92_c01163{transform:matrix(0.176483,-0.001588,0.002250,0.249990,0,0);-ms-transform:matrix(0.176483,-0.001588,0.002250,0.249990,0,0);-webkit-transform:matrix(0.176483,-0.001588,0.002250,0.249990,0,0);}
.m2c_c01163{transform:matrix(0.178053,-0.001602,0.002250,0.249990,0,0);-ms-transform:matrix(0.178053,-0.001602,0.002250,0.249990,0,0);-webkit-transform:matrix(0.178053,-0.001602,0.002250,0.249990,0,0);}
.m67_c01163{transform:matrix(0.180848,-0.001628,0.002250,0.249990,0,0);-ms-transform:matrix(0.180848,-0.001628,0.002250,0.249990,0,0);-webkit-transform:matrix(0.180848,-0.001628,0.002250,0.249990,0,0);}
.m34_c01163{transform:matrix(0.182243,-0.001640,0.002250,0.249990,0,0);-ms-transform:matrix(0.182243,-0.001640,0.002250,0.249990,0,0);-webkit-transform:matrix(0.182243,-0.001640,0.002250,0.249990,0,0);}
.m39_c01163{transform:matrix(0.184173,-0.001658,0.002250,0.249990,0,0);-ms-transform:matrix(0.184173,-0.001658,0.002250,0.249990,0,0);-webkit-transform:matrix(0.184173,-0.001658,0.002250,0.249990,0,0);}
.m4c_c01163{transform:matrix(0.186377,-0.001677,0.002250,0.249990,0,0);-ms-transform:matrix(0.186377,-0.001677,0.002250,0.249990,0,0);-webkit-transform:matrix(0.186377,-0.001677,0.002250,0.249990,0,0);}
.m90_c01163{transform:matrix(0.187447,-0.001687,0.002250,0.249990,0,0);-ms-transform:matrix(0.187447,-0.001687,0.002250,0.249990,0,0);-webkit-transform:matrix(0.187447,-0.001687,0.002250,0.249990,0,0);}
.m31_c01163{transform:matrix(0.187682,-0.001689,0.002250,0.249990,0,0);-ms-transform:matrix(0.187682,-0.001689,0.002250,0.249990,0,0);-webkit-transform:matrix(0.187682,-0.001689,0.002250,0.249990,0,0);}
.m5a_c01163{transform:matrix(0.189727,-0.001708,0.002250,0.249990,0,0);-ms-transform:matrix(0.189727,-0.001708,0.002250,0.249990,0,0);-webkit-transform:matrix(0.189727,-0.001708,0.002250,0.249990,0,0);}
.m96_c01163{transform:matrix(0.190027,-0.001710,0.002250,0.249990,0,0);-ms-transform:matrix(0.190027,-0.001710,0.002250,0.249990,0,0);-webkit-transform:matrix(0.190027,-0.001710,0.002250,0.249990,0,0);}
.m2f_c01163{transform:matrix(0.192512,-0.001733,0.002250,0.249990,0,0);-ms-transform:matrix(0.192512,-0.001733,0.002250,0.249990,0,0);-webkit-transform:matrix(0.192512,-0.001733,0.002250,0.249990,0,0);}
.m65_c01163{transform:matrix(0.192737,-0.001735,0.002250,0.249990,0,0);-ms-transform:matrix(0.192737,-0.001735,0.002250,0.249990,0,0);-webkit-transform:matrix(0.192737,-0.001735,0.002250,0.249990,0,0);}
.m62_c01163{transform:matrix(0.194002,-0.001746,0.002250,0.249990,0,0);-ms-transform:matrix(0.194002,-0.001746,0.002250,0.249990,0,0);-webkit-transform:matrix(0.194002,-0.001746,0.002250,0.249990,0,0);}
.m5c_c01163{transform:matrix(0.194392,-0.001750,0.002250,0.249990,0,0);-ms-transform:matrix(0.194392,-0.001750,0.002250,0.249990,0,0);-webkit-transform:matrix(0.194392,-0.001750,0.002250,0.249990,0,0);}
.m2b_c01163{transform:matrix(0.196102,-0.001765,0.002250,0.249990,0,0);-ms-transform:matrix(0.196102,-0.001765,0.002250,0.249990,0,0);-webkit-transform:matrix(0.196102,-0.001765,0.002250,0.249990,0,0);}
.m1e_c01163{transform:matrix(0.198267,-0.001784,0.002250,0.249990,0,0);-ms-transform:matrix(0.198267,-0.001784,0.002250,0.249990,0,0);-webkit-transform:matrix(0.198267,-0.001784,0.002250,0.249990,0,0);}
.m32_c01163{transform:matrix(0.198952,-0.001791,0.002250,0.249990,0,0);-ms-transform:matrix(0.198952,-0.001791,0.002250,0.249990,0,0);-webkit-transform:matrix(0.198952,-0.001791,0.002250,0.249990,0,0);}
.m35_c01163{transform:matrix(0.199217,-0.001793,0.002250,0.249990,0,0);-ms-transform:matrix(0.199217,-0.001793,0.002250,0.249990,0,0);-webkit-transform:matrix(0.199217,-0.001793,0.002250,0.249990,0,0);}
.m44_c01163{transform:matrix(0.200447,-0.001804,0.002250,0.249990,0,0);-ms-transform:matrix(0.200447,-0.001804,0.002250,0.249990,0,0);-webkit-transform:matrix(0.200447,-0.001804,0.002250,0.249990,0,0);}
.m27_c01163{transform:matrix(0.200842,-0.001808,0.002250,0.249990,0,0);-ms-transform:matrix(0.200842,-0.001808,0.002250,0.249990,0,0);-webkit-transform:matrix(0.200842,-0.001808,0.002250,0.249990,0,0);}
.m33_c01163{transform:matrix(0.201517,-0.001814,0.002250,0.249990,0,0);-ms-transform:matrix(0.201517,-0.001814,0.002250,0.249990,0,0);-webkit-transform:matrix(0.201517,-0.001814,0.002250,0.249990,0,0);}
.m4b_c01163{transform:matrix(0.201807,-0.001816,0.002250,0.249990,0,0);-ms-transform:matrix(0.201807,-0.001816,0.002250,0.249990,0,0);-webkit-transform:matrix(0.201807,-0.001816,0.002250,0.249990,0,0);}
.ma6_c01163{transform:matrix(0.202070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202070,0.000000,0.000000,0.250000,0,0);}
.m14_c01163{transform:matrix(0.204422,-0.001840,0.002250,0.249990,0,0);-ms-transform:matrix(0.204422,-0.001840,0.002250,0.249990,0,0);-webkit-transform:matrix(0.204422,-0.001840,0.002250,0.249990,0,0);}
.m38_c01163{transform:matrix(0.204937,-0.001844,0.002250,0.249990,0,0);-ms-transform:matrix(0.204937,-0.001844,0.002250,0.249990,0,0);-webkit-transform:matrix(0.204937,-0.001844,0.002250,0.249990,0,0);}
.m59_c01163{transform:matrix(0.204972,-0.001845,0.002250,0.249990,0,0);-ms-transform:matrix(0.204972,-0.001845,0.002250,0.249990,0,0);-webkit-transform:matrix(0.204972,-0.001845,0.002250,0.249990,0,0);}
.m6b_c01163{transform:matrix(0.205102,-0.001846,0.002250,0.249990,0,0);-ms-transform:matrix(0.205102,-0.001846,0.002250,0.249990,0,0);-webkit-transform:matrix(0.205102,-0.001846,0.002250,0.249990,0,0);}
.m69_c01163{transform:matrix(0.205177,-0.001847,0.002250,0.249990,0,0);-ms-transform:matrix(0.205177,-0.001847,0.002250,0.249990,0,0);-webkit-transform:matrix(0.205177,-0.001847,0.002250,0.249990,0,0);}
.m8f_c01163{transform:matrix(0.205652,-0.001851,0.002250,0.249990,0,0);-ms-transform:matrix(0.205652,-0.001851,0.002250,0.249990,0,0);-webkit-transform:matrix(0.205652,-0.001851,0.002250,0.249990,0,0);}
.m66_c01163{transform:matrix(0.206347,-0.001857,0.002250,0.249990,0,0);-ms-transform:matrix(0.206347,-0.001857,0.002250,0.249990,0,0);-webkit-transform:matrix(0.206347,-0.001857,0.002250,0.249990,0,0);}
.m49_c01163{transform:matrix(0.206427,-0.001858,0.002250,0.249990,0,0);-ms-transform:matrix(0.206427,-0.001858,0.002250,0.249990,0,0);-webkit-transform:matrix(0.206427,-0.001858,0.002250,0.249990,0,0);}
.m26_c01163{transform:matrix(0.207282,-0.001866,0.002250,0.249990,0,0);-ms-transform:matrix(0.207282,-0.001866,0.002250,0.249990,0,0);-webkit-transform:matrix(0.207282,-0.001866,0.002250,0.249990,0,0);}
.m47_c01163{transform:matrix(0.207472,-0.001867,0.002250,0.249990,0,0);-ms-transform:matrix(0.207472,-0.001867,0.002250,0.249990,0,0);-webkit-transform:matrix(0.207472,-0.001867,0.002250,0.249990,0,0);}
.m4a_c01163{transform:matrix(0.208647,-0.001878,0.002250,0.249990,0,0);-ms-transform:matrix(0.208647,-0.001878,0.002250,0.249990,0,0);-webkit-transform:matrix(0.208647,-0.001878,0.002250,0.249990,0,0);}
.m19_c01163{transform:matrix(0.208702,-0.001878,0.002250,0.249990,0,0);-ms-transform:matrix(0.208702,-0.001878,0.002250,0.249990,0,0);-webkit-transform:matrix(0.208702,-0.001878,0.002250,0.249990,0,0);}
.m4_c01163{transform:matrix(0.209307,-0.001884,0.002250,0.249990,0,0);-ms-transform:matrix(0.209307,-0.001884,0.002250,0.249990,0,0);-webkit-transform:matrix(0.209307,-0.001884,0.002250,0.249990,0,0);}
.ma4_c01163{transform:matrix(0.209480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209480,0.000000,0.000000,0.250000,0,0);}
.m54_c01163{transform:matrix(0.209966,-0.001890,0.002250,0.249990,0,0);-ms-transform:matrix(0.209966,-0.001890,0.002250,0.249990,0,0);-webkit-transform:matrix(0.209966,-0.001890,0.002250,0.249990,0,0);}
.m20_c01163{transform:matrix(0.210141,-0.001891,0.002250,0.249990,0,0);-ms-transform:matrix(0.210141,-0.001891,0.002250,0.249990,0,0);-webkit-transform:matrix(0.210141,-0.001891,0.002250,0.249990,0,0);}
.m4d_c01163{transform:matrix(0.210536,-0.001895,0.002250,0.249990,0,0);-ms-transform:matrix(0.210536,-0.001895,0.002250,0.249990,0,0);-webkit-transform:matrix(0.210536,-0.001895,0.002250,0.249990,0,0);}
.m2a_c01163{transform:matrix(0.211786,-0.001906,0.002250,0.249990,0,0);-ms-transform:matrix(0.211786,-0.001906,0.002250,0.249990,0,0);-webkit-transform:matrix(0.211786,-0.001906,0.002250,0.249990,0,0);}
.m57_c01163{transform:matrix(0.212121,-0.001909,0.002250,0.249990,0,0);-ms-transform:matrix(0.212121,-0.001909,0.002250,0.249990,0,0);-webkit-transform:matrix(0.212121,-0.001909,0.002250,0.249990,0,0);}
.m3a_c01163{transform:matrix(0.212801,-0.001915,0.002250,0.249990,0,0);-ms-transform:matrix(0.212801,-0.001915,0.002250,0.249990,0,0);-webkit-transform:matrix(0.212801,-0.001915,0.002250,0.249990,0,0);}
.m5d_c01163{transform:matrix(0.213656,-0.001923,0.002250,0.249990,0,0);-ms-transform:matrix(0.213656,-0.001923,0.002250,0.249990,0,0);-webkit-transform:matrix(0.213656,-0.001923,0.002250,0.249990,0,0);}
.m8c_c01163{transform:matrix(0.214091,-0.001927,0.002250,0.249990,0,0);-ms-transform:matrix(0.214091,-0.001927,0.002250,0.249990,0,0);-webkit-transform:matrix(0.214091,-0.001927,0.002250,0.249990,0,0);}
.m8b_c01163{transform:matrix(0.214461,-0.001930,0.002250,0.249990,0,0);-ms-transform:matrix(0.214461,-0.001930,0.002250,0.249990,0,0);-webkit-transform:matrix(0.214461,-0.001930,0.002250,0.249990,0,0);}
.m48_c01163{transform:matrix(0.215406,-0.001939,0.002250,0.249990,0,0);-ms-transform:matrix(0.215406,-0.001939,0.002250,0.249990,0,0);-webkit-transform:matrix(0.215406,-0.001939,0.002250,0.249990,0,0);}
.m85_c01163{transform:matrix(0.215596,-0.001940,0.002250,0.249990,0,0);-ms-transform:matrix(0.215596,-0.001940,0.002250,0.249990,0,0);-webkit-transform:matrix(0.215596,-0.001940,0.002250,0.249990,0,0);}
.m58_c01163{transform:matrix(0.216326,-0.001947,0.002250,0.249990,0,0);-ms-transform:matrix(0.216326,-0.001947,0.002250,0.249990,0,0);-webkit-transform:matrix(0.216326,-0.001947,0.002250,0.249990,0,0);}
.m8a_c01163{transform:matrix(0.216676,-0.001950,0.002250,0.249990,0,0);-ms-transform:matrix(0.216676,-0.001950,0.002250,0.249990,0,0);-webkit-transform:matrix(0.216676,-0.001950,0.002250,0.249990,0,0);}
.m88_c01163{transform:matrix(0.216806,-0.001951,0.002250,0.249990,0,0);-ms-transform:matrix(0.216806,-0.001951,0.002250,0.249990,0,0);-webkit-transform:matrix(0.216806,-0.001951,0.002250,0.249990,0,0);}
.m7c_c01163{transform:matrix(0.216986,-0.001953,0.002250,0.249990,0,0);-ms-transform:matrix(0.216986,-0.001953,0.002250,0.249990,0,0);-webkit-transform:matrix(0.216986,-0.001953,0.002250,0.249990,0,0);}
.ma3_c01163{transform:matrix(0.217950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217950,0.000000,0.000000,0.250000,0,0);}
.m18_c01163{transform:matrix(0.219366,-0.001974,0.002250,0.249990,0,0);-ms-transform:matrix(0.219366,-0.001974,0.002250,0.249990,0,0);-webkit-transform:matrix(0.219366,-0.001974,0.002250,0.249990,0,0);}
.ma5_c01163{transform:matrix(0.219775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219775,0.000000,0.000000,0.250000,0,0);}
.m28_c01163{transform:matrix(0.222386,-0.002001,0.002250,0.249990,0,0);-ms-transform:matrix(0.222386,-0.002001,0.002250,0.249990,0,0);-webkit-transform:matrix(0.222386,-0.002001,0.002250,0.249990,0,0);}
.m55_c01163{transform:matrix(0.223351,-0.002010,0.002250,0.249990,0,0);-ms-transform:matrix(0.223351,-0.002010,0.002250,0.249990,0,0);-webkit-transform:matrix(0.223351,-0.002010,0.002250,0.249990,0,0);}
.m9f_c01163{transform:matrix(0.223405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223405,0.000000,0.000000,0.250000,0,0);}
.m13_c01163{transform:matrix(0.224236,-0.002018,0.002250,0.249990,0,0);-ms-transform:matrix(0.224236,-0.002018,0.002250,0.249990,0,0);-webkit-transform:matrix(0.224236,-0.002018,0.002250,0.249990,0,0);}
.m2e_c01163{transform:matrix(0.225536,-0.002030,0.002250,0.249990,0,0);-ms-transform:matrix(0.225536,-0.002030,0.002250,0.249990,0,0);-webkit-transform:matrix(0.225536,-0.002030,0.002250,0.249990,0,0);}
.m46_c01163{transform:matrix(0.226241,-0.002036,0.002250,0.249990,0,0);-ms-transform:matrix(0.226241,-0.002036,0.002250,0.249990,0,0);-webkit-transform:matrix(0.226241,-0.002036,0.002250,0.249990,0,0);}
.m4f_c01163{transform:matrix(0.228466,-0.002056,0.002250,0.249990,0,0);-ms-transform:matrix(0.228466,-0.002056,0.002250,0.249990,0,0);-webkit-transform:matrix(0.228466,-0.002056,0.002250,0.249990,0,0);}
.m75_c01163{transform:matrix(0.228911,-0.002060,0.002250,0.249990,0,0);-ms-transform:matrix(0.228911,-0.002060,0.002250,0.249990,0,0);-webkit-transform:matrix(0.228911,-0.002060,0.002250,0.249990,0,0);}
.m11_c01163{transform:matrix(0.229101,-0.002062,0.002250,0.249990,0,0);-ms-transform:matrix(0.229101,-0.002062,0.002250,0.249990,0,0);-webkit-transform:matrix(0.229101,-0.002062,0.002250,0.249990,0,0);}
.m5b_c01163{transform:matrix(0.229996,-0.002070,0.002250,0.249990,0,0);-ms-transform:matrix(0.229996,-0.002070,0.002250,0.249990,0,0);-webkit-transform:matrix(0.229996,-0.002070,0.002250,0.249990,0,0);}
.m8_c01163{transform:matrix(0.230241,-0.002072,0.002250,0.249990,0,0);-ms-transform:matrix(0.230241,-0.002072,0.002250,0.249990,0,0);-webkit-transform:matrix(0.230241,-0.002072,0.002250,0.249990,0,0);}
.m9e_c01163{transform:matrix(0.230785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230785,0.000000,0.000000,0.250000,0,0);}
.m24_c01163{transform:matrix(0.231691,-0.002085,0.002250,0.249990,0,0);-ms-transform:matrix(0.231691,-0.002085,0.002250,0.249990,0,0);-webkit-transform:matrix(0.231691,-0.002085,0.002250,0.249990,0,0);}
.m82_c01163{transform:matrix(0.233681,-0.002103,0.002250,0.249990,0,0);-ms-transform:matrix(0.233681,-0.002103,0.002250,0.249990,0,0);-webkit-transform:matrix(0.233681,-0.002103,0.002250,0.249990,0,0);}
.m7f_c01163{transform:matrix(0.238065,-0.002143,0.002250,0.249990,0,0);-ms-transform:matrix(0.238065,-0.002143,0.002250,0.249990,0,0);-webkit-transform:matrix(0.238065,-0.002143,0.002250,0.249990,0,0);}
.m36_c01163{transform:matrix(0.238940,-0.002150,0.002250,0.249990,0,0);-ms-transform:matrix(0.238940,-0.002150,0.002250,0.249990,0,0);-webkit-transform:matrix(0.238940,-0.002150,0.002250,0.249990,0,0);}
.m17_c01163{transform:matrix(0.239160,-0.002152,0.002250,0.249990,0,0);-ms-transform:matrix(0.239160,-0.002152,0.002250,0.249990,0,0);-webkit-transform:matrix(0.239160,-0.002152,0.002250,0.249990,0,0);}
.m3b_c01163{transform:matrix(0.239170,-0.002153,0.002250,0.249990,0,0);-ms-transform:matrix(0.239170,-0.002153,0.002250,0.249990,0,0);-webkit-transform:matrix(0.239170,-0.002153,0.002250,0.249990,0,0);}
.m1c_c01163{transform:matrix(0.239545,-0.002156,0.002250,0.249990,0,0);-ms-transform:matrix(0.239545,-0.002156,0.002250,0.249990,0,0);-webkit-transform:matrix(0.239545,-0.002156,0.002250,0.249990,0,0);}
.m16_c01163{transform:matrix(0.239570,-0.002156,0.002250,0.249990,0,0);-ms-transform:matrix(0.239570,-0.002156,0.002250,0.249990,0,0);-webkit-transform:matrix(0.239570,-0.002156,0.002250,0.249990,0,0);}
.m60_c01163{transform:matrix(0.240405,-0.002164,0.002250,0.249990,0,0);-ms-transform:matrix(0.240405,-0.002164,0.002250,0.249990,0,0);-webkit-transform:matrix(0.240405,-0.002164,0.002250,0.249990,0,0);}
.m23_c01163{transform:matrix(0.241540,-0.002174,0.002250,0.249990,0,0);-ms-transform:matrix(0.241540,-0.002174,0.002250,0.249990,0,0);-webkit-transform:matrix(0.241540,-0.002174,0.002250,0.249990,0,0);}
.m79_c01163{transform:matrix(0.242340,-0.002181,0.002250,0.249990,0,0);-ms-transform:matrix(0.242340,-0.002181,0.002250,0.249990,0,0);-webkit-transform:matrix(0.242340,-0.002181,0.002250,0.249990,0,0);}
.m99_c01163{transform:matrix(0.244445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244445,0.000000,0.000000,0.250000,0,0);}
.m12_c01163{transform:matrix(0.244825,-0.002203,0.002250,0.249990,0,0);-ms-transform:matrix(0.244825,-0.002203,0.002250,0.249990,0,0);-webkit-transform:matrix(0.244825,-0.002203,0.002250,0.249990,0,0);}
.m1f_c01163{transform:matrix(0.244920,-0.002204,0.002250,0.249990,0,0);-ms-transform:matrix(0.244920,-0.002204,0.002250,0.249990,0,0);-webkit-transform:matrix(0.244920,-0.002204,0.002250,0.249990,0,0);}
.m84_c01163{transform:matrix(0.246360,-0.002217,0.002250,0.249990,0,0);-ms-transform:matrix(0.246360,-0.002217,0.002250,0.249990,0,0);-webkit-transform:matrix(0.246360,-0.002217,0.002250,0.249990,0,0);}
.m3e_c01163{transform:matrix(0.249330,-0.002244,0.002250,0.249990,0,0);-ms-transform:matrix(0.249330,-0.002244,0.002250,0.249990,0,0);-webkit-transform:matrix(0.249330,-0.002244,0.002250,0.249990,0,0);}
.m87_c01163{transform:matrix(0.250305,-0.002253,0.002250,0.249990,0,0);-ms-transform:matrix(0.250305,-0.002253,0.002250,0.249990,0,0);-webkit-transform:matrix(0.250305,-0.002253,0.002250,0.249990,0,0);}
.m1d_c01163{transform:matrix(0.250360,-0.002253,0.002250,0.249990,0,0);-ms-transform:matrix(0.250360,-0.002253,0.002250,0.249990,0,0);-webkit-transform:matrix(0.250360,-0.002253,0.002250,0.249990,0,0);}
.m81_c01163{transform:matrix(0.250555,-0.002255,0.002250,0.249990,0,0);-ms-transform:matrix(0.250555,-0.002255,0.002250,0.249990,0,0);-webkit-transform:matrix(0.250555,-0.002255,0.002250,0.249990,0,0);}
.m40_c01163{transform:matrix(0.251885,-0.002267,0.002250,0.249990,0,0);-ms-transform:matrix(0.251885,-0.002267,0.002250,0.249990,0,0);-webkit-transform:matrix(0.251885,-0.002267,0.002250,0.249990,0,0);}
.m10_c01163{transform:matrix(0.252585,-0.002273,0.002250,0.249990,0,0);-ms-transform:matrix(0.252585,-0.002273,0.002250,0.249990,0,0);-webkit-transform:matrix(0.252585,-0.002273,0.002250,0.249990,0,0);}
.m4e_c01163{transform:matrix(0.253010,-0.002277,0.002250,0.249990,0,0);-ms-transform:matrix(0.253010,-0.002277,0.002250,0.249990,0,0);-webkit-transform:matrix(0.253010,-0.002277,0.002250,0.249990,0,0);}
.m1b_c01163{transform:matrix(0.253115,-0.002278,0.002250,0.249990,0,0);-ms-transform:matrix(0.253115,-0.002278,0.002250,0.249990,0,0);-webkit-transform:matrix(0.253115,-0.002278,0.002250,0.249990,0,0);}
.m86_c01163{transform:matrix(0.253675,-0.002283,0.002250,0.249990,0,0);-ms-transform:matrix(0.253675,-0.002283,0.002250,0.249990,0,0);-webkit-transform:matrix(0.253675,-0.002283,0.002250,0.249990,0,0);}
.m25_c01163{transform:matrix(0.255900,-0.002303,0.002250,0.249990,0,0);-ms-transform:matrix(0.255900,-0.002303,0.002250,0.249990,0,0);-webkit-transform:matrix(0.255900,-0.002303,0.002250,0.249990,0,0);}
.m22_c01163{transform:matrix(0.256250,-0.002306,0.002250,0.249990,0,0);-ms-transform:matrix(0.256250,-0.002306,0.002250,0.249990,0,0);-webkit-transform:matrix(0.256250,-0.002306,0.002250,0.249990,0,0);}
.m43_c01163{transform:matrix(0.257085,-0.002314,0.002250,0.249990,0,0);-ms-transform:matrix(0.257085,-0.002314,0.002250,0.249990,0,0);-webkit-transform:matrix(0.257085,-0.002314,0.002250,0.249990,0,0);}
.m5e_c01163{transform:matrix(0.258555,-0.002327,0.002250,0.249990,0,0);-ms-transform:matrix(0.258555,-0.002327,0.002250,0.249990,0,0);-webkit-transform:matrix(0.258555,-0.002327,0.002250,0.249990,0,0);}
.m61_c01163{transform:matrix(0.259245,-0.002333,0.002250,0.249990,0,0);-ms-transform:matrix(0.259245,-0.002333,0.002250,0.249990,0,0);-webkit-transform:matrix(0.259245,-0.002333,0.002250,0.249990,0,0);}
.m3d_c01163{transform:matrix(0.259519,-0.002336,0.002250,0.249990,0,0);-ms-transform:matrix(0.259519,-0.002336,0.002250,0.249990,0,0);-webkit-transform:matrix(0.259519,-0.002336,0.002250,0.249990,0,0);}
.m15_c01163{transform:matrix(0.261919,-0.002357,0.002250,0.249990,0,0);-ms-transform:matrix(0.261919,-0.002357,0.002250,0.249990,0,0);-webkit-transform:matrix(0.261919,-0.002357,0.002250,0.249990,0,0);}
.m76_c01163{transform:matrix(0.263109,-0.002368,0.002250,0.249990,0,0);-ms-transform:matrix(0.263109,-0.002368,0.002250,0.249990,0,0);-webkit-transform:matrix(0.263109,-0.002368,0.002250,0.249990,0,0);}
.m77_c01163{transform:matrix(0.263319,-0.002370,0.002250,0.249990,0,0);-ms-transform:matrix(0.263319,-0.002370,0.002250,0.249990,0,0);-webkit-transform:matrix(0.263319,-0.002370,0.002250,0.249990,0,0);}
.m1_c01163{transform:matrix(0.268449,-0.002416,0.002250,0.249990,0,0);-ms-transform:matrix(0.268449,-0.002416,0.002250,0.249990,0,0);-webkit-transform:matrix(0.268449,-0.002416,0.002250,0.249990,0,0);}
.m3_c01163{transform:matrix(0.270489,-0.002434,0.002250,0.249990,0,0);-ms-transform:matrix(0.270489,-0.002434,0.002250,0.249990,0,0);-webkit-transform:matrix(0.270489,-0.002434,0.002250,0.249990,0,0);}
.m3c_c01163{transform:matrix(0.272709,-0.002454,0.002250,0.249990,0,0);-ms-transform:matrix(0.272709,-0.002454,0.002250,0.249990,0,0);-webkit-transform:matrix(0.272709,-0.002454,0.002250,0.249990,0,0);}
.m5f_c01163{transform:matrix(0.273344,-0.002460,0.002250,0.249990,0,0);-ms-transform:matrix(0.273344,-0.002460,0.002250,0.249990,0,0);-webkit-transform:matrix(0.273344,-0.002460,0.002250,0.249990,0,0);}
.m5_c01163{transform:matrix(0.275044,-0.002475,0.002250,0.249990,0,0);-ms-transform:matrix(0.275044,-0.002475,0.002250,0.249990,0,0);-webkit-transform:matrix(0.275044,-0.002475,0.002250,0.249990,0,0);}
.m9b_c01163{transform:matrix(0.275805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275805,0.000000,0.000000,0.250000,0,0);}
.m7b_c01163{transform:matrix(0.279144,-0.002512,0.002250,0.249990,0,0);-ms-transform:matrix(0.279144,-0.002512,0.002250,0.249990,0,0);-webkit-transform:matrix(0.279144,-0.002512,0.002250,0.249990,0,0);}
.m9_c01163{transform:matrix(0.279574,-0.002516,0.002250,0.249990,0,0);-ms-transform:matrix(0.279574,-0.002516,0.002250,0.249990,0,0);-webkit-transform:matrix(0.279574,-0.002516,0.002250,0.249990,0,0);}
.m42_c01163{transform:matrix(0.280439,-0.002524,0.002250,0.249990,0,0);-ms-transform:matrix(0.280439,-0.002524,0.002250,0.249990,0,0);-webkit-transform:matrix(0.280439,-0.002524,0.002250,0.249990,0,0);}
.m3f_c01163{transform:matrix(0.281694,-0.002535,0.002250,0.249990,0,0);-ms-transform:matrix(0.281694,-0.002535,0.002250,0.249990,0,0);-webkit-transform:matrix(0.281694,-0.002535,0.002250,0.249990,0,0);}
.m94_c01163{transform:matrix(0.283774,-0.002554,0.002250,0.249990,0,0);-ms-transform:matrix(0.283774,-0.002554,0.002250,0.249990,0,0);-webkit-transform:matrix(0.283774,-0.002554,0.002250,0.249990,0,0);}
.m56_c01163{transform:matrix(0.284278,-0.002559,0.002250,0.249990,0,0);-ms-transform:matrix(0.284278,-0.002559,0.002250,0.249990,0,0);-webkit-transform:matrix(0.284278,-0.002559,0.002250,0.249990,0,0);}
.m9a_c01163{transform:matrix(0.289460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289460,0.000000,0.000000,0.250000,0,0);}
.m21_c01163{transform:matrix(0.290448,-0.002614,0.002250,0.249990,0,0);-ms-transform:matrix(0.290448,-0.002614,0.002250,0.249990,0,0);-webkit-transform:matrix(0.290448,-0.002614,0.002250,0.249990,0,0);}
.m7a_c01163{transform:matrix(0.294083,-0.002647,0.002250,0.249990,0,0);-ms-transform:matrix(0.294083,-0.002647,0.002250,0.249990,0,0);-webkit-transform:matrix(0.294083,-0.002647,0.002250,0.249990,0,0);}
.m2_c01163{transform:matrix(0.295103,-0.002656,0.002250,0.249990,0,0);-ms-transform:matrix(0.295103,-0.002656,0.002250,0.249990,0,0);-webkit-transform:matrix(0.295103,-0.002656,0.002250,0.249990,0,0);}
.ma1_c01163{transform:matrix(0.296065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296065,0.000000,0.000000,0.250000,0,0);}
.m80_c01163{transform:matrix(0.300083,-0.002701,0.002250,0.249990,0,0);-ms-transform:matrix(0.300083,-0.002701,0.002250,0.249990,0,0);-webkit-transform:matrix(0.300083,-0.002701,0.002250,0.249990,0,0);}
.m78_c01163{transform:matrix(0.302203,-0.002720,0.002250,0.249990,0,0);-ms-transform:matrix(0.302203,-0.002720,0.002250,0.249990,0,0);-webkit-transform:matrix(0.302203,-0.002720,0.002250,0.249990,0,0);}
.m50_c01163{transform:matrix(0.305168,-0.002747,0.002250,0.249990,0,0);-ms-transform:matrix(0.305168,-0.002747,0.002250,0.249990,0,0);-webkit-transform:matrix(0.305168,-0.002747,0.002250,0.249990,0,0);}
.m7_c01163{transform:matrix(0.305488,-0.002749,0.002250,0.249990,0,0);-ms-transform:matrix(0.305488,-0.002749,0.002250,0.249990,0,0);-webkit-transform:matrix(0.305488,-0.002749,0.002250,0.249990,0,0);}
.ma_c01163{transform:matrix(0.308667,-0.002778,0.002250,0.249990,0,0);-ms-transform:matrix(0.308667,-0.002778,0.002250,0.249990,0,0);-webkit-transform:matrix(0.308667,-0.002778,0.002250,0.249990,0,0);}
.m91_c01163{transform:matrix(0.312627,-0.002814,0.002250,0.249990,0,0);-ms-transform:matrix(0.312627,-0.002814,0.002250,0.249990,0,0);-webkit-transform:matrix(0.312627,-0.002814,0.002250,0.249990,0,0);}
.m6_c01163{transform:matrix(0.314987,-0.002835,0.002250,0.249990,0,0);-ms-transform:matrix(0.314987,-0.002835,0.002250,0.249990,0,0);-webkit-transform:matrix(0.314987,-0.002835,0.002250,0.249990,0,0);}
.m30_c01163{transform:matrix(0.316552,-0.002849,0.002250,0.249990,0,0);-ms-transform:matrix(0.316552,-0.002849,0.002250,0.249990,0,0);-webkit-transform:matrix(0.316552,-0.002849,0.002250,0.249990,0,0);}
.ma0_c01163{transform:matrix(0.318665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318665,0.000000,0.000000,0.250000,0,0);}
.m74_c01163{transform:matrix(0.318992,-0.002871,0.002250,0.249990,0,0);-ms-transform:matrix(0.318992,-0.002871,0.002250,0.249990,0,0);-webkit-transform:matrix(0.318992,-0.002871,0.002250,0.249990,0,0);}
.ma2_c01163{transform:matrix(0.326755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326755,0.000000,0.000000,0.250000,0,0);}
.m41_c01163{transform:matrix(0.335396,-0.003019,0.002250,0.249990,0,0);-ms-transform:matrix(0.335396,-0.003019,0.002250,0.249990,0,0);-webkit-transform:matrix(0.335396,-0.003019,0.002250,0.249990,0,0);}
.m97_c01163{transform:matrix(0.345105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345105,0.000000,0.000000,0.250000,0,0);}
.mf_c01163{transform:matrix(0.345811,-0.003112,0.002250,0.249990,0,0);-ms-transform:matrix(0.345811,-0.003112,0.002250,0.249990,0,0);-webkit-transform:matrix(0.345811,-0.003112,0.002250,0.249990,0,0);}
.md_c01163{transform:matrix(0.373020,-0.003357,0.002250,0.249990,0,0);-ms-transform:matrix(0.373020,-0.003357,0.002250,0.249990,0,0);-webkit-transform:matrix(0.373020,-0.003357,0.002250,0.249990,0,0);}
.m1a_c01163{transform:matrix(0.379150,-0.003412,0.002250,0.249990,0,0);-ms-transform:matrix(0.379150,-0.003412,0.002250,0.249990,0,0);-webkit-transform:matrix(0.379150,-0.003412,0.002250,0.249990,0,0);}
.m73_c01163{transform:matrix(0.381420,-0.003433,0.002250,0.249990,0,0);-ms-transform:matrix(0.381420,-0.003433,0.002250,0.249990,0,0);-webkit-transform:matrix(0.381420,-0.003433,0.002250,0.249990,0,0);}
.m98_c01163{transform:matrix(0.396095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396095,0.000000,0.000000,0.250000,0,0);}
.m89_c01163{transform:matrix(0.422578,-0.003803,0.002250,0.249990,0,0);-ms-transform:matrix(0.422578,-0.003803,0.002250,0.249990,0,0);-webkit-transform:matrix(0.422578,-0.003803,0.002250,0.249990,0,0);}
.m53_c01163{transform:matrix(0.423063,-0.003808,0.002250,0.249990,0,0);-ms-transform:matrix(0.423063,-0.003808,0.002250,0.249990,0,0);-webkit-transform:matrix(0.423063,-0.003808,0.002250,0.249990,0,0);}
.m83_c01163{transform:matrix(0.438677,-0.003948,0.002250,0.249990,0,0);-ms-transform:matrix(0.438677,-0.003948,0.002250,0.249990,0,0);-webkit-transform:matrix(0.438677,-0.003948,0.002250,0.249990,0,0);}
.m9c_c01163{transform:matrix(0.470420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470420,0.000000,0.000000,0.250000,0,0);}
.m7e_c01163{transform:matrix(0.496240,-0.004466,0.002250,0.249990,0,0);-ms-transform:matrix(0.496240,-0.004466,0.002250,0.249990,0,0);-webkit-transform:matrix(0.496240,-0.004466,0.002250,0.249990,0,0);}
.mc_c01163{transform:matrix(0.601056,-0.005410,0.002250,0.249990,0,0);-ms-transform:matrix(0.601056,-0.005410,0.002250,0.249990,0,0);-webkit-transform:matrix(0.601056,-0.005410,0.002250,0.249990,0,0);}
.m45_c01163{transform:matrix(0.721531,-0.006494,0.002250,0.249990,0,0);-ms-transform:matrix(0.721531,-0.006494,0.002250,0.249990,0,0);-webkit-transform:matrix(0.721531,-0.006494,0.002250,0.249990,0,0);}
.m0_c01163{transform:matrix(1.020389,-0.009183,0.002250,0.249990,0,0);-ms-transform:matrix(1.020389,-0.009183,0.002250,0.249990,0,0);-webkit-transform:matrix(1.020389,-0.009183,0.002250,0.249990,0,0);}
.v0_c01163{vertical-align:0.000000px;}
.ls0_c01163{letter-spacing:0.000000px;}
.sc__c01163{text-shadow:none;}
.sc0_c01163{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__c01163{-webkit-text-stroke:0px transparent;}
.sc0_c01163{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01163{word-spacing:0.000000px;}
.fc0_c01163{color:transparent;}
.fs0_c01163{font-size:72.002916px;}
.fs8_c01163{font-size:78.000000px;}
.fs2_c01163{font-size:78.003159px;}
.fs1_c01163{font-size:84.003402px;}
.fs3_c01163{font-size:90.003645px;}
.fs9_c01163{font-size:96.000000px;}
.fs4_c01163{font-size:96.003888px;}
.fs5_c01163{font-size:108.004374px;}
.fs7_c01163{font-size:114.004617px;}
.fs6_c01163{font-size:132.005346px;}
.y0_c01163{bottom:0.000000px;}
.y9b_c01163{bottom:551.811000px;}
.y9c_c01163{bottom:552.013500px;}
.y9d_c01163{bottom:552.142500px;}
.y9e_c01163{bottom:552.658500px;}
.y9f_c01163{bottom:553.117500px;}
.ya0_c01163{bottom:553.360500px;}
.ya1_c01163{bottom:553.822500px;}
.ya2_c01163{bottom:554.047500px;}
.ya3_c01163{bottom:554.361000px;}
.ya4_c01163{bottom:554.587500px;}
.ya5_c01163{bottom:555.525000px;}
.y9a_c01163{bottom:591.018000px;}
.y98_c01163{bottom:623.270785px;}
.y99_c01163{bottom:623.270922px;}
.y97_c01163{bottom:623.271412px;}
.y96_c01163{bottom:623.271726px;}
.y8c_c01163{bottom:656.072168px;}
.y8d_c01163{bottom:656.701695px;}
.y8e_c01163{bottom:657.878148px;}
.y8f_c01163{bottom:658.383801px;}
.y90_c01163{bottom:658.955988px;}
.y91_c01163{bottom:659.641816px;}
.y92_c01163{bottom:660.192861px;}
.y93_c01163{bottom:660.373954px;}
.y94_c01163{bottom:661.348563px;}
.y95_c01163{bottom:661.729071px;}
.y80_c01163{bottom:689.517843px;}
.y81_c01163{bottom:689.947032px;}
.y82_c01163{bottom:690.239613px;}
.y83_c01163{bottom:691.050119px;}
.y84_c01163{bottom:691.499321px;}
.y85_c01163{bottom:692.499276px;}
.y86_c01163{bottom:693.275292px;}
.y87_c01163{bottom:694.542279px;}
.y88_c01163{bottom:695.696101px;}
.y89_c01163{bottom:696.245883px;}
.y8a_c01163{bottom:697.459704px;}
.y8b_c01163{bottom:697.960709px;}
.y75_c01163{bottom:721.404002px;}
.y76_c01163{bottom:722.291027px;}
.y77_c01163{bottom:723.758736px;}
.y78_c01163{bottom:724.497534px;}
.y79_c01163{bottom:726.193082px;}
.y7a_c01163{bottom:728.265842px;}
.y7b_c01163{bottom:728.932755px;}
.y7c_c01163{bottom:729.727676px;}
.y7d_c01163{bottom:731.654816px;}
.y7e_c01163{bottom:732.185523px;}
.y7f_c01163{bottom:733.958048px;}
.y6c_c01163{bottom:761.383004px;}
.y6d_c01163{bottom:762.038469px;}
.y6e_c01163{bottom:762.648574px;}
.y6f_c01163{bottom:763.656593px;}
.y70_c01163{bottom:763.866018px;}
.y71_c01163{bottom:764.541882px;}
.y72_c01163{bottom:765.746501px;}
.y73_c01163{bottom:766.638297px;}
.y74_c01163{bottom:766.942128px;}
.y61_c01163{bottom:797.026181px;}
.y62_c01163{bottom:797.465175px;}
.y63_c01163{bottom:797.670305px;}
.y64_c01163{bottom:798.065737px;}
.y65_c01163{bottom:799.139944px;}
.y66_c01163{bottom:799.529544px;}
.y67_c01163{bottom:800.596392px;}
.y68_c01163{bottom:802.072919px;}
.y69_c01163{bottom:803.644577px;}
.y6a_c01163{bottom:804.306849px;}
.y6b_c01163{bottom:804.689805px;}
.y52_c01163{bottom:833.478423px;}
.y53_c01163{bottom:834.256232px;}
.y54_c01163{bottom:834.759684px;}
.y55_c01163{bottom:834.828182px;}
.y56_c01163{bottom:835.493705px;}
.y57_c01163{bottom:836.114655px;}
.y58_c01163{bottom:836.972480px;}
.y59_c01163{bottom:837.376730px;}
.y5a_c01163{bottom:837.732384px;}
.y5b_c01163{bottom:837.970865px;}
.y5c_c01163{bottom:838.548878px;}
.y5d_c01163{bottom:838.909691px;}
.y5e_c01163{bottom:839.754444px;}
.y5f_c01163{bottom:840.108074px;}
.y60_c01163{bottom:840.979334px;}
.y47_c01163{bottom:866.180284px;}
.y48_c01163{bottom:867.632265px;}
.y49_c01163{bottom:868.919292px;}
.y4a_c01163{bottom:869.768109px;}
.y4b_c01163{bottom:870.768348px;}
.y4c_c01163{bottom:871.504973px;}
.y4d_c01163{bottom:872.386308px;}
.y4e_c01163{bottom:873.224835px;}
.y4f_c01163{bottom:873.649311px;}
.y50_c01163{bottom:874.361871px;}
.y51_c01163{bottom:875.187069px;}
.y3d_c01163{bottom:908.092089px;}
.y3e_c01163{bottom:908.277433px;}
.y3f_c01163{bottom:908.983543px;}
.y40_c01163{bottom:909.252012px;}
.y41_c01163{bottom:910.036764px;}
.y42_c01163{bottom:910.671198px;}
.y43_c01163{bottom:911.098635px;}
.y44_c01163{bottom:911.286450px;}
.y45_c01163{bottom:912.083621px;}
.y46_c01163{bottom:912.526122px;}
.y32_c01163{bottom:937.333866px;}
.y33_c01163{bottom:937.908968px;}
.y34_c01163{bottom:939.070189px;}
.y35_c01163{bottom:939.792783px;}
.y36_c01163{bottom:940.811077px;}
.y37_c01163{bottom:941.235392px;}
.y38_c01163{bottom:942.092892px;}
.y39_c01163{bottom:942.516315px;}
.y3a_c01163{bottom:942.945004px;}
.y3b_c01163{bottom:944.236691px;}
.y3c_c01163{bottom:944.676102px;}
.y27_c01163{bottom:974.601075px;}
.y28_c01163{bottom:975.818262px;}
.y29_c01163{bottom:976.252735px;}
.y2a_c01163{bottom:976.708675px;}
.y2b_c01163{bottom:977.704251px;}
.y2c_c01163{bottom:978.063819px;}
.y2d_c01163{bottom:978.797348px;}
.y2e_c01163{bottom:979.253139px;}
.y2f_c01163{bottom:979.795380px;}
.y30_c01163{bottom:980.009268px;}
.y31_c01163{bottom:981.018102px;}
.y25_c01163{bottom:1014.069306px;}
.y24_c01163{bottom:1014.069693px;}
.y26_c01163{bottom:1014.069759px;}
.y22_c01163{bottom:1014.069960px;}
.y23_c01163{bottom:1014.070186px;}
.y1f_c01163{bottom:1014.070508px;}
.y20_c01163{bottom:1014.070614px;}
.y21_c01163{bottom:1014.070707px;}
.y1c_c01163{bottom:1014.070829px;}
.y1e_c01163{bottom:1014.071118px;}
.y1d_c01163{bottom:1014.071265px;}
.y1b_c01163{bottom:1014.071532px;}
.yf_c01163{bottom:1043.815540px;}
.y10_c01163{bottom:1043.973354px;}
.y11_c01163{bottom:1044.483093px;}
.y12_c01163{bottom:1045.845840px;}
.y13_c01163{bottom:1047.015827px;}
.y14_c01163{bottom:1048.071480px;}
.y15_c01163{bottom:1048.599165px;}
.y16_c01163{bottom:1048.856958px;}
.y17_c01163{bottom:1049.929343px;}
.y18_c01163{bottom:1050.325127px;}
.y19_c01163{bottom:1051.113331px;}
.y1a_c01163{bottom:1051.376432px;}
.y1_c01163{bottom:1081.572000px;}
.y2_c01163{bottom:1082.416277px;}
.y3_c01163{bottom:1082.846629px;}
.y4_c01163{bottom:1083.357564px;}
.y5_c01163{bottom:1083.762618px;}
.y6_c01163{bottom:1084.020563px;}
.y7_c01163{bottom:1084.393433px;}
.y8_c01163{bottom:1085.106449px;}
.y9_c01163{bottom:1085.434404px;}
.ya_c01163{bottom:1085.642480px;}
.yb_c01163{bottom:1086.507573px;}
.yc_c01163{bottom:1087.227258px;}
.yd_c01163{bottom:1087.513917px;}
.ye_c01163{bottom:1088.021544px;}
.h2_c01163{height:72.002916px;}
.ha_c01163{height:78.000000px;}
.h4_c01163{height:78.003159px;}
.h3_c01163{height:84.003402px;}
.h5_c01163{height:90.003645px;}
.hb_c01163{height:96.000000px;}
.h6_c01163{height:96.003888px;}
.h7_c01163{height:108.004374px;}
.h9_c01163{height:114.004617px;}
.h8_c01163{height:132.005346px;}
.h1_c01163{height:1258.500000px;}
.h0_c01163{height:1258.740000px;}
.w0_c01163{width:904.200000px;}
.w1_c01163{width:904.500000px;}
.x0_c01163{left:0.000000px;}
.x1_c01163{left:1.080000px;}
.x3a_c01163{left:13.439870px;}
.x40_c01163{left:28.361871px;}
.x4d_c01163{left:37.608164px;}
.x55_c01163{left:48.576815px;}
.x5c_c01163{left:61.159616px;}
.x2c_c01163{left:66.757358px;}
.x63_c01163{left:70.040787px;}
.x4e_c01163{left:74.217678px;}
.xf_c01163{left:76.430384px;}
.x24_c01163{left:77.723868px;}
.x10_c01163{left:89.631533px;}
.x4f_c01163{left:91.342719px;}
.x2_c01163{left:94.888500px;}
.x41_c01163{left:99.117102px;}
.x64_c01163{left:103.060599px;}
.x5d_c01163{left:107.880417px;}
.x2d_c01163{left:110.989265px;}
.x1a_c01163{left:121.233693px;}
.x3b_c01163{left:125.100347px;}
.x11_c01163{left:132.101385px;}
.x3_c01163{left:142.705500px;}
.x34_c01163{left:144.273791px;}
.x6c_c01163{left:146.828493px;}
.x42_c01163{left:151.166171px;}
.x1b_c01163{left:165.785798px;}
.x35_c01163{left:167.534507px;}
.x7d_c01163{left:183.427500px;}
.x5e_c01163{left:185.118965px;}
.x65_c01163{left:187.956048px;}
.x56_c01163{left:189.195815px;}
.x4_c01163{left:199.476000px;}
.x6d_c01163{left:209.775426px;}
.x43_c01163{left:211.612077px;}
.x50_c01163{left:213.799412px;}
.x66_c01163{left:222.532806px;}
.x1c_c01163{left:224.107523px;}
.x7e_c01163{left:230.773500px;}
.x25_c01163{left:242.906883px;}
.x5_c01163{left:244.482000px;}
.x12_c01163{left:245.681321px;}
.x2e_c01163{left:255.963554px;}
.x44_c01163{left:268.105565px;}
.x6_c01163{left:273.142500px;}
.x26_c01163{left:288.566478px;}
.x67_c01163{left:299.469539px;}
.x57_c01163{left:301.197815px;}
.x7f_c01163{left:304.426500px;}
.x5f_c01163{left:313.256936px;}
.x7_c01163{left:314.572500px;}
.x58_c01163{left:324.467315px;}
.x6e_c01163{left:327.491373px;}
.x1d_c01163{left:332.381798px;}
.x2f_c01163{left:334.271232px;}
.x13_c01163{left:343.177188px;}
.x45_c01163{left:346.084661px;}
.x1e_c01163{left:355.062134px;}
.x68_c01163{left:359.191392px;}
.x30_c01163{left:366.916058px;}
.x80_c01163{left:370.075500px;}
.x6f_c01163{left:378.007914px;}
.x46_c01163{left:382.833999px;}
.x27_c01163{left:388.185087px;}
.x8_c01163{left:393.796500px;}
.x59_c01163{left:399.563315px;}
.x81_c01163{left:404.883000px;}
.x47_c01163{left:415.183919px;}
.x3c_c01163{left:423.057128px;}
.x28_c01163{left:424.136763px;}
.x9_c01163{left:430.236000px;}
.x1f_c01163{left:431.745344px;}
.x31_c01163{left:432.858182px;}
.x70_c01163{left:435.250401px;}
.x48_c01163{left:436.848027px;}
.x76_c01163{left:437.952255px;}
.xa_c01163{left:453.355500px;}
.x69_c01163{left:456.630882px;}
.x51_c01163{left:458.178810px;}
.x79_c01163{left:459.540000px;}
.x32_c01163{left:465.404007px;}
.x36_c01163{left:466.677693px;}
.x82_c01163{left:470.784000px;}
.x14_c01163{left:475.100124px;}
.x49_c01163{left:489.404082px;}
.x3d_c01163{left:490.814184px;}
.x15_c01163{left:496.576544px;}
.x20_c01163{left:498.167730px;}
.x60_c01163{left:499.306196px;}
.x71_c01163{left:503.786280px;}
.x77_c01163{left:513.555384px;}
.x37_c01163{left:520.171179px;}
.x4a_c01163{left:522.160488px;}
.x21_c01163{left:530.028809px;}
.x5a_c01163{left:533.409815px;}
.x29_c01163{left:543.115697px;}
.x6a_c01163{left:545.330183px;}
.x83_c01163{left:547.701000px;}
.xb_c01163{left:549.477000px;}
.x3e_c01163{left:555.314862px;}
.x72_c01163{left:558.846281px;}
.x7a_c01163{left:567.540000px;}
.x78_c01163{left:568.908366px;}
.x22_c01163{left:574.310900px;}
.x73_c01163{left:576.967619px;}
.x84_c01163{left:580.143000px;}
.x16_c01163{left:585.894627px;}
.x3f_c01163{left:587.977688px;}
.x52_c01163{left:589.137273px;}
.x2a_c01163{left:597.364211px;}
.x4b_c01163{left:599.020611px;}
.x61_c01163{left:600.757070px;}
.x17_c01163{left:618.869736px;}
.x7b_c01163{left:622.890000px;}
.xc_c01163{left:629.442000px;}
.x33_c01163{left:631.541027px;}
.x23_c01163{left:641.273327px;}
.x38_c01163{left:643.281786px;}
.x53_c01163{left:644.388288px;}
.xd_c01163{left:661.293000px;}
.x7c_c01163{left:664.740000px;}
.x5b_c01163{left:666.257315px;}
.x74_c01163{left:674.423241px;}
.x54_c01163{left:676.271424px;}
.x6b_c01163{left:680.947796px;}
.x18_c01163{left:684.612968px;}
.x39_c01163{left:698.615786px;}
.x19_c01163{left:706.512374px;}
.x4c_c01163{left:710.284100px;}
.x75_c01163{left:712.534904px;}
.x85_c01163{left:714.036000px;}
.xe_c01163{left:717.696000px;}
.x2b_c01163{left:719.721117px;}
.x62_c01163{left:721.994162px;}
@media print{
.v0_c01163{vertical-align:0.000000pt;}
.ls0_c01163{letter-spacing:0.000000pt;}
.ws0_c01163{word-spacing:0.000000pt;}
.fs0_c01163{font-size:64.002592pt;}
.fs8_c01163{font-size:69.333333pt;}
.fs2_c01163{font-size:69.336141pt;}
.fs1_c01163{font-size:74.669691pt;}
.fs3_c01163{font-size:80.003240pt;}
.fs9_c01163{font-size:85.333333pt;}
.fs4_c01163{font-size:85.336789pt;}
.fs5_c01163{font-size:96.003888pt;}
.fs7_c01163{font-size:101.337437pt;}
.fs6_c01163{font-size:117.338085pt;}
.y0_c01163{bottom:0.000000pt;}
.y9b_c01163{bottom:490.498667pt;}
.y9c_c01163{bottom:490.678667pt;}
.y9d_c01163{bottom:490.793333pt;}
.y9e_c01163{bottom:491.252000pt;}
.y9f_c01163{bottom:491.660000pt;}
.ya0_c01163{bottom:491.876000pt;}
.ya1_c01163{bottom:492.286667pt;}
.ya2_c01163{bottom:492.486667pt;}
.ya3_c01163{bottom:492.765333pt;}
.ya4_c01163{bottom:492.966667pt;}
.ya5_c01163{bottom:493.800000pt;}
.y9a_c01163{bottom:525.349333pt;}
.y98_c01163{bottom:554.018476pt;}
.y99_c01163{bottom:554.018597pt;}
.y97_c01163{bottom:554.019033pt;}
.y96_c01163{bottom:554.019312pt;}
.y8c_c01163{bottom:583.175260pt;}
.y8d_c01163{bottom:583.734840pt;}
.y8e_c01163{bottom:584.780576pt;}
.y8f_c01163{bottom:585.230045pt;}
.y90_c01163{bottom:585.738656pt;}
.y91_c01163{bottom:586.348281pt;}
.y92_c01163{bottom:586.838099pt;}
.y93_c01163{bottom:586.999071pt;}
.y94_c01163{bottom:587.865389pt;}
.y95_c01163{bottom:588.203619pt;}
.y80_c01163{bottom:612.904749pt;}
.y81_c01163{bottom:613.286251pt;}
.y82_c01163{bottom:613.546323pt;}
.y83_c01163{bottom:614.266772pt;}
.y84_c01163{bottom:614.666063pt;}
.y85_c01163{bottom:615.554912pt;}
.y86_c01163{bottom:616.244704pt;}
.y87_c01163{bottom:617.370915pt;}
.y88_c01163{bottom:618.396535pt;}
.y89_c01163{bottom:618.885229pt;}
.y8a_c01163{bottom:619.964181pt;}
.y8b_c01163{bottom:620.409519pt;}
.y75_c01163{bottom:641.248001pt;}
.y76_c01163{bottom:642.036468pt;}
.y77_c01163{bottom:643.341099pt;}
.y78_c01163{bottom:643.997808pt;}
.y79_c01163{bottom:645.504961pt;}
.y7a_c01163{bottom:647.347415pt;}
.y7b_c01163{bottom:647.940227pt;}
.y7c_c01163{bottom:648.646823pt;}
.y7d_c01163{bottom:650.359836pt;}
.y7e_c01163{bottom:650.831576pt;}
.y7f_c01163{bottom:652.407153pt;}
.y6c_c01163{bottom:676.784892pt;}
.y6d_c01163{bottom:677.367528pt;}
.y6e_c01163{bottom:677.909844pt;}
.y6f_c01163{bottom:678.805860pt;}
.y70_c01163{bottom:678.992016pt;}
.y71_c01163{bottom:679.592784pt;}
.y72_c01163{bottom:680.663556pt;}
.y73_c01163{bottom:681.456264pt;}
.y74_c01163{bottom:681.726336pt;}
.y61_c01163{bottom:708.467716pt;}
.y62_c01163{bottom:708.857933pt;}
.y63_c01163{bottom:709.040271pt;}
.y64_c01163{bottom:709.391767pt;}
.y65_c01163{bottom:710.346617pt;}
.y66_c01163{bottom:710.692928pt;}
.y67_c01163{bottom:711.641237pt;}
.y68_c01163{bottom:712.953705pt;}
.y69_c01163{bottom:714.350735pt;}
.y6a_c01163{bottom:714.939421pt;}
.y6b_c01163{bottom:715.279827pt;}
.y52_c01163{bottom:740.869709pt;}
.y53_c01163{bottom:741.561095pt;}
.y54_c01163{bottom:742.008608pt;}
.y55_c01163{bottom:742.069495pt;}
.y56_c01163{bottom:742.661071pt;}
.y57_c01163{bottom:743.213027pt;}
.y58_c01163{bottom:743.975537pt;}
.y59_c01163{bottom:744.334871pt;}
.y5a_c01163{bottom:744.651008pt;}
.y5b_c01163{bottom:744.862991pt;}
.y5c_c01163{bottom:745.376780pt;}
.y5d_c01163{bottom:745.697503pt;}
.y5e_c01163{bottom:746.448395pt;}
.y5f_c01163{bottom:746.762732pt;}
.y60_c01163{bottom:747.537185pt;}
.y47_c01163{bottom:769.938031pt;}
.y48_c01163{bottom:771.228680pt;}
.y49_c01163{bottom:772.372704pt;}
.y4a_c01163{bottom:773.127208pt;}
.y4b_c01163{bottom:774.016309pt;}
.y4c_c01163{bottom:774.671087pt;}
.y4d_c01163{bottom:775.454496pt;}
.y4e_c01163{bottom:776.199853pt;}
.y4f_c01163{bottom:776.577165pt;}
.y50_c01163{bottom:777.210552pt;}
.y51_c01163{bottom:777.944061pt;}
.y3d_c01163{bottom:807.192968pt;}
.y3e_c01163{bottom:807.357719pt;}
.y3f_c01163{bottom:807.985372pt;}
.y40_c01163{bottom:808.224011pt;}
.y41_c01163{bottom:808.921568pt;}
.y42_c01163{bottom:809.485509pt;}
.y43_c01163{bottom:809.865453pt;}
.y44_c01163{bottom:810.032400pt;}
.y45_c01163{bottom:810.740996pt;}
.y46_c01163{bottom:811.134331pt;}
.y32_c01163{bottom:833.185659pt;}
.y33_c01163{bottom:833.696860pt;}
.y34_c01163{bottom:834.729057pt;}
.y35_c01163{bottom:835.371363pt;}
.y36_c01163{bottom:836.276513pt;}
.y37_c01163{bottom:836.653681pt;}
.y38_c01163{bottom:837.415904pt;}
.y39_c01163{bottom:837.792280pt;}
.y3a_c01163{bottom:838.173337pt;}
.y3b_c01163{bottom:839.321503pt;}
.y3c_c01163{bottom:839.712091pt;}
.y27_c01163{bottom:866.312067pt;}
.y28_c01163{bottom:867.394011pt;}
.y29_c01163{bottom:867.780209pt;}
.y2a_c01163{bottom:868.185489pt;}
.y2b_c01163{bottom:869.070445pt;}
.y2c_c01163{bottom:869.390061pt;}
.y2d_c01163{bottom:870.042087pt;}
.y2e_c01163{bottom:870.447235pt;}
.y2f_c01163{bottom:870.929227pt;}
.y30_c01163{bottom:871.119349pt;}
.y31_c01163{bottom:872.016091pt;}
.y25_c01163{bottom:901.394939pt;}
.y24_c01163{bottom:901.395283pt;}
.y26_c01163{bottom:901.395341pt;}
.y22_c01163{bottom:901.395520pt;}
.y23_c01163{bottom:901.395721pt;}
.y1f_c01163{bottom:901.396007pt;}
.y20_c01163{bottom:901.396101pt;}
.y21_c01163{bottom:901.396184pt;}
.y1c_c01163{bottom:901.396292pt;}
.y1e_c01163{bottom:901.396549pt;}
.y1d_c01163{bottom:901.396680pt;}
.y1b_c01163{bottom:901.396917pt;}
.yf_c01163{bottom:927.836036pt;}
.y10_c01163{bottom:927.976315pt;}
.y11_c01163{bottom:928.429416pt;}
.y12_c01163{bottom:929.640747pt;}
.y13_c01163{bottom:930.680735pt;}
.y14_c01163{bottom:931.619093pt;}
.y15_c01163{bottom:932.088147pt;}
.y16_c01163{bottom:932.317296pt;}
.y17_c01163{bottom:933.270527pt;}
.y18_c01163{bottom:933.622335pt;}
.y19_c01163{bottom:934.322961pt;}
.y1a_c01163{bottom:934.556828pt;}
.y1_c01163{bottom:961.397333pt;}
.y2_c01163{bottom:962.147801pt;}
.y3_c01163{bottom:962.530337pt;}
.y4_c01163{bottom:962.984501pt;}
.y5_c01163{bottom:963.344549pt;}
.y6_c01163{bottom:963.573833pt;}
.y7_c01163{bottom:963.905273pt;}
.y8_c01163{bottom:964.539065pt;}
.y9_c01163{bottom:964.830581pt;}
.ya_c01163{bottom:965.015537pt;}
.yb_c01163{bottom:965.784509pt;}
.yc_c01163{bottom:966.424229pt;}
.yd_c01163{bottom:966.679037pt;}
.ye_c01163{bottom:967.130261pt;}
.h2_c01163{height:64.002592pt;}
.ha_c01163{height:69.333333pt;}
.h4_c01163{height:69.336141pt;}
.h3_c01163{height:74.669691pt;}
.h5_c01163{height:80.003240pt;}
.hb_c01163{height:85.333333pt;}
.h6_c01163{height:85.336789pt;}
.h7_c01163{height:96.003888pt;}
.h9_c01163{height:101.337437pt;}
.h8_c01163{height:117.338085pt;}
.h1_c01163{height:1118.666667pt;}
.h0_c01163{height:1118.880000pt;}
.w0_c01163{width:803.733333pt;}
.w1_c01163{width:804.000000pt;}
.x0_c01163{left:0.000000pt;}
.x1_c01163{left:0.960000pt;}
.x3a_c01163{left:11.946551pt;}
.x40_c01163{left:25.210552pt;}
.x4d_c01163{left:33.429479pt;}
.x55_c01163{left:43.179391pt;}
.x5c_c01163{left:54.364103pt;}
.x2c_c01163{left:59.339873pt;}
.x63_c01163{left:62.258477pt;}
.x4e_c01163{left:65.971269pt;}
.xf_c01163{left:67.938119pt;}
.x24_c01163{left:69.087883pt;}
.x10_c01163{left:79.672473pt;}
.x4f_c01163{left:81.193528pt;}
.x2_c01163{left:84.345333pt;}
.x41_c01163{left:88.104091pt;}
.x64_c01163{left:91.609421pt;}
.x5d_c01163{left:95.893704pt;}
.x2d_c01163{left:98.657124pt;}
.x1a_c01163{left:107.763283pt;}
.x3b_c01163{left:111.200308pt;}
.x11_c01163{left:117.423453pt;}
.x3_c01163{left:126.849333pt;}
.x34_c01163{left:128.243369pt;}
.x6c_c01163{left:130.514216pt;}
.x42_c01163{left:134.369929pt;}
.x1b_c01163{left:147.365153pt;}
.x35_c01163{left:148.919561pt;}
.x7d_c01163{left:163.046667pt;}
.x5e_c01163{left:164.550191pt;}
.x65_c01163{left:167.072043pt;}
.x56_c01163{left:168.174057pt;}
.x4_c01163{left:177.312000pt;}
.x6d_c01163{left:186.467045pt;}
.x43_c01163{left:188.099624pt;}
.x50_c01163{left:190.043921pt;}
.x66_c01163{left:197.806939pt;}
.x1c_c01163{left:199.206687pt;}
.x7e_c01163{left:205.132000pt;}
.x25_c01163{left:215.917229pt;}
.x5_c01163{left:217.317333pt;}
.x12_c01163{left:218.383396pt;}
.x2e_c01163{left:227.523159pt;}
.x44_c01163{left:238.316057pt;}
.x6_c01163{left:242.793333pt;}
.x26_c01163{left:256.503536pt;}
.x67_c01163{left:266.195145pt;}
.x57_c01163{left:267.731391pt;}
.x7f_c01163{left:270.601333pt;}
.x5f_c01163{left:278.450609pt;}
.x7_c01163{left:279.620000pt;}
.x58_c01163{left:288.415391pt;}
.x6e_c01163{left:291.103443pt;}
.x1d_c01163{left:295.450487pt;}
.x2f_c01163{left:297.129984pt;}
.x13_c01163{left:305.046389pt;}
.x45_c01163{left:307.630809pt;}
.x1e_c01163{left:315.610785pt;}
.x68_c01163{left:319.281237pt;}
.x30_c01163{left:326.147607pt;}
.x80_c01163{left:328.956000pt;}
.x6f_c01163{left:336.007035pt;}
.x46_c01163{left:340.296888pt;}
.x27_c01163{left:345.053411pt;}
.x8_c01163{left:350.041333pt;}
.x59_c01163{left:355.167391pt;}
.x81_c01163{left:359.896000pt;}
.x47_c01163{left:369.052372pt;}
.x3c_c01163{left:376.050780pt;}
.x28_c01163{left:377.010456pt;}
.x9_c01163{left:382.432000pt;}
.x1f_c01163{left:383.773639pt;}
.x31_c01163{left:384.762828pt;}
.x70_c01163{left:386.889245pt;}
.x48_c01163{left:388.309357pt;}
.x76_c01163{left:389.290893pt;}
.xa_c01163{left:402.982667pt;}
.x69_c01163{left:405.894117pt;}
.x51_c01163{left:407.270053pt;}
.x79_c01163{left:408.480000pt;}
.x32_c01163{left:413.692451pt;}
.x36_c01163{left:414.824616pt;}
.x82_c01163{left:418.474667pt;}
.x14_c01163{left:422.311221pt;}
.x49_c01163{left:435.025851pt;}
.x3d_c01163{left:436.279275pt;}
.x15_c01163{left:441.401372pt;}
.x20_c01163{left:442.815760pt;}
.x60_c01163{left:443.827729pt;}
.x71_c01163{left:447.810027pt;}
.x77_c01163{left:456.493675pt;}
.x37_c01163{left:462.374381pt;}
.x4a_c01163{left:464.142656pt;}
.x21_c01163{left:471.136719pt;}
.x5a_c01163{left:474.142057pt;}
.x29_c01163{left:482.769508pt;}
.x6a_c01163{left:484.737940pt;}
.x83_c01163{left:486.845333pt;}
.xb_c01163{left:488.424000pt;}
.x3e_c01163{left:493.613211pt;}
.x72_c01163{left:496.752249pt;}
.x7a_c01163{left:504.480000pt;}
.x78_c01163{left:505.696325pt;}
.x22_c01163{left:510.498577pt;}
.x73_c01163{left:512.860105pt;}
.x84_c01163{left:515.682667pt;}
.x16_c01163{left:520.795224pt;}
.x3f_c01163{left:522.646833pt;}
.x52_c01163{left:523.677576pt;}
.x2a_c01163{left:530.990409pt;}
.x4b_c01163{left:532.462765pt;}
.x61_c01163{left:534.006284pt;}
.x17_c01163{left:550.106432pt;}
.x7b_c01163{left:553.680000pt;}
.xc_c01163{left:559.504000pt;}
.x33_c01163{left:561.369801pt;}
.x23_c01163{left:570.020735pt;}
.x38_c01163{left:571.806032pt;}
.x53_c01163{left:572.789589pt;}
.xd_c01163{left:587.816000pt;}
.x7c_c01163{left:590.880000pt;}
.x5b_c01163{left:592.228724pt;}
.x74_c01163{left:599.487325pt;}
.x54_c01163{left:601.130155pt;}
.x6b_c01163{left:605.286929pt;}
.x18_c01163{left:608.544860pt;}
.x39_c01163{left:620.991809pt;}
.x19_c01163{left:628.010999pt;}
.x4c_c01163{left:631.363644pt;}
.x75_c01163{left:633.364359pt;}
.x85_c01163{left:634.698667pt;}
.xe_c01163{left:637.952000pt;}
.x2b_c01163{left:639.752104pt;}
.x62_c01163{left:641.772588pt;}
}





/* 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_c01164 {
    display:none;
  }
  .loading-indicator_c01164.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01164 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_c01164 { 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_c01164" -> "#page-container .classname_c01164")
 */
.pf_c01164 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01164 { /* 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_c01164.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01164 { /* 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_c01164 { /* 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_c01164 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01164 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01164 {overflow:visible;}
  }
}
.c_c01164 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01164 { /* 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_c01164:after { /* webkit #35443 */
  content: '';
}
.t_c01164:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01164 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 */
}
.__c01164 { /* 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_c01164 { /* info for Javascript */
  display:none;
}
.l_c01164 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01164 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01164 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01164: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_c01164 {
    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_c01164.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01164.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_c01164 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01164{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01164;src:url('chunks/assets/font_c605e72f209fc835e906f064.woff2')format("woff");}.ff1_c01164{font-family:ff1_c01164;line-height:1.000000;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;}
.m138_c01164{transform:matrix(0.020276,0.000406,-0.004999,0.249950,0,0);-ms-transform:matrix(0.020276,0.000406,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.020276,0.000406,-0.004999,0.249950,0,0);}
.m16f_c01164{transform:matrix(0.104670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.104670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.104670,0.000000,0.000000,0.250000,0,0);}
.m2_c01164{transform:matrix(0.108310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108310,0.000000,0.000000,0.250000,0,0);}
.m181_c01164{transform:matrix(0.148535,0.003862,-0.006498,0.249916,0,0);-ms-transform:matrix(0.148535,0.003862,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.148535,0.003862,-0.006498,0.249916,0,0);}
.m182_c01164{transform:matrix(0.154108,0.004007,-0.006498,0.249916,0,0);-ms-transform:matrix(0.154108,0.004007,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.154108,0.004007,-0.006498,0.249916,0,0);}
.m183_c01164{transform:matrix(0.159131,0.004137,-0.006498,0.249916,0,0);-ms-transform:matrix(0.159131,0.004137,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.159131,0.004137,-0.006498,0.249916,0,0);}
.m0_c01164{transform:matrix(0.168540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168540,0.000000,0.000000,0.250000,0,0);}
.m163_c01164{transform:matrix(0.169581,0.002544,-0.003750,0.249972,0,0);-ms-transform:matrix(0.169581,0.002544,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.169581,0.002544,-0.003750,0.249972,0,0);}
.m170_c01164{transform:matrix(0.177280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177280,0.000000,0.000000,0.250000,0,0);}
.m63_c01164{transform:matrix(0.181922,0.002911,-0.003999,0.249968,0,0);-ms-transform:matrix(0.181922,0.002911,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.181922,0.002911,-0.003999,0.249968,0,0);}
.m13b_c01164{transform:matrix(0.184013,0.003680,-0.004999,0.249950,0,0);-ms-transform:matrix(0.184013,0.003680,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.184013,0.003680,-0.004999,0.249950,0,0);}
.m16c_c01164{transform:matrix(0.184040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184040,0.000000,0.000000,0.250000,0,0);}
.m171_c01164{transform:matrix(0.185130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185130,0.000000,0.000000,0.250000,0,0);}
.m16b_c01164{transform:matrix(0.185630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185630,0.000000,0.000000,0.250000,0,0);}
.m69_c01164{transform:matrix(0.185941,0.002975,-0.003999,0.249968,0,0);-ms-transform:matrix(0.185941,0.002975,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.185941,0.002975,-0.003999,0.249968,0,0);}
.m16a_c01164{transform:matrix(0.187050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187050,0.000000,0.000000,0.250000,0,0);}
.m6a_c01164{transform:matrix(0.187466,0.002999,-0.003999,0.249968,0,0);-ms-transform:matrix(0.187466,0.002999,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.187466,0.002999,-0.003999,0.249968,0,0);}
.m153_c01164{transform:matrix(0.190697,0.003242,-0.004249,0.249964,0,0);-ms-transform:matrix(0.190697,0.003242,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.190697,0.003242,-0.004249,0.249964,0,0);}
.m62_c01164{transform:matrix(0.190831,0.003053,-0.003999,0.249968,0,0);-ms-transform:matrix(0.190831,0.003053,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.190831,0.003053,-0.003999,0.249968,0,0);}
.m14a_c01164{transform:matrix(0.191605,0.004790,-0.006248,0.249922,0,0);-ms-transform:matrix(0.191605,0.004790,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.191605,0.004790,-0.006248,0.249922,0,0);}
.m16d_c01164{transform:matrix(0.193970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193970,0.000000,0.000000,0.250000,0,0);}
.mc_c01164{transform:matrix(0.195850,0.003134,-0.003999,0.249968,0,0);-ms-transform:matrix(0.195850,0.003134,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.195850,0.003134,-0.003999,0.249968,0,0);}
.m66_c01164{transform:matrix(0.196150,0.003138,-0.003999,0.249968,0,0);-ms-transform:matrix(0.196150,0.003138,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.196150,0.003138,-0.003999,0.249968,0,0);}
.m154_c01164{transform:matrix(0.196732,0.003344,-0.004249,0.249964,0,0);-ms-transform:matrix(0.196732,0.003344,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.196732,0.003344,-0.004249,0.249964,0,0);}
.m16e_c01164{transform:matrix(0.197760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197760,0.000000,0.000000,0.250000,0,0);}
.m22_c01164{transform:matrix(0.198890,0.003182,-0.003999,0.249968,0,0);-ms-transform:matrix(0.198890,0.003182,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.198890,0.003182,-0.003999,0.249968,0,0);}
.m65_c01164{transform:matrix(0.199210,0.003187,-0.003999,0.249968,0,0);-ms-transform:matrix(0.199210,0.003187,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.199210,0.003187,-0.003999,0.249968,0,0);}
.m6b_c01164{transform:matrix(0.200119,0.003202,-0.003999,0.249968,0,0);-ms-transform:matrix(0.200119,0.003202,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.200119,0.003202,-0.003999,0.249968,0,0);}
.m176_c01164{transform:matrix(0.200522,0.005214,-0.006498,0.249916,0,0);-ms-transform:matrix(0.200522,0.005214,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.200522,0.005214,-0.006498,0.249916,0,0);}
.m107_c01164{transform:matrix(0.200684,0.003211,-0.003999,0.249968,0,0);-ms-transform:matrix(0.200684,0.003211,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.200684,0.003211,-0.003999,0.249968,0,0);}
.m23_c01164{transform:matrix(0.200689,0.003211,-0.003999,0.249968,0,0);-ms-transform:matrix(0.200689,0.003211,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.200689,0.003211,-0.003999,0.249968,0,0);}
.m178_c01164{transform:matrix(0.200812,0.005221,-0.006498,0.249916,0,0);-ms-transform:matrix(0.200812,0.005221,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.200812,0.005221,-0.006498,0.249916,0,0);}
.m14f_c01164{transform:matrix(0.200817,0.005020,-0.006248,0.249922,0,0);-ms-transform:matrix(0.200817,0.005020,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.200817,0.005020,-0.006248,0.249922,0,0);}
.mf_c01164{transform:matrix(0.203289,0.003253,-0.003999,0.249968,0,0);-ms-transform:matrix(0.203289,0.003253,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.203289,0.003253,-0.003999,0.249968,0,0);}
.m52_c01164{transform:matrix(0.203504,0.003256,-0.003999,0.249968,0,0);-ms-transform:matrix(0.203504,0.003256,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.203504,0.003256,-0.003999,0.249968,0,0);}
.m17c_c01164{transform:matrix(0.203686,0.005296,-0.006498,0.249916,0,0);-ms-transform:matrix(0.203686,0.005296,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.203686,0.005296,-0.006498,0.249916,0,0);}
.m172_c01164{transform:matrix(0.203705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203705,0.000000,0.000000,0.250000,0,0);}
.m180_c01164{transform:matrix(0.203786,0.005298,-0.006498,0.249916,0,0);-ms-transform:matrix(0.203786,0.005298,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.203786,0.005298,-0.006498,0.249916,0,0);}
.m64_c01164{transform:matrix(0.203979,0.003264,-0.003999,0.249968,0,0);-ms-transform:matrix(0.203979,0.003264,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.203979,0.003264,-0.003999,0.249968,0,0);}
.ma8_c01164{transform:matrix(0.204169,0.003267,-0.003999,0.249968,0,0);-ms-transform:matrix(0.204169,0.003267,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.204169,0.003267,-0.003999,0.249968,0,0);}
.m157_c01164{transform:matrix(0.204485,0.003476,-0.004249,0.249964,0,0);-ms-transform:matrix(0.204485,0.003476,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.204485,0.003476,-0.004249,0.249964,0,0);}
.m1e_c01164{transform:matrix(0.205654,0.003290,-0.003999,0.249968,0,0);-ms-transform:matrix(0.205654,0.003290,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.205654,0.003290,-0.003999,0.249968,0,0);}
.m13d_c01164{transform:matrix(0.206364,0.004127,-0.004999,0.249950,0,0);-ms-transform:matrix(0.206364,0.004127,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.206364,0.004127,-0.004999,0.249950,0,0);}
.m21_c01164{transform:matrix(0.206624,0.003306,-0.003999,0.249968,0,0);-ms-transform:matrix(0.206624,0.003306,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.206624,0.003306,-0.003999,0.249968,0,0);}
.m177_c01164{transform:matrix(0.206770,0.005376,-0.006498,0.249916,0,0);-ms-transform:matrix(0.206770,0.005376,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.206770,0.005376,-0.006498,0.249916,0,0);}
.m41_c01164{transform:matrix(0.207408,0.003319,-0.003999,0.249968,0,0);-ms-transform:matrix(0.207408,0.003319,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.207408,0.003319,-0.003999,0.249968,0,0);}
.m1c_c01164{transform:matrix(0.207698,0.003323,-0.003999,0.249968,0,0);-ms-transform:matrix(0.207698,0.003323,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.207698,0.003323,-0.003999,0.249968,0,0);}
.m17b_c01164{transform:matrix(0.207760,0.005402,-0.006498,0.249916,0,0);-ms-transform:matrix(0.207760,0.005402,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.207760,0.005402,-0.006498,0.249916,0,0);}
.m165_c01164{transform:matrix(0.207902,0.003119,-0.003750,0.249972,0,0);-ms-transform:matrix(0.207902,0.003119,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.207902,0.003119,-0.003750,0.249972,0,0);}
.maf_c01164{transform:matrix(0.208448,0.003335,-0.003999,0.249968,0,0);-ms-transform:matrix(0.208448,0.003335,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.208448,0.003335,-0.003999,0.249968,0,0);}
.m17a_c01164{transform:matrix(0.208839,0.005430,-0.006498,0.249916,0,0);-ms-transform:matrix(0.208839,0.005430,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.208839,0.005430,-0.006498,0.249916,0,0);}
.m15b_c01164{transform:matrix(0.209190,0.003556,-0.004249,0.249964,0,0);-ms-transform:matrix(0.209190,0.003556,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.209190,0.003556,-0.004249,0.249964,0,0);}
.m106_c01164{transform:matrix(0.209273,0.003348,-0.003999,0.249968,0,0);-ms-transform:matrix(0.209273,0.003348,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.209273,0.003348,-0.003999,0.249968,0,0);}
.mdb_c01164{transform:matrix(0.209468,0.003351,-0.003999,0.249968,0,0);-ms-transform:matrix(0.209468,0.003351,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.209468,0.003351,-0.003999,0.249968,0,0);}
.m155_c01164{transform:matrix(0.209775,0.003566,-0.004249,0.249964,0,0);-ms-transform:matrix(0.209775,0.003566,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.209775,0.003566,-0.004249,0.249964,0,0);}
.m1d_c01164{transform:matrix(0.209878,0.003358,-0.003999,0.249968,0,0);-ms-transform:matrix(0.209878,0.003358,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.209878,0.003358,-0.003999,0.249968,0,0);}
.m14d_c01164{transform:matrix(0.210279,0.005257,-0.006248,0.249922,0,0);-ms-transform:matrix(0.210279,0.005257,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.210279,0.005257,-0.006248,0.249922,0,0);}
.m9_c01164{transform:matrix(0.210593,0.003369,-0.003999,0.249968,0,0);-ms-transform:matrix(0.210593,0.003369,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.210593,0.003369,-0.003999,0.249968,0,0);}
.m168_c01164{transform:matrix(0.211371,0.003171,-0.003750,0.249972,0,0);-ms-transform:matrix(0.211371,0.003171,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.211371,0.003171,-0.003750,0.249972,0,0);}
.me0_c01164{transform:matrix(0.211538,0.003385,-0.003999,0.249968,0,0);-ms-transform:matrix(0.211538,0.003385,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.211538,0.003385,-0.003999,0.249968,0,0);}
.m2e_c01164{transform:matrix(0.211603,0.003386,-0.003999,0.249968,0,0);-ms-transform:matrix(0.211603,0.003386,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.211603,0.003386,-0.003999,0.249968,0,0);}
.m15d_c01164{transform:matrix(0.211791,0.003177,-0.003750,0.249972,0,0);-ms-transform:matrix(0.211791,0.003177,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.211791,0.003177,-0.003750,0.249972,0,0);}
.md1_c01164{transform:matrix(0.212103,0.003394,-0.003999,0.249968,0,0);-ms-transform:matrix(0.212103,0.003394,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.212103,0.003394,-0.003999,0.249968,0,0);}
.m46_c01164{transform:matrix(0.212148,0.003394,-0.003999,0.249968,0,0);-ms-transform:matrix(0.212148,0.003394,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.212148,0.003394,-0.003999,0.249968,0,0);}
.m2a_c01164{transform:matrix(0.212593,0.003401,-0.003999,0.249968,0,0);-ms-transform:matrix(0.212593,0.003401,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.212593,0.003401,-0.003999,0.249968,0,0);}
.m10a_c01164{transform:matrix(0.213108,0.003410,-0.003999,0.249968,0,0);-ms-transform:matrix(0.213108,0.003410,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.213108,0.003410,-0.003999,0.249968,0,0);}
.m158_c01164{transform:matrix(0.213329,0.003627,-0.004249,0.249964,0,0);-ms-transform:matrix(0.213329,0.003627,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.213329,0.003627,-0.004249,0.249964,0,0);}
.m24_c01164{transform:matrix(0.213403,0.003414,-0.003999,0.249968,0,0);-ms-transform:matrix(0.213403,0.003414,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.213403,0.003414,-0.003999,0.249968,0,0);}
.mb2_c01164{transform:matrix(0.213778,0.003420,-0.003999,0.249968,0,0);-ms-transform:matrix(0.213778,0.003420,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.213778,0.003420,-0.003999,0.249968,0,0);}
.m175_c01164{transform:matrix(0.213913,0.005562,-0.006498,0.249916,0,0);-ms-transform:matrix(0.213913,0.005562,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.213913,0.005562,-0.006498,0.249916,0,0);}
.m104_c01164{transform:matrix(0.214388,0.003430,-0.003999,0.249968,0,0);-ms-transform:matrix(0.214388,0.003430,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.214388,0.003430,-0.003999,0.249968,0,0);}
.m173_c01164{transform:matrix(0.214398,0.005574,-0.006498,0.249916,0,0);-ms-transform:matrix(0.214398,0.005574,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.214398,0.005574,-0.006498,0.249916,0,0);}
.m6c_c01164{transform:matrix(0.214533,0.003433,-0.003999,0.249968,0,0);-ms-transform:matrix(0.214533,0.003433,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.214533,0.003433,-0.003999,0.249968,0,0);}
.mc4_c01164{transform:matrix(0.214773,0.003436,-0.003999,0.249968,0,0);-ms-transform:matrix(0.214773,0.003436,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.214773,0.003436,-0.003999,0.249968,0,0);}
.m12a_c01164{transform:matrix(0.215017,0.004300,-0.004999,0.249950,0,0);-ms-transform:matrix(0.215017,0.004300,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.215017,0.004300,-0.004999,0.249950,0,0);}
.mf4_c01164{transform:matrix(0.215032,0.003441,-0.003999,0.249968,0,0);-ms-transform:matrix(0.215032,0.003441,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.215032,0.003441,-0.003999,0.249968,0,0);}
.m1f_c01164{transform:matrix(0.215852,0.003454,-0.003999,0.249968,0,0);-ms-transform:matrix(0.215852,0.003454,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.215852,0.003454,-0.003999,0.249968,0,0);}
.m25_c01164{transform:matrix(0.216992,0.003472,-0.003999,0.249968,0,0);-ms-transform:matrix(0.216992,0.003472,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.216992,0.003472,-0.003999,0.249968,0,0);}
.m151_c01164{transform:matrix(0.217132,0.005428,-0.006248,0.249922,0,0);-ms-transform:matrix(0.217132,0.005428,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.217132,0.005428,-0.006248,0.249922,0,0);}
.mfb_c01164{transform:matrix(0.217937,0.003487,-0.003999,0.249968,0,0);-ms-transform:matrix(0.217937,0.003487,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.217937,0.003487,-0.003999,0.249968,0,0);}
.mf1_c01164{transform:matrix(0.217967,0.003487,-0.003999,0.249968,0,0);-ms-transform:matrix(0.217967,0.003487,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.217967,0.003487,-0.003999,0.249968,0,0);}
.m68_c01164{transform:matrix(0.218262,0.003492,-0.003999,0.249968,0,0);-ms-transform:matrix(0.218262,0.003492,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.218262,0.003492,-0.003999,0.249968,0,0);}
.m28_c01164{transform:matrix(0.218912,0.003503,-0.003999,0.249968,0,0);-ms-transform:matrix(0.218912,0.003503,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.218912,0.003503,-0.003999,0.249968,0,0);}
.mb3_c01164{transform:matrix(0.218927,0.003503,-0.003999,0.249968,0,0);-ms-transform:matrix(0.218927,0.003503,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.218927,0.003503,-0.003999,0.249968,0,0);}
.m67_c01164{transform:matrix(0.219137,0.003506,-0.003999,0.249968,0,0);-ms-transform:matrix(0.219137,0.003506,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.219137,0.003506,-0.003999,0.249968,0,0);}
.mb8_c01164{transform:matrix(0.219507,0.003512,-0.003999,0.249968,0,0);-ms-transform:matrix(0.219507,0.003512,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.219507,0.003512,-0.003999,0.249968,0,0);}
.m26_c01164{transform:matrix(0.220492,0.003528,-0.003999,0.249968,0,0);-ms-transform:matrix(0.220492,0.003528,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.220492,0.003528,-0.003999,0.249968,0,0);}
.m161_c01164{transform:matrix(0.220730,0.003311,-0.003750,0.249972,0,0);-ms-transform:matrix(0.220730,0.003311,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.220730,0.003311,-0.003750,0.249972,0,0);}
.m43_c01164{transform:matrix(0.221132,0.003538,-0.003999,0.249968,0,0);-ms-transform:matrix(0.221132,0.003538,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.221132,0.003538,-0.003999,0.249968,0,0);}
.m179_c01164{transform:matrix(0.221160,0.005750,-0.006498,0.249916,0,0);-ms-transform:matrix(0.221160,0.005750,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.221160,0.005750,-0.006498,0.249916,0,0);}
.m139_c01164{transform:matrix(0.221976,0.004440,-0.004999,0.249950,0,0);-ms-transform:matrix(0.221976,0.004440,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.221976,0.004440,-0.004999,0.249950,0,0);}
.m13e_c01164{transform:matrix(0.222081,0.004442,-0.004999,0.249950,0,0);-ms-transform:matrix(0.222081,0.004442,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.222081,0.004442,-0.004999,0.249950,0,0);}
.m114_c01164{transform:matrix(0.222642,0.003562,-0.003999,0.249968,0,0);-ms-transform:matrix(0.222642,0.003562,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.222642,0.003562,-0.003999,0.249968,0,0);}
.m10e_c01164{transform:matrix(0.222706,0.003563,-0.003999,0.249968,0,0);-ms-transform:matrix(0.222706,0.003563,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.222706,0.003563,-0.003999,0.249968,0,0);}
.mb1_c01164{transform:matrix(0.222731,0.003564,-0.003999,0.249968,0,0);-ms-transform:matrix(0.222731,0.003564,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.222731,0.003564,-0.003999,0.249968,0,0);}
.m128_c01164{transform:matrix(0.223335,0.004467,-0.004999,0.249950,0,0);-ms-transform:matrix(0.223335,0.004467,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.223335,0.004467,-0.004999,0.249950,0,0);}
.m100_c01164{transform:matrix(0.223796,0.003581,-0.003999,0.249968,0,0);-ms-transform:matrix(0.223796,0.003581,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.223796,0.003581,-0.003999,0.249968,0,0);}
.m11_c01164{transform:matrix(0.224706,0.003595,-0.003999,0.249968,0,0);-ms-transform:matrix(0.224706,0.003595,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.224706,0.003595,-0.003999,0.249968,0,0);}
.m108_c01164{transform:matrix(0.225031,0.003600,-0.003999,0.249968,0,0);-ms-transform:matrix(0.225031,0.003600,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.225031,0.003600,-0.003999,0.249968,0,0);}
.m15c_c01164{transform:matrix(0.225437,0.003832,-0.004249,0.249964,0,0);-ms-transform:matrix(0.225437,0.003832,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.225437,0.003832,-0.004249,0.249964,0,0);}
.m5_c01164{transform:matrix(0.225476,0.003608,-0.003999,0.249968,0,0);-ms-transform:matrix(0.225476,0.003608,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.225476,0.003608,-0.003999,0.249968,0,0);}
.mb9_c01164{transform:matrix(0.225666,0.003611,-0.003999,0.249968,0,0);-ms-transform:matrix(0.225666,0.003611,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.225666,0.003611,-0.003999,0.249968,0,0);}
.m2f_c01164{transform:matrix(0.225996,0.003616,-0.003999,0.249968,0,0);-ms-transform:matrix(0.225996,0.003616,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.225996,0.003616,-0.003999,0.249968,0,0);}
.mb_c01164{transform:matrix(0.226006,0.003616,-0.003999,0.249968,0,0);-ms-transform:matrix(0.226006,0.003616,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.226006,0.003616,-0.003999,0.249968,0,0);}
.m4f_c01164{transform:matrix(0.226036,0.003617,-0.003999,0.249968,0,0);-ms-transform:matrix(0.226036,0.003617,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.226036,0.003617,-0.003999,0.249968,0,0);}
.mf7_c01164{transform:matrix(0.226326,0.003621,-0.003999,0.249968,0,0);-ms-transform:matrix(0.226326,0.003621,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.226326,0.003621,-0.003999,0.249968,0,0);}
.m10b_c01164{transform:matrix(0.227021,0.003632,-0.003999,0.249968,0,0);-ms-transform:matrix(0.227021,0.003632,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.227021,0.003632,-0.003999,0.249968,0,0);}
.m14e_c01164{transform:matrix(0.227054,0.005676,-0.006248,0.249922,0,0);-ms-transform:matrix(0.227054,0.005676,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.227054,0.005676,-0.006248,0.249922,0,0);}
.m143_c01164{transform:matrix(0.227215,0.004544,-0.004999,0.249950,0,0);-ms-transform:matrix(0.227215,0.004544,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.227215,0.004544,-0.004999,0.249950,0,0);}
.m49_c01164{transform:matrix(0.227236,0.003636,-0.003999,0.249968,0,0);-ms-transform:matrix(0.227236,0.003636,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.227236,0.003636,-0.003999,0.249968,0,0);}
.m8d_c01164{transform:matrix(0.227401,0.003638,-0.003999,0.249968,0,0);-ms-transform:matrix(0.227401,0.003638,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.227401,0.003638,-0.003999,0.249968,0,0);}
.m3_c01164{transform:matrix(0.227521,0.003640,-0.003999,0.249968,0,0);-ms-transform:matrix(0.227521,0.003640,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.227521,0.003640,-0.003999,0.249968,0,0);}
.mb4_c01164{transform:matrix(0.227721,0.003644,-0.003999,0.249968,0,0);-ms-transform:matrix(0.227721,0.003644,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.227721,0.003644,-0.003999,0.249968,0,0);}
.m13c_c01164{transform:matrix(0.228079,0.004562,-0.004999,0.249950,0,0);-ms-transform:matrix(0.228079,0.004562,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.228079,0.004562,-0.004999,0.249950,0,0);}
.m156_c01164{transform:matrix(0.228317,0.003881,-0.004249,0.249964,0,0);-ms-transform:matrix(0.228317,0.003881,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.228317,0.003881,-0.004249,0.249964,0,0);}
.mcb_c01164{transform:matrix(0.228511,0.003656,-0.003999,0.249968,0,0);-ms-transform:matrix(0.228511,0.003656,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.228511,0.003656,-0.003999,0.249968,0,0);}
.mf3_c01164{transform:matrix(0.228566,0.003657,-0.003999,0.249968,0,0);-ms-transform:matrix(0.228566,0.003657,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.228566,0.003657,-0.003999,0.249968,0,0);}
.mdd_c01164{transform:matrix(0.228831,0.003661,-0.003999,0.249968,0,0);-ms-transform:matrix(0.228831,0.003661,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.228831,0.003661,-0.003999,0.249968,0,0);}
.m152_c01164{transform:matrix(0.229123,0.005728,-0.006248,0.249922,0,0);-ms-transform:matrix(0.229123,0.005728,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.229123,0.005728,-0.006248,0.249922,0,0);}
.mea_c01164{transform:matrix(0.229166,0.003667,-0.003999,0.249968,0,0);-ms-transform:matrix(0.229166,0.003667,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.229166,0.003667,-0.003999,0.249968,0,0);}
.mf2_c01164{transform:matrix(0.229176,0.003667,-0.003999,0.249968,0,0);-ms-transform:matrix(0.229176,0.003667,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.229176,0.003667,-0.003999,0.249968,0,0);}
.mc2_c01164{transform:matrix(0.229496,0.003672,-0.003999,0.249968,0,0);-ms-transform:matrix(0.229496,0.003672,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.229496,0.003672,-0.003999,0.249968,0,0);}
.m9d_c01164{transform:matrix(0.230186,0.003683,-0.003999,0.249968,0,0);-ms-transform:matrix(0.230186,0.003683,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.230186,0.003683,-0.003999,0.249968,0,0);}
.m85_c01164{transform:matrix(0.230256,0.003684,-0.003999,0.249968,0,0);-ms-transform:matrix(0.230256,0.003684,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.230256,0.003684,-0.003999,0.249968,0,0);}
.med_c01164{transform:matrix(0.230865,0.003694,-0.003999,0.249968,0,0);-ms-transform:matrix(0.230865,0.003694,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.230865,0.003694,-0.003999,0.249968,0,0);}
.mfa_c01164{transform:matrix(0.230885,0.003694,-0.003999,0.249968,0,0);-ms-transform:matrix(0.230885,0.003694,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.230885,0.003694,-0.003999,0.249968,0,0);}
.m150_c01164{transform:matrix(0.231028,0.005776,-0.006248,0.249922,0,0);-ms-transform:matrix(0.231028,0.005776,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.231028,0.005776,-0.006248,0.249922,0,0);}
.m4_c01164{transform:matrix(0.231095,0.003698,-0.003999,0.249968,0,0);-ms-transform:matrix(0.231095,0.003698,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.231095,0.003698,-0.003999,0.249968,0,0);}
.me1_c01164{transform:matrix(0.231130,0.003698,-0.003999,0.249968,0,0);-ms-transform:matrix(0.231130,0.003698,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.231130,0.003698,-0.003999,0.249968,0,0);}
.m10d_c01164{transform:matrix(0.231170,0.003699,-0.003999,0.249968,0,0);-ms-transform:matrix(0.231170,0.003699,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.231170,0.003699,-0.003999,0.249968,0,0);}
.m7a_c01164{transform:matrix(0.231595,0.003706,-0.003999,0.249968,0,0);-ms-transform:matrix(0.231595,0.003706,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.231595,0.003706,-0.003999,0.249968,0,0);}
.mfe_c01164{transform:matrix(0.231720,0.003708,-0.003999,0.249968,0,0);-ms-transform:matrix(0.231720,0.003708,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.231720,0.003708,-0.003999,0.249968,0,0);}
.m174_c01164{transform:matrix(0.231827,0.006027,-0.006498,0.249916,0,0);-ms-transform:matrix(0.231827,0.006027,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.231827,0.006027,-0.006498,0.249916,0,0);}
.m124_c01164{transform:matrix(0.232159,0.004643,-0.004999,0.249950,0,0);-ms-transform:matrix(0.232159,0.004643,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.232159,0.004643,-0.004999,0.249950,0,0);}
.m98_c01164{transform:matrix(0.232255,0.003716,-0.003999,0.249968,0,0);-ms-transform:matrix(0.232255,0.003716,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.232255,0.003716,-0.003999,0.249968,0,0);}
.me2_c01164{transform:matrix(0.232915,0.003727,-0.003999,0.249968,0,0);-ms-transform:matrix(0.232915,0.003727,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.232915,0.003727,-0.003999,0.249968,0,0);}
.m92_c01164{transform:matrix(0.232955,0.003727,-0.003999,0.249968,0,0);-ms-transform:matrix(0.232955,0.003727,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.232955,0.003727,-0.003999,0.249968,0,0);}
.m142_c01164{transform:matrix(0.232973,0.004659,-0.004999,0.249950,0,0);-ms-transform:matrix(0.232973,0.004659,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.232973,0.004659,-0.004999,0.249950,0,0);}
.m13a_c01164{transform:matrix(0.233153,0.004663,-0.004999,0.249950,0,0);-ms-transform:matrix(0.233153,0.004663,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.233153,0.004663,-0.004999,0.249950,0,0);}
.mf5_c01164{transform:matrix(0.233175,0.003731,-0.003999,0.249968,0,0);-ms-transform:matrix(0.233175,0.003731,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.233175,0.003731,-0.003999,0.249968,0,0);}
.mab_c01164{transform:matrix(0.233705,0.003739,-0.003999,0.249968,0,0);-ms-transform:matrix(0.233705,0.003739,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.233705,0.003739,-0.003999,0.249968,0,0);}
.m105_c01164{transform:matrix(0.233955,0.003743,-0.003999,0.249968,0,0);-ms-transform:matrix(0.233955,0.003743,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.233955,0.003743,-0.003999,0.249968,0,0);}
.m116_c01164{transform:matrix(0.234330,0.003749,-0.003999,0.249968,0,0);-ms-transform:matrix(0.234330,0.003749,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.234330,0.003749,-0.003999,0.249968,0,0);}
.m149_c01164{transform:matrix(0.234387,0.005860,-0.006248,0.249922,0,0);-ms-transform:matrix(0.234387,0.005860,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.234387,0.005860,-0.006248,0.249922,0,0);}
.m7f_c01164{transform:matrix(0.234505,0.003752,-0.003999,0.249968,0,0);-ms-transform:matrix(0.234505,0.003752,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.234505,0.003752,-0.003999,0.249968,0,0);}
.md_c01164{transform:matrix(0.234590,0.003753,-0.003999,0.249968,0,0);-ms-transform:matrix(0.234590,0.003753,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.234590,0.003753,-0.003999,0.249968,0,0);}
.m9a_c01164{transform:matrix(0.234770,0.003756,-0.003999,0.249968,0,0);-ms-transform:matrix(0.234770,0.003756,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.234770,0.003756,-0.003999,0.249968,0,0);}
.m13f_c01164{transform:matrix(0.234843,0.004697,-0.004999,0.249950,0,0);-ms-transform:matrix(0.234843,0.004697,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.234843,0.004697,-0.004999,0.249950,0,0);}
.m102_c01164{transform:matrix(0.234960,0.003759,-0.003999,0.249968,0,0);-ms-transform:matrix(0.234960,0.003759,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.234960,0.003759,-0.003999,0.249968,0,0);}
.m121_c01164{transform:matrix(0.235050,0.003761,-0.003999,0.249968,0,0);-ms-transform:matrix(0.235050,0.003761,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.235050,0.003761,-0.003999,0.249968,0,0);}
.mb0_c01164{transform:matrix(0.235065,0.003761,-0.003999,0.249968,0,0);-ms-transform:matrix(0.235065,0.003761,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.235065,0.003761,-0.003999,0.249968,0,0);}
.m15f_c01164{transform:matrix(0.235394,0.003531,-0.003750,0.249972,0,0);-ms-transform:matrix(0.235394,0.003531,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.235394,0.003531,-0.003750,0.249972,0,0);}
.m14c_c01164{transform:matrix(0.235576,0.005889,-0.006248,0.249922,0,0);-ms-transform:matrix(0.235576,0.005889,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.235576,0.005889,-0.006248,0.249922,0,0);}
.m140_c01164{transform:matrix(0.235958,0.004719,-0.004999,0.249950,0,0);-ms-transform:matrix(0.235958,0.004719,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.235958,0.004719,-0.004999,0.249950,0,0);}
.mb7_c01164{transform:matrix(0.236040,0.003777,-0.003999,0.249968,0,0);-ms-transform:matrix(0.236040,0.003777,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.236040,0.003777,-0.003999,0.249968,0,0);}
.m159_c01164{transform:matrix(0.236071,0.004013,-0.004249,0.249964,0,0);-ms-transform:matrix(0.236071,0.004013,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.236071,0.004013,-0.004249,0.249964,0,0);}
.ma0_c01164{transform:matrix(0.236080,0.003777,-0.003999,0.249968,0,0);-ms-transform:matrix(0.236080,0.003777,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.236080,0.003777,-0.003999,0.249968,0,0);}
.m7_c01164{transform:matrix(0.236195,0.003779,-0.003999,0.249968,0,0);-ms-transform:matrix(0.236195,0.003779,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.236195,0.003779,-0.003999,0.249968,0,0);}
.m11f_c01164{transform:matrix(0.236415,0.003783,-0.003999,0.249968,0,0);-ms-transform:matrix(0.236415,0.003783,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.236415,0.003783,-0.003999,0.249968,0,0);}
.m20_c01164{transform:matrix(0.236445,0.003783,-0.003999,0.249968,0,0);-ms-transform:matrix(0.236445,0.003783,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.236445,0.003783,-0.003999,0.249968,0,0);}
.m83_c01164{transform:matrix(0.236490,0.003784,-0.003999,0.249968,0,0);-ms-transform:matrix(0.236490,0.003784,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.236490,0.003784,-0.003999,0.249968,0,0);}
.m8f_c01164{transform:matrix(0.236690,0.003787,-0.003999,0.249968,0,0);-ms-transform:matrix(0.236690,0.003787,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.236690,0.003787,-0.003999,0.249968,0,0);}
.m2c_c01164{transform:matrix(0.236825,0.003789,-0.003999,0.249968,0,0);-ms-transform:matrix(0.236825,0.003789,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.236825,0.003789,-0.003999,0.249968,0,0);}
.m48_c01164{transform:matrix(0.237435,0.003799,-0.003999,0.249968,0,0);-ms-transform:matrix(0.237435,0.003799,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.237435,0.003799,-0.003999,0.249968,0,0);}
.m1b_c01164{transform:matrix(0.237805,0.003805,-0.003999,0.249968,0,0);-ms-transform:matrix(0.237805,0.003805,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.237805,0.003805,-0.003999,0.249968,0,0);}
.m7c_c01164{transform:matrix(0.237945,0.003807,-0.003999,0.249968,0,0);-ms-transform:matrix(0.237945,0.003807,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.237945,0.003807,-0.003999,0.249968,0,0);}
.mff_c01164{transform:matrix(0.238704,0.003819,-0.003999,0.249968,0,0);-ms-transform:matrix(0.238704,0.003819,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.238704,0.003819,-0.003999,0.249968,0,0);}
.m12_c01164{transform:matrix(0.239094,0.003826,-0.003999,0.249968,0,0);-ms-transform:matrix(0.239094,0.003826,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.239094,0.003826,-0.003999,0.249968,0,0);}
.m17d_c01164{transform:matrix(0.239119,0.006217,-0.006498,0.249916,0,0);-ms-transform:matrix(0.239119,0.006217,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.239119,0.006217,-0.006498,0.249916,0,0);}
.m47_c01164{transform:matrix(0.239239,0.003828,-0.003999,0.249968,0,0);-ms-transform:matrix(0.239239,0.003828,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.239239,0.003828,-0.003999,0.249968,0,0);}
.m113_c01164{transform:matrix(0.239279,0.003828,-0.003999,0.249968,0,0);-ms-transform:matrix(0.239279,0.003828,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.239279,0.003828,-0.003999,0.249968,0,0);}
.ma_c01164{transform:matrix(0.239349,0.003830,-0.003999,0.249968,0,0);-ms-transform:matrix(0.239349,0.003830,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.239349,0.003830,-0.003999,0.249968,0,0);}
.m3f_c01164{transform:matrix(0.239509,0.003832,-0.003999,0.249968,0,0);-ms-transform:matrix(0.239509,0.003832,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.239509,0.003832,-0.003999,0.249968,0,0);}
.m7d_c01164{transform:matrix(0.239879,0.003838,-0.003999,0.249968,0,0);-ms-transform:matrix(0.239879,0.003838,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.239879,0.003838,-0.003999,0.249968,0,0);}
.m3e_c01164{transform:matrix(0.239939,0.003839,-0.003999,0.249968,0,0);-ms-transform:matrix(0.239939,0.003839,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.239939,0.003839,-0.003999,0.249968,0,0);}
.mef_c01164{transform:matrix(0.240034,0.003841,-0.003999,0.249968,0,0);-ms-transform:matrix(0.240034,0.003841,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.240034,0.003841,-0.003999,0.249968,0,0);}
.m78_c01164{transform:matrix(0.240264,0.003844,-0.003999,0.249968,0,0);-ms-transform:matrix(0.240264,0.003844,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.240264,0.003844,-0.003999,0.249968,0,0);}
.me5_c01164{transform:matrix(0.240564,0.003849,-0.003999,0.249968,0,0);-ms-transform:matrix(0.240564,0.003849,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.240564,0.003849,-0.003999,0.249968,0,0);}
.m4d_c01164{transform:matrix(0.240604,0.003850,-0.003999,0.249968,0,0);-ms-transform:matrix(0.240604,0.003850,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.240604,0.003850,-0.003999,0.249968,0,0);}
.m103_c01164{transform:matrix(0.240644,0.003850,-0.003999,0.249968,0,0);-ms-transform:matrix(0.240644,0.003850,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.240644,0.003850,-0.003999,0.249968,0,0);}
.m10f_c01164{transform:matrix(0.241229,0.003860,-0.003999,0.249968,0,0);-ms-transform:matrix(0.241229,0.003860,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.241229,0.003860,-0.003999,0.249968,0,0);}
.m127_c01164{transform:matrix(0.241322,0.004826,-0.004999,0.249950,0,0);-ms-transform:matrix(0.241322,0.004826,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.241322,0.004826,-0.004999,0.249950,0,0);}
.m10_c01164{transform:matrix(0.241549,0.003865,-0.003999,0.249968,0,0);-ms-transform:matrix(0.241549,0.003865,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.241549,0.003865,-0.003999,0.249968,0,0);}
.m14b_c01164{transform:matrix(0.241575,0.006039,-0.006248,0.249922,0,0);-ms-transform:matrix(0.241575,0.006039,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.241575,0.006039,-0.006248,0.249922,0,0);}
.m145_c01164{transform:matrix(0.241662,0.004833,-0.004999,0.249950,0,0);-ms-transform:matrix(0.241662,0.004833,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.241662,0.004833,-0.004999,0.249950,0,0);}
.m90_c01164{transform:matrix(0.241749,0.003868,-0.003999,0.249968,0,0);-ms-transform:matrix(0.241749,0.003868,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.241749,0.003868,-0.003999,0.249968,0,0);}
.m8b_c01164{transform:matrix(0.241984,0.003872,-0.003999,0.249968,0,0);-ms-transform:matrix(0.241984,0.003872,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.241984,0.003872,-0.003999,0.249968,0,0);}
.m8_c01164{transform:matrix(0.242104,0.003874,-0.003999,0.249968,0,0);-ms-transform:matrix(0.242104,0.003874,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.242104,0.003874,-0.003999,0.249968,0,0);}
.m50_c01164{transform:matrix(0.242714,0.003883,-0.003999,0.249968,0,0);-ms-transform:matrix(0.242714,0.003883,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.242714,0.003883,-0.003999,0.249968,0,0);}
.ma6_c01164{transform:matrix(0.242724,0.003884,-0.003999,0.249968,0,0);-ms-transform:matrix(0.242724,0.003884,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.242724,0.003884,-0.003999,0.249968,0,0);}
.m32_c01164{transform:matrix(0.242819,0.003885,-0.003999,0.249968,0,0);-ms-transform:matrix(0.242819,0.003885,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.242819,0.003885,-0.003999,0.249968,0,0);}
.m44_c01164{transform:matrix(0.242989,0.003888,-0.003999,0.249968,0,0);-ms-transform:matrix(0.242989,0.003888,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.242989,0.003888,-0.003999,0.249968,0,0);}
.md3_c01164{transform:matrix(0.243024,0.003888,-0.003999,0.249968,0,0);-ms-transform:matrix(0.243024,0.003888,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.243024,0.003888,-0.003999,0.249968,0,0);}
.m9b_c01164{transform:matrix(0.243464,0.003895,-0.003999,0.249968,0,0);-ms-transform:matrix(0.243464,0.003895,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.243464,0.003895,-0.003999,0.249968,0,0);}
.mf8_c01164{transform:matrix(0.243484,0.003896,-0.003999,0.249968,0,0);-ms-transform:matrix(0.243484,0.003896,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.243484,0.003896,-0.003999,0.249968,0,0);}
.mbd_c01164{transform:matrix(0.244444,0.003911,-0.003999,0.249968,0,0);-ms-transform:matrix(0.244444,0.003911,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.244444,0.003911,-0.003999,0.249968,0,0);}
.m10c_c01164{transform:matrix(0.244774,0.003916,-0.003999,0.249968,0,0);-ms-transform:matrix(0.244774,0.003916,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.244774,0.003916,-0.003999,0.249968,0,0);}
.m94_c01164{transform:matrix(0.244839,0.003917,-0.003999,0.249968,0,0);-ms-transform:matrix(0.244839,0.003917,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.244839,0.003917,-0.003999,0.249968,0,0);}
.m1_c01164{transform:matrix(0.244850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244850,0.000000,0.000000,0.250000,0,0);}
.m30_c01164{transform:matrix(0.245119,0.003922,-0.003999,0.249968,0,0);-ms-transform:matrix(0.245119,0.003922,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.245119,0.003922,-0.003999,0.249968,0,0);}
.md8_c01164{transform:matrix(0.245359,0.003926,-0.003999,0.249968,0,0);-ms-transform:matrix(0.245359,0.003926,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.245359,0.003926,-0.003999,0.249968,0,0);}
.md7_c01164{transform:matrix(0.245544,0.003929,-0.003999,0.249968,0,0);-ms-transform:matrix(0.245544,0.003929,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.245544,0.003929,-0.003999,0.249968,0,0);}
.m162_c01164{transform:matrix(0.245662,0.003685,-0.003750,0.249972,0,0);-ms-transform:matrix(0.245662,0.003685,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.245662,0.003685,-0.003750,0.249972,0,0);}
.ma1_c01164{transform:matrix(0.245684,0.003931,-0.003999,0.249968,0,0);-ms-transform:matrix(0.245684,0.003931,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.245684,0.003931,-0.003999,0.249968,0,0);}
.md5_c01164{transform:matrix(0.245774,0.003932,-0.003999,0.249968,0,0);-ms-transform:matrix(0.245774,0.003932,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.245774,0.003932,-0.003999,0.249968,0,0);}
.m9e_c01164{transform:matrix(0.246163,0.003939,-0.003999,0.249968,0,0);-ms-transform:matrix(0.246163,0.003939,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.246163,0.003939,-0.003999,0.249968,0,0);}
.m17_c01164{transform:matrix(0.246478,0.003944,-0.003999,0.249968,0,0);-ms-transform:matrix(0.246478,0.003944,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.246478,0.003944,-0.003999,0.249968,0,0);}
.m45_c01164{transform:matrix(0.246518,0.003944,-0.003999,0.249968,0,0);-ms-transform:matrix(0.246518,0.003944,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.246518,0.003944,-0.003999,0.249968,0,0);}
.m27_c01164{transform:matrix(0.246593,0.003945,-0.003999,0.249968,0,0);-ms-transform:matrix(0.246593,0.003945,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.246593,0.003945,-0.003999,0.249968,0,0);}
.maa_c01164{transform:matrix(0.246628,0.003946,-0.003999,0.249968,0,0);-ms-transform:matrix(0.246628,0.003946,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.246628,0.003946,-0.003999,0.249968,0,0);}
.mbb_c01164{transform:matrix(0.247048,0.003953,-0.003999,0.249968,0,0);-ms-transform:matrix(0.247048,0.003953,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.247048,0.003953,-0.003999,0.249968,0,0);}
.md0_c01164{transform:matrix(0.247123,0.003954,-0.003999,0.249968,0,0);-ms-transform:matrix(0.247123,0.003954,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.247123,0.003954,-0.003999,0.249968,0,0);}
.m6_c01164{transform:matrix(0.247128,0.003954,-0.003999,0.249968,0,0);-ms-transform:matrix(0.247128,0.003954,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.247128,0.003954,-0.003999,0.249968,0,0);}
.m109_c01164{transform:matrix(0.247198,0.003955,-0.003999,0.249968,0,0);-ms-transform:matrix(0.247198,0.003955,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.247198,0.003955,-0.003999,0.249968,0,0);}
.meb_c01164{transform:matrix(0.247583,0.003961,-0.003999,0.249968,0,0);-ms-transform:matrix(0.247583,0.003961,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.247583,0.003961,-0.003999,0.249968,0,0);}
.m87_c01164{transform:matrix(0.247593,0.003961,-0.003999,0.249968,0,0);-ms-transform:matrix(0.247593,0.003961,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.247593,0.003961,-0.003999,0.249968,0,0);}
.mc5_c01164{transform:matrix(0.247653,0.003962,-0.003999,0.249968,0,0);-ms-transform:matrix(0.247653,0.003962,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.247653,0.003962,-0.003999,0.249968,0,0);}
.m54_c01164{transform:matrix(0.247723,0.003964,-0.003999,0.249968,0,0);-ms-transform:matrix(0.247723,0.003964,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.247723,0.003964,-0.003999,0.249968,0,0);}
.m4a_c01164{transform:matrix(0.247783,0.003965,-0.003999,0.249968,0,0);-ms-transform:matrix(0.247783,0.003965,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.247783,0.003965,-0.003999,0.249968,0,0);}
.m40_c01164{transform:matrix(0.248123,0.003970,-0.003999,0.249968,0,0);-ms-transform:matrix(0.248123,0.003970,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.248123,0.003970,-0.003999,0.249968,0,0);}
.m184_c01164{transform:matrix(0.248126,0.006451,-0.006498,0.249916,0,0);-ms-transform:matrix(0.248126,0.006451,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.248126,0.006451,-0.006498,0.249916,0,0);}
.m81_c01164{transform:matrix(0.248628,0.003978,-0.003999,0.249968,0,0);-ms-transform:matrix(0.248628,0.003978,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.248628,0.003978,-0.003999,0.249968,0,0);}
.me4_c01164{transform:matrix(0.249058,0.003985,-0.003999,0.249968,0,0);-ms-transform:matrix(0.249058,0.003985,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.249058,0.003985,-0.003999,0.249968,0,0);}
.me6_c01164{transform:matrix(0.249618,0.003994,-0.003999,0.249968,0,0);-ms-transform:matrix(0.249618,0.003994,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.249618,0.003994,-0.003999,0.249968,0,0);}
.m14_c01164{transform:matrix(0.249633,0.003994,-0.003999,0.249968,0,0);-ms-transform:matrix(0.249633,0.003994,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.249633,0.003994,-0.003999,0.249968,0,0);}
.m42_c01164{transform:matrix(0.249913,0.003999,-0.003999,0.249968,0,0);-ms-transform:matrix(0.249913,0.003999,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.249913,0.003999,-0.003999,0.249968,0,0);}
.md9_c01164{transform:matrix(0.250123,0.004002,-0.003999,0.249968,0,0);-ms-transform:matrix(0.250123,0.004002,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.250123,0.004002,-0.003999,0.249968,0,0);}
.m5a_c01164{transform:matrix(0.250358,0.004006,-0.003999,0.249968,0,0);-ms-transform:matrix(0.250358,0.004006,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.250358,0.004006,-0.003999,0.249968,0,0);}
.m97_c01164{transform:matrix(0.250628,0.004010,-0.003999,0.249968,0,0);-ms-transform:matrix(0.250628,0.004010,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.250628,0.004010,-0.003999,0.249968,0,0);}
.mfd_c01164{transform:matrix(0.250673,0.004011,-0.003999,0.249968,0,0);-ms-transform:matrix(0.250673,0.004011,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.250673,0.004011,-0.003999,0.249968,0,0);}
.mdc_c01164{transform:matrix(0.250823,0.004013,-0.003999,0.249968,0,0);-ms-transform:matrix(0.250823,0.004013,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.250823,0.004013,-0.003999,0.249968,0,0);}
.m122_c01164{transform:matrix(0.250888,0.004014,-0.003999,0.249968,0,0);-ms-transform:matrix(0.250888,0.004014,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.250888,0.004014,-0.003999,0.249968,0,0);}
.mb5_c01164{transform:matrix(0.250988,0.004016,-0.003999,0.249968,0,0);-ms-transform:matrix(0.250988,0.004016,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.250988,0.004016,-0.003999,0.249968,0,0);}
.md2_c01164{transform:matrix(0.251368,0.004022,-0.003999,0.249968,0,0);-ms-transform:matrix(0.251368,0.004022,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.251368,0.004022,-0.003999,0.249968,0,0);}
.mc0_c01164{transform:matrix(0.251663,0.004027,-0.003999,0.249968,0,0);-ms-transform:matrix(0.251663,0.004027,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.251663,0.004027,-0.003999,0.249968,0,0);}
.m4c_c01164{transform:matrix(0.251688,0.004027,-0.003999,0.249968,0,0);-ms-transform:matrix(0.251688,0.004027,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.251688,0.004027,-0.003999,0.249968,0,0);}
.m101_c01164{transform:matrix(0.251778,0.004028,-0.003999,0.249968,0,0);-ms-transform:matrix(0.251778,0.004028,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.251778,0.004028,-0.003999,0.249968,0,0);}
.m57_c01164{transform:matrix(0.252233,0.004036,-0.003999,0.249968,0,0);-ms-transform:matrix(0.252233,0.004036,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.252233,0.004036,-0.003999,0.249968,0,0);}
.m35_c01164{transform:matrix(0.252443,0.004039,-0.003999,0.249968,0,0);-ms-transform:matrix(0.252443,0.004039,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.252443,0.004039,-0.003999,0.249968,0,0);}
.m126_c01164{transform:matrix(0.252515,0.005050,-0.004999,0.249950,0,0);-ms-transform:matrix(0.252515,0.005050,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.252515,0.005050,-0.004999,0.249950,0,0);}
.m3c_c01164{transform:matrix(0.252648,0.004042,-0.003999,0.249968,0,0);-ms-transform:matrix(0.252648,0.004042,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.252648,0.004042,-0.003999,0.249968,0,0);}
.me8_c01164{transform:matrix(0.252793,0.004045,-0.003999,0.249968,0,0);-ms-transform:matrix(0.252793,0.004045,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.252793,0.004045,-0.003999,0.249968,0,0);}
.ma2_c01164{transform:matrix(0.252813,0.004045,-0.003999,0.249968,0,0);-ms-transform:matrix(0.252813,0.004045,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.252813,0.004045,-0.003999,0.249968,0,0);}
.m4e_c01164{transform:matrix(0.252848,0.004046,-0.003999,0.249968,0,0);-ms-transform:matrix(0.252848,0.004046,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.252848,0.004046,-0.003999,0.249968,0,0);}
.mf0_c01164{transform:matrix(0.252963,0.004047,-0.003999,0.249968,0,0);-ms-transform:matrix(0.252963,0.004047,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.252963,0.004047,-0.003999,0.249968,0,0);}
.mb6_c01164{transform:matrix(0.253028,0.004048,-0.003999,0.249968,0,0);-ms-transform:matrix(0.253028,0.004048,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.253028,0.004048,-0.003999,0.249968,0,0);}
.m95_c01164{transform:matrix(0.253268,0.004052,-0.003999,0.249968,0,0);-ms-transform:matrix(0.253268,0.004052,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.253268,0.004052,-0.003999,0.249968,0,0);}
.m76_c01164{transform:matrix(0.253368,0.004054,-0.003999,0.249968,0,0);-ms-transform:matrix(0.253368,0.004054,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.253368,0.004054,-0.003999,0.249968,0,0);}
.me_c01164{transform:matrix(0.253703,0.004059,-0.003999,0.249968,0,0);-ms-transform:matrix(0.253703,0.004059,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.253703,0.004059,-0.003999,0.249968,0,0);}
.mf6_c01164{transform:matrix(0.253888,0.004062,-0.003999,0.249968,0,0);-ms-transform:matrix(0.253888,0.004062,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.253888,0.004062,-0.003999,0.249968,0,0);}
.m129_c01164{transform:matrix(0.253899,0.005078,-0.004999,0.249950,0,0);-ms-transform:matrix(0.253899,0.005078,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.253899,0.005078,-0.004999,0.249950,0,0);}
.m111_c01164{transform:matrix(0.253997,0.004064,-0.003999,0.249968,0,0);-ms-transform:matrix(0.253997,0.004064,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.253997,0.004064,-0.003999,0.249968,0,0);}
.md4_c01164{transform:matrix(0.254137,0.004066,-0.003999,0.249968,0,0);-ms-transform:matrix(0.254137,0.004066,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.254137,0.004066,-0.003999,0.249968,0,0);}
.m125_c01164{transform:matrix(0.254349,0.005087,-0.004999,0.249950,0,0);-ms-transform:matrix(0.254349,0.005087,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.254349,0.005087,-0.004999,0.249950,0,0);}
.mde_c01164{transform:matrix(0.254397,0.004070,-0.003999,0.249968,0,0);-ms-transform:matrix(0.254397,0.004070,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.254397,0.004070,-0.003999,0.249968,0,0);}
.m6e_c01164{transform:matrix(0.254402,0.004070,-0.003999,0.249968,0,0);-ms-transform:matrix(0.254402,0.004070,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.254402,0.004070,-0.003999,0.249968,0,0);}
.m29_c01164{transform:matrix(0.254622,0.004074,-0.003999,0.249968,0,0);-ms-transform:matrix(0.254622,0.004074,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.254622,0.004074,-0.003999,0.249968,0,0);}
.m8e_c01164{transform:matrix(0.254687,0.004075,-0.003999,0.249968,0,0);-ms-transform:matrix(0.254687,0.004075,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.254687,0.004075,-0.003999,0.249968,0,0);}
.m110_c01164{transform:matrix(0.255037,0.004081,-0.003999,0.249968,0,0);-ms-transform:matrix(0.255037,0.004081,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.255037,0.004081,-0.003999,0.249968,0,0);}
.m118_c01164{transform:matrix(0.255077,0.004081,-0.003999,0.249968,0,0);-ms-transform:matrix(0.255077,0.004081,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.255077,0.004081,-0.003999,0.249968,0,0);}
.m120_c01164{transform:matrix(0.255277,0.004084,-0.003999,0.249968,0,0);-ms-transform:matrix(0.255277,0.004084,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.255277,0.004084,-0.003999,0.249968,0,0);}
.m2b_c01164{transform:matrix(0.255412,0.004087,-0.003999,0.249968,0,0);-ms-transform:matrix(0.255412,0.004087,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.255412,0.004087,-0.003999,0.249968,0,0);}
.m141_c01164{transform:matrix(0.256179,0.005124,-0.004999,0.249950,0,0);-ms-transform:matrix(0.256179,0.005124,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.256179,0.005124,-0.004999,0.249950,0,0);}
.m36_c01164{transform:matrix(0.256467,0.004103,-0.003999,0.249968,0,0);-ms-transform:matrix(0.256467,0.004103,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.256467,0.004103,-0.003999,0.249968,0,0);}
.m17f_c01164{transform:matrix(0.257013,0.006682,-0.006498,0.249916,0,0);-ms-transform:matrix(0.257013,0.006682,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.257013,0.006682,-0.006498,0.249916,0,0);}
.m2d_c01164{transform:matrix(0.257112,0.004114,-0.003999,0.249968,0,0);-ms-transform:matrix(0.257112,0.004114,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.257112,0.004114,-0.003999,0.249968,0,0);}
.m185_c01164{transform:matrix(0.257413,0.006693,-0.006498,0.249916,0,0);-ms-transform:matrix(0.257413,0.006693,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.257413,0.006693,-0.006498,0.249916,0,0);}
.m18_c01164{transform:matrix(0.257712,0.004123,-0.003999,0.249968,0,0);-ms-transform:matrix(0.257712,0.004123,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.257712,0.004123,-0.003999,0.249968,0,0);}
.ma5_c01164{transform:matrix(0.258022,0.004128,-0.003999,0.249968,0,0);-ms-transform:matrix(0.258022,0.004128,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.258022,0.004128,-0.003999,0.249968,0,0);}
.m11e_c01164{transform:matrix(0.258152,0.004130,-0.003999,0.249968,0,0);-ms-transform:matrix(0.258152,0.004130,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.258152,0.004130,-0.003999,0.249968,0,0);}
.m144_c01164{transform:matrix(0.258208,0.005164,-0.004999,0.249950,0,0);-ms-transform:matrix(0.258208,0.005164,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.258208,0.005164,-0.004999,0.249950,0,0);}
.mfc_c01164{transform:matrix(0.258767,0.004140,-0.003999,0.249968,0,0);-ms-transform:matrix(0.258767,0.004140,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.258767,0.004140,-0.003999,0.249968,0,0);}
.mdf_c01164{transform:matrix(0.259422,0.004151,-0.003999,0.249968,0,0);-ms-transform:matrix(0.259422,0.004151,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.259422,0.004151,-0.003999,0.249968,0,0);}
.mf9_c01164{transform:matrix(0.260087,0.004161,-0.003999,0.249968,0,0);-ms-transform:matrix(0.260087,0.004161,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.260087,0.004161,-0.003999,0.249968,0,0);}
.m9f_c01164{transform:matrix(0.260532,0.004169,-0.003999,0.249968,0,0);-ms-transform:matrix(0.260532,0.004169,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.260532,0.004169,-0.003999,0.249968,0,0);}
.me3_c01164{transform:matrix(0.260562,0.004169,-0.003999,0.249968,0,0);-ms-transform:matrix(0.260562,0.004169,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.260562,0.004169,-0.003999,0.249968,0,0);}
.m56_c01164{transform:matrix(0.260642,0.004170,-0.003999,0.249968,0,0);-ms-transform:matrix(0.260642,0.004170,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.260642,0.004170,-0.003999,0.249968,0,0);}
.ma3_c01164{transform:matrix(0.261332,0.004181,-0.003999,0.249968,0,0);-ms-transform:matrix(0.261332,0.004181,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.261332,0.004181,-0.003999,0.249968,0,0);}
.m74_c01164{transform:matrix(0.261687,0.004187,-0.003999,0.249968,0,0);-ms-transform:matrix(0.261687,0.004187,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.261687,0.004187,-0.003999,0.249968,0,0);}
.m12c_c01164{transform:matrix(0.261768,0.005235,-0.004999,0.249950,0,0);-ms-transform:matrix(0.261768,0.005235,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.261768,0.005235,-0.004999,0.249950,0,0);}
.m7e_c01164{transform:matrix(0.261911,0.004191,-0.003999,0.249968,0,0);-ms-transform:matrix(0.261911,0.004191,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.261911,0.004191,-0.003999,0.249968,0,0);}
.m11a_c01164{transform:matrix(0.262221,0.004196,-0.003999,0.249968,0,0);-ms-transform:matrix(0.262221,0.004196,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.262221,0.004196,-0.003999,0.249968,0,0);}
.mac_c01164{transform:matrix(0.262441,0.004199,-0.003999,0.249968,0,0);-ms-transform:matrix(0.262441,0.004199,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.262441,0.004199,-0.003999,0.249968,0,0);}
.m146_c01164{transform:matrix(0.262473,0.005249,-0.004999,0.249950,0,0);-ms-transform:matrix(0.262473,0.005249,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.262473,0.005249,-0.004999,0.249950,0,0);}
.m13_c01164{transform:matrix(0.262816,0.004205,-0.003999,0.249968,0,0);-ms-transform:matrix(0.262816,0.004205,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.262816,0.004205,-0.003999,0.249968,0,0);}
.m167_c01164{transform:matrix(0.262895,0.003943,-0.003750,0.249972,0,0);-ms-transform:matrix(0.262895,0.003943,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.262895,0.003943,-0.003750,0.249972,0,0);}
.m37_c01164{transform:matrix(0.263201,0.004211,-0.003999,0.249968,0,0);-ms-transform:matrix(0.263201,0.004211,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.263201,0.004211,-0.003999,0.249968,0,0);}
.m12b_c01164{transform:matrix(0.264382,0.005288,-0.004999,0.249950,0,0);-ms-transform:matrix(0.264382,0.005288,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.264382,0.005288,-0.004999,0.249950,0,0);}
.m71_c01164{transform:matrix(0.264556,0.004233,-0.003999,0.249968,0,0);-ms-transform:matrix(0.264556,0.004233,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.264556,0.004233,-0.003999,0.249968,0,0);}
.m79_c01164{transform:matrix(0.264726,0.004236,-0.003999,0.249968,0,0);-ms-transform:matrix(0.264726,0.004236,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.264726,0.004236,-0.003999,0.249968,0,0);}
.m39_c01164{transform:matrix(0.264776,0.004236,-0.003999,0.249968,0,0);-ms-transform:matrix(0.264776,0.004236,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.264776,0.004236,-0.003999,0.249968,0,0);}
.mc1_c01164{transform:matrix(0.265061,0.004241,-0.003999,0.249968,0,0);-ms-transform:matrix(0.265061,0.004241,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.265061,0.004241,-0.003999,0.249968,0,0);}
.m17e_c01164{transform:matrix(0.265225,0.006896,-0.006498,0.249916,0,0);-ms-transform:matrix(0.265225,0.006896,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.265225,0.006896,-0.006498,0.249916,0,0);}
.m11d_c01164{transform:matrix(0.265466,0.004247,-0.003999,0.249968,0,0);-ms-transform:matrix(0.265466,0.004247,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.265466,0.004247,-0.003999,0.249968,0,0);}
.m89_c01164{transform:matrix(0.265626,0.004250,-0.003999,0.249968,0,0);-ms-transform:matrix(0.265626,0.004250,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.265626,0.004250,-0.003999,0.249968,0,0);}
.m99_c01164{transform:matrix(0.266206,0.004259,-0.003999,0.249968,0,0);-ms-transform:matrix(0.266206,0.004259,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.266206,0.004259,-0.003999,0.249968,0,0);}
.m15_c01164{transform:matrix(0.266231,0.004260,-0.003999,0.249968,0,0);-ms-transform:matrix(0.266231,0.004260,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.266231,0.004260,-0.003999,0.249968,0,0);}
.ma7_c01164{transform:matrix(0.266676,0.004267,-0.003999,0.249968,0,0);-ms-transform:matrix(0.266676,0.004267,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.266676,0.004267,-0.003999,0.249968,0,0);}
.me9_c01164{transform:matrix(0.266911,0.004271,-0.003999,0.249968,0,0);-ms-transform:matrix(0.266911,0.004271,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.266911,0.004271,-0.003999,0.249968,0,0);}
.m88_c01164{transform:matrix(0.267101,0.004274,-0.003999,0.249968,0,0);-ms-transform:matrix(0.267101,0.004274,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.267101,0.004274,-0.003999,0.249968,0,0);}
.m4b_c01164{transform:matrix(0.267181,0.004275,-0.003999,0.249968,0,0);-ms-transform:matrix(0.267181,0.004275,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.267181,0.004275,-0.003999,0.249968,0,0);}
.mbf_c01164{transform:matrix(0.267186,0.004275,-0.003999,0.249968,0,0);-ms-transform:matrix(0.267186,0.004275,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.267186,0.004275,-0.003999,0.249968,0,0);}
.m91_c01164{transform:matrix(0.267831,0.004285,-0.003999,0.249968,0,0);-ms-transform:matrix(0.267831,0.004285,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.267831,0.004285,-0.003999,0.249968,0,0);}
.m117_c01164{transform:matrix(0.268516,0.004296,-0.003999,0.249968,0,0);-ms-transform:matrix(0.268516,0.004296,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.268516,0.004296,-0.003999,0.249968,0,0);}
.m80_c01164{transform:matrix(0.268966,0.004303,-0.003999,0.249968,0,0);-ms-transform:matrix(0.268966,0.004303,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.268966,0.004303,-0.003999,0.249968,0,0);}
.mc3_c01164{transform:matrix(0.269685,0.004315,-0.003999,0.249968,0,0);-ms-transform:matrix(0.269685,0.004315,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.269685,0.004315,-0.003999,0.249968,0,0);}
.m6d_c01164{transform:matrix(0.270165,0.004323,-0.003999,0.249968,0,0);-ms-transform:matrix(0.270165,0.004323,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.270165,0.004323,-0.003999,0.249968,0,0);}
.mc7_c01164{transform:matrix(0.270245,0.004324,-0.003999,0.249968,0,0);-ms-transform:matrix(0.270245,0.004324,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.270245,0.004324,-0.003999,0.249968,0,0);}
.m86_c01164{transform:matrix(0.270430,0.004327,-0.003999,0.249968,0,0);-ms-transform:matrix(0.270430,0.004327,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.270430,0.004327,-0.003999,0.249968,0,0);}
.m19_c01164{transform:matrix(0.270860,0.004334,-0.003999,0.249968,0,0);-ms-transform:matrix(0.270860,0.004334,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.270860,0.004334,-0.003999,0.249968,0,0);}
.ma9_c01164{transform:matrix(0.271070,0.004337,-0.003999,0.249968,0,0);-ms-transform:matrix(0.271070,0.004337,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.271070,0.004337,-0.003999,0.249968,0,0);}
.m38_c01164{transform:matrix(0.271275,0.004340,-0.003999,0.249968,0,0);-ms-transform:matrix(0.271275,0.004340,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.271275,0.004340,-0.003999,0.249968,0,0);}
.mbc_c01164{transform:matrix(0.272015,0.004352,-0.003999,0.249968,0,0);-ms-transform:matrix(0.272015,0.004352,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.272015,0.004352,-0.003999,0.249968,0,0);}
.mc9_c01164{transform:matrix(0.272040,0.004353,-0.003999,0.249968,0,0);-ms-transform:matrix(0.272040,0.004353,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.272040,0.004353,-0.003999,0.249968,0,0);}
.m8a_c01164{transform:matrix(0.272070,0.004353,-0.003999,0.249968,0,0);-ms-transform:matrix(0.272070,0.004353,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.272070,0.004353,-0.003999,0.249968,0,0);}
.m82_c01164{transform:matrix(0.272215,0.004355,-0.003999,0.249968,0,0);-ms-transform:matrix(0.272215,0.004355,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.272215,0.004355,-0.003999,0.249968,0,0);}
.mec_c01164{transform:matrix(0.272630,0.004362,-0.003999,0.249968,0,0);-ms-transform:matrix(0.272630,0.004362,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.272630,0.004362,-0.003999,0.249968,0,0);}
.m93_c01164{transform:matrix(0.272820,0.004365,-0.003999,0.249968,0,0);-ms-transform:matrix(0.272820,0.004365,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.272820,0.004365,-0.003999,0.249968,0,0);}
.m5b_c01164{transform:matrix(0.272865,0.004366,-0.003999,0.249968,0,0);-ms-transform:matrix(0.272865,0.004366,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.272865,0.004366,-0.003999,0.249968,0,0);}
.ma4_c01164{transform:matrix(0.273365,0.004374,-0.003999,0.249968,0,0);-ms-transform:matrix(0.273365,0.004374,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.273365,0.004374,-0.003999,0.249968,0,0);}
.m84_c01164{transform:matrix(0.274360,0.004390,-0.003999,0.249968,0,0);-ms-transform:matrix(0.274360,0.004390,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.274360,0.004390,-0.003999,0.249968,0,0);}
.mce_c01164{transform:matrix(0.274545,0.004393,-0.003999,0.249968,0,0);-ms-transform:matrix(0.274545,0.004393,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.274545,0.004393,-0.003999,0.249968,0,0);}
.m123_c01164{transform:matrix(0.275020,0.004400,-0.003999,0.249968,0,0);-ms-transform:matrix(0.275020,0.004400,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.275020,0.004400,-0.003999,0.249968,0,0);}
.m77_c01164{transform:matrix(0.275170,0.004403,-0.003999,0.249968,0,0);-ms-transform:matrix(0.275170,0.004403,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.275170,0.004403,-0.003999,0.249968,0,0);}
.m5d_c01164{transform:matrix(0.275350,0.004406,-0.003999,0.249968,0,0);-ms-transform:matrix(0.275350,0.004406,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.275350,0.004406,-0.003999,0.249968,0,0);}
.mee_c01164{transform:matrix(0.275570,0.004409,-0.003999,0.249968,0,0);-ms-transform:matrix(0.275570,0.004409,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.275570,0.004409,-0.003999,0.249968,0,0);}
.m16_c01164{transform:matrix(0.275755,0.004412,-0.003999,0.249968,0,0);-ms-transform:matrix(0.275755,0.004412,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.275755,0.004412,-0.003999,0.249968,0,0);}
.md6_c01164{transform:matrix(0.275900,0.004414,-0.003999,0.249968,0,0);-ms-transform:matrix(0.275900,0.004414,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.275900,0.004414,-0.003999,0.249968,0,0);}
.m8c_c01164{transform:matrix(0.275955,0.004415,-0.003999,0.249968,0,0);-ms-transform:matrix(0.275955,0.004415,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.275955,0.004415,-0.003999,0.249968,0,0);}
.m119_c01164{transform:matrix(0.276045,0.004417,-0.003999,0.249968,0,0);-ms-transform:matrix(0.276045,0.004417,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.276045,0.004417,-0.003999,0.249968,0,0);}
.m11b_c01164{transform:matrix(0.276660,0.004427,-0.003999,0.249968,0,0);-ms-transform:matrix(0.276660,0.004427,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.276660,0.004427,-0.003999,0.249968,0,0);}
.m61_c01164{transform:matrix(0.276890,0.004430,-0.003999,0.249968,0,0);-ms-transform:matrix(0.276890,0.004430,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.276890,0.004430,-0.003999,0.249968,0,0);}
.m73_c01164{transform:matrix(0.277394,0.004438,-0.003999,0.249968,0,0);-ms-transform:matrix(0.277394,0.004438,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.277394,0.004438,-0.003999,0.249968,0,0);}
.m96_c01164{transform:matrix(0.277789,0.004445,-0.003999,0.249968,0,0);-ms-transform:matrix(0.277789,0.004445,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.277789,0.004445,-0.003999,0.249968,0,0);}
.m55_c01164{transform:matrix(0.278069,0.004449,-0.003999,0.249968,0,0);-ms-transform:matrix(0.278069,0.004449,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.278069,0.004449,-0.003999,0.249968,0,0);}
.m31_c01164{transform:matrix(0.278174,0.004451,-0.003999,0.249968,0,0);-ms-transform:matrix(0.278174,0.004451,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.278174,0.004451,-0.003999,0.249968,0,0);}
.m72_c01164{transform:matrix(0.278574,0.004457,-0.003999,0.249968,0,0);-ms-transform:matrix(0.278574,0.004457,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.278574,0.004457,-0.003999,0.249968,0,0);}
.mbe_c01164{transform:matrix(0.278644,0.004458,-0.003999,0.249968,0,0);-ms-transform:matrix(0.278644,0.004458,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.278644,0.004458,-0.003999,0.249968,0,0);}
.mda_c01164{transform:matrix(0.278989,0.004464,-0.003999,0.249968,0,0);-ms-transform:matrix(0.278989,0.004464,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.278989,0.004464,-0.003999,0.249968,0,0);}
.m112_c01164{transform:matrix(0.279119,0.004466,-0.003999,0.249968,0,0);-ms-transform:matrix(0.279119,0.004466,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.279119,0.004466,-0.003999,0.249968,0,0);}
.mae_c01164{transform:matrix(0.279279,0.004468,-0.003999,0.249968,0,0);-ms-transform:matrix(0.279279,0.004468,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.279279,0.004468,-0.003999,0.249968,0,0);}
.me7_c01164{transform:matrix(0.279434,0.004471,-0.003999,0.249968,0,0);-ms-transform:matrix(0.279434,0.004471,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.279434,0.004471,-0.003999,0.249968,0,0);}
.m33_c01164{transform:matrix(0.279444,0.004471,-0.003999,0.249968,0,0);-ms-transform:matrix(0.279444,0.004471,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.279444,0.004471,-0.003999,0.249968,0,0);}
.m9c_c01164{transform:matrix(0.280304,0.004485,-0.003999,0.249968,0,0);-ms-transform:matrix(0.280304,0.004485,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.280304,0.004485,-0.003999,0.249968,0,0);}
.mad_c01164{transform:matrix(0.280664,0.004491,-0.003999,0.249968,0,0);-ms-transform:matrix(0.280664,0.004491,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.280664,0.004491,-0.003999,0.249968,0,0);}
.m148_c01164{transform:matrix(0.281264,0.005625,-0.004999,0.249950,0,0);-ms-transform:matrix(0.281264,0.005625,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.281264,0.005625,-0.004999,0.249950,0,0);}
.mc8_c01164{transform:matrix(0.281264,0.004500,-0.003999,0.249968,0,0);-ms-transform:matrix(0.281264,0.004500,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.281264,0.004500,-0.003999,0.249968,0,0);}
.m5f_c01164{transform:matrix(0.281494,0.004504,-0.003999,0.249968,0,0);-ms-transform:matrix(0.281494,0.004504,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.281494,0.004504,-0.003999,0.249968,0,0);}
.m53_c01164{transform:matrix(0.281989,0.004512,-0.003999,0.249968,0,0);-ms-transform:matrix(0.281989,0.004512,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.281989,0.004512,-0.003999,0.249968,0,0);}
.m58_c01164{transform:matrix(0.282499,0.004520,-0.003999,0.249968,0,0);-ms-transform:matrix(0.282499,0.004520,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.282499,0.004520,-0.003999,0.249968,0,0);}
.m11c_c01164{transform:matrix(0.282609,0.004522,-0.003999,0.249968,0,0);-ms-transform:matrix(0.282609,0.004522,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.282609,0.004522,-0.003999,0.249968,0,0);}
.m1a_c01164{transform:matrix(0.284414,0.004551,-0.003999,0.249968,0,0);-ms-transform:matrix(0.284414,0.004551,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.284414,0.004551,-0.003999,0.249968,0,0);}
.m7b_c01164{transform:matrix(0.284699,0.004555,-0.003999,0.249968,0,0);-ms-transform:matrix(0.284699,0.004555,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.284699,0.004555,-0.003999,0.249968,0,0);}
.m147_c01164{transform:matrix(0.285088,0.005702,-0.004999,0.249950,0,0);-ms-transform:matrix(0.285088,0.005702,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.285088,0.005702,-0.004999,0.249950,0,0);}
.m115_c01164{transform:matrix(0.285483,0.004568,-0.003999,0.249968,0,0);-ms-transform:matrix(0.285483,0.004568,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.285483,0.004568,-0.003999,0.249968,0,0);}
.m160_c01164{transform:matrix(0.285868,0.004288,-0.003750,0.249972,0,0);-ms-transform:matrix(0.285868,0.004288,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.285868,0.004288,-0.003750,0.249972,0,0);}
.m34_c01164{transform:matrix(0.286058,0.004577,-0.003999,0.249968,0,0);-ms-transform:matrix(0.286058,0.004577,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.286058,0.004577,-0.003999,0.249968,0,0);}
.m3d_c01164{transform:matrix(0.286358,0.004582,-0.003999,0.249968,0,0);-ms-transform:matrix(0.286358,0.004582,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.286358,0.004582,-0.003999,0.249968,0,0);}
.m51_c01164{transform:matrix(0.287348,0.004598,-0.003999,0.249968,0,0);-ms-transform:matrix(0.287348,0.004598,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.287348,0.004598,-0.003999,0.249968,0,0);}
.mc6_c01164{transform:matrix(0.288133,0.004610,-0.003999,0.249968,0,0);-ms-transform:matrix(0.288133,0.004610,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.288133,0.004610,-0.003999,0.249968,0,0);}
.m5e_c01164{transform:matrix(0.288638,0.004618,-0.003999,0.249968,0,0);-ms-transform:matrix(0.288638,0.004618,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.288638,0.004618,-0.003999,0.249968,0,0);}
.m5c_c01164{transform:matrix(0.289393,0.004630,-0.003999,0.249968,0,0);-ms-transform:matrix(0.289393,0.004630,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.289393,0.004630,-0.003999,0.249968,0,0);}
.mca_c01164{transform:matrix(0.290668,0.004651,-0.003999,0.249968,0,0);-ms-transform:matrix(0.290668,0.004651,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.290668,0.004651,-0.003999,0.249968,0,0);}
.m3b_c01164{transform:matrix(0.293197,0.004691,-0.003999,0.249968,0,0);-ms-transform:matrix(0.293197,0.004691,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.293197,0.004691,-0.003999,0.249968,0,0);}
.m6f_c01164{transform:matrix(0.293792,0.004701,-0.003999,0.249968,0,0);-ms-transform:matrix(0.293792,0.004701,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.293792,0.004701,-0.003999,0.249968,0,0);}
.mba_c01164{transform:matrix(0.296327,0.004741,-0.003999,0.249968,0,0);-ms-transform:matrix(0.296327,0.004741,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.296327,0.004741,-0.003999,0.249968,0,0);}
.m166_c01164{transform:matrix(0.296337,0.004445,-0.003750,0.249972,0,0);-ms-transform:matrix(0.296337,0.004445,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.296337,0.004445,-0.003750,0.249972,0,0);}
.m70_c01164{transform:matrix(0.297717,0.004763,-0.003999,0.249968,0,0);-ms-transform:matrix(0.297717,0.004763,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.297717,0.004763,-0.003999,0.249968,0,0);}
.m60_c01164{transform:matrix(0.299022,0.004784,-0.003999,0.249968,0,0);-ms-transform:matrix(0.299022,0.004784,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.299022,0.004784,-0.003999,0.249968,0,0);}
.m164_c01164{transform:matrix(0.301526,0.004523,-0.003750,0.249972,0,0);-ms-transform:matrix(0.301526,0.004523,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.301526,0.004523,-0.003750,0.249972,0,0);}
.m75_c01164{transform:matrix(0.301876,0.004830,-0.003999,0.249968,0,0);-ms-transform:matrix(0.301876,0.004830,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.301876,0.004830,-0.003999,0.249968,0,0);}
.m59_c01164{transform:matrix(0.302906,0.004846,-0.003999,0.249968,0,0);-ms-transform:matrix(0.302906,0.004846,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.302906,0.004846,-0.003999,0.249968,0,0);}
.mcc_c01164{transform:matrix(0.303536,0.004857,-0.003999,0.249968,0,0);-ms-transform:matrix(0.303536,0.004857,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.303536,0.004857,-0.003999,0.249968,0,0);}
.mcd_c01164{transform:matrix(0.303826,0.004861,-0.003999,0.249968,0,0);-ms-transform:matrix(0.303826,0.004861,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.303826,0.004861,-0.003999,0.249968,0,0);}
.mcf_c01164{transform:matrix(0.304846,0.004878,-0.003999,0.249968,0,0);-ms-transform:matrix(0.304846,0.004878,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.304846,0.004878,-0.003999,0.249968,0,0);}
.m3a_c01164{transform:matrix(0.306081,0.004897,-0.003999,0.249968,0,0);-ms-transform:matrix(0.306081,0.004897,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.306081,0.004897,-0.003999,0.249968,0,0);}
.m137_c01164{transform:matrix(0.313352,0.006267,-0.004999,0.249950,0,0);-ms-transform:matrix(0.313352,0.006267,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.313352,0.006267,-0.004999,0.249950,0,0);}
.m12f_c01164{transform:matrix(0.314382,0.006288,-0.004999,0.249950,0,0);-ms-transform:matrix(0.314382,0.006288,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.314382,0.006288,-0.004999,0.249950,0,0);}
.m15a_c01164{transform:matrix(0.316199,0.005375,-0.004249,0.249964,0,0);-ms-transform:matrix(0.316199,0.005375,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.316199,0.005375,-0.004249,0.249964,0,0);}
.m15e_c01164{transform:matrix(0.320384,0.004806,-0.003750,0.249972,0,0);-ms-transform:matrix(0.320384,0.004806,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.320384,0.004806,-0.003750,0.249972,0,0);}
.m133_c01164{transform:matrix(0.344216,0.006884,-0.004999,0.249950,0,0);-ms-transform:matrix(0.344216,0.006884,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.344216,0.006884,-0.004999,0.249950,0,0);}
.m136_c01164{transform:matrix(0.365372,0.007307,-0.004999,0.249950,0,0);-ms-transform:matrix(0.365372,0.007307,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.365372,0.007307,-0.004999,0.249950,0,0);}
.m131_c01164{transform:matrix(0.366632,0.007333,-0.004999,0.249950,0,0);-ms-transform:matrix(0.366632,0.007333,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.366632,0.007333,-0.004999,0.249950,0,0);}
.m135_c01164{transform:matrix(0.369401,0.007388,-0.004999,0.249950,0,0);-ms-transform:matrix(0.369401,0.007388,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.369401,0.007388,-0.004999,0.249950,0,0);}
.m12d_c01164{transform:matrix(0.371311,0.007426,-0.004999,0.249950,0,0);-ms-transform:matrix(0.371311,0.007426,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.371311,0.007426,-0.004999,0.249950,0,0);}
.m134_c01164{transform:matrix(0.391012,0.007820,-0.004999,0.249950,0,0);-ms-transform:matrix(0.391012,0.007820,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.391012,0.007820,-0.004999,0.249950,0,0);}
.m132_c01164{transform:matrix(0.392072,0.007841,-0.004999,0.249950,0,0);-ms-transform:matrix(0.392072,0.007841,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.392072,0.007841,-0.004999,0.249950,0,0);}
.m169_c01164{transform:matrix(0.393116,0.005897,-0.003750,0.249972,0,0);-ms-transform:matrix(0.393116,0.005897,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.393116,0.005897,-0.003750,0.249972,0,0);}
.m130_c01164{transform:matrix(0.404689,0.008094,-0.004999,0.249950,0,0);-ms-transform:matrix(0.404689,0.008094,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.404689,0.008094,-0.004999,0.249950,0,0);}
.m12e_c01164{transform:matrix(0.491837,0.009837,-0.004999,0.249950,0,0);-ms-transform:matrix(0.491837,0.009837,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.491837,0.009837,-0.004999,0.249950,0,0);}
.v0_c01164{vertical-align:0.000000px;}
.ls0_c01164{letter-spacing:0.000000px;}
.sc__c01164{text-shadow:none;}
.sc0_c01164{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__c01164{-webkit-text-stroke:0px transparent;}
.sc0_c01164{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01164{word-spacing:0.000000px;}
.fc0_c01164{color:transparent;}
.fsb_c01164{font-size:48.005400px;}
.fs6_c01164{font-size:48.009599px;}
.fs4_c01164{font-size:66.008447px;}
.fs7_c01164{font-size:66.013199px;}
.fs0_c01164{font-size:72.000000px;}
.fs2_c01164{font-size:72.009215px;}
.fse_c01164{font-size:72.024332px;}
.fs1_c01164{font-size:78.009983px;}
.fs5_c01164{font-size:78.015598px;}
.fs9_c01164{font-size:84.012137px;}
.fs8_c01164{font-size:84.026246px;}
.fsd_c01164{font-size:84.028387px;}
.fs3_c01164{font-size:90.011519px;}
.fsc_c01164{font-size:96.000000px;}
.fsa_c01164{font-size:102.011474px;}
.y0_c01164{bottom:0.000000px;}
.y192_c01164{bottom:30.479742px;}
.y191_c01164{bottom:30.480264px;}
.y194_c01164{bottom:30.480279px;}
.y193_c01164{bottom:30.480447px;}
.y190_c01164{bottom:30.480624px;}
.y195_c01164{bottom:30.480804px;}
.y18f_c01164{bottom:30.481284px;}
.y18e_c01164{bottom:30.481836px;}
.y18d_c01164{bottom:44.002464px;}
.y18c_c01164{bottom:45.099222px;}
.y18b_c01164{bottom:46.319571px;}
.y18a_c01164{bottom:48.341643px;}
.y189_c01164{bottom:49.782147px;}
.y188_c01164{bottom:50.651964px;}
.y187_c01164{bottom:51.192855px;}
.y186_c01164{bottom:52.387308px;}
.y185_c01164{bottom:52.914159px;}
.y184_c01164{bottom:54.978624px;}
.y183_c01164{bottom:58.059000px;}
.y182_c01164{bottom:72.156000px;}
.y181_c01164{bottom:82.615867px;}
.y180_c01164{bottom:89.524133px;}
.y17f_c01164{bottom:90.366443px;}
.y17e_c01164{bottom:90.730357px;}
.y17d_c01164{bottom:92.188920px;}
.y17c_c01164{bottom:92.727750px;}
.y17b_c01164{bottom:93.029812px;}
.y17a_c01164{bottom:93.550237px;}
.y179_c01164{bottom:94.391265px;}
.y178_c01164{bottom:95.843955px;}
.y177_c01164{bottom:96.391492px;}
.y176_c01164{bottom:96.887910px;}
.y175_c01164{bottom:98.017500px;}
.y174_c01164{bottom:112.547950px;}
.y173_c01164{bottom:113.870151px;}
.y172_c01164{bottom:114.248902px;}
.y171_c01164{bottom:115.583241px;}
.y170_c01164{bottom:116.133811px;}
.y16f_c01164{bottom:116.698611px;}
.y16e_c01164{bottom:117.993425px;}
.y16d_c01164{bottom:118.576354px;}
.y16c_c01164{bottom:119.286529px;}
.y16b_c01164{bottom:119.883000px;}
.y16a_c01164{bottom:123.030412px;}
.y169_c01164{bottom:124.178888px;}
.y168_c01164{bottom:126.407025px;}
.y167_c01164{bottom:127.238025px;}
.y166_c01164{bottom:129.175013px;}
.y165_c01164{bottom:130.545000px;}
.y164_c01164{bottom:133.279425px;}
.y163_c01164{bottom:136.096163px;}
.y162_c01164{bottom:136.856812px;}
.y161_c01164{bottom:139.059000px;}
.y15f_c01164{bottom:162.161880px;}
.y15e_c01164{bottom:162.162060px;}
.y160_c01164{bottom:162.162390px;}
.y15d_c01164{bottom:165.820680px;}
.y15c_c01164{bottom:168.257220px;}
.y15b_c01164{bottom:168.959520px;}
.y15a_c01164{bottom:170.054640px;}
.y159_c01164{bottom:172.259550px;}
.y158_c01164{bottom:173.367180px;}
.y157_c01164{bottom:174.674370px;}
.y156_c01164{bottom:175.355160px;}
.y155_c01164{bottom:176.007240px;}
.y154_c01164{bottom:177.115530px;}
.y153_c01164{bottom:177.745590px;}
.y152_c01164{bottom:178.670100px;}
.y151_c01164{bottom:179.286000px;}
.y150_c01164{bottom:195.141780px;}
.y14f_c01164{bottom:198.483900px;}
.y14e_c01164{bottom:198.930990px;}
.y14d_c01164{bottom:199.720530px;}
.y14c_c01164{bottom:200.500320px;}
.y14b_c01164{bottom:200.960970px;}
.y14a_c01164{bottom:201.743100px;}
.y149_c01164{bottom:202.022730px;}
.y148_c01164{bottom:203.134950px;}
.y147_c01164{bottom:203.689710px;}
.y146_c01164{bottom:204.203520px;}
.y145_c01164{bottom:204.656910px;}
.y144_c01164{bottom:222.267000px;}
.y143_c01164{bottom:222.898680px;}
.y142_c01164{bottom:225.572760px;}
.y141_c01164{bottom:226.220850px;}
.y140_c01164{bottom:228.219420px;}
.y13f_c01164{bottom:228.873120px;}
.y13e_c01164{bottom:229.984530px;}
.y13d_c01164{bottom:231.951690px;}
.y13c_c01164{bottom:233.727390px;}
.y13b_c01164{bottom:234.633000px;}
.y13a_c01164{bottom:256.492332px;}
.y139_c01164{bottom:257.289888px;}
.y138_c01164{bottom:257.887320px;}
.y137_c01164{bottom:258.878196px;}
.y136_c01164{bottom:259.475940px;}
.y135_c01164{bottom:260.480340px;}
.y134_c01164{bottom:261.881940px;}
.y133_c01164{bottom:263.686164px;}
.y132_c01164{bottom:265.445052px;}
.y131_c01164{bottom:266.231940px;}
.y130_c01164{bottom:267.411552px;}
.y12f_c01164{bottom:268.007808px;}
.y12e_c01164{bottom:291.880860px;}
.y12d_c01164{bottom:293.476116px;}
.y12c_c01164{bottom:294.189300px;}
.y12b_c01164{bottom:295.260804px;}
.y12a_c01164{bottom:295.783740px;}
.y129_c01164{bottom:297.758148px;}
.y128_c01164{bottom:298.241796px;}
.y127_c01164{bottom:298.954788px;}
.y126_c01164{bottom:300.208476px;}
.y125_c01164{bottom:302.299236px;}
.y124_c01164{bottom:302.843004px;}
.y123_c01164{bottom:326.996844px;}
.y122_c01164{bottom:329.205132px;}
.y121_c01164{bottom:330.549768px;}
.y120_c01164{bottom:331.197504px;}
.y11f_c01164{bottom:332.309328px;}
.y11e_c01164{bottom:333.870336px;}
.y11d_c01164{bottom:334.745964px;}
.y11c_c01164{bottom:335.410896px;}
.y11b_c01164{bottom:337.348896px;}
.y11a_c01164{bottom:338.428536px;}
.y119_c01164{bottom:338.913468px;}
.y118_c01164{bottom:339.566496px;}
.y117_c01164{bottom:360.791448px;}
.y116_c01164{bottom:361.352592px;}
.y115_c01164{bottom:362.477064px;}
.y114_c01164{bottom:363.243912px;}
.y113_c01164{bottom:364.951884px;}
.y112_c01164{bottom:365.709732px;}
.y111_c01164{bottom:366.067140px;}
.y110_c01164{bottom:367.188252px;}
.y10f_c01164{bottom:367.762968px;}
.y10e_c01164{bottom:368.529456px;}
.y10d_c01164{bottom:370.011456px;}
.y10c_c01164{bottom:372.241836px;}
.y10b_c01164{bottom:397.123740px;}
.y10a_c01164{bottom:397.640388px;}
.y109_c01164{bottom:400.309632px;}
.y108_c01164{bottom:402.020340px;}
.y107_c01164{bottom:403.011876px;}
.y106_c01164{bottom:405.423300px;}
.y105_c01164{bottom:406.860624px;}
.y104_c01164{bottom:407.632368px;}
.y103_c01164{bottom:408.089700px;}
.y102_c01164{bottom:408.874488px;}
.y101_c01164{bottom:409.991604px;}
.y100_c01164{bottom:412.204308px;}
.yff_c01164{bottom:431.871804px;}
.yfe_c01164{bottom:432.702432px;}
.yfd_c01164{bottom:434.406540px;}
.yfc_c01164{bottom:435.036972px;}
.yfb_c01164{bottom:436.719912px;}
.yfa_c01164{bottom:437.566236px;}
.yf9_c01164{bottom:438.586512px;}
.yf8_c01164{bottom:439.248192px;}
.yf7_c01164{bottom:440.717460px;}
.yf6_c01164{bottom:441.749616px;}
.yf5_c01164{bottom:444.273672px;}
.yf4_c01164{bottom:444.879264px;}
.yf3_c01164{bottom:469.339044px;}
.yf2_c01164{bottom:470.666892px;}
.yf1_c01164{bottom:473.273964px;}
.yf0_c01164{bottom:474.238476px;}
.yef_c01164{bottom:474.822048px;}
.yee_c01164{bottom:475.366884px;}
.yed_c01164{bottom:477.429480px;}
.yec_c01164{bottom:479.467440px;}
.yeb_c01164{bottom:480.252180px;}
.yea_c01164{bottom:503.633940px;}
.ye9_c01164{bottom:504.030912px;}
.ye8_c01164{bottom:506.040156px;}
.ye7_c01164{bottom:506.637588px;}
.ye6_c01164{bottom:507.439152px;}
.ye5_c01164{bottom:507.835980px;}
.ye4_c01164{bottom:508.430100px;}
.ye3_c01164{bottom:508.822608px;}
.ye2_c01164{bottom:510.617004px;}
.ye1_c01164{bottom:511.410552px;}
.ye0_c01164{bottom:512.611140px;}
.ydf_c01164{bottom:513.008040px;}
.yde_c01164{bottom:513.995364px;}
.ydd_c01164{bottom:514.377348px;}
.ydc_c01164{bottom:515.354388px;}
.ydb_c01164{bottom:540.337788px;}
.yda_c01164{bottom:541.140048px;}
.yd9_c01164{bottom:543.341412px;}
.yd8_c01164{bottom:545.518896px;}
.yd7_c01164{bottom:545.926008px;}
.yd6_c01164{bottom:547.312740px;}
.yd5_c01164{bottom:548.120436px;}
.yd4_c01164{bottom:549.490056px;}
.yd3_c01164{bottom:549.892704px;}
.yd2_c01164{bottom:551.268840px;}
.yd1_c01164{bottom:574.917864px;}
.yd0_c01164{bottom:575.332824px;}
.ycf_c01164{bottom:577.016916px;}
.yce_c01164{bottom:577.669200px;}
.ycd_c01164{bottom:579.125916px;}
.ycc_c01164{bottom:579.982644px;}
.ycb_c01164{bottom:581.875176px;}
.yca_c01164{bottom:584.168436px;}
.yc9_c01164{bottom:585.035136px;}
.yc8_c01164{bottom:585.444108px;}
.yc7_c01164{bottom:587.722980px;}
.yc6_c01164{bottom:611.286732px;}
.yc5_c01164{bottom:611.923008px;}
.yc4_c01164{bottom:612.488256px;}
.yc3_c01164{bottom:613.077048px;}
.yc2_c01164{bottom:614.081592px;}
.yc1_c01164{bottom:615.871668px;}
.yc0_c01164{bottom:617.280876px;}
.ybf_c01164{bottom:618.073800px;}
.ybe_c01164{bottom:618.461988px;}
.ybd_c01164{bottom:619.639224px;}
.ybc_c01164{bottom:620.261160px;}
.ybb_c01164{bottom:621.042864px;}
.yba_c01164{bottom:622.229616px;}
.yb9_c01164{bottom:622.825872px;}
.yb8_c01164{bottom:647.983404px;}
.yb7_c01164{bottom:650.414220px;}
.yb6_c01164{bottom:651.969312px;}
.yb5_c01164{bottom:652.638468px;}
.yb4_c01164{bottom:653.718540px;}
.yb3_c01164{bottom:655.273896px;}
.yb2_c01164{bottom:655.731492px;}
.yb1_c01164{bottom:657.271488px;}
.yb0_c01164{bottom:658.146780px;}
.yaf_c01164{bottom:659.690964px;}
.yae_c01164{bottom:660.359952px;}
.yad_c01164{bottom:682.509504px;}
.yac_c01164{bottom:683.720544px;}
.yab_c01164{bottom:684.517884px;}
.yaa_c01164{bottom:685.490052px;}
.ya9_c01164{bottom:686.300604px;}
.ya8_c01164{bottom:687.687120px;}
.ya7_c01164{bottom:688.299396px;}
.ya6_c01164{bottom:688.892508px;}
.ya5_c01164{bottom:690.700740px;}
.ya4_c01164{bottom:691.483524px;}
.ya3_c01164{bottom:692.250528px;}
.ya2_c01164{bottom:693.845256px;}
.ya1_c01164{bottom:716.609076px;}
.ya0_c01164{bottom:717.001584px;}
.y9f_c01164{bottom:718.611468px;}
.y9e_c01164{bottom:719.219184px;}
.y9d_c01164{bottom:720.220272px;}
.y9c_c01164{bottom:720.817704px;}
.y9b_c01164{bottom:721.220280px;}
.y9a_c01164{bottom:722.607012px;}
.y99_c01164{bottom:723.204516px;}
.y98_c01164{bottom:723.807768px;}
.y97_c01164{bottom:727.181208px;}
.y96_c01164{bottom:727.949316px;}
.y95_c01164{bottom:728.949228px;}
.y94_c01164{bottom:753.687024px;}
.y93_c01164{bottom:754.412832px;}
.y92_c01164{bottom:755.843328px;}
.y91_c01164{bottom:756.209784px;}
.y90_c01164{bottom:757.612176px;}
.y8f_c01164{bottom:758.854728px;}
.y8e_c01164{bottom:760.085976px;}
.y8d_c01164{bottom:760.963368px;}
.y8c_c01164{bottom:762.056472px;}
.y8b_c01164{bottom:762.574728px;}
.y8a_c01164{bottom:764.324232px;}
.y89_c01164{bottom:788.602356px;}
.y88_c01164{bottom:789.170892px;}
.y87_c01164{bottom:790.327320px;}
.y86_c01164{bottom:791.062356px;}
.y85_c01164{bottom:792.576768px;}
.y84_c01164{bottom:793.145304px;}
.y83_c01164{bottom:794.265600px;}
.y82_c01164{bottom:794.834568px;}
.y81_c01164{bottom:795.413244px;}
.y80_c01164{bottom:797.653692px;}
.y7f_c01164{bottom:798.218196px;}
.y7e_c01164{bottom:799.498236px;}
.y7d_c01164{bottom:800.237160px;}
.y7c_c01164{bottom:825.774348px;}
.y7b_c01164{bottom:826.332444px;}
.y7a_c01164{bottom:827.939820px;}
.y79_c01164{bottom:828.467148px;}
.y78_c01164{bottom:829.347564px;}
.y77_c01164{bottom:830.233332px;}
.y76_c01164{bottom:830.942004px;}
.y75_c01164{bottom:832.873836px;}
.y74_c01164{bottom:833.422740px;}
.y73_c01164{bottom:834.999540px;}
.y72_c01164{bottom:835.694268px;}
.y71_c01164{bottom:836.420700px;}
.y70_c01164{bottom:863.109540px;}
.y6f_c01164{bottom:864.089316px;}
.y6e_c01164{bottom:864.636780px;}
.y6d_c01164{bottom:865.253424px;}
.y6c_c01164{bottom:866.630364px;}
.y6b_c01164{bottom:867.120156px;}
.y6a_c01164{bottom:868.457472px;}
.y69_c01164{bottom:869.113932px;}
.y68_c01164{bottom:869.932596px;}
.y67_c01164{bottom:870.929388px;}
.y66_c01164{bottom:871.427556px;}
.y65_c01164{bottom:872.067972px;}
.y64_c01164{bottom:898.280064px;}
.y63_c01164{bottom:898.719636px;}
.y62_c01164{bottom:899.864100px;}
.y61_c01164{bottom:900.154680px;}
.y60_c01164{bottom:901.152852px;}
.y5f_c01164{bottom:901.885656px;}
.y5e_c01164{bottom:902.759628px;}
.y5d_c01164{bottom:903.321924px;}
.y5c_c01164{bottom:903.757056px;}
.y5b_c01164{bottom:905.055528px;}
.y5a_c01164{bottom:905.764812px;}
.y59_c01164{bottom:906.314712px;}
.y58_c01164{bottom:906.901152px;}
.y57_c01164{bottom:933.624816px;}
.y56_c01164{bottom:933.961008px;}
.y55_c01164{bottom:935.805984px;}
.y54_c01164{bottom:936.270864px;}
.y53_c01164{bottom:938.445324px;}
.y52_c01164{bottom:938.922264px;}
.y51_c01164{bottom:939.383184px;}
.y50_c01164{bottom:940.162128px;}
.y4f_c01164{bottom:940.611828px;}
.y4e_c01164{bottom:941.076420px;}
.y4d_c01164{bottom:942.006144px;}
.y4c_c01164{bottom:967.159488px;}
.y4b_c01164{bottom:967.803228px;}
.y4a_c01164{bottom:968.109984px;}
.y49_c01164{bottom:969.038988px;}
.y48_c01164{bottom:969.625308px;}
.y47_c01164{bottom:970.607220px;}
.y46_c01164{bottom:971.382036px;}
.y45_c01164{bottom:971.680500px;}
.y44_c01164{bottom:972.778140px;}
.y43_c01164{bottom:973.232040px;}
.y42_c01164{bottom:974.460708px;}
.y41_c01164{bottom:975.242472px;}
.y40_c01164{bottom:976.300332px;}
.y3f_c01164{bottom:1002.354180px;}
.y3e_c01164{bottom:1002.775152px;}
.y3d_c01164{bottom:1003.792572px;}
.y3c_c01164{bottom:1005.375108px;}
.y3b_c01164{bottom:1005.807756px;}
.y3a_c01164{bottom:1006.523844px;}
.y39_c01164{bottom:1007.088528px;}
.y38_c01164{bottom:1007.675064px;}
.y37_c01164{bottom:1008.110364px;}
.y36_c01164{bottom:1008.964368px;}
.y35_c01164{bottom:1009.687884px;}
.y34_c01164{bottom:1010.112840px;}
.y33_c01164{bottom:1010.958984px;}
.y32_c01164{bottom:1011.403956px;}
.y31_c01164{bottom:1037.963892px;}
.y30_c01164{bottom:1038.531756px;}
.y2f_c01164{bottom:1039.882464px;}
.y2e_c01164{bottom:1040.603424px;}
.y2d_c01164{bottom:1041.175752px;}
.y2c_c01164{bottom:1043.048076px;}
.y2b_c01164{bottom:1043.627040px;}
.y2a_c01164{bottom:1044.199296px;}
.y29_c01164{bottom:1045.876272px;}
.y28_c01164{bottom:1046.449200px;}
.y27_c01164{bottom:1047.588492px;}
.y26_c01164{bottom:1073.578740px;}
.y25_c01164{bottom:1074.670980px;}
.y24_c01164{bottom:1075.604784px;}
.y23_c01164{bottom:1076.247132px;}
.y22_c01164{bottom:1076.851332px;}
.y21_c01164{bottom:1077.778596px;}
.y20_c01164{bottom:1078.570464px;}
.y1f_c01164{bottom:1079.647704px;}
.y1e_c01164{bottom:1080.419580px;}
.y1d_c01164{bottom:1081.632228px;}
.y1c_c01164{bottom:1082.422224px;}
.y1b_c01164{bottom:1108.036380px;}
.y1a_c01164{bottom:1109.888508px;}
.y19_c01164{bottom:1111.070832px;}
.y18_c01164{bottom:1112.047668px;}
.y17_c01164{bottom:1112.719716px;}
.y16_c01164{bottom:1114.210956px;}
.y15_c01164{bottom:1115.548272px;}
.y14_c01164{bottom:1116.211872px;}
.y13_c01164{bottom:1117.212720px;}
.y12_c01164{bottom:1117.843728px;}
.y11_c01164{bottom:1118.337456px;}
.y10_c01164{bottom:1144.536096px;}
.yf_c01164{bottom:1145.785512px;}
.ye_c01164{bottom:1146.298968px;}
.yd_c01164{bottom:1147.742904px;}
.yc_c01164{bottom:1148.464320px;}
.yb_c01164{bottom:1148.796168px;}
.ya_c01164{bottom:1149.150576px;}
.y9_c01164{bottom:1150.058760px;}
.y8_c01164{bottom:1150.581480px;}
.y7_c01164{bottom:1151.476080px;}
.y6_c01164{bottom:1151.809104px;}
.y5_c01164{bottom:1153.061736px;}
.y4_c01164{bottom:1153.934256px;}
.y3_c01164{bottom:1154.637288px;}
.y2_c01164{bottom:1155.333000px;}
.y1_c01164{bottom:1208.937000px;}
.hd_c01164{height:48.005400px;}
.h8_c01164{height:48.009599px;}
.h6_c01164{height:66.008447px;}
.h9_c01164{height:66.013199px;}
.h2_c01164{height:72.000000px;}
.h4_c01164{height:72.009215px;}
.h10_c01164{height:72.024332px;}
.h3_c01164{height:78.009983px;}
.h7_c01164{height:78.015598px;}
.hb_c01164{height:84.012137px;}
.ha_c01164{height:84.026246px;}
.hf_c01164{height:84.028387px;}
.h5_c01164{height:90.011519px;}
.he_c01164{height:96.000000px;}
.hc_c01164{height:102.011474px;}
.h1_c01164{height:1258.500000px;}
.h0_c01164{height:1258.740000px;}
.w0_c01164{width:904.200000px;}
.w1_c01164{width:904.500000px;}
.x0_c01164{left:0.000000px;}
.xdb_c01164{left:139.984500px;}
.xde_c01164{left:141.265230px;}
.xcf_c01164{left:142.345872px;}
.xac_c01164{left:143.422968px;}
.xbc_c01164{left:144.514260px;}
.x7f_c01164{left:145.850076px;}
.x58_c01164{left:148.026384px;}
.x40_c01164{left:149.406672px;}
.x1b_c01164{left:151.023168px;}
.x4_c01164{left:153.204000px;}
.xef_c01164{left:172.600500px;}
.xdf_c01164{left:173.688630px;}
.xd5_c01164{left:175.534608px;}
.xb4_c01164{left:176.856516px;}
.x80_c01164{left:179.315940px;}
.x2d_c01164{left:184.778688px;}
.x12_c01164{left:185.879688px;}
.xad_c01164{left:189.562224px;}
.x51_c01164{left:192.856824px;}
.x47_c01164{left:194.811876px;}
.x5_c01164{left:196.686000px;}
.xa2_c01164{left:200.410416px;}
.x6d_c01164{left:203.329440px;}
.x1c_c01164{left:207.430968px;}
.xe0_c01164{left:210.408540px;}
.x41_c01164{left:215.860308px;}
.xe5_c01164{left:219.543000px;}
.x9a_c01164{left:221.993040px;}
.x38_c01164{left:226.875144px;}
.x13_c01164{left:227.943360px;}
.xeb_c01164{left:229.777500px;}
.x75_c01164{left:235.784712px;}
.x48_c01164{left:237.151416px;}
.x6_c01164{left:240.625500px;}
.x89_c01164{left:244.939524px;}
.x6e_c01164{left:245.991072px;}
.xf0_c01164{left:247.906500px;}
.x2e_c01164{left:249.853308px;}
.xe6_c01164{left:251.046000px;}
.xca_c01164{left:254.589552px;}
.x67_c01164{left:257.090064px;}
.xf6_c01164{left:259.086000px;}
.x24_c01164{left:260.320944px;}
.xea_c01164{left:261.383190px;}
.x93_c01164{left:266.266548px;}
.x5d_c01164{left:268.415112px;}
.xc3_c01164{left:274.894716px;}
.xa3_c01164{left:276.520992px;}
.x76_c01164{left:278.377344px;}
.x42_c01164{left:281.161896px;}
.x2f_c01164{left:282.508368px;}
.xd6_c01164{left:284.843628px;}
.x8a_c01164{left:288.357132px;}
.x68_c01164{left:289.481064px;}
.x49_c01164{left:291.703032px;}
.x1d_c01164{left:294.099252px;}
.x7_c01164{left:295.158000px;}
.xa4_c01164{left:298.607796px;}
.x81_c01164{left:300.244188px;}
.x5e_c01164{left:301.633584px;}
.xd0_c01164{left:307.003872px;}
.xae_c01164{left:309.432804px;}
.xf1_c01164{left:317.503500px;}
.x9b_c01164{left:320.475396px;}
.x77_c01164{left:321.862452px;}
.x8b_c01164{left:322.914528px;}
.x25_c01164{left:327.306864px;}
.xe1_c01164{left:329.471820px;}
.xbd_c01164{left:331.534308px;}
.x94_c01164{left:333.430332px;}
.x59_c01164{left:335.398884px;}
.x43_c01164{left:336.785172px;}
.x14_c01164{left:338.910636px;}
.x52_c01164{left:347.023272px;}
.x1e_c01164{left:349.187004px;}
.xbe_c01164{left:352.334316px;}
.x69_c01164{left:357.800064px;}
.x26_c01164{left:361.051836px;}
.xc4_c01164{left:362.080824px;}
.xb5_c01164{left:363.954516px;}
.x9c_c01164{left:365.329956px;}
.x39_c01164{left:370.531752px;}
.xdc_c01164{left:372.408000px;}
.x8_c01164{left:373.447500px;}
.x82_c01164{left:377.270268px;}
.xd7_c01164{left:382.583508px;}
.xcb_c01164{left:384.733224px;}
.x8c_c01164{left:388.333440px;}
.x4a_c01164{left:391.612332px;}
.x9_c01164{left:394.261500px;}
.x83_c01164{left:400.149804px;}
.x30_c01164{left:403.796676px;}
.xe2_c01164{left:405.368940px;}
.xc5_c01164{left:407.173104px;}
.x8d_c01164{left:409.875744px;}
.x6a_c01164{left:412.637064px;}
.xf2_c01164{left:414.349500px;}
.x78_c01164{left:422.311236px;}
.x1f_c01164{left:426.079452px;}
.x15_c01164{left:428.025552px;}
.x1_c01164{left:429.030000px;}
.xaf_c01164{left:430.749360px;}
.x5f_c01164{left:433.409472px;}
.x31_c01164{left:437.285784px;}
.xe3_c01164{left:438.305400px;}
.xb6_c01164{left:441.248796px;}
.x9d_c01164{left:442.341984px;}
.x2_c01164{left:450.900000px;}
.xbf_c01164{left:452.797692px;}
.x8e_c01164{left:453.900828px;}
.x79_c01164{left:455.254680px;}
.x27_c01164{left:459.673752px;}
.xb0_c01164{left:462.832356px;}
.x9e_c01164{left:464.973264px;}
.x6f_c01164{left:466.870992px;}
.x4b_c01164{left:468.299004px;}
.xf3_c01164{left:470.418000px;}
.xf9_c01164{left:471.800157px;}
.xb7_c01164{left:476.039616px;}
.x84_c01164{left:477.948336px;}
.x53_c01164{left:479.886384px;}
.x3a_c01164{left:481.287780px;}
.xa_c01164{left:482.844000px;}
.x7a_c01164{left:489.302100px;}
.x5a_c01164{left:490.444884px;}
.x28_c01164{left:493.376724px;}
.x3_c01164{left:495.450000px;}
.xb1_c01164{left:497.148804px;}
.x60_c01164{left:500.917392px;}
.x3b_c01164{left:502.567452px;}
.xf4_c01164{left:505.113000px;}
.xc6_c01164{left:506.879496px;}
.xa5_c01164{left:509.040552px;}
.x54_c01164{left:512.561412px;}
.xf7_c01164{left:514.354500px;}
.xee_c01164{left:515.379000px;}
.x32_c01164{left:525.835032px;}
.x16_c01164{left:527.417136px;}
.xb8_c01164{left:529.773048px;}
.xa6_c01164{left:530.852856px;}
.x85_c01164{left:531.949380px;}
.x4c_c01164{left:535.581744px;}
.xec_c01164{left:537.049500px;}
.xb_c01164{left:539.605500px;}
.x20_c01164{left:548.810364px;}
.xe4_c01164{left:550.385340px;}
.x95_c01164{left:553.781772px;}
.x3c_c01164{left:557.932728px;}
.x44_c01164{left:559.062276px;}
.xd8_c01164{left:560.629296px;}
.xc_c01164{left:561.756000px;}
.xa7_c01164{left:563.859300px;}
.x86_c01164{left:565.425744px;}
.x61_c01164{left:566.809836px;}
.xfa_c01164{left:571.192815px;}
.x17_c01164{left:572.233356px;}
.xb9_c01164{left:574.322412px;}
.x70_c01164{left:577.100964px;}
.x33_c01164{left:580.905672px;}
.xd_c01164{left:582.496500px;}
.xd1_c01164{left:583.549872px;}
.x9f_c01164{left:585.968400px;}
.x5b_c01164{left:590.097384px;}
.x21_c01164{left:592.011756px;}
.xcc_c01164{left:594.575808px;}
.x96_c01164{left:598.887612px;}
.x62_c01164{left:600.280308px;}
.x55_c01164{left:604.340376px;}
.xc0_c01164{left:607.530360px;}
.x7b_c01164{left:611.333688px;}
.x34_c01164{left:614.135256px;}
.xd2_c01164{left:616.233372px;}
.xe_c01164{left:627.585000px;}
.xa8_c01164{left:630.506688px;}
.x8f_c01164{left:631.631640px;}
.x71_c01164{left:632.662188px;}
.x18_c01164{left:637.317888px;}
.xf8_c01164{left:639.063000px;}
.x87_c01164{left:643.207776px;}
.x56_c01164{left:645.412524px;}
.xed_c01164{left:647.769000px;}
.xd9_c01164{left:649.697964px;}
.x6b_c01164{left:654.899064px;}
.xe7_c01164{left:658.846500px;}
.xcd_c01164{left:661.830012px;}
.xa9_c01164{left:663.720132px;}
.x7c_c01164{left:665.342460px;}
.x4d_c01164{left:668.711628px;}
.x3d_c01164{left:670.013328px;}
.x29_c01164{left:671.287392px;}
.xc7_c01164{left:672.922332px;}
.x97_c01164{left:675.584940px;}
.x5c_c01164{left:678.081384px;}
.x57_c01164{left:681.879600px;}
.xd3_c01164{left:683.202372px;}
.xc1_c01164{left:685.285896px;}
.x72_c01164{left:688.290912px;}
.x63_c01164{left:689.398392px;}
.x4e_c01164{left:691.092708px;}
.xe8_c01164{left:693.961500px;}
.xba_c01164{left:696.121080px;}
.x22_c01164{left:704.587356px;}
.xb2_c01164{left:707.244444px;}
.xa0_c01164{left:708.268488px;}
.x7d_c01164{left:709.643544px;}
.x2a_c01164{left:713.721720px;}
.x19_c01164{left:716.183160px;}
.xf_c01164{left:717.831000px;}
.x90_c01164{left:720.149808px;}
.x73_c01164{left:722.053332px;}
.x45_c01164{left:724.058556px;}
.xdd_c01164{left:726.700500px;}
.xd4_c01164{left:727.776372px;}
.x64_c01164{left:732.618696px;}
.x35_c01164{left:735.924612px;}
.xda_c01164{left:737.995656px;}
.x46_c01164{left:748.071324px;}
.x10_c01164{left:749.922000px;}
.x91_c01164{left:751.539300px;}
.xa1_c01164{left:752.877072px;}
.x3e_c01164{left:758.313660px;}
.x88_c01164{left:764.751000px;}
.x6c_c01164{left:767.208564px;}
.xf5_c01164{left:769.500000px;}
.xce_c01164{left:772.278456px;}
.xaa_c01164{left:775.325556px;}
.x7e_c01164{left:776.893884px;}
.x4f_c01164{left:779.125932px;}
.x23_c01164{left:782.604852px;}
.xc8_c01164{left:784.190556px;}
.xb3_c01164{left:785.358696px;}
.x92_c01164{left:786.899172px;}
.x2b_c01164{left:793.170948px;}
.xab_c01164{left:797.416860px;}
.x98_c01164{left:798.540036px;}
.x65_c01164{left:800.675616px;}
.x3f_c01164{left:804.267624px;}
.xc2_c01164{left:806.633256px;}
.x74_c01164{left:811.511976px;}
.x50_c01164{left:812.882040px;}
.x36_c01164{left:814.235880px;}
.xe9_c01164{left:815.788500px;}
.xc9_c01164{left:817.199028px;}
.x99_c01164{left:820.348980px;}
.x2c_c01164{left:826.599420px;}
.x11_c01164{left:828.010500px;}
.xbb_c01164{left:829.598196px;}
.x66_c01164{left:834.146088px;}
.x1a_c01164{left:839.630628px;}
.x37_c01164{left:846.641940px;}
@media print{
.v0_c01164{vertical-align:0.000000pt;}
.ls0_c01164{letter-spacing:0.000000pt;}
.ws0_c01164{word-spacing:0.000000pt;}
.fsb_c01164{font-size:42.671466pt;}
.fs6_c01164{font-size:42.675199pt;}
.fs4_c01164{font-size:58.674176pt;}
.fs7_c01164{font-size:58.678399pt;}
.fs0_c01164{font-size:64.000000pt;}
.fs2_c01164{font-size:64.008191pt;}
.fse_c01164{font-size:64.021628pt;}
.fs1_c01164{font-size:69.342207pt;}
.fs5_c01164{font-size:69.347199pt;}
.fs9_c01164{font-size:74.677455pt;}
.fs8_c01164{font-size:74.689996pt;}
.fsd_c01164{font-size:74.691900pt;}
.fs3_c01164{font-size:80.010239pt;}
.fsc_c01164{font-size:85.333333pt;}
.fsa_c01164{font-size:90.676866pt;}
.y0_c01164{bottom:0.000000pt;}
.y192_c01164{bottom:27.093104pt;}
.y191_c01164{bottom:27.093568pt;}
.y194_c01164{bottom:27.093581pt;}
.y193_c01164{bottom:27.093731pt;}
.y190_c01164{bottom:27.093888pt;}
.y195_c01164{bottom:27.094048pt;}
.y18f_c01164{bottom:27.094475pt;}
.y18e_c01164{bottom:27.094965pt;}
.y18d_c01164{bottom:39.113301pt;}
.y18c_c01164{bottom:40.088197pt;}
.y18b_c01164{bottom:41.172952pt;}
.y18a_c01164{bottom:42.970349pt;}
.y189_c01164{bottom:44.250797pt;}
.y188_c01164{bottom:45.023968pt;}
.y187_c01164{bottom:45.504760pt;}
.y186_c01164{bottom:46.566496pt;}
.y185_c01164{bottom:47.034808pt;}
.y184_c01164{bottom:48.869888pt;}
.y183_c01164{bottom:51.608000pt;}
.y182_c01164{bottom:64.138667pt;}
.y181_c01164{bottom:73.436327pt;}
.y180_c01164{bottom:79.577007pt;}
.y17f_c01164{bottom:80.325727pt;}
.y17e_c01164{bottom:80.649207pt;}
.y17d_c01164{bottom:81.945707pt;}
.y17c_c01164{bottom:82.424667pt;}
.y17b_c01164{bottom:82.693167pt;}
.y17a_c01164{bottom:83.155767pt;}
.y179_c01164{bottom:83.903347pt;}
.y178_c01164{bottom:85.194627pt;}
.y177_c01164{bottom:85.681327pt;}
.y176_c01164{bottom:86.122587pt;}
.y175_c01164{bottom:87.126667pt;}
.y174_c01164{bottom:100.042623pt;}
.y173_c01164{bottom:101.217912pt;}
.y172_c01164{bottom:101.554580pt;}
.y171_c01164{bottom:102.740659pt;}
.y170_c01164{bottom:103.230055pt;}
.y16f_c01164{bottom:103.732099pt;}
.y16e_c01164{bottom:104.883044pt;}
.y16d_c01164{bottom:105.401204pt;}
.y16c_c01164{bottom:106.032471pt;}
.y16b_c01164{bottom:106.562667pt;}
.y16a_c01164{bottom:109.360367pt;}
.y169_c01164{bottom:110.381233pt;}
.y168_c01164{bottom:112.361800pt;}
.y167_c01164{bottom:113.100467pt;}
.y166_c01164{bottom:114.822233pt;}
.y165_c01164{bottom:116.040000pt;}
.y164_c01164{bottom:118.470600pt;}
.y163_c01164{bottom:120.974367pt;}
.y162_c01164{bottom:121.650500pt;}
.y161_c01164{bottom:123.608000pt;}
.y15f_c01164{bottom:144.143893pt;}
.y15e_c01164{bottom:144.144053pt;}
.y160_c01164{bottom:144.144347pt;}
.y15d_c01164{bottom:147.396160pt;}
.y15c_c01164{bottom:149.561973pt;}
.y15b_c01164{bottom:150.186240pt;}
.y15a_c01164{bottom:151.159680pt;}
.y159_c01164{bottom:153.119600pt;}
.y158_c01164{bottom:154.104160pt;}
.y157_c01164{bottom:155.266107pt;}
.y156_c01164{bottom:155.871253pt;}
.y155_c01164{bottom:156.450880pt;}
.y154_c01164{bottom:157.436027pt;}
.y153_c01164{bottom:157.996080pt;}
.y152_c01164{bottom:158.817867pt;}
.y151_c01164{bottom:159.365333pt;}
.y150_c01164{bottom:173.459360pt;}
.y14f_c01164{bottom:176.430133pt;}
.y14e_c01164{bottom:176.827547pt;}
.y14d_c01164{bottom:177.529360pt;}
.y14c_c01164{bottom:178.222507pt;}
.y14b_c01164{bottom:178.631973pt;}
.y14a_c01164{bottom:179.327200pt;}
.y149_c01164{bottom:179.575760pt;}
.y148_c01164{bottom:180.564400pt;}
.y147_c01164{bottom:181.057520pt;}
.y146_c01164{bottom:181.514240pt;}
.y145_c01164{bottom:181.917253pt;}
.y144_c01164{bottom:197.570667pt;}
.y143_c01164{bottom:198.132160pt;}
.y142_c01164{bottom:200.509120pt;}
.y141_c01164{bottom:201.085200pt;}
.y140_c01164{bottom:202.861707pt;}
.y13f_c01164{bottom:203.442773pt;}
.y13e_c01164{bottom:204.430693pt;}
.y13d_c01164{bottom:206.179280pt;}
.y13c_c01164{bottom:207.757680pt;}
.y13b_c01164{bottom:208.562667pt;}
.y13a_c01164{bottom:227.993184pt;}
.y139_c01164{bottom:228.702123pt;}
.y138_c01164{bottom:229.233173pt;}
.y137_c01164{bottom:230.113952pt;}
.y136_c01164{bottom:230.645280pt;}
.y135_c01164{bottom:231.538080pt;}
.y134_c01164{bottom:232.783947pt;}
.y133_c01164{bottom:234.387701pt;}
.y132_c01164{bottom:235.951157pt;}
.y131_c01164{bottom:236.650613pt;}
.y130_c01164{bottom:237.699157pt;}
.y12f_c01164{bottom:238.229163pt;}
.y12e_c01164{bottom:259.449653pt;}
.y12d_c01164{bottom:260.867659pt;}
.y12c_c01164{bottom:261.501600pt;}
.y12b_c01164{bottom:262.454048pt;}
.y12a_c01164{bottom:262.918880pt;}
.y129_c01164{bottom:264.673909pt;}
.y128_c01164{bottom:265.103819pt;}
.y127_c01164{bottom:265.737589pt;}
.y126_c01164{bottom:266.851979pt;}
.y125_c01164{bottom:268.710432pt;}
.y124_c01164{bottom:269.193781pt;}
.y123_c01164{bottom:290.663861pt;}
.y122_c01164{bottom:292.626784pt;}
.y121_c01164{bottom:293.822016pt;}
.y120_c01164{bottom:294.397781pt;}
.y11f_c01164{bottom:295.386069pt;}
.y11e_c01164{bottom:296.773632pt;}
.y11d_c01164{bottom:297.551968pt;}
.y11c_c01164{bottom:298.143019pt;}
.y11b_c01164{bottom:299.865685pt;}
.y11a_c01164{bottom:300.825365pt;}
.y119_c01164{bottom:301.256416pt;}
.y118_c01164{bottom:301.836885pt;}
.y117_c01164{bottom:320.703509pt;}
.y116_c01164{bottom:321.202304pt;}
.y115_c01164{bottom:322.201835pt;}
.y114_c01164{bottom:322.883477pt;}
.y113_c01164{bottom:324.401675pt;}
.y112_c01164{bottom:325.075317pt;}
.y111_c01164{bottom:325.393013pt;}
.y110_c01164{bottom:326.389557pt;}
.y10f_c01164{bottom:326.900416pt;}
.y10e_c01164{bottom:327.581739pt;}
.y10d_c01164{bottom:328.899072pt;}
.y10c_c01164{bottom:330.881632pt;}
.y10b_c01164{bottom:352.998880pt;}
.y10a_c01164{bottom:353.458123pt;}
.y109_c01164{bottom:355.830784pt;}
.y108_c01164{bottom:357.351413pt;}
.y107_c01164{bottom:358.232779pt;}
.y106_c01164{bottom:360.376267pt;}
.y105_c01164{bottom:361.653888pt;}
.y104_c01164{bottom:362.339883pt;}
.y103_c01164{bottom:362.746400pt;}
.y102_c01164{bottom:363.443989pt;}
.y101_c01164{bottom:364.436981pt;}
.y100_c01164{bottom:366.403829pt;}
.yff_c01164{bottom:383.886048pt;}
.yfe_c01164{bottom:384.624384pt;}
.yfd_c01164{bottom:386.139147pt;}
.yfc_c01164{bottom:386.699531pt;}
.yfb_c01164{bottom:388.195477pt;}
.yfa_c01164{bottom:388.947765pt;}
.yf9_c01164{bottom:389.854677pt;}
.yf8_c01164{bottom:390.442837pt;}
.yf7_c01164{bottom:391.748853pt;}
.yf6_c01164{bottom:392.666325pt;}
.yf5_c01164{bottom:394.909931pt;}
.yf4_c01164{bottom:395.448235pt;}
.yf3_c01164{bottom:417.190261pt;}
.yf2_c01164{bottom:418.370571pt;}
.yf1_c01164{bottom:420.687968pt;}
.yf0_c01164{bottom:421.545312pt;}
.yef_c01164{bottom:422.064043pt;}
.yee_c01164{bottom:422.548341pt;}
.yed_c01164{bottom:424.381760pt;}
.yec_c01164{bottom:426.193280pt;}
.yeb_c01164{bottom:426.890827pt;}
.yea_c01164{bottom:447.674613pt;}
.ye9_c01164{bottom:448.027477pt;}
.ye8_c01164{bottom:449.813472pt;}
.ye7_c01164{bottom:450.344523pt;}
.ye6_c01164{bottom:451.057024pt;}
.ye5_c01164{bottom:451.409760pt;}
.ye4_c01164{bottom:451.937867pt;}
.ye3_c01164{bottom:452.286763pt;}
.ye2_c01164{bottom:453.881781pt;}
.ye1_c01164{bottom:454.587157pt;}
.ye0_c01164{bottom:455.654347pt;}
.ydf_c01164{bottom:456.007147pt;}
.yde_c01164{bottom:456.884768pt;}
.ydd_c01164{bottom:457.224309pt;}
.ydc_c01164{bottom:458.092789pt;}
.ydb_c01164{bottom:480.300256pt;}
.yda_c01164{bottom:481.013376pt;}
.yd9_c01164{bottom:482.970144pt;}
.yd8_c01164{bottom:484.905685pt;}
.yd7_c01164{bottom:485.267563pt;}
.yd6_c01164{bottom:486.500213pt;}
.yd5_c01164{bottom:487.218165pt;}
.yd4_c01164{bottom:488.435605pt;}
.yd3_c01164{bottom:488.793515pt;}
.yd2_c01164{bottom:490.016747pt;}
.yd1_c01164{bottom:511.038101pt;}
.yd0_c01164{bottom:511.406955pt;}
.ycf_c01164{bottom:512.903925pt;}
.yce_c01164{bottom:513.483733pt;}
.ycd_c01164{bottom:514.778592pt;}
.ycc_c01164{bottom:515.540128pt;}
.ycb_c01164{bottom:517.222379pt;}
.yca_c01164{bottom:519.260832pt;}
.yc9_c01164{bottom:520.031232pt;}
.yc8_c01164{bottom:520.394763pt;}
.yc7_c01164{bottom:522.420427pt;}
.yc6_c01164{bottom:543.365984pt;}
.yc5_c01164{bottom:543.931563pt;}
.yc4_c01164{bottom:544.434005pt;}
.yc3_c01164{bottom:544.957376pt;}
.yc2_c01164{bottom:545.850304pt;}
.yc1_c01164{bottom:547.441483pt;}
.yc0_c01164{bottom:548.694112pt;}
.ybf_c01164{bottom:549.398933pt;}
.ybe_c01164{bottom:549.743989pt;}
.ybd_c01164{bottom:550.790421pt;}
.ybc_c01164{bottom:551.343253pt;}
.ybb_c01164{bottom:552.038101pt;}
.yba_c01164{bottom:553.092992pt;}
.yb9_c01164{bottom:553.622997pt;}
.yb8_c01164{bottom:575.985248pt;}
.yb7_c01164{bottom:578.145973pt;}
.yb6_c01164{bottom:579.528277pt;}
.yb5_c01164{bottom:580.123083pt;}
.yb4_c01164{bottom:581.083147pt;}
.yb3_c01164{bottom:582.465685pt;}
.yb2_c01164{bottom:582.872437pt;}
.yb1_c01164{bottom:584.241323pt;}
.yb0_c01164{bottom:585.019360pt;}
.yaf_c01164{bottom:586.391968pt;}
.yae_c01164{bottom:586.986624pt;}
.yad_c01164{bottom:606.675115pt;}
.yac_c01164{bottom:607.751595pt;}
.yab_c01164{bottom:608.460341pt;}
.yaa_c01164{bottom:609.324491pt;}
.ya9_c01164{bottom:610.044981pt;}
.ya8_c01164{bottom:611.277440pt;}
.ya7_c01164{bottom:611.821685pt;}
.ya6_c01164{bottom:612.348896pt;}
.ya5_c01164{bottom:613.956213pt;}
.ya4_c01164{bottom:614.652021pt;}
.ya3_c01164{bottom:615.333803pt;}
.ya2_c01164{bottom:616.751339pt;}
.ya1_c01164{bottom:636.985845pt;}
.ya0_c01164{bottom:637.334741pt;}
.y9f_c01164{bottom:638.765749pt;}
.y9e_c01164{bottom:639.305941pt;}
.y9d_c01164{bottom:640.195797pt;}
.y9c_c01164{bottom:640.726848pt;}
.y9b_c01164{bottom:641.084693pt;}
.y9a_c01164{bottom:642.317344pt;}
.y99_c01164{bottom:642.848459pt;}
.y98_c01164{bottom:643.384683pt;}
.y97_c01164{bottom:646.383296pt;}
.y96_c01164{bottom:647.066059pt;}
.y95_c01164{bottom:647.954869pt;}
.y94_c01164{bottom:669.944021pt;}
.y93_c01164{bottom:670.589184pt;}
.y92_c01164{bottom:671.860736pt;}
.y91_c01164{bottom:672.186475pt;}
.y90_c01164{bottom:673.433045pt;}
.y8f_c01164{bottom:674.537536pt;}
.y8e_c01164{bottom:675.631979pt;}
.y8d_c01164{bottom:676.411883pt;}
.y8c_c01164{bottom:677.383531pt;}
.y8b_c01164{bottom:677.844203pt;}
.y8a_c01164{bottom:679.399317pt;}
.y89_c01164{bottom:700.979872pt;}
.y88_c01164{bottom:701.485237pt;}
.y87_c01164{bottom:702.513173pt;}
.y86_c01164{bottom:703.166539pt;}
.y85_c01164{bottom:704.512683pt;}
.y84_c01164{bottom:705.018048pt;}
.y83_c01164{bottom:706.013867pt;}
.y82_c01164{bottom:706.519616pt;}
.y81_c01164{bottom:707.033995pt;}
.y80_c01164{bottom:709.025504pt;}
.y7f_c01164{bottom:709.527285pt;}
.y7e_c01164{bottom:710.665099pt;}
.y7d_c01164{bottom:711.321920pt;}
.y7c_c01164{bottom:734.021643pt;}
.y7b_c01164{bottom:734.517728pt;}
.y7a_c01164{bottom:735.946507pt;}
.y79_c01164{bottom:736.415243pt;}
.y78_c01164{bottom:737.197835pt;}
.y77_c01164{bottom:737.985184pt;}
.y76_c01164{bottom:738.615115pt;}
.y75_c01164{bottom:740.332299pt;}
.y74_c01164{bottom:740.820213pt;}
.y73_c01164{bottom:742.221813pt;}
.y72_c01164{bottom:742.839349pt;}
.y71_c01164{bottom:743.485067pt;}
.y70_c01164{bottom:767.208480pt;}
.y6f_c01164{bottom:768.079392pt;}
.y6e_c01164{bottom:768.566027pt;}
.y6d_c01164{bottom:769.114155pt;}
.y6c_c01164{bottom:770.338101pt;}
.y6b_c01164{bottom:770.773472pt;}
.y6a_c01164{bottom:771.962197pt;}
.y69_c01164{bottom:772.545717pt;}
.y68_c01164{bottom:773.273419pt;}
.y67_c01164{bottom:774.159456pt;}
.y66_c01164{bottom:774.602272pt;}
.y65_c01164{bottom:775.171531pt;}
.y64_c01164{bottom:798.471168pt;}
.y63_c01164{bottom:798.861899pt;}
.y62_c01164{bottom:799.879200pt;}
.y61_c01164{bottom:800.137493pt;}
.y60_c01164{bottom:801.024757pt;}
.y5f_c01164{bottom:801.676139pt;}
.y5e_c01164{bottom:802.453003pt;}
.y5d_c01164{bottom:802.952821pt;}
.y5c_c01164{bottom:803.339605pt;}
.y5b_c01164{bottom:804.493803pt;}
.y5a_c01164{bottom:805.124277pt;}
.y59_c01164{bottom:805.613077pt;}
.y58_c01164{bottom:806.134357pt;}
.y57_c01164{bottom:829.888725pt;}
.y56_c01164{bottom:830.187563pt;}
.y55_c01164{bottom:831.827541pt;}
.y54_c01164{bottom:832.240768pt;}
.y53_c01164{bottom:834.173621pt;}
.y52_c01164{bottom:834.597568pt;}
.y51_c01164{bottom:835.007275pt;}
.y50_c01164{bottom:835.699669pt;}
.y4f_c01164{bottom:836.099403pt;}
.y4e_c01164{bottom:836.512373pt;}
.y4d_c01164{bottom:837.338795pt;}
.y4c_c01164{bottom:859.697323pt;}
.y4b_c01164{bottom:860.269536pt;}
.y4a_c01164{bottom:860.542208pt;}
.y49_c01164{bottom:861.367989pt;}
.y48_c01164{bottom:861.889163pt;}
.y47_c01164{bottom:862.761973pt;}
.y46_c01164{bottom:863.450699pt;}
.y45_c01164{bottom:863.716000pt;}
.y44_c01164{bottom:864.691680pt;}
.y43_c01164{bottom:865.095147pt;}
.y42_c01164{bottom:866.187296pt;}
.y41_c01164{bottom:866.882197pt;}
.y40_c01164{bottom:867.822517pt;}
.y3f_c01164{bottom:890.981493pt;}
.y3e_c01164{bottom:891.355691pt;}
.y3d_c01164{bottom:892.260064pt;}
.y3c_c01164{bottom:893.666763pt;}
.y3b_c01164{bottom:894.051339pt;}
.y3a_c01164{bottom:894.687861pt;}
.y39_c01164{bottom:895.189803pt;}
.y38_c01164{bottom:895.711168pt;}
.y37_c01164{bottom:896.098101pt;}
.y36_c01164{bottom:896.857216pt;}
.y35_c01164{bottom:897.500341pt;}
.y34_c01164{bottom:897.878080pt;}
.y33_c01164{bottom:898.630208pt;}
.y32_c01164{bottom:899.025739pt;}
.y31_c01164{bottom:922.634571pt;}
.y30_c01164{bottom:923.139339pt;}
.y2f_c01164{bottom:924.339968pt;}
.y2e_c01164{bottom:924.980821pt;}
.y2d_c01164{bottom:925.489557pt;}
.y2c_c01164{bottom:927.153845pt;}
.y2b_c01164{bottom:927.668480pt;}
.y2a_c01164{bottom:928.177152pt;}
.y29_c01164{bottom:929.667797pt;}
.y28_c01164{bottom:930.177067pt;}
.y27_c01164{bottom:931.189771pt;}
.y26_c01164{bottom:954.292213pt;}
.y25_c01164{bottom:955.263093pt;}
.y24_c01164{bottom:956.093141pt;}
.y23_c01164{bottom:956.664117pt;}
.y22_c01164{bottom:957.201184pt;}
.y21_c01164{bottom:958.025419pt;}
.y20_c01164{bottom:958.729301pt;}
.y1f_c01164{bottom:959.686848pt;}
.y1e_c01164{bottom:960.372960pt;}
.y1d_c01164{bottom:961.450869pt;}
.y1c_c01164{bottom:962.153088pt;}
.y1b_c01164{bottom:984.921227pt;}
.y1a_c01164{bottom:986.567563pt;}
.y19_c01164{bottom:987.618517pt;}
.y18_c01164{bottom:988.486816pt;}
.y17_c01164{bottom:989.084192pt;}
.y16_c01164{bottom:990.409739pt;}
.y15_c01164{bottom:991.598464pt;}
.y14_c01164{bottom:992.188331pt;}
.y13_c01164{bottom:993.077973pt;}
.y12_c01164{bottom:993.638869pt;}
.y11_c01164{bottom:994.077739pt;}
.y10_c01164{bottom:1017.365419pt;}
.yf_c01164{bottom:1018.476011pt;}
.ye_c01164{bottom:1018.932416pt;}
.yd_c01164{bottom:1020.215915pt;}
.yc_c01164{bottom:1020.857173pt;}
.yb_c01164{bottom:1021.152149pt;}
.ya_c01164{bottom:1021.467179pt;}
.y9_c01164{bottom:1022.274453pt;}
.y8_c01164{bottom:1022.739093pt;}
.y7_c01164{bottom:1023.534293pt;}
.y6_c01164{bottom:1023.830315pt;}
.y5_c01164{bottom:1024.943765pt;}
.y4_c01164{bottom:1025.719339pt;}
.y3_c01164{bottom:1026.344256pt;}
.y2_c01164{bottom:1026.962667pt;}
.y1_c01164{bottom:1074.610667pt;}
.hd_c01164{height:42.671466pt;}
.h8_c01164{height:42.675199pt;}
.h6_c01164{height:58.674176pt;}
.h9_c01164{height:58.678399pt;}
.h2_c01164{height:64.000000pt;}
.h4_c01164{height:64.008191pt;}
.h10_c01164{height:64.021628pt;}
.h3_c01164{height:69.342207pt;}
.h7_c01164{height:69.347199pt;}
.hb_c01164{height:74.677455pt;}
.ha_c01164{height:74.689996pt;}
.hf_c01164{height:74.691900pt;}
.h5_c01164{height:80.010239pt;}
.he_c01164{height:85.333333pt;}
.hc_c01164{height:90.676866pt;}
.h1_c01164{height:1118.666667pt;}
.h0_c01164{height:1118.880000pt;}
.w0_c01164{width:803.733333pt;}
.w1_c01164{width:804.000000pt;}
.x0_c01164{left:0.000000pt;}
.xdb_c01164{left:124.430667pt;}
.xde_c01164{left:125.569093pt;}
.xcf_c01164{left:126.529664pt;}
.xac_c01164{left:127.487083pt;}
.xbc_c01164{left:128.457120pt;}
.x7f_c01164{left:129.644512pt;}
.x58_c01164{left:131.579008pt;}
.x40_c01164{left:132.805931pt;}
.x1b_c01164{left:134.242816pt;}
.x4_c01164{left:136.181333pt;}
.xef_c01164{left:153.422667pt;}
.xdf_c01164{left:154.389893pt;}
.xd5_c01164{left:156.030763pt;}
.xb4_c01164{left:157.205792pt;}
.x80_c01164{left:159.391947pt;}
.x2d_c01164{left:164.247723pt;}
.x12_c01164{left:165.226389pt;}
.xad_c01164{left:168.499755pt;}
.x51_c01164{left:171.428288pt;}
.x47_c01164{left:173.166112pt;}
.x5_c01164{left:174.832000pt;}
.xa2_c01164{left:178.142592pt;}
.x6d_c01164{left:180.737280pt;}
.x1c_c01164{left:184.383083pt;}
.xe0_c01164{left:187.029813pt;}
.x41_c01164{left:191.875829pt;}
.xe5_c01164{left:195.149333pt;}
.x9a_c01164{left:197.327147pt;}
.x38_c01164{left:201.666795pt;}
.x13_c01164{left:202.616320pt;}
.xeb_c01164{left:204.246667pt;}
.x75_c01164{left:209.586411pt;}
.x48_c01164{left:210.801259pt;}
.x6_c01164{left:213.889333pt;}
.x89_c01164{left:217.724021pt;}
.x6e_c01164{left:218.658731pt;}
.xf0_c01164{left:220.361333pt;}
.x2e_c01164{left:222.091829pt;}
.xe6_c01164{left:223.152000pt;}
.xca_c01164{left:226.301824pt;}
.x67_c01164{left:228.524501pt;}
.xf6_c01164{left:230.298667pt;}
.x24_c01164{left:231.396395pt;}
.xea_c01164{left:232.340613pt;}
.x93_c01164{left:236.681376pt;}
.x5d_c01164{left:238.591211pt;}
.xc3_c01164{left:244.350859pt;}
.xa3_c01164{left:245.796437pt;}
.x76_c01164{left:247.446528pt;}
.x42_c01164{left:249.921685pt;}
.x2f_c01164{left:251.118549pt;}
.xd6_c01164{left:253.194336pt;}
.x8a_c01164{left:256.317451pt;}
.x68_c01164{left:257.316501pt;}
.x49_c01164{left:259.291584pt;}
.x1d_c01164{left:261.421557pt;}
.x7_c01164{left:262.362667pt;}
.xa4_c01164{left:265.429152pt;}
.x81_c01164{left:266.883723pt;}
.x5e_c01164{left:268.118741pt;}
.xd0_c01164{left:272.892331pt;}
.xae_c01164{left:275.051381pt;}
.xf1_c01164{left:282.225333pt;}
.x9b_c01164{left:284.867019pt;}
.x77_c01164{left:286.099957pt;}
.x8b_c01164{left:287.035136pt;}
.x25_c01164{left:290.939435pt;}
.xe1_c01164{left:292.863840pt;}
.xbd_c01164{left:294.697163pt;}
.x94_c01164{left:296.382517pt;}
.x59_c01164{left:298.132341pt;}
.x43_c01164{left:299.364597pt;}
.x14_c01164{left:301.253899pt;}
.x52_c01164{left:308.465131pt;}
.x1e_c01164{left:310.388448pt;}
.xbe_c01164{left:313.186059pt;}
.x69_c01164{left:318.044501pt;}
.x26_c01164{left:320.934965pt;}
.xc4_c01164{left:321.849621pt;}
.xb5_c01164{left:323.515125pt;}
.x9c_c01164{left:324.737739pt;}
.x39_c01164{left:329.361557pt;}
.xdc_c01164{left:331.029333pt;}
.x8_c01164{left:331.953333pt;}
.x82_c01164{left:335.351349pt;}
.xd7_c01164{left:340.074229pt;}
.xcb_c01164{left:341.985088pt;}
.x8c_c01164{left:345.185280pt;}
.x4a_c01164{left:348.099851pt;}
.x9_c01164{left:350.454667pt;}
.x83_c01164{left:355.688715pt;}
.x30_c01164{left:358.930379pt;}
.xe2_c01164{left:360.327947pt;}
.xc5_c01164{left:361.931648pt;}
.x8d_c01164{left:364.333995pt;}
.x6a_c01164{left:366.788501pt;}
.xf2_c01164{left:368.310667pt;}
.x78_c01164{left:375.387765pt;}
.x1f_c01164{left:378.737291pt;}
.x15_c01164{left:380.467157pt;}
.x1_c01164{left:381.360000pt;}
.xaf_c01164{left:382.888320pt;}
.x5f_c01164{left:385.252864pt;}
.x31_c01164{left:388.698475pt;}
.xe3_c01164{left:389.604800pt;}
.xb6_c01164{left:392.221152pt;}
.x9d_c01164{left:393.192875pt;}
.x2_c01164{left:400.800000pt;}
.xbf_c01164{left:402.486837pt;}
.x8e_c01164{left:403.467403pt;}
.x79_c01164{left:404.670827pt;}
.x27_c01164{left:408.598891pt;}
.xb0_c01164{left:411.406539pt;}
.x9e_c01164{left:413.309568pt;}
.x6f_c01164{left:414.996437pt;}
.x4b_c01164{left:416.265781pt;}
.xf3_c01164{left:418.149333pt;}
.xf9_c01164{left:419.377917pt;}
.xb7_c01164{left:423.146325pt;}
.x84_c01164{left:424.842965pt;}
.x53_c01164{left:426.565675pt;}
.x3a_c01164{left:427.811360pt;}
.xa_c01164{left:429.194667pt;}
.x7a_c01164{left:434.935200pt;}
.x5a_c01164{left:435.951008pt;}
.x28_c01164{left:438.557088pt;}
.x3_c01164{left:440.400000pt;}
.xb1_c01164{left:441.910048pt;}
.x60_c01164{left:445.259904pt;}
.x3b_c01164{left:446.726624pt;}
.xf4_c01164{left:448.989333pt;}
.xc6_c01164{left:450.559552pt;}
.xa5_c01164{left:452.480491pt;}
.x54_c01164{left:455.610144pt;}
.xf7_c01164{left:457.204000pt;}
.xee_c01164{left:458.114667pt;}
.x32_c01164{left:467.408917pt;}
.x16_c01164{left:468.815232pt;}
.xb8_c01164{left:470.909376pt;}
.xa6_c01164{left:471.869205pt;}
.x85_c01164{left:472.843893pt;}
.x4c_c01164{left:476.072661pt;}
.xec_c01164{left:477.377333pt;}
.xb_c01164{left:479.649333pt;}
.x20_c01164{left:487.831435pt;}
.xe4_c01164{left:489.231413pt;}
.x95_c01164{left:492.250464pt;}
.x3c_c01164{left:495.940203pt;}
.x44_c01164{left:496.944245pt;}
.xd8_c01164{left:498.337152pt;}
.xc_c01164{left:499.338667pt;}
.xa7_c01164{left:501.208267pt;}
.x86_c01164{left:502.600661pt;}
.x61_c01164{left:503.830965pt;}
.xfa_c01164{left:507.726947pt;}
.x17_c01164{left:508.651872pt;}
.xb9_c01164{left:510.508811pt;}
.x70_c01164{left:512.978635pt;}
.x33_c01164{left:516.360597pt;}
.xd_c01164{left:517.774667pt;}
.xd1_c01164{left:518.710997pt;}
.x9f_c01164{left:520.860800pt;}
.x5b_c01164{left:524.531008pt;}
.x21_c01164{left:526.232672pt;}
.xcc_c01164{left:528.511829pt;}
.x96_c01164{left:532.344544pt;}
.x62_c01164{left:533.582496pt;}
.x55_c01164{left:537.191445pt;}
.xc0_c01164{left:540.026987pt;}
.x7b_c01164{left:543.407723pt;}
.x34_c01164{left:545.898005pt;}
.xd2_c01164{left:547.762997pt;}
.xe_c01164{left:557.853333pt;}
.xa8_c01164{left:560.450389pt;}
.x8f_c01164{left:561.450347pt;}
.x71_c01164{left:562.366389pt;}
.x18_c01164{left:566.504789pt;}
.xf8_c01164{left:568.056000pt;}
.x87_c01164{left:571.740245pt;}
.x56_c01164{left:573.700021pt;}
.xed_c01164{left:575.794667pt;}
.xd9_c01164{left:577.509301pt;}
.x6b_c01164{left:582.132501pt;}
.xe7_c01164{left:585.641333pt;}
.xcd_c01164{left:588.293344pt;}
.xa9_c01164{left:589.973451pt;}
.x7c_c01164{left:591.415520pt;}
.x4d_c01164{left:594.410336pt;}
.x3d_c01164{left:595.567403pt;}
.x29_c01164{left:596.699904pt;}
.xc7_c01164{left:598.153184pt;}
.x97_c01164{left:600.519947pt;}
.x5c_c01164{left:602.739008pt;}
.x57_c01164{left:606.115200pt;}
.xd3_c01164{left:607.290997pt;}
.xc1_c01164{left:609.143019pt;}
.x72_c01164{left:611.814144pt;}
.x63_c01164{left:612.798571pt;}
.x4e_c01164{left:614.304629pt;}
.xe8_c01164{left:616.854667pt;}
.xba_c01164{left:618.774293pt;}
.x22_c01164{left:626.299872pt;}
.xb2_c01164{left:628.661728pt;}
.xa0_c01164{left:629.571989pt;}
.x7d_c01164{left:630.794261pt;}
.x2a_c01164{left:634.419307pt;}
.x19_c01164{left:636.607253pt;}
.xf_c01164{left:638.072000pt;}
.x90_c01164{left:640.133163pt;}
.x73_c01164{left:641.825184pt;}
.x45_c01164{left:643.607605pt;}
.xdd_c01164{left:645.956000pt;}
.xd4_c01164{left:646.912331pt;}
.x64_c01164{left:651.216619pt;}
.x35_c01164{left:654.155211pt;}
.xda_c01164{left:655.996139pt;}
.x46_c01164{left:664.952288pt;}
.x10_c01164{left:666.597333pt;}
.x91_c01164{left:668.034933pt;}
.xa1_c01164{left:669.224064pt;}
.x3e_c01164{left:674.056587pt;}
.x88_c01164{left:679.778667pt;}
.x6c_c01164{left:681.963168pt;}
.xf5_c01164{left:684.000000pt;}
.xce_c01164{left:686.469739pt;}
.xaa_c01164{left:689.178272pt;}
.x7e_c01164{left:690.572341pt;}
.x4f_c01164{left:692.556384pt;}
.x23_c01164{left:695.648757pt;}
.xc8_c01164{left:697.058272pt;}
.xb3_c01164{left:698.096619pt;}
.x92_c01164{left:699.465931pt;}
.x2b_c01164{left:705.040843pt;}
.xab_c01164{left:708.814987pt;}
.x98_c01164{left:709.813365pt;}
.x65_c01164{left:711.711659pt;}
.x3f_c01164{left:714.904555pt;}
.xc2_c01164{left:717.007339pt;}
.x74_c01164{left:721.343979pt;}
.x50_c01164{left:722.561813pt;}
.x36_c01164{left:723.765227pt;}
.xe9_c01164{left:725.145333pt;}
.xc9_c01164{left:726.399136pt;}
.x99_c01164{left:729.199093pt;}
.x2c_c01164{left:734.755040pt;}
.x11_c01164{left:736.009333pt;}
.xbb_c01164{left:737.420619pt;}
.x66_c01164{left:741.463189pt;}
.x1a_c01164{left:746.338336pt;}
.x37_c01164{left:752.570613pt;}
}





/* 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_c01165 {
    display:none;
  }
  .loading-indicator_c01165.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01165 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_c01165 { 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_c01165" -> "#page-container .classname_c01165")
 */
.pf_c01165 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01165 { /* 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_c01165.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01165 { /* 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_c01165 { /* 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_c01165 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01165 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01165 {overflow:visible;}
  }
}
.c_c01165 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01165 { /* 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_c01165:after { /* webkit #35443 */
  content: '';
}
.t_c01165:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01165 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 */
}
.__c01165 { /* 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_c01165 { /* info for Javascript */
  display:none;
}
.l_c01165 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01165 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01165 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01165: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_c01165 {
    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_c01165.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01165.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_c01165 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01165{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01165;src:url('chunks/assets/font_cfe63ee56e9e10a97d33a3db.woff2')format("woff");}.ff1_c01165{font-family:ff1_c01165;line-height:1.000000;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;}
.m67_c01165{transform:matrix(0.010140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.010140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.010140,0.000000,0.000000,0.250000,0,0);}
.m8_c01165{transform:matrix(0.010932,-0.000525,0.011998,0.249712,0,0);-ms-transform:matrix(0.010932,-0.000525,0.011998,0.249712,0,0);-webkit-transform:matrix(0.010932,-0.000525,0.011998,0.249712,0,0);}
.m6a_c01165{transform:matrix(0.011250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.011250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.011250,0.000000,0.000000,0.250000,0,0);}
.mc_c01165{transform:matrix(0.018619,-0.000895,0.011998,0.249712,0,0);-ms-transform:matrix(0.018619,-0.000895,0.011998,0.249712,0,0);-webkit-transform:matrix(0.018619,-0.000895,0.011998,0.249712,0,0);}
.m41_c01165{transform:matrix(0.021853,-0.000722,0.008254,0.249864,0,0);-ms-transform:matrix(0.021853,-0.000722,0.008254,0.249864,0,0);-webkit-transform:matrix(0.021853,-0.000722,0.008254,0.249864,0,0);}
.m7e_c01165{transform:matrix(0.031820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.031820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.031820,0.000000,0.000000,0.250000,0,0);}
.m8f_c01165{transform:matrix(0.035575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.035575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.035575,0.000000,0.000000,0.250000,0,0);}
.m3d_c01165{transform:matrix(0.040560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.040560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.040560,0.000000,0.000000,0.250000,0,0);}
.m7a_c01165{transform:matrix(0.068430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.068430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.068430,0.000000,0.000000,0.250000,0,0);}
.m45_c01165{transform:matrix(0.075484,-0.002493,0.008254,0.249864,0,0);-ms-transform:matrix(0.075484,-0.002493,0.008254,0.249864,0,0);-webkit-transform:matrix(0.075484,-0.002493,0.008254,0.249864,0,0);}
.m90_c01165{transform:matrix(0.106130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106130,0.000000,0.000000,0.250000,0,0);}
.m92_c01165{transform:matrix(0.110800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110800,0.000000,0.000000,0.250000,0,0);}
.m81_c01165{transform:matrix(0.136860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136860,0.000000,0.000000,0.250000,0,0);}
.m73_c01165{transform:matrix(0.148975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148975,0.000000,0.000000,0.250000,0,0);}
.m4d_c01165{transform:matrix(0.157609,-0.005206,0.008254,0.249864,0,0);-ms-transform:matrix(0.157609,-0.005206,0.008254,0.249864,0,0);-webkit-transform:matrix(0.157609,-0.005206,0.008254,0.249864,0,0);}
.m4b_c01165{transform:matrix(0.163801,-0.005411,0.008254,0.249864,0,0);-ms-transform:matrix(0.163801,-0.005411,0.008254,0.249864,0,0);-webkit-transform:matrix(0.163801,-0.005411,0.008254,0.249864,0,0);}
.m6f_c01165{transform:matrix(0.169520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169520,0.000000,0.000000,0.250000,0,0);}
.m75_c01165{transform:matrix(0.170605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170605,0.000000,0.000000,0.250000,0,0);}
.m71_c01165{transform:matrix(0.172665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172665,0.000000,0.000000,0.250000,0,0);}
.m6c_c01165{transform:matrix(0.172860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172860,0.000000,0.000000,0.250000,0,0);}
.m72_c01165{transform:matrix(0.173185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173185,0.000000,0.000000,0.250000,0,0);}
.m6d_c01165{transform:matrix(0.176935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176935,0.000000,0.000000,0.250000,0,0);}
.m38_c01165{transform:matrix(0.178595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178595,0.000000,0.000000,0.250000,0,0);}
.m74_c01165{transform:matrix(0.180090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180090,0.000000,0.000000,0.250000,0,0);}
.m31_c01165{transform:matrix(0.182655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182655,0.000000,0.000000,0.250000,0,0);}
.m60_c01165{transform:matrix(0.184040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184040,0.000000,0.000000,0.250000,0,0);}
.m7d_c01165{transform:matrix(0.188585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188585,0.000000,0.000000,0.250000,0,0);}
.m1a_c01165{transform:matrix(0.191729,-0.009212,0.011998,0.249712,0,0);-ms-transform:matrix(0.191729,-0.009212,0.011998,0.249712,0,0);-webkit-transform:matrix(0.191729,-0.009212,0.011998,0.249712,0,0);}
.m6e_c01165{transform:matrix(0.194495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194495,0.000000,0.000000,0.250000,0,0);}
.m5d_c01165{transform:matrix(0.195020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195020,0.000000,0.000000,0.250000,0,0);}
.m63_c01165{transform:matrix(0.195080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195080,0.000000,0.000000,0.250000,0,0);}
.m1e_c01165{transform:matrix(0.197103,-0.009470,0.011998,0.249712,0,0);-ms-transform:matrix(0.197103,-0.009470,0.011998,0.249712,0,0);-webkit-transform:matrix(0.197103,-0.009470,0.011998,0.249712,0,0);}
.m55_c01165{transform:matrix(0.198135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198135,0.000000,0.000000,0.250000,0,0);}
.m54_c01165{transform:matrix(0.198735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198735,0.000000,0.000000,0.250000,0,0);}
.m1f_c01165{transform:matrix(0.201982,-0.009705,0.011998,0.249712,0,0);-ms-transform:matrix(0.201982,-0.009705,0.011998,0.249712,0,0);-webkit-transform:matrix(0.201982,-0.009705,0.011998,0.249712,0,0);}
.m2f_c01165{transform:matrix(0.202655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202655,0.000000,0.000000,0.250000,0,0);}
.m4c_c01165{transform:matrix(0.202679,-0.006695,0.008254,0.249864,0,0);-ms-transform:matrix(0.202679,-0.006695,0.008254,0.249864,0,0);-webkit-transform:matrix(0.202679,-0.006695,0.008254,0.249864,0,0);}
.m4e_c01165{transform:matrix(0.208581,-0.006890,0.008254,0.249864,0,0);-ms-transform:matrix(0.208581,-0.006890,0.008254,0.249864,0,0);-webkit-transform:matrix(0.208581,-0.006890,0.008254,0.249864,0,0);}
.m5f_c01165{transform:matrix(0.209100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209100,0.000000,0.000000,0.250000,0,0);}
.m43_c01165{transform:matrix(0.210435,-0.006951,0.008254,0.249864,0,0);-ms-transform:matrix(0.210435,-0.006951,0.008254,0.249864,0,0);-webkit-transform:matrix(0.210435,-0.006951,0.008254,0.249864,0,0);}
.m27_c01165{transform:matrix(0.210657,-0.010122,0.011998,0.249712,0,0);-ms-transform:matrix(0.210657,-0.010122,0.011998,0.249712,0,0);-webkit-transform:matrix(0.210657,-0.010122,0.011998,0.249712,0,0);}
.m59_c01165{transform:matrix(0.212390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212390,0.000000,0.000000,0.250000,0,0);}
.m49_c01165{transform:matrix(0.213883,-0.007065,0.008254,0.249864,0,0);-ms-transform:matrix(0.213883,-0.007065,0.008254,0.249864,0,0);-webkit-transform:matrix(0.213883,-0.007065,0.008254,0.249864,0,0);}
.m5e_c01165{transform:matrix(0.214195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214195,0.000000,0.000000,0.250000,0,0);}
.m58_c01165{transform:matrix(0.218660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218660,0.000000,0.000000,0.250000,0,0);}
.m17_c01165{transform:matrix(0.221769,-0.010656,0.011998,0.249712,0,0);-ms-transform:matrix(0.221769,-0.010656,0.011998,0.249712,0,0);-webkit-transform:matrix(0.221769,-0.010656,0.011998,0.249712,0,0);}
.m66_c01165{transform:matrix(0.222425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222425,0.000000,0.000000,0.250000,0,0);}
.m70_c01165{transform:matrix(0.223520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223520,0.000000,0.000000,0.250000,0,0);}
.m61_c01165{transform:matrix(0.223530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223530,0.000000,0.000000,0.250000,0,0);}
.m1d_c01165{transform:matrix(0.223712,-0.010749,0.011998,0.249712,0,0);-ms-transform:matrix(0.223712,-0.010749,0.011998,0.249712,0,0);-webkit-transform:matrix(0.223712,-0.010749,0.011998,0.249712,0,0);}
.m64_c01165{transform:matrix(0.226550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226550,0.000000,0.000000,0.250000,0,0);}
.m11_c01165{transform:matrix(0.227288,-0.010921,0.011998,0.249712,0,0);-ms-transform:matrix(0.227288,-0.010921,0.011998,0.249712,0,0);-webkit-transform:matrix(0.227288,-0.010921,0.011998,0.249712,0,0);}
.me_c01165{transform:matrix(0.230249,-0.011063,0.011998,0.249712,0,0);-ms-transform:matrix(0.230249,-0.011063,0.011998,0.249712,0,0);-webkit-transform:matrix(0.230249,-0.011063,0.011998,0.249712,0,0);}
.m6b_c01165{transform:matrix(0.232200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232200,0.000000,0.000000,0.250000,0,0);}
.m4f_c01165{transform:matrix(0.232675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232675,0.000000,0.000000,0.250000,0,0);}
.m5c_c01165{transform:matrix(0.235155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235155,0.000000,0.000000,0.250000,0,0);}
.m2c_c01165{transform:matrix(0.241931,-0.011624,0.011998,0.249712,0,0);-ms-transform:matrix(0.241931,-0.011624,0.011998,0.249712,0,0);-webkit-transform:matrix(0.241931,-0.011624,0.011998,0.249712,0,0);}
.m2b_c01165{transform:matrix(0.242186,-0.011637,0.011998,0.249712,0,0);-ms-transform:matrix(0.242186,-0.011637,0.011998,0.249712,0,0);-webkit-transform:matrix(0.242186,-0.011637,0.011998,0.249712,0,0);}
.m52_c01165{transform:matrix(0.242970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242970,0.000000,0.000000,0.250000,0,0);}
.m2e_c01165{transform:matrix(0.249292,-0.011978,0.011998,0.249712,0,0);-ms-transform:matrix(0.249292,-0.011978,0.011998,0.249712,0,0);-webkit-transform:matrix(0.249292,-0.011978,0.011998,0.249712,0,0);}
.m4a_c01165{transform:matrix(0.249529,-0.008243,0.008254,0.249864,0,0);-ms-transform:matrix(0.249529,-0.008243,0.008254,0.249864,0,0);-webkit-transform:matrix(0.249529,-0.008243,0.008254,0.249864,0,0);}
.m48_c01165{transform:matrix(0.251033,-0.008292,0.008254,0.249864,0,0);-ms-transform:matrix(0.251033,-0.008292,0.008254,0.249864,0,0);-webkit-transform:matrix(0.251033,-0.008292,0.008254,0.249864,0,0);}
.m25_c01165{transform:matrix(0.253398,-0.012175,0.011998,0.249712,0,0);-ms-transform:matrix(0.253398,-0.012175,0.011998,0.249712,0,0);-webkit-transform:matrix(0.253398,-0.012175,0.011998,0.249712,0,0);}
.m56_c01165{transform:matrix(0.255395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255395,0.000000,0.000000,0.250000,0,0);}
.m29_c01165{transform:matrix(0.255650,-0.012283,0.011998,0.249712,0,0);-ms-transform:matrix(0.255650,-0.012283,0.011998,0.249712,0,0);-webkit-transform:matrix(0.255650,-0.012283,0.011998,0.249712,0,0);}
.m37_c01165{transform:matrix(0.258465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258465,0.000000,0.000000,0.250000,0,0);}
.m10_c01165{transform:matrix(0.258602,-0.012425,0.011998,0.249712,0,0);-ms-transform:matrix(0.258602,-0.012425,0.011998,0.249712,0,0);-webkit-transform:matrix(0.258602,-0.012425,0.011998,0.249712,0,0);}
.m12_c01165{transform:matrix(0.260145,-0.012499,0.011998,0.249712,0,0);-ms-transform:matrix(0.260145,-0.012499,0.011998,0.249712,0,0);-webkit-transform:matrix(0.260145,-0.012499,0.011998,0.249712,0,0);}
.m65_c01165{transform:matrix(0.260215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260215,0.000000,0.000000,0.250000,0,0);}
.md_c01165{transform:matrix(0.261144,-0.012547,0.011998,0.249712,0,0);-ms-transform:matrix(0.261144,-0.012547,0.011998,0.249712,0,0);-webkit-transform:matrix(0.261144,-0.012547,0.011998,0.249712,0,0);}
.m1c_c01165{transform:matrix(0.264135,-0.012691,0.011998,0.249712,0,0);-ms-transform:matrix(0.264135,-0.012691,0.011998,0.249712,0,0);-webkit-transform:matrix(0.264135,-0.012691,0.011998,0.249712,0,0);}
.m33_c01165{transform:matrix(0.267615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267615,0.000000,0.000000,0.250000,0,0);}
.m28_c01165{transform:matrix(0.268181,-0.012886,0.011998,0.249712,0,0);-ms-transform:matrix(0.268181,-0.012886,0.011998,0.249712,0,0);-webkit-transform:matrix(0.268181,-0.012886,0.011998,0.249712,0,0);}
.m2a_c01165{transform:matrix(0.269879,-0.012967,0.011998,0.249712,0,0);-ms-transform:matrix(0.269879,-0.012967,0.011998,0.249712,0,0);-webkit-transform:matrix(0.269879,-0.012967,0.011998,0.249712,0,0);}
.m18_c01165{transform:matrix(0.280097,-0.013458,0.011998,0.249712,0,0);-ms-transform:matrix(0.280097,-0.013458,0.011998,0.249712,0,0);-webkit-transform:matrix(0.280097,-0.013458,0.011998,0.249712,0,0);}
.m34_c01165{transform:matrix(0.282820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282820,0.000000,0.000000,0.250000,0,0);}
.m62_c01165{transform:matrix(0.283180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283180,0.000000,0.000000,0.250000,0,0);}
.m21_c01165{transform:matrix(0.283957,-0.013644,0.011998,0.249712,0,0);-ms-transform:matrix(0.283957,-0.013644,0.011998,0.249712,0,0);-webkit-transform:matrix(0.283957,-0.013644,0.011998,0.249712,0,0);}
.m26_c01165{transform:matrix(0.284122,-0.013652,0.011998,0.249712,0,0);-ms-transform:matrix(0.284122,-0.013652,0.011998,0.249712,0,0);-webkit-transform:matrix(0.284122,-0.013652,0.011998,0.249712,0,0);}
.m36_c01165{transform:matrix(0.284785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284785,0.000000,0.000000,0.250000,0,0);}
.m4_c01165{transform:matrix(0.284911,-0.013689,0.011998,0.249712,0,0);-ms-transform:matrix(0.284911,-0.013689,0.011998,0.249712,0,0);-webkit-transform:matrix(0.284911,-0.013689,0.011998,0.249712,0,0);}
.m2_c01165{transform:matrix(0.285501,-0.013718,0.011998,0.249712,0,0);-ms-transform:matrix(0.285501,-0.013718,0.011998,0.249712,0,0);-webkit-transform:matrix(0.285501,-0.013718,0.011998,0.249712,0,0);}
.mf_c01165{transform:matrix(0.286105,-0.013747,0.011998,0.249712,0,0);-ms-transform:matrix(0.286105,-0.013747,0.011998,0.249712,0,0);-webkit-transform:matrix(0.286105,-0.013747,0.011998,0.249712,0,0);}
.m42_c01165{transform:matrix(0.287073,-0.009483,0.008254,0.249864,0,0);-ms-transform:matrix(0.287073,-0.009483,0.008254,0.249864,0,0);-webkit-transform:matrix(0.287073,-0.009483,0.008254,0.249864,0,0);}
.m1b_c01165{transform:matrix(0.290035,-0.013936,0.011998,0.249712,0,0);-ms-transform:matrix(0.290035,-0.013936,0.011998,0.249712,0,0);-webkit-transform:matrix(0.290035,-0.013936,0.011998,0.249712,0,0);}
.m39_c01165{transform:matrix(0.296620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296620,0.000000,0.000000,0.250000,0,0);}
.m22_c01165{transform:matrix(0.296643,-0.014253,0.011998,0.249712,0,0);-ms-transform:matrix(0.296643,-0.014253,0.011998,0.249712,0,0);-webkit-transform:matrix(0.296643,-0.014253,0.011998,0.249712,0,0);}
.m13_c01165{transform:matrix(0.301797,-0.014501,0.011998,0.249712,0,0);-ms-transform:matrix(0.301797,-0.014501,0.011998,0.249712,0,0);-webkit-transform:matrix(0.301797,-0.014501,0.011998,0.249712,0,0);}
.m30_c01165{transform:matrix(0.305115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305115,0.000000,0.000000,0.250000,0,0);}
.m19_c01165{transform:matrix(0.308809,-0.014838,0.011998,0.249712,0,0);-ms-transform:matrix(0.308809,-0.014838,0.011998,0.249712,0,0);-webkit-transform:matrix(0.308809,-0.014838,0.011998,0.249712,0,0);}
.m23_c01165{transform:matrix(0.309438,-0.014868,0.011998,0.249712,0,0);-ms-transform:matrix(0.309438,-0.014868,0.011998,0.249712,0,0);-webkit-transform:matrix(0.309438,-0.014868,0.011998,0.249712,0,0);}
.m99_c01165{transform:matrix(0.313050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313050,0.000000,0.000000,0.250000,0,0);}
.m44_c01165{transform:matrix(0.321385,-0.010616,0.008254,0.249864,0,0);-ms-transform:matrix(0.321385,-0.010616,0.008254,0.249864,0,0);-webkit-transform:matrix(0.321385,-0.010616,0.008254,0.249864,0,0);}
.m20_c01165{transform:matrix(0.322468,-0.015494,0.011998,0.249712,0,0);-ms-transform:matrix(0.322468,-0.015494,0.011998,0.249712,0,0);-webkit-transform:matrix(0.322468,-0.015494,0.011998,0.249712,0,0);}
.m84_c01165{transform:matrix(0.325625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325625,0.000000,0.000000,0.250000,0,0);}
.m53_c01165{transform:matrix(0.329225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329225,0.000000,0.000000,0.250000,0,0);}
.m7_c01165{transform:matrix(0.329660,-0.015840,0.011998,0.249712,0,0);-ms-transform:matrix(0.329660,-0.015840,0.011998,0.249712,0,0);-webkit-transform:matrix(0.329660,-0.015840,0.011998,0.249712,0,0);}
.m50_c01165{transform:matrix(0.329890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329890,0.000000,0.000000,0.250000,0,0);}
.m68_c01165{transform:matrix(0.335445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335445,0.000000,0.000000,0.250000,0,0);}
.m5a_c01165{transform:matrix(0.336245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336245,0.000000,0.000000,0.250000,0,0);}
.m2d_c01165{transform:matrix(0.343818,-0.016520,0.011998,0.249712,0,0);-ms-transform:matrix(0.343818,-0.016520,0.011998,0.249712,0,0);-webkit-transform:matrix(0.343818,-0.016520,0.011998,0.249712,0,0);}
.m80_c01165{transform:matrix(0.351300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351300,0.000000,0.000000,0.250000,0,0);}
.m9_c01165{transform:matrix(0.352603,-0.016942,0.011998,0.249712,0,0);-ms-transform:matrix(0.352603,-0.016942,0.011998,0.249712,0,0);-webkit-transform:matrix(0.352603,-0.016942,0.011998,0.249712,0,0);}
.m3a_c01165{transform:matrix(0.365570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365570,0.000000,0.000000,0.250000,0,0);}
.m40_c01165{transform:matrix(0.370668,-0.012244,0.008254,0.249864,0,0);-ms-transform:matrix(0.370668,-0.012244,0.008254,0.249864,0,0);-webkit-transform:matrix(0.370668,-0.012244,0.008254,0.249864,0,0);}
.m88_c01165{transform:matrix(0.373965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373965,0.000000,0.000000,0.250000,0,0);}
.m35_c01165{transform:matrix(0.375330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375330,0.000000,0.000000,0.250000,0,0);}
.m5b_c01165{transform:matrix(0.390450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390450,0.000000,0.000000,0.250000,0,0);}
.m47_c01165{transform:matrix(0.391022,-0.012917,0.008254,0.249864,0,0);-ms-transform:matrix(0.391022,-0.012917,0.008254,0.249864,0,0);-webkit-transform:matrix(0.391022,-0.012917,0.008254,0.249864,0,0);}
.m7c_c01165{transform:matrix(0.407805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407805,0.000000,0.000000,0.250000,0,0);}
.m3_c01165{transform:matrix(0.422138,-0.020283,0.011998,0.249712,0,0);-ms-transform:matrix(0.422138,-0.020283,0.011998,0.249712,0,0);-webkit-transform:matrix(0.422138,-0.020283,0.011998,0.249712,0,0);}
.m46_c01165{transform:matrix(0.431410,-0.014251,0.008254,0.249864,0,0);-ms-transform:matrix(0.431410,-0.014251,0.008254,0.249864,0,0);-webkit-transform:matrix(0.431410,-0.014251,0.008254,0.249864,0,0);}
.m69_c01165{transform:matrix(0.443660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443660,0.000000,0.000000,0.250000,0,0);}
.m86_c01165{transform:matrix(0.450125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450125,0.000000,0.000000,0.250000,0,0);}
.m15_c01165{transform:matrix(0.454800,-0.021852,0.011998,0.249712,0,0);-ms-transform:matrix(0.454800,-0.021852,0.011998,0.249712,0,0);-webkit-transform:matrix(0.454800,-0.021852,0.011998,0.249712,0,0);}
.m5_c01165{transform:matrix(0.454885,-0.021856,0.011998,0.249712,0,0);-ms-transform:matrix(0.454885,-0.021856,0.011998,0.249712,0,0);-webkit-transform:matrix(0.454885,-0.021856,0.011998,0.249712,0,0);}
.m8b_c01165{transform:matrix(0.462485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462485,0.000000,0.000000,0.250000,0,0);}
.m85_c01165{transform:matrix(0.472230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472230,0.000000,0.000000,0.250000,0,0);}
.m3e_c01165{transform:matrix(0.477560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477560,0.000000,0.000000,0.250000,0,0);}
.m76_c01165{transform:matrix(0.498220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.498220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.498220,0.000000,0.000000,0.250000,0,0);}
.m96_c01165{transform:matrix(0.524785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524785,0.000000,0.000000,0.250000,0,0);}
.m87_c01165{transform:matrix(0.526950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526950,0.000000,0.000000,0.250000,0,0);}
.m32_c01165{transform:matrix(0.528325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528325,0.000000,0.000000,0.250000,0,0);}
.m8c_c01165{transform:matrix(0.544200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544200,0.000000,0.000000,0.250000,0,0);}
.ma_c01165{transform:matrix(0.546819,-0.026274,0.011998,0.249712,0,0);-ms-transform:matrix(0.546819,-0.026274,0.011998,0.249712,0,0);-webkit-transform:matrix(0.546819,-0.026274,0.011998,0.249712,0,0);}
.m89_c01165{transform:matrix(0.550780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.550780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.550780,0.000000,0.000000,0.250000,0,0);}
.m82_c01165{transform:matrix(0.556620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556620,0.000000,0.000000,0.250000,0,0);}
.m57_c01165{transform:matrix(0.558610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558610,0.000000,0.000000,0.250000,0,0);}
.m83_c01165{transform:matrix(0.561100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.561100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.561100,0.000000,0.000000,0.250000,0,0);}
.m3f_c01165{transform:matrix(0.562388,-0.018577,0.008254,0.249864,0,0);-ms-transform:matrix(0.562388,-0.018577,0.008254,0.249864,0,0);-webkit-transform:matrix(0.562388,-0.018577,0.008254,0.249864,0,0);}
.m6_c01165{transform:matrix(0.569308,-0.027354,0.011998,0.249712,0,0);-ms-transform:matrix(0.569308,-0.027354,0.011998,0.249712,0,0);-webkit-transform:matrix(0.569308,-0.027354,0.011998,0.249712,0,0);}
.m91_c01165{transform:matrix(0.589405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.589405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.589405,0.000000,0.000000,0.250000,0,0);}
.m8e_c01165{transform:matrix(0.605830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605830,0.000000,0.000000,0.250000,0,0);}
.mb_c01165{transform:matrix(0.608743,-0.029249,0.011998,0.249712,0,0);-ms-transform:matrix(0.608743,-0.029249,0.011998,0.249712,0,0);-webkit-transform:matrix(0.608743,-0.029249,0.011998,0.249712,0,0);}
.m14_c01165{transform:matrix(0.610521,-0.029334,0.011998,0.249712,0,0);-ms-transform:matrix(0.610521,-0.029334,0.011998,0.249712,0,0);-webkit-transform:matrix(0.610521,-0.029334,0.011998,0.249712,0,0);}
.m51_c01165{transform:matrix(0.619835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.619835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.619835,0.000000,0.000000,0.250000,0,0);}
.m3b_c01165{transform:matrix(0.622335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.622335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.622335,0.000000,0.000000,0.250000,0,0);}
.m98_c01165{transform:matrix(0.633245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.633245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.633245,0.000000,0.000000,0.250000,0,0);}
.m7b_c01165{transform:matrix(0.633605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.633605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.633605,0.000000,0.000000,0.250000,0,0);}
.m3c_c01165{transform:matrix(0.634905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634905,0.000000,0.000000,0.250000,0,0);}
.m8d_c01165{transform:matrix(0.643820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.643820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.643820,0.000000,0.000000,0.250000,0,0);}
.m7f_c01165{transform:matrix(0.701570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.701570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.701570,0.000000,0.000000,0.250000,0,0);}
.m1_c01165{transform:matrix(0.713002,-0.034258,0.011998,0.249712,0,0);-ms-transform:matrix(0.713002,-0.034258,0.011998,0.249712,0,0);-webkit-transform:matrix(0.713002,-0.034258,0.011998,0.249712,0,0);}
.m16_c01165{transform:matrix(0.759544,-0.036495,0.011998,0.249712,0,0);-ms-transform:matrix(0.759544,-0.036495,0.011998,0.249712,0,0);-webkit-transform:matrix(0.759544,-0.036495,0.011998,0.249712,0,0);}
.m79_c01165{transform:matrix(0.784185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.784185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.784185,0.000000,0.000000,0.250000,0,0);}
.m93_c01165{transform:matrix(0.880450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.880450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.880450,0.000000,0.000000,0.250000,0,0);}
.m78_c01165{transform:matrix(0.921935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.921935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.921935,0.000000,0.000000,0.250000,0,0);}
.m8a_c01165{transform:matrix(0.943155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.943155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.943155,0.000000,0.000000,0.250000,0,0);}
.m24_c01165{transform:matrix(0.992420,-0.047684,0.011998,0.249712,0,0);-ms-transform:matrix(0.992420,-0.047684,0.011998,0.249712,0,0);-webkit-transform:matrix(0.992420,-0.047684,0.011998,0.249712,0,0);}
.m95_c01165{transform:matrix(1.068795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.068795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.068795,0.000000,0.000000,0.250000,0,0);}
.m0_c01165{transform:matrix(1.285612,-0.061771,0.011998,0.249712,0,0);-ms-transform:matrix(1.285612,-0.061771,0.011998,0.249712,0,0);-webkit-transform:matrix(1.285612,-0.061771,0.011998,0.249712,0,0);}
.m97_c01165{transform:matrix(1.565405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.565405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.565405,0.000000,0.000000,0.250000,0,0);}
.m77_c01165{transform:matrix(1.614455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.614455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.614455,0.000000,0.000000,0.250000,0,0);}
.m9a_c01165{transform:matrix(2.251180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.251180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.251180,0.000000,0.000000,0.250000,0,0);}
.m94_c01165{transform:matrix(2.380655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.380655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.380655,0.000000,0.000000,0.250000,0,0);}
.v0_c01165{vertical-align:0.000000px;}
.ls0_c01165{letter-spacing:0.000000px;}
.sc__c01165{text-shadow:none;}
.sc0_c01165{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__c01165{-webkit-text-stroke:0px transparent;}
.sc0_c01165{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01165{word-spacing:0.000000px;}
._0_c01165{margin-left:-24.868124px;}
.fc0_c01165{color:transparent;}
.fsa_c01165{font-size:18.000000px;}
.fs4_c01165{font-size:24.000000px;}
.fs5_c01165{font-size:71.967233px;}
.fs0_c01165{font-size:78.011894px;}
.fs3_c01165{font-size:84.000000px;}
.fs1_c01165{font-size:84.012809px;}
.fs8_c01165{font-size:96.000000px;}
.fs7_c01165{font-size:102.000000px;}
.fs2_c01165{font-size:108.000000px;}
.fs9_c01165{font-size:120.000000px;}
.fs6_c01165{font-size:137.937196px;}
.y0_c01165{bottom:0.000000px;}
.y5c_c01165{bottom:105.300000px;}
.y59_c01165{bottom:168.210000px;}
.y58_c01165{bottom:171.180000px;}
.y5b_c01165{bottom:173.610000px;}
.y5a_c01165{bottom:174.150000px;}
.y57_c01165{bottom:233.010000px;}
.y56_c01165{bottom:638.893500px;}
.y55_c01165{bottom:640.536000px;}
.y54_c01165{bottom:644.169000px;}
.y53_c01165{bottom:667.708500px;}
.y44_c01165{bottom:690.129000px;}
.y45_c01165{bottom:690.535500px;}
.y46_c01165{bottom:692.062500px;}
.y47_c01165{bottom:692.560500px;}
.y48_c01165{bottom:693.411000px;}
.y49_c01165{bottom:693.921000px;}
.y4a_c01165{bottom:694.245000px;}
.y4b_c01165{bottom:695.368500px;}
.y4c_c01165{bottom:695.919000px;}
.y4d_c01165{bottom:697.776000px;}
.y4e_c01165{bottom:699.153000px;}
.y4f_c01165{bottom:699.873000px;}
.y50_c01165{bottom:702.046500px;}
.y51_c01165{bottom:702.304500px;}
.y52_c01165{bottom:702.481500px;}
.y43_c01165{bottom:745.089000px;}
.y39_c01165{bottom:878.345146px;}
.y3a_c01165{bottom:878.545657px;}
.y3b_c01165{bottom:879.625392px;}
.y3c_c01165{bottom:880.973515px;}
.y3d_c01165{bottom:882.409839px;}
.y3e_c01165{bottom:883.344210px;}
.y3f_c01165{bottom:884.120847px;}
.y40_c01165{bottom:886.403490px;}
.y41_c01165{bottom:887.499406px;}
.y42_c01165{bottom:888.467982px;}
.y33_c01165{bottom:911.166000px;}
.y34_c01165{bottom:915.292518px;}
.y35_c01165{bottom:915.534523px;}
.y36_c01165{bottom:916.185795px;}
.y37_c01165{bottom:920.472297px;}
.y38_c01165{bottom:921.527785px;}
.y32_c01165{bottom:955.677000px;}
.y31_c01165{bottom:957.609000px;}
.y30_c01165{bottom:978.750000px;}
.y25_c01165{bottom:986.596746px;}
.y26_c01165{bottom:991.122342px;}
.y27_c01165{bottom:992.558243px;}
.y28_c01165{bottom:994.680483px;}
.y29_c01165{bottom:996.383778px;}
.y2a_c01165{bottom:997.853744px;}
.y2b_c01165{bottom:999.118829px;}
.y2c_c01165{bottom:1001.766615px;}
.y2d_c01165{bottom:1003.766388px;}
.y2e_c01165{bottom:1005.120812px;}
.y2f_c01165{bottom:1007.637680px;}
.y19_c01165{bottom:1015.712399px;}
.y1a_c01165{bottom:1016.947163px;}
.y1b_c01165{bottom:1018.378010px;}
.y1c_c01165{bottom:1021.346808px;}
.y1d_c01165{bottom:1022.882600px;}
.y1e_c01165{bottom:1024.275710px;}
.y1f_c01165{bottom:1028.520708px;}
.y20_c01165{bottom:1029.778494px;}
.y21_c01165{bottom:1030.764912px;}
.y22_c01165{bottom:1032.471317px;}
.y23_c01165{bottom:1034.748303px;}
.y24_c01165{bottom:1036.076091px;}
.ye_c01165{bottom:1051.999625px;}
.yf_c01165{bottom:1057.894337px;}
.y10_c01165{bottom:1061.946339px;}
.y11_c01165{bottom:1066.130574px;}
.y12_c01165{bottom:1068.592263px;}
.y13_c01165{bottom:1071.155697px;}
.y14_c01165{bottom:1074.689889px;}
.y15_c01165{bottom:1077.870444px;}
.y16_c01165{bottom:1082.163768px;}
.y17_c01165{bottom:1085.506539px;}
.y1_c01165{bottom:1086.904500px;}
.y18_c01165{bottom:1087.434821px;}
.y2_c01165{bottom:1088.819052px;}
.y3_c01165{bottom:1094.889876px;}
.y4_c01165{bottom:1098.737556px;}
.y5_c01165{bottom:1102.007796px;}
.y6_c01165{bottom:1103.932356px;}
.y7_c01165{bottom:1105.866780px;}
.y8_c01165{bottom:1108.670388px;}
.y9_c01165{bottom:1112.857548px;}
.ya_c01165{bottom:1112.984628px;}
.yb_c01165{bottom:1115.202588px;}
.yc_c01165{bottom:1115.257164px;}
.yd_c01165{bottom:1117.180212px;}
.hc_c01165{height:18.000000px;}
.h6_c01165{height:24.000000px;}
.h7_c01165{height:71.967233px;}
.h2_c01165{height:78.011894px;}
.h5_c01165{height:84.000000px;}
.h3_c01165{height:84.012809px;}
.ha_c01165{height:96.000000px;}
.h9_c01165{height:102.000000px;}
.h4_c01165{height:108.000000px;}
.hb_c01165{height:120.000000px;}
.h8_c01165{height:137.937196px;}
.h1_c01165{height:1258.500000px;}
.h0_c01165{height:1258.740000px;}
.w0_c01165{width:904.200000px;}
.w1_c01165{width:904.500000px;}
.x0_c01165{left:0.000000px;}
.xe_c01165{left:1.538691px;}
.x1_c01165{left:5.932500px;}
.x3e_c01165{left:19.333500px;}
.x31_c01165{left:25.380000px;}
.x19_c01165{left:28.174196px;}
.x4c_c01165{left:36.720000px;}
.x54_c01165{left:39.684000px;}
.x2f_c01165{left:44.010000px;}
.x2_c01165{left:45.779114px;}
.x1a_c01165{left:60.624780px;}
.x55_c01165{left:66.792000px;}
.x30_c01165{left:75.870000px;}
.x1b_c01165{left:98.219166px;}
.x60_c01165{left:100.981500px;}
.x3b_c01165{left:104.760000px;}
.xf_c01165{left:106.717047px;}
.x4d_c01165{left:115.560000px;}
.x3c_c01165{left:136.890000px;}
.x3f_c01165{left:144.254454px;}
.x3d_c01165{left:150.930000px;}
.x24_c01165{left:154.584236px;}
.x56_c01165{left:168.582000px;}
.x3_c01165{left:172.128138px;}
.x1c_c01165{left:176.230982px;}
.x10_c01165{left:179.014430px;}
.x61_c01165{left:180.361500px;}
.x57_c01165{left:201.820500px;}
.x32_c01165{left:210.330000px;}
.x4e_c01165{left:212.490000px;}
.x1d_c01165{left:216.603456px;}
.x62_c01165{left:224.371500px;}
.x4f_c01165{left:235.440000px;}
.x42_c01165{left:237.244204px;}
.x43_c01165{left:246.356903px;}
.x4_c01165{left:252.207978px;}
.x11_c01165{left:253.657527px;}
.x58_c01165{left:258.535500px;}
.x33_c01165{left:264.330000px;}
.x25_c01165{left:273.530751px;}
.x63_c01165{left:282.151500px;}
.x59_c01165{left:292.500000px;}
.x44_c01165{left:295.392156px;}
.x12_c01165{left:297.576699px;}
.x40_c01165{left:301.060491px;}
.x26_c01165{left:311.261573px;}
.x5a_c01165{left:314.052000px;}
.x5_c01165{left:320.269848px;}
.x50_c01165{left:325.350000px;}
.x64_c01165{left:326.431500px;}
.x41_c01165{left:333.013007px;}
.x34_c01165{left:336.690000px;}
.x13_c01165{left:343.300844px;}
.x45_c01165{left:356.548637px;}
.x6_c01165{left:360.324753px;}
.x1e_c01165{left:364.799747px;}
.x27_c01165{left:367.027989px;}
.x35_c01165{left:389.070000px;}
.x1f_c01165{left:397.854515px;}
.x7_c01165{left:400.584952px;}
.x14_c01165{left:406.353012px;}
.x28_c01165{left:411.793157px;}
.x36_c01165{left:413.100000px;}
.x46_c01165{left:421.737567px;}
.x20_c01165{left:423.760979px;}
.x5b_c01165{left:425.685000px;}
.x65_c01165{left:433.621500px;}
.x29_c01165{left:450.420513px;}
.x8_c01165{left:458.935044px;}
.x15_c01165{left:463.107935px;}
.x47_c01165{left:464.147025px;}
.x21_c01165{left:468.622122px;}
.x51_c01165{left:478.710000px;}
.x2a_c01165{left:483.689711px;}
.x37_c01165{left:485.730000px;}
.x6a_c01165{left:492.714000px;}
.x48_c01165{left:499.374546px;}
.x38_c01165{left:521.910000px;}
.x22_c01165{left:528.484457px;}
.x16_c01165{left:539.708852px;}
.x9_c01165{left:546.080312px;}
.xa_c01165{left:548.725164px;}
.x2b_c01165{left:553.269930px;}
.x23_c01165{left:563.371256px;}
.x66_c01165{left:569.701500px;}
.xb_c01165{left:594.886457px;}
.xc_c01165{left:596.022320px;}
.x17_c01165{left:599.339742px;}
.x52_c01165{left:601.290000px;}
.x49_c01165{left:602.944980px;}
.x2c_c01165{left:605.831042px;}
.x39_c01165{left:610.470000px;}
.x67_c01165{left:612.091500px;}
.x6b_c01165{left:619.042500px;}
.x18_c01165{left:633.751607px;}
.xd_c01165{left:636.045756px;}
.x2d_c01165{left:641.428490px;}
.x4a_c01165{left:652.651760px;}
.x68_c01165{left:655.291500px;}
.x3a_c01165{left:666.900000px;}
.x5c_c01165{left:689.256000px;}
.x4b_c01165{left:696.596226px;}
.x2e_c01165{left:707.564999px;}
.x69_c01165{left:817.831500px;}
.x5d_c01165{left:834.156000px;}
.x53_c01165{left:846.180000px;}
.x5e_c01165{left:851.394000px;}
.x5f_c01165{left:863.235000px;}
.x70_c01165{left:870.750000px;}
.x6e_c01165{left:871.830000px;}
.x6d_c01165{left:873.180000px;}
.x6c_c01165{left:874.530000px;}
.x6f_c01165{left:875.610000px;}
.x72_c01165{left:877.500000px;}
.x73_c01165{left:878.580000px;}
.x77_c01165{left:881.010000px;}
.x71_c01165{left:882.090000px;}
.x76_c01165{left:883.170000px;}
.x74_c01165{left:884.250000px;}
.x75_c01165{left:885.600000px;}
.x7c_c01165{left:887.760000px;}
.x7a_c01165{left:889.650000px;}
.x79_c01165{left:890.730000px;}
.x7b_c01165{left:891.810000px;}
.x78_c01165{left:892.890000px;}
.x7d_c01165{left:894.240000px;}
.x7e_c01165{left:896.670000px;}
@media print{
.v0_c01165{vertical-align:0.000000pt;}
.ls0_c01165{letter-spacing:0.000000pt;}
.ws0_c01165{word-spacing:0.000000pt;}
._0_c01165{margin-left:-22.104999pt;}
.fsa_c01165{font-size:16.000000pt;}
.fs4_c01165{font-size:21.333333pt;}
.fs5_c01165{font-size:63.970873pt;}
.fs0_c01165{font-size:69.343906pt;}
.fs3_c01165{font-size:74.666667pt;}
.fs1_c01165{font-size:74.678052pt;}
.fs8_c01165{font-size:85.333333pt;}
.fs7_c01165{font-size:90.666667pt;}
.fs2_c01165{font-size:96.000000pt;}
.fs9_c01165{font-size:106.666667pt;}
.fs6_c01165{font-size:122.610841pt;}
.y0_c01165{bottom:0.000000pt;}
.y5c_c01165{bottom:93.600000pt;}
.y59_c01165{bottom:149.520000pt;}
.y58_c01165{bottom:152.160000pt;}
.y5b_c01165{bottom:154.320000pt;}
.y5a_c01165{bottom:154.800000pt;}
.y57_c01165{bottom:207.120000pt;}
.y56_c01165{bottom:567.905333pt;}
.y55_c01165{bottom:569.365333pt;}
.y54_c01165{bottom:572.594667pt;}
.y53_c01165{bottom:593.518667pt;}
.y44_c01165{bottom:613.448000pt;}
.y45_c01165{bottom:613.809333pt;}
.y46_c01165{bottom:615.166667pt;}
.y47_c01165{bottom:615.609333pt;}
.y48_c01165{bottom:616.365333pt;}
.y49_c01165{bottom:616.818667pt;}
.y4a_c01165{bottom:617.106667pt;}
.y4b_c01165{bottom:618.105333pt;}
.y4c_c01165{bottom:618.594667pt;}
.y4d_c01165{bottom:620.245333pt;}
.y4e_c01165{bottom:621.469333pt;}
.y4f_c01165{bottom:622.109333pt;}
.y50_c01165{bottom:624.041333pt;}
.y51_c01165{bottom:624.270667pt;}
.y52_c01165{bottom:624.428000pt;}
.y43_c01165{bottom:662.301333pt;}
.y39_c01165{bottom:780.751241pt;}
.y3a_c01165{bottom:780.929473pt;}
.y3b_c01165{bottom:781.889237pt;}
.y3c_c01165{bottom:783.087569pt;}
.y3d_c01165{bottom:784.364301pt;}
.y3e_c01165{bottom:785.194853pt;}
.y3f_c01165{bottom:785.885197pt;}
.y40_c01165{bottom:787.914213pt;}
.y41_c01165{bottom:788.888361pt;}
.y42_c01165{bottom:789.749317pt;}
.y33_c01165{bottom:809.925333pt;}
.y34_c01165{bottom:813.593349pt;}
.y35_c01165{bottom:813.808465pt;}
.y36_c01165{bottom:814.387373pt;}
.y37_c01165{bottom:818.197597pt;}
.y38_c01165{bottom:819.135809pt;}
.y32_c01165{bottom:849.490667pt;}
.y31_c01165{bottom:851.208000pt;}
.y30_c01165{bottom:870.000000pt;}
.y25_c01165{bottom:876.974885pt;}
.y26_c01165{bottom:880.997637pt;}
.y27_c01165{bottom:882.273993pt;}
.y28_c01165{bottom:884.160429pt;}
.y29_c01165{bottom:885.674469pt;}
.y2a_c01165{bottom:886.981105pt;}
.y2b_c01165{bottom:888.105625pt;}
.y2c_c01165{bottom:890.459213pt;}
.y2d_c01165{bottom:892.236789pt;}
.y2e_c01165{bottom:893.440721pt;}
.y2f_c01165{bottom:895.677937pt;}
.y19_c01165{bottom:902.855465pt;}
.y1a_c01165{bottom:903.953033pt;}
.y1b_c01165{bottom:905.224897pt;}
.y1c_c01165{bottom:907.863829pt;}
.y1d_c01165{bottom:909.228977pt;}
.y1e_c01165{bottom:910.467297pt;}
.y1f_c01165{bottom:914.240629pt;}
.y20_c01165{bottom:915.358661pt;}
.y21_c01165{bottom:916.235477pt;}
.y22_c01165{bottom:917.752281pt;}
.y23_c01165{bottom:919.776269pt;}
.y24_c01165{bottom:920.956525pt;}
.ye_c01165{bottom:935.110777pt;}
.yf_c01165{bottom:940.350521pt;}
.y10_c01165{bottom:943.952301pt;}
.y11_c01165{bottom:947.671621pt;}
.y12_c01165{bottom:949.859789pt;}
.y13_c01165{bottom:952.138397pt;}
.y14_c01165{bottom:955.279901pt;}
.y15_c01165{bottom:958.107061pt;}
.y16_c01165{bottom:961.923349pt;}
.y17_c01165{bottom:964.894701pt;}
.y1_c01165{bottom:966.137333pt;}
.y18_c01165{bottom:966.608729pt;}
.y2_c01165{bottom:967.839157pt;}
.y3_c01165{bottom:973.235445pt;}
.y4_c01165{bottom:976.655605pt;}
.y5_c01165{bottom:979.562485pt;}
.y6_c01165{bottom:981.273205pt;}
.y7_c01165{bottom:982.992693pt;}
.y8_c01165{bottom:985.484789pt;}
.y9_c01165{bottom:989.206709pt;}
.ya_c01165{bottom:989.319669pt;}
.yb_c01165{bottom:991.291189pt;}
.yc_c01165{bottom:991.339701pt;}
.yd_c01165{bottom:993.049077pt;}
.hc_c01165{height:16.000000pt;}
.h6_c01165{height:21.333333pt;}
.h7_c01165{height:63.970873pt;}
.h2_c01165{height:69.343906pt;}
.h5_c01165{height:74.666667pt;}
.h3_c01165{height:74.678052pt;}
.ha_c01165{height:85.333333pt;}
.h9_c01165{height:90.666667pt;}
.h4_c01165{height:96.000000pt;}
.hb_c01165{height:106.666667pt;}
.h8_c01165{height:122.610841pt;}
.h1_c01165{height:1118.666667pt;}
.h0_c01165{height:1118.880000pt;}
.w0_c01165{width:803.733333pt;}
.w1_c01165{width:804.000000pt;}
.x0_c01165{left:0.000000pt;}
.xe_c01165{left:1.367725pt;}
.x1_c01165{left:5.273333pt;}
.x3e_c01165{left:17.185333pt;}
.x31_c01165{left:22.560000pt;}
.x19_c01165{left:25.043729pt;}
.x4c_c01165{left:32.640000pt;}
.x54_c01165{left:35.274667pt;}
.x2f_c01165{left:39.120000pt;}
.x2_c01165{left:40.692545pt;}
.x1a_c01165{left:53.888693pt;}
.x55_c01165{left:59.370667pt;}
.x30_c01165{left:67.440000pt;}
.x1b_c01165{left:87.305925pt;}
.x60_c01165{left:89.761333pt;}
.x3b_c01165{left:93.120000pt;}
.xf_c01165{left:94.859597pt;}
.x4d_c01165{left:102.720000pt;}
.x3c_c01165{left:121.680000pt;}
.x3f_c01165{left:128.226181pt;}
.x3d_c01165{left:134.160000pt;}
.x24_c01165{left:137.408209pt;}
.x56_c01165{left:149.850667pt;}
.x3_c01165{left:153.002789pt;}
.x1c_c01165{left:156.649761pt;}
.x10_c01165{left:159.123937pt;}
.x61_c01165{left:160.321333pt;}
.x57_c01165{left:179.396000pt;}
.x32_c01165{left:186.960000pt;}
.x4e_c01165{left:188.880000pt;}
.x1d_c01165{left:192.536405pt;}
.x62_c01165{left:199.441333pt;}
.x4f_c01165{left:209.280000pt;}
.x42_c01165{left:210.883737pt;}
.x43_c01165{left:218.983913pt;}
.x4_c01165{left:224.184869pt;}
.x11_c01165{left:225.473357pt;}
.x58_c01165{left:229.809333pt;}
.x33_c01165{left:234.960000pt;}
.x25_c01165{left:243.138445pt;}
.x63_c01165{left:250.801333pt;}
.x59_c01165{left:260.000000pt;}
.x44_c01165{left:262.570805pt;}
.x12_c01165{left:264.512621pt;}
.x40_c01165{left:267.609325pt;}
.x26_c01165{left:276.676953pt;}
.x5a_c01165{left:279.157333pt;}
.x5_c01165{left:284.684309pt;}
.x50_c01165{left:289.200000pt;}
.x64_c01165{left:290.161333pt;}
.x41_c01165{left:296.011561pt;}
.x34_c01165{left:299.280000pt;}
.x13_c01165{left:305.156305pt;}
.x45_c01165{left:316.932121pt;}
.x6_c01165{left:320.288669pt;}
.x1e_c01165{left:324.266441pt;}
.x27_c01165{left:326.247101pt;}
.x35_c01165{left:345.840000pt;}
.x1f_c01165{left:353.648457pt;}
.x7_c01165{left:356.075513pt;}
.x14_c01165{left:361.202677pt;}
.x28_c01165{left:366.038361pt;}
.x36_c01165{left:367.200000pt;}
.x46_c01165{left:374.877837pt;}
.x20_c01165{left:376.676425pt;}
.x5b_c01165{left:378.386667pt;}
.x65_c01165{left:385.441333pt;}
.x29_c01165{left:400.373789pt;}
.x8_c01165{left:407.942261pt;}
.x15_c01165{left:411.651497pt;}
.x47_c01165{left:412.575133pt;}
.x21_c01165{left:416.552997pt;}
.x51_c01165{left:425.520000pt;}
.x2a_c01165{left:429.946409pt;}
.x37_c01165{left:431.760000pt;}
.x6a_c01165{left:437.968000pt;}
.x48_c01165{left:443.888485pt;}
.x38_c01165{left:463.920000pt;}
.x22_c01165{left:469.763961pt;}
.x16_c01165{left:479.741201pt;}
.x9_c01165{left:485.404721pt;}
.xa_c01165{left:487.755701pt;}
.x2b_c01165{left:491.795493pt;}
.x23_c01165{left:500.774449pt;}
.x66_c01165{left:506.401333pt;}
.xb_c01165{left:528.787961pt;}
.xc_c01165{left:529.797617pt;}
.x17_c01165{left:532.746437pt;}
.x52_c01165{left:534.480000pt;}
.x49_c01165{left:535.951093pt;}
.x2c_c01165{left:538.516481pt;}
.x39_c01165{left:542.640000pt;}
.x67_c01165{left:544.081333pt;}
.x6b_c01165{left:550.260000pt;}
.x18_c01165{left:563.334761pt;}
.xd_c01165{left:565.374005pt;}
.x2d_c01165{left:570.158657pt;}
.x4a_c01165{left:580.134897pt;}
.x68_c01165{left:582.481333pt;}
.x3a_c01165{left:592.800000pt;}
.x5c_c01165{left:612.672000pt;}
.x4b_c01165{left:619.196645pt;}
.x2e_c01165{left:628.946665pt;}
.x69_c01165{left:726.961333pt;}
.x5d_c01165{left:741.472000pt;}
.x53_c01165{left:752.160000pt;}
.x5e_c01165{left:756.794667pt;}
.x5f_c01165{left:767.320000pt;}
.x70_c01165{left:774.000000pt;}
.x6e_c01165{left:774.960000pt;}
.x6d_c01165{left:776.160000pt;}
.x6c_c01165{left:777.360000pt;}
.x6f_c01165{left:778.320000pt;}
.x72_c01165{left:780.000000pt;}
.x73_c01165{left:780.960000pt;}
.x77_c01165{left:783.120000pt;}
.x71_c01165{left:784.080000pt;}
.x76_c01165{left:785.040000pt;}
.x74_c01165{left:786.000000pt;}
.x75_c01165{left:787.200000pt;}
.x7c_c01165{left:789.120000pt;}
.x7a_c01165{left:790.800000pt;}
.x79_c01165{left:791.760000pt;}
.x7b_c01165{left:792.720000pt;}
.x78_c01165{left:793.680000pt;}
.x7d_c01165{left:794.880000pt;}
.x7e_c01165{left:797.040000pt;}
}





/* 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_c01166 {
    display:none;
  }
  .loading-indicator_c01166.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01166 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_c01166 { 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_c01166" -> "#page-container .classname_c01166")
 */
.pf_c01166 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01166 { /* 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_c01166.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01166 { /* 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_c01166 { /* 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_c01166 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01166 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01166 {overflow:visible;}
  }
}
.c_c01166 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01166 { /* 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_c01166:after { /* webkit #35443 */
  content: '';
}
.t_c01166:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01166 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 */
}
.__c01166 { /* 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_c01166 { /* info for Javascript */
  display:none;
}
.l_c01166 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01166 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01166 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01166: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_c01166 {
    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_c01166.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01166.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_c01166 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01166{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01166;src:url('chunks/assets/font_b11a17f404e7258299fdf971.woff2')format("woff");}.ff1_c01166{font-family:ff1_c01166;line-height:1.000000;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;}
.m0_c01166{transform:matrix(0.153640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153640,0.000000,0.000000,0.250000,0,0);}
.m16_c01166{transform:matrix(0.179566,0.001257,-0.001750,0.249994,0,0);-ms-transform:matrix(0.179566,0.001257,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.179566,0.001257,-0.001750,0.249994,0,0);}
.m117_c01166{transform:matrix(0.189844,0.002468,-0.003250,0.249979,0,0);-ms-transform:matrix(0.189844,0.002468,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.189844,0.002468,-0.003250,0.249979,0,0);}
.m7_c01166{transform:matrix(0.190990,0.001337,-0.001750,0.249994,0,0);-ms-transform:matrix(0.190990,0.001337,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.190990,0.001337,-0.001750,0.249994,0,0);}
.mf4_c01166{transform:matrix(0.192708,0.002891,-0.003750,0.249972,0,0);-ms-transform:matrix(0.192708,0.002891,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.192708,0.002891,-0.003750,0.249972,0,0);}
.mf8_c01166{transform:matrix(0.196450,0.003143,-0.003999,0.249968,0,0);-ms-transform:matrix(0.196450,0.003143,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.196450,0.003143,-0.003999,0.249968,0,0);}
.m1c_c01166{transform:matrix(0.196730,0.001377,-0.001750,0.249994,0,0);-ms-transform:matrix(0.196730,0.001377,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.196730,0.001377,-0.001750,0.249994,0,0);}
.m11e_c01166{transform:matrix(0.199228,0.002590,-0.003250,0.249979,0,0);-ms-transform:matrix(0.199228,0.002590,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.199228,0.002590,-0.003250,0.249979,0,0);}
.m1a_c01166{transform:matrix(0.199510,0.001397,-0.001750,0.249994,0,0);-ms-transform:matrix(0.199510,0.001397,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.199510,0.001397,-0.001750,0.249994,0,0);}
.mcf_c01166{transform:matrix(0.202160,0.002830,-0.003500,0.249976,0,0);-ms-transform:matrix(0.202160,0.002830,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.202160,0.002830,-0.003500,0.249976,0,0);}
.m116_c01166{transform:matrix(0.202648,0.002634,-0.003250,0.249979,0,0);-ms-transform:matrix(0.202648,0.002634,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.202648,0.002634,-0.003250,0.249979,0,0);}
.m119_c01166{transform:matrix(0.203148,0.002641,-0.003250,0.249979,0,0);-ms-transform:matrix(0.203148,0.002641,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.203148,0.002641,-0.003250,0.249979,0,0);}
.m1b_c01166{transform:matrix(0.203295,0.001423,-0.001750,0.249994,0,0);-ms-transform:matrix(0.203295,0.001423,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.203295,0.001423,-0.001750,0.249994,0,0);}
.m11c_c01166{transform:matrix(0.203633,0.002647,-0.003250,0.249979,0,0);-ms-transform:matrix(0.203633,0.002647,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.203633,0.002647,-0.003250,0.249979,0,0);}
.m114_c01166{transform:matrix(0.204298,0.002656,-0.003250,0.249979,0,0);-ms-transform:matrix(0.204298,0.002656,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.204298,0.002656,-0.003250,0.249979,0,0);}
.m71_c01166{transform:matrix(0.204335,0.002043,-0.002500,0.249988,0,0);-ms-transform:matrix(0.204335,0.002043,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.204335,0.002043,-0.002500,0.249988,0,0);}
.m120_c01166{transform:matrix(0.205038,0.002665,-0.003250,0.249979,0,0);-ms-transform:matrix(0.205038,0.002665,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.205038,0.002665,-0.003250,0.249979,0,0);}
.m123_c01166{transform:matrix(0.205343,0.002669,-0.003250,0.249979,0,0);-ms-transform:matrix(0.205343,0.002669,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.205343,0.002669,-0.003250,0.249979,0,0);}
.m11f_c01166{transform:matrix(0.206118,0.002680,-0.003250,0.249979,0,0);-ms-transform:matrix(0.206118,0.002680,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.206118,0.002680,-0.003250,0.249979,0,0);}
.m17_c01166{transform:matrix(0.206920,0.001448,-0.001750,0.249994,0,0);-ms-transform:matrix(0.206920,0.001448,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.206920,0.001448,-0.001750,0.249994,0,0);}
.m127_c01166{transform:matrix(0.208017,0.002704,-0.003250,0.249979,0,0);-ms-transform:matrix(0.208017,0.002704,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.208017,0.002704,-0.003250,0.249979,0,0);}
.mcb_c01166{transform:matrix(0.208080,0.002913,-0.003500,0.249976,0,0);-ms-transform:matrix(0.208080,0.002913,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.208080,0.002913,-0.003500,0.249976,0,0);}
.m97_c01166{transform:matrix(0.209105,0.002509,-0.003000,0.249982,0,0);-ms-transform:matrix(0.209105,0.002509,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.209105,0.002509,-0.003000,0.249982,0,0);}
.m40_c01166{transform:matrix(0.209541,0.001257,-0.001500,0.249996,0,0);-ms-transform:matrix(0.209541,0.001257,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.209541,0.001257,-0.001500,0.249996,0,0);}
.m100_c01166{transform:matrix(0.209648,0.003354,-0.003999,0.249968,0,0);-ms-transform:matrix(0.209648,0.003354,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.209648,0.003354,-0.003999,0.249968,0,0);}
.m101_c01166{transform:matrix(0.210528,0.003368,-0.003999,0.249968,0,0);-ms-transform:matrix(0.210528,0.003368,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.210528,0.003368,-0.003999,0.249968,0,0);}
.m75_c01166{transform:matrix(0.210609,0.002106,-0.002500,0.249988,0,0);-ms-transform:matrix(0.210609,0.002106,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.210609,0.002106,-0.002500,0.249988,0,0);}
.mbb_c01166{transform:matrix(0.211544,0.002962,-0.003500,0.249976,0,0);-ms-transform:matrix(0.211544,0.002962,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.211544,0.002962,-0.003500,0.249976,0,0);}
.m1d_c01166{transform:matrix(0.212410,0.001487,-0.001750,0.249994,0,0);-ms-transform:matrix(0.212410,0.001487,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.212410,0.001487,-0.001750,0.249994,0,0);}
.m18_c01166{transform:matrix(0.212510,0.001488,-0.001750,0.249994,0,0);-ms-transform:matrix(0.212510,0.001488,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.212510,0.001488,-0.001750,0.249994,0,0);}
.m20_c01166{transform:matrix(0.213520,0.001495,-0.001750,0.249994,0,0);-ms-transform:matrix(0.213520,0.001495,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.213520,0.001495,-0.001750,0.249994,0,0);}
.m113_c01166{transform:matrix(0.213912,0.002781,-0.003250,0.249979,0,0);-ms-transform:matrix(0.213912,0.002781,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.213912,0.002781,-0.003250,0.249979,0,0);}
.m70_c01166{transform:matrix(0.214404,0.002144,-0.002500,0.249988,0,0);-ms-transform:matrix(0.214404,0.002144,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.214404,0.002144,-0.002500,0.249988,0,0);}
.mbd_c01166{transform:matrix(0.215694,0.003020,-0.003500,0.249976,0,0);-ms-transform:matrix(0.215694,0.003020,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.215694,0.003020,-0.003500,0.249976,0,0);}
.m44_c01166{transform:matrix(0.215781,0.001295,-0.001500,0.249996,0,0);-ms-transform:matrix(0.215781,0.001295,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.215781,0.001295,-0.001500,0.249996,0,0);}
.m12d_c01166{transform:matrix(0.216002,0.002808,-0.003250,0.249979,0,0);-ms-transform:matrix(0.216002,0.002808,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.216002,0.002808,-0.003250,0.249979,0,0);}
.mfc_c01166{transform:matrix(0.216122,0.003458,-0.003999,0.249968,0,0);-ms-transform:matrix(0.216122,0.003458,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.216122,0.003458,-0.003999,0.249968,0,0);}
.m7f_c01166{transform:matrix(0.216324,0.002163,-0.002500,0.249988,0,0);-ms-transform:matrix(0.216324,0.002163,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.216324,0.002163,-0.002500,0.249988,0,0);}
.mf7_c01166{transform:matrix(0.216621,0.003249,-0.003750,0.249972,0,0);-ms-transform:matrix(0.216621,0.003249,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.216621,0.003249,-0.003750,0.249972,0,0);}
.m12f_c01166{transform:matrix(0.216772,0.002818,-0.003250,0.249979,0,0);-ms-transform:matrix(0.216772,0.002818,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.216772,0.002818,-0.003250,0.249979,0,0);}
.mb9_c01166{transform:matrix(0.216844,0.003036,-0.003500,0.249976,0,0);-ms-transform:matrix(0.216844,0.003036,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.216844,0.003036,-0.003500,0.249976,0,0);}
.mff_c01166{transform:matrix(0.216967,0.003471,-0.003999,0.249968,0,0);-ms-transform:matrix(0.216967,0.003471,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.216967,0.003471,-0.003999,0.249968,0,0);}
.mb_c01166{transform:matrix(0.216990,0.001519,-0.001750,0.249994,0,0);-ms-transform:matrix(0.216990,0.001519,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.216990,0.001519,-0.001750,0.249994,0,0);}
.maf_c01166{transform:matrix(0.217019,0.002604,-0.003000,0.249982,0,0);-ms-transform:matrix(0.217019,0.002604,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.217019,0.002604,-0.003000,0.249982,0,0);}
.m79_c01166{transform:matrix(0.217024,0.002170,-0.002500,0.249988,0,0);-ms-transform:matrix(0.217024,0.002170,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.217024,0.002170,-0.002500,0.249988,0,0);}
.m11d_c01166{transform:matrix(0.217842,0.002832,-0.003250,0.249979,0,0);-ms-transform:matrix(0.217842,0.002832,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.217842,0.002832,-0.003250,0.249979,0,0);}
.m73_c01166{transform:matrix(0.218944,0.002189,-0.002500,0.249988,0,0);-ms-transform:matrix(0.218944,0.002189,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.218944,0.002189,-0.002500,0.249988,0,0);}
.m3e_c01166{transform:matrix(0.219311,0.001316,-0.001500,0.249996,0,0);-ms-transform:matrix(0.219311,0.001316,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.219311,0.001316,-0.001500,0.249996,0,0);}
.m11b_c01166{transform:matrix(0.221281,0.002877,-0.003250,0.249979,0,0);-ms-transform:matrix(0.221281,0.002877,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.221281,0.002877,-0.003250,0.249979,0,0);}
.m4f_c01166{transform:matrix(0.221371,0.001328,-0.001500,0.249996,0,0);-ms-transform:matrix(0.221371,0.001328,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.221371,0.001328,-0.001500,0.249996,0,0);}
.m115_c01166{transform:matrix(0.222026,0.002886,-0.003250,0.249979,0,0);-ms-transform:matrix(0.222026,0.002886,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.222026,0.002886,-0.003250,0.249979,0,0);}
.m31_c01166{transform:matrix(0.222605,0.001558,-0.001750,0.249994,0,0);-ms-transform:matrix(0.222605,0.001558,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.222605,0.001558,-0.001750,0.249994,0,0);}
.m48_c01166{transform:matrix(0.222606,0.001336,-0.001500,0.249996,0,0);-ms-transform:matrix(0.222606,0.001336,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.222606,0.001336,-0.001500,0.249996,0,0);}
.m76_c01166{transform:matrix(0.223254,0.002233,-0.002500,0.249988,0,0);-ms-transform:matrix(0.223254,0.002233,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.223254,0.002233,-0.002500,0.249988,0,0);}
.m57_c01166{transform:matrix(0.223601,0.001342,-0.001500,0.249996,0,0);-ms-transform:matrix(0.223601,0.001342,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.223601,0.001342,-0.001500,0.249996,0,0);}
.m107_c01166{transform:matrix(0.223941,0.003583,-0.003999,0.249968,0,0);-ms-transform:matrix(0.223941,0.003583,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.223941,0.003583,-0.003999,0.249968,0,0);}
.m3b_c01166{transform:matrix(0.224076,0.001344,-0.001500,0.249996,0,0);-ms-transform:matrix(0.224076,0.001344,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.224076,0.001344,-0.001500,0.249996,0,0);}
.mbf_c01166{transform:matrix(0.224443,0.003142,-0.003500,0.249976,0,0);-ms-transform:matrix(0.224443,0.003142,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.224443,0.003142,-0.003500,0.249976,0,0);}
.m128_c01166{transform:matrix(0.224581,0.002920,-0.003250,0.249979,0,0);-ms-transform:matrix(0.224581,0.002920,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.224581,0.002920,-0.003250,0.249979,0,0);}
.m10e_c01166{transform:matrix(0.224706,0.003595,-0.003999,0.249968,0,0);-ms-transform:matrix(0.224706,0.003595,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.224706,0.003595,-0.003999,0.249968,0,0);}
.m4_c01166{transform:matrix(0.224759,0.001573,-0.001750,0.249994,0,0);-ms-transform:matrix(0.224759,0.001573,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.224759,0.001573,-0.001750,0.249994,0,0);}
.m7c_c01166{transform:matrix(0.225454,0.002255,-0.002500,0.249988,0,0);-ms-transform:matrix(0.225454,0.002255,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.225454,0.002255,-0.002500,0.249988,0,0);}
.mb6_c01166{transform:matrix(0.225498,0.003157,-0.003500,0.249976,0,0);-ms-transform:matrix(0.225498,0.003157,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.225498,0.003157,-0.003500,0.249976,0,0);}
.m5_c01166{transform:matrix(0.225689,0.001580,-0.001750,0.249994,0,0);-ms-transform:matrix(0.225689,0.001580,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.225689,0.001580,-0.001750,0.249994,0,0);}
.m121_c01166{transform:matrix(0.225901,0.002937,-0.003250,0.249979,0,0);-ms-transform:matrix(0.225901,0.002937,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.225901,0.002937,-0.003250,0.249979,0,0);}
.m12a_c01166{transform:matrix(0.226496,0.002944,-0.003250,0.249979,0,0);-ms-transform:matrix(0.226496,0.002944,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.226496,0.002944,-0.003250,0.249979,0,0);}
.m63_c01166{transform:matrix(0.226829,0.002268,-0.002500,0.249988,0,0);-ms-transform:matrix(0.226829,0.002268,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.226829,0.002268,-0.002500,0.249988,0,0);}
.mb2_c01166{transform:matrix(0.227079,0.002725,-0.003000,0.249982,0,0);-ms-transform:matrix(0.227079,0.002725,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.227079,0.002725,-0.003000,0.249982,0,0);}
.mbe_c01166{transform:matrix(0.227238,0.003181,-0.003500,0.249976,0,0);-ms-transform:matrix(0.227238,0.003181,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.227238,0.003181,-0.003500,0.249976,0,0);}
.mb5_c01166{transform:matrix(0.227578,0.003186,-0.003500,0.249976,0,0);-ms-transform:matrix(0.227578,0.003186,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.227578,0.003186,-0.003500,0.249976,0,0);}
.m3_c01166{transform:matrix(0.227719,0.001594,-0.001750,0.249994,0,0);-ms-transform:matrix(0.227719,0.001594,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.227719,0.001594,-0.001750,0.249994,0,0);}
.mde_c01166{transform:matrix(0.228134,0.003422,-0.003750,0.249972,0,0);-ms-transform:matrix(0.228134,0.003422,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.228134,0.003422,-0.003750,0.249972,0,0);}
.md0_c01166{transform:matrix(0.228143,0.003194,-0.003500,0.249976,0,0);-ms-transform:matrix(0.228143,0.003194,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.228143,0.003194,-0.003500,0.249976,0,0);}
.m62_c01166{transform:matrix(0.228159,0.002282,-0.002500,0.249988,0,0);-ms-transform:matrix(0.228159,0.002282,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.228159,0.002282,-0.002500,0.249988,0,0);}
.m4a_c01166{transform:matrix(0.228166,0.001369,-0.001500,0.249996,0,0);-ms-transform:matrix(0.228166,0.001369,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.228166,0.001369,-0.001500,0.249996,0,0);}
.m1e_c01166{transform:matrix(0.228219,0.001598,-0.001750,0.249994,0,0);-ms-transform:matrix(0.228219,0.001598,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.228219,0.001598,-0.001750,0.249994,0,0);}
.mfd_c01166{transform:matrix(0.228601,0.003658,-0.003999,0.249968,0,0);-ms-transform:matrix(0.228601,0.003658,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.228601,0.003658,-0.003999,0.249968,0,0);}
.m1f_c01166{transform:matrix(0.228909,0.001602,-0.001750,0.249994,0,0);-ms-transform:matrix(0.228909,0.001602,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.228909,0.001602,-0.001750,0.249994,0,0);}
.md9_c01166{transform:matrix(0.228939,0.003434,-0.003750,0.249972,0,0);-ms-transform:matrix(0.228939,0.003434,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.228939,0.003434,-0.003750,0.249972,0,0);}
.m33_c01166{transform:matrix(0.229259,0.001605,-0.001750,0.249994,0,0);-ms-transform:matrix(0.229259,0.001605,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.229259,0.001605,-0.001750,0.249994,0,0);}
.m83_c01166{transform:matrix(0.229319,0.002293,-0.002500,0.249988,0,0);-ms-transform:matrix(0.229319,0.002293,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.229319,0.002293,-0.002500,0.249988,0,0);}
.meb_c01166{transform:matrix(0.229499,0.003442,-0.003750,0.249972,0,0);-ms-transform:matrix(0.229499,0.003442,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.229499,0.003442,-0.003750,0.249972,0,0);}
.mc3_c01166{transform:matrix(0.229503,0.003213,-0.003500,0.249976,0,0);-ms-transform:matrix(0.229503,0.003213,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.229503,0.003213,-0.003500,0.249976,0,0);}
.mb1_c01166{transform:matrix(0.229783,0.002757,-0.003000,0.249982,0,0);-ms-transform:matrix(0.229783,0.002757,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.229783,0.002757,-0.003000,0.249982,0,0);}
.m6e_c01166{transform:matrix(0.230208,0.002302,-0.002500,0.249988,0,0);-ms-transform:matrix(0.230208,0.002302,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.230208,0.002302,-0.002500,0.249988,0,0);}
.m99_c01166{transform:matrix(0.230268,0.002763,-0.003000,0.249982,0,0);-ms-transform:matrix(0.230268,0.002763,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.230268,0.002763,-0.003000,0.249982,0,0);}
.med_c01166{transform:matrix(0.230314,0.003455,-0.003750,0.249972,0,0);-ms-transform:matrix(0.230314,0.003455,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.230314,0.003455,-0.003750,0.249972,0,0);}
.m93_c01166{transform:matrix(0.230323,0.002764,-0.003000,0.249982,0,0);-ms-transform:matrix(0.230323,0.002764,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.230323,0.002764,-0.003000,0.249982,0,0);}
.m72_c01166{transform:matrix(0.230538,0.002305,-0.002500,0.249988,0,0);-ms-transform:matrix(0.230538,0.002305,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.230538,0.002305,-0.002500,0.249988,0,0);}
.m11a_c01166{transform:matrix(0.230566,0.002997,-0.003250,0.249979,0,0);-ms-transform:matrix(0.230566,0.002997,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.230566,0.002997,-0.003250,0.249979,0,0);}
.m118_c01166{transform:matrix(0.230611,0.002998,-0.003250,0.249979,0,0);-ms-transform:matrix(0.230611,0.002998,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.230611,0.002998,-0.003250,0.249979,0,0);}
.m12b_c01166{transform:matrix(0.230731,0.002999,-0.003250,0.249979,0,0);-ms-transform:matrix(0.230731,0.002999,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.230731,0.002999,-0.003250,0.249979,0,0);}
.m66_c01166{transform:matrix(0.230883,0.002309,-0.002500,0.249988,0,0);-ms-transform:matrix(0.230883,0.002309,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.230883,0.002309,-0.002500,0.249988,0,0);}
.m124_c01166{transform:matrix(0.230975,0.003003,-0.003250,0.249979,0,0);-ms-transform:matrix(0.230975,0.003003,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.230975,0.003003,-0.003250,0.249979,0,0);}
.m103_c01166{transform:matrix(0.231290,0.003701,-0.003999,0.249968,0,0);-ms-transform:matrix(0.231290,0.003701,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.231290,0.003701,-0.003999,0.249968,0,0);}
.m2_c01166{transform:matrix(0.231559,0.001621,-0.001750,0.249994,0,0);-ms-transform:matrix(0.231559,0.001621,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.231559,0.001621,-0.001750,0.249994,0,0);}
.m43_c01166{transform:matrix(0.231686,0.001390,-0.001500,0.249996,0,0);-ms-transform:matrix(0.231686,0.001390,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.231686,0.001390,-0.001500,0.249996,0,0);}
.m10d_c01166{transform:matrix(0.231730,0.003708,-0.003999,0.249968,0,0);-ms-transform:matrix(0.231730,0.003708,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.231730,0.003708,-0.003999,0.249968,0,0);}
.m36_c01166{transform:matrix(0.231834,0.001623,-0.001750,0.249994,0,0);-ms-transform:matrix(0.231834,0.001623,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.231834,0.001623,-0.001750,0.249994,0,0);}
.m42_c01166{transform:matrix(0.232721,0.001396,-0.001500,0.249996,0,0);-ms-transform:matrix(0.232721,0.001396,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.232721,0.001396,-0.001500,0.249996,0,0);}
.m19_c01166{transform:matrix(0.233269,0.001633,-0.001750,0.249994,0,0);-ms-transform:matrix(0.233269,0.001633,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.233269,0.001633,-0.001750,0.249994,0,0);}
.m96_c01166{transform:matrix(0.233388,0.002801,-0.003000,0.249982,0,0);-ms-transform:matrix(0.233388,0.002801,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.233388,0.002801,-0.003000,0.249982,0,0);}
.m3d_c01166{transform:matrix(0.233421,0.001401,-0.001500,0.249996,0,0);-ms-transform:matrix(0.233421,0.001401,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.233421,0.001401,-0.001500,0.249996,0,0);}
.m1_c01166{transform:matrix(0.233800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233800,0.000000,0.000000,0.250000,0,0);}
.md2_c01166{transform:matrix(0.234057,0.003277,-0.003500,0.249976,0,0);-ms-transform:matrix(0.234057,0.003277,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.234057,0.003277,-0.003500,0.249976,0,0);}
.mc6_c01166{transform:matrix(0.234142,0.003278,-0.003500,0.249976,0,0);-ms-transform:matrix(0.234142,0.003278,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.234142,0.003278,-0.003500,0.249976,0,0);}
.m129_c01166{transform:matrix(0.234240,0.003045,-0.003250,0.249979,0,0);-ms-transform:matrix(0.234240,0.003045,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.234240,0.003045,-0.003250,0.249979,0,0);}
.md7_c01166{transform:matrix(0.234354,0.003515,-0.003750,0.249972,0,0);-ms-transform:matrix(0.234354,0.003515,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.234354,0.003515,-0.003750,0.249972,0,0);}
.m4b_c01166{transform:matrix(0.234531,0.001407,-0.001500,0.249996,0,0);-ms-transform:matrix(0.234531,0.001407,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.234531,0.001407,-0.001500,0.249996,0,0);}
.m80_c01166{transform:matrix(0.234678,0.002347,-0.002500,0.249988,0,0);-ms-transform:matrix(0.234678,0.002347,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.234678,0.002347,-0.002500,0.249988,0,0);}
.mce_c01166{transform:matrix(0.234822,0.003288,-0.003500,0.249976,0,0);-ms-transform:matrix(0.234822,0.003288,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.234822,0.003288,-0.003500,0.249976,0,0);}
.m10f_c01166{transform:matrix(0.234825,0.003757,-0.003999,0.249968,0,0);-ms-transform:matrix(0.234825,0.003757,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.234825,0.003757,-0.003999,0.249968,0,0);}
.m34_c01166{transform:matrix(0.234929,0.001645,-0.001750,0.249994,0,0);-ms-transform:matrix(0.234929,0.001645,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.234929,0.001645,-0.001750,0.249994,0,0);}
.m7b_c01166{transform:matrix(0.235083,0.002351,-0.002500,0.249988,0,0);-ms-transform:matrix(0.235083,0.002351,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.235083,0.002351,-0.002500,0.249988,0,0);}
.m87_c01166{transform:matrix(0.235113,0.002351,-0.002500,0.249988,0,0);-ms-transform:matrix(0.235113,0.002351,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.235113,0.002351,-0.002500,0.249988,0,0);}
.m125_c01166{transform:matrix(0.235215,0.003058,-0.003250,0.249979,0,0);-ms-transform:matrix(0.235215,0.003058,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.235215,0.003058,-0.003250,0.249979,0,0);}
.m81_c01166{transform:matrix(0.235513,0.002355,-0.002500,0.249988,0,0);-ms-transform:matrix(0.235513,0.002355,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.235513,0.002355,-0.002500,0.249988,0,0);}
.m12e_c01166{transform:matrix(0.235675,0.003064,-0.003250,0.249979,0,0);-ms-transform:matrix(0.235675,0.003064,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.235675,0.003064,-0.003250,0.249979,0,0);}
.m7e_c01166{transform:matrix(0.235798,0.002358,-0.002500,0.249988,0,0);-ms-transform:matrix(0.235798,0.002358,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.235798,0.002358,-0.002500,0.249988,0,0);}
.m10a_c01166{transform:matrix(0.235900,0.003774,-0.003999,0.249968,0,0);-ms-transform:matrix(0.235900,0.003774,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.235900,0.003774,-0.003999,0.249968,0,0);}
.mf9_c01166{transform:matrix(0.236040,0.003777,-0.003999,0.249968,0,0);-ms-transform:matrix(0.236040,0.003777,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.236040,0.003777,-0.003999,0.249968,0,0);}
.mf0_c01166{transform:matrix(0.236083,0.003541,-0.003750,0.249972,0,0);-ms-transform:matrix(0.236083,0.003541,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.236083,0.003541,-0.003750,0.249972,0,0);}
.m3c_c01166{transform:matrix(0.236466,0.001419,-0.001500,0.249996,0,0);-ms-transform:matrix(0.236466,0.001419,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.236466,0.001419,-0.001500,0.249996,0,0);}
.mf5_c01166{transform:matrix(0.236518,0.003548,-0.003750,0.249972,0,0);-ms-transform:matrix(0.236518,0.003548,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.236518,0.003548,-0.003750,0.249972,0,0);}
.mfb_c01166{transform:matrix(0.236965,0.003791,-0.003999,0.249968,0,0);-ms-transform:matrix(0.236965,0.003791,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.236965,0.003791,-0.003999,0.249968,0,0);}
.m108_c01166{transform:matrix(0.236995,0.003792,-0.003999,0.249968,0,0);-ms-transform:matrix(0.236995,0.003792,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.236995,0.003792,-0.003999,0.249968,0,0);}
.mf2_c01166{transform:matrix(0.236998,0.003555,-0.003750,0.249972,0,0);-ms-transform:matrix(0.236998,0.003555,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.236998,0.003555,-0.003750,0.249972,0,0);}
.mcd_c01166{transform:matrix(0.237082,0.003319,-0.003500,0.249976,0,0);-ms-transform:matrix(0.237082,0.003319,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.237082,0.003319,-0.003500,0.249976,0,0);}
.m51_c01166{transform:matrix(0.237591,0.001426,-0.001500,0.249996,0,0);-ms-transform:matrix(0.237591,0.001426,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.237591,0.001426,-0.001500,0.249996,0,0);}
.mf6_c01166{transform:matrix(0.237753,0.003566,-0.003750,0.249972,0,0);-ms-transform:matrix(0.237753,0.003566,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.237753,0.003566,-0.003750,0.249972,0,0);}
.m126_c01166{transform:matrix(0.237850,0.003092,-0.003250,0.249979,0,0);-ms-transform:matrix(0.237850,0.003092,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.237850,0.003092,-0.003250,0.249979,0,0);}
.m6_c01166{transform:matrix(0.237894,0.001665,-0.001750,0.249994,0,0);-ms-transform:matrix(0.237894,0.001665,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.237894,0.001665,-0.001750,0.249994,0,0);}
.mda_c01166{transform:matrix(0.237948,0.003569,-0.003750,0.249972,0,0);-ms-transform:matrix(0.237948,0.003569,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.237948,0.003569,-0.003750,0.249972,0,0);}
.mcc_c01166{transform:matrix(0.238257,0.003336,-0.003500,0.249976,0,0);-ms-transform:matrix(0.238257,0.003336,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.238257,0.003336,-0.003500,0.249976,0,0);}
.m78_c01166{transform:matrix(0.238313,0.002383,-0.002500,0.249988,0,0);-ms-transform:matrix(0.238313,0.002383,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.238313,0.002383,-0.002500,0.249988,0,0);}
.m2e_c01166{transform:matrix(0.238529,0.001670,-0.001750,0.249994,0,0);-ms-transform:matrix(0.238529,0.001670,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.238529,0.001670,-0.001750,0.249994,0,0);}
.m82_c01166{transform:matrix(0.238838,0.002388,-0.002500,0.249988,0,0);-ms-transform:matrix(0.238838,0.002388,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.238838,0.002388,-0.002500,0.249988,0,0);}
.mc4_c01166{transform:matrix(0.239272,0.003350,-0.003500,0.249976,0,0);-ms-transform:matrix(0.239272,0.003350,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.239272,0.003350,-0.003500,0.249976,0,0);}
.m53_c01166{transform:matrix(0.239291,0.001436,-0.001500,0.249996,0,0);-ms-transform:matrix(0.239291,0.001436,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.239291,0.001436,-0.001500,0.249996,0,0);}
.me2_c01166{transform:matrix(0.239563,0.003593,-0.003750,0.249972,0,0);-ms-transform:matrix(0.239563,0.003593,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.239563,0.003593,-0.003750,0.249972,0,0);}
.m6c_c01166{transform:matrix(0.239578,0.002396,-0.002500,0.249988,0,0);-ms-transform:matrix(0.239578,0.002396,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.239578,0.002396,-0.002500,0.249988,0,0);}
.mba_c01166{transform:matrix(0.240366,0.003365,-0.003500,0.249976,0,0);-ms-transform:matrix(0.240366,0.003365,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.240366,0.003365,-0.003500,0.249976,0,0);}
.m74_c01166{transform:matrix(0.240438,0.002404,-0.002500,0.249988,0,0);-ms-transform:matrix(0.240438,0.002404,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.240438,0.002404,-0.002500,0.249988,0,0);}
.me4_c01166{transform:matrix(0.240568,0.003609,-0.003750,0.249972,0,0);-ms-transform:matrix(0.240568,0.003609,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.240568,0.003609,-0.003750,0.249972,0,0);}
.me6_c01166{transform:matrix(0.240608,0.003609,-0.003750,0.249972,0,0);-ms-transform:matrix(0.240608,0.003609,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.240608,0.003609,-0.003750,0.249972,0,0);}
.m64_c01166{transform:matrix(0.240698,0.002407,-0.002500,0.249988,0,0);-ms-transform:matrix(0.240698,0.002407,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.240698,0.002407,-0.002500,0.249988,0,0);}
.mac_c01166{transform:matrix(0.240718,0.002889,-0.003000,0.249982,0,0);-ms-transform:matrix(0.240718,0.002889,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.240718,0.002889,-0.003000,0.249982,0,0);}
.mb8_c01166{transform:matrix(0.241251,0.003378,-0.003500,0.249976,0,0);-ms-transform:matrix(0.241251,0.003378,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.241251,0.003378,-0.003500,0.249976,0,0);}
.m46_c01166{transform:matrix(0.241411,0.001448,-0.001500,0.249996,0,0);-ms-transform:matrix(0.241411,0.001448,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.241411,0.001448,-0.001500,0.249996,0,0);}
.m122_c01166{transform:matrix(0.241465,0.003139,-0.003250,0.249979,0,0);-ms-transform:matrix(0.241465,0.003139,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.241465,0.003139,-0.003250,0.249979,0,0);}
.mdc_c01166{transform:matrix(0.241993,0.003630,-0.003750,0.249972,0,0);-ms-transform:matrix(0.241993,0.003630,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.241993,0.003630,-0.003750,0.249972,0,0);}
.m15_c01166{transform:matrix(0.242129,0.001695,-0.001750,0.249994,0,0);-ms-transform:matrix(0.242129,0.001695,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.242129,0.001695,-0.001750,0.249994,0,0);}
.md1_c01166{transform:matrix(0.242311,0.003392,-0.003500,0.249976,0,0);-ms-transform:matrix(0.242311,0.003392,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.242311,0.003392,-0.003500,0.249976,0,0);}
.me0_c01166{transform:matrix(0.242728,0.003641,-0.003750,0.249972,0,0);-ms-transform:matrix(0.242728,0.003641,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.242728,0.003641,-0.003750,0.249972,0,0);}
.mec_c01166{transform:matrix(0.242928,0.003644,-0.003750,0.249972,0,0);-ms-transform:matrix(0.242928,0.003644,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.242928,0.003644,-0.003750,0.249972,0,0);}
.m8_c01166{transform:matrix(0.243484,0.001704,-0.001750,0.249994,0,0);-ms-transform:matrix(0.243484,0.001704,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.243484,0.001704,-0.001750,0.249994,0,0);}
.m9f_c01166{transform:matrix(0.243762,0.002925,-0.003000,0.249982,0,0);-ms-transform:matrix(0.243762,0.002925,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.243762,0.002925,-0.003000,0.249982,0,0);}
.m94_c01166{transform:matrix(0.244077,0.002929,-0.003000,0.249982,0,0);-ms-transform:matrix(0.244077,0.002929,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.244077,0.002929,-0.003000,0.249982,0,0);}
.m30_c01166{transform:matrix(0.244469,0.001711,-0.001750,0.249994,0,0);-ms-transform:matrix(0.244469,0.001711,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.244469,0.001711,-0.001750,0.249994,0,0);}
.m98_c01166{transform:matrix(0.245262,0.002943,-0.003000,0.249982,0,0);-ms-transform:matrix(0.245262,0.002943,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.245262,0.002943,-0.003000,0.249982,0,0);}
.mb0_c01166{transform:matrix(0.245427,0.002945,-0.003000,0.249982,0,0);-ms-transform:matrix(0.245427,0.002945,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.245427,0.002945,-0.003000,0.249982,0,0);}
.m5b_c01166{transform:matrix(0.245823,0.002458,-0.002500,0.249988,0,0);-ms-transform:matrix(0.245823,0.002458,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.245823,0.002458,-0.002500,0.249988,0,0);}
.md3_c01166{transform:matrix(0.245877,0.003688,-0.003750,0.249972,0,0);-ms-transform:matrix(0.245877,0.003688,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.245877,0.003688,-0.003750,0.249972,0,0);}
.m89_c01166{transform:matrix(0.245958,0.002460,-0.002500,0.249988,0,0);-ms-transform:matrix(0.245958,0.002460,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.245958,0.002460,-0.002500,0.249988,0,0);}
.m8f_c01166{transform:matrix(0.246602,0.002959,-0.003000,0.249982,0,0);-ms-transform:matrix(0.246602,0.002959,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.246602,0.002959,-0.003000,0.249982,0,0);}
.m28_c01166{transform:matrix(0.246614,0.001726,-0.001750,0.249994,0,0);-ms-transform:matrix(0.246614,0.001726,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.246614,0.001726,-0.001750,0.249994,0,0);}
.mee_c01166{transform:matrix(0.246812,0.003702,-0.003750,0.249972,0,0);-ms-transform:matrix(0.246812,0.003702,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.246812,0.003702,-0.003750,0.249972,0,0);}
.mca_c01166{transform:matrix(0.247276,0.003462,-0.003500,0.249976,0,0);-ms-transform:matrix(0.247276,0.003462,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.247276,0.003462,-0.003500,0.249976,0,0);}
.m68_c01166{transform:matrix(0.247673,0.002477,-0.002500,0.249988,0,0);-ms-transform:matrix(0.247673,0.002477,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.247673,0.002477,-0.002500,0.249988,0,0);}
.m56_c01166{transform:matrix(0.247751,0.001487,-0.001500,0.249996,0,0);-ms-transform:matrix(0.247751,0.001487,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.247751,0.001487,-0.001500,0.249996,0,0);}
.m3a_c01166{transform:matrix(0.247841,0.001487,-0.001500,0.249996,0,0);-ms-transform:matrix(0.247841,0.001487,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.247841,0.001487,-0.001500,0.249996,0,0);}
.m130_c01166{transform:matrix(0.248279,0.003228,-0.003250,0.249979,0,0);-ms-transform:matrix(0.248279,0.003228,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.248279,0.003228,-0.003250,0.249979,0,0);}
.m77_c01166{transform:matrix(0.248613,0.002486,-0.002500,0.249988,0,0);-ms-transform:matrix(0.248613,0.002486,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.248613,0.002486,-0.002500,0.249988,0,0);}
.mc1_c01166{transform:matrix(0.248636,0.003481,-0.003500,0.249976,0,0);-ms-transform:matrix(0.248636,0.003481,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.248636,0.003481,-0.003500,0.249976,0,0);}
.m6f_c01166{transform:matrix(0.248768,0.002488,-0.002500,0.249988,0,0);-ms-transform:matrix(0.248768,0.002488,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.248768,0.002488,-0.002500,0.249988,0,0);}
.m11_c01166{transform:matrix(0.248909,0.001742,-0.001750,0.249994,0,0);-ms-transform:matrix(0.248909,0.001742,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.248909,0.001742,-0.001750,0.249994,0,0);}
.ma_c01166{transform:matrix(0.248999,0.001743,-0.001750,0.249994,0,0);-ms-transform:matrix(0.248999,0.001743,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.248999,0.001743,-0.001750,0.249994,0,0);}
.m41_c01166{transform:matrix(0.249071,0.001494,-0.001500,0.249996,0,0);-ms-transform:matrix(0.249071,0.001494,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.249071,0.001494,-0.001500,0.249996,0,0);}
.m84_c01166{transform:matrix(0.249318,0.002493,-0.002500,0.249988,0,0);-ms-transform:matrix(0.249318,0.002493,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.249318,0.002493,-0.002500,0.249988,0,0);}
.m86_c01166{transform:matrix(0.249568,0.002496,-0.002500,0.249988,0,0);-ms-transform:matrix(0.249568,0.002496,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.249568,0.002496,-0.002500,0.249988,0,0);}
.me_c01166{transform:matrix(0.249609,0.001747,-0.001750,0.249994,0,0);-ms-transform:matrix(0.249609,0.001747,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.249609,0.001747,-0.001750,0.249994,0,0);}
.m6a_c01166{transform:matrix(0.249653,0.002497,-0.002500,0.249988,0,0);-ms-transform:matrix(0.249653,0.002497,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.249653,0.002497,-0.002500,0.249988,0,0);}
.me9_c01166{transform:matrix(0.250362,0.003755,-0.003750,0.249972,0,0);-ms-transform:matrix(0.250362,0.003755,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.250362,0.003755,-0.003750,0.249972,0,0);}
.m105_c01166{transform:matrix(0.250428,0.004007,-0.003999,0.249968,0,0);-ms-transform:matrix(0.250428,0.004007,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.250428,0.004007,-0.003999,0.249968,0,0);}
.mb7_c01166{transform:matrix(0.250680,0.003510,-0.003500,0.249976,0,0);-ms-transform:matrix(0.250680,0.003510,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.250680,0.003510,-0.003500,0.249976,0,0);}
.ma7_c01166{transform:matrix(0.250707,0.003008,-0.003000,0.249982,0,0);-ms-transform:matrix(0.250707,0.003008,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.250707,0.003008,-0.003000,0.249982,0,0);}
.ma1_c01166{transform:matrix(0.251127,0.003014,-0.003000,0.249982,0,0);-ms-transform:matrix(0.251127,0.003014,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.251127,0.003014,-0.003000,0.249982,0,0);}
.mfa_c01166{transform:matrix(0.251128,0.004018,-0.003999,0.249968,0,0);-ms-transform:matrix(0.251128,0.004018,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.251128,0.004018,-0.003999,0.249968,0,0);}
.m3f_c01166{transform:matrix(0.251180,0.001507,-0.001500,0.249996,0,0);-ms-transform:matrix(0.251180,0.001507,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.251180,0.001507,-0.001500,0.249996,0,0);}
.mc7_c01166{transform:matrix(0.252245,0.003531,-0.003500,0.249976,0,0);-ms-transform:matrix(0.252245,0.003531,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.252245,0.003531,-0.003500,0.249976,0,0);}
.m4e_c01166{transform:matrix(0.252425,0.001515,-0.001500,0.249996,0,0);-ms-transform:matrix(0.252425,0.001515,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.252425,0.001515,-0.001500,0.249996,0,0);}
.m7a_c01166{transform:matrix(0.252532,0.002525,-0.002500,0.249988,0,0);-ms-transform:matrix(0.252532,0.002525,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.252532,0.002525,-0.002500,0.249988,0,0);}
.me7_c01166{transform:matrix(0.252602,0.003789,-0.003750,0.249972,0,0);-ms-transform:matrix(0.252602,0.003789,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.252602,0.003789,-0.003750,0.249972,0,0);}
.mae_c01166{transform:matrix(0.252862,0.003034,-0.003000,0.249982,0,0);-ms-transform:matrix(0.252862,0.003034,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.252862,0.003034,-0.003000,0.249982,0,0);}
.m32_c01166{transform:matrix(0.252979,0.001771,-0.001750,0.249994,0,0);-ms-transform:matrix(0.252979,0.001771,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.252979,0.001771,-0.001750,0.249994,0,0);}
.mb4_c01166{transform:matrix(0.254052,0.003049,-0.003000,0.249982,0,0);-ms-transform:matrix(0.254052,0.003049,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.254052,0.003049,-0.003000,0.249982,0,0);}
.m24_c01166{transform:matrix(0.254159,0.001779,-0.001750,0.249994,0,0);-ms-transform:matrix(0.254159,0.001779,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.254159,0.001779,-0.001750,0.249994,0,0);}
.mbc_c01166{transform:matrix(0.254355,0.003561,-0.003500,0.249976,0,0);-ms-transform:matrix(0.254355,0.003561,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.254355,0.003561,-0.003500,0.249976,0,0);}
.mef_c01166{transform:matrix(0.254556,0.003818,-0.003750,0.249972,0,0);-ms-transform:matrix(0.254556,0.003818,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.254556,0.003818,-0.003750,0.249972,0,0);}
.m12c_c01166{transform:matrix(0.254703,0.003311,-0.003250,0.249979,0,0);-ms-transform:matrix(0.254703,0.003311,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.254703,0.003311,-0.003250,0.249979,0,0);}
.m5f_c01166{transform:matrix(0.255442,0.002554,-0.002500,0.249988,0,0);-ms-transform:matrix(0.255442,0.002554,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.255442,0.002554,-0.002500,0.249988,0,0);}
.ma4_c01166{transform:matrix(0.255592,0.003067,-0.003000,0.249982,0,0);-ms-transform:matrix(0.255592,0.003067,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.255592,0.003067,-0.003000,0.249982,0,0);}
.md4_c01166{transform:matrix(0.255716,0.003836,-0.003750,0.249972,0,0);-ms-transform:matrix(0.255716,0.003836,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.255716,0.003836,-0.003750,0.249972,0,0);}
.md8_c01166{transform:matrix(0.256151,0.003842,-0.003750,0.249972,0,0);-ms-transform:matrix(0.256151,0.003842,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.256151,0.003842,-0.003750,0.249972,0,0);}
.m50_c01166{transform:matrix(0.256185,0.001537,-0.001500,0.249996,0,0);-ms-transform:matrix(0.256185,0.001537,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.256185,0.001537,-0.001500,0.249996,0,0);}
.mf1_c01166{transform:matrix(0.256321,0.003845,-0.003750,0.249972,0,0);-ms-transform:matrix(0.256321,0.003845,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.256321,0.003845,-0.003750,0.249972,0,0);}
.mdd_c01166{transform:matrix(0.256581,0.003849,-0.003750,0.249972,0,0);-ms-transform:matrix(0.256581,0.003849,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.256581,0.003849,-0.003750,0.249972,0,0);}
.m9_c01166{transform:matrix(0.256689,0.001797,-0.001750,0.249994,0,0);-ms-transform:matrix(0.256689,0.001797,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.256689,0.001797,-0.001750,0.249994,0,0);}
.m106_c01166{transform:matrix(0.256837,0.004109,-0.003999,0.249968,0,0);-ms-transform:matrix(0.256837,0.004109,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.256837,0.004109,-0.003999,0.249968,0,0);}
.m10c_c01166{transform:matrix(0.257347,0.004118,-0.003999,0.249968,0,0);-ms-transform:matrix(0.257347,0.004118,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.257347,0.004118,-0.003999,0.249968,0,0);}
.mfe_c01166{transform:matrix(0.257572,0.004121,-0.003999,0.249968,0,0);-ms-transform:matrix(0.257572,0.004121,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.257572,0.004121,-0.003999,0.249968,0,0);}
.m9d_c01166{transform:matrix(0.257756,0.003093,-0.003000,0.249982,0,0);-ms-transform:matrix(0.257756,0.003093,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.257756,0.003093,-0.003000,0.249982,0,0);}
.mad_c01166{transform:matrix(0.258241,0.003099,-0.003000,0.249982,0,0);-ms-transform:matrix(0.258241,0.003099,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.258241,0.003099,-0.003000,0.249982,0,0);}
.mab_c01166{transform:matrix(0.258356,0.003100,-0.003000,0.249982,0,0);-ms-transform:matrix(0.258356,0.003100,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.258356,0.003100,-0.003000,0.249982,0,0);}
.md6_c01166{transform:matrix(0.258496,0.003877,-0.003750,0.249972,0,0);-ms-transform:matrix(0.258496,0.003877,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.258496,0.003877,-0.003750,0.249972,0,0);}
.m35_c01166{transform:matrix(0.258624,0.001810,-0.001750,0.249994,0,0);-ms-transform:matrix(0.258624,0.001810,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.258624,0.001810,-0.001750,0.249994,0,0);}
.m109_c01166{transform:matrix(0.258887,0.004142,-0.003999,0.249968,0,0);-ms-transform:matrix(0.258887,0.004142,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.258887,0.004142,-0.003999,0.249968,0,0);}
.m22_c01166{transform:matrix(0.258929,0.001813,-0.001750,0.249994,0,0);-ms-transform:matrix(0.258929,0.001813,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.258929,0.001813,-0.001750,0.249994,0,0);}
.m47_c01166{transform:matrix(0.259150,0.001555,-0.001500,0.249996,0,0);-ms-transform:matrix(0.259150,0.001555,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.259150,0.001555,-0.001500,0.249996,0,0);}
.m9e_c01166{transform:matrix(0.259361,0.003112,-0.003000,0.249982,0,0);-ms-transform:matrix(0.259361,0.003112,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.259361,0.003112,-0.003000,0.249982,0,0);}
.m9b_c01166{transform:matrix(0.259481,0.003114,-0.003000,0.249982,0,0);-ms-transform:matrix(0.259481,0.003114,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.259481,0.003114,-0.003000,0.249982,0,0);}
.m9a_c01166{transform:matrix(0.259501,0.003114,-0.003000,0.249982,0,0);-ms-transform:matrix(0.259501,0.003114,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.259501,0.003114,-0.003000,0.249982,0,0);}
.m38_c01166{transform:matrix(0.259514,0.001817,-0.001750,0.249994,0,0);-ms-transform:matrix(0.259514,0.001817,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.259514,0.001817,-0.001750,0.249994,0,0);}
.mdf_c01166{transform:matrix(0.260716,0.003911,-0.003750,0.249972,0,0);-ms-transform:matrix(0.260716,0.003911,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.260716,0.003911,-0.003750,0.249972,0,0);}
.m2d_c01166{transform:matrix(0.260739,0.001825,-0.001750,0.249994,0,0);-ms-transform:matrix(0.260739,0.001825,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.260739,0.001825,-0.001750,0.249994,0,0);}
.mf3_c01166{transform:matrix(0.262081,0.003931,-0.003750,0.249972,0,0);-ms-transform:matrix(0.262081,0.003931,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.262081,0.003931,-0.003750,0.249972,0,0);}
.m95_c01166{transform:matrix(0.262236,0.003147,-0.003000,0.249982,0,0);-ms-transform:matrix(0.262236,0.003147,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.262236,0.003147,-0.003000,0.249982,0,0);}
.mc5_c01166{transform:matrix(0.262449,0.003674,-0.003500,0.249976,0,0);-ms-transform:matrix(0.262449,0.003674,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.262449,0.003674,-0.003500,0.249976,0,0);}
.mb3_c01166{transform:matrix(0.262461,0.003150,-0.003000,0.249982,0,0);-ms-transform:matrix(0.262461,0.003150,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.262461,0.003150,-0.003000,0.249982,0,0);}
.ma2_c01166{transform:matrix(0.262921,0.003155,-0.003000,0.249982,0,0);-ms-transform:matrix(0.262921,0.003155,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.262921,0.003155,-0.003000,0.249982,0,0);}
.mc8_c01166{transform:matrix(0.263054,0.003683,-0.003500,0.249976,0,0);-ms-transform:matrix(0.263054,0.003683,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.263054,0.003683,-0.003500,0.249976,0,0);}
.m131_c01166{transform:matrix(0.263408,0.003424,-0.003250,0.249979,0,0);-ms-transform:matrix(0.263408,0.003424,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.263408,0.003424,-0.003250,0.249979,0,0);}
.m7d_c01166{transform:matrix(0.263557,0.002636,-0.002500,0.249988,0,0);-ms-transform:matrix(0.263557,0.002636,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.263557,0.002636,-0.002500,0.249988,0,0);}
.m12_c01166{transform:matrix(0.264259,0.001850,-0.001750,0.249994,0,0);-ms-transform:matrix(0.264259,0.001850,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.264259,0.001850,-0.001750,0.249994,0,0);}
.m10b_c01166{transform:matrix(0.264821,0.004237,-0.003999,0.249968,0,0);-ms-transform:matrix(0.264821,0.004237,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.264821,0.004237,-0.003999,0.249968,0,0);}
.m110_c01166{transform:matrix(0.265101,0.004242,-0.003999,0.249968,0,0);-ms-transform:matrix(0.265101,0.004242,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.265101,0.004242,-0.003999,0.249968,0,0);}
.m6b_c01166{transform:matrix(0.265627,0.002656,-0.002500,0.249988,0,0);-ms-transform:matrix(0.265627,0.002656,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.265627,0.002656,-0.002500,0.249988,0,0);}
.m6d_c01166{transform:matrix(0.266177,0.002662,-0.002500,0.249988,0,0);-ms-transform:matrix(0.266177,0.002662,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.266177,0.002662,-0.002500,0.249988,0,0);}
.m45_c01166{transform:matrix(0.266235,0.001597,-0.001500,0.249996,0,0);-ms-transform:matrix(0.266235,0.001597,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.266235,0.001597,-0.001500,0.249996,0,0);}
.m8c_c01166{transform:matrix(0.267101,0.003205,-0.003000,0.249982,0,0);-ms-transform:matrix(0.267101,0.003205,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.267101,0.003205,-0.003000,0.249982,0,0);}
.m65_c01166{transform:matrix(0.267137,0.002671,-0.002500,0.249988,0,0);-ms-transform:matrix(0.267137,0.002671,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.267137,0.002671,-0.002500,0.249988,0,0);}
.m4c_c01166{transform:matrix(0.268775,0.001613,-0.001500,0.249996,0,0);-ms-transform:matrix(0.268775,0.001613,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.268775,0.001613,-0.001500,0.249996,0,0);}
.mea_c01166{transform:matrix(0.269800,0.004047,-0.003750,0.249972,0,0);-ms-transform:matrix(0.269800,0.004047,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.269800,0.004047,-0.003750,0.249972,0,0);}
.mdb_c01166{transform:matrix(0.270050,0.004051,-0.003750,0.249972,0,0);-ms-transform:matrix(0.270050,0.004051,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.270050,0.004051,-0.003750,0.249972,0,0);}
.me8_c01166{transform:matrix(0.270480,0.004057,-0.003750,0.249972,0,0);-ms-transform:matrix(0.270480,0.004057,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.270480,0.004057,-0.003750,0.249972,0,0);}
.ma5_c01166{transform:matrix(0.270616,0.003247,-0.003000,0.249982,0,0);-ms-transform:matrix(0.270616,0.003247,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.270616,0.003247,-0.003000,0.249982,0,0);}
.m102_c01166{transform:matrix(0.271340,0.004341,-0.003999,0.249968,0,0);-ms-transform:matrix(0.271340,0.004341,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.271340,0.004341,-0.003999,0.249968,0,0);}
.ma6_c01166{transform:matrix(0.271345,0.003256,-0.003000,0.249982,0,0);-ms-transform:matrix(0.271345,0.003256,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.271345,0.003256,-0.003000,0.249982,0,0);}
.mc2_c01166{transform:matrix(0.271578,0.003802,-0.003500,0.249976,0,0);-ms-transform:matrix(0.271578,0.003802,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.271578,0.003802,-0.003500,0.249976,0,0);}
.m2c_c01166{transform:matrix(0.271738,0.001902,-0.001750,0.249994,0,0);-ms-transform:matrix(0.271738,0.001902,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.271738,0.001902,-0.001750,0.249994,0,0);}
.ma8_c01166{transform:matrix(0.272545,0.003271,-0.003000,0.249982,0,0);-ms-transform:matrix(0.272545,0.003271,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.272545,0.003271,-0.003000,0.249982,0,0);}
.m37_c01166{transform:matrix(0.272608,0.001908,-0.001750,0.249994,0,0);-ms-transform:matrix(0.272608,0.001908,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.272608,0.001908,-0.001750,0.249994,0,0);}
.md5_c01166{transform:matrix(0.272609,0.004089,-0.003750,0.249972,0,0);-ms-transform:matrix(0.272609,0.004089,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.272609,0.004089,-0.003750,0.249972,0,0);}
.m112_c01166{transform:matrix(0.272650,0.004362,-0.003999,0.249968,0,0);-ms-transform:matrix(0.272650,0.004362,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.272650,0.004362,-0.003999,0.249968,0,0);}
.m39_c01166{transform:matrix(0.273108,0.001912,-0.001750,0.249994,0,0);-ms-transform:matrix(0.273108,0.001912,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.273108,0.001912,-0.001750,0.249994,0,0);}
.m14_c01166{transform:matrix(0.273183,0.001912,-0.001750,0.249994,0,0);-ms-transform:matrix(0.273183,0.001912,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.273183,0.001912,-0.001750,0.249994,0,0);}
.ma9_c01166{transform:matrix(0.273220,0.003279,-0.003000,0.249982,0,0);-ms-transform:matrix(0.273220,0.003279,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.273220,0.003279,-0.003000,0.249982,0,0);}
.m2f_c01166{transform:matrix(0.273358,0.001914,-0.001750,0.249994,0,0);-ms-transform:matrix(0.273358,0.001914,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.273358,0.001914,-0.001750,0.249994,0,0);}
.m8a_c01166{transform:matrix(0.273951,0.002740,-0.002500,0.249988,0,0);-ms-transform:matrix(0.273951,0.002740,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.273951,0.002740,-0.002500,0.249988,0,0);}
.m54_c01166{transform:matrix(0.274100,0.001645,-0.001500,0.249996,0,0);-ms-transform:matrix(0.274100,0.001645,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.274100,0.001645,-0.001500,0.249996,0,0);}
.ma3_c01166{transform:matrix(0.274285,0.003291,-0.003000,0.249982,0,0);-ms-transform:matrix(0.274285,0.003291,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.274285,0.003291,-0.003000,0.249982,0,0);}
.m55_c01166{transform:matrix(0.275365,0.001652,-0.001500,0.249996,0,0);-ms-transform:matrix(0.275365,0.001652,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.275365,0.001652,-0.001500,0.249996,0,0);}
.m67_c01166{transform:matrix(0.275441,0.002754,-0.002500,0.249988,0,0);-ms-transform:matrix(0.275441,0.002754,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.275441,0.002754,-0.002500,0.249988,0,0);}
.mc0_c01166{transform:matrix(0.277553,0.003886,-0.003500,0.249976,0,0);-ms-transform:matrix(0.277553,0.003886,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.277553,0.003886,-0.003500,0.249976,0,0);}
.mc9_c01166{transform:matrix(0.277613,0.003887,-0.003500,0.249976,0,0);-ms-transform:matrix(0.277613,0.003887,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.277613,0.003887,-0.003500,0.249976,0,0);}
.m60_c01166{transform:matrix(0.278026,0.002780,-0.002500,0.249988,0,0);-ms-transform:matrix(0.278026,0.002780,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.278026,0.002780,-0.002500,0.249988,0,0);}
.m111_c01166{transform:matrix(0.278054,0.004449,-0.003999,0.249968,0,0);-ms-transform:matrix(0.278054,0.004449,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.278054,0.004449,-0.003999,0.249968,0,0);}
.m4d_c01166{transform:matrix(0.278155,0.001669,-0.001500,0.249996,0,0);-ms-transform:matrix(0.278155,0.001669,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.278155,0.001669,-0.001500,0.249996,0,0);}
.m58_c01166{transform:matrix(0.278300,0.001670,-0.001500,0.249996,0,0);-ms-transform:matrix(0.278300,0.001670,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.278300,0.001670,-0.001500,0.249996,0,0);}
.m49_c01166{transform:matrix(0.278325,0.001670,-0.001500,0.249996,0,0);-ms-transform:matrix(0.278325,0.001670,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.278325,0.001670,-0.001500,0.249996,0,0);}
.m52_c01166{transform:matrix(0.278845,0.001673,-0.001500,0.249996,0,0);-ms-transform:matrix(0.278845,0.001673,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.278845,0.001673,-0.001500,0.249996,0,0);}
.m104_c01166{transform:matrix(0.279369,0.004470,-0.003999,0.249968,0,0);-ms-transform:matrix(0.279369,0.004470,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.279369,0.004470,-0.003999,0.249968,0,0);}
.m91_c01166{transform:matrix(0.280380,0.003365,-0.003000,0.249982,0,0);-ms-transform:matrix(0.280380,0.003365,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.280380,0.003365,-0.003000,0.249982,0,0);}
.ma0_c01166{transform:matrix(0.280805,0.003370,-0.003000,0.249982,0,0);-ms-transform:matrix(0.280805,0.003370,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.280805,0.003370,-0.003000,0.249982,0,0);}
.m27_c01166{transform:matrix(0.281763,0.001972,-0.001750,0.249994,0,0);-ms-transform:matrix(0.281763,0.001972,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.281763,0.001972,-0.001750,0.249994,0,0);}
.m59_c01166{transform:matrix(0.283026,0.002830,-0.002500,0.249988,0,0);-ms-transform:matrix(0.283026,0.002830,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.283026,0.002830,-0.002500,0.249988,0,0);}
.m69_c01166{transform:matrix(0.283211,0.002832,-0.002500,0.249988,0,0);-ms-transform:matrix(0.283211,0.002832,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.283211,0.002832,-0.002500,0.249988,0,0);}
.me3_c01166{transform:matrix(0.283298,0.004249,-0.003750,0.249972,0,0);-ms-transform:matrix(0.283298,0.004249,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.283298,0.004249,-0.003750,0.249972,0,0);}
.m92_c01166{transform:matrix(0.283465,0.003402,-0.003000,0.249982,0,0);-ms-transform:matrix(0.283465,0.003402,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.283465,0.003402,-0.003000,0.249982,0,0);}
.m25_c01166{transform:matrix(0.284158,0.001989,-0.001750,0.249994,0,0);-ms-transform:matrix(0.284158,0.001989,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.284158,0.001989,-0.001750,0.249994,0,0);}
.m2b_c01166{transform:matrix(0.285413,0.001998,-0.001750,0.249994,0,0);-ms-transform:matrix(0.285413,0.001998,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.285413,0.001998,-0.001750,0.249994,0,0);}
.me5_c01166{transform:matrix(0.286778,0.004302,-0.003750,0.249972,0,0);-ms-transform:matrix(0.286778,0.004302,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.286778,0.004302,-0.003750,0.249972,0,0);}
.me1_c01166{transform:matrix(0.287083,0.004306,-0.003750,0.249972,0,0);-ms-transform:matrix(0.287083,0.004306,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.287083,0.004306,-0.003750,0.249972,0,0);}
.m88_c01166{transform:matrix(0.287276,0.002873,-0.002500,0.249988,0,0);-ms-transform:matrix(0.287276,0.002873,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.287276,0.002873,-0.002500,0.249988,0,0);}
.m8e_c01166{transform:matrix(0.288284,0.003459,-0.003000,0.249982,0,0);-ms-transform:matrix(0.288284,0.003459,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.288284,0.003459,-0.003000,0.249982,0,0);}
.m2a_c01166{transform:matrix(0.288363,0.002019,-0.001750,0.249994,0,0);-ms-transform:matrix(0.288363,0.002019,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.288363,0.002019,-0.001750,0.249994,0,0);}
.m5e_c01166{transform:matrix(0.288996,0.002890,-0.002500,0.249988,0,0);-ms-transform:matrix(0.288996,0.002890,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.288996,0.002890,-0.002500,0.249988,0,0);}
.m9c_c01166{transform:matrix(0.289384,0.003473,-0.003000,0.249982,0,0);-ms-transform:matrix(0.289384,0.003473,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.289384,0.003473,-0.003000,0.249982,0,0);}
.m5c_c01166{transform:matrix(0.289746,0.002897,-0.002500,0.249988,0,0);-ms-transform:matrix(0.289746,0.002897,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.289746,0.002897,-0.002500,0.249988,0,0);}
.m5a_c01166{transform:matrix(0.289871,0.002899,-0.002500,0.249988,0,0);-ms-transform:matrix(0.289871,0.002899,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.289871,0.002899,-0.002500,0.249988,0,0);}
.m8d_c01166{transform:matrix(0.290684,0.003488,-0.003000,0.249982,0,0);-ms-transform:matrix(0.290684,0.003488,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.290684,0.003488,-0.003000,0.249982,0,0);}
.m29_c01166{transform:matrix(0.291838,0.002043,-0.001750,0.249994,0,0);-ms-transform:matrix(0.291838,0.002043,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.291838,0.002043,-0.001750,0.249994,0,0);}
.m23_c01166{transform:matrix(0.292258,0.002046,-0.001750,0.249994,0,0);-ms-transform:matrix(0.292258,0.002046,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.292258,0.002046,-0.001750,0.249994,0,0);}
.m26_c01166{transform:matrix(0.292998,0.002051,-0.001750,0.249994,0,0);-ms-transform:matrix(0.292998,0.002051,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.292998,0.002051,-0.001750,0.249994,0,0);}
.mc_c01166{transform:matrix(0.295143,0.002066,-0.001750,0.249994,0,0);-ms-transform:matrix(0.295143,0.002066,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.295143,0.002066,-0.001750,0.249994,0,0);}
.m21_c01166{transform:matrix(0.296318,0.002074,-0.001750,0.249994,0,0);-ms-transform:matrix(0.296318,0.002074,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.296318,0.002074,-0.001750,0.249994,0,0);}
.m10_c01166{transform:matrix(0.296648,0.002077,-0.001750,0.249994,0,0);-ms-transform:matrix(0.296648,0.002077,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.296648,0.002077,-0.001750,0.249994,0,0);}
.m61_c01166{transform:matrix(0.297655,0.002977,-0.002500,0.249988,0,0);-ms-transform:matrix(0.297655,0.002977,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.297655,0.002977,-0.002500,0.249988,0,0);}
.m85_c01166{transform:matrix(0.298230,0.002982,-0.002500,0.249988,0,0);-ms-transform:matrix(0.298230,0.002982,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.298230,0.002982,-0.002500,0.249988,0,0);}
.maa_c01166{transform:matrix(0.299933,0.003599,-0.003000,0.249982,0,0);-ms-transform:matrix(0.299933,0.003599,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.299933,0.003599,-0.003000,0.249982,0,0);}
.m90_c01166{transform:matrix(0.300313,0.003604,-0.003000,0.249982,0,0);-ms-transform:matrix(0.300313,0.003604,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.300313,0.003604,-0.003000,0.249982,0,0);}
.mf_c01166{transform:matrix(0.302688,0.002119,-0.001750,0.249994,0,0);-ms-transform:matrix(0.302688,0.002119,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.302688,0.002119,-0.001750,0.249994,0,0);}
.m13_c01166{transform:matrix(0.303498,0.002124,-0.001750,0.249994,0,0);-ms-transform:matrix(0.303498,0.002124,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.303498,0.002124,-0.001750,0.249994,0,0);}
.md_c01166{transform:matrix(0.303803,0.002127,-0.001750,0.249994,0,0);-ms-transform:matrix(0.303803,0.002127,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.303803,0.002127,-0.001750,0.249994,0,0);}
.m132_c01166{transform:matrix(0.307574,0.003998,-0.003250,0.249979,0,0);-ms-transform:matrix(0.307574,0.003998,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.307574,0.003998,-0.003250,0.249979,0,0);}
.m5d_c01166{transform:matrix(0.330598,0.003306,-0.002500,0.249988,0,0);-ms-transform:matrix(0.330598,0.003306,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.330598,0.003306,-0.002500,0.249988,0,0);}
.m8b_c01166{transform:matrix(0.335336,0.004024,-0.003000,0.249982,0,0);-ms-transform:matrix(0.335336,0.004024,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.335336,0.004024,-0.003000,0.249982,0,0);}
.v0_c01166{vertical-align:0.000000px;}
.ls0_c01166{letter-spacing:0.000000px;}
.sc__c01166{text-shadow:none;}
.sc0_c01166{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__c01166{-webkit-text-stroke:0px transparent;}
.sc0_c01166{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01166{word-spacing:0.000000px;}
.fc0_c01166{color:transparent;}
.fs2_c01166{font-size:66.001617px;}
.fs7_c01166{font-size:66.003300px;}
.fsa_c01166{font-size:66.004752px;}
.fs6_c01166{font-size:72.001296px;}
.fs4_c01166{font-size:72.001764px;}
.fs8_c01166{font-size:72.003600px;}
.fsb_c01166{font-size:72.005184px;}
.fse_c01166{font-size:72.007056px;}
.fs10_c01166{font-size:72.008100px;}
.fs13_c01166{font-size:72.009215px;}
.fs0_c01166{font-size:78.000000px;}
.fs5_c01166{font-size:78.001404px;}
.fs1_c01166{font-size:78.001911px;}
.fs9_c01166{font-size:78.003900px;}
.fsc_c01166{font-size:78.005616px;}
.fs15_c01166{font-size:78.006591px;}
.fsd_c01166{font-size:78.007644px;}
.fs12_c01166{font-size:78.009983px;}
.fs3_c01166{font-size:84.002058px;}
.fs14_c01166{font-size:84.007098px;}
.fsf_c01166{font-size:84.008232px;}
.fs11_c01166{font-size:84.009449px;}
.y0_c01166{bottom:0.000000px;}
.y137_c01166{bottom:79.851559px;}
.y136_c01166{bottom:81.575899px;}
.y135_c01166{bottom:82.812598px;}
.y134_c01166{bottom:83.280214px;}
.y133_c01166{bottom:84.184267px;}
.y132_c01166{bottom:84.807871px;}
.y131_c01166{bottom:86.377860px;}
.y130_c01166{bottom:87.137389px;}
.y12f_c01166{bottom:87.454066px;}
.y12e_c01166{bottom:88.213947px;}
.y12d_c01166{bottom:88.825716px;}
.y12c_c01166{bottom:115.601758px;}
.y12b_c01166{bottom:117.291699px;}
.y12a_c01166{bottom:117.689426px;}
.y129_c01166{bottom:119.374824px;}
.y128_c01166{bottom:121.087651px;}
.y127_c01166{bottom:121.463328px;}
.y126_c01166{bottom:123.901055px;}
.y125_c01166{bottom:125.214051px;}
.y124_c01166{bottom:125.769320px;}
.y123_c01166{bottom:126.681841px;}
.y122_c01166{bottom:127.438380px;}
.y121_c01166{bottom:156.269746px;}
.y120_c01166{bottom:156.842188px;}
.y11f_c01166{bottom:157.575993px;}
.y11e_c01166{bottom:158.868063px;}
.y11d_c01166{bottom:159.313930px;}
.y11c_c01166{bottom:160.739556px;}
.y11b_c01166{bottom:161.171345px;}
.y11a_c01166{bottom:161.613663px;}
.y119_c01166{bottom:162.333252px;}
.y118_c01166{bottom:162.897953px;}
.y117_c01166{bottom:163.621500px;}
.y116_c01166{bottom:197.018160px;}
.y114_c01166{bottom:197.018532px;}
.y113_c01166{bottom:197.018640px;}
.y115_c01166{bottom:197.018700px;}
.y112_c01166{bottom:197.019108px;}
.y111_c01166{bottom:224.462460px;}
.y110_c01166{bottom:225.234552px;}
.y10f_c01166{bottom:226.242108px;}
.y10e_c01166{bottom:226.686984px;}
.y10d_c01166{bottom:227.673528px;}
.y10c_c01166{bottom:228.125376px;}
.y10b_c01166{bottom:228.551100px;}
.y10a_c01166{bottom:229.418928px;}
.y109_c01166{bottom:230.128044px;}
.y108_c01166{bottom:231.574956px;}
.y107_c01166{bottom:232.124952px;}
.y106_c01166{bottom:233.276676px;}
.y105_c01166{bottom:262.495200px;}
.y104_c01166{bottom:263.722608px;}
.y103_c01166{bottom:264.280704px;}
.y102_c01166{bottom:265.888224px;}
.y101_c01166{bottom:266.574936px;}
.y100_c01166{bottom:267.269664px;}
.yff_c01166{bottom:268.172424px;}
.yfe_c01166{bottom:269.409240px;}
.yfd_c01166{bottom:270.285816px;}
.yfc_c01166{bottom:271.353000px;}
.yf8_c01166{bottom:304.369800px;}
.yf9_c01166{bottom:304.370318px;}
.yfa_c01166{bottom:304.370520px;}
.yfb_c01166{bottom:304.371173px;}
.yf7_c01166{bottom:333.680258px;}
.yf6_c01166{bottom:333.981165px;}
.yf5_c01166{bottom:334.570328px;}
.yf4_c01166{bottom:334.976318px;}
.yf3_c01166{bottom:335.576550px;}
.yf2_c01166{bottom:336.064988px;}
.yf1_c01166{bottom:336.371040px;}
.yf0_c01166{bottom:336.857400px;}
.yef_c01166{bottom:337.173968px;}
.yee_c01166{bottom:338.066408px;}
.yed_c01166{bottom:338.467725px;}
.yec_c01166{bottom:339.257205px;}
.yeb_c01166{bottom:339.650693px;}
.yea_c01166{bottom:370.170682px;}
.ye9_c01166{bottom:371.036018px;}
.ye8_c01166{bottom:371.299118px;}
.ye7_c01166{bottom:371.436143px;}
.ye6_c01166{bottom:372.368573px;}
.ye5_c01166{bottom:372.498803px;}
.ye4_c01166{bottom:373.361325px;}
.ye3_c01166{bottom:373.623818px;}
.ye2_c01166{bottom:374.016743px;}
.ye1_c01166{bottom:374.216348px;}
.ye0_c01166{bottom:404.267768px;}
.ydf_c01166{bottom:404.927490px;}
.yde_c01166{bottom:406.090852px;}
.ydd_c01166{bottom:406.597283px;}
.ydc_c01166{bottom:407.103420px;}
.ydb_c01166{bottom:408.079493px;}
.yda_c01166{bottom:408.747113px;}
.yd9_c01166{bottom:409.590143px;}
.yd8_c01166{bottom:410.756835px;}
.yd7_c01166{bottom:411.566498px;}
.yd6_c01166{bottom:412.563000px;}
.yd5_c01166{bottom:441.505047px;}
.yd4_c01166{bottom:442.698237px;}
.yd3_c01166{bottom:443.298876px;}
.yd2_c01166{bottom:443.691900px;}
.yd1_c01166{bottom:444.673419px;}
.yd0_c01166{bottom:445.676622px;}
.ycf_c01166{bottom:446.573295px;}
.yce_c01166{bottom:478.241316px;}
.ycd_c01166{bottom:478.357854px;}
.ycc_c01166{bottom:478.806972px;}
.ycb_c01166{bottom:479.189586px;}
.yca_c01166{bottom:479.521155px;}
.yc9_c01166{bottom:479.744145px;}
.yc8_c01166{bottom:480.135450px;}
.yc7_c01166{bottom:480.299610px;}
.yc6_c01166{bottom:480.466029px;}
.yc5_c01166{bottom:480.909411px;}
.yc4_c01166{bottom:481.128771px;}
.yc3_c01166{bottom:481.676304px;}
.yc2_c01166{bottom:511.296462px;}
.yc1_c01166{bottom:511.769508px;}
.yc0_c01166{bottom:512.245893px;}
.ybf_c01166{bottom:513.784731px;}
.ybe_c01166{bottom:514.264371px;}
.ybd_c01166{bottom:515.187174px;}
.ybc_c01166{bottom:515.806548px;}
.ybb_c01166{bottom:516.597072px;}
.yba_c01166{bottom:517.682142px;}
.yb9_c01166{bottom:518.301411px;}
.yb8_c01166{bottom:519.213000px;}
.yb7_c01166{bottom:549.533172px;}
.yb6_c01166{bottom:550.513830px;}
.yb5_c01166{bottom:550.684020px;}
.yb4_c01166{bottom:551.040408px;}
.yb3_c01166{bottom:551.571840px;}
.yb2_c01166{bottom:551.919246px;}
.yb1_c01166{bottom:552.886590px;}
.yb0_c01166{bottom:553.860384px;}
.yaf_c01166{bottom:554.302350px;}
.yae_c01166{bottom:585.871254px;}
.yad_c01166{bottom:586.377042px;}
.yac_c01166{bottom:586.648818px;}
.yab_c01166{bottom:586.975416px;}
.yaa_c01166{bottom:587.197836px;}
.ya9_c01166{bottom:587.758062px;}
.ya8_c01166{bottom:588.031782px;}
.ya7_c01166{bottom:588.143022px;}
.ya6_c01166{bottom:588.418680px;}
.ya5_c01166{bottom:588.639522px;}
.ya4_c01166{bottom:588.803526px;}
.ya3_c01166{bottom:589.133550px;}
.ya2_c01166{bottom:620.450520px;}
.ya1_c01166{bottom:620.858964px;}
.ya0_c01166{bottom:621.128646px;}
.y9f_c01166{bottom:622.123560px;}
.y9e_c01166{bottom:622.458000px;}
.y9d_c01166{bottom:622.845288px;}
.y9c_c01166{bottom:623.054766px;}
.y9b_c01166{bottom:623.257302px;}
.y9a_c01166{bottom:623.448906px;}
.y99_c01166{bottom:623.713062px;}
.y98_c01166{bottom:624.113022px;}
.y97_c01166{bottom:624.308508px;}
.y96_c01166{bottom:624.507222px;}
.y95_c01166{bottom:654.161352px;}
.y94_c01166{bottom:654.702666px;}
.y93_c01166{bottom:655.639224px;}
.y92_c01166{bottom:656.031282px;}
.y91_c01166{bottom:656.954646px;}
.y90_c01166{bottom:658.137120px;}
.y8f_c01166{bottom:658.551966px;}
.y8e_c01166{bottom:660.421500px;}
.y88_c01166{bottom:694.078200px;}
.y89_c01166{bottom:694.078830px;}
.y8b_c01166{bottom:694.079205px;}
.y8a_c01166{bottom:694.079490px;}
.y8c_c01166{bottom:694.079820px;}
.y8d_c01166{bottom:694.080135px;}
.y80_c01166{bottom:729.119670px;}
.y82_c01166{bottom:729.119775px;}
.y7f_c01166{bottom:729.119955px;}
.y83_c01166{bottom:729.120105px;}
.y86_c01166{bottom:729.120180px;}
.y81_c01166{bottom:729.120360px;}
.y84_c01166{bottom:729.120420px;}
.y87_c01166{bottom:729.120510px;}
.y7e_c01166{bottom:729.120525px;}
.y85_c01166{bottom:729.120750px;}
.y77_c01166{bottom:764.050485px;}
.y73_c01166{bottom:764.050695px;}
.y76_c01166{bottom:764.050770px;}
.y79_c01166{bottom:764.050830px;}
.y7a_c01166{bottom:764.050845px;}
.y7b_c01166{bottom:764.050890px;}
.y7c_c01166{bottom:764.050920px;}
.y71_c01166{bottom:764.050935px;}
.y72_c01166{bottom:764.050950px;}
.y78_c01166{bottom:764.051115px;}
.y7d_c01166{bottom:764.051235px;}
.y74_c01166{bottom:764.051310px;}
.y75_c01166{bottom:764.051325px;}
.y70_c01166{bottom:797.239275px;}
.y6f_c01166{bottom:797.373195px;}
.y6e_c01166{bottom:797.777265px;}
.y6d_c01166{bottom:798.043080px;}
.y6c_c01166{bottom:798.778395px;}
.y6b_c01166{bottom:799.037895px;}
.y6a_c01166{bottom:799.697295px;}
.y69_c01166{bottom:799.904895px;}
.y68_c01166{bottom:800.097015px;}
.y67_c01166{bottom:800.426685px;}
.y66_c01166{bottom:800.699640px;}
.y65_c01166{bottom:800.891850px;}
.y64_c01166{bottom:801.088005px;}
.y63_c01166{bottom:833.593890px;}
.y62_c01166{bottom:834.039120px;}
.y61_c01166{bottom:834.473955px;}
.y60_c01166{bottom:835.046670px;}
.y5f_c01166{bottom:836.140140px;}
.y5e_c01166{bottom:837.033870px;}
.y5d_c01166{bottom:837.357795px;}
.y5c_c01166{bottom:838.237950px;}
.y5b_c01166{bottom:838.891500px;}
.y51_c01166{bottom:871.900773px;}
.y52_c01166{bottom:871.901373px;}
.y53_c01166{bottom:871.901682px;}
.y54_c01166{bottom:871.901931px;}
.y56_c01166{bottom:871.902240px;}
.y59_c01166{bottom:871.902318px;}
.y55_c01166{bottom:871.902360px;}
.y58_c01166{bottom:871.902378px;}
.y57_c01166{bottom:871.902909px;}
.y5a_c01166{bottom:871.903038px;}
.y50_c01166{bottom:905.501535px;}
.y4f_c01166{bottom:906.000579px;}
.y4e_c01166{bottom:906.446790px;}
.y4d_c01166{bottom:906.609819px;}
.y4c_c01166{bottom:906.779319px;}
.y4b_c01166{bottom:907.273266px;}
.y4a_c01166{bottom:907.441119px;}
.y49_c01166{bottom:907.819875px;}
.y48_c01166{bottom:907.994346px;}
.y47_c01166{bottom:908.432217px;}
.y46_c01166{bottom:908.601591px;}
.y45_c01166{bottom:908.818911px;}
.y44_c01166{bottom:940.788405px;}
.y43_c01166{bottom:941.389569px;}
.y42_c01166{bottom:941.590341px;}
.y41_c01166{bottom:942.123474px;}
.y40_c01166{bottom:942.385779px;}
.y3f_c01166{bottom:942.722829px;}
.y3e_c01166{bottom:943.126110px;}
.y3d_c01166{bottom:943.385418px;}
.y3c_c01166{bottom:943.920000px;}
.y3a_c01166{bottom:978.593953px;}
.y3b_c01166{bottom:978.594204px;}
.y34_c01166{bottom:1012.079214px;}
.y38_c01166{bottom:1012.079376px;}
.y2f_c01166{bottom:1012.079391px;}
.y35_c01166{bottom:1012.079554px;}
.y33_c01166{bottom:1012.079563px;}
.y32_c01166{bottom:1012.079793px;}
.y31_c01166{bottom:1012.079832px;}
.y30_c01166{bottom:1012.079851px;}
.y36_c01166{bottom:1012.079925px;}
.y39_c01166{bottom:1012.079927px;}
.y37_c01166{bottom:1012.080085px;}
.y2e_c01166{bottom:1012.080130px;}
.y2c_c01166{bottom:1047.415387px;}
.y2d_c01166{bottom:1047.415578px;}
.y23_c01166{bottom:1047.415792px;}
.y2a_c01166{bottom:1047.415876px;}
.y2b_c01166{bottom:1047.415977px;}
.y29_c01166{bottom:1047.416106px;}
.y24_c01166{bottom:1047.416354px;}
.y27_c01166{bottom:1047.416475px;}
.y28_c01166{bottom:1047.416696px;}
.y26_c01166{bottom:1047.416825px;}
.y25_c01166{bottom:1047.416964px;}
.y17_c01166{bottom:1082.508834px;}
.y16_c01166{bottom:1082.508993px;}
.y18_c01166{bottom:1082.509134px;}
.y1a_c01166{bottom:1082.509335px;}
.y19_c01166{bottom:1082.509565px;}
.y1b_c01166{bottom:1082.510016px;}
.y22_c01166{bottom:1082.510149px;}
.y1d_c01166{bottom:1082.510367px;}
.y1c_c01166{bottom:1082.510387px;}
.y1e_c01166{bottom:1082.510497px;}
.y21_c01166{bottom:1082.510499px;}
.y1f_c01166{bottom:1082.510538px;}
.y20_c01166{bottom:1082.510908px;}
.y15_c01166{bottom:1117.553433px;}
.y14_c01166{bottom:1117.720293px;}
.y13_c01166{bottom:1118.268664px;}
.y12_c01166{bottom:1118.445786px;}
.y11_c01166{bottom:1118.610355px;}
.y10_c01166{bottom:1119.055545px;}
.yf_c01166{bottom:1119.608476px;}
.ye_c01166{bottom:1119.774957px;}
.yd_c01166{bottom:1120.382446px;}
.yc_c01166{bottom:1120.768382px;}
.yb_c01166{bottom:1153.753396px;}
.ya_c01166{bottom:1154.373327px;}
.y9_c01166{bottom:1155.223901px;}
.y8_c01166{bottom:1155.700233px;}
.y7_c01166{bottom:1155.924943px;}
.y6_c01166{bottom:1156.318284px;}
.y5_c01166{bottom:1156.554492px;}
.y4_c01166{bottom:1156.862551px;}
.y3_c01166{bottom:1157.248101px;}
.y2_c01166{bottom:1157.490000px;}
.y1_c01166{bottom:1228.653000px;}
.h4_c01166{height:66.001617px;}
.h9_c01166{height:66.003300px;}
.hc_c01166{height:66.004752px;}
.h8_c01166{height:72.001296px;}
.h6_c01166{height:72.001764px;}
.ha_c01166{height:72.003600px;}
.hd_c01166{height:72.005184px;}
.h10_c01166{height:72.007056px;}
.h12_c01166{height:72.008100px;}
.h15_c01166{height:72.009215px;}
.h2_c01166{height:78.000000px;}
.h7_c01166{height:78.001404px;}
.h3_c01166{height:78.001911px;}
.hb_c01166{height:78.003900px;}
.he_c01166{height:78.005616px;}
.h17_c01166{height:78.006591px;}
.hf_c01166{height:78.007644px;}
.h14_c01166{height:78.009983px;}
.h5_c01166{height:84.002058px;}
.h16_c01166{height:84.007098px;}
.h11_c01166{height:84.008232px;}
.h13_c01166{height:84.009449px;}
.h1_c01166{height:1258.500000px;}
.h0_c01166{height:1258.740000px;}
.w0_c01166{width:904.200000px;}
.w1_c01166{width:904.500000px;}
.x0_c01166{left:0.000000px;}
.xd_c01166{left:168.153105px;}
.x27_c01166{left:169.285380px;}
.x1f_c01166{left:170.366771px;}
.x39_c01166{left:201.688656px;}
.x33_c01166{left:212.706246px;}
.x73_c01166{left:213.871088px;}
.x4d_c01166{left:224.366550px;}
.x44_c01166{left:233.452560px;}
.x55_c01166{left:234.549078px;}
.xe_c01166{left:245.359187px;}
.x2e_c01166{left:247.044300px;}
.x28_c01166{left:257.038175px;}
.x3a_c01166{left:258.389199px;}
.x56_c01166{left:267.218814px;}
.x20_c01166{left:268.648590px;}
.x3_c01166{left:277.470000px;}
.x15_c01166{left:279.183242px;}
.x4a_c01166{left:289.436205px;}
.x16_c01166{left:300.784302px;}
.x69_c01166{left:310.906410px;}
.x4_c01166{left:312.027000px;}
.x61_c01166{left:322.033896px;}
.x29_c01166{left:323.189919px;}
.x17_c01166{left:333.724419px;}
.x5f_c01166{left:343.561500px;}
.x4e_c01166{left:345.062625px;}
.x4b_c01166{left:354.779745px;}
.x2a_c01166{left:357.480099px;}
.x45_c01166{left:366.032370px;}
.x5_c01166{left:367.105500px;}
.x34_c01166{left:368.743173px;}
.x51_c01166{left:376.834950px;}
.x18_c01166{left:378.545114px;}
.x60_c01166{left:387.795000px;}
.x21_c01166{left:388.801481px;}
.x67_c01166{left:398.853000px;}
.xf_c01166{left:400.071350px;}
.x6_c01166{left:411.114000px;}
.x1_c01166{left:418.500000px;}
.x22_c01166{left:422.281619px;}
.x4f_c01166{left:433.088430px;}
.x2_c01166{left:440.370000px;}
.x57_c01166{left:443.813664px;}
.x7_c01166{left:444.858000px;}
.x3f_c01166{left:454.815000px;}
.x3b_c01166{left:456.303327px;}
.x23_c01166{left:465.752250px;}
.x50_c01166{left:467.490000px;}
.x6a_c01166{left:476.212208px;}
.x2f_c01166{left:477.547500px;}
.x6e_c01166{left:478.591695px;}
.x19_c01166{left:488.167490px;}
.x71_c01166{left:499.345500px;}
.x8_c01166{left:501.049500px;}
.x5a_c01166{left:509.657472px;}
.x10_c01166{left:510.777404px;}
.x74_c01166{left:520.894637px;}
.x1a_c01166{left:522.187659px;}
.x65_c01166{left:532.051107px;}
.x9_c01166{left:533.151000px;}
.x75_c01166{left:542.983986px;}
.x24_c01166{left:544.054583px;}
.x46_c01166{left:553.689870px;}
.x62_c01166{left:555.082254px;}
.x1b_c01166{left:556.477839px;}
.x78_c01166{left:564.645233px;}
.x3c_c01166{left:566.195787px;}
.x5b_c01166{left:576.071658px;}
.x30_c01166{left:577.440000px;}
.x25_c01166{left:588.875277px;}
.x66_c01166{left:598.744269px;}
.x11_c01166{left:599.877153px;}
.xa_c01166{left:601.198500px;}
.x72_c01166{left:609.009000px;}
.x35_c01166{left:610.670622px;}
.x6f_c01166{left:619.162500px;}
.x5c_c01166{left:620.647800px;}
.x1c_c01166{left:621.819542px;}
.x6b_c01166{left:631.495155px;}
.x12_c01166{left:632.816115px;}
.x5d_c01166{left:641.956326px;}
.x36_c01166{left:643.342320px;}
.x40_c01166{left:653.535000px;}
.x1d_c01166{left:655.029669px;}
.x3d_c01166{left:665.287851px;}
.x31_c01166{left:666.295500px;}
.x13_c01166{left:668.191109px;}
.x47_c01166{left:676.276275px;}
.x2b_c01166{left:678.245318px;}
.x79_c01166{left:686.398653px;}
.x4c_c01166{left:687.978285px;}
.x1e_c01166{left:689.049839px;}
.x6c_c01166{left:698.179155px;}
.x26_c01166{left:699.307685px;}
.x41_c01166{left:710.806500px;}
.x58_c01166{left:720.046866px;}
.x3e_c01166{left:721.179867px;}
.xb_c01166{left:722.709000px;}
.x52_c01166{left:731.373456px;}
.x37_c01166{left:732.711360px;}
.x63_c01166{left:742.475358px;}
.x2c_c01166{left:745.207094px;}
.x42_c01166{left:754.290000px;}
.x5e_c01166{left:764.558712px;}
.x76_c01166{left:766.314884px;}
.x53_c01166{left:776.225178px;}
.x14_c01166{left:777.817142px;}
.x48_c01166{left:787.819230px;}
.x2d_c01166{left:789.487767px;}
.x43_c01166{left:798.813000px;}
.x32_c01166{left:799.951500px;}
.x49_c01166{left:810.212130px;}
.xc_c01166{left:811.270500px;}
.x59_c01166{left:821.329380px;}
.x68_c01166{left:831.457500px;}
.x38_c01166{left:832.635963px;}
.x6d_c01166{left:842.387618px;}
.x54_c01166{left:844.267074px;}
.x70_c01166{left:847.137204px;}
.x64_c01166{left:855.643617px;}
.x77_c01166{left:865.728216px;}
@media print{
.v0_c01166{vertical-align:0.000000pt;}
.ls0_c01166{letter-spacing:0.000000pt;}
.ws0_c01166{word-spacing:0.000000pt;}
.fs2_c01166{font-size:58.668104pt;}
.fs7_c01166{font-size:58.669600pt;}
.fsa_c01166{font-size:58.670891pt;}
.fs6_c01166{font-size:64.001152pt;}
.fs4_c01166{font-size:64.001568pt;}
.fs8_c01166{font-size:64.003200pt;}
.fsb_c01166{font-size:64.004608pt;}
.fse_c01166{font-size:64.006272pt;}
.fs10_c01166{font-size:64.007200pt;}
.fs13_c01166{font-size:64.008191pt;}
.fs0_c01166{font-size:69.333333pt;}
.fs5_c01166{font-size:69.334581pt;}
.fs1_c01166{font-size:69.335032pt;}
.fs9_c01166{font-size:69.336800pt;}
.fsc_c01166{font-size:69.338325pt;}
.fs15_c01166{font-size:69.339192pt;}
.fsd_c01166{font-size:69.340128pt;}
.fs12_c01166{font-size:69.342207pt;}
.fs3_c01166{font-size:74.668496pt;}
.fs14_c01166{font-size:74.672976pt;}
.fsf_c01166{font-size:74.673984pt;}
.fs11_c01166{font-size:74.675066pt;}
.y0_c01166{bottom:0.000000pt;}
.y137_c01166{bottom:70.979164pt;}
.y136_c01166{bottom:72.511911pt;}
.y135_c01166{bottom:73.611199pt;}
.y134_c01166{bottom:74.026857pt;}
.y133_c01166{bottom:74.830460pt;}
.y132_c01166{bottom:75.384775pt;}
.y131_c01166{bottom:76.780320pt;}
.y130_c01166{bottom:77.455457pt;}
.y12f_c01166{bottom:77.736948pt;}
.y12e_c01166{bottom:78.412397pt;}
.y12d_c01166{bottom:78.956192pt;}
.y12c_c01166{bottom:102.757119pt;}
.y12b_c01166{bottom:104.259288pt;}
.y12a_c01166{bottom:104.612823pt;}
.y129_c01166{bottom:106.110955pt;}
.y128_c01166{bottom:107.633468pt;}
.y127_c01166{bottom:107.967403pt;}
.y126_c01166{bottom:110.134271pt;}
.y125_c01166{bottom:111.301379pt;}
.y124_c01166{bottom:111.794951pt;}
.y123_c01166{bottom:112.606081pt;}
.y122_c01166{bottom:113.278560pt;}
.y121_c01166{bottom:138.906441pt;}
.y120_c01166{bottom:139.415279pt;}
.y11f_c01166{bottom:140.067549pt;}
.y11e_c01166{bottom:141.216056pt;}
.y11d_c01166{bottom:141.612383pt;}
.y11c_c01166{bottom:142.879605pt;}
.y11b_c01166{bottom:143.263417pt;}
.y11a_c01166{bottom:143.656589pt;}
.y119_c01166{bottom:144.296224pt;}
.y118_c01166{bottom:144.798180pt;}
.y117_c01166{bottom:145.441333pt;}
.y116_c01166{bottom:175.127253pt;}
.y114_c01166{bottom:175.127584pt;}
.y113_c01166{bottom:175.127680pt;}
.y115_c01166{bottom:175.127733pt;}
.y112_c01166{bottom:175.128096pt;}
.y111_c01166{bottom:199.522187pt;}
.y110_c01166{bottom:200.208491pt;}
.y10f_c01166{bottom:201.104096pt;}
.y10e_c01166{bottom:201.499541pt;}
.y10d_c01166{bottom:202.376469pt;}
.y10c_c01166{bottom:202.778112pt;}
.y10b_c01166{bottom:203.156533pt;}
.y10a_c01166{bottom:203.927936pt;}
.y109_c01166{bottom:204.558261pt;}
.y108_c01166{bottom:205.844405pt;}
.y107_c01166{bottom:206.333291pt;}
.y106_c01166{bottom:207.357045pt;}
.y105_c01166{bottom:233.329067pt;}
.y104_c01166{bottom:234.420096pt;}
.y103_c01166{bottom:234.916181pt;}
.y102_c01166{bottom:236.345088pt;}
.y101_c01166{bottom:236.955499pt;}
.y100_c01166{bottom:237.573035pt;}
.yff_c01166{bottom:238.375488pt;}
.yfe_c01166{bottom:239.474880pt;}
.yfd_c01166{bottom:240.254059pt;}
.yfc_c01166{bottom:241.202667pt;}
.yf8_c01166{bottom:270.550933pt;}
.yf9_c01166{bottom:270.551393pt;}
.yfa_c01166{bottom:270.551573pt;}
.yfb_c01166{bottom:270.552153pt;}
.yf7_c01166{bottom:296.604673pt;}
.yf6_c01166{bottom:296.872147pt;}
.yf5_c01166{bottom:297.395847pt;}
.yf4_c01166{bottom:297.756727pt;}
.yf3_c01166{bottom:298.290267pt;}
.yf2_c01166{bottom:298.724433pt;}
.yf1_c01166{bottom:298.996480pt;}
.yf0_c01166{bottom:299.428800pt;}
.yef_c01166{bottom:299.710193pt;}
.yee_c01166{bottom:300.503473pt;}
.yed_c01166{bottom:300.860200pt;}
.yec_c01166{bottom:301.561960pt;}
.yeb_c01166{bottom:301.911727pt;}
.yea_c01166{bottom:329.040607pt;}
.ye9_c01166{bottom:329.809793pt;}
.ye8_c01166{bottom:330.043660pt;}
.ye7_c01166{bottom:330.165460pt;}
.ye6_c01166{bottom:330.994287pt;}
.ye5_c01166{bottom:331.110047pt;}
.ye4_c01166{bottom:331.876733pt;}
.ye3_c01166{bottom:332.110060pt;}
.ye2_c01166{bottom:332.459327pt;}
.ye1_c01166{bottom:332.636753pt;}
.ye0_c01166{bottom:359.349127pt;}
.ydf_c01166{bottom:359.935547pt;}
.yde_c01166{bottom:360.969647pt;}
.ydd_c01166{bottom:361.419807pt;}
.ydc_c01166{bottom:361.869707pt;}
.ydb_c01166{bottom:362.737327pt;}
.yda_c01166{bottom:363.330767pt;}
.yd9_c01166{bottom:364.080127pt;}
.yd8_c01166{bottom:365.117187pt;}
.yd7_c01166{bottom:365.836887pt;}
.yd6_c01166{bottom:366.722667pt;}
.yd5_c01166{bottom:392.448931pt;}
.yd4_c01166{bottom:393.509544pt;}
.yd3_c01166{bottom:394.043445pt;}
.yd2_c01166{bottom:394.392800pt;}
.yd1_c01166{bottom:395.265261pt;}
.yd0_c01166{bottom:396.156997pt;}
.ycf_c01166{bottom:396.954040pt;}
.yce_c01166{bottom:425.103392pt;}
.ycd_c01166{bottom:425.206981pt;}
.ycc_c01166{bottom:425.606197pt;}
.ycb_c01166{bottom:425.946299pt;}
.yca_c01166{bottom:426.241027pt;}
.yc9_c01166{bottom:426.439240pt;}
.yc8_c01166{bottom:426.787067pt;}
.yc7_c01166{bottom:426.932987pt;}
.yc6_c01166{bottom:427.080915pt;}
.yc5_c01166{bottom:427.475032pt;}
.yc4_c01166{bottom:427.670019pt;}
.yc3_c01166{bottom:428.156715pt;}
.yc2_c01166{bottom:454.485744pt;}
.yc1_c01166{bottom:454.906229pt;}
.yc0_c01166{bottom:455.329683pt;}
.ybf_c01166{bottom:456.697539pt;}
.ybe_c01166{bottom:457.123885pt;}
.ybd_c01166{bottom:457.944155pt;}
.ybc_c01166{bottom:458.494709pt;}
.ybb_c01166{bottom:459.197397pt;}
.yba_c01166{bottom:460.161904pt;}
.yb9_c01166{bottom:460.712365pt;}
.yb8_c01166{bottom:461.522667pt;}
.yb7_c01166{bottom:488.473931pt;}
.yb6_c01166{bottom:489.345627pt;}
.yb5_c01166{bottom:489.496907pt;}
.yb4_c01166{bottom:489.813696pt;}
.yb3_c01166{bottom:490.286080pt;}
.yb2_c01166{bottom:490.594885pt;}
.yb1_c01166{bottom:491.454747pt;}
.yb0_c01166{bottom:492.320341pt;}
.yaf_c01166{bottom:492.713200pt;}
.yae_c01166{bottom:520.774448pt;}
.yad_c01166{bottom:521.224037pt;}
.yac_c01166{bottom:521.465616pt;}
.yab_c01166{bottom:521.755925pt;}
.yaa_c01166{bottom:521.953632pt;}
.ya9_c01166{bottom:522.451611pt;}
.ya8_c01166{bottom:522.694917pt;}
.ya7_c01166{bottom:522.793797pt;}
.ya6_c01166{bottom:523.038827pt;}
.ya5_c01166{bottom:523.235131pt;}
.ya4_c01166{bottom:523.380912pt;}
.ya3_c01166{bottom:523.674267pt;}
.ya2_c01166{bottom:551.511573pt;}
.ya1_c01166{bottom:551.874635pt;}
.ya0_c01166{bottom:552.114352pt;}
.y9f_c01166{bottom:552.998720pt;}
.y9e_c01166{bottom:553.296000pt;}
.y9d_c01166{bottom:553.640256pt;}
.y9c_c01166{bottom:553.826459pt;}
.y9b_c01166{bottom:554.006491pt;}
.y9a_c01166{bottom:554.176805pt;}
.y99_c01166{bottom:554.411611pt;}
.y98_c01166{bottom:554.767131pt;}
.y97_c01166{bottom:554.940896pt;}
.y96_c01166{bottom:555.117531pt;}
.y95_c01166{bottom:581.476757pt;}
.y94_c01166{bottom:581.957925pt;}
.y93_c01166{bottom:582.790421pt;}
.y92_c01166{bottom:583.138917pt;}
.y91_c01166{bottom:583.959685pt;}
.y90_c01166{bottom:585.010773pt;}
.y8f_c01166{bottom:585.379525pt;}
.y8e_c01166{bottom:587.041333pt;}
.y88_c01166{bottom:616.958400pt;}
.y89_c01166{bottom:616.958960pt;}
.y8b_c01166{bottom:616.959293pt;}
.y8a_c01166{bottom:616.959547pt;}
.y8c_c01166{bottom:616.959840pt;}
.y8d_c01166{bottom:616.960120pt;}
.y80_c01166{bottom:648.106373pt;}
.y82_c01166{bottom:648.106467pt;}
.y7f_c01166{bottom:648.106627pt;}
.y83_c01166{bottom:648.106760pt;}
.y86_c01166{bottom:648.106827pt;}
.y81_c01166{bottom:648.106987pt;}
.y84_c01166{bottom:648.107040pt;}
.y87_c01166{bottom:648.107120pt;}
.y7e_c01166{bottom:648.107133pt;}
.y85_c01166{bottom:648.107333pt;}
.y77_c01166{bottom:679.155987pt;}
.y73_c01166{bottom:679.156173pt;}
.y76_c01166{bottom:679.156240pt;}
.y79_c01166{bottom:679.156293pt;}
.y7a_c01166{bottom:679.156307pt;}
.y7b_c01166{bottom:679.156347pt;}
.y7c_c01166{bottom:679.156373pt;}
.y71_c01166{bottom:679.156387pt;}
.y72_c01166{bottom:679.156400pt;}
.y78_c01166{bottom:679.156547pt;}
.y7d_c01166{bottom:679.156653pt;}
.y74_c01166{bottom:679.156720pt;}
.y75_c01166{bottom:679.156733pt;}
.y70_c01166{bottom:708.657133pt;}
.y6f_c01166{bottom:708.776173pt;}
.y6e_c01166{bottom:709.135347pt;}
.y6d_c01166{bottom:709.371627pt;}
.y6c_c01166{bottom:710.025240pt;}
.y6b_c01166{bottom:710.255907pt;}
.y6a_c01166{bottom:710.842040pt;}
.y69_c01166{bottom:711.026573pt;}
.y68_c01166{bottom:711.197347pt;}
.y67_c01166{bottom:711.490387pt;}
.y66_c01166{bottom:711.733013pt;}
.y65_c01166{bottom:711.903867pt;}
.y64_c01166{bottom:712.078227pt;}
.y63_c01166{bottom:740.972347pt;}
.y62_c01166{bottom:741.368107pt;}
.y61_c01166{bottom:741.754627pt;}
.y60_c01166{bottom:742.263707pt;}
.y5f_c01166{bottom:743.235680pt;}
.y5e_c01166{bottom:744.030107pt;}
.y5d_c01166{bottom:744.318040pt;}
.y5c_c01166{bottom:745.100400pt;}
.y5b_c01166{bottom:745.681333pt;}
.y51_c01166{bottom:775.022909pt;}
.y52_c01166{bottom:775.023443pt;}
.y53_c01166{bottom:775.023717pt;}
.y54_c01166{bottom:775.023939pt;}
.y56_c01166{bottom:775.024213pt;}
.y59_c01166{bottom:775.024283pt;}
.y55_c01166{bottom:775.024320pt;}
.y58_c01166{bottom:775.024336pt;}
.y57_c01166{bottom:775.024808pt;}
.y5a_c01166{bottom:775.024923pt;}
.y50_c01166{bottom:804.890253pt;}
.y4f_c01166{bottom:805.333848pt;}
.y4e_c01166{bottom:805.730480pt;}
.y4d_c01166{bottom:805.875395pt;}
.y4c_c01166{bottom:806.026061pt;}
.y4b_c01166{bottom:806.465125pt;}
.y4a_c01166{bottom:806.614328pt;}
.y49_c01166{bottom:806.951000pt;}
.y48_c01166{bottom:807.106085pt;}
.y47_c01166{bottom:807.495304pt;}
.y46_c01166{bottom:807.645859pt;}
.y45_c01166{bottom:807.839032pt;}
.y44_c01166{bottom:836.256360pt;}
.y43_c01166{bottom:836.790728pt;}
.y42_c01166{bottom:836.969192pt;}
.y41_c01166{bottom:837.443088pt;}
.y40_c01166{bottom:837.676248pt;}
.y3f_c01166{bottom:837.975848pt;}
.y3e_c01166{bottom:838.334320pt;}
.y3d_c01166{bottom:838.564816pt;}
.y3c_c01166{bottom:839.040000pt;}
.y3a_c01166{bottom:869.861292pt;}
.y3b_c01166{bottom:869.861515pt;}
.y34_c01166{bottom:899.625968pt;}
.y38_c01166{bottom:899.626112pt;}
.y2f_c01166{bottom:899.626125pt;}
.y35_c01166{bottom:899.626271pt;}
.y33_c01166{bottom:899.626279pt;}
.y32_c01166{bottom:899.626483pt;}
.y31_c01166{bottom:899.626517pt;}
.y30_c01166{bottom:899.626535pt;}
.y36_c01166{bottom:899.626600pt;}
.y39_c01166{bottom:899.626601pt;}
.y37_c01166{bottom:899.626743pt;}
.y2e_c01166{bottom:899.626783pt;}
.y2c_c01166{bottom:931.035900pt;}
.y2d_c01166{bottom:931.036069pt;}
.y23_c01166{bottom:931.036260pt;}
.y2a_c01166{bottom:931.036335pt;}
.y2b_c01166{bottom:931.036424pt;}
.y29_c01166{bottom:931.036539pt;}
.y24_c01166{bottom:931.036759pt;}
.y27_c01166{bottom:931.036867pt;}
.y28_c01166{bottom:931.037063pt;}
.y26_c01166{bottom:931.037177pt;}
.y25_c01166{bottom:931.037301pt;}
.y17_c01166{bottom:962.230075pt;}
.y16_c01166{bottom:962.230216pt;}
.y18_c01166{bottom:962.230341pt;}
.y1a_c01166{bottom:962.230520pt;}
.y19_c01166{bottom:962.230724pt;}
.y1b_c01166{bottom:962.231125pt;}
.y22_c01166{bottom:962.231244pt;}
.y1d_c01166{bottom:962.231437pt;}
.y1c_c01166{bottom:962.231455pt;}
.y1e_c01166{bottom:962.231553pt;}
.y21_c01166{bottom:962.231555pt;}
.y1f_c01166{bottom:962.231589pt;}
.y20_c01166{bottom:962.231919pt;}
.y15_c01166{bottom:993.380829pt;}
.y14_c01166{bottom:993.529149pt;}
.y13_c01166{bottom:994.016591pt;}
.y12_c01166{bottom:994.174032pt;}
.y11_c01166{bottom:994.320316pt;}
.y10_c01166{bottom:994.716040pt;}
.yf_c01166{bottom:995.207535pt;}
.ye_c01166{bottom:995.355517pt;}
.yd_c01166{bottom:995.895508pt;}
.yc_c01166{bottom:996.238561pt;}
.yb_c01166{bottom:1025.558575pt;}
.ya_c01166{bottom:1026.109624pt;}
.y9_c01166{bottom:1026.865689pt;}
.y8_c01166{bottom:1027.289096pt;}
.y7_c01166{bottom:1027.488839pt;}
.y6_c01166{bottom:1027.838475pt;}
.y5_c01166{bottom:1028.048437pt;}
.y4_c01166{bottom:1028.322268pt;}
.y3_c01166{bottom:1028.664979pt;}
.y2_c01166{bottom:1028.880000pt;}
.y1_c01166{bottom:1092.136000pt;}
.h4_c01166{height:58.668104pt;}
.h9_c01166{height:58.669600pt;}
.hc_c01166{height:58.670891pt;}
.h8_c01166{height:64.001152pt;}
.h6_c01166{height:64.001568pt;}
.ha_c01166{height:64.003200pt;}
.hd_c01166{height:64.004608pt;}
.h10_c01166{height:64.006272pt;}
.h12_c01166{height:64.007200pt;}
.h15_c01166{height:64.008191pt;}
.h2_c01166{height:69.333333pt;}
.h7_c01166{height:69.334581pt;}
.h3_c01166{height:69.335032pt;}
.hb_c01166{height:69.336800pt;}
.he_c01166{height:69.338325pt;}
.h17_c01166{height:69.339192pt;}
.hf_c01166{height:69.340128pt;}
.h14_c01166{height:69.342207pt;}
.h5_c01166{height:74.668496pt;}
.h16_c01166{height:74.672976pt;}
.h11_c01166{height:74.673984pt;}
.h13_c01166{height:74.675066pt;}
.h1_c01166{height:1118.666667pt;}
.h0_c01166{height:1118.880000pt;}
.w0_c01166{width:803.733333pt;}
.w1_c01166{width:804.000000pt;}
.x0_c01166{left:0.000000pt;}
.xd_c01166{left:149.469427pt;}
.x27_c01166{left:150.475893pt;}
.x1f_c01166{left:151.437129pt;}
.x39_c01166{left:179.278805pt;}
.x33_c01166{left:189.072219pt;}
.x73_c01166{left:190.107633pt;}
.x4d_c01166{left:199.436933pt;}
.x44_c01166{left:207.513387pt;}
.x55_c01166{left:208.488069pt;}
.xe_c01166{left:218.097055pt;}
.x2e_c01166{left:219.594933pt;}
.x28_c01166{left:228.478377pt;}
.x3a_c01166{left:229.679288pt;}
.x56_c01166{left:237.527835pt;}
.x20_c01166{left:238.798747pt;}
.x3_c01166{left:246.640000pt;}
.x15_c01166{left:248.162881pt;}
.x4a_c01166{left:257.276627pt;}
.x16_c01166{left:267.363824pt;}
.x69_c01166{left:276.361253pt;}
.x4_c01166{left:277.357333pt;}
.x61_c01166{left:286.252352pt;}
.x29_c01166{left:287.279928pt;}
.x17_c01166{left:296.643928pt;}
.x5f_c01166{left:305.388000pt;}
.x4e_c01166{left:306.722333pt;}
.x4b_c01166{left:315.359773pt;}
.x2a_c01166{left:317.760088pt;}
.x45_c01166{left:325.362107pt;}
.x5_c01166{left:326.316000pt;}
.x34_c01166{left:327.771709pt;}
.x51_c01166{left:334.964400pt;}
.x18_c01166{left:336.484545pt;}
.x60_c01166{left:344.706667pt;}
.x21_c01166{left:345.601316pt;}
.x67_c01166{left:354.536000pt;}
.xf_c01166{left:355.618977pt;}
.x6_c01166{left:365.434667pt;}
.x1_c01166{left:372.000000pt;}
.x22_c01166{left:375.361439pt;}
.x4f_c01166{left:384.967493pt;}
.x2_c01166{left:391.440000pt;}
.x57_c01166{left:394.501035pt;}
.x7_c01166{left:395.429333pt;}
.x3f_c01166{left:404.280000pt;}
.x3b_c01166{left:405.602957pt;}
.x23_c01166{left:414.002000pt;}
.x50_c01166{left:415.546667pt;}
.x6a_c01166{left:423.299740pt;}
.x2f_c01166{left:424.486667pt;}
.x6e_c01166{left:425.414840pt;}
.x19_c01166{left:433.926657pt;}
.x71_c01166{left:443.862667pt;}
.x8_c01166{left:445.377333pt;}
.x5a_c01166{left:453.028864pt;}
.x10_c01166{left:454.024359pt;}
.x74_c01166{left:463.017455pt;}
.x1a_c01166{left:464.166808pt;}
.x65_c01166{left:472.934317pt;}
.x9_c01166{left:473.912000pt;}
.x75_c01166{left:482.652432pt;}
.x24_c01166{left:483.604073pt;}
.x46_c01166{left:492.168773pt;}
.x62_c01166{left:493.406448pt;}
.x1b_c01166{left:494.646968pt;}
.x78_c01166{left:501.906873pt;}
.x3c_c01166{left:503.285144pt;}
.x5b_c01166{left:512.063696pt;}
.x30_c01166{left:513.280000pt;}
.x25_c01166{left:523.444691pt;}
.x66_c01166{left:532.217128pt;}
.x11_c01166{left:533.224136pt;}
.xa_c01166{left:534.398667pt;}
.x72_c01166{left:541.341333pt;}
.x35_c01166{left:542.818331pt;}
.x6f_c01166{left:550.366667pt;}
.x5c_c01166{left:551.686933pt;}
.x1c_c01166{left:552.728481pt;}
.x6b_c01166{left:561.329027pt;}
.x12_c01166{left:562.503213pt;}
.x5d_c01166{left:570.627845pt;}
.x36_c01166{left:571.859840pt;}
.x40_c01166{left:580.920000pt;}
.x1d_c01166{left:582.248595pt;}
.x3d_c01166{left:591.366979pt;}
.x31_c01166{left:592.262667pt;}
.x13_c01166{left:593.947652pt;}
.x47_c01166{left:601.134467pt;}
.x2b_c01166{left:602.884727pt;}
.x79_c01166{left:610.132136pt;}
.x4c_c01166{left:611.536253pt;}
.x1e_c01166{left:612.488745pt;}
.x6c_c01166{left:620.603693pt;}
.x26_c01166{left:621.606831pt;}
.x41_c01166{left:631.828000pt;}
.x58_c01166{left:640.041659pt;}
.x3e_c01166{left:641.048771pt;}
.xb_c01166{left:642.408000pt;}
.x52_c01166{left:650.109739pt;}
.x37_c01166{left:651.298987pt;}
.x63_c01166{left:659.978096pt;}
.x2c_c01166{left:662.406305pt;}
.x42_c01166{left:670.480000pt;}
.x5e_c01166{left:679.607744pt;}
.x76_c01166{left:681.168785pt;}
.x53_c01166{left:689.977936pt;}
.x14_c01166{left:691.393015pt;}
.x48_c01166{left:700.283760pt;}
.x2d_c01166{left:701.766904pt;}
.x43_c01166{left:710.056000pt;}
.x32_c01166{left:711.068000pt;}
.x49_c01166{left:720.188560pt;}
.xc_c01166{left:721.129333pt;}
.x59_c01166{left:730.070560pt;}
.x68_c01166{left:739.073333pt;}
.x38_c01166{left:740.120856pt;}
.x6d_c01166{left:748.788993pt;}
.x54_c01166{left:750.459621pt;}
.x70_c01166{left:753.010848pt;}
.x64_c01166{left:760.572104pt;}
.x77_c01166{left:769.536192pt;}
}





/* 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_c01167 {
    display:none;
  }
  .loading-indicator_c01167.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01167 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_c01167 { 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_c01167" -> "#page-container .classname_c01167")
 */
.pf_c01167 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01167 { /* 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_c01167.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01167 { /* 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_c01167 { /* 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_c01167 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01167 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01167 {overflow:visible;}
  }
}
.c_c01167 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01167 { /* 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_c01167:after { /* webkit #35443 */
  content: '';
}
.t_c01167:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01167 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 */
}
.__c01167 { /* 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_c01167 { /* info for Javascript */
  display:none;
}
.l_c01167 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01167 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01167 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01167: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_c01167 {
    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_c01167.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01167.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_c01167 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01167{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01167;src:url('chunks/assets/font_cfe63ee56e9e10a97d33a3db.woff2')format("woff");}.ff1_c01167{font-family:ff1_c01167;line-height:1.000000;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;}
.m1e_c01167{transform:matrix(0.012479,-0.000137,0.002750,0.249985,0,0);-ms-transform:matrix(0.012479,-0.000137,0.002750,0.249985,0,0);-webkit-transform:matrix(0.012479,-0.000137,0.002750,0.249985,0,0);}
.m3a_c01167{transform:matrix(0.036795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.036795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.036795,0.000000,0.000000,0.250000,0,0);}
.m49_c01167{transform:matrix(0.128545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128545,0.000000,0.000000,0.250000,0,0);}
.m38_c01167{transform:matrix(0.153800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153800,0.000000,0.000000,0.250000,0,0);}
.m3d_c01167{transform:matrix(0.179460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179460,0.000000,0.000000,0.250000,0,0);}
.m48_c01167{transform:matrix(0.179630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179630,0.000000,0.000000,0.250000,0,0);}
.m33_c01167{transform:matrix(0.180475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180475,0.000000,0.000000,0.250000,0,0);}
.m3e_c01167{transform:matrix(0.184645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184645,0.000000,0.000000,0.250000,0,0);}
.m37_c01167{transform:matrix(0.187715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187715,0.000000,0.000000,0.250000,0,0);}
.mc_c01167{transform:matrix(0.192604,-0.002504,0.003250,0.249979,0,0);-ms-transform:matrix(0.192604,-0.002504,0.003250,0.249979,0,0);-webkit-transform:matrix(0.192604,-0.002504,0.003250,0.249979,0,0);}
.m5_c01167{transform:matrix(0.193246,-0.002705,0.003500,0.249976,0,0);-ms-transform:matrix(0.193246,-0.002705,0.003500,0.249976,0,0);-webkit-transform:matrix(0.193246,-0.002705,0.003500,0.249976,0,0);}
.m25_c01167{transform:matrix(0.196483,-0.002161,0.002750,0.249985,0,0);-ms-transform:matrix(0.196483,-0.002161,0.002750,0.249985,0,0);-webkit-transform:matrix(0.196483,-0.002161,0.002750,0.249985,0,0);}
.m34_c01167{transform:matrix(0.201965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201965,0.000000,0.000000,0.250000,0,0);}
.m36_c01167{transform:matrix(0.202375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202375,0.000000,0.000000,0.250000,0,0);}
.m26_c01167{transform:matrix(0.202393,-0.002226,0.002750,0.249985,0,0);-ms-transform:matrix(0.202393,-0.002226,0.002750,0.249985,0,0);-webkit-transform:matrix(0.202393,-0.002226,0.002750,0.249985,0,0);}
.m39_c01167{transform:matrix(0.206525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206525,0.000000,0.000000,0.250000,0,0);}
.m22_c01167{transform:matrix(0.211342,-0.002325,0.002750,0.249985,0,0);-ms-transform:matrix(0.211342,-0.002325,0.002750,0.249985,0,0);-webkit-transform:matrix(0.211342,-0.002325,0.002750,0.249985,0,0);}
.m35_c01167{transform:matrix(0.211415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211415,0.000000,0.000000,0.250000,0,0);}
.md_c01167{transform:matrix(0.212932,-0.002768,0.003250,0.249979,0,0);-ms-transform:matrix(0.212932,-0.002768,0.003250,0.249979,0,0);-webkit-transform:matrix(0.212932,-0.002768,0.003250,0.249979,0,0);}
.m1c_c01167{transform:matrix(0.214740,-0.002577,0.003000,0.249982,0,0);-ms-transform:matrix(0.214740,-0.002577,0.003000,0.249982,0,0);-webkit-transform:matrix(0.214740,-0.002577,0.003000,0.249982,0,0);}
.m13_c01167{transform:matrix(0.215642,-0.002803,0.003250,0.249979,0,0);-ms-transform:matrix(0.215642,-0.002803,0.003250,0.249979,0,0);-webkit-transform:matrix(0.215642,-0.002803,0.003250,0.249979,0,0);}
.m27_c01167{transform:matrix(0.219302,-0.002412,0.002750,0.249985,0,0);-ms-transform:matrix(0.219302,-0.002412,0.002750,0.249985,0,0);-webkit-transform:matrix(0.219302,-0.002412,0.002750,0.249985,0,0);}
.m29_c01167{transform:matrix(0.221914,0.005992,-0.006748,0.249909,0,0);-ms-transform:matrix(0.221914,0.005992,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.221914,0.005992,-0.006748,0.249909,0,0);}
.m21_c01167{transform:matrix(0.222112,-0.002443,0.002750,0.249985,0,0);-ms-transform:matrix(0.222112,-0.002443,0.002750,0.249985,0,0);-webkit-transform:matrix(0.222112,-0.002443,0.002750,0.249985,0,0);}
.m2c_c01167{transform:matrix(0.223610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223610,0.000000,0.000000,0.250000,0,0);}
.m7_c01167{transform:matrix(0.224116,-0.002914,0.003250,0.249979,0,0);-ms-transform:matrix(0.224116,-0.002914,0.003250,0.249979,0,0);-webkit-transform:matrix(0.224116,-0.002914,0.003250,0.249979,0,0);}
.m8_c01167{transform:matrix(0.224501,-0.002919,0.003250,0.249979,0,0);-ms-transform:matrix(0.224501,-0.002919,0.003250,0.249979,0,0);-webkit-transform:matrix(0.224501,-0.002919,0.003250,0.249979,0,0);}
.mb_c01167{transform:matrix(0.224951,-0.002924,0.003250,0.249979,0,0);-ms-transform:matrix(0.224951,-0.002924,0.003250,0.249979,0,0);-webkit-transform:matrix(0.224951,-0.002924,0.003250,0.249979,0,0);}
.m3f_c01167{transform:matrix(0.226305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226305,0.000000,0.000000,0.250000,0,0);}
.m30_c01167{transform:matrix(0.232620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232620,0.000000,0.000000,0.250000,0,0);}
.ma_c01167{transform:matrix(0.232920,-0.003028,0.003250,0.249979,0,0);-ms-transform:matrix(0.232920,-0.003028,0.003250,0.249979,0,0);-webkit-transform:matrix(0.232920,-0.003028,0.003250,0.249979,0,0);}
.m40_c01167{transform:matrix(0.234445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234445,0.000000,0.000000,0.250000,0,0);}
.m9_c01167{transform:matrix(0.238800,-0.003104,0.003250,0.249979,0,0);-ms-transform:matrix(0.238800,-0.003104,0.003250,0.249979,0,0);-webkit-transform:matrix(0.238800,-0.003104,0.003250,0.249979,0,0);}
.m14_c01167{transform:matrix(0.242320,-0.003150,0.003250,0.249979,0,0);-ms-transform:matrix(0.242320,-0.003150,0.003250,0.249979,0,0);-webkit-transform:matrix(0.242320,-0.003150,0.003250,0.249979,0,0);}
.m6_c01167{transform:matrix(0.243994,-0.003172,0.003250,0.249979,0,0);-ms-transform:matrix(0.243994,-0.003172,0.003250,0.249979,0,0);-webkit-transform:matrix(0.243994,-0.003172,0.003250,0.249979,0,0);}
.m19_c01167{transform:matrix(0.244237,-0.002931,0.003000,0.249982,0,0);-ms-transform:matrix(0.244237,-0.002931,0.003000,0.249982,0,0);-webkit-transform:matrix(0.244237,-0.002931,0.003000,0.249982,0,0);}
.m3b_c01167{transform:matrix(0.250600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250600,0.000000,0.000000,0.250000,0,0);}
.m2_c01167{transform:matrix(0.253050,-0.003543,0.003500,0.249976,0,0);-ms-transform:matrix(0.253050,-0.003543,0.003500,0.249976,0,0);-webkit-transform:matrix(0.253050,-0.003543,0.003500,0.249976,0,0);}
.m1_c01167{transform:matrix(0.253250,-0.003546,0.003500,0.249976,0,0);-ms-transform:matrix(0.253250,-0.003546,0.003500,0.249976,0,0);-webkit-transform:matrix(0.253250,-0.003546,0.003500,0.249976,0,0);}
.m2b_c01167{transform:matrix(0.257110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257110,0.000000,0.000000,0.250000,0,0);}
.m24_c01167{transform:matrix(0.258884,-0.002848,0.002750,0.249985,0,0);-ms-transform:matrix(0.258884,-0.002848,0.002750,0.249985,0,0);-webkit-transform:matrix(0.258884,-0.002848,0.002750,0.249985,0,0);}
.me_c01167{transform:matrix(0.259743,-0.003377,0.003250,0.249979,0,0);-ms-transform:matrix(0.259743,-0.003377,0.003250,0.249979,0,0);-webkit-transform:matrix(0.259743,-0.003377,0.003250,0.249979,0,0);}
.m32_c01167{transform:matrix(0.260310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260310,0.000000,0.000000,0.250000,0,0);}
.m41_c01167{transform:matrix(0.265105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265105,0.000000,0.000000,0.250000,0,0);}
.m12_c01167{transform:matrix(0.268407,-0.003489,0.003250,0.249979,0,0);-ms-transform:matrix(0.268407,-0.003489,0.003250,0.249979,0,0);-webkit-transform:matrix(0.268407,-0.003489,0.003250,0.249979,0,0);}
.m17_c01167{transform:matrix(0.268521,-0.003222,0.003000,0.249982,0,0);-ms-transform:matrix(0.268521,-0.003222,0.003000,0.249982,0,0);-webkit-transform:matrix(0.268521,-0.003222,0.003000,0.249982,0,0);}
.m3c_c01167{transform:matrix(0.268845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268845,0.000000,0.000000,0.250000,0,0);}
.m23_c01167{transform:matrix(0.279053,-0.003070,0.002750,0.249985,0,0);-ms-transform:matrix(0.279053,-0.003070,0.002750,0.249985,0,0);-webkit-transform:matrix(0.279053,-0.003070,0.002750,0.249985,0,0);}
.m3_c01167{transform:matrix(0.282602,-0.003956,0.003500,0.249976,0,0);-ms-transform:matrix(0.282602,-0.003956,0.003500,0.249976,0,0);-webkit-transform:matrix(0.282602,-0.003956,0.003500,0.249976,0,0);}
.m2a_c01167{transform:matrix(0.284521,0.007682,-0.006748,0.249909,0,0);-ms-transform:matrix(0.284521,0.007682,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.284521,0.007682,-0.006748,0.249909,0,0);}
.m2d_c01167{transform:matrix(0.287240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287240,0.000000,0.000000,0.250000,0,0);}
.m1a_c01167{transform:matrix(0.289384,-0.003473,0.003000,0.249982,0,0);-ms-transform:matrix(0.289384,-0.003473,0.003000,0.249982,0,0);-webkit-transform:matrix(0.289384,-0.003473,0.003000,0.249982,0,0);}
.m42_c01167{transform:matrix(0.296715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296715,0.000000,0.000000,0.250000,0,0);}
.m2e_c01167{transform:matrix(0.300330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300330,0.000000,0.000000,0.250000,0,0);}
.m18_c01167{transform:matrix(0.301673,-0.003620,0.003000,0.249982,0,0);-ms-transform:matrix(0.301673,-0.003620,0.003000,0.249982,0,0);-webkit-transform:matrix(0.301673,-0.003620,0.003000,0.249982,0,0);}
.m4_c01167{transform:matrix(0.305960,-0.004283,0.003500,0.249976,0,0);-ms-transform:matrix(0.305960,-0.004283,0.003500,0.249976,0,0);-webkit-transform:matrix(0.305960,-0.004283,0.003500,0.249976,0,0);}
.m2f_c01167{transform:matrix(0.323630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323630,0.000000,0.000000,0.250000,0,0);}
.m43_c01167{transform:matrix(0.324385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324385,0.000000,0.000000,0.250000,0,0);}
.m45_c01167{transform:matrix(0.330700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330700,0.000000,0.000000,0.250000,0,0);}
.m31_c01167{transform:matrix(0.336210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336210,0.000000,0.000000,0.250000,0,0);}
.m1d_c01167{transform:matrix(0.352345,-0.004228,0.003000,0.249982,0,0);-ms-transform:matrix(0.352345,-0.004228,0.003000,0.249982,0,0);-webkit-transform:matrix(0.352345,-0.004228,0.003000,0.249982,0,0);}
.m1b_c01167{transform:matrix(0.355344,-0.004264,0.003000,0.249982,0,0);-ms-transform:matrix(0.355344,-0.004264,0.003000,0.249982,0,0);-webkit-transform:matrix(0.355344,-0.004264,0.003000,0.249982,0,0);}
.m1f_c01167{transform:matrix(0.369248,-0.004062,0.002750,0.249985,0,0);-ms-transform:matrix(0.369248,-0.004062,0.002750,0.249985,0,0);-webkit-transform:matrix(0.369248,-0.004062,0.002750,0.249985,0,0);}
.m0_c01167{transform:matrix(0.373208,-0.005225,0.003500,0.249976,0,0);-ms-transform:matrix(0.373208,-0.005225,0.003500,0.249976,0,0);-webkit-transform:matrix(0.373208,-0.005225,0.003500,0.249976,0,0);}
.m10_c01167{transform:matrix(0.388352,-0.005049,0.003250,0.249979,0,0);-ms-transform:matrix(0.388352,-0.005049,0.003250,0.249979,0,0);-webkit-transform:matrix(0.388352,-0.005049,0.003250,0.249979,0,0);}
.mf_c01167{transform:matrix(0.482884,-0.006277,0.003250,0.249979,0,0);-ms-transform:matrix(0.482884,-0.006277,0.003250,0.249979,0,0);-webkit-transform:matrix(0.482884,-0.006277,0.003250,0.249979,0,0);}
.m20_c01167{transform:matrix(0.497450,-0.005472,0.002750,0.249985,0,0);-ms-transform:matrix(0.497450,-0.005472,0.002750,0.249985,0,0);-webkit-transform:matrix(0.497450,-0.005472,0.002750,0.249985,0,0);}
.m47_c01167{transform:matrix(0.509610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509610,0.000000,0.000000,0.250000,0,0);}
.m16_c01167{transform:matrix(0.510813,-0.006130,0.003000,0.249982,0,0);-ms-transform:matrix(0.510813,-0.006130,0.003000,0.249982,0,0);-webkit-transform:matrix(0.510813,-0.006130,0.003000,0.249982,0,0);}
.m46_c01167{transform:matrix(0.540100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540100,0.000000,0.000000,0.250000,0,0);}
.m15_c01167{transform:matrix(0.584343,-0.007012,0.003000,0.249982,0,0);-ms-transform:matrix(0.584343,-0.007012,0.003000,0.249982,0,0);-webkit-transform:matrix(0.584343,-0.007012,0.003000,0.249982,0,0);}
.m44_c01167{transform:matrix(0.588665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.588665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.588665,0.000000,0.000000,0.250000,0,0);}
.m11_c01167{transform:matrix(0.837139,-0.010883,0.003250,0.249979,0,0);-ms-transform:matrix(0.837139,-0.010883,0.003250,0.249979,0,0);-webkit-transform:matrix(0.837139,-0.010883,0.003250,0.249979,0,0);}
.m28_c01167{transform:matrix(1.488398,0.040187,-0.006748,0.249909,0,0);-ms-transform:matrix(1.488398,0.040187,-0.006748,0.249909,0,0);-webkit-transform:matrix(1.488398,0.040187,-0.006748,0.249909,0,0);}
.v0_c01167{vertical-align:0.000000px;}
.ls0_c01167{letter-spacing:0.000000px;}
.sc__c01167{text-shadow:none;}
.sc0_c01167{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__c01167{-webkit-text-stroke:0px transparent;}
.sc0_c01167{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01167{word-spacing:0.000000px;}
.fc0_c01167{color:transparent;}
.fs9_c01167{font-size:18.000000px;}
.fs2_c01167{font-size:72.005184px;}
.fs5_c01167{font-size:78.000000px;}
.fs3_c01167{font-size:78.004719px;}
.fs8_c01167{font-size:84.000000px;}
.fs1_c01167{font-size:84.007098px;}
.fs0_c01167{font-size:84.008232px;}
.fs4_c01167{font-size:84.030612px;}
.fs7_c01167{font-size:108.000000px;}
.fs6_c01167{font-size:120.000000px;}
.fsa_c01167{font-size:192.000000px;}
.y0_c01167{bottom:0.000000px;}
.y30_c01167{bottom:458.875500px;}
.y2f_c01167{bottom:493.911000px;}
.y2e_c01167{bottom:530.371500px;}
.y2d_c01167{bottom:566.272500px;}
.y2c_c01167{bottom:602.091000px;}
.y2b_c01167{bottom:844.939221px;}
.y2a_c01167{bottom:846.434886px;}
.y29_c01167{bottom:853.408500px;}
.y1f_c01167{bottom:882.774000px;}
.y20_c01167{bottom:883.057437px;}
.y21_c01167{bottom:883.789608px;}
.y22_c01167{bottom:884.842522px;}
.y23_c01167{bottom:885.199038px;}
.y24_c01167{bottom:885.992374px;}
.y25_c01167{bottom:886.423255px;}
.y26_c01167{bottom:887.058208px;}
.y27_c01167{bottom:887.399412px;}
.y28_c01167{bottom:887.770744px;}
.y16_c01167{bottom:913.413000px;}
.y17_c01167{bottom:914.287620px;}
.y18_c01167{bottom:915.454524px;}
.y19_c01167{bottom:915.822606px;}
.y1a_c01167{bottom:916.938066px;}
.y1b_c01167{bottom:917.467050px;}
.y1c_c01167{bottom:918.120900px;}
.y1d_c01167{bottom:918.931152px;}
.y1e_c01167{bottom:919.472196px;}
.y14_c01167{bottom:957.164198px;}
.y15_c01167{bottom:957.164359px;}
.y13_c01167{bottom:957.164676px;}
.y33_c01167{bottom:977.940000px;}
.y7_c01167{bottom:982.803000px;}
.y8_c01167{bottom:983.827237px;}
.y9_c01167{bottom:984.431269px;}
.ya_c01167{bottom:985.315906px;}
.yb_c01167{bottom:985.878833px;}
.yc_c01167{bottom:986.310075px;}
.yd_c01167{bottom:987.054000px;}
.ye_c01167{bottom:987.475220px;}
.yf_c01167{bottom:988.011119px;}
.y10_c01167{bottom:989.443589px;}
.y11_c01167{bottom:989.903086px;}
.y12_c01167{bottom:990.714248px;}
.y32_c01167{bottom:1002.240000px;}
.y1_c01167{bottom:1020.466500px;}
.y2_c01167{bottom:1021.552599px;}
.y3_c01167{bottom:1022.648694px;}
.y4_c01167{bottom:1023.685002px;}
.y5_c01167{bottom:1024.190178px;}
.y6_c01167{bottom:1024.841031px;}
.y31_c01167{bottom:1188.270000px;}
.hb_c01167{height:18.000000px;}
.h4_c01167{height:72.005184px;}
.h7_c01167{height:78.000000px;}
.h5_c01167{height:78.004719px;}
.ha_c01167{height:84.000000px;}
.h3_c01167{height:84.007098px;}
.h2_c01167{height:84.008232px;}
.h6_c01167{height:84.030612px;}
.h9_c01167{height:108.000000px;}
.h8_c01167{height:120.000000px;}
.hc_c01167{height:192.000000px;}
.h1_c01167{height:1258.500000px;}
.h0_c01167{height:1258.740000px;}
.w0_c01167{width:904.200000px;}
.w1_c01167{width:904.500000px;}
.x0_c01167{left:0.000000px;}
.x7_c01167{left:17.497500px;}
.x1_c01167{left:32.563500px;}
.x15_c01167{left:90.630000px;}
.x8_c01167{left:96.285000px;}
.x2_c01167{left:110.142000px;}
.x9_c01167{left:142.749000px;}
.x3_c01167{left:188.434500px;}
.xa_c01167{left:210.798000px;}
.x16_c01167{left:218.545500px;}
.x1c_c01167{left:224.142000px;}
.x1d_c01167{left:249.909000px;}
.xb_c01167{left:254.100000px;}
.x4_c01167{left:262.456500px;}
.xc_c01167{left:287.272500px;}
.x5_c01167{left:298.540500px;}
.x17_c01167{left:311.500500px;}
.x1e_c01167{left:316.470000px;}
.x6_c01167{left:345.030000px;}
.x18_c01167{left:355.582500px;}
.x26_c01167{left:373.920000px;}
.xd_c01167{left:376.899000px;}
.x30_c01167{left:402.570000px;}
.x3d_c01167{left:407.700000px;}
.x19_c01167{left:410.070000px;}
.x1f_c01167{left:412.189500px;}
.xe_c01167{left:418.122000px;}
.x39_c01167{left:431.190000px;}
.x20_c01167{left:444.600000px;}
.x31_c01167{left:449.280000px;}
.x3e_c01167{left:450.630000px;}
.x1a_c01167{left:477.591000px;}
.x29_c01167{left:481.410000px;}
.x32_c01167{left:505.440000px;}
.x3a_c01167{left:507.600000px;}
.x12_c01167{left:511.966293px;}
.x2a_c01167{left:515.430000px;}
.x21_c01167{left:516.721500px;}
.x1b_c01167{left:522.678000px;}
.x33_c01167{left:526.770000px;}
.xf_c01167{left:528.312000px;}
.x36_c01167{left:537.300000px;}
.x3b_c01167{left:546.750000px;}
.x2b_c01167{left:548.640000px;}
.x37_c01167{left:553.770000px;}
.x22_c01167{left:555.892500px;}
.x10_c01167{left:563.658000px;}
.x13_c01167{left:568.131290px;}
.x34_c01167{left:579.690000px;}
.x2c_c01167{left:591.300000px;}
.x3c_c01167{left:593.730000px;}
.x3f_c01167{left:608.850000px;}
.x23_c01167{left:613.615500px;}
.x11_c01167{left:626.055000px;}
.x27_c01167{left:632.202000px;}
.x2d_c01167{left:636.390000px;}
.x14_c01167{left:642.117789px;}
.x24_c01167{left:644.634000px;}
.x35_c01167{left:646.650000px;}
.x2e_c01167{left:653.940000px;}
.x25_c01167{left:678.391500px;}
.x38_c01167{left:679.860000px;}
.x28_c01167{left:687.597000px;}
.x2f_c01167{left:688.770000px;}
.x41_c01167{left:898.560000px;}
.x40_c01167{left:900.450000px;}
@media print{
.v0_c01167{vertical-align:0.000000pt;}
.ls0_c01167{letter-spacing:0.000000pt;}
.ws0_c01167{word-spacing:0.000000pt;}
.fs9_c01167{font-size:16.000000pt;}
.fs2_c01167{font-size:64.004608pt;}
.fs5_c01167{font-size:69.333333pt;}
.fs3_c01167{font-size:69.337528pt;}
.fs8_c01167{font-size:74.666667pt;}
.fs1_c01167{font-size:74.672976pt;}
.fs0_c01167{font-size:74.673984pt;}
.fs4_c01167{font-size:74.693878pt;}
.fs7_c01167{font-size:96.000000pt;}
.fs6_c01167{font-size:106.666667pt;}
.fsa_c01167{font-size:170.666667pt;}
.y0_c01167{bottom:0.000000pt;}
.y30_c01167{bottom:407.889333pt;}
.y2f_c01167{bottom:439.032000pt;}
.y2e_c01167{bottom:471.441333pt;}
.y2d_c01167{bottom:503.353333pt;}
.y2c_c01167{bottom:535.192000pt;}
.y2b_c01167{bottom:751.057085pt;}
.y2a_c01167{bottom:752.386565pt;}
.y29_c01167{bottom:758.585333pt;}
.y1f_c01167{bottom:784.688000pt;}
.y20_c01167{bottom:784.939944pt;}
.y21_c01167{bottom:785.590763pt;}
.y22_c01167{bottom:786.526687pt;}
.y23_c01167{bottom:786.843589pt;}
.y24_c01167{bottom:787.548777pt;}
.y25_c01167{bottom:787.931783pt;}
.y26_c01167{bottom:788.496185pt;}
.y27_c01167{bottom:788.799477pt;}
.y28_c01167{bottom:789.129551pt;}
.y16_c01167{bottom:811.922667pt;}
.y17_c01167{bottom:812.700107pt;}
.y18_c01167{bottom:813.737355pt;}
.y19_c01167{bottom:814.064539pt;}
.y1a_c01167{bottom:815.056059pt;}
.y1b_c01167{bottom:815.526267pt;}
.y1c_c01167{bottom:816.107467pt;}
.y1d_c01167{bottom:816.827691pt;}
.y1e_c01167{bottom:817.308619pt;}
.y14_c01167{bottom:850.812620pt;}
.y15_c01167{bottom:850.812764pt;}
.y13_c01167{bottom:850.813045pt;}
.y33_c01167{bottom:869.280000pt;}
.y7_c01167{bottom:873.602667pt;}
.y8_c01167{bottom:874.513100pt;}
.y9_c01167{bottom:875.050017pt;}
.ya_c01167{bottom:875.836361pt;}
.yb_c01167{bottom:876.336740pt;}
.yc_c01167{bottom:876.720067pt;}
.yd_c01167{bottom:877.381333pt;}
.ye_c01167{bottom:877.755751pt;}
.yf_c01167{bottom:878.232105pt;}
.y10_c01167{bottom:879.505412pt;}
.y11_c01167{bottom:879.913855pt;}
.y12_c01167{bottom:880.634887pt;}
.y32_c01167{bottom:890.880000pt;}
.y1_c01167{bottom:907.081333pt;}
.y2_c01167{bottom:908.046755pt;}
.y3_c01167{bottom:909.021061pt;}
.y4_c01167{bottom:909.942224pt;}
.y5_c01167{bottom:910.391269pt;}
.y6_c01167{bottom:910.969805pt;}
.y31_c01167{bottom:1056.240000pt;}
.hb_c01167{height:16.000000pt;}
.h4_c01167{height:64.004608pt;}
.h7_c01167{height:69.333333pt;}
.h5_c01167{height:69.337528pt;}
.ha_c01167{height:74.666667pt;}
.h3_c01167{height:74.672976pt;}
.h2_c01167{height:74.673984pt;}
.h6_c01167{height:74.693878pt;}
.h9_c01167{height:96.000000pt;}
.h8_c01167{height:106.666667pt;}
.hc_c01167{height:170.666667pt;}
.h1_c01167{height:1118.666667pt;}
.h0_c01167{height:1118.880000pt;}
.w0_c01167{width:803.733333pt;}
.w1_c01167{width:804.000000pt;}
.x0_c01167{left:0.000000pt;}
.x7_c01167{left:15.553333pt;}
.x1_c01167{left:28.945333pt;}
.x15_c01167{left:80.560000pt;}
.x8_c01167{left:85.586667pt;}
.x2_c01167{left:97.904000pt;}
.x9_c01167{left:126.888000pt;}
.x3_c01167{left:167.497333pt;}
.xa_c01167{left:187.376000pt;}
.x16_c01167{left:194.262667pt;}
.x1c_c01167{left:199.237333pt;}
.x1d_c01167{left:222.141333pt;}
.xb_c01167{left:225.866667pt;}
.x4_c01167{left:233.294667pt;}
.xc_c01167{left:255.353333pt;}
.x5_c01167{left:265.369333pt;}
.x17_c01167{left:276.889333pt;}
.x1e_c01167{left:281.306667pt;}
.x6_c01167{left:306.693333pt;}
.x18_c01167{left:316.073333pt;}
.x26_c01167{left:332.373333pt;}
.xd_c01167{left:335.021333pt;}
.x30_c01167{left:357.840000pt;}
.x3d_c01167{left:362.400000pt;}
.x19_c01167{left:364.506667pt;}
.x1f_c01167{left:366.390667pt;}
.xe_c01167{left:371.664000pt;}
.x39_c01167{left:383.280000pt;}
.x20_c01167{left:395.200000pt;}
.x31_c01167{left:399.360000pt;}
.x3e_c01167{left:400.560000pt;}
.x1a_c01167{left:424.525333pt;}
.x29_c01167{left:427.920000pt;}
.x32_c01167{left:449.280000pt;}
.x3a_c01167{left:451.200000pt;}
.x12_c01167{left:455.081149pt;}
.x2a_c01167{left:458.160000pt;}
.x21_c01167{left:459.308000pt;}
.x1b_c01167{left:464.602667pt;}
.x33_c01167{left:468.240000pt;}
.xf_c01167{left:469.610667pt;}
.x36_c01167{left:477.600000pt;}
.x3b_c01167{left:486.000000pt;}
.x2b_c01167{left:487.680000pt;}
.x37_c01167{left:492.240000pt;}
.x22_c01167{left:494.126667pt;}
.x10_c01167{left:501.029333pt;}
.x13_c01167{left:505.005591pt;}
.x34_c01167{left:515.280000pt;}
.x2c_c01167{left:525.600000pt;}
.x3c_c01167{left:527.760000pt;}
.x3f_c01167{left:541.200000pt;}
.x23_c01167{left:545.436000pt;}
.x11_c01167{left:556.493333pt;}
.x27_c01167{left:561.957333pt;}
.x2d_c01167{left:565.680000pt;}
.x14_c01167{left:570.771368pt;}
.x24_c01167{left:573.008000pt;}
.x35_c01167{left:574.800000pt;}
.x2e_c01167{left:581.280000pt;}
.x25_c01167{left:603.014667pt;}
.x38_c01167{left:604.320000pt;}
.x28_c01167{left:611.197333pt;}
.x2f_c01167{left:612.240000pt;}
.x41_c01167{left:798.720000pt;}
.x40_c01167{left:800.400000pt;}
}





/* 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_c01168 {
    display:none;
  }
  .loading-indicator_c01168.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01168 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_c01168 { 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_c01168" -> "#page-container .classname_c01168")
 */
.pf_c01168 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01168 { /* 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_c01168.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01168 { /* 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_c01168 { /* 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_c01168 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01168 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01168 {overflow:visible;}
  }
}
.c_c01168 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01168 { /* 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_c01168:after { /* webkit #35443 */
  content: '';
}
.t_c01168:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01168 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 */
}
.__c01168 { /* 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_c01168 { /* info for Javascript */
  display:none;
}
.l_c01168 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01168 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01168 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01168: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_c01168 {
    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_c01168.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01168.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_c01168 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01168{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01168;src:url('chunks/assets/font_7c6b9abe6ee2a268480c528b.woff2')format("woff");}.ff1_c01168{font-family:ff1_c01168;line-height:1.000000;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;}
.m0_c01168{transform:matrix(0.155575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155575,0.000000,0.000000,0.250000,0,0);}
.mb2_c01168{transform:matrix(0.186924,0.002056,-0.002750,0.249985,0,0);-ms-transform:matrix(0.186924,0.002056,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.186924,0.002056,-0.002750,0.249985,0,0);}
.mdc_c01168{transform:matrix(0.190064,0.002091,-0.002750,0.249985,0,0);-ms-transform:matrix(0.190064,0.002091,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.190064,0.002091,-0.002750,0.249985,0,0);}
.m3b_c01168{transform:matrix(0.190983,0.002101,-0.002750,0.249985,0,0);-ms-transform:matrix(0.190983,0.002101,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.190983,0.002101,-0.002750,0.249985,0,0);}
.md7_c01168{transform:matrix(0.197423,0.002172,-0.002750,0.249985,0,0);-ms-transform:matrix(0.197423,0.002172,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.197423,0.002172,-0.002750,0.249985,0,0);}
.md1_c01168{transform:matrix(0.200578,0.002206,-0.002750,0.249985,0,0);-ms-transform:matrix(0.200578,0.002206,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.200578,0.002206,-0.002750,0.249985,0,0);}
.ma3_c01168{transform:matrix(0.201298,0.002214,-0.002750,0.249985,0,0);-ms-transform:matrix(0.201298,0.002214,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.201298,0.002214,-0.002750,0.249985,0,0);}
.m12e_c01168{transform:matrix(0.201457,0.004634,-0.005748,0.249934,0,0);-ms-transform:matrix(0.201457,0.004634,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.201457,0.004634,-0.005748,0.249934,0,0);}
.md4_c01168{transform:matrix(0.202168,0.002224,-0.002750,0.249985,0,0);-ms-transform:matrix(0.202168,0.002224,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.202168,0.002224,-0.002750,0.249985,0,0);}
.mda_c01168{transform:matrix(0.202653,0.002229,-0.002750,0.249985,0,0);-ms-transform:matrix(0.202653,0.002229,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.202653,0.002229,-0.002750,0.249985,0,0);}
.m7b_c01168{transform:matrix(0.203518,0.002239,-0.002750,0.249985,0,0);-ms-transform:matrix(0.203518,0.002239,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.203518,0.002239,-0.002750,0.249985,0,0);}
.m1a_c01168{transform:matrix(0.205733,0.002263,-0.002750,0.249985,0,0);-ms-transform:matrix(0.205733,0.002263,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.205733,0.002263,-0.002750,0.249985,0,0);}
.m37_c01168{transform:matrix(0.207422,0.002282,-0.002750,0.249985,0,0);-ms-transform:matrix(0.207422,0.002282,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.207422,0.002282,-0.002750,0.249985,0,0);}
.m7f_c01168{transform:matrix(0.208662,0.002295,-0.002750,0.249985,0,0);-ms-transform:matrix(0.208662,0.002295,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.208662,0.002295,-0.002750,0.249985,0,0);}
.ma1_c01168{transform:matrix(0.210282,0.002313,-0.002750,0.249985,0,0);-ms-transform:matrix(0.210282,0.002313,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.210282,0.002313,-0.002750,0.249985,0,0);}
.m81_c01168{transform:matrix(0.210607,0.002317,-0.002750,0.249985,0,0);-ms-transform:matrix(0.210607,0.002317,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.210607,0.002317,-0.002750,0.249985,0,0);}
.md2_c01168{transform:matrix(0.210817,0.002319,-0.002750,0.249985,0,0);-ms-transform:matrix(0.210817,0.002319,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.210817,0.002319,-0.002750,0.249985,0,0);}
.mb4_c01168{transform:matrix(0.212607,0.002339,-0.002750,0.249985,0,0);-ms-transform:matrix(0.212607,0.002339,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.212607,0.002339,-0.002750,0.249985,0,0);}
.m34_c01168{transform:matrix(0.213707,0.002351,-0.002750,0.249985,0,0);-ms-transform:matrix(0.213707,0.002351,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.213707,0.002351,-0.002750,0.249985,0,0);}
.ma7_c01168{transform:matrix(0.213792,0.002352,-0.002750,0.249985,0,0);-ms-transform:matrix(0.213792,0.002352,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.213792,0.002352,-0.002750,0.249985,0,0);}
.mab_c01168{transform:matrix(0.214402,0.002358,-0.002750,0.249985,0,0);-ms-transform:matrix(0.214402,0.002358,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.214402,0.002358,-0.002750,0.249985,0,0);}
.md8_c01168{transform:matrix(0.214407,0.002358,-0.002750,0.249985,0,0);-ms-transform:matrix(0.214407,0.002358,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.214407,0.002358,-0.002750,0.249985,0,0);}
.m126_c01168{transform:matrix(0.216733,0.004985,-0.005748,0.249934,0,0);-ms-transform:matrix(0.216733,0.004985,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.216733,0.004985,-0.005748,0.249934,0,0);}
.mbb_c01168{transform:matrix(0.216852,0.002385,-0.002750,0.249985,0,0);-ms-transform:matrix(0.216852,0.002385,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.216852,0.002385,-0.002750,0.249985,0,0);}
.mb0_c01168{transform:matrix(0.217022,0.002387,-0.002750,0.249985,0,0);-ms-transform:matrix(0.217022,0.002387,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.217022,0.002387,-0.002750,0.249985,0,0);}
.m88_c01168{transform:matrix(0.218612,0.002405,-0.002750,0.249985,0,0);-ms-transform:matrix(0.218612,0.002405,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.218612,0.002405,-0.002750,0.249985,0,0);}
.md0_c01168{transform:matrix(0.218742,0.002406,-0.002750,0.249985,0,0);-ms-transform:matrix(0.218742,0.002406,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.218742,0.002406,-0.002750,0.249985,0,0);}
.m36_c01168{transform:matrix(0.218942,0.002408,-0.002750,0.249985,0,0);-ms-transform:matrix(0.218942,0.002408,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.218942,0.002408,-0.002750,0.249985,0,0);}
.m6c_c01168{transform:matrix(0.219132,0.002410,-0.002750,0.249985,0,0);-ms-transform:matrix(0.219132,0.002410,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.219132,0.002410,-0.002750,0.249985,0,0);}
.m30_c01168{transform:matrix(0.219527,0.002415,-0.002750,0.249985,0,0);-ms-transform:matrix(0.219527,0.002415,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.219527,0.002415,-0.002750,0.249985,0,0);}
.mc3_c01168{transform:matrix(0.219847,0.002418,-0.002750,0.249985,0,0);-ms-transform:matrix(0.219847,0.002418,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.219847,0.002418,-0.002750,0.249985,0,0);}
.mba_c01168{transform:matrix(0.220557,0.002426,-0.002750,0.249985,0,0);-ms-transform:matrix(0.220557,0.002426,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.220557,0.002426,-0.002750,0.249985,0,0);}
.m118_c01168{transform:matrix(0.220752,0.005077,-0.005748,0.249934,0,0);-ms-transform:matrix(0.220752,0.005077,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.220752,0.005077,-0.005748,0.249934,0,0);}
.me0_c01168{transform:matrix(0.221147,0.002433,-0.002750,0.249985,0,0);-ms-transform:matrix(0.221147,0.002433,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.221147,0.002433,-0.002750,0.249985,0,0);}
.m6d_c01168{transform:matrix(0.221262,0.002434,-0.002750,0.249985,0,0);-ms-transform:matrix(0.221262,0.002434,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.221262,0.002434,-0.002750,0.249985,0,0);}
.mac_c01168{transform:matrix(0.221442,0.002436,-0.002750,0.249985,0,0);-ms-transform:matrix(0.221442,0.002436,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.221442,0.002436,-0.002750,0.249985,0,0);}
.m39_c01168{transform:matrix(0.221667,0.002438,-0.002750,0.249985,0,0);-ms-transform:matrix(0.221667,0.002438,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.221667,0.002438,-0.002750,0.249985,0,0);}
.m32_c01168{transform:matrix(0.222202,0.002444,-0.002750,0.249985,0,0);-ms-transform:matrix(0.222202,0.002444,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.222202,0.002444,-0.002750,0.249985,0,0);}
.m64_c01168{transform:matrix(0.222432,0.002447,-0.002750,0.249985,0,0);-ms-transform:matrix(0.222432,0.002447,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.222432,0.002447,-0.002750,0.249985,0,0);}
.m83_c01168{transform:matrix(0.223301,0.002456,-0.002750,0.249985,0,0);-ms-transform:matrix(0.223301,0.002456,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.223301,0.002456,-0.002750,0.249985,0,0);}
.mc1_c01168{transform:matrix(0.223381,0.002457,-0.002750,0.249985,0,0);-ms-transform:matrix(0.223381,0.002457,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.223381,0.002457,-0.002750,0.249985,0,0);}
.mbc_c01168{transform:matrix(0.223746,0.002461,-0.002750,0.249985,0,0);-ms-transform:matrix(0.223746,0.002461,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.223746,0.002461,-0.002750,0.249985,0,0);}
.m46_c01168{transform:matrix(0.223956,0.002464,-0.002750,0.249985,0,0);-ms-transform:matrix(0.223956,0.002464,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.223956,0.002464,-0.002750,0.249985,0,0);}
.m91_c01168{transform:matrix(0.224736,0.002472,-0.002750,0.249985,0,0);-ms-transform:matrix(0.224736,0.002472,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.224736,0.002472,-0.002750,0.249985,0,0);}
.mfa_c01168{transform:matrix(0.225331,0.002479,-0.002750,0.249985,0,0);-ms-transform:matrix(0.225331,0.002479,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.225331,0.002479,-0.002750,0.249985,0,0);}
.ma4_c01168{transform:matrix(0.225336,0.002479,-0.002750,0.249985,0,0);-ms-transform:matrix(0.225336,0.002479,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.225336,0.002479,-0.002750,0.249985,0,0);}
.ma8_c01168{transform:matrix(0.225451,0.002480,-0.002750,0.249985,0,0);-ms-transform:matrix(0.225451,0.002480,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.225451,0.002480,-0.002750,0.249985,0,0);}
.m11e_c01168{transform:matrix(0.225720,0.005192,-0.005748,0.249934,0,0);-ms-transform:matrix(0.225720,0.005192,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.225720,0.005192,-0.005748,0.249934,0,0);}
.mdd_c01168{transform:matrix(0.226161,0.002488,-0.002750,0.249985,0,0);-ms-transform:matrix(0.226161,0.002488,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.226161,0.002488,-0.002750,0.249985,0,0);}
.m8a_c01168{transform:matrix(0.226351,0.002490,-0.002750,0.249985,0,0);-ms-transform:matrix(0.226351,0.002490,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.226351,0.002490,-0.002750,0.249985,0,0);}
.m12c_c01168{transform:matrix(0.226455,0.005208,-0.005748,0.249934,0,0);-ms-transform:matrix(0.226455,0.005208,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.226455,0.005208,-0.005748,0.249934,0,0);}
.m2a_c01168{transform:matrix(0.227281,0.002500,-0.002750,0.249985,0,0);-ms-transform:matrix(0.227281,0.002500,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.227281,0.002500,-0.002750,0.249985,0,0);}
.m11f_c01168{transform:matrix(0.228075,0.005246,-0.005748,0.249934,0,0);-ms-transform:matrix(0.228075,0.005246,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.228075,0.005246,-0.005748,0.249934,0,0);}
.mcc_c01168{transform:matrix(0.228156,0.002510,-0.002750,0.249985,0,0);-ms-transform:matrix(0.228156,0.002510,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.228156,0.002510,-0.002750,0.249985,0,0);}
.mb5_c01168{transform:matrix(0.228626,0.002515,-0.002750,0.249985,0,0);-ms-transform:matrix(0.228626,0.002515,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.228626,0.002515,-0.002750,0.249985,0,0);}
.m11a_c01168{transform:matrix(0.228755,0.005261,-0.005748,0.249934,0,0);-ms-transform:matrix(0.228755,0.005261,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.228755,0.005261,-0.005748,0.249934,0,0);}
.mc6_c01168{transform:matrix(0.228906,0.002518,-0.002750,0.249985,0,0);-ms-transform:matrix(0.228906,0.002518,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.228906,0.002518,-0.002750,0.249985,0,0);}
.m38_c01168{transform:matrix(0.229036,0.002519,-0.002750,0.249985,0,0);-ms-transform:matrix(0.229036,0.002519,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.229036,0.002519,-0.002750,0.249985,0,0);}
.m89_c01168{transform:matrix(0.229181,0.002521,-0.002750,0.249985,0,0);-ms-transform:matrix(0.229181,0.002521,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.229181,0.002521,-0.002750,0.249985,0,0);}
.m1f_c01168{transform:matrix(0.229511,0.002525,-0.002750,0.249985,0,0);-ms-transform:matrix(0.229511,0.002525,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.229511,0.002525,-0.002750,0.249985,0,0);}
.me1_c01168{transform:matrix(0.229581,0.002525,-0.002750,0.249985,0,0);-ms-transform:matrix(0.229581,0.002525,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.229581,0.002525,-0.002750,0.249985,0,0);}
.m16_c01168{transform:matrix(0.229796,0.002528,-0.002750,0.249985,0,0);-ms-transform:matrix(0.229796,0.002528,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.229796,0.002528,-0.002750,0.249985,0,0);}
.m8_c01168{transform:matrix(0.230323,0.002764,-0.003000,0.249982,0,0);-ms-transform:matrix(0.230323,0.002764,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.230323,0.002764,-0.003000,0.249982,0,0);}
.m131_c01168{transform:matrix(0.231584,0.005326,-0.005748,0.249934,0,0);-ms-transform:matrix(0.231584,0.005326,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.231584,0.005326,-0.005748,0.249934,0,0);}
.m4b_c01168{transform:matrix(0.231611,0.002548,-0.002750,0.249985,0,0);-ms-transform:matrix(0.231611,0.002548,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.231611,0.002548,-0.002750,0.249985,0,0);}
.m116_c01168{transform:matrix(0.231629,0.005327,-0.005748,0.249934,0,0);-ms-transform:matrix(0.231629,0.005327,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.231629,0.005327,-0.005748,0.249934,0,0);}
.mb1_c01168{transform:matrix(0.231736,0.002549,-0.002750,0.249985,0,0);-ms-transform:matrix(0.231736,0.002549,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.231736,0.002549,-0.002750,0.249985,0,0);}
.m128_c01168{transform:matrix(0.232179,0.005340,-0.005748,0.249934,0,0);-ms-transform:matrix(0.232179,0.005340,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.232179,0.005340,-0.005748,0.249934,0,0);}
.md3_c01168{transform:matrix(0.232181,0.002554,-0.002750,0.249985,0,0);-ms-transform:matrix(0.232181,0.002554,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.232181,0.002554,-0.002750,0.249985,0,0);}
.mc9_c01168{transform:matrix(0.232271,0.002555,-0.002750,0.249985,0,0);-ms-transform:matrix(0.232271,0.002555,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.232271,0.002555,-0.002750,0.249985,0,0);}
.m15_c01168{transform:matrix(0.232391,0.002556,-0.002750,0.249985,0,0);-ms-transform:matrix(0.232391,0.002556,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.232391,0.002556,-0.002750,0.249985,0,0);}
.m9c_c01168{transform:matrix(0.232441,0.002557,-0.002750,0.249985,0,0);-ms-transform:matrix(0.232441,0.002557,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.232441,0.002557,-0.002750,0.249985,0,0);}
.m33_c01168{transform:matrix(0.232491,0.002557,-0.002750,0.249985,0,0);-ms-transform:matrix(0.232491,0.002557,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.232491,0.002557,-0.002750,0.249985,0,0);}
.m2d_c01168{transform:matrix(0.232556,0.002558,-0.002750,0.249985,0,0);-ms-transform:matrix(0.232556,0.002558,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.232556,0.002558,-0.002750,0.249985,0,0);}
.m73_c01168{transform:matrix(0.233066,0.002564,-0.002750,0.249985,0,0);-ms-transform:matrix(0.233066,0.002564,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.233066,0.002564,-0.002750,0.249985,0,0);}
.m26_c01168{transform:matrix(0.233666,0.002570,-0.002750,0.249985,0,0);-ms-transform:matrix(0.233666,0.002570,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.233666,0.002570,-0.002750,0.249985,0,0);}
.me4_c01168{transform:matrix(0.233896,0.002573,-0.002750,0.249985,0,0);-ms-transform:matrix(0.233896,0.002573,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.233896,0.002573,-0.002750,0.249985,0,0);}
.m10e_c01168{transform:matrix(0.234103,0.005384,-0.005748,0.249934,0,0);-ms-transform:matrix(0.234103,0.005384,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.234103,0.005384,-0.005748,0.249934,0,0);}
.m87_c01168{transform:matrix(0.234331,0.002578,-0.002750,0.249985,0,0);-ms-transform:matrix(0.234331,0.002578,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.234331,0.002578,-0.002750,0.249985,0,0);}
.m67_c01168{transform:matrix(0.234521,0.002580,-0.002750,0.249985,0,0);-ms-transform:matrix(0.234521,0.002580,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.234521,0.002580,-0.002750,0.249985,0,0);}
.m4f_c01168{transform:matrix(0.234921,0.002584,-0.002750,0.249985,0,0);-ms-transform:matrix(0.234921,0.002584,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.234921,0.002584,-0.002750,0.249985,0,0);}
.me6_c01168{transform:matrix(0.235066,0.002586,-0.002750,0.249985,0,0);-ms-transform:matrix(0.235066,0.002586,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.235066,0.002586,-0.002750,0.249985,0,0);}
.m19_c01168{transform:matrix(0.235111,0.002586,-0.002750,0.249985,0,0);-ms-transform:matrix(0.235111,0.002586,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.235111,0.002586,-0.002750,0.249985,0,0);}
.md5_c01168{transform:matrix(0.235146,0.002587,-0.002750,0.249985,0,0);-ms-transform:matrix(0.235146,0.002587,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.235146,0.002587,-0.002750,0.249985,0,0);}
.mc4_c01168{transform:matrix(0.235351,0.002589,-0.002750,0.249985,0,0);-ms-transform:matrix(0.235351,0.002589,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.235351,0.002589,-0.002750,0.249985,0,0);}
.m1_c01168{transform:matrix(0.236205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236205,0.000000,0.000000,0.250000,0,0);}
.m11b_c01168{transform:matrix(0.236382,0.005437,-0.005748,0.249934,0,0);-ms-transform:matrix(0.236382,0.005437,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.236382,0.005437,-0.005748,0.249934,0,0);}
.m9b_c01168{transform:matrix(0.236431,0.002601,-0.002750,0.249985,0,0);-ms-transform:matrix(0.236431,0.002601,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.236431,0.002601,-0.002750,0.249985,0,0);}
.me3_c01168{transform:matrix(0.236491,0.002601,-0.002750,0.249985,0,0);-ms-transform:matrix(0.236491,0.002601,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.236491,0.002601,-0.002750,0.249985,0,0);}
.mad_c01168{transform:matrix(0.236526,0.002602,-0.002750,0.249985,0,0);-ms-transform:matrix(0.236526,0.002602,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.236526,0.002602,-0.002750,0.249985,0,0);}
.mb_c01168{transform:matrix(0.237008,0.002844,-0.003000,0.249982,0,0);-ms-transform:matrix(0.237008,0.002844,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.237008,0.002844,-0.003000,0.249982,0,0);}
.m135_c01168{transform:matrix(0.237357,0.005459,-0.005748,0.249934,0,0);-ms-transform:matrix(0.237357,0.005459,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.237357,0.005459,-0.005748,0.249934,0,0);}
.m8f_c01168{transform:matrix(0.237781,0.002616,-0.002750,0.249985,0,0);-ms-transform:matrix(0.237781,0.002616,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.237781,0.002616,-0.002750,0.249985,0,0);}
.m8c_c01168{transform:matrix(0.237816,0.002616,-0.002750,0.249985,0,0);-ms-transform:matrix(0.237816,0.002616,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.237816,0.002616,-0.002750,0.249985,0,0);}
.m12f_c01168{transform:matrix(0.237887,0.005471,-0.005748,0.249934,0,0);-ms-transform:matrix(0.237887,0.005471,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.237887,0.005471,-0.005748,0.249934,0,0);}
.m6b_c01168{transform:matrix(0.238341,0.002622,-0.002750,0.249985,0,0);-ms-transform:matrix(0.238341,0.002622,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.238341,0.002622,-0.002750,0.249985,0,0);}
.m134_c01168{transform:matrix(0.238382,0.005483,-0.005748,0.249934,0,0);-ms-transform:matrix(0.238382,0.005483,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.238382,0.005483,-0.005748,0.249934,0,0);}
.maf_c01168{transform:matrix(0.238706,0.002626,-0.002750,0.249985,0,0);-ms-transform:matrix(0.238706,0.002626,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.238706,0.002626,-0.002750,0.249985,0,0);}
.m100_c01168{transform:matrix(0.239062,0.005498,-0.005748,0.249934,0,0);-ms-transform:matrix(0.239062,0.005498,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.239062,0.005498,-0.005748,0.249934,0,0);}
.ma0_c01168{transform:matrix(0.239111,0.002630,-0.002750,0.249985,0,0);-ms-transform:matrix(0.239111,0.002630,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.239111,0.002630,-0.002750,0.249985,0,0);}
.m115_c01168{transform:matrix(0.239167,0.005501,-0.005748,0.249934,0,0);-ms-transform:matrix(0.239167,0.005501,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.239167,0.005501,-0.005748,0.249934,0,0);}
.m132_c01168{transform:matrix(0.239472,0.005508,-0.005748,0.249934,0,0);-ms-transform:matrix(0.239472,0.005508,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.239472,0.005508,-0.005748,0.249934,0,0);}
.m23_c01168{transform:matrix(0.239576,0.002635,-0.002750,0.249985,0,0);-ms-transform:matrix(0.239576,0.002635,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.239576,0.002635,-0.002750,0.249985,0,0);}
.ma6_c01168{transform:matrix(0.239631,0.002636,-0.002750,0.249985,0,0);-ms-transform:matrix(0.239631,0.002636,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.239631,0.002636,-0.002750,0.249985,0,0);}
.m49_c01168{transform:matrix(0.240050,0.002641,-0.002750,0.249985,0,0);-ms-transform:matrix(0.240050,0.002641,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.240050,0.002641,-0.002750,0.249985,0,0);}
.m105_c01168{transform:matrix(0.240052,0.005521,-0.005748,0.249934,0,0);-ms-transform:matrix(0.240052,0.005521,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.240052,0.005521,-0.005748,0.249934,0,0);}
.m108_c01168{transform:matrix(0.240092,0.005522,-0.005748,0.249934,0,0);-ms-transform:matrix(0.240092,0.005522,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.240092,0.005522,-0.005748,0.249934,0,0);}
.m43_c01168{transform:matrix(0.240100,0.002641,-0.002750,0.249985,0,0);-ms-transform:matrix(0.240100,0.002641,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.240100,0.002641,-0.002750,0.249985,0,0);}
.m10c_c01168{transform:matrix(0.240231,0.005525,-0.005748,0.249934,0,0);-ms-transform:matrix(0.240231,0.005525,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.240231,0.005525,-0.005748,0.249934,0,0);}
.m123_c01168{transform:matrix(0.241056,0.005544,-0.005748,0.249934,0,0);-ms-transform:matrix(0.241056,0.005544,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.241056,0.005544,-0.005748,0.249934,0,0);}
.m12_c01168{transform:matrix(0.241305,0.002654,-0.002750,0.249985,0,0);-ms-transform:matrix(0.241305,0.002654,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.241305,0.002654,-0.002750,0.249985,0,0);}
.m127_c01168{transform:matrix(0.241321,0.005550,-0.005748,0.249934,0,0);-ms-transform:matrix(0.241321,0.005550,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.241321,0.005550,-0.005748,0.249934,0,0);}
.md6_c01168{transform:matrix(0.241340,0.002655,-0.002750,0.249985,0,0);-ms-transform:matrix(0.241340,0.002655,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.241340,0.002655,-0.002750,0.249985,0,0);}
.m42_c01168{transform:matrix(0.241765,0.002659,-0.002750,0.249985,0,0);-ms-transform:matrix(0.241765,0.002659,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.241765,0.002659,-0.002750,0.249985,0,0);}
.m8d_c01168{transform:matrix(0.241980,0.002662,-0.002750,0.249985,0,0);-ms-transform:matrix(0.241980,0.002662,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.241980,0.002662,-0.002750,0.249985,0,0);}
.mb9_c01168{transform:matrix(0.242120,0.002663,-0.002750,0.249985,0,0);-ms-transform:matrix(0.242120,0.002663,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.242120,0.002663,-0.002750,0.249985,0,0);}
.m21_c01168{transform:matrix(0.242460,0.002667,-0.002750,0.249985,0,0);-ms-transform:matrix(0.242460,0.002667,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.242460,0.002667,-0.002750,0.249985,0,0);}
.m86_c01168{transform:matrix(0.242580,0.002668,-0.002750,0.249985,0,0);-ms-transform:matrix(0.242580,0.002668,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.242580,0.002668,-0.002750,0.249985,0,0);}
.m85_c01168{transform:matrix(0.242650,0.002669,-0.002750,0.249985,0,0);-ms-transform:matrix(0.242650,0.002669,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.242650,0.002669,-0.002750,0.249985,0,0);}
.ma_c01168{transform:matrix(0.242863,0.002914,-0.003000,0.249982,0,0);-ms-transform:matrix(0.242863,0.002914,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.242863,0.002914,-0.003000,0.249982,0,0);}
.mde_c01168{transform:matrix(0.242990,0.002673,-0.002750,0.249985,0,0);-ms-transform:matrix(0.242990,0.002673,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.242990,0.002673,-0.002750,0.249985,0,0);}
.ma9_c01168{transform:matrix(0.243065,0.002674,-0.002750,0.249985,0,0);-ms-transform:matrix(0.243065,0.002674,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.243065,0.002674,-0.002750,0.249985,0,0);}
.m93_c01168{transform:matrix(0.243480,0.002678,-0.002750,0.249985,0,0);-ms-transform:matrix(0.243480,0.002678,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.243480,0.002678,-0.002750,0.249985,0,0);}
.m99_c01168{transform:matrix(0.244080,0.002685,-0.002750,0.249985,0,0);-ms-transform:matrix(0.244080,0.002685,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.244080,0.002685,-0.002750,0.249985,0,0);}
.m3e_c01168{transform:matrix(0.244300,0.002687,-0.002750,0.249985,0,0);-ms-transform:matrix(0.244300,0.002687,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.244300,0.002687,-0.002750,0.249985,0,0);}
.m63_c01168{transform:matrix(0.244460,0.002689,-0.002750,0.249985,0,0);-ms-transform:matrix(0.244460,0.002689,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.244460,0.002689,-0.002750,0.249985,0,0);}
.me2_c01168{transform:matrix(0.244750,0.002692,-0.002750,0.249985,0,0);-ms-transform:matrix(0.244750,0.002692,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.244750,0.002692,-0.002750,0.249985,0,0);}
.m5_c01168{transform:matrix(0.244842,0.002938,-0.003000,0.249982,0,0);-ms-transform:matrix(0.244842,0.002938,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.244842,0.002938,-0.003000,0.249982,0,0);}
.m133_c01168{transform:matrix(0.244845,0.005631,-0.005748,0.249934,0,0);-ms-transform:matrix(0.244845,0.005631,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.244845,0.005631,-0.005748,0.249934,0,0);}
.m5e_c01168{transform:matrix(0.244855,0.002693,-0.002750,0.249985,0,0);-ms-transform:matrix(0.244855,0.002693,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.244855,0.002693,-0.002750,0.249985,0,0);}
.mea_c01168{transform:matrix(0.245010,0.002695,-0.002750,0.249985,0,0);-ms-transform:matrix(0.245010,0.002695,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.245010,0.002695,-0.002750,0.249985,0,0);}
.mbf_c01168{transform:matrix(0.245420,0.002700,-0.002750,0.249985,0,0);-ms-transform:matrix(0.245420,0.002700,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.245420,0.002700,-0.002750,0.249985,0,0);}
.m84_c01168{transform:matrix(0.245430,0.002700,-0.002750,0.249985,0,0);-ms-transform:matrix(0.245430,0.002700,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.245430,0.002700,-0.002750,0.249985,0,0);}
.m8e_c01168{transform:matrix(0.245505,0.002701,-0.002750,0.249985,0,0);-ms-transform:matrix(0.245505,0.002701,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.245505,0.002701,-0.002750,0.249985,0,0);}
.m12a_c01168{transform:matrix(0.245600,0.005649,-0.005748,0.249934,0,0);-ms-transform:matrix(0.245600,0.005649,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.245600,0.005649,-0.005748,0.249934,0,0);}
.m3a_c01168{transform:matrix(0.245755,0.002703,-0.002750,0.249985,0,0);-ms-transform:matrix(0.245755,0.002703,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.245755,0.002703,-0.002750,0.249985,0,0);}
.mce_c01168{transform:matrix(0.245920,0.002705,-0.002750,0.249985,0,0);-ms-transform:matrix(0.245920,0.002705,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.245920,0.002705,-0.002750,0.249985,0,0);}
.mfb_c01168{transform:matrix(0.245955,0.002706,-0.002750,0.249985,0,0);-ms-transform:matrix(0.245955,0.002706,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.245955,0.002706,-0.002750,0.249985,0,0);}
.m35_c01168{transform:matrix(0.246100,0.002707,-0.002750,0.249985,0,0);-ms-transform:matrix(0.246100,0.002707,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.246100,0.002707,-0.002750,0.249985,0,0);}
.m11_c01168{transform:matrix(0.246220,0.002708,-0.002750,0.249985,0,0);-ms-transform:matrix(0.246220,0.002708,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.246220,0.002708,-0.002750,0.249985,0,0);}
.mdf_c01168{transform:matrix(0.246470,0.002711,-0.002750,0.249985,0,0);-ms-transform:matrix(0.246470,0.002711,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.246470,0.002711,-0.002750,0.249985,0,0);}
.m54_c01168{transform:matrix(0.246605,0.002713,-0.002750,0.249985,0,0);-ms-transform:matrix(0.246605,0.002713,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.246605,0.002713,-0.002750,0.249985,0,0);}
.mc0_c01168{transform:matrix(0.246680,0.002713,-0.002750,0.249985,0,0);-ms-transform:matrix(0.246680,0.002713,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.246680,0.002713,-0.002750,0.249985,0,0);}
.m120_c01168{transform:matrix(0.246870,0.005678,-0.005748,0.249934,0,0);-ms-transform:matrix(0.246870,0.005678,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.246870,0.005678,-0.005748,0.249934,0,0);}
.m1d_c01168{transform:matrix(0.246925,0.002716,-0.002750,0.249985,0,0);-ms-transform:matrix(0.246925,0.002716,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.246925,0.002716,-0.002750,0.249985,0,0);}
.m41_c01168{transform:matrix(0.247140,0.002719,-0.002750,0.249985,0,0);-ms-transform:matrix(0.247140,0.002719,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.247140,0.002719,-0.002750,0.249985,0,0);}
.m114_c01168{transform:matrix(0.247185,0.005685,-0.005748,0.249934,0,0);-ms-transform:matrix(0.247185,0.005685,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.247185,0.005685,-0.005748,0.249934,0,0);}
.mae_c01168{transform:matrix(0.247380,0.002721,-0.002750,0.249985,0,0);-ms-transform:matrix(0.247380,0.002721,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.247380,0.002721,-0.002750,0.249985,0,0);}
.m7d_c01168{transform:matrix(0.247535,0.002723,-0.002750,0.249985,0,0);-ms-transform:matrix(0.247535,0.002723,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.247535,0.002723,-0.002750,0.249985,0,0);}
.m125_c01168{transform:matrix(0.247610,0.005695,-0.005748,0.249934,0,0);-ms-transform:matrix(0.247610,0.005695,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.247610,0.005695,-0.005748,0.249934,0,0);}
.mc7_c01168{transform:matrix(0.247740,0.002725,-0.002750,0.249985,0,0);-ms-transform:matrix(0.247740,0.002725,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.247740,0.002725,-0.002750,0.249985,0,0);}
.m2f_c01168{transform:matrix(0.247895,0.002727,-0.002750,0.249985,0,0);-ms-transform:matrix(0.247895,0.002727,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.247895,0.002727,-0.002750,0.249985,0,0);}
.mf_c01168{transform:matrix(0.248062,0.002977,-0.003000,0.249982,0,0);-ms-transform:matrix(0.248062,0.002977,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.248062,0.002977,-0.003000,0.249982,0,0);}
.m1b_c01168{transform:matrix(0.248120,0.002729,-0.002750,0.249985,0,0);-ms-transform:matrix(0.248120,0.002729,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.248120,0.002729,-0.002750,0.249985,0,0);}
.mc5_c01168{transform:matrix(0.248235,0.002731,-0.002750,0.249985,0,0);-ms-transform:matrix(0.248235,0.002731,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.248235,0.002731,-0.002750,0.249985,0,0);}
.m102_c01168{transform:matrix(0.248594,0.005718,-0.005748,0.249934,0,0);-ms-transform:matrix(0.248594,0.005718,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.248594,0.005718,-0.005748,0.249934,0,0);}
.m70_c01168{transform:matrix(0.248645,0.002735,-0.002750,0.249985,0,0);-ms-transform:matrix(0.248645,0.002735,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.248645,0.002735,-0.002750,0.249985,0,0);}
.m12d_c01168{transform:matrix(0.248909,0.005725,-0.005748,0.249934,0,0);-ms-transform:matrix(0.248909,0.005725,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.248909,0.005725,-0.005748,0.249934,0,0);}
.m82_c01168{transform:matrix(0.249075,0.002740,-0.002750,0.249985,0,0);-ms-transform:matrix(0.249075,0.002740,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.249075,0.002740,-0.002750,0.249985,0,0);}
.m121_c01168{transform:matrix(0.249454,0.005737,-0.005748,0.249934,0,0);-ms-transform:matrix(0.249454,0.005737,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.249454,0.005737,-0.005748,0.249934,0,0);}
.maa_c01168{transform:matrix(0.249465,0.002744,-0.002750,0.249985,0,0);-ms-transform:matrix(0.249465,0.002744,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.249465,0.002744,-0.002750,0.249985,0,0);}
.m31_c01168{transform:matrix(0.249725,0.002747,-0.002750,0.249985,0,0);-ms-transform:matrix(0.249725,0.002747,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.249725,0.002747,-0.002750,0.249985,0,0);}
.m129_c01168{transform:matrix(0.249879,0.005747,-0.005748,0.249934,0,0);-ms-transform:matrix(0.249879,0.005747,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.249879,0.005747,-0.005748,0.249934,0,0);}
.ma5_c01168{transform:matrix(0.250125,0.002751,-0.002750,0.249985,0,0);-ms-transform:matrix(0.250125,0.002751,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.250125,0.002751,-0.002750,0.249985,0,0);}
.mbe_c01168{transform:matrix(0.250180,0.002752,-0.002750,0.249985,0,0);-ms-transform:matrix(0.250180,0.002752,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.250180,0.002752,-0.002750,0.249985,0,0);}
.mb6_c01168{transform:matrix(0.250250,0.002753,-0.002750,0.249985,0,0);-ms-transform:matrix(0.250250,0.002753,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.250250,0.002753,-0.002750,0.249985,0,0);}
.m4_c01168{transform:matrix(0.250407,0.003005,-0.003000,0.249982,0,0);-ms-transform:matrix(0.250407,0.003005,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.250407,0.003005,-0.003000,0.249982,0,0);}
.m12b_c01168{transform:matrix(0.250569,0.005763,-0.005748,0.249934,0,0);-ms-transform:matrix(0.250569,0.005763,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.250569,0.005763,-0.005748,0.249934,0,0);}
.m124_c01168{transform:matrix(0.251354,0.005781,-0.005748,0.249934,0,0);-ms-transform:matrix(0.251354,0.005781,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.251354,0.005781,-0.005748,0.249934,0,0);}
.m130_c01168{transform:matrix(0.251409,0.005782,-0.005748,0.249934,0,0);-ms-transform:matrix(0.251409,0.005782,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.251409,0.005782,-0.005748,0.249934,0,0);}
.meb_c01168{transform:matrix(0.251740,0.002769,-0.002750,0.249985,0,0);-ms-transform:matrix(0.251740,0.002769,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.251740,0.002769,-0.002750,0.249985,0,0);}
.m2e_c01168{transform:matrix(0.251860,0.002770,-0.002750,0.249985,0,0);-ms-transform:matrix(0.251860,0.002770,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.251860,0.002770,-0.002750,0.249985,0,0);}
.m78_c01168{transform:matrix(0.252100,0.002773,-0.002750,0.249985,0,0);-ms-transform:matrix(0.252100,0.002773,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.252100,0.002773,-0.002750,0.249985,0,0);}
.mee_c01168{transform:matrix(0.252470,0.002777,-0.002750,0.249985,0,0);-ms-transform:matrix(0.252470,0.002777,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.252470,0.002777,-0.002750,0.249985,0,0);}
.md9_c01168{transform:matrix(0.253160,0.002785,-0.002750,0.249985,0,0);-ms-transform:matrix(0.253160,0.002785,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.253160,0.002785,-0.002750,0.249985,0,0);}
.mbd_c01168{transform:matrix(0.253335,0.002787,-0.002750,0.249985,0,0);-ms-transform:matrix(0.253335,0.002787,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.253335,0.002787,-0.002750,0.249985,0,0);}
.m6a_c01168{transform:matrix(0.253425,0.002788,-0.002750,0.249985,0,0);-ms-transform:matrix(0.253425,0.002788,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.253425,0.002788,-0.002750,0.249985,0,0);}
.m6e_c01168{transform:matrix(0.253440,0.002788,-0.002750,0.249985,0,0);-ms-transform:matrix(0.253440,0.002788,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.253440,0.002788,-0.002750,0.249985,0,0);}
.m48_c01168{transform:matrix(0.253830,0.002792,-0.002750,0.249985,0,0);-ms-transform:matrix(0.253830,0.002792,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.253830,0.002792,-0.002750,0.249985,0,0);}
.me_c01168{transform:matrix(0.253957,0.003047,-0.003000,0.249982,0,0);-ms-transform:matrix(0.253957,0.003047,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.253957,0.003047,-0.003000,0.249982,0,0);}
.m9a_c01168{transform:matrix(0.254295,0.002797,-0.002750,0.249985,0,0);-ms-transform:matrix(0.254295,0.002797,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.254295,0.002797,-0.002750,0.249985,0,0);}
.m101_c01168{transform:matrix(0.254303,0.005849,-0.005748,0.249934,0,0);-ms-transform:matrix(0.254303,0.005849,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.254303,0.005849,-0.005748,0.249934,0,0);}
.m18_c01168{transform:matrix(0.254445,0.002799,-0.002750,0.249985,0,0);-ms-transform:matrix(0.254445,0.002799,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.254445,0.002799,-0.002750,0.249985,0,0);}
.mf4_c01168{transform:matrix(0.254965,0.002805,-0.002750,0.249985,0,0);-ms-transform:matrix(0.254965,0.002805,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.254965,0.002805,-0.002750,0.249985,0,0);}
.m98_c01168{transform:matrix(0.255195,0.002807,-0.002750,0.249985,0,0);-ms-transform:matrix(0.255195,0.002807,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.255195,0.002807,-0.002750,0.249985,0,0);}
.mc2_c01168{transform:matrix(0.255450,0.002810,-0.002750,0.249985,0,0);-ms-transform:matrix(0.255450,0.002810,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.255450,0.002810,-0.002750,0.249985,0,0);}
.m119_c01168{transform:matrix(0.255677,0.005881,-0.005748,0.249934,0,0);-ms-transform:matrix(0.255677,0.005881,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.255677,0.005881,-0.005748,0.249934,0,0);}
.m92_c01168{transform:matrix(0.256110,0.002817,-0.002750,0.249985,0,0);-ms-transform:matrix(0.256110,0.002817,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.256110,0.002817,-0.002750,0.249985,0,0);}
.mf9_c01168{transform:matrix(0.256175,0.002818,-0.002750,0.249985,0,0);-ms-transform:matrix(0.256175,0.002818,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.256175,0.002818,-0.002750,0.249985,0,0);}
.m4a_c01168{transform:matrix(0.256659,0.002823,-0.002750,0.249985,0,0);-ms-transform:matrix(0.256659,0.002823,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.256659,0.002823,-0.002750,0.249985,0,0);}
.m80_c01168{transform:matrix(0.257324,0.002831,-0.002750,0.249985,0,0);-ms-transform:matrix(0.257324,0.002831,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.257324,0.002831,-0.002750,0.249985,0,0);}
.m51_c01168{transform:matrix(0.257404,0.002831,-0.002750,0.249985,0,0);-ms-transform:matrix(0.257404,0.002831,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.257404,0.002831,-0.002750,0.249985,0,0);}
.m1c_c01168{transform:matrix(0.257634,0.002834,-0.002750,0.249985,0,0);-ms-transform:matrix(0.257634,0.002834,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.257634,0.002834,-0.002750,0.249985,0,0);}
.mf2_c01168{transform:matrix(0.257924,0.002837,-0.002750,0.249985,0,0);-ms-transform:matrix(0.257924,0.002837,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.257924,0.002837,-0.002750,0.249985,0,0);}
.m62_c01168{transform:matrix(0.258169,0.002840,-0.002750,0.249985,0,0);-ms-transform:matrix(0.258169,0.002840,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.258169,0.002840,-0.002750,0.249985,0,0);}
.mb7_c01168{transform:matrix(0.258469,0.002843,-0.002750,0.249985,0,0);-ms-transform:matrix(0.258469,0.002843,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.258469,0.002843,-0.002750,0.249985,0,0);}
.m3f_c01168{transform:matrix(0.258589,0.002844,-0.002750,0.249985,0,0);-ms-transform:matrix(0.258589,0.002844,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.258589,0.002844,-0.002750,0.249985,0,0);}
.m9f_c01168{transform:matrix(0.258599,0.002845,-0.002750,0.249985,0,0);-ms-transform:matrix(0.258599,0.002845,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.258599,0.002845,-0.002750,0.249985,0,0);}
.m112_c01168{transform:matrix(0.258922,0.005955,-0.005748,0.249934,0,0);-ms-transform:matrix(0.258922,0.005955,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.258922,0.005955,-0.005748,0.249934,0,0);}
.m3c_c01168{transform:matrix(0.259194,0.002851,-0.002750,0.249985,0,0);-ms-transform:matrix(0.259194,0.002851,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.259194,0.002851,-0.002750,0.249985,0,0);}
.m122_c01168{transform:matrix(0.259221,0.005962,-0.005748,0.249934,0,0);-ms-transform:matrix(0.259221,0.005962,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.259221,0.005962,-0.005748,0.249934,0,0);}
.m57_c01168{transform:matrix(0.259394,0.002853,-0.002750,0.249985,0,0);-ms-transform:matrix(0.259394,0.002853,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.259394,0.002853,-0.002750,0.249985,0,0);}
.m76_c01168{transform:matrix(0.259604,0.002856,-0.002750,0.249985,0,0);-ms-transform:matrix(0.259604,0.002856,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.259604,0.002856,-0.002750,0.249985,0,0);}
.mdb_c01168{transform:matrix(0.259704,0.002857,-0.002750,0.249985,0,0);-ms-transform:matrix(0.259704,0.002857,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.259704,0.002857,-0.002750,0.249985,0,0);}
.m3d_c01168{transform:matrix(0.259884,0.002859,-0.002750,0.249985,0,0);-ms-transform:matrix(0.259884,0.002859,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.259884,0.002859,-0.002750,0.249985,0,0);}
.m95_c01168{transform:matrix(0.260009,0.002860,-0.002750,0.249985,0,0);-ms-transform:matrix(0.260009,0.002860,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.260009,0.002860,-0.002750,0.249985,0,0);}
.m5f_c01168{transform:matrix(0.260104,0.002861,-0.002750,0.249985,0,0);-ms-transform:matrix(0.260104,0.002861,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.260104,0.002861,-0.002750,0.249985,0,0);}
.m24_c01168{transform:matrix(0.260189,0.002862,-0.002750,0.249985,0,0);-ms-transform:matrix(0.260189,0.002862,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.260189,0.002862,-0.002750,0.249985,0,0);}
.m72_c01168{transform:matrix(0.261114,0.002872,-0.002750,0.249985,0,0);-ms-transform:matrix(0.261114,0.002872,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.261114,0.002872,-0.002750,0.249985,0,0);}
.m10f_c01168{transform:matrix(0.261141,0.006006,-0.005748,0.249934,0,0);-ms-transform:matrix(0.261141,0.006006,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.261141,0.006006,-0.005748,0.249934,0,0);}
.m9_c01168{transform:matrix(0.261416,0.003137,-0.003000,0.249982,0,0);-ms-transform:matrix(0.261416,0.003137,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.261416,0.003137,-0.003000,0.249982,0,0);}
.med_c01168{transform:matrix(0.261469,0.002876,-0.002750,0.249985,0,0);-ms-transform:matrix(0.261469,0.002876,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.261469,0.002876,-0.002750,0.249985,0,0);}
.mb3_c01168{transform:matrix(0.261604,0.002878,-0.002750,0.249985,0,0);-ms-transform:matrix(0.261604,0.002878,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.261604,0.002878,-0.002750,0.249985,0,0);}
.m14_c01168{transform:matrix(0.261829,0.002880,-0.002750,0.249985,0,0);-ms-transform:matrix(0.261829,0.002880,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.261829,0.002880,-0.002750,0.249985,0,0);}
.m96_c01168{transform:matrix(0.262239,0.002885,-0.002750,0.249985,0,0);-ms-transform:matrix(0.262239,0.002885,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.262239,0.002885,-0.002750,0.249985,0,0);}
.m9e_c01168{transform:matrix(0.262349,0.002886,-0.002750,0.249985,0,0);-ms-transform:matrix(0.262349,0.002886,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.262349,0.002886,-0.002750,0.249985,0,0);}
.m8b_c01168{transform:matrix(0.262549,0.002888,-0.002750,0.249985,0,0);-ms-transform:matrix(0.262549,0.002888,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.262549,0.002888,-0.002750,0.249985,0,0);}
.m4e_c01168{transform:matrix(0.262799,0.002891,-0.002750,0.249985,0,0);-ms-transform:matrix(0.262799,0.002891,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.262799,0.002891,-0.002750,0.249985,0,0);}
.m10a_c01168{transform:matrix(0.263270,0.006055,-0.005748,0.249934,0,0);-ms-transform:matrix(0.263270,0.006055,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.263270,0.006055,-0.005748,0.249934,0,0);}
.m69_c01168{transform:matrix(0.263339,0.002897,-0.002750,0.249985,0,0);-ms-transform:matrix(0.263339,0.002897,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.263339,0.002897,-0.002750,0.249985,0,0);}
.mc8_c01168{transform:matrix(0.263554,0.002899,-0.002750,0.249985,0,0);-ms-transform:matrix(0.263554,0.002899,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.263554,0.002899,-0.002750,0.249985,0,0);}
.m47_c01168{transform:matrix(0.263674,0.002900,-0.002750,0.249985,0,0);-ms-transform:matrix(0.263674,0.002900,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.263674,0.002900,-0.002750,0.249985,0,0);}
.m6_c01168{transform:matrix(0.264041,0.003168,-0.003000,0.249982,0,0);-ms-transform:matrix(0.264041,0.003168,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.264041,0.003168,-0.003000,0.249982,0,0);}
.m11c_c01168{transform:matrix(0.264180,0.006076,-0.005748,0.249934,0,0);-ms-transform:matrix(0.264180,0.006076,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.264180,0.006076,-0.005748,0.249934,0,0);}
.m5c_c01168{transform:matrix(0.264394,0.002908,-0.002750,0.249985,0,0);-ms-transform:matrix(0.264394,0.002908,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.264394,0.002908,-0.002750,0.249985,0,0);}
.m27_c01168{transform:matrix(0.264684,0.002912,-0.002750,0.249985,0,0);-ms-transform:matrix(0.264684,0.002912,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.264684,0.002912,-0.002750,0.249985,0,0);}
.m71_c01168{transform:matrix(0.264959,0.002915,-0.002750,0.249985,0,0);-ms-transform:matrix(0.264959,0.002915,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.264959,0.002915,-0.002750,0.249985,0,0);}
.mcb_c01168{transform:matrix(0.265214,0.002917,-0.002750,0.249985,0,0);-ms-transform:matrix(0.265214,0.002917,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.265214,0.002917,-0.002750,0.249985,0,0);}
.m110_c01168{transform:matrix(0.266065,0.006119,-0.005748,0.249934,0,0);-ms-transform:matrix(0.266065,0.006119,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.266065,0.006119,-0.005748,0.249934,0,0);}
.ma2_c01168{transform:matrix(0.266494,0.002931,-0.002750,0.249985,0,0);-ms-transform:matrix(0.266494,0.002931,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.266494,0.002931,-0.002750,0.249985,0,0);}
.mcf_c01168{transform:matrix(0.266579,0.002932,-0.002750,0.249985,0,0);-ms-transform:matrix(0.266579,0.002932,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.266579,0.002932,-0.002750,0.249985,0,0);}
.m77_c01168{transform:matrix(0.266684,0.002934,-0.002750,0.249985,0,0);-ms-transform:matrix(0.266684,0.002934,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.266684,0.002934,-0.002750,0.249985,0,0);}
.m75_c01168{transform:matrix(0.267039,0.002937,-0.002750,0.249985,0,0);-ms-transform:matrix(0.267039,0.002937,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.267039,0.002937,-0.002750,0.249985,0,0);}
.m109_c01168{transform:matrix(0.267264,0.006147,-0.005748,0.249934,0,0);-ms-transform:matrix(0.267264,0.006147,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.267264,0.006147,-0.005748,0.249934,0,0);}
.mf0_c01168{transform:matrix(0.267284,0.002940,-0.002750,0.249985,0,0);-ms-transform:matrix(0.267284,0.002940,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.267284,0.002940,-0.002750,0.249985,0,0);}
.m97_c01168{transform:matrix(0.267419,0.002942,-0.002750,0.249985,0,0);-ms-transform:matrix(0.267419,0.002942,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.267419,0.002942,-0.002750,0.249985,0,0);}
.m1e_c01168{transform:matrix(0.267499,0.002942,-0.002750,0.249985,0,0);-ms-transform:matrix(0.267499,0.002942,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.267499,0.002942,-0.002750,0.249985,0,0);}
.m113_c01168{transform:matrix(0.267649,0.006156,-0.005748,0.249934,0,0);-ms-transform:matrix(0.267649,0.006156,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.267649,0.006156,-0.005748,0.249934,0,0);}
.m111_c01168{transform:matrix(0.268394,0.006173,-0.005748,0.249934,0,0);-ms-transform:matrix(0.268394,0.006173,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.268394,0.006173,-0.005748,0.249934,0,0);}
.m61_c01168{transform:matrix(0.268464,0.002953,-0.002750,0.249985,0,0);-ms-transform:matrix(0.268464,0.002953,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.268464,0.002953,-0.002750,0.249985,0,0);}
.me9_c01168{transform:matrix(0.268524,0.002954,-0.002750,0.249985,0,0);-ms-transform:matrix(0.268524,0.002954,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.268524,0.002954,-0.002750,0.249985,0,0);}
.mec_c01168{transform:matrix(0.269419,0.002964,-0.002750,0.249985,0,0);-ms-transform:matrix(0.269419,0.002964,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.269419,0.002964,-0.002750,0.249985,0,0);}
.mc_c01168{transform:matrix(0.269676,0.003236,-0.003000,0.249982,0,0);-ms-transform:matrix(0.269676,0.003236,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.269676,0.003236,-0.003000,0.249982,0,0);}
.m106_c01168{transform:matrix(0.269704,0.006203,-0.005748,0.249934,0,0);-ms-transform:matrix(0.269704,0.006203,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.269704,0.006203,-0.005748,0.249934,0,0);}
.m7e_c01168{transform:matrix(0.269989,0.002970,-0.002750,0.249985,0,0);-ms-transform:matrix(0.269989,0.002970,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.269989,0.002970,-0.002750,0.249985,0,0);}
.m52_c01168{transform:matrix(0.269994,0.002970,-0.002750,0.249985,0,0);-ms-transform:matrix(0.269994,0.002970,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.269994,0.002970,-0.002750,0.249985,0,0);}
.m10b_c01168{transform:matrix(0.270204,0.006215,-0.005748,0.249934,0,0);-ms-transform:matrix(0.270204,0.006215,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.270204,0.006215,-0.005748,0.249934,0,0);}
.m103_c01168{transform:matrix(0.270244,0.006216,-0.005748,0.249934,0,0);-ms-transform:matrix(0.270244,0.006216,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.270244,0.006216,-0.005748,0.249934,0,0);}
.m25_c01168{transform:matrix(0.270889,0.002980,-0.002750,0.249985,0,0);-ms-transform:matrix(0.270889,0.002980,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.270889,0.002980,-0.002750,0.249985,0,0);}
.m13_c01168{transform:matrix(0.271109,0.002982,-0.002750,0.249985,0,0);-ms-transform:matrix(0.271109,0.002982,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.271109,0.002982,-0.002750,0.249985,0,0);}
.m10_c01168{transform:matrix(0.271220,0.003255,-0.003000,0.249982,0,0);-ms-transform:matrix(0.271220,0.003255,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.271220,0.003255,-0.003000,0.249982,0,0);}
.m7_c01168{transform:matrix(0.271230,0.003255,-0.003000,0.249982,0,0);-ms-transform:matrix(0.271230,0.003255,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.271230,0.003255,-0.003000,0.249982,0,0);}
.mf8_c01168{transform:matrix(0.271864,0.002990,-0.002750,0.249985,0,0);-ms-transform:matrix(0.271864,0.002990,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.271864,0.002990,-0.002750,0.249985,0,0);}
.m7a_c01168{transform:matrix(0.271869,0.002991,-0.002750,0.249985,0,0);-ms-transform:matrix(0.271869,0.002991,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.271869,0.002991,-0.002750,0.249985,0,0);}
.mcd_c01168{transform:matrix(0.271924,0.002991,-0.002750,0.249985,0,0);-ms-transform:matrix(0.271924,0.002991,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.271924,0.002991,-0.002750,0.249985,0,0);}
.m74_c01168{transform:matrix(0.272064,0.002993,-0.002750,0.249985,0,0);-ms-transform:matrix(0.272064,0.002993,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.272064,0.002993,-0.002750,0.249985,0,0);}
.mf7_c01168{transform:matrix(0.272304,0.002995,-0.002750,0.249985,0,0);-ms-transform:matrix(0.272304,0.002995,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.272304,0.002995,-0.002750,0.249985,0,0);}
.m55_c01168{transform:matrix(0.272689,0.003000,-0.002750,0.249985,0,0);-ms-transform:matrix(0.272689,0.003000,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.272689,0.003000,-0.002750,0.249985,0,0);}
.m40_c01168{transform:matrix(0.272783,0.003001,-0.002750,0.249985,0,0);-ms-transform:matrix(0.272783,0.003001,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.272783,0.003001,-0.002750,0.249985,0,0);}
.m107_c01168{transform:matrix(0.272813,0.006275,-0.005748,0.249934,0,0);-ms-transform:matrix(0.272813,0.006275,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.272813,0.006275,-0.005748,0.249934,0,0);}
.m10d_c01168{transform:matrix(0.272898,0.006277,-0.005748,0.249934,0,0);-ms-transform:matrix(0.272898,0.006277,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.272898,0.006277,-0.005748,0.249934,0,0);}
.mfe_c01168{transform:matrix(0.273023,0.003003,-0.002750,0.249985,0,0);-ms-transform:matrix(0.273023,0.003003,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.273023,0.003003,-0.002750,0.249985,0,0);}
.md_c01168{transform:matrix(0.273195,0.003278,-0.003000,0.249982,0,0);-ms-transform:matrix(0.273195,0.003278,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.273195,0.003278,-0.003000,0.249982,0,0);}
.m117_c01168{transform:matrix(0.273423,0.006289,-0.005748,0.249934,0,0);-ms-transform:matrix(0.273423,0.006289,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.273423,0.006289,-0.005748,0.249934,0,0);}
.m20_c01168{transform:matrix(0.273973,0.003014,-0.002750,0.249985,0,0);-ms-transform:matrix(0.273973,0.003014,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.273973,0.003014,-0.002750,0.249985,0,0);}
.m50_c01168{transform:matrix(0.274623,0.003021,-0.002750,0.249985,0,0);-ms-transform:matrix(0.274623,0.003021,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.274623,0.003021,-0.002750,0.249985,0,0);}
.m60_c01168{transform:matrix(0.274713,0.003022,-0.002750,0.249985,0,0);-ms-transform:matrix(0.274713,0.003022,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.274713,0.003022,-0.002750,0.249985,0,0);}
.m28_c01168{transform:matrix(0.275183,0.003027,-0.002750,0.249985,0,0);-ms-transform:matrix(0.275183,0.003027,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.275183,0.003027,-0.002750,0.249985,0,0);}
.m17_c01168{transform:matrix(0.275778,0.003034,-0.002750,0.249985,0,0);-ms-transform:matrix(0.275778,0.003034,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.275778,0.003034,-0.002750,0.249985,0,0);}
.m7c_c01168{transform:matrix(0.275858,0.003034,-0.002750,0.249985,0,0);-ms-transform:matrix(0.275858,0.003034,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.275858,0.003034,-0.002750,0.249985,0,0);}
.m29_c01168{transform:matrix(0.275883,0.003035,-0.002750,0.249985,0,0);-ms-transform:matrix(0.275883,0.003035,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.275883,0.003035,-0.002750,0.249985,0,0);}
.m90_c01168{transform:matrix(0.276173,0.003038,-0.002750,0.249985,0,0);-ms-transform:matrix(0.276173,0.003038,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.276173,0.003038,-0.002750,0.249985,0,0);}
.me8_c01168{transform:matrix(0.276313,0.003039,-0.002750,0.249985,0,0);-ms-transform:matrix(0.276313,0.003039,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.276313,0.003039,-0.002750,0.249985,0,0);}
.me7_c01168{transform:matrix(0.276883,0.003046,-0.002750,0.249985,0,0);-ms-transform:matrix(0.276883,0.003046,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.276883,0.003046,-0.002750,0.249985,0,0);}
.m9d_c01168{transform:matrix(0.277493,0.003052,-0.002750,0.249985,0,0);-ms-transform:matrix(0.277493,0.003052,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.277493,0.003052,-0.002750,0.249985,0,0);}
.m94_c01168{transform:matrix(0.277908,0.003057,-0.002750,0.249985,0,0);-ms-transform:matrix(0.277908,0.003057,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.277908,0.003057,-0.002750,0.249985,0,0);}
.m5a_c01168{transform:matrix(0.278033,0.003058,-0.002750,0.249985,0,0);-ms-transform:matrix(0.278033,0.003058,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.278033,0.003058,-0.002750,0.249985,0,0);}
.m66_c01168{transform:matrix(0.279328,0.003073,-0.002750,0.249985,0,0);-ms-transform:matrix(0.279328,0.003073,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.279328,0.003073,-0.002750,0.249985,0,0);}
.mf6_c01168{transform:matrix(0.279583,0.003075,-0.002750,0.249985,0,0);-ms-transform:matrix(0.279583,0.003075,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.279583,0.003075,-0.002750,0.249985,0,0);}
.m4c_c01168{transform:matrix(0.280113,0.003081,-0.002750,0.249985,0,0);-ms-transform:matrix(0.280113,0.003081,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.280113,0.003081,-0.002750,0.249985,0,0);}
.m79_c01168{transform:matrix(0.280148,0.003082,-0.002750,0.249985,0,0);-ms-transform:matrix(0.280148,0.003082,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.280148,0.003082,-0.002750,0.249985,0,0);}
.me5_c01168{transform:matrix(0.280323,0.003084,-0.002750,0.249985,0,0);-ms-transform:matrix(0.280323,0.003084,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.280323,0.003084,-0.002750,0.249985,0,0);}
.m6f_c01168{transform:matrix(0.280768,0.003088,-0.002750,0.249985,0,0);-ms-transform:matrix(0.280768,0.003088,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.280768,0.003088,-0.002750,0.249985,0,0);}
.m65_c01168{transform:matrix(0.281413,0.003096,-0.002750,0.249985,0,0);-ms-transform:matrix(0.281413,0.003096,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.281413,0.003096,-0.002750,0.249985,0,0);}
.m11d_c01168{transform:matrix(0.282715,0.006502,-0.005748,0.249934,0,0);-ms-transform:matrix(0.282715,0.006502,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.282715,0.006502,-0.005748,0.249934,0,0);}
.m104_c01168{transform:matrix(0.283580,0.006522,-0.005748,0.249934,0,0);-ms-transform:matrix(0.283580,0.006522,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.283580,0.006522,-0.005748,0.249934,0,0);}
.mca_c01168{transform:matrix(0.283953,0.003123,-0.002750,0.249985,0,0);-ms-transform:matrix(0.283953,0.003123,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.283953,0.003123,-0.002750,0.249985,0,0);}
.m44_c01168{transform:matrix(0.284318,0.003127,-0.002750,0.249985,0,0);-ms-transform:matrix(0.284318,0.003127,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.284318,0.003127,-0.002750,0.249985,0,0);}
.m4d_c01168{transform:matrix(0.284718,0.003132,-0.002750,0.249985,0,0);-ms-transform:matrix(0.284718,0.003132,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.284718,0.003132,-0.002750,0.249985,0,0);}
.m68_c01168{transform:matrix(0.284723,0.003132,-0.002750,0.249985,0,0);-ms-transform:matrix(0.284723,0.003132,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.284723,0.003132,-0.002750,0.249985,0,0);}
.m22_c01168{transform:matrix(0.285503,0.003141,-0.002750,0.249985,0,0);-ms-transform:matrix(0.285503,0.003141,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.285503,0.003141,-0.002750,0.249985,0,0);}
.m2_c01168{transform:matrix(0.286820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286820,0.000000,0.000000,0.250000,0,0);}
.m5d_c01168{transform:matrix(0.287448,0.003162,-0.002750,0.249985,0,0);-ms-transform:matrix(0.287448,0.003162,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.287448,0.003162,-0.002750,0.249985,0,0);}
.m45_c01168{transform:matrix(0.287863,0.003166,-0.002750,0.249985,0,0);-ms-transform:matrix(0.287863,0.003166,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.287863,0.003166,-0.002750,0.249985,0,0);}
.mfd_c01168{transform:matrix(0.288133,0.003169,-0.002750,0.249985,0,0);-ms-transform:matrix(0.288133,0.003169,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.288133,0.003169,-0.002750,0.249985,0,0);}
.m59_c01168{transform:matrix(0.288248,0.003171,-0.002750,0.249985,0,0);-ms-transform:matrix(0.288248,0.003171,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.288248,0.003171,-0.002750,0.249985,0,0);}
.mef_c01168{transform:matrix(0.291827,0.003210,-0.002750,0.249985,0,0);-ms-transform:matrix(0.291827,0.003210,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.291827,0.003210,-0.002750,0.249985,0,0);}
.m56_c01168{transform:matrix(0.292732,0.003220,-0.002750,0.249985,0,0);-ms-transform:matrix(0.292732,0.003220,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.292732,0.003220,-0.002750,0.249985,0,0);}
.m3_c01168{transform:matrix(0.292850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292850,0.000000,0.000000,0.250000,0,0);}
.mf5_c01168{transform:matrix(0.297432,0.003272,-0.002750,0.249985,0,0);-ms-transform:matrix(0.297432,0.003272,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.297432,0.003272,-0.002750,0.249985,0,0);}
.m58_c01168{transform:matrix(0.297692,0.003275,-0.002750,0.249985,0,0);-ms-transform:matrix(0.297692,0.003275,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.297692,0.003275,-0.002750,0.249985,0,0);}
.m5b_c01168{transform:matrix(0.299487,0.003294,-0.002750,0.249985,0,0);-ms-transform:matrix(0.299487,0.003294,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.299487,0.003294,-0.002750,0.249985,0,0);}
.mff_c01168{transform:matrix(0.301762,0.003319,-0.002750,0.249985,0,0);-ms-transform:matrix(0.301762,0.003319,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.301762,0.003319,-0.002750,0.249985,0,0);}
.m53_c01168{transform:matrix(0.305727,0.003363,-0.002750,0.249985,0,0);-ms-transform:matrix(0.305727,0.003363,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.305727,0.003363,-0.002750,0.249985,0,0);}
.mf1_c01168{transform:matrix(0.312861,0.003441,-0.002750,0.249985,0,0);-ms-transform:matrix(0.312861,0.003441,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.312861,0.003441,-0.002750,0.249985,0,0);}
.mb8_c01168{transform:matrix(0.319111,0.003510,-0.002750,0.249985,0,0);-ms-transform:matrix(0.319111,0.003510,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.319111,0.003510,-0.002750,0.249985,0,0);}
.m2c_c01168{transform:matrix(0.338150,0.003720,-0.002750,0.249985,0,0);-ms-transform:matrix(0.338150,0.003720,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.338150,0.003720,-0.002750,0.249985,0,0);}
.m2b_c01168{transform:matrix(0.354344,0.003898,-0.002750,0.249985,0,0);-ms-transform:matrix(0.354344,0.003898,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.354344,0.003898,-0.002750,0.249985,0,0);}
.mfc_c01168{transform:matrix(0.364363,0.004008,-0.002750,0.249985,0,0);-ms-transform:matrix(0.364363,0.004008,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.364363,0.004008,-0.002750,0.249985,0,0);}
.mf3_c01168{transform:matrix(0.376087,0.004137,-0.002750,0.249985,0,0);-ms-transform:matrix(0.376087,0.004137,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.376087,0.004137,-0.002750,0.249985,0,0);}
.v0_c01168{vertical-align:0.000000px;}
.ls0_c01168{letter-spacing:0.000000px;}
.sc__c01168{text-shadow:none;}
.sc0_c01168{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__c01168{-webkit-text-stroke:0px transparent;}
.sc0_c01168{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01168{word-spacing:0.000000px;}
.fc0_c01168{color:transparent;}
.fs1_c01168{font-size:66.000000px;}
.fs5_c01168{font-size:66.003993px;}
.fs3_c01168{font-size:72.004356px;}
.fs2_c01168{font-size:72.005184px;}
.fs7_c01168{font-size:72.019041px;}
.fs0_c01168{font-size:78.000000px;}
.fs4_c01168{font-size:78.004719px;}
.fs8_c01168{font-size:78.020628px;}
.fs6_c01168{font-size:84.005082px;}
.y0_c01168{bottom:0.000000px;}
.y13f_c01168{bottom:37.395388px;}
.y13e_c01168{bottom:37.923250px;}
.y13d_c01168{bottom:39.619464px;}
.y13c_c01168{bottom:40.648398px;}
.y13b_c01168{bottom:41.819647px;}
.y13a_c01168{bottom:43.774824px;}
.y139_c01168{bottom:44.772862px;}
.y138_c01168{bottom:45.483924px;}
.y137_c01168{bottom:47.415640px;}
.y136_c01168{bottom:47.919783px;}
.y135_c01168{bottom:49.850947px;}
.y134_c01168{bottom:51.536431px;}
.y133_c01168{bottom:72.668289px;}
.y132_c01168{bottom:73.307952px;}
.y131_c01168{bottom:74.231106px;}
.y130_c01168{bottom:74.715037px;}
.y12f_c01168{bottom:75.955194px;}
.y12e_c01168{bottom:77.327113px;}
.y12d_c01168{bottom:77.655469px;}
.y12c_c01168{bottom:79.497826px;}
.y12b_c01168{bottom:80.590171px;}
.y12a_c01168{bottom:81.512083px;}
.y129_c01168{bottom:107.278659px;}
.y128_c01168{bottom:107.626626px;}
.y127_c01168{bottom:109.919082px;}
.y126_c01168{bottom:111.430147px;}
.y125_c01168{bottom:112.200429px;}
.y124_c01168{bottom:112.970710px;}
.y123_c01168{bottom:114.496818px;}
.y122_c01168{bottom:115.248331px;}
.y121_c01168{bottom:118.031515px;}
.y120_c01168{bottom:119.056165px;}
.y11f_c01168{bottom:119.834071px;}
.y11e_c01168{bottom:121.322367px;}
.y11d_c01168{bottom:123.104602px;}
.y11c_c01168{bottom:144.168988px;}
.y11b_c01168{bottom:145.426530px;}
.y11a_c01168{bottom:146.683968px;}
.y119_c01168{bottom:147.030199px;}
.y118_c01168{bottom:147.733377px;}
.y117_c01168{bottom:149.346225px;}
.y116_c01168{bottom:150.038187px;}
.y115_c01168{bottom:150.396754px;}
.y114_c01168{bottom:151.798381px;}
.y113_c01168{bottom:153.021432px;}
.y112_c01168{bottom:154.433308px;}
.y111_c01168{bottom:180.296278px;}
.y110_c01168{bottom:182.105631px;}
.y10f_c01168{bottom:184.131850px;}
.y10e_c01168{bottom:184.670257px;}
.y10d_c01168{bottom:187.727785px;}
.y10c_c01168{bottom:189.516507px;}
.y10b_c01168{bottom:190.522837px;}
.y10a_c01168{bottom:192.006786px;}
.y109_c01168{bottom:193.056000px;}
.y108_c01168{bottom:220.378876px;}
.y107_c01168{bottom:220.747618px;}
.y106_c01168{bottom:221.721943px;}
.y105_c01168{bottom:222.075934px;}
.y104_c01168{bottom:223.287265px;}
.y103_c01168{bottom:223.783453px;}
.y102_c01168{bottom:224.145777px;}
.y101_c01168{bottom:224.760534px;}
.y100_c01168{bottom:225.951405px;}
.yff_c01168{bottom:253.253140px;}
.yfe_c01168{bottom:253.884823px;}
.yfd_c01168{bottom:255.109884px;}
.yfc_c01168{bottom:255.593626px;}
.yfb_c01168{bottom:257.448357px;}
.yfa_c01168{bottom:257.918440px;}
.yf9_c01168{bottom:260.073505px;}
.yf8_c01168{bottom:260.694333px;}
.yf7_c01168{bottom:262.050837px;}
.yf6_c01168{bottom:262.674123px;}
.yf5_c01168{bottom:289.982289px;}
.yf4_c01168{bottom:290.606566px;}
.yf3_c01168{bottom:291.812601px;}
.yf2_c01168{bottom:292.302750px;}
.yf1_c01168{bottom:292.665040px;}
.yf0_c01168{bottom:293.291842px;}
.yef_c01168{bottom:294.375958px;}
.yee_c01168{bottom:295.347313px;}
.yed_c01168{bottom:295.709703px;}
.yec_c01168{bottom:297.237372px;}
.yeb_c01168{bottom:324.532153px;}
.yea_c01168{bottom:325.322965px;}
.ye9_c01168{bottom:326.012856px;}
.ye8_c01168{bottom:327.314961px;}
.ye7_c01168{bottom:327.592435px;}
.ye6_c01168{bottom:328.636518px;}
.ye5_c01168{bottom:329.578755px;}
.ye4_c01168{bottom:330.106431px;}
.ye3_c01168{bottom:330.490948px;}
.ye2_c01168{bottom:332.334109px;}
.ye1_c01168{bottom:358.676557px;}
.ye0_c01168{bottom:360.649954px;}
.ydf_c01168{bottom:361.325424px;}
.yde_c01168{bottom:361.889722px;}
.ydd_c01168{bottom:363.960385px;}
.ydc_c01168{bottom:365.456605px;}
.ydb_c01168{bottom:366.208806px;}
.yda_c01168{bottom:367.705719px;}
.yd9_c01168{bottom:368.458117px;}
.yd8_c01168{bottom:369.186121px;}
.yd7_c01168{bottom:370.135065px;}
.yd6_c01168{bottom:397.425844px;}
.yd5_c01168{bottom:398.315161px;}
.yd4_c01168{bottom:399.024951px;}
.yd3_c01168{bottom:399.321439px;}
.yd2_c01168{bottom:399.620683px;}
.yd1_c01168{bottom:400.125943px;}
.yd0_c01168{bottom:401.504049px;}
.ycf_c01168{bottom:401.807964px;}
.yce_c01168{bottom:402.493641px;}
.ycd_c01168{bottom:402.695002px;}
.ycc_c01168{bottom:403.075743px;}
.ycb_c01168{bottom:429.583656px;}
.yca_c01168{bottom:430.420563px;}
.yc9_c01168{bottom:431.071659px;}
.yc8_c01168{bottom:432.960460px;}
.yc7_c01168{bottom:433.390929px;}
.yc6_c01168{bottom:434.648821px;}
.yc5_c01168{bottom:435.899853px;}
.yc4_c01168{bottom:437.371792px;}
.yc3_c01168{bottom:439.444755px;}
.yc2_c01168{bottom:440.296341px;}
.yc1_c01168{bottom:441.120120px;}
.yc0_c01168{bottom:441.961381px;}
.ybf_c01168{bottom:468.529456px;}
.ybe_c01168{bottom:469.162710px;}
.ybd_c01168{bottom:470.371846px;}
.ybc_c01168{bottom:471.723213px;}
.ybb_c01168{bottom:472.801356px;}
.yba_c01168{bottom:473.419182px;}
.yb9_c01168{bottom:473.787280px;}
.yb8_c01168{bottom:474.530193px;}
.yb7_c01168{bottom:474.859384px;}
.yb6_c01168{bottom:475.237201px;}
.yb5_c01168{bottom:475.711593px;}
.yb4_c01168{bottom:502.603500px;}
.yb3_c01168{bottom:503.344929px;}
.yb2_c01168{bottom:504.196924px;}
.yb1_c01168{bottom:504.636252px;}
.yb0_c01168{bottom:505.072081px;}
.yaf_c01168{bottom:506.076051px;}
.yae_c01168{bottom:507.079938px;}
.yad_c01168{bottom:507.652663px;}
.yac_c01168{bottom:508.091380px;}
.yab_c01168{bottom:508.930376px;}
.yaa_c01168{bottom:510.221237px;}
.ya9_c01168{bottom:510.656984px;}
.ya8_c01168{bottom:511.084598px;}
.ya7_c01168{bottom:541.596140px;}
.ya6_c01168{bottom:541.900005px;}
.ya5_c01168{bottom:542.303223px;}
.ya4_c01168{bottom:542.813006px;}
.ya3_c01168{bottom:543.315675px;}
.ya2_c01168{bottom:544.397374px;}
.ya1_c01168{bottom:544.800130px;}
.ya0_c01168{bottom:545.101273px;}
.y9f_c01168{bottom:545.594386px;}
.y9e_c01168{bottom:545.894142px;}
.y9d_c01168{bottom:546.384203px;}
.y9c_c01168{bottom:547.264590px;}
.y9b_c01168{bottom:574.357887px;}
.y9a_c01168{bottom:575.129460px;}
.y99_c01168{bottom:576.690983px;}
.y98_c01168{bottom:577.307126px;}
.y97_c01168{bottom:577.778843px;}
.y96_c01168{bottom:578.553764px;}
.y95_c01168{bottom:579.022461px;}
.y94_c01168{bottom:580.407125px;}
.y93_c01168{bottom:580.705809px;}
.y92_c01168{bottom:581.341253px;}
.y91_c01168{bottom:581.795697px;}
.y90_c01168{bottom:582.264395px;}
.y8f_c01168{bottom:583.179437px;}
.y8e_c01168{bottom:613.006631px;}
.y8d_c01168{bottom:613.325874px;}
.y8c_c01168{bottom:613.635806px;}
.y8b_c01168{bottom:614.028648px;}
.y8a_c01168{bottom:614.423192px;}
.y89_c01168{bottom:614.960688px;}
.y88_c01168{bottom:615.567575px;}
.y87_c01168{bottom:615.884837px;}
.y86_c01168{bottom:616.434453px;}
.y85_c01168{bottom:616.661836px;}
.y84_c01168{bottom:617.506426px;}
.y83_c01168{bottom:617.738104px;}
.y82_c01168{bottom:647.621920px;}
.y81_c01168{bottom:647.951294px;}
.y80_c01168{bottom:648.837135px;}
.y7f_c01168{bottom:649.160255px;}
.y7e_c01168{bottom:649.608390px;}
.y7d_c01168{bottom:650.161658px;}
.y7c_c01168{bottom:650.728704px;}
.y7b_c01168{bottom:651.716526px;}
.y7a_c01168{bottom:652.161939px;}
.y79_c01168{bottom:653.474909px;}
.y78_c01168{bottom:653.919843px;}
.y77_c01168{bottom:680.692687px;}
.y76_c01168{bottom:681.436459px;}
.y75_c01168{bottom:682.174836px;}
.y74_c01168{bottom:683.449462px;}
.y73_c01168{bottom:684.011316px;}
.y72_c01168{bottom:684.306308px;}
.y71_c01168{bottom:685.180227px;}
.y70_c01168{bottom:685.748911px;}
.y6f_c01168{bottom:687.468277px;}
.y6e_c01168{bottom:688.306860px;}
.y6d_c01168{bottom:688.753017px;}
.y6c_c01168{bottom:717.227829px;}
.y6b_c01168{bottom:717.665601px;}
.y6a_c01168{bottom:718.229446px;}
.y69_c01168{bottom:718.796642px;}
.y68_c01168{bottom:720.338045px;}
.y67_c01168{bottom:720.670338px;}
.y66_c01168{bottom:721.878093px;}
.y65_c01168{bottom:723.195536px;}
.y64_c01168{bottom:723.854084px;}
.y63_c01168{bottom:751.643977px;}
.y62_c01168{bottom:752.276752px;}
.y61_c01168{bottom:752.898027px;}
.y60_c01168{bottom:754.101025px;}
.y5f_c01168{bottom:754.831563px;}
.y5e_c01168{bottom:755.077726px;}
.y5d_c01168{bottom:756.904821px;}
.y5c_c01168{bottom:757.988475px;}
.y5b_c01168{bottom:758.957025px;}
.y5a_c01168{bottom:788.284800px;}
.y59_c01168{bottom:788.917278px;}
.y58_c01168{bottom:789.535516px;}
.y57_c01168{bottom:790.622569px;}
.y56_c01168{bottom:790.865730px;}
.y55_c01168{bottom:791.831442px;}
.y54_c01168{bottom:792.443262px;}
.y53_c01168{bottom:792.811558px;}
.y52_c01168{bottom:794.373778px;}
.y51_c01168{bottom:794.869735px;}
.y50_c01168{bottom:823.699704px;}
.y4f_c01168{bottom:824.502080px;}
.y4e_c01168{bottom:824.930941px;}
.y4d_c01168{bottom:825.503961px;}
.y4c_c01168{bottom:827.150595px;}
.y4b_c01168{bottom:828.365793px;}
.y4a_c01168{bottom:828.704059px;}
.y49_c01168{bottom:829.356502px;}
.y48_c01168{bottom:829.794423px;}
.y47_c01168{bottom:830.242410px;}
.y46_c01168{bottom:860.202174px;}
.y45_c01168{bottom:860.509224px;}
.y44_c01168{bottom:861.816282px;}
.y43_c01168{bottom:863.197258px;}
.y42_c01168{bottom:863.398521px;}
.y41_c01168{bottom:863.800417px;}
.y40_c01168{bottom:864.289354px;}
.y3f_c01168{bottom:865.181328px;}
.y3e_c01168{bottom:865.886644px;}
.y3d_c01168{bottom:896.211580px;}
.y3c_c01168{bottom:897.563145px;}
.y3b_c01168{bottom:899.006680px;}
.y3a_c01168{bottom:899.377518px;}
.y39_c01168{bottom:900.239263px;}
.y38_c01168{bottom:900.725980px;}
.y37_c01168{bottom:901.317340px;}
.y36_c01168{bottom:901.697517px;}
.y35_c01168{bottom:901.934704px;}
.y34_c01168{bottom:902.787474px;}
.y33_c01168{bottom:903.149368px;}
.y32_c01168{bottom:931.857267px;}
.y31_c01168{bottom:932.361936px;}
.y30_c01168{bottom:932.957503px;}
.y2f_c01168{bottom:933.454962px;}
.y2e_c01168{bottom:934.444401px;}
.y2d_c01168{bottom:935.412687px;}
.y2c_c01168{bottom:936.131377px;}
.y2b_c01168{bottom:936.366552px;}
.y2a_c01168{bottom:936.990087px;}
.y29_c01168{bottom:937.711500px;}
.y27_c01168{bottom:971.067645px;}
.y28_c01168{bottom:971.067667px;}
.y26_c01168{bottom:971.068239px;}
.y25_c01168{bottom:1001.673673px;}
.y24_c01168{bottom:1002.161059px;}
.y23_c01168{bottom:1002.869826px;}
.y22_c01168{bottom:1003.078465px;}
.y21_c01168{bottom:1004.376891px;}
.y20_c01168{bottom:1004.576568px;}
.y1f_c01168{bottom:1005.559377px;}
.y1e_c01168{bottom:1005.867550px;}
.y1d_c01168{bottom:1006.654396px;}
.y1c_c01168{bottom:1007.060287px;}
.y1b_c01168{bottom:1007.637768px;}
.y1a_c01168{bottom:1036.634289px;}
.y19_c01168{bottom:1037.008624px;}
.y18_c01168{bottom:1037.501743px;}
.y17_c01168{bottom:1038.116534px;}
.y16_c01168{bottom:1039.349727px;}
.y15_c01168{bottom:1039.700005px;}
.y14_c01168{bottom:1040.077212px;}
.y13_c01168{bottom:1040.689131px;}
.y12_c01168{bottom:1041.532759px;}
.y11_c01168{bottom:1042.022413px;}
.y10_c01168{bottom:1042.741500px;}
.yf_c01168{bottom:1076.985522px;}
.ye_c01168{bottom:1076.985708px;}
.yd_c01168{bottom:1076.985894px;}
.yc_c01168{bottom:1108.723740px;}
.yb_c01168{bottom:1109.792976px;}
.ya_c01168{bottom:1110.194394px;}
.y9_c01168{bottom:1110.833142px;}
.y8_c01168{bottom:1111.785720px;}
.y7_c01168{bottom:1112.187030px;}
.y6_c01168{bottom:1112.854920px;}
.y5_c01168{bottom:1113.648864px;}
.y4_c01168{bottom:1114.047474px;}
.y3_c01168{bottom:1114.831500px;}
.y2_c01168{bottom:1148.560500px;}
.y1_c01168{bottom:1203.387000px;}
.h3_c01168{height:66.000000px;}
.h7_c01168{height:66.003993px;}
.h5_c01168{height:72.004356px;}
.h4_c01168{height:72.005184px;}
.h9_c01168{height:72.019041px;}
.h2_c01168{height:78.000000px;}
.h6_c01168{height:78.004719px;}
.ha_c01168{height:78.020628px;}
.h8_c01168{height:84.005082px;}
.h1_c01168{height:1258.500000px;}
.h0_c01168{height:1258.740000px;}
.w0_c01168{width:904.200000px;}
.w1_c01168{width:904.500000px;}
.x0_c01168{left:0.000000px;}
.x8f_c01168{left:146.317388px;}
.xb0_c01168{left:152.577982px;}
.xa2_c01168{left:154.180131px;}
.x52_c01168{left:155.380517px;}
.x2a_c01168{left:157.301442px;}
.xf_c01168{left:158.753502px;}
.x3_c01168{left:161.460000px;}
.x5a_c01168{left:188.885571px;}
.x2b_c01168{left:190.200942px;}
.x76_c01168{left:198.796998px;}
.x53_c01168{left:199.920512px;}
.x35_c01168{left:201.540488px;}
.x85_c01168{left:210.411983px;}
.xb1_c01168{left:218.435610px;}
.x63_c01168{left:220.913831px;}
.x70_c01168{left:221.999583px;}
.x1a_c01168{left:223.705103px;}
.x10_c01168{left:226.528758px;}
.xb3_c01168{left:229.722949px;}
.xa9_c01168{left:230.870029px;}
.x77_c01168{left:233.143998px;}
.x32_c01168{left:235.578815px;}
.x7b_c01168{left:242.723510px;}
.x36_c01168{left:245.306466px;}
.x22_c01168{left:246.779523px;}
.x4_c01168{left:248.940000px;}
.x86_c01168{left:253.273161px;}
.x4e_c01168{left:255.222084px;}
.x78_c01168{left:263.070498px;}
.x23_c01168{left:268.228500px;}
.x5_c01168{left:269.298000px;}
.x11_c01168{left:280.802070px;}
.x90_c01168{left:285.196388px;}
.x64_c01168{left:286.833653px;}
.x2c_c01168{left:289.287942px;}
.xaa_c01168{left:295.578529px;}
.x81_c01168{left:297.113769px;}
.x5b_c01168{left:309.580884px;}
.x37_c01168{left:310.620192px;}
.x91_c01168{left:318.140888px;}
.x71_c01168{left:321.348405px;}
.x2d_c01168{left:323.849442px;}
.xab_c01168{left:329.400529px;}
.x54_c01168{left:331.146447px;}
.x65_c01168{left:332.190651px;}
.x6_c01168{left:334.633500px;}
.x95_c01168{left:340.783662px;}
.x5c_c01168{left:341.980803px;}
.x38_c01168{left:344.372055px;}
.x9b_c01168{left:351.617831px;}
.x66_c01168{left:353.479442px;}
.x48_c01168{left:354.902106px;}
.x1b_c01168{left:356.275023px;}
.x79_c01168{left:364.071498px;}
.x7_c01168{left:367.851000px;}
.x9e_c01168{left:373.102500px;}
.x55_c01168{left:375.729942px;}
.x2e_c01168{left:377.609442px;}
.x12_c01168{left:378.651000px;}
.x1_c01168{left:384.210000px;}
.x72_c01168{left:385.891986px;}
.x4f_c01168{left:387.525180px;}
.x33_c01168{left:388.937681px;}
.x1c_c01168{left:390.564282px;}
.x6c_c01168{left:397.037394px;}
.x2_c01168{left:406.620000px;}
.x24_c01168{left:411.876000px;}
.x9f_c01168{left:416.856000px;}
.x5d_c01168{left:420.585768px;}
.x2f_c01168{left:421.856442px;}
.xa3_c01168{left:428.794791px;}
.x87_c01168{left:429.853512px;}
.x50_c01168{left:431.313723px;}
.x3e_c01168{left:432.921939px;}
.x8_c01168{left:434.013000px;}
.x67_c01168{left:452.354675px;}
.x13_c01168{left:455.344500px;}
.xb4_c01168{left:460.623297px;}
.x73_c01168{left:463.657770px;}
.x39_c01168{left:465.891392px;}
.xa4_c01168{left:471.995725px;}
.x56_c01168{left:474.533031px;}
.x49_c01168{left:475.608426px;}
.x25_c01168{left:477.211500px;}
.x82_c01168{left:483.983378px;}
.x68_c01168{left:485.826069px;}
.x9_c01168{left:489.670500px;}
.x96_c01168{left:494.693580px;}
.x51_c01168{left:498.486738px;}
.x1d_c01168{left:499.685675px;}
.x92_c01168{left:505.001888px;}
.x9c_c01168{left:506.846831px;}
.x43_c01168{left:509.637479px;}
.x14_c01168{left:510.973500px;}
.x7a_c01168{left:518.250498px;}
.x3f_c01168{left:520.713939px;}
.x1e_c01168{left:521.793153px;}
.xa_c01168{left:523.113000px;}
.x97_c01168{left:528.290975px;}
.x44_c01168{left:532.015979px;}
.x30_c01168{left:533.909442px;}
.x7c_c01168{left:539.971857px;}
.x69_c01168{left:541.135238px;}
.x40_c01168{left:542.819439px;}
.x15_c01168{left:545.265000px;}
.xb2_c01168{left:549.546627px;}
.x8c_c01168{left:550.921704px;}
.x5e_c01168{left:552.605076px;}
.x93_c01168{left:561.983888px;}
.x26_c01168{left:565.237500px;}
.x83_c01168{left:573.349341px;}
.x6a_c01168{left:574.881132px;}
.x16_c01168{left:577.108500px;}
.x57_c01168{left:586.608269px;}
.xac_c01168{left:593.985529px;}
.x6d_c01168{left:595.505267px;}
.x45_c01168{left:598.428479px;}
.xb_c01168{left:602.494500px;}
.x7d_c01168{left:606.183533px;}
.x34_c01168{left:609.273015px;}
.xa5_c01168{left:616.737513px;}
.x6b_c01168{left:618.892680px;}
.x9d_c01168{left:627.602831px;}
.x5f_c01168{left:629.289942px;}
.x3a_c01168{left:630.587207px;}
.xa6_c01168{left:638.381497px;}
.x88_c01168{left:639.692669px;}
.x41_c01168{left:641.642439px;}
.xb5_c01168{left:648.039075px;}
.x6e_c01168{left:651.431004px;}
.xc_c01168{left:655.723500px;}
.x98_c01168{left:660.762102px;}
.x4a_c01168{left:662.991989px;}
.x1f_c01168{left:666.016821px;}
.x89_c01168{left:672.853974px;}
.x8d_c01168{left:682.654769px;}
.x60_c01168{left:685.750934px;}
.x3b_c01168{left:687.862334px;}
.xd_c01168{left:689.175000px;}
.x99_c01168{left:695.328464px;}
.x42_c01168{left:697.845939px;}
.x27_c01168{left:700.410000px;}
.x46_c01168{left:707.791979px;}
.x8a_c01168{left:712.575851px;}
.xa7_c01168{left:717.000159px;}
.x4b_c01168{left:719.737616px;}
.xad_c01168{left:726.665029px;}
.x7e_c01168{left:728.242791px;}
.x3c_c01168{left:730.804812px;}
.xa0_c01168{left:739.068000px;}
.x8e_c01168{left:740.189642px;}
.x61_c01168{left:741.920909px;}
.x17_c01168{left:745.107000px;}
.x94_c01168{left:749.117888px;}
.x74_c01168{left:750.970451px;}
.x58_c01168{left:752.391600px;}
.x28_c01168{left:754.552500px;}
.x7f_c01168{left:762.475772px;}
.x47_c01168{left:764.271479px;}
.x20_c01168{left:767.965065px;}
.xb6_c01168{left:771.874404px;}
.x4c_c01168{left:776.178743px;}
.xe_c01168{left:778.278000px;}
.x9a_c01168{left:782.831076px;}
.x84_c01168{left:783.998978px;}
.x59_c01168{left:785.334963px;}
.x6f_c01168{left:786.739991px;}
.x31_c01168{left:788.009442px;}
.x18_c01168{left:789.936000px;}
.xa8_c01168{left:795.623321px;}
.x29_c01168{left:800.431500px;}
.x80_c01168{left:806.508894px;}
.x75_c01168{left:808.008197px;}
.x3d_c01168{left:810.976187px;}
.xa1_c01168{left:817.735500px;}
.x4d_c01168{left:819.931221px;}
.x21_c01168{left:822.092253px;}
.x19_c01168{left:823.966500px;}
.xae_c01168{left:826.337029px;}
.x8b_c01168{left:828.695195px;}
.x62_c01168{left:831.849869px;}
.xaf_c01168{left:841.466029px;}
@media print{
.v0_c01168{vertical-align:0.000000pt;}
.ls0_c01168{letter-spacing:0.000000pt;}
.ws0_c01168{word-spacing:0.000000pt;}
.fs1_c01168{font-size:58.666667pt;}
.fs5_c01168{font-size:58.670216pt;}
.fs3_c01168{font-size:64.003872pt;}
.fs2_c01168{font-size:64.004608pt;}
.fs7_c01168{font-size:64.016926pt;}
.fs0_c01168{font-size:69.333333pt;}
.fs4_c01168{font-size:69.337528pt;}
.fs8_c01168{font-size:69.351670pt;}
.fs6_c01168{font-size:74.671184pt;}
.y0_c01168{bottom:0.000000pt;}
.y13f_c01168{bottom:33.240345pt;}
.y13e_c01168{bottom:33.709556pt;}
.y13d_c01168{bottom:35.217301pt;}
.y13c_c01168{bottom:36.131909pt;}
.y13b_c01168{bottom:37.173020pt;}
.y13a_c01168{bottom:38.910955pt;}
.y139_c01168{bottom:39.798100pt;}
.y138_c01168{bottom:40.430155pt;}
.y137_c01168{bottom:42.147236pt;}
.y136_c01168{bottom:42.595363pt;}
.y135_c01168{bottom:44.311953pt;}
.y134_c01168{bottom:45.810161pt;}
.y133_c01168{bottom:64.594035pt;}
.y132_c01168{bottom:65.162624pt;}
.y131_c01168{bottom:65.983205pt;}
.y130_c01168{bottom:66.413367pt;}
.y12f_c01168{bottom:67.515728pt;}
.y12e_c01168{bottom:68.735212pt;}
.y12d_c01168{bottom:69.027084pt;}
.y12c_c01168{bottom:70.664735pt;}
.y12b_c01168{bottom:71.635708pt;}
.y12a_c01168{bottom:72.455185pt;}
.y129_c01168{bottom:95.358808pt;}
.y128_c01168{bottom:95.668112pt;}
.y127_c01168{bottom:97.705851pt;}
.y126_c01168{bottom:99.049020pt;}
.y125_c01168{bottom:99.733715pt;}
.y124_c01168{bottom:100.418409pt;}
.y123_c01168{bottom:101.774949pt;}
.y122_c01168{bottom:102.442961pt;}
.y121_c01168{bottom:104.916903pt;}
.y120_c01168{bottom:105.827703pt;}
.y11f_c01168{bottom:106.519175pt;}
.y11e_c01168{bottom:107.842104pt;}
.y11d_c01168{bottom:109.426313pt;}
.y11c_c01168{bottom:128.150212pt;}
.y11b_c01168{bottom:129.268027pt;}
.y11a_c01168{bottom:130.385749pt;}
.y119_c01168{bottom:130.693511pt;}
.y118_c01168{bottom:131.318557pt;}
.y117_c01168{bottom:132.752200pt;}
.y116_c01168{bottom:133.367277pt;}
.y115_c01168{bottom:133.686004pt;}
.y114_c01168{bottom:134.931895pt;}
.y113_c01168{bottom:136.019051pt;}
.y112_c01168{bottom:137.274052pt;}
.y111_c01168{bottom:160.263359pt;}
.y110_c01168{bottom:161.871672pt;}
.y10f_c01168{bottom:163.672756pt;}
.y10e_c01168{bottom:164.151340pt;}
.y10d_c01168{bottom:166.869143pt;}
.y10c_c01168{bottom:168.459117pt;}
.y10b_c01168{bottom:169.353633pt;}
.y10a_c01168{bottom:170.672699pt;}
.y109_c01168{bottom:171.605333pt;}
.y108_c01168{bottom:195.892335pt;}
.y107_c01168{bottom:196.220105pt;}
.y106_c01168{bottom:197.086172pt;}
.y105_c01168{bottom:197.400831pt;}
.y104_c01168{bottom:198.477569pt;}
.y103_c01168{bottom:198.918625pt;}
.y102_c01168{bottom:199.240691pt;}
.y101_c01168{bottom:199.787141pt;}
.y100_c01168{bottom:200.845693pt;}
.yff_c01168{bottom:225.113903pt;}
.yfe_c01168{bottom:225.675399pt;}
.yfd_c01168{bottom:226.764341pt;}
.yfc_c01168{bottom:227.194335pt;}
.yfb_c01168{bottom:228.842984pt;}
.yfa_c01168{bottom:229.260836pt;}
.yf9_c01168{bottom:231.176449pt;}
.yf8_c01168{bottom:231.728296pt;}
.yf7_c01168{bottom:232.934077pt;}
.yf6_c01168{bottom:233.488109pt;}
.yf5_c01168{bottom:257.762035pt;}
.yf4_c01168{bottom:258.316948pt;}
.yf3_c01168{bottom:259.388979pt;}
.yf2_c01168{bottom:259.824667pt;}
.yf1_c01168{bottom:260.146703pt;}
.yf0_c01168{bottom:260.703860pt;}
.yef_c01168{bottom:261.667519pt;}
.yee_c01168{bottom:262.530945pt;}
.yed_c01168{bottom:262.853069pt;}
.yec_c01168{bottom:264.210997pt;}
.yeb_c01168{bottom:288.473025pt;}
.yea_c01168{bottom:289.175969pt;}
.ye9_c01168{bottom:289.789205pt;}
.ye8_c01168{bottom:290.946632pt;}
.ye7_c01168{bottom:291.193276pt;}
.ye6_c01168{bottom:292.121349pt;}
.ye5_c01168{bottom:292.958893pt;}
.ye4_c01168{bottom:293.427939pt;}
.ye3_c01168{bottom:293.769732pt;}
.ye2_c01168{bottom:295.408097pt;}
.ye1_c01168{bottom:318.823607pt;}
.ye0_c01168{bottom:320.577737pt;}
.ydf_c01168{bottom:321.178155pt;}
.yde_c01168{bottom:321.679753pt;}
.ydd_c01168{bottom:323.520343pt;}
.ydc_c01168{bottom:324.850316pt;}
.ydb_c01168{bottom:325.518939pt;}
.yda_c01168{bottom:326.849528pt;}
.yd9_c01168{bottom:327.518327pt;}
.yd8_c01168{bottom:328.165441pt;}
.yd7_c01168{bottom:329.008947pt;}
.yd6_c01168{bottom:353.267417pt;}
.yd5_c01168{bottom:354.057921pt;}
.yd4_c01168{bottom:354.688845pt;}
.yd3_c01168{bottom:354.952391pt;}
.yd2_c01168{bottom:355.218385pt;}
.yd1_c01168{bottom:355.667505pt;}
.yd0_c01168{bottom:356.892488pt;}
.ycf_c01168{bottom:357.162635pt;}
.yce_c01168{bottom:357.772125pt;}
.ycd_c01168{bottom:357.951113pt;}
.ycc_c01168{bottom:358.289549pt;}
.ycb_c01168{bottom:381.852139pt;}
.yca_c01168{bottom:382.596056pt;}
.yc9_c01168{bottom:383.174808pt;}
.yc8_c01168{bottom:384.853743pt;}
.yc7_c01168{bottom:385.236381pt;}
.yc6_c01168{bottom:386.354508pt;}
.yc5_c01168{bottom:387.466536pt;}
.yc4_c01168{bottom:388.774927pt;}
.yc3_c01168{bottom:390.617560pt;}
.yc2_c01168{bottom:391.374525pt;}
.yc1_c01168{bottom:392.106773pt;}
.yc0_c01168{bottom:392.854561pt;}
.ybf_c01168{bottom:416.470628pt;}
.ybe_c01168{bottom:417.033520pt;}
.ybd_c01168{bottom:418.108308pt;}
.ybc_c01168{bottom:419.309523pt;}
.ybb_c01168{bottom:420.267872pt;}
.yba_c01168{bottom:420.817051pt;}
.yb9_c01168{bottom:421.144249pt;}
.yb8_c01168{bottom:421.804616pt;}
.yb7_c01168{bottom:422.097231pt;}
.yb6_c01168{bottom:422.433068pt;}
.yb5_c01168{bottom:422.854749pt;}
.yb4_c01168{bottom:446.758667pt;}
.yb3_c01168{bottom:447.417715pt;}
.yb2_c01168{bottom:448.175044pt;}
.yb1_c01168{bottom:448.565557pt;}
.yb0_c01168{bottom:448.952961pt;}
.yaf_c01168{bottom:449.845379pt;}
.yae_c01168{bottom:450.737723pt;}
.yad_c01168{bottom:451.246812pt;}
.yac_c01168{bottom:451.636783pt;}
.yab_c01168{bottom:452.382556pt;}
.yaa_c01168{bottom:453.529988pt;}
.ya9_c01168{bottom:453.917319pt;}
.ya8_c01168{bottom:454.297420pt;}
.ya7_c01168{bottom:481.418791pt;}
.ya6_c01168{bottom:481.688893pt;}
.ya5_c01168{bottom:482.047309pt;}
.ya4_c01168{bottom:482.500449pt;}
.ya3_c01168{bottom:482.947267pt;}
.ya2_c01168{bottom:483.908777pt;}
.ya1_c01168{bottom:484.266783pt;}
.ya0_c01168{bottom:484.534465pt;}
.y9f_c01168{bottom:484.972788pt;}
.y9e_c01168{bottom:485.239237pt;}
.y9d_c01168{bottom:485.674847pt;}
.y9c_c01168{bottom:486.457413pt;}
.y9b_c01168{bottom:510.540344pt;}
.y9a_c01168{bottom:511.226187pt;}
.y99_c01168{bottom:512.614207pt;}
.y98_c01168{bottom:513.161889pt;}
.y97_c01168{bottom:513.581193pt;}
.y96_c01168{bottom:514.270012pt;}
.y95_c01168{bottom:514.686632pt;}
.y94_c01168{bottom:515.917444pt;}
.y93_c01168{bottom:516.182941pt;}
.y92_c01168{bottom:516.747780pt;}
.y91_c01168{bottom:517.151731pt;}
.y90_c01168{bottom:517.568351pt;}
.y8f_c01168{bottom:518.381721pt;}
.y8e_c01168{bottom:544.894783pt;}
.y8d_c01168{bottom:545.178555pt;}
.y8c_c01168{bottom:545.454049pt;}
.y8b_c01168{bottom:545.803243pt;}
.y8a_c01168{bottom:546.153948pt;}
.y89_c01168{bottom:546.631723pt;}
.y88_c01168{bottom:547.171177pt;}
.y87_c01168{bottom:547.453188pt;}
.y86_c01168{bottom:547.941736pt;}
.y85_c01168{bottom:548.143855pt;}
.y84_c01168{bottom:548.894601pt;}
.y83_c01168{bottom:549.100537pt;}
.y82_c01168{bottom:575.663929pt;}
.y81_c01168{bottom:575.956705pt;}
.y80_c01168{bottom:576.744120pt;}
.y7f_c01168{bottom:577.031337pt;}
.y7e_c01168{bottom:577.429680pt;}
.y7d_c01168{bottom:577.921473pt;}
.y7c_c01168{bottom:578.425515pt;}
.y7b_c01168{bottom:579.303579pt;}
.y7a_c01168{bottom:579.699501pt;}
.y79_c01168{bottom:580.866585pt;}
.y78_c01168{bottom:581.262083pt;}
.y77_c01168{bottom:605.060167pt;}
.y76_c01168{bottom:605.721297pt;}
.y75_c01168{bottom:606.377632pt;}
.y74_c01168{bottom:607.510633pt;}
.y73_c01168{bottom:608.010059pt;}
.y72_c01168{bottom:608.272273pt;}
.y71_c01168{bottom:609.049091pt;}
.y70_c01168{bottom:609.554588pt;}
.y6f_c01168{bottom:611.082913pt;}
.y6e_c01168{bottom:611.828320pt;}
.y6d_c01168{bottom:612.224904pt;}
.y6c_c01168{bottom:637.535848pt;}
.y6b_c01168{bottom:637.924979pt;}
.y6a_c01168{bottom:638.426175pt;}
.y69_c01168{bottom:638.930348pt;}
.y68_c01168{bottom:640.300484pt;}
.y67_c01168{bottom:640.595856pt;}
.y66_c01168{bottom:641.669416pt;}
.y65_c01168{bottom:642.840476pt;}
.y64_c01168{bottom:643.425852pt;}
.y63_c01168{bottom:668.127980pt;}
.y62_c01168{bottom:668.690447pt;}
.y61_c01168{bottom:669.242691pt;}
.y60_c01168{bottom:670.312023pt;}
.y5f_c01168{bottom:670.961389pt;}
.y5e_c01168{bottom:671.180201pt;}
.y5d_c01168{bottom:672.804285pt;}
.y5c_c01168{bottom:673.767533pt;}
.y5b_c01168{bottom:674.628467pt;}
.y5a_c01168{bottom:700.697600pt;}
.y59_c01168{bottom:701.259803pt;}
.y58_c01168{bottom:701.809348pt;}
.y57_c01168{bottom:702.775617pt;}
.y56_c01168{bottom:702.991760pt;}
.y55_c01168{bottom:703.850171pt;}
.y54_c01168{bottom:704.394011pt;}
.y53_c01168{bottom:704.721385pt;}
.y52_c01168{bottom:706.110025pt;}
.y51_c01168{bottom:706.550876pt;}
.y50_c01168{bottom:732.177515pt;}
.y4f_c01168{bottom:732.890737pt;}
.y4e_c01168{bottom:733.271948pt;}
.y4d_c01168{bottom:733.781299pt;}
.y4c_c01168{bottom:735.244973pt;}
.y4b_c01168{bottom:736.325149pt;}
.y4a_c01168{bottom:736.625831pt;}
.y49_c01168{bottom:737.205780pt;}
.y48_c01168{bottom:737.595043pt;}
.y47_c01168{bottom:737.993253pt;}
.y46_c01168{bottom:764.624155pt;}
.y45_c01168{bottom:764.897088pt;}
.y44_c01168{bottom:766.058917pt;}
.y43_c01168{bottom:767.286452pt;}
.y42_c01168{bottom:767.465352pt;}
.y41_c01168{bottom:767.822593pt;}
.y40_c01168{bottom:768.257204pt;}
.y3f_c01168{bottom:769.050069pt;}
.y3e_c01168{bottom:769.677017pt;}
.y3d_c01168{bottom:796.632516pt;}
.y3c_c01168{bottom:797.833907pt;}
.y3b_c01168{bottom:799.117049pt;}
.y3a_c01168{bottom:799.446683pt;}
.y39_c01168{bottom:800.212679pt;}
.y38_c01168{bottom:800.645316pt;}
.y37_c01168{bottom:801.170969pt;}
.y36_c01168{bottom:801.508904pt;}
.y35_c01168{bottom:801.719737pt;}
.y34_c01168{bottom:802.477755pt;}
.y33_c01168{bottom:802.799439pt;}
.y32_c01168{bottom:828.317571pt;}
.y31_c01168{bottom:828.766165pt;}
.y30_c01168{bottom:829.295559pt;}
.y2f_c01168{bottom:829.737744pt;}
.y2e_c01168{bottom:830.617245pt;}
.y2d_c01168{bottom:831.477944pt;}
.y2c_c01168{bottom:832.116780pt;}
.y2b_c01168{bottom:832.325824pt;}
.y2a_c01168{bottom:832.880077pt;}
.y29_c01168{bottom:833.521333pt;}
.y27_c01168{bottom:863.171240pt;}
.y28_c01168{bottom:863.171260pt;}
.y26_c01168{bottom:863.171768pt;}
.y25_c01168{bottom:890.376599pt;}
.y24_c01168{bottom:890.809831pt;}
.y23_c01168{bottom:891.439845pt;}
.y22_c01168{bottom:891.625303pt;}
.y21_c01168{bottom:892.779459pt;}
.y20_c01168{bottom:892.956949pt;}
.y1f_c01168{bottom:893.830557pt;}
.y1e_c01168{bottom:894.104489pt;}
.y1d_c01168{bottom:894.803908pt;}
.y1c_c01168{bottom:895.164700pt;}
.y1b_c01168{bottom:895.678016pt;}
.y1a_c01168{bottom:921.452701pt;}
.y19_c01168{bottom:921.785444pt;}
.y18_c01168{bottom:922.223772pt;}
.y17_c01168{bottom:922.770252pt;}
.y16_c01168{bottom:923.866424pt;}
.y15_c01168{bottom:924.177783pt;}
.y14_c01168{bottom:924.513077pt;}
.y13_c01168{bottom:925.057005pt;}
.y12_c01168{bottom:925.806897pt;}
.y11_c01168{bottom:926.242145pt;}
.y10_c01168{bottom:926.881333pt;}
.yf_c01168{bottom:957.320464pt;}
.ye_c01168{bottom:957.320629pt;}
.yd_c01168{bottom:957.320795pt;}
.yc_c01168{bottom:985.532213pt;}
.yb_c01168{bottom:986.482645pt;}
.ya_c01168{bottom:986.839461pt;}
.y9_c01168{bottom:987.407237pt;}
.y8_c01168{bottom:988.253973pt;}
.y7_c01168{bottom:988.610693pt;}
.y6_c01168{bottom:989.204373pt;}
.y5_c01168{bottom:989.910101pt;}
.y4_c01168{bottom:990.264421pt;}
.y3_c01168{bottom:990.961333pt;}
.y2_c01168{bottom:1020.942667pt;}
.y1_c01168{bottom:1069.677333pt;}
.h3_c01168{height:58.666667pt;}
.h7_c01168{height:58.670216pt;}
.h5_c01168{height:64.003872pt;}
.h4_c01168{height:64.004608pt;}
.h9_c01168{height:64.016926pt;}
.h2_c01168{height:69.333333pt;}
.h6_c01168{height:69.337528pt;}
.ha_c01168{height:69.351670pt;}
.h8_c01168{height:74.671184pt;}
.h1_c01168{height:1118.666667pt;}
.h0_c01168{height:1118.880000pt;}
.w0_c01168{width:803.733333pt;}
.w1_c01168{width:804.000000pt;}
.x0_c01168{left:0.000000pt;}
.x8f_c01168{left:130.059900pt;}
.xb0_c01168{left:135.624873pt;}
.xa2_c01168{left:137.049005pt;}
.x52_c01168{left:138.116015pt;}
.x2a_c01168{left:139.823504pt;}
.xf_c01168{left:141.114224pt;}
.x3_c01168{left:143.520000pt;}
.x5a_c01168{left:167.898285pt;}
.x2b_c01168{left:169.067504pt;}
.x76_c01168{left:176.708443pt;}
.x53_c01168{left:177.707121pt;}
.x35_c01168{left:179.147100pt;}
.x85_c01168{left:187.032873pt;}
.xb1_c01168{left:194.164987pt;}
.x63_c01168{left:196.367849pt;}
.x70_c01168{left:197.332963pt;}
.x1a_c01168{left:198.848980pt;}
.x10_c01168{left:201.358896pt;}
.xb3_c01168{left:204.198177pt;}
.xa9_c01168{left:205.217804pt;}
.x77_c01168{left:207.239109pt;}
.x32_c01168{left:209.403391pt;}
.x7b_c01168{left:215.754231pt;}
.x36_c01168{left:218.050192pt;}
.x22_c01168{left:219.359576pt;}
.x4_c01168{left:221.280000pt;}
.x86_c01168{left:225.131699pt;}
.x4e_c01168{left:226.864075pt;}
.x78_c01168{left:233.840443pt;}
.x23_c01168{left:238.425333pt;}
.x5_c01168{left:239.376000pt;}
.x11_c01168{left:249.601840pt;}
.x90_c01168{left:253.507900pt;}
.x64_c01168{left:254.963247pt;}
.x2c_c01168{left:257.144837pt;}
.xaa_c01168{left:262.736471pt;}
.x81_c01168{left:264.101128pt;}
.x5b_c01168{left:275.183008pt;}
.x37_c01168{left:276.106837pt;}
.x91_c01168{left:282.791900pt;}
.x71_c01168{left:285.643027pt;}
.x2d_c01168{left:287.866171pt;}
.xab_c01168{left:292.800471pt;}
.x54_c01168{left:294.352397pt;}
.x65_c01168{left:295.280579pt;}
.x6_c01168{left:297.452000pt;}
.x95_c01168{left:302.918811pt;}
.x5c_c01168{left:303.982936pt;}
.x38_c01168{left:306.108493pt;}
.x9b_c01168{left:312.549183pt;}
.x66_c01168{left:314.203948pt;}
.x48_c01168{left:315.468539pt;}
.x1b_c01168{left:316.688909pt;}
.x79_c01168{left:323.619109pt;}
.x7_c01168{left:326.978667pt;}
.x9e_c01168{left:331.646667pt;}
.x55_c01168{left:333.982171pt;}
.x2e_c01168{left:335.652837pt;}
.x12_c01168{left:336.578667pt;}
.x1_c01168{left:341.520000pt;}
.x72_c01168{left:343.015099pt;}
.x4f_c01168{left:344.466827pt;}
.x33_c01168{left:345.722383pt;}
.x1c_c01168{left:347.168251pt;}
.x6c_c01168{left:352.922128pt;}
.x2_c01168{left:361.440000pt;}
.x24_c01168{left:366.112000pt;}
.x9f_c01168{left:370.538667pt;}
.x5d_c01168{left:373.854016pt;}
.x2f_c01168{left:374.983504pt;}
.xa3_c01168{left:381.150925pt;}
.x87_c01168{left:382.092011pt;}
.x50_c01168{left:383.389976pt;}
.x3e_c01168{left:384.819501pt;}
.x8_c01168{left:385.789333pt;}
.x67_c01168{left:402.093044pt;}
.x13_c01168{left:404.750667pt;}
.xb4_c01168{left:409.442931pt;}
.x73_c01168{left:412.140240pt;}
.x39_c01168{left:414.125681pt;}
.xa4_c01168{left:419.551756pt;}
.x56_c01168{left:421.807139pt;}
.x49_c01168{left:422.763045pt;}
.x25_c01168{left:424.188000pt;}
.x82_c01168{left:430.207447pt;}
.x68_c01168{left:431.845395pt;}
.x9_c01168{left:435.262667pt;}
.x96_c01168{left:439.727627pt;}
.x51_c01168{left:443.099323pt;}
.x1d_c01168{left:444.165044pt;}
.x92_c01168{left:448.890567pt;}
.x9c_c01168{left:450.530516pt;}
.x43_c01168{left:453.011092pt;}
.x14_c01168{left:454.198667pt;}
.x7a_c01168{left:460.667109pt;}
.x3f_c01168{left:462.856835pt;}
.x1e_c01168{left:463.816136pt;}
.xa_c01168{left:464.989333pt;}
.x97_c01168{left:469.591977pt;}
.x44_c01168{left:472.903092pt;}
.x30_c01168{left:474.586171pt;}
.x7c_c01168{left:479.974984pt;}
.x69_c01168{left:481.009100pt;}
.x40_c01168{left:482.506168pt;}
.x15_c01168{left:484.680000pt;}
.xb2_c01168{left:488.485891pt;}
.x8c_c01168{left:489.708181pt;}
.x5e_c01168{left:491.204512pt;}
.x93_c01168{left:499.541233pt;}
.x26_c01168{left:502.433333pt;}
.x83_c01168{left:509.643859pt;}
.x6a_c01168{left:511.005451pt;}
.x16_c01168{left:512.985333pt;}
.x57_c01168{left:521.429572pt;}
.xac_c01168{left:527.987137pt;}
.x6d_c01168{left:529.338015pt;}
.x45_c01168{left:531.936425pt;}
.xb_c01168{left:535.550667pt;}
.x7d_c01168{left:538.829807pt;}
.x34_c01168{left:541.576013pt;}
.xa5_c01168{left:548.211123pt;}
.x6b_c01168{left:550.126827pt;}
.x9d_c01168{left:557.869183pt;}
.x5f_c01168{left:559.368837pt;}
.x3a_c01168{left:560.521961pt;}
.xa6_c01168{left:567.450220pt;}
.x88_c01168{left:568.615705pt;}
.x41_c01168{left:570.348835pt;}
.xb5_c01168{left:576.034733pt;}
.x6e_c01168{left:579.049781pt;}
.xc_c01168{left:582.865333pt;}
.x98_c01168{left:587.344091pt;}
.x4a_c01168{left:589.326212pt;}
.x1f_c01168{left:592.014952pt;}
.x89_c01168{left:598.092421pt;}
.x8d_c01168{left:606.804239pt;}
.x60_c01168{left:609.556385pt;}
.x3b_c01168{left:611.433185pt;}
.xd_c01168{left:612.600000pt;}
.x99_c01168{left:618.069745pt;}
.x42_c01168{left:620.307501pt;}
.x27_c01168{left:622.586667pt;}
.x46_c01168{left:629.148425pt;}
.x8a_c01168{left:633.400756pt;}
.xa7_c01168{left:637.333475pt;}
.x4b_c01168{left:639.766769pt;}
.xad_c01168{left:645.924471pt;}
.x7e_c01168{left:647.326925pt;}
.x3c_c01168{left:649.604277pt;}
.xa0_c01168{left:656.949333pt;}
.x8e_c01168{left:657.946348pt;}
.x61_c01168{left:659.485252pt;}
.x17_c01168{left:662.317333pt;}
.x94_c01168{left:665.882567pt;}
.x74_c01168{left:667.529289pt;}
.x58_c01168{left:668.792533pt;}
.x28_c01168{left:670.713333pt;}
.x7f_c01168{left:677.756241pt;}
.x47_c01168{left:679.352425pt;}
.x20_c01168{left:682.635613pt;}
.xb6_c01168{left:686.110581pt;}
.x4c_c01168{left:689.936660pt;}
.xe_c01168{left:691.802667pt;}
.x9a_c01168{left:695.849845pt;}
.x84_c01168{left:696.887980pt;}
.x59_c01168{left:698.075523pt;}
.x6f_c01168{left:699.324436pt;}
.x31_c01168{left:700.452837pt;}
.x18_c01168{left:702.165333pt;}
.xa8_c01168{left:707.220729pt;}
.x29_c01168{left:711.494667pt;}
.x80_c01168{left:716.896795pt;}
.x75_c01168{left:718.229508pt;}
.x3d_c01168{left:720.867721pt;}
.xa1_c01168{left:726.876000pt;}
.x4d_c01168{left:728.827752pt;}
.x21_c01168{left:730.748669pt;}
.x19_c01168{left:732.414667pt;}
.xae_c01168{left:734.521804pt;}
.x8b_c01168{left:736.617951pt;}
.x62_c01168{left:739.422105pt;}
.xaf_c01168{left:747.969804pt;}
}





/* 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_c01169 {
    display:none;
  }
  .loading-indicator_c01169.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01169 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_c01169 { 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_c01169" -> "#page-container .classname_c01169")
 */
.pf_c01169 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01169 { /* 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_c01169.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01169 { /* 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_c01169 { /* 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_c01169 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01169 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01169 {overflow:visible;}
  }
}
.c_c01169 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01169 { /* 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_c01169:after { /* webkit #35443 */
  content: '';
}
.t_c01169:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01169 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 */
}
.__c01169 { /* 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_c01169 { /* info for Javascript */
  display:none;
}
.l_c01169 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01169 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01169 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01169: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_c01169 {
    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_c01169.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01169.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_c01169 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01169{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01169;src:url('chunks/assets/font_cfe63ee56e9e10a97d33a3db.woff2')format("woff");}.ff1_c01169{font-family:ff1_c01169;line-height:1.000000;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;}
.m74_c01169{transform:matrix(0.009272,-0.000250,0.006748,0.249909,0,0);-ms-transform:matrix(0.009272,-0.000250,0.006748,0.249909,0,0);-webkit-transform:matrix(0.009272,-0.000250,0.006748,0.249909,0,0);}
.m1b_c01169{transform:matrix(0.020280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.020280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.020280,0.000000,0.000000,0.250000,0,0);}
.m7_c01169{transform:matrix(0.051250,-0.001230,0.005998,0.249928,0,0);-ms-transform:matrix(0.051250,-0.001230,0.005998,0.249928,0,0);-webkit-transform:matrix(0.051250,-0.001230,0.005998,0.249928,0,0);}
.m51_c01169{transform:matrix(0.135765,-0.004209,0.007746,0.249880,0,0);-ms-transform:matrix(0.135765,-0.004209,0.007746,0.249880,0,0);-webkit-transform:matrix(0.135765,-0.004209,0.007746,0.249880,0,0);}
.m1f_c01169{transform:matrix(0.138410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138410,0.000000,0.000000,0.250000,0,0);}
.m3a_c01169{transform:matrix(0.159550,-0.003351,0.005249,0.249945,0,0);-ms-transform:matrix(0.159550,-0.003351,0.005249,0.249945,0,0);-webkit-transform:matrix(0.159550,-0.003351,0.005249,0.249945,0,0);}
.m1e_c01169{transform:matrix(0.166120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166120,0.000000,0.000000,0.250000,0,0);}
.m25_c01169{transform:matrix(0.167945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167945,0.000000,0.000000,0.250000,0,0);}
.m20_c01169{transform:matrix(0.169525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169525,0.000000,0.000000,0.250000,0,0);}
.m75_c01169{transform:matrix(0.182424,-0.004925,0.006748,0.249909,0,0);-ms-transform:matrix(0.182424,-0.004925,0.006748,0.249909,0,0);-webkit-transform:matrix(0.182424,-0.004925,0.006748,0.249909,0,0);}
.m1c_c01169{transform:matrix(0.184135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184135,0.000000,0.000000,0.250000,0,0);}
.m1d_c01169{transform:matrix(0.186115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186115,0.000000,0.000000,0.250000,0,0);}
.m70_c01169{transform:matrix(0.187817,-0.005071,0.006748,0.249909,0,0);-ms-transform:matrix(0.187817,-0.005071,0.006748,0.249909,0,0);-webkit-transform:matrix(0.187817,-0.005071,0.006748,0.249909,0,0);}
.m5e_c01169{transform:matrix(0.188514,-0.005844,0.007746,0.249880,0,0);-ms-transform:matrix(0.188514,-0.005844,0.007746,0.249880,0,0);-webkit-transform:matrix(0.188514,-0.005844,0.007746,0.249880,0,0);}
.m76_c01169{transform:matrix(0.194079,-0.005240,0.006748,0.249909,0,0);-ms-transform:matrix(0.194079,-0.005240,0.006748,0.249909,0,0);-webkit-transform:matrix(0.194079,-0.005240,0.006748,0.249909,0,0);}
.m58_c01169{transform:matrix(0.194337,-0.006024,0.007746,0.249880,0,0);-ms-transform:matrix(0.194337,-0.006024,0.007746,0.249880,0,0);-webkit-transform:matrix(0.194337,-0.006024,0.007746,0.249880,0,0);}
.m6b_c01169{transform:matrix(0.194847,-0.004092,0.005249,0.249945,0,0);-ms-transform:matrix(0.194847,-0.004092,0.005249,0.249945,0,0);-webkit-transform:matrix(0.194847,-0.004092,0.005249,0.249945,0,0);}
.m4d_c01169{transform:matrix(0.200530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200530,0.000000,0.000000,0.250000,0,0);}
.m34_c01169{transform:matrix(0.200870,-0.002812,0.003500,0.249976,0,0);-ms-transform:matrix(0.200870,-0.002812,0.003500,0.249976,0,0);-webkit-transform:matrix(0.200870,-0.002812,0.003500,0.249976,0,0);}
.m2_c01169{transform:matrix(0.200962,-0.004823,0.005998,0.249928,0,0);-ms-transform:matrix(0.200962,-0.004823,0.005998,0.249928,0,0);-webkit-transform:matrix(0.200962,-0.004823,0.005998,0.249928,0,0);}
.m22_c01169{transform:matrix(0.201420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201420,0.000000,0.000000,0.250000,0,0);}
.m77_c01169{transform:matrix(0.203321,-0.005490,0.006748,0.249909,0,0);-ms-transform:matrix(0.203321,-0.005490,0.006748,0.249909,0,0);-webkit-transform:matrix(0.203321,-0.005490,0.006748,0.249909,0,0);}
.m5d_c01169{transform:matrix(0.203747,-0.006316,0.007746,0.249880,0,0);-ms-transform:matrix(0.203747,-0.006316,0.007746,0.249880,0,0);-webkit-transform:matrix(0.203747,-0.006316,0.007746,0.249880,0,0);}
.m29_c01169{transform:matrix(0.206870,-0.002896,0.003500,0.249976,0,0);-ms-transform:matrix(0.206870,-0.002896,0.003500,0.249976,0,0);-webkit-transform:matrix(0.206870,-0.002896,0.003500,0.249976,0,0);}
.m78_c01169{transform:matrix(0.207145,-0.005593,0.006748,0.249909,0,0);-ms-transform:matrix(0.207145,-0.005593,0.006748,0.249909,0,0);-webkit-transform:matrix(0.207145,-0.005593,0.006748,0.249909,0,0);}
.m24_c01169{transform:matrix(0.207760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207760,0.000000,0.000000,0.250000,0,0);}
.m57_c01169{transform:matrix(0.207835,-0.006443,0.007746,0.249880,0,0);-ms-transform:matrix(0.207835,-0.006443,0.007746,0.249880,0,0);-webkit-transform:matrix(0.207835,-0.006443,0.007746,0.249880,0,0);}
.m4_c01169{transform:matrix(0.212449,-0.005099,0.005998,0.249928,0,0);-ms-transform:matrix(0.212449,-0.005099,0.005998,0.249928,0,0);-webkit-transform:matrix(0.212449,-0.005099,0.005998,0.249928,0,0);}
.m4f_c01169{transform:matrix(0.212755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212755,0.000000,0.000000,0.250000,0,0);}
.m0_c01169{transform:matrix(0.213190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213190,0.000000,0.000000,0.250000,0,0);}
.m65_c01169{transform:matrix(0.214008,-0.003424,0.003999,0.249968,0,0);-ms-transform:matrix(0.214008,-0.003424,0.003999,0.249968,0,0);-webkit-transform:matrix(0.214008,-0.003424,0.003999,0.249968,0,0);}
.m45_c01169{transform:matrix(0.216256,-0.005839,0.006748,0.249909,0,0);-ms-transform:matrix(0.216256,-0.005839,0.006748,0.249909,0,0);-webkit-transform:matrix(0.216256,-0.005839,0.006748,0.249909,0,0);}
.m71_c01169{transform:matrix(0.220065,-0.005942,0.006748,0.249909,0,0);-ms-transform:matrix(0.220065,-0.005942,0.006748,0.249909,0,0);-webkit-transform:matrix(0.220065,-0.005942,0.006748,0.249909,0,0);}
.m21_c01169{transform:matrix(0.221090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221090,0.000000,0.000000,0.250000,0,0);}
.m6d_c01169{transform:matrix(0.222116,-0.004664,0.005249,0.249945,0,0);-ms-transform:matrix(0.222116,-0.004664,0.005249,0.249945,0,0);-webkit-transform:matrix(0.222116,-0.004664,0.005249,0.249945,0,0);}
.m5c_c01169{transform:matrix(0.225462,-0.006989,0.007746,0.249880,0,0);-ms-transform:matrix(0.225462,-0.006989,0.007746,0.249880,0,0);-webkit-transform:matrix(0.225462,-0.006989,0.007746,0.249880,0,0);}
.m50_c01169{transform:matrix(0.225550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225550,0.000000,0.000000,0.250000,0,0);}
.m81_c01169{transform:matrix(0.226692,-0.006121,0.006748,0.249909,0,0);-ms-transform:matrix(0.226692,-0.006121,0.006748,0.249909,0,0);-webkit-transform:matrix(0.226692,-0.006121,0.006748,0.249909,0,0);}
.m43_c01169{transform:matrix(0.227327,-0.006138,0.006748,0.249909,0,0);-ms-transform:matrix(0.227327,-0.006138,0.006748,0.249909,0,0);-webkit-transform:matrix(0.227327,-0.006138,0.006748,0.249909,0,0);}
.m5_c01169{transform:matrix(0.229259,-0.005502,0.005998,0.249928,0,0);-ms-transform:matrix(0.229259,-0.005502,0.005998,0.249928,0,0);-webkit-transform:matrix(0.229259,-0.005502,0.005998,0.249928,0,0);}
.m3e_c01169{transform:matrix(0.230059,-0.004831,0.005249,0.249945,0,0);-ms-transform:matrix(0.230059,-0.004831,0.005249,0.249945,0,0);-webkit-transform:matrix(0.230059,-0.004831,0.005249,0.249945,0,0);}
.m8_c01169{transform:matrix(0.230399,-0.005530,0.005998,0.249928,0,0);-ms-transform:matrix(0.230399,-0.005530,0.005998,0.249928,0,0);-webkit-transform:matrix(0.230399,-0.005530,0.005998,0.249928,0,0);}
.m4b_c01169{transform:matrix(0.230455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230455,0.000000,0.000000,0.250000,0,0);}
.m35_c01169{transform:matrix(0.231202,-0.003237,0.003500,0.249976,0,0);-ms-transform:matrix(0.231202,-0.003237,0.003500,0.249976,0,0);-webkit-transform:matrix(0.231202,-0.003237,0.003500,0.249976,0,0);}
.m4e_c01169{transform:matrix(0.231675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231675,0.000000,0.000000,0.250000,0,0);}
.m47_c01169{transform:matrix(0.236024,-0.006373,0.006748,0.249909,0,0);-ms-transform:matrix(0.236024,-0.006373,0.006748,0.249909,0,0);-webkit-transform:matrix(0.236024,-0.006373,0.006748,0.249909,0,0);}
.m8e_c01169{transform:matrix(0.236548,-0.005204,0.005499,0.249940,0,0);-ms-transform:matrix(0.236548,-0.005204,0.005499,0.249940,0,0);-webkit-transform:matrix(0.236548,-0.005204,0.005499,0.249940,0,0);}
.m4c_c01169{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m30_c01169{transform:matrix(0.238512,-0.003339,0.003500,0.249976,0,0);-ms-transform:matrix(0.238512,-0.003339,0.003500,0.249976,0,0);-webkit-transform:matrix(0.238512,-0.003339,0.003500,0.249976,0,0);}
.m3d_c01169{transform:matrix(0.240682,-0.005054,0.005249,0.249945,0,0);-ms-transform:matrix(0.240682,-0.005054,0.005249,0.249945,0,0);-webkit-transform:matrix(0.240682,-0.005054,0.005249,0.249945,0,0);}
.m38_c01169{transform:matrix(0.243141,-0.005106,0.005249,0.249945,0,0);-ms-transform:matrix(0.243141,-0.005106,0.005249,0.249945,0,0);-webkit-transform:matrix(0.243141,-0.005106,0.005249,0.249945,0,0);}
.m64_c01169{transform:matrix(0.243389,-0.003894,0.003999,0.249968,0,0);-ms-transform:matrix(0.243389,-0.003894,0.003999,0.249968,0,0);-webkit-transform:matrix(0.243389,-0.003894,0.003999,0.249968,0,0);}
.m8f_c01169{transform:matrix(0.244591,-0.005381,0.005499,0.249940,0,0);-ms-transform:matrix(0.244591,-0.005381,0.005499,0.249940,0,0);-webkit-transform:matrix(0.244591,-0.005381,0.005499,0.249940,0,0);}
.m3_c01169{transform:matrix(0.246814,-0.005924,0.005998,0.249928,0,0);-ms-transform:matrix(0.246814,-0.005924,0.005998,0.249928,0,0);-webkit-transform:matrix(0.246814,-0.005924,0.005998,0.249928,0,0);}
.m3b_c01169{transform:matrix(0.246926,-0.005185,0.005249,0.249945,0,0);-ms-transform:matrix(0.246926,-0.005185,0.005249,0.249945,0,0);-webkit-transform:matrix(0.246926,-0.005185,0.005249,0.249945,0,0);}
.m28_c01169{transform:matrix(0.246980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246980,0.000000,0.000000,0.250000,0,0);}
.m5b_c01169{transform:matrix(0.248900,-0.007716,0.007746,0.249880,0,0);-ms-transform:matrix(0.248900,-0.007716,0.007746,0.249880,0,0);-webkit-transform:matrix(0.248900,-0.007716,0.007746,0.249880,0,0);}
.m86_c01169{transform:matrix(0.250064,-0.006752,0.006748,0.249909,0,0);-ms-transform:matrix(0.250064,-0.006752,0.006748,0.249909,0,0);-webkit-transform:matrix(0.250064,-0.006752,0.006748,0.249909,0,0);}
.m84_c01169{transform:matrix(0.251363,-0.006787,0.006748,0.249909,0,0);-ms-transform:matrix(0.251363,-0.006787,0.006748,0.249909,0,0);-webkit-transform:matrix(0.251363,-0.006787,0.006748,0.249909,0,0);}
.m62_c01169{transform:matrix(0.251688,-0.004027,0.003999,0.249968,0,0);-ms-transform:matrix(0.251688,-0.004027,0.003999,0.249968,0,0);-webkit-transform:matrix(0.251688,-0.004027,0.003999,0.249968,0,0);}
.m2e_c01169{transform:matrix(0.254730,-0.003566,0.003500,0.249976,0,0);-ms-transform:matrix(0.254730,-0.003566,0.003500,0.249976,0,0);-webkit-transform:matrix(0.254730,-0.003566,0.003500,0.249976,0,0);}
.m2f_c01169{transform:matrix(0.256230,-0.003587,0.003500,0.249976,0,0);-ms-transform:matrix(0.256230,-0.003587,0.003500,0.249976,0,0);-webkit-transform:matrix(0.256230,-0.003587,0.003500,0.249976,0,0);}
.m3c_c01169{transform:matrix(0.257413,-0.005406,0.005249,0.249945,0,0);-ms-transform:matrix(0.257413,-0.005406,0.005249,0.249945,0,0);-webkit-transform:matrix(0.257413,-0.005406,0.005249,0.249945,0,0);}
.m63_c01169{transform:matrix(0.260072,-0.004161,0.003999,0.249968,0,0);-ms-transform:matrix(0.260072,-0.004161,0.003999,0.249968,0,0);-webkit-transform:matrix(0.260072,-0.004161,0.003999,0.249968,0,0);}
.m40_c01169{transform:matrix(0.261155,-0.007051,0.006748,0.249909,0,0);-ms-transform:matrix(0.261155,-0.007051,0.006748,0.249909,0,0);-webkit-transform:matrix(0.261155,-0.007051,0.006748,0.249909,0,0);}
.m87_c01169{transform:matrix(0.262834,-0.007097,0.006748,0.249909,0,0);-ms-transform:matrix(0.262834,-0.007097,0.006748,0.249909,0,0);-webkit-transform:matrix(0.262834,-0.007097,0.006748,0.249909,0,0);}
.m7e_c01169{transform:matrix(0.263409,-0.007112,0.006748,0.249909,0,0);-ms-transform:matrix(0.263409,-0.007112,0.006748,0.249909,0,0);-webkit-transform:matrix(0.263409,-0.007112,0.006748,0.249909,0,0);}
.m66_c01169{transform:matrix(0.263527,-0.005534,0.005249,0.249945,0,0);-ms-transform:matrix(0.263527,-0.005534,0.005249,0.249945,0,0);-webkit-transform:matrix(0.263527,-0.005534,0.005249,0.249945,0,0);}
.m83_c01169{transform:matrix(0.265213,-0.007161,0.006748,0.249909,0,0);-ms-transform:matrix(0.265213,-0.007161,0.006748,0.249909,0,0);-webkit-transform:matrix(0.265213,-0.007161,0.006748,0.249909,0,0);}
.m2d_c01169{transform:matrix(0.266714,-0.003734,0.003500,0.249976,0,0);-ms-transform:matrix(0.266714,-0.003734,0.003500,0.249976,0,0);-webkit-transform:matrix(0.266714,-0.003734,0.003500,0.249976,0,0);}
.m39_c01169{transform:matrix(0.267806,-0.005624,0.005249,0.249945,0,0);-ms-transform:matrix(0.267806,-0.005624,0.005249,0.249945,0,0);-webkit-transform:matrix(0.267806,-0.005624,0.005249,0.249945,0,0);}
.m80_c01169{transform:matrix(0.268952,-0.007262,0.006748,0.249909,0,0);-ms-transform:matrix(0.268952,-0.007262,0.006748,0.249909,0,0);-webkit-transform:matrix(0.268952,-0.007262,0.006748,0.249909,0,0);}
.mc_c01169{transform:matrix(0.271527,-0.006517,0.005998,0.249928,0,0);-ms-transform:matrix(0.271527,-0.006517,0.005998,0.249928,0,0);-webkit-transform:matrix(0.271527,-0.006517,0.005998,0.249928,0,0);}
.m4a_c01169{transform:matrix(0.271935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271935,0.000000,0.000000,0.250000,0,0);}
.m36_c01169{transform:matrix(0.272185,-0.005716,0.005249,0.249945,0,0);-ms-transform:matrix(0.272185,-0.005716,0.005249,0.249945,0,0);-webkit-transform:matrix(0.272185,-0.005716,0.005249,0.249945,0,0);}
.m5f_c01169{transform:matrix(0.278594,-0.004458,0.003999,0.249968,0,0);-ms-transform:matrix(0.278594,-0.004458,0.003999,0.249968,0,0);-webkit-transform:matrix(0.278594,-0.004458,0.003999,0.249968,0,0);}
.m37_c01169{transform:matrix(0.278824,-0.005855,0.005249,0.249945,0,0);-ms-transform:matrix(0.278824,-0.005855,0.005249,0.249945,0,0);-webkit-transform:matrix(0.278824,-0.005855,0.005249,0.249945,0,0);}
.me_c01169{transform:matrix(0.279874,-0.006717,0.005998,0.249928,0,0);-ms-transform:matrix(0.279874,-0.006717,0.005998,0.249928,0,0);-webkit-transform:matrix(0.279874,-0.006717,0.005998,0.249928,0,0);}
.m59_c01169{transform:matrix(0.280295,-0.008689,0.007746,0.249880,0,0);-ms-transform:matrix(0.280295,-0.008689,0.007746,0.249880,0,0);-webkit-transform:matrix(0.280295,-0.008689,0.007746,0.249880,0,0);}
.m8c_c01169{transform:matrix(0.280942,-0.006181,0.005499,0.249940,0,0);-ms-transform:matrix(0.280942,-0.006181,0.005499,0.249940,0,0);-webkit-transform:matrix(0.280942,-0.006181,0.005499,0.249940,0,0);}
.m88_c01169{transform:matrix(0.281812,-0.007609,0.006748,0.249909,0,0);-ms-transform:matrix(0.281812,-0.007609,0.006748,0.249909,0,0);-webkit-transform:matrix(0.281812,-0.007609,0.006748,0.249909,0,0);}
.m7c_c01169{transform:matrix(0.282312,-0.007622,0.006748,0.249909,0,0);-ms-transform:matrix(0.282312,-0.007622,0.006748,0.249909,0,0);-webkit-transform:matrix(0.282312,-0.007622,0.006748,0.249909,0,0);}
.mb_c01169{transform:matrix(0.283883,-0.006813,0.005998,0.249928,0,0);-ms-transform:matrix(0.283883,-0.006813,0.005998,0.249928,0,0);-webkit-transform:matrix(0.283883,-0.006813,0.005998,0.249928,0,0);}
.m54_c01169{transform:matrix(0.287082,-0.008900,0.007746,0.249880,0,0);-ms-transform:matrix(0.287082,-0.008900,0.007746,0.249880,0,0);-webkit-transform:matrix(0.287082,-0.008900,0.007746,0.249880,0,0);}
.m85_c01169{transform:matrix(0.287680,-0.007767,0.006748,0.249909,0,0);-ms-transform:matrix(0.287680,-0.007767,0.006748,0.249909,0,0);-webkit-transform:matrix(0.287680,-0.007767,0.006748,0.249909,0,0);}
.m41_c01169{transform:matrix(0.288440,-0.007788,0.006748,0.249909,0,0);-ms-transform:matrix(0.288440,-0.007788,0.006748,0.249909,0,0);-webkit-transform:matrix(0.288440,-0.007788,0.006748,0.249909,0,0);}
.m2b_c01169{transform:matrix(0.291356,-0.004079,0.003500,0.249976,0,0);-ms-transform:matrix(0.291356,-0.004079,0.003500,0.249976,0,0);-webkit-transform:matrix(0.291356,-0.004079,0.003500,0.249976,0,0);}
.m79_c01169{transform:matrix(0.291594,-0.007873,0.006748,0.249909,0,0);-ms-transform:matrix(0.291594,-0.007873,0.006748,0.249909,0,0);-webkit-transform:matrix(0.291594,-0.007873,0.006748,0.249909,0,0);}
.m44_c01169{transform:matrix(0.291799,-0.007879,0.006748,0.249909,0,0);-ms-transform:matrix(0.291799,-0.007879,0.006748,0.249909,0,0);-webkit-transform:matrix(0.291799,-0.007879,0.006748,0.249909,0,0);}
.m32_c01169{transform:matrix(0.293296,-0.004106,0.003500,0.249976,0,0);-ms-transform:matrix(0.293296,-0.004106,0.003500,0.249976,0,0);-webkit-transform:matrix(0.293296,-0.004106,0.003500,0.249976,0,0);}
.m7d_c01169{transform:matrix(0.295277,-0.007972,0.006748,0.249909,0,0);-ms-transform:matrix(0.295277,-0.007972,0.006748,0.249909,0,0);-webkit-transform:matrix(0.295277,-0.007972,0.006748,0.249909,0,0);}
.m46_c01169{transform:matrix(0.296122,-0.007995,0.006748,0.249909,0,0);-ms-transform:matrix(0.296122,-0.007995,0.006748,0.249909,0,0);-webkit-transform:matrix(0.296122,-0.007995,0.006748,0.249909,0,0);}
.m56_c01169{transform:matrix(0.296343,-0.009187,0.007746,0.249880,0,0);-ms-transform:matrix(0.296343,-0.009187,0.007746,0.249880,0,0);-webkit-transform:matrix(0.296343,-0.009187,0.007746,0.249880,0,0);}
.m6e_c01169{transform:matrix(0.296920,-0.006235,0.005249,0.249945,0,0);-ms-transform:matrix(0.296920,-0.006235,0.005249,0.249945,0,0);-webkit-transform:matrix(0.296920,-0.006235,0.005249,0.249945,0,0);}
.m72_c01169{transform:matrix(0.297821,-0.008041,0.006748,0.249909,0,0);-ms-transform:matrix(0.297821,-0.008041,0.006748,0.249909,0,0);-webkit-transform:matrix(0.297821,-0.008041,0.006748,0.249909,0,0);}
.m73_c01169{transform:matrix(0.300151,-0.008104,0.006748,0.249909,0,0);-ms-transform:matrix(0.300151,-0.008104,0.006748,0.249909,0,0);-webkit-transform:matrix(0.300151,-0.008104,0.006748,0.249909,0,0);}
.m60_c01169{transform:matrix(0.300282,-0.004805,0.003999,0.249968,0,0);-ms-transform:matrix(0.300282,-0.004805,0.003999,0.249968,0,0);-webkit-transform:matrix(0.300282,-0.004805,0.003999,0.249968,0,0);}
.m6c_c01169{transform:matrix(0.301599,-0.006334,0.005249,0.249945,0,0);-ms-transform:matrix(0.301599,-0.006334,0.005249,0.249945,0,0);-webkit-transform:matrix(0.301599,-0.006334,0.005249,0.249945,0,0);}
.m68_c01169{transform:matrix(0.302268,-0.006348,0.005249,0.249945,0,0);-ms-transform:matrix(0.302268,-0.006348,0.005249,0.249945,0,0);-webkit-transform:matrix(0.302268,-0.006348,0.005249,0.249945,0,0);}
.m82_c01169{transform:matrix(0.303269,-0.008188,0.006748,0.249909,0,0);-ms-transform:matrix(0.303269,-0.008188,0.006748,0.249909,0,0);-webkit-transform:matrix(0.303269,-0.008188,0.006748,0.249909,0,0);}
.m3f_c01169{transform:matrix(0.318504,-0.008600,0.006748,0.249909,0,0);-ms-transform:matrix(0.318504,-0.008600,0.006748,0.249909,0,0);-webkit-transform:matrix(0.318504,-0.008600,0.006748,0.249909,0,0);}
.m9_c01169{transform:matrix(0.320678,-0.007696,0.005998,0.249928,0,0);-ms-transform:matrix(0.320678,-0.007696,0.005998,0.249928,0,0);-webkit-transform:matrix(0.320678,-0.007696,0.005998,0.249928,0,0);}
.m7b_c01169{transform:matrix(0.321853,-0.008690,0.006748,0.249909,0,0);-ms-transform:matrix(0.321853,-0.008690,0.006748,0.249909,0,0);-webkit-transform:matrix(0.321853,-0.008690,0.006748,0.249909,0,0);}
.m61_c01169{transform:matrix(0.321894,-0.005150,0.003999,0.249968,0,0);-ms-transform:matrix(0.321894,-0.005150,0.003999,0.249968,0,0);-webkit-transform:matrix(0.321894,-0.005150,0.003999,0.249968,0,0);}
.m6f_c01169{transform:matrix(0.324988,-0.006825,0.005249,0.249945,0,0);-ms-transform:matrix(0.324988,-0.006825,0.005249,0.249945,0,0);-webkit-transform:matrix(0.324988,-0.006825,0.005249,0.249945,0,0);}
.m52_c01169{transform:matrix(0.331136,-0.010265,0.007746,0.249880,0,0);-ms-transform:matrix(0.331136,-0.010265,0.007746,0.249880,0,0);-webkit-transform:matrix(0.331136,-0.010265,0.007746,0.249880,0,0);}
.m7f_c01169{transform:matrix(0.332259,-0.008971,0.006748,0.249909,0,0);-ms-transform:matrix(0.332259,-0.008971,0.006748,0.249909,0,0);-webkit-transform:matrix(0.332259,-0.008971,0.006748,0.249909,0,0);}
.md_c01169{transform:matrix(0.334719,-0.008033,0.005998,0.249928,0,0);-ms-transform:matrix(0.334719,-0.008033,0.005998,0.249928,0,0);-webkit-transform:matrix(0.334719,-0.008033,0.005998,0.249928,0,0);}
.m33_c01169{transform:matrix(0.340282,-0.004764,0.003500,0.249976,0,0);-ms-transform:matrix(0.340282,-0.004764,0.003500,0.249976,0,0);-webkit-transform:matrix(0.340282,-0.004764,0.003500,0.249976,0,0);}
.m1_c01169{transform:matrix(0.348085,-0.008354,0.005998,0.249928,0,0);-ms-transform:matrix(0.348085,-0.008354,0.005998,0.249928,0,0);-webkit-transform:matrix(0.348085,-0.008354,0.005998,0.249928,0,0);}
.m67_c01169{transform:matrix(0.352502,-0.007403,0.005249,0.249945,0,0);-ms-transform:matrix(0.352502,-0.007403,0.005249,0.249945,0,0);-webkit-transform:matrix(0.352502,-0.007403,0.005249,0.249945,0,0);}
.m42_c01169{transform:matrix(0.353236,-0.009537,0.006748,0.249909,0,0);-ms-transform:matrix(0.353236,-0.009537,0.006748,0.249909,0,0);-webkit-transform:matrix(0.353236,-0.009537,0.006748,0.249909,0,0);}
.m6a_c01169{transform:matrix(0.355402,-0.007463,0.005249,0.249945,0,0);-ms-transform:matrix(0.355402,-0.007463,0.005249,0.249945,0,0);-webkit-transform:matrix(0.355402,-0.007463,0.005249,0.249945,0,0);}
.m23_c01169{transform:matrix(0.364770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364770,0.000000,0.000000,0.250000,0,0);}
.m5a_c01169{transform:matrix(0.366749,-0.011369,0.007746,0.249880,0,0);-ms-transform:matrix(0.366749,-0.011369,0.007746,0.249880,0,0);-webkit-transform:matrix(0.366749,-0.011369,0.007746,0.249880,0,0);}
.m31_c01169{transform:matrix(0.368769,-0.005163,0.003500,0.249976,0,0);-ms-transform:matrix(0.368769,-0.005163,0.003500,0.249976,0,0);-webkit-transform:matrix(0.368769,-0.005163,0.003500,0.249976,0,0);}
.m8d_c01169{transform:matrix(0.371580,-0.008175,0.005499,0.249940,0,0);-ms-transform:matrix(0.371580,-0.008175,0.005499,0.249940,0,0);-webkit-transform:matrix(0.371580,-0.008175,0.005499,0.249940,0,0);}
.m6_c01169{transform:matrix(0.372693,-0.008945,0.005998,0.249928,0,0);-ms-transform:matrix(0.372693,-0.008945,0.005998,0.249928,0,0);-webkit-transform:matrix(0.372693,-0.008945,0.005998,0.249928,0,0);}
.m10_c01169{transform:matrix(0.373755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373755,0.000000,0.000000,0.250000,0,0);}
.m2c_c01169{transform:matrix(0.377133,-0.005280,0.003500,0.249976,0,0);-ms-transform:matrix(0.377133,-0.005280,0.003500,0.249976,0,0);-webkit-transform:matrix(0.377133,-0.005280,0.003500,0.249976,0,0);}
.m15_c01169{transform:matrix(0.383750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383750,0.000000,0.000000,0.250000,0,0);}
.m49_c01169{transform:matrix(0.392720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392720,0.000000,0.000000,0.250000,0,0);}
.ma_c01169{transform:matrix(0.392777,-0.009427,0.005998,0.249928,0,0);-ms-transform:matrix(0.392777,-0.009427,0.005998,0.249928,0,0);-webkit-transform:matrix(0.392777,-0.009427,0.005998,0.249928,0,0);}
.m89_c01169{transform:matrix(0.393966,-0.010637,0.006748,0.249909,0,0);-ms-transform:matrix(0.393966,-0.010637,0.006748,0.249909,0,0);-webkit-transform:matrix(0.393966,-0.010637,0.006748,0.249909,0,0);}
.m7a_c01169{transform:matrix(0.403508,-0.010895,0.006748,0.249909,0,0);-ms-transform:matrix(0.403508,-0.010895,0.006748,0.249909,0,0);-webkit-transform:matrix(0.403508,-0.010895,0.006748,0.249909,0,0);}
.m8b_c01169{transform:matrix(0.420363,-0.009248,0.005499,0.249940,0,0);-ms-transform:matrix(0.420363,-0.009248,0.005499,0.249940,0,0);-webkit-transform:matrix(0.420363,-0.009248,0.005499,0.249940,0,0);}
.m17_c01169{transform:matrix(0.429700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429700,0.000000,0.000000,0.250000,0,0);}
.m8a_c01169{transform:matrix(0.436074,-0.009594,0.005499,0.249940,0,0);-ms-transform:matrix(0.436074,-0.009594,0.005499,0.249940,0,0);-webkit-transform:matrix(0.436074,-0.009594,0.005499,0.249940,0,0);}
.m26_c01169{transform:matrix(0.441020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441020,0.000000,0.000000,0.250000,0,0);}
.m16_c01169{transform:matrix(0.444505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444505,0.000000,0.000000,0.250000,0,0);}
.m14_c01169{transform:matrix(0.446725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446725,0.000000,0.000000,0.250000,0,0);}
.m1a_c01169{transform:matrix(0.452215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452215,0.000000,0.000000,0.250000,0,0);}
.m19_c01169{transform:matrix(0.458695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458695,0.000000,0.000000,0.250000,0,0);}
.m53_c01169{transform:matrix(0.470414,-0.014583,0.007746,0.249880,0,0);-ms-transform:matrix(0.470414,-0.014583,0.007746,0.249880,0,0);-webkit-transform:matrix(0.470414,-0.014583,0.007746,0.249880,0,0);}
.m48_c01169{transform:matrix(0.481665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.481665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.481665,0.000000,0.000000,0.250000,0,0);}
.m55_c01169{transform:matrix(0.518226,-0.016065,0.007746,0.249880,0,0);-ms-transform:matrix(0.518226,-0.016065,0.007746,0.249880,0,0);-webkit-transform:matrix(0.518226,-0.016065,0.007746,0.249880,0,0);}
.m13_c01169{transform:matrix(0.561905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.561905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.561905,0.000000,0.000000,0.250000,0,0);}
.m69_c01169{transform:matrix(0.567645,-0.011921,0.005249,0.249945,0,0);-ms-transform:matrix(0.567645,-0.011921,0.005249,0.249945,0,0);-webkit-transform:matrix(0.567645,-0.011921,0.005249,0.249945,0,0);}
.m18_c01169{transform:matrix(0.600005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.600005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.600005,0.000000,0.000000,0.250000,0,0);}
.m27_c01169{transform:matrix(0.645695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.645695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.645695,0.000000,0.000000,0.250000,0,0);}
.m2a_c01169{transform:matrix(0.707081,-0.009899,0.003500,0.249976,0,0);-ms-transform:matrix(0.707081,-0.009899,0.003500,0.249976,0,0);-webkit-transform:matrix(0.707081,-0.009899,0.003500,0.249976,0,0);}
.m12_c01169{transform:matrix(0.716260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.716260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.716260,0.000000,0.000000,0.250000,0,0);}
.mf_c01169{transform:matrix(1.058690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.058690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.058690,0.000000,0.000000,0.250000,0,0);}
.m11_c01169{transform:matrix(1.091565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.091565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.091565,0.000000,0.000000,0.250000,0,0);}
.v0_c01169{vertical-align:0.000000px;}
.ls0_c01169{letter-spacing:0.000000px;}
.sc__c01169{text-shadow:none;}
.sc0_c01169{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__c01169{-webkit-text-stroke:0px transparent;}
.sc0_c01169{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01169{word-spacing:0.000000px;}
.fc0_c01169{color:transparent;}
.fs0_c01169{font-size:18.000000px;}
.fs4_c01169{font-size:48.000000px;}
.fsc_c01169{font-size:72.015874px;}
.fsb_c01169{font-size:78.009983px;}
.fsf_c01169{font-size:78.018874px;}
.fs2_c01169{font-size:78.022461px;}
.fs8_c01169{font-size:78.028426px;}
.fs7_c01169{font-size:84.018520px;}
.fse_c01169{font-size:84.030612px;}
.fs9_c01169{font-size:90.000000px;}
.fs6_c01169{font-size:90.008820px;}
.fs1_c01169{font-size:90.025916px;}
.fsa_c01169{font-size:90.043235px;}
.fs5_c01169{font-size:114.000000px;}
.fsd_c01169{font-size:120.043732px;}
.fs3_c01169{font-size:126.000000px;}
.y0_c01169{bottom:0.000000px;}
.y70_c01169{bottom:257.622651px;}
.y71_c01169{bottom:258.836619px;}
.y72_c01169{bottom:261.127050px;}
.y6d_c01169{bottom:292.695000px;}
.y6e_c01169{bottom:293.545641px;}
.y6f_c01169{bottom:294.289659px;}
.y66_c01169{bottom:359.569875px;}
.y67_c01169{bottom:359.958019px;}
.y68_c01169{bottom:362.058654px;}
.y69_c01169{bottom:363.172548px;}
.y6a_c01169{bottom:365.271968px;}
.y6b_c01169{bottom:366.279968px;}
.y6c_c01169{bottom:367.383131px;}
.y5e_c01169{bottom:396.871659px;}
.y5f_c01169{bottom:397.380014px;}
.y60_c01169{bottom:397.908804px;}
.y61_c01169{bottom:398.868008px;}
.y62_c01169{bottom:401.047270px;}
.y63_c01169{bottom:401.525033px;}
.y64_c01169{bottom:402.702561px;}
.y65_c01169{bottom:403.064948px;}
.y53_c01169{bottom:424.110000px;}
.y54_c01169{bottom:425.122338px;}
.y55_c01169{bottom:427.646541px;}
.y56_c01169{bottom:427.814940px;}
.y57_c01169{bottom:429.760843px;}
.y58_c01169{bottom:430.219547px;}
.y59_c01169{bottom:431.867451px;}
.y5a_c01169{bottom:433.937244px;}
.y5b_c01169{bottom:437.012490px;}
.y5c_c01169{bottom:438.147948px;}
.y5d_c01169{bottom:439.297581px;}
.y49_c01169{bottom:642.370500px;}
.y4a_c01169{bottom:643.268660px;}
.y4b_c01169{bottom:644.103284px;}
.y4c_c01169{bottom:645.378277px;}
.y4d_c01169{bottom:646.589736px;}
.y4e_c01169{bottom:647.146215px;}
.y4f_c01169{bottom:647.341452px;}
.y50_c01169{bottom:648.650088px;}
.y51_c01169{bottom:649.549665px;}
.y52_c01169{bottom:652.308561px;}
.y38_c01169{bottom:674.328541px;}
.y39_c01169{bottom:675.707311px;}
.y3a_c01169{bottom:677.272477px;}
.y3b_c01169{bottom:679.759881px;}
.y3c_c01169{bottom:680.852670px;}
.y3d_c01169{bottom:681.410950px;}
.y3e_c01169{bottom:682.997086px;}
.y3f_c01169{bottom:684.198435px;}
.y40_c01169{bottom:687.492832px;}
.y41_c01169{bottom:689.173183px;}
.y34_c01169{bottom:707.154000px;}
.y35_c01169{bottom:707.245233px;}
.y36_c01169{bottom:708.885241px;}
.y37_c01169{bottom:710.595093px;}
.y42_c01169{bottom:716.316000px;}
.y43_c01169{bottom:716.778120px;}
.y44_c01169{bottom:717.296808px;}
.y45_c01169{bottom:718.737768px;}
.y46_c01169{bottom:719.330352px;}
.y47_c01169{bottom:721.252848px;}
.y48_c01169{bottom:723.373968px;}
.y33_c01169{bottom:746.508000px;}
.y2a_c01169{bottom:780.579000px;}
.y2b_c01169{bottom:782.025822px;}
.y2c_c01169{bottom:783.616621px;}
.y2d_c01169{bottom:786.209350px;}
.y2e_c01169{bottom:786.934705px;}
.y2f_c01169{bottom:789.304077px;}
.y30_c01169{bottom:790.805453px;}
.y31_c01169{bottom:791.665753px;}
.y32_c01169{bottom:795.545006px;}
.y21_c01169{bottom:818.914500px;}
.y22_c01169{bottom:819.819873px;}
.y23_c01169{bottom:821.003801px;}
.y24_c01169{bottom:824.383247px;}
.y25_c01169{bottom:825.777720px;}
.y26_c01169{bottom:827.044366px;}
.y27_c01169{bottom:827.716009px;}
.y28_c01169{bottom:829.114988px;}
.y29_c01169{bottom:830.020927px;}
.y14_c01169{bottom:855.093000px;}
.y15_c01169{bottom:855.408084px;}
.y16_c01169{bottom:855.989994px;}
.y17_c01169{bottom:857.005764px;}
.y18_c01169{bottom:858.052299px;}
.y19_c01169{bottom:858.900426px;}
.y1a_c01169{bottom:859.634208px;}
.y1b_c01169{bottom:860.229537px;}
.y1c_c01169{bottom:860.549892px;}
.y1d_c01169{bottom:861.098034px;}
.y1e_c01169{bottom:861.865290px;}
.y1f_c01169{bottom:862.741158px;}
.y20_c01169{bottom:863.355051px;}
.y13_c01169{bottom:880.053000px;}
.y12_c01169{bottom:895.749000px;}
.y11_c01169{bottom:931.284000px;}
.yc_c01169{bottom:966.142380px;}
.yd_c01169{bottom:969.078264px;}
.ye_c01169{bottom:970.999296px;}
.yf_c01169{bottom:971.561184px;}
.y2_c01169{bottom:994.963500px;}
.y3_c01169{bottom:996.071040px;}
.y4_c01169{bottom:996.597072px;}
.y5_c01169{bottom:999.985284px;}
.y6_c01169{bottom:1000.554624px;}
.y7_c01169{bottom:1003.236408px;}
.y8_c01169{bottom:1003.756356px;}
.y9_c01169{bottom:1004.073768px;}
.ya_c01169{bottom:1006.075836px;}
.yb_c01169{bottom:1007.124048px;}
.y10_c01169{bottom:1024.668000px;}
.y1_c01169{bottom:1057.590000px;}
.h2_c01169{height:18.000000px;}
.h6_c01169{height:48.000000px;}
.he_c01169{height:72.015874px;}
.hd_c01169{height:78.009983px;}
.h11_c01169{height:78.018874px;}
.h4_c01169{height:78.022461px;}
.ha_c01169{height:78.028426px;}
.h9_c01169{height:84.018520px;}
.h10_c01169{height:84.030612px;}
.hb_c01169{height:90.000000px;}
.h8_c01169{height:90.008820px;}
.h3_c01169{height:90.025916px;}
.hc_c01169{height:90.043235px;}
.h7_c01169{height:114.000000px;}
.hf_c01169{height:120.043732px;}
.h5_c01169{height:126.000000px;}
.h1_c01169{height:1258.500000px;}
.h0_c01169{height:1258.740000px;}
.w0_c01169{width:904.200000px;}
.w1_c01169{width:904.500000px;}
.x0_c01169{left:0.000000px;}
.x12_c01169{left:19.980000px;}
.x42_c01169{left:39.690000px;}
.x43_c01169{left:67.500000px;}
.x49_c01169{left:69.583500px;}
.x29_c01169{left:75.571500px;}
.x13_c01169{left:93.690000px;}
.x2a_c01169{left:98.077500px;}
.x26_c01169{left:114.750000px;}
.x10_c01169{left:117.180000px;}
.x4c_c01169{left:119.354222px;}
.x4a_c01169{left:122.487000px;}
.x27_c01169{left:129.330000px;}
.x14_c01169{left:131.220000px;}
.x1d_c01169{left:133.920000px;}
.x2b_c01169{left:139.642500px;}
.x5f_c01169{left:141.685500px;}
.x28_c01169{left:143.100000px;}
.x3a_c01169{left:144.501000px;}
.x2_c01169{left:159.883500px;}
.x31_c01169{left:167.604000px;}
.x4d_c01169{left:174.534498px;}
.x4b_c01169{left:177.643500px;}
.x60_c01169{left:179.179500px;}
.x44_c01169{left:190.620000px;}
.x15_c01169{left:196.830000px;}
.x3b_c01169{left:198.087000px;}
.x3_c01169{left:206.031000px;}
.x32_c01169{left:210.717000px;}
.x2c_c01169{left:212.197500px;}
.x5a_c01169{left:226.509000px;}
.x4_c01169{left:227.949000px;}
.x1e_c01169{left:228.960000px;}
.x4e_c01169{left:237.132123px;}
.x16_c01169{left:242.730000px;}
.x3c_c01169{left:257.005500px;}
.x54_c01169{left:265.216500px;}
.x33_c01169{left:267.094500px;}
.x5b_c01169{left:269.278500px;}
.x61_c01169{left:272.668500px;}
.x62_c01169{left:278.905500px;}
.x2d_c01169{left:286.950000px;}
.x55_c01169{left:297.634500px;}
.x45_c01169{left:301.050000px;}
.x5c_c01169{left:309.022500px;}
.x11_c01169{left:315.900000px;}
.x17_c01169{left:329.670000px;}
.x69_c01169{left:331.045127px;}
.x4f_c01169{left:336.599084px;}
.x2e_c01169{left:347.530500px;}
.x63_c01169{left:350.976000px;}
.x3d_c01169{left:353.032500px;}
.x1f_c01169{left:363.420000px;}
.x46_c01169{left:366.660000px;}
.x64_c01169{left:367.965000px;}
.x5_c01169{left:369.124500px;}
.x6f_c01169{left:374.221209px;}
.x3e_c01169{left:379.897500px;}
.x56_c01169{left:387.694500px;}
.xc_c01169{left:389.952252px;}
.x6_c01169{left:392.847000px;}
.x20_c01169{left:399.330000px;}
.x50_c01169{left:402.645860px;}
.x18_c01169{left:418.500000px;}
.x21_c01169{left:419.850000px;}
.x57_c01169{left:424.731000px;}
.x34_c01169{left:428.020500px;}
.x6a_c01169{left:430.299284px;}
.x2f_c01169{left:442.467000px;}
.x5d_c01169{left:453.924000px;}
.x5e_c01169{left:463.221000px;}
.x30_c01169{left:465.349500px;}
.x3f_c01169{left:467.652000px;}
.x22_c01169{left:475.200000px;}
.x70_c01169{left:477.906593px;}
.x19_c01169{left:484.920000px;}
.x35_c01169{left:494.424000px;}
.x1a_c01169{left:503.010000px;}
.x7_c01169{left:504.588000px;}
.x65_c01169{left:505.657500px;}
.x51_c01169{left:514.166099px;}
.x23_c01169{left:518.670000px;}
.x40_c01169{left:523.258500px;}
.x71_c01169{left:524.332359px;}
.x8_c01169{left:526.252500px;}
.xd_c01169{left:529.790832px;}
.x9_c01169{left:539.478000px;}
.x58_c01169{left:544.887000px;}
.x73_c01169{left:549.322500px;}
.x36_c01169{left:554.740500px;}
.x75_c01169{left:557.218038px;}
.x47_c01169{left:558.360000px;}
.x1b_c01169{left:559.980000px;}
.x24_c01169{left:568.890000px;}
.x6b_c01169{left:575.615345px;}
.x37_c01169{left:586.723500px;}
.x74_c01169{left:587.988000px;}
.x6c_c01169{left:607.431632px;}
.x76_c01169{left:610.010883px;}
.x72_c01169{left:611.817947px;}
.x66_c01169{left:619.555500px;}
.xe_c01169{left:621.277920px;}
.xa_c01169{left:622.897500px;}
.x52_c01169{left:645.913058px;}
.xf_c01169{left:648.066864px;}
.x38_c01169{left:653.341500px;}
.x48_c01169{left:654.480000px;}
.x67_c01169{left:661.609500px;}
.xb_c01169{left:666.573000px;}
.x1_c01169{left:667.980000px;}
.x59_c01169{left:677.457000px;}
.x6d_c01169{left:685.902525px;}
.x39_c01169{left:696.481500px;}
.x41_c01169{left:698.797500px;}
.x68_c01169{left:704.188500px;}
.x25_c01169{left:706.050000px;}
.x6e_c01169{left:710.109882px;}
.x53_c01169{left:713.146566px;}
.x1c_c01169{left:738.450000px;}
@media print{
.v0_c01169{vertical-align:0.000000pt;}
.ls0_c01169{letter-spacing:0.000000pt;}
.ws0_c01169{word-spacing:0.000000pt;}
.fs0_c01169{font-size:16.000000pt;}
.fs4_c01169{font-size:42.666667pt;}
.fsc_c01169{font-size:64.014110pt;}
.fsb_c01169{font-size:69.342207pt;}
.fsf_c01169{font-size:69.350110pt;}
.fs2_c01169{font-size:69.353298pt;}
.fs8_c01169{font-size:69.358601pt;}
.fs7_c01169{font-size:74.683129pt;}
.fse_c01169{font-size:74.693878pt;}
.fs9_c01169{font-size:80.000000pt;}
.fs6_c01169{font-size:80.007840pt;}
.fs1_c01169{font-size:80.023037pt;}
.fsa_c01169{font-size:80.038431pt;}
.fs5_c01169{font-size:101.333333pt;}
.fsd_c01169{font-size:106.705540pt;}
.fs3_c01169{font-size:112.000000pt;}
.y0_c01169{bottom:0.000000pt;}
.y70_c01169{bottom:228.997912pt;}
.y71_c01169{bottom:230.076995pt;}
.y72_c01169{bottom:232.112933pt;}
.y6d_c01169{bottom:260.173333pt;}
.y6e_c01169{bottom:260.929459pt;}
.y6f_c01169{bottom:261.590808pt;}
.y66_c01169{bottom:319.617667pt;}
.y67_c01169{bottom:319.962684pt;}
.y68_c01169{bottom:321.829915pt;}
.y69_c01169{bottom:322.820043pt;}
.y6a_c01169{bottom:324.686193pt;}
.y6b_c01169{bottom:325.582193pt;}
.y6c_c01169{bottom:326.562783pt;}
.y5e_c01169{bottom:352.774808pt;}
.y5f_c01169{bottom:353.226679pt;}
.y60_c01169{bottom:353.696715pt;}
.y61_c01169{bottom:354.549340pt;}
.y62_c01169{bottom:356.486463pt;}
.y63_c01169{bottom:356.911140pt;}
.y64_c01169{bottom:357.957832pt;}
.y65_c01169{bottom:358.279953pt;}
.y53_c01169{bottom:376.986667pt;}
.y54_c01169{bottom:377.886523pt;}
.y55_c01169{bottom:380.130259pt;}
.y56_c01169{bottom:380.279947pt;}
.y57_c01169{bottom:382.009639pt;}
.y58_c01169{bottom:382.417375pt;}
.y59_c01169{bottom:383.882179pt;}
.y5a_c01169{bottom:385.721995pt;}
.y5b_c01169{bottom:388.455547pt;}
.y5c_c01169{bottom:389.464843pt;}
.y5d_c01169{bottom:390.486739pt;}
.y49_c01169{bottom:570.996000pt;}
.y4a_c01169{bottom:571.794364pt;}
.y4b_c01169{bottom:572.536252pt;}
.y4c_c01169{bottom:573.669580pt;}
.y4d_c01169{bottom:574.746432pt;}
.y4e_c01169{bottom:575.241080pt;}
.y4f_c01169{bottom:575.414624pt;}
.y50_c01169{bottom:576.577856pt;}
.y51_c01169{bottom:577.377480pt;}
.y52_c01169{bottom:579.829832pt;}
.y38_c01169{bottom:599.403148pt;}
.y39_c01169{bottom:600.628721pt;}
.y3a_c01169{bottom:602.019980pt;}
.y3b_c01169{bottom:604.231005pt;}
.y3c_c01169{bottom:605.202373pt;}
.y3d_c01169{bottom:605.698623pt;}
.y3e_c01169{bottom:607.108521pt;}
.y3f_c01169{bottom:608.176387pt;}
.y40_c01169{bottom:611.104740pt;}
.y41_c01169{bottom:612.598385pt;}
.y34_c01169{bottom:628.581333pt;}
.y35_c01169{bottom:628.662429pt;}
.y36_c01169{bottom:630.120215pt;}
.y37_c01169{bottom:631.640083pt;}
.y42_c01169{bottom:636.725333pt;}
.y43_c01169{bottom:637.136107pt;}
.y44_c01169{bottom:637.597163pt;}
.y45_c01169{bottom:638.878016pt;}
.y46_c01169{bottom:639.404757pt;}
.y47_c01169{bottom:641.113643pt;}
.y48_c01169{bottom:642.999083pt;}
.y33_c01169{bottom:663.562667pt;}
.y2a_c01169{bottom:693.848000pt;}
.y2b_c01169{bottom:695.134064pt;}
.y2c_c01169{bottom:696.548108pt;}
.y2d_c01169{bottom:698.852756pt;}
.y2e_c01169{bottom:699.497516pt;}
.y2f_c01169{bottom:701.603624pt;}
.y30_c01169{bottom:702.938180pt;}
.y31_c01169{bottom:703.702892pt;}
.y32_c01169{bottom:707.151116pt;}
.y21_c01169{bottom:727.924000pt;}
.y22_c01169{bottom:728.728776pt;}
.y23_c01169{bottom:729.781156pt;}
.y24_c01169{bottom:732.785108pt;}
.y25_c01169{bottom:734.024640pt;}
.y26_c01169{bottom:735.150548pt;}
.y27_c01169{bottom:735.747564pt;}
.y28_c01169{bottom:736.991100pt;}
.y29_c01169{bottom:737.796380pt;}
.y14_c01169{bottom:760.082667pt;}
.y15_c01169{bottom:760.362741pt;}
.y16_c01169{bottom:760.879995pt;}
.y17_c01169{bottom:761.782901pt;}
.y18_c01169{bottom:762.713155pt;}
.y19_c01169{bottom:763.467045pt;}
.y1a_c01169{bottom:764.119296pt;}
.y1b_c01169{bottom:764.648477pt;}
.y1c_c01169{bottom:764.933237pt;}
.y1d_c01169{bottom:765.420475pt;}
.y1e_c01169{bottom:766.102480pt;}
.y1f_c01169{bottom:766.881029pt;}
.y20_c01169{bottom:767.426712pt;}
.y13_c01169{bottom:782.269333pt;}
.y12_c01169{bottom:796.221333pt;}
.y11_c01169{bottom:827.808000pt;}
.yc_c01169{bottom:858.793227pt;}
.yd_c01169{bottom:861.402901pt;}
.ye_c01169{bottom:863.110485pt;}
.yf_c01169{bottom:863.609941pt;}
.y2_c01169{bottom:884.412000pt;}
.y3_c01169{bottom:885.396480pt;}
.y4_c01169{bottom:885.864064pt;}
.y5_c01169{bottom:888.875808pt;}
.y6_c01169{bottom:889.381888pt;}
.y7_c01169{bottom:891.765696pt;}
.y8_c01169{bottom:892.227872pt;}
.y9_c01169{bottom:892.510016pt;}
.ya_c01169{bottom:894.289632pt;}
.yb_c01169{bottom:895.221376pt;}
.y10_c01169{bottom:910.816000pt;}
.y1_c01169{bottom:940.080000pt;}
.h2_c01169{height:16.000000pt;}
.h6_c01169{height:42.666667pt;}
.he_c01169{height:64.014110pt;}
.hd_c01169{height:69.342207pt;}
.h11_c01169{height:69.350110pt;}
.h4_c01169{height:69.353298pt;}
.ha_c01169{height:69.358601pt;}
.h9_c01169{height:74.683129pt;}
.h10_c01169{height:74.693878pt;}
.hb_c01169{height:80.000000pt;}
.h8_c01169{height:80.007840pt;}
.h3_c01169{height:80.023037pt;}
.hc_c01169{height:80.038431pt;}
.h7_c01169{height:101.333333pt;}
.hf_c01169{height:106.705540pt;}
.h5_c01169{height:112.000000pt;}
.h1_c01169{height:1118.666667pt;}
.h0_c01169{height:1118.880000pt;}
.w0_c01169{width:803.733333pt;}
.w1_c01169{width:804.000000pt;}
.x0_c01169{left:0.000000pt;}
.x12_c01169{left:17.760000pt;}
.x42_c01169{left:35.280000pt;}
.x43_c01169{left:60.000000pt;}
.x49_c01169{left:61.852000pt;}
.x29_c01169{left:67.174667pt;}
.x13_c01169{left:83.280000pt;}
.x2a_c01169{left:87.180000pt;}
.x26_c01169{left:102.000000pt;}
.x10_c01169{left:104.160000pt;}
.x4c_c01169{left:106.092641pt;}
.x4a_c01169{left:108.877333pt;}
.x27_c01169{left:114.960000pt;}
.x14_c01169{left:116.640000pt;}
.x1d_c01169{left:119.040000pt;}
.x2b_c01169{left:124.126667pt;}
.x5f_c01169{left:125.942667pt;}
.x28_c01169{left:127.200000pt;}
.x3a_c01169{left:128.445333pt;}
.x2_c01169{left:142.118667pt;}
.x31_c01169{left:148.981333pt;}
.x4d_c01169{left:155.141776pt;}
.x4b_c01169{left:157.905333pt;}
.x60_c01169{left:159.270667pt;}
.x44_c01169{left:169.440000pt;}
.x15_c01169{left:174.960000pt;}
.x3b_c01169{left:176.077333pt;}
.x3_c01169{left:183.138667pt;}
.x32_c01169{left:187.304000pt;}
.x2c_c01169{left:188.620000pt;}
.x5a_c01169{left:201.341333pt;}
.x4_c01169{left:202.621333pt;}
.x1e_c01169{left:203.520000pt;}
.x4e_c01169{left:210.784109pt;}
.x16_c01169{left:215.760000pt;}
.x3c_c01169{left:228.449333pt;}
.x54_c01169{left:235.748000pt;}
.x33_c01169{left:237.417333pt;}
.x5b_c01169{left:239.358667pt;}
.x61_c01169{left:242.372000pt;}
.x62_c01169{left:247.916000pt;}
.x2d_c01169{left:255.066667pt;}
.x55_c01169{left:264.564000pt;}
.x45_c01169{left:267.600000pt;}
.x5c_c01169{left:274.686667pt;}
.x11_c01169{left:280.800000pt;}
.x17_c01169{left:293.040000pt;}
.x69_c01169{left:294.262335pt;}
.x4f_c01169{left:299.199185pt;}
.x2e_c01169{left:308.916000pt;}
.x63_c01169{left:311.978667pt;}
.x3d_c01169{left:313.806667pt;}
.x1f_c01169{left:323.040000pt;}
.x46_c01169{left:325.920000pt;}
.x64_c01169{left:327.080000pt;}
.x5_c01169{left:328.110667pt;}
.x6f_c01169{left:332.641075pt;}
.x3e_c01169{left:337.686667pt;}
.x56_c01169{left:344.617333pt;}
.xc_c01169{left:346.624224pt;}
.x6_c01169{left:349.197333pt;}
.x20_c01169{left:354.960000pt;}
.x50_c01169{left:357.907431pt;}
.x18_c01169{left:372.000000pt;}
.x21_c01169{left:373.200000pt;}
.x57_c01169{left:377.538667pt;}
.x34_c01169{left:380.462667pt;}
.x6a_c01169{left:382.488252pt;}
.x2f_c01169{left:393.304000pt;}
.x5d_c01169{left:403.488000pt;}
.x5e_c01169{left:411.752000pt;}
.x30_c01169{left:413.644000pt;}
.x3f_c01169{left:415.690667pt;}
.x22_c01169{left:422.400000pt;}
.x70_c01169{left:424.805860pt;}
.x19_c01169{left:431.040000pt;}
.x35_c01169{left:439.488000pt;}
.x1a_c01169{left:447.120000pt;}
.x7_c01169{left:448.522667pt;}
.x65_c01169{left:449.473333pt;}
.x51_c01169{left:457.036532pt;}
.x23_c01169{left:461.040000pt;}
.x40_c01169{left:465.118667pt;}
.x71_c01169{left:466.073208pt;}
.x8_c01169{left:467.780000pt;}
.xd_c01169{left:470.925184pt;}
.x9_c01169{left:479.536000pt;}
.x58_c01169{left:484.344000pt;}
.x73_c01169{left:488.286667pt;}
.x36_c01169{left:493.102667pt;}
.x75_c01169{left:495.304923pt;}
.x47_c01169{left:496.320000pt;}
.x1b_c01169{left:497.760000pt;}
.x24_c01169{left:505.680000pt;}
.x6b_c01169{left:511.658084pt;}
.x37_c01169{left:521.532000pt;}
.x74_c01169{left:522.656000pt;}
.x6c_c01169{left:539.939228pt;}
.x76_c01169{left:542.231896pt;}
.x72_c01169{left:543.838175pt;}
.x66_c01169{left:550.716000pt;}
.xe_c01169{left:552.247040pt;}
.xa_c01169{left:553.686667pt;}
.x52_c01169{left:574.144940pt;}
.xf_c01169{left:576.059435pt;}
.x38_c01169{left:580.748000pt;}
.x48_c01169{left:581.760000pt;}
.x67_c01169{left:588.097333pt;}
.xb_c01169{left:592.509333pt;}
.x1_c01169{left:593.760000pt;}
.x59_c01169{left:602.184000pt;}
.x6d_c01169{left:609.691133pt;}
.x39_c01169{left:619.094667pt;}
.x41_c01169{left:621.153333pt;}
.x68_c01169{left:625.945333pt;}
.x25_c01169{left:627.600000pt;}
.x6e_c01169{left:631.208784pt;}
.x53_c01169{left:633.908059pt;}
.x1c_c01169{left:656.400000pt;}
}





/* 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_c01170 {
    display:none;
  }
  .loading-indicator_c01170.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01170 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_c01170 { 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_c01170" -> "#page-container .classname_c01170")
 */
.pf_c01170 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01170 { /* 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_c01170.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01170 { /* 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_c01170 { /* 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_c01170 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01170 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01170 {overflow:visible;}
  }
}
.c_c01170 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01170 { /* 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_c01170:after { /* webkit #35443 */
  content: '';
}
.t_c01170:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01170 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 */
}
.__c01170 { /* 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_c01170 { /* info for Javascript */
  display:none;
}
.l_c01170 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01170 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01170 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01170: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_c01170 {
    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_c01170.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01170.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_c01170 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01170{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01170;src:url('chunks/assets/font_53ec0c54e60da7c2d414b553.woff2')format("woff");}.ff1_c01170{font-family:ff1_c01170;line-height:1.000000;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;}
.md8_c01170{transform:matrix(0.143657,0.008781,-0.015252,0.249534,0,0);-ms-transform:matrix(0.143657,0.008781,-0.015252,0.249534,0,0);-webkit-transform:matrix(0.143657,0.008781,-0.015252,0.249534,0,0);}
.m7_c01170{transform:matrix(0.149402,0.011389,-0.019002,0.249277,0,0);-ms-transform:matrix(0.149402,0.011389,-0.019002,0.249277,0,0);-webkit-transform:matrix(0.149402,0.011389,-0.019002,0.249277,0,0);}
.m9_c01170{transform:matrix(0.152363,0.011614,-0.019002,0.249277,0,0);-ms-transform:matrix(0.152363,0.011614,-0.019002,0.249277,0,0);-webkit-transform:matrix(0.152363,0.011614,-0.019002,0.249277,0,0);}
.md0_c01170{transform:matrix(0.154008,0.009413,-0.015252,0.249534,0,0);-ms-transform:matrix(0.154008,0.009413,-0.015252,0.249534,0,0);-webkit-transform:matrix(0.154008,0.009413,-0.015252,0.249534,0,0);}
.md5_c01170{transform:matrix(0.154567,0.009447,-0.015252,0.249534,0,0);-ms-transform:matrix(0.154567,0.009447,-0.015252,0.249534,0,0);-webkit-transform:matrix(0.154567,0.009447,-0.015252,0.249534,0,0);}
.md9_c01170{transform:matrix(0.163410,0.009988,-0.015252,0.249534,0,0);-ms-transform:matrix(0.163410,0.009988,-0.015252,0.249534,0,0);-webkit-transform:matrix(0.163410,0.009988,-0.015252,0.249534,0,0);}
.mcd_c01170{transform:matrix(0.164558,0.010058,-0.015252,0.249534,0,0);-ms-transform:matrix(0.164558,0.010058,-0.015252,0.249534,0,0);-webkit-transform:matrix(0.164558,0.010058,-0.015252,0.249534,0,0);}
.md6_c01170{transform:matrix(0.165222,0.010099,-0.015252,0.249534,0,0);-ms-transform:matrix(0.165222,0.010099,-0.015252,0.249534,0,0);-webkit-transform:matrix(0.165222,0.010099,-0.015252,0.249534,0,0);}
.md2_c01170{transform:matrix(0.166459,0.010174,-0.015252,0.249534,0,0);-ms-transform:matrix(0.166459,0.010174,-0.015252,0.249534,0,0);-webkit-transform:matrix(0.166459,0.010174,-0.015252,0.249534,0,0);}
.md3_c01170{transform:matrix(0.167652,0.010247,-0.015252,0.249534,0,0);-ms-transform:matrix(0.167652,0.010247,-0.015252,0.249534,0,0);-webkit-transform:matrix(0.167652,0.010247,-0.015252,0.249534,0,0);}
.mce_c01170{transform:matrix(0.169983,0.010390,-0.015252,0.249534,0,0);-ms-transform:matrix(0.169983,0.010390,-0.015252,0.249534,0,0);-webkit-transform:matrix(0.169983,0.010390,-0.015252,0.249534,0,0);}
.m38_c01170{transform:matrix(0.171900,0.010335,-0.015003,0.249549,0,0);-ms-transform:matrix(0.171900,0.010335,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.171900,0.010335,-0.015003,0.249549,0,0);}
.m1b_c01170{transform:matrix(0.174824,0.010510,-0.015003,0.249549,0,0);-ms-transform:matrix(0.174824,0.010510,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.174824,0.010510,-0.015003,0.249549,0,0);}
.mcf_c01170{transform:matrix(0.179335,0.010961,-0.015252,0.249534,0,0);-ms-transform:matrix(0.179335,0.010961,-0.015252,0.249534,0,0);-webkit-transform:matrix(0.179335,0.010961,-0.015252,0.249534,0,0);}
.md7_c01170{transform:matrix(0.179490,0.010971,-0.015252,0.249534,0,0);-ms-transform:matrix(0.179490,0.010971,-0.015252,0.249534,0,0);-webkit-transform:matrix(0.179490,0.010971,-0.015252,0.249534,0,0);}
.md4_c01170{transform:matrix(0.183423,0.011211,-0.015252,0.249534,0,0);-ms-transform:matrix(0.183423,0.011211,-0.015252,0.249534,0,0);-webkit-transform:matrix(0.183423,0.011211,-0.015252,0.249534,0,0);}
.m42_c01170{transform:matrix(0.183868,0.011054,-0.015003,0.249549,0,0);-ms-transform:matrix(0.183868,0.011054,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.183868,0.011054,-0.015003,0.249549,0,0);}
.md1_c01170{transform:matrix(0.186247,0.011384,-0.015252,0.249534,0,0);-ms-transform:matrix(0.186247,0.011384,-0.015252,0.249534,0,0);-webkit-transform:matrix(0.186247,0.011384,-0.015252,0.249534,0,0);}
.m89_c01170{transform:matrix(0.186909,0.011050,-0.014754,0.249564,0,0);-ms-transform:matrix(0.186909,0.011050,-0.014754,0.249564,0,0);-webkit-transform:matrix(0.186909,0.011050,-0.014754,0.249564,0,0);}
.mb3_c01170{transform:matrix(0.190905,0.010712,-0.014006,0.249607,0,0);-ms-transform:matrix(0.190905,0.010712,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.190905,0.010712,-0.014006,0.249607,0,0);}
.m73_c01170{transform:matrix(0.195953,0.011584,-0.014754,0.249564,0,0);-ms-transform:matrix(0.195953,0.011584,-0.014754,0.249564,0,0);-webkit-transform:matrix(0.195953,0.011584,-0.014754,0.249564,0,0);}
.m1e_c01170{transform:matrix(0.197064,0.011848,-0.015003,0.249549,0,0);-ms-transform:matrix(0.197064,0.011848,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.197064,0.011848,-0.015003,0.249549,0,0);}
.m44_c01170{transform:matrix(0.200518,0.012055,-0.015003,0.249549,0,0);-ms-transform:matrix(0.200518,0.012055,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.200518,0.012055,-0.015003,0.249549,0,0);}
.m20_c01170{transform:matrix(0.202015,0.012145,-0.015003,0.249549,0,0);-ms-transform:matrix(0.202015,0.012145,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.202015,0.012145,-0.015003,0.249549,0,0);}
.m21_c01170{transform:matrix(0.202444,0.012171,-0.015003,0.249549,0,0);-ms-transform:matrix(0.202444,0.012171,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.202444,0.012171,-0.015003,0.249549,0,0);}
.m25_c01170{transform:matrix(0.202879,0.012197,-0.015003,0.249549,0,0);-ms-transform:matrix(0.202879,0.012197,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.202879,0.012197,-0.015003,0.249549,0,0);}
.m8b_c01170{transform:matrix(0.204248,0.012075,-0.014754,0.249564,0,0);-ms-transform:matrix(0.204248,0.012075,-0.014754,0.249564,0,0);-webkit-transform:matrix(0.204248,0.012075,-0.014754,0.249564,0,0);}
.me2_c01170{transform:matrix(0.204412,0.011049,-0.013494,0.249636,0,0);-ms-transform:matrix(0.204412,0.011049,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.204412,0.011049,-0.013494,0.249636,0,0);}
.mc9_c01170{transform:matrix(0.205042,0.012122,-0.014754,0.249564,0,0);-ms-transform:matrix(0.205042,0.012122,-0.014754,0.249564,0,0);-webkit-transform:matrix(0.205042,0.012122,-0.014754,0.249564,0,0);}
.m2b_c01170{transform:matrix(0.206767,0.012431,-0.015003,0.249549,0,0);-ms-transform:matrix(0.206767,0.012431,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.206767,0.012431,-0.015003,0.249549,0,0);}
.mc1_c01170{transform:matrix(0.208147,0.012305,-0.014754,0.249564,0,0);-ms-transform:matrix(0.208147,0.012305,-0.014754,0.249564,0,0);-webkit-transform:matrix(0.208147,0.012305,-0.014754,0.249564,0,0);}
.m1f_c01170{transform:matrix(0.208374,0.012527,-0.015003,0.249549,0,0);-ms-transform:matrix(0.208374,0.012527,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.208374,0.012527,-0.015003,0.249549,0,0);}
.m2d_c01170{transform:matrix(0.208414,0.012530,-0.015003,0.249549,0,0);-ms-transform:matrix(0.208414,0.012530,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.208414,0.012530,-0.015003,0.249549,0,0);}
.m17_c01170{transform:matrix(0.209167,0.012575,-0.015003,0.249549,0,0);-ms-transform:matrix(0.209167,0.012575,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.209167,0.012575,-0.015003,0.249549,0,0);}
.m47_c01170{transform:matrix(0.210176,0.012636,-0.015003,0.249549,0,0);-ms-transform:matrix(0.210176,0.012636,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.210176,0.012636,-0.015003,0.249549,0,0);}
.m1c_c01170{transform:matrix(0.210450,0.012652,-0.015003,0.249549,0,0);-ms-transform:matrix(0.210450,0.012652,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.210450,0.012652,-0.015003,0.249549,0,0);}
.m4a_c01170{transform:matrix(0.210834,0.012675,-0.015003,0.249549,0,0);-ms-transform:matrix(0.210834,0.012675,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.210834,0.012675,-0.015003,0.249549,0,0);}
.m3b_c01170{transform:matrix(0.211104,0.012692,-0.015003,0.249549,0,0);-ms-transform:matrix(0.211104,0.012692,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.211104,0.012692,-0.015003,0.249549,0,0);}
.m6d_c01170{transform:matrix(0.211168,0.011849,-0.014006,0.249607,0,0);-ms-transform:matrix(0.211168,0.011849,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.211168,0.011849,-0.014006,0.249607,0,0);}
.m27_c01170{transform:matrix(0.211298,0.012703,-0.015003,0.249549,0,0);-ms-transform:matrix(0.211298,0.012703,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.211298,0.012703,-0.015003,0.249549,0,0);}
.m3e_c01170{transform:matrix(0.211588,0.012721,-0.015003,0.249549,0,0);-ms-transform:matrix(0.211588,0.012721,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.211588,0.012721,-0.015003,0.249549,0,0);}
.m2a_c01170{transform:matrix(0.211917,0.012741,-0.015003,0.249549,0,0);-ms-transform:matrix(0.211917,0.012741,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.211917,0.012741,-0.015003,0.249549,0,0);}
.mae_c01170{transform:matrix(0.212236,0.011909,-0.014006,0.249607,0,0);-ms-transform:matrix(0.212236,0.011909,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.212236,0.011909,-0.014006,0.249607,0,0);}
.m29_c01170{transform:matrix(0.212287,0.012763,-0.015003,0.249549,0,0);-ms-transform:matrix(0.212287,0.012763,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.212287,0.012763,-0.015003,0.249549,0,0);}
.mc0_c01170{transform:matrix(0.212764,0.012578,-0.014754,0.249564,0,0);-ms-transform:matrix(0.212764,0.012578,-0.014754,0.249564,0,0);-webkit-transform:matrix(0.212764,0.012578,-0.014754,0.249564,0,0);}
.m48_c01170{transform:matrix(0.214029,0.012867,-0.015003,0.249549,0,0);-ms-transform:matrix(0.214029,0.012867,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.214029,0.012867,-0.015003,0.249549,0,0);}
.m1a_c01170{transform:matrix(0.214293,0.012883,-0.015003,0.249549,0,0);-ms-transform:matrix(0.214293,0.012883,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.214293,0.012883,-0.015003,0.249549,0,0);}
.mc7_c01170{transform:matrix(0.214685,0.012692,-0.014754,0.249564,0,0);-ms-transform:matrix(0.214685,0.012692,-0.014754,0.249564,0,0);-webkit-transform:matrix(0.214685,0.012692,-0.014754,0.249564,0,0);}
.m15_c01170{transform:matrix(0.214862,0.012918,-0.015003,0.249549,0,0);-ms-transform:matrix(0.214862,0.012918,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.214862,0.012918,-0.015003,0.249549,0,0);}
.mac_c01170{transform:matrix(0.215995,0.012120,-0.014006,0.249607,0,0);-ms-transform:matrix(0.215995,0.012120,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.215995,0.012120,-0.014006,0.249607,0,0);}
.m19_c01170{transform:matrix(0.216025,0.012987,-0.015003,0.249549,0,0);-ms-transform:matrix(0.216025,0.012987,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.216025,0.012987,-0.015003,0.249549,0,0);}
.m43_c01170{transform:matrix(0.217213,0.013059,-0.015003,0.249549,0,0);-ms-transform:matrix(0.217213,0.013059,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.217213,0.013059,-0.015003,0.249549,0,0);}
.mc4_c01170{transform:matrix(0.217356,0.012850,-0.014754,0.249564,0,0);-ms-transform:matrix(0.217356,0.012850,-0.014754,0.249564,0,0);-webkit-transform:matrix(0.217356,0.012850,-0.014754,0.249564,0,0);}
.m40_c01170{transform:matrix(0.219309,0.013185,-0.015003,0.249549,0,0);-ms-transform:matrix(0.219309,0.013185,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.219309,0.013185,-0.015003,0.249549,0,0);}
.m8d_c01170{transform:matrix(0.219367,0.012969,-0.014754,0.249564,0,0);-ms-transform:matrix(0.219367,0.012969,-0.014754,0.249564,0,0);-webkit-transform:matrix(0.219367,0.012969,-0.014754,0.249564,0,0);}
.mcc_c01170{transform:matrix(0.219527,0.012978,-0.014754,0.249564,0,0);-ms-transform:matrix(0.219527,0.012978,-0.014754,0.249564,0,0);-webkit-transform:matrix(0.219527,0.012978,-0.014754,0.249564,0,0);}
.m24_c01170{transform:matrix(0.219539,0.013199,-0.015003,0.249549,0,0);-ms-transform:matrix(0.219539,0.013199,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.219539,0.013199,-0.015003,0.249549,0,0);}
.m41_c01170{transform:matrix(0.220402,0.013251,-0.015003,0.249549,0,0);-ms-transform:matrix(0.220402,0.013251,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.220402,0.013251,-0.015003,0.249549,0,0);}
.m8_c01170{transform:matrix(0.221522,0.016886,-0.019002,0.249277,0,0);-ms-transform:matrix(0.221522,0.016886,-0.019002,0.249277,0,0);-webkit-transform:matrix(0.221522,0.016886,-0.019002,0.249277,0,0);}
.ma7_c01170{transform:matrix(0.221573,0.013099,-0.014754,0.249564,0,0);-ms-transform:matrix(0.221573,0.013099,-0.014754,0.249564,0,0);-webkit-transform:matrix(0.221573,0.013099,-0.014754,0.249564,0,0);}
.m30_c01170{transform:matrix(0.221635,0.013325,-0.015003,0.249549,0,0);-ms-transform:matrix(0.221635,0.013325,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.221635,0.013325,-0.015003,0.249549,0,0);}
.m52_c01170{transform:matrix(0.222633,0.013385,-0.015003,0.249549,0,0);-ms-transform:matrix(0.222633,0.013385,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.222633,0.013385,-0.015003,0.249549,0,0);}
.m45_c01170{transform:matrix(0.222668,0.013387,-0.015003,0.249549,0,0);-ms-transform:matrix(0.222668,0.013387,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.222668,0.013387,-0.015003,0.249549,0,0);}
.m50_c01170{transform:matrix(0.222673,0.013387,-0.015003,0.249549,0,0);-ms-transform:matrix(0.222673,0.013387,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.222673,0.013387,-0.015003,0.249549,0,0);}
.m9e_c01170{transform:matrix(0.223285,0.013200,-0.014754,0.249564,0,0);-ms-transform:matrix(0.223285,0.013200,-0.014754,0.249564,0,0);-webkit-transform:matrix(0.223285,0.013200,-0.014754,0.249564,0,0);}
.m3d_c01170{transform:matrix(0.224415,0.013492,-0.015003,0.249549,0,0);-ms-transform:matrix(0.224415,0.013492,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.224415,0.013492,-0.015003,0.249549,0,0);}
.m9c_c01170{transform:matrix(0.224952,0.013299,-0.014754,0.249564,0,0);-ms-transform:matrix(0.224952,0.013299,-0.014754,0.249564,0,0);-webkit-transform:matrix(0.224952,0.013299,-0.014754,0.249564,0,0);}
.mc5_c01170{transform:matrix(0.225546,0.013334,-0.014754,0.249564,0,0);-ms-transform:matrix(0.225546,0.013334,-0.014754,0.249564,0,0);-webkit-transform:matrix(0.225546,0.013334,-0.014754,0.249564,0,0);}
.m28_c01170{transform:matrix(0.225932,0.013583,-0.015003,0.249549,0,0);-ms-transform:matrix(0.225932,0.013583,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.225932,0.013583,-0.015003,0.249549,0,0);}
.m26_c01170{transform:matrix(0.226491,0.013617,-0.015003,0.249549,0,0);-ms-transform:matrix(0.226491,0.013617,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.226491,0.013617,-0.015003,0.249549,0,0);}
.m56_c01170{transform:matrix(0.227020,0.013649,-0.015003,0.249549,0,0);-ms-transform:matrix(0.227020,0.013649,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.227020,0.013649,-0.015003,0.249549,0,0);}
.m87_c01170{transform:matrix(0.227034,0.013422,-0.014754,0.249564,0,0);-ms-transform:matrix(0.227034,0.013422,-0.014754,0.249564,0,0);-webkit-transform:matrix(0.227034,0.013422,-0.014754,0.249564,0,0);}
.m3c_c01170{transform:matrix(0.227674,0.013688,-0.015003,0.249549,0,0);-ms-transform:matrix(0.227674,0.013688,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.227674,0.013688,-0.015003,0.249549,0,0);}
.mbf_c01170{transform:matrix(0.227837,0.013469,-0.014754,0.249564,0,0);-ms-transform:matrix(0.227837,0.013469,-0.014754,0.249564,0,0);-webkit-transform:matrix(0.227837,0.013469,-0.014754,0.249564,0,0);}
.ma9_c01170{transform:matrix(0.227921,0.012789,-0.014006,0.249607,0,0);-ms-transform:matrix(0.227921,0.012789,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.227921,0.012789,-0.014006,0.249607,0,0);}
.mb0_c01170{transform:matrix(0.228336,0.012812,-0.014006,0.249607,0,0);-ms-transform:matrix(0.228336,0.012812,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.228336,0.012812,-0.014006,0.249607,0,0);}
.ma1_c01170{transform:matrix(0.229070,0.013542,-0.014754,0.249564,0,0);-ms-transform:matrix(0.229070,0.013542,-0.014754,0.249564,0,0);-webkit-transform:matrix(0.229070,0.013542,-0.014754,0.249564,0,0);}
.ma5_c01170{transform:matrix(0.229125,0.013545,-0.014754,0.249564,0,0);-ms-transform:matrix(0.229125,0.013545,-0.014754,0.249564,0,0);-webkit-transform:matrix(0.229125,0.013545,-0.014754,0.249564,0,0);}
.mf_c01170{transform:matrix(0.229800,0.013816,-0.015003,0.249549,0,0);-ms-transform:matrix(0.229800,0.013816,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.229800,0.013816,-0.015003,0.249549,0,0);}
.m63_c01170{transform:matrix(0.229853,0.012898,-0.014006,0.249607,0,0);-ms-transform:matrix(0.229853,0.012898,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.229853,0.012898,-0.014006,0.249607,0,0);}
.m4b_c01170{transform:matrix(0.229925,0.013823,-0.015003,0.249549,0,0);-ms-transform:matrix(0.229925,0.013823,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.229925,0.013823,-0.015003,0.249549,0,0);}
.mca_c01170{transform:matrix(0.230023,0.013599,-0.014754,0.249564,0,0);-ms-transform:matrix(0.230023,0.013599,-0.014754,0.249564,0,0);-webkit-transform:matrix(0.230023,0.013599,-0.014754,0.249564,0,0);}
.m16_c01170{transform:matrix(0.230080,0.013832,-0.015003,0.249549,0,0);-ms-transform:matrix(0.230080,0.013832,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.230080,0.013832,-0.015003,0.249549,0,0);}
.m94_c01170{transform:matrix(0.230493,0.013626,-0.014754,0.249564,0,0);-ms-transform:matrix(0.230493,0.013626,-0.014754,0.249564,0,0);-webkit-transform:matrix(0.230493,0.013626,-0.014754,0.249564,0,0);}
.m31_c01170{transform:matrix(0.231876,0.013940,-0.015003,0.249549,0,0);-ms-transform:matrix(0.231876,0.013940,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.231876,0.013940,-0.015003,0.249549,0,0);}
.mdc_c01170{transform:matrix(0.232217,0.014194,-0.015252,0.249534,0,0);-ms-transform:matrix(0.232217,0.014194,-0.015252,0.249534,0,0);-webkit-transform:matrix(0.232217,0.014194,-0.015252,0.249534,0,0);}
.mdf_c01170{transform:matrix(0.233260,0.014257,-0.015252,0.249534,0,0);-ms-transform:matrix(0.233260,0.014257,-0.015252,0.249534,0,0);-webkit-transform:matrix(0.233260,0.014257,-0.015252,0.249534,0,0);}
.m69_c01170{transform:matrix(0.233328,0.013093,-0.014006,0.249607,0,0);-ms-transform:matrix(0.233328,0.013093,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.233328,0.013093,-0.014006,0.249607,0,0);}
.mc2_c01170{transform:matrix(0.233432,0.013800,-0.014754,0.249564,0,0);-ms-transform:matrix(0.233432,0.013800,-0.014754,0.249564,0,0);-webkit-transform:matrix(0.233432,0.013800,-0.014754,0.249564,0,0);}
.m6c_c01170{transform:matrix(0.234012,0.013131,-0.014006,0.249607,0,0);-ms-transform:matrix(0.234012,0.013131,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.234012,0.013131,-0.014006,0.249607,0,0);}
.me5_c01170{transform:matrix(0.234018,0.012650,-0.013494,0.249636,0,0);-ms-transform:matrix(0.234018,0.012650,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.234018,0.012650,-0.013494,0.249636,0,0);}
.m7c_c01170{transform:matrix(0.234670,0.013873,-0.014754,0.249564,0,0);-ms-transform:matrix(0.234670,0.013873,-0.014754,0.249564,0,0);-webkit-transform:matrix(0.234670,0.013873,-0.014754,0.249564,0,0);}
.mc_c01170{transform:matrix(0.235330,0.014148,-0.015003,0.249549,0,0);-ms-transform:matrix(0.235330,0.014148,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.235330,0.014148,-0.015003,0.249549,0,0);}
.m4d_c01170{transform:matrix(0.235939,0.014185,-0.015003,0.249549,0,0);-ms-transform:matrix(0.235939,0.014185,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.235939,0.014185,-0.015003,0.249549,0,0);}
.m2f_c01170{transform:matrix(0.235944,0.014185,-0.015003,0.249549,0,0);-ms-transform:matrix(0.235944,0.014185,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.235944,0.014185,-0.015003,0.249549,0,0);}
.mb7_c01170{transform:matrix(0.236033,0.013954,-0.014754,0.249564,0,0);-ms-transform:matrix(0.236033,0.013954,-0.014754,0.249564,0,0);-webkit-transform:matrix(0.236033,0.013954,-0.014754,0.249564,0,0);}
.ma4_c01170{transform:matrix(0.236203,0.013964,-0.014754,0.249564,0,0);-ms-transform:matrix(0.236203,0.013964,-0.014754,0.249564,0,0);-webkit-transform:matrix(0.236203,0.013964,-0.014754,0.249564,0,0);}
.m4e_c01170{transform:matrix(0.236473,0.014217,-0.015003,0.249549,0,0);-ms-transform:matrix(0.236473,0.014217,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.236473,0.014217,-0.015003,0.249549,0,0);}
.mbd_c01170{transform:matrix(0.236757,0.013997,-0.014754,0.249564,0,0);-ms-transform:matrix(0.236757,0.013997,-0.014754,0.249564,0,0);-webkit-transform:matrix(0.236757,0.013997,-0.014754,0.249564,0,0);}
.m71_c01170{transform:matrix(0.238119,0.014077,-0.014754,0.249564,0,0);-ms-transform:matrix(0.238119,0.014077,-0.014754,0.249564,0,0);-webkit-transform:matrix(0.238119,0.014077,-0.014754,0.249564,0,0);}
.m6e_c01170{transform:matrix(0.238189,0.014081,-0.014754,0.249564,0,0);-ms-transform:matrix(0.238189,0.014081,-0.014754,0.249564,0,0);-webkit-transform:matrix(0.238189,0.014081,-0.014754,0.249564,0,0);}
.mc6_c01170{transform:matrix(0.238643,0.014108,-0.014754,0.249564,0,0);-ms-transform:matrix(0.238643,0.014108,-0.014754,0.249564,0,0);-webkit-transform:matrix(0.238643,0.014108,-0.014754,0.249564,0,0);}
.m75_c01170{transform:matrix(0.238763,0.014115,-0.014754,0.249564,0,0);-ms-transform:matrix(0.238763,0.014115,-0.014754,0.249564,0,0);-webkit-transform:matrix(0.238763,0.014115,-0.014754,0.249564,0,0);}
.m51_c01170{transform:matrix(0.238769,0.014355,-0.015003,0.249549,0,0);-ms-transform:matrix(0.238769,0.014355,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.238769,0.014355,-0.015003,0.249549,0,0);}
.m96_c01170{transform:matrix(0.239172,0.014139,-0.014754,0.249564,0,0);-ms-transform:matrix(0.239172,0.014139,-0.014754,0.249564,0,0);-webkit-transform:matrix(0.239172,0.014139,-0.014754,0.249564,0,0);}
.m18_c01170{transform:matrix(0.239363,0.014391,-0.015003,0.249549,0,0);-ms-transform:matrix(0.239363,0.014391,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.239363,0.014391,-0.015003,0.249549,0,0);}
.m5a_c01170{transform:matrix(0.239478,0.014397,-0.015003,0.249549,0,0);-ms-transform:matrix(0.239478,0.014397,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.239478,0.014397,-0.015003,0.249549,0,0);}
.mbb_c01170{transform:matrix(0.240216,0.014201,-0.014754,0.249564,0,0);-ms-transform:matrix(0.240216,0.014201,-0.014754,0.249564,0,0);-webkit-transform:matrix(0.240216,0.014201,-0.014754,0.249564,0,0);}
.m2e_c01170{transform:matrix(0.240621,0.014466,-0.015003,0.249549,0,0);-ms-transform:matrix(0.240621,0.014466,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.240621,0.014466,-0.015003,0.249549,0,0);}
.m3f_c01170{transform:matrix(0.241035,0.014491,-0.015003,0.249549,0,0);-ms-transform:matrix(0.241035,0.014491,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.241035,0.014491,-0.015003,0.249549,0,0);}
.m2c_c01170{transform:matrix(0.242028,0.014551,-0.015003,0.249549,0,0);-ms-transform:matrix(0.242028,0.014551,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.242028,0.014551,-0.015003,0.249549,0,0);}
.maa_c01170{transform:matrix(0.242169,0.013589,-0.014006,0.249607,0,0);-ms-transform:matrix(0.242169,0.013589,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.242169,0.013589,-0.014006,0.249607,0,0);}
.m5f_c01170{transform:matrix(0.243740,0.014654,-0.015003,0.249549,0,0);-ms-transform:matrix(0.243740,0.014654,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.243740,0.014654,-0.015003,0.249549,0,0);}
.m6b_c01170{transform:matrix(0.243747,0.013677,-0.014006,0.249607,0,0);-ms-transform:matrix(0.243747,0.013677,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.243747,0.013677,-0.014006,0.249607,0,0);}
.mb4_c01170{transform:matrix(0.243762,0.013678,-0.014006,0.249607,0,0);-ms-transform:matrix(0.243762,0.013678,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.243762,0.013678,-0.014006,0.249607,0,0);}
.m46_c01170{transform:matrix(0.243820,0.014659,-0.015003,0.249549,0,0);-ms-transform:matrix(0.243820,0.014659,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.243820,0.014659,-0.015003,0.249549,0,0);}
.m82_c01170{transform:matrix(0.244044,0.014427,-0.014754,0.249564,0,0);-ms-transform:matrix(0.244044,0.014427,-0.014754,0.249564,0,0);-webkit-transform:matrix(0.244044,0.014427,-0.014754,0.249564,0,0);}
.mab_c01170{transform:matrix(0.244286,0.013707,-0.014006,0.249607,0,0);-ms-transform:matrix(0.244286,0.013707,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.244286,0.013707,-0.014006,0.249607,0,0);}
.ma8_c01170{transform:matrix(0.244351,0.013711,-0.014006,0.249607,0,0);-ms-transform:matrix(0.244351,0.013711,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.244351,0.013711,-0.014006,0.249607,0,0);}
.m1d_c01170{transform:matrix(0.244893,0.014723,-0.015003,0.249549,0,0);-ms-transform:matrix(0.244893,0.014723,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.244893,0.014723,-0.015003,0.249549,0,0);}
.mad_c01170{transform:matrix(0.245629,0.013783,-0.014006,0.249607,0,0);-ms-transform:matrix(0.245629,0.013783,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.245629,0.013783,-0.014006,0.249607,0,0);}
.mdd_c01170{transform:matrix(0.245736,0.015020,-0.015252,0.249534,0,0);-ms-transform:matrix(0.245736,0.015020,-0.015252,0.249534,0,0);-webkit-transform:matrix(0.245736,0.015020,-0.015252,0.249534,0,0);}
.m49_c01170{transform:matrix(0.246066,0.014794,-0.015003,0.249549,0,0);-ms-transform:matrix(0.246066,0.014794,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.246066,0.014794,-0.015003,0.249549,0,0);}
.mcb_c01170{transform:matrix(0.246265,0.014559,-0.014754,0.249564,0,0);-ms-transform:matrix(0.246265,0.014559,-0.014754,0.249564,0,0);-webkit-transform:matrix(0.246265,0.014559,-0.014754,0.249564,0,0);}
.m11_c01170{transform:matrix(0.246495,0.014819,-0.015003,0.249549,0,0);-ms-transform:matrix(0.246495,0.014819,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.246495,0.014819,-0.015003,0.249549,0,0);}
.m33_c01170{transform:matrix(0.246515,0.014821,-0.015003,0.249549,0,0);-ms-transform:matrix(0.246515,0.014821,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.246515,0.014821,-0.015003,0.249549,0,0);}
.mbe_c01170{transform:matrix(0.246599,0.014579,-0.014754,0.249564,0,0);-ms-transform:matrix(0.246599,0.014579,-0.014754,0.249564,0,0);-webkit-transform:matrix(0.246599,0.014579,-0.014754,0.249564,0,0);}
.ma0_c01170{transform:matrix(0.246869,0.014594,-0.014754,0.249564,0,0);-ms-transform:matrix(0.246869,0.014594,-0.014754,0.249564,0,0);-webkit-transform:matrix(0.246869,0.014594,-0.014754,0.249564,0,0);}
.m90_c01170{transform:matrix(0.247034,0.014604,-0.014754,0.249564,0,0);-ms-transform:matrix(0.247034,0.014604,-0.014754,0.249564,0,0);-webkit-transform:matrix(0.247034,0.014604,-0.014754,0.249564,0,0);}
.m32_c01170{transform:matrix(0.247798,0.014898,-0.015003,0.249549,0,0);-ms-transform:matrix(0.247798,0.014898,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.247798,0.014898,-0.015003,0.249549,0,0);}
.m8a_c01170{transform:matrix(0.247887,0.014655,-0.014754,0.249564,0,0);-ms-transform:matrix(0.247887,0.014655,-0.014754,0.249564,0,0);-webkit-transform:matrix(0.247887,0.014655,-0.014754,0.249564,0,0);}
.m7e_c01170{transform:matrix(0.248012,0.014662,-0.014754,0.249564,0,0);-ms-transform:matrix(0.248012,0.014662,-0.014754,0.249564,0,0);-webkit-transform:matrix(0.248012,0.014662,-0.014754,0.249564,0,0);}
.m7a_c01170{transform:matrix(0.248661,0.014700,-0.014754,0.249564,0,0);-ms-transform:matrix(0.248661,0.014700,-0.014754,0.249564,0,0);-webkit-transform:matrix(0.248661,0.014700,-0.014754,0.249564,0,0);}
.m80_c01170{transform:matrix(0.248666,0.014701,-0.014754,0.249564,0,0);-ms-transform:matrix(0.248666,0.014701,-0.014754,0.249564,0,0);-webkit-transform:matrix(0.248666,0.014701,-0.014754,0.249564,0,0);}
.m4c_c01170{transform:matrix(0.249030,0.014972,-0.015003,0.249549,0,0);-ms-transform:matrix(0.249030,0.014972,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.249030,0.014972,-0.015003,0.249549,0,0);}
.me0_c01170{transform:matrix(0.249185,0.015231,-0.015252,0.249534,0,0);-ms-transform:matrix(0.249185,0.015231,-0.015252,0.249534,0,0);-webkit-transform:matrix(0.249185,0.015231,-0.015252,0.249534,0,0);}
.ma3_c01170{transform:matrix(0.249559,0.014754,-0.014754,0.249564,0,0);-ms-transform:matrix(0.249559,0.014754,-0.014754,0.249564,0,0);-webkit-transform:matrix(0.249559,0.014754,-0.014754,0.249564,0,0);}
.m4f_c01170{transform:matrix(0.250063,0.015034,-0.015003,0.249549,0,0);-ms-transform:matrix(0.250063,0.015034,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.250063,0.015034,-0.015003,0.249549,0,0);}
.m70_c01170{transform:matrix(0.250253,0.014795,-0.014754,0.249564,0,0);-ms-transform:matrix(0.250253,0.014795,-0.014754,0.249564,0,0);-webkit-transform:matrix(0.250253,0.014795,-0.014754,0.249564,0,0);}
.m9a_c01170{transform:matrix(0.251815,0.014887,-0.014754,0.249564,0,0);-ms-transform:matrix(0.251815,0.014887,-0.014754,0.249564,0,0);-webkit-transform:matrix(0.251815,0.014887,-0.014754,0.249564,0,0);}
.m92_c01170{transform:matrix(0.252190,0.014909,-0.014754,0.249564,0,0);-ms-transform:matrix(0.252190,0.014909,-0.014754,0.249564,0,0);-webkit-transform:matrix(0.252190,0.014909,-0.014754,0.249564,0,0);}
.m13_c01170{transform:matrix(0.252404,0.015175,-0.015003,0.249549,0,0);-ms-transform:matrix(0.252404,0.015175,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.252404,0.015175,-0.015003,0.249549,0,0);}
.m53_c01170{transform:matrix(0.252804,0.015199,-0.015003,0.249549,0,0);-ms-transform:matrix(0.252804,0.015199,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.252804,0.015199,-0.015003,0.249549,0,0);}
.mba_c01170{transform:matrix(0.253727,0.015000,-0.014754,0.249564,0,0);-ms-transform:matrix(0.253727,0.015000,-0.014754,0.249564,0,0);-webkit-transform:matrix(0.253727,0.015000,-0.014754,0.249564,0,0);}
.m8c_c01170{transform:matrix(0.254031,0.015018,-0.014754,0.249564,0,0);-ms-transform:matrix(0.254031,0.015018,-0.014754,0.249564,0,0);-webkit-transform:matrix(0.254031,0.015018,-0.014754,0.249564,0,0);}
.m61_c01170{transform:matrix(0.254850,0.015322,-0.015003,0.249549,0,0);-ms-transform:matrix(0.254850,0.015322,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.254850,0.015322,-0.015003,0.249549,0,0);}
.me_c01170{transform:matrix(0.254990,0.015330,-0.015003,0.249549,0,0);-ms-transform:matrix(0.254990,0.015330,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.254990,0.015330,-0.015003,0.249549,0,0);}
.m8f_c01170{transform:matrix(0.254995,0.015075,-0.014754,0.249564,0,0);-ms-transform:matrix(0.254995,0.015075,-0.014754,0.249564,0,0);-webkit-transform:matrix(0.254995,0.015075,-0.014754,0.249564,0,0);}
.mc3_c01170{transform:matrix(0.255574,0.015109,-0.014754,0.249564,0,0);-ms-transform:matrix(0.255574,0.015109,-0.014754,0.249564,0,0);-webkit-transform:matrix(0.255574,0.015109,-0.014754,0.249564,0,0);}
.m3a_c01170{transform:matrix(0.255918,0.015386,-0.015003,0.249549,0,0);-ms-transform:matrix(0.255918,0.015386,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.255918,0.015386,-0.015003,0.249549,0,0);}
.mc8_c01170{transform:matrix(0.256013,0.015135,-0.014754,0.249564,0,0);-ms-transform:matrix(0.256013,0.015135,-0.014754,0.249564,0,0);-webkit-transform:matrix(0.256013,0.015135,-0.014754,0.249564,0,0);}
.mb1_c01170{transform:matrix(0.256412,0.014388,-0.014006,0.249607,0,0);-ms-transform:matrix(0.256412,0.014388,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.256412,0.014388,-0.014006,0.249607,0,0);}
.m35_c01170{transform:matrix(0.257231,0.015465,-0.015003,0.249549,0,0);-ms-transform:matrix(0.257231,0.015465,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.257231,0.015465,-0.015003,0.249549,0,0);}
.ma6_c01170{transform:matrix(0.258159,0.015262,-0.014754,0.249564,0,0);-ms-transform:matrix(0.258159,0.015262,-0.014754,0.249564,0,0);-webkit-transform:matrix(0.258159,0.015262,-0.014754,0.249564,0,0);}
.mb2_c01170{transform:matrix(0.258773,0.014520,-0.014006,0.249607,0,0);-ms-transform:matrix(0.258773,0.014520,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.258773,0.014520,-0.014006,0.249607,0,0);}
.m6a_c01170{transform:matrix(0.259402,0.014556,-0.014006,0.249607,0,0);-ms-transform:matrix(0.259402,0.014556,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.259402,0.014556,-0.014006,0.249607,0,0);}
.me4_c01170{transform:matrix(0.259751,0.014041,-0.013494,0.249636,0,0);-ms-transform:matrix(0.259751,0.014041,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.259751,0.014041,-0.013494,0.249636,0,0);}
.mb5_c01170{transform:matrix(0.259981,0.015370,-0.014754,0.249564,0,0);-ms-transform:matrix(0.259981,0.015370,-0.014754,0.249564,0,0);-webkit-transform:matrix(0.259981,0.015370,-0.014754,0.249564,0,0);}
.m83_c01170{transform:matrix(0.260435,0.015396,-0.014754,0.249564,0,0);-ms-transform:matrix(0.260435,0.015396,-0.014754,0.249564,0,0);-webkit-transform:matrix(0.260435,0.015396,-0.014754,0.249564,0,0);}
.mde_c01170{transform:matrix(0.260898,0.015947,-0.015252,0.249534,0,0);-ms-transform:matrix(0.260898,0.015947,-0.015252,0.249534,0,0);-webkit-transform:matrix(0.260898,0.015947,-0.015252,0.249534,0,0);}
.m60_c01170{transform:matrix(0.261248,0.015706,-0.015003,0.249549,0,0);-ms-transform:matrix(0.261248,0.015706,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.261248,0.015706,-0.015003,0.249549,0,0);}
.m66_c01170{transform:matrix(0.261279,0.014661,-0.014006,0.249607,0,0);-ms-transform:matrix(0.261279,0.014661,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.261279,0.014661,-0.014006,0.249607,0,0);}
.m59_c01170{transform:matrix(0.261687,0.015733,-0.015003,0.249549,0,0);-ms-transform:matrix(0.261687,0.015733,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.261687,0.015733,-0.015003,0.249549,0,0);}
.m5b_c01170{transform:matrix(0.261732,0.015735,-0.015003,0.249549,0,0);-ms-transform:matrix(0.261732,0.015735,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.261732,0.015735,-0.015003,0.249549,0,0);}
.m5e_c01170{transform:matrix(0.261737,0.015736,-0.015003,0.249549,0,0);-ms-transform:matrix(0.261737,0.015736,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.261737,0.015736,-0.015003,0.249549,0,0);}
.m54_c01170{transform:matrix(0.261872,0.015744,-0.015003,0.249549,0,0);-ms-transform:matrix(0.261872,0.015744,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.261872,0.015744,-0.015003,0.249549,0,0);}
.ma_c01170{transform:matrix(0.262411,0.015776,-0.015003,0.249549,0,0);-ms-transform:matrix(0.262411,0.015776,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.262411,0.015776,-0.015003,0.249549,0,0);}
.m39_c01170{transform:matrix(0.262426,0.015777,-0.015003,0.249549,0,0);-ms-transform:matrix(0.262426,0.015777,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.262426,0.015777,-0.015003,0.249549,0,0);}
.me1_c01170{transform:matrix(0.262600,0.016051,-0.015252,0.249534,0,0);-ms-transform:matrix(0.262600,0.016051,-0.015252,0.249534,0,0);-webkit-transform:matrix(0.262600,0.016051,-0.015252,0.249534,0,0);}
.m84_c01170{transform:matrix(0.262946,0.015545,-0.014754,0.249564,0,0);-ms-transform:matrix(0.262946,0.015545,-0.014754,0.249564,0,0);-webkit-transform:matrix(0.262946,0.015545,-0.014754,0.249564,0,0);}
.m93_c01170{transform:matrix(0.263300,0.015566,-0.014754,0.249564,0,0);-ms-transform:matrix(0.263300,0.015566,-0.014754,0.249564,0,0);-webkit-transform:matrix(0.263300,0.015566,-0.014754,0.249564,0,0);}
.m98_c01170{transform:matrix(0.263325,0.015567,-0.014754,0.249564,0,0);-ms-transform:matrix(0.263325,0.015567,-0.014754,0.249564,0,0);-webkit-transform:matrix(0.263325,0.015567,-0.014754,0.249564,0,0);}
.m86_c01170{transform:matrix(0.263904,0.015602,-0.014754,0.249564,0,0);-ms-transform:matrix(0.263904,0.015602,-0.014754,0.249564,0,0);-webkit-transform:matrix(0.263904,0.015602,-0.014754,0.249564,0,0);}
.maf_c01170{transform:matrix(0.264384,0.014835,-0.014006,0.249607,0,0);-ms-transform:matrix(0.264384,0.014835,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.264384,0.014835,-0.014006,0.249607,0,0);}
.m62_c01170{transform:matrix(0.264679,0.014852,-0.014006,0.249607,0,0);-ms-transform:matrix(0.264679,0.014852,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.264679,0.014852,-0.014006,0.249607,0,0);}
.m76_c01170{transform:matrix(0.265177,0.015677,-0.014754,0.249564,0,0);-ms-transform:matrix(0.265177,0.015677,-0.014754,0.249564,0,0);-webkit-transform:matrix(0.265177,0.015677,-0.014754,0.249564,0,0);}
.m5d_c01170{transform:matrix(0.265361,0.015954,-0.015003,0.249549,0,0);-ms-transform:matrix(0.265361,0.015954,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.265361,0.015954,-0.015003,0.249549,0,0);}
.md_c01170{transform:matrix(0.265491,0.015961,-0.015003,0.249549,0,0);-ms-transform:matrix(0.265491,0.015961,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.265491,0.015961,-0.015003,0.249549,0,0);}
.m85_c01170{transform:matrix(0.265766,0.015712,-0.014754,0.249564,0,0);-ms-transform:matrix(0.265766,0.015712,-0.014754,0.249564,0,0);-webkit-transform:matrix(0.265766,0.015712,-0.014754,0.249564,0,0);}
.m14_c01170{transform:matrix(0.265830,0.015982,-0.015003,0.249549,0,0);-ms-transform:matrix(0.265830,0.015982,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.265830,0.015982,-0.015003,0.249549,0,0);}
.m10_c01170{transform:matrix(0.266050,0.015995,-0.015003,0.249549,0,0);-ms-transform:matrix(0.266050,0.015995,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.266050,0.015995,-0.015003,0.249549,0,0);}
.m34_c01170{transform:matrix(0.266144,0.016001,-0.015003,0.249549,0,0);-ms-transform:matrix(0.266144,0.016001,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.266144,0.016001,-0.015003,0.249549,0,0);}
.m12_c01170{transform:matrix(0.266434,0.016018,-0.015003,0.249549,0,0);-ms-transform:matrix(0.266434,0.016018,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.266434,0.016018,-0.015003,0.249549,0,0);}
.mb6_c01170{transform:matrix(0.266565,0.015759,-0.014754,0.249564,0,0);-ms-transform:matrix(0.266565,0.015759,-0.014754,0.249564,0,0);-webkit-transform:matrix(0.266565,0.015759,-0.014754,0.249564,0,0);}
.m8e_c01170{transform:matrix(0.267193,0.015796,-0.014754,0.249564,0,0);-ms-transform:matrix(0.267193,0.015796,-0.014754,0.249564,0,0);-webkit-transform:matrix(0.267193,0.015796,-0.014754,0.249564,0,0);}
.m55_c01170{transform:matrix(0.267667,0.016092,-0.015003,0.249549,0,0);-ms-transform:matrix(0.267667,0.016092,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.267667,0.016092,-0.015003,0.249549,0,0);}
.m7b_c01170{transform:matrix(0.267797,0.015832,-0.014754,0.249564,0,0);-ms-transform:matrix(0.267797,0.015832,-0.014754,0.249564,0,0);-webkit-transform:matrix(0.267797,0.015832,-0.014754,0.249564,0,0);}
.me7_c01170{transform:matrix(0.267964,0.014485,-0.013494,0.249636,0,0);-ms-transform:matrix(0.267964,0.014485,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.267964,0.014485,-0.013494,0.249636,0,0);}
.m97_c01170{transform:matrix(0.268327,0.015863,-0.014754,0.249564,0,0);-ms-transform:matrix(0.268327,0.015863,-0.014754,0.249564,0,0);-webkit-transform:matrix(0.268327,0.015863,-0.014754,0.249564,0,0);}
.m77_c01170{transform:matrix(0.269040,0.015905,-0.014754,0.249564,0,0);-ms-transform:matrix(0.269040,0.015905,-0.014754,0.249564,0,0);-webkit-transform:matrix(0.269040,0.015905,-0.014754,0.249564,0,0);}
.m9b_c01170{transform:matrix(0.269070,0.015907,-0.014754,0.249564,0,0);-ms-transform:matrix(0.269070,0.015907,-0.014754,0.249564,0,0);-webkit-transform:matrix(0.269070,0.015907,-0.014754,0.249564,0,0);}
.m57_c01170{transform:matrix(0.269184,0.016183,-0.015003,0.249549,0,0);-ms-transform:matrix(0.269184,0.016183,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.269184,0.016183,-0.015003,0.249549,0,0);}
.mda_c01170{transform:matrix(0.269327,0.016462,-0.015252,0.249534,0,0);-ms-transform:matrix(0.269327,0.016462,-0.015252,0.249534,0,0);-webkit-transform:matrix(0.269327,0.016462,-0.015252,0.249534,0,0);}
.ma2_c01170{transform:matrix(0.270034,0.015964,-0.014754,0.249564,0,0);-ms-transform:matrix(0.270034,0.015964,-0.014754,0.249564,0,0);-webkit-transform:matrix(0.270034,0.015964,-0.014754,0.249564,0,0);}
.m91_c01170{transform:matrix(0.270113,0.015969,-0.014754,0.249564,0,0);-ms-transform:matrix(0.270113,0.015969,-0.014754,0.249564,0,0);-webkit-transform:matrix(0.270113,0.015969,-0.014754,0.249564,0,0);}
.m65_c01170{transform:matrix(0.271173,0.015216,-0.014006,0.249607,0,0);-ms-transform:matrix(0.271173,0.015216,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.271173,0.015216,-0.014006,0.249607,0,0);}
.m9d_c01170{transform:matrix(0.271546,0.016053,-0.014754,0.249564,0,0);-ms-transform:matrix(0.271546,0.016053,-0.014754,0.249564,0,0);-webkit-transform:matrix(0.271546,0.016053,-0.014754,0.249564,0,0);}
.mb8_c01170{transform:matrix(0.271631,0.016058,-0.014754,0.249564,0,0);-ms-transform:matrix(0.271631,0.016058,-0.014754,0.249564,0,0);-webkit-transform:matrix(0.271631,0.016058,-0.014754,0.249564,0,0);}
.mb_c01170{transform:matrix(0.271729,0.016336,-0.015003,0.249549,0,0);-ms-transform:matrix(0.271729,0.016336,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.271729,0.016336,-0.015003,0.249549,0,0);}
.m58_c01170{transform:matrix(0.272693,0.016394,-0.015003,0.249549,0,0);-ms-transform:matrix(0.272693,0.016394,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.272693,0.016394,-0.015003,0.249549,0,0);}
.m7f_c01170{transform:matrix(0.272694,0.016121,-0.014754,0.249564,0,0);-ms-transform:matrix(0.272694,0.016121,-0.014754,0.249564,0,0);-webkit-transform:matrix(0.272694,0.016121,-0.014754,0.249564,0,0);}
.m64_c01170{transform:matrix(0.273230,0.015332,-0.014006,0.249607,0,0);-ms-transform:matrix(0.273230,0.015332,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.273230,0.015332,-0.014006,0.249607,0,0);}
.m23_c01170{transform:matrix(0.273366,0.016435,-0.015003,0.249549,0,0);-ms-transform:matrix(0.273366,0.016435,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.273366,0.016435,-0.015003,0.249549,0,0);}
.me3_c01170{transform:matrix(0.273670,0.014793,-0.013494,0.249636,0,0);-ms-transform:matrix(0.273670,0.014793,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.273670,0.014793,-0.013494,0.249636,0,0);}
.m6f_c01170{transform:matrix(0.274401,0.016222,-0.014754,0.249564,0,0);-ms-transform:matrix(0.274401,0.016222,-0.014754,0.249564,0,0);-webkit-transform:matrix(0.274401,0.016222,-0.014754,0.249564,0,0);}
.mdb_c01170{transform:matrix(0.274543,0.016781,-0.015252,0.249534,0,0);-ms-transform:matrix(0.274543,0.016781,-0.015252,0.249534,0,0);-webkit-transform:matrix(0.274543,0.016781,-0.015252,0.249534,0,0);}
.m9f_c01170{transform:matrix(0.274645,0.016237,-0.014754,0.249564,0,0);-ms-transform:matrix(0.274645,0.016237,-0.014754,0.249564,0,0);-webkit-transform:matrix(0.274645,0.016237,-0.014754,0.249564,0,0);}
.m6_c01170{transform:matrix(0.275494,0.013513,-0.012248,0.249700,0,0);-ms-transform:matrix(0.275494,0.013513,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.275494,0.013513,-0.012248,0.249700,0,0);}
.m36_c01170{transform:matrix(0.276052,0.016596,-0.015003,0.249549,0,0);-ms-transform:matrix(0.276052,0.016596,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.276052,0.016596,-0.015003,0.249549,0,0);}
.m72_c01170{transform:matrix(0.276702,0.016358,-0.014754,0.249564,0,0);-ms-transform:matrix(0.276702,0.016358,-0.014754,0.249564,0,0);-webkit-transform:matrix(0.276702,0.016358,-0.014754,0.249564,0,0);}
.m88_c01170{transform:matrix(0.276941,0.016372,-0.014754,0.249564,0,0);-ms-transform:matrix(0.276941,0.016372,-0.014754,0.249564,0,0);-webkit-transform:matrix(0.276941,0.016372,-0.014754,0.249564,0,0);}
.m99_c01170{transform:matrix(0.277281,0.016392,-0.014754,0.249564,0,0);-ms-transform:matrix(0.277281,0.016392,-0.014754,0.249564,0,0);-webkit-transform:matrix(0.277281,0.016392,-0.014754,0.249564,0,0);}
.mb9_c01170{transform:matrix(0.277316,0.016394,-0.014754,0.249564,0,0);-ms-transform:matrix(0.277316,0.016394,-0.014754,0.249564,0,0);-webkit-transform:matrix(0.277316,0.016394,-0.014754,0.249564,0,0);}
.m5c_c01170{transform:matrix(0.277808,0.016702,-0.015003,0.249549,0,0);-ms-transform:matrix(0.277808,0.016702,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.277808,0.016702,-0.015003,0.249549,0,0);}
.m37_c01170{transform:matrix(0.277893,0.016707,-0.015003,0.249549,0,0);-ms-transform:matrix(0.277893,0.016707,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.277893,0.016707,-0.015003,0.249549,0,0);}
.m81_c01170{transform:matrix(0.278139,0.016443,-0.014754,0.249564,0,0);-ms-transform:matrix(0.278139,0.016443,-0.014754,0.249564,0,0);-webkit-transform:matrix(0.278139,0.016443,-0.014754,0.249564,0,0);}
.m1_c01170{transform:matrix(0.278755,0.013673,-0.012248,0.249700,0,0);-ms-transform:matrix(0.278755,0.013673,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.278755,0.013673,-0.012248,0.249700,0,0);}
.mbc_c01170{transform:matrix(0.278833,0.016484,-0.014754,0.249564,0,0);-ms-transform:matrix(0.278833,0.016484,-0.014754,0.249564,0,0);-webkit-transform:matrix(0.278833,0.016484,-0.014754,0.249564,0,0);}
.m78_c01170{transform:matrix(0.279587,0.016529,-0.014754,0.249564,0,0);-ms-transform:matrix(0.279587,0.016529,-0.014754,0.249564,0,0);-webkit-transform:matrix(0.279587,0.016529,-0.014754,0.249564,0,0);}
.me6_c01170{transform:matrix(0.279946,0.015132,-0.013494,0.249636,0,0);-ms-transform:matrix(0.279946,0.015132,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.279946,0.015132,-0.013494,0.249636,0,0);}
.m74_c01170{transform:matrix(0.280765,0.016598,-0.014754,0.249564,0,0);-ms-transform:matrix(0.280765,0.016598,-0.014754,0.249564,0,0);-webkit-transform:matrix(0.280765,0.016598,-0.014754,0.249564,0,0);}
.m79_c01170{transform:matrix(0.283330,0.016750,-0.014754,0.249564,0,0);-ms-transform:matrix(0.283330,0.016750,-0.014754,0.249564,0,0);-webkit-transform:matrix(0.283330,0.016750,-0.014754,0.249564,0,0);}
.m7d_c01170{transform:matrix(0.283770,0.016776,-0.014754,0.249564,0,0);-ms-transform:matrix(0.283770,0.016776,-0.014754,0.249564,0,0);-webkit-transform:matrix(0.283770,0.016776,-0.014754,0.249564,0,0);}
.m95_c01170{transform:matrix(0.283994,0.016789,-0.014754,0.249564,0,0);-ms-transform:matrix(0.283994,0.016789,-0.014754,0.249564,0,0);-webkit-transform:matrix(0.283994,0.016789,-0.014754,0.249564,0,0);}
.m3_c01170{transform:matrix(0.286730,0.014064,-0.012248,0.249700,0,0);-ms-transform:matrix(0.286730,0.014064,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.286730,0.014064,-0.012248,0.249700,0,0);}
.m4_c01170{transform:matrix(0.296713,0.014554,-0.012248,0.249700,0,0);-ms-transform:matrix(0.296713,0.014554,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.296713,0.014554,-0.012248,0.249700,0,0);}
.m5_c01170{transform:matrix(0.301533,0.014790,-0.012248,0.249700,0,0);-ms-transform:matrix(0.301533,0.014790,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.301533,0.014790,-0.012248,0.249700,0,0);}
.m22_c01170{transform:matrix(0.317666,0.019098,-0.015003,0.249549,0,0);-ms-transform:matrix(0.317666,0.019098,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.317666,0.019098,-0.015003,0.249549,0,0);}
.m0_c01170{transform:matrix(0.326957,0.016037,-0.012248,0.249700,0,0);-ms-transform:matrix(0.326957,0.016037,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.326957,0.016037,-0.012248,0.249700,0,0);}
.m67_c01170{transform:matrix(0.343255,0.019261,-0.014006,0.249607,0,0);-ms-transform:matrix(0.343255,0.019261,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.343255,0.019261,-0.014006,0.249607,0,0);}
.m2_c01170{transform:matrix(0.343986,0.016872,-0.012248,0.249700,0,0);-ms-transform:matrix(0.343986,0.016872,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.343986,0.016872,-0.012248,0.249700,0,0);}
.m68_c01170{transform:matrix(0.376742,0.021140,-0.014006,0.249607,0,0);-ms-transform:matrix(0.376742,0.021140,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.376742,0.021140,-0.014006,0.249607,0,0);}
.v0_c01170{vertical-align:0.000000px;}
.ls0_c01170{letter-spacing:0.000000px;}
.sc__c01170{text-shadow:none;}
.sc0_c01170{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__c01170{-webkit-text-stroke:0px transparent;}
.sc0_c01170{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01170{word-spacing:0.000000px;}
.fc0_c01170{color:transparent;}
.fs0_c01170{font-size:60.012059px;}
.fs5_c01170{font-size:71.969033px;}
.fs6_c01170{font-size:71.981458px;}
.fs2_c01170{font-size:71.985743px;}
.fsa_c01170{font-size:71.990099px;}
.fsb_c01170{font-size:72.033004px;}
.fs7_c01170{font-size:77.966453px;}
.fs8_c01170{font-size:77.979912px;}
.fs4_c01170{font-size:77.984554px;}
.fs3_c01170{font-size:83.983366px;}
.fs1_c01170{font-size:83.990970px;}
.fs9_c01170{font-size:107.985149px;}
.y0_c01170{bottom:0.000000px;}
.y7_c01170{bottom:39.098938px;}
.y6_c01170{bottom:41.813661px;}
.y5_c01170{bottom:46.773882px;}
.y4_c01170{bottom:48.415651px;}
.y3_c01170{bottom:54.921283px;}
.y2_c01170{bottom:58.676031px;}
.y1_c01170{bottom:61.326000px;}
.yec_c01170{bottom:79.206459px;}
.yeb_c01170{bottom:85.229052px;}
.yea_c01170{bottom:87.041427px;}
.ye9_c01170{bottom:91.117509px;}
.ye8_c01170{bottom:97.531251px;}
.ye7_c01170{bottom:99.388500px;}
.ye6_c01170{bottom:292.007967px;}
.ye5_c01170{bottom:294.851884px;}
.ye4_c01170{bottom:296.655747px;}
.ye3_c01170{bottom:299.581443px;}
.ye2_c01170{bottom:301.288404px;}
.ye1_c01170{bottom:302.984875px;}
.ye0_c01170{bottom:308.127253px;}
.yde_c01170{bottom:309.659902px;}
.ydd_c01170{bottom:311.627610px;}
.ydf_c01170{bottom:313.241457px;}
.ydc_c01170{bottom:316.391283px;}
.ydb_c01170{bottom:319.138296px;}
.yda_c01170{bottom:321.166394px;}
.yd9_c01170{bottom:328.579175px;}
.yd8_c01170{bottom:331.956897px;}
.yd7_c01170{bottom:333.300941px;}
.yd6_c01170{bottom:341.312131px;}
.yd5_c01170{bottom:342.719950px;}
.yd4_c01170{bottom:345.440703px;}
.yd3_c01170{bottom:349.424888px;}
.yd2_c01170{bottom:350.758500px;}
.yd1_c01170{bottom:450.833779px;}
.yd0_c01170{bottom:454.725302px;}
.ycf_c01170{bottom:461.202263px;}
.yce_c01170{bottom:463.277057px;}
.ycd_c01170{bottom:469.143279px;}
.ycc_c01170{bottom:471.090899px;}
.ycb_c01170{bottom:474.922506px;}
.yca_c01170{bottom:476.968361px;}
.yc9_c01170{bottom:479.527692px;}
.yc8_c01170{bottom:485.451882px;}
.yc7_c01170{bottom:488.639829px;}
.yc6_c01170{bottom:490.545322px;}
.yc4_c01170{bottom:491.689959px;}
.yc5_c01170{bottom:492.529404px;}
.yc3_c01170{bottom:493.770417px;}
.yc2_c01170{bottom:495.750782px;}
.yc1_c01170{bottom:502.218450px;}
.yc0_c01170{bottom:504.243684px;}
.ybf_c01170{bottom:506.848859px;}
.ybe_c01170{bottom:513.312810px;}
.ybd_c01170{bottom:518.624226px;}
.ybc_c01170{bottom:520.554942px;}
.ybb_c01170{bottom:525.689535px;}
.yba_c01170{bottom:528.972000px;}
.yb9_c01170{bottom:595.962033px;}
.yb8_c01170{bottom:597.192549px;}
.yb7_c01170{bottom:598.349694px;}
.yb6_c01170{bottom:598.751304px;}
.yb5_c01170{bottom:604.345536px;}
.yb4_c01170{bottom:605.579244px;}
.yb3_c01170{bottom:612.478500px;}
.yb2_c01170{bottom:614.264088px;}
.yb1_c01170{bottom:618.038292px;}
.yb0_c01170{bottom:619.901076px;}
.yaf_c01170{bottom:624.140724px;}
.yae_c01170{bottom:628.454208px;}
.yad_c01170{bottom:629.719752px;}
.yab_c01170{bottom:633.241573px;}
.yac_c01170{bottom:634.539000px;}
.yaa_c01170{bottom:634.554027px;}
.ya9_c01170{bottom:638.948248px;}
.ya8_c01170{bottom:642.667743px;}
.ya7_c01170{bottom:644.555685px;}
.ya6_c01170{bottom:646.985832px;}
.ya5_c01170{bottom:649.496536px;}
.ya4_c01170{bottom:652.660551px;}
.ya3_c01170{bottom:654.425182px;}
.ya2_c01170{bottom:655.710901px;}
.ya1_c01170{bottom:660.594398px;}
.ya0_c01170{bottom:662.468710px;}
.y9f_c01170{bottom:668.667934px;}
.y9d_c01170{bottom:669.356745px;}
.y9e_c01170{bottom:670.483645px;}
.y9c_c01170{bottom:670.644114px;}
.y9b_c01170{bottom:676.288660px;}
.y9a_c01170{bottom:680.712574px;}
.y99_c01170{bottom:685.830006px;}
.y98_c01170{bottom:687.067542px;}
.y97_c01170{bottom:694.060707px;}
.y96_c01170{bottom:695.898024px;}
.y95_c01170{bottom:699.707643px;}
.y94_c01170{bottom:702.172441px;}
.y92_c01170{bottom:702.456492px;}
.y91_c01170{bottom:703.759911px;}
.y93_c01170{bottom:705.033972px;}
.y90_c01170{bottom:708.149619px;}
.y8f_c01170{bottom:709.313790px;}
.y8e_c01170{bottom:713.098797px;}
.y8d_c01170{bottom:714.842092px;}
.y8c_c01170{bottom:718.124727px;}
.y8b_c01170{bottom:719.401234px;}
.y8a_c01170{bottom:726.195601px;}
.y89_c01170{bottom:727.985463px;}
.y88_c01170{bottom:731.704957px;}
.y85_c01170{bottom:736.201155px;}
.y87_c01170{bottom:737.167924px;}
.y84_c01170{bottom:737.498565px;}
.y86_c01170{bottom:740.933896px;}
.y83_c01170{bottom:742.158090px;}
.y82_c01170{bottom:744.085177px;}
.y81_c01170{bottom:748.639830px;}
.y80_c01170{bottom:751.256244px;}
.y7f_c01170{bottom:758.478906px;}
.y7e_c01170{bottom:760.399267px;}
.y7d_c01170{bottom:765.566605px;}
.y7c_c01170{bottom:768.221429px;}
.y7a_c01170{bottom:774.836092px;}
.y7b_c01170{bottom:776.025801px;}
.y79_c01170{bottom:779.419773px;}
.y78_c01170{bottom:783.418734px;}
.y77_c01170{bottom:784.692780px;}
.y76_c01170{bottom:791.821809px;}
.y75_c01170{bottom:793.165062px;}
.y74_c01170{bottom:799.659811px;}
.y73_c01170{bottom:801.650442px;}
.y72_c01170{bottom:804.271546px;}
.y6f_c01170{bottom:809.441652px;}
.y71_c01170{bottom:809.511012px;}
.y70_c01170{bottom:811.395000px;}
.y6e_c01170{bottom:811.956948px;}
.y6d_c01170{bottom:813.876852px;}
.y6c_c01170{bottom:817.588980px;}
.y6b_c01170{bottom:819.485364px;}
.y6a_c01170{bottom:820.867668px;}
.y69_c01170{bottom:826.917936px;}
.y68_c01170{bottom:830.625864px;}
.y67_c01170{bottom:834.972024px;}
.y66_c01170{bottom:841.154172px;}
.y65_c01170{bottom:842.971680px;}
.y63_c01170{bottom:843.125175px;}
.y64_c01170{bottom:847.296000px;}
.y62_c01170{bottom:847.691235px;}
.y61_c01170{bottom:849.149505px;}
.y60_c01170{bottom:853.752105px;}
.y5f_c01170{bottom:858.413565px;}
.y5e_c01170{bottom:863.785575px;}
.y5d_c01170{bottom:867.680145px;}
.y5c_c01170{bottom:869.723505px;}
.y5b_c01170{bottom:872.385255px;}
.y5a_c01170{bottom:877.055085px;}
.y59_c01170{bottom:905.309967px;}
.y58_c01170{bottom:906.922344px;}
.y57_c01170{bottom:911.424075px;}
.y56_c01170{bottom:914.280570px;}
.y54_c01170{bottom:916.365912px;}
.y55_c01170{bottom:917.548059px;}
.y53_c01170{bottom:919.576458px;}
.y52_c01170{bottom:920.792562px;}
.y51_c01170{bottom:926.934765px;}
.y50_c01170{bottom:930.118008px;}
.y4f_c01170{bottom:932.621325px;}
.y4e_c01170{bottom:936.941430px;}
.y4d_c01170{bottom:939.937716px;}
.y4c_c01170{bottom:941.862939px;}
.y4b_c01170{bottom:945.042582px;}
.y4a_c01170{bottom:946.785651px;}
.y49_c01170{bottom:948.638865px;}
.y47_c01170{bottom:949.109991px;}
.y46_c01170{bottom:950.956095px;}
.y48_c01170{bottom:952.913364px;}
.y45_c01170{bottom:954.085722px;}
.y44_c01170{bottom:955.918923px;}
.y43_c01170{bottom:959.077653px;}
.y42_c01170{bottom:962.188977px;}
.y41_c01170{bottom:963.385968px;}
.y40_c01170{bottom:969.647799px;}
.y3f_c01170{bottom:970.840110px;}
.y3e_c01170{bottom:975.101796px;}
.y3d_c01170{bottom:979.515633px;}
.y3c_c01170{bottom:981.985044px;}
.y3a_c01170{bottom:986.082819px;}
.y39_c01170{bottom:987.489069px;}
.y3b_c01170{bottom:988.002522px;}
.y38_c01170{bottom:993.497199px;}
.y37_c01170{bottom:998.837799px;}
.y36_c01170{bottom:1002.815169px;}
.y35_c01170{bottom:1008.042549px;}
.y34_c01170{bottom:1009.479849px;}
.y33_c01170{bottom:1012.704999px;}
.y32_c01170{bottom:1015.401039px;}
.y31_c01170{bottom:1017.443409px;}
.y30_c01170{bottom:1018.769469px;}
.y2f_c01170{bottom:1056.802851px;}
.y2e_c01170{bottom:1057.197171px;}
.y2d_c01170{bottom:1064.767086px;}
.y2c_c01170{bottom:1066.113597px;}
.y2b_c01170{bottom:1068.667494px;}
.y2a_c01170{bottom:1071.783381px;}
.y29_c01170{bottom:1075.630206px;}
.y28_c01170{bottom:1076.874378px;}
.y27_c01170{bottom:1080.028008px;}
.y26_c01170{bottom:1082.520279px;}
.y25_c01170{bottom:1086.329868px;}
.y24_c01170{bottom:1088.137527px;}
.y22_c01170{bottom:1090.704405px;}
.y21_c01170{bottom:1093.249638px;}
.y23_c01170{bottom:1093.816524px;}
.y20_c01170{bottom:1095.172251px;}
.y1f_c01170{bottom:1097.039268px;}
.y1e_c01170{bottom:1105.769520px;}
.y1d_c01170{bottom:1108.246524px;}
.y1c_c01170{bottom:1109.478738px;}
.y1b_c01170{bottom:1112.577339px;}
.y1a_c01170{bottom:1115.079756px;}
.y19_c01170{bottom:1121.233062px;}
.y18_c01170{bottom:1122.478179px;}
.y17_c01170{bottom:1126.192887px;}
.y15_c01170{bottom:1128.472710px;}
.y16_c01170{bottom:1128.645885px;}
.y14_c01170{bottom:1131.813600px;}
.y13_c01170{bottom:1137.798150px;}
.y12_c01170{bottom:1140.551430px;}
.y11_c01170{bottom:1145.873940px;}
.y10_c01170{bottom:1147.853580px;}
.yf_c01170{bottom:1151.199330px;}
.ye_c01170{bottom:1155.230700px;}
.yd_c01170{bottom:1157.203860px;}
.yc_c01170{bottom:1162.488210px;}
.yb_c01170{bottom:1166.968500px;}
.ya_c01170{bottom:1215.430650px;}
.y9_c01170{bottom:1218.818616px;}
.y8_c01170{bottom:1220.449500px;}
.h2_c01170{height:60.012059px;}
.h7_c01170{height:71.969033px;}
.h8_c01170{height:71.981458px;}
.h4_c01170{height:71.985743px;}
.hc_c01170{height:71.990099px;}
.hd_c01170{height:72.033004px;}
.h9_c01170{height:77.966453px;}
.ha_c01170{height:77.979912px;}
.h6_c01170{height:77.984554px;}
.h5_c01170{height:83.983366px;}
.h3_c01170{height:83.990970px;}
.hb_c01170{height:107.985149px;}
.h1_c01170{height:1258.500000px;}
.h0_c01170{height:1258.740000px;}
.w0_c01170{width:904.200000px;}
.w1_c01170{width:904.500000px;}
.x0_c01170{left:0.000000px;}
.x1_c01170{left:114.550500px;}
.xab_c01170{left:119.356500px;}
.xa7_c01170{left:129.438549px;}
.xa2_c01170{left:130.761000px;}
.x99_c01170{left:138.633815px;}
.x94_c01170{left:139.956000px;}
.x92_c01170{left:145.949343px;}
.x80_c01170{left:148.089737px;}
.x72_c01170{left:152.179519px;}
.x68_c01170{left:153.276138px;}
.x61_c01170{left:155.298000px;}
.x39_c01170{left:156.523515px;}
.x4d_c01170{left:162.652908px;}
.x42_c01170{left:164.301312px;}
.x2_c01170{left:168.577419px;}
.x2e_c01170{left:170.360874px;}
.x23_c01170{left:171.430791px;}
.x16_c01170{left:173.197215px;}
.xb_c01170{left:176.635500px;}
.x81_c01170{left:180.454641px;}
.x62_c01170{left:187.166136px;}
.x95_c01170{left:195.479730px;}
.x7b_c01170{left:204.413022px;}
.x93_c01170{left:210.312456px;}
.x17_c01170{left:216.897600px;}
.x73_c01170{left:219.286918px;}
.x4e_c01170{left:226.573350px;}
.x59_c01170{left:234.382560px;}
.x43_c01170{left:240.473469px;}
.x3_c01170{left:245.128291px;}
.x7c_c01170{left:247.554122px;}
.xc_c01170{left:251.157657px;}
.x8b_c01170{left:255.976686px;}
.x9a_c01170{left:258.351899px;}
.xa3_c01170{left:262.276941px;}
.x3a_c01170{left:263.761401px;}
.x5a_c01170{left:266.773149px;}
.x51_c01170{left:268.111089px;}
.x24_c01170{left:270.864471px;}
.xac_c01170{left:272.369833px;}
.x44_c01170{left:273.497724px;}
.x2f_c01170{left:276.291447px;}
.x18_c01170{left:283.083834px;}
.x69_c01170{left:285.289083px;}
.x82_c01170{left:290.931842px;}
.x30_c01170{left:298.348245px;}
.x25_c01170{left:302.506242px;}
.x19_c01170{left:305.268696px;}
.x3b_c01170{left:307.759779px;}
.x7d_c01170{left:314.256342px;}
.x74_c01170{left:316.624057px;}
.x63_c01170{left:320.129676px;}
.x83_c01170{left:324.338835px;}
.xa8_c01170{left:326.226778px;}
.x6a_c01170{left:330.196089px;}
.x31_c01170{left:332.319666px;}
.xd_c01170{left:339.054012px;}
.x52_c01170{left:345.785928px;}
.xad_c01170{left:347.777351px;}
.x64_c01170{left:353.801697px;}
.x9b_c01170{left:358.561079px;}
.x45_c01170{left:361.226517px;}
.x26_c01170{left:369.196089px;}
.x4f_c01170{left:370.506642px;}
.xe_c01170{left:371.874240px;}
.x4_c01170{left:377.763524px;}
.xae_c01170{left:381.306288px;}
.x75_c01170{left:382.894456px;}
.x3c_c01170{left:386.399532px;}
.x53_c01170{left:390.059703px;}
.xa9_c01170{left:391.521276px;}
.x46_c01170{left:395.523492px;}
.x50_c01170{left:402.048975px;}
.x96_c01170{left:404.835180px;}
.x8c_c01170{left:408.405717px;}
.x5_c01170{left:411.235518px;}
.x27_c01170{left:412.825002px;}
.x1a_c01170{left:414.915795px;}
.xa4_c01170{left:416.378121px;}
.x6b_c01170{left:417.602925px;}
.x54_c01170{left:424.047591px;}
.x32_c01170{left:430.808793px;}
.x84_c01170{left:434.283015px;}
.x9c_c01170{left:436.458971px;}
.xf_c01170{left:438.929361px;}
.x8d_c01170{left:441.603189px;}
.x8_c01170{left:447.547500px;}
.x47_c01170{left:448.910310px;}
.x6c_c01170{left:450.086328px;}
.x33_c01170{left:454.715883px;}
.x1b_c01170{left:459.513153px;}
.x3d_c01170{left:462.333576px;}
.x65_c01170{left:463.662036px;}
.x85_c01170{left:465.733076px;}
.x9_c01170{left:468.942123px;}
.xaa_c01170{left:482.248742px;}
.x3e_c01170{left:483.590118px;}
.x66_c01170{left:486.383502px;}
.x28_c01170{left:489.823584px;}
.xaf_c01170{left:492.724259px;}
.x10_c01170{left:494.580336px;}
.x9d_c01170{left:501.271586px;}
.x8e_c01170{left:508.864896px;}
.x6_c01170{left:512.363289px;}
.xa_c01170{left:513.386888px;}
.x1c_c01170{left:514.726761px;}
.x5b_c01170{left:520.483212px;}
.x86_c01170{left:522.124587px;}
.x48_c01170{left:525.891027px;}
.x11_c01170{left:527.508348px;}
.x9e_c01170{left:534.216065px;}
.x1d_c01170{left:536.672013px;}
.x34_c01170{left:541.664637px;}
.x29_c01170{left:557.182770px;}
.x76_c01170{left:558.610446px;}
.x7_c01170{left:567.710387px;}
.x49_c01170{left:570.503355px;}
.x6d_c01170{left:572.259492px;}
.x55_c01170{left:578.181705px;}
.x1e_c01170{left:580.821678px;}
.x97_c01170{left:592.499100px;}
.x3f_c01170{left:595.167300px;}
.x35_c01170{left:607.821558px;}
.x87_c01170{left:610.147207px;}
.x2a_c01170{left:611.734278px;}
.xa5_c01170{left:614.907267px;}
.x12_c01170{left:616.039431px;}
.x77_c01170{left:617.110087px;}
.x4a_c01170{left:627.224802px;}
.x5c_c01170{left:628.307631px;}
.x9f_c01170{left:633.444710px;}
.x88_c01170{left:643.784739px;}
.x78_c01170{left:648.173834px;}
.x5d_c01170{left:652.942263px;}
.x2b_c01170{left:656.438217px;}
.x7e_c01170{left:657.566372px;}
.x13_c01170{left:661.835655px;}
.x8f_c01170{left:663.641223px;}
.xa0_c01170{left:668.540378px;}
.x40_c01170{left:671.951910px;}
.x2c_c01170{left:680.009718px;}
.x90_c01170{left:685.627662px;}
.x5e_c01170{left:686.738535px;}
.x6e_c01170{left:693.559905px;}
.x36_c01170{left:696.653538px;}
.x98_c01170{left:701.901357px;}
.x89_c01170{left:710.055138px;}
.x79_c01170{left:715.628625px;}
.x6f_c01170{left:726.157080px;}
.x41_c01170{left:728.240634px;}
.x56_c01170{left:732.273903px;}
.x1f_c01170{left:736.380771px;}
.x5f_c01170{left:752.893959px;}
.x57_c01170{left:756.529794px;}
.x4b_c01170{left:758.339520px;}
.x14_c01170{left:761.378670px;}
.x20_c01170{left:769.659606px;}
.xa6_c01170{left:770.968020px;}
.x67_c01170{left:773.701215px;}
.x7f_c01170{left:778.938008px;}
.x91_c01170{left:785.324868px;}
.x60_c01170{left:787.109391px;}
.x8a_c01170{left:788.348571px;}
.x37_c01170{left:796.588767px;}
.x21_c01170{left:803.913168px;}
.x70_c01170{left:804.974130px;}
.x2d_c01170{left:812.545014px;}
.x4c_c01170{left:815.540097px;}
.x15_c01170{left:816.948807px;}
.x38_c01170{left:819.979392px;}
.x71_c01170{left:826.920150px;}
.x58_c01170{left:832.478592px;}
.x7a_c01170{left:837.796349px;}
.xa1_c01170{left:843.925904px;}
.x22_c01170{left:849.272679px;}
@media print{
.v0_c01170{vertical-align:0.000000pt;}
.ls0_c01170{letter-spacing:0.000000pt;}
.ws0_c01170{word-spacing:0.000000pt;}
.fs0_c01170{font-size:53.344052pt;}
.fs5_c01170{font-size:63.972474pt;}
.fs6_c01170{font-size:63.983518pt;}
.fs2_c01170{font-size:63.987327pt;}
.fsa_c01170{font-size:63.991199pt;}
.fsb_c01170{font-size:64.029337pt;}
.fs7_c01170{font-size:69.303514pt;}
.fs8_c01170{font-size:69.315478pt;}
.fs4_c01170{font-size:69.319604pt;}
.fs3_c01170{font-size:74.651881pt;}
.fs1_c01170{font-size:74.658640pt;}
.fs9_c01170{font-size:95.986799pt;}
.y0_c01170{bottom:0.000000pt;}
.y7_c01170{bottom:34.754612pt;}
.y6_c01170{bottom:37.167699pt;}
.y5_c01170{bottom:41.576784pt;}
.y4_c01170{bottom:43.036135pt;}
.y3_c01170{bottom:48.818919pt;}
.y2_c01170{bottom:52.156472pt;}
.y1_c01170{bottom:54.512000pt;}
.yec_c01170{bottom:70.405741pt;}
.yeb_c01170{bottom:75.759157pt;}
.yea_c01170{bottom:77.370157pt;}
.ye9_c01170{bottom:80.993341pt;}
.ye8_c01170{bottom:86.694445pt;}
.ye7_c01170{bottom:88.345333pt;}
.ye6_c01170{bottom:259.562637pt;}
.ye5_c01170{bottom:262.090564pt;}
.ye4_c01170{bottom:263.693997pt;}
.ye3_c01170{bottom:266.294616pt;}
.ye2_c01170{bottom:267.811915pt;}
.ye1_c01170{bottom:269.319889pt;}
.ye0_c01170{bottom:273.890892pt;}
.yde_c01170{bottom:275.253247pt;}
.ydd_c01170{bottom:277.002320pt;}
.ydf_c01170{bottom:278.436851pt;}
.ydc_c01170{bottom:281.236696pt;}
.ydb_c01170{bottom:283.678485pt;}
.yda_c01170{bottom:285.481239pt;}
.yd9_c01170{bottom:292.070377pt;}
.yd8_c01170{bottom:295.072797pt;}
.yd7_c01170{bottom:296.267503pt;}
.yd6_c01170{bottom:303.388561pt;}
.yd5_c01170{bottom:304.639956pt;}
.yd4_c01170{bottom:307.058403pt;}
.yd3_c01170{bottom:310.599900pt;}
.yd2_c01170{bottom:311.785333pt;}
.yd1_c01170{bottom:400.741137pt;}
.yd0_c01170{bottom:404.200268pt;}
.ycf_c01170{bottom:409.957567pt;}
.yce_c01170{bottom:411.801828pt;}
.ycd_c01170{bottom:417.016248pt;}
.ycc_c01170{bottom:418.747465pt;}
.ycb_c01170{bottom:422.153339pt;}
.yca_c01170{bottom:423.971876pt;}
.yc9_c01170{bottom:426.246837pt;}
.yc8_c01170{bottom:431.512784pt;}
.yc7_c01170{bottom:434.346515pt;}
.yc6_c01170{bottom:436.040287pt;}
.yc4_c01170{bottom:437.057741pt;}
.yc5_c01170{bottom:437.803915pt;}
.yc3_c01170{bottom:438.907037pt;}
.yc2_c01170{bottom:440.667361pt;}
.yc1_c01170{bottom:446.416400pt;}
.yc0_c01170{bottom:448.216608pt;}
.ybf_c01170{bottom:450.532319pt;}
.ybe_c01170{bottom:456.278053pt;}
.ybd_c01170{bottom:460.999312pt;}
.ybc_c01170{bottom:462.715504pt;}
.ybb_c01170{bottom:467.279587pt;}
.yba_c01170{bottom:470.197333pt;}
.yb9_c01170{bottom:529.744029pt;}
.yb8_c01170{bottom:530.837821pt;}
.yb7_c01170{bottom:531.866395pt;}
.yb6_c01170{bottom:532.223381pt;}
.yb5_c01170{bottom:537.196032pt;}
.yb4_c01170{bottom:538.292661pt;}
.yb3_c01170{bottom:544.425333pt;}
.yb2_c01170{bottom:546.012523pt;}
.yb1_c01170{bottom:549.367371pt;}
.yb0_c01170{bottom:551.023179pt;}
.yaf_c01170{bottom:554.791755pt;}
.yae_c01170{bottom:558.625963pt;}
.yad_c01170{bottom:559.750891pt;}
.yab_c01170{bottom:562.881399pt;}
.yac_c01170{bottom:564.034667pt;}
.yaa_c01170{bottom:564.048024pt;}
.ya9_c01170{bottom:567.953999pt;}
.ya8_c01170{bottom:571.260216pt;}
.ya7_c01170{bottom:572.938387pt;}
.ya6_c01170{bottom:575.098517pt;}
.ya5_c01170{bottom:577.330255pt;}
.ya4_c01170{bottom:580.142712pt;}
.ya3_c01170{bottom:581.711273pt;}
.ya2_c01170{bottom:582.854135pt;}
.ya1_c01170{bottom:587.195020pt;}
.ya0_c01170{bottom:588.861076pt;}
.y9f_c01170{bottom:594.371497pt;}
.y9d_c01170{bottom:594.983773pt;}
.y9e_c01170{bottom:595.985463pt;}
.y9c_c01170{bottom:596.128101pt;}
.y9b_c01170{bottom:601.145476pt;}
.y9a_c01170{bottom:605.077844pt;}
.y99_c01170{bottom:609.626672pt;}
.y98_c01170{bottom:610.726704pt;}
.y97_c01170{bottom:616.942851pt;}
.y96_c01170{bottom:618.576021pt;}
.y95_c01170{bottom:621.962349pt;}
.y94_c01170{bottom:624.153281pt;}
.y92_c01170{bottom:624.405771pt;}
.y91_c01170{bottom:625.564365pt;}
.y93_c01170{bottom:626.696864pt;}
.y90_c01170{bottom:629.466328pt;}
.y8f_c01170{bottom:630.501147pt;}
.y8e_c01170{bottom:633.865597pt;}
.y8d_c01170{bottom:635.415193pt;}
.y8c_c01170{bottom:638.333091pt;}
.y8b_c01170{bottom:639.467764pt;}
.y8a_c01170{bottom:645.507201pt;}
.y89_c01170{bottom:647.098189pt;}
.y88_c01170{bottom:650.404407pt;}
.y85_c01170{bottom:654.401027pt;}
.y87_c01170{bottom:655.260377pt;}
.y84_c01170{bottom:655.554280pt;}
.y86_c01170{bottom:658.607908pt;}
.y83_c01170{bottom:659.696080pt;}
.y82_c01170{bottom:661.409047pt;}
.y81_c01170{bottom:665.457627pt;}
.y80_c01170{bottom:667.783328pt;}
.y7f_c01170{bottom:674.203472pt;}
.y7e_c01170{bottom:675.910460pt;}
.y7d_c01170{bottom:680.503649pt;}
.y7c_c01170{bottom:682.863492pt;}
.y7a_c01170{bottom:688.743193pt;}
.y7b_c01170{bottom:689.800712pt;}
.y79_c01170{bottom:692.817576pt;}
.y78_c01170{bottom:696.372208pt;}
.y77_c01170{bottom:697.504693pt;}
.y76_c01170{bottom:703.841608pt;}
.y75_c01170{bottom:705.035611pt;}
.y74_c01170{bottom:710.808721pt;}
.y73_c01170{bottom:712.578171pt;}
.y72_c01170{bottom:714.908041pt;}
.y6f_c01170{bottom:719.503691pt;}
.y71_c01170{bottom:719.565344pt;}
.y70_c01170{bottom:721.240000pt;}
.y6e_c01170{bottom:721.739509pt;}
.y6d_c01170{bottom:723.446091pt;}
.y6c_c01170{bottom:726.745760pt;}
.y6b_c01170{bottom:728.431435pt;}
.y6a_c01170{bottom:729.660149pt;}
.y69_c01170{bottom:735.038165pt;}
.y68_c01170{bottom:738.334101pt;}
.y67_c01170{bottom:742.197355pt;}
.y66_c01170{bottom:747.692597pt;}
.y65_c01170{bottom:749.308160pt;}
.y63_c01170{bottom:749.444600pt;}
.y64_c01170{bottom:753.152000pt;}
.y62_c01170{bottom:753.503320pt;}
.y61_c01170{bottom:754.799560pt;}
.y60_c01170{bottom:758.890760pt;}
.y5f_c01170{bottom:763.034280pt;}
.y5e_c01170{bottom:767.809400pt;}
.y5d_c01170{bottom:771.271240pt;}
.y5c_c01170{bottom:773.087560pt;}
.y5b_c01170{bottom:775.453560pt;}
.y5a_c01170{bottom:779.604520pt;}
.y59_c01170{bottom:804.719971pt;}
.y58_c01170{bottom:806.153195pt;}
.y57_c01170{bottom:810.154733pt;}
.y56_c01170{bottom:812.693840pt;}
.y54_c01170{bottom:814.547477pt;}
.y55_c01170{bottom:815.598275pt;}
.y53_c01170{bottom:817.401296pt;}
.y52_c01170{bottom:818.482277pt;}
.y51_c01170{bottom:823.942013pt;}
.y50_c01170{bottom:826.771563pt;}
.y4f_c01170{bottom:828.996733pt;}
.y4e_c01170{bottom:832.836827pt;}
.y4d_c01170{bottom:835.500192pt;}
.y4c_c01170{bottom:837.211501pt;}
.y4b_c01170{bottom:840.037851pt;}
.y4a_c01170{bottom:841.587245pt;}
.y49_c01170{bottom:843.234547pt;}
.y47_c01170{bottom:843.653325pt;}
.y46_c01170{bottom:845.294307pt;}
.y48_c01170{bottom:847.034101pt;}
.y45_c01170{bottom:848.076197pt;}
.y44_c01170{bottom:849.705709pt;}
.y43_c01170{bottom:852.513469pt;}
.y42_c01170{bottom:855.279091pt;}
.y41_c01170{bottom:856.343083pt;}
.y40_c01170{bottom:861.909155pt;}
.y3f_c01170{bottom:862.968987pt;}
.y3e_c01170{bottom:866.757152pt;}
.y3d_c01170{bottom:870.680563pt;}
.y3c_c01170{bottom:872.875595pt;}
.y3a_c01170{bottom:876.518061pt;}
.y39_c01170{bottom:877.768061pt;}
.y3b_c01170{bottom:878.224464pt;}
.y38_c01170{bottom:883.108621pt;}
.y37_c01170{bottom:887.855821pt;}
.y36_c01170{bottom:891.391261pt;}
.y35_c01170{bottom:896.037821pt;}
.y34_c01170{bottom:897.315421pt;}
.y33_c01170{bottom:900.182221pt;}
.y32_c01170{bottom:902.578701pt;}
.y31_c01170{bottom:904.394141pt;}
.y30_c01170{bottom:905.572861pt;}
.y2f_c01170{bottom:939.380312pt;}
.y2e_c01170{bottom:939.730819pt;}
.y2d_c01170{bottom:946.459632pt;}
.y2c_c01170{bottom:947.656531pt;}
.y2b_c01170{bottom:949.926661pt;}
.y2a_c01170{bottom:952.696339pt;}
.y29_c01170{bottom:956.115739pt;}
.y28_c01170{bottom:957.221669pt;}
.y27_c01170{bottom:960.024896pt;}
.y26_c01170{bottom:962.240248pt;}
.y25_c01170{bottom:965.626549pt;}
.y24_c01170{bottom:967.233357pt;}
.y22_c01170{bottom:969.515027pt;}
.y21_c01170{bottom:971.777456pt;}
.y23_c01170{bottom:972.281355pt;}
.y20_c01170{bottom:973.486445pt;}
.y1f_c01170{bottom:975.146016pt;}
.y1e_c01170{bottom:982.906240pt;}
.y1d_c01170{bottom:985.108021pt;}
.y1c_c01170{bottom:986.203323pt;}
.y1b_c01170{bottom:988.957635pt;}
.y1a_c01170{bottom:991.182005pt;}
.y19_c01170{bottom:996.651611pt;}
.y18_c01170{bottom:997.758381pt;}
.y17_c01170{bottom:1001.060344pt;}
.y15_c01170{bottom:1003.086853pt;}
.y16_c01170{bottom:1003.240787pt;}
.y14_c01170{bottom:1006.056533pt;}
.y13_c01170{bottom:1011.376133pt;}
.y12_c01170{bottom:1013.823493pt;}
.y11_c01170{bottom:1018.554613pt;}
.y10_c01170{bottom:1020.314293pt;}
.yf_c01170{bottom:1023.288293pt;}
.ye_c01170{bottom:1026.871733pt;}
.yd_c01170{bottom:1028.625653pt;}
.yc_c01170{bottom:1033.322853pt;}
.yb_c01170{bottom:1037.305333pt;}
.ya_c01170{bottom:1080.382800pt;}
.y9_c01170{bottom:1083.394325pt;}
.y8_c01170{bottom:1084.844000pt;}
.h2_c01170{height:53.344052pt;}
.h7_c01170{height:63.972474pt;}
.h8_c01170{height:63.983518pt;}
.h4_c01170{height:63.987327pt;}
.hc_c01170{height:63.991199pt;}
.hd_c01170{height:64.029337pt;}
.h9_c01170{height:69.303514pt;}
.ha_c01170{height:69.315478pt;}
.h6_c01170{height:69.319604pt;}
.h5_c01170{height:74.651881pt;}
.h3_c01170{height:74.658640pt;}
.hb_c01170{height:95.986799pt;}
.h1_c01170{height:1118.666667pt;}
.h0_c01170{height:1118.880000pt;}
.w0_c01170{width:803.733333pt;}
.w1_c01170{width:804.000000pt;}
.x0_c01170{left:0.000000pt;}
.x1_c01170{left:101.822667pt;}
.xab_c01170{left:106.094667pt;}
.xa7_c01170{left:115.056488pt;}
.xa2_c01170{left:116.232000pt;}
.x99_c01170{left:123.230057pt;}
.x94_c01170{left:124.405333pt;}
.x92_c01170{left:129.732749pt;}
.x80_c01170{left:131.635321pt;}
.x72_c01170{left:135.270684pt;}
.x68_c01170{left:136.245456pt;}
.x61_c01170{left:138.042667pt;}
.x39_c01170{left:139.132013pt;}
.x4d_c01170{left:144.580363pt;}
.x42_c01170{left:146.045611pt;}
.x2_c01170{left:149.846595pt;}
.x2e_c01170{left:151.431888pt;}
.x23_c01170{left:152.382925pt;}
.x16_c01170{left:153.953080pt;}
.xb_c01170{left:157.009333pt;}
.x81_c01170{left:160.404125pt;}
.x62_c01170{left:166.369899pt;}
.x95_c01170{left:173.759760pt;}
.x7b_c01170{left:181.700464pt;}
.x93_c01170{left:186.944405pt;}
.x17_c01170{left:192.797867pt;}
.x73_c01170{left:194.921705pt;}
.x4e_c01170{left:201.398533pt;}
.x59_c01170{left:208.340053pt;}
.x43_c01170{left:213.754195pt;}
.x3_c01170{left:217.891815pt;}
.x7c_c01170{left:220.048108pt;}
.xc_c01170{left:223.251251pt;}
.x8b_c01170{left:227.534832pt;}
.x9a_c01170{left:229.646132pt;}
.xa3_c01170{left:233.135059pt;}
.x3a_c01170{left:234.454579pt;}
.x5a_c01170{left:237.131688pt;}
.x51_c01170{left:238.320968pt;}
.x24_c01170{left:240.768419pt;}
.xac_c01170{left:242.106519pt;}
.x44_c01170{left:243.109088pt;}
.x2f_c01170{left:245.592397pt;}
.x18_c01170{left:251.630075pt;}
.x69_c01170{left:253.590296pt;}
.x82_c01170{left:258.606081pt;}
.x30_c01170{left:265.198440pt;}
.x25_c01170{left:268.894437pt;}
.x19_c01170{left:271.349952pt;}
.x3b_c01170{left:273.564248pt;}
.x7d_c01170{left:279.338971pt;}
.x74_c01170{left:281.443607pt;}
.x63_c01170{left:284.559712pt;}
.x83_c01170{left:288.301187pt;}
.xa8_c01170{left:289.979359pt;}
.x6a_c01170{left:293.507635pt;}
.x31_c01170{left:295.395259pt;}
.xd_c01170{left:301.381344pt;}
.x52_c01170{left:307.365269pt;}
.xad_c01170{left:309.135423pt;}
.x64_c01170{left:314.490397pt;}
.x9b_c01170{left:318.720959pt;}
.x45_c01170{left:321.090237pt;}
.x26_c01170{left:328.174301pt;}
.x4f_c01170{left:329.339237pt;}
.xe_c01170{left:330.554880pt;}
.x4_c01170{left:335.789799pt;}
.xae_c01170{left:338.938923pt;}
.x75_c01170{left:340.350628pt;}
.x3c_c01170{left:343.466251pt;}
.x53_c01170{left:346.719736pt;}
.xa9_c01170{left:348.018912pt;}
.x46_c01170{left:351.576437pt;}
.x50_c01170{left:357.376867pt;}
.x96_c01170{left:359.853493pt;}
.x8c_c01170{left:363.027304pt;}
.x5_c01170{left:365.542683pt;}
.x27_c01170{left:366.955557pt;}
.x1a_c01170{left:368.814040pt;}
.xa4_c01170{left:370.113885pt;}
.x6b_c01170{left:371.202600pt;}
.x54_c01170{left:376.931192pt;}
.x32_c01170{left:382.941149pt;}
.x84_c01170{left:386.029347pt;}
.x9c_c01170{left:387.963529pt;}
.xf_c01170{left:390.159432pt;}
.x8d_c01170{left:392.536168pt;}
.x8_c01170{left:397.820000pt;}
.x47_c01170{left:399.031387pt;}
.x6c_c01170{left:400.076736pt;}
.x33_c01170{left:404.191896pt;}
.x1b_c01170{left:408.456136pt;}
.x3d_c01170{left:410.963179pt;}
.x65_c01170{left:412.144032pt;}
.x85_c01170{left:413.984956pt;}
.x9_c01170{left:416.837443pt;}
.xaa_c01170{left:428.665548pt;}
.x3e_c01170{left:429.857883pt;}
.x66_c01170{left:432.340891pt;}
.x28_c01170{left:435.398741pt;}
.xaf_c01170{left:437.977119pt;}
.x10_c01170{left:439.626965pt;}
.x9d_c01170{left:445.574743pt;}
.x8e_c01170{left:452.324352pt;}
.x6_c01170{left:455.434035pt;}
.xa_c01170{left:456.343900pt;}
.x1c_c01170{left:457.534899pt;}
.x5b_c01170{left:462.651744pt;}
.x86_c01170{left:464.110744pt;}
.x48_c01170{left:467.458691pt;}
.x11_c01170{left:468.896309pt;}
.x9e_c01170{left:474.858724pt;}
.x1d_c01170{left:477.041789pt;}
.x34_c01170{left:481.479677pt;}
.x29_c01170{left:495.273573pt;}
.x76_c01170{left:496.542619pt;}
.x7_c01170{left:504.631455pt;}
.x49_c01170{left:507.114093pt;}
.x6d_c01170{left:508.675104pt;}
.x55_c01170{left:513.939293pt;}
.x1e_c01170{left:516.285936pt;}
.x97_c01170{left:526.665867pt;}
.x3f_c01170{left:529.037600pt;}
.x35_c01170{left:540.285829pt;}
.x87_c01170{left:542.353073pt;}
.x2a_c01170{left:543.763803pt;}
.xa5_c01170{left:546.584237pt;}
.x12_c01170{left:547.590605pt;}
.x77_c01170{left:548.542300pt;}
.x4a_c01170{left:557.533157pt;}
.x5c_c01170{left:558.495672pt;}
.x9f_c01170{left:563.061964pt;}
.x88_c01170{left:572.253101pt;}
.x78_c01170{left:576.154519pt;}
.x5d_c01170{left:580.393123pt;}
.x2b_c01170{left:583.500637pt;}
.x7e_c01170{left:584.503441pt;}
.x13_c01170{left:588.298360pt;}
.x8f_c01170{left:589.903309pt;}
.xa0_c01170{left:594.258113pt;}
.x40_c01170{left:597.290587pt;}
.x2c_c01170{left:604.453083pt;}
.x90_c01170{left:609.446811pt;}
.x5e_c01170{left:610.434253pt;}
.x6e_c01170{left:616.497693pt;}
.x36_c01170{left:619.247589pt;}
.x98_c01170{left:623.912317pt;}
.x89_c01170{left:631.160123pt;}
.x79_c01170{left:636.114333pt;}
.x6f_c01170{left:645.472960pt;}
.x41_c01170{left:647.325008pt;}
.x56_c01170{left:650.910136pt;}
.x1f_c01170{left:654.560685pt;}
.x5f_c01170{left:669.239075pt;}
.x57_c01170{left:672.470928pt;}
.x4b_c01170{left:674.079573pt;}
.x14_c01170{left:676.781040pt;}
.x20_c01170{left:684.141872pt;}
.xa6_c01170{left:685.304907pt;}
.x67_c01170{left:687.734413pt;}
.x7f_c01170{left:692.389340pt;}
.x91_c01170{left:698.066549pt;}
.x60_c01170{left:699.652792pt;}
.x8a_c01170{left:700.754285pt;}
.x37_c01170{left:708.078904pt;}
.x21_c01170{left:714.589483pt;}
.x70_c01170{left:715.532560pt;}
.x2d_c01170{left:722.262235pt;}
.x4c_c01170{left:724.924531pt;}
.x15_c01170{left:726.176717pt;}
.x38_c01170{left:728.870571pt;}
.x71_c01170{left:735.040133pt;}
.x58_c01170{left:739.980971pt;}
.x7a_c01170{left:744.707865pt;}
.xa1_c01170{left:750.156359pt;}
.x22_c01170{left:754.909048pt;}
}





/* 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_c01171 {
    display:none;
  }
  .loading-indicator_c01171.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01171 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_c01171 { 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_c01171" -> "#page-container .classname_c01171")
 */
.pf_c01171 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01171 { /* 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_c01171.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01171 { /* 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_c01171 { /* 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_c01171 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01171 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01171 {overflow:visible;}
  }
}
.c_c01171 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01171 { /* 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_c01171:after { /* webkit #35443 */
  content: '';
}
.t_c01171:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01171 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 */
}
.__c01171 { /* 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_c01171 { /* info for Javascript */
  display:none;
}
.l_c01171 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01171 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01171 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01171: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_c01171 {
    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_c01171.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01171.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_c01171 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01171{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01171;src:url('chunks/assets/font_dbd529e162d5851c7bfb6d27.woff2')format("woff");}.ff1_c01171{font-family:ff1_c01171;line-height:1.000000;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;}
.m1c_c01171{transform:matrix(0.021540,-0.000927,0.010751,0.249769,0,0);-ms-transform:matrix(0.021540,-0.000927,0.010751,0.249769,0,0);-webkit-transform:matrix(0.021540,-0.000927,0.010751,0.249769,0,0);}
.m37_c01171{transform:matrix(0.170344,-0.006821,0.010002,0.249800,0,0);-ms-transform:matrix(0.170344,-0.006821,0.010002,0.249800,0,0);-webkit-transform:matrix(0.170344,-0.006821,0.010002,0.249800,0,0);}
.m31_c01171{transform:matrix(0.173896,-0.006963,0.010002,0.249800,0,0);-ms-transform:matrix(0.173896,-0.006963,0.010002,0.249800,0,0);-webkit-transform:matrix(0.173896,-0.006963,0.010002,0.249800,0,0);}
.mb_c01171{transform:matrix(0.186877,-0.008044,0.010751,0.249769,0,0);-ms-transform:matrix(0.186877,-0.008044,0.010751,0.249769,0,0);-webkit-transform:matrix(0.186877,-0.008044,0.010751,0.249769,0,0);}
.m3_c01171{transform:matrix(0.191885,-0.009604,0.012497,0.249687,0,0);-ms-transform:matrix(0.191885,-0.009604,0.012497,0.249687,0,0);-webkit-transform:matrix(0.191885,-0.009604,0.012497,0.249687,0,0);}
.m1e_c01171{transform:matrix(0.192442,-0.008283,0.010751,0.249769,0,0);-ms-transform:matrix(0.192442,-0.008283,0.010751,0.249769,0,0);-webkit-transform:matrix(0.192442,-0.008283,0.010751,0.249769,0,0);}
.m20_c01171{transform:matrix(0.196818,-0.008472,0.010751,0.249769,0,0);-ms-transform:matrix(0.196818,-0.008472,0.010751,0.249769,0,0);-webkit-transform:matrix(0.196818,-0.008472,0.010751,0.249769,0,0);}
.m1f_c01171{transform:matrix(0.196933,-0.008477,0.010751,0.249769,0,0);-ms-transform:matrix(0.196933,-0.008477,0.010751,0.249769,0,0);-webkit-transform:matrix(0.196933,-0.008477,0.010751,0.249769,0,0);}
.m32_c01171{transform:matrix(0.201913,-0.008085,0.010002,0.249800,0,0);-ms-transform:matrix(0.201913,-0.008085,0.010002,0.249800,0,0);-webkit-transform:matrix(0.201913,-0.008085,0.010002,0.249800,0,0);}
.m39_c01171{transform:matrix(0.205470,-0.008227,0.010002,0.249800,0,0);-ms-transform:matrix(0.205470,-0.008227,0.010002,0.249800,0,0);-webkit-transform:matrix(0.205470,-0.008227,0.010002,0.249800,0,0);}
.m35_c01171{transform:matrix(0.212015,-0.008489,0.010002,0.249800,0,0);-ms-transform:matrix(0.212015,-0.008489,0.010002,0.249800,0,0);-webkit-transform:matrix(0.212015,-0.008489,0.010002,0.249800,0,0);}
.m3b_c01171{transform:matrix(0.212545,-0.008510,0.010002,0.249800,0,0);-ms-transform:matrix(0.212545,-0.008510,0.010002,0.249800,0,0);-webkit-transform:matrix(0.212545,-0.008510,0.010002,0.249800,0,0);}
.m3a_c01171{transform:matrix(0.214448,-0.008587,0.010002,0.249800,0,0);-ms-transform:matrix(0.214448,-0.008587,0.010002,0.249800,0,0);-webkit-transform:matrix(0.214448,-0.008587,0.010002,0.249800,0,0);}
.m2d_c01171{transform:matrix(0.217920,-0.008726,0.010002,0.249800,0,0);-ms-transform:matrix(0.217920,-0.008726,0.010002,0.249800,0,0);-webkit-transform:matrix(0.217920,-0.008726,0.010002,0.249800,0,0);}
.m9_c01171{transform:matrix(0.218313,-0.009397,0.010751,0.249769,0,0);-ms-transform:matrix(0.218313,-0.009397,0.010751,0.249769,0,0);-webkit-transform:matrix(0.218313,-0.009397,0.010751,0.249769,0,0);}
.m2_c01171{transform:matrix(0.218372,-0.010930,0.012497,0.249687,0,0);-ms-transform:matrix(0.218372,-0.010930,0.012497,0.249687,0,0);-webkit-transform:matrix(0.218372,-0.010930,0.012497,0.249687,0,0);}
.m1a_c01171{transform:matrix(0.221740,-0.009544,0.010751,0.249769,0,0);-ms-transform:matrix(0.221740,-0.009544,0.010751,0.249769,0,0);-webkit-transform:matrix(0.221740,-0.009544,0.010751,0.249769,0,0);}
.m34_c01171{transform:matrix(0.222612,-0.008913,0.010002,0.249800,0,0);-ms-transform:matrix(0.222612,-0.008913,0.010002,0.249800,0,0);-webkit-transform:matrix(0.222612,-0.008913,0.010002,0.249800,0,0);}
.m6_c01171{transform:matrix(0.222889,-0.009594,0.010751,0.249769,0,0);-ms-transform:matrix(0.222889,-0.009594,0.010751,0.249769,0,0);-webkit-transform:matrix(0.222889,-0.009594,0.010751,0.249769,0,0);}
.m16_c01171{transform:matrix(0.224058,-0.009644,0.010751,0.249769,0,0);-ms-transform:matrix(0.224058,-0.009644,0.010751,0.249769,0,0);-webkit-transform:matrix(0.224058,-0.009644,0.010751,0.249769,0,0);}
.mc_c01171{transform:matrix(0.225541,-0.009708,0.010751,0.249769,0,0);-ms-transform:matrix(0.225541,-0.009708,0.010751,0.249769,0,0);-webkit-transform:matrix(0.225541,-0.009708,0.010751,0.249769,0,0);}
.m2e_c01171{transform:matrix(0.226683,-0.009076,0.010002,0.249800,0,0);-ms-transform:matrix(0.226683,-0.009076,0.010002,0.249800,0,0);-webkit-transform:matrix(0.226683,-0.009076,0.010002,0.249800,0,0);}
.m3f_c01171{transform:matrix(0.226908,-0.009085,0.010002,0.249800,0,0);-ms-transform:matrix(0.226908,-0.009085,0.010002,0.249800,0,0);-webkit-transform:matrix(0.226908,-0.009085,0.010002,0.249800,0,0);}
.m5_c01171{transform:matrix(0.228968,-0.009855,0.010751,0.249769,0,0);-ms-transform:matrix(0.228968,-0.009855,0.010751,0.249769,0,0);-webkit-transform:matrix(0.228968,-0.009855,0.010751,0.249769,0,0);}
.m33_c01171{transform:matrix(0.231245,-0.009259,0.010002,0.249800,0,0);-ms-transform:matrix(0.231245,-0.009259,0.010002,0.249800,0,0);-webkit-transform:matrix(0.231245,-0.009259,0.010002,0.249800,0,0);}
.m2f_c01171{transform:matrix(0.231719,-0.009278,0.010002,0.249800,0,0);-ms-transform:matrix(0.231719,-0.009278,0.010002,0.249800,0,0);-webkit-transform:matrix(0.231719,-0.009278,0.010002,0.249800,0,0);}
.m30_c01171{transform:matrix(0.236535,-0.009471,0.010002,0.249800,0,0);-ms-transform:matrix(0.236535,-0.009471,0.010002,0.249800,0,0);-webkit-transform:matrix(0.236535,-0.009471,0.010002,0.249800,0,0);}
.m38_c01171{transform:matrix(0.237295,-0.009501,0.010002,0.249800,0,0);-ms-transform:matrix(0.237295,-0.009501,0.010002,0.249800,0,0);-webkit-transform:matrix(0.237295,-0.009501,0.010002,0.249800,0,0);}
.m28_c01171{transform:matrix(0.238024,-0.009531,0.010002,0.249800,0,0);-ms-transform:matrix(0.238024,-0.009531,0.010002,0.249800,0,0);-webkit-transform:matrix(0.238024,-0.009531,0.010002,0.249800,0,0);}
.m29_c01171{transform:matrix(0.239718,-0.009598,0.010002,0.249800,0,0);-ms-transform:matrix(0.239718,-0.009598,0.010002,0.249800,0,0);-webkit-transform:matrix(0.239718,-0.009598,0.010002,0.249800,0,0);}
.m40_c01171{transform:matrix(0.242825,-0.009723,0.010002,0.249800,0,0);-ms-transform:matrix(0.242825,-0.009723,0.010002,0.249800,0,0);-webkit-transform:matrix(0.242825,-0.009723,0.010002,0.249800,0,0);}
.m3d_c01171{transform:matrix(0.243780,-0.009761,0.010002,0.249800,0,0);-ms-transform:matrix(0.243780,-0.009761,0.010002,0.249800,0,0);-webkit-transform:matrix(0.243780,-0.009761,0.010002,0.249800,0,0);}
.m41_c01171{transform:matrix(0.245648,-0.009836,0.010002,0.249800,0,0);-ms-transform:matrix(0.245648,-0.009836,0.010002,0.249800,0,0);-webkit-transform:matrix(0.245648,-0.009836,0.010002,0.249800,0,0);}
.m44_c01171{transform:matrix(0.245732,-0.007126,0.007247,0.249895,0,0);-ms-transform:matrix(0.245732,-0.007126,0.007247,0.249895,0,0);-webkit-transform:matrix(0.245732,-0.007126,0.007247,0.249895,0,0);}
.m0_c01171{transform:matrix(0.246277,-0.012326,0.012497,0.249687,0,0);-ms-transform:matrix(0.246277,-0.012326,0.012497,0.249687,0,0);-webkit-transform:matrix(0.246277,-0.012326,0.012497,0.249687,0,0);}
.m3e_c01171{transform:matrix(0.246782,-0.009881,0.010002,0.249800,0,0);-ms-transform:matrix(0.246782,-0.009881,0.010002,0.249800,0,0);-webkit-transform:matrix(0.246782,-0.009881,0.010002,0.249800,0,0);}
.m13_c01171{transform:matrix(0.247406,-0.010649,0.010751,0.249769,0,0);-ms-transform:matrix(0.247406,-0.010649,0.010751,0.249769,0,0);-webkit-transform:matrix(0.247406,-0.010649,0.010751,0.249769,0,0);}
.m36_c01171{transform:matrix(0.247687,-0.009917,0.010002,0.249800,0,0);-ms-transform:matrix(0.247687,-0.009917,0.010002,0.249800,0,0);-webkit-transform:matrix(0.247687,-0.009917,0.010002,0.249800,0,0);}
.m43_c01171{transform:matrix(0.252644,-0.007327,0.007247,0.249895,0,0);-ms-transform:matrix(0.252644,-0.007327,0.007247,0.249895,0,0);-webkit-transform:matrix(0.252644,-0.007327,0.007247,0.249895,0,0);}
.m3c_c01171{transform:matrix(0.260781,-0.010442,0.010002,0.249800,0,0);-ms-transform:matrix(0.260781,-0.010442,0.010002,0.249800,0,0);-webkit-transform:matrix(0.260781,-0.010442,0.010002,0.249800,0,0);}
.m7_c01171{transform:matrix(0.261288,-0.011247,0.010751,0.249769,0,0);-ms-transform:matrix(0.261288,-0.011247,0.010751,0.249769,0,0);-webkit-transform:matrix(0.261288,-0.011247,0.010751,0.249769,0,0);}
.m24_c01171{transform:matrix(0.261815,-0.010483,0.010002,0.249800,0,0);-ms-transform:matrix(0.261815,-0.010483,0.010002,0.249800,0,0);-webkit-transform:matrix(0.261815,-0.010483,0.010002,0.249800,0,0);}
.m14_c01171{transform:matrix(0.261927,-0.011274,0.010751,0.249769,0,0);-ms-transform:matrix(0.261927,-0.011274,0.010751,0.249769,0,0);-webkit-transform:matrix(0.261927,-0.011274,0.010751,0.249769,0,0);}
.m22_c01171{transform:matrix(0.267293,-0.011505,0.010751,0.249769,0,0);-ms-transform:matrix(0.267293,-0.011505,0.010751,0.249769,0,0);-webkit-transform:matrix(0.267293,-0.011505,0.010751,0.249769,0,0);}
.m1d_c01171{transform:matrix(0.267602,-0.011518,0.010751,0.249769,0,0);-ms-transform:matrix(0.267602,-0.011518,0.010751,0.249769,0,0);-webkit-transform:matrix(0.267602,-0.011518,0.010751,0.249769,0,0);}
.m2a_c01171{transform:matrix(0.267970,-0.010730,0.010002,0.249800,0,0);-ms-transform:matrix(0.267970,-0.010730,0.010002,0.249800,0,0);-webkit-transform:matrix(0.267970,-0.010730,0.010002,0.249800,0,0);}
.m15_c01171{transform:matrix(0.270904,-0.011661,0.010751,0.249769,0,0);-ms-transform:matrix(0.270904,-0.011661,0.010751,0.249769,0,0);-webkit-transform:matrix(0.270904,-0.011661,0.010751,0.249769,0,0);}
.ma_c01171{transform:matrix(0.271444,-0.011684,0.010751,0.249769,0,0);-ms-transform:matrix(0.271444,-0.011684,0.010751,0.249769,0,0);-webkit-transform:matrix(0.271444,-0.011684,0.010751,0.249769,0,0);}
.m12_c01171{transform:matrix(0.276909,-0.011919,0.010751,0.249769,0,0);-ms-transform:matrix(0.276909,-0.011919,0.010751,0.249769,0,0);-webkit-transform:matrix(0.276909,-0.011919,0.010751,0.249769,0,0);}
.m27_c01171{transform:matrix(0.278332,-0.011144,0.010002,0.249800,0,0);-ms-transform:matrix(0.278332,-0.011144,0.010002,0.249800,0,0);-webkit-transform:matrix(0.278332,-0.011144,0.010002,0.249800,0,0);}
.m48_c01171{transform:matrix(0.285320,-0.008274,0.007247,0.249895,0,0);-ms-transform:matrix(0.285320,-0.008274,0.007247,0.249895,0,0);-webkit-transform:matrix(0.285320,-0.008274,0.007247,0.249895,0,0);}
.me_c01171{transform:matrix(0.290686,-0.012512,0.010751,0.249769,0,0);-ms-transform:matrix(0.290686,-0.012512,0.010751,0.249769,0,0);-webkit-transform:matrix(0.290686,-0.012512,0.010751,0.249769,0,0);}
.m2c_c01171{transform:matrix(0.293235,-0.011741,0.010002,0.249800,0,0);-ms-transform:matrix(0.293235,-0.011741,0.010002,0.249800,0,0);-webkit-transform:matrix(0.293235,-0.011741,0.010002,0.249800,0,0);}
.m19_c01171{transform:matrix(0.294607,-0.012681,0.010751,0.249769,0,0);-ms-transform:matrix(0.294607,-0.012681,0.010751,0.249769,0,0);-webkit-transform:matrix(0.294607,-0.012681,0.010751,0.249769,0,0);}
.m42_c01171{transform:matrix(0.294871,-0.008551,0.007247,0.249895,0,0);-ms-transform:matrix(0.294871,-0.008551,0.007247,0.249895,0,0);-webkit-transform:matrix(0.294871,-0.008551,0.007247,0.249895,0,0);}
.m4c_c01171{transform:matrix(0.302886,-0.008481,0.006997,0.249902,0,0);-ms-transform:matrix(0.302886,-0.008481,0.006997,0.249902,0,0);-webkit-transform:matrix(0.302886,-0.008481,0.006997,0.249902,0,0);}
.m25_c01171{transform:matrix(0.305790,-0.012244,0.010002,0.249800,0,0);-ms-transform:matrix(0.305790,-0.012244,0.010002,0.249800,0,0);-webkit-transform:matrix(0.305790,-0.012244,0.010002,0.249800,0,0);}
.m46_c01171{transform:matrix(0.319576,-0.009268,0.007247,0.249895,0,0);-ms-transform:matrix(0.319576,-0.009268,0.007247,0.249895,0,0);-webkit-transform:matrix(0.319576,-0.009268,0.007247,0.249895,0,0);}
.m47_c01171{transform:matrix(0.320260,-0.009288,0.007247,0.249895,0,0);-ms-transform:matrix(0.320260,-0.009288,0.007247,0.249895,0,0);-webkit-transform:matrix(0.320260,-0.009288,0.007247,0.249895,0,0);}
.m11_c01171{transform:matrix(0.320378,-0.013790,0.010751,0.249769,0,0);-ms-transform:matrix(0.320378,-0.013790,0.010751,0.249769,0,0);-webkit-transform:matrix(0.320378,-0.013790,0.010751,0.249769,0,0);}
.m49_c01171{transform:matrix(0.322164,-0.009021,0.006997,0.249902,0,0);-ms-transform:matrix(0.322164,-0.009021,0.006997,0.249902,0,0);-webkit-transform:matrix(0.322164,-0.009021,0.006997,0.249902,0,0);}
.m8_c01171{transform:matrix(0.330989,-0.014247,0.010751,0.249769,0,0);-ms-transform:matrix(0.330989,-0.014247,0.010751,0.249769,0,0);-webkit-transform:matrix(0.330989,-0.014247,0.010751,0.249769,0,0);}
.m4b_c01171{transform:matrix(0.342206,-0.009582,0.006997,0.249902,0,0);-ms-transform:matrix(0.342206,-0.009582,0.006997,0.249902,0,0);-webkit-transform:matrix(0.342206,-0.009582,0.006997,0.249902,0,0);}
.m17_c01171{transform:matrix(0.345955,-0.014891,0.010751,0.249769,0,0);-ms-transform:matrix(0.345955,-0.014891,0.010751,0.249769,0,0);-webkit-transform:matrix(0.345955,-0.014891,0.010751,0.249769,0,0);}
.m10_c01171{transform:matrix(0.356475,-0.015344,0.010751,0.249769,0,0);-ms-transform:matrix(0.356475,-0.015344,0.010751,0.249769,0,0);-webkit-transform:matrix(0.356475,-0.015344,0.010751,0.249769,0,0);}
.m1_c01171{transform:matrix(0.361058,-0.018071,0.012497,0.249687,0,0);-ms-transform:matrix(0.361058,-0.018071,0.012497,0.249687,0,0);-webkit-transform:matrix(0.361058,-0.018071,0.012497,0.249687,0,0);}
.m1b_c01171{transform:matrix(0.372880,-0.016050,0.010751,0.249769,0,0);-ms-transform:matrix(0.372880,-0.016050,0.010751,0.249769,0,0);-webkit-transform:matrix(0.372880,-0.016050,0.010751,0.249769,0,0);}
.m21_c01171{transform:matrix(0.380498,-0.016378,0.010751,0.249769,0,0);-ms-transform:matrix(0.380498,-0.016378,0.010751,0.249769,0,0);-webkit-transform:matrix(0.380498,-0.016378,0.010751,0.249769,0,0);}
.m18_c01171{transform:matrix(0.381911,-0.016439,0.010751,0.249769,0,0);-ms-transform:matrix(0.381911,-0.016439,0.010751,0.249769,0,0);-webkit-transform:matrix(0.381911,-0.016439,0.010751,0.249769,0,0);}
.m23_c01171{transform:matrix(0.384212,-0.015384,0.010002,0.249800,0,0);-ms-transform:matrix(0.384212,-0.015384,0.010002,0.249800,0,0);-webkit-transform:matrix(0.384212,-0.015384,0.010002,0.249800,0,0);}
.md_c01171{transform:matrix(0.388365,-0.016716,0.010751,0.249769,0,0);-ms-transform:matrix(0.388365,-0.016716,0.010751,0.249769,0,0);-webkit-transform:matrix(0.388365,-0.016716,0.010751,0.249769,0,0);}
.mf_c01171{transform:matrix(0.389924,-0.016784,0.010751,0.249769,0,0);-ms-transform:matrix(0.389924,-0.016784,0.010751,0.249769,0,0);-webkit-transform:matrix(0.389924,-0.016784,0.010751,0.249769,0,0);}
.m2b_c01171{transform:matrix(0.394334,-0.015789,0.010002,0.249800,0,0);-ms-transform:matrix(0.394334,-0.015789,0.010002,0.249800,0,0);-webkit-transform:matrix(0.394334,-0.015789,0.010002,0.249800,0,0);}
.m26_c01171{transform:matrix(0.397192,-0.015904,0.010002,0.249800,0,0);-ms-transform:matrix(0.397192,-0.015904,0.010002,0.249800,0,0);-webkit-transform:matrix(0.397192,-0.015904,0.010002,0.249800,0,0);}
.m45_c01171{transform:matrix(0.440970,-0.012788,0.007247,0.249895,0,0);-ms-transform:matrix(0.440970,-0.012788,0.007247,0.249895,0,0);-webkit-transform:matrix(0.440970,-0.012788,0.007247,0.249895,0,0);}
.m4_c01171{transform:matrix(0.446926,-0.019237,0.010751,0.249769,0,0);-ms-transform:matrix(0.446926,-0.019237,0.010751,0.249769,0,0);-webkit-transform:matrix(0.446926,-0.019237,0.010751,0.249769,0,0);}
.m4a_c01171{transform:matrix(0.469666,-0.013151,0.006997,0.249902,0,0);-ms-transform:matrix(0.469666,-0.013151,0.006997,0.249902,0,0);-webkit-transform:matrix(0.469666,-0.013151,0.006997,0.249902,0,0);}
.m4d_c01171{transform:matrix(0.829925,-0.023238,0.006997,0.249902,0,0);-ms-transform:matrix(0.829925,-0.023238,0.006997,0.249902,0,0);-webkit-transform:matrix(0.829925,-0.023238,0.006997,0.249902,0,0);}
.m4e_c01171{transform:matrix(0.856274,-0.023976,0.006997,0.249902,0,0);-ms-transform:matrix(0.856274,-0.023976,0.006997,0.249902,0,0);-webkit-transform:matrix(0.856274,-0.023976,0.006997,0.249902,0,0);}
.v0_c01171{vertical-align:0.000000px;}
.ls0_c01171{letter-spacing:0.000000px;}
.sc__c01171{text-shadow:none;}
.sc0_c01171{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__c01171{-webkit-text-stroke:0px transparent;}
.sc0_c01171{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01171{word-spacing:0.000000px;}
.fc0_c01171{color:transparent;}
.fs5_c01171{font-size:66.027747px;}
.fs3_c01171{font-size:71.985635px;}
.fs1_c01171{font-size:77.994150px;}
.fs4_c01171{font-size:83.983240px;}
.fs2_c01171{font-size:83.993700px;}
.fs0_c01171{font-size:90.022542px;}
.fs6_c01171{font-size:102.039976px;}
.y0_c01171{bottom:0.000000px;}
.y4a_c01171{bottom:505.230000px;}
.y4b_c01171{bottom:506.169834px;}
.y4c_c01171{bottom:507.469650px;}
.y4d_c01171{bottom:508.321074px;}
.y4e_c01171{bottom:509.097612px;}
.y4f_c01171{bottom:512.348748px;}
.y43_c01171{bottom:688.446000px;}
.y44_c01171{bottom:690.393016px;}
.y45_c01171{bottom:691.622501px;}
.y46_c01171{bottom:692.545353px;}
.y47_c01171{bottom:694.416288px;}
.y48_c01171{bottom:697.209727px;}
.y49_c01171{bottom:698.369438px;}
.y3e_c01171{bottom:721.756943px;}
.y3f_c01171{bottom:724.978451px;}
.y40_c01171{bottom:725.924265px;}
.y41_c01171{bottom:728.311491px;}
.y42_c01171{bottom:729.496460px;}
.y35_c01171{bottom:755.505991px;}
.y36_c01171{bottom:757.144578px;}
.y37_c01171{bottom:757.749567px;}
.y38_c01171{bottom:759.558710px;}
.y39_c01171{bottom:760.249036px;}
.y3a_c01171{bottom:763.922713px;}
.y3b_c01171{bottom:764.981338px;}
.y3c_c01171{bottom:766.486997px;}
.y3d_c01171{bottom:769.411356px;}
.y2d_c01171{bottom:786.815684px;}
.y2e_c01171{bottom:788.919635px;}
.y2f_c01171{bottom:793.128255px;}
.y30_c01171{bottom:795.625286px;}
.y31_c01171{bottom:798.663785px;}
.y32_c01171{bottom:801.709125px;}
.y33_c01171{bottom:802.819544px;}
.y34_c01171{bottom:804.062749px;}
.y24_c01171{bottom:818.212500px;}
.y25_c01171{bottom:819.602400px;}
.y26_c01171{bottom:821.392020px;}
.y27_c01171{bottom:822.715920px;}
.y28_c01171{bottom:825.797940px;}
.y29_c01171{bottom:829.459260px;}
.y2a_c01171{bottom:832.029780px;}
.y2b_c01171{bottom:833.390340px;}
.y2c_c01171{bottom:835.200720px;}
.y1d_c01171{bottom:863.494417px;}
.y1e_c01171{bottom:867.472281px;}
.y1f_c01171{bottom:870.502219px;}
.y20_c01171{bottom:871.700995px;}
.y21_c01171{bottom:873.313626px;}
.y22_c01171{bottom:874.724305px;}
.y23_c01171{bottom:876.692037px;}
.y12_c01171{bottom:890.461404px;}
.y13_c01171{bottom:893.758878px;}
.y14_c01171{bottom:895.146399px;}
.y15_c01171{bottom:897.379078px;}
.y16_c01171{bottom:899.105872px;}
.y17_c01171{bottom:902.262970px;}
.y18_c01171{bottom:904.523742px;}
.y19_c01171{bottom:906.049252px;}
.y1a_c01171{bottom:908.047381px;}
.y1b_c01171{bottom:909.304702px;}
.y1c_c01171{bottom:910.655295px;}
.y5_c01171{bottom:920.178000px;}
.y6_c01171{bottom:922.180789px;}
.y7_c01171{bottom:924.617986px;}
.y8_c01171{bottom:926.032600px;}
.y9_c01171{bottom:928.400847px;}
.ya_c01171{bottom:930.767610px;}
.yb_c01171{bottom:931.810188px;}
.yc_c01171{bottom:936.473860px;}
.yd_c01171{bottom:937.493476px;}
.ye_c01171{bottom:940.878114px;}
.yf_c01171{bottom:943.959021px;}
.y10_c01171{bottom:946.093261px;}
.y11_c01171{bottom:950.108580px;}
.y1_c01171{bottom:955.330500px;}
.y2_c01171{bottom:958.782225px;}
.y3_c01171{bottom:959.886525px;}
.y4_c01171{bottom:964.817325px;}
.h7_c01171{height:66.027747px;}
.h5_c01171{height:71.985635px;}
.h3_c01171{height:77.994150px;}
.h6_c01171{height:83.983240px;}
.h4_c01171{height:83.993700px;}
.h2_c01171{height:90.022542px;}
.h8_c01171{height:102.039976px;}
.h1_c01171{height:1258.500000px;}
.h0_c01171{height:1258.740000px;}
.w0_c01171{width:904.200000px;}
.w1_c01171{width:904.500000px;}
.x0_c01171{left:0.000000px;}
.x1_c01171{left:23.824500px;}
.x5_c01171{left:46.615500px;}
.x2_c01171{left:92.789966px;}
.x3_c01171{left:114.853880px;}
.x23_c01171{left:140.946000px;}
.x6_c01171{left:149.767744px;}
.x11_c01171{left:166.764147px;}
.x24_c01171{left:175.658753px;}
.x7_c01171{left:182.632847px;}
.x4_c01171{left:213.371263px;}
.x25_c01171{left:220.354512px;}
.x2b_c01171{left:221.552838px;}
.x8_c01171{left:237.653271px;}
.x12_c01171{left:249.127854px;}
.x26_c01171{left:253.418914px;}
.x43_c01171{left:271.594500px;}
.x2c_c01171{left:276.872907px;}
.x13_c01171{left:283.770132px;}
.x9_c01171{left:292.639230px;}
.x33_c01171{left:299.949861px;}
.x44_c01171{left:305.160000px;}
.x1c_c01171{left:307.509053px;}
.xa_c01171{left:316.860984px;}
.x27_c01171{left:330.392364px;}
.x3b_c01171{left:335.491731px;}
.x14_c01171{left:339.512501px;}
.x34_c01171{left:349.532602px;}
.x45_c01171{left:351.582000px;}
.x35_c01171{left:367.865916px;}
.x15_c01171{left:382.629893px;}
.x2d_c01171{left:387.493504px;}
.x46_c01171{left:409.723500px;}
.x1d_c01171{left:421.026483px;}
.x36_c01171{left:422.607935px;}
.xb_c01171{left:425.210027px;}
.x37_c01171{left:443.522385px;}
.xc_c01171{left:448.898314px;}
.x2e_c01171{left:453.118040px;}
.x3c_c01171{left:454.633452px;}
.x16_c01171{left:461.488157px;}
.x28_c01171{left:486.032568px;}
.x3d_c01171{left:489.613135px;}
.x40_c01171{left:491.284500px;}
.x1e_c01171{left:507.498689px;}
.x17_c01171{left:517.952931px;}
.x29_c01171{left:520.012554px;}
.x41_c01171{left:523.107000px;}
.x47_c01171{left:525.835500px;}
.xd_c01171{left:527.532102px;}
.x2f_c01171{left:532.977966px;}
.x1f_c01171{left:541.697206px;}
.x38_c01171{left:554.689717px;}
.x18_c01171{left:556.045208px;}
.x2a_c01171{left:565.226794px;}
.x3e_c01171{left:577.872674px;}
.x20_c01171{left:587.707968px;}
.xe_c01171{left:599.109453px;}
.x19_c01171{left:605.954705px;}
.x30_c01171{left:613.046244px;}
.x3f_c01171{left:621.674091px;}
.x21_c01171{left:627.980537px;}
.x39_c01171{left:632.302269px;}
.x1a_c01171{left:637.362833px;}
.x31_c01171{left:642.240862px;}
.xf_c01171{left:648.693320px;}
.x1b_c01171{left:671.077410px;}
.x32_c01171{left:674.939274px;}
.x22_c01171{left:684.124641px;}
.x3a_c01171{left:720.819468px;}
.x42_c01171{left:723.937500px;}
.x10_c01171{left:741.979440px;}
@media print{
.v0_c01171{vertical-align:0.000000pt;}
.ls0_c01171{letter-spacing:0.000000pt;}
.ws0_c01171{word-spacing:0.000000pt;}
.fs5_c01171{font-size:58.691331pt;}
.fs3_c01171{font-size:63.987231pt;}
.fs1_c01171{font-size:69.328133pt;}
.fs4_c01171{font-size:74.651769pt;}
.fs2_c01171{font-size:74.661066pt;}
.fs0_c01171{font-size:80.020037pt;}
.fs6_c01171{font-size:90.702201pt;}
.y0_c01171{bottom:0.000000pt;}
.y4a_c01171{bottom:449.093333pt;}
.y4b_c01171{bottom:449.928741pt;}
.y4c_c01171{bottom:451.084133pt;}
.y4d_c01171{bottom:451.840955pt;}
.y4e_c01171{bottom:452.531211pt;}
.y4f_c01171{bottom:455.421109pt;}
.y43_c01171{bottom:611.952000pt;}
.y44_c01171{bottom:613.682681pt;}
.y45_c01171{bottom:614.775556pt;}
.y46_c01171{bottom:615.595869pt;}
.y47_c01171{bottom:617.258923pt;}
.y48_c01171{bottom:619.741980pt;}
.y49_c01171{bottom:620.772833pt;}
.y3e_c01171{bottom:641.561727pt;}
.y3f_c01171{bottom:644.425289pt;}
.y40_c01171{bottom:645.266013pt;}
.y41_c01171{bottom:647.387992pt;}
.y42_c01171{bottom:648.441297pt;}
.y35_c01171{bottom:671.560881pt;}
.y36_c01171{bottom:673.017403pt;}
.y37_c01171{bottom:673.555171pt;}
.y38_c01171{bottom:675.163297pt;}
.y39_c01171{bottom:675.776921pt;}
.y3a_c01171{bottom:679.042412pt;}
.y3b_c01171{bottom:679.983412pt;}
.y3c_c01171{bottom:681.321775pt;}
.y3d_c01171{bottom:683.921205pt;}
.y2d_c01171{bottom:699.391719pt;}
.y2e_c01171{bottom:701.261897pt;}
.y2f_c01171{bottom:705.002893pt;}
.y30_c01171{bottom:707.222476pt;}
.y31_c01171{bottom:709.923364pt;}
.y32_c01171{bottom:712.630333pt;}
.y33_c01171{bottom:713.617372pt;}
.y34_c01171{bottom:714.722444pt;}
.y24_c01171{bottom:727.300000pt;}
.y25_c01171{bottom:728.535467pt;}
.y26_c01171{bottom:730.126240pt;}
.y27_c01171{bottom:731.303040pt;}
.y28_c01171{bottom:734.042613pt;}
.y29_c01171{bottom:737.297120pt;}
.y2a_c01171{bottom:739.582027pt;}
.y2b_c01171{bottom:740.791413pt;}
.y2c_c01171{bottom:742.400640pt;}
.y1d_c01171{bottom:767.550593pt;}
.y1e_c01171{bottom:771.086472pt;}
.y1f_c01171{bottom:773.779751pt;}
.y20_c01171{bottom:774.845329pt;}
.y21_c01171{bottom:776.278779pt;}
.y22_c01171{bottom:777.532716pt;}
.y23_c01171{bottom:779.281811pt;}
.y12_c01171{bottom:791.521248pt;}
.y13_c01171{bottom:794.452336pt;}
.y14_c01171{bottom:795.685688pt;}
.y15_c01171{bottom:797.670292pt;}
.y16_c01171{bottom:799.205220pt;}
.y17_c01171{bottom:802.011529pt;}
.y18_c01171{bottom:804.021104pt;}
.y19_c01171{bottom:805.377113pt;}
.y1a_c01171{bottom:807.153228pt;}
.y1b_c01171{bottom:808.270847pt;}
.y1c_c01171{bottom:809.471373pt;}
.y5_c01171{bottom:817.936000pt;}
.y6_c01171{bottom:819.716257pt;}
.y7_c01171{bottom:821.882655pt;}
.y8_c01171{bottom:823.140089pt;}
.y9_c01171{bottom:825.245197pt;}
.ya_c01171{bottom:827.348987pt;}
.yb_c01171{bottom:828.275723pt;}
.yc_c01171{bottom:832.421209pt;}
.yd_c01171{bottom:833.327535pt;}
.ye_c01171{bottom:836.336101pt;}
.yf_c01171{bottom:839.074685pt;}
.y10_c01171{bottom:840.971788pt;}
.y11_c01171{bottom:844.540960pt;}
.y1_c01171{bottom:849.182667pt;}
.y2_c01171{bottom:852.250867pt;}
.y3_c01171{bottom:853.232467pt;}
.y4_c01171{bottom:857.615400pt;}
.h7_c01171{height:58.691331pt;}
.h5_c01171{height:63.987231pt;}
.h3_c01171{height:69.328133pt;}
.h6_c01171{height:74.651769pt;}
.h4_c01171{height:74.661066pt;}
.h2_c01171{height:80.020037pt;}
.h8_c01171{height:90.702201pt;}
.h1_c01171{height:1118.666667pt;}
.h0_c01171{height:1118.880000pt;}
.w0_c01171{width:803.733333pt;}
.w1_c01171{width:804.000000pt;}
.x0_c01171{left:0.000000pt;}
.x1_c01171{left:21.177333pt;}
.x5_c01171{left:41.436000pt;}
.x2_c01171{left:82.479969pt;}
.x3_c01171{left:102.092337pt;}
.x23_c01171{left:125.285333pt;}
.x6_c01171{left:133.126884pt;}
.x11_c01171{left:148.234797pt;}
.x24_c01171{left:156.141113pt;}
.x7_c01171{left:162.340308pt;}
.x4_c01171{left:189.663345pt;}
.x25_c01171{left:195.870677pt;}
.x2b_c01171{left:196.935856pt;}
.x8_c01171{left:211.247352pt;}
.x12_c01171{left:221.446981pt;}
.x26_c01171{left:225.261257pt;}
.x43_c01171{left:241.417333pt;}
.x2c_c01171{left:246.109251pt;}
.x13_c01171{left:252.240117pt;}
.x9_c01171{left:260.123760pt;}
.x33_c01171{left:266.622099pt;}
.x44_c01171{left:271.253333pt;}
.x1c_c01171{left:273.341380pt;}
.xa_c01171{left:281.654208pt;}
.x27_c01171{left:293.682101pt;}
.x3b_c01171{left:298.214872pt;}
.x14_c01171{left:301.788889pt;}
.x34_c01171{left:310.695647pt;}
.x45_c01171{left:312.517333pt;}
.x35_c01171{left:326.991925pt;}
.x15_c01171{left:340.115460pt;}
.x2d_c01171{left:344.438671pt;}
.x46_c01171{left:364.198667pt;}
.x1d_c01171{left:374.245763pt;}
.x36_c01171{left:375.651497pt;}
.xb_c01171{left:377.964468pt;}
.x37_c01171{left:394.242120pt;}
.xc_c01171{left:399.020724pt;}
.x2e_c01171{left:402.771591pt;}
.x3c_c01171{left:404.118624pt;}
.x16_c01171{left:410.211695pt;}
.x28_c01171{left:432.028949pt;}
.x3d_c01171{left:435.211676pt;}
.x40_c01171{left:436.697333pt;}
.x1e_c01171{left:451.109945pt;}
.x17_c01171{left:460.402605pt;}
.x29_c01171{left:462.233381pt;}
.x41_c01171{left:464.984000pt;}
.x47_c01171{left:467.409333pt;}
.xd_c01171{left:468.917424pt;}
.x2f_c01171{left:473.758192pt;}
.x1f_c01171{left:481.508628pt;}
.x38_c01171{left:493.057527pt;}
.x18_c01171{left:494.262407pt;}
.x2a_c01171{left:502.423817pt;}
.x3e_c01171{left:513.664599pt;}
.x20_c01171{left:522.407083pt;}
.xe_c01171{left:532.541736pt;}
.x19_c01171{left:538.626404pt;}
.x30_c01171{left:544.929995pt;}
.x3f_c01171{left:552.599192pt;}
.x21_c01171{left:558.204921pt;}
.x39_c01171{left:562.046461pt;}
.x1a_c01171{left:566.544740pt;}
.x31_c01171{left:570.880767pt;}
.xf_c01171{left:576.616284pt;}
.x1b_c01171{left:596.513253pt;}
.x32_c01171{left:599.946021pt;}
.x22_c01171{left:608.110792pt;}
.x3a_c01171{left:640.728416pt;}
.x42_c01171{left:643.500000pt;}
.x10_c01171{left:659.537280pt;}
}





/* 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_c01172 {
    display:none;
  }
  .loading-indicator_c01172.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01172 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_c01172 { 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_c01172" -> "#page-container .classname_c01172")
 */
.pf_c01172 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01172 { /* 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_c01172.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01172 { /* 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_c01172 { /* 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_c01172 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01172 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01172 {overflow:visible;}
  }
}
.c_c01172 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01172 { /* 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_c01172:after { /* webkit #35443 */
  content: '';
}
.t_c01172:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01172 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 */
}
.__c01172 { /* 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_c01172 { /* info for Javascript */
  display:none;
}
.l_c01172 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01172 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01172 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01172: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_c01172 {
    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_c01172.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01172.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_c01172 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01172{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01172;src:url('chunks/assets/font_dbd529e162d5851c7bfb6d27.woff2')format("woff");}.ff1_c01172{font-family:ff1_c01172;line-height:1.000000;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;}
.m2_c01172{transform:matrix(0.156840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156840,0.000000,0.000000,0.250000,0,0);}
.m0_c01172{transform:matrix(0.157645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157645,0.000000,0.000000,0.250000,0,0);}
.m2d_c01172{transform:matrix(0.200365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200365,0.000000,0.000000,0.250000,0,0);}
.m2a_c01172{transform:matrix(0.208675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208675,0.000000,0.000000,0.250000,0,0);}
.m4_c01172{transform:matrix(0.227005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227005,0.000000,0.000000,0.250000,0,0);}
.m8_c01172{transform:matrix(0.228170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228170,0.000000,0.000000,0.250000,0,0);}
.m25_c01172{transform:matrix(0.231955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231955,0.000000,0.000000,0.250000,0,0);}
.m1_c01172{transform:matrix(0.237625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237625,0.000000,0.000000,0.250000,0,0);}
.m23_c01172{transform:matrix(0.239010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239010,0.000000,0.000000,0.250000,0,0);}
.m18_c01172{transform:matrix(0.242846,0.001457,-0.001500,0.249996,0,0);-ms-transform:matrix(0.242846,0.001457,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.242846,0.001457,-0.001500,0.249996,0,0);}
.m27_c01172{transform:matrix(0.245340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245340,0.000000,0.000000,0.250000,0,0);}
.m13_c01172{transform:matrix(0.247456,0.001485,-0.001500,0.249996,0,0);-ms-transform:matrix(0.247456,0.001485,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.247456,0.001485,-0.001500,0.249996,0,0);}
.m26_c01172{transform:matrix(0.249145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249145,0.000000,0.000000,0.250000,0,0);}
.m29_c01172{transform:matrix(0.250030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250030,0.000000,0.000000,0.250000,0,0);}
.m28_c01172{transform:matrix(0.252600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252600,0.000000,0.000000,0.250000,0,0);}
.m6_c01172{transform:matrix(0.252825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252825,0.000000,0.000000,0.250000,0,0);}
.mb_c01172{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.mc_c01172{transform:matrix(0.255910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255910,0.000000,0.000000,0.250000,0,0);}
.m2b_c01172{transform:matrix(0.257865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257865,0.000000,0.000000,0.250000,0,0);}
.m1e_c01172{transform:matrix(0.258670,0.001552,-0.001500,0.249996,0,0);-ms-transform:matrix(0.258670,0.001552,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.258670,0.001552,-0.001500,0.249996,0,0);}
.m9_c01172{transform:matrix(0.259050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259050,0.000000,0.000000,0.250000,0,0);}
.m2c_c01172{transform:matrix(0.261730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261730,0.000000,0.000000,0.250000,0,0);}
.ma_c01172{transform:matrix(0.264450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264450,0.000000,0.000000,0.250000,0,0);}
.mf_c01172{transform:matrix(0.264805,0.001589,-0.001500,0.249996,0,0);-ms-transform:matrix(0.264805,0.001589,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.264805,0.001589,-0.001500,0.249996,0,0);}
.m22_c01172{transform:matrix(0.265885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265885,0.000000,0.000000,0.250000,0,0);}
.m1b_c01172{transform:matrix(0.268045,0.001608,-0.001500,0.249996,0,0);-ms-transform:matrix(0.268045,0.001608,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.268045,0.001608,-0.001500,0.249996,0,0);}
.m24_c01172{transform:matrix(0.270165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270165,0.000000,0.000000,0.250000,0,0);}
.me_c01172{transform:matrix(0.272250,0.001634,-0.001500,0.249996,0,0);-ms-transform:matrix(0.272250,0.001634,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.272250,0.001634,-0.001500,0.249996,0,0);}
.m16_c01172{transform:matrix(0.272495,0.001635,-0.001500,0.249996,0,0);-ms-transform:matrix(0.272495,0.001635,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.272495,0.001635,-0.001500,0.249996,0,0);}
.m1d_c01172{transform:matrix(0.273530,0.001641,-0.001500,0.249996,0,0);-ms-transform:matrix(0.273530,0.001641,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.273530,0.001641,-0.001500,0.249996,0,0);}
.m21_c01172{transform:matrix(0.273580,0.001641,-0.001500,0.249996,0,0);-ms-transform:matrix(0.273580,0.001641,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.273580,0.001641,-0.001500,0.249996,0,0);}
.m17_c01172{transform:matrix(0.274255,0.001646,-0.001500,0.249996,0,0);-ms-transform:matrix(0.274255,0.001646,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.274255,0.001646,-0.001500,0.249996,0,0);}
.m11_c01172{transform:matrix(0.276850,0.001661,-0.001500,0.249996,0,0);-ms-transform:matrix(0.276850,0.001661,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.276850,0.001661,-0.001500,0.249996,0,0);}
.m7_c01172{transform:matrix(0.278980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278980,0.000000,0.000000,0.250000,0,0);}
.m3_c01172{transform:matrix(0.279610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279610,0.000000,0.000000,0.250000,0,0);}
.m5_c01172{transform:matrix(0.279810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279810,0.000000,0.000000,0.250000,0,0);}
.m12_c01172{transform:matrix(0.281790,0.001691,-0.001500,0.249996,0,0);-ms-transform:matrix(0.281790,0.001691,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.281790,0.001691,-0.001500,0.249996,0,0);}
.m19_c01172{transform:matrix(0.289970,0.001740,-0.001500,0.249996,0,0);-ms-transform:matrix(0.289970,0.001740,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.289970,0.001740,-0.001500,0.249996,0,0);}
.m1f_c01172{transform:matrix(0.290905,0.001745,-0.001500,0.249996,0,0);-ms-transform:matrix(0.290905,0.001745,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.290905,0.001745,-0.001500,0.249996,0,0);}
.m1a_c01172{transform:matrix(0.291690,0.001750,-0.001500,0.249996,0,0);-ms-transform:matrix(0.291690,0.001750,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.291690,0.001750,-0.001500,0.249996,0,0);}
.m15_c01172{transform:matrix(0.293000,0.001758,-0.001500,0.249996,0,0);-ms-transform:matrix(0.293000,0.001758,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.293000,0.001758,-0.001500,0.249996,0,0);}
.m2e_c01172{transform:matrix(0.293490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293490,0.000000,0.000000,0.250000,0,0);}
.m1c_c01172{transform:matrix(0.293880,0.001763,-0.001500,0.249996,0,0);-ms-transform:matrix(0.293880,0.001763,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.293880,0.001763,-0.001500,0.249996,0,0);}
.md_c01172{transform:matrix(0.294630,0.001768,-0.001500,0.249996,0,0);-ms-transform:matrix(0.294630,0.001768,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.294630,0.001768,-0.001500,0.249996,0,0);}
.m14_c01172{transform:matrix(0.297665,0.001786,-0.001500,0.249996,0,0);-ms-transform:matrix(0.297665,0.001786,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.297665,0.001786,-0.001500,0.249996,0,0);}
.m20_c01172{transform:matrix(0.302925,0.001818,-0.001500,0.249996,0,0);-ms-transform:matrix(0.302925,0.001818,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.302925,0.001818,-0.001500,0.249996,0,0);}
.m10_c01172{transform:matrix(0.307789,0.001847,-0.001500,0.249996,0,0);-ms-transform:matrix(0.307789,0.001847,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.307789,0.001847,-0.001500,0.249996,0,0);}
.v0_c01172{vertical-align:0.000000px;}
.ls0_c01172{letter-spacing:0.000000px;}
.sc__c01172{text-shadow:none;}
.sc0_c01172{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__c01172{-webkit-text-stroke:0px transparent;}
.sc0_c01172{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01172{word-spacing:0.000000px;}
.fc0_c01172{color:transparent;}
.fs3_c01172{font-size:60.000000px;}
.fs2_c01172{font-size:66.001188px;}
.fs1_c01172{font-size:72.000000px;}
.fs0_c01172{font-size:78.000000px;}
.y0_c01172{bottom:0.000000px;}
.y25_c01172{bottom:914.760000px;}
.y24_c01172{bottom:947.500500px;}
.y23_c01172{bottom:1055.928000px;}
.y22_c01172{bottom:1087.497309px;}
.y21_c01172{bottom:1088.091984px;}
.y20_c01172{bottom:1088.299353px;}
.y1f_c01172{bottom:1088.501754px;}
.y1e_c01172{bottom:1088.889033px;}
.y1d_c01172{bottom:1089.363711px;}
.y1c_c01172{bottom:1089.629292px;}
.y1b_c01172{bottom:1090.095870px;}
.y1a_c01172{bottom:1090.557678px;}
.y19_c01172{bottom:1090.752051px;}
.y18_c01172{bottom:1091.340102px;}
.y17_c01172{bottom:1122.867207px;}
.y16_c01172{bottom:1122.995178px;}
.y15_c01172{bottom:1123.465122px;}
.y14_c01172{bottom:1123.996509px;}
.y13_c01172{bottom:1124.198982px;}
.y12_c01172{bottom:1124.599158px;}
.y11_c01172{bottom:1124.796789px;}
.y10_c01172{bottom:1124.926281px;}
.yf_c01172{bottom:1125.598734px;}
.ye_c01172{bottom:1125.794772px;}
.yd_c01172{bottom:1126.115487px;}
.yc_c01172{bottom:1126.710000px;}
.yb_c01172{bottom:1159.683000px;}
.ya_c01172{bottom:1159.962000px;}
.y9_c01172{bottom:1160.295000px;}
.y8_c01172{bottom:1160.572500px;}
.y7_c01172{bottom:1160.740500px;}
.y6_c01172{bottom:1161.237000px;}
.y5_c01172{bottom:1161.510000px;}
.y4_c01172{bottom:1162.014000px;}
.y3_c01172{bottom:1162.180500px;}
.y2_c01172{bottom:1162.891500px;}
.y1_c01172{bottom:1215.004500px;}
.h5_c01172{height:60.000000px;}
.h4_c01172{height:66.001188px;}
.h3_c01172{height:72.000000px;}
.h2_c01172{height:78.000000px;}
.h1_c01172{height:1258.500000px;}
.h0_c01172{height:1258.740000px;}
.w0_c01172{width:904.200000px;}
.w1_c01172{width:904.500000px;}
.x0_c01172{left:0.000000px;}
.x20_c01172{left:171.450000px;}
.x4_c01172{left:172.996500px;}
.x21_c01172{left:226.530000px;}
.x1d_c01172{left:239.490000px;}
.x26_c01172{left:260.010000px;}
.x1e_c01172{left:271.080000px;}
.xe_c01172{left:272.614500px;}
.x17_c01172{left:304.203798px;}
.x5_c01172{left:315.298500px;}
.xf_c01172{left:326.067000px;}
.x22_c01172{left:327.510000px;}
.x6_c01172{left:348.493500px;}
.x10_c01172{left:358.740000px;}
.x1f_c01172{left:373.140000px;}
.x18_c01172{left:381.171798px;}
.x1_c01172{left:426.060000px;}
.x23_c01172{left:437.670000px;}
.x2_c01172{left:448.200000px;}
.x7_c01172{left:449.206500px;}
.x19_c01172{left:458.934798px;}
.x11_c01172{left:470.815500px;}
.x3_c01172{left:493.020000px;}
.x8_c01172{left:503.751000px;}
.x12_c01172{left:525.336000px;}
.x24_c01172{left:536.220000px;}
.x25_c01172{left:570.240000px;}
.x1a_c01172{left:582.311298px;}
.x13_c01172{left:592.032000px;}
.x9_c01172{left:603.111000px;}
.x14_c01172{left:625.777500px;}
.xa_c01172{left:636.592500px;}
.x1b_c01172{left:646.857798px;}
.x1c_c01172{left:680.591298px;}
.xb_c01172{left:692.214000px;}
.x15_c01172{left:714.342000px;}
.xc_c01172{left:758.901000px;}
.x16_c01172{left:792.666000px;}
.xd_c01172{left:814.810500px;}
@media print{
.v0_c01172{vertical-align:0.000000pt;}
.ls0_c01172{letter-spacing:0.000000pt;}
.ws0_c01172{word-spacing:0.000000pt;}
.fs3_c01172{font-size:53.333333pt;}
.fs2_c01172{font-size:58.667723pt;}
.fs1_c01172{font-size:64.000000pt;}
.fs0_c01172{font-size:69.333333pt;}
.y0_c01172{bottom:0.000000pt;}
.y25_c01172{bottom:813.120000pt;}
.y24_c01172{bottom:842.222667pt;}
.y23_c01172{bottom:938.602667pt;}
.y22_c01172{bottom:966.664275pt;}
.y21_c01172{bottom:967.192875pt;}
.y20_c01172{bottom:967.377203pt;}
.y1f_c01172{bottom:967.557115pt;}
.y1e_c01172{bottom:967.901363pt;}
.y1d_c01172{bottom:968.323299pt;}
.y1c_c01172{bottom:968.559371pt;}
.y1b_c01172{bottom:968.974107pt;}
.y1a_c01172{bottom:969.384603pt;}
.y19_c01172{bottom:969.557379pt;}
.y18_c01172{bottom:970.080091pt;}
.y17_c01172{bottom:998.104184pt;}
.y16_c01172{bottom:998.217936pt;}
.y15_c01172{bottom:998.635664pt;}
.y14_c01172{bottom:999.108008pt;}
.y13_c01172{bottom:999.287984pt;}
.y12_c01172{bottom:999.643696pt;}
.y11_c01172{bottom:999.819368pt;}
.y10_c01172{bottom:999.934472pt;}
.yf_c01172{bottom:1000.532208pt;}
.ye_c01172{bottom:1000.706464pt;}
.yd_c01172{bottom:1000.991544pt;}
.yc_c01172{bottom:1001.520000pt;}
.yb_c01172{bottom:1030.829333pt;}
.ya_c01172{bottom:1031.077333pt;}
.y9_c01172{bottom:1031.373333pt;}
.y8_c01172{bottom:1031.620000pt;}
.y7_c01172{bottom:1031.769333pt;}
.y6_c01172{bottom:1032.210667pt;}
.y5_c01172{bottom:1032.453333pt;}
.y4_c01172{bottom:1032.901333pt;}
.y3_c01172{bottom:1033.049333pt;}
.y2_c01172{bottom:1033.681333pt;}
.y1_c01172{bottom:1080.004000pt;}
.h5_c01172{height:53.333333pt;}
.h4_c01172{height:58.667723pt;}
.h3_c01172{height:64.000000pt;}
.h2_c01172{height:69.333333pt;}
.h1_c01172{height:1118.666667pt;}
.h0_c01172{height:1118.880000pt;}
.w0_c01172{width:803.733333pt;}
.w1_c01172{width:804.000000pt;}
.x0_c01172{left:0.000000pt;}
.x20_c01172{left:152.400000pt;}
.x4_c01172{left:153.774667pt;}
.x21_c01172{left:201.360000pt;}
.x1d_c01172{left:212.880000pt;}
.x26_c01172{left:231.120000pt;}
.x1e_c01172{left:240.960000pt;}
.xe_c01172{left:242.324000pt;}
.x17_c01172{left:270.403376pt;}
.x5_c01172{left:280.265333pt;}
.xf_c01172{left:289.837333pt;}
.x22_c01172{left:291.120000pt;}
.x6_c01172{left:309.772000pt;}
.x10_c01172{left:318.880000pt;}
.x1f_c01172{left:331.680000pt;}
.x18_c01172{left:338.819376pt;}
.x1_c01172{left:378.720000pt;}
.x23_c01172{left:389.040000pt;}
.x2_c01172{left:398.400000pt;}
.x7_c01172{left:399.294667pt;}
.x19_c01172{left:407.942043pt;}
.x11_c01172{left:418.502667pt;}
.x3_c01172{left:438.240000pt;}
.x8_c01172{left:447.778667pt;}
.x12_c01172{left:466.965333pt;}
.x24_c01172{left:476.640000pt;}
.x25_c01172{left:506.880000pt;}
.x1a_c01172{left:517.610043pt;}
.x13_c01172{left:526.250667pt;}
.x9_c01172{left:536.098667pt;}
.x14_c01172{left:556.246667pt;}
.xa_c01172{left:565.860000pt;}
.x1b_c01172{left:574.984709pt;}
.x1c_c01172{left:604.970043pt;}
.xb_c01172{left:615.301333pt;}
.x15_c01172{left:634.970667pt;}
.xc_c01172{left:674.578667pt;}
.x16_c01172{left:704.592000pt;}
.xd_c01172{left:724.276000pt;}
}





/* 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_c01173 {
    display:none;
  }
  .loading-indicator_c01173.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01173 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_c01173 { 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_c01173" -> "#page-container .classname_c01173")
 */
.pf_c01173 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01173 { /* 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_c01173.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01173 { /* 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_c01173 { /* 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_c01173 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01173 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01173 {overflow:visible;}
  }
}
.c_c01173 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01173 { /* 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_c01173:after { /* webkit #35443 */
  content: '';
}
.t_c01173:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01173 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 */
}
.__c01173 { /* 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_c01173 { /* info for Javascript */
  display:none;
}
.l_c01173 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01173 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01173 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01173: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_c01173 {
    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_c01173.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01173.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_c01173 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01173{font-family:sans-serif;visibility:hidden;}
.sc__c01173{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01173{-webkit-text-stroke:0px transparent;}
}
.y0_c01173{bottom:0.000000px;}
.h1_c01173{height:1258.500000px;}
.h0_c01173{height:1258.740000px;}
.w0_c01173{width:904.200000px;}
.w1_c01173{width:904.500000px;}
.x0_c01173{left:0.000000px;}
@media print{
.y0_c01173{bottom:0.000000pt;}
.h1_c01173{height:1118.666667pt;}
.h0_c01173{height:1118.880000pt;}
.w0_c01173{width:803.733333pt;}
.w1_c01173{width:804.000000pt;}
.x0_c01173{left:0.000000pt;}
}





/* 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_c01174 {
    display:none;
  }
  .loading-indicator_c01174.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01174 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_c01174 { 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_c01174" -> "#page-container .classname_c01174")
 */
.pf_c01174 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01174 { /* 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_c01174.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01174 { /* 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_c01174 { /* 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_c01174 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01174 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01174 {overflow:visible;}
  }
}
.c_c01174 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01174 { /* 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_c01174:after { /* webkit #35443 */
  content: '';
}
.t_c01174:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01174 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 */
}
.__c01174 { /* 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_c01174 { /* info for Javascript */
  display:none;
}
.l_c01174 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01174 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01174 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01174: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_c01174 {
    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_c01174.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01174.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_c01174 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01174{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01174;src:url('chunks/assets/font_c605e72f209fc835e906f064.woff2')format("woff");}.ff1_c01174{font-family:ff1_c01174;line-height:1.000000;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;}
.m10e_c01174{transform:matrix(0.029260,0.001318,-0.011250,0.249747,0,0);-ms-transform:matrix(0.029260,0.001318,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.029260,0.001318,-0.011250,0.249747,0,0);}
.mfc_c01174{transform:matrix(0.047737,0.002150,-0.011250,0.249747,0,0);-ms-transform:matrix(0.047737,0.002150,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.047737,0.002150,-0.011250,0.249747,0,0);}
.ma_c01174{transform:matrix(0.098781,0.004845,-0.012248,0.249700,0,0);-ms-transform:matrix(0.098781,0.004845,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.098781,0.004845,-0.012248,0.249700,0,0);}
.mf0_c01174{transform:matrix(0.171971,0.007746,-0.011250,0.249747,0,0);-ms-transform:matrix(0.171971,0.007746,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.171971,0.007746,-0.011250,0.249747,0,0);}
.m4b_c01174{transform:matrix(0.179418,0.008082,-0.011250,0.249747,0,0);-ms-transform:matrix(0.179418,0.008082,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.179418,0.008082,-0.011250,0.249747,0,0);}
.mb_c01174{transform:matrix(0.179824,0.008820,-0.012248,0.249700,0,0);-ms-transform:matrix(0.179824,0.008820,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.179824,0.008820,-0.012248,0.249700,0,0);}
.m5_c01174{transform:matrix(0.186972,0.009545,-0.012746,0.249675,0,0);-ms-transform:matrix(0.186972,0.009545,-0.012746,0.249675,0,0);-webkit-transform:matrix(0.186972,0.009545,-0.012746,0.249675,0,0);}
.m6e_c01174{transform:matrix(0.190797,0.008594,-0.011250,0.249747,0,0);-ms-transform:matrix(0.190797,0.008594,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.190797,0.008594,-0.011250,0.249747,0,0);}
.m100_c01174{transform:matrix(0.191531,0.008628,-0.011250,0.249747,0,0);-ms-transform:matrix(0.191531,0.008628,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.191531,0.008628,-0.011250,0.249747,0,0);}
.m51_c01174{transform:matrix(0.192220,0.008659,-0.011250,0.249747,0,0);-ms-transform:matrix(0.192220,0.008659,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.192220,0.008659,-0.011250,0.249747,0,0);}
.mc8_c01174{transform:matrix(0.198813,0.008956,-0.011250,0.249747,0,0);-ms-transform:matrix(0.198813,0.008956,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.198813,0.008956,-0.011250,0.249747,0,0);}
.mf5_c01174{transform:matrix(0.203945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203945,0.000000,0.000000,0.250000,0,0);}
.mc2_c01174{transform:matrix(0.205357,0.009250,-0.011250,0.249747,0,0);-ms-transform:matrix(0.205357,0.009250,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.205357,0.009250,-0.011250,0.249747,0,0);}
.m66_c01174{transform:matrix(0.205522,0.009258,-0.011250,0.249747,0,0);-ms-transform:matrix(0.205522,0.009258,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.205522,0.009258,-0.011250,0.249747,0,0);}
.mbc_c01174{transform:matrix(0.205946,0.009277,-0.011250,0.249747,0,0);-ms-transform:matrix(0.205946,0.009277,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.205946,0.009277,-0.011250,0.249747,0,0);}
.m7_c01174{transform:matrix(0.206571,0.010546,-0.012746,0.249675,0,0);-ms-transform:matrix(0.206571,0.010546,-0.012746,0.249675,0,0);-webkit-transform:matrix(0.206571,0.010546,-0.012746,0.249675,0,0);}
.mfd_c01174{transform:matrix(0.207135,0.009330,-0.011250,0.249747,0,0);-ms-transform:matrix(0.207135,0.009330,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.207135,0.009330,-0.011250,0.249747,0,0);}
.mb1_c01174{transform:matrix(0.208544,0.009394,-0.011250,0.249747,0,0);-ms-transform:matrix(0.208544,0.009394,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.208544,0.009394,-0.011250,0.249747,0,0);}
.mb3_c01174{transform:matrix(0.211196,0.009513,-0.011250,0.249747,0,0);-ms-transform:matrix(0.211196,0.009513,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.211196,0.009513,-0.011250,0.249747,0,0);}
.m4d_c01174{transform:matrix(0.212724,0.009582,-0.011250,0.249747,0,0);-ms-transform:matrix(0.212724,0.009582,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.212724,0.009582,-0.011250,0.249747,0,0);}
.mf9_c01174{transform:matrix(0.212742,0.011074,-0.012995,0.249662,0,0);-ms-transform:matrix(0.212742,0.011074,-0.012995,0.249662,0,0);-webkit-transform:matrix(0.212742,0.011074,-0.012995,0.249662,0,0);}
.mc_c01174{transform:matrix(0.213299,0.010462,-0.012248,0.249700,0,0);-ms-transform:matrix(0.213299,0.010462,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.213299,0.010462,-0.012248,0.249700,0,0);}
.mda_c01174{transform:matrix(0.213923,0.009636,-0.011250,0.249747,0,0);-ms-transform:matrix(0.213923,0.009636,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.213923,0.009636,-0.011250,0.249747,0,0);}
.mb6_c01174{transform:matrix(0.214153,0.009647,-0.011250,0.249747,0,0);-ms-transform:matrix(0.214153,0.009647,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.214153,0.009647,-0.011250,0.249747,0,0);}
.md6_c01174{transform:matrix(0.214458,0.009660,-0.011250,0.249747,0,0);-ms-transform:matrix(0.214458,0.009660,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.214458,0.009660,-0.011250,0.249747,0,0);}
.m101_c01174{transform:matrix(0.215007,0.009685,-0.011250,0.249747,0,0);-ms-transform:matrix(0.215007,0.009685,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.215007,0.009685,-0.011250,0.249747,0,0);}
.m8b_c01174{transform:matrix(0.216116,0.009735,-0.011250,0.249747,0,0);-ms-transform:matrix(0.216116,0.009735,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.216116,0.009735,-0.011250,0.249747,0,0);}
.m36_c01174{transform:matrix(0.216690,0.009761,-0.011250,0.249747,0,0);-ms-transform:matrix(0.216690,0.009761,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.216690,0.009761,-0.011250,0.249747,0,0);}
.m109_c01174{transform:matrix(0.216755,0.009764,-0.011250,0.249747,0,0);-ms-transform:matrix(0.216755,0.009764,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.216755,0.009764,-0.011250,0.249747,0,0);}
.mec_c01174{transform:matrix(0.217794,0.009811,-0.011250,0.249747,0,0);-ms-transform:matrix(0.217794,0.009811,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.217794,0.009811,-0.011250,0.249747,0,0);}
.m42_c01174{transform:matrix(0.218129,0.009826,-0.011250,0.249747,0,0);-ms-transform:matrix(0.218129,0.009826,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.218129,0.009826,-0.011250,0.249747,0,0);}
.mfa_c01174{transform:matrix(0.219503,0.011426,-0.012995,0.249662,0,0);-ms-transform:matrix(0.219503,0.011426,-0.012995,0.249662,0,0);-webkit-transform:matrix(0.219503,0.011426,-0.012995,0.249662,0,0);}
.mfb_c01174{transform:matrix(0.220282,0.011466,-0.012995,0.249662,0,0);-ms-transform:matrix(0.220282,0.011466,-0.012995,0.249662,0,0);-webkit-transform:matrix(0.220282,0.011466,-0.012995,0.249662,0,0);}
.m89_c01174{transform:matrix(0.220287,0.009923,-0.011250,0.249747,0,0);-ms-transform:matrix(0.220287,0.009923,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.220287,0.009923,-0.011250,0.249747,0,0);}
.m50_c01174{transform:matrix(0.220506,0.009933,-0.011250,0.249747,0,0);-ms-transform:matrix(0.220506,0.009933,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.220506,0.009933,-0.011250,0.249747,0,0);}
.mc7_c01174{transform:matrix(0.221605,0.009982,-0.011250,0.249747,0,0);-ms-transform:matrix(0.221605,0.009982,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.221605,0.009982,-0.011250,0.249747,0,0);}
.mcf_c01174{transform:matrix(0.221655,0.009984,-0.011250,0.249747,0,0);-ms-transform:matrix(0.221655,0.009984,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.221655,0.009984,-0.011250,0.249747,0,0);}
.mea_c01174{transform:matrix(0.222614,0.010028,-0.011250,0.249747,0,0);-ms-transform:matrix(0.222614,0.010028,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.222614,0.010028,-0.011250,0.249747,0,0);}
.mb4_c01174{transform:matrix(0.222829,0.010037,-0.011250,0.249747,0,0);-ms-transform:matrix(0.222829,0.010037,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.222829,0.010037,-0.011250,0.249747,0,0);}
.m48_c01174{transform:matrix(0.223039,0.010047,-0.011250,0.249747,0,0);-ms-transform:matrix(0.223039,0.010047,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.223039,0.010047,-0.011250,0.249747,0,0);}
.m6b_c01174{transform:matrix(0.223169,0.010053,-0.011250,0.249747,0,0);-ms-transform:matrix(0.223169,0.010053,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.223169,0.010053,-0.011250,0.249747,0,0);}
.m9b_c01174{transform:matrix(0.223309,0.010059,-0.011250,0.249747,0,0);-ms-transform:matrix(0.223309,0.010059,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.223309,0.010059,-0.011250,0.249747,0,0);}
.mb7_c01174{transform:matrix(0.223518,0.010068,-0.011250,0.249747,0,0);-ms-transform:matrix(0.223518,0.010068,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.223518,0.010068,-0.011250,0.249747,0,0);}
.m8_c01174{transform:matrix(0.224458,0.011459,-0.012746,0.249675,0,0);-ms-transform:matrix(0.224458,0.011459,-0.012746,0.249675,0,0);-webkit-transform:matrix(0.224458,0.011459,-0.012746,0.249675,0,0);}
.m7f_c01174{transform:matrix(0.224492,0.010112,-0.011250,0.249747,0,0);-ms-transform:matrix(0.224492,0.010112,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.224492,0.010112,-0.011250,0.249747,0,0);}
.m49_c01174{transform:matrix(0.224857,0.010129,-0.011250,0.249747,0,0);-ms-transform:matrix(0.224857,0.010129,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.224857,0.010129,-0.011250,0.249747,0,0);}
.m68_c01174{transform:matrix(0.225681,0.010166,-0.011250,0.249747,0,0);-ms-transform:matrix(0.225681,0.010166,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.225681,0.010166,-0.011250,0.249747,0,0);}
.m87_c01174{transform:matrix(0.225836,0.010173,-0.011250,0.249747,0,0);-ms-transform:matrix(0.225836,0.010173,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.225836,0.010173,-0.011250,0.249747,0,0);}
.m3b_c01174{transform:matrix(0.225926,0.010177,-0.011250,0.249747,0,0);-ms-transform:matrix(0.225926,0.010177,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.225926,0.010177,-0.011250,0.249747,0,0);}
.m47_c01174{transform:matrix(0.226760,0.010214,-0.011250,0.249747,0,0);-ms-transform:matrix(0.226760,0.010214,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.226760,0.010214,-0.011250,0.249747,0,0);}
.mf_c01174{transform:matrix(0.226775,0.010215,-0.011250,0.249747,0,0);-ms-transform:matrix(0.226775,0.010215,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.226775,0.010215,-0.011250,0.249747,0,0);}
.mef_c01174{transform:matrix(0.227454,0.010246,-0.011250,0.249747,0,0);-ms-transform:matrix(0.227454,0.010246,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.227454,0.010246,-0.011250,0.249747,0,0);}
.m64_c01174{transform:matrix(0.227849,0.010263,-0.011250,0.249747,0,0);-ms-transform:matrix(0.227849,0.010263,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.227849,0.010263,-0.011250,0.249747,0,0);}
.m8d_c01174{transform:matrix(0.228363,0.010287,-0.011250,0.249747,0,0);-ms-transform:matrix(0.228363,0.010287,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.228363,0.010287,-0.011250,0.249747,0,0);}
.m4_c01174{transform:matrix(0.229022,0.011692,-0.012746,0.249675,0,0);-ms-transform:matrix(0.229022,0.011692,-0.012746,0.249675,0,0);-webkit-transform:matrix(0.229022,0.011692,-0.012746,0.249675,0,0);}
.m84_c01174{transform:matrix(0.229238,0.010326,-0.011250,0.249747,0,0);-ms-transform:matrix(0.229238,0.010326,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.229238,0.010326,-0.011250,0.249747,0,0);}
.mff_c01174{transform:matrix(0.229492,0.010337,-0.011250,0.249747,0,0);-ms-transform:matrix(0.229492,0.010337,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.229492,0.010337,-0.011250,0.249747,0,0);}
.mf2_c01174{transform:matrix(0.229972,0.010359,-0.011250,0.249747,0,0);-ms-transform:matrix(0.229972,0.010359,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.229972,0.010359,-0.011250,0.249747,0,0);}
.m3_c01174{transform:matrix(0.230120,0.011748,-0.012746,0.249675,0,0);-ms-transform:matrix(0.230120,0.011748,-0.012746,0.249675,0,0);-webkit-transform:matrix(0.230120,0.011748,-0.012746,0.249675,0,0);}
.m1c_c01174{transform:matrix(0.230296,0.010374,-0.011250,0.249747,0,0);-ms-transform:matrix(0.230296,0.010374,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.230296,0.010374,-0.011250,0.249747,0,0);}
.mdf_c01174{transform:matrix(0.230491,0.010382,-0.011250,0.249747,0,0);-ms-transform:matrix(0.230491,0.010382,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.230491,0.010382,-0.011250,0.249747,0,0);}
.m28_c01174{transform:matrix(0.230531,0.010384,-0.011250,0.249747,0,0);-ms-transform:matrix(0.230531,0.010384,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.230531,0.010384,-0.011250,0.249747,0,0);}
.mb5_c01174{transform:matrix(0.230546,0.010385,-0.011250,0.249747,0,0);-ms-transform:matrix(0.230546,0.010385,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.230546,0.010385,-0.011250,0.249747,0,0);}
.m1f_c01174{transform:matrix(0.231585,0.010432,-0.011250,0.249747,0,0);-ms-transform:matrix(0.231585,0.010432,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.231585,0.010432,-0.011250,0.249747,0,0);}
.m29_c01174{transform:matrix(0.232170,0.010458,-0.011250,0.249747,0,0);-ms-transform:matrix(0.232170,0.010458,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.232170,0.010458,-0.011250,0.249747,0,0);}
.m17_c01174{transform:matrix(0.232784,0.010486,-0.011250,0.249747,0,0);-ms-transform:matrix(0.232784,0.010486,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.232784,0.010486,-0.011250,0.249747,0,0);}
.m10d_c01174{transform:matrix(0.232964,0.010494,-0.011250,0.249747,0,0);-ms-transform:matrix(0.232964,0.010494,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.232964,0.010494,-0.011250,0.249747,0,0);}
.m83_c01174{transform:matrix(0.233648,0.010525,-0.011250,0.249747,0,0);-ms-transform:matrix(0.233648,0.010525,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.233648,0.010525,-0.011250,0.249747,0,0);}
.me8_c01174{transform:matrix(0.233788,0.010531,-0.011250,0.249747,0,0);-ms-transform:matrix(0.233788,0.010531,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.233788,0.010531,-0.011250,0.249747,0,0);}
.mcd_c01174{transform:matrix(0.233988,0.010540,-0.011250,0.249747,0,0);-ms-transform:matrix(0.233988,0.010540,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.233988,0.010540,-0.011250,0.249747,0,0);}
.m15_c01174{transform:matrix(0.234053,0.010543,-0.011250,0.249747,0,0);-ms-transform:matrix(0.234053,0.010543,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.234053,0.010543,-0.011250,0.249747,0,0);}
.m6_c01174{transform:matrix(0.235089,0.012002,-0.012746,0.249675,0,0);-ms-transform:matrix(0.235089,0.012002,-0.012746,0.249675,0,0);-webkit-transform:matrix(0.235089,0.012002,-0.012746,0.249675,0,0);}
.m1a_c01174{transform:matrix(0.236390,0.010648,-0.011250,0.249747,0,0);-ms-transform:matrix(0.236390,0.010648,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.236390,0.010648,-0.011250,0.249747,0,0);}
.m5f_c01174{transform:matrix(0.236545,0.010655,-0.011250,0.249747,0,0);-ms-transform:matrix(0.236545,0.010655,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.236545,0.010655,-0.011250,0.249747,0,0);}
.m4e_c01174{transform:matrix(0.237379,0.010693,-0.011250,0.249747,0,0);-ms-transform:matrix(0.237379,0.010693,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.237379,0.010693,-0.011250,0.249747,0,0);}
.m53_c01174{transform:matrix(0.237394,0.010693,-0.011250,0.249747,0,0);-ms-transform:matrix(0.237394,0.010693,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.237394,0.010693,-0.011250,0.249747,0,0);}
.m22_c01174{transform:matrix(0.237409,0.010694,-0.011250,0.249747,0,0);-ms-transform:matrix(0.237409,0.010694,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.237409,0.010694,-0.011250,0.249747,0,0);}
.m95_c01174{transform:matrix(0.237674,0.010706,-0.011250,0.249747,0,0);-ms-transform:matrix(0.237674,0.010706,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.237674,0.010706,-0.011250,0.249747,0,0);}
.m69_c01174{transform:matrix(0.238114,0.010726,-0.011250,0.249747,0,0);-ms-transform:matrix(0.238114,0.010726,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.238114,0.010726,-0.011250,0.249747,0,0);}
.mad_c01174{transform:matrix(0.238328,0.010736,-0.011250,0.249747,0,0);-ms-transform:matrix(0.238328,0.010736,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.238328,0.010736,-0.011250,0.249747,0,0);}
.m33_c01174{transform:matrix(0.238843,0.010759,-0.011250,0.249747,0,0);-ms-transform:matrix(0.238843,0.010759,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.238843,0.010759,-0.011250,0.249747,0,0);}
.m10c_c01174{transform:matrix(0.239312,0.010780,-0.011250,0.249747,0,0);-ms-transform:matrix(0.239312,0.010780,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.239312,0.010780,-0.011250,0.249747,0,0);}
.m76_c01174{transform:matrix(0.239712,0.010798,-0.011250,0.249747,0,0);-ms-transform:matrix(0.239712,0.010798,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.239712,0.010798,-0.011250,0.249747,0,0);}
.m6c_c01174{transform:matrix(0.239822,0.010803,-0.011250,0.249747,0,0);-ms-transform:matrix(0.239822,0.010803,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.239822,0.010803,-0.011250,0.249747,0,0);}
.m2d_c01174{transform:matrix(0.240311,0.010825,-0.011250,0.249747,0,0);-ms-transform:matrix(0.240311,0.010825,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.240311,0.010825,-0.011250,0.249747,0,0);}
.mbb_c01174{transform:matrix(0.240676,0.010841,-0.011250,0.249747,0,0);-ms-transform:matrix(0.240676,0.010841,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.240676,0.010841,-0.011250,0.249747,0,0);}
.m52_c01174{transform:matrix(0.241026,0.010857,-0.011250,0.249747,0,0);-ms-transform:matrix(0.241026,0.010857,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.241026,0.010857,-0.011250,0.249747,0,0);}
.me2_c01174{transform:matrix(0.241145,0.010862,-0.011250,0.249747,0,0);-ms-transform:matrix(0.241145,0.010862,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.241145,0.010862,-0.011250,0.249747,0,0);}
.m13_c01174{transform:matrix(0.241535,0.010880,-0.011250,0.249747,0,0);-ms-transform:matrix(0.241535,0.010880,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.241535,0.010880,-0.011250,0.249747,0,0);}
.m25_c01174{transform:matrix(0.241670,0.010886,-0.011250,0.249747,0,0);-ms-transform:matrix(0.241670,0.010886,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.241670,0.010886,-0.011250,0.249747,0,0);}
.me7_c01174{transform:matrix(0.241805,0.010892,-0.011250,0.249747,0,0);-ms-transform:matrix(0.241805,0.010892,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.241805,0.010892,-0.011250,0.249747,0,0);}
.mdd_c01174{transform:matrix(0.242339,0.010916,-0.011250,0.249747,0,0);-ms-transform:matrix(0.242339,0.010916,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.242339,0.010916,-0.011250,0.249747,0,0);}
.m93_c01174{transform:matrix(0.242604,0.010928,-0.011250,0.249747,0,0);-ms-transform:matrix(0.242604,0.010928,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.242604,0.010928,-0.011250,0.249747,0,0);}
.m7d_c01174{transform:matrix(0.242864,0.010940,-0.011250,0.249747,0,0);-ms-transform:matrix(0.242864,0.010940,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.242864,0.010940,-0.011250,0.249747,0,0);}
.mc1_c01174{transform:matrix(0.243633,0.010974,-0.011250,0.249747,0,0);-ms-transform:matrix(0.243633,0.010974,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.243633,0.010974,-0.011250,0.249747,0,0);}
.m86_c01174{transform:matrix(0.244048,0.010993,-0.011250,0.249747,0,0);-ms-transform:matrix(0.244048,0.010993,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.244048,0.010993,-0.011250,0.249747,0,0);}
.m99_c01174{transform:matrix(0.244082,0.010995,-0.011250,0.249747,0,0);-ms-transform:matrix(0.244082,0.010995,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.244082,0.010995,-0.011250,0.249747,0,0);}
.m8f_c01174{transform:matrix(0.244327,0.011006,-0.011250,0.249747,0,0);-ms-transform:matrix(0.244327,0.011006,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.244327,0.011006,-0.011250,0.249747,0,0);}
.mf4_c01174{transform:matrix(0.244967,0.011035,-0.011250,0.249747,0,0);-ms-transform:matrix(0.244967,0.011035,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.244967,0.011035,-0.011250,0.249747,0,0);}
.m81_c01174{transform:matrix(0.244987,0.011035,-0.011250,0.249747,0,0);-ms-transform:matrix(0.244987,0.011035,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.244987,0.011035,-0.011250,0.249747,0,0);}
.m3f_c01174{transform:matrix(0.245241,0.011047,-0.011250,0.249747,0,0);-ms-transform:matrix(0.245241,0.011047,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.245241,0.011047,-0.011250,0.249747,0,0);}
.m103_c01174{transform:matrix(0.245586,0.011062,-0.011250,0.249747,0,0);-ms-transform:matrix(0.245586,0.011062,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.245586,0.011062,-0.011250,0.249747,0,0);}
.m9_c01174{transform:matrix(0.245885,0.012553,-0.012746,0.249675,0,0);-ms-transform:matrix(0.245885,0.012553,-0.012746,0.249675,0,0);-webkit-transform:matrix(0.245885,0.012553,-0.012746,0.249675,0,0);}
.m23_c01174{transform:matrix(0.245976,0.011080,-0.011250,0.249747,0,0);-ms-transform:matrix(0.245976,0.011080,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.245976,0.011080,-0.011250,0.249747,0,0);}
.m4f_c01174{transform:matrix(0.246170,0.011089,-0.011250,0.249747,0,0);-ms-transform:matrix(0.246170,0.011089,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.246170,0.011089,-0.011250,0.249747,0,0);}
.m35_c01174{transform:matrix(0.246315,0.011095,-0.011250,0.249747,0,0);-ms-transform:matrix(0.246315,0.011095,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.246315,0.011095,-0.011250,0.249747,0,0);}
.m40_c01174{transform:matrix(0.246370,0.011098,-0.011250,0.249747,0,0);-ms-transform:matrix(0.246370,0.011098,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.246370,0.011098,-0.011250,0.249747,0,0);}
.m59_c01174{transform:matrix(0.246465,0.011102,-0.011250,0.249747,0,0);-ms-transform:matrix(0.246465,0.011102,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.246465,0.011102,-0.011250,0.249747,0,0);}
.m4c_c01174{transform:matrix(0.246605,0.011108,-0.011250,0.249747,0,0);-ms-transform:matrix(0.246605,0.011108,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.246605,0.011108,-0.011250,0.249747,0,0);}
.mac_c01174{transform:matrix(0.246640,0.011110,-0.011250,0.249747,0,0);-ms-transform:matrix(0.246640,0.011110,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.246640,0.011110,-0.011250,0.249747,0,0);}
.ma8_c01174{transform:matrix(0.247114,0.011131,-0.011250,0.249747,0,0);-ms-transform:matrix(0.247114,0.011131,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.247114,0.011131,-0.011250,0.249747,0,0);}
.m63_c01174{transform:matrix(0.247409,0.011145,-0.011250,0.249747,0,0);-ms-transform:matrix(0.247409,0.011145,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.247409,0.011145,-0.011250,0.249747,0,0);}
.m12_c01174{transform:matrix(0.247439,0.011146,-0.011250,0.249747,0,0);-ms-transform:matrix(0.247439,0.011146,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.247439,0.011146,-0.011250,0.249747,0,0);}
.me9_c01174{transform:matrix(0.247739,0.011159,-0.011250,0.249747,0,0);-ms-transform:matrix(0.247739,0.011159,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.247739,0.011159,-0.011250,0.249747,0,0);}
.m45_c01174{transform:matrix(0.247854,0.011165,-0.011250,0.249747,0,0);-ms-transform:matrix(0.247854,0.011165,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.247854,0.011165,-0.011250,0.249747,0,0);}
.m19_c01174{transform:matrix(0.248193,0.011180,-0.011250,0.249747,0,0);-ms-transform:matrix(0.248193,0.011180,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.248193,0.011180,-0.011250,0.249747,0,0);}
.mdb_c01174{transform:matrix(0.248588,0.011198,-0.011250,0.249747,0,0);-ms-transform:matrix(0.248588,0.011198,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.248588,0.011198,-0.011250,0.249747,0,0);}
.m90_c01174{transform:matrix(0.248653,0.011201,-0.011250,0.249747,0,0);-ms-transform:matrix(0.248653,0.011201,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.248653,0.011201,-0.011250,0.249747,0,0);}
.m72_c01174{transform:matrix(0.248663,0.011201,-0.011250,0.249747,0,0);-ms-transform:matrix(0.248663,0.011201,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.248663,0.011201,-0.011250,0.249747,0,0);}
.md5_c01174{transform:matrix(0.249127,0.011222,-0.011250,0.249747,0,0);-ms-transform:matrix(0.249127,0.011222,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.249127,0.011222,-0.011250,0.249747,0,0);}
.mcc_c01174{transform:matrix(0.249227,0.011226,-0.011250,0.249747,0,0);-ms-transform:matrix(0.249227,0.011226,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.249227,0.011226,-0.011250,0.249747,0,0);}
.m38_c01174{transform:matrix(0.249242,0.011227,-0.011250,0.249747,0,0);-ms-transform:matrix(0.249242,0.011227,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.249242,0.011227,-0.011250,0.249747,0,0);}
.mf7_c01174{transform:matrix(0.249327,0.012978,-0.012995,0.249662,0,0);-ms-transform:matrix(0.249327,0.012978,-0.012995,0.249662,0,0);-webkit-transform:matrix(0.249327,0.012978,-0.012995,0.249662,0,0);}
.m3d_c01174{transform:matrix(0.249422,0.011235,-0.011250,0.249747,0,0);-ms-transform:matrix(0.249422,0.011235,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.249422,0.011235,-0.011250,0.249747,0,0);}
.mb8_c01174{transform:matrix(0.249432,0.011236,-0.011250,0.249747,0,0);-ms-transform:matrix(0.249432,0.011236,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.249432,0.011236,-0.011250,0.249747,0,0);}
.m74_c01174{transform:matrix(0.249527,0.011240,-0.011250,0.249747,0,0);-ms-transform:matrix(0.249527,0.011240,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.249527,0.011240,-0.011250,0.249747,0,0);}
.m10b_c01174{transform:matrix(0.249577,0.011242,-0.011250,0.249747,0,0);-ms-transform:matrix(0.249577,0.011242,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.249577,0.011242,-0.011250,0.249747,0,0);}
.m70_c01174{transform:matrix(0.249602,0.011243,-0.011250,0.249747,0,0);-ms-transform:matrix(0.249602,0.011243,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.249602,0.011243,-0.011250,0.249747,0,0);}
.mcb_c01174{transform:matrix(0.249747,0.011250,-0.011250,0.249747,0,0);-ms-transform:matrix(0.249747,0.011250,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.249747,0.011250,-0.011250,0.249747,0,0);}
.mb0_c01174{transform:matrix(0.249887,0.011256,-0.011250,0.249747,0,0);-ms-transform:matrix(0.249887,0.011256,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.249887,0.011256,-0.011250,0.249747,0,0);}
.mbe_c01174{transform:matrix(0.250136,0.011267,-0.011250,0.249747,0,0);-ms-transform:matrix(0.250136,0.011267,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.250136,0.011267,-0.011250,0.249747,0,0);}
.m4a_c01174{transform:matrix(0.250646,0.011290,-0.011250,0.249747,0,0);-ms-transform:matrix(0.250646,0.011290,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.250646,0.011290,-0.011250,0.249747,0,0);}
.m37_c01174{transform:matrix(0.250746,0.011295,-0.011250,0.249747,0,0);-ms-transform:matrix(0.250746,0.011295,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.250746,0.011295,-0.011250,0.249747,0,0);}
.m62_c01174{transform:matrix(0.250891,0.011301,-0.011250,0.249747,0,0);-ms-transform:matrix(0.250891,0.011301,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.250891,0.011301,-0.011250,0.249747,0,0);}
.m7c_c01174{transform:matrix(0.250911,0.011302,-0.011250,0.249747,0,0);-ms-transform:matrix(0.250911,0.011302,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.250911,0.011302,-0.011250,0.249747,0,0);}
.maa_c01174{transform:matrix(0.251695,0.011338,-0.011250,0.249747,0,0);-ms-transform:matrix(0.251695,0.011338,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.251695,0.011338,-0.011250,0.249747,0,0);}
.m61_c01174{transform:matrix(0.251825,0.011343,-0.011250,0.249747,0,0);-ms-transform:matrix(0.251825,0.011343,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.251825,0.011343,-0.011250,0.249747,0,0);}
.m7e_c01174{transform:matrix(0.251830,0.011344,-0.011250,0.249747,0,0);-ms-transform:matrix(0.251830,0.011344,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.251830,0.011344,-0.011250,0.249747,0,0);}
.mba_c01174{transform:matrix(0.251945,0.011349,-0.011250,0.249747,0,0);-ms-transform:matrix(0.251945,0.011349,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.251945,0.011349,-0.011250,0.249747,0,0);}
.me4_c01174{transform:matrix(0.252089,0.011355,-0.011250,0.249747,0,0);-ms-transform:matrix(0.252089,0.011355,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.252089,0.011355,-0.011250,0.249747,0,0);}
.md2_c01174{transform:matrix(0.252224,0.011361,-0.011250,0.249747,0,0);-ms-transform:matrix(0.252224,0.011361,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.252224,0.011361,-0.011250,0.249747,0,0);}
.mb9_c01174{transform:matrix(0.252539,0.011376,-0.011250,0.249747,0,0);-ms-transform:matrix(0.252539,0.011376,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.252539,0.011376,-0.011250,0.249747,0,0);}
.mb2_c01174{transform:matrix(0.253643,0.011425,-0.011250,0.249747,0,0);-ms-transform:matrix(0.253643,0.011425,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.253643,0.011425,-0.011250,0.249747,0,0);}
.mf8_c01174{transform:matrix(0.254525,0.013249,-0.012995,0.249662,0,0);-ms-transform:matrix(0.254525,0.013249,-0.012995,0.249662,0,0);-webkit-transform:matrix(0.254525,0.013249,-0.012995,0.249662,0,0);}
.m30_c01174{transform:matrix(0.256035,0.011533,-0.011250,0.249747,0,0);-ms-transform:matrix(0.256035,0.011533,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.256035,0.011533,-0.011250,0.249747,0,0);}
.mc3_c01174{transform:matrix(0.256190,0.011540,-0.011250,0.249747,0,0);-ms-transform:matrix(0.256190,0.011540,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.256190,0.011540,-0.011250,0.249747,0,0);}
.m88_c01174{transform:matrix(0.256490,0.011554,-0.011250,0.249747,0,0);-ms-transform:matrix(0.256490,0.011554,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.256490,0.011554,-0.011250,0.249747,0,0);}
.m20_c01174{transform:matrix(0.256595,0.011558,-0.011250,0.249747,0,0);-ms-transform:matrix(0.256595,0.011558,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.256595,0.011558,-0.011250,0.249747,0,0);}
.mc6_c01174{transform:matrix(0.256710,0.011563,-0.011250,0.249747,0,0);-ms-transform:matrix(0.256710,0.011563,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.256710,0.011563,-0.011250,0.249747,0,0);}
.m9d_c01174{transform:matrix(0.256949,0.011574,-0.011250,0.249747,0,0);-ms-transform:matrix(0.256949,0.011574,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.256949,0.011574,-0.011250,0.249747,0,0);}
.m54_c01174{transform:matrix(0.257059,0.011579,-0.011250,0.249747,0,0);-ms-transform:matrix(0.257059,0.011579,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.257059,0.011579,-0.011250,0.249747,0,0);}
.mf1_c01174{transform:matrix(0.257329,0.011591,-0.011250,0.249747,0,0);-ms-transform:matrix(0.257329,0.011591,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.257329,0.011591,-0.011250,0.249747,0,0);}
.m85_c01174{transform:matrix(0.257639,0.011605,-0.011250,0.249747,0,0);-ms-transform:matrix(0.257639,0.011605,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.257639,0.011605,-0.011250,0.249747,0,0);}
.mf6_c01174{transform:matrix(0.258460,0.013453,-0.012995,0.249662,0,0);-ms-transform:matrix(0.258460,0.013453,-0.012995,0.249662,0,0);-webkit-transform:matrix(0.258460,0.013453,-0.012995,0.249662,0,0);}
.ma4_c01174{transform:matrix(0.258927,0.011663,-0.011250,0.249747,0,0);-ms-transform:matrix(0.258927,0.011663,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.258927,0.011663,-0.011250,0.249747,0,0);}
.mab_c01174{transform:matrix(0.260171,0.011719,-0.011250,0.249747,0,0);-ms-transform:matrix(0.260171,0.011719,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.260171,0.011719,-0.011250,0.249747,0,0);}
.m7a_c01174{transform:matrix(0.260246,0.011723,-0.011250,0.249747,0,0);-ms-transform:matrix(0.260246,0.011723,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.260246,0.011723,-0.011250,0.249747,0,0);}
.ma0_c01174{transform:matrix(0.260411,0.011730,-0.011250,0.249747,0,0);-ms-transform:matrix(0.260411,0.011730,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.260411,0.011730,-0.011250,0.249747,0,0);}
.m21_c01174{transform:matrix(0.260601,0.011739,-0.011250,0.249747,0,0);-ms-transform:matrix(0.260601,0.011739,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.260601,0.011739,-0.011250,0.249747,0,0);}
.m80_c01174{transform:matrix(0.261070,0.011760,-0.011250,0.249747,0,0);-ms-transform:matrix(0.261070,0.011760,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.261070,0.011760,-0.011250,0.249747,0,0);}
.m2e_c01174{transform:matrix(0.261170,0.011764,-0.011250,0.249747,0,0);-ms-transform:matrix(0.261170,0.011764,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.261170,0.011764,-0.011250,0.249747,0,0);}
.m24_c01174{transform:matrix(0.261370,0.011773,-0.011250,0.249747,0,0);-ms-transform:matrix(0.261370,0.011773,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.261370,0.011773,-0.011250,0.249747,0,0);}
.md0_c01174{transform:matrix(0.261939,0.011799,-0.011250,0.249747,0,0);-ms-transform:matrix(0.261939,0.011799,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.261939,0.011799,-0.011250,0.249747,0,0);}
.m9f_c01174{transform:matrix(0.261944,0.011799,-0.011250,0.249747,0,0);-ms-transform:matrix(0.261944,0.011799,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.261944,0.011799,-0.011250,0.249747,0,0);}
.m104_c01174{transform:matrix(0.263113,0.011852,-0.011250,0.249747,0,0);-ms-transform:matrix(0.263113,0.011852,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.263113,0.011852,-0.011250,0.249747,0,0);}
.mca_c01174{transform:matrix(0.263638,0.011876,-0.011250,0.249747,0,0);-ms-transform:matrix(0.263638,0.011876,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.263638,0.011876,-0.011250,0.249747,0,0);}
.m79_c01174{transform:matrix(0.264861,0.011931,-0.011250,0.249747,0,0);-ms-transform:matrix(0.264861,0.011931,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.264861,0.011931,-0.011250,0.249747,0,0);}
.me1_c01174{transform:matrix(0.265711,0.011969,-0.011250,0.249747,0,0);-ms-transform:matrix(0.265711,0.011969,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.265711,0.011969,-0.011250,0.249747,0,0);}
.mf3_c01174{transform:matrix(0.266050,0.011984,-0.011250,0.249747,0,0);-ms-transform:matrix(0.266050,0.011984,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.266050,0.011984,-0.011250,0.249747,0,0);}
.ma9_c01174{transform:matrix(0.266235,0.011993,-0.011250,0.249747,0,0);-ms-transform:matrix(0.266235,0.011993,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.266235,0.011993,-0.011250,0.249747,0,0);}
.m2a_c01174{transform:matrix(0.266430,0.012001,-0.011250,0.249747,0,0);-ms-transform:matrix(0.266430,0.012001,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.266430,0.012001,-0.011250,0.249747,0,0);}
.m9a_c01174{transform:matrix(0.266470,0.012003,-0.011250,0.249747,0,0);-ms-transform:matrix(0.266470,0.012003,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.266470,0.012003,-0.011250,0.249747,0,0);}
.m98_c01174{transform:matrix(0.267783,0.012062,-0.011250,0.249747,0,0);-ms-transform:matrix(0.267783,0.012062,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.267783,0.012062,-0.011250,0.249747,0,0);}
.mce_c01174{transform:matrix(0.268338,0.012087,-0.011250,0.249747,0,0);-ms-transform:matrix(0.268338,0.012087,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.268338,0.012087,-0.011250,0.249747,0,0);}
.m14_c01174{transform:matrix(0.268673,0.012102,-0.011250,0.249747,0,0);-ms-transform:matrix(0.268673,0.012102,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.268673,0.012102,-0.011250,0.249747,0,0);}
.m9e_c01174{transform:matrix(0.268718,0.012104,-0.011250,0.249747,0,0);-ms-transform:matrix(0.268718,0.012104,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.268718,0.012104,-0.011250,0.249747,0,0);}
.m7b_c01174{transform:matrix(0.268742,0.012106,-0.011250,0.249747,0,0);-ms-transform:matrix(0.268742,0.012106,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.268742,0.012106,-0.011250,0.249747,0,0);}
.m3c_c01174{transform:matrix(0.269247,0.012128,-0.011250,0.249747,0,0);-ms-transform:matrix(0.269247,0.012128,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.269247,0.012128,-0.011250,0.249747,0,0);}
.me5_c01174{transform:matrix(0.269257,0.012129,-0.011250,0.249747,0,0);-ms-transform:matrix(0.269257,0.012129,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.269257,0.012129,-0.011250,0.249747,0,0);}
.mae_c01174{transform:matrix(0.269577,0.012143,-0.011250,0.249747,0,0);-ms-transform:matrix(0.269577,0.012143,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.269577,0.012143,-0.011250,0.249747,0,0);}
.mc9_c01174{transform:matrix(0.270021,0.012163,-0.011250,0.249747,0,0);-ms-transform:matrix(0.270021,0.012163,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.270021,0.012163,-0.011250,0.249747,0,0);}
.mee_c01174{transform:matrix(0.270391,0.012180,-0.011250,0.249747,0,0);-ms-transform:matrix(0.270391,0.012180,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.270391,0.012180,-0.011250,0.249747,0,0);}
.m6a_c01174{transform:matrix(0.271285,0.012220,-0.011250,0.249747,0,0);-ms-transform:matrix(0.271285,0.012220,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.271285,0.012220,-0.011250,0.249747,0,0);}
.m8c_c01174{transform:matrix(0.271355,0.012223,-0.011250,0.249747,0,0);-ms-transform:matrix(0.271355,0.012223,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.271355,0.012223,-0.011250,0.249747,0,0);}
.m3a_c01174{transform:matrix(0.271660,0.012237,-0.011250,0.249747,0,0);-ms-transform:matrix(0.271660,0.012237,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.271660,0.012237,-0.011250,0.249747,0,0);}
.meb_c01174{transform:matrix(0.271724,0.012240,-0.011250,0.249747,0,0);-ms-transform:matrix(0.271724,0.012240,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.271724,0.012240,-0.011250,0.249747,0,0);}
.m91_c01174{transform:matrix(0.272249,0.012263,-0.011250,0.249747,0,0);-ms-transform:matrix(0.272249,0.012263,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.272249,0.012263,-0.011250,0.249747,0,0);}
.m34_c01174{transform:matrix(0.273193,0.012306,-0.011250,0.249747,0,0);-ms-transform:matrix(0.273193,0.012306,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.273193,0.012306,-0.011250,0.249747,0,0);}
.m82_c01174{transform:matrix(0.273283,0.012310,-0.011250,0.249747,0,0);-ms-transform:matrix(0.273283,0.012310,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.273283,0.012310,-0.011250,0.249747,0,0);}
.md_c01174{transform:matrix(0.273697,0.012329,-0.011250,0.249747,0,0);-ms-transform:matrix(0.273697,0.012329,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.273697,0.012329,-0.011250,0.249747,0,0);}
.m65_c01174{transform:matrix(0.274142,0.012349,-0.011250,0.249747,0,0);-ms-transform:matrix(0.274142,0.012349,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.274142,0.012349,-0.011250,0.249747,0,0);}
.m9c_c01174{transform:matrix(0.274197,0.012351,-0.011250,0.249747,0,0);-ms-transform:matrix(0.274197,0.012351,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.274197,0.012351,-0.011250,0.249747,0,0);}
.maf_c01174{transform:matrix(0.274257,0.012354,-0.011250,0.249747,0,0);-ms-transform:matrix(0.274257,0.012354,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.274257,0.012354,-0.011250,0.249747,0,0);}
.m11_c01174{transform:matrix(0.274567,0.012368,-0.011250,0.249747,0,0);-ms-transform:matrix(0.274567,0.012368,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.274567,0.012368,-0.011250,0.249747,0,0);}
.md8_c01174{transform:matrix(0.274637,0.012371,-0.011250,0.249747,0,0);-ms-transform:matrix(0.274637,0.012371,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.274637,0.012371,-0.011250,0.249747,0,0);}
.m77_c01174{transform:matrix(0.274921,0.012384,-0.011250,0.249747,0,0);-ms-transform:matrix(0.274921,0.012384,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.274921,0.012384,-0.011250,0.249747,0,0);}
.m1d_c01174{transform:matrix(0.275066,0.012390,-0.011250,0.249747,0,0);-ms-transform:matrix(0.275066,0.012390,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.275066,0.012390,-0.011250,0.249747,0,0);}
.m26_c01174{transform:matrix(0.275426,0.012407,-0.011250,0.249747,0,0);-ms-transform:matrix(0.275426,0.012407,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.275426,0.012407,-0.011250,0.249747,0,0);}
.md9_c01174{transform:matrix(0.276005,0.012433,-0.011250,0.249747,0,0);-ms-transform:matrix(0.276005,0.012433,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.276005,0.012433,-0.011250,0.249747,0,0);}
.me6_c01174{transform:matrix(0.276050,0.012435,-0.011250,0.249747,0,0);-ms-transform:matrix(0.276050,0.012435,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.276050,0.012435,-0.011250,0.249747,0,0);}
.me_c01174{transform:matrix(0.276255,0.012444,-0.011250,0.249747,0,0);-ms-transform:matrix(0.276255,0.012444,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.276255,0.012444,-0.011250,0.249747,0,0);}
.m10_c01174{transform:matrix(0.276819,0.012469,-0.011250,0.249747,0,0);-ms-transform:matrix(0.276819,0.012469,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.276819,0.012469,-0.011250,0.249747,0,0);}
.m57_c01174{transform:matrix(0.276864,0.012471,-0.011250,0.249747,0,0);-ms-transform:matrix(0.276864,0.012471,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.276864,0.012471,-0.011250,0.249747,0,0);}
.m39_c01174{transform:matrix(0.277773,0.012512,-0.011250,0.249747,0,0);-ms-transform:matrix(0.277773,0.012512,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.277773,0.012512,-0.011250,0.249747,0,0);}
.m8e_c01174{transform:matrix(0.278083,0.012526,-0.011250,0.249747,0,0);-ms-transform:matrix(0.278083,0.012526,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.278083,0.012526,-0.011250,0.249747,0,0);}
.mc4_c01174{transform:matrix(0.278548,0.012547,-0.011250,0.249747,0,0);-ms-transform:matrix(0.278548,0.012547,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.278548,0.012547,-0.011250,0.249747,0,0);}
.med_c01174{transform:matrix(0.279112,0.012573,-0.011250,0.249747,0,0);-ms-transform:matrix(0.279112,0.012573,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.279112,0.012573,-0.011250,0.249747,0,0);}
.m32_c01174{transform:matrix(0.279147,0.012574,-0.011250,0.249747,0,0);-ms-transform:matrix(0.279147,0.012574,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.279147,0.012574,-0.011250,0.249747,0,0);}
.m5e_c01174{transform:matrix(0.279577,0.012594,-0.011250,0.249747,0,0);-ms-transform:matrix(0.279577,0.012594,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.279577,0.012594,-0.011250,0.249747,0,0);}
.m8a_c01174{transform:matrix(0.279646,0.012597,-0.011250,0.249747,0,0);-ms-transform:matrix(0.279646,0.012597,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.279646,0.012597,-0.011250,0.249747,0,0);}
.m67_c01174{transform:matrix(0.279976,0.012612,-0.011250,0.249747,0,0);-ms-transform:matrix(0.279976,0.012612,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.279976,0.012612,-0.011250,0.249747,0,0);}
.md4_c01174{transform:matrix(0.280386,0.012630,-0.011250,0.249747,0,0);-ms-transform:matrix(0.280386,0.012630,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.280386,0.012630,-0.011250,0.249747,0,0);}
.m3e_c01174{transform:matrix(0.281035,0.012659,-0.011250,0.249747,0,0);-ms-transform:matrix(0.281035,0.012659,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.281035,0.012659,-0.011250,0.249747,0,0);}
.ma3_c01174{transform:matrix(0.282174,0.012711,-0.011250,0.249747,0,0);-ms-transform:matrix(0.282174,0.012711,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.282174,0.012711,-0.011250,0.249747,0,0);}
.mdc_c01174{transform:matrix(0.282449,0.012723,-0.011250,0.249747,0,0);-ms-transform:matrix(0.282449,0.012723,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.282449,0.012723,-0.011250,0.249747,0,0);}
.m27_c01174{transform:matrix(0.283148,0.012754,-0.011250,0.249747,0,0);-ms-transform:matrix(0.283148,0.012754,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.283148,0.012754,-0.011250,0.249747,0,0);}
.m6d_c01174{transform:matrix(0.283318,0.012762,-0.011250,0.249747,0,0);-ms-transform:matrix(0.283318,0.012762,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.283318,0.012762,-0.011250,0.249747,0,0);}
.m10a_c01174{transform:matrix(0.283902,0.012788,-0.011250,0.249747,0,0);-ms-transform:matrix(0.283902,0.012788,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.283902,0.012788,-0.011250,0.249747,0,0);}
.m105_c01174{transform:matrix(0.284332,0.012808,-0.011250,0.249747,0,0);-ms-transform:matrix(0.284332,0.012808,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.284332,0.012808,-0.011250,0.249747,0,0);}
.mde_c01174{transform:matrix(0.284641,0.012822,-0.011250,0.249747,0,0);-ms-transform:matrix(0.284641,0.012822,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.284641,0.012822,-0.011250,0.249747,0,0);}
.ma2_c01174{transform:matrix(0.284871,0.012832,-0.011250,0.249747,0,0);-ms-transform:matrix(0.284871,0.012832,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.284871,0.012832,-0.011250,0.249747,0,0);}
.mc0_c01174{transform:matrix(0.285491,0.012860,-0.011250,0.249747,0,0);-ms-transform:matrix(0.285491,0.012860,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.285491,0.012860,-0.011250,0.249747,0,0);}
.m71_c01174{transform:matrix(0.285785,0.012873,-0.011250,0.249747,0,0);-ms-transform:matrix(0.285785,0.012873,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.285785,0.012873,-0.011250,0.249747,0,0);}
.ma1_c01174{transform:matrix(0.286065,0.012886,-0.011250,0.249747,0,0);-ms-transform:matrix(0.286065,0.012886,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.286065,0.012886,-0.011250,0.249747,0,0);}
.md3_c01174{transform:matrix(0.286100,0.012887,-0.011250,0.249747,0,0);-ms-transform:matrix(0.286100,0.012887,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.286100,0.012887,-0.011250,0.249747,0,0);}
.mbf_c01174{transform:matrix(0.286250,0.012894,-0.011250,0.249747,0,0);-ms-transform:matrix(0.286250,0.012894,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.286250,0.012894,-0.011250,0.249747,0,0);}
.m5c_c01174{transform:matrix(0.286624,0.012911,-0.011250,0.249747,0,0);-ms-transform:matrix(0.286624,0.012911,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.286624,0.012911,-0.011250,0.249747,0,0);}
.mfe_c01174{transform:matrix(0.286764,0.012917,-0.011250,0.249747,0,0);-ms-transform:matrix(0.286764,0.012917,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.286764,0.012917,-0.011250,0.249747,0,0);}
.me0_c01174{transform:matrix(0.286894,0.012923,-0.011250,0.249747,0,0);-ms-transform:matrix(0.286894,0.012923,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.286894,0.012923,-0.011250,0.249747,0,0);}
.m18_c01174{transform:matrix(0.287214,0.012938,-0.011250,0.249747,0,0);-ms-transform:matrix(0.287214,0.012938,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.287214,0.012938,-0.011250,0.249747,0,0);}
.m94_c01174{transform:matrix(0.288458,0.012994,-0.011250,0.249747,0,0);-ms-transform:matrix(0.288458,0.012994,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.288458,0.012994,-0.011250,0.249747,0,0);}
.m106_c01174{transform:matrix(0.288492,0.012995,-0.011250,0.249747,0,0);-ms-transform:matrix(0.288492,0.012995,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.288492,0.012995,-0.011250,0.249747,0,0);}
.m96_c01174{transform:matrix(0.288682,0.013004,-0.011250,0.249747,0,0);-ms-transform:matrix(0.288682,0.013004,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.288682,0.013004,-0.011250,0.249747,0,0);}
.m5a_c01174{transform:matrix(0.289437,0.013038,-0.011250,0.249747,0,0);-ms-transform:matrix(0.289437,0.013038,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.289437,0.013038,-0.011250,0.249747,0,0);}
.md1_c01174{transform:matrix(0.290146,0.013070,-0.011250,0.249747,0,0);-ms-transform:matrix(0.290146,0.013070,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.290146,0.013070,-0.011250,0.249747,0,0);}
.ma6_c01174{transform:matrix(0.290311,0.013077,-0.011250,0.249747,0,0);-ms-transform:matrix(0.290311,0.013077,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.290311,0.013077,-0.011250,0.249747,0,0);}
.m92_c01174{transform:matrix(0.290356,0.013079,-0.011250,0.249747,0,0);-ms-transform:matrix(0.290356,0.013079,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.290356,0.013079,-0.011250,0.249747,0,0);}
.me3_c01174{transform:matrix(0.291654,0.013138,-0.011250,0.249747,0,0);-ms-transform:matrix(0.291654,0.013138,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.291654,0.013138,-0.011250,0.249747,0,0);}
.m75_c01174{transform:matrix(0.292433,0.013173,-0.011250,0.249747,0,0);-ms-transform:matrix(0.292433,0.013173,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.292433,0.013173,-0.011250,0.249747,0,0);}
.ma7_c01174{transform:matrix(0.292793,0.013189,-0.011250,0.249747,0,0);-ms-transform:matrix(0.292793,0.013189,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.292793,0.013189,-0.011250,0.249747,0,0);}
.m31_c01174{transform:matrix(0.292918,0.013195,-0.011250,0.249747,0,0);-ms-transform:matrix(0.292918,0.013195,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.292918,0.013195,-0.011250,0.249747,0,0);}
.mbd_c01174{transform:matrix(0.294222,0.013253,-0.011250,0.249747,0,0);-ms-transform:matrix(0.294222,0.013253,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.294222,0.013253,-0.011250,0.249747,0,0);}
.m107_c01174{transform:matrix(0.294252,0.013255,-0.011250,0.249747,0,0);-ms-transform:matrix(0.294252,0.013255,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.294252,0.013255,-0.011250,0.249747,0,0);}
.mc5_c01174{transform:matrix(0.294781,0.013278,-0.011250,0.249747,0,0);-ms-transform:matrix(0.294781,0.013278,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.294781,0.013278,-0.011250,0.249747,0,0);}
.m46_c01174{transform:matrix(0.294951,0.013286,-0.011250,0.249747,0,0);-ms-transform:matrix(0.294951,0.013286,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.294951,0.013286,-0.011250,0.249747,0,0);}
.m102_c01174{transform:matrix(0.295171,0.013296,-0.011250,0.249747,0,0);-ms-transform:matrix(0.295171,0.013296,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.295171,0.013296,-0.011250,0.249747,0,0);}
.m44_c01174{transform:matrix(0.295415,0.013307,-0.011250,0.249747,0,0);-ms-transform:matrix(0.295415,0.013307,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.295415,0.013307,-0.011250,0.249747,0,0);}
.m16_c01174{transform:matrix(0.295455,0.013309,-0.011250,0.249747,0,0);-ms-transform:matrix(0.295455,0.013309,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.295455,0.013309,-0.011250,0.249747,0,0);}
.m60_c01174{transform:matrix(0.295840,0.013326,-0.011250,0.249747,0,0);-ms-transform:matrix(0.295840,0.013326,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.295840,0.013326,-0.011250,0.249747,0,0);}
.ma5_c01174{transform:matrix(0.295845,0.013326,-0.011250,0.249747,0,0);-ms-transform:matrix(0.295845,0.013326,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.295845,0.013326,-0.011250,0.249747,0,0);}
.m5d_c01174{transform:matrix(0.296195,0.013342,-0.011250,0.249747,0,0);-ms-transform:matrix(0.296195,0.013342,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.296195,0.013342,-0.011250,0.249747,0,0);}
.m2f_c01174{transform:matrix(0.296250,0.013345,-0.011250,0.249747,0,0);-ms-transform:matrix(0.296250,0.013345,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.296250,0.013345,-0.011250,0.249747,0,0);}
.m1b_c01174{transform:matrix(0.297309,0.013392,-0.011250,0.249747,0,0);-ms-transform:matrix(0.297309,0.013392,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.297309,0.013392,-0.011250,0.249747,0,0);}
.m2b_c01174{transform:matrix(0.297563,0.013404,-0.011250,0.249747,0,0);-ms-transform:matrix(0.297563,0.013404,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.297563,0.013404,-0.011250,0.249747,0,0);}
.m1e_c01174{transform:matrix(0.297613,0.013406,-0.011250,0.249747,0,0);-ms-transform:matrix(0.297613,0.013406,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.297613,0.013406,-0.011250,0.249747,0,0);}
.m78_c01174{transform:matrix(0.297888,0.013418,-0.011250,0.249747,0,0);-ms-transform:matrix(0.297888,0.013418,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.297888,0.013418,-0.011250,0.249747,0,0);}
.m41_c01174{transform:matrix(0.298153,0.013430,-0.011250,0.249747,0,0);-ms-transform:matrix(0.298153,0.013430,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.298153,0.013430,-0.011250,0.249747,0,0);}
.m2c_c01174{transform:matrix(0.298767,0.013458,-0.011250,0.249747,0,0);-ms-transform:matrix(0.298767,0.013458,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.298767,0.013458,-0.011250,0.249747,0,0);}
.m97_c01174{transform:matrix(0.299936,0.013511,-0.011250,0.249747,0,0);-ms-transform:matrix(0.299936,0.013511,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.299936,0.013511,-0.011250,0.249747,0,0);}
.m5b_c01174{transform:matrix(0.301279,0.013571,-0.011250,0.249747,0,0);-ms-transform:matrix(0.301279,0.013571,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.301279,0.013571,-0.011250,0.249747,0,0);}
.md7_c01174{transform:matrix(0.302039,0.013605,-0.011250,0.249747,0,0);-ms-transform:matrix(0.302039,0.013605,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.302039,0.013605,-0.011250,0.249747,0,0);}
.m43_c01174{transform:matrix(0.304336,0.013709,-0.011250,0.249747,0,0);-ms-transform:matrix(0.304336,0.013709,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.304336,0.013709,-0.011250,0.249747,0,0);}
.m56_c01174{transform:matrix(0.304396,0.013712,-0.011250,0.249747,0,0);-ms-transform:matrix(0.304396,0.013712,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.304396,0.013712,-0.011250,0.249747,0,0);}
.m58_c01174{transform:matrix(0.305880,0.013778,-0.011250,0.249747,0,0);-ms-transform:matrix(0.305880,0.013778,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.305880,0.013778,-0.011250,0.249747,0,0);}
.m55_c01174{transform:matrix(0.306484,0.013806,-0.011250,0.249747,0,0);-ms-transform:matrix(0.306484,0.013806,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.306484,0.013806,-0.011250,0.249747,0,0);}
.m73_c01174{transform:matrix(0.335100,0.015095,-0.011250,0.249747,0,0);-ms-transform:matrix(0.335100,0.015095,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.335100,0.015095,-0.011250,0.249747,0,0);}
.m108_c01174{transform:matrix(0.348542,0.015700,-0.011250,0.249747,0,0);-ms-transform:matrix(0.348542,0.015700,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.348542,0.015700,-0.011250,0.249747,0,0);}
.m6f_c01174{transform:matrix(0.350350,0.015782,-0.011250,0.249747,0,0);-ms-transform:matrix(0.350350,0.015782,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.350350,0.015782,-0.011250,0.249747,0,0);}
.m0_c01174{transform:matrix(0.567540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567540,0.000000,0.000000,0.250000,0,0);}
.m1_c01174{transform:matrix(0.767935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.767935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.767935,0.000000,0.000000,0.250000,0,0);}
.m2_c01174{transform:matrix(1.095090,0.069129,-0.015750,0.249503,0,0);-ms-transform:matrix(1.095090,0.069129,-0.015750,0.249503,0,0);-webkit-transform:matrix(1.095090,0.069129,-0.015750,0.249503,0,0);}
.v0_c01174{vertical-align:0.000000px;}
.ls0_c01174{letter-spacing:0.000000px;}
.sc__c01174{text-shadow:none;}
.sc0_c01174{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__c01174{-webkit-text-stroke:0px transparent;}
.sc0_c01174{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01174{word-spacing:0.000000px;}
.fc0_c01174{color:transparent;}
.fs1_c01174{font-size:18.000000px;}
.fs0_c01174{font-size:36.000000px;}
.fs6_c01174{font-size:66.000858px;}
.fs2_c01174{font-size:71.999028px;}
.fs5_c01174{font-size:72.000936px;}
.fs4_c01174{font-size:72.014471px;}
.fs9_c01174{font-size:72.025376px;}
.fs8_c01174{font-size:78.000000px;}
.fs7_c01174{font-size:78.001014px;}
.fsa_c01174{font-size:84.001092px;}
.fs3_c01174{font-size:84.025280px;}
.y0_c01174{bottom:0.000000px;}
.y11f_c01174{bottom:45.381187px;}
.y11a_c01174{bottom:51.566766px;}
.y119_c01174{bottom:52.782562px;}
.y11e_c01174{bottom:55.261014px;}
.y118_c01174{bottom:56.351355px;}
.y11d_c01174{bottom:57.492186px;}
.y11c_c01174{bottom:60.037476px;}
.y11b_c01174{bottom:61.311673px;}
.y117_c01174{bottom:61.528727px;}
.y111_c01174{bottom:65.459535px;}
.y110_c01174{bottom:66.949733px;}
.y10f_c01174{bottom:67.887510px;}
.y116_c01174{bottom:69.649476px;}
.y115_c01174{bottom:74.061951px;}
.y114_c01174{bottom:75.353915px;}
.y113_c01174{bottom:76.999457px;}
.y10e_c01174{bottom:80.782777px;}
.y112_c01174{bottom:81.573054px;}
.y10d_c01174{bottom:84.313838px;}
.y10c_c01174{bottom:90.186000px;}
.y10b_c01174{bottom:92.916930px;}
.y10a_c01174{bottom:94.659918px;}
.y109_c01174{bottom:96.333564px;}
.y108_c01174{bottom:98.662488px;}
.y107_c01174{bottom:100.909512px;}
.y106_c01174{bottom:103.705500px;}
.y105_c01174{bottom:211.815000px;}
.y104_c01174{bottom:219.549404px;}
.y103_c01174{bottom:224.044323px;}
.y102_c01174{bottom:226.301415px;}
.y101_c01174{bottom:230.305421px;}
.y100_c01174{bottom:232.028830px;}
.yff_c01174{bottom:234.211929px;}
.yfe_c01174{bottom:238.297974px;}
.yfd_c01174{bottom:239.928410px;}
.yfc_c01174{bottom:241.601951px;}
.yfb_c01174{bottom:247.215035px;}
.yfa_c01174{bottom:249.410499px;}
.yf9_c01174{bottom:253.284095px;}
.yf8_c01174{bottom:256.768188px;}
.yf7_c01174{bottom:258.544235px;}
.yf6_c01174{bottom:261.370271px;}
.yf5_c01174{bottom:264.205028px;}
.yf4_c01174{bottom:266.397050px;}
.yf3_c01174{bottom:271.061975px;}
.yf2_c01174{bottom:274.342434px;}
.yf1_c01174{bottom:276.037332px;}
.yf0_c01174{bottom:278.346453px;}
.yef_c01174{bottom:282.242013px;}
.yee_c01174{bottom:283.906293px;}
.yed_c01174{bottom:287.800368px;}
.yec_c01174{bottom:289.995225px;}
.yeb_c01174{bottom:294.082418px;}
.yea_c01174{bottom:295.715256px;}
.ye9_c01174{bottom:296.717132px;}
.ye8_c01174{bottom:299.832162px;}
.ye7_c01174{bottom:301.441173px;}
.ye6_c01174{bottom:304.063737px;}
.ye5_c01174{bottom:308.764950px;}
.ye4_c01174{bottom:310.236275px;}
.ye3_c01174{bottom:311.341466px;}
.ye2_c01174{bottom:314.955915px;}
.ye1_c01174{bottom:318.601428px;}
.ye0_c01174{bottom:319.595879px;}
.ydf_c01174{bottom:323.750477px;}
.yde_c01174{bottom:329.902845px;}
.ydd_c01174{bottom:331.585161px;}
.ydc_c01174{bottom:336.462374px;}
.ydb_c01174{bottom:338.637939px;}
.yda_c01174{bottom:341.877548px;}
.yd9_c01174{bottom:343.595666px;}
.yd8_c01174{bottom:346.841484px;}
.yd7_c01174{bottom:351.093795px;}
.yd6_c01174{bottom:352.687767px;}
.yd5_c01174{bottom:354.804702px;}
.yd4_c01174{bottom:359.120976px;}
.yd3_c01174{bottom:363.476967px;}
.yd2_c01174{bottom:367.761368px;}
.yd1_c01174{bottom:370.935987px;}
.yd0_c01174{bottom:372.591141px;}
.ycf_c01174{bottom:373.633922px;}
.yce_c01174{bottom:375.708615px;}
.ycd_c01174{bottom:379.463654px;}
.ycc_c01174{bottom:381.071261px;}
.ycb_c01174{bottom:384.752954px;}
.yca_c01174{bottom:386.366366px;}
.yc9_c01174{bottom:390.578636px;}
.yc8_c01174{bottom:392.087706px;}
.yc7_c01174{bottom:394.212174px;}
.yc6_c01174{bottom:400.826486px;}
.yc5_c01174{bottom:405.257186px;}
.yc4_c01174{bottom:409.266348px;}
.yc3_c01174{bottom:410.241183px;}
.yc2_c01174{bottom:412.251131px;}
.yc1_c01174{bottom:413.774201px;}
.yc0_c01174{bottom:415.742838px;}
.ybf_c01174{bottom:416.716053px;}
.ybe_c01174{bottom:422.233571px;}
.ybd_c01174{bottom:423.198551px;}
.ybc_c01174{bottom:427.700463px;}
.ybb_c01174{bottom:435.771222px;}
.yba_c01174{bottom:440.832048px;}
.yb9_c01174{bottom:442.510584px;}
.yb8_c01174{bottom:447.056925px;}
.yb7_c01174{bottom:449.302866px;}
.yb6_c01174{bottom:451.581369px;}
.yb5_c01174{bottom:458.285604px;}
.yb4_c01174{bottom:462.214617px;}
.yb3_c01174{bottom:465.502232px;}
.yb2_c01174{bottom:469.141130px;}
.yb1_c01174{bottom:470.665928px;}
.yb0_c01174{bottom:473.303693px;}
.yaf_c01174{bottom:475.384772px;}
.yae_c01174{bottom:479.642145px;}
.yad_c01174{bottom:484.763573px;}
.yac_c01174{bottom:489.467081px;}
.yab_c01174{bottom:491.563752px;}
.yaa_c01174{bottom:493.615050px;}
.ya9_c01174{bottom:497.226125px;}
.ya8_c01174{bottom:500.866508px;}
.ya7_c01174{bottom:509.407121px;}
.ya6_c01174{bottom:513.010770px;}
.ya5_c01174{bottom:515.050931px;}
.ya4_c01174{bottom:518.696444px;}
.ya3_c01174{bottom:522.859209px;}
.ya2_c01174{bottom:526.000038px;}
.ya1_c01174{bottom:530.660535px;}
.ya0_c01174{bottom:532.674492px;}
.y9f_c01174{bottom:536.784378px;}
.y9e_c01174{bottom:543.298655px;}
.y9d_c01174{bottom:545.919869px;}
.y9c_c01174{bottom:551.774252px;}
.y9b_c01174{bottom:556.107279px;}
.y9a_c01174{bottom:557.720016px;}
.y99_c01174{bottom:561.944855px;}
.y98_c01174{bottom:563.513622px;}
.y97_c01174{bottom:567.743591px;}
.y96_c01174{bottom:570.821429px;}
.y95_c01174{bottom:573.490662px;}
.y94_c01174{bottom:578.694412px;}
.y93_c01174{bottom:584.552211px;}
.y92_c01174{bottom:585.597651px;}
.y91_c01174{bottom:590.723061px;}
.y90_c01174{bottom:592.322001px;}
.y8f_c01174{bottom:598.559973px;}
.y8e_c01174{bottom:600.122719px;}
.y8d_c01174{bottom:603.703405px;}
.y8c_c01174{bottom:605.278653px;}
.y8b_c01174{bottom:607.791489px;}
.y8a_c01174{bottom:614.743152px;}
.y89_c01174{bottom:616.547130px;}
.y88_c01174{bottom:617.500743px;}
.y87_c01174{bottom:621.176739px;}
.y86_c01174{bottom:623.383206px;}
.y85_c01174{bottom:626.186319px;}
.y84_c01174{bottom:627.538506px;}
.y83_c01174{bottom:630.551760px;}
.y82_c01174{bottom:632.915232px;}
.y81_c01174{bottom:634.777881px;}
.y80_c01174{bottom:637.044234px;}
.y7f_c01174{bottom:641.535725px;}
.y7e_c01174{bottom:645.956691px;}
.y7d_c01174{bottom:647.445836px;}
.y7c_c01174{bottom:650.073935px;}
.y7b_c01174{bottom:652.272896px;}
.y7a_c01174{bottom:656.633004px;}
.y79_c01174{bottom:659.667345px;}
.y78_c01174{bottom:661.352820px;}
.y77_c01174{bottom:665.551793px;}
.y76_c01174{bottom:667.165205px;}
.y75_c01174{bottom:672.971433px;}
.y74_c01174{bottom:674.026175px;}
.y73_c01174{bottom:677.716508px;}
.y72_c01174{bottom:683.408675px;}
.y71_c01174{bottom:686.086886px;}
.y70_c01174{bottom:687.147041px;}
.y6f_c01174{bottom:692.959533px;}
.y6e_c01174{bottom:694.954037px;}
.y6d_c01174{bottom:696.566625px;}
.y6c_c01174{bottom:700.720076px;}
.y6b_c01174{bottom:702.766649px;}
.y6a_c01174{bottom:704.778378px;}
.y69_c01174{bottom:711.516377px;}
.y68_c01174{bottom:713.082701px;}
.y67_c01174{bottom:719.352479px;}
.y66_c01174{bottom:720.890925px;}
.y65_c01174{bottom:722.975987px;}
.y64_c01174{bottom:724.586078px;}
.y63_c01174{bottom:725.619017px;}
.y62_c01174{bottom:729.860312px;}
.y61_c01174{bottom:731.340951px;}
.y60_c01174{bottom:734.414051px;}
.y5f_c01174{bottom:739.102574px;}
.y5e_c01174{bottom:742.773278px;}
.y5d_c01174{bottom:748.460841px;}
.y5c_c01174{bottom:756.106769px;}
.y5b_c01174{bottom:757.160916px;}
.y5a_c01174{bottom:762.753642px;}
.y59_c01174{bottom:765.356618px;}
.y58_c01174{bottom:771.401810px;}
.y57_c01174{bottom:778.024788px;}
.y56_c01174{bottom:780.056120px;}
.y55_c01174{bottom:781.595214px;}
.y54_c01174{bottom:783.551472px;}
.y53_c01174{bottom:790.830713px;}
.y52_c01174{bottom:792.840525px;}
.y51_c01174{bottom:796.810538px;}
.y50_c01174{bottom:799.846620px;}
.y4f_c01174{bottom:801.799125px;}
.y4e_c01174{bottom:805.355363px;}
.y4d_c01174{bottom:806.772727px;}
.y4c_c01174{bottom:811.286723px;}
.y4b_c01174{bottom:813.769913px;}
.y4a_c01174{bottom:815.327880px;}
.y49_c01174{bottom:818.657453px;}
.y48_c01174{bottom:828.625960px;}
.y47_c01174{bottom:830.084001px;}
.y46_c01174{bottom:833.579786px;}
.y45_c01174{bottom:834.978912px;}
.y44_c01174{bottom:840.318824px;}
.y43_c01174{bottom:841.768832px;}
.y42_c01174{bottom:846.152268px;}
.y41_c01174{bottom:847.626576px;}
.y40_c01174{bottom:849.534680px;}
.y3f_c01174{bottom:852.951097px;}
.y3e_c01174{bottom:854.561661px;}
.y3d_c01174{bottom:864.890903px;}
.y3c_c01174{bottom:865.872150px;}
.y3b_c01174{bottom:869.805389px;}
.y3a_c01174{bottom:875.680062px;}
.y39_c01174{bottom:878.981690px;}
.y38_c01174{bottom:881.467539px;}
.y37_c01174{bottom:882.926524px;}
.y36_c01174{bottom:885.786999px;}
.y35_c01174{bottom:890.208964px;}
.y34_c01174{bottom:897.805549px;}
.y33_c01174{bottom:900.157155px;}
.y32_c01174{bottom:903.870114px;}
.y31_c01174{bottom:905.675995px;}
.y30_c01174{bottom:910.851545px;}
.y2f_c01174{bottom:913.154996px;}
.y2e_c01174{bottom:914.587710px;}
.y2d_c01174{bottom:918.764907px;}
.y2c_c01174{bottom:922.919302px;}
.y2b_c01174{bottom:924.770180px;}
.y2a_c01174{bottom:932.653802px;}
.y29_c01174{bottom:934.868166px;}
.y28_c01174{bottom:941.669803px;}
.y27_c01174{bottom:946.462871px;}
.y26_c01174{bottom:948.811763px;}
.y25_c01174{bottom:951.694026px;}
.y24_c01174{bottom:953.606922px;}
.y23_c01174{bottom:955.901774px;}
.y22_c01174{bottom:960.141840px;}
.y21_c01174{bottom:967.840269px;}
.y20_c01174{bottom:969.258930px;}
.y1f_c01174{bottom:971.250490px;}
.y1e_c01174{bottom:974.031275px;}
.y1d_c01174{bottom:975.547365px;}
.y1c_c01174{bottom:981.166349px;}
.y1b_c01174{bottom:982.683992px;}
.y1a_c01174{bottom:984.531777px;}
.y19_c01174{bottom:988.361200px;}
.y18_c01174{bottom:989.766578px;}
.y17_c01174{bottom:993.598229px;}
.y16_c01174{bottom:994.965077px;}
.y15_c01174{bottom:1004.205570px;}
.y14_c01174{bottom:1006.219770px;}
.y13_c01174{bottom:1009.160948px;}
.y12_c01174{bottom:1013.731305px;}
.y11_c01174{bottom:1019.632830px;}
.y10_c01174{bottom:1021.185937px;}
.yf_c01174{bottom:1025.655248px;}
.ye_c01174{bottom:1030.614000px;}
.yd_c01174{bottom:1109.625460px;}
.yc_c01174{bottom:1110.444986px;}
.yb_c01174{bottom:1112.136000px;}
.ya_c01174{bottom:1151.251083px;}
.y9_c01174{bottom:1155.316369px;}
.y8_c01174{bottom:1156.285777px;}
.y7_c01174{bottom:1160.373937px;}
.y6_c01174{bottom:1162.000174px;}
.y5_c01174{bottom:1166.495314px;}
.y4_c01174{bottom:1169.946000px;}
.y2_c01174{bottom:1209.195000px;}
.y1_c01174{bottom:1213.251000px;}
.y3_c01174{bottom:1217.478000px;}
.h3_c01174{height:18.000000px;}
.h2_c01174{height:36.000000px;}
.h8_c01174{height:66.000858px;}
.h4_c01174{height:71.999028px;}
.h7_c01174{height:72.000936px;}
.h6_c01174{height:72.014471px;}
.hb_c01174{height:72.025376px;}
.ha_c01174{height:78.000000px;}
.h9_c01174{height:78.001014px;}
.hc_c01174{height:84.001092px;}
.h5_c01174{height:84.025280px;}
.h1_c01174{height:1258.500000px;}
.h0_c01174{height:1258.740000px;}
.w0_c01174{width:904.200000px;}
.w1_c01174{width:904.500000px;}
.x0_c01174{left:0.000000px;}
.x1_c01174{left:95.310000px;}
.x2_c01174{left:143.100000px;}
.xc5_c01174{left:149.089500px;}
.xc4_c01174{left:155.520000px;}
.xab_c01174{left:156.872813px;}
.x97_c01174{left:160.043193px;}
.x9d_c01174{left:161.330580px;}
.x8b_c01174{left:164.199343px;}
.x85_c01174{left:167.276763px;}
.x7f_c01174{left:168.385140px;}
.x72_c01174{left:169.824064px;}
.x69_c01174{left:171.731614px;}
.x55_c01174{left:174.114972px;}
.x37_c01174{left:175.404708px;}
.x4d_c01174{left:176.989959px;}
.x42_c01174{left:178.757500px;}
.x2e_c01174{left:180.088600px;}
.x27_c01174{left:181.182937px;}
.x1f_c01174{left:184.719249px;}
.xd_c01174{left:185.778000px;}
.xcd_c01174{left:197.140756px;}
.xb4_c01174{left:200.578941px;}
.xc6_c01174{left:202.804731px;}
.x9e_c01174{left:205.560360px;}
.x5f_c01174{left:207.028282px;}
.x38_c01174{left:211.959238px;}
.x15_c01174{left:216.874238px;}
.x4e_c01174{left:219.485529px;}
.x7a_c01174{left:223.744860px;}
.x28_c01174{left:225.205817px;}
.x94_c01174{left:228.817350px;}
.xbc_c01174{left:232.179363px;}
.x9f_c01174{left:236.961671px;}
.xc9_c01174{left:240.448500px;}
.x8c_c01174{left:241.582424px;}
.xac_c01174{left:245.171453px;}
.x6a_c01174{left:248.556874px;}
.x43_c01174{left:252.674010px;}
.x86_c01174{left:254.649465px;}
.x7b_c01174{left:257.215315px;}
.x98_c01174{left:259.985651px;}
.xad_c01174{left:266.314896px;}
.x6b_c01174{left:270.505431px;}
.xbd_c01174{left:275.185193px;}
.xb5_c01174{left:276.860475px;}
.x73_c01174{left:279.268740px;}
.x2f_c01174{left:280.489626px;}
.x20_c01174{left:283.215506px;}
.x44_c01174{left:287.260888px;}
.x39_c01174{left:289.537096px;}
.xa4_c01174{left:290.751813px;}
.xe_c01174{left:295.862305px;}
.x4f_c01174{left:297.048942px;}
.x4_c01174{left:300.889500px;}
.x16_c01174{left:305.903660px;}
.xb6_c01174{left:309.474045px;}
.x8d_c01174{left:318.348189px;}
.xc7_c01174{left:322.869046px;}
.x29_c01174{left:324.000234px;}
.x3a_c01174{left:332.863686px;}
.x74_c01174{left:334.481904px;}
.x21_c01174{left:336.527937px;}
.x17_c01174{left:338.536400px;}
.x45_c01174{left:342.387706px;}
.xae_c01174{left:343.811862px;}
.x30_c01174{left:345.425530px;}
.xcb_c01174{left:346.762512px;}
.x60_c01174{left:350.245017px;}
.xce_c01174{left:352.065933px;}
.xc8_c01174{left:356.354528px;}
.xa0_c01174{left:358.224935px;}
.x8e_c01174{left:361.953621px;}
.x3b_c01174{left:366.326676px;}
.x5_c01174{left:368.482339px;}
.xca_c01174{left:370.810507px;}
.x56_c01174{left:373.034947px;}
.x80_c01174{left:376.041735px;}
.x31_c01174{left:378.548361px;}
.x75_c01174{left:379.866150px;}
.x22_c01174{left:380.960946px;}
.xb7_c01174{left:385.788546px;}
.x6c_c01174{left:391.370161px;}
.x61_c01174{left:393.005362px;}
.xf_c01174{left:395.080987px;}
.x87_c01174{left:396.522180px;}
.x99_c01174{left:403.897095px;}
.x8f_c01174{left:406.533011px;}
.x81_c01174{left:408.701650px;}
.xa5_c01174{left:409.939020px;}
.xbe_c01174{left:417.947774px;}
.xaf_c01174{left:420.652553px;}
.x2a_c01174{left:423.334179px;}
.x3_c01174{left:425.298000px;}
.x18_c01174{left:427.516371px;}
.x10_c01174{left:429.559974px;}
.xb8_c01174{left:431.017542px;}
.x32_c01174{left:435.000920px;}
.x62_c01174{left:436.505899px;}
.x50_c01174{left:440.878981px;}
.x46_c01174{left:442.598395px;}
.xb0_c01174{left:444.154433px;}
.x23_c01174{left:447.913940px;}
.xbf_c01174{left:449.876664px;}
.xb_c01174{left:454.818000px;}
.x6_c01174{left:456.534199px;}
.x88_c01174{left:463.281840px;}
.x3c_c01174{left:465.839023px;}
.x9a_c01174{left:469.206221px;}
.x19_c01174{left:470.437258px;}
.x57_c01174{left:472.686709px;}
.x47_c01174{left:474.063898px;}
.xa6_c01174{left:476.129372px;}
.x95_c01174{left:481.757346px;}
.x7_c01174{left:488.389312px;}
.x82_c01174{left:496.626246px;}
.x3d_c01174{left:498.762553px;}
.x24_c01174{left:502.492738px;}
.xc_c01174{left:506.002264px;}
.x33_c01174{left:509.963760px;}
.xa7_c01174{left:511.171511px;}
.x2b_c01174{left:512.177207px;}
.x63_c01174{left:524.779065px;}
.xb9_c01174{left:528.470141px;}
.x83_c01174{left:530.195616px;}
.x7c_c01174{left:533.145312px;}
.x58_c01174{left:538.009443px;}
.x76_c01174{left:543.815064px;}
.x6d_c01174{left:547.422372px;}
.x89_c01174{left:551.761799px;}
.x48_c01174{left:553.012371px;}
.x64_c01174{left:559.045156px;}
.x11_c01174{left:560.573829px;}
.x8_c01174{left:568.469152px;}
.x59_c01174{left:569.479603px;}
.x51_c01174{left:572.182168px;}
.xb1_c01174{left:575.351280px;}
.xa8_c01174{left:577.224000px;}
.x9_c01174{left:587.458145px;}
.xa1_c01174{left:589.667045px;}
.x49_c01174{left:596.357982px;}
.x65_c01174{left:601.456419px;}
.xcf_c01174{left:605.098957px;}
.xc0_c01174{left:606.444143px;}
.x6e_c01174{left:610.584633px;}
.x77_c01174{left:612.110997px;}
.x25_c01174{left:613.832288px;}
.x90_c01174{left:615.379671px;}
.x3e_c01174{left:620.008659px;}
.xa9_c01174{left:621.588119px;}
.x52_c01174{left:628.701525px;}
.xb2_c01174{left:631.105470px;}
.x1a_c01174{left:636.237225px;}
.x7d_c01174{left:642.095955px;}
.x34_c01174{left:643.348255px;}
.xa2_c01174{left:645.827760px;}
.x96_c01174{left:647.708931px;}
.x3f_c01174{left:651.769285px;}
.x9b_c01174{left:658.283954px;}
.x5a_c01174{left:659.636248px;}
.x12_c01174{left:662.035766px;}
.x4a_c01174{left:663.759013px;}
.x78_c01174{left:665.861355px;}
.xa_c01174{left:667.089933px;}
.x1b_c01174{left:671.461141px;}
.x8a_c01174{left:672.616944px;}
.x2c_c01174{left:678.231918px;}
.x5b_c01174{left:681.600802px;}
.xc1_c01174{left:684.899460px;}
.xcc_c01174{left:687.069702px;}
.x6f_c01174{left:701.345551px;}
.x91_c01174{left:705.859925px;}
.xa3_c01174{left:711.904199px;}
.x5c_c01174{left:715.811449px;}
.xba_c01174{left:718.325312px;}
.xaa_c01174{left:721.028673px;}
.x66_c01174{left:724.993609px;}
.x13_c01174{left:727.329906px;}
.xc2_c01174{left:729.106749px;}
.x40_c01174{left:731.142414px;}
.x35_c01174{left:732.632868px;}
.x1c_c01174{left:736.061287px;}
.x84_c01174{left:742.255762px;}
.x67_c01174{left:747.529024px;}
.x53_c01174{left:750.159972px;}
.x4b_c01174{left:751.893291px;}
.x36_c01174{left:754.916575px;}
.x9c_c01174{left:756.645494px;}
.x5d_c01174{left:760.133097px;}
.x41_c01174{left:764.244265px;}
.x2d_c01174{left:766.526427px;}
.x14_c01174{left:772.045146px;}
.x54_c01174{left:773.062033px;}
.x79_c01174{left:778.672269px;}
.x1d_c01174{left:782.340651px;}
.xb3_c01174{left:787.536329px;}
.x7e_c01174{left:788.814346px;}
.x5e_c01174{left:792.819904px;}
.x4c_c01174{left:796.511128px;}
.x70_c01174{left:801.839444px;}
.x68_c01174{left:804.451909px;}
.x92_c01174{left:806.151479px;}
.xbb_c01174{left:808.491231px;}
.x1e_c01174{left:815.301630px;}
.xc3_c01174{left:817.160324px;}
.x26_c01174{left:823.254440px;}
.x71_c01174{left:832.831731px;}
.x93_c01174{left:838.568624px;}
@media print{
.v0_c01174{vertical-align:0.000000pt;}
.ls0_c01174{letter-spacing:0.000000pt;}
.ws0_c01174{word-spacing:0.000000pt;}
.fs1_c01174{font-size:16.000000pt;}
.fs0_c01174{font-size:32.000000pt;}
.fs6_c01174{font-size:58.667429pt;}
.fs2_c01174{font-size:63.999136pt;}
.fs5_c01174{font-size:64.000832pt;}
.fs4_c01174{font-size:64.012863pt;}
.fs9_c01174{font-size:64.022556pt;}
.fs8_c01174{font-size:69.333333pt;}
.fs7_c01174{font-size:69.334235pt;}
.fsa_c01174{font-size:74.667637pt;}
.fs3_c01174{font-size:74.689138pt;}
.y0_c01174{bottom:0.000000pt;}
.y11f_c01174{bottom:40.338833pt;}
.y11a_c01174{bottom:45.837125pt;}
.y119_c01174{bottom:46.917833pt;}
.y11e_c01174{bottom:49.120901pt;}
.y118_c01174{bottom:50.090093pt;}
.y11d_c01174{bottom:51.104165pt;}
.y11c_c01174{bottom:53.366645pt;}
.y11b_c01174{bottom:54.499265pt;}
.y117_c01174{bottom:54.692201pt;}
.y111_c01174{bottom:58.186253pt;}
.y110_c01174{bottom:59.510873pt;}
.y10f_c01174{bottom:60.344453pt;}
.y116_c01174{bottom:61.910645pt;}
.y115_c01174{bottom:65.832845pt;}
.y114_c01174{bottom:66.981257pt;}
.y113_c01174{bottom:68.443961pt;}
.y10e_c01174{bottom:71.806913pt;}
.y112_c01174{bottom:72.509381pt;}
.y10d_c01174{bottom:74.945633pt;}
.y10c_c01174{bottom:80.165333pt;}
.y10b_c01174{bottom:82.592827pt;}
.y10a_c01174{bottom:84.142149pt;}
.y109_c01174{bottom:85.629835pt;}
.y108_c01174{bottom:87.699989pt;}
.y107_c01174{bottom:89.697344pt;}
.y106_c01174{bottom:92.182667pt;}
.y105_c01174{bottom:188.280000pt;}
.y104_c01174{bottom:195.155025pt;}
.y103_c01174{bottom:199.150509pt;}
.y102_c01174{bottom:201.156813pt;}
.y101_c01174{bottom:204.715929pt;}
.y100_c01174{bottom:206.247849pt;}
.yff_c01174{bottom:208.188381pt;}
.yfe_c01174{bottom:211.820421pt;}
.yfd_c01174{bottom:213.269697pt;}
.yfc_c01174{bottom:214.757289pt;}
.yfb_c01174{bottom:219.746697pt;}
.yfa_c01174{bottom:221.698221pt;}
.yf9_c01174{bottom:225.141417pt;}
.yf8_c01174{bottom:228.238389pt;}
.yf7_c01174{bottom:229.817097pt;}
.yf6_c01174{bottom:232.329129pt;}
.yf5_c01174{bottom:234.848913pt;}
.yf4_c01174{bottom:236.797377pt;}
.yf3_c01174{bottom:240.943977pt;}
.yf2_c01174{bottom:243.859941pt;}
.yf1_c01174{bottom:245.366517pt;}
.yf0_c01174{bottom:247.419069pt;}
.yef_c01174{bottom:250.881789pt;}
.yee_c01174{bottom:252.361149pt;}
.yed_c01174{bottom:255.822549pt;}
.yec_c01174{bottom:257.773533pt;}
.yeb_c01174{bottom:261.406593pt;}
.yea_c01174{bottom:262.858005pt;}
.ye9_c01174{bottom:263.748561pt;}
.ye8_c01174{bottom:266.517477pt;}
.ye7_c01174{bottom:267.947709pt;}
.ye6_c01174{bottom:270.278877pt;}
.ye5_c01174{bottom:274.457733pt;}
.ye4_c01174{bottom:275.765577pt;}
.ye3_c01174{bottom:276.747969pt;}
.ye2_c01174{bottom:279.960813pt;}
.ye1_c01174{bottom:283.201269pt;}
.ye0_c01174{bottom:284.085225pt;}
.ydf_c01174{bottom:287.778201pt;}
.yde_c01174{bottom:293.246973pt;}
.ydd_c01174{bottom:294.742365pt;}
.ydc_c01174{bottom:299.077665pt;}
.ydb_c01174{bottom:301.011501pt;}
.yda_c01174{bottom:303.891153pt;}
.yd9_c01174{bottom:305.418369pt;}
.yd8_c01174{bottom:308.303541pt;}
.yd7_c01174{bottom:312.083373pt;}
.yd6_c01174{bottom:313.500237pt;}
.yd5_c01174{bottom:315.381957pt;}
.yd4_c01174{bottom:319.218645pt;}
.yd3_c01174{bottom:323.090637pt;}
.yd2_c01174{bottom:326.898993pt;}
.yd1_c01174{bottom:329.720877pt;}
.yd0_c01174{bottom:331.192125pt;}
.ycf_c01174{bottom:332.119041pt;}
.yce_c01174{bottom:333.963213pt;}
.ycd_c01174{bottom:337.301025pt;}
.ycc_c01174{bottom:338.730009pt;}
.ycb_c01174{bottom:342.002625pt;}
.yca_c01174{bottom:343.436769pt;}
.yc9_c01174{bottom:347.181009pt;}
.yc8_c01174{bottom:348.522405pt;}
.yc7_c01174{bottom:350.410821pt;}
.yc6_c01174{bottom:356.290209pt;}
.yc5_c01174{bottom:360.228609pt;}
.yc4_c01174{bottom:363.792309pt;}
.yc3_c01174{bottom:364.658829pt;}
.yc2_c01174{bottom:366.445449pt;}
.yc1_c01174{bottom:367.799289pt;}
.yc0_c01174{bottom:369.549189pt;}
.ybf_c01174{bottom:370.414269pt;}
.ybe_c01174{bottom:375.318729pt;}
.ybd_c01174{bottom:376.176489pt;}
.ybc_c01174{bottom:380.178189pt;}
.ybb_c01174{bottom:387.352197pt;}
.yba_c01174{bottom:391.850709pt;}
.yb9_c01174{bottom:393.342741pt;}
.yb8_c01174{bottom:397.383933pt;}
.yb7_c01174{bottom:399.380325pt;}
.yb6_c01174{bottom:401.405661pt;}
.yb5_c01174{bottom:407.364981pt;}
.yb4_c01174{bottom:410.857437pt;}
.yb3_c01174{bottom:413.779761pt;}
.yb2_c01174{bottom:417.014337pt;}
.yb1_c01174{bottom:418.369713pt;}
.yb0_c01174{bottom:420.714393pt;}
.yaf_c01174{bottom:422.564241pt;}
.yae_c01174{bottom:426.348573pt;}
.yad_c01174{bottom:430.900953pt;}
.yac_c01174{bottom:435.081849pt;}
.yab_c01174{bottom:436.945557pt;}
.yaa_c01174{bottom:438.768933pt;}
.ya9_c01174{bottom:441.978777pt;}
.ya8_c01174{bottom:445.214673pt;}
.ya7_c01174{bottom:452.806329pt;}
.ya6_c01174{bottom:456.009573pt;}
.ya5_c01174{bottom:457.823049pt;}
.ya4_c01174{bottom:461.063505pt;}
.ya3_c01174{bottom:464.763741pt;}
.ya2_c01174{bottom:467.555589pt;}
.ya1_c01174{bottom:471.698253pt;}
.ya0_c01174{bottom:473.488437pt;}
.y9f_c01174{bottom:477.141669pt;}
.y9e_c01174{bottom:482.932137pt;}
.y9d_c01174{bottom:485.262105pt;}
.y9c_c01174{bottom:490.466001pt;}
.y9b_c01174{bottom:494.317581pt;}
.y9a_c01174{bottom:495.751125pt;}
.y99_c01174{bottom:499.506537pt;}
.y98_c01174{bottom:500.900997pt;}
.y97_c01174{bottom:504.660969pt;}
.y96_c01174{bottom:507.396825pt;}
.y95_c01174{bottom:509.769477pt;}
.y94_c01174{bottom:514.395033pt;}
.y93_c01174{bottom:519.601965pt;}
.y92_c01174{bottom:520.531245pt;}
.y91_c01174{bottom:525.087165pt;}
.y90_c01174{bottom:526.508445pt;}
.y8f_c01174{bottom:532.053309pt;}
.y8e_c01174{bottom:533.442417pt;}
.y8d_c01174{bottom:536.625249pt;}
.y8c_c01174{bottom:538.025469pt;}
.y8b_c01174{bottom:540.259101pt;}
.y8a_c01174{bottom:546.438357pt;}
.y89_c01174{bottom:548.041893pt;}
.y88_c01174{bottom:548.889549pt;}
.y87_c01174{bottom:552.157101pt;}
.y86_c01174{bottom:554.118405pt;}
.y85_c01174{bottom:556.610061pt;}
.y84_c01174{bottom:557.812005pt;}
.y83_c01174{bottom:560.490453pt;}
.y82_c01174{bottom:562.591317pt;}
.y81_c01174{bottom:564.247005pt;}
.y80_c01174{bottom:566.261541pt;}
.y7f_c01174{bottom:570.253977pt;}
.y7e_c01174{bottom:574.183725pt;}
.y7d_c01174{bottom:575.507409pt;}
.y7c_c01174{bottom:577.843497pt;}
.y7b_c01174{bottom:579.798129pt;}
.y7a_c01174{bottom:583.673781pt;}
.y79_c01174{bottom:586.370973pt;}
.y78_c01174{bottom:587.869173pt;}
.y77_c01174{bottom:591.601593pt;}
.y76_c01174{bottom:593.035737pt;}
.y75_c01174{bottom:598.196829pt;}
.y74_c01174{bottom:599.134377pt;}
.y73_c01174{bottom:602.414673pt;}
.y72_c01174{bottom:607.474377pt;}
.y71_c01174{bottom:609.855009pt;}
.y70_c01174{bottom:610.797369pt;}
.y6f_c01174{bottom:615.964029pt;}
.y6e_c01174{bottom:617.736921pt;}
.y6d_c01174{bottom:619.170333pt;}
.y6c_c01174{bottom:622.862289pt;}
.y6b_c01174{bottom:624.681465pt;}
.y6a_c01174{bottom:626.469669pt;}
.y69_c01174{bottom:632.459001pt;}
.y68_c01174{bottom:633.851289pt;}
.y67_c01174{bottom:639.424425pt;}
.y66_c01174{bottom:640.791933pt;}
.y65_c01174{bottom:642.645321pt;}
.y64_c01174{bottom:644.076513pt;}
.y63_c01174{bottom:644.994681pt;}
.y62_c01174{bottom:648.764721pt;}
.y61_c01174{bottom:650.080845pt;}
.y60_c01174{bottom:652.812489pt;}
.y5f_c01174{bottom:656.980065pt;}
.y5e_c01174{bottom:660.242913pt;}
.y5d_c01174{bottom:665.298525pt;}
.y5c_c01174{bottom:672.094905pt;}
.y5b_c01174{bottom:673.031925pt;}
.y5a_c01174{bottom:678.003237pt;}
.y59_c01174{bottom:680.316993pt;}
.y58_c01174{bottom:685.690497pt;}
.y57_c01174{bottom:691.577589pt;}
.y56_c01174{bottom:693.383217pt;}
.y55_c01174{bottom:694.751301pt;}
.y54_c01174{bottom:696.490197pt;}
.y53_c01174{bottom:702.960633pt;}
.y52_c01174{bottom:704.747133pt;}
.y51_c01174{bottom:708.276033pt;}
.y50_c01174{bottom:710.974773pt;}
.y4f_c01174{bottom:712.710333pt;}
.y4e_c01174{bottom:715.871433pt;}
.y4d_c01174{bottom:717.131313pt;}
.y4c_c01174{bottom:721.143753pt;}
.y4b_c01174{bottom:723.351033pt;}
.y4a_c01174{bottom:724.735893pt;}
.y49_c01174{bottom:727.695513pt;}
.y48_c01174{bottom:736.556409pt;}
.y47_c01174{bottom:737.852445pt;}
.y46_c01174{bottom:740.959809pt;}
.y45_c01174{bottom:742.203477pt;}
.y44_c01174{bottom:746.950065pt;}
.y43_c01174{bottom:748.238961pt;}
.y42_c01174{bottom:752.135349pt;}
.y41_c01174{bottom:753.445845pt;}
.y40_c01174{bottom:755.141937pt;}
.y3f_c01174{bottom:758.178753pt;}
.y3e_c01174{bottom:759.610365pt;}
.y3d_c01174{bottom:768.791913pt;}
.y3c_c01174{bottom:769.664133pt;}
.y3b_c01174{bottom:773.160345pt;}
.y3a_c01174{bottom:778.382277pt;}
.y39_c01174{bottom:781.317057pt;}
.y38_c01174{bottom:783.526701pt;}
.y37_c01174{bottom:784.823577pt;}
.y36_c01174{bottom:787.366221pt;}
.y35_c01174{bottom:791.296857pt;}
.y34_c01174{bottom:798.049377pt;}
.y33_c01174{bottom:800.139693pt;}
.y32_c01174{bottom:803.440101pt;}
.y31_c01174{bottom:805.045329pt;}
.y30_c01174{bottom:809.645817pt;}
.y2f_c01174{bottom:811.693329pt;}
.y2e_c01174{bottom:812.966853pt;}
.y2d_c01174{bottom:816.679917pt;}
.y2c_c01174{bottom:820.372713pt;}
.y2b_c01174{bottom:822.017937pt;}
.y2a_c01174{bottom:829.025601pt;}
.y29_c01174{bottom:830.993925pt;}
.y28_c01174{bottom:837.039825pt;}
.y27_c01174{bottom:841.300329pt;}
.y26_c01174{bottom:843.388233pt;}
.y25_c01174{bottom:845.950245pt;}
.y24_c01174{bottom:847.650597pt;}
.y23_c01174{bottom:849.690465pt;}
.y22_c01174{bottom:853.459413pt;}
.y21_c01174{bottom:860.302461pt;}
.y20_c01174{bottom:861.563493pt;}
.y1f_c01174{bottom:863.333769pt;}
.y1e_c01174{bottom:865.805577pt;}
.y1d_c01174{bottom:867.153213pt;}
.y1c_c01174{bottom:872.147865pt;}
.y1b_c01174{bottom:873.496881pt;}
.y1a_c01174{bottom:875.139357pt;}
.y19_c01174{bottom:878.543289pt;}
.y18_c01174{bottom:879.792513pt;}
.y17_c01174{bottom:883.198425pt;}
.y16_c01174{bottom:884.413401pt;}
.y15_c01174{bottom:892.627173pt;}
.y14_c01174{bottom:894.417573pt;}
.y13_c01174{bottom:897.031953pt;}
.y12_c01174{bottom:901.094493pt;}
.y11_c01174{bottom:906.340293pt;}
.y10_c01174{bottom:907.720833pt;}
.yf_c01174{bottom:911.693553pt;}
.ye_c01174{bottom:916.101333pt;}
.yd_c01174{bottom:986.333743pt;}
.yc_c01174{bottom:987.062209pt;}
.yb_c01174{bottom:988.565333pt;}
.ya_c01174{bottom:1023.334296pt;}
.y9_c01174{bottom:1026.947884pt;}
.y8_c01174{bottom:1027.809580pt;}
.y7_c01174{bottom:1031.443500pt;}
.y6_c01174{bottom:1032.889044pt;}
.y5_c01174{bottom:1036.884724pt;}
.y4_c01174{bottom:1039.952000pt;}
.y2_c01174{bottom:1074.840000pt;}
.y1_c01174{bottom:1078.445333pt;}
.y3_c01174{bottom:1082.202667pt;}
.h3_c01174{height:16.000000pt;}
.h2_c01174{height:32.000000pt;}
.h8_c01174{height:58.667429pt;}
.h4_c01174{height:63.999136pt;}
.h7_c01174{height:64.000832pt;}
.h6_c01174{height:64.012863pt;}
.hb_c01174{height:64.022556pt;}
.ha_c01174{height:69.333333pt;}
.h9_c01174{height:69.334235pt;}
.hc_c01174{height:74.667637pt;}
.h5_c01174{height:74.689138pt;}
.h1_c01174{height:1118.666667pt;}
.h0_c01174{height:1118.880000pt;}
.w0_c01174{width:803.733333pt;}
.w1_c01174{width:804.000000pt;}
.x0_c01174{left:0.000000pt;}
.x1_c01174{left:84.720000pt;}
.x2_c01174{left:127.200000pt;}
.xc5_c01174{left:132.524000pt;}
.xc4_c01174{left:138.240000pt;}
.xab_c01174{left:139.442500pt;}
.x97_c01174{left:142.260616pt;}
.x9d_c01174{left:143.404960pt;}
.x8b_c01174{left:145.954972pt;}
.x85_c01174{left:148.690456pt;}
.x7f_c01174{left:149.675680pt;}
.x72_c01174{left:150.954724pt;}
.x69_c01174{left:152.650324pt;}
.x55_c01174{left:154.768864pt;}
.x37_c01174{left:155.915296pt;}
.x4d_c01174{left:157.324408pt;}
.x42_c01174{left:158.895556pt;}
.x2e_c01174{left:160.078756pt;}
.x27_c01174{left:161.051500pt;}
.x1f_c01174{left:164.194888pt;}
.xd_c01174{left:165.136000pt;}
.xcd_c01174{left:175.236228pt;}
.xb4_c01174{left:178.292392pt;}
.xc6_c01174{left:180.270872pt;}
.x9e_c01174{left:182.720320pt;}
.x5f_c01174{left:184.025140pt;}
.x38_c01174{left:188.408212pt;}
.x15_c01174{left:192.777100pt;}
.x4e_c01174{left:195.098248pt;}
.x7a_c01174{left:198.884320pt;}
.x28_c01174{left:200.182948pt;}
.x94_c01174{left:203.393200pt;}
.xbc_c01174{left:206.381656pt;}
.x9f_c01174{left:210.632596pt;}
.xc9_c01174{left:213.732000pt;}
.x8c_c01174{left:214.739932pt;}
.xac_c01174{left:217.930180pt;}
.x6a_c01174{left:220.939444pt;}
.x43_c01174{left:224.599120pt;}
.x86_c01174{left:226.355080pt;}
.x7b_c01174{left:228.635836pt;}
.x98_c01174{left:231.098356pt;}
.xad_c01174{left:236.724352pt;}
.x6b_c01174{left:240.449272pt;}
.xbd_c01174{left:244.609060pt;}
.xb5_c01174{left:246.098200pt;}
.x73_c01174{left:248.238880pt;}
.x2f_c01174{left:249.324112pt;}
.x20_c01174{left:251.747116pt;}
.x44_c01174{left:255.343012pt;}
.x39_c01174{left:257.366308pt;}
.xa4_c01174{left:258.446056pt;}
.xe_c01174{left:262.988716pt;}
.x4f_c01174{left:264.043504pt;}
.x4_c01174{left:267.457333pt;}
.x16_c01174{left:271.914364pt;}
.xb6_c01174{left:275.088040pt;}
.x8d_c01174{left:282.976168pt;}
.xc7_c01174{left:286.994708pt;}
.x29_c01174{left:288.000208pt;}
.x3a_c01174{left:295.878832pt;}
.x74_c01174{left:297.317248pt;}
.x21_c01174{left:299.135944pt;}
.x17_c01174{left:300.921244pt;}
.x45_c01174{left:304.344628pt;}
.xae_c01174{left:305.610544pt;}
.x30_c01174{left:307.044916pt;}
.xcb_c01174{left:308.233344pt;}
.x60_c01174{left:311.328904pt;}
.xce_c01174{left:312.947496pt;}
.xc8_c01174{left:316.759580pt;}
.xa0_c01174{left:318.422164pt;}
.x8e_c01174{left:321.736552pt;}
.x3b_c01174{left:325.623712pt;}
.x5_c01174{left:327.539857pt;}
.xca_c01174{left:329.609340pt;}
.x56_c01174{left:331.586620pt;}
.x80_c01174{left:334.259320pt;}
.x31_c01174{left:336.487432pt;}
.x75_c01174{left:337.658800pt;}
.x22_c01174{left:338.631952pt;}
.xb7_c01174{left:342.923152pt;}
.x6c_c01174{left:347.884588pt;}
.x61_c01174{left:349.338100pt;}
.xf_c01174{left:351.183100pt;}
.x87_c01174{left:352.464160pt;}
.x99_c01174{left:359.019640pt;}
.x8f_c01174{left:361.362676pt;}
.x81_c01174{left:363.290356pt;}
.xa5_c01174{left:364.390240pt;}
.xbe_c01174{left:371.509132pt;}
.xaf_c01174{left:373.913380pt;}
.x2a_c01174{left:376.297048pt;}
.x3_c01174{left:378.042667pt;}
.x18_c01174{left:380.014552pt;}
.x10_c01174{left:381.831088pt;}
.xb8_c01174{left:383.126704pt;}
.x32_c01174{left:386.667484pt;}
.x62_c01174{left:388.005244pt;}
.x50_c01174{left:391.892428pt;}
.x46_c01174{left:393.420796pt;}
.xb0_c01174{left:394.803940pt;}
.x23_c01174{left:398.145724pt;}
.xbf_c01174{left:399.890368pt;}
.xb_c01174{left:404.282667pt;}
.x6_c01174{left:405.808177pt;}
.x88_c01174{left:411.806080pt;}
.x3c_c01174{left:414.079132pt;}
.x9a_c01174{left:417.072196pt;}
.x19_c01174{left:418.166452pt;}
.x57_c01174{left:420.165964pt;}
.x47_c01174{left:421.390132pt;}
.xa6_c01174{left:423.226108pt;}
.x95_c01174{left:428.228752pt;}
.x7_c01174{left:434.123833pt;}
.x82_c01174{left:441.445552pt;}
.x3d_c01174{left:443.344492pt;}
.x24_c01174{left:446.660212pt;}
.xc_c01174{left:449.779791pt;}
.x33_c01174{left:453.301120pt;}
.xa7_c01174{left:454.374676pt;}
.x2b_c01174{left:455.268628pt;}
.x63_c01174{left:466.470280pt;}
.xb9_c01174{left:469.751236pt;}
.x83_c01174{left:471.284992pt;}
.x7c_c01174{left:473.906944pt;}
.x58_c01174{left:478.230616pt;}
.x76_c01174{left:483.391168pt;}
.x6d_c01174{left:486.597664pt;}
.x89_c01174{left:490.454932pt;}
.x48_c01174{left:491.566552pt;}
.x64_c01174{left:496.929028pt;}
.x11_c01174{left:498.287848pt;}
.x8_c01174{left:505.305913pt;}
.x59_c01174{left:506.204092pt;}
.x51_c01174{left:508.606372pt;}
.xb1_c01174{left:511.423360pt;}
.xa8_c01174{left:513.088000pt;}
.x9_c01174{left:522.185017pt;}
.xa1_c01174{left:524.148484pt;}
.x49_c01174{left:530.095984pt;}
.x65_c01174{left:534.627928pt;}
.xcf_c01174{left:537.865740pt;}
.xc0_c01174{left:539.061460pt;}
.x6e_c01174{left:542.741896pt;}
.x77_c01174{left:544.098664pt;}
.x25_c01174{left:545.628700pt;}
.x90_c01174{left:547.004152pt;}
.x3e_c01174{left:551.118808pt;}
.xa9_c01174{left:552.522772pt;}
.x52_c01174{left:558.845800pt;}
.xb2_c01174{left:560.982640pt;}
.x1a_c01174{left:565.544200pt;}
.x7d_c01174{left:570.751960pt;}
.x34_c01174{left:571.865116pt;}
.xa2_c01174{left:574.069120pt;}
.x96_c01174{left:575.741272pt;}
.x3f_c01174{left:579.350476pt;}
.x9b_c01174{left:585.141292pt;}
.x5a_c01174{left:586.343332pt;}
.x12_c01174{left:588.476236pt;}
.x4a_c01174{left:590.008012pt;}
.x78_c01174{left:591.876760pt;}
.xa_c01174{left:592.968829pt;}
.x1b_c01174{left:596.854348pt;}
.x8a_c01174{left:597.881728pt;}
.x2c_c01174{left:602.872816pt;}
.x5b_c01174{left:605.867380pt;}
.xc1_c01174{left:608.799520pt;}
.xcc_c01174{left:610.728624pt;}
.x6f_c01174{left:623.418268pt;}
.x91_c01174{left:627.431044pt;}
.xa3_c01174{left:632.803732pt;}
.x5c_c01174{left:636.276844pt;}
.xba_c01174{left:638.511388pt;}
.xaa_c01174{left:640.914376pt;}
.x66_c01174{left:644.438764pt;}
.x13_c01174{left:646.515472pt;}
.xc2_c01174{left:648.094888pt;}
.x40_c01174{left:649.904368pt;}
.x35_c01174{left:651.229216pt;}
.x1c_c01174{left:654.276700pt;}
.x84_c01174{left:659.782900pt;}
.x67_c01174{left:664.470244pt;}
.x53_c01174{left:666.808864pt;}
.x4b_c01174{left:668.349592pt;}
.x36_c01174{left:671.036956pt;}
.x9c_c01174{left:672.573772pt;}
.x5d_c01174{left:675.673864pt;}
.x41_c01174{left:679.328236pt;}
.x2d_c01174{left:681.356824pt;}
.x14_c01174{left:686.262352pt;}
.x54_c01174{left:687.166252pt;}
.x79_c01174{left:692.153128pt;}
.x1d_c01174{left:695.413912pt;}
.xb3_c01174{left:700.032292pt;}
.x7e_c01174{left:701.168308pt;}
.x5e_c01174{left:704.728804pt;}
.x4c_c01174{left:708.009892pt;}
.x70_c01174{left:712.746172pt;}
.x68_c01174{left:715.068364pt;}
.x92_c01174{left:716.579092pt;}
.xbb_c01174{left:718.658872pt;}
.x1e_c01174{left:724.712560pt;}
.xc3_c01174{left:726.364732pt;}
.x26_c01174{left:731.781724pt;}
.x71_c01174{left:740.294872pt;}
.x93_c01174{left:745.394332pt;}
}





/* 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_c01175 {
    display:none;
  }
  .loading-indicator_c01175.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01175 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_c01175 { 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_c01175" -> "#page-container .classname_c01175")
 */
.pf_c01175 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01175 { /* 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_c01175.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01175 { /* 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_c01175 { /* 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_c01175 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01175 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01175 {overflow:visible;}
  }
}
.c_c01175 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01175 { /* 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_c01175:after { /* webkit #35443 */
  content: '';
}
.t_c01175:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01175 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 */
}
.__c01175 { /* 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_c01175 { /* info for Javascript */
  display:none;
}
.l_c01175 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01175 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01175 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01175: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_c01175 {
    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_c01175.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01175.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_c01175 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01175{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01175;src:url('chunks/assets/font_c605e72f209fc835e906f064.woff2')format("woff");}.ff1_c01175{font-family:ff1_c01175;line-height:1.000000;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;}
.m33_c01175{transform:matrix(0.029492,-0.000678,0.005748,0.249934,0,0);-ms-transform:matrix(0.029492,-0.000678,0.005748,0.249934,0,0);-webkit-transform:matrix(0.029492,-0.000678,0.005748,0.249934,0,0);}
.m34_c01175{transform:matrix(0.038585,-0.000887,0.005748,0.249934,0,0);-ms-transform:matrix(0.038585,-0.000887,0.005748,0.249934,0,0);-webkit-transform:matrix(0.038585,-0.000887,0.005748,0.249934,0,0);}
.m30_c01175{transform:matrix(0.092596,-0.002130,0.005748,0.249934,0,0);-ms-transform:matrix(0.092596,-0.002130,0.005748,0.249934,0,0);-webkit-transform:matrix(0.092596,-0.002130,0.005748,0.249934,0,0);}
.m7_c01175{transform:matrix(0.119173,-0.002979,0.006248,0.249922,0,0);-ms-transform:matrix(0.119173,-0.002979,0.006248,0.249922,0,0);-webkit-transform:matrix(0.119173,-0.002979,0.006248,0.249922,0,0);}
.m37_c01175{transform:matrix(0.128356,-0.002952,0.005748,0.249934,0,0);-ms-transform:matrix(0.128356,-0.002952,0.005748,0.249934,0,0);-webkit-transform:matrix(0.128356,-0.002952,0.005748,0.249934,0,0);}
.m68_c01175{transform:matrix(0.156069,-0.003590,0.005748,0.249934,0,0);-ms-transform:matrix(0.156069,-0.003590,0.005748,0.249934,0,0);-webkit-transform:matrix(0.156069,-0.003590,0.005748,0.249934,0,0);}
.m6_c01175{transform:matrix(0.161639,-0.004041,0.006248,0.249922,0,0);-ms-transform:matrix(0.161639,-0.004041,0.006248,0.249922,0,0);-webkit-transform:matrix(0.161639,-0.004041,0.006248,0.249922,0,0);}
.m2f_c01175{transform:matrix(0.167031,-0.003842,0.005748,0.249934,0,0);-ms-transform:matrix(0.167031,-0.003842,0.005748,0.249934,0,0);-webkit-transform:matrix(0.167031,-0.003842,0.005748,0.249934,0,0);}
.m44_c01175{transform:matrix(0.181942,-0.004185,0.005748,0.249934,0,0);-ms-transform:matrix(0.181942,-0.004185,0.005748,0.249934,0,0);-webkit-transform:matrix(0.181942,-0.004185,0.005748,0.249934,0,0);}
.m63_c01175{transform:matrix(0.194129,-0.004465,0.005748,0.249934,0,0);-ms-transform:matrix(0.194129,-0.004465,0.005748,0.249934,0,0);-webkit-transform:matrix(0.194129,-0.004465,0.005748,0.249934,0,0);}
.m3f_c01175{transform:matrix(0.195603,-0.004499,0.005748,0.249934,0,0);-ms-transform:matrix(0.195603,-0.004499,0.005748,0.249934,0,0);-webkit-transform:matrix(0.195603,-0.004499,0.005748,0.249934,0,0);}
.m81_c01175{transform:matrix(0.196028,-0.003529,0.004499,0.249960,0,0);-ms-transform:matrix(0.196028,-0.003529,0.004499,0.249960,0,0);-webkit-transform:matrix(0.196028,-0.003529,0.004499,0.249960,0,0);}
.m19_c01175{transform:matrix(0.201805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201805,0.000000,0.000000,0.250000,0,0);}
.m46_c01175{transform:matrix(0.207290,-0.004768,0.005748,0.249934,0,0);-ms-transform:matrix(0.207290,-0.004768,0.005748,0.249934,0,0);-webkit-transform:matrix(0.207290,-0.004768,0.005748,0.249934,0,0);}
.me_c01175{transform:matrix(0.209037,-0.003972,0.004749,0.249955,0,0);-ms-transform:matrix(0.209037,-0.003972,0.004749,0.249955,0,0);-webkit-transform:matrix(0.209037,-0.003972,0.004749,0.249955,0,0);}
.m65_c01175{transform:matrix(0.214503,-0.004934,0.005748,0.249934,0,0);-ms-transform:matrix(0.214503,-0.004934,0.005748,0.249934,0,0);-webkit-transform:matrix(0.214503,-0.004934,0.005748,0.249934,0,0);}
.m53_c01175{transform:matrix(0.217502,-0.005003,0.005748,0.249934,0,0);-ms-transform:matrix(0.217502,-0.005003,0.005748,0.249934,0,0);-webkit-transform:matrix(0.217502,-0.005003,0.005748,0.249934,0,0);}
.m14_c01175{transform:matrix(0.218920,-0.004159,0.004749,0.249955,0,0);-ms-transform:matrix(0.218920,-0.004159,0.004749,0.249955,0,0);-webkit-transform:matrix(0.218920,-0.004159,0.004749,0.249955,0,0);}
.m2d_c01175{transform:matrix(0.219087,-0.005039,0.005748,0.249934,0,0);-ms-transform:matrix(0.219087,-0.005039,0.005748,0.249934,0,0);-webkit-transform:matrix(0.219087,-0.005039,0.005748,0.249934,0,0);}
.m2c_c01175{transform:matrix(0.220452,-0.005070,0.005748,0.249934,0,0);-ms-transform:matrix(0.220452,-0.005070,0.005748,0.249934,0,0);-webkit-transform:matrix(0.220452,-0.005070,0.005748,0.249934,0,0);}
.m41_c01175{transform:matrix(0.222551,-0.005119,0.005748,0.249934,0,0);-ms-transform:matrix(0.222551,-0.005119,0.005748,0.249934,0,0);-webkit-transform:matrix(0.222551,-0.005119,0.005748,0.249934,0,0);}
.m42_c01175{transform:matrix(0.225730,-0.005192,0.005748,0.249934,0,0);-ms-transform:matrix(0.225730,-0.005192,0.005748,0.249934,0,0);-webkit-transform:matrix(0.225730,-0.005192,0.005748,0.249934,0,0);}
.m12_c01175{transform:matrix(0.226979,-0.004313,0.004749,0.249955,0,0);-ms-transform:matrix(0.226979,-0.004313,0.004749,0.249955,0,0);-webkit-transform:matrix(0.226979,-0.004313,0.004749,0.249955,0,0);}
.m59_c01175{transform:matrix(0.227125,-0.005224,0.005748,0.249934,0,0);-ms-transform:matrix(0.227125,-0.005224,0.005748,0.249934,0,0);-webkit-transform:matrix(0.227125,-0.005224,0.005748,0.249934,0,0);}
.m4_c01175{transform:matrix(0.232107,-0.005803,0.006248,0.249922,0,0);-ms-transform:matrix(0.232107,-0.005803,0.006248,0.249922,0,0);-webkit-transform:matrix(0.232107,-0.005803,0.006248,0.249922,0,0);}
.m21_c01175{transform:matrix(0.232703,-0.005352,0.005748,0.249934,0,0);-ms-transform:matrix(0.232703,-0.005352,0.005748,0.249934,0,0);-webkit-transform:matrix(0.232703,-0.005352,0.005748,0.249934,0,0);}
.m69_c01175{transform:matrix(0.235443,-0.005415,0.005748,0.249934,0,0);-ms-transform:matrix(0.235443,-0.005415,0.005748,0.249934,0,0);-webkit-transform:matrix(0.235443,-0.005415,0.005748,0.249934,0,0);}
.m56_c01175{transform:matrix(0.235693,-0.005421,0.005748,0.249934,0,0);-ms-transform:matrix(0.235693,-0.005421,0.005748,0.249934,0,0);-webkit-transform:matrix(0.235693,-0.005421,0.005748,0.249934,0,0);}
.m3a_c01175{transform:matrix(0.236707,-0.005444,0.005748,0.249934,0,0);-ms-transform:matrix(0.236707,-0.005444,0.005748,0.249934,0,0);-webkit-transform:matrix(0.236707,-0.005444,0.005748,0.249934,0,0);}
.m58_c01175{transform:matrix(0.237772,-0.005469,0.005748,0.249934,0,0);-ms-transform:matrix(0.237772,-0.005469,0.005748,0.249934,0,0);-webkit-transform:matrix(0.237772,-0.005469,0.005748,0.249934,0,0);}
.m83_c01175{transform:matrix(0.239316,-0.004308,0.004499,0.249960,0,0);-ms-transform:matrix(0.239316,-0.004308,0.004499,0.249960,0,0);-webkit-transform:matrix(0.239316,-0.004308,0.004499,0.249960,0,0);}
.m7f_c01175{transform:matrix(0.240031,-0.004321,0.004499,0.249960,0,0);-ms-transform:matrix(0.240031,-0.004321,0.004499,0.249960,0,0);-webkit-transform:matrix(0.240031,-0.004321,0.004499,0.249960,0,0);}
.m22_c01175{transform:matrix(0.242651,-0.005581,0.005748,0.249934,0,0);-ms-transform:matrix(0.242651,-0.005581,0.005748,0.249934,0,0);-webkit-transform:matrix(0.242651,-0.005581,0.005748,0.249934,0,0);}
.m3d_c01175{transform:matrix(0.242876,-0.005586,0.005748,0.249934,0,0);-ms-transform:matrix(0.242876,-0.005586,0.005748,0.249934,0,0);-webkit-transform:matrix(0.242876,-0.005586,0.005748,0.249934,0,0);}
.m24_c01175{transform:matrix(0.242891,-0.005586,0.005748,0.249934,0,0);-ms-transform:matrix(0.242891,-0.005586,0.005748,0.249934,0,0);-webkit-transform:matrix(0.242891,-0.005586,0.005748,0.249934,0,0);}
.m2b_c01175{transform:matrix(0.244510,-0.005624,0.005748,0.249934,0,0);-ms-transform:matrix(0.244510,-0.005624,0.005748,0.249934,0,0);-webkit-transform:matrix(0.244510,-0.005624,0.005748,0.249934,0,0);}
.m23_c01175{transform:matrix(0.245360,-0.005643,0.005748,0.249934,0,0);-ms-transform:matrix(0.245360,-0.005643,0.005748,0.249934,0,0);-webkit-transform:matrix(0.245360,-0.005643,0.005748,0.249934,0,0);}
.m2_c01175{transform:matrix(0.254450,-0.006361,0.006248,0.249922,0,0);-ms-transform:matrix(0.254450,-0.006361,0.006248,0.249922,0,0);-webkit-transform:matrix(0.254450,-0.006361,0.006248,0.249922,0,0);}
.m4b_c01175{transform:matrix(0.258772,-0.005952,0.005748,0.249934,0,0);-ms-transform:matrix(0.258772,-0.005952,0.005748,0.249934,0,0);-webkit-transform:matrix(0.258772,-0.005952,0.005748,0.249934,0,0);}
.m43_c01175{transform:matrix(0.259086,-0.005959,0.005748,0.249934,0,0);-ms-transform:matrix(0.259086,-0.005959,0.005748,0.249934,0,0);-webkit-transform:matrix(0.259086,-0.005959,0.005748,0.249934,0,0);}
.m38_c01175{transform:matrix(0.259726,-0.005974,0.005748,0.249934,0,0);-ms-transform:matrix(0.259726,-0.005974,0.005748,0.249934,0,0);-webkit-transform:matrix(0.259726,-0.005974,0.005748,0.249934,0,0);}
.m5b_c01175{transform:matrix(0.260011,-0.005980,0.005748,0.249934,0,0);-ms-transform:matrix(0.260011,-0.005980,0.005748,0.249934,0,0);-webkit-transform:matrix(0.260011,-0.005980,0.005748,0.249934,0,0);}
.m1f_c01175{transform:matrix(0.261046,-0.006004,0.005748,0.249934,0,0);-ms-transform:matrix(0.261046,-0.006004,0.005748,0.249934,0,0);-webkit-transform:matrix(0.261046,-0.006004,0.005748,0.249934,0,0);}
.m6c_c01175{transform:matrix(0.261131,-0.006006,0.005748,0.249934,0,0);-ms-transform:matrix(0.261131,-0.006006,0.005748,0.249934,0,0);-webkit-transform:matrix(0.261131,-0.006006,0.005748,0.249934,0,0);}
.m51_c01175{transform:matrix(0.262441,-0.006036,0.005748,0.249934,0,0);-ms-transform:matrix(0.262441,-0.006036,0.005748,0.249934,0,0);-webkit-transform:matrix(0.262441,-0.006036,0.005748,0.249934,0,0);}
.m49_c01175{transform:matrix(0.262795,-0.006044,0.005748,0.249934,0,0);-ms-transform:matrix(0.262795,-0.006044,0.005748,0.249934,0,0);-webkit-transform:matrix(0.262795,-0.006044,0.005748,0.249934,0,0);}
.m54_c01175{transform:matrix(0.263500,-0.006061,0.005748,0.249934,0,0);-ms-transform:matrix(0.263500,-0.006061,0.005748,0.249934,0,0);-webkit-transform:matrix(0.263500,-0.006061,0.005748,0.249934,0,0);}
.m20_c01175{transform:matrix(0.263800,-0.006067,0.005748,0.249934,0,0);-ms-transform:matrix(0.263800,-0.006067,0.005748,0.249934,0,0);-webkit-transform:matrix(0.263800,-0.006067,0.005748,0.249934,0,0);}
.m13_c01175{transform:matrix(0.264612,-0.005028,0.004749,0.249955,0,0);-ms-transform:matrix(0.264612,-0.005028,0.004749,0.249955,0,0);-webkit-transform:matrix(0.264612,-0.005028,0.004749,0.249955,0,0);}
.m8d_c01175{transform:matrix(0.264722,-0.004765,0.004499,0.249960,0,0);-ms-transform:matrix(0.264722,-0.004765,0.004499,0.249960,0,0);-webkit-transform:matrix(0.264722,-0.004765,0.004499,0.249960,0,0);}
.m7d_c01175{transform:matrix(0.266182,-0.004791,0.004499,0.249960,0,0);-ms-transform:matrix(0.266182,-0.004791,0.004499,0.249960,0,0);-webkit-transform:matrix(0.266182,-0.004791,0.004499,0.249960,0,0);}
.m3b_c01175{transform:matrix(0.267839,-0.006160,0.005748,0.249934,0,0);-ms-transform:matrix(0.267839,-0.006160,0.005748,0.249934,0,0);-webkit-transform:matrix(0.267839,-0.006160,0.005748,0.249934,0,0);}
.m4f_c01175{transform:matrix(0.267854,-0.006161,0.005748,0.249934,0,0);-ms-transform:matrix(0.267854,-0.006161,0.005748,0.249934,0,0);-webkit-transform:matrix(0.267854,-0.006161,0.005748,0.249934,0,0);}
.m40_c01175{transform:matrix(0.271553,-0.006246,0.005748,0.249934,0,0);-ms-transform:matrix(0.271553,-0.006246,0.005748,0.249934,0,0);-webkit-transform:matrix(0.271553,-0.006246,0.005748,0.249934,0,0);}
.m2a_c01175{transform:matrix(0.273378,-0.006288,0.005748,0.249934,0,0);-ms-transform:matrix(0.273378,-0.006288,0.005748,0.249934,0,0);-webkit-transform:matrix(0.273378,-0.006288,0.005748,0.249934,0,0);}
.m67_c01175{transform:matrix(0.273663,-0.006294,0.005748,0.249934,0,0);-ms-transform:matrix(0.273663,-0.006294,0.005748,0.249934,0,0);-webkit-transform:matrix(0.273663,-0.006294,0.005748,0.249934,0,0);}
.m57_c01175{transform:matrix(0.274477,-0.006313,0.005748,0.249934,0,0);-ms-transform:matrix(0.274477,-0.006313,0.005748,0.249934,0,0);-webkit-transform:matrix(0.274477,-0.006313,0.005748,0.249934,0,0);}
.m45_c01175{transform:matrix(0.276962,-0.006370,0.005748,0.249934,0,0);-ms-transform:matrix(0.276962,-0.006370,0.005748,0.249934,0,0);-webkit-transform:matrix(0.276962,-0.006370,0.005748,0.249934,0,0);}
.m2e_c01175{transform:matrix(0.277557,-0.006384,0.005748,0.249934,0,0);-ms-transform:matrix(0.277557,-0.006384,0.005748,0.249934,0,0);-webkit-transform:matrix(0.277557,-0.006384,0.005748,0.249934,0,0);}
.m6a_c01175{transform:matrix(0.278806,-0.006413,0.005748,0.249934,0,0);-ms-transform:matrix(0.278806,-0.006413,0.005748,0.249934,0,0);-webkit-transform:matrix(0.278806,-0.006413,0.005748,0.249934,0,0);}
.m5e_c01175{transform:matrix(0.278936,-0.006416,0.005748,0.249934,0,0);-ms-transform:matrix(0.278936,-0.006416,0.005748,0.249934,0,0);-webkit-transform:matrix(0.278936,-0.006416,0.005748,0.249934,0,0);}
.m7e_c01175{transform:matrix(0.279035,-0.005023,0.004499,0.249960,0,0);-ms-transform:matrix(0.279035,-0.005023,0.004499,0.249960,0,0);-webkit-transform:matrix(0.279035,-0.005023,0.004499,0.249960,0,0);}
.m31_c01175{transform:matrix(0.279061,-0.006418,0.005748,0.249934,0,0);-ms-transform:matrix(0.279061,-0.006418,0.005748,0.249934,0,0);-webkit-transform:matrix(0.279061,-0.006418,0.005748,0.249934,0,0);}
.m55_c01175{transform:matrix(0.279161,-0.006421,0.005748,0.249934,0,0);-ms-transform:matrix(0.279161,-0.006421,0.005748,0.249934,0,0);-webkit-transform:matrix(0.279161,-0.006421,0.005748,0.249934,0,0);}
.m1d_c01175{transform:matrix(0.279306,-0.006424,0.005748,0.249934,0,0);-ms-transform:matrix(0.279306,-0.006424,0.005748,0.249934,0,0);-webkit-transform:matrix(0.279306,-0.006424,0.005748,0.249934,0,0);}
.m50_c01175{transform:matrix(0.279451,-0.006427,0.005748,0.249934,0,0);-ms-transform:matrix(0.279451,-0.006427,0.005748,0.249934,0,0);-webkit-transform:matrix(0.279451,-0.006427,0.005748,0.249934,0,0);}
.m9_c01175{transform:matrix(0.279468,-0.006987,0.006248,0.249922,0,0);-ms-transform:matrix(0.279468,-0.006987,0.006248,0.249922,0,0);-webkit-transform:matrix(0.279468,-0.006987,0.006248,0.249922,0,0);}
.m5c_c01175{transform:matrix(0.280271,-0.006446,0.005748,0.249934,0,0);-ms-transform:matrix(0.280271,-0.006446,0.005748,0.249934,0,0);-webkit-transform:matrix(0.280271,-0.006446,0.005748,0.249934,0,0);}
.m8b_c01175{transform:matrix(0.280330,-0.005046,0.004499,0.249960,0,0);-ms-transform:matrix(0.280330,-0.005046,0.004499,0.249960,0,0);-webkit-transform:matrix(0.280330,-0.005046,0.004499,0.249960,0,0);}
.m5a_c01175{transform:matrix(0.281436,-0.006473,0.005748,0.249934,0,0);-ms-transform:matrix(0.281436,-0.006473,0.005748,0.249934,0,0);-webkit-transform:matrix(0.281436,-0.006473,0.005748,0.249934,0,0);}
.m10_c01175{transform:matrix(0.281839,-0.005355,0.004749,0.249955,0,0);-ms-transform:matrix(0.281839,-0.005355,0.004749,0.249955,0,0);-webkit-transform:matrix(0.281839,-0.005355,0.004749,0.249955,0,0);}
.m1c_c01175{transform:matrix(0.284660,-0.006547,0.005748,0.249934,0,0);-ms-transform:matrix(0.284660,-0.006547,0.005748,0.249934,0,0);-webkit-transform:matrix(0.284660,-0.006547,0.005748,0.249934,0,0);}
.m4e_c01175{transform:matrix(0.285699,-0.006571,0.005748,0.249934,0,0);-ms-transform:matrix(0.285699,-0.006571,0.005748,0.249934,0,0);-webkit-transform:matrix(0.285699,-0.006571,0.005748,0.249934,0,0);}
.m80_c01175{transform:matrix(0.286914,-0.005164,0.004499,0.249960,0,0);-ms-transform:matrix(0.286914,-0.005164,0.004499,0.249960,0,0);-webkit-transform:matrix(0.286914,-0.005164,0.004499,0.249960,0,0);}
.m8_c01175{transform:matrix(0.287850,-0.007196,0.006248,0.249922,0,0);-ms-transform:matrix(0.287850,-0.007196,0.006248,0.249922,0,0);-webkit-transform:matrix(0.287850,-0.007196,0.006248,0.249922,0,0);}
.m17_c01175{transform:matrix(0.287898,-0.005470,0.004749,0.249955,0,0);-ms-transform:matrix(0.287898,-0.005470,0.004749,0.249955,0,0);-webkit-transform:matrix(0.287898,-0.005470,0.004749,0.249955,0,0);}
.m36_c01175{transform:matrix(0.288359,-0.006632,0.005748,0.249934,0,0);-ms-transform:matrix(0.288359,-0.006632,0.005748,0.249934,0,0);-webkit-transform:matrix(0.288359,-0.006632,0.005748,0.249934,0,0);}
.m18_c01175{transform:matrix(0.289700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289700,0.000000,0.000000,0.250000,0,0);}
.md_c01175{transform:matrix(0.290693,-0.005523,0.004749,0.249955,0,0);-ms-transform:matrix(0.290693,-0.005523,0.004749,0.249955,0,0);-webkit-transform:matrix(0.290693,-0.005523,0.004749,0.249955,0,0);}
.m11_c01175{transform:matrix(0.293587,-0.005578,0.004749,0.249955,0,0);-ms-transform:matrix(0.293587,-0.005578,0.004749,0.249955,0,0);-webkit-transform:matrix(0.293587,-0.005578,0.004749,0.249955,0,0);}
.mf_c01175{transform:matrix(0.293887,-0.005584,0.004749,0.249955,0,0);-ms-transform:matrix(0.293887,-0.005584,0.004749,0.249955,0,0);-webkit-transform:matrix(0.293887,-0.005584,0.004749,0.249955,0,0);}
.m5_c01175{transform:matrix(0.294818,-0.007370,0.006248,0.249922,0,0);-ms-transform:matrix(0.294818,-0.007370,0.006248,0.249922,0,0);-webkit-transform:matrix(0.294818,-0.007370,0.006248,0.249922,0,0);}
.m82_c01175{transform:matrix(0.296617,-0.005339,0.004499,0.249960,0,0);-ms-transform:matrix(0.296617,-0.005339,0.004499,0.249960,0,0);-webkit-transform:matrix(0.296617,-0.005339,0.004499,0.249960,0,0);}
.m6b_c01175{transform:matrix(0.297241,-0.006837,0.005748,0.249934,0,0);-ms-transform:matrix(0.297241,-0.006837,0.005748,0.249934,0,0);-webkit-transform:matrix(0.297241,-0.006837,0.005748,0.249934,0,0);}
.m1_c01175{transform:matrix(0.297302,-0.007433,0.006248,0.249922,0,0);-ms-transform:matrix(0.297302,-0.007433,0.006248,0.249922,0,0);-webkit-transform:matrix(0.297302,-0.007433,0.006248,0.249922,0,0);}
.m47_c01175{transform:matrix(0.297621,-0.006845,0.005748,0.249934,0,0);-ms-transform:matrix(0.297621,-0.006845,0.005748,0.249934,0,0);-webkit-transform:matrix(0.297621,-0.006845,0.005748,0.249934,0,0);}
.m76_c01175{transform:matrix(0.300536,-0.005410,0.004499,0.249960,0,0);-ms-transform:matrix(0.300536,-0.005410,0.004499,0.249960,0,0);-webkit-transform:matrix(0.300536,-0.005410,0.004499,0.249960,0,0);}
.m1e_c01175{transform:matrix(0.303565,-0.006982,0.005748,0.249934,0,0);-ms-transform:matrix(0.303565,-0.006982,0.005748,0.249934,0,0);-webkit-transform:matrix(0.303565,-0.006982,0.005748,0.249934,0,0);}
.m3c_c01175{transform:matrix(0.306189,-0.007042,0.005748,0.249934,0,0);-ms-transform:matrix(0.306189,-0.007042,0.005748,0.249934,0,0);-webkit-transform:matrix(0.306189,-0.007042,0.005748,0.249934,0,0);}
.m27_c01175{transform:matrix(0.309333,-0.007115,0.005748,0.249934,0,0);-ms-transform:matrix(0.309333,-0.007115,0.005748,0.249934,0,0);-webkit-transform:matrix(0.309333,-0.007115,0.005748,0.249934,0,0);}
.m4a_c01175{transform:matrix(0.311318,-0.007160,0.005748,0.249934,0,0);-ms-transform:matrix(0.311318,-0.007160,0.005748,0.249934,0,0);-webkit-transform:matrix(0.311318,-0.007160,0.005748,0.249934,0,0);}
.m4d_c01175{transform:matrix(0.312717,-0.007192,0.005748,0.249934,0,0);-ms-transform:matrix(0.312717,-0.007192,0.005748,0.249934,0,0);-webkit-transform:matrix(0.312717,-0.007192,0.005748,0.249934,0,0);}
.m52_c01175{transform:matrix(0.313302,-0.007206,0.005748,0.249934,0,0);-ms-transform:matrix(0.313302,-0.007206,0.005748,0.249934,0,0);-webkit-transform:matrix(0.313302,-0.007206,0.005748,0.249934,0,0);}
.m6e_c01175{transform:matrix(0.316805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316805,0.000000,0.000000,0.250000,0,0);}
.m25_c01175{transform:matrix(0.321860,-0.007403,0.005748,0.249934,0,0);-ms-transform:matrix(0.321860,-0.007403,0.005748,0.249934,0,0);-webkit-transform:matrix(0.321860,-0.007403,0.005748,0.249934,0,0);}
.m64_c01175{transform:matrix(0.325449,-0.007485,0.005748,0.249934,0,0);-ms-transform:matrix(0.325449,-0.007485,0.005748,0.249934,0,0);-webkit-transform:matrix(0.325449,-0.007485,0.005748,0.249934,0,0);}
.m3e_c01175{transform:matrix(0.327578,-0.007534,0.005748,0.249934,0,0);-ms-transform:matrix(0.327578,-0.007534,0.005748,0.249934,0,0);-webkit-transform:matrix(0.327578,-0.007534,0.005748,0.249934,0,0);}
.mc_c01175{transform:matrix(0.331405,-0.006297,0.004749,0.249955,0,0);-ms-transform:matrix(0.331405,-0.006297,0.004749,0.249955,0,0);-webkit-transform:matrix(0.331405,-0.006297,0.004749,0.249955,0,0);}
.m7a_c01175{transform:matrix(0.334046,-0.006013,0.004499,0.249960,0,0);-ms-transform:matrix(0.334046,-0.006013,0.004499,0.249960,0,0);-webkit-transform:matrix(0.334046,-0.006013,0.004499,0.249960,0,0);}
.m5d_c01175{transform:matrix(0.334821,-0.007701,0.005748,0.249934,0,0);-ms-transform:matrix(0.334821,-0.007701,0.005748,0.249934,0,0);-webkit-transform:matrix(0.334821,-0.007701,0.005748,0.249934,0,0);}
.m61_c01175{transform:matrix(0.335146,-0.007708,0.005748,0.249934,0,0);-ms-transform:matrix(0.335146,-0.007708,0.005748,0.249934,0,0);-webkit-transform:matrix(0.335146,-0.007708,0.005748,0.249934,0,0);}
.m6f_c01175{transform:matrix(0.336960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336960,0.000000,0.000000,0.250000,0,0);}
.m39_c01175{transform:matrix(0.341460,-0.007854,0.005748,0.249934,0,0);-ms-transform:matrix(0.341460,-0.007854,0.005748,0.249934,0,0);-webkit-transform:matrix(0.341460,-0.007854,0.005748,0.249934,0,0);}
.m60_c01175{transform:matrix(0.342789,-0.007884,0.005748,0.249934,0,0);-ms-transform:matrix(0.342789,-0.007884,0.005748,0.249934,0,0);-webkit-transform:matrix(0.342789,-0.007884,0.005748,0.249934,0,0);}
.m26_c01175{transform:matrix(0.351142,-0.008076,0.005748,0.249934,0,0);-ms-transform:matrix(0.351142,-0.008076,0.005748,0.249934,0,0);-webkit-transform:matrix(0.351142,-0.008076,0.005748,0.249934,0,0);}
.m8c_c01175{transform:matrix(0.352603,-0.006347,0.004499,0.249960,0,0);-ms-transform:matrix(0.352603,-0.006347,0.004499,0.249960,0,0);-webkit-transform:matrix(0.352603,-0.006347,0.004499,0.249960,0,0);}
.m8f_c01175{transform:matrix(0.355862,-0.006406,0.004499,0.249960,0,0);-ms-transform:matrix(0.355862,-0.006406,0.004499,0.249960,0,0);-webkit-transform:matrix(0.355862,-0.006406,0.004499,0.249960,0,0);}
.m4c_c01175{transform:matrix(0.355946,-0.008187,0.005748,0.249934,0,0);-ms-transform:matrix(0.355946,-0.008187,0.005748,0.249934,0,0);-webkit-transform:matrix(0.355946,-0.008187,0.005748,0.249934,0,0);}
.m3_c01175{transform:matrix(0.366805,-0.009170,0.006248,0.249922,0,0);-ms-transform:matrix(0.366805,-0.009170,0.006248,0.249922,0,0);-webkit-transform:matrix(0.366805,-0.009170,0.006248,0.249922,0,0);}
.m32_c01175{transform:matrix(0.367538,-0.008453,0.005748,0.249934,0,0);-ms-transform:matrix(0.367538,-0.008453,0.005748,0.249934,0,0);-webkit-transform:matrix(0.367538,-0.008453,0.005748,0.249934,0,0);}
.m8e_c01175{transform:matrix(0.368630,-0.006635,0.004499,0.249960,0,0);-ms-transform:matrix(0.368630,-0.006635,0.004499,0.249960,0,0);-webkit-transform:matrix(0.368630,-0.006635,0.004499,0.249960,0,0);}
.m29_c01175{transform:matrix(0.369092,-0.008489,0.005748,0.249934,0,0);-ms-transform:matrix(0.369092,-0.008489,0.005748,0.249934,0,0);-webkit-transform:matrix(0.369092,-0.008489,0.005748,0.249934,0,0);}
.m15_c01175{transform:matrix(0.379352,-0.007208,0.004749,0.249955,0,0);-ms-transform:matrix(0.379352,-0.007208,0.004749,0.249955,0,0);-webkit-transform:matrix(0.379352,-0.007208,0.004749,0.249955,0,0);}
.m16_c01175{transform:matrix(0.383866,-0.007293,0.004749,0.249955,0,0);-ms-transform:matrix(0.383866,-0.007293,0.004749,0.249955,0,0);-webkit-transform:matrix(0.383866,-0.007293,0.004749,0.249955,0,0);}
.m77_c01175{transform:matrix(0.386347,-0.006954,0.004499,0.249960,0,0);-ms-transform:matrix(0.386347,-0.006954,0.004499,0.249960,0,0);-webkit-transform:matrix(0.386347,-0.006954,0.004499,0.249960,0,0);}
.m72_c01175{transform:matrix(0.387470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387470,0.000000,0.000000,0.250000,0,0);}
.m35_c01175{transform:matrix(0.395190,-0.009089,0.005748,0.249934,0,0);-ms-transform:matrix(0.395190,-0.009089,0.005748,0.249934,0,0);-webkit-transform:matrix(0.395190,-0.009089,0.005748,0.249934,0,0);}
.m5f_c01175{transform:matrix(0.398375,-0.009163,0.005748,0.249934,0,0);-ms-transform:matrix(0.398375,-0.009163,0.005748,0.249934,0,0);-webkit-transform:matrix(0.398375,-0.009163,0.005748,0.249934,0,0);}
.m8a_c01175{transform:matrix(0.398690,-0.007176,0.004499,0.249960,0,0);-ms-transform:matrix(0.398690,-0.007176,0.004499,0.249960,0,0);-webkit-transform:matrix(0.398690,-0.007176,0.004499,0.249960,0,0);}
.mb_c01175{transform:matrix(0.403117,-0.007659,0.004749,0.249955,0,0);-ms-transform:matrix(0.403117,-0.007659,0.004749,0.249955,0,0);-webkit-transform:matrix(0.403117,-0.007659,0.004749,0.249955,0,0);}
.m87_c01175{transform:matrix(0.423951,-0.007631,0.004499,0.249960,0,0);-ms-transform:matrix(0.423951,-0.007631,0.004499,0.249960,0,0);-webkit-transform:matrix(0.423951,-0.007631,0.004499,0.249960,0,0);}
.m85_c01175{transform:matrix(0.432500,-0.007785,0.004499,0.249960,0,0);-ms-transform:matrix(0.432500,-0.007785,0.004499,0.249960,0,0);-webkit-transform:matrix(0.432500,-0.007785,0.004499,0.249960,0,0);}
.m66_c01175{transform:matrix(0.436010,-0.010028,0.005748,0.249934,0,0);-ms-transform:matrix(0.436010,-0.010028,0.005748,0.249934,0,0);-webkit-transform:matrix(0.436010,-0.010028,0.005748,0.249934,0,0);}
.m48_c01175{transform:matrix(0.436520,-0.010040,0.005748,0.249934,0,0);-ms-transform:matrix(0.436520,-0.010040,0.005748,0.249934,0,0);-webkit-transform:matrix(0.436520,-0.010040,0.005748,0.249934,0,0);}
.m1a_c01175{transform:matrix(0.437564,-0.010064,0.005748,0.249934,0,0);-ms-transform:matrix(0.437564,-0.010064,0.005748,0.249934,0,0);-webkit-transform:matrix(0.437564,-0.010064,0.005748,0.249934,0,0);}
.ma_c01175{transform:matrix(0.440126,-0.008362,0.004749,0.249955,0,0);-ms-transform:matrix(0.440126,-0.008362,0.004749,0.249955,0,0);-webkit-transform:matrix(0.440126,-0.008362,0.004749,0.249955,0,0);}
.m84_c01175{transform:matrix(0.455686,-0.008202,0.004499,0.249960,0,0);-ms-transform:matrix(0.455686,-0.008202,0.004499,0.249960,0,0);-webkit-transform:matrix(0.455686,-0.008202,0.004499,0.249960,0,0);}
.m79_c01175{transform:matrix(0.482522,-0.008685,0.004499,0.249960,0,0);-ms-transform:matrix(0.482522,-0.008685,0.004499,0.249960,0,0);-webkit-transform:matrix(0.482522,-0.008685,0.004499,0.249960,0,0);}
.m28_c01175{transform:matrix(0.487886,-0.011221,0.005748,0.249934,0,0);-ms-transform:matrix(0.487886,-0.011221,0.005748,0.249934,0,0);-webkit-transform:matrix(0.487886,-0.011221,0.005748,0.249934,0,0);}
.m1b_c01175{transform:matrix(0.499168,-0.011481,0.005748,0.249934,0,0);-ms-transform:matrix(0.499168,-0.011481,0.005748,0.249934,0,0);-webkit-transform:matrix(0.499168,-0.011481,0.005748,0.249934,0,0);}
.m62_c01175{transform:matrix(0.519937,-0.011959,0.005748,0.249934,0,0);-ms-transform:matrix(0.519937,-0.011959,0.005748,0.249934,0,0);-webkit-transform:matrix(0.519937,-0.011959,0.005748,0.249934,0,0);}
.m70_c01175{transform:matrix(0.520655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520655,0.000000,0.000000,0.250000,0,0);}
.m7b_c01175{transform:matrix(0.573562,-0.010324,0.004499,0.249960,0,0);-ms-transform:matrix(0.573562,-0.010324,0.004499,0.249960,0,0);-webkit-transform:matrix(0.573562,-0.010324,0.004499,0.249960,0,0);}
.m73_c01175{transform:matrix(0.578725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578725,0.000000,0.000000,0.250000,0,0);}
.m90_c01175{transform:matrix(0.587690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.587690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.587690,0.000000,0.000000,0.250000,0,0);}
.m86_c01175{transform:matrix(0.597528,-0.010756,0.004499,0.249960,0,0);-ms-transform:matrix(0.597528,-0.010756,0.004499,0.249960,0,0);-webkit-transform:matrix(0.597528,-0.010756,0.004499,0.249960,0,0);}
.m78_c01175{transform:matrix(0.606002,-0.010908,0.004499,0.249960,0,0);-ms-transform:matrix(0.606002,-0.010908,0.004499,0.249960,0,0);-webkit-transform:matrix(0.606002,-0.010908,0.004499,0.249960,0,0);}
.m75_c01175{transform:matrix(0.680485,-0.012249,0.004499,0.249960,0,0);-ms-transform:matrix(0.680485,-0.012249,0.004499,0.249960,0,0);-webkit-transform:matrix(0.680485,-0.012249,0.004499,0.249960,0,0);}
.m74_c01175{transform:matrix(0.763266,-0.013739,0.004499,0.249960,0,0);-ms-transform:matrix(0.763266,-0.013739,0.004499,0.249960,0,0);-webkit-transform:matrix(0.763266,-0.013739,0.004499,0.249960,0,0);}
.m89_c01175{transform:matrix(0.982871,-0.017692,0.004499,0.249960,0,0);-ms-transform:matrix(0.982871,-0.017692,0.004499,0.249960,0,0);-webkit-transform:matrix(0.982871,-0.017692,0.004499,0.249960,0,0);}
.m88_c01175{transform:matrix(1.000458,-0.018008,0.004499,0.249960,0,0);-ms-transform:matrix(1.000458,-0.018008,0.004499,0.249960,0,0);-webkit-transform:matrix(1.000458,-0.018008,0.004499,0.249960,0,0);}
.m71_c01175{transform:matrix(1.065400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.065400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.065400,0.000000,0.000000,0.250000,0,0);}
.m0_c01175{transform:matrix(1.139714,-0.028493,0.006248,0.249922,0,0);-ms-transform:matrix(1.139714,-0.028493,0.006248,0.249922,0,0);-webkit-transform:matrix(1.139714,-0.028493,0.006248,0.249922,0,0);}
.m6d_c01175{transform:matrix(1.182685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.182685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.182685,0.000000,0.000000,0.250000,0,0);}
.m7c_c01175{transform:matrix(1.576615,-0.028379,0.004499,0.249960,0,0);-ms-transform:matrix(1.576615,-0.028379,0.004499,0.249960,0,0);-webkit-transform:matrix(1.576615,-0.028379,0.004499,0.249960,0,0);}
.v0_c01175{vertical-align:0.000000px;}
.ls0_c01175{letter-spacing:0.000000px;}
.sc__c01175{text-shadow:none;}
.sc0_c01175{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__c01175{-webkit-text-stroke:0px transparent;}
.sc0_c01175{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01175{word-spacing:0.000000px;}
.fc0_c01175{color:transparent;}
.fs2_c01175{font-size:18.000000px;}
.fs8_c01175{font-size:36.000000px;}
.fs7_c01175{font-size:48.000000px;}
.fs5_c01175{font-size:60.015868px;}
.fs4_c01175{font-size:66.017455px;}
.fsb_c01175{font-size:72.000000px;}
.fs9_c01175{font-size:72.011663px;}
.fs1_c01175{font-size:72.012995px;}
.fs3_c01175{font-size:72.019041px;}
.fsa_c01175{font-size:78.012635px;}
.fs6_c01175{font-size:78.020628px;}
.fs0_c01175{font-size:78.024371px;}
.y0_c01175{bottom:0.000000px;}
.y8b_c01175{bottom:334.926000px;}
.y7f_c01175{bottom:358.344912px;}
.y80_c01175{bottom:359.241321px;}
.y81_c01175{bottom:360.687342px;}
.y82_c01175{bottom:361.202175px;}
.y83_c01175{bottom:361.417818px;}
.y84_c01175{bottom:362.664546px;}
.y85_c01175{bottom:364.051026px;}
.y86_c01175{bottom:364.731642px;}
.y87_c01175{bottom:366.366642px;}
.y88_c01175{bottom:367.295589px;}
.y89_c01175{bottom:368.721156px;}
.y8a_c01175{bottom:369.470103px;}
.y77_c01175{bottom:393.328080px;}
.y78_c01175{bottom:396.188166px;}
.y79_c01175{bottom:399.895188px;}
.y7a_c01175{bottom:400.473489px;}
.y7b_c01175{bottom:401.436123px;}
.y7c_c01175{bottom:402.917703px;}
.y7d_c01175{bottom:403.302333px;}
.y7e_c01175{bottom:404.650554px;}
.y6f_c01175{bottom:431.634000px;}
.y70_c01175{bottom:434.735355px;}
.y71_c01175{bottom:435.728658px;}
.y72_c01175{bottom:436.525509px;}
.y73_c01175{bottom:437.511063px;}
.y74_c01175{bottom:438.532797px;}
.y75_c01175{bottom:438.913578px;}
.y76_c01175{bottom:440.186790px;}
.y6e_c01175{bottom:461.082000px;}
.y6d_c01175{bottom:545.865000px;}
.y68_c01175{bottom:580.324901px;}
.y69_c01175{bottom:580.922814px;}
.y6a_c01175{bottom:581.493195px;}
.y6b_c01175{bottom:583.224384px;}
.y6c_c01175{bottom:583.905947px;}
.y63_c01175{bottom:615.258859px;}
.y64_c01175{bottom:616.143092px;}
.y65_c01175{bottom:616.835161px;}
.y66_c01175{bottom:617.309900px;}
.y67_c01175{bottom:617.959325px;}
.y5c_c01175{bottom:649.287720px;}
.y5d_c01175{bottom:649.714944px;}
.y5e_c01175{bottom:650.291965px;}
.y5f_c01175{bottom:650.930024px;}
.y60_c01175{bottom:651.789267px;}
.y61_c01175{bottom:653.667714px;}
.y62_c01175{bottom:654.291643px;}
.y56_c01175{bottom:684.124735px;}
.y57_c01175{bottom:684.550836px;}
.y58_c01175{bottom:685.697609px;}
.y59_c01175{bottom:686.265852px;}
.y5a_c01175{bottom:686.841948px;}
.y5b_c01175{bottom:688.706337px;}
.y51_c01175{bottom:719.774199px;}
.y52_c01175{bottom:720.843208px;}
.y53_c01175{bottom:721.537396px;}
.y54_c01175{bottom:722.440786px;}
.y55_c01175{bottom:723.656901px;}
.y4b_c01175{bottom:754.610715px;}
.y4c_c01175{bottom:755.178081px;}
.y4d_c01175{bottom:756.448302px;}
.y4e_c01175{bottom:758.896043px;}
.y4f_c01175{bottom:759.663251px;}
.y50_c01175{bottom:760.204565px;}
.y45_c01175{bottom:791.339379px;}
.y46_c01175{bottom:792.331760px;}
.y47_c01175{bottom:792.811489px;}
.y48_c01175{bottom:794.312588px;}
.y49_c01175{bottom:795.127005px;}
.y4a_c01175{bottom:795.700220px;}
.y3d_c01175{bottom:823.751636px;}
.y3e_c01175{bottom:824.907316px;}
.y3f_c01175{bottom:826.221399px;}
.y40_c01175{bottom:826.855435px;}
.y41_c01175{bottom:828.859001px;}
.y42_c01175{bottom:829.544394px;}
.y43_c01175{bottom:830.426763px;}
.y44_c01175{bottom:831.975187px;}
.y33_c01175{bottom:856.160527px;}
.y34_c01175{bottom:859.466254px;}
.y35_c01175{bottom:860.066427px;}
.y36_c01175{bottom:860.731585px;}
.y37_c01175{bottom:862.531448px;}
.y38_c01175{bottom:862.816025px;}
.y39_c01175{bottom:864.021579px;}
.y3a_c01175{bottom:865.121936px;}
.y3b_c01175{bottom:865.819957px;}
.y3c_c01175{bottom:867.116289px;}
.y25_c01175{bottom:895.279282px;}
.y26_c01175{bottom:895.703348px;}
.y27_c01175{bottom:896.420292px;}
.y28_c01175{bottom:897.627221px;}
.y29_c01175{bottom:898.246665px;}
.y2a_c01175{bottom:898.789489px;}
.y2b_c01175{bottom:899.817985px;}
.y2c_c01175{bottom:900.533498px;}
.y2d_c01175{bottom:900.950487px;}
.y2e_c01175{bottom:901.099878px;}
.y2f_c01175{bottom:901.961967px;}
.y30_c01175{bottom:902.010319px;}
.y31_c01175{bottom:902.259644px;}
.y32_c01175{bottom:903.536772px;}
.y1a_c01175{bottom:923.293500px;}
.y1b_c01175{bottom:924.178874px;}
.y1c_c01175{bottom:925.504812px;}
.y1d_c01175{bottom:927.260483px;}
.y1e_c01175{bottom:928.045668px;}
.y1f_c01175{bottom:929.037233px;}
.y20_c01175{bottom:931.780327px;}
.y21_c01175{bottom:932.880050px;}
.y22_c01175{bottom:934.418853px;}
.y23_c01175{bottom:935.476416px;}
.y24_c01175{bottom:936.785036px;}
.y19_c01175{bottom:943.357500px;}
.yb_c01175{bottom:961.465500px;}
.yc_c01175{bottom:962.204961px;}
.yd_c01175{bottom:963.031518px;}
.ye_c01175{bottom:963.758382px;}
.yf_c01175{bottom:965.121053px;}
.y10_c01175{bottom:965.792911px;}
.y11_c01175{bottom:967.108357px;}
.y12_c01175{bottom:968.281303px;}
.y13_c01175{bottom:968.913405px;}
.y14_c01175{bottom:969.790863px;}
.y15_c01175{bottom:970.638624px;}
.y16_c01175{bottom:971.443891px;}
.y17_c01175{bottom:972.042477px;}
.y18_c01175{bottom:973.719673px;}
.y1_c01175{bottom:990.279000px;}
.y2_c01175{bottom:992.967713px;}
.y3_c01175{bottom:994.121588px;}
.y4_c01175{bottom:995.587050px;}
.y5_c01175{bottom:998.288400px;}
.y6_c01175{bottom:999.475875px;}
.y7_c01175{bottom:1001.579850px;}
.y8_c01175{bottom:1002.024713px;}
.y9_c01175{bottom:1002.493013px;}
.ya_c01175{bottom:1004.792025px;}
.h4_c01175{height:18.000000px;}
.ha_c01175{height:36.000000px;}
.h9_c01175{height:48.000000px;}
.h7_c01175{height:60.015868px;}
.h6_c01175{height:66.017455px;}
.hd_c01175{height:72.000000px;}
.hb_c01175{height:72.011663px;}
.h3_c01175{height:72.012995px;}
.h5_c01175{height:72.019041px;}
.hc_c01175{height:78.012635px;}
.h8_c01175{height:78.020628px;}
.h2_c01175{height:78.024371px;}
.h1_c01175{height:1258.500000px;}
.h0_c01175{height:1258.740000px;}
.w0_c01175{width:904.200000px;}
.w1_c01175{width:904.500000px;}
.x0_c01175{left:0.000000px;}
.x1_c01175{left:30.984000px;}
.x1b_c01175{left:45.337500px;}
.xb_c01175{left:48.643500px;}
.x26_c01175{left:82.223740px;}
.x1c_c01175{left:83.832000px;}
.xc_c01175{left:87.562500px;}
.xd_c01175{left:131.065500px;}
.x27_c01175{left:137.407936px;}
.x2_c01175{left:138.532500px;}
.x1d_c01175{left:141.481500px;}
.x6b_c01175{left:161.250063px;}
.xe_c01175{left:169.321500px;}
.x3_c01175{left:184.687500px;}
.x71_c01175{left:185.995941px;}
.x65_c01175{left:191.260500px;}
.x1e_c01175{left:217.815000px;}
.x28_c01175{left:230.208757px;}
.xf_c01175{left:241.041000px;}
.x4_c01175{left:243.306000px;}
.x31_c01175{left:247.553166px;}
.x1f_c01175{left:251.953500px;}
.x72_c01175{left:258.327849px;}
.x10_c01175{left:276.402000px;}
.x29_c01175{left:277.891228px;}
.x73_c01175{left:284.095431px;}
.x38_c01175{left:287.542311px;}
.x20_c01175{left:295.065000px;}
.x6c_c01175{left:297.469719px;}
.x19_c01175{left:308.880000px;}
.x32_c01175{left:310.854547px;}
.x2a_c01175{left:319.632319px;}
.x11_c01175{left:345.636000px;}
.x4b_c01175{left:347.483724px;}
.x5_c01175{left:351.360000px;}
.x74_c01175{left:357.252312px;}
.x43_c01175{left:359.086038px;}
.x66_c01175{left:363.558000px;}
.x3f_c01175{left:368.014446px;}
.x4c_c01175{left:380.234745px;}
.x44_c01175{left:392.432626px;}
.x51_c01175{left:393.460361px;}
.x6_c01175{left:398.859000px;}
.x33_c01175{left:400.854757px;}
.x12_c01175{left:407.370000px;}
.x64_c01175{left:408.510000px;}
.x39_c01175{left:410.975298px;}
.x21_c01175{left:414.330000px;}
.x52_c01175{left:415.950431px;}
.x67_c01175{left:418.741500px;}
.x75_c01175{left:426.609828px;}
.x1a_c01175{left:432.540000px;}
.x40_c01175{left:434.130090px;}
.x13_c01175{left:440.638500px;}
.x3a_c01175{left:442.652972px;}
.x53_c01175{left:446.323725px;}
.x2b_c01175{left:453.859197px;}
.x76_c01175{left:460.670613px;}
.x22_c01175{left:462.144000px;}
.x41_c01175{left:466.145989px;}
.x45_c01175{left:467.169942px;}
.x4d_c01175{left:468.462531px;}
.x6d_c01175{left:473.989188px;}
.x34_c01175{left:475.300364px;}
.x48_c01175{left:477.699536px;}
.x54_c01175{left:479.872796px;}
.x7_c01175{left:483.018000px;}
.x14_c01175{left:486.820500px;}
.x57_c01175{left:490.430381px;}
.x2c_c01175{left:497.472736px;}
.x8_c01175{left:500.812500px;}
.x5b_c01175{left:509.810683px;}
.x4e_c01175{left:512.157071px;}
.x68_c01175{left:517.764000px;}
.x9_c01175{left:519.544500px;}
.x55_c01175{left:525.061436px;}
.x23_c01175{left:529.048500px;}
.x35_c01175{left:530.319659px;}
.x15_c01175{left:531.439500px;}
.x49_c01175{left:534.138609px;}
.x5c_c01175{left:538.286495px;}
.x3b_c01175{left:542.814872px;}
.x6e_c01175{left:547.342719px;}
.x4f_c01175{left:556.519283px;}
.x2d_c01175{left:563.730951px;}
.x36_c01175{left:565.236074px;}
.x2e_c01175{left:567.399279px;}
.x58_c01175{left:569.209797px;}
.x16_c01175{left:573.822000px;}
.x24_c01175{left:575.029500px;}
.x3c_c01175{left:577.051718px;}
.x2f_c01175{left:586.591695px;}
.x77_c01175{left:588.857496px;}
.x59_c01175{left:592.917418px;}
.x69_c01175{left:595.681500px;}
.x5f_c01175{left:603.450000px;}
.x17_c01175{left:605.326500px;}
.x4a_c01175{left:610.112322px;}
.xa_c01175{left:611.505000px;}
.x60_c01175{left:616.140000px;}
.x6f_c01175{left:617.898912px;}
.x3d_c01175{left:621.157754px;}
.x56_c01175{left:623.959543px;}
.x5a_c01175{left:625.394661px;}
.x37_c01175{left:630.081059px;}
.x25_c01175{left:631.926000px;}
.x70_c01175{left:636.182913px;}
.x61_c01175{left:642.060000px;}
.x5d_c01175{left:647.881531px;}
.x46_c01175{left:656.215489px;}
.x42_c01175{left:658.691386px;}
.x78_c01175{left:660.136431px;}
.x6a_c01175{left:666.415500px;}
.x62_c01175{left:679.050000px;}
.x5e_c01175{left:680.320515px;}
.x30_c01175{left:684.793758px;}
.x47_c01175{left:688.037871px;}
.x7a_c01175{left:691.740000px;}
.x18_c01175{left:693.600000px;}
.x79_c01175{left:697.576581px;}
.x3e_c01175{left:698.594601px;}
.x50_c01175{left:699.895230px;}
.x63_c01175{left:726.840000px;}
@media print{
.v0_c01175{vertical-align:0.000000pt;}
.ls0_c01175{letter-spacing:0.000000pt;}
.ws0_c01175{word-spacing:0.000000pt;}
.fs2_c01175{font-size:16.000000pt;}
.fs8_c01175{font-size:32.000000pt;}
.fs7_c01175{font-size:42.666667pt;}
.fs5_c01175{font-size:53.347438pt;}
.fs4_c01175{font-size:58.682182pt;}
.fsb_c01175{font-size:64.000000pt;}
.fs9_c01175{font-size:64.010367pt;}
.fs1_c01175{font-size:64.011551pt;}
.fs3_c01175{font-size:64.016926pt;}
.fsa_c01175{font-size:69.344564pt;}
.fs6_c01175{font-size:69.351670pt;}
.fs0_c01175{font-size:69.354997pt;}
.y0_c01175{bottom:0.000000pt;}
.y8b_c01175{bottom:297.712000pt;}
.y7f_c01175{bottom:318.528811pt;}
.y80_c01175{bottom:319.325619pt;}
.y81_c01175{bottom:320.610971pt;}
.y82_c01175{bottom:321.068600pt;}
.y83_c01175{bottom:321.260283pt;}
.y84_c01175{bottom:322.368485pt;}
.y85_c01175{bottom:323.600912pt;}
.y86_c01175{bottom:324.205904pt;}
.y87_c01175{bottom:325.659237pt;}
.y88_c01175{bottom:326.484968pt;}
.y89_c01175{bottom:327.752139pt;}
.y8a_c01175{bottom:328.417869pt;}
.y77_c01175{bottom:349.624960pt;}
.y78_c01175{bottom:352.167259pt;}
.y79_c01175{bottom:355.462389pt;}
.y7a_c01175{bottom:355.976435pt;}
.y7b_c01175{bottom:356.832109pt;}
.y7c_c01175{bottom:358.149069pt;}
.y7d_c01175{bottom:358.490963pt;}
.y7e_c01175{bottom:359.689381pt;}
.y6f_c01175{bottom:383.674667pt;}
.y70_c01175{bottom:386.431427pt;}
.y71_c01175{bottom:387.314363pt;}
.y72_c01175{bottom:388.022675pt;}
.y73_c01175{bottom:388.898723pt;}
.y74_c01175{bottom:389.806931pt;}
.y75_c01175{bottom:390.145403pt;}
.y76_c01175{bottom:391.277147pt;}
.y6e_c01175{bottom:409.850667pt;}
.y6d_c01175{bottom:485.213333pt;}
.y68_c01175{bottom:515.844356pt;}
.y69_c01175{bottom:516.375835pt;}
.y6a_c01175{bottom:516.882840pt;}
.y6b_c01175{bottom:518.421675pt;}
.y6c_c01175{bottom:519.027508pt;}
.y63_c01175{bottom:546.896764pt;}
.y64_c01175{bottom:547.682748pt;}
.y65_c01175{bottom:548.297921pt;}
.y66_c01175{bottom:548.719911pt;}
.y67_c01175{bottom:549.297177pt;}
.y5c_c01175{bottom:577.144640pt;}
.y5d_c01175{bottom:577.524395pt;}
.y5e_c01175{bottom:578.037303pt;}
.y5f_c01175{bottom:578.604465pt;}
.y60_c01175{bottom:579.368237pt;}
.y61_c01175{bottom:581.037968pt;}
.y62_c01175{bottom:581.592572pt;}
.y56_c01175{bottom:608.110876pt;}
.y57_c01175{bottom:608.489632pt;}
.y58_c01175{bottom:609.508985pt;}
.y59_c01175{bottom:610.014091pt;}
.y5a_c01175{bottom:610.526176pt;}
.y5b_c01175{bottom:612.183411pt;}
.y51_c01175{bottom:639.799288pt;}
.y52_c01175{bottom:640.749519pt;}
.y53_c01175{bottom:641.366575pt;}
.y54_c01175{bottom:642.169588pt;}
.y55_c01175{bottom:643.250579pt;}
.y4b_c01175{bottom:670.765080pt;}
.y4c_c01175{bottom:671.269405pt;}
.y4d_c01175{bottom:672.398491pt;}
.y4e_c01175{bottom:674.574260pt;}
.y4f_c01175{bottom:675.256223pt;}
.y50_c01175{bottom:675.737391pt;}
.y45_c01175{bottom:703.412781pt;}
.y46_c01175{bottom:704.294897pt;}
.y47_c01175{bottom:704.721324pt;}
.y48_c01175{bottom:706.055633pt;}
.y49_c01175{bottom:706.779560pt;}
.y4a_c01175{bottom:707.289084pt;}
.y3d_c01175{bottom:732.223676pt;}
.y3e_c01175{bottom:733.250948pt;}
.y3f_c01175{bottom:734.419021pt;}
.y40_c01175{bottom:734.982609pt;}
.y41_c01175{bottom:736.763556pt;}
.y42_c01175{bottom:737.372795pt;}
.y43_c01175{bottom:738.157123pt;}
.y44_c01175{bottom:739.533500pt;}
.y33_c01175{bottom:761.031580pt;}
.y34_c01175{bottom:763.970004pt;}
.y35_c01175{bottom:764.503491pt;}
.y36_c01175{bottom:765.094743pt;}
.y37_c01175{bottom:766.694620pt;}
.y38_c01175{bottom:766.947577pt;}
.y39_c01175{bottom:768.019181pt;}
.y3a_c01175{bottom:768.997276pt;}
.y3b_c01175{bottom:769.617740pt;}
.y3c_c01175{bottom:770.770035pt;}
.y25_c01175{bottom:795.803807pt;}
.y26_c01175{bottom:796.180753pt;}
.y27_c01175{bottom:796.818037pt;}
.y28_c01175{bottom:797.890863pt;}
.y29_c01175{bottom:798.441480pt;}
.y2a_c01175{bottom:798.923991pt;}
.y2b_c01175{bottom:799.838209pt;}
.y2c_c01175{bottom:800.474220pt;}
.y2d_c01175{bottom:800.844877pt;}
.y2e_c01175{bottom:800.977669pt;}
.y2f_c01175{bottom:801.743971pt;}
.y30_c01175{bottom:801.786951pt;}
.y31_c01175{bottom:802.008572pt;}
.y32_c01175{bottom:803.143797pt;}
.y1a_c01175{bottom:820.705333pt;}
.y1b_c01175{bottom:821.492332pt;}
.y1c_c01175{bottom:822.670944pt;}
.y1d_c01175{bottom:824.231540pt;}
.y1e_c01175{bottom:824.929483pt;}
.y1f_c01175{bottom:825.810873pt;}
.y20_c01175{bottom:828.249180pt;}
.y21_c01175{bottom:829.226711pt;}
.y22_c01175{bottom:830.594536pt;}
.y23_c01175{bottom:831.534592pt;}
.y24_c01175{bottom:832.697809pt;}
.y19_c01175{bottom:838.540000pt;}
.yb_c01175{bottom:854.636000pt;}
.yc_c01175{bottom:855.293299pt;}
.yd_c01175{bottom:856.028016pt;}
.ye_c01175{bottom:856.674117pt;}
.yf_c01175{bottom:857.885380pt;}
.y10_c01175{bottom:858.482588pt;}
.y11_c01175{bottom:859.651873pt;}
.y12_c01175{bottom:860.694492pt;}
.y13_c01175{bottom:861.256360pt;}
.y14_c01175{bottom:862.036323pt;}
.y15_c01175{bottom:862.789888pt;}
.y16_c01175{bottom:863.505681pt;}
.y17_c01175{bottom:864.037757pt;}
.y18_c01175{bottom:865.528599pt;}
.y1_c01175{bottom:880.248000pt;}
.y2_c01175{bottom:882.637967pt;}
.y3_c01175{bottom:883.663633pt;}
.y4_c01175{bottom:884.966267pt;}
.y5_c01175{bottom:887.367467pt;}
.y6_c01175{bottom:888.423000pt;}
.y7_c01175{bottom:890.293200pt;}
.y8_c01175{bottom:890.688633pt;}
.y9_c01175{bottom:891.104900pt;}
.ya_c01175{bottom:893.148467pt;}
.h4_c01175{height:16.000000pt;}
.ha_c01175{height:32.000000pt;}
.h9_c01175{height:42.666667pt;}
.h7_c01175{height:53.347438pt;}
.h6_c01175{height:58.682182pt;}
.hd_c01175{height:64.000000pt;}
.hb_c01175{height:64.010367pt;}
.h3_c01175{height:64.011551pt;}
.h5_c01175{height:64.016926pt;}
.hc_c01175{height:69.344564pt;}
.h8_c01175{height:69.351670pt;}
.h2_c01175{height:69.354997pt;}
.h1_c01175{height:1118.666667pt;}
.h0_c01175{height:1118.880000pt;}
.w0_c01175{width:803.733333pt;}
.w1_c01175{width:804.000000pt;}
.x0_c01175{left:0.000000pt;}
.x1_c01175{left:27.541333pt;}
.x1b_c01175{left:40.300000pt;}
.xb_c01175{left:43.238667pt;}
.x26_c01175{left:73.087769pt;}
.x1c_c01175{left:74.517333pt;}
.xc_c01175{left:77.833333pt;}
.xd_c01175{left:116.502667pt;}
.x27_c01175{left:122.140388pt;}
.x2_c01175{left:123.140000pt;}
.x1d_c01175{left:125.761333pt;}
.x6b_c01175{left:143.333389pt;}
.xe_c01175{left:150.508000pt;}
.x3_c01175{left:164.166667pt;}
.x71_c01175{left:165.329725pt;}
.x65_c01175{left:170.009333pt;}
.x1e_c01175{left:193.613333pt;}
.x28_c01175{left:204.630007pt;}
.xf_c01175{left:214.258667pt;}
.x4_c01175{left:216.272000pt;}
.x31_c01175{left:220.047259pt;}
.x1f_c01175{left:223.958667pt;}
.x72_c01175{left:229.624755pt;}
.x10_c01175{left:245.690667pt;}
.x29_c01175{left:247.014425pt;}
.x73_c01175{left:252.529272pt;}
.x38_c01175{left:255.593165pt;}
.x20_c01175{left:262.280000pt;}
.x6c_c01175{left:264.417528pt;}
.x19_c01175{left:274.560000pt;}
.x32_c01175{left:276.315153pt;}
.x2a_c01175{left:284.117617pt;}
.x11_c01175{left:307.232000pt;}
.x4b_c01175{left:308.874421pt;}
.x5_c01175{left:312.320000pt;}
.x74_c01175{left:317.557611pt;}
.x43_c01175{left:319.187589pt;}
.x66_c01175{left:323.162667pt;}
.x3f_c01175{left:327.123952pt;}
.x4c_c01175{left:337.986440pt;}
.x44_c01175{left:348.829001pt;}
.x51_c01175{left:349.742543pt;}
.x6_c01175{left:354.541333pt;}
.x33_c01175{left:356.315340pt;}
.x12_c01175{left:362.106667pt;}
.x64_c01175{left:363.120000pt;}
.x39_c01175{left:365.311376pt;}
.x21_c01175{left:368.293333pt;}
.x52_c01175{left:369.733716pt;}
.x67_c01175{left:372.214667pt;}
.x75_c01175{left:379.208736pt;}
.x1a_c01175{left:384.480000pt;}
.x40_c01175{left:385.893413pt;}
.x13_c01175{left:391.678667pt;}
.x3a_c01175{left:393.469308pt;}
.x53_c01175{left:396.732200pt;}
.x2b_c01175{left:403.430397pt;}
.x76_c01175{left:409.484989pt;}
.x22_c01175{left:410.794667pt;}
.x41_c01175{left:414.351991pt;}
.x45_c01175{left:415.262171pt;}
.x4d_c01175{left:416.411139pt;}
.x6d_c01175{left:421.323723pt;}
.x34_c01175{left:422.489212pt;}
.x48_c01175{left:424.621809pt;}
.x54_c01175{left:426.553596pt;}
.x7_c01175{left:429.349333pt;}
.x14_c01175{left:432.729333pt;}
.x57_c01175{left:435.938116pt;}
.x2c_c01175{left:442.197988pt;}
.x8_c01175{left:445.166667pt;}
.x5b_c01175{left:453.165052pt;}
.x4e_c01175{left:455.250729pt;}
.x68_c01175{left:460.234667pt;}
.x9_c01175{left:461.817333pt;}
.x55_c01175{left:466.721276pt;}
.x23_c01175{left:470.265333pt;}
.x35_c01175{left:471.395252pt;}
.x15_c01175{left:472.390667pt;}
.x49_c01175{left:474.789875pt;}
.x5c_c01175{left:478.476884pt;}
.x3b_c01175{left:482.502108pt;}
.x6e_c01175{left:486.526861pt;}
.x4f_c01175{left:494.683807pt;}
.x2d_c01175{left:501.094179pt;}
.x36_c01175{left:502.432065pt;}
.x2e_c01175{left:504.354915pt;}
.x58_c01175{left:505.964264pt;}
.x16_c01175{left:510.064000pt;}
.x24_c01175{left:511.137333pt;}
.x3c_c01175{left:512.934860pt;}
.x2f_c01175{left:521.414840pt;}
.x77_c01175{left:523.428885pt;}
.x59_c01175{left:527.037705pt;}
.x69_c01175{left:529.494667pt;}
.x5f_c01175{left:536.400000pt;}
.x17_c01175{left:538.068000pt;}
.x4a_c01175{left:542.322064pt;}
.xa_c01175{left:543.560000pt;}
.x60_c01175{left:547.680000pt;}
.x6f_c01175{left:549.243477pt;}
.x3d_c01175{left:552.140225pt;}
.x56_c01175{left:554.630705pt;}
.x5a_c01175{left:555.906365pt;}
.x37_c01175{left:560.072052pt;}
.x25_c01175{left:561.712000pt;}
.x70_c01175{left:565.495923pt;}
.x61_c01175{left:570.720000pt;}
.x5d_c01175{left:575.894695pt;}
.x46_c01175{left:583.302657pt;}
.x42_c01175{left:585.503455pt;}
.x78_c01175{left:586.787939pt;}
.x6a_c01175{left:592.369333pt;}
.x62_c01175{left:603.600000pt;}
.x5e_c01175{left:604.729347pt;}
.x30_c01175{left:608.705563pt;}
.x47_c01175{left:611.589219pt;}
.x7a_c01175{left:614.880000pt;}
.x18_c01175{left:616.533333pt;}
.x79_c01175{left:620.068072pt;}
.x3e_c01175{left:620.972979pt;}
.x50_c01175{left:622.129093pt;}
.x63_c01175{left:646.080000pt;}
}





/* 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_c01176 {
    display:none;
  }
  .loading-indicator_c01176.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01176 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_c01176 { 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_c01176" -> "#page-container .classname_c01176")
 */
.pf_c01176 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01176 { /* 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_c01176.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01176 { /* 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_c01176 { /* 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_c01176 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01176 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01176 {overflow:visible;}
  }
}
.c_c01176 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01176 { /* 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_c01176:after { /* webkit #35443 */
  content: '';
}
.t_c01176:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01176 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 */
}
.__c01176 { /* 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_c01176 { /* info for Javascript */
  display:none;
}
.l_c01176 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01176 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01176 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01176: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_c01176 {
    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_c01176.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01176.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_c01176 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01176{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01176;src:url('chunks/assets/font_fabf4b590f7fb32aea93ffb2.woff2')format("woff");}.ff1_c01176{font-family:ff1_c01176;line-height:1.000000;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;}
.m110_c01176{transform:matrix(0.024183,0.000290,-0.003000,0.249982,0,0);-ms-transform:matrix(0.024183,0.000290,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.024183,0.000290,-0.003000,0.249982,0,0);}
.mb0_c01176{transform:matrix(0.026514,0.000212,-0.002000,0.249992,0,0);-ms-transform:matrix(0.026514,0.000212,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.026514,0.000212,-0.002000,0.249992,0,0);}
.m140_c01176{transform:matrix(0.097564,0.001463,-0.003750,0.249972,0,0);-ms-transform:matrix(0.097564,0.001463,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.097564,0.001463,-0.003750,0.249972,0,0);}
.m126_c01176{transform:matrix(0.098389,0.001771,-0.004499,0.249960,0,0);-ms-transform:matrix(0.098389,0.001771,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.098389,0.001771,-0.004499,0.249960,0,0);}
.m12f_c01176{transform:matrix(0.103703,0.001867,-0.004499,0.249960,0,0);-ms-transform:matrix(0.103703,0.001867,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.103703,0.001867,-0.004499,0.249960,0,0);}
.m138_c01176{transform:matrix(0.138909,0.002084,-0.003750,0.249972,0,0);-ms-transform:matrix(0.138909,0.002084,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.138909,0.002084,-0.003750,0.249972,0,0);}
.m0_c01176{transform:matrix(0.144465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144465,0.000000,0.000000,0.250000,0,0);}
.m2_c01176{transform:matrix(0.146380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146380,0.000000,0.000000,0.250000,0,0);}
.m141_c01176{transform:matrix(0.148653,0.002230,-0.003750,0.249972,0,0);-ms-transform:matrix(0.148653,0.002230,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.148653,0.002230,-0.003750,0.249972,0,0);}
.m13b_c01176{transform:matrix(0.158477,0.002377,-0.003750,0.249972,0,0);-ms-transform:matrix(0.158477,0.002377,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.158477,0.002377,-0.003750,0.249972,0,0);}
.m139_c01176{transform:matrix(0.158532,0.002378,-0.003750,0.249972,0,0);-ms-transform:matrix(0.158532,0.002378,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.158532,0.002378,-0.003750,0.249972,0,0);}
.m13d_c01176{transform:matrix(0.174885,0.002623,-0.003750,0.249972,0,0);-ms-transform:matrix(0.174885,0.002623,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.174885,0.002623,-0.003750,0.249972,0,0);}
.m13a_c01176{transform:matrix(0.177400,0.002661,-0.003750,0.249972,0,0);-ms-transform:matrix(0.177400,0.002661,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.177400,0.002661,-0.003750,0.249972,0,0);}
.m13c_c01176{transform:matrix(0.178575,0.002679,-0.003750,0.249972,0,0);-ms-transform:matrix(0.178575,0.002679,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.178575,0.002679,-0.003750,0.249972,0,0);}
.m5_c01176{transform:matrix(0.180463,0.001624,-0.002250,0.249990,0,0);-ms-transform:matrix(0.180463,0.001624,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.180463,0.001624,-0.002250,0.249990,0,0);}
.m13e_c01176{transform:matrix(0.182269,0.002734,-0.003750,0.249972,0,0);-ms-transform:matrix(0.182269,0.002734,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.182269,0.002734,-0.003750,0.249972,0,0);}
.m14b_c01176{transform:matrix(0.185809,0.002787,-0.003750,0.249972,0,0);-ms-transform:matrix(0.185809,0.002787,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.185809,0.002787,-0.003750,0.249972,0,0);}
.m13f_c01176{transform:matrix(0.187289,0.002809,-0.003750,0.249972,0,0);-ms-transform:matrix(0.187289,0.002809,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.187289,0.002809,-0.003750,0.249972,0,0);}
.m148_c01176{transform:matrix(0.190809,0.002862,-0.003750,0.249972,0,0);-ms-transform:matrix(0.190809,0.002862,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.190809,0.002862,-0.003750,0.249972,0,0);}
.m161_c01176{transform:matrix(0.191463,0.002872,-0.003750,0.249972,0,0);-ms-transform:matrix(0.191463,0.002872,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.191463,0.002872,-0.003750,0.249972,0,0);}
.m86_c01176{transform:matrix(0.192119,0.001537,-0.002000,0.249992,0,0);-ms-transform:matrix(0.192119,0.001537,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.192119,0.001537,-0.002000,0.249992,0,0);}
.m4_c01176{transform:matrix(0.192637,0.001734,-0.002250,0.249990,0,0);-ms-transform:matrix(0.192637,0.001734,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.192637,0.001734,-0.002250,0.249990,0,0);}
.m145_c01176{transform:matrix(0.194423,0.002916,-0.003750,0.249972,0,0);-ms-transform:matrix(0.194423,0.002916,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.194423,0.002916,-0.003750,0.249972,0,0);}
.m72_c01176{transform:matrix(0.194934,0.001559,-0.002000,0.249992,0,0);-ms-transform:matrix(0.194934,0.001559,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.194934,0.001559,-0.002000,0.249992,0,0);}
.m6d_c01176{transform:matrix(0.194994,0.001560,-0.002000,0.249992,0,0);-ms-transform:matrix(0.194994,0.001560,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.194994,0.001560,-0.002000,0.249992,0,0);}
.m8_c01176{transform:matrix(0.196727,0.001771,-0.002250,0.249990,0,0);-ms-transform:matrix(0.196727,0.001771,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.196727,0.001771,-0.002250,0.249990,0,0);}
.m3_c01176{transform:matrix(0.201367,0.001812,-0.002250,0.249990,0,0);-ms-transform:matrix(0.201367,0.001812,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.201367,0.001812,-0.002250,0.249990,0,0);}
.m75_c01176{transform:matrix(0.202069,0.001617,-0.002000,0.249992,0,0);-ms-transform:matrix(0.202069,0.001617,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.202069,0.001617,-0.002000,0.249992,0,0);}
.m10d_c01176{transform:matrix(0.204450,0.002453,-0.003000,0.249982,0,0);-ms-transform:matrix(0.204450,0.002453,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.204450,0.002453,-0.003000,0.249982,0,0);}
.m13_c01176{transform:matrix(0.204602,0.001023,-0.001250,0.249997,0,0);-ms-transform:matrix(0.204602,0.001023,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.204602,0.001023,-0.001250,0.249997,0,0);}
.md8_c01176{transform:matrix(0.204695,0.002456,-0.003000,0.249982,0,0);-ms-transform:matrix(0.204695,0.002456,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.204695,0.002456,-0.003000,0.249982,0,0);}
.m15a_c01176{transform:matrix(0.206382,0.003096,-0.003750,0.249972,0,0);-ms-transform:matrix(0.206382,0.003096,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.206382,0.003096,-0.003750,0.249972,0,0);}
.mb_c01176{transform:matrix(0.206912,0.001862,-0.002250,0.249990,0,0);-ms-transform:matrix(0.206912,0.001862,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.206912,0.001862,-0.002250,0.249990,0,0);}
.m8e_c01176{transform:matrix(0.207093,0.001657,-0.002000,0.249992,0,0);-ms-transform:matrix(0.207093,0.001657,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.207093,0.001657,-0.002000,0.249992,0,0);}
.mf0_c01176{transform:matrix(0.207445,0.002489,-0.003000,0.249982,0,0);-ms-transform:matrix(0.207445,0.002489,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.207445,0.002489,-0.003000,0.249982,0,0);}
.m77_c01176{transform:matrix(0.208068,0.001665,-0.002000,0.249992,0,0);-ms-transform:matrix(0.208068,0.001665,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.208068,0.001665,-0.002000,0.249992,0,0);}
.ma7_c01176{transform:matrix(0.208468,0.001668,-0.002000,0.249992,0,0);-ms-transform:matrix(0.208468,0.001668,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.208468,0.001668,-0.002000,0.249992,0,0);}
.m10b_c01176{transform:matrix(0.209490,0.002514,-0.003000,0.249982,0,0);-ms-transform:matrix(0.209490,0.002514,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.209490,0.002514,-0.003000,0.249982,0,0);}
.mb5_c01176{transform:matrix(0.209530,0.002514,-0.003000,0.249982,0,0);-ms-transform:matrix(0.209530,0.002514,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.209530,0.002514,-0.003000,0.249982,0,0);}
.m10c_c01176{transform:matrix(0.210195,0.002522,-0.003000,0.249982,0,0);-ms-transform:matrix(0.210195,0.002522,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.210195,0.002522,-0.003000,0.249982,0,0);}
.m14a_c01176{transform:matrix(0.210361,0.003155,-0.003750,0.249972,0,0);-ms-transform:matrix(0.210361,0.003155,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.210361,0.003155,-0.003750,0.249972,0,0);}
.ma3_c01176{transform:matrix(0.210538,0.001684,-0.002000,0.249992,0,0);-ms-transform:matrix(0.210538,0.001684,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.210538,0.001684,-0.002000,0.249992,0,0);}
.m10e_c01176{transform:matrix(0.211475,0.002538,-0.003000,0.249982,0,0);-ms-transform:matrix(0.211475,0.002538,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.211475,0.002538,-0.003000,0.249982,0,0);}
.m158_c01176{transform:matrix(0.211541,0.003173,-0.003750,0.249972,0,0);-ms-transform:matrix(0.211541,0.003173,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.211541,0.003173,-0.003750,0.249972,0,0);}
.m104_c01176{transform:matrix(0.211550,0.002539,-0.003000,0.249982,0,0);-ms-transform:matrix(0.211550,0.002539,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.211550,0.002539,-0.003000,0.249982,0,0);}
.m6f_c01176{transform:matrix(0.211693,0.001694,-0.002000,0.249992,0,0);-ms-transform:matrix(0.211693,0.001694,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.211693,0.001694,-0.002000,0.249992,0,0);}
.mde_c01176{transform:matrix(0.212485,0.002550,-0.003000,0.249982,0,0);-ms-transform:matrix(0.212485,0.002550,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.212485,0.002550,-0.003000,0.249982,0,0);}
.m9f_c01176{transform:matrix(0.213518,0.001708,-0.002000,0.249992,0,0);-ms-transform:matrix(0.213518,0.001708,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.213518,0.001708,-0.002000,0.249992,0,0);}
.ma1_c01176{transform:matrix(0.213713,0.001710,-0.002000,0.249992,0,0);-ms-transform:matrix(0.213713,0.001710,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.213713,0.001710,-0.002000,0.249992,0,0);}
.m154_c01176{transform:matrix(0.214116,0.003212,-0.003750,0.249972,0,0);-ms-transform:matrix(0.214116,0.003212,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.214116,0.003212,-0.003750,0.249972,0,0);}
.m70_c01176{transform:matrix(0.215243,0.001722,-0.002000,0.249992,0,0);-ms-transform:matrix(0.215243,0.001722,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.215243,0.001722,-0.002000,0.249992,0,0);}
.mb3_c01176{transform:matrix(0.215739,0.002589,-0.003000,0.249982,0,0);-ms-transform:matrix(0.215739,0.002589,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.215739,0.002589,-0.003000,0.249982,0,0);}
.m76_c01176{transform:matrix(0.215783,0.001726,-0.002000,0.249992,0,0);-ms-transform:matrix(0.215783,0.001726,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.215783,0.001726,-0.002000,0.249992,0,0);}
.m14c_c01176{transform:matrix(0.216561,0.003248,-0.003750,0.249972,0,0);-ms-transform:matrix(0.216561,0.003248,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.216561,0.003248,-0.003750,0.249972,0,0);}
.m108_c01176{transform:matrix(0.216979,0.002604,-0.003000,0.249982,0,0);-ms-transform:matrix(0.216979,0.002604,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.216979,0.002604,-0.003000,0.249982,0,0);}
.m6e_c01176{transform:matrix(0.218793,0.001750,-0.002000,0.249992,0,0);-ms-transform:matrix(0.218793,0.001750,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.218793,0.001750,-0.002000,0.249992,0,0);}
.m78_c01176{transform:matrix(0.219058,0.001752,-0.002000,0.249992,0,0);-ms-transform:matrix(0.219058,0.001752,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.219058,0.001752,-0.002000,0.249992,0,0);}
.m1_c01176{transform:matrix(0.219215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219215,0.000000,0.000000,0.250000,0,0);}
.mab_c01176{transform:matrix(0.220623,0.001765,-0.002000,0.249992,0,0);-ms-transform:matrix(0.220623,0.001765,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.220623,0.001765,-0.002000,0.249992,0,0);}
.m6a_c01176{transform:matrix(0.221673,0.001773,-0.002000,0.249992,0,0);-ms-transform:matrix(0.221673,0.001773,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.221673,0.001773,-0.002000,0.249992,0,0);}
.med_c01176{transform:matrix(0.221794,0.002662,-0.003000,0.249982,0,0);-ms-transform:matrix(0.221794,0.002662,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.221794,0.002662,-0.003000,0.249982,0,0);}
.ma8_c01176{transform:matrix(0.222118,0.001777,-0.002000,0.249992,0,0);-ms-transform:matrix(0.222118,0.001777,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.222118,0.001777,-0.002000,0.249992,0,0);}
.m130_c01176{transform:matrix(0.222280,0.003334,-0.003750,0.249972,0,0);-ms-transform:matrix(0.222280,0.003334,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.222280,0.003334,-0.003750,0.249972,0,0);}
.mfa_c01176{transform:matrix(0.222499,0.002670,-0.003000,0.249982,0,0);-ms-transform:matrix(0.222499,0.002670,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.222499,0.002670,-0.003000,0.249982,0,0);}
.m65_c01176{transform:matrix(0.222838,0.001783,-0.002000,0.249992,0,0);-ms-transform:matrix(0.222838,0.001783,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.222838,0.001783,-0.002000,0.249992,0,0);}
.mf6_c01176{transform:matrix(0.223589,0.002683,-0.003000,0.249982,0,0);-ms-transform:matrix(0.223589,0.002683,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.223589,0.002683,-0.003000,0.249982,0,0);}
.mc_c01176{transform:matrix(0.225291,0.002028,-0.002250,0.249990,0,0);-ms-transform:matrix(0.225291,0.002028,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.225291,0.002028,-0.002250,0.249990,0,0);}
.m6c_c01176{transform:matrix(0.225498,0.001804,-0.002000,0.249992,0,0);-ms-transform:matrix(0.225498,0.001804,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.225498,0.001804,-0.002000,0.249992,0,0);}
.mae_c01176{transform:matrix(0.225838,0.001807,-0.002000,0.249992,0,0);-ms-transform:matrix(0.225838,0.001807,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.225838,0.001807,-0.002000,0.249992,0,0);}
.m3c_c01176{transform:matrix(0.226061,0.001356,-0.001500,0.249996,0,0);-ms-transform:matrix(0.226061,0.001356,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.226061,0.001356,-0.001500,0.249996,0,0);}
.me_c01176{transform:matrix(0.226281,0.002037,-0.002250,0.249990,0,0);-ms-transform:matrix(0.226281,0.002037,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.226281,0.002037,-0.002250,0.249990,0,0);}
.m100_c01176{transform:matrix(0.226499,0.002718,-0.003000,0.249982,0,0);-ms-transform:matrix(0.226499,0.002718,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.226499,0.002718,-0.003000,0.249982,0,0);}
.ma4_c01176{transform:matrix(0.226568,0.001813,-0.002000,0.249992,0,0);-ms-transform:matrix(0.226568,0.001813,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.226568,0.001813,-0.002000,0.249992,0,0);}
.m7f_c01176{transform:matrix(0.226998,0.001816,-0.002000,0.249992,0,0);-ms-transform:matrix(0.226998,0.001816,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.226998,0.001816,-0.002000,0.249992,0,0);}
.m7_c01176{transform:matrix(0.227716,0.002049,-0.002250,0.249990,0,0);-ms-transform:matrix(0.227716,0.002049,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.227716,0.002049,-0.002250,0.249990,0,0);}
.mea_c01176{transform:matrix(0.228074,0.002737,-0.003000,0.249982,0,0);-ms-transform:matrix(0.228074,0.002737,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.228074,0.002737,-0.003000,0.249982,0,0);}
.m54_c01176{transform:matrix(0.228166,0.001369,-0.001500,0.249996,0,0);-ms-transform:matrix(0.228166,0.001369,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.228166,0.001369,-0.001500,0.249996,0,0);}
.m28_c01176{transform:matrix(0.228811,0.001373,-0.001500,0.249996,0,0);-ms-transform:matrix(0.228811,0.001373,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.228811,0.001373,-0.001500,0.249996,0,0);}
.m15c_c01176{transform:matrix(0.229194,0.003438,-0.003750,0.249972,0,0);-ms-transform:matrix(0.229194,0.003438,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.229194,0.003438,-0.003750,0.249972,0,0);}
.meb_c01176{transform:matrix(0.229443,0.002753,-0.003000,0.249982,0,0);-ms-transform:matrix(0.229443,0.002753,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.229443,0.002753,-0.003000,0.249982,0,0);}
.me3_c01176{transform:matrix(0.229508,0.002754,-0.003000,0.249982,0,0);-ms-transform:matrix(0.229508,0.002754,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.229508,0.002754,-0.003000,0.249982,0,0);}
.m36_c01176{transform:matrix(0.229521,0.001377,-0.001500,0.249996,0,0);-ms-transform:matrix(0.229521,0.001377,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.229521,0.001377,-0.001500,0.249996,0,0);}
.m4f_c01176{transform:matrix(0.230066,0.001380,-0.001500,0.249996,0,0);-ms-transform:matrix(0.230066,0.001380,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.230066,0.001380,-0.001500,0.249996,0,0);}
.md0_c01176{transform:matrix(0.230323,0.002764,-0.003000,0.249982,0,0);-ms-transform:matrix(0.230323,0.002764,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.230323,0.002764,-0.003000,0.249982,0,0);}
.m68_c01176{transform:matrix(0.230328,0.001843,-0.002000,0.249992,0,0);-ms-transform:matrix(0.230328,0.001843,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.230328,0.001843,-0.002000,0.249992,0,0);}
.m107_c01176{transform:matrix(0.230408,0.002765,-0.003000,0.249982,0,0);-ms-transform:matrix(0.230408,0.002765,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.230408,0.002765,-0.003000,0.249982,0,0);}
.m6_c01176{transform:matrix(0.230711,0.002076,-0.002250,0.249990,0,0);-ms-transform:matrix(0.230711,0.002076,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.230711,0.002076,-0.002250,0.249990,0,0);}
.m9a_c01176{transform:matrix(0.230888,0.001847,-0.002000,0.249992,0,0);-ms-transform:matrix(0.230888,0.001847,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.230888,0.001847,-0.002000,0.249992,0,0);}
.m125_c01176{transform:matrix(0.231407,0.003934,-0.004249,0.249964,0,0);-ms-transform:matrix(0.231407,0.003934,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.231407,0.003934,-0.004249,0.249964,0,0);}
.m11_c01176{transform:matrix(0.232402,0.001162,-0.001250,0.249997,0,0);-ms-transform:matrix(0.232402,0.001162,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.232402,0.001162,-0.001250,0.249997,0,0);}
.mf5_c01176{transform:matrix(0.232438,0.002789,-0.003000,0.249982,0,0);-ms-transform:matrix(0.232438,0.002789,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.232438,0.002789,-0.003000,0.249982,0,0);}
.m106_c01176{transform:matrix(0.232928,0.002795,-0.003000,0.249982,0,0);-ms-transform:matrix(0.232928,0.002795,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.232928,0.002795,-0.003000,0.249982,0,0);}
.m57_c01176{transform:matrix(0.233401,0.001400,-0.001500,0.249996,0,0);-ms-transform:matrix(0.233401,0.001400,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.233401,0.001400,-0.001500,0.249996,0,0);}
.m115_c01176{transform:matrix(0.233688,0.004674,-0.004999,0.249950,0,0);-ms-transform:matrix(0.233688,0.004674,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.233688,0.004674,-0.004999,0.249950,0,0);}
.mb6_c01176{transform:matrix(0.234733,0.002817,-0.003000,0.249982,0,0);-ms-transform:matrix(0.234733,0.002817,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.234733,0.002817,-0.003000,0.249982,0,0);}
.mfe_c01176{transform:matrix(0.234768,0.002817,-0.003000,0.249982,0,0);-ms-transform:matrix(0.234768,0.002817,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.234768,0.002817,-0.003000,0.249982,0,0);}
.m63_c01176{transform:matrix(0.234792,0.001878,-0.002000,0.249992,0,0);-ms-transform:matrix(0.234792,0.001878,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.234792,0.001878,-0.002000,0.249992,0,0);}
.m9d_c01176{transform:matrix(0.235072,0.001881,-0.002000,0.249992,0,0);-ms-transform:matrix(0.235072,0.001881,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.235072,0.001881,-0.002000,0.249992,0,0);}
.m71_c01176{transform:matrix(0.235087,0.001881,-0.002000,0.249992,0,0);-ms-transform:matrix(0.235087,0.001881,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.235087,0.001881,-0.002000,0.249992,0,0);}
.mcf_c01176{transform:matrix(0.235108,0.002821,-0.003000,0.249982,0,0);-ms-transform:matrix(0.235108,0.002821,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.235108,0.002821,-0.003000,0.249982,0,0);}
.mc8_c01176{transform:matrix(0.235378,0.002825,-0.003000,0.249982,0,0);-ms-transform:matrix(0.235378,0.002825,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.235378,0.002825,-0.003000,0.249982,0,0);}
.m152_c01176{transform:matrix(0.235409,0.003531,-0.003750,0.249972,0,0);-ms-transform:matrix(0.235409,0.003531,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.235409,0.003531,-0.003750,0.249972,0,0);}
.m131_c01176{transform:matrix(0.235544,0.003533,-0.003750,0.249972,0,0);-ms-transform:matrix(0.235544,0.003533,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.235544,0.003533,-0.003750,0.249972,0,0);}
.mf3_c01176{transform:matrix(0.235558,0.002827,-0.003000,0.249982,0,0);-ms-transform:matrix(0.235558,0.002827,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.235558,0.002827,-0.003000,0.249982,0,0);}
.m122_c01176{transform:matrix(0.235686,0.004007,-0.004249,0.249964,0,0);-ms-transform:matrix(0.235686,0.004007,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.235686,0.004007,-0.004249,0.249964,0,0);}
.m92_c01176{transform:matrix(0.235977,0.001888,-0.002000,0.249992,0,0);-ms-transform:matrix(0.235977,0.001888,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.235977,0.001888,-0.002000,0.249992,0,0);}
.m102_c01176{transform:matrix(0.236193,0.002834,-0.003000,0.249982,0,0);-ms-transform:matrix(0.236193,0.002834,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.236193,0.002834,-0.003000,0.249982,0,0);}
.mf9_c01176{transform:matrix(0.236428,0.002837,-0.003000,0.249982,0,0);-ms-transform:matrix(0.236428,0.002837,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.236428,0.002837,-0.003000,0.249982,0,0);}
.m8b_c01176{transform:matrix(0.236662,0.001893,-0.002000,0.249992,0,0);-ms-transform:matrix(0.236662,0.001893,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.236662,0.001893,-0.002000,0.249992,0,0);}
.m14_c01176{transform:matrix(0.237022,0.001185,-0.001250,0.249997,0,0);-ms-transform:matrix(0.237022,0.001185,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.237022,0.001185,-0.001250,0.249997,0,0);}
.m150_c01176{transform:matrix(0.237173,0.003558,-0.003750,0.249972,0,0);-ms-transform:matrix(0.237173,0.003558,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.237173,0.003558,-0.003750,0.249972,0,0);}
.m3d_c01176{transform:matrix(0.237181,0.001423,-0.001500,0.249996,0,0);-ms-transform:matrix(0.237181,0.001423,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.237181,0.001423,-0.001500,0.249996,0,0);}
.md_c01176{transform:matrix(0.237200,0.002135,-0.002250,0.249990,0,0);-ms-transform:matrix(0.237200,0.002135,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.237200,0.002135,-0.002250,0.249990,0,0);}
.m160_c01176{transform:matrix(0.237233,0.003558,-0.003750,0.249972,0,0);-ms-transform:matrix(0.237233,0.003558,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.237233,0.003558,-0.003750,0.249972,0,0);}
.m15d_c01176{transform:matrix(0.237513,0.003563,-0.003750,0.249972,0,0);-ms-transform:matrix(0.237513,0.003563,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.237513,0.003563,-0.003750,0.249972,0,0);}
.m82_c01176{transform:matrix(0.237967,0.001904,-0.002000,0.249992,0,0);-ms-transform:matrix(0.237967,0.001904,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.237967,0.001904,-0.002000,0.249992,0,0);}
.m43_c01176{transform:matrix(0.238286,0.001430,-0.001500,0.249996,0,0);-ms-transform:matrix(0.238286,0.001430,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.238286,0.001430,-0.001500,0.249996,0,0);}
.m12c_c01176{transform:matrix(0.238496,0.004293,-0.004499,0.249960,0,0);-ms-transform:matrix(0.238496,0.004293,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.238496,0.004293,-0.004499,0.249960,0,0);}
.m2f_c01176{transform:matrix(0.238531,0.001431,-0.001500,0.249996,0,0);-ms-transform:matrix(0.238531,0.001431,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.238531,0.001431,-0.001500,0.249996,0,0);}
.me0_c01176{transform:matrix(0.238553,0.002863,-0.003000,0.249982,0,0);-ms-transform:matrix(0.238553,0.002863,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.238553,0.002863,-0.003000,0.249982,0,0);}
.m5c_c01176{transform:matrix(0.238802,0.001910,-0.002000,0.249992,0,0);-ms-transform:matrix(0.238802,0.001910,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.238802,0.001910,-0.002000,0.249992,0,0);}
.m74_c01176{transform:matrix(0.239002,0.001912,-0.002000,0.249992,0,0);-ms-transform:matrix(0.239002,0.001912,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.239002,0.001912,-0.002000,0.249992,0,0);}
.m9b_c01176{transform:matrix(0.239117,0.001913,-0.002000,0.249992,0,0);-ms-transform:matrix(0.239117,0.001913,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.239117,0.001913,-0.002000,0.249992,0,0);}
.m2e_c01176{transform:matrix(0.239121,0.001435,-0.001500,0.249996,0,0);-ms-transform:matrix(0.239121,0.001435,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.239121,0.001435,-0.001500,0.249996,0,0);}
.mdd_c01176{transform:matrix(0.239293,0.002872,-0.003000,0.249982,0,0);-ms-transform:matrix(0.239293,0.002872,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.239293,0.002872,-0.003000,0.249982,0,0);}
.m3e_c01176{transform:matrix(0.239306,0.001436,-0.001500,0.249996,0,0);-ms-transform:matrix(0.239306,0.001436,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.239306,0.001436,-0.001500,0.249996,0,0);}
.m7c_c01176{transform:matrix(0.239582,0.001917,-0.002000,0.249992,0,0);-ms-transform:matrix(0.239582,0.001917,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.239582,0.001917,-0.002000,0.249992,0,0);}
.m3f_c01176{transform:matrix(0.239586,0.001438,-0.001500,0.249996,0,0);-ms-transform:matrix(0.239586,0.001438,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.239586,0.001438,-0.001500,0.249996,0,0);}
.m123_c01176{transform:matrix(0.239875,0.004078,-0.004249,0.249964,0,0);-ms-transform:matrix(0.239875,0.004078,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.239875,0.004078,-0.004249,0.249964,0,0);}
.m112_c01176{transform:matrix(0.240017,0.004800,-0.004999,0.249950,0,0);-ms-transform:matrix(0.240017,0.004800,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.240017,0.004800,-0.004999,0.249950,0,0);}
.m19_c01176{transform:matrix(0.240112,0.001201,-0.001250,0.249997,0,0);-ms-transform:matrix(0.240112,0.001201,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.240112,0.001201,-0.001250,0.249997,0,0);}
.me9_c01176{transform:matrix(0.240278,0.002883,-0.003000,0.249982,0,0);-ms-transform:matrix(0.240278,0.002883,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.240278,0.002883,-0.003000,0.249982,0,0);}
.m62_c01176{transform:matrix(0.240452,0.001924,-0.002000,0.249992,0,0);-ms-transform:matrix(0.240452,0.001924,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.240452,0.001924,-0.002000,0.249992,0,0);}
.mfc_c01176{transform:matrix(0.240478,0.002886,-0.003000,0.249982,0,0);-ms-transform:matrix(0.240478,0.002886,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.240478,0.002886,-0.003000,0.249982,0,0);}
.m7d_c01176{transform:matrix(0.240767,0.001926,-0.002000,0.249992,0,0);-ms-transform:matrix(0.240767,0.001926,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.240767,0.001926,-0.002000,0.249992,0,0);}
.m2a_c01176{transform:matrix(0.241026,0.001446,-0.001500,0.249996,0,0);-ms-transform:matrix(0.241026,0.001446,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.241026,0.001446,-0.001500,0.249996,0,0);}
.mb8_c01176{transform:matrix(0.241028,0.002892,-0.003000,0.249982,0,0);-ms-transform:matrix(0.241028,0.002892,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.241028,0.002892,-0.003000,0.249982,0,0);}
.m64_c01176{transform:matrix(0.241037,0.001928,-0.002000,0.249992,0,0);-ms-transform:matrix(0.241037,0.001928,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.241037,0.001928,-0.002000,0.249992,0,0);}
.m10a_c01176{transform:matrix(0.241103,0.002893,-0.003000,0.249982,0,0);-ms-transform:matrix(0.241103,0.002893,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.241103,0.002893,-0.003000,0.249982,0,0);}
.ma0_c01176{transform:matrix(0.241222,0.001930,-0.002000,0.249992,0,0);-ms-transform:matrix(0.241222,0.001930,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.241222,0.001930,-0.002000,0.249992,0,0);}
.mf2_c01176{transform:matrix(0.241243,0.002895,-0.003000,0.249982,0,0);-ms-transform:matrix(0.241243,0.002895,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.241243,0.002895,-0.003000,0.249982,0,0);}
.m15b_c01176{transform:matrix(0.241443,0.003622,-0.003750,0.249972,0,0);-ms-transform:matrix(0.241443,0.003622,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.241443,0.003622,-0.003750,0.249972,0,0);}
.mad_c01176{transform:matrix(0.241937,0.001935,-0.002000,0.249992,0,0);-ms-transform:matrix(0.241937,0.001935,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.241937,0.001935,-0.002000,0.249992,0,0);}
.m73_c01176{transform:matrix(0.242137,0.001937,-0.002000,0.249992,0,0);-ms-transform:matrix(0.242137,0.001937,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.242137,0.001937,-0.002000,0.249992,0,0);}
.ma6_c01176{transform:matrix(0.242302,0.001938,-0.002000,0.249992,0,0);-ms-transform:matrix(0.242302,0.001938,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.242302,0.001938,-0.002000,0.249992,0,0);}
.md2_c01176{transform:matrix(0.242388,0.002909,-0.003000,0.249982,0,0);-ms-transform:matrix(0.242388,0.002909,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.242388,0.002909,-0.003000,0.249982,0,0);}
.m32_c01176{transform:matrix(0.242391,0.001454,-0.001500,0.249996,0,0);-ms-transform:matrix(0.242391,0.001454,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.242391,0.001454,-0.001500,0.249996,0,0);}
.m81_c01176{transform:matrix(0.242467,0.001940,-0.002000,0.249992,0,0);-ms-transform:matrix(0.242467,0.001940,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.242467,0.001940,-0.002000,0.249992,0,0);}
.m49_c01176{transform:matrix(0.242471,0.001455,-0.001500,0.249996,0,0);-ms-transform:matrix(0.242471,0.001455,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.242471,0.001455,-0.001500,0.249996,0,0);}
.m30_c01176{transform:matrix(0.242541,0.001455,-0.001500,0.249996,0,0);-ms-transform:matrix(0.242541,0.001455,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.242541,0.001455,-0.001500,0.249996,0,0);}
.ma2_c01176{transform:matrix(0.242622,0.001941,-0.002000,0.249992,0,0);-ms-transform:matrix(0.242622,0.001941,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.242622,0.001941,-0.002000,0.249992,0,0);}
.md3_c01176{transform:matrix(0.242728,0.002913,-0.003000,0.249982,0,0);-ms-transform:matrix(0.242728,0.002913,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.242728,0.002913,-0.003000,0.249982,0,0);}
.m109_c01176{transform:matrix(0.243008,0.002916,-0.003000,0.249982,0,0);-ms-transform:matrix(0.243008,0.002916,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.243008,0.002916,-0.003000,0.249982,0,0);}
.m84_c01176{transform:matrix(0.243027,0.001944,-0.002000,0.249992,0,0);-ms-transform:matrix(0.243027,0.001944,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.243027,0.001944,-0.002000,0.249992,0,0);}
.mee_c01176{transform:matrix(0.243237,0.002919,-0.003000,0.249982,0,0);-ms-transform:matrix(0.243237,0.002919,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.243237,0.002919,-0.003000,0.249982,0,0);}
.m66_c01176{transform:matrix(0.243282,0.001946,-0.002000,0.249992,0,0);-ms-transform:matrix(0.243282,0.001946,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.243282,0.001946,-0.002000,0.249992,0,0);}
.mb1_c01176{transform:matrix(0.244012,0.002928,-0.003000,0.249982,0,0);-ms-transform:matrix(0.244012,0.002928,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.244012,0.002928,-0.003000,0.249982,0,0);}
.m67_c01176{transform:matrix(0.244022,0.001952,-0.002000,0.249992,0,0);-ms-transform:matrix(0.244022,0.001952,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.244022,0.001952,-0.002000,0.249992,0,0);}
.m55_c01176{transform:matrix(0.244091,0.001465,-0.001500,0.249996,0,0);-ms-transform:matrix(0.244091,0.001465,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.244091,0.001465,-0.001500,0.249996,0,0);}
.m41_c01176{transform:matrix(0.244251,0.001466,-0.001500,0.249996,0,0);-ms-transform:matrix(0.244251,0.001466,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.244251,0.001466,-0.001500,0.249996,0,0);}
.m103_c01176{transform:matrix(0.244577,0.002935,-0.003000,0.249982,0,0);-ms-transform:matrix(0.244577,0.002935,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.244577,0.002935,-0.003000,0.249982,0,0);}
.m88_c01176{transform:matrix(0.244752,0.001958,-0.002000,0.249992,0,0);-ms-transform:matrix(0.244752,0.001958,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.244752,0.001958,-0.002000,0.249992,0,0);}
.m46_c01176{transform:matrix(0.244866,0.001469,-0.001500,0.249996,0,0);-ms-transform:matrix(0.244866,0.001469,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.244866,0.001469,-0.001500,0.249996,0,0);}
.mc9_c01176{transform:matrix(0.245197,0.002942,-0.003000,0.249982,0,0);-ms-transform:matrix(0.245197,0.002942,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.245197,0.002942,-0.003000,0.249982,0,0);}
.mcb_c01176{transform:matrix(0.245372,0.002944,-0.003000,0.249982,0,0);-ms-transform:matrix(0.245372,0.002944,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.245372,0.002944,-0.003000,0.249982,0,0);}
.m44_c01176{transform:matrix(0.245386,0.001472,-0.001500,0.249996,0,0);-ms-transform:matrix(0.245386,0.001472,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.245386,0.001472,-0.001500,0.249996,0,0);}
.m118_c01176{transform:matrix(0.245411,0.004908,-0.004999,0.249950,0,0);-ms-transform:matrix(0.245411,0.004908,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.245411,0.004908,-0.004999,0.249950,0,0);}
.m37_c01176{transform:matrix(0.246191,0.001477,-0.001500,0.249996,0,0);-ms-transform:matrix(0.246191,0.001477,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.246191,0.001477,-0.001500,0.249996,0,0);}
.m61_c01176{transform:matrix(0.246197,0.001970,-0.002000,0.249992,0,0);-ms-transform:matrix(0.246197,0.001970,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.246197,0.001970,-0.002000,0.249992,0,0);}
.m14e_c01176{transform:matrix(0.246392,0.003696,-0.003750,0.249972,0,0);-ms-transform:matrix(0.246392,0.003696,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.246392,0.003696,-0.003750,0.249972,0,0);}
.m16_c01176{transform:matrix(0.246562,0.001233,-0.001250,0.249997,0,0);-ms-transform:matrix(0.246562,0.001233,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.246562,0.001233,-0.001250,0.249997,0,0);}
.m7a_c01176{transform:matrix(0.246652,0.001973,-0.002000,0.249992,0,0);-ms-transform:matrix(0.246652,0.001973,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.246652,0.001973,-0.002000,0.249992,0,0);}
.m134_c01176{transform:matrix(0.247017,0.003705,-0.003750,0.249972,0,0);-ms-transform:matrix(0.247017,0.003705,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.247017,0.003705,-0.003750,0.249972,0,0);}
.m50_c01176{transform:matrix(0.247056,0.001482,-0.001500,0.249996,0,0);-ms-transform:matrix(0.247056,0.001482,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.247056,0.001482,-0.001500,0.249996,0,0);}
.m3a_c01176{transform:matrix(0.247151,0.001483,-0.001500,0.249996,0,0);-ms-transform:matrix(0.247151,0.001483,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.247151,0.001483,-0.001500,0.249996,0,0);}
.m33_c01176{transform:matrix(0.247211,0.001483,-0.001500,0.249996,0,0);-ms-transform:matrix(0.247211,0.001483,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.247211,0.001483,-0.001500,0.249996,0,0);}
.m135_c01176{transform:matrix(0.247402,0.003711,-0.003750,0.249972,0,0);-ms-transform:matrix(0.247402,0.003711,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.247402,0.003711,-0.003750,0.249972,0,0);}
.mb2_c01176{transform:matrix(0.247442,0.002969,-0.003000,0.249982,0,0);-ms-transform:matrix(0.247442,0.002969,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.247442,0.002969,-0.003000,0.249982,0,0);}
.m18_c01176{transform:matrix(0.247812,0.001239,-0.001250,0.249997,0,0);-ms-transform:matrix(0.247812,0.001239,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.247812,0.001239,-0.001250,0.249997,0,0);}
.m79_c01176{transform:matrix(0.248287,0.001986,-0.002000,0.249992,0,0);-ms-transform:matrix(0.248287,0.001986,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.248287,0.001986,-0.002000,0.249992,0,0);}
.m101_c01176{transform:matrix(0.248402,0.002981,-0.003000,0.249982,0,0);-ms-transform:matrix(0.248402,0.002981,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.248402,0.002981,-0.003000,0.249982,0,0);}
.mcc_c01176{transform:matrix(0.248427,0.002981,-0.003000,0.249982,0,0);-ms-transform:matrix(0.248427,0.002981,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.248427,0.002981,-0.003000,0.249982,0,0);}
.maa_c01176{transform:matrix(0.248462,0.001988,-0.002000,0.249992,0,0);-ms-transform:matrix(0.248462,0.001988,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.248462,0.001988,-0.002000,0.249992,0,0);}
.m1a_c01176{transform:matrix(0.248482,0.001242,-0.001250,0.249997,0,0);-ms-transform:matrix(0.248482,0.001242,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.248482,0.001242,-0.001250,0.249997,0,0);}
.m11b_c01176{transform:matrix(0.248549,0.004225,-0.004249,0.249964,0,0);-ms-transform:matrix(0.248549,0.004225,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.248549,0.004225,-0.004249,0.249964,0,0);}
.m45_c01176{transform:matrix(0.248581,0.001491,-0.001500,0.249996,0,0);-ms-transform:matrix(0.248581,0.001491,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.248581,0.001491,-0.001500,0.249996,0,0);}
.m2b_c01176{transform:matrix(0.248946,0.001494,-0.001500,0.249996,0,0);-ms-transform:matrix(0.248946,0.001494,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.248946,0.001494,-0.001500,0.249996,0,0);}
.m159_c01176{transform:matrix(0.249457,0.003742,-0.003750,0.249972,0,0);-ms-transform:matrix(0.249457,0.003742,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.249457,0.003742,-0.003750,0.249972,0,0);}
.m97_c01176{transform:matrix(0.249657,0.001997,-0.002000,0.249992,0,0);-ms-transform:matrix(0.249657,0.001997,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.249657,0.001997,-0.002000,0.249992,0,0);}
.mb4_c01176{transform:matrix(0.249927,0.002999,-0.003000,0.249982,0,0);-ms-transform:matrix(0.249927,0.002999,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.249927,0.002999,-0.003000,0.249982,0,0);}
.m12b_c01176{transform:matrix(0.249955,0.004499,-0.004499,0.249960,0,0);-ms-transform:matrix(0.249955,0.004499,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.249955,0.004499,-0.004499,0.249960,0,0);}
.ma9_c01176{transform:matrix(0.250327,0.002003,-0.002000,0.249992,0,0);-ms-transform:matrix(0.250327,0.002003,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.250327,0.002003,-0.002000,0.249992,0,0);}
.m11a_c01176{transform:matrix(0.250374,0.004256,-0.004249,0.249964,0,0);-ms-transform:matrix(0.250374,0.004256,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.250374,0.004256,-0.004249,0.249964,0,0);}
.m9e_c01176{transform:matrix(0.250382,0.002003,-0.002000,0.249992,0,0);-ms-transform:matrix(0.250382,0.002003,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.250382,0.002003,-0.002000,0.249992,0,0);}
.m20_c01176{transform:matrix(0.250385,0.001502,-0.001500,0.249996,0,0);-ms-transform:matrix(0.250385,0.001502,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.250385,0.001502,-0.001500,0.249996,0,0);}
.m83_c01176{transform:matrix(0.250417,0.002003,-0.002000,0.249992,0,0);-ms-transform:matrix(0.250417,0.002003,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.250417,0.002003,-0.002000,0.249992,0,0);}
.m6b_c01176{transform:matrix(0.251017,0.002008,-0.002000,0.249992,0,0);-ms-transform:matrix(0.251017,0.002008,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.251017,0.002008,-0.002000,0.249992,0,0);}
.mb7_c01176{transform:matrix(0.251167,0.003014,-0.003000,0.249982,0,0);-ms-transform:matrix(0.251167,0.003014,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.251167,0.003014,-0.003000,0.249982,0,0);}
.mbd_c01176{transform:matrix(0.251202,0.003014,-0.003000,0.249982,0,0);-ms-transform:matrix(0.251202,0.003014,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.251202,0.003014,-0.003000,0.249982,0,0);}
.m24_c01176{transform:matrix(0.251275,0.001508,-0.001500,0.249996,0,0);-ms-transform:matrix(0.251275,0.001508,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.251275,0.001508,-0.001500,0.249996,0,0);}
.m5d_c01176{transform:matrix(0.252107,0.002017,-0.002000,0.249992,0,0);-ms-transform:matrix(0.252107,0.002017,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.252107,0.002017,-0.002000,0.249992,0,0);}
.m11f_c01176{transform:matrix(0.252204,0.004287,-0.004249,0.249964,0,0);-ms-transform:matrix(0.252204,0.004287,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.252204,0.004287,-0.004249,0.249964,0,0);}
.m128_c01176{transform:matrix(0.252229,0.004540,-0.004499,0.249960,0,0);-ms-transform:matrix(0.252229,0.004540,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.252229,0.004540,-0.004499,0.249960,0,0);}
.m133_c01176{transform:matrix(0.252552,0.003788,-0.003750,0.249972,0,0);-ms-transform:matrix(0.252552,0.003788,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.252552,0.003788,-0.003750,0.249972,0,0);}
.m52_c01176{transform:matrix(0.252840,0.001517,-0.001500,0.249996,0,0);-ms-transform:matrix(0.252840,0.001517,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.252840,0.001517,-0.001500,0.249996,0,0);}
.m157_c01176{transform:matrix(0.252862,0.003793,-0.003750,0.249972,0,0);-ms-transform:matrix(0.252862,0.003793,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.252862,0.003793,-0.003750,0.249972,0,0);}
.mf4_c01176{transform:matrix(0.253097,0.003037,-0.003000,0.249982,0,0);-ms-transform:matrix(0.253097,0.003037,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.253097,0.003037,-0.003000,0.249982,0,0);}
.mce_c01176{transform:matrix(0.253112,0.003037,-0.003000,0.249982,0,0);-ms-transform:matrix(0.253112,0.003037,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.253112,0.003037,-0.003000,0.249982,0,0);}
.m105_c01176{transform:matrix(0.253272,0.003039,-0.003000,0.249982,0,0);-ms-transform:matrix(0.253272,0.003039,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.253272,0.003039,-0.003000,0.249982,0,0);}
.m94_c01176{transform:matrix(0.253777,0.002030,-0.002000,0.249992,0,0);-ms-transform:matrix(0.253777,0.002030,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.253777,0.002030,-0.002000,0.249992,0,0);}
.m11e_c01176{transform:matrix(0.253838,0.004315,-0.004249,0.249964,0,0);-ms-transform:matrix(0.253838,0.004315,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.253838,0.004315,-0.004249,0.249964,0,0);}
.mec_c01176{transform:matrix(0.254087,0.003049,-0.003000,0.249982,0,0);-ms-transform:matrix(0.254087,0.003049,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.254087,0.003049,-0.003000,0.249982,0,0);}
.m93_c01176{transform:matrix(0.254122,0.002033,-0.002000,0.249992,0,0);-ms-transform:matrix(0.254122,0.002033,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.254122,0.002033,-0.002000,0.249992,0,0);}
.mef_c01176{transform:matrix(0.254492,0.003054,-0.003000,0.249982,0,0);-ms-transform:matrix(0.254492,0.003054,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.254492,0.003054,-0.003000,0.249982,0,0);}
.m1c_c01176{transform:matrix(0.254975,0.001530,-0.001500,0.249996,0,0);-ms-transform:matrix(0.254975,0.001530,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.254975,0.001530,-0.001500,0.249996,0,0);}
.m12a_c01176{transform:matrix(0.254984,0.004590,-0.004499,0.249960,0,0);-ms-transform:matrix(0.254984,0.004590,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.254984,0.004590,-0.004499,0.249960,0,0);}
.m60_c01176{transform:matrix(0.255022,0.002040,-0.002000,0.249992,0,0);-ms-transform:matrix(0.255022,0.002040,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.255022,0.002040,-0.002000,0.249992,0,0);}
.mb9_c01176{transform:matrix(0.255237,0.003063,-0.003000,0.249982,0,0);-ms-transform:matrix(0.255237,0.003063,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.255237,0.003063,-0.003000,0.249982,0,0);}
.mba_c01176{transform:matrix(0.255717,0.003069,-0.003000,0.249982,0,0);-ms-transform:matrix(0.255717,0.003069,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.255717,0.003069,-0.003000,0.249982,0,0);}
.m4e_c01176{transform:matrix(0.255740,0.001534,-0.001500,0.249996,0,0);-ms-transform:matrix(0.255740,0.001534,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.255740,0.001534,-0.001500,0.249996,0,0);}
.ma5_c01176{transform:matrix(0.256097,0.002049,-0.002000,0.249992,0,0);-ms-transform:matrix(0.256097,0.002049,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.256097,0.002049,-0.002000,0.249992,0,0);}
.mbb_c01176{transform:matrix(0.256177,0.003074,-0.003000,0.249982,0,0);-ms-transform:matrix(0.256177,0.003074,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.256177,0.003074,-0.003000,0.249982,0,0);}
.m69_c01176{transform:matrix(0.256422,0.002051,-0.002000,0.249992,0,0);-ms-transform:matrix(0.256422,0.002051,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.256422,0.002051,-0.002000,0.249992,0,0);}
.m80_c01176{transform:matrix(0.257722,0.002062,-0.002000,0.249992,0,0);-ms-transform:matrix(0.257722,0.002062,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.257722,0.002062,-0.002000,0.249992,0,0);}
.me5_c01176{transform:matrix(0.258166,0.003098,-0.003000,0.249982,0,0);-ms-transform:matrix(0.258166,0.003098,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.258166,0.003098,-0.003000,0.249982,0,0);}
.m51_c01176{transform:matrix(0.258345,0.001550,-0.001500,0.249996,0,0);-ms-transform:matrix(0.258345,0.001550,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.258345,0.001550,-0.001500,0.249996,0,0);}
.m99_c01176{transform:matrix(0.258622,0.002069,-0.002000,0.249992,0,0);-ms-transform:matrix(0.258622,0.002069,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.258622,0.002069,-0.002000,0.249992,0,0);}
.m4b_c01176{transform:matrix(0.258960,0.001554,-0.001500,0.249996,0,0);-ms-transform:matrix(0.258960,0.001554,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.258960,0.001554,-0.001500,0.249996,0,0);}
.mda_c01176{transform:matrix(0.258971,0.003108,-0.003000,0.249982,0,0);-ms-transform:matrix(0.258971,0.003108,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.258971,0.003108,-0.003000,0.249982,0,0);}
.m53_c01176{transform:matrix(0.259820,0.001559,-0.001500,0.249996,0,0);-ms-transform:matrix(0.259820,0.001559,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.259820,0.001559,-0.001500,0.249996,0,0);}
.m8c_c01176{transform:matrix(0.260152,0.002081,-0.002000,0.249992,0,0);-ms-transform:matrix(0.260152,0.002081,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.260152,0.002081,-0.002000,0.249992,0,0);}
.m10f_c01176{transform:matrix(0.260386,0.003125,-0.003000,0.249982,0,0);-ms-transform:matrix(0.260386,0.003125,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.260386,0.003125,-0.003000,0.249982,0,0);}
.md1_c01176{transform:matrix(0.260396,0.003125,-0.003000,0.249982,0,0);-ms-transform:matrix(0.260396,0.003125,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.260396,0.003125,-0.003000,0.249982,0,0);}
.me2_c01176{transform:matrix(0.260711,0.003129,-0.003000,0.249982,0,0);-ms-transform:matrix(0.260711,0.003129,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.260711,0.003129,-0.003000,0.249982,0,0);}
.m42_c01176{transform:matrix(0.260725,0.001564,-0.001500,0.249996,0,0);-ms-transform:matrix(0.260725,0.001564,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.260725,0.001564,-0.001500,0.249996,0,0);}
.m90_c01176{transform:matrix(0.260812,0.002086,-0.002000,0.249992,0,0);-ms-transform:matrix(0.260812,0.002086,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.260812,0.002086,-0.002000,0.249992,0,0);}
.m47_c01176{transform:matrix(0.261010,0.001566,-0.001500,0.249996,0,0);-ms-transform:matrix(0.261010,0.001566,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.261010,0.001566,-0.001500,0.249996,0,0);}
.m153_c01176{transform:matrix(0.261036,0.003916,-0.003750,0.249972,0,0);-ms-transform:matrix(0.261036,0.003916,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.261036,0.003916,-0.003750,0.249972,0,0);}
.m156_c01176{transform:matrix(0.261051,0.003916,-0.003750,0.249972,0,0);-ms-transform:matrix(0.261051,0.003916,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.261051,0.003916,-0.003750,0.249972,0,0);}
.md4_c01176{transform:matrix(0.261351,0.003136,-0.003000,0.249982,0,0);-ms-transform:matrix(0.261351,0.003136,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.261351,0.003136,-0.003000,0.249982,0,0);}
.m151_c01176{transform:matrix(0.261406,0.003921,-0.003750,0.249972,0,0);-ms-transform:matrix(0.261406,0.003921,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.261406,0.003921,-0.003750,0.249972,0,0);}
.m89_c01176{transform:matrix(0.261532,0.002092,-0.002000,0.249992,0,0);-ms-transform:matrix(0.261532,0.002092,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.261532,0.002092,-0.002000,0.249992,0,0);}
.m12_c01176{transform:matrix(0.261962,0.001310,-0.001250,0.249997,0,0);-ms-transform:matrix(0.261962,0.001310,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.261962,0.001310,-0.001250,0.249997,0,0);}
.m11c_c01176{transform:matrix(0.262172,0.004457,-0.004249,0.249964,0,0);-ms-transform:matrix(0.262172,0.004457,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.262172,0.004457,-0.004249,0.249964,0,0);}
.mca_c01176{transform:matrix(0.262186,0.003146,-0.003000,0.249982,0,0);-ms-transform:matrix(0.262186,0.003146,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.262186,0.003146,-0.003000,0.249982,0,0);}
.md5_c01176{transform:matrix(0.262191,0.003146,-0.003000,0.249982,0,0);-ms-transform:matrix(0.262191,0.003146,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.262191,0.003146,-0.003000,0.249982,0,0);}
.m15_c01176{transform:matrix(0.262287,0.001311,-0.001250,0.249997,0,0);-ms-transform:matrix(0.262287,0.001311,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.262287,0.001311,-0.001250,0.249997,0,0);}
.mf1_c01176{transform:matrix(0.262466,0.003150,-0.003000,0.249982,0,0);-ms-transform:matrix(0.262466,0.003150,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.262466,0.003150,-0.003000,0.249982,0,0);}
.m132_c01176{transform:matrix(0.262540,0.003938,-0.003750,0.249972,0,0);-ms-transform:matrix(0.262540,0.003938,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.262540,0.003938,-0.003750,0.249972,0,0);}
.m124_c01176{transform:matrix(0.262837,0.004468,-0.004249,0.249964,0,0);-ms-transform:matrix(0.262837,0.004468,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.262837,0.004468,-0.004249,0.249964,0,0);}
.me1_c01176{transform:matrix(0.263091,0.003157,-0.003000,0.249982,0,0);-ms-transform:matrix(0.263091,0.003157,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.263091,0.003157,-0.003000,0.249982,0,0);}
.m7b_c01176{transform:matrix(0.263102,0.002105,-0.002000,0.249992,0,0);-ms-transform:matrix(0.263102,0.002105,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.263102,0.002105,-0.002000,0.249992,0,0);}
.md7_c01176{transform:matrix(0.263281,0.003159,-0.003000,0.249982,0,0);-ms-transform:matrix(0.263281,0.003159,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.263281,0.003159,-0.003000,0.249982,0,0);}
.m98_c01176{transform:matrix(0.263532,0.002108,-0.002000,0.249992,0,0);-ms-transform:matrix(0.263532,0.002108,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.263532,0.002108,-0.002000,0.249992,0,0);}
.m59_c01176{transform:matrix(0.264052,0.002112,-0.002000,0.249992,0,0);-ms-transform:matrix(0.264052,0.002112,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.264052,0.002112,-0.002000,0.249992,0,0);}
.mc0_c01176{transform:matrix(0.264501,0.003174,-0.003000,0.249982,0,0);-ms-transform:matrix(0.264501,0.003174,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.264501,0.003174,-0.003000,0.249982,0,0);}
.m58_c01176{transform:matrix(0.265125,0.001591,-0.001500,0.249996,0,0);-ms-transform:matrix(0.265125,0.001591,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.265125,0.001591,-0.001500,0.249996,0,0);}
.m10_c01176{transform:matrix(0.265687,0.001328,-0.001250,0.249997,0,0);-ms-transform:matrix(0.265687,0.001328,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.265687,0.001328,-0.001250,0.249997,0,0);}
.mdf_c01176{transform:matrix(0.265951,0.003191,-0.003000,0.249982,0,0);-ms-transform:matrix(0.265951,0.003191,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.265951,0.003191,-0.003000,0.249982,0,0);}
.mfb_c01176{transform:matrix(0.266211,0.003195,-0.003000,0.249982,0,0);-ms-transform:matrix(0.266211,0.003195,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.266211,0.003195,-0.003000,0.249982,0,0);}
.me8_c01176{transform:matrix(0.266231,0.003195,-0.003000,0.249982,0,0);-ms-transform:matrix(0.266231,0.003195,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.266231,0.003195,-0.003000,0.249982,0,0);}
.mf7_c01176{transform:matrix(0.266421,0.003197,-0.003000,0.249982,0,0);-ms-transform:matrix(0.266421,0.003197,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.266421,0.003197,-0.003000,0.249982,0,0);}
.m12e_c01176{transform:matrix(0.267132,0.004808,-0.004499,0.249960,0,0);-ms-transform:matrix(0.267132,0.004808,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.267132,0.004808,-0.004499,0.249960,0,0);}
.m40_c01176{transform:matrix(0.267905,0.001607,-0.001500,0.249996,0,0);-ms-transform:matrix(0.267905,0.001607,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.267905,0.001607,-0.001500,0.249996,0,0);}
.m5a_c01176{transform:matrix(0.268116,0.002145,-0.002000,0.249992,0,0);-ms-transform:matrix(0.268116,0.002145,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.268116,0.002145,-0.002000,0.249992,0,0);}
.m7e_c01176{transform:matrix(0.268346,0.002147,-0.002000,0.249992,0,0);-ms-transform:matrix(0.268346,0.002147,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.268346,0.002147,-0.002000,0.249992,0,0);}
.m121_c01176{transform:matrix(0.268581,0.004566,-0.004249,0.249964,0,0);-ms-transform:matrix(0.268581,0.004566,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.268581,0.004566,-0.004249,0.249964,0,0);}
.me7_c01176{transform:matrix(0.268786,0.003225,-0.003000,0.249982,0,0);-ms-transform:matrix(0.268786,0.003225,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.268786,0.003225,-0.003000,0.249982,0,0);}
.m31_c01176{transform:matrix(0.268825,0.001613,-0.001500,0.249996,0,0);-ms-transform:matrix(0.268825,0.001613,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.268825,0.001613,-0.001500,0.249996,0,0);}
.m23_c01176{transform:matrix(0.269525,0.001617,-0.001500,0.249996,0,0);-ms-transform:matrix(0.269525,0.001617,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.269525,0.001617,-0.001500,0.249996,0,0);}
.maf_c01176{transform:matrix(0.270401,0.002163,-0.002000,0.249992,0,0);-ms-transform:matrix(0.270401,0.002163,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.270401,0.002163,-0.002000,0.249992,0,0);}
.me6_c01176{transform:matrix(0.270436,0.003245,-0.003000,0.249982,0,0);-ms-transform:matrix(0.270436,0.003245,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.270436,0.003245,-0.003000,0.249982,0,0);}
.m9c_c01176{transform:matrix(0.270781,0.002166,-0.002000,0.249992,0,0);-ms-transform:matrix(0.270781,0.002166,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.270781,0.002166,-0.002000,0.249992,0,0);}
.m35_c01176{transform:matrix(0.271010,0.001626,-0.001500,0.249996,0,0);-ms-transform:matrix(0.271010,0.001626,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.271010,0.001626,-0.001500,0.249996,0,0);}
.m2c_c01176{transform:matrix(0.271635,0.001630,-0.001500,0.249996,0,0);-ms-transform:matrix(0.271635,0.001630,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.271635,0.001630,-0.001500,0.249996,0,0);}
.m8a_c01176{transform:matrix(0.271796,0.002174,-0.002000,0.249992,0,0);-ms-transform:matrix(0.271796,0.002174,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.271796,0.002174,-0.002000,0.249992,0,0);}
.me4_c01176{transform:matrix(0.272070,0.003265,-0.003000,0.249982,0,0);-ms-transform:matrix(0.272070,0.003265,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.272070,0.003265,-0.003000,0.249982,0,0);}
.m4d_c01176{transform:matrix(0.272275,0.001634,-0.001500,0.249996,0,0);-ms-transform:matrix(0.272275,0.001634,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.272275,0.001634,-0.001500,0.249996,0,0);}
.mfd_c01176{transform:matrix(0.272670,0.003272,-0.003000,0.249982,0,0);-ms-transform:matrix(0.272670,0.003272,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.272670,0.003272,-0.003000,0.249982,0,0);}
.m91_c01176{transform:matrix(0.272791,0.002182,-0.002000,0.249992,0,0);-ms-transform:matrix(0.272791,0.002182,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.272791,0.002182,-0.002000,0.249992,0,0);}
.md9_c01176{transform:matrix(0.273020,0.003276,-0.003000,0.249982,0,0);-ms-transform:matrix(0.273020,0.003276,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.273020,0.003276,-0.003000,0.249982,0,0);}
.m147_c01176{transform:matrix(0.273024,0.004095,-0.003750,0.249972,0,0);-ms-transform:matrix(0.273024,0.004095,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.273024,0.004095,-0.003750,0.249972,0,0);}
.m120_c01176{transform:matrix(0.273201,0.004644,-0.004249,0.249964,0,0);-ms-transform:matrix(0.273201,0.004644,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.273201,0.004644,-0.004249,0.249964,0,0);}
.mbe_c01176{transform:matrix(0.273220,0.003279,-0.003000,0.249982,0,0);-ms-transform:matrix(0.273220,0.003279,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.273220,0.003279,-0.003000,0.249982,0,0);}
.mf_c01176{transform:matrix(0.274092,0.001370,-0.001250,0.249997,0,0);-ms-transform:matrix(0.274092,0.001370,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.274092,0.001370,-0.001250,0.249997,0,0);}
.m114_c01176{transform:matrix(0.274100,0.005482,-0.004999,0.249950,0,0);-ms-transform:matrix(0.274100,0.005482,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.274100,0.005482,-0.004999,0.249950,0,0);}
.m12d_c01176{transform:matrix(0.274131,0.004934,-0.004499,0.249960,0,0);-ms-transform:matrix(0.274131,0.004934,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.274131,0.004934,-0.004499,0.249960,0,0);}
.m56_c01176{transform:matrix(0.274540,0.001647,-0.001500,0.249996,0,0);-ms-transform:matrix(0.274540,0.001647,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.274540,0.001647,-0.001500,0.249996,0,0);}
.m4a_c01176{transform:matrix(0.275025,0.001650,-0.001500,0.249996,0,0);-ms-transform:matrix(0.275025,0.001650,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.275025,0.001650,-0.001500,0.249996,0,0);}
.m1b_c01176{transform:matrix(0.275195,0.001651,-0.001500,0.249996,0,0);-ms-transform:matrix(0.275195,0.001651,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.275195,0.001651,-0.001500,0.249996,0,0);}
.mc1_c01176{transform:matrix(0.275280,0.003303,-0.003000,0.249982,0,0);-ms-transform:matrix(0.275280,0.003303,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.275280,0.003303,-0.003000,0.249982,0,0);}
.m9_c01176{transform:matrix(0.275349,0.002478,-0.002250,0.249990,0,0);-ms-transform:matrix(0.275349,0.002478,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.275349,0.002478,-0.002250,0.249990,0,0);}
.m11d_c01176{transform:matrix(0.276015,0.004692,-0.004249,0.249964,0,0);-ms-transform:matrix(0.276015,0.004692,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.276015,0.004692,-0.004249,0.249964,0,0);}
.m5e_c01176{transform:matrix(0.276201,0.002210,-0.002000,0.249992,0,0);-ms-transform:matrix(0.276201,0.002210,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.276201,0.002210,-0.002000,0.249992,0,0);}
.m5b_c01176{transform:matrix(0.277006,0.002216,-0.002000,0.249992,0,0);-ms-transform:matrix(0.277006,0.002216,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.277006,0.002216,-0.002000,0.249992,0,0);}
.m48_c01176{transform:matrix(0.277045,0.001662,-0.001500,0.249996,0,0);-ms-transform:matrix(0.277045,0.001662,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.277045,0.001662,-0.001500,0.249996,0,0);}
.m39_c01176{transform:matrix(0.277255,0.001664,-0.001500,0.249996,0,0);-ms-transform:matrix(0.277255,0.001664,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.277255,0.001664,-0.001500,0.249996,0,0);}
.m111_c01176{transform:matrix(0.277265,0.005545,-0.004999,0.249950,0,0);-ms-transform:matrix(0.277265,0.005545,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.277265,0.005545,-0.004999,0.249950,0,0);}
.m129_c01176{transform:matrix(0.277275,0.004991,-0.004499,0.249960,0,0);-ms-transform:matrix(0.277275,0.004991,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.277275,0.004991,-0.004499,0.249960,0,0);}
.mf8_c01176{transform:matrix(0.277515,0.003330,-0.003000,0.249982,0,0);-ms-transform:matrix(0.277515,0.003330,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.277515,0.003330,-0.003000,0.249982,0,0);}
.m29_c01176{transform:matrix(0.278645,0.001672,-0.001500,0.249996,0,0);-ms-transform:matrix(0.278645,0.001672,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.278645,0.001672,-0.001500,0.249996,0,0);}
.m113_c01176{transform:matrix(0.278899,0.005578,-0.004999,0.249950,0,0);-ms-transform:matrix(0.278899,0.005578,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.278899,0.005578,-0.004999,0.249950,0,0);}
.md6_c01176{transform:matrix(0.278960,0.003348,-0.003000,0.249982,0,0);-ms-transform:matrix(0.278960,0.003348,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.278960,0.003348,-0.003000,0.249982,0,0);}
.mac_c01176{transform:matrix(0.278991,0.002232,-0.002000,0.249992,0,0);-ms-transform:matrix(0.278991,0.002232,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.278991,0.002232,-0.002000,0.249992,0,0);}
.m5f_c01176{transform:matrix(0.279056,0.002232,-0.002000,0.249992,0,0);-ms-transform:matrix(0.279056,0.002232,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.279056,0.002232,-0.002000,0.249992,0,0);}
.m25_c01176{transform:matrix(0.279150,0.001675,-0.001500,0.249996,0,0);-ms-transform:matrix(0.279150,0.001675,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.279150,0.001675,-0.001500,0.249996,0,0);}
.m2d_c01176{transform:matrix(0.279465,0.001677,-0.001500,0.249996,0,0);-ms-transform:matrix(0.279465,0.001677,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.279465,0.001677,-0.001500,0.249996,0,0);}
.m4c_c01176{transform:matrix(0.279885,0.001679,-0.001500,0.249996,0,0);-ms-transform:matrix(0.279885,0.001679,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.279885,0.001679,-0.001500,0.249996,0,0);}
.m85_c01176{transform:matrix(0.279886,0.002239,-0.002000,0.249992,0,0);-ms-transform:matrix(0.279886,0.002239,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.279886,0.002239,-0.002000,0.249992,0,0);}
.mc3_c01176{transform:matrix(0.279970,0.003360,-0.003000,0.249982,0,0);-ms-transform:matrix(0.279970,0.003360,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.279970,0.003360,-0.003000,0.249982,0,0);}
.mdb_c01176{transform:matrix(0.280000,0.003360,-0.003000,0.249982,0,0);-ms-transform:matrix(0.280000,0.003360,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.280000,0.003360,-0.003000,0.249982,0,0);}
.m8d_c01176{transform:matrix(0.280336,0.002243,-0.002000,0.249992,0,0);-ms-transform:matrix(0.280336,0.002243,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.280336,0.002243,-0.002000,0.249992,0,0);}
.mff_c01176{transform:matrix(0.280475,0.003366,-0.003000,0.249982,0,0);-ms-transform:matrix(0.280475,0.003366,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.280475,0.003366,-0.003000,0.249982,0,0);}
.m38_c01176{transform:matrix(0.280670,0.001684,-0.001500,0.249996,0,0);-ms-transform:matrix(0.280670,0.001684,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.280670,0.001684,-0.001500,0.249996,0,0);}
.m17_c01176{transform:matrix(0.280786,0.001404,-0.001250,0.249997,0,0);-ms-transform:matrix(0.280786,0.001404,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.280786,0.001404,-0.001250,0.249997,0,0);}
.m95_c01176{transform:matrix(0.281276,0.002250,-0.002000,0.249992,0,0);-ms-transform:matrix(0.281276,0.002250,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.281276,0.002250,-0.002000,0.249992,0,0);}
.m3b_c01176{transform:matrix(0.281505,0.001689,-0.001500,0.249996,0,0);-ms-transform:matrix(0.281505,0.001689,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.281505,0.001689,-0.001500,0.249996,0,0);}
.mcd_c01176{transform:matrix(0.281930,0.003383,-0.003000,0.249982,0,0);-ms-transform:matrix(0.281930,0.003383,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.281930,0.003383,-0.003000,0.249982,0,0);}
.m119_c01176{transform:matrix(0.282189,0.005644,-0.004999,0.249950,0,0);-ms-transform:matrix(0.282189,0.005644,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.282189,0.005644,-0.004999,0.249950,0,0);}
.m34_c01176{transform:matrix(0.282315,0.001694,-0.001500,0.249996,0,0);-ms-transform:matrix(0.282315,0.001694,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.282315,0.001694,-0.001500,0.249996,0,0);}
.m116_c01176{transform:matrix(0.282424,0.005648,-0.004999,0.249950,0,0);-ms-transform:matrix(0.282424,0.005648,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.282424,0.005648,-0.004999,0.249950,0,0);}
.m96_c01176{transform:matrix(0.286046,0.002288,-0.002000,0.249992,0,0);-ms-transform:matrix(0.286046,0.002288,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.286046,0.002288,-0.002000,0.249992,0,0);}
.mc2_c01176{transform:matrix(0.287284,0.003447,-0.003000,0.249982,0,0);-ms-transform:matrix(0.287284,0.003447,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.287284,0.003447,-0.003000,0.249982,0,0);}
.mdc_c01176{transform:matrix(0.287569,0.003451,-0.003000,0.249982,0,0);-ms-transform:matrix(0.287569,0.003451,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.287569,0.003451,-0.003000,0.249982,0,0);}
.mc5_c01176{transform:matrix(0.287744,0.003453,-0.003000,0.249982,0,0);-ms-transform:matrix(0.287744,0.003453,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.287744,0.003453,-0.003000,0.249982,0,0);}
.m22_c01176{transform:matrix(0.289425,0.001737,-0.001500,0.249996,0,0);-ms-transform:matrix(0.289425,0.001737,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.289425,0.001737,-0.001500,0.249996,0,0);}
.mc6_c01176{transform:matrix(0.290329,0.003484,-0.003000,0.249982,0,0);-ms-transform:matrix(0.290329,0.003484,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.290329,0.003484,-0.003000,0.249982,0,0);}
.m1e_c01176{transform:matrix(0.290395,0.001742,-0.001500,0.249996,0,0);-ms-transform:matrix(0.290395,0.001742,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.290395,0.001742,-0.001500,0.249996,0,0);}
.m146_c01176{transform:matrix(0.291172,0.004368,-0.003750,0.249972,0,0);-ms-transform:matrix(0.291172,0.004368,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.291172,0.004368,-0.003750,0.249972,0,0);}
.mc7_c01176{transform:matrix(0.292014,0.003504,-0.003000,0.249982,0,0);-ms-transform:matrix(0.292014,0.003504,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.292014,0.003504,-0.003000,0.249982,0,0);}
.m21_c01176{transform:matrix(0.292045,0.001752,-0.001500,0.249996,0,0);-ms-transform:matrix(0.292045,0.001752,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.292045,0.001752,-0.001500,0.249996,0,0);}
.m155_c01176{transform:matrix(0.292232,0.004383,-0.003750,0.249972,0,0);-ms-transform:matrix(0.292232,0.004383,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.292232,0.004383,-0.003750,0.249972,0,0);}
.m27_c01176{transform:matrix(0.296400,0.001778,-0.001500,0.249996,0,0);-ms-transform:matrix(0.296400,0.001778,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.296400,0.001778,-0.001500,0.249996,0,0);}
.m1f_c01176{transform:matrix(0.297735,0.001786,-0.001500,0.249996,0,0);-ms-transform:matrix(0.297735,0.001786,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.297735,0.001786,-0.001500,0.249996,0,0);}
.m1d_c01176{transform:matrix(0.300350,0.001802,-0.001500,0.249996,0,0);-ms-transform:matrix(0.300350,0.001802,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.300350,0.001802,-0.001500,0.249996,0,0);}
.m14f_c01176{transform:matrix(0.300466,0.004507,-0.003750,0.249972,0,0);-ms-transform:matrix(0.300466,0.004507,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.300466,0.004507,-0.003750,0.249972,0,0);}
.m8f_c01176{transform:matrix(0.307665,0.002461,-0.002000,0.249992,0,0);-ms-transform:matrix(0.307665,0.002461,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.307665,0.002461,-0.002000,0.249992,0,0);}
.mbc_c01176{transform:matrix(0.308598,0.003703,-0.003000,0.249982,0,0);-ms-transform:matrix(0.308598,0.003703,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.308598,0.003703,-0.003000,0.249982,0,0);}
.mbf_c01176{transform:matrix(0.308878,0.003707,-0.003000,0.249982,0,0);-ms-transform:matrix(0.308878,0.003707,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.308878,0.003707,-0.003000,0.249982,0,0);}
.m15e_c01176{transform:matrix(0.309110,0.004637,-0.003750,0.249972,0,0);-ms-transform:matrix(0.309110,0.004637,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.309110,0.004637,-0.003750,0.249972,0,0);}
.mc4_c01176{transform:matrix(0.319237,0.003831,-0.003000,0.249982,0,0);-ms-transform:matrix(0.319237,0.003831,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.319237,0.003831,-0.003000,0.249982,0,0);}
.m117_c01176{transform:matrix(0.325205,0.006504,-0.004999,0.249950,0,0);-ms-transform:matrix(0.325205,0.006504,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.325205,0.006504,-0.004999,0.249950,0,0);}
.m14d_c01176{transform:matrix(0.333762,0.005006,-0.003750,0.249972,0,0);-ms-transform:matrix(0.333762,0.005006,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.333762,0.005006,-0.003750,0.249972,0,0);}
.ma_c01176{transform:matrix(0.342696,0.003084,-0.002250,0.249990,0,0);-ms-transform:matrix(0.342696,0.003084,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.342696,0.003084,-0.002250,0.249990,0,0);}
.m144_c01176{transform:matrix(0.344441,0.005167,-0.003750,0.249972,0,0);-ms-transform:matrix(0.344441,0.005167,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.344441,0.005167,-0.003750,0.249972,0,0);}
.m149_c01176{transform:matrix(0.356350,0.005345,-0.003750,0.249972,0,0);-ms-transform:matrix(0.356350,0.005345,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.356350,0.005345,-0.003750,0.249972,0,0);}
.m127_c01176{transform:matrix(0.360402,0.006487,-0.004499,0.249960,0,0);-ms-transform:matrix(0.360402,0.006487,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.360402,0.006487,-0.004499,0.249960,0,0);}
.m26_c01176{transform:matrix(0.369038,0.002214,-0.001500,0.249996,0,0);-ms-transform:matrix(0.369038,0.002214,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.369038,0.002214,-0.001500,0.249996,0,0);}
.m137_c01176{transform:matrix(0.392816,0.005892,-0.003750,0.249972,0,0);-ms-transform:matrix(0.392816,0.005892,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.392816,0.005892,-0.003750,0.249972,0,0);}
.m143_c01176{transform:matrix(0.396545,0.005948,-0.003750,0.249972,0,0);-ms-transform:matrix(0.396545,0.005948,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.396545,0.005948,-0.003750,0.249972,0,0);}
.m87_c01176{transform:matrix(0.429521,0.003436,-0.002000,0.249992,0,0);-ms-transform:matrix(0.429521,0.003436,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.429521,0.003436,-0.002000,0.249992,0,0);}
.m136_c01176{transform:matrix(0.503188,0.007548,-0.003750,0.249972,0,0);-ms-transform:matrix(0.503188,0.007548,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.503188,0.007548,-0.003750,0.249972,0,0);}
.m15f_c01176{transform:matrix(0.582429,0.008736,-0.003750,0.249972,0,0);-ms-transform:matrix(0.582429,0.008736,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.582429,0.008736,-0.003750,0.249972,0,0);}
.m142_c01176{transform:matrix(0.744801,0.011172,-0.003750,0.249972,0,0);-ms-transform:matrix(0.744801,0.011172,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.744801,0.011172,-0.003750,0.249972,0,0);}
.v0_c01176{vertical-align:0.000000px;}
.ls0_c01176{letter-spacing:0.000000px;}
.sc__c01176{text-shadow:none;}
.sc0_c01176{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__c01176{-webkit-text-stroke:0px transparent;}
.sc0_c01176{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01176{word-spacing:0.000000px;}
._0_c01176{margin-left:-19.817486px;}
.fc0_c01176{color:transparent;}
.fs3_c01176{font-size:66.001188px;}
.fs9_c01176{font-size:66.004752px;}
.fs12_c01176{font-size:66.007425px;}
.fs2_c01176{font-size:72.000900px;}
.fs4_c01176{font-size:72.001296px;}
.fs5_c01176{font-size:72.002304px;}
.fsa_c01176{font-size:72.005184px;}
.fsd_c01176{font-size:72.010403px;}
.fse_c01176{font-size:72.011663px;}
.fsc_c01176{font-size:72.014399px;}
.fs6_c01176{font-size:78.002496px;}
.fs8_c01176{font-size:78.005616px;}
.fsf_c01176{font-size:78.008775px;}
.fs0_c01176{font-size:84.000000px;}
.fs7_c01176{font-size:84.002688px;}
.fs1_c01176{font-size:84.003402px;}
.fsb_c01176{font-size:90.006480px;}
.fs11_c01176{font-size:90.010124px;}
.fs10_c01176{font-size:108.012149px;}
.y0_c01176{bottom:0.000000px;}
.y168_c01176{bottom:60.180922px;}
.y167_c01176{bottom:61.532175px;}
.y166_c01176{bottom:62.845020px;}
.y165_c01176{bottom:64.158135px;}
.y164_c01176{bottom:65.674035px;}
.y163_c01176{bottom:66.040320px;}
.y162_c01176{bottom:66.986812px;}
.y161_c01176{bottom:67.536277px;}
.y160_c01176{bottom:69.038752px;}
.y15f_c01176{bottom:69.611940px;}
.y15e_c01176{bottom:71.273917px;}
.y15d_c01176{bottom:80.876857px;}
.y15c_c01176{bottom:82.476532px;}
.y15b_c01176{bottom:82.879845px;}
.y15a_c01176{bottom:84.066247px;}
.y159_c01176{bottom:85.256475px;}
.y158_c01176{bottom:86.247900px;}
.y157_c01176{bottom:87.248925px;}
.y156_c01176{bottom:89.041762px;}
.y155_c01176{bottom:89.634412px;}
.y154_c01176{bottom:94.056892px;}
.y153_c01176{bottom:95.292150px;}
.y152_c01176{bottom:95.885812px;}
.y151_c01176{bottom:97.262070px;}
.y150_c01176{bottom:98.545815px;}
.y14f_c01176{bottom:99.284595px;}
.y14e_c01176{bottom:100.073887px;}
.y14d_c01176{bottom:100.704420px;}
.y14c_c01176{bottom:101.063197px;}
.y14b_c01176{bottom:102.737062px;}
.y14a_c01176{bottom:103.491082px;}
.y149_c01176{bottom:105.030195px;}
.y148_c01176{bottom:113.968155px;}
.y147_c01176{bottom:114.930142px;}
.y146_c01176{bottom:117.182662px;}
.y145_c01176{bottom:118.697820px;}
.y144_c01176{bottom:119.804572px;}
.y143_c01176{bottom:121.319932px;}
.y142_c01176{bottom:122.325877px;}
.y141_c01176{bottom:123.398947px;}
.y140_c01176{bottom:123.945262px;}
.y13f_c01176{bottom:124.471410px;}
.y13e_c01176{bottom:133.266630px;}
.y13d_c01176{bottom:134.768955px;}
.y13c_c01176{bottom:135.798487px;}
.y13b_c01176{bottom:136.786755px;}
.y13a_c01176{bottom:138.877297px;}
.y139_c01176{bottom:140.598165px;}
.y138_c01176{bottom:141.403912px;}
.y137_c01176{bottom:142.027500px;}
.y136_c01176{bottom:151.384845px;}
.y135_c01176{bottom:152.606244px;}
.y134_c01176{bottom:154.016211px;}
.y133_c01176{bottom:154.604271px;}
.y132_c01176{bottom:155.391645px;}
.y131_c01176{bottom:156.382059px;}
.y130_c01176{bottom:158.356731px;}
.y12f_c01176{bottom:159.542382px;}
.y12e_c01176{bottom:161.135760px;}
.y12d_c01176{bottom:161.733000px;}
.y12c_c01176{bottom:195.473752px;}
.y12b_c01176{bottom:196.869928px;}
.y12a_c01176{bottom:197.448345px;}
.y129_c01176{bottom:198.182158px;}
.y128_c01176{bottom:199.339986px;}
.y127_c01176{bottom:200.836504px;}
.y126_c01176{bottom:201.387534px;}
.y125_c01176{bottom:202.336822px;}
.y124_c01176{bottom:204.026784px;}
.y123_c01176{bottom:205.495686px;}
.y122_c01176{bottom:206.449947px;}
.y121_c01176{bottom:207.363000px;}
.y120_c01176{bottom:232.641510px;}
.y11f_c01176{bottom:233.246400px;}
.y11e_c01176{bottom:233.925900px;}
.y11d_c01176{bottom:236.363610px;}
.y11c_c01176{bottom:237.032850px;}
.y11b_c01176{bottom:238.804140px;}
.y11a_c01176{bottom:241.002150px;}
.y119_c01176{bottom:241.887030px;}
.y118_c01176{bottom:244.086000px;}
.y117_c01176{bottom:274.855998px;}
.y116_c01176{bottom:277.679844px;}
.y115_c01176{bottom:278.208780px;}
.y114_c01176{bottom:278.733546px;}
.y113_c01176{bottom:279.435348px;}
.y112_c01176{bottom:304.658652px;}
.y111_c01176{bottom:305.008218px;}
.y110_c01176{bottom:306.081066px;}
.y10f_c01176{bottom:306.621174px;}
.y10e_c01176{bottom:307.333896px;}
.y10d_c01176{bottom:308.190402px;}
.y10c_c01176{bottom:308.737860px;}
.y10b_c01176{bottom:310.320474px;}
.y10a_c01176{bottom:310.867878px;}
.y109_c01176{bottom:311.930976px;}
.y108_c01176{bottom:312.980994px;}
.y107_c01176{bottom:314.224488px;}
.y106_c01176{bottom:314.568378px;}
.y105_c01176{bottom:315.618612px;}
.y104_c01176{bottom:339.894378px;}
.y103_c01176{bottom:340.249872px;}
.y102_c01176{bottom:341.221428px;}
.y101_c01176{bottom:341.818416px;}
.y100_c01176{bottom:342.905616px;}
.yff_c01176{bottom:343.277346px;}
.yfe_c01176{bottom:343.661202px;}
.yfd_c01176{bottom:345.105360px;}
.yfc_c01176{bottom:345.839694px;}
.yfb_c01176{bottom:346.211136px;}
.yfa_c01176{bottom:346.671228px;}
.yf9_c01176{bottom:378.127590px;}
.yf8_c01176{bottom:378.337104px;}
.yf7_c01176{bottom:378.733476px;}
.yf6_c01176{bottom:379.533126px;}
.yf5_c01176{bottom:379.726692px;}
.yf4_c01176{bottom:380.320302px;}
.yf3_c01176{bottom:380.658498px;}
.yf2_c01176{bottom:380.924196px;}
.yf1_c01176{bottom:381.704574px;}
.yf0_c01176{bottom:382.040778px;}
.yef_c01176{bottom:411.162882px;}
.yee_c01176{bottom:411.554148px;}
.yed_c01176{bottom:412.258446px;}
.yec_c01176{bottom:413.044524px;}
.yeb_c01176{bottom:413.848536px;}
.yea_c01176{bottom:414.354042px;}
.ye9_c01176{bottom:415.051782px;}
.ye8_c01176{bottom:415.351374px;}
.ye7_c01176{bottom:415.944024px;}
.ye6_c01176{bottom:416.631498px;}
.ye5_c01176{bottom:417.032400px;}
.ye4_c01176{bottom:417.413418px;}
.ye3_c01176{bottom:448.675824px;}
.ye2_c01176{bottom:448.909350px;}
.ye1_c01176{bottom:449.223834px;}
.ye0_c01176{bottom:450.160020px;}
.ydf_c01176{bottom:451.236384px;}
.yde_c01176{bottom:451.628136px;}
.ydd_c01176{bottom:452.244948px;}
.ydc_c01176{bottom:452.471460px;}
.ydb_c01176{bottom:452.632842px;}
.yda_c01176{bottom:453.327084px;}
.yd9_c01176{bottom:481.841406px;}
.yd8_c01176{bottom:482.566308px;}
.yd7_c01176{bottom:482.937204px;}
.yd6_c01176{bottom:483.415524px;}
.yd5_c01176{bottom:484.035720px;}
.yd4_c01176{bottom:484.404102px;}
.yd3_c01176{bottom:484.882242px;}
.yd2_c01176{bottom:485.378250px;}
.yd1_c01176{bottom:486.718440px;}
.yd0_c01176{bottom:487.203276px;}
.ycf_c01176{bottom:487.441026px;}
.yce_c01176{bottom:488.278620px;}
.ycd_c01176{bottom:488.771280px;}
.ycc_c01176{bottom:489.240642px;}
.ycb_c01176{bottom:520.733832px;}
.yca_c01176{bottom:521.351454px;}
.yc9_c01176{bottom:521.939286px;}
.yc8_c01176{bottom:522.360012px;}
.yc7_c01176{bottom:522.745074px;}
.yc6_c01176{bottom:523.152606px;}
.yc5_c01176{bottom:523.638876px;}
.yc4_c01176{bottom:523.834992px;}
.yc3_c01176{bottom:524.544522px;}
.yc2_c01176{bottom:525.020598px;}
.yc1_c01176{bottom:525.328560px;}
.yc0_c01176{bottom:526.108698px;}
.ybf_c01176{bottom:526.498272px;}
.ybe_c01176{bottom:555.749916px;}
.ybd_c01176{bottom:556.825290px;}
.ybc_c01176{bottom:557.091348px;}
.ybb_c01176{bottom:558.173346px;}
.yba_c01176{bottom:558.837582px;}
.yb9_c01176{bottom:559.222728px;}
.yb8_c01176{bottom:560.159520px;}
.yb7_c01176{bottom:560.551578px;}
.yb6_c01176{bottom:561.607890px;}
.yb5_c01176{bottom:562.411500px;}
.yb1_c01176{bottom:595.577088px;}
.yb0_c01176{bottom:595.577112px;}
.yb2_c01176{bottom:595.577460px;}
.yb3_c01176{bottom:595.578132px;}
.yb4_c01176{bottom:595.578372px;}
.yaf_c01176{bottom:625.982820px;}
.yae_c01176{bottom:626.768868px;}
.yad_c01176{bottom:627.096432px;}
.yac_c01176{bottom:627.974028px;}
.yab_c01176{bottom:628.313700px;}
.yaa_c01176{bottom:628.640784px;}
.ya9_c01176{bottom:628.867212px;}
.ya8_c01176{bottom:629.760900px;}
.ya7_c01176{bottom:630.084720px;}
.ya6_c01176{bottom:630.413988px;}
.ya5_c01176{bottom:631.079124px;}
.ya4_c01176{bottom:631.507848px;}
.ya3_c01176{bottom:632.175012px;}
.ya2_c01176{bottom:632.603676px;}
.ya1_c01176{bottom:663.127620px;}
.ya0_c01176{bottom:663.327324px;}
.y9f_c01176{bottom:663.735240px;}
.y9e_c01176{bottom:663.998208px;}
.y9d_c01176{bottom:664.195764px;}
.y9c_c01176{bottom:664.598628px;}
.y9b_c01176{bottom:664.927596px;}
.y9a_c01176{bottom:665.188344px;}
.y99_c01176{bottom:665.924532px;}
.y98_c01176{bottom:666.648600px;}
.y97_c01176{bottom:666.772740px;}
.y96_c01176{bottom:667.165104px;}
.y95_c01176{bottom:695.657916px;}
.y94_c01176{bottom:696.759300px;}
.y93_c01176{bottom:697.501932px;}
.y92_c01176{bottom:697.880640px;}
.y91_c01176{bottom:698.113104px;}
.y90_c01176{bottom:699.453528px;}
.y8f_c01176{bottom:700.178604px;}
.y8e_c01176{bottom:700.558584px;}
.y8d_c01176{bottom:701.517360px;}
.y8c_c01176{bottom:702.481740px;}
.y8b_c01176{bottom:703.075668px;}
.y8a_c01176{bottom:731.574672px;}
.y89_c01176{bottom:732.205524px;}
.y88_c01176{bottom:733.117884px;}
.y87_c01176{bottom:733.519128px;}
.y86_c01176{bottom:733.818072px;}
.y85_c01176{bottom:734.118876px;}
.y84_c01176{bottom:734.316096px;}
.y83_c01176{bottom:734.911560px;}
.y82_c01176{bottom:735.207816px;}
.y81_c01176{bottom:735.994956px;}
.y80_c01176{bottom:736.396188px;}
.y7f_c01176{bottom:736.602228px;}
.y7e_c01176{bottom:737.290272px;}
.y7d_c01176{bottom:737.778396px;}
.y7c_c01176{bottom:738.177684px;}
.y7b_c01176{bottom:767.361072px;}
.y7a_c01176{bottom:767.797776px;}
.y79_c01176{bottom:768.137772px;}
.y78_c01176{bottom:768.473160px;}
.y77_c01176{bottom:769.582956px;}
.y76_c01176{bottom:770.911140px;}
.y75_c01176{bottom:771.238548px;}
.y74_c01176{bottom:772.235088px;}
.y73_c01176{bottom:772.677936px;}
.y72_c01176{bottom:773.007420px;}
.y71_c01176{bottom:773.658408px;}
.y70_c01176{bottom:774.090924px;}
.y6f_c01176{bottom:803.493756px;}
.y6e_c01176{bottom:804.383580px;}
.y6d_c01176{bottom:804.869868px;}
.y6c_c01176{bottom:805.885128px;}
.y6b_c01176{bottom:806.478168px;}
.y6a_c01176{bottom:807.087840px;}
.y69_c01176{bottom:807.672972px;}
.y68_c01176{bottom:807.979584px;}
.y67_c01176{bottom:808.173480px;}
.y66_c01176{bottom:808.768560px;}
.y65_c01176{bottom:809.460636px;}
.y64_c01176{bottom:840.392532px;}
.y63_c01176{bottom:840.571896px;}
.y62_c01176{bottom:841.459668px;}
.y61_c01176{bottom:842.248716px;}
.y60_c01176{bottom:842.617284px;}
.y5f_c01176{bottom:842.883144px;}
.y5e_c01176{bottom:843.682368px;}
.y5d_c01176{bottom:844.300128px;}
.y5c_c01176{bottom:844.831500px;}
.y5b_c01176{bottom:876.614250px;}
.y5a_c01176{bottom:876.815139px;}
.y59_c01176{bottom:877.079118px;}
.y58_c01176{bottom:877.677033px;}
.y57_c01176{bottom:877.881153px;}
.y56_c01176{bottom:878.082024px;}
.y55_c01176{bottom:878.477295px;}
.y54_c01176{bottom:878.746260px;}
.y53_c01176{bottom:879.196629px;}
.y52_c01176{bottom:879.595113px;}
.y51_c01176{bottom:879.857454px;}
.y50_c01176{bottom:880.197636px;}
.y4f_c01176{bottom:911.656290px;}
.y4e_c01176{bottom:911.789031px;}
.y4d_c01176{bottom:912.393435px;}
.y4c_c01176{bottom:913.132191px;}
.y4b_c01176{bottom:913.519308px;}
.y4a_c01176{bottom:913.653714px;}
.y49_c01176{bottom:914.313180px;}
.y48_c01176{bottom:914.445912px;}
.y47_c01176{bottom:915.110220px;}
.y46_c01176{bottom:915.568662px;}
.y45_c01176{bottom:946.621584px;}
.y44_c01176{bottom:946.952181px;}
.y43_c01176{bottom:947.088180px;}
.y42_c01176{bottom:947.413818px;}
.y41_c01176{bottom:947.750922px;}
.y40_c01176{bottom:948.015000px;}
.y3f_c01176{bottom:948.551211px;}
.y3e_c01176{bottom:948.816792px;}
.y3d_c01176{bottom:949.080879px;}
.y3c_c01176{bottom:949.283496px;}
.y3b_c01176{bottom:949.477869px;}
.y3a_c01176{bottom:950.339709px;}
.y39_c01176{bottom:950.668533px;}
.y38_c01176{bottom:981.624276px;}
.y37_c01176{bottom:982.487634px;}
.y36_c01176{bottom:982.715088px;}
.y35_c01176{bottom:982.945692px;}
.y34_c01176{bottom:983.567172px;}
.y33_c01176{bottom:984.722010px;}
.y32_c01176{bottom:985.035822px;}
.y31_c01176{bottom:985.420182px;}
.y30_c01176{bottom:986.040132px;}
.y2f_c01176{bottom:1016.669757px;}
.y2e_c01176{bottom:1016.875506px;}
.y2d_c01176{bottom:1017.141105px;}
.y2c_c01176{bottom:1017.687153px;}
.y2b_c01176{bottom:1018.403220px;}
.y2a_c01176{bottom:1018.678647px;}
.y29_c01176{bottom:1018.941096px;}
.y28_c01176{bottom:1019.538921px;}
.y27_c01176{bottom:1019.736534px;}
.y26_c01176{bottom:1019.931177px;}
.y25_c01176{bottom:1020.600183px;}
.y24_c01176{bottom:1051.650477px;}
.y23_c01176{bottom:1051.852896px;}
.y22_c01176{bottom:1052.180262px;}
.y21_c01176{bottom:1052.588547px;}
.y20_c01176{bottom:1052.985438px;}
.y1f_c01176{bottom:1053.187911px;}
.y1e_c01176{bottom:1053.792198px;}
.y1d_c01176{bottom:1054.192374px;}
.y1c_c01176{bottom:1054.843623px;}
.y1b_c01176{bottom:1055.046087px;}
.y1a_c01176{bottom:1055.430000px;}
.y19_c01176{bottom:1087.566705px;}
.y18_c01176{bottom:1087.844820px;}
.y17_c01176{bottom:1088.021760px;}
.y16_c01176{bottom:1088.630648px;}
.y15_c01176{bottom:1088.955923px;}
.y14_c01176{bottom:1089.344797px;}
.y13_c01176{bottom:1089.517545px;}
.y12_c01176{bottom:1089.625522px;}
.y11_c01176{bottom:1090.061663px;}
.y10_c01176{bottom:1090.234470px;}
.yf_c01176{bottom:1090.561163px;}
.ye_c01176{bottom:1090.800000px;}
.yd_c01176{bottom:1122.686488px;}
.yc_c01176{bottom:1123.602585px;}
.yb_c01176{bottom:1124.193183px;}
.ya_c01176{bottom:1124.596387px;}
.y9_c01176{bottom:1124.779258px;}
.y8_c01176{bottom:1125.286805px;}
.y7_c01176{bottom:1125.590568px;}
.y6_c01176{bottom:1126.377969px;}
.y5_c01176{bottom:1127.082723px;}
.y4_c01176{bottom:1127.369193px;}
.y3_c01176{bottom:1127.680071px;}
.y2_c01176{bottom:1128.061500px;}
.y1_c01176{bottom:1199.224500px;}
.h5_c01176{height:66.001188px;}
.hb_c01176{height:66.004752px;}
.h14_c01176{height:66.007425px;}
.h4_c01176{height:72.000900px;}
.h6_c01176{height:72.001296px;}
.h7_c01176{height:72.002304px;}
.hc_c01176{height:72.005184px;}
.hf_c01176{height:72.010403px;}
.h10_c01176{height:72.011663px;}
.he_c01176{height:72.014399px;}
.h8_c01176{height:78.002496px;}
.ha_c01176{height:78.005616px;}
.h11_c01176{height:78.008775px;}
.h2_c01176{height:84.000000px;}
.h9_c01176{height:84.002688px;}
.h3_c01176{height:84.003402px;}
.hd_c01176{height:90.006480px;}
.h13_c01176{height:90.010124px;}
.h12_c01176{height:108.012149px;}
.h1_c01176{height:1258.500000px;}
.h0_c01176{height:1258.740000px;}
.w0_c01176{width:904.200000px;}
.w1_c01176{width:904.500000px;}
.x0_c01176{left:0.000000px;}
.x10_c01176{left:151.689000px;}
.x21_c01176{left:153.776430px;}
.x39_c01176{left:154.899804px;}
.x4_c01176{left:156.237000px;}
.xad_c01176{left:164.766000px;}
.xa8_c01176{left:184.755000px;}
.x90_c01176{left:195.345372px;}
.x6a_c01176{left:197.226156px;}
.x5_c01176{left:198.618000px;}
.xbc_c01176{left:205.862025px;}
.xa1_c01176{left:206.871000px;}
.xb0_c01176{left:208.018448px;}
.x30_c01176{left:209.435886px;}
.x40_c01176{left:210.805557px;}
.x94_c01176{left:217.740438px;}
.x18_c01176{left:220.501500px;}
.x91_c01176{left:229.049268px;}
.x3a_c01176{left:231.306804px;}
.x6_c01176{left:233.160000px;}
.x95_c01176{left:239.271912px;}
.x62_c01176{left:240.743712px;}
.x29_c01176{left:242.652057px;}
.x86_c01176{left:251.279802px;}
.x59_c01176{left:252.850584px;}
.x19_c01176{left:254.245500px;}
.xae_c01176{left:260.055000px;}
.x48_c01176{left:262.870500px;}
.x6b_c01176{left:263.933088px;}
.x7_c01176{left:264.990000px;}
.xb1_c01176{left:271.114058px;}
.x87_c01176{left:274.229670px;}
.x7c_c01176{left:284.180262px;}
.x74_c01176{left:285.929568px;}
.xb7_c01176{left:291.811163px;}
.x52_c01176{left:296.303448px;}
.x22_c01176{left:297.717930px;}
.x11_c01176{left:299.356500px;}
.x9c_c01176{left:305.533326px;}
.x6c_c01176{left:306.835404px;}
.x80_c01176{left:317.649996px;}
.x4d_c01176{left:319.006296px;}
.x41_c01176{left:320.943057px;}
.x49_c01176{left:329.292000px;}
.x23_c01176{left:330.653430px;}
.xb2_c01176{left:334.250168px;}
.x81_c01176{left:339.212748px;}
.x53_c01176{left:340.596240px;}
.x2a_c01176{left:342.263454px;}
.x8_c01176{left:343.296000px;}
.xa2_c01176{left:349.410000px;}
.x31_c01176{left:353.075886px;}
.x63_c01176{left:361.441644px;}
.x1a_c01176{left:362.787000px;}
.x3b_c01176{left:364.146804px;}
.x7d_c01176{left:371.394912px;}
.x6d_c01176{left:373.288836px;}
.x75_c01176{left:374.492244px;}
.x96_c01176{left:382.641036px;}
.x5f_c01176{left:383.776128px;}
.x32_c01176{left:385.471386px;}
.x12_c01176{left:386.584500px;}
.xb3_c01176{left:393.411390px;}
.x88_c01176{left:394.638888px;}
.x42_c01176{left:396.004557px;}
.x4a_c01176{left:406.512000px;}
.x13_c01176{left:408.180000px;}
.x77_c01176{left:416.995500px;}
.x4e_c01176{left:418.098504px;}
.x33_c01176{left:419.240886px;}
.x92_c01176{left:426.967626px;}
.x1b_c01176{left:429.483000px;}
.x9_c01176{left:430.785000px;}
.x1_c01176{left:436.590000px;}
.x6e_c01176{left:438.611292px;}
.x43_c01176{left:440.832057px;}
.x14_c01176{left:442.729500px;}
.xb8_c01176{left:446.581687px;}
.x78_c01176{left:449.667000px;}
.x2_c01176{left:457.920000px;}
.xbe_c01176{left:459.319403px;}
.x93_c01176{left:461.831040px;}
.x34_c01176{left:463.255386px;}
.xa_c01176{left:464.536500px;}
.x54_c01176{left:472.900116px;}
.x24_c01176{left:474.032430px;}
.xb4_c01176{left:482.532713px;}
.x5a_c01176{left:484.280736px;}
.x4f_c01176{left:485.869464px;}
.x8b_c01176{left:494.005470px;}
.x3c_c01176{left:496.458804px;}
.x3_c01176{left:502.470000px;}
.xa9_c01176{left:503.872500px;}
.x82_c01176{left:505.050228px;}
.x2b_c01176{left:507.235464px;}
.xaf_c01176{left:514.149000px;}
.xbd_c01176{left:515.259120px;}
.x5b_c01176{left:517.187472px;}
.xb_c01176{left:520.930500px;}
.x7e_c01176{left:526.143492px;}
.x64_c01176{left:527.498796px;}
.x1c_c01176{left:530.197500px;}
.xa3_c01176{left:537.073500px;}
.x8e_c01176{left:538.333884px;}
.x44_c01176{left:540.189057px;}
.xc_c01176{left:541.249500px;}
.xaa_c01176{left:547.615500px;}
.x6f_c01176{left:550.686504px;}
.x50_c01176{left:551.748936px;}
.x79_c01176{left:559.828500px;}
.x3d_c01176{left:560.978304px;}
.x1d_c01176{left:563.943000px;}
.xb9_c01176{left:566.483287px;}
.x7f_c01176{left:571.481130px;}
.x45_c01176{left:574.209057px;}
.xab_c01176{left:580.285500px;}
.x65_c01176{left:582.308172px;}
.x5c_c01176{left:583.369944px;}
.xd_c01176{left:586.050000px;}
.x83_c01176{left:593.605290px;}
.x2c_c01176{left:596.064933px;}
.x76_c01176{left:597.789036px;}
.x89_c01176{left:604.369470px;}
.x55_c01176{left:605.733492px;}
.x7a_c01176{left:615.181500px;}
.x70_c01176{left:617.342436px;}
.xa4_c01176{left:625.104000px;}
.x60_c01176{left:627.200784px;}
.x2d_c01176{left:628.998735px;}
.x1e_c01176{left:630.091500px;}
.xb5_c01176{left:636.722077px;}
.xba_c01176{left:637.763070px;}
.x25_c01176{left:639.281430px;}
.x35_c01176{left:640.900386px;}
.x9e_c01176{left:648.009000px;}
.x66_c01176{left:649.542252px;}
.xe_c01176{left:651.672000px;}
.xac_c01176{left:658.617000px;}
.x2e_c01176{left:661.407537px;}
.x51_c01176{left:664.593036px;}
.x97_c01176{left:669.967248px;}
.x5d_c01176{left:671.927736px;}
.x46_c01176{left:673.861557px;}
.x67_c01176{left:682.487280px;}
.x3e_c01176{left:684.104304px;}
.xa5_c01176{left:693.211500px;}
.x36_c01176{left:697.084386px;}
.x1f_c01176{left:698.139000px;}
.xbf_c01176{left:702.931590px;}
.x71_c01176{left:705.103032px;}
.x15_c01176{left:707.337000px;}
.x98_c01176{left:714.483606px;}
.x56_c01176{left:716.706216px;}
.x47_c01176{left:717.858057px;}
.x9d_c01176{left:724.576932px;}
.x68_c01176{left:726.233976px;}
.x7b_c01176{left:727.519500px;}
.x61_c01176{left:729.115836px;}
.x26_c01176{left:730.289430px;}
.xa6_c01176{left:736.377000px;}
.x72_c01176{left:737.798004px;}
.x16_c01176{left:742.725000px;}
.xbb_c01176{left:747.186142px;}
.x99_c01176{left:748.240986px;}
.x57_c01176{left:750.191676px;}
.x37_c01176{left:751.357386px;}
.xf_c01176{left:753.460500px;}
.x84_c01176{left:760.756806px;}
.xb6_c01176{left:769.186095px;}
.x8f_c01176{left:770.274606px;}
.x27_c01176{left:774.555930px;}
.xc0_c01176{left:780.152273px;}
.x8a_c01176{left:782.977680px;}
.x2f_c01176{left:784.799799px;}
.x20_c01176{left:786.436500px;}
.x69_c01176{left:794.287068px;}
.x4b_c01176{left:795.321000px;}
.x17_c01176{left:798.348000px;}
.x9f_c01176{left:803.869500px;}
.x8c_c01176{left:805.091166px;}
.x3f_c01176{left:806.961804px;}
.x28_c01176{left:808.847430px;}
.x9a_c01176{left:815.266764px;}
.x73_c01176{left:816.365244px;}
.x4c_c01176{left:817.741500px;}
.x85_c01176{left:826.666098px;}
.x58_c01176{left:827.965440px;}
.x38_c01176{left:829.123386px;}
.xa0_c01176{left:834.114000px;}
.x9b_c01176{left:837.146220px;}
.x8d_c01176{left:848.573232px;}
.xa7_c01176{left:852.529500px;}
.xc1_c01176{left:859.633388px;}
.x5e_c01176{left:887.795496px;}
@media print{
.v0_c01176{vertical-align:0.000000pt;}
.ls0_c01176{letter-spacing:0.000000pt;}
.ws0_c01176{word-spacing:0.000000pt;}
._0_c01176{margin-left:-17.615543pt;}
.fs3_c01176{font-size:58.667723pt;}
.fs9_c01176{font-size:58.670891pt;}
.fs12_c01176{font-size:58.673266pt;}
.fs2_c01176{font-size:64.000800pt;}
.fs4_c01176{font-size:64.001152pt;}
.fs5_c01176{font-size:64.002048pt;}
.fsa_c01176{font-size:64.004608pt;}
.fsd_c01176{font-size:64.009247pt;}
.fse_c01176{font-size:64.010367pt;}
.fsc_c01176{font-size:64.012799pt;}
.fs6_c01176{font-size:69.335552pt;}
.fs8_c01176{font-size:69.338325pt;}
.fsf_c01176{font-size:69.341133pt;}
.fs0_c01176{font-size:74.666667pt;}
.fs7_c01176{font-size:74.669056pt;}
.fs1_c01176{font-size:74.669691pt;}
.fsb_c01176{font-size:80.005760pt;}
.fs11_c01176{font-size:80.008999pt;}
.fs10_c01176{font-size:96.010799pt;}
.y0_c01176{bottom:0.000000pt;}
.y168_c01176{bottom:53.494153pt;}
.y167_c01176{bottom:54.695267pt;}
.y166_c01176{bottom:55.862240pt;}
.y165_c01176{bottom:57.029453pt;}
.y164_c01176{bottom:58.376920pt;}
.y163_c01176{bottom:58.702507pt;}
.y162_c01176{bottom:59.543833pt;}
.y161_c01176{bottom:60.032247pt;}
.y160_c01176{bottom:61.367780pt;}
.y15f_c01176{bottom:61.877280pt;}
.y15e_c01176{bottom:63.354593pt;}
.y15d_c01176{bottom:71.890540pt;}
.y15c_c01176{bottom:73.312473pt;}
.y15b_c01176{bottom:73.670973pt;}
.y15a_c01176{bottom:74.725553pt;}
.y159_c01176{bottom:75.783533pt;}
.y158_c01176{bottom:76.664800pt;}
.y157_c01176{bottom:77.554600pt;}
.y156_c01176{bottom:79.148233pt;}
.y155_c01176{bottom:79.675033pt;}
.y154_c01176{bottom:83.606127pt;}
.y153_c01176{bottom:84.704133pt;}
.y152_c01176{bottom:85.231833pt;}
.y151_c01176{bottom:86.455173pt;}
.y150_c01176{bottom:87.596280pt;}
.y14f_c01176{bottom:88.252973pt;}
.y14e_c01176{bottom:88.954567pt;}
.y14d_c01176{bottom:89.515040pt;}
.y14c_c01176{bottom:89.833953pt;}
.y14b_c01176{bottom:91.321833pt;}
.y14a_c01176{bottom:91.992073pt;}
.y149_c01176{bottom:93.360173pt;}
.y148_c01176{bottom:101.305027pt;}
.y147_c01176{bottom:102.160127pt;}
.y146_c01176{bottom:104.162367pt;}
.y145_c01176{bottom:105.509173pt;}
.y144_c01176{bottom:106.492953pt;}
.y143_c01176{bottom:107.839940pt;}
.y142_c01176{bottom:108.734113pt;}
.y141_c01176{bottom:109.687953pt;}
.y140_c01176{bottom:110.173567pt;}
.y13f_c01176{bottom:110.641253pt;}
.y13e_c01176{bottom:118.459227pt;}
.y13d_c01176{bottom:119.794627pt;}
.y13c_c01176{bottom:120.709767pt;}
.y13b_c01176{bottom:121.588227pt;}
.y13a_c01176{bottom:123.446487pt;}
.y139_c01176{bottom:124.976147pt;}
.y138_c01176{bottom:125.692367pt;}
.y137_c01176{bottom:126.246667pt;}
.y136_c01176{bottom:134.564307pt;}
.y135_c01176{bottom:135.649995pt;}
.y134_c01176{bottom:136.903299pt;}
.y133_c01176{bottom:137.426019pt;}
.y132_c01176{bottom:138.125907pt;}
.y131_c01176{bottom:139.006275pt;}
.y130_c01176{bottom:140.761539pt;}
.y12f_c01176{bottom:141.815451pt;}
.y12e_c01176{bottom:143.231787pt;}
.y12d_c01176{bottom:143.762667pt;}
.y12c_c01176{bottom:173.754447pt;}
.y12b_c01176{bottom:174.995492pt;}
.y12a_c01176{bottom:175.509640pt;}
.y129_c01176{bottom:176.161919pt;}
.y128_c01176{bottom:177.191099pt;}
.y127_c01176{bottom:178.521337pt;}
.y126_c01176{bottom:179.011141pt;}
.y125_c01176{bottom:179.854953pt;}
.y124_c01176{bottom:181.357141pt;}
.y123_c01176{bottom:182.662832pt;}
.y122_c01176{bottom:183.511064pt;}
.y121_c01176{bottom:184.322667pt;}
.y120_c01176{bottom:206.792453pt;}
.y11f_c01176{bottom:207.330133pt;}
.y11e_c01176{bottom:207.934133pt;}
.y11d_c01176{bottom:210.100987pt;}
.y11c_c01176{bottom:210.695867pt;}
.y11b_c01176{bottom:212.270347pt;}
.y11a_c01176{bottom:214.224133pt;}
.y119_c01176{bottom:215.010693pt;}
.y118_c01176{bottom:216.965333pt;}
.y117_c01176{bottom:244.316443pt;}
.y116_c01176{bottom:246.826528pt;}
.y115_c01176{bottom:247.296693pt;}
.y114_c01176{bottom:247.763152pt;}
.y113_c01176{bottom:248.386976pt;}
.y112_c01176{bottom:270.807691pt;}
.y111_c01176{bottom:271.118416pt;}
.y110_c01176{bottom:272.072059pt;}
.y10f_c01176{bottom:272.552155pt;}
.y10e_c01176{bottom:273.185685pt;}
.y10d_c01176{bottom:273.947024pt;}
.y10c_c01176{bottom:274.433653pt;}
.y10b_c01176{bottom:275.840421pt;}
.y10a_c01176{bottom:276.327003pt;}
.y109_c01176{bottom:277.271979pt;}
.y108_c01176{bottom:278.205328pt;}
.y107_c01176{bottom:279.310656pt;}
.y106_c01176{bottom:279.616336pt;}
.y105_c01176{bottom:280.549877pt;}
.y104_c01176{bottom:302.128336pt;}
.y103_c01176{bottom:302.444331pt;}
.y102_c01176{bottom:303.307936pt;}
.y101_c01176{bottom:303.838592pt;}
.y100_c01176{bottom:304.804992pt;}
.yff_c01176{bottom:305.135419pt;}
.yfe_c01176{bottom:305.476624pt;}
.yfd_c01176{bottom:306.760320pt;}
.yfc_c01176{bottom:307.413061pt;}
.yfb_c01176{bottom:307.743232pt;}
.yfa_c01176{bottom:308.152203pt;}
.yf9_c01176{bottom:336.113413pt;}
.yf8_c01176{bottom:336.299648pt;}
.yf7_c01176{bottom:336.651979pt;}
.yf6_c01176{bottom:337.362779pt;}
.yf5_c01176{bottom:337.534837pt;}
.yf4_c01176{bottom:338.062491pt;}
.yf3_c01176{bottom:338.363109pt;}
.yf2_c01176{bottom:338.599285pt;}
.yf1_c01176{bottom:339.292955pt;}
.yf0_c01176{bottom:339.591803pt;}
.yef_c01176{bottom:365.478117pt;}
.yee_c01176{bottom:365.825909pt;}
.yed_c01176{bottom:366.451952pt;}
.yec_c01176{bottom:367.150688pt;}
.yeb_c01176{bottom:367.865365pt;}
.yea_c01176{bottom:368.314704pt;}
.ye9_c01176{bottom:368.934917pt;}
.ye8_c01176{bottom:369.201221pt;}
.ye7_c01176{bottom:369.728021pt;}
.ye6_c01176{bottom:370.339109pt;}
.ye5_c01176{bottom:370.695467pt;}
.ye4_c01176{bottom:371.034149pt;}
.ye3_c01176{bottom:398.822955pt;}
.ye2_c01176{bottom:399.030533pt;}
.ye1_c01176{bottom:399.310075pt;}
.ye0_c01176{bottom:400.142240pt;}
.ydf_c01176{bottom:401.099008pt;}
.yde_c01176{bottom:401.447232pt;}
.ydd_c01176{bottom:401.995509pt;}
.ydc_c01176{bottom:402.196853pt;}
.ydb_c01176{bottom:402.340304pt;}
.yda_c01176{bottom:402.957408pt;}
.yd9_c01176{bottom:428.303472pt;}
.yd8_c01176{bottom:428.947829pt;}
.yd7_c01176{bottom:429.277515pt;}
.yd6_c01176{bottom:429.702688pt;}
.yd5_c01176{bottom:430.253973pt;}
.yd4_c01176{bottom:430.581424pt;}
.yd3_c01176{bottom:431.006437pt;}
.yd2_c01176{bottom:431.447333pt;}
.yd1_c01176{bottom:432.638613pt;}
.yd0_c01176{bottom:433.069579pt;}
.ycf_c01176{bottom:433.280912pt;}
.yce_c01176{bottom:434.025440pt;}
.ycd_c01176{bottom:434.463360pt;}
.ycc_c01176{bottom:434.880571pt;}
.ycb_c01176{bottom:462.874517pt;}
.yca_c01176{bottom:463.423515pt;}
.yc9_c01176{bottom:463.946032pt;}
.yc8_c01176{bottom:464.320011pt;}
.yc7_c01176{bottom:464.662288pt;}
.yc6_c01176{bottom:465.024539pt;}
.yc5_c01176{bottom:465.456779pt;}
.yc4_c01176{bottom:465.631104pt;}
.yc3_c01176{bottom:466.261797pt;}
.yc2_c01176{bottom:466.684976pt;}
.yc1_c01176{bottom:466.958720pt;}
.yc0_c01176{bottom:467.652176pt;}
.ybf_c01176{bottom:467.998464pt;}
.ybe_c01176{bottom:493.999925pt;}
.ybd_c01176{bottom:494.955813pt;}
.ybc_c01176{bottom:495.192309pt;}
.ybb_c01176{bottom:496.154085pt;}
.yba_c01176{bottom:496.744517pt;}
.yb9_c01176{bottom:497.086869pt;}
.yb8_c01176{bottom:497.919573pt;}
.yb7_c01176{bottom:498.268069pt;}
.yb6_c01176{bottom:499.207013pt;}
.yb5_c01176{bottom:499.921333pt;}
.yb1_c01176{bottom:529.401856pt;}
.yb0_c01176{bottom:529.401877pt;}
.yb2_c01176{bottom:529.402187pt;}
.yb3_c01176{bottom:529.402784pt;}
.yb4_c01176{bottom:529.402997pt;}
.yaf_c01176{bottom:556.429173pt;}
.yae_c01176{bottom:557.127883pt;}
.yad_c01176{bottom:557.419051pt;}
.yac_c01176{bottom:558.199136pt;}
.yab_c01176{bottom:558.501067pt;}
.yaa_c01176{bottom:558.791808pt;}
.ya9_c01176{bottom:558.993077pt;}
.ya8_c01176{bottom:559.787467pt;}
.ya7_c01176{bottom:560.075307pt;}
.ya6_c01176{bottom:560.367989pt;}
.ya5_c01176{bottom:560.959221pt;}
.ya4_c01176{bottom:561.340309pt;}
.ya3_c01176{bottom:561.933344pt;}
.ya2_c01176{bottom:562.314379pt;}
.ya1_c01176{bottom:589.446773pt;}
.ya0_c01176{bottom:589.624288pt;}
.y9f_c01176{bottom:589.986880pt;}
.y9e_c01176{bottom:590.220629pt;}
.y9d_c01176{bottom:590.396235pt;}
.y9c_c01176{bottom:590.754336pt;}
.y9b_c01176{bottom:591.046752pt;}
.y9a_c01176{bottom:591.278528pt;}
.y99_c01176{bottom:591.932917pt;}
.y98_c01176{bottom:592.576533pt;}
.y97_c01176{bottom:592.686880pt;}
.y96_c01176{bottom:593.035648pt;}
.y95_c01176{bottom:618.362592pt;}
.y94_c01176{bottom:619.341600pt;}
.y93_c01176{bottom:620.001717pt;}
.y92_c01176{bottom:620.338347pt;}
.y91_c01176{bottom:620.544981pt;}
.y90_c01176{bottom:621.736469pt;}
.y8f_c01176{bottom:622.380981pt;}
.y8e_c01176{bottom:622.718741pt;}
.y8d_c01176{bottom:623.570987pt;}
.y8c_c01176{bottom:624.428213pt;}
.y8b_c01176{bottom:624.956149pt;}
.y8a_c01176{bottom:650.288597pt;}
.y89_c01176{bottom:650.849355pt;}
.y88_c01176{bottom:651.660341pt;}
.y87_c01176{bottom:652.017003pt;}
.y86_c01176{bottom:652.282731pt;}
.y85_c01176{bottom:652.550112pt;}
.y84_c01176{bottom:652.725419pt;}
.y83_c01176{bottom:653.254720pt;}
.y82_c01176{bottom:653.518059pt;}
.y81_c01176{bottom:654.217739pt;}
.y80_c01176{bottom:654.574389pt;}
.y7f_c01176{bottom:654.757536pt;}
.y7e_c01176{bottom:655.369131pt;}
.y7d_c01176{bottom:655.803019pt;}
.y7c_c01176{bottom:656.157941pt;}
.y7b_c01176{bottom:682.098731pt;}
.y7a_c01176{bottom:682.486912pt;}
.y79_c01176{bottom:682.789131pt;}
.y78_c01176{bottom:683.087253pt;}
.y77_c01176{bottom:684.073739pt;}
.y76_c01176{bottom:685.254347pt;}
.y75_c01176{bottom:685.545376pt;}
.y74_c01176{bottom:686.431189pt;}
.y73_c01176{bottom:686.824832pt;}
.y72_c01176{bottom:687.117707pt;}
.y71_c01176{bottom:687.696363pt;}
.y70_c01176{bottom:688.080821pt;}
.y6f_c01176{bottom:714.216672pt;}
.y6e_c01176{bottom:715.007627pt;}
.y6d_c01176{bottom:715.439883pt;}
.y6c_c01176{bottom:716.342336pt;}
.y6b_c01176{bottom:716.869483pt;}
.y6a_c01176{bottom:717.411413pt;}
.y69_c01176{bottom:717.931531pt;}
.y68_c01176{bottom:718.204075pt;}
.y67_c01176{bottom:718.376427pt;}
.y66_c01176{bottom:718.905387pt;}
.y65_c01176{bottom:719.520565pt;}
.y64_c01176{bottom:747.015584pt;}
.y63_c01176{bottom:747.175019pt;}
.y62_c01176{bottom:747.964149pt;}
.y61_c01176{bottom:748.665525pt;}
.y60_c01176{bottom:748.993141pt;}
.y5f_c01176{bottom:749.229461pt;}
.y5e_c01176{bottom:749.939883pt;}
.y5d_c01176{bottom:750.489003pt;}
.y5c_c01176{bottom:750.961333pt;}
.y5b_c01176{bottom:779.212667pt;}
.y5a_c01176{bottom:779.391235pt;}
.y59_c01176{bottom:779.625883pt;}
.y58_c01176{bottom:780.157363pt;}
.y57_c01176{bottom:780.338803pt;}
.y56_c01176{bottom:780.517355pt;}
.y55_c01176{bottom:780.868707pt;}
.y54_c01176{bottom:781.107787pt;}
.y53_c01176{bottom:781.508115pt;}
.y52_c01176{bottom:781.862323pt;}
.y51_c01176{bottom:782.095515pt;}
.y50_c01176{bottom:782.397899pt;}
.y4f_c01176{bottom:810.361147pt;}
.y4e_c01176{bottom:810.479139pt;}
.y4d_c01176{bottom:811.016387pt;}
.y4c_c01176{bottom:811.673059pt;}
.y4b_c01176{bottom:812.017163pt;}
.y4a_c01176{bottom:812.136635pt;}
.y49_c01176{bottom:812.722827pt;}
.y48_c01176{bottom:812.840811pt;}
.y47_c01176{bottom:813.431307pt;}
.y46_c01176{bottom:813.838811pt;}
.y45_c01176{bottom:841.441408pt;}
.y44_c01176{bottom:841.735272pt;}
.y43_c01176{bottom:841.856160pt;}
.y42_c01176{bottom:842.145616pt;}
.y41_c01176{bottom:842.445264pt;}
.y40_c01176{bottom:842.680000pt;}
.y3f_c01176{bottom:843.156632pt;}
.y3e_c01176{bottom:843.392704pt;}
.y3d_c01176{bottom:843.627448pt;}
.y3c_c01176{bottom:843.807552pt;}
.y3b_c01176{bottom:843.980328pt;}
.y3a_c01176{bottom:844.746408pt;}
.y39_c01176{bottom:845.038696pt;}
.y38_c01176{bottom:872.554912pt;}
.y37_c01176{bottom:873.322341pt;}
.y36_c01176{bottom:873.524523pt;}
.y35_c01176{bottom:873.729504pt;}
.y34_c01176{bottom:874.281931pt;}
.y33_c01176{bottom:875.308453pt;}
.y32_c01176{bottom:875.587397pt;}
.y31_c01176{bottom:875.929051pt;}
.y30_c01176{bottom:876.480117pt;}
.y2f_c01176{bottom:903.706451pt;}
.y2e_c01176{bottom:903.889339pt;}
.y2d_c01176{bottom:904.125427pt;}
.y2c_c01176{bottom:904.610803pt;}
.y2b_c01176{bottom:905.247307pt;}
.y2a_c01176{bottom:905.492131pt;}
.y29_c01176{bottom:905.725419pt;}
.y28_c01176{bottom:906.256819pt;}
.y27_c01176{bottom:906.432475pt;}
.y26_c01176{bottom:906.605491pt;}
.y25_c01176{bottom:907.200163pt;}
.y24_c01176{bottom:934.800424pt;}
.y23_c01176{bottom:934.980352pt;}
.y22_c01176{bottom:935.271344pt;}
.y21_c01176{bottom:935.634264pt;}
.y20_c01176{bottom:935.987056pt;}
.y1f_c01176{bottom:936.167032pt;}
.y1e_c01176{bottom:936.704176pt;}
.y1d_c01176{bottom:937.059888pt;}
.y1c_c01176{bottom:937.638776pt;}
.y1b_c01176{bottom:937.818744pt;}
.y1a_c01176{bottom:938.160000pt;}
.y19_c01176{bottom:966.725960pt;}
.y18_c01176{bottom:966.973173pt;}
.y17_c01176{bottom:967.130453pt;}
.y16_c01176{bottom:967.671687pt;}
.y15_c01176{bottom:967.960820pt;}
.y14_c01176{bottom:968.306487pt;}
.y13_c01176{bottom:968.460040pt;}
.y12_c01176{bottom:968.556020pt;}
.y11_c01176{bottom:968.943700pt;}
.y10_c01176{bottom:969.097307pt;}
.yf_c01176{bottom:969.387700pt;}
.ye_c01176{bottom:969.600000pt;}
.yd_c01176{bottom:997.943545pt;}
.yc_c01176{bottom:998.757853pt;}
.yb_c01176{bottom:999.282829pt;}
.ya_c01176{bottom:999.641233pt;}
.y9_c01176{bottom:999.803785pt;}
.y8_c01176{bottom:1000.254937pt;}
.y7_c01176{bottom:1000.524949pt;}
.y6_c01176{bottom:1001.224861pt;}
.y5_c01176{bottom:1001.851309pt;}
.y4_c01176{bottom:1002.105949pt;}
.y3_c01176{bottom:1002.382285pt;}
.y2_c01176{bottom:1002.721333pt;}
.y1_c01176{bottom:1065.977333pt;}
.h5_c01176{height:58.667723pt;}
.hb_c01176{height:58.670891pt;}
.h14_c01176{height:58.673266pt;}
.h4_c01176{height:64.000800pt;}
.h6_c01176{height:64.001152pt;}
.h7_c01176{height:64.002048pt;}
.hc_c01176{height:64.004608pt;}
.hf_c01176{height:64.009247pt;}
.h10_c01176{height:64.010367pt;}
.he_c01176{height:64.012799pt;}
.h8_c01176{height:69.335552pt;}
.ha_c01176{height:69.338325pt;}
.h11_c01176{height:69.341133pt;}
.h2_c01176{height:74.666667pt;}
.h9_c01176{height:74.669056pt;}
.h3_c01176{height:74.669691pt;}
.hd_c01176{height:80.005760pt;}
.h13_c01176{height:80.008999pt;}
.h12_c01176{height:96.010799pt;}
.h1_c01176{height:1118.666667pt;}
.h0_c01176{height:1118.880000pt;}
.w0_c01176{width:803.733333pt;}
.w1_c01176{width:804.000000pt;}
.x0_c01176{left:0.000000pt;}
.x10_c01176{left:134.834667pt;}
.x21_c01176{left:136.690160pt;}
.x39_c01176{left:137.688715pt;}
.x4_c01176{left:138.877333pt;}
.xad_c01176{left:146.458667pt;}
.xa8_c01176{left:164.226667pt;}
.x90_c01176{left:173.640331pt;}
.x6a_c01176{left:175.312139pt;}
.x5_c01176{left:176.549333pt;}
.xbc_c01176{left:182.988467pt;}
.xa1_c01176{left:183.885333pt;}
.xb0_c01176{left:184.905287pt;}
.x30_c01176{left:186.165232pt;}
.x40_c01176{left:187.382717pt;}
.x94_c01176{left:193.547056pt;}
.x18_c01176{left:196.001333pt;}
.x91_c01176{left:203.599349pt;}
.x3a_c01176{left:205.606048pt;}
.x6_c01176{left:207.253333pt;}
.x95_c01176{left:212.686144pt;}
.x62_c01176{left:213.994411pt;}
.x29_c01176{left:215.690717pt;}
.x86_c01176{left:223.359824pt;}
.x59_c01176{left:224.756075pt;}
.x19_c01176{left:225.996000pt;}
.xae_c01176{left:231.160000pt;}
.x48_c01176{left:233.662667pt;}
.x6b_c01176{left:234.607189pt;}
.x7_c01176{left:235.546667pt;}
.xb1_c01176{left:240.990273pt;}
.x87_c01176{left:243.759707pt;}
.x7c_c01176{left:252.604677pt;}
.x74_c01176{left:254.159616pt;}
.xb7_c01176{left:259.387700pt;}
.x52_c01176{left:263.380843pt;}
.x22_c01176{left:264.638160pt;}
.x11_c01176{left:266.094667pt;}
.x9c_c01176{left:271.585179pt;}
.x6c_c01176{left:272.742581pt;}
.x80_c01176{left:282.355552pt;}
.x4d_c01176{left:283.561152pt;}
.x41_c01176{left:285.282717pt;}
.x49_c01176{left:292.704000pt;}
.x23_c01176{left:293.914160pt;}
.xb2_c01176{left:297.111260pt;}
.x81_c01176{left:301.522443pt;}
.x53_c01176{left:302.752213pt;}
.x2a_c01176{left:304.234181pt;}
.x8_c01176{left:305.152000pt;}
.xa2_c01176{left:310.586667pt;}
.x31_c01176{left:313.845232pt;}
.x63_c01176{left:321.281461pt;}
.x1a_c01176{left:322.477333pt;}
.x3b_c01176{left:323.686048pt;}
.x7d_c01176{left:330.128811pt;}
.x6d_c01176{left:331.812299pt;}
.x75_c01176{left:332.881995pt;}
.x96_c01176{left:340.125365pt;}
.x5f_c01176{left:341.134336pt;}
.x32_c01176{left:342.641232pt;}
.x12_c01176{left:343.630667pt;}
.xb3_c01176{left:349.699013pt;}
.x88_c01176{left:350.790123pt;}
.x42_c01176{left:352.004051pt;}
.x4a_c01176{left:361.344000pt;}
.x13_c01176{left:362.826667pt;}
.x77_c01176{left:370.662667pt;}
.x4e_c01176{left:371.643115pt;}
.x33_c01176{left:372.658565pt;}
.x92_c01176{left:379.526779pt;}
.x1b_c01176{left:381.762667pt;}
.x9_c01176{left:382.920000pt;}
.x1_c01176{left:388.080000pt;}
.x6e_c01176{left:389.876704pt;}
.x43_c01176{left:391.850717pt;}
.x14_c01176{left:393.537333pt;}
.xb8_c01176{left:396.961500pt;}
.x78_c01176{left:399.704000pt;}
.x2_c01176{left:407.040000pt;}
.xbe_c01176{left:408.283913pt;}
.x93_c01176{left:410.516480pt;}
.x34_c01176{left:411.782565pt;}
.xa_c01176{left:412.921333pt;}
.x54_c01176{left:420.355659pt;}
.x24_c01176{left:421.362160pt;}
.xb4_c01176{left:428.917967pt;}
.x5a_c01176{left:430.471765pt;}
.x4f_c01176{left:431.883968pt;}
.x8b_c01176{left:439.115973pt;}
.x3c_c01176{left:441.296715pt;}
.x3_c01176{left:446.640000pt;}
.xa9_c01176{left:447.886667pt;}
.x82_c01176{left:448.933536pt;}
.x2b_c01176{left:450.875968pt;}
.xaf_c01176{left:457.021333pt;}
.xbd_c01176{left:458.008107pt;}
.x5b_c01176{left:459.722197pt;}
.xb_c01176{left:463.049333pt;}
.x7e_c01176{left:467.683104pt;}
.x64_c01176{left:468.887819pt;}
.x1c_c01176{left:471.286667pt;}
.xa3_c01176{left:477.398667pt;}
.x8e_c01176{left:478.519008pt;}
.x44_c01176{left:480.168051pt;}
.xc_c01176{left:481.110667pt;}
.xaa_c01176{left:486.769333pt;}
.x6f_c01176{left:489.499115pt;}
.x50_c01176{left:490.443499pt;}
.x79_c01176{left:497.625333pt;}
.x3d_c01176{left:498.647381pt;}
.x1d_c01176{left:501.282667pt;}
.xb9_c01176{left:503.540700pt;}
.x7f_c01176{left:507.983227pt;}
.x45_c01176{left:510.408051pt;}
.xab_c01176{left:515.809333pt;}
.x65_c01176{left:517.607264pt;}
.x5c_c01176{left:518.551061pt;}
.xd_c01176{left:520.933333pt;}
.x83_c01176{left:527.649147pt;}
.x2c_c01176{left:529.835496pt;}
.x76_c01176{left:531.368032pt;}
.x89_c01176{left:537.217307pt;}
.x55_c01176{left:538.429771pt;}
.x7a_c01176{left:546.828000pt;}
.x70_c01176{left:548.748832pt;}
.xa4_c01176{left:555.648000pt;}
.x60_c01176{left:557.511808pt;}
.x2d_c01176{left:559.109987pt;}
.x1e_c01176{left:560.081333pt;}
.xb5_c01176{left:565.975180pt;}
.xba_c01176{left:566.900507pt;}
.x25_c01176{left:568.250160pt;}
.x35_c01176{left:569.689232pt;}
.x9e_c01176{left:576.008000pt;}
.x66_c01176{left:577.370891pt;}
.xe_c01176{left:579.264000pt;}
.xac_c01176{left:585.437333pt;}
.x2e_c01176{left:587.917811pt;}
.x51_c01176{left:590.749365pt;}
.x97_c01176{left:595.526443pt;}
.x5d_c01176{left:597.269099pt;}
.x46_c01176{left:598.988051pt;}
.x67_c01176{left:606.655360pt;}
.x3e_c01176{left:608.092715pt;}
.xa5_c01176{left:616.188000pt;}
.x36_c01176{left:619.630565pt;}
.x1f_c01176{left:620.568000pt;}
.xbf_c01176{left:624.828080pt;}
.x71_c01176{left:626.758251pt;}
.x15_c01176{left:628.744000pt;}
.x98_c01176{left:635.096539pt;}
.x56_c01176{left:637.072192pt;}
.x47_c01176{left:638.096051pt;}
.x9d_c01176{left:644.068384pt;}
.x68_c01176{left:645.541312pt;}
.x7b_c01176{left:646.684000pt;}
.x61_c01176{left:648.102965pt;}
.x26_c01176{left:649.146160pt;}
.xa6_c01176{left:654.557333pt;}
.x72_c01176{left:655.820448pt;}
.x16_c01176{left:660.200000pt;}
.xbb_c01176{left:664.165460pt;}
.x99_c01176{left:665.103099pt;}
.x57_c01176{left:666.837045pt;}
.x37_c01176{left:667.873232pt;}
.xf_c01176{left:669.742667pt;}
.x84_c01176{left:676.228272pt;}
.xb6_c01176{left:683.720973pt;}
.x8f_c01176{left:684.688539pt;}
.x27_c01176{left:688.494160pt;}
.xc0_c01176{left:693.468687pt;}
.x8a_c01176{left:695.980160pt;}
.x2f_c01176{left:697.599821pt;}
.x20_c01176{left:699.054667pt;}
.x69_c01176{left:706.032949pt;}
.x4b_c01176{left:706.952000pt;}
.x17_c01176{left:709.642667pt;}
.x9f_c01176{left:714.550667pt;}
.x8c_c01176{left:715.636592pt;}
.x3f_c01176{left:717.299381pt;}
.x28_c01176{left:718.975493pt;}
.x9a_c01176{left:724.681568pt;}
.x73_c01176{left:725.657995pt;}
.x4c_c01176{left:726.881333pt;}
.x85_c01176{left:734.814309pt;}
.x58_c01176{left:735.969280pt;}
.x38_c01176{left:736.998565pt;}
.xa0_c01176{left:741.434667pt;}
.x9b_c01176{left:744.129973pt;}
.x8d_c01176{left:754.287317pt;}
.xa7_c01176{left:757.804000pt;}
.xc1_c01176{left:764.118567pt;}
.x5e_c01176{left:789.151552pt;}
}





/* 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_c01177 {
    display:none;
  }
  .loading-indicator_c01177.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01177 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_c01177 { 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_c01177" -> "#page-container .classname_c01177")
 */
.pf_c01177 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01177 { /* 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_c01177.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01177 { /* 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_c01177 { /* 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_c01177 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01177 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01177 {overflow:visible;}
  }
}
.c_c01177 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01177 { /* 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_c01177:after { /* webkit #35443 */
  content: '';
}
.t_c01177:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01177 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 */
}
.__c01177 { /* 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_c01177 { /* info for Javascript */
  display:none;
}
.l_c01177 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01177 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01177 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01177: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_c01177 {
    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_c01177.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01177.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_c01177 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01177{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01177;src:url('chunks/assets/font_5f4fe34b032b9307bcc13373.woff2')format("woff");}.ff1_c01177{font-family:ff1_c01177;line-height:1.000000;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;}
.m0_c01177{transform:matrix(1.897190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.897190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.897190,0.000000,0.000000,0.250000,0,0);}
.v0_c01177{vertical-align:0.000000px;}
.ls0_c01177{letter-spacing:0.000000px;}
.sc__c01177{text-shadow:none;}
.sc0_c01177{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__c01177{-webkit-text-stroke:0px transparent;}
.sc0_c01177{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01177{word-spacing:0.000000px;}
.fc0_c01177{color:transparent;}
.fs0_c01177{font-size:18.000000px;}
.y0_c01177{bottom:0.000000px;}
.y1_c01177{bottom:1249.561500px;}
.h2_c01177{height:18.000000px;}
.h1_c01177{height:1258.500000px;}
.h0_c01177{height:1258.740000px;}
.w0_c01177{width:904.200000px;}
.w1_c01177{width:904.500000px;}
.x0_c01177{left:0.000000px;}
.x1_c01177{left:777.060000px;}
@media print{
.v0_c01177{vertical-align:0.000000pt;}
.ls0_c01177{letter-spacing:0.000000pt;}
.ws0_c01177{word-spacing:0.000000pt;}
.fs0_c01177{font-size:16.000000pt;}
.y0_c01177{bottom:0.000000pt;}
.y1_c01177{bottom:1110.721333pt;}
.h2_c01177{height:16.000000pt;}
.h1_c01177{height:1118.666667pt;}
.h0_c01177{height:1118.880000pt;}
.w0_c01177{width:803.733333pt;}
.w1_c01177{width:804.000000pt;}
.x0_c01177{left:0.000000pt;}
.x1_c01177{left:690.720000pt;}
}





/* 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_c01178 {
    display:none;
  }
  .loading-indicator_c01178.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01178 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_c01178 { 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_c01178" -> "#page-container .classname_c01178")
 */
.pf_c01178 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01178 { /* 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_c01178.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01178 { /* 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_c01178 { /* 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_c01178 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01178 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01178 {overflow:visible;}
  }
}
.c_c01178 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01178 { /* 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_c01178:after { /* webkit #35443 */
  content: '';
}
.t_c01178:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01178 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 */
}
.__c01178 { /* 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_c01178 { /* info for Javascript */
  display:none;
}
.l_c01178 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01178 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01178 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01178: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_c01178 {
    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_c01178.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01178.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_c01178 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01178{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01178;src:url('chunks/assets/font_cfe63ee56e9e10a97d33a3db.woff2')format("woff");}.ff1_c01178{font-family:ff1_c01178;line-height:1.000000;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;}
.m105_c01178{transform:matrix(0.010055,0.000322,-0.008004,0.249872,0,0);-ms-transform:matrix(0.010055,0.000322,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.010055,0.000322,-0.008004,0.249872,0,0);}
.m0_c01178{transform:matrix(0.095541,0.004017,-0.010501,0.249779,0,0);-ms-transform:matrix(0.095541,0.004017,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.095541,0.004017,-0.010501,0.249779,0,0);}
.m12f_c01178{transform:matrix(0.124851,0.001498,-0.003000,0.249982,0,0);-ms-transform:matrix(0.124851,0.001498,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.124851,0.001498,-0.003000,0.249982,0,0);}
.m106_c01178{transform:matrix(0.147329,0.004719,-0.008004,0.249872,0,0);-ms-transform:matrix(0.147329,0.004719,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.147329,0.004719,-0.008004,0.249872,0,0);}
.m107_c01178{transform:matrix(0.147644,0.004729,-0.008004,0.249872,0,0);-ms-transform:matrix(0.147644,0.004729,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.147644,0.004729,-0.008004,0.249872,0,0);}
.m109_c01178{transform:matrix(0.151632,0.004857,-0.008004,0.249872,0,0);-ms-transform:matrix(0.151632,0.004857,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.151632,0.004857,-0.008004,0.249872,0,0);}
.m10a_c01178{transform:matrix(0.158779,0.005086,-0.008004,0.249872,0,0);-ms-transform:matrix(0.158779,0.005086,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.158779,0.005086,-0.008004,0.249872,0,0);}
.m111_c01178{transform:matrix(0.163626,0.005241,-0.008004,0.249872,0,0);-ms-transform:matrix(0.163626,0.005241,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.163626,0.005241,-0.008004,0.249872,0,0);}
.m12a_c01178{transform:matrix(0.165053,0.001981,-0.003000,0.249982,0,0);-ms-transform:matrix(0.165053,0.001981,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.165053,0.001981,-0.003000,0.249982,0,0);}
.m12e_c01178{transform:matrix(0.168413,0.002021,-0.003000,0.249982,0,0);-ms-transform:matrix(0.168413,0.002021,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.168413,0.002021,-0.003000,0.249982,0,0);}
.m86_c01178{transform:matrix(0.171018,0.004617,-0.006748,0.249909,0,0);-ms-transform:matrix(0.171018,0.004617,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.171018,0.004617,-0.006748,0.249909,0,0);}
.m10c_c01178{transform:matrix(0.171207,0.005484,-0.008004,0.249872,0,0);-ms-transform:matrix(0.171207,0.005484,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.171207,0.005484,-0.008004,0.249872,0,0);}
.m10b_c01178{transform:matrix(0.171507,0.005494,-0.008004,0.249872,0,0);-ms-transform:matrix(0.171507,0.005494,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.171507,0.005494,-0.008004,0.249872,0,0);}
.m13f_c01178{transform:matrix(0.171857,0.005505,-0.008004,0.249872,0,0);-ms-transform:matrix(0.171857,0.005505,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.171857,0.005505,-0.008004,0.249872,0,0);}
.m108_c01178{transform:matrix(0.172616,0.005529,-0.008004,0.249872,0,0);-ms-transform:matrix(0.172616,0.005529,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.172616,0.005529,-0.008004,0.249872,0,0);}
.m12c_c01178{transform:matrix(0.173498,0.002082,-0.003000,0.249982,0,0);-ms-transform:matrix(0.173498,0.002082,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.173498,0.002082,-0.003000,0.249982,0,0);}
.m127_c01178{transform:matrix(0.175537,0.002106,-0.003000,0.249982,0,0);-ms-transform:matrix(0.175537,0.002106,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.175537,0.002106,-0.003000,0.249982,0,0);}
.m91_c01178{transform:matrix(0.177420,0.004790,-0.006748,0.249909,0,0);-ms-transform:matrix(0.177420,0.004790,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.177420,0.004790,-0.006748,0.249909,0,0);}
.m126_c01178{transform:matrix(0.180962,0.002172,-0.003000,0.249982,0,0);-ms-transform:matrix(0.180962,0.002172,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.180962,0.002172,-0.003000,0.249982,0,0);}
.mc9_c01178{transform:matrix(0.181288,0.004532,-0.006248,0.249922,0,0);-ms-transform:matrix(0.181288,0.004532,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.181288,0.004532,-0.006248,0.249922,0,0);}
.m9a_c01178{transform:matrix(0.181434,0.004899,-0.006748,0.249909,0,0);-ms-transform:matrix(0.181434,0.004899,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.181434,0.004899,-0.006748,0.249909,0,0);}
.m94_c01178{transform:matrix(0.183003,0.004941,-0.006748,0.249909,0,0);-ms-transform:matrix(0.183003,0.004941,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.183003,0.004941,-0.006748,0.249909,0,0);}
.me5_c01178{transform:matrix(0.183748,0.004594,-0.006248,0.249922,0,0);-ms-transform:matrix(0.183748,0.004594,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.183748,0.004594,-0.006248,0.249922,0,0);}
.m12b_c01178{transform:matrix(0.184577,0.002215,-0.003000,0.249982,0,0);-ms-transform:matrix(0.184577,0.002215,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.184577,0.002215,-0.003000,0.249982,0,0);}
.m97_c01178{transform:matrix(0.187442,0.005061,-0.006748,0.249909,0,0);-ms-transform:matrix(0.187442,0.005061,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.187442,0.005061,-0.006748,0.249909,0,0);}
.m93_c01178{transform:matrix(0.192335,0.005193,-0.006748,0.249909,0,0);-ms-transform:matrix(0.192335,0.005193,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.192335,0.005193,-0.006748,0.249909,0,0);}
.m113_c01178{transform:matrix(0.192546,0.006168,-0.008004,0.249872,0,0);-ms-transform:matrix(0.192546,0.006168,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.192546,0.006168,-0.008004,0.249872,0,0);}
.m118_c01178{transform:matrix(0.192816,0.006176,-0.008004,0.249872,0,0);-ms-transform:matrix(0.192816,0.006176,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.192816,0.006176,-0.008004,0.249872,0,0);}
.m83_c01178{transform:matrix(0.193549,0.005226,-0.006748,0.249909,0,0);-ms-transform:matrix(0.193549,0.005226,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.193549,0.005226,-0.006748,0.249909,0,0);}
.m129_c01178{transform:matrix(0.193911,0.002327,-0.003000,0.249982,0,0);-ms-transform:matrix(0.193911,0.002327,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.193911,0.002327,-0.003000,0.249982,0,0);}
.m128_c01178{transform:matrix(0.194076,0.002329,-0.003000,0.249982,0,0);-ms-transform:matrix(0.194076,0.002329,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.194076,0.002329,-0.003000,0.249982,0,0);}
.m7e_c01178{transform:matrix(0.194279,0.005246,-0.006748,0.249909,0,0);-ms-transform:matrix(0.194279,0.005246,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.194279,0.005246,-0.006748,0.249909,0,0);}
.m12d_c01178{transform:matrix(0.194296,0.002332,-0.003000,0.249982,0,0);-ms-transform:matrix(0.194296,0.002332,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.194296,0.002332,-0.003000,0.249982,0,0);}
.m6c_c01178{transform:matrix(0.194299,0.004469,-0.005748,0.249934,0,0);-ms-transform:matrix(0.194299,0.004469,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.194299,0.004469,-0.005748,0.249934,0,0);}
.m96_c01178{transform:matrix(0.194659,0.005256,-0.006748,0.249909,0,0);-ms-transform:matrix(0.194659,0.005256,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.194659,0.005256,-0.006748,0.249909,0,0);}
.m131_c01178{transform:matrix(0.196111,0.002353,-0.003000,0.249982,0,0);-ms-transform:matrix(0.196111,0.002353,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.196111,0.002353,-0.003000,0.249982,0,0);}
.m92_c01178{transform:matrix(0.196618,0.005309,-0.006748,0.249909,0,0);-ms-transform:matrix(0.196618,0.005309,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.196618,0.005309,-0.006748,0.249909,0,0);}
.m98_c01178{transform:matrix(0.196633,0.005309,-0.006748,0.249909,0,0);-ms-transform:matrix(0.196633,0.005309,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.196633,0.005309,-0.006748,0.249909,0,0);}
.mfb_c01178{transform:matrix(0.197443,0.004936,-0.006248,0.249922,0,0);-ms-transform:matrix(0.197443,0.004936,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.197443,0.004936,-0.006248,0.249922,0,0);}
.m10d_c01178{transform:matrix(0.197809,0.006336,-0.008004,0.249872,0,0);-ms-transform:matrix(0.197809,0.006336,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.197809,0.006336,-0.008004,0.249872,0,0);}
.m4b_c01178{transform:matrix(0.200048,0.008410,-0.010501,0.249779,0,0);-ms-transform:matrix(0.200048,0.008410,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.200048,0.008410,-0.010501,0.249779,0,0);}
.mea_c01178{transform:matrix(0.200177,0.005004,-0.006248,0.249922,0,0);-ms-transform:matrix(0.200177,0.005004,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.200177,0.005004,-0.006248,0.249922,0,0);}
.m67_c01178{transform:matrix(0.200187,0.004604,-0.005748,0.249934,0,0);-ms-transform:matrix(0.200187,0.004604,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.200187,0.004604,-0.005748,0.249934,0,0);}
.m10e_c01178{transform:matrix(0.201177,0.006444,-0.008004,0.249872,0,0);-ms-transform:matrix(0.201177,0.006444,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.201177,0.006444,-0.008004,0.249872,0,0);}
.m70_c01178{transform:matrix(0.201442,0.004633,-0.005748,0.249934,0,0);-ms-transform:matrix(0.201442,0.004633,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.201442,0.004633,-0.005748,0.249934,0,0);}
.mc5_c01178{transform:matrix(0.202012,0.005050,-0.006248,0.249922,0,0);-ms-transform:matrix(0.202012,0.005050,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.202012,0.005050,-0.006248,0.249922,0,0);}
.m95_c01178{transform:matrix(0.202026,0.005455,-0.006748,0.249909,0,0);-ms-transform:matrix(0.202026,0.005455,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.202026,0.005455,-0.006748,0.249909,0,0);}
.m132_c01178{transform:matrix(0.202650,0.002432,-0.003000,0.249982,0,0);-ms-transform:matrix(0.202650,0.002432,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.202650,0.002432,-0.003000,0.249982,0,0);}
.m13a_c01178{transform:matrix(0.203416,0.006516,-0.008004,0.249872,0,0);-ms-transform:matrix(0.203416,0.006516,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.203416,0.006516,-0.008004,0.249872,0,0);}
.me3_c01178{transform:matrix(0.204281,0.005107,-0.006248,0.249922,0,0);-ms-transform:matrix(0.204281,0.005107,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.204281,0.005107,-0.006248,0.249922,0,0);}
.m137_c01178{transform:matrix(0.204445,0.002453,-0.003000,0.249982,0,0);-ms-transform:matrix(0.204445,0.002453,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.204445,0.002453,-0.003000,0.249982,0,0);}
.mc7_c01178{transform:matrix(0.204476,0.005112,-0.006248,0.249922,0,0);-ms-transform:matrix(0.204476,0.005112,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.204476,0.005112,-0.006248,0.249922,0,0);}
.m140_c01178{transform:matrix(0.204495,0.006550,-0.008004,0.249872,0,0);-ms-transform:matrix(0.204495,0.006550,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.204495,0.006550,-0.008004,0.249872,0,0);}
.m7d_c01178{transform:matrix(0.205050,0.005536,-0.006748,0.249909,0,0);-ms-transform:matrix(0.205050,0.005536,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.205050,0.005536,-0.006748,0.249909,0,0);}
.m99_c01178{transform:matrix(0.205775,0.005556,-0.006748,0.249909,0,0);-ms-transform:matrix(0.205775,0.005556,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.205775,0.005556,-0.006748,0.249909,0,0);}
.m24_c01178{transform:matrix(0.206917,0.008699,-0.010501,0.249779,0,0);-ms-transform:matrix(0.206917,0.008699,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.206917,0.008699,-0.010501,0.249779,0,0);}
.m2d_c01178{transform:matrix(0.207831,0.008738,-0.010501,0.249779,0,0);-ms-transform:matrix(0.207831,0.008738,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.207831,0.008738,-0.010501,0.249779,0,0);}
.m116_c01178{transform:matrix(0.209113,0.006698,-0.008004,0.249872,0,0);-ms-transform:matrix(0.209113,0.006698,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.209113,0.006698,-0.008004,0.249872,0,0);}
.mcd_c01178{transform:matrix(0.209155,0.005229,-0.006248,0.249922,0,0);-ms-transform:matrix(0.209155,0.005229,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.209155,0.005229,-0.006248,0.249922,0,0);}
.m6a_c01178{transform:matrix(0.209165,0.004811,-0.005748,0.249934,0,0);-ms-transform:matrix(0.209165,0.004811,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.209165,0.004811,-0.005748,0.249934,0,0);}
.mff_c01178{transform:matrix(0.209235,0.005231,-0.006248,0.249922,0,0);-ms-transform:matrix(0.209235,0.005231,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.209235,0.005231,-0.006248,0.249922,0,0);}
.m31_c01178{transform:matrix(0.209360,0.008802,-0.010501,0.249779,0,0);-ms-transform:matrix(0.209360,0.008802,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.209360,0.008802,-0.010501,0.249779,0,0);}
.m64_c01178{transform:matrix(0.209450,0.004817,-0.005748,0.249934,0,0);-ms-transform:matrix(0.209450,0.004817,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.209450,0.004817,-0.005748,0.249934,0,0);}
.m4c_c01178{transform:matrix(0.209750,0.008818,-0.010501,0.249779,0,0);-ms-transform:matrix(0.209750,0.008818,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.209750,0.008818,-0.010501,0.249779,0,0);}
.m69_c01178{transform:matrix(0.209859,0.004827,-0.005748,0.249934,0,0);-ms-transform:matrix(0.209859,0.004827,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.209859,0.004827,-0.005748,0.249934,0,0);}
.m134_c01178{transform:matrix(0.209875,0.002518,-0.003000,0.249982,0,0);-ms-transform:matrix(0.209875,0.002518,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.209875,0.002518,-0.003000,0.249982,0,0);}
.mbc_c01178{transform:matrix(0.210933,0.005695,-0.006748,0.249909,0,0);-ms-transform:matrix(0.210933,0.005695,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.210933,0.005695,-0.006748,0.249909,0,0);}
.m9b_c01178{transform:matrix(0.211383,0.005707,-0.006748,0.249909,0,0);-ms-transform:matrix(0.211383,0.005707,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.211383,0.005707,-0.006748,0.249909,0,0);}
.m13b_c01178{transform:matrix(0.211606,0.006778,-0.008004,0.249872,0,0);-ms-transform:matrix(0.211606,0.006778,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.211606,0.006778,-0.008004,0.249872,0,0);}
.m15_c01178{transform:matrix(0.212098,0.008917,-0.010501,0.249779,0,0);-ms-transform:matrix(0.212098,0.008917,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.212098,0.008917,-0.010501,0.249779,0,0);}
.m13d_c01178{transform:matrix(0.213630,0.006843,-0.008004,0.249872,0,0);-ms-transform:matrix(0.213630,0.006843,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.213630,0.006843,-0.008004,0.249872,0,0);}
.m5e_c01178{transform:matrix(0.214358,0.004930,-0.005748,0.249934,0,0);-ms-transform:matrix(0.214358,0.004930,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.214358,0.004930,-0.005748,0.249934,0,0);}
.m14_c01178{transform:matrix(0.214476,0.009017,-0.010501,0.249779,0,0);-ms-transform:matrix(0.214476,0.009017,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.214476,0.009017,-0.010501,0.249779,0,0);}
.m20_c01178{transform:matrix(0.214520,0.009019,-0.010501,0.249779,0,0);-ms-transform:matrix(0.214520,0.009019,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.214520,0.009019,-0.010501,0.249779,0,0);}
.m130_c01178{transform:matrix(0.214710,0.002577,-0.003000,0.249982,0,0);-ms-transform:matrix(0.214710,0.002577,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.214710,0.002577,-0.003000,0.249982,0,0);}
.m10f_c01178{transform:matrix(0.214965,0.006886,-0.008004,0.249872,0,0);-ms-transform:matrix(0.214965,0.006886,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.214965,0.006886,-0.008004,0.249872,0,0);}
.m74_c01178{transform:matrix(0.215963,0.004967,-0.005748,0.249934,0,0);-ms-transform:matrix(0.215963,0.004967,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.215963,0.004967,-0.005748,0.249934,0,0);}
.me8_c01178{transform:matrix(0.216267,0.005407,-0.006248,0.249922,0,0);-ms-transform:matrix(0.216267,0.005407,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.216267,0.005407,-0.006248,0.249922,0,0);}
.m13e_c01178{transform:matrix(0.216334,0.006930,-0.008004,0.249872,0,0);-ms-transform:matrix(0.216334,0.006930,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.216334,0.006930,-0.008004,0.249872,0,0);}
.m6b_c01178{transform:matrix(0.217023,0.004992,-0.005748,0.249934,0,0);-ms-transform:matrix(0.217023,0.004992,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.217023,0.004992,-0.005748,0.249934,0,0);}
.m72_c01178{transform:matrix(0.217228,0.004996,-0.005748,0.249934,0,0);-ms-transform:matrix(0.217228,0.004996,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.217228,0.004996,-0.005748,0.249934,0,0);}
.m2a_c01178{transform:matrix(0.217308,0.009136,-0.010501,0.249779,0,0);-ms-transform:matrix(0.217308,0.009136,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.217308,0.009136,-0.010501,0.249779,0,0);}
.m141_c01178{transform:matrix(0.217384,0.006963,-0.008004,0.249872,0,0);-ms-transform:matrix(0.217384,0.006963,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.217384,0.006963,-0.008004,0.249872,0,0);}
.m30_c01178{transform:matrix(0.217543,0.009146,-0.010501,0.249779,0,0);-ms-transform:matrix(0.217543,0.009146,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.217543,0.009146,-0.010501,0.249779,0,0);}
.mb4_c01178{transform:matrix(0.217726,0.005879,-0.006748,0.249909,0,0);-ms-transform:matrix(0.217726,0.005879,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.217726,0.005879,-0.006748,0.249909,0,0);}
.m143_c01178{transform:matrix(0.217898,0.006980,-0.008004,0.249872,0,0);-ms-transform:matrix(0.217898,0.006980,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.217898,0.006980,-0.008004,0.249872,0,0);}
.mf0_c01178{transform:matrix(0.217947,0.005449,-0.006248,0.249922,0,0);-ms-transform:matrix(0.217947,0.005449,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.217947,0.005449,-0.006248,0.249922,0,0);}
.m65_c01178{transform:matrix(0.218567,0.005027,-0.005748,0.249934,0,0);-ms-transform:matrix(0.218567,0.005027,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.218567,0.005027,-0.005748,0.249934,0,0);}
.m7b_c01178{transform:matrix(0.218675,0.005904,-0.006748,0.249909,0,0);-ms-transform:matrix(0.218675,0.005904,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.218675,0.005904,-0.006748,0.249909,0,0);}
.m75_c01178{transform:matrix(0.218867,0.005034,-0.005748,0.249934,0,0);-ms-transform:matrix(0.218867,0.005034,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.218867,0.005034,-0.005748,0.249934,0,0);}
.m76_c01178{transform:matrix(0.219962,0.005059,-0.005748,0.249934,0,0);-ms-transform:matrix(0.219962,0.005059,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.219962,0.005059,-0.005748,0.249934,0,0);}
.me_c01178{transform:matrix(0.220925,0.009288,-0.010501,0.249779,0,0);-ms-transform:matrix(0.220925,0.009288,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.220925,0.009288,-0.010501,0.249779,0,0);}
.m6e_c01178{transform:matrix(0.221681,0.005099,-0.005748,0.249934,0,0);-ms-transform:matrix(0.221681,0.005099,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.221681,0.005099,-0.005748,0.249934,0,0);}
.m81_c01178{transform:matrix(0.221914,0.005992,-0.006748,0.249909,0,0);-ms-transform:matrix(0.221914,0.005992,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.221914,0.005992,-0.006748,0.249909,0,0);}
.m52_c01178{transform:matrix(0.222109,0.009338,-0.010501,0.249779,0,0);-ms-transform:matrix(0.222109,0.009338,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.222109,0.009338,-0.010501,0.249779,0,0);}
.me1_c01178{transform:matrix(0.222445,0.005561,-0.006248,0.249922,0,0);-ms-transform:matrix(0.222445,0.005561,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.222445,0.005561,-0.006248,0.249922,0,0);}
.m135_c01178{transform:matrix(0.222509,0.002670,-0.003000,0.249982,0,0);-ms-transform:matrix(0.222509,0.002670,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.222509,0.002670,-0.003000,0.249982,0,0);}
.m114_c01178{transform:matrix(0.222876,0.007139,-0.008004,0.249872,0,0);-ms-transform:matrix(0.222876,0.007139,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.222876,0.007139,-0.008004,0.249872,0,0);}
.m33_c01178{transform:matrix(0.223133,0.009381,-0.010501,0.249779,0,0);-ms-transform:matrix(0.223133,0.009381,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.223133,0.009381,-0.010501,0.249779,0,0);}
.m101_c01178{transform:matrix(0.223755,0.005594,-0.006248,0.249922,0,0);-ms-transform:matrix(0.223755,0.005594,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.223755,0.005594,-0.006248,0.249922,0,0);}
.m110_c01178{transform:matrix(0.224145,0.007180,-0.008004,0.249872,0,0);-ms-transform:matrix(0.224145,0.007180,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.224145,0.007180,-0.008004,0.249872,0,0);}
.mc_c01178{transform:matrix(0.224552,0.009441,-0.010501,0.249779,0,0);-ms-transform:matrix(0.224552,0.009441,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.224552,0.009441,-0.010501,0.249779,0,0);}
.mba_c01178{transform:matrix(0.224653,0.006066,-0.006748,0.249909,0,0);-ms-transform:matrix(0.224653,0.006066,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.224653,0.006066,-0.006748,0.249909,0,0);}
.m16_c01178{transform:matrix(0.225151,0.009466,-0.010501,0.249779,0,0);-ms-transform:matrix(0.225151,0.009466,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.225151,0.009466,-0.010501,0.249779,0,0);}
.m80_c01178{transform:matrix(0.225173,0.006080,-0.006748,0.249909,0,0);-ms-transform:matrix(0.225173,0.006080,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.225173,0.006080,-0.006748,0.249909,0,0);}
.m144_c01178{transform:matrix(0.225224,0.007214,-0.008004,0.249872,0,0);-ms-transform:matrix(0.225224,0.007214,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.225224,0.007214,-0.008004,0.249872,0,0);}
.m73_c01178{transform:matrix(0.225255,0.005181,-0.005748,0.249934,0,0);-ms-transform:matrix(0.225255,0.005181,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.225255,0.005181,-0.005748,0.249934,0,0);}
.mf4_c01178{transform:matrix(0.225275,0.005632,-0.006248,0.249922,0,0);-ms-transform:matrix(0.225275,0.005632,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.225275,0.005632,-0.006248,0.249922,0,0);}
.m6f_c01178{transform:matrix(0.225500,0.005187,-0.005748,0.249934,0,0);-ms-transform:matrix(0.225500,0.005187,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.225500,0.005187,-0.005748,0.249934,0,0);}
.m13c_c01178{transform:matrix(0.225539,0.007224,-0.008004,0.249872,0,0);-ms-transform:matrix(0.225539,0.007224,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.225539,0.007224,-0.008004,0.249872,0,0);}
.m7c_c01178{transform:matrix(0.225543,0.006090,-0.006748,0.249909,0,0);-ms-transform:matrix(0.225543,0.006090,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.225543,0.006090,-0.006748,0.249909,0,0);}
.med_c01178{transform:matrix(0.225595,0.005640,-0.006248,0.249922,0,0);-ms-transform:matrix(0.225595,0.005640,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.225595,0.005640,-0.006248,0.249922,0,0);}
.mac_c01178{transform:matrix(0.225763,0.006096,-0.006748,0.249909,0,0);-ms-transform:matrix(0.225763,0.006096,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.225763,0.006096,-0.006748,0.249909,0,0);}
.m60_c01178{transform:matrix(0.225975,0.005197,-0.005748,0.249934,0,0);-ms-transform:matrix(0.225975,0.005197,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.225975,0.005197,-0.005748,0.249934,0,0);}
.m5c_c01178{transform:matrix(0.226295,0.005205,-0.005748,0.249934,0,0);-ms-transform:matrix(0.226295,0.005205,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.226295,0.005205,-0.005748,0.249934,0,0);}
.m145_c01178{transform:matrix(0.226349,0.007250,-0.008004,0.249872,0,0);-ms-transform:matrix(0.226349,0.007250,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.226349,0.007250,-0.008004,0.249872,0,0);}
.m8a_c01178{transform:matrix(0.227347,0.006138,-0.006748,0.249909,0,0);-ms-transform:matrix(0.227347,0.006138,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.227347,0.006138,-0.006748,0.249909,0,0);}
.m38_c01178{transform:matrix(0.227594,0.009569,-0.010501,0.249779,0,0);-ms-transform:matrix(0.227594,0.009569,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.227594,0.009569,-0.010501,0.249779,0,0);}
.ma9_c01178{transform:matrix(0.228007,0.006156,-0.006748,0.249909,0,0);-ms-transform:matrix(0.228007,0.006156,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.228007,0.006156,-0.006748,0.249909,0,0);}
.maf_c01178{transform:matrix(0.228077,0.006158,-0.006748,0.249909,0,0);-ms-transform:matrix(0.228077,0.006158,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.228077,0.006158,-0.006748,0.249909,0,0);}
.m62_c01178{transform:matrix(0.228220,0.005249,-0.005748,0.249934,0,0);-ms-transform:matrix(0.228220,0.005249,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.228220,0.005249,-0.005748,0.249934,0,0);}
.mce_c01178{transform:matrix(0.228694,0.005717,-0.006248,0.249922,0,0);-ms-transform:matrix(0.228694,0.005717,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.228694,0.005717,-0.006248,0.249922,0,0);}
.mcf_c01178{transform:matrix(0.228744,0.005719,-0.006248,0.249922,0,0);-ms-transform:matrix(0.228744,0.005719,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.228744,0.005719,-0.006248,0.249922,0,0);}
.m2_c01178{transform:matrix(0.228763,0.009618,-0.010501,0.249779,0,0);-ms-transform:matrix(0.228763,0.009618,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.228763,0.009618,-0.010501,0.249779,0,0);}
.m66_c01178{transform:matrix(0.228969,0.005266,-0.005748,0.249934,0,0);-ms-transform:matrix(0.228969,0.005266,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.228969,0.005266,-0.005748,0.249934,0,0);}
.m7_c01178{transform:matrix(0.228993,0.009627,-0.010501,0.249779,0,0);-ms-transform:matrix(0.228993,0.009627,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.228993,0.009627,-0.010501,0.249779,0,0);}
.m102_c01178{transform:matrix(0.229258,0.005731,-0.006248,0.249922,0,0);-ms-transform:matrix(0.229258,0.005731,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.229258,0.005731,-0.006248,0.249922,0,0);}
.md9_c01178{transform:matrix(0.229393,0.005735,-0.006248,0.249922,0,0);-ms-transform:matrix(0.229393,0.005735,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.229393,0.005735,-0.006248,0.249922,0,0);}
.m7f_c01178{transform:matrix(0.229546,0.006198,-0.006748,0.249909,0,0);-ms-transform:matrix(0.229546,0.006198,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.229546,0.006198,-0.006748,0.249909,0,0);}
.mcc_c01178{transform:matrix(0.229748,0.005744,-0.006248,0.249922,0,0);-ms-transform:matrix(0.229748,0.005744,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.229748,0.005744,-0.006248,0.249922,0,0);}
.m1a_c01178{transform:matrix(0.230137,0.009675,-0.010501,0.249779,0,0);-ms-transform:matrix(0.230137,0.009675,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.230137,0.009675,-0.010501,0.249779,0,0);}
.mde_c01178{transform:matrix(0.230213,0.005755,-0.006248,0.249922,0,0);-ms-transform:matrix(0.230213,0.005755,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.230213,0.005755,-0.006248,0.249922,0,0);}
.m4f_c01178{transform:matrix(0.230257,0.009680,-0.010501,0.249779,0,0);-ms-transform:matrix(0.230257,0.009680,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.230257,0.009680,-0.010501,0.249779,0,0);}
.m3f_c01178{transform:matrix(0.230691,0.009699,-0.010501,0.249779,0,0);-ms-transform:matrix(0.230691,0.009699,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.230691,0.009699,-0.010501,0.249779,0,0);}
.m11a_c01178{transform:matrix(0.231474,0.005092,-0.005499,0.249940,0,0);-ms-transform:matrix(0.231474,0.005092,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.231474,0.005092,-0.005499,0.249940,0,0);}
.me0_c01178{transform:matrix(0.231618,0.005790,-0.006248,0.249922,0,0);-ms-transform:matrix(0.231618,0.005790,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.231618,0.005790,-0.006248,0.249922,0,0);}
.ma_c01178{transform:matrix(0.232080,0.009757,-0.010501,0.249779,0,0);-ms-transform:matrix(0.232080,0.009757,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.232080,0.009757,-0.010501,0.249779,0,0);}
.m6_c01178{transform:matrix(0.232779,0.009787,-0.010501,0.249779,0,0);-ms-transform:matrix(0.232779,0.009787,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.232779,0.009787,-0.010501,0.249779,0,0);}
.m104_c01178{transform:matrix(0.232837,0.005821,-0.006248,0.249922,0,0);-ms-transform:matrix(0.232837,0.005821,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.232837,0.005821,-0.006248,0.249922,0,0);}
.m146_c01178{transform:matrix(0.233100,0.007467,-0.008004,0.249872,0,0);-ms-transform:matrix(0.233100,0.007467,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.233100,0.007467,-0.008004,0.249872,0,0);}
.m121_c01178{transform:matrix(0.233349,0.005134,-0.005499,0.249940,0,0);-ms-transform:matrix(0.233349,0.005134,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.233349,0.005134,-0.005499,0.249940,0,0);}
.me7_c01178{transform:matrix(0.233587,0.005840,-0.006248,0.249922,0,0);-ms-transform:matrix(0.233587,0.005840,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.233587,0.005840,-0.006248,0.249922,0,0);}
.mf8_c01178{transform:matrix(0.233622,0.005841,-0.006248,0.249922,0,0);-ms-transform:matrix(0.233622,0.005841,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.233622,0.005841,-0.006248,0.249922,0,0);}
.mca_c01178{transform:matrix(0.233962,0.005849,-0.006248,0.249922,0,0);-ms-transform:matrix(0.233962,0.005849,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.233962,0.005849,-0.006248,0.249922,0,0);}
.mc6_c01178{transform:matrix(0.234002,0.005850,-0.006248,0.249922,0,0);-ms-transform:matrix(0.234002,0.005850,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.234002,0.005850,-0.006248,0.249922,0,0);}
.mcb_c01178{transform:matrix(0.234207,0.005855,-0.006248,0.249922,0,0);-ms-transform:matrix(0.234207,0.005855,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.234207,0.005855,-0.006248,0.249922,0,0);}
.mf5_c01178{transform:matrix(0.234287,0.005857,-0.006248,0.249922,0,0);-ms-transform:matrix(0.234287,0.005857,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.234287,0.005857,-0.006248,0.249922,0,0);}
.m59_c01178{transform:matrix(0.234298,0.005389,-0.005748,0.249934,0,0);-ms-transform:matrix(0.234298,0.005389,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.234298,0.005389,-0.005748,0.249934,0,0);}
.m122_c01178{transform:matrix(0.234303,0.005155,-0.005499,0.249940,0,0);-ms-transform:matrix(0.234303,0.005155,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.234303,0.005155,-0.005499,0.249940,0,0);}
.m68_c01178{transform:matrix(0.234438,0.005392,-0.005748,0.249934,0,0);-ms-transform:matrix(0.234438,0.005392,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.234438,0.005392,-0.005748,0.249934,0,0);}
.mc1_c01178{transform:matrix(0.234699,0.006337,-0.006748,0.249909,0,0);-ms-transform:matrix(0.234699,0.006337,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.234699,0.006337,-0.006748,0.249909,0,0);}
.m142_c01178{transform:matrix(0.234855,0.007523,-0.008004,0.249872,0,0);-ms-transform:matrix(0.234855,0.007523,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.234855,0.007523,-0.008004,0.249872,0,0);}
.m56_c01178{transform:matrix(0.235018,0.005405,-0.005748,0.249934,0,0);-ms-transform:matrix(0.235018,0.005405,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.235018,0.005405,-0.005748,0.249934,0,0);}
.m11e_c01178{transform:matrix(0.235063,0.005171,-0.005499,0.249940,0,0);-ms-transform:matrix(0.235063,0.005171,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.235063,0.005171,-0.005499,0.249940,0,0);}
.m12_c01178{transform:matrix(0.235362,0.009895,-0.010501,0.249779,0,0);-ms-transform:matrix(0.235362,0.009895,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.235362,0.009895,-0.010501,0.249779,0,0);}
.m46_c01178{transform:matrix(0.235597,0.009905,-0.010501,0.249779,0,0);-ms-transform:matrix(0.235597,0.009905,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.235597,0.009905,-0.010501,0.249779,0,0);}
.m117_c01178{transform:matrix(0.235799,0.007553,-0.008004,0.249872,0,0);-ms-transform:matrix(0.235799,0.007553,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.235799,0.007553,-0.008004,0.249872,0,0);}
.m6d_c01178{transform:matrix(0.235823,0.005424,-0.005748,0.249934,0,0);-ms-transform:matrix(0.235823,0.005424,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.235823,0.005424,-0.005748,0.249934,0,0);}
.md6_c01178{transform:matrix(0.235841,0.005896,-0.006248,0.249922,0,0);-ms-transform:matrix(0.235841,0.005896,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.235841,0.005896,-0.006248,0.249922,0,0);}
.m43_c01178{transform:matrix(0.235902,0.009918,-0.010501,0.249779,0,0);-ms-transform:matrix(0.235902,0.009918,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.235902,0.009918,-0.010501,0.249779,0,0);}
.m112_c01178{transform:matrix(0.235919,0.007557,-0.008004,0.249872,0,0);-ms-transform:matrix(0.235919,0.007557,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.235919,0.007557,-0.008004,0.249872,0,0);}
.mfe_c01178{transform:matrix(0.236291,0.005907,-0.006248,0.249922,0,0);-ms-transform:matrix(0.236291,0.005907,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.236291,0.005907,-0.006248,0.249922,0,0);}
.mfd_c01178{transform:matrix(0.236676,0.005917,-0.006248,0.249922,0,0);-ms-transform:matrix(0.236676,0.005917,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.236676,0.005917,-0.006248,0.249922,0,0);}
.m18_c01178{transform:matrix(0.236961,0.009962,-0.010501,0.249779,0,0);-ms-transform:matrix(0.236961,0.009962,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.236961,0.009962,-0.010501,0.249779,0,0);}
.m27_c01178{transform:matrix(0.237215,0.009973,-0.010501,0.249779,0,0);-ms-transform:matrix(0.237215,0.009973,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.237215,0.009973,-0.010501,0.249779,0,0);}
.m7a_c01178{transform:matrix(0.237222,0.005456,-0.005748,0.249934,0,0);-ms-transform:matrix(0.237222,0.005456,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.237222,0.005456,-0.005748,0.249934,0,0);}
.m32_c01178{transform:matrix(0.237575,0.009988,-0.010501,0.249779,0,0);-ms-transform:matrix(0.237575,0.009988,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.237575,0.009988,-0.010501,0.249779,0,0);}
.m115_c01178{transform:matrix(0.237798,0.007617,-0.008004,0.249872,0,0);-ms-transform:matrix(0.237798,0.007617,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.237798,0.007617,-0.008004,0.249872,0,0);}
.m82_c01178{transform:matrix(0.237918,0.006424,-0.006748,0.249909,0,0);-ms-transform:matrix(0.237918,0.006424,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.237918,0.006424,-0.006748,0.249909,0,0);}
.m49_c01178{transform:matrix(0.238160,0.010013,-0.010501,0.249779,0,0);-ms-transform:matrix(0.238160,0.010013,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.238160,0.010013,-0.010501,0.249779,0,0);}
.m47_c01178{transform:matrix(0.238454,0.010025,-0.010501,0.249779,0,0);-ms-transform:matrix(0.238454,0.010025,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.238454,0.010025,-0.010501,0.249779,0,0);}
.m9e_c01178{transform:matrix(0.238983,0.006453,-0.006748,0.249909,0,0);-ms-transform:matrix(0.238983,0.006453,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.238983,0.006453,-0.006748,0.249909,0,0);}
.m48_c01178{transform:matrix(0.239019,0.010049,-0.010501,0.249779,0,0);-ms-transform:matrix(0.239019,0.010049,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.239019,0.010049,-0.010501,0.249779,0,0);}
.m5f_c01178{transform:matrix(0.239317,0.005504,-0.005748,0.249934,0,0);-ms-transform:matrix(0.239317,0.005504,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.239317,0.005504,-0.005748,0.249934,0,0);}
.me9_c01178{transform:matrix(0.239430,0.005986,-0.006248,0.249922,0,0);-ms-transform:matrix(0.239430,0.005986,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.239430,0.005986,-0.006248,0.249922,0,0);}
.mbd_c01178{transform:matrix(0.239823,0.006475,-0.006748,0.249909,0,0);-ms-transform:matrix(0.239823,0.006475,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.239823,0.006475,-0.006748,0.249909,0,0);}
.m11c_c01178{transform:matrix(0.240047,0.005281,-0.005499,0.249940,0,0);-ms-transform:matrix(0.240047,0.005281,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.240047,0.005281,-0.005499,0.249940,0,0);}
.m11b_c01178{transform:matrix(0.240672,0.005295,-0.005499,0.249940,0,0);-ms-transform:matrix(0.240672,0.005295,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.240672,0.005295,-0.005499,0.249940,0,0);}
.m5d_c01178{transform:matrix(0.241496,0.005554,-0.005748,0.249934,0,0);-ms-transform:matrix(0.241496,0.005554,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.241496,0.005554,-0.005748,0.249934,0,0);}
.m4e_c01178{transform:matrix(0.241657,0.010160,-0.010501,0.249779,0,0);-ms-transform:matrix(0.241657,0.010160,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.241657,0.010160,-0.010501,0.249779,0,0);}
.m23_c01178{transform:matrix(0.241731,0.010163,-0.010501,0.249779,0,0);-ms-transform:matrix(0.241731,0.010163,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.241731,0.010163,-0.010501,0.249779,0,0);}
.m39_c01178{transform:matrix(0.241801,0.010166,-0.010501,0.249779,0,0);-ms-transform:matrix(0.241801,0.010166,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.241801,0.010166,-0.010501,0.249779,0,0);}
.md2_c01178{transform:matrix(0.241919,0.006048,-0.006248,0.249922,0,0);-ms-transform:matrix(0.241919,0.006048,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.241919,0.006048,-0.006248,0.249922,0,0);}
.m63_c01178{transform:matrix(0.242001,0.005566,-0.005748,0.249934,0,0);-ms-transform:matrix(0.242001,0.005566,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.242001,0.005566,-0.005748,0.249934,0,0);}
.mef_c01178{transform:matrix(0.242149,0.006054,-0.006248,0.249922,0,0);-ms-transform:matrix(0.242149,0.006054,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.242149,0.006054,-0.006248,0.249922,0,0);}
.m41_c01178{transform:matrix(0.242261,0.010185,-0.010501,0.249779,0,0);-ms-transform:matrix(0.242261,0.010185,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.242261,0.010185,-0.010501,0.249779,0,0);}
.m133_c01178{transform:matrix(0.242423,0.002909,-0.003000,0.249982,0,0);-ms-transform:matrix(0.242423,0.002909,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.242423,0.002909,-0.003000,0.249982,0,0);}
.m8b_c01178{transform:matrix(0.242657,0.006552,-0.006748,0.249909,0,0);-ms-transform:matrix(0.242657,0.006552,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.242657,0.006552,-0.006748,0.249909,0,0);}
.mec_c01178{transform:matrix(0.242719,0.006068,-0.006248,0.249922,0,0);-ms-transform:matrix(0.242719,0.006068,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.242719,0.006068,-0.006248,0.249922,0,0);}
.m3c_c01178{transform:matrix(0.242811,0.010208,-0.010501,0.249779,0,0);-ms-transform:matrix(0.242811,0.010208,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.242811,0.010208,-0.010501,0.249779,0,0);}
.me4_c01178{transform:matrix(0.242959,0.006074,-0.006248,0.249922,0,0);-ms-transform:matrix(0.242959,0.006074,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.242959,0.006074,-0.006248,0.249922,0,0);}
.mc8_c01178{transform:matrix(0.243304,0.006083,-0.006248,0.249922,0,0);-ms-transform:matrix(0.243304,0.006083,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.243304,0.006083,-0.006248,0.249922,0,0);}
.m61_c01178{transform:matrix(0.243691,0.005605,-0.005748,0.249934,0,0);-ms-transform:matrix(0.243691,0.005605,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.243691,0.005605,-0.005748,0.249934,0,0);}
.m71_c01178{transform:matrix(0.243890,0.005609,-0.005748,0.249934,0,0);-ms-transform:matrix(0.243890,0.005609,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.243890,0.005609,-0.005748,0.249934,0,0);}
.m136_c01178{transform:matrix(0.243922,0.002927,-0.003000,0.249982,0,0);-ms-transform:matrix(0.243922,0.002927,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.243922,0.002927,-0.003000,0.249982,0,0);}
.mad_c01178{transform:matrix(0.244006,0.006588,-0.006748,0.249909,0,0);-ms-transform:matrix(0.244006,0.006588,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.244006,0.006588,-0.006748,0.249909,0,0);}
.m84_c01178{transform:matrix(0.244181,0.006593,-0.006748,0.249909,0,0);-ms-transform:matrix(0.244181,0.006593,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.244181,0.006593,-0.006748,0.249909,0,0);}
.m13_c01178{transform:matrix(0.244334,0.010272,-0.010501,0.249779,0,0);-ms-transform:matrix(0.244334,0.010272,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.244334,0.010272,-0.010501,0.249779,0,0);}
.m5_c01178{transform:matrix(0.244654,0.010286,-0.010501,0.249779,0,0);-ms-transform:matrix(0.244654,0.010286,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.244654,0.010286,-0.010501,0.249779,0,0);}
.mf9_c01178{transform:matrix(0.245383,0.006135,-0.006248,0.249922,0,0);-ms-transform:matrix(0.245383,0.006135,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.245383,0.006135,-0.006248,0.249922,0,0);}
.m2c_c01178{transform:matrix(0.245708,0.010330,-0.010501,0.249779,0,0);-ms-transform:matrix(0.245708,0.010330,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.245708,0.010330,-0.010501,0.249779,0,0);}
.md1_c01178{transform:matrix(0.246628,0.006166,-0.006248,0.249922,0,0);-ms-transform:matrix(0.246628,0.006166,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.246628,0.006166,-0.006248,0.249922,0,0);}
.m11f_c01178{transform:matrix(0.246670,0.005427,-0.005499,0.249940,0,0);-ms-transform:matrix(0.246670,0.005427,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.246670,0.005427,-0.005499,0.249940,0,0);}
.m5b_c01178{transform:matrix(0.246675,0.005674,-0.005748,0.249934,0,0);-ms-transform:matrix(0.246675,0.005674,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.246675,0.005674,-0.005748,0.249934,0,0);}
.m8e_c01178{transform:matrix(0.246755,0.006662,-0.006748,0.249909,0,0);-ms-transform:matrix(0.246755,0.006662,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.246755,0.006662,-0.006748,0.249909,0,0);}
.m2f_c01178{transform:matrix(0.247247,0.010395,-0.010501,0.249779,0,0);-ms-transform:matrix(0.247247,0.010395,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.247247,0.010395,-0.010501,0.249779,0,0);}
.m53_c01178{transform:matrix(0.247620,0.005695,-0.005748,0.249934,0,0);-ms-transform:matrix(0.247620,0.005695,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.247620,0.005695,-0.005748,0.249934,0,0);}
.m2e_c01178{transform:matrix(0.247656,0.010412,-0.010501,0.249779,0,0);-ms-transform:matrix(0.247656,0.010412,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.247656,0.010412,-0.010501,0.249779,0,0);}
.m50_c01178{transform:matrix(0.247736,0.010415,-0.010501,0.249779,0,0);-ms-transform:matrix(0.247736,0.010415,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.247736,0.010415,-0.010501,0.249779,0,0);}
.meb_c01178{transform:matrix(0.247958,0.006199,-0.006248,0.249922,0,0);-ms-transform:matrix(0.247958,0.006199,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.247958,0.006199,-0.006248,0.249922,0,0);}
.mf6_c01178{transform:matrix(0.248567,0.006214,-0.006248,0.249922,0,0);-ms-transform:matrix(0.248567,0.006214,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.248567,0.006214,-0.006248,0.249922,0,0);}
.ma1_c01178{transform:matrix(0.248734,0.006716,-0.006748,0.249909,0,0);-ms-transform:matrix(0.248734,0.006716,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.248734,0.006716,-0.006748,0.249909,0,0);}
.m36_c01178{transform:matrix(0.248755,0.010458,-0.010501,0.249779,0,0);-ms-transform:matrix(0.248755,0.010458,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.248755,0.010458,-0.010501,0.249779,0,0);}
.m35_c01178{transform:matrix(0.249015,0.010469,-0.010501,0.249779,0,0);-ms-transform:matrix(0.249015,0.010469,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.249015,0.010469,-0.010501,0.249779,0,0);}
.me6_c01178{transform:matrix(0.249407,0.006235,-0.006248,0.249922,0,0);-ms-transform:matrix(0.249407,0.006235,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.249407,0.006235,-0.006248,0.249922,0,0);}
.mee_c01178{transform:matrix(0.249892,0.006247,-0.006248,0.249922,0,0);-ms-transform:matrix(0.249892,0.006247,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.249892,0.006247,-0.006248,0.249922,0,0);}
.m103_c01178{transform:matrix(0.249897,0.006247,-0.006248,0.249922,0,0);-ms-transform:matrix(0.249897,0.006247,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.249897,0.006247,-0.006248,0.249922,0,0);}
.mc0_c01178{transform:matrix(0.250569,0.006765,-0.006748,0.249909,0,0);-ms-transform:matrix(0.250569,0.006765,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.250569,0.006765,-0.006748,0.249909,0,0);}
.m79_c01178{transform:matrix(0.251648,0.005788,-0.005748,0.249934,0,0);-ms-transform:matrix(0.251648,0.005788,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.251648,0.005788,-0.005748,0.249934,0,0);}
.mfa_c01178{transform:matrix(0.251801,0.006295,-0.006248,0.249922,0,0);-ms-transform:matrix(0.251801,0.006295,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.251801,0.006295,-0.006248,0.249922,0,0);}
.m17_c01178{transform:matrix(0.252192,0.010603,-0.010501,0.249779,0,0);-ms-transform:matrix(0.252192,0.010603,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.252192,0.010603,-0.010501,0.249779,0,0);}
.m11_c01178{transform:matrix(0.252382,0.010611,-0.010501,0.249779,0,0);-ms-transform:matrix(0.252382,0.010611,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.252382,0.010611,-0.010501,0.249779,0,0);}
.m9d_c01178{transform:matrix(0.252658,0.006822,-0.006748,0.249909,0,0);-ms-transform:matrix(0.252658,0.006822,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.252658,0.006822,-0.006748,0.249909,0,0);}
.mc4_c01178{transform:matrix(0.252718,0.006823,-0.006748,0.249909,0,0);-ms-transform:matrix(0.252718,0.006823,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.252718,0.006823,-0.006748,0.249909,0,0);}
.m100_c01178{transform:matrix(0.252761,0.006319,-0.006248,0.249922,0,0);-ms-transform:matrix(0.252761,0.006319,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.252761,0.006319,-0.006248,0.249922,0,0);}
.m2b_c01178{transform:matrix(0.253591,0.010661,-0.010501,0.249779,0,0);-ms-transform:matrix(0.253591,0.010661,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.253591,0.010661,-0.010501,0.249779,0,0);}
.m77_c01178{transform:matrix(0.253873,0.005839,-0.005748,0.249934,0,0);-ms-transform:matrix(0.253873,0.005839,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.253873,0.005839,-0.005748,0.249934,0,0);}
.mfc_c01178{transform:matrix(0.253991,0.006350,-0.006248,0.249922,0,0);-ms-transform:matrix(0.253991,0.006350,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.253991,0.006350,-0.006248,0.249922,0,0);}
.m51_c01178{transform:matrix(0.254255,0.010689,-0.010501,0.249779,0,0);-ms-transform:matrix(0.254255,0.010689,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.254255,0.010689,-0.010501,0.249779,0,0);}
.mf1_c01178{transform:matrix(0.254530,0.006363,-0.006248,0.249922,0,0);-ms-transform:matrix(0.254530,0.006363,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.254530,0.006363,-0.006248,0.249922,0,0);}
.mdd_c01178{transform:matrix(0.254675,0.006367,-0.006248,0.249922,0,0);-ms-transform:matrix(0.254675,0.006367,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.254675,0.006367,-0.006248,0.249922,0,0);}
.m10_c01178{transform:matrix(0.255050,0.010723,-0.010501,0.249779,0,0);-ms-transform:matrix(0.255050,0.010723,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.255050,0.010723,-0.010501,0.249779,0,0);}
.m78_c01178{transform:matrix(0.255188,0.005869,-0.005748,0.249934,0,0);-ms-transform:matrix(0.255188,0.005869,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.255188,0.005869,-0.005748,0.249934,0,0);}
.m34_c01178{transform:matrix(0.255205,0.010729,-0.010501,0.249779,0,0);-ms-transform:matrix(0.255205,0.010729,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.255205,0.010729,-0.010501,0.249779,0,0);}
.m22_c01178{transform:matrix(0.255519,0.010743,-0.010501,0.249779,0,0);-ms-transform:matrix(0.255519,0.010743,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.255519,0.010743,-0.010501,0.249779,0,0);}
.mf_c01178{transform:matrix(0.255594,0.010746,-0.010501,0.249779,0,0);-ms-transform:matrix(0.255594,0.010746,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.255594,0.010746,-0.010501,0.249779,0,0);}
.m119_c01178{transform:matrix(0.255943,0.005631,-0.005499,0.249940,0,0);-ms-transform:matrix(0.255943,0.005631,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.255943,0.005631,-0.005499,0.249940,0,0);}
.m88_c01178{transform:matrix(0.256517,0.006926,-0.006748,0.249909,0,0);-ms-transform:matrix(0.256517,0.006926,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.256517,0.006926,-0.006748,0.249909,0,0);}
.m3a_c01178{transform:matrix(0.256563,0.010786,-0.010501,0.249779,0,0);-ms-transform:matrix(0.256563,0.010786,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.256563,0.010786,-0.010501,0.249779,0,0);}
.mb6_c01178{transform:matrix(0.257251,0.006946,-0.006748,0.249909,0,0);-ms-transform:matrix(0.257251,0.006946,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.257251,0.006946,-0.006748,0.249909,0,0);}
.md_c01178{transform:matrix(0.257802,0.010839,-0.010501,0.249779,0,0);-ms-transform:matrix(0.257802,0.010839,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.257802,0.010839,-0.010501,0.249779,0,0);}
.m89_c01178{transform:matrix(0.257951,0.006965,-0.006748,0.249909,0,0);-ms-transform:matrix(0.257951,0.006965,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.257951,0.006965,-0.006748,0.249909,0,0);}
.m1c_c01178{transform:matrix(0.258082,0.010850,-0.010501,0.249779,0,0);-ms-transform:matrix(0.258082,0.010850,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.258082,0.010850,-0.010501,0.249779,0,0);}
.mb8_c01178{transform:matrix(0.258396,0.006977,-0.006748,0.249909,0,0);-ms-transform:matrix(0.258396,0.006977,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.258396,0.006977,-0.006748,0.249909,0,0);}
.m3_c01178{transform:matrix(0.258402,0.010864,-0.010501,0.249779,0,0);-ms-transform:matrix(0.258402,0.010864,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.258402,0.010864,-0.010501,0.249779,0,0);}
.mda_c01178{transform:matrix(0.258444,0.006461,-0.006248,0.249922,0,0);-ms-transform:matrix(0.258444,0.006461,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.258444,0.006461,-0.006248,0.249922,0,0);}
.m44_c01178{transform:matrix(0.258761,0.010879,-0.010501,0.249779,0,0);-ms-transform:matrix(0.258761,0.010879,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.258761,0.010879,-0.010501,0.249779,0,0);}
.m25_c01178{transform:matrix(0.259051,0.010891,-0.010501,0.249779,0,0);-ms-transform:matrix(0.259051,0.010891,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.259051,0.010891,-0.010501,0.249779,0,0);}
.mf2_c01178{transform:matrix(0.260049,0.006501,-0.006248,0.249922,0,0);-ms-transform:matrix(0.260049,0.006501,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.260049,0.006501,-0.006248,0.249922,0,0);}
.ma7_c01178{transform:matrix(0.262369,0.007084,-0.006748,0.249909,0,0);-ms-transform:matrix(0.262369,0.007084,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.262369,0.007084,-0.006748,0.249909,0,0);}
.m28_c01178{transform:matrix(0.262468,0.011035,-0.010501,0.249779,0,0);-ms-transform:matrix(0.262468,0.011035,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.262468,0.011035,-0.010501,0.249779,0,0);}
.ma8_c01178{transform:matrix(0.262479,0.007087,-0.006748,0.249909,0,0);-ms-transform:matrix(0.262479,0.007087,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.262479,0.007087,-0.006748,0.249909,0,0);}
.mbb_c01178{transform:matrix(0.262699,0.007093,-0.006748,0.249909,0,0);-ms-transform:matrix(0.262699,0.007093,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.262699,0.007093,-0.006748,0.249909,0,0);}
.maa_c01178{transform:matrix(0.262804,0.007096,-0.006748,0.249909,0,0);-ms-transform:matrix(0.262804,0.007096,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.262804,0.007096,-0.006748,0.249909,0,0);}
.mdf_c01178{transform:matrix(0.262818,0.006570,-0.006248,0.249922,0,0);-ms-transform:matrix(0.262818,0.006570,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.262818,0.006570,-0.006248,0.249922,0,0);}
.mf3_c01178{transform:matrix(0.263488,0.006587,-0.006248,0.249922,0,0);-ms-transform:matrix(0.263488,0.006587,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.263488,0.006587,-0.006248,0.249922,0,0);}
.m57_c01178{transform:matrix(0.263690,0.006065,-0.005748,0.249934,0,0);-ms-transform:matrix(0.263690,0.006065,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.263690,0.006065,-0.005748,0.249934,0,0);}
.ma3_c01178{transform:matrix(0.263919,0.007126,-0.006748,0.249909,0,0);-ms-transform:matrix(0.263919,0.007126,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.263919,0.007126,-0.006748,0.249909,0,0);}
.mb7_c01178{transform:matrix(0.264009,0.007128,-0.006748,0.249909,0,0);-ms-transform:matrix(0.264009,0.007128,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.264009,0.007128,-0.006748,0.249909,0,0);}
.mb5_c01178{transform:matrix(0.264269,0.007135,-0.006748,0.249909,0,0);-ms-transform:matrix(0.264269,0.007135,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.264269,0.007135,-0.006748,0.249909,0,0);}
.m26_c01178{transform:matrix(0.264312,0.011112,-0.010501,0.249779,0,0);-ms-transform:matrix(0.264312,0.011112,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.264312,0.011112,-0.010501,0.249779,0,0);}
.mb2_c01178{transform:matrix(0.264379,0.007138,-0.006748,0.249909,0,0);-ms-transform:matrix(0.264379,0.007138,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.264379,0.007138,-0.006748,0.249909,0,0);}
.m11d_c01178{transform:matrix(0.265366,0.005838,-0.005499,0.249940,0,0);-ms-transform:matrix(0.265366,0.005838,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.265366,0.005838,-0.005499,0.249940,0,0);}
.md5_c01178{transform:matrix(0.265532,0.006638,-0.006248,0.249922,0,0);-ms-transform:matrix(0.265532,0.006638,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.265532,0.006638,-0.006248,0.249922,0,0);}
.m8f_c01178{transform:matrix(0.265578,0.007171,-0.006748,0.249909,0,0);-ms-transform:matrix(0.265578,0.007171,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.265578,0.007171,-0.006748,0.249909,0,0);}
.me2_c01178{transform:matrix(0.266567,0.006664,-0.006248,0.249922,0,0);-ms-transform:matrix(0.266567,0.006664,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.266567,0.006664,-0.006248,0.249922,0,0);}
.m85_c01178{transform:matrix(0.266778,0.007203,-0.006748,0.249909,0,0);-ms-transform:matrix(0.266778,0.007203,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.266778,0.007203,-0.006748,0.249909,0,0);}
.mdc_c01178{transform:matrix(0.267326,0.006683,-0.006248,0.249922,0,0);-ms-transform:matrix(0.267326,0.006683,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.267326,0.006683,-0.006248,0.249922,0,0);}
.m21_c01178{transform:matrix(0.267494,0.011246,-0.010501,0.249779,0,0);-ms-transform:matrix(0.267494,0.011246,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.267494,0.011246,-0.010501,0.249779,0,0);}
.md4_c01178{transform:matrix(0.267671,0.006692,-0.006248,0.249922,0,0);-ms-transform:matrix(0.267671,0.006692,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.267671,0.006692,-0.006248,0.249922,0,0);}
.m42_c01178{transform:matrix(0.268058,0.011270,-0.010501,0.249779,0,0);-ms-transform:matrix(0.268058,0.011270,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.268058,0.011270,-0.010501,0.249779,0,0);}
.mb_c01178{transform:matrix(0.268133,0.011273,-0.010501,0.249779,0,0);-ms-transform:matrix(0.268133,0.011273,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.268133,0.011273,-0.010501,0.249779,0,0);}
.m3b_c01178{transform:matrix(0.269537,0.011332,-0.010501,0.249779,0,0);-ms-transform:matrix(0.269537,0.011332,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.269537,0.011332,-0.010501,0.249779,0,0);}
.m58_c01178{transform:matrix(0.269649,0.006202,-0.005748,0.249934,0,0);-ms-transform:matrix(0.269649,0.006202,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.269649,0.006202,-0.005748,0.249934,0,0);}
.m8d_c01178{transform:matrix(0.269677,0.007281,-0.006748,0.249909,0,0);-ms-transform:matrix(0.269677,0.007281,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.269677,0.007281,-0.006748,0.249909,0,0);}
.m123_c01178{transform:matrix(0.270480,0.005951,-0.005499,0.249940,0,0);-ms-transform:matrix(0.270480,0.005951,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.270480,0.005951,-0.005499,0.249940,0,0);}
.mc2_c01178{transform:matrix(0.270506,0.007304,-0.006748,0.249909,0,0);-ms-transform:matrix(0.270506,0.007304,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.270506,0.007304,-0.006748,0.249909,0,0);}
.mdb_c01178{transform:matrix(0.270715,0.006768,-0.006248,0.249922,0,0);-ms-transform:matrix(0.270715,0.006768,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.270715,0.006768,-0.006248,0.249922,0,0);}
.ma6_c01178{transform:matrix(0.270781,0.007311,-0.006748,0.249909,0,0);-ms-transform:matrix(0.270781,0.007311,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.270781,0.007311,-0.006748,0.249909,0,0);}
.m1d_c01178{transform:matrix(0.270886,0.011389,-0.010501,0.249779,0,0);-ms-transform:matrix(0.270886,0.011389,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.270886,0.011389,-0.010501,0.249779,0,0);}
.m8c_c01178{transform:matrix(0.271501,0.007331,-0.006748,0.249909,0,0);-ms-transform:matrix(0.271501,0.007331,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.271501,0.007331,-0.006748,0.249909,0,0);}
.m8_c01178{transform:matrix(0.271700,0.011423,-0.010501,0.249779,0,0);-ms-transform:matrix(0.271700,0.011423,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.271700,0.011423,-0.010501,0.249779,0,0);}
.m1b_c01178{transform:matrix(0.271740,0.011425,-0.010501,0.249779,0,0);-ms-transform:matrix(0.271740,0.011425,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.271740,0.011425,-0.010501,0.249779,0,0);}
.m90_c01178{transform:matrix(0.271771,0.007338,-0.006748,0.249909,0,0);-ms-transform:matrix(0.271771,0.007338,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.271771,0.007338,-0.006748,0.249909,0,0);}
.mf7_c01178{transform:matrix(0.271810,0.006795,-0.006248,0.249922,0,0);-ms-transform:matrix(0.271810,0.006795,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.271810,0.006795,-0.006248,0.249922,0,0);}
.m4a_c01178{transform:matrix(0.271850,0.011429,-0.010501,0.249779,0,0);-ms-transform:matrix(0.271850,0.011429,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.271850,0.011429,-0.010501,0.249779,0,0);}
.mb9_c01178{transform:matrix(0.272566,0.007359,-0.006748,0.249909,0,0);-ms-transform:matrix(0.272566,0.007359,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.272566,0.007359,-0.006748,0.249909,0,0);}
.md8_c01178{transform:matrix(0.272670,0.006817,-0.006248,0.249922,0,0);-ms-transform:matrix(0.272670,0.006817,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.272670,0.006817,-0.006248,0.249922,0,0);}
.m45_c01178{transform:matrix(0.274448,0.011538,-0.010501,0.249779,0,0);-ms-transform:matrix(0.274448,0.011538,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.274448,0.011538,-0.010501,0.249779,0,0);}
.m1e_c01178{transform:matrix(0.274637,0.011546,-0.010501,0.249779,0,0);-ms-transform:matrix(0.274637,0.011546,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.274637,0.011546,-0.010501,0.249779,0,0);}
.m4_c01178{transform:matrix(0.275112,0.011566,-0.010501,0.249779,0,0);-ms-transform:matrix(0.275112,0.011566,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.275112,0.011566,-0.010501,0.249779,0,0);}
.md7_c01178{transform:matrix(0.275559,0.006889,-0.006248,0.249922,0,0);-ms-transform:matrix(0.275559,0.006889,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.275559,0.006889,-0.006248,0.249922,0,0);}
.md3_c01178{transform:matrix(0.275709,0.006893,-0.006248,0.249922,0,0);-ms-transform:matrix(0.275709,0.006893,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.275709,0.006893,-0.006248,0.249922,0,0);}
.m87_c01178{transform:matrix(0.275934,0.007450,-0.006748,0.249909,0,0);-ms-transform:matrix(0.275934,0.007450,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.275934,0.007450,-0.006748,0.249909,0,0);}
.md0_c01178{transform:matrix(0.276304,0.006908,-0.006248,0.249922,0,0);-ms-transform:matrix(0.276304,0.006908,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.276304,0.006908,-0.006248,0.249922,0,0);}
.mae_c01178{transform:matrix(0.276414,0.007463,-0.006748,0.249909,0,0);-ms-transform:matrix(0.276414,0.007463,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.276414,0.007463,-0.006748,0.249909,0,0);}
.m5a_c01178{transform:matrix(0.276962,0.006370,-0.005748,0.249934,0,0);-ms-transform:matrix(0.276962,0.006370,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.276962,0.006370,-0.005748,0.249934,0,0);}
.m3d_c01178{transform:matrix(0.277265,0.011657,-0.010501,0.249779,0,0);-ms-transform:matrix(0.277265,0.011657,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.277265,0.011657,-0.010501,0.249779,0,0);}
.ma5_c01178{transform:matrix(0.277414,0.007490,-0.006748,0.249909,0,0);-ms-transform:matrix(0.277414,0.007490,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.277414,0.007490,-0.006748,0.249909,0,0);}
.mbf_c01178{transform:matrix(0.277619,0.007496,-0.006748,0.249909,0,0);-ms-transform:matrix(0.277619,0.007496,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.277619,0.007496,-0.006748,0.249909,0,0);}
.m120_c01178{transform:matrix(0.278328,0.006123,-0.005499,0.249940,0,0);-ms-transform:matrix(0.278328,0.006123,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.278328,0.006123,-0.005499,0.249940,0,0);}
.m40_c01178{transform:matrix(0.278709,0.011717,-0.010501,0.249779,0,0);-ms-transform:matrix(0.278709,0.011717,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.278709,0.011717,-0.010501,0.249779,0,0);}
.m19_c01178{transform:matrix(0.278884,0.011725,-0.010501,0.249779,0,0);-ms-transform:matrix(0.278884,0.011725,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.278884,0.011725,-0.010501,0.249779,0,0);}
.mc3_c01178{transform:matrix(0.278938,0.007531,-0.006748,0.249909,0,0);-ms-transform:matrix(0.278938,0.007531,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.278938,0.007531,-0.006748,0.249909,0,0);}
.mb3_c01178{transform:matrix(0.279738,0.007553,-0.006748,0.249909,0,0);-ms-transform:matrix(0.279738,0.007553,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.279738,0.007553,-0.006748,0.249909,0,0);}
.m9_c01178{transform:matrix(0.279898,0.011767,-0.010501,0.249779,0,0);-ms-transform:matrix(0.279898,0.011767,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.279898,0.011767,-0.010501,0.249779,0,0);}
.m37_c01178{transform:matrix(0.279988,0.011771,-0.010501,0.249779,0,0);-ms-transform:matrix(0.279988,0.011771,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.279988,0.011771,-0.010501,0.249779,0,0);}
.m1f_c01178{transform:matrix(0.280252,0.011782,-0.010501,0.249779,0,0);-ms-transform:matrix(0.280252,0.011782,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.280252,0.011782,-0.010501,0.249779,0,0);}
.m29_c01178{transform:matrix(0.281052,0.011816,-0.010501,0.249779,0,0);-ms-transform:matrix(0.281052,0.011816,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.281052,0.011816,-0.010501,0.249779,0,0);}
.m125_c01178{transform:matrix(0.281155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281155,0.000000,0.000000,0.250000,0,0);}
.m54_c01178{transform:matrix(0.281186,0.006467,-0.005748,0.249934,0,0);-ms-transform:matrix(0.281186,0.006467,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.281186,0.006467,-0.005748,0.249934,0,0);}
.m55_c01178{transform:matrix(0.281486,0.006474,-0.005748,0.249934,0,0);-ms-transform:matrix(0.281486,0.006474,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.281486,0.006474,-0.005748,0.249934,0,0);}
.ma4_c01178{transform:matrix(0.282037,0.007615,-0.006748,0.249909,0,0);-ms-transform:matrix(0.282037,0.007615,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.282037,0.007615,-0.006748,0.249909,0,0);}
.mbe_c01178{transform:matrix(0.282262,0.007621,-0.006748,0.249909,0,0);-ms-transform:matrix(0.282262,0.007621,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.282262,0.007621,-0.006748,0.249909,0,0);}
.m124_c01178{transform:matrix(0.282482,0.006215,-0.005499,0.249940,0,0);-ms-transform:matrix(0.282482,0.006215,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.282482,0.006215,-0.005499,0.249940,0,0);}
.mab_c01178{transform:matrix(0.282752,0.007634,-0.006748,0.249909,0,0);-ms-transform:matrix(0.282752,0.007634,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.282752,0.007634,-0.006748,0.249909,0,0);}
.mb1_c01178{transform:matrix(0.285346,0.007704,-0.006748,0.249909,0,0);-ms-transform:matrix(0.285346,0.007704,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.285346,0.007704,-0.006748,0.249909,0,0);}
.mb0_c01178{transform:matrix(0.285501,0.007709,-0.006748,0.249909,0,0);-ms-transform:matrix(0.285501,0.007709,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.285501,0.007709,-0.006748,0.249909,0,0);}
.m3e_c01178{transform:matrix(0.285558,0.012005,-0.010501,0.249779,0,0);-ms-transform:matrix(0.285558,0.012005,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.285558,0.012005,-0.010501,0.249779,0,0);}
.m9f_c01178{transform:matrix(0.288170,0.007781,-0.006748,0.249909,0,0);-ms-transform:matrix(0.288170,0.007781,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.288170,0.007781,-0.006748,0.249909,0,0);}
.m9c_c01178{transform:matrix(0.292763,0.007905,-0.006748,0.249909,0,0);-ms-transform:matrix(0.292763,0.007905,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.292763,0.007905,-0.006748,0.249909,0,0);}
.ma0_c01178{transform:matrix(0.300755,0.008120,-0.006748,0.249909,0,0);-ms-transform:matrix(0.300755,0.008120,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.300755,0.008120,-0.006748,0.249909,0,0);}
.ma2_c01178{transform:matrix(0.302630,0.008171,-0.006748,0.249909,0,0);-ms-transform:matrix(0.302630,0.008171,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.302630,0.008171,-0.006748,0.249909,0,0);}
.m1_c01178{transform:matrix(0.317609,0.013353,-0.010501,0.249779,0,0);-ms-transform:matrix(0.317609,0.013353,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.317609,0.013353,-0.010501,0.249779,0,0);}
.m138_c01178{transform:matrix(0.359629,0.004316,-0.003000,0.249982,0,0);-ms-transform:matrix(0.359629,0.004316,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.359629,0.004316,-0.003000,0.249982,0,0);}
.m4d_c01178{transform:matrix(0.691899,0.029089,-0.010501,0.249779,0,0);-ms-transform:matrix(0.691899,0.029089,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.691899,0.029089,-0.010501,0.249779,0,0);}
.m139_c01178{transform:matrix(0.706894,0.008483,-0.003000,0.249982,0,0);-ms-transform:matrix(0.706894,0.008483,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.706894,0.008483,-0.003000,0.249982,0,0);}
.v0_c01178{vertical-align:0.000000px;}
.ls0_c01178{letter-spacing:0.000000px;}
.sc__c01178{text-shadow:none;}
.sc0_c01178{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__c01178{-webkit-text-stroke:0px transparent;}
.sc0_c01178{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01178{word-spacing:0.000000px;}
.fc0_c01178{color:transparent;}
.fs8_c01178{font-size:66.024053px;}
.fs1_c01178{font-size:71.991540px;}
.fse_c01178{font-size:72.017422px;}
.fs2_c01178{font-size:72.019041px;}
.fsa_c01178{font-size:72.022496px;}
.fs6_c01178{font-size:72.026239px;}
.fs0_c01178{font-size:77.990834px;}
.fsf_c01178{font-size:78.000000px;}
.fs3_c01178{font-size:78.020628px;}
.fsb_c01178{font-size:78.024371px;}
.fsd_c01178{font-size:83.959040px;}
.fs11_c01178{font-size:84.006048px;}
.fs4_c01178{font-size:84.022215px;}
.fs9_c01178{font-size:84.026246px;}
.fs5_c01178{font-size:84.030612px;}
.fs12_c01178{font-size:89.956114px;}
.fs7_c01178{font-size:96.034986px;}
.fs10_c01178{font-size:102.007344px;}
.fsc_c01178{font-size:119.941486px;}
.y0_c01178{bottom:0.000000px;}
.y14f_c01178{bottom:60.716824px;}
.y14e_c01178{bottom:62.394655px;}
.y14d_c01178{bottom:64.322728px;}
.y14c_c01178{bottom:65.677378px;}
.y14b_c01178{bottom:68.318454px;}
.y14a_c01178{bottom:69.954583px;}
.y149_c01178{bottom:83.165856px;}
.y148_c01178{bottom:83.870400px;}
.y147_c01178{bottom:86.354880px;}
.y146_c01178{bottom:88.449648px;}
.y145_c01178{bottom:92.691648px;}
.y144_c01178{bottom:95.514096px;}
.y143_c01178{bottom:96.942000px;}
.y142_c01178{bottom:114.768156px;}
.y141_c01178{bottom:115.301046px;}
.y140_c01178{bottom:115.469826px;}
.y13f_c01178{bottom:116.081190px;}
.y13e_c01178{bottom:116.407878px;}
.y13d_c01178{bottom:116.517138px;}
.y13c_c01178{bottom:117.075618px;}
.y13b_c01178{bottom:117.234528px;}
.y13a_c01178{bottom:117.400548px;}
.y139_c01178{bottom:117.719892px;}
.y138_c01178{bottom:123.662604px;}
.y137_c01178{bottom:125.530878px;}
.y136_c01178{bottom:126.607026px;}
.y135_c01178{bottom:126.998760px;}
.y134_c01178{bottom:127.530624px;}
.y133_c01178{bottom:128.327916px;}
.y132_c01178{bottom:128.726058px;}
.y131_c01178{bottom:129.912780px;}
.y130_c01178{bottom:130.975536px;}
.y12f_c01178{bottom:131.377080px;}
.y12e_c01178{bottom:131.763000px;}
.y12d_c01178{bottom:159.729000px;}
.y12c_c01178{bottom:181.560627px;}
.y12b_c01178{bottom:183.263823px;}
.y12a_c01178{bottom:184.012461px;}
.y129_c01178{bottom:184.967778px;}
.y128_c01178{bottom:187.191681px;}
.y127_c01178{bottom:188.148582px;}
.y126_c01178{bottom:188.879664px;}
.y125_c01178{bottom:190.572531px;}
.y124_c01178{bottom:191.303613px;}
.y123_c01178{bottom:192.288498px;}
.y122_c01178{bottom:193.221243px;}
.y121_c01178{bottom:194.677500px;}
.y120_c01178{bottom:213.138972px;}
.y11f_c01178{bottom:216.774970px;}
.y11e_c01178{bottom:217.907532px;}
.y11d_c01178{bottom:221.205547px;}
.y11c_c01178{bottom:223.408105px;}
.y11b_c01178{bottom:224.472390px;}
.y11a_c01178{bottom:227.738955px;}
.y119_c01178{bottom:228.483400px;}
.y118_c01178{bottom:230.660902px;}
.y117_c01178{bottom:232.133233px;}
.y116_c01178{bottom:233.543911px;}
.y115_c01178{bottom:234.659769px;}
.y114_c01178{bottom:253.469280px;}
.y113_c01178{bottom:257.671152px;}
.y112_c01178{bottom:259.840896px;}
.y111_c01178{bottom:261.249072px;}
.y110_c01178{bottom:265.494048px;}
.y10f_c01178{bottom:266.548464px;}
.y10e_c01178{bottom:267.627888px;}
.y10d_c01178{bottom:270.024000px;}
.y10c_c01178{bottom:289.625137px;}
.y10b_c01178{bottom:291.847050px;}
.y10a_c01178{bottom:292.877475px;}
.y109_c01178{bottom:293.420362px;}
.y108_c01178{bottom:295.787625px;}
.y107_c01178{bottom:296.591887px;}
.y106_c01178{bottom:297.674962px;}
.y105_c01178{bottom:299.242162px;}
.y104_c01178{bottom:302.372737px;}
.y103_c01178{bottom:303.181312px;}
.y102_c01178{bottom:324.106237px;}
.y101_c01178{bottom:324.809250px;}
.y100_c01178{bottom:325.489275px;}
.yff_c01178{bottom:327.484725px;}
.yfe_c01178{bottom:328.154212px;}
.yfd_c01178{bottom:329.445150px;}
.yfc_c01178{bottom:330.131887px;}
.yfb_c01178{bottom:330.800850px;}
.yfa_c01178{bottom:332.351362px;}
.yf9_c01178{bottom:333.875212px;}
.yf8_c01178{bottom:335.220562px;}
.yf7_c01178{bottom:335.866238px;}
.yf6_c01178{bottom:336.943125px;}
.yf5_c01178{bottom:357.916912px;}
.yf4_c01178{bottom:358.488975px;}
.yf3_c01178{bottom:360.443175px;}
.yf2_c01178{bottom:362.908162px;}
.yf1_c01178{bottom:363.777300px;}
.yf0_c01178{bottom:365.689987px;}
.yef_c01178{bottom:366.824325px;}
.yee_c01178{bottom:367.931325px;}
.yed_c01178{bottom:370.106175px;}
.yec_c01178{bottom:370.914225px;}
.yeb_c01178{bottom:372.864525px;}
.yea_c01178{bottom:373.674262px;}
.ye9_c01178{bottom:395.747850px;}
.ye8_c01178{bottom:396.543750px;}
.ye7_c01178{bottom:397.651575px;}
.ye6_c01178{bottom:399.348675px;}
.ye5_c01178{bottom:400.163662px;}
.ye4_c01178{bottom:401.568225px;}
.ye3_c01178{bottom:403.778175px;}
.ye2_c01178{bottom:405.695775px;}
.ye1_c01178{bottom:407.093587px;}
.ye0_c01178{bottom:408.151500px;}
.ydf_c01178{bottom:410.947500px;}
.yde_c01178{bottom:430.159237px;}
.ydd_c01178{bottom:431.153587px;}
.ydc_c01178{bottom:433.717012px;}
.ydb_c01178{bottom:436.004700px;}
.yda_c01178{bottom:439.199887px;}
.yd9_c01178{bottom:440.139712px;}
.yd8_c01178{bottom:441.714562px;}
.yd7_c01178{bottom:442.716788px;}
.yd6_c01178{bottom:445.848600px;}
.yd5_c01178{bottom:446.849625px;}
.yd4_c01178{bottom:464.040562px;}
.yd3_c01178{bottom:464.898225px;}
.yd2_c01178{bottom:466.060200px;}
.yd1_c01178{bottom:468.531450px;}
.yd0_c01178{bottom:470.712187px;}
.ycf_c01178{bottom:471.535425px;}
.yce_c01178{bottom:474.581437px;}
.ycd_c01178{bottom:475.959037px;}
.ycc_c01178{bottom:478.153275px;}
.ycb_c01178{bottom:478.989000px;}
.yca_c01178{bottom:499.738410px;}
.yc9_c01178{bottom:502.390626px;}
.yc8_c01178{bottom:504.510171px;}
.yc7_c01178{bottom:505.351008px;}
.yc6_c01178{bottom:506.122275px;}
.yc5_c01178{bottom:506.646765px;}
.yc4_c01178{bottom:509.054068px;}
.yc3_c01178{bottom:510.369546px;}
.yc2_c01178{bottom:513.305388px;}
.yc1_c01178{bottom:514.316466px;}
.yc0_c01178{bottom:515.087206px;}
.ybf_c01178{bottom:539.477632px;}
.ybe_c01178{bottom:540.062040px;}
.ybd_c01178{bottom:541.298211px;}
.ybc_c01178{bottom:542.290005px;}
.ybb_c01178{bottom:543.505288px;}
.yba_c01178{bottom:544.677867px;}
.yb9_c01178{bottom:545.883922px;}
.yb8_c01178{bottom:546.860982px;}
.yb7_c01178{bottom:549.238642px;}
.yb6_c01178{bottom:551.008014px;}
.yb5_c01178{bottom:576.178530px;}
.yb4_c01178{bottom:577.201206px;}
.yb3_c01178{bottom:577.897041px;}
.yb2_c01178{bottom:580.084192px;}
.yb1_c01178{bottom:580.808653px;}
.yb0_c01178{bottom:581.538339px;}
.yaf_c01178{bottom:583.973860px;}
.yae_c01178{bottom:585.432055px;}
.yad_c01178{bottom:586.154613px;}
.yac_c01178{bottom:587.599527px;}
.yab_c01178{bottom:588.823848px;}
.yaa_c01178{bottom:609.468090px;}
.ya9_c01178{bottom:610.576512px;}
.ya8_c01178{bottom:611.878171px;}
.ya7_c01178{bottom:612.341815px;}
.ya6_c01178{bottom:614.325337px;}
.ya5_c01178{bottom:615.005217px;}
.ya4_c01178{bottom:616.983315px;}
.ya3_c01178{bottom:618.324126px;}
.ya2_c01178{bottom:618.987202px;}
.ya1_c01178{bottom:619.846798px;}
.ya0_c01178{bottom:622.045705px;}
.y9f_c01178{bottom:643.848381px;}
.y9e_c01178{bottom:644.692368px;}
.y9d_c01178{bottom:645.560452px;}
.y9c_c01178{bottom:647.585698px;}
.y9b_c01178{bottom:649.025094px;}
.y9a_c01178{bottom:650.758347px;}
.y99_c01178{bottom:653.589714px;}
.y98_c01178{bottom:654.488577px;}
.y97_c01178{bottom:656.208951px;}
.y96_c01178{bottom:657.921468px;}
.y95_c01178{bottom:659.051253px;}
.y94_c01178{bottom:680.790573px;}
.y93_c01178{bottom:681.827137px;}
.y92_c01178{bottom:682.435021px;}
.y91_c01178{bottom:684.035025px;}
.y90_c01178{bottom:685.436031px;}
.y8f_c01178{bottom:686.019912px;}
.y8e_c01178{bottom:686.607961px;}
.y8d_c01178{bottom:687.624936px;}
.y8c_c01178{bottom:688.388749px;}
.y8b_c01178{bottom:690.178239px;}
.y8a_c01178{bottom:690.775032px;}
.y89_c01178{bottom:692.540355px;}
.y88_c01178{bottom:713.955433px;}
.y87_c01178{bottom:714.793095px;}
.y86_c01178{bottom:717.472453px;}
.y85_c01178{bottom:718.078698px;}
.y84_c01178{bottom:720.444910px;}
.y83_c01178{bottom:721.980954px;}
.y82_c01178{bottom:722.860371px;}
.y81_c01178{bottom:724.056093px;}
.y80_c01178{bottom:725.872234px;}
.y7f_c01178{bottom:727.389000px;}
.y7e_c01178{bottom:755.132471px;}
.y7d_c01178{bottom:756.726713px;}
.y7c_c01178{bottom:758.500794px;}
.y7b_c01178{bottom:760.484526px;}
.y7a_c01178{bottom:761.276187px;}
.y79_c01178{bottom:761.869118px;}
.y78_c01178{bottom:762.654723px;}
.y77_c01178{bottom:763.262681px;}
.y76_c01178{bottom:784.830900px;}
.y75_c01178{bottom:787.777905px;}
.y74_c01178{bottom:788.521224px;}
.y73_c01178{bottom:789.993977px;}
.y72_c01178{bottom:790.695636px;}
.y71_c01178{bottom:793.155921px;}
.y70_c01178{bottom:793.863791px;}
.y6f_c01178{bottom:795.301059px;}
.y6e_c01178{bottom:796.061922px;}
.y6d_c01178{bottom:797.001551px;}
.y6c_c01178{bottom:799.187417px;}
.y6b_c01178{bottom:821.148224px;}
.y6a_c01178{bottom:822.429416px;}
.y69_c01178{bottom:823.459137px;}
.y68_c01178{bottom:825.007739px;}
.y67_c01178{bottom:825.770085px;}
.y66_c01178{bottom:827.528895px;}
.y65_c01178{bottom:828.061955px;}
.y64_c01178{bottom:829.344009px;}
.y63_c01178{bottom:829.857024px;}
.y62_c01178{bottom:831.114101px;}
.y61_c01178{bottom:831.883796px;}
.y60_c01178{bottom:833.399622px;}
.y5f_c01178{bottom:834.411714px;}
.y5e_c01178{bottom:836.187740px;}
.y5d_c01178{bottom:857.974824px;}
.y5c_c01178{bottom:858.726476px;}
.y5b_c01178{bottom:860.745347px;}
.y5a_c01178{bottom:862.056588px;}
.y59_c01178{bottom:862.813863px;}
.y58_c01178{bottom:865.608467px;}
.y57_c01178{bottom:868.646640px;}
.y56_c01178{bottom:869.677500px;}
.y55_c01178{bottom:897.343885px;}
.y54_c01178{bottom:899.774133px;}
.y53_c01178{bottom:901.386064px;}
.y52_c01178{bottom:902.189792px;}
.y51_c01178{bottom:903.393560px;}
.y50_c01178{bottom:904.995465px;}
.y4f_c01178{bottom:905.561101px;}
.y4e_c01178{bottom:906.169511px;}
.y4d_c01178{bottom:928.844592px;}
.y4c_c01178{bottom:929.741370px;}
.y4b_c01178{bottom:930.408387px;}
.y4a_c01178{bottom:931.499988px;}
.y49_c01178{bottom:932.609531px;}
.y48_c01178{bottom:934.413121px;}
.y47_c01178{bottom:935.528199px;}
.y46_c01178{bottom:936.398247px;}
.y45_c01178{bottom:937.979907px;}
.y44_c01178{bottom:938.399802px;}
.y43_c01178{bottom:940.608019px;}
.y42_c01178{bottom:941.267598px;}
.y41_c01178{bottom:964.861674px;}
.y40_c01178{bottom:966.831594px;}
.y3f_c01178{bottom:967.934328px;}
.y3e_c01178{bottom:969.704596px;}
.y3d_c01178{bottom:971.062548px;}
.y3c_c01178{bottom:971.509803px;}
.y3b_c01178{bottom:972.323416px;}
.y3a_c01178{bottom:974.839137px;}
.y39_c01178{bottom:976.094506px;}
.y38_c01178{bottom:998.026341px;}
.y37_c01178{bottom:999.912354px;}
.y36_c01178{bottom:1000.820449px;}
.y35_c01178{bottom:1001.997528px;}
.y34_c01178{bottom:1002.694272px;}
.y33_c01178{bottom:1003.614648px;}
.y32_c01178{bottom:1005.462384px;}
.y31_c01178{bottom:1007.365681px;}
.y30_c01178{bottom:1008.047535px;}
.y2f_c01178{bottom:1009.888336px;}
.y2e_c01178{bottom:1012.001487px;}
.y2d_c01178{bottom:1033.009327px;}
.y2c_c01178{bottom:1036.182763px;}
.y2b_c01178{bottom:1037.693746px;}
.y2a_c01178{bottom:1038.657125px;}
.y29_c01178{bottom:1040.376750px;}
.y28_c01178{bottom:1041.819112px;}
.y27_c01178{bottom:1042.311876px;}
.y26_c01178{bottom:1043.520495px;}
.y25_c01178{bottom:1044.763872px;}
.y24_c01178{bottom:1046.930739px;}
.y23_c01178{bottom:1047.636749px;}
.y22_c01178{bottom:1068.726232px;}
.y21_c01178{bottom:1071.044875px;}
.y20_c01178{bottom:1072.757283px;}
.y1f_c01178{bottom:1074.238741px;}
.y1e_c01178{bottom:1075.503588px;}
.y1d_c01178{bottom:1077.405688px;}
.y1c_c01178{bottom:1078.025806px;}
.y1b_c01178{bottom:1080.525390px;}
.y1a_c01178{bottom:1081.381551px;}
.y19_c01178{bottom:1104.865741px;}
.y18_c01178{bottom:1105.531548px;}
.y17_c01178{bottom:1106.401155px;}
.y16_c01178{bottom:1107.087652px;}
.y15_c01178{bottom:1108.215074px;}
.y14_c01178{bottom:1109.545413px;}
.y13_c01178{bottom:1110.620611px;}
.y12_c01178{bottom:1112.202020px;}
.y11_c01178{bottom:1113.992209px;}
.y10_c01178{bottom:1116.400078px;}
.yf_c01178{bottom:1117.285282px;}
.ye_c01178{bottom:1140.181462px;}
.yd_c01178{bottom:1140.760878px;}
.yc_c01178{bottom:1142.436237px;}
.yb_c01178{bottom:1143.011517px;}
.ya_c01178{bottom:1144.897683px;}
.y9_c01178{bottom:1146.246211px;}
.y8_c01178{bottom:1146.784137px;}
.y7_c01178{bottom:1147.369002px;}
.y6_c01178{bottom:1147.735909px;}
.y5_c01178{bottom:1149.618305px;}
.y4_c01178{bottom:1150.739961px;}
.y3_c01178{bottom:1151.300499px;}
.y2_c01178{bottom:1203.330417px;}
.y1_c01178{bottom:1204.215000px;}
.ha_c01178{height:66.024053px;}
.h3_c01178{height:71.991540px;}
.h10_c01178{height:72.017422px;}
.h4_c01178{height:72.019041px;}
.hc_c01178{height:72.022496px;}
.h8_c01178{height:72.026239px;}
.h2_c01178{height:77.990834px;}
.h11_c01178{height:78.000000px;}
.h5_c01178{height:78.020628px;}
.hd_c01178{height:78.024371px;}
.hf_c01178{height:83.959040px;}
.h13_c01178{height:84.006048px;}
.h6_c01178{height:84.022215px;}
.hb_c01178{height:84.026246px;}
.h7_c01178{height:84.030612px;}
.h14_c01178{height:89.956114px;}
.h9_c01178{height:96.034986px;}
.h12_c01178{height:102.007344px;}
.he_c01178{height:119.941486px;}
.h1_c01178{height:1258.500000px;}
.h0_c01178{height:1258.740000px;}
.w0_c01178{width:904.200000px;}
.w1_c01178{width:904.500000px;}
.x0_c01178{left:0.000000px;}
.xcf_c01178{left:160.380000px;}
.xda_c01178{left:170.007000px;}
.xd0_c01178{left:171.220500px;}
.xc3_c01178{left:172.764379px;}
.xac_c01178{left:174.946500px;}
.xa0_c01178{left:176.493000px;}
.x8d_c01178{left:177.869648px;}
.x7b_c01178{left:179.750777px;}
.x65_c01178{left:181.154955px;}
.x42_c01178{left:183.159647px;}
.x27_c01178{left:184.671291px;}
.xf_c01178{left:186.938985px;}
.x3_c01178{left:187.993767px;}
.xd1_c01178{left:203.380500px;}
.xd5_c01178{left:205.941006px;}
.xbe_c01178{left:207.157500px;}
.xb2_c01178{left:208.194787px;}
.x99_c01178{left:210.749366px;}
.x66_c01178{left:214.961353px;}
.x38_c01178{left:216.814656px;}
.x1e_c01178{left:219.222102px;}
.x4_c01178{left:220.893393px;}
.x7c_c01178{left:223.206951px;}
.xde_c01178{left:224.230009px;}
.xb6_c01178{left:229.815413px;}
.x10_c01178{left:231.131613px;}
.x8e_c01178{left:233.500140px;}
.xd2_c01178{left:236.842500px;}
.xca_c01178{left:238.936500px;}
.x43_c01178{left:248.183580px;}
.x31_c01178{left:249.725384px;}
.x9a_c01178{left:252.866768px;}
.x50_c01178{left:259.417396px;}
.xb7_c01178{left:262.126463px;}
.xd6_c01178{left:269.933388px;}
.x93_c01178{left:277.270536px;}
.x73_c01178{left:279.502361px;}
.x5c_c01178{left:281.793748px;}
.x28_c01178{left:285.100865px;}
.x5_c01178{left:286.742158px;}
.x6b_c01178{left:288.813000px;}
.x49_c01178{left:292.363500px;}
.xc4_c01178{left:293.810820px;}
.xa1_c01178{left:297.691500px;}
.x8f_c01178{left:299.191010px;}
.x51_c01178{left:303.421396px;}
.x74_c01178{left:312.669420px;}
.xbf_c01178{left:315.659389px;}
.x1f_c01178{left:317.537301px;}
.x5d_c01178{left:324.474214px;}
.x39_c01178{left:327.003704px;}
.xad_c01178{left:329.103000px;}
.x85_c01178{left:332.412545px;}
.x67_c01178{left:335.614257px;}
.x44_c01178{left:336.952709px;}
.xba_c01178{left:338.831475px;}
.x6c_c01178{left:344.989500px;}
.x3a_c01178{left:347.988621px;}
.x11_c01178{left:351.246869px;}
.xa2_c01178{left:352.795500px;}
.x7d_c01178{left:355.243515px;}
.xdf_c01178{left:357.260350px;}
.x5e_c01178{left:359.056008px;}
.x19_c01178{left:362.646147px;}
.x86_c01178{left:365.588322px;}
.x52_c01178{left:369.326896px;}
.x29_c01178{left:372.553950px;}
.x20_c01178{left:373.962743px;}
.x32_c01178{left:375.226730px;}
.xc5_c01178{left:382.267440px;}
.xae_c01178{left:385.015500px;}
.x7e_c01178{left:389.813446px;}
.x1a_c01178{left:395.249043px;}
.x6_c01178{left:397.215111px;}
.x90_c01178{left:398.361915px;}
.x45_c01178{left:403.647672px;}
.x2a_c01178{left:404.947092px;}
.xa7_c01178{left:407.358075px;}
.x1_c01178{left:409.251000px;}
.x6d_c01178{left:412.254000px;}
.x33_c01178{left:415.824114px;}
.x7_c01178{left:418.760684px;}
.xe0_c01178{left:421.479699px;}
.x5f_c01178{left:424.417026px;}
.x3b_c01178{left:426.885546px;}
.x21_c01178{left:428.775911px;}
.x2_c01178{left:430.291438px;}
.x87_c01178{left:432.593958px;}
.xdb_c01178{left:435.127614px;}
.xcb_c01178{left:436.281000px;}
.x34_c01178{left:438.173926px;}
.x12_c01178{left:440.602536px;}
.x68_c01178{left:445.810918px;}
.x46_c01178{left:448.187489px;}
.xb3_c01178{left:449.802787px;}
.x22_c01178{left:451.101293px;}
.x8_c01178{left:453.095886px;}
.x75_c01178{left:454.492845px;}
.x53_c01178{left:457.447396px;}
.xaf_c01178{left:461.719500px;}
.x94_c01178{left:463.675815px;}
.x4a_c01178{left:469.278000px;}
.x3c_c01178{left:470.289207px;}
.xa3_c01178{left:474.636000px;}
.xe1_c01178{left:477.324853px;}
.x54_c01178{left:479.752396px;}
.xc0_c01178{left:481.099784px;}
.xb8_c01178{left:483.102563px;}
.x9_c01178{left:484.636422px;}
.x6e_c01178{left:489.111000px;}
.x1b_c01178{left:495.157584px;}
.x7f_c01178{left:498.737403px;}
.xdc_c01178{left:500.523652px;}
.x35_c01178{left:505.929725px;}
.xa4_c01178{left:507.565500px;}
.x91_c01178{left:509.081360px;}
.x76_c01178{left:510.950034px;}
.xc6_c01178{left:513.396999px;}
.x23_c01178{left:516.508748px;}
.x13_c01178{left:519.493467px;}
.xd3_c01178{left:523.918500px;}
.x3d_c01178{left:525.912425px;}
.x9b_c01178{left:530.338245px;}
.x88_c01178{left:531.486629px;}
.xd7_c01178{left:533.777046px;}
.x55_c01178{left:535.493896px;}
.x47_c01178{left:537.552152px;}
.x92_c01178{left:542.222315px;}
.x69_c01178{left:544.412769px;}
.x6f_c01178{left:546.001500px;}
.xa8_c01178{left:549.944325px;}
.x9c_c01178{left:552.210027px;}
.x56_c01178{left:558.670396px;}
.x1c_c01178{left:561.555755px;}
.xa_c01178{left:563.736796px;}
.x80_c01178{left:565.378185px;}
.x60_c01178{left:568.361803px;}
.xb4_c01178{left:571.683787px;}
.x14_c01178{left:573.168369px;}
.x77_c01178{left:576.037329px;}
.xdd_c01178{left:578.086012px;}
.xc7_c01178{left:580.097617px;}
.xbb_c01178{left:581.429550px;}
.x2b_c01178{left:583.182894px;}
.x9d_c01178{left:584.333619px;}
.x4b_c01178{left:590.782500px;}
.xc1_c01178{left:592.797973px;}
.x24_c01178{left:594.509691px;}
.x95_c01178{left:595.749851px;}
.x61_c01178{left:600.239028px;}
.xbc_c01178{left:604.045613px;}
.xb0_c01178{left:606.300000px;}
.xcc_c01178{left:614.094000px;}
.x3e_c01178{left:615.872492px;}
.x9e_c01178{left:619.367454px;}
.x81_c01178{left:620.746183px;}
.x4c_c01178{left:623.707500px;}
.x2c_c01178{left:626.926701px;}
.xa9_c01178{left:628.843950px;}
.x6a_c01178{left:632.976946px;}
.x57_c01178{left:635.140396px;}
.x25_c01178{left:638.205155px;}
.x15_c01178{left:639.553278px;}
.xbd_c01178{left:647.003700px;}
.x36_c01178{left:649.284222px;}
.x78_c01178{left:653.834202px;}
.x70_c01178{left:656.092500px;}
.xcd_c01178{left:657.517500px;}
.x2d_c01178{left:660.066789px;}
.x96_c01178{left:663.276753px;}
.x89_c01178{left:664.656279px;}
.x62_c01178{left:667.208080px;}
.x58_c01178{left:668.285896px;}
.x3f_c01178{left:671.221232px;}
.x48_c01178{left:672.232112px;}
.xb_c01178{left:674.442268px;}
.x4d_c01178{left:680.718000px;}
.x8a_c01178{left:687.832653px;}
.xd8_c01178{left:689.802150px;}
.xce_c01178{left:691.546500px;}
.xa5_c01178{left:693.645000px;}
.x16_c01178{left:695.791448px;}
.x82_c01178{left:698.646289px;}
.x63_c01178{left:700.961839px;}
.xb5_c01178{left:705.048788px;}
.x26_c01178{left:706.780150px;}
.xc_c01178{left:708.192426px;}
.xc8_c01178{left:714.200057px;}
.x2e_c01178{left:716.022156px;}
.xaa_c01178{left:717.212100px;}
.x97_c01178{left:718.412159px;}
.xc2_c01178{left:723.975165px;}
.x40_c01178{left:725.679044px;}
.x17_c01178{left:730.080345px;}
.x83_c01178{left:732.020681px;}
.x59_c01178{left:735.616396px;}
.xa6_c01178{left:740.124000px;}
.x79_c01178{left:742.726289px;}
.x37_c01178{left:747.556662px;}
.xb9_c01178{left:748.698750px;}
.xab_c01178{left:751.522688px;}
.x8b_c01178{left:752.943465px;}
.x71_c01178{left:755.328000px;}
.x2f_c01178{left:759.152509px;}
.x84_c01178{left:764.502572px;}
.x4e_c01178{left:768.495000px;}
.x18_c01178{left:773.473517px;}
.x7a_c01178{left:776.526510px;}
.x5a_c01178{left:780.386896px;}
.xb1_c01178{left:782.932500px;}
.x72_c01178{left:786.352500px;}
.xd9_c01178{left:796.468614px;}
.x4f_c01178{left:801.175500px;}
.x41_c01178{left:803.722566px;}
.xd_c01178{left:806.528289px;}
.x8c_c01178{left:808.339914px;}
.x9f_c01178{left:818.226573px;}
.x98_c01178{left:819.532202px;}
.xc9_c01178{left:824.292846px;}
.x64_c01178{left:834.899910px;}
.x5b_c01178{left:836.090896px;}
.xe_c01178{left:840.483930px;}
.xd4_c01178{left:846.253500px;}
.x30_c01178{left:848.787865px;}
.x1d_c01178{left:850.994648px;}
@media print{
.v0_c01178{vertical-align:0.000000pt;}
.ls0_c01178{letter-spacing:0.000000pt;}
.ws0_c01178{word-spacing:0.000000pt;}
.fs8_c01178{font-size:58.688047pt;}
.fs1_c01178{font-size:63.992480pt;}
.fse_c01178{font-size:64.015486pt;}
.fs2_c01178{font-size:64.016926pt;}
.fsa_c01178{font-size:64.019997pt;}
.fs6_c01178{font-size:64.023324pt;}
.fs0_c01178{font-size:69.325186pt;}
.fsf_c01178{font-size:69.333333pt;}
.fs3_c01178{font-size:69.351670pt;}
.fsb_c01178{font-size:69.354997pt;}
.fsd_c01178{font-size:74.630258pt;}
.fs11_c01178{font-size:74.672042pt;}
.fs4_c01178{font-size:74.686413pt;}
.fs9_c01178{font-size:74.689996pt;}
.fs5_c01178{font-size:74.693878pt;}
.fs12_c01178{font-size:79.960990pt;}
.fs7_c01178{font-size:85.364432pt;}
.fs10_c01178{font-size:90.673194pt;}
.fsc_c01178{font-size:106.614654pt;}
.y0_c01178{bottom:0.000000pt;}
.y14f_c01178{bottom:53.970511pt;}
.y14e_c01178{bottom:55.461916pt;}
.y14d_c01178{bottom:57.175759pt;}
.y14c_c01178{bottom:58.379892pt;}
.y14b_c01178{bottom:60.727515pt;}
.y14a_c01178{bottom:62.181852pt;}
.y149_c01178{bottom:73.925205pt;}
.y148_c01178{bottom:74.551467pt;}
.y147_c01178{bottom:76.759893pt;}
.y146_c01178{bottom:78.621909pt;}
.y145_c01178{bottom:82.392576pt;}
.y144_c01178{bottom:84.901419pt;}
.y143_c01178{bottom:86.170667pt;}
.y142_c01178{bottom:102.016139pt;}
.y141_c01178{bottom:102.489819pt;}
.y140_c01178{bottom:102.639845pt;}
.y13f_c01178{bottom:103.183280pt;}
.y13e_c01178{bottom:103.473669pt;}
.y13d_c01178{bottom:103.570789pt;}
.y13c_c01178{bottom:104.067216pt;}
.y13b_c01178{bottom:104.208469pt;}
.y13a_c01178{bottom:104.356043pt;}
.y139_c01178{bottom:104.639904pt;}
.y138_c01178{bottom:109.922315pt;}
.y137_c01178{bottom:111.583003pt;}
.y136_c01178{bottom:112.539579pt;}
.y135_c01178{bottom:112.887787pt;}
.y134_c01178{bottom:113.360555pt;}
.y133_c01178{bottom:114.069259pt;}
.y132_c01178{bottom:114.423163pt;}
.y131_c01178{bottom:115.478027pt;}
.y130_c01178{bottom:116.422699pt;}
.y12f_c01178{bottom:116.779627pt;}
.y12e_c01178{bottom:117.122667pt;}
.y12d_c01178{bottom:141.981333pt;}
.y12c_c01178{bottom:161.387224pt;}
.y12b_c01178{bottom:162.901176pt;}
.y12a_c01178{bottom:163.566632pt;}
.y129_c01178{bottom:164.415803pt;}
.y128_c01178{bottom:166.392605pt;}
.y127_c01178{bottom:167.243184pt;}
.y126_c01178{bottom:167.893035pt;}
.y125_c01178{bottom:169.397805pt;}
.y124_c01178{bottom:170.047656pt;}
.y123_c01178{bottom:170.923109pt;}
.y122_c01178{bottom:171.752216pt;}
.y121_c01178{bottom:173.046667pt;}
.y120_c01178{bottom:189.456864pt;}
.y11f_c01178{bottom:192.688863pt;}
.y11e_c01178{bottom:193.695584pt;}
.y11d_c01178{bottom:196.627153pt;}
.y11c_c01178{bottom:198.584983pt;}
.y11b_c01178{bottom:199.531013pt;}
.y11a_c01178{bottom:202.434627pt;}
.y119_c01178{bottom:203.096356pt;}
.y118_c01178{bottom:205.031913pt;}
.y117_c01178{bottom:206.340652pt;}
.y116_c01178{bottom:207.594588pt;}
.y115_c01178{bottom:208.586461pt;}
.y114_c01178{bottom:225.306027pt;}
.y113_c01178{bottom:229.041024pt;}
.y112_c01178{bottom:230.969685pt;}
.y111_c01178{bottom:232.221397pt;}
.y110_c01178{bottom:235.994709pt;}
.y10f_c01178{bottom:236.931968pt;}
.y10e_c01178{bottom:237.891456pt;}
.y10d_c01178{bottom:240.021333pt;}
.y10c_c01178{bottom:257.444567pt;}
.y10b_c01178{bottom:259.419600pt;}
.y10a_c01178{bottom:260.335533pt;}
.y109_c01178{bottom:260.818100pt;}
.y108_c01178{bottom:262.922333pt;}
.y107_c01178{bottom:263.637233pt;}
.y106_c01178{bottom:264.599967pt;}
.y105_c01178{bottom:265.993033pt;}
.y104_c01178{bottom:268.775767pt;}
.y103_c01178{bottom:269.494500pt;}
.y102_c01178{bottom:288.094433pt;}
.y101_c01178{bottom:288.719333pt;}
.y100_c01178{bottom:289.323800pt;}
.yff_c01178{bottom:291.097533pt;}
.yfe_c01178{bottom:291.692633pt;}
.yfd_c01178{bottom:292.840133pt;}
.yfc_c01178{bottom:293.450567pt;}
.yfb_c01178{bottom:294.045200pt;}
.yfa_c01178{bottom:295.423433pt;}
.yf9_c01178{bottom:296.777967pt;}
.yf8_c01178{bottom:297.973833pt;}
.yf7_c01178{bottom:298.547767pt;}
.yf6_c01178{bottom:299.505000pt;}
.yf5_c01178{bottom:318.148367pt;}
.yf4_c01178{bottom:318.656867pt;}
.yf3_c01178{bottom:320.393933pt;}
.yf2_c01178{bottom:322.585033pt;}
.yf1_c01178{bottom:323.357600pt;}
.yf0_c01178{bottom:325.057767pt;}
.yef_c01178{bottom:326.066067pt;}
.yee_c01178{bottom:327.050067pt;}
.yed_c01178{bottom:328.983267pt;}
.yec_c01178{bottom:329.701533pt;}
.yeb_c01178{bottom:331.435133pt;}
.yea_c01178{bottom:332.154900pt;}
.ye9_c01178{bottom:351.775867pt;}
.ye8_c01178{bottom:352.483333pt;}
.ye7_c01178{bottom:353.468067pt;}
.ye6_c01178{bottom:354.976600pt;}
.ye5_c01178{bottom:355.701033pt;}
.ye4_c01178{bottom:356.949533pt;}
.ye3_c01178{bottom:358.913933pt;}
.ye2_c01178{bottom:360.618467pt;}
.ye1_c01178{bottom:361.860967pt;}
.ye0_c01178{bottom:362.801333pt;}
.ydf_c01178{bottom:365.286667pt;}
.yde_c01178{bottom:382.363767pt;}
.ydd_c01178{bottom:383.247633pt;}
.ydc_c01178{bottom:385.526233pt;}
.ydb_c01178{bottom:387.559733pt;}
.yda_c01178{bottom:390.399900pt;}
.yd9_c01178{bottom:391.235300pt;}
.yd8_c01178{bottom:392.635167pt;}
.yd7_c01178{bottom:393.526033pt;}
.yd6_c01178{bottom:396.309867pt;}
.yd5_c01178{bottom:397.199667pt;}
.yd4_c01178{bottom:412.480500pt;}
.yd3_c01178{bottom:413.242867pt;}
.yd2_c01178{bottom:414.275733pt;}
.yd1_c01178{bottom:416.472400pt;}
.yd0_c01178{bottom:418.410833pt;}
.ycf_c01178{bottom:419.142600pt;}
.yce_c01178{bottom:421.850167pt;}
.ycd_c01178{bottom:423.074700pt;}
.ycc_c01178{bottom:425.025133pt;}
.ycb_c01178{bottom:425.768000pt;}
.yca_c01178{bottom:444.211920pt;}
.yc9_c01178{bottom:446.569445pt;}
.yc8_c01178{bottom:448.453485pt;}
.yc7_c01178{bottom:449.200896pt;}
.yc6_c01178{bottom:449.886467pt;}
.yc5_c01178{bottom:450.352680pt;}
.yc4_c01178{bottom:452.492505pt;}
.yc3_c01178{bottom:453.661819pt;}
.yc2_c01178{bottom:456.271456pt;}
.yc1_c01178{bottom:457.170192pt;}
.yc0_c01178{bottom:457.855295pt;}
.ybf_c01178{bottom:479.535673pt;}
.ybe_c01178{bottom:480.055147pt;}
.ybd_c01178{bottom:481.153965pt;}
.ybc_c01178{bottom:482.035560pt;}
.ybb_c01178{bottom:483.115812pt;}
.yba_c01178{bottom:484.158104pt;}
.yb9_c01178{bottom:485.230153pt;}
.yb8_c01178{bottom:486.098651pt;}
.yb7_c01178{bottom:488.212127pt;}
.yb6_c01178{bottom:489.784901pt;}
.yb5_c01178{bottom:512.158693pt;}
.yb4_c01178{bottom:513.067739pt;}
.yb3_c01178{bottom:513.686259pt;}
.yb2_c01178{bottom:515.630393pt;}
.yb1_c01178{bottom:516.274359pt;}
.yb0_c01178{bottom:516.922968pt;}
.yaf_c01178{bottom:519.087876pt;}
.yae_c01178{bottom:520.384049pt;}
.yad_c01178{bottom:521.026323pt;}
.yac_c01178{bottom:522.310691pt;}
.yab_c01178{bottom:523.398976pt;}
.yaa_c01178{bottom:541.749413pt;}
.ya9_c01178{bottom:542.734677pt;}
.ya8_c01178{bottom:543.891708pt;}
.ya7_c01178{bottom:544.303836pt;}
.ya6_c01178{bottom:546.066967pt;}
.ya5_c01178{bottom:546.671304pt;}
.ya4_c01178{bottom:548.429613pt;}
.ya3_c01178{bottom:549.621445pt;}
.ya2_c01178{bottom:550.210847pt;}
.ya1_c01178{bottom:550.974932pt;}
.ya0_c01178{bottom:552.929516pt;}
.y9f_c01178{bottom:572.309672pt;}
.y9e_c01178{bottom:573.059883pt;}
.y9d_c01178{bottom:573.831513pt;}
.y9c_c01178{bottom:575.631732pt;}
.y9b_c01178{bottom:576.911195pt;}
.y9a_c01178{bottom:578.451864pt;}
.y99_c01178{bottom:580.968635pt;}
.y98_c01178{bottom:581.767624pt;}
.y97_c01178{bottom:583.296845pt;}
.y96_c01178{bottom:584.819083pt;}
.y95_c01178{bottom:585.823336pt;}
.y94_c01178{bottom:605.147176pt;}
.y93_c01178{bottom:606.068567pt;}
.y92_c01178{bottom:606.608908pt;}
.y91_c01178{bottom:608.031133pt;}
.y90_c01178{bottom:609.276472pt;}
.y8f_c01178{bottom:609.795477pt;}
.y8e_c01178{bottom:610.318188pt;}
.y8d_c01178{bottom:611.222165pt;}
.y8c_c01178{bottom:611.901111pt;}
.y8b_c01178{bottom:613.491768pt;}
.y8a_c01178{bottom:614.022251pt;}
.y89_c01178{bottom:615.591427pt;}
.y88_c01178{bottom:634.627052pt;}
.y87_c01178{bottom:635.371640pt;}
.y86_c01178{bottom:637.753292pt;}
.y85_c01178{bottom:638.292176pt;}
.y84_c01178{bottom:640.395476pt;}
.y83_c01178{bottom:641.760848pt;}
.y82_c01178{bottom:642.542552pt;}
.y81_c01178{bottom:643.605416pt;}
.y80_c01178{bottom:645.219764pt;}
.y7f_c01178{bottom:646.568000pt;}
.y7e_c01178{bottom:671.228863pt;}
.y7d_c01178{bottom:672.645967pt;}
.y7c_c01178{bottom:674.222928pt;}
.y7b_c01178{bottom:675.986245pt;}
.y7a_c01178{bottom:676.689944pt;}
.y79_c01178{bottom:677.216993pt;}
.y78_c01178{bottom:677.915309pt;}
.y77_c01178{bottom:678.455716pt;}
.y76_c01178{bottom:697.627467pt;}
.y75_c01178{bottom:700.247027pt;}
.y74_c01178{bottom:700.907755pt;}
.y73_c01178{bottom:702.216868pt;}
.y72_c01178{bottom:702.840565pt;}
.y71_c01178{bottom:705.027485pt;}
.y70_c01178{bottom:705.656703pt;}
.y6f_c01178{bottom:706.934275pt;}
.y6e_c01178{bottom:707.610597pt;}
.y6d_c01178{bottom:708.445823pt;}
.y6c_c01178{bottom:710.388815pt;}
.y6b_c01178{bottom:729.909532pt;}
.y6a_c01178{bottom:731.048369pt;}
.y69_c01178{bottom:731.963677pt;}
.y68_c01178{bottom:733.340212pt;}
.y67_c01178{bottom:734.017853pt;}
.y66_c01178{bottom:735.581240pt;}
.y65_c01178{bottom:736.055071pt;}
.y64_c01178{bottom:737.194675pt;}
.y63_c01178{bottom:737.650688pt;}
.y62_c01178{bottom:738.768089pt;}
.y61_c01178{bottom:739.452263pt;}
.y60_c01178{bottom:740.799664pt;}
.y5f_c01178{bottom:741.699301pt;}
.y5e_c01178{bottom:743.277991pt;}
.y5d_c01178{bottom:762.644288pt;}
.y5c_c01178{bottom:763.312423pt;}
.y5b_c01178{bottom:765.106975pt;}
.y5a_c01178{bottom:766.272523pt;}
.y59_c01178{bottom:766.945656pt;}
.y58_c01178{bottom:769.429748pt;}
.y57_c01178{bottom:772.130347pt;}
.y56_c01178{bottom:773.046667pt;}
.y55_c01178{bottom:797.639009pt;}
.y54_c01178{bottom:799.799229pt;}
.y53_c01178{bottom:801.232057pt;}
.y52_c01178{bottom:801.946481pt;}
.y51_c01178{bottom:803.016497pt;}
.y50_c01178{bottom:804.440413pt;}
.y4f_c01178{bottom:804.943201pt;}
.y4e_c01178{bottom:805.484009pt;}
.y4d_c01178{bottom:825.639637pt;}
.y4c_c01178{bottom:826.436773pt;}
.y4b_c01178{bottom:827.029677pt;}
.y4a_c01178{bottom:827.999989pt;}
.y49_c01178{bottom:828.986249pt;}
.y48_c01178{bottom:830.589441pt;}
.y47_c01178{bottom:831.580621pt;}
.y46_c01178{bottom:832.353997pt;}
.y45_c01178{bottom:833.759917pt;}
.y44_c01178{bottom:834.133157pt;}
.y43_c01178{bottom:836.096017pt;}
.y42_c01178{bottom:836.682309pt;}
.y41_c01178{bottom:857.654821pt;}
.y40_c01178{bottom:859.405861pt;}
.y3f_c01178{bottom:860.386069pt;}
.y3e_c01178{bottom:861.959641pt;}
.y3d_c01178{bottom:863.166709pt;}
.y3c_c01178{bottom:863.564269pt;}
.y3b_c01178{bottom:864.287481pt;}
.y3a_c01178{bottom:866.523677pt;}
.y39_c01178{bottom:867.639561pt;}
.y38_c01178{bottom:887.134525pt;}
.y37_c01178{bottom:888.810981pt;}
.y36_c01178{bottom:889.618177pt;}
.y35_c01178{bottom:890.664469pt;}
.y34_c01178{bottom:891.283797pt;}
.y33_c01178{bottom:892.101909pt;}
.y32_c01178{bottom:893.744341pt;}
.y31_c01178{bottom:895.436161pt;}
.y30_c01178{bottom:896.042253pt;}
.y2f_c01178{bottom:897.678521pt;}
.y2e_c01178{bottom:899.556877pt;}
.y2d_c01178{bottom:918.230513pt;}
.y2c_c01178{bottom:921.051345pt;}
.y2b_c01178{bottom:922.394441pt;}
.y2a_c01178{bottom:923.250777pt;}
.y29_c01178{bottom:924.779333pt;}
.y28_c01178{bottom:926.061433pt;}
.y27_c01178{bottom:926.499445pt;}
.y26_c01178{bottom:927.573773pt;}
.y25_c01178{bottom:928.678997pt;}
.y24_c01178{bottom:930.605101pt;}
.y23_c01178{bottom:931.232665pt;}
.y22_c01178{bottom:949.978873pt;}
.y21_c01178{bottom:952.039889pt;}
.y20_c01178{bottom:953.562029pt;}
.y1f_c01178{bottom:954.878881pt;}
.y1e_c01178{bottom:956.003189pt;}
.y1d_c01178{bottom:957.693945pt;}
.y1c_c01178{bottom:958.245161pt;}
.y1b_c01178{bottom:960.467013pt;}
.y1a_c01178{bottom:961.228045pt;}
.y19_c01178{bottom:982.102881pt;}
.y18_c01178{bottom:982.694709pt;}
.y17_c01178{bottom:983.467693pt;}
.y16_c01178{bottom:984.077913pt;}
.y15_c01178{bottom:985.080065pt;}
.y14_c01178{bottom:986.262589pt;}
.y13_c01178{bottom:987.218321pt;}
.y12_c01178{bottom:988.624017pt;}
.y11_c01178{bottom:990.215297pt;}
.y10_c01178{bottom:992.355625pt;}
.yf_c01178{bottom:993.142473pt;}
.ye_c01178{bottom:1013.494633pt;}
.yd_c01178{bottom:1014.009669pt;}
.yc_c01178{bottom:1015.498877pt;}
.yb_c01178{bottom:1016.010237pt;}
.ya_c01178{bottom:1017.686829pt;}
.y9_c01178{bottom:1018.885521pt;}
.y8_c01178{bottom:1019.363677pt;}
.y7_c01178{bottom:1019.883557pt;}
.y6_c01178{bottom:1020.209697pt;}
.y5_c01178{bottom:1021.882937pt;}
.y4_c01178{bottom:1022.879965pt;}
.y3_c01178{bottom:1023.378221pt;}
.y2_c01178{bottom:1069.627037pt;}
.y1_c01178{bottom:1070.413333pt;}
.ha_c01178{height:58.688047pt;}
.h3_c01178{height:63.992480pt;}
.h10_c01178{height:64.015486pt;}
.h4_c01178{height:64.016926pt;}
.hc_c01178{height:64.019997pt;}
.h8_c01178{height:64.023324pt;}
.h2_c01178{height:69.325186pt;}
.h11_c01178{height:69.333333pt;}
.h5_c01178{height:69.351670pt;}
.hd_c01178{height:69.354997pt;}
.hf_c01178{height:74.630258pt;}
.h13_c01178{height:74.672042pt;}
.h6_c01178{height:74.686413pt;}
.hb_c01178{height:74.689996pt;}
.h7_c01178{height:74.693878pt;}
.h14_c01178{height:79.960990pt;}
.h9_c01178{height:85.364432pt;}
.h12_c01178{height:90.673194pt;}
.he_c01178{height:106.614654pt;}
.h1_c01178{height:1118.666667pt;}
.h0_c01178{height:1118.880000pt;}
.w0_c01178{width:803.733333pt;}
.w1_c01178{width:804.000000pt;}
.x0_c01178{left:0.000000pt;}
.xcf_c01178{left:142.560000pt;}
.xda_c01178{left:151.117333pt;}
.xd0_c01178{left:152.196000pt;}
.xc3_c01178{left:153.568337pt;}
.xac_c01178{left:155.508000pt;}
.xa0_c01178{left:156.882667pt;}
.x8d_c01178{left:158.106353pt;}
.x7b_c01178{left:159.778468pt;}
.x65_c01178{left:161.026627pt;}
.x42_c01178{left:162.808575pt;}
.x27_c01178{left:164.152259pt;}
.xf_c01178{left:166.167987pt;}
.x3_c01178{left:167.105571pt;}
.xd1_c01178{left:180.782667pt;}
.xd5_c01178{left:183.058672pt;}
.xbe_c01178{left:184.140000pt;}
.xb2_c01178{left:185.062033pt;}
.x99_c01178{left:187.332769pt;}
.x66_c01178{left:191.076759pt;}
.x38_c01178{left:192.724139pt;}
.x1e_c01178{left:194.864091pt;}
.x4_c01178{left:196.349683pt;}
.x7c_c01178{left:198.406179pt;}
.xde_c01178{left:199.315564pt;}
.xb6_c01178{left:204.280367pt;}
.x10_c01178{left:205.450323pt;}
.x8e_c01178{left:207.555680pt;}
.xd2_c01178{left:210.526667pt;}
.xca_c01178{left:212.388000pt;}
.x43_c01178{left:220.607627pt;}
.x31_c01178{left:221.978119pt;}
.x9a_c01178{left:224.770460pt;}
.x50_c01178{left:230.593241pt;}
.xb7_c01178{left:233.001300pt;}
.xd6_c01178{left:239.940789pt;}
.x93_c01178{left:246.462699pt;}
.x73_c01178{left:248.446543pt;}
.x5c_c01178{left:250.483332pt;}
.x28_c01178{left:253.422991pt;}
.x5_c01178{left:254.881919pt;}
.x6b_c01178{left:256.722667pt;}
.x49_c01178{left:259.878667pt;}
.xc4_c01178{left:261.165173pt;}
.xa1_c01178{left:264.614667pt;}
.x8f_c01178{left:265.947564pt;}
.x51_c01178{left:269.707908pt;}
.x74_c01178{left:277.928373pt;}
.xbf_c01178{left:280.586124pt;}
.x1f_c01178{left:282.255379pt;}
.x5d_c01178{left:288.421524pt;}
.x39_c01178{left:290.669959pt;}
.xad_c01178{left:292.536000pt;}
.x85_c01178{left:295.477817pt;}
.x67_c01178{left:298.323784pt;}
.x44_c01178{left:299.513519pt;}
.xba_c01178{left:301.183533pt;}
.x6c_c01178{left:306.657333pt;}
.x3a_c01178{left:309.323219pt;}
.x11_c01178{left:312.219439pt;}
.xa2_c01178{left:313.596000pt;}
.x7d_c01178{left:315.772013pt;}
.xdf_c01178{left:317.564756pt;}
.x5e_c01178{left:319.160896pt;}
.x19_c01178{left:322.352131pt;}
.x86_c01178{left:324.967397pt;}
.x52_c01178{left:328.290575pt;}
.x29_c01178{left:331.159067pt;}
.x20_c01178{left:332.411327pt;}
.x32_c01178{left:333.534871pt;}
.xc5_c01178{left:339.793280pt;}
.xae_c01178{left:342.236000pt;}
.x7e_c01178{left:346.500841pt;}
.x1a_c01178{left:351.332483pt;}
.x6_c01178{left:353.080099pt;}
.x90_c01178{left:354.099480pt;}
.x45_c01178{left:358.797931pt;}
.x2a_c01178{left:359.952971pt;}
.xa7_c01178{left:362.096067pt;}
.x1_c01178{left:363.778667pt;}
.x6d_c01178{left:366.448000pt;}
.x33_c01178{left:369.621435pt;}
.x7_c01178{left:372.231719pt;}
.xe0_c01178{left:374.648621pt;}
.x5f_c01178{left:377.259579pt;}
.x3b_c01178{left:379.453819pt;}
.x21_c01178{left:381.134143pt;}
.x2_c01178{left:382.481279pt;}
.x87_c01178{left:384.527963pt;}
.xdb_c01178{left:386.780101pt;}
.xcb_c01178{left:387.805333pt;}
.x34_c01178{left:389.487935pt;}
.x12_c01178{left:391.646699pt;}
.x68_c01178{left:396.276372pt;}
.x46_c01178{left:398.388879pt;}
.xb3_c01178{left:399.824700pt;}
.x22_c01178{left:400.978927pt;}
.x8_c01178{left:402.751899pt;}
.x75_c01178{left:403.993640pt;}
.x53_c01178{left:406.619908pt;}
.xaf_c01178{left:410.417333pt;}
.x94_c01178{left:412.156280pt;}
.x4a_c01178{left:417.136000pt;}
.x3c_c01178{left:418.034851pt;}
.xa3_c01178{left:421.898667pt;}
.xe1_c01178{left:424.288759pt;}
.x54_c01178{left:426.446575pt;}
.xc0_c01178{left:427.644252pt;}
.xb8_c01178{left:429.424500pt;}
.x9_c01178{left:430.787931pt;}
.x6e_c01178{left:434.765333pt;}
.x1b_c01178{left:440.140075pt;}
.x7f_c01178{left:443.322136pt;}
.xdc_c01178{left:444.909913pt;}
.x35_c01178{left:449.715311pt;}
.xa4_c01178{left:451.169333pt;}
.x91_c01178{left:452.516764pt;}
.x76_c01178{left:454.177808pt;}
.xc6_c01178{left:456.352888pt;}
.x23_c01178{left:459.118887pt;}
.x13_c01178{left:461.771971pt;}
.xd3_c01178{left:465.705333pt;}
.x3d_c01178{left:467.477711pt;}
.x9b_c01178{left:471.411773pt;}
.x88_c01178{left:472.432559pt;}
.xd7_c01178{left:474.468485pt;}
.x55_c01178{left:475.994575pt;}
.x47_c01178{left:477.824135pt;}
.x92_c01178{left:481.975391pt;}
.x69_c01178{left:483.922461pt;}
.x6f_c01178{left:485.334667pt;}
.xa8_c01178{left:488.839400pt;}
.x9c_c01178{left:490.853357pt;}
.x56_c01178{left:496.595908pt;}
.x1c_c01178{left:499.160671pt;}
.xa_c01178{left:501.099375pt;}
.x80_c01178{left:502.558387pt;}
.x60_c01178{left:505.210492pt;}
.xb4_c01178{left:508.163367pt;}
.x14_c01178{left:509.482995pt;}
.x77_c01178{left:512.033181pt;}
.xdd_c01178{left:513.854233pt;}
.xc7_c01178{left:515.642327pt;}
.xbb_c01178{left:516.826267pt;}
.x2b_c01178{left:518.384795pt;}
.x9d_c01178{left:519.407661pt;}
.x4b_c01178{left:525.140000pt;}
.xc1_c01178{left:526.931532pt;}
.x24_c01178{left:528.453059pt;}
.x95_c01178{left:529.555423pt;}
.x61_c01178{left:533.545803pt;}
.xbc_c01178{left:536.929433pt;}
.xb0_c01178{left:538.933333pt;}
.xcc_c01178{left:545.861333pt;}
.x3e_c01178{left:547.442215pt;}
.x9e_c01178{left:550.548848pt;}
.x81_c01178{left:551.774385pt;}
.x4c_c01178{left:554.406667pt;}
.x2c_c01178{left:557.268179pt;}
.xa9_c01178{left:558.972400pt;}
.x6a_c01178{left:562.646175pt;}
.x57_c01178{left:564.569241pt;}
.x25_c01178{left:567.293471pt;}
.x15_c01178{left:568.491803pt;}
.xbd_c01178{left:575.114400pt;}
.x36_c01178{left:577.141531pt;}
.x78_c01178{left:581.185957pt;}
.x70_c01178{left:583.193333pt;}
.xcd_c01178{left:584.460000pt;}
.x2d_c01178{left:586.726035pt;}
.x96_c01178{left:589.579336pt;}
.x89_c01178{left:590.805581pt;}
.x62_c01178{left:593.073849pt;}
.x58_c01178{left:594.031908pt;}
.x3f_c01178{left:596.641095pt;}
.x48_c01178{left:597.539655pt;}
.xb_c01178{left:599.504239pt;}
.x4d_c01178{left:605.082667pt;}
.x8a_c01178{left:611.406803pt;}
.xd8_c01178{left:613.157467pt;}
.xce_c01178{left:614.708000pt;}
.xa5_c01178{left:616.573333pt;}
.x16_c01178{left:618.481287pt;}
.x82_c01178{left:621.018924pt;}
.x63_c01178{left:623.077191pt;}
.xb5_c01178{left:626.710033pt;}
.x26_c01178{left:628.249023pt;}
.xc_c01178{left:629.504379pt;}
.xc8_c01178{left:634.844495pt;}
.x2e_c01178{left:636.464139pt;}
.xaa_c01178{left:637.521867pt;}
.x97_c01178{left:638.588585pt;}
.xc2_c01178{left:643.533480pt;}
.x40_c01178{left:645.048039pt;}
.x17_c01178{left:648.960307pt;}
.x83_c01178{left:650.685049pt;}
.x59_c01178{left:653.881241pt;}
.xa6_c01178{left:657.888000pt;}
.x79_c01178{left:660.201145pt;}
.x37_c01178{left:664.494811pt;}
.xb9_c01178{left:665.510000pt;}
.xab_c01178{left:668.020167pt;}
.x8b_c01178{left:669.283080pt;}
.x71_c01178{left:671.402667pt;}
.x2f_c01178{left:674.802231pt;}
.x84_c01178{left:679.557841pt;}
.x4e_c01178{left:683.106667pt;}
.x18_c01178{left:687.532015pt;}
.x7a_c01178{left:690.245787pt;}
.x5a_c01178{left:693.677241pt;}
.xb1_c01178{left:695.940000pt;}
.x72_c01178{left:698.980000pt;}
.xd9_c01178{left:707.972101pt;}
.x4f_c01178{left:712.156000pt;}
.x41_c01178{left:714.420059pt;}
.xd_c01178{left:716.914035pt;}
.x8c_c01178{left:718.524368pt;}
.x9f_c01178{left:727.312509pt;}
.x98_c01178{left:728.473068pt;}
.xc9_c01178{left:732.704752pt;}
.x64_c01178{left:742.133253pt;}
.x5b_c01178{left:743.191908pt;}
.xe_c01178{left:747.096827pt;}
.xd4_c01178{left:752.225333pt;}
.x30_c01178{left:754.478103pt;}
.x1d_c01178{left:756.439687pt;}
}





/* 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_c01179 {
    display:none;
  }
  .loading-indicator_c01179.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01179 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_c01179 { 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_c01179" -> "#page-container .classname_c01179")
 */
.pf_c01179 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01179 { /* 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_c01179.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01179 { /* 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_c01179 { /* 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_c01179 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01179 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01179 {overflow:visible;}
  }
}
.c_c01179 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01179 { /* 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_c01179:after { /* webkit #35443 */
  content: '';
}
.t_c01179:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01179 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 */
}
.__c01179 { /* 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_c01179 { /* info for Javascript */
  display:none;
}
.l_c01179 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01179 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01179 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01179: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_c01179 {
    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_c01179.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01179.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_c01179 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01179{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01179;src:url('chunks/assets/font_b11a17f404e7258299fdf971.woff2')format("woff");}.ff1_c01179{font-family:ff1_c01179;line-height:1.000000;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;}
.m79_c01179{transform:matrix(0.009789,-0.000147,0.003750,0.249972,0,0);-ms-transform:matrix(0.009789,-0.000147,0.003750,0.249972,0,0);-webkit-transform:matrix(0.009789,-0.000147,0.003750,0.249972,0,0);}
.m72_c01179{transform:matrix(0.012368,-0.000210,0.004249,0.249964,0,0);-ms-transform:matrix(0.012368,-0.000210,0.004249,0.249964,0,0);-webkit-transform:matrix(0.012368,-0.000210,0.004249,0.249964,0,0);}
.m4c_c01179{transform:matrix(0.051448,-0.001132,0.005499,0.249940,0,0);-ms-transform:matrix(0.051448,-0.001132,0.005499,0.249940,0,0);-webkit-transform:matrix(0.051448,-0.001132,0.005499,0.249940,0,0);}
.m2d_c01179{transform:matrix(0.111373,-0.002450,0.005499,0.249940,0,0);-ms-transform:matrix(0.111373,-0.002450,0.005499,0.249940,0,0);-webkit-transform:matrix(0.111373,-0.002450,0.005499,0.249940,0,0);}
.m8b_c01179{transform:matrix(0.120396,-0.001806,0.003750,0.249972,0,0);-ms-transform:matrix(0.120396,-0.001806,0.003750,0.249972,0,0);-webkit-transform:matrix(0.120396,-0.001806,0.003750,0.249972,0,0);}
.m61_c01179{transform:matrix(0.138981,-0.003058,0.005499,0.249940,0,0);-ms-transform:matrix(0.138981,-0.003058,0.005499,0.249940,0,0);-webkit-transform:matrix(0.138981,-0.003058,0.005499,0.249940,0,0);}
.m33_c01179{transform:matrix(0.153268,-0.003372,0.005499,0.249940,0,0);-ms-transform:matrix(0.153268,-0.003372,0.005499,0.249940,0,0);-webkit-transform:matrix(0.153268,-0.003372,0.005499,0.249940,0,0);}
.m2b_c01179{transform:matrix(0.153973,-0.003387,0.005499,0.249940,0,0);-ms-transform:matrix(0.153973,-0.003387,0.005499,0.249940,0,0);-webkit-transform:matrix(0.153973,-0.003387,0.005499,0.249940,0,0);}
.m3b_c01179{transform:matrix(0.162371,-0.003572,0.005499,0.249940,0,0);-ms-transform:matrix(0.162371,-0.003572,0.005499,0.249940,0,0);-webkit-transform:matrix(0.162371,-0.003572,0.005499,0.249940,0,0);}
.m2a_c01179{transform:matrix(0.174958,-0.003849,0.005499,0.249940,0,0);-ms-transform:matrix(0.174958,-0.003849,0.005499,0.249940,0,0);-webkit-transform:matrix(0.174958,-0.003849,0.005499,0.249940,0,0);}
.m29_c01179{transform:matrix(0.184780,-0.004065,0.005499,0.249940,0,0);-ms-transform:matrix(0.184780,-0.004065,0.005499,0.249940,0,0);-webkit-transform:matrix(0.184780,-0.004065,0.005499,0.249940,0,0);}
.m2c_c01179{transform:matrix(0.187320,-0.004121,0.005499,0.249940,0,0);-ms-transform:matrix(0.187320,-0.004121,0.005499,0.249940,0,0);-webkit-transform:matrix(0.187320,-0.004121,0.005499,0.249940,0,0);}
.m66_c01179{transform:matrix(0.188274,-0.004142,0.005499,0.249940,0,0);-ms-transform:matrix(0.188274,-0.004142,0.005499,0.249940,0,0);-webkit-transform:matrix(0.188274,-0.004142,0.005499,0.249940,0,0);}
.m32_c01179{transform:matrix(0.192753,-0.004241,0.005499,0.249940,0,0);-ms-transform:matrix(0.192753,-0.004241,0.005499,0.249940,0,0);-webkit-transform:matrix(0.192753,-0.004241,0.005499,0.249940,0,0);}
.m34_c01179{transform:matrix(0.197882,-0.004353,0.005499,0.249940,0,0);-ms-transform:matrix(0.197882,-0.004353,0.005499,0.249940,0,0);-webkit-transform:matrix(0.197882,-0.004353,0.005499,0.249940,0,0);}
.m64_c01179{transform:matrix(0.198577,-0.004369,0.005499,0.249940,0,0);-ms-transform:matrix(0.198577,-0.004369,0.005499,0.249940,0,0);-webkit-transform:matrix(0.198577,-0.004369,0.005499,0.249940,0,0);}
.m4d_c01179{transform:matrix(0.207325,-0.004561,0.005499,0.249940,0,0);-ms-transform:matrix(0.207325,-0.004561,0.005499,0.249940,0,0);-webkit-transform:matrix(0.207325,-0.004561,0.005499,0.249940,0,0);}
.m1f_c01179{transform:matrix(0.209194,-0.004602,0.005499,0.249940,0,0);-ms-transform:matrix(0.209194,-0.004602,0.005499,0.249940,0,0);-webkit-transform:matrix(0.209194,-0.004602,0.005499,0.249940,0,0);}
.m2f_c01179{transform:matrix(0.213623,-0.004700,0.005499,0.249940,0,0);-ms-transform:matrix(0.213623,-0.004700,0.005499,0.249940,0,0);-webkit-transform:matrix(0.213623,-0.004700,0.005499,0.249940,0,0);}
.m42_c01179{transform:matrix(0.214053,-0.004709,0.005499,0.249940,0,0);-ms-transform:matrix(0.214053,-0.004709,0.005499,0.249940,0,0);-webkit-transform:matrix(0.214053,-0.004709,0.005499,0.249940,0,0);}
.m65_c01179{transform:matrix(0.215603,-0.004743,0.005499,0.249940,0,0);-ms-transform:matrix(0.215603,-0.004743,0.005499,0.249940,0,0);-webkit-transform:matrix(0.215603,-0.004743,0.005499,0.249940,0,0);}
.m35_c01179{transform:matrix(0.217042,-0.004775,0.005499,0.249940,0,0);-ms-transform:matrix(0.217042,-0.004775,0.005499,0.249940,0,0);-webkit-transform:matrix(0.217042,-0.004775,0.005499,0.249940,0,0);}
.m45_c01179{transform:matrix(0.218027,-0.004797,0.005499,0.249940,0,0);-ms-transform:matrix(0.218027,-0.004797,0.005499,0.249940,0,0);-webkit-transform:matrix(0.218027,-0.004797,0.005499,0.249940,0,0);}
.m1b_c01179{transform:matrix(0.221017,-0.004862,0.005499,0.249940,0,0);-ms-transform:matrix(0.221017,-0.004862,0.005499,0.249940,0,0);-webkit-transform:matrix(0.221017,-0.004862,0.005499,0.249940,0,0);}
.m67_c01179{transform:matrix(0.223561,-0.004918,0.005499,0.249940,0,0);-ms-transform:matrix(0.223561,-0.004918,0.005499,0.249940,0,0);-webkit-transform:matrix(0.223561,-0.004918,0.005499,0.249940,0,0);}
.m2e_c01179{transform:matrix(0.224276,-0.004934,0.005499,0.249940,0,0);-ms-transform:matrix(0.224276,-0.004934,0.005499,0.249940,0,0);-webkit-transform:matrix(0.224276,-0.004934,0.005499,0.249940,0,0);}
.m63_c01179{transform:matrix(0.226220,-0.004977,0.005499,0.249940,0,0);-ms-transform:matrix(0.226220,-0.004977,0.005499,0.249940,0,0);-webkit-transform:matrix(0.226220,-0.004977,0.005499,0.249940,0,0);}
.m41_c01179{transform:matrix(0.228860,-0.005035,0.005499,0.249940,0,0);-ms-transform:matrix(0.228860,-0.005035,0.005499,0.249940,0,0);-webkit-transform:matrix(0.228860,-0.005035,0.005499,0.249940,0,0);}
.m40_c01179{transform:matrix(0.228940,-0.005037,0.005499,0.249940,0,0);-ms-transform:matrix(0.228940,-0.005037,0.005499,0.249940,0,0);-webkit-transform:matrix(0.228940,-0.005037,0.005499,0.249940,0,0);}
.m4_c01179{transform:matrix(0.228957,-0.003892,0.004249,0.249964,0,0);-ms-transform:matrix(0.228957,-0.003892,0.004249,0.249964,0,0);-webkit-transform:matrix(0.228957,-0.003892,0.004249,0.249964,0,0);}
.m1d_c01179{transform:matrix(0.229629,-0.005052,0.005499,0.249940,0,0);-ms-transform:matrix(0.229629,-0.005052,0.005499,0.249940,0,0);-webkit-transform:matrix(0.229629,-0.005052,0.005499,0.249940,0,0);}
.m54_c01179{transform:matrix(0.231644,-0.005096,0.005499,0.249940,0,0);-ms-transform:matrix(0.231644,-0.005096,0.005499,0.249940,0,0);-webkit-transform:matrix(0.231644,-0.005096,0.005499,0.249940,0,0);}
.m16_c01179{transform:matrix(0.231869,-0.005101,0.005499,0.249940,0,0);-ms-transform:matrix(0.231869,-0.005101,0.005499,0.249940,0,0);-webkit-transform:matrix(0.231869,-0.005101,0.005499,0.249940,0,0);}
.m1a_c01179{transform:matrix(0.232069,-0.005106,0.005499,0.249940,0,0);-ms-transform:matrix(0.232069,-0.005106,0.005499,0.249940,0,0);-webkit-transform:matrix(0.232069,-0.005106,0.005499,0.249940,0,0);}
.m57_c01179{transform:matrix(0.232474,-0.005114,0.005499,0.249940,0,0);-ms-transform:matrix(0.232474,-0.005114,0.005499,0.249940,0,0);-webkit-transform:matrix(0.232474,-0.005114,0.005499,0.249940,0,0);}
.m46_c01179{transform:matrix(0.232939,-0.005125,0.005499,0.249940,0,0);-ms-transform:matrix(0.232939,-0.005125,0.005499,0.249940,0,0);-webkit-transform:matrix(0.232939,-0.005125,0.005499,0.249940,0,0);}
.m30_c01179{transform:matrix(0.235893,-0.005190,0.005499,0.249940,0,0);-ms-transform:matrix(0.235893,-0.005190,0.005499,0.249940,0,0);-webkit-transform:matrix(0.235893,-0.005190,0.005499,0.249940,0,0);}
.m31_c01179{transform:matrix(0.238307,-0.005243,0.005499,0.249940,0,0);-ms-transform:matrix(0.238307,-0.005243,0.005499,0.249940,0,0);-webkit-transform:matrix(0.238307,-0.005243,0.005499,0.249940,0,0);}
.m11_c01179{transform:matrix(0.239012,-0.005258,0.005499,0.249940,0,0);-ms-transform:matrix(0.239012,-0.005258,0.005499,0.249940,0,0);-webkit-transform:matrix(0.239012,-0.005258,0.005499,0.249940,0,0);}
.m1c_c01179{transform:matrix(0.239442,-0.005268,0.005499,0.249940,0,0);-ms-transform:matrix(0.239442,-0.005268,0.005499,0.249940,0,0);-webkit-transform:matrix(0.239442,-0.005268,0.005499,0.249940,0,0);}
.m7e_c01179{transform:matrix(0.241493,-0.003622,0.003750,0.249972,0,0);-ms-transform:matrix(0.241493,-0.003622,0.003750,0.249972,0,0);-webkit-transform:matrix(0.241493,-0.003622,0.003750,0.249972,0,0);}
.m28_c01179{transform:matrix(0.245781,-0.005407,0.005499,0.249940,0,0);-ms-transform:matrix(0.245781,-0.005407,0.005499,0.249940,0,0);-webkit-transform:matrix(0.245781,-0.005407,0.005499,0.249940,0,0);}
.m48_c01179{transform:matrix(0.247550,-0.005446,0.005499,0.249940,0,0);-ms-transform:matrix(0.247550,-0.005446,0.005499,0.249940,0,0);-webkit-transform:matrix(0.247550,-0.005446,0.005499,0.249940,0,0);}
.m8_c01179{transform:matrix(0.247674,-0.004210,0.004249,0.249964,0,0);-ms-transform:matrix(0.247674,-0.004210,0.004249,0.249964,0,0);-webkit-transform:matrix(0.247674,-0.004210,0.004249,0.249964,0,0);}
.m39_c01179{transform:matrix(0.248255,-0.005462,0.005499,0.249940,0,0);-ms-transform:matrix(0.248255,-0.005462,0.005499,0.249940,0,0);-webkit-transform:matrix(0.248255,-0.005462,0.005499,0.249940,0,0);}
.m68_c01179{transform:matrix(0.248415,-0.005465,0.005499,0.249940,0,0);-ms-transform:matrix(0.248415,-0.005465,0.005499,0.249940,0,0);-webkit-transform:matrix(0.248415,-0.005465,0.005499,0.249940,0,0);}
.m3c_c01179{transform:matrix(0.250249,-0.005505,0.005499,0.249940,0,0);-ms-transform:matrix(0.250249,-0.005505,0.005499,0.249940,0,0);-webkit-transform:matrix(0.250249,-0.005505,0.005499,0.249940,0,0);}
.m7_c01179{transform:matrix(0.250564,-0.004260,0.004249,0.249964,0,0);-ms-transform:matrix(0.250564,-0.004260,0.004249,0.249964,0,0);-webkit-transform:matrix(0.250564,-0.004260,0.004249,0.249964,0,0);}
.m14_c01179{transform:matrix(0.253784,-0.005583,0.005499,0.249940,0,0);-ms-transform:matrix(0.253784,-0.005583,0.005499,0.249940,0,0);-webkit-transform:matrix(0.253784,-0.005583,0.005499,0.249940,0,0);}
.m3a_c01179{transform:matrix(0.254188,-0.005592,0.005499,0.249940,0,0);-ms-transform:matrix(0.254188,-0.005592,0.005499,0.249940,0,0);-webkit-transform:matrix(0.254188,-0.005592,0.005499,0.249940,0,0);}
.m5e_c01179{transform:matrix(0.254523,-0.005600,0.005499,0.249940,0,0);-ms-transform:matrix(0.254523,-0.005600,0.005499,0.249940,0,0);-webkit-transform:matrix(0.254523,-0.005600,0.005499,0.249940,0,0);}
.m4b_c01179{transform:matrix(0.256818,-0.005650,0.005499,0.249940,0,0);-ms-transform:matrix(0.256818,-0.005650,0.005499,0.249940,0,0);-webkit-transform:matrix(0.256818,-0.005650,0.005499,0.249940,0,0);}
.m78_c01179{transform:matrix(0.258566,-0.003878,0.003750,0.249972,0,0);-ms-transform:matrix(0.258566,-0.003878,0.003750,0.249972,0,0);-webkit-transform:matrix(0.258566,-0.003878,0.003750,0.249972,0,0);}
.m3e_c01179{transform:matrix(0.259082,-0.005700,0.005499,0.249940,0,0);-ms-transform:matrix(0.259082,-0.005700,0.005499,0.249940,0,0);-webkit-transform:matrix(0.259082,-0.005700,0.005499,0.249940,0,0);}
.m27_c01179{transform:matrix(0.260532,-0.005732,0.005499,0.249940,0,0);-ms-transform:matrix(0.260532,-0.005732,0.005499,0.249940,0,0);-webkit-transform:matrix(0.260532,-0.005732,0.005499,0.249940,0,0);}
.m13_c01179{transform:matrix(0.261302,-0.005749,0.005499,0.249940,0,0);-ms-transform:matrix(0.261302,-0.005749,0.005499,0.249940,0,0);-webkit-transform:matrix(0.261302,-0.005749,0.005499,0.249940,0,0);}
.m43_c01179{transform:matrix(0.262172,-0.005768,0.005499,0.249940,0,0);-ms-transform:matrix(0.262172,-0.005768,0.005499,0.249940,0,0);-webkit-transform:matrix(0.262172,-0.005768,0.005499,0.249940,0,0);}
.m44_c01179{transform:matrix(0.262252,-0.005770,0.005499,0.249940,0,0);-ms-transform:matrix(0.262252,-0.005770,0.005499,0.249940,0,0);-webkit-transform:matrix(0.262252,-0.005770,0.005499,0.249940,0,0);}
.m5f_c01179{transform:matrix(0.262451,-0.005774,0.005499,0.249940,0,0);-ms-transform:matrix(0.262451,-0.005774,0.005499,0.249940,0,0);-webkit-transform:matrix(0.262451,-0.005774,0.005499,0.249940,0,0);}
.m55_c01179{transform:matrix(0.263216,-0.005791,0.005499,0.249940,0,0);-ms-transform:matrix(0.263216,-0.005791,0.005499,0.249940,0,0);-webkit-transform:matrix(0.263216,-0.005791,0.005499,0.249940,0,0);}
.m82_c01179{transform:matrix(0.265365,-0.003980,0.003750,0.249972,0,0);-ms-transform:matrix(0.265365,-0.003980,0.003750,0.249972,0,0);-webkit-transform:matrix(0.265365,-0.003980,0.003750,0.249972,0,0);}
.m15_c01179{transform:matrix(0.266910,-0.005872,0.005499,0.249940,0,0);-ms-transform:matrix(0.266910,-0.005872,0.005499,0.249940,0,0);-webkit-transform:matrix(0.266910,-0.005872,0.005499,0.249940,0,0);}
.m26_c01179{transform:matrix(0.267105,-0.005876,0.005499,0.249940,0,0);-ms-transform:matrix(0.267105,-0.005876,0.005499,0.249940,0,0);-webkit-transform:matrix(0.267105,-0.005876,0.005499,0.249940,0,0);}
.m62_c01179{transform:matrix(0.269295,-0.005924,0.005499,0.249940,0,0);-ms-transform:matrix(0.269295,-0.005924,0.005499,0.249940,0,0);-webkit-transform:matrix(0.269295,-0.005924,0.005499,0.249940,0,0);}
.m4a_c01179{transform:matrix(0.269500,-0.005929,0.005499,0.249940,0,0);-ms-transform:matrix(0.269500,-0.005929,0.005499,0.249940,0,0);-webkit-transform:matrix(0.269500,-0.005929,0.005499,0.249940,0,0);}
.m74_c01179{transform:matrix(0.270090,-0.004051,0.003750,0.249972,0,0);-ms-transform:matrix(0.270090,-0.004051,0.003750,0.249972,0,0);-webkit-transform:matrix(0.270090,-0.004051,0.003750,0.249972,0,0);}
.m3d_c01179{transform:matrix(0.270385,-0.005948,0.005499,0.249940,0,0);-ms-transform:matrix(0.270385,-0.005948,0.005499,0.249940,0,0);-webkit-transform:matrix(0.270385,-0.005948,0.005499,0.249940,0,0);}
.m23_c01179{transform:matrix(0.273359,-0.006014,0.005499,0.249940,0,0);-ms-transform:matrix(0.273359,-0.006014,0.005499,0.249940,0,0);-webkit-transform:matrix(0.273359,-0.006014,0.005499,0.249940,0,0);}
.m25_c01179{transform:matrix(0.276673,-0.006087,0.005499,0.249940,0,0);-ms-transform:matrix(0.276673,-0.006087,0.005499,0.249940,0,0);-webkit-transform:matrix(0.276673,-0.006087,0.005499,0.249940,0,0);}
.m36_c01179{transform:matrix(0.277843,-0.006113,0.005499,0.249940,0,0);-ms-transform:matrix(0.277843,-0.006113,0.005499,0.249940,0,0);-webkit-transform:matrix(0.277843,-0.006113,0.005499,0.249940,0,0);}
.m5d_c01179{transform:matrix(0.278962,-0.006137,0.005499,0.249940,0,0);-ms-transform:matrix(0.278962,-0.006137,0.005499,0.249940,0,0);-webkit-transform:matrix(0.278962,-0.006137,0.005499,0.249940,0,0);}
.m76_c01179{transform:matrix(0.280953,-0.004214,0.003750,0.249972,0,0);-ms-transform:matrix(0.280953,-0.004214,0.003750,0.249972,0,0);-webkit-transform:matrix(0.280953,-0.004214,0.003750,0.249972,0,0);}
.m24_c01179{transform:matrix(0.282357,-0.006212,0.005499,0.249940,0,0);-ms-transform:matrix(0.282357,-0.006212,0.005499,0.249940,0,0);-webkit-transform:matrix(0.282357,-0.006212,0.005499,0.249940,0,0);}
.m17_c01179{transform:matrix(0.283556,-0.006238,0.005499,0.249940,0,0);-ms-transform:matrix(0.283556,-0.006238,0.005499,0.249940,0,0);-webkit-transform:matrix(0.283556,-0.006238,0.005499,0.249940,0,0);}
.m60_c01179{transform:matrix(0.284626,-0.006262,0.005499,0.249940,0,0);-ms-transform:matrix(0.284626,-0.006262,0.005499,0.249940,0,0);-webkit-transform:matrix(0.284626,-0.006262,0.005499,0.249940,0,0);}
.m7b_c01179{transform:matrix(0.286948,-0.004304,0.003750,0.249972,0,0);-ms-transform:matrix(0.286948,-0.004304,0.003750,0.249972,0,0);-webkit-transform:matrix(0.286948,-0.004304,0.003750,0.249972,0,0);}
.m12_c01179{transform:matrix(0.287985,-0.006336,0.005499,0.249940,0,0);-ms-transform:matrix(0.287985,-0.006336,0.005499,0.249940,0,0);-webkit-transform:matrix(0.287985,-0.006336,0.005499,0.249940,0,0);}
.m80_c01179{transform:matrix(0.290387,-0.004356,0.003750,0.249972,0,0);-ms-transform:matrix(0.290387,-0.004356,0.003750,0.249972,0,0);-webkit-transform:matrix(0.290387,-0.004356,0.003750,0.249972,0,0);}
.m19_c01179{transform:matrix(0.294029,-0.006469,0.005499,0.249940,0,0);-ms-transform:matrix(0.294029,-0.006469,0.005499,0.249940,0,0);-webkit-transform:matrix(0.294029,-0.006469,0.005499,0.249940,0,0);}
.m22_c01179{transform:matrix(0.296348,-0.006520,0.005499,0.249940,0,0);-ms-transform:matrix(0.296348,-0.006520,0.005499,0.249940,0,0);-webkit-transform:matrix(0.296348,-0.006520,0.005499,0.249940,0,0);}
.m59_c01179{transform:matrix(0.296953,-0.006533,0.005499,0.249940,0,0);-ms-transform:matrix(0.296953,-0.006533,0.005499,0.249940,0,0);-webkit-transform:matrix(0.296953,-0.006533,0.005499,0.249940,0,0);}
.m8a_c01179{transform:matrix(0.297632,-0.004464,0.003750,0.249972,0,0);-ms-transform:matrix(0.297632,-0.004464,0.003750,0.249972,0,0);-webkit-transform:matrix(0.297632,-0.004464,0.003750,0.249972,0,0);}
.m20_c01179{transform:matrix(0.299927,-0.006598,0.005499,0.249940,0,0);-ms-transform:matrix(0.299927,-0.006598,0.005499,0.249940,0,0);-webkit-transform:matrix(0.299927,-0.006598,0.005499,0.249940,0,0);}
.m3f_c01179{transform:matrix(0.300187,-0.006604,0.005499,0.249940,0,0);-ms-transform:matrix(0.300187,-0.006604,0.005499,0.249940,0,0);-webkit-transform:matrix(0.300187,-0.006604,0.005499,0.249940,0,0);}
.m89_c01179{transform:matrix(0.300226,-0.004503,0.003750,0.249972,0,0);-ms-transform:matrix(0.300226,-0.004503,0.003750,0.249972,0,0);-webkit-transform:matrix(0.300226,-0.004503,0.003750,0.249972,0,0);}
.m85_c01179{transform:matrix(0.301386,-0.004521,0.003750,0.249972,0,0);-ms-transform:matrix(0.301386,-0.004521,0.003750,0.249972,0,0);-webkit-transform:matrix(0.301386,-0.004521,0.003750,0.249972,0,0);}
.m58_c01179{transform:matrix(0.302922,-0.006664,0.005499,0.249940,0,0);-ms-transform:matrix(0.302922,-0.006664,0.005499,0.249940,0,0);-webkit-transform:matrix(0.302922,-0.006664,0.005499,0.249940,0,0);}
.m10_c01179{transform:matrix(0.309265,-0.006804,0.005499,0.249940,0,0);-ms-transform:matrix(0.309265,-0.006804,0.005499,0.249940,0,0);-webkit-transform:matrix(0.309265,-0.006804,0.005499,0.249940,0,0);}
.m5_c01179{transform:matrix(0.310680,-0.005282,0.004249,0.249964,0,0);-ms-transform:matrix(0.310680,-0.005282,0.004249,0.249964,0,0);-webkit-transform:matrix(0.310680,-0.005282,0.004249,0.249964,0,0);}
.m71_c01179{transform:matrix(0.310895,-0.005285,0.004249,0.249964,0,0);-ms-transform:matrix(0.310895,-0.005285,0.004249,0.249964,0,0);-webkit-transform:matrix(0.310895,-0.005285,0.004249,0.249964,0,0);}
.m56_c01179{transform:matrix(0.311080,-0.006844,0.005499,0.249940,0,0);-ms-transform:matrix(0.311080,-0.006844,0.005499,0.249940,0,0);-webkit-transform:matrix(0.311080,-0.006844,0.005499,0.249940,0,0);}
.m87_c01179{transform:matrix(0.311745,-0.004676,0.003750,0.249972,0,0);-ms-transform:matrix(0.311745,-0.004676,0.003750,0.249972,0,0);-webkit-transform:matrix(0.311745,-0.004676,0.003750,0.249972,0,0);}
.m5b_c01179{transform:matrix(0.313769,-0.006903,0.005499,0.249940,0,0);-ms-transform:matrix(0.313769,-0.006903,0.005499,0.249940,0,0);-webkit-transform:matrix(0.313769,-0.006903,0.005499,0.249940,0,0);}
.m1e_c01179{transform:matrix(0.315204,-0.006934,0.005499,0.249940,0,0);-ms-transform:matrix(0.315204,-0.006934,0.005499,0.249940,0,0);-webkit-transform:matrix(0.315204,-0.006934,0.005499,0.249940,0,0);}
.m50_c01179{transform:matrix(0.316758,-0.006969,0.005499,0.249940,0,0);-ms-transform:matrix(0.316758,-0.006969,0.005499,0.249940,0,0);-webkit-transform:matrix(0.316758,-0.006969,0.005499,0.249940,0,0);}
.m1_c01179{transform:matrix(0.320859,-0.005455,0.004249,0.249964,0,0);-ms-transform:matrix(0.320859,-0.005455,0.004249,0.249964,0,0);-webkit-transform:matrix(0.320859,-0.005455,0.004249,0.249964,0,0);}
.m7d_c01179{transform:matrix(0.321569,-0.004824,0.003750,0.249972,0,0);-ms-transform:matrix(0.321569,-0.004824,0.003750,0.249972,0,0);-webkit-transform:matrix(0.321569,-0.004824,0.003750,0.249972,0,0);}
.m4f_c01179{transform:matrix(0.323072,-0.007108,0.005499,0.249940,0,0);-ms-transform:matrix(0.323072,-0.007108,0.005499,0.249940,0,0);-webkit-transform:matrix(0.323072,-0.007108,0.005499,0.249940,0,0);}
.m52_c01179{transform:matrix(0.324127,-0.007131,0.005499,0.249940,0,0);-ms-transform:matrix(0.324127,-0.007131,0.005499,0.249940,0,0);-webkit-transform:matrix(0.324127,-0.007131,0.005499,0.249940,0,0);}
.m47_c01179{transform:matrix(0.324626,-0.007142,0.005499,0.249940,0,0);-ms-transform:matrix(0.324626,-0.007142,0.005499,0.249940,0,0);-webkit-transform:matrix(0.324626,-0.007142,0.005499,0.249940,0,0);}
.mf_c01179{transform:matrix(0.325671,-0.007165,0.005499,0.249940,0,0);-ms-transform:matrix(0.325671,-0.007165,0.005499,0.249940,0,0);-webkit-transform:matrix(0.325671,-0.007165,0.005499,0.249940,0,0);}
.m7a_c01179{transform:matrix(0.332998,-0.004995,0.003750,0.249972,0,0);-ms-transform:matrix(0.332998,-0.004995,0.003750,0.249972,0,0);-webkit-transform:matrix(0.332998,-0.004995,0.003750,0.249972,0,0);}
.m53_c01179{transform:matrix(0.333289,-0.007332,0.005499,0.249940,0,0);-ms-transform:matrix(0.333289,-0.007332,0.005499,0.249940,0,0);-webkit-transform:matrix(0.333289,-0.007332,0.005499,0.249940,0,0);}
.m5c_c01179{transform:matrix(0.336149,-0.007395,0.005499,0.249940,0,0);-ms-transform:matrix(0.336149,-0.007395,0.005499,0.249940,0,0);-webkit-transform:matrix(0.336149,-0.007395,0.005499,0.249940,0,0);}
.m70_c01179{transform:matrix(0.337331,-0.005735,0.004249,0.249964,0,0);-ms-transform:matrix(0.337331,-0.005735,0.004249,0.249964,0,0);-webkit-transform:matrix(0.337331,-0.005735,0.004249,0.249964,0,0);}
.m69_c01179{transform:matrix(0.348455,-0.005924,0.004249,0.249964,0,0);-ms-transform:matrix(0.348455,-0.005924,0.004249,0.249964,0,0);-webkit-transform:matrix(0.348455,-0.005924,0.004249,0.249964,0,0);}
.ma_c01179{transform:matrix(0.367472,-0.006247,0.004249,0.249964,0,0);-ms-transform:matrix(0.367472,-0.006247,0.004249,0.249964,0,0);-webkit-transform:matrix(0.367472,-0.006247,0.004249,0.249964,0,0);}
.m51_c01179{transform:matrix(0.371070,-0.008164,0.005499,0.249940,0,0);-ms-transform:matrix(0.371070,-0.008164,0.005499,0.249940,0,0);-webkit-transform:matrix(0.371070,-0.008164,0.005499,0.249940,0,0);}
.m6d_c01179{transform:matrix(0.381790,-0.006490,0.004249,0.249964,0,0);-ms-transform:matrix(0.381790,-0.006490,0.004249,0.249964,0,0);-webkit-transform:matrix(0.381790,-0.006490,0.004249,0.249964,0,0);}
.m6a_c01179{transform:matrix(0.385009,-0.006545,0.004249,0.249964,0,0);-ms-transform:matrix(0.385009,-0.006545,0.004249,0.249964,0,0);-webkit-transform:matrix(0.385009,-0.006545,0.004249,0.249964,0,0);}
.m6e_c01179{transform:matrix(0.392728,-0.006676,0.004249,0.249964,0,0);-ms-transform:matrix(0.392728,-0.006676,0.004249,0.249964,0,0);-webkit-transform:matrix(0.392728,-0.006676,0.004249,0.249964,0,0);}
.m18_c01179{transform:matrix(0.397929,-0.008754,0.005499,0.249940,0,0);-ms-transform:matrix(0.397929,-0.008754,0.005499,0.249940,0,0);-webkit-transform:matrix(0.397929,-0.008754,0.005499,0.249940,0,0);}
.m6f_c01179{transform:matrix(0.401767,-0.006830,0.004249,0.249964,0,0);-ms-transform:matrix(0.401767,-0.006830,0.004249,0.249964,0,0);-webkit-transform:matrix(0.401767,-0.006830,0.004249,0.249964,0,0);}
.m4e_c01179{transform:matrix(0.417649,-0.009188,0.005499,0.249940,0,0);-ms-transform:matrix(0.417649,-0.009188,0.005499,0.249940,0,0);-webkit-transform:matrix(0.417649,-0.009188,0.005499,0.249940,0,0);}
.m86_c01179{transform:matrix(0.425067,-0.006376,0.003750,0.249972,0,0);-ms-transform:matrix(0.425067,-0.006376,0.003750,0.249972,0,0);-webkit-transform:matrix(0.425067,-0.006376,0.003750,0.249972,0,0);}
.me_c01179{transform:matrix(0.426547,-0.009384,0.005499,0.249940,0,0);-ms-transform:matrix(0.426547,-0.009384,0.005499,0.249940,0,0);-webkit-transform:matrix(0.426547,-0.009384,0.005499,0.249940,0,0);}
.m6b_c01179{transform:matrix(0.427603,-0.007269,0.004249,0.249964,0,0);-ms-transform:matrix(0.427603,-0.007269,0.004249,0.249964,0,0);-webkit-transform:matrix(0.427603,-0.007269,0.004249,0.249964,0,0);}
.m77_c01179{transform:matrix(0.438951,-0.006584,0.003750,0.249972,0,0);-ms-transform:matrix(0.438951,-0.006584,0.003750,0.249972,0,0);-webkit-transform:matrix(0.438951,-0.006584,0.003750,0.249972,0,0);}
.mb_c01179{transform:matrix(0.441111,-0.007499,0.004249,0.249964,0,0);-ms-transform:matrix(0.441111,-0.007499,0.004249,0.249964,0,0);-webkit-transform:matrix(0.441111,-0.007499,0.004249,0.249964,0,0);}
.m37_c01179{transform:matrix(0.453510,-0.009977,0.005499,0.249940,0,0);-ms-transform:matrix(0.453510,-0.009977,0.005499,0.249940,0,0);-webkit-transform:matrix(0.453510,-0.009977,0.005499,0.249940,0,0);}
.m81_c01179{transform:matrix(0.460923,-0.006914,0.003750,0.249972,0,0);-ms-transform:matrix(0.460923,-0.006914,0.003750,0.249972,0,0);-webkit-transform:matrix(0.460923,-0.006914,0.003750,0.249972,0,0);}
.m7f_c01179{transform:matrix(0.473397,-0.007101,0.003750,0.249972,0,0);-ms-transform:matrix(0.473397,-0.007101,0.003750,0.249972,0,0);-webkit-transform:matrix(0.473397,-0.007101,0.003750,0.249972,0,0);}
.m6c_c01179{transform:matrix(0.478271,-0.008131,0.004249,0.249964,0,0);-ms-transform:matrix(0.478271,-0.008131,0.004249,0.249964,0,0);-webkit-transform:matrix(0.478271,-0.008131,0.004249,0.249964,0,0);}
.m7c_c01179{transform:matrix(0.491710,-0.007376,0.003750,0.249972,0,0);-ms-transform:matrix(0.491710,-0.007376,0.003750,0.249972,0,0);-webkit-transform:matrix(0.491710,-0.007376,0.003750,0.249972,0,0);}
.m84_c01179{transform:matrix(0.499794,-0.007497,0.003750,0.249972,0,0);-ms-transform:matrix(0.499794,-0.007497,0.003750,0.249972,0,0);-webkit-transform:matrix(0.499794,-0.007497,0.003750,0.249972,0,0);}
.m83_c01179{transform:matrix(0.543844,-0.008158,0.003750,0.249972,0,0);-ms-transform:matrix(0.543844,-0.008158,0.003750,0.249972,0,0);-webkit-transform:matrix(0.543844,-0.008158,0.003750,0.249972,0,0);}
.m6_c01179{transform:matrix(0.586110,-0.009964,0.004249,0.249964,0,0);-ms-transform:matrix(0.586110,-0.009964,0.004249,0.249964,0,0);-webkit-transform:matrix(0.586110,-0.009964,0.004249,0.249964,0,0);}
.m75_c01179{transform:matrix(0.632854,-0.009493,0.003750,0.249972,0,0);-ms-transform:matrix(0.632854,-0.009493,0.003750,0.249972,0,0);-webkit-transform:matrix(0.632854,-0.009493,0.003750,0.249972,0,0);}
.m73_c01179{transform:matrix(0.642553,-0.009638,0.003750,0.249972,0,0);-ms-transform:matrix(0.642553,-0.009638,0.003750,0.249972,0,0);-webkit-transform:matrix(0.642553,-0.009638,0.003750,0.249972,0,0);}
.m9_c01179{transform:matrix(0.644022,-0.010948,0.004249,0.249964,0,0);-ms-transform:matrix(0.644022,-0.010948,0.004249,0.249964,0,0);-webkit-transform:matrix(0.644022,-0.010948,0.004249,0.249964,0,0);}
.m49_c01179{transform:matrix(0.688568,-0.015149,0.005499,0.249940,0,0);-ms-transform:matrix(0.688568,-0.015149,0.005499,0.249940,0,0);-webkit-transform:matrix(0.688568,-0.015149,0.005499,0.249940,0,0);}
.mc_c01179{transform:matrix(0.716666,-0.012183,0.004249,0.249964,0,0);-ms-transform:matrix(0.716666,-0.012183,0.004249,0.249964,0,0);-webkit-transform:matrix(0.716666,-0.012183,0.004249,0.249964,0,0);}
.m5a_c01179{transform:matrix(0.718656,-0.015810,0.005499,0.249940,0,0);-ms-transform:matrix(0.718656,-0.015810,0.005499,0.249940,0,0);-webkit-transform:matrix(0.718656,-0.015810,0.005499,0.249940,0,0);}
.m38_c01179{transform:matrix(0.726604,-0.015985,0.005499,0.249940,0,0);-ms-transform:matrix(0.726604,-0.015985,0.005499,0.249940,0,0);-webkit-transform:matrix(0.726604,-0.015985,0.005499,0.249940,0,0);}
.m88_c01179{transform:matrix(0.740702,-0.011111,0.003750,0.249972,0,0);-ms-transform:matrix(0.740702,-0.011111,0.003750,0.249972,0,0);-webkit-transform:matrix(0.740702,-0.011111,0.003750,0.249972,0,0);}
.m0_c01179{transform:matrix(0.785766,-0.013358,0.004249,0.249964,0,0);-ms-transform:matrix(0.785766,-0.013358,0.004249,0.249964,0,0);-webkit-transform:matrix(0.785766,-0.013358,0.004249,0.249964,0,0);}
.m21_c01179{transform:matrix(0.800856,-0.017619,0.005499,0.249940,0,0);-ms-transform:matrix(0.800856,-0.017619,0.005499,0.249940,0,0);-webkit-transform:matrix(0.800856,-0.017619,0.005499,0.249940,0,0);}
.m3_c01179{transform:matrix(0.906424,-0.015409,0.004249,0.249964,0,0);-ms-transform:matrix(0.906424,-0.015409,0.004249,0.249964,0,0);-webkit-transform:matrix(0.906424,-0.015409,0.004249,0.249964,0,0);}
.m2_c01179{transform:matrix(0.925001,-0.015725,0.004249,0.249964,0,0);-ms-transform:matrix(0.925001,-0.015725,0.004249,0.249964,0,0);-webkit-transform:matrix(0.925001,-0.015725,0.004249,0.249964,0,0);}
.md_c01179{transform:matrix(1.279625,-0.028152,0.005499,0.249940,0,0);-ms-transform:matrix(1.279625,-0.028152,0.005499,0.249940,0,0);-webkit-transform:matrix(1.279625,-0.028152,0.005499,0.249940,0,0);}
.v0_c01179{vertical-align:0.000000px;}
.ls0_c01179{letter-spacing:0.000000px;}
.sc__c01179{text-shadow:none;}
.sc0_c01179{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__c01179{-webkit-text-stroke:0px transparent;}
.sc0_c01179{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01179{word-spacing:0.000000px;}
.fc0_c01179{color:transparent;}
.fs0_c01179{font-size:54.007802px;}
.fsa_c01179{font-size:72.008100px;}
.fs2_c01179{font-size:72.017422px;}
.fs9_c01179{font-size:78.008775px;}
.fs1_c01179{font-size:78.011270px;}
.fs4_c01179{font-size:78.018874px;}
.fs6_c01179{font-size:84.020326px;}
.fs8_c01179{font-size:90.013004px;}
.fs3_c01179{font-size:90.021777px;}
.fs5_c01179{font-size:102.024681px;}
.fs7_c01179{font-size:108.026133px;}
.y0_c01179{bottom:0.000000px;}
.y85_c01179{bottom:320.565173px;}
.y86_c01179{bottom:320.565705px;}
.y87_c01179{bottom:320.565787px;}
.y88_c01179{bottom:320.565803px;}
.y89_c01179{bottom:320.566440px;}
.y8a_c01179{bottom:320.566605px;}
.y8c_c01179{bottom:320.566897px;}
.y8b_c01179{bottom:320.566987px;}
.y7c_c01179{bottom:351.921390px;}
.y7d_c01179{bottom:352.773667px;}
.y7e_c01179{bottom:353.169758px;}
.y7f_c01179{bottom:354.605460px;}
.y80_c01179{bottom:355.028685px;}
.y81_c01179{bottom:355.741170px;}
.y82_c01179{bottom:356.927865px;}
.y83_c01179{bottom:357.457987px;}
.y84_c01179{bottom:358.644322px;}
.y74_c01179{bottom:387.505500px;}
.y75_c01179{bottom:388.234972px;}
.y76_c01179{bottom:389.039145px;}
.y77_c01179{bottom:390.337958px;}
.y78_c01179{bottom:391.459200px;}
.y79_c01179{bottom:392.365387px;}
.y7a_c01179{bottom:392.799368px;}
.y7b_c01179{bottom:393.124110px;}
.y73_c01179{bottom:464.550099px;}
.y72_c01179{bottom:464.550261px;}
.y70_c01179{bottom:464.550528px;}
.y71_c01179{bottom:464.550615px;}
.y6a_c01179{bottom:497.403000px;}
.y6b_c01179{bottom:497.944085px;}
.y6c_c01179{bottom:498.638322px;}
.y6d_c01179{bottom:500.119745px;}
.y6e_c01179{bottom:500.850141px;}
.y6f_c01179{bottom:501.556440px;}
.y63_c01179{bottom:568.654980px;}
.y64_c01179{bottom:569.006769px;}
.y65_c01179{bottom:569.339412px;}
.y66_c01179{bottom:570.434958px;}
.y67_c01179{bottom:571.087821px;}
.y68_c01179{bottom:571.435977px;}
.y69_c01179{bottom:572.060097px;}
.y58_c01179{bottom:601.705650px;}
.y59_c01179{bottom:602.043498px;}
.y5a_c01179{bottom:602.885199px;}
.y5b_c01179{bottom:603.202410px;}
.y5c_c01179{bottom:604.622073px;}
.y5d_c01179{bottom:605.083479px;}
.y5e_c01179{bottom:606.515376px;}
.y5f_c01179{bottom:607.444263px;}
.y60_c01179{bottom:607.803723px;}
.y61_c01179{bottom:608.523930px;}
.y62_c01179{bottom:609.941760px;}
.y4d_c01179{bottom:633.344451px;}
.y4e_c01179{bottom:633.672396px;}
.y4f_c01179{bottom:634.132716px;}
.y50_c01179{bottom:634.728267px;}
.y51_c01179{bottom:636.118767px;}
.y52_c01179{bottom:637.210848px;}
.y53_c01179{bottom:638.436411px;}
.y54_c01179{bottom:640.330701px;}
.y55_c01179{bottom:641.040309px;}
.y56_c01179{bottom:642.206046px;}
.y57_c01179{bottom:643.330242px;}
.y49_c01179{bottom:675.488595px;}
.y4a_c01179{bottom:675.789210px;}
.y4b_c01179{bottom:677.789190px;}
.y4c_c01179{bottom:678.433509px;}
.y40_c01179{bottom:703.050705px;}
.y41_c01179{bottom:703.911807px;}
.y42_c01179{bottom:706.018824px;}
.y43_c01179{bottom:706.562499px;}
.y44_c01179{bottom:708.492669px;}
.y45_c01179{bottom:709.749936px;}
.y46_c01179{bottom:710.470062px;}
.y47_c01179{bottom:711.442935px;}
.y48_c01179{bottom:712.902591px;}
.y38_c01179{bottom:740.717631px;}
.y39_c01179{bottom:741.946797px;}
.y3a_c01179{bottom:743.490627px;}
.y3b_c01179{bottom:745.181928px;}
.y3c_c01179{bottom:747.067377px;}
.y3d_c01179{bottom:747.710670px;}
.y3e_c01179{bottom:748.384992px;}
.y3f_c01179{bottom:749.111568px;}
.y36_c01179{bottom:784.764615px;}
.y37_c01179{bottom:785.738532px;}
.y2a_c01179{bottom:810.523539px;}
.y2b_c01179{bottom:811.763226px;}
.y2c_c01179{bottom:813.133749px;}
.y2d_c01179{bottom:813.849141px;}
.y2e_c01179{bottom:815.470491px;}
.y2f_c01179{bottom:815.953320px;}
.y30_c01179{bottom:817.047801px;}
.y31_c01179{bottom:817.576470px;}
.y32_c01179{bottom:818.672271px;}
.y33_c01179{bottom:819.452181px;}
.y34_c01179{bottom:820.915866px;}
.y35_c01179{bottom:821.848194px;}
.y22_c01179{bottom:845.749026px;}
.y23_c01179{bottom:847.321278px;}
.y24_c01179{bottom:847.969731px;}
.y25_c01179{bottom:849.677619px;}
.y26_c01179{bottom:850.790538px;}
.y27_c01179{bottom:851.392569px;}
.y28_c01179{bottom:853.752903px;}
.y29_c01179{bottom:856.276185px;}
.y1a_c01179{bottom:881.496855px;}
.y1b_c01179{bottom:883.124286px;}
.y1c_c01179{bottom:886.528059px;}
.y1d_c01179{bottom:888.583713px;}
.y1e_c01179{bottom:889.701603px;}
.y1f_c01179{bottom:891.538014px;}
.y20_c01179{bottom:893.642865px;}
.y21_c01179{bottom:894.482070px;}
.ye_c01179{bottom:914.641500px;}
.yf_c01179{bottom:916.795311px;}
.y10_c01179{bottom:917.691723px;}
.y11_c01179{bottom:918.442770px;}
.y12_c01179{bottom:919.784484px;}
.y13_c01179{bottom:920.975025px;}
.y14_c01179{bottom:922.905393px;}
.y15_c01179{bottom:924.163584px;}
.y16_c01179{bottom:925.163220px;}
.y17_c01179{bottom:926.818368px;}
.y18_c01179{bottom:927.290466px;}
.y19_c01179{bottom:929.796552px;}
.y4_c01179{bottom:954.384000px;}
.y5_c01179{bottom:956.194831px;}
.y6_c01179{bottom:957.105946px;}
.y7_c01179{bottom:957.353450px;}
.y8_c01179{bottom:958.643979px;}
.y9_c01179{bottom:959.744635px;}
.ya_c01179{bottom:959.852067px;}
.yb_c01179{bottom:960.911286px;}
.yc_c01179{bottom:962.133144px;}
.yd_c01179{bottom:962.891157px;}
.y1_c01179{bottom:1239.303000px;}
.y2_c01179{bottom:1240.612221px;}
.y3_c01179{bottom:1241.392495px;}
.h2_c01179{height:54.007802px;}
.hc_c01179{height:72.008100px;}
.h4_c01179{height:72.017422px;}
.hb_c01179{height:78.008775px;}
.h3_c01179{height:78.011270px;}
.h6_c01179{height:78.018874px;}
.h8_c01179{height:84.020326px;}
.ha_c01179{height:90.013004px;}
.h5_c01179{height:90.021777px;}
.h7_c01179{height:102.024681px;}
.h9_c01179{height:108.026133px;}
.h1_c01179{height:1258.500000px;}
.h0_c01179{height:1258.740000px;}
.w0_c01179{width:904.200000px;}
.w1_c01179{width:904.500000px;}
.x0_c01179{left:0.000000px;}
.xe_c01179{left:8.473500px;}
.x22_c01179{left:20.677305px;}
.x23_c01179{left:103.398750px;}
.xf_c01179{left:106.374000px;}
.x29_c01179{left:116.839911px;}
.x39_c01179{left:118.757097px;}
.x42_c01179{left:129.988326px;}
.x4c_c01179{left:136.241568px;}
.x24_c01179{left:137.512494px;}
.x10_c01179{left:147.120000px;}
.x43_c01179{left:148.237443px;}
.x4_c01179{left:155.793000px;}
.x3a_c01179{left:157.898097px;}
.x4d_c01179{left:160.329792px;}
.x1a_c01179{left:174.184995px;}
.x2a_c01179{left:175.849698px;}
.x11_c01179{left:181.258500px;}
.x34_c01179{left:203.352750px;}
.x44_c01179{left:206.873091px;}
.x4e_c01179{left:220.485885px;}
.x25_c01179{left:227.422434px;}
.x1b_c01179{left:239.291205px;}
.x2b_c01179{left:241.147650px;}
.x12_c01179{left:242.245500px;}
.x66_c01179{left:251.704170px;}
.x3b_c01179{left:253.671597px;}
.x5f_c01179{left:258.246000px;}
.x5_c01179{left:262.312500px;}
.x2c_c01179{left:275.234409px;}
.x3c_c01179{left:278.384097px;}
.x45_c01179{left:284.129889px;}
.x26_c01179{left:285.990795px;}
.x13_c01179{left:296.361000px;}
.x60_c01179{left:306.877500px;}
.x67_c01179{left:308.522670px;}
.x6_c01179{left:315.907500px;}
.x27_c01179{left:317.653374px;}
.x7_c01179{left:330.466500px;}
.x54_c01179{left:332.078070px;}
.x68_c01179{left:334.928670px;}
.x46_c01179{left:344.820735px;}
.x6f_c01179{left:348.581700px;}
.x2d_c01179{left:352.411092px;}
.x61_c01179{left:360.489000px;}
.x35_c01179{left:366.438669px;}
.x1c_c01179{left:375.453729px;}
.x4f_c01179{left:377.503506px;}
.x14_c01179{left:384.105000px;}
.x70_c01179{left:395.027640px;}
.x55_c01179{left:400.502121px;}
.x8_c01179{left:406.380000px;}
.x47_c01179{left:412.943241px;}
.x3d_c01179{left:423.267597px;}
.x2e_c01179{left:427.517742px;}
.x69_c01179{left:430.642170px;}
.x15_c01179{left:441.295500px;}
.x62_c01179{left:447.076500px;}
.x2f_c01179{left:452.707803px;}
.x3e_c01179{left:456.000597px;}
.x1d_c01179{left:457.705317px;}
.x6a_c01179{left:458.857170px;}
.x36_c01179{left:465.895092px;}
.x9_c01179{left:471.124500px;}
.xa_c01179{left:477.444000px;}
.x50_c01179{left:479.835024px;}
.x59_c01179{left:485.163000px;}
.x16_c01179{left:486.733500px;}
.x3f_c01179{left:500.222097px;}
.x1e_c01179{left:502.447380px;}
.x1_c01179{left:503.719500px;}
.x30_c01179{left:504.904458px;}
.x6b_c01179{left:506.356170px;}
.x56_c01179{left:510.124062px;}
.x48_c01179{left:518.147481px;}
.x63_c01179{left:521.826000px;}
.x5a_c01179{left:526.000500px;}
.xb_c01179{left:539.751000px;}
.x31_c01179{left:542.060283px;}
.x51_c01179{left:546.205206px;}
.x5c_c01179{left:547.303980px;}
.x49_c01179{left:557.564946px;}
.x17_c01179{left:561.967500px;}
.x40_c01179{left:566.570097px;}
.x52_c01179{left:571.889727px;}
.x71_c01179{left:573.516780px;}
.x28_c01179{left:574.698336px;}
.x1f_c01179{left:575.893029px;}
.x2_c01179{left:580.732500px;}
.x64_c01179{left:582.238500px;}
.x18_c01179{left:583.426500px;}
.x6c_c01179{left:585.469170px;}
.x32_c01179{left:598.347270px;}
.x57_c01179{left:610.264995px;}
.xc_c01179{left:611.625000px;}
.x5b_c01179{left:613.143000px;}
.x37_c01179{left:614.672460px;}
.x6d_c01179{left:620.810670px;}
.x4a_c01179{left:622.354155px;}
.x3_c01179{left:626.631000px;}
.x33_c01179{left:630.815061px;}
.x65_c01179{left:632.820000px;}
.x41_c01179{left:633.879612px;}
.x72_c01179{left:648.044543px;}
.x38_c01179{left:654.327816px;}
.xd_c01179{left:656.214000px;}
.x20_c01179{left:660.107985px;}
.x58_c01179{left:672.741495px;}
.x73_c01179{left:682.877872px;}
.x4b_c01179{left:684.777633px;}
.x21_c01179{left:693.683274px;}
.x5d_c01179{left:696.095973px;}
.x19_c01179{left:697.339500px;}
.x6e_c01179{left:699.899670px;}
.x53_c01179{left:724.600089px;}
.x74_c01179{left:731.482808px;}
.x5e_c01179{left:740.922927px;}
@media print{
.v0_c01179{vertical-align:0.000000pt;}
.ls0_c01179{letter-spacing:0.000000pt;}
.ws0_c01179{word-spacing:0.000000pt;}
.fs0_c01179{font-size:48.006935pt;}
.fsa_c01179{font-size:64.007200pt;}
.fs2_c01179{font-size:64.015486pt;}
.fs9_c01179{font-size:69.341133pt;}
.fs1_c01179{font-size:69.343351pt;}
.fs4_c01179{font-size:69.350110pt;}
.fs6_c01179{font-size:74.684734pt;}
.fs8_c01179{font-size:80.011559pt;}
.fs3_c01179{font-size:80.019358pt;}
.fs5_c01179{font-size:90.688605pt;}
.fs7_c01179{font-size:96.023229pt;}
.y0_c01179{bottom:0.000000pt;}
.y85_c01179{bottom:284.946820pt;}
.y86_c01179{bottom:284.947293pt;}
.y87_c01179{bottom:284.947367pt;}
.y88_c01179{bottom:284.947380pt;}
.y89_c01179{bottom:284.947947pt;}
.y8a_c01179{bottom:284.948093pt;}
.y8c_c01179{bottom:284.948353pt;}
.y8b_c01179{bottom:284.948433pt;}
.y7c_c01179{bottom:312.819013pt;}
.y7d_c01179{bottom:313.576593pt;}
.y7e_c01179{bottom:313.928673pt;}
.y7f_c01179{bottom:315.204853pt;}
.y80_c01179{bottom:315.581053pt;}
.y81_c01179{bottom:316.214373pt;}
.y82_c01179{bottom:317.269213pt;}
.y83_c01179{bottom:317.740433pt;}
.y84_c01179{bottom:318.794953pt;}
.y74_c01179{bottom:344.449333pt;}
.y75_c01179{bottom:345.097753pt;}
.y76_c01179{bottom:345.812573pt;}
.y77_c01179{bottom:346.967073pt;}
.y78_c01179{bottom:347.963733pt;}
.y79_c01179{bottom:348.769233pt;}
.y7a_c01179{bottom:349.154993pt;}
.y7b_c01179{bottom:349.443653pt;}
.y73_c01179{bottom:412.933421pt;}
.y72_c01179{bottom:412.933565pt;}
.y70_c01179{bottom:412.933803pt;}
.y71_c01179{bottom:412.933880pt;}
.y6a_c01179{bottom:442.136000pt;}
.y6b_c01179{bottom:442.616964pt;}
.y6c_c01179{bottom:443.234064pt;}
.y6d_c01179{bottom:444.550884pt;}
.y6e_c01179{bottom:445.200125pt;}
.y6f_c01179{bottom:445.827947pt;}
.y63_c01179{bottom:505.471093pt;}
.y64_c01179{bottom:505.783795pt;}
.y65_c01179{bottom:506.079477pt;}
.y66_c01179{bottom:507.053296pt;}
.y67_c01179{bottom:507.633619pt;}
.y68_c01179{bottom:507.943091pt;}
.y69_c01179{bottom:508.497864pt;}
.y58_c01179{bottom:534.849467pt;}
.y59_c01179{bottom:535.149776pt;}
.y5a_c01179{bottom:535.897955pt;}
.y5b_c01179{bottom:536.179920pt;}
.y5c_c01179{bottom:537.441843pt;}
.y5d_c01179{bottom:537.851981pt;}
.y5e_c01179{bottom:539.124779pt;}
.y5f_c01179{bottom:539.950456pt;}
.y60_c01179{bottom:540.269976pt;}
.y61_c01179{bottom:540.910160pt;}
.y62_c01179{bottom:542.170453pt;}
.y4d_c01179{bottom:562.972845pt;}
.y4e_c01179{bottom:563.264352pt;}
.y4f_c01179{bottom:563.673525pt;}
.y50_c01179{bottom:564.202904pt;}
.y51_c01179{bottom:565.438904pt;}
.y52_c01179{bottom:566.409643pt;}
.y53_c01179{bottom:567.499032pt;}
.y54_c01179{bottom:569.182845pt;}
.y55_c01179{bottom:569.813608pt;}
.y56_c01179{bottom:570.849819pt;}
.y57_c01179{bottom:571.849104pt;}
.y49_c01179{bottom:600.434307pt;}
.y4a_c01179{bottom:600.701520pt;}
.y4b_c01179{bottom:602.479280pt;}
.y4c_c01179{bottom:603.052008pt;}
.y40_c01179{bottom:624.933960pt;}
.y41_c01179{bottom:625.699384pt;}
.y42_c01179{bottom:627.572288pt;}
.y43_c01179{bottom:628.055555pt;}
.y44_c01179{bottom:629.771261pt;}
.y45_c01179{bottom:630.888832pt;}
.y46_c01179{bottom:631.528944pt;}
.y47_c01179{bottom:632.393720pt;}
.y48_c01179{bottom:633.691192pt;}
.y38_c01179{bottom:658.415672pt;}
.y39_c01179{bottom:659.508264pt;}
.y3a_c01179{bottom:660.880557pt;}
.y3b_c01179{bottom:662.383936pt;}
.y3c_c01179{bottom:664.059891pt;}
.y3d_c01179{bottom:664.631707pt;}
.y3e_c01179{bottom:665.231104pt;}
.y3f_c01179{bottom:665.876949pt;}
.y36_c01179{bottom:697.568547pt;}
.y37_c01179{bottom:698.434251pt;}
.y2a_c01179{bottom:720.465368pt;}
.y2b_c01179{bottom:721.567312pt;}
.y2c_c01179{bottom:722.785555pt;}
.y2d_c01179{bottom:723.421459pt;}
.y2e_c01179{bottom:724.862659pt;}
.y2f_c01179{bottom:725.291840pt;}
.y30_c01179{bottom:726.264712pt;}
.y31_c01179{bottom:726.734640pt;}
.y32_c01179{bottom:727.708685pt;}
.y33_c01179{bottom:728.401939pt;}
.y34_c01179{bottom:729.702992pt;}
.y35_c01179{bottom:730.531728pt;}
.y22_c01179{bottom:751.776912pt;}
.y23_c01179{bottom:753.174469pt;}
.y24_c01179{bottom:753.750872pt;}
.y25_c01179{bottom:755.268995pt;}
.y26_c01179{bottom:756.258256pt;}
.y27_c01179{bottom:756.793395pt;}
.y28_c01179{bottom:758.891469pt;}
.y29_c01179{bottom:761.134387pt;}
.y1a_c01179{bottom:783.552760pt;}
.y1b_c01179{bottom:784.999365pt;}
.y1c_c01179{bottom:788.024941pt;}
.y1d_c01179{bottom:789.852189pt;}
.y1e_c01179{bottom:790.845869pt;}
.y1f_c01179{bottom:792.478235pt;}
.y20_c01179{bottom:794.349213pt;}
.y21_c01179{bottom:795.095173pt;}
.ye_c01179{bottom:813.014667pt;}
.yf_c01179{bottom:814.929165pt;}
.y10_c01179{bottom:815.725976pt;}
.y11_c01179{bottom:816.393573pt;}
.y12_c01179{bottom:817.586208pt;}
.y13_c01179{bottom:818.644467pt;}
.y14_c01179{bottom:820.360349pt;}
.y15_c01179{bottom:821.478741pt;}
.y16_c01179{bottom:822.367307pt;}
.y17_c01179{bottom:823.838549pt;}
.y18_c01179{bottom:824.258192pt;}
.y19_c01179{bottom:826.485824pt;}
.y4_c01179{bottom:848.341333pt;}
.y5_c01179{bottom:849.950961pt;}
.y6_c01179{bottom:850.760841pt;}
.y7_c01179{bottom:850.980844pt;}
.y8_c01179{bottom:852.127981pt;}
.y9_c01179{bottom:853.106343pt;}
.ya_c01179{bottom:853.201837pt;}
.yb_c01179{bottom:854.143365pt;}
.yc_c01179{bottom:855.229461pt;}
.yd_c01179{bottom:855.903251pt;}
.y1_c01179{bottom:1101.602667pt;}
.y2_c01179{bottom:1102.766419pt;}
.y3_c01179{bottom:1103.459996pt;}
.h2_c01179{height:48.006935pt;}
.hc_c01179{height:64.007200pt;}
.h4_c01179{height:64.015486pt;}
.hb_c01179{height:69.341133pt;}
.h3_c01179{height:69.343351pt;}
.h6_c01179{height:69.350110pt;}
.h8_c01179{height:74.684734pt;}
.ha_c01179{height:80.011559pt;}
.h5_c01179{height:80.019358pt;}
.h7_c01179{height:90.688605pt;}
.h9_c01179{height:96.023229pt;}
.h1_c01179{height:1118.666667pt;}
.h0_c01179{height:1118.880000pt;}
.w0_c01179{width:803.733333pt;}
.w1_c01179{width:804.000000pt;}
.x0_c01179{left:0.000000pt;}
.xe_c01179{left:7.532000pt;}
.x22_c01179{left:18.379827pt;}
.x23_c01179{left:91.910000pt;}
.xf_c01179{left:94.554667pt;}
.x29_c01179{left:103.857699pt;}
.x39_c01179{left:105.561864pt;}
.x42_c01179{left:115.545179pt;}
.x4c_c01179{left:121.103616pt;}
.x24_c01179{left:122.233328pt;}
.x10_c01179{left:130.773333pt;}
.x43_c01179{left:131.766616pt;}
.x4_c01179{left:138.482667pt;}
.x3a_c01179{left:140.353864pt;}
.x4d_c01179{left:142.515371pt;}
.x1a_c01179{left:154.831107pt;}
.x2a_c01179{left:156.310843pt;}
.x11_c01179{left:161.118667pt;}
.x34_c01179{left:180.758000pt;}
.x44_c01179{left:183.887192pt;}
.x4e_c01179{left:195.987453pt;}
.x25_c01179{left:202.153275pt;}
.x1b_c01179{left:212.703293pt;}
.x2b_c01179{left:214.353467pt;}
.x12_c01179{left:215.329333pt;}
.x66_c01179{left:223.737040pt;}
.x3b_c01179{left:225.485864pt;}
.x5f_c01179{left:229.552000pt;}
.x5_c01179{left:233.166667pt;}
.x2c_c01179{left:244.652808pt;}
.x3c_c01179{left:247.452531pt;}
.x45_c01179{left:252.559901pt;}
.x26_c01179{left:254.214040pt;}
.x13_c01179{left:263.432000pt;}
.x60_c01179{left:272.780000pt;}
.x67_c01179{left:274.242373pt;}
.x6_c01179{left:280.806667pt;}
.x27_c01179{left:282.358555pt;}
.x7_c01179{left:293.748000pt;}
.x54_c01179{left:295.180507pt;}
.x68_c01179{left:297.714373pt;}
.x46_c01179{left:306.507320pt;}
.x6f_c01179{left:309.850400pt;}
.x2d_c01179{left:313.254304pt;}
.x61_c01179{left:320.434667pt;}
.x35_c01179{left:325.723261pt;}
.x1c_c01179{left:333.736648pt;}
.x4f_c01179{left:335.558672pt;}
.x14_c01179{left:341.426667pt;}
.x70_c01179{left:351.135680pt;}
.x55_c01179{left:356.001885pt;}
.x8_c01179{left:361.226667pt;}
.x47_c01179{left:367.060659pt;}
.x3d_c01179{left:376.237864pt;}
.x2e_c01179{left:380.015771pt;}
.x69_c01179{left:382.793040pt;}
.x15_c01179{left:392.262667pt;}
.x62_c01179{left:397.401333pt;}
.x2f_c01179{left:402.406936pt;}
.x3e_c01179{left:405.333864pt;}
.x1d_c01179{left:406.849171pt;}
.x6a_c01179{left:407.873040pt;}
.x36_c01179{left:414.128971pt;}
.x9_c01179{left:418.777333pt;}
.xa_c01179{left:424.394667pt;}
.x50_c01179{left:426.520021pt;}
.x59_c01179{left:431.256000pt;}
.x16_c01179{left:432.652000pt;}
.x3f_c01179{left:444.641864pt;}
.x1e_c01179{left:446.619893pt;}
.x1_c01179{left:447.750667pt;}
.x30_c01179{left:448.803963pt;}
.x6b_c01179{left:450.094373pt;}
.x56_c01179{left:453.443611pt;}
.x48_c01179{left:460.575539pt;}
.x63_c01179{left:463.845333pt;}
.x5a_c01179{left:467.556000pt;}
.xb_c01179{left:479.778667pt;}
.x31_c01179{left:481.831363pt;}
.x51_c01179{left:485.515739pt;}
.x5c_c01179{left:486.492427pt;}
.x49_c01179{left:495.613285pt;}
.x17_c01179{left:499.526667pt;}
.x40_c01179{left:503.617864pt;}
.x52_c01179{left:508.346424pt;}
.x71_c01179{left:509.792693pt;}
.x28_c01179{left:510.842965pt;}
.x1f_c01179{left:511.904915pt;}
.x2_c01179{left:516.206667pt;}
.x64_c01179{left:517.545333pt;}
.x18_c01179{left:518.601333pt;}
.x6c_c01179{left:520.417040pt;}
.x32_c01179{left:531.864240pt;}
.x57_c01179{left:542.457773pt;}
.xc_c01179{left:543.666667pt;}
.x5b_c01179{left:545.016000pt;}
.x37_c01179{left:546.375520pt;}
.x6d_c01179{left:551.831707pt;}
.x4a_c01179{left:553.203693pt;}
.x3_c01179{left:557.005333pt;}
.x33_c01179{left:560.724499pt;}
.x65_c01179{left:562.506667pt;}
.x41_c01179{left:563.448544pt;}
.x72_c01179{left:576.039593pt;}
.x38_c01179{left:581.624725pt;}
.xd_c01179{left:583.301333pt;}
.x20_c01179{left:586.762653pt;}
.x58_c01179{left:597.992440pt;}
.x73_c01179{left:607.002553pt;}
.x4b_c01179{left:608.691229pt;}
.x21_c01179{left:616.607355pt;}
.x5d_c01179{left:618.751976pt;}
.x19_c01179{left:619.857333pt;}
.x6e_c01179{left:622.133040pt;}
.x53_c01179{left:644.088968pt;}
.x74_c01179{left:650.206940pt;}
.x5e_c01179{left:658.598157pt;}
}





/* 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_c01180 {
    display:none;
  }
  .loading-indicator_c01180.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01180 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_c01180 { 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_c01180" -> "#page-container .classname_c01180")
 */
.pf_c01180 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01180 { /* 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_c01180.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01180 { /* 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_c01180 { /* 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_c01180 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01180 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01180 {overflow:visible;}
  }
}
.c_c01180 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01180 { /* 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_c01180:after { /* webkit #35443 */
  content: '';
}
.t_c01180:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01180 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 */
}
.__c01180 { /* 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_c01180 { /* info for Javascript */
  display:none;
}
.l_c01180 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01180 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01180 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01180: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_c01180 {
    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_c01180.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01180.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_c01180 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01180{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01180;src:url('chunks/assets/font_b11a17f404e7258299fdf971.woff2')format("woff");}.ff1_c01180{font-family:ff1_c01180;line-height:1.000000;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;}
.m12b_c01180{transform:matrix(0.182432,0.004378,-0.005998,0.249928,0,0);-ms-transform:matrix(0.182432,0.004378,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.182432,0.004378,-0.005998,0.249928,0,0);}
.m2e_c01180{transform:matrix(0.187304,0.002810,-0.003750,0.249972,0,0);-ms-transform:matrix(0.187304,0.002810,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.187304,0.002810,-0.003750,0.249972,0,0);}
.me4_c01180{transform:matrix(0.187845,0.003381,-0.004499,0.249960,0,0);-ms-transform:matrix(0.187845,0.003381,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.187845,0.003381,-0.004499,0.249960,0,0);}
.m129_c01180{transform:matrix(0.191615,0.004599,-0.005998,0.249928,0,0);-ms-transform:matrix(0.191615,0.004599,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.191615,0.004599,-0.005998,0.249928,0,0);}
.m7f_c01180{transform:matrix(0.192599,0.003467,-0.004499,0.249960,0,0);-ms-transform:matrix(0.192599,0.003467,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.192599,0.003467,-0.004499,0.249960,0,0);}
.m2d_c01180{transform:matrix(0.193748,0.002906,-0.003750,0.249972,0,0);-ms-transform:matrix(0.193748,0.002906,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.193748,0.002906,-0.003750,0.249972,0,0);}
.m80_c01180{transform:matrix(0.194404,0.003499,-0.004499,0.249960,0,0);-ms-transform:matrix(0.194404,0.003499,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.194404,0.003499,-0.004499,0.249960,0,0);}
.m86_c01180{transform:matrix(0.196703,0.003541,-0.004499,0.249960,0,0);-ms-transform:matrix(0.196703,0.003541,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.196703,0.003541,-0.004499,0.249960,0,0);}
.m2a_c01180{transform:matrix(0.196713,0.002951,-0.003750,0.249972,0,0);-ms-transform:matrix(0.196713,0.002951,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.196713,0.002951,-0.003750,0.249972,0,0);}
.m27_c01180{transform:matrix(0.199308,0.002990,-0.003750,0.249972,0,0);-ms-transform:matrix(0.199308,0.002990,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.199308,0.002990,-0.003750,0.249972,0,0);}
.m125_c01180{transform:matrix(0.199313,0.004784,-0.005998,0.249928,0,0);-ms-transform:matrix(0.199313,0.004784,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.199313,0.004784,-0.005998,0.249928,0,0);}
.m40_c01180{transform:matrix(0.200747,0.003011,-0.003750,0.249972,0,0);-ms-transform:matrix(0.200747,0.003011,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.200747,0.003011,-0.003750,0.249972,0,0);}
.m25_c01180{transform:matrix(0.203832,0.003057,-0.003750,0.249972,0,0);-ms-transform:matrix(0.203832,0.003057,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.203832,0.003057,-0.003750,0.249972,0,0);}
.mf3_c01180{transform:matrix(0.204157,0.003675,-0.004499,0.249960,0,0);-ms-transform:matrix(0.204157,0.003675,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.204157,0.003675,-0.004499,0.249960,0,0);}
.m41_c01180{transform:matrix(0.204322,0.003065,-0.003750,0.249972,0,0);-ms-transform:matrix(0.204322,0.003065,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.204322,0.003065,-0.003750,0.249972,0,0);}
.m2b_c01180{transform:matrix(0.205087,0.003076,-0.003750,0.249972,0,0);-ms-transform:matrix(0.205087,0.003076,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.205087,0.003076,-0.003750,0.249972,0,0);}
.m82_c01180{transform:matrix(0.205312,0.003696,-0.004499,0.249960,0,0);-ms-transform:matrix(0.205312,0.003696,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.205312,0.003696,-0.004499,0.249960,0,0);}
.m116_c01180{transform:matrix(0.206346,0.004952,-0.005998,0.249928,0,0);-ms-transform:matrix(0.206346,0.004952,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.206346,0.004952,-0.005998,0.249928,0,0);}
.m12a_c01180{transform:matrix(0.207155,0.004972,-0.005998,0.249928,0,0);-ms-transform:matrix(0.207155,0.004972,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.207155,0.004972,-0.005998,0.249928,0,0);}
.m122_c01180{transform:matrix(0.209215,0.005021,-0.005998,0.249928,0,0);-ms-transform:matrix(0.209215,0.005021,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.209215,0.005021,-0.005998,0.249928,0,0);}
.m127_c01180{transform:matrix(0.209285,0.005023,-0.005998,0.249928,0,0);-ms-transform:matrix(0.209285,0.005023,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.209285,0.005023,-0.005998,0.249928,0,0);}
.m126_c01180{transform:matrix(0.209315,0.005024,-0.005998,0.249928,0,0);-ms-transform:matrix(0.209315,0.005024,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.209315,0.005024,-0.005998,0.249928,0,0);}
.m7d_c01180{transform:matrix(0.209511,0.003771,-0.004499,0.249960,0,0);-ms-transform:matrix(0.209511,0.003771,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.209511,0.003771,-0.004499,0.249960,0,0);}
.m50_c01180{transform:matrix(0.210636,0.003160,-0.003750,0.249972,0,0);-ms-transform:matrix(0.210636,0.003160,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.210636,0.003160,-0.003750,0.249972,0,0);}
.m11a_c01180{transform:matrix(0.211834,0.005084,-0.005998,0.249928,0,0);-ms-transform:matrix(0.211834,0.005084,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.211834,0.005084,-0.005998,0.249928,0,0);}
.m79_c01180{transform:matrix(0.212206,0.003820,-0.004499,0.249960,0,0);-ms-transform:matrix(0.212206,0.003820,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.212206,0.003820,-0.004499,0.249960,0,0);}
.me_c01180{transform:matrix(0.212596,0.003189,-0.003750,0.249972,0,0);-ms-transform:matrix(0.212596,0.003189,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.212596,0.003189,-0.003750,0.249972,0,0);}
.m43_c01180{transform:matrix(0.213611,0.003204,-0.003750,0.249972,0,0);-ms-transform:matrix(0.213611,0.003204,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.213611,0.003204,-0.003750,0.249972,0,0);}
.m3e_c01180{transform:matrix(0.213696,0.003205,-0.003750,0.249972,0,0);-ms-transform:matrix(0.213696,0.003205,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.213696,0.003205,-0.003750,0.249972,0,0);}
.mf8_c01180{transform:matrix(0.215025,0.003870,-0.004499,0.249960,0,0);-ms-transform:matrix(0.215025,0.003870,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.215025,0.003870,-0.004499,0.249960,0,0);}
.m7e_c01180{transform:matrix(0.215215,0.003874,-0.004499,0.249960,0,0);-ms-transform:matrix(0.215215,0.003874,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.215215,0.003874,-0.004499,0.249960,0,0);}
.m10f_c01180{transform:matrix(0.215388,0.005169,-0.005998,0.249928,0,0);-ms-transform:matrix(0.215388,0.005169,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.215388,0.005169,-0.005998,0.249928,0,0);}
.m84_c01180{transform:matrix(0.215450,0.003878,-0.004499,0.249960,0,0);-ms-transform:matrix(0.215450,0.003878,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.215450,0.003878,-0.004499,0.249960,0,0);}
.m24_c01180{transform:matrix(0.215481,0.003232,-0.003750,0.249972,0,0);-ms-transform:matrix(0.215481,0.003232,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.215481,0.003232,-0.003750,0.249972,0,0);}
.me2_c01180{transform:matrix(0.215670,0.003882,-0.004499,0.249960,0,0);-ms-transform:matrix(0.215670,0.003882,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.215670,0.003882,-0.004499,0.249960,0,0);}
.m128_c01180{transform:matrix(0.217038,0.005209,-0.005998,0.249928,0,0);-ms-transform:matrix(0.217038,0.005209,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.217038,0.005209,-0.005998,0.249928,0,0);}
.m23_c01180{transform:matrix(0.217506,0.003263,-0.003750,0.249972,0,0);-ms-transform:matrix(0.217506,0.003263,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.217506,0.003263,-0.003750,0.249972,0,0);}
.md0_c01180{transform:matrix(0.218220,0.003928,-0.004499,0.249960,0,0);-ms-transform:matrix(0.218220,0.003928,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.218220,0.003928,-0.004499,0.249960,0,0);}
.m109_c01180{transform:matrix(0.218370,0.003931,-0.004499,0.249960,0,0);-ms-transform:matrix(0.218370,0.003931,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.218370,0.003931,-0.004499,0.249960,0,0);}
.m29_c01180{transform:matrix(0.218520,0.003278,-0.003750,0.249972,0,0);-ms-transform:matrix(0.218520,0.003278,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.218520,0.003278,-0.003750,0.249972,0,0);}
.mf5_c01180{transform:matrix(0.218920,0.003941,-0.004499,0.249960,0,0);-ms-transform:matrix(0.218920,0.003941,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.218920,0.003941,-0.004499,0.249960,0,0);}
.mc1_c01180{transform:matrix(0.219110,0.003944,-0.004499,0.249960,0,0);-ms-transform:matrix(0.219110,0.003944,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.219110,0.003944,-0.004499,0.249960,0,0);}
.m17_c01180{transform:matrix(0.219120,0.003287,-0.003750,0.249972,0,0);-ms-transform:matrix(0.219120,0.003287,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.219120,0.003287,-0.003750,0.249972,0,0);}
.m38_c01180{transform:matrix(0.219510,0.003293,-0.003750,0.249972,0,0);-ms-transform:matrix(0.219510,0.003293,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.219510,0.003293,-0.003750,0.249972,0,0);}
.m13d_c01180{transform:matrix(0.220187,0.005284,-0.005998,0.249928,0,0);-ms-transform:matrix(0.220187,0.005284,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.220187,0.005284,-0.005998,0.249928,0,0);}
.ma_c01180{transform:matrix(0.220230,0.003303,-0.003750,0.249972,0,0);-ms-transform:matrix(0.220230,0.003303,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.220230,0.003303,-0.003750,0.249972,0,0);}
.md9_c01180{transform:matrix(0.220864,0.003976,-0.004499,0.249960,0,0);-ms-transform:matrix(0.220864,0.003976,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.220864,0.003976,-0.004499,0.249960,0,0);}
.m34_c01180{transform:matrix(0.220865,0.003313,-0.003750,0.249972,0,0);-ms-transform:matrix(0.220865,0.003313,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.220865,0.003313,-0.003750,0.249972,0,0);}
.md4_c01180{transform:matrix(0.221044,0.003979,-0.004499,0.249960,0,0);-ms-transform:matrix(0.221044,0.003979,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.221044,0.003979,-0.004499,0.249960,0,0);}
.m124_c01180{transform:matrix(0.221576,0.005318,-0.005998,0.249928,0,0);-ms-transform:matrix(0.221576,0.005318,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.221576,0.005318,-0.005998,0.249928,0,0);}
.m123_c01180{transform:matrix(0.222081,0.005330,-0.005998,0.249928,0,0);-ms-transform:matrix(0.222081,0.005330,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.222081,0.005330,-0.005998,0.249928,0,0);}
.m18_c01180{transform:matrix(0.222585,0.003339,-0.003750,0.249972,0,0);-ms-transform:matrix(0.222585,0.003339,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.222585,0.003339,-0.003750,0.249972,0,0);}
.m7a_c01180{transform:matrix(0.223399,0.004021,-0.004499,0.249960,0,0);-ms-transform:matrix(0.223399,0.004021,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.223399,0.004021,-0.004499,0.249960,0,0);}
.md7_c01180{transform:matrix(0.223789,0.004028,-0.004499,0.249960,0,0);-ms-transform:matrix(0.223789,0.004028,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.223789,0.004028,-0.004499,0.249960,0,0);}
.mdd_c01180{transform:matrix(0.223849,0.004029,-0.004499,0.249960,0,0);-ms-transform:matrix(0.223849,0.004029,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.223849,0.004029,-0.004499,0.249960,0,0);}
.m110_c01180{transform:matrix(0.224005,0.005376,-0.005998,0.249928,0,0);-ms-transform:matrix(0.224005,0.005376,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.224005,0.005376,-0.005998,0.249928,0,0);}
.m94_c01180{transform:matrix(0.224034,0.004033,-0.004499,0.249960,0,0);-ms-transform:matrix(0.224034,0.004033,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.224034,0.004033,-0.004499,0.249960,0,0);}
.m30_c01180{transform:matrix(0.224740,0.003371,-0.003750,0.249972,0,0);-ms-transform:matrix(0.224740,0.003371,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.224740,0.003371,-0.003750,0.249972,0,0);}
.m44_c01180{transform:matrix(0.224785,0.003372,-0.003750,0.249972,0,0);-ms-transform:matrix(0.224785,0.003372,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.224785,0.003372,-0.003750,0.249972,0,0);}
.m3a_c01180{transform:matrix(0.225035,0.003376,-0.003750,0.249972,0,0);-ms-transform:matrix(0.225035,0.003376,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.225035,0.003376,-0.003750,0.249972,0,0);}
.m52_c01180{transform:matrix(0.225170,0.003378,-0.003750,0.249972,0,0);-ms-transform:matrix(0.225170,0.003378,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.225170,0.003378,-0.003750,0.249972,0,0);}
.m4a_c01180{transform:matrix(0.225290,0.003379,-0.003750,0.249972,0,0);-ms-transform:matrix(0.225290,0.003379,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.225290,0.003379,-0.003750,0.249972,0,0);}
.ma4_c01180{transform:matrix(0.225309,0.004056,-0.004499,0.249960,0,0);-ms-transform:matrix(0.225309,0.004056,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.225309,0.004056,-0.004499,0.249960,0,0);}
.md5_c01180{transform:matrix(0.225428,0.004058,-0.004499,0.249960,0,0);-ms-transform:matrix(0.225428,0.004058,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.225428,0.004058,-0.004499,0.249960,0,0);}
.m3b_c01180{transform:matrix(0.225480,0.003382,-0.003750,0.249972,0,0);-ms-transform:matrix(0.225480,0.003382,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.225480,0.003382,-0.003750,0.249972,0,0);}
.m85_c01180{transform:matrix(0.225523,0.004059,-0.004499,0.249960,0,0);-ms-transform:matrix(0.225523,0.004059,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.225523,0.004059,-0.004499,0.249960,0,0);}
.m26_c01180{transform:matrix(0.225535,0.003383,-0.003750,0.249972,0,0);-ms-transform:matrix(0.225535,0.003383,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.225535,0.003383,-0.003750,0.249972,0,0);}
.m4f_c01180{transform:matrix(0.225640,0.003385,-0.003750,0.249972,0,0);-ms-transform:matrix(0.225640,0.003385,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.225640,0.003385,-0.003750,0.249972,0,0);}
.m8f_c01180{transform:matrix(0.225808,0.004065,-0.004499,0.249960,0,0);-ms-transform:matrix(0.225808,0.004065,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.225808,0.004065,-0.004499,0.249960,0,0);}
.me1_c01180{transform:matrix(0.225978,0.004068,-0.004499,0.249960,0,0);-ms-transform:matrix(0.225978,0.004068,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.225978,0.004068,-0.004499,0.249960,0,0);}
.m32_c01180{transform:matrix(0.226010,0.003390,-0.003750,0.249972,0,0);-ms-transform:matrix(0.226010,0.003390,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.226010,0.003390,-0.003750,0.249972,0,0);}
.me0_c01180{transform:matrix(0.226478,0.004077,-0.004499,0.249960,0,0);-ms-transform:matrix(0.226478,0.004077,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.226478,0.004077,-0.004499,0.249960,0,0);}
.mfd_c01180{transform:matrix(0.226563,0.004078,-0.004499,0.249960,0,0);-ms-transform:matrix(0.226563,0.004078,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.226563,0.004078,-0.004499,0.249960,0,0);}
.m113_c01180{transform:matrix(0.226745,0.005442,-0.005998,0.249928,0,0);-ms-transform:matrix(0.226745,0.005442,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.226745,0.005442,-0.005998,0.249928,0,0);}
.m62_c01180{transform:matrix(0.226972,0.003859,-0.004249,0.249964,0,0);-ms-transform:matrix(0.226972,0.003859,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.226972,0.003859,-0.004249,0.249964,0,0);}
.m3c_c01180{transform:matrix(0.227224,0.003408,-0.003750,0.249972,0,0);-ms-transform:matrix(0.227224,0.003408,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.227224,0.003408,-0.003750,0.249972,0,0);}
.m8c_c01180{transform:matrix(0.227393,0.004093,-0.004499,0.249960,0,0);-ms-transform:matrix(0.227393,0.004093,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.227393,0.004093,-0.004499,0.249960,0,0);}
.m36_c01180{transform:matrix(0.227919,0.003419,-0.003750,0.249972,0,0);-ms-transform:matrix(0.227919,0.003419,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.227919,0.003419,-0.003750,0.249972,0,0);}
.mfc_c01180{transform:matrix(0.228153,0.004107,-0.004499,0.249960,0,0);-ms-transform:matrix(0.228153,0.004107,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.228153,0.004107,-0.004499,0.249960,0,0);}
.m11d_c01180{transform:matrix(0.228629,0.005487,-0.005998,0.249928,0,0);-ms-transform:matrix(0.228629,0.005487,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.228629,0.005487,-0.005998,0.249928,0,0);}
.m101_c01180{transform:matrix(0.229118,0.004124,-0.004499,0.249960,0,0);-ms-transform:matrix(0.229118,0.004124,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.229118,0.004124,-0.004499,0.249960,0,0);}
.m119_c01180{transform:matrix(0.229154,0.005500,-0.005998,0.249928,0,0);-ms-transform:matrix(0.229154,0.005500,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.229154,0.005500,-0.005998,0.249928,0,0);}
.m89_c01180{transform:matrix(0.229168,0.004125,-0.004499,0.249960,0,0);-ms-transform:matrix(0.229168,0.004125,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.229168,0.004125,-0.004499,0.249960,0,0);}
.mf_c01180{transform:matrix(0.229434,0.003442,-0.003750,0.249972,0,0);-ms-transform:matrix(0.229434,0.003442,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.229434,0.003442,-0.003750,0.249972,0,0);}
.m112_c01180{transform:matrix(0.229709,0.005513,-0.005998,0.249928,0,0);-ms-transform:matrix(0.229709,0.005513,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.229709,0.005513,-0.005998,0.249928,0,0);}
.m9f_c01180{transform:matrix(0.229723,0.004135,-0.004499,0.249960,0,0);-ms-transform:matrix(0.229723,0.004135,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.229723,0.004135,-0.004499,0.249960,0,0);}
.m13a_c01180{transform:matrix(0.229734,0.005514,-0.005998,0.249928,0,0);-ms-transform:matrix(0.229734,0.005514,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.229734,0.005514,-0.005998,0.249928,0,0);}
.m51_c01180{transform:matrix(0.229859,0.003448,-0.003750,0.249972,0,0);-ms-transform:matrix(0.229859,0.003448,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.229859,0.003448,-0.003750,0.249972,0,0);}
.m2c_c01180{transform:matrix(0.229954,0.003449,-0.003750,0.249972,0,0);-ms-transform:matrix(0.229954,0.003449,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.229954,0.003449,-0.003750,0.249972,0,0);}
.meb_c01180{transform:matrix(0.230178,0.004143,-0.004499,0.249960,0,0);-ms-transform:matrix(0.230178,0.004143,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.230178,0.004143,-0.004499,0.249960,0,0);}
.m87_c01180{transform:matrix(0.230288,0.004145,-0.004499,0.249960,0,0);-ms-transform:matrix(0.230288,0.004145,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.230288,0.004145,-0.004499,0.249960,0,0);}
.m1a_c01180{transform:matrix(0.230314,0.003455,-0.003750,0.249972,0,0);-ms-transform:matrix(0.230314,0.003455,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.230314,0.003455,-0.003750,0.249972,0,0);}
.m121_c01180{transform:matrix(0.230569,0.005534,-0.005998,0.249928,0,0);-ms-transform:matrix(0.230569,0.005534,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.230569,0.005534,-0.005998,0.249928,0,0);}
.m136_c01180{transform:matrix(0.230614,0.005535,-0.005998,0.249928,0,0);-ms-transform:matrix(0.230614,0.005535,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.230614,0.005535,-0.005998,0.249928,0,0);}
.m5f_c01180{transform:matrix(0.230862,0.003925,-0.004249,0.249964,0,0);-ms-transform:matrix(0.230862,0.003925,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.230862,0.003925,-0.004249,0.249964,0,0);}
.m13_c01180{transform:matrix(0.230889,0.003463,-0.003750,0.249972,0,0);-ms-transform:matrix(0.230889,0.003463,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.230889,0.003463,-0.003750,0.249972,0,0);}
.m28_c01180{transform:matrix(0.230989,0.003465,-0.003750,0.249972,0,0);-ms-transform:matrix(0.230989,0.003465,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.230989,0.003465,-0.003750,0.249972,0,0);}
.m6f_c01180{transform:matrix(0.231402,0.003934,-0.004249,0.249964,0,0);-ms-transform:matrix(0.231402,0.003934,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.231402,0.003934,-0.004249,0.249964,0,0);}
.m97_c01180{transform:matrix(0.231767,0.004172,-0.004499,0.249960,0,0);-ms-transform:matrix(0.231767,0.004172,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.231767,0.004172,-0.004499,0.249960,0,0);}
.m6a_c01180{transform:matrix(0.231807,0.003941,-0.004249,0.249964,0,0);-ms-transform:matrix(0.231807,0.003941,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.231807,0.003941,-0.004249,0.249964,0,0);}
.m48_c01180{transform:matrix(0.231964,0.003479,-0.003750,0.249972,0,0);-ms-transform:matrix(0.231964,0.003479,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.231964,0.003479,-0.003750,0.249972,0,0);}
.m3d_c01180{transform:matrix(0.232404,0.003486,-0.003750,0.249972,0,0);-ms-transform:matrix(0.232404,0.003486,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.232404,0.003486,-0.003750,0.249972,0,0);}
.m1_c01180{transform:matrix(0.232429,0.003486,-0.003750,0.249972,0,0);-ms-transform:matrix(0.232429,0.003486,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.232429,0.003486,-0.003750,0.249972,0,0);}
.m7b_c01180{transform:matrix(0.232512,0.004185,-0.004499,0.249960,0,0);-ms-transform:matrix(0.232512,0.004185,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.232512,0.004185,-0.004499,0.249960,0,0);}
.m120_c01180{transform:matrix(0.233168,0.005596,-0.005998,0.249928,0,0);-ms-transform:matrix(0.233168,0.005596,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.233168,0.005596,-0.005998,0.249928,0,0);}
.mbb_c01180{transform:matrix(0.233192,0.004197,-0.004499,0.249960,0,0);-ms-transform:matrix(0.233192,0.004197,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.233192,0.004197,-0.004499,0.249960,0,0);}
.m99_c01180{transform:matrix(0.233357,0.004200,-0.004499,0.249960,0,0);-ms-transform:matrix(0.233357,0.004200,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.233357,0.004200,-0.004499,0.249960,0,0);}
.m15_c01180{transform:matrix(0.233544,0.003503,-0.003750,0.249972,0,0);-ms-transform:matrix(0.233544,0.003503,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.233544,0.003503,-0.003750,0.249972,0,0);}
.me5_c01180{transform:matrix(0.233647,0.004206,-0.004499,0.249960,0,0);-ms-transform:matrix(0.233647,0.004206,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.233647,0.004206,-0.004499,0.249960,0,0);}
.m108_c01180{transform:matrix(0.233657,0.004206,-0.004499,0.249960,0,0);-ms-transform:matrix(0.233657,0.004206,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.233657,0.004206,-0.004499,0.249960,0,0);}
.m132_c01180{transform:matrix(0.234018,0.005616,-0.005998,0.249928,0,0);-ms-transform:matrix(0.234018,0.005616,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.234018,0.005616,-0.005998,0.249928,0,0);}
.md1_c01180{transform:matrix(0.234047,0.004213,-0.004499,0.249960,0,0);-ms-transform:matrix(0.234047,0.004213,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.234047,0.004213,-0.004499,0.249960,0,0);}
.m83_c01180{transform:matrix(0.234147,0.004215,-0.004499,0.249960,0,0);-ms-transform:matrix(0.234147,0.004215,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.234147,0.004215,-0.004499,0.249960,0,0);}
.m11_c01180{transform:matrix(0.234199,0.003513,-0.003750,0.249972,0,0);-ms-transform:matrix(0.234199,0.003513,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.234199,0.003513,-0.003750,0.249972,0,0);}
.m54_c01180{transform:matrix(0.234334,0.003515,-0.003750,0.249972,0,0);-ms-transform:matrix(0.234334,0.003515,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.234334,0.003515,-0.003750,0.249972,0,0);}
.mff_c01180{transform:matrix(0.234677,0.004224,-0.004499,0.249960,0,0);-ms-transform:matrix(0.234677,0.004224,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.234677,0.004224,-0.004499,0.249960,0,0);}
.m77_c01180{transform:matrix(0.234742,0.004225,-0.004499,0.249960,0,0);-ms-transform:matrix(0.234742,0.004225,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.234742,0.004225,-0.004499,0.249960,0,0);}
.m2f_c01180{transform:matrix(0.234899,0.003523,-0.003750,0.249972,0,0);-ms-transform:matrix(0.234899,0.003523,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.234899,0.003523,-0.003750,0.249972,0,0);}
.m78_c01180{transform:matrix(0.234947,0.004229,-0.004499,0.249960,0,0);-ms-transform:matrix(0.234947,0.004229,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.234947,0.004229,-0.004499,0.249960,0,0);}
.m11f_c01180{transform:matrix(0.235112,0.005643,-0.005998,0.249928,0,0);-ms-transform:matrix(0.235112,0.005643,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.235112,0.005643,-0.005998,0.249928,0,0);}
.m6_c01180{transform:matrix(0.235693,0.003535,-0.003750,0.249972,0,0);-ms-transform:matrix(0.235693,0.003535,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.235693,0.003535,-0.003750,0.249972,0,0);}
.m69_c01180{transform:matrix(0.235721,0.004007,-0.004249,0.249964,0,0);-ms-transform:matrix(0.235721,0.004007,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.235721,0.004007,-0.004249,0.249964,0,0);}
.m4c_c01180{transform:matrix(0.235893,0.003538,-0.003750,0.249972,0,0);-ms-transform:matrix(0.235893,0.003538,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.235893,0.003538,-0.003750,0.249972,0,0);}
.m9c_c01180{transform:matrix(0.236327,0.004254,-0.004499,0.249960,0,0);-ms-transform:matrix(0.236327,0.004254,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.236327,0.004254,-0.004499,0.249960,0,0);}
.mee_c01180{transform:matrix(0.236407,0.004255,-0.004499,0.249960,0,0);-ms-transform:matrix(0.236407,0.004255,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.236407,0.004255,-0.004499,0.249960,0,0);}
.m1d_c01180{transform:matrix(0.236418,0.003546,-0.003750,0.249972,0,0);-ms-transform:matrix(0.236418,0.003546,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.236418,0.003546,-0.003750,0.249972,0,0);}
.m1e_c01180{transform:matrix(0.236643,0.003550,-0.003750,0.249972,0,0);-ms-transform:matrix(0.236643,0.003550,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.236643,0.003550,-0.003750,0.249972,0,0);}
.m70_c01180{transform:matrix(0.236811,0.004026,-0.004249,0.249964,0,0);-ms-transform:matrix(0.236811,0.004026,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.236811,0.004026,-0.004249,0.249964,0,0);}
.m4b_c01180{transform:matrix(0.237008,0.003555,-0.003750,0.249972,0,0);-ms-transform:matrix(0.237008,0.003555,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.237008,0.003555,-0.003750,0.249972,0,0);}
.m46_c01180{transform:matrix(0.237263,0.003559,-0.003750,0.249972,0,0);-ms-transform:matrix(0.237263,0.003559,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.237263,0.003559,-0.003750,0.249972,0,0);}
.m3f_c01180{transform:matrix(0.237298,0.003559,-0.003750,0.249972,0,0);-ms-transform:matrix(0.237298,0.003559,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.237298,0.003559,-0.003750,0.249972,0,0);}
.m88_c01180{transform:matrix(0.237487,0.004275,-0.004499,0.249960,0,0);-ms-transform:matrix(0.237487,0.004275,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.237487,0.004275,-0.004499,0.249960,0,0);}
.m10c_c01180{transform:matrix(0.238126,0.005715,-0.005998,0.249928,0,0);-ms-transform:matrix(0.238126,0.005715,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.238126,0.005715,-0.005998,0.249928,0,0);}
.ma1_c01180{transform:matrix(0.238496,0.004293,-0.004499,0.249960,0,0);-ms-transform:matrix(0.238496,0.004293,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.238496,0.004293,-0.004499,0.249960,0,0);}
.md3_c01180{transform:matrix(0.238601,0.004295,-0.004499,0.249960,0,0);-ms-transform:matrix(0.238601,0.004295,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.238601,0.004295,-0.004499,0.249960,0,0);}
.mf2_c01180{transform:matrix(0.238661,0.004296,-0.004499,0.249960,0,0);-ms-transform:matrix(0.238661,0.004296,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.238661,0.004296,-0.004499,0.249960,0,0);}
.m10_c01180{transform:matrix(0.239033,0.003585,-0.003750,0.249972,0,0);-ms-transform:matrix(0.239033,0.003585,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.239033,0.003585,-0.003750,0.249972,0,0);}
.m20_c01180{transform:matrix(0.239153,0.003587,-0.003750,0.249972,0,0);-ms-transform:matrix(0.239153,0.003587,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.239153,0.003587,-0.003750,0.249972,0,0);}
.m8a_c01180{transform:matrix(0.239231,0.004306,-0.004499,0.249960,0,0);-ms-transform:matrix(0.239231,0.004306,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.239231,0.004306,-0.004499,0.249960,0,0);}
.me7_c01180{transform:matrix(0.239256,0.004307,-0.004499,0.249960,0,0);-ms-transform:matrix(0.239256,0.004307,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.239256,0.004307,-0.004499,0.249960,0,0);}
.m81_c01180{transform:matrix(0.239531,0.004312,-0.004499,0.249960,0,0);-ms-transform:matrix(0.239531,0.004312,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.239531,0.004312,-0.004499,0.249960,0,0);}
.m7c_c01180{transform:matrix(0.239981,0.004320,-0.004499,0.249960,0,0);-ms-transform:matrix(0.239981,0.004320,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.239981,0.004320,-0.004499,0.249960,0,0);}
.m3_c01180{transform:matrix(0.240088,0.003601,-0.003750,0.249972,0,0);-ms-transform:matrix(0.240088,0.003601,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.240088,0.003601,-0.003750,0.249972,0,0);}
.m114_c01180{transform:matrix(0.240331,0.005768,-0.005998,0.249928,0,0);-ms-transform:matrix(0.240331,0.005768,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.240331,0.005768,-0.005998,0.249928,0,0);}
.m12f_c01180{transform:matrix(0.240401,0.005770,-0.005998,0.249928,0,0);-ms-transform:matrix(0.240401,0.005770,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.240401,0.005770,-0.005998,0.249928,0,0);}
.m6d_c01180{transform:matrix(0.240600,0.004090,-0.004249,0.249964,0,0);-ms-transform:matrix(0.240600,0.004090,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.240600,0.004090,-0.004249,0.249964,0,0);}
.mdc_c01180{transform:matrix(0.240691,0.004332,-0.004499,0.249960,0,0);-ms-transform:matrix(0.240691,0.004332,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.240691,0.004332,-0.004499,0.249960,0,0);}
.m13b_c01180{transform:matrix(0.240911,0.005782,-0.005998,0.249928,0,0);-ms-transform:matrix(0.240911,0.005782,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.240911,0.005782,-0.005998,0.249928,0,0);}
.m10d_c01180{transform:matrix(0.241246,0.005790,-0.005998,0.249928,0,0);-ms-transform:matrix(0.241246,0.005790,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.241246,0.005790,-0.005998,0.249928,0,0);}
.mbf_c01180{transform:matrix(0.241376,0.004345,-0.004499,0.249960,0,0);-ms-transform:matrix(0.241376,0.004345,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.241376,0.004345,-0.004499,0.249960,0,0);}
.md2_c01180{transform:matrix(0.242041,0.004357,-0.004499,0.249960,0,0);-ms-transform:matrix(0.242041,0.004357,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.242041,0.004357,-0.004499,0.249960,0,0);}
.md_c01180{transform:matrix(0.242348,0.003635,-0.003750,0.249972,0,0);-ms-transform:matrix(0.242348,0.003635,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.242348,0.003635,-0.003750,0.249972,0,0);}
.m64_c01180{transform:matrix(0.242440,0.004121,-0.004249,0.249964,0,0);-ms-transform:matrix(0.242440,0.004121,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.242440,0.004121,-0.004249,0.249964,0,0);}
.mc7_c01180{transform:matrix(0.243016,0.004374,-0.004499,0.249960,0,0);-ms-transform:matrix(0.243016,0.004374,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.243016,0.004374,-0.004499,0.249960,0,0);}
.m66_c01180{transform:matrix(0.243020,0.004131,-0.004249,0.249964,0,0);-ms-transform:matrix(0.243020,0.004131,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.243020,0.004131,-0.004249,0.249964,0,0);}
.mf7_c01180{transform:matrix(0.243161,0.004377,-0.004499,0.249960,0,0);-ms-transform:matrix(0.243161,0.004377,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.243161,0.004377,-0.004499,0.249960,0,0);}
.m111_c01180{transform:matrix(0.243220,0.005837,-0.005998,0.249928,0,0);-ms-transform:matrix(0.243220,0.005837,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.243220,0.005837,-0.005998,0.249928,0,0);}
.m90_c01180{transform:matrix(0.243336,0.004380,-0.004499,0.249960,0,0);-ms-transform:matrix(0.243336,0.004380,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.243336,0.004380,-0.004499,0.249960,0,0);}
.mf1_c01180{transform:matrix(0.243501,0.004383,-0.004499,0.249960,0,0);-ms-transform:matrix(0.243501,0.004383,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.243501,0.004383,-0.004499,0.249960,0,0);}
.m9d_c01180{transform:matrix(0.243506,0.004383,-0.004499,0.249960,0,0);-ms-transform:matrix(0.243506,0.004383,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.243506,0.004383,-0.004499,0.249960,0,0);}
.m47_c01180{transform:matrix(0.243613,0.003654,-0.003750,0.249972,0,0);-ms-transform:matrix(0.243613,0.003654,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.243613,0.003654,-0.003750,0.249972,0,0);}
.m72_c01180{transform:matrix(0.243900,0.004146,-0.004249,0.249964,0,0);-ms-transform:matrix(0.243900,0.004146,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.243900,0.004146,-0.004249,0.249964,0,0);}
.m133_c01180{transform:matrix(0.244020,0.005856,-0.005998,0.249928,0,0);-ms-transform:matrix(0.244020,0.005856,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.244020,0.005856,-0.005998,0.249928,0,0);}
.mc4_c01180{transform:matrix(0.244055,0.004393,-0.004499,0.249960,0,0);-ms-transform:matrix(0.244055,0.004393,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.244055,0.004393,-0.004499,0.249960,0,0);}
.m1b_c01180{transform:matrix(0.244068,0.003661,-0.003750,0.249972,0,0);-ms-transform:matrix(0.244068,0.003661,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.244068,0.003661,-0.003750,0.249972,0,0);}
.m4_c01180{transform:matrix(0.244448,0.003667,-0.003750,0.249972,0,0);-ms-transform:matrix(0.244448,0.003667,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.244448,0.003667,-0.003750,0.249972,0,0);}
.mf6_c01180{transform:matrix(0.244660,0.004404,-0.004499,0.249960,0,0);-ms-transform:matrix(0.244660,0.004404,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.244660,0.004404,-0.004499,0.249960,0,0);}
.m35_c01180{transform:matrix(0.244777,0.003672,-0.003750,0.249972,0,0);-ms-transform:matrix(0.244777,0.003672,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.244777,0.003672,-0.003750,0.249972,0,0);}
.mda_c01180{transform:matrix(0.244870,0.004408,-0.004499,0.249960,0,0);-ms-transform:matrix(0.244870,0.004408,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.244870,0.004408,-0.004499,0.249960,0,0);}
.mf9_c01180{transform:matrix(0.245310,0.004416,-0.004499,0.249960,0,0);-ms-transform:matrix(0.245310,0.004416,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.245310,0.004416,-0.004499,0.249960,0,0);}
.md6_c01180{transform:matrix(0.245730,0.004423,-0.004499,0.249960,0,0);-ms-transform:matrix(0.245730,0.004423,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.245730,0.004423,-0.004499,0.249960,0,0);}
.m5c_c01180{transform:matrix(0.245934,0.004181,-0.004249,0.249964,0,0);-ms-transform:matrix(0.245934,0.004181,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.245934,0.004181,-0.004249,0.249964,0,0);}
.ma0_c01180{transform:matrix(0.246145,0.004431,-0.004499,0.249960,0,0);-ms-transform:matrix(0.246145,0.004431,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.246145,0.004431,-0.004499,0.249960,0,0);}
.m10e_c01180{transform:matrix(0.246194,0.005909,-0.005998,0.249928,0,0);-ms-transform:matrix(0.246194,0.005909,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.246194,0.005909,-0.005998,0.249928,0,0);}
.mac_c01180{transform:matrix(0.246690,0.004440,-0.004499,0.249960,0,0);-ms-transform:matrix(0.246690,0.004440,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.246690,0.004440,-0.004499,0.249960,0,0);}
.mce_c01180{transform:matrix(0.246805,0.004442,-0.004499,0.249960,0,0);-ms-transform:matrix(0.246805,0.004442,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.246805,0.004442,-0.004499,0.249960,0,0);}
.m102_c01180{transform:matrix(0.246900,0.004444,-0.004499,0.249960,0,0);-ms-transform:matrix(0.246900,0.004444,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.246900,0.004444,-0.004499,0.249960,0,0);}
.m58_c01180{transform:matrix(0.246912,0.003704,-0.003750,0.249972,0,0);-ms-transform:matrix(0.246912,0.003704,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.246912,0.003704,-0.003750,0.249972,0,0);}
.maf_c01180{transform:matrix(0.247715,0.004459,-0.004499,0.249960,0,0);-ms-transform:matrix(0.247715,0.004459,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.247715,0.004459,-0.004499,0.249960,0,0);}
.m117_c01180{transform:matrix(0.247984,0.005952,-0.005998,0.249928,0,0);-ms-transform:matrix(0.247984,0.005952,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.247984,0.005952,-0.005998,0.249928,0,0);}
.m9a_c01180{transform:matrix(0.248075,0.004465,-0.004499,0.249960,0,0);-ms-transform:matrix(0.248075,0.004465,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.248075,0.004465,-0.004499,0.249960,0,0);}
.me8_c01180{transform:matrix(0.248620,0.004475,-0.004499,0.249960,0,0);-ms-transform:matrix(0.248620,0.004475,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.248620,0.004475,-0.004499,0.249960,0,0);}
.mb8_c01180{transform:matrix(0.249175,0.004485,-0.004499,0.249960,0,0);-ms-transform:matrix(0.249175,0.004485,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.249175,0.004485,-0.004499,0.249960,0,0);}
.m98_c01180{transform:matrix(0.249230,0.004486,-0.004499,0.249960,0,0);-ms-transform:matrix(0.249230,0.004486,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.249230,0.004486,-0.004499,0.249960,0,0);}
.m11b_c01180{transform:matrix(0.249233,0.005982,-0.005998,0.249928,0,0);-ms-transform:matrix(0.249233,0.005982,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.249233,0.005982,-0.005998,0.249928,0,0);}
.m53_c01180{transform:matrix(0.249282,0.003739,-0.003750,0.249972,0,0);-ms-transform:matrix(0.249282,0.003739,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.249282,0.003739,-0.003750,0.249972,0,0);}
.m100_c01180{transform:matrix(0.249445,0.004490,-0.004499,0.249960,0,0);-ms-transform:matrix(0.249445,0.004490,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.249445,0.004490,-0.004499,0.249960,0,0);}
.m93_c01180{transform:matrix(0.249625,0.004493,-0.004499,0.249960,0,0);-ms-transform:matrix(0.249625,0.004493,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.249625,0.004493,-0.004499,0.249960,0,0);}
.m138_c01180{transform:matrix(0.249713,0.005993,-0.005998,0.249928,0,0);-ms-transform:matrix(0.249713,0.005993,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.249713,0.005993,-0.005998,0.249928,0,0);}
.mb7_c01180{transform:matrix(0.249720,0.004495,-0.004499,0.249960,0,0);-ms-transform:matrix(0.249720,0.004495,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.249720,0.004495,-0.004499,0.249960,0,0);}
.m45_c01180{transform:matrix(0.250027,0.003750,-0.003750,0.249972,0,0);-ms-transform:matrix(0.250027,0.003750,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.250027,0.003750,-0.003750,0.249972,0,0);}
.mc3_c01180{transform:matrix(0.250114,0.004502,-0.004499,0.249960,0,0);-ms-transform:matrix(0.250114,0.004502,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.250114,0.004502,-0.004499,0.249960,0,0);}
.m96_c01180{transform:matrix(0.250149,0.004503,-0.004499,0.249960,0,0);-ms-transform:matrix(0.250149,0.004503,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.250149,0.004503,-0.004499,0.249960,0,0);}
.m13c_c01180{transform:matrix(0.250173,0.006004,-0.005998,0.249928,0,0);-ms-transform:matrix(0.250173,0.006004,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.250173,0.006004,-0.005998,0.249928,0,0);}
.mb2_c01180{transform:matrix(0.250419,0.004508,-0.004499,0.249960,0,0);-ms-transform:matrix(0.250419,0.004508,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.250419,0.004508,-0.004499,0.249960,0,0);}
.m118_c01180{transform:matrix(0.250633,0.006015,-0.005998,0.249928,0,0);-ms-transform:matrix(0.250633,0.006015,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.250633,0.006015,-0.005998,0.249928,0,0);}
.mdf_c01180{transform:matrix(0.250984,0.004518,-0.004499,0.249960,0,0);-ms-transform:matrix(0.250984,0.004518,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.250984,0.004518,-0.004499,0.249960,0,0);}
.m4e_c01180{transform:matrix(0.251152,0.003767,-0.003750,0.249972,0,0);-ms-transform:matrix(0.251152,0.003767,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.251152,0.003767,-0.003750,0.249972,0,0);}
.m11e_c01180{transform:matrix(0.251208,0.006029,-0.005998,0.249928,0,0);-ms-transform:matrix(0.251208,0.006029,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.251208,0.006029,-0.005998,0.249928,0,0);}
.mdb_c01180{transform:matrix(0.251334,0.004524,-0.004499,0.249960,0,0);-ms-transform:matrix(0.251334,0.004524,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.251334,0.004524,-0.004499,0.249960,0,0);}
.mc0_c01180{transform:matrix(0.251359,0.004524,-0.004499,0.249960,0,0);-ms-transform:matrix(0.251359,0.004524,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.251359,0.004524,-0.004499,0.249960,0,0);}
.maa_c01180{transform:matrix(0.251829,0.004533,-0.004499,0.249960,0,0);-ms-transform:matrix(0.251829,0.004533,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.251829,0.004533,-0.004499,0.249960,0,0);}
.m39_c01180{transform:matrix(0.251862,0.003778,-0.003750,0.249972,0,0);-ms-transform:matrix(0.251862,0.003778,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.251862,0.003778,-0.003750,0.249972,0,0);}
.m107_c01180{transform:matrix(0.252074,0.004537,-0.004499,0.249960,0,0);-ms-transform:matrix(0.252074,0.004537,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.252074,0.004537,-0.004499,0.249960,0,0);}
.m95_c01180{transform:matrix(0.252179,0.004539,-0.004499,0.249960,0,0);-ms-transform:matrix(0.252179,0.004539,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.252179,0.004539,-0.004499,0.249960,0,0);}
.m16_c01180{transform:matrix(0.252242,0.003784,-0.003750,0.249972,0,0);-ms-transform:matrix(0.252242,0.003784,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.252242,0.003784,-0.003750,0.249972,0,0);}
.md8_c01180{transform:matrix(0.252259,0.004541,-0.004499,0.249960,0,0);-ms-transform:matrix(0.252259,0.004541,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.252259,0.004541,-0.004499,0.249960,0,0);}
.m57_c01180{transform:matrix(0.252402,0.003786,-0.003750,0.249972,0,0);-ms-transform:matrix(0.252402,0.003786,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.252402,0.003786,-0.003750,0.249972,0,0);}
.mca_c01180{transform:matrix(0.252549,0.004546,-0.004499,0.249960,0,0);-ms-transform:matrix(0.252549,0.004546,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.252549,0.004546,-0.004499,0.249960,0,0);}
.mfe_c01180{transform:matrix(0.252629,0.004547,-0.004499,0.249960,0,0);-ms-transform:matrix(0.252629,0.004547,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.252629,0.004547,-0.004499,0.249960,0,0);}
.m12c_c01180{transform:matrix(0.252672,0.006064,-0.005998,0.249928,0,0);-ms-transform:matrix(0.252672,0.006064,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.252672,0.006064,-0.005998,0.249928,0,0);}
.m7_c01180{transform:matrix(0.253077,0.003796,-0.003750,0.249972,0,0);-ms-transform:matrix(0.253077,0.003796,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.253077,0.003796,-0.003750,0.249972,0,0);}
.m55_c01180{transform:matrix(0.253102,0.003797,-0.003750,0.249972,0,0);-ms-transform:matrix(0.253102,0.003797,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.253102,0.003797,-0.003750,0.249972,0,0);}
.mcb_c01180{transform:matrix(0.253284,0.004559,-0.004499,0.249960,0,0);-ms-transform:matrix(0.253284,0.004559,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.253284,0.004559,-0.004499,0.249960,0,0);}
.m31_c01180{transform:matrix(0.253322,0.003800,-0.003750,0.249972,0,0);-ms-transform:matrix(0.253322,0.003800,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.253322,0.003800,-0.003750,0.249972,0,0);}
.mb_c01180{transform:matrix(0.253361,0.003800,-0.003750,0.249972,0,0);-ms-transform:matrix(0.253361,0.003800,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.253361,0.003800,-0.003750,0.249972,0,0);}
.m12e_c01180{transform:matrix(0.253407,0.006082,-0.005998,0.249928,0,0);-ms-transform:matrix(0.253407,0.006082,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.253407,0.006082,-0.005998,0.249928,0,0);}
.m12d_c01180{transform:matrix(0.253422,0.006082,-0.005998,0.249928,0,0);-ms-transform:matrix(0.253422,0.006082,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.253422,0.006082,-0.005998,0.249928,0,0);}
.mcf_c01180{transform:matrix(0.253559,0.004564,-0.004499,0.249960,0,0);-ms-transform:matrix(0.253559,0.004564,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.253559,0.004564,-0.004499,0.249960,0,0);}
.ma5_c01180{transform:matrix(0.253604,0.004565,-0.004499,0.249960,0,0);-ms-transform:matrix(0.253604,0.004565,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.253604,0.004565,-0.004499,0.249960,0,0);}
.m21_c01180{transform:matrix(0.253756,0.003806,-0.003750,0.249972,0,0);-ms-transform:matrix(0.253756,0.003806,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.253756,0.003806,-0.003750,0.249972,0,0);}
.mde_c01180{transform:matrix(0.253879,0.004570,-0.004499,0.249960,0,0);-ms-transform:matrix(0.253879,0.004570,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.253879,0.004570,-0.004499,0.249960,0,0);}
.m139_c01180{transform:matrix(0.254112,0.006099,-0.005998,0.249928,0,0);-ms-transform:matrix(0.254112,0.006099,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.254112,0.006099,-0.005998,0.249928,0,0);}
.ma2_c01180{transform:matrix(0.254334,0.004578,-0.004499,0.249960,0,0);-ms-transform:matrix(0.254334,0.004578,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.254334,0.004578,-0.004499,0.249960,0,0);}
.m42_c01180{transform:matrix(0.254336,0.003815,-0.003750,0.249972,0,0);-ms-transform:matrix(0.254336,0.003815,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.254336,0.003815,-0.003750,0.249972,0,0);}
.m75_c01180{transform:matrix(0.254588,0.004328,-0.004249,0.249964,0,0);-ms-transform:matrix(0.254588,0.004328,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.254588,0.004328,-0.004249,0.249964,0,0);}
.m9b_c01180{transform:matrix(0.254804,0.004586,-0.004499,0.249960,0,0);-ms-transform:matrix(0.254804,0.004586,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.254804,0.004586,-0.004499,0.249960,0,0);}
.m5_c01180{transform:matrix(0.254936,0.003824,-0.003750,0.249972,0,0);-ms-transform:matrix(0.254936,0.003824,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.254936,0.003824,-0.003750,0.249972,0,0);}
.mf4_c01180{transform:matrix(0.255029,0.004591,-0.004499,0.249960,0,0);-ms-transform:matrix(0.255029,0.004591,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.255029,0.004591,-0.004499,0.249960,0,0);}
.m137_c01180{transform:matrix(0.255112,0.006123,-0.005998,0.249928,0,0);-ms-transform:matrix(0.255112,0.006123,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.255112,0.006123,-0.005998,0.249928,0,0);}
.m6b_c01180{transform:matrix(0.255178,0.004338,-0.004249,0.249964,0,0);-ms-transform:matrix(0.255178,0.004338,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.255178,0.004338,-0.004249,0.249964,0,0);}
.mc_c01180{transform:matrix(0.255651,0.003835,-0.003750,0.249972,0,0);-ms-transform:matrix(0.255651,0.003835,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.255651,0.003835,-0.003750,0.249972,0,0);}
.m10b_c01180{transform:matrix(0.255681,0.006136,-0.005998,0.249928,0,0);-ms-transform:matrix(0.255681,0.006136,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.255681,0.006136,-0.005998,0.249928,0,0);}
.m12_c01180{transform:matrix(0.256056,0.003841,-0.003750,0.249972,0,0);-ms-transform:matrix(0.256056,0.003841,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.256056,0.003841,-0.003750,0.249972,0,0);}
.m14_c01180{transform:matrix(0.256306,0.003845,-0.003750,0.249972,0,0);-ms-transform:matrix(0.256306,0.003845,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.256306,0.003845,-0.003750,0.249972,0,0);}
.m131_c01180{transform:matrix(0.256991,0.006168,-0.005998,0.249928,0,0);-ms-transform:matrix(0.256991,0.006168,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.256991,0.006168,-0.005998,0.249928,0,0);}
.mbd_c01180{transform:matrix(0.257528,0.004636,-0.004499,0.249960,0,0);-ms-transform:matrix(0.257528,0.004636,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.257528,0.004636,-0.004499,0.249960,0,0);}
.m37_c01180{transform:matrix(0.257841,0.003868,-0.003750,0.249972,0,0);-ms-transform:matrix(0.257841,0.003868,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.257841,0.003868,-0.003750,0.249972,0,0);}
.m13e_c01180{transform:matrix(0.258371,0.006201,-0.005998,0.249928,0,0);-ms-transform:matrix(0.258371,0.006201,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.258371,0.006201,-0.005998,0.249928,0,0);}
.m11c_c01180{transform:matrix(0.258431,0.006202,-0.005998,0.249928,0,0);-ms-transform:matrix(0.258431,0.006202,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.258431,0.006202,-0.005998,0.249928,0,0);}
.m49_c01180{transform:matrix(0.258771,0.003882,-0.003750,0.249972,0,0);-ms-transform:matrix(0.258771,0.003882,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.258771,0.003882,-0.003750,0.249972,0,0);}
.m130_c01180{transform:matrix(0.258930,0.006214,-0.005998,0.249928,0,0);-ms-transform:matrix(0.258930,0.006214,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.258930,0.006214,-0.005998,0.249928,0,0);}
.m59_c01180{transform:matrix(0.259096,0.003886,-0.003750,0.249972,0,0);-ms-transform:matrix(0.259096,0.003886,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.259096,0.003886,-0.003750,0.249972,0,0);}
.m65_c01180{transform:matrix(0.259343,0.004409,-0.004249,0.249964,0,0);-ms-transform:matrix(0.259343,0.004409,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.259343,0.004409,-0.004249,0.249964,0,0);}
.mb3_c01180{transform:matrix(0.259403,0.004669,-0.004499,0.249960,0,0);-ms-transform:matrix(0.259403,0.004669,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.259403,0.004669,-0.004499,0.249960,0,0);}
.mbc_c01180{transform:matrix(0.259478,0.004671,-0.004499,0.249960,0,0);-ms-transform:matrix(0.259478,0.004671,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.259478,0.004671,-0.004499,0.249960,0,0);}
.m1f_c01180{transform:matrix(0.259491,0.003892,-0.003750,0.249972,0,0);-ms-transform:matrix(0.259491,0.003892,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.259491,0.003892,-0.003750,0.249972,0,0);}
.mc8_c01180{transform:matrix(0.259798,0.004676,-0.004499,0.249960,0,0);-ms-transform:matrix(0.259798,0.004676,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.259798,0.004676,-0.004499,0.249960,0,0);}
.m5d_c01180{transform:matrix(0.259907,0.004418,-0.004249,0.249964,0,0);-ms-transform:matrix(0.259907,0.004418,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.259907,0.004418,-0.004249,0.249964,0,0);}
.m106_c01180{transform:matrix(0.260158,0.004683,-0.004499,0.249960,0,0);-ms-transform:matrix(0.260158,0.004683,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.260158,0.004683,-0.004499,0.249960,0,0);}
.me9_c01180{transform:matrix(0.260373,0.004687,-0.004499,0.249960,0,0);-ms-transform:matrix(0.260373,0.004687,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.260373,0.004687,-0.004499,0.249960,0,0);}
.mb4_c01180{transform:matrix(0.261008,0.004698,-0.004499,0.249960,0,0);-ms-transform:matrix(0.261008,0.004698,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.261008,0.004698,-0.004499,0.249960,0,0);}
.m104_c01180{transform:matrix(0.261438,0.004706,-0.004499,0.249960,0,0);-ms-transform:matrix(0.261438,0.004706,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.261438,0.004706,-0.004499,0.249960,0,0);}
.m33_c01180{transform:matrix(0.261621,0.003924,-0.003750,0.249972,0,0);-ms-transform:matrix(0.261621,0.003924,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.261621,0.003924,-0.003750,0.249972,0,0);}
.me6_c01180{transform:matrix(0.262153,0.004719,-0.004499,0.249960,0,0);-ms-transform:matrix(0.262153,0.004719,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.262153,0.004719,-0.004499,0.249960,0,0);}
.me3_c01180{transform:matrix(0.262587,0.004727,-0.004499,0.249960,0,0);-ms-transform:matrix(0.262587,0.004727,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.262587,0.004727,-0.004499,0.249960,0,0);}
.mab_c01180{transform:matrix(0.262722,0.004729,-0.004499,0.249960,0,0);-ms-transform:matrix(0.262722,0.004729,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.262722,0.004729,-0.004499,0.249960,0,0);}
.mcc_c01180{transform:matrix(0.263187,0.004737,-0.004499,0.249960,0,0);-ms-transform:matrix(0.263187,0.004737,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.263187,0.004737,-0.004499,0.249960,0,0);}
.m91_c01180{transform:matrix(0.263462,0.004742,-0.004499,0.249960,0,0);-ms-transform:matrix(0.263462,0.004742,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.263462,0.004742,-0.004499,0.249960,0,0);}
.ma7_c01180{transform:matrix(0.264167,0.004755,-0.004499,0.249960,0,0);-ms-transform:matrix(0.264167,0.004755,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.264167,0.004755,-0.004499,0.249960,0,0);}
.m115_c01180{transform:matrix(0.264244,0.006342,-0.005998,0.249928,0,0);-ms-transform:matrix(0.264244,0.006342,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.264244,0.006342,-0.005998,0.249928,0,0);}
.mb6_c01180{transform:matrix(0.264502,0.004761,-0.004499,0.249960,0,0);-ms-transform:matrix(0.264502,0.004761,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.264502,0.004761,-0.004499,0.249960,0,0);}
.m63_c01180{transform:matrix(0.264647,0.004499,-0.004249,0.249964,0,0);-ms-transform:matrix(0.264647,0.004499,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.264647,0.004499,-0.004249,0.249964,0,0);}
.m56_c01180{transform:matrix(0.265290,0.003979,-0.003750,0.249972,0,0);-ms-transform:matrix(0.265290,0.003979,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.265290,0.003979,-0.003750,0.249972,0,0);}
.mb0_c01180{transform:matrix(0.265312,0.004776,-0.004499,0.249960,0,0);-ms-transform:matrix(0.265312,0.004776,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.265312,0.004776,-0.004499,0.249960,0,0);}
.ma6_c01180{transform:matrix(0.265472,0.004778,-0.004499,0.249960,0,0);-ms-transform:matrix(0.265472,0.004778,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.265472,0.004778,-0.004499,0.249960,0,0);}
.m6e_c01180{transform:matrix(0.265617,0.004515,-0.004249,0.249964,0,0);-ms-transform:matrix(0.265617,0.004515,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.265617,0.004515,-0.004249,0.249964,0,0);}
.m105_c01180{transform:matrix(0.265857,0.004785,-0.004499,0.249960,0,0);-ms-transform:matrix(0.265857,0.004785,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.265857,0.004785,-0.004499,0.249960,0,0);}
.m5e_c01180{transform:matrix(0.266202,0.004525,-0.004249,0.249964,0,0);-ms-transform:matrix(0.266202,0.004525,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.266202,0.004525,-0.004249,0.249964,0,0);}
.mea_c01180{transform:matrix(0.266372,0.004795,-0.004499,0.249960,0,0);-ms-transform:matrix(0.266372,0.004795,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.266372,0.004795,-0.004499,0.249960,0,0);}
.m22_c01180{transform:matrix(0.267150,0.004007,-0.003750,0.249972,0,0);-ms-transform:matrix(0.267150,0.004007,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.267150,0.004007,-0.003750,0.249972,0,0);}
.mae_c01180{transform:matrix(0.267367,0.004813,-0.004499,0.249960,0,0);-ms-transform:matrix(0.267367,0.004813,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.267367,0.004813,-0.004499,0.249960,0,0);}
.ma8_c01180{transform:matrix(0.267627,0.004817,-0.004499,0.249960,0,0);-ms-transform:matrix(0.267627,0.004817,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.267627,0.004817,-0.004499,0.249960,0,0);}
.mcd_c01180{transform:matrix(0.267812,0.004821,-0.004499,0.249960,0,0);-ms-transform:matrix(0.267812,0.004821,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.267812,0.004821,-0.004499,0.249960,0,0);}
.m8d_c01180{transform:matrix(0.268327,0.004830,-0.004499,0.249960,0,0);-ms-transform:matrix(0.268327,0.004830,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.268327,0.004830,-0.004499,0.249960,0,0);}
.mef_c01180{transform:matrix(0.269241,0.004846,-0.004499,0.249960,0,0);-ms-transform:matrix(0.269241,0.004846,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.269241,0.004846,-0.004499,0.249960,0,0);}
.m19_c01180{transform:matrix(0.269345,0.004040,-0.003750,0.249972,0,0);-ms-transform:matrix(0.269345,0.004040,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.269345,0.004040,-0.003750,0.249972,0,0);}
.m2_c01180{transform:matrix(0.269390,0.004041,-0.003750,0.249972,0,0);-ms-transform:matrix(0.269390,0.004041,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.269390,0.004041,-0.003750,0.249972,0,0);}
.m10a_c01180{transform:matrix(0.269676,0.004854,-0.004499,0.249960,0,0);-ms-transform:matrix(0.269676,0.004854,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.269676,0.004854,-0.004499,0.249960,0,0);}
.m68_c01180{transform:matrix(0.270146,0.004592,-0.004249,0.249964,0,0);-ms-transform:matrix(0.270146,0.004592,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.270146,0.004592,-0.004249,0.249964,0,0);}
.m9_c01180{transform:matrix(0.270285,0.004054,-0.003750,0.249972,0,0);-ms-transform:matrix(0.270285,0.004054,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.270285,0.004054,-0.003750,0.249972,0,0);}
.m60_c01180{transform:matrix(0.270476,0.004598,-0.004249,0.249964,0,0);-ms-transform:matrix(0.270476,0.004598,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.270476,0.004598,-0.004249,0.249964,0,0);}
.mec_c01180{transform:matrix(0.270501,0.004869,-0.004499,0.249960,0,0);-ms-transform:matrix(0.270501,0.004869,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.270501,0.004869,-0.004499,0.249960,0,0);}
.m9e_c01180{transform:matrix(0.271251,0.004883,-0.004499,0.249960,0,0);-ms-transform:matrix(0.271251,0.004883,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.271251,0.004883,-0.004499,0.249960,0,0);}
.m8e_c01180{transform:matrix(0.271516,0.004887,-0.004499,0.249960,0,0);-ms-transform:matrix(0.271516,0.004887,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.271516,0.004887,-0.004499,0.249960,0,0);}
.mbe_c01180{transform:matrix(0.272436,0.004904,-0.004499,0.249960,0,0);-ms-transform:matrix(0.272436,0.004904,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.272436,0.004904,-0.004499,0.249960,0,0);}
.mba_c01180{transform:matrix(0.272661,0.004908,-0.004499,0.249960,0,0);-ms-transform:matrix(0.272661,0.004908,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.272661,0.004908,-0.004499,0.249960,0,0);}
.m8_c01180{transform:matrix(0.273149,0.004097,-0.003750,0.249972,0,0);-ms-transform:matrix(0.273149,0.004097,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.273149,0.004097,-0.003750,0.249972,0,0);}
.ma3_c01180{transform:matrix(0.274511,0.004941,-0.004499,0.249960,0,0);-ms-transform:matrix(0.274511,0.004941,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.274511,0.004941,-0.004499,0.249960,0,0);}
.m74_c01180{transform:matrix(0.274540,0.004667,-0.004249,0.249964,0,0);-ms-transform:matrix(0.274540,0.004667,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.274540,0.004667,-0.004249,0.249964,0,0);}
.mad_c01180{transform:matrix(0.275155,0.004953,-0.004499,0.249960,0,0);-ms-transform:matrix(0.275155,0.004953,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.275155,0.004953,-0.004499,0.249960,0,0);}
.ma9_c01180{transform:matrix(0.275340,0.004956,-0.004499,0.249960,0,0);-ms-transform:matrix(0.275340,0.004956,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.275340,0.004956,-0.004499,0.249960,0,0);}
.m4d_c01180{transform:matrix(0.275349,0.004130,-0.003750,0.249972,0,0);-ms-transform:matrix(0.275349,0.004130,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.275349,0.004130,-0.003750,0.249972,0,0);}
.m67_c01180{transform:matrix(0.276255,0.004696,-0.004249,0.249964,0,0);-ms-transform:matrix(0.276255,0.004696,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.276255,0.004696,-0.004249,0.249964,0,0);}
.med_c01180{transform:matrix(0.276970,0.004985,-0.004499,0.249960,0,0);-ms-transform:matrix(0.276970,0.004985,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.276970,0.004985,-0.004499,0.249960,0,0);}
.mf0_c01180{transform:matrix(0.277030,0.004987,-0.004499,0.249960,0,0);-ms-transform:matrix(0.277030,0.004987,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.277030,0.004987,-0.004499,0.249960,0,0);}
.m8b_c01180{transform:matrix(0.277145,0.004989,-0.004499,0.249960,0,0);-ms-transform:matrix(0.277145,0.004989,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.277145,0.004989,-0.004499,0.249960,0,0);}
.m5a_c01180{transform:matrix(0.277394,0.004161,-0.003750,0.249972,0,0);-ms-transform:matrix(0.277394,0.004161,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.277394,0.004161,-0.003750,0.249972,0,0);}
.mc5_c01180{transform:matrix(0.277455,0.004994,-0.004499,0.249960,0,0);-ms-transform:matrix(0.277455,0.004994,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.277455,0.004994,-0.004499,0.249960,0,0);}
.m61_c01180{transform:matrix(0.277795,0.004723,-0.004249,0.249964,0,0);-ms-transform:matrix(0.277795,0.004723,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.277795,0.004723,-0.004249,0.249964,0,0);}
.m1c_c01180{transform:matrix(0.278184,0.004173,-0.003750,0.249972,0,0);-ms-transform:matrix(0.278184,0.004173,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.278184,0.004173,-0.003750,0.249972,0,0);}
.mc6_c01180{transform:matrix(0.281224,0.005062,-0.004499,0.249960,0,0);-ms-transform:matrix(0.281224,0.005062,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.281224,0.005062,-0.004499,0.249960,0,0);}
.mb5_c01180{transform:matrix(0.281329,0.005064,-0.004499,0.249960,0,0);-ms-transform:matrix(0.281329,0.005064,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.281329,0.005064,-0.004499,0.249960,0,0);}
.mb9_c01180{transform:matrix(0.281804,0.005072,-0.004499,0.249960,0,0);-ms-transform:matrix(0.281804,0.005072,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.281804,0.005072,-0.004499,0.249960,0,0);}
.mc9_c01180{transform:matrix(0.281849,0.005073,-0.004499,0.249960,0,0);-ms-transform:matrix(0.281849,0.005073,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.281849,0.005073,-0.004499,0.249960,0,0);}
.mc2_c01180{transform:matrix(0.281864,0.005074,-0.004499,0.249960,0,0);-ms-transform:matrix(0.281864,0.005074,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.281864,0.005074,-0.004499,0.249960,0,0);}
.m92_c01180{transform:matrix(0.284529,0.005122,-0.004499,0.249960,0,0);-ms-transform:matrix(0.284529,0.005122,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.284529,0.005122,-0.004499,0.249960,0,0);}
.mfb_c01180{transform:matrix(0.286564,0.005158,-0.004499,0.249960,0,0);-ms-transform:matrix(0.286564,0.005158,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.286564,0.005158,-0.004499,0.249960,0,0);}
.m6c_c01180{transform:matrix(0.287338,0.004885,-0.004249,0.249964,0,0);-ms-transform:matrix(0.287338,0.004885,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.287338,0.004885,-0.004249,0.249964,0,0);}
.mb1_c01180{transform:matrix(0.287688,0.005178,-0.004499,0.249960,0,0);-ms-transform:matrix(0.287688,0.005178,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.287688,0.005178,-0.004499,0.249960,0,0);}
.m5b_c01180{transform:matrix(0.288248,0.004324,-0.003750,0.249972,0,0);-ms-transform:matrix(0.288248,0.004324,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.288248,0.004324,-0.003750,0.249972,0,0);}
.m71_c01180{transform:matrix(0.291038,0.004948,-0.004249,0.249964,0,0);-ms-transform:matrix(0.291038,0.004948,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.291038,0.004948,-0.004249,0.249964,0,0);}
.m76_c01180{transform:matrix(0.291448,0.004955,-0.004249,0.249964,0,0);-ms-transform:matrix(0.291448,0.004955,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.291448,0.004955,-0.004249,0.249964,0,0);}
.m103_c01180{transform:matrix(0.292118,0.005258,-0.004499,0.249960,0,0);-ms-transform:matrix(0.292118,0.005258,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.292118,0.005258,-0.004499,0.249960,0,0);}
.m73_c01180{transform:matrix(0.300217,0.005104,-0.004249,0.249964,0,0);-ms-transform:matrix(0.300217,0.005104,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.300217,0.005104,-0.004249,0.249964,0,0);}
.mfa_c01180{transform:matrix(0.305436,0.005498,-0.004499,0.249960,0,0);-ms-transform:matrix(0.305436,0.005498,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.305436,0.005498,-0.004499,0.249960,0,0);}
.m134_c01180{transform:matrix(0.307097,0.007370,-0.005998,0.249928,0,0);-ms-transform:matrix(0.307097,0.007370,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.307097,0.007370,-0.005998,0.249928,0,0);}
.m135_c01180{transform:matrix(0.336518,0.008076,-0.005998,0.249928,0,0);-ms-transform:matrix(0.336518,0.008076,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.336518,0.008076,-0.005998,0.249928,0,0);}
.m0_c01180{transform:matrix(0.475065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475065,0.000000,0.000000,0.250000,0,0);}
.v0_c01180{vertical-align:0.000000px;}
.ls0_c01180{letter-spacing:0.000000px;}
.sc__c01180{text-shadow:none;}
.sc0_c01180{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__c01180{-webkit-text-stroke:0px transparent;}
.sc0_c01180{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01180{word-spacing:0.000000px;}
.fc0_c01180{color:transparent;}
.fs5_c01180{font-size:66.009536px;}
.fs1_c01180{font-size:72.008100px;}
.fs4_c01180{font-size:72.010403px;}
.fs7_c01180{font-size:72.011663px;}
.fs2_c01180{font-size:78.008775px;}
.fs8_c01180{font-size:78.012635px;}
.fs9_c01180{font-size:78.022461px;}
.fs3_c01180{font-size:84.009449px;}
.fs6_c01180{font-size:84.013607px;}
.fsa_c01180{font-size:90.025916px;}
.fs0_c01180{font-size:132.000000px;}
.y0_c01180{bottom:0.000000px;}
.y146_c01180{bottom:51.393576px;}
.y145_c01180{bottom:52.254792px;}
.y144_c01180{bottom:54.647568px;}
.y143_c01180{bottom:56.143908px;}
.y142_c01180{bottom:57.358584px;}
.y141_c01180{bottom:60.036012px;}
.y140_c01180{bottom:60.625308px;}
.y13f_c01180{bottom:62.444568px;}
.y13e_c01180{bottom:65.725392px;}
.y13d_c01180{bottom:66.869352px;}
.y13c_c01180{bottom:68.013312px;}
.y13b_c01180{bottom:86.726232px;}
.y13a_c01180{bottom:88.111728px;}
.y139_c01180{bottom:88.581276px;}
.y138_c01180{bottom:90.670692px;}
.y137_c01180{bottom:93.273300px;}
.y136_c01180{bottom:94.652160px;}
.y135_c01180{bottom:96.756924px;}
.y134_c01180{bottom:98.366412px;}
.y133_c01180{bottom:100.413696px;}
.y132_c01180{bottom:125.093028px;}
.y131_c01180{bottom:125.989368px;}
.y130_c01180{bottom:126.351180px;}
.y12f_c01180{bottom:127.764756px;}
.y12e_c01180{bottom:129.014196px;}
.y12d_c01180{bottom:130.228836px;}
.y12c_c01180{bottom:130.959888px;}
.y12b_c01180{bottom:132.546588px;}
.y12a_c01180{bottom:133.074984px;}
.y129_c01180{bottom:133.613292px;}
.y128_c01180{bottom:134.725104px;}
.y127_c01180{bottom:135.525120px;}
.y126_c01180{bottom:157.643988px;}
.y125_c01180{bottom:159.794016px;}
.y124_c01180{bottom:160.339596px;}
.y123_c01180{bottom:162.578004px;}
.y122_c01180{bottom:165.036444px;}
.y121_c01180{bottom:166.128228px;}
.y120_c01180{bottom:166.701348px;}
.y11f_c01180{bottom:168.654552px;}
.y11e_c01180{bottom:171.111168px;}
.y11d_c01180{bottom:171.939012px;}
.y11c_c01180{bottom:174.688284px;}
.y11b_c01180{bottom:196.236912px;}
.y11a_c01180{bottom:197.313528px;}
.y119_c01180{bottom:198.130404px;}
.y118_c01180{bottom:199.725420px;}
.y117_c01180{bottom:200.522856px;}
.y116_c01180{bottom:201.564588px;}
.y115_c01180{bottom:203.184912px;}
.y114_c01180{bottom:205.013928px;}
.y113_c01180{bottom:206.362920px;}
.y112_c01180{bottom:208.987500px;}
.y111_c01180{bottom:274.337016px;}
.y110_c01180{bottom:275.255631px;}
.y10f_c01180{bottom:275.713272px;}
.y10e_c01180{bottom:276.344946px;}
.y10d_c01180{bottom:277.422195px;}
.y10c_c01180{bottom:278.504154px;}
.y10b_c01180{bottom:279.112533px;}
.y10a_c01180{bottom:280.181562px;}
.y109_c01180{bottom:306.639585px;}
.y108_c01180{bottom:307.275576px;}
.y107_c01180{bottom:308.932626px;}
.y106_c01180{bottom:309.989934px;}
.y105_c01180{bottom:310.840452px;}
.y104_c01180{bottom:312.503469px;}
.y103_c01180{bottom:313.176291px;}
.y102_c01180{bottom:315.264459px;}
.y101_c01180{bottom:316.085316px;}
.y100_c01180{bottom:317.989200px;}
.yff_c01180{bottom:339.818361px;}
.yfe_c01180{bottom:341.786754px;}
.yfd_c01180{bottom:343.312758px;}
.yfc_c01180{bottom:343.826613px;}
.yfb_c01180{bottom:344.814534px;}
.yfa_c01180{bottom:345.973845px;}
.yf9_c01180{bottom:346.300722px;}
.yf8_c01180{bottom:347.950038px;}
.yf7_c01180{bottom:348.448521px;}
.yf6_c01180{bottom:349.582740px;}
.yf5_c01180{bottom:372.424266px;}
.yf4_c01180{bottom:373.194960px;}
.yf3_c01180{bottom:375.251079px;}
.yf2_c01180{bottom:377.277897px;}
.yf1_c01180{bottom:378.053235px;}
.yf0_c01180{bottom:380.312964px;}
.yef_c01180{bottom:382.113918px;}
.yee_c01180{bottom:382.865640px;}
.yed_c01180{bottom:384.883383px;}
.yec_c01180{bottom:386.174817px;}
.yeb_c01180{bottom:387.166635px;}
.yea_c01180{bottom:387.931860px;}
.ye9_c01180{bottom:409.811994px;}
.ye8_c01180{bottom:411.073257px;}
.ye7_c01180{bottom:411.683178px;}
.ye6_c01180{bottom:412.549599px;}
.ye5_c01180{bottom:413.180784px;}
.ye4_c01180{bottom:414.196983px;}
.ye3_c01180{bottom:414.643830px;}
.ye2_c01180{bottom:416.327598px;}
.ye1_c01180{bottom:418.827012px;}
.ye0_c01180{bottom:419.678988px;}
.ydf_c01180{bottom:421.145205px;}
.yde_c01180{bottom:447.258726px;}
.ydd_c01180{bottom:448.475103px;}
.ydc_c01180{bottom:449.261586px;}
.ydb_c01180{bottom:451.051443px;}
.yda_c01180{bottom:451.448937px;}
.yd9_c01180{bottom:452.854476px;}
.yd8_c01180{bottom:453.647061px;}
.yd7_c01180{bottom:455.231853px;}
.yd6_c01180{bottom:456.233121px;}
.yd5_c01180{bottom:457.413993px;}
.yd4_c01180{bottom:457.801497px;}
.yd3_c01180{bottom:458.409780px;}
.yd2_c01180{bottom:480.377304px;}
.yd1_c01180{bottom:481.064091px;}
.yd0_c01180{bottom:482.410068px;}
.ycf_c01180{bottom:483.749091px;}
.yce_c01180{bottom:484.845360px;}
.ycd_c01180{bottom:485.298816px;}
.ycc_c01180{bottom:488.387574px;}
.ycb_c01180{bottom:489.705954px;}
.yca_c01180{bottom:490.147029px;}
.yc9_c01180{bottom:493.248168px;}
.yc8_c01180{bottom:518.291652px;}
.yc7_c01180{bottom:518.950842px;}
.yc6_c01180{bottom:519.398277px;}
.yc5_c01180{bottom:522.489060px;}
.yc4_c01180{bottom:523.135572px;}
.yc3_c01180{bottom:524.260113px;}
.yc2_c01180{bottom:524.930415px;}
.yc1_c01180{bottom:526.690842px;}
.yc0_c01180{bottom:527.798142px;}
.ybf_c01180{bottom:529.099659px;}
.ybe_c01180{bottom:529.972656px;}
.ybd_c01180{bottom:553.016397px;}
.ybc_c01180{bottom:555.335319px;}
.ybb_c01180{bottom:556.187754px;}
.yba_c01180{bottom:556.608693px;}
.yb9_c01180{bottom:558.470238px;}
.yb8_c01180{bottom:558.900060px;}
.yb7_c01180{bottom:561.220089px;}
.yb6_c01180{bottom:562.876572px;}
.yb5_c01180{bottom:564.538212px;}
.yb4_c01180{bottom:592.489197px;}
.yb3_c01180{bottom:594.223587px;}
.yb2_c01180{bottom:595.457958px;}
.yb1_c01180{bottom:595.770609px;}
.yb0_c01180{bottom:596.708361px;}
.yaf_c01180{bottom:598.255371px;}
.yae_c01180{bottom:598.860606px;}
.yad_c01180{bottom:599.935035px;}
.yac_c01180{bottom:600.566844px;}
.yab_c01180{bottom:601.803267px;}
.yaa_c01180{bottom:624.414009px;}
.ya9_c01180{bottom:625.459962px;}
.ya8_c01180{bottom:627.015783px;}
.ya7_c01180{bottom:628.026150px;}
.ya6_c01180{bottom:628.614723px;}
.ya5_c01180{bottom:630.213852px;}
.ya4_c01180{bottom:631.379901px;}
.ya3_c01180{bottom:632.002845px;}
.ya2_c01180{bottom:632.994123px;}
.ya1_c01180{bottom:633.766296px;}
.ya0_c01180{bottom:635.560311px;}
.y9f_c01180{bottom:659.148381px;}
.y9e_c01180{bottom:659.893497px;}
.y9d_c01180{bottom:661.596705px;}
.y9c_c01180{bottom:663.268245px;}
.y9b_c01180{bottom:664.040022px;}
.y9a_c01180{bottom:665.706864px;}
.y99_c01180{bottom:666.486861px;}
.y98_c01180{bottom:667.800456px;}
.y97_c01180{bottom:669.287772px;}
.y96_c01180{bottom:669.857412px;}
.y95_c01180{bottom:693.746880px;}
.y94_c01180{bottom:695.643843px;}
.y93_c01180{bottom:696.943101px;}
.y92_c01180{bottom:697.521204px;}
.y91_c01180{bottom:698.084904px;}
.y90_c01180{bottom:699.576984px;}
.y8f_c01180{bottom:701.271405px;}
.y8e_c01180{bottom:701.849427px;}
.y8d_c01180{bottom:703.723023px;}
.y8c_c01180{bottom:705.233409px;}
.y8b_c01180{bottom:730.540917px;}
.y8a_c01180{bottom:732.325029px;}
.y89_c01180{bottom:733.569222px;}
.y88_c01180{bottom:734.100921px;}
.y87_c01180{bottom:735.172863px;}
.y86_c01180{bottom:735.863355px;}
.y85_c01180{bottom:737.285700px;}
.y84_c01180{bottom:737.988570px;}
.y83_c01180{bottom:740.118549px;}
.y82_c01180{bottom:740.628732px;}
.y81_c01180{bottom:741.146730px;}
.y80_c01180{bottom:766.768914px;}
.y7f_c01180{bottom:767.175939px;}
.y7e_c01180{bottom:769.369095px;}
.y7d_c01180{bottom:770.964930px;}
.y7c_c01180{bottom:772.372359px;}
.y7b_c01180{bottom:772.966764px;}
.y7a_c01180{bottom:774.745335px;}
.y79_c01180{bottom:776.524500px;}
.y78_c01180{bottom:809.601133px;}
.y77_c01180{bottom:810.229884px;}
.y76_c01180{bottom:810.862357px;}
.y75_c01180{bottom:812.094799px;}
.y74_c01180{bottom:812.547207px;}
.y73_c01180{bottom:813.772555px;}
.y72_c01180{bottom:838.334154px;}
.y71_c01180{bottom:838.878070px;}
.y70_c01180{bottom:840.101688px;}
.y6f_c01180{bottom:840.650347px;}
.y6e_c01180{bottom:842.966715px;}
.y6d_c01180{bottom:844.180056px;}
.y6c_c01180{bottom:844.888551px;}
.y6b_c01180{bottom:845.438077px;}
.y6a_c01180{bottom:846.838340px;}
.y69_c01180{bottom:848.260052px;}
.y68_c01180{bottom:848.608117px;}
.y67_c01180{bottom:874.597555px;}
.y66_c01180{bottom:874.964781px;}
.y65_c01180{bottom:876.107920px;}
.y64_c01180{bottom:876.672643px;}
.y63_c01180{bottom:878.372014px;}
.y62_c01180{bottom:879.689549px;}
.y61_c01180{bottom:880.249528px;}
.y60_c01180{bottom:881.732200px;}
.y5f_c01180{bottom:882.696508px;}
.y5e_c01180{bottom:883.444500px;}
.y5d_c01180{bottom:913.217648px;}
.y5c_c01180{bottom:914.536313px;}
.y5b_c01180{bottom:915.336510px;}
.y5a_c01180{bottom:915.867840px;}
.y59_c01180{bottom:916.399500px;}
.y58_c01180{bottom:917.323245px;}
.y57_c01180{bottom:917.851350px;}
.y56_c01180{bottom:918.243428px;}
.y55_c01180{bottom:944.699093px;}
.y54_c01180{bottom:945.431805px;}
.y53_c01180{bottom:946.144905px;}
.y52_c01180{bottom:946.593742px;}
.y51_c01180{bottom:946.884960px;}
.y50_c01180{bottom:948.184770px;}
.y4f_c01180{bottom:948.611048px;}
.y4e_c01180{bottom:949.473165px;}
.y4d_c01180{bottom:950.318783px;}
.y4c_c01180{bottom:950.768407px;}
.y4b_c01180{bottom:952.621785px;}
.y4a_c01180{bottom:953.347725px;}
.y49_c01180{bottom:979.707210px;}
.y48_c01180{bottom:980.128620px;}
.y47_c01180{bottom:981.153923px;}
.y46_c01180{bottom:981.571553px;}
.y45_c01180{bottom:982.005848px;}
.y44_c01180{bottom:983.308005px;}
.y43_c01180{bottom:983.718450px;}
.y42_c01180{bottom:984.016178px;}
.y41_c01180{bottom:984.868980px;}
.y40_c01180{bottom:985.444253px;}
.y3f_c01180{bottom:986.307593px;}
.y3e_c01180{bottom:987.024383px;}
.y3d_c01180{bottom:987.732960px;}
.y3c_c01180{bottom:988.449525px;}
.y3b_c01180{bottom:1015.077863px;}
.y3a_c01180{bottom:1015.651748px;}
.y39_c01180{bottom:1017.349883px;}
.y38_c01180{bottom:1018.085198px;}
.y37_c01180{bottom:1019.425815px;}
.y36_c01180{bottom:1019.999205px;}
.y35_c01180{bottom:1022.418803px;}
.y34_c01180{bottom:1022.799075px;}
.y33_c01180{bottom:1024.663027px;}
.y32_c01180{bottom:1025.419823px;}
.y31_c01180{bottom:1025.983073px;}
.y30_c01180{bottom:1051.355182px;}
.y2f_c01180{bottom:1051.737195px;}
.y2e_c01180{bottom:1052.145563px;}
.y2d_c01180{bottom:1052.955788px;}
.y2c_c01180{bottom:1053.348450px;}
.y2b_c01180{bottom:1053.747555px;}
.y2a_c01180{bottom:1054.541332px;}
.y29_c01180{bottom:1055.351985px;}
.y28_c01180{bottom:1055.744198px;}
.y27_c01180{bottom:1056.534960px;}
.y26_c01180{bottom:1056.934110px;}
.y25_c01180{bottom:1057.686480px;}
.y24_c01180{bottom:1058.389335px;}
.y23_c01180{bottom:1086.545708px;}
.y22_c01180{bottom:1087.148835px;}
.y21_c01180{bottom:1087.406168px;}
.y20_c01180{bottom:1088.140215px;}
.y1f_c01180{bottom:1088.508960px;}
.y1e_c01180{bottom:1088.877750px;}
.y1d_c01180{bottom:1090.089173px;}
.y1c_c01180{bottom:1090.451453px;}
.y1b_c01180{bottom:1090.813035px;}
.y1a_c01180{bottom:1091.788020px;}
.y19_c01180{bottom:1092.150120px;}
.y18_c01180{bottom:1092.515798px;}
.y17_c01180{bottom:1093.223445px;}
.y16_c01180{bottom:1122.399165px;}
.y15_c01180{bottom:1123.825275px;}
.y14_c01180{bottom:1124.429078px;}
.y13_c01180{bottom:1126.012943px;}
.y12_c01180{bottom:1126.694003px;}
.y11_c01180{bottom:1127.581703px;}
.y10_c01180{bottom:1128.311692px;}
.yf_c01180{bottom:1128.746033px;}
.ye_c01180{bottom:1129.602885px;}
.yd_c01180{bottom:1131.027938px;}
.yc_c01180{bottom:1158.389985px;}
.yb_c01180{bottom:1158.883365px;}
.ya_c01180{bottom:1160.042700px;}
.y9_c01180{bottom:1161.541268px;}
.y8_c01180{bottom:1162.047698px;}
.y7_c01180{bottom:1162.699073px;}
.y6_c01180{bottom:1163.704148px;}
.y5_c01180{bottom:1164.372443px;}
.y4_c01180{bottom:1164.703958px;}
.y3_c01180{bottom:1166.016855px;}
.y2_c01180{bottom:1166.673000px;}
.y1_c01180{bottom:1217.830500px;}
.h7_c01180{height:66.009536px;}
.h3_c01180{height:72.008100px;}
.h6_c01180{height:72.010403px;}
.h9_c01180{height:72.011663px;}
.h4_c01180{height:78.008775px;}
.ha_c01180{height:78.012635px;}
.hb_c01180{height:78.022461px;}
.h5_c01180{height:84.009449px;}
.h8_c01180{height:84.013607px;}
.hc_c01180{height:90.025916px;}
.h2_c01180{height:132.000000px;}
.h1_c01180{height:1258.500000px;}
.h0_c01180{height:1258.740000px;}
.w0_c01180{width:904.200000px;}
.w1_c01180{width:904.500000px;}
.x0_c01180{left:0.000000px;}
.xbb_c01180{left:157.959081px;}
.x97_c01180{left:160.087410px;}
.x6c_c01180{left:162.278118px;}
.x53_c01180{left:164.533643px;}
.x3d_c01180{left:165.577710px;}
.x1f_c01180{left:166.679227px;}
.xd_c01180{left:168.295425px;}
.x54_c01180{left:186.332025px;}
.xad_c01180{left:193.107756px;}
.x9d_c01180{left:194.220132px;}
.x62_c01180{left:196.602645px;}
.x44_c01180{left:198.277740px;}
.x2a_c01180{left:199.859760px;}
.xd7_c01180{left:201.306744px;}
.x8f_c01180{left:205.997898px;}
.xcc_c01180{left:208.553016px;}
.x9e_c01180{left:215.748132px;}
.x3e_c01180{left:221.475398px;}
.x32_c01180{left:222.557190px;}
.x20_c01180{left:225.238860px;}
.x63_c01180{left:228.447279px;}
.x14_c01180{left:233.408520px;}
.xae_c01180{left:236.204868px;}
.xa7_c01180{left:237.298602px;}
.x45_c01180{left:242.286720px;}
.x2b_c01180{left:244.411432px;}
.x82_c01180{left:249.815583px;}
.x6d_c01180{left:251.106711px;}
.x5b_c01180{left:252.852801px;}
.xd3_c01180{left:254.840556px;}
.xbc_c01180{left:258.145272px;}
.x7b_c01180{left:262.753170px;}
.x15_c01180{left:266.589000px;}
.xc4_c01180{left:268.852500px;}
.x90_c01180{left:271.052049px;}
.x4a_c01180{left:274.635000px;}
.xe_c01180{left:277.902210px;}
.x2_c01180{left:279.517500px;}
.x9f_c01180{left:281.352132px;}
.x74_c01180{left:283.502307px;}
.x5c_c01180{left:285.201959px;}
.x21_c01180{left:287.899672px;}
.xaf_c01180{left:292.362819px;}
.x83_c01180{left:294.919323px;}
.x16_c01180{left:299.530980px;}
.xbd_c01180{left:301.330989px;}
.x7c_c01180{left:305.651670px;}
.xcd_c01180{left:311.765352px;}
.x98_c01180{left:315.117321px;}
.x46_c01180{left:319.273185px;}
.x22_c01180{left:321.111157px;}
.x3_c01180{left:323.260500px;}
.x91_c01180{left:326.400051px;}
.x33_c01180{left:332.184975px;}
.x8a_c01180{left:337.733547px;}
.xf_c01180{left:343.827690px;}
.x2c_c01180{left:354.071647px;}
.xc1_c01180{left:356.515923px;}
.x64_c01180{left:361.617585px;}
.x55_c01180{left:362.657009px;}
.x3f_c01180{left:364.038173px;}
.xd8_c01180{left:365.160936px;}
.x84_c01180{left:371.615331px;}
.x5d_c01180{left:373.232447px;}
.x4b_c01180{left:375.358500px;}
.x10_c01180{left:377.284702px;}
.xb0_c01180{left:380.118435px;}
.x23_c01180{left:387.031627px;}
.x17_c01180{left:388.135290px;}
.x6e_c01180{left:395.310303px;}
.x56_c01180{left:397.012095px;}
.x34_c01180{left:398.642977px;}
.xb7_c01180{left:402.089214px;}
.x99_c01180{left:403.111662px;}
.x65_c01180{left:405.584178px;}
.x75_c01180{left:406.648521px;}
.x47_c01180{left:407.843167px;}
.x4_c01180{left:410.787000px;}
.xa8_c01180{left:413.650416px;}
.x85_c01180{left:414.825936px;}
.x5e_c01180{left:418.380242px;}
.x24_c01180{left:419.680590px;}
.x18_c01180{left:421.042770px;}
.x1_c01180{left:422.820000px;}
.xa0_c01180{left:425.022132px;}
.xd4_c01180{left:431.676264px;}
.x5_c01180{left:432.888000px;}
.xc5_c01180{left:434.418000px;}
.x57_c01180{left:441.247835px;}
.x35_c01180{left:442.895805px;}
.xce_c01180{left:443.919696px;}
.xbe_c01180{left:446.633370px;}
.x92_c01180{left:447.936177px;}
.x19_c01180{left:453.996750px;}
.x7d_c01180{left:460.111170px;}
.x4c_c01180{left:462.574500px;}
.x40_c01180{left:463.690665px;}
.xa1_c01180{left:469.054632px;}
.x5f_c01180{left:472.800000px;}
.x48_c01180{left:474.492660px;}
.x6_c01180{left:477.441000px;}
.xb8_c01180{left:479.332872px;}
.x8b_c01180{left:482.500455px;}
.x25_c01180{left:487.227127px;}
.xcf_c01180{left:489.576444px;}
.xb1_c01180{left:491.090445px;}
.x66_c01180{left:494.439864px;}
.x4d_c01180{left:495.514500px;}
.xd5_c01180{left:497.320980px;}
.xc8_c01180{left:500.573364px;}
.x11_c01180{left:501.734437px;}
.x76_c01180{left:504.669276px;}
.x60_c01180{left:505.822500px;}
.x36_c01180{left:508.551285px;}
.xc2_c01180{left:511.225047px;}
.x58_c01180{left:517.122135px;}
.x2d_c01180{left:518.724698px;}
.x86_c01180{left:525.278874px;}
.x41_c01180{left:529.967145px;}
.x37_c01180{left:531.500483px;}
.xbf_c01180{left:534.188304px;}
.x93_c01180{left:536.491491px;}
.x67_c01180{left:537.635430px;}
.x7_c01180{left:544.446000px;}
.xa2_c01180{left:547.140132px;}
.x7e_c01180{left:548.951670px;}
.x77_c01180{left:550.046586px;}
.x2e_c01180{left:552.449685px;}
.x12_c01180{left:554.140012px;}
.x9a_c01180{left:557.537100px;}
.x38_c01180{left:563.064428px;}
.x1a_c01180{left:564.164865px;}
.xd0_c01180{left:565.513524px;}
.xa3_c01180{left:569.223132px;}
.x4e_c01180{left:573.016500px;}
.xc3_c01180{left:576.847272px;}
.xc6_c01180{left:578.140500px;}
.xa9_c01180{left:579.220419px;}
.x8c_c01180{left:580.501200px;}
.x7f_c01180{left:581.650170px;}
.x6f_c01180{left:582.758178px;}
.x49_c01180{left:584.408610px;}
.x26_c01180{left:586.557082px;}
.x8_c01180{left:587.871000px;}
.xb2_c01180{left:589.372116px;}
.x87_c01180{left:592.297707px;}
.x1b_c01180{left:597.652867px;}
.x8d_c01180{left:602.636295px;}
.x68_c01180{left:604.606833px;}
.xaa_c01180{left:612.452325px;}
.x88_c01180{left:614.668827px;}
.x70_c01180{left:615.908772px;}
.x27_c01180{left:619.236045px;}
.x9_c01180{left:621.633000px;}
.xb3_c01180{left:623.110092px;}
.x1c_c01180{left:631.137870px;}
.x9b_c01180{left:635.046819px;}
.x69_c01180{left:637.813521px;}
.xc9_c01180{left:642.558444px;}
.xd1_c01180{left:643.588500px;}
.x78_c01180{left:648.328341px;}
.x71_c01180{left:649.942893px;}
.xc7_c01180{left:654.772500px;}
.xab_c01180{left:658.086015px;}
.x59_c01180{left:661.852083px;}
.x39_c01180{left:663.277942px;}
.xa4_c01180{left:668.659632px;}
.x4f_c01180{left:672.979500px;}
.x2f_c01180{left:674.541518px;}
.x13_c01180{left:675.934657px;}
.xb9_c01180{left:681.303807px;}
.x42_c01180{left:685.158803px;}
.x28_c01180{left:686.754082px;}
.x94_c01180{left:691.029429px;}
.x3a_c01180{left:696.731955px;}
.x1d_c01180{left:697.878375px;}
.x89_c01180{left:702.834672px;}
.x50_c01180{left:706.198500px;}
.xb4_c01180{left:711.203154px;}
.xa5_c01180{left:712.353132px;}
.x95_c01180{left:713.386119px;}
.x6a_c01180{left:715.604829px;}
.x43_c01180{left:719.682338px;}
.xa_c01180{left:721.537500px;}
.x80_c01180{left:724.216170px;}
.x72_c01180{left:726.375270px;}
.x3b_c01180{left:728.874923px;}
.xca_c01180{left:732.073284px;}
.xd6_c01180{left:743.154192px;}
.x96_c01180{left:746.339931px;}
.x79_c01180{left:748.536150px;}
.x29_c01180{left:752.649052px;}
.xcb_c01180{left:753.867744px;}
.xc0_c01180{left:755.315835px;}
.xac_c01180{left:756.622260px;}
.x8e_c01180{left:769.569798px;}
.x51_c01180{left:773.442000px;}
.x30_c01180{left:774.447525px;}
.x1e_c01180{left:776.147078px;}
.xa6_c01180{left:779.929632px;}
.x81_c01180{left:782.324670px;}
.x7a_c01180{left:792.348933px;}
.x52_c01180{left:795.043500px;}
.xb_c01180{left:798.826500px;}
.xb5_c01180{left:800.590608px;}
.x9c_c01180{left:803.612244px;}
.x5a_c01180{left:806.660057px;}
.x31_c01180{left:808.205512px;}
.xd2_c01180{left:810.567540px;}
.xba_c01180{left:812.499381px;}
.x61_c01180{left:817.125000px;}
.x6b_c01180{left:827.142852px;}
.xc_c01180{left:831.718500px;}
.xb6_c01180{left:834.070584px;}
.x73_c01180{left:837.930768px;}
.x3c_c01180{left:840.125753px;}
@media print{
.v0_c01180{vertical-align:0.000000pt;}
.ls0_c01180{letter-spacing:0.000000pt;}
.ws0_c01180{word-spacing:0.000000pt;}
.fs5_c01180{font-size:58.675143pt;}
.fs1_c01180{font-size:64.007200pt;}
.fs4_c01180{font-size:64.009247pt;}
.fs7_c01180{font-size:64.010367pt;}
.fs2_c01180{font-size:69.341133pt;}
.fs8_c01180{font-size:69.344564pt;}
.fs9_c01180{font-size:69.353298pt;}
.fs3_c01180{font-size:74.675066pt;}
.fs6_c01180{font-size:74.678762pt;}
.fsa_c01180{font-size:80.023037pt;}
.fs0_c01180{font-size:117.333333pt;}
.y0_c01180{bottom:0.000000pt;}
.y146_c01180{bottom:45.683179pt;}
.y145_c01180{bottom:46.448704pt;}
.y144_c01180{bottom:48.575616pt;}
.y143_c01180{bottom:49.905696pt;}
.y142_c01180{bottom:50.985408pt;}
.y141_c01180{bottom:53.365344pt;}
.y140_c01180{bottom:53.889163pt;}
.y13f_c01180{bottom:55.506283pt;}
.y13e_c01180{bottom:58.422571pt;}
.y13d_c01180{bottom:59.439424pt;}
.y13c_c01180{bottom:60.456277pt;}
.y13b_c01180{bottom:77.089984pt;}
.y13a_c01180{bottom:78.321536pt;}
.y139_c01180{bottom:78.738912pt;}
.y138_c01180{bottom:80.596171pt;}
.y137_c01180{bottom:82.909600pt;}
.y136_c01180{bottom:84.135253pt;}
.y135_c01180{bottom:86.006155pt;}
.y134_c01180{bottom:87.436811pt;}
.y133_c01180{bottom:89.256619pt;}
.y132_c01180{bottom:111.193803pt;}
.y131_c01180{bottom:111.990549pt;}
.y130_c01180{bottom:112.312160pt;}
.y12f_c01180{bottom:113.568672pt;}
.y12e_c01180{bottom:114.679285pt;}
.y12d_c01180{bottom:115.758965pt;}
.y12c_c01180{bottom:116.408789pt;}
.y12b_c01180{bottom:117.819189pt;}
.y12a_c01180{bottom:118.288875pt;}
.y129_c01180{bottom:118.767371pt;}
.y128_c01180{bottom:119.755648pt;}
.y127_c01180{bottom:120.466773pt;}
.y126_c01180{bottom:140.127989pt;}
.y125_c01180{bottom:142.039125pt;}
.y124_c01180{bottom:142.524085pt;}
.y123_c01180{bottom:144.513781pt;}
.y122_c01180{bottom:146.699061pt;}
.y121_c01180{bottom:147.669536pt;}
.y120_c01180{bottom:148.178976pt;}
.y11f_c01180{bottom:149.915157pt;}
.y11e_c01180{bottom:152.098816pt;}
.y11d_c01180{bottom:152.834677pt;}
.y11c_c01180{bottom:155.278475pt;}
.y11b_c01180{bottom:174.432811pt;}
.y11a_c01180{bottom:175.389803pt;}
.y119_c01180{bottom:176.115915pt;}
.y118_c01180{bottom:177.533707pt;}
.y117_c01180{bottom:178.242539pt;}
.y116_c01180{bottom:179.168523pt;}
.y115_c01180{bottom:180.608811pt;}
.y114_c01180{bottom:182.234603pt;}
.y113_c01180{bottom:183.433707pt;}
.y112_c01180{bottom:185.766667pt;}
.y111_c01180{bottom:243.855125pt;}
.y110_c01180{bottom:244.671672pt;}
.y10f_c01180{bottom:245.078464pt;}
.y10e_c01180{bottom:245.639952pt;}
.y10d_c01180{bottom:246.597507pt;}
.y10c_c01180{bottom:247.559248pt;}
.y10b_c01180{bottom:248.100029pt;}
.y10a_c01180{bottom:249.050277pt;}
.y109_c01180{bottom:272.568520pt;}
.y108_c01180{bottom:273.133845pt;}
.y107_c01180{bottom:274.606779pt;}
.y106_c01180{bottom:275.546608pt;}
.y105_c01180{bottom:276.302624pt;}
.y104_c01180{bottom:277.780861pt;}
.y103_c01180{bottom:278.378925pt;}
.y102_c01180{bottom:280.235075pt;}
.y101_c01180{bottom:280.964725pt;}
.y100_c01180{bottom:282.657067pt;}
.yff_c01180{bottom:302.060765pt;}
.yfe_c01180{bottom:303.810448pt;}
.yfd_c01180{bottom:305.166896pt;}
.yfc_c01180{bottom:305.623656pt;}
.yfb_c01180{bottom:306.501808pt;}
.yfa_c01180{bottom:307.532307pt;}
.yf9_c01180{bottom:307.822864pt;}
.yf8_c01180{bottom:309.288923pt;}
.yf7_c01180{bottom:309.732019pt;}
.yf6_c01180{bottom:310.740213pt;}
.yf5_c01180{bottom:331.043792pt;}
.yf4_c01180{bottom:331.728853pt;}
.yf3_c01180{bottom:333.556515pt;}
.yf2_c01180{bottom:335.358131pt;}
.yf1_c01180{bottom:336.047320pt;}
.yf0_c01180{bottom:338.055968pt;}
.yef_c01180{bottom:339.656816pt;}
.yee_c01180{bottom:340.325013pt;}
.yed_c01180{bottom:342.118563pt;}
.yec_c01180{bottom:343.266504pt;}
.yeb_c01180{bottom:344.148120pt;}
.yea_c01180{bottom:344.828320pt;}
.ye9_c01180{bottom:364.277328pt;}
.ye8_c01180{bottom:365.398451pt;}
.ye7_c01180{bottom:365.940603pt;}
.ye6_c01180{bottom:366.710755pt;}
.ye5_c01180{bottom:367.271808pt;}
.ye4_c01180{bottom:368.175096pt;}
.ye3_c01180{bottom:368.572293pt;}
.ye2_c01180{bottom:370.068976pt;}
.ye1_c01180{bottom:372.290677pt;}
.ye0_c01180{bottom:373.047989pt;}
.ydf_c01180{bottom:374.351293pt;}
.yde_c01180{bottom:397.563312pt;}
.ydd_c01180{bottom:398.644536pt;}
.ydc_c01180{bottom:399.343632pt;}
.ydb_c01180{bottom:400.934616pt;}
.yda_c01180{bottom:401.287944pt;}
.yd9_c01180{bottom:402.537312pt;}
.yd8_c01180{bottom:403.241832pt;}
.yd7_c01180{bottom:404.650536pt;}
.yd6_c01180{bottom:405.540552pt;}
.yd5_c01180{bottom:406.590216pt;}
.yd4_c01180{bottom:406.934664pt;}
.yd3_c01180{bottom:407.475360pt;}
.yd2_c01180{bottom:427.002048pt;}
.yd1_c01180{bottom:427.612525pt;}
.yd0_c01180{bottom:428.808949pt;}
.ycf_c01180{bottom:429.999192pt;}
.yce_c01180{bottom:430.973653pt;}
.ycd_c01180{bottom:431.376725pt;}
.ycc_c01180{bottom:434.122288pt;}
.ycb_c01180{bottom:435.294181pt;}
.yca_c01180{bottom:435.686248pt;}
.yc9_c01180{bottom:438.442816pt;}
.yc8_c01180{bottom:460.703691pt;}
.yc7_c01180{bottom:461.289637pt;}
.yc6_c01180{bottom:461.687357pt;}
.yc5_c01180{bottom:464.434720pt;}
.yc4_c01180{bottom:465.009397pt;}
.yc3_c01180{bottom:466.008989pt;}
.yc2_c01180{bottom:466.604813pt;}
.yc1_c01180{bottom:468.169637pt;}
.yc0_c01180{bottom:469.153904pt;}
.ybf_c01180{bottom:470.310808pt;}
.ybe_c01180{bottom:471.086805pt;}
.ybd_c01180{bottom:491.570131pt;}
.ybc_c01180{bottom:493.631395pt;}
.ybb_c01180{bottom:494.389115pt;}
.yba_c01180{bottom:494.763283pt;}
.yb9_c01180{bottom:496.417989pt;}
.yb8_c01180{bottom:496.800053pt;}
.yb7_c01180{bottom:498.862301pt;}
.yb6_c01180{bottom:500.334731pt;}
.yb5_c01180{bottom:501.811744pt;}
.yb4_c01180{bottom:526.657064pt;}
.yb3_c01180{bottom:528.198744pt;}
.yb2_c01180{bottom:529.295963pt;}
.yb1_c01180{bottom:529.573875pt;}
.yb0_c01180{bottom:530.407432pt;}
.yaf_c01180{bottom:531.782552pt;}
.yae_c01180{bottom:532.320539pt;}
.yad_c01180{bottom:533.275587pt;}
.yac_c01180{bottom:533.837195pt;}
.yab_c01180{bottom:534.936237pt;}
.yaa_c01180{bottom:555.034675pt;}
.ya9_c01180{bottom:555.964411pt;}
.ya8_c01180{bottom:557.347363pt;}
.ya7_c01180{bottom:558.245467pt;}
.ya6_c01180{bottom:558.768643pt;}
.ya5_c01180{bottom:560.190091pt;}
.ya4_c01180{bottom:561.226579pt;}
.ya3_c01180{bottom:561.780307pt;}
.ya2_c01180{bottom:562.661443pt;}
.ya1_c01180{bottom:563.347819pt;}
.ya0_c01180{bottom:564.942499pt;}
.y9f_c01180{bottom:585.909672pt;}
.y9e_c01180{bottom:586.571997pt;}
.y9d_c01180{bottom:588.085960pt;}
.y9c_c01180{bottom:589.571773pt;}
.y9b_c01180{bottom:590.257797pt;}
.y9a_c01180{bottom:591.739435pt;}
.y99_c01180{bottom:592.432765pt;}
.y98_c01180{bottom:593.600405pt;}
.y97_c01180{bottom:594.922464pt;}
.y96_c01180{bottom:595.428811pt;}
.y95_c01180{bottom:616.663893pt;}
.y94_c01180{bottom:618.350083pt;}
.y93_c01180{bottom:619.504979pt;}
.y92_c01180{bottom:620.018848pt;}
.y91_c01180{bottom:620.519915pt;}
.y90_c01180{bottom:621.846208pt;}
.y8f_c01180{bottom:623.352360pt;}
.y8e_c01180{bottom:623.866157pt;}
.y8d_c01180{bottom:625.531576pt;}
.y8c_c01180{bottom:626.874141pt;}
.y8b_c01180{bottom:649.369704pt;}
.y8a_c01180{bottom:650.955581pt;}
.y89_c01180{bottom:652.061531pt;}
.y88_c01180{bottom:652.534152pt;}
.y87_c01180{bottom:653.486989pt;}
.y86_c01180{bottom:654.100760pt;}
.y85_c01180{bottom:655.365067pt;}
.y84_c01180{bottom:655.989840pt;}
.y83_c01180{bottom:657.883155pt;}
.y82_c01180{bottom:658.336651pt;}
.y81_c01180{bottom:658.797093pt;}
.y80_c01180{bottom:681.572368pt;}
.y7f_c01180{bottom:681.934168pt;}
.y7e_c01180{bottom:683.883640pt;}
.y7d_c01180{bottom:685.302160pt;}
.y7c_c01180{bottom:686.553208pt;}
.y7b_c01180{bottom:687.081568pt;}
.y7a_c01180{bottom:688.662520pt;}
.y79_c01180{bottom:690.244000pt;}
.y78_c01180{bottom:719.645452pt;}
.y77_c01180{bottom:720.204341pt;}
.y76_c01180{bottom:720.766540pt;}
.y75_c01180{bottom:721.862044pt;}
.y74_c01180{bottom:722.264184pt;}
.y73_c01180{bottom:723.353383pt;}
.y72_c01180{bottom:745.185915pt;}
.y71_c01180{bottom:745.669396pt;}
.y70_c01180{bottom:746.757056pt;}
.y6f_c01180{bottom:747.244753pt;}
.y6e_c01180{bottom:749.303747pt;}
.y6d_c01180{bottom:750.382272pt;}
.y6c_c01180{bottom:751.012045pt;}
.y6b_c01180{bottom:751.500513pt;}
.y6a_c01180{bottom:752.745191pt;}
.y69_c01180{bottom:754.008935pt;}
.y68_c01180{bottom:754.318327pt;}
.y67_c01180{bottom:777.420049pt;}
.y66_c01180{bottom:777.746472pt;}
.y65_c01180{bottom:778.762596pt;}
.y64_c01180{bottom:779.264572pt;}
.y63_c01180{bottom:780.775124pt;}
.y62_c01180{bottom:781.946265pt;}
.y61_c01180{bottom:782.444025pt;}
.y60_c01180{bottom:783.761956pt;}
.y5f_c01180{bottom:784.619119pt;}
.y5e_c01180{bottom:785.284000pt;}
.y5d_c01180{bottom:811.749020pt;}
.y5c_c01180{bottom:812.921167pt;}
.y5b_c01180{bottom:813.632453pt;}
.y5a_c01180{bottom:814.104747pt;}
.y59_c01180{bottom:814.577333pt;}
.y58_c01180{bottom:815.398440pt;}
.y57_c01180{bottom:815.867867pt;}
.y56_c01180{bottom:816.216380pt;}
.y55_c01180{bottom:839.732527pt;}
.y54_c01180{bottom:840.383827pt;}
.y53_c01180{bottom:841.017693pt;}
.y52_c01180{bottom:841.416660pt;}
.y51_c01180{bottom:841.675520pt;}
.y50_c01180{bottom:842.830907pt;}
.y4f_c01180{bottom:843.209820pt;}
.y4e_c01180{bottom:843.976147pt;}
.y4d_c01180{bottom:844.727807pt;}
.y4c_c01180{bottom:845.127473pt;}
.y4b_c01180{bottom:846.774920pt;}
.y4a_c01180{bottom:847.420200pt;}
.y49_c01180{bottom:870.850853pt;}
.y48_c01180{bottom:871.225440pt;}
.y47_c01180{bottom:872.136820pt;}
.y46_c01180{bottom:872.508047pt;}
.y45_c01180{bottom:872.894087pt;}
.y44_c01180{bottom:874.051560pt;}
.y43_c01180{bottom:874.416400pt;}
.y42_c01180{bottom:874.681047pt;}
.y41_c01180{bottom:875.439093pt;}
.y40_c01180{bottom:875.950447pt;}
.y3f_c01180{bottom:876.717860pt;}
.y3e_c01180{bottom:877.355007pt;}
.y3d_c01180{bottom:877.984853pt;}
.y3c_c01180{bottom:878.621800pt;}
.y3b_c01180{bottom:902.291433pt;}
.y3a_c01180{bottom:902.801553pt;}
.y39_c01180{bottom:904.311007pt;}
.y38_c01180{bottom:904.964620pt;}
.y37_c01180{bottom:906.156280pt;}
.y36_c01180{bottom:906.665960pt;}
.y35_c01180{bottom:908.816713pt;}
.y34_c01180{bottom:909.154733pt;}
.y33_c01180{bottom:910.811580pt;}
.y32_c01180{bottom:911.484287pt;}
.y31_c01180{bottom:911.984953pt;}
.y30_c01180{bottom:934.537940pt;}
.y2f_c01180{bottom:934.877507pt;}
.y2e_c01180{bottom:935.240500pt;}
.y2d_c01180{bottom:935.960700pt;}
.y2c_c01180{bottom:936.309733pt;}
.y2b_c01180{bottom:936.664493pt;}
.y2a_c01180{bottom:937.370073pt;}
.y29_c01180{bottom:938.090653pt;}
.y28_c01180{bottom:938.439287pt;}
.y27_c01180{bottom:939.142187pt;}
.y26_c01180{bottom:939.496987pt;}
.y25_c01180{bottom:940.165760pt;}
.y24_c01180{bottom:940.790520pt;}
.y23_c01180{bottom:965.818407pt;}
.y22_c01180{bottom:966.354520pt;}
.y21_c01180{bottom:966.583260pt;}
.y20_c01180{bottom:967.235747pt;}
.y1f_c01180{bottom:967.563520pt;}
.y1e_c01180{bottom:967.891333pt;}
.y1d_c01180{bottom:968.968153pt;}
.y1c_c01180{bottom:969.290180pt;}
.y1b_c01180{bottom:969.611587pt;}
.y1a_c01180{bottom:970.478240pt;}
.y19_c01180{bottom:970.800107pt;}
.y18_c01180{bottom:971.125153pt;}
.y17_c01180{bottom:971.754173pt;}
.y16_c01180{bottom:997.688147pt;}
.y15_c01180{bottom:998.955800pt;}
.y14_c01180{bottom:999.492513pt;}
.y13_c01180{bottom:1000.900393pt;}
.y12_c01180{bottom:1001.505780pt;}
.y11_c01180{bottom:1002.294847pt;}
.y10_c01180{bottom:1002.943727pt;}
.yf_c01180{bottom:1003.329807pt;}
.ye_c01180{bottom:1004.091453pt;}
.yd_c01180{bottom:1005.358167pt;}
.yc_c01180{bottom:1029.679987pt;}
.yb_c01180{bottom:1030.118547pt;}
.ya_c01180{bottom:1031.149067pt;}
.y9_c01180{bottom:1032.481127pt;}
.y8_c01180{bottom:1032.931287pt;}
.y7_c01180{bottom:1033.510287pt;}
.y6_c01180{bottom:1034.403687pt;}
.y5_c01180{bottom:1034.997727pt;}
.y4_c01180{bottom:1035.292407pt;}
.y3_c01180{bottom:1036.459427pt;}
.y2_c01180{bottom:1037.042667pt;}
.y1_c01180{bottom:1082.516000pt;}
.h7_c01180{height:58.675143pt;}
.h3_c01180{height:64.007200pt;}
.h6_c01180{height:64.009247pt;}
.h9_c01180{height:64.010367pt;}
.h4_c01180{height:69.341133pt;}
.ha_c01180{height:69.344564pt;}
.hb_c01180{height:69.353298pt;}
.h5_c01180{height:74.675066pt;}
.h8_c01180{height:74.678762pt;}
.hc_c01180{height:80.023037pt;}
.h2_c01180{height:117.333333pt;}
.h1_c01180{height:1118.666667pt;}
.h0_c01180{height:1118.880000pt;}
.w0_c01180{width:803.733333pt;}
.w1_c01180{width:804.000000pt;}
.x0_c01180{left:0.000000pt;}
.xbb_c01180{left:140.408072pt;}
.x97_c01180{left:142.299920pt;}
.x6c_c01180{left:144.247216pt;}
.x53_c01180{left:146.252127pt;}
.x3d_c01180{left:147.180187pt;}
.x1f_c01180{left:148.159313pt;}
.xd_c01180{left:149.595933pt;}
.x54_c01180{left:165.628467pt;}
.xad_c01180{left:171.651339pt;}
.x9d_c01180{left:172.640117pt;}
.x62_c01180{left:174.757907pt;}
.x44_c01180{left:176.246880pt;}
.x2a_c01180{left:177.653120pt;}
.xd7_c01180{left:178.939328pt;}
.x8f_c01180{left:183.109243pt;}
.xcc_c01180{left:185.380459pt;}
.x9e_c01180{left:191.776117pt;}
.x3e_c01180{left:196.867020pt;}
.x32_c01180{left:197.828613pt;}
.x20_c01180{left:200.212320pt;}
.x63_c01180{left:203.064248pt;}
.x14_c01180{left:207.474240pt;}
.xae_c01180{left:209.959883pt;}
.xa7_c01180{left:210.932091pt;}
.x45_c01180{left:215.365973pt;}
.x2b_c01180{left:217.254607pt;}
.x82_c01180{left:222.058296pt;}
.x6d_c01180{left:223.205965pt;}
.x5b_c01180{left:224.758045pt;}
.xd3_c01180{left:226.524939pt;}
.xbc_c01180{left:229.462464pt;}
.x7b_c01180{left:233.558373pt;}
.x15_c01180{left:236.968000pt;}
.xc4_c01180{left:238.980000pt;}
.x90_c01180{left:240.935155pt;}
.x4a_c01180{left:244.120000pt;}
.xe_c01180{left:247.024187pt;}
.x2_c01180{left:248.460000pt;}
.x9f_c01180{left:250.090784pt;}
.x74_c01180{left:252.002051pt;}
.x5c_c01180{left:253.512852pt;}
.x21_c01180{left:255.910820pt;}
.xaf_c01180{left:259.878061pt;}
.x83_c01180{left:262.150509pt;}
.x16_c01180{left:266.249760pt;}
.xbd_c01180{left:267.849768pt;}
.x7c_c01180{left:271.690373pt;}
.xcd_c01180{left:277.124757pt;}
.x98_c01180{left:280.104285pt;}
.x46_c01180{left:283.798387pt;}
.x22_c01180{left:285.432140pt;}
.x3_c01180{left:287.342667pt;}
.x91_c01180{left:290.133379pt;}
.x33_c01180{left:295.275533pt;}
.x8a_c01180{left:300.207597pt;}
.xf_c01180{left:305.624613pt;}
.x2c_c01180{left:314.730353pt;}
.xc1_c01180{left:316.903043pt;}
.x64_c01180{left:321.437853pt;}
.x55_c01180{left:322.361785pt;}
.x3f_c01180{left:323.589487pt;}
.xd8_c01180{left:324.587499pt;}
.x84_c01180{left:330.324739pt;}
.x5d_c01180{left:331.762175pt;}
.x4b_c01180{left:333.652000pt;}
.x10_c01180{left:335.364180pt;}
.xb0_c01180{left:337.883053pt;}
.x23_c01180{left:344.028113pt;}
.x17_c01180{left:345.009147pt;}
.x6e_c01180{left:351.386936pt;}
.x56_c01180{left:352.899640pt;}
.x34_c01180{left:354.349313pt;}
.xb7_c01180{left:357.412635pt;}
.x99_c01180{left:358.321477pt;}
.x65_c01180{left:360.519269pt;}
.x75_c01180{left:361.465352pt;}
.x47_c01180{left:362.527260pt;}
.x4_c01180{left:365.144000pt;}
.xa8_c01180{left:367.689259pt;}
.x85_c01180{left:368.734165pt;}
.x5e_c01180{left:371.893548pt;}
.x24_c01180{left:373.049413pt;}
.x18_c01180{left:374.260240pt;}
.x1_c01180{left:375.840000pt;}
.xa0_c01180{left:377.797451pt;}
.xd4_c01180{left:383.712235pt;}
.x5_c01180{left:384.789333pt;}
.xc5_c01180{left:386.149333pt;}
.x57_c01180{left:392.220297pt;}
.x35_c01180{left:393.685160pt;}
.xce_c01180{left:394.595285pt;}
.xbe_c01180{left:397.007440pt;}
.x92_c01180{left:398.165491pt;}
.x19_c01180{left:403.552667pt;}
.x7d_c01180{left:408.987707pt;}
.x4c_c01180{left:411.177333pt;}
.x40_c01180{left:412.169480pt;}
.xa1_c01180{left:416.937451pt;}
.x5f_c01180{left:420.266667pt;}
.x48_c01180{left:421.771253pt;}
.x6_c01180{left:424.392000pt;}
.xb8_c01180{left:426.073664pt;}
.x8b_c01180{left:428.889293pt;}
.x25_c01180{left:433.090780pt;}
.xcf_c01180{left:435.179061pt;}
.xb1_c01180{left:436.524840pt;}
.x66_c01180{left:439.502101pt;}
.x4d_c01180{left:440.457333pt;}
.xd5_c01180{left:442.063093pt;}
.xc8_c01180{left:444.954101pt;}
.x11_c01180{left:445.986167pt;}
.x76_c01180{left:448.594912pt;}
.x60_c01180{left:449.620000pt;}
.x36_c01180{left:452.045587pt;}
.xc2_c01180{left:454.422264pt;}
.x58_c01180{left:459.664120pt;}
.x2d_c01180{left:461.088620pt;}
.x86_c01180{left:466.914555pt;}
.x41_c01180{left:471.081907pt;}
.x37_c01180{left:472.444873pt;}
.xbf_c01180{left:474.834048pt;}
.x93_c01180{left:476.881325pt;}
.x67_c01180{left:477.898160pt;}
.x7_c01180{left:483.952000pt;}
.xa2_c01180{left:486.346784pt;}
.x7e_c01180{left:487.957040pt;}
.x77_c01180{left:488.930299pt;}
.x2e_c01180{left:491.066387pt;}
.x12_c01180{left:492.568900pt;}
.x9a_c01180{left:495.588533pt;}
.x38_c01180{left:500.501713pt;}
.x1a_c01180{left:501.479880pt;}
.xd0_c01180{left:502.678688pt;}
.xa3_c01180{left:505.976117pt;}
.x4e_c01180{left:509.348000pt;}
.xc3_c01180{left:512.753131pt;}
.xc6_c01180{left:513.902667pt;}
.xa9_c01180{left:514.862595pt;}
.x8c_c01180{left:516.001067pt;}
.x7f_c01180{left:517.022373pt;}
.x6f_c01180{left:518.007269pt;}
.x49_c01180{left:519.474320pt;}
.x26_c01180{left:521.384073pt;}
.x8_c01180{left:522.552000pt;}
.xb2_c01180{left:523.886325pt;}
.x87_c01180{left:526.486851pt;}
.x1b_c01180{left:531.246993pt;}
.x8d_c01180{left:535.676707pt;}
.x68_c01180{left:537.428296pt;}
.xaa_c01180{left:544.402067pt;}
.x88_c01180{left:546.372291pt;}
.x70_c01180{left:547.474464pt;}
.x27_c01180{left:550.432040pt;}
.x9_c01180{left:552.562667pt;}
.xb3_c01180{left:553.875637pt;}
.x1c_c01180{left:561.011440pt;}
.x9b_c01180{left:564.486061pt;}
.x69_c01180{left:566.945352pt;}
.xc9_c01180{left:571.163061pt;}
.xd1_c01180{left:572.078667pt;}
.x78_c01180{left:576.291859pt;}
.x71_c01180{left:577.727016pt;}
.xc7_c01180{left:582.020000pt;}
.xab_c01180{left:584.965347pt;}
.x59_c01180{left:588.312963pt;}
.x39_c01180{left:589.580393pt;}
.xa4_c01180{left:594.364117pt;}
.x4f_c01180{left:598.204000pt;}
.x2f_c01180{left:599.592460pt;}
.x13_c01180{left:600.830807pt;}
.xb9_c01180{left:605.603384pt;}
.x42_c01180{left:609.030047pt;}
.x28_c01180{left:610.448073pt;}
.x94_c01180{left:614.248381pt;}
.x3a_c01180{left:619.317293pt;}
.x1d_c01180{left:620.336333pt;}
.x89_c01180{left:624.741931pt;}
.x50_c01180{left:627.732000pt;}
.xb4_c01180{left:632.180581pt;}
.xa5_c01180{left:633.202784pt;}
.x95_c01180{left:634.120995pt;}
.x6a_c01180{left:636.093181pt;}
.x43_c01180{left:639.717633pt;}
.xa_c01180{left:641.366667pt;}
.x80_c01180{left:643.747707pt;}
.x72_c01180{left:645.666907pt;}
.x3b_c01180{left:647.888820pt;}
.xca_c01180{left:650.731808pt;}
.xd6_c01180{left:660.581504pt;}
.x96_c01180{left:663.413272pt;}
.x79_c01180{left:665.365467pt;}
.x29_c01180{left:669.021380pt;}
.xcb_c01180{left:670.104661pt;}
.xc0_c01180{left:671.391853pt;}
.xac_c01180{left:672.553120pt;}
.x8e_c01180{left:684.062043pt;}
.x51_c01180{left:687.504000pt;}
.x30_c01180{left:688.397800pt;}
.x1e_c01180{left:689.908513pt;}
.xa6_c01180{left:693.270784pt;}
.x81_c01180{left:695.399707pt;}
.x7a_c01180{left:704.310163pt;}
.x52_c01180{left:706.705333pt;}
.xb_c01180{left:710.068000pt;}
.xb5_c01180{left:711.636096pt;}
.x9c_c01180{left:714.321995pt;}
.x5a_c01180{left:717.031161pt;}
.x31_c01180{left:718.404900pt;}
.xd2_c01180{left:720.504480pt;}
.xba_c01180{left:722.221672pt;}
.x61_c01180{left:726.333333pt;}
.x6b_c01180{left:735.238091pt;}
.xc_c01180{left:739.305333pt;}
.xb6_c01180{left:741.396075pt;}
.x73_c01180{left:744.827349pt;}
.x3c_c01180{left:746.778447pt;}
}





/* 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_c01181 {
    display:none;
  }
  .loading-indicator_c01181.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01181 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_c01181 { 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_c01181" -> "#page-container .classname_c01181")
 */
.pf_c01181 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01181 { /* 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_c01181.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01181 { /* 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_c01181 { /* 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_c01181 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01181 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01181 {overflow:visible;}
  }
}
.c_c01181 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01181 { /* 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_c01181:after { /* webkit #35443 */
  content: '';
}
.t_c01181:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01181 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 */
}
.__c01181 { /* 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_c01181 { /* info for Javascript */
  display:none;
}
.l_c01181 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01181 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01181 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01181: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_c01181 {
    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_c01181.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01181.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_c01181 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01181{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01181;src:url('chunks/assets/font_b11a17f404e7258299fdf971.woff2')format("woff");}.ff1_c01181{font-family:ff1_c01181;line-height:1.000000;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;}
.m0_c01181{transform:matrix(0.009545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.009545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.009545,0.000000,0.000000,0.250000,0,0);}
.ma3_c01181{transform:matrix(0.010164,0.000132,-0.003250,0.249979,0,0);-ms-transform:matrix(0.010164,0.000132,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.010164,0.000132,-0.003250,0.249979,0,0);}
.m2f_c01181{transform:matrix(0.010815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.010815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.010815,0.000000,0.000000,0.250000,0,0);}
.m7_c01181{transform:matrix(0.014255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.014255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.014255,0.000000,0.000000,0.250000,0,0);}
.m46_c01181{transform:matrix(0.124111,0.003475,-0.006997,0.249902,0,0);-ms-transform:matrix(0.124111,0.003475,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.124111,0.003475,-0.006997,0.249902,0,0);}
.m7e_c01181{transform:matrix(0.130915,-0.001178,0.002250,0.249990,0,0);-ms-transform:matrix(0.130915,-0.001178,0.002250,0.249990,0,0);-webkit-transform:matrix(0.130915,-0.001178,0.002250,0.249990,0,0);}
.m8_c01181{transform:matrix(0.135795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135795,0.000000,0.000000,0.250000,0,0);}
.m74_c01181{transform:matrix(0.138514,-0.001247,0.002250,0.249990,0,0);-ms-transform:matrix(0.138514,-0.001247,0.002250,0.249990,0,0);-webkit-transform:matrix(0.138514,-0.001247,0.002250,0.249990,0,0);}
.m40_c01181{transform:matrix(0.149276,0.004180,-0.006997,0.249902,0,0);-ms-transform:matrix(0.149276,0.004180,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.149276,0.004180,-0.006997,0.249902,0,0);}
.m3e_c01181{transform:matrix(0.156774,0.004390,-0.006997,0.249902,0,0);-ms-transform:matrix(0.156774,0.004390,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.156774,0.004390,-0.006997,0.249902,0,0);}
.m1f_c01181{transform:matrix(0.158400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158400,0.000000,0.000000,0.250000,0,0);}
.m3d_c01181{transform:matrix(0.165485,0.004634,-0.006997,0.249902,0,0);-ms-transform:matrix(0.165485,0.004634,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.165485,0.004634,-0.006997,0.249902,0,0);}
.m3f_c01181{transform:matrix(0.179924,0.005038,-0.006997,0.249902,0,0);-ms-transform:matrix(0.179924,0.005038,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.179924,0.005038,-0.006997,0.249902,0,0);}
.m57_c01181{transform:matrix(0.181132,0.002174,-0.003000,0.249982,0,0);-ms-transform:matrix(0.181132,0.002174,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.181132,0.002174,-0.003000,0.249982,0,0);}
.m22_c01181{transform:matrix(0.183355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183355,0.000000,0.000000,0.250000,0,0);}
.m73_c01181{transform:matrix(0.184138,-0.001657,0.002250,0.249990,0,0);-ms-transform:matrix(0.184138,-0.001657,0.002250,0.249990,0,0);-webkit-transform:matrix(0.184138,-0.001657,0.002250,0.249990,0,0);}
.m23_c01181{transform:matrix(0.185780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185780,0.000000,0.000000,0.250000,0,0);}
.ma2_c01181{transform:matrix(0.187019,0.002431,-0.003250,0.249979,0,0);-ms-transform:matrix(0.187019,0.002431,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.187019,0.002431,-0.003250,0.249979,0,0);}
.m24_c01181{transform:matrix(0.187235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187235,0.000000,0.000000,0.250000,0,0);}
.m80_c01181{transform:matrix(0.188344,0.002448,-0.003250,0.249979,0,0);-ms-transform:matrix(0.188344,0.002448,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.188344,0.002448,-0.003250,0.249979,0,0);}
.m41_c01181{transform:matrix(0.191600,0.005365,-0.006997,0.249902,0,0);-ms-transform:matrix(0.191600,0.005365,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.191600,0.005365,-0.006997,0.249902,0,0);}
.m7f_c01181{transform:matrix(0.192449,0.002502,-0.003250,0.249979,0,0);-ms-transform:matrix(0.192449,0.002502,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.192449,0.002502,-0.003250,0.249979,0,0);}
.m42_c01181{transform:matrix(0.192719,0.005396,-0.006997,0.249902,0,0);-ms-transform:matrix(0.192719,0.005396,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.192719,0.005396,-0.006997,0.249902,0,0);}
.mb_c01181{transform:matrix(0.193195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193195,0.000000,0.000000,0.250000,0,0);}
.m6c_c01181{transform:matrix(0.198227,-0.001784,0.002250,0.249990,0,0);-ms-transform:matrix(0.198227,-0.001784,0.002250,0.249990,0,0);-webkit-transform:matrix(0.198227,-0.001784,0.002250,0.249990,0,0);}
.m7a_c01181{transform:matrix(0.198557,-0.001787,0.002250,0.249990,0,0);-ms-transform:matrix(0.198557,-0.001787,0.002250,0.249990,0,0);-webkit-transform:matrix(0.198557,-0.001787,0.002250,0.249990,0,0);}
.m3_c01181{transform:matrix(0.198725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198725,0.000000,0.000000,0.250000,0,0);}
.m94_c01181{transform:matrix(0.198888,0.002586,-0.003250,0.249979,0,0);-ms-transform:matrix(0.198888,0.002586,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.198888,0.002586,-0.003250,0.249979,0,0);}
.m31_c01181{transform:matrix(0.203660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203660,0.000000,0.000000,0.250000,0,0);}
.m6b_c01181{transform:matrix(0.204385,0.002044,-0.002500,0.249988,0,0);-ms-transform:matrix(0.204385,0.002044,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.204385,0.002044,-0.002500,0.249988,0,0);}
.m90_c01181{transform:matrix(0.206078,0.002679,-0.003250,0.249979,0,0);-ms-transform:matrix(0.206078,0.002679,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.206078,0.002679,-0.003250,0.249979,0,0);}
.m4c_c01181{transform:matrix(0.206585,0.002066,-0.002500,0.249988,0,0);-ms-transform:matrix(0.206585,0.002066,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.206585,0.002066,-0.002500,0.249988,0,0);}
.m8a_c01181{transform:matrix(0.209312,0.002721,-0.003250,0.249979,0,0);-ms-transform:matrix(0.209312,0.002721,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.209312,0.002721,-0.003250,0.249979,0,0);}
.m9a_c01181{transform:matrix(0.209917,0.002729,-0.003250,0.249979,0,0);-ms-transform:matrix(0.209917,0.002729,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.209917,0.002729,-0.003250,0.249979,0,0);}
.m9c_c01181{transform:matrix(0.210562,0.002737,-0.003250,0.249979,0,0);-ms-transform:matrix(0.210562,0.002737,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.210562,0.002737,-0.003250,0.249979,0,0);}
.m64_c01181{transform:matrix(0.216459,0.002165,-0.002500,0.249988,0,0);-ms-transform:matrix(0.216459,0.002165,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.216459,0.002165,-0.002500,0.249988,0,0);}
.m4b_c01181{transform:matrix(0.216629,0.002166,-0.002500,0.249988,0,0);-ms-transform:matrix(0.216629,0.002166,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.216629,0.002166,-0.002500,0.249988,0,0);}
.m38_c01181{transform:matrix(0.218835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218835,0.000000,0.000000,0.250000,0,0);}
.m7c_c01181{transform:matrix(0.218851,-0.001970,0.002250,0.249990,0,0);-ms-transform:matrix(0.218851,-0.001970,0.002250,0.249990,0,0);-webkit-transform:matrix(0.218851,-0.001970,0.002250,0.249990,0,0);}
.m71_c01181{transform:matrix(0.220866,-0.001988,0.002250,0.249990,0,0);-ms-transform:matrix(0.220866,-0.001988,0.002250,0.249990,0,0);-webkit-transform:matrix(0.220866,-0.001988,0.002250,0.249990,0,0);}
.m49_c01181{transform:matrix(0.222129,0.002221,-0.002500,0.249988,0,0);-ms-transform:matrix(0.222129,0.002221,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.222129,0.002221,-0.002500,0.249988,0,0);}
.m4a_c01181{transform:matrix(0.223209,0.002232,-0.002500,0.249988,0,0);-ms-transform:matrix(0.223209,0.002232,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.223209,0.002232,-0.002500,0.249988,0,0);}
.m4d_c01181{transform:matrix(0.223874,0.002239,-0.002500,0.249988,0,0);-ms-transform:matrix(0.223874,0.002239,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.223874,0.002239,-0.002500,0.249988,0,0);}
.m83_c01181{transform:matrix(0.224386,0.002917,-0.003250,0.249979,0,0);-ms-transform:matrix(0.224386,0.002917,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.224386,0.002917,-0.003250,0.249979,0,0);}
.m63_c01181{transform:matrix(0.226809,0.002268,-0.002500,0.249988,0,0);-ms-transform:matrix(0.226809,0.002268,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.226809,0.002268,-0.002500,0.249988,0,0);}
.m10_c01181{transform:matrix(0.226955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226955,0.000000,0.000000,0.250000,0,0);}
.m86_c01181{transform:matrix(0.227406,0.002956,-0.003250,0.249979,0,0);-ms-transform:matrix(0.227406,0.002956,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.227406,0.002956,-0.003250,0.249979,0,0);}
.m39_c01181{transform:matrix(0.227596,0.006373,-0.006997,0.249902,0,0);-ms-transform:matrix(0.227596,0.006373,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.227596,0.006373,-0.006997,0.249902,0,0);}
.m5f_c01181{transform:matrix(0.227899,0.002735,-0.003000,0.249982,0,0);-ms-transform:matrix(0.227899,0.002735,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.227899,0.002735,-0.003000,0.249982,0,0);}
.m85_c01181{transform:matrix(0.228836,0.002975,-0.003250,0.249979,0,0);-ms-transform:matrix(0.228836,0.002975,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.228836,0.002975,-0.003250,0.249979,0,0);}
.m27_c01181{transform:matrix(0.228845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228845,0.000000,0.000000,0.250000,0,0);}
.m93_c01181{transform:matrix(0.230021,0.002990,-0.003250,0.249979,0,0);-ms-transform:matrix(0.230021,0.002990,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.230021,0.002990,-0.003250,0.249979,0,0);}
.m33_c01181{transform:matrix(0.231670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231670,0.000000,0.000000,0.250000,0,0);}
.m77_c01181{transform:matrix(0.231831,-0.002086,0.002250,0.249990,0,0);-ms-transform:matrix(0.231831,-0.002086,0.002250,0.249990,0,0);-webkit-transform:matrix(0.231831,-0.002086,0.002250,0.249990,0,0);}
.ma5_c01181{transform:matrix(0.231925,0.003015,-0.003250,0.249979,0,0);-ms-transform:matrix(0.231925,0.003015,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.231925,0.003015,-0.003250,0.249979,0,0);}
.m87_c01181{transform:matrix(0.233575,0.003036,-0.003250,0.249979,0,0);-ms-transform:matrix(0.233575,0.003036,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.233575,0.003036,-0.003250,0.249979,0,0);}
.m9b_c01181{transform:matrix(0.234260,0.003045,-0.003250,0.249979,0,0);-ms-transform:matrix(0.234260,0.003045,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.234260,0.003045,-0.003250,0.249979,0,0);}
.m95_c01181{transform:matrix(0.234560,0.003049,-0.003250,0.249979,0,0);-ms-transform:matrix(0.234560,0.003049,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.234560,0.003049,-0.003250,0.249979,0,0);}
.m2_c01181{transform:matrix(0.234985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234985,0.000000,0.000000,0.250000,0,0);}
.m9f_c01181{transform:matrix(0.235940,0.003067,-0.003250,0.249979,0,0);-ms-transform:matrix(0.235940,0.003067,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.235940,0.003067,-0.003250,0.249979,0,0);}
.m9d_c01181{transform:matrix(0.238190,0.003096,-0.003250,0.249979,0,0);-ms-transform:matrix(0.238190,0.003096,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.238190,0.003096,-0.003250,0.249979,0,0);}
.m79_c01181{transform:matrix(0.238245,-0.002144,0.002250,0.249990,0,0);-ms-transform:matrix(0.238245,-0.002144,0.002250,0.249990,0,0);-webkit-transform:matrix(0.238245,-0.002144,0.002250,0.249990,0,0);}
.m4_c01181{transform:matrix(0.238315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238315,0.000000,0.000000,0.250000,0,0);}
.m91_c01181{transform:matrix(0.238625,0.003102,-0.003250,0.249979,0,0);-ms-transform:matrix(0.238625,0.003102,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.238625,0.003102,-0.003250,0.249979,0,0);}
.m32_c01181{transform:matrix(0.239400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239400,0.000000,0.000000,0.250000,0,0);}
.m7d_c01181{transform:matrix(0.239845,-0.002159,0.002250,0.249990,0,0);-ms-transform:matrix(0.239845,-0.002159,0.002250,0.249990,0,0);-webkit-transform:matrix(0.239845,-0.002159,0.002250,0.249990,0,0);}
.m44_c01181{transform:matrix(0.240371,0.006730,-0.006997,0.249902,0,0);-ms-transform:matrix(0.240371,0.006730,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.240371,0.006730,-0.006997,0.249902,0,0);}
.m59_c01181{transform:matrix(0.240528,0.002886,-0.003000,0.249982,0,0);-ms-transform:matrix(0.240528,0.002886,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.240528,0.002886,-0.003000,0.249982,0,0);}
.m1a_c01181{transform:matrix(0.240925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240925,0.000000,0.000000,0.250000,0,0);}
.m8e_c01181{transform:matrix(0.240955,0.003132,-0.003250,0.249979,0,0);-ms-transform:matrix(0.240955,0.003132,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.240955,0.003132,-0.003250,0.249979,0,0);}
.m29_c01181{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m34_c01181{transform:matrix(0.245315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245315,0.000000,0.000000,0.250000,0,0);}
.m2a_c01181{transform:matrix(0.245570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245570,0.000000,0.000000,0.250000,0,0);}
.m8d_c01181{transform:matrix(0.245864,0.003196,-0.003250,0.249979,0,0);-ms-transform:matrix(0.245864,0.003196,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.245864,0.003196,-0.003250,0.249979,0,0);}
.m4f_c01181{transform:matrix(0.246103,0.002461,-0.002500,0.249988,0,0);-ms-transform:matrix(0.246103,0.002461,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.246103,0.002461,-0.002500,0.249988,0,0);}
.m70_c01181{transform:matrix(0.247700,-0.002229,0.002250,0.249990,0,0);-ms-transform:matrix(0.247700,-0.002229,0.002250,0.249990,0,0);-webkit-transform:matrix(0.247700,-0.002229,0.002250,0.249990,0,0);}
.m78_c01181{transform:matrix(0.247835,-0.002231,0.002250,0.249990,0,0);-ms-transform:matrix(0.247835,-0.002231,0.002250,0.249990,0,0);-webkit-transform:matrix(0.247835,-0.002231,0.002250,0.249990,0,0);}
.m6e_c01181{transform:matrix(0.248310,-0.002235,0.002250,0.249990,0,0);-ms-transform:matrix(0.248310,-0.002235,0.002250,0.249990,0,0);-webkit-transform:matrix(0.248310,-0.002235,0.002250,0.249990,0,0);}
.m58_c01181{transform:matrix(0.249442,0.002993,-0.003000,0.249982,0,0);-ms-transform:matrix(0.249442,0.002993,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.249442,0.002993,-0.003000,0.249982,0,0);}
.m96_c01181{transform:matrix(0.250589,0.003258,-0.003250,0.249979,0,0);-ms-transform:matrix(0.250589,0.003258,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.250589,0.003258,-0.003250,0.249979,0,0);}
.m89_c01181{transform:matrix(0.250754,0.003260,-0.003250,0.249979,0,0);-ms-transform:matrix(0.250754,0.003260,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.250754,0.003260,-0.003250,0.249979,0,0);}
.m5b_c01181{transform:matrix(0.251582,0.003019,-0.003000,0.249982,0,0);-ms-transform:matrix(0.251582,0.003019,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.251582,0.003019,-0.003000,0.249982,0,0);}
.m9e_c01181{transform:matrix(0.252789,0.003286,-0.003250,0.249979,0,0);-ms-transform:matrix(0.252789,0.003286,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.252789,0.003286,-0.003250,0.249979,0,0);}
.m1_c01181{transform:matrix(0.253680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253680,0.000000,0.000000,0.250000,0,0);}
.m1b_c01181{transform:matrix(0.253965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253965,0.000000,0.000000,0.250000,0,0);}
.m6d_c01181{transform:matrix(0.254115,-0.002287,0.002250,0.249990,0,0);-ms-transform:matrix(0.254115,-0.002287,0.002250,0.249990,0,0);-webkit-transform:matrix(0.254115,-0.002287,0.002250,0.249990,0,0);}
.m65_c01181{transform:matrix(0.255082,0.002551,-0.002500,0.249988,0,0);-ms-transform:matrix(0.255082,0.002551,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.255082,0.002551,-0.002500,0.249988,0,0);}
.m84_c01181{transform:matrix(0.256833,0.003339,-0.003250,0.249979,0,0);-ms-transform:matrix(0.256833,0.003339,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.256833,0.003339,-0.003250,0.249979,0,0);}
.m26_c01181{transform:matrix(0.257810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257810,0.000000,0.000000,0.250000,0,0);}
.m54_c01181{transform:matrix(0.258707,0.002587,-0.002500,0.249988,0,0);-ms-transform:matrix(0.258707,0.002587,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.258707,0.002587,-0.002500,0.249988,0,0);}
.m82_c01181{transform:matrix(0.258783,0.003364,-0.003250,0.249979,0,0);-ms-transform:matrix(0.258783,0.003364,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.258783,0.003364,-0.003250,0.249979,0,0);}
.m2b_c01181{transform:matrix(0.259770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259770,0.000000,0.000000,0.250000,0,0);}
.m88_c01181{transform:matrix(0.260418,0.003385,-0.003250,0.249979,0,0);-ms-transform:matrix(0.260418,0.003385,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.260418,0.003385,-0.003250,0.249979,0,0);}
.m7b_c01181{transform:matrix(0.261539,-0.002354,0.002250,0.249990,0,0);-ms-transform:matrix(0.261539,-0.002354,0.002250,0.249990,0,0);-webkit-transform:matrix(0.261539,-0.002354,0.002250,0.249990,0,0);}
.m2c_c01181{transform:matrix(0.261720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261720,0.000000,0.000000,0.250000,0,0);}
.m5e_c01181{transform:matrix(0.262026,0.003144,-0.003000,0.249982,0,0);-ms-transform:matrix(0.262026,0.003144,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.262026,0.003144,-0.003000,0.249982,0,0);}
.m8f_c01181{transform:matrix(0.262118,0.003408,-0.003250,0.249979,0,0);-ms-transform:matrix(0.262118,0.003408,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.262118,0.003408,-0.003250,0.249979,0,0);}
.m21_c01181{transform:matrix(0.262635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262635,0.000000,0.000000,0.250000,0,0);}
.m13_c01181{transform:matrix(0.263575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263575,0.000000,0.000000,0.250000,0,0);}
.ma7_c01181{transform:matrix(0.264608,0.003440,-0.003250,0.249979,0,0);-ms-transform:matrix(0.264608,0.003440,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.264608,0.003440,-0.003250,0.249979,0,0);}
.me_c01181{transform:matrix(0.264950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264950,0.000000,0.000000,0.250000,0,0);}
.m97_c01181{transform:matrix(0.265883,0.003456,-0.003250,0.249979,0,0);-ms-transform:matrix(0.265883,0.003456,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.265883,0.003456,-0.003250,0.249979,0,0);}
.m30_c01181{transform:matrix(0.267470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267470,0.000000,0.000000,0.250000,0,0);}
.m99_c01181{transform:matrix(0.268987,0.003497,-0.003250,0.249979,0,0);-ms-transform:matrix(0.268987,0.003497,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.268987,0.003497,-0.003250,0.249979,0,0);}
.mc_c01181{transform:matrix(0.269590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269590,0.000000,0.000000,0.250000,0,0);}
.m11_c01181{transform:matrix(0.269665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269665,0.000000,0.000000,0.250000,0,0);}
.m43_c01181{transform:matrix(0.270224,0.007566,-0.006997,0.249902,0,0);-ms-transform:matrix(0.270224,0.007566,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.270224,0.007566,-0.006997,0.249902,0,0);}
.m5a_c01181{transform:matrix(0.271390,0.003257,-0.003000,0.249982,0,0);-ms-transform:matrix(0.271390,0.003257,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.271390,0.003257,-0.003000,0.249982,0,0);}
.m15_c01181{transform:matrix(0.271425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271425,0.000000,0.000000,0.250000,0,0);}
.m6a_c01181{transform:matrix(0.272931,0.002729,-0.002500,0.249988,0,0);-ms-transform:matrix(0.272931,0.002729,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.272931,0.002729,-0.002500,0.249988,0,0);}
.m18_c01181{transform:matrix(0.273240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273240,0.000000,0.000000,0.250000,0,0);}
.m4e_c01181{transform:matrix(0.273361,0.002734,-0.002500,0.249988,0,0);-ms-transform:matrix(0.273361,0.002734,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.273361,0.002734,-0.002500,0.249988,0,0);}
.m5_c01181{transform:matrix(0.273470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273470,0.000000,0.000000,0.250000,0,0);}
.m67_c01181{transform:matrix(0.273956,0.002740,-0.002500,0.249988,0,0);-ms-transform:matrix(0.273956,0.002740,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.273956,0.002740,-0.002500,0.249988,0,0);}
.ma_c01181{transform:matrix(0.277085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277085,0.000000,0.000000,0.250000,0,0);}
.m52_c01181{transform:matrix(0.277306,0.002773,-0.002500,0.249988,0,0);-ms-transform:matrix(0.277306,0.002773,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.277306,0.002773,-0.002500,0.249988,0,0);}
.mf_c01181{transform:matrix(0.280070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280070,0.000000,0.000000,0.250000,0,0);}
.m3b_c01181{transform:matrix(0.280590,0.007857,-0.006997,0.249902,0,0);-ms-transform:matrix(0.280590,0.007857,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.280590,0.007857,-0.006997,0.249902,0,0);}
.m98_c01181{transform:matrix(0.281136,0.003655,-0.003250,0.249979,0,0);-ms-transform:matrix(0.281136,0.003655,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.281136,0.003655,-0.003250,0.249979,0,0);}
.m14_c01181{transform:matrix(0.282345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282345,0.000000,0.000000,0.250000,0,0);}
.m5c_c01181{transform:matrix(0.283130,0.003398,-0.003000,0.249982,0,0);-ms-transform:matrix(0.283130,0.003398,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.283130,0.003398,-0.003000,0.249982,0,0);}
.m12_c01181{transform:matrix(0.284855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284855,0.000000,0.000000,0.250000,0,0);}
.ma6_c01181{transform:matrix(0.285036,0.003705,-0.003250,0.249979,0,0);-ms-transform:matrix(0.285036,0.003705,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.285036,0.003705,-0.003250,0.249979,0,0);}
.md_c01181{transform:matrix(0.286215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286215,0.000000,0.000000,0.250000,0,0);}
.m75_c01181{transform:matrix(0.287058,-0.002584,0.002250,0.249990,0,0);-ms-transform:matrix(0.287058,-0.002584,0.002250,0.249990,0,0);-webkit-transform:matrix(0.287058,-0.002584,0.002250,0.249990,0,0);}
.m66_c01181{transform:matrix(0.287546,0.002875,-0.002500,0.249988,0,0);-ms-transform:matrix(0.287546,0.002875,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.287546,0.002875,-0.002500,0.249988,0,0);}
.m61_c01181{transform:matrix(0.288916,0.002889,-0.002500,0.249988,0,0);-ms-transform:matrix(0.288916,0.002889,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.288916,0.002889,-0.002500,0.249988,0,0);}
.m51_c01181{transform:matrix(0.290475,0.002905,-0.002500,0.249988,0,0);-ms-transform:matrix(0.290475,0.002905,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.290475,0.002905,-0.002500,0.249988,0,0);}
.m50_c01181{transform:matrix(0.291315,0.002913,-0.002500,0.249988,0,0);-ms-transform:matrix(0.291315,0.002913,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.291315,0.002913,-0.002500,0.249988,0,0);}
.m17_c01181{transform:matrix(0.299145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299145,0.000000,0.000000,0.250000,0,0);}
.m76_c01181{transform:matrix(0.299923,-0.002699,0.002250,0.249990,0,0);-ms-transform:matrix(0.299923,-0.002699,0.002250,0.249990,0,0);-webkit-transform:matrix(0.299923,-0.002699,0.002250,0.249990,0,0);}
.m1e_c01181{transform:matrix(0.303390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303390,0.000000,0.000000,0.250000,0,0);}
.m25_c01181{transform:matrix(0.304950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304950,0.000000,0.000000,0.250000,0,0);}
.m72_c01181{transform:matrix(0.309942,-0.002789,0.002250,0.249990,0,0);-ms-transform:matrix(0.309942,-0.002789,0.002250,0.249990,0,0);-webkit-transform:matrix(0.309942,-0.002789,0.002250,0.249990,0,0);}
.m37_c01181{transform:matrix(0.313415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313415,0.000000,0.000000,0.250000,0,0);}
.m5d_c01181{transform:matrix(0.314622,0.003775,-0.003000,0.249982,0,0);-ms-transform:matrix(0.314622,0.003775,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.314622,0.003775,-0.003000,0.249982,0,0);}
.m19_c01181{transform:matrix(0.316565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316565,0.000000,0.000000,0.250000,0,0);}
.mac_c01181{transform:matrix(0.321158,0.004175,-0.003250,0.249979,0,0);-ms-transform:matrix(0.321158,0.004175,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.321158,0.004175,-0.003250,0.249979,0,0);}
.m53_c01181{transform:matrix(0.323604,0.003236,-0.002500,0.249988,0,0);-ms-transform:matrix(0.323604,0.003236,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.323604,0.003236,-0.002500,0.249988,0,0);}
.m69_c01181{transform:matrix(0.324074,0.003241,-0.002500,0.249988,0,0);-ms-transform:matrix(0.324074,0.003241,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.324074,0.003241,-0.002500,0.249988,0,0);}
.m6_c01181{transform:matrix(0.326405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326405,0.000000,0.000000,0.250000,0,0);}
.ma0_c01181{transform:matrix(0.328212,0.004267,-0.003250,0.249979,0,0);-ms-transform:matrix(0.328212,0.004267,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.328212,0.004267,-0.003250,0.249979,0,0);}
.m68_c01181{transform:matrix(0.331823,0.003318,-0.002500,0.249988,0,0);-ms-transform:matrix(0.331823,0.003318,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.331823,0.003318,-0.002500,0.249988,0,0);}
.m55_c01181{transform:matrix(0.335121,0.004021,-0.003000,0.249982,0,0);-ms-transform:matrix(0.335121,0.004021,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.335121,0.004021,-0.003000,0.249982,0,0);}
.maa_c01181{transform:matrix(0.335232,0.004358,-0.003250,0.249979,0,0);-ms-transform:matrix(0.335232,0.004358,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.335232,0.004358,-0.003250,0.249979,0,0);}
.m8b_c01181{transform:matrix(0.338651,0.004402,-0.003250,0.249979,0,0);-ms-transform:matrix(0.338651,0.004402,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.338651,0.004402,-0.003250,0.249979,0,0);}
.m20_c01181{transform:matrix(0.340450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340450,0.000000,0.000000,0.250000,0,0);}
.m28_c01181{transform:matrix(0.347080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347080,0.000000,0.000000,0.250000,0,0);}
.m60_c01181{transform:matrix(0.358199,0.004298,-0.003000,0.249982,0,0);-ms-transform:matrix(0.358199,0.004298,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.358199,0.004298,-0.003000,0.249982,0,0);}
.ma1_c01181{transform:matrix(0.370244,0.004813,-0.003250,0.249979,0,0);-ms-transform:matrix(0.370244,0.004813,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.370244,0.004813,-0.003250,0.249979,0,0);}
.m62_c01181{transform:matrix(0.374216,0.003742,-0.002500,0.249988,0,0);-ms-transform:matrix(0.374216,0.003742,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.374216,0.003742,-0.002500,0.249988,0,0);}
.m35_c01181{transform:matrix(0.374605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374605,0.000000,0.000000,0.250000,0,0);}
.m6f_c01181{transform:matrix(0.383239,-0.003449,0.002250,0.249990,0,0);-ms-transform:matrix(0.383239,-0.003449,0.002250,0.249990,0,0);-webkit-transform:matrix(0.383239,-0.003449,0.002250,0.249990,0,0);}
.m1c_c01181{transform:matrix(0.395230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395230,0.000000,0.000000,0.250000,0,0);}
.m16_c01181{transform:matrix(0.398980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398980,0.000000,0.000000,0.250000,0,0);}
.m47_c01181{transform:matrix(0.400830,0.004008,-0.002500,0.249988,0,0);-ms-transform:matrix(0.400830,0.004008,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.400830,0.004008,-0.002500,0.249988,0,0);}
.m2e_c01181{transform:matrix(0.415870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415870,0.000000,0.000000,0.250000,0,0);}
.mab_c01181{transform:matrix(0.421344,0.005477,-0.003250,0.249979,0,0);-ms-transform:matrix(0.421344,0.005477,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.421344,0.005477,-0.003250,0.249979,0,0);}
.m56_c01181{transform:matrix(0.427389,0.005129,-0.003000,0.249982,0,0);-ms-transform:matrix(0.427389,0.005129,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.427389,0.005129,-0.003000,0.249982,0,0);}
.m3c_c01181{transform:matrix(0.431486,0.012082,-0.006997,0.249902,0,0);-ms-transform:matrix(0.431486,0.012082,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.431486,0.012082,-0.006997,0.249902,0,0);}
.m9_c01181{transform:matrix(0.451220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451220,0.000000,0.000000,0.250000,0,0);}
.m3a_c01181{transform:matrix(0.472915,0.013242,-0.006997,0.249902,0,0);-ms-transform:matrix(0.472915,0.013242,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.472915,0.013242,-0.006997,0.249902,0,0);}
.m81_c01181{transform:matrix(0.475685,0.006184,-0.003250,0.249979,0,0);-ms-transform:matrix(0.475685,0.006184,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.475685,0.006184,-0.003250,0.249979,0,0);}
.m36_c01181{transform:matrix(0.483995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483995,0.000000,0.000000,0.250000,0,0);}
.m48_c01181{transform:matrix(0.537183,0.005372,-0.002500,0.249988,0,0);-ms-transform:matrix(0.537183,0.005372,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.537183,0.005372,-0.002500,0.249988,0,0);}
.ma9_c01181{transform:matrix(0.541404,0.007038,-0.003250,0.249979,0,0);-ms-transform:matrix(0.541404,0.007038,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.541404,0.007038,-0.003250,0.249979,0,0);}
.m45_c01181{transform:matrix(0.554598,0.015529,-0.006997,0.249902,0,0);-ms-transform:matrix(0.554598,0.015529,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.554598,0.015529,-0.006997,0.249902,0,0);}
.ma4_c01181{transform:matrix(0.567357,0.007376,-0.003250,0.249979,0,0);-ms-transform:matrix(0.567357,0.007376,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.567357,0.007376,-0.003250,0.249979,0,0);}
.m1d_c01181{transform:matrix(0.570315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.570315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.570315,0.000000,0.000000,0.250000,0,0);}
.m92_c01181{transform:matrix(0.583981,0.007592,-0.003250,0.249979,0,0);-ms-transform:matrix(0.583981,0.007592,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.583981,0.007592,-0.003250,0.249979,0,0);}
.m2d_c01181{transform:matrix(0.625235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625235,0.000000,0.000000,0.250000,0,0);}
.m8c_c01181{transform:matrix(0.910928,0.011842,-0.003250,0.249979,0,0);-ms-transform:matrix(0.910928,0.011842,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.910928,0.011842,-0.003250,0.249979,0,0);}
.ma8_c01181{transform:matrix(1.615833,0.021006,-0.003250,0.249979,0,0);-ms-transform:matrix(1.615833,0.021006,-0.003250,0.249979,0,0);-webkit-transform:matrix(1.615833,0.021006,-0.003250,0.249979,0,0);}
.v0_c01181{vertical-align:0.000000px;}
.ls0_c01181{letter-spacing:0.000000px;}
.sc__c01181{text-shadow:none;}
.sc0_c01181{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__c01181{-webkit-text-stroke:0px transparent;}
.sc0_c01181{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01181{word-spacing:0.000000px;}
.fc0_c01181{color:transparent;}
.fs2_c01181{font-size:78.000000px;}
.fs5_c01181{font-size:78.003900px;}
.fs7_c01181{font-size:84.004200px;}
.fs6_c01181{font-size:84.006048px;}
.fsa_c01181{font-size:84.007098px;}
.fs1_c01181{font-size:90.000000px;}
.fs9_c01181{font-size:90.003645px;}
.fs3_c01181{font-size:96.000000px;}
.fs8_c01181{font-size:96.003888px;}
.fs0_c01181{font-size:102.000000px;}
.fs4_c01181{font-size:114.044679px;}
.y0_c01181{bottom:0.000000px;}
.y79_c01181{bottom:603.368010px;}
.y78_c01181{bottom:604.476624px;}
.y77_c01181{bottom:605.517495px;}
.y76_c01181{bottom:607.256393px;}
.y75_c01181{bottom:613.351694px;}
.y74_c01181{bottom:614.051766px;}
.y73_c01181{bottom:615.834045px;}
.y72_c01181{bottom:618.420271px;}
.y71_c01181{bottom:620.445692px;}
.y70_c01181{bottom:620.722548px;}
.y6f_c01181{bottom:644.024009px;}
.y6e_c01181{bottom:644.196373px;}
.y6d_c01181{bottom:644.634870px;}
.y6c_c01181{bottom:645.006003px;}
.y6b_c01181{bottom:645.224811px;}
.y6a_c01181{bottom:645.719887px;}
.y69_c01181{bottom:645.941862px;}
.y68_c01181{bottom:646.150827px;}
.y67_c01181{bottom:646.442409px;}
.y66_c01181{bottom:646.940223px;}
.y65_c01181{bottom:647.182724px;}
.y64_c01181{bottom:676.880074px;}
.y63_c01181{bottom:677.668627px;}
.y62_c01181{bottom:677.969457px;}
.y61_c01181{bottom:678.126118px;}
.y60_c01181{bottom:678.190738px;}
.y5f_c01181{bottom:678.605077px;}
.y5e_c01181{bottom:679.181835px;}
.y5d_c01181{bottom:679.413656px;}
.y5c_c01181{bottom:679.644110px;}
.y5b_c01181{bottom:680.184430px;}
.y5a_c01181{bottom:680.733494px;}
.y59_c01181{bottom:681.477765px;}
.y58_c01181{bottom:714.844932px;}
.y57_c01181{bottom:715.233177px;}
.y56_c01181{bottom:716.930008px;}
.y55_c01181{bottom:717.519591px;}
.y54_c01181{bottom:718.671144px;}
.y53_c01181{bottom:719.280363px;}
.y52_c01181{bottom:720.101820px;}
.y51_c01181{bottom:720.529904px;}
.y50_c01181{bottom:721.544352px;}
.y4f_c01181{bottom:723.002698px;}
.y4e_c01181{bottom:723.202437px;}
.y4d_c01181{bottom:723.483491px;}
.y4c_c01181{bottom:724.143000px;}
.y41_c01181{bottom:751.948902px;}
.y42_c01181{bottom:751.982112px;}
.y43_c01181{bottom:752.193846px;}
.y44_c01181{bottom:752.502537px;}
.y45_c01181{bottom:753.349878px;}
.y46_c01181{bottom:754.180182px;}
.y47_c01181{bottom:754.834082px;}
.y48_c01181{bottom:755.111615px;}
.y49_c01181{bottom:756.036797px;}
.y4a_c01181{bottom:756.345636px;}
.y4b_c01181{bottom:757.382436px;}
.y39_c01181{bottom:782.592000px;}
.y3a_c01181{bottom:783.025390px;}
.y3b_c01181{bottom:783.299832px;}
.y3c_c01181{bottom:783.615638px;}
.y3d_c01181{bottom:784.021448px;}
.y3e_c01181{bottom:784.853939px;}
.y3f_c01181{bottom:785.141340px;}
.y40_c01181{bottom:785.530208px;}
.y38_c01181{bottom:818.087880px;}
.y37_c01181{bottom:818.979990px;}
.y36_c01181{bottom:819.845700px;}
.y35_c01181{bottom:820.196985px;}
.y34_c01181{bottom:820.644900px;}
.y33_c01181{bottom:821.358615px;}
.y32_c01181{bottom:822.872400px;}
.y31_c01181{bottom:823.156095px;}
.y30_c01181{bottom:823.928010px;}
.y2f_c01181{bottom:824.344650px;}
.y2e_c01181{bottom:824.482500px;}
.y2d_c01181{bottom:855.862446px;}
.y2c_c01181{bottom:856.594434px;}
.y2b_c01181{bottom:856.908264px;}
.y2a_c01181{bottom:857.580366px;}
.y29_c01181{bottom:857.968014px;}
.y28_c01181{bottom:858.412560px;}
.y27_c01181{bottom:858.952776px;}
.y26_c01181{bottom:859.660518px;}
.y25_c01181{bottom:860.104758px;}
.y24_c01181{bottom:860.498220px;}
.y23_c01181{bottom:861.353526px;}
.y22_c01181{bottom:861.730500px;}
.y21_c01181{bottom:890.299830px;}
.y20_c01181{bottom:890.758935px;}
.y1f_c01181{bottom:891.564225px;}
.y1e_c01181{bottom:891.990150px;}
.y1d_c01181{bottom:892.449660px;}
.y1c_c01181{bottom:893.072865px;}
.y1b_c01181{bottom:894.178455px;}
.y1a_c01181{bottom:894.585135px;}
.y19_c01181{bottom:894.911790px;}
.y18_c01181{bottom:895.346475px;}
.y17_c01181{bottom:895.673940px;}
.y16_c01181{bottom:896.042925px;}
.y15_c01181{bottom:897.114750px;}
.y14_c01181{bottom:897.481500px;}
.y13_c01181{bottom:923.027754px;}
.y12_c01181{bottom:926.647272px;}
.y11_c01181{bottom:927.531036px;}
.y10_c01181{bottom:928.078674px;}
.yf_c01181{bottom:929.969766px;}
.ye_c01181{bottom:931.728432px;}
.yd_c01181{bottom:932.657304px;}
.yc_c01181{bottom:935.421114px;}
.yb_c01181{bottom:936.102018px;}
.ya_c01181{bottom:937.038450px;}
.y9_c01181{bottom:939.149328px;}
.y8_c01181{bottom:940.378584px;}
.y7_c01181{bottom:941.137692px;}
.y6_c01181{bottom:942.573000px;}
.y5_c01181{bottom:996.826500px;}
.y4_c01181{bottom:1031.892000px;}
.y3_c01181{bottom:1071.546000px;}
.y2_c01181{bottom:1106.017500px;}
.y1_c01181{bottom:1141.282500px;}
.h4_c01181{height:78.000000px;}
.h7_c01181{height:78.003900px;}
.h9_c01181{height:84.004200px;}
.h8_c01181{height:84.006048px;}
.hc_c01181{height:84.007098px;}
.h3_c01181{height:90.000000px;}
.hb_c01181{height:90.003645px;}
.h5_c01181{height:96.000000px;}
.ha_c01181{height:96.003888px;}
.h2_c01181{height:102.000000px;}
.h6_c01181{height:114.044679px;}
.h1_c01181{height:1258.500000px;}
.h0_c01181{height:1258.740000px;}
.w0_c01181{width:904.200000px;}
.w1_c01181{width:904.500000px;}
.x0_c01181{left:0.000000px;}
.x38_c01181{left:1.783500px;}
.x78_c01181{left:3.853044px;}
.x41_c01181{left:38.487000px;}
.x6f_c01181{left:51.043500px;}
.x39_c01181{left:53.044500px;}
.x2d_c01181{left:70.200000px;}
.x70_c01181{left:72.663000px;}
.x3a_c01181{left:80.155500px;}
.x65_c01181{left:86.979248px;}
.x71_c01181{left:88.027500px;}
.x54_c01181{left:89.128500px;}
.x66_c01181{left:90.669248px;}
.x2e_c01181{left:99.360000px;}
.x55_c01181{left:102.913500px;}
.x1f_c01181{left:107.190000px;}
.x4a_c01181{left:108.312000px;}
.x79_c01181{left:110.266851px;}
.x67_c01181{left:114.195248px;}
.x81_c01181{left:115.291190px;}
.x12_c01181{left:117.720000px;}
.x2f_c01181{left:125.010000px;}
.x9_c01181{left:139.050000px;}
.x20_c01181{left:142.020000px;}
.x30_c01181{left:143.370000px;}
.x13_c01181{left:145.260000px;}
.x68_c01181{left:148.494248px;}
.x21_c01181{left:165.780000px;}
.x42_c01181{left:182.568000px;}
.x7a_c01181{left:188.623955px;}
.xa_c01181{left:191.700000px;}
.x14_c01181{left:195.210000px;}
.x22_c01181{left:199.800000px;}
.x4b_c01181{left:211.002000px;}
.x43_c01181{left:215.314500px;}
.x56_c01181{left:221.769000px;}
.x15_c01181{left:223.290000px;}
.x3b_c01181{left:232.890000px;}
.x23_c01181{left:235.170000px;}
.x31_c01181{left:243.270000px;}
.xb_c01181{left:246.510000px;}
.x57_c01181{left:250.138500px;}
.x3c_c01181{left:257.208000px;}
.x44_c01181{left:258.783000px;}
.x7b_c01181{left:265.846980px;}
.x82_c01181{left:272.985296px;}
.x72_c01181{left:278.242500px;}
.x4c_c01181{left:280.810500px;}
.x16_c01181{left:289.170000px;}
.x32_c01181{left:291.330000px;}
.x24_c01181{left:298.890000px;}
.x73_c01181{left:311.172000px;}
.xc_c01181{left:315.360000px;}
.x17_c01181{left:322.650000px;}
.x7c_c01181{left:323.673912px;}
.x25_c01181{left:327.510000px;}
.x1_c01181{left:331.290000px;}
.x69_c01181{left:334.899248px;}
.x4d_c01181{left:339.789000px;}
.x83_c01181{left:353.032056px;}
.x18_c01181{left:355.320000px;}
.xd_c01181{left:364.770000px;}
.x26_c01181{left:367.470000px;}
.x74_c01181{left:374.361000px;}
.x5e_c01181{left:377.349000px;}
.x4e_c01181{left:384.807000px;}
.x2_c01181{left:389.880000px;}
.x33_c01181{left:397.170000px;}
.x58_c01181{left:401.517000px;}
.x6a_c01181{left:407.554748px;}
.x7d_c01181{left:410.024402px;}
.xe_c01181{left:414.180000px;}
.x4f_c01181{left:421.852500px;}
.x5f_c01181{left:425.503500px;}
.x27_c01181{left:427.410000px;}
.x3_c01181{left:432.000000px;}
.x6b_c01181{left:438.391748px;}
.x45_c01181{left:442.675500px;}
.x3d_c01181{left:451.899000px;}
.x50_c01181{left:454.156500px;}
.x60_c01181{left:455.997000px;}
.x19_c01181{left:465.210000px;}
.x59_c01181{left:472.888500px;}
.x4_c01181{left:483.030000px;}
.x61_c01181{left:491.086500px;}
.x28_c01181{left:493.830000px;}
.x1a_c01181{left:495.450000px;}
.x46_c01181{left:504.996000px;}
.x5_c01181{left:506.520000px;}
.x7e_c01181{left:508.925178px;}
.x51_c01181{left:510.165000px;}
.x5a_c01181{left:517.680000px;}
.x3e_c01181{left:519.438000px;}
.x29_c01181{left:528.660000px;}
.x1b_c01181{left:532.170000px;}
.x52_c01181{left:536.317500px;}
.xf_c01181{left:537.570000px;}
.x34_c01181{left:539.190000px;}
.x6c_c01181{left:541.189748px;}
.x35_c01181{left:548.370000px;}
.x84_c01181{left:549.663056px;}
.x47_c01181{left:550.947000px;}
.x5b_c01181{left:552.808500px;}
.x75_c01181{left:555.157500px;}
.x3f_c01181{left:570.559500px;}
.x10_c01181{left:572.130000px;}
.x6d_c01181{left:575.505248px;}
.x6_c01181{left:593.730000px;}
.x2a_c01181{left:596.160000px;}
.x53_c01181{left:597.316500px;}
.x85_c01181{left:605.757432px;}
.x1c_c01181{left:615.870000px;}
.x2b_c01181{left:624.510000px;}
.x7f_c01181{left:626.894444px;}
.x62_c01181{left:628.675500px;}
.x11_c01181{left:636.660000px;}
.x5c_c01181{left:639.379500px;}
.x1d_c01181{left:648.270000px;}
.x63_c01181{left:660.609000px;}
.x7_c01181{left:661.770000px;}
.x36_c01181{left:670.410000px;}
.x48_c01181{left:674.068500px;}
.x86_c01181{left:675.086208px;}
.x1e_c01181{left:682.290000px;}
.x76_c01181{left:685.683000px;}
.x6e_c01181{left:690.705248px;}
.x2c_c01181{left:697.140000px;}
.x40_c01181{left:699.828000px;}
.x64_c01181{left:703.816500px;}
.x77_c01181{left:715.548000px;}
.x37_c01181{left:716.850000px;}
.x49_c01181{left:719.979000px;}
.x5d_c01181{left:728.590500px;}
.x8_c01181{left:732.240000px;}
.x80_c01181{left:749.242677px;}
@media print{
.v0_c01181{vertical-align:0.000000pt;}
.ls0_c01181{letter-spacing:0.000000pt;}
.ws0_c01181{word-spacing:0.000000pt;}
.fs2_c01181{font-size:69.333333pt;}
.fs5_c01181{font-size:69.336800pt;}
.fs7_c01181{font-size:74.670400pt;}
.fs6_c01181{font-size:74.672042pt;}
.fsa_c01181{font-size:74.672976pt;}
.fs1_c01181{font-size:80.000000pt;}
.fs9_c01181{font-size:80.003240pt;}
.fs3_c01181{font-size:85.333333pt;}
.fs8_c01181{font-size:85.336789pt;}
.fs0_c01181{font-size:90.666667pt;}
.fs4_c01181{font-size:101.373048pt;}
.y0_c01181{bottom:0.000000pt;}
.y79_c01181{bottom:536.327120pt;}
.y78_c01181{bottom:537.312555pt;}
.y77_c01181{bottom:538.237773pt;}
.y76_c01181{bottom:539.783460pt;}
.y75_c01181{bottom:545.201505pt;}
.y74_c01181{bottom:545.823792pt;}
.y73_c01181{bottom:547.408040pt;}
.y72_c01181{bottom:549.706908pt;}
.y71_c01181{bottom:551.507281pt;}
.y70_c01181{bottom:551.753376pt;}
.y6f_c01181{bottom:572.465785pt;}
.y6e_c01181{bottom:572.618999pt;}
.y6d_c01181{bottom:573.008773pt;}
.y6c_c01181{bottom:573.338669pt;}
.y6b_c01181{bottom:573.533165pt;}
.y6a_c01181{bottom:573.973233pt;}
.y69_c01181{bottom:574.170544pt;}
.y68_c01181{bottom:574.356291pt;}
.y67_c01181{bottom:574.615475pt;}
.y66_c01181{bottom:575.057976pt;}
.y65_c01181{bottom:575.273532pt;}
.y64_c01181{bottom:601.671177pt;}
.y63_c01181{bottom:602.372113pt;}
.y62_c01181{bottom:602.639517pt;}
.y61_c01181{bottom:602.778772pt;}
.y60_c01181{bottom:602.836212pt;}
.y5f_c01181{bottom:603.204513pt;}
.y5e_c01181{bottom:603.717187pt;}
.y5d_c01181{bottom:603.923249pt;}
.y5c_c01181{bottom:604.128097pt;}
.y5b_c01181{bottom:604.608383pt;}
.y5a_c01181{bottom:605.096439pt;}
.y59_c01181{bottom:605.758013pt;}
.y58_c01181{bottom:635.417717pt;}
.y57_c01181{bottom:635.762824pt;}
.y56_c01181{bottom:637.271119pt;}
.y55_c01181{bottom:637.795192pt;}
.y54_c01181{bottom:638.818795pt;}
.y53_c01181{bottom:639.360323pt;}
.y52_c01181{bottom:640.090507pt;}
.y51_c01181{bottom:640.471025pt;}
.y50_c01181{bottom:641.372757pt;}
.y4f_c01181{bottom:642.669065pt;}
.y4e_c01181{bottom:642.846611pt;}
.y4d_c01181{bottom:643.096436pt;}
.y4c_c01181{bottom:643.682667pt;}
.y41_c01181{bottom:668.399024pt;}
.y42_c01181{bottom:668.428544pt;}
.y43_c01181{bottom:668.616752pt;}
.y44_c01181{bottom:668.891144pt;}
.y45_c01181{bottom:669.644336pt;}
.y46_c01181{bottom:670.382384pt;}
.y47_c01181{bottom:670.963628pt;}
.y48_c01181{bottom:671.210324pt;}
.y49_c01181{bottom:672.032708pt;}
.y4a_c01181{bottom:672.307232pt;}
.y4b_c01181{bottom:673.228832pt;}
.y39_c01181{bottom:695.637333pt;}
.y3a_c01181{bottom:696.022569pt;}
.y3b_c01181{bottom:696.266517pt;}
.y3c_c01181{bottom:696.547233pt;}
.y3d_c01181{bottom:696.907953pt;}
.y3e_c01181{bottom:697.647945pt;}
.y3f_c01181{bottom:697.903413pt;}
.y40_c01181{bottom:698.249073pt;}
.y38_c01181{bottom:727.189227pt;}
.y37_c01181{bottom:727.982213pt;}
.y36_c01181{bottom:728.751733pt;}
.y35_c01181{bottom:729.063987pt;}
.y34_c01181{bottom:729.462133pt;}
.y33_c01181{bottom:730.096547pt;}
.y32_c01181{bottom:731.442133pt;}
.y31_c01181{bottom:731.694307pt;}
.y30_c01181{bottom:732.380453pt;}
.y2f_c01181{bottom:732.750800pt;}
.y2e_c01181{bottom:732.873333pt;}
.y2d_c01181{bottom:760.766619pt;}
.y2c_c01181{bottom:761.417275pt;}
.y2b_c01181{bottom:761.696235pt;}
.y2a_c01181{bottom:762.293659pt;}
.y29_c01181{bottom:762.638235pt;}
.y28_c01181{bottom:763.033387pt;}
.y27_c01181{bottom:763.513579pt;}
.y26_c01181{bottom:764.142683pt;}
.y25_c01181{bottom:764.537563pt;}
.y24_c01181{bottom:764.887307pt;}
.y23_c01181{bottom:765.647579pt;}
.y22_c01181{bottom:765.982667pt;}
.y21_c01181{bottom:791.377627pt;}
.y20_c01181{bottom:791.785720pt;}
.y1f_c01181{bottom:792.501533pt;}
.y1e_c01181{bottom:792.880133pt;}
.y1d_c01181{bottom:793.288587pt;}
.y1c_c01181{bottom:793.842547pt;}
.y1b_c01181{bottom:794.825293pt;}
.y1a_c01181{bottom:795.186787pt;}
.y19_c01181{bottom:795.477147pt;}
.y18_c01181{bottom:795.863533pt;}
.y17_c01181{bottom:796.154613pt;}
.y16_c01181{bottom:796.482600pt;}
.y15_c01181{bottom:797.435333pt;}
.y14_c01181{bottom:797.761333pt;}
.y13_c01181{bottom:820.469115pt;}
.y12_c01181{bottom:823.686464pt;}
.y11_c01181{bottom:824.472032pt;}
.y10_c01181{bottom:824.958821pt;}
.yf_c01181{bottom:826.639792pt;}
.ye_c01181{bottom:828.203051pt;}
.yd_c01181{bottom:829.028715pt;}
.yc_c01181{bottom:831.485435pt;}
.yb_c01181{bottom:832.090683pt;}
.ya_c01181{bottom:832.923067pt;}
.y9_c01181{bottom:834.799403pt;}
.y8_c01181{bottom:835.892075pt;}
.y7_c01181{bottom:836.566837pt;}
.y6_c01181{bottom:837.842667pt;}
.y5_c01181{bottom:886.068000pt;}
.y4_c01181{bottom:917.237333pt;}
.y3_c01181{bottom:952.485333pt;}
.y2_c01181{bottom:983.126667pt;}
.y1_c01181{bottom:1014.473333pt;}
.h4_c01181{height:69.333333pt;}
.h7_c01181{height:69.336800pt;}
.h9_c01181{height:74.670400pt;}
.h8_c01181{height:74.672042pt;}
.hc_c01181{height:74.672976pt;}
.h3_c01181{height:80.000000pt;}
.hb_c01181{height:80.003240pt;}
.h5_c01181{height:85.333333pt;}
.ha_c01181{height:85.336789pt;}
.h2_c01181{height:90.666667pt;}
.h6_c01181{height:101.373048pt;}
.h1_c01181{height:1118.666667pt;}
.h0_c01181{height:1118.880000pt;}
.w0_c01181{width:803.733333pt;}
.w1_c01181{width:804.000000pt;}
.x0_c01181{left:0.000000pt;}
.x38_c01181{left:1.585333pt;}
.x78_c01181{left:3.424928pt;}
.x41_c01181{left:34.210667pt;}
.x6f_c01181{left:45.372000pt;}
.x39_c01181{left:47.150667pt;}
.x2d_c01181{left:62.400000pt;}
.x70_c01181{left:64.589333pt;}
.x3a_c01181{left:71.249333pt;}
.x65_c01181{left:77.314887pt;}
.x71_c01181{left:78.246667pt;}
.x54_c01181{left:79.225333pt;}
.x66_c01181{left:80.594887pt;}
.x2e_c01181{left:88.320000pt;}
.x55_c01181{left:91.478667pt;}
.x1f_c01181{left:95.280000pt;}
.x4a_c01181{left:96.277333pt;}
.x79_c01181{left:98.014979pt;}
.x67_c01181{left:101.506887pt;}
.x81_c01181{left:102.481057pt;}
.x12_c01181{left:104.640000pt;}
.x2f_c01181{left:111.120000pt;}
.x9_c01181{left:123.600000pt;}
.x20_c01181{left:126.240000pt;}
.x30_c01181{left:127.440000pt;}
.x13_c01181{left:129.120000pt;}
.x68_c01181{left:131.994887pt;}
.x21_c01181{left:147.360000pt;}
.x42_c01181{left:162.282667pt;}
.x7a_c01181{left:167.665737pt;}
.xa_c01181{left:170.400000pt;}
.x14_c01181{left:173.520000pt;}
.x22_c01181{left:177.600000pt;}
.x4b_c01181{left:187.557333pt;}
.x43_c01181{left:191.390667pt;}
.x56_c01181{left:197.128000pt;}
.x15_c01181{left:198.480000pt;}
.x3b_c01181{left:207.013333pt;}
.x23_c01181{left:209.040000pt;}
.x31_c01181{left:216.240000pt;}
.xb_c01181{left:219.120000pt;}
.x57_c01181{left:222.345333pt;}
.x3c_c01181{left:228.629333pt;}
.x44_c01181{left:230.029333pt;}
.x7b_c01181{left:236.308427pt;}
.x82_c01181{left:242.653596pt;}
.x72_c01181{left:247.326667pt;}
.x4c_c01181{left:249.609333pt;}
.x16_c01181{left:257.040000pt;}
.x32_c01181{left:258.960000pt;}
.x24_c01181{left:265.680000pt;}
.x73_c01181{left:276.597333pt;}
.xc_c01181{left:280.320000pt;}
.x17_c01181{left:286.800000pt;}
.x7c_c01181{left:287.710144pt;}
.x25_c01181{left:291.120000pt;}
.x1_c01181{left:294.480000pt;}
.x69_c01181{left:297.688220pt;}
.x4d_c01181{left:302.034667pt;}
.x83_c01181{left:313.806272pt;}
.x18_c01181{left:315.840000pt;}
.xd_c01181{left:324.240000pt;}
.x26_c01181{left:326.640000pt;}
.x74_c01181{left:332.765333pt;}
.x5e_c01181{left:335.421333pt;}
.x4e_c01181{left:342.050667pt;}
.x2_c01181{left:346.560000pt;}
.x33_c01181{left:353.040000pt;}
.x58_c01181{left:356.904000pt;}
.x6a_c01181{left:362.270887pt;}
.x7d_c01181{left:364.466135pt;}
.xe_c01181{left:368.160000pt;}
.x4f_c01181{left:374.980000pt;}
.x5f_c01181{left:378.225333pt;}
.x27_c01181{left:379.920000pt;}
.x3_c01181{left:384.000000pt;}
.x6b_c01181{left:389.681553pt;}
.x45_c01181{left:393.489333pt;}
.x3d_c01181{left:401.688000pt;}
.x50_c01181{left:403.694667pt;}
.x60_c01181{left:405.330667pt;}
.x19_c01181{left:413.520000pt;}
.x59_c01181{left:420.345333pt;}
.x4_c01181{left:429.360000pt;}
.x61_c01181{left:436.521333pt;}
.x28_c01181{left:438.960000pt;}
.x1a_c01181{left:440.400000pt;}
.x46_c01181{left:448.885333pt;}
.x5_c01181{left:450.240000pt;}
.x7e_c01181{left:452.377936pt;}
.x51_c01181{left:453.480000pt;}
.x5a_c01181{left:460.160000pt;}
.x3e_c01181{left:461.722667pt;}
.x29_c01181{left:469.920000pt;}
.x1b_c01181{left:473.040000pt;}
.x52_c01181{left:476.726667pt;}
.xf_c01181{left:477.840000pt;}
.x34_c01181{left:479.280000pt;}
.x6c_c01181{left:481.057553pt;}
.x35_c01181{left:487.440000pt;}
.x84_c01181{left:488.589383pt;}
.x47_c01181{left:489.730667pt;}
.x5b_c01181{left:491.385333pt;}
.x75_c01181{left:493.473333pt;}
.x3f_c01181{left:507.164000pt;}
.x10_c01181{left:508.560000pt;}
.x6d_c01181{left:511.560220pt;}
.x6_c01181{left:527.760000pt;}
.x2a_c01181{left:529.920000pt;}
.x53_c01181{left:530.948000pt;}
.x85_c01181{left:538.451051pt;}
.x1c_c01181{left:547.440000pt;}
.x2b_c01181{left:555.120000pt;}
.x7f_c01181{left:557.239505pt;}
.x62_c01181{left:558.822667pt;}
.x11_c01181{left:565.920000pt;}
.x5c_c01181{left:568.337333pt;}
.x1d_c01181{left:576.240000pt;}
.x63_c01181{left:587.208000pt;}
.x7_c01181{left:588.240000pt;}
.x36_c01181{left:595.920000pt;}
.x48_c01181{left:599.172000pt;}
.x86_c01181{left:600.076629pt;}
.x1e_c01181{left:606.480000pt;}
.x76_c01181{left:609.496000pt;}
.x6e_c01181{left:613.960220pt;}
.x2c_c01181{left:619.680000pt;}
.x40_c01181{left:622.069333pt;}
.x64_c01181{left:625.614667pt;}
.x77_c01181{left:636.042667pt;}
.x37_c01181{left:637.200000pt;}
.x49_c01181{left:639.981333pt;}
.x5d_c01181{left:647.636000pt;}
.x8_c01181{left:650.880000pt;}
.x80_c01181{left:665.993491pt;}
}





/* 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_c01182 {
    display:none;
  }
  .loading-indicator_c01182.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01182 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_c01182 { 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_c01182" -> "#page-container .classname_c01182")
 */
.pf_c01182 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01182 { /* 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_c01182.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01182 { /* 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_c01182 { /* 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_c01182 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01182 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01182 {overflow:visible;}
  }
}
.c_c01182 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01182 { /* 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_c01182:after { /* webkit #35443 */
  content: '';
}
.t_c01182:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01182 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 */
}
.__c01182 { /* 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_c01182 { /* info for Javascript */
  display:none;
}
.l_c01182 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01182 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01182 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01182: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_c01182 {
    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_c01182.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01182.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_c01182 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01182{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01182;src:url('chunks/assets/font_7c6b9abe6ee2a268480c528b.woff2')format("woff");}.ff1_c01182{font-family:ff1_c01182;line-height:1.000000;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;}
.me1_c01182{transform:matrix(0.009090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.009090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.009090,0.000000,0.000000,0.250000,0,0);}
.mbd_c01182{transform:matrix(0.113728,-0.001251,0.002750,0.249985,0,0);-ms-transform:matrix(0.113728,-0.001251,0.002750,0.249985,0,0);-webkit-transform:matrix(0.113728,-0.001251,0.002750,0.249985,0,0);}
.mf0_c01182{transform:matrix(0.144705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144705,0.000000,0.000000,0.250000,0,0);}
.m2_c01182{transform:matrix(0.170920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170920,0.000000,0.000000,0.250000,0,0);}
.m39_c01182{transform:matrix(0.175462,-0.001053,0.001500,0.249996,0,0);-ms-transform:matrix(0.175462,-0.001053,0.001500,0.249996,0,0);-webkit-transform:matrix(0.175462,-0.001053,0.001500,0.249996,0,0);}
.m20_c01182{transform:matrix(0.180229,-0.003064,0.004249,0.249964,0,0);-ms-transform:matrix(0.180229,-0.003064,0.004249,0.249964,0,0);-webkit-transform:matrix(0.180229,-0.003064,0.004249,0.249964,0,0);}
.mbc_c01182{transform:matrix(0.185874,-0.002045,0.002750,0.249985,0,0);-ms-transform:matrix(0.185874,-0.002045,0.002750,0.249985,0,0);-webkit-transform:matrix(0.185874,-0.002045,0.002750,0.249985,0,0);}
.m60_c01182{transform:matrix(0.186867,-0.001121,0.001500,0.249996,0,0);-ms-transform:matrix(0.186867,-0.001121,0.001500,0.249996,0,0);-webkit-transform:matrix(0.186867,-0.001121,0.001500,0.249996,0,0);}
.m57_c01182{transform:matrix(0.191882,-0.001151,0.001500,0.249996,0,0);-ms-transform:matrix(0.191882,-0.001151,0.001500,0.249996,0,0);-webkit-transform:matrix(0.191882,-0.001151,0.001500,0.249996,0,0);}
.mc0_c01182{transform:matrix(0.192608,-0.002119,0.002750,0.249985,0,0);-ms-transform:matrix(0.192608,-0.002119,0.002750,0.249985,0,0);-webkit-transform:matrix(0.192608,-0.002119,0.002750,0.249985,0,0);}
.mb8_c01182{transform:matrix(0.192618,-0.002119,0.002750,0.249985,0,0);-ms-transform:matrix(0.192618,-0.002119,0.002750,0.249985,0,0);-webkit-transform:matrix(0.192618,-0.002119,0.002750,0.249985,0,0);}
.mba_c01182{transform:matrix(0.196723,-0.002164,0.002750,0.249985,0,0);-ms-transform:matrix(0.196723,-0.002164,0.002750,0.249985,0,0);-webkit-transform:matrix(0.196723,-0.002164,0.002750,0.249985,0,0);}
.m26_c01182{transform:matrix(0.197356,-0.003355,0.004249,0.249964,0,0);-ms-transform:matrix(0.197356,-0.003355,0.004249,0.249964,0,0);-webkit-transform:matrix(0.197356,-0.003355,0.004249,0.249964,0,0);}
.m5f_c01182{transform:matrix(0.197416,-0.001184,0.001500,0.249996,0,0);-ms-transform:matrix(0.197416,-0.001184,0.001500,0.249996,0,0);-webkit-transform:matrix(0.197416,-0.001184,0.001500,0.249996,0,0);}
.m7d_c01182{transform:matrix(0.198535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198535,0.000000,0.000000,0.250000,0,0);}
.m5d_c01182{transform:matrix(0.199781,-0.001199,0.001500,0.249996,0,0);-ms-transform:matrix(0.199781,-0.001199,0.001500,0.249996,0,0);-webkit-transform:matrix(0.199781,-0.001199,0.001500,0.249996,0,0);}
.m50_c01182{transform:matrix(0.199911,-0.001199,0.001500,0.249996,0,0);-ms-transform:matrix(0.199911,-0.001199,0.001500,0.249996,0,0);-webkit-transform:matrix(0.199911,-0.001199,0.001500,0.249996,0,0);}
.m46_c01182{transform:matrix(0.200876,-0.001205,0.001500,0.249996,0,0);-ms-transform:matrix(0.200876,-0.001205,0.001500,0.249996,0,0);-webkit-transform:matrix(0.200876,-0.001205,0.001500,0.249996,0,0);}
.m34_c01182{transform:matrix(0.202151,-0.001213,0.001500,0.249996,0,0);-ms-transform:matrix(0.202151,-0.001213,0.001500,0.249996,0,0);-webkit-transform:matrix(0.202151,-0.001213,0.001500,0.249996,0,0);}
.mb_c01182{transform:matrix(0.202376,-0.003440,0.004249,0.249964,0,0);-ms-transform:matrix(0.202376,-0.003440,0.004249,0.249964,0,0);-webkit-transform:matrix(0.202376,-0.003440,0.004249,0.249964,0,0);}
.m2f_c01182{transform:matrix(0.203286,-0.001220,0.001500,0.249996,0,0);-ms-transform:matrix(0.203286,-0.001220,0.001500,0.249996,0,0);-webkit-transform:matrix(0.203286,-0.001220,0.001500,0.249996,0,0);}
.m77_c01182{transform:matrix(0.203505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203505,0.000000,0.000000,0.250000,0,0);}
.m78_c01182{transform:matrix(0.204460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204460,0.000000,0.000000,0.250000,0,0);}
.m93_c01182{transform:matrix(0.204815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204815,0.000000,0.000000,0.250000,0,0);}
.m4d_c01182{transform:matrix(0.205106,-0.001231,0.001500,0.249996,0,0);-ms-transform:matrix(0.205106,-0.001231,0.001500,0.249996,0,0);-webkit-transform:matrix(0.205106,-0.001231,0.001500,0.249996,0,0);}
.m4c_c01182{transform:matrix(0.205631,-0.001234,0.001500,0.249996,0,0);-ms-transform:matrix(0.205631,-0.001234,0.001500,0.249996,0,0);-webkit-transform:matrix(0.205631,-0.001234,0.001500,0.249996,0,0);}
.mda_c01182{transform:matrix(0.205915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205915,0.000000,0.000000,0.250000,0,0);}
.m2e_c01182{transform:matrix(0.206356,-0.001238,0.001500,0.249996,0,0);-ms-transform:matrix(0.206356,-0.001238,0.001500,0.249996,0,0);-webkit-transform:matrix(0.206356,-0.001238,0.001500,0.249996,0,0);}
.m48_c01182{transform:matrix(0.207836,-0.001247,0.001500,0.249996,0,0);-ms-transform:matrix(0.207836,-0.001247,0.001500,0.249996,0,0);-webkit-transform:matrix(0.207836,-0.001247,0.001500,0.249996,0,0);}
.mbf_c01182{transform:matrix(0.207977,-0.002288,0.002750,0.249985,0,0);-ms-transform:matrix(0.207977,-0.002288,0.002750,0.249985,0,0);-webkit-transform:matrix(0.207977,-0.002288,0.002750,0.249985,0,0);}
.m89_c01182{transform:matrix(0.209120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209120,0.000000,0.000000,0.250000,0,0);}
.m6d_c01182{transform:matrix(0.209805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209805,0.000000,0.000000,0.250000,0,0);}
.m3c_c01182{transform:matrix(0.209931,-0.001260,0.001500,0.249996,0,0);-ms-transform:matrix(0.209931,-0.001260,0.001500,0.249996,0,0);-webkit-transform:matrix(0.209931,-0.001260,0.001500,0.249996,0,0);}
.m38_c01182{transform:matrix(0.210331,-0.001262,0.001500,0.249996,0,0);-ms-transform:matrix(0.210331,-0.001262,0.001500,0.249996,0,0);-webkit-transform:matrix(0.210331,-0.001262,0.001500,0.249996,0,0);}
.mc9_c01182{transform:matrix(0.210607,-0.002317,0.002750,0.249985,0,0);-ms-transform:matrix(0.210607,-0.002317,0.002750,0.249985,0,0);-webkit-transform:matrix(0.210607,-0.002317,0.002750,0.249985,0,0);}
.mde_c01182{transform:matrix(0.210830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210830,0.000000,0.000000,0.250000,0,0);}
.m45_c01182{transform:matrix(0.211021,-0.001266,0.001500,0.249996,0,0);-ms-transform:matrix(0.211021,-0.001266,0.001500,0.249996,0,0);-webkit-transform:matrix(0.211021,-0.001266,0.001500,0.249996,0,0);}
.m6b_c01182{transform:matrix(0.211045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211045,0.000000,0.000000,0.250000,0,0);}
.mbe_c01182{transform:matrix(0.211447,-0.002326,0.002750,0.249985,0,0);-ms-transform:matrix(0.211447,-0.002326,0.002750,0.249985,0,0);-webkit-transform:matrix(0.211447,-0.002326,0.002750,0.249985,0,0);}
.m69_c01182{transform:matrix(0.211866,-0.001271,0.001500,0.249996,0,0);-ms-transform:matrix(0.211866,-0.001271,0.001500,0.249996,0,0);-webkit-transform:matrix(0.211866,-0.001271,0.001500,0.249996,0,0);}
.mf4_c01182{transform:matrix(0.212185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212185,0.000000,0.000000,0.250000,0,0);}
.mdd_c01182{transform:matrix(0.212240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212240,0.000000,0.000000,0.250000,0,0);}
.m59_c01182{transform:matrix(0.212566,-0.001275,0.001500,0.249996,0,0);-ms-transform:matrix(0.212566,-0.001275,0.001500,0.249996,0,0);-webkit-transform:matrix(0.212566,-0.001275,0.001500,0.249996,0,0);}
.m32_c01182{transform:matrix(0.213441,-0.001281,0.001500,0.249996,0,0);-ms-transform:matrix(0.213441,-0.001281,0.001500,0.249996,0,0);-webkit-transform:matrix(0.213441,-0.001281,0.001500,0.249996,0,0);}
.m8_c01182{transform:matrix(0.213689,-0.003633,0.004249,0.249964,0,0);-ms-transform:matrix(0.213689,-0.003633,0.004249,0.249964,0,0);-webkit-transform:matrix(0.213689,-0.003633,0.004249,0.249964,0,0);}
.m23_c01182{transform:matrix(0.214204,-0.003641,0.004249,0.249964,0,0);-ms-transform:matrix(0.214204,-0.003641,0.004249,0.249964,0,0);-webkit-transform:matrix(0.214204,-0.003641,0.004249,0.249964,0,0);}
.ma_c01182{transform:matrix(0.214834,-0.003652,0.004249,0.249964,0,0);-ms-transform:matrix(0.214834,-0.003652,0.004249,0.249964,0,0);-webkit-transform:matrix(0.214834,-0.003652,0.004249,0.249964,0,0);}
.m4_c01182{transform:matrix(0.215029,-0.003655,0.004249,0.249964,0,0);-ms-transform:matrix(0.215029,-0.003655,0.004249,0.249964,0,0);-webkit-transform:matrix(0.215029,-0.003655,0.004249,0.249964,0,0);}
.m11_c01182{transform:matrix(0.216709,-0.003684,0.004249,0.249964,0,0);-ms-transform:matrix(0.216709,-0.003684,0.004249,0.249964,0,0);-webkit-transform:matrix(0.216709,-0.003684,0.004249,0.249964,0,0);}
.m16_c01182{transform:matrix(0.216964,-0.003688,0.004249,0.249964,0,0);-ms-transform:matrix(0.216964,-0.003688,0.004249,0.249964,0,0);-webkit-transform:matrix(0.216964,-0.003688,0.004249,0.249964,0,0);}
.m31_c01182{transform:matrix(0.217526,-0.001305,0.001500,0.249996,0,0);-ms-transform:matrix(0.217526,-0.001305,0.001500,0.249996,0,0);-webkit-transform:matrix(0.217526,-0.001305,0.001500,0.249996,0,0);}
.m49_c01182{transform:matrix(0.217576,-0.001305,0.001500,0.249996,0,0);-ms-transform:matrix(0.217576,-0.001305,0.001500,0.249996,0,0);-webkit-transform:matrix(0.217576,-0.001305,0.001500,0.249996,0,0);}
.m8d_c01182{transform:matrix(0.218065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218065,0.000000,0.000000,0.250000,0,0);}
.m1a_c01182{transform:matrix(0.218408,-0.003713,0.004249,0.249964,0,0);-ms-transform:matrix(0.218408,-0.003713,0.004249,0.249964,0,0);-webkit-transform:matrix(0.218408,-0.003713,0.004249,0.249964,0,0);}
.m54_c01182{transform:matrix(0.218936,-0.001314,0.001500,0.249996,0,0);-ms-transform:matrix(0.218936,-0.001314,0.001500,0.249996,0,0);-webkit-transform:matrix(0.218936,-0.001314,0.001500,0.249996,0,0);}
.m65_c01182{transform:matrix(0.219061,-0.001314,0.001500,0.249996,0,0);-ms-transform:matrix(0.219061,-0.001314,0.001500,0.249996,0,0);-webkit-transform:matrix(0.219061,-0.001314,0.001500,0.249996,0,0);}
.m4f_c01182{transform:matrix(0.219076,-0.001314,0.001500,0.249996,0,0);-ms-transform:matrix(0.219076,-0.001314,0.001500,0.249996,0,0);-webkit-transform:matrix(0.219076,-0.001314,0.001500,0.249996,0,0);}
.m42_c01182{transform:matrix(0.219261,-0.001316,0.001500,0.249996,0,0);-ms-transform:matrix(0.219261,-0.001316,0.001500,0.249996,0,0);-webkit-transform:matrix(0.219261,-0.001316,0.001500,0.249996,0,0);}
.mc2_c01182{transform:matrix(0.219937,-0.002419,0.002750,0.249985,0,0);-ms-transform:matrix(0.219937,-0.002419,0.002750,0.249985,0,0);-webkit-transform:matrix(0.219937,-0.002419,0.002750,0.249985,0,0);}
.m51_c01182{transform:matrix(0.219946,-0.001320,0.001500,0.249996,0,0);-ms-transform:matrix(0.219946,-0.001320,0.001500,0.249996,0,0);-webkit-transform:matrix(0.219946,-0.001320,0.001500,0.249996,0,0);}
.m2c_c01182{transform:matrix(0.220026,-0.001320,0.001500,0.249996,0,0);-ms-transform:matrix(0.220026,-0.001320,0.001500,0.249996,0,0);-webkit-transform:matrix(0.220026,-0.001320,0.001500,0.249996,0,0);}
.m3a_c01182{transform:matrix(0.221166,-0.001327,0.001500,0.249996,0,0);-ms-transform:matrix(0.221166,-0.001327,0.001500,0.249996,0,0);-webkit-transform:matrix(0.221166,-0.001327,0.001500,0.249996,0,0);}
.m30_c01182{transform:matrix(0.221711,-0.001330,0.001500,0.249996,0,0);-ms-transform:matrix(0.221711,-0.001330,0.001500,0.249996,0,0);-webkit-transform:matrix(0.221711,-0.001330,0.001500,0.249996,0,0);}
.mb9_c01182{transform:matrix(0.222032,-0.002442,0.002750,0.249985,0,0);-ms-transform:matrix(0.222032,-0.002442,0.002750,0.249985,0,0);-webkit-transform:matrix(0.222032,-0.002442,0.002750,0.249985,0,0);}
.m35_c01182{transform:matrix(0.222041,-0.001332,0.001500,0.249996,0,0);-ms-transform:matrix(0.222041,-0.001332,0.001500,0.249996,0,0);-webkit-transform:matrix(0.222041,-0.001332,0.001500,0.249996,0,0);}
.mf3_c01182{transform:matrix(0.222050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222050,0.000000,0.000000,0.250000,0,0);}
.m95_c01182{transform:matrix(0.222125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222125,0.000000,0.000000,0.250000,0,0);}
.m6_c01182{transform:matrix(0.222208,-0.003778,0.004249,0.249964,0,0);-ms-transform:matrix(0.222208,-0.003778,0.004249,0.249964,0,0);-webkit-transform:matrix(0.222208,-0.003778,0.004249,0.249964,0,0);}
.mf_c01182{transform:matrix(0.223318,-0.003796,0.004249,0.249964,0,0);-ms-transform:matrix(0.223318,-0.003796,0.004249,0.249964,0,0);-webkit-transform:matrix(0.223318,-0.003796,0.004249,0.249964,0,0);}
.m90_c01182{transform:matrix(0.223380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223380,0.000000,0.000000,0.250000,0,0);}
.m98_c01182{transform:matrix(0.223520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223520,0.000000,0.000000,0.250000,0,0);}
.m3d_c01182{transform:matrix(0.223881,-0.001343,0.001500,0.249996,0,0);-ms-transform:matrix(0.223881,-0.001343,0.001500,0.249996,0,0);-webkit-transform:matrix(0.223881,-0.001343,0.001500,0.249996,0,0);}
.m67_c01182{transform:matrix(0.223921,-0.001344,0.001500,0.249996,0,0);-ms-transform:matrix(0.223921,-0.001344,0.001500,0.249996,0,0);-webkit-transform:matrix(0.223921,-0.001344,0.001500,0.249996,0,0);}
.m85_c01182{transform:matrix(0.223970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223970,0.000000,0.000000,0.250000,0,0);}
.mf5_c01182{transform:matrix(0.224125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224125,0.000000,0.000000,0.250000,0,0);}
.m24_c01182{transform:matrix(0.224133,-0.003810,0.004249,0.249964,0,0);-ms-transform:matrix(0.224133,-0.003810,0.004249,0.249964,0,0);-webkit-transform:matrix(0.224133,-0.003810,0.004249,0.249964,0,0);}
.m76_c01182{transform:matrix(0.224785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224785,0.000000,0.000000,0.250000,0,0);}
.me0_c01182{transform:matrix(0.224900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224900,0.000000,0.000000,0.250000,0,0);}
.m21_c01182{transform:matrix(0.225192,-0.003828,0.004249,0.249964,0,0);-ms-transform:matrix(0.225192,-0.003828,0.004249,0.249964,0,0);-webkit-transform:matrix(0.225192,-0.003828,0.004249,0.249964,0,0);}
.mc4_c01182{transform:matrix(0.225301,-0.002478,0.002750,0.249985,0,0);-ms-transform:matrix(0.225301,-0.002478,0.002750,0.249985,0,0);-webkit-transform:matrix(0.225301,-0.002478,0.002750,0.249985,0,0);}
.mae_c01182{transform:matrix(0.225845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225845,0.000000,0.000000,0.250000,0,0);}
.mc6_c01182{transform:matrix(0.226561,-0.002492,0.002750,0.249985,0,0);-ms-transform:matrix(0.226561,-0.002492,0.002750,0.249985,0,0);-webkit-transform:matrix(0.226561,-0.002492,0.002750,0.249985,0,0);}
.m27_c01182{transform:matrix(0.226657,-0.003853,0.004249,0.249964,0,0);-ms-transform:matrix(0.226657,-0.003853,0.004249,0.249964,0,0);-webkit-transform:matrix(0.226657,-0.003853,0.004249,0.249964,0,0);}
.m96_c01182{transform:matrix(0.226815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226815,0.000000,0.000000,0.250000,0,0);}
.m9f_c01182{transform:matrix(0.227430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227430,0.000000,0.000000,0.250000,0,0);}
.m66_c01182{transform:matrix(0.228021,-0.001368,0.001500,0.249996,0,0);-ms-transform:matrix(0.228021,-0.001368,0.001500,0.249996,0,0);-webkit-transform:matrix(0.228021,-0.001368,0.001500,0.249996,0,0);}
.m8f_c01182{transform:matrix(0.228125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228125,0.000000,0.000000,0.250000,0,0);}
.m22_c01182{transform:matrix(0.228192,-0.003879,0.004249,0.249964,0,0);-ms-transform:matrix(0.228192,-0.003879,0.004249,0.249964,0,0);-webkit-transform:matrix(0.228192,-0.003879,0.004249,0.249964,0,0);}
.mc_c01182{transform:matrix(0.228322,-0.003881,0.004249,0.249964,0,0);-ms-transform:matrix(0.228322,-0.003881,0.004249,0.249964,0,0);-webkit-transform:matrix(0.228322,-0.003881,0.004249,0.249964,0,0);}
.m4e_c01182{transform:matrix(0.228736,-0.001372,0.001500,0.249996,0,0);-ms-transform:matrix(0.228736,-0.001372,0.001500,0.249996,0,0);-webkit-transform:matrix(0.228736,-0.001372,0.001500,0.249996,0,0);}
.m9c_c01182{transform:matrix(0.228815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228815,0.000000,0.000000,0.250000,0,0);}
.m5b_c01182{transform:matrix(0.229216,-0.001375,0.001500,0.249996,0,0);-ms-transform:matrix(0.229216,-0.001375,0.001500,0.249996,0,0);-webkit-transform:matrix(0.229216,-0.001375,0.001500,0.249996,0,0);}
.mc8_c01182{transform:matrix(0.229521,-0.002525,0.002750,0.249985,0,0);-ms-transform:matrix(0.229521,-0.002525,0.002750,0.249985,0,0);-webkit-transform:matrix(0.229521,-0.002525,0.002750,0.249985,0,0);}
.ma8_c01182{transform:matrix(0.229525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229525,0.000000,0.000000,0.250000,0,0);}
.m47_c01182{transform:matrix(0.229796,-0.001379,0.001500,0.249996,0,0);-ms-transform:matrix(0.229796,-0.001379,0.001500,0.249996,0,0);-webkit-transform:matrix(0.229796,-0.001379,0.001500,0.249996,0,0);}
.m6e_c01182{transform:matrix(0.230585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230585,0.000000,0.000000,0.250000,0,0);}
.med_c01182{transform:matrix(0.230895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230895,0.000000,0.000000,0.250000,0,0);}
.m63_c01182{transform:matrix(0.231556,-0.001389,0.001500,0.249996,0,0);-ms-transform:matrix(0.231556,-0.001389,0.001500,0.249996,0,0);-webkit-transform:matrix(0.231556,-0.001389,0.001500,0.249996,0,0);}
.mbb_c01182{transform:matrix(0.231571,-0.002547,0.002750,0.249985,0,0);-ms-transform:matrix(0.231571,-0.002547,0.002750,0.249985,0,0);-webkit-transform:matrix(0.231571,-0.002547,0.002750,0.249985,0,0);}
.me_c01182{transform:matrix(0.231587,-0.003937,0.004249,0.249964,0,0);-ms-transform:matrix(0.231587,-0.003937,0.004249,0.249964,0,0);-webkit-transform:matrix(0.231587,-0.003937,0.004249,0.249964,0,0);}
.m68_c01182{transform:matrix(0.231801,-0.001391,0.001500,0.249996,0,0);-ms-transform:matrix(0.231801,-0.001391,0.001500,0.249996,0,0);-webkit-transform:matrix(0.231801,-0.001391,0.001500,0.249996,0,0);}
.m36_c01182{transform:matrix(0.231981,-0.001392,0.001500,0.249996,0,0);-ms-transform:matrix(0.231981,-0.001392,0.001500,0.249996,0,0);-webkit-transform:matrix(0.231981,-0.001392,0.001500,0.249996,0,0);}
.m1b_c01182{transform:matrix(0.232486,-0.003952,0.004249,0.249964,0,0);-ms-transform:matrix(0.232486,-0.003952,0.004249,0.249964,0,0);-webkit-transform:matrix(0.232486,-0.003952,0.004249,0.249964,0,0);}
.md6_c01182{transform:matrix(0.232595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232595,0.000000,0.000000,0.250000,0,0);}
.m6a_c01182{transform:matrix(0.232981,-0.001398,0.001500,0.249996,0,0);-ms-transform:matrix(0.232981,-0.001398,0.001500,0.249996,0,0);-webkit-transform:matrix(0.232981,-0.001398,0.001500,0.249996,0,0);}
.me5_c01182{transform:matrix(0.232985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232985,0.000000,0.000000,0.250000,0,0);}
.m44_c01182{transform:matrix(0.233326,-0.001400,0.001500,0.249996,0,0);-ms-transform:matrix(0.233326,-0.001400,0.001500,0.249996,0,0);-webkit-transform:matrix(0.233326,-0.001400,0.001500,0.249996,0,0);}
.m64_c01182{transform:matrix(0.233681,-0.001402,0.001500,0.249996,0,0);-ms-transform:matrix(0.233681,-0.001402,0.001500,0.249996,0,0);-webkit-transform:matrix(0.233681,-0.001402,0.001500,0.249996,0,0);}
.m75_c01182{transform:matrix(0.233695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233695,0.000000,0.000000,0.250000,0,0);}
.mea_c01182{transform:matrix(0.234165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234165,0.000000,0.000000,0.250000,0,0);}
.md1_c01182{transform:matrix(0.234225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234225,0.000000,0.000000,0.250000,0,0);}
.m5e_c01182{transform:matrix(0.234401,-0.001406,0.001500,0.249996,0,0);-ms-transform:matrix(0.234401,-0.001406,0.001500,0.249996,0,0);-webkit-transform:matrix(0.234401,-0.001406,0.001500,0.249996,0,0);}
.m4a_c01182{transform:matrix(0.234771,-0.001409,0.001500,0.249996,0,0);-ms-transform:matrix(0.234771,-0.001409,0.001500,0.249996,0,0);-webkit-transform:matrix(0.234771,-0.001409,0.001500,0.249996,0,0);}
.mb7_c01182{transform:matrix(0.234811,-0.002583,0.002750,0.249985,0,0);-ms-transform:matrix(0.234811,-0.002583,0.002750,0.249985,0,0);-webkit-transform:matrix(0.234811,-0.002583,0.002750,0.249985,0,0);}
.m79_c01182{transform:matrix(0.234885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234885,0.000000,0.000000,0.250000,0,0);}
.m29_c01182{transform:matrix(0.234986,-0.001410,0.001500,0.249996,0,0);-ms-transform:matrix(0.234986,-0.001410,0.001500,0.249996,0,0);-webkit-transform:matrix(0.234986,-0.001410,0.001500,0.249996,0,0);}
.m8b_c01182{transform:matrix(0.235080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235080,0.000000,0.000000,0.250000,0,0);}
.m37_c01182{transform:matrix(0.235466,-0.001413,0.001500,0.249996,0,0);-ms-transform:matrix(0.235466,-0.001413,0.001500,0.249996,0,0);-webkit-transform:matrix(0.235466,-0.001413,0.001500,0.249996,0,0);}
.m94_c01182{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m25_c01182{transform:matrix(0.235766,-0.004008,0.004249,0.249964,0,0);-ms-transform:matrix(0.235766,-0.004008,0.004249,0.249964,0,0);-webkit-transform:matrix(0.235766,-0.004008,0.004249,0.249964,0,0);}
.m4b_c01182{transform:matrix(0.235956,-0.001416,0.001500,0.249996,0,0);-ms-transform:matrix(0.235956,-0.001416,0.001500,0.249996,0,0);-webkit-transform:matrix(0.235956,-0.001416,0.001500,0.249996,0,0);}
.m56_c01182{transform:matrix(0.236246,-0.001417,0.001500,0.249996,0,0);-ms-transform:matrix(0.236246,-0.001417,0.001500,0.249996,0,0);-webkit-transform:matrix(0.236246,-0.001417,0.001500,0.249996,0,0);}
.m7c_c01182{transform:matrix(0.236620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236620,0.000000,0.000000,0.250000,0,0);}
.mb6_c01182{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.ma0_c01182{transform:matrix(0.237185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237185,0.000000,0.000000,0.250000,0,0);}
.m6c_c01182{transform:matrix(0.237195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237195,0.000000,0.000000,0.250000,0,0);}
.m13_c01182{transform:matrix(0.237486,-0.004037,0.004249,0.249964,0,0);-ms-transform:matrix(0.237486,-0.004037,0.004249,0.249964,0,0);-webkit-transform:matrix(0.237486,-0.004037,0.004249,0.249964,0,0);}
.m52_c01182{transform:matrix(0.237801,-0.001427,0.001500,0.249996,0,0);-ms-transform:matrix(0.237801,-0.001427,0.001500,0.249996,0,0);-webkit-transform:matrix(0.237801,-0.001427,0.001500,0.249996,0,0);}
.m7b_c01182{transform:matrix(0.238685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238685,0.000000,0.000000,0.250000,0,0);}
.mc1_c01182{transform:matrix(0.238731,-0.002626,0.002750,0.249985,0,0);-ms-transform:matrix(0.238731,-0.002626,0.002750,0.249985,0,0);-webkit-transform:matrix(0.238731,-0.002626,0.002750,0.249985,0,0);}
.m14_c01182{transform:matrix(0.239235,-0.004067,0.004249,0.249964,0,0);-ms-transform:matrix(0.239235,-0.004067,0.004249,0.249964,0,0);-webkit-transform:matrix(0.239235,-0.004067,0.004249,0.249964,0,0);}
.m33_c01182{transform:matrix(0.240016,-0.001440,0.001500,0.249996,0,0);-ms-transform:matrix(0.240016,-0.001440,0.001500,0.249996,0,0);-webkit-transform:matrix(0.240016,-0.001440,0.001500,0.249996,0,0);}
.m15_c01182{transform:matrix(0.240075,-0.004081,0.004249,0.249964,0,0);-ms-transform:matrix(0.240075,-0.004081,0.004249,0.249964,0,0);-webkit-transform:matrix(0.240075,-0.004081,0.004249,0.249964,0,0);}
.mce_c01182{transform:matrix(0.240835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240835,0.000000,0.000000,0.250000,0,0);}
.m41_c01182{transform:matrix(0.241041,-0.001446,0.001500,0.249996,0,0);-ms-transform:matrix(0.241041,-0.001446,0.001500,0.249996,0,0);-webkit-transform:matrix(0.241041,-0.001446,0.001500,0.249996,0,0);}
.m10_c01182{transform:matrix(0.241755,-0.004110,0.004249,0.249964,0,0);-ms-transform:matrix(0.241755,-0.004110,0.004249,0.249964,0,0);-webkit-transform:matrix(0.241755,-0.004110,0.004249,0.249964,0,0);}
.m53_c01182{transform:matrix(0.242281,-0.001454,0.001500,0.249996,0,0);-ms-transform:matrix(0.242281,-0.001454,0.001500,0.249996,0,0);-webkit-transform:matrix(0.242281,-0.001454,0.001500,0.249996,0,0);}
.m3b_c01182{transform:matrix(0.242366,-0.001454,0.001500,0.249996,0,0);-ms-transform:matrix(0.242366,-0.001454,0.001500,0.249996,0,0);-webkit-transform:matrix(0.242366,-0.001454,0.001500,0.249996,0,0);}
.mdf_c01182{transform:matrix(0.242525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242525,0.000000,0.000000,0.250000,0,0);}
.m8e_c01182{transform:matrix(0.242630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242630,0.000000,0.000000,0.250000,0,0);}
.me9_c01182{transform:matrix(0.243040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243040,0.000000,0.000000,0.250000,0,0);}
.m88_c01182{transform:matrix(0.243495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243495,0.000000,0.000000,0.250000,0,0);}
.m80_c01182{transform:matrix(0.243540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243540,0.000000,0.000000,0.250000,0,0);}
.m3f_c01182{transform:matrix(0.244056,-0.001464,0.001500,0.249996,0,0);-ms-transform:matrix(0.244056,-0.001464,0.001500,0.249996,0,0);-webkit-transform:matrix(0.244056,-0.001464,0.001500,0.249996,0,0);}
.m62_c01182{transform:matrix(0.244176,-0.001465,0.001500,0.249996,0,0);-ms-transform:matrix(0.244176,-0.001465,0.001500,0.249996,0,0);-webkit-transform:matrix(0.244176,-0.001465,0.001500,0.249996,0,0);}
.mca_c01182{transform:matrix(0.244435,-0.002689,0.002750,0.249985,0,0);-ms-transform:matrix(0.244435,-0.002689,0.002750,0.249985,0,0);-webkit-transform:matrix(0.244435,-0.002689,0.002750,0.249985,0,0);}
.ma9_c01182{transform:matrix(0.244475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244475,0.000000,0.000000,0.250000,0,0);}
.m99_c01182{transform:matrix(0.244760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244760,0.000000,0.000000,0.250000,0,0);}
.m7a_c01182{transform:matrix(0.245140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245140,0.000000,0.000000,0.250000,0,0);}
.m43_c01182{transform:matrix(0.245561,-0.001473,0.001500,0.249996,0,0);-ms-transform:matrix(0.245561,-0.001473,0.001500,0.249996,0,0);-webkit-transform:matrix(0.245561,-0.001473,0.001500,0.249996,0,0);}
.md_c01182{transform:matrix(0.245680,-0.004177,0.004249,0.249964,0,0);-ms-transform:matrix(0.245680,-0.004177,0.004249,0.249964,0,0);-webkit-transform:matrix(0.245680,-0.004177,0.004249,0.249964,0,0);}
.mee_c01182{transform:matrix(0.246020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246020,0.000000,0.000000,0.250000,0,0);}
.m2d_c01182{transform:matrix(0.246296,-0.001478,0.001500,0.249996,0,0);-ms-transform:matrix(0.246296,-0.001478,0.001500,0.249996,0,0);-webkit-transform:matrix(0.246296,-0.001478,0.001500,0.249996,0,0);}
.m1e_c01182{transform:matrix(0.246754,-0.004195,0.004249,0.249964,0,0);-ms-transform:matrix(0.246754,-0.004195,0.004249,0.249964,0,0);-webkit-transform:matrix(0.246754,-0.004195,0.004249,0.249964,0,0);}
.m92_c01182{transform:matrix(0.247545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247545,0.000000,0.000000,0.250000,0,0);}
.mcb_c01182{transform:matrix(0.248695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248695,0.000000,0.000000,0.250000,0,0);}
.m8a_c01182{transform:matrix(0.251295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251295,0.000000,0.000000,0.250000,0,0);}
.m73_c01182{transform:matrix(0.251755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251755,0.000000,0.000000,0.250000,0,0);}
.m9_c01182{transform:matrix(0.251839,-0.004281,0.004249,0.249964,0,0);-ms-transform:matrix(0.251839,-0.004281,0.004249,0.249964,0,0);-webkit-transform:matrix(0.251839,-0.004281,0.004249,0.249964,0,0);}
.m5_c01182{transform:matrix(0.252039,-0.004285,0.004249,0.249964,0,0);-ms-transform:matrix(0.252039,-0.004285,0.004249,0.249964,0,0);-webkit-transform:matrix(0.252039,-0.004285,0.004249,0.249964,0,0);}
.mb2_c01182{transform:matrix(0.252115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252115,0.000000,0.000000,0.250000,0,0);}
.m55_c01182{transform:matrix(0.252345,-0.001514,0.001500,0.249996,0,0);-ms-transform:matrix(0.252345,-0.001514,0.001500,0.249996,0,0);-webkit-transform:matrix(0.252345,-0.001514,0.001500,0.249996,0,0);}
.mc7_c01182{transform:matrix(0.252390,-0.002776,0.002750,0.249985,0,0);-ms-transform:matrix(0.252390,-0.002776,0.002750,0.249985,0,0);-webkit-transform:matrix(0.252390,-0.002776,0.002750,0.249985,0,0);}
.m5c_c01182{transform:matrix(0.252530,-0.001515,0.001500,0.249996,0,0);-ms-transform:matrix(0.252530,-0.001515,0.001500,0.249996,0,0);-webkit-transform:matrix(0.252530,-0.001515,0.001500,0.249996,0,0);}
.ma3_c01182{transform:matrix(0.252630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252630,0.000000,0.000000,0.250000,0,0);}
.m2a_c01182{transform:matrix(0.252990,-0.001518,0.001500,0.249996,0,0);-ms-transform:matrix(0.252990,-0.001518,0.001500,0.249996,0,0);-webkit-transform:matrix(0.252990,-0.001518,0.001500,0.249996,0,0);}
.mb0_c01182{transform:matrix(0.253035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253035,0.000000,0.000000,0.250000,0,0);}
.m1d_c01182{transform:matrix(0.253933,-0.004317,0.004249,0.249964,0,0);-ms-transform:matrix(0.253933,-0.004317,0.004249,0.249964,0,0);-webkit-transform:matrix(0.253933,-0.004317,0.004249,0.249964,0,0);}
.mab_c01182{transform:matrix(0.254170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254170,0.000000,0.000000,0.250000,0,0);}
.mc5_c01182{transform:matrix(0.254490,-0.002799,0.002750,0.249985,0,0);-ms-transform:matrix(0.254490,-0.002799,0.002750,0.249985,0,0);-webkit-transform:matrix(0.254490,-0.002799,0.002750,0.249985,0,0);}
.m12_c01182{transform:matrix(0.254663,-0.004329,0.004249,0.249964,0,0);-ms-transform:matrix(0.254663,-0.004329,0.004249,0.249964,0,0);-webkit-transform:matrix(0.254663,-0.004329,0.004249,0.249964,0,0);}
.m5a_c01182{transform:matrix(0.254750,-0.001529,0.001500,0.249996,0,0);-ms-transform:matrix(0.254750,-0.001529,0.001500,0.249996,0,0);-webkit-transform:matrix(0.254750,-0.001529,0.001500,0.249996,0,0);}
.m3_c01182{transform:matrix(0.254813,-0.004332,0.004249,0.249964,0,0);-ms-transform:matrix(0.254813,-0.004332,0.004249,0.249964,0,0);-webkit-transform:matrix(0.254813,-0.004332,0.004249,0.249964,0,0);}
.m3e_c01182{transform:matrix(0.254910,-0.001529,0.001500,0.249996,0,0);-ms-transform:matrix(0.254910,-0.001529,0.001500,0.249996,0,0);-webkit-transform:matrix(0.254910,-0.001529,0.001500,0.249996,0,0);}
.mc3_c01182{transform:matrix(0.255105,-0.002806,0.002750,0.249985,0,0);-ms-transform:matrix(0.255105,-0.002806,0.002750,0.249985,0,0);-webkit-transform:matrix(0.255105,-0.002806,0.002750,0.249985,0,0);}
.m7_c01182{transform:matrix(0.255518,-0.004344,0.004249,0.249964,0,0);-ms-transform:matrix(0.255518,-0.004344,0.004249,0.249964,0,0);-webkit-transform:matrix(0.255518,-0.004344,0.004249,0.249964,0,0);}
.m18_c01182{transform:matrix(0.256208,-0.004356,0.004249,0.249964,0,0);-ms-transform:matrix(0.256208,-0.004356,0.004249,0.249964,0,0);-webkit-transform:matrix(0.256208,-0.004356,0.004249,0.249964,0,0);}
.m40_c01182{transform:matrix(0.256215,-0.001537,0.001500,0.249996,0,0);-ms-transform:matrix(0.256215,-0.001537,0.001500,0.249996,0,0);-webkit-transform:matrix(0.256215,-0.001537,0.001500,0.249996,0,0);}
.m58_c01182{transform:matrix(0.256280,-0.001538,0.001500,0.249996,0,0);-ms-transform:matrix(0.256280,-0.001538,0.001500,0.249996,0,0);-webkit-transform:matrix(0.256280,-0.001538,0.001500,0.249996,0,0);}
.m97_c01182{transform:matrix(0.256340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256340,0.000000,0.000000,0.250000,0,0);}
.m9a_c01182{transform:matrix(0.256745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256745,0.000000,0.000000,0.250000,0,0);}
.m1f_c01182{transform:matrix(0.256883,-0.004367,0.004249,0.249964,0,0);-ms-transform:matrix(0.256883,-0.004367,0.004249,0.249964,0,0);-webkit-transform:matrix(0.256883,-0.004367,0.004249,0.249964,0,0);}
.m1c_c01182{transform:matrix(0.256958,-0.004368,0.004249,0.249964,0,0);-ms-transform:matrix(0.256958,-0.004368,0.004249,0.249964,0,0);-webkit-transform:matrix(0.256958,-0.004368,0.004249,0.249964,0,0);}
.meb_c01182{transform:matrix(0.257100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257100,0.000000,0.000000,0.250000,0,0);}
.m87_c01182{transform:matrix(0.258905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258905,0.000000,0.000000,0.250000,0,0);}
.m84_c01182{transform:matrix(0.259390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259390,0.000000,0.000000,0.250000,0,0);}
.m91_c01182{transform:matrix(0.259760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259760,0.000000,0.000000,0.250000,0,0);}
.m28_c01182{transform:matrix(0.260155,-0.001561,0.001500,0.249996,0,0);-ms-transform:matrix(0.260155,-0.001561,0.001500,0.249996,0,0);-webkit-transform:matrix(0.260155,-0.001561,0.001500,0.249996,0,0);}
.m82_c01182{transform:matrix(0.260265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260265,0.000000,0.000000,0.250000,0,0);}
.mcc_c01182{transform:matrix(0.260425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260425,0.000000,0.000000,0.250000,0,0);}
.m8c_c01182{transform:matrix(0.260485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260485,0.000000,0.000000,0.250000,0,0);}
.m2b_c01182{transform:matrix(0.260725,-0.001564,0.001500,0.249996,0,0);-ms-transform:matrix(0.260725,-0.001564,0.001500,0.249996,0,0);-webkit-transform:matrix(0.260725,-0.001564,0.001500,0.249996,0,0);}
.md5_c01182{transform:matrix(0.260870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260870,0.000000,0.000000,0.250000,0,0);}
.me7_c01182{transform:matrix(0.260890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260890,0.000000,0.000000,0.250000,0,0);}
.m9e_c01182{transform:matrix(0.261245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261245,0.000000,0.000000,0.250000,0,0);}
.m7e_c01182{transform:matrix(0.261480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261480,0.000000,0.000000,0.250000,0,0);}
.m71_c01182{transform:matrix(0.261920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261920,0.000000,0.000000,0.250000,0,0);}
.mb4_c01182{transform:matrix(0.262290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262290,0.000000,0.000000,0.250000,0,0);}
.m83_c01182{transform:matrix(0.262365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262365,0.000000,0.000000,0.250000,0,0);}
.md3_c01182{transform:matrix(0.262815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262815,0.000000,0.000000,0.250000,0,0);}
.m19_c01182{transform:matrix(0.263157,-0.004474,0.004249,0.249964,0,0);-ms-transform:matrix(0.263157,-0.004474,0.004249,0.249964,0,0);-webkit-transform:matrix(0.263157,-0.004474,0.004249,0.249964,0,0);}
.mac_c01182{transform:matrix(0.265700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265700,0.000000,0.000000,0.250000,0,0);}
.mad_c01182{transform:matrix(0.268125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268125,0.000000,0.000000,0.250000,0,0);}
.mec_c01182{transform:matrix(0.268260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268260,0.000000,0.000000,0.250000,0,0);}
.m81_c01182{transform:matrix(0.268990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268990,0.000000,0.000000,0.250000,0,0);}
.me3_c01182{transform:matrix(0.269190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269190,0.000000,0.000000,0.250000,0,0);}
.m9d_c01182{transform:matrix(0.269440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269440,0.000000,0.000000,0.250000,0,0);}
.m86_c01182{transform:matrix(0.269445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269445,0.000000,0.000000,0.250000,0,0);}
.maf_c01182{transform:matrix(0.269510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269510,0.000000,0.000000,0.250000,0,0);}
.ma1_c01182{transform:matrix(0.270185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270185,0.000000,0.000000,0.250000,0,0);}
.ma4_c01182{transform:matrix(0.270645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270645,0.000000,0.000000,0.250000,0,0);}
.md4_c01182{transform:matrix(0.271505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271505,0.000000,0.000000,0.250000,0,0);}
.me2_c01182{transform:matrix(0.271805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271805,0.000000,0.000000,0.250000,0,0);}
.ma6_c01182{transform:matrix(0.272285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272285,0.000000,0.000000,0.250000,0,0);}
.maa_c01182{transform:matrix(0.272950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272950,0.000000,0.000000,0.250000,0,0);}
.mcf_c01182{transform:matrix(0.273160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273160,0.000000,0.000000,0.250000,0,0);}
.mcd_c01182{transform:matrix(0.273635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273635,0.000000,0.000000,0.250000,0,0);}
.mb1_c01182{transform:matrix(0.273810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273810,0.000000,0.000000,0.250000,0,0);}
.md2_c01182{transform:matrix(0.274155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274155,0.000000,0.000000,0.250000,0,0);}
.m74_c01182{transform:matrix(0.274705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274705,0.000000,0.000000,0.250000,0,0);}
.ma7_c01182{transform:matrix(0.275080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275080,0.000000,0.000000,0.250000,0,0);}
.ma5_c01182{transform:matrix(0.275170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275170,0.000000,0.000000,0.250000,0,0);}
.m72_c01182{transform:matrix(0.275470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275470,0.000000,0.000000,0.250000,0,0);}
.me4_c01182{transform:matrix(0.277125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277125,0.000000,0.000000,0.250000,0,0);}
.mf2_c01182{transform:matrix(0.277480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277480,0.000000,0.000000,0.250000,0,0);}
.mdc_c01182{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.me8_c01182{transform:matrix(0.278655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278655,0.000000,0.000000,0.250000,0,0);}
.mef_c01182{transform:matrix(0.278680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278680,0.000000,0.000000,0.250000,0,0);}
.md0_c01182{transform:matrix(0.279250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279250,0.000000,0.000000,0.250000,0,0);}
.md7_c01182{transform:matrix(0.280335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280335,0.000000,0.000000,0.250000,0,0);}
.m6f_c01182{transform:matrix(0.280395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280395,0.000000,0.000000,0.250000,0,0);}
.m9b_c01182{transform:matrix(0.280860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280860,0.000000,0.000000,0.250000,0,0);}
.m70_c01182{transform:matrix(0.281260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281260,0.000000,0.000000,0.250000,0,0);}
.md8_c01182{transform:matrix(0.281515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281515,0.000000,0.000000,0.250000,0,0);}
.md9_c01182{transform:matrix(0.281950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281950,0.000000,0.000000,0.250000,0,0);}
.mf1_c01182{transform:matrix(0.282365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282365,0.000000,0.000000,0.250000,0,0);}
.mb3_c01182{transform:matrix(0.282635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282635,0.000000,0.000000,0.250000,0,0);}
.mdb_c01182{transform:matrix(0.282810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282810,0.000000,0.000000,0.250000,0,0);}
.me6_c01182{transform:matrix(0.283300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283300,0.000000,0.000000,0.250000,0,0);}
.ma2_c01182{transform:matrix(0.285685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285685,0.000000,0.000000,0.250000,0,0);}
.m7f_c01182{transform:matrix(0.303880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303880,0.000000,0.000000,0.250000,0,0);}
.m61_c01182{transform:matrix(0.328279,-0.001970,0.001500,0.249996,0,0);-ms-transform:matrix(0.328279,-0.001970,0.001500,0.249996,0,0);-webkit-transform:matrix(0.328279,-0.001970,0.001500,0.249996,0,0);}
.m17_c01182{transform:matrix(0.337526,-0.005738,0.004249,0.249964,0,0);-ms-transform:matrix(0.337526,-0.005738,0.004249,0.249964,0,0);-webkit-transform:matrix(0.337526,-0.005738,0.004249,0.249964,0,0);}
.m0_c01182{transform:matrix(0.395820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395820,0.000000,0.000000,0.250000,0,0);}
.m1_c01182{transform:matrix(0.434200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434200,0.000000,0.000000,0.250000,0,0);}
.mb5_c01182{transform:matrix(0.966000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.966000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.966000,0.000000,0.000000,0.250000,0,0);}
.v0_c01182{vertical-align:0.000000px;}
.ls0_c01182{letter-spacing:0.000000px;}
.sc__c01182{text-shadow:none;}
.sc0_c01182{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__c01182{-webkit-text-stroke:0px transparent;}
.sc0_c01182{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01182{word-spacing:0.000000px;}
.fc0_c01182{color:transparent;}
.fs0_c01182{font-size:42.000000px;}
.fs6_c01182{font-size:72.000000px;}
.fs7_c01182{font-size:78.000000px;}
.fs3_c01182{font-size:78.001404px;}
.fs9_c01182{font-size:78.004719px;}
.fs1_c01182{font-size:78.011270px;}
.fs5_c01182{font-size:84.000000px;}
.fs4_c01182{font-size:84.001512px;}
.fs8_c01182{font-size:84.005082px;}
.fs2_c01182{font-size:84.012137px;}
.y0_c01182{bottom:0.000000px;}
.y9d_c01182{bottom:75.168000px;}
.y9c_c01182{bottom:112.773000px;}
.y9b_c01182{bottom:147.429000px;}
.y9a_c01182{bottom:183.756000px;}
.y95_c01182{bottom:216.003000px;}
.y96_c01182{bottom:216.525000px;}
.y97_c01182{bottom:217.245000px;}
.y98_c01182{bottom:219.169500px;}
.y99_c01182{bottom:221.844000px;}
.y94_c01182{bottom:253.617000px;}
.y93_c01182{bottom:291.000000px;}
.y8b_c01182{bottom:357.483682px;}
.y8c_c01182{bottom:359.460186px;}
.y8d_c01182{bottom:360.130477px;}
.y8e_c01182{bottom:362.106502px;}
.y8f_c01182{bottom:362.740213px;}
.y90_c01182{bottom:364.297179px;}
.y91_c01182{bottom:365.193517px;}
.y92_c01182{bottom:365.863627px;}
.y7f_c01182{bottom:392.581500px;}
.y80_c01182{bottom:393.555726px;}
.y81_c01182{bottom:393.915558px;}
.y82_c01182{bottom:394.518468px;}
.y83_c01182{bottom:394.871980px;}
.y84_c01182{bottom:395.884816px;}
.y85_c01182{bottom:396.709734px;}
.y86_c01182{bottom:397.066414px;}
.y87_c01182{bottom:397.698661px;}
.y88_c01182{bottom:398.295895px;}
.y89_c01182{bottom:398.664472px;}
.y8a_c01182{bottom:400.006500px;}
.y7e_c01182{bottom:431.172000px;}
.y7d_c01182{bottom:466.015500px;}
.y7c_c01182{bottom:502.468500px;}
.y7b_c01182{bottom:538.722000px;}
.y7a_c01182{bottom:573.916500px;}
.y70_c01182{bottom:607.230000px;}
.y71_c01182{bottom:607.758000px;}
.y72_c01182{bottom:608.017500px;}
.y73_c01182{bottom:608.208000px;}
.y74_c01182{bottom:608.679000px;}
.y75_c01182{bottom:609.291000px;}
.y76_c01182{bottom:610.141500px;}
.y77_c01182{bottom:610.738500px;}
.y78_c01182{bottom:610.941000px;}
.y79_c01182{bottom:611.398500px;}
.y6f_c01182{bottom:645.570000px;}
.y6e_c01182{bottom:681.858000px;}
.y6b_c01182{bottom:748.178373px;}
.y6c_c01182{bottom:749.485413px;}
.y6d_c01182{bottom:750.440742px;}
.y60_c01182{bottom:783.808131px;}
.y61_c01182{bottom:784.151472px;}
.y62_c01182{bottom:784.942257px;}
.y63_c01182{bottom:785.212275px;}
.y64_c01182{bottom:785.474511px;}
.y65_c01182{bottom:786.189303px;}
.y66_c01182{bottom:786.443337px;}
.y67_c01182{bottom:787.237488px;}
.y68_c01182{bottom:788.030019px;}
.y69_c01182{bottom:788.390523px;}
.y6a_c01182{bottom:789.012948px;}
.y55_c01182{bottom:819.990084px;}
.y56_c01182{bottom:820.439544px;}
.y57_c01182{bottom:821.130570px;}
.y58_c01182{bottom:821.389506px;}
.y59_c01182{bottom:822.013524px;}
.y5a_c01182{bottom:822.188406px;}
.y5b_c01182{bottom:822.806262px;}
.y5c_c01182{bottom:823.519317px;}
.y5d_c01182{bottom:823.790955px;}
.y5e_c01182{bottom:824.762775px;}
.y5f_c01182{bottom:824.950404px;}
.y47_c01182{bottom:855.899937px;}
.y48_c01182{bottom:856.221969px;}
.y49_c01182{bottom:856.548507px;}
.y4a_c01182{bottom:857.104092px;}
.y4b_c01182{bottom:857.320944px;}
.y4c_c01182{bottom:857.759181px;}
.y4d_c01182{bottom:858.647391px;}
.y4e_c01182{bottom:859.528011px;}
.y4f_c01182{bottom:859.868622px;}
.y50_c01182{bottom:860.192013px;}
.y51_c01182{bottom:860.969109px;}
.y52_c01182{bottom:861.430530px;}
.y53_c01182{bottom:862.078938px;}
.y54_c01182{bottom:862.513731px;}
.y3c_c01182{bottom:891.268587px;}
.y3d_c01182{bottom:891.853935px;}
.y3e_c01182{bottom:892.150620px;}
.y3f_c01182{bottom:892.554675px;}
.y40_c01182{bottom:893.630799px;}
.y41_c01182{bottom:894.034737px;}
.y42_c01182{bottom:894.822108px;}
.y43_c01182{bottom:895.734198px;}
.y44_c01182{bottom:895.923450px;}
.y45_c01182{bottom:896.242179px;}
.y46_c01182{bottom:896.920686px;}
.y30_c01182{bottom:925.560597px;}
.y31_c01182{bottom:925.934091px;}
.y32_c01182{bottom:926.784645px;}
.y33_c01182{bottom:927.378708px;}
.y34_c01182{bottom:927.993237px;}
.y35_c01182{bottom:929.195130px;}
.y36_c01182{bottom:929.557770px;}
.y37_c01182{bottom:930.181623px;}
.y38_c01182{bottom:931.022475px;}
.y39_c01182{bottom:932.249292px;}
.y3a_c01182{bottom:932.507223px;}
.y3b_c01182{bottom:932.857581px;}
.y29_c01182{bottom:963.900000px;}
.y2a_c01182{bottom:964.815291px;}
.y2b_c01182{bottom:965.087442px;}
.y2c_c01182{bottom:965.675520px;}
.y2d_c01182{bottom:966.354201px;}
.y2e_c01182{bottom:966.613509px;}
.y2f_c01182{bottom:967.144950px;}
.y21_c01182{bottom:1031.925531px;}
.y22_c01182{bottom:1032.294150px;}
.y23_c01182{bottom:1033.128909px;}
.y24_c01182{bottom:1034.123840px;}
.y25_c01182{bottom:1034.705097px;}
.y26_c01182{bottom:1035.554337px;}
.y27_c01182{bottom:1036.647830px;}
.y28_c01182{bottom:1037.013410px;}
.y18_c01182{bottom:1066.760352px;}
.y19_c01182{bottom:1068.218609px;}
.y1a_c01182{bottom:1068.700275px;}
.y1b_c01182{bottom:1069.312892px;}
.y1c_c01182{bottom:1070.519330px;}
.y1d_c01182{bottom:1070.896811px;}
.y1e_c01182{bottom:1072.111070px;}
.y1f_c01182{bottom:1072.472999px;}
.y20_c01182{bottom:1073.218640px;}
.yd_c01182{bottom:1099.437386px;}
.ye_c01182{bottom:1100.133752px;}
.yf_c01182{bottom:1101.117611px;}
.y10_c01182{bottom:1102.228163px;}
.y11_c01182{bottom:1102.834379px;}
.y12_c01182{bottom:1104.209537px;}
.y13_c01182{bottom:1104.859364px;}
.y14_c01182{bottom:1105.773593px;}
.y15_c01182{bottom:1106.703309px;}
.y16_c01182{bottom:1107.156558px;}
.y17_c01182{bottom:1108.751589px;}
.y2_c01182{bottom:1134.274500px;}
.y3_c01182{bottom:1135.766276px;}
.y4_c01182{bottom:1136.335818px;}
.y5_c01182{bottom:1138.400630px;}
.y6_c01182{bottom:1138.782645px;}
.y7_c01182{bottom:1140.456746px;}
.y8_c01182{bottom:1141.036182px;}
.y9_c01182{bottom:1142.531298px;}
.ya_c01182{bottom:1143.123561px;}
.yb_c01182{bottom:1143.688131px;}
.yc_c01182{bottom:1144.616280px;}
.y1_c01182{bottom:1217.686500px;}
.h2_c01182{height:42.000000px;}
.h8_c01182{height:72.000000px;}
.h9_c01182{height:78.000000px;}
.h5_c01182{height:78.001404px;}
.hb_c01182{height:78.004719px;}
.h3_c01182{height:78.011270px;}
.h7_c01182{height:84.000000px;}
.h6_c01182{height:84.001512px;}
.ha_c01182{height:84.005082px;}
.h4_c01182{height:84.012137px;}
.h1_c01182{height:1258.500000px;}
.h0_c01182{height:1258.740000px;}
.w0_c01182{width:904.200000px;}
.w1_c01182{width:904.500000px;}
.x0_c01182{left:0.000000px;}
.x4_c01182{left:132.607500px;}
.x1f_c01182{left:134.290416px;}
.x34_c01182{left:136.219338px;}
.x4b_c01182{left:137.788134px;}
.x5f_c01182{left:139.410000px;}
.x82_c01182{left:141.208500px;}
.xae_c01182{left:143.100000px;}
.xb5_c01182{left:144.160500px;}
.xc4_c01182{left:146.880000px;}
.x20_c01182{left:167.800833px;}
.x69_c01182{left:171.718500px;}
.x8c_c01182{left:173.068500px;}
.xb6_c01182{left:176.818500px;}
.x4c_c01182{left:180.761121px;}
.xf_c01182{left:182.481635px;}
.x43_c01182{left:191.805798px;}
.x74_c01182{left:194.668500px;}
.x35_c01182{left:201.276168px;}
.x8d_c01182{left:205.738500px;}
.x55_c01182{left:214.009575px;}
.x5_c01182{left:220.359000px;}
.xb7_c01182{left:221.842500px;}
.x60_c01182{left:227.424000px;}
.x97_c01182{left:229.651500px;}
.xc5_c01182{left:233.010000px;}
.x36_c01182{left:234.223074px;}
.x83_c01182{left:238.138500px;}
.xa0_c01182{left:240.887865px;}
.x21_c01182{left:243.735585px;}
.x27_c01182{left:245.523000px;}
.x58_c01182{left:248.940000px;}
.xa6_c01182{left:251.370000px;}
.x10_c01182{left:252.712205px;}
.x6_c01182{left:253.861500px;}
.xb9_c01182{left:254.880000px;}
.x3b_c01182{left:256.346142px;}
.x6a_c01182{left:260.008500px;}
.x75_c01182{left:261.358500px;}
.x98_c01182{left:262.363500px;}
.x18_c01182{left:265.569041px;}
.x61_c01182{left:270.643500px;}
.xa1_c01182{left:274.411049px;}
.x3c_c01182{left:277.987620px;}
.x37_c01182{left:279.064764px;}
.x6b_c01182{left:281.338500px;}
.x8e_c01182{left:283.498500px;}
.xa7_c01182{left:285.930000px;}
.xaf_c01182{left:297.000000px;}
.x2d_c01182{left:299.612067px;}
.x62_c01182{left:302.506500px;}
.x8f_c01182{left:304.828500px;}
.x19_c01182{left:309.348003px;}
.x44_c01182{left:310.631376px;}
.x4d_c01182{left:313.310028px;}
.x76_c01182{left:315.358500px;}
.x99_c01182{left:317.173500px;}
.x3d_c01182{left:321.776067px;}
.x84_c01182{left:327.508500px;}
.xb0_c01182{left:328.860000px;}
.x11_c01182{left:332.072259px;}
.x22_c01182{left:334.211316px;}
.x6c_c01182{left:338.308500px;}
.xb8_c01182{left:342.081000px;}
.x4e_c01182{left:346.015632px;}
.x77_c01182{left:348.568500px;}
.x56_c01182{left:349.650000px;}
.xa8_c01182{left:350.730000px;}
.xba_c01182{left:352.620000px;}
.xbf_c01182{left:354.240000px;}
.x2e_c01182{left:355.531893px;}
.x1a_c01182{left:364.978164px;}
.xa2_c01182{left:373.176264px;}
.x7_c01182{left:375.321000px;}
.x59_c01182{left:378.810000px;}
.x63_c01182{left:381.085500px;}
.x1_c01182{left:384.210000px;}
.x90_c01182{left:385.558500px;}
.x23_c01182{left:387.114222px;}
.x45_c01182{left:388.633440px;}
.x78_c01182{left:392.308500px;}
.x8_c01182{left:397.792500px;}
.xa3_c01182{left:404.874129px;}
.x3e_c01182{left:410.558934px;}
.x57_c01182{left:412.830000px;}
.x6d_c01182{left:414.448500px;}
.x2_c01182{left:415.530000px;}
.xbb_c01182{left:418.230000px;}
.xa9_c01182{left:429.300000px;}
.x4f_c01182{left:435.396561px;}
.x85_c01182{left:436.588500px;}
.x9a_c01182{left:441.387000px;}
.x28_c01182{left:443.430000px;}
.x6e_c01182{left:446.308500px;}
.x91_c01182{left:447.928500px;}
.x3_c01182{left:459.270000px;}
.x24_c01182{left:464.342101px;}
.x50_c01182{left:467.235183px;}
.x79_c01182{left:470.608500px;}
.x7c_c01182{left:471.688500px;}
.x12_c01182{left:473.601476px;}
.x1b_c01182{left:474.603333px;}
.x64_c01182{left:483.136500px;}
.x46_c01182{left:487.755252px;}
.x9_c01182{left:496.269000px;}
.x2f_c01182{left:497.783127px;}
.x7a_c01182{left:503.008500px;}
.xb1_c01182{left:506.520000px;}
.x1c_c01182{left:508.899827px;}
.x5a_c01182{left:512.460000px;}
.x86_c01182{left:515.158500px;}
.x9b_c01182{left:516.379500px;}
.x13_c01182{left:520.034847px;}
.xa4_c01182{left:527.525985px;}
.xbc_c01182{left:528.930000px;}
.xa_c01182{left:530.353500px;}
.x3f_c01182{left:532.594500px;}
.x6f_c01182{left:535.678500px;}
.x92_c01182{left:537.838500px;}
.x29_c01182{left:541.443000px;}
.x7d_c01182{left:548.098500px;}
.x87_c01182{left:549.178500px;}
.xc0_c01182{left:553.500000px;}
.x30_c01182{left:554.506926px;}
.xa5_c01182{left:561.032668px;}
.x25_c01182{left:563.704725px;}
.x40_c01182{left:564.992226px;}
.x51_c01182{left:566.592495px;}
.x5b_c01182{left:569.970000px;}
.xc1_c01182{left:573.750000px;}
.x47_c01182{left:576.846681px;}
.x7e_c01182{left:581.578500px;}
.xaa_c01182{left:583.200000px;}
.x14_c01182{left:585.375188px;}
.x88_c01182{left:591.568500px;}
.x93_c01182{left:593.998500px;}
.x26_c01182{left:596.948116px;}
.x70_c01182{left:602.638500px;}
.x9c_c01182{left:606.282000px;}
.x48_c01182{left:610.869276px;}
.x7f_c01182{left:615.058500px;}
.xb_c01182{left:618.301500px;}
.x1d_c01182{left:619.338098px;}
.x65_c01182{left:624.871500px;}
.xb2_c01182{left:629.640000px;}
.x31_c01182{left:630.896631px;}
.x38_c01182{left:632.228901px;}
.x41_c01182{left:642.756363px;}
.x71_c01182{left:647.728500px;}
.x15_c01182{left:651.803079px;}
.xc_c01182{left:653.140500px;}
.x2a_c01182{left:654.556500px;}
.x7b_c01182{left:657.448500px;}
.x9d_c01182{left:660.576000px;}
.xb3_c01182{left:661.770000px;}
.x52_c01182{left:665.679807px;}
.x94_c01182{left:670.948500px;}
.xab_c01182{left:673.380000px;}
.xc2_c01182{left:675.000000px;}
.x5c_c01182{left:679.050000px;}
.x16_c01182{left:684.201737px;}
.xd_c01182{left:686.350500px;}
.x39_c01182{left:688.641384px;}
.x89_c01182{left:692.008500px;}
.x9e_c01182{left:694.083000px;}
.xbd_c01182{left:695.790000px;}
.x2b_c01182{left:697.774500px;}
.x80_c01182{left:702.268500px;}
.x95_c01182{left:704.698500px;}
.x53_c01182{left:710.763267px;}
.x5d_c01182{left:713.070000px;}
.xac_c01182{left:716.850000px;}
.x1e_c01182{left:720.058374px;}
.x66_c01182{left:724.492500px;}
.x49_c01182{left:732.337818px;}
.x8a_c01182{left:737.908500px;}
.xe_c01182{left:740.947500px;}
.x32_c01182{left:742.362783px;}
.xbe_c01182{left:751.410000px;}
.x42_c01182{left:753.725199px;}
.x4a_c01182{left:755.859039px;}
.x67_c01182{left:758.256000px;}
.x3a_c01182{left:763.974525px;}
.x33_c01182{left:765.850581px;}
.x72_c01182{left:780.298500px;}
.xb4_c01182{left:783.810000px;}
.x2c_c01182{left:786.348000px;}
.x54_c01182{left:788.499831px;}
.x8b_c01182{left:793.528500px;}
.xc3_c01182{left:796.230000px;}
.x17_c01182{left:798.150551px;}
.x5e_c01182{left:801.900000px;}
.xad_c01182{left:805.680000px;}
.x73_c01182{left:812.428500px;}
.x81_c01182{left:814.588500px;}
.x9f_c01182{left:816.085500px;}
.x96_c01182{left:819.448500px;}
.x68_c01182{left:834.408000px;}
@media print{
.v0_c01182{vertical-align:0.000000pt;}
.ls0_c01182{letter-spacing:0.000000pt;}
.ws0_c01182{word-spacing:0.000000pt;}
.fs0_c01182{font-size:37.333333pt;}
.fs6_c01182{font-size:64.000000pt;}
.fs7_c01182{font-size:69.333333pt;}
.fs3_c01182{font-size:69.334581pt;}
.fs9_c01182{font-size:69.337528pt;}
.fs1_c01182{font-size:69.343351pt;}
.fs5_c01182{font-size:74.666667pt;}
.fs4_c01182{font-size:74.668011pt;}
.fs8_c01182{font-size:74.671184pt;}
.fs2_c01182{font-size:74.677455pt;}
.y0_c01182{bottom:0.000000pt;}
.y9d_c01182{bottom:66.816000pt;}
.y9c_c01182{bottom:100.242667pt;}
.y9b_c01182{bottom:131.048000pt;}
.y9a_c01182{bottom:163.338667pt;}
.y95_c01182{bottom:192.002667pt;}
.y96_c01182{bottom:192.466667pt;}
.y97_c01182{bottom:193.106667pt;}
.y98_c01182{bottom:194.817333pt;}
.y99_c01182{bottom:197.194667pt;}
.y94_c01182{bottom:225.437333pt;}
.y93_c01182{bottom:258.666667pt;}
.y8b_c01182{bottom:317.763273pt;}
.y8c_c01182{bottom:319.520165pt;}
.y8d_c01182{bottom:320.115980pt;}
.y8e_c01182{bottom:321.872447pt;}
.y8f_c01182{bottom:322.435745pt;}
.y90_c01182{bottom:323.819715pt;}
.y91_c01182{bottom:324.616460pt;}
.y92_c01182{bottom:325.212113pt;}
.y7f_c01182{bottom:348.961333pt;}
.y80_c01182{bottom:349.827312pt;}
.y81_c01182{bottom:350.147163pt;}
.y82_c01182{bottom:350.683083pt;}
.y83_c01182{bottom:350.997316pt;}
.y84_c01182{bottom:351.897615pt;}
.y85_c01182{bottom:352.630875pt;}
.y86_c01182{bottom:352.947924pt;}
.y87_c01182{bottom:353.509921pt;}
.y88_c01182{bottom:354.040796pt;}
.y89_c01182{bottom:354.368420pt;}
.y8a_c01182{bottom:355.561333pt;}
.y7e_c01182{bottom:383.264000pt;}
.y7d_c01182{bottom:414.236000pt;}
.y7c_c01182{bottom:446.638667pt;}
.y7b_c01182{bottom:478.864000pt;}
.y7a_c01182{bottom:510.148000pt;}
.y70_c01182{bottom:539.760000pt;}
.y71_c01182{bottom:540.229333pt;}
.y72_c01182{bottom:540.460000pt;}
.y73_c01182{bottom:540.629333pt;}
.y74_c01182{bottom:541.048000pt;}
.y75_c01182{bottom:541.592000pt;}
.y76_c01182{bottom:542.348000pt;}
.y77_c01182{bottom:542.878667pt;}
.y78_c01182{bottom:543.058667pt;}
.y79_c01182{bottom:543.465333pt;}
.y6f_c01182{bottom:573.840000pt;}
.y6e_c01182{bottom:606.096000pt;}
.y6b_c01182{bottom:665.047443pt;}
.y6c_c01182{bottom:666.209256pt;}
.y6d_c01182{bottom:667.058437pt;}
.y60_c01182{bottom:696.718339pt;}
.y61_c01182{bottom:697.023531pt;}
.y62_c01182{bottom:697.726451pt;}
.y63_c01182{bottom:697.966467pt;}
.y64_c01182{bottom:698.199565pt;}
.y65_c01182{bottom:698.834936pt;}
.y66_c01182{bottom:699.060744pt;}
.y67_c01182{bottom:699.766656pt;}
.y68_c01182{bottom:700.471128pt;}
.y69_c01182{bottom:700.791576pt;}
.y6a_c01182{bottom:701.344843pt;}
.y55_c01182{bottom:728.880075pt;}
.y56_c01182{bottom:729.279595pt;}
.y57_c01182{bottom:729.893840pt;}
.y58_c01182{bottom:730.124005pt;}
.y59_c01182{bottom:730.678688pt;}
.y5a_c01182{bottom:730.834139pt;}
.y5b_c01182{bottom:731.383344pt;}
.y5c_c01182{bottom:732.017171pt;}
.y5d_c01182{bottom:732.258627pt;}
.y5e_c01182{bottom:733.122467pt;}
.y5f_c01182{bottom:733.289248pt;}
.y47_c01182{bottom:760.799944pt;}
.y48_c01182{bottom:761.086195pt;}
.y49_c01182{bottom:761.376451pt;}
.y4a_c01182{bottom:761.870304pt;}
.y4b_c01182{bottom:762.063061pt;}
.y4c_c01182{bottom:762.452605pt;}
.y4d_c01182{bottom:763.242125pt;}
.y4e_c01182{bottom:764.024899pt;}
.y4f_c01182{bottom:764.327664pt;}
.y50_c01182{bottom:764.615123pt;}
.y51_c01182{bottom:765.305875pt;}
.y52_c01182{bottom:765.716027pt;}
.y53_c01182{bottom:766.292389pt;}
.y54_c01182{bottom:766.678872pt;}
.y3c_c01182{bottom:792.238744pt;}
.y3d_c01182{bottom:792.759053pt;}
.y3e_c01182{bottom:793.022773pt;}
.y3f_c01182{bottom:793.381933pt;}
.y40_c01182{bottom:794.338488pt;}
.y41_c01182{bottom:794.697544pt;}
.y42_c01182{bottom:795.397429pt;}
.y43_c01182{bottom:796.208176pt;}
.y44_c01182{bottom:796.376400pt;}
.y45_c01182{bottom:796.659715pt;}
.y46_c01182{bottom:797.262832pt;}
.y30_c01182{bottom:822.720531pt;}
.y31_c01182{bottom:823.052525pt;}
.y32_c01182{bottom:823.808573pt;}
.y33_c01182{bottom:824.336629pt;}
.y34_c01182{bottom:824.882877pt;}
.y35_c01182{bottom:825.951227pt;}
.y36_c01182{bottom:826.273573pt;}
.y37_c01182{bottom:826.828109pt;}
.y38_c01182{bottom:827.575533pt;}
.y39_c01182{bottom:828.666037pt;}
.y3a_c01182{bottom:828.895309pt;}
.y3b_c01182{bottom:829.206739pt;}
.y29_c01182{bottom:856.800000pt;}
.y2a_c01182{bottom:857.613592pt;}
.y2b_c01182{bottom:857.855504pt;}
.y2c_c01182{bottom:858.378240pt;}
.y2d_c01182{bottom:858.981512pt;}
.y2e_c01182{bottom:859.212008pt;}
.y2f_c01182{bottom:859.684400pt;}
.y21_c01182{bottom:917.267139pt;}
.y22_c01182{bottom:917.594800pt;}
.y23_c01182{bottom:918.336808pt;}
.y24_c01182{bottom:919.221191pt;}
.y25_c01182{bottom:919.737864pt;}
.y26_c01182{bottom:920.492744pt;}
.y27_c01182{bottom:921.464737pt;}
.y28_c01182{bottom:921.789697pt;}
.y18_c01182{bottom:948.231424pt;}
.y19_c01182{bottom:949.527652pt;}
.y1a_c01182{bottom:949.955800pt;}
.y1b_c01182{bottom:950.500348pt;}
.y1c_c01182{bottom:951.572737pt;}
.y1d_c01182{bottom:951.908276pt;}
.y1e_c01182{bottom:952.987617pt;}
.y1f_c01182{bottom:953.309332pt;}
.y20_c01182{bottom:953.972124pt;}
.yd_c01182{bottom:977.277676pt;}
.ye_c01182{bottom:977.896668pt;}
.yf_c01182{bottom:978.771209pt;}
.y10_c01182{bottom:979.758367pt;}
.y11_c01182{bottom:980.297225pt;}
.y12_c01182{bottom:981.519588pt;}
.y13_c01182{bottom:982.097212pt;}
.y14_c01182{bottom:982.909860pt;}
.y15_c01182{bottom:983.736275pt;}
.y16_c01182{bottom:984.139163pt;}
.y17_c01182{bottom:985.556968pt;}
.y2_c01182{bottom:1008.244000pt;}
.y3_c01182{bottom:1009.570023pt;}
.y4_c01182{bottom:1010.076283pt;}
.y5_c01182{bottom:1011.911671pt;}
.y6_c01182{bottom:1012.251240pt;}
.y7_c01182{bottom:1013.739329pt;}
.y8_c01182{bottom:1014.254384pt;}
.y9_c01182{bottom:1015.583376pt;}
.ya_c01182{bottom:1016.109832pt;}
.yb_c01182{bottom:1016.611672pt;}
.yc_c01182{bottom:1017.436693pt;}
.y1_c01182{bottom:1082.388000pt;}
.h2_c01182{height:37.333333pt;}
.h8_c01182{height:64.000000pt;}
.h9_c01182{height:69.333333pt;}
.h5_c01182{height:69.334581pt;}
.hb_c01182{height:69.337528pt;}
.h3_c01182{height:69.343351pt;}
.h7_c01182{height:74.666667pt;}
.h6_c01182{height:74.668011pt;}
.ha_c01182{height:74.671184pt;}
.h4_c01182{height:74.677455pt;}
.h1_c01182{height:1118.666667pt;}
.h0_c01182{height:1118.880000pt;}
.w0_c01182{width:803.733333pt;}
.w1_c01182{width:804.000000pt;}
.x0_c01182{left:0.000000pt;}
.x4_c01182{left:117.873333pt;}
.x1f_c01182{left:119.369259pt;}
.x34_c01182{left:121.083856pt;}
.x4b_c01182{left:122.478341pt;}
.x5f_c01182{left:123.920000pt;}
.x82_c01182{left:125.518667pt;}
.xae_c01182{left:127.200000pt;}
.xb5_c01182{left:128.142667pt;}
.xc4_c01182{left:130.560000pt;}
.x20_c01182{left:149.156296pt;}
.x69_c01182{left:152.638667pt;}
.x8c_c01182{left:153.838667pt;}
.xb6_c01182{left:157.172000pt;}
.x4c_c01182{left:160.676552pt;}
.xf_c01182{left:162.205897pt;}
.x43_c01182{left:170.494043pt;}
.x74_c01182{left:173.038667pt;}
.x35_c01182{left:178.912149pt;}
.x8d_c01182{left:182.878667pt;}
.x55_c01182{left:190.230733pt;}
.x5_c01182{left:195.874667pt;}
.xb7_c01182{left:197.193333pt;}
.x60_c01182{left:202.154667pt;}
.x97_c01182{left:204.134667pt;}
.xc5_c01182{left:207.120000pt;}
.x36_c01182{left:208.198288pt;}
.x83_c01182{left:211.678667pt;}
.xa0_c01182{left:214.122547pt;}
.x21_c01182{left:216.653853pt;}
.x27_c01182{left:218.242667pt;}
.x58_c01182{left:221.280000pt;}
.xa6_c01182{left:223.440000pt;}
.x10_c01182{left:224.633071pt;}
.x6_c01182{left:225.654667pt;}
.xb9_c01182{left:226.560000pt;}
.x3b_c01182{left:227.863237pt;}
.x6a_c01182{left:231.118667pt;}
.x75_c01182{left:232.318667pt;}
.x98_c01182{left:233.212000pt;}
.x18_c01182{left:236.061369pt;}
.x61_c01182{left:240.572000pt;}
.xa1_c01182{left:243.920932pt;}
.x3c_c01182{left:247.100107pt;}
.x37_c01182{left:248.057568pt;}
.x6b_c01182{left:250.078667pt;}
.x8e_c01182{left:251.998667pt;}
.xa7_c01182{left:254.160000pt;}
.xaf_c01182{left:264.000000pt;}
.x2d_c01182{left:266.321837pt;}
.x62_c01182{left:268.894667pt;}
.x8f_c01182{left:270.958667pt;}
.x19_c01182{left:274.976003pt;}
.x44_c01182{left:276.116779pt;}
.x4d_c01182{left:278.497803pt;}
.x76_c01182{left:280.318667pt;}
.x99_c01182{left:281.932000pt;}
.x3d_c01182{left:286.023171pt;}
.x84_c01182{left:291.118667pt;}
.xb0_c01182{left:292.320000pt;}
.x11_c01182{left:295.175341pt;}
.x22_c01182{left:297.076725pt;}
.x6c_c01182{left:300.718667pt;}
.xb8_c01182{left:304.072000pt;}
.x4e_c01182{left:307.569451pt;}
.x77_c01182{left:309.838667pt;}
.x56_c01182{left:310.800000pt;}
.xa8_c01182{left:311.760000pt;}
.xba_c01182{left:313.440000pt;}
.xbf_c01182{left:314.880000pt;}
.x2e_c01182{left:316.028349pt;}
.x1a_c01182{left:324.425035pt;}
.xa2_c01182{left:331.712235pt;}
.x7_c01182{left:333.618667pt;}
.x59_c01182{left:336.720000pt;}
.x63_c01182{left:338.742667pt;}
.x1_c01182{left:341.520000pt;}
.x90_c01182{left:342.718667pt;}
.x23_c01182{left:344.101531pt;}
.x45_c01182{left:345.451947pt;}
.x78_c01182{left:348.718667pt;}
.x8_c01182{left:353.593333pt;}
.xa3_c01182{left:359.888115pt;}
.x3e_c01182{left:364.941275pt;}
.x57_c01182{left:366.960000pt;}
.x6d_c01182{left:368.398667pt;}
.x2_c01182{left:369.360000pt;}
.xbb_c01182{left:371.760000pt;}
.xa9_c01182{left:381.600000pt;}
.x4f_c01182{left:387.019165pt;}
.x85_c01182{left:388.078667pt;}
.x9a_c01182{left:392.344000pt;}
.x28_c01182{left:394.160000pt;}
.x6e_c01182{left:396.718667pt;}
.x91_c01182{left:398.158667pt;}
.x3_c01182{left:408.240000pt;}
.x24_c01182{left:412.748535pt;}
.x50_c01182{left:415.320163pt;}
.x79_c01182{left:418.318667pt;}
.x7c_c01182{left:419.278667pt;}
.x12_c01182{left:420.979089pt;}
.x1b_c01182{left:421.869629pt;}
.x64_c01182{left:429.454667pt;}
.x46_c01182{left:433.560224pt;}
.x9_c01182{left:441.128000pt;}
.x2f_c01182{left:442.473891pt;}
.x7a_c01182{left:447.118667pt;}
.xb1_c01182{left:450.240000pt;}
.x1c_c01182{left:452.355401pt;}
.x5a_c01182{left:455.520000pt;}
.x86_c01182{left:457.918667pt;}
.x9b_c01182{left:459.004000pt;}
.x13_c01182{left:462.253197pt;}
.xa4_c01182{left:468.911987pt;}
.xbc_c01182{left:470.160000pt;}
.xa_c01182{left:471.425333pt;}
.x3f_c01182{left:473.417333pt;}
.x6f_c01182{left:476.158667pt;}
.x92_c01182{left:478.078667pt;}
.x29_c01182{left:481.282667pt;}
.x7d_c01182{left:487.198667pt;}
.x87_c01182{left:488.158667pt;}
.xc0_c01182{left:492.000000pt;}
.x30_c01182{left:492.895045pt;}
.xa5_c01182{left:498.695705pt;}
.x25_c01182{left:501.070867pt;}
.x40_c01182{left:502.215312pt;}
.x51_c01182{left:503.637773pt;}
.x5b_c01182{left:506.640000pt;}
.xc1_c01182{left:510.000000pt;}
.x47_c01182{left:512.752605pt;}
.x7e_c01182{left:516.958667pt;}
.xaa_c01182{left:518.400000pt;}
.x14_c01182{left:520.333500pt;}
.x88_c01182{left:525.838667pt;}
.x93_c01182{left:527.998667pt;}
.x26_c01182{left:530.620548pt;}
.x70_c01182{left:535.678667pt;}
.x9c_c01182{left:538.917333pt;}
.x48_c01182{left:542.994912pt;}
.x7f_c01182{left:546.718667pt;}
.xb_c01182{left:549.601333pt;}
.x1d_c01182{left:550.522753pt;}
.x65_c01182{left:555.441333pt;}
.xb2_c01182{left:559.680000pt;}
.x31_c01182{left:560.797005pt;}
.x38_c01182{left:561.981245pt;}
.x41_c01182{left:571.338989pt;}
.x71_c01182{left:575.758667pt;}
.x15_c01182{left:579.380515pt;}
.xc_c01182{left:580.569333pt;}
.x2a_c01182{left:581.828000pt;}
.x7b_c01182{left:584.398667pt;}
.x9d_c01182{left:587.178667pt;}
.xb3_c01182{left:588.240000pt;}
.x52_c01182{left:591.715384pt;}
.x94_c01182{left:596.398667pt;}
.xab_c01182{left:598.560000pt;}
.xc2_c01182{left:600.000000pt;}
.x5c_c01182{left:603.600000pt;}
.x16_c01182{left:608.179321pt;}
.xd_c01182{left:610.089333pt;}
.x39_c01182{left:612.125675pt;}
.x89_c01182{left:615.118667pt;}
.x9e_c01182{left:616.962667pt;}
.xbd_c01182{left:618.480000pt;}
.x2b_c01182{left:620.244000pt;}
.x80_c01182{left:624.238667pt;}
.x95_c01182{left:626.398667pt;}
.x53_c01182{left:631.789571pt;}
.x5d_c01182{left:633.840000pt;}
.xac_c01182{left:637.200000pt;}
.x1e_c01182{left:640.051888pt;}
.x66_c01182{left:643.993333pt;}
.x49_c01182{left:650.966949pt;}
.x8a_c01182{left:655.918667pt;}
.xe_c01182{left:658.620000pt;}
.x32_c01182{left:659.878029pt;}
.xbe_c01182{left:667.920000pt;}
.x42_c01182{left:669.977955pt;}
.x4a_c01182{left:671.874701pt;}
.x67_c01182{left:674.005333pt;}
.x3a_c01182{left:679.088467pt;}
.x33_c01182{left:680.756072pt;}
.x72_c01182{left:693.598667pt;}
.xb4_c01182{left:696.720000pt;}
.x2c_c01182{left:698.976000pt;}
.x54_c01182{left:700.888739pt;}
.x8b_c01182{left:705.358667pt;}
.xc3_c01182{left:707.760000pt;}
.x17_c01182{left:709.467156pt;}
.x5e_c01182{left:712.800000pt;}
.xad_c01182{left:716.160000pt;}
.x73_c01182{left:722.158667pt;}
.x81_c01182{left:724.078667pt;}
.x9f_c01182{left:725.409333pt;}
.x96_c01182{left:728.398667pt;}
.x68_c01182{left:741.696000pt;}
}





/* 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_c01183 {
    display:none;
  }
  .loading-indicator_c01183.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01183 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_c01183 { 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_c01183" -> "#page-container .classname_c01183")
 */
.pf_c01183 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01183 { /* 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_c01183.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01183 { /* 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_c01183 { /* 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_c01183 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01183 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01183 {overflow:visible;}
  }
}
.c_c01183 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01183 { /* 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_c01183:after { /* webkit #35443 */
  content: '';
}
.t_c01183:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01183 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 */
}
.__c01183 { /* 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_c01183 { /* info for Javascript */
  display:none;
}
.l_c01183 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01183 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01183 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01183: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_c01183 {
    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_c01183.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01183.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_c01183 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01183{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01183;src:url('chunks/assets/font_fcacd0c005e4f737375e2290.woff2')format("woff");}.ff1_c01183{font-family:ff1_c01183;line-height:1.000000;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;}
.m1_c01183{transform:matrix(0.160028,0.004961,-0.007746,0.249880,0,0);-ms-transform:matrix(0.160028,0.004961,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.160028,0.004961,-0.007746,0.249880,0,0);}
.m3_c01183{transform:matrix(0.162487,0.005037,-0.007746,0.249880,0,0);-ms-transform:matrix(0.162487,0.005037,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.162487,0.005037,-0.007746,0.249880,0,0);}
.m0_c01183{transform:matrix(0.172652,0.005352,-0.007746,0.249880,0,0);-ms-transform:matrix(0.172652,0.005352,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.172652,0.005352,-0.007746,0.249880,0,0);}
.m2_c01183{transform:matrix(0.190229,0.005897,-0.007746,0.249880,0,0);-ms-transform:matrix(0.190229,0.005897,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.190229,0.005897,-0.007746,0.249880,0,0);}
.m4_c01183{transform:matrix(0.190583,0.005908,-0.007746,0.249880,0,0);-ms-transform:matrix(0.190583,0.005908,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.190583,0.005908,-0.007746,0.249880,0,0);}
.m7_c01183{transform:matrix(0.203807,0.006318,-0.007746,0.249880,0,0);-ms-transform:matrix(0.203807,0.006318,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.203807,0.006318,-0.007746,0.249880,0,0);}
.m8_c01183{transform:matrix(0.238306,0.007387,-0.007746,0.249880,0,0);-ms-transform:matrix(0.238306,0.007387,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.238306,0.007387,-0.007746,0.249880,0,0);}
.m6_c01183{transform:matrix(0.264238,0.008191,-0.007746,0.249880,0,0);-ms-transform:matrix(0.264238,0.008191,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.264238,0.008191,-0.007746,0.249880,0,0);}
.m5_c01183{transform:matrix(0.304574,0.009442,-0.007746,0.249880,0,0);-ms-transform:matrix(0.304574,0.009442,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.304574,0.009442,-0.007746,0.249880,0,0);}
.v0_c01183{vertical-align:0.000000px;}
.ls0_c01183{letter-spacing:0.000000px;}
.sc__c01183{text-shadow:none;}
.sc0_c01183{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__c01183{-webkit-text-stroke:0px transparent;}
.sc0_c01183{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01183{word-spacing:0.000000px;}
.fc0_c01183{color:transparent;}
.fs1_c01183{font-size:102.048999px;}
.fs0_c01183{font-size:114.054764px;}
.y0_c01183{bottom:0.000000px;}
.y9_c01183{bottom:1050.443164px;}
.y8_c01183{bottom:1053.751693px;}
.y7_c01183{bottom:1054.816442px;}
.y6_c01183{bottom:1056.780910px;}
.y5_c01183{bottom:1084.155960px;}
.y4_c01183{bottom:1086.277987px;}
.y3_c01183{bottom:1088.252099px;}
.y2_c01183{bottom:1089.264962px;}
.y1_c01183{bottom:1090.552500px;}
.h3_c01183{height:102.048999px;}
.h2_c01183{height:114.054764px;}
.h1_c01183{height:1258.500000px;}
.h0_c01183{height:1258.740000px;}
.w0_c01183{width:904.200000px;}
.w1_c01183{width:904.500000px;}
.x0_c01183{left:0.000000px;}
.x1_c01183{left:172.333500px;}
.x6_c01183{left:179.248725px;}
.x2_c01183{left:213.867000px;}
.x7_c01183{left:244.749771px;}
.x3_c01183{left:246.540000px;}
.x8_c01183{left:280.258887px;}
.x4_c01183{left:310.221000px;}
.x5_c01183{left:378.673500px;}
.x9_c01183{left:390.521281px;}
@media print{
.v0_c01183{vertical-align:0.000000pt;}
.ls0_c01183{letter-spacing:0.000000pt;}
.ws0_c01183{word-spacing:0.000000pt;}
.fs1_c01183{font-size:90.710222pt;}
.fs0_c01183{font-size:101.382012pt;}
.y0_c01183{bottom:0.000000pt;}
.y9_c01183{bottom:933.727257pt;}
.y8_c01183{bottom:936.668172pt;}
.y7_c01183{bottom:937.614615pt;}
.y6_c01183{bottom:939.360809pt;}
.y5_c01183{bottom:963.694187pt;}
.y4_c01183{bottom:965.580433pt;}
.y3_c01183{bottom:967.335199pt;}
.y2_c01183{bottom:968.235521pt;}
.y1_c01183{bottom:969.380000pt;}
.h3_c01183{height:90.710222pt;}
.h2_c01183{height:101.382012pt;}
.h1_c01183{height:1118.666667pt;}
.h0_c01183{height:1118.880000pt;}
.w0_c01183{width:803.733333pt;}
.w1_c01183{width:804.000000pt;}
.x0_c01183{left:0.000000pt;}
.x1_c01183{left:153.185333pt;}
.x6_c01183{left:159.332200pt;}
.x2_c01183{left:190.104000pt;}
.x7_c01183{left:217.555352pt;}
.x3_c01183{left:219.146667pt;}
.x8_c01183{left:249.119011pt;}
.x4_c01183{left:275.752000pt;}
.x5_c01183{left:336.598667pt;}
.x9_c01183{left:347.130028pt;}
}





/* 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_c01184 {
    display:none;
  }
  .loading-indicator_c01184.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01184 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_c01184 { 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_c01184" -> "#page-container .classname_c01184")
 */
.pf_c01184 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01184 { /* 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_c01184.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01184 { /* 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_c01184 { /* 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_c01184 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01184 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01184 {overflow:visible;}
  }
}
.c_c01184 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01184 { /* 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_c01184:after { /* webkit #35443 */
  content: '';
}
.t_c01184:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01184 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 */
}
.__c01184 { /* 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_c01184 { /* info for Javascript */
  display:none;
}
.l_c01184 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01184 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01184 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01184: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_c01184 {
    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_c01184.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01184.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_c01184 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01184{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01184;src:url('chunks/assets/font_fabf4b590f7fb32aea93ffb2.woff2')format("woff");}.ff1_c01184{font-family:ff1_c01184;line-height:1.000000;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;}
.m2_c01184{transform:matrix(0.142055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142055,0.000000,0.000000,0.250000,0,0);}
.m3_c01184{transform:matrix(0.146390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146390,0.000000,0.000000,0.250000,0,0);}
.m36_c01184{transform:matrix(0.172380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172380,0.000000,0.000000,0.250000,0,0);}
.m27_c01184{transform:matrix(0.177870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177870,0.000000,0.000000,0.250000,0,0);}
.m4f_c01184{transform:matrix(0.183576,0.001285,-0.001750,0.249994,0,0);-ms-transform:matrix(0.183576,0.001285,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.183576,0.001285,-0.001750,0.249994,0,0);}
.m51_c01184{transform:matrix(0.184090,0.001289,-0.001750,0.249994,0,0);-ms-transform:matrix(0.184090,0.001289,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.184090,0.001289,-0.001750,0.249994,0,0);}
.m54_c01184{transform:matrix(0.185230,0.001297,-0.001750,0.249994,0,0);-ms-transform:matrix(0.185230,0.001297,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.185230,0.001297,-0.001750,0.249994,0,0);}
.m4e_c01184{transform:matrix(0.185545,0.001299,-0.001750,0.249994,0,0);-ms-transform:matrix(0.185545,0.001299,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.185545,0.001299,-0.001750,0.249994,0,0);}
.m77_c01184{transform:matrix(0.188065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188065,0.000000,0.000000,0.250000,0,0);}
.m97_c01184{transform:matrix(0.191909,0.002495,-0.003250,0.249979,0,0);-ms-transform:matrix(0.191909,0.002495,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.191909,0.002495,-0.003250,0.249979,0,0);}
.m29_c01184{transform:matrix(0.195140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195140,0.000000,0.000000,0.250000,0,0);}
.m71_c01184{transform:matrix(0.195215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195215,0.000000,0.000000,0.250000,0,0);}
.m70_c01184{transform:matrix(0.196460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196460,0.000000,0.000000,0.250000,0,0);}
.m50_c01184{transform:matrix(0.198250,0.001388,-0.001750,0.249994,0,0);-ms-transform:matrix(0.198250,0.001388,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.198250,0.001388,-0.001750,0.249994,0,0);}
.m8c_c01184{transform:matrix(0.198410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198410,0.000000,0.000000,0.250000,0,0);}
.m52_c01184{transform:matrix(0.199250,0.001395,-0.001750,0.249994,0,0);-ms-transform:matrix(0.199250,0.001395,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.199250,0.001395,-0.001750,0.249994,0,0);}
.m53_c01184{transform:matrix(0.199645,0.001398,-0.001750,0.249994,0,0);-ms-transform:matrix(0.199645,0.001398,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.199645,0.001398,-0.001750,0.249994,0,0);}
.me_c01184{transform:matrix(0.200310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200310,0.000000,0.000000,0.250000,0,0);}
.m76_c01184{transform:matrix(0.200960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200960,0.000000,0.000000,0.250000,0,0);}
.ma7_c01184{transform:matrix(0.201513,0.002620,-0.003250,0.249979,0,0);-ms-transform:matrix(0.201513,0.002620,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.201513,0.002620,-0.003250,0.249979,0,0);}
.m6d_c01184{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m91_c01184{transform:matrix(0.202655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202655,0.000000,0.000000,0.250000,0,0);}
.m5c_c01184{transform:matrix(0.204547,0.001841,-0.002250,0.249990,0,0);-ms-transform:matrix(0.204547,0.001841,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.204547,0.001841,-0.002250,0.249990,0,0);}
.m57_c01184{transform:matrix(0.204957,0.001845,-0.002250,0.249990,0,0);-ms-transform:matrix(0.204957,0.001845,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.204957,0.001845,-0.002250,0.249990,0,0);}
.md_c01184{transform:matrix(0.205055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205055,0.000000,0.000000,0.250000,0,0);}
.m55_c01184{transform:matrix(0.207260,0.001451,-0.001750,0.249994,0,0);-ms-transform:matrix(0.207260,0.001451,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.207260,0.001451,-0.001750,0.249994,0,0);}
.m4d_c01184{transform:matrix(0.207390,0.001452,-0.001750,0.249994,0,0);-ms-transform:matrix(0.207390,0.001452,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.207390,0.001452,-0.001750,0.249994,0,0);}
.m61_c01184{transform:matrix(0.208027,0.001872,-0.002250,0.249990,0,0);-ms-transform:matrix(0.208027,0.001872,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.208027,0.001872,-0.002250,0.249990,0,0);}
.m28_c01184{transform:matrix(0.208065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208065,0.000000,0.000000,0.250000,0,0);}
.m83_c01184{transform:matrix(0.208370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208370,0.000000,0.000000,0.250000,0,0);}
.m26_c01184{transform:matrix(0.208465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208465,0.000000,0.000000,0.250000,0,0);}
.mb_c01184{transform:matrix(0.209805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209805,0.000000,0.000000,0.250000,0,0);}
.m2c_c01184{transform:matrix(0.209895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209895,0.000000,0.000000,0.250000,0,0);}
.m94_c01184{transform:matrix(0.209982,0.002730,-0.003250,0.249979,0,0);-ms-transform:matrix(0.209982,0.002730,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.209982,0.002730,-0.003250,0.249979,0,0);}
.m64_c01184{transform:matrix(0.210481,0.001894,-0.002250,0.249990,0,0);-ms-transform:matrix(0.210481,0.001894,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.210481,0.001894,-0.002250,0.249990,0,0);}
.m96_c01184{transform:matrix(0.211977,0.002756,-0.003250,0.249979,0,0);-ms-transform:matrix(0.211977,0.002756,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.211977,0.002756,-0.003250,0.249979,0,0);}
.m72_c01184{transform:matrix(0.212270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212270,0.000000,0.000000,0.250000,0,0);}
.m81_c01184{transform:matrix(0.212780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212780,0.000000,0.000000,0.250000,0,0);}
.m73_c01184{transform:matrix(0.212855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212855,0.000000,0.000000,0.250000,0,0);}
.m87_c01184{transform:matrix(0.213670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213670,0.000000,0.000000,0.250000,0,0);}
.m6f_c01184{transform:matrix(0.213925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213925,0.000000,0.000000,0.250000,0,0);}
.m5a_c01184{transform:matrix(0.213976,0.001926,-0.002250,0.249990,0,0);-ms-transform:matrix(0.213976,0.001926,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.213976,0.001926,-0.002250,0.249990,0,0);}
.m75_c01184{transform:matrix(0.214205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214205,0.000000,0.000000,0.250000,0,0);}
.mf_c01184{transform:matrix(0.215475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215475,0.000000,0.000000,0.250000,0,0);}
.m99_c01184{transform:matrix(0.215902,0.002807,-0.003250,0.249979,0,0);-ms-transform:matrix(0.215902,0.002807,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.215902,0.002807,-0.003250,0.249979,0,0);}
.ma4_c01184{transform:matrix(0.217057,0.002822,-0.003250,0.249979,0,0);-ms-transform:matrix(0.217057,0.002822,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.217057,0.002822,-0.003250,0.249979,0,0);}
.m78_c01184{transform:matrix(0.217570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217570,0.000000,0.000000,0.250000,0,0);}
.m74_c01184{transform:matrix(0.217935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217935,0.000000,0.000000,0.250000,0,0);}
.m66_c01184{transform:matrix(0.218450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218450,0.000000,0.000000,0.250000,0,0);}
.mc_c01184{transform:matrix(0.220010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220010,0.000000,0.000000,0.250000,0,0);}
.ma6_c01184{transform:matrix(0.220606,0.002868,-0.003250,0.249979,0,0);-ms-transform:matrix(0.220606,0.002868,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.220606,0.002868,-0.003250,0.249979,0,0);}
.m3c_c01184{transform:matrix(0.220860,0.001546,-0.001750,0.249994,0,0);-ms-transform:matrix(0.220860,0.001546,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.220860,0.001546,-0.001750,0.249994,0,0);}
.m8a_c01184{transform:matrix(0.221040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221040,0.000000,0.000000,0.250000,0,0);}
.m2b_c01184{transform:matrix(0.221090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221090,0.000000,0.000000,0.250000,0,0);}
.m20_c01184{transform:matrix(0.221160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221160,0.000000,0.000000,0.250000,0,0);}
.m5e_c01184{transform:matrix(0.221601,0.001994,-0.002250,0.249990,0,0);-ms-transform:matrix(0.221601,0.001994,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.221601,0.001994,-0.002250,0.249990,0,0);}
.m5d_c01184{transform:matrix(0.221701,0.001995,-0.002250,0.249990,0,0);-ms-transform:matrix(0.221701,0.001995,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.221701,0.001995,-0.002250,0.249990,0,0);}
.m79_c01184{transform:matrix(0.222570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222570,0.000000,0.000000,0.250000,0,0);}
.m95_c01184{transform:matrix(0.224626,0.002920,-0.003250,0.249979,0,0);-ms-transform:matrix(0.224626,0.002920,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.224626,0.002920,-0.003250,0.249979,0,0);}
.m11_c01184{transform:matrix(0.224955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224955,0.000000,0.000000,0.250000,0,0);}
.m13_c01184{transform:matrix(0.225325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225325,0.000000,0.000000,0.250000,0,0);}
.m98_c01184{transform:matrix(0.225806,0.002935,-0.003250,0.249979,0,0);-ms-transform:matrix(0.225806,0.002935,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.225806,0.002935,-0.003250,0.249979,0,0);}
.m2d_c01184{transform:matrix(0.225865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225865,0.000000,0.000000,0.250000,0,0);}
.m22_c01184{transform:matrix(0.225910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225910,0.000000,0.000000,0.250000,0,0);}
.m9_c01184{transform:matrix(0.225940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225940,0.000000,0.000000,0.250000,0,0);}
.m63_c01184{transform:matrix(0.226321,0.002037,-0.002250,0.249990,0,0);-ms-transform:matrix(0.226321,0.002037,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.226321,0.002037,-0.002250,0.249990,0,0);}
.m58_c01184{transform:matrix(0.226456,0.002038,-0.002250,0.249990,0,0);-ms-transform:matrix(0.226456,0.002038,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.226456,0.002038,-0.002250,0.249990,0,0);}
.m25_c01184{transform:matrix(0.227830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227830,0.000000,0.000000,0.250000,0,0);}
.m86_c01184{transform:matrix(0.227940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227940,0.000000,0.000000,0.250000,0,0);}
.m82_c01184{transform:matrix(0.228715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228715,0.000000,0.000000,0.250000,0,0);}
.m62_c01184{transform:matrix(0.229781,0.002068,-0.002250,0.249990,0,0);-ms-transform:matrix(0.229781,0.002068,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.229781,0.002068,-0.002250,0.249990,0,0);}
.m7d_c01184{transform:matrix(0.229900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229900,0.000000,0.000000,0.250000,0,0);}
.m60_c01184{transform:matrix(0.230521,0.002075,-0.002250,0.249990,0,0);-ms-transform:matrix(0.230521,0.002075,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.230521,0.002075,-0.002250,0.249990,0,0);}
.m59_c01184{transform:matrix(0.231021,0.002079,-0.002250,0.249990,0,0);-ms-transform:matrix(0.231021,0.002079,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.231021,0.002079,-0.002250,0.249990,0,0);}
.m9f_c01184{transform:matrix(0.231040,0.003004,-0.003250,0.249979,0,0);-ms-transform:matrix(0.231040,0.003004,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.231040,0.003004,-0.003250,0.249979,0,0);}
.m39_c01184{transform:matrix(0.232099,0.001625,-0.001750,0.249994,0,0);-ms-transform:matrix(0.232099,0.001625,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.232099,0.001625,-0.001750,0.249994,0,0);}
.m7b_c01184{transform:matrix(0.232570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232570,0.000000,0.000000,0.250000,0,0);}
.m2a_c01184{transform:matrix(0.232900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232900,0.000000,0.000000,0.250000,0,0);}
.m2e_c01184{transform:matrix(0.233300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233300,0.000000,0.000000,0.250000,0,0);}
.m68_c01184{transform:matrix(0.233395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233395,0.000000,0.000000,0.250000,0,0);}
.m56_c01184{transform:matrix(0.233794,0.001637,-0.001750,0.249994,0,0);-ms-transform:matrix(0.233794,0.001637,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.233794,0.001637,-0.001750,0.249994,0,0);}
.m65_c01184{transform:matrix(0.233876,0.002105,-0.002250,0.249990,0,0);-ms-transform:matrix(0.233876,0.002105,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.233876,0.002105,-0.002250,0.249990,0,0);}
.m14_c01184{transform:matrix(0.234260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234260,0.000000,0.000000,0.250000,0,0);}
.m8d_c01184{transform:matrix(0.234825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234825,0.000000,0.000000,0.250000,0,0);}
.m5f_c01184{transform:matrix(0.235025,0.002115,-0.002250,0.249990,0,0);-ms-transform:matrix(0.235025,0.002115,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.235025,0.002115,-0.002250,0.249990,0,0);}
.m5b_c01184{transform:matrix(0.235440,0.002119,-0.002250,0.249990,0,0);-ms-transform:matrix(0.235440,0.002119,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.235440,0.002119,-0.002250,0.249990,0,0);}
.m12_c01184{transform:matrix(0.235565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235565,0.000000,0.000000,0.250000,0,0);}
.m3d_c01184{transform:matrix(0.236169,0.001653,-0.001750,0.249994,0,0);-ms-transform:matrix(0.236169,0.001653,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.236169,0.001653,-0.001750,0.249994,0,0);}
.m8e_c01184{transform:matrix(0.236375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236375,0.000000,0.000000,0.250000,0,0);}
.m6b_c01184{transform:matrix(0.236480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236480,0.000000,0.000000,0.250000,0,0);}
.m45_c01184{transform:matrix(0.237319,0.001661,-0.001750,0.249994,0,0);-ms-transform:matrix(0.237319,0.001661,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.237319,0.001661,-0.001750,0.249994,0,0);}
.m7c_c01184{transform:matrix(0.237520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237520,0.000000,0.000000,0.250000,0,0);}
.m40_c01184{transform:matrix(0.237774,0.001664,-0.001750,0.249994,0,0);-ms-transform:matrix(0.237774,0.001664,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.237774,0.001664,-0.001750,0.249994,0,0);}
.m88_c01184{transform:matrix(0.237805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237805,0.000000,0.000000,0.250000,0,0);}
.m1b_c01184{transform:matrix(0.238040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238040,0.000000,0.000000,0.250000,0,0);}
.m80_c01184{transform:matrix(0.238440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238440,0.000000,0.000000,0.250000,0,0);}
.m3a_c01184{transform:matrix(0.238769,0.001671,-0.001750,0.249994,0,0);-ms-transform:matrix(0.238769,0.001671,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.238769,0.001671,-0.001750,0.249994,0,0);}
.m18_c01184{transform:matrix(0.238775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238775,0.000000,0.000000,0.250000,0,0);}
.m8b_c01184{transform:matrix(0.240115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240115,0.000000,0.000000,0.250000,0,0);}
.m84_c01184{transform:matrix(0.240225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240225,0.000000,0.000000,0.250000,0,0);}
.ma8_c01184{transform:matrix(0.240265,0.003123,-0.003250,0.249979,0,0);-ms-transform:matrix(0.240265,0.003123,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.240265,0.003123,-0.003250,0.249979,0,0);}
.m30_c01184{transform:matrix(0.240295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240295,0.000000,0.000000,0.250000,0,0);}
.ma5_c01184{transform:matrix(0.240670,0.003129,-0.003250,0.249979,0,0);-ms-transform:matrix(0.240670,0.003129,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.240670,0.003129,-0.003250,0.249979,0,0);}
.m1f_c01184{transform:matrix(0.240885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240885,0.000000,0.000000,0.250000,0,0);}
.m38_c01184{transform:matrix(0.241434,0.001690,-0.001750,0.249994,0,0);-ms-transform:matrix(0.241434,0.001690,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.241434,0.001690,-0.001750,0.249994,0,0);}
.m19_c01184{transform:matrix(0.241555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241555,0.000000,0.000000,0.250000,0,0);}
.m17_c01184{transform:matrix(0.241795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241795,0.000000,0.000000,0.250000,0,0);}
.ma1_c01184{transform:matrix(0.241930,0.003145,-0.003250,0.249979,0,0);-ms-transform:matrix(0.241930,0.003145,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.241930,0.003145,-0.003250,0.249979,0,0);}
.ma2_c01184{transform:matrix(0.242145,0.003148,-0.003250,0.249979,0,0);-ms-transform:matrix(0.242145,0.003148,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.242145,0.003148,-0.003250,0.249979,0,0);}
.m9a_c01184{transform:matrix(0.242400,0.003151,-0.003250,0.249979,0,0);-ms-transform:matrix(0.242400,0.003151,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.242400,0.003151,-0.003250,0.249979,0,0);}
.m43_c01184{transform:matrix(0.242739,0.001699,-0.001750,0.249994,0,0);-ms-transform:matrix(0.242739,0.001699,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.242739,0.001699,-0.001750,0.249994,0,0);}
.m1d_c01184{transform:matrix(0.243100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243100,0.000000,0.000000,0.250000,0,0);}
.m3f_c01184{transform:matrix(0.243214,0.001702,-0.001750,0.249994,0,0);-ms-transform:matrix(0.243214,0.001702,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.243214,0.001702,-0.001750,0.249994,0,0);}
.m49_c01184{transform:matrix(0.243369,0.001704,-0.001750,0.249994,0,0);-ms-transform:matrix(0.243369,0.001704,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.243369,0.001704,-0.001750,0.249994,0,0);}
.m1c_c01184{transform:matrix(0.244310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244310,0.000000,0.000000,0.250000,0,0);}
.m6c_c01184{transform:matrix(0.244940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244940,0.000000,0.000000,0.250000,0,0);}
.m69_c01184{transform:matrix(0.245700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245700,0.000000,0.000000,0.250000,0,0);}
.m8f_c01184{transform:matrix(0.245725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245725,0.000000,0.000000,0.250000,0,0);}
.m15_c01184{transform:matrix(0.246510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246510,0.000000,0.000000,0.250000,0,0);}
.m6_c01184{transform:matrix(0.246845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246845,0.000000,0.000000,0.250000,0,0);}
.m4b_c01184{transform:matrix(0.247104,0.001730,-0.001750,0.249994,0,0);-ms-transform:matrix(0.247104,0.001730,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.247104,0.001730,-0.001750,0.249994,0,0);}
.m21_c01184{transform:matrix(0.247505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247505,0.000000,0.000000,0.250000,0,0);}
.m16_c01184{transform:matrix(0.247955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247955,0.000000,0.000000,0.250000,0,0);}
.m2f_c01184{transform:matrix(0.248305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248305,0.000000,0.000000,0.250000,0,0);}
.m7a_c01184{transform:matrix(0.249240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249240,0.000000,0.000000,0.250000,0,0);}
.m67_c01184{transform:matrix(0.249365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249365,0.000000,0.000000,0.250000,0,0);}
.m7e_c01184{transform:matrix(0.249705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249705,0.000000,0.000000,0.250000,0,0);}
.m10_c01184{transform:matrix(0.250105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250105,0.000000,0.000000,0.250000,0,0);}
.m6a_c01184{transform:matrix(0.250190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250190,0.000000,0.000000,0.250000,0,0);}
.ma0_c01184{transform:matrix(0.251054,0.003264,-0.003250,0.249979,0,0);-ms-transform:matrix(0.251054,0.003264,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.251054,0.003264,-0.003250,0.249979,0,0);}
.m6e_c01184{transform:matrix(0.251445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251445,0.000000,0.000000,0.250000,0,0);}
.m90_c01184{transform:matrix(0.251590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251590,0.000000,0.000000,0.250000,0,0);}
.m1a_c01184{transform:matrix(0.252170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252170,0.000000,0.000000,0.250000,0,0);}
.m1e_c01184{transform:matrix(0.252415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252415,0.000000,0.000000,0.250000,0,0);}
.m89_c01184{transform:matrix(0.253085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253085,0.000000,0.000000,0.250000,0,0);}
.m9c_c01184{transform:matrix(0.253229,0.003292,-0.003250,0.249979,0,0);-ms-transform:matrix(0.253229,0.003292,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.253229,0.003292,-0.003250,0.249979,0,0);}
.m4_c01184{transform:matrix(0.253785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253785,0.000000,0.000000,0.250000,0,0);}
.m3b_c01184{transform:matrix(0.254054,0.001778,-0.001750,0.249994,0,0);-ms-transform:matrix(0.254054,0.001778,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.254054,0.001778,-0.001750,0.249994,0,0);}
.m35_c01184{transform:matrix(0.255110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255110,0.000000,0.000000,0.250000,0,0);}
.m9b_c01184{transform:matrix(0.255683,0.003324,-0.003250,0.249979,0,0);-ms-transform:matrix(0.255683,0.003324,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.255683,0.003324,-0.003250,0.249979,0,0);}
.m34_c01184{transform:matrix(0.255745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255745,0.000000,0.000000,0.250000,0,0);}
.m7f_c01184{transform:matrix(0.256075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256075,0.000000,0.000000,0.250000,0,0);}
.m5_c01184{transform:matrix(0.256190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256190,0.000000,0.000000,0.250000,0,0);}
.m37_c01184{transform:matrix(0.256649,0.001797,-0.001750,0.249994,0,0);-ms-transform:matrix(0.256649,0.001797,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.256649,0.001797,-0.001750,0.249994,0,0);}
.m85_c01184{transform:matrix(0.257115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257115,0.000000,0.000000,0.250000,0,0);}
.m93_c01184{transform:matrix(0.257495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257495,0.000000,0.000000,0.250000,0,0);}
.m3e_c01184{transform:matrix(0.257964,0.001806,-0.001750,0.249994,0,0);-ms-transform:matrix(0.257964,0.001806,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.257964,0.001806,-0.001750,0.249994,0,0);}
.ma3_c01184{transform:matrix(0.258743,0.003364,-0.003250,0.249979,0,0);-ms-transform:matrix(0.258743,0.003364,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.258743,0.003364,-0.003250,0.249979,0,0);}
.m41_c01184{transform:matrix(0.258854,0.001812,-0.001750,0.249994,0,0);-ms-transform:matrix(0.258854,0.001812,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.258854,0.001812,-0.001750,0.249994,0,0);}
.m7_c01184{transform:matrix(0.264210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264210,0.000000,0.000000,0.250000,0,0);}
.m4c_c01184{transform:matrix(0.265274,0.001857,-0.001750,0.249994,0,0);-ms-transform:matrix(0.265274,0.001857,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.265274,0.001857,-0.001750,0.249994,0,0);}
.m44_c01184{transform:matrix(0.265793,0.001861,-0.001750,0.249994,0,0);-ms-transform:matrix(0.265793,0.001861,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.265793,0.001861,-0.001750,0.249994,0,0);}
.m48_c01184{transform:matrix(0.265893,0.001861,-0.001750,0.249994,0,0);-ms-transform:matrix(0.265893,0.001861,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.265893,0.001861,-0.001750,0.249994,0,0);}
.m31_c01184{transform:matrix(0.266780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266780,0.000000,0.000000,0.250000,0,0);}
.m23_c01184{transform:matrix(0.270130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270130,0.000000,0.000000,0.250000,0,0);}
.m42_c01184{transform:matrix(0.270308,0.001892,-0.001750,0.249994,0,0);-ms-transform:matrix(0.270308,0.001892,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.270308,0.001892,-0.001750,0.249994,0,0);}
.m47_c01184{transform:matrix(0.271973,0.001904,-0.001750,0.249994,0,0);-ms-transform:matrix(0.271973,0.001904,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.271973,0.001904,-0.001750,0.249994,0,0);}
.m32_c01184{transform:matrix(0.273095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273095,0.000000,0.000000,0.250000,0,0);}
.m8_c01184{transform:matrix(0.275240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275240,0.000000,0.000000,0.250000,0,0);}
.ma_c01184{transform:matrix(0.275390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275390,0.000000,0.000000,0.250000,0,0);}
.m24_c01184{transform:matrix(0.276585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276585,0.000000,0.000000,0.250000,0,0);}
.m33_c01184{transform:matrix(0.277640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277640,0.000000,0.000000,0.250000,0,0);}
.m1_c01184{transform:matrix(0.278025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278025,0.000000,0.000000,0.250000,0,0);}
.m4a_c01184{transform:matrix(0.278338,0.001948,-0.001750,0.249994,0,0);-ms-transform:matrix(0.278338,0.001948,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.278338,0.001948,-0.001750,0.249994,0,0);}
.m46_c01184{transform:matrix(0.278613,0.001950,-0.001750,0.249994,0,0);-ms-transform:matrix(0.278613,0.001950,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.278613,0.001950,-0.001750,0.249994,0,0);}
.m9d_c01184{transform:matrix(0.286186,0.003720,-0.003250,0.249979,0,0);-ms-transform:matrix(0.286186,0.003720,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.286186,0.003720,-0.003250,0.249979,0,0);}
.m92_c01184{transform:matrix(0.287475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287475,0.000000,0.000000,0.250000,0,0);}
.m0_c01184{transform:matrix(0.293930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293930,0.000000,0.000000,0.250000,0,0);}
.m9e_c01184{transform:matrix(0.303644,0.003947,-0.003250,0.249979,0,0);-ms-transform:matrix(0.303644,0.003947,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.303644,0.003947,-0.003250,0.249979,0,0);}
.v0_c01184{vertical-align:0.000000px;}
.ls0_c01184{letter-spacing:0.000000px;}
.sc__c01184{text-shadow:none;}
.sc0_c01184{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__c01184{-webkit-text-stroke:0px transparent;}
.sc0_c01184{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01184{word-spacing:0.000000px;}
.fc0_c01184{color:transparent;}
.fs2_c01184{font-size:72.000000px;}
.fs6_c01184{font-size:72.001764px;}
.fs4_c01184{font-size:78.000000px;}
.fs5_c01184{font-size:78.001911px;}
.fsb_c01184{font-size:78.006591px;}
.fs3_c01184{font-size:84.000000px;}
.fs8_c01184{font-size:84.003402px;}
.fsc_c01184{font-size:84.007098px;}
.fs9_c01184{font-size:90.000000px;}
.fsa_c01184{font-size:90.007605px;}
.fs7_c01184{font-size:96.002352px;}
.fs0_c01184{font-size:102.000000px;}
.fs1_c01184{font-size:138.000000px;}
.y0_c01184{bottom:0.000000px;}
.y61_c01184{bottom:40.115111px;}
.y60_c01184{bottom:40.529212px;}
.y5f_c01184{bottom:42.088257px;}
.y5e_c01184{bottom:43.670955px;}
.y5d_c01184{bottom:44.281500px;}
.y5c_c01184{bottom:76.069434px;}
.y5b_c01184{bottom:76.681533px;}
.y5a_c01184{bottom:77.516401px;}
.y59_c01184{bottom:78.264558px;}
.y58_c01184{bottom:78.617845px;}
.y57_c01184{bottom:79.104790px;}
.y56_c01184{bottom:112.274850px;}
.y55_c01184{bottom:113.346385px;}
.y54_c01184{bottom:114.542614px;}
.y53_c01184{bottom:115.559683px;}
.y52_c01184{bottom:146.463970px;}
.y51_c01184{bottom:147.910558px;}
.y50_c01184{bottom:148.338564px;}
.y4f_c01184{bottom:149.339148px;}
.y4e_c01184{bottom:150.488049px;}
.y4d_c01184{bottom:150.933000px;}
.y4c_c01184{bottom:183.277500px;}
.y4b_c01184{bottom:184.044000px;}
.y4a_c01184{bottom:184.249500px;}
.y49_c01184{bottom:185.356500px;}
.y48_c01184{bottom:186.031500px;}
.y47_c01184{bottom:219.951000px;}
.y46_c01184{bottom:255.120000px;}
.y45_c01184{bottom:255.622500px;}
.y44_c01184{bottom:255.912000px;}
.y43_c01184{bottom:256.402500px;}
.y42_c01184{bottom:257.311500px;}
.y41_c01184{bottom:291.517500px;}
.y40_c01184{bottom:326.454000px;}
.y3f_c01184{bottom:361.743000px;}
.y3e_c01184{bottom:396.913500px;}
.y3d_c01184{bottom:432.462000px;}
.y3c_c01184{bottom:468.052500px;}
.y3b_c01184{bottom:521.012405px;}
.y3a_c01184{bottom:521.368491px;}
.y39_c01184{bottom:522.211624px;}
.y38_c01184{bottom:523.174309px;}
.y37_c01184{bottom:523.530180px;}
.y36_c01184{bottom:554.031497px;}
.y35_c01184{bottom:554.631855px;}
.y34_c01184{bottom:555.732780px;}
.y33_c01184{bottom:556.034087px;}
.y32_c01184{bottom:556.225786px;}
.y31_c01184{bottom:556.928272px;}
.y30_c01184{bottom:557.232009px;}
.y2f_c01184{bottom:558.012080px;}
.y2e_c01184{bottom:558.517614px;}
.y2d_c01184{bottom:558.901500px;}
.y2c_c01184{bottom:589.342849px;}
.y2b_c01184{bottom:589.804989px;}
.y2a_c01184{bottom:590.002558px;}
.y29_c01184{bottom:590.401509px;}
.y28_c01184{bottom:590.668338px;}
.y27_c01184{bottom:590.864059px;}
.y26_c01184{bottom:591.324393px;}
.y25_c01184{bottom:591.523810px;}
.y24_c01184{bottom:591.782700px;}
.y23_c01184{bottom:592.379136px;}
.y22_c01184{bottom:624.151951px;}
.y21_c01184{bottom:624.389955px;}
.y20_c01184{bottom:624.932626px;}
.y1f_c01184{bottom:625.161295px;}
.y1e_c01184{bottom:625.699977px;}
.y1d_c01184{bottom:626.100584px;}
.y1c_c01184{bottom:626.711117px;}
.y1b_c01184{bottom:627.013391px;}
.y1a_c01184{bottom:627.485985px;}
.y19_c01184{bottom:627.720366px;}
.y18_c01184{bottom:628.395096px;}
.y17_c01184{bottom:628.559284px;}
.y16_c01184{bottom:659.602251px;}
.y15_c01184{bottom:659.917944px;}
.y14_c01184{bottom:660.613580px;}
.y13_c01184{bottom:660.844170px;}
.y12_c01184{bottom:661.082121px;}
.y11_c01184{bottom:661.773987px;}
.y10_c01184{bottom:662.012158px;}
.yf_c01184{bottom:662.388258px;}
.ye_c01184{bottom:662.632078px;}
.yd_c01184{bottom:663.390000px;}
.yc_c01184{bottom:750.832500px;}
.yb_c01184{bottom:786.670500px;}
.ya_c01184{bottom:822.112500px;}
.y9_c01184{bottom:858.129000px;}
.y8_c01184{bottom:893.152500px;}
.y7_c01184{bottom:927.736500px;}
.y6_c01184{bottom:963.267000px;}
.y5_c01184{bottom:998.304000px;}
.y4_c01184{bottom:1033.560000px;}
.y3_c01184{bottom:1067.962500px;}
.y2_c01184{bottom:1121.973000px;}
.y1_c01184{bottom:1182.598500px;}
.h4_c01184{height:72.000000px;}
.h8_c01184{height:72.001764px;}
.h6_c01184{height:78.000000px;}
.h7_c01184{height:78.001911px;}
.hd_c01184{height:78.006591px;}
.h5_c01184{height:84.000000px;}
.ha_c01184{height:84.003402px;}
.he_c01184{height:84.007098px;}
.hb_c01184{height:90.000000px;}
.hc_c01184{height:90.007605px;}
.h9_c01184{height:96.002352px;}
.h2_c01184{height:102.000000px;}
.h3_c01184{height:138.000000px;}
.h1_c01184{height:1258.500000px;}
.h0_c01184{height:1258.740000px;}
.w0_c01184{width:904.200000px;}
.w1_c01184{width:904.500000px;}
.x0_c01184{left:0.000000px;}
.x2c_c01184{left:132.233762px;}
.x3c_c01184{left:133.798328px;}
.x2d_c01184{left:155.689262px;}
.x3d_c01184{left:166.172247px;}
.x35_c01184{left:231.564705px;}
.x3f_c01184{left:241.380000px;}
.x25_c01184{left:243.166500px;}
.x41_c01184{left:245.700000px;}
.x2e_c01184{left:252.079262px;}
.x3e_c01184{left:253.635668px;}
.x48_c01184{left:264.060000px;}
.xe_c01184{left:273.240000px;}
.x4_c01184{left:274.860000px;}
.x1b_c01184{left:277.560000px;}
.x2f_c01184{left:285.562261px;}
.x51_c01184{left:287.104167px;}
.x9_c01184{left:297.000000px;}
.x42_c01184{left:299.970000px;}
.x1f_c01184{left:307.800000px;}
.x22_c01184{left:309.150000px;}
.x4c_c01184{left:310.344000px;}
.xf_c01184{left:319.140000px;}
.x47_c01184{left:320.220000px;}
.x16_c01184{left:328.860000px;}
.x5_c01184{left:330.750000px;}
.xa_c01184{left:340.470000px;}
.x39_c01184{left:341.970000px;}
.x49_c01184{left:343.293000px;}
.x26_c01184{left:351.441000px;}
.x20_c01184{left:353.160000px;}
.x1_c01184{left:361.800000px;}
.x1c_c01184{left:363.420000px;}
.x4b_c01184{left:364.770000px;}
.xb_c01184{left:373.680000px;}
.x13_c01184{left:374.760000px;}
.x6_c01184{left:384.480000px;}
.x19_c01184{left:386.100000px;}
.x43_c01184{left:387.720000px;}
.x2_c01184{left:392.580000px;}
.x10_c01184{left:396.630000px;}
.x4a_c01184{left:397.870500px;}
.x17_c01184{left:408.240000px;}
.x1d_c01184{left:409.320000px;}
.x7_c01184{left:417.420000px;}
.x23_c01184{left:419.850000px;}
.x4d_c01184{left:421.075500px;}
.x21_c01184{left:429.300000px;}
.x44_c01184{left:431.190000px;}
.x53_c01184{left:432.873000px;}
.x3_c01184{left:439.020000px;}
.x11_c01184{left:440.370000px;}
.x4e_c01184{left:441.571500px;}
.xc_c01184{left:452.250000px;}
.x36_c01184{left:461.879322px;}
.x52_c01184{left:463.171250px;}
.x8_c01184{left:472.770000px;}
.x1a_c01184{left:474.390000px;}
.x30_c01184{left:483.476762px;}
.xd_c01184{left:484.650000px;}
.x18_c01184{left:485.730000px;}
.x24_c01184{left:496.800000px;}
.x1e_c01184{left:507.060000px;}
.x45_c01184{left:508.140000px;}
.x4f_c01184{left:518.251500px;}
.x50_c01184{left:519.734442px;}
.x12_c01184{left:528.660000px;}
.x14_c01184{left:540.270000px;}
.x46_c01184{left:551.340000px;}
.x40_c01184{left:552.960000px;}
.x37_c01184{left:561.240015px;}
.x15_c01184{left:562.950000px;}
.x27_c01184{left:572.863500px;}
.x54_c01184{left:584.653500px;}
.x3a_c01184{left:595.225500px;}
.x28_c01184{left:606.856500px;}
.x31_c01184{left:617.660762px;}
.x38_c01184{left:638.189051px;}
.x29_c01184{left:639.798000px;}
.x32_c01184{left:650.327762px;}
.x3b_c01184{left:717.550500px;}
.x33_c01184{left:727.852262px;}
.x2a_c01184{left:739.174500px;}
.x34_c01184{left:761.852762px;}
.x2b_c01184{left:784.273500px;}
@media print{
.v0_c01184{vertical-align:0.000000pt;}
.ls0_c01184{letter-spacing:0.000000pt;}
.ws0_c01184{word-spacing:0.000000pt;}
.fs2_c01184{font-size:64.000000pt;}
.fs6_c01184{font-size:64.001568pt;}
.fs4_c01184{font-size:69.333333pt;}
.fs5_c01184{font-size:69.335032pt;}
.fsb_c01184{font-size:69.339192pt;}
.fs3_c01184{font-size:74.666667pt;}
.fs8_c01184{font-size:74.669691pt;}
.fsc_c01184{font-size:74.672976pt;}
.fs9_c01184{font-size:80.000000pt;}
.fsa_c01184{font-size:80.006760pt;}
.fs7_c01184{font-size:85.335424pt;}
.fs0_c01184{font-size:90.666667pt;}
.fs1_c01184{font-size:122.666667pt;}
.y0_c01184{bottom:0.000000pt;}
.y61_c01184{bottom:35.657876pt;}
.y60_c01184{bottom:36.025967pt;}
.y5f_c01184{bottom:37.411784pt;}
.y5e_c01184{bottom:38.818627pt;}
.y5d_c01184{bottom:39.361333pt;}
.y5c_c01184{bottom:67.617275pt;}
.y5b_c01184{bottom:68.161363pt;}
.y5a_c01184{bottom:68.903468pt;}
.y59_c01184{bottom:69.568496pt;}
.y58_c01184{bottom:69.882529pt;}
.y57_c01184{bottom:70.315369pt;}
.y56_c01184{bottom:99.799867pt;}
.y55_c01184{bottom:100.752343pt;}
.y54_c01184{bottom:101.815657pt;}
.y53_c01184{bottom:102.719719pt;}
.y52_c01184{bottom:130.190196pt;}
.y51_c01184{bottom:131.476052pt;}
.y50_c01184{bottom:131.856501pt;}
.y4f_c01184{bottom:132.745909pt;}
.y4e_c01184{bottom:133.767155pt;}
.y4d_c01184{bottom:134.162667pt;}
.y4c_c01184{bottom:162.913333pt;}
.y4b_c01184{bottom:163.594667pt;}
.y4a_c01184{bottom:163.777333pt;}
.y49_c01184{bottom:164.761333pt;}
.y48_c01184{bottom:165.361333pt;}
.y47_c01184{bottom:195.512000pt;}
.y46_c01184{bottom:226.773333pt;}
.y45_c01184{bottom:227.220000pt;}
.y44_c01184{bottom:227.477333pt;}
.y43_c01184{bottom:227.913333pt;}
.y42_c01184{bottom:228.721333pt;}
.y41_c01184{bottom:259.126667pt;}
.y40_c01184{bottom:290.181333pt;}
.y3f_c01184{bottom:321.549333pt;}
.y3e_c01184{bottom:352.812000pt;}
.y3d_c01184{bottom:384.410667pt;}
.y3c_c01184{bottom:416.046667pt;}
.y3b_c01184{bottom:463.122137pt;}
.y3a_c01184{bottom:463.438659pt;}
.y39_c01184{bottom:464.188111pt;}
.y38_c01184{bottom:465.043831pt;}
.y37_c01184{bottom:465.360160pt;}
.y36_c01184{bottom:492.472441pt;}
.y35_c01184{bottom:493.006093pt;}
.y34_c01184{bottom:493.984693pt;}
.y33_c01184{bottom:494.252521pt;}
.y32_c01184{bottom:494.422921pt;}
.y31_c01184{bottom:495.047353pt;}
.y30_c01184{bottom:495.317341pt;}
.y2f_c01184{bottom:496.010737pt;}
.y2e_c01184{bottom:496.460101pt;}
.y2d_c01184{bottom:496.801333pt;}
.y2c_c01184{bottom:523.860311pt;}
.y2b_c01184{bottom:524.271101pt;}
.y2a_c01184{bottom:524.446719pt;}
.y29_c01184{bottom:524.801341pt;}
.y28_c01184{bottom:525.038523pt;}
.y27_c01184{bottom:525.212497pt;}
.y26_c01184{bottom:525.621683pt;}
.y25_c01184{bottom:525.798943pt;}
.y24_c01184{bottom:526.029067pt;}
.y23_c01184{bottom:526.559232pt;}
.y22_c01184{bottom:554.801735pt;}
.y21_c01184{bottom:555.013293pt;}
.y20_c01184{bottom:555.495668pt;}
.y1f_c01184{bottom:555.698929pt;}
.y1e_c01184{bottom:556.177757pt;}
.y1d_c01184{bottom:556.533852pt;}
.y1c_c01184{bottom:557.076548pt;}
.y1b_c01184{bottom:557.345236pt;}
.y1a_c01184{bottom:557.765320pt;}
.y19_c01184{bottom:557.973659pt;}
.y18_c01184{bottom:558.573419pt;}
.y17_c01184{bottom:558.719364pt;}
.y16_c01184{bottom:586.313112pt;}
.y15_c01184{bottom:586.593728pt;}
.y14_c01184{bottom:587.212071pt;}
.y13_c01184{bottom:587.417040pt;}
.y12_c01184{bottom:587.628552pt;}
.y11_c01184{bottom:588.243544pt;}
.y10_c01184{bottom:588.455252pt;}
.yf_c01184{bottom:588.789563pt;}
.ye_c01184{bottom:589.006292pt;}
.yd_c01184{bottom:589.680000pt;}
.yc_c01184{bottom:667.406667pt;}
.yb_c01184{bottom:699.262667pt;}
.ya_c01184{bottom:730.766667pt;}
.y9_c01184{bottom:762.781333pt;}
.y8_c01184{bottom:793.913333pt;}
.y7_c01184{bottom:824.654667pt;}
.y6_c01184{bottom:856.237333pt;}
.y5_c01184{bottom:887.381333pt;}
.y4_c01184{bottom:918.720000pt;}
.y3_c01184{bottom:949.300000pt;}
.y2_c01184{bottom:997.309333pt;}
.y1_c01184{bottom:1051.198667pt;}
.h4_c01184{height:64.000000pt;}
.h8_c01184{height:64.001568pt;}
.h6_c01184{height:69.333333pt;}
.h7_c01184{height:69.335032pt;}
.hd_c01184{height:69.339192pt;}
.h5_c01184{height:74.666667pt;}
.ha_c01184{height:74.669691pt;}
.he_c01184{height:74.672976pt;}
.hb_c01184{height:80.000000pt;}
.hc_c01184{height:80.006760pt;}
.h9_c01184{height:85.335424pt;}
.h2_c01184{height:90.666667pt;}
.h3_c01184{height:122.666667pt;}
.h1_c01184{height:1118.666667pt;}
.h0_c01184{height:1118.880000pt;}
.w0_c01184{width:803.733333pt;}
.w1_c01184{width:804.000000pt;}
.x0_c01184{left:0.000000pt;}
.x2c_c01184{left:117.541121pt;}
.x3c_c01184{left:118.931847pt;}
.x2d_c01184{left:138.390455pt;}
.x3d_c01184{left:147.708664pt;}
.x35_c01184{left:205.835293pt;}
.x3f_c01184{left:214.560000pt;}
.x25_c01184{left:216.148000pt;}
.x41_c01184{left:218.400000pt;}
.x2e_c01184{left:224.070455pt;}
.x3e_c01184{left:225.453927pt;}
.x48_c01184{left:234.720000pt;}
.xe_c01184{left:242.880000pt;}
.x4_c01184{left:244.320000pt;}
.x1b_c01184{left:246.720000pt;}
.x2f_c01184{left:253.833121pt;}
.x51_c01184{left:255.203704pt;}
.x9_c01184{left:264.000000pt;}
.x42_c01184{left:266.640000pt;}
.x1f_c01184{left:273.600000pt;}
.x22_c01184{left:274.800000pt;}
.x4c_c01184{left:275.861333pt;}
.xf_c01184{left:283.680000pt;}
.x47_c01184{left:284.640000pt;}
.x16_c01184{left:292.320000pt;}
.x5_c01184{left:294.000000pt;}
.xa_c01184{left:302.640000pt;}
.x39_c01184{left:303.973333pt;}
.x49_c01184{left:305.149333pt;}
.x26_c01184{left:312.392000pt;}
.x20_c01184{left:313.920000pt;}
.x1_c01184{left:321.600000pt;}
.x1c_c01184{left:323.040000pt;}
.x4b_c01184{left:324.240000pt;}
.xb_c01184{left:332.160000pt;}
.x13_c01184{left:333.120000pt;}
.x6_c01184{left:341.760000pt;}
.x19_c01184{left:343.200000pt;}
.x43_c01184{left:344.640000pt;}
.x2_c01184{left:348.960000pt;}
.x10_c01184{left:352.560000pt;}
.x4a_c01184{left:353.662667pt;}
.x17_c01184{left:362.880000pt;}
.x1d_c01184{left:363.840000pt;}
.x7_c01184{left:371.040000pt;}
.x23_c01184{left:373.200000pt;}
.x4d_c01184{left:374.289333pt;}
.x21_c01184{left:381.600000pt;}
.x44_c01184{left:383.280000pt;}
.x53_c01184{left:384.776000pt;}
.x3_c01184{left:390.240000pt;}
.x11_c01184{left:391.440000pt;}
.x4e_c01184{left:392.508000pt;}
.xc_c01184{left:402.000000pt;}
.x36_c01184{left:410.559397pt;}
.x52_c01184{left:411.707777pt;}
.x8_c01184{left:420.240000pt;}
.x1a_c01184{left:421.680000pt;}
.x30_c01184{left:429.757121pt;}
.xd_c01184{left:430.800000pt;}
.x18_c01184{left:431.760000pt;}
.x24_c01184{left:441.600000pt;}
.x1e_c01184{left:450.720000pt;}
.x45_c01184{left:451.680000pt;}
.x4f_c01184{left:460.668000pt;}
.x50_c01184{left:461.986171pt;}
.x12_c01184{left:469.920000pt;}
.x14_c01184{left:480.240000pt;}
.x46_c01184{left:490.080000pt;}
.x40_c01184{left:491.520000pt;}
.x37_c01184{left:498.880013pt;}
.x15_c01184{left:500.400000pt;}
.x27_c01184{left:509.212000pt;}
.x54_c01184{left:519.692000pt;}
.x3a_c01184{left:529.089333pt;}
.x28_c01184{left:539.428000pt;}
.x31_c01184{left:549.031788pt;}
.x38_c01184{left:567.279156pt;}
.x29_c01184{left:568.709333pt;}
.x32_c01184{left:578.069121pt;}
.x3b_c01184{left:637.822667pt;}
.x33_c01184{left:646.979788pt;}
.x2a_c01184{left:657.044000pt;}
.x34_c01184{left:677.202455pt;}
.x2b_c01184{left:697.132000pt;}
}





/* 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_c01185 {
    display:none;
  }
  .loading-indicator_c01185.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01185 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_c01185 { 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_c01185" -> "#page-container .classname_c01185")
 */
.pf_c01185 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01185 { /* 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_c01185.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01185 { /* 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_c01185 { /* 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_c01185 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01185 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01185 {overflow:visible;}
  }
}
.c_c01185 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01185 { /* 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_c01185:after { /* webkit #35443 */
  content: '';
}
.t_c01185:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01185 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 */
}
.__c01185 { /* 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_c01185 { /* info for Javascript */
  display:none;
}
.l_c01185 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01185 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01185 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01185: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_c01185 {
    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_c01185.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01185.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_c01185 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01185{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01185;src:url('chunks/assets/font_c605e72f209fc835e906f064.woff2')format("woff");}.ff1_c01185{font-family:ff1_c01185;line-height:1.000000;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;}
.md_c01185{transform:matrix(0.002863,-0.168411,0.249964,0.004249,0,0);-ms-transform:matrix(0.002863,-0.168411,0.249964,0.004249,0,0);-webkit-transform:matrix(0.002863,-0.168411,0.249964,0.004249,0,0);}
.m13_c01185{transform:matrix(0.003270,-0.192367,0.249964,0.004249,0,0);-ms-transform:matrix(0.003270,-0.192367,0.249964,0.004249,0,0);-webkit-transform:matrix(0.003270,-0.192367,0.249964,0.004249,0,0);}
.mf_c01185{transform:matrix(0.003393,-0.199581,0.249964,0.004249,0,0);-ms-transform:matrix(0.003393,-0.199581,0.249964,0.004249,0,0);-webkit-transform:matrix(0.003393,-0.199581,0.249964,0.004249,0,0);}
.m10_c01185{transform:matrix(0.003627,-0.213334,0.249964,0.004249,0,0);-ms-transform:matrix(0.003627,-0.213334,0.249964,0.004249,0,0);-webkit-transform:matrix(0.003627,-0.213334,0.249964,0.004249,0,0);}
.mc_c01185{transform:matrix(0.004164,-0.244950,0.249964,0.004249,0,0);-ms-transform:matrix(0.004164,-0.244950,0.249964,0.004249,0,0);-webkit-transform:matrix(0.004164,-0.244950,0.249964,0.004249,0,0);}
.me_c01185{transform:matrix(0.004180,-0.245899,0.249964,0.004249,0,0);-ms-transform:matrix(0.004180,-0.245899,0.249964,0.004249,0,0);-webkit-transform:matrix(0.004180,-0.245899,0.249964,0.004249,0,0);}
.m11_c01185{transform:matrix(0.004940,-0.290613,0.249964,0.004249,0,0);-ms-transform:matrix(0.004940,-0.290613,0.249964,0.004249,0,0);-webkit-transform:matrix(0.004940,-0.290613,0.249964,0.004249,0,0);}
.m12_c01185{transform:matrix(0.005627,-0.331017,0.249964,0.004249,0,0);-ms-transform:matrix(0.005627,-0.331017,0.249964,0.004249,0,0);-webkit-transform:matrix(0.005627,-0.331017,0.249964,0.004249,0,0);}
.m16_c01185{transform:matrix(0.122385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122385,0.000000,0.000000,0.250000,0,0);}
.m15_c01185{transform:matrix(0.127305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127305,0.000000,0.000000,0.250000,0,0);}
.m14_c01185{transform:matrix(0.144340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144340,0.000000,0.000000,0.250000,0,0);}
.m2a_c01185{transform:matrix(0.152175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152175,0.000000,0.000000,0.250000,0,0);}
.m1_c01185{transform:matrix(0.156975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156975,0.000000,0.000000,0.250000,0,0);}
.m17_c01185{transform:matrix(0.162810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162810,0.000000,0.000000,0.250000,0,0);}
.m22_c01185{transform:matrix(0.163310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163310,0.000000,0.000000,0.250000,0,0);}
.m26_c01185{transform:matrix(0.172490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172490,0.000000,0.000000,0.250000,0,0);}
.m1d_c01185{transform:matrix(0.176080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176080,0.000000,0.000000,0.250000,0,0);}
.m25_c01185{transform:matrix(0.178900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178900,0.000000,0.000000,0.250000,0,0);}
.m9_c01185{transform:matrix(0.187835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187835,0.000000,0.000000,0.250000,0,0);}
.m24_c01185{transform:matrix(0.191735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191735,0.000000,0.000000,0.250000,0,0);}
.m28_c01185{transform:matrix(0.199845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199845,0.000000,0.000000,0.250000,0,0);}
.ma_c01185{transform:matrix(0.207295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207295,0.000000,0.000000,0.250000,0,0);}
.m7_c01185{transform:matrix(0.214140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214140,0.000000,0.000000,0.250000,0,0);}
.m27_c01185{transform:matrix(0.216625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216625,0.000000,0.000000,0.250000,0,0);}
.m1f_c01185{transform:matrix(0.226100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226100,0.000000,0.000000,0.250000,0,0);}
.m1b_c01185{transform:matrix(0.227970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227970,0.000000,0.000000,0.250000,0,0);}
.m18_c01185{transform:matrix(0.229370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229370,0.000000,0.000000,0.250000,0,0);}
.m23_c01185{transform:matrix(0.234535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234535,0.000000,0.000000,0.250000,0,0);}
.m0_c01185{transform:matrix(0.247880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247880,0.000000,0.000000,0.250000,0,0);}
.m3_c01185{transform:matrix(0.254470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254470,0.000000,0.000000,0.250000,0,0);}
.mb_c01185{transform:matrix(0.255440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255440,0.000000,0.000000,0.250000,0,0);}
.m1c_c01185{transform:matrix(0.258070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258070,0.000000,0.000000,0.250000,0,0);}
.m8_c01185{transform:matrix(0.280710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280710,0.000000,0.000000,0.250000,0,0);}
.m21_c01185{transform:matrix(0.286280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286280,0.000000,0.000000,0.250000,0,0);}
.m20_c01185{transform:matrix(0.304615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304615,0.000000,0.000000,0.250000,0,0);}
.m5_c01185{transform:matrix(0.306905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306905,0.000000,0.000000,0.250000,0,0);}
.m6_c01185{transform:matrix(0.312605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312605,0.000000,0.000000,0.250000,0,0);}
.m19_c01185{transform:matrix(0.313605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313605,0.000000,0.000000,0.250000,0,0);}
.m1e_c01185{transform:matrix(0.315140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315140,0.000000,0.000000,0.250000,0,0);}
.m1a_c01185{transform:matrix(0.316015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316015,0.000000,0.000000,0.250000,0,0);}
.m2_c01185{transform:matrix(0.343795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343795,0.000000,0.000000,0.250000,0,0);}
.m4_c01185{transform:matrix(0.544110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544110,0.000000,0.000000,0.250000,0,0);}
.m29_c01185{transform:matrix(0.673585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.673585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.673585,0.000000,0.000000,0.250000,0,0);}
.v0_c01185{vertical-align:0.000000px;}
.ls0_c01185{letter-spacing:0.000000px;}
.sc__c01185{text-shadow:none;}
.sc0_c01185{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__c01185{-webkit-text-stroke:0px transparent;}
.sc0_c01185{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01185{word-spacing:0.000000px;}
.fc0_c01185{color:transparent;}
.fs5_c01185{font-size:18.000000px;}
.fs1_c01185{font-size:48.000000px;}
.fs4_c01185{font-size:60.000000px;}
.fs3_c01185{font-size:66.000000px;}
.fs2_c01185{font-size:72.000000px;}
.fs0_c01185{font-size:78.000000px;}
.fsd_c01185{font-size:84.000000px;}
.fs6_c01185{font-size:84.012137px;}
.fs8_c01185{font-size:90.013004px;}
.fsc_c01185{font-size:96.000000px;}
.fs10_c01185{font-size:102.000000px;}
.fsf_c01185{font-size:108.000000px;}
.fs7_c01185{font-size:126.018206px;}
.fsb_c01185{font-size:144.000000px;}
.fsa_c01185{font-size:150.000000px;}
.fse_c01185{font-size:156.000000px;}
.fs9_c01185{font-size:168.024274px;}
.y0_c01185{bottom:0.000000px;}
.y1c_c01185{bottom:743.706000px;}
.ya_c01185{bottom:743.850000px;}
.y1e_c01185{bottom:776.656500px;}
.y1b_c01185{bottom:780.163500px;}
.y17_c01185{bottom:782.190000px;}
.yc_c01185{bottom:785.692500px;}
.ye_c01185{bottom:788.657202px;}
.y16_c01185{bottom:793.800000px;}
.y7_c01185{bottom:811.758000px;}
.y3_c01185{bottom:812.158500px;}
.y1a_c01185{bottom:813.112500px;}
.y9_c01185{bottom:813.780000px;}
.y1d_c01185{bottom:814.114500px;}
.y15_c01185{bottom:814.719000px;}
.y12_c01185{bottom:819.155019px;}
.yb_c01185{bottom:823.440000px;}
.yd_c01185{bottom:834.098503px;}
.y6_c01185{bottom:848.092500px;}
.y21_c01185{bottom:848.610000px;}
.yf_c01185{bottom:848.906922px;}
.y19_c01185{bottom:851.575500px;}
.y11_c01185{bottom:871.747024px;}
.y14_c01185{bottom:953.254500px;}
.y2_c01185{bottom:954.312000px;}
.y4_c01185{bottom:954.588000px;}
.y20_c01185{bottom:957.414000px;}
.y13_c01185{bottom:984.562500px;}
.y5_c01185{bottom:988.884000px;}
.y1_c01185{bottom:989.151000px;}
.y1f_c01185{bottom:990.523500px;}
.y8_c01185{bottom:990.762000px;}
.y18_c01185{bottom:992.250000px;}
.y10_c01185{bottom:1012.964928px;}
.h7_c01185{height:18.000000px;}
.h3_c01185{height:48.000000px;}
.h6_c01185{height:60.000000px;}
.h5_c01185{height:66.000000px;}
.h4_c01185{height:72.000000px;}
.h2_c01185{height:78.000000px;}
.hf_c01185{height:84.000000px;}
.h8_c01185{height:84.012137px;}
.ha_c01185{height:90.013004px;}
.he_c01185{height:96.000000px;}
.h12_c01185{height:102.000000px;}
.h11_c01185{height:108.000000px;}
.h9_c01185{height:126.018206px;}
.hd_c01185{height:144.000000px;}
.hc_c01185{height:150.000000px;}
.h10_c01185{height:156.000000px;}
.hb_c01185{height:168.024274px;}
.h1_c01185{height:1258.500000px;}
.h0_c01185{height:1258.740000px;}
.w0_c01185{width:904.200000px;}
.w1_c01185{width:904.500000px;}
.x0_c01185{left:0.000000px;}
.x20_c01185{left:298.620000px;}
.x22_c01185{left:302.130000px;}
.x25_c01185{left:307.800000px;}
.x23_c01185{left:329.670000px;}
.x24_c01185{left:353.700000px;}
.x1f_c01185{left:354.780000px;}
.x1e_c01185{left:362.610000px;}
.x21_c01185{left:365.580000px;}
.x1b_c01185{left:386.100000px;}
.x26_c01185{left:387.990000px;}
.x18_c01185{left:392.850000px;}
.x1c_c01185{left:396.090000px;}
.x1d_c01185{left:397.440000px;}
.x1a_c01185{left:398.790000px;}
.x19_c01185{left:400.140000px;}
.x14_c01185{left:411.480000px;}
.x12_c01185{left:421.470000px;}
.x16_c01185{left:430.380000px;}
.x11_c01185{left:454.120447px;}
.x15_c01185{left:455.220000px;}
.x13_c01185{left:456.300000px;}
.x17_c01185{left:461.700000px;}
.xc_c01185{left:473.850000px;}
.xb_c01185{left:478.980000px;}
.x10_c01185{left:490.547789px;}
.xf_c01185{left:518.385651px;}
.x4_c01185{left:520.830000px;}
.xa_c01185{left:527.850000px;}
.x7_c01185{left:530.521500px;}
.x8_c01185{left:541.350000px;}
.x1_c01185{left:544.320000px;}
.xe_c01185{left:551.031134px;}
.x3_c01185{left:552.420000px;}
.x2_c01185{left:555.930000px;}
.x5_c01185{left:576.450000px;}
.x9_c01185{left:585.090000px;}
.xd_c01185{left:586.438500px;}
.x6_c01185{left:603.180000px;}
@media print{
.v0_c01185{vertical-align:0.000000pt;}
.ls0_c01185{letter-spacing:0.000000pt;}
.ws0_c01185{word-spacing:0.000000pt;}
.fs5_c01185{font-size:16.000000pt;}
.fs1_c01185{font-size:42.666667pt;}
.fs4_c01185{font-size:53.333333pt;}
.fs3_c01185{font-size:58.666667pt;}
.fs2_c01185{font-size:64.000000pt;}
.fs0_c01185{font-size:69.333333pt;}
.fsd_c01185{font-size:74.666667pt;}
.fs6_c01185{font-size:74.677455pt;}
.fs8_c01185{font-size:80.011559pt;}
.fsc_c01185{font-size:85.333333pt;}
.fs10_c01185{font-size:90.666667pt;}
.fsf_c01185{font-size:96.000000pt;}
.fs7_c01185{font-size:112.016183pt;}
.fsb_c01185{font-size:128.000000pt;}
.fsa_c01185{font-size:133.333333pt;}
.fse_c01185{font-size:138.666667pt;}
.fs9_c01185{font-size:149.354910pt;}
.y0_c01185{bottom:0.000000pt;}
.y1c_c01185{bottom:661.072000pt;}
.ya_c01185{bottom:661.200000pt;}
.y1e_c01185{bottom:690.361333pt;}
.y1b_c01185{bottom:693.478667pt;}
.y17_c01185{bottom:695.280000pt;}
.yc_c01185{bottom:698.393333pt;}
.ye_c01185{bottom:701.028624pt;}
.y16_c01185{bottom:705.600000pt;}
.y7_c01185{bottom:721.562667pt;}
.y3_c01185{bottom:721.918667pt;}
.y1a_c01185{bottom:722.766667pt;}
.y9_c01185{bottom:723.360000pt;}
.y1d_c01185{bottom:723.657333pt;}
.y15_c01185{bottom:724.194667pt;}
.y12_c01185{bottom:728.137795pt;}
.yb_c01185{bottom:731.946667pt;}
.yd_c01185{bottom:741.420892pt;}
.y6_c01185{bottom:753.860000pt;}
.y21_c01185{bottom:754.320000pt;}
.yf_c01185{bottom:754.583931pt;}
.y19_c01185{bottom:756.956000pt;}
.y11_c01185{bottom:774.886244pt;}
.y14_c01185{bottom:847.337333pt;}
.y2_c01185{bottom:848.277333pt;}
.y4_c01185{bottom:848.522667pt;}
.y20_c01185{bottom:851.034667pt;}
.y13_c01185{bottom:875.166667pt;}
.y5_c01185{bottom:879.008000pt;}
.y1_c01185{bottom:879.245333pt;}
.y1f_c01185{bottom:880.465333pt;}
.y8_c01185{bottom:880.677333pt;}
.y18_c01185{bottom:882.000000pt;}
.y10_c01185{bottom:900.413269pt;}
.h7_c01185{height:16.000000pt;}
.h3_c01185{height:42.666667pt;}
.h6_c01185{height:53.333333pt;}
.h5_c01185{height:58.666667pt;}
.h4_c01185{height:64.000000pt;}
.h2_c01185{height:69.333333pt;}
.hf_c01185{height:74.666667pt;}
.h8_c01185{height:74.677455pt;}
.ha_c01185{height:80.011559pt;}
.he_c01185{height:85.333333pt;}
.h12_c01185{height:90.666667pt;}
.h11_c01185{height:96.000000pt;}
.h9_c01185{height:112.016183pt;}
.hd_c01185{height:128.000000pt;}
.hc_c01185{height:133.333333pt;}
.h10_c01185{height:138.666667pt;}
.hb_c01185{height:149.354910pt;}
.h1_c01185{height:1118.666667pt;}
.h0_c01185{height:1118.880000pt;}
.w0_c01185{width:803.733333pt;}
.w1_c01185{width:804.000000pt;}
.x0_c01185{left:0.000000pt;}
.x20_c01185{left:265.440000pt;}
.x22_c01185{left:268.560000pt;}
.x25_c01185{left:273.600000pt;}
.x23_c01185{left:293.040000pt;}
.x24_c01185{left:314.400000pt;}
.x1f_c01185{left:315.360000pt;}
.x1e_c01185{left:322.320000pt;}
.x21_c01185{left:324.960000pt;}
.x1b_c01185{left:343.200000pt;}
.x26_c01185{left:344.880000pt;}
.x18_c01185{left:349.200000pt;}
.x1c_c01185{left:352.080000pt;}
.x1d_c01185{left:353.280000pt;}
.x1a_c01185{left:354.480000pt;}
.x19_c01185{left:355.680000pt;}
.x14_c01185{left:365.760000pt;}
.x12_c01185{left:374.640000pt;}
.x16_c01185{left:382.560000pt;}
.x11_c01185{left:403.662620pt;}
.x15_c01185{left:404.640000pt;}
.x13_c01185{left:405.600000pt;}
.x17_c01185{left:410.400000pt;}
.xc_c01185{left:421.200000pt;}
.xb_c01185{left:425.760000pt;}
.x10_c01185{left:436.042479pt;}
.xf_c01185{left:460.787245pt;}
.x4_c01185{left:462.960000pt;}
.xa_c01185{left:469.200000pt;}
.x7_c01185{left:471.574667pt;}
.x8_c01185{left:481.200000pt;}
.x1_c01185{left:483.840000pt;}
.xe_c01185{left:489.805452pt;}
.x3_c01185{left:491.040000pt;}
.x2_c01185{left:494.160000pt;}
.x5_c01185{left:512.400000pt;}
.x9_c01185{left:520.080000pt;}
.xd_c01185{left:521.278667pt;}
.x6_c01185{left:536.160000pt;}
}





/* 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_c01186 {
    display:none;
  }
  .loading-indicator_c01186.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01186 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_c01186 { 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_c01186" -> "#page-container .classname_c01186")
 */
.pf_c01186 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01186 { /* 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_c01186.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01186 { /* 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_c01186 { /* 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_c01186 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01186 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01186 {overflow:visible;}
  }
}
.c_c01186 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01186 { /* 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_c01186:after { /* webkit #35443 */
  content: '';
}
.t_c01186:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01186 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 */
}
.__c01186 { /* 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_c01186 { /* info for Javascript */
  display:none;
}
.l_c01186 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01186 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01186 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01186: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_c01186 {
    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_c01186.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01186.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_c01186 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01186{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01186;src:url('chunks/assets/font_53ec0c54e60da7c2d414b553.woff2')format("woff");}.ff1_c01186{font-family:ff1_c01186;line-height:1.000000;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;}
.m89_c01186{transform:matrix(0.009014,0.000162,-0.004499,0.249960,0,0);-ms-transform:matrix(0.009014,0.000162,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.009014,0.000162,-0.004499,0.249960,0,0);}
.m8f_c01186{transform:matrix(0.135319,0.001759,-0.003250,0.249979,0,0);-ms-transform:matrix(0.135319,0.001759,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.135319,0.001759,-0.003250,0.249979,0,0);}
.m8d_c01186{transform:matrix(0.152527,0.001983,-0.003250,0.249979,0,0);-ms-transform:matrix(0.152527,0.001983,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.152527,0.001983,-0.003250,0.249979,0,0);}
.m85_c01186{transform:matrix(0.155295,0.002795,-0.004499,0.249960,0,0);-ms-transform:matrix(0.155295,0.002795,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.155295,0.002795,-0.004499,0.249960,0,0);}
.m88_c01186{transform:matrix(0.163494,0.002943,-0.004499,0.249960,0,0);-ms-transform:matrix(0.163494,0.002943,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.163494,0.002943,-0.004499,0.249960,0,0);}
.m86_c01186{transform:matrix(0.165008,0.002970,-0.004499,0.249960,0,0);-ms-transform:matrix(0.165008,0.002970,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.165008,0.002970,-0.004499,0.249960,0,0);}
.m8c_c01186{transform:matrix(0.165261,0.002148,-0.003250,0.249979,0,0);-ms-transform:matrix(0.165261,0.002148,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.165261,0.002148,-0.003250,0.249979,0,0);}
.m8b_c01186{transform:matrix(0.166316,0.002162,-0.003250,0.249979,0,0);-ms-transform:matrix(0.166316,0.002162,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.166316,0.002162,-0.003250,0.249979,0,0);}
.m83_c01186{transform:matrix(0.168548,0.003034,-0.004499,0.249960,0,0);-ms-transform:matrix(0.168548,0.003034,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.168548,0.003034,-0.004499,0.249960,0,0);}
.m1d_c01186{transform:matrix(0.169338,0.001524,-0.002250,0.249990,0,0);-ms-transform:matrix(0.169338,0.001524,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.169338,0.001524,-0.002250,0.249990,0,0);}
.m84_c01186{transform:matrix(0.173267,0.003119,-0.004499,0.249960,0,0);-ms-transform:matrix(0.173267,0.003119,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.173267,0.003119,-0.004499,0.249960,0,0);}
.m8e_c01186{transform:matrix(0.176030,0.002288,-0.003250,0.249979,0,0);-ms-transform:matrix(0.176030,0.002288,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.176030,0.002288,-0.003250,0.249979,0,0);}
.m19_c01186{transform:matrix(0.179008,0.001611,-0.002250,0.249990,0,0);-ms-transform:matrix(0.179008,0.001611,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.179008,0.001611,-0.002250,0.249990,0,0);}
.m1b_c01186{transform:matrix(0.184178,0.001658,-0.002250,0.249990,0,0);-ms-transform:matrix(0.184178,0.001658,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.184178,0.001658,-0.002250,0.249990,0,0);}
.m87_c01186{transform:matrix(0.184920,0.003329,-0.004499,0.249960,0,0);-ms-transform:matrix(0.184920,0.003329,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.184920,0.003329,-0.004499,0.249960,0,0);}
.m1e_c01186{transform:matrix(0.186672,0.001680,-0.002250,0.249990,0,0);-ms-transform:matrix(0.186672,0.001680,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.186672,0.001680,-0.002250,0.249990,0,0);}
.m18_c01186{transform:matrix(0.186887,0.001682,-0.002250,0.249990,0,0);-ms-transform:matrix(0.186887,0.001682,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.186887,0.001682,-0.002250,0.249990,0,0);}
.m1a_c01186{transform:matrix(0.188617,0.001698,-0.002250,0.249990,0,0);-ms-transform:matrix(0.188617,0.001698,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.188617,0.001698,-0.002250,0.249990,0,0);}
.m15_c01186{transform:matrix(0.189552,0.001706,-0.002250,0.249990,0,0);-ms-transform:matrix(0.189552,0.001706,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.189552,0.001706,-0.002250,0.249990,0,0);}
.maa_c01186{transform:matrix(0.190701,0.003051,-0.003999,0.249968,0,0);-ms-transform:matrix(0.190701,0.003051,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.190701,0.003051,-0.003999,0.249968,0,0);}
.ma4_c01186{transform:matrix(0.190806,0.003053,-0.003999,0.249968,0,0);-ms-transform:matrix(0.190806,0.003053,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.190806,0.003053,-0.003999,0.249968,0,0);}
.ma6_c01186{transform:matrix(0.191760,0.003068,-0.003999,0.249968,0,0);-ms-transform:matrix(0.191760,0.003068,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.191760,0.003068,-0.003999,0.249968,0,0);}
.m77_c01186{transform:matrix(0.191894,0.001535,-0.002000,0.249992,0,0);-ms-transform:matrix(0.191894,0.001535,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.191894,0.001535,-0.002000,0.249992,0,0);}
.m1c_c01186{transform:matrix(0.192332,0.001731,-0.002250,0.249990,0,0);-ms-transform:matrix(0.192332,0.001731,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.192332,0.001731,-0.002250,0.249990,0,0);}
.m16_c01186{transform:matrix(0.193332,0.001740,-0.002250,0.249990,0,0);-ms-transform:matrix(0.193332,0.001740,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.193332,0.001740,-0.002250,0.249990,0,0);}
.m3e_c01186{transform:matrix(0.193497,0.001741,-0.002250,0.249990,0,0);-ms-transform:matrix(0.193497,0.001741,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.193497,0.001741,-0.002250,0.249990,0,0);}
.m96_c01186{transform:matrix(0.194339,0.002526,-0.003250,0.249979,0,0);-ms-transform:matrix(0.194339,0.002526,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.194339,0.002526,-0.003250,0.249979,0,0);}
.m2f_c01186{transform:matrix(0.196892,0.001772,-0.002250,0.249990,0,0);-ms-transform:matrix(0.196892,0.001772,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.196892,0.001772,-0.002250,0.249990,0,0);}
.m6d_c01186{transform:matrix(0.199239,0.001594,-0.002000,0.249992,0,0);-ms-transform:matrix(0.199239,0.001594,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.199239,0.001594,-0.002000,0.249992,0,0);}
.m6f_c01186{transform:matrix(0.199324,0.001595,-0.002000,0.249992,0,0);-ms-transform:matrix(0.199324,0.001595,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.199324,0.001595,-0.002000,0.249992,0,0);}
.m3_c01186{transform:matrix(0.200704,0.001606,-0.002000,0.249992,0,0);-ms-transform:matrix(0.200704,0.001606,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.200704,0.001606,-0.002000,0.249992,0,0);}
.m2a_c01186{transform:matrix(0.201022,0.001809,-0.002250,0.249990,0,0);-ms-transform:matrix(0.201022,0.001809,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.201022,0.001809,-0.002250,0.249990,0,0);}
.m29_c01186{transform:matrix(0.201237,0.001811,-0.002250,0.249990,0,0);-ms-transform:matrix(0.201237,0.001811,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.201237,0.001811,-0.002250,0.249990,0,0);}
.m7f_c01186{transform:matrix(0.201462,0.003626,-0.004499,0.249960,0,0);-ms-transform:matrix(0.201462,0.003626,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.201462,0.003626,-0.004499,0.249960,0,0);}
.m17_c01186{transform:matrix(0.202627,0.001824,-0.002250,0.249990,0,0);-ms-transform:matrix(0.202627,0.001824,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.202627,0.001824,-0.002250,0.249990,0,0);}
.ma8_c01186{transform:matrix(0.202639,0.003242,-0.003999,0.249968,0,0);-ms-transform:matrix(0.202639,0.003242,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.202639,0.003242,-0.003999,0.249968,0,0);}
.m54_c01186{transform:matrix(0.203845,0.002038,-0.002500,0.249988,0,0);-ms-transform:matrix(0.203845,0.002038,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.203845,0.002038,-0.002500,0.249988,0,0);}
.m45_c01186{transform:matrix(0.204107,0.001837,-0.002250,0.249990,0,0);-ms-transform:matrix(0.204107,0.001837,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.204107,0.001837,-0.002250,0.249990,0,0);}
.m74_c01186{transform:matrix(0.204453,0.001636,-0.002000,0.249992,0,0);-ms-transform:matrix(0.204453,0.001636,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.204453,0.001636,-0.002000,0.249992,0,0);}
.mab_c01186{transform:matrix(0.205029,0.003280,-0.003999,0.249968,0,0);-ms-transform:matrix(0.205029,0.003280,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.205029,0.003280,-0.003999,0.249968,0,0);}
.m51_c01186{transform:matrix(0.206030,0.002060,-0.002500,0.249988,0,0);-ms-transform:matrix(0.206030,0.002060,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.206030,0.002060,-0.002500,0.249988,0,0);}
.m52_c01186{transform:matrix(0.206250,0.002062,-0.002500,0.249988,0,0);-ms-transform:matrix(0.206250,0.002062,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.206250,0.002062,-0.002500,0.249988,0,0);}
.m2c_c01186{transform:matrix(0.206817,0.001861,-0.002250,0.249990,0,0);-ms-transform:matrix(0.206817,0.001861,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.206817,0.001861,-0.002250,0.249990,0,0);}
.ma5_c01186{transform:matrix(0.207843,0.003325,-0.003999,0.249968,0,0);-ms-transform:matrix(0.207843,0.003325,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.207843,0.003325,-0.003999,0.249968,0,0);}
.m98_c01186{transform:matrix(0.209230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209230,0.000000,0.000000,0.250000,0,0);}
.m99_c01186{transform:matrix(0.211015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211015,0.000000,0.000000,0.250000,0,0);}
.m78_c01186{transform:matrix(0.211118,0.001689,-0.002000,0.249992,0,0);-ms-transform:matrix(0.211118,0.001689,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.211118,0.001689,-0.002000,0.249992,0,0);}
.mae_c01186{transform:matrix(0.212421,0.003186,-0.003750,0.249972,0,0);-ms-transform:matrix(0.212421,0.003186,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.212421,0.003186,-0.003750,0.249972,0,0);}
.m4a_c01186{transform:matrix(0.212489,0.002125,-0.002500,0.249988,0,0);-ms-transform:matrix(0.212489,0.002125,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.212489,0.002125,-0.002500,0.249988,0,0);}
.m20_c01186{transform:matrix(0.214656,0.001932,-0.002250,0.249990,0,0);-ms-transform:matrix(0.214656,0.001932,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.214656,0.001932,-0.002250,0.249990,0,0);}
.m9b_c01186{transform:matrix(0.214680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214680,0.000000,0.000000,0.250000,0,0);}
.m72_c01186{transform:matrix(0.214953,0.001720,-0.002000,0.249992,0,0);-ms-transform:matrix(0.214953,0.001720,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.214953,0.001720,-0.002000,0.249992,0,0);}
.m9f_c01186{transform:matrix(0.215129,0.003012,-0.003500,0.249976,0,0);-ms-transform:matrix(0.215129,0.003012,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.215129,0.003012,-0.003500,0.249976,0,0);}
.m9a_c01186{transform:matrix(0.216520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216520,0.000000,0.000000,0.250000,0,0);}
.m2d_c01186{transform:matrix(0.217191,0.001955,-0.002250,0.249990,0,0);-ms-transform:matrix(0.217191,0.001955,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.217191,0.001955,-0.002250,0.249990,0,0);}
.ma3_c01186{transform:matrix(0.217532,0.003481,-0.003999,0.249968,0,0);-ms-transform:matrix(0.217532,0.003481,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.217532,0.003481,-0.003999,0.249968,0,0);}
.ma9_c01186{transform:matrix(0.217577,0.003481,-0.003999,0.249968,0,0);-ms-transform:matrix(0.217577,0.003481,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.217577,0.003481,-0.003999,0.249968,0,0);}
.m79_c01186{transform:matrix(0.217700,0.003919,-0.004499,0.249960,0,0);-ms-transform:matrix(0.217700,0.003919,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.217700,0.003919,-0.004499,0.249960,0,0);}
.m94_c01186{transform:matrix(0.217752,0.002831,-0.003250,0.249979,0,0);-ms-transform:matrix(0.217752,0.002831,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.217752,0.002831,-0.003250,0.249979,0,0);}
.m75_c01186{transform:matrix(0.218358,0.001747,-0.002000,0.249992,0,0);-ms-transform:matrix(0.218358,0.001747,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.218358,0.001747,-0.002000,0.249992,0,0);}
.m5a_c01186{transform:matrix(0.218784,0.002188,-0.002500,0.249988,0,0);-ms-transform:matrix(0.218784,0.002188,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.218784,0.002188,-0.002500,0.249988,0,0);}
.m7c_c01186{transform:matrix(0.218890,0.003940,-0.004499,0.249960,0,0);-ms-transform:matrix(0.218890,0.003940,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.218890,0.003940,-0.004499,0.249960,0,0);}
.m3c_c01186{transform:matrix(0.220011,0.001980,-0.002250,0.249990,0,0);-ms-transform:matrix(0.220011,0.001980,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.220011,0.001980,-0.002250,0.249990,0,0);}
.mb2_c01186{transform:matrix(0.220555,0.003308,-0.003750,0.249972,0,0);-ms-transform:matrix(0.220555,0.003308,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.220555,0.003308,-0.003750,0.249972,0,0);}
.mb4_c01186{transform:matrix(0.222645,0.003340,-0.003750,0.249972,0,0);-ms-transform:matrix(0.222645,0.003340,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.222645,0.003340,-0.003750,0.249972,0,0);}
.m43_c01186{transform:matrix(0.222726,0.002005,-0.002250,0.249990,0,0);-ms-transform:matrix(0.222726,0.002005,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.222726,0.002005,-0.002250,0.249990,0,0);}
.m9c_c01186{transform:matrix(0.225255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225255,0.000000,0.000000,0.250000,0,0);}
.mb8_c01186{transform:matrix(0.226000,0.003390,-0.003750,0.249972,0,0);-ms-transform:matrix(0.226000,0.003390,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.226000,0.003390,-0.003750,0.249972,0,0);}
.m11_c01186{transform:matrix(0.226056,0.002035,-0.002250,0.249990,0,0);-ms-transform:matrix(0.226056,0.002035,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.226056,0.002035,-0.002250,0.249990,0,0);}
.m58_c01186{transform:matrix(0.226729,0.002267,-0.002500,0.249988,0,0);-ms-transform:matrix(0.226729,0.002267,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.226729,0.002267,-0.002500,0.249988,0,0);}
.mac_c01186{transform:matrix(0.226836,0.003629,-0.003999,0.249968,0,0);-ms-transform:matrix(0.226836,0.003629,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.226836,0.003629,-0.003999,0.249968,0,0);}
.m76_c01186{transform:matrix(0.227098,0.001817,-0.002000,0.249992,0,0);-ms-transform:matrix(0.227098,0.001817,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.227098,0.001817,-0.002000,0.249992,0,0);}
.m55_c01186{transform:matrix(0.227679,0.002277,-0.002500,0.249988,0,0);-ms-transform:matrix(0.227679,0.002277,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.227679,0.002277,-0.002500,0.249988,0,0);}
.m90_c01186{transform:matrix(0.227965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227965,0.000000,0.000000,0.250000,0,0);}
.m57_c01186{transform:matrix(0.228409,0.002284,-0.002500,0.249988,0,0);-ms-transform:matrix(0.228409,0.002284,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.228409,0.002284,-0.002500,0.249988,0,0);}
.maf_c01186{transform:matrix(0.228509,0.003428,-0.003750,0.249972,0,0);-ms-transform:matrix(0.228509,0.003428,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.228509,0.003428,-0.003750,0.249972,0,0);}
.m9d_c01186{transform:matrix(0.229485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229485,0.000000,0.000000,0.250000,0,0);}
.m27_c01186{transform:matrix(0.229496,0.002065,-0.002250,0.249990,0,0);-ms-transform:matrix(0.229496,0.002065,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.229496,0.002065,-0.002250,0.249990,0,0);}
.m2e_c01186{transform:matrix(0.229696,0.002067,-0.002250,0.249990,0,0);-ms-transform:matrix(0.229696,0.002067,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.229696,0.002067,-0.002250,0.249990,0,0);}
.m3a_c01186{transform:matrix(0.230036,0.002070,-0.002250,0.249990,0,0);-ms-transform:matrix(0.230036,0.002070,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.230036,0.002070,-0.002250,0.249990,0,0);}
.ma0_c01186{transform:matrix(0.230432,0.003226,-0.003500,0.249976,0,0);-ms-transform:matrix(0.230432,0.003226,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.230432,0.003226,-0.003500,0.249976,0,0);}
.mbc_c01186{transform:matrix(0.230719,0.003461,-0.003750,0.249972,0,0);-ms-transform:matrix(0.230719,0.003461,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.230719,0.003461,-0.003750,0.249972,0,0);}
.m31_c01186{transform:matrix(0.230886,0.002078,-0.002250,0.249990,0,0);-ms-transform:matrix(0.230886,0.002078,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.230886,0.002078,-0.002250,0.249990,0,0);}
.m50_c01186{transform:matrix(0.231088,0.002311,-0.002500,0.249988,0,0);-ms-transform:matrix(0.231088,0.002311,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.231088,0.002311,-0.002500,0.249988,0,0);}
.m6e_c01186{transform:matrix(0.232188,0.001858,-0.002000,0.249992,0,0);-ms-transform:matrix(0.232188,0.001858,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.232188,0.001858,-0.002000,0.249992,0,0);}
.mbb_c01186{transform:matrix(0.233069,0.003496,-0.003750,0.249972,0,0);-ms-transform:matrix(0.233069,0.003496,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.233069,0.003496,-0.003750,0.249972,0,0);}
.m82_c01186{transform:matrix(0.233162,0.004197,-0.004499,0.249960,0,0);-ms-transform:matrix(0.233162,0.004197,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.233162,0.004197,-0.004499,0.249960,0,0);}
.mba_c01186{transform:matrix(0.233609,0.003504,-0.003750,0.249972,0,0);-ms-transform:matrix(0.233609,0.003504,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.233609,0.003504,-0.003750,0.249972,0,0);}
.mad_c01186{transform:matrix(0.233654,0.003505,-0.003750,0.249972,0,0);-ms-transform:matrix(0.233654,0.003505,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.233654,0.003505,-0.003750,0.249972,0,0);}
.m37_c01186{transform:matrix(0.233686,0.002103,-0.002250,0.249990,0,0);-ms-transform:matrix(0.233686,0.002103,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.233686,0.002103,-0.002250,0.249990,0,0);}
.m23_c01186{transform:matrix(0.234251,0.002108,-0.002250,0.249990,0,0);-ms-transform:matrix(0.234251,0.002108,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.234251,0.002108,-0.002250,0.249990,0,0);}
.mc_c01186{transform:matrix(0.234353,0.001875,-0.002000,0.249992,0,0);-ms-transform:matrix(0.234353,0.001875,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.234353,0.001875,-0.002000,0.249992,0,0);}
.mb0_c01186{transform:matrix(0.234629,0.003519,-0.003750,0.249972,0,0);-ms-transform:matrix(0.234629,0.003519,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.234629,0.003519,-0.003750,0.249972,0,0);}
.m92_c01186{transform:matrix(0.234635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234635,0.000000,0.000000,0.250000,0,0);}
.m5e_c01186{transform:matrix(0.234768,0.002348,-0.002500,0.249988,0,0);-ms-transform:matrix(0.234768,0.002348,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.234768,0.002348,-0.002500,0.249988,0,0);}
.m25_c01186{transform:matrix(0.234770,0.002113,-0.002250,0.249990,0,0);-ms-transform:matrix(0.234770,0.002113,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.234770,0.002113,-0.002250,0.249990,0,0);}
.m12_c01186{transform:matrix(0.235685,0.002121,-0.002250,0.249990,0,0);-ms-transform:matrix(0.235685,0.002121,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.235685,0.002121,-0.002250,0.249990,0,0);}
.m21_c01186{transform:matrix(0.236845,0.002132,-0.002250,0.249990,0,0);-ms-transform:matrix(0.236845,0.002132,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.236845,0.002132,-0.002250,0.249990,0,0);}
.mb6_c01186{transform:matrix(0.237018,0.003555,-0.003750,0.249972,0,0);-ms-transform:matrix(0.237018,0.003555,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.237018,0.003555,-0.003750,0.249972,0,0);}
.m4f_c01186{transform:matrix(0.237203,0.002372,-0.002500,0.249988,0,0);-ms-transform:matrix(0.237203,0.002372,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.237203,0.002372,-0.002500,0.249988,0,0);}
.m8_c01186{transform:matrix(0.237532,0.001900,-0.002000,0.249992,0,0);-ms-transform:matrix(0.237532,0.001900,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.237532,0.001900,-0.002000,0.249992,0,0);}
.m5d_c01186{transform:matrix(0.237583,0.002376,-0.002500,0.249988,0,0);-ms-transform:matrix(0.237583,0.002376,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.237583,0.002376,-0.002500,0.249988,0,0);}
.m6_c01186{transform:matrix(0.238432,0.001907,-0.002000,0.249992,0,0);-ms-transform:matrix(0.238432,0.001907,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.238432,0.001907,-0.002000,0.249992,0,0);}
.m6b_c01186{transform:matrix(0.238527,0.001908,-0.002000,0.249992,0,0);-ms-transform:matrix(0.238527,0.001908,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.238527,0.001908,-0.002000,0.249992,0,0);}
.m81_c01186{transform:matrix(0.239316,0.004308,-0.004499,0.249960,0,0);-ms-transform:matrix(0.239316,0.004308,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.239316,0.004308,-0.004499,0.249960,0,0);}
.m49_c01186{transform:matrix(0.239898,0.002399,-0.002500,0.249988,0,0);-ms-transform:matrix(0.239898,0.002399,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.239898,0.002399,-0.002500,0.249988,0,0);}
.m3f_c01186{transform:matrix(0.239950,0.002160,-0.002250,0.249990,0,0);-ms-transform:matrix(0.239950,0.002160,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.239950,0.002160,-0.002250,0.249990,0,0);}
.m93_c01186{transform:matrix(0.240125,0.003122,-0.003250,0.249979,0,0);-ms-transform:matrix(0.240125,0.003122,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.240125,0.003122,-0.003250,0.249979,0,0);}
.m48_c01186{transform:matrix(0.240363,0.002404,-0.002500,0.249988,0,0);-ms-transform:matrix(0.240363,0.002404,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.240363,0.002404,-0.002500,0.249988,0,0);}
.m7e_c01186{transform:matrix(0.241081,0.004339,-0.004499,0.249960,0,0);-ms-transform:matrix(0.241081,0.004339,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.241081,0.004339,-0.004499,0.249960,0,0);}
.m28_c01186{transform:matrix(0.241165,0.002170,-0.002250,0.249990,0,0);-ms-transform:matrix(0.241165,0.002170,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.241165,0.002170,-0.002250,0.249990,0,0);}
.m34_c01186{transform:matrix(0.241290,0.002172,-0.002250,0.249990,0,0);-ms-transform:matrix(0.241290,0.002172,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.241290,0.002172,-0.002250,0.249990,0,0);}
.m6a_c01186{transform:matrix(0.242632,0.001941,-0.002000,0.249992,0,0);-ms-transform:matrix(0.242632,0.001941,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.242632,0.001941,-0.002000,0.249992,0,0);}
.m24_c01186{transform:matrix(0.242860,0.002186,-0.002250,0.249990,0,0);-ms-transform:matrix(0.242860,0.002186,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.242860,0.002186,-0.002250,0.249990,0,0);}
.m7a_c01186{transform:matrix(0.242981,0.004374,-0.004499,0.249960,0,0);-ms-transform:matrix(0.242981,0.004374,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.242981,0.004374,-0.004499,0.249960,0,0);}
.m10_c01186{transform:matrix(0.243220,0.002189,-0.002250,0.249990,0,0);-ms-transform:matrix(0.243220,0.002189,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.243220,0.002189,-0.002250,0.249990,0,0);}
.mb7_c01186{transform:matrix(0.243723,0.003656,-0.003750,0.249972,0,0);-ms-transform:matrix(0.243723,0.003656,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.243723,0.003656,-0.003750,0.249972,0,0);}
.m67_c01186{transform:matrix(0.244302,0.001954,-0.002000,0.249992,0,0);-ms-transform:matrix(0.244302,0.001954,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.244302,0.001954,-0.002000,0.249992,0,0);}
.m53_c01186{transform:matrix(0.244553,0.002446,-0.002500,0.249988,0,0);-ms-transform:matrix(0.244553,0.002446,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.244553,0.002446,-0.002500,0.249988,0,0);}
.m2b_c01186{transform:matrix(0.244970,0.002205,-0.002250,0.249990,0,0);-ms-transform:matrix(0.244970,0.002205,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.244970,0.002205,-0.002250,0.249990,0,0);}
.m7_c01186{transform:matrix(0.245067,0.001961,-0.002000,0.249992,0,0);-ms-transform:matrix(0.245067,0.001961,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.245067,0.001961,-0.002000,0.249992,0,0);}
.m95_c01186{transform:matrix(0.245179,0.003187,-0.003250,0.249979,0,0);-ms-transform:matrix(0.245179,0.003187,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.245179,0.003187,-0.003250,0.249979,0,0);}
.m5b_c01186{transform:matrix(0.245323,0.002453,-0.002500,0.249988,0,0);-ms-transform:matrix(0.245323,0.002453,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.245323,0.002453,-0.002500,0.249988,0,0);}
.m56_c01186{transform:matrix(0.246238,0.002462,-0.002500,0.249988,0,0);-ms-transform:matrix(0.246238,0.002462,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.246238,0.002462,-0.002500,0.249988,0,0);}
.m69_c01186{transform:matrix(0.246837,0.001975,-0.002000,0.249992,0,0);-ms-transform:matrix(0.246837,0.001975,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.246837,0.001975,-0.002000,0.249992,0,0);}
.m63_c01186{transform:matrix(0.246928,0.002469,-0.002500,0.249988,0,0);-ms-transform:matrix(0.246928,0.002469,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.246928,0.002469,-0.002500,0.249988,0,0);}
.m62_c01186{transform:matrix(0.247238,0.002472,-0.002500,0.249988,0,0);-ms-transform:matrix(0.247238,0.002472,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.247238,0.002472,-0.002500,0.249988,0,0);}
.m7b_c01186{transform:matrix(0.247240,0.004450,-0.004499,0.249960,0,0);-ms-transform:matrix(0.247240,0.004450,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.247240,0.004450,-0.004499,0.249960,0,0);}
.m73_c01186{transform:matrix(0.247682,0.001981,-0.002000,0.249992,0,0);-ms-transform:matrix(0.247682,0.001981,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.247682,0.001981,-0.002000,0.249992,0,0);}
.m3b_c01186{transform:matrix(0.247805,0.002230,-0.002250,0.249990,0,0);-ms-transform:matrix(0.247805,0.002230,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.247805,0.002230,-0.002250,0.249990,0,0);}
.m44_c01186{transform:matrix(0.247815,0.002230,-0.002250,0.249990,0,0);-ms-transform:matrix(0.247815,0.002230,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.247815,0.002230,-0.002250,0.249990,0,0);}
.m97_c01186{transform:matrix(0.248199,0.003227,-0.003250,0.249979,0,0);-ms-transform:matrix(0.248199,0.003227,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.248199,0.003227,-0.003250,0.249979,0,0);}
.m4d_c01186{transform:matrix(0.248433,0.002484,-0.002500,0.249988,0,0);-ms-transform:matrix(0.248433,0.002484,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.248433,0.002484,-0.002500,0.249988,0,0);}
.m59_c01186{transform:matrix(0.248738,0.002487,-0.002500,0.249988,0,0);-ms-transform:matrix(0.248738,0.002487,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.248738,0.002487,-0.002500,0.249988,0,0);}
.m5c_c01186{transform:matrix(0.250507,0.002505,-0.002500,0.249988,0,0);-ms-transform:matrix(0.250507,0.002505,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.250507,0.002505,-0.002500,0.249988,0,0);}
.m7d_c01186{transform:matrix(0.250624,0.004511,-0.004499,0.249960,0,0);-ms-transform:matrix(0.250624,0.004511,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.250624,0.004511,-0.004499,0.249960,0,0);}
.m13_c01186{transform:matrix(0.251725,0.002266,-0.002250,0.249990,0,0);-ms-transform:matrix(0.251725,0.002266,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.251725,0.002266,-0.002250,0.249990,0,0);}
.m26_c01186{transform:matrix(0.251765,0.002266,-0.002250,0.249990,0,0);-ms-transform:matrix(0.251765,0.002266,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.251765,0.002266,-0.002250,0.249990,0,0);}
.mb9_c01186{transform:matrix(0.252192,0.003783,-0.003750,0.249972,0,0);-ms-transform:matrix(0.252192,0.003783,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.252192,0.003783,-0.003750,0.249972,0,0);}
.m40_c01186{transform:matrix(0.252345,0.002271,-0.002250,0.249990,0,0);-ms-transform:matrix(0.252345,0.002271,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.252345,0.002271,-0.002250,0.249990,0,0);}
.ma_c01186{transform:matrix(0.252347,0.002019,-0.002000,0.249992,0,0);-ms-transform:matrix(0.252347,0.002019,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.252347,0.002019,-0.002000,0.249992,0,0);}
.ma7_c01186{transform:matrix(0.252573,0.004041,-0.003999,0.249968,0,0);-ms-transform:matrix(0.252573,0.004041,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.252573,0.004041,-0.003999,0.249968,0,0);}
.m14_c01186{transform:matrix(0.253075,0.002278,-0.002250,0.249990,0,0);-ms-transform:matrix(0.253075,0.002278,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.253075,0.002278,-0.002250,0.249990,0,0);}
.m30_c01186{transform:matrix(0.253365,0.002280,-0.002250,0.249990,0,0);-ms-transform:matrix(0.253365,0.002280,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.253365,0.002280,-0.002250,0.249990,0,0);}
.m22_c01186{transform:matrix(0.254175,0.002288,-0.002250,0.249990,0,0);-ms-transform:matrix(0.254175,0.002288,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.254175,0.002288,-0.002250,0.249990,0,0);}
.m91_c01186{transform:matrix(0.254425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254425,0.000000,0.000000,0.250000,0,0);}
.m41_c01186{transform:matrix(0.254615,0.002292,-0.002250,0.249990,0,0);-ms-transform:matrix(0.254615,0.002292,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.254615,0.002292,-0.002250,0.249990,0,0);}
.m9e_c01186{transform:matrix(0.255670,0.003579,-0.003500,0.249976,0,0);-ms-transform:matrix(0.255670,0.003579,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.255670,0.003579,-0.003500,0.249976,0,0);}
.m61_c01186{transform:matrix(0.256177,0.002562,-0.002500,0.249988,0,0);-ms-transform:matrix(0.256177,0.002562,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.256177,0.002562,-0.002500,0.249988,0,0);}
.m5f_c01186{transform:matrix(0.256442,0.002564,-0.002500,0.249988,0,0);-ms-transform:matrix(0.256442,0.002564,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.256442,0.002564,-0.002500,0.249988,0,0);}
.mb3_c01186{transform:matrix(0.256646,0.003850,-0.003750,0.249972,0,0);-ms-transform:matrix(0.256646,0.003850,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.256646,0.003850,-0.003750,0.249972,0,0);}
.ma1_c01186{transform:matrix(0.256925,0.003597,-0.003500,0.249976,0,0);-ms-transform:matrix(0.256925,0.003597,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.256925,0.003597,-0.003500,0.249976,0,0);}
.m38_c01186{transform:matrix(0.256955,0.002313,-0.002250,0.249990,0,0);-ms-transform:matrix(0.256955,0.002313,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.256955,0.002313,-0.002250,0.249990,0,0);}
.m1f_c01186{transform:matrix(0.256980,0.002313,-0.002250,0.249990,0,0);-ms-transform:matrix(0.256980,0.002313,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.256980,0.002313,-0.002250,0.249990,0,0);}
.mf_c01186{transform:matrix(0.257115,0.002314,-0.002250,0.249990,0,0);-ms-transform:matrix(0.257115,0.002314,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.257115,0.002314,-0.002250,0.249990,0,0);}
.m71_c01186{transform:matrix(0.257137,0.002057,-0.002000,0.249992,0,0);-ms-transform:matrix(0.257137,0.002057,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.257137,0.002057,-0.002000,0.249992,0,0);}
.m2_c01186{transform:matrix(0.258357,0.002067,-0.002000,0.249992,0,0);-ms-transform:matrix(0.258357,0.002067,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.258357,0.002067,-0.002000,0.249992,0,0);}
.m42_c01186{transform:matrix(0.259160,0.002332,-0.002250,0.249990,0,0);-ms-transform:matrix(0.259160,0.002332,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.259160,0.002332,-0.002250,0.249990,0,0);}
.m4e_c01186{transform:matrix(0.259312,0.002593,-0.002500,0.249988,0,0);-ms-transform:matrix(0.259312,0.002593,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.259312,0.002593,-0.002500,0.249988,0,0);}
.mb1_c01186{transform:matrix(0.259436,0.003892,-0.003750,0.249972,0,0);-ms-transform:matrix(0.259436,0.003892,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.259436,0.003892,-0.003750,0.249972,0,0);}
.ma2_c01186{transform:matrix(0.259680,0.003636,-0.003500,0.249976,0,0);-ms-transform:matrix(0.259680,0.003636,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.259680,0.003636,-0.003500,0.249976,0,0);}
.m80_c01186{transform:matrix(0.260938,0.004697,-0.004499,0.249960,0,0);-ms-transform:matrix(0.260938,0.004697,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.260938,0.004697,-0.004499,0.249960,0,0);}
.m3d_c01186{transform:matrix(0.262034,0.002358,-0.002250,0.249990,0,0);-ms-transform:matrix(0.262034,0.002358,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.262034,0.002358,-0.002250,0.249990,0,0);}
.me_c01186{transform:matrix(0.263174,0.002369,-0.002250,0.249990,0,0);-ms-transform:matrix(0.263174,0.002369,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.263174,0.002369,-0.002250,0.249990,0,0);}
.m39_c01186{transform:matrix(0.264979,0.002385,-0.002250,0.249990,0,0);-ms-transform:matrix(0.264979,0.002385,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.264979,0.002385,-0.002250,0.249990,0,0);}
.mb_c01186{transform:matrix(0.270386,0.002163,-0.002000,0.249992,0,0);-ms-transform:matrix(0.270386,0.002163,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.270386,0.002163,-0.002000,0.249992,0,0);}
.m65_c01186{transform:matrix(0.270976,0.002168,-0.002000,0.249992,0,0);-ms-transform:matrix(0.270976,0.002168,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.270976,0.002168,-0.002000,0.249992,0,0);}
.m35_c01186{transform:matrix(0.271539,0.002444,-0.002250,0.249990,0,0);-ms-transform:matrix(0.271539,0.002444,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.271539,0.002444,-0.002250,0.249990,0,0);}
.m4b_c01186{transform:matrix(0.271546,0.002715,-0.002500,0.249988,0,0);-ms-transform:matrix(0.271546,0.002715,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.271546,0.002715,-0.002500,0.249988,0,0);}
.m32_c01186{transform:matrix(0.271829,0.002446,-0.002250,0.249990,0,0);-ms-transform:matrix(0.271829,0.002446,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.271829,0.002446,-0.002250,0.249990,0,0);}
.m60_c01186{transform:matrix(0.271896,0.002719,-0.002500,0.249988,0,0);-ms-transform:matrix(0.271896,0.002719,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.271896,0.002719,-0.002500,0.249988,0,0);}
.m36_c01186{transform:matrix(0.273629,0.002463,-0.002250,0.249990,0,0);-ms-transform:matrix(0.273629,0.002463,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.273629,0.002463,-0.002250,0.249990,0,0);}
.m6c_c01186{transform:matrix(0.274411,0.002195,-0.002000,0.249992,0,0);-ms-transform:matrix(0.274411,0.002195,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.274411,0.002195,-0.002000,0.249992,0,0);}
.m9_c01186{transform:matrix(0.274496,0.002196,-0.002000,0.249992,0,0);-ms-transform:matrix(0.274496,0.002196,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.274496,0.002196,-0.002000,0.249992,0,0);}
.m33_c01186{transform:matrix(0.274694,0.002472,-0.002250,0.249990,0,0);-ms-transform:matrix(0.274694,0.002472,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.274694,0.002472,-0.002250,0.249990,0,0);}
.m4c_c01186{transform:matrix(0.275451,0.002755,-0.002500,0.249988,0,0);-ms-transform:matrix(0.275451,0.002755,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.275451,0.002755,-0.002500,0.249988,0,0);}
.m1_c01186{transform:matrix(0.276040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276040,0.000000,0.000000,0.250000,0,0);}
.m66_c01186{transform:matrix(0.277916,0.002223,-0.002000,0.249992,0,0);-ms-transform:matrix(0.277916,0.002223,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.277916,0.002223,-0.002000,0.249992,0,0);}
.m68_c01186{transform:matrix(0.278146,0.002225,-0.002000,0.249992,0,0);-ms-transform:matrix(0.278146,0.002225,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.278146,0.002225,-0.002000,0.249992,0,0);}
.m46_c01186{transform:matrix(0.280301,0.002803,-0.002500,0.249988,0,0);-ms-transform:matrix(0.280301,0.002803,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.280301,0.002803,-0.002500,0.249988,0,0);}
.m47_c01186{transform:matrix(0.281076,0.002811,-0.002500,0.249988,0,0);-ms-transform:matrix(0.281076,0.002811,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.281076,0.002811,-0.002500,0.249988,0,0);}
.m64_c01186{transform:matrix(0.296135,0.002961,-0.002500,0.249988,0,0);-ms-transform:matrix(0.296135,0.002961,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.296135,0.002961,-0.002500,0.249988,0,0);}
.md_c01186{transform:matrix(0.304315,0.002435,-0.002000,0.249992,0,0);-ms-transform:matrix(0.304315,0.002435,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.304315,0.002435,-0.002000,0.249992,0,0);}
.mb5_c01186{transform:matrix(0.317924,0.004769,-0.003750,0.249972,0,0);-ms-transform:matrix(0.317924,0.004769,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.317924,0.004769,-0.003750,0.249972,0,0);}
.m5_c01186{transform:matrix(0.324065,0.002593,-0.002000,0.249992,0,0);-ms-transform:matrix(0.324065,0.002593,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.324065,0.002593,-0.002000,0.249992,0,0);}
.m4_c01186{transform:matrix(0.347579,0.002781,-0.002000,0.249992,0,0);-ms-transform:matrix(0.347579,0.002781,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.347579,0.002781,-0.002000,0.249992,0,0);}
.m70_c01186{transform:matrix(0.365913,0.002927,-0.002000,0.249992,0,0);-ms-transform:matrix(0.365913,0.002927,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.365913,0.002927,-0.002000,0.249992,0,0);}
.m8a_c01186{transform:matrix(0.384038,0.006913,-0.004499,0.249960,0,0);-ms-transform:matrix(0.384038,0.006913,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.384038,0.006913,-0.004499,0.249960,0,0);}
.m0_c01186{transform:matrix(0.505900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505900,0.000000,0.000000,0.250000,0,0);}
.v0_c01186{vertical-align:0.000000px;}
.ls0_c01186{letter-spacing:0.000000px;}
.sc__c01186{text-shadow:none;}
.sc0_c01186{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__c01186{-webkit-text-stroke:0px transparent;}
.sc0_c01186{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01186{word-spacing:0.000000px;}
.fc0_c01186{color:transparent;}
.fs0_c01186{font-size:66.000000px;}
.fs2_c01186{font-size:72.002304px;}
.fs6_c01186{font-size:72.002916px;}
.fs7_c01186{font-size:72.003600px;}
.fs15_c01186{font-size:72.008100px;}
.fse_c01186{font-size:78.000000px;}
.fs1_c01186{font-size:78.002496px;}
.fs3_c01186{font-size:78.003159px;}
.fs9_c01186{font-size:78.003900px;}
.fsf_c01186{font-size:78.006591px;}
.fs11_c01186{font-size:78.007644px;}
.fs16_c01186{font-size:78.008775px;}
.fsb_c01186{font-size:78.012635px;}
.fs10_c01186{font-size:84.000000px;}
.fsa_c01186{font-size:84.002688px;}
.fs5_c01186{font-size:84.003402px;}
.fs8_c01186{font-size:84.004200px;}
.fs14_c01186{font-size:84.009449px;}
.fs13_c01186{font-size:84.010751px;}
.fs12_c01186{font-size:90.011519px;}
.fs4_c01186{font-size:102.004131px;}
.fsc_c01186{font-size:108.017495px;}
.fsd_c01186{font-size:114.009633px;}
.y0_c01186{bottom:0.000000px;}
.yb5_c01186{bottom:60.199282px;}
.yb4_c01186{bottom:61.398427px;}
.yb3_c01186{bottom:62.140222px;}
.yb2_c01186{bottom:64.071922px;}
.yb1_c01186{bottom:64.796797px;}
.yb0_c01186{bottom:94.731832px;}
.yaf_c01186{bottom:95.521057px;}
.yae_c01186{bottom:97.120057px;}
.yad_c01186{bottom:97.507927px;}
.yac_c01186{bottom:98.306753px;}
.yab_c01186{bottom:98.870985px;}
.yaa_c01186{bottom:99.900810px;}
.ya9_c01186{bottom:132.495735px;}
.ya8_c01186{bottom:133.634145px;}
.ya7_c01186{bottom:134.309685px;}
.ya6_c01186{bottom:135.003000px;}
.ya5_c01186{bottom:167.110920px;}
.ya4_c01186{bottom:167.629608px;}
.ya3_c01186{bottom:168.142800px;}
.ya2_c01186{bottom:169.029456px;}
.ya1_c01186{bottom:169.556424px;}
.ya0_c01186{bottom:170.913000px;}
.y9f_c01186{bottom:203.095104px;}
.y9e_c01186{bottom:204.312912px;}
.y9d_c01186{bottom:204.835776px;}
.y9c_c01186{bottom:206.283000px;}
.y9b_c01186{bottom:238.588194px;}
.y9a_c01186{bottom:239.825535px;}
.y99_c01186{bottom:240.283188px;}
.y98_c01186{bottom:240.883410px;}
.y97_c01186{bottom:241.383000px;}
.y96_c01186{bottom:274.597500px;}
.y95_c01186{bottom:310.216452px;}
.y94_c01186{bottom:310.640538px;}
.y93_c01186{bottom:311.378262px;}
.y92_c01186{bottom:311.809544px;}
.y91_c01186{bottom:312.663000px;}
.y90_c01186{bottom:345.186000px;}
.y8f_c01186{bottom:377.103768px;}
.y8e_c01186{bottom:380.166282px;}
.y8d_c01186{bottom:380.720492px;}
.y8c_c01186{bottom:381.594950px;}
.y8b_c01186{bottom:382.321500px;}
.y8a_c01186{bottom:411.192717px;}
.y89_c01186{bottom:412.094667px;}
.y88_c01186{bottom:412.736139px;}
.y87_c01186{bottom:414.564111px;}
.y86_c01186{bottom:414.795918px;}
.y85_c01186{bottom:415.029117px;}
.y84_c01186{bottom:415.419948px;}
.y83_c01186{bottom:415.794174px;}
.y82_c01186{bottom:443.735433px;}
.y81_c01186{bottom:444.542328px;}
.y80_c01186{bottom:446.525667px;}
.y7f_c01186{bottom:448.144560px;}
.y7e_c01186{bottom:448.527393px;}
.y7d_c01186{bottom:449.927883px;}
.y7c_c01186{bottom:450.516024px;}
.y7b_c01186{bottom:452.095605px;}
.y7a_c01186{bottom:453.106755px;}
.y79_c01186{bottom:453.874500px;}
.y78_c01186{bottom:483.036660px;}
.y77_c01186{bottom:483.295680px;}
.y76_c01186{bottom:483.836028px;}
.y75_c01186{bottom:484.280976px;}
.y74_c01186{bottom:484.551072px;}
.y73_c01186{bottom:485.698656px;}
.y72_c01186{bottom:486.045852px;}
.y71_c01186{bottom:486.303108px;}
.y70_c01186{bottom:486.843024px;}
.y6f_c01186{bottom:487.110612px;}
.y6e_c01186{bottom:487.801968px;}
.y6d_c01186{bottom:488.160408px;}
.y6c_c01186{bottom:519.746940px;}
.y6b_c01186{bottom:520.012608px;}
.y6a_c01186{bottom:520.639140px;}
.y69_c01186{bottom:520.904892px;}
.y68_c01186{bottom:521.784384px;}
.y67_c01186{bottom:522.131568px;}
.y66_c01186{bottom:523.006596px;}
.y65_c01186{bottom:523.801500px;}
.y64_c01186{bottom:594.482145px;}
.y62_c01186{bottom:594.482415px;}
.y61_c01186{bottom:594.482685px;}
.y63_c01186{bottom:594.482730px;}
.y60_c01186{bottom:623.460120px;}
.y5f_c01186{bottom:624.439770px;}
.y5e_c01186{bottom:624.927690px;}
.y5d_c01186{bottom:625.652295px;}
.y5c_c01186{bottom:626.745045px;}
.y5b_c01186{bottom:627.472650px;}
.y5a_c01186{bottom:627.840015px;}
.y59_c01186{bottom:628.796835px;}
.y58_c01186{bottom:629.907045px;}
.y57_c01186{bottom:658.894005px;}
.y56_c01186{bottom:659.879595px;}
.y55_c01186{bottom:660.410400px;}
.y54_c01186{bottom:660.669915px;}
.y53_c01186{bottom:662.083200px;}
.y52_c01186{bottom:662.349315px;}
.y51_c01186{bottom:662.616435px;}
.y50_c01186{bottom:663.399060px;}
.y4f_c01186{bottom:664.198590px;}
.y4e_c01186{bottom:695.234115px;}
.y4d_c01186{bottom:695.676630px;}
.y4c_c01186{bottom:696.462690px;}
.y4b_c01186{bottom:697.332285px;}
.y4a_c01186{bottom:697.669440px;}
.y49_c01186{bottom:698.109540px;}
.y48_c01186{bottom:698.452455px;}
.y47_c01186{bottom:699.557190px;}
.y46_c01186{bottom:700.651500px;}
.y45_c01186{bottom:769.898044px;}
.y44_c01186{bottom:800.560085px;}
.y43_c01186{bottom:800.823558px;}
.y42_c01186{bottom:801.528102px;}
.y41_c01186{bottom:801.978270px;}
.y40_c01186{bottom:802.594293px;}
.y3f_c01186{bottom:803.036929px;}
.y3e_c01186{bottom:803.211017px;}
.y3d_c01186{bottom:804.349383px;}
.y3c_c01186{bottom:804.710004px;}
.y3b_c01186{bottom:805.331898px;}
.y3a_c01186{bottom:805.679695px;}
.y39_c01186{bottom:837.693008px;}
.y38_c01186{bottom:838.087106px;}
.y37_c01186{bottom:838.286820px;}
.y36_c01186{bottom:838.812759px;}
.y35_c01186{bottom:839.477546px;}
.y34_c01186{bottom:839.681739px;}
.y33_c01186{bottom:840.210849px;}
.y32_c01186{bottom:840.676770px;}
.y31_c01186{bottom:840.867415px;}
.y30_c01186{bottom:841.318899px;}
.y2f_c01186{bottom:872.544259px;}
.y2e_c01186{bottom:873.224565px;}
.y2d_c01186{bottom:873.632899px;}
.y2c_c01186{bottom:873.936676px;}
.y2b_c01186{bottom:874.937796px;}
.y2a_c01186{bottom:875.205150px;}
.y29_c01186{bottom:875.523210px;}
.y28_c01186{bottom:876.821100px;}
.y27_c01186{bottom:877.501500px;}
.y25_c01186{bottom:945.245121px;}
.y26_c01186{bottom:945.245254px;}
.y24_c01186{bottom:945.245784px;}
.y22_c01186{bottom:945.246257px;}
.y23_c01186{bottom:945.246267px;}
.y21_c01186{bottom:945.246650px;}
.y20_c01186{bottom:945.246666px;}
.y1f_c01186{bottom:945.247029px;}
.y1e_c01186{bottom:977.437522px;}
.y1d_c01186{bottom:977.605343px;}
.y1c_c01186{bottom:978.045063px;}
.y1b_c01186{bottom:978.328876px;}
.y1a_c01186{bottom:978.492649px;}
.y19_c01186{bottom:978.820424px;}
.y18_c01186{bottom:978.935514px;}
.y17_c01186{bottom:979.601880px;}
.y16_c01186{bottom:980.148030px;}
.y15_c01186{bottom:980.638579px;}
.y14_c01186{bottom:1013.078827px;}
.y13_c01186{bottom:1013.783582px;}
.y12_c01186{bottom:1014.371682px;}
.y11_c01186{bottom:1014.782406px;}
.y10_c01186{bottom:1015.469961px;}
.yf_c01186{bottom:1016.281811px;}
.ye_c01186{bottom:1017.361500px;}
.yd_c01186{bottom:1103.915292px;}
.yc_c01186{bottom:1104.147960px;}
.yb_c01186{bottom:1104.760848px;}
.ya_c01186{bottom:1105.157424px;}
.y9_c01186{bottom:1105.920600px;}
.y8_c01186{bottom:1139.345220px;}
.y7_c01186{bottom:1139.882904px;}
.y6_c01186{bottom:1140.397140px;}
.y5_c01186{bottom:1140.578820px;}
.y4_c01186{bottom:1141.125156px;}
.y3_c01186{bottom:1141.289040px;}
.y2_c01186{bottom:1142.101500px;}
.y1_c01186{bottom:1200.141000px;}
.h2_c01186{height:66.000000px;}
.h4_c01186{height:72.002304px;}
.h8_c01186{height:72.002916px;}
.h9_c01186{height:72.003600px;}
.h17_c01186{height:72.008100px;}
.h10_c01186{height:78.000000px;}
.h3_c01186{height:78.002496px;}
.h5_c01186{height:78.003159px;}
.hb_c01186{height:78.003900px;}
.h11_c01186{height:78.006591px;}
.h13_c01186{height:78.007644px;}
.h18_c01186{height:78.008775px;}
.hd_c01186{height:78.012635px;}
.h12_c01186{height:84.000000px;}
.hc_c01186{height:84.002688px;}
.h7_c01186{height:84.003402px;}
.ha_c01186{height:84.004200px;}
.h16_c01186{height:84.009449px;}
.h15_c01186{height:84.010751px;}
.h14_c01186{height:90.011519px;}
.h6_c01186{height:102.004131px;}
.he_c01186{height:108.017495px;}
.hf_c01186{height:114.009633px;}
.h1_c01186{height:1258.500000px;}
.h0_c01186{height:1258.740000px;}
.w0_c01186{width:904.200000px;}
.w1_c01186{width:904.500000px;}
.x0_c01186{left:0.000000px;}
.x3a_c01186{left:160.213455px;}
.x2c_c01186{left:161.889170px;}
.x12_c01186{left:162.998610px;}
.x2d_c01186{left:205.367061px;}
.x45_c01186{left:206.428788px;}
.x3f_c01186{left:215.727795px;}
.x28_c01186{left:239.132089px;}
.x1b_c01186{left:250.288678px;}
.x5e_c01186{left:256.825500px;}
.x13_c01186{left:261.007633px;}
.x5c_c01186{left:264.114000px;}
.x3_c01186{left:270.693000px;}
.x30_c01186{left:271.936500px;}
.xa_c01186{left:273.141228px;}
.x59_c01186{left:280.603500px;}
.x1c_c01186{left:282.959824px;}
.x46_c01186{left:292.848288px;}
.x5f_c01186{left:303.046500px;}
.x40_c01186{left:304.563675px;}
.x4b_c01186{left:314.569500px;}
.x5a_c01186{left:316.288500px;}
.x47_c01186{left:326.296788px;}
.x2e_c01186{left:328.203168px;}
.x53_c01186{left:337.391349px;}
.x57_c01186{left:347.760000px;}
.x1d_c01186{left:348.842157px;}
.x35_c01186{left:359.271420px;}
.x14_c01186{left:370.361575px;}
.x4_c01186{left:372.250500px;}
.xb_c01186{left:382.226604px;}
.x1_c01186{left:389.340000px;}
.x63_c01186{left:391.481595px;}
.x5_c01186{left:392.736000px;}
.x48_c01186{left:393.786288px;}
.x61_c01186{left:402.667507px;}
.x58_c01186{left:404.190000px;}
.x60_c01186{left:423.976500px;}
.x36_c01186{left:425.946255px;}
.x2_c01186{left:430.920000px;}
.x56_c01186{left:435.613500px;}
.x29_c01186{left:437.045949px;}
.xc_c01186{left:438.924060px;}
.x3b_c01186{left:447.760590px;}
.x1e_c01186{left:449.015770px;}
.x4c_c01186{left:458.499000px;}
.x6_c01186{left:461.028000px;}
.x49_c01186{left:469.342788px;}
.x2a_c01186{left:471.068367px;}
.x5b_c01186{left:480.232500px;}
.x41_c01186{left:481.333500px;}
.x7_c01186{left:483.738000px;}
.x4d_c01186{left:491.173500px;}
.x22_c01186{left:492.654000px;}
.x5d_c01186{left:501.744000px;}
.x15_c01186{left:503.740381px;}
.x1f_c01186{left:504.907293px;}
.x62_c01186{left:513.020535px;}
.x42_c01186{left:524.731500px;}
.xd_c01186{left:526.410756px;}
.x23_c01186{left:527.994000px;}
.x8_c01186{left:548.017500px;}
.x24_c01186{left:557.700000px;}
.xe_c01186{left:559.619520px;}
.x4e_c01186{left:568.978500px;}
.x31_c01186{left:570.142500px;}
.x20_c01186{left:581.320476px;}
.x4f_c01186{left:590.247000px;}
.x16_c01186{left:592.284067px;}
.x54_c01186{left:598.497027px;}
.x37_c01186{left:602.528280px;}
.x32_c01186{left:603.858000px;}
.xf_c01186{left:605.215500px;}
.x3c_c01186{left:612.994440px;}
.x9_c01186{left:615.228000px;}
.x17_c01186{left:624.982242px;}
.x21_c01186{left:626.142607px;}
.x38_c01186{left:634.930425px;}
.x4a_c01186{left:646.552788px;}
.x3d_c01186{left:657.285990px;}
.x43_c01186{left:667.887000px;}
.x25_c01186{left:668.935500px;}
.x10_c01186{left:670.560000px;}
.x50_c01186{left:680.185500px;}
.x18_c01186{left:681.685780px;}
.x33_c01186{left:690.817500px;}
.x39_c01186{left:701.362260px;}
.x26_c01186{left:702.688500px;}
.x3e_c01186{left:746.400105px;}
.x11_c01186{left:748.866000px;}
.x2b_c01186{left:768.358386px;}
.x19_c01186{left:769.713453px;}
.x44_c01186{left:779.412000px;}
.x51_c01186{left:790.371000px;}
.x2f_c01186{left:802.073948px;}
.x1a_c01186{left:803.194654px;}
.x34_c01186{left:813.675000px;}
.x55_c01186{left:818.869632px;}
.x27_c01186{left:823.648500px;}
.x52_c01186{left:835.198500px;}
@media print{
.v0_c01186{vertical-align:0.000000pt;}
.ls0_c01186{letter-spacing:0.000000pt;}
.ws0_c01186{word-spacing:0.000000pt;}
.fs0_c01186{font-size:58.666667pt;}
.fs2_c01186{font-size:64.002048pt;}
.fs6_c01186{font-size:64.002592pt;}
.fs7_c01186{font-size:64.003200pt;}
.fs15_c01186{font-size:64.007200pt;}
.fse_c01186{font-size:69.333333pt;}
.fs1_c01186{font-size:69.335552pt;}
.fs3_c01186{font-size:69.336141pt;}
.fs9_c01186{font-size:69.336800pt;}
.fsf_c01186{font-size:69.339192pt;}
.fs11_c01186{font-size:69.340128pt;}
.fs16_c01186{font-size:69.341133pt;}
.fsb_c01186{font-size:69.344564pt;}
.fs10_c01186{font-size:74.666667pt;}
.fsa_c01186{font-size:74.669056pt;}
.fs5_c01186{font-size:74.669691pt;}
.fs8_c01186{font-size:74.670400pt;}
.fs14_c01186{font-size:74.675066pt;}
.fs13_c01186{font-size:74.676223pt;}
.fs12_c01186{font-size:80.010239pt;}
.fs4_c01186{font-size:90.670339pt;}
.fsc_c01186{font-size:96.015551pt;}
.fsd_c01186{font-size:101.341896pt;}
.y0_c01186{bottom:0.000000pt;}
.yb5_c01186{bottom:53.510473pt;}
.yb4_c01186{bottom:54.576380pt;}
.yb3_c01186{bottom:55.235753pt;}
.yb2_c01186{bottom:56.952820pt;}
.yb1_c01186{bottom:57.597153pt;}
.yb0_c01186{bottom:84.206073pt;}
.yaf_c01186{bottom:84.907607pt;}
.yae_c01186{bottom:86.328940pt;}
.yad_c01186{bottom:86.673713pt;}
.yac_c01186{bottom:87.383780pt;}
.yab_c01186{bottom:87.885320pt;}
.yaa_c01186{bottom:88.800720pt;}
.ya9_c01186{bottom:117.773987pt;}
.ya8_c01186{bottom:118.785907pt;}
.ya7_c01186{bottom:119.386387pt;}
.ya6_c01186{bottom:120.002667pt;}
.ya5_c01186{bottom:148.543040pt;}
.ya4_c01186{bottom:149.004096pt;}
.ya3_c01186{bottom:149.460267pt;}
.ya2_c01186{bottom:150.248405pt;}
.ya1_c01186{bottom:150.716821pt;}
.ya0_c01186{bottom:151.922667pt;}
.y9f_c01186{bottom:180.528981pt;}
.y9e_c01186{bottom:181.611477pt;}
.y9d_c01186{bottom:182.076245pt;}
.y9c_c01186{bottom:183.362667pt;}
.y9b_c01186{bottom:212.078395pt;}
.y9a_c01186{bottom:213.178253pt;}
.y99_c01186{bottom:213.585056pt;}
.y98_c01186{bottom:214.118587pt;}
.y97_c01186{bottom:214.562667pt;}
.y96_c01186{bottom:244.086667pt;}
.y95_c01186{bottom:275.747957pt;}
.y94_c01186{bottom:276.124923pt;}
.y93_c01186{bottom:276.780677pt;}
.y92_c01186{bottom:277.164039pt;}
.y91_c01186{bottom:277.922667pt;}
.y90_c01186{bottom:306.832000pt;}
.y8f_c01186{bottom:335.203349pt;}
.y8e_c01186{bottom:337.925584pt;}
.y8d_c01186{bottom:338.418215pt;}
.y8c_c01186{bottom:339.195511pt;}
.y8b_c01186{bottom:339.841333pt;}
.y8a_c01186{bottom:365.504637pt;}
.y89_c01186{bottom:366.306371pt;}
.y88_c01186{bottom:366.876568pt;}
.y87_c01186{bottom:368.501432pt;}
.y86_c01186{bottom:368.707483pt;}
.y85_c01186{bottom:368.914771pt;}
.y84_c01186{bottom:369.262176pt;}
.y83_c01186{bottom:369.594821pt;}
.y82_c01186{bottom:394.431496pt;}
.y81_c01186{bottom:395.148736pt;}
.y80_c01186{bottom:396.911704pt;}
.y7f_c01186{bottom:398.350720pt;}
.y7e_c01186{bottom:398.691016pt;}
.y7d_c01186{bottom:399.935896pt;}
.y7c_c01186{bottom:400.458688pt;}
.y7b_c01186{bottom:401.862760pt;}
.y7a_c01186{bottom:402.761560pt;}
.y79_c01186{bottom:403.444000pt;}
.y78_c01186{bottom:429.365920pt;}
.y77_c01186{bottom:429.596160pt;}
.y76_c01186{bottom:430.076469pt;}
.y75_c01186{bottom:430.471979pt;}
.y74_c01186{bottom:430.712064pt;}
.y73_c01186{bottom:431.732139pt;}
.y72_c01186{bottom:432.040757pt;}
.y71_c01186{bottom:432.269429pt;}
.y70_c01186{bottom:432.749355pt;}
.y6f_c01186{bottom:432.987211pt;}
.y6e_c01186{bottom:433.601749pt;}
.y6d_c01186{bottom:433.920363pt;}
.y6c_c01186{bottom:461.997280pt;}
.y6b_c01186{bottom:462.233429pt;}
.y6a_c01186{bottom:462.790347pt;}
.y69_c01186{bottom:463.026571pt;}
.y68_c01186{bottom:463.808341pt;}
.y67_c01186{bottom:464.116949pt;}
.y66_c01186{bottom:464.894752pt;}
.y65_c01186{bottom:465.601333pt;}
.y64_c01186{bottom:528.428573pt;}
.y62_c01186{bottom:528.428813pt;}
.y61_c01186{bottom:528.429053pt;}
.y63_c01186{bottom:528.429093pt;}
.y60_c01186{bottom:554.186773pt;}
.y5f_c01186{bottom:555.057573pt;}
.y5e_c01186{bottom:555.491280pt;}
.y5d_c01186{bottom:556.135373pt;}
.y5c_c01186{bottom:557.106707pt;}
.y5b_c01186{bottom:557.753467pt;}
.y5a_c01186{bottom:558.080013pt;}
.y59_c01186{bottom:558.930520pt;}
.y58_c01186{bottom:559.917373pt;}
.y57_c01186{bottom:585.683560pt;}
.y56_c01186{bottom:586.559640pt;}
.y55_c01186{bottom:587.031467pt;}
.y54_c01186{bottom:587.262147pt;}
.y53_c01186{bottom:588.518400pt;}
.y52_c01186{bottom:588.754947pt;}
.y51_c01186{bottom:588.992387pt;}
.y50_c01186{bottom:589.688053pt;}
.y4f_c01186{bottom:590.398747pt;}
.y4e_c01186{bottom:617.985880pt;}
.y4d_c01186{bottom:618.379227pt;}
.y4c_c01186{bottom:619.077947pt;}
.y4b_c01186{bottom:619.850920pt;}
.y4a_c01186{bottom:620.150613pt;}
.y49_c01186{bottom:620.541813pt;}
.y48_c01186{bottom:620.846627pt;}
.y47_c01186{bottom:621.828613pt;}
.y46_c01186{bottom:622.801333pt;}
.y45_c01186{bottom:684.353817pt;}
.y44_c01186{bottom:711.608964pt;}
.y43_c01186{bottom:711.843163pt;}
.y42_c01186{bottom:712.469424pt;}
.y41_c01186{bottom:712.869573pt;}
.y40_c01186{bottom:713.417149pt;}
.y3f_c01186{bottom:713.810604pt;}
.y3e_c01186{bottom:713.965348pt;}
.y3d_c01186{bottom:714.977229pt;}
.y3c_c01186{bottom:715.297781pt;}
.y3b_c01186{bottom:715.850576pt;}
.y3a_c01186{bottom:716.159729pt;}
.y39_c01186{bottom:744.616007pt;}
.y38_c01186{bottom:744.966316pt;}
.y37_c01186{bottom:745.143840pt;}
.y36_c01186{bottom:745.611341pt;}
.y35_c01186{bottom:746.202263pt;}
.y34_c01186{bottom:746.383768pt;}
.y33_c01186{bottom:746.854088pt;}
.y32_c01186{bottom:747.268240pt;}
.y31_c01186{bottom:747.437703pt;}
.y30_c01186{bottom:747.839021pt;}
.y2f_c01186{bottom:775.594897pt;}
.y2e_c01186{bottom:776.199613pt;}
.y2d_c01186{bottom:776.562577pt;}
.y2c_c01186{bottom:776.832601pt;}
.y2b_c01186{bottom:777.722485pt;}
.y2a_c01186{bottom:777.960133pt;}
.y29_c01186{bottom:778.242853pt;}
.y28_c01186{bottom:779.396533pt;}
.y27_c01186{bottom:780.001333pt;}
.y25_c01186{bottom:840.217885pt;}
.y26_c01186{bottom:840.218004pt;}
.y24_c01186{bottom:840.218475pt;}
.y22_c01186{bottom:840.218895pt;}
.y23_c01186{bottom:840.218904pt;}
.y21_c01186{bottom:840.219244pt;}
.y20_c01186{bottom:840.219259pt;}
.y1f_c01186{bottom:840.219581pt;}
.y1e_c01186{bottom:868.833353pt;}
.y1d_c01186{bottom:868.982527pt;}
.y1c_c01186{bottom:869.373389pt;}
.y1b_c01186{bottom:869.625668pt;}
.y1a_c01186{bottom:869.771244pt;}
.y19_c01186{bottom:870.062599pt;}
.y18_c01186{bottom:870.164901pt;}
.y17_c01186{bottom:870.757227pt;}
.y16_c01186{bottom:871.242693pt;}
.y15_c01186{bottom:871.678737pt;}
.y14_c01186{bottom:900.514513pt;}
.y13_c01186{bottom:901.140961pt;}
.y12_c01186{bottom:901.663717pt;}
.y11_c01186{bottom:902.028805pt;}
.y10_c01186{bottom:902.639965pt;}
.yf_c01186{bottom:903.361609pt;}
.ye_c01186{bottom:904.321333pt;}
.yd_c01186{bottom:981.258037pt;}
.yc_c01186{bottom:981.464853pt;}
.yb_c01186{bottom:982.009643pt;}
.ya_c01186{bottom:982.362155pt;}
.y9_c01186{bottom:983.040533pt;}
.y8_c01186{bottom:1012.751307pt;}
.y7_c01186{bottom:1013.229248pt;}
.y6_c01186{bottom:1013.686347pt;}
.y5_c01186{bottom:1013.847840pt;}
.y4_c01186{bottom:1014.333472pt;}
.y3_c01186{bottom:1014.479147pt;}
.y2_c01186{bottom:1015.201333pt;}
.y1_c01186{bottom:1066.792000pt;}
.h2_c01186{height:58.666667pt;}
.h4_c01186{height:64.002048pt;}
.h8_c01186{height:64.002592pt;}
.h9_c01186{height:64.003200pt;}
.h17_c01186{height:64.007200pt;}
.h10_c01186{height:69.333333pt;}
.h3_c01186{height:69.335552pt;}
.h5_c01186{height:69.336141pt;}
.hb_c01186{height:69.336800pt;}
.h11_c01186{height:69.339192pt;}
.h13_c01186{height:69.340128pt;}
.h18_c01186{height:69.341133pt;}
.hd_c01186{height:69.344564pt;}
.h12_c01186{height:74.666667pt;}
.hc_c01186{height:74.669056pt;}
.h7_c01186{height:74.669691pt;}
.ha_c01186{height:74.670400pt;}
.h16_c01186{height:74.675066pt;}
.h15_c01186{height:74.676223pt;}
.h14_c01186{height:80.010239pt;}
.h6_c01186{height:90.670339pt;}
.he_c01186{height:96.015551pt;}
.hf_c01186{height:101.341896pt;}
.h1_c01186{height:1118.666667pt;}
.h0_c01186{height:1118.880000pt;}
.w0_c01186{width:803.733333pt;}
.w1_c01186{width:804.000000pt;}
.x0_c01186{left:0.000000pt;}
.x3a_c01186{left:142.411960pt;}
.x2c_c01186{left:143.901484pt;}
.x12_c01186{left:144.887653pt;}
.x2d_c01186{left:182.548499pt;}
.x45_c01186{left:183.492256pt;}
.x3f_c01186{left:191.758040pt;}
.x28_c01186{left:212.561857pt;}
.x1b_c01186{left:222.478825pt;}
.x5e_c01186{left:228.289333pt;}
.x13_c01186{left:232.006785pt;}
.x5c_c01186{left:234.768000pt;}
.x3_c01186{left:240.616000pt;}
.x30_c01186{left:241.721333pt;}
.xa_c01186{left:242.792203pt;}
.x59_c01186{left:249.425333pt;}
.x1c_c01186{left:251.519844pt;}
.x46_c01186{left:260.309589pt;}
.x5f_c01186{left:269.374667pt;}
.x40_c01186{left:270.723267pt;}
.x4b_c01186{left:279.617333pt;}
.x5a_c01186{left:281.145333pt;}
.x47_c01186{left:290.041589pt;}
.x2e_c01186{left:291.736149pt;}
.x53_c01186{left:299.903421pt;}
.x57_c01186{left:309.120000pt;}
.x1d_c01186{left:310.081917pt;}
.x35_c01186{left:319.352373pt;}
.x14_c01186{left:329.210289pt;}
.x4_c01186{left:330.889333pt;}
.xb_c01186{left:339.756981pt;}
.x1_c01186{left:346.080000pt;}
.x63_c01186{left:347.983640pt;}
.x5_c01186{left:349.098667pt;}
.x48_c01186{left:350.032256pt;}
.x61_c01186{left:357.926673pt;}
.x58_c01186{left:359.280000pt;}
.x60_c01186{left:376.868000pt;}
.x36_c01186{left:378.618893pt;}
.x2_c01186{left:383.040000pt;}
.x56_c01186{left:387.212000pt;}
.x29_c01186{left:388.485288pt;}
.xc_c01186{left:390.154720pt;}
.x3b_c01186{left:398.009413pt;}
.x1e_c01186{left:399.125129pt;}
.x4c_c01186{left:407.554667pt;}
.x6_c01186{left:409.802667pt;}
.x49_c01186{left:417.193589pt;}
.x2a_c01186{left:418.727437pt;}
.x5b_c01186{left:426.873333pt;}
.x41_c01186{left:427.852000pt;}
.x7_c01186{left:429.989333pt;}
.x4d_c01186{left:436.598667pt;}
.x22_c01186{left:437.914667pt;}
.x5d_c01186{left:445.994667pt;}
.x15_c01186{left:447.769228pt;}
.x1f_c01186{left:448.806483pt;}
.x62_c01186{left:456.018253pt;}
.x42_c01186{left:466.428000pt;}
.xd_c01186{left:467.920672pt;}
.x23_c01186{left:469.328000pt;}
.x8_c01186{left:487.126667pt;}
.x24_c01186{left:495.733333pt;}
.xe_c01186{left:497.439573pt;}
.x4e_c01186{left:505.758667pt;}
.x31_c01186{left:506.793333pt;}
.x20_c01186{left:516.729312pt;}
.x4f_c01186{left:524.664000pt;}
.x16_c01186{left:526.474727pt;}
.x54_c01186{left:531.997357pt;}
.x37_c01186{left:535.580693pt;}
.x32_c01186{left:536.762667pt;}
.xf_c01186{left:537.969333pt;}
.x3c_c01186{left:544.883947pt;}
.x9_c01186{left:546.869333pt;}
.x17_c01186{left:555.539771pt;}
.x21_c01186{left:556.571207pt;}
.x38_c01186{left:564.382600pt;}
.x4a_c01186{left:574.713589pt;}
.x3d_c01186{left:584.254213pt;}
.x43_c01186{left:593.677333pt;}
.x25_c01186{left:594.609333pt;}
.x10_c01186{left:596.053333pt;}
.x50_c01186{left:604.609333pt;}
.x18_c01186{left:605.942916pt;}
.x33_c01186{left:614.060000pt;}
.x39_c01186{left:623.433120pt;}
.x26_c01186{left:624.612000pt;}
.x3e_c01186{left:663.466760pt;}
.x11_c01186{left:665.658667pt;}
.x2b_c01186{left:682.985232pt;}
.x19_c01186{left:684.189736pt;}
.x44_c01186{left:692.810667pt;}
.x51_c01186{left:702.552000pt;}
.x2f_c01186{left:712.954620pt;}
.x1a_c01186{left:713.950804pt;}
.x34_c01186{left:723.266667pt;}
.x55_c01186{left:727.884117pt;}
.x27_c01186{left:732.132000pt;}
.x52_c01186{left:742.398667pt;}
}





/* 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_c01187 {
    display:none;
  }
  .loading-indicator_c01187.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01187 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_c01187 { 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_c01187" -> "#page-container .classname_c01187")
 */
.pf_c01187 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01187 { /* 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_c01187.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01187 { /* 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_c01187 { /* 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_c01187 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01187 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01187 {overflow:visible;}
  }
}
.c_c01187 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01187 { /* 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_c01187:after { /* webkit #35443 */
  content: '';
}
.t_c01187:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01187 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 */
}
.__c01187 { /* 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_c01187 { /* info for Javascript */
  display:none;
}
.l_c01187 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01187 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01187 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01187: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_c01187 {
    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_c01187.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01187.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_c01187 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01187{font-family:sans-serif;visibility:hidden;}
.sc__c01187{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01187{-webkit-text-stroke:0px transparent;}
}
.y0_c01187{bottom:0.000000px;}
.h1_c01187{height:1258.500000px;}
.h0_c01187{height:1258.740000px;}
.w0_c01187{width:904.200000px;}
.w1_c01187{width:904.500000px;}
.x0_c01187{left:0.000000px;}
@media print{
.y0_c01187{bottom:0.000000pt;}
.h1_c01187{height:1118.666667pt;}
.h0_c01187{height:1118.880000pt;}
.w0_c01187{width:803.733333pt;}
.w1_c01187{width:804.000000pt;}
.x0_c01187{left:0.000000pt;}
}





/* 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_c01188 {
    display:none;
  }
  .loading-indicator_c01188.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01188 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_c01188 { 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_c01188" -> "#page-container .classname_c01188")
 */
.pf_c01188 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01188 { /* 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_c01188.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01188 { /* 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_c01188 { /* 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_c01188 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01188 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01188 {overflow:visible;}
  }
}
.c_c01188 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01188 { /* 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_c01188:after { /* webkit #35443 */
  content: '';
}
.t_c01188:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01188 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 */
}
.__c01188 { /* 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_c01188 { /* info for Javascript */
  display:none;
}
.l_c01188 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01188 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01188 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01188: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_c01188 {
    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_c01188.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01188.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_c01188 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01188{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01188;src:url('chunks/assets/font_7c6b9abe6ee2a268480c528b.woff2')format("woff");}.ff1_c01188{font-family:ff1_c01188;line-height:1.000000;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;}
.m7c_c01188{transform:matrix(0.011859,-0.000178,0.003750,0.249972,0,0);-ms-transform:matrix(0.011859,-0.000178,0.003750,0.249972,0,0);-webkit-transform:matrix(0.011859,-0.000178,0.003750,0.249972,0,0);}
.m42_c01188{transform:matrix(0.022163,-0.000332,0.003750,0.249972,0,0);-ms-transform:matrix(0.022163,-0.000332,0.003750,0.249972,0,0);-webkit-transform:matrix(0.022163,-0.000332,0.003750,0.249972,0,0);}
.mcf_c01188{transform:matrix(0.067080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.067080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.067080,0.000000,0.000000,0.250000,0,0);}
.mce_c01188{transform:matrix(0.076485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076485,0.000000,0.000000,0.250000,0,0);}
.m53_c01188{transform:matrix(0.143099,-0.002146,0.003750,0.249972,0,0);-ms-transform:matrix(0.143099,-0.002146,0.003750,0.249972,0,0);-webkit-transform:matrix(0.143099,-0.002146,0.003750,0.249972,0,0);}
.m7e_c01188{transform:matrix(0.147578,-0.002214,0.003750,0.249972,0,0);-ms-transform:matrix(0.147578,-0.002214,0.003750,0.249972,0,0);-webkit-transform:matrix(0.147578,-0.002214,0.003750,0.249972,0,0);}
.m0_c01188{transform:matrix(0.149310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149310,0.000000,0.000000,0.250000,0,0);}
.m80_c01188{transform:matrix(0.155228,-0.002328,0.003750,0.249972,0,0);-ms-transform:matrix(0.155228,-0.002328,0.003750,0.249972,0,0);-webkit-transform:matrix(0.155228,-0.002328,0.003750,0.249972,0,0);}
.m69_c01188{transform:matrix(0.156712,-0.002351,0.003750,0.249972,0,0);-ms-transform:matrix(0.156712,-0.002351,0.003750,0.249972,0,0);-webkit-transform:matrix(0.156712,-0.002351,0.003750,0.249972,0,0);}
.m85_c01188{transform:matrix(0.157877,-0.002368,0.003750,0.249972,0,0);-ms-transform:matrix(0.157877,-0.002368,0.003750,0.249972,0,0);-webkit-transform:matrix(0.157877,-0.002368,0.003750,0.249972,0,0);}
.m86_c01188{transform:matrix(0.160372,-0.002406,0.003750,0.249972,0,0);-ms-transform:matrix(0.160372,-0.002406,0.003750,0.249972,0,0);-webkit-transform:matrix(0.160372,-0.002406,0.003750,0.249972,0,0);}
.m81_c01188{transform:matrix(0.161052,-0.002416,0.003750,0.249972,0,0);-ms-transform:matrix(0.161052,-0.002416,0.003750,0.249972,0,0);-webkit-transform:matrix(0.161052,-0.002416,0.003750,0.249972,0,0);}
.ma6_c01188{transform:matrix(0.161803,-0.003236,0.004999,0.249950,0,0);-ms-transform:matrix(0.161803,-0.003236,0.004999,0.249950,0,0);-webkit-transform:matrix(0.161803,-0.003236,0.004999,0.249950,0,0);}
.m7d_c01188{transform:matrix(0.162237,-0.002434,0.003750,0.249972,0,0);-ms-transform:matrix(0.162237,-0.002434,0.003750,0.249972,0,0);-webkit-transform:matrix(0.162237,-0.002434,0.003750,0.249972,0,0);}
.mcd_c01188{transform:matrix(0.162250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162250,0.000000,0.000000,0.250000,0,0);}
.ma2_c01188{transform:matrix(0.163477,-0.003270,0.004999,0.249950,0,0);-ms-transform:matrix(0.163477,-0.003270,0.004999,0.249950,0,0);-webkit-transform:matrix(0.163477,-0.003270,0.004999,0.249950,0,0);}
.m84_c01188{transform:matrix(0.166786,-0.002502,0.003750,0.249972,0,0);-ms-transform:matrix(0.166786,-0.002502,0.003750,0.249972,0,0);-webkit-transform:matrix(0.166786,-0.002502,0.003750,0.249972,0,0);}
.ma5_c01188{transform:matrix(0.166867,-0.003337,0.004999,0.249950,0,0);-ms-transform:matrix(0.166867,-0.003337,0.004999,0.249950,0,0);-webkit-transform:matrix(0.166867,-0.003337,0.004999,0.249950,0,0);}
.m83_c01188{transform:matrix(0.167161,-0.002507,0.003750,0.249972,0,0);-ms-transform:matrix(0.167161,-0.002507,0.003750,0.249972,0,0);-webkit-transform:matrix(0.167161,-0.002507,0.003750,0.249972,0,0);}
.m82_c01188{transform:matrix(0.170041,-0.002551,0.003750,0.249972,0,0);-ms-transform:matrix(0.170041,-0.002551,0.003750,0.249972,0,0);-webkit-transform:matrix(0.170041,-0.002551,0.003750,0.249972,0,0);}
.m87_c01188{transform:matrix(0.172041,-0.002581,0.003750,0.249972,0,0);-ms-transform:matrix(0.172041,-0.002581,0.003750,0.249972,0,0);-webkit-transform:matrix(0.172041,-0.002581,0.003750,0.249972,0,0);}
.m7f_c01188{transform:matrix(0.177455,-0.002662,0.003750,0.249972,0,0);-ms-transform:matrix(0.177455,-0.002662,0.003750,0.249972,0,0);-webkit-transform:matrix(0.177455,-0.002662,0.003750,0.249972,0,0);}
.ma8_c01188{transform:matrix(0.180774,-0.003615,0.004999,0.249950,0,0);-ms-transform:matrix(0.180774,-0.003615,0.004999,0.249950,0,0);-webkit-transform:matrix(0.180774,-0.003615,0.004999,0.249950,0,0);}
.m19_c01188{transform:matrix(0.185720,-0.004086,0.005499,0.249940,0,0);-ms-transform:matrix(0.185720,-0.004086,0.005499,0.249940,0,0);-webkit-transform:matrix(0.185720,-0.004086,0.005499,0.249940,0,0);}
.m11_c01188{transform:matrix(0.189393,-0.003977,0.005249,0.249945,0,0);-ms-transform:matrix(0.189393,-0.003977,0.005249,0.249945,0,0);-webkit-transform:matrix(0.189393,-0.003977,0.005249,0.249945,0,0);}
.m6_c01188{transform:matrix(0.189618,-0.003982,0.005249,0.249945,0,0);-ms-transform:matrix(0.189618,-0.003982,0.005249,0.249945,0,0);-webkit-transform:matrix(0.189618,-0.003982,0.005249,0.249945,0,0);}
.m3_c01188{transform:matrix(0.192468,-0.004042,0.005249,0.249945,0,0);-ms-transform:matrix(0.192468,-0.004042,0.005249,0.249945,0,0);-webkit-transform:matrix(0.192468,-0.004042,0.005249,0.249945,0,0);}
.ma4_c01188{transform:matrix(0.192966,-0.003859,0.004999,0.249950,0,0);-ms-transform:matrix(0.192966,-0.003859,0.004999,0.249950,0,0);-webkit-transform:matrix(0.192966,-0.003859,0.004999,0.249950,0,0);}
.m4_c01188{transform:matrix(0.193977,-0.004074,0.005249,0.249945,0,0);-ms-transform:matrix(0.193977,-0.004074,0.005249,0.249945,0,0);-webkit-transform:matrix(0.193977,-0.004074,0.005249,0.249945,0,0);}
.me_c01188{transform:matrix(0.195772,-0.004111,0.005249,0.249945,0,0);-ms-transform:matrix(0.195772,-0.004111,0.005249,0.249945,0,0);-webkit-transform:matrix(0.195772,-0.004111,0.005249,0.249945,0,0);}
.mba_c01188{transform:matrix(0.197874,-0.003760,0.004749,0.249955,0,0);-ms-transform:matrix(0.197874,-0.003760,0.004749,0.249955,0,0);-webkit-transform:matrix(0.197874,-0.003760,0.004749,0.249955,0,0);}
.ma3_c01188{transform:matrix(0.198325,-0.003967,0.004999,0.249950,0,0);-ms-transform:matrix(0.198325,-0.003967,0.004999,0.249950,0,0);-webkit-transform:matrix(0.198325,-0.003967,0.004999,0.249950,0,0);}
.m27_c01188{transform:matrix(0.198375,-0.003174,0.003999,0.249968,0,0);-ms-transform:matrix(0.198375,-0.003174,0.003999,0.249968,0,0);-webkit-transform:matrix(0.198375,-0.003174,0.003999,0.249968,0,0);}
.m3d_c01188{transform:matrix(0.200017,-0.003000,0.003750,0.249972,0,0);-ms-transform:matrix(0.200017,-0.003000,0.003750,0.249972,0,0);-webkit-transform:matrix(0.200017,-0.003000,0.003750,0.249972,0,0);}
.m14_c01188{transform:matrix(0.202115,-0.004042,0.004999,0.249950,0,0);-ms-transform:matrix(0.202115,-0.004042,0.004999,0.249950,0,0);-webkit-transform:matrix(0.202115,-0.004042,0.004999,0.249950,0,0);}
.mb6_c01188{transform:matrix(0.202628,-0.003850,0.004749,0.249955,0,0);-ms-transform:matrix(0.202628,-0.003850,0.004749,0.249955,0,0);-webkit-transform:matrix(0.202628,-0.003850,0.004749,0.249955,0,0);}
.ma7_c01188{transform:matrix(0.203499,-0.004070,0.004999,0.249950,0,0);-ms-transform:matrix(0.203499,-0.004070,0.004999,0.249950,0,0);-webkit-transform:matrix(0.203499,-0.004070,0.004999,0.249950,0,0);}
.mc2_c01188{transform:matrix(0.203508,-0.003867,0.004749,0.249955,0,0);-ms-transform:matrix(0.203508,-0.003867,0.004749,0.249955,0,0);-webkit-transform:matrix(0.203508,-0.003867,0.004749,0.249955,0,0);}
.mb9_c01188{transform:matrix(0.205253,-0.003900,0.004749,0.249955,0,0);-ms-transform:matrix(0.205253,-0.003900,0.004749,0.249955,0,0);-webkit-transform:matrix(0.205253,-0.003900,0.004749,0.249955,0,0);}
.m1a_c01188{transform:matrix(0.206475,-0.004542,0.005499,0.249940,0,0);-ms-transform:matrix(0.206475,-0.004542,0.005499,0.249940,0,0);-webkit-transform:matrix(0.206475,-0.004542,0.005499,0.249940,0,0);}
.mbd_c01188{transform:matrix(0.206773,-0.003929,0.004749,0.249955,0,0);-ms-transform:matrix(0.206773,-0.003929,0.004749,0.249955,0,0);-webkit-transform:matrix(0.206773,-0.003929,0.004749,0.249955,0,0);}
.m4a_c01188{transform:matrix(0.208042,-0.003121,0.003750,0.249972,0,0);-ms-transform:matrix(0.208042,-0.003121,0.003750,0.249972,0,0);-webkit-transform:matrix(0.208042,-0.003121,0.003750,0.249972,0,0);}
.mbc_c01188{transform:matrix(0.208712,-0.003966,0.004749,0.249955,0,0);-ms-transform:matrix(0.208712,-0.003966,0.004749,0.249955,0,0);-webkit-transform:matrix(0.208712,-0.003966,0.004749,0.249955,0,0);}
.mc0_c01188{transform:matrix(0.208877,-0.003969,0.004749,0.249955,0,0);-ms-transform:matrix(0.208877,-0.003969,0.004749,0.249955,0,0);-webkit-transform:matrix(0.208877,-0.003969,0.004749,0.249955,0,0);}
.m5_c01188{transform:matrix(0.209309,-0.004395,0.005249,0.249945,0,0);-ms-transform:matrix(0.209309,-0.004395,0.005249,0.249945,0,0);-webkit-transform:matrix(0.209309,-0.004395,0.005249,0.249945,0,0);}
.mf_c01188{transform:matrix(0.209624,-0.004402,0.005249,0.249945,0,0);-ms-transform:matrix(0.209624,-0.004402,0.005249,0.249945,0,0);-webkit-transform:matrix(0.209624,-0.004402,0.005249,0.249945,0,0);}
.m17_c01188{transform:matrix(0.211698,-0.004234,0.004999,0.249950,0,0);-ms-transform:matrix(0.211698,-0.004234,0.004999,0.249950,0,0);-webkit-transform:matrix(0.211698,-0.004234,0.004999,0.249950,0,0);}
.mab_c01188{transform:matrix(0.212357,0.001062,-0.001250,0.249997,0,0);-ms-transform:matrix(0.212357,0.001062,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.212357,0.001062,-0.001250,0.249997,0,0);}
.m45_c01188{transform:matrix(0.212746,-0.003191,0.003750,0.249972,0,0);-ms-transform:matrix(0.212746,-0.003191,0.003750,0.249972,0,0);-webkit-transform:matrix(0.212746,-0.003191,0.003750,0.249972,0,0);}
.m65_c01188{transform:matrix(0.213611,-0.003204,0.003750,0.249972,0,0);-ms-transform:matrix(0.213611,-0.003204,0.003750,0.249972,0,0);-webkit-transform:matrix(0.213611,-0.003204,0.003750,0.249972,0,0);}
.m1b_c01188{transform:matrix(0.213683,-0.004701,0.005499,0.249940,0,0);-ms-transform:matrix(0.213683,-0.004701,0.005499,0.249940,0,0);-webkit-transform:matrix(0.213683,-0.004701,0.005499,0.249940,0,0);}
.m2c_c01188{transform:matrix(0.213689,-0.003633,0.004249,0.249964,0,0);-ms-transform:matrix(0.213689,-0.003633,0.004249,0.249964,0,0);-webkit-transform:matrix(0.213689,-0.003633,0.004249,0.249964,0,0);}
.m16_c01188{transform:matrix(0.213817,-0.004276,0.004999,0.249950,0,0);-ms-transform:matrix(0.213817,-0.004276,0.004999,0.249950,0,0);-webkit-transform:matrix(0.213817,-0.004276,0.004999,0.249950,0,0);}
.m10_c01188{transform:matrix(0.213928,-0.004492,0.005249,0.249945,0,0);-ms-transform:matrix(0.213928,-0.004492,0.005249,0.249945,0,0);-webkit-transform:matrix(0.213928,-0.004492,0.005249,0.249945,0,0);}
.mad_c01188{transform:matrix(0.213992,0.001070,-0.001250,0.249997,0,0);-ms-transform:matrix(0.213992,0.001070,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.213992,0.001070,-0.001250,0.249997,0,0);}
.mb7_c01188{transform:matrix(0.216806,-0.004119,0.004749,0.249955,0,0);-ms-transform:matrix(0.216806,-0.004119,0.004749,0.249955,0,0);-webkit-transform:matrix(0.216806,-0.004119,0.004749,0.249955,0,0);}
.m13_c01188{transform:matrix(0.216842,-0.004337,0.004999,0.249950,0,0);-ms-transform:matrix(0.216842,-0.004337,0.004999,0.249950,0,0);-webkit-transform:matrix(0.216842,-0.004337,0.004999,0.249950,0,0);}
.m71_c01188{transform:matrix(0.217361,-0.003260,0.003750,0.249972,0,0);-ms-transform:matrix(0.217361,-0.003260,0.003750,0.249972,0,0);-webkit-transform:matrix(0.217361,-0.003260,0.003750,0.249972,0,0);}
.mc9_c01188{transform:matrix(0.218216,-0.004146,0.004749,0.249955,0,0);-ms-transform:matrix(0.218216,-0.004146,0.004749,0.249955,0,0);-webkit-transform:matrix(0.218216,-0.004146,0.004749,0.249955,0,0);}
.m25_c01188{transform:matrix(0.218337,-0.003493,0.003999,0.249968,0,0);-ms-transform:matrix(0.218337,-0.003493,0.003999,0.249968,0,0);-webkit-transform:matrix(0.218337,-0.003493,0.003999,0.249968,0,0);}
.m8_c01188{transform:matrix(0.218877,-0.004596,0.005249,0.249945,0,0);-ms-transform:matrix(0.218877,-0.004596,0.005249,0.249945,0,0);-webkit-transform:matrix(0.218877,-0.004596,0.005249,0.249945,0,0);}
.m43_c01188{transform:matrix(0.219075,-0.003286,0.003750,0.249972,0,0);-ms-transform:matrix(0.219075,-0.003286,0.003750,0.249972,0,0);-webkit-transform:matrix(0.219075,-0.003286,0.003750,0.249972,0,0);}
.mb2_c01188{transform:matrix(0.219302,0.001097,-0.001250,0.249997,0,0);-ms-transform:matrix(0.219302,0.001097,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.219302,0.001097,-0.001250,0.249997,0,0);}
.m8b_c01188{transform:matrix(0.219516,-0.002854,0.003250,0.249979,0,0);-ms-transform:matrix(0.219516,-0.002854,0.003250,0.249979,0,0);-webkit-transform:matrix(0.219516,-0.002854,0.003250,0.249979,0,0);}
.m48_c01188{transform:matrix(0.219690,-0.003295,0.003750,0.249972,0,0);-ms-transform:matrix(0.219690,-0.003295,0.003750,0.249972,0,0);-webkit-transform:matrix(0.219690,-0.003295,0.003750,0.249972,0,0);}
.m3a_c01188{transform:matrix(0.219800,-0.003297,0.003750,0.249972,0,0);-ms-transform:matrix(0.219800,-0.003297,0.003750,0.249972,0,0);-webkit-transform:matrix(0.219800,-0.003297,0.003750,0.249972,0,0);}
.mb8_c01188{transform:matrix(0.219850,-0.004177,0.004749,0.249955,0,0);-ms-transform:matrix(0.219850,-0.004177,0.004749,0.249955,0,0);-webkit-transform:matrix(0.219850,-0.004177,0.004749,0.249955,0,0);}
.m23_c01188{transform:matrix(0.220056,-0.004621,0.005249,0.249945,0,0);-ms-transform:matrix(0.220056,-0.004621,0.005249,0.249945,0,0);-webkit-transform:matrix(0.220056,-0.004621,0.005249,0.249945,0,0);}
.m7_c01188{transform:matrix(0.220566,-0.004632,0.005249,0.249945,0,0);-ms-transform:matrix(0.220566,-0.004632,0.005249,0.249945,0,0);-webkit-transform:matrix(0.220566,-0.004632,0.005249,0.249945,0,0);}
.m7b_c01188{transform:matrix(0.220785,-0.003312,0.003750,0.249972,0,0);-ms-transform:matrix(0.220785,-0.003312,0.003750,0.249972,0,0);-webkit-transform:matrix(0.220785,-0.003312,0.003750,0.249972,0,0);}
.m4e_c01188{transform:matrix(0.221430,-0.003321,0.003750,0.249972,0,0);-ms-transform:matrix(0.221430,-0.003321,0.003750,0.249972,0,0);-webkit-transform:matrix(0.221430,-0.003321,0.003750,0.249972,0,0);}
.ma1_c01188{transform:matrix(0.222041,-0.004441,0.004999,0.249950,0,0);-ms-transform:matrix(0.222041,-0.004441,0.004999,0.249950,0,0);-webkit-transform:matrix(0.222041,-0.004441,0.004999,0.249950,0,0);}
.m5b_c01188{transform:matrix(0.222215,-0.003333,0.003750,0.249972,0,0);-ms-transform:matrix(0.222215,-0.003333,0.003750,0.249972,0,0);-webkit-transform:matrix(0.222215,-0.003333,0.003750,0.249972,0,0);}
.m15_c01188{transform:matrix(0.222401,-0.004448,0.004999,0.249950,0,0);-ms-transform:matrix(0.222401,-0.004448,0.004999,0.249950,0,0);-webkit-transform:matrix(0.222401,-0.004448,0.004999,0.249950,0,0);}
.m4c_c01188{transform:matrix(0.222415,-0.003336,0.003750,0.249972,0,0);-ms-transform:matrix(0.222415,-0.003336,0.003750,0.249972,0,0);-webkit-transform:matrix(0.222415,-0.003336,0.003750,0.249972,0,0);}
.m12_c01188{transform:matrix(0.223271,-0.004689,0.005249,0.249945,0,0);-ms-transform:matrix(0.223271,-0.004689,0.005249,0.249945,0,0);-webkit-transform:matrix(0.223271,-0.004689,0.005249,0.249945,0,0);}
.mb5_c01188{transform:matrix(0.223617,0.001118,-0.001250,0.249997,0,0);-ms-transform:matrix(0.223617,0.001118,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.223617,0.001118,-0.001250,0.249997,0,0);}
.mc5_c01188{transform:matrix(0.223995,-0.004256,0.004749,0.249955,0,0);-ms-transform:matrix(0.223995,-0.004256,0.004749,0.249955,0,0);-webkit-transform:matrix(0.223995,-0.004256,0.004749,0.249955,0,0);}
.m64_c01188{transform:matrix(0.224740,-0.003371,0.003750,0.249972,0,0);-ms-transform:matrix(0.224740,-0.003371,0.003750,0.249972,0,0);-webkit-transform:matrix(0.224740,-0.003371,0.003750,0.249972,0,0);}
.mc8_c01188{transform:matrix(0.224849,-0.004272,0.004749,0.249955,0,0);-ms-transform:matrix(0.224849,-0.004272,0.004749,0.249955,0,0);-webkit-transform:matrix(0.224849,-0.004272,0.004749,0.249955,0,0);}
.mc1_c01188{transform:matrix(0.225329,-0.004281,0.004749,0.249955,0,0);-ms-transform:matrix(0.225329,-0.004281,0.004749,0.249955,0,0);-webkit-transform:matrix(0.225329,-0.004281,0.004749,0.249955,0,0);}
.m18_c01188{transform:matrix(0.226245,-0.004525,0.004999,0.249950,0,0);-ms-transform:matrix(0.226245,-0.004525,0.004999,0.249950,0,0);-webkit-transform:matrix(0.226245,-0.004525,0.004999,0.249950,0,0);}
.mb1_c01188{transform:matrix(0.226652,0.001133,-0.001250,0.249997,0,0);-ms-transform:matrix(0.226652,0.001133,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.226652,0.001133,-0.001250,0.249997,0,0);}
.m8f_c01188{transform:matrix(0.227026,-0.002951,0.003250,0.249979,0,0);-ms-transform:matrix(0.227026,-0.002951,0.003250,0.249979,0,0);-webkit-transform:matrix(0.227026,-0.002951,0.003250,0.249979,0,0);}
.m2a_c01188{transform:matrix(0.227542,-0.003868,0.004249,0.249964,0,0);-ms-transform:matrix(0.227542,-0.003868,0.004249,0.249964,0,0);-webkit-transform:matrix(0.227542,-0.003868,0.004249,0.249964,0,0);}
.m2f_c01188{transform:matrix(0.228092,-0.003878,0.004249,0.249964,0,0);-ms-transform:matrix(0.228092,-0.003878,0.004249,0.249964,0,0);-webkit-transform:matrix(0.228092,-0.003878,0.004249,0.249964,0,0);}
.m6e_c01188{transform:matrix(0.228879,-0.003433,0.003750,0.249972,0,0);-ms-transform:matrix(0.228879,-0.003433,0.003750,0.249972,0,0);-webkit-transform:matrix(0.228879,-0.003433,0.003750,0.249972,0,0);}
.mc4_c01188{transform:matrix(0.228884,-0.004349,0.004749,0.249955,0,0);-ms-transform:matrix(0.228884,-0.004349,0.004749,0.249955,0,0);-webkit-transform:matrix(0.228884,-0.004349,0.004749,0.249955,0,0);}
.m67_c01188{transform:matrix(0.229324,-0.003440,0.003750,0.249972,0,0);-ms-transform:matrix(0.229324,-0.003440,0.003750,0.249972,0,0);-webkit-transform:matrix(0.229324,-0.003440,0.003750,0.249972,0,0);}
.m47_c01188{transform:matrix(0.230419,-0.003456,0.003750,0.249972,0,0);-ms-transform:matrix(0.230419,-0.003456,0.003750,0.249972,0,0);-webkit-transform:matrix(0.230419,-0.003456,0.003750,0.249972,0,0);}
.mbb_c01188{transform:matrix(0.230588,-0.004381,0.004749,0.249955,0,0);-ms-transform:matrix(0.230588,-0.004381,0.004749,0.249955,0,0);-webkit-transform:matrix(0.230588,-0.004381,0.004749,0.249955,0,0);}
.m5c_c01188{transform:matrix(0.231099,-0.003466,0.003750,0.249972,0,0);-ms-transform:matrix(0.231099,-0.003466,0.003750,0.249972,0,0);-webkit-transform:matrix(0.231099,-0.003466,0.003750,0.249972,0,0);}
.mb0_c01188{transform:matrix(0.232192,0.001161,-0.001250,0.249997,0,0);-ms-transform:matrix(0.232192,0.001161,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.232192,0.001161,-0.001250,0.249997,0,0);}
.m79_c01188{transform:matrix(0.232529,-0.003488,0.003750,0.249972,0,0);-ms-transform:matrix(0.232529,-0.003488,0.003750,0.249972,0,0);-webkit-transform:matrix(0.232529,-0.003488,0.003750,0.249972,0,0);}
.mc6_c01188{transform:matrix(0.233333,-0.004433,0.004749,0.249955,0,0);-ms-transform:matrix(0.233333,-0.004433,0.004749,0.249955,0,0);-webkit-transform:matrix(0.233333,-0.004433,0.004749,0.249955,0,0);}
.mc7_c01188{transform:matrix(0.233528,-0.004437,0.004749,0.249955,0,0);-ms-transform:matrix(0.233528,-0.004437,0.004749,0.249955,0,0);-webkit-transform:matrix(0.233528,-0.004437,0.004749,0.249955,0,0);}
.maf_c01188{transform:matrix(0.234187,0.001171,-0.001250,0.249997,0,0);-ms-transform:matrix(0.234187,0.001171,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.234187,0.001171,-0.001250,0.249997,0,0);}
.m93_c01188{transform:matrix(0.234278,-0.004686,0.004999,0.249950,0,0);-ms-transform:matrix(0.234278,-0.004686,0.004999,0.249950,0,0);-webkit-transform:matrix(0.234278,-0.004686,0.004999,0.249950,0,0);}
.m9_c01188{transform:matrix(0.234308,-0.004920,0.005249,0.249945,0,0);-ms-transform:matrix(0.234308,-0.004920,0.005249,0.249945,0,0);-webkit-transform:matrix(0.234308,-0.004920,0.005249,0.249945,0,0);}
.m49_c01188{transform:matrix(0.234314,-0.003515,0.003750,0.249972,0,0);-ms-transform:matrix(0.234314,-0.003515,0.003750,0.249972,0,0);-webkit-transform:matrix(0.234314,-0.003515,0.003750,0.249972,0,0);}
.mbe_c01188{transform:matrix(0.234443,-0.004454,0.004749,0.249955,0,0);-ms-transform:matrix(0.234443,-0.004454,0.004749,0.249955,0,0);-webkit-transform:matrix(0.234443,-0.004454,0.004749,0.249955,0,0);}
.m76_c01188{transform:matrix(0.236103,-0.003542,0.003750,0.249972,0,0);-ms-transform:matrix(0.236103,-0.003542,0.003750,0.249972,0,0);-webkit-transform:matrix(0.236103,-0.003542,0.003750,0.249972,0,0);}
.m50_c01188{transform:matrix(0.237293,-0.003559,0.003750,0.249972,0,0);-ms-transform:matrix(0.237293,-0.003559,0.003750,0.249972,0,0);-webkit-transform:matrix(0.237293,-0.003559,0.003750,0.249972,0,0);}
.m1e_c01188{transform:matrix(0.238461,-0.004292,0.004499,0.249960,0,0);-ms-transform:matrix(0.238461,-0.004292,0.004499,0.249960,0,0);-webkit-transform:matrix(0.238461,-0.004292,0.004499,0.249960,0,0);}
.mb3_c01188{transform:matrix(0.239037,0.001195,-0.001250,0.249997,0,0);-ms-transform:matrix(0.239037,0.001195,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.239037,0.001195,-0.001250,0.249997,0,0);}
.m5e_c01188{transform:matrix(0.239093,-0.003586,0.003750,0.249972,0,0);-ms-transform:matrix(0.239093,-0.003586,0.003750,0.249972,0,0);-webkit-transform:matrix(0.239093,-0.003586,0.003750,0.249972,0,0);}
.m4b_c01188{transform:matrix(0.239098,-0.003586,0.003750,0.249972,0,0);-ms-transform:matrix(0.239098,-0.003586,0.003750,0.249972,0,0);-webkit-transform:matrix(0.239098,-0.003586,0.003750,0.249972,0,0);}
.m6c_c01188{transform:matrix(0.239518,-0.003593,0.003750,0.249972,0,0);-ms-transform:matrix(0.239518,-0.003593,0.003750,0.249972,0,0);-webkit-transform:matrix(0.239518,-0.003593,0.003750,0.249972,0,0);}
.m78_c01188{transform:matrix(0.239538,-0.003593,0.003750,0.249972,0,0);-ms-transform:matrix(0.239538,-0.003593,0.003750,0.249972,0,0);-webkit-transform:matrix(0.239538,-0.003593,0.003750,0.249972,0,0);}
.mae_c01188{transform:matrix(0.239717,0.001199,-0.001250,0.249997,0,0);-ms-transform:matrix(0.239717,0.001199,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.239717,0.001199,-0.001250,0.249997,0,0);}
.m55_c01188{transform:matrix(0.239883,-0.003598,0.003750,0.249972,0,0);-ms-transform:matrix(0.239883,-0.003598,0.003750,0.249972,0,0);-webkit-transform:matrix(0.239883,-0.003598,0.003750,0.249972,0,0);}
.m26_c01188{transform:matrix(0.240354,-0.003846,0.003999,0.249968,0,0);-ms-transform:matrix(0.240354,-0.003846,0.003999,0.249968,0,0);-webkit-transform:matrix(0.240354,-0.003846,0.003999,0.249968,0,0);}
.ma_c01188{transform:matrix(0.240767,-0.005056,0.005249,0.249945,0,0);-ms-transform:matrix(0.240767,-0.005056,0.005249,0.249945,0,0);-webkit-transform:matrix(0.240767,-0.005056,0.005249,0.249945,0,0);}
.m4d_c01188{transform:matrix(0.240793,-0.003612,0.003750,0.249972,0,0);-ms-transform:matrix(0.240793,-0.003612,0.003750,0.249972,0,0);-webkit-transform:matrix(0.240793,-0.003612,0.003750,0.249972,0,0);}
.mbf_c01188{transform:matrix(0.240942,-0.004578,0.004749,0.249955,0,0);-ms-transform:matrix(0.240942,-0.004578,0.004749,0.249955,0,0);-webkit-transform:matrix(0.240942,-0.004578,0.004749,0.249955,0,0);}
.m5a_c01188{transform:matrix(0.241118,-0.003617,0.003750,0.249972,0,0);-ms-transform:matrix(0.241118,-0.003617,0.003750,0.249972,0,0);-webkit-transform:matrix(0.241118,-0.003617,0.003750,0.249972,0,0);}
.m20_c01188{transform:matrix(0.241247,-0.005066,0.005249,0.249945,0,0);-ms-transform:matrix(0.241247,-0.005066,0.005249,0.249945,0,0);-webkit-transform:matrix(0.241247,-0.005066,0.005249,0.249945,0,0);}
.m3e_c01188{transform:matrix(0.241808,-0.003627,0.003750,0.249972,0,0);-ms-transform:matrix(0.241808,-0.003627,0.003750,0.249972,0,0);-webkit-transform:matrix(0.241808,-0.003627,0.003750,0.249972,0,0);}
.m29_c01188{transform:matrix(0.243009,-0.003888,0.003999,0.249968,0,0);-ms-transform:matrix(0.243009,-0.003888,0.003999,0.249968,0,0);-webkit-transform:matrix(0.243009,-0.003888,0.003999,0.249968,0,0);}
.maa_c01188{transform:matrix(0.243587,0.001218,-0.001250,0.249997,0,0);-ms-transform:matrix(0.243587,0.001218,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.243587,0.001218,-0.001250,0.249997,0,0);}
.m62_c01188{transform:matrix(0.244642,-0.003670,0.003750,0.249972,0,0);-ms-transform:matrix(0.244642,-0.003670,0.003750,0.249972,0,0);-webkit-transform:matrix(0.244642,-0.003670,0.003750,0.249972,0,0);}
.m37_c01188{transform:matrix(0.244997,-0.003675,0.003750,0.249972,0,0);-ms-transform:matrix(0.244997,-0.003675,0.003750,0.249972,0,0);-webkit-transform:matrix(0.244997,-0.003675,0.003750,0.249972,0,0);}
.mc_c01188{transform:matrix(0.245131,-0.005148,0.005249,0.249945,0,0);-ms-transform:matrix(0.245131,-0.005148,0.005249,0.249945,0,0);-webkit-transform:matrix(0.245131,-0.005148,0.005249,0.249945,0,0);}
.m41_c01188{transform:matrix(0.245777,-0.003687,0.003750,0.249972,0,0);-ms-transform:matrix(0.245777,-0.003687,0.003750,0.249972,0,0);-webkit-transform:matrix(0.245777,-0.003687,0.003750,0.249972,0,0);}
.m63_c01188{transform:matrix(0.245962,-0.003689,0.003750,0.249972,0,0);-ms-transform:matrix(0.245962,-0.003689,0.003750,0.249972,0,0);-webkit-transform:matrix(0.245962,-0.003689,0.003750,0.249972,0,0);}
.m61_c01188{transform:matrix(0.246307,-0.003695,0.003750,0.249972,0,0);-ms-transform:matrix(0.246307,-0.003695,0.003750,0.249972,0,0);-webkit-transform:matrix(0.246307,-0.003695,0.003750,0.249972,0,0);}
.m21_c01188{transform:matrix(0.246676,-0.005180,0.005249,0.249945,0,0);-ms-transform:matrix(0.246676,-0.005180,0.005249,0.249945,0,0);-webkit-transform:matrix(0.246676,-0.005180,0.005249,0.249945,0,0);}
.m2b_c01188{transform:matrix(0.246779,-0.004195,0.004249,0.249964,0,0);-ms-transform:matrix(0.246779,-0.004195,0.004249,0.249964,0,0);-webkit-transform:matrix(0.246779,-0.004195,0.004249,0.249964,0,0);}
.m8e_c01188{transform:matrix(0.247114,-0.003212,0.003250,0.249979,0,0);-ms-transform:matrix(0.247114,-0.003212,0.003250,0.249979,0,0);-webkit-transform:matrix(0.247114,-0.003212,0.003250,0.249979,0,0);}
.m5d_c01188{transform:matrix(0.247367,-0.003711,0.003750,0.249972,0,0);-ms-transform:matrix(0.247367,-0.003711,0.003750,0.249972,0,0);-webkit-transform:matrix(0.247367,-0.003711,0.003750,0.249972,0,0);}
.m70_c01188{transform:matrix(0.248187,-0.003723,0.003750,0.249972,0,0);-ms-transform:matrix(0.248187,-0.003723,0.003750,0.249972,0,0);-webkit-transform:matrix(0.248187,-0.003723,0.003750,0.249972,0,0);}
.m5f_c01188{transform:matrix(0.248267,-0.003724,0.003750,0.249972,0,0);-ms-transform:matrix(0.248267,-0.003724,0.003750,0.249972,0,0);-webkit-transform:matrix(0.248267,-0.003724,0.003750,0.249972,0,0);}
.m75_c01188{transform:matrix(0.248292,-0.003724,0.003750,0.249972,0,0);-ms-transform:matrix(0.248292,-0.003724,0.003750,0.249972,0,0);-webkit-transform:matrix(0.248292,-0.003724,0.003750,0.249972,0,0);}
.m8a_c01188{transform:matrix(0.248449,-0.003230,0.003250,0.249979,0,0);-ms-transform:matrix(0.248449,-0.003230,0.003250,0.249979,0,0);-webkit-transform:matrix(0.248449,-0.003230,0.003250,0.249979,0,0);}
.m28_c01188{transform:matrix(0.248523,-0.003976,0.003999,0.249968,0,0);-ms-transform:matrix(0.248523,-0.003976,0.003999,0.249968,0,0);-webkit-transform:matrix(0.248523,-0.003976,0.003999,0.249968,0,0);}
.m32_c01188{transform:matrix(0.248632,-0.003729,0.003750,0.249972,0,0);-ms-transform:matrix(0.248632,-0.003729,0.003750,0.249972,0,0);-webkit-transform:matrix(0.248632,-0.003729,0.003750,0.249972,0,0);}
.m46_c01188{transform:matrix(0.248822,-0.003732,0.003750,0.249972,0,0);-ms-transform:matrix(0.248822,-0.003732,0.003750,0.249972,0,0);-webkit-transform:matrix(0.248822,-0.003732,0.003750,0.249972,0,0);}
.m2e_c01188{transform:matrix(0.249794,-0.004246,0.004249,0.249964,0,0);-ms-transform:matrix(0.249794,-0.004246,0.004249,0.249964,0,0);-webkit-transform:matrix(0.249794,-0.004246,0.004249,0.249964,0,0);}
.m68_c01188{transform:matrix(0.250612,-0.003759,0.003750,0.249972,0,0);-ms-transform:matrix(0.250612,-0.003759,0.003750,0.249972,0,0);-webkit-transform:matrix(0.250612,-0.003759,0.003750,0.249972,0,0);}
.m6d_c01188{transform:matrix(0.251352,-0.003770,0.003750,0.249972,0,0);-ms-transform:matrix(0.251352,-0.003770,0.003750,0.249972,0,0);-webkit-transform:matrix(0.251352,-0.003770,0.003750,0.249972,0,0);}
.m88_c01188{transform:matrix(0.251389,-0.003268,0.003250,0.249979,0,0);-ms-transform:matrix(0.251389,-0.003268,0.003250,0.249979,0,0);-webkit-transform:matrix(0.251389,-0.003268,0.003250,0.249979,0,0);}
.m39_c01188{transform:matrix(0.252777,-0.003792,0.003750,0.249972,0,0);-ms-transform:matrix(0.252777,-0.003792,0.003750,0.249972,0,0);-webkit-transform:matrix(0.252777,-0.003792,0.003750,0.249972,0,0);}
.mca_c01188{transform:matrix(0.252939,-0.004806,0.004749,0.249955,0,0);-ms-transform:matrix(0.252939,-0.004806,0.004749,0.249955,0,0);-webkit-transform:matrix(0.252939,-0.004806,0.004749,0.249955,0,0);}
.m57_c01188{transform:matrix(0.253561,-0.003803,0.003750,0.249972,0,0);-ms-transform:matrix(0.253561,-0.003803,0.003750,0.249972,0,0);-webkit-transform:matrix(0.253561,-0.003803,0.003750,0.249972,0,0);}
.m8c_c01188{transform:matrix(0.254024,-0.003302,0.003250,0.249979,0,0);-ms-transform:matrix(0.254024,-0.003302,0.003250,0.249979,0,0);-webkit-transform:matrix(0.254024,-0.003302,0.003250,0.249979,0,0);}
.m8d_c01188{transform:matrix(0.254893,-0.003314,0.003250,0.249979,0,0);-ms-transform:matrix(0.254893,-0.003314,0.003250,0.249979,0,0);-webkit-transform:matrix(0.254893,-0.003314,0.003250,0.249979,0,0);}
.m35_c01188{transform:matrix(0.254931,-0.003824,0.003750,0.249972,0,0);-ms-transform:matrix(0.254931,-0.003824,0.003750,0.249972,0,0);-webkit-transform:matrix(0.254931,-0.003824,0.003750,0.249972,0,0);}
.m6a_c01188{transform:matrix(0.255871,-0.003838,0.003750,0.249972,0,0);-ms-transform:matrix(0.255871,-0.003838,0.003750,0.249972,0,0);-webkit-transform:matrix(0.255871,-0.003838,0.003750,0.249972,0,0);}
.m30_c01188{transform:matrix(0.255943,-0.004351,0.004249,0.249964,0,0);-ms-transform:matrix(0.255943,-0.004351,0.004249,0.249964,0,0);-webkit-transform:matrix(0.255943,-0.004351,0.004249,0.249964,0,0);}
.m74_c01188{transform:matrix(0.256511,-0.003848,0.003750,0.249972,0,0);-ms-transform:matrix(0.256511,-0.003848,0.003750,0.249972,0,0);-webkit-transform:matrix(0.256511,-0.003848,0.003750,0.249972,0,0);}
.m3c_c01188{transform:matrix(0.256656,-0.003850,0.003750,0.249972,0,0);-ms-transform:matrix(0.256656,-0.003850,0.003750,0.249972,0,0);-webkit-transform:matrix(0.256656,-0.003850,0.003750,0.249972,0,0);}
.mb_c01188{transform:matrix(0.257478,-0.005407,0.005249,0.249945,0,0);-ms-transform:matrix(0.257478,-0.005407,0.005249,0.249945,0,0);-webkit-transform:matrix(0.257478,-0.005407,0.005249,0.249945,0,0);}
.m2d_c01188{transform:matrix(0.257568,-0.004379,0.004249,0.249964,0,0);-ms-transform:matrix(0.257568,-0.004379,0.004249,0.249964,0,0);-webkit-transform:matrix(0.257568,-0.004379,0.004249,0.249964,0,0);}
.m6b_c01188{transform:matrix(0.258571,-0.003879,0.003750,0.249972,0,0);-ms-transform:matrix(0.258571,-0.003879,0.003750,0.249972,0,0);-webkit-transform:matrix(0.258571,-0.003879,0.003750,0.249972,0,0);}
.md1_c01188{transform:matrix(0.258940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258940,0.000000,0.000000,0.250000,0,0);}
.m90_c01188{transform:matrix(0.258973,-0.003367,0.003250,0.249979,0,0);-ms-transform:matrix(0.258973,-0.003367,0.003250,0.249979,0,0);-webkit-transform:matrix(0.258973,-0.003367,0.003250,0.249979,0,0);}
.m52_c01188{transform:matrix(0.259021,-0.003885,0.003750,0.249972,0,0);-ms-transform:matrix(0.259021,-0.003885,0.003750,0.249972,0,0);-webkit-transform:matrix(0.259021,-0.003885,0.003750,0.249972,0,0);}
.m59_c01188{transform:matrix(0.259271,-0.003889,0.003750,0.249972,0,0);-ms-transform:matrix(0.259271,-0.003889,0.003750,0.249972,0,0);-webkit-transform:matrix(0.259271,-0.003889,0.003750,0.249972,0,0);}
.m3f_c01188{transform:matrix(0.259911,-0.003899,0.003750,0.249972,0,0);-ms-transform:matrix(0.259911,-0.003899,0.003750,0.249972,0,0);-webkit-transform:matrix(0.259911,-0.003899,0.003750,0.249972,0,0);}
.m94_c01188{transform:matrix(0.261228,-0.005225,0.004999,0.249950,0,0);-ms-transform:matrix(0.261228,-0.005225,0.004999,0.249950,0,0);-webkit-transform:matrix(0.261228,-0.005225,0.004999,0.249950,0,0);}
.mc3_c01188{transform:matrix(0.262468,-0.004987,0.004749,0.249955,0,0);-ms-transform:matrix(0.262468,-0.004987,0.004749,0.249955,0,0);-webkit-transform:matrix(0.262468,-0.004987,0.004749,0.249955,0,0);}
.m56_c01188{transform:matrix(0.262545,-0.003938,0.003750,0.249972,0,0);-ms-transform:matrix(0.262545,-0.003938,0.003750,0.249972,0,0);-webkit-transform:matrix(0.262545,-0.003938,0.003750,0.249972,0,0);}
.m1c_c01188{transform:matrix(0.263187,-0.004737,0.004499,0.249960,0,0);-ms-transform:matrix(0.263187,-0.004737,0.004499,0.249960,0,0);-webkit-transform:matrix(0.263187,-0.004737,0.004499,0.249960,0,0);}
.m6f_c01188{transform:matrix(0.264050,-0.003961,0.003750,0.249972,0,0);-ms-transform:matrix(0.264050,-0.003961,0.003750,0.249972,0,0);-webkit-transform:matrix(0.264050,-0.003961,0.003750,0.249972,0,0);}
.m97_c01188{transform:matrix(0.264607,-0.005292,0.004999,0.249950,0,0);-ms-transform:matrix(0.264607,-0.005292,0.004999,0.249950,0,0);-webkit-transform:matrix(0.264607,-0.005292,0.004999,0.249950,0,0);}
.m34_c01188{transform:matrix(0.265870,-0.003988,0.003750,0.249972,0,0);-ms-transform:matrix(0.265870,-0.003988,0.003750,0.249972,0,0);-webkit-transform:matrix(0.265870,-0.003988,0.003750,0.249972,0,0);}
.m24_c01188{transform:matrix(0.266056,-0.005587,0.005249,0.249945,0,0);-ms-transform:matrix(0.266056,-0.005587,0.005249,0.249945,0,0);-webkit-transform:matrix(0.266056,-0.005587,0.005249,0.249945,0,0);}
.m31_c01188{transform:matrix(0.266760,-0.004001,0.003750,0.249972,0,0);-ms-transform:matrix(0.266760,-0.004001,0.003750,0.249972,0,0);-webkit-transform:matrix(0.266760,-0.004001,0.003750,0.249972,0,0);}
.m1f_c01188{transform:matrix(0.267712,-0.004819,0.004499,0.249960,0,0);-ms-transform:matrix(0.267712,-0.004819,0.004499,0.249960,0,0);-webkit-transform:matrix(0.267712,-0.004819,0.004499,0.249960,0,0);}
.md_c01188{transform:matrix(0.268746,-0.005644,0.005249,0.249945,0,0);-ms-transform:matrix(0.268746,-0.005644,0.005249,0.249945,0,0);-webkit-transform:matrix(0.268746,-0.005644,0.005249,0.249945,0,0);}
.m4f_c01188{transform:matrix(0.270165,-0.004052,0.003750,0.249972,0,0);-ms-transform:matrix(0.270165,-0.004052,0.003750,0.249972,0,0);-webkit-transform:matrix(0.270165,-0.004052,0.003750,0.249972,0,0);}
.m60_c01188{transform:matrix(0.273099,-0.004096,0.003750,0.249972,0,0);-ms-transform:matrix(0.273099,-0.004096,0.003750,0.249972,0,0);-webkit-transform:matrix(0.273099,-0.004096,0.003750,0.249972,0,0);}
.m51_c01188{transform:matrix(0.273469,-0.004102,0.003750,0.249972,0,0);-ms-transform:matrix(0.273469,-0.004102,0.003750,0.249972,0,0);-webkit-transform:matrix(0.273469,-0.004102,0.003750,0.249972,0,0);}
.m22_c01188{transform:matrix(0.273900,-0.005752,0.005249,0.249945,0,0);-ms-transform:matrix(0.273900,-0.005752,0.005249,0.249945,0,0);-webkit-transform:matrix(0.273900,-0.005752,0.005249,0.249945,0,0);}
.m89_c01188{transform:matrix(0.274062,-0.003563,0.003250,0.249979,0,0);-ms-transform:matrix(0.274062,-0.003563,0.003250,0.249979,0,0);-webkit-transform:matrix(0.274062,-0.003563,0.003250,0.249979,0,0);}
.m58_c01188{transform:matrix(0.276759,-0.004151,0.003750,0.249972,0,0);-ms-transform:matrix(0.276759,-0.004151,0.003750,0.249972,0,0);-webkit-transform:matrix(0.276759,-0.004151,0.003750,0.249972,0,0);}
.m73_c01188{transform:matrix(0.276869,-0.004153,0.003750,0.249972,0,0);-ms-transform:matrix(0.276869,-0.004153,0.003750,0.249972,0,0);-webkit-transform:matrix(0.276869,-0.004153,0.003750,0.249972,0,0);}
.m38_c01188{transform:matrix(0.277514,-0.004163,0.003750,0.249972,0,0);-ms-transform:matrix(0.277514,-0.004163,0.003750,0.249972,0,0);-webkit-transform:matrix(0.277514,-0.004163,0.003750,0.249972,0,0);}
.m9f_c01188{transform:matrix(0.278609,-0.005572,0.004999,0.249950,0,0);-ms-transform:matrix(0.278609,-0.005572,0.004999,0.249950,0,0);-webkit-transform:matrix(0.278609,-0.005572,0.004999,0.249950,0,0);}
.m96_c01188{transform:matrix(0.279074,-0.005581,0.004999,0.249950,0,0);-ms-transform:matrix(0.279074,-0.005581,0.004999,0.249950,0,0);-webkit-transform:matrix(0.279074,-0.005581,0.004999,0.249950,0,0);}
.m72_c01188{transform:matrix(0.279619,-0.004194,0.003750,0.249972,0,0);-ms-transform:matrix(0.279619,-0.004194,0.003750,0.249972,0,0);-webkit-transform:matrix(0.279619,-0.004194,0.003750,0.249972,0,0);}
.m7a_c01188{transform:matrix(0.280748,-0.004211,0.003750,0.249972,0,0);-ms-transform:matrix(0.280748,-0.004211,0.003750,0.249972,0,0);-webkit-transform:matrix(0.280748,-0.004211,0.003750,0.249972,0,0);}
.m77_c01188{transform:matrix(0.281943,-0.004229,0.003750,0.249972,0,0);-ms-transform:matrix(0.281943,-0.004229,0.003750,0.249972,0,0);-webkit-transform:matrix(0.281943,-0.004229,0.003750,0.249972,0,0);}
.m36_c01188{transform:matrix(0.282533,-0.004238,0.003750,0.249972,0,0);-ms-transform:matrix(0.282533,-0.004238,0.003750,0.249972,0,0);-webkit-transform:matrix(0.282533,-0.004238,0.003750,0.249972,0,0);}
.m95_c01188{transform:matrix(0.283403,-0.005668,0.004999,0.249950,0,0);-ms-transform:matrix(0.283403,-0.005668,0.004999,0.249950,0,0);-webkit-transform:matrix(0.283403,-0.005668,0.004999,0.249950,0,0);}
.m44_c01188{transform:matrix(0.283538,-0.004253,0.003750,0.249972,0,0);-ms-transform:matrix(0.283538,-0.004253,0.003750,0.249972,0,0);-webkit-transform:matrix(0.283538,-0.004253,0.003750,0.249972,0,0);}
.m33_c01188{transform:matrix(0.287218,-0.004308,0.003750,0.249972,0,0);-ms-transform:matrix(0.287218,-0.004308,0.003750,0.249972,0,0);-webkit-transform:matrix(0.287218,-0.004308,0.003750,0.249972,0,0);}
.m54_c01188{transform:matrix(0.288823,-0.004332,0.003750,0.249972,0,0);-ms-transform:matrix(0.288823,-0.004332,0.003750,0.249972,0,0);-webkit-transform:matrix(0.288823,-0.004332,0.003750,0.249972,0,0);}
.m1d_c01188{transform:matrix(0.291553,-0.005248,0.004499,0.249960,0,0);-ms-transform:matrix(0.291553,-0.005248,0.004499,0.249960,0,0);-webkit-transform:matrix(0.291553,-0.005248,0.004499,0.249960,0,0);}
.m3b_c01188{transform:matrix(0.294847,-0.004423,0.003750,0.249972,0,0);-ms-transform:matrix(0.294847,-0.004423,0.003750,0.249972,0,0);-webkit-transform:matrix(0.294847,-0.004423,0.003750,0.249972,0,0);}
.m2_c01188{transform:matrix(0.296515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296515,0.000000,0.000000,0.250000,0,0);}
.mb4_c01188{transform:matrix(0.300736,0.001504,-0.001250,0.249997,0,0);-ms-transform:matrix(0.300736,0.001504,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.300736,0.001504,-0.001250,0.249997,0,0);}
.m99_c01188{transform:matrix(0.301655,-0.006033,0.004999,0.249950,0,0);-ms-transform:matrix(0.301655,-0.006033,0.004999,0.249950,0,0);-webkit-transform:matrix(0.301655,-0.006033,0.004999,0.249950,0,0);}
.m9d_c01188{transform:matrix(0.301990,-0.006040,0.004999,0.249950,0,0);-ms-transform:matrix(0.301990,-0.006040,0.004999,0.249950,0,0);-webkit-transform:matrix(0.301990,-0.006040,0.004999,0.249950,0,0);}
.m9e_c01188{transform:matrix(0.303239,-0.006065,0.004999,0.249950,0,0);-ms-transform:matrix(0.303239,-0.006065,0.004999,0.249950,0,0);-webkit-transform:matrix(0.303239,-0.006065,0.004999,0.249950,0,0);}
.m92_c01188{transform:matrix(0.307299,-0.006146,0.004999,0.249950,0,0);-ms-transform:matrix(0.307299,-0.006146,0.004999,0.249950,0,0);-webkit-transform:matrix(0.307299,-0.006146,0.004999,0.249950,0,0);}
.ma0_c01188{transform:matrix(0.312832,-0.006257,0.004999,0.249950,0,0);-ms-transform:matrix(0.312832,-0.006257,0.004999,0.249950,0,0);-webkit-transform:matrix(0.312832,-0.006257,0.004999,0.249950,0,0);}
.m9c_c01188{transform:matrix(0.318421,-0.006368,0.004999,0.249950,0,0);-ms-transform:matrix(0.318421,-0.006368,0.004999,0.249950,0,0);-webkit-transform:matrix(0.318421,-0.006368,0.004999,0.249950,0,0);}
.m9a_c01188{transform:matrix(0.323350,-0.006467,0.004999,0.249950,0,0);-ms-transform:matrix(0.323350,-0.006467,0.004999,0.249950,0,0);-webkit-transform:matrix(0.323350,-0.006467,0.004999,0.249950,0,0);}
.m98_c01188{transform:matrix(0.327060,-0.006541,0.004999,0.249950,0,0);-ms-transform:matrix(0.327060,-0.006541,0.004999,0.249950,0,0);-webkit-transform:matrix(0.327060,-0.006541,0.004999,0.249950,0,0);}
.m1_c01188{transform:matrix(0.328020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328020,0.000000,0.000000,0.250000,0,0);}
.m91_c01188{transform:matrix(0.329879,-0.006598,0.004999,0.249950,0,0);-ms-transform:matrix(0.329879,-0.006598,0.004999,0.249950,0,0);-webkit-transform:matrix(0.329879,-0.006598,0.004999,0.249950,0,0);}
.m66_c01188{transform:matrix(0.332848,-0.004993,0.003750,0.249972,0,0);-ms-transform:matrix(0.332848,-0.004993,0.003750,0.249972,0,0);-webkit-transform:matrix(0.332848,-0.004993,0.003750,0.249972,0,0);}
.m40_c01188{transform:matrix(0.342721,-0.005141,0.003750,0.249972,0,0);-ms-transform:matrix(0.342721,-0.005141,0.003750,0.249972,0,0);-webkit-transform:matrix(0.342721,-0.005141,0.003750,0.249972,0,0);}
.ma9_c01188{transform:matrix(0.373245,-0.007465,0.004999,0.249950,0,0);-ms-transform:matrix(0.373245,-0.007465,0.004999,0.249950,0,0);-webkit-transform:matrix(0.373245,-0.007465,0.004999,0.249950,0,0);}
.md0_c01188{transform:matrix(0.377690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377690,0.000000,0.000000,0.250000,0,0);}
.m9b_c01188{transform:matrix(0.428939,-0.008579,0.004999,0.249950,0,0);-ms-transform:matrix(0.428939,-0.008579,0.004999,0.249950,0,0);-webkit-transform:matrix(0.428939,-0.008579,0.004999,0.249950,0,0);}
.md2_c01188{transform:matrix(0.564845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.564845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.564845,0.000000,0.000000,0.250000,0,0);}
.mcc_c01188{transform:matrix(0.604670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.604670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.604670,0.000000,0.000000,0.250000,0,0);}
.mac_c01188{transform:matrix(0.737786,0.003689,-0.001250,0.249997,0,0);-ms-transform:matrix(0.737786,0.003689,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.737786,0.003689,-0.001250,0.249997,0,0);}
.mcb_c01188{transform:matrix(1.944800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.944800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.944800,0.000000,0.000000,0.250000,0,0);}
.md3_c01188{transform:matrix(2.469735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.469735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.469735,0.000000,0.000000,0.250000,0,0);}
.v0_c01188{vertical-align:0.000000px;}
.ls0_c01188{letter-spacing:0.000000px;}
.sc__c01188{text-shadow:none;}
.sc0_c01188{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__c01188{-webkit-text-stroke:0px transparent;}
.sc0_c01188{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01188{word-spacing:0.000000px;}
.fc0_c01188{color:transparent;}
.fs12_c01188{font-size:18.000000px;}
.fsd_c01188{font-size:66.013199px;}
.fs9_c01188{font-size:72.008100px;}
.fs5_c01188{font-size:72.011663px;}
.fs6_c01188{font-size:72.015874px;}
.fsc_c01188{font-size:78.006591px;}
.fsa_c01188{font-size:78.008775px;}
.fs7_c01188{font-size:78.009983px;}
.fs8_c01188{font-size:78.011270px;}
.fs11_c01188{font-size:78.014078px;}
.fs2_c01188{font-size:78.017197px;}
.fsf_c01188{font-size:84.001050px;}
.fs10_c01188{font-size:84.015161px;}
.fs3_c01188{font-size:84.016798px;}
.fs0_c01188{font-size:90.000000px;}
.fs1_c01188{font-size:90.019843px;}
.fs4_c01188{font-size:96.023229px;}
.fse_c01188{font-size:102.020398px;}
.fsb_c01188{font-size:114.012824px;}
.ycf_c01188{bottom:-0.001500px;}
.y0_c01188{bottom:0.000000px;}
.ycb_c01188{bottom:3.081000px;}
.ycc_c01188{bottom:3.709500px;}
.ycd_c01188{bottom:4.134000px;}
.yce_c01188{bottom:9.141000px;}
.yc3_c01188{bottom:260.018212px;}
.yc4_c01188{bottom:262.255237px;}
.yc5_c01188{bottom:263.038017px;}
.yc6_c01188{bottom:263.868820px;}
.yc7_c01188{bottom:265.243573px;}
.yc8_c01188{bottom:265.832907px;}
.yc9_c01188{bottom:266.628148px;}
.yca_c01188{bottom:267.486099px;}
.yb6_c01188{bottom:295.114500px;}
.yb7_c01188{bottom:295.746744px;}
.yb8_c01188{bottom:296.776905px;}
.yb9_c01188{bottom:297.214351px;}
.yba_c01188{bottom:297.830037px;}
.ybb_c01188{bottom:298.461511px;}
.ybc_c01188{bottom:300.554551px;}
.ybd_c01188{bottom:301.194519px;}
.ybe_c01188{bottom:302.241324px;}
.ybf_c01188{bottom:303.905097px;}
.yc0_c01188{bottom:305.785897px;}
.yc1_c01188{bottom:306.423357px;}
.yc2_c01188{bottom:307.709106px;}
.yb5_c01188{bottom:340.317743px;}
.yb4_c01188{bottom:340.482863px;}
.yb3_c01188{bottom:341.037352px;}
.yb2_c01188{bottom:341.210115px;}
.yb1_c01188{bottom:341.535450px;}
.yb0_c01188{bottom:341.926897px;}
.yaf_c01188{bottom:342.203543px;}
.yae_c01188{bottom:342.807082px;}
.yad_c01188{bottom:342.974430px;}
.yac_c01188{bottom:343.467592px;}
.yab_c01188{bottom:343.469745px;}
.yaa_c01188{bottom:343.710000px;}
.ya1_c01188{bottom:401.759430px;}
.ya2_c01188{bottom:403.652040px;}
.ya3_c01188{bottom:404.284050px;}
.ya4_c01188{bottom:405.972960px;}
.ya5_c01188{bottom:407.403360px;}
.ya6_c01188{bottom:408.059220px;}
.ya7_c01188{bottom:408.669930px;}
.ya8_c01188{bottom:410.980320px;}
.ya9_c01188{bottom:412.037340px;}
.y91_c01188{bottom:437.676000px;}
.y92_c01188{bottom:438.085350px;}
.y93_c01188{bottom:438.797370px;}
.y94_c01188{bottom:439.247640px;}
.y95_c01188{bottom:439.879860px;}
.y96_c01188{bottom:441.219450px;}
.y97_c01188{bottom:442.085640px;}
.y98_c01188{bottom:443.395740px;}
.y99_c01188{bottom:444.260100px;}
.y9a_c01188{bottom:445.836030px;}
.y9b_c01188{bottom:446.063970px;}
.y9c_c01188{bottom:446.928870px;}
.y9d_c01188{bottom:447.586680px;}
.y9e_c01188{bottom:448.278060px;}
.y9f_c01188{bottom:450.700350px;}
.ya0_c01188{bottom:451.149420px;}
.y88_c01188{bottom:476.823000px;}
.y89_c01188{bottom:477.541029px;}
.y8a_c01188{bottom:478.405971px;}
.y8b_c01188{bottom:479.557251px;}
.y8c_c01188{bottom:479.960998px;}
.y8d_c01188{bottom:480.975857px;}
.y8e_c01188{bottom:482.134059px;}
.y8f_c01188{bottom:482.993444px;}
.y90_c01188{bottom:483.432603px;}
.y7d_c01188{bottom:509.469562px;}
.y7e_c01188{bottom:510.763320px;}
.y7f_c01188{bottom:511.170615px;}
.y80_c01188{bottom:512.480085px;}
.y81_c01188{bottom:513.049275px;}
.y82_c01188{bottom:513.881535px;}
.y83_c01188{bottom:514.331160px;}
.y84_c01188{bottom:515.050770px;}
.y85_c01188{bottom:515.917845px;}
.y86_c01188{bottom:516.381742px;}
.y87_c01188{bottom:517.213912px;}
.y70_c01188{bottom:545.109832px;}
.y71_c01188{bottom:545.681752px;}
.y72_c01188{bottom:546.093772px;}
.y73_c01188{bottom:546.806512px;}
.y74_c01188{bottom:547.964512px;}
.y75_c01188{bottom:548.824627px;}
.y76_c01188{bottom:549.119490px;}
.y77_c01188{bottom:549.670672px;}
.y78_c01188{bottom:551.545440px;}
.y79_c01188{bottom:552.131362px;}
.y7a_c01188{bottom:552.564570px;}
.y7b_c01188{bottom:553.855530px;}
.y7c_c01188{bottom:554.269395px;}
.y67_c01188{bottom:579.675555px;}
.y68_c01188{bottom:580.614285px;}
.y69_c01188{bottom:582.323235px;}
.y6a_c01188{bottom:582.669712px;}
.y6b_c01188{bottom:584.904832px;}
.y6c_c01188{bottom:587.350965px;}
.y6d_c01188{bottom:587.704972px;}
.y6e_c01188{bottom:588.852382px;}
.y6f_c01188{bottom:589.610145px;}
.y5a_c01188{bottom:614.508720px;}
.y5b_c01188{bottom:616.046250px;}
.y5c_c01188{bottom:616.484137px;}
.y5d_c01188{bottom:617.371575px;}
.y5e_c01188{bottom:618.707910px;}
.y5f_c01188{bottom:620.074335px;}
.y60_c01188{bottom:621.328852px;}
.y61_c01188{bottom:622.659637px;}
.y62_c01188{bottom:624.177345px;}
.y63_c01188{bottom:625.748085px;}
.y64_c01188{bottom:626.211817px;}
.y65_c01188{bottom:627.086535px;}
.y66_c01188{bottom:627.756555px;}
.y4f_c01188{bottom:650.690197px;}
.y50_c01188{bottom:652.200075px;}
.y51_c01188{bottom:653.487127px;}
.y52_c01188{bottom:654.040372px;}
.y53_c01188{bottom:655.200060px;}
.y54_c01188{bottom:655.561560px;}
.y55_c01188{bottom:657.798323px;}
.y56_c01188{bottom:658.376258px;}
.y57_c01188{bottom:659.486993px;}
.y58_c01188{bottom:660.243720px;}
.y59_c01188{bottom:661.758383px;}
.y41_c01188{bottom:683.637210px;}
.y42_c01188{bottom:683.905365px;}
.y43_c01188{bottom:684.841042px;}
.y44_c01188{bottom:686.649285px;}
.y45_c01188{bottom:687.347250px;}
.y46_c01188{bottom:688.743000px;}
.y47_c01188{bottom:689.666745px;}
.y48_c01188{bottom:690.347543px;}
.y49_c01188{bottom:691.055415px;}
.y4a_c01188{bottom:691.492710px;}
.y4b_c01188{bottom:692.690002px;}
.y4c_c01188{bottom:694.510417px;}
.y4d_c01188{bottom:695.690115px;}
.y4e_c01188{bottom:696.330833px;}
.y38_c01188{bottom:723.330990px;}
.y39_c01188{bottom:725.278343px;}
.y3a_c01188{bottom:725.900332px;}
.y3b_c01188{bottom:726.485317px;}
.y3c_c01188{bottom:728.895847px;}
.y3d_c01188{bottom:729.460215px;}
.y3e_c01188{bottom:730.880198px;}
.y3f_c01188{bottom:732.651247px;}
.y40_c01188{bottom:733.471275px;}
.y30_c01188{bottom:758.973000px;}
.y31_c01188{bottom:759.977580px;}
.y32_c01188{bottom:760.635300px;}
.y33_c01188{bottom:761.986762px;}
.y34_c01188{bottom:763.112167px;}
.y35_c01188{bottom:763.797810px;}
.y36_c01188{bottom:765.449355px;}
.y37_c01188{bottom:766.112475px;}
.y2d_c01188{bottom:794.074500px;}
.y2e_c01188{bottom:795.768669px;}
.y2f_c01188{bottom:796.710180px;}
.y29_c01188{bottom:829.714500px;}
.y2a_c01188{bottom:830.307375px;}
.y2b_c01188{bottom:831.986448px;}
.y2c_c01188{bottom:832.726739px;}
.y24_c01188{bottom:865.354500px;}
.y25_c01188{bottom:865.868724px;}
.y26_c01188{bottom:866.761956px;}
.y27_c01188{bottom:867.117540px;}
.y28_c01188{bottom:868.361964px;}
.y1f_c01188{bottom:899.916000px;}
.y20_c01188{bottom:900.601314px;}
.y21_c01188{bottom:901.542692px;}
.y22_c01188{bottom:903.396718px;}
.y23_c01188{bottom:903.863328px;}
.y1b_c01188{bottom:935.554500px;}
.y1c_c01188{bottom:936.313578px;}
.y1d_c01188{bottom:937.945215px;}
.y1e_c01188{bottom:938.349837px;}
.y18_c01188{bottom:969.577500px;}
.y19_c01188{bottom:970.569381px;}
.y1a_c01188{bottom:972.985806px;}
.y12_c01188{bottom:1005.216000px;}
.y13_c01188{bottom:1005.691110px;}
.y14_c01188{bottom:1006.339740px;}
.y15_c01188{bottom:1007.629440px;}
.y16_c01188{bottom:1008.759870px;}
.y17_c01188{bottom:1009.435920px;}
.yc_c01188{bottom:1040.578733px;}
.yd_c01188{bottom:1041.723647px;}
.ye_c01188{bottom:1042.360167px;}
.yf_c01188{bottom:1043.685868px;}
.y10_c01188{bottom:1044.840075px;}
.y11_c01188{bottom:1045.695352px;}
.y7_c01188{bottom:1075.686000px;}
.y8_c01188{bottom:1076.361423px;}
.y9_c01188{bottom:1077.518323px;}
.ya_c01188{bottom:1078.942250px;}
.yb_c01188{bottom:1080.773124px;}
.y2_c01188{bottom:1111.326000px;}
.y3_c01188{bottom:1112.056800px;}
.y4_c01188{bottom:1113.181129px;}
.y5_c01188{bottom:1114.589369px;}
.y6_c01188{bottom:1115.564388px;}
.y1_c01188{bottom:1186.090500px;}
.h14_c01188{height:18.000000px;}
.hf_c01188{height:66.013199px;}
.hb_c01188{height:72.008100px;}
.h7_c01188{height:72.011663px;}
.h8_c01188{height:72.015874px;}
.he_c01188{height:78.006591px;}
.hc_c01188{height:78.008775px;}
.h9_c01188{height:78.009983px;}
.ha_c01188{height:78.011270px;}
.h13_c01188{height:78.014078px;}
.h4_c01188{height:78.017197px;}
.h11_c01188{height:84.001050px;}
.h12_c01188{height:84.015161px;}
.h5_c01188{height:84.016798px;}
.h2_c01188{height:90.000000px;}
.h3_c01188{height:90.019843px;}
.h6_c01188{height:96.023229px;}
.h10_c01188{height:102.020398px;}
.hd_c01188{height:114.012824px;}
.h1_c01188{height:1258.500000px;}
.h0_c01188{height:1258.740000px;}
.w0_c01188{width:904.200000px;}
.w1_c01188{width:904.500000px;}
.x0_c01188{left:0.000000px;}
.x72_c01188{left:129.357000px;}
.x3b_c01188{left:134.417063px;}
.x80_c01188{left:141.301320px;}
.x3c_c01188{left:147.192915px;}
.x57_c01188{left:149.002418px;}
.x5d_c01188{left:150.239565px;}
.x8f_c01188{left:155.247000px;}
.x73_c01188{left:185.425500px;}
.x90_c01188{left:188.523000px;}
.x3d_c01188{left:191.767410px;}
.x5e_c01188{left:194.268893px;}
.x86_c01188{left:197.086500px;}
.x58_c01188{left:204.182753px;}
.x74_c01188{left:207.939000px;}
.x9b_c01188{left:222.908018px;}
.x4d_c01188{left:224.887050px;}
.x5f_c01188{left:225.937838px;}
.xe_c01188{left:235.215835px;}
.x75_c01188{left:239.550000px;}
.x81_c01188{left:240.883800px;}
.x91_c01188{left:242.742000px;}
.x4e_c01188{left:246.777908px;}
.x9_c01188{left:247.902000px;}
.x13_c01188{left:248.950500px;}
.x1b_c01188{left:250.807500px;}
.x22_c01188{left:252.687000px;}
.x9c_c01188{left:254.234955px;}
.x33_c01188{left:256.501252px;}
.x6d_c01188{left:260.214000px;}
.x92_c01188{left:265.765500px;}
.x4_c01188{left:268.140000px;}
.x14_c01188{left:272.706000px;}
.x82_c01188{left:274.134960px;}
.x3e_c01188{left:277.909170px;}
.xa_c01188{left:280.065000px;}
.x1e_c01188{left:283.776000px;}
.x23_c01188{left:284.826000px;}
.x27_c01188{left:287.014500px;}
.x4f_c01188{left:291.137078px;}
.xf_c01188{left:292.451032px;}
.x19_c01188{left:294.880500px;}
.x87_c01188{left:296.149500px;}
.x93_c01188{left:298.170000px;}
.x5_c01188{left:302.940000px;}
.x15_c01188{left:305.137500px;}
.x76_c01188{left:306.529500px;}
.x3f_c01188{left:311.137178px;}
.x6e_c01188{left:315.447000px;}
.x2c_c01188{left:320.172000px;}
.x10_c01188{left:324.262194px;}
.x1f_c01188{left:328.603500px;}
.x88_c01188{left:329.619000px;}
.x94_c01188{left:331.405500px;}
.xb_c01188{left:335.155500px;}
.x24_c01188{left:340.653000px;}
.x9d_c01188{left:342.438395px;}
.x1_c01188{left:343.440000px;}
.x77_c01188{left:349.839000px;}
.x2a_c01188{left:353.164500px;}
.x6_c01188{left:356.479500px;}
.x50_c01188{left:357.921060px;}
.x25_c01188{left:362.877000px;}
.x2d_c01188{left:364.020000px;}
.x2_c01188{left:365.850000px;}
.x16_c01188{left:369.622500px;}
.x40_c01188{left:377.581193px;}
.x68_c01188{left:381.464415px;}
.x1c_c01188{left:383.625000px;}
.x28_c01188{left:385.783500px;}
.x11_c01188{left:390.535080px;}
.x9e_c01188{left:397.857096px;}
.x34_c01188{left:399.284340px;}
.xc_c01188{left:402.961500px;}
.x1a_c01188{left:404.718000px;}
.x1d_c01188{left:406.104000px;}
.x2b_c01188{left:408.547500px;}
.x3_c01188{left:411.480000px;}
.x47_c01188{left:412.496078px;}
.x78_c01188{left:415.344000px;}
.x20_c01188{left:416.890500px;}
.x41_c01188{left:421.560233px;}
.x7_c01188{left:423.538500px;}
.x17_c01188{left:426.144000px;}
.x29_c01188{left:429.330000px;}
.x35_c01188{left:431.781877px;}
.x48_c01188{left:433.795448px;}
.x60_c01188{left:436.001138px;}
.x21_c01188{left:439.110000px;}
.x26_c01188{left:440.653500px;}
.x12_c01188{left:448.212777px;}
.x89_c01188{left:450.327000px;}
.x2e_c01188{left:454.117500px;}
.x59_c01188{left:456.611693px;}
.x61_c01188{left:458.659313px;}
.x18_c01188{left:459.946500px;}
.x8_c01188{left:469.968000px;}
.x83_c01188{left:472.797420px;}
.x95_c01188{left:475.248000px;}
.x42_c01188{left:487.632270px;}
.x51_c01188{left:488.940728px;}
.xd_c01188{left:490.146000px;}
.x62_c01188{left:501.106095px;}
.x84_c01188{left:504.908550px;}
.x43_c01188{left:508.483402px;}
.x9f_c01188{left:516.780000px;}
.x69_c01188{left:523.773668px;}
.x2f_c01188{left:529.144500px;}
.x96_c01188{left:530.343000px;}
.x79_c01188{left:537.358500px;}
.x7a_c01188{left:548.755500px;}
.x52_c01188{left:555.454733px;}
.xa0_c01188{left:563.490000px;}
.x36_c01188{left:565.677847px;}
.xa1_c01188{left:571.590000px;}
.x30_c01188{left:574.854000px;}
.x6a_c01188{left:579.149333px;}
.x8a_c01188{left:583.945500px;}
.x7b_c01188{left:592.000500px;}
.x37_c01188{left:597.000930px;}
.x49_c01188{left:599.436998px;}
.x5a_c01188{left:600.482873px;}
.x97_c01188{left:617.910000px;}
.x5b_c01188{left:621.282743px;}
.x7c_c01188{left:624.891000px;}
.x85_c01188{left:626.505480px;}
.x53_c01188{left:631.329540px;}
.xa3_c01188{left:640.969500px;}
.x63_c01188{left:645.294915px;}
.x8b_c01188{left:649.012500px;}
.x44_c01188{left:652.150965px;}
.x7d_c01188{left:659.460000px;}
.xa2_c01188{left:661.770000px;}
.x4a_c01188{left:664.784040px;}
.x6f_c01188{left:668.757000px;}
.x38_c01188{left:675.862875px;}
.x6b_c01188{left:681.483893px;}
.x8c_c01188{left:683.565000px;}
.x31_c01188{left:684.957000px;}
.x5c_c01188{left:688.774718px;}
.x64_c01188{left:690.357765px;}
.x45_c01188{left:708.292403px;}
.x4b_c01188{left:709.331213px;}
.x98_c01188{left:716.899500px;}
.x65_c01188{left:723.639255px;}
.x32_c01188{left:729.165000px;}
.x54_c01188{left:733.053413px;}
.x70_c01188{left:734.863500px;}
.x46_c01188{left:738.804157px;}
.x6c_c01188{left:745.463805px;}
.x99_c01188{left:750.450000px;}
.x71_c01188{left:768.645000px;}
.x39_c01188{left:774.228443px;}
.x55_c01188{left:776.764628px;}
.x7e_c01188{left:780.574500px;}
.x8d_c01188{left:794.463000px;}
.x4c_c01188{left:798.406035px;}
.x7f_c01188{left:803.028000px;}
.x56_c01188{left:810.230108px;}
.x9a_c01188{left:818.121000px;}
.x3a_c01188{left:819.794895px;}
.x66_c01188{left:822.906225px;}
.x8e_c01188{left:827.487000px;}
.x67_c01188{left:854.698170px;}
.xa4_c01188{left:899.656500px;}
@media print{
.v0_c01188{vertical-align:0.000000pt;}
.ls0_c01188{letter-spacing:0.000000pt;}
.ws0_c01188{word-spacing:0.000000pt;}
.fs12_c01188{font-size:16.000000pt;}
.fsd_c01188{font-size:58.678399pt;}
.fs9_c01188{font-size:64.007200pt;}
.fs5_c01188{font-size:64.010367pt;}
.fs6_c01188{font-size:64.014110pt;}
.fsc_c01188{font-size:69.339192pt;}
.fsa_c01188{font-size:69.341133pt;}
.fs7_c01188{font-size:69.342207pt;}
.fs8_c01188{font-size:69.343351pt;}
.fs11_c01188{font-size:69.345847pt;}
.fs2_c01188{font-size:69.348620pt;}
.fsf_c01188{font-size:74.667600pt;}
.fs10_c01188{font-size:74.680143pt;}
.fs3_c01188{font-size:74.681599pt;}
.fs0_c01188{font-size:80.000000pt;}
.fs1_c01188{font-size:80.017638pt;}
.fs4_c01188{font-size:85.353982pt;}
.fse_c01188{font-size:90.684798pt;}
.fsb_c01188{font-size:101.344733pt;}
.ycf_c01188{bottom:-0.001333pt;}
.y0_c01188{bottom:0.000000pt;}
.ycb_c01188{bottom:2.738667pt;}
.ycc_c01188{bottom:3.297333pt;}
.ycd_c01188{bottom:3.674667pt;}
.yce_c01188{bottom:8.125333pt;}
.yc3_c01188{bottom:231.127300pt;}
.yc4_c01188{bottom:233.115767pt;}
.yc5_c01188{bottom:233.811571pt;}
.yc6_c01188{bottom:234.550063pt;}
.yc7_c01188{bottom:235.772065pt;}
.yc8_c01188{bottom:236.295917pt;}
.yc9_c01188{bottom:237.002799pt;}
.yca_c01188{bottom:237.765421pt;}
.yb6_c01188{bottom:262.324000pt;}
.yb7_c01188{bottom:262.885995pt;}
.yb8_c01188{bottom:263.801693pt;}
.yb9_c01188{bottom:264.190535pt;}
.yba_c01188{bottom:264.737811pt;}
.ybb_c01188{bottom:265.299121pt;}
.ybc_c01188{bottom:267.159601pt;}
.ybd_c01188{bottom:267.728461pt;}
.ybe_c01188{bottom:268.658955pt;}
.ybf_c01188{bottom:270.137864pt;}
.yc0_c01188{bottom:271.809687pt;}
.yc1_c01188{bottom:272.376317pt;}
.yc2_c01188{bottom:273.519205pt;}
.yb5_c01188{bottom:302.504660pt;}
.yb4_c01188{bottom:302.651433pt;}
.yb3_c01188{bottom:303.144313pt;}
.yb2_c01188{bottom:303.297880pt;}
.yb1_c01188{bottom:303.587067pt;}
.yb0_c01188{bottom:303.935020pt;}
.yaf_c01188{bottom:304.180927pt;}
.yae_c01188{bottom:304.717407pt;}
.yad_c01188{bottom:304.866160pt;}
.yac_c01188{bottom:305.304527pt;}
.yab_c01188{bottom:305.306440pt;}
.yaa_c01188{bottom:305.520000pt;}
.ya1_c01188{bottom:357.119493pt;}
.ya2_c01188{bottom:358.801813pt;}
.ya3_c01188{bottom:359.363600pt;}
.ya4_c01188{bottom:360.864853pt;}
.ya5_c01188{bottom:362.136320pt;}
.ya6_c01188{bottom:362.719307pt;}
.ya7_c01188{bottom:363.262160pt;}
.ya8_c01188{bottom:365.315840pt;}
.ya9_c01188{bottom:366.255413pt;}
.y91_c01188{bottom:389.045333pt;}
.y92_c01188{bottom:389.409200pt;}
.y93_c01188{bottom:390.042107pt;}
.y94_c01188{bottom:390.442347pt;}
.y95_c01188{bottom:391.004320pt;}
.y96_c01188{bottom:392.195067pt;}
.y97_c01188{bottom:392.965013pt;}
.y98_c01188{bottom:394.129547pt;}
.y99_c01188{bottom:394.897867pt;}
.y9a_c01188{bottom:396.298693pt;}
.y9b_c01188{bottom:396.501307pt;}
.y9c_c01188{bottom:397.270107pt;}
.y9d_c01188{bottom:397.854827pt;}
.y9e_c01188{bottom:398.469387pt;}
.y9f_c01188{bottom:400.622533pt;}
.ya0_c01188{bottom:401.021707pt;}
.y88_c01188{bottom:423.842667pt;}
.y89_c01188{bottom:424.480915pt;}
.y8a_c01188{bottom:425.249752pt;}
.y8b_c01188{bottom:426.273112pt;}
.y8c_c01188{bottom:426.631999pt;}
.y8d_c01188{bottom:427.534095pt;}
.y8e_c01188{bottom:428.563608pt;}
.y8f_c01188{bottom:429.327505pt;}
.y90_c01188{bottom:429.717869pt;}
.y7d_c01188{bottom:452.861833pt;}
.y7e_c01188{bottom:454.011840pt;}
.y7f_c01188{bottom:454.373880pt;}
.y80_c01188{bottom:455.537853pt;}
.y81_c01188{bottom:456.043800pt;}
.y82_c01188{bottom:456.783587pt;}
.y83_c01188{bottom:457.183253pt;}
.y84_c01188{bottom:457.822907pt;}
.y85_c01188{bottom:458.593640pt;}
.y86_c01188{bottom:459.005993pt;}
.y87_c01188{bottom:459.745700pt;}
.y70_c01188{bottom:484.542073pt;}
.y71_c01188{bottom:485.050447pt;}
.y72_c01188{bottom:485.416687pt;}
.y73_c01188{bottom:486.050233pt;}
.y74_c01188{bottom:487.079567pt;}
.y75_c01188{bottom:487.844113pt;}
.y76_c01188{bottom:488.106213pt;}
.y77_c01188{bottom:488.596153pt;}
.y78_c01188{bottom:490.262613pt;}
.y79_c01188{bottom:490.783433pt;}
.y7a_c01188{bottom:491.168507pt;}
.y7b_c01188{bottom:492.316027pt;}
.y7c_c01188{bottom:492.683907pt;}
.y67_c01188{bottom:515.267160pt;}
.y68_c01188{bottom:516.101587pt;}
.y69_c01188{bottom:517.620653pt;}
.y6a_c01188{bottom:517.928633pt;}
.y6b_c01188{bottom:519.915407pt;}
.y6c_c01188{bottom:522.089747pt;}
.y6d_c01188{bottom:522.404420pt;}
.y6e_c01188{bottom:523.424340pt;}
.y6f_c01188{bottom:524.097907pt;}
.y5a_c01188{bottom:546.229973pt;}
.y5b_c01188{bottom:547.596667pt;}
.y5c_c01188{bottom:547.985900pt;}
.y5d_c01188{bottom:548.774733pt;}
.y5e_c01188{bottom:549.962587pt;}
.y5f_c01188{bottom:551.177187pt;}
.y60_c01188{bottom:552.292313pt;}
.y61_c01188{bottom:553.475233pt;}
.y62_c01188{bottom:554.824307pt;}
.y63_c01188{bottom:556.220520pt;}
.y64_c01188{bottom:556.632727pt;}
.y65_c01188{bottom:557.410253pt;}
.y66_c01188{bottom:558.005827pt;}
.y4f_c01188{bottom:578.391287pt;}
.y50_c01188{bottom:579.733400pt;}
.y51_c01188{bottom:580.877447pt;}
.y52_c01188{bottom:581.369220pt;}
.y53_c01188{bottom:582.400053pt;}
.y54_c01188{bottom:582.721387pt;}
.y55_c01188{bottom:584.709620pt;}
.y56_c01188{bottom:585.223340pt;}
.y57_c01188{bottom:586.210660pt;}
.y58_c01188{bottom:586.883307pt;}
.y59_c01188{bottom:588.229673pt;}
.y41_c01188{bottom:607.677520pt;}
.y42_c01188{bottom:607.915880pt;}
.y43_c01188{bottom:608.747593pt;}
.y44_c01188{bottom:610.354920pt;}
.y45_c01188{bottom:610.975333pt;}
.y46_c01188{bottom:612.216000pt;}
.y47_c01188{bottom:613.037107pt;}
.y48_c01188{bottom:613.642260pt;}
.y49_c01188{bottom:614.271480pt;}
.y4a_c01188{bottom:614.660187pt;}
.y4b_c01188{bottom:615.724447pt;}
.y4c_c01188{bottom:617.342593pt;}
.y4d_c01188{bottom:618.391213pt;}
.y4e_c01188{bottom:618.960740pt;}
.y38_c01188{bottom:642.960880pt;}
.y39_c01188{bottom:644.691860pt;}
.y3a_c01188{bottom:645.244740pt;}
.y3b_c01188{bottom:645.764727pt;}
.y3c_c01188{bottom:647.907420pt;}
.y3d_c01188{bottom:648.409080pt;}
.y3e_c01188{bottom:649.671287pt;}
.y3f_c01188{bottom:651.245553pt;}
.y40_c01188{bottom:651.974467pt;}
.y30_c01188{bottom:674.642667pt;}
.y31_c01188{bottom:675.535627pt;}
.y32_c01188{bottom:676.120267pt;}
.y33_c01188{bottom:677.321567pt;}
.y34_c01188{bottom:678.321927pt;}
.y35_c01188{bottom:678.931387pt;}
.y36_c01188{bottom:680.399427pt;}
.y37_c01188{bottom:680.988867pt;}
.y2d_c01188{bottom:705.844000pt;}
.y2e_c01188{bottom:707.349928pt;}
.y2f_c01188{bottom:708.186827pt;}
.y29_c01188{bottom:737.524000pt;}
.y2a_c01188{bottom:738.051000pt;}
.y2b_c01188{bottom:739.543509pt;}
.y2c_c01188{bottom:740.201545pt;}
.y24_c01188{bottom:769.204000pt;}
.y25_c01188{bottom:769.661088pt;}
.y26_c01188{bottom:770.455072pt;}
.y27_c01188{bottom:770.771147pt;}
.y28_c01188{bottom:771.877301pt;}
.y1f_c01188{bottom:799.925333pt;}
.y20_c01188{bottom:800.534501pt;}
.y21_c01188{bottom:801.371281pt;}
.y22_c01188{bottom:803.019305pt;}
.y23_c01188{bottom:803.434069pt;}
.y1b_c01188{bottom:831.604000pt;}
.y1c_c01188{bottom:832.278736pt;}
.y1d_c01188{bottom:833.729080pt;}
.y1e_c01188{bottom:834.088744pt;}
.y18_c01188{bottom:861.846667pt;}
.y19_c01188{bottom:862.728339pt;}
.y1a_c01188{bottom:864.876272pt;}
.y12_c01188{bottom:893.525333pt;}
.y13_c01188{bottom:893.947653pt;}
.y14_c01188{bottom:894.524213pt;}
.y15_c01188{bottom:895.670613pt;}
.y16_c01188{bottom:896.675440pt;}
.y17_c01188{bottom:897.276373pt;}
.yc_c01188{bottom:924.958873pt;}
.yd_c01188{bottom:925.976575pt;}
.ye_c01188{bottom:926.542371pt;}
.yf_c01188{bottom:927.720772pt;}
.y10_c01188{bottom:928.746733pt;}
.y11_c01188{bottom:929.506980pt;}
.y7_c01188{bottom:956.165333pt;}
.y8_c01188{bottom:956.765709pt;}
.y9_c01188{bottom:957.794065pt;}
.ya_c01188{bottom:959.059777pt;}
.yb_c01188{bottom:960.687221pt;}
.y2_c01188{bottom:987.845333pt;}
.y3_c01188{bottom:988.494933pt;}
.y4_c01188{bottom:989.494337pt;}
.y5_c01188{bottom:990.746105pt;}
.y6_c01188{bottom:991.612789pt;}
.y1_c01188{bottom:1054.302667pt;}
.h14_c01188{height:16.000000pt;}
.hf_c01188{height:58.678399pt;}
.hb_c01188{height:64.007200pt;}
.h7_c01188{height:64.010367pt;}
.h8_c01188{height:64.014110pt;}
.he_c01188{height:69.339192pt;}
.hc_c01188{height:69.341133pt;}
.h9_c01188{height:69.342207pt;}
.ha_c01188{height:69.343351pt;}
.h13_c01188{height:69.345847pt;}
.h4_c01188{height:69.348620pt;}
.h11_c01188{height:74.667600pt;}
.h12_c01188{height:74.680143pt;}
.h5_c01188{height:74.681599pt;}
.h2_c01188{height:80.000000pt;}
.h3_c01188{height:80.017638pt;}
.h6_c01188{height:85.353982pt;}
.h10_c01188{height:90.684798pt;}
.hd_c01188{height:101.344733pt;}
.h1_c01188{height:1118.666667pt;}
.h0_c01188{height:1118.880000pt;}
.w0_c01188{width:803.733333pt;}
.w1_c01188{width:804.000000pt;}
.x0_c01188{left:0.000000pt;}
.x72_c01188{left:114.984000pt;}
.x3b_c01188{left:119.481833pt;}
.x80_c01188{left:125.601173pt;}
.x3c_c01188{left:130.838147pt;}
.x57_c01188{left:132.446593pt;}
.x5d_c01188{left:133.546280pt;}
.x8f_c01188{left:137.997333pt;}
.x73_c01188{left:164.822667pt;}
.x90_c01188{left:167.576000pt;}
.x3d_c01188{left:170.459920pt;}
.x5e_c01188{left:172.683460pt;}
.x86_c01188{left:175.188000pt;}
.x58_c01188{left:181.495780pt;}
.x74_c01188{left:184.834667pt;}
.x9b_c01188{left:198.140460pt;}
.x4d_c01188{left:199.899600pt;}
.x5f_c01188{left:200.833633pt;}
.xe_c01188{left:209.080743pt;}
.x75_c01188{left:212.933333pt;}
.x81_c01188{left:214.118933pt;}
.x91_c01188{left:215.770667pt;}
.x4e_c01188{left:219.358140pt;}
.x9_c01188{left:220.357333pt;}
.x13_c01188{left:221.289333pt;}
.x1b_c01188{left:222.940000pt;}
.x22_c01188{left:224.610667pt;}
.x9c_c01188{left:225.986627pt;}
.x33_c01188{left:228.001113pt;}
.x6d_c01188{left:231.301333pt;}
.x92_c01188{left:236.236000pt;}
.x4_c01188{left:238.346667pt;}
.x14_c01188{left:242.405333pt;}
.x82_c01188{left:243.675520pt;}
.x3e_c01188{left:247.030373pt;}
.xa_c01188{left:248.946667pt;}
.x1e_c01188{left:252.245333pt;}
.x23_c01188{left:253.178667pt;}
.x27_c01188{left:255.124000pt;}
.x4f_c01188{left:258.788513pt;}
.xf_c01188{left:259.956473pt;}
.x19_c01188{left:262.116000pt;}
.x87_c01188{left:263.244000pt;}
.x93_c01188{left:265.040000pt;}
.x5_c01188{left:269.280000pt;}
.x15_c01188{left:271.233333pt;}
.x76_c01188{left:272.470667pt;}
.x3f_c01188{left:276.566380pt;}
.x6e_c01188{left:280.397333pt;}
.x2c_c01188{left:284.597333pt;}
.x10_c01188{left:288.233061pt;}
.x1f_c01188{left:292.092000pt;}
.x88_c01188{left:292.994667pt;}
.x94_c01188{left:294.582667pt;}
.xb_c01188{left:297.916000pt;}
.x24_c01188{left:302.802667pt;}
.x9d_c01188{left:304.389684pt;}
.x1_c01188{left:305.280000pt;}
.x77_c01188{left:310.968000pt;}
.x2a_c01188{left:313.924000pt;}
.x6_c01188{left:316.870667pt;}
.x50_c01188{left:318.152053pt;}
.x25_c01188{left:322.557333pt;}
.x2d_c01188{left:323.573333pt;}
.x2_c01188{left:325.200000pt;}
.x16_c01188{left:328.553333pt;}
.x40_c01188{left:335.627727pt;}
.x68_c01188{left:339.079480pt;}
.x1c_c01188{left:341.000000pt;}
.x28_c01188{left:342.918667pt;}
.x11_c01188{left:347.142293pt;}
.x9e_c01188{left:353.650752pt;}
.x34_c01188{left:354.919413pt;}
.xc_c01188{left:358.188000pt;}
.x1a_c01188{left:359.749333pt;}
.x1d_c01188{left:360.981333pt;}
.x2b_c01188{left:363.153333pt;}
.x3_c01188{left:365.760000pt;}
.x47_c01188{left:366.663180pt;}
.x78_c01188{left:369.194667pt;}
.x20_c01188{left:370.569333pt;}
.x41_c01188{left:374.720207pt;}
.x7_c01188{left:376.478667pt;}
.x17_c01188{left:378.794667pt;}
.x29_c01188{left:381.626667pt;}
.x35_c01188{left:383.806113pt;}
.x48_c01188{left:385.595953pt;}
.x60_c01188{left:387.556567pt;}
.x21_c01188{left:390.320000pt;}
.x26_c01188{left:391.692000pt;}
.x12_c01188{left:398.411357pt;}
.x89_c01188{left:400.290667pt;}
.x2e_c01188{left:403.660000pt;}
.x59_c01188{left:405.877060pt;}
.x61_c01188{left:407.697167pt;}
.x18_c01188{left:408.841333pt;}
.x8_c01188{left:417.749333pt;}
.x83_c01188{left:420.264373pt;}
.x95_c01188{left:422.442667pt;}
.x42_c01188{left:433.450907pt;}
.x51_c01188{left:434.613980pt;}
.xd_c01188{left:435.685333pt;}
.x62_c01188{left:445.427640pt;}
.x84_c01188{left:448.807600pt;}
.x43_c01188{left:451.985247pt;}
.x9f_c01188{left:459.360000pt;}
.x69_c01188{left:465.576593pt;}
.x2f_c01188{left:470.350667pt;}
.x96_c01188{left:471.416000pt;}
.x79_c01188{left:477.652000pt;}
.x7a_c01188{left:487.782667pt;}
.x52_c01188{left:493.737540pt;}
.xa0_c01188{left:500.880000pt;}
.x36_c01188{left:502.824753pt;}
.xa1_c01188{left:508.080000pt;}
.x30_c01188{left:510.981333pt;}
.x6a_c01188{left:514.799407pt;}
.x8a_c01188{left:519.062667pt;}
.x7b_c01188{left:526.222667pt;}
.x37_c01188{left:530.667493pt;}
.x49_c01188{left:532.832887pt;}
.x5a_c01188{left:533.762553pt;}
.x97_c01188{left:549.253333pt;}
.x5b_c01188{left:552.251327pt;}
.x7c_c01188{left:555.458667pt;}
.x85_c01188{left:556.893760pt;}
.x53_c01188{left:561.181813pt;}
.xa3_c01188{left:569.750667pt;}
.x63_c01188{left:573.595480pt;}
.x8b_c01188{left:576.900000pt;}
.x44_c01188{left:579.689747pt;}
.x7d_c01188{left:586.186667pt;}
.xa2_c01188{left:588.240000pt;}
.x4a_c01188{left:590.919147pt;}
.x6f_c01188{left:594.450667pt;}
.x38_c01188{left:600.767000pt;}
.x6b_c01188{left:605.763460pt;}
.x8c_c01188{left:607.613333pt;}
.x31_c01188{left:608.850667pt;}
.x5c_c01188{left:612.244193pt;}
.x64_c01188{left:613.651347pt;}
.x45_c01188{left:629.593247pt;}
.x4b_c01188{left:630.516633pt;}
.x98_c01188{left:637.244000pt;}
.x65_c01188{left:643.234893pt;}
.x32_c01188{left:648.146667pt;}
.x54_c01188{left:651.603033pt;}
.x70_c01188{left:653.212000pt;}
.x46_c01188{left:656.714807pt;}
.x6c_c01188{left:662.634493pt;}
.x99_c01188{left:667.066667pt;}
.x71_c01188{left:683.240000pt;}
.x39_c01188{left:688.203060pt;}
.x55_c01188{left:690.457447pt;}
.x7e_c01188{left:693.844000pt;}
.x8d_c01188{left:706.189333pt;}
.x4c_c01188{left:709.694253pt;}
.x7f_c01188{left:713.802667pt;}
.x56_c01188{left:720.204540pt;}
.x9a_c01188{left:727.218667pt;}
.x3a_c01188{left:728.706573pt;}
.x66_c01188{left:731.472200pt;}
.x8e_c01188{left:735.544000pt;}
.x67_c01188{left:759.731707pt;}
.xa4_c01188{left:799.694667pt;}
}





/* 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_c01189 {
    display:none;
  }
  .loading-indicator_c01189.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01189 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_c01189 { 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_c01189" -> "#page-container .classname_c01189")
 */
.pf_c01189 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01189 { /* 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_c01189.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01189 { /* 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_c01189 { /* 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_c01189 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01189 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01189 {overflow:visible;}
  }
}
.c_c01189 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01189 { /* 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_c01189:after { /* webkit #35443 */
  content: '';
}
.t_c01189:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01189 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 */
}
.__c01189 { /* 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_c01189 { /* info for Javascript */
  display:none;
}
.l_c01189 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01189 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01189 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01189: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_c01189 {
    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_c01189.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01189.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_c01189 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01189{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01189;src:url('chunks/assets/font_bfe6362fd3009c591583128f.woff2')format("woff");}.ff1_c01189{font-family:ff1_c01189;line-height:1.000000;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;}
.m6_c01189{transform:matrix(0.018975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.018975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.018975,0.000000,0.000000,0.250000,0,0);}
.m4_c01189{transform:matrix(0.045000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.045000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.045000,0.000000,0.000000,0.250000,0,0);}
.m3_c01189{transform:matrix(0.134770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134770,0.000000,0.000000,0.250000,0,0);}
.m2_c01189{transform:matrix(0.138630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138630,0.000000,0.000000,0.250000,0,0);}
.m1_c01189{transform:matrix(0.148095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148095,0.000000,0.000000,0.250000,0,0);}
.ma_c01189{transform:matrix(0.148490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148490,0.000000,0.000000,0.250000,0,0);}
.m0_c01189{transform:matrix(0.169010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169010,0.000000,0.000000,0.250000,0,0);}
.m9_c01189{transform:matrix(0.186220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186220,0.000000,0.000000,0.250000,0,0);}
.mb_c01189{transform:matrix(0.265375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265375,0.000000,0.000000,0.250000,0,0);}
.m8_c01189{transform:matrix(0.328250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328250,0.000000,0.000000,0.250000,0,0);}
.m7_c01189{transform:matrix(0.472630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472630,0.000000,0.000000,0.250000,0,0);}
.m5_c01189{transform:matrix(0.562625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562625,0.000000,0.000000,0.250000,0,0);}
.v0_c01189{vertical-align:0.000000px;}
.ls0_c01189{letter-spacing:0.000000px;}
.sc__c01189{text-shadow:none;}
.sc0_c01189{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__c01189{-webkit-text-stroke:0px transparent;}
.sc0_c01189{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01189{word-spacing:0.000000px;}
.fc0_c01189{color:transparent;}
.fs3_c01189{font-size:18.000000px;}
.fs2_c01189{font-size:24.000000px;}
.fs1_c01189{font-size:30.000000px;}
.fs0_c01189{font-size:144.000000px;}
.y0_c01189{bottom:0.000000px;}
.y5_c01189{bottom:856.440000px;}
.y4_c01189{bottom:882.630000px;}
.y3_c01189{bottom:884.790000px;}
.y2_c01189{bottom:888.828000px;}
.y1_c01189{bottom:893.700000px;}
.h5_c01189{height:18.000000px;}
.h4_c01189{height:24.000000px;}
.h3_c01189{height:30.000000px;}
.h2_c01189{height:144.000000px;}
.h1_c01189{height:1258.500000px;}
.h0_c01189{height:1258.740000px;}
.w0_c01189{width:904.200000px;}
.w1_c01189{width:904.500000px;}
.x0_c01189{left:0.000000px;}
.x1_c01189{left:477.360000px;}
.x9_c01189{left:486.540000px;}
.x5_c01189{left:488.970000px;}
.x2_c01189{left:498.960000px;}
.xa_c01189{left:507.870000px;}
.x6_c01189{left:516.240000px;}
.x7_c01189{left:563.220000px;}
.x3_c01189{left:590.220000px;}
.x4_c01189{left:633.420000px;}
.x8_c01189{left:646.920000px;}
.xb_c01189{left:650.160000px;}
@media print{
.v0_c01189{vertical-align:0.000000pt;}
.ls0_c01189{letter-spacing:0.000000pt;}
.ws0_c01189{word-spacing:0.000000pt;}
.fs3_c01189{font-size:16.000000pt;}
.fs2_c01189{font-size:21.333333pt;}
.fs1_c01189{font-size:26.666667pt;}
.fs0_c01189{font-size:128.000000pt;}
.y0_c01189{bottom:0.000000pt;}
.y5_c01189{bottom:761.280000pt;}
.y4_c01189{bottom:784.560000pt;}
.y3_c01189{bottom:786.480000pt;}
.y2_c01189{bottom:790.069333pt;}
.y1_c01189{bottom:794.400000pt;}
.h5_c01189{height:16.000000pt;}
.h4_c01189{height:21.333333pt;}
.h3_c01189{height:26.666667pt;}
.h2_c01189{height:128.000000pt;}
.h1_c01189{height:1118.666667pt;}
.h0_c01189{height:1118.880000pt;}
.w0_c01189{width:803.733333pt;}
.w1_c01189{width:804.000000pt;}
.x0_c01189{left:0.000000pt;}
.x1_c01189{left:424.320000pt;}
.x9_c01189{left:432.480000pt;}
.x5_c01189{left:434.640000pt;}
.x2_c01189{left:443.520000pt;}
.xa_c01189{left:451.440000pt;}
.x6_c01189{left:458.880000pt;}
.x7_c01189{left:500.640000pt;}
.x3_c01189{left:524.640000pt;}
.x4_c01189{left:563.040000pt;}
.x8_c01189{left:575.040000pt;}
.xb_c01189{left:577.920000pt;}
}





/* 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_c01190 {
    display:none;
  }
  .loading-indicator_c01190.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01190 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_c01190 { 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_c01190" -> "#page-container .classname_c01190")
 */
.pf_c01190 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01190 { /* 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_c01190.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01190 { /* 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_c01190 { /* 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_c01190 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01190 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01190 {overflow:visible;}
  }
}
.c_c01190 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01190 { /* 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_c01190:after { /* webkit #35443 */
  content: '';
}
.t_c01190:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01190 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 */
}
.__c01190 { /* 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_c01190 { /* info for Javascript */
  display:none;
}
.l_c01190 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01190 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01190 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01190: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_c01190 {
    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_c01190.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01190.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_c01190 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01190{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01190;src:url('chunks/assets/font_53ec0c54e60da7c2d414b553.woff2')format("woff");}.ff1_c01190{font-family:ff1_c01190;line-height:1.000000;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;}
.m7_c01190{transform:matrix(0.101058,0.006784,-0.016746,0.249439,0,0);-ms-transform:matrix(0.101058,0.006784,-0.016746,0.249439,0,0);-webkit-transform:matrix(0.101058,0.006784,-0.016746,0.249439,0,0);}
.mb_c01190{transform:matrix(0.105847,0.007106,-0.016746,0.249439,0,0);-ms-transform:matrix(0.105847,0.007106,-0.016746,0.249439,0,0);-webkit-transform:matrix(0.105847,0.007106,-0.016746,0.249439,0,0);}
.m8c_c01190{transform:matrix(0.130400,0.007317,-0.014006,0.249607,0,0);-ms-transform:matrix(0.130400,0.007317,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.130400,0.007317,-0.014006,0.249607,0,0);}
.m99_c01190{transform:matrix(0.132482,0.007434,-0.014006,0.249607,0,0);-ms-transform:matrix(0.132482,0.007434,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.132482,0.007434,-0.014006,0.249607,0,0);}
.mb7_c01190{transform:matrix(0.151182,0.008483,-0.014006,0.249607,0,0);-ms-transform:matrix(0.151182,0.008483,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.151182,0.008483,-0.014006,0.249607,0,0);}
.m33_c01190{transform:matrix(0.155755,0.007796,-0.012497,0.249687,0,0);-ms-transform:matrix(0.155755,0.007796,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.155755,0.007796,-0.012497,0.249687,0,0);}
.m8a_c01190{transform:matrix(0.175611,0.008965,-0.012746,0.249675,0,0);-ms-transform:matrix(0.175611,0.008965,-0.012746,0.249675,0,0);-webkit-transform:matrix(0.175611,0.008965,-0.012746,0.249675,0,0);}
.m9a_c01190{transform:matrix(0.179178,0.010054,-0.014006,0.249607,0,0);-ms-transform:matrix(0.179178,0.010054,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.179178,0.010054,-0.014006,0.249607,0,0);}
.m8d_c01190{transform:matrix(0.182418,0.010236,-0.014006,0.249607,0,0);-ms-transform:matrix(0.182418,0.010236,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.182418,0.010236,-0.014006,0.249607,0,0);}
.m7c_c01190{transform:matrix(0.187605,0.009390,-0.012497,0.249687,0,0);-ms-transform:matrix(0.187605,0.009390,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.187605,0.009390,-0.012497,0.249687,0,0);}
.m88_c01190{transform:matrix(0.194746,0.009942,-0.012746,0.249675,0,0);-ms-transform:matrix(0.194746,0.009942,-0.012746,0.249675,0,0);-webkit-transform:matrix(0.194746,0.009942,-0.012746,0.249675,0,0);}
.m87_c01190{transform:matrix(0.196130,0.010013,-0.012746,0.249675,0,0);-ms-transform:matrix(0.196130,0.010013,-0.012746,0.249675,0,0);-webkit-transform:matrix(0.196130,0.010013,-0.012746,0.249675,0,0);}
.mb8_c01190{transform:matrix(0.196396,0.011020,-0.014006,0.249607,0,0);-ms-transform:matrix(0.196396,0.011020,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.196396,0.011020,-0.014006,0.249607,0,0);}
.ma6_c01190{transform:matrix(0.204559,0.010238,-0.012497,0.249687,0,0);-ms-transform:matrix(0.204559,0.010238,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.204559,0.010238,-0.012497,0.249687,0,0);}
.m73_c01190{transform:matrix(0.210521,0.010537,-0.012497,0.249687,0,0);-ms-transform:matrix(0.210521,0.010537,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.210521,0.010537,-0.012497,0.249687,0,0);}
.m89_c01190{transform:matrix(0.211125,0.010778,-0.012746,0.249675,0,0);-ms-transform:matrix(0.211125,0.010778,-0.012746,0.249675,0,0);-webkit-transform:matrix(0.211125,0.010778,-0.012746,0.249675,0,0);}
.m9c_c01190{transform:matrix(0.212531,0.011926,-0.014006,0.249607,0,0);-ms-transform:matrix(0.212531,0.011926,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.212531,0.011926,-0.014006,0.249607,0,0);}
.mae_c01190{transform:matrix(0.216193,0.008873,-0.010252,0.249790,0,0);-ms-transform:matrix(0.216193,0.008873,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.216193,0.008873,-0.010252,0.249790,0,0);}
.m7b_c01190{transform:matrix(0.217742,0.010898,-0.012497,0.249687,0,0);-ms-transform:matrix(0.217742,0.010898,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.217742,0.010898,-0.012497,0.249687,0,0);}
.m2e_c01190{transform:matrix(0.218287,0.012249,-0.014006,0.249607,0,0);-ms-transform:matrix(0.218287,0.012249,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.218287,0.012249,-0.014006,0.249607,0,0);}
.ma0_c01190{transform:matrix(0.221412,0.012424,-0.014006,0.249607,0,0);-ms-transform:matrix(0.221412,0.012424,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.221412,0.012424,-0.014006,0.249607,0,0);}
.m92_c01190{transform:matrix(0.222345,0.012476,-0.014006,0.249607,0,0);-ms-transform:matrix(0.222345,0.012476,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.222345,0.012476,-0.014006,0.249607,0,0);}
.m51_c01190{transform:matrix(0.223089,0.010049,-0.011250,0.249747,0,0);-ms-transform:matrix(0.223089,0.010049,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.223089,0.010049,-0.011250,0.249747,0,0);}
.m96_c01190{transform:matrix(0.225710,0.012665,-0.014006,0.249607,0,0);-ms-transform:matrix(0.225710,0.012665,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.225710,0.012665,-0.014006,0.249607,0,0);}
.m65_c01190{transform:matrix(0.226294,0.010873,-0.011998,0.249712,0,0);-ms-transform:matrix(0.226294,0.010873,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.226294,0.010873,-0.011998,0.249712,0,0);}
.mbd_c01190{transform:matrix(0.226599,0.012715,-0.014006,0.249607,0,0);-ms-transform:matrix(0.226599,0.012715,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.226599,0.012715,-0.014006,0.249607,0,0);}
.m93_c01190{transform:matrix(0.227777,0.012781,-0.014006,0.249607,0,0);-ms-transform:matrix(0.227777,0.012781,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.227777,0.012781,-0.014006,0.249607,0,0);}
.m75_c01190{transform:matrix(0.228309,0.011427,-0.012497,0.249687,0,0);-ms-transform:matrix(0.228309,0.011427,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.228309,0.011427,-0.012497,0.249687,0,0);}
.m3d_c01190{transform:matrix(0.229036,0.011005,-0.011998,0.249712,0,0);-ms-transform:matrix(0.229036,0.011005,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.229036,0.011005,-0.011998,0.249712,0,0);}
.m15_c01190{transform:matrix(0.229107,0.010549,-0.011499,0.249735,0,0);-ms-transform:matrix(0.229107,0.010549,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.229107,0.010549,-0.011499,0.249735,0,0);}
.m78_c01190{transform:matrix(0.229473,0.011485,-0.012497,0.249687,0,0);-ms-transform:matrix(0.229473,0.011485,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.229473,0.011485,-0.012497,0.249687,0,0);}
.m94_c01190{transform:matrix(0.231261,0.012977,-0.014006,0.249607,0,0);-ms-transform:matrix(0.231261,0.012977,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.231261,0.012977,-0.014006,0.249607,0,0);}
.ma4_c01190{transform:matrix(0.233488,0.011686,-0.012497,0.249687,0,0);-ms-transform:matrix(0.233488,0.011686,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.233488,0.011686,-0.012497,0.249687,0,0);}
.m7d_c01190{transform:matrix(0.233875,0.011940,-0.012746,0.249675,0,0);-ms-transform:matrix(0.233875,0.011940,-0.012746,0.249675,0,0);-webkit-transform:matrix(0.233875,0.011940,-0.012746,0.249675,0,0);}
.m27_c01190{transform:matrix(0.236614,0.009000,-0.009503,0.249819,0,0);-ms-transform:matrix(0.236614,0.009000,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.236614,0.009000,-0.009503,0.249819,0,0);}
.mf_c01190{transform:matrix(0.237977,0.011911,-0.012497,0.249687,0,0);-ms-transform:matrix(0.237977,0.011911,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.237977,0.011911,-0.012497,0.249687,0,0);}
.m9e_c01190{transform:matrix(0.237981,0.013354,-0.014006,0.249607,0,0);-ms-transform:matrix(0.237981,0.013354,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.237981,0.013354,-0.014006,0.249607,0,0);}
.m63_c01190{transform:matrix(0.239454,0.011505,-0.011998,0.249712,0,0);-ms-transform:matrix(0.239454,0.011505,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.239454,0.011505,-0.011998,0.249712,0,0);}
.m3_c01190{transform:matrix(0.240015,0.016113,-0.016746,0.249439,0,0);-ms-transform:matrix(0.240015,0.016113,-0.016746,0.249439,0,0);-webkit-transform:matrix(0.240015,0.016113,-0.016746,0.249439,0,0);}
.m59_c01190{transform:matrix(0.240266,0.011785,-0.012248,0.249700,0,0);-ms-transform:matrix(0.240266,0.011785,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.240266,0.011785,-0.012248,0.249700,0,0);}
.m16_c01190{transform:matrix(0.241489,0.011120,-0.011499,0.249735,0,0);-ms-transform:matrix(0.241489,0.011120,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.241489,0.011120,-0.011499,0.249735,0,0);}
.m67_c01190{transform:matrix(0.241771,0.011617,-0.011998,0.249712,0,0);-ms-transform:matrix(0.241771,0.011617,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.241771,0.011617,-0.011998,0.249712,0,0);}
.m8e_c01190{transform:matrix(0.241904,0.013574,-0.014006,0.249607,0,0);-ms-transform:matrix(0.241904,0.013574,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.241904,0.013574,-0.014006,0.249607,0,0);}
.m79_c01190{transform:matrix(0.242092,0.012117,-0.012497,0.249687,0,0);-ms-transform:matrix(0.242092,0.012117,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.242092,0.012117,-0.012497,0.249687,0,0);}
.ma7_c01190{transform:matrix(0.242127,0.012118,-0.012497,0.249687,0,0);-ms-transform:matrix(0.242127,0.012118,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.242127,0.012118,-0.012497,0.249687,0,0);}
.m82_c01190{transform:matrix(0.242534,0.012382,-0.012746,0.249675,0,0);-ms-transform:matrix(0.242534,0.012382,-0.012746,0.249675,0,0);-webkit-transform:matrix(0.242534,0.012382,-0.012746,0.249675,0,0);}
.m5_c01190{transform:matrix(0.243058,0.016318,-0.016746,0.249439,0,0);-ms-transform:matrix(0.243058,0.016318,-0.016746,0.249439,0,0);-webkit-transform:matrix(0.243058,0.016318,-0.016746,0.249439,0,0);}
.m8b_c01190{transform:matrix(0.243278,0.012420,-0.012746,0.249675,0,0);-ms-transform:matrix(0.243278,0.012420,-0.012746,0.249675,0,0);-webkit-transform:matrix(0.243278,0.012420,-0.012746,0.249675,0,0);}
.me_c01190{transform:matrix(0.247350,0.012380,-0.012497,0.249687,0,0);-ms-transform:matrix(0.247350,0.012380,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.247350,0.012380,-0.012497,0.249687,0,0);}
.m1a_c01190{transform:matrix(0.247473,0.011395,-0.011499,0.249735,0,0);-ms-transform:matrix(0.247473,0.011395,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.247473,0.011395,-0.011499,0.249735,0,0);}
.m77_c01190{transform:matrix(0.247800,0.012402,-0.012497,0.249687,0,0);-ms-transform:matrix(0.247800,0.012402,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.247800,0.012402,-0.012497,0.249687,0,0);}
.m47_c01190{transform:matrix(0.249374,0.011732,-0.011749,0.249724,0,0);-ms-transform:matrix(0.249374,0.011732,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.249374,0.011732,-0.011749,0.249724,0,0);}
.mb5_c01190{transform:matrix(0.249722,0.018285,-0.018256,0.249333,0,0);-ms-transform:matrix(0.249722,0.018285,-0.018256,0.249333,0,0);-webkit-transform:matrix(0.249722,0.018285,-0.018256,0.249333,0,0);}
.ma3_c01190{transform:matrix(0.250337,0.012529,-0.012497,0.249687,0,0);-ms-transform:matrix(0.250337,0.012529,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.250337,0.012529,-0.012497,0.249687,0,0);}
.ma_c01190{transform:matrix(0.250361,0.016808,-0.016746,0.249439,0,0);-ms-transform:matrix(0.250361,0.016808,-0.016746,0.249439,0,0);-webkit-transform:matrix(0.250361,0.016808,-0.016746,0.249439,0,0);}
.m85_c01190{transform:matrix(0.251777,0.012853,-0.012746,0.249675,0,0);-ms-transform:matrix(0.251777,0.012853,-0.012746,0.249675,0,0);-webkit-transform:matrix(0.251777,0.012853,-0.012746,0.249675,0,0);}
.m10_c01190{transform:matrix(0.251790,0.012602,-0.012497,0.249687,0,0);-ms-transform:matrix(0.251790,0.012602,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.251790,0.012602,-0.012497,0.249687,0,0);}
.m3f_c01190{transform:matrix(0.251814,0.012099,-0.011998,0.249712,0,0);-ms-transform:matrix(0.251814,0.012099,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.251814,0.012099,-0.011998,0.249712,0,0);}
.maa_c01190{transform:matrix(0.253495,0.012434,-0.012248,0.249700,0,0);-ms-transform:matrix(0.253495,0.012434,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.253495,0.012434,-0.012248,0.249700,0,0);}
.mba_c01190{transform:matrix(0.255768,0.014352,-0.014006,0.249607,0,0);-ms-transform:matrix(0.255768,0.014352,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.255768,0.014352,-0.014006,0.249607,0,0);}
.m90_c01190{transform:matrix(0.256706,0.014404,-0.014006,0.249607,0,0);-ms-transform:matrix(0.256706,0.014404,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.256706,0.014404,-0.014006,0.249607,0,0);}
.m91_c01190{transform:matrix(0.257390,0.014443,-0.014006,0.249607,0,0);-ms-transform:matrix(0.257390,0.014443,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.257390,0.014443,-0.014006,0.249607,0,0);}
.mac_c01190{transform:matrix(0.258005,0.012655,-0.012248,0.249700,0,0);-ms-transform:matrix(0.258005,0.012655,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.258005,0.012655,-0.012248,0.249700,0,0);}
.m50_c01190{transform:matrix(0.258758,0.011656,-0.011250,0.249747,0,0);-ms-transform:matrix(0.258758,0.011656,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.258758,0.011656,-0.011250,0.249747,0,0);}
.m4f_c01190{transform:matrix(0.258912,0.011663,-0.011250,0.249747,0,0);-ms-transform:matrix(0.258912,0.011663,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.258912,0.011663,-0.011250,0.249747,0,0);}
.m1b_c01190{transform:matrix(0.258916,0.011922,-0.011499,0.249735,0,0);-ms-transform:matrix(0.258916,0.011922,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.258916,0.011922,-0.011499,0.249735,0,0);}
.m9f_c01190{transform:matrix(0.259112,0.014539,-0.014006,0.249607,0,0);-ms-transform:matrix(0.259112,0.014539,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.259112,0.014539,-0.014006,0.249607,0,0);}
.m80_c01190{transform:matrix(0.259492,0.013247,-0.012746,0.249675,0,0);-ms-transform:matrix(0.259492,0.013247,-0.012746,0.249675,0,0);-webkit-transform:matrix(0.259492,0.013247,-0.012746,0.249675,0,0);}
.m76_c01190{transform:matrix(0.259565,0.012991,-0.012497,0.249687,0,0);-ms-transform:matrix(0.259565,0.012991,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.259565,0.012991,-0.012497,0.249687,0,0);}
.m86_c01190{transform:matrix(0.259917,0.013269,-0.012746,0.249675,0,0);-ms-transform:matrix(0.259917,0.013269,-0.012746,0.249675,0,0);-webkit-transform:matrix(0.259917,0.013269,-0.012746,0.249675,0,0);}
.m84_c01190{transform:matrix(0.260406,0.013294,-0.012746,0.249675,0,0);-ms-transform:matrix(0.260406,0.013294,-0.012746,0.249675,0,0);-webkit-transform:matrix(0.260406,0.013294,-0.012746,0.249675,0,0);}
.m18_c01190{transform:matrix(0.260559,0.011998,-0.011499,0.249735,0,0);-ms-transform:matrix(0.260559,0.011998,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.260559,0.011998,-0.011499,0.249735,0,0);}
.ma5_c01190{transform:matrix(0.260614,0.013044,-0.012497,0.249687,0,0);-ms-transform:matrix(0.260614,0.013044,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.260614,0.013044,-0.012497,0.249687,0,0);}
.mbb_c01190{transform:matrix(0.261309,0.014663,-0.014006,0.249607,0,0);-ms-transform:matrix(0.261309,0.014663,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.261309,0.014663,-0.014006,0.249607,0,0);}
.m3b_c01190{transform:matrix(0.261772,0.013102,-0.012497,0.249687,0,0);-ms-transform:matrix(0.261772,0.013102,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.261772,0.013102,-0.012497,0.249687,0,0);}
.m44_c01190{transform:matrix(0.261810,0.012317,-0.011749,0.249724,0,0);-ms-transform:matrix(0.261810,0.012317,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.261810,0.012317,-0.011749,0.249724,0,0);}
.m95_c01190{transform:matrix(0.262991,0.014757,-0.014006,0.249607,0,0);-ms-transform:matrix(0.262991,0.014757,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.262991,0.014757,-0.014006,0.249607,0,0);}
.m72_c01190{transform:matrix(0.263006,0.013163,-0.012497,0.249687,0,0);-ms-transform:matrix(0.263006,0.013163,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.263006,0.013163,-0.012497,0.249687,0,0);}
.m19_c01190{transform:matrix(0.263676,0.012141,-0.011499,0.249735,0,0);-ms-transform:matrix(0.263676,0.012141,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.263676,0.012141,-0.011499,0.249735,0,0);}
.mab_c01190{transform:matrix(0.263733,0.012936,-0.012248,0.249700,0,0);-ms-transform:matrix(0.263733,0.012936,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.263733,0.012936,-0.012248,0.249700,0,0);}
.m6a_c01190{transform:matrix(0.264112,0.013748,-0.012995,0.249662,0,0);-ms-transform:matrix(0.264112,0.013748,-0.012995,0.249662,0,0);-webkit-transform:matrix(0.264112,0.013748,-0.012995,0.249662,0,0);}
.mb4_c01190{transform:matrix(0.265270,0.019423,-0.018256,0.249333,0,0);-ms-transform:matrix(0.265270,0.019423,-0.018256,0.249333,0,0);-webkit-transform:matrix(0.265270,0.019423,-0.018256,0.249333,0,0);}
.m68_c01190{transform:matrix(0.265988,0.012780,-0.011998,0.249712,0,0);-ms-transform:matrix(0.265988,0.012780,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.265988,0.012780,-0.011998,0.249712,0,0);}
.m9b_c01190{transform:matrix(0.267265,0.014997,-0.014006,0.249607,0,0);-ms-transform:matrix(0.267265,0.014997,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.267265,0.014997,-0.014006,0.249607,0,0);}
.mc_c01190{transform:matrix(0.267715,0.013399,-0.012497,0.249687,0,0);-ms-transform:matrix(0.267715,0.013399,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.267715,0.013399,-0.012497,0.249687,0,0);}
.m5e_c01190{transform:matrix(0.268442,0.013167,-0.012248,0.249700,0,0);-ms-transform:matrix(0.268442,0.013167,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.268442,0.013167,-0.012248,0.249700,0,0);}
.ma2_c01190{transform:matrix(0.268583,0.015071,-0.014006,0.249607,0,0);-ms-transform:matrix(0.268583,0.015071,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.268583,0.015071,-0.014006,0.249607,0,0);}
.m74_c01190{transform:matrix(0.269453,0.013486,-0.012497,0.249687,0,0);-ms-transform:matrix(0.269453,0.013486,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.269453,0.013486,-0.012497,0.249687,0,0);}
.m26_c01190{transform:matrix(0.269535,0.010253,-0.009503,0.249819,0,0);-ms-transform:matrix(0.269535,0.010253,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.269535,0.010253,-0.009503,0.249819,0,0);}
.ma1_c01190{transform:matrix(0.270704,0.015190,-0.014006,0.249607,0,0);-ms-transform:matrix(0.270704,0.015190,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.270704,0.015190,-0.014006,0.249607,0,0);}
.mb3_c01190{transform:matrix(0.275847,0.020197,-0.018256,0.249333,0,0);-ms-transform:matrix(0.275847,0.020197,-0.018256,0.249333,0,0);-webkit-transform:matrix(0.275847,0.020197,-0.018256,0.249333,0,0);}
.m36_c01190{transform:matrix(0.276414,0.013835,-0.012497,0.249687,0,0);-ms-transform:matrix(0.276414,0.013835,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.276414,0.013835,-0.012497,0.249687,0,0);}
.m8f_c01190{transform:matrix(0.276415,0.015510,-0.014006,0.249607,0,0);-ms-transform:matrix(0.276415,0.015510,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.276415,0.015510,-0.014006,0.249607,0,0);}
.m52_c01190{transform:matrix(0.276654,0.012462,-0.011250,0.249747,0,0);-ms-transform:matrix(0.276654,0.012462,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.276654,0.012462,-0.011250,0.249747,0,0);}
.m45_c01190{transform:matrix(0.277643,0.013062,-0.011749,0.249724,0,0);-ms-transform:matrix(0.277643,0.013062,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.277643,0.013062,-0.011749,0.249724,0,0);}
.m7a_c01190{transform:matrix(0.279955,0.014012,-0.012497,0.249687,0,0);-ms-transform:matrix(0.279955,0.014012,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.279955,0.014012,-0.012497,0.249687,0,0);}
.m2b_c01190{transform:matrix(0.280877,0.012933,-0.011499,0.249735,0,0);-ms-transform:matrix(0.280877,0.012933,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.280877,0.012933,-0.011499,0.249735,0,0);}
.m42_c01190{transform:matrix(0.280896,0.013497,-0.011998,0.249712,0,0);-ms-transform:matrix(0.280896,0.013497,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.280896,0.013497,-0.011998,0.249712,0,0);}
.mad_c01190{transform:matrix(0.281347,0.013800,-0.012248,0.249700,0,0);-ms-transform:matrix(0.281347,0.013800,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.281347,0.013800,-0.012248,0.249700,0,0);}
.m53_c01190{transform:matrix(0.281769,0.012692,-0.011250,0.249747,0,0);-ms-transform:matrix(0.281769,0.012692,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.281769,0.012692,-0.011250,0.249747,0,0);}
.m81_c01190{transform:matrix(0.282168,0.014405,-0.012746,0.249675,0,0);-ms-transform:matrix(0.282168,0.014405,-0.012746,0.249675,0,0);-webkit-transform:matrix(0.282168,0.014405,-0.012746,0.249675,0,0);}
.m64_c01190{transform:matrix(0.282319,0.013565,-0.011998,0.249712,0,0);-ms-transform:matrix(0.282319,0.013565,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.282319,0.013565,-0.011998,0.249712,0,0);}
.m12_c01190{transform:matrix(0.282496,0.014139,-0.012497,0.249687,0,0);-ms-transform:matrix(0.282496,0.014139,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.282496,0.014139,-0.012497,0.249687,0,0);}
.m55_c01190{transform:matrix(0.282570,0.013860,-0.012248,0.249700,0,0);-ms-transform:matrix(0.282570,0.013860,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.282570,0.013860,-0.012248,0.249700,0,0);}
.m11_c01190{transform:matrix(0.283845,0.014206,-0.012497,0.249687,0,0);-ms-transform:matrix(0.283845,0.014206,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.283845,0.014206,-0.012497,0.249687,0,0);}
.m56_c01190{transform:matrix(0.285941,0.014025,-0.012248,0.249700,0,0);-ms-transform:matrix(0.285941,0.014025,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.285941,0.014025,-0.012248,0.249700,0,0);}
.m41_c01190{transform:matrix(0.286255,0.013754,-0.011998,0.249712,0,0);-ms-transform:matrix(0.286255,0.013754,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.286255,0.013754,-0.011998,0.249712,0,0);}
.m38_c01190{transform:matrix(0.286816,0.014355,-0.012497,0.249687,0,0);-ms-transform:matrix(0.286816,0.014355,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.286816,0.014355,-0.012497,0.249687,0,0);}
.m2c_c01190{transform:matrix(0.286871,0.013209,-0.011499,0.249735,0,0);-ms-transform:matrix(0.286871,0.013209,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.286871,0.013209,-0.011499,0.249735,0,0);}
.m5b_c01190{transform:matrix(0.286935,0.014074,-0.012248,0.249700,0,0);-ms-transform:matrix(0.286935,0.014074,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.286935,0.014074,-0.012248,0.249700,0,0);}
.m6c_c01190{transform:matrix(0.287436,0.014962,-0.012995,0.249662,0,0);-ms-transform:matrix(0.287436,0.014962,-0.012995,0.249662,0,0);-webkit-transform:matrix(0.287436,0.014962,-0.012995,0.249662,0,0);}
.m17_c01190{transform:matrix(0.287925,0.013258,-0.011499,0.249735,0,0);-ms-transform:matrix(0.287925,0.013258,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.287925,0.013258,-0.011499,0.249735,0,0);}
.m2_c01190{transform:matrix(0.289379,0.019427,-0.016746,0.249439,0,0);-ms-transform:matrix(0.289379,0.019427,-0.016746,0.249439,0,0);-webkit-transform:matrix(0.289379,0.019427,-0.016746,0.249439,0,0);}
.mc1_c01190{transform:matrix(0.289392,0.009849,-0.008504,0.249855,0,0);-ms-transform:matrix(0.289392,0.009849,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.289392,0.009849,-0.008504,0.249855,0,0);}
.m4b_c01190{transform:matrix(0.289500,0.013620,-0.011749,0.249724,0,0);-ms-transform:matrix(0.289500,0.013620,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.289500,0.013620,-0.011749,0.249724,0,0);}
.mbc_c01190{transform:matrix(0.289629,0.016252,-0.014006,0.249607,0,0);-ms-transform:matrix(0.289629,0.016252,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.289629,0.016252,-0.014006,0.249607,0,0);}
.m66_c01190{transform:matrix(0.289696,0.013919,-0.011998,0.249712,0,0);-ms-transform:matrix(0.289696,0.013919,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.289696,0.013919,-0.011998,0.249712,0,0);}
.mb9_c01190{transform:matrix(0.290373,0.016293,-0.014006,0.249607,0,0);-ms-transform:matrix(0.290373,0.016293,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.290373,0.016293,-0.014006,0.249607,0,0);}
.m25_c01190{transform:matrix(0.290385,0.011046,-0.009503,0.249819,0,0);-ms-transform:matrix(0.290385,0.011046,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.290385,0.011046,-0.009503,0.249819,0,0);}
.m1_c01190{transform:matrix(0.290426,0.019498,-0.016746,0.249439,0,0);-ms-transform:matrix(0.290426,0.019498,-0.016746,0.249439,0,0);-webkit-transform:matrix(0.290426,0.019498,-0.016746,0.249439,0,0);}
.m6_c01190{transform:matrix(0.291549,0.019573,-0.016746,0.249439,0,0);-ms-transform:matrix(0.291549,0.019573,-0.016746,0.249439,0,0);-webkit-transform:matrix(0.291549,0.019573,-0.016746,0.249439,0,0);}
.m40_c01190{transform:matrix(0.291818,0.014021,-0.011998,0.249712,0,0);-ms-transform:matrix(0.291818,0.014021,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.291818,0.014021,-0.011998,0.249712,0,0);}
.m4c_c01190{transform:matrix(0.292177,0.013746,-0.011749,0.249724,0,0);-ms-transform:matrix(0.292177,0.013746,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.292177,0.013746,-0.011749,0.249724,0,0);}
.m69_c01190{transform:matrix(0.292218,0.014040,-0.011998,0.249712,0,0);-ms-transform:matrix(0.292218,0.014040,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.292218,0.014040,-0.011998,0.249712,0,0);}
.mbe_c01190{transform:matrix(0.292450,0.016410,-0.014006,0.249607,0,0);-ms-transform:matrix(0.292450,0.016410,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.292450,0.016410,-0.014006,0.249607,0,0);}
.ma9_c01190{transform:matrix(0.292505,0.013469,-0.011499,0.249735,0,0);-ms-transform:matrix(0.292505,0.013469,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.292505,0.013469,-0.011499,0.249735,0,0);}
.m2f_c01190{transform:matrix(0.292645,0.016421,-0.014006,0.249607,0,0);-ms-transform:matrix(0.292645,0.016421,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.292645,0.016421,-0.014006,0.249607,0,0);}
.m7e_c01190{transform:matrix(0.293088,0.014962,-0.012746,0.249675,0,0);-ms-transform:matrix(0.293088,0.014962,-0.012746,0.249675,0,0);-webkit-transform:matrix(0.293088,0.014962,-0.012746,0.249675,0,0);}
.m3e_c01190{transform:matrix(0.293526,0.014103,-0.011998,0.249712,0,0);-ms-transform:matrix(0.293526,0.014103,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.293526,0.014103,-0.011998,0.249712,0,0);}
.m4_c01190{transform:matrix(0.294781,0.019790,-0.016746,0.249439,0,0);-ms-transform:matrix(0.294781,0.019790,-0.016746,0.249439,0,0);-webkit-transform:matrix(0.294781,0.019790,-0.016746,0.249439,0,0);}
.m5a_c01190{transform:matrix(0.295330,0.014486,-0.012248,0.249700,0,0);-ms-transform:matrix(0.295330,0.014486,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.295330,0.014486,-0.012248,0.249700,0,0);}
.m39_c01190{transform:matrix(0.296229,0.014826,-0.012497,0.249687,0,0);-ms-transform:matrix(0.296229,0.014826,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.296229,0.014826,-0.012497,0.249687,0,0);}
.m62_c01190{transform:matrix(0.296523,0.014247,-0.011998,0.249712,0,0);-ms-transform:matrix(0.296523,0.014247,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.296523,0.014247,-0.011998,0.249712,0,0);}
.mbf_c01190{transform:matrix(0.298181,0.016732,-0.014006,0.249607,0,0);-ms-transform:matrix(0.298181,0.016732,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.298181,0.016732,-0.014006,0.249607,0,0);}
.m1c_c01190{transform:matrix(0.298319,0.013736,-0.011499,0.249735,0,0);-ms-transform:matrix(0.298319,0.013736,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.298319,0.013736,-0.011499,0.249735,0,0);}
.m57_c01190{transform:matrix(0.298491,0.014641,-0.012248,0.249700,0,0);-ms-transform:matrix(0.298491,0.014641,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.298491,0.014641,-0.012248,0.249700,0,0);}
.m13_c01190{transform:matrix(0.298791,0.014955,-0.012497,0.249687,0,0);-ms-transform:matrix(0.298791,0.014955,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.298791,0.014955,-0.012497,0.249687,0,0);}
.m7f_c01190{transform:matrix(0.300029,0.015317,-0.012746,0.249675,0,0);-ms-transform:matrix(0.300029,0.015317,-0.012746,0.249675,0,0);-webkit-transform:matrix(0.300029,0.015317,-0.012746,0.249675,0,0);}
.mc2_c01190{transform:matrix(0.300446,0.010225,-0.008504,0.249855,0,0);-ms-transform:matrix(0.300446,0.010225,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.300446,0.010225,-0.008504,0.249855,0,0);}
.m28_c01190{transform:matrix(0.302671,0.011513,-0.009503,0.249819,0,0);-ms-transform:matrix(0.302671,0.011513,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.302671,0.011513,-0.009503,0.249819,0,0);}
.m58_c01190{transform:matrix(0.303031,0.014863,-0.012248,0.249700,0,0);-ms-transform:matrix(0.303031,0.014863,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.303031,0.014863,-0.012248,0.249700,0,0);}
.m9d_c01190{transform:matrix(0.303108,0.017008,-0.014006,0.249607,0,0);-ms-transform:matrix(0.303108,0.017008,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.303108,0.017008,-0.014006,0.249607,0,0);}
.m23_c01190{transform:matrix(0.303375,0.014577,-0.011998,0.249712,0,0);-ms-transform:matrix(0.303375,0.014577,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.303375,0.014577,-0.011998,0.249712,0,0);}
.m14_c01190{transform:matrix(0.304128,0.014004,-0.011499,0.249735,0,0);-ms-transform:matrix(0.304128,0.014004,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.304128,0.014004,-0.011499,0.249735,0,0);}
.m98_c01190{transform:matrix(0.304246,0.017072,-0.014006,0.249607,0,0);-ms-transform:matrix(0.304246,0.017072,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.304246,0.017072,-0.014006,0.249607,0,0);}
.m6b_c01190{transform:matrix(0.304293,0.015839,-0.012995,0.249662,0,0);-ms-transform:matrix(0.304293,0.015839,-0.012995,0.249662,0,0);-webkit-transform:matrix(0.304293,0.015839,-0.012995,0.249662,0,0);}
.md_c01190{transform:matrix(0.305303,0.015280,-0.012497,0.249687,0,0);-ms-transform:matrix(0.305303,0.015280,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.305303,0.015280,-0.012497,0.249687,0,0);}
.m4e_c01190{transform:matrix(0.306919,0.013825,-0.011250,0.249747,0,0);-ms-transform:matrix(0.306919,0.013825,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.306919,0.013825,-0.011250,0.249747,0,0);}
.m2d_c01190{transform:matrix(0.308079,0.014186,-0.011499,0.249735,0,0);-ms-transform:matrix(0.308079,0.014186,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.308079,0.014186,-0.011499,0.249735,0,0);}
.m83_c01190{transform:matrix(0.309702,0.015811,-0.012746,0.249675,0,0);-ms-transform:matrix(0.309702,0.015811,-0.012746,0.249675,0,0);-webkit-transform:matrix(0.309702,0.015811,-0.012746,0.249675,0,0);}
.maf_c01190{transform:matrix(0.312957,0.012844,-0.010252,0.249790,0,0);-ms-transform:matrix(0.312957,0.012844,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.312957,0.012844,-0.010252,0.249790,0,0);}
.m8_c01190{transform:matrix(0.313569,0.021051,-0.016746,0.249439,0,0);-ms-transform:matrix(0.313569,0.021051,-0.016746,0.249439,0,0);-webkit-transform:matrix(0.313569,0.021051,-0.016746,0.249439,0,0);}
.m46_c01190{transform:matrix(0.314307,0.014787,-0.011749,0.249724,0,0);-ms-transform:matrix(0.314307,0.014787,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.314307,0.014787,-0.011749,0.249724,0,0);}
.m43_c01190{transform:matrix(0.316035,0.014869,-0.011749,0.249724,0,0);-ms-transform:matrix(0.316035,0.014869,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.316035,0.014869,-0.011749,0.249724,0,0);}
.m34_c01190{transform:matrix(0.317318,0.015882,-0.012497,0.249687,0,0);-ms-transform:matrix(0.317318,0.015882,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.317318,0.015882,-0.012497,0.249687,0,0);}
.m37_c01190{transform:matrix(0.319195,0.015976,-0.012497,0.249687,0,0);-ms-transform:matrix(0.319195,0.015976,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.319195,0.015976,-0.012497,0.249687,0,0);}
.m3a_c01190{transform:matrix(0.319315,0.015982,-0.012497,0.249687,0,0);-ms-transform:matrix(0.319315,0.015982,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.319315,0.015982,-0.012497,0.249687,0,0);}
.m5d_c01190{transform:matrix(0.319666,0.015679,-0.012248,0.249700,0,0);-ms-transform:matrix(0.319666,0.015679,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.319666,0.015679,-0.012248,0.249700,0,0);}
.m4a_c01190{transform:matrix(0.320211,0.015065,-0.011749,0.249724,0,0);-ms-transform:matrix(0.320211,0.015065,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.320211,0.015065,-0.011749,0.249724,0,0);}
.m31_c01190{transform:matrix(0.322193,0.015481,-0.011998,0.249712,0,0);-ms-transform:matrix(0.322193,0.015481,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.322193,0.015481,-0.011998,0.249712,0,0);}
.m2a_c01190{transform:matrix(0.322473,0.014849,-0.011499,0.249735,0,0);-ms-transform:matrix(0.322473,0.014849,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.322473,0.014849,-0.011499,0.249735,0,0);}
.m5c_c01190{transform:matrix(0.322662,0.015826,-0.012248,0.249700,0,0);-ms-transform:matrix(0.322662,0.015826,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.322662,0.015826,-0.012248,0.249700,0,0);}
.m49_c01190{transform:matrix(0.323822,0.015235,-0.011749,0.249724,0,0);-ms-transform:matrix(0.323822,0.015235,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.323822,0.015235,-0.011749,0.249724,0,0);}
.m4d_c01190{transform:matrix(0.324671,0.015275,-0.011749,0.249724,0,0);-ms-transform:matrix(0.324671,0.015275,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.324671,0.015275,-0.011749,0.249724,0,0);}
.m5f_c01190{transform:matrix(0.324989,0.015940,-0.012248,0.249700,0,0);-ms-transform:matrix(0.324989,0.015940,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.324989,0.015940,-0.012248,0.249700,0,0);}
.m60_c01190{transform:matrix(0.325060,0.015618,-0.011998,0.249712,0,0);-ms-transform:matrix(0.325060,0.015618,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.325060,0.015618,-0.011998,0.249712,0,0);}
.m32_c01190{transform:matrix(0.326618,0.015693,-0.011998,0.249712,0,0);-ms-transform:matrix(0.326618,0.015693,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.326618,0.015693,-0.011998,0.249712,0,0);}
.m30_c01190{transform:matrix(0.328378,0.018426,-0.014006,0.249607,0,0);-ms-transform:matrix(0.328378,0.018426,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.328378,0.018426,-0.014006,0.249607,0,0);}
.m35_c01190{transform:matrix(0.328739,0.016453,-0.012497,0.249687,0,0);-ms-transform:matrix(0.328739,0.016453,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.328739,0.016453,-0.012497,0.249687,0,0);}
.m3c_c01190{transform:matrix(0.329143,0.016474,-0.012497,0.249687,0,0);-ms-transform:matrix(0.329143,0.016474,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.329143,0.016474,-0.012497,0.249687,0,0);}
.m61_c01190{transform:matrix(0.329295,0.015822,-0.011998,0.249712,0,0);-ms-transform:matrix(0.329295,0.015822,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.329295,0.015822,-0.011998,0.249712,0,0);}
.mc0_c01190{transform:matrix(0.335986,0.018853,-0.014006,0.249607,0,0);-ms-transform:matrix(0.335986,0.018853,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.335986,0.018853,-0.014006,0.249607,0,0);}
.m9_c01190{transform:matrix(0.345168,0.023173,-0.016746,0.249439,0,0);-ms-transform:matrix(0.345168,0.023173,-0.016746,0.249439,0,0);-webkit-transform:matrix(0.345168,0.023173,-0.016746,0.249439,0,0);}
.m48_c01190{transform:matrix(0.361076,0.016988,-0.011749,0.249724,0,0);-ms-transform:matrix(0.361076,0.016988,-0.011749,0.249724,0,0);-webkit-transform:matrix(0.361076,0.016988,-0.011749,0.249724,0,0);}
.mb0_c01190{transform:matrix(0.368005,0.015103,-0.010252,0.249790,0,0);-ms-transform:matrix(0.368005,0.015103,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.368005,0.015103,-0.010252,0.249790,0,0);}
.mb6_c01190{transform:matrix(0.370259,0.027110,-0.018256,0.249333,0,0);-ms-transform:matrix(0.370259,0.027110,-0.018256,0.249333,0,0);-webkit-transform:matrix(0.370259,0.027110,-0.018256,0.249333,0,0);}
.mb1_c01190{transform:matrix(0.397121,0.016298,-0.010252,0.249790,0,0);-ms-transform:matrix(0.397121,0.016298,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.397121,0.016298,-0.010252,0.249790,0,0);}
.m24_c01190{transform:matrix(0.402650,0.019347,-0.011998,0.249712,0,0);-ms-transform:matrix(0.402650,0.019347,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.402650,0.019347,-0.011998,0.249712,0,0);}
.ma8_c01190{transform:matrix(0.403168,0.018564,-0.011499,0.249735,0,0);-ms-transform:matrix(0.403168,0.018564,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.403168,0.018564,-0.011499,0.249735,0,0);}
.m20_c01190{transform:matrix(0.422982,0.020323,-0.011998,0.249712,0,0);-ms-transform:matrix(0.422982,0.020323,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.422982,0.020323,-0.011998,0.249712,0,0);}
.m97_c01190{transform:matrix(0.480909,0.026985,-0.014006,0.249607,0,0);-ms-transform:matrix(0.480909,0.026985,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.480909,0.026985,-0.014006,0.249607,0,0);}
.m29_c01190{transform:matrix(0.490061,0.022565,-0.011499,0.249735,0,0);-ms-transform:matrix(0.490061,0.022565,-0.011499,0.249735,0,0);-webkit-transform:matrix(0.490061,0.022565,-0.011499,0.249735,0,0);}
.m0_c01190{transform:matrix(0.513679,0.034485,-0.016746,0.249439,0,0);-ms-transform:matrix(0.513679,0.034485,-0.016746,0.249439,0,0);-webkit-transform:matrix(0.513679,0.034485,-0.016746,0.249439,0,0);}
.m54_c01190{transform:matrix(0.659103,0.032328,-0.012248,0.249700,0,0);-ms-transform:matrix(0.659103,0.032328,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.659103,0.032328,-0.012248,0.249700,0,0);}
.m70_c01190{transform:matrix(0.775770,0.040380,-0.012995,0.249662,0,0);-ms-transform:matrix(0.775770,0.040380,-0.012995,0.249662,0,0);-webkit-transform:matrix(0.775770,0.040380,-0.012995,0.249662,0,0);}
.m6e_c01190{transform:matrix(0.779874,0.040594,-0.012995,0.249662,0,0);-ms-transform:matrix(0.779874,0.040594,-0.012995,0.249662,0,0);-webkit-transform:matrix(0.779874,0.040594,-0.012995,0.249662,0,0);}
.m71_c01190{transform:matrix(0.804546,0.041878,-0.012995,0.249662,0,0);-ms-transform:matrix(0.804546,0.041878,-0.012995,0.249662,0,0);-webkit-transform:matrix(0.804546,0.041878,-0.012995,0.249662,0,0);}
.m6f_c01190{transform:matrix(0.905679,0.047142,-0.012995,0.249662,0,0);-ms-transform:matrix(0.905679,0.047142,-0.012995,0.249662,0,0);-webkit-transform:matrix(0.905679,0.047142,-0.012995,0.249662,0,0);}
.m22_c01190{transform:matrix(0.908527,0.043653,-0.011998,0.249712,0,0);-ms-transform:matrix(0.908527,0.043653,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.908527,0.043653,-0.011998,0.249712,0,0);}
.m1f_c01190{transform:matrix(1.148500,0.055183,-0.011998,0.249712,0,0);-ms-transform:matrix(1.148500,0.055183,-0.011998,0.249712,0,0);-webkit-transform:matrix(1.148500,0.055183,-0.011998,0.249712,0,0);}
.m1e_c01190{transform:matrix(1.246362,0.059885,-0.011998,0.249712,0,0);-ms-transform:matrix(1.246362,0.059885,-0.011998,0.249712,0,0);-webkit-transform:matrix(1.246362,0.059885,-0.011998,0.249712,0,0);}
.mc3_c01190{transform:matrix(1.711534,0.058250,-0.008504,0.249855,0,0);-ms-transform:matrix(1.711534,0.058250,-0.008504,0.249855,0,0);-webkit-transform:matrix(1.711534,0.058250,-0.008504,0.249855,0,0);}
.mb2_c01190{transform:matrix(3.503396,0.143783,-0.010252,0.249790,0,0);-ms-transform:matrix(3.503396,0.143783,-0.010252,0.249790,0,0);-webkit-transform:matrix(3.503396,0.143783,-0.010252,0.249790,0,0);}
.m21_c01190{transform:matrix(3.719639,0.178721,-0.011998,0.249712,0,0);-ms-transform:matrix(3.719639,0.178721,-0.011998,0.249712,0,0);-webkit-transform:matrix(3.719639,0.178721,-0.011998,0.249712,0,0);}
.m1d_c01190{transform:matrix(4.173915,0.200548,-0.011998,0.249712,0,0);-ms-transform:matrix(4.173915,0.200548,-0.011998,0.249712,0,0);-webkit-transform:matrix(4.173915,0.200548,-0.011998,0.249712,0,0);}
.m6d_c01190{transform:matrix(6.975217,0.363074,-0.012995,0.249662,0,0);-ms-transform:matrix(6.975217,0.363074,-0.012995,0.249662,0,0);-webkit-transform:matrix(6.975217,0.363074,-0.012995,0.249662,0,0);}
.v0_c01190{vertical-align:0.000000px;}
.ls0_c01190{letter-spacing:0.000000px;}
.sc__c01190{text-shadow:none;}
.sc0_c01190{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__c01190{-webkit-text-stroke:0px transparent;}
.sc0_c01190{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01190{word-spacing:0.000000px;}
.fc0_c01190{color:transparent;}
.fs4_c01190{font-size:18.002745px;}
.fs1a_c01190{font-size:23.996184px;}
.fs10_c01190{font-size:30.010573px;}
.fs17_c01190{font-size:54.003159px;}
.fs7_c01190{font-size:59.974194px;}
.fs1c_c01190{font-size:59.974705px;}
.fs19_c01190{font-size:59.990459px;}
.fs6_c01190{font-size:60.003510px;}
.fsb_c01190{font-size:60.006300px;}
.fs8_c01190{font-size:60.009149px;}
.fse_c01190{font-size:60.012059px;}
.fs9_c01190{font-size:60.015028px;}
.fs15_c01190{font-size:65.971614px;}
.fs1b_c01190{font-size:65.978150px;}
.fs5_c01190{font-size:65.981682px;}
.fs3_c01190{font-size:66.003861px;}
.fsa_c01190{font-size:66.010064px;}
.fsd_c01190{font-size:66.013265px;}
.fs1_c01190{font-size:66.016267px;}
.fs2_c01190{font-size:66.016531px;}
.fs12_c01190{font-size:66.019863px;}
.fsf_c01190{font-size:66.023261px;}
.fs14_c01190{font-size:71.969033px;}
.fsc_c01190{font-size:72.000936px;}
.fs18_c01190{font-size:72.014471px;}
.fs0_c01190{font-size:72.017746px;}
.fs11_c01190{font-size:72.018034px;}
.fs16_c01190{font-size:78.019537px;}
.fs13_c01190{font-size:90.027086px;}
.y0_c01190{bottom:0.000000px;}
.yc5_c01190{bottom:143.106091px;}
.yc4_c01190{bottom:146.524458px;}
.yc3_c01190{bottom:147.975000px;}
.yc2_c01190{bottom:157.188900px;}
.yc1_c01190{bottom:162.304248px;}
.yc0_c01190{bottom:167.270244px;}
.ybf_c01190{bottom:169.008876px;}
.ybe_c01190{bottom:173.960592px;}
.ybd_c01190{bottom:176.464212px;}
.ybc_c01190{bottom:178.890468px;}
.ybb_c01190{bottom:183.815388px;}
.yba_c01190{bottom:186.119088px;}
.yb9_c01190{bottom:187.410000px;}
.yb3_c01190{bottom:213.563612px;}
.yb4_c01190{bottom:215.516288px;}
.yb2_c01190{bottom:216.671391px;}
.yb1_c01190{bottom:219.822159px;}
.yb0_c01190{bottom:221.946000px;}
.yaf_c01190{bottom:246.042186px;}
.yae_c01190{bottom:248.235500px;}
.yad_c01190{bottom:251.949308px;}
.yac_c01190{bottom:255.180000px;}
.yb8_c01190{bottom:258.991588px;}
.yb7_c01190{bottom:261.286271px;}
.yb6_c01190{bottom:265.331857px;}
.yb5_c01190{bottom:268.399500px;}
.yab_c01190{bottom:290.606100px;}
.yaa_c01190{bottom:293.511000px;}
.ya9_c01190{bottom:310.472850px;}
.ya8_c01190{bottom:312.175125px;}
.ya7_c01190{bottom:317.715375px;}
.ya6_c01190{bottom:320.988375px;}
.ya5_c01190{bottom:325.918500px;}
.ya4_c01190{bottom:333.648228px;}
.ya3_c01190{bottom:339.853056px;}
.ya2_c01190{bottom:342.311232px;}
.ya1_c01190{bottom:346.645716px;}
.ya0_c01190{bottom:349.148412px;}
.y9f_c01190{bottom:350.995236px;}
.y9e_c01190{bottom:353.424936px;}
.y9d_c01190{bottom:355.312080px;}
.y9c_c01190{bottom:361.394352px;}
.y9b_c01190{bottom:363.761808px;}
.y9a_c01190{bottom:365.067000px;}
.y99_c01190{bottom:395.858229px;}
.y98_c01190{bottom:401.100456px;}
.y97_c01190{bottom:402.964920px;}
.y96_c01190{bottom:406.786920px;}
.y95_c01190{bottom:408.618624px;}
.y94_c01190{bottom:411.000444px;}
.y93_c01190{bottom:414.770448px;}
.y92_c01190{bottom:419.054532px;}
.y91_c01190{bottom:422.198064px;}
.y90_c01190{bottom:427.802292px;}
.y8f_c01190{bottom:431.433864px;}
.y8e_c01190{bottom:433.738404px;}
.y8d_c01190{bottom:435.000000px;}
.y8c_c01190{bottom:457.655703px;}
.y8b_c01190{bottom:459.258693px;}
.y8a_c01190{bottom:462.586753px;}
.y89_c01190{bottom:464.678452px;}
.y88_c01190{bottom:466.849621px;}
.y87_c01190{bottom:473.207212px;}
.y86_c01190{bottom:474.957915px;}
.y85_c01190{bottom:477.216807px;}
.y84_c01190{bottom:483.529587px;}
.y83_c01190{bottom:485.155135px;}
.y82_c01190{bottom:488.023273px;}
.y81_c01190{bottom:489.019456px;}
.y80_c01190{bottom:495.211672px;}
.y7f_c01190{bottom:500.293491px;}
.y7e_c01190{bottom:501.954000px;}
.y7d_c01190{bottom:508.874625px;}
.y7c_c01190{bottom:511.106775px;}
.y7b_c01190{bottom:516.177825px;}
.y7a_c01190{bottom:518.825925px;}
.y79_c01190{bottom:521.057400px;}
.y78_c01190{bottom:524.447775px;}
.y77_c01190{bottom:528.301950px;}
.y76_c01190{bottom:529.373850px;}
.y75_c01190{bottom:533.290725px;}
.y74_c01190{bottom:534.870300px;}
.y73_c01190{bottom:539.760000px;}
.y72_c01190{bottom:553.794267px;}
.y71_c01190{bottom:554.657269px;}
.y70_c01190{bottom:556.302109px;}
.y6f_c01190{bottom:557.435032px;}
.y6d_c01190{bottom:561.553362px;}
.y6e_c01190{bottom:568.355863px;}
.y6c_c01190{bottom:568.370328px;}
.y6b_c01190{bottom:574.054500px;}
.y6a_c01190{bottom:583.066236px;}
.y69_c01190{bottom:585.197292px;}
.y68_c01190{bottom:586.795116px;}
.y67_c01190{bottom:591.049164px;}
.y66_c01190{bottom:594.211476px;}
.y65_c01190{bottom:598.385460px;}
.y64_c01190{bottom:600.562092px;}
.y63_c01190{bottom:604.883388px;}
.y62_c01190{bottom:608.555532px;}
.y61_c01190{bottom:611.575500px;}
.y60_c01190{bottom:633.504889px;}
.y5f_c01190{bottom:635.151877px;}
.y5e_c01190{bottom:638.964690px;}
.y5d_c01190{bottom:643.702500px;}
.y5c_c01190{bottom:652.284169px;}
.y5b_c01190{bottom:656.240748px;}
.y5a_c01190{bottom:657.830994px;}
.y59_c01190{bottom:663.751933px;}
.y58_c01190{bottom:669.116625px;}
.y57_c01190{bottom:674.481316px;}
.y56_c01190{bottom:677.871871px;}
.y55_c01190{bottom:680.968500px;}
.y54_c01190{bottom:698.514353px;}
.y53_c01190{bottom:704.379495px;}
.y52_c01190{bottom:706.458900px;}
.y51_c01190{bottom:708.954240px;}
.y50_c01190{bottom:712.442708px;}
.y4f_c01190{bottom:716.335500px;}
.y4e_c01190{bottom:733.853152px;}
.y4d_c01190{bottom:735.987470px;}
.y4c_c01190{bottom:738.563116px;}
.y4b_c01190{bottom:742.735729px;}
.y4a_c01190{bottom:748.363744px;}
.y49_c01190{bottom:751.435500px;}
.y43_c01190{bottom:767.616096px;}
.y42_c01190{bottom:771.367152px;}
.y41_c01190{bottom:776.658720px;}
.y40_c01190{bottom:778.254672px;}
.y3f_c01190{bottom:782.458824px;}
.y3e_c01190{bottom:784.101000px;}
.y3d_c01190{bottom:795.242475px;}
.y3c_c01190{bottom:796.879350px;}
.y3b_c01190{bottom:801.287025px;}
.y3a_c01190{bottom:804.562725px;}
.y39_c01190{bottom:806.841375px;}
.y38_c01190{bottom:811.769475px;}
.y37_c01190{bottom:813.982725px;}
.y36_c01190{bottom:818.989725px;}
.y35_c01190{bottom:821.498250px;}
.y34_c01190{bottom:822.178500px;}
.y33_c01190{bottom:837.672612px;}
.y32_c01190{bottom:841.888500px;}
.y48_c01190{bottom:843.418890px;}
.y47_c01190{bottom:847.104489px;}
.y46_c01190{bottom:848.643081px;}
.y45_c01190{bottom:850.204585px;}
.y44_c01190{bottom:854.305500px;}
.y31_c01190{bottom:866.994780px;}
.y30_c01190{bottom:869.494956px;}
.y2f_c01190{bottom:871.590000px;}
.y2e_c01190{bottom:879.745152px;}
.y2d_c01190{bottom:881.834058px;}
.y2c_c01190{bottom:884.338551px;}
.y2b_c01190{bottom:889.356783px;}
.y2a_c01190{bottom:892.378500px;}
.y29_c01190{bottom:920.412426px;}
.y28_c01190{bottom:921.615069px;}
.y27_c01190{bottom:924.059856px;}
.y26_c01190{bottom:927.468000px;}
.y25_c01190{bottom:965.857975px;}
.y24_c01190{bottom:966.317934px;}
.y23_c01190{bottom:967.986354px;}
.y22_c01190{bottom:971.251743px;}
.y21_c01190{bottom:973.650594px;}
.y1f_c01190{bottom:974.119224px;}
.y20_c01190{bottom:975.783567px;}
.y1e_c01190{bottom:979.293000px;}
.y1d_c01190{bottom:1027.424988px;}
.y1c_c01190{bottom:1029.503199px;}
.y1b_c01190{bottom:1031.484879px;}
.y1a_c01190{bottom:1034.063961px;}
.y19_c01190{bottom:1036.600125px;}
.y18_c01190{bottom:1040.667468px;}
.y17_c01190{bottom:1042.650873px;}
.y16_c01190{bottom:1044.228834px;}
.y15_c01190{bottom:1050.322500px;}
.y14_c01190{bottom:1059.414975px;}
.y13_c01190{bottom:1062.807975px;}
.y12_c01190{bottom:1067.733375px;}
.y11_c01190{bottom:1069.472025px;}
.y10_c01190{bottom:1071.133800px;}
.yf_c01190{bottom:1073.301900px;}
.ye_c01190{bottom:1079.947725px;}
.yd_c01190{bottom:1082.190000px;}
.yc_c01190{bottom:1127.191899px;}
.yb_c01190{bottom:1128.943853px;}
.ya_c01190{bottom:1131.304356px;}
.y9_c01190{bottom:1173.107117px;}
.y8_c01190{bottom:1174.070152px;}
.y7_c01190{bottom:1177.486542px;}
.y6_c01190{bottom:1178.511654px;}
.y5_c01190{bottom:1182.408366px;}
.y4_c01190{bottom:1183.974136px;}
.y3_c01190{bottom:1188.285959px;}
.y2_c01190{bottom:1191.550818px;}
.y1_c01190{bottom:1237.464000px;}
.h6_c01190{height:18.002745px;}
.h1c_c01190{height:23.996184px;}
.h12_c01190{height:30.010573px;}
.h19_c01190{height:54.003159px;}
.h9_c01190{height:59.974194px;}
.h1e_c01190{height:59.974705px;}
.h1b_c01190{height:59.990459px;}
.h8_c01190{height:60.003510px;}
.hd_c01190{height:60.006300px;}
.ha_c01190{height:60.009149px;}
.h10_c01190{height:60.012059px;}
.hb_c01190{height:60.015028px;}
.h17_c01190{height:65.971614px;}
.h1d_c01190{height:65.978150px;}
.h7_c01190{height:65.981682px;}
.h5_c01190{height:66.003861px;}
.hc_c01190{height:66.010064px;}
.hf_c01190{height:66.013265px;}
.h3_c01190{height:66.016267px;}
.h4_c01190{height:66.016531px;}
.h14_c01190{height:66.019863px;}
.h11_c01190{height:66.023261px;}
.h16_c01190{height:71.969033px;}
.he_c01190{height:72.000936px;}
.h1a_c01190{height:72.014471px;}
.h2_c01190{height:72.017746px;}
.h13_c01190{height:72.018034px;}
.h18_c01190{height:78.019537px;}
.h15_c01190{height:90.027086px;}
.h1_c01190{height:1258.500000px;}
.h0_c01190{height:1258.740000px;}
.w0_c01190{width:904.200000px;}
.w1_c01190{width:904.500000px;}
.x0_c01190{left:0.000000px;}
.x46_c01190{left:164.400000px;}
.x8b_c01190{left:165.792000px;}
.x82_c01190{left:170.181000px;}
.x24_c01190{left:173.388000px;}
.x71_c01190{left:176.307000px;}
.x15_c01190{left:178.797000px;}
.x5f_c01190{left:180.024000px;}
.x55_c01190{left:183.597000px;}
.x4c_c01190{left:186.259500px;}
.x41_c01190{left:189.523500px;}
.x30_c01190{left:192.471000px;}
.x28_c01190{left:195.682500px;}
.x72_c01190{left:198.790443px;}
.x31_c01190{left:206.062395px;}
.x94_c01190{left:226.436029px;}
.x87_c01190{left:228.030646px;}
.x8c_c01190{left:229.853121px;}
.x85_c01190{left:230.897199px;}
.x83_c01190{left:233.267850px;}
.x80_c01190{left:235.414500px;}
.x7a_c01190{left:238.335948px;}
.x2_c01190{left:239.926021px;}
.x5c_c01190{left:244.186623px;}
.x56_c01190{left:246.450084px;}
.x4d_c01190{left:249.392803px;}
.x47_c01190{left:250.819993px;}
.x42_c01190{left:254.814643px;}
.x32_c01190{left:256.182724px;}
.x3d_c01190{left:258.937500px;}
.x29_c01190{left:261.306311px;}
.x25_c01190{left:262.986312px;}
.x38_c01190{left:265.240500px;}
.x93_c01190{left:270.888837px;}
.x67_c01190{left:276.409941px;}
.x60_c01190{left:277.720206px;}
.x6f_c01190{left:284.778065px;}
.xd_c01190{left:289.914000px;}
.x84_c01190{left:298.255568px;}
.x39_c01190{left:299.418288px;}
.x73_c01190{left:304.580439px;}
.x3_c01190{left:306.387491px;}
.x86_c01190{left:307.668351px;}
.x61_c01190{left:309.280115px;}
.x16_c01190{left:311.135529px;}
.x4e_c01190{left:318.518608px;}
.x57_c01190{left:322.876581px;}
.x26_c01190{left:327.258476px;}
.x48_c01190{left:328.263972px;}
.xe_c01190{left:334.714654px;}
.x17_c01190{left:345.404725px;}
.x54_c01190{left:346.961310px;}
.x33_c01190{left:356.222584px;}
.x27_c01190{left:358.875327px;}
.x8d_c01190{left:360.861579px;}
.x1e_c01190{left:362.545500px;}
.xa_c01190{left:369.868284px;}
.x43_c01190{left:374.439899px;}
.x68_c01190{left:375.953798px;}
.x3e_c01190{left:379.294023px;}
.x7b_c01190{left:380.335212px;}
.x49_c01190{left:383.660520px;}
.x3a_c01190{left:386.917202px;}
.x18_c01190{left:388.479108px;}
.x4_c01190{left:394.133383px;}
.x70_c01190{left:395.267721px;}
.x81_c01190{left:399.312937px;}
.x34_c01190{left:400.443320px;}
.x74_c01190{left:404.455788px;}
.x8e_c01190{left:405.479664px;}
.x20_c01190{left:407.581000px;}
.x62_c01190{left:408.955839px;}
.x3f_c01190{left:411.997287px;}
.x1_c01190{left:419.040000px;}
.xb_c01190{left:421.022172px;}
.x7c_c01190{left:423.635937px;}
.x2a_c01190{left:424.680273px;}
.x5_c01190{left:425.990409px;}
.x4f_c01190{left:427.892625px;}
.x4a_c01190{left:429.823311px;}
.x7d_c01190{left:456.548979px;}
.xc_c01190{left:458.989956px;}
.x75_c01190{left:460.478019px;}
.x44_c01190{left:463.130119px;}
.xf_c01190{left:467.498238px;}
.x1f_c01190{left:470.224713px;}
.x19_c01190{left:476.811187px;}
.x5d_c01190{left:484.995059px;}
.x5b_c01190{left:486.557594px;}
.x40_c01190{left:490.335870px;}
.x8f_c01190{left:493.726317px;}
.x69_c01190{left:497.248381px;}
.x35_c01190{left:498.906758px;}
.x7e_c01190{left:501.150597px;}
.x6_c01190{left:505.313112px;}
.x10_c01190{left:510.816876px;}
.x6a_c01190{left:516.761849px;}
.x45_c01190{left:517.876319px;}
.x2e_c01190{left:522.948000px;}
.x90_c01190{left:524.711223px;}
.x7_c01190{left:526.182465px;}
.x21_c01190{left:527.968758px;}
.x3b_c01190{left:530.263711px;}
.x1a_c01190{left:531.890054px;}
.x5e_c01190{left:535.108626px;}
.x50_c01190{left:537.266641px;}
.x11_c01190{left:544.019140px;}
.x63_c01190{left:553.701948px;}
.x4b_c01190{left:560.029474px;}
.x22_c01190{left:563.442978px;}
.x23_c01190{left:573.234681px;}
.x12_c01190{left:578.757367px;}
.x1b_c01190{left:587.900987px;}
.x8_c01190{left:595.707420px;}
.x64_c01190{left:598.286819px;}
.x6b_c01190{left:604.785237px;}
.x3c_c01190{left:608.332565px;}
.x2f_c01190{left:610.691169px;}
.x91_c01190{left:613.212366px;}
.x9_c01190{left:615.293733px;}
.x7f_c01190{left:622.205502px;}
.x1c_c01190{left:630.937907px;}
.x76_c01190{left:646.460808px;}
.x2b_c01190{left:652.062000px;}
.x51_c01190{left:657.981306px;}
.x1d_c01190{left:676.071228px;}
.x13_c01190{left:677.166859px;}
.x77_c01190{left:679.104390px;}
.x2c_c01190{left:689.398677px;}
.x52_c01190{left:690.402852px;}
.x36_c01190{left:697.948017px;}
.x58_c01190{left:699.338742px;}
.x92_c01190{left:704.375175px;}
.x88_c01190{left:719.051932px;}
.x6c_c01190{left:728.441457px;}
.x37_c01190{left:730.652779px;}
.x59_c01190{left:732.593454px;}
.x2d_c01190{left:733.955385px;}
.x14_c01190{left:744.958999px;}
.x78_c01190{left:747.217890px;}
.x65_c01190{left:752.515435px;}
.x53_c01190{left:771.068606px;}
.x6d_c01190{left:772.689165px;}
.x89_c01190{left:774.304675px;}
.x5a_c01190{left:776.946057px;}
.x79_c01190{left:780.445302px;}
.x66_c01190{left:797.113792px;}
.x8a_c01190{left:805.644373px;}
.x6e_c01190{left:806.982338px;}
@media print{
.v0_c01190{vertical-align:0.000000pt;}
.ls0_c01190{letter-spacing:0.000000pt;}
.ws0_c01190{word-spacing:0.000000pt;}
.fs4_c01190{font-size:16.002440pt;}
.fs1a_c01190{font-size:21.329941pt;}
.fs10_c01190{font-size:26.676065pt;}
.fs17_c01190{font-size:48.002808pt;}
.fs7_c01190{font-size:53.310395pt;}
.fs1c_c01190{font-size:53.310849pt;}
.fs19_c01190{font-size:53.324853pt;}
.fs6_c01190{font-size:53.336453pt;}
.fsb_c01190{font-size:53.338933pt;}
.fs8_c01190{font-size:53.341466pt;}
.fse_c01190{font-size:53.344052pt;}
.fs9_c01190{font-size:53.346692pt;}
.fs15_c01190{font-size:58.641435pt;}
.fs1b_c01190{font-size:58.647245pt;}
.fs5_c01190{font-size:58.650384pt;}
.fs3_c01190{font-size:58.670099pt;}
.fsa_c01190{font-size:58.675613pt;}
.fsd_c01190{font-size:58.678457pt;}
.fs1_c01190{font-size:58.681126pt;}
.fs2_c01190{font-size:58.681361pt;}
.fs12_c01190{font-size:58.684323pt;}
.fsf_c01190{font-size:58.687343pt;}
.fs14_c01190{font-size:63.972474pt;}
.fsc_c01190{font-size:64.000832pt;}
.fs18_c01190{font-size:64.012863pt;}
.fs0_c01190{font-size:64.015774pt;}
.fs11_c01190{font-size:64.016030pt;}
.fs16_c01190{font-size:69.350699pt;}
.fs13_c01190{font-size:80.024076pt;}
.y0_c01190{bottom:0.000000pt;}
.yc5_c01190{bottom:127.205415pt;}
.yc4_c01190{bottom:130.243963pt;}
.yc3_c01190{bottom:131.533333pt;}
.yc2_c01190{bottom:139.723467pt;}
.yc1_c01190{bottom:144.270443pt;}
.yc0_c01190{bottom:148.684661pt;}
.ybf_c01190{bottom:150.230112pt;}
.ybe_c01190{bottom:154.631637pt;}
.ybd_c01190{bottom:156.857077pt;}
.ybc_c01190{bottom:159.013749pt;}
.ybb_c01190{bottom:163.391456pt;}
.yba_c01190{bottom:165.439189pt;}
.yb9_c01190{bottom:166.586667pt;}
.yb3_c01190{bottom:189.834321pt;}
.yb4_c01190{bottom:191.570033pt;}
.yb2_c01190{bottom:192.596792pt;}
.yb1_c01190{bottom:195.397475pt;}
.yb0_c01190{bottom:197.285333pt;}
.yaf_c01190{bottom:218.704165pt;}
.yae_c01190{bottom:220.653777pt;}
.yad_c01190{bottom:223.954940pt;}
.yac_c01190{bottom:226.826667pt;}
.yb8_c01190{bottom:230.214745pt;}
.yb7_c01190{bottom:232.254463pt;}
.yb6_c01190{bottom:235.850540pt;}
.yb5_c01190{bottom:238.577333pt;}
.yab_c01190{bottom:258.316533pt;}
.yaa_c01190{bottom:260.898667pt;}
.ya9_c01190{bottom:275.975867pt;}
.ya8_c01190{bottom:277.489000pt;}
.ya7_c01190{bottom:282.413667pt;}
.ya6_c01190{bottom:285.323000pt;}
.ya5_c01190{bottom:289.705333pt;}
.ya4_c01190{bottom:296.576203pt;}
.ya3_c01190{bottom:302.091605pt;}
.ya2_c01190{bottom:304.276651pt;}
.ya1_c01190{bottom:308.129525pt;}
.ya0_c01190{bottom:310.354144pt;}
.y9f_c01190{bottom:311.995765pt;}
.y9e_c01190{bottom:314.155499pt;}
.y9d_c01190{bottom:315.832960pt;}
.y9c_c01190{bottom:321.239424pt;}
.y9b_c01190{bottom:323.343829pt;}
.y9a_c01190{bottom:324.504000pt;}
.y99_c01190{bottom:351.873981pt;}
.y98_c01190{bottom:356.533739pt;}
.y97_c01190{bottom:358.191040pt;}
.y96_c01190{bottom:361.588373pt;}
.y95_c01190{bottom:363.216555pt;}
.y94_c01190{bottom:365.333728pt;}
.y93_c01190{bottom:368.684843pt;}
.y92_c01190{bottom:372.492917pt;}
.y91_c01190{bottom:375.287168pt;}
.y90_c01190{bottom:380.268704pt;}
.y8f_c01190{bottom:383.496768pt;}
.y8e_c01190{bottom:385.545248pt;}
.y8d_c01190{bottom:386.666667pt;}
.y8c_c01190{bottom:406.805069pt;}
.y8b_c01190{bottom:408.229949pt;}
.y8a_c01190{bottom:411.188225pt;}
.y89_c01190{bottom:413.047513pt;}
.y88_c01190{bottom:414.977441pt;}
.y87_c01190{bottom:420.628633pt;}
.y86_c01190{bottom:422.184813pt;}
.y85_c01190{bottom:424.192717pt;}
.y84_c01190{bottom:429.804077pt;}
.y83_c01190{bottom:431.249009pt;}
.y82_c01190{bottom:433.798465pt;}
.y81_c01190{bottom:434.683961pt;}
.y80_c01190{bottom:440.188153pt;}
.y7f_c01190{bottom:444.705325pt;}
.y7e_c01190{bottom:446.181333pt;}
.y7d_c01190{bottom:452.333000pt;}
.y7c_c01190{bottom:454.317133pt;}
.y7b_c01190{bottom:458.824733pt;}
.y7a_c01190{bottom:461.178600pt;}
.y79_c01190{bottom:463.162133pt;}
.y78_c01190{bottom:466.175800pt;}
.y77_c01190{bottom:469.601733pt;}
.y76_c01190{bottom:470.554533pt;}
.y75_c01190{bottom:474.036200pt;}
.y74_c01190{bottom:475.440267pt;}
.y73_c01190{bottom:479.786667pt;}
.y72_c01190{bottom:492.261571pt;}
.y71_c01190{bottom:493.028684pt;}
.y70_c01190{bottom:494.490764pt;}
.y6f_c01190{bottom:495.497807pt;}
.y6d_c01190{bottom:499.158544pt;}
.y6e_c01190{bottom:505.205212pt;}
.y6c_c01190{bottom:505.218069pt;}
.y6b_c01190{bottom:510.270667pt;}
.y6a_c01190{bottom:518.281099pt;}
.y69_c01190{bottom:520.175371pt;}
.y68_c01190{bottom:521.595659pt;}
.y67_c01190{bottom:525.377035pt;}
.y66_c01190{bottom:528.187979pt;}
.y65_c01190{bottom:531.898187pt;}
.y64_c01190{bottom:533.832971pt;}
.y63_c01190{bottom:537.674123pt;}
.y62_c01190{bottom:540.938251pt;}
.y61_c01190{bottom:543.622667pt;}
.y60_c01190{bottom:563.115457pt;}
.y5f_c01190{bottom:564.579447pt;}
.y5e_c01190{bottom:567.968613pt;}
.y5d_c01190{bottom:572.180000pt;}
.y5c_c01190{bottom:579.808151pt;}
.y5b_c01190{bottom:583.325109pt;}
.y5a_c01190{bottom:584.738661pt;}
.y59_c01190{bottom:590.001719pt;}
.y58_c01190{bottom:594.770333pt;}
.y57_c01190{bottom:599.538948pt;}
.y56_c01190{bottom:602.552775pt;}
.y55_c01190{bottom:605.305333pt;}
.y54_c01190{bottom:620.901647pt;}
.y53_c01190{bottom:626.115107pt;}
.y52_c01190{bottom:627.963467pt;}
.y51_c01190{bottom:630.181547pt;}
.y50_c01190{bottom:633.282407pt;}
.y4f_c01190{bottom:636.742667pt;}
.y4e_c01190{bottom:652.313913pt;}
.y4d_c01190{bottom:654.211084pt;}
.y4c_c01190{bottom:656.500548pt;}
.y4b_c01190{bottom:660.209537pt;}
.y4a_c01190{bottom:665.212217pt;}
.y49_c01190{bottom:667.942667pt;}
.y43_c01190{bottom:682.325419pt;}
.y42_c01190{bottom:685.659691pt;}
.y41_c01190{bottom:690.363307pt;}
.y40_c01190{bottom:691.781931pt;}
.y3f_c01190{bottom:695.518955pt;}
.y3e_c01190{bottom:696.978667pt;}
.y3d_c01190{bottom:706.882200pt;}
.y3c_c01190{bottom:708.337200pt;}
.y3b_c01190{bottom:712.255133pt;}
.y3a_c01190{bottom:715.166867pt;}
.y39_c01190{bottom:717.192333pt;}
.y38_c01190{bottom:721.572867pt;}
.y37_c01190{bottom:723.540200pt;}
.y36_c01190{bottom:727.990867pt;}
.y35_c01190{bottom:730.220667pt;}
.y34_c01190{bottom:730.825333pt;}
.y33_c01190{bottom:744.597877pt;}
.y32_c01190{bottom:748.345333pt;}
.y48_c01190{bottom:749.705680pt;}
.y47_c01190{bottom:752.981768pt;}
.y46_c01190{bottom:754.349405pt;}
.y45_c01190{bottom:755.737409pt;}
.y44_c01190{bottom:759.382667pt;}
.y31_c01190{bottom:770.662027pt;}
.y30_c01190{bottom:772.884405pt;}
.y2f_c01190{bottom:774.746667pt;}
.y2e_c01190{bottom:781.995691pt;}
.y2d_c01190{bottom:783.852496pt;}
.y2c_c01190{bottom:786.078712pt;}
.y2b_c01190{bottom:790.539363pt;}
.y2a_c01190{bottom:793.225333pt;}
.y29_c01190{bottom:818.144379pt;}
.y28_c01190{bottom:819.213395pt;}
.y27_c01190{bottom:821.386539pt;}
.y26_c01190{bottom:824.416000pt;}
.y25_c01190{bottom:858.540423pt;}
.y24_c01190{bottom:858.949275pt;}
.y23_c01190{bottom:860.432315pt;}
.y22_c01190{bottom:863.334883pt;}
.y21_c01190{bottom:865.467195pt;}
.y1f_c01190{bottom:865.883755pt;}
.y20_c01190{bottom:867.363171pt;}
.y1e_c01190{bottom:870.482667pt;}
.y1d_c01190{bottom:913.266656pt;}
.y1c_c01190{bottom:915.113955pt;}
.y1b_c01190{bottom:916.875448pt;}
.y1a_c01190{bottom:919.167965pt;}
.y19_c01190{bottom:921.422333pt;}
.y18_c01190{bottom:925.037749pt;}
.y17_c01190{bottom:926.800776pt;}
.y16_c01190{bottom:928.203408pt;}
.y15_c01190{bottom:933.620000pt;}
.y14_c01190{bottom:941.702200pt;}
.y13_c01190{bottom:944.718200pt;}
.y12_c01190{bottom:949.096333pt;}
.y11_c01190{bottom:950.641800pt;}
.y10_c01190{bottom:952.118933pt;}
.yf_c01190{bottom:954.046133pt;}
.ye_c01190{bottom:959.953533pt;}
.yd_c01190{bottom:961.946667pt;}
.yc_c01190{bottom:1001.948355pt;}
.yb_c01190{bottom:1003.505647pt;}
.ya_c01190{bottom:1005.603872pt;}
.y9_c01190{bottom:1042.761881pt;}
.y8_c01190{bottom:1043.617913pt;}
.y7_c01190{bottom:1046.654704pt;}
.y6_c01190{bottom:1047.565915pt;}
.y5_c01190{bottom:1051.029659pt;}
.y4_c01190{bottom:1052.421455pt;}
.y3_c01190{bottom:1056.254185pt;}
.y2_c01190{bottom:1059.156283pt;}
.y1_c01190{bottom:1099.968000pt;}
.h6_c01190{height:16.002440pt;}
.h1c_c01190{height:21.329941pt;}
.h12_c01190{height:26.676065pt;}
.h19_c01190{height:48.002808pt;}
.h9_c01190{height:53.310395pt;}
.h1e_c01190{height:53.310849pt;}
.h1b_c01190{height:53.324853pt;}
.h8_c01190{height:53.336453pt;}
.hd_c01190{height:53.338933pt;}
.ha_c01190{height:53.341466pt;}
.h10_c01190{height:53.344052pt;}
.hb_c01190{height:53.346692pt;}
.h17_c01190{height:58.641435pt;}
.h1d_c01190{height:58.647245pt;}
.h7_c01190{height:58.650384pt;}
.h5_c01190{height:58.670099pt;}
.hc_c01190{height:58.675613pt;}
.hf_c01190{height:58.678457pt;}
.h3_c01190{height:58.681126pt;}
.h4_c01190{height:58.681361pt;}
.h14_c01190{height:58.684323pt;}
.h11_c01190{height:58.687343pt;}
.h16_c01190{height:63.972474pt;}
.he_c01190{height:64.000832pt;}
.h1a_c01190{height:64.012863pt;}
.h2_c01190{height:64.015774pt;}
.h13_c01190{height:64.016030pt;}
.h18_c01190{height:69.350699pt;}
.h15_c01190{height:80.024076pt;}
.h1_c01190{height:1118.666667pt;}
.h0_c01190{height:1118.880000pt;}
.w0_c01190{width:803.733333pt;}
.w1_c01190{width:804.000000pt;}
.x0_c01190{left:0.000000pt;}
.x46_c01190{left:146.133333pt;}
.x8b_c01190{left:147.370667pt;}
.x82_c01190{left:151.272000pt;}
.x24_c01190{left:154.122667pt;}
.x71_c01190{left:156.717333pt;}
.x15_c01190{left:158.930667pt;}
.x5f_c01190{left:160.021333pt;}
.x55_c01190{left:163.197333pt;}
.x4c_c01190{left:165.564000pt;}
.x41_c01190{left:168.465333pt;}
.x30_c01190{left:171.085333pt;}
.x28_c01190{left:173.940000pt;}
.x72_c01190{left:176.702616pt;}
.x31_c01190{left:183.166573pt;}
.x94_c01190{left:201.276471pt;}
.x87_c01190{left:202.693908pt;}
.x8c_c01190{left:204.313885pt;}
.x85_c01190{left:205.241955pt;}
.x83_c01190{left:207.349200pt;}
.x80_c01190{left:209.257333pt;}
.x7a_c01190{left:211.854176pt;}
.x2_c01190{left:213.267575pt;}
.x5c_c01190{left:217.054776pt;}
.x56_c01190{left:219.066741pt;}
.x4d_c01190{left:221.682492pt;}
.x47_c01190{left:222.951105pt;}
.x42_c01190{left:226.501905pt;}
.x32_c01190{left:227.717977pt;}
.x3d_c01190{left:230.166667pt;}
.x29_c01190{left:232.272276pt;}
.x25_c01190{left:233.765611pt;}
.x38_c01190{left:235.769333pt;}
.x93_c01190{left:240.790077pt;}
.x67_c01190{left:245.697725pt;}
.x60_c01190{left:246.862405pt;}
.x6f_c01190{left:253.136057pt;}
.xd_c01190{left:257.701333pt;}
.x84_c01190{left:265.116060pt;}
.x39_c01190{left:266.149589pt;}
.x73_c01190{left:270.738168pt;}
.x3_c01190{left:272.344436pt;}
.x86_c01190{left:273.482979pt;}
.x61_c01190{left:274.915657pt;}
.x16_c01190{left:276.564915pt;}
.x4e_c01190{left:283.127652pt;}
.x57_c01190{left:287.001405pt;}
.x26_c01190{left:290.896423pt;}
.x48_c01190{left:291.790197pt;}
.xe_c01190{left:297.524137pt;}
.x17_c01190{left:307.026423pt;}
.x54_c01190{left:308.410053pt;}
.x33_c01190{left:316.642297pt;}
.x27_c01190{left:319.000291pt;}
.x8d_c01190{left:320.765848pt;}
.x1e_c01190{left:322.262667pt;}
.xa_c01190{left:328.771808pt;}
.x43_c01190{left:332.835465pt;}
.x68_c01190{left:334.181153pt;}
.x3e_c01190{left:337.150243pt;}
.x7b_c01190{left:338.075744pt;}
.x49_c01190{left:341.031573pt;}
.x3a_c01190{left:343.926401pt;}
.x18_c01190{left:345.314763pt;}
.x4_c01190{left:350.340785pt;}
.x70_c01190{left:351.349085pt;}
.x81_c01190{left:354.944833pt;}
.x34_c01190{left:355.949617pt;}
.x74_c01190{left:359.516256pt;}
.x8e_c01190{left:360.426368pt;}
.x20_c01190{left:362.294223pt;}
.x62_c01190{left:363.516301pt;}
.x3f_c01190{left:366.219811pt;}
.x1_c01190{left:372.480000pt;}
.xb_c01190{left:374.241931pt;}
.x7c_c01190{left:376.565277pt;}
.x2a_c01190{left:377.493576pt;}
.x5_c01190{left:378.658141pt;}
.x4f_c01190{left:380.349000pt;}
.x4a_c01190{left:382.065165pt;}
.x7d_c01190{left:405.821315pt;}
.xc_c01190{left:407.991072pt;}
.x75_c01190{left:409.313795pt;}
.x44_c01190{left:411.671217pt;}
.xf_c01190{left:415.553989pt;}
.x1f_c01190{left:417.977523pt;}
.x19_c01190{left:423.832167pt;}
.x5d_c01190{left:431.106719pt;}
.x5b_c01190{left:432.495639pt;}
.x40_c01190{left:435.854107pt;}
.x8f_c01190{left:438.867837pt;}
.x69_c01190{left:441.998561pt;}
.x35_c01190{left:443.472673pt;}
.x7e_c01190{left:445.467197pt;}
.x6_c01190{left:449.167211pt;}
.x10_c01190{left:454.059445pt;}
.x6a_c01190{left:459.343865pt;}
.x45_c01190{left:460.334505pt;}
.x2e_c01190{left:464.842667pt;}
.x90_c01190{left:466.409976pt;}
.x7_c01190{left:467.717747pt;}
.x21_c01190{left:469.305563pt;}
.x3b_c01190{left:471.345521pt;}
.x1a_c01190{left:472.791159pt;}
.x5e_c01190{left:475.652112pt;}
.x50_c01190{left:477.570348pt;}
.x11_c01190{left:483.572569pt;}
.x63_c01190{left:492.179509pt;}
.x4b_c01190{left:497.803977pt;}
.x22_c01190{left:500.838203pt;}
.x23_c01190{left:509.541939pt;}
.x12_c01190{left:514.450993pt;}
.x1b_c01190{left:522.578655pt;}
.x8_c01190{left:529.517707pt;}
.x64_c01190{left:531.810505pt;}
.x6b_c01190{left:537.586877pt;}
.x3c_c01190{left:540.740057pt;}
.x2f_c01190{left:542.836595pt;}
.x91_c01190{left:545.077659pt;}
.x9_c01190{left:546.927763pt;}
.x7f_c01190{left:553.071557pt;}
.x1c_c01190{left:560.833695pt;}
.x76_c01190{left:574.631829pt;}
.x2b_c01190{left:579.610667pt;}
.x51_c01190{left:584.872272pt;}
.x1d_c01190{left:600.952203pt;}
.x13_c01190{left:601.926097pt;}
.x77_c01190{left:603.648347pt;}
.x2c_c01190{left:612.798824pt;}
.x52_c01190{left:613.691424pt;}
.x36_c01190{left:620.398237pt;}
.x58_c01190{left:621.634437pt;}
.x92_c01190{left:626.111267pt;}
.x88_c01190{left:639.157273pt;}
.x6c_c01190{left:647.503517pt;}
.x37_c01190{left:649.469137pt;}
.x59_c01190{left:651.194181pt;}
.x2d_c01190{left:652.404787pt;}
.x14_c01190{left:662.185777pt;}
.x78_c01190{left:664.193680pt;}
.x65_c01190{left:668.902609pt;}
.x53_c01190{left:685.394316pt;}
.x6d_c01190{left:686.834813pt;}
.x89_c01190{left:688.270823pt;}
.x5a_c01190{left:690.618717pt;}
.x79_c01190{left:693.729157pt;}
.x66_c01190{left:708.545593pt;}
.x8a_c01190{left:716.128332pt;}
.x6e_c01190{left:717.317633pt;}
}





/* 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_c01191 {
    display:none;
  }
  .loading-indicator_c01191.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01191 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_c01191 { 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_c01191" -> "#page-container .classname_c01191")
 */
.pf_c01191 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01191 { /* 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_c01191.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01191 { /* 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_c01191 { /* 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_c01191 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01191 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01191 {overflow:visible;}
  }
}
.c_c01191 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01191 { /* 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_c01191:after { /* webkit #35443 */
  content: '';
}
.t_c01191:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01191 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 */
}
.__c01191 { /* 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_c01191 { /* info for Javascript */
  display:none;
}
.l_c01191 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01191 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01191 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01191: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_c01191 {
    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_c01191.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01191.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_c01191 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01191{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01191;src:url('chunks/assets/font_53ec0c54e60da7c2d414b553.woff2')format("woff");}.ff1_c01191{font-family:ff1_c01191;line-height:1.000000;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;}
.m5_c01191{transform:matrix(0.012570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.012570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.012570,0.000000,0.000000,0.250000,0,0);}
.m40_c01191{transform:matrix(0.042425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.042425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.042425,0.000000,0.000000,0.250000,0,0);}
.m68_c01191{transform:matrix(0.047435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.047435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.047435,0.000000,0.000000,0.250000,0,0);}
.m3a_c01191{transform:matrix(0.061845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.061845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.061845,0.000000,0.000000,0.250000,0,0);}
.m2e_c01191{transform:matrix(0.067080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.067080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.067080,0.000000,0.000000,0.250000,0,0);}
.m1d_c01191{transform:matrix(0.087440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087440,0.000000,0.000000,0.250000,0,0);}
.m49_c01191{transform:matrix(0.087465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087465,0.000000,0.000000,0.250000,0,0);}
.m42_c01191{transform:matrix(0.117155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117155,0.000000,0.000000,0.250000,0,0);}
.m27_c01191{transform:matrix(0.125780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125780,0.000000,0.000000,0.250000,0,0);}
.m79_c01191{transform:matrix(0.136615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136615,0.000000,0.000000,0.250000,0,0);}
.m1c_c01191{transform:matrix(0.145460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145460,0.000000,0.000000,0.250000,0,0);}
.m22_c01191{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m15_c01191{transform:matrix(0.154435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154435,0.000000,0.000000,0.250000,0,0);}
.m1_c01191{transform:matrix(0.165115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165115,0.000000,0.000000,0.250000,0,0);}
.m5b_c01191{transform:matrix(0.171025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171025,0.000000,0.000000,0.250000,0,0);}
.m0_c01191{transform:matrix(0.181405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181405,0.000000,0.000000,0.250000,0,0);}
.m54_c01191{transform:matrix(0.190920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190920,0.000000,0.000000,0.250000,0,0);}
.m4_c01191{transform:matrix(0.191140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191140,0.000000,0.000000,0.250000,0,0);}
.m26_c01191{transform:matrix(0.191215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191215,0.000000,0.000000,0.250000,0,0);}
.m2d_c01191{transform:matrix(0.201295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201295,0.000000,0.000000,0.250000,0,0);}
.m24_c01191{transform:matrix(0.201945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201945,0.000000,0.000000,0.250000,0,0);}
.m71_c01191{transform:matrix(0.202090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202090,0.000000,0.000000,0.250000,0,0);}
.m73_c01191{transform:matrix(0.207430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207430,0.000000,0.000000,0.250000,0,0);}
.m3e_c01191{transform:matrix(0.208385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208385,0.000000,0.000000,0.250000,0,0);}
.m2_c01191{transform:matrix(0.209390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209390,0.000000,0.000000,0.250000,0,0);}
.mf_c01191{transform:matrix(0.211810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211810,0.000000,0.000000,0.250000,0,0);}
.m45_c01191{transform:matrix(0.213320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213320,0.000000,0.000000,0.250000,0,0);}
.m7e_c01191{transform:matrix(0.214765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214765,0.000000,0.000000,0.250000,0,0);}
.m8_c01191{transform:matrix(0.218502,0.004589,-0.005249,0.249945,0,0);-ms-transform:matrix(0.218502,0.004589,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.218502,0.004589,-0.005249,0.249945,0,0);}
.m6_c01191{transform:matrix(0.218572,0.004590,-0.005249,0.249945,0,0);-ms-transform:matrix(0.218572,0.004590,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.218572,0.004590,-0.005249,0.249945,0,0);}
.m74_c01191{transform:matrix(0.220335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220335,0.000000,0.000000,0.250000,0,0);}
.m39_c01191{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m7_c01191{transform:matrix(0.228710,0.004803,-0.005249,0.249945,0,0);-ms-transform:matrix(0.228710,0.004803,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.228710,0.004803,-0.005249,0.249945,0,0);}
.m35_c01191{transform:matrix(0.233075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233075,0.000000,0.000000,0.250000,0,0);}
.m37_c01191{transform:matrix(0.235365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235365,0.000000,0.000000,0.250000,0,0);}
.m33_c01191{transform:matrix(0.236130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236130,0.000000,0.000000,0.250000,0,0);}
.m80_c01191{transform:matrix(0.238235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238235,0.000000,0.000000,0.250000,0,0);}
.mb_c01191{transform:matrix(0.243316,0.005110,-0.005249,0.249945,0,0);-ms-transform:matrix(0.243316,0.005110,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.243316,0.005110,-0.005249,0.249945,0,0);}
.m70_c01191{transform:matrix(0.245350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245350,0.000000,0.000000,0.250000,0,0);}
.m78_c01191{transform:matrix(0.245395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245395,0.000000,0.000000,0.250000,0,0);}
.md_c01191{transform:matrix(0.251065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251065,0.000000,0.000000,0.250000,0,0);}
.me_c01191{transform:matrix(0.253545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253545,0.000000,0.000000,0.250000,0,0);}
.m6f_c01191{transform:matrix(0.254560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254560,0.000000,0.000000,0.250000,0,0);}
.m41_c01191{transform:matrix(0.254950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254950,0.000000,0.000000,0.250000,0,0);}
.m5a_c01191{transform:matrix(0.255440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255440,0.000000,0.000000,0.250000,0,0);}
.m32_c01191{transform:matrix(0.259300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259300,0.000000,0.000000,0.250000,0,0);}
.mc_c01191{transform:matrix(0.272185,0.005716,-0.005249,0.249945,0,0);-ms-transform:matrix(0.272185,0.005716,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.272185,0.005716,-0.005249,0.249945,0,0);}
.m3_c01191{transform:matrix(0.272320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272320,0.000000,0.000000,0.250000,0,0);}
.m12_c01191{transform:matrix(0.276365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276365,0.000000,0.000000,0.250000,0,0);}
.m4f_c01191{transform:matrix(0.281125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281125,0.000000,0.000000,0.250000,0,0);}
.m17_c01191{transform:matrix(0.283210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283210,0.000000,0.000000,0.250000,0,0);}
.m23_c01191{transform:matrix(0.287925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287925,0.000000,0.000000,0.250000,0,0);}
.m72_c01191{transform:matrix(0.298770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298770,0.000000,0.000000,0.250000,0,0);}
.ma_c01191{transform:matrix(0.300519,0.006311,-0.005249,0.249945,0,0);-ms-transform:matrix(0.300519,0.006311,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.300519,0.006311,-0.005249,0.249945,0,0);}
.m30_c01191{transform:matrix(0.304365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304365,0.000000,0.000000,0.250000,0,0);}
.m11_c01191{transform:matrix(0.313305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313305,0.000000,0.000000,0.250000,0,0);}
.m50_c01191{transform:matrix(0.323745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323745,0.000000,0.000000,0.250000,0,0);}
.m55_c01191{transform:matrix(0.325385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325385,0.000000,0.000000,0.250000,0,0);}
.m47_c01191{transform:matrix(0.328770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328770,0.000000,0.000000,0.250000,0,0);}
.m18_c01191{transform:matrix(0.329850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329850,0.000000,0.000000,0.250000,0,0);}
.m5e_c01191{transform:matrix(0.331380,-0.020919,0.015750,0.249503,0,0);-ms-transform:matrix(0.331380,-0.020919,0.015750,0.249503,0,0);-webkit-transform:matrix(0.331380,-0.020919,0.015750,0.249503,0,0);}
.m25_c01191{transform:matrix(0.334485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334485,0.000000,0.000000,0.250000,0,0);}
.m64_c01191{transform:matrix(0.337785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337785,0.000000,0.000000,0.250000,0,0);}
.m77_c01191{transform:matrix(0.348470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348470,0.000000,0.000000,0.250000,0,0);}
.m7f_c01191{transform:matrix(0.354555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354555,0.000000,0.000000,0.250000,0,0);}
.m58_c01191{transform:matrix(0.358420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358420,0.000000,0.000000,0.250000,0,0);}
.m65_c01191{transform:matrix(0.359210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359210,0.000000,0.000000,0.250000,0,0);}
.m3d_c01191{transform:matrix(0.361250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361250,0.000000,0.000000,0.250000,0,0);}
.m6d_c01191{transform:matrix(0.367705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367705,0.000000,0.000000,0.250000,0,0);}
.m19_c01191{transform:matrix(0.368780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368780,0.000000,0.000000,0.250000,0,0);}
.m1e_c01191{transform:matrix(0.371400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371400,0.000000,0.000000,0.250000,0,0);}
.m6b_c01191{transform:matrix(0.380095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380095,0.000000,0.000000,0.250000,0,0);}
.m7b_c01191{transform:matrix(0.385830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385830,0.000000,0.000000,0.250000,0,0);}
.m2c_c01191{transform:matrix(0.385875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385875,0.000000,0.000000,0.250000,0,0);}
.m3f_c01191{transform:matrix(0.386005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386005,0.000000,0.000000,0.250000,0,0);}
.m6e_c01191{transform:matrix(0.387105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387105,0.000000,0.000000,0.250000,0,0);}
.m9_c01191{transform:matrix(0.387415,0.008136,-0.005249,0.249945,0,0);-ms-transform:matrix(0.387415,0.008136,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.387415,0.008136,-0.005249,0.249945,0,0);}
.m21_c01191{transform:matrix(0.387470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387470,0.000000,0.000000,0.250000,0,0);}
.m4e_c01191{transform:matrix(0.389265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389265,0.000000,0.000000,0.250000,0,0);}
.m4b_c01191{transform:matrix(0.400235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400235,0.000000,0.000000,0.250000,0,0);}
.m1b_c01191{transform:matrix(0.412705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412705,0.000000,0.000000,0.250000,0,0);}
.m43_c01191{transform:matrix(0.416205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416205,0.000000,0.000000,0.250000,0,0);}
.m10_c01191{transform:matrix(0.417355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417355,0.000000,0.000000,0.250000,0,0);}
.m2f_c01191{transform:matrix(0.421010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421010,0.000000,0.000000,0.250000,0,0);}
.m44_c01191{transform:matrix(0.423615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423615,0.000000,0.000000,0.250000,0,0);}
.m16_c01191{transform:matrix(0.432925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432925,0.000000,0.000000,0.250000,0,0);}
.m46_c01191{transform:matrix(0.454045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.454045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.454045,0.000000,0.000000,0.250000,0,0);}
.m4c_c01191{transform:matrix(0.456100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456100,0.000000,0.000000,0.250000,0,0);}
.m63_c01191{transform:matrix(0.478355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.478355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.478355,0.000000,0.000000,0.250000,0,0);}
.m7a_c01191{transform:matrix(0.480935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480935,0.000000,0.000000,0.250000,0,0);}
.m5c_c01191{transform:matrix(0.481671,-0.030406,0.015750,0.249503,0,0);-ms-transform:matrix(0.481671,-0.030406,0.015750,0.249503,0,0);-webkit-transform:matrix(0.481671,-0.030406,0.015750,0.249503,0,0);}
.m3c_c01191{transform:matrix(0.485215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485215,0.000000,0.000000,0.250000,0,0);}
.m36_c01191{transform:matrix(0.497155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497155,0.000000,0.000000,0.250000,0,0);}
.m53_c01191{transform:matrix(0.515905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515905,0.000000,0.000000,0.250000,0,0);}
.m51_c01191{transform:matrix(0.525845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525845,0.000000,0.000000,0.250000,0,0);}
.m4d_c01191{transform:matrix(0.540935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540935,0.000000,0.000000,0.250000,0,0);}
.m56_c01191{transform:matrix(0.562935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562935,0.000000,0.000000,0.250000,0,0);}
.m75_c01191{transform:matrix(0.565645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565645,0.000000,0.000000,0.250000,0,0);}
.m13_c01191{transform:matrix(0.584085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.584085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.584085,0.000000,0.000000,0.250000,0,0);}
.m6c_c01191{transform:matrix(0.587300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.587300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.587300,0.000000,0.000000,0.250000,0,0);}
.m59_c01191{transform:matrix(0.599215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.599215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.599215,0.000000,0.000000,0.250000,0,0);}
.m52_c01191{transform:matrix(0.611970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.611970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.611970,0.000000,0.000000,0.250000,0,0);}
.m7c_c01191{transform:matrix(0.618715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.618715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.618715,0.000000,0.000000,0.250000,0,0);}
.m76_c01191{transform:matrix(0.631865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.631865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.631865,0.000000,0.000000,0.250000,0,0);}
.m3b_c01191{transform:matrix(0.645205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.645205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.645205,0.000000,0.000000,0.250000,0,0);}
.m38_c01191{transform:matrix(0.646220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.646220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.646220,0.000000,0.000000,0.250000,0,0);}
.m66_c01191{transform:matrix(0.657335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.657335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.657335,0.000000,0.000000,0.250000,0,0);}
.m31_c01191{transform:matrix(0.683120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.683120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.683120,0.000000,0.000000,0.250000,0,0);}
.m20_c01191{transform:matrix(0.684765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.684765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.684765,0.000000,0.000000,0.250000,0,0);}
.m69_c01191{transform:matrix(0.710720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.710720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.710720,0.000000,0.000000,0.250000,0,0);}
.m1f_c01191{transform:matrix(0.733335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.733335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.733335,0.000000,0.000000,0.250000,0,0);}
.m14_c01191{transform:matrix(0.768615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.768615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.768615,0.000000,0.000000,0.250000,0,0);}
.m2b_c01191{transform:matrix(0.798390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.798390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.798390,0.000000,0.000000,0.250000,0,0);}
.m34_c01191{transform:matrix(0.840775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.840775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.840775,0.000000,0.000000,0.250000,0,0);}
.m61_c01191{transform:matrix(0.846874,-0.053460,0.015750,0.249503,0,0);-ms-transform:matrix(0.846874,-0.053460,0.015750,0.249503,0,0);-webkit-transform:matrix(0.846874,-0.053460,0.015750,0.249503,0,0);}
.m28_c01191{transform:matrix(0.859225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.859225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.859225,0.000000,0.000000,0.250000,0,0);}
.m60_c01191{transform:matrix(0.870877,-0.054975,0.015750,0.249503,0,0);-ms-transform:matrix(0.870877,-0.054975,0.015750,0.249503,0,0);-webkit-transform:matrix(0.870877,-0.054975,0.015750,0.249503,0,0);}
.m29_c01191{transform:matrix(0.974075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.974075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.974075,0.000000,0.000000,0.250000,0,0);}
.m62_c01191{transform:matrix(0.988465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.988465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.988465,0.000000,0.000000,0.250000,0,0);}
.m5d_c01191{transform:matrix(1.024141,-0.064650,0.015750,0.249503,0,0);-ms-transform:matrix(1.024141,-0.064650,0.015750,0.249503,0,0);-webkit-transform:matrix(1.024141,-0.064650,0.015750,0.249503,0,0);}
.m6a_c01191{transform:matrix(1.100840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.100840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.100840,0.000000,0.000000,0.250000,0,0);}
.m48_c01191{transform:matrix(1.172785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.172785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.172785,0.000000,0.000000,0.250000,0,0);}
.m57_c01191{transform:matrix(1.232180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.232180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.232180,0.000000,0.000000,0.250000,0,0);}
.m2a_c01191{transform:matrix(1.406565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.406565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.406565,0.000000,0.000000,0.250000,0,0);}
.m5f_c01191{transform:matrix(1.558198,-0.098363,0.015750,0.249503,0,0);-ms-transform:matrix(1.558198,-0.098363,0.015750,0.249503,0,0);-webkit-transform:matrix(1.558198,-0.098363,0.015750,0.249503,0,0);}
.m1a_c01191{transform:matrix(1.698980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.698980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.698980,0.000000,0.000000,0.250000,0,0);}
.m67_c01191{transform:matrix(2.410330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.410330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.410330,0.000000,0.000000,0.250000,0,0);}
.m7d_c01191{transform:matrix(2.778545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.778545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.778545,0.000000,0.000000,0.250000,0,0);}
.m4a_c01191{transform:matrix(4.293170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.293170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.293170,0.000000,0.000000,0.250000,0,0);}
.v0_c01191{vertical-align:0.000000px;}
.ls0_c01191{letter-spacing:0.000000px;}
.sc__c01191{text-shadow:none;}
.sc0_c01191{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__c01191{-webkit-text-stroke:0px transparent;}
.sc0_c01191{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01191{word-spacing:0.000000px;}
.fc0_c01191{color:transparent;}
.fse_c01191{font-size:12.000000px;}
.fs5_c01191{font-size:18.000000px;}
.fs7_c01191{font-size:24.000000px;}
.fsc_c01191{font-size:35.999514px;}
.fs4_c01191{font-size:36.000000px;}
.fs6_c01191{font-size:42.000000px;}
.fsa_c01191{font-size:48.000000px;}
.fsd_c01191{font-size:53.999271px;}
.fs9_c01191{font-size:60.000000px;}
.fsf_c01191{font-size:66.000000px;}
.fs12_c01191{font-size:72.000000px;}
.fs2_c01191{font-size:72.015874px;}
.fs3_c01191{font-size:78.000000px;}
.fs11_c01191{font-size:84.000000px;}
.fs8_c01191{font-size:90.000000px;}
.fsb_c01191{font-size:96.000000px;}
.fs10_c01191{font-size:108.000000px;}
.fs0_c01191{font-size:126.000000px;}
.fs1_c01191{font-size:132.000000px;}
.y0_c01191{bottom:0.000000px;}
.y39_c01191{bottom:326.040000px;}
.y36_c01191{bottom:468.031500px;}
.y38_c01191{bottom:468.990000px;}
.y37_c01191{bottom:476.550000px;}
.y35_c01191{bottom:483.045000px;}
.y32_c01191{bottom:490.456500px;}
.y41_c01191{bottom:497.872500px;}
.y34_c01191{bottom:498.828000px;}
.y33_c01191{bottom:504.111000px;}
.y2c_c01191{bottom:504.447000px;}
.y30_c01191{bottom:504.779893px;}
.y31_c01191{bottom:504.787510px;}
.y2d_c01191{bottom:505.951440px;}
.y2e_c01191{bottom:507.598102px;}
.y2f_c01191{bottom:508.204792px;}
.y40_c01191{bottom:515.832000px;}
.y2b_c01191{bottom:521.100000px;}
.y2a_c01191{bottom:566.596500px;}
.y29_c01191{bottom:674.364000px;}
.y3f_c01191{bottom:675.163500px;}
.y3b_c01191{bottom:676.456500px;}
.y25_c01191{bottom:715.902000px;}
.y28_c01191{bottom:717.250500px;}
.y26_c01191{bottom:728.190000px;}
.y27_c01191{bottom:734.659500px;}
.y3a_c01191{bottom:749.662500px;}
.y24_c01191{bottom:750.490500px;}
.y22_c01191{bottom:752.410500px;}
.y23_c01191{bottom:756.688500px;}
.y20_c01191{bottom:782.188500px;}
.y21_c01191{bottom:782.847000px;}
.y1d_c01191{bottom:786.772500px;}
.y1f_c01191{bottom:786.808500px;}
.y1a_c01191{bottom:791.370000px;}
.y1c_c01191{bottom:792.180000px;}
.y1e_c01191{bottom:794.665500px;}
.y1b_c01191{bottom:798.120000px;}
.y17_c01191{bottom:818.623500px;}
.y16_c01191{bottom:823.365000px;}
.y13_c01191{bottom:851.928000px;}
.y15_c01191{bottom:853.866000px;}
.y18_c01191{bottom:856.434000px;}
.y14_c01191{bottom:857.380500px;}
.y12_c01191{bottom:857.674500px;}
.y19_c01191{bottom:858.685500px;}
.y11_c01191{bottom:863.061000px;}
.y3e_c01191{bottom:888.775500px;}
.y10_c01191{bottom:892.026000px;}
.yf_c01191{bottom:898.687500px;}
.ye_c01191{bottom:949.222500px;}
.yd_c01191{bottom:952.684500px;}
.yc_c01191{bottom:963.630000px;}
.y3d_c01191{bottom:1011.283500px;}
.ya_c01191{bottom:1016.119500px;}
.yb_c01191{bottom:1016.284500px;}
.y3c_c01191{bottom:1045.984500px;}
.y9_c01191{bottom:1049.368991px;}
.y8_c01191{bottom:1050.406979px;}
.y7_c01191{bottom:1051.043656px;}
.y6_c01191{bottom:1051.753320px;}
.y5_c01191{bottom:1052.930885px;}
.y4_c01191{bottom:1053.646407px;}
.y3_c01191{bottom:1054.894500px;}
.y2_c01191{bottom:1152.529500px;}
.y1_c01191{bottom:1158.165000px;}
.h10_c01191{height:12.000000px;}
.h7_c01191{height:18.000000px;}
.h9_c01191{height:24.000000px;}
.he_c01191{height:35.999514px;}
.h6_c01191{height:36.000000px;}
.h8_c01191{height:42.000000px;}
.hc_c01191{height:48.000000px;}
.hf_c01191{height:53.999271px;}
.hb_c01191{height:60.000000px;}
.h11_c01191{height:66.000000px;}
.h14_c01191{height:72.000000px;}
.h4_c01191{height:72.015874px;}
.h5_c01191{height:78.000000px;}
.h13_c01191{height:84.000000px;}
.ha_c01191{height:90.000000px;}
.hd_c01191{height:96.000000px;}
.h12_c01191{height:108.000000px;}
.h2_c01191{height:126.000000px;}
.h3_c01191{height:132.000000px;}
.h1_c01191{height:1258.500000px;}
.h0_c01191{height:1258.740000px;}
.w0_c01191{width:904.200000px;}
.w1_c01191{width:904.500000px;}
.x0_c01191{left:0.000000px;}
.xe_c01191{left:185.220000px;}
.x1_c01191{left:194.670000px;}
.x7_c01191{left:197.149500px;}
.x51_c01191{left:217.080000px;}
.x32_c01191{left:219.240000px;}
.x41_c01191{left:220.860000px;}
.x53_c01191{left:224.370000px;}
.x52_c01191{left:227.610000px;}
.x2c_c01191{left:231.390000px;}
.x2d_c01191{left:235.710000px;}
.x57_c01191{left:237.330000px;}
.x3f_c01191{left:240.300000px;}
.xf_c01191{left:252.450000px;}
.x3d_c01191{left:253.530000px;}
.x8_c01191{left:256.582500px;}
.x50_c01191{left:266.220000px;}
.x38_c01191{left:274.590000px;}
.x58_c01191{left:275.940000px;}
.x34_c01191{left:278.100000px;}
.x3c_c01191{left:286.470000px;}
.x44_c01191{left:287.550000px;}
.x4f_c01191{left:288.900000px;}
.x9_c01191{left:290.655000px;}
.x54_c01191{left:294.570000px;}
.x10_c01191{left:295.650000px;}
.x3e_c01191{left:302.940000px;}
.x29_c01191{left:306.450000px;}
.x35_c01191{left:308.340000px;}
.x2_c01191{left:310.770000px;}
.x42_c01191{left:313.740000px;}
.x40_c01191{left:315.090000px;}
.x27_c01191{left:319.410000px;}
.x11_c01191{left:326.700000px;}
.x14_c01191{left:328.860000px;}
.x16_c01191{left:330.480000px;}
.x55_c01191{left:331.560000px;}
.x56_c01191{left:333.180000px;}
.x36_c01191{left:336.690000px;}
.x3_c01191{left:338.850000px;}
.x15_c01191{left:341.550000px;}
.x19_c01191{left:342.900000px;}
.xa_c01191{left:346.729500px;}
.x45_c01191{left:351.540000px;}
.x28_c01191{left:353.970000px;}
.x4b_c01191{left:362.608662px;}
.x25_c01191{left:366.390000px;}
.x43_c01191{left:368.010000px;}
.x49_c01191{left:369.382500px;}
.x2f_c01191{left:371.790000px;}
.x33_c01191{left:373.680000px;}
.x2a_c01191{left:374.760000px;}
.xb_c01191{left:380.523000px;}
.x39_c01191{left:383.940000px;}
.x17_c01191{left:386.100000px;}
.x1a_c01191{left:388.260000px;}
.x30_c01191{left:390.420000px;}
.x13_c01191{left:392.040000px;}
.x4a_c01191{left:393.214740px;}
.x22_c01191{left:395.550000px;}
.x18_c01191{left:397.440000px;}
.x2e_c01191{left:401.760000px;}
.x4_c01191{left:403.110000px;}
.x1f_c01191{left:405.270000px;}
.x31_c01191{left:406.620000px;}
.xc_c01191{left:410.841000px;}
.x26_c01191{left:413.100000px;}
.x4c_c01191{left:417.418325px;}
.x3a_c01191{left:419.040000px;}
.x23_c01191{left:420.930000px;}
.x5_c01191{left:422.010000px;}
.x12_c01191{left:427.680000px;}
.x20_c01191{left:429.840000px;}
.x21_c01191{left:435.240000px;}
.x1b_c01191{left:439.290000px;}
.x47_c01191{left:442.530000px;}
.x24_c01191{left:451.170000px;}
.x1d_c01191{left:453.600000px;}
.x37_c01191{left:457.920000px;}
.xd_c01191{left:460.269000px;}
.x59_c01191{left:463.320000px;}
.x3b_c01191{left:466.830000px;}
.x4d_c01191{left:473.850000px;}
.x46_c01191{left:475.740000px;}
.x61_c01191{left:480.600000px;}
.x1e_c01191{left:483.570000px;}
.x48_c01191{left:487.080000px;}
.x4e_c01191{left:490.050000px;}
.x2b_c01191{left:496.260000px;}
.x60_c01191{left:501.930000px;}
.x62_c01191{left:511.380000px;}
.x5a_c01191{left:527.310000px;}
.x6_c01191{left:528.660000px;}
.x1c_c01191{left:531.090000px;}
.x5d_c01191{left:551.070000px;}
.x5c_c01191{left:580.500000px;}
.x5f_c01191{left:591.570000px;}
.x5e_c01191{left:594.270000px;}
.x5b_c01191{left:595.350000px;}
@media print{
.v0_c01191{vertical-align:0.000000pt;}
.ls0_c01191{letter-spacing:0.000000pt;}
.ws0_c01191{word-spacing:0.000000pt;}
.fse_c01191{font-size:10.666667pt;}
.fs5_c01191{font-size:16.000000pt;}
.fs7_c01191{font-size:21.333333pt;}
.fsc_c01191{font-size:31.999568pt;}
.fs4_c01191{font-size:32.000000pt;}
.fs6_c01191{font-size:37.333333pt;}
.fsa_c01191{font-size:42.666667pt;}
.fsd_c01191{font-size:47.999352pt;}
.fs9_c01191{font-size:53.333333pt;}
.fsf_c01191{font-size:58.666667pt;}
.fs12_c01191{font-size:64.000000pt;}
.fs2_c01191{font-size:64.014110pt;}
.fs3_c01191{font-size:69.333333pt;}
.fs11_c01191{font-size:74.666667pt;}
.fs8_c01191{font-size:80.000000pt;}
.fsb_c01191{font-size:85.333333pt;}
.fs10_c01191{font-size:96.000000pt;}
.fs0_c01191{font-size:112.000000pt;}
.fs1_c01191{font-size:117.333333pt;}
.y0_c01191{bottom:0.000000pt;}
.y39_c01191{bottom:289.813333pt;}
.y36_c01191{bottom:416.028000pt;}
.y38_c01191{bottom:416.880000pt;}
.y37_c01191{bottom:423.600000pt;}
.y35_c01191{bottom:429.373333pt;}
.y32_c01191{bottom:435.961333pt;}
.y41_c01191{bottom:442.553333pt;}
.y34_c01191{bottom:443.402667pt;}
.y33_c01191{bottom:448.098667pt;}
.y2c_c01191{bottom:448.397333pt;}
.y30_c01191{bottom:448.693239pt;}
.y31_c01191{bottom:448.700009pt;}
.y2d_c01191{bottom:449.734613pt;}
.y2e_c01191{bottom:451.198313pt;}
.y2f_c01191{bottom:451.737593pt;}
.y40_c01191{bottom:458.517333pt;}
.y2b_c01191{bottom:463.200000pt;}
.y2a_c01191{bottom:503.641333pt;}
.y29_c01191{bottom:599.434667pt;}
.y3f_c01191{bottom:600.145333pt;}
.y3b_c01191{bottom:601.294667pt;}
.y25_c01191{bottom:636.357333pt;}
.y28_c01191{bottom:637.556000pt;}
.y26_c01191{bottom:647.280000pt;}
.y27_c01191{bottom:653.030667pt;}
.y3a_c01191{bottom:666.366667pt;}
.y24_c01191{bottom:667.102667pt;}
.y22_c01191{bottom:668.809333pt;}
.y23_c01191{bottom:672.612000pt;}
.y20_c01191{bottom:695.278667pt;}
.y21_c01191{bottom:695.864000pt;}
.y1d_c01191{bottom:699.353333pt;}
.y1f_c01191{bottom:699.385333pt;}
.y1a_c01191{bottom:703.440000pt;}
.y1c_c01191{bottom:704.160000pt;}
.y1e_c01191{bottom:706.369333pt;}
.y1b_c01191{bottom:709.440000pt;}
.y17_c01191{bottom:727.665333pt;}
.y16_c01191{bottom:731.880000pt;}
.y13_c01191{bottom:757.269333pt;}
.y15_c01191{bottom:758.992000pt;}
.y18_c01191{bottom:761.274667pt;}
.y14_c01191{bottom:762.116000pt;}
.y12_c01191{bottom:762.377333pt;}
.y19_c01191{bottom:763.276000pt;}
.y11_c01191{bottom:767.165333pt;}
.y3e_c01191{bottom:790.022667pt;}
.y10_c01191{bottom:792.912000pt;}
.yf_c01191{bottom:798.833333pt;}
.ye_c01191{bottom:843.753333pt;}
.yd_c01191{bottom:846.830667pt;}
.yc_c01191{bottom:856.560000pt;}
.y3d_c01191{bottom:898.918667pt;}
.ya_c01191{bottom:903.217333pt;}
.yb_c01191{bottom:903.364000pt;}
.y3c_c01191{bottom:929.764000pt;}
.y9_c01191{bottom:932.772436pt;}
.y8_c01191{bottom:933.695092pt;}
.y7_c01191{bottom:934.261028pt;}
.y6_c01191{bottom:934.891840pt;}
.y5_c01191{bottom:935.938564pt;}
.y4_c01191{bottom:936.574584pt;}
.y3_c01191{bottom:937.684000pt;}
.y2_c01191{bottom:1024.470667pt;}
.y1_c01191{bottom:1029.480000pt;}
.h10_c01191{height:10.666667pt;}
.h7_c01191{height:16.000000pt;}
.h9_c01191{height:21.333333pt;}
.he_c01191{height:31.999568pt;}
.h6_c01191{height:32.000000pt;}
.h8_c01191{height:37.333333pt;}
.hc_c01191{height:42.666667pt;}
.hf_c01191{height:47.999352pt;}
.hb_c01191{height:53.333333pt;}
.h11_c01191{height:58.666667pt;}
.h14_c01191{height:64.000000pt;}
.h4_c01191{height:64.014110pt;}
.h5_c01191{height:69.333333pt;}
.h13_c01191{height:74.666667pt;}
.ha_c01191{height:80.000000pt;}
.hd_c01191{height:85.333333pt;}
.h12_c01191{height:96.000000pt;}
.h2_c01191{height:112.000000pt;}
.h3_c01191{height:117.333333pt;}
.h1_c01191{height:1118.666667pt;}
.h0_c01191{height:1118.880000pt;}
.w0_c01191{width:803.733333pt;}
.w1_c01191{width:804.000000pt;}
.x0_c01191{left:0.000000pt;}
.xe_c01191{left:164.640000pt;}
.x1_c01191{left:173.040000pt;}
.x7_c01191{left:175.244000pt;}
.x51_c01191{left:192.960000pt;}
.x32_c01191{left:194.880000pt;}
.x41_c01191{left:196.320000pt;}
.x53_c01191{left:199.440000pt;}
.x52_c01191{left:202.320000pt;}
.x2c_c01191{left:205.680000pt;}
.x2d_c01191{left:209.520000pt;}
.x57_c01191{left:210.960000pt;}
.x3f_c01191{left:213.600000pt;}
.xf_c01191{left:224.400000pt;}
.x3d_c01191{left:225.360000pt;}
.x8_c01191{left:228.073333pt;}
.x50_c01191{left:236.640000pt;}
.x38_c01191{left:244.080000pt;}
.x58_c01191{left:245.280000pt;}
.x34_c01191{left:247.200000pt;}
.x3c_c01191{left:254.640000pt;}
.x44_c01191{left:255.600000pt;}
.x4f_c01191{left:256.800000pt;}
.x9_c01191{left:258.360000pt;}
.x54_c01191{left:261.840000pt;}
.x10_c01191{left:262.800000pt;}
.x3e_c01191{left:269.280000pt;}
.x29_c01191{left:272.400000pt;}
.x35_c01191{left:274.080000pt;}
.x2_c01191{left:276.240000pt;}
.x42_c01191{left:278.880000pt;}
.x40_c01191{left:280.080000pt;}
.x27_c01191{left:283.920000pt;}
.x11_c01191{left:290.400000pt;}
.x14_c01191{left:292.320000pt;}
.x16_c01191{left:293.760000pt;}
.x55_c01191{left:294.720000pt;}
.x56_c01191{left:296.160000pt;}
.x36_c01191{left:299.280000pt;}
.x3_c01191{left:301.200000pt;}
.x15_c01191{left:303.600000pt;}
.x19_c01191{left:304.800000pt;}
.xa_c01191{left:308.204000pt;}
.x45_c01191{left:312.480000pt;}
.x28_c01191{left:314.640000pt;}
.x4b_c01191{left:322.318811pt;}
.x25_c01191{left:325.680000pt;}
.x43_c01191{left:327.120000pt;}
.x49_c01191{left:328.340000pt;}
.x2f_c01191{left:330.480000pt;}
.x33_c01191{left:332.160000pt;}
.x2a_c01191{left:333.120000pt;}
.xb_c01191{left:338.242667pt;}
.x39_c01191{left:341.280000pt;}
.x17_c01191{left:343.200000pt;}
.x1a_c01191{left:345.120000pt;}
.x30_c01191{left:347.040000pt;}
.x13_c01191{left:348.480000pt;}
.x4a_c01191{left:349.524213pt;}
.x22_c01191{left:351.600000pt;}
.x18_c01191{left:353.280000pt;}
.x2e_c01191{left:357.120000pt;}
.x4_c01191{left:358.320000pt;}
.x1f_c01191{left:360.240000pt;}
.x31_c01191{left:361.440000pt;}
.xc_c01191{left:365.192000pt;}
.x26_c01191{left:367.200000pt;}
.x4c_c01191{left:371.038511pt;}
.x3a_c01191{left:372.480000pt;}
.x23_c01191{left:374.160000pt;}
.x5_c01191{left:375.120000pt;}
.x12_c01191{left:380.160000pt;}
.x20_c01191{left:382.080000pt;}
.x21_c01191{left:386.880000pt;}
.x1b_c01191{left:390.480000pt;}
.x47_c01191{left:393.360000pt;}
.x24_c01191{left:401.040000pt;}
.x1d_c01191{left:403.200000pt;}
.x37_c01191{left:407.040000pt;}
.xd_c01191{left:409.128000pt;}
.x59_c01191{left:411.840000pt;}
.x3b_c01191{left:414.960000pt;}
.x4d_c01191{left:421.200000pt;}
.x46_c01191{left:422.880000pt;}
.x61_c01191{left:427.200000pt;}
.x1e_c01191{left:429.840000pt;}
.x48_c01191{left:432.960000pt;}
.x4e_c01191{left:435.600000pt;}
.x2b_c01191{left:441.120000pt;}
.x60_c01191{left:446.160000pt;}
.x62_c01191{left:454.560000pt;}
.x5a_c01191{left:468.720000pt;}
.x6_c01191{left:469.920000pt;}
.x1c_c01191{left:472.080000pt;}
.x5d_c01191{left:489.840000pt;}
.x5c_c01191{left:516.000000pt;}
.x5f_c01191{left:525.840000pt;}
.x5e_c01191{left:528.240000pt;}
.x5b_c01191{left:529.200000pt;}
}





/* 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_c01192 {
    display:none;
  }
  .loading-indicator_c01192.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01192 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_c01192 { 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_c01192" -> "#page-container .classname_c01192")
 */
.pf_c01192 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01192 { /* 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_c01192.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01192 { /* 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_c01192 { /* 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_c01192 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01192 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01192 {overflow:visible;}
  }
}
.c_c01192 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01192 { /* 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_c01192:after { /* webkit #35443 */
  content: '';
}
.t_c01192:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01192 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 */
}
.__c01192 { /* 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_c01192 { /* info for Javascript */
  display:none;
}
.l_c01192 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01192 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01192 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01192: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_c01192 {
    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_c01192.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01192.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_c01192 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01192{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01192;src:url('chunks/assets/font_91338875028c1bc55e42d757.woff2')format("woff");}.ff1_c01192{font-family:ff1_c01192;line-height:1.000000;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;}
.m1a_c01192{transform:matrix(0.146860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146860,0.000000,0.000000,0.250000,0,0);}
.m1e_c01192{transform:matrix(0.162980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162980,0.000000,0.000000,0.250000,0,0);}
.m30_c01192{transform:matrix(0.178460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178460,0.000000,0.000000,0.250000,0,0);}
.m24_c01192{transform:matrix(0.188775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188775,0.000000,0.000000,0.250000,0,0);}
.m21_c01192{transform:matrix(0.193010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193010,0.000000,0.000000,0.250000,0,0);}
.m1c_c01192{transform:matrix(0.195775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195775,0.000000,0.000000,0.250000,0,0);}
.m27_c01192{transform:matrix(0.204590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204590,0.000000,0.000000,0.250000,0,0);}
.m25_c01192{transform:matrix(0.206715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206715,0.000000,0.000000,0.250000,0,0);}
.m5_c01192{transform:matrix(0.207015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207015,0.000000,0.000000,0.250000,0,0);}
.m26_c01192{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m1_c01192{transform:matrix(0.209120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209120,0.000000,0.000000,0.250000,0,0);}
.m23_c01192{transform:matrix(0.209385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209385,0.000000,0.000000,0.250000,0,0);}
.m28_c01192{transform:matrix(0.209585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209585,0.000000,0.000000,0.250000,0,0);}
.m1b_c01192{transform:matrix(0.210705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210705,0.000000,0.000000,0.250000,0,0);}
.m4_c01192{transform:matrix(0.215170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215170,0.000000,0.000000,0.250000,0,0);}
.m19_c01192{transform:matrix(0.216865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216865,0.000000,0.000000,0.250000,0,0);}
.m8_c01192{transform:matrix(0.220340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220340,0.000000,0.000000,0.250000,0,0);}
.mc_c01192{transform:matrix(0.221452,0.001107,-0.001250,0.249997,0,0);-ms-transform:matrix(0.221452,0.001107,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.221452,0.001107,-0.001250,0.249997,0,0);}
.m13_c01192{transform:matrix(0.222122,0.001111,-0.001250,0.249997,0,0);-ms-transform:matrix(0.222122,0.001111,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.222122,0.001111,-0.001250,0.249997,0,0);}
.m2_c01192{transform:matrix(0.224790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224790,0.000000,0.000000,0.250000,0,0);}
.m7_c01192{transform:matrix(0.225810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225810,0.000000,0.000000,0.250000,0,0);}
.m0_c01192{transform:matrix(0.226585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226585,0.000000,0.000000,0.250000,0,0);}
.m1d_c01192{transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);}
.m16_c01192{transform:matrix(0.230915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230915,0.000000,0.000000,0.250000,0,0);}
.m22_c01192{transform:matrix(0.235720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235720,0.000000,0.000000,0.250000,0,0);}
.m1f_c01192{transform:matrix(0.237200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237200,0.000000,0.000000,0.250000,0,0);}
.m9_c01192{transform:matrix(0.238560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238560,0.000000,0.000000,0.250000,0,0);}
.m11_c01192{transform:matrix(0.244307,0.001222,-0.001250,0.249997,0,0);-ms-transform:matrix(0.244307,0.001222,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.244307,0.001222,-0.001250,0.249997,0,0);}
.md_c01192{transform:matrix(0.245802,0.001229,-0.001250,0.249997,0,0);-ms-transform:matrix(0.245802,0.001229,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.245802,0.001229,-0.001250,0.249997,0,0);}
.m12_c01192{transform:matrix(0.246297,0.001231,-0.001250,0.249997,0,0);-ms-transform:matrix(0.246297,0.001231,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.246297,0.001231,-0.001250,0.249997,0,0);}
.m6_c01192{transform:matrix(0.246985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246985,0.000000,0.000000,0.250000,0,0);}
.m10_c01192{transform:matrix(0.247387,0.001237,-0.001250,0.249997,0,0);-ms-transform:matrix(0.247387,0.001237,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.247387,0.001237,-0.001250,0.249997,0,0);}
.m15_c01192{transform:matrix(0.248675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248675,0.000000,0.000000,0.250000,0,0);}
.mf_c01192{transform:matrix(0.250662,0.001253,-0.001250,0.249997,0,0);-ms-transform:matrix(0.250662,0.001253,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.250662,0.001253,-0.001250,0.249997,0,0);}
.me_c01192{transform:matrix(0.251387,0.001257,-0.001250,0.249997,0,0);-ms-transform:matrix(0.251387,0.001257,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.251387,0.001257,-0.001250,0.249997,0,0);}
.m2c_c01192{transform:matrix(0.252115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252115,0.000000,0.000000,0.250000,0,0);}
.m20_c01192{transform:matrix(0.253260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253260,0.000000,0.000000,0.250000,0,0);}
.m18_c01192{transform:matrix(0.254465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254465,0.000000,0.000000,0.250000,0,0);}
.m17_c01192{transform:matrix(0.254710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254710,0.000000,0.000000,0.250000,0,0);}
.mb_c01192{transform:matrix(0.256882,0.001284,-0.001250,0.249997,0,0);-ms-transform:matrix(0.256882,0.001284,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.256882,0.001284,-0.001250,0.249997,0,0);}
.m14_c01192{transform:matrix(0.259332,0.001297,-0.001250,0.249997,0,0);-ms-transform:matrix(0.259332,0.001297,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.259332,0.001297,-0.001250,0.249997,0,0);}
.m2d_c01192{transform:matrix(0.262010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262010,0.000000,0.000000,0.250000,0,0);}
.m2a_c01192{transform:matrix(0.264115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264115,0.000000,0.000000,0.250000,0,0);}
.m2e_c01192{transform:matrix(0.266010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266010,0.000000,0.000000,0.250000,0,0);}
.m29_c01192{transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);}
.m2b_c01192{transform:matrix(0.268460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268460,0.000000,0.000000,0.250000,0,0);}
.m3_c01192{transform:matrix(0.273440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273440,0.000000,0.000000,0.250000,0,0);}
.m2f_c01192{transform:matrix(0.284730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284730,0.000000,0.000000,0.250000,0,0);}
.ma_c01192{transform:matrix(0.367905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367905,0.000000,0.000000,0.250000,0,0);}
.v0_c01192{vertical-align:0.000000px;}
.ls0_c01192{letter-spacing:0.000000px;}
.sc__c01192{text-shadow:none;}
.sc0_c01192{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__c01192{-webkit-text-stroke:0px transparent;}
.sc0_c01192{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01192{word-spacing:0.000000px;}
.fc0_c01192{color:transparent;}
.fs1_c01192{font-size:60.000000px;}
.fs4_c01192{font-size:72.000000px;}
.fs3_c01192{font-size:78.000000px;}
.fs2_c01192{font-size:78.000975px;}
.fs0_c01192{font-size:84.000000px;}
.fs5_c01192{font-size:96.000000px;}
.fs6_c01192{font-size:114.000000px;}
.y0_c01192{bottom:0.000000px;}
.y12_c01192{bottom:647.070000px;}
.y11_c01192{bottom:792.045000px;}
.y10_c01192{bottom:826.353000px;}
.yf_c01192{bottom:863.754000px;}
.ye_c01192{bottom:898.255500px;}
.yd_c01192{bottom:1000.838677px;}
.yc_c01192{bottom:1001.002042px;}
.yb_c01192{bottom:1001.334150px;}
.ya_c01192{bottom:1001.554215px;}
.y9_c01192{bottom:1001.884957px;}
.y8_c01192{bottom:1002.272348px;}
.y7_c01192{bottom:1002.662482px;}
.y6_c01192{bottom:1002.881265px;}
.y5_c01192{bottom:1003.048657px;}
.y4_c01192{bottom:1003.590000px;}
.y3_c01192{bottom:1039.641000px;}
.y2_c01192{bottom:1073.880000px;}
.y1_c01192{bottom:1141.690500px;}
.h3_c01192{height:60.000000px;}
.h6_c01192{height:72.000000px;}
.h5_c01192{height:78.000000px;}
.h4_c01192{height:78.000975px;}
.h2_c01192{height:84.000000px;}
.h7_c01192{height:96.000000px;}
.h8_c01192{height:114.000000px;}
.h1_c01192{height:1258.500000px;}
.h0_c01192{height:1258.740000px;}
.w0_c01192{width:904.200000px;}
.w1_c01192{width:904.500000px;}
.x0_c01192{left:0.000000px;}
.x1_c01192{left:141.750000px;}
.x2_c01192{left:230.040000px;}
.x25_c01192{left:238.410000px;}
.xb_c01192{left:239.760000px;}
.x19_c01192{left:282.960000px;}
.x1b_c01192{left:305.640000px;}
.x13_c01192{left:316.710000px;}
.x3_c01192{left:338.310000px;}
.x1c_c01192{left:349.110000px;}
.xc_c01192{left:371.713500px;}
.x4_c01192{left:392.040000px;}
.x1a_c01192{left:394.200000px;}
.xd_c01192{left:415.470000px;}
.x21_c01192{left:438.210000px;}
.x14_c01192{left:448.200000px;}
.x1d_c01192{left:460.080000px;}
.x22_c01192{left:482.220000px;}
.x5_c01192{left:493.560000px;}
.x1e_c01192{left:505.440000px;}
.x23_c01192{left:516.510000px;}
.x15_c01192{left:537.030000px;}
.x24_c01192{left:547.560000px;}
.xe_c01192{left:570.975000px;}
.x16_c01192{left:582.930000px;}
.x1f_c01192{left:593.190000px;}
.x6_c01192{left:615.600000px;}
.xf_c01192{left:637.123500px;}
.x17_c01192{left:649.080000px;}
.x7_c01192{left:659.340000px;}
.x10_c01192{left:681.136500px;}
.x8_c01192{left:693.900000px;}
.x18_c01192{left:703.080000px;}
.x11_c01192{left:747.558000px;}
.x20_c01192{left:759.510000px;}
.x9_c01192{left:770.310000px;}
.x12_c01192{left:780.231000px;}
.xa_c01192{left:803.250000px;}
@media print{
.v0_c01192{vertical-align:0.000000pt;}
.ls0_c01192{letter-spacing:0.000000pt;}
.ws0_c01192{word-spacing:0.000000pt;}
.fs1_c01192{font-size:53.333333pt;}
.fs4_c01192{font-size:64.000000pt;}
.fs3_c01192{font-size:69.333333pt;}
.fs2_c01192{font-size:69.334200pt;}
.fs0_c01192{font-size:74.666667pt;}
.fs5_c01192{font-size:85.333333pt;}
.fs6_c01192{font-size:101.333333pt;}
.y0_c01192{bottom:0.000000pt;}
.y12_c01192{bottom:575.173333pt;}
.y11_c01192{bottom:704.040000pt;}
.y10_c01192{bottom:734.536000pt;}
.yf_c01192{bottom:767.781333pt;}
.ye_c01192{bottom:798.449333pt;}
.yd_c01192{bottom:889.634380pt;}
.yc_c01192{bottom:889.779593pt;}
.yb_c01192{bottom:890.074800pt;}
.ya_c01192{bottom:890.270413pt;}
.y9_c01192{bottom:890.564407pt;}
.y8_c01192{bottom:890.908753pt;}
.y7_c01192{bottom:891.255540pt;}
.y6_c01192{bottom:891.450013pt;}
.y5_c01192{bottom:891.598807pt;}
.y4_c01192{bottom:892.080000pt;}
.y3_c01192{bottom:924.125333pt;}
.y2_c01192{bottom:954.560000pt;}
.y1_c01192{bottom:1014.836000pt;}
.h3_c01192{height:53.333333pt;}
.h6_c01192{height:64.000000pt;}
.h5_c01192{height:69.333333pt;}
.h4_c01192{height:69.334200pt;}
.h2_c01192{height:74.666667pt;}
.h7_c01192{height:85.333333pt;}
.h8_c01192{height:101.333333pt;}
.h1_c01192{height:1118.666667pt;}
.h0_c01192{height:1118.880000pt;}
.w0_c01192{width:803.733333pt;}
.w1_c01192{width:804.000000pt;}
.x0_c01192{left:0.000000pt;}
.x1_c01192{left:126.000000pt;}
.x2_c01192{left:204.480000pt;}
.x25_c01192{left:211.920000pt;}
.xb_c01192{left:213.120000pt;}
.x19_c01192{left:251.520000pt;}
.x1b_c01192{left:271.680000pt;}
.x13_c01192{left:281.520000pt;}
.x3_c01192{left:300.720000pt;}
.x1c_c01192{left:310.320000pt;}
.xc_c01192{left:330.412000pt;}
.x4_c01192{left:348.480000pt;}
.x1a_c01192{left:350.400000pt;}
.xd_c01192{left:369.306667pt;}
.x21_c01192{left:389.520000pt;}
.x14_c01192{left:398.400000pt;}
.x1d_c01192{left:408.960000pt;}
.x22_c01192{left:428.640000pt;}
.x5_c01192{left:438.720000pt;}
.x1e_c01192{left:449.280000pt;}
.x23_c01192{left:459.120000pt;}
.x15_c01192{left:477.360000pt;}
.x24_c01192{left:486.720000pt;}
.xe_c01192{left:507.533333pt;}
.x16_c01192{left:518.160000pt;}
.x1f_c01192{left:527.280000pt;}
.x6_c01192{left:547.200000pt;}
.xf_c01192{left:566.332000pt;}
.x17_c01192{left:576.960000pt;}
.x7_c01192{left:586.080000pt;}
.x10_c01192{left:605.454667pt;}
.x8_c01192{left:616.800000pt;}
.x18_c01192{left:624.960000pt;}
.x11_c01192{left:664.496000pt;}
.x20_c01192{left:675.120000pt;}
.x9_c01192{left:684.720000pt;}
.x12_c01192{left:693.538667pt;}
.xa_c01192{left:714.000000pt;}
}





/* 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_c01193 {
    display:none;
  }
  .loading-indicator_c01193.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01193 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_c01193 { 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_c01193" -> "#page-container .classname_c01193")
 */
.pf_c01193 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01193 { /* 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_c01193.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01193 { /* 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_c01193 { /* 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_c01193 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01193 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01193 {overflow:visible;}
  }
}
.c_c01193 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01193 { /* 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_c01193:after { /* webkit #35443 */
  content: '';
}
.t_c01193:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01193 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 */
}
.__c01193 { /* 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_c01193 { /* info for Javascript */
  display:none;
}
.l_c01193 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01193 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01193 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01193: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_c01193 {
    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_c01193.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01193.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_c01193 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01193{font-family:sans-serif;visibility:hidden;}
.sc__c01193{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01193{-webkit-text-stroke:0px transparent;}
}
.y0_c01193{bottom:0.000000px;}
.h1_c01193{height:1258.500000px;}
.h0_c01193{height:1258.740000px;}
.w0_c01193{width:904.200000px;}
.w1_c01193{width:904.500000px;}
.x0_c01193{left:0.000000px;}
@media print{
.y0_c01193{bottom:0.000000pt;}
.h1_c01193{height:1118.666667pt;}
.h0_c01193{height:1118.880000pt;}
.w0_c01193{width:803.733333pt;}
.w1_c01193{width:804.000000pt;}
.x0_c01193{left:0.000000pt;}
}





/* 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_c01194 {
    display:none;
  }
  .loading-indicator_c01194.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01194 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_c01194 { 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_c01194" -> "#page-container .classname_c01194")
 */
.pf_c01194 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01194 { /* 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_c01194.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01194 { /* 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_c01194 { /* 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_c01194 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01194 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01194 {overflow:visible;}
  }
}
.c_c01194 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01194 { /* 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_c01194:after { /* webkit #35443 */
  content: '';
}
.t_c01194:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01194 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 */
}
.__c01194 { /* 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_c01194 { /* info for Javascript */
  display:none;
}
.l_c01194 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01194 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01194 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01194: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_c01194 {
    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_c01194.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01194.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_c01194 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01194{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01194;src:url('chunks/assets/font_cfe63ee56e9e10a97d33a3db.woff2')format("woff");}.ff1_c01194{font-family:ff1_c01194;line-height:1.000000;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;}
.m73_c01194{transform:matrix(0.017343,0.000642,-0.009253,0.249829,0,0);-ms-transform:matrix(0.017343,0.000642,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.017343,0.000642,-0.009253,0.249829,0,0);}
.mab_c01194{transform:matrix(0.020438,0.000839,-0.010252,0.249790,0,0);-ms-transform:matrix(0.020438,0.000839,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.020438,0.000839,-0.010252,0.249790,0,0);}
.mac_c01194{transform:matrix(0.023121,0.000949,-0.010252,0.249790,0,0);-ms-transform:matrix(0.023121,0.000949,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.023121,0.000949,-0.010252,0.249790,0,0);}
.m55_c01194{transform:matrix(0.054056,0.001786,-0.008254,0.249864,0,0);-ms-transform:matrix(0.054056,0.001786,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.054056,0.001786,-0.008254,0.249864,0,0);}
.m10e_c01194{transform:matrix(0.074164,0.002747,-0.009253,0.249829,0,0);-ms-transform:matrix(0.074164,0.002747,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.074164,0.002747,-0.009253,0.249829,0,0);}
.m81_c01194{transform:matrix(0.095350,0.003531,-0.009253,0.249829,0,0);-ms-transform:matrix(0.095350,0.003531,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.095350,0.003531,-0.009253,0.249829,0,0);}
.m60_c01194{transform:matrix(0.100570,0.003322,-0.008254,0.249864,0,0);-ms-transform:matrix(0.100570,0.003322,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.100570,0.003322,-0.008254,0.249864,0,0);}
.me9_c01194{transform:matrix(0.117509,0.004352,-0.009253,0.249829,0,0);-ms-transform:matrix(0.117509,0.004352,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.117509,0.004352,-0.009253,0.249829,0,0);}
.m2_c01194{transform:matrix(0.119873,0.004560,-0.009503,0.249819,0,0);-ms-transform:matrix(0.119873,0.004560,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.119873,0.004560,-0.009503,0.249819,0,0);}
.m105_c01194{transform:matrix(0.126353,0.004680,-0.009253,0.249829,0,0);-ms-transform:matrix(0.126353,0.004680,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.126353,0.004680,-0.009253,0.249829,0,0);}
.m1e_c01194{transform:matrix(0.131474,0.004475,-0.008504,0.249855,0,0);-ms-transform:matrix(0.131474,0.004475,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.131474,0.004475,-0.008504,0.249855,0,0);}
.m5_c01194{transform:matrix(0.135852,0.006663,-0.012248,0.249700,0,0);-ms-transform:matrix(0.135852,0.006663,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.135852,0.006663,-0.012248,0.249700,0,0);}
.m3_c01194{transform:matrix(0.136776,0.006709,-0.012248,0.249700,0,0);-ms-transform:matrix(0.136776,0.006709,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.136776,0.006709,-0.012248,0.249700,0,0);}
.m10a_c01194{transform:matrix(0.144811,0.005363,-0.009253,0.249829,0,0);-ms-transform:matrix(0.144811,0.005363,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.144811,0.005363,-0.009253,0.249829,0,0);}
.m36_c01194{transform:matrix(0.147658,0.004282,-0.007247,0.249895,0,0);-ms-transform:matrix(0.147658,0.004282,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.147658,0.004282,-0.007247,0.249895,0,0);}
.m10c_c01194{transform:matrix(0.156937,0.005812,-0.009253,0.249829,0,0);-ms-transform:matrix(0.156937,0.005812,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.156937,0.005812,-0.009253,0.249829,0,0);}
.me1_c01194{transform:matrix(0.165541,0.006131,-0.009253,0.249829,0,0);-ms-transform:matrix(0.165541,0.006131,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.165541,0.006131,-0.009253,0.249829,0,0);}
.m65_c01194{transform:matrix(0.166326,0.006160,-0.009253,0.249829,0,0);-ms-transform:matrix(0.166326,0.006160,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.166326,0.006160,-0.009253,0.249829,0,0);}
.me7_c01194{transform:matrix(0.169219,0.006267,-0.009253,0.249829,0,0);-ms-transform:matrix(0.169219,0.006267,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.169219,0.006267,-0.009253,0.249829,0,0);}
.m1_c01194{transform:matrix(0.169912,0.006463,-0.009503,0.249819,0,0);-ms-transform:matrix(0.169912,0.006463,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.169912,0.006463,-0.009503,0.249819,0,0);}
.mbb_c01194{transform:matrix(0.174983,0.006131,-0.008753,0.249847,0,0);-ms-transform:matrix(0.174983,0.006131,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.174983,0.006131,-0.008753,0.249847,0,0);}
.m74_c01194{transform:matrix(0.177079,0.006558,-0.009253,0.249829,0,0);-ms-transform:matrix(0.177079,0.006558,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.177079,0.006558,-0.009253,0.249829,0,0);}
.ma_c01194{transform:matrix(0.179568,0.006471,-0.009003,0.249838,0,0);-ms-transform:matrix(0.179568,0.006471,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.179568,0.006471,-0.009003,0.249838,0,0);}
.md1_c01194{transform:matrix(0.180903,0.007424,-0.010252,0.249790,0,0);-ms-transform:matrix(0.180903,0.007424,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.180903,0.007424,-0.010252,0.249790,0,0);}
.m3f_c01194{transform:matrix(0.183985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183985,0.000000,0.000000,0.250000,0,0);}
.mcf_c01194{transform:matrix(0.184062,0.006449,-0.008753,0.249847,0,0);-ms-transform:matrix(0.184062,0.006449,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.184062,0.006449,-0.008753,0.249847,0,0);}
.m90_c01194{transform:matrix(0.188182,0.007723,-0.010252,0.249790,0,0);-ms-transform:matrix(0.188182,0.007723,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.188182,0.007723,-0.010252,0.249790,0,0);}
.m98_c01194{transform:matrix(0.189216,0.007766,-0.010252,0.249790,0,0);-ms-transform:matrix(0.189216,0.007766,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.189216,0.007766,-0.010252,0.249790,0,0);}
.mff_c01194{transform:matrix(0.189813,0.007220,-0.009503,0.249819,0,0);-ms-transform:matrix(0.189813,0.007220,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.189813,0.007220,-0.009503,0.249819,0,0);}
.m37_c01194{transform:matrix(0.191370,0.005550,-0.007247,0.249895,0,0);-ms-transform:matrix(0.191370,0.005550,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.191370,0.005550,-0.007247,0.249895,0,0);}
.m7c_c01194{transform:matrix(0.193962,0.007184,-0.009253,0.249829,0,0);-ms-transform:matrix(0.193962,0.007184,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.193962,0.007184,-0.009253,0.249829,0,0);}
.mea_c01194{transform:matrix(0.193989,0.006408,-0.008254,0.249864,0,0);-ms-transform:matrix(0.193989,0.006408,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.193989,0.006408,-0.008254,0.249864,0,0);}
.m56_c01194{transform:matrix(0.199206,0.006580,-0.008254,0.249864,0,0);-ms-transform:matrix(0.199206,0.006580,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.199206,0.006580,-0.008254,0.249864,0,0);}
.ma1_c01194{transform:matrix(0.199947,0.008206,-0.010252,0.249790,0,0);-ms-transform:matrix(0.199947,0.008206,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.199947,0.008206,-0.010252,0.249790,0,0);}
.m5e_c01194{transform:matrix(0.202070,0.006675,-0.008254,0.249864,0,0);-ms-transform:matrix(0.202070,0.006675,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.202070,0.006675,-0.008254,0.249864,0,0);}
.m42_c01194{transform:matrix(0.205326,0.006988,-0.008504,0.249855,0,0);-ms-transform:matrix(0.205326,0.006988,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.205326,0.006988,-0.008504,0.249855,0,0);}
.m5c_c01194{transform:matrix(0.205708,0.006795,-0.008254,0.249864,0,0);-ms-transform:matrix(0.205708,0.006795,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.205708,0.006795,-0.008254,0.249864,0,0);}
.m6c_c01194{transform:matrix(0.207293,0.007678,-0.009253,0.249829,0,0);-ms-transform:matrix(0.207293,0.007678,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.207293,0.007678,-0.009253,0.249829,0,0);}
.ma8_c01194{transform:matrix(0.210828,0.008653,-0.010252,0.249790,0,0);-ms-transform:matrix(0.210828,0.008653,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.210828,0.008653,-0.010252,0.249790,0,0);}
.md9_c01194{transform:matrix(0.212246,0.008711,-0.010252,0.249790,0,0);-ms-transform:matrix(0.212246,0.008711,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.212246,0.008711,-0.010252,0.249790,0,0);}
.m70_c01194{transform:matrix(0.214228,0.007934,-0.009253,0.249829,0,0);-ms-transform:matrix(0.214228,0.007934,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.214228,0.007934,-0.009253,0.249829,0,0);}
.m26_c01194{transform:matrix(0.214561,0.007302,-0.008504,0.249855,0,0);-ms-transform:matrix(0.214561,0.007302,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.214561,0.007302,-0.008504,0.249855,0,0);}
.m95_c01194{transform:matrix(0.216153,0.008871,-0.010252,0.249790,0,0);-ms-transform:matrix(0.216153,0.008871,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.216153,0.008871,-0.010252,0.249790,0,0);}
.mf_c01194{transform:matrix(0.217139,0.007390,-0.008504,0.249855,0,0);-ms-transform:matrix(0.217139,0.007390,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.217139,0.007390,-0.008504,0.249855,0,0);}
.mbc_c01194{transform:matrix(0.218046,0.008076,-0.009253,0.249829,0,0);-ms-transform:matrix(0.218046,0.008076,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.218046,0.008076,-0.009253,0.249829,0,0);}
.mc4_c01194{transform:matrix(0.218061,0.007640,-0.008753,0.249847,0,0);-ms-transform:matrix(0.218061,0.007640,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.218061,0.007640,-0.008753,0.249847,0,0);}
.m6b_c01194{transform:matrix(0.218175,0.008081,-0.009253,0.249829,0,0);-ms-transform:matrix(0.218175,0.008081,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.218175,0.008081,-0.009253,0.249829,0,0);}
.mf3_c01194{transform:matrix(0.218831,0.007229,-0.008254,0.249864,0,0);-ms-transform:matrix(0.218831,0.007229,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.218831,0.007229,-0.008254,0.249864,0,0);}
.md0_c01194{transform:matrix(0.218846,0.007667,-0.008753,0.249847,0,0);-ms-transform:matrix(0.218846,0.007667,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.218846,0.007667,-0.008753,0.249847,0,0);}
.m41_c01194{transform:matrix(0.221517,0.007539,-0.008504,0.249855,0,0);-ms-transform:matrix(0.221517,0.007539,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.221517,0.007539,-0.008504,0.249855,0,0);}
.m100_c01194{transform:matrix(0.221720,0.008434,-0.009503,0.249819,0,0);-ms-transform:matrix(0.221720,0.008434,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.221720,0.008434,-0.009503,0.249819,0,0);}
.m76_c01194{transform:matrix(0.223162,0.008265,-0.009253,0.249829,0,0);-ms-transform:matrix(0.223162,0.008265,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.223162,0.008265,-0.009253,0.249829,0,0);}
.md5_c01194{transform:matrix(0.223782,0.009184,-0.010252,0.249790,0,0);-ms-transform:matrix(0.223782,0.009184,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.223782,0.009184,-0.010252,0.249790,0,0);}
.md8_c01194{transform:matrix(0.226554,0.009298,-0.010252,0.249790,0,0);-ms-transform:matrix(0.226554,0.009298,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.226554,0.009298,-0.010252,0.249790,0,0);}
.m97_c01194{transform:matrix(0.226649,0.009302,-0.010252,0.249790,0,0);-ms-transform:matrix(0.226649,0.009302,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.226649,0.009302,-0.010252,0.249790,0,0);}
.m4_c01194{transform:matrix(0.228061,0.011186,-0.012248,0.249700,0,0);-ms-transform:matrix(0.228061,0.011186,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.228061,0.011186,-0.012248,0.249700,0,0);}
.mb1_c01194{transform:matrix(0.228478,0.009377,-0.010252,0.249790,0,0);-ms-transform:matrix(0.228478,0.009377,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.228478,0.009377,-0.010252,0.249790,0,0);}
.m99_c01194{transform:matrix(0.228847,0.009392,-0.010252,0.249790,0,0);-ms-transform:matrix(0.228847,0.009392,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.228847,0.009392,-0.010252,0.249790,0,0);}
.m10d_c01194{transform:matrix(0.230287,0.008529,-0.009253,0.249829,0,0);-ms-transform:matrix(0.230287,0.008529,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.230287,0.008529,-0.009253,0.249829,0,0);}
.mdb_c01194{transform:matrix(0.230336,0.009453,-0.010252,0.249790,0,0);-ms-transform:matrix(0.230336,0.009453,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.230336,0.009453,-0.010252,0.249790,0,0);}
.m94_c01194{transform:matrix(0.230441,0.009458,-0.010252,0.249790,0,0);-ms-transform:matrix(0.230441,0.009458,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.230441,0.009458,-0.010252,0.249790,0,0);}
.me3_c01194{transform:matrix(0.231042,0.008557,-0.009253,0.249829,0,0);-ms-transform:matrix(0.231042,0.008557,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.231042,0.008557,-0.009253,0.249829,0,0);}
.m45_c01194{transform:matrix(0.231161,0.007867,-0.008504,0.249855,0,0);-ms-transform:matrix(0.231161,0.007867,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.231161,0.007867,-0.008504,0.249855,0,0);}
.m39_c01194{transform:matrix(0.232562,0.006744,-0.007247,0.249895,0,0);-ms-transform:matrix(0.232562,0.006744,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.232562,0.006744,-0.007247,0.249895,0,0);}
.m7e_c01194{transform:matrix(0.232860,0.008624,-0.009253,0.249829,0,0);-ms-transform:matrix(0.232860,0.008624,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.232860,0.008624,-0.009253,0.249829,0,0);}
.me6_c01194{transform:matrix(0.233215,0.008638,-0.009253,0.249829,0,0);-ms-transform:matrix(0.233215,0.008638,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.233215,0.008638,-0.009253,0.249829,0,0);}
.me8_c01194{transform:matrix(0.233860,0.008661,-0.009253,0.249829,0,0);-ms-transform:matrix(0.233860,0.008661,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.233860,0.008661,-0.009253,0.249829,0,0);}
.m5a_c01194{transform:matrix(0.235177,0.007769,-0.008254,0.249864,0,0);-ms-transform:matrix(0.235177,0.007769,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.235177,0.007769,-0.008254,0.249864,0,0);}
.me5_c01194{transform:matrix(0.235199,0.008711,-0.009253,0.249829,0,0);-ms-transform:matrix(0.235199,0.008711,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.235199,0.008711,-0.009253,0.249829,0,0);}
.mb0_c01194{transform:matrix(0.235202,0.009653,-0.010252,0.249790,0,0);-ms-transform:matrix(0.235202,0.009653,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.235202,0.009653,-0.010252,0.249790,0,0);}
.m8e_c01194{transform:matrix(0.235289,0.008714,-0.009253,0.249829,0,0);-ms-transform:matrix(0.235289,0.008714,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.235289,0.008714,-0.009253,0.249829,0,0);}
.ma4_c01194{transform:matrix(0.235951,0.009684,-0.010252,0.249790,0,0);-ms-transform:matrix(0.235951,0.009684,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.235951,0.009684,-0.010252,0.249790,0,0);}
.m107_c01194{transform:matrix(0.236153,0.008746,-0.009253,0.249829,0,0);-ms-transform:matrix(0.236153,0.008746,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.236153,0.008746,-0.009253,0.249829,0,0);}
.m0_c01194{transform:matrix(0.236389,0.008992,-0.009503,0.249819,0,0);-ms-transform:matrix(0.236389,0.008992,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.236389,0.008992,-0.009503,0.249819,0,0);}
.m38_c01194{transform:matrix(0.237735,0.006894,-0.007247,0.249895,0,0);-ms-transform:matrix(0.237735,0.006894,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.237735,0.006894,-0.007247,0.249895,0,0);}
.m112_c01194{transform:matrix(0.238065,0.010009,-0.010501,0.249779,0,0);-ms-transform:matrix(0.238065,0.010009,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.238065,0.010009,-0.010501,0.249779,0,0);}
.m6d_c01194{transform:matrix(0.238571,0.008836,-0.009253,0.249829,0,0);-ms-transform:matrix(0.238571,0.008836,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.238571,0.008836,-0.009253,0.249829,0,0);}
.m32_c01194{transform:matrix(0.238710,0.006923,-0.007247,0.249895,0,0);-ms-transform:matrix(0.238710,0.006923,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.238710,0.006923,-0.007247,0.249895,0,0);}
.me4_c01194{transform:matrix(0.238796,0.008844,-0.009253,0.249829,0,0);-ms-transform:matrix(0.238796,0.008844,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.238796,0.008844,-0.009253,0.249829,0,0);}
.mde_c01194{transform:matrix(0.241187,0.009899,-0.010252,0.249790,0,0);-ms-transform:matrix(0.241187,0.009899,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.241187,0.009899,-0.010252,0.249790,0,0);}
.m43_c01194{transform:matrix(0.242230,0.008244,-0.008504,0.249855,0,0);-ms-transform:matrix(0.242230,0.008244,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.242230,0.008244,-0.008504,0.249855,0,0);}
.m8d_c01194{transform:matrix(0.242439,0.008979,-0.009253,0.249829,0,0);-ms-transform:matrix(0.242439,0.008979,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.242439,0.008979,-0.009253,0.249829,0,0);}
.m108_c01194{transform:matrix(0.243278,0.009010,-0.009253,0.249829,0,0);-ms-transform:matrix(0.243278,0.009010,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.243278,0.009010,-0.009253,0.249829,0,0);}
.m79_c01194{transform:matrix(0.243673,0.009025,-0.009253,0.249829,0,0);-ms-transform:matrix(0.243673,0.009025,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.243673,0.009025,-0.009253,0.249829,0,0);}
.m69_c01194{transform:matrix(0.244602,0.009059,-0.009253,0.249829,0,0);-ms-transform:matrix(0.244602,0.009059,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.244602,0.009059,-0.009253,0.249829,0,0);}
.m66_c01194{transform:matrix(0.245582,0.009096,-0.009253,0.249829,0,0);-ms-transform:matrix(0.245582,0.009096,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.245582,0.009096,-0.009253,0.249829,0,0);}
.mf1_c01194{transform:matrix(0.245701,0.008116,-0.008254,0.249864,0,0);-ms-transform:matrix(0.245701,0.008116,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.245701,0.008116,-0.008254,0.249864,0,0);}
.m2e_c01194{transform:matrix(0.245968,0.008371,-0.008504,0.249855,0,0);-ms-transform:matrix(0.245968,0.008371,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.245968,0.008371,-0.008504,0.249855,0,0);}
.m58_c01194{transform:matrix(0.247020,0.008160,-0.008254,0.249864,0,0);-ms-transform:matrix(0.247020,0.008160,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.247020,0.008160,-0.008254,0.249864,0,0);}
.m93_c01194{transform:matrix(0.247392,0.010153,-0.010252,0.249790,0,0);-ms-transform:matrix(0.247392,0.010153,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.247392,0.010153,-0.010252,0.249790,0,0);}
.md3_c01194{transform:matrix(0.247926,0.010175,-0.010252,0.249790,0,0);-ms-transform:matrix(0.247926,0.010175,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.247926,0.010175,-0.010252,0.249790,0,0);}
.m3e_c01194{transform:matrix(0.248080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248080,0.000000,0.000000,0.250000,0,0);}
.m91_c01194{transform:matrix(0.248111,0.010183,-0.010252,0.249790,0,0);-ms-transform:matrix(0.248111,0.010183,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.248111,0.010183,-0.010252,0.249790,0,0);}
.m106_c01194{transform:matrix(0.249694,0.009248,-0.009253,0.249829,0,0);-ms-transform:matrix(0.249694,0.009248,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.249694,0.009248,-0.009253,0.249829,0,0);}
.m109_c01194{transform:matrix(0.250019,0.009260,-0.009253,0.249829,0,0);-ms-transform:matrix(0.250019,0.009260,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.250019,0.009260,-0.009253,0.249829,0,0);}
.m78_c01194{transform:matrix(0.250428,0.009275,-0.009253,0.249829,0,0);-ms-transform:matrix(0.250428,0.009275,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.250428,0.009275,-0.009253,0.249829,0,0);}
.m67_c01194{transform:matrix(0.250853,0.009291,-0.009253,0.249829,0,0);-ms-transform:matrix(0.250853,0.009291,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.250853,0.009291,-0.009253,0.249829,0,0);}
.maa_c01194{transform:matrix(0.251009,0.010302,-0.010252,0.249790,0,0);-ms-transform:matrix(0.251009,0.010302,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.251009,0.010302,-0.010252,0.249790,0,0);}
.m3a_c01194{transform:matrix(0.251444,0.007292,-0.007247,0.249895,0,0);-ms-transform:matrix(0.251444,0.007292,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.251444,0.007292,-0.007247,0.249895,0,0);}
.m40_c01194{transform:matrix(0.251619,0.008564,-0.008504,0.249855,0,0);-ms-transform:matrix(0.251619,0.008564,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.251619,0.008564,-0.008504,0.249855,0,0);}
.me2_c01194{transform:matrix(0.252247,0.009342,-0.009253,0.249829,0,0);-ms-transform:matrix(0.252247,0.009342,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.252247,0.009342,-0.009253,0.249829,0,0);}
.m68_c01194{transform:matrix(0.252497,0.009352,-0.009253,0.249829,0,0);-ms-transform:matrix(0.252497,0.009352,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.252497,0.009352,-0.009253,0.249829,0,0);}
.m6_c01194{transform:matrix(0.253421,0.009132,-0.009003,0.249838,0,0);-ms-transform:matrix(0.253421,0.009132,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.253421,0.009132,-0.009003,0.249838,0,0);}
.mef_c01194{transform:matrix(0.254126,0.008395,-0.008254,0.249864,0,0);-ms-transform:matrix(0.254126,0.008395,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.254126,0.008395,-0.008254,0.249864,0,0);}
.mf4_c01194{transform:matrix(0.254321,0.008401,-0.008254,0.249864,0,0);-ms-transform:matrix(0.254321,0.008401,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.254321,0.008401,-0.008254,0.249864,0,0);}
.m9f_c01194{transform:matrix(0.256197,0.007942,-0.007746,0.249880,0,0);-ms-transform:matrix(0.256197,0.007942,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.256197,0.007942,-0.007746,0.249880,0,0);}
.m5b_c01194{transform:matrix(0.256775,0.008482,-0.008254,0.249864,0,0);-ms-transform:matrix(0.256775,0.008482,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.256775,0.008482,-0.008254,0.249864,0,0);}
.m75_c01194{transform:matrix(0.257448,0.009535,-0.009253,0.249829,0,0);-ms-transform:matrix(0.257448,0.009535,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.257448,0.009535,-0.009253,0.249829,0,0);}
.m25_c01194{transform:matrix(0.257801,0.008774,-0.008504,0.249855,0,0);-ms-transform:matrix(0.257801,0.008774,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.257801,0.008774,-0.008504,0.249855,0,0);}
.m2d_c01194{transform:matrix(0.257816,0.008775,-0.008504,0.249855,0,0);-ms-transform:matrix(0.257816,0.008775,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.257816,0.008775,-0.008504,0.249855,0,0);}
.m44_c01194{transform:matrix(0.258061,0.008783,-0.008504,0.249855,0,0);-ms-transform:matrix(0.258061,0.008783,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.258061,0.008783,-0.008504,0.249855,0,0);}
.m33_c01194{transform:matrix(0.258221,0.007488,-0.007247,0.249895,0,0);-ms-transform:matrix(0.258221,0.007488,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.258221,0.007488,-0.007247,0.249895,0,0);}
.m47_c01194{transform:matrix(0.258260,0.008790,-0.008504,0.249855,0,0);-ms-transform:matrix(0.258260,0.008790,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.258260,0.008790,-0.008504,0.249855,0,0);}
.m46_c01194{transform:matrix(0.259580,0.008835,-0.008504,0.249855,0,0);-ms-transform:matrix(0.259580,0.008835,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.259580,0.008835,-0.008504,0.249855,0,0);}
.mf8_c01194{transform:matrix(0.259818,0.008583,-0.008254,0.249864,0,0);-ms-transform:matrix(0.259818,0.008583,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.259818,0.008583,-0.008254,0.249864,0,0);}
.m9a_c01194{transform:matrix(0.260196,0.010679,-0.010252,0.249790,0,0);-ms-transform:matrix(0.260196,0.010679,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.260196,0.010679,-0.010252,0.249790,0,0);}
.mc6_c01194{transform:matrix(0.260305,0.009120,-0.008753,0.249847,0,0);-ms-transform:matrix(0.260305,0.009120,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.260305,0.009120,-0.008753,0.249847,0,0);}
.m19_c01194{transform:matrix(0.260314,0.008860,-0.008504,0.249855,0,0);-ms-transform:matrix(0.260314,0.008860,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.260314,0.008860,-0.008504,0.249855,0,0);}
.ma6_c01194{transform:matrix(0.260351,0.010685,-0.010252,0.249790,0,0);-ms-transform:matrix(0.260351,0.010685,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.260351,0.010685,-0.010252,0.249790,0,0);}
.m86_c01194{transform:matrix(0.260901,0.009663,-0.009253,0.249829,0,0);-ms-transform:matrix(0.260901,0.009663,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.260901,0.009663,-0.009253,0.249829,0,0);}
.m8b_c01194{transform:matrix(0.261925,0.009701,-0.009253,0.249829,0,0);-ms-transform:matrix(0.261925,0.009701,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.261925,0.009701,-0.009253,0.249829,0,0);}
.mc_c01194{transform:matrix(0.261930,0.009439,-0.009003,0.249838,0,0);-ms-transform:matrix(0.261930,0.009439,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.261930,0.009439,-0.009003,0.249838,0,0);}
.mfa_c01194{transform:matrix(0.262427,0.008669,-0.008254,0.249864,0,0);-ms-transform:matrix(0.262427,0.008669,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.262427,0.008669,-0.008254,0.249864,0,0);}
.m50_c01194{transform:matrix(0.263451,0.008703,-0.008254,0.249864,0,0);-ms-transform:matrix(0.263451,0.008703,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.263451,0.008703,-0.008254,0.249864,0,0);}
.mdc_c01194{transform:matrix(0.263798,0.010827,-0.010252,0.249790,0,0);-ms-transform:matrix(0.263798,0.010827,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.263798,0.010827,-0.010252,0.249790,0,0);}
.m16_c01194{transform:matrix(0.265546,0.009038,-0.008504,0.249855,0,0);-ms-transform:matrix(0.265546,0.009038,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.265546,0.009038,-0.008504,0.249855,0,0);}
.m35_c01194{transform:matrix(0.265933,0.007712,-0.007247,0.249895,0,0);-ms-transform:matrix(0.265933,0.007712,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.265933,0.007712,-0.007247,0.249895,0,0);}
.m21_c01194{transform:matrix(0.266980,0.009086,-0.008504,0.249855,0,0);-ms-transform:matrix(0.266980,0.009086,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.266980,0.009086,-0.008504,0.249855,0,0);}
.m71_c01194{transform:matrix(0.267072,0.009892,-0.009253,0.249829,0,0);-ms-transform:matrix(0.267072,0.009892,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.267072,0.009892,-0.009253,0.249829,0,0);}
.m6a_c01194{transform:matrix(0.267851,0.009920,-0.009253,0.249829,0,0);-ms-transform:matrix(0.267851,0.009920,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.267851,0.009920,-0.009253,0.249829,0,0);}
.mc8_c01194{transform:matrix(0.268600,0.009410,-0.008753,0.249847,0,0);-ms-transform:matrix(0.268600,0.009410,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.268600,0.009410,-0.008753,0.249847,0,0);}
.m77_c01194{transform:matrix(0.268976,0.009962,-0.009253,0.249829,0,0);-ms-transform:matrix(0.268976,0.009962,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.268976,0.009962,-0.009253,0.249829,0,0);}
.m89_c01194{transform:matrix(0.269046,0.009965,-0.009253,0.249829,0,0);-ms-transform:matrix(0.269046,0.009965,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.269046,0.009965,-0.009253,0.249829,0,0);}
.md6_c01194{transform:matrix(0.269248,0.011050,-0.010252,0.249790,0,0);-ms-transform:matrix(0.269248,0.011050,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.269248,0.011050,-0.010252,0.249790,0,0);}
.md2_c01194{transform:matrix(0.270058,0.011083,-0.010252,0.249790,0,0);-ms-transform:matrix(0.270058,0.011083,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.270058,0.011083,-0.010252,0.249790,0,0);}
.mec_c01194{transform:matrix(0.271532,0.008970,-0.008254,0.249864,0,0);-ms-transform:matrix(0.271532,0.008970,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.271532,0.008970,-0.008254,0.249864,0,0);}
.m102_c01194{transform:matrix(0.272248,0.010356,-0.009503,0.249819,0,0);-ms-transform:matrix(0.272248,0.010356,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.272248,0.010356,-0.009503,0.249819,0,0);}
.m34_c01194{transform:matrix(0.272291,0.007896,-0.007247,0.249895,0,0);-ms-transform:matrix(0.272291,0.007896,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.272291,0.007896,-0.007247,0.249895,0,0);}
.m27_c01194{transform:matrix(0.273342,0.009303,-0.008504,0.249855,0,0);-ms-transform:matrix(0.273342,0.009303,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.273342,0.009303,-0.008504,0.249855,0,0);}
.m6f_c01194{transform:matrix(0.274667,0.010173,-0.009253,0.249829,0,0);-ms-transform:matrix(0.274667,0.010173,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.274667,0.010173,-0.009253,0.249829,0,0);}
.maf_c01194{transform:matrix(0.275778,0.011318,-0.010252,0.249790,0,0);-ms-transform:matrix(0.275778,0.011318,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.275778,0.011318,-0.010252,0.249790,0,0);}
.m14_c01194{transform:matrix(0.276600,0.009414,-0.008504,0.249855,0,0);-ms-transform:matrix(0.276600,0.009414,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.276600,0.009414,-0.008504,0.249855,0,0);}
.m114_c01194{transform:matrix(0.276706,0.011633,-0.010501,0.249779,0,0);-ms-transform:matrix(0.276706,0.011633,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.276706,0.011633,-0.010501,0.249779,0,0);}
.mb3_c01194{transform:matrix(0.276782,0.011359,-0.010252,0.249790,0,0);-ms-transform:matrix(0.276782,0.011359,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.276782,0.011359,-0.010252,0.249790,0,0);}
.m11_c01194{transform:matrix(0.276985,0.009427,-0.008504,0.249855,0,0);-ms-transform:matrix(0.276985,0.009427,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.276985,0.009427,-0.008504,0.249855,0,0);}
.m96_c01194{transform:matrix(0.277087,0.011372,-0.010252,0.249790,0,0);-ms-transform:matrix(0.277087,0.011372,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.277087,0.011372,-0.010252,0.249790,0,0);}
.m10b_c01194{transform:matrix(0.277715,0.010286,-0.009253,0.249829,0,0);-ms-transform:matrix(0.277715,0.010286,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.277715,0.010286,-0.009253,0.249829,0,0);}
.mfd_c01194{transform:matrix(0.278124,0.010579,-0.009503,0.249819,0,0);-ms-transform:matrix(0.278124,0.010579,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.278124,0.010579,-0.009503,0.249819,0,0);}
.m7b_c01194{transform:matrix(0.278789,0.010326,-0.009253,0.249829,0,0);-ms-transform:matrix(0.278789,0.010326,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.278789,0.010326,-0.009253,0.249829,0,0);}
.m8f_c01194{transform:matrix(0.279988,0.010370,-0.009253,0.249829,0,0);-ms-transform:matrix(0.279988,0.010370,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.279988,0.010370,-0.009253,0.249829,0,0);}
.m92_c01194{transform:matrix(0.280489,0.011512,-0.010252,0.249790,0,0);-ms-transform:matrix(0.280489,0.011512,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.280489,0.011512,-0.010252,0.249790,0,0);}
.m8c_c01194{transform:matrix(0.280982,0.010407,-0.009253,0.249829,0,0);-ms-transform:matrix(0.280982,0.010407,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.280982,0.010407,-0.009253,0.249829,0,0);}
.m7a_c01194{transform:matrix(0.281497,0.010426,-0.009253,0.249829,0,0);-ms-transform:matrix(0.281497,0.010426,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.281497,0.010426,-0.009253,0.249829,0,0);}
.md4_c01194{transform:matrix(0.281603,0.011557,-0.010252,0.249790,0,0);-ms-transform:matrix(0.281603,0.011557,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.281603,0.011557,-0.010252,0.249790,0,0);}
.m17_c01194{transform:matrix(0.281932,0.009595,-0.008504,0.249855,0,0);-ms-transform:matrix(0.281932,0.009595,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.281932,0.009595,-0.008504,0.249855,0,0);}
.mae_c01194{transform:matrix(0.281988,0.011573,-0.010252,0.249790,0,0);-ms-transform:matrix(0.281988,0.011573,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.281988,0.011573,-0.010252,0.249790,0,0);}
.mc0_c01194{transform:matrix(0.282266,0.010454,-0.009253,0.249829,0,0);-ms-transform:matrix(0.282266,0.010454,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.282266,0.010454,-0.009253,0.249829,0,0);}
.m62_c01194{transform:matrix(0.282297,0.009608,-0.008504,0.249855,0,0);-ms-transform:matrix(0.282297,0.009608,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.282297,0.009608,-0.008504,0.249855,0,0);}
.ma7_c01194{transform:matrix(0.282572,0.011597,-0.010252,0.249790,0,0);-ms-transform:matrix(0.282572,0.011597,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.282572,0.011597,-0.010252,0.249790,0,0);}
.m72_c01194{transform:matrix(0.284075,0.010521,-0.009253,0.249829,0,0);-ms-transform:matrix(0.284075,0.010521,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.284075,0.010521,-0.009253,0.249829,0,0);}
.m59_c01194{transform:matrix(0.284375,0.009394,-0.008254,0.249864,0,0);-ms-transform:matrix(0.284375,0.009394,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.284375,0.009394,-0.008254,0.249864,0,0);}
.m57_c01194{transform:matrix(0.286099,0.009451,-0.008254,0.249864,0,0);-ms-transform:matrix(0.286099,0.009451,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.286099,0.009451,-0.008254,0.249864,0,0);}
.m9_c01194{transform:matrix(0.286439,0.010322,-0.009003,0.249838,0,0);-ms-transform:matrix(0.286439,0.010322,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.286439,0.010322,-0.009003,0.249838,0,0);}
.ma2_c01194{transform:matrix(0.287763,0.011810,-0.010252,0.249790,0,0);-ms-transform:matrix(0.287763,0.011810,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.287763,0.011810,-0.010252,0.249790,0,0);}
.m4e_c01194{transform:matrix(0.288508,0.009530,-0.008254,0.249864,0,0);-ms-transform:matrix(0.288508,0.009530,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.288508,0.009530,-0.008254,0.249864,0,0);}
.mf2_c01194{transform:matrix(0.290127,0.009584,-0.008254,0.249864,0,0);-ms-transform:matrix(0.290127,0.009584,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.290127,0.009584,-0.008254,0.249864,0,0);}
.m5f_c01194{transform:matrix(0.290771,0.009605,-0.008254,0.249864,0,0);-ms-transform:matrix(0.290771,0.009605,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.290771,0.009605,-0.008254,0.249864,0,0);}
.mf9_c01194{transform:matrix(0.291591,0.009632,-0.008254,0.249864,0,0);-ms-transform:matrix(0.291591,0.009632,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.291591,0.009632,-0.008254,0.249864,0,0);}
.mb5_c01194{transform:matrix(0.291834,0.011977,-0.010252,0.249790,0,0);-ms-transform:matrix(0.291834,0.011977,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.291834,0.011977,-0.010252,0.249790,0,0);}
.m7f_c01194{transform:matrix(0.291880,0.010810,-0.009253,0.249829,0,0);-ms-transform:matrix(0.291880,0.010810,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.291880,0.010810,-0.009253,0.249829,0,0);}
.med_c01194{transform:matrix(0.292021,0.009646,-0.008254,0.249864,0,0);-ms-transform:matrix(0.292021,0.009646,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.292021,0.009646,-0.008254,0.249864,0,0);}
.mc2_c01194{transform:matrix(0.292710,0.016425,-0.014006,0.249607,0,0);-ms-transform:matrix(0.292710,0.016425,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.292710,0.016425,-0.014006,0.249607,0,0);}
.m8a_c01194{transform:matrix(0.292839,0.010846,-0.009253,0.249829,0,0);-ms-transform:matrix(0.292839,0.010846,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.292839,0.010846,-0.009253,0.249829,0,0);}
.m80_c01194{transform:matrix(0.292879,0.010847,-0.009253,0.249829,0,0);-ms-transform:matrix(0.292879,0.010847,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.292879,0.010847,-0.009253,0.249829,0,0);}
.mdf_c01194{transform:matrix(0.293053,0.012027,-0.010252,0.249790,0,0);-ms-transform:matrix(0.293053,0.012027,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.293053,0.012027,-0.010252,0.249790,0,0);}
.ma9_c01194{transform:matrix(0.293503,0.012046,-0.010252,0.249790,0,0);-ms-transform:matrix(0.293503,0.012046,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.293503,0.012046,-0.010252,0.249790,0,0);}
.mb2_c01194{transform:matrix(0.294177,0.012073,-0.010252,0.249790,0,0);-ms-transform:matrix(0.294177,0.012073,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.294177,0.012073,-0.010252,0.249790,0,0);}
.m113_c01194{transform:matrix(0.294395,0.012377,-0.010501,0.249779,0,0);-ms-transform:matrix(0.294395,0.012377,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.294395,0.012377,-0.010501,0.249779,0,0);}
.mdd_c01194{transform:matrix(0.294507,0.012087,-0.010252,0.249790,0,0);-ms-transform:matrix(0.294507,0.012087,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.294507,0.012087,-0.010252,0.249790,0,0);}
.mb4_c01194{transform:matrix(0.294767,0.012098,-0.010252,0.249790,0,0);-ms-transform:matrix(0.294767,0.012098,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.294767,0.012098,-0.010252,0.249790,0,0);}
.m30_c01194{transform:matrix(0.295254,0.010049,-0.008504,0.249855,0,0);-ms-transform:matrix(0.295254,0.010049,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.295254,0.010049,-0.008504,0.249855,0,0);}
.m7d_c01194{transform:matrix(0.295587,0.010948,-0.009253,0.249829,0,0);-ms-transform:matrix(0.295587,0.010948,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.295587,0.010948,-0.009253,0.249829,0,0);}
.m115_c01194{transform:matrix(0.295904,0.012440,-0.010501,0.249779,0,0);-ms-transform:matrix(0.295904,0.012440,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.295904,0.012440,-0.010501,0.249779,0,0);}
.mee_c01194{transform:matrix(0.295949,0.009776,-0.008254,0.249864,0,0);-ms-transform:matrix(0.295949,0.009776,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.295949,0.009776,-0.008254,0.249864,0,0);}
.meb_c01194{transform:matrix(0.296358,0.009790,-0.008254,0.249864,0,0);-ms-transform:matrix(0.296358,0.009790,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.296358,0.009790,-0.008254,0.249864,0,0);}
.mf0_c01194{transform:matrix(0.296408,0.009791,-0.008254,0.249864,0,0);-ms-transform:matrix(0.296408,0.009791,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.296408,0.009791,-0.008254,0.249864,0,0);}
.ma3_c01194{transform:matrix(0.296960,0.012188,-0.010252,0.249790,0,0);-ms-transform:matrix(0.296960,0.012188,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.296960,0.012188,-0.010252,0.249790,0,0);}
.m2f_c01194{transform:matrix(0.297568,0.010127,-0.008504,0.249855,0,0);-ms-transform:matrix(0.297568,0.010127,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.297568,0.010127,-0.008504,0.249855,0,0);}
.mda_c01194{transform:matrix(0.298614,0.012255,-0.010252,0.249790,0,0);-ms-transform:matrix(0.298614,0.012255,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.298614,0.012255,-0.010252,0.249790,0,0);}
.m1f_c01194{transform:matrix(0.299736,0.010201,-0.008504,0.249855,0,0);-ms-transform:matrix(0.299736,0.010201,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.299736,0.010201,-0.008504,0.249855,0,0);}
.m61_c01194{transform:matrix(0.300711,0.010234,-0.008504,0.249855,0,0);-ms-transform:matrix(0.300711,0.010234,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.300711,0.010234,-0.008504,0.249855,0,0);}
.m82_c01194{transform:matrix(0.300889,0.011144,-0.009253,0.249829,0,0);-ms-transform:matrix(0.300889,0.011144,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.300889,0.011144,-0.009253,0.249829,0,0);}
.m23_c01194{transform:matrix(0.301031,0.010245,-0.008504,0.249855,0,0);-ms-transform:matrix(0.301031,0.010245,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.301031,0.010245,-0.008504,0.249855,0,0);}
.m6e_c01194{transform:matrix(0.301099,0.011152,-0.009253,0.249829,0,0);-ms-transform:matrix(0.301099,0.011152,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.301099,0.011152,-0.009253,0.249829,0,0);}
.ma5_c01194{transform:matrix(0.301346,0.012368,-0.010252,0.249790,0,0);-ms-transform:matrix(0.301346,0.012368,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.301346,0.012368,-0.010252,0.249790,0,0);}
.m103_c01194{transform:matrix(0.301763,0.012687,-0.010501,0.249779,0,0);-ms-transform:matrix(0.301763,0.012687,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.301763,0.012687,-0.010501,0.249779,0,0);}
.mb7_c01194{transform:matrix(0.302235,0.010589,-0.008753,0.249847,0,0);-ms-transform:matrix(0.302235,0.010589,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.302235,0.010589,-0.008753,0.249847,0,0);}
.mc7_c01194{transform:matrix(0.306212,0.010728,-0.008753,0.249847,0,0);-ms-transform:matrix(0.306212,0.010728,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.306212,0.010728,-0.008753,0.249847,0,0);}
.md7_c01194{transform:matrix(0.307226,0.012609,-0.010252,0.249790,0,0);-ms-transform:matrix(0.307226,0.012609,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.307226,0.012609,-0.010252,0.249790,0,0);}
.mc9_c01194{transform:matrix(0.308890,0.010822,-0.008753,0.249847,0,0);-ms-transform:matrix(0.308890,0.010822,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.308890,0.010822,-0.008753,0.249847,0,0);}
.m10_c01194{transform:matrix(0.309366,0.010529,-0.008504,0.249855,0,0);-ms-transform:matrix(0.309366,0.010529,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.309366,0.010529,-0.008504,0.249855,0,0);}
.mb_c01194{transform:matrix(0.310853,0.011202,-0.009003,0.249838,0,0);-ms-transform:matrix(0.310853,0.011202,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.310853,0.011202,-0.009003,0.249838,0,0);}
.m1d_c01194{transform:matrix(0.312978,0.009076,-0.007247,0.249895,0,0);-ms-transform:matrix(0.312978,0.009076,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.312978,0.009076,-0.007247,0.249895,0,0);}
.m18_c01194{transform:matrix(0.313074,0.010655,-0.008504,0.249855,0,0);-ms-transform:matrix(0.313074,0.010655,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.313074,0.010655,-0.008504,0.249855,0,0);}
.mbe_c01194{transform:matrix(0.313460,0.011610,-0.009253,0.249829,0,0);-ms-transform:matrix(0.313460,0.011610,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.313460,0.011610,-0.009253,0.249829,0,0);}
.m15_c01194{transform:matrix(0.314468,0.010703,-0.008504,0.249855,0,0);-ms-transform:matrix(0.314468,0.010703,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.314468,0.010703,-0.008504,0.249855,0,0);}
.m5d_c01194{transform:matrix(0.314863,0.010401,-0.008254,0.249864,0,0);-ms-transform:matrix(0.314863,0.010401,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.314863,0.010401,-0.008254,0.249864,0,0);}
.m2c_c01194{transform:matrix(0.315762,0.010747,-0.008504,0.249855,0,0);-ms-transform:matrix(0.315762,0.010747,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.315762,0.010747,-0.008504,0.249855,0,0);}
.me0_c01194{transform:matrix(0.317005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317005,0.000000,0.000000,0.250000,0,0);}
.m24_c01194{transform:matrix(0.317641,0.010811,-0.008504,0.249855,0,0);-ms-transform:matrix(0.317641,0.010811,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.317641,0.010811,-0.008504,0.249855,0,0);}
.m4f_c01194{transform:matrix(0.317757,0.010496,-0.008254,0.249864,0,0);-ms-transform:matrix(0.317757,0.010496,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.317757,0.010496,-0.008254,0.249864,0,0);}
.m20_c01194{transform:matrix(0.320175,0.010897,-0.008504,0.249855,0,0);-ms-transform:matrix(0.320175,0.010897,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.320175,0.010897,-0.008504,0.249855,0,0);}
.m22_c01194{transform:matrix(0.322828,0.010987,-0.008504,0.249855,0,0);-ms-transform:matrix(0.322828,0.010987,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.322828,0.010987,-0.008504,0.249855,0,0);}
.mc3_c01194{transform:matrix(0.323102,0.018130,-0.014006,0.249607,0,0);-ms-transform:matrix(0.323102,0.018130,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.323102,0.018130,-0.014006,0.249607,0,0);}
.mc5_c01194{transform:matrix(0.325031,0.011387,-0.008753,0.249847,0,0);-ms-transform:matrix(0.325031,0.011387,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.325031,0.011387,-0.008753,0.249847,0,0);}
.m51_c01194{transform:matrix(0.325093,0.010739,-0.008254,0.249864,0,0);-ms-transform:matrix(0.325093,0.010739,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.325093,0.010739,-0.008254,0.249864,0,0);}
.ma0_c01194{transform:matrix(0.325134,0.010079,-0.007746,0.249880,0,0);-ms-transform:matrix(0.325134,0.010079,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.325134,0.010079,-0.007746,0.249880,0,0);}
.m4d_c01194{transform:matrix(0.325722,0.010760,-0.008254,0.249864,0,0);-ms-transform:matrix(0.325722,0.010760,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.325722,0.010760,-0.008254,0.249864,0,0);}
.mbd_c01194{transform:matrix(0.326421,0.012090,-0.009253,0.249829,0,0);-ms-transform:matrix(0.326421,0.012090,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.326421,0.012090,-0.009253,0.249829,0,0);}
.m52_c01194{transform:matrix(0.326972,0.010801,-0.008254,0.249864,0,0);-ms-transform:matrix(0.326972,0.010801,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.326972,0.010801,-0.008254,0.249864,0,0);}
.m8_c01194{transform:matrix(0.328052,0.011822,-0.009003,0.249838,0,0);-ms-transform:matrix(0.328052,0.011822,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.328052,0.011822,-0.009003,0.249838,0,0);}
.m7_c01194{transform:matrix(0.328592,0.011841,-0.009003,0.249838,0,0);-ms-transform:matrix(0.328592,0.011841,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.328592,0.011841,-0.009003,0.249838,0,0);}
.mbf_c01194{transform:matrix(0.329229,0.012194,-0.009253,0.249829,0,0);-ms-transform:matrix(0.329229,0.012194,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.329229,0.012194,-0.009253,0.249829,0,0);}
.mc1_c01194{transform:matrix(0.329339,0.012198,-0.009253,0.249829,0,0);-ms-transform:matrix(0.329339,0.012198,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.329339,0.012198,-0.009253,0.249829,0,0);}
.m12_c01194{transform:matrix(0.329484,0.011214,-0.008504,0.249855,0,0);-ms-transform:matrix(0.329484,0.011214,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.329484,0.011214,-0.008504,0.249855,0,0);}
.mfe_c01194{transform:matrix(0.330471,0.012570,-0.009503,0.249819,0,0);-ms-transform:matrix(0.330471,0.012570,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.330471,0.012570,-0.009503,0.249819,0,0);}
.m63_c01194{transform:matrix(0.334276,0.011377,-0.008504,0.249855,0,0);-ms-transform:matrix(0.334276,0.011377,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.334276,0.011377,-0.008504,0.249855,0,0);}
.mca_c01194{transform:matrix(0.334880,0.011733,-0.008753,0.249847,0,0);-ms-transform:matrix(0.334880,0.011733,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.334880,0.011733,-0.008753,0.249847,0,0);}
.m31_c01194{transform:matrix(0.335046,0.011403,-0.008504,0.249855,0,0);-ms-transform:matrix(0.335046,0.011403,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.335046,0.011403,-0.008504,0.249855,0,0);}
.m13_c01194{transform:matrix(0.336750,0.011461,-0.008504,0.249855,0,0);-ms-transform:matrix(0.336750,0.011461,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.336750,0.011461,-0.008504,0.249855,0,0);}
.m1b_c01194{transform:matrix(0.338203,0.009808,-0.007247,0.249895,0,0);-ms-transform:matrix(0.338203,0.009808,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.338203,0.009808,-0.007247,0.249895,0,0);}
.m101_c01194{transform:matrix(0.338215,0.012865,-0.009503,0.249819,0,0);-ms-transform:matrix(0.338215,0.012865,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.338215,0.012865,-0.009503,0.249819,0,0);}
.m1c_c01194{transform:matrix(0.340762,0.009882,-0.007247,0.249895,0,0);-ms-transform:matrix(0.340762,0.009882,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.340762,0.009882,-0.007247,0.249895,0,0);}
.m87_c01194{transform:matrix(0.351379,0.013014,-0.009253,0.249829,0,0);-ms-transform:matrix(0.351379,0.013014,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.351379,0.013014,-0.009253,0.249829,0,0);}
.mcc_c01194{transform:matrix(0.356221,0.012480,-0.008753,0.249847,0,0);-ms-transform:matrix(0.356221,0.012480,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.356221,0.012480,-0.008753,0.249847,0,0);}
.mce_c01194{transform:matrix(0.356656,0.012495,-0.008753,0.249847,0,0);-ms-transform:matrix(0.356656,0.012495,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.356656,0.012495,-0.008753,0.249847,0,0);}
.m88_c01194{transform:matrix(0.358939,0.013294,-0.009253,0.249829,0,0);-ms-transform:matrix(0.358939,0.013294,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.358939,0.013294,-0.009253,0.249829,0,0);}
.m104_c01194{transform:matrix(0.366275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366275,0.000000,0.000000,0.250000,0,0);}
.mfb_c01194{transform:matrix(0.402650,0.013301,-0.008254,0.249864,0,0);-ms-transform:matrix(0.402650,0.013301,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.402650,0.013301,-0.008254,0.249864,0,0);}
.me_c01194{transform:matrix(0.428335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428335,0.000000,0.000000,0.250000,0,0);}
.mba_c01194{transform:matrix(0.459623,0.016103,-0.008753,0.249847,0,0);-ms-transform:matrix(0.459623,0.016103,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.459623,0.016103,-0.008753,0.249847,0,0);}
.md_c01194{transform:matrix(0.460350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460350,0.000000,0.000000,0.250000,0,0);}
.mb8_c01194{transform:matrix(0.463401,0.016235,-0.008753,0.249847,0,0);-ms-transform:matrix(0.463401,0.016235,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.463401,0.016235,-0.008753,0.249847,0,0);}
.m2b_c01194{transform:matrix(0.464346,0.015804,-0.008504,0.249855,0,0);-ms-transform:matrix(0.464346,0.015804,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.464346,0.015804,-0.008504,0.249855,0,0);}
.mfc_c01194{transform:matrix(0.466271,0.015402,-0.008254,0.249864,0,0);-ms-transform:matrix(0.466271,0.015402,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.466271,0.015402,-0.008254,0.249864,0,0);}
.m85_c01194{transform:matrix(0.488130,0.018079,-0.009253,0.249829,0,0);-ms-transform:matrix(0.488130,0.018079,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.488130,0.018079,-0.009253,0.249829,0,0);}
.mb9_c01194{transform:matrix(0.490279,0.017177,-0.008753,0.249847,0,0);-ms-transform:matrix(0.490279,0.017177,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.490279,0.017177,-0.008753,0.249847,0,0);}
.mf6_c01194{transform:matrix(0.498038,0.016452,-0.008254,0.249864,0,0);-ms-transform:matrix(0.498038,0.016452,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.498038,0.016452,-0.008254,0.249864,0,0);}
.mb6_c01194{transform:matrix(0.498754,0.017474,-0.008753,0.249847,0,0);-ms-transform:matrix(0.498754,0.017474,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.498754,0.017474,-0.008753,0.249847,0,0);}
.m2a_c01194{transform:matrix(0.612211,0.020836,-0.008504,0.249855,0,0);-ms-transform:matrix(0.612211,0.020836,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.612211,0.020836,-0.008504,0.249855,0,0);}
.m116_c01194{transform:matrix(0.631682,0.026557,-0.010501,0.249779,0,0);-ms-transform:matrix(0.631682,0.026557,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.631682,0.026557,-0.010501,0.249779,0,0);}
.m9e_c01194{transform:matrix(0.664720,0.027281,-0.010252,0.249790,0,0);-ms-transform:matrix(0.664720,0.027281,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.664720,0.027281,-0.010252,0.249790,0,0);}
.m9d_c01194{transform:matrix(0.675671,0.027730,-0.010252,0.249790,0,0);-ms-transform:matrix(0.675671,0.027730,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.675671,0.027730,-0.010252,0.249790,0,0);}
.m84_c01194{transform:matrix(0.677700,0.025100,-0.009253,0.249829,0,0);-ms-transform:matrix(0.677700,0.025100,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.677700,0.025100,-0.009253,0.249829,0,0);}
.mad_c01194{transform:matrix(0.708309,0.029070,-0.010252,0.249790,0,0);-ms-transform:matrix(0.708309,0.029070,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.708309,0.029070,-0.010252,0.249790,0,0);}
.m111_c01194{transform:matrix(0.712636,0.026394,-0.009253,0.249829,0,0);-ms-transform:matrix(0.712636,0.026394,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.712636,0.026394,-0.009253,0.249829,0,0);}
.m110_c01194{transform:matrix(0.757461,0.028054,-0.009253,0.249829,0,0);-ms-transform:matrix(0.757461,0.028054,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.757461,0.028054,-0.009253,0.249829,0,0);}
.m83_c01194{transform:matrix(0.856613,0.031726,-0.009253,0.249829,0,0);-ms-transform:matrix(0.856613,0.031726,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.856613,0.031726,-0.009253,0.249829,0,0);}
.m9c_c01194{transform:matrix(0.924492,0.037942,-0.010252,0.249790,0,0);-ms-transform:matrix(0.924492,0.037942,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.924492,0.037942,-0.010252,0.249790,0,0);}
.m29_c01194{transform:matrix(0.965851,0.032872,-0.008504,0.249855,0,0);-ms-transform:matrix(0.965851,0.032872,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.965851,0.032872,-0.008504,0.249855,0,0);}
.m4c_c01194{transform:matrix(1.140260,0.038808,-0.008504,0.249855,0,0);-ms-transform:matrix(1.140260,0.038808,-0.008504,0.249855,0,0);-webkit-transform:matrix(1.140260,0.038808,-0.008504,0.249855,0,0);}
.m4b_c01194{transform:matrix(1.287944,0.043834,-0.008504,0.249855,0,0);-ms-transform:matrix(1.287944,0.043834,-0.008504,0.249855,0,0);-webkit-transform:matrix(1.287944,0.043834,-0.008504,0.249855,0,0);}
.m3d_c01194{transform:matrix(1.347369,0.039074,-0.007247,0.249895,0,0);-ms-transform:matrix(1.347369,0.039074,-0.007247,0.249895,0,0);-webkit-transform:matrix(1.347369,0.039074,-0.007247,0.249895,0,0);}
.mf7_c01194{transform:matrix(1.491741,0.049277,-0.008254,0.249864,0,0);-ms-transform:matrix(1.491741,0.049277,-0.008254,0.249864,0,0);-webkit-transform:matrix(1.491741,0.049277,-0.008254,0.249864,0,0);}
.m54_c01194{transform:matrix(1.554602,0.051353,-0.008254,0.249864,0,0);-ms-transform:matrix(1.554602,0.051353,-0.008254,0.249864,0,0);-webkit-transform:matrix(1.554602,0.051353,-0.008254,0.249864,0,0);}
.m4a_c01194{transform:matrix(1.564419,0.053243,-0.008504,0.249855,0,0);-ms-transform:matrix(1.564419,0.053243,-0.008504,0.249855,0,0);-webkit-transform:matrix(1.564419,0.053243,-0.008504,0.249855,0,0);}
.mcd_c01194{transform:matrix(1.577732,0.055276,-0.008753,0.249847,0,0);-ms-transform:matrix(1.577732,0.055276,-0.008753,0.249847,0,0);-webkit-transform:matrix(1.577732,0.055276,-0.008753,0.249847,0,0);}
.mcb_c01194{transform:matrix(1.720070,0.060263,-0.008753,0.249847,0,0);-ms-transform:matrix(1.720070,0.060263,-0.008753,0.249847,0,0);-webkit-transform:matrix(1.720070,0.060263,-0.008753,0.249847,0,0);}
.m49_c01194{transform:matrix(1.923102,0.065451,-0.008504,0.249855,0,0);-ms-transform:matrix(1.923102,0.065451,-0.008504,0.249855,0,0);-webkit-transform:matrix(1.923102,0.065451,-0.008504,0.249855,0,0);}
.m10f_c01194{transform:matrix(2.019865,0.074810,-0.009253,0.249829,0,0);-ms-transform:matrix(2.019865,0.074810,-0.009253,0.249829,0,0);-webkit-transform:matrix(2.019865,0.074810,-0.009253,0.249829,0,0);}
.m3b_c01194{transform:matrix(2.449220,0.071027,-0.007247,0.249895,0,0);-ms-transform:matrix(2.449220,0.071027,-0.007247,0.249895,0,0);-webkit-transform:matrix(2.449220,0.071027,-0.007247,0.249895,0,0);}
.m28_c01194{transform:matrix(2.750592,0.093614,-0.008504,0.249855,0,0);-ms-transform:matrix(2.750592,0.093614,-0.008504,0.249855,0,0);-webkit-transform:matrix(2.750592,0.093614,-0.008504,0.249855,0,0);}
.mf5_c01194{transform:matrix(5.457628,0.180282,-0.008254,0.249864,0,0);-ms-transform:matrix(5.457628,0.180282,-0.008254,0.249864,0,0);-webkit-transform:matrix(5.457628,0.180282,-0.008254,0.249864,0,0);}
.m1a_c01194{transform:matrix(6.313480,0.214873,-0.008504,0.249855,0,0);-ms-transform:matrix(6.313480,0.214873,-0.008504,0.249855,0,0);-webkit-transform:matrix(6.313480,0.214873,-0.008504,0.249855,0,0);}
.m9b_c01194{transform:matrix(6.629049,0.272063,-0.010252,0.249790,0,0);-ms-transform:matrix(6.629049,0.272063,-0.010252,0.249790,0,0);-webkit-transform:matrix(6.629049,0.272063,-0.010252,0.249790,0,0);}
.m64_c01194{transform:matrix(8.557470,0.291245,-0.008504,0.249855,0,0);-ms-transform:matrix(8.557470,0.291245,-0.008504,0.249855,0,0);-webkit-transform:matrix(8.557470,0.291245,-0.008504,0.249855,0,0);}
.m3c_c01194{transform:matrix(9.557397,0.277165,-0.007247,0.249895,0,0);-ms-transform:matrix(9.557397,0.277165,-0.007247,0.249895,0,0);-webkit-transform:matrix(9.557397,0.277165,-0.007247,0.249895,0,0);}
.m48_c01194{transform:matrix(10.168742,0.346083,-0.008504,0.249855,0,0);-ms-transform:matrix(10.168742,0.346083,-0.008504,0.249855,0,0);-webkit-transform:matrix(10.168742,0.346083,-0.008504,0.249855,0,0);}
.m53_c01194{transform:matrix(12.270527,0.405333,-0.008254,0.249864,0,0);-ms-transform:matrix(12.270527,0.405333,-0.008254,0.249864,0,0);-webkit-transform:matrix(12.270527,0.405333,-0.008254,0.249864,0,0);}
.v0_c01194{vertical-align:0.000000px;}
.ls0_c01194{letter-spacing:0.000000px;}
.sc__c01194{text-shadow:none;}
.sc0_c01194{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__c01194{-webkit-text-stroke:0px transparent;}
.sc0_c01194{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01194{word-spacing:0.000000px;}
._0_c01194{margin-left:-2.332836px;}
.fc0_c01194{color:transparent;}
.fsf_c01194{font-size:11.994539px;}
.fs5_c01194{font-size:11.994941px;}
.fs1f_c01194{font-size:12.000000px;}
.fs8_c01194{font-size:12.005045px;}
.fsd_c01194{font-size:17.991808px;}
.fs14_c01194{font-size:17.997138px;}
.fs1b_c01194{font-size:24.000000px;}
.fs20_c01194{font-size:29.990549px;}
.fs17_c01194{font-size:35.986065px;}
.fsa_c01194{font-size:36.000000px;}
.fs3_c01194{font-size:42.000000px;}
.fsc_c01194{font-size:59.972694px;}
.fs19_c01194{font-size:59.974194px;}
.fs4_c01194{font-size:59.974705px;}
.fs1a_c01194{font-size:59.976776px;}
.fs2_c01194{font-size:59.978906px;}
.fs18_c01194{font-size:59.981097px;}
.fs6_c01194{font-size:60.025225px;}
.fs15_c01194{font-size:60.028823px;}
.fse_c01194{font-size:65.969963px;}
.fs11_c01194{font-size:65.979207px;}
.fs16_c01194{font-size:65.989505px;}
.fs21_c01194{font-size:65.992245px;}
.fs1c_c01194{font-size:71.967233px;}
.fs12_c01194{font-size:71.977316px;}
.fs1d_c01194{font-size:71.980017px;}
.fs13_c01194{font-size:71.988551px;}
.fs1e_c01194{font-size:71.991540px;}
.fs9_c01194{font-size:72.000000px;}
.fs7_c01194{font-size:72.030270px;}
.fsb_c01194{font-size:77.967116px;}
.fs10_c01194{font-size:77.975426px;}
.fs0_c01194{font-size:77.978352px;}
.fs1_c01194{font-size:78.015676px;}
.y0_c01194{bottom:0.000000px;}
.y116_c01194{bottom:88.499256px;}
.y115_c01194{bottom:96.425259px;}
.y114_c01194{bottom:97.880244px;}
.y113_c01194{bottom:101.553522px;}
.y112_c01194{bottom:102.889500px;}
.y111_c01194{bottom:105.158011px;}
.y104_c01194{bottom:105.840000px;}
.y110_c01194{bottom:108.482406px;}
.y10f_c01194{bottom:112.305967px;}
.y10d_c01194{bottom:116.568756px;}
.y10e_c01194{bottom:116.914133px;}
.y10c_c01194{bottom:118.229649px;}
.y10b_c01194{bottom:121.091839px;}
.y10a_c01194{bottom:122.309398px;}
.y109_c01194{bottom:126.358456px;}
.y108_c01194{bottom:131.717536px;}
.y107_c01194{bottom:134.151600px;}
.y106_c01194{bottom:138.158201px;}
.y105_c01194{bottom:140.134500px;}
.y3f_c01194{bottom:142.695000px;}
.y103_c01194{bottom:157.434000px;}
.y102_c01194{bottom:159.553638px;}
.y101_c01194{bottom:163.372410px;}
.y100_c01194{bottom:164.636214px;}
.yff_c01194{bottom:167.137431px;}
.yfe_c01194{bottom:170.500146px;}
.yfd_c01194{bottom:174.708000px;}
.yfc_c01194{bottom:208.372844px;}
.yfb_c01194{bottom:208.375242px;}
.yfa_c01194{bottom:208.382015px;}
.yf9_c01194{bottom:208.384112px;}
.yf8_c01194{bottom:208.386254px;}
.yf7_c01194{bottom:213.876078px;}
.yf6_c01194{bottom:214.391233px;}
.yf5_c01194{bottom:217.631355px;}
.yf4_c01194{bottom:222.474354px;}
.yf3_c01194{bottom:223.223586px;}
.yf2_c01194{bottom:225.811347px;}
.yf1_c01194{bottom:226.900396px;}
.yf0_c01194{bottom:229.746053px;}
.yef_c01194{bottom:230.898115px;}
.yee_c01194{bottom:234.934791px;}
.yed_c01194{bottom:238.153380px;}
.yec_c01194{bottom:240.018392px;}
.yeb_c01194{bottom:243.288955px;}
.yea_c01194{bottom:244.626000px;}
.ye9_c01194{bottom:264.531610px;}
.ye8_c01194{bottom:266.988929px;}
.ye7_c01194{bottom:267.846404px;}
.ye6_c01194{bottom:269.931372px;}
.ye5_c01194{bottom:273.199934px;}
.ye4_c01194{bottom:276.036650px;}
.ye3_c01194{bottom:278.079494px;}
.ye2_c01194{bottom:281.746268px;}
.ye1_c01194{bottom:283.234500px;}
.ydf_c01194{bottom:302.450481px;}
.yde_c01194{bottom:303.617350px;}
.ydd_c01194{bottom:307.188426px;}
.ydc_c01194{bottom:308.764215px;}
.ye0_c01194{bottom:311.043000px;}
.ydb_c01194{bottom:311.932375px;}
.yda_c01194{bottom:316.731316px;}
.yd9_c01194{bottom:325.599756px;}
.yd8_c01194{bottom:327.035228px;}
.yd7_c01194{bottom:334.295425px;}
.yd6_c01194{bottom:338.369370px;}
.yd5_c01194{bottom:339.756011px;}
.yd4_c01194{bottom:345.161799px;}
.yd3_c01194{bottom:347.422293px;}
.yd2_c01194{bottom:351.874585px;}
.yd1_c01194{bottom:353.167500px;}
.yd0_c01194{bottom:367.351745px;}
.ycf_c01194{bottom:368.026433px;}
.yce_c01194{bottom:370.263773px;}
.ycd_c01194{bottom:374.891759px;}
.ycc_c01194{bottom:375.708255px;}
.yca_c01194{bottom:375.788543px;}
.yc9_c01194{bottom:378.096233px;}
.yc8_c01194{bottom:379.249395px;}
.ycb_c01194{bottom:380.166350px;}
.yc7_c01194{bottom:381.538185px;}
.yc6_c01194{bottom:383.108565px;}
.yc5_c01194{bottom:386.890193px;}
.yc4_c01194{bottom:387.996000px;}
.yc3_c01194{bottom:398.424648px;}
.yc2_c01194{bottom:404.496000px;}
.yc1_c01194{bottom:409.042108px;}
.yc0_c01194{bottom:410.691180px;}
.ybf_c01194{bottom:414.408625px;}
.ybe_c01194{bottom:417.247561px;}
.ybd_c01194{bottom:422.467614px;}
.ybc_c01194{bottom:423.636000px;}
.ybb_c01194{bottom:448.945080px;}
.yba_c01194{bottom:450.136830px;}
.yb9_c01194{bottom:451.736190px;}
.yb8_c01194{bottom:453.254385px;}
.yb7_c01194{bottom:454.742917px;}
.yb6_c01194{bottom:457.125000px;}
.yb5_c01194{bottom:508.770526px;}
.yb4_c01194{bottom:511.729779px;}
.yb3_c01194{bottom:514.641252px;}
.yb2_c01194{bottom:519.256364px;}
.yb1_c01194{bottom:521.258348px;}
.yb0_c01194{bottom:522.610734px;}
.yaf_c01194{bottom:525.912897px;}
.yad_c01194{bottom:527.465034px;}
.yae_c01194{bottom:528.951702px;}
.yac_c01194{bottom:537.280031px;}
.yab_c01194{bottom:538.905283px;}
.yaa_c01194{bottom:540.819508px;}
.ya9_c01194{bottom:544.489214px;}
.ya8_c01194{bottom:545.813308px;}
.ya7_c01194{bottom:549.497281px;}
.ya6_c01194{bottom:551.302430px;}
.ya5_c01194{bottom:555.411367px;}
.ya4_c01194{bottom:557.183798px;}
.ya3_c01194{bottom:561.295011px;}
.ya2_c01194{bottom:564.915947px;}
.y3e_c01194{bottom:565.248000px;}
.ya1_c01194{bottom:567.007500px;}
.ya0_c01194{bottom:598.922443px;}
.y9f_c01194{bottom:599.952000px;}
.y9e_c01194{bottom:600.547993px;}
.y9a_c01194{bottom:611.688436px;}
.y99_c01194{bottom:613.505085px;}
.y98_c01194{bottom:615.198918px;}
.y97_c01194{bottom:616.663725px;}
.y96_c01194{bottom:621.635877px;}
.y95_c01194{bottom:623.034510px;}
.y9d_c01194{bottom:623.638372px;}
.y94_c01194{bottom:624.822745px;}
.y9c_c01194{bottom:625.807977px;}
.y93_c01194{bottom:627.503039px;}
.y9b_c01194{bottom:632.070546px;}
.y92_c01194{bottom:633.410667px;}
.y91_c01194{bottom:636.082657px;}
.y90_c01194{bottom:638.302500px;}
.y8f_c01194{bottom:656.388966px;}
.y8e_c01194{bottom:657.470328px;}
.y8d_c01194{bottom:661.226790px;}
.y8c_c01194{bottom:663.491079px;}
.y8b_c01194{bottom:664.204199px;}
.y8a_c01194{bottom:667.259196px;}
.y89_c01194{bottom:669.427526px;}
.y88_c01194{bottom:671.265353px;}
.y87_c01194{bottom:688.116207px;}
.y86_c01194{bottom:688.601443px;}
.y85_c01194{bottom:691.214994px;}
.y82_c01194{bottom:692.841644px;}
.y81_c01194{bottom:693.505479px;}
.y84_c01194{bottom:695.521905px;}
.y80_c01194{bottom:696.698727px;}
.y7f_c01194{bottom:699.577956px;}
.y83_c01194{bottom:699.603764px;}
.y7e_c01194{bottom:700.625630px;}
.y7d_c01194{bottom:704.093381px;}
.y7c_c01194{bottom:705.815046px;}
.y7b_c01194{bottom:721.387625px;}
.y7a_c01194{bottom:726.150135px;}
.y79_c01194{bottom:728.246870px;}
.y78_c01194{bottom:731.291156px;}
.y77_c01194{bottom:735.643799px;}
.y76_c01194{bottom:737.362079px;}
.y75_c01194{bottom:740.754128px;}
.y74_c01194{bottom:742.797027px;}
.y73_c01194{bottom:758.671470px;}
.y72_c01194{bottom:766.418438px;}
.y71_c01194{bottom:768.364601px;}
.y70_c01194{bottom:769.146929px;}
.y6f_c01194{bottom:771.468105px;}
.y6e_c01194{bottom:775.734335px;}
.y6d_c01194{bottom:790.203628px;}
.y6c_c01194{bottom:791.403816px;}
.y6b_c01194{bottom:793.060658px;}
.y6a_c01194{bottom:797.324223px;}
.y69_c01194{bottom:798.822057px;}
.y68_c01194{bottom:802.841201px;}
.y67_c01194{bottom:807.399804px;}
.y66_c01194{bottom:811.066967px;}
.y65_c01194{bottom:812.976000px;}
.y64_c01194{bottom:841.632216px;}
.y63_c01194{bottom:842.600667px;}
.y62_c01194{bottom:843.758214px;}
.y61_c01194{bottom:845.925000px;}
.y60_c01194{bottom:848.120314px;}
.y5f_c01194{bottom:862.145343px;}
.y5e_c01194{bottom:863.559985px;}
.y5d_c01194{bottom:868.979241px;}
.y5c_c01194{bottom:870.348478px;}
.y5b_c01194{bottom:873.398291px;}
.y5a_c01194{bottom:874.940472px;}
.y59_c01194{bottom:877.246641px;}
.y58_c01194{bottom:878.734507px;}
.y57_c01194{bottom:881.709003px;}
.y56_c01194{bottom:883.462702px;}
.y55_c01194{bottom:891.106321px;}
.y54_c01194{bottom:896.007218px;}
.y52_c01194{bottom:907.030436px;}
.y53_c01194{bottom:910.985211px;}
.y51_c01194{bottom:911.018997px;}
.y50_c01194{bottom:912.552161px;}
.y4f_c01194{bottom:915.405340px;}
.y4e_c01194{bottom:917.615565px;}
.y4d_c01194{bottom:919.354500px;}
.y4c_c01194{bottom:929.408079px;}
.y4b_c01194{bottom:930.051645px;}
.y4a_c01194{bottom:930.419397px;}
.y49_c01194{bottom:931.524152px;}
.y47_c01194{bottom:936.939213px;}
.y48_c01194{bottom:940.175518px;}
.y46_c01194{bottom:941.082606px;}
.y45_c01194{bottom:942.945687px;}
.y44_c01194{bottom:947.069802px;}
.y43_c01194{bottom:949.366281px;}
.y42_c01194{bottom:950.826615px;}
.y41_c01194{bottom:952.681485px;}
.y40_c01194{bottom:954.454500px;}
.y3d_c01194{bottom:966.184348px;}
.y3c_c01194{bottom:971.164810px;}
.y3a_c01194{bottom:972.136458px;}
.y39_c01194{bottom:973.397219px;}
.y38_c01194{bottom:974.689777px;}
.y37_c01194{bottom:975.967590px;}
.y36_c01194{bottom:977.166754px;}
.y3b_c01194{bottom:977.168619px;}
.y35_c01194{bottom:979.774753px;}
.y34_c01194{bottom:983.354977px;}
.y33_c01194{bottom:985.602361px;}
.y32_c01194{bottom:988.750500px;}
.y31_c01194{bottom:1020.596190px;}
.y30_c01194{bottom:1022.246370px;}
.y2f_c01194{bottom:1036.060170px;}
.y2e_c01194{bottom:1036.906116px;}
.y27_c01194{bottom:1037.421768px;}
.y2d_c01194{bottom:1037.832981px;}
.y26_c01194{bottom:1038.910866px;}
.y2c_c01194{bottom:1039.920684px;}
.y25_c01194{bottom:1040.031132px;}
.y2b_c01194{bottom:1041.023832px;}
.y24_c01194{bottom:1042.696137px;}
.y2a_c01194{bottom:1043.482873px;}
.y23_c01194{bottom:1044.569316px;}
.y29_c01194{bottom:1046.864617px;}
.y22_c01194{bottom:1047.563679px;}
.y21_c01194{bottom:1048.730406px;}
.y20_c01194{bottom:1051.688406px;}
.y28_c01194{bottom:1051.924389px;}
.y1f_c01194{bottom:1058.016027px;}
.y1e_c01194{bottom:1059.486000px;}
.y1d_c01194{bottom:1087.515135px;}
.y1c_c01194{bottom:1088.369577px;}
.y1b_c01194{bottom:1092.970500px;}
.y1a_c01194{bottom:1103.628009px;}
.y19_c01194{bottom:1107.585660px;}
.y18_c01194{bottom:1109.845419px;}
.y17_c01194{bottom:1110.985269px;}
.y16_c01194{bottom:1112.129607px;}
.y15_c01194{bottom:1115.107803px;}
.y14_c01194{bottom:1116.630816px;}
.y13_c01194{bottom:1120.784664px;}
.y12_c01194{bottom:1124.542752px;}
.y11_c01194{bottom:1125.255885px;}
.y10_c01194{bottom:1128.225870px;}
.yf_c01194{bottom:1129.686000px;}
.ye_c01194{bottom:1163.586000px;}
.yd_c01194{bottom:1179.991866px;}
.yc_c01194{bottom:1182.442494px;}
.yb_c01194{bottom:1183.891530px;}
.ya_c01194{bottom:1185.593934px;}
.y9_c01194{bottom:1190.000172px;}
.y8_c01194{bottom:1193.589066px;}
.y7_c01194{bottom:1194.762000px;}
.y3_c01194{bottom:1194.776022px;}
.y2_c01194{bottom:1196.386215px;}
.y1_c01194{bottom:1198.552500px;}
.y6_c01194{bottom:1241.458509px;}
.y5_c01194{bottom:1243.673431px;}
.y4_c01194{bottom:1244.715000px;}
.h11_c01194{height:11.994539px;}
.h7_c01194{height:11.994941px;}
.h21_c01194{height:12.000000px;}
.ha_c01194{height:12.005045px;}
.hf_c01194{height:17.991808px;}
.h16_c01194{height:17.997138px;}
.h1d_c01194{height:24.000000px;}
.h22_c01194{height:29.990549px;}
.h19_c01194{height:35.986065px;}
.hc_c01194{height:36.000000px;}
.h5_c01194{height:42.000000px;}
.he_c01194{height:59.972694px;}
.h1b_c01194{height:59.974194px;}
.h6_c01194{height:59.974705px;}
.h1c_c01194{height:59.976776px;}
.h4_c01194{height:59.978906px;}
.h1a_c01194{height:59.981097px;}
.h8_c01194{height:60.025225px;}
.h17_c01194{height:60.028823px;}
.h10_c01194{height:65.969963px;}
.h13_c01194{height:65.979207px;}
.h18_c01194{height:65.989505px;}
.h23_c01194{height:65.992245px;}
.h1e_c01194{height:71.967233px;}
.h14_c01194{height:71.977316px;}
.h1f_c01194{height:71.980017px;}
.h15_c01194{height:71.988551px;}
.h20_c01194{height:71.991540px;}
.hb_c01194{height:72.000000px;}
.h9_c01194{height:72.030270px;}
.hd_c01194{height:77.967116px;}
.h12_c01194{height:77.975426px;}
.h2_c01194{height:77.978352px;}
.h3_c01194{height:78.015676px;}
.h1_c01194{height:1258.500000px;}
.h0_c01194{height:1258.740000px;}
.w0_c01194{width:904.200000px;}
.w1_c01194{width:904.500000px;}
.x0_c01194{left:0.000000px;}
.x3b_c01194{left:112.590000px;}
.x30_c01194{left:124.372500px;}
.x1_c01194{left:131.976000px;}
.xb1_c01194{left:158.370000px;}
.x80_c01194{left:169.393500px;}
.x76_c01194{left:170.886000px;}
.x71_c01194{left:172.347293px;}
.x67_c01194{left:173.700438px;}
.x61_c01194{left:174.813546px;}
.x58_c01194{left:176.691000px;}
.x4e_c01194{left:178.844392px;}
.x47_c01194{left:179.947500px;}
.x3c_c01194{left:181.032000px;}
.x1e_c01194{left:183.984000px;}
.x10_c01194{left:186.144000px;}
.x2_c01194{left:188.926492px;}
.x90_c01194{left:207.181405px;}
.x8b_c01194{left:208.246422px;}
.xad_c01194{left:209.859000px;}
.xa4_c01194{left:212.548484px;}
.x9c_c01194{left:213.935344px;}
.x93_c01194{left:215.041666px;}
.x87_c01194{left:219.288255px;}
.x81_c01194{left:220.355987px;}
.x7c_c01194{left:221.606511px;}
.x6c_c01194{left:223.708991px;}
.x77_c01194{left:224.974358px;}
.x1f_c01194{left:227.175265px;}
.x11_c01194{left:229.046055px;}
.x3_c01194{left:231.257619px;}
.x31_c01194{left:232.929000px;}
.x1c_c01194{left:235.087500px;}
.x2e_c01194{left:236.109975px;}
.xe_c01194{left:238.680000px;}
.xb5_c01194{left:241.114191px;}
.x7f_c01194{left:256.125000px;}
.x1d_c01194{left:266.140521px;}
.xf_c01194{left:272.700000px;}
.x3d_c01194{left:287.627798px;}
.x2f_c01194{left:289.268675px;}
.x56_c01194{left:293.553771px;}
.x48_c01194{left:299.499329px;}
.x4c_c01194{left:307.332537px;}
.x82_c01194{left:308.583171px;}
.x32_c01194{left:310.425000px;}
.xa0_c01194{left:312.396176px;}
.x62_c01194{left:314.021366px;}
.x91_c01194{left:315.119859px;}
.x12_c01194{left:316.311203px;}
.x4f_c01194{left:317.801738px;}
.xae_c01194{left:320.481267px;}
.x57_c01194{left:327.565225px;}
.x3e_c01194{left:330.535847px;}
.x68_c01194{left:335.692784px;}
.x13_c01194{left:337.264728px;}
.x6d_c01194{left:347.248605px;}
.x5d_c01194{left:349.191105px;}
.x94_c01194{left:354.193485px;}
.x63_c01194{left:358.024541px;}
.x92_c01194{left:359.942991px;}
.x50_c01194{left:361.526532px;}
.xb6_c01194{left:363.093590px;}
.x69_c01194{left:368.396103px;}
.x96_c01194{left:369.859239px;}
.x89_c01194{left:372.878034px;}
.xab_c01194{left:377.634377px;}
.x72_c01194{left:379.771661px;}
.x9f_c01194{left:382.590000px;}
.x49_c01194{left:385.872868px;}
.x7d_c01194{left:390.124147px;}
.x3f_c01194{left:398.011803px;}
.x73_c01194{left:400.727517px;}
.x83_c01194{left:408.756398px;}
.x20_c01194{left:413.095659px;}
.x5e_c01194{left:415.428191px;}
.x7_c01194{left:416.829000px;}
.x8a_c01194{left:418.528338px;}
.x28_c01194{left:421.662858px;}
.x4_c01194{left:422.787000px;}
.x8c_c01194{left:425.839112px;}
.x39_c01194{left:429.582374px;}
.x4a_c01194{left:432.285909px;}
.x33_c01194{left:433.881000px;}
.x9d_c01194{left:435.015414px;}
.x5f_c01194{left:437.766497px;}
.x43_c01194{left:439.291686px;}
.x5_c01194{left:444.022244px;}
.x14_c01194{left:447.686196px;}
.x8_c01194{left:449.377918px;}
.x84_c01194{left:451.943167px;}
.x6a_c01194{left:458.289786px;}
.xa5_c01194{left:465.451827px;}
.x74_c01194{left:467.251815px;}
.x64_c01194{left:469.509167px;}
.x51_c01194{left:474.620609px;}
.x6e_c01194{left:477.593907px;}
.x9e_c01194{left:478.750623px;}
.x6_c01194{left:489.179541px;}
.x60_c01194{left:493.311008px;}
.x21_c01194{left:500.008659px;}
.x97_c01194{left:501.575890px;}
.xaf_c01194{left:507.865695px;}
.x40_c01194{left:519.188006px;}
.x34_c01194{left:523.812000px;}
.x8d_c01194{left:526.210140px;}
.xb2_c01194{left:530.323175px;}
.xa1_c01194{left:532.395456px;}
.x22_c01194{left:534.289844px;}
.x98_c01194{left:535.362570px;}
.x78_c01194{left:542.903610px;}
.x29_c01194{left:546.769440px;}
.x9_c01194{left:548.969727px;}
.x4b_c01194{left:553.030544px;}
.x6f_c01194{left:556.708436px;}
.x59_c01194{left:558.847461px;}
.x35_c01194{left:565.162500px;}
.x15_c01194{left:569.736024px;}
.x70_c01194{left:571.389906px;}
.x41_c01194{left:573.929709px;}
.x75_c01194{left:577.630104px;}
.x6b_c01194{left:578.677556px;}
.xa6_c01194{left:587.653004px;}
.xa2_c01194{left:588.689605px;}
.x95_c01194{left:594.010154px;}
.x3a_c01194{left:596.335031px;}
.x5a_c01194{left:599.288979px;}
.x65_c01194{left:601.186080px;}
.x52_c01194{left:604.446342px;}
.x36_c01194{left:609.225000px;}
.xa3_c01194{left:611.841430px;}
.x16_c01194{left:614.485729px;}
.x23_c01194{left:622.271274px;}
.x99_c01194{left:634.627705px;}
.x2a_c01194{left:637.756059px;}
.xb0_c01194{left:640.155000px;}
.xac_c01194{left:645.622715px;}
.x37_c01194{left:653.796000px;}
.x4d_c01194{left:655.398668px;}
.xa_c01194{left:671.242831px;}
.xaa_c01194{left:672.511925px;}
.x24_c01194{left:677.309681px;}
.x2b_c01194{left:678.544430px;}
.x85_c01194{left:685.808068px;}
.x8e_c01194{left:694.332000px;}
.x42_c01194{left:695.672345px;}
.x38_c01194{left:697.270500px;}
.x17_c01194{left:701.992136px;}
.xb4_c01194{left:704.414298px;}
.xa7_c01194{left:708.674861px;}
.x5b_c01194{left:714.405248px;}
.xb_c01194{left:718.484542px;}
.x66_c01194{left:723.169918px;}
.x79_c01194{left:733.824498px;}
.x18_c01194{left:735.615478px;}
.xa8_c01194{left:741.643359px;}
.x1b_c01194{left:744.963589px;}
.x88_c01194{left:749.787980px;}
.x44_c01194{left:753.676098px;}
.x25_c01194{left:755.613798px;}
.xc_c01194{left:758.695292px;}
.x55_c01194{left:761.925557px;}
.x53_c01194{left:763.688189px;}
.x45_c01194{left:765.539448px;}
.x19_c01194{left:769.106954px;}
.x7a_c01194{left:775.096185px;}
.x46_c01194{left:786.300311px;}
.x26_c01194{left:788.529849px;}
.x2c_c01194{left:790.041367px;}
.x5c_c01194{left:791.545031px;}
.xb3_c01194{left:794.645088px;}
.x8f_c01194{left:802.532166px;}
.x54_c01194{left:805.241706px;}
.x86_c01194{left:807.486268px;}
.x9a_c01194{left:811.528627px;}
.x7b_c01194{left:819.360376px;}
.x2d_c01194{left:821.332998px;}
.xd_c01194{left:826.700218px;}
.x27_c01194{left:832.283052px;}
.x1a_c01194{left:835.503990px;}
.xa9_c01194{left:842.663238px;}
.x9b_c01194{left:846.505116px;}
.x7e_c01194{left:851.541427px;}
@media print{
.v0_c01194{vertical-align:0.000000pt;}
.ls0_c01194{letter-spacing:0.000000pt;}
.ws0_c01194{word-spacing:0.000000pt;}
._0_c01194{margin-left:-2.073632pt;}
.fsf_c01194{font-size:10.661812pt;}
.fs5_c01194{font-size:10.662170pt;}
.fs1f_c01194{font-size:10.666667pt;}
.fs8_c01194{font-size:10.671151pt;}
.fsd_c01194{font-size:15.992718pt;}
.fs14_c01194{font-size:15.997456pt;}
.fs1b_c01194{font-size:21.333333pt;}
.fs20_c01194{font-size:26.658265pt;}
.fs17_c01194{font-size:31.987614pt;}
.fsa_c01194{font-size:32.000000pt;}
.fs3_c01194{font-size:37.333333pt;}
.fsc_c01194{font-size:53.309061pt;}
.fs19_c01194{font-size:53.310395pt;}
.fs4_c01194{font-size:53.310849pt;}
.fs1a_c01194{font-size:53.312689pt;}
.fs2_c01194{font-size:53.314583pt;}
.fs18_c01194{font-size:53.316531pt;}
.fs6_c01194{font-size:53.355755pt;}
.fs15_c01194{font-size:53.358954pt;}
.fse_c01194{font-size:58.639967pt;}
.fs11_c01194{font-size:58.648184pt;}
.fs16_c01194{font-size:58.657338pt;}
.fs21_c01194{font-size:58.659773pt;}
.fs1c_c01194{font-size:63.970873pt;}
.fs12_c01194{font-size:63.979837pt;}
.fs1d_c01194{font-size:63.982238pt;}
.fs13_c01194{font-size:63.989823pt;}
.fs1e_c01194{font-size:63.992480pt;}
.fs9_c01194{font-size:64.000000pt;}
.fs7_c01194{font-size:64.026906pt;}
.fsb_c01194{font-size:69.304103pt;}
.fs10_c01194{font-size:69.311490pt;}
.fs0_c01194{font-size:69.314091pt;}
.fs1_c01194{font-size:69.347268pt;}
.y0_c01194{bottom:0.000000pt;}
.y116_c01194{bottom:78.666005pt;}
.y115_c01194{bottom:85.711341pt;}
.y114_c01194{bottom:87.004661pt;}
.y113_c01194{bottom:90.269797pt;}
.y112_c01194{bottom:91.457333pt;}
.y111_c01194{bottom:93.473788pt;}
.y104_c01194{bottom:94.080000pt;}
.y110_c01194{bottom:96.428805pt;}
.y10f_c01194{bottom:99.827527pt;}
.y10d_c01194{bottom:103.616672pt;}
.y10e_c01194{bottom:103.923673pt;}
.y10c_c01194{bottom:105.093021pt;}
.y10b_c01194{bottom:107.637191pt;}
.y10a_c01194{bottom:108.719465pt;}
.y109_c01194{bottom:112.318628pt;}
.y108_c01194{bottom:117.082255pt;}
.y107_c01194{bottom:119.245867pt;}
.y106_c01194{bottom:122.807289pt;}
.y105_c01194{bottom:124.564000pt;}
.y3f_c01194{bottom:126.840000pt;}
.y103_c01194{bottom:139.941333pt;}
.y102_c01194{bottom:141.825456pt;}
.y101_c01194{bottom:145.219920pt;}
.y100_c01194{bottom:146.343301pt;}
.yff_c01194{bottom:148.566605pt;}
.yfe_c01194{bottom:151.555685pt;}
.yfd_c01194{bottom:155.296000pt;}
.yfc_c01194{bottom:185.220305pt;}
.yfb_c01194{bottom:185.222437pt;}
.yfa_c01194{bottom:185.228457pt;}
.yf9_c01194{bottom:185.230321pt;}
.yf8_c01194{bottom:185.232225pt;}
.yf7_c01194{bottom:190.112069pt;}
.yf6_c01194{bottom:190.569985pt;}
.yf5_c01194{bottom:193.450093pt;}
.yf4_c01194{bottom:197.754981pt;}
.yf3_c01194{bottom:198.420965pt;}
.yf2_c01194{bottom:200.721197pt;}
.yf1_c01194{bottom:201.689241pt;}
.yf0_c01194{bottom:204.218713pt;}
.yef_c01194{bottom:205.242769pt;}
.yee_c01194{bottom:208.830925pt;}
.yed_c01194{bottom:211.691893pt;}
.yec_c01194{bottom:213.349681pt;}
.yeb_c01194{bottom:216.256849pt;}
.yea_c01194{bottom:217.445333pt;}
.ye9_c01194{bottom:235.139209pt;}
.ye8_c01194{bottom:237.323492pt;}
.ye7_c01194{bottom:238.085692pt;}
.ye6_c01194{bottom:239.938997pt;}
.ye5_c01194{bottom:242.844385pt;}
.ye4_c01194{bottom:245.365911pt;}
.ye3_c01194{bottom:247.181772pt;}
.ye2_c01194{bottom:250.441127pt;}
.ye1_c01194{bottom:251.764000pt;}
.ydf_c01194{bottom:268.844872pt;}
.yde_c01194{bottom:269.882089pt;}
.ydd_c01194{bottom:273.056379pt;}
.ydc_c01194{bottom:274.457080pt;}
.ye0_c01194{bottom:276.482667pt;}
.ydb_c01194{bottom:277.273223pt;}
.yda_c01194{bottom:281.538948pt;}
.yd9_c01194{bottom:289.422005pt;}
.yd8_c01194{bottom:290.697980pt;}
.yd7_c01194{bottom:297.151489pt;}
.yd6_c01194{bottom:300.772773pt;}
.yd5_c01194{bottom:302.005343pt;}
.yd4_c01194{bottom:306.810488pt;}
.yd3_c01194{bottom:308.819816pt;}
.yd2_c01194{bottom:312.777409pt;}
.yd1_c01194{bottom:313.926667pt;}
.yd0_c01194{bottom:326.534884pt;}
.ycf_c01194{bottom:327.134607pt;}
.yce_c01194{bottom:329.123353pt;}
.ycd_c01194{bottom:333.237119pt;}
.ycc_c01194{bottom:333.962893pt;}
.yca_c01194{bottom:334.034260pt;}
.yc9_c01194{bottom:336.085540pt;}
.yc8_c01194{bottom:337.110573pt;}
.ycb_c01194{bottom:337.925644pt;}
.yc7_c01194{bottom:339.145053pt;}
.yc6_c01194{bottom:340.540947pt;}
.yc5_c01194{bottom:343.902393pt;}
.yc4_c01194{bottom:344.885333pt;}
.yc3_c01194{bottom:354.155243pt;}
.yc2_c01194{bottom:359.552000pt;}
.yc1_c01194{bottom:363.592985pt;}
.yc0_c01194{bottom:365.058827pt;}
.ybf_c01194{bottom:368.363223pt;}
.ybe_c01194{bottom:370.886721pt;}
.ybd_c01194{bottom:375.526768pt;}
.ybc_c01194{bottom:376.565333pt;}
.ybb_c01194{bottom:399.062293pt;}
.yba_c01194{bottom:400.121627pt;}
.yb9_c01194{bottom:401.543280pt;}
.yb8_c01194{bottom:402.892787pt;}
.yb7_c01194{bottom:404.215927pt;}
.yb6_c01194{bottom:406.333333pt;}
.yb5_c01194{bottom:452.240468pt;}
.yb4_c01194{bottom:454.870915pt;}
.yb3_c01194{bottom:457.458891pt;}
.yb2_c01194{bottom:461.561212pt;}
.yb1_c01194{bottom:463.340753pt;}
.yb0_c01194{bottom:464.542875pt;}
.yaf_c01194{bottom:467.478131pt;}
.yad_c01194{bottom:468.857808pt;}
.yae_c01194{bottom:470.179291pt;}
.yac_c01194{bottom:477.582249pt;}
.yab_c01194{bottom:479.026919pt;}
.yaa_c01194{bottom:480.728452pt;}
.ya9_c01194{bottom:483.990412pt;}
.ya8_c01194{bottom:485.167385pt;}
.ya7_c01194{bottom:488.442028pt;}
.ya6_c01194{bottom:490.046604pt;}
.ya5_c01194{bottom:493.698993pt;}
.ya4_c01194{bottom:495.274487pt;}
.ya3_c01194{bottom:498.928899pt;}
.ya2_c01194{bottom:502.147508pt;}
.y3e_c01194{bottom:502.442667pt;}
.ya1_c01194{bottom:504.006667pt;}
.ya0_c01194{bottom:532.375505pt;}
.y9f_c01194{bottom:533.290667pt;}
.y9e_c01194{bottom:533.820439pt;}
.y9a_c01194{bottom:543.723055pt;}
.y99_c01194{bottom:545.337853pt;}
.y98_c01194{bottom:546.843483pt;}
.y97_c01194{bottom:548.145533pt;}
.y96_c01194{bottom:552.565224pt;}
.y95_c01194{bottom:553.808453pt;}
.y9d_c01194{bottom:554.345220pt;}
.y94_c01194{bottom:555.397996pt;}
.y9c_c01194{bottom:556.273757pt;}
.y93_c01194{bottom:557.780479pt;}
.y9b_c01194{bottom:561.840485pt;}
.y92_c01194{bottom:563.031704pt;}
.y91_c01194{bottom:565.406807pt;}
.y90_c01194{bottom:567.380000pt;}
.y8f_c01194{bottom:583.456859pt;}
.y8e_c01194{bottom:584.418069pt;}
.y8d_c01194{bottom:587.757147pt;}
.y8c_c01194{bottom:589.769848pt;}
.y8b_c01194{bottom:590.403732pt;}
.y8a_c01194{bottom:593.119285pt;}
.y89_c01194{bottom:595.046689pt;}
.y88_c01194{bottom:596.680313pt;}
.y87_c01194{bottom:611.658851pt;}
.y86_c01194{bottom:612.090172pt;}
.y85_c01194{bottom:614.413328pt;}
.y82_c01194{bottom:615.859239pt;}
.y81_c01194{bottom:616.449315pt;}
.y84_c01194{bottom:618.241693pt;}
.y80_c01194{bottom:619.287757pt;}
.y7f_c01194{bottom:621.847072pt;}
.y83_c01194{bottom:621.870012pt;}
.y7e_c01194{bottom:622.778337pt;}
.y7d_c01194{bottom:625.860783pt;}
.y7c_c01194{bottom:627.391152pt;}
.y7b_c01194{bottom:641.233444pt;}
.y7a_c01194{bottom:645.466787pt;}
.y79_c01194{bottom:647.330551pt;}
.y78_c01194{bottom:650.036583pt;}
.y77_c01194{bottom:653.905599pt;}
.y76_c01194{bottom:655.432959pt;}
.y75_c01194{bottom:658.448113pt;}
.y74_c01194{bottom:660.264024pt;}
.y73_c01194{bottom:674.374640pt;}
.y72_c01194{bottom:681.260833pt;}
.y71_c01194{bottom:682.990756pt;}
.y70_c01194{bottom:683.686159pt;}
.y6f_c01194{bottom:685.749427pt;}
.y6e_c01194{bottom:689.541631pt;}
.y6d_c01194{bottom:702.403225pt;}
.y6c_c01194{bottom:703.470059pt;}
.y6b_c01194{bottom:704.942807pt;}
.y6a_c01194{bottom:708.732643pt;}
.y69_c01194{bottom:710.064051pt;}
.y68_c01194{bottom:713.636623pt;}
.y67_c01194{bottom:717.688715pt;}
.y66_c01194{bottom:720.948415pt;}
.y65_c01194{bottom:722.645333pt;}
.y64_c01194{bottom:748.117525pt;}
.y63_c01194{bottom:748.978371pt;}
.y62_c01194{bottom:750.007301pt;}
.y61_c01194{bottom:751.933333pt;}
.y60_c01194{bottom:753.884724pt;}
.y5f_c01194{bottom:766.351416pt;}
.y5e_c01194{bottom:767.608876pt;}
.y5d_c01194{bottom:772.425992pt;}
.y5c_c01194{bottom:773.643092pt;}
.y5b_c01194{bottom:776.354036pt;}
.y5a_c01194{bottom:777.724864pt;}
.y59_c01194{bottom:779.774792pt;}
.y58_c01194{bottom:781.097340pt;}
.y57_c01194{bottom:783.741336pt;}
.y56_c01194{bottom:785.300180pt;}
.y55_c01194{bottom:792.094508pt;}
.y54_c01194{bottom:796.450860pt;}
.y52_c01194{bottom:806.249276pt;}
.y53_c01194{bottom:809.764632pt;}
.y51_c01194{bottom:809.794664pt;}
.y50_c01194{bottom:811.157476pt;}
.y4f_c01194{bottom:813.693636pt;}
.y4e_c01194{bottom:815.658280pt;}
.y4d_c01194{bottom:817.204000pt;}
.y4c_c01194{bottom:826.140515pt;}
.y4b_c01194{bottom:826.712573pt;}
.y4a_c01194{bottom:827.039464pt;}
.y49_c01194{bottom:828.021468pt;}
.y47_c01194{bottom:832.834856pt;}
.y48_c01194{bottom:835.711572pt;}
.y46_c01194{bottom:836.517872pt;}
.y45_c01194{bottom:838.173944pt;}
.y44_c01194{bottom:841.839824pt;}
.y43_c01194{bottom:843.881139pt;}
.y42_c01194{bottom:845.179213pt;}
.y41_c01194{bottom:846.827987pt;}
.y40_c01194{bottom:848.404000pt;}
.y3d_c01194{bottom:858.830532pt;}
.y3c_c01194{bottom:863.257609pt;}
.y3a_c01194{bottom:864.121296pt;}
.y39_c01194{bottom:865.241972pt;}
.y38_c01194{bottom:866.390913pt;}
.y37_c01194{bottom:867.526747pt;}
.y36_c01194{bottom:868.592671pt;}
.y3b_c01194{bottom:868.594328pt;}
.y35_c01194{bottom:870.910892pt;}
.y34_c01194{bottom:874.093313pt;}
.y33_c01194{bottom:876.090988pt;}
.y32_c01194{bottom:878.889333pt;}
.y31_c01194{bottom:907.196613pt;}
.y30_c01194{bottom:908.663440pt;}
.y2f_c01194{bottom:920.942373pt;}
.y2e_c01194{bottom:921.694325pt;}
.y27_c01194{bottom:922.152683pt;}
.y2d_c01194{bottom:922.518205pt;}
.y26_c01194{bottom:923.476325pt;}
.y2c_c01194{bottom:924.373941pt;}
.y25_c01194{bottom:924.472117pt;}
.y2b_c01194{bottom:925.354517pt;}
.y24_c01194{bottom:926.841011pt;}
.y2a_c01194{bottom:927.540332pt;}
.y23_c01194{bottom:928.506059pt;}
.y29_c01194{bottom:930.546327pt;}
.y22_c01194{bottom:931.167715pt;}
.y21_c01194{bottom:932.204805pt;}
.y20_c01194{bottom:934.834139pt;}
.y28_c01194{bottom:935.043901pt;}
.y1f_c01194{bottom:940.458691pt;}
.y1e_c01194{bottom:941.765333pt;}
.y1d_c01194{bottom:966.680120pt;}
.y1c_c01194{bottom:967.439624pt;}
.y1b_c01194{bottom:971.529333pt;}
.y1a_c01194{bottom:981.002675pt;}
.y19_c01194{bottom:984.520587pt;}
.y18_c01194{bottom:986.529261pt;}
.y17_c01194{bottom:987.542461pt;}
.y16_c01194{bottom:988.559651pt;}
.y15_c01194{bottom:991.206936pt;}
.y14_c01194{bottom:992.560725pt;}
.y13_c01194{bottom:996.253035pt;}
.y12_c01194{bottom:999.593557pt;}
.y11_c01194{bottom:1000.227453pt;}
.y10_c01194{bottom:1002.867440pt;}
.yf_c01194{bottom:1004.165333pt;}
.ye_c01194{bottom:1034.298667pt;}
.yd_c01194{bottom:1048.881659pt;}
.yc_c01194{bottom:1051.059995pt;}
.yb_c01194{bottom:1052.348027pt;}
.ya_c01194{bottom:1053.861275pt;}
.y9_c01194{bottom:1057.777931pt;}
.y8_c01194{bottom:1060.968059pt;}
.y7_c01194{bottom:1062.010667pt;}
.y3_c01194{bottom:1062.023131pt;}
.y2_c01194{bottom:1063.454413pt;}
.y1_c01194{bottom:1065.380000pt;}
.y6_c01194{bottom:1103.518675pt;}
.y5_c01194{bottom:1105.487495pt;}
.y4_c01194{bottom:1106.413333pt;}
.h11_c01194{height:10.661812pt;}
.h7_c01194{height:10.662170pt;}
.h21_c01194{height:10.666667pt;}
.ha_c01194{height:10.671151pt;}
.hf_c01194{height:15.992718pt;}
.h16_c01194{height:15.997456pt;}
.h1d_c01194{height:21.333333pt;}
.h22_c01194{height:26.658265pt;}
.h19_c01194{height:31.987614pt;}
.hc_c01194{height:32.000000pt;}
.h5_c01194{height:37.333333pt;}
.he_c01194{height:53.309061pt;}
.h1b_c01194{height:53.310395pt;}
.h6_c01194{height:53.310849pt;}
.h1c_c01194{height:53.312689pt;}
.h4_c01194{height:53.314583pt;}
.h1a_c01194{height:53.316531pt;}
.h8_c01194{height:53.355755pt;}
.h17_c01194{height:53.358954pt;}
.h10_c01194{height:58.639967pt;}
.h13_c01194{height:58.648184pt;}
.h18_c01194{height:58.657338pt;}
.h23_c01194{height:58.659773pt;}
.h1e_c01194{height:63.970873pt;}
.h14_c01194{height:63.979837pt;}
.h1f_c01194{height:63.982238pt;}
.h15_c01194{height:63.989823pt;}
.h20_c01194{height:63.992480pt;}
.hb_c01194{height:64.000000pt;}
.h9_c01194{height:64.026906pt;}
.hd_c01194{height:69.304103pt;}
.h12_c01194{height:69.311490pt;}
.h2_c01194{height:69.314091pt;}
.h3_c01194{height:69.347268pt;}
.h1_c01194{height:1118.666667pt;}
.h0_c01194{height:1118.880000pt;}
.w0_c01194{width:803.733333pt;}
.w1_c01194{width:804.000000pt;}
.x0_c01194{left:0.000000pt;}
.x3b_c01194{left:100.080000pt;}
.x30_c01194{left:110.553333pt;}
.x1_c01194{left:117.312000pt;}
.xb1_c01194{left:140.773333pt;}
.x80_c01194{left:150.572000pt;}
.x76_c01194{left:151.898667pt;}
.x71_c01194{left:153.197593pt;}
.x67_c01194{left:154.400389pt;}
.x61_c01194{left:155.389819pt;}
.x58_c01194{left:157.058667pt;}
.x4e_c01194{left:158.972793pt;}
.x47_c01194{left:159.953333pt;}
.x3c_c01194{left:160.917333pt;}
.x1e_c01194{left:163.541333pt;}
.x10_c01194{left:165.461333pt;}
.x2_c01194{left:167.934660pt;}
.x90_c01194{left:184.161249pt;}
.x8b_c01194{left:185.107931pt;}
.xad_c01194{left:186.541333pt;}
.xa4_c01194{left:188.931985pt;}
.x9c_c01194{left:190.164751pt;}
.x93_c01194{left:191.148148pt;}
.x87_c01194{left:194.922893pt;}
.x81_c01194{left:195.871988pt;}
.x7c_c01194{left:196.983565pt;}
.x6c_c01194{left:198.852436pt;}
.x77_c01194{left:199.977207pt;}
.x1f_c01194{left:201.933569pt;}
.x11_c01194{left:203.596493pt;}
.x3_c01194{left:205.562328pt;}
.x31_c01194{left:207.048000pt;}
.x1c_c01194{left:208.966667pt;}
.x2e_c01194{left:209.875533pt;}
.xe_c01194{left:212.160000pt;}
.xb5_c01194{left:214.323725pt;}
.x7f_c01194{left:227.666667pt;}
.x1d_c01194{left:236.569352pt;}
.xf_c01194{left:242.400000pt;}
.x3d_c01194{left:255.669153pt;}
.x2f_c01194{left:257.127711pt;}
.x56_c01194{left:260.936685pt;}
.x48_c01194{left:266.221625pt;}
.x4c_c01194{left:273.184477pt;}
.x82_c01194{left:274.296152pt;}
.x32_c01194{left:275.933333pt;}
.xa0_c01194{left:277.685489pt;}
.x62_c01194{left:279.130103pt;}
.x91_c01194{left:280.106541pt;}
.x12_c01194{left:281.165513pt;}
.x4f_c01194{left:282.490433pt;}
.xae_c01194{left:284.872237pt;}
.x57_c01194{left:291.169089pt;}
.x3e_c01194{left:293.809641pt;}
.x68_c01194{left:298.393585pt;}
.x13_c01194{left:299.790869pt;}
.x6d_c01194{left:308.665427pt;}
.x5d_c01194{left:310.392093pt;}
.x94_c01194{left:314.838653pt;}
.x63_c01194{left:318.244036pt;}
.x92_c01194{left:319.949325pt;}
.x50_c01194{left:321.356917pt;}
.xb6_c01194{left:322.749857pt;}
.x69_c01194{left:327.463203pt;}
.x96_c01194{left:328.763768pt;}
.x89_c01194{left:331.447141pt;}
.xab_c01194{left:335.675001pt;}
.x72_c01194{left:337.574809pt;}
.x9f_c01194{left:340.080000pt;}
.x49_c01194{left:342.998105pt;}
.x7d_c01194{left:346.777020pt;}
.x3f_c01194{left:353.788269pt;}
.x73_c01194{left:356.202237pt;}
.x83_c01194{left:363.339020pt;}
.x20_c01194{left:367.196141pt;}
.x5e_c01194{left:369.269503pt;}
.x7_c01194{left:370.514667pt;}
.x8a_c01194{left:372.025189pt;}
.x28_c01194{left:374.811429pt;}
.x4_c01194{left:375.810667pt;}
.x8c_c01194{left:378.523655pt;}
.x39_c01194{left:381.850999pt;}
.x4a_c01194{left:384.254141pt;}
.x33_c01194{left:385.672000pt;}
.x9d_c01194{left:386.680368pt;}
.x5f_c01194{left:389.125775pt;}
.x43_c01194{left:390.481499pt;}
.x5_c01194{left:394.686439pt;}
.x14_c01194{left:397.943285pt;}
.x8_c01194{left:399.447039pt;}
.x84_c01194{left:401.727260pt;}
.x6a_c01194{left:407.368699pt;}
.xa5_c01194{left:413.734957pt;}
.x74_c01194{left:415.334947pt;}
.x64_c01194{left:417.341481pt;}
.x51_c01194{left:421.884985pt;}
.x6e_c01194{left:424.527917pt;}
.x9e_c01194{left:425.556109pt;}
.x6_c01194{left:434.826259pt;}
.x60_c01194{left:438.498673pt;}
.x21_c01194{left:444.452141pt;}
.x97_c01194{left:445.845236pt;}
.xaf_c01194{left:451.436173pt;}
.x40_c01194{left:461.500449pt;}
.x34_c01194{left:465.610667pt;}
.x8d_c01194{left:467.742347pt;}
.xb2_c01194{left:471.398377pt;}
.xa1_c01194{left:473.240405pt;}
.x22_c01194{left:474.924305pt;}
.x98_c01194{left:475.877840pt;}
.x78_c01194{left:482.580987pt;}
.x29_c01194{left:486.017280pt;}
.x9_c01194{left:487.973091pt;}
.x4b_c01194{left:491.582705pt;}
.x6f_c01194{left:494.851943pt;}
.x59_c01194{left:496.753299pt;}
.x35_c01194{left:502.366667pt;}
.x15_c01194{left:506.432021pt;}
.x70_c01194{left:507.902139pt;}
.x41_c01194{left:510.159741pt;}
.x75_c01194{left:513.448981pt;}
.x6b_c01194{left:514.380049pt;}
.xa6_c01194{left:522.358225pt;}
.xa2_c01194{left:523.279649pt;}
.x95_c01194{left:528.009025pt;}
.x3a_c01194{left:530.075583pt;}
.x5a_c01194{left:532.701315pt;}
.x65_c01194{left:534.387627pt;}
.x52_c01194{left:537.285637pt;}
.x36_c01194{left:541.533333pt;}
.xa3_c01194{left:543.859049pt;}
.x16_c01194{left:546.209537pt;}
.x23_c01194{left:553.130021pt;}
.x99_c01194{left:564.113516pt;}
.x2a_c01194{left:566.894275pt;}
.xb0_c01194{left:569.026667pt;}
.xac_c01194{left:573.886857pt;}
.x37_c01194{left:581.152000pt;}
.x4d_c01194{left:582.576593pt;}
.xa_c01194{left:596.660295pt;}
.xaa_c01194{left:597.788377pt;}
.x24_c01194{left:602.053049pt;}
.x2b_c01194{left:603.150604pt;}
.x85_c01194{left:609.607172pt;}
.x8e_c01194{left:617.184000pt;}
.x42_c01194{left:618.375417pt;}
.x38_c01194{left:619.796000pt;}
.x17_c01194{left:623.993009pt;}
.xb4_c01194{left:626.146043pt;}
.xa7_c01194{left:629.933209pt;}
.x5b_c01194{left:635.026887pt;}
.xb_c01194{left:638.652927pt;}
.x66_c01194{left:642.817705pt;}
.x79_c01194{left:652.288443pt;}
.x18_c01194{left:653.880425pt;}
.xa8_c01194{left:659.238541pt;}
.x1b_c01194{left:662.189857pt;}
.x88_c01194{left:666.478204pt;}
.x44_c01194{left:669.934309pt;}
.x25_c01194{left:671.656709pt;}
.xc_c01194{left:674.395815pt;}
.x55_c01194{left:677.267161pt;}
.x53_c01194{left:678.833945pt;}
.x45_c01194{left:680.479509pt;}
.x19_c01194{left:683.650625pt;}
.x7a_c01194{left:688.974387pt;}
.x46_c01194{left:698.933609pt;}
.x26_c01194{left:700.915421pt;}
.x2c_c01194{left:702.258993pt;}
.x5c_c01194{left:703.595583pt;}
.xb3_c01194{left:706.351189pt;}
.x8f_c01194{left:713.361925pt;}
.x54_c01194{left:715.770405pt;}
.x86_c01194{left:717.765572pt;}
.x9a_c01194{left:721.358780pt;}
.x7b_c01194{left:728.320335pt;}
.x2d_c01194{left:730.073776pt;}
.xd_c01194{left:734.844639pt;}
.x27_c01194{left:739.807157pt;}
.x1a_c01194{left:742.670213pt;}
.xa9_c01194{left:749.033989pt;}
.x9b_c01194{left:752.448992pt;}
.x7e_c01194{left:756.925713pt;}
}





/* 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_c01195 {
    display:none;
  }
  .loading-indicator_c01195.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01195 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_c01195 { 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_c01195" -> "#page-container .classname_c01195")
 */
.pf_c01195 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01195 { /* 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_c01195.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01195 { /* 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_c01195 { /* 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_c01195 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01195 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01195 {overflow:visible;}
  }
}
.c_c01195 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01195 { /* 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_c01195:after { /* webkit #35443 */
  content: '';
}
.t_c01195:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01195 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 */
}
.__c01195 { /* 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_c01195 { /* info for Javascript */
  display:none;
}
.l_c01195 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01195 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01195 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01195: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_c01195 {
    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_c01195.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01195.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_c01195 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01195{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01195;src:url('chunks/assets/font_c605e72f209fc835e906f064.woff2')format("woff");}.ff1_c01195{font-family:ff1_c01195;line-height:1.000000;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;}
.m13_c01195{transform:matrix(0.035240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.035240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.035240,0.000000,0.000000,0.250000,0,0);}
.mb_c01195{transform:matrix(0.109860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109860,0.000000,0.000000,0.250000,0,0);}
.m3_c01195{transform:matrix(0.190705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190705,0.000000,0.000000,0.250000,0,0);}
.m1a_c01195{transform:matrix(0.210210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210210,0.000000,0.000000,0.250000,0,0);}
.m8_c01195{transform:matrix(0.211220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211220,0.000000,0.000000,0.250000,0,0);}
.m2_c01195{transform:matrix(0.222245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222245,0.000000,0.000000,0.250000,0,0);}
.mf_c01195{transform:matrix(0.223480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223480,0.000000,0.000000,0.250000,0,0);}
.m12_c01195{transform:matrix(0.230230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230230,0.000000,0.000000,0.250000,0,0);}
.m6_c01195{transform:matrix(0.235225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235225,0.000000,0.000000,0.250000,0,0);}
.m17_c01195{transform:matrix(0.239455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239455,0.000000,0.000000,0.250000,0,0);}
.m5_c01195{transform:matrix(0.250095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250095,0.000000,0.000000,0.250000,0,0);}
.m7_c01195{transform:matrix(0.250385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250385,0.000000,0.000000,0.250000,0,0);}
.m16_c01195{transform:matrix(0.272240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272240,0.000000,0.000000,0.250000,0,0);}
.m4_c01195{transform:matrix(0.286325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286325,0.000000,0.000000,0.250000,0,0);}
.m15_c01195{transform:matrix(0.289155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289155,0.000000,0.000000,0.250000,0,0);}
.me_c01195{transform:matrix(0.289730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289730,0.000000,0.000000,0.250000,0,0);}
.ma_c01195{transform:matrix(0.296960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296960,0.000000,0.000000,0.250000,0,0);}
.m19_c01195{transform:matrix(0.307640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307640,0.000000,0.000000,0.250000,0,0);}
.md_c01195{transform:matrix(0.315195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315195,0.000000,0.000000,0.250000,0,0);}
.mc_c01195{transform:matrix(0.352915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352915,0.000000,0.000000,0.250000,0,0);}
.m14_c01195{transform:matrix(0.355225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355225,0.000000,0.000000,0.250000,0,0);}
.m11_c01195{transform:matrix(0.367900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367900,0.000000,0.000000,0.250000,0,0);}
.m18_c01195{transform:matrix(0.378205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378205,0.000000,0.000000,0.250000,0,0);}
.m1_c01195{transform:matrix(0.380865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380865,0.000000,0.000000,0.250000,0,0);}
.m0_c01195{transform:matrix(0.383755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383755,0.000000,0.000000,0.250000,0,0);}
.m9_c01195{transform:matrix(0.502585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502585,0.000000,0.000000,0.250000,0,0);}
.m10_c01195{transform:matrix(4.870200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.870200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.870200,0.000000,0.000000,0.250000,0,0);}
.v0_c01195{vertical-align:0.000000px;}
.ls0_c01195{letter-spacing:0.000000px;}
.sc__c01195{text-shadow:none;}
.sc0_c01195{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__c01195{-webkit-text-stroke:0px transparent;}
.sc0_c01195{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01195{word-spacing:0.000000px;}
.fc0_c01195{color:transparent;}
.fs4_c01195{font-size:24.000000px;}
.fs1_c01195{font-size:54.000000px;}
.fs3_c01195{font-size:60.000000px;}
.fs6_c01195{font-size:66.000000px;}
.fs2_c01195{font-size:84.000000px;}
.fs5_c01195{font-size:96.000000px;}
.fs0_c01195{font-size:120.000000px;}
.y0_c01195{bottom:0.000000px;}
.y8_c01195{bottom:750.544500px;}
.y6_c01195{bottom:787.575000px;}
.y7_c01195{bottom:792.495000px;}
.y5_c01195{bottom:828.594000px;}
.y4_c01195{bottom:864.456000px;}
.y3_c01195{bottom:899.457000px;}
.y1_c01195{bottom:1139.010000px;}
.y2_c01195{bottom:1148.179500px;}
.h6_c01195{height:24.000000px;}
.h3_c01195{height:54.000000px;}
.h5_c01195{height:60.000000px;}
.h8_c01195{height:66.000000px;}
.h4_c01195{height:84.000000px;}
.h7_c01195{height:96.000000px;}
.h2_c01195{height:120.000000px;}
.h1_c01195{height:1258.500000px;}
.h0_c01195{height:1258.740000px;}
.w0_c01195{width:904.200000px;}
.w1_c01195{width:904.500000px;}
.x0_c01195{left:0.000000px;}
.x3_c01195{left:220.860000px;}
.x2_c01195{left:255.420000px;}
.x4_c01195{left:287.010000px;}
.x1_c01195{left:295.110000px;}
.x5_c01195{left:336.420000px;}
.x6_c01195{left:397.980000px;}
.x15_c01195{left:434.160000px;}
.xd_c01195{left:440.370000px;}
.x12_c01195{left:445.230000px;}
.x16_c01195{left:466.830000px;}
.xe_c01195{left:495.180000px;}
.xa_c01195{left:516.780000px;}
.x7_c01195{left:520.560000px;}
.x17_c01195{left:531.900000px;}
.x11_c01195{left:558.900000px;}
.x18_c01195{left:565.380000px;}
.x13_c01195{left:587.790000px;}
.x8_c01195{left:589.140000px;}
.xf_c01195{left:613.170000px;}
.xb_c01195{left:622.080000px;}
.x10_c01195{left:630.450000px;}
.x9_c01195{left:633.150000px;}
.x19_c01195{left:655.290000px;}
.xc_c01195{left:684.180000px;}
.x14_c01195{left:686.340000px;}
.x1a_c01195{left:707.670000px;}
@media print{
.v0_c01195{vertical-align:0.000000pt;}
.ls0_c01195{letter-spacing:0.000000pt;}
.ws0_c01195{word-spacing:0.000000pt;}
.fs4_c01195{font-size:21.333333pt;}
.fs1_c01195{font-size:48.000000pt;}
.fs3_c01195{font-size:53.333333pt;}
.fs6_c01195{font-size:58.666667pt;}
.fs2_c01195{font-size:74.666667pt;}
.fs5_c01195{font-size:85.333333pt;}
.fs0_c01195{font-size:106.666667pt;}
.y0_c01195{bottom:0.000000pt;}
.y8_c01195{bottom:667.150667pt;}
.y6_c01195{bottom:700.066667pt;}
.y7_c01195{bottom:704.440000pt;}
.y5_c01195{bottom:736.528000pt;}
.y4_c01195{bottom:768.405333pt;}
.y3_c01195{bottom:799.517333pt;}
.y1_c01195{bottom:1012.453333pt;}
.y2_c01195{bottom:1020.604000pt;}
.h6_c01195{height:21.333333pt;}
.h3_c01195{height:48.000000pt;}
.h5_c01195{height:53.333333pt;}
.h8_c01195{height:58.666667pt;}
.h4_c01195{height:74.666667pt;}
.h7_c01195{height:85.333333pt;}
.h2_c01195{height:106.666667pt;}
.h1_c01195{height:1118.666667pt;}
.h0_c01195{height:1118.880000pt;}
.w0_c01195{width:803.733333pt;}
.w1_c01195{width:804.000000pt;}
.x0_c01195{left:0.000000pt;}
.x3_c01195{left:196.320000pt;}
.x2_c01195{left:227.040000pt;}
.x4_c01195{left:255.120000pt;}
.x1_c01195{left:262.320000pt;}
.x5_c01195{left:299.040000pt;}
.x6_c01195{left:353.760000pt;}
.x15_c01195{left:385.920000pt;}
.xd_c01195{left:391.440000pt;}
.x12_c01195{left:395.760000pt;}
.x16_c01195{left:414.960000pt;}
.xe_c01195{left:440.160000pt;}
.xa_c01195{left:459.360000pt;}
.x7_c01195{left:462.720000pt;}
.x17_c01195{left:472.800000pt;}
.x11_c01195{left:496.800000pt;}
.x18_c01195{left:502.560000pt;}
.x13_c01195{left:522.480000pt;}
.x8_c01195{left:523.680000pt;}
.xf_c01195{left:545.040000pt;}
.xb_c01195{left:552.960000pt;}
.x10_c01195{left:560.400000pt;}
.x9_c01195{left:562.800000pt;}
.x19_c01195{left:582.480000pt;}
.xc_c01195{left:608.160000pt;}
.x14_c01195{left:610.080000pt;}
.x1a_c01195{left:629.040000pt;}
}





/* 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_c01196 {
    display:none;
  }
  .loading-indicator_c01196.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01196 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_c01196 { 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_c01196" -> "#page-container .classname_c01196")
 */
.pf_c01196 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01196 { /* 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_c01196.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01196 { /* 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_c01196 { /* 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_c01196 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01196 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01196 {overflow:visible;}
  }
}
.c_c01196 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01196 { /* 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_c01196:after { /* webkit #35443 */
  content: '';
}
.t_c01196:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01196 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 */
}
.__c01196 { /* 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_c01196 { /* info for Javascript */
  display:none;
}
.l_c01196 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01196 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01196 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01196: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_c01196 {
    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_c01196.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01196.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_c01196 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01196{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01196;src:url('chunks/assets/font_7c6b9abe6ee2a268480c528b.woff2')format("woff");}.ff1_c01196{font-family:ff1_c01196;line-height:1.000000;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;}
.m64_c01196{transform:matrix(0.009789,0.000127,-0.003250,0.249979,0,0);-ms-transform:matrix(0.009789,0.000127,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.009789,0.000127,-0.003250,0.249979,0,0);}
.m7c_c01196{transform:matrix(0.013519,0.000176,-0.003250,0.249979,0,0);-ms-transform:matrix(0.013519,0.000176,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.013519,0.000176,-0.003250,0.249979,0,0);}
.m25_c01196{transform:matrix(0.018029,0.000198,-0.002750,0.249985,0,0);-ms-transform:matrix(0.018029,0.000198,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.018029,0.000198,-0.002750,0.249985,0,0);}
.m35_c01196{transform:matrix(0.029153,0.000321,-0.002750,0.249985,0,0);-ms-transform:matrix(0.029153,0.000321,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.029153,0.000321,-0.002750,0.249985,0,0);}
.m71_c01196{transform:matrix(0.068179,0.000886,-0.003250,0.249979,0,0);-ms-transform:matrix(0.068179,0.000886,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.068179,0.000886,-0.003250,0.249979,0,0);}
.m4f_c01196{transform:matrix(0.091372,0.001188,-0.003250,0.249979,0,0);-ms-transform:matrix(0.091372,0.001188,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.091372,0.001188,-0.003250,0.249979,0,0);}
.m91_c01196{transform:matrix(0.093010,0.001674,-0.004499,0.249960,0,0);-ms-transform:matrix(0.093010,0.001674,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.093010,0.001674,-0.004499,0.249960,0,0);}
.m90_c01196{transform:matrix(0.099647,0.001893,-0.004749,0.249955,0,0);-ms-transform:matrix(0.099647,0.001893,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.099647,0.001893,-0.004749,0.249955,0,0);}
.m40_c01196{transform:matrix(0.104426,0.001358,-0.003250,0.249979,0,0);-ms-transform:matrix(0.104426,0.001358,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.104426,0.001358,-0.003250,0.249979,0,0);}
.mc3_c01196{transform:matrix(0.113490,0.002383,-0.005249,0.249945,0,0);-ms-transform:matrix(0.113490,0.002383,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.113490,0.002383,-0.005249,0.249945,0,0);}
.mda_c01196{transform:matrix(0.131876,0.002769,-0.005249,0.249945,0,0);-ms-transform:matrix(0.131876,0.002769,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.131876,0.002769,-0.005249,0.249945,0,0);}
.m81_c01196{transform:matrix(0.139515,0.002651,-0.004749,0.249955,0,0);-ms-transform:matrix(0.139515,0.002651,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.139515,0.002651,-0.004749,0.249955,0,0);}
.m16_c01196{transform:matrix(0.139690,0.002375,-0.004249,0.249964,0,0);-ms-transform:matrix(0.139690,0.002375,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.139690,0.002375,-0.004249,0.249964,0,0);}
.mf0_c01196{transform:matrix(0.140317,0.002526,-0.004499,0.249960,0,0);-ms-transform:matrix(0.140317,0.002526,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.140317,0.002526,-0.004499,0.249960,0,0);}
.mf2_c01196{transform:matrix(0.141272,0.002543,-0.004499,0.249960,0,0);-ms-transform:matrix(0.141272,0.002543,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.141272,0.002543,-0.004499,0.249960,0,0);}
.m27_c01196{transform:matrix(0.142041,0.001562,-0.002750,0.249985,0,0);-ms-transform:matrix(0.142041,0.001562,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.142041,0.001562,-0.002750,0.249985,0,0);}
.m11_c01196{transform:matrix(0.142301,0.001565,-0.002750,0.249985,0,0);-ms-transform:matrix(0.142301,0.001565,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.142301,0.001565,-0.002750,0.249985,0,0);}
.m28_c01196{transform:matrix(0.143656,0.001580,-0.002750,0.249985,0,0);-ms-transform:matrix(0.143656,0.001580,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.143656,0.001580,-0.002750,0.249985,0,0);}
.med_c01196{transform:matrix(0.148041,0.002665,-0.004499,0.249960,0,0);-ms-transform:matrix(0.148041,0.002665,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.148041,0.002665,-0.004499,0.249960,0,0);}
.m0_c01196{transform:matrix(0.150490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150490,0.000000,0.000000,0.250000,0,0);}
.mf6_c01196{transform:matrix(0.151860,0.001215,-0.002000,0.249992,0,0);-ms-transform:matrix(0.151860,0.001215,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.151860,0.001215,-0.002000,0.249992,0,0);}
.m2_c01196{transform:matrix(0.154620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154620,0.000000,0.000000,0.250000,0,0);}
.mf3_c01196{transform:matrix(0.155545,0.002800,-0.004499,0.249960,0,0);-ms-transform:matrix(0.155545,0.002800,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.155545,0.002800,-0.004499,0.249960,0,0);}
.mc4_c01196{transform:matrix(0.155601,0.003268,-0.005249,0.249945,0,0);-ms-transform:matrix(0.155601,0.003268,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.155601,0.003268,-0.005249,0.249945,0,0);}
.m72_c01196{transform:matrix(0.156457,0.002034,-0.003250,0.249979,0,0);-ms-transform:matrix(0.156457,0.002034,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.156457,0.002034,-0.003250,0.249979,0,0);}
.m36_c01196{transform:matrix(0.161930,0.001781,-0.002750,0.249985,0,0);-ms-transform:matrix(0.161930,0.001781,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.161930,0.001781,-0.002750,0.249985,0,0);}
.m109_c01196{transform:matrix(0.165705,0.001326,-0.002000,0.249992,0,0);-ms-transform:matrix(0.165705,0.001326,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.165705,0.001326,-0.002000,0.249992,0,0);}
.m100_c01196{transform:matrix(0.173089,0.001385,-0.002000,0.249992,0,0);-ms-transform:matrix(0.173089,0.001385,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.173089,0.001385,-0.002000,0.249992,0,0);}
.mb2_c01196{transform:matrix(0.173875,0.002956,-0.004249,0.249964,0,0);-ms-transform:matrix(0.173875,0.002956,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.173875,0.002956,-0.004249,0.249964,0,0);}
.mdb_c01196{transform:matrix(0.176666,0.003710,-0.005249,0.249945,0,0);-ms-transform:matrix(0.176666,0.003710,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.176666,0.003710,-0.005249,0.249945,0,0);}
.mc7_c01196{transform:matrix(0.177296,0.003723,-0.005249,0.249945,0,0);-ms-transform:matrix(0.177296,0.003723,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.177296,0.003723,-0.005249,0.249945,0,0);}
.m50_c01196{transform:matrix(0.182570,0.002373,-0.003250,0.249979,0,0);-ms-transform:matrix(0.182570,0.002373,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.182570,0.002373,-0.003250,0.249979,0,0);}
.m82_c01196{transform:matrix(0.185117,0.003517,-0.004749,0.249955,0,0);-ms-transform:matrix(0.185117,0.003517,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.185117,0.003517,-0.004749,0.249955,0,0);}
.m12_c01196{transform:matrix(0.185839,0.002044,-0.002750,0.249985,0,0);-ms-transform:matrix(0.185839,0.002044,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.185839,0.002044,-0.002750,0.249985,0,0);}
.mec_c01196{transform:matrix(0.186040,0.003349,-0.004499,0.249960,0,0);-ms-transform:matrix(0.186040,0.003349,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.186040,0.003349,-0.004499,0.249960,0,0);}
.mcb_c01196{transform:matrix(0.186744,0.003922,-0.005249,0.249945,0,0);-ms-transform:matrix(0.186744,0.003922,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.186744,0.003922,-0.005249,0.249945,0,0);}
.m26_c01196{transform:matrix(0.187489,0.002062,-0.002750,0.249985,0,0);-ms-transform:matrix(0.187489,0.002062,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.187489,0.002062,-0.002750,0.249985,0,0);}
.mc8_c01196{transform:matrix(0.188863,0.003966,-0.005249,0.249945,0,0);-ms-transform:matrix(0.188863,0.003966,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.188863,0.003966,-0.005249,0.249945,0,0);}
.m17_c01196{transform:matrix(0.189388,0.003220,-0.004249,0.249964,0,0);-ms-transform:matrix(0.189388,0.003220,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.189388,0.003220,-0.004249,0.249964,0,0);}
.mce_c01196{transform:matrix(0.190008,0.003990,-0.005249,0.249945,0,0);-ms-transform:matrix(0.190008,0.003990,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.190008,0.003990,-0.005249,0.249945,0,0);}
.m101_c01196{transform:matrix(0.190339,0.001523,-0.002000,0.249992,0,0);-ms-transform:matrix(0.190339,0.001523,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.190339,0.001523,-0.002000,0.249992,0,0);}
.mf_c01196{transform:matrix(0.190813,0.002099,-0.002750,0.249985,0,0);-ms-transform:matrix(0.190813,0.002099,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.190813,0.002099,-0.002750,0.249985,0,0);}
.m70_c01196{transform:matrix(0.191744,0.002493,-0.003250,0.249979,0,0);-ms-transform:matrix(0.191744,0.002493,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.191744,0.002493,-0.003250,0.249979,0,0);}
.m14_c01196{transform:matrix(0.194528,0.002140,-0.002750,0.249985,0,0);-ms-transform:matrix(0.194528,0.002140,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.194528,0.002140,-0.002750,0.249985,0,0);}
.m92_c01196{transform:matrix(0.195413,0.003517,-0.004499,0.249960,0,0);-ms-transform:matrix(0.195413,0.003517,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.195413,0.003517,-0.004499,0.249960,0,0);}
.md3_c01196{transform:matrix(0.196412,0.004125,-0.005249,0.249945,0,0);-ms-transform:matrix(0.196412,0.004125,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.196412,0.004125,-0.005249,0.249945,0,0);}
.me_c01196{transform:matrix(0.196570,-0.001376,0.001750,0.249994,0,0);-ms-transform:matrix(0.196570,-0.001376,0.001750,0.249994,0,0);-webkit-transform:matrix(0.196570,-0.001376,0.001750,0.249994,0,0);}
.mcc_c01196{transform:matrix(0.196882,0.004135,-0.005249,0.249945,0,0);-ms-transform:matrix(0.196882,0.004135,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.196882,0.004135,-0.005249,0.249945,0,0);}
.mb9_c01196{transform:matrix(0.197391,0.003356,-0.004249,0.249964,0,0);-ms-transform:matrix(0.197391,0.003356,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.197391,0.003356,-0.004249,0.249964,0,0);}
.mcd_c01196{transform:matrix(0.198701,0.004173,-0.005249,0.249945,0,0);-ms-transform:matrix(0.198701,0.004173,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.198701,0.004173,-0.005249,0.249945,0,0);}
.m10a_c01196{transform:matrix(0.199244,0.001594,-0.002000,0.249992,0,0);-ms-transform:matrix(0.199244,0.001594,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.199244,0.001594,-0.002000,0.249992,0,0);}
.mca_c01196{transform:matrix(0.200306,0.004206,-0.005249,0.249945,0,0);-ms-transform:matrix(0.200306,0.004206,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.200306,0.004206,-0.005249,0.249945,0,0);}
.mde_c01196{transform:matrix(0.200546,0.004211,-0.005249,0.249945,0,0);-ms-transform:matrix(0.200546,0.004211,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.200546,0.004211,-0.005249,0.249945,0,0);}
.m105_c01196{transform:matrix(0.201109,0.001609,-0.002000,0.249992,0,0);-ms-transform:matrix(0.201109,0.001609,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.201109,0.001609,-0.002000,0.249992,0,0);}
.m6_c01196{transform:matrix(0.201370,-0.001410,0.001750,0.249994,0,0);-ms-transform:matrix(0.201370,-0.001410,0.001750,0.249994,0,0);-webkit-transform:matrix(0.201370,-0.001410,0.001750,0.249994,0,0);}
.ma8_c01196{transform:matrix(0.202765,0.004258,-0.005249,0.249945,0,0);-ms-transform:matrix(0.202765,0.004258,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.202765,0.004258,-0.005249,0.249945,0,0);}
.mdc_c01196{transform:matrix(0.203315,0.004270,-0.005249,0.249945,0,0);-ms-transform:matrix(0.203315,0.004270,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.203315,0.004270,-0.005249,0.249945,0,0);}
.m10c_c01196{transform:matrix(0.203358,0.001627,-0.002000,0.249992,0,0);-ms-transform:matrix(0.203358,0.001627,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.203358,0.001627,-0.002000,0.249992,0,0);}
.m6a_c01196{transform:matrix(0.204203,0.002655,-0.003250,0.249979,0,0);-ms-transform:matrix(0.204203,0.002655,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.204203,0.002655,-0.003250,0.249979,0,0);}
.m41_c01196{transform:matrix(0.204248,0.002655,-0.003250,0.249979,0,0);-ms-transform:matrix(0.204248,0.002655,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.204248,0.002655,-0.003250,0.249979,0,0);}
.mc9_c01196{transform:matrix(0.204315,0.004291,-0.005249,0.249945,0,0);-ms-transform:matrix(0.204315,0.004291,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.204315,0.004291,-0.005249,0.249945,0,0);}
.m110_c01196{transform:matrix(0.205008,0.001640,-0.002000,0.249992,0,0);-ms-transform:matrix(0.205008,0.001640,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.205008,0.001640,-0.002000,0.249992,0,0);}
.m107_c01196{transform:matrix(0.205333,0.001643,-0.002000,0.249992,0,0);-ms-transform:matrix(0.205333,0.001643,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.205333,0.001643,-0.002000,0.249992,0,0);}
.ma4_c01196{transform:matrix(0.205590,0.004317,-0.005249,0.249945,0,0);-ms-transform:matrix(0.205590,0.004317,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.205590,0.004317,-0.005249,0.249945,0,0);}
.mf4_c01196{transform:matrix(0.206227,0.003712,-0.004499,0.249960,0,0);-ms-transform:matrix(0.206227,0.003712,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.206227,0.003712,-0.004499,0.249960,0,0);}
.m8_c01196{transform:matrix(0.206255,-0.001444,0.001750,0.249994,0,0);-ms-transform:matrix(0.206255,-0.001444,0.001750,0.249994,0,0);-webkit-transform:matrix(0.206255,-0.001444,0.001750,0.249994,0,0);}
.mef_c01196{transform:matrix(0.207011,0.003726,-0.004499,0.249960,0,0);-ms-transform:matrix(0.207011,0.003726,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.207011,0.003726,-0.004499,0.249960,0,0);}
.m108_c01196{transform:matrix(0.207023,0.001656,-0.002000,0.249992,0,0);-ms-transform:matrix(0.207023,0.001656,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.207023,0.001656,-0.002000,0.249992,0,0);}
.mc6_c01196{transform:matrix(0.207224,0.004352,-0.005249,0.249945,0,0);-ms-transform:matrix(0.207224,0.004352,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.207224,0.004352,-0.005249,0.249945,0,0);}
.ma_c01196{transform:matrix(0.207420,-0.001452,0.001750,0.249994,0,0);-ms-transform:matrix(0.207420,-0.001452,0.001750,0.249994,0,0);-webkit-transform:matrix(0.207420,-0.001452,0.001750,0.249994,0,0);}
.mb7_c01196{transform:matrix(0.207690,0.003531,-0.004249,0.249964,0,0);-ms-transform:matrix(0.207690,0.003531,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.207690,0.003531,-0.004249,0.249964,0,0);}
.m2a_c01196{transform:matrix(0.208662,0.002295,-0.002750,0.249985,0,0);-ms-transform:matrix(0.208662,0.002295,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.208662,0.002295,-0.002750,0.249985,0,0);}
.me0_c01196{transform:matrix(0.209119,0.004391,-0.005249,0.249945,0,0);-ms-transform:matrix(0.209119,0.004391,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.209119,0.004391,-0.005249,0.249945,0,0);}
.m10f_c01196{transform:matrix(0.210608,0.001685,-0.002000,0.249992,0,0);-ms-transform:matrix(0.210608,0.001685,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.210608,0.001685,-0.002000,0.249992,0,0);}
.m9_c01196{transform:matrix(0.211825,-0.001483,0.001750,0.249994,0,0);-ms-transform:matrix(0.211825,-0.001483,0.001750,0.249994,0,0);-webkit-transform:matrix(0.211825,-0.001483,0.001750,0.249994,0,0);}
.m4d_c01196{transform:matrix(0.211852,0.002754,-0.003250,0.249979,0,0);-ms-transform:matrix(0.211852,0.002754,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.211852,0.002754,-0.003250,0.249979,0,0);}
.md_c01196{transform:matrix(0.212180,-0.001485,0.001750,0.249994,0,0);-ms-transform:matrix(0.212180,-0.001485,0.001750,0.249994,0,0);-webkit-transform:matrix(0.212180,-0.001485,0.001750,0.249994,0,0);}
.mf1_c01196{transform:matrix(0.213950,0.003851,-0.004499,0.249960,0,0);-ms-transform:matrix(0.213950,0.003851,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.213950,0.003851,-0.004499,0.249960,0,0);}
.mb4_c01196{transform:matrix(0.214389,0.003645,-0.004249,0.249964,0,0);-ms-transform:matrix(0.214389,0.003645,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.214389,0.003645,-0.004249,0.249964,0,0);}
.m54_c01196{transform:matrix(0.215042,0.002796,-0.003250,0.249979,0,0);-ms-transform:matrix(0.215042,0.002796,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.215042,0.002796,-0.003250,0.249979,0,0);}
.m15_c01196{transform:matrix(0.215217,0.002367,-0.002750,0.249985,0,0);-ms-transform:matrix(0.215217,0.002367,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.215217,0.002367,-0.002750,0.249985,0,0);}
.m10b_c01196{transform:matrix(0.216368,0.001731,-0.002000,0.249992,0,0);-ms-transform:matrix(0.216368,0.001731,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.216368,0.001731,-0.002000,0.249992,0,0);}
.m60_c01196{transform:matrix(0.216477,0.002814,-0.003250,0.249979,0,0);-ms-transform:matrix(0.216477,0.002814,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.216477,0.002814,-0.003250,0.249979,0,0);}
.m5d_c01196{transform:matrix(0.216847,0.002819,-0.003250,0.249979,0,0);-ms-transform:matrix(0.216847,0.002819,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.216847,0.002819,-0.003250,0.249979,0,0);}
.mf5_c01196{transform:matrix(0.216850,0.003903,-0.004499,0.249960,0,0);-ms-transform:matrix(0.216850,0.003903,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.216850,0.003903,-0.004499,0.249960,0,0);}
.mab_c01196{transform:matrix(0.217357,0.004564,-0.005249,0.249945,0,0);-ms-transform:matrix(0.217357,0.004564,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.217357,0.004564,-0.005249,0.249945,0,0);}
.m89_c01196{transform:matrix(0.218216,0.004146,-0.004749,0.249955,0,0);-ms-transform:matrix(0.218216,0.004146,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.218216,0.004146,-0.004749,0.249955,0,0);}
.m97_c01196{transform:matrix(0.218220,0.003928,-0.004499,0.249960,0,0);-ms-transform:matrix(0.218220,0.003928,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.218220,0.003928,-0.004499,0.249960,0,0);}
.m1d_c01196{transform:matrix(0.218433,0.003713,-0.004249,0.249964,0,0);-ms-transform:matrix(0.218433,0.003713,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.218433,0.003713,-0.004249,0.249964,0,0);}
.m1_c01196{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m1a_c01196{transform:matrix(0.219798,0.003737,-0.004249,0.249964,0,0);-ms-transform:matrix(0.219798,0.003737,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.219798,0.003737,-0.004249,0.249964,0,0);}
.m5b_c01196{transform:matrix(0.219871,0.002858,-0.003250,0.249979,0,0);-ms-transform:matrix(0.219871,0.002858,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.219871,0.002858,-0.003250,0.249979,0,0);}
.m68_c01196{transform:matrix(0.220171,0.002862,-0.003250,0.249979,0,0);-ms-transform:matrix(0.220171,0.002862,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.220171,0.002862,-0.003250,0.249979,0,0);}
.m57_c01196{transform:matrix(0.221436,0.002879,-0.003250,0.249979,0,0);-ms-transform:matrix(0.221436,0.002879,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.221436,0.002879,-0.003250,0.249979,0,0);}
.maa_c01196{transform:matrix(0.222901,0.004681,-0.005249,0.249945,0,0);-ms-transform:matrix(0.222901,0.004681,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.222901,0.004681,-0.005249,0.249945,0,0);}
.m2b_c01196{transform:matrix(0.223366,0.002457,-0.002750,0.249985,0,0);-ms-transform:matrix(0.223366,0.002457,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.223366,0.002457,-0.002750,0.249985,0,0);}
.m69_c01196{transform:matrix(0.225296,0.002929,-0.003250,0.249979,0,0);-ms-transform:matrix(0.225296,0.002929,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.225296,0.002929,-0.003250,0.249979,0,0);}
.m10_c01196{transform:matrix(0.226216,0.002488,-0.002750,0.249985,0,0);-ms-transform:matrix(0.226216,0.002488,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.226216,0.002488,-0.002750,0.249985,0,0);}
.ma9_c01196{transform:matrix(0.226285,0.004752,-0.005249,0.249945,0,0);-ms-transform:matrix(0.226285,0.004752,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.226285,0.004752,-0.005249,0.249945,0,0);}
.m10e_c01196{transform:matrix(0.226363,0.001811,-0.002000,0.249992,0,0);-ms-transform:matrix(0.226363,0.001811,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.226363,0.001811,-0.002000,0.249992,0,0);}
.me4_c01196{transform:matrix(0.226550,0.004758,-0.005249,0.249945,0,0);-ms-transform:matrix(0.226550,0.004758,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.226550,0.004758,-0.005249,0.249945,0,0);}
.m13_c01196{transform:matrix(0.226641,0.002493,-0.002750,0.249985,0,0);-ms-transform:matrix(0.226641,0.002493,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.226641,0.002493,-0.002750,0.249985,0,0);}
.mb8_c01196{transform:matrix(0.226902,0.003857,-0.004249,0.249964,0,0);-ms-transform:matrix(0.226902,0.003857,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.226902,0.003857,-0.004249,0.249964,0,0);}
.mc5_c01196{transform:matrix(0.227475,0.004777,-0.005249,0.249945,0,0);-ms-transform:matrix(0.227475,0.004777,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.227475,0.004777,-0.005249,0.249945,0,0);}
.me5_c01196{transform:matrix(0.227740,0.004783,-0.005249,0.249945,0,0);-ms-transform:matrix(0.227740,0.004783,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.227740,0.004783,-0.005249,0.249945,0,0);}
.mee_c01196{transform:matrix(0.228058,0.004105,-0.004499,0.249960,0,0);-ms-transform:matrix(0.228058,0.004105,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.228058,0.004105,-0.004499,0.249960,0,0);}
.m2f_c01196{transform:matrix(0.228846,0.002517,-0.002750,0.249985,0,0);-ms-transform:matrix(0.228846,0.002517,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.228846,0.002517,-0.002750,0.249985,0,0);}
.me3_c01196{transform:matrix(0.229054,0.004810,-0.005249,0.249945,0,0);-ms-transform:matrix(0.229054,0.004810,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.229054,0.004810,-0.005249,0.249945,0,0);}
.m8f_c01196{transform:matrix(0.229589,0.004362,-0.004749,0.249955,0,0);-ms-transform:matrix(0.229589,0.004362,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.229589,0.004362,-0.004749,0.249955,0,0);}
.me1_c01196{transform:matrix(0.229874,0.004827,-0.005249,0.249945,0,0);-ms-transform:matrix(0.229874,0.004827,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.229874,0.004827,-0.005249,0.249945,0,0);}
.m3c_c01196{transform:matrix(0.231605,0.003011,-0.003250,0.249979,0,0);-ms-transform:matrix(0.231605,0.003011,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.231605,0.003011,-0.003250,0.249979,0,0);}
.mad_c01196{transform:matrix(0.231754,0.004867,-0.005249,0.249945,0,0);-ms-transform:matrix(0.231754,0.004867,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.231754,0.004867,-0.005249,0.249945,0,0);}
.m66_c01196{transform:matrix(0.232705,0.003025,-0.003250,0.249979,0,0);-ms-transform:matrix(0.232705,0.003025,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.232705,0.003025,-0.003250,0.249979,0,0);}
.m86_c01196{transform:matrix(0.232978,0.004427,-0.004749,0.249955,0,0);-ms-transform:matrix(0.232978,0.004427,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.232978,0.004427,-0.004749,0.249955,0,0);}
.mb6_c01196{transform:matrix(0.233246,0.003965,-0.004249,0.249964,0,0);-ms-transform:matrix(0.233246,0.003965,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.233246,0.003965,-0.004249,0.249964,0,0);}
.mdd_c01196{transform:matrix(0.233643,0.004907,-0.005249,0.249945,0,0);-ms-transform:matrix(0.233643,0.004907,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.233643,0.004907,-0.005249,0.249945,0,0);}
.me2_c01196{transform:matrix(0.233923,0.004912,-0.005249,0.249945,0,0);-ms-transform:matrix(0.233923,0.004912,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.233923,0.004912,-0.005249,0.249945,0,0);}
.m48_c01196{transform:matrix(0.234515,0.003049,-0.003250,0.249979,0,0);-ms-transform:matrix(0.234515,0.003049,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.234515,0.003049,-0.003250,0.249979,0,0);}
.me9_c01196{transform:matrix(0.234690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234690,0.000000,0.000000,0.250000,0,0);}
.mba_c01196{transform:matrix(0.235271,0.004000,-0.004249,0.249964,0,0);-ms-transform:matrix(0.235271,0.004000,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.235271,0.004000,-0.004249,0.249964,0,0);}
.ma7_c01196{transform:matrix(0.235408,0.004944,-0.005249,0.249945,0,0);-ms-transform:matrix(0.235408,0.004944,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.235408,0.004944,-0.005249,0.249945,0,0);}
.m61_c01196{transform:matrix(0.235555,0.003062,-0.003250,0.249979,0,0);-ms-transform:matrix(0.235555,0.003062,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.235555,0.003062,-0.003250,0.249979,0,0);}
.m7_c01196{transform:matrix(0.235819,-0.001651,0.001750,0.249994,0,0);-ms-transform:matrix(0.235819,-0.001651,0.001750,0.249994,0,0);-webkit-transform:matrix(0.235819,-0.001651,0.001750,0.249994,0,0);}
.mf8_c01196{transform:matrix(0.235842,0.001887,-0.002000,0.249992,0,0);-ms-transform:matrix(0.235842,0.001887,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.235842,0.001887,-0.002000,0.249992,0,0);}
.m88_c01196{transform:matrix(0.236542,0.004494,-0.004749,0.249955,0,0);-ms-transform:matrix(0.236542,0.004494,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.236542,0.004494,-0.004749,0.249955,0,0);}
.meb_c01196{transform:matrix(0.236932,0.004265,-0.004499,0.249960,0,0);-ms-transform:matrix(0.236932,0.004265,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.236932,0.004265,-0.004499,0.249960,0,0);}
.mfd_c01196{transform:matrix(0.237177,0.001897,-0.002000,0.249992,0,0);-ms-transform:matrix(0.237177,0.001897,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.237177,0.001897,-0.002000,0.249992,0,0);}
.m6d_c01196{transform:matrix(0.237240,0.003084,-0.003250,0.249979,0,0);-ms-transform:matrix(0.237240,0.003084,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.237240,0.003084,-0.003250,0.249979,0,0);}
.m39_c01196{transform:matrix(0.237405,0.003086,-0.003250,0.249979,0,0);-ms-transform:matrix(0.237405,0.003086,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.237405,0.003086,-0.003250,0.249979,0,0);}
.mdf_c01196{transform:matrix(0.237603,0.004990,-0.005249,0.249945,0,0);-ms-transform:matrix(0.237603,0.004990,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.237603,0.004990,-0.005249,0.249945,0,0);}
.mb_c01196{transform:matrix(0.237614,-0.001663,0.001750,0.249994,0,0);-ms-transform:matrix(0.237614,-0.001663,0.001750,0.249994,0,0);-webkit-transform:matrix(0.237614,-0.001663,0.001750,0.249994,0,0);}
.m55_c01196{transform:matrix(0.238160,0.003096,-0.003250,0.249979,0,0);-ms-transform:matrix(0.238160,0.003096,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.238160,0.003096,-0.003250,0.249979,0,0);}
.m106_c01196{transform:matrix(0.238227,0.001906,-0.002000,0.249992,0,0);-ms-transform:matrix(0.238227,0.001906,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.238227,0.001906,-0.002000,0.249992,0,0);}
.mb3_c01196{transform:matrix(0.238980,0.004063,-0.004249,0.249964,0,0);-ms-transform:matrix(0.238980,0.004063,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.238980,0.004063,-0.004249,0.249964,0,0);}
.mac_c01196{transform:matrix(0.239227,0.005024,-0.005249,0.249945,0,0);-ms-transform:matrix(0.239227,0.005024,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.239227,0.005024,-0.005249,0.249945,0,0);}
.mcf_c01196{transform:matrix(0.239527,0.005030,-0.005249,0.249945,0,0);-ms-transform:matrix(0.239527,0.005030,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.239527,0.005030,-0.005249,0.249945,0,0);}
.m3d_c01196{transform:matrix(0.240085,0.003121,-0.003250,0.249979,0,0);-ms-transform:matrix(0.240085,0.003121,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.240085,0.003121,-0.003250,0.249979,0,0);}
.m2d_c01196{transform:matrix(0.240230,0.002643,-0.002750,0.249985,0,0);-ms-transform:matrix(0.240230,0.002643,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.240230,0.002643,-0.002750,0.249985,0,0);}
.m5_c01196{transform:matrix(0.240929,-0.001687,0.001750,0.249994,0,0);-ms-transform:matrix(0.240929,-0.001687,0.001750,0.249994,0,0);-webkit-transform:matrix(0.240929,-0.001687,0.001750,0.249994,0,0);}
.m4b_c01196{transform:matrix(0.241060,0.003134,-0.003250,0.249979,0,0);-ms-transform:matrix(0.241060,0.003134,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.241060,0.003134,-0.003250,0.249979,0,0);}
.m5e_c01196{transform:matrix(0.241655,0.003142,-0.003250,0.249979,0,0);-ms-transform:matrix(0.241655,0.003142,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.241655,0.003142,-0.003250,0.249979,0,0);}
.m75_c01196{transform:matrix(0.242320,0.003150,-0.003250,0.249979,0,0);-ms-transform:matrix(0.242320,0.003150,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.242320,0.003150,-0.003250,0.249979,0,0);}
.m4_c01196{transform:matrix(0.242339,-0.001696,0.001750,0.249994,0,0);-ms-transform:matrix(0.242339,-0.001696,0.001750,0.249994,0,0);-webkit-transform:matrix(0.242339,-0.001696,0.001750,0.249994,0,0);}
.ma3_c01196{transform:matrix(0.242527,0.005093,-0.005249,0.249945,0,0);-ms-transform:matrix(0.242527,0.005093,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.242527,0.005093,-0.005249,0.249945,0,0);}
.m1f_c01196{transform:matrix(0.242545,0.004123,-0.004249,0.249964,0,0);-ms-transform:matrix(0.242545,0.004123,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.242545,0.004123,-0.004249,0.249964,0,0);}
.m5c_c01196{transform:matrix(0.242555,0.003153,-0.003250,0.249979,0,0);-ms-transform:matrix(0.242555,0.003153,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.242555,0.003153,-0.003250,0.249979,0,0);}
.ma5_c01196{transform:matrix(0.243066,0.005104,-0.005249,0.249945,0,0);-ms-transform:matrix(0.243066,0.005104,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.243066,0.005104,-0.005249,0.249945,0,0);}
.mc_c01196{transform:matrix(0.243679,-0.001706,0.001750,0.249994,0,0);-ms-transform:matrix(0.243679,-0.001706,0.001750,0.249994,0,0);-webkit-transform:matrix(0.243679,-0.001706,0.001750,0.249994,0,0);}
.m85_c01196{transform:matrix(0.243756,0.004631,-0.004749,0.249955,0,0);-ms-transform:matrix(0.243756,0.004631,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.243756,0.004631,-0.004749,0.249955,0,0);}
.m1b_c01196{transform:matrix(0.243765,0.004144,-0.004249,0.249964,0,0);-ms-transform:matrix(0.243765,0.004144,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.243765,0.004144,-0.004249,0.249964,0,0);}
.m31_c01196{transform:matrix(0.243775,0.002682,-0.002750,0.249985,0,0);-ms-transform:matrix(0.243775,0.002682,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.243775,0.002682,-0.002750,0.249985,0,0);}
.m47_c01196{transform:matrix(0.243994,0.003172,-0.003250,0.249979,0,0);-ms-transform:matrix(0.243994,0.003172,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.243994,0.003172,-0.003250,0.249979,0,0);}
.m8b_c01196{transform:matrix(0.245041,0.004656,-0.004749,0.249955,0,0);-ms-transform:matrix(0.245041,0.004656,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.245041,0.004656,-0.004749,0.249955,0,0);}
.m52_c01196{transform:matrix(0.245059,0.003186,-0.003250,0.249979,0,0);-ms-transform:matrix(0.245059,0.003186,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.245059,0.003186,-0.003250,0.249979,0,0);}
.m18_c01196{transform:matrix(0.245115,0.004167,-0.004249,0.249964,0,0);-ms-transform:matrix(0.245115,0.004167,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.245115,0.004167,-0.004249,0.249964,0,0);}
.mbb_c01196{transform:matrix(0.245350,0.004171,-0.004249,0.249964,0,0);-ms-transform:matrix(0.245350,0.004171,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.245350,0.004171,-0.004249,0.249964,0,0);}
.m32_c01196{transform:matrix(0.245590,0.002701,-0.002750,0.249985,0,0);-ms-transform:matrix(0.245590,0.002701,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.245590,0.002701,-0.002750,0.249985,0,0);}
.m22_c01196{transform:matrix(0.247014,0.004199,-0.004249,0.249964,0,0);-ms-transform:matrix(0.247014,0.004199,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.247014,0.004199,-0.004249,0.249964,0,0);}
.m4a_c01196{transform:matrix(0.247029,0.003211,-0.003250,0.249979,0,0);-ms-transform:matrix(0.247029,0.003211,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.247029,0.003211,-0.003250,0.249979,0,0);}
.m6c_c01196{transform:matrix(0.247114,0.003212,-0.003250,0.249979,0,0);-ms-transform:matrix(0.247114,0.003212,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.247114,0.003212,-0.003250,0.249979,0,0);}
.m6e_c01196{transform:matrix(0.247744,0.003221,-0.003250,0.249979,0,0);-ms-transform:matrix(0.247744,0.003221,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.247744,0.003221,-0.003250,0.249979,0,0);}
.m65_c01196{transform:matrix(0.247909,0.003223,-0.003250,0.249979,0,0);-ms-transform:matrix(0.247909,0.003223,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.247909,0.003223,-0.003250,0.249979,0,0);}
.m8d_c01196{transform:matrix(0.248275,0.004717,-0.004749,0.249955,0,0);-ms-transform:matrix(0.248275,0.004717,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.248275,0.004717,-0.004749,0.249955,0,0);}
.m56_c01196{transform:matrix(0.248319,0.003228,-0.003250,0.249979,0,0);-ms-transform:matrix(0.248319,0.003228,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.248319,0.003228,-0.003250,0.249979,0,0);}
.m6f_c01196{transform:matrix(0.248644,0.003232,-0.003250,0.249979,0,0);-ms-transform:matrix(0.248644,0.003232,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.248644,0.003232,-0.003250,0.249979,0,0);}
.m29_c01196{transform:matrix(0.249875,0.002749,-0.002750,0.249985,0,0);-ms-transform:matrix(0.249875,0.002749,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.249875,0.002749,-0.002750,0.249985,0,0);}
.m1e_c01196{transform:matrix(0.250359,0.004256,-0.004249,0.249964,0,0);-ms-transform:matrix(0.250359,0.004256,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.250359,0.004256,-0.004249,0.249964,0,0);}
.m1c_c01196{transform:matrix(0.250694,0.004262,-0.004249,0.249964,0,0);-ms-transform:matrix(0.250694,0.004262,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.250694,0.004262,-0.004249,0.249964,0,0);}
.m58_c01196{transform:matrix(0.250829,0.003261,-0.003250,0.249979,0,0);-ms-transform:matrix(0.250829,0.003261,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.250829,0.003261,-0.003250,0.249979,0,0);}
.m59_c01196{transform:matrix(0.250884,0.003261,-0.003250,0.249979,0,0);-ms-transform:matrix(0.250884,0.003261,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.250884,0.003261,-0.003250,0.249979,0,0);}
.m9d_c01196{transform:matrix(0.251289,0.004523,-0.004499,0.249960,0,0);-ms-transform:matrix(0.251289,0.004523,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.251289,0.004523,-0.004499,0.249960,0,0);}
.m63_c01196{transform:matrix(0.251394,0.003268,-0.003250,0.249979,0,0);-ms-transform:matrix(0.251394,0.003268,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.251394,0.003268,-0.003250,0.249979,0,0);}
.m67_c01196{transform:matrix(0.251574,0.003270,-0.003250,0.249979,0,0);-ms-transform:matrix(0.251574,0.003270,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.251574,0.003270,-0.003250,0.249979,0,0);}
.m98_c01196{transform:matrix(0.252289,0.004541,-0.004499,0.249960,0,0);-ms-transform:matrix(0.252289,0.004541,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.252289,0.004541,-0.004499,0.249960,0,0);}
.maf_c01196{transform:matrix(0.252594,0.005304,-0.005249,0.249945,0,0);-ms-transform:matrix(0.252594,0.005304,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.252594,0.005304,-0.005249,0.249945,0,0);}
.m4e_c01196{transform:matrix(0.252654,0.003284,-0.003250,0.249979,0,0);-ms-transform:matrix(0.252654,0.003284,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.252654,0.003284,-0.003250,0.249979,0,0);}
.m4c_c01196{transform:matrix(0.252684,0.003285,-0.003250,0.249979,0,0);-ms-transform:matrix(0.252684,0.003285,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.252684,0.003285,-0.003250,0.249979,0,0);}
.m87_c01196{transform:matrix(0.252809,0.004803,-0.004749,0.249955,0,0);-ms-transform:matrix(0.252809,0.004803,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.252809,0.004803,-0.004749,0.249955,0,0);}
.m9f_c01196{transform:matrix(0.252969,0.004553,-0.004499,0.249960,0,0);-ms-transform:matrix(0.252969,0.004553,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.252969,0.004553,-0.004499,0.249960,0,0);}
.m5a_c01196{transform:matrix(0.253064,0.003290,-0.003250,0.249979,0,0);-ms-transform:matrix(0.253064,0.003290,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.253064,0.003290,-0.003250,0.249979,0,0);}
.m3a_c01196{transform:matrix(0.253579,0.003297,-0.003250,0.249979,0,0);-ms-transform:matrix(0.253579,0.003297,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.253579,0.003297,-0.003250,0.249979,0,0);}
.m9e_c01196{transform:matrix(0.253584,0.004565,-0.004499,0.249960,0,0);-ms-transform:matrix(0.253584,0.004565,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.253584,0.004565,-0.004499,0.249960,0,0);}
.mb5_c01196{transform:matrix(0.254273,0.004323,-0.004249,0.249964,0,0);-ms-transform:matrix(0.254273,0.004323,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.254273,0.004323,-0.004249,0.249964,0,0);}
.m96_c01196{transform:matrix(0.254404,0.004579,-0.004499,0.249960,0,0);-ms-transform:matrix(0.254404,0.004579,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.254404,0.004579,-0.004499,0.249960,0,0);}
.m83_c01196{transform:matrix(0.254534,0.004836,-0.004749,0.249955,0,0);-ms-transform:matrix(0.254534,0.004836,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.254534,0.004836,-0.004749,0.249955,0,0);}
.m51_c01196{transform:matrix(0.254688,0.003311,-0.003250,0.249979,0,0);-ms-transform:matrix(0.254688,0.003311,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.254688,0.003311,-0.003250,0.249979,0,0);}
.m5f_c01196{transform:matrix(0.254958,0.003314,-0.003250,0.249979,0,0);-ms-transform:matrix(0.254958,0.003314,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.254958,0.003314,-0.003250,0.249979,0,0);}
.m2e_c01196{transform:matrix(0.254990,0.002805,-0.002750,0.249985,0,0);-ms-transform:matrix(0.254990,0.002805,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.254990,0.002805,-0.002750,0.249985,0,0);}
.m21_c01196{transform:matrix(0.255028,0.004335,-0.004249,0.249964,0,0);-ms-transform:matrix(0.255028,0.004335,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.255028,0.004335,-0.004249,0.249964,0,0);}
.m62_c01196{transform:matrix(0.255198,0.003318,-0.003250,0.249979,0,0);-ms-transform:matrix(0.255198,0.003318,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.255198,0.003318,-0.003250,0.249979,0,0);}
.m19_c01196{transform:matrix(0.255223,0.004339,-0.004249,0.249964,0,0);-ms-transform:matrix(0.255223,0.004339,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.255223,0.004339,-0.004249,0.249964,0,0);}
.m20_c01196{transform:matrix(0.255543,0.004344,-0.004249,0.249964,0,0);-ms-transform:matrix(0.255543,0.004344,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.255543,0.004344,-0.004249,0.249964,0,0);}
.m30_c01196{transform:matrix(0.256045,0.002816,-0.002750,0.249985,0,0);-ms-transform:matrix(0.256045,0.002816,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.256045,0.002816,-0.002750,0.249985,0,0);}
.m6b_c01196{transform:matrix(0.256058,0.003329,-0.003250,0.249979,0,0);-ms-transform:matrix(0.256058,0.003329,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.256058,0.003329,-0.003250,0.249979,0,0);}
.m33_c01196{transform:matrix(0.256859,0.002825,-0.002750,0.249985,0,0);-ms-transform:matrix(0.256859,0.002825,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.256859,0.002825,-0.002750,0.249985,0,0);}
.m93_c01196{transform:matrix(0.257028,0.004627,-0.004499,0.249960,0,0);-ms-transform:matrix(0.257028,0.004627,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.257028,0.004627,-0.004499,0.249960,0,0);}
.mae_c01196{transform:matrix(0.257263,0.005403,-0.005249,0.249945,0,0);-ms-transform:matrix(0.257263,0.005403,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.257263,0.005403,-0.005249,0.249945,0,0);}
.mf7_c01196{transform:matrix(0.258207,0.002066,-0.002000,0.249992,0,0);-ms-transform:matrix(0.258207,0.002066,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.258207,0.002066,-0.002000,0.249992,0,0);}
.mff_c01196{transform:matrix(0.259002,0.002072,-0.002000,0.249992,0,0);-ms-transform:matrix(0.259002,0.002072,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.259002,0.002072,-0.002000,0.249992,0,0);}
.mb0_c01196{transform:matrix(0.259358,0.005447,-0.005249,0.249945,0,0);-ms-transform:matrix(0.259358,0.005447,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.259358,0.005447,-0.005249,0.249945,0,0);}
.m7e_c01196{transform:matrix(0.260223,0.003383,-0.003250,0.249979,0,0);-ms-transform:matrix(0.260223,0.003383,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.260223,0.003383,-0.003250,0.249979,0,0);}
.mf9_c01196{transform:matrix(0.260667,0.002085,-0.002000,0.249992,0,0);-ms-transform:matrix(0.260667,0.002085,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.260667,0.002085,-0.002000,0.249992,0,0);}
.m8a_c01196{transform:matrix(0.261163,0.004962,-0.004749,0.249955,0,0);-ms-transform:matrix(0.261163,0.004962,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.261163,0.004962,-0.004749,0.249955,0,0);}
.m84_c01196{transform:matrix(0.261178,0.004962,-0.004749,0.249955,0,0);-ms-transform:matrix(0.261178,0.004962,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.261178,0.004962,-0.004749,0.249955,0,0);}
.m38_c01196{transform:matrix(0.262183,0.003408,-0.003250,0.249979,0,0);-ms-transform:matrix(0.262183,0.003408,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.262183,0.003408,-0.003250,0.249979,0,0);}
.mfe_c01196{transform:matrix(0.262267,0.002098,-0.002000,0.249992,0,0);-ms-transform:matrix(0.262267,0.002098,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.262267,0.002098,-0.002000,0.249992,0,0);}
.m94_c01196{transform:matrix(0.262477,0.004725,-0.004499,0.249960,0,0);-ms-transform:matrix(0.262477,0.004725,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.262477,0.004725,-0.004499,0.249960,0,0);}
.m73_c01196{transform:matrix(0.262828,0.003417,-0.003250,0.249979,0,0);-ms-transform:matrix(0.262828,0.003417,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.262828,0.003417,-0.003250,0.249979,0,0);}
.m53_c01196{transform:matrix(0.263113,0.003420,-0.003250,0.249979,0,0);-ms-transform:matrix(0.263113,0.003420,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.263113,0.003420,-0.003250,0.249979,0,0);}
.m111_c01196{transform:matrix(0.263232,0.002106,-0.002000,0.249992,0,0);-ms-transform:matrix(0.263232,0.002106,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.263232,0.002106,-0.002000,0.249992,0,0);}
.me8_c01196{transform:matrix(0.263360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263360,0.000000,0.000000,0.250000,0,0);}
.m95_c01196{transform:matrix(0.263417,0.004742,-0.004499,0.249960,0,0);-ms-transform:matrix(0.263417,0.004742,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.263417,0.004742,-0.004499,0.249960,0,0);}
.m76_c01196{transform:matrix(0.264413,0.003437,-0.003250,0.249979,0,0);-ms-transform:matrix(0.264413,0.003437,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.264413,0.003437,-0.003250,0.249979,0,0);}
.ma2_c01196{transform:matrix(0.264472,0.005554,-0.005249,0.249945,0,0);-ms-transform:matrix(0.264472,0.005554,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.264472,0.005554,-0.005249,0.249945,0,0);}
.m49_c01196{transform:matrix(0.264508,0.003439,-0.003250,0.249979,0,0);-ms-transform:matrix(0.264508,0.003439,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.264508,0.003439,-0.003250,0.249979,0,0);}
.m7f_c01196{transform:matrix(0.264528,0.003439,-0.003250,0.249979,0,0);-ms-transform:matrix(0.264528,0.003439,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.264528,0.003439,-0.003250,0.249979,0,0);}
.me7_c01196{transform:matrix(0.264960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264960,0.000000,0.000000,0.250000,0,0);}
.mfa_c01196{transform:matrix(0.265367,0.002123,-0.002000,0.249992,0,0);-ms-transform:matrix(0.265367,0.002123,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.265367,0.002123,-0.002000,0.249992,0,0);}
.m79_c01196{transform:matrix(0.265488,0.003451,-0.003250,0.249979,0,0);-ms-transform:matrix(0.265488,0.003451,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.265488,0.003451,-0.003250,0.249979,0,0);}
.ma6_c01196{transform:matrix(0.266306,0.005592,-0.005249,0.249945,0,0);-ms-transform:matrix(0.266306,0.005592,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.266306,0.005592,-0.005249,0.249945,0,0);}
.m9c_c01196{transform:matrix(0.266392,0.004795,-0.004499,0.249960,0,0);-ms-transform:matrix(0.266392,0.004795,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.266392,0.004795,-0.004499,0.249960,0,0);}
.m44_c01196{transform:matrix(0.267267,0.003474,-0.003250,0.249979,0,0);-ms-transform:matrix(0.267267,0.003474,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.267267,0.003474,-0.003250,0.249979,0,0);}
.mb1_c01196{transform:matrix(0.267571,0.004549,-0.004249,0.249964,0,0);-ms-transform:matrix(0.267571,0.004549,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.267571,0.004549,-0.004249,0.249964,0,0);}
.m80_c01196{transform:matrix(0.268442,0.003490,-0.003250,0.249979,0,0);-ms-transform:matrix(0.268442,0.003490,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.268442,0.003490,-0.003250,0.249979,0,0);}
.m9b_c01196{transform:matrix(0.269246,0.004846,-0.004499,0.249960,0,0);-ms-transform:matrix(0.269246,0.004846,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.269246,0.004846,-0.004499,0.249960,0,0);}
.me6_c01196{transform:matrix(0.270550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270550,0.000000,0.000000,0.250000,0,0);}
.m3b_c01196{transform:matrix(0.270617,0.003518,-0.003250,0.249979,0,0);-ms-transform:matrix(0.270617,0.003518,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.270617,0.003518,-0.003250,0.249979,0,0);}
.mfc_c01196{transform:matrix(0.271166,0.002169,-0.002000,0.249992,0,0);-ms-transform:matrix(0.271166,0.002169,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.271166,0.002169,-0.002000,0.249992,0,0);}
.mc1_c01196{transform:matrix(0.271731,0.004619,-0.004249,0.249964,0,0);-ms-transform:matrix(0.271731,0.004619,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.271731,0.004619,-0.004249,0.249964,0,0);}
.m2c_c01196{transform:matrix(0.272079,0.002993,-0.002750,0.249985,0,0);-ms-transform:matrix(0.272079,0.002993,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.272079,0.002993,-0.002750,0.249985,0,0);}
.m74_c01196{transform:matrix(0.274457,0.003568,-0.003250,0.249979,0,0);-ms-transform:matrix(0.274457,0.003568,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.274457,0.003568,-0.003250,0.249979,0,0);}
.m7d_c01196{transform:matrix(0.274757,0.003572,-0.003250,0.249979,0,0);-ms-transform:matrix(0.274757,0.003572,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.274757,0.003572,-0.003250,0.249979,0,0);}
.mea_c01196{transform:matrix(0.274885,0.004948,-0.004499,0.249960,0,0);-ms-transform:matrix(0.274885,0.004948,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.274885,0.004948,-0.004499,0.249960,0,0);}
.mfb_c01196{transform:matrix(0.274956,0.002200,-0.002000,0.249992,0,0);-ms-transform:matrix(0.274956,0.002200,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.274956,0.002200,-0.002000,0.249992,0,0);}
.m42_c01196{transform:matrix(0.275032,0.003575,-0.003250,0.249979,0,0);-ms-transform:matrix(0.275032,0.003575,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.275032,0.003575,-0.003250,0.249979,0,0);}
.m7b_c01196{transform:matrix(0.276677,0.003597,-0.003250,0.249979,0,0);-ms-transform:matrix(0.276677,0.003597,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.276677,0.003597,-0.003250,0.249979,0,0);}
.md7_c01196{transform:matrix(0.277674,0.005831,-0.005249,0.249945,0,0);-ms-transform:matrix(0.277674,0.005831,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.277674,0.005831,-0.005249,0.249945,0,0);}
.m3_c01196{transform:matrix(0.277823,-0.001945,0.001750,0.249994,0,0);-ms-transform:matrix(0.277823,-0.001945,0.001750,0.249994,0,0);-webkit-transform:matrix(0.277823,-0.001945,0.001750,0.249994,0,0);}
.m43_c01196{transform:matrix(0.278311,0.003618,-0.003250,0.249979,0,0);-ms-transform:matrix(0.278311,0.003618,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.278311,0.003618,-0.003250,0.249979,0,0);}
.m77_c01196{transform:matrix(0.278601,0.003622,-0.003250,0.249979,0,0);-ms-transform:matrix(0.278601,0.003622,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.278601,0.003622,-0.003250,0.249979,0,0);}
.m46_c01196{transform:matrix(0.281706,0.003662,-0.003250,0.249979,0,0);-ms-transform:matrix(0.281706,0.003662,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.281706,0.003662,-0.003250,0.249979,0,0);}
.m3e_c01196{transform:matrix(0.282116,0.003668,-0.003250,0.249979,0,0);-ms-transform:matrix(0.282116,0.003668,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.282116,0.003668,-0.003250,0.249979,0,0);}
.m3f_c01196{transform:matrix(0.282616,0.003674,-0.003250,0.249979,0,0);-ms-transform:matrix(0.282616,0.003674,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.282616,0.003674,-0.003250,0.249979,0,0);}
.mbe_c01196{transform:matrix(0.282954,0.004810,-0.004249,0.249964,0,0);-ms-transform:matrix(0.282954,0.004810,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.282954,0.004810,-0.004249,0.249964,0,0);}
.m78_c01196{transform:matrix(0.283051,0.003680,-0.003250,0.249979,0,0);-ms-transform:matrix(0.283051,0.003680,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.283051,0.003680,-0.003250,0.249979,0,0);}
.m9a_c01196{transform:matrix(0.283104,0.005096,-0.004499,0.249960,0,0);-ms-transform:matrix(0.283104,0.005096,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.283104,0.005096,-0.004499,0.249960,0,0);}
.m45_c01196{transform:matrix(0.284086,0.003693,-0.003250,0.249979,0,0);-ms-transform:matrix(0.284086,0.003693,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.284086,0.003693,-0.003250,0.249979,0,0);}
.m7a_c01196{transform:matrix(0.285816,0.003716,-0.003250,0.249979,0,0);-ms-transform:matrix(0.285816,0.003716,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.285816,0.003716,-0.003250,0.249979,0,0);}
.md1_c01196{transform:matrix(0.286182,0.006010,-0.005249,0.249945,0,0);-ms-transform:matrix(0.286182,0.006010,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.286182,0.006010,-0.005249,0.249945,0,0);}
.m8e_c01196{transform:matrix(0.300301,0.005706,-0.004749,0.249955,0,0);-ms-transform:matrix(0.300301,0.005706,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.300301,0.005706,-0.004749,0.249955,0,0);}
.md6_c01196{transform:matrix(0.301154,0.006324,-0.005249,0.249945,0,0);-ms-transform:matrix(0.301154,0.006324,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.301154,0.006324,-0.005249,0.249945,0,0);}
.mbd_c01196{transform:matrix(0.301271,0.005122,-0.004249,0.249964,0,0);-ms-transform:matrix(0.301271,0.005122,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.301271,0.005122,-0.004249,0.249964,0,0);}
.md4_c01196{transform:matrix(0.306177,0.006430,-0.005249,0.249945,0,0);-ms-transform:matrix(0.306177,0.006430,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.306177,0.006430,-0.005249,0.249945,0,0);}
.m23_c01196{transform:matrix(0.308041,0.003388,-0.002750,0.249985,0,0);-ms-transform:matrix(0.308041,0.003388,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.308041,0.003388,-0.002750,0.249985,0,0);}
.m102_c01196{transform:matrix(0.309695,0.002478,-0.002000,0.249992,0,0);-ms-transform:matrix(0.309695,0.002478,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.309695,0.002478,-0.002000,0.249992,0,0);}
.mbf_c01196{transform:matrix(0.316429,0.005379,-0.004249,0.249964,0,0);-ms-transform:matrix(0.316429,0.005379,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.316429,0.005379,-0.004249,0.249964,0,0);}
.m37_c01196{transform:matrix(0.318623,0.004142,-0.003250,0.249979,0,0);-ms-transform:matrix(0.318623,0.004142,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.318623,0.004142,-0.003250,0.249979,0,0);}
.md0_c01196{transform:matrix(0.319640,0.006712,-0.005249,0.249945,0,0);-ms-transform:matrix(0.319640,0.006712,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.319640,0.006712,-0.005249,0.249945,0,0);}
.mbc_c01196{transform:matrix(0.319899,0.005438,-0.004249,0.249964,0,0);-ms-transform:matrix(0.319899,0.005438,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.319899,0.005438,-0.004249,0.249964,0,0);}
.ma0_c01196{transform:matrix(0.322373,0.005803,-0.004499,0.249960,0,0);-ms-transform:matrix(0.322373,0.005803,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.322373,0.005803,-0.004499,0.249960,0,0);}
.mc0_c01196{transform:matrix(0.324088,0.005509,-0.004249,0.249964,0,0);-ms-transform:matrix(0.324088,0.005509,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.324088,0.005509,-0.004249,0.249964,0,0);}
.mc2_c01196{transform:matrix(0.328173,0.005579,-0.004249,0.249964,0,0);-ms-transform:matrix(0.328173,0.005579,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.328173,0.005579,-0.004249,0.249964,0,0);}
.md2_c01196{transform:matrix(0.332737,0.006987,-0.005249,0.249945,0,0);-ms-transform:matrix(0.332737,0.006987,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.332737,0.006987,-0.005249,0.249945,0,0);}
.md5_c01196{transform:matrix(0.333307,0.006999,-0.005249,0.249945,0,0);-ms-transform:matrix(0.333307,0.006999,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.333307,0.006999,-0.005249,0.249945,0,0);}
.m24_c01196{transform:matrix(0.334300,0.003677,-0.002750,0.249985,0,0);-ms-transform:matrix(0.334300,0.003677,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.334300,0.003677,-0.002750,0.249985,0,0);}
.m34_c01196{transform:matrix(0.349539,0.003845,-0.002750,0.249985,0,0);-ms-transform:matrix(0.349539,0.003845,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.349539,0.003845,-0.002750,0.249985,0,0);}
.md9_c01196{transform:matrix(0.350923,0.007369,-0.005249,0.249945,0,0);-ms-transform:matrix(0.350923,0.007369,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.350923,0.007369,-0.005249,0.249945,0,0);}
.md8_c01196{transform:matrix(0.364220,0.007649,-0.005249,0.249945,0,0);-ms-transform:matrix(0.364220,0.007649,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.364220,0.007649,-0.005249,0.249945,0,0);}
.m104_c01196{transform:matrix(0.384133,0.003073,-0.002000,0.249992,0,0);-ms-transform:matrix(0.384133,0.003073,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.384133,0.003073,-0.002000,0.249992,0,0);}
.m8c_c01196{transform:matrix(0.384646,0.007308,-0.004749,0.249955,0,0);-ms-transform:matrix(0.384646,0.007308,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.384646,0.007308,-0.004749,0.249955,0,0);}
.m99_c01196{transform:matrix(0.388867,0.007000,-0.004499,0.249960,0,0);-ms-transform:matrix(0.388867,0.007000,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.388867,0.007000,-0.004499,0.249960,0,0);}
.m10d_c01196{transform:matrix(0.438991,0.003512,-0.002000,0.249992,0,0);-ms-transform:matrix(0.438991,0.003512,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.438991,0.003512,-0.002000,0.249992,0,0);}
.ma1_c01196{transform:matrix(0.445337,0.009352,-0.005249,0.249945,0,0);-ms-transform:matrix(0.445337,0.009352,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.445337,0.009352,-0.005249,0.249945,0,0);}
.m103_c01196{transform:matrix(0.491934,0.003935,-0.002000,0.249992,0,0);-ms-transform:matrix(0.491934,0.003935,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.491934,0.003935,-0.002000,0.249992,0,0);}
.v0_c01196{vertical-align:0.000000px;}
.ls0_c01196{letter-spacing:0.000000px;}
.sc__c01196{text-shadow:none;}
.sc0_c01196{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__c01196{-webkit-text-stroke:0px transparent;}
.sc0_c01196{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01196{word-spacing:0.000000px;}
.fc0_c01196{color:transparent;}
.fs4_c01196{font-size:54.003267px;}
.fsd_c01196{font-size:60.008669px;}
.fsf_c01196{font-size:60.013229px;}
.fs10_c01196{font-size:66.000000px;}
.fs12_c01196{font-size:72.002304px;}
.fs6_c01196{font-size:72.006084px;}
.fs5_c01196{font-size:78.004719px;}
.fs7_c01196{font-size:78.006591px;}
.fs3_c01196{font-size:78.011270px;}
.fs9_c01196{font-size:78.012635px;}
.fs8_c01196{font-size:78.014078px;}
.fsb_c01196{font-size:78.017197px;}
.fs0_c01196{font-size:84.000000px;}
.fs1_c01196{font-size:84.002058px;}
.fs2_c01196{font-size:84.005082px;}
.fsc_c01196{font-size:84.012137px;}
.fs11_c01196{font-size:84.013607px;}
.fsa_c01196{font-size:84.018520px;}
.fs14_c01196{font-size:90.002880px;}
.fse_c01196{font-size:96.021166px;}
.fs13_c01196{font-size:102.003264px;}
.y0_c01196{bottom:0.000000px;}
.y10f_c01196{bottom:127.599012px;}
.y10e_c01196{bottom:128.308200px;}
.y10d_c01196{bottom:129.045876px;}
.y10c_c01196{bottom:130.333860px;}
.y10b_c01196{bottom:131.898852px;}
.y10a_c01196{bottom:132.780240px;}
.y109_c01196{bottom:133.500612px;}
.y108_c01196{bottom:135.044952px;}
.y107_c01196{bottom:135.875280px;}
.y106_c01196{bottom:136.620240px;}
.y105_c01196{bottom:162.937236px;}
.y104_c01196{bottom:163.347660px;}
.y103_c01196{bottom:163.663536px;}
.y102_c01196{bottom:164.642616px;}
.y101_c01196{bottom:165.464508px;}
.y100_c01196{bottom:166.903524px;}
.yff_c01196{bottom:167.201112px;}
.yfe_c01196{bottom:167.919756px;}
.yfd_c01196{bottom:168.480732px;}
.yfc_c01196{bottom:207.513528px;}
.yfb_c01196{bottom:208.062336px;}
.yfa_c01196{bottom:208.334484px;}
.yf9_c01196{bottom:208.690944px;}
.yf8_c01196{bottom:208.952352px;}
.yf7_c01196{bottom:209.554968px;}
.yf6_c01196{bottom:210.170724px;}
.yf5_c01196{bottom:210.442824px;}
.yf4_c01196{bottom:210.781920px;}
.yf3_c01196{bottom:211.680000px;}
.yf2_c01196{bottom:232.954221px;}
.yf1_c01196{bottom:233.547303px;}
.yf0_c01196{bottom:234.349689px;}
.yef_c01196{bottom:235.101207px;}
.yee_c01196{bottom:235.745427px;}
.yed_c01196{bottom:236.337645px;}
.yec_c01196{bottom:238.321956px;}
.yeb_c01196{bottom:240.329784px;}
.yea_c01196{bottom:241.106466px;}
.ye9_c01196{bottom:242.292549px;}
.ye8_c01196{bottom:244.071903px;}
.ye7_c01196{bottom:246.243000px;}
.ye6_c01196{bottom:279.555000px;}
.ye5_c01196{bottom:303.058505px;}
.ye4_c01196{bottom:304.459152px;}
.ye3_c01196{bottom:305.628464px;}
.ye2_c01196{bottom:307.721071px;}
.ye1_c01196{bottom:308.413001px;}
.ye0_c01196{bottom:309.324957px;}
.ydf_c01196{bottom:311.634411px;}
.yde_c01196{bottom:312.587129px;}
.ydd_c01196{bottom:314.226357px;}
.ydc_c01196{bottom:316.243838px;}
.ydb_c01196{bottom:317.600889px;}
.yda_c01196{bottom:318.317420px;}
.yd9_c01196{bottom:342.153174px;}
.yd8_c01196{bottom:343.667124px;}
.yd7_c01196{bottom:344.283121px;}
.yd6_c01196{bottom:345.004413px;}
.yd5_c01196{bottom:345.494393px;}
.yd4_c01196{bottom:346.325179px;}
.yd3_c01196{bottom:346.951545px;}
.yd2_c01196{bottom:347.827816px;}
.yd1_c01196{bottom:348.317386px;}
.yd0_c01196{bottom:349.310285px;}
.ycf_c01196{bottom:349.912784px;}
.yce_c01196{bottom:374.046965px;}
.ycd_c01196{bottom:375.436272px;}
.ycc_c01196{bottom:376.388265px;}
.ycb_c01196{bottom:377.307183px;}
.yca_c01196{bottom:378.923385px;}
.yc9_c01196{bottom:380.790674px;}
.yc8_c01196{bottom:381.726381px;}
.yc7_c01196{bottom:382.418090px;}
.yc6_c01196{bottom:384.483418px;}
.yc5_c01196{bottom:386.994094px;}
.yc4_c01196{bottom:388.362013px;}
.yc3_c01196{bottom:389.073000px;}
.yc2_c01196{bottom:416.163801px;}
.yc1_c01196{bottom:417.345656px;}
.yc0_c01196{bottom:418.741113px;}
.ybf_c01196{bottom:419.523730px;}
.ybe_c01196{bottom:420.683175px;}
.ybd_c01196{bottom:421.315599px;}
.ybc_c01196{bottom:422.280510px;}
.ybb_c01196{bottom:448.124851px;}
.yba_c01196{bottom:449.429151px;}
.yb9_c01196{bottom:449.983750px;}
.yb8_c01196{bottom:451.462699px;}
.yb7_c01196{bottom:452.233233px;}
.yb6_c01196{bottom:453.560788px;}
.yb5_c01196{bottom:455.539971px;}
.yb4_c01196{bottom:456.182469px;}
.yb3_c01196{bottom:457.866667px;}
.yb2_c01196{bottom:458.933715px;}
.yb1_c01196{bottom:460.083000px;}
.yb0_c01196{bottom:488.351080px;}
.yaf_c01196{bottom:489.017869px;}
.yae_c01196{bottom:490.891392px;}
.yad_c01196{bottom:491.711655px;}
.yac_c01196{bottom:492.747085px;}
.yab_c01196{bottom:516.532995px;}
.yaa_c01196{bottom:517.229302px;}
.ya9_c01196{bottom:518.608845px;}
.ya8_c01196{bottom:519.526125px;}
.ya7_c01196{bottom:521.404376px;}
.ya6_c01196{bottom:523.479974px;}
.ya5_c01196{bottom:524.200725px;}
.ya4_c01196{bottom:524.897978px;}
.ya3_c01196{bottom:526.979466px;}
.ya2_c01196{bottom:529.020446px;}
.ya1_c01196{bottom:531.094500px;}
.ya0_c01196{bottom:558.295041px;}
.y9f_c01196{bottom:559.544196px;}
.y9e_c01196{bottom:560.537796px;}
.y9d_c01196{bottom:561.898731px;}
.y9c_c01196{bottom:563.491272px;}
.y9b_c01196{bottom:588.797616px;}
.y9a_c01196{bottom:590.245788px;}
.y99_c01196{bottom:591.592197px;}
.y98_c01196{bottom:592.194999px;}
.y97_c01196{bottom:592.792779px;}
.y96_c01196{bottom:594.698817px;}
.y95_c01196{bottom:595.583013px;}
.y94_c01196{bottom:597.556902px;}
.y93_c01196{bottom:599.516643px;}
.y92_c01196{bottom:600.678993px;}
.y91_c01196{bottom:601.293000px;}
.y90_c01196{bottom:618.289134px;}
.y8f_c01196{bottom:626.692856px;}
.y8e_c01196{bottom:627.049425px;}
.y8d_c01196{bottom:628.182968px;}
.y8c_c01196{bottom:628.571891px;}
.y8b_c01196{bottom:658.146213px;}
.y8a_c01196{bottom:660.661224px;}
.y89_c01196{bottom:661.318320px;}
.y88_c01196{bottom:662.144307px;}
.y87_c01196{bottom:664.047281px;}
.y86_c01196{bottom:665.114720px;}
.y85_c01196{bottom:665.741064px;}
.y84_c01196{bottom:667.834503px;}
.y83_c01196{bottom:669.881402px;}
.y82_c01196{bottom:671.109752px;}
.y81_c01196{bottom:671.763000px;}
.y80_c01196{bottom:700.614333px;}
.y7f_c01196{bottom:701.596606px;}
.y7e_c01196{bottom:702.384246px;}
.y7d_c01196{bottom:704.148837px;}
.y7c_c01196{bottom:727.219464px;}
.y7b_c01196{bottom:729.181306px;}
.y7a_c01196{bottom:731.252167px;}
.y79_c01196{bottom:731.617824px;}
.y78_c01196{bottom:733.868160px;}
.y77_c01196{bottom:734.665132px;}
.y76_c01196{bottom:735.773505px;}
.y75_c01196{bottom:736.507819px;}
.y74_c01196{bottom:737.819217px;}
.y73_c01196{bottom:738.940944px;}
.y72_c01196{bottom:740.012607px;}
.y71_c01196{bottom:740.601135px;}
.y70_c01196{bottom:763.667590px;}
.y6f_c01196{bottom:764.270106px;}
.y6e_c01196{bottom:765.551464px;}
.y6d_c01196{bottom:766.615789px;}
.y6c_c01196{bottom:767.325085px;}
.y6b_c01196{bottom:768.383094px;}
.y6a_c01196{bottom:769.628071px;}
.y69_c01196{bottom:770.468637px;}
.y68_c01196{bottom:771.027987px;}
.y67_c01196{bottom:771.572305px;}
.y66_c01196{bottom:772.647412px;}
.y65_c01196{bottom:773.338110px;}
.y64_c01196{bottom:774.555793px;}
.y63_c01196{bottom:775.430380px;}
.y62_c01196{bottom:801.134991px;}
.y61_c01196{bottom:801.932407px;}
.y60_c01196{bottom:802.241814px;}
.y5f_c01196{bottom:802.539927px;}
.y5e_c01196{bottom:803.424703px;}
.y5d_c01196{bottom:803.920438px;}
.y5c_c01196{bottom:804.330609px;}
.y5b_c01196{bottom:804.826305px;}
.y5a_c01196{bottom:805.226994px;}
.y59_c01196{bottom:806.308905px;}
.y58_c01196{bottom:807.292318px;}
.y57_c01196{bottom:836.668597px;}
.y56_c01196{bottom:837.126210px;}
.y55_c01196{bottom:838.203313px;}
.y54_c01196{bottom:839.122009px;}
.y53_c01196{bottom:839.602572px;}
.y52_c01196{bottom:842.214177px;}
.y51_c01196{bottom:842.999971px;}
.y50_c01196{bottom:844.511932px;}
.y4f_c01196{bottom:845.420841px;}
.y4e_c01196{bottom:845.905615px;}
.y4d_c01196{bottom:878.359612px;}
.y4c_c01196{bottom:878.754891px;}
.y4b_c01196{bottom:879.814336px;}
.y4a_c01196{bottom:880.342888px;}
.y49_c01196{bottom:880.738069px;}
.y48_c01196{bottom:908.847475px;}
.y47_c01196{bottom:909.282676px;}
.y46_c01196{bottom:909.857985px;}
.y45_c01196{bottom:911.020477px;}
.y44_c01196{bottom:912.733494px;}
.y43_c01196{bottom:913.456632px;}
.y42_c01196{bottom:915.011659px;}
.y41_c01196{bottom:916.440151px;}
.y40_c01196{bottom:917.284755px;}
.y3f_c01196{bottom:917.731500px;}
.y3e_c01196{bottom:945.379790px;}
.y3d_c01196{bottom:946.955838px;}
.y3c_c01196{bottom:947.391039px;}
.y3b_c01196{bottom:947.826279px;}
.y3a_c01196{bottom:948.953204px;}
.y39_c01196{bottom:949.837841px;}
.y38_c01196{bottom:950.409834px;}
.y37_c01196{bottom:951.409969px;}
.y36_c01196{bottom:952.831500px;}
.y35_c01196{bottom:972.757428px;}
.y34_c01196{bottom:973.331190px;}
.y33_c01196{bottom:985.498608px;}
.y32_c01196{bottom:1012.564953px;}
.y31_c01196{bottom:1013.265126px;}
.y30_c01196{bottom:1014.349777px;}
.y2f_c01196{bottom:1015.930380px;}
.y2e_c01196{bottom:1016.642463px;}
.y2d_c01196{bottom:1018.561291px;}
.y2c_c01196{bottom:1018.936120px;}
.y2b_c01196{bottom:1019.905027px;}
.y2a_c01196{bottom:1020.354907px;}
.y29_c01196{bottom:1020.877679px;}
.y28_c01196{bottom:1022.432911px;}
.y27_c01196{bottom:1023.302883px;}
.y26_c01196{bottom:1023.840021px;}
.y25_c01196{bottom:1047.732870px;}
.y24_c01196{bottom:1048.239403px;}
.y23_c01196{bottom:1054.445845px;}
.y22_c01196{bottom:1055.161500px;}
.y21_c01196{bottom:1081.686975px;}
.y20_c01196{bottom:1082.816191px;}
.y1f_c01196{bottom:1083.385581px;}
.y1e_c01196{bottom:1083.958464px;}
.y1d_c01196{bottom:1085.625552px;}
.y1c_c01196{bottom:1086.213148px;}
.y1b_c01196{bottom:1087.892833px;}
.y1a_c01196{bottom:1088.458015px;}
.y19_c01196{bottom:1089.200856px;}
.y18_c01196{bottom:1091.079058px;}
.y17_c01196{bottom:1092.552168px;}
.y16_c01196{bottom:1093.472514px;}
.y15_c01196{bottom:1094.043000px;}
.y14_c01196{bottom:1122.556812px;}
.y13_c01196{bottom:1122.901018px;}
.y12_c01196{bottom:1123.643964px;}
.y11_c01196{bottom:1124.232552px;}
.y10_c01196{bottom:1124.739679px;}
.yf_c01196{bottom:1125.821090px;}
.ye_c01196{bottom:1126.171500px;}
.y2_c01196{bottom:1160.461500px;}
.y3_c01196{bottom:1161.154122px;}
.y4_c01196{bottom:1161.909439px;}
.y5_c01196{bottom:1162.697349px;}
.y6_c01196{bottom:1162.839267px;}
.y7_c01196{bottom:1163.449695px;}
.y8_c01196{bottom:1163.697295px;}
.y9_c01196{bottom:1164.075285px;}
.ya_c01196{bottom:1164.311524px;}
.yb_c01196{bottom:1164.986328px;}
.yc_c01196{bottom:1165.243231px;}
.yd_c01196{bottom:1165.470000px;}
.y1_c01196{bottom:1221.363000px;}
.h6_c01196{height:54.003267px;}
.hf_c01196{height:60.008669px;}
.h11_c01196{height:60.013229px;}
.h12_c01196{height:66.000000px;}
.h14_c01196{height:72.002304px;}
.h8_c01196{height:72.006084px;}
.h7_c01196{height:78.004719px;}
.h9_c01196{height:78.006591px;}
.h5_c01196{height:78.011270px;}
.hb_c01196{height:78.012635px;}
.ha_c01196{height:78.014078px;}
.hd_c01196{height:78.017197px;}
.h2_c01196{height:84.000000px;}
.h3_c01196{height:84.002058px;}
.h4_c01196{height:84.005082px;}
.he_c01196{height:84.012137px;}
.h13_c01196{height:84.013607px;}
.hc_c01196{height:84.018520px;}
.h16_c01196{height:90.002880px;}
.h10_c01196{height:96.021166px;}
.h15_c01196{height:102.003264px;}
.h1_c01196{height:1258.500000px;}
.h0_c01196{height:1258.740000px;}
.w0_c01196{width:904.200000px;}
.w1_c01196{width:904.500000px;}
.x0_c01196{left:0.000000px;}
.x87_c01196{left:55.189500px;}
.xab_c01196{left:63.265500px;}
.xb2_c01196{left:73.140000px;}
.x47_c01196{left:80.051343px;}
.x2d_c01196{left:81.126000px;}
.x4_c01196{left:84.628500px;}
.x90_c01196{left:87.855000px;}
.x6f_c01196{left:89.470500px;}
.x5c_c01196{left:90.815823px;}
.x34_c01196{left:93.013500px;}
.x24_c01196{left:94.634117px;}
.x17_c01196{left:95.712000px;}
.xb8_c01196{left:107.197620px;}
.xbc_c01196{left:120.064104px;}
.x91_c01196{left:121.711500px;}
.x70_c01196{left:123.582000px;}
.x5d_c01196{left:125.470029px;}
.x3f_c01196{left:126.822333px;}
.x25_c01196{left:128.190269px;}
.x18_c01196{left:129.270000px;}
.x52_c01196{left:134.372386px;}
.xb9_c01196{left:162.525912px;}
.x5_c01196{left:183.574500px;}
.x6c_c01196{left:184.670628px;}
.x77_c01196{left:186.417690px;}
.x71_c01196{left:188.157000px;}
.x48_c01196{left:189.396537px;}
.x2e_c01196{left:190.474500px;}
.x40_c01196{left:191.775994px;}
.x21_c01196{left:192.901500px;}
.x10_c01196{left:205.051500px;}
.x6d_c01196{left:210.589594px;}
.xa7_c01196{left:218.700000px;}
.x3c_c01196{left:223.135017px;}
.x9a_c01196{left:227.687490px;}
.x11_c01196{left:236.907000px;}
.x84_c01196{left:240.597689px;}
.x5e_c01196{left:254.493321px;}
.x22_c01196{left:257.961000px;}
.xb3_c01196{left:261.799500px;}
.x53_c01196{left:265.195797px;}
.x2f_c01196{left:267.408000px;}
.x19_c01196{left:270.061500px;}
.x78_c01196{left:274.892190px;}
.x26_c01196{left:279.791436px;}
.xa2_c01196{left:281.852429px;}
.x85_c01196{left:283.802516px;}
.x7c_c01196{left:284.866500px;}
.x6e_c01196{left:286.202851px;}
.x65_c01196{left:287.305289px;}
.x6_c01196{left:291.477000px;}
.x9b_c01196{left:293.833806px;}
.xba_c01196{left:296.158572px;}
.x67_c01196{left:297.319500px;}
.x41_c01196{left:299.771591px;}
.x35_c01196{left:302.232000px;}
.x92_c01196{left:306.406500px;}
.x54_c01196{left:308.401620px;}
.x49_c01196{left:309.549777px;}
.x30_c01196{left:311.407500px;}
.x27_c01196{left:312.450637px;}
.xa8_c01196{left:316.440000px;}
.x88_c01196{left:322.426500px;}
.x9c_c01196{left:326.507933px;}
.x5f_c01196{left:331.596804px;}
.x12_c01196{left:335.217000px;}
.xb4_c01196{left:338.769000px;}
.x28_c01196{left:340.529086px;}
.xac_c01196{left:348.628500px;}
.x79_c01196{left:350.499690px;}
.x4a_c01196{left:354.105097px;}
.x3d_c01196{left:355.444233px;}
.xbd_c01196{left:358.059576px;}
.xa3_c01196{left:359.910929px;}
.x55_c01196{left:375.638007px;}
.x1_c01196{left:379.620000px;}
.x13_c01196{left:381.319500px;}
.x86_c01196{left:382.379142px;}
.x7d_c01196{left:383.985000px;}
.x66_c01196{left:385.599893px;}
.x3e_c01196{left:388.389162px;}
.xad_c01196{left:391.777500px;}
.xa9_c01196{left:393.390000px;}
.x2_c01196{left:401.490000px;}
.x7_c01196{left:404.035500px;}
.x7a_c01196{left:405.699690px;}
.x68_c01196{left:407.500500px;}
.x4b_c01196{left:409.199964px;}
.xb5_c01196{left:414.096000px;}
.x7e_c01196{left:417.187500px;}
.x36_c01196{left:421.849500px;}
.x8_c01196{left:424.309500px;}
.x9d_c01196{left:426.717564px;}
.x14_c01196{left:434.827500px;}
.x93_c01196{left:437.694000px;}
.x89_c01196{left:438.849000px;}
.x60_c01196{left:439.990169px;}
.x56_c01196{left:444.609816px;}
.x3_c01196{left:445.770000px;}
.xb6_c01196{left:446.772000px;}
.xaa_c01196{left:449.550000px;}
.x7f_c01196{left:451.509000px;}
.x4c_c01196{left:454.830843px;}
.x1a_c01196{left:457.486500px;}
.xbb_c01196{left:458.945556px;}
.x8e_c01196{left:460.688830px;}
.x31_c01196{left:466.143000px;}
.x7b_c01196{left:475.097190px;}
.x37_c01196{left:477.475500px;}
.x94_c01196{left:482.251500px;}
.x61_c01196{left:486.870231px;}
.xb7_c01196{left:491.329500px;}
.x57_c01196{left:497.151269px;}
.x32_c01196{left:499.623000px;}
.x15_c01196{left:502.368000px;}
.x4d_c01196{left:509.928709px;}
.x9_c01196{left:511.513500px;}
.x9e_c01196{left:514.765152px;}
.x8a_c01196{left:516.940500px;}
.x8f_c01196{left:526.326209px;}
.x16_c01196{left:533.659500px;}
.x42_c01196{left:542.529951px;}
.x29_c01196{left:544.387366px;}
.xa_c01196{left:546.885000px;}
.x80_c01196{left:550.347000px;}
.x1b_c01196{left:556.291500px;}
.xa4_c01196{left:558.678929px;}
.x72_c01196{left:561.705000px;}
.x9f_c01196{left:562.832700px;}
.x95_c01196{left:571.170000px;}
.x58_c01196{left:574.915727px;}
.x43_c01196{left:576.842003px;}
.x2a_c01196{left:588.937925px;}
.x1c_c01196{left:590.856000px;}
.x73_c01196{left:594.915000px;}
.x69_c01196{left:596.803500px;}
.xb_c01196{left:600.883500px;}
.xa0_c01196{left:603.885366px;}
.x4e_c01196{left:608.224318px;}
.x38_c01196{left:609.246000px;}
.xae_c01196{left:613.563000px;}
.x62_c01196{left:619.235348px;}
.x74_c01196{left:628.404000px;}
.xc_c01196{left:634.632000px;}
.x6a_c01196{left:640.276500px;}
.x4f_c01196{left:641.427054px;}
.x44_c01196{left:642.433145px;}
.xbe_c01196{left:645.406092px;}
.xaf_c01196{left:646.464000px;}
.x96_c01196{left:648.132000px;}
.x8b_c01196{left:649.263000px;}
.x33_c01196{left:654.334500px;}
.x50_c01196{left:675.729329px;}
.x8c_c01196{left:681.886500px;}
.x81_c01196{left:683.467500px;}
.x59_c01196{left:685.357917px;}
.x2b_c01196{left:687.759996px;}
.x1d_c01196{left:688.920000px;}
.x97_c01196{left:691.890000px;}
.x39_c01196{left:698.668500px;}
.xbf_c01196{left:702.175824px;}
.x75_c01196{left:703.204500px;}
.xa1_c01196{left:704.848092px;}
.x45_c01196{left:719.401650px;}
.x1e_c01196{left:722.619000px;}
.xb0_c01196{left:724.005000px;}
.xd_c01196{left:731.032500px;}
.x98_c01196{left:737.223000px;}
.x3a_c01196{left:742.923000px;}
.xa5_c01196{left:746.957429px;}
.x82_c01196{left:749.160000px;}
.x46_c01196{left:752.063721px;}
.x1f_c01196{left:756.112500px;}
.x8d_c01196{left:758.610000px;}
.x63_c01196{left:762.575399px;}
.x51_c01196{left:764.304431px;}
.xe_c01196{left:767.733000px;}
.x3b_c01196{left:776.400000px;}
.x83_c01196{left:782.317500px;}
.x76_c01196{left:783.658500px;}
.xf_c01196{left:800.128500px;}
.xb1_c01196{left:801.531000px;}
.x99_c01196{left:803.380500px;}
.x6b_c01196{left:807.229500px;}
.xa6_c01196{left:813.654929px;}
.x20_c01196{left:822.537000px;}
.x5a_c01196{left:831.981704px;}
.x23_c01196{left:868.231500px;}
.x5b_c01196{left:869.673741px;}
.x64_c01196{left:877.941893px;}
.x2c_c01196{left:900.632790px;}
@media print{
.v0_c01196{vertical-align:0.000000pt;}
.ls0_c01196{letter-spacing:0.000000pt;}
.ws0_c01196{word-spacing:0.000000pt;}
.fs4_c01196{font-size:48.002904pt;}
.fsd_c01196{font-size:53.341039pt;}
.fsf_c01196{font-size:53.345092pt;}
.fs10_c01196{font-size:58.666667pt;}
.fs12_c01196{font-size:64.002048pt;}
.fs6_c01196{font-size:64.005408pt;}
.fs5_c01196{font-size:69.337528pt;}
.fs7_c01196{font-size:69.339192pt;}
.fs3_c01196{font-size:69.343351pt;}
.fs9_c01196{font-size:69.344564pt;}
.fs8_c01196{font-size:69.345847pt;}
.fsb_c01196{font-size:69.348620pt;}
.fs0_c01196{font-size:74.666667pt;}
.fs1_c01196{font-size:74.668496pt;}
.fs2_c01196{font-size:74.671184pt;}
.fsc_c01196{font-size:74.677455pt;}
.fs11_c01196{font-size:74.678762pt;}
.fsa_c01196{font-size:74.683129pt;}
.fs14_c01196{font-size:80.002560pt;}
.fse_c01196{font-size:85.352147pt;}
.fs13_c01196{font-size:90.669568pt;}
.y0_c01196{bottom:0.000000pt;}
.y10f_c01196{bottom:113.421344pt;}
.y10e_c01196{bottom:114.051733pt;}
.y10d_c01196{bottom:114.707445pt;}
.y10c_c01196{bottom:115.852320pt;}
.y10b_c01196{bottom:117.243424pt;}
.y10a_c01196{bottom:118.026880pt;}
.y109_c01196{bottom:118.667211pt;}
.y108_c01196{bottom:120.039957pt;}
.y107_c01196{bottom:120.778027pt;}
.y106_c01196{bottom:121.440213pt;}
.y105_c01196{bottom:144.833099pt;}
.y104_c01196{bottom:145.197920pt;}
.y103_c01196{bottom:145.478699pt;}
.y102_c01196{bottom:146.348992pt;}
.y101_c01196{bottom:147.079563pt;}
.y100_c01196{bottom:148.358688pt;}
.yff_c01196{bottom:148.623211pt;}
.yfe_c01196{bottom:149.262005pt;}
.yfd_c01196{bottom:149.760651pt;}
.yfc_c01196{bottom:184.456469pt;}
.yfb_c01196{bottom:184.944299pt;}
.yfa_c01196{bottom:185.186208pt;}
.yf9_c01196{bottom:185.503061pt;}
.yf8_c01196{bottom:185.735424pt;}
.yf7_c01196{bottom:186.271083pt;}
.yf6_c01196{bottom:186.818421pt;}
.yf5_c01196{bottom:187.060288pt;}
.yf4_c01196{bottom:187.361707pt;}
.yf3_c01196{bottom:188.160000pt;}
.yf2_c01196{bottom:207.070419pt;}
.yf1_c01196{bottom:207.597603pt;}
.yf0_c01196{bottom:208.310835pt;}
.yef_c01196{bottom:208.978851pt;}
.yee_c01196{bottom:209.551491pt;}
.yed_c01196{bottom:210.077907pt;}
.yec_c01196{bottom:211.841739pt;}
.yeb_c01196{bottom:213.626475pt;}
.yea_c01196{bottom:214.316859pt;}
.ye9_c01196{bottom:215.371155pt;}
.ye8_c01196{bottom:216.952803pt;}
.ye7_c01196{bottom:218.882667pt;}
.ye6_c01196{bottom:248.493333pt;}
.ye5_c01196{bottom:269.385337pt;}
.ye4_c01196{bottom:270.630357pt;}
.ye3_c01196{bottom:271.669745pt;}
.ye2_c01196{bottom:273.529841pt;}
.ye1_c01196{bottom:274.144889pt;}
.ye0_c01196{bottom:274.955517pt;}
.ydf_c01196{bottom:277.008365pt;}
.yde_c01196{bottom:277.855225pt;}
.ydd_c01196{bottom:279.312317pt;}
.ydc_c01196{bottom:281.105633pt;}
.ydb_c01196{bottom:282.311901pt;}
.yda_c01196{bottom:282.948817pt;}
.yd9_c01196{bottom:304.136155pt;}
.yd8_c01196{bottom:305.481888pt;}
.yd7_c01196{bottom:306.029441pt;}
.yd6_c01196{bottom:306.670589pt;}
.yd5_c01196{bottom:307.106127pt;}
.yd4_c01196{bottom:307.844604pt;}
.yd3_c01196{bottom:308.401373pt;}
.yd2_c01196{bottom:309.180281pt;}
.yd1_c01196{bottom:309.615455pt;}
.yd0_c01196{bottom:310.498031pt;}
.ycf_c01196{bottom:311.033585pt;}
.yce_c01196{bottom:332.486191pt;}
.ycd_c01196{bottom:333.721131pt;}
.ycc_c01196{bottom:334.567347pt;}
.ycb_c01196{bottom:335.384163pt;}
.yca_c01196{bottom:336.820787pt;}
.yc9_c01196{bottom:338.480599pt;}
.yc8_c01196{bottom:339.312339pt;}
.yc7_c01196{bottom:339.927191pt;}
.yc6_c01196{bottom:341.763039pt;}
.yc5_c01196{bottom:343.994751pt;}
.yc4_c01196{bottom:345.210679pt;}
.yc3_c01196{bottom:345.842667pt;}
.yc2_c01196{bottom:369.923379pt;}
.yc1_c01196{bottom:370.973916pt;}
.yc0_c01196{bottom:372.214323pt;}
.ybf_c01196{bottom:372.909983pt;}
.ybe_c01196{bottom:373.940600pt;}
.ybd_c01196{bottom:374.502755pt;}
.ybc_c01196{bottom:375.360453pt;}
.ybb_c01196{bottom:398.333201pt;}
.yba_c01196{bottom:399.492579pt;}
.yb9_c01196{bottom:399.985556pt;}
.yb8_c01196{bottom:401.300177pt;}
.yb7_c01196{bottom:401.985096pt;}
.yb6_c01196{bottom:403.165145pt;}
.yb5_c01196{bottom:404.924419pt;}
.yb4_c01196{bottom:405.495528pt;}
.yb3_c01196{bottom:406.992593pt;}
.yb2_c01196{bottom:407.941080pt;}
.yb1_c01196{bottom:408.962667pt;}
.yb0_c01196{bottom:434.089849pt;}
.yaf_c01196{bottom:434.682551pt;}
.yae_c01196{bottom:436.347904pt;}
.yad_c01196{bottom:437.077027pt;}
.yac_c01196{bottom:437.997409pt;}
.yab_c01196{bottom:459.140440pt;}
.yaa_c01196{bottom:459.759380pt;}
.ya9_c01196{bottom:460.985640pt;}
.ya8_c01196{bottom:461.801000pt;}
.ya7_c01196{bottom:463.470556pt;}
.ya6_c01196{bottom:465.315532pt;}
.ya5_c01196{bottom:465.956200pt;}
.ya4_c01196{bottom:466.575980pt;}
.ya3_c01196{bottom:468.426192pt;}
.ya2_c01196{bottom:470.240396pt;}
.ya1_c01196{bottom:472.084000pt;}
.ya0_c01196{bottom:496.262259pt;}
.y9f_c01196{bottom:497.372619pt;}
.y9e_c01196{bottom:498.255819pt;}
.y9d_c01196{bottom:499.465539pt;}
.y9c_c01196{bottom:500.881131pt;}
.y9b_c01196{bottom:523.375659pt;}
.y9a_c01196{bottom:524.662923pt;}
.y99_c01196{bottom:525.859731pt;}
.y98_c01196{bottom:526.395555pt;}
.y97_c01196{bottom:526.926915pt;}
.y96_c01196{bottom:528.621171pt;}
.y95_c01196{bottom:529.407123pt;}
.y94_c01196{bottom:531.161691pt;}
.y93_c01196{bottom:532.903683pt;}
.y92_c01196{bottom:533.936883pt;}
.y91_c01196{bottom:534.482667pt;}
.y90_c01196{bottom:549.590341pt;}
.y8f_c01196{bottom:557.060316pt;}
.y8e_c01196{bottom:557.377267pt;}
.y8d_c01196{bottom:558.384860pt;}
.y8c_c01196{bottom:558.730569pt;}
.y8b_c01196{bottom:585.018856pt;}
.y8a_c01196{bottom:587.254421pt;}
.y89_c01196{bottom:587.838507pt;}
.y88_c01196{bottom:588.572717pt;}
.y87_c01196{bottom:590.264249pt;}
.y86_c01196{bottom:591.213084pt;}
.y85_c01196{bottom:591.769835pt;}
.y84_c01196{bottom:593.630669pt;}
.y83_c01196{bottom:595.450135pt;}
.y82_c01196{bottom:596.542001pt;}
.y81_c01196{bottom:597.122667pt;}
.y80_c01196{bottom:622.768296pt;}
.y7f_c01196{bottom:623.641428pt;}
.y7e_c01196{bottom:624.341552pt;}
.y7d_c01196{bottom:625.910077pt;}
.y7c_c01196{bottom:646.417301pt;}
.y7b_c01196{bottom:648.161161pt;}
.y7a_c01196{bottom:650.001927pt;}
.y79_c01196{bottom:650.326955pt;}
.y78_c01196{bottom:652.327253pt;}
.y77_c01196{bottom:653.035673pt;}
.y76_c01196{bottom:654.020893pt;}
.y75_c01196{bottom:654.673617pt;}
.y74_c01196{bottom:655.839304pt;}
.y73_c01196{bottom:656.836395pt;}
.y72_c01196{bottom:657.788984pt;}
.y71_c01196{bottom:658.312120pt;}
.y70_c01196{bottom:678.815636pt;}
.y6f_c01196{bottom:679.351205pt;}
.y6e_c01196{bottom:680.490191pt;}
.y6d_c01196{bottom:681.436257pt;}
.y6c_c01196{bottom:682.066743pt;}
.y6b_c01196{bottom:683.007195pt;}
.y6a_c01196{bottom:684.113841pt;}
.y69_c01196{bottom:684.861011pt;}
.y68_c01196{bottom:685.358211pt;}
.y67_c01196{bottom:685.842049pt;}
.y66_c01196{bottom:686.797700pt;}
.y65_c01196{bottom:687.411653pt;}
.y64_c01196{bottom:688.494039pt;}
.y63_c01196{bottom:689.271449pt;}
.y62_c01196{bottom:712.119992pt;}
.y61_c01196{bottom:712.828807pt;}
.y60_c01196{bottom:713.103835pt;}
.y5f_c01196{bottom:713.368824pt;}
.y5e_c01196{bottom:714.155292pt;}
.y5d_c01196{bottom:714.595945pt;}
.y5c_c01196{bottom:714.960541pt;}
.y5b_c01196{bottom:715.401160pt;}
.y5a_c01196{bottom:715.757328pt;}
.y59_c01196{bottom:716.719027pt;}
.y58_c01196{bottom:717.593172pt;}
.y57_c01196{bottom:743.705420pt;}
.y56_c01196{bottom:744.112187pt;}
.y55_c01196{bottom:745.069612pt;}
.y54_c01196{bottom:745.886231pt;}
.y53_c01196{bottom:746.313397pt;}
.y52_c01196{bottom:748.634824pt;}
.y51_c01196{bottom:749.333308pt;}
.y50_c01196{bottom:750.677273pt;}
.y4f_c01196{bottom:751.485192pt;}
.y4e_c01196{bottom:751.916103pt;}
.y4d_c01196{bottom:780.764100pt;}
.y4c_c01196{bottom:781.115459pt;}
.y4b_c01196{bottom:782.057188pt;}
.y4a_c01196{bottom:782.527012pt;}
.y49_c01196{bottom:782.878284pt;}
.y48_c01196{bottom:807.864423pt;}
.y47_c01196{bottom:808.251268pt;}
.y46_c01196{bottom:808.762653pt;}
.y45_c01196{bottom:809.795980pt;}
.y44_c01196{bottom:811.318661pt;}
.y43_c01196{bottom:811.961451pt;}
.y42_c01196{bottom:813.343697pt;}
.y41_c01196{bottom:814.613468pt;}
.y40_c01196{bottom:815.364227pt;}
.y3f_c01196{bottom:815.761333pt;}
.y3e_c01196{bottom:840.337591pt;}
.y3d_c01196{bottom:841.738523pt;}
.y3c_c01196{bottom:842.125368pt;}
.y3b_c01196{bottom:842.512248pt;}
.y3a_c01196{bottom:843.513959pt;}
.y39_c01196{bottom:844.300303pt;}
.y38_c01196{bottom:844.808741pt;}
.y37_c01196{bottom:845.697751pt;}
.y36_c01196{bottom:846.961333pt;}
.y35_c01196{bottom:864.673269pt;}
.y34_c01196{bottom:865.183280pt;}
.y33_c01196{bottom:875.998763pt;}
.y32_c01196{bottom:900.057736pt;}
.y31_c01196{bottom:900.680112pt;}
.y30_c01196{bottom:901.644247pt;}
.y2f_c01196{bottom:903.049227pt;}
.y2e_c01196{bottom:903.682189pt;}
.y2d_c01196{bottom:905.387815pt;}
.y2c_c01196{bottom:905.720996pt;}
.y2b_c01196{bottom:906.582247pt;}
.y2a_c01196{bottom:906.982140pt;}
.y29_c01196{bottom:907.446825pt;}
.y28_c01196{bottom:908.829255pt;}
.y27_c01196{bottom:909.602563pt;}
.y26_c01196{bottom:910.080019pt;}
.y25_c01196{bottom:931.318107pt;}
.y24_c01196{bottom:931.768359pt;}
.y23_c01196{bottom:937.285196pt;}
.y22_c01196{bottom:937.921333pt;}
.y21_c01196{bottom:961.499533pt;}
.y20_c01196{bottom:962.503281pt;}
.y1f_c01196{bottom:963.009405pt;}
.y1e_c01196{bottom:963.518635pt;}
.y1d_c01196{bottom:965.000491pt;}
.y1c_c01196{bottom:965.522799pt;}
.y1b_c01196{bottom:967.015852pt;}
.y1a_c01196{bottom:967.518236pt;}
.y19_c01196{bottom:968.178539pt;}
.y18_c01196{bottom:969.848052pt;}
.y17_c01196{bottom:971.157483pt;}
.y16_c01196{bottom:971.975568pt;}
.y15_c01196{bottom:972.482667pt;}
.y14_c01196{bottom:997.828277pt;}
.y13_c01196{bottom:998.134239pt;}
.y12_c01196{bottom:998.794635pt;}
.y11_c01196{bottom:999.317824pt;}
.y10_c01196{bottom:999.768604pt;}
.yf_c01196{bottom:1000.729857pt;}
.ye_c01196{bottom:1001.041333pt;}
.y2_c01196{bottom:1031.521333pt;}
.y3_c01196{bottom:1032.136997pt;}
.y4_c01196{bottom:1032.808391pt;}
.y5_c01196{bottom:1033.508755pt;}
.y6_c01196{bottom:1033.634904pt;}
.y7_c01196{bottom:1034.177507pt;}
.y8_c01196{bottom:1034.397596pt;}
.y9_c01196{bottom:1034.733587pt;}
.ya_c01196{bottom:1034.943577pt;}
.yb_c01196{bottom:1035.543403pt;}
.yc_c01196{bottom:1035.771761pt;}
.yd_c01196{bottom:1035.973333pt;}
.y1_c01196{bottom:1085.656000pt;}
.h6_c01196{height:48.002904pt;}
.hf_c01196{height:53.341039pt;}
.h11_c01196{height:53.345092pt;}
.h12_c01196{height:58.666667pt;}
.h14_c01196{height:64.002048pt;}
.h8_c01196{height:64.005408pt;}
.h7_c01196{height:69.337528pt;}
.h9_c01196{height:69.339192pt;}
.h5_c01196{height:69.343351pt;}
.hb_c01196{height:69.344564pt;}
.ha_c01196{height:69.345847pt;}
.hd_c01196{height:69.348620pt;}
.h2_c01196{height:74.666667pt;}
.h3_c01196{height:74.668496pt;}
.h4_c01196{height:74.671184pt;}
.he_c01196{height:74.677455pt;}
.h13_c01196{height:74.678762pt;}
.hc_c01196{height:74.683129pt;}
.h16_c01196{height:80.002560pt;}
.h10_c01196{height:85.352147pt;}
.h15_c01196{height:90.669568pt;}
.h1_c01196{height:1118.666667pt;}
.h0_c01196{height:1118.880000pt;}
.w0_c01196{width:803.733333pt;}
.w1_c01196{width:804.000000pt;}
.x0_c01196{left:0.000000pt;}
.x87_c01196{left:49.057333pt;}
.xab_c01196{left:56.236000pt;}
.xb2_c01196{left:65.013333pt;}
.x47_c01196{left:71.156749pt;}
.x2d_c01196{left:72.112000pt;}
.x4_c01196{left:75.225333pt;}
.x90_c01196{left:78.093333pt;}
.x6f_c01196{left:79.529333pt;}
.x5c_c01196{left:80.725176pt;}
.x34_c01196{left:82.678667pt;}
.x24_c01196{left:84.119215pt;}
.x17_c01196{left:85.077333pt;}
.xb8_c01196{left:95.286773pt;}
.xbc_c01196{left:106.723648pt;}
.x91_c01196{left:108.188000pt;}
.x70_c01196{left:109.850667pt;}
.x5d_c01196{left:111.528915pt;}
.x3f_c01196{left:112.730963pt;}
.x25_c01196{left:113.946905pt;}
.x18_c01196{left:114.906667pt;}
.x52_c01196{left:119.442121pt;}
.xb9_c01196{left:144.467477pt;}
.x5_c01196{left:163.177333pt;}
.x6c_c01196{left:164.151669pt;}
.x77_c01196{left:165.704613pt;}
.x71_c01196{left:167.250667pt;}
.x48_c01196{left:168.352477pt;}
.x2e_c01196{left:169.310667pt;}
.x40_c01196{left:170.467551pt;}
.x21_c01196{left:171.468000pt;}
.x10_c01196{left:182.268000pt;}
.x6d_c01196{left:187.190751pt;}
.xa7_c01196{left:194.400000pt;}
.x3c_c01196{left:198.342237pt;}
.x9a_c01196{left:202.388880pt;}
.x11_c01196{left:210.584000pt;}
.x84_c01196{left:213.864612pt;}
.x5e_c01196{left:226.216285pt;}
.x22_c01196{left:229.298667pt;}
.xb3_c01196{left:232.710667pt;}
.x53_c01196{left:235.729597pt;}
.x2f_c01196{left:237.696000pt;}
.x19_c01196{left:240.054667pt;}
.x78_c01196{left:244.348613pt;}
.x26_c01196{left:248.703499pt;}
.xa2_c01196{left:250.535492pt;}
.x85_c01196{left:252.268903pt;}
.x7c_c01196{left:253.214667pt;}
.x6e_c01196{left:254.402535pt;}
.x65_c01196{left:255.382479pt;}
.x6_c01196{left:259.090667pt;}
.x9b_c01196{left:261.185605pt;}
.xba_c01196{left:263.252064pt;}
.x67_c01196{left:264.284000pt;}
.x41_c01196{left:266.463636pt;}
.x35_c01196{left:268.650667pt;}
.x92_c01196{left:272.361333pt;}
.x54_c01196{left:274.134773pt;}
.x49_c01196{left:275.155357pt;}
.x30_c01196{left:276.806667pt;}
.x27_c01196{left:277.733900pt;}
.xa8_c01196{left:281.280000pt;}
.x88_c01196{left:286.601333pt;}
.x9c_c01196{left:290.229273pt;}
.x5f_c01196{left:294.752715pt;}
.x12_c01196{left:297.970667pt;}
.xb4_c01196{left:301.128000pt;}
.x28_c01196{left:302.692521pt;}
.xac_c01196{left:309.892000pt;}
.x79_c01196{left:311.555280pt;}
.x4a_c01196{left:314.760087pt;}
.x3d_c01196{left:315.950429pt;}
.xbd_c01196{left:318.275179pt;}
.xa3_c01196{left:319.920825pt;}
.x55_c01196{left:333.900451pt;}
.x1_c01196{left:337.440000pt;}
.x13_c01196{left:338.950667pt;}
.x86_c01196{left:339.892571pt;}
.x7d_c01196{left:341.320000pt;}
.x66_c01196{left:342.755460pt;}
.x3e_c01196{left:345.234811pt;}
.xad_c01196{left:348.246667pt;}
.xa9_c01196{left:349.680000pt;}
.x2_c01196{left:356.880000pt;}
.x7_c01196{left:359.142667pt;}
.x7a_c01196{left:360.621947pt;}
.x68_c01196{left:362.222667pt;}
.x4b_c01196{left:363.733301pt;}
.xb5_c01196{left:368.085333pt;}
.x7e_c01196{left:370.833333pt;}
.x36_c01196{left:374.977333pt;}
.x8_c01196{left:377.164000pt;}
.x9d_c01196{left:379.304501pt;}
.x14_c01196{left:386.513333pt;}
.x93_c01196{left:389.061333pt;}
.x89_c01196{left:390.088000pt;}
.x60_c01196{left:391.102372pt;}
.x56_c01196{left:395.208725pt;}
.x3_c01196{left:396.240000pt;}
.xb6_c01196{left:397.130667pt;}
.xaa_c01196{left:399.600000pt;}
.x7f_c01196{left:401.341333pt;}
.x4c_c01196{left:404.294083pt;}
.x1a_c01196{left:406.654667pt;}
.xbb_c01196{left:407.951605pt;}
.x8e_c01196{left:409.501183pt;}
.x31_c01196{left:414.349333pt;}
.x7b_c01196{left:422.308613pt;}
.x37_c01196{left:424.422667pt;}
.x94_c01196{left:428.668000pt;}
.x61_c01196{left:432.773539pt;}
.xb7_c01196{left:436.737333pt;}
.x57_c01196{left:441.912239pt;}
.x32_c01196{left:444.109333pt;}
.x15_c01196{left:446.549333pt;}
.x4d_c01196{left:453.269964pt;}
.x9_c01196{left:454.678667pt;}
.x9e_c01196{left:457.569024pt;}
.x8a_c01196{left:459.502667pt;}
.x8f_c01196{left:467.845519pt;}
.x16_c01196{left:474.364000pt;}
.x42_c01196{left:482.248845pt;}
.x29_c01196{left:483.899881pt;}
.xa_c01196{left:486.120000pt;}
.x80_c01196{left:489.197333pt;}
.x1b_c01196{left:494.481333pt;}
.xa4_c01196{left:496.603492pt;}
.x72_c01196{left:499.293333pt;}
.x9f_c01196{left:500.295733pt;}
.x95_c01196{left:507.706667pt;}
.x58_c01196{left:511.036201pt;}
.x43_c01196{left:512.748447pt;}
.x2a_c01196{left:523.500377pt;}
.x1c_c01196{left:525.205333pt;}
.x73_c01196{left:528.813333pt;}
.x69_c01196{left:530.492000pt;}
.xb_c01196{left:534.118667pt;}
.xa0_c01196{left:536.786992pt;}
.x4e_c01196{left:540.643839pt;}
.x38_c01196{left:541.552000pt;}
.xae_c01196{left:545.389333pt;}
.x62_c01196{left:550.431420pt;}
.x74_c01196{left:558.581333pt;}
.xc_c01196{left:564.117333pt;}
.x6a_c01196{left:569.134667pt;}
.x4f_c01196{left:570.157381pt;}
.x44_c01196{left:571.051684pt;}
.xbe_c01196{left:573.694304pt;}
.xaf_c01196{left:574.634667pt;}
.x96_c01196{left:576.117333pt;}
.x8b_c01196{left:577.122667pt;}
.x33_c01196{left:581.630667pt;}
.x50_c01196{left:600.648292pt;}
.x8c_c01196{left:606.121333pt;}
.x81_c01196{left:607.526667pt;}
.x59_c01196{left:609.207037pt;}
.x2b_c01196{left:611.342219pt;}
.x1d_c01196{left:612.373333pt;}
.x97_c01196{left:615.013333pt;}
.x39_c01196{left:621.038667pt;}
.xbf_c01196{left:624.156288pt;}
.x75_c01196{left:625.070667pt;}
.xa1_c01196{left:626.531637pt;}
.x45_c01196{left:639.468133pt;}
.x1e_c01196{left:642.328000pt;}
.xb0_c01196{left:643.560000pt;}
.xd_c01196{left:649.806667pt;}
.x98_c01196{left:655.309333pt;}
.x3a_c01196{left:660.376000pt;}
.xa5_c01196{left:663.962159pt;}
.x82_c01196{left:665.920000pt;}
.x46_c01196{left:668.501085pt;}
.x1f_c01196{left:672.100000pt;}
.x8d_c01196{left:674.320000pt;}
.x63_c01196{left:677.844799pt;}
.x51_c01196{left:679.381716pt;}
.xe_c01196{left:682.429333pt;}
.x3b_c01196{left:690.133333pt;}
.x83_c01196{left:695.393333pt;}
.x76_c01196{left:696.585333pt;}
.xf_c01196{left:711.225333pt;}
.xb1_c01196{left:712.472000pt;}
.x99_c01196{left:714.116000pt;}
.x6b_c01196{left:717.537333pt;}
.xa6_c01196{left:723.248825pt;}
.x20_c01196{left:731.144000pt;}
.x5a_c01196{left:739.539292pt;}
.x23_c01196{left:771.761333pt;}
.x5b_c01196{left:773.043325pt;}
.x64_c01196{left:780.392793pt;}
.x2c_c01196{left:800.562480pt;}
}





/* 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_c01197 {
    display:none;
  }
  .loading-indicator_c01197.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01197 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_c01197 { 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_c01197" -> "#page-container .classname_c01197")
 */
.pf_c01197 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01197 { /* 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_c01197.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01197 { /* 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_c01197 { /* 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_c01197 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01197 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01197 {overflow:visible;}
  }
}
.c_c01197 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01197 { /* 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_c01197:after { /* webkit #35443 */
  content: '';
}
.t_c01197:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01197 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 */
}
.__c01197 { /* 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_c01197 { /* info for Javascript */
  display:none;
}
.l_c01197 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01197 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01197 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01197: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_c01197 {
    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_c01197.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01197.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_c01197 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01197{font-family:sans-serif;visibility:hidden;}
.sc__c01197{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01197{-webkit-text-stroke:0px transparent;}
}
.y0_c01197{bottom:0.000000px;}
.h1_c01197{height:1258.500000px;}
.h0_c01197{height:1258.740000px;}
.w0_c01197{width:904.200000px;}
.w1_c01197{width:904.500000px;}
.x0_c01197{left:0.000000px;}
@media print{
.y0_c01197{bottom:0.000000pt;}
.h1_c01197{height:1118.666667pt;}
.h0_c01197{height:1118.880000pt;}
.w0_c01197{width:803.733333pt;}
.w1_c01197{width:804.000000pt;}
.x0_c01197{left:0.000000pt;}
}





/* 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_c01198 {
    display:none;
  }
  .loading-indicator_c01198.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01198 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_c01198 { 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_c01198" -> "#page-container .classname_c01198")
 */
.pf_c01198 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01198 { /* 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_c01198.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01198 { /* 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_c01198 { /* 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_c01198 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01198 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01198 {overflow:visible;}
  }
}
.c_c01198 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01198 { /* 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_c01198:after { /* webkit #35443 */
  content: '';
}
.t_c01198:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01198 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 */
}
.__c01198 { /* 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_c01198 { /* info for Javascript */
  display:none;
}
.l_c01198 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01198 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01198 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01198: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_c01198 {
    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_c01198.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01198.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_c01198 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01198{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01198;src:url('chunks/assets/font_c605e72f209fc835e906f064.woff2')format("woff");}.ff1_c01198{font-family:ff1_c01198;line-height:1.000000;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;}
.m35_c01198{transform:matrix(0.010605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.010605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.010605,0.000000,0.000000,0.250000,0,0);}
.m42_c01198{transform:matrix(0.017355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.017355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.017355,0.000000,0.000000,0.250000,0,0);}
.m41_c01198{transform:matrix(0.023140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.023140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.023140,0.000000,0.000000,0.250000,0,0);}
.m118_c01198{transform:matrix(0.100888,-0.002522,0.006248,0.249922,0,0);-ms-transform:matrix(0.100888,-0.002522,0.006248,0.249922,0,0);-webkit-transform:matrix(0.100888,-0.002522,0.006248,0.249922,0,0);}
.med_c01198{transform:matrix(0.131718,-0.002107,0.003999,0.249968,0,0);-ms-transform:matrix(0.131718,-0.002107,0.003999,0.249968,0,0);-webkit-transform:matrix(0.131718,-0.002107,0.003999,0.249968,0,0);}
.m11b_c01198{transform:matrix(0.150123,-0.003753,0.006248,0.249922,0,0);-ms-transform:matrix(0.150123,-0.003753,0.006248,0.249922,0,0);-webkit-transform:matrix(0.150123,-0.003753,0.006248,0.249922,0,0);}
.m0_c01198{transform:matrix(0.157940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157940,0.000000,0.000000,0.250000,0,0);}
.m3e_c01198{transform:matrix(0.178735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178735,0.000000,0.000000,0.250000,0,0);}
.m11d_c01198{transform:matrix(0.184028,-0.004601,0.006248,0.249922,0,0);-ms-transform:matrix(0.184028,-0.004601,0.006248,0.249922,0,0);-webkit-transform:matrix(0.184028,-0.004601,0.006248,0.249922,0,0);}
.m122_c01198{transform:matrix(0.185702,-0.004643,0.006248,0.249922,0,0);-ms-transform:matrix(0.185702,-0.004643,0.006248,0.249922,0,0);-webkit-transform:matrix(0.185702,-0.004643,0.006248,0.249922,0,0);}
.m22_c01198{transform:matrix(0.190065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190065,0.000000,0.000000,0.250000,0,0);}
.m11f_c01198{transform:matrix(0.190465,-0.004762,0.006248,0.249922,0,0);-ms-transform:matrix(0.190465,-0.004762,0.006248,0.249922,0,0);-webkit-transform:matrix(0.190465,-0.004762,0.006248,0.249922,0,0);}
.m87_c01198{transform:matrix(0.191111,-0.003058,0.003999,0.249968,0,0);-ms-transform:matrix(0.191111,-0.003058,0.003999,0.249968,0,0);-webkit-transform:matrix(0.191111,-0.003058,0.003999,0.249968,0,0);}
.m120_c01198{transform:matrix(0.194639,-0.004866,0.006248,0.249922,0,0);-ms-transform:matrix(0.194639,-0.004866,0.006248,0.249922,0,0);-webkit-transform:matrix(0.194639,-0.004866,0.006248,0.249922,0,0);}
.mee_c01198{transform:matrix(0.194820,-0.003117,0.003999,0.249968,0,0);-ms-transform:matrix(0.194820,-0.003117,0.003999,0.249968,0,0);-webkit-transform:matrix(0.194820,-0.003117,0.003999,0.249968,0,0);}
.m123_c01198{transform:matrix(0.199898,-0.004997,0.006248,0.249922,0,0);-ms-transform:matrix(0.199898,-0.004997,0.006248,0.249922,0,0);-webkit-transform:matrix(0.199898,-0.004997,0.006248,0.249922,0,0);}
.mb1_c01198{transform:matrix(0.200181,-0.003403,0.004249,0.249964,0,0);-ms-transform:matrix(0.200181,-0.003403,0.004249,0.249964,0,0);-webkit-transform:matrix(0.200181,-0.003403,0.004249,0.249964,0,0);}
.mdb_c01198{transform:matrix(0.201049,-0.003217,0.003999,0.249968,0,0);-ms-transform:matrix(0.201049,-0.003217,0.003999,0.249968,0,0);-webkit-transform:matrix(0.201049,-0.003217,0.003999,0.249968,0,0);}
.m7f_c01198{transform:matrix(0.201284,-0.003221,0.003999,0.249968,0,0);-ms-transform:matrix(0.201284,-0.003221,0.003999,0.249968,0,0);-webkit-transform:matrix(0.201284,-0.003221,0.003999,0.249968,0,0);}
.m21_c01198{transform:matrix(0.201325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201325,0.000000,0.000000,0.250000,0,0);}
.m14_c01198{transform:matrix(0.201761,-0.005649,0.006997,0.249902,0,0);-ms-transform:matrix(0.201761,-0.005649,0.006997,0.249902,0,0);-webkit-transform:matrix(0.201761,-0.005649,0.006997,0.249902,0,0);}
.m11_c01198{transform:matrix(0.203090,-0.005687,0.006997,0.249902,0,0);-ms-transform:matrix(0.203090,-0.005687,0.006997,0.249902,0,0);-webkit-transform:matrix(0.203090,-0.005687,0.006997,0.249902,0,0);}
.m1e_c01198{transform:matrix(0.203746,-0.005094,0.006248,0.249922,0,0);-ms-transform:matrix(0.203746,-0.005094,0.006248,0.249922,0,0);-webkit-transform:matrix(0.203746,-0.005094,0.006248,0.249922,0,0);}
.md6_c01198{transform:matrix(0.204984,-0.003280,0.003999,0.249968,0,0);-ms-transform:matrix(0.204984,-0.003280,0.003999,0.249968,0,0);-webkit-transform:matrix(0.204984,-0.003280,0.003999,0.249968,0,0);}
.m121_c01198{transform:matrix(0.207375,-0.005184,0.006248,0.249922,0,0);-ms-transform:matrix(0.207375,-0.005184,0.006248,0.249922,0,0);-webkit-transform:matrix(0.207375,-0.005184,0.006248,0.249922,0,0);}
.m12b_c01198{transform:matrix(0.207431,0.001245,-0.001500,0.249996,0,0);-ms-transform:matrix(0.207431,0.001245,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.207431,0.001245,-0.001500,0.249996,0,0);}
.mfd_c01198{transform:matrix(0.208865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208865,0.000000,0.000000,0.250000,0,0);}
.m15_c01198{transform:matrix(0.210068,-0.005882,0.006997,0.249902,0,0);-ms-transform:matrix(0.210068,-0.005882,0.006997,0.249902,0,0);-webkit-transform:matrix(0.210068,-0.005882,0.006997,0.249902,0,0);}
.m17_c01198{transform:matrix(0.211267,-0.005915,0.006997,0.249902,0,0);-ms-transform:matrix(0.211267,-0.005915,0.006997,0.249902,0,0);-webkit-transform:matrix(0.211267,-0.005915,0.006997,0.249902,0,0);}
.m129_c01198{transform:matrix(0.211326,0.001268,-0.001500,0.249996,0,0);-ms-transform:matrix(0.211326,0.001268,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.211326,0.001268,-0.001500,0.249996,0,0);}
.m3a_c01198{transform:matrix(0.212265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212265,0.000000,0.000000,0.250000,0,0);}
.maf_c01198{transform:matrix(0.215682,-0.003451,0.003999,0.249968,0,0);-ms-transform:matrix(0.215682,-0.003451,0.003999,0.249968,0,0);-webkit-transform:matrix(0.215682,-0.003451,0.003999,0.249968,0,0);}
.m33_c01198{transform:matrix(0.215710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215710,0.000000,0.000000,0.250000,0,0);}
.m64_c01198{transform:matrix(0.216987,-0.005425,0.006248,0.249922,0,0);-ms-transform:matrix(0.216987,-0.005425,0.006248,0.249922,0,0);-webkit-transform:matrix(0.216987,-0.005425,0.006248,0.249922,0,0);}
.me2_c01198{transform:matrix(0.217802,-0.003485,0.003999,0.249968,0,0);-ms-transform:matrix(0.217802,-0.003485,0.003999,0.249968,0,0);-webkit-transform:matrix(0.217802,-0.003485,0.003999,0.249968,0,0);}
.meb_c01198{transform:matrix(0.218632,-0.003498,0.003999,0.249968,0,0);-ms-transform:matrix(0.218632,-0.003498,0.003999,0.249968,0,0);-webkit-transform:matrix(0.218632,-0.003498,0.003999,0.249968,0,0);}
.m124_c01198{transform:matrix(0.219226,0.001315,-0.001500,0.249996,0,0);-ms-transform:matrix(0.219226,0.001315,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.219226,0.001315,-0.001500,0.249996,0,0);}
.m67_c01198{transform:matrix(0.219886,-0.005497,0.006248,0.249922,0,0);-ms-transform:matrix(0.219886,-0.005497,0.006248,0.249922,0,0);-webkit-transform:matrix(0.219886,-0.005497,0.006248,0.249922,0,0);}
.m115_c01198{transform:matrix(0.221071,-0.005527,0.006248,0.249922,0,0);-ms-transform:matrix(0.221071,-0.005527,0.006248,0.249922,0,0);-webkit-transform:matrix(0.221071,-0.005527,0.006248,0.249922,0,0);}
.m125_c01198{transform:matrix(0.221746,0.001330,-0.001500,0.249996,0,0);-ms-transform:matrix(0.221746,0.001330,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.221746,0.001330,-0.001500,0.249996,0,0);}
.m12_c01198{transform:matrix(0.222358,-0.006226,0.006997,0.249902,0,0);-ms-transform:matrix(0.222358,-0.006226,0.006997,0.249902,0,0);-webkit-transform:matrix(0.222358,-0.006226,0.006997,0.249902,0,0);}
.m116_c01198{transform:matrix(0.224630,-0.005616,0.006248,0.249922,0,0);-ms-transform:matrix(0.224630,-0.005616,0.006248,0.249922,0,0);-webkit-transform:matrix(0.224630,-0.005616,0.006248,0.249922,0,0);}
.m11e_c01198{transform:matrix(0.224930,-0.005623,0.006248,0.249922,0,0);-ms-transform:matrix(0.224930,-0.005623,0.006248,0.249922,0,0);-webkit-transform:matrix(0.224930,-0.005623,0.006248,0.249922,0,0);}
.md8_c01198{transform:matrix(0.227781,-0.003644,0.003999,0.249968,0,0);-ms-transform:matrix(0.227781,-0.003644,0.003999,0.249968,0,0);-webkit-transform:matrix(0.227781,-0.003644,0.003999,0.249968,0,0);}
.m25_c01198{transform:matrix(0.227915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227915,0.000000,0.000000,0.250000,0,0);}
.m128_c01198{transform:matrix(0.228136,0.001369,-0.001500,0.249996,0,0);-ms-transform:matrix(0.228136,0.001369,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.228136,0.001369,-0.001500,0.249996,0,0);}
.md9_c01198{transform:matrix(0.228611,-0.003658,0.003999,0.249968,0,0);-ms-transform:matrix(0.228611,-0.003658,0.003999,0.249968,0,0);-webkit-transform:matrix(0.228611,-0.003658,0.003999,0.249968,0,0);}
.m44_c01198{transform:matrix(0.231764,-0.005099,0.005499,0.249940,0,0);-ms-transform:matrix(0.231764,-0.005099,0.005499,0.249940,0,0);-webkit-transform:matrix(0.231764,-0.005099,0.005499,0.249940,0,0);}
.m79_c01198{transform:matrix(0.232037,-0.005801,0.006248,0.249922,0,0);-ms-transform:matrix(0.232037,-0.005801,0.006248,0.249922,0,0);-webkit-transform:matrix(0.232037,-0.005801,0.006248,0.249922,0,0);}
.me4_c01198{transform:matrix(0.232955,-0.003727,0.003999,0.249968,0,0);-ms-transform:matrix(0.232955,-0.003727,0.003999,0.249968,0,0);-webkit-transform:matrix(0.232955,-0.003727,0.003999,0.249968,0,0);}
.mc0_c01198{transform:matrix(0.232986,-0.003961,0.004249,0.249964,0,0);-ms-transform:matrix(0.232986,-0.003961,0.004249,0.249964,0,0);-webkit-transform:matrix(0.232986,-0.003961,0.004249,0.249964,0,0);}
.md7_c01198{transform:matrix(0.233490,-0.003736,0.003999,0.249968,0,0);-ms-transform:matrix(0.233490,-0.003736,0.003999,0.249968,0,0);-webkit-transform:matrix(0.233490,-0.003736,0.003999,0.249968,0,0);}
.m4d_c01198{transform:matrix(0.233713,-0.005375,0.005748,0.249934,0,0);-ms-transform:matrix(0.233713,-0.005375,0.005748,0.249934,0,0);-webkit-transform:matrix(0.233713,-0.005375,0.005748,0.249934,0,0);}
.m1a_c01198{transform:matrix(0.233807,-0.005845,0.006248,0.249922,0,0);-ms-transform:matrix(0.233807,-0.005845,0.006248,0.249922,0,0);-webkit-transform:matrix(0.233807,-0.005845,0.006248,0.249922,0,0);}
.m11c_c01198{transform:matrix(0.234232,-0.005856,0.006248,0.249922,0,0);-ms-transform:matrix(0.234232,-0.005856,0.006248,0.249922,0,0);-webkit-transform:matrix(0.234232,-0.005856,0.006248,0.249922,0,0);}
.m10_c01198{transform:matrix(0.234793,-0.006574,0.006997,0.249902,0,0);-ms-transform:matrix(0.234793,-0.006574,0.006997,0.249902,0,0);-webkit-transform:matrix(0.234793,-0.006574,0.006997,0.249902,0,0);}
.mbf_c01198{transform:matrix(0.235286,-0.004000,0.004249,0.249964,0,0);-ms-transform:matrix(0.235286,-0.004000,0.004249,0.249964,0,0);-webkit-transform:matrix(0.235286,-0.004000,0.004249,0.249964,0,0);}
.mec_c01198{transform:matrix(0.235655,-0.003770,0.003999,0.249968,0,0);-ms-transform:matrix(0.235655,-0.003770,0.003999,0.249968,0,0);-webkit-transform:matrix(0.235655,-0.003770,0.003999,0.249968,0,0);}
.m6b_c01198{transform:matrix(0.236131,-0.005903,0.006248,0.249922,0,0);-ms-transform:matrix(0.236131,-0.005903,0.006248,0.249922,0,0);-webkit-transform:matrix(0.236131,-0.005903,0.006248,0.249922,0,0);}
.m9e_c01198{transform:matrix(0.236755,-0.003788,0.003999,0.249968,0,0);-ms-transform:matrix(0.236755,-0.003788,0.003999,0.249968,0,0);-webkit-transform:matrix(0.236755,-0.003788,0.003999,0.249968,0,0);}
.mdc_c01198{transform:matrix(0.237070,-0.003793,0.003999,0.249968,0,0);-ms-transform:matrix(0.237070,-0.003793,0.003999,0.249968,0,0);-webkit-transform:matrix(0.237070,-0.003793,0.003999,0.249968,0,0);}
.m1f_c01198{transform:matrix(0.238465,-0.005962,0.006248,0.249922,0,0);-ms-transform:matrix(0.238465,-0.005962,0.006248,0.249922,0,0);-webkit-transform:matrix(0.238465,-0.005962,0.006248,0.249922,0,0);}
.mf4_c01198{transform:matrix(0.239924,-0.003839,0.003999,0.249968,0,0);-ms-transform:matrix(0.239924,-0.003839,0.003999,0.249968,0,0);-webkit-transform:matrix(0.239924,-0.003839,0.003999,0.249968,0,0);}
.me7_c01198{transform:matrix(0.240404,-0.003846,0.003999,0.249968,0,0);-ms-transform:matrix(0.240404,-0.003846,0.003999,0.249968,0,0);-webkit-transform:matrix(0.240404,-0.003846,0.003999,0.249968,0,0);}
.ma7_c01198{transform:matrix(0.241359,-0.003862,0.003999,0.249968,0,0);-ms-transform:matrix(0.241359,-0.003862,0.003999,0.249968,0,0);-webkit-transform:matrix(0.241359,-0.003862,0.003999,0.249968,0,0);}
.m9c_c01198{transform:matrix(0.241469,-0.003864,0.003999,0.249968,0,0);-ms-transform:matrix(0.241469,-0.003864,0.003999,0.249968,0,0);-webkit-transform:matrix(0.241469,-0.003864,0.003999,0.249968,0,0);}
.mde_c01198{transform:matrix(0.241609,-0.003866,0.003999,0.249968,0,0);-ms-transform:matrix(0.241609,-0.003866,0.003999,0.249968,0,0);-webkit-transform:matrix(0.241609,-0.003866,0.003999,0.249968,0,0);}
.md5_c01198{transform:matrix(0.241784,-0.003869,0.003999,0.249968,0,0);-ms-transform:matrix(0.241784,-0.003869,0.003999,0.249968,0,0);-webkit-transform:matrix(0.241784,-0.003869,0.003999,0.249968,0,0);}
.m32_c01198{transform:matrix(0.242850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242850,0.000000,0.000000,0.250000,0,0);}
.m12a_c01198{transform:matrix(0.243096,0.001459,-0.001500,0.249996,0,0);-ms-transform:matrix(0.243096,0.001459,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.243096,0.001459,-0.001500,0.249996,0,0);}
.me_c01198{transform:matrix(0.243145,-0.006808,0.006997,0.249902,0,0);-ms-transform:matrix(0.243145,-0.006808,0.006997,0.249902,0,0);-webkit-transform:matrix(0.243145,-0.006808,0.006997,0.249902,0,0);}
.m12d_c01198{transform:matrix(0.243206,0.001459,-0.001500,0.249996,0,0);-ms-transform:matrix(0.243206,0.001459,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.243206,0.001459,-0.001500,0.249996,0,0);}
.m99_c01198{transform:matrix(0.243674,-0.003899,0.003999,0.249968,0,0);-ms-transform:matrix(0.243674,-0.003899,0.003999,0.249968,0,0);-webkit-transform:matrix(0.243674,-0.003899,0.003999,0.249968,0,0);}
.mb5_c01198{transform:matrix(0.244670,-0.004159,0.004249,0.249964,0,0);-ms-transform:matrix(0.244670,-0.004159,0.004249,0.249964,0,0);-webkit-transform:matrix(0.244670,-0.004159,0.004249,0.249964,0,0);}
.mc5_c01198{transform:matrix(0.245115,-0.004167,0.004249,0.249964,0,0);-ms-transform:matrix(0.245115,-0.004167,0.004249,0.249964,0,0);-webkit-transform:matrix(0.245115,-0.004167,0.004249,0.249964,0,0);}
.m61_c01198{transform:matrix(0.245288,-0.006132,0.006248,0.249922,0,0);-ms-transform:matrix(0.245288,-0.006132,0.006248,0.249922,0,0);-webkit-transform:matrix(0.245288,-0.006132,0.006248,0.249922,0,0);}
.mf7_c01198{transform:matrix(0.245350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245350,0.000000,0.000000,0.250000,0,0);}
.m126_c01198{transform:matrix(0.245461,0.001473,-0.001500,0.249996,0,0);-ms-transform:matrix(0.245461,0.001473,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.245461,0.001473,-0.001500,0.249996,0,0);}
.mc3_c01198{transform:matrix(0.245994,-0.004182,0.004249,0.249964,0,0);-ms-transform:matrix(0.245994,-0.004182,0.004249,0.249964,0,0);-webkit-transform:matrix(0.245994,-0.004182,0.004249,0.249964,0,0);}
.m80_c01198{transform:matrix(0.246024,-0.003936,0.003999,0.249968,0,0);-ms-transform:matrix(0.246024,-0.003936,0.003999,0.249968,0,0);-webkit-transform:matrix(0.246024,-0.003936,0.003999,0.249968,0,0);}
.m1b_c01198{transform:matrix(0.246888,-0.006172,0.006248,0.249922,0,0);-ms-transform:matrix(0.246888,-0.006172,0.006248,0.249922,0,0);-webkit-transform:matrix(0.246888,-0.006172,0.006248,0.249922,0,0);}
.m6c_c01198{transform:matrix(0.247383,-0.006185,0.006248,0.249922,0,0);-ms-transform:matrix(0.247383,-0.006185,0.006248,0.249922,0,0);-webkit-transform:matrix(0.247383,-0.006185,0.006248,0.249922,0,0);}
.m119_c01198{transform:matrix(0.248617,-0.006215,0.006248,0.249922,0,0);-ms-transform:matrix(0.248617,-0.006215,0.006248,0.249922,0,0);-webkit-transform:matrix(0.248617,-0.006215,0.006248,0.249922,0,0);}
.mba_c01198{transform:matrix(0.248879,-0.004231,0.004249,0.249964,0,0);-ms-transform:matrix(0.248879,-0.004231,0.004249,0.249964,0,0);-webkit-transform:matrix(0.248879,-0.004231,0.004249,0.249964,0,0);}
.mf_c01198{transform:matrix(0.249272,-0.006980,0.006997,0.249902,0,0);-ms-transform:matrix(0.249272,-0.006980,0.006997,0.249902,0,0);-webkit-transform:matrix(0.249272,-0.006980,0.006997,0.249902,0,0);}
.mdf_c01198{transform:matrix(0.249278,-0.003988,0.003999,0.249968,0,0);-ms-transform:matrix(0.249278,-0.003988,0.003999,0.249968,0,0);-webkit-transform:matrix(0.249278,-0.003988,0.003999,0.249968,0,0);}
.m7e_c01198{transform:matrix(0.249653,-0.003994,0.003999,0.249968,0,0);-ms-transform:matrix(0.249653,-0.003994,0.003999,0.249968,0,0);-webkit-transform:matrix(0.249653,-0.003994,0.003999,0.249968,0,0);}
.m9f_c01198{transform:matrix(0.249748,-0.003996,0.003999,0.249968,0,0);-ms-transform:matrix(0.249748,-0.003996,0.003999,0.249968,0,0);-webkit-transform:matrix(0.249748,-0.003996,0.003999,0.249968,0,0);}
.m19_c01198{transform:matrix(0.249957,-0.006249,0.006248,0.249922,0,0);-ms-transform:matrix(0.249957,-0.006249,0.006248,0.249922,0,0);-webkit-transform:matrix(0.249957,-0.006249,0.006248,0.249922,0,0);}
.m11a_c01198{transform:matrix(0.250627,-0.006266,0.006248,0.249922,0,0);-ms-transform:matrix(0.250627,-0.006266,0.006248,0.249922,0,0);-webkit-transform:matrix(0.250627,-0.006266,0.006248,0.249922,0,0);}
.m114_c01198{transform:matrix(0.250892,-0.006272,0.006248,0.249922,0,0);-ms-transform:matrix(0.250892,-0.006272,0.006248,0.249922,0,0);-webkit-transform:matrix(0.250892,-0.006272,0.006248,0.249922,0,0);}
.me8_c01198{transform:matrix(0.251028,-0.004016,0.003999,0.249968,0,0);-ms-transform:matrix(0.251028,-0.004016,0.003999,0.249968,0,0);-webkit-transform:matrix(0.251028,-0.004016,0.003999,0.249968,0,0);}
.ma5_c01198{transform:matrix(0.251188,-0.004019,0.003999,0.249968,0,0);-ms-transform:matrix(0.251188,-0.004019,0.003999,0.249968,0,0);-webkit-transform:matrix(0.251188,-0.004019,0.003999,0.249968,0,0);}
.m37_c01198{transform:matrix(0.251445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251445,0.000000,0.000000,0.250000,0,0);}
.m127_c01198{transform:matrix(0.252145,0.001513,-0.001500,0.249996,0,0);-ms-transform:matrix(0.252145,0.001513,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.252145,0.001513,-0.001500,0.249996,0,0);}
.m16_c01198{transform:matrix(0.252821,-0.007079,0.006997,0.249902,0,0);-ms-transform:matrix(0.252821,-0.007079,0.006997,0.249902,0,0);-webkit-transform:matrix(0.252821,-0.007079,0.006997,0.249902,0,0);}
.m13_c01198{transform:matrix(0.252961,-0.007083,0.006997,0.249902,0,0);-ms-transform:matrix(0.252961,-0.007083,0.006997,0.249902,0,0);-webkit-transform:matrix(0.252961,-0.007083,0.006997,0.249902,0,0);}
.me0_c01198{transform:matrix(0.253878,-0.004062,0.003999,0.249968,0,0);-ms-transform:matrix(0.253878,-0.004062,0.003999,0.249968,0,0);-webkit-transform:matrix(0.253878,-0.004062,0.003999,0.249968,0,0);}
.m69_c01198{transform:matrix(0.254086,-0.006352,0.006248,0.249922,0,0);-ms-transform:matrix(0.254086,-0.006352,0.006248,0.249922,0,0);-webkit-transform:matrix(0.254086,-0.006352,0.006248,0.249922,0,0);}
.md2_c01198{transform:matrix(0.254132,-0.004066,0.003999,0.249968,0,0);-ms-transform:matrix(0.254132,-0.004066,0.003999,0.249968,0,0);-webkit-transform:matrix(0.254132,-0.004066,0.003999,0.249968,0,0);}
.mae_c01198{transform:matrix(0.254142,-0.004066,0.003999,0.249968,0,0);-ms-transform:matrix(0.254142,-0.004066,0.003999,0.249968,0,0);-webkit-transform:matrix(0.254142,-0.004066,0.003999,0.249968,0,0);}
.m3f_c01198{transform:matrix(0.254665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254665,0.000000,0.000000,0.250000,0,0);}
.m12c_c01198{transform:matrix(0.256270,0.001538,-0.001500,0.249996,0,0);-ms-transform:matrix(0.256270,0.001538,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.256270,0.001538,-0.001500,0.249996,0,0);}
.mda_c01198{transform:matrix(0.256957,-0.004111,0.003999,0.249968,0,0);-ms-transform:matrix(0.256957,-0.004111,0.003999,0.249968,0,0);-webkit-transform:matrix(0.256957,-0.004111,0.003999,0.249968,0,0);}
.m117_c01198{transform:matrix(0.257275,-0.006432,0.006248,0.249922,0,0);-ms-transform:matrix(0.257275,-0.006432,0.006248,0.249922,0,0);-webkit-transform:matrix(0.257275,-0.006432,0.006248,0.249922,0,0);}
.me9_c01198{transform:matrix(0.259212,-0.004147,0.003999,0.249968,0,0);-ms-transform:matrix(0.259212,-0.004147,0.003999,0.249968,0,0);-webkit-transform:matrix(0.259212,-0.004147,0.003999,0.249968,0,0);}
.m3b_c01198{transform:matrix(0.260495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260495,0.000000,0.000000,0.250000,0,0);}
.maa_c01198{transform:matrix(0.262431,-0.004199,0.003999,0.249968,0,0);-ms-transform:matrix(0.262431,-0.004199,0.003999,0.249968,0,0);-webkit-transform:matrix(0.262431,-0.004199,0.003999,0.249968,0,0);}
.m78_c01198{transform:matrix(0.262893,-0.006572,0.006248,0.249922,0,0);-ms-transform:matrix(0.262893,-0.006572,0.006248,0.249922,0,0);-webkit-transform:matrix(0.262893,-0.006572,0.006248,0.249922,0,0);}
.m66_c01198{transform:matrix(0.263203,-0.006580,0.006248,0.249922,0,0);-ms-transform:matrix(0.263203,-0.006580,0.006248,0.249922,0,0);-webkit-transform:matrix(0.263203,-0.006580,0.006248,0.249922,0,0);}
.m36_c01198{transform:matrix(0.264385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264385,0.000000,0.000000,0.250000,0,0);}
.mbd_c01198{transform:matrix(0.264387,-0.004495,0.004249,0.249964,0,0);-ms-transform:matrix(0.264387,-0.004495,0.004249,0.249964,0,0);-webkit-transform:matrix(0.264387,-0.004495,0.004249,0.249964,0,0);}
.m18_c01198{transform:matrix(0.264401,-0.007403,0.006997,0.249902,0,0);-ms-transform:matrix(0.264401,-0.007403,0.006997,0.249902,0,0);-webkit-transform:matrix(0.264401,-0.007403,0.006997,0.249902,0,0);}
.m60_c01198{transform:matrix(0.264772,-0.006619,0.006248,0.249922,0,0);-ms-transform:matrix(0.264772,-0.006619,0.006248,0.249922,0,0);-webkit-transform:matrix(0.264772,-0.006619,0.006248,0.249922,0,0);}
.ma3_c01198{transform:matrix(0.265066,-0.004241,0.003999,0.249968,0,0);-ms-transform:matrix(0.265066,-0.004241,0.003999,0.249968,0,0);-webkit-transform:matrix(0.265066,-0.004241,0.003999,0.249968,0,0);}
.m39_c01198{transform:matrix(0.265565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265565,0.000000,0.000000,0.250000,0,0);}
.me5_c01198{transform:matrix(0.265886,-0.004254,0.003999,0.249968,0,0);-ms-transform:matrix(0.265886,-0.004254,0.003999,0.249968,0,0);-webkit-transform:matrix(0.265886,-0.004254,0.003999,0.249968,0,0);}
.m34_c01198{transform:matrix(0.266615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266615,0.000000,0.000000,0.250000,0,0);}
.mb9_c01198{transform:matrix(0.267046,-0.004540,0.004249,0.249964,0,0);-ms-transform:matrix(0.267046,-0.004540,0.004249,0.249964,0,0);-webkit-transform:matrix(0.267046,-0.004540,0.004249,0.249964,0,0);}
.me3_c01198{transform:matrix(0.267406,-0.004278,0.003999,0.249968,0,0);-ms-transform:matrix(0.267406,-0.004278,0.003999,0.249968,0,0);-webkit-transform:matrix(0.267406,-0.004278,0.003999,0.249968,0,0);}
.m3c_c01198{transform:matrix(0.267720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267720,0.000000,0.000000,0.250000,0,0);}
.m62_c01198{transform:matrix(0.267801,-0.006695,0.006248,0.249922,0,0);-ms-transform:matrix(0.267801,-0.006695,0.006248,0.249922,0,0);-webkit-transform:matrix(0.267801,-0.006695,0.006248,0.249922,0,0);}
.ma4_c01198{transform:matrix(0.268141,-0.004290,0.003999,0.249968,0,0);-ms-transform:matrix(0.268141,-0.004290,0.003999,0.249968,0,0);-webkit-transform:matrix(0.268141,-0.004290,0.003999,0.249968,0,0);}
.m24_c01198{transform:matrix(0.269500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269500,0.000000,0.000000,0.250000,0,0);}
.m38_c01198{transform:matrix(0.271945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271945,0.000000,0.000000,0.250000,0,0);}
.mcf_c01198{transform:matrix(0.272410,-0.004359,0.003999,0.249968,0,0);-ms-transform:matrix(0.272410,-0.004359,0.003999,0.249968,0,0);-webkit-transform:matrix(0.272410,-0.004359,0.003999,0.249968,0,0);}
.m63_c01198{transform:matrix(0.272910,-0.006823,0.006248,0.249922,0,0);-ms-transform:matrix(0.272910,-0.006823,0.006248,0.249922,0,0);-webkit-transform:matrix(0.272910,-0.006823,0.006248,0.249922,0,0);}
.mce_c01198{transform:matrix(0.273140,-0.004370,0.003999,0.249968,0,0);-ms-transform:matrix(0.273140,-0.004370,0.003999,0.249968,0,0);-webkit-transform:matrix(0.273140,-0.004370,0.003999,0.249968,0,0);}
.m65_c01198{transform:matrix(0.274114,-0.006853,0.006248,0.249922,0,0);-ms-transform:matrix(0.274114,-0.006853,0.006248,0.249922,0,0);-webkit-transform:matrix(0.274114,-0.006853,0.006248,0.249922,0,0);}
.me1_c01198{transform:matrix(0.274655,-0.004394,0.003999,0.249968,0,0);-ms-transform:matrix(0.274655,-0.004394,0.003999,0.249968,0,0);-webkit-transform:matrix(0.274655,-0.004394,0.003999,0.249968,0,0);}
.mb0_c01198{transform:matrix(0.274855,-0.004398,0.003999,0.249968,0,0);-ms-transform:matrix(0.274855,-0.004398,0.003999,0.249968,0,0);-webkit-transform:matrix(0.274855,-0.004398,0.003999,0.249968,0,0);}
.mcd_c01198{transform:matrix(0.275265,-0.004404,0.003999,0.249968,0,0);-ms-transform:matrix(0.275265,-0.004404,0.003999,0.249968,0,0);-webkit-transform:matrix(0.275265,-0.004404,0.003999,0.249968,0,0);}
.m5b_c01198{transform:matrix(0.275697,-0.006341,0.005748,0.249934,0,0);-ms-transform:matrix(0.275697,-0.006341,0.005748,0.249934,0,0);-webkit-transform:matrix(0.275697,-0.006341,0.005748,0.249934,0,0);}
.m2b_c01198{transform:matrix(0.275760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275760,0.000000,0.000000,0.250000,0,0);}
.m2d_c01198{transform:matrix(0.275825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275825,0.000000,0.000000,0.250000,0,0);}
.mbb_c01198{transform:matrix(0.276060,-0.004693,0.004249,0.249964,0,0);-ms-transform:matrix(0.276060,-0.004693,0.004249,0.249964,0,0);-webkit-transform:matrix(0.276060,-0.004693,0.004249,0.249964,0,0);}
.mcb_c01198{transform:matrix(0.276980,-0.004432,0.003999,0.249968,0,0);-ms-transform:matrix(0.276980,-0.004432,0.003999,0.249968,0,0);-webkit-transform:matrix(0.276980,-0.004432,0.003999,0.249968,0,0);}
.mcc_c01198{transform:matrix(0.277394,-0.004438,0.003999,0.249968,0,0);-ms-transform:matrix(0.277394,-0.004438,0.003999,0.249968,0,0);-webkit-transform:matrix(0.277394,-0.004438,0.003999,0.249968,0,0);}
.mea_c01198{transform:matrix(0.277814,-0.004445,0.003999,0.249968,0,0);-ms-transform:matrix(0.277814,-0.004445,0.003999,0.249968,0,0);-webkit-transform:matrix(0.277814,-0.004445,0.003999,0.249968,0,0);}
.m3d_c01198{transform:matrix(0.277895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277895,0.000000,0.000000,0.250000,0,0);}
.m68_c01198{transform:matrix(0.278913,-0.006973,0.006248,0.249922,0,0);-ms-transform:matrix(0.278913,-0.006973,0.006248,0.249922,0,0);-webkit-transform:matrix(0.278913,-0.006973,0.006248,0.249922,0,0);}
.mc8_c01198{transform:matrix(0.279834,-0.005317,0.004749,0.249955,0,0);-ms-transform:matrix(0.279834,-0.005317,0.004749,0.249955,0,0);-webkit-transform:matrix(0.279834,-0.005317,0.004749,0.249955,0,0);}
.m45_c01198{transform:matrix(0.280047,-0.006161,0.005499,0.249940,0,0);-ms-transform:matrix(0.280047,-0.006161,0.005499,0.249940,0,0);-webkit-transform:matrix(0.280047,-0.006161,0.005499,0.249940,0,0);}
.m4e_c01198{transform:matrix(0.280456,-0.006450,0.005748,0.249934,0,0);-ms-transform:matrix(0.280456,-0.006450,0.005748,0.249934,0,0);-webkit-transform:matrix(0.280456,-0.006450,0.005748,0.249934,0,0);}
.md3_c01198{transform:matrix(0.280789,-0.004493,0.003999,0.249968,0,0);-ms-transform:matrix(0.280789,-0.004493,0.003999,0.249968,0,0);-webkit-transform:matrix(0.280789,-0.004493,0.003999,0.249968,0,0);}
.m1c_c01198{transform:matrix(0.280952,-0.007024,0.006248,0.249922,0,0);-ms-transform:matrix(0.280952,-0.007024,0.006248,0.249922,0,0);-webkit-transform:matrix(0.280952,-0.007024,0.006248,0.249922,0,0);}
.m113_c01198{transform:matrix(0.282292,-0.007057,0.006248,0.249922,0,0);-ms-transform:matrix(0.282292,-0.007057,0.006248,0.249922,0,0);-webkit-transform:matrix(0.282292,-0.007057,0.006248,0.249922,0,0);}
.ma0_c01198{transform:matrix(0.282884,-0.004526,0.003999,0.249968,0,0);-ms-transform:matrix(0.282884,-0.004526,0.003999,0.249968,0,0);-webkit-transform:matrix(0.282884,-0.004526,0.003999,0.249968,0,0);}
.m111_c01198{transform:matrix(0.284605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284605,0.000000,0.000000,0.250000,0,0);}
.m9a_c01198{transform:matrix(0.284984,-0.004560,0.003999,0.249968,0,0);-ms-transform:matrix(0.284984,-0.004560,0.003999,0.249968,0,0);-webkit-transform:matrix(0.284984,-0.004560,0.003999,0.249968,0,0);}
.mbc_c01198{transform:matrix(0.285809,-0.004859,0.004249,0.249964,0,0);-ms-transform:matrix(0.285809,-0.004859,0.004249,0.249964,0,0);-webkit-transform:matrix(0.285809,-0.004859,0.004249,0.249964,0,0);}
.mbe_c01198{transform:matrix(0.286744,-0.004875,0.004249,0.249964,0,0);-ms-transform:matrix(0.286744,-0.004875,0.004249,0.249964,0,0);-webkit-transform:matrix(0.286744,-0.004875,0.004249,0.249964,0,0);}
.m97_c01198{transform:matrix(0.287148,-0.004594,0.003999,0.249968,0,0);-ms-transform:matrix(0.287148,-0.004594,0.003999,0.249968,0,0);-webkit-transform:matrix(0.287148,-0.004594,0.003999,0.249968,0,0);}
.mc2_c01198{transform:matrix(0.287618,-0.004890,0.004249,0.249964,0,0);-ms-transform:matrix(0.287618,-0.004890,0.004249,0.249964,0,0);-webkit-transform:matrix(0.287618,-0.004890,0.004249,0.249964,0,0);}
.mc1_c01198{transform:matrix(0.288098,-0.004898,0.004249,0.249964,0,0);-ms-transform:matrix(0.288098,-0.004898,0.004249,0.249964,0,0);-webkit-transform:matrix(0.288098,-0.004898,0.004249,0.249964,0,0);}
.md0_c01198{transform:matrix(0.288503,-0.004616,0.003999,0.249968,0,0);-ms-transform:matrix(0.288503,-0.004616,0.003999,0.249968,0,0);-webkit-transform:matrix(0.288503,-0.004616,0.003999,0.249968,0,0);}
.m2f_c01198{transform:matrix(0.288710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288710,0.000000,0.000000,0.250000,0,0);}
.m6e_c01198{transform:matrix(0.289410,-0.007235,0.006248,0.249922,0,0);-ms-transform:matrix(0.289410,-0.007235,0.006248,0.249922,0,0);-webkit-transform:matrix(0.289410,-0.007235,0.006248,0.249922,0,0);}
.mca_c01198{transform:matrix(0.289423,-0.004631,0.003999,0.249968,0,0);-ms-transform:matrix(0.289423,-0.004631,0.003999,0.249968,0,0);-webkit-transform:matrix(0.289423,-0.004631,0.003999,0.249968,0,0);}
.m8a_c01198{transform:matrix(0.289663,-0.004635,0.003999,0.249968,0,0);-ms-transform:matrix(0.289663,-0.004635,0.003999,0.249968,0,0);-webkit-transform:matrix(0.289663,-0.004635,0.003999,0.249968,0,0);}
.mb3_c01198{transform:matrix(0.290398,-0.004937,0.004249,0.249964,0,0);-ms-transform:matrix(0.290398,-0.004937,0.004249,0.249964,0,0);-webkit-transform:matrix(0.290398,-0.004937,0.004249,0.249964,0,0);}
.mf8_c01198{transform:matrix(0.290440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290440,0.000000,0.000000,0.250000,0,0);}
.m9d_c01198{transform:matrix(0.292348,-0.004678,0.003999,0.249968,0,0);-ms-transform:matrix(0.292348,-0.004678,0.003999,0.249968,0,0);-webkit-transform:matrix(0.292348,-0.004678,0.003999,0.249968,0,0);}
.m20_c01198{transform:matrix(0.292424,-0.007311,0.006248,0.249922,0,0);-ms-transform:matrix(0.292424,-0.007311,0.006248,0.249922,0,0);-webkit-transform:matrix(0.292424,-0.007311,0.006248,0.249922,0,0);}
.mab_c01198{transform:matrix(0.292918,-0.004687,0.003999,0.249968,0,0);-ms-transform:matrix(0.292918,-0.004687,0.003999,0.249968,0,0);-webkit-transform:matrix(0.292918,-0.004687,0.003999,0.249968,0,0);}
.mf0_c01198{transform:matrix(0.293462,-0.004695,0.003999,0.249968,0,0);-ms-transform:matrix(0.293462,-0.004695,0.003999,0.249968,0,0);-webkit-transform:matrix(0.293462,-0.004695,0.003999,0.249968,0,0);}
.mb2_c01198{transform:matrix(0.293608,-0.004991,0.004249,0.249964,0,0);-ms-transform:matrix(0.293608,-0.004991,0.004249,0.249964,0,0);-webkit-transform:matrix(0.293608,-0.004991,0.004249,0.249964,0,0);}
.mef_c01198{transform:matrix(0.293617,-0.004698,0.003999,0.249968,0,0);-ms-transform:matrix(0.293617,-0.004698,0.003999,0.249968,0,0);-webkit-transform:matrix(0.293617,-0.004698,0.003999,0.249968,0,0);}
.m2a_c01198{transform:matrix(0.293955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293955,0.000000,0.000000,0.250000,0,0);}
.mb7_c01198{transform:matrix(0.294532,-0.005007,0.004249,0.249964,0,0);-ms-transform:matrix(0.294532,-0.005007,0.004249,0.249964,0,0);-webkit-transform:matrix(0.294532,-0.005007,0.004249,0.249964,0,0);}
.m9_c01198{transform:matrix(0.294667,-0.004715,0.003999,0.249968,0,0);-ms-transform:matrix(0.294667,-0.004715,0.003999,0.249968,0,0);-webkit-transform:matrix(0.294667,-0.004715,0.003999,0.249968,0,0);}
.m83_c01198{transform:matrix(0.295427,-0.004727,0.003999,0.249968,0,0);-ms-transform:matrix(0.295427,-0.004727,0.003999,0.249968,0,0);-webkit-transform:matrix(0.295427,-0.004727,0.003999,0.249968,0,0);}
.m10e_c01198{transform:matrix(0.295465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295465,0.000000,0.000000,0.250000,0,0);}
.m43_c01198{transform:matrix(0.295578,-0.006503,0.005499,0.249940,0,0);-ms-transform:matrix(0.295578,-0.006503,0.005499,0.249940,0,0);-webkit-transform:matrix(0.295578,-0.006503,0.005499,0.249940,0,0);}
.m7b_c01198{transform:matrix(0.296045,-0.006217,0.005249,0.249945,0,0);-ms-transform:matrix(0.296045,-0.006217,0.005249,0.249945,0,0);-webkit-transform:matrix(0.296045,-0.006217,0.005249,0.249945,0,0);}
.ma6_c01198{transform:matrix(0.296197,-0.004739,0.003999,0.249968,0,0);-ms-transform:matrix(0.296197,-0.004739,0.003999,0.249968,0,0);-webkit-transform:matrix(0.296197,-0.004739,0.003999,0.249968,0,0);}
.mf6_c01198{transform:matrix(0.296870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296870,0.000000,0.000000,0.250000,0,0);}
.mc6_c01198{transform:matrix(0.297066,-0.005644,0.004749,0.249955,0,0);-ms-transform:matrix(0.297066,-0.005644,0.004749,0.249955,0,0);-webkit-transform:matrix(0.297066,-0.005644,0.004749,0.249955,0,0);}
.md1_c01198{transform:matrix(0.297507,-0.004760,0.003999,0.249968,0,0);-ms-transform:matrix(0.297507,-0.004760,0.003999,0.249968,0,0);-webkit-transform:matrix(0.297507,-0.004760,0.003999,0.249968,0,0);}
.mf2_c01198{transform:matrix(0.297557,-0.004761,0.003999,0.249968,0,0);-ms-transform:matrix(0.297557,-0.004761,0.003999,0.249968,0,0);-webkit-transform:matrix(0.297557,-0.004761,0.003999,0.249968,0,0);}
.m2c_c01198{transform:matrix(0.298440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298440,0.000000,0.000000,0.250000,0,0);}
.mc_c01198{transform:matrix(0.298837,-0.004781,0.003999,0.249968,0,0);-ms-transform:matrix(0.298837,-0.004781,0.003999,0.249968,0,0);-webkit-transform:matrix(0.298837,-0.004781,0.003999,0.249968,0,0);}
.m7d_c01198{transform:matrix(0.299049,-0.006280,0.005249,0.249945,0,0);-ms-transform:matrix(0.299049,-0.006280,0.005249,0.249945,0,0);-webkit-transform:matrix(0.299049,-0.006280,0.005249,0.249945,0,0);}
.m6a_c01198{transform:matrix(0.299371,-0.007484,0.006248,0.249922,0,0);-ms-transform:matrix(0.299371,-0.007484,0.006248,0.249922,0,0);-webkit-transform:matrix(0.299371,-0.007484,0.006248,0.249922,0,0);}
.mf5_c01198{transform:matrix(0.299722,-0.004796,0.003999,0.249968,0,0);-ms-transform:matrix(0.299722,-0.004796,0.003999,0.249968,0,0);-webkit-transform:matrix(0.299722,-0.004796,0.003999,0.249968,0,0);}
.ma8_c01198{transform:matrix(0.299747,-0.004796,0.003999,0.249968,0,0);-ms-transform:matrix(0.299747,-0.004796,0.003999,0.249968,0,0);-webkit-transform:matrix(0.299747,-0.004796,0.003999,0.249968,0,0);}
.m7a_c01198{transform:matrix(0.299759,-0.006295,0.005249,0.249945,0,0);-ms-transform:matrix(0.299759,-0.006295,0.005249,0.249945,0,0);-webkit-transform:matrix(0.299759,-0.006295,0.005249,0.249945,0,0);}
.mf3_c01198{transform:matrix(0.300247,-0.004804,0.003999,0.249968,0,0);-ms-transform:matrix(0.300247,-0.004804,0.003999,0.249968,0,0);-webkit-transform:matrix(0.300247,-0.004804,0.003999,0.249968,0,0);}
.m98_c01198{transform:matrix(0.300607,-0.004810,0.003999,0.249968,0,0);-ms-transform:matrix(0.300607,-0.004810,0.003999,0.249968,0,0);-webkit-transform:matrix(0.300607,-0.004810,0.003999,0.249968,0,0);}
.m28_c01198{transform:matrix(0.301115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301115,0.000000,0.000000,0.250000,0,0);}
.mb8_c01198{transform:matrix(0.301366,-0.005123,0.004249,0.249964,0,0);-ms-transform:matrix(0.301366,-0.005123,0.004249,0.249964,0,0);-webkit-transform:matrix(0.301366,-0.005123,0.004249,0.249964,0,0);}
.m94_c01198{transform:matrix(0.301831,-0.004829,0.003999,0.249968,0,0);-ms-transform:matrix(0.301831,-0.004829,0.003999,0.249968,0,0);-webkit-transform:matrix(0.301831,-0.004829,0.003999,0.249968,0,0);}
.m29_c01198{transform:matrix(0.302505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302505,0.000000,0.000000,0.250000,0,0);}
.mb4_c01198{transform:matrix(0.303576,-0.005161,0.004249,0.249964,0,0);-ms-transform:matrix(0.303576,-0.005161,0.004249,0.249964,0,0);-webkit-transform:matrix(0.303576,-0.005161,0.004249,0.249964,0,0);}
.m49_c01198{transform:matrix(0.303645,-0.006984,0.005748,0.249934,0,0);-ms-transform:matrix(0.303645,-0.006984,0.005748,0.249934,0,0);-webkit-transform:matrix(0.303645,-0.006984,0.005748,0.249934,0,0);}
.m107_c01198{transform:matrix(0.303725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303725,0.000000,0.000000,0.250000,0,0);}
.m9b_c01198{transform:matrix(0.305056,-0.004881,0.003999,0.249968,0,0);-ms-transform:matrix(0.305056,-0.004881,0.003999,0.249968,0,0);-webkit-transform:matrix(0.305056,-0.004881,0.003999,0.249968,0,0);}
.m7_c01198{transform:matrix(0.305901,-0.004894,0.003999,0.249968,0,0);-ms-transform:matrix(0.305901,-0.004894,0.003999,0.249968,0,0);-webkit-transform:matrix(0.305901,-0.004894,0.003999,0.249968,0,0);}
.m23_c01198{transform:matrix(0.307165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307165,0.000000,0.000000,0.250000,0,0);}
.m4c_c01198{transform:matrix(0.308238,-0.007089,0.005748,0.249934,0,0);-ms-transform:matrix(0.308238,-0.007089,0.005748,0.249934,0,0);-webkit-transform:matrix(0.308238,-0.007089,0.005748,0.249934,0,0);}
.m1d_c01198{transform:matrix(0.308913,-0.007723,0.006248,0.249922,0,0);-ms-transform:matrix(0.308913,-0.007723,0.006248,0.249922,0,0);-webkit-transform:matrix(0.308913,-0.007723,0.006248,0.249922,0,0);}
.m101_c01198{transform:matrix(0.309235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309235,0.000000,0.000000,0.250000,0,0);}
.m2e_c01198{transform:matrix(0.311160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311160,0.000000,0.000000,0.250000,0,0);}
.mc9_c01198{transform:matrix(0.311909,-0.005926,0.004749,0.249955,0,0);-ms-transform:matrix(0.311909,-0.005926,0.004749,0.249955,0,0);-webkit-transform:matrix(0.311909,-0.005926,0.004749,0.249955,0,0);}
.mc4_c01198{transform:matrix(0.312280,-0.005309,0.004249,0.249964,0,0);-ms-transform:matrix(0.312280,-0.005309,0.004249,0.249964,0,0);-webkit-transform:matrix(0.312280,-0.005309,0.004249,0.249964,0,0);}
.ma_c01198{transform:matrix(0.313170,-0.005011,0.003999,0.249968,0,0);-ms-transform:matrix(0.313170,-0.005011,0.003999,0.249968,0,0);-webkit-transform:matrix(0.313170,-0.005011,0.003999,0.249968,0,0);}
.m110_c01198{transform:matrix(0.313210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313210,0.000000,0.000000,0.250000,0,0);}
.mf1_c01198{transform:matrix(0.314730,-0.005036,0.003999,0.249968,0,0);-ms-transform:matrix(0.314730,-0.005036,0.003999,0.249968,0,0);-webkit-transform:matrix(0.314730,-0.005036,0.003999,0.249968,0,0);}
.m40_c01198{transform:matrix(0.315360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315360,0.000000,0.000000,0.250000,0,0);}
.m73_c01198{transform:matrix(0.315626,-0.007891,0.006248,0.249922,0,0);-ms-transform:matrix(0.315626,-0.007891,0.006248,0.249922,0,0);-webkit-transform:matrix(0.315626,-0.007891,0.006248,0.249922,0,0);}
.m27_c01198{transform:matrix(0.316175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316175,0.000000,0.000000,0.250000,0,0);}
.m75_c01198{transform:matrix(0.316561,-0.007914,0.006248,0.249922,0,0);-ms-transform:matrix(0.316561,-0.007914,0.006248,0.249922,0,0);-webkit-transform:matrix(0.316561,-0.007914,0.006248,0.249922,0,0);}
.m56_c01198{transform:matrix(0.317761,-0.007309,0.005748,0.249934,0,0);-ms-transform:matrix(0.317761,-0.007309,0.005748,0.249934,0,0);-webkit-transform:matrix(0.317761,-0.007309,0.005748,0.249934,0,0);}
.m6_c01198{transform:matrix(0.317804,-0.005085,0.003999,0.249968,0,0);-ms-transform:matrix(0.317804,-0.005085,0.003999,0.249968,0,0);-webkit-transform:matrix(0.317804,-0.005085,0.003999,0.249968,0,0);}
.mfa_c01198{transform:matrix(0.317845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317845,0.000000,0.000000,0.250000,0,0);}
.m70_c01198{transform:matrix(0.318990,-0.007975,0.006248,0.249922,0,0);-ms-transform:matrix(0.318990,-0.007975,0.006248,0.249922,0,0);-webkit-transform:matrix(0.318990,-0.007975,0.006248,0.249922,0,0);}
.m26_c01198{transform:matrix(0.319025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319025,0.000000,0.000000,0.250000,0,0);}
.mad_c01198{transform:matrix(0.319049,-0.005105,0.003999,0.249968,0,0);-ms-transform:matrix(0.319049,-0.005105,0.003999,0.249968,0,0);-webkit-transform:matrix(0.319049,-0.005105,0.003999,0.249968,0,0);}
.m30_c01198{transform:matrix(0.320155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320155,0.000000,0.000000,0.250000,0,0);}
.mb6_c01198{transform:matrix(0.320874,-0.005455,0.004249,0.249964,0,0);-ms-transform:matrix(0.320874,-0.005455,0.004249,0.249964,0,0);-webkit-transform:matrix(0.320874,-0.005455,0.004249,0.249964,0,0);}
.m58_c01198{transform:matrix(0.323025,-0.007430,0.005748,0.249934,0,0);-ms-transform:matrix(0.323025,-0.007430,0.005748,0.249934,0,0);-webkit-transform:matrix(0.323025,-0.007430,0.005748,0.249934,0,0);}
.m10f_c01198{transform:matrix(0.323110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323110,0.000000,0.000000,0.250000,0,0);}
.m4a_c01198{transform:matrix(0.323459,-0.007440,0.005748,0.249934,0,0);-ms-transform:matrix(0.323459,-0.007440,0.005748,0.249934,0,0);-webkit-transform:matrix(0.323459,-0.007440,0.005748,0.249934,0,0);}
.mc7_c01198{transform:matrix(0.325011,-0.006175,0.004749,0.249955,0,0);-ms-transform:matrix(0.325011,-0.006175,0.004749,0.249955,0,0);-webkit-transform:matrix(0.325011,-0.006175,0.004749,0.249955,0,0);}
.m74_c01198{transform:matrix(0.326043,-0.008151,0.006248,0.249922,0,0);-ms-transform:matrix(0.326043,-0.008151,0.006248,0.249922,0,0);-webkit-transform:matrix(0.326043,-0.008151,0.006248,0.249922,0,0);}
.m52_c01198{transform:matrix(0.327518,-0.007533,0.005748,0.249934,0,0);-ms-transform:matrix(0.327518,-0.007533,0.005748,0.249934,0,0);-webkit-transform:matrix(0.327518,-0.007533,0.005748,0.249934,0,0);}
.m8_c01198{transform:matrix(0.327563,-0.005241,0.003999,0.249968,0,0);-ms-transform:matrix(0.327563,-0.005241,0.003999,0.249968,0,0);-webkit-transform:matrix(0.327563,-0.005241,0.003999,0.249968,0,0);}
.m77_c01198{transform:matrix(0.327733,-0.008193,0.006248,0.249922,0,0);-ms-transform:matrix(0.327733,-0.008193,0.006248,0.249922,0,0);-webkit-transform:matrix(0.327733,-0.008193,0.006248,0.249922,0,0);}
.m2_c01198{transform:matrix(0.328770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328770,0.000000,0.000000,0.250000,0,0);}
.m55_c01198{transform:matrix(0.328888,-0.007564,0.005748,0.249934,0,0);-ms-transform:matrix(0.328888,-0.007564,0.005748,0.249934,0,0);-webkit-transform:matrix(0.328888,-0.007564,0.005748,0.249934,0,0);}
.m90_c01198{transform:matrix(0.328933,-0.005263,0.003999,0.249968,0,0);-ms-transform:matrix(0.328933,-0.005263,0.003999,0.249968,0,0);-webkit-transform:matrix(0.328933,-0.005263,0.003999,0.249968,0,0);}
.mff_c01198{transform:matrix(0.330340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330340,0.000000,0.000000,0.250000,0,0);}
.m6f_c01198{transform:matrix(0.331461,-0.008287,0.006248,0.249922,0,0);-ms-transform:matrix(0.331461,-0.008287,0.006248,0.249922,0,0);-webkit-transform:matrix(0.331461,-0.008287,0.006248,0.249922,0,0);}
.mb_c01198{transform:matrix(0.331998,-0.005312,0.003999,0.249968,0,0);-ms-transform:matrix(0.331998,-0.005312,0.003999,0.249968,0,0);-webkit-transform:matrix(0.331998,-0.005312,0.003999,0.249968,0,0);}
.m106_c01198{transform:matrix(0.332040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332040,0.000000,0.000000,0.250000,0,0);}
.m72_c01198{transform:matrix(0.332356,-0.008309,0.006248,0.249922,0,0);-ms-transform:matrix(0.332356,-0.008309,0.006248,0.249922,0,0);-webkit-transform:matrix(0.332356,-0.008309,0.006248,0.249922,0,0);}
.m48_c01198{transform:matrix(0.334062,-0.007683,0.005748,0.249934,0,0);-ms-transform:matrix(0.334062,-0.007683,0.005748,0.249934,0,0);-webkit-transform:matrix(0.334062,-0.007683,0.005748,0.249934,0,0);}
.m76_c01198{transform:matrix(0.336325,-0.008408,0.006248,0.249922,0,0);-ms-transform:matrix(0.336325,-0.008408,0.006248,0.249922,0,0);-webkit-transform:matrix(0.336325,-0.008408,0.006248,0.249922,0,0);}
.m84_c01198{transform:matrix(0.337042,-0.005393,0.003999,0.249968,0,0);-ms-transform:matrix(0.337042,-0.005393,0.003999,0.249968,0,0);-webkit-transform:matrix(0.337042,-0.005393,0.003999,0.249968,0,0);}
.m10d_c01198{transform:matrix(0.337085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337085,0.000000,0.000000,0.250000,0,0);}
.ma2_c01198{transform:matrix(0.337487,-0.005400,0.003999,0.249968,0,0);-ms-transform:matrix(0.337487,-0.005400,0.003999,0.249968,0,0);-webkit-transform:matrix(0.337487,-0.005400,0.003999,0.249968,0,0);}
.m100_c01198{transform:matrix(0.338380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338380,0.000000,0.000000,0.250000,0,0);}
.ma9_c01198{transform:matrix(0.340006,-0.005440,0.003999,0.249968,0,0);-ms-transform:matrix(0.340006,-0.005440,0.003999,0.249968,0,0);-webkit-transform:matrix(0.340006,-0.005440,0.003999,0.249968,0,0);}
.m96_c01198{transform:matrix(0.340856,-0.005454,0.003999,0.249968,0,0);-ms-transform:matrix(0.340856,-0.005454,0.003999,0.249968,0,0);-webkit-transform:matrix(0.340856,-0.005454,0.003999,0.249968,0,0);}
.mfe_c01198{transform:matrix(0.342055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342055,0.000000,0.000000,0.250000,0,0);}
.mac_c01198{transform:matrix(0.342066,-0.005473,0.003999,0.249968,0,0);-ms-transform:matrix(0.342066,-0.005473,0.003999,0.249968,0,0);-webkit-transform:matrix(0.342066,-0.005473,0.003999,0.249968,0,0);}
.m1_c01198{transform:matrix(0.345970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345970,0.000000,0.000000,0.250000,0,0);}
.m51_c01198{transform:matrix(0.346208,-0.007963,0.005748,0.249934,0,0);-ms-transform:matrix(0.346208,-0.007963,0.005748,0.249934,0,0);-webkit-transform:matrix(0.346208,-0.007963,0.005748,0.249934,0,0);}
.m10c_c01198{transform:matrix(0.351140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351140,0.000000,0.000000,0.250000,0,0);}
.m31_c01198{transform:matrix(0.352245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352245,0.000000,0.000000,0.250000,0,0);}
.m103_c01198{transform:matrix(0.356090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356090,0.000000,0.000000,0.250000,0,0);}
.m102_c01198{transform:matrix(0.356930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356930,0.000000,0.000000,0.250000,0,0);}
.m57_c01198{transform:matrix(0.365178,-0.008399,0.005748,0.249934,0,0);-ms-transform:matrix(0.365178,-0.008399,0.005748,0.249934,0,0);-webkit-transform:matrix(0.365178,-0.008399,0.005748,0.249934,0,0);}
.m8f_c01198{transform:matrix(0.365228,-0.005844,0.003999,0.249968,0,0);-ms-transform:matrix(0.365228,-0.005844,0.003999,0.249968,0,0);-webkit-transform:matrix(0.365228,-0.005844,0.003999,0.249968,0,0);}
.m5d_c01198{transform:matrix(0.366178,-0.008422,0.005748,0.249934,0,0);-ms-transform:matrix(0.366178,-0.008422,0.005748,0.249934,0,0);-webkit-transform:matrix(0.366178,-0.008422,0.005748,0.249934,0,0);}
.m108_c01198{transform:matrix(0.368780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368780,0.000000,0.000000,0.250000,0,0);}
.m93_c01198{transform:matrix(0.370428,-0.005927,0.003999,0.249968,0,0);-ms-transform:matrix(0.370428,-0.005927,0.003999,0.249968,0,0);-webkit-transform:matrix(0.370428,-0.005927,0.003999,0.249968,0,0);}
.md4_c01198{transform:matrix(0.373377,-0.005974,0.003999,0.249968,0,0);-ms-transform:matrix(0.373377,-0.005974,0.003999,0.249968,0,0);-webkit-transform:matrix(0.373377,-0.005974,0.003999,0.249968,0,0);}
.m89_c01198{transform:matrix(0.377972,-0.006048,0.003999,0.249968,0,0);-ms-transform:matrix(0.377972,-0.006048,0.003999,0.249968,0,0);-webkit-transform:matrix(0.377972,-0.006048,0.003999,0.249968,0,0);}
.m4f_c01198{transform:matrix(0.380029,-0.008741,0.005748,0.249934,0,0);-ms-transform:matrix(0.380029,-0.008741,0.005748,0.249934,0,0);-webkit-transform:matrix(0.380029,-0.008741,0.005748,0.249934,0,0);}
.m112_c01198{transform:matrix(0.382885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382885,0.000000,0.000000,0.250000,0,0);}
.mfc_c01198{transform:matrix(0.388975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388975,0.000000,0.000000,0.250000,0,0);}
.m5a_c01198{transform:matrix(0.389322,-0.008954,0.005748,0.249934,0,0);-ms-transform:matrix(0.389322,-0.008954,0.005748,0.249934,0,0);-webkit-transform:matrix(0.389322,-0.008954,0.005748,0.249934,0,0);}
.m86_c01198{transform:matrix(0.391745,-0.006268,0.003999,0.249968,0,0);-ms-transform:matrix(0.391745,-0.006268,0.003999,0.249968,0,0);-webkit-transform:matrix(0.391745,-0.006268,0.003999,0.249968,0,0);}
.m10a_c01198{transform:matrix(0.393730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393730,0.000000,0.000000,0.250000,0,0);}
.m7c_c01198{transform:matrix(0.402571,-0.008454,0.005249,0.249945,0,0);-ms-transform:matrix(0.402571,-0.008454,0.005249,0.249945,0,0);-webkit-transform:matrix(0.402571,-0.008454,0.005249,0.249945,0,0);}
.me6_c01198{transform:matrix(0.404988,-0.006480,0.003999,0.249968,0,0);-ms-transform:matrix(0.404988,-0.006480,0.003999,0.249968,0,0);-webkit-transform:matrix(0.404988,-0.006480,0.003999,0.249968,0,0);}
.mdd_c01198{transform:matrix(0.405613,-0.006490,0.003999,0.249968,0,0);-ms-transform:matrix(0.405613,-0.006490,0.003999,0.249968,0,0);-webkit-transform:matrix(0.405613,-0.006490,0.003999,0.249968,0,0);}
.m5e_c01198{transform:matrix(0.413896,-0.009520,0.005748,0.249934,0,0);-ms-transform:matrix(0.413896,-0.009520,0.005748,0.249934,0,0);-webkit-transform:matrix(0.413896,-0.009520,0.005748,0.249934,0,0);}
.mfb_c01198{transform:matrix(0.417730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417730,0.000000,0.000000,0.250000,0,0);}
.mf9_c01198{transform:matrix(0.418390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418390,0.000000,0.000000,0.250000,0,0);}
.m104_c01198{transform:matrix(0.432780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432780,0.000000,0.000000,0.250000,0,0);}
.m5c_c01198{transform:matrix(0.439204,-0.010102,0.005748,0.249934,0,0);-ms-transform:matrix(0.439204,-0.010102,0.005748,0.249934,0,0);-webkit-transform:matrix(0.439204,-0.010102,0.005748,0.249934,0,0);}
.m47_c01198{transform:matrix(0.441108,-0.010145,0.005748,0.249934,0,0);-ms-transform:matrix(0.441108,-0.010145,0.005748,0.249934,0,0);-webkit-transform:matrix(0.441108,-0.010145,0.005748,0.249934,0,0);}
.m3_c01198{transform:matrix(0.444158,-0.007107,0.003999,0.249968,0,0);-ms-transform:matrix(0.444158,-0.007107,0.003999,0.249968,0,0);-webkit-transform:matrix(0.444158,-0.007107,0.003999,0.249968,0,0);}
.m6d_c01198{transform:matrix(0.444426,-0.011111,0.006248,0.249922,0,0);-ms-transform:matrix(0.444426,-0.011111,0.006248,0.249922,0,0);-webkit-transform:matrix(0.444426,-0.011111,0.006248,0.249922,0,0);}
.m50_c01198{transform:matrix(0.445417,-0.010245,0.005748,0.249934,0,0);-ms-transform:matrix(0.445417,-0.010245,0.005748,0.249934,0,0);-webkit-transform:matrix(0.445417,-0.010245,0.005748,0.249934,0,0);}
.m88_c01198{transform:matrix(0.445923,-0.007135,0.003999,0.249968,0,0);-ms-transform:matrix(0.445923,-0.007135,0.003999,0.249968,0,0);-webkit-transform:matrix(0.445923,-0.007135,0.003999,0.249968,0,0);}
.m109_c01198{transform:matrix(0.448220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448220,0.000000,0.000000,0.250000,0,0);}
.m5f_c01198{transform:matrix(0.466567,-0.010731,0.005748,0.249934,0,0);-ms-transform:matrix(0.466567,-0.010731,0.005748,0.249934,0,0);-webkit-transform:matrix(0.466567,-0.010731,0.005748,0.249934,0,0);}
.m53_c01198{transform:matrix(0.467421,-0.010751,0.005748,0.249934,0,0);-ms-transform:matrix(0.467421,-0.010751,0.005748,0.249934,0,0);-webkit-transform:matrix(0.467421,-0.010751,0.005748,0.249934,0,0);}
.md_c01198{transform:matrix(0.470950,-0.007535,0.003999,0.249968,0,0);-ms-transform:matrix(0.470950,-0.007535,0.003999,0.249968,0,0);-webkit-transform:matrix(0.470950,-0.007535,0.003999,0.249968,0,0);}
.m59_c01198{transform:matrix(0.473690,-0.010895,0.005748,0.249934,0,0);-ms-transform:matrix(0.473690,-0.010895,0.005748,0.249934,0,0);-webkit-transform:matrix(0.473690,-0.010895,0.005748,0.249934,0,0);}
.m85_c01198{transform:matrix(0.484603,-0.007754,0.003999,0.249968,0,0);-ms-transform:matrix(0.484603,-0.007754,0.003999,0.249968,0,0);-webkit-transform:matrix(0.484603,-0.007754,0.003999,0.249968,0,0);}
.m4b_c01198{transform:matrix(0.491220,-0.011298,0.005748,0.249934,0,0);-ms-transform:matrix(0.491220,-0.011298,0.005748,0.249934,0,0);-webkit-transform:matrix(0.491220,-0.011298,0.005748,0.249934,0,0);}
.m8b_c01198{transform:matrix(0.509275,-0.008148,0.003999,0.249968,0,0);-ms-transform:matrix(0.509275,-0.008148,0.003999,0.249968,0,0);-webkit-transform:matrix(0.509275,-0.008148,0.003999,0.249968,0,0);}
.m46_c01198{transform:matrix(0.532519,-0.012248,0.005748,0.249934,0,0);-ms-transform:matrix(0.532519,-0.012248,0.005748,0.249934,0,0);-webkit-transform:matrix(0.532519,-0.012248,0.005748,0.249934,0,0);}
.m91_c01198{transform:matrix(0.545940,-0.008735,0.003999,0.249968,0,0);-ms-transform:matrix(0.545940,-0.008735,0.003999,0.249968,0,0);-webkit-transform:matrix(0.545940,-0.008735,0.003999,0.249968,0,0);}
.m82_c01198{transform:matrix(0.549110,-0.008786,0.003999,0.249968,0,0);-ms-transform:matrix(0.549110,-0.008786,0.003999,0.249968,0,0);-webkit-transform:matrix(0.549110,-0.008786,0.003999,0.249968,0,0);}
.m95_c01198{transform:matrix(0.552199,-0.008835,0.003999,0.249968,0,0);-ms-transform:matrix(0.552199,-0.008835,0.003999,0.249968,0,0);-webkit-transform:matrix(0.552199,-0.008835,0.003999,0.249968,0,0);}
.m8c_c01198{transform:matrix(0.553104,-0.008850,0.003999,0.249968,0,0);-ms-transform:matrix(0.553104,-0.008850,0.003999,0.249968,0,0);-webkit-transform:matrix(0.553104,-0.008850,0.003999,0.249968,0,0);}
.m81_c01198{transform:matrix(0.556549,-0.008905,0.003999,0.249968,0,0);-ms-transform:matrix(0.556549,-0.008905,0.003999,0.249968,0,0);-webkit-transform:matrix(0.556549,-0.008905,0.003999,0.249968,0,0);}
.m92_c01198{transform:matrix(0.629599,-0.010074,0.003999,0.249968,0,0);-ms-transform:matrix(0.629599,-0.010074,0.003999,0.249968,0,0);-webkit-transform:matrix(0.629599,-0.010074,0.003999,0.249968,0,0);}
.ma1_c01198{transform:matrix(0.646747,-0.010348,0.003999,0.249968,0,0);-ms-transform:matrix(0.646747,-0.010348,0.003999,0.249968,0,0);-webkit-transform:matrix(0.646747,-0.010348,0.003999,0.249968,0,0);}
.m8e_c01198{transform:matrix(0.647527,-0.010360,0.003999,0.249968,0,0);-ms-transform:matrix(0.647527,-0.010360,0.003999,0.249968,0,0);-webkit-transform:matrix(0.647527,-0.010360,0.003999,0.249968,0,0);}
.m105_c01198{transform:matrix(0.656070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.656070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.656070,0.000000,0.000000,0.250000,0,0);}
.m71_c01198{transform:matrix(0.734720,-0.018368,0.006248,0.249922,0,0);-ms-transform:matrix(0.734720,-0.018368,0.006248,0.249922,0,0);-webkit-transform:matrix(0.734720,-0.018368,0.006248,0.249922,0,0);}
.m5_c01198{transform:matrix(0.892986,-0.014288,0.003999,0.249968,0,0);-ms-transform:matrix(0.892986,-0.014288,0.003999,0.249968,0,0);-webkit-transform:matrix(0.892986,-0.014288,0.003999,0.249968,0,0);}
.m8d_c01198{transform:matrix(0.924787,-0.014797,0.003999,0.249968,0,0);-ms-transform:matrix(0.924787,-0.014797,0.003999,0.249968,0,0);-webkit-transform:matrix(0.924787,-0.014797,0.003999,0.249968,0,0);}
.m4_c01198{transform:matrix(0.935790,-0.014973,0.003999,0.249968,0,0);-ms-transform:matrix(0.935790,-0.014973,0.003999,0.249968,0,0);-webkit-transform:matrix(0.935790,-0.014973,0.003999,0.249968,0,0);}
.m54_c01198{transform:matrix(1.144522,-0.026324,0.005748,0.249934,0,0);-ms-transform:matrix(1.144522,-0.026324,0.005748,0.249934,0,0);-webkit-transform:matrix(1.144522,-0.026324,0.005748,0.249934,0,0);}
.m10b_c01198{transform:matrix(1.866040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.866040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.866040,0.000000,0.000000,0.250000,0,0);}
.m12e_c01198{transform:matrix(3.921035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.921035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.921035,0.000000,0.000000,0.250000,0,0);}
.v0_c01198{vertical-align:0.000000px;}
.ls0_c01198{letter-spacing:0.000000px;}
.sc__c01198{text-shadow:none;}
.sc0_c01198{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__c01198{-webkit-text-stroke:0px transparent;}
.sc0_c01198{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01198{word-spacing:0.000000px;}
._0_c01198{width:7.663932px;}
._3_c01198{width:12.317404px;}
._2_c01198{width:14.523543px;}
._1_c01198{width:19.416652px;}
._5_c01198{width:23.614623px;}
._4_c01198{width:32.406202px;}
.fc0_c01198{color:transparent;}
.fs11_c01198{font-size:18.000000px;}
.fs1_c01198{font-size:18.002304px;}
.fs8_c01198{font-size:18.004760px;}
.fs5_c01198{font-size:60.000000px;}
.fs10_c01198{font-size:60.010829px;}
.fsb_c01198{font-size:60.013229px;}
.fsa_c01198{font-size:60.018747px;}
.fs6_c01198{font-size:66.000000px;}
.fsd_c01198{font-size:66.008447px;}
.fsf_c01198{font-size:66.009536px;}
.fs7_c01198{font-size:66.015970px;}
.fs3_c01198{font-size:66.020622px;}
.fs4_c01198{font-size:72.000000px;}
.fse_c01198{font-size:72.009215px;}
.fs9_c01198{font-size:72.022496px;}
.fs14_c01198{font-size:78.001404px;}
.fsc_c01198{font-size:78.009983px;}
.fs12_c01198{font-size:78.024371px;}
.fs2_c01198{font-size:78.030570px;}
.fs0_c01198{font-size:102.000000px;}
.fs13_c01198{font-size:108.033745px;}
.y0_c01198{bottom:0.000000px;}
.y126_c01198{bottom:18.096000px;}
.y125_c01198{bottom:58.331214px;}
.y124_c01198{bottom:58.804290px;}
.y123_c01198{bottom:58.997043px;}
.y122_c01198{bottom:59.334012px;}
.y121_c01198{bottom:59.593194px;}
.y120_c01198{bottom:59.917131px;}
.y11f_c01198{bottom:60.654222px;}
.y11e_c01198{bottom:61.179030px;}
.y11d_c01198{bottom:61.674597px;}
.y11c_c01198{bottom:61.830000px;}
.y113_c01198{bottom:87.186300px;}
.y114_c01198{bottom:87.696150px;}
.y115_c01198{bottom:88.826100px;}
.y116_c01198{bottom:89.335950px;}
.y117_c01198{bottom:91.157962px;}
.y118_c01198{bottom:91.996988px;}
.y119_c01198{bottom:92.471625px;}
.y11a_c01198{bottom:93.163687px;}
.y11b_c01198{bottom:94.183912px;}
.y10a_c01198{bottom:130.956000px;}
.y10b_c01198{bottom:133.437187px;}
.y10c_c01198{bottom:136.143937px;}
.y10d_c01198{bottom:137.527425px;}
.y10e_c01198{bottom:140.019075px;}
.y10f_c01198{bottom:143.620425px;}
.y110_c01198{bottom:144.149137px;}
.y111_c01198{bottom:146.361938px;}
.y112_c01198{bottom:148.849388px;}
.yfd_c01198{bottom:175.770000px;}
.yfe_c01198{bottom:176.397000px;}
.yff_c01198{bottom:176.983500px;}
.y100_c01198{bottom:177.129000px;}
.y101_c01198{bottom:177.315000px;}
.y102_c01198{bottom:177.481500px;}
.y103_c01198{bottom:177.610500px;}
.y104_c01198{bottom:177.784500px;}
.y105_c01198{bottom:178.108500px;}
.y106_c01198{bottom:178.315500px;}
.y107_c01198{bottom:178.470000px;}
.y108_c01198{bottom:178.599000px;}
.y109_c01198{bottom:178.773000px;}
.yfc_c01198{bottom:180.865500px;}
.yfb_c01198{bottom:192.126000px;}
.yf2_c01198{bottom:238.932204px;}
.yf3_c01198{bottom:239.025252px;}
.yf4_c01198{bottom:239.868180px;}
.yf5_c01198{bottom:240.845700px;}
.yf6_c01198{bottom:242.045364px;}
.yf7_c01198{bottom:243.984156px;}
.yf8_c01198{bottom:244.834320px;}
.yf9_c01198{bottom:245.703840px;}
.yfa_c01198{bottom:246.065976px;}
.yeb_c01198{bottom:275.388000px;}
.yec_c01198{bottom:276.688992px;}
.yed_c01198{bottom:277.645920px;}
.yee_c01198{bottom:278.973168px;}
.yef_c01198{bottom:279.977100px;}
.yf0_c01198{bottom:281.630232px;}
.yf1_c01198{bottom:282.113268px;}
.ye2_c01198{bottom:310.222140px;}
.ye3_c01198{bottom:311.609988px;}
.ye4_c01198{bottom:312.638700px;}
.ye5_c01198{bottom:313.342836px;}
.ye6_c01198{bottom:314.047332px;}
.ye7_c01198{bottom:315.304284px;}
.ye8_c01198{bottom:315.844620px;}
.ye9_c01198{bottom:316.906452px;}
.yea_c01198{bottom:317.249004px;}
.yd9_c01198{bottom:343.709112px;}
.yda_c01198{bottom:345.240516px;}
.ydb_c01198{bottom:346.437192px;}
.ydc_c01198{bottom:347.035392px;}
.ydd_c01198{bottom:348.229632px;}
.yde_c01198{bottom:349.440360px;}
.ydf_c01198{bottom:350.417160px;}
.ye0_c01198{bottom:352.603920px;}
.ye1_c01198{bottom:353.216124px;}
.ycf_c01198{bottom:379.353000px;}
.yd0_c01198{bottom:381.098952px;}
.yd1_c01198{bottom:382.313616px;}
.yd2_c01198{bottom:383.207736px;}
.yd3_c01198{bottom:384.469368px;}
.yd4_c01198{bottom:385.307352px;}
.yd5_c01198{bottom:386.016096px;}
.yd6_c01198{bottom:387.078816px;}
.yd7_c01198{bottom:388.356816px;}
.yd8_c01198{bottom:388.677624px;}
.ycb_c01198{bottom:416.071500px;}
.ycc_c01198{bottom:416.829286px;}
.ycd_c01198{bottom:418.311486px;}
.yce_c01198{bottom:418.917111px;}
.ybe_c01198{bottom:451.708336px;}
.ybf_c01198{bottom:452.518566px;}
.yc0_c01198{bottom:453.001730px;}
.yc1_c01198{bottom:453.391476px;}
.yc2_c01198{bottom:454.498413px;}
.yc3_c01198{bottom:454.823107px;}
.yc4_c01198{bottom:455.985988px;}
.yc5_c01198{bottom:456.467775px;}
.yc6_c01198{bottom:456.990962px;}
.yc7_c01198{bottom:458.151471px;}
.yc8_c01198{bottom:458.652489px;}
.yc9_c01198{bottom:459.122363px;}
.yca_c01198{bottom:461.134965px;}
.yb6_c01198{bottom:485.445000px;}
.yb7_c01198{bottom:486.936546px;}
.yb8_c01198{bottom:488.406137px;}
.yb9_c01198{bottom:489.916425px;}
.yba_c01198{bottom:491.999291px;}
.ybb_c01198{bottom:492.243861px;}
.ybc_c01198{bottom:493.878054px;}
.ybd_c01198{bottom:495.746388px;}
.yb3_c01198{bottom:522.720780px;}
.yb4_c01198{bottom:524.377440px;}
.yb5_c01198{bottom:525.082584px;}
.ya8_c01198{bottom:558.359964px;}
.ya9_c01198{bottom:559.655040px;}
.yaa_c01198{bottom:560.577528px;}
.yab_c01198{bottom:561.128928px;}
.yac_c01198{bottom:562.817616px;}
.yad_c01198{bottom:563.369304px;}
.yae_c01198{bottom:564.916644px;}
.yaf_c01198{bottom:566.395068px;}
.yb0_c01198{bottom:567.152916px;}
.yb1_c01198{bottom:568.483836px;}
.yb2_c01198{bottom:569.296668px;}
.y9c_c01198{bottom:593.193000px;}
.y9d_c01198{bottom:594.927576px;}
.y9e_c01198{bottom:596.507520px;}
.y9f_c01198{bottom:597.043272px;}
.ya0_c01198{bottom:598.447584px;}
.ya1_c01198{bottom:600.416640px;}
.ya2_c01198{bottom:600.758904px;}
.ya3_c01198{bottom:602.180352px;}
.ya4_c01198{bottom:602.716176px;}
.ya5_c01198{bottom:603.234576px;}
.ya6_c01198{bottom:604.470360px;}
.ya7_c01198{bottom:605.186112px;}
.y90_c01198{bottom:634.770348px;}
.y91_c01198{bottom:635.206272px;}
.y92_c01198{bottom:635.848620px;}
.y93_c01198{bottom:636.147444px;}
.y94_c01198{bottom:636.349572px;}
.y95_c01198{bottom:636.483216px;}
.y96_c01198{bottom:636.844704px;}
.y97_c01198{bottom:637.267668px;}
.y98_c01198{bottom:637.423668px;}
.y99_c01198{bottom:637.611264px;}
.y9a_c01198{bottom:637.910544px;}
.y9b_c01198{bottom:638.167440px;}
.y81_c01198{bottom:638.280000px;}
.y82_c01198{bottom:638.574888px;}
.y83_c01198{bottom:638.889096px;}
.y84_c01198{bottom:639.027312px;}
.y85_c01198{bottom:639.179592px;}
.y86_c01198{bottom:639.611544px;}
.y87_c01198{bottom:639.892320px;}
.y88_c01198{bottom:640.065096px;}
.y89_c01198{bottom:640.561824px;}
.y8a_c01198{bottom:640.842096px;}
.y8b_c01198{bottom:640.950576px;}
.y8c_c01198{bottom:641.179512px;}
.y8d_c01198{bottom:641.351808px;}
.y8e_c01198{bottom:641.546256px;}
.y8f_c01198{bottom:641.663016px;}
.y7e_c01198{bottom:650.163000px;}
.y7f_c01198{bottom:651.747696px;}
.y80_c01198{bottom:652.276536px;}
.y7a_c01198{bottom:699.036000px;}
.y7b_c01198{bottom:700.378656px;}
.y7c_c01198{bottom:701.338713px;}
.y7d_c01198{bottom:702.716680px;}
.y71_c01198{bottom:732.764137px;}
.y72_c01198{bottom:734.472863px;}
.y73_c01198{bottom:736.725712px;}
.y74_c01198{bottom:738.433875px;}
.y75_c01198{bottom:740.421263px;}
.y76_c01198{bottom:742.252462px;}
.y77_c01198{bottom:744.893738px;}
.y78_c01198{bottom:746.843288px;}
.y79_c01198{bottom:747.371025px;}
.y69_c01198{bottom:769.764337px;}
.y6a_c01198{bottom:770.231437px;}
.y6b_c01198{bottom:772.874438px;}
.y6c_c01198{bottom:773.623163px;}
.y6d_c01198{bottom:774.307275px;}
.y6e_c01198{bottom:775.817925px;}
.y6f_c01198{bottom:776.488387px;}
.y70_c01198{bottom:778.205250px;}
.y60_c01198{bottom:799.479000px;}
.y61_c01198{bottom:802.214100px;}
.y62_c01198{bottom:803.829038px;}
.y63_c01198{bottom:806.367750px;}
.y64_c01198{bottom:809.371050px;}
.y65_c01198{bottom:810.175237px;}
.y66_c01198{bottom:812.429700px;}
.y67_c01198{bottom:814.346625px;}
.y68_c01198{bottom:815.171550px;}
.y52_c01198{bottom:847.260088px;}
.y53_c01198{bottom:848.455362px;}
.y54_c01198{bottom:848.698491px;}
.y55_c01198{bottom:848.975842px;}
.y56_c01198{bottom:849.570288px;}
.y57_c01198{bottom:850.038451px;}
.y58_c01198{bottom:850.353855px;}
.y59_c01198{bottom:850.631344px;}
.y5a_c01198{bottom:850.948611px;}
.y42_c01198{bottom:851.040000px;}
.y5b_c01198{bottom:851.151514px;}
.y5c_c01198{bottom:851.409667px;}
.y43_c01198{bottom:851.434128px;}
.y5d_c01198{bottom:851.692918px;}
.y44_c01198{bottom:851.819044px;}
.y5e_c01198{bottom:851.969959px;}
.y45_c01198{bottom:852.089800px;}
.y5f_c01198{bottom:852.247000px;}
.y46_c01198{bottom:852.328161px;}
.y47_c01198{bottom:852.586773px;}
.y48_c01198{bottom:853.097994px;}
.y49_c01198{bottom:853.340115px;}
.y4a_c01198{bottom:853.594656px;}
.y4b_c01198{bottom:853.886457px;}
.y4c_c01198{bottom:854.109948px;}
.y4d_c01198{bottom:854.364489px;}
.y4e_c01198{bottom:854.686339px;}
.y4f_c01198{bottom:854.941018px;}
.y50_c01198{bottom:855.121902px;}
.y51_c01198{bottom:855.376443px;}
.y3f_c01198{bottom:862.656000px;}
.y40_c01198{bottom:864.840732px;}
.y41_c01198{bottom:865.543302px;}
.y3c_c01198{bottom:910.831500px;}
.y3d_c01198{bottom:914.623500px;}
.y3e_c01198{bottom:921.886500px;}
.y32_c01198{bottom:943.653000px;}
.y33_c01198{bottom:945.939000px;}
.y34_c01198{bottom:947.101500px;}
.y35_c01198{bottom:949.198500px;}
.y36_c01198{bottom:951.046500px;}
.y37_c01198{bottom:951.756000px;}
.y38_c01198{bottom:953.355000px;}
.y39_c01198{bottom:954.966000px;}
.y3a_c01198{bottom:957.307500px;}
.y3b_c01198{bottom:958.350000px;}
.y2e_c01198{bottom:980.914500px;}
.y2f_c01198{bottom:982.450500px;}
.y30_c01198{bottom:983.223000px;}
.y31_c01198{bottom:989.901000px;}
.y22_c01198{bottom:1010.349000px;}
.y23_c01198{bottom:1013.103000px;}
.y24_c01198{bottom:1015.269000px;}
.y25_c01198{bottom:1016.659500px;}
.y26_c01198{bottom:1018.576500px;}
.y27_c01198{bottom:1020.270000px;}
.y28_c01198{bottom:1021.356000px;}
.y29_c01198{bottom:1022.764500px;}
.y2a_c01198{bottom:1023.273000px;}
.y2b_c01198{bottom:1025.217000px;}
.y2c_c01198{bottom:1026.336000px;}
.y2d_c01198{bottom:1028.530500px;}
.y21_c01198{bottom:1050.606000px;}
.y18_c01198{bottom:1086.757500px;}
.y19_c01198{bottom:1087.561162px;}
.y1a_c01198{bottom:1088.372100px;}
.y1b_c01198{bottom:1089.176287px;}
.y1c_c01198{bottom:1090.581525px;}
.y1d_c01198{bottom:1094.234663px;}
.y1e_c01198{bottom:1095.265238px;}
.y1f_c01198{bottom:1096.068900px;}
.y20_c01198{bottom:1099.422000px;}
.yd_c01198{bottom:1115.112000px;}
.ye_c01198{bottom:1117.549176px;}
.yf_c01198{bottom:1120.286736px;}
.y10_c01198{bottom:1121.836368px;}
.y11_c01198{bottom:1123.107204px;}
.y12_c01198{bottom:1124.639238px;}
.y13_c01198{bottom:1127.393976px;}
.y14_c01198{bottom:1128.354558px;}
.y15_c01198{bottom:1129.270452px;}
.y16_c01198{bottom:1131.807294px;}
.y17_c01198{bottom:1132.370766px;}
.y2_c01198{bottom:1169.370000px;}
.y3_c01198{bottom:1169.732904px;}
.y4_c01198{bottom:1170.320496px;}
.y5_c01198{bottom:1170.670440px;}
.y6_c01198{bottom:1170.843144px;}
.y7_c01198{bottom:1171.024704px;}
.y8_c01198{bottom:1171.206048px;}
.y9_c01198{bottom:1171.556064px;}
.ya_c01198{bottom:1171.711632px;}
.yb_c01198{bottom:1172.256024px;}
.yc_c01198{bottom:1172.575800px;}
.y1_c01198{bottom:1234.303500px;}
.h15_c01198{height:18.000000px;}
.h3_c01198{height:18.002304px;}
.ha_c01198{height:18.004760px;}
.hc_c01198{height:18.070778px;}
.hb_c01198{height:18.094784px;}
.h16_c01198{height:18.792000px;}
.h7_c01198{height:60.000000px;}
.h14_c01198{height:60.010829px;}
.hf_c01198{height:60.013229px;}
.he_c01198{height:60.018747px;}
.h8_c01198{height:66.000000px;}
.h11_c01198{height:66.008447px;}
.h13_c01198{height:66.009536px;}
.h9_c01198{height:66.015970px;}
.h5_c01198{height:66.020622px;}
.h6_c01198{height:72.000000px;}
.h12_c01198{height:72.009215px;}
.hd_c01198{height:72.022496px;}
.h19_c01198{height:78.001404px;}
.h10_c01198{height:78.009983px;}
.h17_c01198{height:78.024371px;}
.h4_c01198{height:78.030570px;}
.h2_c01198{height:102.000000px;}
.h18_c01198{height:108.033745px;}
.h1_c01198{height:1258.500000px;}
.h0_c01198{height:1258.740000px;}
.w0_c01198{width:904.200000px;}
.w1_c01198{width:904.500000px;}
.x0_c01198{left:0.000000px;}
.xf_c01198{left:101.155500px;}
.x26_c01198{left:102.735000px;}
.x35_c01198{left:104.203500px;}
.x59_c01198{left:108.100500px;}
.x7b_c01198{left:113.293500px;}
.x9e_c01198{left:118.698000px;}
.xc2_c01198{left:126.325500px;}
.xca_c01198{left:129.864000px;}
.x64_c01198{left:132.247912px;}
.x8d_c01198{left:137.398500px;}
.xa4_c01198{left:142.468740px;}
.xad_c01198{left:144.555132px;}
.xb3_c01198{left:145.620048px;}
.xb4_c01198{left:154.061220px;}
.xcb_c01198{left:155.764500px;}
.x10_c01198{left:188.197500px;}
.x1a_c01198{left:211.437000px;}
.x27_c01198{left:212.914500px;}
.x31_c01198{left:214.701000px;}
.x3e_c01198{left:216.042000px;}
.x5a_c01198{left:217.504500px;}
.x5f_c01198{left:219.746137px;}
.x6a_c01198{left:221.149500px;}
.x84_c01198{left:225.158316px;}
.x93_c01198{left:227.282327px;}
.x9b_c01198{left:229.867500px;}
.xae_c01198{left:231.306024px;}
.xc7_c01198{left:235.319137px;}
.xcc_c01198{left:238.359000px;}
.x60_c01198{left:240.951712px;}
.x1b_c01198{left:243.583500px;}
.x36_c01198{left:268.438500px;}
.x9c_c01198{left:269.751000px;}
.x1c_c01198{left:276.021000px;}
.x32_c01198{left:278.700000px;}
.x5b_c01198{left:282.102000px;}
.x11_c01198{left:285.967500px;}
.xa5_c01198{left:294.031392px;}
.xaf_c01198{left:295.052532px;}
.x28_c01198{left:299.584500px;}
.x85_c01198{left:301.318092px;}
.x9f_c01198{left:303.736500px;}
.x1d_c01198{left:308.188500px;}
.x33_c01198{left:310.882500px;}
.x94_c01198{left:313.514259px;}
.x7c_c01198{left:320.451000px;}
.xcd_c01198{left:325.827000px;}
.xa6_c01198{left:327.292836px;}
.x65_c01198{left:330.275625px;}
.x8c_c01198{left:333.163260px;}
.xaa_c01198{left:338.268588px;}
.x95_c01198{left:339.529652px;}
.x12_c01198{left:341.311500px;}
.xc8_c01198{left:344.678475px;}
.x9d_c01198{left:347.761500px;}
.x7d_c01198{left:353.935500px;}
.x29_c01198{left:355.183500px;}
.xa0_c01198{left:359.619000px;}
.x4_c01198{left:361.555500px;}
.x1e_c01198{left:364.398000px;}
.x37_c01198{left:368.317500px;}
.xc9_c01198{left:378.700987px;}
.x43_c01198{left:380.191500px;}
.x40_c01198{left:381.249000px;}
.xab_c01198{left:382.299588px;}
.x5_c01198{left:384.237000px;}
.x13_c01198{left:386.698500px;}
.x86_c01198{left:387.997200px;}
.xc3_c01198{left:389.182500px;}
.xa7_c01198{left:393.680724px;}
.x61_c01198{left:395.112262px;}
.x3f_c01198{left:396.583500px;}
.x8e_c01198{left:400.423500px;}
.x1_c01198{left:402.840000px;}
.x44_c01198{left:414.063000px;}
.x66_c01198{left:415.652775px;}
.xb8_c01198{left:419.850000px;}
.x6_c01198{left:420.961500px;}
.x74_c01198{left:422.322372px;}
.x2_c01198{left:423.900000px;}
.x45_c01198{left:425.835000px;}
.x51_c01198{left:428.270335px;}
.x2a_c01198{left:431.877000px;}
.x6d_c01198{left:434.193000px;}
.x46_c01198{left:436.198500px;}
.x52_c01198{left:437.992887px;}
.x14_c01198{left:441.414000px;}
.x7_c01198{left:442.833000px;}
.x47_c01198{left:447.442500px;}
.x53_c01198{left:449.072870px;}
.xb0_c01198{left:450.597552px;}
.x6e_c01198{left:452.349000px;}
.x8_c01198{left:453.627000px;}
.x38_c01198{left:456.327000px;}
.x75_c01198{left:460.124772px;}
.xbc_c01198{left:461.731500px;}
.x9_c01198{left:464.974500px;}
.x48_c01198{left:469.669500px;}
.x3_c01198{left:473.040000px;}
.xa_c01198{left:476.308500px;}
.x76_c01198{left:477.675984px;}
.x6f_c01198{left:479.346000px;}
.x41_c01198{left:480.555000px;}
.x87_c01198{left:487.351116px;}
.xc4_c01198{left:488.848500px;}
.x39_c01198{left:490.090500px;}
.x49_c01198{left:491.263500px;}
.x62_c01198{left:494.850225px;}
.x6b_c01198{left:496.425000px;}
.xb_c01198{left:498.184500px;}
.x2b_c01198{left:499.638000px;}
.xbd_c01198{left:500.881500px;}
.xce_c01198{left:502.665000px;}
.x4a_c01198{left:503.950500px;}
.xc_c01198{left:507.907500px;}
.x1f_c01198{left:510.523500px;}
.x42_c01198{left:512.490000px;}
.x4b_c01198{left:513.667500px;}
.x54_c01198{left:515.243799px;}
.x77_c01198{left:518.722836px;}
.x88_c01198{left:519.768588px;}
.x8f_c01198{left:522.945000px;}
.x4c_c01198{left:524.734500px;}
.x55_c01198{left:527.928712px;}
.x6c_c01198{left:529.477500px;}
.xbe_c01198{left:534.088500px;}
.x56_c01198{left:536.032833px;}
.x90_c01198{left:537.331500px;}
.x4d_c01198{left:538.728000px;}
.x15_c01198{left:539.797500px;}
.xd_c01198{left:541.932000px;}
.x2c_c01198{left:543.108000px;}
.x96_c01198{left:544.583613px;}
.x57_c01198{left:546.343350px;}
.x4e_c01198{left:549.801000px;}
.x20_c01198{left:551.746500px;}
.x78_c01198{left:552.751284px;}
.xbf_c01198{left:554.341500px;}
.x70_c01198{left:556.255500px;}
.x4f_c01198{left:557.665500px;}
.xb1_c01198{left:560.763804px;}
.xe_c01198{left:561.918000px;}
.x71_c01198{left:563.035500px;}
.x7e_c01198{left:564.771000px;}
.x3a_c01198{left:566.236500px;}
.x50_c01198{left:568.732500px;}
.xb9_c01198{left:571.050000px;}
.x16_c01198{left:574.104000px;}
.xc0_c01198{left:575.937000px;}
.x72_c01198{left:577.344000px;}
.x58_c01198{left:579.812797px;}
.x79_c01198{left:581.399328px;}
.xac_c01198{left:582.404088px;}
.x21_c01198{left:583.893000px;}
.x7f_c01198{left:586.162500px;}
.x73_c01198{left:588.112500px;}
.x34_c01198{left:589.134000px;}
.xb2_c01198{left:592.922808px;}
.x7a_c01198{left:596.517588px;}
.x2d_c01198{left:599.436000px;}
.xa1_c01198{left:601.561500px;}
.x63_c01198{left:603.371363px;}
.xb5_c01198{left:605.028816px;}
.x17_c01198{left:606.814500px;}
.xc1_c01198{left:608.604000px;}
.x89_c01198{left:610.757124px;}
.x2e_c01198{left:619.795500px;}
.xba_c01198{left:621.540000px;}
.x5c_c01198{left:626.128500px;}
.xbb_c01198{left:630.450000px;}
.x91_c01198{left:633.460500px;}
.xa8_c01198{left:636.690948px;}
.x3b_c01198{left:642.933000px;}
.xc5_c01198{left:654.051000px;}
.x97_c01198{left:656.775413px;}
.xa9_c01198{left:670.733868px;}
.x80_c01198{left:675.003000px;}
.xa2_c01198{left:681.436500px;}
.x22_c01198{left:684.450000px;}
.x98_c01198{left:690.130535px;}
.x18_c01198{left:697.416000px;}
.xa3_c01198{left:701.487000px;}
.x5d_c01198{left:702.805500px;}
.x81_c01198{left:708.492000px;}
.xcf_c01198{left:712.995000px;}
.x19_c01198{left:717.540000px;}
.x23_c01198{left:719.280000px;}
.x99_c01198{left:721.477105px;}
.xd0_c01198{left:731.970000px;}
.x5e_c01198{left:735.802500px;}
.x67_c01198{left:738.647625px;}
.x82_c01198{left:740.892000px;}
.x2f_c01198{left:742.312500px;}
.x92_c01198{left:743.362500px;}
.x24_c01198{left:752.220000px;}
.x3c_c01198{left:754.450500px;}
.xb6_c01198{left:761.365320px;}
.xb7_c01198{left:794.313960px;}
.x3d_c01198{left:804.085500px;}
.x83_c01198{left:818.128500px;}
.x8a_c01198{left:820.578264px;}
.x25_c01198{left:827.820000px;}
.x30_c01198{left:830.082000px;}
.x68_c01198{left:836.141813px;}
.xc6_c01198{left:842.061000px;}
.x9a_c01198{left:855.664170px;}
.x69_c01198{left:862.534613px;}
.x8b_c01198{left:868.379496px;}
@media print{
.v0_c01198{vertical-align:0.000000pt;}
.ls0_c01198{letter-spacing:0.000000pt;}
.ws0_c01198{word-spacing:0.000000pt;}
._0_c01198{width:6.812384pt;}
._3_c01198{width:10.948803pt;}
._2_c01198{width:12.909816pt;}
._1_c01198{width:17.259246pt;}
._5_c01198{width:20.990776pt;}
._4_c01198{width:28.805513pt;}
.fs11_c01198{font-size:16.000000pt;}
.fs1_c01198{font-size:16.002048pt;}
.fs8_c01198{font-size:16.004231pt;}
.fs5_c01198{font-size:53.333333pt;}
.fs10_c01198{font-size:53.342959pt;}
.fsb_c01198{font-size:53.345092pt;}
.fsa_c01198{font-size:53.349997pt;}
.fs6_c01198{font-size:58.666667pt;}
.fsd_c01198{font-size:58.674176pt;}
.fsf_c01198{font-size:58.675143pt;}
.fs7_c01198{font-size:58.680862pt;}
.fs3_c01198{font-size:58.684997pt;}
.fs4_c01198{font-size:64.000000pt;}
.fse_c01198{font-size:64.008191pt;}
.fs9_c01198{font-size:64.019997pt;}
.fs14_c01198{font-size:69.334581pt;}
.fsc_c01198{font-size:69.342207pt;}
.fs12_c01198{font-size:69.354997pt;}
.fs2_c01198{font-size:69.360507pt;}
.fs0_c01198{font-size:90.666667pt;}
.fs13_c01198{font-size:96.029995pt;}
.y0_c01198{bottom:0.000000pt;}
.y126_c01198{bottom:16.085333pt;}
.y125_c01198{bottom:51.849968pt;}
.y124_c01198{bottom:52.270480pt;}
.y123_c01198{bottom:52.441816pt;}
.y122_c01198{bottom:52.741344pt;}
.y121_c01198{bottom:52.971728pt;}
.y120_c01198{bottom:53.259672pt;}
.y11f_c01198{bottom:53.914864pt;}
.y11e_c01198{bottom:54.381360pt;}
.y11d_c01198{bottom:54.821864pt;}
.y11c_c01198{bottom:54.960000pt;}
.y113_c01198{bottom:77.498933pt;}
.y114_c01198{bottom:77.952133pt;}
.y115_c01198{bottom:78.956533pt;}
.y116_c01198{bottom:79.409733pt;}
.y117_c01198{bottom:81.029300pt;}
.y118_c01198{bottom:81.775100pt;}
.y119_c01198{bottom:82.197000pt;}
.y11a_c01198{bottom:82.812167pt;}
.y11b_c01198{bottom:83.719033pt;}
.y10a_c01198{bottom:116.405333pt;}
.y10b_c01198{bottom:118.610833pt;}
.y10c_c01198{bottom:121.016833pt;}
.y10d_c01198{bottom:122.246600pt;}
.y10e_c01198{bottom:124.461400pt;}
.y10f_c01198{bottom:127.662600pt;}
.y110_c01198{bottom:128.132567pt;}
.y111_c01198{bottom:130.099500pt;}
.y112_c01198{bottom:132.310567pt;}
.yfd_c01198{bottom:156.240000pt;}
.yfe_c01198{bottom:156.797333pt;}
.yff_c01198{bottom:157.318667pt;}
.y100_c01198{bottom:157.448000pt;}
.y101_c01198{bottom:157.613333pt;}
.y102_c01198{bottom:157.761333pt;}
.y103_c01198{bottom:157.876000pt;}
.y104_c01198{bottom:158.030667pt;}
.y105_c01198{bottom:158.318667pt;}
.y106_c01198{bottom:158.502667pt;}
.y107_c01198{bottom:158.640000pt;}
.y108_c01198{bottom:158.754667pt;}
.y109_c01198{bottom:158.909333pt;}
.yfc_c01198{bottom:160.769333pt;}
.yfb_c01198{bottom:170.778667pt;}
.yf2_c01198{bottom:212.384181pt;}
.yf3_c01198{bottom:212.466891pt;}
.yf4_c01198{bottom:213.216160pt;}
.yf5_c01198{bottom:214.085067pt;}
.yf6_c01198{bottom:215.151435pt;}
.yf7_c01198{bottom:216.874805pt;}
.yf8_c01198{bottom:217.630507pt;}
.yf9_c01198{bottom:218.403413pt;}
.yfa_c01198{bottom:218.725312pt;}
.yeb_c01198{bottom:244.789333pt;}
.yec_c01198{bottom:245.945771pt;}
.yed_c01198{bottom:246.796373pt;}
.yee_c01198{bottom:247.976149pt;}
.yef_c01198{bottom:248.868533pt;}
.yf0_c01198{bottom:250.337984pt;}
.yf1_c01198{bottom:250.767349pt;}
.ye2_c01198{bottom:275.753013pt;}
.ye3_c01198{bottom:276.986656pt;}
.ye4_c01198{bottom:277.901067pt;}
.ye5_c01198{bottom:278.526965pt;}
.ye6_c01198{bottom:279.153184pt;}
.ye7_c01198{bottom:280.270475pt;}
.ye8_c01198{bottom:280.750773pt;}
.ye9_c01198{bottom:281.694624pt;}
.yea_c01198{bottom:281.999115pt;}
.yd9_c01198{bottom:305.519211pt;}
.yda_c01198{bottom:306.880459pt;}
.ydb_c01198{bottom:307.944171pt;}
.ydc_c01198{bottom:308.475904pt;}
.ydd_c01198{bottom:309.537451pt;}
.yde_c01198{bottom:310.613653pt;}
.ydf_c01198{bottom:311.481920pt;}
.ye0_c01198{bottom:313.425707pt;}
.ye1_c01198{bottom:313.969888pt;}
.ycf_c01198{bottom:337.202667pt;}
.yd0_c01198{bottom:338.754624pt;}
.yd1_c01198{bottom:339.834325pt;}
.yd2_c01198{bottom:340.629099pt;}
.yd3_c01198{bottom:341.750549pt;}
.yd4_c01198{bottom:342.495424pt;}
.yd5_c01198{bottom:343.125419pt;}
.yd6_c01198{bottom:344.070059pt;}
.yd7_c01198{bottom:345.206059pt;}
.yd8_c01198{bottom:345.491221pt;}
.ycb_c01198{bottom:369.841333pt;}
.ycc_c01198{bottom:370.514921pt;}
.ycd_c01198{bottom:371.832432pt;}
.yce_c01198{bottom:372.370765pt;}
.ybe_c01198{bottom:401.518521pt;}
.ybf_c01198{bottom:402.238725pt;}
.yc0_c01198{bottom:402.668204pt;}
.yc1_c01198{bottom:403.014645pt;}
.yc2_c01198{bottom:403.998589pt;}
.yc3_c01198{bottom:404.287207pt;}
.yc4_c01198{bottom:405.320879pt;}
.yc5_c01198{bottom:405.749133pt;}
.yc6_c01198{bottom:406.214188pt;}
.yc7_c01198{bottom:407.245752pt;}
.yc8_c01198{bottom:407.691101pt;}
.yc9_c01198{bottom:408.108767pt;}
.yca_c01198{bottom:409.897747pt;}
.yb6_c01198{bottom:431.506667pt;}
.yb7_c01198{bottom:432.832485pt;}
.yb8_c01198{bottom:434.138788pt;}
.yb9_c01198{bottom:435.481267pt;}
.yba_c01198{bottom:437.332703pt;}
.ybb_c01198{bottom:437.550099pt;}
.ybc_c01198{bottom:439.002715pt;}
.ybd_c01198{bottom:440.663456pt;}
.yb3_c01198{bottom:464.640693pt;}
.yb4_c01198{bottom:466.113280pt;}
.yb5_c01198{bottom:466.740075pt;}
.ya8_c01198{bottom:496.319968pt;}
.ya9_c01198{bottom:497.471147pt;}
.yaa_c01198{bottom:498.291136pt;}
.yab_c01198{bottom:498.781269pt;}
.yac_c01198{bottom:500.282325pt;}
.yad_c01198{bottom:500.772715pt;}
.yae_c01198{bottom:502.148128pt;}
.yaf_c01198{bottom:503.462283pt;}
.yb0_c01198{bottom:504.135925pt;}
.yb1_c01198{bottom:505.318965pt;}
.yb2_c01198{bottom:506.041483pt;}
.y9c_c01198{bottom:527.282667pt;}
.y9d_c01198{bottom:528.824512pt;}
.y9e_c01198{bottom:530.228907pt;}
.y9f_c01198{bottom:530.705131pt;}
.ya0_c01198{bottom:531.953408pt;}
.ya1_c01198{bottom:533.703680pt;}
.ya2_c01198{bottom:534.007915pt;}
.ya3_c01198{bottom:535.271424pt;}
.ya4_c01198{bottom:535.747712pt;}
.ya5_c01198{bottom:536.208512pt;}
.ya6_c01198{bottom:537.306987pt;}
.ya7_c01198{bottom:537.943211pt;}
.y90_c01198{bottom:564.240309pt;}
.y91_c01198{bottom:564.627797pt;}
.y92_c01198{bottom:565.198773pt;}
.y93_c01198{bottom:565.464395pt;}
.y94_c01198{bottom:565.644064pt;}
.y95_c01198{bottom:565.762859pt;}
.y96_c01198{bottom:566.084181pt;}
.y97_c01198{bottom:566.460149pt;}
.y98_c01198{bottom:566.598816pt;}
.y99_c01198{bottom:566.765568pt;}
.y9a_c01198{bottom:567.031595pt;}
.y9b_c01198{bottom:567.259947pt;}
.y81_c01198{bottom:567.360000pt;}
.y82_c01198{bottom:567.622123pt;}
.y83_c01198{bottom:567.901419pt;}
.y84_c01198{bottom:568.024277pt;}
.y85_c01198{bottom:568.159637pt;}
.y86_c01198{bottom:568.543595pt;}
.y87_c01198{bottom:568.793173pt;}
.y88_c01198{bottom:568.946752pt;}
.y89_c01198{bottom:569.388288pt;}
.y8a_c01198{bottom:569.637419pt;}
.y8b_c01198{bottom:569.733845pt;}
.y8c_c01198{bottom:569.937344pt;}
.y8d_c01198{bottom:570.090496pt;}
.y8e_c01198{bottom:570.263339pt;}
.y8f_c01198{bottom:570.367125pt;}
.y7e_c01198{bottom:577.922667pt;}
.y7f_c01198{bottom:579.331285pt;}
.y80_c01198{bottom:579.801365pt;}
.y7a_c01198{bottom:621.365333pt;}
.y7b_c01198{bottom:622.558805pt;}
.y7c_c01198{bottom:623.412189pt;}
.y7d_c01198{bottom:624.637049pt;}
.y71_c01198{bottom:651.345900pt;}
.y72_c01198{bottom:652.864767pt;}
.y73_c01198{bottom:654.867300pt;}
.y74_c01198{bottom:656.385667pt;}
.y75_c01198{bottom:658.152233pt;}
.y76_c01198{bottom:659.779967pt;}
.y77_c01198{bottom:662.127767pt;}
.y78_c01198{bottom:663.860700pt;}
.y79_c01198{bottom:664.329800pt;}
.y69_c01198{bottom:684.234967pt;}
.y6a_c01198{bottom:684.650167pt;}
.y6b_c01198{bottom:686.999500pt;}
.y6c_c01198{bottom:687.665033pt;}
.y6d_c01198{bottom:688.273133pt;}
.y6e_c01198{bottom:689.615933pt;}
.y6f_c01198{bottom:690.211900pt;}
.y70_c01198{bottom:691.738000pt;}
.y60_c01198{bottom:710.648000pt;}
.y61_c01198{bottom:713.079200pt;}
.y62_c01198{bottom:714.514700pt;}
.y63_c01198{bottom:716.771333pt;}
.y64_c01198{bottom:719.440933pt;}
.y65_c01198{bottom:720.155767pt;}
.y66_c01198{bottom:722.159733pt;}
.y67_c01198{bottom:723.863667pt;}
.y68_c01198{bottom:724.596933pt;}
.y52_c01198{bottom:753.120079pt;}
.y53_c01198{bottom:754.182544pt;}
.y54_c01198{bottom:754.398659pt;}
.y55_c01198{bottom:754.645193pt;}
.y56_c01198{bottom:755.173589pt;}
.y57_c01198{bottom:755.589735pt;}
.y58_c01198{bottom:755.870093pt;}
.y59_c01198{bottom:756.116751pt;}
.y5a_c01198{bottom:756.398765pt;}
.y42_c01198{bottom:756.480000pt;}
.y5b_c01198{bottom:756.579124pt;}
.y5c_c01198{bottom:756.808593pt;}
.y43_c01198{bottom:756.830336pt;}
.y5d_c01198{bottom:757.060372pt;}
.y44_c01198{bottom:757.172484pt;}
.y5e_c01198{bottom:757.306631pt;}
.y45_c01198{bottom:757.413156pt;}
.y5f_c01198{bottom:757.552889pt;}
.y46_c01198{bottom:757.625032pt;}
.y47_c01198{bottom:757.854909pt;}
.y48_c01198{bottom:758.309328pt;}
.y49_c01198{bottom:758.524547pt;}
.y4a_c01198{bottom:758.750805pt;}
.y4b_c01198{bottom:759.010184pt;}
.y4c_c01198{bottom:759.208843pt;}
.y4d_c01198{bottom:759.435101pt;}
.y4e_c01198{bottom:759.721191pt;}
.y4f_c01198{bottom:759.947572pt;}
.y50_c01198{bottom:760.108357pt;}
.y51_c01198{bottom:760.334616pt;}
.y3f_c01198{bottom:766.805333pt;}
.y40_c01198{bottom:768.747317pt;}
.y41_c01198{bottom:769.371824pt;}
.y3c_c01198{bottom:809.628000pt;}
.y3d_c01198{bottom:812.998667pt;}
.y3e_c01198{bottom:819.454667pt;}
.y32_c01198{bottom:838.802667pt;}
.y33_c01198{bottom:840.834667pt;}
.y34_c01198{bottom:841.868000pt;}
.y35_c01198{bottom:843.732000pt;}
.y36_c01198{bottom:845.374667pt;}
.y37_c01198{bottom:846.005333pt;}
.y38_c01198{bottom:847.426667pt;}
.y39_c01198{bottom:848.858667pt;}
.y3a_c01198{bottom:850.940000pt;}
.y3b_c01198{bottom:851.866667pt;}
.y2e_c01198{bottom:871.924000pt;}
.y2f_c01198{bottom:873.289333pt;}
.y30_c01198{bottom:873.976000pt;}
.y31_c01198{bottom:879.912000pt;}
.y22_c01198{bottom:898.088000pt;}
.y23_c01198{bottom:900.536000pt;}
.y24_c01198{bottom:902.461333pt;}
.y25_c01198{bottom:903.697333pt;}
.y26_c01198{bottom:905.401333pt;}
.y27_c01198{bottom:906.906667pt;}
.y28_c01198{bottom:907.872000pt;}
.y29_c01198{bottom:909.124000pt;}
.y2a_c01198{bottom:909.576000pt;}
.y2b_c01198{bottom:911.304000pt;}
.y2c_c01198{bottom:912.298667pt;}
.y2d_c01198{bottom:914.249333pt;}
.y21_c01198{bottom:933.872000pt;}
.y18_c01198{bottom:966.006667pt;}
.y19_c01198{bottom:966.721033pt;}
.y1a_c01198{bottom:967.441867pt;}
.y1b_c01198{bottom:968.156700pt;}
.y1c_c01198{bottom:969.405800pt;}
.y1d_c01198{bottom:972.653033pt;}
.y1e_c01198{bottom:973.569100pt;}
.y1f_c01198{bottom:974.283467pt;}
.y20_c01198{bottom:977.264000pt;}
.yd_c01198{bottom:991.210667pt;}
.ye_c01198{bottom:993.377045pt;}
.yf_c01198{bottom:995.810432pt;}
.y10_c01198{bottom:997.187883pt;}
.y11_c01198{bottom:998.317515pt;}
.y12_c01198{bottom:999.679323pt;}
.y13_c01198{bottom:1002.127979pt;}
.y14_c01198{bottom:1002.981829pt;}
.y15_c01198{bottom:1003.795957pt;}
.y16_c01198{bottom:1006.050928pt;}
.y17_c01198{bottom:1006.551792pt;}
.y2_c01198{bottom:1039.440000pt;}
.y3_c01198{bottom:1039.762581pt;}
.y4_c01198{bottom:1040.284885pt;}
.y5_c01198{bottom:1040.595947pt;}
.y6_c01198{bottom:1040.749461pt;}
.y7_c01198{bottom:1040.910848pt;}
.y8_c01198{bottom:1041.072043pt;}
.y9_c01198{bottom:1041.383168pt;}
.ya_c01198{bottom:1041.521451pt;}
.yb_c01198{bottom:1042.005355pt;}
.yc_c01198{bottom:1042.289600pt;}
.y1_c01198{bottom:1097.158667pt;}
.h15_c01198{height:16.000000pt;}
.h3_c01198{height:16.002048pt;}
.ha_c01198{height:16.004231pt;}
.hc_c01198{height:16.062914pt;}
.hb_c01198{height:16.084253pt;}
.h16_c01198{height:16.704000pt;}
.h7_c01198{height:53.333333pt;}
.h14_c01198{height:53.342959pt;}
.hf_c01198{height:53.345092pt;}
.he_c01198{height:53.349997pt;}
.h8_c01198{height:58.666667pt;}
.h11_c01198{height:58.674176pt;}
.h13_c01198{height:58.675143pt;}
.h9_c01198{height:58.680862pt;}
.h5_c01198{height:58.684997pt;}
.h6_c01198{height:64.000000pt;}
.h12_c01198{height:64.008191pt;}
.hd_c01198{height:64.019997pt;}
.h19_c01198{height:69.334581pt;}
.h10_c01198{height:69.342207pt;}
.h17_c01198{height:69.354997pt;}
.h4_c01198{height:69.360507pt;}
.h2_c01198{height:90.666667pt;}
.h18_c01198{height:96.029995pt;}
.h1_c01198{height:1118.666667pt;}
.h0_c01198{height:1118.880000pt;}
.w0_c01198{width:803.733333pt;}
.w1_c01198{width:804.000000pt;}
.x0_c01198{left:0.000000pt;}
.xf_c01198{left:89.916000pt;}
.x26_c01198{left:91.320000pt;}
.x35_c01198{left:92.625333pt;}
.x59_c01198{left:96.089333pt;}
.x7b_c01198{left:100.705333pt;}
.x9e_c01198{left:105.509333pt;}
.xc2_c01198{left:112.289333pt;}
.xca_c01198{left:115.434667pt;}
.x64_c01198{left:117.553700pt;}
.x8d_c01198{left:122.132000pt;}
.xa4_c01198{left:126.638880pt;}
.xad_c01198{left:128.493451pt;}
.xb3_c01198{left:129.440043pt;}
.xb4_c01198{left:136.943307pt;}
.xcb_c01198{left:138.457333pt;}
.x10_c01198{left:167.286667pt;}
.x1a_c01198{left:187.944000pt;}
.x27_c01198{left:189.257333pt;}
.x31_c01198{left:190.845333pt;}
.x3e_c01198{left:192.037333pt;}
.x5a_c01198{left:193.337333pt;}
.x5f_c01198{left:195.329900pt;}
.x6a_c01198{left:196.577333pt;}
.x84_c01198{left:200.140725pt;}
.x93_c01198{left:202.028735pt;}
.x9b_c01198{left:204.326667pt;}
.xae_c01198{left:205.605355pt;}
.xc7_c01198{left:209.172567pt;}
.xcc_c01198{left:211.874667pt;}
.x60_c01198{left:214.179300pt;}
.x1b_c01198{left:216.518667pt;}
.x36_c01198{left:238.612000pt;}
.x9c_c01198{left:239.778667pt;}
.x1c_c01198{left:245.352000pt;}
.x32_c01198{left:247.733333pt;}
.x5b_c01198{left:250.757333pt;}
.x11_c01198{left:254.193333pt;}
.xa5_c01198{left:261.361237pt;}
.xaf_c01198{left:262.268917pt;}
.x28_c01198{left:266.297333pt;}
.x85_c01198{left:267.838304pt;}
.x9f_c01198{left:269.988000pt;}
.x1d_c01198{left:273.945333pt;}
.x33_c01198{left:276.340000pt;}
.x94_c01198{left:278.679341pt;}
.x7c_c01198{left:284.845333pt;}
.xcd_c01198{left:289.624000pt;}
.xa6_c01198{left:290.926965pt;}
.x65_c01198{left:293.578333pt;}
.x8c_c01198{left:296.145120pt;}
.xaa_c01198{left:300.683189pt;}
.x95_c01198{left:301.804135pt;}
.x12_c01198{left:303.388000pt;}
.xc8_c01198{left:306.380867pt;}
.x9d_c01198{left:309.121333pt;}
.x7d_c01198{left:314.609333pt;}
.x29_c01198{left:315.718667pt;}
.xa0_c01198{left:319.661333pt;}
.x4_c01198{left:321.382667pt;}
.x1e_c01198{left:323.909333pt;}
.x37_c01198{left:327.393333pt;}
.xc9_c01198{left:336.623100pt;}
.x43_c01198{left:337.948000pt;}
.x40_c01198{left:338.888000pt;}
.xab_c01198{left:339.821856pt;}
.x5_c01198{left:341.544000pt;}
.x13_c01198{left:343.732000pt;}
.x86_c01198{left:344.886400pt;}
.xc3_c01198{left:345.940000pt;}
.xa7_c01198{left:349.938421pt;}
.x61_c01198{left:351.210900pt;}
.x3f_c01198{left:352.518667pt;}
.x8e_c01198{left:355.932000pt;}
.x1_c01198{left:358.080000pt;}
.x44_c01198{left:368.056000pt;}
.x66_c01198{left:369.469133pt;}
.xb8_c01198{left:373.200000pt;}
.x6_c01198{left:374.188000pt;}
.x74_c01198{left:375.397664pt;}
.x2_c01198{left:376.800000pt;}
.x45_c01198{left:378.520000pt;}
.x51_c01198{left:380.684743pt;}
.x2a_c01198{left:383.890667pt;}
.x6d_c01198{left:385.949333pt;}
.x46_c01198{left:387.732000pt;}
.x52_c01198{left:389.327011pt;}
.x14_c01198{left:392.368000pt;}
.x7_c01198{left:393.629333pt;}
.x47_c01198{left:397.726667pt;}
.x53_c01198{left:399.175884pt;}
.xb0_c01198{left:400.531157pt;}
.x6e_c01198{left:402.088000pt;}
.x8_c01198{left:403.224000pt;}
.x38_c01198{left:405.624000pt;}
.x75_c01198{left:408.999797pt;}
.xbc_c01198{left:410.428000pt;}
.x9_c01198{left:413.310667pt;}
.x48_c01198{left:417.484000pt;}
.x3_c01198{left:420.480000pt;}
.xa_c01198{left:423.385333pt;}
.x76_c01198{left:424.600875pt;}
.x6f_c01198{left:426.085333pt;}
.x41_c01198{left:427.160000pt;}
.x87_c01198{left:433.200992pt;}
.xc4_c01198{left:434.532000pt;}
.x39_c01198{left:435.636000pt;}
.x49_c01198{left:436.678667pt;}
.x62_c01198{left:439.866867pt;}
.x6b_c01198{left:441.266667pt;}
.xb_c01198{left:442.830667pt;}
.x2b_c01198{left:444.122667pt;}
.xbd_c01198{left:445.228000pt;}
.xce_c01198{left:446.813333pt;}
.x4a_c01198{left:447.956000pt;}
.xc_c01198{left:451.473333pt;}
.x1f_c01198{left:453.798667pt;}
.x42_c01198{left:455.546667pt;}
.x4b_c01198{left:456.593333pt;}
.x54_c01198{left:457.994488pt;}
.x77_c01198{left:461.086965pt;}
.x88_c01198{left:462.016523pt;}
.x8f_c01198{left:464.840000pt;}
.x4c_c01198{left:466.430667pt;}
.x55_c01198{left:469.269967pt;}
.x6c_c01198{left:470.646667pt;}
.xbe_c01198{left:474.745333pt;}
.x56_c01198{left:476.473629pt;}
.x90_c01198{left:477.628000pt;}
.x4d_c01198{left:478.869333pt;}
.x15_c01198{left:479.820000pt;}
.xd_c01198{left:481.717333pt;}
.x2c_c01198{left:482.762667pt;}
.x96_c01198{left:484.074323pt;}
.x57_c01198{left:485.638533pt;}
.x4e_c01198{left:488.712000pt;}
.x20_c01198{left:490.441333pt;}
.x78_c01198{left:491.334475pt;}
.xbf_c01198{left:492.748000pt;}
.x70_c01198{left:494.449333pt;}
.x4f_c01198{left:495.702667pt;}
.xb1_c01198{left:498.456715pt;}
.xe_c01198{left:499.482667pt;}
.x71_c01198{left:500.476000pt;}
.x7e_c01198{left:502.018667pt;}
.x3a_c01198{left:503.321333pt;}
.x50_c01198{left:505.540000pt;}
.xb9_c01198{left:507.600000pt;}
.x16_c01198{left:510.314667pt;}
.xc0_c01198{left:511.944000pt;}
.x72_c01198{left:513.194667pt;}
.x58_c01198{left:515.389153pt;}
.x79_c01198{left:516.799403pt;}
.xac_c01198{left:517.692523pt;}
.x21_c01198{left:519.016000pt;}
.x7f_c01198{left:521.033333pt;}
.x73_c01198{left:522.766667pt;}
.x34_c01198{left:523.674667pt;}
.xb2_c01198{left:527.042496pt;}
.x7a_c01198{left:530.237856pt;}
.x2d_c01198{left:532.832000pt;}
.xa1_c01198{left:534.721333pt;}
.x63_c01198{left:536.330100pt;}
.xb5_c01198{left:537.803392pt;}
.x17_c01198{left:539.390667pt;}
.xc1_c01198{left:540.981333pt;}
.x89_c01198{left:542.895221pt;}
.x2e_c01198{left:550.929333pt;}
.xba_c01198{left:552.480000pt;}
.x5c_c01198{left:556.558667pt;}
.xbb_c01198{left:560.400000pt;}
.x91_c01198{left:563.076000pt;}
.xa8_c01198{left:565.947509pt;}
.x3b_c01198{left:571.496000pt;}
.xc5_c01198{left:581.378667pt;}
.x97_c01198{left:583.800367pt;}
.xa9_c01198{left:596.207883pt;}
.x80_c01198{left:600.002667pt;}
.xa2_c01198{left:605.721333pt;}
.x22_c01198{left:608.400000pt;}
.x98_c01198{left:613.449364pt;}
.x18_c01198{left:619.925333pt;}
.xa3_c01198{left:623.544000pt;}
.x5d_c01198{left:624.716000pt;}
.x81_c01198{left:629.770667pt;}
.xcf_c01198{left:633.773333pt;}
.x19_c01198{left:637.813333pt;}
.x23_c01198{left:639.360000pt;}
.x99_c01198{left:641.312983pt;}
.xd0_c01198{left:650.640000pt;}
.x5e_c01198{left:654.046667pt;}
.x67_c01198{left:656.575667pt;}
.x82_c01198{left:658.570667pt;}
.x2f_c01198{left:659.833333pt;}
.x92_c01198{left:660.766667pt;}
.x24_c01198{left:668.640000pt;}
.x3c_c01198{left:670.622667pt;}
.xb6_c01198{left:676.769173pt;}
.xb7_c01198{left:706.056853pt;}
.x3d_c01198{left:714.742667pt;}
.x83_c01198{left:727.225333pt;}
.x8a_c01198{left:729.402901pt;}
.x25_c01198{left:735.840000pt;}
.x30_c01198{left:737.850667pt;}
.x68_c01198{left:743.237167pt;}
.xc6_c01198{left:748.498667pt;}
.x9a_c01198{left:760.590373pt;}
.x69_c01198{left:766.697433pt;}
.x8b_c01198{left:771.892885pt;}
}





/* 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_c01199 {
    display:none;
  }
  .loading-indicator_c01199.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01199 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_c01199 { 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_c01199" -> "#page-container .classname_c01199")
 */
.pf_c01199 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01199 { /* 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_c01199.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01199 { /* 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_c01199 { /* 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_c01199 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01199 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01199 {overflow:visible;}
  }
}
.c_c01199 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01199 { /* 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_c01199:after { /* webkit #35443 */
  content: '';
}
.t_c01199:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01199 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 */
}
.__c01199 { /* 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_c01199 { /* info for Javascript */
  display:none;
}
.l_c01199 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01199 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01199 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01199: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_c01199 {
    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_c01199.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01199.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_c01199 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01199{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01199;src:url('chunks/assets/font_92d6bb63cbc780ceff7db400.woff2')format("woff");}.ff1_c01199{font-family:ff1_c01199;line-height:1.000000;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;}
.m23_c01199{transform:matrix(0.054076,-0.000973,0.004499,0.249960,0,0);-ms-transform:matrix(0.054076,-0.000973,0.004499,0.249960,0,0);-webkit-transform:matrix(0.054076,-0.000973,0.004499,0.249960,0,0);}
.m1b_c01199{transform:matrix(0.063630,-0.001145,0.004499,0.249960,0,0);-ms-transform:matrix(0.063630,-0.001145,0.004499,0.249960,0,0);-webkit-transform:matrix(0.063630,-0.001145,0.004499,0.249960,0,0);}
.m24_c01199{transform:matrix(0.074988,-0.001350,0.004499,0.249960,0,0);-ms-transform:matrix(0.074988,-0.001350,0.004499,0.249960,0,0);-webkit-transform:matrix(0.074988,-0.001350,0.004499,0.249960,0,0);}
.m1d_c01199{transform:matrix(0.094855,-0.001707,0.004499,0.249960,0,0);-ms-transform:matrix(0.094855,-0.001707,0.004499,0.249960,0,0);-webkit-transform:matrix(0.094855,-0.001707,0.004499,0.249960,0,0);}
.m2_c01199{transform:matrix(0.096045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096045,0.000000,0.000000,0.250000,0,0);}
.m17_c01199{transform:matrix(0.111762,-0.002012,0.004499,0.249960,0,0);-ms-transform:matrix(0.111762,-0.002012,0.004499,0.249960,0,0);-webkit-transform:matrix(0.111762,-0.002012,0.004499,0.249960,0,0);}
.m22_c01199{transform:matrix(0.114002,-0.002052,0.004499,0.249960,0,0);-ms-transform:matrix(0.114002,-0.002052,0.004499,0.249960,0,0);-webkit-transform:matrix(0.114002,-0.002052,0.004499,0.249960,0,0);}
.m25_c01199{transform:matrix(0.135885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135885,0.000000,0.000000,0.250000,0,0);}
.m1_c01199{transform:matrix(0.144070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144070,0.000000,0.000000,0.250000,0,0);}
.m16_c01199{transform:matrix(0.168108,-0.003026,0.004499,0.249960,0,0);-ms-transform:matrix(0.168108,-0.003026,0.004499,0.249960,0,0);-webkit-transform:matrix(0.168108,-0.003026,0.004499,0.249960,0,0);}
.m26_c01199{transform:matrix(0.184365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184365,0.000000,0.000000,0.250000,0,0);}
.m12_c01199{transform:matrix(0.195543,-0.003520,0.004499,0.249960,0,0);-ms-transform:matrix(0.195543,-0.003520,0.004499,0.249960,0,0);-webkit-transform:matrix(0.195543,-0.003520,0.004499,0.249960,0,0);}
.m14_c01199{transform:matrix(0.196168,-0.003531,0.004499,0.249960,0,0);-ms-transform:matrix(0.196168,-0.003531,0.004499,0.249960,0,0);-webkit-transform:matrix(0.196168,-0.003531,0.004499,0.249960,0,0);}
.m18_c01199{transform:matrix(0.202992,-0.003654,0.004499,0.249960,0,0);-ms-transform:matrix(0.202992,-0.003654,0.004499,0.249960,0,0);-webkit-transform:matrix(0.202992,-0.003654,0.004499,0.249960,0,0);}
.m11_c01199{transform:matrix(0.210361,-0.003786,0.004499,0.249960,0,0);-ms-transform:matrix(0.210361,-0.003786,0.004499,0.249960,0,0);-webkit-transform:matrix(0.210361,-0.003786,0.004499,0.249960,0,0);}
.m10_c01199{transform:matrix(0.234785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234785,0.000000,0.000000,0.250000,0,0);}
.m1a_c01199{transform:matrix(0.237132,-0.004268,0.004499,0.249960,0,0);-ms-transform:matrix(0.237132,-0.004268,0.004499,0.249960,0,0);-webkit-transform:matrix(0.237132,-0.004268,0.004499,0.249960,0,0);}
.m27_c01199{transform:matrix(0.245965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245965,0.000000,0.000000,0.250000,0,0);}
.m28_c01199{transform:matrix(0.246020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246020,0.000000,0.000000,0.250000,0,0);}
.m15_c01199{transform:matrix(0.252314,-0.004542,0.004499,0.249960,0,0);-ms-transform:matrix(0.252314,-0.004542,0.004499,0.249960,0,0);-webkit-transform:matrix(0.252314,-0.004542,0.004499,0.249960,0,0);}
.m1f_c01199{transform:matrix(0.270371,-0.004867,0.004499,0.249960,0,0);-ms-transform:matrix(0.270371,-0.004867,0.004499,0.249960,0,0);-webkit-transform:matrix(0.270371,-0.004867,0.004499,0.249960,0,0);}
.m1c_c01199{transform:matrix(0.294062,-0.005293,0.004499,0.249960,0,0);-ms-transform:matrix(0.294062,-0.005293,0.004499,0.249960,0,0);-webkit-transform:matrix(0.294062,-0.005293,0.004499,0.249960,0,0);}
.me_c01199{transform:matrix(0.307775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307775,0.000000,0.000000,0.250000,0,0);}
.m20_c01199{transform:matrix(0.317794,-0.005720,0.004499,0.249960,0,0);-ms-transform:matrix(0.317794,-0.005720,0.004499,0.249960,0,0);-webkit-transform:matrix(0.317794,-0.005720,0.004499,0.249960,0,0);}
.m13_c01199{transform:matrix(0.324257,-0.005837,0.004499,0.249960,0,0);-ms-transform:matrix(0.324257,-0.005837,0.004499,0.249960,0,0);-webkit-transform:matrix(0.324257,-0.005837,0.004499,0.249960,0,0);}
.m5_c01199{transform:matrix(0.376870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376870,0.000000,0.000000,0.250000,0,0);}
.m1e_c01199{transform:matrix(0.411028,-0.007399,0.004499,0.249960,0,0);-ms-transform:matrix(0.411028,-0.007399,0.004499,0.249960,0,0);-webkit-transform:matrix(0.411028,-0.007399,0.004499,0.249960,0,0);}
.m21_c01199{transform:matrix(0.419692,-0.007554,0.004499,0.249960,0,0);-ms-transform:matrix(0.419692,-0.007554,0.004499,0.249960,0,0);-webkit-transform:matrix(0.419692,-0.007554,0.004499,0.249960,0,0);}
.mb_c01199{transform:matrix(0.422670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422670,0.000000,0.000000,0.250000,0,0);}
.m7_c01199{transform:matrix(0.476765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.476765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.476765,0.000000,0.000000,0.250000,0,0);}
.mf_c01199{transform:matrix(0.524800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524800,0.000000,0.000000,0.250000,0,0);}
.m3_c01199{transform:matrix(0.623620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.623620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.623620,0.000000,0.000000,0.250000,0,0);}
.m9_c01199{transform:matrix(0.667835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667835,0.000000,0.000000,0.250000,0,0);}
.md_c01199{transform:matrix(0.729930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.729930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.729930,0.000000,0.000000,0.250000,0,0);}
.m4_c01199{transform:matrix(0.789460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.789460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.789460,0.000000,0.000000,0.250000,0,0);}
.ma_c01199{transform:matrix(0.840745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.840745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.840745,0.000000,0.000000,0.250000,0,0);}
.mc_c01199{transform:matrix(1.107360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.107360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.107360,0.000000,0.000000,0.250000,0,0);}
.m8_c01199{transform:matrix(1.198595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.198595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.198595,0.000000,0.000000,0.250000,0,0);}
.m19_c01199{transform:matrix(1.305329,-0.023496,0.004499,0.249960,0,0);-ms-transform:matrix(1.305329,-0.023496,0.004499,0.249960,0,0);-webkit-transform:matrix(1.305329,-0.023496,0.004499,0.249960,0,0);}
.m6_c01199{transform:matrix(1.984595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.984595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.984595,0.000000,0.000000,0.250000,0,0);}
.m0_c01199{transform:matrix(3.775735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.775735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.775735,0.000000,0.000000,0.250000,0,0);}
.v0_c01199{vertical-align:0.000000px;}
.ls0_c01199{letter-spacing:0.000000px;}
.sc__c01199{text-shadow:none;}
.sc0_c01199{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__c01199{-webkit-text-stroke:0px transparent;}
.sc0_c01199{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01199{word-spacing:0.000000px;}
.fc0_c01199{color:transparent;}
.fs3_c01199{font-size:12.000000px;}
.fs2_c01199{font-size:18.000000px;}
.fs7_c01199{font-size:18.002916px;}
.fs1_c01199{font-size:24.000000px;}
.fs0_c01199{font-size:30.000000px;}
.fs5_c01199{font-size:30.004860px;}
.fs6_c01199{font-size:66.010691px;}
.fs4_c01199{font-size:72.000000px;}
.fs8_c01199{font-size:144.000000px;}
.y0_c01199{bottom:0.000000px;}
.y1e_c01199{bottom:694.170000px;}
.y1d_c01199{bottom:694.569000px;}
.y13_c01199{bottom:799.707111px;}
.y15_c01199{bottom:799.707183px;}
.y14_c01199{bottom:799.707297px;}
.y16_c01199{bottom:799.707369px;}
.y1b_c01199{bottom:799.707372px;}
.y19_c01199{bottom:799.707453px;}
.y18_c01199{bottom:799.707501px;}
.y12_c01199{bottom:799.707645px;}
.y1c_c01199{bottom:799.707825px;}
.y1a_c01199{bottom:799.707879px;}
.y17_c01199{bottom:799.707888px;}
.y11_c01199{bottom:808.219506px;}
.y9_c01199{bottom:811.891500px;}
.ya_c01199{bottom:812.620635px;}
.yb_c01199{bottom:812.951061px;}
.yc_c01199{bottom:813.655896px;}
.yd_c01199{bottom:814.029630px;}
.ye_c01199{bottom:814.647444px;}
.yf_c01199{bottom:815.162334px;}
.y10_c01199{bottom:815.444268px;}
.y8_c01199{bottom:959.310000px;}
.y7_c01199{bottom:980.641500px;}
.y6_c01199{bottom:1130.770500px;}
.y5_c01199{bottom:1134.672000px;}
.y4_c01199{bottom:1143.990000px;}
.y3_c01199{bottom:1151.008500px;}
.y2_c01199{bottom:1154.250000px;}
.y1_c01199{bottom:1251.298500px;}
.h5_c01199{height:12.000000px;}
.h4_c01199{height:18.000000px;}
.h9_c01199{height:18.002916px;}
.h3_c01199{height:24.000000px;}
.h2_c01199{height:30.000000px;}
.h7_c01199{height:30.004860px;}
.h8_c01199{height:66.010691px;}
.h6_c01199{height:72.000000px;}
.ha_c01199{height:144.000000px;}
.h1_c01199{height:1258.500000px;}
.h0_c01199{height:1258.740000px;}
.w0_c01199{width:904.200000px;}
.w1_c01199{width:904.500000px;}
.x0_c01199{left:0.000000px;}
.xe_c01199{left:208.980000px;}
.x1_c01199{left:256.770000px;}
.xf_c01199{left:268.110000px;}
.x17_c01199{left:309.688287px;}
.x10_c01199{left:315.207000px;}
.x18_c01199{left:322.381062px;}
.x4_c01199{left:324.810000px;}
.xb_c01199{left:334.800000px;}
.x19_c01199{left:337.773057px;}
.x3_c01199{left:341.010000px;}
.x2_c01199{left:347.490000px;}
.x5_c01199{left:356.400000px;}
.x1a_c01199{left:360.457401px;}
.xc_c01199{left:368.820000px;}
.x6_c01199{left:371.520000px;}
.x11_c01199{left:374.071500px;}
.x7_c01199{left:377.730000px;}
.x1b_c01199{left:381.791313px;}
.x8_c01199{left:393.930000px;}
.xd_c01199{left:395.550000px;}
.x9_c01199{left:401.220000px;}
.x1c_c01199{left:404.475657px;}
.x12_c01199{left:413.229000px;}
.xa_c01199{left:417.690000px;}
.x13_c01199{left:433.992000px;}
.x1d_c01199{left:447.413562px;}
.x14_c01199{left:468.315000px;}
.x1e_c01199{left:486.840333px;}
.x15_c01199{left:496.920000px;}
.x1f_c01199{left:505.203273px;}
.x16_c01199{left:512.583000px;}
.x20_c01199{left:513.844581px;}
.x21_c01199{left:525.456834px;}
.x22_c01199{left:555.390000px;}
.x24_c01199{left:571.320000px;}
.x23_c01199{left:587.520000px;}
.x25_c01199{left:592.380000px;}
@media print{
.v0_c01199{vertical-align:0.000000pt;}
.ls0_c01199{letter-spacing:0.000000pt;}
.ws0_c01199{word-spacing:0.000000pt;}
.fs3_c01199{font-size:10.666667pt;}
.fs2_c01199{font-size:16.000000pt;}
.fs7_c01199{font-size:16.002592pt;}
.fs1_c01199{font-size:21.333333pt;}
.fs0_c01199{font-size:26.666667pt;}
.fs5_c01199{font-size:26.670986pt;}
.fs6_c01199{font-size:58.676170pt;}
.fs4_c01199{font-size:64.000000pt;}
.fs8_c01199{font-size:128.000000pt;}
.y0_c01199{bottom:0.000000pt;}
.y1e_c01199{bottom:617.040000pt;}
.y1d_c01199{bottom:617.394667pt;}
.y13_c01199{bottom:710.850765pt;}
.y15_c01199{bottom:710.850829pt;}
.y14_c01199{bottom:710.850931pt;}
.y16_c01199{bottom:710.850995pt;}
.y1b_c01199{bottom:710.850997pt;}
.y19_c01199{bottom:710.851069pt;}
.y18_c01199{bottom:710.851112pt;}
.y12_c01199{bottom:710.851240pt;}
.y1c_c01199{bottom:710.851400pt;}
.y1a_c01199{bottom:710.851448pt;}
.y17_c01199{bottom:710.851456pt;}
.y11_c01199{bottom:718.417339pt;}
.y9_c01199{bottom:721.681333pt;}
.ya_c01199{bottom:722.329453pt;}
.yb_c01199{bottom:722.623165pt;}
.yc_c01199{bottom:723.249685pt;}
.yd_c01199{bottom:723.581893pt;}
.ye_c01199{bottom:724.131061pt;}
.yf_c01199{bottom:724.588741pt;}
.y10_c01199{bottom:724.839349pt;}
.y8_c01199{bottom:852.720000pt;}
.y7_c01199{bottom:871.681333pt;}
.y6_c01199{bottom:1005.129333pt;}
.y5_c01199{bottom:1008.597333pt;}
.y4_c01199{bottom:1016.880000pt;}
.y3_c01199{bottom:1023.118667pt;}
.y2_c01199{bottom:1026.000000pt;}
.y1_c01199{bottom:1112.265333pt;}
.h5_c01199{height:10.666667pt;}
.h4_c01199{height:16.000000pt;}
.h9_c01199{height:16.002592pt;}
.h3_c01199{height:21.333333pt;}
.h2_c01199{height:26.666667pt;}
.h7_c01199{height:26.670986pt;}
.h8_c01199{height:58.676170pt;}
.h6_c01199{height:64.000000pt;}
.ha_c01199{height:128.000000pt;}
.h1_c01199{height:1118.666667pt;}
.h0_c01199{height:1118.880000pt;}
.w0_c01199{width:803.733333pt;}
.w1_c01199{width:804.000000pt;}
.x0_c01199{left:0.000000pt;}
.xe_c01199{left:185.760000pt;}
.x1_c01199{left:228.240000pt;}
.xf_c01199{left:238.320000pt;}
.x17_c01199{left:275.278477pt;}
.x10_c01199{left:280.184000pt;}
.x18_c01199{left:286.560944pt;}
.x4_c01199{left:288.720000pt;}
.xb_c01199{left:297.600000pt;}
.x19_c01199{left:300.242717pt;}
.x3_c01199{left:303.120000pt;}
.x2_c01199{left:308.880000pt;}
.x5_c01199{left:316.800000pt;}
.x1a_c01199{left:320.406579pt;}
.xc_c01199{left:327.840000pt;}
.x6_c01199{left:330.240000pt;}
.x11_c01199{left:332.508000pt;}
.x7_c01199{left:335.760000pt;}
.x1b_c01199{left:339.370056pt;}
.x8_c01199{left:350.160000pt;}
.xd_c01199{left:351.600000pt;}
.x9_c01199{left:356.640000pt;}
.x1c_c01199{left:359.533917pt;}
.x12_c01199{left:367.314667pt;}
.xa_c01199{left:371.280000pt;}
.x13_c01199{left:385.770667pt;}
.x1d_c01199{left:397.700944pt;}
.x14_c01199{left:416.280000pt;}
.x1e_c01199{left:432.746963pt;}
.x15_c01199{left:441.706667pt;}
.x1f_c01199{left:449.069576pt;}
.x16_c01199{left:455.629333pt;}
.x20_c01199{left:456.750739pt;}
.x21_c01199{left:467.072741pt;}
.x22_c01199{left:493.680000pt;}
.x24_c01199{left:507.840000pt;}
.x23_c01199{left:522.240000pt;}
.x25_c01199{left:526.560000pt;}
}





/* 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_c01200 {
    display:none;
  }
  .loading-indicator_c01200.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01200 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_c01200 { 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_c01200" -> "#page-container .classname_c01200")
 */
.pf_c01200 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01200 { /* 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_c01200.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01200 { /* 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_c01200 { /* 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_c01200 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01200 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01200 {overflow:visible;}
  }
}
.c_c01200 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01200 { /* 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_c01200:after { /* webkit #35443 */
  content: '';
}
.t_c01200:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01200 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 */
}
.__c01200 { /* 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_c01200 { /* info for Javascript */
  display:none;
}
.l_c01200 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01200 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01200 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01200: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_c01200 {
    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_c01200.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01200.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_c01200 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01200{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01200;src:url('chunks/assets/font_c605e72f209fc835e906f064.woff2')format("woff");}.ff1_c01200{font-family:ff1_c01200;line-height:1.000000;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;}
.mbe_c01200{transform:matrix(0.007375,0.000052,-0.001750,0.249994,0,0);-ms-transform:matrix(0.007375,0.000052,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.007375,0.000052,-0.001750,0.249994,0,0);}
.m1c_c01200{transform:matrix(0.008365,0.000285,-0.008504,0.249855,0,0);-ms-transform:matrix(0.008365,0.000285,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.008365,0.000285,-0.008504,0.249855,0,0);}
.m1b_c01200{transform:matrix(0.009539,0.000325,-0.008504,0.249855,0,0);-ms-transform:matrix(0.009539,0.000325,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.009539,0.000325,-0.008504,0.249855,0,0);}
.mc4_c01200{transform:matrix(0.012935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.012935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.012935,0.000000,0.000000,0.250000,0,0);}
.m6c_c01200{transform:matrix(0.014677,0.000500,-0.008504,0.249855,0,0);-ms-transform:matrix(0.014677,0.000500,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.014677,0.000500,-0.008504,0.249855,0,0);}
.m3e_c01200{transform:matrix(0.025090,0.000854,-0.008504,0.249855,0,0);-ms-transform:matrix(0.025090,0.000854,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.025090,0.000854,-0.008504,0.249855,0,0);}
.m8c_c01200{transform:matrix(0.053131,0.001435,-0.006748,0.249909,0,0);-ms-transform:matrix(0.053131,0.001435,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.053131,0.001435,-0.006748,0.249909,0,0);}
.m81_c01200{transform:matrix(0.093631,0.002528,-0.006748,0.249909,0,0);-ms-transform:matrix(0.093631,0.002528,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.093631,0.002528,-0.006748,0.249909,0,0);}
.m5b_c01200{transform:matrix(0.094815,0.003227,-0.008504,0.249855,0,0);-ms-transform:matrix(0.094815,0.003227,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.094815,0.003227,-0.008504,0.249855,0,0);}
.m5f_c01200{transform:matrix(0.097903,0.003332,-0.008504,0.249855,0,0);-ms-transform:matrix(0.097903,0.003332,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.097903,0.003332,-0.008504,0.249855,0,0);}
.m1d_c01200{transform:matrix(0.106643,0.003630,-0.008504,0.249855,0,0);-ms-transform:matrix(0.106643,0.003630,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.106643,0.003630,-0.008504,0.249855,0,0);}
.ma4_c01200{transform:matrix(0.110665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110665,0.000000,0.000000,0.250000,0,0);}
.m7b_c01200{transform:matrix(0.112329,0.003033,-0.006748,0.249909,0,0);-ms-transform:matrix(0.112329,0.003033,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.112329,0.003033,-0.006748,0.249909,0,0);}
.m96_c01200{transform:matrix(0.117307,0.003167,-0.006748,0.249909,0,0);-ms-transform:matrix(0.117307,0.003167,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.117307,0.003167,-0.006748,0.249909,0,0);}
.m82_c01200{transform:matrix(0.119541,0.003228,-0.006748,0.249909,0,0);-ms-transform:matrix(0.119541,0.003228,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.119541,0.003228,-0.006748,0.249909,0,0);}
.m46_c01200{transform:matrix(0.119876,0.004080,-0.008504,0.249855,0,0);-ms-transform:matrix(0.119876,0.004080,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.119876,0.004080,-0.008504,0.249855,0,0);}
.m5c_c01200{transform:matrix(0.120550,0.004103,-0.008504,0.249855,0,0);-ms-transform:matrix(0.120550,0.004103,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.120550,0.004103,-0.008504,0.249855,0,0);}
.m32_c01200{transform:matrix(0.120865,0.004114,-0.008504,0.249855,0,0);-ms-transform:matrix(0.120865,0.004114,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.120865,0.004114,-0.008504,0.249855,0,0);}
.mc0_c01200{transform:matrix(0.126211,0.003534,-0.006997,0.249902,0,0);-ms-transform:matrix(0.126211,0.003534,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.126211,0.003534,-0.006997,0.249902,0,0);}
.mbf_c01200{transform:matrix(0.127230,0.003562,-0.006997,0.249902,0,0);-ms-transform:matrix(0.127230,0.003562,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.127230,0.003562,-0.006997,0.249902,0,0);}
.ma6_c01200{transform:matrix(0.127650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127650,0.000000,0.000000,0.250000,0,0);}
.m48_c01200{transform:matrix(0.128800,0.004384,-0.008504,0.249855,0,0);-ms-transform:matrix(0.128800,0.004384,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.128800,0.004384,-0.008504,0.249855,0,0);}
.m0_c01200{transform:matrix(0.129300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129300,0.000000,0.000000,0.250000,0,0);}
.m49_c01200{transform:matrix(0.136206,0.004636,-0.008504,0.249855,0,0);-ms-transform:matrix(0.136206,0.004636,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.136206,0.004636,-0.008504,0.249855,0,0);}
.ma7_c01200{transform:matrix(0.137805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137805,0.000000,0.000000,0.250000,0,0);}
.mb8_c01200{transform:matrix(0.138682,0.000971,-0.001750,0.249994,0,0);-ms-transform:matrix(0.138682,0.000971,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.138682,0.000971,-0.001750,0.249994,0,0);}
.m10_c01200{transform:matrix(0.139459,0.004746,-0.008504,0.249855,0,0);-ms-transform:matrix(0.139459,0.004746,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.139459,0.004746,-0.008504,0.249855,0,0);}
.m7c_c01200{transform:matrix(0.140859,0.003803,-0.006748,0.249909,0,0);-ms-transform:matrix(0.140859,0.003803,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.140859,0.003803,-0.006748,0.249909,0,0);}
.ma3_c01200{transform:matrix(0.141490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141490,0.000000,0.000000,0.250000,0,0);}
.mb7_c01200{transform:matrix(0.143636,0.001005,-0.001750,0.249994,0,0);-ms-transform:matrix(0.143636,0.001005,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.143636,0.001005,-0.001750,0.249994,0,0);}
.ma5_c01200{transform:matrix(0.143770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143770,0.000000,0.000000,0.250000,0,0);}
.mba_c01200{transform:matrix(0.144006,0.001008,-0.001750,0.249994,0,0);-ms-transform:matrix(0.144006,0.001008,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.144006,0.001008,-0.001750,0.249994,0,0);}
.mb9_c01200{transform:matrix(0.144491,0.001011,-0.001750,0.249994,0,0);-ms-transform:matrix(0.144491,0.001011,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.144491,0.001011,-0.001750,0.249994,0,0);}
.m4a_c01200{transform:matrix(0.148394,0.005050,-0.008504,0.249855,0,0);-ms-transform:matrix(0.148394,0.005050,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.148394,0.005050,-0.008504,0.249855,0,0);}
.mca_c01200{transform:matrix(0.149260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149260,0.000000,0.000000,0.250000,0,0);}
.m8d_c01200{transform:matrix(0.149436,0.004035,-0.006748,0.249909,0,0);-ms-transform:matrix(0.149436,0.004035,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.149436,0.004035,-0.006748,0.249909,0,0);}
.m83_c01200{transform:matrix(0.151505,0.004091,-0.006748,0.249909,0,0);-ms-transform:matrix(0.151505,0.004091,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.151505,0.004091,-0.006748,0.249909,0,0);}
.maa_c01200{transform:matrix(0.152035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152035,0.000000,0.000000,0.250000,0,0);}
.m2b_c01200{transform:matrix(0.152282,0.005183,-0.008504,0.249855,0,0);-ms-transform:matrix(0.152282,0.005183,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.152282,0.005183,-0.008504,0.249855,0,0);}
.m97_c01200{transform:matrix(0.152834,0.004127,-0.006748,0.249909,0,0);-ms-transform:matrix(0.152834,0.004127,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.152834,0.004127,-0.006748,0.249909,0,0);}
.m5d_c01200{transform:matrix(0.152881,0.005203,-0.008504,0.249855,0,0);-ms-transform:matrix(0.152881,0.005203,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.152881,0.005203,-0.008504,0.249855,0,0);}
.mbd_c01200{transform:matrix(0.153946,0.001078,-0.001750,0.249994,0,0);-ms-transform:matrix(0.153946,0.001078,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.153946,0.001078,-0.001750,0.249994,0,0);}
.m86_c01200{transform:matrix(0.154214,0.004164,-0.006748,0.249909,0,0);-ms-transform:matrix(0.154214,0.004164,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.154214,0.004164,-0.006748,0.249909,0,0);}
.md2_c01200{transform:matrix(0.154400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154400,0.000000,0.000000,0.250000,0,0);}
.m5a_c01200{transform:matrix(0.157059,0.005345,-0.008504,0.249855,0,0);-ms-transform:matrix(0.157059,0.005345,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.157059,0.005345,-0.008504,0.249855,0,0);}
.m33_c01200{transform:matrix(0.157759,0.005369,-0.008504,0.249855,0,0);-ms-transform:matrix(0.157759,0.005369,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.157759,0.005369,-0.008504,0.249855,0,0);}
.md1_c01200{transform:matrix(0.159185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159185,0.000000,0.000000,0.250000,0,0);}
.m7f_c01200{transform:matrix(0.162741,0.004394,-0.006748,0.249909,0,0);-ms-transform:matrix(0.162741,0.004394,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.162741,0.004394,-0.006748,0.249909,0,0);}
.mda_c01200{transform:matrix(0.163049,0.003424,-0.005249,0.249945,0,0);-ms-transform:matrix(0.163049,0.003424,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.163049,0.003424,-0.005249,0.249945,0,0);}
.m29_c01200{transform:matrix(0.164140,0.005586,-0.008504,0.249855,0,0);-ms-transform:matrix(0.164140,0.005586,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.164140,0.005586,-0.008504,0.249855,0,0);}
.m2a_c01200{transform:matrix(0.164615,0.005603,-0.008504,0.249855,0,0);-ms-transform:matrix(0.164615,0.005603,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.164615,0.005603,-0.008504,0.249855,0,0);}
.mcc_c01200{transform:matrix(0.166900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166900,0.000000,0.000000,0.250000,0,0);}
.m20_c01200{transform:matrix(0.167493,0.005700,-0.008504,0.249855,0,0);-ms-transform:matrix(0.167493,0.005700,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.167493,0.005700,-0.008504,0.249855,0,0);}
.m28_c01200{transform:matrix(0.168682,0.005741,-0.008504,0.249855,0,0);-ms-transform:matrix(0.168682,0.005741,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.168682,0.005741,-0.008504,0.249855,0,0);}
.mb6_c01200{transform:matrix(0.172141,0.001205,-0.001750,0.249994,0,0);-ms-transform:matrix(0.172141,0.001205,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.172141,0.001205,-0.001750,0.249994,0,0);}
.mc3_c01200{transform:matrix(0.172587,0.004832,-0.006997,0.249902,0,0);-ms-transform:matrix(0.172587,0.004832,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.172587,0.004832,-0.006997,0.249902,0,0);}
.mc_c01200{transform:matrix(0.172762,0.003628,-0.005249,0.249945,0,0);-ms-transform:matrix(0.172762,0.003628,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.172762,0.003628,-0.005249,0.249945,0,0);}
.m2f_c01200{transform:matrix(0.174779,0.005948,-0.008504,0.249855,0,0);-ms-transform:matrix(0.174779,0.005948,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.174779,0.005948,-0.008504,0.249855,0,0);}
.m79_c01200{transform:matrix(0.175858,0.005985,-0.008504,0.249855,0,0);-ms-transform:matrix(0.175858,0.005985,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.175858,0.005985,-0.008504,0.249855,0,0);}
.m30_c01200{transform:matrix(0.175883,0.005986,-0.008504,0.249855,0,0);-ms-transform:matrix(0.175883,0.005986,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.175883,0.005986,-0.008504,0.249855,0,0);}
.m5e_c01200{transform:matrix(0.179661,0.006115,-0.008504,0.249855,0,0);-ms-transform:matrix(0.179661,0.006115,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.179661,0.006115,-0.008504,0.249855,0,0);}
.m85_c01200{transform:matrix(0.180489,0.004873,-0.006748,0.249909,0,0);-ms-transform:matrix(0.180489,0.004873,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.180489,0.004873,-0.006748,0.249909,0,0);}
.m9a_c01200{transform:matrix(0.181689,0.004906,-0.006748,0.249909,0,0);-ms-transform:matrix(0.181689,0.004906,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.181689,0.004906,-0.006748,0.249909,0,0);}
.m11_c01200{transform:matrix(0.182025,0.006195,-0.008504,0.249855,0,0);-ms-transform:matrix(0.182025,0.006195,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.182025,0.006195,-0.008504,0.249855,0,0);}
.m2e_c01200{transform:matrix(0.182065,0.006196,-0.008504,0.249855,0,0);-ms-transform:matrix(0.182065,0.006196,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.182065,0.006196,-0.008504,0.249855,0,0);}
.m21_c01200{transform:matrix(0.184808,0.006290,-0.008504,0.249855,0,0);-ms-transform:matrix(0.184808,0.006290,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.184808,0.006290,-0.008504,0.249855,0,0);}
.mb_c01200{transform:matrix(0.185259,0.003890,-0.005249,0.249945,0,0);-ms-transform:matrix(0.185259,0.003890,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.185259,0.003890,-0.005249,0.249945,0,0);}
.m60_c01200{transform:matrix(0.185458,0.006312,-0.008504,0.249855,0,0);-ms-transform:matrix(0.185458,0.006312,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.185458,0.006312,-0.008504,0.249855,0,0);}
.m1f_c01200{transform:matrix(0.187242,0.006373,-0.008504,0.249855,0,0);-ms-transform:matrix(0.187242,0.006373,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.187242,0.006373,-0.008504,0.249855,0,0);}
.m3a_c01200{transform:matrix(0.188556,0.006417,-0.008504,0.249855,0,0);-ms-transform:matrix(0.188556,0.006417,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.188556,0.006417,-0.008504,0.249855,0,0);}
.mce_c01200{transform:matrix(0.189095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189095,0.000000,0.000000,0.250000,0,0);}
.m36_c01200{transform:matrix(0.189106,0.006436,-0.008504,0.249855,0,0);-ms-transform:matrix(0.189106,0.006436,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.189106,0.006436,-0.008504,0.249855,0,0);}
.m7d_c01200{transform:matrix(0.189131,0.005107,-0.006748,0.249909,0,0);-ms-transform:matrix(0.189131,0.005107,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.189131,0.005107,-0.006748,0.249909,0,0);}
.m8f_c01200{transform:matrix(0.190226,0.005136,-0.006748,0.249909,0,0);-ms-transform:matrix(0.190226,0.005136,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.190226,0.005136,-0.006748,0.249909,0,0);}
.m3_c01200{transform:matrix(0.190413,0.003999,-0.005249,0.249945,0,0);-ms-transform:matrix(0.190413,0.003999,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.190413,0.003999,-0.005249,0.249945,0,0);}
.m22_c01200{transform:matrix(0.190740,0.006492,-0.008504,0.249855,0,0);-ms-transform:matrix(0.190740,0.006492,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.190740,0.006492,-0.008504,0.249855,0,0);}
.mcb_c01200{transform:matrix(0.191040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191040,0.000000,0.000000,0.250000,0,0);}
.mcd_c01200{transform:matrix(0.191875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191875,0.000000,0.000000,0.250000,0,0);}
.mcf_c01200{transform:matrix(0.192335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192335,0.000000,0.000000,0.250000,0,0);}
.m9f_c01200{transform:matrix(0.193864,0.005234,-0.006748,0.249909,0,0);-ms-transform:matrix(0.193864,0.005234,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.193864,0.005234,-0.006748,0.249909,0,0);}
.m9_c01200{transform:matrix(0.195847,0.004113,-0.005249,0.249945,0,0);-ms-transform:matrix(0.195847,0.004113,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.195847,0.004113,-0.005249,0.249945,0,0);}
.ma2_c01200{transform:matrix(0.195855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195855,0.000000,0.000000,0.250000,0,0);}
.m80_c01200{transform:matrix(0.196029,0.005293,-0.006748,0.249909,0,0);-ms-transform:matrix(0.196029,0.005293,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.196029,0.005293,-0.006748,0.249909,0,0);}
.ma0_c01200{transform:matrix(0.196598,0.005308,-0.006748,0.249909,0,0);-ms-transform:matrix(0.196598,0.005308,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.196598,0.005308,-0.006748,0.249909,0,0);}
.mc9_c01200{transform:matrix(0.197065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197065,0.000000,0.000000,0.250000,0,0);}
.m99_c01200{transform:matrix(0.197083,0.005321,-0.006748,0.249909,0,0);-ms-transform:matrix(0.197083,0.005321,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.197083,0.005321,-0.006748,0.249909,0,0);}
.m2c_c01200{transform:matrix(0.197870,0.006734,-0.008504,0.249855,0,0);-ms-transform:matrix(0.197870,0.006734,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.197870,0.006734,-0.008504,0.249855,0,0);}
.m7e_c01200{transform:matrix(0.198898,0.005370,-0.006748,0.249909,0,0);-ms-transform:matrix(0.198898,0.005370,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.198898,0.005370,-0.006748,0.249909,0,0);}
.md0_c01200{transform:matrix(0.199525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199525,0.000000,0.000000,0.250000,0,0);}
.m9c_c01200{transform:matrix(0.199642,0.005390,-0.006748,0.249909,0,0);-ms-transform:matrix(0.199642,0.005390,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.199642,0.005390,-0.006748,0.249909,0,0);}
.m84_c01200{transform:matrix(0.200082,0.005402,-0.006748,0.249909,0,0);-ms-transform:matrix(0.200082,0.005402,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.200082,0.005402,-0.006748,0.249909,0,0);}
.m4f_c01200{transform:matrix(0.200674,0.006830,-0.008504,0.249855,0,0);-ms-transform:matrix(0.200674,0.006830,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.200674,0.006830,-0.008504,0.249855,0,0);}
.m4b_c01200{transform:matrix(0.200764,0.006833,-0.008504,0.249855,0,0);-ms-transform:matrix(0.200764,0.006833,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.200764,0.006833,-0.008504,0.249855,0,0);}
.m9b_c01200{transform:matrix(0.201741,0.005447,-0.006748,0.249909,0,0);-ms-transform:matrix(0.201741,0.005447,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.201741,0.005447,-0.006748,0.249909,0,0);}
.m5_c01200{transform:matrix(0.201746,0.004237,-0.005249,0.249945,0,0);-ms-transform:matrix(0.201746,0.004237,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.201746,0.004237,-0.005249,0.249945,0,0);}
.ma1_c01200{transform:matrix(0.202225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202225,0.000000,0.000000,0.250000,0,0);}
.m1a_c01200{transform:matrix(0.203697,0.006933,-0.008504,0.249855,0,0);-ms-transform:matrix(0.203697,0.006933,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.203697,0.006933,-0.008504,0.249855,0,0);}
.m44_c01200{transform:matrix(0.203737,0.006934,-0.008504,0.249855,0,0);-ms-transform:matrix(0.203737,0.006934,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.203737,0.006934,-0.008504,0.249855,0,0);}
.m6_c01200{transform:matrix(0.203975,0.004283,-0.005249,0.249945,0,0);-ms-transform:matrix(0.203975,0.004283,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.203975,0.004283,-0.005249,0.249945,0,0);}
.m8_c01200{transform:matrix(0.206035,0.004327,-0.005249,0.249945,0,0);-ms-transform:matrix(0.206035,0.004327,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.206035,0.004327,-0.005249,0.249945,0,0);}
.m9d_c01200{transform:matrix(0.206485,0.005575,-0.006748,0.249909,0,0);-ms-transform:matrix(0.206485,0.005575,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.206485,0.005575,-0.006748,0.249909,0,0);}
.m34_c01200{transform:matrix(0.209099,0.007116,-0.008504,0.249855,0,0);-ms-transform:matrix(0.209099,0.007116,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.209099,0.007116,-0.008504,0.249855,0,0);}
.ma9_c01200{transform:matrix(0.209155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209155,0.000000,0.000000,0.250000,0,0);}
.m26_c01200{transform:matrix(0.209679,0.007136,-0.008504,0.249855,0,0);-ms-transform:matrix(0.209679,0.007136,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.209679,0.007136,-0.008504,0.249855,0,0);}
.m39_c01200{transform:matrix(0.209973,0.007146,-0.008504,0.249855,0,0);-ms-transform:matrix(0.209973,0.007146,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.209973,0.007146,-0.008504,0.249855,0,0);}
.md9_c01200{transform:matrix(0.210089,0.004412,-0.005249,0.249945,0,0);-ms-transform:matrix(0.210089,0.004412,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.210089,0.004412,-0.005249,0.249945,0,0);}
.m4d_c01200{transform:matrix(0.211198,0.007188,-0.008504,0.249855,0,0);-ms-transform:matrix(0.211198,0.007188,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.211198,0.007188,-0.008504,0.249855,0,0);}
.m35_c01200{transform:matrix(0.211627,0.007203,-0.008504,0.249855,0,0);-ms-transform:matrix(0.211627,0.007203,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.211627,0.007203,-0.008504,0.249855,0,0);}
.m64_c01200{transform:matrix(0.212027,0.007216,-0.008504,0.249855,0,0);-ms-transform:matrix(0.212027,0.007216,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.212027,0.007216,-0.008504,0.249855,0,0);}
.m25_c01200{transform:matrix(0.212087,0.007218,-0.008504,0.249855,0,0);-ms-transform:matrix(0.212087,0.007218,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.212087,0.007218,-0.008504,0.249855,0,0);}
.mbc_c01200{transform:matrix(0.212170,0.001485,-0.001750,0.249994,0,0);-ms-transform:matrix(0.212170,0.001485,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.212170,0.001485,-0.001750,0.249994,0,0);}
.m4_c01200{transform:matrix(0.212793,0.004469,-0.005249,0.249945,0,0);-ms-transform:matrix(0.212793,0.004469,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.212793,0.004469,-0.005249,0.249945,0,0);}
.m9e_c01200{transform:matrix(0.212967,0.005750,-0.006748,0.249909,0,0);-ms-transform:matrix(0.212967,0.005750,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.212967,0.005750,-0.006748,0.249909,0,0);}
.m92_c01200{transform:matrix(0.213642,0.005768,-0.006748,0.249909,0,0);-ms-transform:matrix(0.213642,0.005768,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.213642,0.005768,-0.006748,0.249909,0,0);}
.m2d_c01200{transform:matrix(0.214076,0.007286,-0.008504,0.249855,0,0);-ms-transform:matrix(0.214076,0.007286,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.214076,0.007286,-0.008504,0.249855,0,0);}
.m1e_c01200{transform:matrix(0.214696,0.007307,-0.008504,0.249855,0,0);-ms-transform:matrix(0.214696,0.007307,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.214696,0.007307,-0.008504,0.249855,0,0);}
.m94_c01200{transform:matrix(0.216256,0.005839,-0.006748,0.249909,0,0);-ms-transform:matrix(0.216256,0.005839,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.216256,0.005839,-0.006748,0.249909,0,0);}
.me2_c01200{transform:matrix(0.216287,0.004542,-0.005249,0.249945,0,0);-ms-transform:matrix(0.216287,0.004542,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.216287,0.004542,-0.005249,0.249945,0,0);}
.m4c_c01200{transform:matrix(0.216635,0.007373,-0.008504,0.249855,0,0);-ms-transform:matrix(0.216635,0.007373,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.216635,0.007373,-0.008504,0.249855,0,0);}
.m52_c01200{transform:matrix(0.218813,0.007447,-0.008504,0.249855,0,0);-ms-transform:matrix(0.218813,0.007447,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.218813,0.007447,-0.008504,0.249855,0,0);}
.m7_c01200{transform:matrix(0.219497,0.004609,-0.005249,0.249945,0,0);-ms-transform:matrix(0.219497,0.004609,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.219497,0.004609,-0.005249,0.249945,0,0);}
.m78_c01200{transform:matrix(0.219673,0.007476,-0.008504,0.249855,0,0);-ms-transform:matrix(0.219673,0.007476,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.219673,0.007476,-0.008504,0.249855,0,0);}
.mdf_c01200{transform:matrix(0.219707,0.004614,-0.005249,0.249945,0,0);-ms-transform:matrix(0.219707,0.004614,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.219707,0.004614,-0.005249,0.249945,0,0);}
.me0_c01200{transform:matrix(0.220176,0.004624,-0.005249,0.249945,0,0);-ms-transform:matrix(0.220176,0.004624,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.220176,0.004624,-0.005249,0.249945,0,0);}
.md_c01200{transform:matrix(0.220236,0.004625,-0.005249,0.249945,0,0);-ms-transform:matrix(0.220236,0.004625,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.220236,0.004625,-0.005249,0.249945,0,0);}
.mc1_c01200{transform:matrix(0.220634,0.006178,-0.006997,0.249902,0,0);-ms-transform:matrix(0.220634,0.006178,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.220634,0.006178,-0.006997,0.249902,0,0);}
.mc2_c01200{transform:matrix(0.220868,0.006184,-0.006997,0.249902,0,0);-ms-transform:matrix(0.220868,0.006184,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.220868,0.006184,-0.006997,0.249902,0,0);}
.m3c_c01200{transform:matrix(0.220932,0.007519,-0.008504,0.249855,0,0);-ms-transform:matrix(0.220932,0.007519,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.220932,0.007519,-0.008504,0.249855,0,0);}
.mdd_c01200{transform:matrix(0.221551,0.004653,-0.005249,0.249945,0,0);-ms-transform:matrix(0.221551,0.004653,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.221551,0.004653,-0.005249,0.249945,0,0);}
.me3_c01200{transform:matrix(0.221801,0.004658,-0.005249,0.249945,0,0);-ms-transform:matrix(0.221801,0.004658,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.221801,0.004658,-0.005249,0.249945,0,0);}
.me1_c01200{transform:matrix(0.221946,0.004661,-0.005249,0.249945,0,0);-ms-transform:matrix(0.221946,0.004661,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.221946,0.004661,-0.005249,0.249945,0,0);}
.m3b_c01200{transform:matrix(0.222266,0.007565,-0.008504,0.249855,0,0);-ms-transform:matrix(0.222266,0.007565,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.222266,0.007565,-0.008504,0.249855,0,0);}
.ma_c01200{transform:matrix(0.222666,0.004676,-0.005249,0.249945,0,0);-ms-transform:matrix(0.222666,0.004676,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.222666,0.004676,-0.005249,0.249945,0,0);}
.m42_c01200{transform:matrix(0.223056,0.007591,-0.008504,0.249855,0,0);-ms-transform:matrix(0.223056,0.007591,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.223056,0.007591,-0.008504,0.249855,0,0);}
.m31_c01200{transform:matrix(0.224990,0.007657,-0.008504,0.249855,0,0);-ms-transform:matrix(0.224990,0.007657,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.224990,0.007657,-0.008504,0.249855,0,0);}
.m38_c01200{transform:matrix(0.225090,0.007661,-0.008504,0.249855,0,0);-ms-transform:matrix(0.225090,0.007661,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.225090,0.007661,-0.008504,0.249855,0,0);}
.m37_c01200{transform:matrix(0.225315,0.007668,-0.008504,0.249855,0,0);-ms-transform:matrix(0.225315,0.007668,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.225315,0.007668,-0.008504,0.249855,0,0);}
.m98_c01200{transform:matrix(0.226143,0.006106,-0.006748,0.249909,0,0);-ms-transform:matrix(0.226143,0.006106,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.226143,0.006106,-0.006748,0.249909,0,0);}
.m76_c01200{transform:matrix(0.228683,0.007783,-0.008504,0.249855,0,0);-ms-transform:matrix(0.228683,0.007783,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.228683,0.007783,-0.008504,0.249855,0,0);}
.m70_c01200{transform:matrix(0.228907,0.007791,-0.008504,0.249855,0,0);-ms-transform:matrix(0.228907,0.007791,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.228907,0.007791,-0.008504,0.249855,0,0);}
.m4e_c01200{transform:matrix(0.229612,0.007815,-0.008504,0.249855,0,0);-ms-transform:matrix(0.229612,0.007815,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.229612,0.007815,-0.008504,0.249855,0,0);}
.m40_c01200{transform:matrix(0.232765,0.007922,-0.008504,0.249855,0,0);-ms-transform:matrix(0.232765,0.007922,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.232765,0.007922,-0.008504,0.249855,0,0);}
.m47_c01200{transform:matrix(0.233565,0.007949,-0.008504,0.249855,0,0);-ms-transform:matrix(0.233565,0.007949,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.233565,0.007949,-0.008504,0.249855,0,0);}
.m3f_c01200{transform:matrix(0.233965,0.007963,-0.008504,0.249855,0,0);-ms-transform:matrix(0.233965,0.007963,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.233965,0.007963,-0.008504,0.249855,0,0);}
.md4_c01200{transform:matrix(0.235080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235080,0.000000,0.000000,0.250000,0,0);}
.m45_c01200{transform:matrix(0.236103,0.008036,-0.008504,0.249855,0,0);-ms-transform:matrix(0.236103,0.008036,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.236103,0.008036,-0.008504,0.249855,0,0);}
.m41_c01200{transform:matrix(0.236378,0.008045,-0.008504,0.249855,0,0);-ms-transform:matrix(0.236378,0.008045,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.236378,0.008045,-0.008504,0.249855,0,0);}
.m43_c01200{transform:matrix(0.237448,0.008081,-0.008504,0.249855,0,0);-ms-transform:matrix(0.237448,0.008081,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.237448,0.008081,-0.008504,0.249855,0,0);}
.m91_c01200{transform:matrix(0.240312,0.006488,-0.006748,0.249909,0,0);-ms-transform:matrix(0.240312,0.006488,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.240312,0.006488,-0.006748,0.249909,0,0);}
.m62_c01200{transform:matrix(0.243329,0.008281,-0.008504,0.249855,0,0);-ms-transform:matrix(0.243329,0.008281,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.243329,0.008281,-0.008504,0.249855,0,0);}
.m90_c01200{transform:matrix(0.243701,0.006580,-0.006748,0.249909,0,0);-ms-transform:matrix(0.243701,0.006580,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.243701,0.006580,-0.006748,0.249909,0,0);}
.m14_c01200{transform:matrix(0.244084,0.008307,-0.008504,0.249855,0,0);-ms-transform:matrix(0.244084,0.008307,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.244084,0.008307,-0.008504,0.249855,0,0);}
.m12_c01200{transform:matrix(0.244608,0.008325,-0.008504,0.249855,0,0);-ms-transform:matrix(0.244608,0.008325,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.244608,0.008325,-0.008504,0.249855,0,0);}
.m66_c01200{transform:matrix(0.246532,0.008390,-0.008504,0.249855,0,0);-ms-transform:matrix(0.246532,0.008390,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.246532,0.008390,-0.008504,0.249855,0,0);}
.m68_c01200{transform:matrix(0.246692,0.008396,-0.008504,0.249855,0,0);-ms-transform:matrix(0.246692,0.008396,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.246692,0.008396,-0.008504,0.249855,0,0);}
.m72_c01200{transform:matrix(0.246702,0.008396,-0.008504,0.249855,0,0);-ms-transform:matrix(0.246702,0.008396,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.246702,0.008396,-0.008504,0.249855,0,0);}
.m95_c01200{transform:matrix(0.247015,0.006669,-0.006748,0.249909,0,0);-ms-transform:matrix(0.247015,0.006669,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.247015,0.006669,-0.006748,0.249909,0,0);}
.m53_c01200{transform:matrix(0.248366,0.008453,-0.008504,0.249855,0,0);-ms-transform:matrix(0.248366,0.008453,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.248366,0.008453,-0.008504,0.249855,0,0);}
.m67_c01200{transform:matrix(0.248591,0.008461,-0.008504,0.249855,0,0);-ms-transform:matrix(0.248591,0.008461,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.248591,0.008461,-0.008504,0.249855,0,0);}
.m63_c01200{transform:matrix(0.248861,0.008470,-0.008504,0.249855,0,0);-ms-transform:matrix(0.248861,0.008470,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.248861,0.008470,-0.008504,0.249855,0,0);}
.md8_c01200{transform:matrix(0.248975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248975,0.000000,0.000000,0.250000,0,0);}
.m51_c01200{transform:matrix(0.250880,0.008538,-0.008504,0.249855,0,0);-ms-transform:matrix(0.250880,0.008538,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.250880,0.008538,-0.008504,0.249855,0,0);}
.m3d_c01200{transform:matrix(0.251235,0.008551,-0.008504,0.249855,0,0);-ms-transform:matrix(0.251235,0.008551,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.251235,0.008551,-0.008504,0.249855,0,0);}
.m54_c01200{transform:matrix(0.252299,0.008587,-0.008504,0.249855,0,0);-ms-transform:matrix(0.252299,0.008587,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.252299,0.008587,-0.008504,0.249855,0,0);}
.m93_c01200{transform:matrix(0.252703,0.006823,-0.006748,0.249909,0,0);-ms-transform:matrix(0.252703,0.006823,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.252703,0.006823,-0.006748,0.249909,0,0);}
.m6a_c01200{transform:matrix(0.254033,0.008646,-0.008504,0.249855,0,0);-ms-transform:matrix(0.254033,0.008646,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.254033,0.008646,-0.008504,0.249855,0,0);}
.m13_c01200{transform:matrix(0.254807,0.008672,-0.008504,0.249855,0,0);-ms-transform:matrix(0.254807,0.008672,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.254807,0.008672,-0.008504,0.249855,0,0);}
.m69_c01200{transform:matrix(0.255162,0.008684,-0.008504,0.249855,0,0);-ms-transform:matrix(0.255162,0.008684,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.255162,0.008684,-0.008504,0.249855,0,0);}
.md6_c01200{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m65_c01200{transform:matrix(0.255987,0.008712,-0.008504,0.249855,0,0);-ms-transform:matrix(0.255987,0.008712,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.255987,0.008712,-0.008504,0.249855,0,0);}
.m61_c01200{transform:matrix(0.256711,0.008737,-0.008504,0.249855,0,0);-ms-transform:matrix(0.256711,0.008737,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.256711,0.008737,-0.008504,0.249855,0,0);}
.m55_c01200{transform:matrix(0.257961,0.008779,-0.008504,0.249855,0,0);-ms-transform:matrix(0.257961,0.008779,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.257961,0.008779,-0.008504,0.249855,0,0);}
.m6b_c01200{transform:matrix(0.258036,0.008782,-0.008504,0.249855,0,0);-ms-transform:matrix(0.258036,0.008782,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.258036,0.008782,-0.008504,0.249855,0,0);}
.me_c01200{transform:matrix(0.258330,0.008792,-0.008504,0.249855,0,0);-ms-transform:matrix(0.258330,0.008792,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.258330,0.008792,-0.008504,0.249855,0,0);}
.m87_c01200{transform:matrix(0.258586,0.006982,-0.006748,0.249909,0,0);-ms-transform:matrix(0.258586,0.006982,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.258586,0.006982,-0.006748,0.249909,0,0);}
.mad_c01200{transform:matrix(0.258999,0.001813,-0.001750,0.249994,0,0);-ms-transform:matrix(0.258999,0.001813,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.258999,0.001813,-0.001750,0.249994,0,0);}
.mb0_c01200{transform:matrix(0.259444,0.001816,-0.001750,0.249994,0,0);-ms-transform:matrix(0.259444,0.001816,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.259444,0.001816,-0.001750,0.249994,0,0);}
.md7_c01200{transform:matrix(0.260730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260730,0.000000,0.000000,0.250000,0,0);}
.md5_c01200{transform:matrix(0.261755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261755,0.000000,0.000000,0.250000,0,0);}
.m15_c01200{transform:matrix(0.264842,0.009014,-0.008504,0.249855,0,0);-ms-transform:matrix(0.264842,0.009014,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.264842,0.009014,-0.008504,0.249855,0,0);}
.m71_c01200{transform:matrix(0.265012,0.009019,-0.008504,0.249855,0,0);-ms-transform:matrix(0.265012,0.009019,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.265012,0.009019,-0.008504,0.249855,0,0);}
.m17_c01200{transform:matrix(0.266026,0.009054,-0.008504,0.249855,0,0);-ms-transform:matrix(0.266026,0.009054,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.266026,0.009054,-0.008504,0.249855,0,0);}
.md3_c01200{transform:matrix(0.266780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266780,0.000000,0.000000,0.250000,0,0);}
.mdb_c01200{transform:matrix(0.267436,0.005616,-0.005249,0.249945,0,0);-ms-transform:matrix(0.267436,0.005616,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.267436,0.005616,-0.005249,0.249945,0,0);}
.m6f_c01200{transform:matrix(0.269049,0.009157,-0.008504,0.249855,0,0);-ms-transform:matrix(0.269049,0.009157,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.269049,0.009157,-0.008504,0.249855,0,0);}
.mb1_c01200{transform:matrix(0.271053,0.001897,-0.001750,0.249994,0,0);-ms-transform:matrix(0.271053,0.001897,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.271053,0.001897,-0.001750,0.249994,0,0);}
.m74_c01200{transform:matrix(0.272877,0.009287,-0.008504,0.249855,0,0);-ms-transform:matrix(0.272877,0.009287,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.272877,0.009287,-0.008504,0.249855,0,0);}
.m6e_c01200{transform:matrix(0.273921,0.009323,-0.008504,0.249855,0,0);-ms-transform:matrix(0.273921,0.009323,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.273921,0.009323,-0.008504,0.249855,0,0);}
.m56_c01200{transform:matrix(0.275570,0.009379,-0.008504,0.249855,0,0);-ms-transform:matrix(0.275570,0.009379,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.275570,0.009379,-0.008504,0.249855,0,0);}
.mae_c01200{transform:matrix(0.276903,0.001938,-0.001750,0.249994,0,0);-ms-transform:matrix(0.276903,0.001938,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.276903,0.001938,-0.001750,0.249994,0,0);}
.m75_c01200{transform:matrix(0.278004,0.009462,-0.008504,0.249855,0,0);-ms-transform:matrix(0.278004,0.009462,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.278004,0.009462,-0.008504,0.249855,0,0);}
.m59_c01200{transform:matrix(0.281587,0.009584,-0.008504,0.249855,0,0);-ms-transform:matrix(0.281587,0.009584,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.281587,0.009584,-0.008504,0.249855,0,0);}
.mf_c01200{transform:matrix(0.282516,0.009615,-0.008504,0.249855,0,0);-ms-transform:matrix(0.282516,0.009615,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.282516,0.009615,-0.008504,0.249855,0,0);}
.m73_c01200{transform:matrix(0.282801,0.009625,-0.008504,0.249855,0,0);-ms-transform:matrix(0.282801,0.009625,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.282801,0.009625,-0.008504,0.249855,0,0);}
.m8e_c01200{transform:matrix(0.284436,0.007680,-0.006748,0.249909,0,0);-ms-transform:matrix(0.284436,0.007680,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.284436,0.007680,-0.006748,0.249909,0,0);}
.mc5_c01200{transform:matrix(0.285650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285650,0.000000,0.000000,0.250000,0,0);}
.m16_c01200{transform:matrix(0.287059,0.009770,-0.008504,0.249855,0,0);-ms-transform:matrix(0.287059,0.009770,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.287059,0.009770,-0.008504,0.249855,0,0);}
.mac_c01200{transform:matrix(0.289228,0.002025,-0.001750,0.249994,0,0);-ms-transform:matrix(0.289228,0.002025,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.289228,0.002025,-0.001750,0.249994,0,0);}
.m50_c01200{transform:matrix(0.289367,0.009848,-0.008504,0.249855,0,0);-ms-transform:matrix(0.289367,0.009848,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.289367,0.009848,-0.008504,0.249855,0,0);}
.mb3_c01200{transform:matrix(0.292233,0.002046,-0.001750,0.249994,0,0);-ms-transform:matrix(0.292233,0.002046,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.292233,0.002046,-0.001750,0.249994,0,0);}
.m57_c01200{transform:matrix(0.293250,0.009980,-0.008504,0.249855,0,0);-ms-transform:matrix(0.293250,0.009980,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.293250,0.009980,-0.008504,0.249855,0,0);}
.m77_c01200{transform:matrix(0.293335,0.009983,-0.008504,0.249855,0,0);-ms-transform:matrix(0.293335,0.009983,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.293335,0.009983,-0.008504,0.249855,0,0);}
.mde_c01200{transform:matrix(0.294120,0.006177,-0.005249,0.249945,0,0);-ms-transform:matrix(0.294120,0.006177,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.294120,0.006177,-0.005249,0.249945,0,0);}
.mc6_c01200{transform:matrix(0.294955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294955,0.000000,0.000000,0.250000,0,0);}
.mb2_c01200{transform:matrix(0.295268,0.002067,-0.001750,0.249994,0,0);-ms-transform:matrix(0.295268,0.002067,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.295268,0.002067,-0.001750,0.249994,0,0);}
.maf_c01200{transform:matrix(0.297238,0.002081,-0.001750,0.249994,0,0);-ms-transform:matrix(0.297238,0.002081,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.297238,0.002081,-0.001750,0.249994,0,0);}
.m19_c01200{transform:matrix(0.299052,0.010178,-0.008504,0.249855,0,0);-ms-transform:matrix(0.299052,0.010178,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.299052,0.010178,-0.008504,0.249855,0,0);}
.m2_c01200{transform:matrix(0.299505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299505,0.000000,0.000000,0.250000,0,0);}
.mb4_c01200{transform:matrix(0.300763,0.002105,-0.001750,0.249994,0,0);-ms-transform:matrix(0.300763,0.002105,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.300763,0.002105,-0.001750,0.249994,0,0);}
.m1_c01200{transform:matrix(0.301075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301075,0.000000,0.000000,0.250000,0,0);}
.m18_c01200{transform:matrix(0.311360,0.010597,-0.008504,0.249855,0,0);-ms-transform:matrix(0.311360,0.010597,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.311360,0.010597,-0.008504,0.249855,0,0);}
.m58_c01200{transform:matrix(0.317816,0.010817,-0.008504,0.249855,0,0);-ms-transform:matrix(0.317816,0.010817,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.317816,0.010817,-0.008504,0.249855,0,0);}
.m8b_c01200{transform:matrix(0.321728,0.008687,-0.006748,0.249909,0,0);-ms-transform:matrix(0.321728,0.008687,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.321728,0.008687,-0.006748,0.249909,0,0);}
.m88_c01200{transform:matrix(0.326351,0.008811,-0.006748,0.249909,0,0);-ms-transform:matrix(0.326351,0.008811,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.326351,0.008811,-0.006748,0.249909,0,0);}
.m24_c01200{transform:matrix(0.332128,0.011304,-0.008504,0.249855,0,0);-ms-transform:matrix(0.332128,0.011304,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.332128,0.011304,-0.008504,0.249855,0,0);}
.m27_c01200{transform:matrix(0.332977,0.011333,-0.008504,0.249855,0,0);-ms-transform:matrix(0.332977,0.011333,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.332977,0.011333,-0.008504,0.249855,0,0);}
.mc7_c01200{transform:matrix(0.337135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337135,0.000000,0.000000,0.250000,0,0);}
.mb5_c01200{transform:matrix(0.344117,0.002409,-0.001750,0.249994,0,0);-ms-transform:matrix(0.344117,0.002409,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.344117,0.002409,-0.001750,0.249994,0,0);}
.mab_c01200{transform:matrix(0.346612,0.002426,-0.001750,0.249994,0,0);-ms-transform:matrix(0.346612,0.002426,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.346612,0.002426,-0.001750,0.249994,0,0);}
.mbb_c01200{transform:matrix(0.349601,0.002447,-0.001750,0.249994,0,0);-ms-transform:matrix(0.349601,0.002447,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.349601,0.002447,-0.001750,0.249994,0,0);}
.m89_c01200{transform:matrix(0.350032,0.009451,-0.006748,0.249909,0,0);-ms-transform:matrix(0.350032,0.009451,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.350032,0.009451,-0.006748,0.249909,0,0);}
.mc8_c01200{transform:matrix(0.359675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359675,0.000000,0.000000,0.250000,0,0);}
.ma8_c01200{transform:matrix(0.361520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361520,0.000000,0.000000,0.250000,0,0);}
.mdc_c01200{transform:matrix(0.385515,0.008096,-0.005249,0.249945,0,0);-ms-transform:matrix(0.385515,0.008096,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.385515,0.008096,-0.005249,0.249945,0,0);}
.m8a_c01200{transform:matrix(0.404148,0.010912,-0.006748,0.249909,0,0);-ms-transform:matrix(0.404148,0.010912,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.404148,0.010912,-0.006748,0.249909,0,0);}
.m23_c01200{transform:matrix(0.614574,0.020916,-0.008504,0.249855,0,0);-ms-transform:matrix(0.614574,0.020916,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.614574,0.020916,-0.008504,0.249855,0,0);}
.m7a_c01200{transform:matrix(0.833697,0.028374,-0.008504,0.249855,0,0);-ms-transform:matrix(0.833697,0.028374,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.833697,0.028374,-0.008504,0.249855,0,0);}
.m6d_c01200{transform:matrix(0.950515,0.032350,-0.008504,0.249855,0,0);-ms-transform:matrix(0.950515,0.032350,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.950515,0.032350,-0.008504,0.249855,0,0);}
.v0_c01200{vertical-align:0.000000px;}
.ls0_c01200{letter-spacing:0.000000px;}
.sc__c01200{text-shadow:none;}
.sc0_c01200{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__c01200{-webkit-text-stroke:0px transparent;}
.sc0_c01200{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01200{word-spacing:0.000000px;}
.fc0_c01200{color:transparent;}
.fsa_c01200{font-size:54.019679px;}
.fs12_c01200{font-size:66.000000px;}
.fsf_c01200{font-size:66.001617px;}
.fs2_c01200{font-size:71.969646px;}
.fs13_c01200{font-size:72.000000px;}
.fs3_c01200{font-size:77.967116px;}
.fsb_c01200{font-size:78.028426px;}
.fs6_c01200{font-size:83.964587px;}
.fs7_c01200{font-size:89.962057px;}
.fs1_c01200{font-size:90.019843px;}
.fs11_c01200{font-size:90.035273px;}
.fsc_c01200{font-size:96.034986px;}
.fs4_c01200{font-size:101.956998px;}
.fs0_c01200{font-size:102.000000px;}
.fs9_c01200{font-size:102.037172px;}
.fs5_c01200{font-size:119.949409px;}
.fse_c01200{font-size:132.000000px;}
.fs10_c01200{font-size:132.003234px;}
.fs8_c01200{font-size:137.941821px;}
.fsd_c01200{font-size:138.000000px;}
.y0_c01200{bottom:0.000000px;}
.ye1_c01200{bottom:30.139293px;}
.ye0_c01200{bottom:30.603414px;}
.ydf_c01200{bottom:32.245005px;}
.yde_c01200{bottom:34.355316px;}
.ydd_c01200{bottom:35.025069px;}
.ydc_c01200{bottom:36.159163px;}
.ydb_c01200{bottom:37.583089px;}
.yda_c01200{bottom:39.664704px;}
.yd9_c01200{bottom:40.770354px;}
.yd8_c01200{bottom:41.758036px;}
.yd7_c01200{bottom:42.818641px;}
.yd6_c01200{bottom:44.017500px;}
.yd5_c01200{bottom:75.606000px;}
.yd4_c01200{bottom:78.547500px;}
.yd3_c01200{bottom:80.686500px;}
.yd2_c01200{bottom:82.267500px;}
.yd1_c01200{bottom:83.058000px;}
.yd0_c01200{bottom:85.131000px;}
.ycf_c01200{bottom:86.403000px;}
.yce_c01200{bottom:87.216000px;}
.ycd_c01200{bottom:111.832500px;}
.ycc_c01200{bottom:113.118000px;}
.ycb_c01200{bottom:114.660000px;}
.yca_c01200{bottom:116.500500px;}
.yc9_c01200{bottom:117.079500px;}
.yc8_c01200{bottom:118.561500px;}
.yc7_c01200{bottom:119.458500px;}
.yc6_c01200{bottom:120.426000px;}
.yc5_c01200{bottom:156.181500px;}
.yc4_c01200{bottom:186.377136px;}
.yc3_c01200{bottom:189.826092px;}
.yc2_c01200{bottom:192.624930px;}
.yc1_c01200{bottom:193.727556px;}
.yc0_c01200{bottom:194.676000px;}
.ybf_c01200{bottom:211.504827px;}
.ybe_c01200{bottom:213.143923px;}
.ybd_c01200{bottom:213.398643px;}
.ybc_c01200{bottom:214.176312px;}
.ybb_c01200{bottom:214.813362px;}
.yba_c01200{bottom:215.424764px;}
.yb9_c01200{bottom:215.596869px;}
.yb8_c01200{bottom:216.208407px;}
.yb7_c01200{bottom:217.081383px;}
.yb6_c01200{bottom:253.522251px;}
.yb5_c01200{bottom:254.384217px;}
.yb4_c01200{bottom:254.692508px;}
.yb3_c01200{bottom:255.155589px;}
.yb2_c01200{bottom:255.471093px;}
.yb1_c01200{bottom:255.701830px;}
.yb0_c01200{bottom:256.231125px;}
.yaf_c01200{bottom:256.705651px;}
.yae_c01200{bottom:257.013732px;}
.yad_c01200{bottom:257.626113px;}
.yac_c01200{bottom:258.391500px;}
.yab_c01200{bottom:284.827500px;}
.yaa_c01200{bottom:285.171000px;}
.ya9_c01200{bottom:286.363500px;}
.ya8_c01200{bottom:287.035500px;}
.ya7_c01200{bottom:287.478000px;}
.ya6_c01200{bottom:288.352500px;}
.ya5_c01200{bottom:288.876000px;}
.ya4_c01200{bottom:289.443000px;}
.ya3_c01200{bottom:327.780000px;}
.ya2_c01200{bottom:352.991013px;}
.ya1_c01200{bottom:356.241745px;}
.ya0_c01200{bottom:359.287872px;}
.y9f_c01200{bottom:361.947547px;}
.y9e_c01200{bottom:363.157849px;}
.y9d_c01200{bottom:365.210511px;}
.y9c_c01200{bottom:366.415872px;}
.y9b_c01200{bottom:368.211521px;}
.y9a_c01200{bottom:370.173016px;}
.y99_c01200{bottom:371.406160px;}
.y98_c01200{bottom:372.336000px;}
.y97_c01200{bottom:397.674677px;}
.y96_c01200{bottom:398.542065px;}
.y95_c01200{bottom:401.189914px;}
.y94_c01200{bottom:402.407507px;}
.y93_c01200{bottom:403.888227px;}
.y92_c01200{bottom:405.666136px;}
.y91_c01200{bottom:406.790741px;}
.y90_c01200{bottom:407.146452px;}
.y8f_c01200{bottom:407.706000px;}
.y8e_c01200{bottom:421.003582px;}
.y8d_c01200{bottom:436.025070px;}
.y8c_c01200{bottom:437.583551px;}
.y8b_c01200{bottom:438.877809px;}
.y8a_c01200{bottom:440.229505px;}
.y89_c01200{bottom:441.715481px;}
.y88_c01200{bottom:458.839493px;}
.y87_c01200{bottom:460.065914px;}
.y86_c01200{bottom:462.793953px;}
.y85_c01200{bottom:463.659357px;}
.y84_c01200{bottom:464.578950px;}
.y83_c01200{bottom:465.752194px;}
.y82_c01200{bottom:468.707317px;}
.y81_c01200{bottom:469.932200px;}
.y80_c01200{bottom:472.926324px;}
.y7f_c01200{bottom:475.561011px;}
.y7e_c01200{bottom:476.977499px;}
.y7d_c01200{bottom:477.907500px;}
.y7c_c01200{bottom:501.777129px;}
.y7b_c01200{bottom:504.875730px;}
.y7a_c01200{bottom:529.880964px;}
.y79_c01200{bottom:531.251874px;}
.y78_c01200{bottom:532.069458px;}
.y77_c01200{bottom:534.307188px;}
.y76_c01200{bottom:535.673630px;}
.y75_c01200{bottom:538.739187px;}
.y74_c01200{bottom:539.549925px;}
.y73_c01200{bottom:540.900666px;}
.y72_c01200{bottom:542.029284px;}
.y71_c01200{bottom:543.718667px;}
.y70_c01200{bottom:546.149382px;}
.y6f_c01200{bottom:548.604939px;}
.y6e_c01200{bottom:573.423568px;}
.y6d_c01200{bottom:582.335088px;}
.y6c_c01200{bottom:602.903800px;}
.y6b_c01200{bottom:603.709536px;}
.y6a_c01200{bottom:604.514201px;}
.y69_c01200{bottom:606.603498px;}
.y68_c01200{bottom:607.700190px;}
.y67_c01200{bottom:610.592826px;}
.y66_c01200{bottom:611.688396px;}
.y65_c01200{bottom:613.557339px;}
.y64_c01200{bottom:614.868662px;}
.y63_c01200{bottom:617.006544px;}
.y62_c01200{bottom:618.229595px;}
.y61_c01200{bottom:619.042870px;}
.y60_c01200{bottom:637.362781px;}
.y5f_c01200{bottom:646.390035px;}
.y5e_c01200{bottom:649.005387px;}
.y5d_c01200{bottom:649.591004px;}
.y5c_c01200{bottom:650.616513px;}
.y5b_c01200{bottom:672.836192px;}
.y5a_c01200{bottom:673.671960px;}
.y59_c01200{bottom:675.154181px;}
.y58_c01200{bottom:676.313175px;}
.y57_c01200{bottom:677.730809px;}
.y56_c01200{bottom:680.272026px;}
.y55_c01200{bottom:683.186204px;}
.y54_c01200{bottom:685.476648px;}
.y53_c01200{bottom:686.332923px;}
.y52_c01200{bottom:688.615431px;}
.y51_c01200{bottom:690.560256px;}
.y50_c01200{bottom:709.155986px;}
.y4f_c01200{bottom:711.661731px;}
.y4e_c01200{bottom:713.221055px;}
.y4d_c01200{bottom:716.217132px;}
.y4c_c01200{bottom:718.792318px;}
.y4b_c01200{bottom:720.787653px;}
.y4a_c01200{bottom:741.723309px;}
.y49_c01200{bottom:742.335696px;}
.y48_c01200{bottom:744.313274px;}
.y47_c01200{bottom:744.721196px;}
.y46_c01200{bottom:745.900647px;}
.y45_c01200{bottom:746.537936px;}
.y44_c01200{bottom:748.494786px;}
.y43_c01200{bottom:749.926536px;}
.y42_c01200{bottom:751.912788px;}
.y41_c01200{bottom:753.295226px;}
.y40_c01200{bottom:755.067153px;}
.y3f_c01200{bottom:780.254351px;}
.y3e_c01200{bottom:786.935625px;}
.y3d_c01200{bottom:816.804009px;}
.y3c_c01200{bottom:817.656423px;}
.y3b_c01200{bottom:819.324126px;}
.y3a_c01200{bottom:820.149984px;}
.y39_c01200{bottom:822.931319px;}
.y38_c01200{bottom:825.917604px;}
.y37_c01200{bottom:827.072452px;}
.y36_c01200{bottom:828.451637px;}
.y35_c01200{bottom:830.368733px;}
.y34_c01200{bottom:831.660179px;}
.y33_c01200{bottom:832.251050px;}
.y32_c01200{bottom:862.484354px;}
.y31_c01200{bottom:883.469531px;}
.y30_c01200{bottom:884.133779px;}
.y2f_c01200{bottom:885.674889px;}
.y2e_c01200{bottom:886.550202px;}
.y2d_c01200{bottom:887.268788px;}
.y2c_c01200{bottom:889.269264px;}
.y2b_c01200{bottom:890.555687px;}
.y2a_c01200{bottom:892.540031px;}
.y29_c01200{bottom:894.507171px;}
.y28_c01200{bottom:896.487914px;}
.y27_c01200{bottom:950.960988px;}
.y26_c01200{bottom:953.545378px;}
.y25_c01200{bottom:955.087039px;}
.y24_c01200{bottom:955.578239px;}
.y23_c01200{bottom:958.633003px;}
.y22_c01200{bottom:960.367510px;}
.y21_c01200{bottom:962.194508px;}
.y20_c01200{bottom:963.194415px;}
.y1f_c01200{bottom:965.437599px;}
.y1e_c01200{bottom:966.663869px;}
.y1d_c01200{bottom:967.195104px;}
.y1c_c01200{bottom:984.710237px;}
.y1b_c01200{bottom:991.809522px;}
.y1a_c01200{bottom:997.421927px;}
.y19_c01200{bottom:1027.240050px;}
.y18_c01200{bottom:1028.816901px;}
.y17_c01200{bottom:1029.429269px;}
.y16_c01200{bottom:1031.006120px;}
.y15_c01200{bottom:1031.838179px;}
.y14_c01200{bottom:1032.782426px;}
.y13_c01200{bottom:1034.407620px;}
.y12_c01200{bottom:1036.582817px;}
.y11_c01200{bottom:1038.148800px;}
.y10_c01200{bottom:1039.104774px;}
.yf_c01200{bottom:1039.519707px;}
.ye_c01200{bottom:1072.434369px;}
.yd_c01200{bottom:1073.535000px;}
.yc_c01200{bottom:1098.241551px;}
.yb_c01200{bottom:1098.905256px;}
.ya_c01200{bottom:1099.625440px;}
.y9_c01200{bottom:1101.729609px;}
.y8_c01200{bottom:1102.427334px;}
.y7_c01200{bottom:1103.567476px;}
.y6_c01200{bottom:1106.136238px;}
.y5_c01200{bottom:1107.514206px;}
.y4_c01200{bottom:1108.228721px;}
.y3_c01200{bottom:1110.049232px;}
.y2_c01200{bottom:1112.134500px;}
.y1_c01200{bottom:1178.809500px;}
.hc_c01200{height:54.019679px;}
.h14_c01200{height:66.000000px;}
.h11_c01200{height:66.001617px;}
.h4_c01200{height:71.969646px;}
.h15_c01200{height:72.000000px;}
.h5_c01200{height:77.967116px;}
.hd_c01200{height:78.028426px;}
.h8_c01200{height:83.964587px;}
.h9_c01200{height:89.962057px;}
.h3_c01200{height:90.019843px;}
.h13_c01200{height:90.035273px;}
.he_c01200{height:96.034986px;}
.h6_c01200{height:101.956998px;}
.h2_c01200{height:102.000000px;}
.hb_c01200{height:102.037172px;}
.h7_c01200{height:119.949409px;}
.h10_c01200{height:132.000000px;}
.h12_c01200{height:132.003234px;}
.ha_c01200{height:137.941821px;}
.hf_c01200{height:138.000000px;}
.h1_c01200{height:1258.500000px;}
.h0_c01200{height:1258.740000px;}
.w0_c01200{width:904.200000px;}
.w1_c01200{width:904.500000px;}
.x0_c01200{left:0.000000px;}
.x9c_c01200{left:102.283500px;}
.x82_c01200{left:105.067500px;}
.x5c_c01200{left:119.747324px;}
.x38_c01200{left:121.517240px;}
.x27_c01200{left:123.514416px;}
.xa1_c01200{left:125.350500px;}
.x4_c01200{left:127.236000px;}
.x7a_c01200{left:128.287500px;}
.x66_c01200{left:129.885000px;}
.x54_c01200{left:132.079172px;}
.x48_c01200{left:144.255728px;}
.x2f_c01200{left:145.900538px;}
.x1d_c01200{left:147.947328px;}
.x11_c01200{left:149.409669px;}
.x98_c01200{left:151.200000px;}
.x9d_c01200{left:159.178500px;}
.x94_c01200{left:160.546500px;}
.x83_c01200{left:161.835000px;}
.x74_c01200{left:162.996000px;}
.x67_c01200{left:164.329500px;}
.x55_c01200{left:165.937317px;}
.x30_c01200{left:169.521143px;}
.x1e_c01200{left:171.005874px;}
.x12_c01200{left:172.445169px;}
.x95_c01200{left:199.926000px;}
.x75_c01200{left:204.648000px;}
.x7b_c01200{left:208.398000px;}
.x80_c01200{left:211.950000px;}
.x81_c01200{left:213.030000px;}
.x64_c01200{left:214.794711px;}
.x37_c01200{left:217.775307px;}
.x39_c01200{left:219.732876px;}
.x1a_c01200{left:221.515467px;}
.x2e_c01200{left:223.554039px;}
.xf_c01200{left:224.730000px;}
.x5_c01200{left:226.534500px;}
.x42_c01200{left:232.133135px;}
.x99_c01200{left:244.620000px;}
.x51_c01200{left:252.913068px;}
.x10_c01200{left:257.069129px;}
.x6f_c01200{left:261.667935px;}
.x76_c01200{left:270.496500px;}
.x7c_c01200{left:281.046000px;}
.x8d_c01200{left:289.811039px;}
.x3a_c01200{left:296.365875px;}
.x31_c01200{left:297.737607px;}
.x96_c01200{left:299.884500px;}
.x84_c01200{left:301.621500px;}
.x70_c01200{left:303.891725px;}
.x49_c01200{left:306.638393px;}
.xa5_c01200{left:308.979000px;}
.x9a_c01200{left:310.230000px;}
.x8e_c01200{left:311.397392px;}
.x6_c01200{left:313.225500px;}
.x5d_c01200{left:314.935721px;}
.x43_c01200{left:318.751847px;}
.x28_c01200{left:320.620547px;}
.x1f_c01200{left:321.655485px;}
.x77_c01200{left:325.338000px;}
.xa2_c01200{left:331.453500px;}
.x9e_c01200{left:333.172500px;}
.x4a_c01200{left:339.555927px;}
.x71_c01200{left:344.321757px;}
.x85_c01200{left:345.903000px;}
.x7_c01200{left:347.250000px;}
.x32_c01200{left:352.807829px;}
.x56_c01200{left:360.303368px;}
.x20_c01200{left:365.096786px;}
.x65_c01200{left:369.491078px;}
.x5e_c01200{left:382.426338px;}
.x8f_c01200{left:387.811356px;}
.x9b_c01200{left:389.340000px;}
.x72_c01200{left:393.036696px;}
.xa3_c01200{left:397.354500px;}
.x1_c01200{left:398.790000px;}
.x3b_c01200{left:406.477088px;}
.xa6_c01200{left:408.103500px;}
.x8_c01200{left:412.867500px;}
.x2_c01200{left:420.390000px;}
.x97_c01200{left:423.061500px;}
.x68_c01200{left:425.266500px;}
.x4b_c01200{left:427.528310px;}
.x52_c01200{left:428.847392px;}
.x44_c01200{left:430.518779px;}
.x13_c01200{left:433.002273px;}
.x57_c01200{left:438.050987px;}
.x9f_c01200{left:441.480000px;}
.x21_c01200{left:444.433082px;}
.x3_c01200{left:463.590000px;}
.x90_c01200{left:467.460800px;}
.x78_c01200{left:468.502500px;}
.x69_c01200{left:470.632500px;}
.x1b_c01200{left:476.213006px;}
.x5f_c01200{left:481.459530px;}
.x29_c01200{left:483.857897px;}
.x3c_c01200{left:485.837337px;}
.x88_c01200{left:488.607000px;}
.x79_c01200{left:500.628000px;}
.x60_c01200{left:513.832529px;}
.x33_c01200{left:518.211902px;}
.x22_c01200{left:519.729390px;}
.x89_c01200{left:521.569500px;}
.x14_c01200{left:523.115630px;}
.xa7_c01200{left:529.914000px;}
.x86_c01200{left:532.425000px;}
.x9_c01200{left:535.189500px;}
.x4c_c01200{left:539.469734px;}
.x45_c01200{left:560.559260px;}
.xa8_c01200{left:561.807000px;}
.x91_c01200{left:564.627117px;}
.x87_c01200{left:566.773500px;}
.x5b_c01200{left:574.033752px;}
.x15_c01200{left:575.456723px;}
.x6a_c01200{left:580.081500px;}
.x2a_c01200{left:583.675508px;}
.xa_c01200{left:589.482000px;}
.x3d_c01200{left:594.335297px;}
.x92_c01200{left:596.515397px;}
.x58_c01200{left:603.986847px;}
.xa0_c01200{left:607.798500px;}
.xa4_c01200{left:609.054000px;}
.x7d_c01200{left:611.551500px;}
.x2b_c01200{left:619.556193px;}
.x16_c01200{left:621.592158px;}
.xb_c01200{left:622.707000px;}
.x46_c01200{left:628.283840px;}
.x34_c01200{left:629.335718px;}
.x8a_c01200{left:632.796000px;}
.x4d_c01200{left:637.102601px;}
.x59_c01200{left:649.610697px;}
.x23_c01200{left:652.331777px;}
.x6b_c01200{left:657.594000px;}
.x2c_c01200{left:663.259775px;}
.x24_c01200{left:673.640910px;}
.x8b_c01200{left:676.837500px;}
.x6c_c01200{left:689.646000px;}
.x4e_c01200{left:691.583421px;}
.x3e_c01200{left:695.057802px;}
.x17_c01200{left:709.006735px;}
.x3f_c01200{left:717.710981px;}
.xc_c01200{left:722.905500px;}
.x7e_c01200{left:724.371000px;}
.x35_c01200{left:728.962520px;}
.x47_c01200{left:737.040662px;}
.x25_c01200{left:740.537961px;}
.x18_c01200{left:743.000739px;}
.xd_c01200{left:757.200000px;}
.x36_c01200{left:763.000862px;}
.x5a_c01200{left:769.994635px;}
.x2d_c01200{left:773.329025px;}
.x61_c01200{left:780.245429px;}
.xe_c01200{left:788.805000px;}
.x6d_c01200{left:790.684500px;}
.x4f_c01200{left:792.991979px;}
.x1c_c01200{left:798.402053px;}
.x8c_c01200{left:799.975500px;}
.x93_c01200{left:801.313458px;}
.x53_c01200{left:804.422721px;}
.x62_c01200{left:812.907740px;}
.x50_c01200{left:825.086582px;}
.x40_c01200{left:827.346914px;}
.x19_c01200{left:830.415316px;}
.x6e_c01200{left:836.107500px;}
.x7f_c01200{left:844.768500px;}
.x26_c01200{left:852.751650px;}
.x41_c01200{left:861.297410px;}
.x73_c01200{left:862.435854px;}
.x63_c01200{left:867.646691px;}
@media print{
.v0_c01200{vertical-align:0.000000pt;}
.ls0_c01200{letter-spacing:0.000000pt;}
.ws0_c01200{word-spacing:0.000000pt;}
.fsa_c01200{font-size:48.017493pt;}
.fs12_c01200{font-size:58.666667pt;}
.fsf_c01200{font-size:58.668104pt;}
.fs2_c01200{font-size:63.973018pt;}
.fs13_c01200{font-size:64.000000pt;}
.fs3_c01200{font-size:69.304103pt;}
.fsb_c01200{font-size:69.358601pt;}
.fs6_c01200{font-size:74.635188pt;}
.fs7_c01200{font-size:79.966273pt;}
.fs1_c01200{font-size:80.017638pt;}
.fs11_c01200{font-size:80.031354pt;}
.fsc_c01200{font-size:85.364432pt;}
.fs4_c01200{font-size:90.628443pt;}
.fs0_c01200{font-size:90.666667pt;}
.fs9_c01200{font-size:90.699709pt;}
.fs5_c01200{font-size:106.621697pt;}
.fse_c01200{font-size:117.333333pt;}
.fs10_c01200{font-size:117.336208pt;}
.fs8_c01200{font-size:122.614952pt;}
.fsd_c01200{font-size:122.666667pt;}
.y0_c01200{bottom:0.000000pt;}
.ye1_c01200{bottom:26.790483pt;}
.ye0_c01200{bottom:27.203035pt;}
.ydf_c01200{bottom:28.662227pt;}
.yde_c01200{bottom:30.538059pt;}
.ydd_c01200{bottom:31.133395pt;}
.ydc_c01200{bottom:32.141479pt;}
.ydb_c01200{bottom:33.407191pt;}
.yda_c01200{bottom:35.257515pt;}
.yd9_c01200{bottom:36.240315pt;}
.yd8_c01200{bottom:37.118255pt;}
.yd7_c01200{bottom:38.061015pt;}
.yd6_c01200{bottom:39.126667pt;}
.yd5_c01200{bottom:67.205333pt;}
.yd4_c01200{bottom:69.820000pt;}
.yd3_c01200{bottom:71.721333pt;}
.yd2_c01200{bottom:73.126667pt;}
.yd1_c01200{bottom:73.829333pt;}
.yd0_c01200{bottom:75.672000pt;}
.ycf_c01200{bottom:76.802667pt;}
.yce_c01200{bottom:77.525333pt;}
.ycd_c01200{bottom:99.406667pt;}
.ycc_c01200{bottom:100.549333pt;}
.ycb_c01200{bottom:101.920000pt;}
.yca_c01200{bottom:103.556000pt;}
.yc9_c01200{bottom:104.070667pt;}
.yc8_c01200{bottom:105.388000pt;}
.yc7_c01200{bottom:106.185333pt;}
.yc6_c01200{bottom:107.045333pt;}
.yc5_c01200{bottom:138.828000pt;}
.yc4_c01200{bottom:165.668565pt;}
.yc3_c01200{bottom:168.734304pt;}
.yc2_c01200{bottom:171.222160pt;}
.yc1_c01200{bottom:172.202272pt;}
.yc0_c01200{bottom:173.045333pt;}
.ybf_c01200{bottom:188.004291pt;}
.ybe_c01200{bottom:189.461265pt;}
.ybd_c01200{bottom:189.687683pt;}
.ybc_c01200{bottom:190.378944pt;}
.ybb_c01200{bottom:190.945211pt;}
.yba_c01200{bottom:191.488679pt;}
.yb9_c01200{bottom:191.641661pt;}
.yb8_c01200{bottom:192.185251pt;}
.yb7_c01200{bottom:192.961229pt;}
.yb6_c01200{bottom:225.353112pt;}
.yb5_c01200{bottom:226.119304pt;}
.yb4_c01200{bottom:226.393340pt;}
.yb3_c01200{bottom:226.804968pt;}
.yb2_c01200{bottom:227.085416pt;}
.yb1_c01200{bottom:227.290516pt;}
.yb0_c01200{bottom:227.761000pt;}
.yaf_c01200{bottom:228.182801pt;}
.yae_c01200{bottom:228.456651pt;}
.yad_c01200{bottom:229.000989pt;}
.yac_c01200{bottom:229.681333pt;}
.yab_c01200{bottom:253.180000pt;}
.yaa_c01200{bottom:253.485333pt;}
.ya9_c01200{bottom:254.545333pt;}
.ya8_c01200{bottom:255.142667pt;}
.ya7_c01200{bottom:255.536000pt;}
.ya6_c01200{bottom:256.313333pt;}
.ya5_c01200{bottom:256.778667pt;}
.ya4_c01200{bottom:257.282667pt;}
.ya3_c01200{bottom:291.360000pt;}
.ya2_c01200{bottom:313.769789pt;}
.ya1_c01200{bottom:316.659329pt;}
.ya0_c01200{bottom:319.366997pt;}
.y9f_c01200{bottom:321.731153pt;}
.y9e_c01200{bottom:322.806977pt;}
.y9d_c01200{bottom:324.631565pt;}
.y9c_c01200{bottom:325.702997pt;}
.y9b_c01200{bottom:327.299129pt;}
.y9a_c01200{bottom:329.042681pt;}
.y99_c01200{bottom:330.138809pt;}
.y98_c01200{bottom:330.965333pt;}
.y97_c01200{bottom:353.488601pt;}
.y96_c01200{bottom:354.259613pt;}
.y95_c01200{bottom:356.613257pt;}
.y94_c01200{bottom:357.695561pt;}
.y93_c01200{bottom:359.011757pt;}
.y92_c01200{bottom:360.592121pt;}
.y91_c01200{bottom:361.591769pt;}
.y90_c01200{bottom:361.907957pt;}
.y8f_c01200{bottom:362.405333pt;}
.y8e_c01200{bottom:374.225407pt;}
.y8d_c01200{bottom:387.577840pt;}
.y8c_c01200{bottom:388.963156pt;}
.y8b_c01200{bottom:390.113608pt;}
.y8a_c01200{bottom:391.315116pt;}
.y89_c01200{bottom:392.635983pt;}
.y88_c01200{bottom:407.857327pt;}
.y87_c01200{bottom:408.947479pt;}
.y86_c01200{bottom:411.372403pt;}
.y85_c01200{bottom:412.141651pt;}
.y84_c01200{bottom:412.959067pt;}
.y83_c01200{bottom:414.001951pt;}
.y82_c01200{bottom:416.628727pt;}
.y81_c01200{bottom:417.717511pt;}
.y80_c01200{bottom:420.378955pt;}
.y7f_c01200{bottom:422.720899pt;}
.y7e_c01200{bottom:423.979999pt;}
.y7d_c01200{bottom:424.806667pt;}
.y7c_c01200{bottom:446.024115pt;}
.y7b_c01200{bottom:448.778427pt;}
.y7a_c01200{bottom:471.005301pt;}
.y79_c01200{bottom:472.223888pt;}
.y78_c01200{bottom:472.950629pt;}
.y77_c01200{bottom:474.939723pt;}
.y76_c01200{bottom:476.154337pt;}
.y75_c01200{bottom:478.879277pt;}
.y74_c01200{bottom:479.599933pt;}
.y73_c01200{bottom:480.800592pt;}
.y72_c01200{bottom:481.803808pt;}
.y71_c01200{bottom:483.305481pt;}
.y70_c01200{bottom:485.466117pt;}
.y6f_c01200{bottom:487.648835pt;}
.y6e_c01200{bottom:509.709839pt;}
.y6d_c01200{bottom:517.631189pt;}
.y6c_c01200{bottom:535.914489pt;}
.y6b_c01200{bottom:536.630699pt;}
.y6a_c01200{bottom:537.345956pt;}
.y69_c01200{bottom:539.203109pt;}
.y68_c01200{bottom:540.177947pt;}
.y67_c01200{bottom:542.749179pt;}
.y66_c01200{bottom:543.723019pt;}
.y65_c01200{bottom:545.384301pt;}
.y64_c01200{bottom:546.549921pt;}
.y63_c01200{bottom:548.450261pt;}
.y62_c01200{bottom:549.537417pt;}
.y61_c01200{bottom:550.260329pt;}
.y60_c01200{bottom:566.544695pt;}
.y5f_c01200{bottom:574.568920pt;}
.y5e_c01200{bottom:576.893677pt;}
.y5d_c01200{bottom:577.414225pt;}
.y5c_c01200{bottom:578.325789pt;}
.y5b_c01200{bottom:598.076615pt;}
.y5a_c01200{bottom:598.819520pt;}
.y59_c01200{bottom:600.137049pt;}
.y58_c01200{bottom:601.167267pt;}
.y57_c01200{bottom:602.427385pt;}
.y56_c01200{bottom:604.686245pt;}
.y55_c01200{bottom:607.276625pt;}
.y54_c01200{bottom:609.312576pt;}
.y53_c01200{bottom:610.073709pt;}
.y52_c01200{bottom:612.102605pt;}
.y51_c01200{bottom:613.831339pt;}
.y50_c01200{bottom:630.360876pt;}
.y4f_c01200{bottom:632.588205pt;}
.y4e_c01200{bottom:633.974271pt;}
.y4d_c01200{bottom:636.637451pt;}
.y4c_c01200{bottom:638.926505pt;}
.y4b_c01200{bottom:640.700136pt;}
.y4a_c01200{bottom:659.309608pt;}
.y49_c01200{bottom:659.853952pt;}
.y48_c01200{bottom:661.611799pt;}
.y47_c01200{bottom:661.974396pt;}
.y46_c01200{bottom:663.022797pt;}
.y45_c01200{bottom:663.589276pt;}
.y44_c01200{bottom:665.328699pt;}
.y43_c01200{bottom:666.601365pt;}
.y42_c01200{bottom:668.366923pt;}
.y41_c01200{bottom:669.595756pt;}
.y40_c01200{bottom:671.170803pt;}
.y3f_c01200{bottom:693.559423pt;}
.y3e_c01200{bottom:699.498333pt;}
.y3d_c01200{bottom:726.048008pt;}
.y3c_c01200{bottom:726.805709pt;}
.y3b_c01200{bottom:728.288112pt;}
.y3a_c01200{bottom:729.022208pt;}
.y39_c01200{bottom:731.494505pt;}
.y38_c01200{bottom:734.148981pt;}
.y37_c01200{bottom:735.175513pt;}
.y36_c01200{bottom:736.401455pt;}
.y35_c01200{bottom:738.105540pt;}
.y34_c01200{bottom:739.253492pt;}
.y33_c01200{bottom:739.778711pt;}
.y32_c01200{bottom:766.652759pt;}
.y31_c01200{bottom:785.306249pt;}
.y30_c01200{bottom:785.896692pt;}
.y2f_c01200{bottom:787.266568pt;}
.y2e_c01200{bottom:788.044624pt;}
.y2d_c01200{bottom:788.683367pt;}
.y2c_c01200{bottom:790.461568pt;}
.y2b_c01200{bottom:791.605055pt;}
.y2a_c01200{bottom:793.368916pt;}
.y29_c01200{bottom:795.117485pt;}
.y28_c01200{bottom:796.878145pt;}
.y27_c01200{bottom:845.298656pt;}
.y26_c01200{bottom:847.595892pt;}
.y25_c01200{bottom:848.966257pt;}
.y24_c01200{bottom:849.402879pt;}
.y23_c01200{bottom:852.118225pt;}
.y22_c01200{bottom:853.660009pt;}
.y21_c01200{bottom:855.284007pt;}
.y20_c01200{bottom:856.172813pt;}
.y1f_c01200{bottom:858.166755pt;}
.y1e_c01200{bottom:859.256772pt;}
.y1d_c01200{bottom:859.728981pt;}
.y1c_c01200{bottom:875.297988pt;}
.y1b_c01200{bottom:881.608464pt;}
.y1a_c01200{bottom:886.597268pt;}
.y19_c01200{bottom:913.102267pt;}
.y18_c01200{bottom:914.503912pt;}
.y17_c01200{bottom:915.048239pt;}
.y16_c01200{bottom:916.449884pt;}
.y15_c01200{bottom:917.189492pt;}
.y14_c01200{bottom:918.028823pt;}
.y13_c01200{bottom:919.473440pt;}
.y12_c01200{bottom:921.406948pt;}
.y11_c01200{bottom:922.798933pt;}
.y10_c01200{bottom:923.648688pt;}
.yf_c01200{bottom:924.017517pt;}
.ye_c01200{bottom:953.274995pt;}
.yd_c01200{bottom:954.253333pt;}
.yc_c01200{bottom:976.214712pt;}
.yb_c01200{bottom:976.804672pt;}
.ya_c01200{bottom:977.444836pt;}
.y9_c01200{bottom:979.315208pt;}
.y8_c01200{bottom:979.935408pt;}
.y7_c01200{bottom:980.948868pt;}
.y6_c01200{bottom:983.232212pt;}
.y5_c01200{bottom:984.457072pt;}
.y4_c01200{bottom:985.092196pt;}
.y3_c01200{bottom:986.710428pt;}
.y2_c01200{bottom:988.564000pt;}
.y1_c01200{bottom:1047.830667pt;}
.hc_c01200{height:48.017493pt;}
.h14_c01200{height:58.666667pt;}
.h11_c01200{height:58.668104pt;}
.h4_c01200{height:63.973018pt;}
.h15_c01200{height:64.000000pt;}
.h5_c01200{height:69.304103pt;}
.hd_c01200{height:69.358601pt;}
.h8_c01200{height:74.635188pt;}
.h9_c01200{height:79.966273pt;}
.h3_c01200{height:80.017638pt;}
.h13_c01200{height:80.031354pt;}
.he_c01200{height:85.364432pt;}
.h6_c01200{height:90.628443pt;}
.h2_c01200{height:90.666667pt;}
.hb_c01200{height:90.699709pt;}
.h7_c01200{height:106.621697pt;}
.h10_c01200{height:117.333333pt;}
.h12_c01200{height:117.336208pt;}
.ha_c01200{height:122.614952pt;}
.hf_c01200{height:122.666667pt;}
.h1_c01200{height:1118.666667pt;}
.h0_c01200{height:1118.880000pt;}
.w0_c01200{width:803.733333pt;}
.w1_c01200{width:804.000000pt;}
.x0_c01200{left:0.000000pt;}
.x9c_c01200{left:90.918667pt;}
.x82_c01200{left:93.393333pt;}
.x5c_c01200{left:106.442065pt;}
.x38_c01200{left:108.015324pt;}
.x27_c01200{left:109.790592pt;}
.xa1_c01200{left:111.422667pt;}
.x4_c01200{left:113.098667pt;}
.x7a_c01200{left:114.033333pt;}
.x66_c01200{left:115.453333pt;}
.x54_c01200{left:117.403708pt;}
.x48_c01200{left:128.227313pt;}
.x2f_c01200{left:129.689367pt;}
.x1d_c01200{left:131.508736pt;}
.x11_c01200{left:132.808595pt;}
.x98_c01200{left:134.400000pt;}
.x9d_c01200{left:141.492000pt;}
.x94_c01200{left:142.708000pt;}
.x83_c01200{left:143.853333pt;}
.x74_c01200{left:144.885333pt;}
.x67_c01200{left:146.070667pt;}
.x55_c01200{left:147.499837pt;}
.x30_c01200{left:150.685460pt;}
.x1e_c01200{left:152.005221pt;}
.x12_c01200{left:153.284595pt;}
.x95_c01200{left:177.712000pt;}
.x75_c01200{left:181.909333pt;}
.x7b_c01200{left:185.242667pt;}
.x80_c01200{left:188.400000pt;}
.x81_c01200{left:189.360000pt;}
.x64_c01200{left:190.928632pt;}
.x37_c01200{left:193.578051pt;}
.x39_c01200{left:195.318112pt;}
.x1a_c01200{left:196.902637pt;}
.x2e_c01200{left:198.714701pt;}
.xf_c01200{left:199.760000pt;}
.x5_c01200{left:201.364000pt;}
.x42_c01200{left:206.340564pt;}
.x99_c01200{left:217.440000pt;}
.x51_c01200{left:224.811616pt;}
.x10_c01200{left:228.505892pt;}
.x6f_c01200{left:232.593720pt;}
.x76_c01200{left:240.441333pt;}
.x7c_c01200{left:249.818667pt;}
.x8d_c01200{left:257.609812pt;}
.x3a_c01200{left:263.436333pt;}
.x31_c01200{left:264.655651pt;}
.x96_c01200{left:266.564000pt;}
.x84_c01200{left:268.108000pt;}
.x70_c01200{left:270.125977pt;}
.x49_c01200{left:272.567460pt;}
.xa5_c01200{left:274.648000pt;}
.x9a_c01200{left:275.760000pt;}
.x8e_c01200{left:276.797681pt;}
.x6_c01200{left:278.422667pt;}
.x5d_c01200{left:279.942863pt;}
.x43_c01200{left:283.334975pt;}
.x28_c01200{left:284.996041pt;}
.x1f_c01200{left:285.915987pt;}
.x77_c01200{left:289.189333pt;}
.xa2_c01200{left:294.625333pt;}
.x9e_c01200{left:296.153333pt;}
.x4a_c01200{left:301.827491pt;}
.x71_c01200{left:306.063784pt;}
.x85_c01200{left:307.469333pt;}
.x7_c01200{left:308.666667pt;}
.x32_c01200{left:313.606959pt;}
.x56_c01200{left:320.269660pt;}
.x20_c01200{left:324.530476pt;}
.x65_c01200{left:328.436513pt;}
.x5e_c01200{left:339.934523pt;}
.x8f_c01200{left:344.721205pt;}
.x9b_c01200{left:346.080000pt;}
.x72_c01200{left:349.365952pt;}
.xa3_c01200{left:353.204000pt;}
.x1_c01200{left:354.480000pt;}
.x3b_c01200{left:361.312967pt;}
.xa6_c01200{left:362.758667pt;}
.x8_c01200{left:366.993333pt;}
.x2_c01200{left:373.680000pt;}
.x97_c01200{left:376.054667pt;}
.x68_c01200{left:378.014667pt;}
.x4b_c01200{left:380.025164pt;}
.x52_c01200{left:381.197681pt;}
.x44_c01200{left:382.683359pt;}
.x13_c01200{left:384.890909pt;}
.x57_c01200{left:389.378655pt;}
.x9f_c01200{left:392.426667pt;}
.x21_c01200{left:395.051628pt;}
.x3_c01200{left:412.080000pt;}
.x90_c01200{left:415.520711pt;}
.x78_c01200{left:416.446667pt;}
.x69_c01200{left:418.340000pt;}
.x1b_c01200{left:423.300449pt;}
.x5f_c01200{left:427.964027pt;}
.x29_c01200{left:430.095908pt;}
.x3c_c01200{left:431.855411pt;}
.x88_c01200{left:434.317333pt;}
.x79_c01200{left:445.002667pt;}
.x60_c01200{left:456.740025pt;}
.x33_c01200{left:460.632801pt;}
.x22_c01200{left:461.981680pt;}
.x89_c01200{left:463.617333pt;}
.x14_c01200{left:464.991671pt;}
.xa7_c01200{left:471.034667pt;}
.x86_c01200{left:473.266667pt;}
.x9_c01200{left:475.724000pt;}
.x4c_c01200{left:479.528652pt;}
.x45_c01200{left:498.274897pt;}
.xa8_c01200{left:499.384000pt;}
.x91_c01200{left:501.890771pt;}
.x87_c01200{left:503.798667pt;}
.x5b_c01200{left:510.252224pt;}
.x15_c01200{left:511.517087pt;}
.x6a_c01200{left:515.628000pt;}
.x2a_c01200{left:518.822673pt;}
.xa_c01200{left:523.984000pt;}
.x3d_c01200{left:528.298041pt;}
.x92_c01200{left:530.235908pt;}
.x58_c01200{left:536.877197pt;}
.xa0_c01200{left:540.265333pt;}
.xa4_c01200{left:541.381333pt;}
.x7d_c01200{left:543.601333pt;}
.x2b_c01200{left:550.716616pt;}
.x16_c01200{left:552.526363pt;}
.xb_c01200{left:553.517333pt;}
.x46_c01200{left:558.474524pt;}
.x34_c01200{left:559.409527pt;}
.x8a_c01200{left:562.485333pt;}
.x4d_c01200{left:566.313423pt;}
.x59_c01200{left:577.431731pt;}
.x23_c01200{left:579.850468pt;}
.x6b_c01200{left:584.528000pt;}
.x2c_c01200{left:589.564244pt;}
.x24_c01200{left:598.791920pt;}
.x8b_c01200{left:601.633333pt;}
.x6c_c01200{left:613.018667pt;}
.x4e_c01200{left:614.740819pt;}
.x3e_c01200{left:617.829157pt;}
.x17_c01200{left:630.228209pt;}
.x3f_c01200{left:637.965316pt;}
.xc_c01200{left:642.582667pt;}
.x7e_c01200{left:643.885333pt;}
.x35_c01200{left:647.966684pt;}
.x47_c01200{left:655.147255pt;}
.x25_c01200{left:658.255965pt;}
.x18_c01200{left:660.445101pt;}
.xd_c01200{left:673.066667pt;}
.x36_c01200{left:678.222988pt;}
.x5a_c01200{left:684.439676pt;}
.x2d_c01200{left:687.403577pt;}
.x61_c01200{left:693.551492pt;}
.xe_c01200{left:701.160000pt;}
.x6d_c01200{left:702.830667pt;}
.x4f_c01200{left:704.881759pt;}
.x1c_c01200{left:709.690713pt;}
.x8c_c01200{left:711.089333pt;}
.x93_c01200{left:712.278629pt;}
.x53_c01200{left:715.042419pt;}
.x62_c01200{left:722.584657pt;}
.x50_c01200{left:733.410295pt;}
.x40_c01200{left:735.419479pt;}
.x19_c01200{left:738.146948pt;}
.x6e_c01200{left:743.206667pt;}
.x7f_c01200{left:750.905333pt;}
.x26_c01200{left:758.001467pt;}
.x41_c01200{left:765.597697pt;}
.x73_c01200{left:766.609648pt;}
.x63_c01200{left:771.241503pt;}
}





/* 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_c01201 {
    display:none;
  }
  .loading-indicator_c01201.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01201 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_c01201 { 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_c01201" -> "#page-container .classname_c01201")
 */
.pf_c01201 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01201 { /* 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_c01201.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01201 { /* 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_c01201 { /* 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_c01201 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01201 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01201 {overflow:visible;}
  }
}
.c_c01201 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01201 { /* 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_c01201:after { /* webkit #35443 */
  content: '';
}
.t_c01201:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01201 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 */
}
.__c01201 { /* 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_c01201 { /* info for Javascript */
  display:none;
}
.l_c01201 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01201 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01201 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01201: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_c01201 {
    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_c01201.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01201.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_c01201 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01201{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01201;src:url('chunks/assets/font_a922ad9dd70ab389832b6583.woff2')format("woff");}.ff1_c01201{font-family:ff1_c01201;line-height:1.000000;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;}
.m2_c01201{transform:matrix(0.221245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221245,0.000000,0.000000,0.250000,0,0);}
.m1_c01201{transform:matrix(0.325545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325545,0.000000,0.000000,0.250000,0,0);}
.m5_c01201{transform:matrix(0.373865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373865,0.000000,0.000000,0.250000,0,0);}
.m3_c01201{transform:matrix(0.470610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470610,0.000000,0.000000,0.250000,0,0);}
.m0_c01201{transform:matrix(0.590930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590930,0.000000,0.000000,0.250000,0,0);}
.m4_c01201{transform:matrix(0.804985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.804985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.804985,0.000000,0.000000,0.250000,0,0);}
.v0_c01201{vertical-align:0.000000px;}
.ls0_c01201{letter-spacing:0.000000px;}
.sc__c01201{text-shadow:none;}
.sc0_c01201{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__c01201{-webkit-text-stroke:0px transparent;}
.sc0_c01201{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01201{word-spacing:0.000000px;}
.fc0_c01201{color:transparent;}
.fs0_c01201{font-size:12.000000px;}
.fs1_c01201{font-size:42.000000px;}
.y0_c01201{bottom:0.000000px;}
.y3_c01201{bottom:1101.330000px;}
.y2_c01201{bottom:1108.216500px;}
.y1_c01201{bottom:1109.430000px;}
.h2_c01201{height:12.000000px;}
.h3_c01201{height:42.000000px;}
.h1_c01201{height:1258.500000px;}
.h0_c01201{height:1258.740000px;}
.w0_c01201{width:904.200000px;}
.w1_c01201{width:904.500000px;}
.x0_c01201{left:0.000000px;}
.x3_c01201{left:131.220000px;}
.x4_c01201{left:155.250000px;}
.x5_c01201{left:188.460000px;}
.x6_c01201{left:232.470000px;}
.x2_c01201{left:256.500000px;}
.x1_c01201{left:270.270000px;}
@media print{
.v0_c01201{vertical-align:0.000000pt;}
.ls0_c01201{letter-spacing:0.000000pt;}
.ws0_c01201{word-spacing:0.000000pt;}
.fs0_c01201{font-size:10.666667pt;}
.fs1_c01201{font-size:37.333333pt;}
.y0_c01201{bottom:0.000000pt;}
.y3_c01201{bottom:978.960000pt;}
.y2_c01201{bottom:985.081333pt;}
.y1_c01201{bottom:986.160000pt;}
.h2_c01201{height:10.666667pt;}
.h3_c01201{height:37.333333pt;}
.h1_c01201{height:1118.666667pt;}
.h0_c01201{height:1118.880000pt;}
.w0_c01201{width:803.733333pt;}
.w1_c01201{width:804.000000pt;}
.x0_c01201{left:0.000000pt;}
.x3_c01201{left:116.640000pt;}
.x4_c01201{left:138.000000pt;}
.x5_c01201{left:167.520000pt;}
.x6_c01201{left:206.640000pt;}
.x2_c01201{left:228.000000pt;}
.x1_c01201{left:240.240000pt;}
}





/* 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_c01202 {
    display:none;
  }
  .loading-indicator_c01202.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01202 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_c01202 { 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_c01202" -> "#page-container .classname_c01202")
 */
.pf_c01202 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01202 { /* 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_c01202.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01202 { /* 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_c01202 { /* 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_c01202 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01202 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01202 {overflow:visible;}
  }
}
.c_c01202 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01202 { /* 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_c01202:after { /* webkit #35443 */
  content: '';
}
.t_c01202:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01202 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 */
}
.__c01202 { /* 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_c01202 { /* info for Javascript */
  display:none;
}
.l_c01202 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01202 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01202 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01202: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_c01202 {
    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_c01202.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01202.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_c01202 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01202{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01202;src:url('chunks/assets/font_cfe63ee56e9e10a97d33a3db.woff2')format("woff");}.ff1_c01202{font-family:ff1_c01202;line-height:1.000000;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;}
.maf_c01202{transform:matrix(0.010605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.010605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.010605,0.000000,0.000000,0.250000,0,0);}
.mb0_c01202{transform:matrix(0.013520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.013520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.013520,0.000000,0.000000,0.250000,0,0);}
.m25_c01202{transform:matrix(0.014750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.014750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.014750,0.000000,0.000000,0.250000,0,0);}
.m34_c01202{transform:matrix(0.016070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.016070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.016070,0.000000,0.000000,0.250000,0,0);}
.m26_c01202{transform:matrix(0.017355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.017355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.017355,0.000000,0.000000,0.250000,0,0);}
.m84_c01202{transform:matrix(0.018750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.018750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.018750,0.000000,0.000000,0.250000,0,0);}
.m85_c01202{transform:matrix(0.021215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021215,0.000000,0.000000,0.250000,0,0);}
.m5f_c01202{transform:matrix(0.023140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.023140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.023140,0.000000,0.000000,0.250000,0,0);}
.mae_c01202{transform:matrix(0.024010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.024010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.024010,0.000000,0.000000,0.250000,0,0);}
.m35_c01202{transform:matrix(0.038840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.038840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.038840,0.000000,0.000000,0.250000,0,0);}
.m4_c01202{transform:matrix(0.079565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.079565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.079565,0.000000,0.000000,0.250000,0,0);}
.m6f_c01202{transform:matrix(0.099160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.099160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.099160,0.000000,0.000000,0.250000,0,0);}
.m40_c01202{transform:matrix(0.111579,0.000558,-0.001250,0.249997,0,0);-ms-transform:matrix(0.111579,0.000558,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.111579,0.000558,-0.001250,0.249997,0,0);}
.m41_c01202{transform:matrix(0.114864,0.000574,-0.001250,0.249997,0,0);-ms-transform:matrix(0.114864,0.000574,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.114864,0.000574,-0.001250,0.249997,0,0);}
.m0_c01202{transform:matrix(0.132670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132670,0.000000,0.000000,0.250000,0,0);}
.m1e_c01202{transform:matrix(0.135405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135405,0.000000,0.000000,0.250000,0,0);}
.m2_c01202{transform:matrix(0.136015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136015,0.000000,0.000000,0.250000,0,0);}
.m8f_c01202{transform:matrix(0.144750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144750,0.000000,0.000000,0.250000,0,0);}
.m10_c01202{transform:matrix(0.145575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145575,0.000000,0.000000,0.250000,0,0);}
.m90_c01202{transform:matrix(0.146830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146830,0.000000,0.000000,0.250000,0,0);}
.m55_c01202{transform:matrix(0.147555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147555,0.000000,0.000000,0.250000,0,0);}
.mb1_c01202{transform:matrix(0.150865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150865,0.000000,0.000000,0.250000,0,0);}
.m68_c01202{transform:matrix(0.160080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160080,0.000000,0.000000,0.250000,0,0);}
.m74_c01202{transform:matrix(0.167845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167845,0.000000,0.000000,0.250000,0,0);}
.m4b_c01202{transform:matrix(0.170035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170035,0.000000,0.000000,0.250000,0,0);}
.m37_c01202{transform:matrix(0.181830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181830,0.000000,0.000000,0.250000,0,0);}
.m43_c01202{transform:matrix(0.184893,0.000924,-0.001250,0.249997,0,0);-ms-transform:matrix(0.184893,0.000924,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.184893,0.000924,-0.001250,0.249997,0,0);}
.m9b_c01202{transform:matrix(0.186495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186495,0.000000,0.000000,0.250000,0,0);}
.m45_c01202{transform:matrix(0.194268,0.000971,-0.001250,0.249997,0,0);-ms-transform:matrix(0.194268,0.000971,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.194268,0.000971,-0.001250,0.249997,0,0);}
.m28_c01202{transform:matrix(0.195775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195775,0.000000,0.000000,0.250000,0,0);}
.m18_c01202{transform:matrix(0.198360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198360,0.000000,0.000000,0.250000,0,0);}
.mb2_c01202{transform:matrix(0.199240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199240,0.000000,0.000000,0.250000,0,0);}
.m4e_c01202{transform:matrix(0.200685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200685,0.000000,0.000000,0.250000,0,0);}
.m56_c01202{transform:matrix(0.200950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200950,0.000000,0.000000,0.250000,0,0);}
.ma3_c01202{transform:matrix(0.201820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201820,0.000000,0.000000,0.250000,0,0);}
.m7d_c01202{transform:matrix(0.204255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204255,0.000000,0.000000,0.250000,0,0);}
.m98_c01202{transform:matrix(0.205820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205820,0.000000,0.000000,0.250000,0,0);}
.m76_c01202{transform:matrix(0.208630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208630,0.000000,0.000000,0.250000,0,0);}
.m78_c01202{transform:matrix(0.208715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208715,0.000000,0.000000,0.250000,0,0);}
.m47_c01202{transform:matrix(0.209462,0.001047,-0.001250,0.249997,0,0);-ms-transform:matrix(0.209462,0.001047,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.209462,0.001047,-0.001250,0.249997,0,0);}
.m7a_c01202{transform:matrix(0.212570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212570,0.000000,0.000000,0.250000,0,0);}
.m53_c01202{transform:matrix(0.213525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213525,0.000000,0.000000,0.250000,0,0);}
.ma0_c01202{transform:matrix(0.214390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214390,0.000000,0.000000,0.250000,0,0);}
.m82_c01202{transform:matrix(0.215700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215700,0.000000,0.000000,0.250000,0,0);}
.m80_c01202{transform:matrix(0.215710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215710,0.000000,0.000000,0.250000,0,0);}
.m67_c01202{transform:matrix(0.216975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216975,0.000000,0.000000,0.250000,0,0);}
.m9e_c01202{transform:matrix(0.217055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217055,0.000000,0.000000,0.250000,0,0);}
.m3c_c01202{transform:matrix(0.219955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219955,0.000000,0.000000,0.250000,0,0);}
.m46_c01202{transform:matrix(0.223627,0.001118,-0.001250,0.249997,0,0);-ms-transform:matrix(0.223627,0.001118,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.223627,0.001118,-0.001250,0.249997,0,0);}
.m42_c01202{transform:matrix(0.224957,0.001125,-0.001250,0.249997,0,0);-ms-transform:matrix(0.224957,0.001125,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.224957,0.001125,-0.001250,0.249997,0,0);}
.m2e_c01202{transform:matrix(0.225490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225490,0.000000,0.000000,0.250000,0,0);}
.m1_c01202{transform:matrix(0.226790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226790,0.000000,0.000000,0.250000,0,0);}
.mbc_c01202{transform:matrix(0.226960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226960,0.000000,0.000000,0.250000,0,0);}
.m88_c01202{transform:matrix(0.228135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228135,0.000000,0.000000,0.250000,0,0);}
.m6b_c01202{transform:matrix(0.229255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229255,0.000000,0.000000,0.250000,0,0);}
.m54_c01202{transform:matrix(0.230285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230285,0.000000,0.000000,0.250000,0,0);}
.m44_c01202{transform:matrix(0.230537,0.001153,-0.001250,0.249997,0,0);-ms-transform:matrix(0.230537,0.001153,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.230537,0.001153,-0.001250,0.249997,0,0);}
.m5d_c01202{transform:matrix(0.230725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230725,0.000000,0.000000,0.250000,0,0);}
.m94_c01202{transform:matrix(0.232605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232605,0.000000,0.000000,0.250000,0,0);}
.m7e_c01202{transform:matrix(0.232660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232660,0.000000,0.000000,0.250000,0,0);}
.m1a_c01202{transform:matrix(0.233020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233020,0.000000,0.000000,0.250000,0,0);}
.m4a_c01202{transform:matrix(0.233045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233045,0.000000,0.000000,0.250000,0,0);}
.m6_c01202{transform:matrix(0.234265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234265,0.000000,0.000000,0.250000,0,0);}
.m9a_c01202{transform:matrix(0.235120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235120,0.000000,0.000000,0.250000,0,0);}
.mbb_c01202{transform:matrix(0.235320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235320,0.000000,0.000000,0.250000,0,0);}
.m3e_c01202{transform:matrix(0.236130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236130,0.000000,0.000000,0.250000,0,0);}
.m31_c01202{transform:matrix(0.236785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236785,0.000000,0.000000,0.250000,0,0);}
.m23_c01202{transform:matrix(0.237635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237635,0.000000,0.000000,0.250000,0,0);}
.m65_c01202{transform:matrix(0.238230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238230,0.000000,0.000000,0.250000,0,0);}
.m77_c01202{transform:matrix(0.238990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238990,0.000000,0.000000,0.250000,0,0);}
.m8_c01202{transform:matrix(0.239320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239320,0.000000,0.000000,0.250000,0,0);}
.m48_c01202{transform:matrix(0.239482,0.001197,-0.001250,0.249997,0,0);-ms-transform:matrix(0.239482,0.001197,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.239482,0.001197,-0.001250,0.249997,0,0);}
.ma7_c01202{transform:matrix(0.240110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240110,0.000000,0.000000,0.250000,0,0);}
.m12_c01202{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m6e_c01202{transform:matrix(0.242285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242285,0.000000,0.000000,0.250000,0,0);}
.m9f_c01202{transform:matrix(0.242690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242690,0.000000,0.000000,0.250000,0,0);}
.mc1_c01202{transform:matrix(0.243605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243605,0.000000,0.000000,0.250000,0,0);}
.m87_c01202{transform:matrix(0.244370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244370,0.000000,0.000000,0.250000,0,0);}
.m8a_c01202{transform:matrix(0.244375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244375,0.000000,0.000000,0.250000,0,0);}
.m36_c01202{transform:matrix(0.246705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246705,0.000000,0.000000,0.250000,0,0);}
.m49_c01202{transform:matrix(0.246982,0.001235,-0.001250,0.249997,0,0);-ms-transform:matrix(0.246982,0.001235,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.246982,0.001235,-0.001250,0.249997,0,0);}
.mac_c01202{transform:matrix(0.247155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247155,0.000000,0.000000,0.250000,0,0);}
.mb4_c01202{transform:matrix(0.247255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247255,0.000000,0.000000,0.250000,0,0);}
.m58_c01202{transform:matrix(0.247460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247460,0.000000,0.000000,0.250000,0,0);}
.m93_c01202{transform:matrix(0.247660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247660,0.000000,0.000000,0.250000,0,0);}
.m86_c01202{transform:matrix(0.247725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247725,0.000000,0.000000,0.250000,0,0);}
.m1f_c01202{transform:matrix(0.248105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248105,0.000000,0.000000,0.250000,0,0);}
.m4f_c01202{transform:matrix(0.248380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248380,0.000000,0.000000,0.250000,0,0);}
.m4d_c01202{transform:matrix(0.249045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249045,0.000000,0.000000,0.250000,0,0);}
.m7b_c01202{transform:matrix(0.249400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249400,0.000000,0.000000,0.250000,0,0);}
.m33_c01202{transform:matrix(0.250560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250560,0.000000,0.000000,0.250000,0,0);}
.mb7_c01202{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m75_c01202{transform:matrix(0.251980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251980,0.000000,0.000000,0.250000,0,0);}
.m79_c01202{transform:matrix(0.252180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252180,0.000000,0.000000,0.250000,0,0);}
.m6d_c01202{transform:matrix(0.252365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252365,0.000000,0.000000,0.250000,0,0);}
.m22_c01202{transform:matrix(0.252485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252485,0.000000,0.000000,0.250000,0,0);}
.m69_c01202{transform:matrix(0.253045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253045,0.000000,0.000000,0.250000,0,0);}
.m89_c01202{transform:matrix(0.253325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253325,0.000000,0.000000,0.250000,0,0);}
.m50_c01202{transform:matrix(0.253355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253355,0.000000,0.000000,0.250000,0,0);}
.ma1_c01202{transform:matrix(0.253465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253465,0.000000,0.000000,0.250000,0,0);}
.m8d_c01202{transform:matrix(0.254310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254310,0.000000,0.000000,0.250000,0,0);}
.m73_c01202{transform:matrix(0.254835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254835,0.000000,0.000000,0.250000,0,0);}
.mc6_c01202{transform:matrix(0.256320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256320,0.000000,0.000000,0.250000,0,0);}
.m5a_c01202{transform:matrix(0.256915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256915,0.000000,0.000000,0.250000,0,0);}
.m7c_c01202{transform:matrix(0.257365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257365,0.000000,0.000000,0.250000,0,0);}
.m81_c01202{transform:matrix(0.260155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260155,0.000000,0.000000,0.250000,0,0);}
.m3a_c01202{transform:matrix(0.260540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260540,0.000000,0.000000,0.250000,0,0);}
.m4c_c01202{transform:matrix(0.262155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262155,0.000000,0.000000,0.250000,0,0);}
.m70_c01202{transform:matrix(0.262465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262465,0.000000,0.000000,0.250000,0,0);}
.m5e_c01202{transform:matrix(0.262575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262575,0.000000,0.000000,0.250000,0,0);}
.m9d_c01202{transform:matrix(0.263580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263580,0.000000,0.000000,0.250000,0,0);}
.m92_c01202{transform:matrix(0.264820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264820,0.000000,0.000000,0.250000,0,0);}
.m38_c01202{transform:matrix(0.265320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265320,0.000000,0.000000,0.250000,0,0);}
.m17_c01202{transform:matrix(0.268335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268335,0.000000,0.000000,0.250000,0,0);}
.m8b_c01202{transform:matrix(0.269080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269080,0.000000,0.000000,0.250000,0,0);}
.m3_c01202{transform:matrix(0.269130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269130,0.000000,0.000000,0.250000,0,0);}
.mad_c01202{transform:matrix(0.269185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269185,0.000000,0.000000,0.250000,0,0);}
.m2c_c01202{transform:matrix(0.269645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269645,0.000000,0.000000,0.250000,0,0);}
.m3d_c01202{transform:matrix(0.270645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270645,0.000000,0.000000,0.250000,0,0);}
.m57_c01202{transform:matrix(0.270695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270695,0.000000,0.000000,0.250000,0,0);}
.m39_c01202{transform:matrix(0.270865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270865,0.000000,0.000000,0.250000,0,0);}
.m83_c01202{transform:matrix(0.271240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271240,0.000000,0.000000,0.250000,0,0);}
.md_c01202{transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);}
.mc4_c01202{transform:matrix(0.272100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272100,0.000000,0.000000,0.250000,0,0);}
.m9c_c01202{transform:matrix(0.272220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272220,0.000000,0.000000,0.250000,0,0);}
.m14_c01202{transform:matrix(0.272790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272790,0.000000,0.000000,0.250000,0,0);}
.m91_c01202{transform:matrix(0.272855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272855,0.000000,0.000000,0.250000,0,0);}
.m3b_c01202{transform:matrix(0.272890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272890,0.000000,0.000000,0.250000,0,0);}
.ma2_c01202{transform:matrix(0.272920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272920,0.000000,0.000000,0.250000,0,0);}
.m27_c01202{transform:matrix(0.273230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273230,0.000000,0.000000,0.250000,0,0);}
.maa_c01202{transform:matrix(0.273885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273885,0.000000,0.000000,0.250000,0,0);}
.mf_c01202{transform:matrix(0.274450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274450,0.000000,0.000000,0.250000,0,0);}
.m2d_c01202{transform:matrix(0.274695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274695,0.000000,0.000000,0.250000,0,0);}
.m63_c01202{transform:matrix(0.275030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275030,0.000000,0.000000,0.250000,0,0);}
.m21_c01202{transform:matrix(0.275600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275600,0.000000,0.000000,0.250000,0,0);}
.m8c_c01202{transform:matrix(0.276305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276305,0.000000,0.000000,0.250000,0,0);}
.m7f_c01202{transform:matrix(0.277190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277190,0.000000,0.000000,0.250000,0,0);}
.ma6_c01202{transform:matrix(0.277915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277915,0.000000,0.000000,0.250000,0,0);}
.mb8_c01202{transform:matrix(0.279640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279640,0.000000,0.000000,0.250000,0,0);}
.m1c_c01202{transform:matrix(0.279800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279800,0.000000,0.000000,0.250000,0,0);}
.m8e_c01202{transform:matrix(0.280120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280120,0.000000,0.000000,0.250000,0,0);}
.m32_c01202{transform:matrix(0.280155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280155,0.000000,0.000000,0.250000,0,0);}
.m3f_c01202{transform:matrix(0.280425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280425,0.000000,0.000000,0.250000,0,0);}
.m20_c01202{transform:matrix(0.280795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280795,0.000000,0.000000,0.250000,0,0);}
.m62_c01202{transform:matrix(0.280875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280875,0.000000,0.000000,0.250000,0,0);}
.m2f_c01202{transform:matrix(0.281120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281120,0.000000,0.000000,0.250000,0,0);}
.m6a_c01202{transform:matrix(0.282870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282870,0.000000,0.000000,0.250000,0,0);}
.m1b_c01202{transform:matrix(0.283650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283650,0.000000,0.000000,0.250000,0,0);}
.m52_c01202{transform:matrix(0.283795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283795,0.000000,0.000000,0.250000,0,0);}
.mb3_c01202{transform:matrix(0.284495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284495,0.000000,0.000000,0.250000,0,0);}
.m61_c01202{transform:matrix(0.285125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285125,0.000000,0.000000,0.250000,0,0);}
.m7_c01202{transform:matrix(0.286090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286090,0.000000,0.000000,0.250000,0,0);}
.m71_c01202{transform:matrix(0.286135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286135,0.000000,0.000000,0.250000,0,0);}
.m13_c01202{transform:matrix(0.288650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288650,0.000000,0.000000,0.250000,0,0);}
.m29_c01202{transform:matrix(0.289745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289745,0.000000,0.000000,0.250000,0,0);}
.m64_c01202{transform:matrix(0.290390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290390,0.000000,0.000000,0.250000,0,0);}
.m97_c01202{transform:matrix(0.291715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291715,0.000000,0.000000,0.250000,0,0);}
.m30_c01202{transform:matrix(0.291810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291810,0.000000,0.000000,0.250000,0,0);}
.ma4_c01202{transform:matrix(0.292430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292430,0.000000,0.000000,0.250000,0,0);}
.m66_c01202{transform:matrix(0.292455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292455,0.000000,0.000000,0.250000,0,0);}
.m5c_c01202{transform:matrix(0.293090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293090,0.000000,0.000000,0.250000,0,0);}
.mb9_c01202{transform:matrix(0.293240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293240,0.000000,0.000000,0.250000,0,0);}
.mb_c01202{transform:matrix(0.293285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293285,0.000000,0.000000,0.250000,0,0);}
.m95_c01202{transform:matrix(0.293525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293525,0.000000,0.000000,0.250000,0,0);}
.m2b_c01202{transform:matrix(0.293880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293880,0.000000,0.000000,0.250000,0,0);}
.m15_c01202{transform:matrix(0.294020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294020,0.000000,0.000000,0.250000,0,0);}
.mbf_c01202{transform:matrix(0.294725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294725,0.000000,0.000000,0.250000,0,0);}
.m99_c01202{transform:matrix(0.295345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295345,0.000000,0.000000,0.250000,0,0);}
.m5_c01202{transform:matrix(0.295375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295375,0.000000,0.000000,0.250000,0,0);}
.ma8_c01202{transform:matrix(0.295480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295480,0.000000,0.000000,0.250000,0,0);}
.m19_c01202{transform:matrix(0.295620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295620,0.000000,0.000000,0.250000,0,0);}
.m5b_c01202{transform:matrix(0.295755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295755,0.000000,0.000000,0.250000,0,0);}
.m24_c01202{transform:matrix(0.295920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295920,0.000000,0.000000,0.250000,0,0);}
.m6c_c01202{transform:matrix(0.297895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297895,0.000000,0.000000,0.250000,0,0);}
.mba_c01202{transform:matrix(0.298345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298345,0.000000,0.000000,0.250000,0,0);}
.me_c01202{transform:matrix(0.298360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298360,0.000000,0.000000,0.250000,0,0);}
.m2a_c01202{transform:matrix(0.298425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298425,0.000000,0.000000,0.250000,0,0);}
.mbe_c01202{transform:matrix(0.298850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298850,0.000000,0.000000,0.250000,0,0);}
.m96_c01202{transform:matrix(0.300115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300115,0.000000,0.000000,0.250000,0,0);}
.m16_c01202{transform:matrix(0.300560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300560,0.000000,0.000000,0.250000,0,0);}
.ma5_c01202{transform:matrix(0.300865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300865,0.000000,0.000000,0.250000,0,0);}
.ma_c01202{transform:matrix(0.301245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301245,0.000000,0.000000,0.250000,0,0);}
.m59_c01202{transform:matrix(0.301625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301625,0.000000,0.000000,0.250000,0,0);}
.m11_c01202{transform:matrix(0.303395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303395,0.000000,0.000000,0.250000,0,0);}
.ma9_c01202{transform:matrix(0.303510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303510,0.000000,0.000000,0.250000,0,0);}
.mc_c01202{transform:matrix(0.304325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304325,0.000000,0.000000,0.250000,0,0);}
.mbd_c01202{transform:matrix(0.305020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305020,0.000000,0.000000,0.250000,0,0);}
.mc0_c01202{transform:matrix(0.305610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305610,0.000000,0.000000,0.250000,0,0);}
.mb5_c01202{transform:matrix(0.306875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306875,0.000000,0.000000,0.250000,0,0);}
.m1d_c01202{transform:matrix(0.308860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308860,0.000000,0.000000,0.250000,0,0);}
.mab_c01202{transform:matrix(0.309470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309470,0.000000,0.000000,0.250000,0,0);}
.mc7_c01202{transform:matrix(0.311160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311160,0.000000,0.000000,0.250000,0,0);}
.m72_c01202{transform:matrix(0.311715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311715,0.000000,0.000000,0.250000,0,0);}
.mc3_c01202{transform:matrix(0.320745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320745,0.000000,0.000000,0.250000,0,0);}
.mc2_c01202{transform:matrix(0.322025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322025,0.000000,0.000000,0.250000,0,0);}
.mc5_c01202{transform:matrix(0.326035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326035,0.000000,0.000000,0.250000,0,0);}
.m60_c01202{transform:matrix(0.336375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336375,0.000000,0.000000,0.250000,0,0);}
.m51_c01202{transform:matrix(0.363445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363445,0.000000,0.000000,0.250000,0,0);}
.m9_c01202{transform:matrix(0.429785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429785,0.000000,0.000000,0.250000,0,0);}
.mb6_c01202{transform:matrix(0.814145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.814145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.814145,0.000000,0.000000,0.250000,0,0);}
.v0_c01202{vertical-align:0.000000px;}
.ls0_c01202{letter-spacing:0.000000px;}
.sc__c01202{text-shadow:none;}
.sc0_c01202{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__c01202{-webkit-text-stroke:0px transparent;}
.sc0_c01202{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01202{word-spacing:0.000000px;}
.fc0_c01202{color:transparent;}
.fs5_c01202{font-size:60.000000px;}
.fs1_c01202{font-size:66.000000px;}
.fs3_c01202{font-size:72.000000px;}
.fs0_c01202{font-size:78.000000px;}
.fs2_c01202{font-size:84.000000px;}
.fs4_c01202{font-size:84.001050px;}
.y0_c01202{bottom:0.000000px;}
.y2b_c01202{bottom:384.697500px;}
.y2a_c01202{bottom:418.939500px;}
.y29_c01202{bottom:458.202000px;}
.y28_c01202{bottom:492.957000px;}
.y27_c01202{bottom:524.128500px;}
.y26_c01202{bottom:524.350500px;}
.y25_c01202{bottom:525.114000px;}
.y24_c01202{bottom:525.607500px;}
.y23_c01202{bottom:525.832500px;}
.y22_c01202{bottom:526.108500px;}
.y21_c01202{bottom:526.291500px;}
.y20_c01202{bottom:526.824000px;}
.y1f_c01202{bottom:526.972500px;}
.y1e_c01202{bottom:527.313000px;}
.y1d_c01202{bottom:564.058500px;}
.y1c_c01202{bottom:596.725500px;}
.y1b_c01202{bottom:632.350500px;}
.y1a_c01202{bottom:668.571000px;}
.y19_c01202{bottom:702.349500px;}
.y18_c01202{bottom:739.657500px;}
.y17_c01202{bottom:775.861500px;}
.y16_c01202{bottom:811.369500px;}
.y15_c01202{bottom:828.900000px;}
.y14_c01202{bottom:845.812500px;}
.y13_c01202{bottom:881.671613px;}
.y12_c01202{bottom:882.320985px;}
.y11_c01202{bottom:882.658478px;}
.y10_c01202{bottom:883.052678px;}
.yf_c01202{bottom:883.155180px;}
.ye_c01202{bottom:883.546763px;}
.yd_c01202{bottom:883.706048px;}
.yc_c01202{bottom:884.139465px;}
.yb_c01202{bottom:884.294415px;}
.ya_c01202{bottom:884.520000px;}
.y9_c01202{bottom:916.650000px;}
.y8_c01202{bottom:951.210000px;}
.y7_c01202{bottom:985.230000px;}
.y6_c01202{bottom:1022.265000px;}
.y5_c01202{bottom:1056.168000px;}
.y4_c01202{bottom:1092.462000px;}
.y3_c01202{bottom:1129.699500px;}
.y2_c01202{bottom:1163.970000px;}
.y1_c01202{bottom:1218.363000px;}
.h7_c01202{height:60.000000px;}
.h3_c01202{height:66.000000px;}
.h5_c01202{height:72.000000px;}
.h2_c01202{height:78.000000px;}
.h4_c01202{height:84.000000px;}
.h6_c01202{height:84.001050px;}
.h1_c01202{height:1258.500000px;}
.h0_c01202{height:1258.740000px;}
.w0_c01202{width:904.200000px;}
.w1_c01202{width:904.500000px;}
.x0_c01202{left:0.000000px;}
.x5e_c01202{left:82.831500px;}
.x48_c01202{left:88.560000px;}
.x10_c01202{left:92.610000px;}
.x4_c01202{left:93.690000px;}
.x31_c01202{left:104.995500px;}
.x67_c01202{left:106.108500px;}
.x55_c01202{left:116.640000px;}
.x11_c01202{left:149.850000px;}
.x5f_c01202{left:150.901500px;}
.x5_c01202{left:159.030000px;}
.x28_c01202{left:171.720000px;}
.x38_c01202{left:173.340000px;}
.x70_c01202{left:176.310000px;}
.x6_c01202{left:179.280000px;}
.xe_c01202{left:180.900000px;}
.x44_c01202{left:181.980000px;}
.x71_c01202{left:215.460000px;}
.x59_c01202{left:216.540000px;}
.x1e_c01202{left:223.830000px;}
.x3f_c01202{left:235.440000px;}
.xf_c01202{left:244.620000px;}
.x50_c01202{left:245.970000px;}
.x1f_c01202{left:255.690000px;}
.x68_c01202{left:258.928500px;}
.x2c_c01202{left:265.680000px;}
.x32_c01202{left:267.786000px;}
.x45_c01202{left:268.920000px;}
.x39_c01202{left:277.830000px;}
.x17_c01202{left:278.910000px;}
.x69_c01202{left:279.988500px;}
.x60_c01202{left:287.169000px;}
.x51_c01202{left:290.520000px;}
.x33_c01202{left:299.643000px;}
.x12_c01202{left:301.050000px;}
.x7_c01202{left:302.130000px;}
.x18_c01202{left:311.850000px;}
.x13_c01202{left:321.300000px;}
.x42_c01202{left:322.380000px;}
.x61_c01202{left:323.917500px;}
.x4c_c01202{left:334.530000px;}
.x72_c01202{left:335.610000px;}
.x49_c01202{left:344.250000px;}
.x8_c01202{left:345.870000px;}
.x5a_c01202{left:346.950000px;}
.x3a_c01202{left:356.130000px;}
.x2d_c01202{left:365.850000px;}
.x4d_c01202{left:368.010000px;}
.x22_c01202{left:376.920000px;}
.x34_c01202{left:377.959500px;}
.x62_c01202{left:379.003500px;}
.x40_c01202{left:387.990000px;}
.x19_c01202{left:399.330000px;}
.x6c_c01202{left:400.408500px;}
.x3b_c01202{left:401.760000px;}
.x1_c01202{left:403.110000px;}
.x65_c01202{left:404.188500px;}
.x20_c01202{left:409.860000px;}
.x14_c01202{left:412.020000px;}
.x52_c01202{left:413.370000px;}
.x2_c01202{left:424.710000px;}
.x9_c01202{left:433.080000px;}
.x5b_c01202{left:434.430000px;}
.x43_c01202{left:444.420000px;}
.x56_c01202{left:445.770000px;}
.x23_c01202{left:455.490000px;}
.x2e_c01202{left:456.570000px;}
.x6a_c01202{left:458.188500px;}
.x46_c01202{left:465.750000px;}
.x3_c01202{left:469.260000px;}
.x35_c01202{left:477.300000px;}
.xa_c01202{left:478.710000px;}
.x66_c01202{left:487.348500px;}
.x73_c01202{left:488.430000px;}
.x15_c01202{left:489.780000px;}
.x3c_c01202{left:499.230000px;}
.x24_c01202{left:500.580000px;}
.x29_c01202{left:505.980000px;}
.x6d_c01202{left:511.378500px;}
.x53_c01202{left:512.460000px;}
.x63_c01202{left:522.907500px;}
.x36_c01202{left:544.798500px;}
.x6b_c01202{left:546.208500px;}
.x25_c01202{left:554.040000px;}
.x2f_c01202{left:565.110000px;}
.x2a_c01202{left:566.730000px;}
.x4a_c01202{left:577.530000px;}
.xb_c01202{left:588.060000px;}
.x41_c01202{left:598.050000px;}
.x16_c01202{left:599.400000px;}
.x5c_c01202{left:610.740000px;}
.x4e_c01202{left:615.330000px;}
.x3d_c01202{left:618.300000px;}
.x6e_c01202{left:623.428500px;}
.x21_c01202{left:628.020000px;}
.xc_c01202{left:633.150000px;}
.x5d_c01202{left:643.680000px;}
.x26_c01202{left:653.130000px;}
.x47_c01202{left:654.480000px;}
.x1a_c01202{left:657.180000px;}
.x4b_c01202{left:664.740000px;}
.x37_c01202{left:674.673000px;}
.x64_c01202{left:675.727500px;}
.x3e_c01202{left:677.160000px;}
.x54_c01202{left:687.690000px;}
.x1b_c01202{left:699.300000px;}
.x30_c01202{left:720.900000px;}
.x6f_c01202{left:721.978500px;}
.x57_c01202{left:723.870000px;}
.xd_c01202{left:731.160000px;}
.x1c_c01202{left:732.510000px;}
.x2b_c01202{left:747.630000px;}
.x58_c01202{left:764.100000px;}
.x27_c01202{left:766.260000px;}
.x4f_c01202{left:770.040000px;}
.x1d_c01202{left:797.310000px;}
@media print{
.v0_c01202{vertical-align:0.000000pt;}
.ls0_c01202{letter-spacing:0.000000pt;}
.ws0_c01202{word-spacing:0.000000pt;}
.fs5_c01202{font-size:53.333333pt;}
.fs1_c01202{font-size:58.666667pt;}
.fs3_c01202{font-size:64.000000pt;}
.fs0_c01202{font-size:69.333333pt;}
.fs2_c01202{font-size:74.666667pt;}
.fs4_c01202{font-size:74.667600pt;}
.y0_c01202{bottom:0.000000pt;}
.y2b_c01202{bottom:341.953333pt;}
.y2a_c01202{bottom:372.390667pt;}
.y29_c01202{bottom:407.290667pt;}
.y28_c01202{bottom:438.184000pt;}
.y27_c01202{bottom:465.892000pt;}
.y26_c01202{bottom:466.089333pt;}
.y25_c01202{bottom:466.768000pt;}
.y24_c01202{bottom:467.206667pt;}
.y23_c01202{bottom:467.406667pt;}
.y22_c01202{bottom:467.652000pt;}
.y21_c01202{bottom:467.814667pt;}
.y20_c01202{bottom:468.288000pt;}
.y1f_c01202{bottom:468.420000pt;}
.y1e_c01202{bottom:468.722667pt;}
.y1d_c01202{bottom:501.385333pt;}
.y1c_c01202{bottom:530.422667pt;}
.y1b_c01202{bottom:562.089333pt;}
.y1a_c01202{bottom:594.285333pt;}
.y19_c01202{bottom:624.310667pt;}
.y18_c01202{bottom:657.473333pt;}
.y17_c01202{bottom:689.654667pt;}
.y16_c01202{bottom:721.217333pt;}
.y15_c01202{bottom:736.800000pt;}
.y14_c01202{bottom:751.833333pt;}
.y13_c01202{bottom:783.708100pt;}
.y12_c01202{bottom:784.285320pt;}
.y11_c01202{bottom:784.585313pt;}
.y10_c01202{bottom:784.935713pt;}
.yf_c01202{bottom:785.026827pt;}
.ye_c01202{bottom:785.374900pt;}
.yd_c01202{bottom:785.516487pt;}
.yc_c01202{bottom:785.901747pt;}
.yb_c01202{bottom:786.039480pt;}
.ya_c01202{bottom:786.240000pt;}
.y9_c01202{bottom:814.800000pt;}
.y8_c01202{bottom:845.520000pt;}
.y7_c01202{bottom:875.760000pt;}
.y6_c01202{bottom:908.680000pt;}
.y5_c01202{bottom:938.816000pt;}
.y4_c01202{bottom:971.077333pt;}
.y3_c01202{bottom:1004.177333pt;}
.y2_c01202{bottom:1034.640000pt;}
.y1_c01202{bottom:1082.989333pt;}
.h7_c01202{height:53.333333pt;}
.h3_c01202{height:58.666667pt;}
.h5_c01202{height:64.000000pt;}
.h2_c01202{height:69.333333pt;}
.h4_c01202{height:74.666667pt;}
.h6_c01202{height:74.667600pt;}
.h1_c01202{height:1118.666667pt;}
.h0_c01202{height:1118.880000pt;}
.w0_c01202{width:803.733333pt;}
.w1_c01202{width:804.000000pt;}
.x0_c01202{left:0.000000pt;}
.x5e_c01202{left:73.628000pt;}
.x48_c01202{left:78.720000pt;}
.x10_c01202{left:82.320000pt;}
.x4_c01202{left:83.280000pt;}
.x31_c01202{left:93.329333pt;}
.x67_c01202{left:94.318667pt;}
.x55_c01202{left:103.680000pt;}
.x11_c01202{left:133.200000pt;}
.x5f_c01202{left:134.134667pt;}
.x5_c01202{left:141.360000pt;}
.x28_c01202{left:152.640000pt;}
.x38_c01202{left:154.080000pt;}
.x70_c01202{left:156.720000pt;}
.x6_c01202{left:159.360000pt;}
.xe_c01202{left:160.800000pt;}
.x44_c01202{left:161.760000pt;}
.x71_c01202{left:191.520000pt;}
.x59_c01202{left:192.480000pt;}
.x1e_c01202{left:198.960000pt;}
.x3f_c01202{left:209.280000pt;}
.xf_c01202{left:217.440000pt;}
.x50_c01202{left:218.640000pt;}
.x1f_c01202{left:227.280000pt;}
.x68_c01202{left:230.158667pt;}
.x2c_c01202{left:236.160000pt;}
.x32_c01202{left:238.032000pt;}
.x45_c01202{left:239.040000pt;}
.x39_c01202{left:246.960000pt;}
.x17_c01202{left:247.920000pt;}
.x69_c01202{left:248.878667pt;}
.x60_c01202{left:255.261333pt;}
.x51_c01202{left:258.240000pt;}
.x33_c01202{left:266.349333pt;}
.x12_c01202{left:267.600000pt;}
.x7_c01202{left:268.560000pt;}
.x18_c01202{left:277.200000pt;}
.x13_c01202{left:285.600000pt;}
.x42_c01202{left:286.560000pt;}
.x61_c01202{left:287.926667pt;}
.x4c_c01202{left:297.360000pt;}
.x72_c01202{left:298.320000pt;}
.x49_c01202{left:306.000000pt;}
.x8_c01202{left:307.440000pt;}
.x5a_c01202{left:308.400000pt;}
.x3a_c01202{left:316.560000pt;}
.x2d_c01202{left:325.200000pt;}
.x4d_c01202{left:327.120000pt;}
.x22_c01202{left:335.040000pt;}
.x34_c01202{left:335.964000pt;}
.x62_c01202{left:336.892000pt;}
.x40_c01202{left:344.880000pt;}
.x19_c01202{left:354.960000pt;}
.x6c_c01202{left:355.918667pt;}
.x3b_c01202{left:357.120000pt;}
.x1_c01202{left:358.320000pt;}
.x65_c01202{left:359.278667pt;}
.x20_c01202{left:364.320000pt;}
.x14_c01202{left:366.240000pt;}
.x52_c01202{left:367.440000pt;}
.x2_c01202{left:377.520000pt;}
.x9_c01202{left:384.960000pt;}
.x5b_c01202{left:386.160000pt;}
.x43_c01202{left:395.040000pt;}
.x56_c01202{left:396.240000pt;}
.x23_c01202{left:404.880000pt;}
.x2e_c01202{left:405.840000pt;}
.x6a_c01202{left:407.278667pt;}
.x46_c01202{left:414.000000pt;}
.x3_c01202{left:417.120000pt;}
.x35_c01202{left:424.266667pt;}
.xa_c01202{left:425.520000pt;}
.x66_c01202{left:433.198667pt;}
.x73_c01202{left:434.160000pt;}
.x15_c01202{left:435.360000pt;}
.x3c_c01202{left:443.760000pt;}
.x24_c01202{left:444.960000pt;}
.x29_c01202{left:449.760000pt;}
.x6d_c01202{left:454.558667pt;}
.x53_c01202{left:455.520000pt;}
.x63_c01202{left:464.806667pt;}
.x36_c01202{left:484.265333pt;}
.x6b_c01202{left:485.518667pt;}
.x25_c01202{left:492.480000pt;}
.x2f_c01202{left:502.320000pt;}
.x2a_c01202{left:503.760000pt;}
.x4a_c01202{left:513.360000pt;}
.xb_c01202{left:522.720000pt;}
.x41_c01202{left:531.600000pt;}
.x16_c01202{left:532.800000pt;}
.x5c_c01202{left:542.880000pt;}
.x4e_c01202{left:546.960000pt;}
.x3d_c01202{left:549.600000pt;}
.x6e_c01202{left:554.158667pt;}
.x21_c01202{left:558.240000pt;}
.xc_c01202{left:562.800000pt;}
.x5d_c01202{left:572.160000pt;}
.x26_c01202{left:580.560000pt;}
.x47_c01202{left:581.760000pt;}
.x1a_c01202{left:584.160000pt;}
.x4b_c01202{left:590.880000pt;}
.x37_c01202{left:599.709333pt;}
.x64_c01202{left:600.646667pt;}
.x3e_c01202{left:601.920000pt;}
.x54_c01202{left:611.280000pt;}
.x1b_c01202{left:621.600000pt;}
.x30_c01202{left:640.800000pt;}
.x6f_c01202{left:641.758667pt;}
.x57_c01202{left:643.440000pt;}
.xd_c01202{left:649.920000pt;}
.x1c_c01202{left:651.120000pt;}
.x2b_c01202{left:664.560000pt;}
.x58_c01202{left:679.200000pt;}
.x27_c01202{left:681.120000pt;}
.x4f_c01202{left:684.480000pt;}
.x1d_c01202{left:708.720000pt;}
}





/* 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_c01203 {
    display:none;
  }
  .loading-indicator_c01203.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01203 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_c01203 { 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_c01203" -> "#page-container .classname_c01203")
 */
.pf_c01203 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01203 { /* 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_c01203.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01203 { /* 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_c01203 { /* 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_c01203 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01203 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01203 {overflow:visible;}
  }
}
.c_c01203 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01203 { /* 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_c01203:after { /* webkit #35443 */
  content: '';
}
.t_c01203:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01203 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 */
}
.__c01203 { /* 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_c01203 { /* info for Javascript */
  display:none;
}
.l_c01203 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01203 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01203 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01203: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_c01203 {
    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_c01203.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01203.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_c01203 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01203{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01203;src:url('chunks/assets/font_c605e72f209fc835e906f064.woff2')format("woff");}.ff1_c01203{font-family:ff1_c01203;line-height:1.000000;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;}
.mc_c01203{transform:matrix(0.024740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.024740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.024740,0.000000,0.000000,0.250000,0,0);}
.ma_c01203{transform:matrix(0.047730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.047730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.047730,0.000000,0.000000,0.250000,0,0);}
.m16_c01203{transform:matrix(0.125780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125780,0.000000,0.000000,0.250000,0,0);}
.m11_c01203{transform:matrix(0.147735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147735,0.000000,0.000000,0.250000,0,0);}
.m1_c01203{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m1c_c01203{transform:matrix(0.169705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169705,0.000000,0.000000,0.250000,0,0);}
.m2f_c01203{transform:matrix(0.175090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175090,0.000000,0.000000,0.250000,0,0);}
.m17_c01203{transform:matrix(0.186220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186220,0.000000,0.000000,0.250000,0,0);}
.m12_c01203{transform:matrix(0.187215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187215,0.000000,0.000000,0.250000,0,0);}
.m2b_c01203{transform:matrix(0.190295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190295,0.000000,0.000000,0.250000,0,0);}
.m18_c01203{transform:matrix(0.196865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196865,0.000000,0.000000,0.250000,0,0);}
.m6_c01203{transform:matrix(0.204020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204020,0.000000,0.000000,0.250000,0,0);}
.m1a_c01203{transform:matrix(0.207515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207515,0.000000,0.000000,0.250000,0,0);}
.m26_c01203{transform:matrix(0.208870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208870,0.000000,0.000000,0.250000,0,0);}
.mb_c01203{transform:matrix(0.210105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210105,0.000000,0.000000,0.250000,0,0);}
.m22_c01203{transform:matrix(0.215380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215380,0.000000,0.000000,0.250000,0,0);}
.m4_c01203{transform:matrix(0.235055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235055,0.000000,0.000000,0.250000,0,0);}
.m1b_c01203{transform:matrix(0.246705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246705,0.000000,0.000000,0.250000,0,0);}
.m2e_c01203{transform:matrix(0.247615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247615,0.000000,0.000000,0.250000,0,0);}
.m8_c01203{transform:matrix(0.255110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255110,0.000000,0.000000,0.250000,0,0);}
.m1e_c01203{transform:matrix(0.265165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265165,0.000000,0.000000,0.250000,0,0);}
.m24_c01203{transform:matrix(0.275770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275770,0.000000,0.000000,0.250000,0,0);}
.m10_c01203{transform:matrix(0.291730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291730,0.000000,0.000000,0.250000,0,0);}
.m14_c01203{transform:matrix(0.294765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294765,0.000000,0.000000,0.250000,0,0);}
.m32_c01203{transform:matrix(0.298875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298875,0.000000,0.000000,0.250000,0,0);}
.m1d_c01203{transform:matrix(0.307965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307965,0.000000,0.000000,0.250000,0,0);}
.mf_c01203{transform:matrix(0.330925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330925,0.000000,0.000000,0.250000,0,0);}
.m21_c01203{transform:matrix(0.333055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333055,0.000000,0.000000,0.250000,0,0);}
.m13_c01203{transform:matrix(0.334210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334210,0.000000,0.000000,0.250000,0,0);}
.m19_c01203{transform:matrix(0.336155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336155,0.000000,0.000000,0.250000,0,0);}
.m28_c01203{transform:matrix(0.357090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357090,0.000000,0.000000,0.250000,0,0);}
.m15_c01203{transform:matrix(0.360555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360555,0.000000,0.000000,0.250000,0,0);}
.m23_c01203{transform:matrix(0.370475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370475,0.000000,0.000000,0.250000,0,0);}
.m2d_c01203{transform:matrix(0.370855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370855,0.000000,0.000000,0.250000,0,0);}
.m0_c01203{transform:matrix(0.371835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371835,0.000000,0.000000,0.250000,0,0);}
.m2_c01203{transform:matrix(0.383985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383985,0.000000,0.000000,0.250000,0,0);}
.m3_c01203{transform:matrix(0.384185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384185,0.000000,0.000000,0.250000,0,0);}
.md_c01203{transform:matrix(0.399765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399765,0.000000,0.000000,0.250000,0,0);}
.me_c01203{transform:matrix(0.426435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426435,0.000000,0.000000,0.250000,0,0);}
.m9_c01203{transform:matrix(0.443340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443340,0.000000,0.000000,0.250000,0,0);}
.m7_c01203{transform:matrix(0.451060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451060,0.000000,0.000000,0.250000,0,0);}
.m1f_c01203{transform:matrix(0.456900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456900,0.000000,0.000000,0.250000,0,0);}
.m2c_c01203{transform:matrix(0.457750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457750,0.000000,0.000000,0.250000,0,0);}
.m5_c01203{transform:matrix(0.491635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491635,0.000000,0.000000,0.250000,0,0);}
.m27_c01203{transform:matrix(0.521720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521720,0.000000,0.000000,0.250000,0,0);}
.m2a_c01203{transform:matrix(0.568450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.568450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.568450,0.000000,0.000000,0.250000,0,0);}
.m20_c01203{transform:matrix(0.581945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.581945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.581945,0.000000,0.000000,0.250000,0,0);}
.m31_c01203{transform:matrix(0.603005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.603005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.603005,0.000000,0.000000,0.250000,0,0);}
.m30_c01203{transform:matrix(0.877500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.877500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.877500,0.000000,0.000000,0.250000,0,0);}
.m25_c01203{transform:matrix(1.082340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.082340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.082340,0.000000,0.000000,0.250000,0,0);}
.m29_c01203{transform:matrix(2.703080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.703080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.703080,0.000000,0.000000,0.250000,0,0);}
.v0_c01203{vertical-align:0.000000px;}
.ls0_c01203{letter-spacing:0.000000px;}
.sc__c01203{text-shadow:none;}
.sc0_c01203{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__c01203{-webkit-text-stroke:0px transparent;}
.sc0_c01203{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01203{word-spacing:0.000000px;}
.fc0_c01203{color:transparent;}
.fs8_c01203{font-size:12.000000px;}
.fs1_c01203{font-size:18.000000px;}
.fs3_c01203{font-size:24.000000px;}
.fs4_c01203{font-size:30.000000px;}
.fs5_c01203{font-size:36.000000px;}
.fsa_c01203{font-size:42.000000px;}
.fs2_c01203{font-size:48.000000px;}
.fsb_c01203{font-size:54.000000px;}
.fs0_c01203{font-size:60.000000px;}
.fs6_c01203{font-size:66.000000px;}
.fs7_c01203{font-size:72.000000px;}
.fs9_c01203{font-size:78.000000px;}
.y0_c01203{bottom:0.000000px;}
.y1c_c01203{bottom:741.549000px;}
.y1d_c01203{bottom:746.412000px;}
.y1b_c01203{bottom:746.824500px;}
.y1a_c01203{bottom:754.785000px;}
.y18_c01203{bottom:796.407000px;}
.y17_c01203{bottom:801.090000px;}
.y19_c01203{bottom:818.370000px;}
.y16_c01203{bottom:818.374500px;}
.y15_c01203{bottom:823.636500px;}
.y14_c01203{bottom:830.520000px;}
.y12_c01203{bottom:851.179500px;}
.y13_c01203{bottom:855.216000px;}
.y11_c01203{bottom:862.242000px;}
.y10_c01203{bottom:891.522000px;}
.y2_c01203{bottom:913.140000px;}
.y1_c01203{bottom:962.157000px;}
.y5_c01203{bottom:962.295000px;}
.ya_c01203{bottom:962.413500px;}
.y3_c01203{bottom:962.416500px;}
.yd_c01203{bottom:962.548500px;}
.y9_c01203{bottom:962.815500px;}
.ye_c01203{bottom:962.820000px;}
.yf_c01203{bottom:963.360000px;}
.yc_c01203{bottom:967.950000px;}
.yb_c01203{bottom:970.512000px;}
.y8_c01203{bottom:972.810000px;}
.y4_c01203{bottom:972.958500px;}
.y7_c01203{bottom:979.560000px;}
.y6_c01203{bottom:982.530000px;}
.ha_c01203{height:12.000000px;}
.h3_c01203{height:18.000000px;}
.h5_c01203{height:24.000000px;}
.h6_c01203{height:30.000000px;}
.h7_c01203{height:36.000000px;}
.hc_c01203{height:42.000000px;}
.h4_c01203{height:48.000000px;}
.hd_c01203{height:54.000000px;}
.h2_c01203{height:60.000000px;}
.h8_c01203{height:66.000000px;}
.h9_c01203{height:72.000000px;}
.hb_c01203{height:78.000000px;}
.h1_c01203{height:1258.500000px;}
.h0_c01203{height:1258.740000px;}
.w0_c01203{width:904.200000px;}
.w1_c01203{width:904.500000px;}
.x0_c01203{left:0.000000px;}
.x1_c01203{left:155.250000px;}
.x2_c01203{left:199.260000px;}
.x3_c01203{left:232.200000px;}
.x4_c01203{left:242.460000px;}
.x5_c01203{left:277.560000px;}
.xc_c01203{left:302.400000px;}
.x6_c01203{left:312.120000px;}
.xd_c01203{left:326.700000px;}
.x7_c01203{left:331.290000px;}
.x8_c01203{left:338.850000px;}
.xe_c01203{left:342.900000px;}
.x9_c01203{left:354.240000px;}
.xf_c01203{left:355.590000px;}
.xa_c01203{left:360.450000px;}
.x10_c01203{left:368.280000px;}
.xb_c01203{left:380.970000px;}
.x13_c01203{left:391.230000px;}
.x11_c01203{left:408.780000px;}
.x12_c01203{left:413.370000px;}
.x14_c01203{left:432.540000px;}
.x17_c01203{left:444.420000px;}
.x15_c01203{left:445.500000px;}
.x16_c01203{left:447.930000px;}
.x18_c01203{left:456.030000px;}
.x19_c01203{left:487.620000px;}
.x1a_c01203{left:494.910000px;}
.x1b_c01203{left:496.530000px;}
.x24_c01203{left:502.740000px;}
.x1d_c01203{left:510.840000px;}
.x22_c01203{left:512.730000px;}
.x26_c01203{left:522.720000px;}
.x1c_c01203{left:524.610000px;}
.x25_c01203{left:531.630000px;}
.x2c_c01203{left:534.060000px;}
.x2e_c01203{left:537.570000px;}
.x2b_c01203{left:543.510000px;}
.x1e_c01203{left:549.450000px;}
.x2d_c01203{left:554.310000px;}
.x23_c01203{left:577.800000px;}
.x1f_c01203{left:586.980000px;}
.x2f_c01203{left:588.060000px;}
.x27_c01203{left:612.630000px;}
.x20_c01203{left:635.310000px;}
.x28_c01203{left:642.870000px;}
.x29_c01203{left:655.830000px;}
.x21_c01203{left:668.250000px;}
.x2a_c01203{left:688.770000px;}
@media print{
.v0_c01203{vertical-align:0.000000pt;}
.ls0_c01203{letter-spacing:0.000000pt;}
.ws0_c01203{word-spacing:0.000000pt;}
.fs8_c01203{font-size:10.666667pt;}
.fs1_c01203{font-size:16.000000pt;}
.fs3_c01203{font-size:21.333333pt;}
.fs4_c01203{font-size:26.666667pt;}
.fs5_c01203{font-size:32.000000pt;}
.fsa_c01203{font-size:37.333333pt;}
.fs2_c01203{font-size:42.666667pt;}
.fsb_c01203{font-size:48.000000pt;}
.fs0_c01203{font-size:53.333333pt;}
.fs6_c01203{font-size:58.666667pt;}
.fs7_c01203{font-size:64.000000pt;}
.fs9_c01203{font-size:69.333333pt;}
.y0_c01203{bottom:0.000000pt;}
.y1c_c01203{bottom:659.154667pt;}
.y1d_c01203{bottom:663.477333pt;}
.y1b_c01203{bottom:663.844000pt;}
.y1a_c01203{bottom:670.920000pt;}
.y18_c01203{bottom:707.917333pt;}
.y17_c01203{bottom:712.080000pt;}
.y19_c01203{bottom:727.440000pt;}
.y16_c01203{bottom:727.444000pt;}
.y15_c01203{bottom:732.121333pt;}
.y14_c01203{bottom:738.240000pt;}
.y12_c01203{bottom:756.604000pt;}
.y13_c01203{bottom:760.192000pt;}
.y11_c01203{bottom:766.437333pt;}
.y10_c01203{bottom:792.464000pt;}
.y2_c01203{bottom:811.680000pt;}
.y1_c01203{bottom:855.250667pt;}
.y5_c01203{bottom:855.373333pt;}
.ya_c01203{bottom:855.478667pt;}
.y3_c01203{bottom:855.481333pt;}
.yd_c01203{bottom:855.598667pt;}
.y9_c01203{bottom:855.836000pt;}
.ye_c01203{bottom:855.840000pt;}
.yf_c01203{bottom:856.320000pt;}
.yc_c01203{bottom:860.400000pt;}
.yb_c01203{bottom:862.677333pt;}
.y8_c01203{bottom:864.720000pt;}
.y4_c01203{bottom:864.852000pt;}
.y7_c01203{bottom:870.720000pt;}
.y6_c01203{bottom:873.360000pt;}
.ha_c01203{height:10.666667pt;}
.h3_c01203{height:16.000000pt;}
.h5_c01203{height:21.333333pt;}
.h6_c01203{height:26.666667pt;}
.h7_c01203{height:32.000000pt;}
.hc_c01203{height:37.333333pt;}
.h4_c01203{height:42.666667pt;}
.hd_c01203{height:48.000000pt;}
.h2_c01203{height:53.333333pt;}
.h8_c01203{height:58.666667pt;}
.h9_c01203{height:64.000000pt;}
.hb_c01203{height:69.333333pt;}
.h1_c01203{height:1118.666667pt;}
.h0_c01203{height:1118.880000pt;}
.w0_c01203{width:803.733333pt;}
.w1_c01203{width:804.000000pt;}
.x0_c01203{left:0.000000pt;}
.x1_c01203{left:138.000000pt;}
.x2_c01203{left:177.120000pt;}
.x3_c01203{left:206.400000pt;}
.x4_c01203{left:215.520000pt;}
.x5_c01203{left:246.720000pt;}
.xc_c01203{left:268.800000pt;}
.x6_c01203{left:277.440000pt;}
.xd_c01203{left:290.400000pt;}
.x7_c01203{left:294.480000pt;}
.x8_c01203{left:301.200000pt;}
.xe_c01203{left:304.800000pt;}
.x9_c01203{left:314.880000pt;}
.xf_c01203{left:316.080000pt;}
.xa_c01203{left:320.400000pt;}
.x10_c01203{left:327.360000pt;}
.xb_c01203{left:338.640000pt;}
.x13_c01203{left:347.760000pt;}
.x11_c01203{left:363.360000pt;}
.x12_c01203{left:367.440000pt;}
.x14_c01203{left:384.480000pt;}
.x17_c01203{left:395.040000pt;}
.x15_c01203{left:396.000000pt;}
.x16_c01203{left:398.160000pt;}
.x18_c01203{left:405.360000pt;}
.x19_c01203{left:433.440000pt;}
.x1a_c01203{left:439.920000pt;}
.x1b_c01203{left:441.360000pt;}
.x24_c01203{left:446.880000pt;}
.x1d_c01203{left:454.080000pt;}
.x22_c01203{left:455.760000pt;}
.x26_c01203{left:464.640000pt;}
.x1c_c01203{left:466.320000pt;}
.x25_c01203{left:472.560000pt;}
.x2c_c01203{left:474.720000pt;}
.x2e_c01203{left:477.840000pt;}
.x2b_c01203{left:483.120000pt;}
.x1e_c01203{left:488.400000pt;}
.x2d_c01203{left:492.720000pt;}
.x23_c01203{left:513.600000pt;}
.x1f_c01203{left:521.760000pt;}
.x2f_c01203{left:522.720000pt;}
.x27_c01203{left:544.560000pt;}
.x20_c01203{left:564.720000pt;}
.x28_c01203{left:571.440000pt;}
.x29_c01203{left:582.960000pt;}
.x21_c01203{left:594.000000pt;}
.x2a_c01203{left:612.240000pt;}
}





/* 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_c01204 {
    display:none;
  }
  .loading-indicator_c01204.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01204 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_c01204 { 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_c01204" -> "#page-container .classname_c01204")
 */
.pf_c01204 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01204 { /* 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_c01204.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01204 { /* 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_c01204 { /* 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_c01204 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01204 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01204 {overflow:visible;}
  }
}
.c_c01204 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01204 { /* 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_c01204:after { /* webkit #35443 */
  content: '';
}
.t_c01204:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01204 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 */
}
.__c01204 { /* 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_c01204 { /* info for Javascript */
  display:none;
}
.l_c01204 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01204 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01204 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01204: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_c01204 {
    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_c01204.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01204.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_c01204 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01204{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01204;src:url('chunks/assets/font_c605e72f209fc835e906f064.woff2')format("woff");}.ff1_c01204{font-family:ff1_c01204;line-height:1.000000;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;}
.m6_c01204{transform:matrix(0.103480,-0.001449,0.003500,0.249976,0,0);-ms-transform:matrix(0.103480,-0.001449,0.003500,0.249976,0,0);-webkit-transform:matrix(0.103480,-0.001449,0.003500,0.249976,0,0);}
.m50_c01204{transform:matrix(0.144193,-0.003461,0.005998,0.249928,0,0);-ms-transform:matrix(0.144193,-0.003461,0.005998,0.249928,0,0);-webkit-transform:matrix(0.144193,-0.003461,0.005998,0.249928,0,0);}
.m120_c01204{transform:matrix(0.151158,-0.003325,0.005499,0.249940,0,0);-ms-transform:matrix(0.151158,-0.003325,0.005499,0.249940,0,0);-webkit-transform:matrix(0.151158,-0.003325,0.005499,0.249940,0,0);}
.m11e_c01204{transform:matrix(0.153213,-0.003371,0.005499,0.249940,0,0);-ms-transform:matrix(0.153213,-0.003371,0.005499,0.249940,0,0);-webkit-transform:matrix(0.153213,-0.003371,0.005499,0.249940,0,0);}
.mdc_c01204{transform:matrix(0.156037,-0.003433,0.005499,0.249940,0,0);-ms-transform:matrix(0.156037,-0.003433,0.005499,0.249940,0,0);-webkit-transform:matrix(0.156037,-0.003433,0.005499,0.249940,0,0);}
.m35_c01204{transform:matrix(0.161199,-0.003869,0.005998,0.249928,0,0);-ms-transform:matrix(0.161199,-0.003869,0.005998,0.249928,0,0);-webkit-transform:matrix(0.161199,-0.003869,0.005998,0.249928,0,0);}
.m5a_c01204{transform:matrix(0.170771,-0.004098,0.005998,0.249928,0,0);-ms-transform:matrix(0.170771,-0.004098,0.005998,0.249928,0,0);-webkit-transform:matrix(0.170771,-0.004098,0.005998,0.249928,0,0);}
.mae_c01204{transform:matrix(0.174358,-0.003836,0.005499,0.249940,0,0);-ms-transform:matrix(0.174358,-0.003836,0.005499,0.249940,0,0);-webkit-transform:matrix(0.174358,-0.003836,0.005499,0.249940,0,0);}
.md_c01204{transform:matrix(0.174538,-0.002444,0.003500,0.249976,0,0);-ms-transform:matrix(0.174538,-0.002444,0.003500,0.249976,0,0);-webkit-transform:matrix(0.174538,-0.002444,0.003500,0.249976,0,0);}
.m59_c01204{transform:matrix(0.175180,-0.004204,0.005998,0.249928,0,0);-ms-transform:matrix(0.175180,-0.004204,0.005998,0.249928,0,0);-webkit-transform:matrix(0.175180,-0.004204,0.005998,0.249928,0,0);}
.m124_c01204{transform:matrix(0.175737,-0.003866,0.005499,0.249940,0,0);-ms-transform:matrix(0.175737,-0.003866,0.005499,0.249940,0,0);-webkit-transform:matrix(0.175737,-0.003866,0.005499,0.249940,0,0);}
.mab_c01204{transform:matrix(0.176037,-0.003873,0.005499,0.249940,0,0);-ms-transform:matrix(0.176037,-0.003873,0.005499,0.249940,0,0);-webkit-transform:matrix(0.176037,-0.003873,0.005499,0.249940,0,0);}
.mda_c01204{transform:matrix(0.176867,-0.003891,0.005499,0.249940,0,0);-ms-transform:matrix(0.176867,-0.003891,0.005499,0.249940,0,0);-webkit-transform:matrix(0.176867,-0.003891,0.005499,0.249940,0,0);}
.m60_c01204{transform:matrix(0.177297,-0.003901,0.005499,0.249940,0,0);-ms-transform:matrix(0.177297,-0.003901,0.005499,0.249940,0,0);-webkit-transform:matrix(0.177297,-0.003901,0.005499,0.249940,0,0);}
.m123_c01204{transform:matrix(0.177892,-0.003914,0.005499,0.249940,0,0);-ms-transform:matrix(0.177892,-0.003914,0.005499,0.249940,0,0);-webkit-transform:matrix(0.177892,-0.003914,0.005499,0.249940,0,0);}
.m55_c01204{transform:matrix(0.178104,-0.004274,0.005998,0.249928,0,0);-ms-transform:matrix(0.178104,-0.004274,0.005998,0.249928,0,0);-webkit-transform:matrix(0.178104,-0.004274,0.005998,0.249928,0,0);}
.me0_c01204{transform:matrix(0.179212,-0.003943,0.005499,0.249940,0,0);-ms-transform:matrix(0.179212,-0.003943,0.005499,0.249940,0,0);-webkit-transform:matrix(0.179212,-0.003943,0.005499,0.249940,0,0);}
.m51_c01204{transform:matrix(0.179438,-0.004307,0.005998,0.249928,0,0);-ms-transform:matrix(0.179438,-0.004307,0.005998,0.249928,0,0);-webkit-transform:matrix(0.179438,-0.004307,0.005998,0.249928,0,0);}
.m53_c01204{transform:matrix(0.179483,-0.004308,0.005998,0.249928,0,0);-ms-transform:matrix(0.179483,-0.004308,0.005998,0.249928,0,0);-webkit-transform:matrix(0.179483,-0.004308,0.005998,0.249928,0,0);}
.m40_c01204{transform:matrix(0.179518,-0.004308,0.005998,0.249928,0,0);-ms-transform:matrix(0.179518,-0.004308,0.005998,0.249928,0,0);-webkit-transform:matrix(0.179518,-0.004308,0.005998,0.249928,0,0);}
.m4f_c01204{transform:matrix(0.181228,-0.004349,0.005998,0.249928,0,0);-ms-transform:matrix(0.181228,-0.004349,0.005998,0.249928,0,0);-webkit-transform:matrix(0.181228,-0.004349,0.005998,0.249928,0,0);}
.m49_c01204{transform:matrix(0.181833,-0.004364,0.005998,0.249928,0,0);-ms-transform:matrix(0.181833,-0.004364,0.005998,0.249928,0,0);-webkit-transform:matrix(0.181833,-0.004364,0.005998,0.249928,0,0);}
.me2_c01204{transform:matrix(0.182001,-0.004004,0.005499,0.249940,0,0);-ms-transform:matrix(0.182001,-0.004004,0.005499,0.249940,0,0);-webkit-transform:matrix(0.182001,-0.004004,0.005499,0.249940,0,0);}
.m4e_c01204{transform:matrix(0.182113,-0.004371,0.005998,0.249928,0,0);-ms-transform:matrix(0.182113,-0.004371,0.005998,0.249928,0,0);-webkit-transform:matrix(0.182113,-0.004371,0.005998,0.249928,0,0);}
.mb2_c01204{transform:matrix(0.182441,-0.004014,0.005499,0.249940,0,0);-ms-transform:matrix(0.182441,-0.004014,0.005499,0.249940,0,0);-webkit-transform:matrix(0.182441,-0.004014,0.005499,0.249940,0,0);}
.m132_c01204{transform:matrix(0.184180,-0.004052,0.005499,0.249940,0,0);-ms-transform:matrix(0.184180,-0.004052,0.005499,0.249940,0,0);-webkit-transform:matrix(0.184180,-0.004052,0.005499,0.249940,0,0);}
.me1_c01204{transform:matrix(0.185085,-0.004072,0.005499,0.249940,0,0);-ms-transform:matrix(0.185085,-0.004072,0.005499,0.249940,0,0);-webkit-transform:matrix(0.185085,-0.004072,0.005499,0.249940,0,0);}
.m33_c01204{transform:matrix(0.185257,-0.004446,0.005998,0.249928,0,0);-ms-transform:matrix(0.185257,-0.004446,0.005998,0.249928,0,0);-webkit-transform:matrix(0.185257,-0.004446,0.005998,0.249928,0,0);}
.m127_c01204{transform:matrix(0.185275,-0.004076,0.005499,0.249940,0,0);-ms-transform:matrix(0.185275,-0.004076,0.005499,0.249940,0,0);-webkit-transform:matrix(0.185275,-0.004076,0.005499,0.249940,0,0);}
.m118_c01204{transform:matrix(0.185890,-0.004090,0.005499,0.249940,0,0);-ms-transform:matrix(0.185890,-0.004090,0.005499,0.249940,0,0);-webkit-transform:matrix(0.185890,-0.004090,0.005499,0.249940,0,0);}
.m121_c01204{transform:matrix(0.186450,-0.004102,0.005499,0.249940,0,0);-ms-transform:matrix(0.186450,-0.004102,0.005499,0.249940,0,0);-webkit-transform:matrix(0.186450,-0.004102,0.005499,0.249940,0,0);}
.m3b_c01204{transform:matrix(0.186931,-0.004486,0.005998,0.249928,0,0);-ms-transform:matrix(0.186931,-0.004486,0.005998,0.249928,0,0);-webkit-transform:matrix(0.186931,-0.004486,0.005998,0.249928,0,0);}
.m11_c01204{transform:matrix(0.186967,-0.002618,0.003500,0.249976,0,0);-ms-transform:matrix(0.186967,-0.002618,0.003500,0.249976,0,0);-webkit-transform:matrix(0.186967,-0.002618,0.003500,0.249976,0,0);}
.mf_c01204{transform:matrix(0.187867,-0.002630,0.003500,0.249976,0,0);-ms-transform:matrix(0.187867,-0.002630,0.003500,0.249976,0,0);-webkit-transform:matrix(0.187867,-0.002630,0.003500,0.249976,0,0);}
.m42_c01204{transform:matrix(0.187896,-0.004510,0.005998,0.249928,0,0);-ms-transform:matrix(0.187896,-0.004510,0.005998,0.249928,0,0);-webkit-transform:matrix(0.187896,-0.004510,0.005998,0.249928,0,0);}
.m126_c01204{transform:matrix(0.187950,-0.004135,0.005499,0.249940,0,0);-ms-transform:matrix(0.187950,-0.004135,0.005499,0.249940,0,0);-webkit-transform:matrix(0.187950,-0.004135,0.005499,0.249940,0,0);}
.m56_c01204{transform:matrix(0.188401,-0.004522,0.005998,0.249928,0,0);-ms-transform:matrix(0.188401,-0.004522,0.005998,0.249928,0,0);-webkit-transform:matrix(0.188401,-0.004522,0.005998,0.249928,0,0);}
.m13_c01204{transform:matrix(0.188662,-0.002641,0.003500,0.249976,0,0);-ms-transform:matrix(0.188662,-0.002641,0.003500,0.249976,0,0);-webkit-transform:matrix(0.188662,-0.002641,0.003500,0.249976,0,0);}
.mc_c01204{transform:matrix(0.188727,-0.002642,0.003500,0.249976,0,0);-ms-transform:matrix(0.188727,-0.002642,0.003500,0.249976,0,0);-webkit-transform:matrix(0.188727,-0.002642,0.003500,0.249976,0,0);}
.m5b_c01204{transform:matrix(0.190210,-0.004565,0.005998,0.249928,0,0);-ms-transform:matrix(0.190210,-0.004565,0.005998,0.249928,0,0);-webkit-transform:matrix(0.190210,-0.004565,0.005998,0.249928,0,0);}
.maf_c01204{transform:matrix(0.190219,-0.004185,0.005499,0.249940,0,0);-ms-transform:matrix(0.190219,-0.004185,0.005499,0.249940,0,0);-webkit-transform:matrix(0.190219,-0.004185,0.005499,0.249940,0,0);}
.m57_c01204{transform:matrix(0.190265,-0.004566,0.005998,0.249928,0,0);-ms-transform:matrix(0.190265,-0.004566,0.005998,0.249928,0,0);-webkit-transform:matrix(0.190265,-0.004566,0.005998,0.249928,0,0);}
.m10_c01204{transform:matrix(0.191366,-0.002679,0.003500,0.249976,0,0);-ms-transform:matrix(0.191366,-0.002679,0.003500,0.249976,0,0);-webkit-transform:matrix(0.191366,-0.002679,0.003500,0.249976,0,0);}
.md6_c01204{transform:matrix(0.191504,-0.004213,0.005499,0.249940,0,0);-ms-transform:matrix(0.191504,-0.004213,0.005499,0.249940,0,0);-webkit-transform:matrix(0.191504,-0.004213,0.005499,0.249940,0,0);}
.m3d_c01204{transform:matrix(0.191810,-0.004603,0.005998,0.249928,0,0);-ms-transform:matrix(0.191810,-0.004603,0.005998,0.249928,0,0);-webkit-transform:matrix(0.191810,-0.004603,0.005998,0.249928,0,0);}
.m34_c01204{transform:matrix(0.192610,-0.004623,0.005998,0.249928,0,0);-ms-transform:matrix(0.192610,-0.004623,0.005998,0.249928,0,0);-webkit-transform:matrix(0.192610,-0.004623,0.005998,0.249928,0,0);}
.m3f_c01204{transform:matrix(0.193589,-0.004646,0.005998,0.249928,0,0);-ms-transform:matrix(0.193589,-0.004646,0.005998,0.249928,0,0);-webkit-transform:matrix(0.193589,-0.004646,0.005998,0.249928,0,0);}
.mde_c01204{transform:matrix(0.195153,-0.004293,0.005499,0.249940,0,0);-ms-transform:matrix(0.195153,-0.004293,0.005499,0.249940,0,0);-webkit-transform:matrix(0.195153,-0.004293,0.005499,0.249940,0,0);}
.mac_c01204{transform:matrix(0.196777,-0.004329,0.005499,0.249940,0,0);-ms-transform:matrix(0.196777,-0.004329,0.005499,0.249940,0,0);-webkit-transform:matrix(0.196777,-0.004329,0.005499,0.249940,0,0);}
.m128_c01204{transform:matrix(0.197222,-0.004339,0.005499,0.249940,0,0);-ms-transform:matrix(0.197222,-0.004339,0.005499,0.249940,0,0);-webkit-transform:matrix(0.197222,-0.004339,0.005499,0.249940,0,0);}
.m134_c01204{transform:matrix(0.197337,-0.004341,0.005499,0.249940,0,0);-ms-transform:matrix(0.197337,-0.004341,0.005499,0.249940,0,0);-webkit-transform:matrix(0.197337,-0.004341,0.005499,0.249940,0,0);}
.m80_c01204{transform:matrix(0.197372,-0.004342,0.005499,0.249940,0,0);-ms-transform:matrix(0.197372,-0.004342,0.005499,0.249940,0,0);-webkit-transform:matrix(0.197372,-0.004342,0.005499,0.249940,0,0);}
.m113_c01204{transform:matrix(0.197862,-0.004353,0.005499,0.249940,0,0);-ms-transform:matrix(0.197862,-0.004353,0.005499,0.249940,0,0);-webkit-transform:matrix(0.197862,-0.004353,0.005499,0.249940,0,0);}
.mb6_c01204{transform:matrix(0.198727,-0.004372,0.005499,0.249940,0,0);-ms-transform:matrix(0.198727,-0.004372,0.005499,0.249940,0,0);-webkit-transform:matrix(0.198727,-0.004372,0.005499,0.249940,0,0);}
.m54_c01204{transform:matrix(0.199228,-0.004781,0.005998,0.249928,0,0);-ms-transform:matrix(0.199228,-0.004781,0.005998,0.249928,0,0);-webkit-transform:matrix(0.199228,-0.004781,0.005998,0.249928,0,0);}
.m47_c01204{transform:matrix(0.199643,-0.004791,0.005998,0.249928,0,0);-ms-transform:matrix(0.199643,-0.004791,0.005998,0.249928,0,0);-webkit-transform:matrix(0.199643,-0.004791,0.005998,0.249928,0,0);}
.m58_c01204{transform:matrix(0.200362,-0.004809,0.005998,0.249928,0,0);-ms-transform:matrix(0.200362,-0.004809,0.005998,0.249928,0,0);-webkit-transform:matrix(0.200362,-0.004809,0.005998,0.249928,0,0);}
.m4b_c01204{transform:matrix(0.200532,-0.004813,0.005998,0.249928,0,0);-ms-transform:matrix(0.200532,-0.004813,0.005998,0.249928,0,0);-webkit-transform:matrix(0.200532,-0.004813,0.005998,0.249928,0,0);}
.m4_c01204{transform:matrix(0.201785,-0.002825,0.003500,0.249976,0,0);-ms-transform:matrix(0.201785,-0.002825,0.003500,0.249976,0,0);-webkit-transform:matrix(0.201785,-0.002825,0.003500,0.249976,0,0);}
.mdd_c01204{transform:matrix(0.201896,-0.004442,0.005499,0.249940,0,0);-ms-transform:matrix(0.201896,-0.004442,0.005499,0.249940,0,0);-webkit-transform:matrix(0.201896,-0.004442,0.005499,0.249940,0,0);}
.m138_c01204{transform:matrix(0.201921,-0.004442,0.005499,0.249940,0,0);-ms-transform:matrix(0.201921,-0.004442,0.005499,0.249940,0,0);-webkit-transform:matrix(0.201921,-0.004442,0.005499,0.249940,0,0);}
.mb3_c01204{transform:matrix(0.201991,-0.004444,0.005499,0.249940,0,0);-ms-transform:matrix(0.201991,-0.004444,0.005499,0.249940,0,0);-webkit-transform:matrix(0.201991,-0.004444,0.005499,0.249940,0,0);}
.m13f_c01204{transform:matrix(0.202075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202075,0.000000,0.000000,0.250000,0,0);}
.mdf_c01204{transform:matrix(0.202266,-0.004450,0.005499,0.249940,0,0);-ms-transform:matrix(0.202266,-0.004450,0.005499,0.249940,0,0);-webkit-transform:matrix(0.202266,-0.004450,0.005499,0.249940,0,0);}
.m5d_c01204{transform:matrix(0.202616,-0.004458,0.005499,0.249940,0,0);-ms-transform:matrix(0.202616,-0.004458,0.005499,0.249940,0,0);-webkit-transform:matrix(0.202616,-0.004458,0.005499,0.249940,0,0);}
.m111_c01204{transform:matrix(0.203116,-0.004469,0.005499,0.249940,0,0);-ms-transform:matrix(0.203116,-0.004469,0.005499,0.249940,0,0);-webkit-transform:matrix(0.203116,-0.004469,0.005499,0.249940,0,0);}
.m13d_c01204{transform:matrix(0.203165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203165,0.000000,0.000000,0.250000,0,0);}
.m66_c01204{transform:matrix(0.203251,-0.004472,0.005499,0.249940,0,0);-ms-transform:matrix(0.203251,-0.004472,0.005499,0.249940,0,0);-webkit-transform:matrix(0.203251,-0.004472,0.005499,0.249940,0,0);}
.m125_c01204{transform:matrix(0.203356,-0.004474,0.005499,0.249940,0,0);-ms-transform:matrix(0.203356,-0.004474,0.005499,0.249940,0,0);-webkit-transform:matrix(0.203356,-0.004474,0.005499,0.249940,0,0);}
.m117_c01204{transform:matrix(0.203456,-0.004476,0.005499,0.249940,0,0);-ms-transform:matrix(0.203456,-0.004476,0.005499,0.249940,0,0);-webkit-transform:matrix(0.203456,-0.004476,0.005499,0.249940,0,0);}
.m36_c01204{transform:matrix(0.203721,-0.004889,0.005998,0.249928,0,0);-ms-transform:matrix(0.203721,-0.004889,0.005998,0.249928,0,0);-webkit-transform:matrix(0.203721,-0.004889,0.005998,0.249928,0,0);}
.m62_c01204{transform:matrix(0.204815,-0.004506,0.005499,0.249940,0,0);-ms-transform:matrix(0.204815,-0.004506,0.005499,0.249940,0,0);-webkit-transform:matrix(0.204815,-0.004506,0.005499,0.249940,0,0);}
.md9_c01204{transform:matrix(0.205020,-0.004510,0.005499,0.249940,0,0);-ms-transform:matrix(0.205020,-0.004510,0.005499,0.249940,0,0);-webkit-transform:matrix(0.205020,-0.004510,0.005499,0.249940,0,0);}
.m3e_c01204{transform:matrix(0.205626,-0.004935,0.005998,0.249928,0,0);-ms-transform:matrix(0.205626,-0.004935,0.005998,0.249928,0,0);-webkit-transform:matrix(0.205626,-0.004935,0.005998,0.249928,0,0);}
.me_c01204{transform:matrix(0.205660,-0.002879,0.003500,0.249976,0,0);-ms-transform:matrix(0.205660,-0.002879,0.003500,0.249976,0,0);-webkit-transform:matrix(0.205660,-0.002879,0.003500,0.249976,0,0);}
.mcf_c01204{transform:matrix(0.205855,-0.004529,0.005499,0.249940,0,0);-ms-transform:matrix(0.205855,-0.004529,0.005499,0.249940,0,0);-webkit-transform:matrix(0.205855,-0.004529,0.005499,0.249940,0,0);}
.m12c_c01204{transform:matrix(0.205890,-0.004530,0.005499,0.249940,0,0);-ms-transform:matrix(0.205890,-0.004530,0.005499,0.249940,0,0);-webkit-transform:matrix(0.205890,-0.004530,0.005499,0.249940,0,0);}
.m136_c01204{transform:matrix(0.206380,-0.004540,0.005499,0.249940,0,0);-ms-transform:matrix(0.206380,-0.004540,0.005499,0.249940,0,0);-webkit-transform:matrix(0.206380,-0.004540,0.005499,0.249940,0,0);}
.m122_c01204{transform:matrix(0.206470,-0.004542,0.005499,0.249940,0,0);-ms-transform:matrix(0.206470,-0.004542,0.005499,0.249940,0,0);-webkit-transform:matrix(0.206470,-0.004542,0.005499,0.249940,0,0);}
.mc2_c01204{transform:matrix(0.206775,-0.004549,0.005499,0.249940,0,0);-ms-transform:matrix(0.206775,-0.004549,0.005499,0.249940,0,0);-webkit-transform:matrix(0.206775,-0.004549,0.005499,0.249940,0,0);}
.m9a_c01204{transform:matrix(0.206845,-0.004551,0.005499,0.249940,0,0);-ms-transform:matrix(0.206845,-0.004551,0.005499,0.249940,0,0);-webkit-transform:matrix(0.206845,-0.004551,0.005499,0.249940,0,0);}
.m11f_c01204{transform:matrix(0.206980,-0.004554,0.005499,0.249940,0,0);-ms-transform:matrix(0.206980,-0.004554,0.005499,0.249940,0,0);-webkit-transform:matrix(0.206980,-0.004554,0.005499,0.249940,0,0);}
.m13a_c01204{transform:matrix(0.207425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207425,0.000000,0.000000,0.250000,0,0);}
.m3_c01204{transform:matrix(0.208270,-0.002916,0.003500,0.249976,0,0);-ms-transform:matrix(0.208270,-0.002916,0.003500,0.249976,0,0);-webkit-transform:matrix(0.208270,-0.002916,0.003500,0.249976,0,0);}
.mb1_c01204{transform:matrix(0.208490,-0.004587,0.005499,0.249940,0,0);-ms-transform:matrix(0.208490,-0.004587,0.005499,0.249940,0,0);-webkit-transform:matrix(0.208490,-0.004587,0.005499,0.249940,0,0);}
.mdb_c01204{transform:matrix(0.208530,-0.004588,0.005499,0.249940,0,0);-ms-transform:matrix(0.208530,-0.004588,0.005499,0.249940,0,0);-webkit-transform:matrix(0.208530,-0.004588,0.005499,0.249940,0,0);}
.m11c_c01204{transform:matrix(0.208555,-0.004588,0.005499,0.249940,0,0);-ms-transform:matrix(0.208555,-0.004588,0.005499,0.249940,0,0);-webkit-transform:matrix(0.208555,-0.004588,0.005499,0.249940,0,0);}
.m141_c01204{transform:matrix(0.208605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208605,0.000000,0.000000,0.250000,0,0);}
.me3_c01204{transform:matrix(0.208814,-0.004594,0.005499,0.249940,0,0);-ms-transform:matrix(0.208814,-0.004594,0.005499,0.249940,0,0);-webkit-transform:matrix(0.208814,-0.004594,0.005499,0.249940,0,0);}
.m129_c01204{transform:matrix(0.208864,-0.004595,0.005499,0.249940,0,0);-ms-transform:matrix(0.208864,-0.004595,0.005499,0.249940,0,0);-webkit-transform:matrix(0.208864,-0.004595,0.005499,0.249940,0,0);}
.m3c_c01204{transform:matrix(0.209035,-0.005017,0.005998,0.249928,0,0);-ms-transform:matrix(0.209035,-0.005017,0.005998,0.249928,0,0);-webkit-transform:matrix(0.209035,-0.005017,0.005998,0.249928,0,0);}
.maa_c01204{transform:matrix(0.209044,-0.004599,0.005499,0.249940,0,0);-ms-transform:matrix(0.209044,-0.004599,0.005499,0.249940,0,0);-webkit-transform:matrix(0.209044,-0.004599,0.005499,0.249940,0,0);}
.m41_c01204{transform:matrix(0.209105,-0.005019,0.005998,0.249928,0,0);-ms-transform:matrix(0.209105,-0.005019,0.005998,0.249928,0,0);-webkit-transform:matrix(0.209105,-0.005019,0.005998,0.249928,0,0);}
.m28_c01204{transform:matrix(0.209445,-0.005027,0.005998,0.249928,0,0);-ms-transform:matrix(0.209445,-0.005027,0.005998,0.249928,0,0);-webkit-transform:matrix(0.209445,-0.005027,0.005998,0.249928,0,0);}
.m5_c01204{transform:matrix(0.210229,-0.002943,0.003500,0.249976,0,0);-ms-transform:matrix(0.210229,-0.002943,0.003500,0.249976,0,0);-webkit-transform:matrix(0.210229,-0.002943,0.003500,0.249976,0,0);}
.mb0_c01204{transform:matrix(0.210289,-0.004626,0.005499,0.249940,0,0);-ms-transform:matrix(0.210289,-0.004626,0.005499,0.249940,0,0);-webkit-transform:matrix(0.210289,-0.004626,0.005499,0.249940,0,0);}
.m14a_c01204{transform:matrix(0.210544,-0.002105,0.002500,0.249988,0,0);-ms-transform:matrix(0.210544,-0.002105,0.002500,0.249988,0,0);-webkit-transform:matrix(0.210544,-0.002105,0.002500,0.249988,0,0);}
.m20_c01204{transform:matrix(0.210549,-0.005053,0.005998,0.249928,0,0);-ms-transform:matrix(0.210549,-0.005053,0.005998,0.249928,0,0);-webkit-transform:matrix(0.210549,-0.005053,0.005998,0.249928,0,0);}
.m11d_c01204{transform:matrix(0.210614,-0.004634,0.005499,0.249940,0,0);-ms-transform:matrix(0.210614,-0.004634,0.005499,0.249940,0,0);-webkit-transform:matrix(0.210614,-0.004634,0.005499,0.249940,0,0);}
.m11a_c01204{transform:matrix(0.211234,-0.004647,0.005499,0.249940,0,0);-ms-transform:matrix(0.211234,-0.004647,0.005499,0.249940,0,0);-webkit-transform:matrix(0.211234,-0.004647,0.005499,0.249940,0,0);}
.mad_c01204{transform:matrix(0.211384,-0.004650,0.005499,0.249940,0,0);-ms-transform:matrix(0.211384,-0.004650,0.005499,0.249940,0,0);-webkit-transform:matrix(0.211384,-0.004650,0.005499,0.249940,0,0);}
.m12d_c01204{transform:matrix(0.211754,-0.004659,0.005499,0.249940,0,0);-ms-transform:matrix(0.211754,-0.004659,0.005499,0.249940,0,0);-webkit-transform:matrix(0.211754,-0.004659,0.005499,0.249940,0,0);}
.m79_c01204{transform:matrix(0.211844,-0.004661,0.005499,0.249940,0,0);-ms-transform:matrix(0.211844,-0.004661,0.005499,0.249940,0,0);-webkit-transform:matrix(0.211844,-0.004661,0.005499,0.249940,0,0);}
.m145_c01204{transform:matrix(0.212599,-0.002126,0.002500,0.249988,0,0);-ms-transform:matrix(0.212599,-0.002126,0.002500,0.249988,0,0);-webkit-transform:matrix(0.212599,-0.002126,0.002500,0.249988,0,0);}
.m14_c01204{transform:matrix(0.212619,-0.002977,0.003500,0.249976,0,0);-ms-transform:matrix(0.212619,-0.002977,0.003500,0.249976,0,0);-webkit-transform:matrix(0.212619,-0.002977,0.003500,0.249976,0,0);}
.mb_c01204{transform:matrix(0.213004,-0.002982,0.003500,0.249976,0,0);-ms-transform:matrix(0.213004,-0.002982,0.003500,0.249976,0,0);-webkit-transform:matrix(0.213004,-0.002982,0.003500,0.249976,0,0);}
.mc9_c01204{transform:matrix(0.213433,-0.004696,0.005499,0.249940,0,0);-ms-transform:matrix(0.213433,-0.004696,0.005499,0.249940,0,0);-webkit-transform:matrix(0.213433,-0.004696,0.005499,0.249940,0,0);}
.m4a_c01204{transform:matrix(0.213823,-0.005132,0.005998,0.249928,0,0);-ms-transform:matrix(0.213823,-0.005132,0.005998,0.249928,0,0);-webkit-transform:matrix(0.213823,-0.005132,0.005998,0.249928,0,0);}
.m5f_c01204{transform:matrix(0.214538,-0.004720,0.005499,0.249940,0,0);-ms-transform:matrix(0.214538,-0.004720,0.005499,0.249940,0,0);-webkit-transform:matrix(0.214538,-0.004720,0.005499,0.249940,0,0);}
.mc8_c01204{transform:matrix(0.214803,-0.004726,0.005499,0.249940,0,0);-ms-transform:matrix(0.214803,-0.004726,0.005499,0.249940,0,0);-webkit-transform:matrix(0.214803,-0.004726,0.005499,0.249940,0,0);}
.m37_c01204{transform:matrix(0.215163,-0.005164,0.005998,0.249928,0,0);-ms-transform:matrix(0.215163,-0.005164,0.005998,0.249928,0,0);-webkit-transform:matrix(0.215163,-0.005164,0.005998,0.249928,0,0);}
.mcb_c01204{transform:matrix(0.215198,-0.004734,0.005499,0.249940,0,0);-ms-transform:matrix(0.215198,-0.004734,0.005499,0.249940,0,0);-webkit-transform:matrix(0.215198,-0.004734,0.005499,0.249940,0,0);}
.ma_c01204{transform:matrix(0.215694,-0.003020,0.003500,0.249976,0,0);-ms-transform:matrix(0.215694,-0.003020,0.003500,0.249976,0,0);-webkit-transform:matrix(0.215694,-0.003020,0.003500,0.249976,0,0);}
.m12f_c01204{transform:matrix(0.215843,-0.004749,0.005499,0.249940,0,0);-ms-transform:matrix(0.215843,-0.004749,0.005499,0.249940,0,0);-webkit-transform:matrix(0.215843,-0.004749,0.005499,0.249940,0,0);}
.ma6_c01204{transform:matrix(0.216443,-0.004762,0.005499,0.249940,0,0);-ms-transform:matrix(0.216443,-0.004762,0.005499,0.249940,0,0);-webkit-transform:matrix(0.216443,-0.004762,0.005499,0.249940,0,0);}
.mce_c01204{transform:matrix(0.216533,-0.004764,0.005499,0.249940,0,0);-ms-transform:matrix(0.216533,-0.004764,0.005499,0.249940,0,0);-webkit-transform:matrix(0.216533,-0.004764,0.005499,0.249940,0,0);}
.m7c_c01204{transform:matrix(0.216898,-0.004772,0.005499,0.249940,0,0);-ms-transform:matrix(0.216898,-0.004772,0.005499,0.249940,0,0);-webkit-transform:matrix(0.216898,-0.004772,0.005499,0.249940,0,0);}
.ma3_c01204{transform:matrix(0.216943,-0.004773,0.005499,0.249940,0,0);-ms-transform:matrix(0.216943,-0.004773,0.005499,0.249940,0,0);-webkit-transform:matrix(0.216943,-0.004773,0.005499,0.249940,0,0);}
.mfc_c01204{transform:matrix(0.217537,-0.004786,0.005499,0.249940,0,0);-ms-transform:matrix(0.217537,-0.004786,0.005499,0.249940,0,0);-webkit-transform:matrix(0.217537,-0.004786,0.005499,0.249940,0,0);}
.mb7_c01204{transform:matrix(0.217602,-0.004787,0.005499,0.249940,0,0);-ms-transform:matrix(0.217602,-0.004787,0.005499,0.249940,0,0);-webkit-transform:matrix(0.217602,-0.004787,0.005499,0.249940,0,0);}
.mfb_c01204{transform:matrix(0.217717,-0.004790,0.005499,0.249940,0,0);-ms-transform:matrix(0.217717,-0.004790,0.005499,0.249940,0,0);-webkit-transform:matrix(0.217717,-0.004790,0.005499,0.249940,0,0);}
.ma4_c01204{transform:matrix(0.217827,-0.004792,0.005499,0.249940,0,0);-ms-transform:matrix(0.217827,-0.004792,0.005499,0.249940,0,0);-webkit-transform:matrix(0.217827,-0.004792,0.005499,0.249940,0,0);}
.mba_c01204{transform:matrix(0.218272,-0.004802,0.005499,0.249940,0,0);-ms-transform:matrix(0.218272,-0.004802,0.005499,0.249940,0,0);-webkit-transform:matrix(0.218272,-0.004802,0.005499,0.249940,0,0);}
.me4_c01204{transform:matrix(0.218752,-0.004813,0.005499,0.249940,0,0);-ms-transform:matrix(0.218752,-0.004813,0.005499,0.249940,0,0);-webkit-transform:matrix(0.218752,-0.004813,0.005499,0.249940,0,0);}
.m9f_c01204{transform:matrix(0.218872,-0.004815,0.005499,0.249940,0,0);-ms-transform:matrix(0.218872,-0.004815,0.005499,0.249940,0,0);-webkit-transform:matrix(0.218872,-0.004815,0.005499,0.249940,0,0);}
.m25_c01204{transform:matrix(0.218877,-0.005253,0.005998,0.249928,0,0);-ms-transform:matrix(0.218877,-0.005253,0.005998,0.249928,0,0);-webkit-transform:matrix(0.218877,-0.005253,0.005998,0.249928,0,0);}
.m130_c01204{transform:matrix(0.218902,-0.004816,0.005499,0.249940,0,0);-ms-transform:matrix(0.218902,-0.004816,0.005499,0.249940,0,0);-webkit-transform:matrix(0.218902,-0.004816,0.005499,0.249940,0,0);}
.m13e_c01204{transform:matrix(0.219480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219480,0.000000,0.000000,0.250000,0,0);}
.m48_c01204{transform:matrix(0.219912,-0.005278,0.005998,0.249928,0,0);-ms-transform:matrix(0.219912,-0.005278,0.005998,0.249928,0,0);-webkit-transform:matrix(0.219912,-0.005278,0.005998,0.249928,0,0);}
.m135_c01204{transform:matrix(0.219957,-0.004839,0.005499,0.249940,0,0);-ms-transform:matrix(0.219957,-0.004839,0.005499,0.249940,0,0);-webkit-transform:matrix(0.219957,-0.004839,0.005499,0.249940,0,0);}
.m69_c01204{transform:matrix(0.219962,-0.004839,0.005499,0.249940,0,0);-ms-transform:matrix(0.219962,-0.004839,0.005499,0.249940,0,0);-webkit-transform:matrix(0.219962,-0.004839,0.005499,0.249940,0,0);}
.m12e_c01204{transform:matrix(0.220122,-0.004843,0.005499,0.249940,0,0);-ms-transform:matrix(0.220122,-0.004843,0.005499,0.249940,0,0);-webkit-transform:matrix(0.220122,-0.004843,0.005499,0.249940,0,0);}
.m73_c01204{transform:matrix(0.220177,-0.004844,0.005499,0.249940,0,0);-ms-transform:matrix(0.220177,-0.004844,0.005499,0.249940,0,0);-webkit-transform:matrix(0.220177,-0.004844,0.005499,0.249940,0,0);}
.m142_c01204{transform:matrix(0.220655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220655,0.000000,0.000000,0.250000,0,0);}
.m67_c01204{transform:matrix(0.220742,-0.004856,0.005499,0.249940,0,0);-ms-transform:matrix(0.220742,-0.004856,0.005499,0.249940,0,0);-webkit-transform:matrix(0.220742,-0.004856,0.005499,0.249940,0,0);}
.m81_c01204{transform:matrix(0.220872,-0.004859,0.005499,0.249940,0,0);-ms-transform:matrix(0.220872,-0.004859,0.005499,0.249940,0,0);-webkit-transform:matrix(0.220872,-0.004859,0.005499,0.249940,0,0);}
.m4d_c01204{transform:matrix(0.220886,-0.005301,0.005998,0.249928,0,0);-ms-transform:matrix(0.220886,-0.005301,0.005998,0.249928,0,0);-webkit-transform:matrix(0.220886,-0.005301,0.005998,0.249928,0,0);}
.m3a_c01204{transform:matrix(0.221231,-0.005310,0.005998,0.249928,0,0);-ms-transform:matrix(0.221231,-0.005310,0.005998,0.249928,0,0);-webkit-transform:matrix(0.221231,-0.005310,0.005998,0.249928,0,0);}
.m4c_c01204{transform:matrix(0.221931,-0.005326,0.005998,0.249928,0,0);-ms-transform:matrix(0.221931,-0.005326,0.005998,0.249928,0,0);-webkit-transform:matrix(0.221931,-0.005326,0.005998,0.249928,0,0);}
.mcc_c01204{transform:matrix(0.222826,-0.004902,0.005499,0.249940,0,0);-ms-transform:matrix(0.222826,-0.004902,0.005499,0.249940,0,0);-webkit-transform:matrix(0.222826,-0.004902,0.005499,0.249940,0,0);}
.m12_c01204{transform:matrix(0.223143,-0.003124,0.003500,0.249976,0,0);-ms-transform:matrix(0.223143,-0.003124,0.003500,0.249976,0,0);-webkit-transform:matrix(0.223143,-0.003124,0.003500,0.249976,0,0);}
.m100_c01204{transform:matrix(0.223281,-0.004912,0.005499,0.249940,0,0);-ms-transform:matrix(0.223281,-0.004912,0.005499,0.249940,0,0);-webkit-transform:matrix(0.223281,-0.004912,0.005499,0.249940,0,0);}
.m7a_c01204{transform:matrix(0.223306,-0.004913,0.005499,0.249940,0,0);-ms-transform:matrix(0.223306,-0.004913,0.005499,0.249940,0,0);-webkit-transform:matrix(0.223306,-0.004913,0.005499,0.249940,0,0);}
.m114_c01204{transform:matrix(0.223426,-0.004915,0.005499,0.249940,0,0);-ms-transform:matrix(0.223426,-0.004915,0.005499,0.249940,0,0);-webkit-transform:matrix(0.223426,-0.004915,0.005499,0.249940,0,0);}
.m147_c01204{transform:matrix(0.224044,-0.002240,0.002500,0.249988,0,0);-ms-transform:matrix(0.224044,-0.002240,0.002500,0.249988,0,0);-webkit-transform:matrix(0.224044,-0.002240,0.002500,0.249988,0,0);}
.m115_c01204{transform:matrix(0.224381,-0.004936,0.005499,0.249940,0,0);-ms-transform:matrix(0.224381,-0.004936,0.005499,0.249940,0,0);-webkit-transform:matrix(0.224381,-0.004936,0.005499,0.249940,0,0);}
.mc6_c01204{transform:matrix(0.224386,-0.004936,0.005499,0.249940,0,0);-ms-transform:matrix(0.224386,-0.004936,0.005499,0.249940,0,0);-webkit-transform:matrix(0.224386,-0.004936,0.005499,0.249940,0,0);}
.m107_c01204{transform:matrix(0.224806,-0.004946,0.005499,0.249940,0,0);-ms-transform:matrix(0.224806,-0.004946,0.005499,0.249940,0,0);-webkit-transform:matrix(0.224806,-0.004946,0.005499,0.249940,0,0);}
.mc7_c01204{transform:matrix(0.225121,-0.004953,0.005499,0.249940,0,0);-ms-transform:matrix(0.225121,-0.004953,0.005499,0.249940,0,0);-webkit-transform:matrix(0.225121,-0.004953,0.005499,0.249940,0,0);}
.md4_c01204{transform:matrix(0.225270,-0.004956,0.005499,0.249940,0,0);-ms-transform:matrix(0.225270,-0.004956,0.005499,0.249940,0,0);-webkit-transform:matrix(0.225270,-0.004956,0.005499,0.249940,0,0);}
.m46_c01204{transform:matrix(0.225560,-0.005413,0.005998,0.249928,0,0);-ms-transform:matrix(0.225560,-0.005413,0.005998,0.249928,0,0);-webkit-transform:matrix(0.225560,-0.005413,0.005998,0.249928,0,0);}
.m131_c01204{transform:matrix(0.225590,-0.004963,0.005499,0.249940,0,0);-ms-transform:matrix(0.225590,-0.004963,0.005499,0.249940,0,0);-webkit-transform:matrix(0.225590,-0.004963,0.005499,0.249940,0,0);}
.m101_c01204{transform:matrix(0.225980,-0.004972,0.005499,0.249940,0,0);-ms-transform:matrix(0.225980,-0.004972,0.005499,0.249940,0,0);-webkit-transform:matrix(0.225980,-0.004972,0.005499,0.249940,0,0);}
.m7b_c01204{transform:matrix(0.226025,-0.004973,0.005499,0.249940,0,0);-ms-transform:matrix(0.226025,-0.004973,0.005499,0.249940,0,0);-webkit-transform:matrix(0.226025,-0.004973,0.005499,0.249940,0,0);}
.m5e_c01204{transform:matrix(0.226065,-0.004973,0.005499,0.249940,0,0);-ms-transform:matrix(0.226065,-0.004973,0.005499,0.249940,0,0);-webkit-transform:matrix(0.226065,-0.004973,0.005499,0.249940,0,0);}
.m116_c01204{transform:matrix(0.226560,-0.004984,0.005499,0.249940,0,0);-ms-transform:matrix(0.226560,-0.004984,0.005499,0.249940,0,0);-webkit-transform:matrix(0.226560,-0.004984,0.005499,0.249940,0,0);}
.m139_c01204{transform:matrix(0.226680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226680,0.000000,0.000000,0.250000,0,0);}
.m152_c01204{transform:matrix(0.227459,0.001592,-0.001750,0.249994,0,0);-ms-transform:matrix(0.227459,0.001592,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.227459,0.001592,-0.001750,0.249994,0,0);}
.m23_c01204{transform:matrix(0.227509,-0.005460,0.005998,0.249928,0,0);-ms-transform:matrix(0.227509,-0.005460,0.005998,0.249928,0,0);-webkit-transform:matrix(0.227509,-0.005460,0.005998,0.249928,0,0);}
.mcd_c01204{transform:matrix(0.228115,-0.005019,0.005499,0.249940,0,0);-ms-transform:matrix(0.228115,-0.005019,0.005499,0.249940,0,0);-webkit-transform:matrix(0.228115,-0.005019,0.005499,0.249940,0,0);}
.m104_c01204{transform:matrix(0.228415,-0.005025,0.005499,0.249940,0,0);-ms-transform:matrix(0.228415,-0.005025,0.005499,0.249940,0,0);-webkit-transform:matrix(0.228415,-0.005025,0.005499,0.249940,0,0);}
.m112_c01204{transform:matrix(0.228480,-0.005027,0.005499,0.249940,0,0);-ms-transform:matrix(0.228480,-0.005027,0.005499,0.249940,0,0);-webkit-transform:matrix(0.228480,-0.005027,0.005499,0.249940,0,0);}
.m27_c01204{transform:matrix(0.228629,-0.005487,0.005998,0.249928,0,0);-ms-transform:matrix(0.228629,-0.005487,0.005998,0.249928,0,0);-webkit-transform:matrix(0.228629,-0.005487,0.005998,0.249928,0,0);}
.m82_c01204{transform:matrix(0.228650,-0.005030,0.005499,0.249940,0,0);-ms-transform:matrix(0.228650,-0.005030,0.005499,0.249940,0,0);-webkit-transform:matrix(0.228650,-0.005030,0.005499,0.249940,0,0);}
.m12b_c01204{transform:matrix(0.228985,-0.005038,0.005499,0.249940,0,0);-ms-transform:matrix(0.228985,-0.005038,0.005499,0.249940,0,0);-webkit-transform:matrix(0.228985,-0.005038,0.005499,0.249940,0,0);}
.ma1_c01204{transform:matrix(0.229165,-0.005042,0.005499,0.249940,0,0);-ms-transform:matrix(0.229165,-0.005042,0.005499,0.249940,0,0);-webkit-transform:matrix(0.229165,-0.005042,0.005499,0.249940,0,0);}
.m71_c01204{transform:matrix(0.229210,-0.005043,0.005499,0.249940,0,0);-ms-transform:matrix(0.229210,-0.005043,0.005499,0.249940,0,0);-webkit-transform:matrix(0.229210,-0.005043,0.005499,0.249940,0,0);}
.m12a_c01204{transform:matrix(0.230329,-0.005067,0.005499,0.249940,0,0);-ms-transform:matrix(0.230329,-0.005067,0.005499,0.249940,0,0);-webkit-transform:matrix(0.230329,-0.005067,0.005499,0.249940,0,0);}
.m13b_c01204{transform:matrix(0.230395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230395,0.000000,0.000000,0.250000,0,0);}
.m52_c01204{transform:matrix(0.230579,-0.005534,0.005998,0.249928,0,0);-ms-transform:matrix(0.230579,-0.005534,0.005998,0.249928,0,0);-webkit-transform:matrix(0.230579,-0.005534,0.005998,0.249928,0,0);}
.m149_c01204{transform:matrix(0.231368,-0.002314,0.002500,0.249988,0,0);-ms-transform:matrix(0.231368,-0.002314,0.002500,0.249988,0,0);-webkit-transform:matrix(0.231368,-0.002314,0.002500,0.249988,0,0);}
.m61_c01204{transform:matrix(0.231439,-0.005092,0.005499,0.249940,0,0);-ms-transform:matrix(0.231439,-0.005092,0.005499,0.249940,0,0);-webkit-transform:matrix(0.231439,-0.005092,0.005499,0.249940,0,0);}
.m19_c01204{transform:matrix(0.231498,-0.005556,0.005998,0.249928,0,0);-ms-transform:matrix(0.231498,-0.005556,0.005998,0.249928,0,0);-webkit-transform:matrix(0.231498,-0.005556,0.005998,0.249928,0,0);}
.mb8_c01204{transform:matrix(0.231644,-0.005096,0.005499,0.249940,0,0);-ms-transform:matrix(0.231644,-0.005096,0.005499,0.249940,0,0);-webkit-transform:matrix(0.231644,-0.005096,0.005499,0.249940,0,0);}
.m7_c01204{transform:matrix(0.232037,-0.003249,0.003500,0.249976,0,0);-ms-transform:matrix(0.232037,-0.003249,0.003500,0.249976,0,0);-webkit-transform:matrix(0.232037,-0.003249,0.003500,0.249976,0,0);}
.m44_c01204{transform:matrix(0.232053,-0.005569,0.005998,0.249928,0,0);-ms-transform:matrix(0.232053,-0.005569,0.005998,0.249928,0,0);-webkit-transform:matrix(0.232053,-0.005569,0.005998,0.249928,0,0);}
.m5c_c01204{transform:matrix(0.232704,-0.005119,0.005499,0.249940,0,0);-ms-transform:matrix(0.232704,-0.005119,0.005499,0.249940,0,0);-webkit-transform:matrix(0.232704,-0.005119,0.005499,0.249940,0,0);}
.me8_c01204{transform:matrix(0.233678,-0.005141,0.005499,0.249940,0,0);-ms-transform:matrix(0.233678,-0.005141,0.005499,0.249940,0,0);-webkit-transform:matrix(0.233678,-0.005141,0.005499,0.249940,0,0);}
.m1d_c01204{transform:matrix(0.234018,-0.005616,0.005998,0.249928,0,0);-ms-transform:matrix(0.234018,-0.005616,0.005998,0.249928,0,0);-webkit-transform:matrix(0.234018,-0.005616,0.005998,0.249928,0,0);}
.m18_c01204{transform:matrix(0.234193,-0.005621,0.005998,0.249928,0,0);-ms-transform:matrix(0.234193,-0.005621,0.005998,0.249928,0,0);-webkit-transform:matrix(0.234193,-0.005621,0.005998,0.249928,0,0);}
.md0_c01204{transform:matrix(0.234203,-0.005152,0.005499,0.249940,0,0);-ms-transform:matrix(0.234203,-0.005152,0.005499,0.249940,0,0);-webkit-transform:matrix(0.234203,-0.005152,0.005499,0.249940,0,0);}
.mc5_c01204{transform:matrix(0.234343,-0.005156,0.005499,0.249940,0,0);-ms-transform:matrix(0.234343,-0.005156,0.005499,0.249940,0,0);-webkit-transform:matrix(0.234343,-0.005156,0.005499,0.249940,0,0);}
.m137_c01204{transform:matrix(0.234563,-0.005160,0.005499,0.249940,0,0);-ms-transform:matrix(0.234563,-0.005160,0.005499,0.249940,0,0);-webkit-transform:matrix(0.234563,-0.005160,0.005499,0.249940,0,0);}
.m6c_c01204{transform:matrix(0.234728,-0.005164,0.005499,0.249940,0,0);-ms-transform:matrix(0.234728,-0.005164,0.005499,0.249940,0,0);-webkit-transform:matrix(0.234728,-0.005164,0.005499,0.249940,0,0);}
.m7f_c01204{transform:matrix(0.235143,-0.005173,0.005499,0.249940,0,0);-ms-transform:matrix(0.235143,-0.005173,0.005499,0.249940,0,0);-webkit-transform:matrix(0.235143,-0.005173,0.005499,0.249940,0,0);}
.m16_c01204{transform:matrix(0.235287,-0.005647,0.005998,0.249928,0,0);-ms-transform:matrix(0.235287,-0.005647,0.005998,0.249928,0,0);-webkit-transform:matrix(0.235287,-0.005647,0.005998,0.249928,0,0);}
.m1b_c01204{transform:matrix(0.235507,-0.005652,0.005998,0.249928,0,0);-ms-transform:matrix(0.235507,-0.005652,0.005998,0.249928,0,0);-webkit-transform:matrix(0.235507,-0.005652,0.005998,0.249928,0,0);}
.m1e_c01204{transform:matrix(0.235732,-0.005658,0.005998,0.249928,0,0);-ms-transform:matrix(0.235732,-0.005658,0.005998,0.249928,0,0);-webkit-transform:matrix(0.235732,-0.005658,0.005998,0.249928,0,0);}
.m91_c01204{transform:matrix(0.235858,-0.005189,0.005499,0.249940,0,0);-ms-transform:matrix(0.235858,-0.005189,0.005499,0.249940,0,0);-webkit-transform:matrix(0.235858,-0.005189,0.005499,0.249940,0,0);}
.m154_c01204{transform:matrix(0.236439,0.001655,-0.001750,0.249994,0,0);-ms-transform:matrix(0.236439,0.001655,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.236439,0.001655,-0.001750,0.249994,0,0);}
.m11b_c01204{transform:matrix(0.236448,-0.005202,0.005499,0.249940,0,0);-ms-transform:matrix(0.236448,-0.005202,0.005499,0.249940,0,0);-webkit-transform:matrix(0.236448,-0.005202,0.005499,0.249940,0,0);}
.m105_c01204{transform:matrix(0.236773,-0.005209,0.005499,0.249940,0,0);-ms-transform:matrix(0.236773,-0.005209,0.005499,0.249940,0,0);-webkit-transform:matrix(0.236773,-0.005209,0.005499,0.249940,0,0);}
.mca_c01204{transform:matrix(0.237158,-0.005217,0.005499,0.249940,0,0);-ms-transform:matrix(0.237158,-0.005217,0.005499,0.249940,0,0);-webkit-transform:matrix(0.237158,-0.005217,0.005499,0.249940,0,0);}
.m43_c01204{transform:matrix(0.237492,-0.005700,0.005998,0.249928,0,0);-ms-transform:matrix(0.237492,-0.005700,0.005998,0.249928,0,0);-webkit-transform:matrix(0.237492,-0.005700,0.005998,0.249928,0,0);}
.m13c_c01204{transform:matrix(0.237675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237675,0.000000,0.000000,0.250000,0,0);}
.m94_c01204{transform:matrix(0.237772,-0.005231,0.005499,0.249940,0,0);-ms-transform:matrix(0.237772,-0.005231,0.005499,0.249940,0,0);-webkit-transform:matrix(0.237772,-0.005231,0.005499,0.249940,0,0);}
.m119_c01204{transform:matrix(0.237852,-0.005233,0.005499,0.249940,0,0);-ms-transform:matrix(0.237852,-0.005233,0.005499,0.249940,0,0);-webkit-transform:matrix(0.237852,-0.005233,0.005499,0.249940,0,0);}
.mbf_c01204{transform:matrix(0.237862,-0.005233,0.005499,0.249940,0,0);-ms-transform:matrix(0.237862,-0.005233,0.005499,0.249940,0,0);-webkit-transform:matrix(0.237862,-0.005233,0.005499,0.249940,0,0);}
.m1f_c01204{transform:matrix(0.238571,-0.005726,0.005998,0.249928,0,0);-ms-transform:matrix(0.238571,-0.005726,0.005998,0.249928,0,0);-webkit-transform:matrix(0.238571,-0.005726,0.005998,0.249928,0,0);}
.m65_c01204{transform:matrix(0.238817,-0.005254,0.005499,0.249940,0,0);-ms-transform:matrix(0.238817,-0.005254,0.005499,0.249940,0,0);-webkit-transform:matrix(0.238817,-0.005254,0.005499,0.249940,0,0);}
.m0_c01204{transform:matrix(0.239635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239635,0.000000,0.000000,0.250000,0,0);}
.mbe_c01204{transform:matrix(0.240042,-0.005281,0.005499,0.249940,0,0);-ms-transform:matrix(0.240042,-0.005281,0.005499,0.249940,0,0);-webkit-transform:matrix(0.240042,-0.005281,0.005499,0.249940,0,0);}
.m140_c01204{transform:matrix(0.240125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240125,0.000000,0.000000,0.250000,0,0);}
.m21_c01204{transform:matrix(0.240556,-0.005773,0.005998,0.249928,0,0);-ms-transform:matrix(0.240556,-0.005773,0.005998,0.249928,0,0);-webkit-transform:matrix(0.240556,-0.005773,0.005998,0.249928,0,0);}
.m6f_c01204{transform:matrix(0.241242,-0.005307,0.005499,0.249940,0,0);-ms-transform:matrix(0.241242,-0.005307,0.005499,0.249940,0,0);-webkit-transform:matrix(0.241242,-0.005307,0.005499,0.249940,0,0);}
.m86_c01204{transform:matrix(0.241557,-0.005314,0.005499,0.249940,0,0);-ms-transform:matrix(0.241557,-0.005314,0.005499,0.249940,0,0);-webkit-transform:matrix(0.241557,-0.005314,0.005499,0.249940,0,0);}
.m8c_c01204{transform:matrix(0.242346,-0.005332,0.005499,0.249940,0,0);-ms-transform:matrix(0.242346,-0.005332,0.005499,0.249940,0,0);-webkit-transform:matrix(0.242346,-0.005332,0.005499,0.249940,0,0);}
.mee_c01204{transform:matrix(0.242456,-0.005334,0.005499,0.249940,0,0);-ms-transform:matrix(0.242456,-0.005334,0.005499,0.249940,0,0);-webkit-transform:matrix(0.242456,-0.005334,0.005499,0.249940,0,0);}
.m75_c01204{transform:matrix(0.242486,-0.005335,0.005499,0.249940,0,0);-ms-transform:matrix(0.242486,-0.005335,0.005499,0.249940,0,0);-webkit-transform:matrix(0.242486,-0.005335,0.005499,0.249940,0,0);}
.m1c_c01204{transform:matrix(0.242840,-0.005828,0.005998,0.249928,0,0);-ms-transform:matrix(0.242840,-0.005828,0.005998,0.249928,0,0);-webkit-transform:matrix(0.242840,-0.005828,0.005998,0.249928,0,0);}
.mf2_c01204{transform:matrix(0.243481,-0.005357,0.005499,0.249940,0,0);-ms-transform:matrix(0.243481,-0.005357,0.005499,0.249940,0,0);-webkit-transform:matrix(0.243481,-0.005357,0.005499,0.249940,0,0);}
.md8_c01204{transform:matrix(0.243871,-0.005365,0.005499,0.249940,0,0);-ms-transform:matrix(0.243871,-0.005365,0.005499,0.249940,0,0);-webkit-transform:matrix(0.243871,-0.005365,0.005499,0.249940,0,0);}
.mf6_c01204{transform:matrix(0.244411,-0.005377,0.005499,0.249940,0,0);-ms-transform:matrix(0.244411,-0.005377,0.005499,0.249940,0,0);-webkit-transform:matrix(0.244411,-0.005377,0.005499,0.249940,0,0);}
.mfa_c01204{transform:matrix(0.244711,-0.005384,0.005499,0.249940,0,0);-ms-transform:matrix(0.244711,-0.005384,0.005499,0.249940,0,0);-webkit-transform:matrix(0.244711,-0.005384,0.005499,0.249940,0,0);}
.m108_c01204{transform:matrix(0.245935,-0.005411,0.005499,0.249940,0,0);-ms-transform:matrix(0.245935,-0.005411,0.005499,0.249940,0,0);-webkit-transform:matrix(0.245935,-0.005411,0.005499,0.249940,0,0);}
.m14b_c01204{transform:matrix(0.246683,-0.002467,0.002500,0.249988,0,0);-ms-transform:matrix(0.246683,-0.002467,0.002500,0.249988,0,0);-webkit-transform:matrix(0.246683,-0.002467,0.002500,0.249988,0,0);}
.mef_c01204{transform:matrix(0.246785,-0.005429,0.005499,0.249940,0,0);-ms-transform:matrix(0.246785,-0.005429,0.005499,0.249940,0,0);-webkit-transform:matrix(0.246785,-0.005429,0.005499,0.249940,0,0);}
.m151_c01204{transform:matrix(0.247024,0.001729,-0.001750,0.249994,0,0);-ms-transform:matrix(0.247024,0.001729,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.247024,0.001729,-0.001750,0.249994,0,0);}
.mbb_c01204{transform:matrix(0.247535,-0.005446,0.005499,0.249940,0,0);-ms-transform:matrix(0.247535,-0.005446,0.005499,0.249940,0,0);-webkit-transform:matrix(0.247535,-0.005446,0.005499,0.249940,0,0);}
.mbd_c01204{transform:matrix(0.247725,-0.005450,0.005499,0.249940,0,0);-ms-transform:matrix(0.247725,-0.005450,0.005499,0.249940,0,0);-webkit-transform:matrix(0.247725,-0.005450,0.005499,0.249940,0,0);}
.m9c_c01204{transform:matrix(0.248185,-0.005460,0.005499,0.249940,0,0);-ms-transform:matrix(0.248185,-0.005460,0.005499,0.249940,0,0);-webkit-transform:matrix(0.248185,-0.005460,0.005499,0.249940,0,0);}
.m7d_c01204{transform:matrix(0.248360,-0.005464,0.005499,0.249940,0,0);-ms-transform:matrix(0.248360,-0.005464,0.005499,0.249940,0,0);-webkit-transform:matrix(0.248360,-0.005464,0.005499,0.249940,0,0);}
.m15_c01204{transform:matrix(0.249078,-0.005978,0.005998,0.249928,0,0);-ms-transform:matrix(0.249078,-0.005978,0.005998,0.249928,0,0);-webkit-transform:matrix(0.249078,-0.005978,0.005998,0.249928,0,0);}
.m96_c01204{transform:matrix(0.249155,-0.005481,0.005499,0.249940,0,0);-ms-transform:matrix(0.249155,-0.005481,0.005499,0.249940,0,0);-webkit-transform:matrix(0.249155,-0.005481,0.005499,0.249940,0,0);}
.m102_c01204{transform:matrix(0.249175,-0.005482,0.005499,0.249940,0,0);-ms-transform:matrix(0.249175,-0.005482,0.005499,0.249940,0,0);-webkit-transform:matrix(0.249175,-0.005482,0.005499,0.249940,0,0);}
.m103_c01204{transform:matrix(0.249340,-0.005485,0.005499,0.249940,0,0);-ms-transform:matrix(0.249340,-0.005485,0.005499,0.249940,0,0);-webkit-transform:matrix(0.249340,-0.005485,0.005499,0.249940,0,0);}
.me5_c01204{transform:matrix(0.249345,-0.005486,0.005499,0.249940,0,0);-ms-transform:matrix(0.249345,-0.005486,0.005499,0.249940,0,0);-webkit-transform:matrix(0.249345,-0.005486,0.005499,0.249940,0,0);}
.ma0_c01204{transform:matrix(0.249910,-0.005498,0.005499,0.249940,0,0);-ms-transform:matrix(0.249910,-0.005498,0.005499,0.249940,0,0);-webkit-transform:matrix(0.249910,-0.005498,0.005499,0.249940,0,0);}
.m156_c01204{transform:matrix(0.250169,0.001751,-0.001750,0.249994,0,0);-ms-transform:matrix(0.250169,0.001751,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.250169,0.001751,-0.001750,0.249994,0,0);}
.ma2_c01204{transform:matrix(0.250204,-0.005504,0.005499,0.249940,0,0);-ms-transform:matrix(0.250204,-0.005504,0.005499,0.249940,0,0);-webkit-transform:matrix(0.250204,-0.005504,0.005499,0.249940,0,0);}
.m22_c01204{transform:matrix(0.250578,-0.006014,0.005998,0.249928,0,0);-ms-transform:matrix(0.250578,-0.006014,0.005998,0.249928,0,0);-webkit-transform:matrix(0.250578,-0.006014,0.005998,0.249928,0,0);}
.m1a_c01204{transform:matrix(0.250848,-0.006020,0.005998,0.249928,0,0);-ms-transform:matrix(0.250848,-0.006020,0.005998,0.249928,0,0);-webkit-transform:matrix(0.250848,-0.006020,0.005998,0.249928,0,0);}
.m146_c01204{transform:matrix(0.250907,-0.002509,0.002500,0.249988,0,0);-ms-transform:matrix(0.250907,-0.002509,0.002500,0.249988,0,0);-webkit-transform:matrix(0.250907,-0.002509,0.002500,0.249988,0,0);}
.m14c_c01204{transform:matrix(0.251632,-0.002516,0.002500,0.249988,0,0);-ms-transform:matrix(0.251632,-0.002516,0.002500,0.249988,0,0);-webkit-transform:matrix(0.251632,-0.002516,0.002500,0.249988,0,0);}
.m45_c01204{transform:matrix(0.251912,-0.006046,0.005998,0.249928,0,0);-ms-transform:matrix(0.251912,-0.006046,0.005998,0.249928,0,0);-webkit-transform:matrix(0.251912,-0.006046,0.005998,0.249928,0,0);}
.m26_c01204{transform:matrix(0.252127,-0.006051,0.005998,0.249928,0,0);-ms-transform:matrix(0.252127,-0.006051,0.005998,0.249928,0,0);-webkit-transform:matrix(0.252127,-0.006051,0.005998,0.249928,0,0);}
.mff_c01204{transform:matrix(0.252394,-0.005553,0.005499,0.249940,0,0);-ms-transform:matrix(0.252394,-0.005553,0.005499,0.249940,0,0);-webkit-transform:matrix(0.252394,-0.005553,0.005499,0.249940,0,0);}
.m85_c01204{transform:matrix(0.252424,-0.005553,0.005499,0.249940,0,0);-ms-transform:matrix(0.252424,-0.005553,0.005499,0.249940,0,0);-webkit-transform:matrix(0.252424,-0.005553,0.005499,0.249940,0,0);}
.m109_c01204{transform:matrix(0.252549,-0.005556,0.005499,0.249940,0,0);-ms-transform:matrix(0.252549,-0.005556,0.005499,0.249940,0,0);-webkit-transform:matrix(0.252549,-0.005556,0.005499,0.249940,0,0);}
.m68_c01204{transform:matrix(0.252819,-0.005562,0.005499,0.249940,0,0);-ms-transform:matrix(0.252819,-0.005562,0.005499,0.249940,0,0);-webkit-transform:matrix(0.252819,-0.005562,0.005499,0.249940,0,0);}
.m92_c01204{transform:matrix(0.253044,-0.005567,0.005499,0.249940,0,0);-ms-transform:matrix(0.253044,-0.005567,0.005499,0.249940,0,0);-webkit-transform:matrix(0.253044,-0.005567,0.005499,0.249940,0,0);}
.m88_c01204{transform:matrix(0.253239,-0.005571,0.005499,0.249940,0,0);-ms-transform:matrix(0.253239,-0.005571,0.005499,0.249940,0,0);-webkit-transform:matrix(0.253239,-0.005571,0.005499,0.249940,0,0);}
.md1_c01204{transform:matrix(0.253409,-0.005575,0.005499,0.249940,0,0);-ms-transform:matrix(0.253409,-0.005575,0.005499,0.249940,0,0);-webkit-transform:matrix(0.253409,-0.005575,0.005499,0.249940,0,0);}
.m9d_c01204{transform:matrix(0.253529,-0.005578,0.005499,0.249940,0,0);-ms-transform:matrix(0.253529,-0.005578,0.005499,0.249940,0,0);-webkit-transform:matrix(0.253529,-0.005578,0.005499,0.249940,0,0);}
.md5_c01204{transform:matrix(0.253674,-0.005581,0.005499,0.249940,0,0);-ms-transform:matrix(0.253674,-0.005581,0.005499,0.249940,0,0);-webkit-transform:matrix(0.253674,-0.005581,0.005499,0.249940,0,0);}
.m6e_c01204{transform:matrix(0.254213,-0.005593,0.005499,0.249940,0,0);-ms-transform:matrix(0.254213,-0.005593,0.005499,0.249940,0,0);-webkit-transform:matrix(0.254213,-0.005593,0.005499,0.249940,0,0);}
.mf8_c01204{transform:matrix(0.254253,-0.005594,0.005499,0.249940,0,0);-ms-transform:matrix(0.254253,-0.005594,0.005499,0.249940,0,0);-webkit-transform:matrix(0.254253,-0.005594,0.005499,0.249940,0,0);}
.m74_c01204{transform:matrix(0.254508,-0.005599,0.005499,0.249940,0,0);-ms-transform:matrix(0.254508,-0.005599,0.005499,0.249940,0,0);-webkit-transform:matrix(0.254508,-0.005599,0.005499,0.249940,0,0);}
.m6d_c01204{transform:matrix(0.255148,-0.005613,0.005499,0.249940,0,0);-ms-transform:matrix(0.255148,-0.005613,0.005499,0.249940,0,0);-webkit-transform:matrix(0.255148,-0.005613,0.005499,0.249940,0,0);}
.m97_c01204{transform:matrix(0.255273,-0.005616,0.005499,0.249940,0,0);-ms-transform:matrix(0.255273,-0.005616,0.005499,0.249940,0,0);-webkit-transform:matrix(0.255273,-0.005616,0.005499,0.249940,0,0);}
.me9_c01204{transform:matrix(0.255393,-0.005619,0.005499,0.249940,0,0);-ms-transform:matrix(0.255393,-0.005619,0.005499,0.249940,0,0);-webkit-transform:matrix(0.255393,-0.005619,0.005499,0.249940,0,0);}
.m8b_c01204{transform:matrix(0.255628,-0.005624,0.005499,0.249940,0,0);-ms-transform:matrix(0.255628,-0.005624,0.005499,0.249940,0,0);-webkit-transform:matrix(0.255628,-0.005624,0.005499,0.249940,0,0);}
.m2a_c01204{transform:matrix(0.255816,-0.006140,0.005998,0.249928,0,0);-ms-transform:matrix(0.255816,-0.006140,0.005998,0.249928,0,0);-webkit-transform:matrix(0.255816,-0.006140,0.005998,0.249928,0,0);}
.m143_c01204{transform:matrix(0.256067,-0.002561,0.002500,0.249988,0,0);-ms-transform:matrix(0.256067,-0.002561,0.002500,0.249988,0,0);-webkit-transform:matrix(0.256067,-0.002561,0.002500,0.249988,0,0);}
.mf3_c01204{transform:matrix(0.256198,-0.005636,0.005499,0.249940,0,0);-ms-transform:matrix(0.256198,-0.005636,0.005499,0.249940,0,0);-webkit-transform:matrix(0.256198,-0.005636,0.005499,0.249940,0,0);}
.md2_c01204{transform:matrix(0.256378,-0.005640,0.005499,0.249940,0,0);-ms-transform:matrix(0.256378,-0.005640,0.005499,0.249940,0,0);-webkit-transform:matrix(0.256378,-0.005640,0.005499,0.249940,0,0);}
.me6_c01204{transform:matrix(0.256478,-0.005643,0.005499,0.249940,0,0);-ms-transform:matrix(0.256478,-0.005643,0.005499,0.249940,0,0);-webkit-transform:matrix(0.256478,-0.005643,0.005499,0.249940,0,0);}
.m10b_c01204{transform:matrix(0.256483,-0.005643,0.005499,0.249940,0,0);-ms-transform:matrix(0.256483,-0.005643,0.005499,0.249940,0,0);-webkit-transform:matrix(0.256483,-0.005643,0.005499,0.249940,0,0);}
.m157_c01204{transform:matrix(0.256649,0.001797,-0.001750,0.249994,0,0);-ms-transform:matrix(0.256649,0.001797,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.256649,0.001797,-0.001750,0.249994,0,0);}
.m148_c01204{transform:matrix(0.256752,-0.002568,0.002500,0.249988,0,0);-ms-transform:matrix(0.256752,-0.002568,0.002500,0.249988,0,0);-webkit-transform:matrix(0.256752,-0.002568,0.002500,0.249988,0,0);}
.m144_c01204{transform:matrix(0.256802,-0.002568,0.002500,0.249988,0,0);-ms-transform:matrix(0.256802,-0.002568,0.002500,0.249988,0,0);-webkit-transform:matrix(0.256802,-0.002568,0.002500,0.249988,0,0);}
.m153_c01204{transform:matrix(0.256889,0.001798,-0.001750,0.249994,0,0);-ms-transform:matrix(0.256889,0.001798,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.256889,0.001798,-0.001750,0.249994,0,0);}
.mb9_c01204{transform:matrix(0.257463,-0.005664,0.005499,0.249940,0,0);-ms-transform:matrix(0.257463,-0.005664,0.005499,0.249940,0,0);-webkit-transform:matrix(0.257463,-0.005664,0.005499,0.249940,0,0);}
.m2e_c01204{transform:matrix(0.257701,-0.006185,0.005998,0.249928,0,0);-ms-transform:matrix(0.257701,-0.006185,0.005998,0.249928,0,0);-webkit-transform:matrix(0.257701,-0.006185,0.005998,0.249928,0,0);}
.m155_c01204{transform:matrix(0.257799,0.001805,-0.001750,0.249994,0,0);-ms-transform:matrix(0.257799,0.001805,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.257799,0.001805,-0.001750,0.249994,0,0);}
.m17_c01204{transform:matrix(0.257876,-0.006189,0.005998,0.249928,0,0);-ms-transform:matrix(0.257876,-0.006189,0.005998,0.249928,0,0);-webkit-transform:matrix(0.257876,-0.006189,0.005998,0.249928,0,0);}
.mf9_c01204{transform:matrix(0.258797,-0.005694,0.005499,0.249940,0,0);-ms-transform:matrix(0.258797,-0.005694,0.005499,0.249940,0,0);-webkit-transform:matrix(0.258797,-0.005694,0.005499,0.249940,0,0);}
.m89_c01204{transform:matrix(0.259147,-0.005701,0.005499,0.249940,0,0);-ms-transform:matrix(0.259147,-0.005701,0.005499,0.249940,0,0);-webkit-transform:matrix(0.259147,-0.005701,0.005499,0.249940,0,0);}
.mf0_c01204{transform:matrix(0.259652,-0.005712,0.005499,0.249940,0,0);-ms-transform:matrix(0.259652,-0.005712,0.005499,0.249940,0,0);-webkit-transform:matrix(0.259652,-0.005712,0.005499,0.249940,0,0);}
.m110_c01204{transform:matrix(0.259727,-0.005714,0.005499,0.249940,0,0);-ms-transform:matrix(0.259727,-0.005714,0.005499,0.249940,0,0);-webkit-transform:matrix(0.259727,-0.005714,0.005499,0.249940,0,0);}
.m24_c01204{transform:matrix(0.259890,-0.006237,0.005998,0.249928,0,0);-ms-transform:matrix(0.259890,-0.006237,0.005998,0.249928,0,0);-webkit-transform:matrix(0.259890,-0.006237,0.005998,0.249928,0,0);}
.m10e_c01204{transform:matrix(0.260182,-0.005724,0.005499,0.249940,0,0);-ms-transform:matrix(0.260182,-0.005724,0.005499,0.249940,0,0);-webkit-transform:matrix(0.260182,-0.005724,0.005499,0.249940,0,0);}
.m10d_c01204{transform:matrix(0.260807,-0.005738,0.005499,0.249940,0,0);-ms-transform:matrix(0.260807,-0.005738,0.005499,0.249940,0,0);-webkit-transform:matrix(0.260807,-0.005738,0.005499,0.249940,0,0);}
.m29_c01204{transform:matrix(0.260925,-0.006262,0.005998,0.249928,0,0);-ms-transform:matrix(0.260925,-0.006262,0.005998,0.249928,0,0);-webkit-transform:matrix(0.260925,-0.006262,0.005998,0.249928,0,0);}
.mb5_c01204{transform:matrix(0.261132,-0.005745,0.005499,0.249940,0,0);-ms-transform:matrix(0.261132,-0.005745,0.005499,0.249940,0,0);-webkit-transform:matrix(0.261132,-0.005745,0.005499,0.249940,0,0);}
.m90_c01204{transform:matrix(0.261372,-0.005750,0.005499,0.249940,0,0);-ms-transform:matrix(0.261372,-0.005750,0.005499,0.249940,0,0);-webkit-transform:matrix(0.261372,-0.005750,0.005499,0.249940,0,0);}
.md3_c01204{transform:matrix(0.261777,-0.005759,0.005499,0.249940,0,0);-ms-transform:matrix(0.261777,-0.005759,0.005499,0.249940,0,0);-webkit-transform:matrix(0.261777,-0.005759,0.005499,0.249940,0,0);}
.m6b_c01204{transform:matrix(0.262147,-0.005767,0.005499,0.249940,0,0);-ms-transform:matrix(0.262147,-0.005767,0.005499,0.249940,0,0);-webkit-transform:matrix(0.262147,-0.005767,0.005499,0.249940,0,0);}
.mbc_c01204{transform:matrix(0.262192,-0.005768,0.005499,0.249940,0,0);-ms-transform:matrix(0.262192,-0.005768,0.005499,0.249940,0,0);-webkit-transform:matrix(0.262192,-0.005768,0.005499,0.249940,0,0);}
.m87_c01204{transform:matrix(0.262227,-0.005769,0.005499,0.249940,0,0);-ms-transform:matrix(0.262227,-0.005769,0.005499,0.249940,0,0);-webkit-transform:matrix(0.262227,-0.005769,0.005499,0.249940,0,0);}
.md7_c01204{transform:matrix(0.262247,-0.005769,0.005499,0.249940,0,0);-ms-transform:matrix(0.262247,-0.005769,0.005499,0.249940,0,0);-webkit-transform:matrix(0.262247,-0.005769,0.005499,0.249940,0,0);}
.m72_c01204{transform:matrix(0.262751,-0.005781,0.005499,0.249940,0,0);-ms-transform:matrix(0.262751,-0.005781,0.005499,0.249940,0,0);-webkit-transform:matrix(0.262751,-0.005781,0.005499,0.249940,0,0);}
.m14f_c01204{transform:matrix(0.263299,0.001843,-0.001750,0.249994,0,0);-ms-transform:matrix(0.263299,0.001843,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.263299,0.001843,-0.001750,0.249994,0,0);}
.mc0_c01204{transform:matrix(0.263361,-0.005794,0.005499,0.249940,0,0);-ms-transform:matrix(0.263361,-0.005794,0.005499,0.249940,0,0);-webkit-transform:matrix(0.263361,-0.005794,0.005499,0.249940,0,0);}
.m2d_c01204{transform:matrix(0.263389,-0.006321,0.005998,0.249928,0,0);-ms-transform:matrix(0.263389,-0.006321,0.005998,0.249928,0,0);-webkit-transform:matrix(0.263389,-0.006321,0.005998,0.249928,0,0);}
.m93_c01204{transform:matrix(0.263441,-0.005796,0.005499,0.249940,0,0);-ms-transform:matrix(0.263441,-0.005796,0.005499,0.249940,0,0);-webkit-transform:matrix(0.263441,-0.005796,0.005499,0.249940,0,0);}
.mf4_c01204{transform:matrix(0.263721,-0.005802,0.005499,0.249940,0,0);-ms-transform:matrix(0.263721,-0.005802,0.005499,0.249940,0,0);-webkit-transform:matrix(0.263721,-0.005802,0.005499,0.249940,0,0);}
.mf7_c01204{transform:matrix(0.263941,-0.005807,0.005499,0.249940,0,0);-ms-transform:matrix(0.263941,-0.005807,0.005499,0.249940,0,0);-webkit-transform:matrix(0.263941,-0.005807,0.005499,0.249940,0,0);}
.mec_c01204{transform:matrix(0.264701,-0.005823,0.005499,0.249940,0,0);-ms-transform:matrix(0.264701,-0.005823,0.005499,0.249940,0,0);-webkit-transform:matrix(0.264701,-0.005823,0.005499,0.249940,0,0);}
.m99_c01204{transform:matrix(0.264776,-0.005825,0.005499,0.249940,0,0);-ms-transform:matrix(0.264776,-0.005825,0.005499,0.249940,0,0);-webkit-transform:matrix(0.264776,-0.005825,0.005499,0.249940,0,0);}
.m6a_c01204{transform:matrix(0.265576,-0.005843,0.005499,0.249940,0,0);-ms-transform:matrix(0.265576,-0.005843,0.005499,0.249940,0,0);-webkit-transform:matrix(0.265576,-0.005843,0.005499,0.249940,0,0);}
.m64_c01204{transform:matrix(0.265831,-0.005848,0.005499,0.249940,0,0);-ms-transform:matrix(0.265831,-0.005848,0.005499,0.249940,0,0);-webkit-transform:matrix(0.265831,-0.005848,0.005499,0.249940,0,0);}
.m10f_c01204{transform:matrix(0.266456,-0.005862,0.005499,0.249940,0,0);-ms-transform:matrix(0.266456,-0.005862,0.005499,0.249940,0,0);-webkit-transform:matrix(0.266456,-0.005862,0.005499,0.249940,0,0);}
.m10a_c01204{transform:matrix(0.266556,-0.005864,0.005499,0.249940,0,0);-ms-transform:matrix(0.266556,-0.005864,0.005499,0.249940,0,0);-webkit-transform:matrix(0.266556,-0.005864,0.005499,0.249940,0,0);}
.m39_c01204{transform:matrix(0.266758,-0.006402,0.005998,0.249928,0,0);-ms-transform:matrix(0.266758,-0.006402,0.005998,0.249928,0,0);-webkit-transform:matrix(0.266758,-0.006402,0.005998,0.249928,0,0);}
.m9b_c01204{transform:matrix(0.267190,-0.005878,0.005499,0.249940,0,0);-ms-transform:matrix(0.267190,-0.005878,0.005499,0.249940,0,0);-webkit-transform:matrix(0.267190,-0.005878,0.005499,0.249940,0,0);}
.m63_c01204{transform:matrix(0.267940,-0.005895,0.005499,0.249940,0,0);-ms-transform:matrix(0.267940,-0.005895,0.005499,0.249940,0,0);-webkit-transform:matrix(0.267940,-0.005895,0.005499,0.249940,0,0);}
.m133_c01204{transform:matrix(0.268600,-0.005909,0.005499,0.249940,0,0);-ms-transform:matrix(0.268600,-0.005909,0.005499,0.249940,0,0);-webkit-transform:matrix(0.268600,-0.005909,0.005499,0.249940,0,0);}
.mf1_c01204{transform:matrix(0.269470,-0.005928,0.005499,0.249940,0,0);-ms-transform:matrix(0.269470,-0.005928,0.005499,0.249940,0,0);-webkit-transform:matrix(0.269470,-0.005928,0.005499,0.249940,0,0);}
.m8e_c01204{transform:matrix(0.270035,-0.005941,0.005499,0.249940,0,0);-ms-transform:matrix(0.270035,-0.005941,0.005499,0.249940,0,0);-webkit-transform:matrix(0.270035,-0.005941,0.005499,0.249940,0,0);}
.me7_c01204{transform:matrix(0.270120,-0.005943,0.005499,0.249940,0,0);-ms-transform:matrix(0.270120,-0.005943,0.005499,0.249940,0,0);-webkit-transform:matrix(0.270120,-0.005943,0.005499,0.249940,0,0);}
.m8a_c01204{transform:matrix(0.270310,-0.005947,0.005499,0.249940,0,0);-ms-transform:matrix(0.270310,-0.005947,0.005499,0.249940,0,0);-webkit-transform:matrix(0.270310,-0.005947,0.005499,0.249940,0,0);}
.m150_c01204{transform:matrix(0.271293,0.001899,-0.001750,0.249994,0,0);-ms-transform:matrix(0.271293,0.001899,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.271293,0.001899,-0.001750,0.249994,0,0);}
.mf5_c01204{transform:matrix(0.271294,-0.005968,0.005499,0.249940,0,0);-ms-transform:matrix(0.271294,-0.005968,0.005499,0.249940,0,0);-webkit-transform:matrix(0.271294,-0.005968,0.005499,0.249940,0,0);}
.m8d_c01204{transform:matrix(0.272484,-0.005995,0.005499,0.249940,0,0);-ms-transform:matrix(0.272484,-0.005995,0.005499,0.249940,0,0);-webkit-transform:matrix(0.272484,-0.005995,0.005499,0.249940,0,0);}
.mea_c01204{transform:matrix(0.272959,-0.006005,0.005499,0.249940,0,0);-ms-transform:matrix(0.272959,-0.006005,0.005499,0.249940,0,0);-webkit-transform:matrix(0.272959,-0.006005,0.005499,0.249940,0,0);}
.m2c_c01204{transform:matrix(0.273006,-0.006552,0.005998,0.249928,0,0);-ms-transform:matrix(0.273006,-0.006552,0.005998,0.249928,0,0);-webkit-transform:matrix(0.273006,-0.006552,0.005998,0.249928,0,0);}
.m2b_c01204{transform:matrix(0.273521,-0.006565,0.005998,0.249928,0,0);-ms-transform:matrix(0.273521,-0.006565,0.005998,0.249928,0,0);-webkit-transform:matrix(0.273521,-0.006565,0.005998,0.249928,0,0);}
.m14e_c01204{transform:matrix(0.274363,0.001921,-0.001750,0.249994,0,0);-ms-transform:matrix(0.274363,0.001921,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.274363,0.001921,-0.001750,0.249994,0,0);}
.m10c_c01204{transform:matrix(0.275553,-0.006062,0.005499,0.249940,0,0);-ms-transform:matrix(0.275553,-0.006062,0.005499,0.249940,0,0);-webkit-transform:matrix(0.275553,-0.006062,0.005499,0.249940,0,0);}
.m30_c01204{transform:matrix(0.276115,-0.006627,0.005998,0.249928,0,0);-ms-transform:matrix(0.276115,-0.006627,0.005998,0.249928,0,0);-webkit-transform:matrix(0.276115,-0.006627,0.005998,0.249928,0,0);}
.m83_c01204{transform:matrix(0.276308,-0.006079,0.005499,0.249940,0,0);-ms-transform:matrix(0.276308,-0.006079,0.005499,0.249940,0,0);-webkit-transform:matrix(0.276308,-0.006079,0.005499,0.249940,0,0);}
.m8f_c01204{transform:matrix(0.276998,-0.006094,0.005499,0.249940,0,0);-ms-transform:matrix(0.276998,-0.006094,0.005499,0.249940,0,0);-webkit-transform:matrix(0.276998,-0.006094,0.005499,0.249940,0,0);}
.m84_c01204{transform:matrix(0.279047,-0.006139,0.005499,0.249940,0,0);-ms-transform:matrix(0.279047,-0.006139,0.005499,0.249940,0,0);-webkit-transform:matrix(0.279047,-0.006139,0.005499,0.249940,0,0);}
.m95_c01204{transform:matrix(0.279207,-0.006143,0.005499,0.249940,0,0);-ms-transform:matrix(0.279207,-0.006143,0.005499,0.249940,0,0);-webkit-transform:matrix(0.279207,-0.006143,0.005499,0.249940,0,0);}
.m70_c01204{transform:matrix(0.279262,-0.006144,0.005499,0.249940,0,0);-ms-transform:matrix(0.279262,-0.006144,0.005499,0.249940,0,0);-webkit-transform:matrix(0.279262,-0.006144,0.005499,0.249940,0,0);}
.meb_c01204{transform:matrix(0.280917,-0.006180,0.005499,0.249940,0,0);-ms-transform:matrix(0.280917,-0.006180,0.005499,0.249940,0,0);-webkit-transform:matrix(0.280917,-0.006180,0.005499,0.249940,0,0);}
.m106_c01204{transform:matrix(0.281067,-0.006183,0.005499,0.249940,0,0);-ms-transform:matrix(0.281067,-0.006183,0.005499,0.249940,0,0);-webkit-transform:matrix(0.281067,-0.006183,0.005499,0.249940,0,0);}
.m77_c01204{transform:matrix(0.282732,-0.006220,0.005499,0.249940,0,0);-ms-transform:matrix(0.282732,-0.006220,0.005499,0.249940,0,0);-webkit-transform:matrix(0.282732,-0.006220,0.005499,0.249940,0,0);}
.m7e_c01204{transform:matrix(0.283536,-0.006238,0.005499,0.249940,0,0);-ms-transform:matrix(0.283536,-0.006238,0.005499,0.249940,0,0);-webkit-transform:matrix(0.283536,-0.006238,0.005499,0.249940,0,0);}
.m76_c01204{transform:matrix(0.284226,-0.006253,0.005499,0.249940,0,0);-ms-transform:matrix(0.284226,-0.006253,0.005499,0.249940,0,0);-webkit-transform:matrix(0.284226,-0.006253,0.005499,0.249940,0,0);}
.ma8_c01204{transform:matrix(0.285721,-0.006286,0.005499,0.249940,0,0);-ms-transform:matrix(0.285721,-0.006286,0.005499,0.249940,0,0);-webkit-transform:matrix(0.285721,-0.006286,0.005499,0.249940,0,0);}
.m31_c01204{transform:matrix(0.286418,-0.006874,0.005998,0.249928,0,0);-ms-transform:matrix(0.286418,-0.006874,0.005998,0.249928,0,0);-webkit-transform:matrix(0.286418,-0.006874,0.005998,0.249928,0,0);}
.ma9_c01204{transform:matrix(0.287290,-0.006320,0.005499,0.249940,0,0);-ms-transform:matrix(0.287290,-0.006320,0.005499,0.249940,0,0);-webkit-transform:matrix(0.287290,-0.006320,0.005499,0.249940,0,0);}
.ma5_c01204{transform:matrix(0.287740,-0.006330,0.005499,0.249940,0,0);-ms-transform:matrix(0.287740,-0.006330,0.005499,0.249940,0,0);-webkit-transform:matrix(0.287740,-0.006330,0.005499,0.249940,0,0);}
.m2f_c01204{transform:matrix(0.289102,-0.006938,0.005998,0.249928,0,0);-ms-transform:matrix(0.289102,-0.006938,0.005998,0.249928,0,0);-webkit-transform:matrix(0.289102,-0.006938,0.005998,0.249928,0,0);}
.m9e_c01204{transform:matrix(0.300262,-0.006606,0.005499,0.249940,0,0);-ms-transform:matrix(0.300262,-0.006606,0.005499,0.249940,0,0);-webkit-transform:matrix(0.300262,-0.006606,0.005499,0.249940,0,0);}
.mc1_c01204{transform:matrix(0.301242,-0.006627,0.005499,0.249940,0,0);-ms-transform:matrix(0.301242,-0.006627,0.005499,0.249940,0,0);-webkit-transform:matrix(0.301242,-0.006627,0.005499,0.249940,0,0);}
.mfd_c01204{transform:matrix(0.314059,-0.006909,0.005499,0.249940,0,0);-ms-transform:matrix(0.314059,-0.006909,0.005499,0.249940,0,0);-webkit-transform:matrix(0.314059,-0.006909,0.005499,0.249940,0,0);}
.med_c01204{transform:matrix(0.316653,-0.006966,0.005499,0.249940,0,0);-ms-transform:matrix(0.316653,-0.006966,0.005499,0.249940,0,0);-webkit-transform:matrix(0.316653,-0.006966,0.005499,0.249940,0,0);}
.mb4_c01204{transform:matrix(0.319188,-0.007022,0.005499,0.249940,0,0);-ms-transform:matrix(0.319188,-0.007022,0.005499,0.249940,0,0);-webkit-transform:matrix(0.319188,-0.007022,0.005499,0.249940,0,0);}
.mc4_c01204{transform:matrix(0.348546,-0.007668,0.005499,0.249940,0,0);-ms-transform:matrix(0.348546,-0.007668,0.005499,0.249940,0,0);-webkit-transform:matrix(0.348546,-0.007668,0.005499,0.249940,0,0);}
.mfe_c01204{transform:matrix(0.358078,-0.007878,0.005499,0.249940,0,0);-ms-transform:matrix(0.358078,-0.007878,0.005499,0.249940,0,0);-webkit-transform:matrix(0.358078,-0.007878,0.005499,0.249940,0,0);}
.m98_c01204{transform:matrix(0.363277,-0.007992,0.005499,0.249940,0,0);-ms-transform:matrix(0.363277,-0.007992,0.005499,0.249940,0,0);-webkit-transform:matrix(0.363277,-0.007992,0.005499,0.249940,0,0);}
.m78_c01204{transform:matrix(0.371325,-0.008169,0.005499,0.249940,0,0);-ms-transform:matrix(0.371325,-0.008169,0.005499,0.249940,0,0);-webkit-transform:matrix(0.371325,-0.008169,0.005499,0.249940,0,0);}
.m38_c01204{transform:matrix(0.401239,-0.009630,0.005998,0.249928,0,0);-ms-transform:matrix(0.401239,-0.009630,0.005998,0.249928,0,0);-webkit-transform:matrix(0.401239,-0.009630,0.005998,0.249928,0,0);}
.m2_c01204{transform:matrix(0.403545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403545,0.000000,0.000000,0.250000,0,0);}
.m32_c01204{transform:matrix(0.421899,-0.010126,0.005998,0.249928,0,0);-ms-transform:matrix(0.421899,-0.010126,0.005998,0.249928,0,0);-webkit-transform:matrix(0.421899,-0.010126,0.005998,0.249928,0,0);}
.m1_c01204{transform:matrix(0.438185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.438185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.438185,0.000000,0.000000,0.250000,0,0);}
.ma7_c01204{transform:matrix(0.529117,-0.011641,0.005499,0.249940,0,0);-ms-transform:matrix(0.529117,-0.011641,0.005499,0.249940,0,0);-webkit-transform:matrix(0.529117,-0.011641,0.005499,0.249940,0,0);}
.m8_c01204{transform:matrix(0.540092,-0.007561,0.003500,0.249976,0,0);-ms-transform:matrix(0.540092,-0.007561,0.003500,0.249976,0,0);-webkit-transform:matrix(0.540092,-0.007561,0.003500,0.249976,0,0);}
.mc3_c01204{transform:matrix(0.635486,-0.013981,0.005499,0.249940,0,0);-ms-transform:matrix(0.635486,-0.013981,0.005499,0.249940,0,0);-webkit-transform:matrix(0.635486,-0.013981,0.005499,0.249940,0,0);}
.m14d_c01204{transform:matrix(1.362067,-0.013621,0.002500,0.249988,0,0);-ms-transform:matrix(1.362067,-0.013621,0.002500,0.249988,0,0);-webkit-transform:matrix(1.362067,-0.013621,0.002500,0.249988,0,0);}
.m9_c01204{transform:matrix(2.221457,-0.031100,0.003500,0.249976,0,0);-ms-transform:matrix(2.221457,-0.031100,0.003500,0.249976,0,0);-webkit-transform:matrix(2.221457,-0.031100,0.003500,0.249976,0,0);}
.v0_c01204{vertical-align:0.000000px;}
.ls0_c01204{letter-spacing:0.000000px;}
.sc__c01204{text-shadow:none;}
.sc0_c01204{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__c01204{-webkit-text-stroke:0px transparent;}
.sc0_c01204{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01204{word-spacing:0.000000px;}
._0_c01204{width:18.995394px;}
.fc0_c01204{color:transparent;}
.fsf_c01204{font-size:24.001200px;}
.fs0_c01204{font-size:54.000000px;}
.fs10_c01204{font-size:72.001764px;}
.fs9_c01204{font-size:72.017422px;}
.fs4_c01204{font-size:72.020733px;}
.fse_c01204{font-size:78.003900px;}
.fsa_c01204{font-size:78.018874px;}
.fs3_c01204{font-size:78.022461px;}
.fsd_c01204{font-size:84.000000px;}
.fs8_c01204{font-size:84.020326px;}
.fs6_c01204{font-size:84.024189px;}
.fs2_c01204{font-size:90.008820px;}
.fsb_c01204{font-size:90.021777px;}
.fs5_c01204{font-size:90.025916px;}
.fs1_c01204{font-size:96.009408px;}
.fsc_c01204{font-size:96.023229px;}
.fs7_c01204{font-size:102.029372px;}
.y0_c01204{bottom:0.000000px;}
.y153_c01204{bottom:59.682310px;}
.y152_c01204{bottom:60.069739px;}
.y151_c01204{bottom:60.528988px;}
.y150_c01204{bottom:60.767013px;}
.y14f_c01204{bottom:60.910632px;}
.y14e_c01204{bottom:61.211184px;}
.y14d_c01204{bottom:61.447402px;}
.y14c_c01204{bottom:62.004942px;}
.y14b_c01204{bottom:62.533953px;}
.y14a_c01204{bottom:62.910000px;}
.y149_c01204{bottom:90.900660px;}
.y13f_c01204{bottom:108.811500px;}
.y140_c01204{bottom:109.888935px;}
.y141_c01204{bottom:110.995860px;}
.y142_c01204{bottom:111.328290px;}
.y143_c01204{bottom:112.321575px;}
.y144_c01204{bottom:112.864680px;}
.y145_c01204{bottom:113.860575px;}
.y146_c01204{bottom:114.076515px;}
.y147_c01204{bottom:114.411540px;}
.y148_c01204{bottom:115.091820px;}
.y13e_c01204{bottom:151.335000px;}
.y139_c01204{bottom:178.324779px;}
.y13a_c01204{bottom:179.458152px;}
.y13b_c01204{bottom:181.032366px;}
.y13c_c01204{bottom:182.582961px;}
.y13d_c01204{bottom:186.664827px;}
.y12d_c01204{bottom:216.929559px;}
.y12e_c01204{bottom:217.352178px;}
.y12f_c01204{bottom:218.638980px;}
.y130_c01204{bottom:219.715527px;}
.y131_c01204{bottom:220.892115px;}
.y132_c01204{bottom:221.141802px;}
.y133_c01204{bottom:221.569773px;}
.y134_c01204{bottom:222.363474px;}
.y135_c01204{bottom:223.017420px;}
.y136_c01204{bottom:223.694649px;}
.y137_c01204{bottom:224.613690px;}
.y138_c01204{bottom:224.894970px;}
.y121_c01204{bottom:256.359081px;}
.y122_c01204{bottom:257.222799px;}
.y123_c01204{bottom:257.395923px;}
.y124_c01204{bottom:258.100104px;}
.y125_c01204{bottom:258.277179px;}
.y126_c01204{bottom:258.640599px;}
.y127_c01204{bottom:259.524399px;}
.y128_c01204{bottom:259.876185px;}
.y129_c01204{bottom:260.228334px;}
.y12a_c01204{bottom:260.926530px;}
.y12b_c01204{bottom:261.101736px;}
.y12c_c01204{bottom:261.377919px;}
.y114_c01204{bottom:287.689977px;}
.y115_c01204{bottom:288.569922px;}
.y116_c01204{bottom:289.309584px;}
.y117_c01204{bottom:291.222330px;}
.y118_c01204{bottom:291.953181px;}
.y119_c01204{bottom:293.165172px;}
.y11a_c01204{bottom:294.400395px;}
.y11b_c01204{bottom:296.091843px;}
.y11c_c01204{bottom:297.042408px;}
.y11d_c01204{bottom:297.762930px;}
.y11e_c01204{bottom:299.223543px;}
.y11f_c01204{bottom:299.988318px;}
.y120_c01204{bottom:302.151270px;}
.y109_c01204{bottom:320.372526px;}
.y10a_c01204{bottom:322.523283px;}
.y10b_c01204{bottom:323.117778px;}
.y10c_c01204{bottom:324.902550px;}
.y10d_c01204{bottom:325.508961px;}
.y10e_c01204{bottom:326.899032px;}
.y10f_c01204{bottom:328.080348px;}
.y110_c01204{bottom:329.673150px;}
.y111_c01204{bottom:330.271854px;}
.y112_c01204{bottom:331.057941px;}
.y113_c01204{bottom:331.893324px;}
.yfd_c01204{bottom:361.955004px;}
.yfe_c01204{bottom:362.224278px;}
.yff_c01204{bottom:362.392437px;}
.y100_c01204{bottom:362.606859px;}
.y101_c01204{bottom:363.166794px;}
.y102_c01204{bottom:363.267156px;}
.y103_c01204{bottom:363.825249px;}
.y104_c01204{bottom:364.092204px;}
.y105_c01204{bottom:364.206126px;}
.y106_c01204{bottom:364.707036px;}
.y107_c01204{bottom:365.148789px;}
.y108_c01204{bottom:365.368608px;}
.yf1_c01204{bottom:391.128438px;}
.yf2_c01204{bottom:391.815267px;}
.yf3_c01204{bottom:392.530428px;}
.yf4_c01204{bottom:394.340613px;}
.yf5_c01204{bottom:396.188124px;}
.yf6_c01204{bottom:396.912525px;}
.yf7_c01204{bottom:398.502111px;}
.yf8_c01204{bottom:400.129881px;}
.yf9_c01204{bottom:401.744037px;}
.yfa_c01204{bottom:402.244374px;}
.yfb_c01204{bottom:404.096439px;}
.yfc_c01204{bottom:405.258111px;}
.ye7_c01204{bottom:427.587261px;}
.ye8_c01204{bottom:428.513004px;}
.ye9_c01204{bottom:429.664182px;}
.yea_c01204{bottom:431.054142px;}
.yeb_c01204{bottom:432.885465px;}
.yec_c01204{bottom:433.593678px;}
.yed_c01204{bottom:435.007416px;}
.yee_c01204{bottom:437.303715px;}
.yef_c01204{bottom:440.082414px;}
.yf0_c01204{bottom:440.551713px;}
.ydb_c01204{bottom:465.664404px;}
.ydc_c01204{bottom:466.734528px;}
.ydd_c01204{bottom:467.336709px;}
.yde_c01204{bottom:468.893763px;}
.ydf_c01204{bottom:469.335738px;}
.ye0_c01204{bottom:470.269875px;}
.ye1_c01204{bottom:470.587434px;}
.ye2_c01204{bottom:471.679038px;}
.ye3_c01204{bottom:472.273740px;}
.ye4_c01204{bottom:472.752597px;}
.ye5_c01204{bottom:473.516736px;}
.ye6_c01204{bottom:474.912048px;}
.yd1_c01204{bottom:497.805690px;}
.yd2_c01204{bottom:498.559611px;}
.yd3_c01204{bottom:499.171650px;}
.yd4_c01204{bottom:500.927343px;}
.yd5_c01204{bottom:502.918593px;}
.yd6_c01204{bottom:504.313170px;}
.yd7_c01204{bottom:505.112211px;}
.yd8_c01204{bottom:506.719833px;}
.yd9_c01204{bottom:507.284160px;}
.yda_c01204{bottom:509.485617px;}
.yc4_c01204{bottom:535.343682px;}
.yc5_c01204{bottom:535.902768px;}
.yc6_c01204{bottom:537.262140px;}
.yc7_c01204{bottom:537.606678px;}
.yc8_c01204{bottom:539.252295px;}
.yc9_c01204{bottom:539.821251px;}
.yca_c01204{bottom:540.936021px;}
.ycb_c01204{bottom:541.317993px;}
.ycc_c01204{bottom:542.053053px;}
.ycd_c01204{bottom:543.754638px;}
.yce_c01204{bottom:544.490193px;}
.ycf_c01204{bottom:545.073243px;}
.yd0_c01204{bottom:546.202752px;}
.yba_c01204{bottom:572.610636px;}
.ybb_c01204{bottom:573.193323px;}
.ybc_c01204{bottom:574.497306px;}
.ybd_c01204{bottom:575.233257px;}
.ybe_c01204{bottom:576.535539px;}
.ybf_c01204{bottom:578.231445px;}
.yc0_c01204{bottom:579.540774px;}
.yc1_c01204{bottom:580.123527px;}
.yc2_c01204{bottom:581.271324px;}
.yc3_c01204{bottom:583.493421px;}
.yac_c01204{bottom:605.291346px;}
.yad_c01204{bottom:606.685629px;}
.yae_c01204{bottom:607.130094px;}
.yaf_c01204{bottom:607.844727px;}
.yb0_c01204{bottom:609.449379px;}
.yb1_c01204{bottom:610.129146px;}
.yb2_c01204{bottom:610.808550px;}
.yb3_c01204{bottom:612.011424px;}
.yb4_c01204{bottom:613.620498px;}
.yb5_c01204{bottom:614.291502px;}
.yb6_c01204{bottom:615.013329px;}
.yb7_c01204{bottom:616.596084px;}
.yb8_c01204{bottom:617.330253px;}
.yb9_c01204{bottom:618.238308px;}
.y9f_c01204{bottom:641.749167px;}
.ya0_c01204{bottom:642.854463px;}
.ya1_c01204{bottom:643.405065px;}
.ya2_c01204{bottom:644.708058px;}
.ya3_c01204{bottom:645.084765px;}
.ya4_c01204{bottom:646.765965px;}
.ya5_c01204{bottom:647.329260px;}
.ya6_c01204{bottom:647.715540px;}
.ya7_c01204{bottom:649.405125px;}
.ya8_c01204{bottom:649.957839px;}
.ya9_c01204{bottom:651.092283px;}
.yaa_c01204{bottom:651.647424px;}
.yab_c01204{bottom:652.216956px;}
.y91_c01204{bottom:674.430237px;}
.y92_c01204{bottom:675.924462px;}
.y93_c01204{bottom:676.584792px;}
.y94_c01204{bottom:677.266755px;}
.y95_c01204{bottom:678.784065px;}
.y96_c01204{bottom:679.453455px;}
.y97_c01204{bottom:681.217614px;}
.y98_c01204{bottom:682.125486px;}
.y99_c01204{bottom:683.385948px;}
.y9a_c01204{bottom:683.891526px;}
.y9b_c01204{bottom:685.180602px;}
.y9c_c01204{bottom:685.630173px;}
.y9d_c01204{bottom:686.963424px;}
.y9e_c01204{bottom:687.621708px;}
.y85_c01204{bottom:712.235466px;}
.y86_c01204{bottom:713.044854px;}
.y87_c01204{bottom:713.706069px;}
.y88_c01204{bottom:714.358404px;}
.y89_c01204{bottom:715.513629px;}
.y8a_c01204{bottom:716.356083px;}
.y8b_c01204{bottom:717.329493px;}
.y8c_c01204{bottom:717.988563px;}
.y8d_c01204{bottom:718.823010px;}
.y8e_c01204{bottom:719.479785px;}
.y8f_c01204{bottom:720.646566px;}
.y90_c01204{bottom:721.972383px;}
.y78_c01204{bottom:748.424925px;}
.y79_c01204{bottom:748.867812px;}
.y7a_c01204{bottom:749.559561px;}
.y7b_c01204{bottom:750.618027px;}
.y7c_c01204{bottom:751.286823px;}
.y7d_c01204{bottom:752.600535px;}
.y7e_c01204{bottom:753.254661px;}
.y7f_c01204{bottom:755.447037px;}
.y80_c01204{bottom:755.933538px;}
.y81_c01204{bottom:757.876689px;}
.y82_c01204{bottom:758.574297px;}
.y83_c01204{bottom:759.887283px;}
.y84_c01204{bottom:761.186739px;}
.y69_c01204{bottom:780.297489px;}
.y6a_c01204{bottom:781.454970px;}
.y6b_c01204{bottom:782.135595px;}
.y6c_c01204{bottom:783.542007px;}
.y6d_c01204{bottom:785.133030px;}
.y6e_c01204{bottom:785.826294px;}
.y6f_c01204{bottom:786.546504px;}
.y70_c01204{bottom:788.139144px;}
.y71_c01204{bottom:788.862588px;}
.y72_c01204{bottom:789.549879px;}
.y73_c01204{bottom:790.220751px;}
.y74_c01204{bottom:791.381796px;}
.y75_c01204{bottom:791.852316px;}
.y76_c01204{bottom:792.793389px;}
.y77_c01204{bottom:793.701444px;}
.y5c_c01204{bottom:815.406000px;}
.y5d_c01204{bottom:817.082763px;}
.y5e_c01204{bottom:817.825989px;}
.y5f_c01204{bottom:819.489453px;}
.y60_c01204{bottom:820.260432px;}
.y61_c01204{bottom:821.448267px;}
.y62_c01204{bottom:821.924127px;}
.y63_c01204{bottom:823.646694px;}
.y64_c01204{bottom:824.609733px;}
.y65_c01204{bottom:826.289829px;}
.y66_c01204{bottom:827.027709px;}
.y67_c01204{bottom:829.208217px;}
.y68_c01204{bottom:829.951443px;}
.y4e_c01204{bottom:851.534604px;}
.y4f_c01204{bottom:852.026616px;}
.y50_c01204{bottom:853.452852px;}
.y51_c01204{bottom:853.936824px;}
.y52_c01204{bottom:855.144708px;}
.y53_c01204{bottom:855.629436px;}
.y54_c01204{bottom:856.619688px;}
.y55_c01204{bottom:857.323680px;}
.y56_c01204{bottom:858.066108px;}
.y57_c01204{bottom:859.753824px;}
.y58_c01204{bottom:861.460200px;}
.y59_c01204{bottom:864.132912px;}
.y5a_c01204{bottom:865.332048px;}
.y5b_c01204{bottom:866.081820px;}
.y40_c01204{bottom:886.372872px;}
.y41_c01204{bottom:886.897812px;}
.y42_c01204{bottom:887.870916px;}
.y43_c01204{bottom:888.589092px;}
.y44_c01204{bottom:890.257320px;}
.y45_c01204{bottom:892.193508px;}
.y46_c01204{bottom:892.918716px;}
.y47_c01204{bottom:894.380544px;}
.y48_c01204{bottom:895.111944px;}
.y49_c01204{bottom:896.309928px;}
.y4a_c01204{bottom:896.816100px;}
.y4b_c01204{bottom:898.021716px;}
.y4c_c01204{bottom:898.988484px;}
.y4d_c01204{bottom:900.195972px;}
.y33_c01204{bottom:921.756048px;}
.y34_c01204{bottom:922.507956px;}
.y35_c01204{bottom:923.545440px;}
.y36_c01204{bottom:924.261768px;}
.y37_c01204{bottom:925.528728px;}
.y38_c01204{bottom:927.295500px;}
.y39_c01204{bottom:928.799496px;}
.y3a_c01204{bottom:929.596524px;}
.y3b_c01204{bottom:932.111640px;}
.y3c_c01204{bottom:932.876364px;}
.y3d_c01204{bottom:934.420764px;}
.y3e_c01204{bottom:935.422344px;}
.y3f_c01204{bottom:936.730608px;}
.y2a_c01204{bottom:956.059224px;}
.y2b_c01204{bottom:957.129504px;}
.y2c_c01204{bottom:959.755488px;}
.y2d_c01204{bottom:961.841904px;}
.y2e_c01204{bottom:963.449556px;}
.y2f_c01204{bottom:964.500576px;}
.y30_c01204{bottom:968.478468px;}
.y31_c01204{bottom:970.907676px;}
.y32_c01204{bottom:971.958372px;}
.y1f_c01204{bottom:991.438008px;}
.y20_c01204{bottom:992.667408px;}
.y21_c01204{bottom:993.356340px;}
.y22_c01204{bottom:995.068704px;}
.y23_c01204{bottom:997.201092px;}
.y24_c01204{bottom:998.182800px;}
.y25_c01204{bottom:1000.635180px;}
.y26_c01204{bottom:1001.384952px;}
.y27_c01204{bottom:1003.319700px;}
.y28_c01204{bottom:1003.819020px;}
.y29_c01204{bottom:1004.545956px;}
.y14_c01204{bottom:1027.090500px;}
.y15_c01204{bottom:1029.201900px;}
.y16_c01204{bottom:1030.727220px;}
.y17_c01204{bottom:1033.383732px;}
.y18_c01204{bottom:1034.640816px;}
.y19_c01204{bottom:1035.468996px;}
.y1a_c01204{bottom:1037.058252px;}
.y1b_c01204{bottom:1037.875128px;}
.y1c_c01204{bottom:1039.469532px;}
.y1d_c01204{bottom:1040.551548px;}
.y1e_c01204{bottom:1041.880200px;}
.y9_c01204{bottom:1067.577585px;}
.ya_c01204{bottom:1068.688131px;}
.yb_c01204{bottom:1069.826487px;}
.yc_c01204{bottom:1070.393145px;}
.yd_c01204{bottom:1071.322977px;}
.ye_c01204{bottom:1072.264398px;}
.yf_c01204{bottom:1072.857900px;}
.y10_c01204{bottom:1073.394534px;}
.y11_c01204{bottom:1073.949792px;}
.y12_c01204{bottom:1075.839984px;}
.y13_c01204{bottom:1076.404365px;}
.y7_c01204{bottom:1126.169202px;}
.y8_c01204{bottom:1126.937571px;}
.y2_c01204{bottom:1140.483000px;}
.y3_c01204{bottom:1141.878681px;}
.y4_c01204{bottom:1142.342613px;}
.y5_c01204{bottom:1143.921540px;}
.y6_c01204{bottom:1144.209030px;}
.y1_c01204{bottom:1217.011500px;}
.h11_c01204{height:24.001200px;}
.h2_c01204{height:54.000000px;}
.h12_c01204{height:72.001764px;}
.hb_c01204{height:72.017422px;}
.h6_c01204{height:72.020733px;}
.h10_c01204{height:78.003900px;}
.hc_c01204{height:78.018874px;}
.h5_c01204{height:78.022461px;}
.hf_c01204{height:84.000000px;}
.ha_c01204{height:84.020326px;}
.h8_c01204{height:84.024189px;}
.h4_c01204{height:90.008820px;}
.hd_c01204{height:90.021777px;}
.h7_c01204{height:90.025916px;}
.h3_c01204{height:96.009408px;}
.he_c01204{height:96.023229px;}
.h9_c01204{height:102.029372px;}
.h1_c01204{height:1258.500000px;}
.h0_c01204{height:1258.740000px;}
.w0_c01204{width:904.200000px;}
.w1_c01204{width:904.500000px;}
.x0_c01204{left:0.000000px;}
.x1e_c01204{left:118.311996px;}
.x15_c01204{left:119.478000px;}
.x2f_c01204{left:120.944916px;}
.x47_c01204{left:122.361576px;}
.x5a_c01204{left:123.668766px;}
.x6d_c01204{left:126.620334px;}
.x76_c01204{left:128.032830px;}
.x98_c01204{left:130.589991px;}
.xa1_c01204{left:132.280245px;}
.xaf_c01204{left:133.660677px;}
.xb6_c01204{left:135.055857px;}
.xd0_c01204{left:137.248434px;}
.xc7_c01204{left:138.382953px;}
.xd9_c01204{left:140.859075px;}
.xe1_c01204{left:142.195500px;}
.x3a_c01204{left:143.992800px;}
.x65_c01204{left:146.317341px;}
.x30_c01204{left:153.650208px;}
.x94_c01204{left:162.438609px;}
.x27_c01204{left:163.765092px;}
.xb0_c01204{left:166.380903px;}
.xc2_c01204{left:168.704826px;}
.xd1_c01204{left:172.420656px;}
.x1f_c01204{left:174.227196px;}
.xac_c01204{left:176.362272px;}
.x5b_c01204{left:178.805487px;}
.x66_c01204{left:180.898359px;}
.x3b_c01204{left:188.228424px;}
.x82_c01204{left:193.291731px;}
.x8c_c01204{left:194.390592px;}
.xe4_c01204{left:196.209000px;}
.x31_c01204{left:198.754788px;}
.xb1_c01204{left:200.457162px;}
.x77_c01204{left:202.773630px;}
.x20_c01204{left:205.559208px;}
.x16_c01204{left:207.453000px;}
.x48_c01204{left:209.542752px;}
.x5c_c01204{left:211.243713px;}
.x8d_c01204{left:215.548554px;}
.x3c_c01204{left:220.841472px;}
.xb7_c01204{left:222.540060px;}
.x6e_c01204{left:224.571882px;}
.xa_c01204{left:225.987000px;}
.x32_c01204{left:229.915044px;}
.x49_c01204{left:231.521796px;}
.x53_c01204{left:233.146500px;}
.x78_c01204{left:235.790082px;}
.x95_c01204{left:239.173557px;}
.x99_c01204{left:243.441399px;}
.xc8_c01204{left:246.335184px;}
.x8e_c01204{left:249.600813px;}
.xa7_c01204{left:251.872593px;}
.xbe_c01204{left:255.175545px;}
.xda_c01204{left:259.103643px;}
.x9a_c01204{left:263.672610px;}
.xb8_c01204{left:265.507131px;}
.x67_c01204{left:267.323187px;}
.x79_c01204{left:269.858067px;}
.x17_c01204{left:271.008000px;}
.x28_c01204{left:273.181092px;}
.x5d_c01204{left:278.241198px;}
.xd2_c01204{left:279.685251px;}
.x21_c01204{left:283.411452px;}
.x33_c01204{left:285.018876px;}
.x4a_c01204{left:286.415424px;}
.xbf_c01204{left:288.200949px;}
.x4_c01204{left:289.651500px;}
.xb_c01204{left:291.273249px;}
.x3d_c01204{left:296.667108px;}
.x83_c01204{left:302.376243px;}
.xa2_c01204{left:305.757024px;}
.x4b_c01204{left:308.425968px;}
.xdc_c01204{left:315.360000px;}
.xc3_c01204{left:322.489326px;}
.x84_c01204{left:324.547185px;}
.x8f_c01204{left:326.018496px;}
.x68_c01204{left:332.972058px;}
.x9_c01204{left:344.678382px;}
.x7a_c01204{left:345.716400px;}
.xdd_c01204{left:349.380000px;}
.xe5_c01204{left:351.430500px;}
.x4c_c01204{left:353.438628px;}
.xc9_c01204{left:355.996443px;}
.xc_c01204{left:358.224435px;}
.x29_c01204{left:360.115092px;}
.x34_c01204{left:361.823712px;}
.xa8_c01204{left:363.099162px;}
.x1_c01204{left:365.850000px;}
.xd3_c01204{left:369.343452px;}
.xdb_c01204{left:372.471729px;}
.xb2_c01204{left:374.628990px;}
.xb9_c01204{left:377.591541px;}
.x7b_c01204{left:379.212885px;}
.x22_c01204{left:380.328096px;}
.x18_c01204{left:381.696000px;}
.x3e_c01204{left:384.658320px;}
.x2_c01204{left:387.180000px;}
.x5_c01204{left:389.343000px;}
.xd_c01204{left:391.520028px;}
.x9b_c01204{left:394.008465px;}
.x54_c01204{left:397.795500px;}
.x6f_c01204{left:401.236074px;}
.xb3_c01204{left:409.125249px;}
.xa3_c01204{left:416.391759px;}
.x3f_c01204{left:417.626904px;}
.x4d_c01204{left:419.209296px;}
.x5e_c01204{left:421.357866px;}
.x6_c01204{left:422.481000px;}
.xca_c01204{left:423.539733px;}
.x23_c01204{left:424.922220px;}
.x2a_c01204{left:427.100592px;}
.xe6_c01204{left:428.112000px;}
.x3_c01204{left:432.540000px;}
.x19_c01204{left:434.074500px;}
.xe_c01204{left:446.255739px;}
.x90_c01204{left:448.068702px;}
.x85_c01204{left:456.584205px;}
.x96_c01204{left:458.772180px;}
.x35_c01204{left:461.889624px;}
.x70_c01204{left:466.151073px;}
.x7c_c01204{left:467.451279px;}
.x1a_c01204{left:468.582000px;}
.x2b_c01204{left:470.893092px;}
.x69_c01204{left:475.319328px;}
.x86_c01204{left:479.326713px;}
.x9c_c01204{left:482.029134px;}
.x40_c01204{left:484.039572px;}
.xad_c01204{left:485.615070px;}
.xd4_c01204{left:488.132055px;}
.xa4_c01204{left:493.902090px;}
.x4e_c01204{left:495.909468px;}
.x55_c01204{left:497.724000px;}
.x6a_c01204{left:499.615884px;}
.xf_c01204{left:501.604908px;}
.x71_c01204{left:510.092838px;}
.x7d_c01204{left:512.879292px;}
.x41_c01204{left:517.266156px;}
.x91_c01204{left:524.687385px;}
.x5f_c01204{left:531.682308px;}
.xcb_c01204{left:533.973723px;}
.x7_c01204{left:535.261500px;}
.x10_c01204{left:536.496438px;}
.xa5_c01204{left:538.271484px;}
.x56_c01204{left:541.498500px;}
.xde_c01204{left:545.940000px;}
.xe2_c01204{left:547.513500px;}
.xc4_c01204{left:553.817826px;}
.x8_c01204{left:555.796500px;}
.xa9_c01204{left:562.146708px;}
.x60_c01204{left:564.423534px;}
.x72_c01204{left:565.689885px;}
.x11_c01204{left:568.076115px;}
.x24_c01204{left:570.477204px;}
.x42_c01204{left:571.747284px;}
.x4f_c01204{left:573.449676px;}
.x7e_c01204{left:575.903064px;}
.x87_c01204{left:578.705136px;}
.xba_c01204{left:585.275157px;}
.xc5_c01204{left:586.568826px;}
.xd5_c01204{left:589.980462px;}
.x92_c01204{left:590.999337px;}
.x43_c01204{left:594.776400px;}
.x61_c01204{left:596.350227px;}
.x12_c01204{left:600.771750px;}
.x36_c01204{left:604.490544px;}
.x73_c01204{left:609.459117px;}
.x88_c01204{left:611.195700px;}
.x57_c01204{left:617.866500px;}
.xcc_c01204{left:622.043349px;}
.xdf_c01204{left:623.430000px;}
.x9d_c01204{left:625.392408px;}
.xa6_c01204{left:627.580338px;}
.x6b_c01204{left:631.656192px;}
.x1b_c01204{left:635.271000px;}
.x2c_c01204{left:636.638592px;}
.xaa_c01204{left:638.844705px;}
.xd6_c01204{left:644.535474px;}
.xe3_c01204{left:647.103000px;}
.x44_c01204{left:649.575528px;}
.x58_c01204{left:651.406500px;}
.xc0_c01204{left:652.408992px;}
.xe0_c01204{left:656.370000px;}
.x25_c01204{left:658.408416px;}
.xb4_c01204{left:663.010326px;}
.x7f_c01204{left:665.664024px;}
.x9e_c01204{left:668.649660px;}
.x37_c01204{left:671.654664px;}
.x62_c01204{left:674.059443px;}
.x89_c01204{left:677.905026px;}
.x1c_c01204{left:680.355000px;}
.xbb_c01204{left:685.467612px;}
.x74_c01204{left:687.256596px;}
.x45_c01204{left:693.547152px;}
.x50_c01204{left:694.943508px;}
.x6c_c01204{left:697.272063px;}
.x93_c01204{left:701.293746px;}
.x9f_c01204{left:702.928422px;}
.xcd_c01204{left:709.238178px;}
.x8a_c01204{left:710.574123px;}
.x13_c01204{left:711.995088px;}
.x26_c01204{left:714.130080px;}
.x38_c01204{left:715.200708px;}
.x63_c01204{left:718.881933px;}
.xae_c01204{left:727.279383px;}
.xc1_c01204{left:729.406290px;}
.xce_c01204{left:731.117910px;}
.x1d_c01204{left:735.715500px;}
.x2d_c01204{left:737.855592px;}
.x8b_c01204{left:744.033786px;}
.x14_c01204{left:745.235202px;}
.x46_c01204{left:748.424280px;}
.x51_c01204{left:749.472636px;}
.x59_c01204{left:750.520500px;}
.x80_c01204{left:754.818951px;}
.x64_c01204{left:762.135390px;}
.xcf_c01204{left:765.705069px;}
.x97_c01204{left:768.214170px;}
.xa0_c01204{left:769.345215px;}
.x39_c01204{left:772.088076px;}
.xbc_c01204{left:773.762112px;}
.x75_c01204{left:775.693725px;}
.xd7_c01204{left:777.599745px;}
.x2e_c01204{left:781.634592px;}
.x52_c01204{left:783.527256px;}
.xc6_c01204{left:786.038826px;}
.x81_c01204{left:787.742403px;}
.xab_c01204{left:793.142364px;}
.xd8_c01204{left:801.094926px;}
.xb5_c01204{left:806.546994px;}
.xbd_c01204{left:817.793079px;}
@media print{
.v0_c01204{vertical-align:0.000000pt;}
.ls0_c01204{letter-spacing:0.000000pt;}
.ws0_c01204{word-spacing:0.000000pt;}
._0_c01204{width:16.884795pt;}
.fsf_c01204{font-size:21.334400pt;}
.fs0_c01204{font-size:48.000000pt;}
.fs10_c01204{font-size:64.001568pt;}
.fs9_c01204{font-size:64.015486pt;}
.fs4_c01204{font-size:64.018429pt;}
.fse_c01204{font-size:69.336800pt;}
.fsa_c01204{font-size:69.350110pt;}
.fs3_c01204{font-size:69.353298pt;}
.fsd_c01204{font-size:74.666667pt;}
.fs8_c01204{font-size:74.684734pt;}
.fs6_c01204{font-size:74.688168pt;}
.fs2_c01204{font-size:80.007840pt;}
.fsb_c01204{font-size:80.019358pt;}
.fs5_c01204{font-size:80.023037pt;}
.fs1_c01204{font-size:85.341696pt;}
.fsc_c01204{font-size:85.353982pt;}
.fs7_c01204{font-size:90.692775pt;}
.y0_c01204{bottom:0.000000pt;}
.y153_c01204{bottom:53.050943pt;}
.y152_c01204{bottom:53.395324pt;}
.y151_c01204{bottom:53.803545pt;}
.y150_c01204{bottom:54.015123pt;}
.y14f_c01204{bottom:54.142784pt;}
.y14e_c01204{bottom:54.409941pt;}
.y14d_c01204{bottom:54.619913pt;}
.y14c_c01204{bottom:55.115504pt;}
.y14b_c01204{bottom:55.585736pt;}
.y14a_c01204{bottom:55.920000pt;}
.y149_c01204{bottom:80.800587pt;}
.y13f_c01204{bottom:96.721333pt;}
.y140_c01204{bottom:97.679053pt;}
.y141_c01204{bottom:98.662987pt;}
.y142_c01204{bottom:98.958480pt;}
.y143_c01204{bottom:99.841400pt;}
.y144_c01204{bottom:100.324160pt;}
.y145_c01204{bottom:101.209400pt;}
.y146_c01204{bottom:101.401347pt;}
.y147_c01204{bottom:101.699147pt;}
.y148_c01204{bottom:102.303840pt;}
.y13e_c01204{bottom:134.520000pt;}
.y139_c01204{bottom:158.510915pt;}
.y13a_c01204{bottom:159.518357pt;}
.y13b_c01204{bottom:160.917659pt;}
.y13c_c01204{bottom:162.295965pt;}
.y13d_c01204{bottom:165.924291pt;}
.y12d_c01204{bottom:192.826275pt;}
.y12e_c01204{bottom:193.201936pt;}
.y12f_c01204{bottom:194.345760pt;}
.y130_c01204{bottom:195.302691pt;}
.y131_c01204{bottom:196.348547pt;}
.y132_c01204{bottom:196.570491pt;}
.y133_c01204{bottom:196.950909pt;}
.y134_c01204{bottom:197.656421pt;}
.y135_c01204{bottom:198.237707pt;}
.y136_c01204{bottom:198.839688pt;}
.y137_c01204{bottom:199.656613pt;}
.y138_c01204{bottom:199.906640pt;}
.y121_c01204{bottom:227.874739pt;}
.y122_c01204{bottom:228.642488pt;}
.y123_c01204{bottom:228.796376pt;}
.y124_c01204{bottom:229.422315pt;}
.y125_c01204{bottom:229.579715pt;}
.y126_c01204{bottom:229.902755pt;}
.y127_c01204{bottom:230.688355pt;}
.y128_c01204{bottom:231.001053pt;}
.y129_c01204{bottom:231.314075pt;}
.y12a_c01204{bottom:231.934693pt;}
.y12b_c01204{bottom:232.090432pt;}
.y12c_c01204{bottom:232.335928pt;}
.y114_c01204{bottom:255.724424pt;}
.y115_c01204{bottom:256.506597pt;}
.y116_c01204{bottom:257.164075pt;}
.y117_c01204{bottom:258.864293pt;}
.y118_c01204{bottom:259.513939pt;}
.y119_c01204{bottom:260.591264pt;}
.y11a_c01204{bottom:261.689240pt;}
.y11b_c01204{bottom:263.192749pt;}
.y11c_c01204{bottom:264.037696pt;}
.y11d_c01204{bottom:264.678160pt;}
.y11e_c01204{bottom:265.976483pt;}
.y11f_c01204{bottom:266.656283pt;}
.y120_c01204{bottom:268.578907pt;}
.y109_c01204{bottom:284.775579pt;}
.y10a_c01204{bottom:286.687363pt;}
.y10b_c01204{bottom:287.215803pt;}
.y10c_c01204{bottom:288.802267pt;}
.y10d_c01204{bottom:289.341299pt;}
.y10e_c01204{bottom:290.576917pt;}
.y10f_c01204{bottom:291.626976pt;}
.y110_c01204{bottom:293.042800pt;}
.y111_c01204{bottom:293.574981pt;}
.y112_c01204{bottom:294.273725pt;}
.y113_c01204{bottom:295.016288pt;}
.yfd_c01204{bottom:321.737781pt;}
.yfe_c01204{bottom:321.977136pt;}
.yff_c01204{bottom:322.126611pt;}
.y100_c01204{bottom:322.317208pt;}
.y101_c01204{bottom:322.814928pt;}
.y102_c01204{bottom:322.904139pt;}
.y103_c01204{bottom:323.400221pt;}
.y104_c01204{bottom:323.637515pt;}
.y105_c01204{bottom:323.738779pt;}
.y106_c01204{bottom:324.184032pt;}
.y107_c01204{bottom:324.576701pt;}
.y108_c01204{bottom:324.772096pt;}
.yf1_c01204{bottom:347.669723pt;}
.yf2_c01204{bottom:348.280237pt;}
.yf3_c01204{bottom:348.915936pt;}
.yf4_c01204{bottom:350.524989pt;}
.yf5_c01204{bottom:352.167221pt;}
.yf6_c01204{bottom:352.811133pt;}
.yf7_c01204{bottom:354.224099pt;}
.yf8_c01204{bottom:355.671005pt;}
.yf9_c01204{bottom:357.105811pt;}
.yfa_c01204{bottom:357.550555pt;}
.yfb_c01204{bottom:359.196835pt;}
.yfc_c01204{bottom:360.229432pt;}
.ye7_c01204{bottom:380.077565pt;}
.ye8_c01204{bottom:380.900448pt;}
.ye9_c01204{bottom:381.923717pt;}
.yea_c01204{bottom:383.159237pt;}
.yeb_c01204{bottom:384.787080pt;}
.yec_c01204{bottom:385.416603pt;}
.yed_c01204{bottom:386.673259pt;}
.yee_c01204{bottom:388.714413pt;}
.yef_c01204{bottom:391.184368pt;}
.yf0_c01204{bottom:391.601523pt;}
.ydb_c01204{bottom:413.923915pt;}
.ydc_c01204{bottom:414.875136pt;}
.ydd_c01204{bottom:415.410408pt;}
.yde_c01204{bottom:416.794456pt;}
.ydf_c01204{bottom:417.187323pt;}
.ye0_c01204{bottom:418.017667pt;}
.ye1_c01204{bottom:418.299941pt;}
.ye2_c01204{bottom:419.270256pt;}
.ye3_c01204{bottom:419.798880pt;}
.ye4_c01204{bottom:420.224531pt;}
.ye5_c01204{bottom:420.903765pt;}
.ye6_c01204{bottom:422.144043pt;}
.yd1_c01204{bottom:442.493947pt;}
.yd2_c01204{bottom:443.164099pt;}
.yd3_c01204{bottom:443.708133pt;}
.yd4_c01204{bottom:445.268749pt;}
.yd5_c01204{bottom:447.038749pt;}
.yd6_c01204{bottom:448.278373pt;}
.yd7_c01204{bottom:448.988632pt;}
.yd8_c01204{bottom:450.417629pt;}
.yd9_c01204{bottom:450.919253pt;}
.yda_c01204{bottom:452.876104pt;}
.yc4_c01204{bottom:475.861051pt;}
.yc5_c01204{bottom:476.358016pt;}
.yc6_c01204{bottom:477.566347pt;}
.yc7_c01204{bottom:477.872603pt;}
.yc8_c01204{bottom:479.335373pt;}
.yc9_c01204{bottom:479.841112pt;}
.yca_c01204{bottom:480.832019pt;}
.ycb_c01204{bottom:481.171549pt;}
.ycc_c01204{bottom:481.824936pt;}
.ycd_c01204{bottom:483.337456pt;}
.yce_c01204{bottom:483.991283pt;}
.ycf_c01204{bottom:484.509549pt;}
.yd0_c01204{bottom:485.513557pt;}
.yba_c01204{bottom:508.987232pt;}
.ybb_c01204{bottom:509.505176pt;}
.ybc_c01204{bottom:510.664272pt;}
.ybd_c01204{bottom:511.318451pt;}
.ybe_c01204{bottom:512.476035pt;}
.ybf_c01204{bottom:513.983507pt;}
.yc0_c01204{bottom:515.147355pt;}
.yc1_c01204{bottom:515.665357pt;}
.yc2_c01204{bottom:516.685621pt;}
.yc3_c01204{bottom:518.660819pt;}
.yac_c01204{bottom:538.036752pt;}
.yad_c01204{bottom:539.276115pt;}
.yae_c01204{bottom:539.671195pt;}
.yaf_c01204{bottom:540.306424pt;}
.yb0_c01204{bottom:541.732781pt;}
.yb1_c01204{bottom:542.337019pt;}
.yb2_c01204{bottom:542.940933pt;}
.yb3_c01204{bottom:544.010155pt;}
.yb4_c01204{bottom:545.440443pt;}
.yb5_c01204{bottom:546.036891pt;}
.yb6_c01204{bottom:546.678515pt;}
.yb7_c01204{bottom:548.085408pt;}
.yb8_c01204{bottom:548.738003pt;}
.yb9_c01204{bottom:549.545163pt;}
.y9f_c01204{bottom:570.443704pt;}
.ya0_c01204{bottom:571.426189pt;}
.ya1_c01204{bottom:571.915613pt;}
.ya2_c01204{bottom:573.073829pt;}
.ya3_c01204{bottom:573.408680pt;}
.ya4_c01204{bottom:574.903080pt;}
.ya5_c01204{bottom:575.403787pt;}
.ya6_c01204{bottom:575.747147pt;}
.ya7_c01204{bottom:577.249000pt;}
.ya8_c01204{bottom:577.740301pt;}
.ya9_c01204{bottom:578.748696pt;}
.yaa_c01204{bottom:579.242155pt;}
.yab_c01204{bottom:579.748405pt;}
.y91_c01204{bottom:599.493544pt;}
.y92_c01204{bottom:600.821744pt;}
.y93_c01204{bottom:601.408704pt;}
.y94_c01204{bottom:602.014893pt;}
.y95_c01204{bottom:603.363613pt;}
.y96_c01204{bottom:603.958627pt;}
.y97_c01204{bottom:605.526768pt;}
.y98_c01204{bottom:606.333765pt;}
.y99_c01204{bottom:607.454176pt;}
.y9a_c01204{bottom:607.903579pt;}
.y9b_c01204{bottom:609.049424pt;}
.y9c_c01204{bottom:609.449043pt;}
.y9d_c01204{bottom:610.634155pt;}
.y9e_c01204{bottom:611.219296pt;}
.y85_c01204{bottom:633.098192pt;}
.y86_c01204{bottom:633.817648pt;}
.y87_c01204{bottom:634.405395pt;}
.y88_c01204{bottom:634.985248pt;}
.y89_c01204{bottom:636.012115pt;}
.y8a_c01204{bottom:636.760963pt;}
.y8b_c01204{bottom:637.626216pt;}
.y8c_c01204{bottom:638.212056pt;}
.y8d_c01204{bottom:638.953787pt;}
.y8e_c01204{bottom:639.537587pt;}
.y8f_c01204{bottom:640.574725pt;}
.y90_c01204{bottom:641.753229pt;}
.y78_c01204{bottom:665.266600pt;}
.y79_c01204{bottom:665.660277pt;}
.y7a_c01204{bottom:666.275165pt;}
.y7b_c01204{bottom:667.216024pt;}
.y7c_c01204{bottom:667.810509pt;}
.y7d_c01204{bottom:668.978253pt;}
.y7e_c01204{bottom:669.559699pt;}
.y7f_c01204{bottom:671.508477pt;}
.y80_c01204{bottom:671.940923pt;}
.y81_c01204{bottom:673.668168pt;}
.y82_c01204{bottom:674.288264pt;}
.y83_c01204{bottom:675.455363pt;}
.y84_c01204{bottom:676.610435pt;}
.y69_c01204{bottom:693.597768pt;}
.y6a_c01204{bottom:694.626640pt;}
.y6b_c01204{bottom:695.231640pt;}
.y6c_c01204{bottom:696.481784pt;}
.y6d_c01204{bottom:697.896027pt;}
.y6e_c01204{bottom:698.512261pt;}
.y6f_c01204{bottom:699.152448pt;}
.y70_c01204{bottom:700.568128pt;}
.y71_c01204{bottom:701.211189pt;}
.y72_c01204{bottom:701.822115pt;}
.y73_c01204{bottom:702.418445pt;}
.y74_c01204{bottom:703.450485pt;}
.y75_c01204{bottom:703.868725pt;}
.y76_c01204{bottom:704.705235pt;}
.y77_c01204{bottom:705.512395pt;}
.y5c_c01204{bottom:724.805333pt;}
.y5d_c01204{bottom:726.295789pt;}
.y5e_c01204{bottom:726.956435pt;}
.y5f_c01204{bottom:728.435069pt;}
.y60_c01204{bottom:729.120384pt;}
.y61_c01204{bottom:730.176237pt;}
.y62_c01204{bottom:730.599224pt;}
.y63_c01204{bottom:732.130395pt;}
.y64_c01204{bottom:732.986429pt;}
.y65_c01204{bottom:734.479848pt;}
.y66_c01204{bottom:735.135741pt;}
.y67_c01204{bottom:737.073971pt;}
.y68_c01204{bottom:737.734616pt;}
.y4e_c01204{bottom:756.919648pt;}
.y4f_c01204{bottom:757.356992pt;}
.y50_c01204{bottom:758.624757pt;}
.y51_c01204{bottom:759.054955pt;}
.y52_c01204{bottom:760.128629pt;}
.y53_c01204{bottom:760.559499pt;}
.y54_c01204{bottom:761.439723pt;}
.y55_c01204{bottom:762.065493pt;}
.y56_c01204{bottom:762.725429pt;}
.y57_c01204{bottom:764.225621pt;}
.y58_c01204{bottom:765.742400pt;}
.y59_c01204{bottom:768.118144pt;}
.y5a_c01204{bottom:769.184043pt;}
.y5b_c01204{bottom:769.850507pt;}
.y40_c01204{bottom:787.886997pt;}
.y41_c01204{bottom:788.353611pt;}
.y42_c01204{bottom:789.218592pt;}
.y43_c01204{bottom:789.856971pt;}
.y44_c01204{bottom:791.339840pt;}
.y45_c01204{bottom:793.060896pt;}
.y46_c01204{bottom:793.705525pt;}
.y47_c01204{bottom:795.004928pt;}
.y48_c01204{bottom:795.655061pt;}
.y49_c01204{bottom:796.719936pt;}
.y4a_c01204{bottom:797.169867pt;}
.y4b_c01204{bottom:798.241525pt;}
.y4c_c01204{bottom:799.100875pt;}
.y4d_c01204{bottom:800.174197pt;}
.y33_c01204{bottom:819.338709pt;}
.y34_c01204{bottom:820.007072pt;}
.y35_c01204{bottom:820.929280pt;}
.y36_c01204{bottom:821.566016pt;}
.y37_c01204{bottom:822.692203pt;}
.y38_c01204{bottom:824.262667pt;}
.y39_c01204{bottom:825.599552pt;}
.y3a_c01204{bottom:826.308021pt;}
.y3b_c01204{bottom:828.543680pt;}
.y3c_c01204{bottom:829.223435pt;}
.y3d_c01204{bottom:830.596235pt;}
.y3e_c01204{bottom:831.486528pt;}
.y3f_c01204{bottom:832.649429pt;}
.y2a_c01204{bottom:849.830421pt;}
.y2b_c01204{bottom:850.781781pt;}
.y2c_c01204{bottom:853.115989pt;}
.y2d_c01204{bottom:854.970581pt;}
.y2e_c01204{bottom:856.399605pt;}
.y2f_c01204{bottom:857.333845pt;}
.y30_c01204{bottom:860.869749pt;}
.y31_c01204{bottom:863.029045pt;}
.y32_c01204{bottom:863.962997pt;}
.y1f_c01204{bottom:881.278229pt;}
.y20_c01204{bottom:882.371029pt;}
.y21_c01204{bottom:882.983413pt;}
.y22_c01204{bottom:884.505515pt;}
.y23_c01204{bottom:886.400971pt;}
.y24_c01204{bottom:887.273600pt;}
.y25_c01204{bottom:889.453493pt;}
.y26_c01204{bottom:890.119957pt;}
.y27_c01204{bottom:891.839733pt;}
.y28_c01204{bottom:892.283573pt;}
.y29_c01204{bottom:892.929739pt;}
.y14_c01204{bottom:912.969333pt;}
.y15_c01204{bottom:914.846133pt;}
.y16_c01204{bottom:916.201973pt;}
.y17_c01204{bottom:918.563317pt;}
.y18_c01204{bottom:919.680725pt;}
.y19_c01204{bottom:920.416885pt;}
.y1a_c01204{bottom:921.829557pt;}
.y1b_c01204{bottom:922.555669pt;}
.y1c_c01204{bottom:923.972917pt;}
.y1d_c01204{bottom:924.934709pt;}
.y1e_c01204{bottom:926.115733pt;}
.y9_c01204{bottom:948.957853pt;}
.ya_c01204{bottom:949.945005pt;}
.yb_c01204{bottom:950.956877pt;}
.yc_c01204{bottom:951.460573pt;}
.yd_c01204{bottom:952.287091pt;}
.ye_c01204{bottom:953.123909pt;}
.yf_c01204{bottom:953.651467pt;}
.y10_c01204{bottom:954.128475pt;}
.y11_c01204{bottom:954.622037pt;}
.y12_c01204{bottom:956.302208pt;}
.y13_c01204{bottom:956.803880pt;}
.y7_c01204{bottom:1001.039291pt;}
.y8_c01204{bottom:1001.722285pt;}
.y2_c01204{bottom:1013.762667pt;}
.y3_c01204{bottom:1015.003272pt;}
.y4_c01204{bottom:1015.415656pt;}
.y5_c01204{bottom:1016.819147pt;}
.y6_c01204{bottom:1017.074693pt;}
.y1_c01204{bottom:1081.788000pt;}
.h11_c01204{height:21.334400pt;}
.h2_c01204{height:48.000000pt;}
.h12_c01204{height:64.001568pt;}
.hb_c01204{height:64.015486pt;}
.h6_c01204{height:64.018429pt;}
.h10_c01204{height:69.336800pt;}
.hc_c01204{height:69.350110pt;}
.h5_c01204{height:69.353298pt;}
.hf_c01204{height:74.666667pt;}
.ha_c01204{height:74.684734pt;}
.h8_c01204{height:74.688168pt;}
.h4_c01204{height:80.007840pt;}
.hd_c01204{height:80.019358pt;}
.h7_c01204{height:80.023037pt;}
.h3_c01204{height:85.341696pt;}
.he_c01204{height:85.353982pt;}
.h9_c01204{height:90.692775pt;}
.h1_c01204{height:1118.666667pt;}
.h0_c01204{height:1118.880000pt;}
.w0_c01204{width:803.733333pt;}
.w1_c01204{width:804.000000pt;}
.x0_c01204{left:0.000000pt;}
.x1e_c01204{left:105.166219pt;}
.x15_c01204{left:106.202667pt;}
.x2f_c01204{left:107.506592pt;}
.x47_c01204{left:108.765845pt;}
.x5a_c01204{left:109.927792pt;}
.x6d_c01204{left:112.551408pt;}
.x76_c01204{left:113.806960pt;}
.x98_c01204{left:116.079992pt;}
.xa1_c01204{left:117.582440pt;}
.xaf_c01204{left:118.809491pt;}
.xb6_c01204{left:120.049651pt;}
.xd0_c01204{left:121.998608pt;}
.xc7_c01204{left:123.007069pt;}
.xd9_c01204{left:125.208067pt;}
.xe1_c01204{left:126.396000pt;}
.x3a_c01204{left:127.993600pt;}
.x65_c01204{left:130.059859pt;}
.x30_c01204{left:136.577963pt;}
.x94_c01204{left:144.389875pt;}
.x27_c01204{left:145.568971pt;}
.xb0_c01204{left:147.894136pt;}
.xc2_c01204{left:149.959845pt;}
.xd1_c01204{left:153.262805pt;}
.x1f_c01204{left:154.868619pt;}
.xac_c01204{left:156.766464pt;}
.x5b_c01204{left:158.938211pt;}
.x66_c01204{left:160.798541pt;}
.x3b_c01204{left:167.314155pt;}
.x82_c01204{left:171.814872pt;}
.x8c_c01204{left:172.791637pt;}
.xe4_c01204{left:174.408000pt;}
.x31_c01204{left:176.670923pt;}
.xb1_c01204{left:178.184144pt;}
.x77_c01204{left:180.243227pt;}
.x20_c01204{left:182.719296pt;}
.x16_c01204{left:184.402667pt;}
.x48_c01204{left:186.260224pt;}
.x5c_c01204{left:187.772189pt;}
.x8d_c01204{left:191.598715pt;}
.x3c_c01204{left:196.303531pt;}
.xb7_c01204{left:197.813387pt;}
.x6e_c01204{left:199.619451pt;}
.xa_c01204{left:200.877333pt;}
.x32_c01204{left:204.368928pt;}
.x49_c01204{left:205.797152pt;}
.x53_c01204{left:207.241333pt;}
.x78_c01204{left:209.591184pt;}
.x95_c01204{left:212.598717pt;}
.x99_c01204{left:216.392355pt;}
.xc8_c01204{left:218.964608pt;}
.x8e_c01204{left:221.867389pt;}
.xa7_c01204{left:223.886749pt;}
.xbe_c01204{left:226.822707pt;}
.xda_c01204{left:230.314349pt;}
.x9a_c01204{left:234.375653pt;}
.xb8_c01204{left:236.006339pt;}
.x67_c01204{left:237.620611pt;}
.x79_c01204{left:239.873837pt;}
.x17_c01204{left:240.896000pt;}
.x28_c01204{left:242.827637pt;}
.x5d_c01204{left:247.325509pt;}
.xd2_c01204{left:248.609112pt;}
.x21_c01204{left:251.921291pt;}
.x33_c01204{left:253.350112pt;}
.x4a_c01204{left:254.591488pt;}
.xbf_c01204{left:256.178621pt;}
.x4_c01204{left:257.468000pt;}
.xb_c01204{left:258.909555pt;}
.x3d_c01204{left:263.704096pt;}
.x83_c01204{left:268.778883pt;}
.xa2_c01204{left:271.784021pt;}
.x4b_c01204{left:274.156416pt;}
.xdc_c01204{left:280.320000pt;}
.xc3_c01204{left:286.657179pt;}
.x84_c01204{left:288.486387pt;}
.x8f_c01204{left:289.794219pt;}
.x68_c01204{left:295.975163pt;}
.x9_c01204{left:306.380784pt;}
.x7a_c01204{left:307.303467pt;}
.xdd_c01204{left:310.560000pt;}
.xe5_c01204{left:312.382667pt;}
.x4c_c01204{left:314.167669pt;}
.xc9_c01204{left:316.441283pt;}
.xc_c01204{left:318.421720pt;}
.x29_c01204{left:320.102304pt;}
.x34_c01204{left:321.621077pt;}
.xa8_c01204{left:322.754811pt;}
.x1_c01204{left:325.200000pt;}
.xd3_c01204{left:328.305291pt;}
.xdb_c01204{left:331.085981pt;}
.xb2_c01204{left:333.003547pt;}
.xb9_c01204{left:335.636925pt;}
.x7b_c01204{left:337.078120pt;}
.x22_c01204{left:338.069419pt;}
.x18_c01204{left:339.285333pt;}
.x3e_c01204{left:341.918507pt;}
.x2_c01204{left:344.160000pt;}
.x5_c01204{left:346.082667pt;}
.xd_c01204{left:348.017803pt;}
.x9b_c01204{left:350.229747pt;}
.x54_c01204{left:353.596000pt;}
.x6f_c01204{left:356.654288pt;}
.xb3_c01204{left:363.666888pt;}
.xa3_c01204{left:370.126008pt;}
.x3f_c01204{left:371.223915pt;}
.x4d_c01204{left:372.630485pt;}
.x5e_c01204{left:374.540325pt;}
.x6_c01204{left:375.538667pt;}
.xca_c01204{left:376.479763pt;}
.x23_c01204{left:377.708640pt;}
.x2a_c01204{left:379.644971pt;}
.xe6_c01204{left:380.544000pt;}
.x3_c01204{left:384.480000pt;}
.x19_c01204{left:385.844000pt;}
.xe_c01204{left:396.671768pt;}
.x90_c01204{left:398.283291pt;}
.x85_c01204{left:405.852627pt;}
.x96_c01204{left:407.797493pt;}
.x35_c01204{left:410.568555pt;}
.x70_c01204{left:414.356509pt;}
.x7c_c01204{left:415.512248pt;}
.x1a_c01204{left:416.517333pt;}
.x2b_c01204{left:418.571637pt;}
.x69_c01204{left:422.506069pt;}
.x86_c01204{left:426.068189pt;}
.x9c_c01204{left:428.470341pt;}
.x40_c01204{left:430.257397pt;}
.xad_c01204{left:431.657840pt;}
.xd4_c01204{left:433.895160pt;}
.xa4_c01204{left:439.024080pt;}
.x4e_c01204{left:440.808416pt;}
.x55_c01204{left:442.421333pt;}
.x6a_c01204{left:444.103008pt;}
.xf_c01204{left:445.871029pt;}
.x71_c01204{left:453.415856pt;}
.x7d_c01204{left:455.892704pt;}
.x41_c01204{left:459.792139pt;}
.x91_c01204{left:466.388787pt;}
.x5f_c01204{left:472.606496pt;}
.xcb_c01204{left:474.643309pt;}
.x7_c01204{left:475.788000pt;}
.x10_c01204{left:476.885723pt;}
.xa5_c01204{left:478.463541pt;}
.x56_c01204{left:481.332000pt;}
.xde_c01204{left:485.280000pt;}
.xe2_c01204{left:486.678667pt;}
.xc4_c01204{left:492.282512pt;}
.x8_c01204{left:494.041333pt;}
.xa9_c01204{left:499.685963pt;}
.x60_c01204{left:501.709808pt;}
.x72_c01204{left:502.835453pt;}
.x11_c01204{left:504.956547pt;}
.x24_c01204{left:507.090848pt;}
.x42_c01204{left:508.219808pt;}
.x4f_c01204{left:509.733045pt;}
.x7e_c01204{left:511.913835pt;}
.x87_c01204{left:514.404565pt;}
.xba_c01204{left:520.244584pt;}
.xc5_c01204{left:521.394512pt;}
.xd5_c01204{left:524.427077pt;}
.x92_c01204{left:525.332744pt;}
.x43_c01204{left:528.690133pt;}
.x61_c01204{left:530.089091pt;}
.x12_c01204{left:534.019333pt;}
.x36_c01204{left:537.324928pt;}
.x73_c01204{left:541.741437pt;}
.x88_c01204{left:543.285067pt;}
.x57_c01204{left:549.214667pt;}
.xcc_c01204{left:552.927421pt;}
.xdf_c01204{left:554.160000pt;}
.x9d_c01204{left:555.904363pt;}
.xa6_c01204{left:557.849189pt;}
.x6b_c01204{left:561.472171pt;}
.x1b_c01204{left:564.685333pt;}
.x2c_c01204{left:565.900971pt;}
.xaa_c01204{left:567.861960pt;}
.xd6_c01204{left:572.920421pt;}
.xe3_c01204{left:575.202667pt;}
.x44_c01204{left:577.400469pt;}
.x58_c01204{left:579.028000pt;}
.xc0_c01204{left:579.919104pt;}
.xe0_c01204{left:583.440000pt;}
.x25_c01204{left:585.251925pt;}
.xb4_c01204{left:589.342512pt;}
.x7f_c01204{left:591.701355pt;}
.x9e_c01204{left:594.355253pt;}
.x37_c01204{left:597.026368pt;}
.x62_c01204{left:599.163949pt;}
.x89_c01204{left:602.582245pt;}
.x1c_c01204{left:604.760000pt;}
.xbb_c01204{left:609.304544pt;}
.x74_c01204{left:610.894752pt;}
.x45_c01204{left:616.486357pt;}
.x50_c01204{left:617.727563pt;}
.x6c_c01204{left:619.797389pt;}
.x93_c01204{left:623.372219pt;}
.x9f_c01204{left:624.825264pt;}
.xcd_c01204{left:630.433936pt;}
.x8a_c01204{left:631.621443pt;}
.x13_c01204{left:632.884523pt;}
.x26_c01204{left:634.782293pt;}
.x38_c01204{left:635.733963pt;}
.x63_c01204{left:639.006163pt;}
.xae_c01204{left:646.470563pt;}
.xc1_c01204{left:648.361147pt;}
.xce_c01204{left:649.882587pt;}
.x1d_c01204{left:653.969333pt;}
.x2d_c01204{left:655.871637pt;}
.x8b_c01204{left:661.363365pt;}
.x14_c01204{left:662.431291pt;}
.x46_c01204{left:665.266027pt;}
.x51_c01204{left:666.197899pt;}
.x59_c01204{left:667.129333pt;}
.x80_c01204{left:670.950179pt;}
.x64_c01204{left:677.453680pt;}
.xcf_c01204{left:680.626728pt;}
.x97_c01204{left:682.857040pt;}
.xa0_c01204{left:683.862413pt;}
.x39_c01204{left:686.300512pt;}
.xbc_c01204{left:687.788544pt;}
.x75_c01204{left:689.505533pt;}
.xd7_c01204{left:691.199773pt;}
.x2e_c01204{left:694.786304pt;}
.x52_c01204{left:696.468672pt;}
.xc6_c01204{left:698.701179pt;}
.x81_c01204{left:700.215469pt;}
.xab_c01204{left:705.015435pt;}
.xd8_c01204{left:712.084379pt;}
.xb5_c01204{left:716.930661pt;}
.xbd_c01204{left:726.927181pt;}
}





/* 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_c01205 {
    display:none;
  }
  .loading-indicator_c01205.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01205 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_c01205 { 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_c01205" -> "#page-container .classname_c01205")
 */
.pf_c01205 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01205 { /* 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_c01205.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01205 { /* 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_c01205 { /* 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_c01205 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01205 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01205 {overflow:visible;}
  }
}
.c_c01205 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01205 { /* 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_c01205:after { /* webkit #35443 */
  content: '';
}
.t_c01205:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01205 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 */
}
.__c01205 { /* 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_c01205 { /* info for Javascript */
  display:none;
}
.l_c01205 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01205 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01205 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01205: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_c01205 {
    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_c01205.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01205.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_c01205 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01205{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01205;src:url('chunks/assets/font_5f4fe34b032b9307bcc13373.woff2')format("woff");}.ff1_c01205{font-family:ff1_c01205;line-height:1.000000;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;}
.m0_c01205{transform:matrix(0.270415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270415,0.000000,0.000000,0.250000,0,0);}
.v0_c01205{vertical-align:0.000000px;}
.ls0_c01205{letter-spacing:0.000000px;}
.sc__c01205{text-shadow:none;}
.sc0_c01205{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__c01205{-webkit-text-stroke:0px transparent;}
.sc0_c01205{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01205{word-spacing:0.000000px;}
.fc0_c01205{color:transparent;}
.fs0_c01205{font-size:18.000000px;}
.y0_c01205{bottom:0.000000px;}
.y1_c01205{bottom:891.000000px;}
.h2_c01205{height:18.000000px;}
.h1_c01205{height:1258.500000px;}
.h0_c01205{height:1258.740000px;}
.w0_c01205{width:904.200000px;}
.w1_c01205{width:904.500000px;}
.x0_c01205{left:0.000000px;}
.x1_c01205{left:711.450000px;}
@media print{
.v0_c01205{vertical-align:0.000000pt;}
.ls0_c01205{letter-spacing:0.000000pt;}
.ws0_c01205{word-spacing:0.000000pt;}
.fs0_c01205{font-size:16.000000pt;}
.y0_c01205{bottom:0.000000pt;}
.y1_c01205{bottom:792.000000pt;}
.h2_c01205{height:16.000000pt;}
.h1_c01205{height:1118.666667pt;}
.h0_c01205{height:1118.880000pt;}
.w0_c01205{width:803.733333pt;}
.w1_c01205{width:804.000000pt;}
.x0_c01205{left:0.000000pt;}
.x1_c01205{left:632.400000pt;}
}





/* 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_c01206 {
    display:none;
  }
  .loading-indicator_c01206.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01206 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_c01206 { 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_c01206" -> "#page-container .classname_c01206")
 */
.pf_c01206 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01206 { /* 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_c01206.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01206 { /* 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_c01206 { /* 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_c01206 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01206 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01206 {overflow:visible;}
  }
}
.c_c01206 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01206 { /* 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_c01206:after { /* webkit #35443 */
  content: '';
}
.t_c01206:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01206 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 */
}
.__c01206 { /* 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_c01206 { /* info for Javascript */
  display:none;
}
.l_c01206 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01206 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01206 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01206: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_c01206 {
    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_c01206.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01206.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_c01206 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01206{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01206;src:url('chunks/assets/font_c605e72f209fc835e906f064.woff2')format("woff");}.ff1_c01206{font-family:ff1_c01206;line-height:1.000000;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;}
.mba_c01206{transform:matrix(0.012730,-0.000076,0.001500,0.249996,0,0);-ms-transform:matrix(0.012730,-0.000076,0.001500,0.249996,0,0);-webkit-transform:matrix(0.012730,-0.000076,0.001500,0.249996,0,0);}
.mde_c01206{transform:matrix(0.013520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.013520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.013520,0.000000,0.000000,0.250000,0,0);}
.m114_c01206{transform:matrix(0.124120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124120,0.000000,0.000000,0.250000,0,0);}
.m108_c01206{transform:matrix(0.151375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151375,0.000000,0.000000,0.250000,0,0);}
.m100_c01206{transform:matrix(0.158550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158550,0.000000,0.000000,0.250000,0,0);}
.m103_c01206{transform:matrix(0.159485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159485,0.000000,0.000000,0.250000,0,0);}
.m106_c01206{transform:matrix(0.162250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162250,0.000000,0.000000,0.250000,0,0);}
.m11a_c01206{transform:matrix(0.162340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162340,0.000000,0.000000,0.250000,0,0);}
.mef_c01206{transform:matrix(0.166415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166415,0.000000,0.000000,0.250000,0,0);}
.m10a_c01206{transform:matrix(0.171065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171065,0.000000,0.000000,0.250000,0,0);}
.m113_c01206{transform:matrix(0.172050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172050,0.000000,0.000000,0.250000,0,0);}
.m115_c01206{transform:matrix(0.173845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173845,0.000000,0.000000,0.250000,0,0);}
.m119_c01206{transform:matrix(0.175175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175175,0.000000,0.000000,0.250000,0,0);}
.m107_c01206{transform:matrix(0.176460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176460,0.000000,0.000000,0.250000,0,0);}
.mf0_c01206{transform:matrix(0.176690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176690,0.000000,0.000000,0.250000,0,0);}
.mea_c01206{transform:matrix(0.177375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177375,0.000000,0.000000,0.250000,0,0);}
.med_c01206{transform:matrix(0.178770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178770,0.000000,0.000000,0.250000,0,0);}
.mec_c01206{transform:matrix(0.180660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180660,0.000000,0.000000,0.250000,0,0);}
.m104_c01206{transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);}
.m109_c01206{transform:matrix(0.180900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180900,0.000000,0.000000,0.250000,0,0);}
.mee_c01206{transform:matrix(0.181145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181145,0.000000,0.000000,0.250000,0,0);}
.me9_c01206{transform:matrix(0.182190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182190,0.000000,0.000000,0.250000,0,0);}
.maa_c01206{transform:matrix(0.184112,-0.001105,0.001500,0.249996,0,0);-ms-transform:matrix(0.184112,-0.001105,0.001500,0.249996,0,0);-webkit-transform:matrix(0.184112,-0.001105,0.001500,0.249996,0,0);}
.m118_c01206{transform:matrix(0.185700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185700,0.000000,0.000000,0.250000,0,0);}
.mb5_c01206{transform:matrix(0.185827,-0.001115,0.001500,0.249996,0,0);-ms-transform:matrix(0.185827,-0.001115,0.001500,0.249996,0,0);-webkit-transform:matrix(0.185827,-0.001115,0.001500,0.249996,0,0);}
.m117_c01206{transform:matrix(0.186045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186045,0.000000,0.000000,0.250000,0,0);}
.md5_c01206{transform:matrix(0.186070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186070,0.000000,0.000000,0.250000,0,0);}
.me_c01206{transform:matrix(0.186321,-0.001863,0.002500,0.249988,0,0);-ms-transform:matrix(0.186321,-0.001863,0.002500,0.249988,0,0);-webkit-transform:matrix(0.186321,-0.001863,0.002500,0.249988,0,0);}
.me0_c01206{transform:matrix(0.187235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187235,0.000000,0.000000,0.250000,0,0);}
.m105_c01206{transform:matrix(0.187255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187255,0.000000,0.000000,0.250000,0,0);}
.m2d_c01206{transform:matrix(0.187416,-0.001874,0.002500,0.249988,0,0);-ms-transform:matrix(0.187416,-0.001874,0.002500,0.249988,0,0);-webkit-transform:matrix(0.187416,-0.001874,0.002500,0.249988,0,0);}
.m64_c01206{transform:matrix(0.189832,-0.001139,0.001500,0.249996,0,0);-ms-transform:matrix(0.189832,-0.001139,0.001500,0.249996,0,0);-webkit-transform:matrix(0.189832,-0.001139,0.001500,0.249996,0,0);}
.m67_c01206{transform:matrix(0.190072,-0.001140,0.001500,0.249996,0,0);-ms-transform:matrix(0.190072,-0.001140,0.001500,0.249996,0,0);-webkit-transform:matrix(0.190072,-0.001140,0.001500,0.249996,0,0);}
.m60_c01206{transform:matrix(0.190822,-0.001145,0.001500,0.249996,0,0);-ms-transform:matrix(0.190822,-0.001145,0.001500,0.249996,0,0);-webkit-transform:matrix(0.190822,-0.001145,0.001500,0.249996,0,0);}
.m13_c01206{transform:matrix(0.190910,-0.001909,0.002500,0.249988,0,0);-ms-transform:matrix(0.190910,-0.001909,0.002500,0.249988,0,0);-webkit-transform:matrix(0.190910,-0.001909,0.002500,0.249988,0,0);}
.mfb_c01206{transform:matrix(0.190920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190920,0.000000,0.000000,0.250000,0,0);}
.mb7_c01206{transform:matrix(0.191922,-0.001152,0.001500,0.249996,0,0);-ms-transform:matrix(0.191922,-0.001152,0.001500,0.249996,0,0);-webkit-transform:matrix(0.191922,-0.001152,0.001500,0.249996,0,0);}
.m5b_c01206{transform:matrix(0.193152,-0.001159,0.001500,0.249996,0,0);-ms-transform:matrix(0.193152,-0.001159,0.001500,0.249996,0,0);-webkit-transform:matrix(0.193152,-0.001159,0.001500,0.249996,0,0);}
.mb9_c01206{transform:matrix(0.193192,-0.001159,0.001500,0.249996,0,0);-ms-transform:matrix(0.193192,-0.001159,0.001500,0.249996,0,0);-webkit-transform:matrix(0.193192,-0.001159,0.001500,0.249996,0,0);}
.mdd_c01206{transform:matrix(0.193450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193450,0.000000,0.000000,0.250000,0,0);}
.meb_c01206{transform:matrix(0.196925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196925,0.000000,0.000000,0.250000,0,0);}
.m134_c01206{transform:matrix(0.197344,-0.006321,0.008004,0.249872,0,0);-ms-transform:matrix(0.197344,-0.006321,0.008004,0.249872,0,0);-webkit-transform:matrix(0.197344,-0.006321,0.008004,0.249872,0,0);}
.mf1_c01206{transform:matrix(0.197495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197495,0.000000,0.000000,0.250000,0,0);}
.m31_c01206{transform:matrix(0.197515,-0.001975,0.002500,0.249988,0,0);-ms-transform:matrix(0.197515,-0.001975,0.002500,0.249988,0,0);-webkit-transform:matrix(0.197515,-0.001975,0.002500,0.249988,0,0);}
.m6b_c01206{transform:matrix(0.198396,-0.001190,0.001500,0.249996,0,0);-ms-transform:matrix(0.198396,-0.001190,0.001500,0.249996,0,0);-webkit-transform:matrix(0.198396,-0.001190,0.001500,0.249996,0,0);}
.m133_c01206{transform:matrix(0.198873,-0.006370,0.008004,0.249872,0,0);-ms-transform:matrix(0.198873,-0.006370,0.008004,0.249872,0,0);-webkit-transform:matrix(0.198873,-0.006370,0.008004,0.249872,0,0);}
.mf2_c01206{transform:matrix(0.198965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198965,0.000000,0.000000,0.250000,0,0);}
.mf3_c01206{transform:matrix(0.199135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199135,0.000000,0.000000,0.250000,0,0);}
.m2e_c01206{transform:matrix(0.199690,-0.001997,0.002500,0.249988,0,0);-ms-transform:matrix(0.199690,-0.001997,0.002500,0.249988,0,0);-webkit-transform:matrix(0.199690,-0.001997,0.002500,0.249988,0,0);}
.m79_c01206{transform:matrix(0.200341,-0.001202,0.001500,0.249996,0,0);-ms-transform:matrix(0.200341,-0.001202,0.001500,0.249996,0,0);-webkit-transform:matrix(0.200341,-0.001202,0.001500,0.249996,0,0);}
.m11_c01206{transform:matrix(0.200560,-0.002006,0.002500,0.249988,0,0);-ms-transform:matrix(0.200560,-0.002006,0.002500,0.249988,0,0);-webkit-transform:matrix(0.200560,-0.002006,0.002500,0.249988,0,0);}
.m135_c01206{transform:matrix(0.200662,-0.006428,0.008004,0.249872,0,0);-ms-transform:matrix(0.200662,-0.006428,0.008004,0.249872,0,0);-webkit-transform:matrix(0.200662,-0.006428,0.008004,0.249872,0,0);}
.m70_c01206{transform:matrix(0.201371,-0.001208,0.001500,0.249996,0,0);-ms-transform:matrix(0.201371,-0.001208,0.001500,0.249996,0,0);-webkit-transform:matrix(0.201371,-0.001208,0.001500,0.249996,0,0);}
.ma8_c01206{transform:matrix(0.201981,-0.001212,0.001500,0.249996,0,0);-ms-transform:matrix(0.201981,-0.001212,0.001500,0.249996,0,0);-webkit-transform:matrix(0.201981,-0.001212,0.001500,0.249996,0,0);}
.m72_c01206{transform:matrix(0.202071,-0.001212,0.001500,0.249996,0,0);-ms-transform:matrix(0.202071,-0.001212,0.001500,0.249996,0,0);-webkit-transform:matrix(0.202071,-0.001212,0.001500,0.249996,0,0);}
.mb3_c01206{transform:matrix(0.202636,-0.001216,0.001500,0.249996,0,0);-ms-transform:matrix(0.202636,-0.001216,0.001500,0.249996,0,0);-webkit-transform:matrix(0.202636,-0.001216,0.001500,0.249996,0,0);}
.m136_c01206{transform:matrix(0.203830,-0.006529,0.008004,0.249872,0,0);-ms-transform:matrix(0.203830,-0.006529,0.008004,0.249872,0,0);-webkit-transform:matrix(0.203830,-0.006529,0.008004,0.249872,0,0);}
.m23_c01206{transform:matrix(0.204450,-0.002044,0.002500,0.249988,0,0);-ms-transform:matrix(0.204450,-0.002044,0.002500,0.249988,0,0);-webkit-transform:matrix(0.204450,-0.002044,0.002500,0.249988,0,0);}
.m74_c01206{transform:matrix(0.204456,-0.001227,0.001500,0.249996,0,0);-ms-transform:matrix(0.204456,-0.001227,0.001500,0.249996,0,0);-webkit-transform:matrix(0.204456,-0.001227,0.001500,0.249996,0,0);}
.md3_c01206{transform:matrix(0.205055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205055,0.000000,0.000000,0.250000,0,0);}
.m5d_c01206{transform:matrix(0.205086,-0.001231,0.001500,0.249996,0,0);-ms-transform:matrix(0.205086,-0.001231,0.001500,0.249996,0,0);-webkit-transform:matrix(0.205086,-0.001231,0.001500,0.249996,0,0);}
.mb6_c01206{transform:matrix(0.205756,-0.001235,0.001500,0.249996,0,0);-ms-transform:matrix(0.205756,-0.001235,0.001500,0.249996,0,0);-webkit-transform:matrix(0.205756,-0.001235,0.001500,0.249996,0,0);}
.mdb_c01206{transform:matrix(0.205805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205805,0.000000,0.000000,0.250000,0,0);}
.mfe_c01206{transform:matrix(0.206270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206270,0.000000,0.000000,0.250000,0,0);}
.mb4_c01206{transform:matrix(0.206726,-0.001240,0.001500,0.249996,0,0);-ms-transform:matrix(0.206726,-0.001240,0.001500,0.249996,0,0);-webkit-transform:matrix(0.206726,-0.001240,0.001500,0.249996,0,0);}
.m86_c01206{transform:matrix(0.207391,-0.001244,0.001500,0.249996,0,0);-ms-transform:matrix(0.207391,-0.001244,0.001500,0.249996,0,0);-webkit-transform:matrix(0.207391,-0.001244,0.001500,0.249996,0,0);}
.mb_c01206{transform:matrix(0.207555,-0.002076,0.002500,0.249988,0,0);-ms-transform:matrix(0.207555,-0.002076,0.002500,0.249988,0,0);-webkit-transform:matrix(0.207555,-0.002076,0.002500,0.249988,0,0);}
.m63_c01206{transform:matrix(0.208951,-0.001254,0.001500,0.249996,0,0);-ms-transform:matrix(0.208951,-0.001254,0.001500,0.249996,0,0);-webkit-transform:matrix(0.208951,-0.001254,0.001500,0.249996,0,0);}
.mda_c01206{transform:matrix(0.209355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209355,0.000000,0.000000,0.250000,0,0);}
.mf8_c01206{transform:matrix(0.209635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209635,0.000000,0.000000,0.250000,0,0);}
.mb8_c01206{transform:matrix(0.210576,-0.001263,0.001500,0.249996,0,0);-ms-transform:matrix(0.210576,-0.001263,0.001500,0.249996,0,0);-webkit-transform:matrix(0.210576,-0.001263,0.001500,0.249996,0,0);}
.m59_c01206{transform:matrix(0.211896,-0.001271,0.001500,0.249996,0,0);-ms-transform:matrix(0.211896,-0.001271,0.001500,0.249996,0,0);-webkit-transform:matrix(0.211896,-0.001271,0.001500,0.249996,0,0);}
.m61_c01206{transform:matrix(0.212056,-0.001272,0.001500,0.249996,0,0);-ms-transform:matrix(0.212056,-0.001272,0.001500,0.249996,0,0);-webkit-transform:matrix(0.212056,-0.001272,0.001500,0.249996,0,0);}
.m24_c01206{transform:matrix(0.212499,-0.002125,0.002500,0.249988,0,0);-ms-transform:matrix(0.212499,-0.002125,0.002500,0.249988,0,0);-webkit-transform:matrix(0.212499,-0.002125,0.002500,0.249988,0,0);}
.m2f_c01206{transform:matrix(0.212939,-0.002129,0.002500,0.249988,0,0);-ms-transform:matrix(0.212939,-0.002129,0.002500,0.249988,0,0);-webkit-transform:matrix(0.212939,-0.002129,0.002500,0.249988,0,0);}
.m3c_c01206{transform:matrix(0.213131,-0.001279,0.001500,0.249996,0,0);-ms-transform:matrix(0.213131,-0.001279,0.001500,0.249996,0,0);-webkit-transform:matrix(0.213131,-0.001279,0.001500,0.249996,0,0);}
.mbc_c01206{transform:matrix(0.213690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213690,0.000000,0.000000,0.250000,0,0);}
.m39_c01206{transform:matrix(0.214411,-0.001286,0.001500,0.249996,0,0);-ms-transform:matrix(0.214411,-0.001286,0.001500,0.249996,0,0);-webkit-transform:matrix(0.214411,-0.001286,0.001500,0.249996,0,0);}
.m4_c01206{transform:matrix(0.214619,-0.002146,0.002500,0.249988,0,0);-ms-transform:matrix(0.214619,-0.002146,0.002500,0.249988,0,0);-webkit-transform:matrix(0.214619,-0.002146,0.002500,0.249988,0,0);}
.m15_c01206{transform:matrix(0.214674,-0.002147,0.002500,0.249988,0,0);-ms-transform:matrix(0.214674,-0.002147,0.002500,0.249988,0,0);-webkit-transform:matrix(0.214674,-0.002147,0.002500,0.249988,0,0);}
.ma7_c01206{transform:matrix(0.214851,-0.001289,0.001500,0.249996,0,0);-ms-transform:matrix(0.214851,-0.001289,0.001500,0.249996,0,0);-webkit-transform:matrix(0.214851,-0.001289,0.001500,0.249996,0,0);}
.m8_c01206{transform:matrix(0.215694,-0.002157,0.002500,0.249988,0,0);-ms-transform:matrix(0.215694,-0.002157,0.002500,0.249988,0,0);-webkit-transform:matrix(0.215694,-0.002157,0.002500,0.249988,0,0);}
.m121_c01206{transform:matrix(0.216780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216780,0.000000,0.000000,0.250000,0,0);}
.m30_c01206{transform:matrix(0.216939,-0.002169,0.002500,0.249988,0,0);-ms-transform:matrix(0.216939,-0.002169,0.002500,0.249988,0,0);-webkit-transform:matrix(0.216939,-0.002169,0.002500,0.249988,0,0);}
.m5e_c01206{transform:matrix(0.216946,-0.001302,0.001500,0.249996,0,0);-ms-transform:matrix(0.216946,-0.001302,0.001500,0.249996,0,0);-webkit-transform:matrix(0.216946,-0.001302,0.001500,0.249996,0,0);}
.mac_c01206{transform:matrix(0.217111,-0.001303,0.001500,0.249996,0,0);-ms-transform:matrix(0.217111,-0.001303,0.001500,0.249996,0,0);-webkit-transform:matrix(0.217111,-0.001303,0.001500,0.249996,0,0);}
.mdc_c01206{transform:matrix(0.217615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217615,0.000000,0.000000,0.250000,0,0);}
.m11d_c01206{transform:matrix(0.217620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217620,0.000000,0.000000,0.250000,0,0);}
.m3e_c01206{transform:matrix(0.217766,-0.001307,0.001500,0.249996,0,0);-ms-transform:matrix(0.217766,-0.001307,0.001500,0.249996,0,0);-webkit-transform:matrix(0.217766,-0.001307,0.001500,0.249996,0,0);}
.mff_c01206{transform:matrix(0.217845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217845,0.000000,0.000000,0.250000,0,0);}
.mfc_c01206{transform:matrix(0.218235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218235,0.000000,0.000000,0.250000,0,0);}
.md9_c01206{transform:matrix(0.218280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218280,0.000000,0.000000,0.250000,0,0);}
.mae_c01206{transform:matrix(0.218331,-0.001310,0.001500,0.249996,0,0);-ms-transform:matrix(0.218331,-0.001310,0.001500,0.249996,0,0);-webkit-transform:matrix(0.218331,-0.001310,0.001500,0.249996,0,0);}
.m130_c01206{transform:matrix(0.218913,-0.007012,0.008004,0.249872,0,0);-ms-transform:matrix(0.218913,-0.007012,0.008004,0.249872,0,0);-webkit-transform:matrix(0.218913,-0.007012,0.008004,0.249872,0,0);}
.md0_c01206{transform:matrix(0.219150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219150,0.000000,0.000000,0.250000,0,0);}
.mf5_c01206{transform:matrix(0.219330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219330,0.000000,0.000000,0.250000,0,0);}
.m2_c01206{transform:matrix(0.219810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219810,0.000000,0.000000,0.250000,0,0);}
.m110_c01206{transform:matrix(0.219890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219890,0.000000,0.000000,0.250000,0,0);}
.ma_c01206{transform:matrix(0.220179,-0.002202,0.002500,0.249988,0,0);-ms-transform:matrix(0.220179,-0.002202,0.002500,0.249988,0,0);-webkit-transform:matrix(0.220179,-0.002202,0.002500,0.249988,0,0);}
.m41_c01206{transform:matrix(0.220186,-0.001321,0.001500,0.249996,0,0);-ms-transform:matrix(0.220186,-0.001321,0.001500,0.249996,0,0);-webkit-transform:matrix(0.220186,-0.001321,0.001500,0.249996,0,0);}
.mf4_c01206{transform:matrix(0.220440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220440,0.000000,0.000000,0.250000,0,0);}
.m32_c01206{transform:matrix(0.220764,-0.002208,0.002500,0.249988,0,0);-ms-transform:matrix(0.220764,-0.002208,0.002500,0.249988,0,0);-webkit-transform:matrix(0.220764,-0.002208,0.002500,0.249988,0,0);}
.mb1_c01206{transform:matrix(0.221086,-0.001327,0.001500,0.249996,0,0);-ms-transform:matrix(0.221086,-0.001327,0.001500,0.249996,0,0);-webkit-transform:matrix(0.221086,-0.001327,0.001500,0.249996,0,0);}
.m26_c01206{transform:matrix(0.221444,-0.002214,0.002500,0.249988,0,0);-ms-transform:matrix(0.221444,-0.002214,0.002500,0.249988,0,0);-webkit-transform:matrix(0.221444,-0.002214,0.002500,0.249988,0,0);}
.m8a_c01206{transform:matrix(0.221451,-0.001329,0.001500,0.249996,0,0);-ms-transform:matrix(0.221451,-0.001329,0.001500,0.249996,0,0);-webkit-transform:matrix(0.221451,-0.001329,0.001500,0.249996,0,0);}
.m9f_c01206{transform:matrix(0.221596,-0.001330,0.001500,0.249996,0,0);-ms-transform:matrix(0.221596,-0.001330,0.001500,0.249996,0,0);-webkit-transform:matrix(0.221596,-0.001330,0.001500,0.249996,0,0);}
.m11e_c01206{transform:matrix(0.221680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221680,0.000000,0.000000,0.250000,0,0);}
.m132_c01206{transform:matrix(0.222786,-0.007136,0.008004,0.249872,0,0);-ms-transform:matrix(0.222786,-0.007136,0.008004,0.249872,0,0);-webkit-transform:matrix(0.222786,-0.007136,0.008004,0.249872,0,0);}
.m84_c01206{transform:matrix(0.222796,-0.001337,0.001500,0.249996,0,0);-ms-transform:matrix(0.222796,-0.001337,0.001500,0.249996,0,0);-webkit-transform:matrix(0.222796,-0.001337,0.001500,0.249996,0,0);}
.md2_c01206{transform:matrix(0.223275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223275,0.000000,0.000000,0.250000,0,0);}
.m101_c01206{transform:matrix(0.223730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223730,0.000000,0.000000,0.250000,0,0);}
.m131_c01206{transform:matrix(0.224175,-0.007181,0.008004,0.249872,0,0);-ms-transform:matrix(0.224175,-0.007181,0.008004,0.249872,0,0);-webkit-transform:matrix(0.224175,-0.007181,0.008004,0.249872,0,0);}
.m6_c01206{transform:matrix(0.225749,-0.002257,0.002500,0.249988,0,0);-ms-transform:matrix(0.225749,-0.002257,0.002500,0.249988,0,0);-webkit-transform:matrix(0.225749,-0.002257,0.002500,0.249988,0,0);}
.ma4_c01206{transform:matrix(0.226031,-0.001356,0.001500,0.249996,0,0);-ms-transform:matrix(0.226031,-0.001356,0.001500,0.249996,0,0);-webkit-transform:matrix(0.226031,-0.001356,0.001500,0.249996,0,0);}
.m29_c01206{transform:matrix(0.226564,-0.002266,0.002500,0.249988,0,0);-ms-transform:matrix(0.226564,-0.002266,0.002500,0.249988,0,0);-webkit-transform:matrix(0.226564,-0.002266,0.002500,0.249988,0,0);}
.m38_c01206{transform:matrix(0.226596,-0.001360,0.001500,0.249996,0,0);-ms-transform:matrix(0.226596,-0.001360,0.001500,0.249996,0,0);-webkit-transform:matrix(0.226596,-0.001360,0.001500,0.249996,0,0);}
.m5a_c01206{transform:matrix(0.226811,-0.001361,0.001500,0.249996,0,0);-ms-transform:matrix(0.226811,-0.001361,0.001500,0.249996,0,0);-webkit-transform:matrix(0.226811,-0.001361,0.001500,0.249996,0,0);}
.maf_c01206{transform:matrix(0.227371,-0.001364,0.001500,0.249996,0,0);-ms-transform:matrix(0.227371,-0.001364,0.001500,0.249996,0,0);-webkit-transform:matrix(0.227371,-0.001364,0.001500,0.249996,0,0);}
.mc4_c01206{transform:matrix(0.227430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227430,0.000000,0.000000,0.250000,0,0);}
.mfd_c01206{transform:matrix(0.228010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228010,0.000000,0.000000,0.250000,0,0);}
.md4_c01206{transform:matrix(0.228265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228265,0.000000,0.000000,0.250000,0,0);}
.mf7_c01206{transform:matrix(0.228445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228445,0.000000,0.000000,0.250000,0,0);}
.m77_c01206{transform:matrix(0.228501,-0.001371,0.001500,0.249996,0,0);-ms-transform:matrix(0.228501,-0.001371,0.001500,0.249996,0,0);-webkit-transform:matrix(0.228501,-0.001371,0.001500,0.249996,0,0);}
.m22_c01206{transform:matrix(0.228554,-0.002286,0.002500,0.249988,0,0);-ms-transform:matrix(0.228554,-0.002286,0.002500,0.249988,0,0);-webkit-transform:matrix(0.228554,-0.002286,0.002500,0.249988,0,0);}
.mb0_c01206{transform:matrix(0.228556,-0.001371,0.001500,0.249996,0,0);-ms-transform:matrix(0.228556,-0.001371,0.001500,0.249996,0,0);-webkit-transform:matrix(0.228556,-0.001371,0.001500,0.249996,0,0);}
.mad_c01206{transform:matrix(0.228806,-0.001373,0.001500,0.249996,0,0);-ms-transform:matrix(0.228806,-0.001373,0.001500,0.249996,0,0);-webkit-transform:matrix(0.228806,-0.001373,0.001500,0.249996,0,0);}
.m75_c01206{transform:matrix(0.228816,-0.001373,0.001500,0.249996,0,0);-ms-transform:matrix(0.228816,-0.001373,0.001500,0.249996,0,0);-webkit-transform:matrix(0.228816,-0.001373,0.001500,0.249996,0,0);}
.m16_c01206{transform:matrix(0.229004,-0.002290,0.002500,0.249988,0,0);-ms-transform:matrix(0.229004,-0.002290,0.002500,0.249988,0,0);-webkit-transform:matrix(0.229004,-0.002290,0.002500,0.249988,0,0);}
.m66_c01206{transform:matrix(0.229216,-0.001375,0.001500,0.249996,0,0);-ms-transform:matrix(0.229216,-0.001375,0.001500,0.249996,0,0);-webkit-transform:matrix(0.229216,-0.001375,0.001500,0.249996,0,0);}
.m93_c01206{transform:matrix(0.229586,-0.001378,0.001500,0.249996,0,0);-ms-transform:matrix(0.229586,-0.001378,0.001500,0.249996,0,0);-webkit-transform:matrix(0.229586,-0.001378,0.001500,0.249996,0,0);}
.m4e_c01206{transform:matrix(0.229761,-0.001379,0.001500,0.249996,0,0);-ms-transform:matrix(0.229761,-0.001379,0.001500,0.249996,0,0);-webkit-transform:matrix(0.229761,-0.001379,0.001500,0.249996,0,0);}
.ma1_c01206{transform:matrix(0.229881,-0.001379,0.001500,0.249996,0,0);-ms-transform:matrix(0.229881,-0.001379,0.001500,0.249996,0,0);-webkit-transform:matrix(0.229881,-0.001379,0.001500,0.249996,0,0);}
.m9_c01206{transform:matrix(0.230373,-0.002304,0.002500,0.249988,0,0);-ms-transform:matrix(0.230373,-0.002304,0.002500,0.249988,0,0);-webkit-transform:matrix(0.230373,-0.002304,0.002500,0.249988,0,0);}
.m3f_c01206{transform:matrix(0.230451,-0.001383,0.001500,0.249996,0,0);-ms-transform:matrix(0.230451,-0.001383,0.001500,0.249996,0,0);-webkit-transform:matrix(0.230451,-0.001383,0.001500,0.249996,0,0);}
.m76_c01206{transform:matrix(0.230596,-0.001384,0.001500,0.249996,0,0);-ms-transform:matrix(0.230596,-0.001384,0.001500,0.249996,0,0);-webkit-transform:matrix(0.230596,-0.001384,0.001500,0.249996,0,0);}
.m88_c01206{transform:matrix(0.230796,-0.001385,0.001500,0.249996,0,0);-ms-transform:matrix(0.230796,-0.001385,0.001500,0.249996,0,0);-webkit-transform:matrix(0.230796,-0.001385,0.001500,0.249996,0,0);}
.m49_c01206{transform:matrix(0.230811,-0.001385,0.001500,0.249996,0,0);-ms-transform:matrix(0.230811,-0.001385,0.001500,0.249996,0,0);-webkit-transform:matrix(0.230811,-0.001385,0.001500,0.249996,0,0);}
.m1a_c01206{transform:matrix(0.230883,-0.002309,0.002500,0.249988,0,0);-ms-transform:matrix(0.230883,-0.002309,0.002500,0.249988,0,0);-webkit-transform:matrix(0.230883,-0.002309,0.002500,0.249988,0,0);}
.m120_c01206{transform:matrix(0.231060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231060,0.000000,0.000000,0.250000,0,0);}
.m62_c01206{transform:matrix(0.231336,-0.001388,0.001500,0.249996,0,0);-ms-transform:matrix(0.231336,-0.001388,0.001500,0.249996,0,0);-webkit-transform:matrix(0.231336,-0.001388,0.001500,0.249996,0,0);}
.m45_c01206{transform:matrix(0.231376,-0.001388,0.001500,0.249996,0,0);-ms-transform:matrix(0.231376,-0.001388,0.001500,0.249996,0,0);-webkit-transform:matrix(0.231376,-0.001388,0.001500,0.249996,0,0);}
.mf_c01206{transform:matrix(0.231428,-0.002314,0.002500,0.249988,0,0);-ms-transform:matrix(0.231428,-0.002314,0.002500,0.249988,0,0);-webkit-transform:matrix(0.231428,-0.002314,0.002500,0.249988,0,0);}
.mab_c01206{transform:matrix(0.231761,-0.001391,0.001500,0.249996,0,0);-ms-transform:matrix(0.231761,-0.001391,0.001500,0.249996,0,0);-webkit-transform:matrix(0.231761,-0.001391,0.001500,0.249996,0,0);}
.m11b_c01206{transform:matrix(0.231920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231920,0.000000,0.000000,0.250000,0,0);}
.m9b_c01206{transform:matrix(0.232331,-0.001394,0.001500,0.249996,0,0);-ms-transform:matrix(0.232331,-0.001394,0.001500,0.249996,0,0);-webkit-transform:matrix(0.232331,-0.001394,0.001500,0.249996,0,0);}
.m4c_c01206{transform:matrix(0.232491,-0.001395,0.001500,0.249996,0,0);-ms-transform:matrix(0.232491,-0.001395,0.001500,0.249996,0,0);-webkit-transform:matrix(0.232491,-0.001395,0.001500,0.249996,0,0);}
.m14_c01206{transform:matrix(0.232773,-0.002328,0.002500,0.249988,0,0);-ms-transform:matrix(0.232773,-0.002328,0.002500,0.249988,0,0);-webkit-transform:matrix(0.232773,-0.002328,0.002500,0.249988,0,0);}
.m82_c01206{transform:matrix(0.232981,-0.001398,0.001500,0.249996,0,0);-ms-transform:matrix(0.232981,-0.001398,0.001500,0.249996,0,0);-webkit-transform:matrix(0.232981,-0.001398,0.001500,0.249996,0,0);}
.m8f_c01206{transform:matrix(0.233566,-0.001401,0.001500,0.249996,0,0);-ms-transform:matrix(0.233566,-0.001401,0.001500,0.249996,0,0);-webkit-transform:matrix(0.233566,-0.001401,0.001500,0.249996,0,0);}
.ma9_c01206{transform:matrix(0.233756,-0.001403,0.001500,0.249996,0,0);-ms-transform:matrix(0.233756,-0.001403,0.001500,0.249996,0,0);-webkit-transform:matrix(0.233756,-0.001403,0.001500,0.249996,0,0);}
.m28_c01206{transform:matrix(0.233803,-0.002338,0.002500,0.249988,0,0);-ms-transform:matrix(0.233803,-0.002338,0.002500,0.249988,0,0);-webkit-transform:matrix(0.233803,-0.002338,0.002500,0.249988,0,0);}
.m33_c01206{transform:matrix(0.233818,-0.002338,0.002500,0.249988,0,0);-ms-transform:matrix(0.233818,-0.002338,0.002500,0.249988,0,0);-webkit-transform:matrix(0.233818,-0.002338,0.002500,0.249988,0,0);}
.mf6_c01206{transform:matrix(0.234080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234080,0.000000,0.000000,0.250000,0,0);}
.m9c_c01206{transform:matrix(0.234081,-0.001404,0.001500,0.249996,0,0);-ms-transform:matrix(0.234081,-0.001404,0.001500,0.249996,0,0);-webkit-transform:matrix(0.234081,-0.001404,0.001500,0.249996,0,0);}
.m46_c01206{transform:matrix(0.234091,-0.001405,0.001500,0.249996,0,0);-ms-transform:matrix(0.234091,-0.001405,0.001500,0.249996,0,0);-webkit-transform:matrix(0.234091,-0.001405,0.001500,0.249996,0,0);}
.m73_c01206{transform:matrix(0.234616,-0.001408,0.001500,0.249996,0,0);-ms-transform:matrix(0.234616,-0.001408,0.001500,0.249996,0,0);-webkit-transform:matrix(0.234616,-0.001408,0.001500,0.249996,0,0);}
.m9e_c01206{transform:matrix(0.235406,-0.001412,0.001500,0.249996,0,0);-ms-transform:matrix(0.235406,-0.001412,0.001500,0.249996,0,0);-webkit-transform:matrix(0.235406,-0.001412,0.001500,0.249996,0,0);}
.m17_c01206{transform:matrix(0.235453,-0.002355,0.002500,0.249988,0,0);-ms-transform:matrix(0.235453,-0.002355,0.002500,0.249988,0,0);-webkit-transform:matrix(0.235453,-0.002355,0.002500,0.249988,0,0);}
.m5c_c01206{transform:matrix(0.235456,-0.001413,0.001500,0.249996,0,0);-ms-transform:matrix(0.235456,-0.001413,0.001500,0.249996,0,0);-webkit-transform:matrix(0.235456,-0.001413,0.001500,0.249996,0,0);}
.mcf_c01206{transform:matrix(0.235475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235475,0.000000,0.000000,0.250000,0,0);}
.mfa_c01206{transform:matrix(0.235505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235505,0.000000,0.000000,0.250000,0,0);}
.mf9_c01206{transform:matrix(0.235860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235860,0.000000,0.000000,0.250000,0,0);}
.m47_c01206{transform:matrix(0.236361,-0.001418,0.001500,0.249996,0,0);-ms-transform:matrix(0.236361,-0.001418,0.001500,0.249996,0,0);-webkit-transform:matrix(0.236361,-0.001418,0.001500,0.249996,0,0);}
.m37_c01206{transform:matrix(0.236983,-0.002370,0.002500,0.249988,0,0);-ms-transform:matrix(0.236983,-0.002370,0.002500,0.249988,0,0);-webkit-transform:matrix(0.236983,-0.002370,0.002500,0.249988,0,0);}
.md1_c01206{transform:matrix(0.238055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238055,0.000000,0.000000,0.250000,0,0);}
.m5f_c01206{transform:matrix(0.238421,-0.001431,0.001500,0.249996,0,0);-ms-transform:matrix(0.238421,-0.001431,0.001500,0.249996,0,0);-webkit-transform:matrix(0.238421,-0.001431,0.001500,0.249996,0,0);}
.mc0_c01206{transform:matrix(0.238545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238545,0.000000,0.000000,0.250000,0,0);}
.m12_c01206{transform:matrix(0.238748,-0.002387,0.002500,0.249988,0,0);-ms-transform:matrix(0.238748,-0.002387,0.002500,0.249988,0,0);-webkit-transform:matrix(0.238748,-0.002387,0.002500,0.249988,0,0);}
.m8e_c01206{transform:matrix(0.238876,-0.001433,0.001500,0.249996,0,0);-ms-transform:matrix(0.238876,-0.001433,0.001500,0.249996,0,0);-webkit-transform:matrix(0.238876,-0.001433,0.001500,0.249996,0,0);}
.m44_c01206{transform:matrix(0.239266,-0.001436,0.001500,0.249996,0,0);-ms-transform:matrix(0.239266,-0.001436,0.001500,0.249996,0,0);-webkit-transform:matrix(0.239266,-0.001436,0.001500,0.249996,0,0);}
.ma6_c01206{transform:matrix(0.239376,-0.001436,0.001500,0.249996,0,0);-ms-transform:matrix(0.239376,-0.001436,0.001500,0.249996,0,0);-webkit-transform:matrix(0.239376,-0.001436,0.001500,0.249996,0,0);}
.ma5_c01206{transform:matrix(0.239476,-0.001437,0.001500,0.249996,0,0);-ms-transform:matrix(0.239476,-0.001437,0.001500,0.249996,0,0);-webkit-transform:matrix(0.239476,-0.001437,0.001500,0.249996,0,0);}
.m78_c01206{transform:matrix(0.239591,-0.001438,0.001500,0.249996,0,0);-ms-transform:matrix(0.239591,-0.001438,0.001500,0.249996,0,0);-webkit-transform:matrix(0.239591,-0.001438,0.001500,0.249996,0,0);}
.m10_c01206{transform:matrix(0.239878,-0.002399,0.002500,0.249988,0,0);-ms-transform:matrix(0.239878,-0.002399,0.002500,0.249988,0,0);-webkit-transform:matrix(0.239878,-0.002399,0.002500,0.249988,0,0);}
.me6_c01206{transform:matrix(0.239910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239910,0.000000,0.000000,0.250000,0,0);}
.m89_c01206{transform:matrix(0.240551,-0.001443,0.001500,0.249996,0,0);-ms-transform:matrix(0.240551,-0.001443,0.001500,0.249996,0,0);-webkit-transform:matrix(0.240551,-0.001443,0.001500,0.249996,0,0);}
.m36_c01206{transform:matrix(0.240568,-0.002406,0.002500,0.249988,0,0);-ms-transform:matrix(0.240568,-0.002406,0.002500,0.249988,0,0);-webkit-transform:matrix(0.240568,-0.002406,0.002500,0.249988,0,0);}
.m27_c01206{transform:matrix(0.240848,-0.002408,0.002500,0.249988,0,0);-ms-transform:matrix(0.240848,-0.002408,0.002500,0.249988,0,0);-webkit-transform:matrix(0.240848,-0.002408,0.002500,0.249988,0,0);}
.m10e_c01206{transform:matrix(0.241320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241320,0.000000,0.000000,0.250000,0,0);}
.m71_c01206{transform:matrix(0.241456,-0.001449,0.001500,0.249996,0,0);-ms-transform:matrix(0.241456,-0.001449,0.001500,0.249996,0,0);-webkit-transform:matrix(0.241456,-0.001449,0.001500,0.249996,0,0);}
.m9d_c01206{transform:matrix(0.242176,-0.001453,0.001500,0.249996,0,0);-ms-transform:matrix(0.242176,-0.001453,0.001500,0.249996,0,0);-webkit-transform:matrix(0.242176,-0.001453,0.001500,0.249996,0,0);}
.m4a_c01206{transform:matrix(0.242266,-0.001454,0.001500,0.249996,0,0);-ms-transform:matrix(0.242266,-0.001454,0.001500,0.249996,0,0);-webkit-transform:matrix(0.242266,-0.001454,0.001500,0.249996,0,0);}
.m8c_c01206{transform:matrix(0.242906,-0.001457,0.001500,0.249996,0,0);-ms-transform:matrix(0.242906,-0.001457,0.001500,0.249996,0,0);-webkit-transform:matrix(0.242906,-0.001457,0.001500,0.249996,0,0);}
.m57_c01206{transform:matrix(0.243371,-0.001460,0.001500,0.249996,0,0);-ms-transform:matrix(0.243371,-0.001460,0.001500,0.249996,0,0);-webkit-transform:matrix(0.243371,-0.001460,0.001500,0.249996,0,0);}
.mcc_c01206{transform:matrix(0.243375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243375,0.000000,0.000000,0.250000,0,0);}
.m3a_c01206{transform:matrix(0.243576,-0.001461,0.001500,0.249996,0,0);-ms-transform:matrix(0.243576,-0.001461,0.001500,0.249996,0,0);-webkit-transform:matrix(0.243576,-0.001461,0.001500,0.249996,0,0);}
.m18_c01206{transform:matrix(0.243688,-0.002437,0.002500,0.249988,0,0);-ms-transform:matrix(0.243688,-0.002437,0.002500,0.249988,0,0);-webkit-transform:matrix(0.243688,-0.002437,0.002500,0.249988,0,0);}
.m3_c01206{transform:matrix(0.244378,-0.002444,0.002500,0.249988,0,0);-ms-transform:matrix(0.244378,-0.002444,0.002500,0.249988,0,0);-webkit-transform:matrix(0.244378,-0.002444,0.002500,0.249988,0,0);}
.m65_c01206{transform:matrix(0.245221,-0.001471,0.001500,0.249996,0,0);-ms-transform:matrix(0.245221,-0.001471,0.001500,0.249996,0,0);-webkit-transform:matrix(0.245221,-0.001471,0.001500,0.249996,0,0);}
.m3b_c01206{transform:matrix(0.245441,-0.001473,0.001500,0.249996,0,0);-ms-transform:matrix(0.245441,-0.001473,0.001500,0.249996,0,0);-webkit-transform:matrix(0.245441,-0.001473,0.001500,0.249996,0,0);}
.mbb_c01206{transform:matrix(0.245460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245460,0.000000,0.000000,0.250000,0,0);}
.m1f_c01206{transform:matrix(0.245463,-0.002455,0.002500,0.249988,0,0);-ms-transform:matrix(0.245463,-0.002455,0.002500,0.249988,0,0);-webkit-transform:matrix(0.245463,-0.002455,0.002500,0.249988,0,0);}
.m43_c01206{transform:matrix(0.245721,-0.001474,0.001500,0.249996,0,0);-ms-transform:matrix(0.245721,-0.001474,0.001500,0.249996,0,0);-webkit-transform:matrix(0.245721,-0.001474,0.001500,0.249996,0,0);}
.mcb_c01206{transform:matrix(0.245805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245805,0.000000,0.000000,0.250000,0,0);}
.mdf_c01206{transform:matrix(0.247600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247600,0.000000,0.000000,0.250000,0,0);}
.m80_c01206{transform:matrix(0.247611,-0.001486,0.001500,0.249996,0,0);-ms-transform:matrix(0.247611,-0.001486,0.001500,0.249996,0,0);-webkit-transform:matrix(0.247611,-0.001486,0.001500,0.249996,0,0);}
.m4d_c01206{transform:matrix(0.248316,-0.001490,0.001500,0.249996,0,0);-ms-transform:matrix(0.248316,-0.001490,0.001500,0.249996,0,0);-webkit-transform:matrix(0.248316,-0.001490,0.001500,0.249996,0,0);}
.mc7_c01206{transform:matrix(0.249660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249660,0.000000,0.000000,0.250000,0,0);}
.m10c_c01206{transform:matrix(0.249975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249975,0.000000,0.000000,0.250000,0,0);}
.m124_c01206{transform:matrix(0.250215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250215,0.000000,0.000000,0.250000,0,0);}
.m91_c01206{transform:matrix(0.250520,-0.001503,0.001500,0.249996,0,0);-ms-transform:matrix(0.250520,-0.001503,0.001500,0.249996,0,0);-webkit-transform:matrix(0.250520,-0.001503,0.001500,0.249996,0,0);}
.me4_c01206{transform:matrix(0.250660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250660,0.000000,0.000000,0.250000,0,0);}
.m112_c01206{transform:matrix(0.250850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250850,0.000000,0.000000,0.250000,0,0);}
.m11f_c01206{transform:matrix(0.250900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250900,0.000000,0.000000,0.250000,0,0);}
.me8_c01206{transform:matrix(0.251010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251010,0.000000,0.000000,0.250000,0,0);}
.ma3_c01206{transform:matrix(0.251020,-0.001506,0.001500,0.249996,0,0);-ms-transform:matrix(0.251020,-0.001506,0.001500,0.249996,0,0);-webkit-transform:matrix(0.251020,-0.001506,0.001500,0.249996,0,0);}
.m8d_c01206{transform:matrix(0.251175,-0.001507,0.001500,0.249996,0,0);-ms-transform:matrix(0.251175,-0.001507,0.001500,0.249996,0,0);-webkit-transform:matrix(0.251175,-0.001507,0.001500,0.249996,0,0);}
.m1e_c01206{transform:matrix(0.251857,-0.002519,0.002500,0.249988,0,0);-ms-transform:matrix(0.251857,-0.002519,0.002500,0.249988,0,0);-webkit-transform:matrix(0.251857,-0.002519,0.002500,0.249988,0,0);}
.m69_c01206{transform:matrix(0.252000,-0.001512,0.001500,0.249996,0,0);-ms-transform:matrix(0.252000,-0.001512,0.001500,0.249996,0,0);-webkit-transform:matrix(0.252000,-0.001512,0.001500,0.249996,0,0);}
.me1_c01206{transform:matrix(0.252115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252115,0.000000,0.000000,0.250000,0,0);}
.m0_c01206{transform:matrix(0.252605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252605,0.000000,0.000000,0.250000,0,0);}
.m3d_c01206{transform:matrix(0.252705,-0.001516,0.001500,0.249996,0,0);-ms-transform:matrix(0.252705,-0.001516,0.001500,0.249996,0,0);-webkit-transform:matrix(0.252705,-0.001516,0.001500,0.249996,0,0);}
.mc_c01206{transform:matrix(0.252712,-0.002527,0.002500,0.249988,0,0);-ms-transform:matrix(0.252712,-0.002527,0.002500,0.249988,0,0);-webkit-transform:matrix(0.252712,-0.002527,0.002500,0.249988,0,0);}
.m51_c01206{transform:matrix(0.253030,-0.001518,0.001500,0.249996,0,0);-ms-transform:matrix(0.253030,-0.001518,0.001500,0.249996,0,0);-webkit-transform:matrix(0.253030,-0.001518,0.001500,0.249996,0,0);}
.md7_c01206{transform:matrix(0.253115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253115,0.000000,0.000000,0.250000,0,0);}
.m6e_c01206{transform:matrix(0.253440,-0.001521,0.001500,0.249996,0,0);-ms-transform:matrix(0.253440,-0.001521,0.001500,0.249996,0,0);-webkit-transform:matrix(0.253440,-0.001521,0.001500,0.249996,0,0);}
.m6a_c01206{transform:matrix(0.253490,-0.001521,0.001500,0.249996,0,0);-ms-transform:matrix(0.253490,-0.001521,0.001500,0.249996,0,0);-webkit-transform:matrix(0.253490,-0.001521,0.001500,0.249996,0,0);}
.m25_c01206{transform:matrix(0.253582,-0.002536,0.002500,0.249988,0,0);-ms-transform:matrix(0.253582,-0.002536,0.002500,0.249988,0,0);-webkit-transform:matrix(0.253582,-0.002536,0.002500,0.249988,0,0);}
.m7d_c01206{transform:matrix(0.253585,-0.001522,0.001500,0.249996,0,0);-ms-transform:matrix(0.253585,-0.001522,0.001500,0.249996,0,0);-webkit-transform:matrix(0.253585,-0.001522,0.001500,0.249996,0,0);}
.m68_c01206{transform:matrix(0.253615,-0.001522,0.001500,0.249996,0,0);-ms-transform:matrix(0.253615,-0.001522,0.001500,0.249996,0,0);-webkit-transform:matrix(0.253615,-0.001522,0.001500,0.249996,0,0);}
.m4b_c01206{transform:matrix(0.253680,-0.001522,0.001500,0.249996,0,0);-ms-transform:matrix(0.253680,-0.001522,0.001500,0.249996,0,0);-webkit-transform:matrix(0.253680,-0.001522,0.001500,0.249996,0,0);}
.m7f_c01206{transform:matrix(0.254250,-0.001526,0.001500,0.249996,0,0);-ms-transform:matrix(0.254250,-0.001526,0.001500,0.249996,0,0);-webkit-transform:matrix(0.254250,-0.001526,0.001500,0.249996,0,0);}
.m10d_c01206{transform:matrix(0.254400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254400,0.000000,0.000000,0.250000,0,0);}
.m8b_c01206{transform:matrix(0.254845,-0.001529,0.001500,0.249996,0,0);-ms-transform:matrix(0.254845,-0.001529,0.001500,0.249996,0,0);-webkit-transform:matrix(0.254845,-0.001529,0.001500,0.249996,0,0);}
.m40_c01206{transform:matrix(0.254855,-0.001529,0.001500,0.249996,0,0);-ms-transform:matrix(0.254855,-0.001529,0.001500,0.249996,0,0);-webkit-transform:matrix(0.254855,-0.001529,0.001500,0.249996,0,0);}
.md8_c01206{transform:matrix(0.254895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254895,0.000000,0.000000,0.250000,0,0);}
.m48_c01206{transform:matrix(0.255145,-0.001531,0.001500,0.249996,0,0);-ms-transform:matrix(0.255145,-0.001531,0.001500,0.249996,0,0);-webkit-transform:matrix(0.255145,-0.001531,0.001500,0.249996,0,0);}
.m10f_c01206{transform:matrix(0.255410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255410,0.000000,0.000000,0.250000,0,0);}
.m6f_c01206{transform:matrix(0.255515,-0.001533,0.001500,0.249996,0,0);-ms-transform:matrix(0.255515,-0.001533,0.001500,0.249996,0,0);-webkit-transform:matrix(0.255515,-0.001533,0.001500,0.249996,0,0);}
.mc6_c01206{transform:matrix(0.255715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255715,0.000000,0.000000,0.250000,0,0);}
.m6d_c01206{transform:matrix(0.255870,-0.001535,0.001500,0.249996,0,0);-ms-transform:matrix(0.255870,-0.001535,0.001500,0.249996,0,0);-webkit-transform:matrix(0.255870,-0.001535,0.001500,0.249996,0,0);}
.m122_c01206{transform:matrix(0.255880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255880,0.000000,0.000000,0.250000,0,0);}
.m53_c01206{transform:matrix(0.255930,-0.001536,0.001500,0.249996,0,0);-ms-transform:matrix(0.255930,-0.001536,0.001500,0.249996,0,0);-webkit-transform:matrix(0.255930,-0.001536,0.001500,0.249996,0,0);}
.m1c_c01206{transform:matrix(0.256132,-0.002561,0.002500,0.249988,0,0);-ms-transform:matrix(0.256132,-0.002561,0.002500,0.249988,0,0);-webkit-transform:matrix(0.256132,-0.002561,0.002500,0.249988,0,0);}
.mc5_c01206{transform:matrix(0.256150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256150,0.000000,0.000000,0.250000,0,0);}
.m12f_c01206{transform:matrix(0.256329,-0.008211,0.008004,0.249872,0,0);-ms-transform:matrix(0.256329,-0.008211,0.008004,0.249872,0,0);-webkit-transform:matrix(0.256329,-0.008211,0.008004,0.249872,0,0);}
.m5_c01206{transform:matrix(0.256472,-0.002565,0.002500,0.249988,0,0);-ms-transform:matrix(0.256472,-0.002565,0.002500,0.249988,0,0);-webkit-transform:matrix(0.256472,-0.002565,0.002500,0.249988,0,0);}
.m6c_c01206{transform:matrix(0.256710,-0.001540,0.001500,0.249996,0,0);-ms-transform:matrix(0.256710,-0.001540,0.001500,0.249996,0,0);-webkit-transform:matrix(0.256710,-0.001540,0.001500,0.249996,0,0);}
.m99_c01206{transform:matrix(0.257205,-0.001543,0.001500,0.249996,0,0);-ms-transform:matrix(0.257205,-0.001543,0.001500,0.249996,0,0);-webkit-transform:matrix(0.257205,-0.001543,0.001500,0.249996,0,0);}
.m2a_c01206{transform:matrix(0.257587,-0.002576,0.002500,0.249988,0,0);-ms-transform:matrix(0.257587,-0.002576,0.002500,0.249988,0,0);-webkit-transform:matrix(0.257587,-0.002576,0.002500,0.249988,0,0);}
.m7a_c01206{transform:matrix(0.257725,-0.001546,0.001500,0.249996,0,0);-ms-transform:matrix(0.257725,-0.001546,0.001500,0.249996,0,0);-webkit-transform:matrix(0.257725,-0.001546,0.001500,0.249996,0,0);}
.m9a_c01206{transform:matrix(0.257980,-0.001548,0.001500,0.249996,0,0);-ms-transform:matrix(0.257980,-0.001548,0.001500,0.249996,0,0);-webkit-transform:matrix(0.257980,-0.001548,0.001500,0.249996,0,0);}
.ma0_c01206{transform:matrix(0.258210,-0.001549,0.001500,0.249996,0,0);-ms-transform:matrix(0.258210,-0.001549,0.001500,0.249996,0,0);-webkit-transform:matrix(0.258210,-0.001549,0.001500,0.249996,0,0);}
.m2b_c01206{transform:matrix(0.258432,-0.002584,0.002500,0.249988,0,0);-ms-transform:matrix(0.258432,-0.002584,0.002500,0.249988,0,0);-webkit-transform:matrix(0.258432,-0.002584,0.002500,0.249988,0,0);}
.m7c_c01206{transform:matrix(0.258585,-0.001552,0.001500,0.249996,0,0);-ms-transform:matrix(0.258585,-0.001552,0.001500,0.249996,0,0);-webkit-transform:matrix(0.258585,-0.001552,0.001500,0.249996,0,0);}
.mbd_c01206{transform:matrix(0.259155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259155,0.000000,0.000000,0.250000,0,0);}
.m90_c01206{transform:matrix(0.260190,-0.001561,0.001500,0.249996,0,0);-ms-transform:matrix(0.260190,-0.001561,0.001500,0.249996,0,0);-webkit-transform:matrix(0.260190,-0.001561,0.001500,0.249996,0,0);}
.m7_c01206{transform:matrix(0.260592,-0.002606,0.002500,0.249988,0,0);-ms-transform:matrix(0.260592,-0.002606,0.002500,0.249988,0,0);-webkit-transform:matrix(0.260592,-0.002606,0.002500,0.249988,0,0);}
.m96_c01206{transform:matrix(0.261125,-0.001567,0.001500,0.249996,0,0);-ms-transform:matrix(0.261125,-0.001567,0.001500,0.249996,0,0);-webkit-transform:matrix(0.261125,-0.001567,0.001500,0.249996,0,0);}
.ma2_c01206{transform:matrix(0.261595,-0.001570,0.001500,0.249996,0,0);-ms-transform:matrix(0.261595,-0.001570,0.001500,0.249996,0,0);-webkit-transform:matrix(0.261595,-0.001570,0.001500,0.249996,0,0);}
.m83_c01206{transform:matrix(0.262250,-0.001574,0.001500,0.249996,0,0);-ms-transform:matrix(0.262250,-0.001574,0.001500,0.249996,0,0);-webkit-transform:matrix(0.262250,-0.001574,0.001500,0.249996,0,0);}
.m87_c01206{transform:matrix(0.262760,-0.001577,0.001500,0.249996,0,0);-ms-transform:matrix(0.262760,-0.001577,0.001500,0.249996,0,0);-webkit-transform:matrix(0.262760,-0.001577,0.001500,0.249996,0,0);}
.m54_c01206{transform:matrix(0.262780,-0.001577,0.001500,0.249996,0,0);-ms-transform:matrix(0.262780,-0.001577,0.001500,0.249996,0,0);-webkit-transform:matrix(0.262780,-0.001577,0.001500,0.249996,0,0);}
.m11c_c01206{transform:matrix(0.263215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263215,0.000000,0.000000,0.250000,0,0);}
.mc9_c01206{transform:matrix(0.264435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264435,0.000000,0.000000,0.250000,0,0);}
.me3_c01206{transform:matrix(0.264855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264855,0.000000,0.000000,0.250000,0,0);}
.m1d_c01206{transform:matrix(0.264962,-0.002650,0.002500,0.249988,0,0);-ms-transform:matrix(0.264962,-0.002650,0.002500,0.249988,0,0);-webkit-transform:matrix(0.264962,-0.002650,0.002500,0.249988,0,0);}
.m35_c01206{transform:matrix(0.265157,-0.002652,0.002500,0.249988,0,0);-ms-transform:matrix(0.265157,-0.002652,0.002500,0.249988,0,0);-webkit-transform:matrix(0.265157,-0.002652,0.002500,0.249988,0,0);}
.m94_c01206{transform:matrix(0.265880,-0.001595,0.001500,0.249996,0,0);-ms-transform:matrix(0.265880,-0.001595,0.001500,0.249996,0,0);-webkit-transform:matrix(0.265880,-0.001595,0.001500,0.249996,0,0);}
.m81_c01206{transform:matrix(0.266475,-0.001599,0.001500,0.249996,0,0);-ms-transform:matrix(0.266475,-0.001599,0.001500,0.249996,0,0);-webkit-transform:matrix(0.266475,-0.001599,0.001500,0.249996,0,0);}
.m125_c01206{transform:matrix(0.266825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266825,0.000000,0.000000,0.250000,0,0);}
.me5_c01206{transform:matrix(0.267395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267395,0.000000,0.000000,0.250000,0,0);}
.m12b_c01206{transform:matrix(0.267915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267915,0.000000,0.000000,0.250000,0,0);}
.m97_c01206{transform:matrix(0.268470,-0.001611,0.001500,0.249996,0,0);-ms-transform:matrix(0.268470,-0.001611,0.001500,0.249996,0,0);-webkit-transform:matrix(0.268470,-0.001611,0.001500,0.249996,0,0);}
.mcd_c01206{transform:matrix(0.268550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268550,0.000000,0.000000,0.250000,0,0);}
.mb2_c01206{transform:matrix(0.269905,-0.001619,0.001500,0.249996,0,0);-ms-transform:matrix(0.269905,-0.001619,0.001500,0.249996,0,0);-webkit-transform:matrix(0.269905,-0.001619,0.001500,0.249996,0,0);}
.m50_c01206{transform:matrix(0.270220,-0.001621,0.001500,0.249996,0,0);-ms-transform:matrix(0.270220,-0.001621,0.001500,0.249996,0,0);-webkit-transform:matrix(0.270220,-0.001621,0.001500,0.249996,0,0);}
.mc8_c01206{transform:matrix(0.270665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270665,0.000000,0.000000,0.250000,0,0);}
.m95_c01206{transform:matrix(0.271620,-0.001630,0.001500,0.249996,0,0);-ms-transform:matrix(0.271620,-0.001630,0.001500,0.249996,0,0);-webkit-transform:matrix(0.271620,-0.001630,0.001500,0.249996,0,0);}
.m7e_c01206{transform:matrix(0.271940,-0.001632,0.001500,0.249996,0,0);-ms-transform:matrix(0.271940,-0.001632,0.001500,0.249996,0,0);-webkit-transform:matrix(0.271940,-0.001632,0.001500,0.249996,0,0);}
.m98_c01206{transform:matrix(0.272290,-0.001634,0.001500,0.249996,0,0);-ms-transform:matrix(0.272290,-0.001634,0.001500,0.249996,0,0);-webkit-transform:matrix(0.272290,-0.001634,0.001500,0.249996,0,0);}
.m7b_c01206{transform:matrix(0.272400,-0.001634,0.001500,0.249996,0,0);-ms-transform:matrix(0.272400,-0.001634,0.001500,0.249996,0,0);-webkit-transform:matrix(0.272400,-0.001634,0.001500,0.249996,0,0);}
.m52_c01206{transform:matrix(0.274560,-0.001647,0.001500,0.249996,0,0);-ms-transform:matrix(0.274560,-0.001647,0.001500,0.249996,0,0);-webkit-transform:matrix(0.274560,-0.001647,0.001500,0.249996,0,0);}
.m56_c01206{transform:matrix(0.274750,-0.001649,0.001500,0.249996,0,0);-ms-transform:matrix(0.274750,-0.001649,0.001500,0.249996,0,0);-webkit-transform:matrix(0.274750,-0.001649,0.001500,0.249996,0,0);}
.me2_c01206{transform:matrix(0.274905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274905,0.000000,0.000000,0.250000,0,0);}
.mc1_c01206{transform:matrix(0.275775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275775,0.000000,0.000000,0.250000,0,0);}
.m19_c01206{transform:matrix(0.276371,-0.002764,0.002500,0.249988,0,0);-ms-transform:matrix(0.276371,-0.002764,0.002500,0.249988,0,0);-webkit-transform:matrix(0.276371,-0.002764,0.002500,0.249988,0,0);}
.m128_c01206{transform:matrix(0.276580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276580,0.000000,0.000000,0.250000,0,0);}
.m92_c01206{transform:matrix(0.277250,-0.001664,0.001500,0.249996,0,0);-ms-transform:matrix(0.277250,-0.001664,0.001500,0.249996,0,0);-webkit-transform:matrix(0.277250,-0.001664,0.001500,0.249996,0,0);}
.m129_c01206{transform:matrix(0.277425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277425,0.000000,0.000000,0.250000,0,0);}
.m1b_c01206{transform:matrix(0.277716,-0.002777,0.002500,0.249988,0,0);-ms-transform:matrix(0.277716,-0.002777,0.002500,0.249988,0,0);-webkit-transform:matrix(0.277716,-0.002777,0.002500,0.249988,0,0);}
.m55_c01206{transform:matrix(0.278660,-0.001672,0.001500,0.249996,0,0);-ms-transform:matrix(0.278660,-0.001672,0.001500,0.249996,0,0);-webkit-transform:matrix(0.278660,-0.001672,0.001500,0.249996,0,0);}
.m58_c01206{transform:matrix(0.278975,-0.001674,0.001500,0.249996,0,0);-ms-transform:matrix(0.278975,-0.001674,0.001500,0.249996,0,0);-webkit-transform:matrix(0.278975,-0.001674,0.001500,0.249996,0,0);}
.m21_c01206{transform:matrix(0.279796,-0.002798,0.002500,0.249988,0,0);-ms-transform:matrix(0.279796,-0.002798,0.002500,0.249988,0,0);-webkit-transform:matrix(0.279796,-0.002798,0.002500,0.249988,0,0);}
.m102_c01206{transform:matrix(0.279865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279865,0.000000,0.000000,0.250000,0,0);}
.m4f_c01206{transform:matrix(0.280050,-0.001680,0.001500,0.249996,0,0);-ms-transform:matrix(0.280050,-0.001680,0.001500,0.249996,0,0);-webkit-transform:matrix(0.280050,-0.001680,0.001500,0.249996,0,0);}
.m126_c01206{transform:matrix(0.280125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280125,0.000000,0.000000,0.250000,0,0);}
.m127_c01206{transform:matrix(0.280450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280450,0.000000,0.000000,0.250000,0,0);}
.mbe_c01206{transform:matrix(0.280960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280960,0.000000,0.000000,0.250000,0,0);}
.me7_c01206{transform:matrix(0.281125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281125,0.000000,0.000000,0.250000,0,0);}
.m12a_c01206{transform:matrix(0.281135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281135,0.000000,0.000000,0.250000,0,0);}
.mca_c01206{transform:matrix(0.281260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281260,0.000000,0.000000,0.250000,0,0);}
.m20_c01206{transform:matrix(0.281801,-0.002818,0.002500,0.249988,0,0);-ms-transform:matrix(0.281801,-0.002818,0.002500,0.249988,0,0);-webkit-transform:matrix(0.281801,-0.002818,0.002500,0.249988,0,0);}
.m2c_c01206{transform:matrix(0.282456,-0.002825,0.002500,0.249988,0,0);-ms-transform:matrix(0.282456,-0.002825,0.002500,0.249988,0,0);-webkit-transform:matrix(0.282456,-0.002825,0.002500,0.249988,0,0);}
.m111_c01206{transform:matrix(0.284095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284095,0.000000,0.000000,0.250000,0,0);}
.m85_c01206{transform:matrix(0.285960,-0.001716,0.001500,0.249996,0,0);-ms-transform:matrix(0.285960,-0.001716,0.001500,0.249996,0,0);-webkit-transform:matrix(0.285960,-0.001716,0.001500,0.249996,0,0);}
.mbf_c01206{transform:matrix(0.286755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286755,0.000000,0.000000,0.250000,0,0);}
.mc3_c01206{transform:matrix(0.287075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287075,0.000000,0.000000,0.250000,0,0);}
.md_c01206{transform:matrix(0.287311,-0.002873,0.002500,0.249988,0,0);-ms-transform:matrix(0.287311,-0.002873,0.002500,0.249988,0,0);-webkit-transform:matrix(0.287311,-0.002873,0.002500,0.249988,0,0);}
.m116_c01206{transform:matrix(0.297555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297555,0.000000,0.000000,0.250000,0,0);}
.m42_c01206{transform:matrix(0.299620,-0.001798,0.001500,0.249996,0,0);-ms-transform:matrix(0.299620,-0.001798,0.001500,0.249996,0,0);-webkit-transform:matrix(0.299620,-0.001798,0.001500,0.249996,0,0);}
.m1_c01206{transform:matrix(0.311005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311005,0.000000,0.000000,0.250000,0,0);}
.m34_c01206{transform:matrix(0.323009,-0.003230,0.002500,0.249988,0,0);-ms-transform:matrix(0.323009,-0.003230,0.002500,0.249988,0,0);-webkit-transform:matrix(0.323009,-0.003230,0.002500,0.249988,0,0);}
.m123_c01206{transform:matrix(0.327350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327350,0.000000,0.000000,0.250000,0,0);}
.mc2_c01206{transform:matrix(0.337520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337520,0.000000,0.000000,0.250000,0,0);}
.m10b_c01206{transform:matrix(0.356050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356050,0.000000,0.000000,0.250000,0,0);}
.mce_c01206{transform:matrix(0.409830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409830,0.000000,0.000000,0.250000,0,0);}
.md6_c01206{transform:matrix(0.480270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480270,0.000000,0.000000,0.250000,0,0);}
.m12e_c01206{transform:matrix(1.060781,-0.033979,0.008004,0.249872,0,0);-ms-transform:matrix(1.060781,-0.033979,0.008004,0.249872,0,0);-webkit-transform:matrix(1.060781,-0.033979,0.008004,0.249872,0,0);}
.m12d_c01206{transform:matrix(1.180545,-0.037815,0.008004,0.249872,0,0);-ms-transform:matrix(1.180545,-0.037815,0.008004,0.249872,0,0);-webkit-transform:matrix(1.180545,-0.037815,0.008004,0.249872,0,0);}
.m12c_c01206{transform:matrix(1.244567,-0.039866,0.008004,0.249872,0,0);-ms-transform:matrix(1.244567,-0.039866,0.008004,0.249872,0,0);-webkit-transform:matrix(1.244567,-0.039866,0.008004,0.249872,0,0);}
.v0_c01206{vertical-align:0.000000px;}
.ls0_c01206{letter-spacing:0.000000px;}
.sc__c01206{text-shadow:none;}
.sc0_c01206{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__c01206{-webkit-text-stroke:0px transparent;}
.sc0_c01206{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01206{word-spacing:0.000000px;}
._0_c01206{width:8596.957569px;}
.fc0_c01206{color:transparent;}
.fse_c01206{font-size:23.988297px;}
.fs0_c01206{font-size:60.000000px;}
.fs8_c01206{font-size:72.000000px;}
.fs5_c01206{font-size:72.001296px;}
.fs3_c01206{font-size:72.003600px;}
.fsd_c01206{font-size:78.000000px;}
.fs4_c01206{font-size:78.001404px;}
.fs1_c01206{font-size:78.003900px;}
.fs9_c01206{font-size:84.000000px;}
.fs6_c01206{font-size:84.001512px;}
.fs2_c01206{font-size:84.004200px;}
.fsf_c01206{font-size:89.956114px;}
.fsa_c01206{font-size:90.000000px;}
.fs7_c01206{font-size:90.001620px;}
.fsb_c01206{font-size:102.000000px;}
.fsc_c01206{font-size:108.000000px;}
.y0_c01206{bottom:0.000000px;}
.ye0_c01206{bottom:54.612962px;}
.ydf_c01206{bottom:55.791102px;}
.yde_c01206{bottom:57.337454px;}
.ydd_c01206{bottom:58.257224px;}
.ydc_c01206{bottom:59.561190px;}
.ydb_c01206{bottom:62.917889px;}
.yda_c01206{bottom:65.941605px;}
.yd9_c01206{bottom:68.060807px;}
.yd6_c01206{bottom:110.946000px;}
.yd7_c01206{bottom:113.035824px;}
.yd8_c01206{bottom:114.503856px;}
.yd5_c01206{bottom:132.847500px;}
.yd4_c01206{bottom:133.239000px;}
.yd3_c01206{bottom:133.788000px;}
.yd2_c01206{bottom:134.340000px;}
.yd1_c01206{bottom:134.950500px;}
.yd0_c01206{bottom:135.453000px;}
.ycf_c01206{bottom:135.774000px;}
.yce_c01206{bottom:136.081500px;}
.ycd_c01206{bottom:171.657000px;}
.ycc_c01206{bottom:206.559000px;}
.ycb_c01206{bottom:242.728500px;}
.yca_c01206{bottom:277.830000px;}
.yc9_c01206{bottom:314.413500px;}
.yc8_c01206{bottom:349.248000px;}
.yc7_c01206{bottom:383.611500px;}
.yc3_c01206{bottom:416.611500px;}
.yc4_c01206{bottom:417.387000px;}
.yc5_c01206{bottom:417.795000px;}
.yc6_c01206{bottom:419.104500px;}
.yc2_c01206{bottom:454.204500px;}
.yc1_c01206{bottom:490.252500px;}
.yc0_c01206{bottom:525.316500px;}
.yb8_c01206{bottom:559.433028px;}
.yb9_c01206{bottom:559.712913px;}
.yba_c01206{bottom:560.037222px;}
.ybb_c01206{bottom:560.203419px;}
.ybc_c01206{bottom:560.529411px;}
.ybd_c01206{bottom:560.697438px;}
.ybe_c01206{bottom:560.987274px;}
.ybf_c01206{bottom:562.393158px;}
.yaf_c01206{bottom:594.777147px;}
.yae_c01206{bottom:594.777276px;}
.yb0_c01206{bottom:594.777747px;}
.yad_c01206{bottom:594.777996px;}
.yb1_c01206{bottom:594.778098px;}
.yab_c01206{bottom:594.778125px;}
.yac_c01206{bottom:594.778296px;}
.yb2_c01206{bottom:594.778569px;}
.yb3_c01206{bottom:594.778860px;}
.yb4_c01206{bottom:594.779331px;}
.yb6_c01206{bottom:594.779793px;}
.yb5_c01206{bottom:594.780042px;}
.yb7_c01206{bottom:594.780153px;}
.y9e_c01206{bottom:630.929070px;}
.ya8_c01206{bottom:630.929298px;}
.ya7_c01206{bottom:630.929307px;}
.ya1_c01206{bottom:630.929352px;}
.ya5_c01206{bottom:630.929376px;}
.y9f_c01206{bottom:630.929481px;}
.ya6_c01206{bottom:630.929727px;}
.ya4_c01206{bottom:630.929745px;}
.ya2_c01206{bottom:630.929823px;}
.ya3_c01206{bottom:630.929874px;}
.ya9_c01206{bottom:630.929898px;}
.ya0_c01206{bottom:630.929961px;}
.yaa_c01206{bottom:630.930138px;}
.y9d_c01206{bottom:665.157171px;}
.y96_c01206{bottom:665.157267px;}
.y95_c01206{bottom:665.157276px;}
.y97_c01206{bottom:665.157678px;}
.y94_c01206{bottom:665.157876px;}
.y9c_c01206{bottom:665.157900px;}
.y9b_c01206{bottom:665.158080px;}
.y99_c01206{bottom:665.158089px;}
.y9a_c01206{bottom:665.158209px;}
.y98_c01206{bottom:665.158278px;}
.y93_c01206{bottom:665.158545px;}
.y92_c01206{bottom:665.159025px;}
.y8b_c01206{bottom:700.785225px;}
.y87_c01206{bottom:700.785663px;}
.y8c_c01206{bottom:700.785705px;}
.y8e_c01206{bottom:700.785747px;}
.y8a_c01206{bottom:700.785954px;}
.y88_c01206{bottom:700.786083px;}
.y8d_c01206{bottom:700.786236px;}
.y89_c01206{bottom:700.786323px;}
.y91_c01206{bottom:700.786329px;}
.y8f_c01206{bottom:700.786398px;}
.y90_c01206{bottom:700.786869px;}
.y7b_c01206{bottom:734.665746px;}
.y7c_c01206{bottom:735.375840px;}
.y7d_c01206{bottom:736.043187px;}
.y7e_c01206{bottom:736.262622px;}
.y7f_c01206{bottom:737.146131px;}
.y80_c01206{bottom:737.349837px;}
.y81_c01206{bottom:737.839002px;}
.y82_c01206{bottom:738.528573px;}
.y83_c01206{bottom:738.825222px;}
.y84_c01206{bottom:739.419960px;}
.y85_c01206{bottom:739.626624px;}
.y86_c01206{bottom:739.833495px;}
.y73_c01206{bottom:771.099234px;}
.y75_c01206{bottom:771.099405px;}
.y72_c01206{bottom:771.099714px;}
.y74_c01206{bottom:771.099885px;}
.y71_c01206{bottom:771.099903px;}
.y76_c01206{bottom:771.099996px;}
.y70_c01206{bottom:771.100212px;}
.y78_c01206{bottom:771.100518px;}
.y77_c01206{bottom:771.100707px;}
.y79_c01206{bottom:771.101229px;}
.y7a_c01206{bottom:771.101640px;}
.y6b_c01206{bottom:807.309792px;}
.y67_c01206{bottom:807.310290px;}
.y6c_c01206{bottom:807.310392px;}
.y6a_c01206{bottom:807.310401px;}
.y66_c01206{bottom:807.310710px;}
.y6f_c01206{bottom:807.310725px;}
.y6d_c01206{bottom:807.310923px;}
.y68_c01206{bottom:807.310950px;}
.y69_c01206{bottom:807.311061px;}
.y6e_c01206{bottom:807.311274px;}
.y65_c01206{bottom:807.311379px;}
.y64_c01206{bottom:842.908254px;}
.y61_c01206{bottom:842.908881px;}
.y63_c01206{bottom:842.908923px;}
.y60_c01206{bottom:842.909001px;}
.y5e_c01206{bottom:842.909070px;}
.y5d_c01206{bottom:842.909190px;}
.y5c_c01206{bottom:842.909319px;}
.y5f_c01206{bottom:842.909430px;}
.y62_c01206{bottom:842.909472px;}
.y5b_c01206{bottom:842.909799px;}
.y5a_c01206{bottom:842.909988px;}
.y59_c01206{bottom:842.910057px;}
.y4f_c01206{bottom:876.958776px;}
.y50_c01206{bottom:877.503747px;}
.y51_c01206{bottom:877.888866px;}
.y52_c01206{bottom:878.004192px;}
.y53_c01206{bottom:878.494764px;}
.y54_c01206{bottom:878.603592px;}
.y55_c01206{bottom:878.881812px;}
.y56_c01206{bottom:879.438252px;}
.y57_c01206{bottom:879.872865px;}
.y58_c01206{bottom:880.042386px;}
.y4e_c01206{bottom:914.795526px;}
.y4c_c01206{bottom:914.795844px;}
.y46_c01206{bottom:914.796018px;}
.y4a_c01206{bottom:914.796042px;}
.y47_c01206{bottom:914.796069px;}
.y4d_c01206{bottom:914.796135px;}
.y44_c01206{bottom:914.796147px;}
.y49_c01206{bottom:914.796231px;}
.y45_c01206{bottom:914.796318px;}
.y4b_c01206{bottom:914.796333px;}
.y48_c01206{bottom:914.796480px;}
.y38_c01206{bottom:945.540000px;}
.y39_c01206{bottom:945.797634px;}
.y3a_c01206{bottom:945.993699px;}
.y3b_c01206{bottom:946.520271px;}
.y3c_c01206{bottom:946.983564px;}
.y3d_c01206{bottom:947.186127px;}
.y3e_c01206{bottom:947.710854px;}
.y3f_c01206{bottom:947.911878px;}
.y40_c01206{bottom:948.114369px;}
.y41_c01206{bottom:948.768804px;}
.y42_c01206{bottom:948.964833px;}
.y43_c01206{bottom:949.442697px;}
.y2d_c01206{bottom:979.831500px;}
.y2e_c01206{bottom:980.150415px;}
.y2f_c01206{bottom:980.477265px;}
.y30_c01206{bottom:980.909520px;}
.y31_c01206{bottom:981.578715px;}
.y32_c01206{bottom:981.908475px;}
.y33_c01206{bottom:982.467075px;}
.y34_c01206{bottom:983.555445px;}
.y35_c01206{bottom:984.557310px;}
.y36_c01206{bottom:984.881055px;}
.y37_c01206{bottom:986.109465px;}
.y22_c01206{bottom:1016.273700px;}
.y23_c01206{bottom:1016.445615px;}
.y24_c01206{bottom:1016.602830px;}
.y25_c01206{bottom:1016.763720px;}
.y26_c01206{bottom:1017.313650px;}
.y27_c01206{bottom:1017.481710px;}
.y28_c01206{bottom:1017.755235px;}
.y29_c01206{bottom:1018.030065px;}
.y2a_c01206{bottom:1018.194450px;}
.y2b_c01206{bottom:1018.749135px;}
.y2c_c01206{bottom:1019.189790px;}
.y18_c01206{bottom:1050.566985px;}
.y19_c01206{bottom:1051.183185px;}
.y1a_c01206{bottom:1051.416465px;}
.y1b_c01206{bottom:1052.189025px;}
.y1c_c01206{bottom:1052.567160px;}
.y1d_c01206{bottom:1053.031920px;}
.y1e_c01206{bottom:1053.341190px;}
.y1f_c01206{bottom:1053.567510px;}
.y20_c01206{bottom:1053.879705px;}
.y21_c01206{bottom:1054.664100px;}
.yd_c01206{bottom:1087.018755px;}
.ye_c01206{bottom:1087.262970px;}
.yf_c01206{bottom:1087.796385px;}
.y10_c01206{bottom:1087.979340px;}
.y11_c01206{bottom:1088.232360px;}
.y12_c01206{bottom:1088.940570px;}
.y13_c01206{bottom:1089.112185px;}
.y14_c01206{bottom:1089.739095px;}
.y15_c01206{bottom:1090.188285px;}
.y16_c01206{bottom:1090.803285px;}
.y17_c01206{bottom:1091.764695px;}
.y2_c01206{bottom:1119.421500px;}
.y3_c01206{bottom:1120.294020px;}
.y4_c01206{bottom:1120.618200px;}
.y5_c01206{bottom:1121.614095px;}
.y6_c01206{bottom:1122.157980px;}
.y7_c01206{bottom:1123.036920px;}
.y8_c01206{bottom:1123.382550px;}
.y9_c01206{bottom:1123.917450px;}
.ya_c01206{bottom:1124.265495px;}
.yb_c01206{bottom:1124.581620px;}
.yc_c01206{bottom:1125.467445px;}
.y1_c01206{bottom:1184.068500px;}
.h10_c01206{height:23.988297px;}
.h2_c01206{height:60.000000px;}
.ha_c01206{height:72.000000px;}
.h7_c01206{height:72.001296px;}
.h5_c01206{height:72.003600px;}
.hf_c01206{height:78.000000px;}
.h6_c01206{height:78.001404px;}
.h3_c01206{height:78.003900px;}
.hb_c01206{height:84.000000px;}
.h8_c01206{height:84.001512px;}
.h4_c01206{height:84.004200px;}
.h11_c01206{height:89.956114px;}
.hc_c01206{height:90.000000px;}
.h9_c01206{height:90.001620px;}
.hd_c01206{height:102.000000px;}
.he_c01206{height:108.000000px;}
.h1_c01206{height:1258.500000px;}
.h0_c01206{height:1258.740000px;}
.w0_c01206{width:904.200000px;}
.w1_c01206{width:904.500000px;}
.x0_c01206{left:0.000000px;}
.xb3_c01206{left:130.410000px;}
.x17_c01206{left:138.088365px;}
.x4_c01206{left:139.201500px;}
.x2d_c01206{left:140.212500px;}
.x5c_c01206{left:142.291548px;}
.x89_c01206{left:143.640000px;}
.x8f_c01206{left:144.720000px;}
.xba_c01206{left:147.150000px;}
.xc6_c01206{left:150.327000px;}
.xf_c01206{left:169.973130px;}
.x25_c01206{left:171.873000px;}
.x1e_c01206{left:173.146050px;}
.x62_c01206{left:174.153450px;}
.xb4_c01206{left:178.470000px;}
.x2e_c01206{left:183.151500px;}
.x4e_c01206{left:184.411194px;}
.x6d_c01206{left:185.765235px;}
.x7b_c01206{left:198.264969px;}
.x1f_c01206{left:204.469110px;}
.x5d_c01206{left:207.903906px;}
.x74_c01206{left:208.985472px;}
.xbb_c01206{left:210.870000px;}
.xc7_c01206{left:211.882500px;}
.xcd_c01206{left:213.724785px;}
.x2f_c01206{left:215.829000px;}
.x4a_c01206{left:217.079613px;}
.x54_c01206{left:219.116280px;}
.xa0_c01206{left:221.940000px;}
.x5_c01206{left:226.453500px;}
.x38_c01206{left:228.153123px;}
.x8a_c01206{left:229.770000px;}
.xbc_c01206{left:231.930000px;}
.x10_c01206{left:236.665965px;}
.x4b_c01206{left:239.760432px;}
.x75_c01206{left:241.116633px;}
.x99_c01206{left:243.198000px;}
.x26_c01206{left:247.783500px;}
.x81_c01206{left:251.370000px;}
.x9b_c01206{left:254.610000px;}
.xad_c01206{left:255.690000px;}
.x6_c01206{left:258.871500px;}
.x45_c01206{left:260.549091px;}
.x7c_c01206{left:263.066856px;}
.xb5_c01206{left:265.950000px;}
.x4c_c01206{left:271.621575px;}
.x6e_c01206{left:273.246885px;}
.xc8_c01206{left:276.124500px;}
.x63_c01206{left:284.045910px;}
.x82_c01206{left:285.660000px;}
.xc0_c01206{left:289.440000px;}
.x11_c01206{left:291.214560px;}
.x39_c01206{left:292.413936px;}
.x7d_c01206{left:296.266554px;}
.x30_c01206{left:303.591000px;}
.x27_c01206{left:314.703000px;}
.x64_c01206{left:316.447080px;}
.x55_c01206{left:317.661507px;}
.x83_c01206{left:319.680000px;}
.xbd_c01206{left:321.300000px;}
.x3f_c01206{left:325.686069px;}
.x5e_c01206{left:326.975199px;}
.x6f_c01206{left:328.327365px;}
.x3a_c01206{left:337.234047px;}
.x90_c01206{left:340.740000px;}
.x20_c01206{left:346.508205px;}
.x28_c01206{left:347.679000px;}
.x76_c01206{left:350.199057px;}
.x9a_c01206{left:352.263000px;}
.xb6_c01206{left:354.240000px;}
.x7_c01206{left:358.461000px;}
.x4d_c01206{left:359.643243px;}
.x5f_c01206{left:361.806450px;}
.x91_c01206{left:363.150000px;}
.xae_c01206{left:365.310000px;}
.x18_c01206{left:369.749310px;}
.x70_c01206{left:372.337449px;}
.x9c_c01206{left:374.220000px;}
.xa1_c01206{left:376.380000px;}
.x12_c01206{left:379.737330px;}
.x31_c01206{left:380.806500px;}
.x65_c01206{left:383.948010px;}
.xaf_c01206{left:386.100000px;}
.x1_c01206{left:388.260000px;}
.x4f_c01206{left:392.585691px;}
.x7e_c01206{left:395.103648px;}
.x84_c01206{left:396.360000px;}
.x13_c01206{left:401.099250px;}
.x29_c01206{left:403.539000px;}
.xa7_c01206{left:408.780000px;}
.x2_c01206{left:411.210000px;}
.x8_c01206{left:412.849500px;}
.x32_c01206{left:414.567000px;}
.x56_c01206{left:415.911243px;}
.xb0_c01206{left:419.580000px;}
.x19_c01206{left:423.764430px;}
.x92_c01206{left:428.490000px;}
.xb7_c01206{left:430.380000px;}
.x21_c01206{left:435.071145px;}
.x57_c01206{left:438.611838px;}
.xa2_c01206{left:440.910000px;}
.xc1_c01206{left:441.990000px;}
.x40_c01206{left:446.919798px;}
.x46_c01206{left:448.744368px;}
.x7f_c01206{left:453.159999px;}
.x3_c01206{left:455.760000px;}
.x3b_c01206{left:458.196903px;}
.x93_c01206{left:461.700000px;}
.xa8_c01206{left:463.050000px;}
.x41_c01206{left:468.807933px;}
.x8b_c01206{left:472.770000px;}
.xc2_c01206{left:476.010000px;}
.x14_c01206{left:479.391810px;}
.x50_c01206{left:481.687395px;}
.x66_c01206{left:482.770065px;}
.xce_c01206{left:488.528802px;}
.x1a_c01206{left:490.192425px;}
.x58_c01206{left:492.888357px;}
.xa3_c01206{left:495.990000px;}
.xc9_c01206{left:498.603000px;}
.x9_c01206{left:500.743500px;}
.x33_c01206{left:502.021500px;}
.x67_c01206{left:504.370839px;}
.x2a_c01206{left:512.376000px;}
.x85_c01206{left:516.240000px;}
.x94_c01206{left:517.860000px;}
.xc3_c01206{left:519.480000px;}
.xcf_c01206{left:521.442087px;}
.x22_c01206{left:523.097055px;}
.x42_c01206{left:524.428266px;}
.xa4_c01206{left:528.930000px;}
.xa_c01206{left:535.306500px;}
.x8c_c01206{left:537.840000px;}
.x9d_c01206{left:539.460000px;}
.xbe_c01206{left:541.080000px;}
.x3c_c01206{left:546.217071px;}
.x60_c01206{left:547.570137px;}
.x95_c01206{left:549.720000px;}
.xa9_c01206{left:551.070000px;}
.x51_c01206{left:557.558622px;}
.x47_c01206{left:559.176846px;}
.xa5_c01206{left:560.790000px;}
.x9e_c01206{left:561.870000px;}
.x1b_c01206{left:566.853735px;}
.x34_c01206{left:569.274000px;}
.x77_c01206{left:572.142540px;}
.xb8_c01206{left:573.480000px;}
.xd0_c01206{left:576.706502px;}
.x68_c01206{left:581.592120px;}
.xb_c01206{left:588.796500px;}
.x48_c01206{left:592.658052px;}
.x59_c01206{left:602.506386px;}
.xa6_c01206{left:606.420000px;}
.xca_c01206{left:609.037500px;}
.x1c_c01206{left:611.424570px;}
.x15_c01206{left:612.513480px;}
.x52_c01206{left:614.529174px;}
.x69_c01206{left:615.613344px;}
.xd1_c01206{left:618.833793px;}
.xc_c01206{left:623.601000px;}
.x78_c01206{left:627.223020px;}
.xbf_c01206{left:632.610000px;}
.x23_c01206{left:634.071105px;}
.x43_c01206{left:635.668932px;}
.x71_c01206{left:637.752507px;}
.x86_c01206{left:639.090000px;}
.xb9_c01206{left:641.520000px;}
.x2b_c01206{left:644.937000px;}
.x3d_c01206{left:646.389180px;}
.xd_c01206{left:655.213500px;}
.x96_c01206{left:660.960000px;}
.xaa_c01206{left:665.010000px;}
.x5a_c01206{left:668.628198px;}
.x9f_c01206{left:671.220000px;}
.x35_c01206{left:678.346500px;}
.x87_c01206{left:680.940000px;}
.xc4_c01206{left:685.260000px;}
.x3e_c01206{left:690.939282px;}
.xb1_c01206{left:696.330000px;}
.x61_c01206{left:702.012690px;}
.x6a_c01206{left:703.094994px;}
.x97_c01206{left:704.700000px;}
.x36_c01206{left:711.018000px;}
.x5b_c01206{left:714.549870px;}
.x8d_c01206{left:715.770000px;}
.xcb_c01206{left:718.887000px;}
.x24_c01206{left:722.091000px;}
.x1d_c01206{left:723.467430px;}
.x6b_c01206{left:726.315831px;}
.xab_c01206{left:729.000000px;}
.x16_c01206{left:732.656880px;}
.x80_c01206{left:734.225682px;}
.xe_c01206{left:743.796000px;}
.x72_c01206{left:747.104940px;}
.x44_c01206{left:756.608661px;}
.x88_c01206{left:759.240000px;}
.x98_c01206{left:761.400000px;}
.x2c_c01206{left:767.778000px;}
.x53_c01206{left:768.971727px;}
.x79_c01206{left:770.055159px;}
.x49_c01206{left:780.310311px;}
.x73_c01206{left:781.396173px;}
.x8e_c01206{left:782.460000px;}
.xac_c01206{left:783.540000px;}
.xc5_c01206{left:785.700000px;}
.x37_c01206{left:790.662000px;}
.x6c_c01206{left:792.196707px;}
.xb2_c01206{left:795.420000px;}
.xcc_c01206{left:797.241000px;}
.x7a_c01206{left:804.616401px;}
@media print{
.v0_c01206{vertical-align:0.000000pt;}
.ls0_c01206{letter-spacing:0.000000pt;}
.ws0_c01206{word-spacing:0.000000pt;}
._0_c01206{width:7641.740061pt;}
.fse_c01206{font-size:21.322931pt;}
.fs0_c01206{font-size:53.333333pt;}
.fs8_c01206{font-size:64.000000pt;}
.fs5_c01206{font-size:64.001152pt;}
.fs3_c01206{font-size:64.003200pt;}
.fsd_c01206{font-size:69.333333pt;}
.fs4_c01206{font-size:69.334581pt;}
.fs1_c01206{font-size:69.336800pt;}
.fs9_c01206{font-size:74.666667pt;}
.fs6_c01206{font-size:74.668011pt;}
.fs2_c01206{font-size:74.670400pt;}
.fsf_c01206{font-size:79.960990pt;}
.fsa_c01206{font-size:80.000000pt;}
.fs7_c01206{font-size:80.001440pt;}
.fsb_c01206{font-size:90.666667pt;}
.fsc_c01206{font-size:96.000000pt;}
.y0_c01206{bottom:0.000000pt;}
.ye0_c01206{bottom:48.544855pt;}
.ydf_c01206{bottom:49.592091pt;}
.yde_c01206{bottom:50.966625pt;}
.ydd_c01206{bottom:51.784199pt;}
.ydc_c01206{bottom:52.943280pt;}
.ydb_c01206{bottom:55.927012pt;}
.yda_c01206{bottom:58.614760pt;}
.yd9_c01206{bottom:60.498495pt;}
.yd6_c01206{bottom:98.618667pt;}
.yd7_c01206{bottom:100.476288pt;}
.yd8_c01206{bottom:101.781205pt;}
.yd5_c01206{bottom:118.086667pt;}
.yd4_c01206{bottom:118.434667pt;}
.yd3_c01206{bottom:118.922667pt;}
.yd2_c01206{bottom:119.413333pt;}
.yd1_c01206{bottom:119.956000pt;}
.yd0_c01206{bottom:120.402667pt;}
.ycf_c01206{bottom:120.688000pt;}
.yce_c01206{bottom:120.961333pt;}
.ycd_c01206{bottom:152.584000pt;}
.ycc_c01206{bottom:183.608000pt;}
.ycb_c01206{bottom:215.758667pt;}
.yca_c01206{bottom:246.960000pt;}
.yc9_c01206{bottom:279.478667pt;}
.yc8_c01206{bottom:310.442667pt;}
.yc7_c01206{bottom:340.988000pt;}
.yc3_c01206{bottom:370.321333pt;}
.yc4_c01206{bottom:371.010667pt;}
.yc5_c01206{bottom:371.373333pt;}
.yc6_c01206{bottom:372.537333pt;}
.yc2_c01206{bottom:403.737333pt;}
.yc1_c01206{bottom:435.780000pt;}
.yc0_c01206{bottom:466.948000pt;}
.yb8_c01206{bottom:497.273803pt;}
.yb9_c01206{bottom:497.522589pt;}
.yba_c01206{bottom:497.810864pt;}
.ybb_c01206{bottom:497.958595pt;}
.ybc_c01206{bottom:498.248365pt;}
.ybd_c01206{bottom:498.397723pt;}
.ybe_c01206{bottom:498.655355pt;}
.ybf_c01206{bottom:499.905029pt;}
.yaf_c01206{bottom:528.690797pt;}
.yae_c01206{bottom:528.690912pt;}
.yb0_c01206{bottom:528.691331pt;}
.yad_c01206{bottom:528.691552pt;}
.yb1_c01206{bottom:528.691643pt;}
.yab_c01206{bottom:528.691667pt;}
.yac_c01206{bottom:528.691819pt;}
.yb2_c01206{bottom:528.692061pt;}
.yb3_c01206{bottom:528.692320pt;}
.yb4_c01206{bottom:528.692739pt;}
.yb6_c01206{bottom:528.693149pt;}
.yb5_c01206{bottom:528.693371pt;}
.yb7_c01206{bottom:528.693469pt;}
.y9e_c01206{bottom:560.825840pt;}
.ya8_c01206{bottom:560.826043pt;}
.ya7_c01206{bottom:560.826051pt;}
.ya1_c01206{bottom:560.826091pt;}
.ya5_c01206{bottom:560.826112pt;}
.y9f_c01206{bottom:560.826205pt;}
.ya6_c01206{bottom:560.826424pt;}
.ya4_c01206{bottom:560.826440pt;}
.ya2_c01206{bottom:560.826509pt;}
.ya3_c01206{bottom:560.826555pt;}
.ya9_c01206{bottom:560.826576pt;}
.ya0_c01206{bottom:560.826632pt;}
.yaa_c01206{bottom:560.826789pt;}
.y9d_c01206{bottom:591.250819pt;}
.y96_c01206{bottom:591.250904pt;}
.y95_c01206{bottom:591.250912pt;}
.y97_c01206{bottom:591.251269pt;}
.y94_c01206{bottom:591.251445pt;}
.y9c_c01206{bottom:591.251467pt;}
.y9b_c01206{bottom:591.251627pt;}
.y99_c01206{bottom:591.251635pt;}
.y9a_c01206{bottom:591.251741pt;}
.y98_c01206{bottom:591.251803pt;}
.y93_c01206{bottom:591.252040pt;}
.y92_c01206{bottom:591.252467pt;}
.y8b_c01206{bottom:622.920200pt;}
.y87_c01206{bottom:622.920589pt;}
.y8c_c01206{bottom:622.920627pt;}
.y8e_c01206{bottom:622.920664pt;}
.y8a_c01206{bottom:622.920848pt;}
.y88_c01206{bottom:622.920963pt;}
.y8d_c01206{bottom:622.921099pt;}
.y89_c01206{bottom:622.921176pt;}
.y91_c01206{bottom:622.921181pt;}
.y8f_c01206{bottom:622.921243pt;}
.y90_c01206{bottom:622.921661pt;}
.y7b_c01206{bottom:653.036219pt;}
.y7c_c01206{bottom:653.667413pt;}
.y7d_c01206{bottom:654.260611pt;}
.y7e_c01206{bottom:654.455664pt;}
.y7f_c01206{bottom:655.241005pt;}
.y80_c01206{bottom:655.422077pt;}
.y81_c01206{bottom:655.856891pt;}
.y82_c01206{bottom:656.469843pt;}
.y83_c01206{bottom:656.733531pt;}
.y84_c01206{bottom:657.262187pt;}
.y85_c01206{bottom:657.445888pt;}
.y86_c01206{bottom:657.629773pt;}
.y73_c01206{bottom:685.421541pt;}
.y75_c01206{bottom:685.421693pt;}
.y72_c01206{bottom:685.421968pt;}
.y74_c01206{bottom:685.422120pt;}
.y71_c01206{bottom:685.422136pt;}
.y76_c01206{bottom:685.422219pt;}
.y70_c01206{bottom:685.422411pt;}
.y78_c01206{bottom:685.422683pt;}
.y77_c01206{bottom:685.422851pt;}
.y79_c01206{bottom:685.423315pt;}
.y7a_c01206{bottom:685.423680pt;}
.y6b_c01206{bottom:717.608704pt;}
.y67_c01206{bottom:717.609147pt;}
.y6c_c01206{bottom:717.609237pt;}
.y6a_c01206{bottom:717.609245pt;}
.y66_c01206{bottom:717.609520pt;}
.y6f_c01206{bottom:717.609533pt;}
.y6d_c01206{bottom:717.609709pt;}
.y68_c01206{bottom:717.609733pt;}
.y69_c01206{bottom:717.609832pt;}
.y6e_c01206{bottom:717.610021pt;}
.y65_c01206{bottom:717.610115pt;}
.y64_c01206{bottom:749.251781pt;}
.y61_c01206{bottom:749.252339pt;}
.y63_c01206{bottom:749.252376pt;}
.y60_c01206{bottom:749.252445pt;}
.y5e_c01206{bottom:749.252507pt;}
.y5d_c01206{bottom:749.252613pt;}
.y5c_c01206{bottom:749.252728pt;}
.y5f_c01206{bottom:749.252827pt;}
.y62_c01206{bottom:749.252864pt;}
.y5b_c01206{bottom:749.253155pt;}
.y5a_c01206{bottom:749.253323pt;}
.y59_c01206{bottom:749.253384pt;}
.y4f_c01206{bottom:779.518912pt;}
.y50_c01206{bottom:780.003331pt;}
.y51_c01206{bottom:780.345659pt;}
.y52_c01206{bottom:780.448171pt;}
.y53_c01206{bottom:780.884235pt;}
.y54_c01206{bottom:780.980971pt;}
.y55_c01206{bottom:781.228277pt;}
.y56_c01206{bottom:781.722891pt;}
.y57_c01206{bottom:782.109213pt;}
.y58_c01206{bottom:782.259899pt;}
.y4e_c01206{bottom:813.151579pt;}
.y4c_c01206{bottom:813.151861pt;}
.y46_c01206{bottom:813.152016pt;}
.y4a_c01206{bottom:813.152037pt;}
.y47_c01206{bottom:813.152061pt;}
.y4d_c01206{bottom:813.152120pt;}
.y44_c01206{bottom:813.152131pt;}
.y49_c01206{bottom:813.152205pt;}
.y45_c01206{bottom:813.152283pt;}
.y4b_c01206{bottom:813.152296pt;}
.y48_c01206{bottom:813.152427pt;}
.y38_c01206{bottom:840.480000pt;}
.y39_c01206{bottom:840.709008pt;}
.y3a_c01206{bottom:840.883288pt;}
.y3b_c01206{bottom:841.351352pt;}
.y3c_c01206{bottom:841.763168pt;}
.y3d_c01206{bottom:841.943224pt;}
.y3e_c01206{bottom:842.409648pt;}
.y3f_c01206{bottom:842.588336pt;}
.y40_c01206{bottom:842.768328pt;}
.y41_c01206{bottom:843.350048pt;}
.y42_c01206{bottom:843.524296pt;}
.y43_c01206{bottom:843.949064pt;}
.y2d_c01206{bottom:870.961333pt;}
.y2e_c01206{bottom:871.244813pt;}
.y2f_c01206{bottom:871.535347pt;}
.y30_c01206{bottom:871.919573pt;}
.y31_c01206{bottom:872.514413pt;}
.y32_c01206{bottom:872.807533pt;}
.y33_c01206{bottom:873.304067pt;}
.y34_c01206{bottom:874.271507pt;}
.y35_c01206{bottom:875.162053pt;}
.y36_c01206{bottom:875.449827pt;}
.y37_c01206{bottom:876.541747pt;}
.y22_c01206{bottom:903.354400pt;}
.y23_c01206{bottom:903.507213pt;}
.y24_c01206{bottom:903.646960pt;}
.y25_c01206{bottom:903.789973pt;}
.y26_c01206{bottom:904.278800pt;}
.y27_c01206{bottom:904.428187pt;}
.y28_c01206{bottom:904.671320pt;}
.y29_c01206{bottom:904.915613pt;}
.y2a_c01206{bottom:905.061733pt;}
.y2b_c01206{bottom:905.554787pt;}
.y2c_c01206{bottom:905.946480pt;}
.y18_c01206{bottom:933.837320pt;}
.y19_c01206{bottom:934.385053pt;}
.y1a_c01206{bottom:934.592413pt;}
.y1b_c01206{bottom:935.279133pt;}
.y1c_c01206{bottom:935.615253pt;}
.y1d_c01206{bottom:936.028373pt;}
.y1e_c01206{bottom:936.303280pt;}
.y1f_c01206{bottom:936.504453pt;}
.y20_c01206{bottom:936.781960pt;}
.y21_c01206{bottom:937.479200pt;}
.yd_c01206{bottom:966.238893pt;}
.ye_c01206{bottom:966.455973pt;}
.yf_c01206{bottom:966.930120pt;}
.y10_c01206{bottom:967.092747pt;}
.y11_c01206{bottom:967.317653pt;}
.y12_c01206{bottom:967.947173pt;}
.y13_c01206{bottom:968.099720pt;}
.y14_c01206{bottom:968.656973pt;}
.y15_c01206{bottom:969.056253pt;}
.y16_c01206{bottom:969.602920pt;}
.y17_c01206{bottom:970.457507pt;}
.y2_c01206{bottom:995.041333pt;}
.y3_c01206{bottom:995.816907pt;}
.y4_c01206{bottom:996.105067pt;}
.y5_c01206{bottom:996.990307pt;}
.y6_c01206{bottom:997.473760pt;}
.y7_c01206{bottom:998.255040pt;}
.y8_c01206{bottom:998.562267pt;}
.y9_c01206{bottom:999.037733pt;}
.ya_c01206{bottom:999.347107pt;}
.yb_c01206{bottom:999.628107pt;}
.yc_c01206{bottom:1000.415507pt;}
.y1_c01206{bottom:1052.505333pt;}
.h10_c01206{height:21.322931pt;}
.h2_c01206{height:53.333333pt;}
.ha_c01206{height:64.000000pt;}
.h7_c01206{height:64.001152pt;}
.h5_c01206{height:64.003200pt;}
.hf_c01206{height:69.333333pt;}
.h6_c01206{height:69.334581pt;}
.h3_c01206{height:69.336800pt;}
.hb_c01206{height:74.666667pt;}
.h8_c01206{height:74.668011pt;}
.h4_c01206{height:74.670400pt;}
.h11_c01206{height:79.960990pt;}
.hc_c01206{height:80.000000pt;}
.h9_c01206{height:80.001440pt;}
.hd_c01206{height:90.666667pt;}
.he_c01206{height:96.000000pt;}
.h1_c01206{height:1118.666667pt;}
.h0_c01206{height:1118.880000pt;}
.w0_c01206{width:803.733333pt;}
.w1_c01206{width:804.000000pt;}
.x0_c01206{left:0.000000pt;}
.xb3_c01206{left:115.920000pt;}
.x17_c01206{left:122.745213pt;}
.x4_c01206{left:123.734667pt;}
.x2d_c01206{left:124.633333pt;}
.x5c_c01206{left:126.481376pt;}
.x89_c01206{left:127.680000pt;}
.x8f_c01206{left:128.640000pt;}
.xba_c01206{left:130.800000pt;}
.xc6_c01206{left:133.624000pt;}
.xf_c01206{left:151.087227pt;}
.x25_c01206{left:152.776000pt;}
.x1e_c01206{left:153.907600pt;}
.x62_c01206{left:154.803067pt;}
.xb4_c01206{left:158.640000pt;}
.x2e_c01206{left:162.801333pt;}
.x4e_c01206{left:163.921061pt;}
.x6d_c01206{left:165.124653pt;}
.x7b_c01206{left:176.235528pt;}
.x1f_c01206{left:181.750320pt;}
.x5d_c01206{left:184.803472pt;}
.x74_c01206{left:185.764864pt;}
.xbb_c01206{left:187.440000pt;}
.xc7_c01206{left:188.340000pt;}
.xcd_c01206{left:189.977587pt;}
.x2f_c01206{left:191.848000pt;}
.x4a_c01206{left:192.959656pt;}
.x54_c01206{left:194.770027pt;}
.xa0_c01206{left:197.280000pt;}
.x5_c01206{left:201.292000pt;}
.x38_c01206{left:202.802776pt;}
.x8a_c01206{left:204.240000pt;}
.xbc_c01206{left:206.160000pt;}
.x10_c01206{left:210.369747pt;}
.x4b_c01206{left:213.120384pt;}
.x75_c01206{left:214.325896pt;}
.x99_c01206{left:216.176000pt;}
.x26_c01206{left:220.252000pt;}
.x81_c01206{left:223.440000pt;}
.x9b_c01206{left:226.320000pt;}
.xad_c01206{left:227.280000pt;}
.x6_c01206{left:230.108000pt;}
.x45_c01206{left:231.599192pt;}
.x7c_c01206{left:233.837205pt;}
.xb5_c01206{left:236.400000pt;}
.x4c_c01206{left:241.441400pt;}
.x6e_c01206{left:242.886120pt;}
.xc8_c01206{left:245.444000pt;}
.x63_c01206{left:252.485253pt;}
.x82_c01206{left:253.920000pt;}
.xc0_c01206{left:257.280000pt;}
.x11_c01206{left:258.857387pt;}
.x39_c01206{left:259.923499pt;}
.x7d_c01206{left:263.348048pt;}
.x30_c01206{left:269.858667pt;}
.x27_c01206{left:279.736000pt;}
.x64_c01206{left:281.286293pt;}
.x55_c01206{left:282.365784pt;}
.x83_c01206{left:284.160000pt;}
.xbd_c01206{left:285.600000pt;}
.x3f_c01206{left:289.498728pt;}
.x5e_c01206{left:290.644621pt;}
.x6f_c01206{left:291.846547pt;}
.x3a_c01206{left:299.763597pt;}
.x90_c01206{left:302.880000pt;}
.x20_c01206{left:308.007293pt;}
.x28_c01206{left:309.048000pt;}
.x76_c01206{left:311.288051pt;}
.x9a_c01206{left:313.122667pt;}
.xb6_c01206{left:314.880000pt;}
.x7_c01206{left:318.632000pt;}
.x4d_c01206{left:319.682883pt;}
.x5f_c01206{left:321.605733pt;}
.x91_c01206{left:322.800000pt;}
.xae_c01206{left:324.720000pt;}
.x18_c01206{left:328.666053pt;}
.x70_c01206{left:330.966621pt;}
.x9c_c01206{left:332.640000pt;}
.xa1_c01206{left:334.560000pt;}
.x12_c01206{left:337.544293pt;}
.x31_c01206{left:338.494667pt;}
.x65_c01206{left:341.287120pt;}
.xaf_c01206{left:343.200000pt;}
.x1_c01206{left:345.120000pt;}
.x4f_c01206{left:348.965059pt;}
.x7e_c01206{left:351.203243pt;}
.x84_c01206{left:352.320000pt;}
.x13_c01206{left:356.532667pt;}
.x29_c01206{left:358.701333pt;}
.xa7_c01206{left:363.360000pt;}
.x2_c01206{left:365.520000pt;}
.x8_c01206{left:366.977333pt;}
.x32_c01206{left:368.504000pt;}
.x56_c01206{left:369.698883pt;}
.xb0_c01206{left:372.960000pt;}
.x19_c01206{left:376.679493pt;}
.x92_c01206{left:380.880000pt;}
.xb7_c01206{left:382.560000pt;}
.x21_c01206{left:386.729907pt;}
.x57_c01206{left:389.877189pt;}
.xa2_c01206{left:391.920000pt;}
.xc1_c01206{left:392.880000pt;}
.x40_c01206{left:397.262043pt;}
.x46_c01206{left:398.883883pt;}
.x7f_c01206{left:402.808888pt;}
.x3_c01206{left:405.120000pt;}
.x3b_c01206{left:407.286136pt;}
.x93_c01206{left:410.400000pt;}
.xa8_c01206{left:411.600000pt;}
.x41_c01206{left:416.718163pt;}
.x8b_c01206{left:420.240000pt;}
.xc2_c01206{left:423.120000pt;}
.x14_c01206{left:426.126053pt;}
.x50_c01206{left:428.166573pt;}
.x66_c01206{left:429.128947pt;}
.xce_c01206{left:434.247824pt;}
.x1a_c01206{left:435.726600pt;}
.x58_c01206{left:438.122984pt;}
.xa3_c01206{left:440.880000pt;}
.xc9_c01206{left:443.202667pt;}
.x9_c01206{left:445.105333pt;}
.x33_c01206{left:446.241333pt;}
.x67_c01206{left:448.329635pt;}
.x2a_c01206{left:455.445333pt;}
.x85_c01206{left:458.880000pt;}
.x94_c01206{left:460.320000pt;}
.xc3_c01206{left:461.760000pt;}
.xcf_c01206{left:463.504077pt;}
.x22_c01206{left:464.975160pt;}
.x42_c01206{left:466.158459pt;}
.xa4_c01206{left:470.160000pt;}
.xa_c01206{left:475.828000pt;}
.x8c_c01206{left:478.080000pt;}
.x9d_c01206{left:479.520000pt;}
.xbe_c01206{left:480.960000pt;}
.x3c_c01206{left:485.526285pt;}
.x60_c01206{left:486.729011pt;}
.x95_c01206{left:488.640000pt;}
.xa9_c01206{left:489.840000pt;}
.x51_c01206{left:495.607664pt;}
.x47_c01206{left:497.046085pt;}
.xa5_c01206{left:498.480000pt;}
.x9e_c01206{left:499.440000pt;}
.x1b_c01206{left:503.869987pt;}
.x34_c01206{left:506.021333pt;}
.x77_c01206{left:508.571147pt;}
.xb8_c01206{left:509.760000pt;}
.xd0_c01206{left:512.628001pt;}
.x68_c01206{left:516.970773pt;}
.xb_c01206{left:523.374667pt;}
.x48_c01206{left:526.807157pt;}
.x59_c01206{left:535.561232pt;}
.xa6_c01206{left:539.040000pt;}
.xca_c01206{left:541.366667pt;}
.x1c_c01206{left:543.488507pt;}
.x15_c01206{left:544.456427pt;}
.x52_c01206{left:546.248155pt;}
.x69_c01206{left:547.211861pt;}
.xd1_c01206{left:550.074483pt;}
.xc_c01206{left:554.312000pt;}
.x78_c01206{left:557.531573pt;}
.xbf_c01206{left:562.320000pt;}
.x23_c01206{left:563.618760pt;}
.x43_c01206{left:565.039051pt;}
.x71_c01206{left:566.891117pt;}
.x86_c01206{left:568.080000pt;}
.xb9_c01206{left:570.240000pt;}
.x2b_c01206{left:573.277333pt;}
.x3d_c01206{left:574.568160pt;}
.xd_c01206{left:582.412000pt;}
.x96_c01206{left:587.520000pt;}
.xaa_c01206{left:591.120000pt;}
.x5a_c01206{left:594.336176pt;}
.x9f_c01206{left:596.640000pt;}
.x35_c01206{left:602.974667pt;}
.x87_c01206{left:605.280000pt;}
.xc4_c01206{left:609.120000pt;}
.x3e_c01206{left:614.168251pt;}
.xb1_c01206{left:618.960000pt;}
.x61_c01206{left:624.011280pt;}
.x6a_c01206{left:624.973328pt;}
.x97_c01206{left:626.400000pt;}
.x36_c01206{left:632.016000pt;}
.x5b_c01206{left:635.155440pt;}
.x8d_c01206{left:636.240000pt;}
.xcb_c01206{left:639.010667pt;}
.x24_c01206{left:641.858667pt;}
.x1d_c01206{left:643.082160pt;}
.x6b_c01206{left:645.614072pt;}
.xab_c01206{left:648.000000pt;}
.x16_c01206{left:651.250560pt;}
.x80_c01206{left:652.645051pt;}
.xe_c01206{left:661.152000pt;}
.x72_c01206{left:664.093280pt;}
.x44_c01206{left:672.541032pt;}
.x88_c01206{left:674.880000pt;}
.x98_c01206{left:676.800000pt;}
.x2c_c01206{left:682.469333pt;}
.x53_c01206{left:683.530424pt;}
.x79_c01206{left:684.493475pt;}
.x49_c01206{left:693.609165pt;}
.x73_c01206{left:694.574376pt;}
.x8e_c01206{left:695.520000pt;}
.xac_c01206{left:696.480000pt;}
.xc5_c01206{left:698.400000pt;}
.x37_c01206{left:702.810667pt;}
.x6c_c01206{left:704.174851pt;}
.xb2_c01206{left:707.040000pt;}
.xcc_c01206{left:708.658667pt;}
.x7a_c01206{left:715.214579pt;}
}





/* 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_c01207 {
    display:none;
  }
  .loading-indicator_c01207.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01207 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_c01207 { 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_c01207" -> "#page-container .classname_c01207")
 */
.pf_c01207 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01207 { /* 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_c01207.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01207 { /* 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_c01207 { /* 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_c01207 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01207 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01207 {overflow:visible;}
  }
}
.c_c01207 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01207 { /* 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_c01207:after { /* webkit #35443 */
  content: '';
}
.t_c01207:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01207 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 */
}
.__c01207 { /* 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_c01207 { /* info for Javascript */
  display:none;
}
.l_c01207 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01207 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01207 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01207: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_c01207 {
    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_c01207.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01207.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_c01207 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01207{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01207;src:url('chunks/assets/font_cfe63ee56e9e10a97d33a3db.woff2')format("woff");}.ff1_c01207{font-family:ff1_c01207;line-height:1.000000;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;}
.me_c01207{transform:matrix(0.041752,-0.001672,0.010002,0.249800,0,0);-ms-transform:matrix(0.041752,-0.001672,0.010002,0.249800,0,0);-webkit-transform:matrix(0.041752,-0.001672,0.010002,0.249800,0,0);}
.m24_c01207{transform:matrix(0.054085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054085,0.000000,0.000000,0.250000,0,0);}
.m1f_c01207{transform:matrix(0.060210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060210,0.000000,0.000000,0.250000,0,0);}
.m1e_c01207{transform:matrix(0.065190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065190,0.000000,0.000000,0.250000,0,0);}
.m18_c01207{transform:matrix(0.085000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.085000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.085000,0.000000,0.000000,0.250000,0,0);}
.m19_c01207{transform:matrix(0.105120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105120,0.000000,0.000000,0.250000,0,0);}
.ma_c01207{transform:matrix(0.134588,-0.002692,0.004999,0.249950,0,0);-ms-transform:matrix(0.134588,-0.002692,0.004999,0.249950,0,0);-webkit-transform:matrix(0.134588,-0.002692,0.004999,0.249950,0,0);}
.m9_c01207{transform:matrix(0.135593,-0.002712,0.004999,0.249950,0,0);-ms-transform:matrix(0.135593,-0.002712,0.004999,0.249950,0,0);-webkit-transform:matrix(0.135593,-0.002712,0.004999,0.249950,0,0);}
.mc_c01207{transform:matrix(0.147640,-0.002953,0.004999,0.249950,0,0);-ms-transform:matrix(0.147640,-0.002953,0.004999,0.249950,0,0);-webkit-transform:matrix(0.147640,-0.002953,0.004999,0.249950,0,0);}
.m12_c01207{transform:matrix(0.148101,-0.005930,0.010002,0.249800,0,0);-ms-transform:matrix(0.148101,-0.005930,0.010002,0.249800,0,0);-webkit-transform:matrix(0.148101,-0.005930,0.010002,0.249800,0,0);}
.mb_c01207{transform:matrix(0.152385,-0.003048,0.004999,0.249950,0,0);-ms-transform:matrix(0.152385,-0.003048,0.004999,0.249950,0,0);-webkit-transform:matrix(0.152385,-0.003048,0.004999,0.249950,0,0);}
.m8_c01207{transform:matrix(0.154054,-0.003081,0.004999,0.249950,0,0);-ms-transform:matrix(0.154054,-0.003081,0.004999,0.249950,0,0);-webkit-transform:matrix(0.154054,-0.003081,0.004999,0.249950,0,0);}
.m1a_c01207{transform:matrix(0.167705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167705,0.000000,0.000000,0.250000,0,0);}
.m21_c01207{transform:matrix(0.169965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169965,0.000000,0.000000,0.250000,0,0);}
.m7_c01207{transform:matrix(0.176700,-0.003534,0.004999,0.249950,0,0);-ms-transform:matrix(0.176700,-0.003534,0.004999,0.249950,0,0);-webkit-transform:matrix(0.176700,-0.003534,0.004999,0.249950,0,0);}
.m2_c01207{transform:matrix(0.181339,-0.006898,0.009503,0.249819,0,0);-ms-transform:matrix(0.181339,-0.006898,0.009503,0.249819,0,0);-webkit-transform:matrix(0.181339,-0.006898,0.009503,0.249819,0,0);}
.m22_c01207{transform:matrix(0.193550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193550,0.000000,0.000000,0.250000,0,0);}
.m3_c01207{transform:matrix(0.194479,-0.007398,0.009503,0.249819,0,0);-ms-transform:matrix(0.194479,-0.007398,0.009503,0.249819,0,0);-webkit-transform:matrix(0.194479,-0.007398,0.009503,0.249819,0,0);}
.m5_c01207{transform:matrix(0.207050,-0.007876,0.009503,0.249819,0,0);-ms-transform:matrix(0.207050,-0.007876,0.009503,0.249819,0,0);-webkit-transform:matrix(0.207050,-0.007876,0.009503,0.249819,0,0);}
.m4_c01207{transform:matrix(0.211822,-0.008057,0.009503,0.249819,0,0);-ms-transform:matrix(0.211822,-0.008057,0.009503,0.249819,0,0);-webkit-transform:matrix(0.211822,-0.008057,0.009503,0.249819,0,0);}
.m17_c01207{transform:matrix(0.213019,-0.008529,0.010002,0.249800,0,0);-ms-transform:matrix(0.213019,-0.008529,0.010002,0.249800,0,0);-webkit-transform:matrix(0.213019,-0.008529,0.010002,0.249800,0,0);}
.md_c01207{transform:matrix(0.213127,-0.004263,0.004999,0.249950,0,0);-ms-transform:matrix(0.213127,-0.004263,0.004999,0.249950,0,0);-webkit-transform:matrix(0.213127,-0.004263,0.004999,0.249950,0,0);}
.m1_c01207{transform:matrix(0.215799,-0.008209,0.009503,0.249819,0,0);-ms-transform:matrix(0.215799,-0.008209,0.009503,0.249819,0,0);-webkit-transform:matrix(0.215799,-0.008209,0.009503,0.249819,0,0);}
.m16_c01207{transform:matrix(0.216202,-0.008657,0.010002,0.249800,0,0);-ms-transform:matrix(0.216202,-0.008657,0.010002,0.249800,0,0);-webkit-transform:matrix(0.216202,-0.008657,0.010002,0.249800,0,0);}
.m6_c01207{transform:matrix(0.220755,-0.008397,0.009503,0.249819,0,0);-ms-transform:matrix(0.220755,-0.008397,0.009503,0.249819,0,0);-webkit-transform:matrix(0.220755,-0.008397,0.009503,0.249819,0,0);}
.m23_c01207{transform:matrix(0.222740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222740,0.000000,0.000000,0.250000,0,0);}
.m1b_c01207{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m15_c01207{transform:matrix(0.231734,-0.009279,0.010002,0.249800,0,0);-ms-transform:matrix(0.231734,-0.009279,0.010002,0.249800,0,0);-webkit-transform:matrix(0.231734,-0.009279,0.010002,0.249800,0,0);}
.m11_c01207{transform:matrix(0.232833,-0.009323,0.010002,0.249800,0,0);-ms-transform:matrix(0.232833,-0.009323,0.010002,0.249800,0,0);-webkit-transform:matrix(0.232833,-0.009323,0.010002,0.249800,0,0);}
.m13_c01207{transform:matrix(0.245813,-0.009842,0.010002,0.249800,0,0);-ms-transform:matrix(0.245813,-0.009842,0.010002,0.249800,0,0);-webkit-transform:matrix(0.245813,-0.009842,0.010002,0.249800,0,0);}
.m10_c01207{transform:matrix(0.259982,-0.010410,0.010002,0.249800,0,0);-ms-transform:matrix(0.259982,-0.010410,0.010002,0.249800,0,0);-webkit-transform:matrix(0.259982,-0.010410,0.010002,0.249800,0,0);}
.m25_c01207{transform:matrix(0.288140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288140,0.000000,0.000000,0.250000,0,0);}
.m14_c01207{transform:matrix(0.289653,-0.011598,0.010002,0.249800,0,0);-ms-transform:matrix(0.289653,-0.011598,0.010002,0.249800,0,0);-webkit-transform:matrix(0.289653,-0.011598,0.010002,0.249800,0,0);}
.mf_c01207{transform:matrix(0.333738,-0.013363,0.010002,0.249800,0,0);-ms-transform:matrix(0.333738,-0.013363,0.010002,0.249800,0,0);-webkit-transform:matrix(0.333738,-0.013363,0.010002,0.249800,0,0);}
.m1d_c01207{transform:matrix(0.335410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335410,0.000000,0.000000,0.250000,0,0);}
.m20_c01207{transform:matrix(0.350180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350180,0.000000,0.000000,0.250000,0,0);}
.m1c_c01207{transform:matrix(0.379475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379475,0.000000,0.000000,0.250000,0,0);}
.m0_c01207{transform:matrix(0.765310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.765310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.765310,0.000000,0.000000,0.250000,0,0);}
.v0_c01207{vertical-align:0.000000px;}
.ls0_c01207{letter-spacing:0.000000px;}
.sc__c01207{text-shadow:none;}
.sc0_c01207{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__c01207{-webkit-text-stroke:0px transparent;}
.sc0_c01207{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01207{word-spacing:0.000000px;}
.fc0_c01207{color:transparent;}
.fs5_c01207{font-size:12.000000px;}
.fs0_c01207{font-size:18.000000px;}
.fs4_c01207{font-size:54.000000px;}
.fs1_c01207{font-size:89.975022px;}
.fs3_c01207{font-size:89.982043px;}
.fs2_c01207{font-size:132.026397px;}
.y0_c01207{bottom:0.000000px;}
.y24_c01207{bottom:54.270000px;}
.y23_c01207{bottom:192.240000px;}
.y22_c01207{bottom:295.515000px;}
.y21_c01207{bottom:303.210000px;}
.y20_c01207{bottom:342.900000px;}
.y1f_c01207{bottom:390.960000px;}
.y1e_c01207{bottom:486.000000px;}
.y1d_c01207{bottom:585.765000px;}
.y1c_c01207{bottom:599.530500px;}
.y1b_c01207{bottom:614.509500px;}
.y1a_c01207{bottom:627.345000px;}
.y19_c01207{bottom:639.225000px;}
.yf_c01207{bottom:810.882000px;}
.y10_c01207{bottom:828.050640px;}
.y11_c01207{bottom:830.047500px;}
.y12_c01207{bottom:831.291120px;}
.y13_c01207{bottom:832.357740px;}
.y14_c01207{bottom:833.155860px;}
.y15_c01207{bottom:834.622620px;}
.y16_c01207{bottom:836.179140px;}
.y17_c01207{bottom:839.256420px;}
.y18_c01207{bottom:845.587080px;}
.y8_c01207{bottom:1033.843500px;}
.y9_c01207{bottom:1036.061700px;}
.ya_c01207{bottom:1038.295140px;}
.yb_c01207{bottom:1039.203900px;}
.yc_c01207{bottom:1039.830930px;}
.yd_c01207{bottom:1040.715720px;}
.ye_c01207{bottom:1042.012110px;}
.y2_c01207{bottom:1120.756500px;}
.y3_c01207{bottom:1123.360260px;}
.y4_c01207{bottom:1124.685567px;}
.y5_c01207{bottom:1125.778314px;}
.y6_c01207{bottom:1127.989629px;}
.y7_c01207{bottom:1129.471458px;}
.y1_c01207{bottom:1245.910500px;}
.h7_c01207{height:12.000000px;}
.h2_c01207{height:18.000000px;}
.h6_c01207{height:54.000000px;}
.h3_c01207{height:89.975022px;}
.h5_c01207{height:89.982043px;}
.h4_c01207{height:132.026397px;}
.h1_c01207{height:1258.500000px;}
.h0_c01207{height:1258.740000px;}
.w0_c01207{width:904.200000px;}
.w1_c01207{width:904.500000px;}
.x0_c01207{left:0.000000px;}
.xe_c01207{left:6.930000px;}
.x8_c01207{left:60.858000px;}
.x2_c01207{left:169.680000px;}
.x9_c01207{left:171.768000px;}
.x3_c01207{left:238.131480px;}
.x4_c01207{left:272.973103px;}
.xa_c01207{left:283.440000px;}
.x5_c01207{left:301.700847px;}
.xb_c01207{left:328.878000px;}
.x1_c01207{left:353.970000px;}
.x6_c01207{left:359.835155px;}
.x7_c01207{left:398.791659px;}
.xc_c01207{left:404.469000px;}
.xf_c01207{left:435.716784px;}
.xd_c01207{left:469.288500px;}
.x10_c01207{left:485.588363px;}
.x11_c01207{left:516.647772px;}
.x12_c01207{left:543.286607px;}
.x13_c01207{left:563.219654px;}
.x14_c01207{left:599.851985px;}
.x15_c01207{left:638.726071px;}
.x16_c01207{left:715.581140px;}
.x22_c01207{left:804.330000px;}
.x1f_c01207{left:831.600000px;}
.x23_c01207{left:835.920000px;}
.x20_c01207{left:841.860000px;}
.x1a_c01207{left:848.340000px;}
.x17_c01207{left:873.689373px;}
.x1c_c01207{left:875.070000px;}
.x1e_c01207{left:881.010000px;}
.x21_c01207{left:888.570000px;}
.x1b_c01207{left:889.650000px;}
.x1d_c01207{left:896.130000px;}
.x18_c01207{left:898.020000px;}
.x19_c01207{left:899.100000px;}
@media print{
.v0_c01207{vertical-align:0.000000pt;}
.ls0_c01207{letter-spacing:0.000000pt;}
.ws0_c01207{word-spacing:0.000000pt;}
.fs5_c01207{font-size:10.666667pt;}
.fs0_c01207{font-size:16.000000pt;}
.fs4_c01207{font-size:48.000000pt;}
.fs1_c01207{font-size:79.977797pt;}
.fs3_c01207{font-size:79.984038pt;}
.fs2_c01207{font-size:117.356798pt;}
.y0_c01207{bottom:0.000000pt;}
.y24_c01207{bottom:48.240000pt;}
.y23_c01207{bottom:170.880000pt;}
.y22_c01207{bottom:262.680000pt;}
.y21_c01207{bottom:269.520000pt;}
.y20_c01207{bottom:304.800000pt;}
.y1f_c01207{bottom:347.520000pt;}
.y1e_c01207{bottom:432.000000pt;}
.y1d_c01207{bottom:520.680000pt;}
.y1c_c01207{bottom:532.916000pt;}
.y1b_c01207{bottom:546.230667pt;}
.y1a_c01207{bottom:557.640000pt;}
.y19_c01207{bottom:568.200000pt;}
.yf_c01207{bottom:720.784000pt;}
.y10_c01207{bottom:736.045013pt;}
.y11_c01207{bottom:737.820000pt;}
.y12_c01207{bottom:738.925440pt;}
.y13_c01207{bottom:739.873547pt;}
.y14_c01207{bottom:740.582987pt;}
.y15_c01207{bottom:741.886773pt;}
.y16_c01207{bottom:743.270347pt;}
.y17_c01207{bottom:746.005707pt;}
.y18_c01207{bottom:751.632960pt;}
.y8_c01207{bottom:918.972000pt;}
.y9_c01207{bottom:920.943733pt;}
.ya_c01207{bottom:922.929013pt;}
.yb_c01207{bottom:923.736800pt;}
.yc_c01207{bottom:924.294160pt;}
.yd_c01207{bottom:925.080640pt;}
.ye_c01207{bottom:926.232987pt;}
.y2_c01207{bottom:996.228000pt;}
.y3_c01207{bottom:998.542453pt;}
.y4_c01207{bottom:999.720504pt;}
.y5_c01207{bottom:1000.691835pt;}
.y6_c01207{bottom:1002.657448pt;}
.y7_c01207{bottom:1003.974629pt;}
.y1_c01207{bottom:1107.476000pt;}
.h7_c01207{height:10.666667pt;}
.h2_c01207{height:16.000000pt;}
.h6_c01207{height:48.000000pt;}
.h3_c01207{height:79.977797pt;}
.h5_c01207{height:79.984038pt;}
.h4_c01207{height:117.356798pt;}
.h1_c01207{height:1118.666667pt;}
.h0_c01207{height:1118.880000pt;}
.w0_c01207{width:803.733333pt;}
.w1_c01207{width:804.000000pt;}
.x0_c01207{left:0.000000pt;}
.xe_c01207{left:6.160000pt;}
.x8_c01207{left:54.096000pt;}
.x2_c01207{left:150.826667pt;}
.x9_c01207{left:152.682667pt;}
.x3_c01207{left:211.672427pt;}
.x4_c01207{left:242.642759pt;}
.xa_c01207{left:251.946667pt;}
.x5_c01207{left:268.178531pt;}
.xb_c01207{left:292.336000pt;}
.x1_c01207{left:314.640000pt;}
.x6_c01207{left:319.853471pt;}
.x7_c01207{left:354.481475pt;}
.xc_c01207{left:359.528000pt;}
.xf_c01207{left:387.303808pt;}
.xd_c01207{left:417.145333pt;}
.x10_c01207{left:431.634100pt;}
.x11_c01207{left:459.242464pt;}
.x12_c01207{left:482.921428pt;}
.x13_c01207{left:500.639692pt;}
.x14_c01207{left:533.201764pt;}
.x15_c01207{left:567.756508pt;}
.x16_c01207{left:636.072124pt;}
.x22_c01207{left:714.960000pt;}
.x1f_c01207{left:739.200000pt;}
.x23_c01207{left:743.040000pt;}
.x20_c01207{left:748.320000pt;}
.x1a_c01207{left:754.080000pt;}
.x17_c01207{left:776.612776pt;}
.x1c_c01207{left:777.840000pt;}
.x1e_c01207{left:783.120000pt;}
.x21_c01207{left:789.840000pt;}
.x1b_c01207{left:790.800000pt;}
.x1d_c01207{left:796.560000pt;}
.x18_c01207{left:798.240000pt;}
.x19_c01207{left:799.200000pt;}
}





/* 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_c01208 {
    display:none;
  }
  .loading-indicator_c01208.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01208 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_c01208 { 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_c01208" -> "#page-container .classname_c01208")
 */
.pf_c01208 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01208 { /* 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_c01208.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01208 { /* 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_c01208 { /* 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_c01208 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01208 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01208 {overflow:visible;}
  }
}
.c_c01208 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01208 { /* 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_c01208:after { /* webkit #35443 */
  content: '';
}
.t_c01208:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01208 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 */
}
.__c01208 { /* 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_c01208 { /* info for Javascript */
  display:none;
}
.l_c01208 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01208 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01208 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01208: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_c01208 {
    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_c01208.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01208.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_c01208 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01208{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01208;src:url('chunks/assets/font_cfe63ee56e9e10a97d33a3db.woff2')format("woff");}.ff1_c01208{font-family:ff1_c01208;line-height:1.000000;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;}
.mbe_c01208{transform:matrix(0.017345,0.000590,-0.008504,0.249855,0,0);-ms-transform:matrix(0.017345,0.000590,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.017345,0.000590,-0.008504,0.249855,0,0);}
.m134_c01208{transform:matrix(0.144035,0.003169,-0.005499,0.249940,0,0);-ms-transform:matrix(0.144035,0.003169,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.144035,0.003169,-0.005499,0.249940,0,0);}
.m6d_c01208{transform:matrix(0.154264,0.003085,-0.004999,0.249950,0,0);-ms-transform:matrix(0.154264,0.003085,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.154264,0.003085,-0.004999,0.249950,0,0);}
.m13e_c01208{transform:matrix(0.154328,0.003395,-0.005499,0.249940,0,0);-ms-transform:matrix(0.154328,0.003395,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.154328,0.003395,-0.005499,0.249940,0,0);}
.m1_c01208{transform:matrix(0.156100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156100,0.000000,0.000000,0.250000,0,0);}
.m137_c01208{transform:matrix(0.164810,0.003626,-0.005499,0.249940,0,0);-ms-transform:matrix(0.164810,0.003626,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.164810,0.003626,-0.005499,0.249940,0,0);}
.m140_c01208{transform:matrix(0.166110,0.003654,-0.005499,0.249940,0,0);-ms-transform:matrix(0.166110,0.003654,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.166110,0.003654,-0.005499,0.249940,0,0);}
.m142_c01208{transform:matrix(0.169204,0.003722,-0.005499,0.249940,0,0);-ms-transform:matrix(0.169204,0.003722,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.169204,0.003722,-0.005499,0.249940,0,0);}
.m13a_c01208{transform:matrix(0.169839,0.003736,-0.005499,0.249940,0,0);-ms-transform:matrix(0.169839,0.003736,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.169839,0.003736,-0.005499,0.249940,0,0);}
.m11d_c01208{transform:matrix(0.176376,0.006356,-0.009003,0.249838,0,0);-ms-transform:matrix(0.176376,0.006356,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.176376,0.006356,-0.009003,0.249838,0,0);}
.m139_c01208{transform:matrix(0.176812,0.003890,-0.005499,0.249940,0,0);-ms-transform:matrix(0.176812,0.003890,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.176812,0.003890,-0.005499,0.249940,0,0);}
.m100_c01208{transform:matrix(0.178592,0.006078,-0.008504,0.249855,0,0);-ms-transform:matrix(0.178592,0.006078,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.178592,0.006078,-0.008504,0.249855,0,0);}
.m136_c01208{transform:matrix(0.178632,0.003930,-0.005499,0.249940,0,0);-ms-transform:matrix(0.178632,0.003930,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.178632,0.003930,-0.005499,0.249940,0,0);}
.m6f_c01208{transform:matrix(0.178886,0.006088,-0.008504,0.249855,0,0);-ms-transform:matrix(0.178886,0.006088,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.178886,0.006088,-0.008504,0.249855,0,0);}
.m141_c01208{transform:matrix(0.178932,0.003936,-0.005499,0.249940,0,0);-ms-transform:matrix(0.178932,0.003936,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.178932,0.003936,-0.005499,0.249940,0,0);}
.m13b_c01208{transform:matrix(0.184985,0.004070,-0.005499,0.249940,0,0);-ms-transform:matrix(0.184985,0.004070,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.184985,0.004070,-0.005499,0.249940,0,0);}
.m135_c01208{transform:matrix(0.186160,0.004096,-0.005499,0.249940,0,0);-ms-transform:matrix(0.186160,0.004096,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.186160,0.004096,-0.005499,0.249940,0,0);}
.m138_c01208{transform:matrix(0.189144,0.004161,-0.005499,0.249940,0,0);-ms-transform:matrix(0.189144,0.004161,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.189144,0.004161,-0.005499,0.249940,0,0);}
.md1_c01208{transform:matrix(0.190879,0.006496,-0.008504,0.249855,0,0);-ms-transform:matrix(0.190879,0.006496,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.190879,0.006496,-0.008504,0.249855,0,0);}
.ma1_c01208{transform:matrix(0.191594,0.006521,-0.008504,0.249855,0,0);-ms-transform:matrix(0.191594,0.006521,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.191594,0.006521,-0.008504,0.249855,0,0);}
.m127_c01208{transform:matrix(0.193464,0.006972,-0.009003,0.249838,0,0);-ms-transform:matrix(0.193464,0.006972,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.193464,0.006972,-0.009003,0.249838,0,0);}
.m1d_c01208{transform:matrix(0.194667,0.006625,-0.008504,0.249855,0,0);-ms-transform:matrix(0.194667,0.006625,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.194667,0.006625,-0.008504,0.249855,0,0);}
.m133_c01208{transform:matrix(0.195888,0.004310,-0.005499,0.249940,0,0);-ms-transform:matrix(0.195888,0.004310,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.195888,0.004310,-0.005499,0.249940,0,0);}
.mf8_c01208{transform:matrix(0.197026,0.006706,-0.008504,0.249855,0,0);-ms-transform:matrix(0.197026,0.006706,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.197026,0.006706,-0.008504,0.249855,0,0);}
.m20_c01208{transform:matrix(0.199005,0.006773,-0.008504,0.249855,0,0);-ms-transform:matrix(0.199005,0.006773,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.199005,0.006773,-0.008504,0.249855,0,0);}
.m1c_c01208{transform:matrix(0.203197,0.006916,-0.008504,0.249855,0,0);-ms-transform:matrix(0.203197,0.006916,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.203197,0.006916,-0.008504,0.249855,0,0);}
.m13c_c01208{transform:matrix(0.203241,0.004471,-0.005499,0.249940,0,0);-ms-transform:matrix(0.203241,0.004471,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.203241,0.004471,-0.005499,0.249940,0,0);}
.m132_c01208{transform:matrix(0.203351,0.004474,-0.005499,0.249940,0,0);-ms-transform:matrix(0.203351,0.004474,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.203351,0.004474,-0.005499,0.249940,0,0);}
.m13f_c01208{transform:matrix(0.204286,0.004494,-0.005499,0.249940,0,0);-ms-transform:matrix(0.204286,0.004494,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.204286,0.004494,-0.005499,0.249940,0,0);}
.m1e_c01208{transform:matrix(0.208060,0.007081,-0.008504,0.249855,0,0);-ms-transform:matrix(0.208060,0.007081,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.208060,0.007081,-0.008504,0.249855,0,0);}
.m81_c01208{transform:matrix(0.208154,0.007084,-0.008504,0.249855,0,0);-ms-transform:matrix(0.208154,0.007084,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.208154,0.007084,-0.008504,0.249855,0,0);}
.m12_c01208{transform:matrix(0.208279,0.005624,-0.006748,0.249909,0,0);-ms-transform:matrix(0.208279,0.005624,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.208279,0.005624,-0.006748,0.249909,0,0);}
.mff_c01208{transform:matrix(0.208634,0.007101,-0.008504,0.249855,0,0);-ms-transform:matrix(0.208634,0.007101,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.208634,0.007101,-0.008504,0.249855,0,0);}
.m121_c01208{transform:matrix(0.210483,0.007585,-0.009003,0.249838,0,0);-ms-transform:matrix(0.210483,0.007585,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.210483,0.007585,-0.009003,0.249838,0,0);}
.m3a_c01208{transform:matrix(0.212812,0.007243,-0.008504,0.249855,0,0);-ms-transform:matrix(0.212812,0.007243,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.212812,0.007243,-0.008504,0.249855,0,0);}
.m12b_c01208{transform:matrix(0.213461,0.007692,-0.009003,0.249838,0,0);-ms-transform:matrix(0.213461,0.007692,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.213461,0.007692,-0.009003,0.249838,0,0);}
.ma7_c01208{transform:matrix(0.213936,0.007281,-0.008504,0.249855,0,0);-ms-transform:matrix(0.213936,0.007281,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.213936,0.007281,-0.008504,0.249855,0,0);}
.mf9_c01208{transform:matrix(0.215630,0.007339,-0.008504,0.249855,0,0);-ms-transform:matrix(0.215630,0.007339,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.215630,0.007339,-0.008504,0.249855,0,0);}
.m58_c01208{transform:matrix(0.215890,0.007348,-0.008504,0.249855,0,0);-ms-transform:matrix(0.215890,0.007348,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.215890,0.007348,-0.008504,0.249855,0,0);}
.m8f_c01208{transform:matrix(0.216230,0.007359,-0.008504,0.249855,0,0);-ms-transform:matrix(0.216230,0.007359,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.216230,0.007359,-0.008504,0.249855,0,0);}
.me0_c01208{transform:matrix(0.219033,0.007455,-0.008504,0.249855,0,0);-ms-transform:matrix(0.219033,0.007455,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.219033,0.007455,-0.008504,0.249855,0,0);}
.m56_c01208{transform:matrix(0.219188,0.007460,-0.008504,0.249855,0,0);-ms-transform:matrix(0.219188,0.007460,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.219188,0.007460,-0.008504,0.249855,0,0);}
.m69_c01208{transform:matrix(0.220211,0.004404,-0.004999,0.249950,0,0);-ms-transform:matrix(0.220211,0.004404,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.220211,0.004404,-0.004999,0.249950,0,0);}
.m125_c01208{transform:matrix(0.222346,0.008012,-0.009003,0.249838,0,0);-ms-transform:matrix(0.222346,0.008012,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.222346,0.008012,-0.009003,0.249838,0,0);}
.m114_c01208{transform:matrix(0.222466,0.008017,-0.009003,0.249838,0,0);-ms-transform:matrix(0.222466,0.008017,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.222466,0.008017,-0.009003,0.249838,0,0);}
.md3_c01208{transform:matrix(0.223176,0.007596,-0.008504,0.249855,0,0);-ms-transform:matrix(0.223176,0.007596,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.223176,0.007596,-0.008504,0.249855,0,0);}
.m52_c01208{transform:matrix(0.223266,0.007599,-0.008504,0.249855,0,0);-ms-transform:matrix(0.223266,0.007599,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.223266,0.007599,-0.008504,0.249855,0,0);}
.m59_c01208{transform:matrix(0.223466,0.007605,-0.008504,0.249855,0,0);-ms-transform:matrix(0.223466,0.007605,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.223466,0.007605,-0.008504,0.249855,0,0);}
.md9_c01208{transform:matrix(0.223476,0.007606,-0.008504,0.249855,0,0);-ms-transform:matrix(0.223476,0.007606,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.223476,0.007606,-0.008504,0.249855,0,0);}
.m11f_c01208{transform:matrix(0.223900,0.008068,-0.009003,0.249838,0,0);-ms-transform:matrix(0.223900,0.008068,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.223900,0.008068,-0.009003,0.249838,0,0);}
.m105_c01208{transform:matrix(0.223945,0.007622,-0.008504,0.249855,0,0);-ms-transform:matrix(0.223945,0.007622,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.223945,0.007622,-0.008504,0.249855,0,0);}
.m120_c01208{transform:matrix(0.224524,0.008091,-0.009003,0.249838,0,0);-ms-transform:matrix(0.224524,0.008091,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.224524,0.008091,-0.009003,0.249838,0,0);}
.m1a_c01208{transform:matrix(0.224540,0.007642,-0.008504,0.249855,0,0);-ms-transform:matrix(0.224540,0.007642,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.224540,0.007642,-0.008504,0.249855,0,0);}
.m51_c01208{transform:matrix(0.224900,0.007654,-0.008504,0.249855,0,0);-ms-transform:matrix(0.224900,0.007654,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.224900,0.007654,-0.008504,0.249855,0,0);}
.m130_c01208{transform:matrix(0.225918,0.008141,-0.009003,0.249838,0,0);-ms-transform:matrix(0.225918,0.008141,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.225918,0.008141,-0.009003,0.249838,0,0);}
.ma9_c01208{transform:matrix(0.225989,0.007691,-0.008504,0.249855,0,0);-ms-transform:matrix(0.225989,0.007691,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.225989,0.007691,-0.008504,0.249855,0,0);}
.mda_c01208{transform:matrix(0.226709,0.007716,-0.008504,0.249855,0,0);-ms-transform:matrix(0.226709,0.007716,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.226709,0.007716,-0.008504,0.249855,0,0);}
.m13d_c01208{transform:matrix(0.227555,0.005006,-0.005499,0.249940,0,0);-ms-transform:matrix(0.227555,0.005006,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.227555,0.005006,-0.005499,0.249940,0,0);}
.m92_c01208{transform:matrix(0.227718,0.007750,-0.008504,0.249855,0,0);-ms-transform:matrix(0.227718,0.007750,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.227718,0.007750,-0.008504,0.249855,0,0);}
.m22_c01208{transform:matrix(0.228763,0.007786,-0.008504,0.249855,0,0);-ms-transform:matrix(0.228763,0.007786,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.228763,0.007786,-0.008504,0.249855,0,0);}
.m104_c01208{transform:matrix(0.230152,0.007833,-0.008504,0.249855,0,0);-ms-transform:matrix(0.230152,0.007833,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.230152,0.007833,-0.008504,0.249855,0,0);}
.mf7_c01208{transform:matrix(0.230452,0.007843,-0.008504,0.249855,0,0);-ms-transform:matrix(0.230452,0.007843,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.230452,0.007843,-0.008504,0.249855,0,0);}
.m97_c01208{transform:matrix(0.230591,0.007848,-0.008504,0.249855,0,0);-ms-transform:matrix(0.230591,0.007848,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.230591,0.007848,-0.008504,0.249855,0,0);}
.m101_c01208{transform:matrix(0.230651,0.007850,-0.008504,0.249855,0,0);-ms-transform:matrix(0.230651,0.007850,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.230651,0.007850,-0.008504,0.249855,0,0);}
.m6b_c01208{transform:matrix(0.231029,0.004621,-0.004999,0.249950,0,0);-ms-transform:matrix(0.231029,0.004621,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.231029,0.004621,-0.004999,0.249950,0,0);}
.m8d_c01208{transform:matrix(0.231066,0.007864,-0.008504,0.249855,0,0);-ms-transform:matrix(0.231066,0.007864,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.231066,0.007864,-0.008504,0.249855,0,0);}
.m19_c01208{transform:matrix(0.231316,0.007873,-0.008504,0.249855,0,0);-ms-transform:matrix(0.231316,0.007873,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.231316,0.007873,-0.008504,0.249855,0,0);}
.m5f_c01208{transform:matrix(0.231686,0.007885,-0.008504,0.249855,0,0);-ms-transform:matrix(0.231686,0.007885,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.231686,0.007885,-0.008504,0.249855,0,0);}
.m17_c01208{transform:matrix(0.231975,0.006263,-0.006748,0.249909,0,0);-ms-transform:matrix(0.231975,0.006263,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.231975,0.006263,-0.006748,0.249909,0,0);}
.mfd_c01208{transform:matrix(0.232875,0.007926,-0.008504,0.249855,0,0);-ms-transform:matrix(0.232875,0.007926,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.232875,0.007926,-0.008504,0.249855,0,0);}
.m4_c01208{transform:matrix(0.232935,0.006289,-0.006748,0.249909,0,0);-ms-transform:matrix(0.232935,0.006289,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.232935,0.006289,-0.006748,0.249909,0,0);}
.mbd_c01208{transform:matrix(0.233305,0.007940,-0.008504,0.249855,0,0);-ms-transform:matrix(0.233305,0.007940,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.233305,0.007940,-0.008504,0.249855,0,0);}
.md6_c01208{transform:matrix(0.233525,0.007948,-0.008504,0.249855,0,0);-ms-transform:matrix(0.233525,0.007948,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.233525,0.007948,-0.008504,0.249855,0,0);}
.mf_c01208{transform:matrix(0.233650,0.006309,-0.006748,0.249909,0,0);-ms-transform:matrix(0.233650,0.006309,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.233650,0.006309,-0.006748,0.249909,0,0);}
.mb8_c01208{transform:matrix(0.233745,0.007955,-0.008504,0.249855,0,0);-ms-transform:matrix(0.233745,0.007955,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.233745,0.007955,-0.008504,0.249855,0,0);}
.m11c_c01208{transform:matrix(0.233793,0.008425,-0.009003,0.249838,0,0);-ms-transform:matrix(0.233793,0.008425,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.233793,0.008425,-0.009003,0.249838,0,0);}
.m5d_c01208{transform:matrix(0.234154,0.007969,-0.008504,0.249855,0,0);-ms-transform:matrix(0.234154,0.007969,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.234154,0.007969,-0.008504,0.249855,0,0);}
.m31_c01208{transform:matrix(0.234364,0.007976,-0.008504,0.249855,0,0);-ms-transform:matrix(0.234364,0.007976,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.234364,0.007976,-0.008504,0.249855,0,0);}
.m74_c01208{transform:matrix(0.234539,0.007982,-0.008504,0.249855,0,0);-ms-transform:matrix(0.234539,0.007982,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.234539,0.007982,-0.008504,0.249855,0,0);}
.m82_c01208{transform:matrix(0.234579,0.007984,-0.008504,0.249855,0,0);-ms-transform:matrix(0.234579,0.007984,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.234579,0.007984,-0.008504,0.249855,0,0);}
.m45_c01208{transform:matrix(0.234824,0.007992,-0.008504,0.249855,0,0);-ms-transform:matrix(0.234824,0.007992,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.234824,0.007992,-0.008504,0.249855,0,0);}
.m6e_c01208{transform:matrix(0.234993,0.004700,-0.004999,0.249950,0,0);-ms-transform:matrix(0.234993,0.004700,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.234993,0.004700,-0.004999,0.249950,0,0);}
.m9f_c01208{transform:matrix(0.235184,0.008004,-0.008504,0.249855,0,0);-ms-transform:matrix(0.235184,0.008004,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.235184,0.008004,-0.008504,0.249855,0,0);}
.m103_c01208{transform:matrix(0.235888,0.008028,-0.008504,0.249855,0,0);-ms-transform:matrix(0.235888,0.008028,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.235888,0.008028,-0.008504,0.249855,0,0);}
.m21_c01208{transform:matrix(0.235973,0.008031,-0.008504,0.249855,0,0);-ms-transform:matrix(0.235973,0.008031,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.235973,0.008031,-0.008504,0.249855,0,0);}
.m111_c01208{transform:matrix(0.236006,0.009686,-0.010252,0.249790,0,0);-ms-transform:matrix(0.236006,0.009686,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.236006,0.009686,-0.010252,0.249790,0,0);}
.m7c_c01208{transform:matrix(0.236648,0.008054,-0.008504,0.249855,0,0);-ms-transform:matrix(0.236648,0.008054,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.236648,0.008054,-0.008504,0.249855,0,0);}
.mb1_c01208{transform:matrix(0.237393,0.008079,-0.008504,0.249855,0,0);-ms-transform:matrix(0.237393,0.008079,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.237393,0.008079,-0.008504,0.249855,0,0);}
.m95_c01208{transform:matrix(0.237777,0.008093,-0.008504,0.249855,0,0);-ms-transform:matrix(0.237777,0.008093,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.237777,0.008093,-0.008504,0.249855,0,0);}
.m94_c01208{transform:matrix(0.238092,0.008103,-0.008504,0.249855,0,0);-ms-transform:matrix(0.238092,0.008103,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.238092,0.008103,-0.008504,0.249855,0,0);}
.mde_c01208{transform:matrix(0.238362,0.008112,-0.008504,0.249855,0,0);-ms-transform:matrix(0.238362,0.008112,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.238362,0.008112,-0.008504,0.249855,0,0);}
.mca_c01208{transform:matrix(0.238947,0.008132,-0.008504,0.249855,0,0);-ms-transform:matrix(0.238947,0.008132,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.238947,0.008132,-0.008504,0.249855,0,0);}
.m11a_c01208{transform:matrix(0.239435,0.008628,-0.009003,0.249838,0,0);-ms-transform:matrix(0.239435,0.008628,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.239435,0.008628,-0.009003,0.249838,0,0);}
.mfc_c01208{transform:matrix(0.239586,0.008154,-0.008504,0.249855,0,0);-ms-transform:matrix(0.239586,0.008154,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.239586,0.008154,-0.008504,0.249855,0,0);}
.m72_c01208{transform:matrix(0.239926,0.008166,-0.008504,0.249855,0,0);-ms-transform:matrix(0.239926,0.008166,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.239926,0.008166,-0.008504,0.249855,0,0);}
.mfe_c01208{transform:matrix(0.240051,0.008170,-0.008504,0.249855,0,0);-ms-transform:matrix(0.240051,0.008170,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.240051,0.008170,-0.008504,0.249855,0,0);}
.m2d_c01208{transform:matrix(0.240416,0.008182,-0.008504,0.249855,0,0);-ms-transform:matrix(0.240416,0.008182,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.240416,0.008182,-0.008504,0.249855,0,0);}
.m96_c01208{transform:matrix(0.241495,0.008219,-0.008504,0.249855,0,0);-ms-transform:matrix(0.241495,0.008219,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.241495,0.008219,-0.008504,0.249855,0,0);}
.m46_c01208{transform:matrix(0.241605,0.008223,-0.008504,0.249855,0,0);-ms-transform:matrix(0.241605,0.008223,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.241605,0.008223,-0.008504,0.249855,0,0);}
.mcf_c01208{transform:matrix(0.241820,0.008230,-0.008504,0.249855,0,0);-ms-transform:matrix(0.241820,0.008230,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.241820,0.008230,-0.008504,0.249855,0,0);}
.m5b_c01208{transform:matrix(0.242515,0.008254,-0.008504,0.249855,0,0);-ms-transform:matrix(0.242515,0.008254,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.242515,0.008254,-0.008504,0.249855,0,0);}
.m7a_c01208{transform:matrix(0.242585,0.008256,-0.008504,0.249855,0,0);-ms-transform:matrix(0.242585,0.008256,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.242585,0.008256,-0.008504,0.249855,0,0);}
.m64_c01208{transform:matrix(0.243564,0.008289,-0.008504,0.249855,0,0);-ms-transform:matrix(0.243564,0.008289,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.243564,0.008289,-0.008504,0.249855,0,0);}
.m110_c01208{transform:matrix(0.243730,0.010003,-0.010252,0.249790,0,0);-ms-transform:matrix(0.243730,0.010003,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.243730,0.010003,-0.010252,0.249790,0,0);}
.m77_c01208{transform:matrix(0.244189,0.008311,-0.008504,0.249855,0,0);-ms-transform:matrix(0.244189,0.008311,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.244189,0.008311,-0.008504,0.249855,0,0);}
.m70_c01208{transform:matrix(0.244398,0.008318,-0.008504,0.249855,0,0);-ms-transform:matrix(0.244398,0.008318,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.244398,0.008318,-0.008504,0.249855,0,0);}
.m3_c01208{transform:matrix(0.244441,0.006600,-0.006748,0.249909,0,0);-ms-transform:matrix(0.244441,0.006600,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.244441,0.006600,-0.006748,0.249909,0,0);}
.me1_c01208{transform:matrix(0.245113,0.008342,-0.008504,0.249855,0,0);-ms-transform:matrix(0.245113,0.008342,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.245113,0.008342,-0.008504,0.249855,0,0);}
.m124_c01208{transform:matrix(0.245196,0.008836,-0.009003,0.249838,0,0);-ms-transform:matrix(0.245196,0.008836,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.245196,0.008836,-0.009003,0.249838,0,0);}
.m129_c01208{transform:matrix(0.245316,0.008840,-0.009003,0.249838,0,0);-ms-transform:matrix(0.245316,0.008840,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.245316,0.008840,-0.009003,0.249838,0,0);}
.m5e_c01208{transform:matrix(0.246172,0.008378,-0.008504,0.249855,0,0);-ms-transform:matrix(0.246172,0.008378,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.246172,0.008378,-0.008504,0.249855,0,0);}
.me3_c01208{transform:matrix(0.246397,0.008386,-0.008504,0.249855,0,0);-ms-transform:matrix(0.246397,0.008386,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.246397,0.008386,-0.008504,0.249855,0,0);}
.m48_c01208{transform:matrix(0.246747,0.008398,-0.008504,0.249855,0,0);-ms-transform:matrix(0.246747,0.008398,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.246747,0.008398,-0.008504,0.249855,0,0);}
.m11e_c01208{transform:matrix(0.247260,0.008910,-0.009003,0.249838,0,0);-ms-transform:matrix(0.247260,0.008910,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.247260,0.008910,-0.009003,0.249838,0,0);}
.m35_c01208{transform:matrix(0.247557,0.008425,-0.008504,0.249855,0,0);-ms-transform:matrix(0.247557,0.008425,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.247557,0.008425,-0.008504,0.249855,0,0);}
.m28_c01208{transform:matrix(0.248216,0.008448,-0.008504,0.249855,0,0);-ms-transform:matrix(0.248216,0.008448,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.248216,0.008448,-0.008504,0.249855,0,0);}
.m23_c01208{transform:matrix(0.248401,0.008454,-0.008504,0.249855,0,0);-ms-transform:matrix(0.248401,0.008454,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.248401,0.008454,-0.008504,0.249855,0,0);}
.m1b_c01208{transform:matrix(0.248691,0.008464,-0.008504,0.249855,0,0);-ms-transform:matrix(0.248691,0.008464,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.248691,0.008464,-0.008504,0.249855,0,0);}
.m76_c01208{transform:matrix(0.248756,0.008466,-0.008504,0.249855,0,0);-ms-transform:matrix(0.248756,0.008466,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.248756,0.008466,-0.008504,0.249855,0,0);}
.m87_c01208{transform:matrix(0.249101,0.008478,-0.008504,0.249855,0,0);-ms-transform:matrix(0.249101,0.008478,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.249101,0.008478,-0.008504,0.249855,0,0);}
.m62_c01208{transform:matrix(0.249471,0.008490,-0.008504,0.249855,0,0);-ms-transform:matrix(0.249471,0.008490,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.249471,0.008490,-0.008504,0.249855,0,0);}
.m8e_c01208{transform:matrix(0.249541,0.008493,-0.008504,0.249855,0,0);-ms-transform:matrix(0.249541,0.008493,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.249541,0.008493,-0.008504,0.249855,0,0);}
.m32_c01208{transform:matrix(0.249635,0.008496,-0.008504,0.249855,0,0);-ms-transform:matrix(0.249635,0.008496,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.249635,0.008496,-0.008504,0.249855,0,0);}
.m112_c01208{transform:matrix(0.250179,0.010268,-0.010252,0.249790,0,0);-ms-transform:matrix(0.250179,0.010268,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.250179,0.010268,-0.010252,0.249790,0,0);}
.me4_c01208{transform:matrix(0.250420,0.008523,-0.008504,0.249855,0,0);-ms-transform:matrix(0.250420,0.008523,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.250420,0.008523,-0.008504,0.249855,0,0);}
.m6a_c01208{transform:matrix(0.250490,0.005010,-0.004999,0.249950,0,0);-ms-transform:matrix(0.250490,0.005010,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.250490,0.005010,-0.004999,0.249950,0,0);}
.m123_c01208{transform:matrix(0.251032,0.009046,-0.009003,0.249838,0,0);-ms-transform:matrix(0.251032,0.009046,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.251032,0.009046,-0.009003,0.249838,0,0);}
.ma4_c01208{transform:matrix(0.251479,0.008559,-0.008504,0.249855,0,0);-ms-transform:matrix(0.251479,0.008559,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.251479,0.008559,-0.008504,0.249855,0,0);}
.mc3_c01208{transform:matrix(0.251739,0.008568,-0.008504,0.249855,0,0);-ms-transform:matrix(0.251739,0.008568,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.251739,0.008568,-0.008504,0.249855,0,0);}
.me7_c01208{transform:matrix(0.251784,0.008569,-0.008504,0.249855,0,0);-ms-transform:matrix(0.251784,0.008569,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.251784,0.008569,-0.008504,0.249855,0,0);}
.m26_c01208{transform:matrix(0.251959,0.008575,-0.008504,0.249855,0,0);-ms-transform:matrix(0.251959,0.008575,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.251959,0.008575,-0.008504,0.249855,0,0);}
.m12e_c01208{transform:matrix(0.251961,0.009080,-0.009003,0.249838,0,0);-ms-transform:matrix(0.251961,0.009080,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.251961,0.009080,-0.009003,0.249838,0,0);}
.m13_c01208{transform:matrix(0.252013,0.006804,-0.006748,0.249909,0,0);-ms-transform:matrix(0.252013,0.006804,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.252013,0.006804,-0.006748,0.249909,0,0);}
.m126_c01208{transform:matrix(0.252111,0.009085,-0.009003,0.249838,0,0);-ms-transform:matrix(0.252111,0.009085,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.252111,0.009085,-0.009003,0.249838,0,0);}
.m4b_c01208{transform:matrix(0.252434,0.008591,-0.008504,0.249855,0,0);-ms-transform:matrix(0.252434,0.008591,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.252434,0.008591,-0.008504,0.249855,0,0);}
.m6c_c01208{transform:matrix(0.252549,0.005051,-0.004999,0.249950,0,0);-ms-transform:matrix(0.252549,0.005051,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.252549,0.005051,-0.004999,0.249950,0,0);}
.m1f_c01208{transform:matrix(0.252809,0.008604,-0.008504,0.249855,0,0);-ms-transform:matrix(0.252809,0.008604,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.252809,0.008604,-0.008504,0.249855,0,0);}
.m102_c01208{transform:matrix(0.253928,0.008642,-0.008504,0.249855,0,0);-ms-transform:matrix(0.253928,0.008642,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.253928,0.008642,-0.008504,0.249855,0,0);}
.m12a_c01208{transform:matrix(0.254750,0.009180,-0.009003,0.249838,0,0);-ms-transform:matrix(0.254750,0.009180,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.254750,0.009180,-0.009003,0.249838,0,0);}
.m93_c01208{transform:matrix(0.254922,0.008676,-0.008504,0.249855,0,0);-ms-transform:matrix(0.254922,0.008676,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.254922,0.008676,-0.008504,0.249855,0,0);}
.mc8_c01208{transform:matrix(0.255092,0.008682,-0.008504,0.249855,0,0);-ms-transform:matrix(0.255092,0.008682,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.255092,0.008682,-0.008504,0.249855,0,0);}
.m71_c01208{transform:matrix(0.255122,0.008683,-0.008504,0.249855,0,0);-ms-transform:matrix(0.255122,0.008683,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.255122,0.008683,-0.008504,0.249855,0,0);}
.m122_c01208{transform:matrix(0.255669,0.009213,-0.009003,0.249838,0,0);-ms-transform:matrix(0.255669,0.009213,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.255669,0.009213,-0.009003,0.249838,0,0);}
.m8_c01208{transform:matrix(0.256057,0.006914,-0.006748,0.249909,0,0);-ms-transform:matrix(0.256057,0.006914,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.256057,0.006914,-0.006748,0.249909,0,0);}
.me2_c01208{transform:matrix(0.256112,0.008717,-0.008504,0.249855,0,0);-ms-transform:matrix(0.256112,0.008717,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.256112,0.008717,-0.008504,0.249855,0,0);}
.mcd_c01208{transform:matrix(0.256352,0.008725,-0.008504,0.249855,0,0);-ms-transform:matrix(0.256352,0.008725,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.256352,0.008725,-0.008504,0.249855,0,0);}
.m7d_c01208{transform:matrix(0.257171,0.008753,-0.008504,0.249855,0,0);-ms-transform:matrix(0.257171,0.008753,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.257171,0.008753,-0.008504,0.249855,0,0);}
.m5a_c01208{transform:matrix(0.257271,0.008756,-0.008504,0.249855,0,0);-ms-transform:matrix(0.257271,0.008756,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.257271,0.008756,-0.008504,0.249855,0,0);}
.mdc_c01208{transform:matrix(0.257851,0.008776,-0.008504,0.249855,0,0);-ms-transform:matrix(0.257851,0.008776,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.257851,0.008776,-0.008504,0.249855,0,0);}
.m75_c01208{transform:matrix(0.258375,0.008794,-0.008504,0.249855,0,0);-ms-transform:matrix(0.258375,0.008794,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.258375,0.008794,-0.008504,0.249855,0,0);}
.m5c_c01208{transform:matrix(0.258480,0.008797,-0.008504,0.249855,0,0);-ms-transform:matrix(0.258480,0.008797,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.258480,0.008797,-0.008504,0.249855,0,0);}
.m10e_c01208{transform:matrix(0.258512,0.010610,-0.010252,0.249790,0,0);-ms-transform:matrix(0.258512,0.010610,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.258512,0.010610,-0.010252,0.249790,0,0);}
.md5_c01208{transform:matrix(0.259060,0.008817,-0.008504,0.249855,0,0);-ms-transform:matrix(0.259060,0.008817,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.259060,0.008817,-0.008504,0.249855,0,0);}
.m38_c01208{transform:matrix(0.259310,0.008825,-0.008504,0.249855,0,0);-ms-transform:matrix(0.259310,0.008825,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.259310,0.008825,-0.008504,0.249855,0,0);}
.mdb_c01208{transform:matrix(0.259675,0.008838,-0.008504,0.249855,0,0);-ms-transform:matrix(0.259675,0.008838,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.259675,0.008838,-0.008504,0.249855,0,0);}
.m12f_c01208{transform:matrix(0.260506,0.009388,-0.009003,0.249838,0,0);-ms-transform:matrix(0.260506,0.009388,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.260506,0.009388,-0.009003,0.249838,0,0);}
.md0_c01208{transform:matrix(0.260524,0.008867,-0.008504,0.249855,0,0);-ms-transform:matrix(0.260524,0.008867,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.260524,0.008867,-0.008504,0.249855,0,0);}
.m4e_c01208{transform:matrix(0.260644,0.008871,-0.008504,0.249855,0,0);-ms-transform:matrix(0.260644,0.008871,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.260644,0.008871,-0.008504,0.249855,0,0);}
.m4f_c01208{transform:matrix(0.260829,0.008877,-0.008504,0.249855,0,0);-ms-transform:matrix(0.260829,0.008877,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.260829,0.008877,-0.008504,0.249855,0,0);}
.m117_c01208{transform:matrix(0.260846,0.009400,-0.009003,0.249838,0,0);-ms-transform:matrix(0.260846,0.009400,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.260846,0.009400,-0.009003,0.249838,0,0);}
.m128_c01208{transform:matrix(0.261775,0.009433,-0.009003,0.249838,0,0);-ms-transform:matrix(0.261775,0.009433,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.261775,0.009433,-0.009003,0.249838,0,0);}
.m12c_c01208{transform:matrix(0.262500,0.009459,-0.009003,0.249838,0,0);-ms-transform:matrix(0.262500,0.009459,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.262500,0.009459,-0.009003,0.249838,0,0);}
.md2_c01208{transform:matrix(0.262568,0.008936,-0.008504,0.249855,0,0);-ms-transform:matrix(0.262568,0.008936,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.262568,0.008936,-0.008504,0.249855,0,0);}
.m118_c01208{transform:matrix(0.262645,0.009465,-0.009003,0.249838,0,0);-ms-transform:matrix(0.262645,0.009465,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.262645,0.009465,-0.009003,0.249838,0,0);}
.m54_c01208{transform:matrix(0.262698,0.008941,-0.008504,0.249855,0,0);-ms-transform:matrix(0.262698,0.008941,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.262698,0.008941,-0.008504,0.249855,0,0);}
.m3f_c01208{transform:matrix(0.262838,0.008945,-0.008504,0.249855,0,0);-ms-transform:matrix(0.262838,0.008945,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.262838,0.008945,-0.008504,0.249855,0,0);}
.m3b_c01208{transform:matrix(0.263108,0.008955,-0.008504,0.249855,0,0);-ms-transform:matrix(0.263108,0.008955,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.263108,0.008955,-0.008504,0.249855,0,0);}
.m107_c01208{transform:matrix(0.263637,0.008973,-0.008504,0.249855,0,0);-ms-transform:matrix(0.263637,0.008973,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.263637,0.008973,-0.008504,0.249855,0,0);}
.m55_c01208{transform:matrix(0.263927,0.008983,-0.008504,0.249855,0,0);-ms-transform:matrix(0.263927,0.008983,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.263927,0.008983,-0.008504,0.249855,0,0);}
.m109_c01208{transform:matrix(0.264143,0.010841,-0.010252,0.249790,0,0);-ms-transform:matrix(0.264143,0.010841,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.264143,0.010841,-0.010252,0.249790,0,0);}
.m63_c01208{transform:matrix(0.264227,0.008993,-0.008504,0.249855,0,0);-ms-transform:matrix(0.264227,0.008993,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.264227,0.008993,-0.008504,0.249855,0,0);}
.m4c_c01208{transform:matrix(0.265067,0.009021,-0.008504,0.249855,0,0);-ms-transform:matrix(0.265067,0.009021,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.265067,0.009021,-0.008504,0.249855,0,0);}
.mac_c01208{transform:matrix(0.265376,0.009032,-0.008504,0.249855,0,0);-ms-transform:matrix(0.265376,0.009032,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.265376,0.009032,-0.008504,0.249855,0,0);}
.md_c01208{transform:matrix(0.265443,0.007167,-0.006748,0.249909,0,0);-ms-transform:matrix(0.265443,0.007167,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.265443,0.007167,-0.006748,0.249909,0,0);}
.m10c_c01208{transform:matrix(0.265457,0.010895,-0.010252,0.249790,0,0);-ms-transform:matrix(0.265457,0.010895,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.265457,0.010895,-0.010252,0.249790,0,0);}
.mbc_c01208{transform:matrix(0.266216,0.009060,-0.008504,0.249855,0,0);-ms-transform:matrix(0.266216,0.009060,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.266216,0.009060,-0.008504,0.249855,0,0);}
.m2f_c01208{transform:matrix(0.266845,0.009082,-0.008504,0.249855,0,0);-ms-transform:matrix(0.266845,0.009082,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.266845,0.009082,-0.008504,0.249855,0,0);}
.m50_c01208{transform:matrix(0.267145,0.009092,-0.008504,0.249855,0,0);-ms-transform:matrix(0.267145,0.009092,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.267145,0.009092,-0.008504,0.249855,0,0);}
.m106_c01208{transform:matrix(0.267240,0.009095,-0.008504,0.249855,0,0);-ms-transform:matrix(0.267240,0.009095,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.267240,0.009095,-0.008504,0.249855,0,0);}
.m44_c01208{transform:matrix(0.267810,0.009115,-0.008504,0.249855,0,0);-ms-transform:matrix(0.267810,0.009115,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.267810,0.009115,-0.008504,0.249855,0,0);}
.m7f_c01208{transform:matrix(0.267910,0.009118,-0.008504,0.249855,0,0);-ms-transform:matrix(0.267910,0.009118,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.267910,0.009118,-0.008504,0.249855,0,0);}
.m115_c01208{transform:matrix(0.268286,0.009668,-0.009003,0.249838,0,0);-ms-transform:matrix(0.268286,0.009668,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.268286,0.009668,-0.009003,0.249838,0,0);}
.mdd_c01208{transform:matrix(0.268639,0.009143,-0.008504,0.249855,0,0);-ms-transform:matrix(0.268639,0.009143,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.268639,0.009143,-0.008504,0.249855,0,0);}
.m73_c01208{transform:matrix(0.268879,0.009151,-0.008504,0.249855,0,0);-ms-transform:matrix(0.268879,0.009151,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.268879,0.009151,-0.008504,0.249855,0,0);}
.m113_c01208{transform:matrix(0.270210,0.009737,-0.009003,0.249838,0,0);-ms-transform:matrix(0.270210,0.009737,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.270210,0.009737,-0.009003,0.249838,0,0);}
.m6_c01208{transform:matrix(0.270277,0.007297,-0.006748,0.249909,0,0);-ms-transform:matrix(0.270277,0.007297,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.270277,0.007297,-0.006748,0.249909,0,0);}
.m57_c01208{transform:matrix(0.270298,0.009199,-0.008504,0.249855,0,0);-ms-transform:matrix(0.270298,0.009199,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.270298,0.009199,-0.008504,0.249855,0,0);}
.mb6_c01208{transform:matrix(0.270533,0.009207,-0.008504,0.249855,0,0);-ms-transform:matrix(0.270533,0.009207,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.270533,0.009207,-0.008504,0.249855,0,0);}
.md7_c01208{transform:matrix(0.271038,0.009225,-0.008504,0.249855,0,0);-ms-transform:matrix(0.271038,0.009225,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.271038,0.009225,-0.008504,0.249855,0,0);}
.m83_c01208{transform:matrix(0.271043,0.009225,-0.008504,0.249855,0,0);-ms-transform:matrix(0.271043,0.009225,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.271043,0.009225,-0.008504,0.249855,0,0);}
.m49_c01208{transform:matrix(0.271523,0.009241,-0.008504,0.249855,0,0);-ms-transform:matrix(0.271523,0.009241,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.271523,0.009241,-0.008504,0.249855,0,0);}
.md8_c01208{transform:matrix(0.271648,0.009245,-0.008504,0.249855,0,0);-ms-transform:matrix(0.271648,0.009245,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.271648,0.009245,-0.008504,0.249855,0,0);}
.mc7_c01208{transform:matrix(0.272042,0.009259,-0.008504,0.249855,0,0);-ms-transform:matrix(0.272042,0.009259,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.272042,0.009259,-0.008504,0.249855,0,0);}
.m8a_c01208{transform:matrix(0.272187,0.009264,-0.008504,0.249855,0,0);-ms-transform:matrix(0.272187,0.009264,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.272187,0.009264,-0.008504,0.249855,0,0);}
.ma_c01208{transform:matrix(0.272646,0.007361,-0.006748,0.249909,0,0);-ms-transform:matrix(0.272646,0.007361,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.272646,0.007361,-0.006748,0.249909,0,0);}
.maf_c01208{transform:matrix(0.273132,0.009296,-0.008504,0.249855,0,0);-ms-transform:matrix(0.273132,0.009296,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.273132,0.009296,-0.008504,0.249855,0,0);}
.m53_c01208{transform:matrix(0.273377,0.009304,-0.008504,0.249855,0,0);-ms-transform:matrix(0.273377,0.009304,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.273377,0.009304,-0.008504,0.249855,0,0);}
.mec_c01208{transform:matrix(0.273727,0.009316,-0.008504,0.249855,0,0);-ms-transform:matrix(0.273727,0.009316,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.273727,0.009316,-0.008504,0.249855,0,0);}
.mf5_c01208{transform:matrix(0.273796,0.009318,-0.008504,0.249855,0,0);-ms-transform:matrix(0.273796,0.009318,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.273796,0.009318,-0.008504,0.249855,0,0);}
.m116_c01208{transform:matrix(0.273952,0.009872,-0.009003,0.249838,0,0);-ms-transform:matrix(0.273952,0.009872,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.273952,0.009872,-0.009003,0.249838,0,0);}
.m68_c01208{transform:matrix(0.274580,0.005492,-0.004999,0.249950,0,0);-ms-transform:matrix(0.274580,0.005492,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.274580,0.005492,-0.004999,0.249950,0,0);}
.mbf_c01208{transform:matrix(0.275341,0.009371,-0.008504,0.249855,0,0);-ms-transform:matrix(0.275341,0.009371,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.275341,0.009371,-0.008504,0.249855,0,0);}
.m14_c01208{transform:matrix(0.275355,0.007435,-0.006748,0.249909,0,0);-ms-transform:matrix(0.275355,0.007435,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.275355,0.007435,-0.006748,0.249909,0,0);}
.m12d_c01208{transform:matrix(0.275486,0.009927,-0.009003,0.249838,0,0);-ms-transform:matrix(0.275486,0.009927,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.275486,0.009927,-0.009003,0.249838,0,0);}
.m8b_c01208{transform:matrix(0.275835,0.009388,-0.008504,0.249855,0,0);-ms-transform:matrix(0.275835,0.009388,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.275835,0.009388,-0.008504,0.249855,0,0);}
.m131_c01208{transform:matrix(0.276116,0.009950,-0.009003,0.249838,0,0);-ms-transform:matrix(0.276116,0.009950,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.276116,0.009950,-0.009003,0.249838,0,0);}
.mc9_c01208{transform:matrix(0.276815,0.009421,-0.008504,0.249855,0,0);-ms-transform:matrix(0.276815,0.009421,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.276815,0.009421,-0.008504,0.249855,0,0);}
.m99_c01208{transform:matrix(0.276985,0.009427,-0.008504,0.249855,0,0);-ms-transform:matrix(0.276985,0.009427,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.276985,0.009427,-0.008504,0.249855,0,0);}
.m2e_c01208{transform:matrix(0.276995,0.009427,-0.008504,0.249855,0,0);-ms-transform:matrix(0.276995,0.009427,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.276995,0.009427,-0.008504,0.249855,0,0);}
.mb7_c01208{transform:matrix(0.277719,0.009452,-0.008504,0.249855,0,0);-ms-transform:matrix(0.277719,0.009452,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.277719,0.009452,-0.008504,0.249855,0,0);}
.mba_c01208{transform:matrix(0.278029,0.009462,-0.008504,0.249855,0,0);-ms-transform:matrix(0.278029,0.009462,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.278029,0.009462,-0.008504,0.249855,0,0);}
.m108_c01208{transform:matrix(0.278164,0.009467,-0.008504,0.249855,0,0);-ms-transform:matrix(0.278164,0.009467,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.278164,0.009467,-0.008504,0.249855,0,0);}
.m24_c01208{transform:matrix(0.278359,0.009474,-0.008504,0.249855,0,0);-ms-transform:matrix(0.278359,0.009474,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.278359,0.009474,-0.008504,0.249855,0,0);}
.m9a_c01208{transform:matrix(0.278968,0.009494,-0.008504,0.249855,0,0);-ms-transform:matrix(0.278968,0.009494,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.278968,0.009494,-0.008504,0.249855,0,0);}
.med_c01208{transform:matrix(0.278983,0.009495,-0.008504,0.249855,0,0);-ms-transform:matrix(0.278983,0.009495,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.278983,0.009495,-0.008504,0.249855,0,0);}
.mea_c01208{transform:matrix(0.279273,0.009505,-0.008504,0.249855,0,0);-ms-transform:matrix(0.279273,0.009505,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.279273,0.009505,-0.008504,0.249855,0,0);}
.m79_c01208{transform:matrix(0.279718,0.009520,-0.008504,0.249855,0,0);-ms-transform:matrix(0.279718,0.009520,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.279718,0.009520,-0.008504,0.249855,0,0);}
.m11_c01208{transform:matrix(0.279758,0.007553,-0.006748,0.249909,0,0);-ms-transform:matrix(0.279758,0.007553,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.279758,0.007553,-0.006748,0.249909,0,0);}
.m119_c01208{transform:matrix(0.279963,0.010089,-0.009003,0.249838,0,0);-ms-transform:matrix(0.279963,0.010089,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.279963,0.010089,-0.009003,0.249838,0,0);}
.md4_c01208{transform:matrix(0.280947,0.009562,-0.008504,0.249855,0,0);-ms-transform:matrix(0.280947,0.009562,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.280947,0.009562,-0.008504,0.249855,0,0);}
.maa_c01208{transform:matrix(0.281987,0.009597,-0.008504,0.249855,0,0);-ms-transform:matrix(0.281987,0.009597,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.281987,0.009597,-0.008504,0.249855,0,0);}
.ma2_c01208{transform:matrix(0.282152,0.009603,-0.008504,0.249855,0,0);-ms-transform:matrix(0.282152,0.009603,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.282152,0.009603,-0.008504,0.249855,0,0);}
.m60_c01208{transform:matrix(0.282247,0.009606,-0.008504,0.249855,0,0);-ms-transform:matrix(0.282247,0.009606,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.282247,0.009606,-0.008504,0.249855,0,0);}
.m10a_c01208{transform:matrix(0.282297,0.011586,-0.010252,0.249790,0,0);-ms-transform:matrix(0.282297,0.011586,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.282297,0.011586,-0.010252,0.249790,0,0);}
.mc1_c01208{transform:matrix(0.282686,0.009621,-0.008504,0.249855,0,0);-ms-transform:matrix(0.282686,0.009621,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.282686,0.009621,-0.008504,0.249855,0,0);}
.mdf_c01208{transform:matrix(0.282706,0.009622,-0.008504,0.249855,0,0);-ms-transform:matrix(0.282706,0.009622,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.282706,0.009622,-0.008504,0.249855,0,0);}
.m18_c01208{transform:matrix(0.282707,0.007633,-0.006748,0.249909,0,0);-ms-transform:matrix(0.282707,0.007633,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.282707,0.007633,-0.006748,0.249909,0,0);}
.mb0_c01208{transform:matrix(0.282751,0.009623,-0.008504,0.249855,0,0);-ms-transform:matrix(0.282751,0.009623,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.282751,0.009623,-0.008504,0.249855,0,0);}
.mbb_c01208{transform:matrix(0.282891,0.009628,-0.008504,0.249855,0,0);-ms-transform:matrix(0.282891,0.009628,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.282891,0.009628,-0.008504,0.249855,0,0);}
.m7_c01208{transform:matrix(0.283497,0.007654,-0.006748,0.249909,0,0);-ms-transform:matrix(0.283497,0.007654,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.283497,0.007654,-0.006748,0.249909,0,0);}
.m34_c01208{transform:matrix(0.283691,0.009655,-0.008504,0.249855,0,0);-ms-transform:matrix(0.283691,0.009655,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.283691,0.009655,-0.008504,0.249855,0,0);}
.m80_c01208{transform:matrix(0.284590,0.009686,-0.008504,0.249855,0,0);-ms-transform:matrix(0.284590,0.009686,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.284590,0.009686,-0.008504,0.249855,0,0);}
.m5_c01208{transform:matrix(0.284986,0.007695,-0.006748,0.249909,0,0);-ms-transform:matrix(0.284986,0.007695,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.284986,0.007695,-0.006748,0.249909,0,0);}
.mf6_c01208{transform:matrix(0.285035,0.009701,-0.008504,0.249855,0,0);-ms-transform:matrix(0.285035,0.009701,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.285035,0.009701,-0.008504,0.249855,0,0);}
.mb9_c01208{transform:matrix(0.285095,0.009703,-0.008504,0.249855,0,0);-ms-transform:matrix(0.285095,0.009703,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.285095,0.009703,-0.008504,0.249855,0,0);}
.mf1_c01208{transform:matrix(0.285665,0.009722,-0.008504,0.249855,0,0);-ms-transform:matrix(0.285665,0.009722,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.285665,0.009722,-0.008504,0.249855,0,0);}
.m3e_c01208{transform:matrix(0.285690,0.009723,-0.008504,0.249855,0,0);-ms-transform:matrix(0.285690,0.009723,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.285690,0.009723,-0.008504,0.249855,0,0);}
.m88_c01208{transform:matrix(0.285929,0.009731,-0.008504,0.249855,0,0);-ms-transform:matrix(0.285929,0.009731,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.285929,0.009731,-0.008504,0.249855,0,0);}
.m65_c01208{transform:matrix(0.286434,0.009749,-0.008504,0.249855,0,0);-ms-transform:matrix(0.286434,0.009749,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.286434,0.009749,-0.008504,0.249855,0,0);}
.m37_c01208{transform:matrix(0.286579,0.009753,-0.008504,0.249855,0,0);-ms-transform:matrix(0.286579,0.009753,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.286579,0.009753,-0.008504,0.249855,0,0);}
.m9_c01208{transform:matrix(0.286641,0.007739,-0.006748,0.249909,0,0);-ms-transform:matrix(0.286641,0.007739,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.286641,0.007739,-0.006748,0.249909,0,0);}
.m7b_c01208{transform:matrix(0.287019,0.009768,-0.008504,0.249855,0,0);-ms-transform:matrix(0.287019,0.009768,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.287019,0.009768,-0.008504,0.249855,0,0);}
.mf3_c01208{transform:matrix(0.287114,0.009772,-0.008504,0.249855,0,0);-ms-transform:matrix(0.287114,0.009772,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.287114,0.009772,-0.008504,0.249855,0,0);}
.mb_c01208{transform:matrix(0.287135,0.007753,-0.006748,0.249909,0,0);-ms-transform:matrix(0.287135,0.007753,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.287135,0.007753,-0.006748,0.249909,0,0);}
.m7e_c01208{transform:matrix(0.287658,0.009790,-0.008504,0.249855,0,0);-ms-transform:matrix(0.287658,0.009790,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.287658,0.009790,-0.008504,0.249855,0,0);}
.m61_c01208{transform:matrix(0.287708,0.009792,-0.008504,0.249855,0,0);-ms-transform:matrix(0.287708,0.009792,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.287708,0.009792,-0.008504,0.249855,0,0);}
.me6_c01208{transform:matrix(0.287888,0.009798,-0.008504,0.249855,0,0);-ms-transform:matrix(0.287888,0.009798,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.287888,0.009798,-0.008504,0.249855,0,0);}
.mb2_c01208{transform:matrix(0.287958,0.009800,-0.008504,0.249855,0,0);-ms-transform:matrix(0.287958,0.009800,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.287958,0.009800,-0.008504,0.249855,0,0);}
.mfb_c01208{transform:matrix(0.288213,0.009809,-0.008504,0.249855,0,0);-ms-transform:matrix(0.288213,0.009809,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.288213,0.009809,-0.008504,0.249855,0,0);}
.m30_c01208{transform:matrix(0.288988,0.009835,-0.008504,0.249855,0,0);-ms-transform:matrix(0.288988,0.009835,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.288988,0.009835,-0.008504,0.249855,0,0);}
.m4d_c01208{transform:matrix(0.289038,0.009837,-0.008504,0.249855,0,0);-ms-transform:matrix(0.289038,0.009837,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.289038,0.009837,-0.008504,0.249855,0,0);}
.mc_c01208{transform:matrix(0.290529,0.007844,-0.006748,0.249909,0,0);-ms-transform:matrix(0.290529,0.007844,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.290529,0.007844,-0.006748,0.249909,0,0);}
.m89_c01208{transform:matrix(0.290547,0.009888,-0.008504,0.249855,0,0);-ms-transform:matrix(0.290547,0.009888,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.290547,0.009888,-0.008504,0.249855,0,0);}
.m85_c01208{transform:matrix(0.290582,0.009890,-0.008504,0.249855,0,0);-ms-transform:matrix(0.290582,0.009890,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.290582,0.009890,-0.008504,0.249855,0,0);}
.m3d_c01208{transform:matrix(0.290632,0.009891,-0.008504,0.249855,0,0);-ms-transform:matrix(0.290632,0.009891,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.290632,0.009891,-0.008504,0.249855,0,0);}
.m27_c01208{transform:matrix(0.290787,0.009897,-0.008504,0.249855,0,0);-ms-transform:matrix(0.290787,0.009897,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.290787,0.009897,-0.008504,0.249855,0,0);}
.me_c01208{transform:matrix(0.291034,0.007858,-0.006748,0.249909,0,0);-ms-transform:matrix(0.291034,0.007858,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.291034,0.007858,-0.006748,0.249909,0,0);}
.mc0_c01208{transform:matrix(0.291156,0.009909,-0.008504,0.249855,0,0);-ms-transform:matrix(0.291156,0.009909,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.291156,0.009909,-0.008504,0.249855,0,0);}
.m84_c01208{transform:matrix(0.291361,0.009916,-0.008504,0.249855,0,0);-ms-transform:matrix(0.291361,0.009916,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.291361,0.009916,-0.008504,0.249855,0,0);}
.m4a_c01208{transform:matrix(0.291481,0.009920,-0.008504,0.249855,0,0);-ms-transform:matrix(0.291481,0.009920,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.291481,0.009920,-0.008504,0.249855,0,0);}
.mf0_c01208{transform:matrix(0.291491,0.009921,-0.008504,0.249855,0,0);-ms-transform:matrix(0.291491,0.009921,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.291491,0.009921,-0.008504,0.249855,0,0);}
.m10b_c01208{transform:matrix(0.292054,0.011986,-0.010252,0.249790,0,0);-ms-transform:matrix(0.292054,0.011986,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.292054,0.011986,-0.010252,0.249790,0,0);}
.m9e_c01208{transform:matrix(0.292276,0.009947,-0.008504,0.249855,0,0);-ms-transform:matrix(0.292276,0.009947,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.292276,0.009947,-0.008504,0.249855,0,0);}
.mb5_c01208{transform:matrix(0.292601,0.009958,-0.008504,0.249855,0,0);-ms-transform:matrix(0.292601,0.009958,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.292601,0.009958,-0.008504,0.249855,0,0);}
.ma0_c01208{transform:matrix(0.292671,0.009961,-0.008504,0.249855,0,0);-ms-transform:matrix(0.292671,0.009961,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.292671,0.009961,-0.008504,0.249855,0,0);}
.mcc_c01208{transform:matrix(0.292895,0.009968,-0.008504,0.249855,0,0);-ms-transform:matrix(0.292895,0.009968,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.292895,0.009968,-0.008504,0.249855,0,0);}
.m29_c01208{transform:matrix(0.293480,0.009988,-0.008504,0.249855,0,0);-ms-transform:matrix(0.293480,0.009988,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.293480,0.009988,-0.008504,0.249855,0,0);}
.m25_c01208{transform:matrix(0.293525,0.009990,-0.008504,0.249855,0,0);-ms-transform:matrix(0.293525,0.009990,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.293525,0.009990,-0.008504,0.249855,0,0);}
.meb_c01208{transform:matrix(0.293580,0.009992,-0.008504,0.249855,0,0);-ms-transform:matrix(0.293580,0.009992,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.293580,0.009992,-0.008504,0.249855,0,0);}
.mf2_c01208{transform:matrix(0.294210,0.010013,-0.008504,0.249855,0,0);-ms-transform:matrix(0.294210,0.010013,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.294210,0.010013,-0.008504,0.249855,0,0);}
.m2a_c01208{transform:matrix(0.294380,0.010019,-0.008504,0.249855,0,0);-ms-transform:matrix(0.294380,0.010019,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.294380,0.010019,-0.008504,0.249855,0,0);}
.m86_c01208{transform:matrix(0.294484,0.010022,-0.008504,0.249855,0,0);-ms-transform:matrix(0.294484,0.010022,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.294484,0.010022,-0.008504,0.249855,0,0);}
.m41_c01208{transform:matrix(0.294519,0.010024,-0.008504,0.249855,0,0);-ms-transform:matrix(0.294519,0.010024,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.294519,0.010024,-0.008504,0.249855,0,0);}
.m2b_c01208{transform:matrix(0.295489,0.010057,-0.008504,0.249855,0,0);-ms-transform:matrix(0.295489,0.010057,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.295489,0.010057,-0.008504,0.249855,0,0);}
.mef_c01208{transform:matrix(0.296568,0.010093,-0.008504,0.249855,0,0);-ms-transform:matrix(0.296568,0.010093,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.296568,0.010093,-0.008504,0.249855,0,0);}
.mee_c01208{transform:matrix(0.297258,0.010117,-0.008504,0.249855,0,0);-ms-transform:matrix(0.297258,0.010117,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.297258,0.010117,-0.008504,0.249855,0,0);}
.m33_c01208{transform:matrix(0.297498,0.010125,-0.008504,0.249855,0,0);-ms-transform:matrix(0.297498,0.010125,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.297498,0.010125,-0.008504,0.249855,0,0);}
.mcb_c01208{transform:matrix(0.298002,0.010142,-0.008504,0.249855,0,0);-ms-transform:matrix(0.298002,0.010142,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.298002,0.010142,-0.008504,0.249855,0,0);}
.m66_c01208{transform:matrix(0.298322,0.010153,-0.008504,0.249855,0,0);-ms-transform:matrix(0.298322,0.010153,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.298322,0.010153,-0.008504,0.249855,0,0);}
.m91_c01208{transform:matrix(0.298662,0.010165,-0.008504,0.249855,0,0);-ms-transform:matrix(0.298662,0.010165,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.298662,0.010165,-0.008504,0.249855,0,0);}
.mc2_c01208{transform:matrix(0.298877,0.010172,-0.008504,0.249855,0,0);-ms-transform:matrix(0.298877,0.010172,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.298877,0.010172,-0.008504,0.249855,0,0);}
.m98_c01208{transform:matrix(0.298927,0.010174,-0.008504,0.249855,0,0);-ms-transform:matrix(0.298927,0.010174,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.298927,0.010174,-0.008504,0.249855,0,0);}
.mce_c01208{transform:matrix(0.298992,0.010176,-0.008504,0.249855,0,0);-ms-transform:matrix(0.298992,0.010176,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.298992,0.010176,-0.008504,0.249855,0,0);}
.m67_c01208{transform:matrix(0.298997,0.010176,-0.008504,0.249855,0,0);-ms-transform:matrix(0.298997,0.010176,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.298997,0.010176,-0.008504,0.249855,0,0);}
.m42_c01208{transform:matrix(0.299741,0.010201,-0.008504,0.249855,0,0);-ms-transform:matrix(0.299741,0.010201,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.299741,0.010201,-0.008504,0.249855,0,0);}
.m47_c01208{transform:matrix(0.299881,0.010206,-0.008504,0.249855,0,0);-ms-transform:matrix(0.299881,0.010206,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.299881,0.010206,-0.008504,0.249855,0,0);}
.mc4_c01208{transform:matrix(0.300611,0.010231,-0.008504,0.249855,0,0);-ms-transform:matrix(0.300611,0.010231,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.300611,0.010231,-0.008504,0.249855,0,0);}
.m9b_c01208{transform:matrix(0.301530,0.010262,-0.008504,0.249855,0,0);-ms-transform:matrix(0.301530,0.010262,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.301530,0.010262,-0.008504,0.249855,0,0);}
.ma5_c01208{transform:matrix(0.301835,0.010273,-0.008504,0.249855,0,0);-ms-transform:matrix(0.301835,0.010273,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.301835,0.010273,-0.008504,0.249855,0,0);}
.m9d_c01208{transform:matrix(0.302180,0.010284,-0.008504,0.249855,0,0);-ms-transform:matrix(0.302180,0.010284,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.302180,0.010284,-0.008504,0.249855,0,0);}
.mb4_c01208{transform:matrix(0.302850,0.010307,-0.008504,0.249855,0,0);-ms-transform:matrix(0.302850,0.010307,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.302850,0.010307,-0.008504,0.249855,0,0);}
.me8_c01208{transform:matrix(0.302875,0.010308,-0.008504,0.249855,0,0);-ms-transform:matrix(0.302875,0.010308,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.302875,0.010308,-0.008504,0.249855,0,0);}
.m9c_c01208{transform:matrix(0.303119,0.010316,-0.008504,0.249855,0,0);-ms-transform:matrix(0.303119,0.010316,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.303119,0.010316,-0.008504,0.249855,0,0);}
.m10f_c01208{transform:matrix(0.303195,0.012443,-0.010252,0.249790,0,0);-ms-transform:matrix(0.303195,0.012443,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.303195,0.012443,-0.010252,0.249790,0,0);}
.m10_c01208{transform:matrix(0.303394,0.008192,-0.006748,0.249909,0,0);-ms-transform:matrix(0.303394,0.008192,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.303394,0.008192,-0.006748,0.249909,0,0);}
.me9_c01208{transform:matrix(0.303574,0.010332,-0.008504,0.249855,0,0);-ms-transform:matrix(0.303574,0.010332,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.303574,0.010332,-0.008504,0.249855,0,0);}
.m2c_c01208{transform:matrix(0.305033,0.010382,-0.008504,0.249855,0,0);-ms-transform:matrix(0.305033,0.010382,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.305033,0.010382,-0.008504,0.249855,0,0);}
.ma3_c01208{transform:matrix(0.306013,0.010415,-0.008504,0.249855,0,0);-ms-transform:matrix(0.306013,0.010415,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.306013,0.010415,-0.008504,0.249855,0,0);}
.ma6_c01208{transform:matrix(0.306083,0.010417,-0.008504,0.249855,0,0);-ms-transform:matrix(0.306083,0.010417,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.306083,0.010417,-0.008504,0.249855,0,0);}
.m43_c01208{transform:matrix(0.308476,0.010499,-0.008504,0.249855,0,0);-ms-transform:matrix(0.308476,0.010499,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.308476,0.010499,-0.008504,0.249855,0,0);}
.mb3_c01208{transform:matrix(0.310325,0.010562,-0.008504,0.249855,0,0);-ms-transform:matrix(0.310325,0.010562,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.310325,0.010562,-0.008504,0.249855,0,0);}
.ma8_c01208{transform:matrix(0.312374,0.010631,-0.008504,0.249855,0,0);-ms-transform:matrix(0.312374,0.010631,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.312374,0.010631,-0.008504,0.249855,0,0);}
.m10d_c01208{transform:matrix(0.317183,0.013018,-0.010252,0.249790,0,0);-ms-transform:matrix(0.317183,0.013018,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.317183,0.013018,-0.010252,0.249790,0,0);}
.m39_c01208{transform:matrix(0.319970,0.010890,-0.008504,0.249855,0,0);-ms-transform:matrix(0.319970,0.010890,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.319970,0.010890,-0.008504,0.249855,0,0);}
.mad_c01208{transform:matrix(0.320409,0.010905,-0.008504,0.249855,0,0);-ms-transform:matrix(0.320409,0.010905,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.320409,0.010905,-0.008504,0.249855,0,0);}
.m16_c01208{transform:matrix(0.321943,0.008692,-0.006748,0.249909,0,0);-ms-transform:matrix(0.321943,0.008692,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.321943,0.008692,-0.006748,0.249909,0,0);}
.m90_c01208{transform:matrix(0.322353,0.010971,-0.008504,0.249855,0,0);-ms-transform:matrix(0.322353,0.010971,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.322353,0.010971,-0.008504,0.249855,0,0);}
.m11b_c01208{transform:matrix(0.322995,0.011639,-0.009003,0.249838,0,0);-ms-transform:matrix(0.322995,0.011639,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.322995,0.011639,-0.009003,0.249838,0,0);}
.m40_c01208{transform:matrix(0.323872,0.011023,-0.008504,0.249855,0,0);-ms-transform:matrix(0.323872,0.011023,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.323872,0.011023,-0.008504,0.249855,0,0);}
.mae_c01208{transform:matrix(0.324387,0.011040,-0.008504,0.249855,0,0);-ms-transform:matrix(0.324387,0.011040,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.324387,0.011040,-0.008504,0.249855,0,0);}
.me5_c01208{transform:matrix(0.324782,0.011054,-0.008504,0.249855,0,0);-ms-transform:matrix(0.324782,0.011054,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.324782,0.011054,-0.008504,0.249855,0,0);}
.m3c_c01208{transform:matrix(0.328480,0.011179,-0.008504,0.249855,0,0);-ms-transform:matrix(0.328480,0.011179,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.328480,0.011179,-0.008504,0.249855,0,0);}
.mab_c01208{transform:matrix(0.328820,0.011191,-0.008504,0.249855,0,0);-ms-transform:matrix(0.328820,0.011191,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.328820,0.011191,-0.008504,0.249855,0,0);}
.m2_c01208{transform:matrix(0.330335,0.008919,-0.006748,0.249909,0,0);-ms-transform:matrix(0.330335,0.008919,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.330335,0.008919,-0.006748,0.249909,0,0);}
.m36_c01208{transform:matrix(0.336155,0.011441,-0.008504,0.249855,0,0);-ms-transform:matrix(0.336155,0.011441,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.336155,0.011441,-0.008504,0.249855,0,0);}
.m0_c01208{transform:matrix(0.340020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340020,0.000000,0.000000,0.250000,0,0);}
.mc5_c01208{transform:matrix(0.342007,0.011640,-0.008504,0.249855,0,0);-ms-transform:matrix(0.342007,0.011640,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.342007,0.011640,-0.008504,0.249855,0,0);}
.mfa_c01208{transform:matrix(0.342617,0.011661,-0.008504,0.249855,0,0);-ms-transform:matrix(0.342617,0.011661,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.342617,0.011661,-0.008504,0.249855,0,0);}
.mf4_c01208{transform:matrix(0.350387,0.011925,-0.008504,0.249855,0,0);-ms-transform:matrix(0.350387,0.011925,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.350387,0.011925,-0.008504,0.249855,0,0);}
.mc6_c01208{transform:matrix(0.361900,0.012317,-0.008504,0.249855,0,0);-ms-transform:matrix(0.361900,0.012317,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.361900,0.012317,-0.008504,0.249855,0,0);}
.m78_c01208{transform:matrix(0.364934,0.012420,-0.008504,0.249855,0,0);-ms-transform:matrix(0.364934,0.012420,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.364934,0.012420,-0.008504,0.249855,0,0);}
.m8c_c01208{transform:matrix(0.371425,0.012641,-0.008504,0.249855,0,0);-ms-transform:matrix(0.371425,0.012641,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.371425,0.012641,-0.008504,0.249855,0,0);}
.m15_c01208{transform:matrix(0.413299,0.011159,-0.006748,0.249909,0,0);-ms-transform:matrix(0.413299,0.011159,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.413299,0.011159,-0.006748,0.249909,0,0);}
.v0_c01208{vertical-align:0.000000px;}
.ls0_c01208{letter-spacing:0.000000px;}
.sc__c01208{text-shadow:none;}
.sc0_c01208{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__c01208{-webkit-text-stroke:0px transparent;}
.sc0_c01208{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01208{word-spacing:0.000000px;}
.fc0_c01208{color:transparent;}
.fs4_c01208{font-size:59.974705px;}
.fs3_c01208{font-size:65.972175px;}
.fs7_c01208{font-size:65.989505px;}
.fs1_c01208{font-size:66.024053px;}
.fs5_c01208{font-size:71.969646px;}
.fs8_c01208{font-size:71.974688px;}
.fs6_c01208{font-size:72.014399px;}
.fs2_c01208{font-size:77.967116px;}
.fs9_c01208{font-size:77.972578px;}
.fs0_c01208{font-size:84.000000px;}
.fsa_c01208{font-size:96.023229px;}
.y0_c01208{bottom:0.000000px;}
.y152_c01208{bottom:50.244288px;}
.y151_c01208{bottom:52.145589px;}
.y150_c01208{bottom:52.843128px;}
.y14f_c01208{bottom:56.286387px;}
.y14e_c01208{bottom:57.362418px;}
.y14d_c01208{bottom:60.034047px;}
.y14c_c01208{bottom:62.649348px;}
.y14b_c01208{bottom:66.693672px;}
.y14a_c01208{bottom:85.963806px;}
.y149_c01208{bottom:87.206025px;}
.y148_c01208{bottom:88.674294px;}
.y147_c01208{bottom:89.398941px;}
.y146_c01208{bottom:90.391581px;}
.y145_c01208{bottom:91.340397px;}
.y144_c01208{bottom:92.032341px;}
.y143_c01208{bottom:93.773256px;}
.y142_c01208{bottom:96.399000px;}
.y141_c01208{bottom:130.771080px;}
.y140_c01208{bottom:131.997798px;}
.y13f_c01208{bottom:134.760708px;}
.y13e_c01208{bottom:137.524320px;}
.y13d_c01208{bottom:138.770478px;}
.y13c_c01208{bottom:142.346844px;}
.y13b_c01208{bottom:145.501416px;}
.y13a_c01208{bottom:146.687526px;}
.y139_c01208{bottom:148.651776px;}
.y138_c01208{bottom:149.419494px;}
.y137_c01208{bottom:151.822872px;}
.y136_c01208{bottom:152.559000px;}
.y135_c01208{bottom:166.528347px;}
.y134_c01208{bottom:167.912300px;}
.y133_c01208{bottom:170.103053px;}
.y132_c01208{bottom:172.905882px;}
.y131_c01208{bottom:176.421673px;}
.y130_c01208{bottom:177.471528px;}
.y12f_c01208{bottom:179.234669px;}
.y12e_c01208{bottom:180.668085px;}
.y12d_c01208{bottom:183.774408px;}
.y12c_c01208{bottom:184.807293px;}
.y12b_c01208{bottom:186.597785px;}
.y12a_c01208{bottom:201.983100px;}
.y129_c01208{bottom:203.959176px;}
.y128_c01208{bottom:207.958524px;}
.y127_c01208{bottom:209.992164px;}
.y126_c01208{bottom:212.714466px;}
.y125_c01208{bottom:217.093326px;}
.y124_c01208{bottom:219.505830px;}
.y123_c01208{bottom:220.651332px;}
.y122_c01208{bottom:224.925000px;}
.y121_c01208{bottom:238.624508px;}
.y120_c01208{bottom:239.923142px;}
.y11f_c01208{bottom:241.347236px;}
.y11e_c01208{bottom:245.871791px;}
.y11d_c01208{bottom:247.697726px;}
.y11c_c01208{bottom:251.987289px;}
.y11b_c01208{bottom:253.141706px;}
.y11a_c01208{bottom:256.741854px;}
.y119_c01208{bottom:259.067354px;}
.y118_c01208{bottom:260.838000px;}
.y117_c01208{bottom:289.134384px;}
.y116_c01208{bottom:292.463602px;}
.y115_c01208{bottom:293.520679px;}
.y114_c01208{bottom:295.915543px;}
.y113_c01208{bottom:297.226543px;}
.y112_c01208{bottom:298.274695px;}
.y111_c01208{bottom:310.151023px;}
.y110_c01208{bottom:313.567813px;}
.y10f_c01208{bottom:315.329527px;}
.y10e_c01208{bottom:316.014007px;}
.y10d_c01208{bottom:316.708974px;}
.y10c_c01208{bottom:319.132920px;}
.y10b_c01208{bottom:320.514916px;}
.y10a_c01208{bottom:322.520832px;}
.y109_c01208{bottom:323.537862px;}
.y108_c01208{bottom:326.629477px;}
.y107_c01208{bottom:327.626299px;}
.y106_c01208{bottom:328.628068px;}
.y105_c01208{bottom:330.661434px;}
.y104_c01208{bottom:345.091920px;}
.y103_c01208{bottom:346.525686px;}
.y102_c01208{bottom:347.655898px;}
.y101_c01208{bottom:350.046225px;}
.y100_c01208{bottom:353.230162px;}
.yff_c01208{bottom:354.332650px;}
.yfe_c01208{bottom:356.444323px;}
.yfd_c01208{bottom:359.271910px;}
.yfc_c01208{bottom:361.744626px;}
.yfb_c01208{bottom:362.746008px;}
.yfa_c01208{bottom:364.871553px;}
.yf9_c01208{bottom:366.287284px;}
.yf8_c01208{bottom:382.121991px;}
.yf7_c01208{bottom:384.298476px;}
.yf6_c01208{bottom:385.367415px;}
.yf5_c01208{bottom:389.021907px;}
.yf4_c01208{bottom:392.661679px;}
.yf3_c01208{bottom:393.730312px;}
.yf2_c01208{bottom:396.292201px;}
.yf1_c01208{bottom:397.714128px;}
.yf0_c01208{bottom:400.563540px;}
.yef_c01208{bottom:414.807399px;}
.yee_c01208{bottom:416.675172px;}
.yed_c01208{bottom:417.862146px;}
.yec_c01208{bottom:420.057696px;}
.yeb_c01208{bottom:421.564542px;}
.yea_c01208{bottom:425.275812px;}
.ye9_c01208{bottom:426.429024px;}
.ye8_c01208{bottom:428.894721px;}
.ye7_c01208{bottom:429.428436px;}
.ye6_c01208{bottom:431.701914px;}
.ye5_c01208{bottom:433.928115px;}
.ye4_c01208{bottom:436.166760px;}
.ye3_c01208{bottom:437.267085px;}
.ye2_c01208{bottom:450.334009px;}
.ye1_c01208{bottom:453.379270px;}
.ye0_c01208{bottom:454.129123px;}
.ydf_c01208{bottom:457.144345px;}
.yde_c01208{bottom:458.611972px;}
.ydd_c01208{bottom:460.902689px;}
.ydc_c01208{bottom:464.614112px;}
.ydb_c01208{bottom:465.381815px;}
.yda_c01208{bottom:468.022136px;}
.yd9_c01208{bottom:468.733993px;}
.yd8_c01208{bottom:471.318929px;}
.yd7_c01208{bottom:473.160844px;}
.yd6_c01208{bottom:486.912621px;}
.yd5_c01208{bottom:488.310063px;}
.yd4_c01208{bottom:490.445635px;}
.yd3_c01208{bottom:494.297402px;}
.yd2_c01208{bottom:497.509829px;}
.yd1_c01208{bottom:498.560947px;}
.yd0_c01208{bottom:501.020933px;}
.ycf_c01208{bottom:502.091514px;}
.yce_c01208{bottom:504.580224px;}
.ycd_c01208{bottom:506.626828px;}
.ycc_c01208{bottom:522.214858px;}
.ycb_c01208{bottom:524.078857px;}
.yca_c01208{bottom:527.470867px;}
.yc9_c01208{bottom:528.600619px;}
.yc8_c01208{bottom:529.739194px;}
.yc7_c01208{bottom:532.724072px;}
.yc6_c01208{bottom:536.876644px;}
.yc5_c01208{bottom:539.154763px;}
.yc4_c01208{bottom:542.514593px;}
.yc3_c01208{bottom:544.680766px;}
.yc2_c01208{bottom:557.034712px;}
.yc1_c01208{bottom:558.404277px;}
.yc0_c01208{bottom:560.151541px;}
.ybf_c01208{bottom:561.979531px;}
.ybe_c01208{bottom:564.105924px;}
.ybd_c01208{bottom:566.924656px;}
.ybc_c01208{bottom:567.978376px;}
.ybb_c01208{bottom:569.751632px;}
.yba_c01208{bottom:571.503333px;}
.yb9_c01208{bottom:574.722798px;}
.yb8_c01208{bottom:578.222886px;}
.yb7_c01208{bottom:579.222891px;}
.yb6_c01208{bottom:593.899509px;}
.yb5_c01208{bottom:595.047927px;}
.yb4_c01208{bottom:596.128974px;}
.yb3_c01208{bottom:598.003122px;}
.yb2_c01208{bottom:599.528328px;}
.yb1_c01208{bottom:602.984547px;}
.yb0_c01208{bottom:605.959938px;}
.yaf_c01208{bottom:607.071330px;}
.yae_c01208{bottom:611.148015px;}
.yad_c01208{bottom:612.665265px;}
.yac_c01208{bottom:613.404663px;}
.yab_c01208{bottom:615.653100px;}
.yaa_c01208{bottom:629.362221px;}
.ya9_c01208{bottom:633.370662px;}
.ya8_c01208{bottom:636.701667px;}
.ya7_c01208{bottom:638.013777px;}
.ya6_c01208{bottom:641.347230px;}
.ya5_c01208{bottom:643.001302px;}
.ya4_c01208{bottom:643.630621px;}
.ya3_c01208{bottom:646.282967px;}
.ya2_c01208{bottom:647.279984px;}
.ya1_c01208{bottom:649.929696px;}
.ya0_c01208{bottom:666.379366px;}
.y9f_c01208{bottom:669.002037px;}
.y9e_c01208{bottom:672.191172px;}
.y9d_c01208{bottom:673.764869px;}
.y9c_c01208{bottom:675.364007px;}
.y9b_c01208{bottom:676.343419px;}
.y9a_c01208{bottom:679.815184px;}
.y99_c01208{bottom:680.778552px;}
.y98_c01208{bottom:681.695882px;}
.y97_c01208{bottom:682.695432px;}
.y96_c01208{bottom:683.935635px;}
.y95_c01208{bottom:700.100811px;}
.y94_c01208{bottom:702.010710px;}
.y93_c01208{bottom:703.157394px;}
.y92_c01208{bottom:707.982045px;}
.y91_c01208{bottom:709.488585px;}
.y90_c01208{bottom:712.519362px;}
.y8f_c01208{bottom:714.384330px;}
.y8e_c01208{bottom:718.218000px;}
.y8d_c01208{bottom:735.423798px;}
.y8c_c01208{bottom:736.456219px;}
.y8b_c01208{bottom:739.298341px;}
.y8a_c01208{bottom:741.452509px;}
.y89_c01208{bottom:742.823910px;}
.y88_c01208{bottom:745.689370px;}
.y87_c01208{bottom:747.840631px;}
.y86_c01208{bottom:750.581596px;}
.y85_c01208{bottom:752.724870px;}
.y84_c01208{bottom:754.858963px;}
.y83_c01208{bottom:755.502516px;}
.y82_c01208{bottom:771.329359px;}
.y81_c01208{bottom:772.377262px;}
.y80_c01208{bottom:773.915847px;}
.y7f_c01208{bottom:776.463672px;}
.y7e_c01208{bottom:777.772875px;}
.y7d_c01208{bottom:778.744657px;}
.y7c_c01208{bottom:780.987369px;}
.y7b_c01208{bottom:781.926672px;}
.y7a_c01208{bottom:782.896567px;}
.y79_c01208{bottom:785.420665px;}
.y78_c01208{bottom:787.403587px;}
.y77_c01208{bottom:788.304075px;}
.y76_c01208{bottom:789.244449px;}
.y75_c01208{bottom:804.875454px;}
.y74_c01208{bottom:806.377914px;}
.y73_c01208{bottom:809.036289px;}
.y72_c01208{bottom:810.525387px;}
.y71_c01208{bottom:812.765562px;}
.y70_c01208{bottom:815.217999px;}
.y6f_c01208{bottom:816.490500px;}
.y6e_c01208{bottom:818.426700px;}
.y6d_c01208{bottom:818.869740px;}
.y6c_c01208{bottom:820.200240px;}
.y6b_c01208{bottom:820.641660px;}
.y6a_c01208{bottom:821.734500px;}
.y69_c01208{bottom:822.391980px;}
.y68_c01208{bottom:824.587500px;}
.y67_c01208{bottom:843.464778px;}
.y66_c01208{bottom:847.444972px;}
.y65_c01208{bottom:849.788396px;}
.y64_c01208{bottom:850.809018px;}
.y63_c01208{bottom:852.121823px;}
.y62_c01208{bottom:853.095164px;}
.y61_c01208{bottom:856.083951px;}
.y60_c01208{bottom:858.403137px;}
.y5f_c01208{bottom:859.341754px;}
.y5e_c01208{bottom:860.662617px;}
.y5d_c01208{bottom:861.666755px;}
.y5c_c01208{bottom:877.879261px;}
.y5b_c01208{bottom:879.525653px;}
.y5a_c01208{bottom:881.544924px;}
.y59_c01208{bottom:882.838796px;}
.y58_c01208{bottom:883.851992px;}
.y57_c01208{bottom:886.489535px;}
.y56_c01208{bottom:887.484104px;}
.y55_c01208{bottom:890.114220px;}
.y54_c01208{bottom:892.140102px;}
.y53_c01208{bottom:894.790070px;}
.y52_c01208{bottom:895.730370px;}
.y51_c01208{bottom:897.023681px;}
.y50_c01208{bottom:910.364831px;}
.y4f_c01208{bottom:911.523368px;}
.y4e_c01208{bottom:914.663333px;}
.y4d_c01208{bottom:916.973420px;}
.y4c_c01208{bottom:918.184965px;}
.y4b_c01208{bottom:919.982919px;}
.y4a_c01208{bottom:923.147211px;}
.y49_c01208{bottom:925.085015px;}
.y48_c01208{bottom:926.621955px;}
.y47_c01208{bottom:931.208654px;}
.y46_c01208{bottom:932.712138px;}
.y45_c01208{bottom:934.266999px;}
.y44_c01208{bottom:946.360098px;}
.y43_c01208{bottom:948.671858px;}
.y42_c01208{bottom:950.044694px;}
.y41_c01208{bottom:951.387651px;}
.y40_c01208{bottom:954.690563px;}
.y3f_c01208{bottom:955.703504px;}
.y3e_c01208{bottom:957.331095px;}
.y3d_c01208{bottom:958.676685px;}
.y3c_c01208{bottom:961.633688px;}
.y3b_c01208{bottom:962.936363px;}
.y3a_c01208{bottom:964.224746px;}
.y39_c01208{bottom:966.922983px;}
.y38_c01208{bottom:980.894078px;}
.y37_c01208{bottom:983.198445px;}
.y36_c01208{bottom:984.726869px;}
.y35_c01208{bottom:985.096259px;}
.y34_c01208{bottom:987.338154px;}
.y33_c01208{bottom:990.557709px;}
.y32_c01208{bottom:991.514211px;}
.y31_c01208{bottom:992.461706px;}
.y30_c01208{bottom:994.696002px;}
.y2f_c01208{bottom:998.173307px;}
.y2e_c01208{bottom:1000.122494px;}
.y2d_c01208{bottom:1015.243503px;}
.y2c_c01208{bottom:1018.695699px;}
.y2b_c01208{bottom:1021.435200px;}
.y2a_c01208{bottom:1024.577298px;}
.y29_c01208{bottom:1027.307925px;}
.y28_c01208{bottom:1028.346407px;}
.y27_c01208{bottom:1030.708976px;}
.y26_c01208{bottom:1031.713479px;}
.y25_c01208{bottom:1034.761650px;}
.y24_c01208{bottom:1036.828127px;}
.y23_c01208{bottom:1050.713841px;}
.y22_c01208{bottom:1052.473086px;}
.y21_c01208{bottom:1054.794300px;}
.y20_c01208{bottom:1055.904774px;}
.y1f_c01208{bottom:1060.028277px;}
.y1e_c01208{bottom:1061.213976px;}
.y1d_c01208{bottom:1062.252285px;}
.y1c_c01208{bottom:1063.433343px;}
.y1b_c01208{bottom:1066.439997px;}
.y1a_c01208{bottom:1068.295173px;}
.y19_c01208{bottom:1070.563500px;}
.y18_c01208{bottom:1090.446997px;}
.y17_c01208{bottom:1091.341967px;}
.y16_c01208{bottom:1092.296997px;}
.y15_c01208{bottom:1094.635467px;}
.y14_c01208{bottom:1096.411230px;}
.y13_c01208{bottom:1097.347145px;}
.y12_c01208{bottom:1097.920665px;}
.y11_c01208{bottom:1099.695618px;}
.y10_c01208{bottom:1102.707643px;}
.yf_c01208{bottom:1103.553365px;}
.ye_c01208{bottom:1105.659000px;}
.yd_c01208{bottom:1122.817395px;}
.yc_c01208{bottom:1125.262583px;}
.yb_c01208{bottom:1127.028301px;}
.ya_c01208{bottom:1128.560619px;}
.y9_c01208{bottom:1130.361775px;}
.y8_c01208{bottom:1131.533845px;}
.y7_c01208{bottom:1133.627088px;}
.y6_c01208{bottom:1135.408723px;}
.y5_c01208{bottom:1137.217170px;}
.y4_c01208{bottom:1138.085328px;}
.y3_c01208{bottom:1139.227266px;}
.y2_c01208{bottom:1141.302000px;}
.y1_c01208{bottom:1189.630500px;}
.h6_c01208{height:59.974705px;}
.h5_c01208{height:65.972175px;}
.h9_c01208{height:65.989505px;}
.h3_c01208{height:66.024053px;}
.h7_c01208{height:71.969646px;}
.ha_c01208{height:71.974688px;}
.h8_c01208{height:72.014399px;}
.h4_c01208{height:77.967116px;}
.hb_c01208{height:77.972578px;}
.h2_c01208{height:84.000000px;}
.hc_c01208{height:96.023229px;}
.h1_c01208{height:1258.500000px;}
.h0_c01208{height:1258.740000px;}
.w0_c01208{width:904.200000px;}
.w1_c01208{width:904.500000px;}
.x0_c01208{left:0.000000px;}
.xdb_c01208{left:128.410500px;}
.xd4_c01208{left:130.543766px;}
.xcf_c01208{left:132.172500px;}
.xbb_c01208{left:133.349062px;}
.xb2_c01208{left:136.547914px;}
.xa3_c01208{left:139.771568px;}
.x8a_c01208{left:141.449814px;}
.x80_c01208{left:144.135914px;}
.x3_c01208{left:146.706000px;}
.x58_c01208{left:148.304979px;}
.x38_c01208{left:150.474051px;}
.x25_c01208{left:152.541156px;}
.xf_c01208{left:154.915500px;}
.x75_c01208{left:166.087574px;}
.xb3_c01208{left:168.878052px;}
.x9b_c01208{left:171.822498px;}
.xbc_c01208{left:177.547332px;}
.x6d_c01208{left:179.301243px;}
.x59_c01208{left:181.732062px;}
.x81_c01208{left:186.835420px;}
.x4e_c01208{left:192.980139px;}
.x43_c01208{left:195.685005px;}
.xc2_c01208{left:199.743001px;}
.xa4_c01208{left:203.418857px;}
.x92_c01208{left:206.785682px;}
.xc9_c01208{left:208.864270px;}
.x6e_c01208{left:210.299972px;}
.x7b_c01208{left:217.339500px;}
.x26_c01208{left:219.121798px;}
.x82_c01208{left:221.273819px;}
.x4_c01208{left:223.548000px;}
.x5a_c01208{left:225.699523px;}
.x93_c01208{left:228.510935px;}
.x8b_c01208{left:229.663509px;}
.x10_c01208{left:232.902000px;}
.xb4_c01208{left:234.654709px;}
.x44_c01208{left:238.582584px;}
.x39_c01208{left:240.289847px;}
.xbd_c01208{left:243.879925px;}
.xdc_c01208{left:247.762500px;}
.xd0_c01208{left:250.766787px;}
.x83_c01208{left:252.855566px;}
.x5b_c01208{left:256.936992px;}
.x1a_c01208{left:263.107500px;}
.x11_c01208{left:264.225000px;}
.x5_c01208{left:265.842000px;}
.xab_c01208{left:269.069515px;}
.x94_c01208{left:273.091310px;}
.xbe_c01208{left:275.154264px;}
.x6f_c01208{left:278.613229px;}
.x9c_c01208{left:281.099066px;}
.x3a_c01208{left:283.170743px;}
.x84_c01208{left:286.054500px;}
.x62_c01208{left:289.455000px;}
.xd8_c01208{left:293.350904px;}
.x6_c01208{left:297.996000px;}
.x76_c01208{left:299.613002px;}
.xa5_c01208{left:302.138538px;}
.x4f_c01208{left:312.488245px;}
.xa8_c01208{left:313.976754px;}
.xd5_c01208{left:315.620153px;}
.x27_c01208{left:317.324004px;}
.xca_c01208{left:320.076280px;}
.xe2_c01208{left:323.816889px;}
.x3b_c01208{left:326.559732px;}
.x1b_c01208{left:329.756284px;}
.x5c_c01208{left:334.160707px;}
.x2f_c01208{left:338.590190px;}
.xcb_c01208{left:339.923094px;}
.x63_c01208{left:344.097000px;}
.x28_c01208{left:349.703910px;}
.x8c_c01208{left:351.172419px;}
.xbf_c01208{left:352.348750px;}
.xdd_c01208{left:358.347000px;}
.xd6_c01208{left:360.352308px;}
.xc3_c01208{left:363.719554px;}
.x7_c01208{left:364.975500px;}
.x64_c01208{left:366.168000px;}
.xac_c01208{left:367.564422px;}
.x45_c01208{left:369.515579px;}
.x8d_c01208{left:372.131798px;}
.x12_c01208{left:375.781500px;}
.x50_c01208{left:379.947907px;}
.x9d_c01208{left:381.601304px;}
.x1c_c01208{left:384.265720px;}
.xa9_c01208{left:390.753108px;}
.x95_c01208{left:392.873907px;}
.xc4_c01208{left:396.511599px;}
.x70_c01208{left:398.951242px;}
.xde_c01208{left:401.475000px;}
.x85_c01208{left:405.607146px;}
.x1_c01208{left:410.940000px;}
.x46_c01208{left:413.396173px;}
.x30_c01208{left:415.567755px;}
.xaa_c01208{left:423.576997px;}
.x29_c01208{left:425.821975px;}
.x8e_c01208{left:427.212167px;}
.x8_c01208{left:430.962000px;}
.x5d_c01208{left:433.659637px;}
.x9e_c01208{left:436.288289px;}
.x86_c01208{left:439.321616px;}
.x13_c01208{left:441.520500px;}
.xdf_c01208{left:446.595000px;}
.x31_c01208{left:448.212143px;}
.x77_c01208{left:452.350526px;}
.x65_c01208{left:454.845000px;}
.x2a_c01208{left:459.288396px;}
.xc5_c01208{left:461.136495px;}
.x14_c01208{left:462.762000px;}
.x5e_c01208{left:466.049605px;}
.x51_c01208{left:467.497665px;}
.x47_c01208{left:468.702423px;}
.x3c_c01208{left:469.862838px;}
.xd1_c01208{left:471.014819px;}
.x1d_c01208{left:472.608289px;}
.x7c_c01208{left:473.830253px;}
.x2_c01208{left:477.090000px;}
.xe0_c01208{left:479.533500px;}
.x32_c01208{left:481.165272px;}
.xb7_c01208{left:486.211638px;}
.x66_c01208{left:488.658000px;}
.x9f_c01208{left:491.652647px;}
.x87_c01208{left:494.418857px;}
.x15_c01208{left:497.425500px;}
.xad_c01208{left:499.171683px;}
.x52_c01208{left:500.599522px;}
.xc6_c01208{left:505.665964px;}
.x1e_c01208{left:507.310552px;}
.x9_c01208{left:508.489500px;}
.x5f_c01208{left:509.780304px;}
.x96_c01208{left:512.953207px;}
.x7d_c01208{left:518.095942px;}
.x3d_c01208{left:524.076972px;}
.x67_c01208{left:526.047073px;}
.xe3_c01208{left:535.325586px;}
.x1f_c01208{left:537.818514px;}
.xc0_c01208{left:540.977797px;}
.x71_c01208{left:541.981869px;}
.x60_c01208{left:543.779916px;}
.xe1_c01208{left:546.273000px;}
.x2b_c01208{left:547.278802px;}
.x88_c01208{left:548.636325px;}
.xa_c01208{left:551.899500px;}
.xe4_c01208{left:555.844674px;}
.x3e_c01208{left:557.806803px;}
.x48_c01208{left:559.031940px;}
.xcc_c01208{left:560.291005px;}
.x16_c01208{left:563.194500px;}
.xae_c01208{left:566.478309px;}
.x20_c01208{left:572.657140px;}
.xa6_c01208{left:578.790109px;}
.x8f_c01208{left:581.870886px;}
.x78_c01208{left:584.597631px;}
.x72_c01208{left:587.061402px;}
.x53_c01208{left:588.411568px;}
.x33_c01208{left:592.073142px;}
.xb8_c01208{left:596.851165px;}
.x68_c01208{left:598.105443px;}
.xd2_c01208{left:602.992209px;}
.xcd_c01208{left:604.781470px;}
.xc7_c01208{left:606.167124px;}
.x49_c01208{left:610.361323px;}
.xa0_c01208{left:612.531366px;}
.x97_c01208{left:614.505054px;}
.xb_c01208{left:618.609000px;}
.x54_c01208{left:622.148892px;}
.xd9_c01208{left:624.320103px;}
.xc8_c01208{left:628.218297px;}
.xb9_c01208{left:629.228878px;}
.xc1_c01208{left:640.392073px;}
.xb5_c01208{left:642.200256px;}
.x4a_c01208{left:644.945531px;}
.x2c_c01208{left:648.505287px;}
.x17_c01208{left:649.804500px;}
.x79_c01208{left:651.859397px;}
.x89_c01208{left:658.474062px;}
.x7e_c01208{left:659.855541px;}
.x69_c01208{left:663.927055px;}
.x55_c01208{left:665.235133px;}
.x3f_c01208{left:667.769688px;}
.x34_c01208{left:669.273984px;}
.xc_c01208{left:675.361500px;}
.xa1_c01208{left:678.932942px;}
.x35_c01208{left:681.978910px;}
.x18_c01208{left:685.176000px;}
.x90_c01208{left:692.791466px;}
.x21_c01208{left:693.815361px;}
.xba_c01208{left:695.118669px;}
.xaf_c01208{left:698.194960px;}
.xda_c01208{left:700.990856px;}
.x6a_c01208{left:707.680259px;}
.x4b_c01208{left:710.881782px;}
.x40_c01208{left:712.474514px;}
.x98_c01208{left:714.386073px;}
.x19_c01208{left:718.323000px;}
.xb0_c01208{left:720.227406px;}
.x22_c01208{left:726.443700px;}
.x73_c01208{left:727.803462px;}
.x56_c01208{left:732.456483px;}
.x36_c01208{left:734.601669px;}
.x2d_c01208{left:736.756432px;}
.xd_c01208{left:740.758500px;}
.xa7_c01208{left:745.104129px;}
.x99_c01208{left:746.149778px;}
.x7f_c01208{left:749.665141px;}
.x61_c01208{left:754.311813px;}
.xd7_c01208{left:756.963435px;}
.x41_c01208{left:758.189481px;}
.x74_c01208{left:763.882973px;}
.xd3_c01208{left:768.810225px;}
.x7a_c01208{left:772.799554px;}
.x9a_c01208{left:779.893000px;}
.xce_c01208{left:781.367707px;}
.x6b_c01208{left:785.789571px;}
.x57_c01208{left:787.267071px;}
.xa2_c01208{left:790.550319px;}
.x23_c01208{left:794.646429px;}
.xb6_c01208{left:796.466335px;}
.x4c_c01208{left:800.496515px;}
.xb1_c01208{left:809.704339px;}
.x37_c01208{left:813.990729px;}
.x91_c01208{left:826.261536px;}
.x6c_c01208{left:829.935381px;}
.xe_c01208{left:831.321000px;}
.x4d_c01208{left:833.567288px;}
.x42_c01208{left:835.150908px;}
.x24_c01208{left:846.337186px;}
.x2e_c01208{left:847.975935px;}
@media print{
.v0_c01208{vertical-align:0.000000pt;}
.ls0_c01208{letter-spacing:0.000000pt;}
.ws0_c01208{word-spacing:0.000000pt;}
.fs4_c01208{font-size:53.310849pt;}
.fs3_c01208{font-size:58.641933pt;}
.fs7_c01208{font-size:58.657338pt;}
.fs1_c01208{font-size:58.688047pt;}
.fs5_c01208{font-size:63.973018pt;}
.fs8_c01208{font-size:63.977500pt;}
.fs6_c01208{font-size:64.012799pt;}
.fs2_c01208{font-size:69.304103pt;}
.fs9_c01208{font-size:69.308958pt;}
.fs0_c01208{font-size:74.666667pt;}
.fsa_c01208{font-size:85.353982pt;}
.y0_c01208{bottom:0.000000pt;}
.y152_c01208{bottom:44.661589pt;}
.y151_c01208{bottom:46.351635pt;}
.y150_c01208{bottom:46.971669pt;}
.y14f_c01208{bottom:50.032344pt;}
.y14e_c01208{bottom:50.988816pt;}
.y14d_c01208{bottom:53.363597pt;}
.y14c_c01208{bottom:55.688309pt;}
.y14b_c01208{bottom:59.283264pt;}
.y14a_c01208{bottom:76.412272pt;}
.y149_c01208{bottom:77.516467pt;}
.y148_c01208{bottom:78.821595pt;}
.y147_c01208{bottom:79.465725pt;}
.y146_c01208{bottom:80.348072pt;}
.y145_c01208{bottom:81.191464pt;}
.y144_c01208{bottom:81.806525pt;}
.y143_c01208{bottom:83.354005pt;}
.y142_c01208{bottom:85.688000pt;}
.y141_c01208{bottom:116.240960pt;}
.y140_c01208{bottom:117.331376pt;}
.y13f_c01208{bottom:119.787296pt;}
.y13e_c01208{bottom:122.243840pt;}
.y13d_c01208{bottom:123.351536pt;}
.y13c_c01208{bottom:126.530528pt;}
.y13b_c01208{bottom:129.334592pt;}
.y13a_c01208{bottom:130.388912pt;}
.y139_c01208{bottom:132.134912pt;}
.y138_c01208{bottom:132.817328pt;}
.y137_c01208{bottom:134.953664pt;}
.y136_c01208{bottom:135.608000pt;}
.y135_c01208{bottom:148.025197pt;}
.y134_c01208{bottom:149.255377pt;}
.y133_c01208{bottom:151.202713pt;}
.y132_c01208{bottom:153.694117pt;}
.y131_c01208{bottom:156.819265pt;}
.y130_c01208{bottom:157.752469pt;}
.y12f_c01208{bottom:159.319705pt;}
.y12e_c01208{bottom:160.593853pt;}
.y12d_c01208{bottom:163.355029pt;}
.y12c_c01208{bottom:164.273149pt;}
.y12b_c01208{bottom:165.864697pt;}
.y12a_c01208{bottom:179.540533pt;}
.y129_c01208{bottom:181.297045pt;}
.y128_c01208{bottom:184.852021pt;}
.y127_c01208{bottom:186.659701pt;}
.y126_c01208{bottom:189.079525pt;}
.y125_c01208{bottom:192.971845pt;}
.y124_c01208{bottom:195.116293pt;}
.y123_c01208{bottom:196.134517pt;}
.y122_c01208{bottom:199.933333pt;}
.y121_c01208{bottom:212.110673pt;}
.y120_c01208{bottom:213.265015pt;}
.y11f_c01208{bottom:214.530876pt;}
.y11e_c01208{bottom:218.552703pt;}
.y11d_c01208{bottom:220.175756pt;}
.y11c_c01208{bottom:223.988701pt;}
.y11b_c01208{bottom:225.014849pt;}
.y11a_c01208{bottom:228.214981pt;}
.y119_c01208{bottom:230.282092pt;}
.y118_c01208{bottom:231.856000pt;}
.y117_c01208{bottom:257.008341pt;}
.y116_c01208{bottom:259.967647pt;}
.y115_c01208{bottom:260.907271pt;}
.y114_c01208{bottom:263.036039pt;}
.y113_c01208{bottom:264.201372pt;}
.y112_c01208{bottom:265.133063pt;}
.y111_c01208{bottom:275.689799pt;}
.y110_c01208{bottom:278.726945pt;}
.y10f_c01208{bottom:280.292913pt;}
.y10e_c01208{bottom:280.901340pt;}
.y10d_c01208{bottom:281.519088pt;}
.y10c_c01208{bottom:283.673707pt;}
.y10b_c01208{bottom:284.902148pt;}
.y10a_c01208{bottom:286.685184pt;}
.y109_c01208{bottom:287.589211pt;}
.y108_c01208{bottom:290.337313pt;}
.y107_c01208{bottom:291.223377pt;}
.y106_c01208{bottom:292.113839pt;}
.y105_c01208{bottom:293.921275pt;}
.y104_c01208{bottom:306.748373pt;}
.y103_c01208{bottom:308.022832pt;}
.y102_c01208{bottom:309.027465pt;}
.y101_c01208{bottom:311.152200pt;}
.y100_c01208{bottom:313.982367pt;}
.yff_c01208{bottom:314.962356pt;}
.yfe_c01208{bottom:316.839399pt;}
.yfd_c01208{bottom:319.352809pt;}
.yfc_c01208{bottom:321.550779pt;}
.yfb_c01208{bottom:322.440896pt;}
.yfa_c01208{bottom:324.330269pt;}
.yf9_c01208{bottom:325.588697pt;}
.yf8_c01208{bottom:339.663992pt;}
.yf7_c01208{bottom:341.598645pt;}
.yf6_c01208{bottom:342.548813pt;}
.yf5_c01208{bottom:345.797251pt;}
.yf4_c01208{bottom:349.032604pt;}
.yf3_c01208{bottom:349.982500pt;}
.yf2_c01208{bottom:352.259735pt;}
.yf1_c01208{bottom:353.523669pt;}
.yf0_c01208{bottom:356.056480pt;}
.yef_c01208{bottom:368.717688pt;}
.yee_c01208{bottom:370.377931pt;}
.yed_c01208{bottom:371.433019pt;}
.yec_c01208{bottom:373.384619pt;}
.yeb_c01208{bottom:374.724037pt;}
.yea_c01208{bottom:378.022944pt;}
.ye9_c01208{bottom:379.048021pt;}
.ye8_c01208{bottom:381.239752pt;}
.ye7_c01208{bottom:381.714165pt;}
.ye6_c01208{bottom:383.735035pt;}
.ye5_c01208{bottom:385.713880pt;}
.ye4_c01208{bottom:387.703787pt;}
.ye3_c01208{bottom:388.681853pt;}
.ye2_c01208{bottom:400.296897pt;}
.ye1_c01208{bottom:403.003796pt;}
.ye0_c01208{bottom:403.670332pt;}
.ydf_c01208{bottom:406.350529pt;}
.yde_c01208{bottom:407.655087pt;}
.ydd_c01208{bottom:409.691279pt;}
.ydc_c01208{bottom:412.990321pt;}
.ydb_c01208{bottom:413.672724pt;}
.yda_c01208{bottom:416.019676pt;}
.yd9_c01208{bottom:416.652439pt;}
.yd8_c01208{bottom:418.950159pt;}
.yd7_c01208{bottom:420.587417pt;}
.yd6_c01208{bottom:432.811219pt;}
.yd5_c01208{bottom:434.053389pt;}
.yd4_c01208{bottom:435.951676pt;}
.yd3_c01208{bottom:439.375468pt;}
.yd2_c01208{bottom:442.230959pt;}
.yd1_c01208{bottom:443.165287pt;}
.yd0_c01208{bottom:445.351940pt;}
.ycf_c01208{bottom:446.303568pt;}
.yce_c01208{bottom:448.515755pt;}
.ycd_c01208{bottom:450.334959pt;}
.ycc_c01208{bottom:464.190985pt;}
.ycb_c01208{bottom:465.847873pt;}
.yca_c01208{bottom:468.862993pt;}
.yc9_c01208{bottom:469.867217pt;}
.yc8_c01208{bottom:470.879284pt;}
.yc7_c01208{bottom:473.532508pt;}
.yc6_c01208{bottom:477.223684pt;}
.yc5_c01208{bottom:479.248679pt;}
.yc4_c01208{bottom:482.235193pt;}
.yc3_c01208{bottom:484.160681pt;}
.yc2_c01208{bottom:495.141967pt;}
.yc1_c01208{bottom:496.359357pt;}
.yc0_c01208{bottom:497.912481pt;}
.ybf_c01208{bottom:499.537361pt;}
.ybe_c01208{bottom:501.427488pt;}
.ybd_c01208{bottom:503.933028pt;}
.ybc_c01208{bottom:504.869668pt;}
.ybb_c01208{bottom:506.445895pt;}
.yba_c01208{bottom:508.002963pt;}
.yb9_c01208{bottom:510.864709pt;}
.yb8_c01208{bottom:513.975899pt;}
.yb7_c01208{bottom:514.864792pt;}
.yb6_c01208{bottom:527.910675pt;}
.yb5_c01208{bottom:528.931491pt;}
.yb4_c01208{bottom:529.892421pt;}
.yb3_c01208{bottom:531.558331pt;}
.yb2_c01208{bottom:532.914069pt;}
.yb1_c01208{bottom:535.986264pt;}
.yb0_c01208{bottom:538.631056pt;}
.yaf_c01208{bottom:539.618960pt;}
.yae_c01208{bottom:543.242680pt;}
.yad_c01208{bottom:544.591347pt;}
.yac_c01208{bottom:545.248589pt;}
.yab_c01208{bottom:547.247200pt;}
.yaa_c01208{bottom:559.433085pt;}
.ya9_c01208{bottom:562.996144pt;}
.ya8_c01208{bottom:565.957037pt;}
.ya7_c01208{bottom:567.123357pt;}
.ya6_c01208{bottom:570.086427pt;}
.ya5_c01208{bottom:571.556713pt;}
.ya4_c01208{bottom:572.116108pt;}
.ya3_c01208{bottom:574.473748pt;}
.ya2_c01208{bottom:575.359985pt;}
.ya1_c01208{bottom:577.715285pt;}
.ya0_c01208{bottom:592.337215pt;}
.y9f_c01208{bottom:594.668477pt;}
.y9e_c01208{bottom:597.503264pt;}
.y9d_c01208{bottom:598.902105pt;}
.y9c_c01208{bottom:600.323561pt;}
.y9b_c01208{bottom:601.194151pt;}
.y9a_c01208{bottom:604.280164pt;}
.y99_c01208{bottom:605.136491pt;}
.y98_c01208{bottom:605.951895pt;}
.y97_c01208{bottom:606.840384pt;}
.y96_c01208{bottom:607.942787pt;}
.y95_c01208{bottom:622.311832pt;}
.y94_c01208{bottom:624.009520pt;}
.y93_c01208{bottom:625.028795pt;}
.y92_c01208{bottom:629.317373pt;}
.y91_c01208{bottom:630.656520pt;}
.y90_c01208{bottom:633.350544pt;}
.y8f_c01208{bottom:635.008293pt;}
.y8e_c01208{bottom:638.416000pt;}
.y8d_c01208{bottom:653.710043pt;}
.y8c_c01208{bottom:654.627751pt;}
.y8b_c01208{bottom:657.154081pt;}
.y8a_c01208{bottom:659.068897pt;}
.y89_c01208{bottom:660.287920pt;}
.y88_c01208{bottom:662.834996pt;}
.y87_c01208{bottom:664.747228pt;}
.y86_c01208{bottom:667.183641pt;}
.y85_c01208{bottom:669.088773pt;}
.y84_c01208{bottom:670.985745pt;}
.y83_c01208{bottom:671.557792pt;}
.y82_c01208{bottom:685.626097pt;}
.y81_c01208{bottom:686.557567pt;}
.y80_c01208{bottom:687.925197pt;}
.y7f_c01208{bottom:690.189931pt;}
.y7e_c01208{bottom:691.353667pt;}
.y7d_c01208{bottom:692.217473pt;}
.y7c_c01208{bottom:694.210995pt;}
.y7b_c01208{bottom:695.045931pt;}
.y7a_c01208{bottom:695.908060pt;}
.y79_c01208{bottom:698.151703pt;}
.y78_c01208{bottom:699.914300pt;}
.y77_c01208{bottom:700.714733pt;}
.y76_c01208{bottom:701.550621pt;}
.y75_c01208{bottom:715.444848pt;}
.y74_c01208{bottom:716.780368pt;}
.y73_c01208{bottom:719.143368pt;}
.y72_c01208{bottom:720.467011pt;}
.y71_c01208{bottom:722.458277pt;}
.y70_c01208{bottom:724.638221pt;}
.y6f_c01208{bottom:725.769333pt;}
.y6e_c01208{bottom:727.490400pt;}
.y6d_c01208{bottom:727.884213pt;}
.y6c_c01208{bottom:729.066880pt;}
.y6b_c01208{bottom:729.459253pt;}
.y6a_c01208{bottom:730.430667pt;}
.y69_c01208{bottom:731.015093pt;}
.y68_c01208{bottom:732.966667pt;}
.y67_c01208{bottom:749.746469pt;}
.y66_c01208{bottom:753.284420pt;}
.y65_c01208{bottom:755.367463pt;}
.y64_c01208{bottom:756.274683pt;}
.y63_c01208{bottom:757.441620pt;}
.y62_c01208{bottom:758.306812pt;}
.y61_c01208{bottom:760.963512pt;}
.y60_c01208{bottom:763.025011pt;}
.y5f_c01208{bottom:763.859337pt;}
.y5e_c01208{bottom:765.033437pt;}
.y5d_c01208{bottom:765.926004pt;}
.y5c_c01208{bottom:780.337121pt;}
.y5b_c01208{bottom:781.800580pt;}
.y5a_c01208{bottom:783.595488pt;}
.y59_c01208{bottom:784.745596pt;}
.y58_c01208{bottom:785.646215pt;}
.y57_c01208{bottom:787.990697pt;}
.y56_c01208{bottom:788.874759pt;}
.y55_c01208{bottom:791.212640pt;}
.y54_c01208{bottom:793.013424pt;}
.y53_c01208{bottom:795.368951pt;}
.y52_c01208{bottom:796.204773pt;}
.y51_c01208{bottom:797.354383pt;}
.y50_c01208{bottom:809.213183pt;}
.y4f_c01208{bottom:810.242993pt;}
.y4e_c01208{bottom:813.034073pt;}
.y4d_c01208{bottom:815.087484pt;}
.y4c_c01208{bottom:816.164413pt;}
.y4b_c01208{bottom:817.762595pt;}
.y4a_c01208{bottom:820.575299pt;}
.y49_c01208{bottom:822.297791pt;}
.y48_c01208{bottom:823.663960pt;}
.y47_c01208{bottom:827.741025pt;}
.y46_c01208{bottom:829.077456pt;}
.y45_c01208{bottom:830.459555pt;}
.y44_c01208{bottom:841.208976pt;}
.y43_c01208{bottom:843.263873pt;}
.y42_c01208{bottom:844.484172pt;}
.y41_c01208{bottom:845.677912pt;}
.y40_c01208{bottom:848.613833pt;}
.y3f_c01208{bottom:849.514225pt;}
.y3e_c01208{bottom:850.960973pt;}
.y3d_c01208{bottom:852.157053pt;}
.y3c_c01208{bottom:854.785500pt;}
.y3b_c01208{bottom:855.943433pt;}
.y3a_c01208{bottom:857.088663pt;}
.y39_c01208{bottom:859.487096pt;}
.y38_c01208{bottom:871.905847pt;}
.y37_c01208{bottom:873.954173pt;}
.y36_c01208{bottom:875.312772pt;}
.y35_c01208{bottom:875.641119pt;}
.y34_c01208{bottom:877.633915pt;}
.y33_c01208{bottom:880.495741pt;}
.y32_c01208{bottom:881.345965pt;}
.y31_c01208{bottom:882.188183pt;}
.y30_c01208{bottom:884.174224pt;}
.y2f_c01208{bottom:887.265161pt;}
.y2e_c01208{bottom:888.997772pt;}
.y2d_c01208{bottom:902.438669pt;}
.y2c_c01208{bottom:905.507288pt;}
.y2b_c01208{bottom:907.942400pt;}
.y2a_c01208{bottom:910.735376pt;}
.y29_c01208{bottom:913.162600pt;}
.y28_c01208{bottom:914.085695pt;}
.y27_c01208{bottom:916.185756pt;}
.y26_c01208{bottom:917.078648pt;}
.y25_c01208{bottom:919.788133pt;}
.y24_c01208{bottom:921.625001pt;}
.y23_c01208{bottom:933.967859pt;}
.y22_c01208{bottom:935.531632pt;}
.y21_c01208{bottom:937.594933pt;}
.y20_c01208{bottom:938.582021pt;}
.y1f_c01208{bottom:942.247357pt;}
.y1e_c01208{bottom:943.301312pt;}
.y1d_c01208{bottom:944.224253pt;}
.y1c_c01208{bottom:945.274083pt;}
.y1b_c01208{bottom:947.946664pt;}
.y1a_c01208{bottom:949.595709pt;}
.y19_c01208{bottom:951.612000pt;}
.y18_c01208{bottom:969.286220pt;}
.y17_c01208{bottom:970.081748pt;}
.y16_c01208{bottom:970.930664pt;}
.y15_c01208{bottom:973.009304pt;}
.y14_c01208{bottom:974.587760pt;}
.y13_c01208{bottom:975.419684pt;}
.y12_c01208{bottom:975.929480pt;}
.y11_c01208{bottom:977.507216pt;}
.y10_c01208{bottom:980.184572pt;}
.yf_c01208{bottom:980.936324pt;}
.ye_c01208{bottom:982.808000pt;}
.yd_c01208{bottom:998.059907pt;}
.yc_c01208{bottom:1000.233407pt;}
.yb_c01208{bottom:1001.802935pt;}
.ya_c01208{bottom:1003.164995pt;}
.y9_c01208{bottom:1004.766023pt;}
.y8_c01208{bottom:1005.807863pt;}
.y7_c01208{bottom:1007.668523pt;}
.y6_c01208{bottom:1009.252199pt;}
.y5_c01208{bottom:1010.859707pt;}
.y4_c01208{bottom:1011.631403pt;}
.y3_c01208{bottom:1012.646459pt;}
.y2_c01208{bottom:1014.490667pt;}
.y1_c01208{bottom:1057.449333pt;}
.h6_c01208{height:53.310849pt;}
.h5_c01208{height:58.641933pt;}
.h9_c01208{height:58.657338pt;}
.h3_c01208{height:58.688047pt;}
.h7_c01208{height:63.973018pt;}
.ha_c01208{height:63.977500pt;}
.h8_c01208{height:64.012799pt;}
.h4_c01208{height:69.304103pt;}
.hb_c01208{height:69.308958pt;}
.h2_c01208{height:74.666667pt;}
.hc_c01208{height:85.353982pt;}
.h1_c01208{height:1118.666667pt;}
.h0_c01208{height:1118.880000pt;}
.w0_c01208{width:803.733333pt;}
.w1_c01208{width:804.000000pt;}
.x0_c01208{left:0.000000pt;}
.xdb_c01208{left:114.142667pt;}
.xd4_c01208{left:116.038903pt;}
.xcf_c01208{left:117.486667pt;}
.xbb_c01208{left:118.532500pt;}
.xb2_c01208{left:121.375924pt;}
.xa3_c01208{left:124.241393pt;}
.x8a_c01208{left:125.733168pt;}
.x80_c01208{left:128.120812pt;}
.x3_c01208{left:130.405333pt;}
.x58_c01208{left:131.826648pt;}
.x38_c01208{left:133.754712pt;}
.x25_c01208{left:135.592139pt;}
.xf_c01208{left:137.702667pt;}
.x75_c01208{left:147.633399pt;}
.xb3_c01208{left:150.113824pt;}
.x9b_c01208{left:152.731109pt;}
.xbc_c01208{left:157.819851pt;}
.x6d_c01208{left:159.378883pt;}
.x59_c01208{left:161.539611pt;}
.x81_c01208{left:166.075929pt;}
.x4e_c01208{left:171.537901pt;}
.x43_c01208{left:173.942227pt;}
.xc2_c01208{left:177.549335pt;}
.xa4_c01208{left:180.816761pt;}
.x92_c01208{left:183.809495pt;}
.xc9_c01208{left:185.657129pt;}
.x6e_c01208{left:186.933308pt;}
.x7b_c01208{left:193.190667pt;}
.x26_c01208{left:194.774932pt;}
.x82_c01208{left:196.687839pt;}
.x4_c01208{left:198.709333pt;}
.x5a_c01208{left:200.621799pt;}
.x93_c01208{left:203.120831pt;}
.x8b_c01208{left:204.145341pt;}
.x10_c01208{left:207.024000pt;}
.xb4_c01208{left:208.581964pt;}
.x44_c01208{left:212.073408pt;}
.x39_c01208{left:213.590975pt;}
.xbd_c01208{left:216.782156pt;}
.xdc_c01208{left:220.233333pt;}
.xd0_c01208{left:222.903811pt;}
.x83_c01208{left:224.760503pt;}
.x5b_c01208{left:228.388437pt;}
.x1a_c01208{left:233.873333pt;}
.x11_c01208{left:234.866667pt;}
.x5_c01208{left:236.304000pt;}
.xab_c01208{left:239.172903pt;}
.x94_c01208{left:242.747831pt;}
.xbe_c01208{left:244.581568pt;}
.x6f_c01208{left:247.656204pt;}
.x9c_c01208{left:249.865836pt;}
.x3a_c01208{left:251.707327pt;}
.x84_c01208{left:254.270667pt;}
.x62_c01208{left:257.293333pt;}
.xd8_c01208{left:260.756359pt;}
.x6_c01208{left:264.885333pt;}
.x76_c01208{left:266.322668pt;}
.xa5_c01208{left:268.567589pt;}
.x4f_c01208{left:277.767329pt;}
.xa8_c01208{left:279.090448pt;}
.xd5_c01208{left:280.551247pt;}
.x27_c01208{left:282.065781pt;}
.xca_c01208{left:284.512249pt;}
.xe2_c01208{left:287.837235pt;}
.x3b_c01208{left:290.275317pt;}
.x1b_c01208{left:293.116697pt;}
.x5c_c01208{left:297.031740pt;}
.x2f_c01208{left:300.969057pt;}
.xcb_c01208{left:302.153861pt;}
.x63_c01208{left:305.864000pt;}
.x28_c01208{left:310.847920pt;}
.x8c_c01208{left:312.153261pt;}
.xbf_c01208{left:313.198889pt;}
.xdd_c01208{left:318.530667pt;}
.xd6_c01208{left:320.313163pt;}
.xc3_c01208{left:323.306271pt;}
.x7_c01208{left:324.422667pt;}
.x64_c01208{left:325.482667pt;}
.xac_c01208{left:326.723931pt;}
.x45_c01208{left:328.458292pt;}
.x8d_c01208{left:330.783820pt;}
.x12_c01208{left:334.028000pt;}
.x50_c01208{left:337.731473pt;}
.x9d_c01208{left:339.201159pt;}
.x1c_c01208{left:341.569529pt;}
.xa9_c01208{left:347.336096pt;}
.x95_c01208{left:349.221251pt;}
.xc4_c01208{left:352.454755pt;}
.x70_c01208{left:354.623327pt;}
.xde_c01208{left:356.866667pt;}
.x85_c01208{left:360.539685pt;}
.x1_c01208{left:365.280000pt;}
.x46_c01208{left:367.463265pt;}
.x30_c01208{left:369.393560pt;}
.xaa_c01208{left:376.512887pt;}
.x29_c01208{left:378.508423pt;}
.x8e_c01208{left:379.744148pt;}
.x8_c01208{left:383.077333pt;}
.x5d_c01208{left:385.475233pt;}
.x9e_c01208{left:387.811812pt;}
.x86_c01208{left:390.508103pt;}
.x13_c01208{left:392.462667pt;}
.xdf_c01208{left:396.973333pt;}
.x31_c01208{left:398.410793pt;}
.x77_c01208{left:402.089356pt;}
.x65_c01208{left:404.306667pt;}
.x2a_c01208{left:408.256352pt;}
.xc5_c01208{left:409.899107pt;}
.x14_c01208{left:411.344000pt;}
.x5e_c01208{left:414.266316pt;}
.x51_c01208{left:415.553480pt;}
.x47_c01208{left:416.624376pt;}
.x3c_c01208{left:417.655856pt;}
.xd1_c01208{left:418.679839pt;}
.x1d_c01208{left:420.096257pt;}
.x7c_c01208{left:421.182447pt;}
.x2_c01208{left:424.080000pt;}
.xe0_c01208{left:426.252000pt;}
.x32_c01208{left:427.702464pt;}
.xb7_c01208{left:432.188123pt;}
.x66_c01208{left:434.362667pt;}
.x9f_c01208{left:437.024575pt;}
.x87_c01208{left:439.483428pt;}
.x15_c01208{left:442.156000pt;}
.xad_c01208{left:443.708163pt;}
.x52_c01208{left:444.977353pt;}
.xc6_c01208{left:449.480857pt;}
.x1e_c01208{left:450.942713pt;}
.x9_c01208{left:451.990667pt;}
.x5f_c01208{left:453.138048pt;}
.x96_c01208{left:455.958407pt;}
.x7d_c01208{left:460.529727pt;}
.x3d_c01208{left:465.846197pt;}
.x67_c01208{left:467.597399pt;}
.xe3_c01208{left:475.844965pt;}
.x1f_c01208{left:478.060901pt;}
.xc0_c01208{left:480.869153pt;}
.x71_c01208{left:481.761661pt;}
.x60_c01208{left:483.359925pt;}
.xe1_c01208{left:485.576000pt;}
.x2b_c01208{left:486.470047pt;}
.x88_c01208{left:487.676733pt;}
.xa_c01208{left:490.577333pt;}
.xe4_c01208{left:494.084155pt;}
.x3e_c01208{left:495.828269pt;}
.x48_c01208{left:496.917280pt;}
.xcc_c01208{left:498.036449pt;}
.x16_c01208{left:500.617333pt;}
.xae_c01208{left:503.536275pt;}
.x20_c01208{left:509.028569pt;}
.xa6_c01208{left:514.480097pt;}
.x8f_c01208{left:517.218565pt;}
.x78_c01208{left:519.642339pt;}
.x72_c01208{left:521.832357pt;}
.x53_c01208{left:523.032505pt;}
.x33_c01208{left:526.287237pt;}
.xb8_c01208{left:530.534369pt;}
.x68_c01208{left:531.649283pt;}
.xd2_c01208{left:535.993075pt;}
.xcd_c01208{left:537.583529pt;}
.xc7_c01208{left:538.815221pt;}
.x49_c01208{left:542.543399pt;}
.xa0_c01208{left:544.472325pt;}
.x97_c01208{left:546.226715pt;}
.xb_c01208{left:549.874667pt;}
.x54_c01208{left:553.021237pt;}
.xd9_c01208{left:554.951203pt;}
.xc8_c01208{left:558.416264pt;}
.xb9_c01208{left:559.314559pt;}
.xc1_c01208{left:569.237399pt;}
.xb5_c01208{left:570.844672pt;}
.x4a_c01208{left:573.284916pt;}
.x2c_c01208{left:576.449144pt;}
.x17_c01208{left:577.604000pt;}
.x79_c01208{left:579.430575pt;}
.x89_c01208{left:585.310277pt;}
.x7e_c01208{left:586.538259pt;}
.x69_c01208{left:590.157383pt;}
.x55_c01208{left:591.320119pt;}
.x3f_c01208{left:593.573056pt;}
.x34_c01208{left:594.910208pt;}
.xc_c01208{left:600.321333pt;}
.xa1_c01208{left:603.495948pt;}
.x35_c01208{left:606.203476pt;}
.x18_c01208{left:609.045333pt;}
.x90_c01208{left:615.814636pt;}
.x21_c01208{left:616.724765pt;}
.xba_c01208{left:617.883261pt;}
.xaf_c01208{left:620.617743pt;}
.xda_c01208{left:623.102983pt;}
.x6a_c01208{left:629.049119pt;}
.x4b_c01208{left:631.894917pt;}
.x40_c01208{left:633.310679pt;}
.x98_c01208{left:635.009843pt;}
.x19_c01208{left:638.509333pt;}
.xb0_c01208{left:640.202139pt;}
.x22_c01208{left:645.727733pt;}
.x73_c01208{left:646.936411pt;}
.x56_c01208{left:651.072429pt;}
.x36_c01208{left:652.979261pt;}
.x2d_c01208{left:654.894607pt;}
.xd_c01208{left:658.452000pt;}
.xa7_c01208{left:662.314781pt;}
.x99_c01208{left:663.244247pt;}
.x7f_c01208{left:666.369015pt;}
.x61_c01208{left:670.499389pt;}
.xd7_c01208{left:672.856387pt;}
.x41_c01208{left:673.946205pt;}
.x74_c01208{left:679.007087pt;}
.xd3_c01208{left:683.386867pt;}
.x7a_c01208{left:686.932937pt;}
.x9a_c01208{left:693.238223pt;}
.xce_c01208{left:694.549073pt;}
.x6b_c01208{left:698.479619pt;}
.x57_c01208{left:699.792952pt;}
.xa2_c01208{left:702.711395pt;}
.x23_c01208{left:706.352381pt;}
.xb6_c01208{left:707.970076pt;}
.x4c_c01208{left:711.552457pt;}
.xb1_c01208{left:719.737191pt;}
.x37_c01208{left:723.547315pt;}
.x91_c01208{left:734.454699pt;}
.x6c_c01208{left:737.720339pt;}
.xe_c01208{left:738.952000pt;}
.x4d_c01208{left:740.948700pt;}
.x42_c01208{left:742.356363pt;}
.x24_c01208{left:752.299721pt;}
.x2e_c01208{left:753.756387pt;}
}





/* 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_c01209 {
    display:none;
  }
  .loading-indicator_c01209.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01209 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_c01209 { 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_c01209" -> "#page-container .classname_c01209")
 */
.pf_c01209 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01209 { /* 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_c01209.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01209 { /* 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_c01209 { /* 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_c01209 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01209 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01209 {overflow:visible;}
  }
}
.c_c01209 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01209 { /* 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_c01209:after { /* webkit #35443 */
  content: '';
}
.t_c01209:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01209 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 */
}
.__c01209 { /* 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_c01209 { /* info for Javascript */
  display:none;
}
.l_c01209 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01209 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01209 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01209: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_c01209 {
    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_c01209.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01209.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_c01209 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01209{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01209;src:url('chunks/assets/font_cfe63ee56e9e10a97d33a3db.woff2')format("woff");}.ff1_c01209{font-family:ff1_c01209;line-height:1.000000;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;}
.m2b_c01209{transform:matrix(0.136462,-0.000955,0.001750,0.249994,0,0);-ms-transform:matrix(0.136462,-0.000955,0.001750,0.249994,0,0);-webkit-transform:matrix(0.136462,-0.000955,0.001750,0.249994,0,0);}
.m62_c01209{transform:matrix(0.171025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171025,0.000000,0.000000,0.250000,0,0);}
.m17_c01209{transform:matrix(0.191060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191060,0.000000,0.000000,0.250000,0,0);}
.m38_c01209{transform:matrix(0.192715,-0.001349,0.001750,0.249994,0,0);-ms-transform:matrix(0.192715,-0.001349,0.001750,0.249994,0,0);-webkit-transform:matrix(0.192715,-0.001349,0.001750,0.249994,0,0);}
.m13_c01209{transform:matrix(0.214710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214710,0.000000,0.000000,0.250000,0,0);}
.m28_c01209{transform:matrix(0.215975,-0.001512,0.001750,0.249994,0,0);-ms-transform:matrix(0.215975,-0.001512,0.001750,0.249994,0,0);-webkit-transform:matrix(0.215975,-0.001512,0.001750,0.249994,0,0);}
.m4f_c01209{transform:matrix(0.217386,-0.001304,0.001500,0.249996,0,0);-ms-transform:matrix(0.217386,-0.001304,0.001500,0.249996,0,0);-webkit-transform:matrix(0.217386,-0.001304,0.001500,0.249996,0,0);}
.m63_c01209{transform:matrix(0.221470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221470,0.000000,0.000000,0.250000,0,0);}
.m50_c01209{transform:matrix(0.224946,-0.001350,0.001500,0.249996,0,0);-ms-transform:matrix(0.224946,-0.001350,0.001500,0.249996,0,0);-webkit-transform:matrix(0.224946,-0.001350,0.001500,0.249996,0,0);}
.m53_c01209{transform:matrix(0.233556,-0.001401,0.001500,0.249996,0,0);-ms-transform:matrix(0.233556,-0.001401,0.001500,0.249996,0,0);-webkit-transform:matrix(0.233556,-0.001401,0.001500,0.249996,0,0);}
.m4a_c01209{transform:matrix(0.235661,-0.001414,0.001500,0.249996,0,0);-ms-transform:matrix(0.235661,-0.001414,0.001500,0.249996,0,0);-webkit-transform:matrix(0.235661,-0.001414,0.001500,0.249996,0,0);}
.m2a_c01209{transform:matrix(0.236269,-0.001654,0.001750,0.249994,0,0);-ms-transform:matrix(0.236269,-0.001654,0.001750,0.249994,0,0);-webkit-transform:matrix(0.236269,-0.001654,0.001750,0.249994,0,0);}
.m19_c01209{transform:matrix(0.237290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237290,0.000000,0.000000,0.250000,0,0);}
.m59_c01209{transform:matrix(0.237596,-0.001426,0.001500,0.249996,0,0);-ms-transform:matrix(0.237596,-0.001426,0.001500,0.249996,0,0);-webkit-transform:matrix(0.237596,-0.001426,0.001500,0.249996,0,0);}
.m30_c01209{transform:matrix(0.238409,-0.001669,0.001750,0.249994,0,0);-ms-transform:matrix(0.238409,-0.001669,0.001750,0.249994,0,0);-webkit-transform:matrix(0.238409,-0.001669,0.001750,0.249994,0,0);}
.m35_c01209{transform:matrix(0.242159,-0.001695,0.001750,0.249994,0,0);-ms-transform:matrix(0.242159,-0.001695,0.001750,0.249994,0,0);-webkit-transform:matrix(0.242159,-0.001695,0.001750,0.249994,0,0);}
.m1b_c01209{transform:matrix(0.243665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243665,0.000000,0.000000,0.250000,0,0);}
.m55_c01209{transform:matrix(0.244051,-0.001464,0.001500,0.249996,0,0);-ms-transform:matrix(0.244051,-0.001464,0.001500,0.249996,0,0);-webkit-transform:matrix(0.244051,-0.001464,0.001500,0.249996,0,0);}
.m18_c01209{transform:matrix(0.247320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247320,0.000000,0.000000,0.250000,0,0);}
.m37_c01209{transform:matrix(0.247474,-0.001732,0.001750,0.249994,0,0);-ms-transform:matrix(0.247474,-0.001732,0.001750,0.249994,0,0);-webkit-transform:matrix(0.247474,-0.001732,0.001750,0.249994,0,0);}
.m29_c01209{transform:matrix(0.248749,-0.001741,0.001750,0.249994,0,0);-ms-transform:matrix(0.248749,-0.001741,0.001750,0.249994,0,0);-webkit-transform:matrix(0.248749,-0.001741,0.001750,0.249994,0,0);}
.m5f_c01209{transform:matrix(0.251295,-0.001508,0.001500,0.249996,0,0);-ms-transform:matrix(0.251295,-0.001508,0.001500,0.249996,0,0);-webkit-transform:matrix(0.251295,-0.001508,0.001500,0.249996,0,0);}
.m52_c01209{transform:matrix(0.251425,-0.001509,0.001500,0.249996,0,0);-ms-transform:matrix(0.251425,-0.001509,0.001500,0.249996,0,0);-webkit-transform:matrix(0.251425,-0.001509,0.001500,0.249996,0,0);}
.mb_c01209{transform:matrix(0.251875,0.001511,-0.001500,0.249996,0,0);-ms-transform:matrix(0.251875,0.001511,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.251875,0.001511,-0.001500,0.249996,0,0);}
.m4d_c01209{transform:matrix(0.252870,-0.001517,0.001500,0.249996,0,0);-ms-transform:matrix(0.252870,-0.001517,0.001500,0.249996,0,0);-webkit-transform:matrix(0.252870,-0.001517,0.001500,0.249996,0,0);}
.m31_c01209{transform:matrix(0.254644,-0.001783,0.001750,0.249994,0,0);-ms-transform:matrix(0.254644,-0.001783,0.001750,0.249994,0,0);-webkit-transform:matrix(0.254644,-0.001783,0.001750,0.249994,0,0);}
.m1d_c01209{transform:matrix(0.256995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256995,0.000000,0.000000,0.250000,0,0);}
.mc_c01209{transform:matrix(0.257765,0.001547,-0.001500,0.249996,0,0);-ms-transform:matrix(0.257765,0.001547,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.257765,0.001547,-0.001500,0.249996,0,0);}
.m36_c01209{transform:matrix(0.258579,-0.001810,0.001750,0.249994,0,0);-ms-transform:matrix(0.258579,-0.001810,0.001750,0.249994,0,0);-webkit-transform:matrix(0.258579,-0.001810,0.001750,0.249994,0,0);}
.m22_c01209{transform:matrix(0.259344,-0.001815,0.001750,0.249994,0,0);-ms-transform:matrix(0.259344,-0.001815,0.001750,0.249994,0,0);-webkit-transform:matrix(0.259344,-0.001815,0.001750,0.249994,0,0);}
.m58_c01209{transform:matrix(0.265410,-0.001592,0.001500,0.249996,0,0);-ms-transform:matrix(0.265410,-0.001592,0.001500,0.249996,0,0);-webkit-transform:matrix(0.265410,-0.001592,0.001500,0.249996,0,0);}
.m60_c01209{transform:matrix(0.266130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266130,0.000000,0.000000,0.250000,0,0);}
.m3d_c01209{transform:matrix(0.271843,-0.001903,0.001750,0.249994,0,0);-ms-transform:matrix(0.271843,-0.001903,0.001750,0.249994,0,0);-webkit-transform:matrix(0.271843,-0.001903,0.001750,0.249994,0,0);}
.m2e_c01209{transform:matrix(0.279463,-0.001956,0.001750,0.249994,0,0);-ms-transform:matrix(0.279463,-0.001956,0.001750,0.249994,0,0);-webkit-transform:matrix(0.279463,-0.001956,0.001750,0.249994,0,0);}
.m14_c01209{transform:matrix(0.279975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279975,0.000000,0.000000,0.250000,0,0);}
.m45_c01209{transform:matrix(0.281223,-0.001969,0.001750,0.249994,0,0);-ms-transform:matrix(0.281223,-0.001969,0.001750,0.249994,0,0);-webkit-transform:matrix(0.281223,-0.001969,0.001750,0.249994,0,0);}
.m4e_c01209{transform:matrix(0.281810,-0.001691,0.001500,0.249996,0,0);-ms-transform:matrix(0.281810,-0.001691,0.001500,0.249996,0,0);-webkit-transform:matrix(0.281810,-0.001691,0.001500,0.249996,0,0);}
.m42_c01209{transform:matrix(0.285568,-0.001999,0.001750,0.249994,0,0);-ms-transform:matrix(0.285568,-0.001999,0.001750,0.249994,0,0);-webkit-transform:matrix(0.285568,-0.001999,0.001750,0.249994,0,0);}
.m16_c01209{transform:matrix(0.286100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286100,0.000000,0.000000,0.250000,0,0);}
.m27_c01209{transform:matrix(0.286463,-0.002005,0.001750,0.249994,0,0);-ms-transform:matrix(0.286463,-0.002005,0.001750,0.249994,0,0);-webkit-transform:matrix(0.286463,-0.002005,0.001750,0.249994,0,0);}
.m3c_c01209{transform:matrix(0.295553,-0.002069,0.001750,0.249994,0,0);-ms-transform:matrix(0.295553,-0.002069,0.001750,0.249994,0,0);-webkit-transform:matrix(0.295553,-0.002069,0.001750,0.249994,0,0);}
.m1a_c01209{transform:matrix(0.298145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298145,0.000000,0.000000,0.250000,0,0);}
.mf_c01209{transform:matrix(0.307204,0.001843,-0.001500,0.249996,0,0);-ms-transform:matrix(0.307204,0.001843,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.307204,0.001843,-0.001500,0.249996,0,0);}
.m3_c01209{transform:matrix(0.307730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307730,0.000000,0.000000,0.250000,0,0);}
.m5d_c01209{transform:matrix(0.310244,-0.001861,0.001500,0.249996,0,0);-ms-transform:matrix(0.310244,-0.001861,0.001500,0.249996,0,0);-webkit-transform:matrix(0.310244,-0.001861,0.001500,0.249996,0,0);}
.m21_c01209{transform:matrix(0.310295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310295,0.000000,0.000000,0.250000,0,0);}
.m2c_c01209{transform:matrix(0.312352,-0.002186,0.001750,0.249994,0,0);-ms-transform:matrix(0.312352,-0.002186,0.001750,0.249994,0,0);-webkit-transform:matrix(0.312352,-0.002186,0.001750,0.249994,0,0);}
.m23_c01209{transform:matrix(0.317782,-0.002224,0.001750,0.249994,0,0);-ms-transform:matrix(0.317782,-0.002224,0.001750,0.249994,0,0);-webkit-transform:matrix(0.317782,-0.002224,0.001750,0.249994,0,0);}
.m5a_c01209{transform:matrix(0.319164,-0.001915,0.001500,0.249996,0,0);-ms-transform:matrix(0.319164,-0.001915,0.001500,0.249996,0,0);-webkit-transform:matrix(0.319164,-0.001915,0.001500,0.249996,0,0);}
.m15_c01209{transform:matrix(0.319440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319440,0.000000,0.000000,0.250000,0,0);}
.ma_c01209{transform:matrix(0.320304,0.001922,-0.001500,0.249996,0,0);-ms-transform:matrix(0.320304,0.001922,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.320304,0.001922,-0.001500,0.249996,0,0);}
.m32_c01209{transform:matrix(0.321237,-0.002249,0.001750,0.249994,0,0);-ms-transform:matrix(0.321237,-0.002249,0.001750,0.249994,0,0);-webkit-transform:matrix(0.321237,-0.002249,0.001750,0.249994,0,0);}
.m44_c01209{transform:matrix(0.321987,-0.002254,0.001750,0.249994,0,0);-ms-transform:matrix(0.321987,-0.002254,0.001750,0.249994,0,0);-webkit-transform:matrix(0.321987,-0.002254,0.001750,0.249994,0,0);}
.m57_c01209{transform:matrix(0.328354,-0.001970,0.001500,0.249996,0,0);-ms-transform:matrix(0.328354,-0.001970,0.001500,0.249996,0,0);-webkit-transform:matrix(0.328354,-0.001970,0.001500,0.249996,0,0);}
.m1f_c01209{transform:matrix(0.328600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328600,0.000000,0.000000,0.250000,0,0);}
.m39_c01209{transform:matrix(0.329587,-0.002307,0.001750,0.249994,0,0);-ms-transform:matrix(0.329587,-0.002307,0.001750,0.249994,0,0);-webkit-transform:matrix(0.329587,-0.002307,0.001750,0.249994,0,0);}
.m6_c01209{transform:matrix(0.330595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330595,0.000000,0.000000,0.250000,0,0);}
.m56_c01209{transform:matrix(0.332814,-0.001997,0.001500,0.249996,0,0);-ms-transform:matrix(0.332814,-0.001997,0.001500,0.249996,0,0);-webkit-transform:matrix(0.332814,-0.001997,0.001500,0.249996,0,0);}
.m1c_c01209{transform:matrix(0.334165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334165,0.000000,0.000000,0.250000,0,0);}
.m49_c01209{transform:matrix(0.339884,-0.002039,0.001500,0.249996,0,0);-ms-transform:matrix(0.339884,-0.002039,0.001500,0.249996,0,0);-webkit-transform:matrix(0.339884,-0.002039,0.001500,0.249996,0,0);}
.md_c01209{transform:matrix(0.341509,0.002049,-0.001500,0.249996,0,0);-ms-transform:matrix(0.341509,0.002049,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.341509,0.002049,-0.001500,0.249996,0,0);}
.me_c01209{transform:matrix(0.341599,0.002050,-0.001500,0.249996,0,0);-ms-transform:matrix(0.341599,0.002050,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.341599,0.002050,-0.001500,0.249996,0,0);}
.m25_c01209{transform:matrix(0.343722,-0.002406,0.001750,0.249994,0,0);-ms-transform:matrix(0.343722,-0.002406,0.001750,0.249994,0,0);-webkit-transform:matrix(0.343722,-0.002406,0.001750,0.249994,0,0);}
.m26_c01209{transform:matrix(0.349321,-0.002445,0.001750,0.249994,0,0);-ms-transform:matrix(0.349321,-0.002445,0.001750,0.249994,0,0);-webkit-transform:matrix(0.349321,-0.002445,0.001750,0.249994,0,0);}
.m5e_c01209{transform:matrix(0.354814,-0.002129,0.001500,0.249996,0,0);-ms-transform:matrix(0.354814,-0.002129,0.001500,0.249996,0,0);-webkit-transform:matrix(0.354814,-0.002129,0.001500,0.249996,0,0);}
.m1e_c01209{transform:matrix(0.355970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355970,0.000000,0.000000,0.250000,0,0);}
.m46_c01209{transform:matrix(0.356056,-0.002492,0.001750,0.249994,0,0);-ms-transform:matrix(0.356056,-0.002492,0.001750,0.249994,0,0);-webkit-transform:matrix(0.356056,-0.002492,0.001750,0.249994,0,0);}
.m3f_c01209{transform:matrix(0.361536,-0.002531,0.001750,0.249994,0,0);-ms-transform:matrix(0.361536,-0.002531,0.001750,0.249994,0,0);-webkit-transform:matrix(0.361536,-0.002531,0.001750,0.249994,0,0);}
.m40_c01209{transform:matrix(0.363006,-0.002541,0.001750,0.249994,0,0);-ms-transform:matrix(0.363006,-0.002541,0.001750,0.249994,0,0);-webkit-transform:matrix(0.363006,-0.002541,0.001750,0.249994,0,0);}
.m10_c01209{transform:matrix(0.370803,0.002225,-0.001500,0.249996,0,0);-ms-transform:matrix(0.370803,0.002225,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.370803,0.002225,-0.001500,0.249996,0,0);}
.m5c_c01209{transform:matrix(0.370988,-0.002226,0.001500,0.249996,0,0);-ms-transform:matrix(0.370988,-0.002226,0.001500,0.249996,0,0);-webkit-transform:matrix(0.370988,-0.002226,0.001500,0.249996,0,0);}
.m47_c01209{transform:matrix(0.374301,-0.002620,0.001750,0.249994,0,0);-ms-transform:matrix(0.374301,-0.002620,0.001750,0.249994,0,0);-webkit-transform:matrix(0.374301,-0.002620,0.001750,0.249994,0,0);}
.m48_c01209{transform:matrix(0.375201,-0.002626,0.001750,0.249994,0,0);-ms-transform:matrix(0.375201,-0.002626,0.001750,0.249994,0,0);-webkit-transform:matrix(0.375201,-0.002626,0.001750,0.249994,0,0);}
.m24_c01209{transform:matrix(0.382736,-0.002679,0.001750,0.249994,0,0);-ms-transform:matrix(0.382736,-0.002679,0.001750,0.249994,0,0);-webkit-transform:matrix(0.382736,-0.002679,0.001750,0.249994,0,0);}
.m4b_c01209{transform:matrix(0.383073,-0.002298,0.001500,0.249996,0,0);-ms-transform:matrix(0.383073,-0.002298,0.001500,0.249996,0,0);-webkit-transform:matrix(0.383073,-0.002298,0.001500,0.249996,0,0);}
.m41_c01209{transform:matrix(0.386231,-0.002704,0.001750,0.249994,0,0);-ms-transform:matrix(0.386231,-0.002704,0.001750,0.249994,0,0);-webkit-transform:matrix(0.386231,-0.002704,0.001750,0.249994,0,0);}
.m2d_c01209{transform:matrix(0.396755,-0.002777,0.001750,0.249994,0,0);-ms-transform:matrix(0.396755,-0.002777,0.001750,0.249994,0,0);-webkit-transform:matrix(0.396755,-0.002777,0.001750,0.249994,0,0);}
.m9_c01209{transform:matrix(0.400673,0.002404,-0.001500,0.249996,0,0);-ms-transform:matrix(0.400673,0.002404,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.400673,0.002404,-0.001500,0.249996,0,0);}
.m34_c01209{transform:matrix(0.402025,-0.002814,0.001750,0.249994,0,0);-ms-transform:matrix(0.402025,-0.002814,0.001750,0.249994,0,0);-webkit-transform:matrix(0.402025,-0.002814,0.001750,0.249994,0,0);}
.m3b_c01209{transform:matrix(0.406715,-0.002847,0.001750,0.249994,0,0);-ms-transform:matrix(0.406715,-0.002847,0.001750,0.249994,0,0);-webkit-transform:matrix(0.406715,-0.002847,0.001750,0.249994,0,0);}
.m20_c01209{transform:matrix(0.410215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410215,0.000000,0.000000,0.250000,0,0);}
.m4_c01209{transform:matrix(0.419440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419440,0.000000,0.000000,0.250000,0,0);}
.m0_c01209{transform:matrix(0.436935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436935,0.000000,0.000000,0.250000,0,0);}
.m33_c01209{transform:matrix(0.440984,-0.003087,0.001750,0.249994,0,0);-ms-transform:matrix(0.440984,-0.003087,0.001750,0.249994,0,0);-webkit-transform:matrix(0.440984,-0.003087,0.001750,0.249994,0,0);}
.m5b_c01209{transform:matrix(0.462727,-0.002776,0.001500,0.249996,0,0);-ms-transform:matrix(0.462727,-0.002776,0.001500,0.249996,0,0);-webkit-transform:matrix(0.462727,-0.002776,0.001500,0.249996,0,0);}
.m2_c01209{transform:matrix(0.475900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475900,0.000000,0.000000,0.250000,0,0);}
.m1_c01209{transform:matrix(0.482180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482180,0.000000,0.000000,0.250000,0,0);}
.m3e_c01209{transform:matrix(0.483818,-0.003387,0.001750,0.249994,0,0);-ms-transform:matrix(0.483818,-0.003387,0.001750,0.249994,0,0);-webkit-transform:matrix(0.483818,-0.003387,0.001750,0.249994,0,0);}
.m8_c01209{transform:matrix(0.503236,0.003019,-0.001500,0.249996,0,0);-ms-transform:matrix(0.503236,0.003019,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.503236,0.003019,-0.001500,0.249996,0,0);}
.m51_c01209{transform:matrix(0.505151,-0.003031,0.001500,0.249996,0,0);-ms-transform:matrix(0.505151,-0.003031,0.001500,0.249996,0,0);-webkit-transform:matrix(0.505151,-0.003031,0.001500,0.249996,0,0);}
.m4c_c01209{transform:matrix(0.521906,-0.003131,0.001500,0.249996,0,0);-ms-transform:matrix(0.521906,-0.003131,0.001500,0.249996,0,0);-webkit-transform:matrix(0.521906,-0.003131,0.001500,0.249996,0,0);}
.m2f_c01209{transform:matrix(0.530582,-0.003714,0.001750,0.249994,0,0);-ms-transform:matrix(0.530582,-0.003714,0.001750,0.249994,0,0);-webkit-transform:matrix(0.530582,-0.003714,0.001750,0.249994,0,0);}
.m5_c01209{transform:matrix(0.597620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.597620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.597620,0.000000,0.000000,0.250000,0,0);}
.m11_c01209{transform:matrix(0.818115,0.004909,-0.001500,0.249996,0,0);-ms-transform:matrix(0.818115,0.004909,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.818115,0.004909,-0.001500,0.249996,0,0);}
.m3a_c01209{transform:matrix(0.838054,-0.005866,0.001750,0.249994,0,0);-ms-transform:matrix(0.838054,-0.005866,0.001750,0.249994,0,0);-webkit-transform:matrix(0.838054,-0.005866,0.001750,0.249994,0,0);}
.m61_c01209{transform:matrix(0.868060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.868060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.868060,0.000000,0.000000,0.250000,0,0);}
.m43_c01209{transform:matrix(0.882833,-0.006180,0.001750,0.249994,0,0);-ms-transform:matrix(0.882833,-0.006180,0.001750,0.249994,0,0);-webkit-transform:matrix(0.882833,-0.006180,0.001750,0.249994,0,0);}
.m7_c01209{transform:matrix(1.109845,0.006659,-0.001500,0.249996,0,0);-ms-transform:matrix(1.109845,0.006659,-0.001500,0.249996,0,0);-webkit-transform:matrix(1.109845,0.006659,-0.001500,0.249996,0,0);}
.m12_c01209{transform:matrix(1.166249,0.006997,-0.001500,0.249996,0,0);-ms-transform:matrix(1.166249,0.006997,-0.001500,0.249996,0,0);-webkit-transform:matrix(1.166249,0.006997,-0.001500,0.249996,0,0);}
.m54_c01209{transform:matrix(1.428219,-0.008569,0.001500,0.249996,0,0);-ms-transform:matrix(1.428219,-0.008569,0.001500,0.249996,0,0);-webkit-transform:matrix(1.428219,-0.008569,0.001500,0.249996,0,0);}
.v0_c01209{vertical-align:0.000000px;}
.ls0_c01209{letter-spacing:0.000000px;}
.sc__c01209{text-shadow:none;}
.sc0_c01209{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__c01209{-webkit-text-stroke:0px transparent;}
.sc0_c01209{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01209{word-spacing:0.000000px;}
.fc0_c01209{color:transparent;}
.fs2_c01209{font-size:18.000000px;}
.fs0_c01209{font-size:66.000000px;}
.fs6_c01209{font-size:72.001764px;}
.fs3_c01209{font-size:78.000000px;}
.fs1_c01209{font-size:78.001404px;}
.fs4_c01209{font-size:78.001911px;}
.fs8_c01209{font-size:84.001512px;}
.fs5_c01209{font-size:84.002058px;}
.fs7_c01209{font-size:90.001620px;}
.y0_c01209{bottom:0.000000px;}
.y50_c01209{bottom:23.490000px;}
.y4f_c01209{bottom:25.920000px;}
.y4e_c01209{bottom:660.960000px;}
.y42_c01209{bottom:797.747589px;}
.y43_c01209{bottom:798.619245px;}
.y44_c01209{bottom:799.241814px;}
.y45_c01209{bottom:799.611798px;}
.y46_c01209{bottom:800.113809px;}
.y47_c01209{bottom:800.742864px;}
.y48_c01209{bottom:801.277800px;}
.y49_c01209{bottom:801.398682px;}
.y4a_c01209{bottom:802.023843px;}
.y4b_c01209{bottom:802.171980px;}
.y4c_c01209{bottom:802.602594px;}
.y4d_c01209{bottom:802.920225px;}
.y37_c01209{bottom:832.846500px;}
.y38_c01209{bottom:833.559120px;}
.y39_c01209{bottom:834.317244px;}
.y3a_c01209{bottom:834.793389px;}
.y3b_c01209{bottom:834.999066px;}
.y3c_c01209{bottom:835.284411px;}
.y3d_c01209{bottom:835.512750px;}
.y3e_c01209{bottom:836.071614px;}
.y3f_c01209{bottom:836.505801px;}
.y40_c01209{bottom:836.740746px;}
.y41_c01209{bottom:836.983386px;}
.y29_c01209{bottom:872.195133px;}
.y2e_c01209{bottom:872.195291px;}
.y2d_c01209{bottom:872.195451px;}
.y2a_c01209{bottom:872.195483px;}
.y32_c01209{bottom:872.195709px;}
.y2b_c01209{bottom:872.195712px;}
.y2c_c01209{bottom:872.195762px;}
.y2f_c01209{bottom:872.195800px;}
.y28_c01209{bottom:872.195833px;}
.y30_c01209{bottom:872.195839px;}
.y33_c01209{bottom:872.196268px;}
.y35_c01209{bottom:872.196277px;}
.y31_c01209{bottom:872.196409px;}
.y34_c01209{bottom:872.196828px;}
.y36_c01209{bottom:872.197017px;}
.y1d_c01209{bottom:902.072734px;}
.y1e_c01209{bottom:902.736021px;}
.y1f_c01209{bottom:903.464335px;}
.y20_c01209{bottom:904.004136px;}
.y21_c01209{bottom:904.251547px;}
.y22_c01209{bottom:904.707411px;}
.y23_c01209{bottom:905.419611px;}
.y24_c01209{bottom:905.827296px;}
.y25_c01209{bottom:906.212314px;}
.y26_c01209{bottom:907.271485px;}
.y27_c01209{bottom:907.623790px;}
.y10_c01209{bottom:939.522000px;}
.y11_c01209{bottom:940.073964px;}
.y12_c01209{bottom:940.353568px;}
.y13_c01209{bottom:940.714863px;}
.y14_c01209{bottom:941.034210px;}
.y15_c01209{bottom:941.455701px;}
.y16_c01209{bottom:941.710557px;}
.y17_c01209{bottom:942.094458px;}
.y18_c01209{bottom:942.410120px;}
.y19_c01209{bottom:943.057466px;}
.y1a_c01209{bottom:943.239651px;}
.y1b_c01209{bottom:943.694973px;}
.y1c_c01209{bottom:943.814379px;}
.yf_c01209{bottom:976.795500px;}
.ye_c01209{bottom:992.250000px;}
.yd_c01209{bottom:1012.168563px;}
.yc_c01209{bottom:1012.502193px;}
.yb_c01209{bottom:1012.774182px;}
.ya_c01209{bottom:1012.940808px;}
.y9_c01209{bottom:1013.443278px;}
.y8_c01209{bottom:1013.601876px;}
.y7_c01209{bottom:1013.830224px;}
.y6_c01209{bottom:1014.131445px;}
.y5_c01209{bottom:1014.380970px;}
.y4_c01209{bottom:1014.822096px;}
.y3_c01209{bottom:1015.267533px;}
.y2_c01209{bottom:1016.011500px;}
.y1_c01209{bottom:1049.130000px;}
.h4_c01209{height:18.000000px;}
.h2_c01209{height:66.000000px;}
.h8_c01209{height:72.001764px;}
.h5_c01209{height:78.000000px;}
.h3_c01209{height:78.001404px;}
.h6_c01209{height:78.001911px;}
.ha_c01209{height:84.001512px;}
.h7_c01209{height:84.002058px;}
.h9_c01209{height:90.001620px;}
.h1_c01209{height:1258.500000px;}
.h0_c01209{height:1258.740000px;}
.w0_c01209{width:904.200000px;}
.w1_c01209{width:904.500000px;}
.x0_c01209{left:0.000000px;}
.x2d_c01209{left:17.134696px;}
.x44_c01209{left:29.083500px;}
.x37_c01209{left:34.830196px;}
.x8_c01209{left:43.251000px;}
.x22_c01209{left:66.841500px;}
.x38_c01209{left:68.310334px;}
.x15_c01209{left:75.330000px;}
.x14_c01209{left:88.290000px;}
.x2e_c01209{left:100.103619px;}
.x4c_c01209{left:109.249242px;}
.x39_c01209{left:113.131029px;}
.x23_c01209{left:145.693500px;}
.x45_c01209{left:147.853500px;}
.x16_c01209{left:150.120000px;}
.x17_c01209{left:163.620000px;}
.x9_c01209{left:167.245500px;}
.x24_c01209{left:185.637000px;}
.x4d_c01209{left:187.009806px;}
.x2f_c01209{left:191.076478px;}
.x18_c01209{left:208.170000px;}
.x3a_c01209{left:230.313772px;}
.x4e_c01209{left:233.173248px;}
.x19_c01209{left:235.170000px;}
.x25_c01209{left:237.250500px;}
.xa_c01209{left:241.485000px;}
.x1_c01209{left:257.310000px;}
.x30_c01209{left:258.547506px;}
.x3b_c01209{left:274.864456px;}
.x1a_c01209{left:283.770000px;}
.x31_c01209{left:289.391785px;}
.x4f_c01209{left:295.840992px;}
.x3c_c01209{left:304.295895px;}
.xb_c01209{left:315.006000px;}
.x2_c01209{left:329.400000px;}
.x26_c01209{left:343.084500px;}
.x32_c01209{left:346.371886px;}
.x1b_c01209{left:349.110000px;}
.x46_c01209{left:353.565000px;}
.xc_c01209{left:356.593500px;}
.x3_c01209{left:363.420000px;}
.x1c_c01209{left:372.330000px;}
.x50_c01209{left:374.432547px;}
.x27_c01209{left:379.492500px;}
.x47_c01209{left:387.844500px;}
.x4_c01209{left:397.170000px;}
.x3d_c01209{left:399.877578px;}
.xd_c01209{left:406.797000px;}
.x1d_c01209{left:410.940000px;}
.x5_c01209{left:427.410000px;}
.x3e_c01209{left:430.389069px;}
.x28_c01209{left:434.335500px;}
.x33_c01209{left:435.471267px;}
.x51_c01209{left:441.337746px;}
.xe_c01209{left:444.855000px;}
.x1e_c01209{left:453.060000px;}
.x52_c01209{left:456.484566px;}
.xf_c01209{left:471.288000px;}
.x48_c01209{left:473.458500px;}
.x29_c01209{left:479.430000px;}
.x1f_c01209{left:486.000000px;}
.x6_c01209{left:517.050000px;}
.x3f_c01209{left:519.221926px;}
.x34_c01209{left:534.571074px;}
.x53_c01209{left:553.116405px;}
.x10_c01209{left:555.033000px;}
.x20_c01209{left:560.250000px;}
.x49_c01209{left:566.602500px;}
.x7_c01209{left:572.130000px;}
.x11_c01209{left:582.804000px;}
.x40_c01209{left:590.233902px;}
.x2a_c01209{left:597.934500px;}
.x54_c01209{left:606.884757px;}
.x12_c01209{left:628.135500px;}
.x4a_c01209{left:638.967000px;}
.x55_c01209{left:646.572780px;}
.x41_c01209{left:647.745216px;}
.x2b_c01209{left:662.980500px;}
.x35_c01209{left:667.023150px;}
.x42_c01209{left:678.525228px;}
.x2c_c01209{left:680.038500px;}
.x13_c01209{left:683.740500px;}
.x21_c01209{left:684.990000px;}
.x36_c01209{left:711.137845px;}
.x43_c01209{left:712.275376px;}
.x4b_c01209{left:718.564500px;}
.x56_c01209{left:749.790000px;}
.x57_c01209{left:752.490000px;}
.x58_c01209{left:766.530000px;}
@media print{
.v0_c01209{vertical-align:0.000000pt;}
.ls0_c01209{letter-spacing:0.000000pt;}
.ws0_c01209{word-spacing:0.000000pt;}
.fs2_c01209{font-size:16.000000pt;}
.fs0_c01209{font-size:58.666667pt;}
.fs6_c01209{font-size:64.001568pt;}
.fs3_c01209{font-size:69.333333pt;}
.fs1_c01209{font-size:69.334581pt;}
.fs4_c01209{font-size:69.335032pt;}
.fs8_c01209{font-size:74.668011pt;}
.fs5_c01209{font-size:74.668496pt;}
.fs7_c01209{font-size:80.001440pt;}
.y0_c01209{bottom:0.000000pt;}
.y50_c01209{bottom:20.880000pt;}
.y4f_c01209{bottom:23.040000pt;}
.y4e_c01209{bottom:587.520000pt;}
.y42_c01209{bottom:709.108968pt;}
.y43_c01209{bottom:709.883773pt;}
.y44_c01209{bottom:710.437168pt;}
.y45_c01209{bottom:710.766043pt;}
.y46_c01209{bottom:711.212275pt;}
.y47_c01209{bottom:711.771435pt;}
.y48_c01209{bottom:712.246933pt;}
.y49_c01209{bottom:712.354384pt;}
.y4a_c01209{bottom:712.910083pt;}
.y4b_c01209{bottom:713.041760pt;}
.y4c_c01209{bottom:713.424528pt;}
.y4d_c01209{bottom:713.706867pt;}
.y37_c01209{bottom:740.308000pt;}
.y38_c01209{bottom:740.941440pt;}
.y39_c01209{bottom:741.615328pt;}
.y3a_c01209{bottom:742.038568pt;}
.y3b_c01209{bottom:742.221392pt;}
.y3c_c01209{bottom:742.475032pt;}
.y3d_c01209{bottom:742.678000pt;}
.y3e_c01209{bottom:743.174768pt;}
.y3f_c01209{bottom:743.560712pt;}
.y40_c01209{bottom:743.769552pt;}
.y41_c01209{bottom:743.985232pt;}
.y29_c01209{bottom:775.284563pt;}
.y2e_c01209{bottom:775.284703pt;}
.y2d_c01209{bottom:775.284845pt;}
.y2a_c01209{bottom:775.284873pt;}
.y32_c01209{bottom:775.285075pt;}
.y2b_c01209{bottom:775.285077pt;}
.y2c_c01209{bottom:775.285121pt;}
.y2f_c01209{bottom:775.285156pt;}
.y28_c01209{bottom:775.285185pt;}
.y30_c01209{bottom:775.285191pt;}
.y33_c01209{bottom:775.285572pt;}
.y35_c01209{bottom:775.285580pt;}
.y31_c01209{bottom:775.285697pt;}
.y34_c01209{bottom:775.286069pt;}
.y36_c01209{bottom:775.286237pt;}
.y1d_c01209{bottom:801.842431pt;}
.y1e_c01209{bottom:802.432019pt;}
.y1f_c01209{bottom:803.079409pt;}
.y20_c01209{bottom:803.559232pt;}
.y21_c01209{bottom:803.779153pt;}
.y22_c01209{bottom:804.184365pt;}
.y23_c01209{bottom:804.817432pt;}
.y24_c01209{bottom:805.179819pt;}
.y25_c01209{bottom:805.522057pt;}
.y26_c01209{bottom:806.463543pt;}
.y27_c01209{bottom:806.776703pt;}
.y10_c01209{bottom:835.130667pt;}
.y11_c01209{bottom:835.621301pt;}
.y12_c01209{bottom:835.869839pt;}
.y13_c01209{bottom:836.190989pt;}
.y14_c01209{bottom:836.474853pt;}
.y15_c01209{bottom:836.849512pt;}
.y16_c01209{bottom:837.076051pt;}
.y17_c01209{bottom:837.417296pt;}
.y18_c01209{bottom:837.697884pt;}
.y19_c01209{bottom:838.273303pt;}
.y1a_c01209{bottom:838.435245pt;}
.y1b_c01209{bottom:838.839976pt;}
.y1c_c01209{bottom:838.946115pt;}
.yf_c01209{bottom:868.262667pt;}
.ye_c01209{bottom:882.000000pt;}
.yd_c01209{bottom:899.705389pt;}
.yc_c01209{bottom:900.001949pt;}
.yb_c01209{bottom:900.243717pt;}
.ya_c01209{bottom:900.391829pt;}
.y9_c01209{bottom:900.838469pt;}
.y8_c01209{bottom:900.979445pt;}
.y7_c01209{bottom:901.182421pt;}
.y6_c01209{bottom:901.450173pt;}
.y5_c01209{bottom:901.671973pt;}
.y4_c01209{bottom:902.064085pt;}
.y3_c01209{bottom:902.460029pt;}
.y2_c01209{bottom:903.121333pt;}
.y1_c01209{bottom:932.560000pt;}
.h4_c01209{height:16.000000pt;}
.h2_c01209{height:58.666667pt;}
.h8_c01209{height:64.001568pt;}
.h5_c01209{height:69.333333pt;}
.h3_c01209{height:69.334581pt;}
.h6_c01209{height:69.335032pt;}
.ha_c01209{height:74.668011pt;}
.h7_c01209{height:74.668496pt;}
.h9_c01209{height:80.001440pt;}
.h1_c01209{height:1118.666667pt;}
.h0_c01209{height:1118.880000pt;}
.w0_c01209{width:803.733333pt;}
.w1_c01209{width:804.000000pt;}
.x0_c01209{left:0.000000pt;}
.x2d_c01209{left:15.230841pt;}
.x44_c01209{left:25.852000pt;}
.x37_c01209{left:30.960175pt;}
.x8_c01209{left:38.445333pt;}
.x22_c01209{left:59.414667pt;}
.x38_c01209{left:60.720297pt;}
.x15_c01209{left:66.960000pt;}
.x14_c01209{left:78.480000pt;}
.x2e_c01209{left:88.980995pt;}
.x4c_c01209{left:97.110437pt;}
.x39_c01209{left:100.560915pt;}
.x23_c01209{left:129.505333pt;}
.x45_c01209{left:131.425333pt;}
.x16_c01209{left:133.440000pt;}
.x17_c01209{left:145.440000pt;}
.x9_c01209{left:148.662667pt;}
.x24_c01209{left:165.010667pt;}
.x4d_c01209{left:166.230939pt;}
.x2f_c01209{left:169.845759pt;}
.x18_c01209{left:185.040000pt;}
.x3a_c01209{left:204.723353pt;}
.x4e_c01209{left:207.265109pt;}
.x19_c01209{left:209.040000pt;}
.x25_c01209{left:210.889333pt;}
.xa_c01209{left:214.653333pt;}
.x1_c01209{left:228.720000pt;}
.x30_c01209{left:229.820005pt;}
.x3b_c01209{left:244.323961pt;}
.x1a_c01209{left:252.240000pt;}
.x31_c01209{left:257.237143pt;}
.x4f_c01209{left:262.969771pt;}
.x3c_c01209{left:270.485240pt;}
.xb_c01209{left:280.005333pt;}
.x2_c01209{left:292.800000pt;}
.x26_c01209{left:304.964000pt;}
.x32_c01209{left:307.886121pt;}
.x1b_c01209{left:310.320000pt;}
.x46_c01209{left:314.280000pt;}
.xc_c01209{left:316.972000pt;}
.x3_c01209{left:323.040000pt;}
.x1c_c01209{left:330.960000pt;}
.x50_c01209{left:332.828931pt;}
.x27_c01209{left:337.326667pt;}
.x47_c01209{left:344.750667pt;}
.x4_c01209{left:353.040000pt;}
.x3d_c01209{left:355.446736pt;}
.xd_c01209{left:361.597333pt;}
.x1d_c01209{left:365.280000pt;}
.x5_c01209{left:379.920000pt;}
.x3e_c01209{left:382.568061pt;}
.x28_c01209{left:386.076000pt;}
.x33_c01209{left:387.085571pt;}
.x51_c01209{left:392.300219pt;}
.xe_c01209{left:395.426667pt;}
.x1e_c01209{left:402.720000pt;}
.x52_c01209{left:405.764059pt;}
.xf_c01209{left:418.922667pt;}
.x48_c01209{left:420.852000pt;}
.x29_c01209{left:426.160000pt;}
.x1f_c01209{left:432.000000pt;}
.x6_c01209{left:459.600000pt;}
.x3f_c01209{left:461.530601pt;}
.x34_c01209{left:475.174288pt;}
.x53_c01209{left:491.659027pt;}
.x10_c01209{left:493.362667pt;}
.x20_c01209{left:498.000000pt;}
.x49_c01209{left:503.646667pt;}
.x7_c01209{left:508.560000pt;}
.x11_c01209{left:518.048000pt;}
.x40_c01209{left:524.652357pt;}
.x2a_c01209{left:531.497333pt;}
.x54_c01209{left:539.453117pt;}
.x12_c01209{left:558.342667pt;}
.x4a_c01209{left:567.970667pt;}
.x55_c01209{left:574.731360pt;}
.x41_c01209{left:575.773525pt;}
.x2b_c01209{left:589.316000pt;}
.x35_c01209{left:592.909467pt;}
.x42_c01209{left:603.133536pt;}
.x2c_c01209{left:604.478667pt;}
.x13_c01209{left:607.769333pt;}
.x21_c01209{left:608.880000pt;}
.x36_c01209{left:632.122529pt;}
.x43_c01209{left:633.133668pt;}
.x4b_c01209{left:638.724000pt;}
.x56_c01209{left:666.480000pt;}
.x57_c01209{left:668.880000pt;}
.x58_c01209{left:681.360000pt;}
}





/* 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_c01210 {
    display:none;
  }
  .loading-indicator_c01210.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01210 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_c01210 { 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_c01210" -> "#page-container .classname_c01210")
 */
.pf_c01210 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01210 { /* 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_c01210.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01210 { /* 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_c01210 { /* 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_c01210 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01210 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01210 {overflow:visible;}
  }
}
.c_c01210 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01210 { /* 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_c01210:after { /* webkit #35443 */
  content: '';
}
.t_c01210:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01210 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 */
}
.__c01210 { /* 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_c01210 { /* info for Javascript */
  display:none;
}
.l_c01210 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01210 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01210 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01210: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_c01210 {
    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_c01210.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01210.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_c01210 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01210{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01210;src:url('chunks/assets/font_c605e72f209fc835e906f064.woff2')format("woff");}.ff1_c01210{font-family:ff1_c01210;line-height:1.000000;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;}
.m8e_c01210{transform:matrix(0.018748,0.000281,-0.003750,0.249972,0,0);-ms-transform:matrix(0.018748,0.000281,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.018748,0.000281,-0.003750,0.249972,0,0);}
.m174_c01210{transform:matrix(0.145130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145130,0.000000,0.000000,0.250000,0,0);}
.m143_c01210{transform:matrix(0.166888,0.002003,-0.003000,0.249982,0,0);-ms-transform:matrix(0.166888,0.002003,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.166888,0.002003,-0.003000,0.249982,0,0);}
.m13f_c01210{transform:matrix(0.167328,0.002008,-0.003000,0.249982,0,0);-ms-transform:matrix(0.167328,0.002008,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.167328,0.002008,-0.003000,0.249982,0,0);}
.m9e_c01210{transform:matrix(0.167686,0.002515,-0.003750,0.249972,0,0);-ms-transform:matrix(0.167686,0.002515,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.167686,0.002515,-0.003750,0.249972,0,0);}
.m148_c01210{transform:matrix(0.173253,0.002079,-0.003000,0.249982,0,0);-ms-transform:matrix(0.173253,0.002079,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.173253,0.002079,-0.003000,0.249982,0,0);}
.m3c_c01210{transform:matrix(0.175257,0.002103,-0.003000,0.249982,0,0);-ms-transform:matrix(0.175257,0.002103,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.175257,0.002103,-0.003000,0.249982,0,0);}
.mb1_c01210{transform:matrix(0.176445,0.002647,-0.003750,0.249972,0,0);-ms-transform:matrix(0.176445,0.002647,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.176445,0.002647,-0.003750,0.249972,0,0);}
.m3e_c01210{transform:matrix(0.177322,0.002128,-0.003000,0.249982,0,0);-ms-transform:matrix(0.177322,0.002128,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.177322,0.002128,-0.003000,0.249982,0,0);}
.m15b_c01210{transform:matrix(0.178766,0.003754,-0.005249,0.249945,0,0);-ms-transform:matrix(0.178766,0.003754,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.178766,0.003754,-0.005249,0.249945,0,0);}
.m147_c01210{transform:matrix(0.178857,0.002146,-0.003000,0.249982,0,0);-ms-transform:matrix(0.178857,0.002146,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.178857,0.002146,-0.003000,0.249982,0,0);}
.m145_c01210{transform:matrix(0.178992,0.002148,-0.003000,0.249982,0,0);-ms-transform:matrix(0.178992,0.002148,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.178992,0.002148,-0.003000,0.249982,0,0);}
.m41_c01210{transform:matrix(0.179447,0.002153,-0.003000,0.249982,0,0);-ms-transform:matrix(0.179447,0.002153,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.179447,0.002153,-0.003000,0.249982,0,0);}
.ma1_c01210{transform:matrix(0.180305,0.002705,-0.003750,0.249972,0,0);-ms-transform:matrix(0.180305,0.002705,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.180305,0.002705,-0.003750,0.249972,0,0);}
.m141_c01210{transform:matrix(0.184027,0.002208,-0.003000,0.249982,0,0);-ms-transform:matrix(0.184027,0.002208,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.184027,0.002208,-0.003000,0.249982,0,0);}
.m149_c01210{transform:matrix(0.185892,0.002231,-0.003000,0.249982,0,0);-ms-transform:matrix(0.185892,0.002231,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.185892,0.002231,-0.003000,0.249982,0,0);}
.m142_c01210{transform:matrix(0.186352,0.002236,-0.003000,0.249982,0,0);-ms-transform:matrix(0.186352,0.002236,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.186352,0.002236,-0.003000,0.249982,0,0);}
.m3a_c01210{transform:matrix(0.187721,0.002253,-0.003000,0.249982,0,0);-ms-transform:matrix(0.187721,0.002253,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.187721,0.002253,-0.003000,0.249982,0,0);}
.m152_c01210{transform:matrix(0.190061,0.002281,-0.003000,0.249982,0,0);-ms-transform:matrix(0.190061,0.002281,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.190061,0.002281,-0.003000,0.249982,0,0);}
.m144_c01210{transform:matrix(0.190236,0.002283,-0.003000,0.249982,0,0);-ms-transform:matrix(0.190236,0.002283,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.190236,0.002283,-0.003000,0.249982,0,0);}
.mbc_c01210{transform:matrix(0.190344,0.002855,-0.003750,0.249972,0,0);-ms-transform:matrix(0.190344,0.002855,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.190344,0.002855,-0.003750,0.249972,0,0);}
.m38_c01210{transform:matrix(0.190671,0.002288,-0.003000,0.249982,0,0);-ms-transform:matrix(0.190671,0.002288,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.190671,0.002288,-0.003000,0.249982,0,0);}
.m14c_c01210{transform:matrix(0.191156,0.002294,-0.003000,0.249982,0,0);-ms-transform:matrix(0.191156,0.002294,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.191156,0.002294,-0.003000,0.249982,0,0);}
.m13e_c01210{transform:matrix(0.191806,0.002302,-0.003000,0.249982,0,0);-ms-transform:matrix(0.191806,0.002302,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.191806,0.002302,-0.003000,0.249982,0,0);}
.ma4_c01210{transform:matrix(0.191908,0.002879,-0.003750,0.249972,0,0);-ms-transform:matrix(0.191908,0.002879,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.191908,0.002879,-0.003750,0.249972,0,0);}
.mfc_c01210{transform:matrix(0.192614,0.002504,-0.003250,0.249979,0,0);-ms-transform:matrix(0.192614,0.002504,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.192614,0.002504,-0.003250,0.249979,0,0);}
.mad_c01210{transform:matrix(0.193018,0.002895,-0.003750,0.249972,0,0);-ms-transform:matrix(0.193018,0.002895,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.193018,0.002895,-0.003750,0.249972,0,0);}
.m79_c01210{transform:matrix(0.193358,0.002900,-0.003750,0.249972,0,0);-ms-transform:matrix(0.193358,0.002900,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.193358,0.002900,-0.003750,0.249972,0,0);}
.m15f_c01210{transform:matrix(0.193382,0.004061,-0.005249,0.249945,0,0);-ms-transform:matrix(0.193382,0.004061,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.193382,0.004061,-0.005249,0.249945,0,0);}
.m140_c01210{transform:matrix(0.193511,0.002322,-0.003000,0.249982,0,0);-ms-transform:matrix(0.193511,0.002322,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.193511,0.002322,-0.003000,0.249982,0,0);}
.ma5_c01210{transform:matrix(0.194143,0.002912,-0.003750,0.249972,0,0);-ms-transform:matrix(0.194143,0.002912,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.194143,0.002912,-0.003750,0.249972,0,0);}
.ma3_c01210{transform:matrix(0.194678,0.002920,-0.003750,0.249972,0,0);-ms-transform:matrix(0.194678,0.002920,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.194678,0.002920,-0.003750,0.249972,0,0);}
.m146_c01210{transform:matrix(0.195186,0.002342,-0.003000,0.249982,0,0);-ms-transform:matrix(0.195186,0.002342,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.195186,0.002342,-0.003000,0.249982,0,0);}
.m15e_c01210{transform:matrix(0.195192,0.004099,-0.005249,0.249945,0,0);-ms-transform:matrix(0.195192,0.004099,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.195192,0.004099,-0.005249,0.249945,0,0);}
.mce_c01210{transform:matrix(0.195214,0.002538,-0.003250,0.249979,0,0);-ms-transform:matrix(0.195214,0.002538,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.195214,0.002538,-0.003250,0.249979,0,0);}
.m3f_c01210{transform:matrix(0.195311,0.002344,-0.003000,0.249982,0,0);-ms-transform:matrix(0.195311,0.002344,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.195311,0.002344,-0.003000,0.249982,0,0);}
.m2b_c01210{transform:matrix(0.195867,0.001763,-0.002250,0.249990,0,0);-ms-transform:matrix(0.195867,0.001763,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.195867,0.001763,-0.002250,0.249990,0,0);}
.m162_c01210{transform:matrix(0.198046,0.004159,-0.005249,0.249945,0,0);-ms-transform:matrix(0.198046,0.004159,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.198046,0.004159,-0.005249,0.249945,0,0);}
.m3b_c01210{transform:matrix(0.198241,0.002379,-0.003000,0.249982,0,0);-ms-transform:matrix(0.198241,0.002379,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.198241,0.002379,-0.003000,0.249982,0,0);}
.m158_c01210{transform:matrix(0.199206,0.004183,-0.005249,0.249945,0,0);-ms-transform:matrix(0.199206,0.004183,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.199206,0.004183,-0.005249,0.249945,0,0);}
.ma9_c01210{transform:matrix(0.199788,0.002997,-0.003750,0.249972,0,0);-ms-transform:matrix(0.199788,0.002997,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.199788,0.002997,-0.003750,0.249972,0,0);}
.m43_c01210{transform:matrix(0.200375,0.002004,-0.002500,0.249988,0,0);-ms-transform:matrix(0.200375,0.002004,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.200375,0.002004,-0.002500,0.249988,0,0);}
.m3_c01210{transform:matrix(0.200415,0.002806,-0.003500,0.249976,0,0);-ms-transform:matrix(0.200415,0.002806,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.200415,0.002806,-0.003500,0.249976,0,0);}
.m7b_c01210{transform:matrix(0.200687,0.003010,-0.003750,0.249972,0,0);-ms-transform:matrix(0.200687,0.003010,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.200687,0.003010,-0.003750,0.249972,0,0);}
.m150_c01210{transform:matrix(0.200696,0.002408,-0.003000,0.249982,0,0);-ms-transform:matrix(0.200696,0.002408,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.200696,0.002408,-0.003000,0.249982,0,0);}
.m37_c01210{transform:matrix(0.201216,0.002415,-0.003000,0.249982,0,0);-ms-transform:matrix(0.201216,0.002415,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.201216,0.002415,-0.003000,0.249982,0,0);}
.m3d_c01210{transform:matrix(0.201740,0.002421,-0.003000,0.249982,0,0);-ms-transform:matrix(0.201740,0.002421,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.201740,0.002421,-0.003000,0.249982,0,0);}
.mf7_c01210{transform:matrix(0.202793,0.002636,-0.003250,0.249979,0,0);-ms-transform:matrix(0.202793,0.002636,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.202793,0.002636,-0.003250,0.249979,0,0);}
.m9c_c01210{transform:matrix(0.202847,0.003043,-0.003750,0.249972,0,0);-ms-transform:matrix(0.202847,0.003043,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.202847,0.003043,-0.003750,0.249972,0,0);}
.m160_c01210{transform:matrix(0.202980,0.004263,-0.005249,0.249945,0,0);-ms-transform:matrix(0.202980,0.004263,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.202980,0.004263,-0.005249,0.249945,0,0);}
.maf_c01210{transform:matrix(0.203317,0.003050,-0.003750,0.249972,0,0);-ms-transform:matrix(0.203317,0.003050,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.203317,0.003050,-0.003750,0.249972,0,0);}
.mfb_c01210{transform:matrix(0.204108,0.002653,-0.003250,0.249979,0,0);-ms-transform:matrix(0.204108,0.002653,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.204108,0.002653,-0.003250,0.249979,0,0);}
.mf5_c01210{transform:matrix(0.204168,0.002654,-0.003250,0.249979,0,0);-ms-transform:matrix(0.204168,0.002654,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.204168,0.002654,-0.003250,0.249979,0,0);}
.mff_c01210{transform:matrix(0.205753,0.002675,-0.003250,0.249979,0,0);-ms-transform:matrix(0.205753,0.002675,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.205753,0.002675,-0.003250,0.249979,0,0);}
.m40_c01210{transform:matrix(0.206000,0.002472,-0.003000,0.249982,0,0);-ms-transform:matrix(0.206000,0.002472,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.206000,0.002472,-0.003000,0.249982,0,0);}
.m98_c01210{transform:matrix(0.207312,0.003110,-0.003750,0.249972,0,0);-ms-transform:matrix(0.207312,0.003110,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.207312,0.003110,-0.003750,0.249972,0,0);}
.m136_c01210{transform:matrix(0.207880,0.002495,-0.003000,0.249982,0,0);-ms-transform:matrix(0.207880,0.002495,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.207880,0.002495,-0.003000,0.249982,0,0);}
.mb_c01210{transform:matrix(0.208015,0.002912,-0.003500,0.249976,0,0);-ms-transform:matrix(0.208015,0.002912,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.208015,0.002912,-0.003500,0.249976,0,0);}
.m126_c01210{transform:matrix(0.208050,0.002497,-0.003000,0.249982,0,0);-ms-transform:matrix(0.208050,0.002497,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.208050,0.002497,-0.003000,0.249982,0,0);}
.m159_c01210{transform:matrix(0.208169,0.004372,-0.005249,0.249945,0,0);-ms-transform:matrix(0.208169,0.004372,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.208169,0.004372,-0.005249,0.249945,0,0);}
.ma7_c01210{transform:matrix(0.208557,0.003128,-0.003750,0.249972,0,0);-ms-transform:matrix(0.208557,0.003128,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.208557,0.003128,-0.003750,0.249972,0,0);}
.m9d_c01210{transform:matrix(0.209781,0.003147,-0.003750,0.249972,0,0);-ms-transform:matrix(0.209781,0.003147,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.209781,0.003147,-0.003750,0.249972,0,0);}
.mb0_c01210{transform:matrix(0.210826,0.003162,-0.003750,0.249972,0,0);-ms-transform:matrix(0.210826,0.003162,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.210826,0.003162,-0.003750,0.249972,0,0);}
.mc4_c01210{transform:matrix(0.211000,0.002532,-0.003000,0.249982,0,0);-ms-transform:matrix(0.211000,0.002532,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.211000,0.002532,-0.003000,0.249982,0,0);}
.md9_c01210{transform:matrix(0.211852,0.002754,-0.003250,0.249979,0,0);-ms-transform:matrix(0.211852,0.002754,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.211852,0.002754,-0.003250,0.249979,0,0);}
.ma0_c01210{transform:matrix(0.212081,0.003181,-0.003750,0.249972,0,0);-ms-transform:matrix(0.212081,0.003181,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.212081,0.003181,-0.003750,0.249972,0,0);}
.m163_c01210{transform:matrix(0.212493,0.004462,-0.005249,0.249945,0,0);-ms-transform:matrix(0.212493,0.004462,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.212493,0.004462,-0.005249,0.249945,0,0);}
.me3_c01210{transform:matrix(0.212592,0.002764,-0.003250,0.249979,0,0);-ms-transform:matrix(0.212592,0.002764,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.212592,0.002764,-0.003250,0.249979,0,0);}
.mf9_c01210{transform:matrix(0.212652,0.002764,-0.003250,0.249979,0,0);-ms-transform:matrix(0.212652,0.002764,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.212652,0.002764,-0.003250,0.249979,0,0);}
.mb4_c01210{transform:matrix(0.212661,0.003190,-0.003750,0.249972,0,0);-ms-transform:matrix(0.212661,0.003190,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.212661,0.003190,-0.003750,0.249972,0,0);}
.m161_c01210{transform:matrix(0.213038,0.004474,-0.005249,0.249945,0,0);-ms-transform:matrix(0.213038,0.004474,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.213038,0.004474,-0.005249,0.249945,0,0);}
.mfe_c01210{transform:matrix(0.213342,0.002773,-0.003250,0.249979,0,0);-ms-transform:matrix(0.213342,0.002773,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.213342,0.002773,-0.003250,0.249979,0,0);}
.mb7_c01210{transform:matrix(0.213666,0.003205,-0.003750,0.249972,0,0);-ms-transform:matrix(0.213666,0.003205,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.213666,0.003205,-0.003750,0.249972,0,0);}
.m13d_c01210{transform:matrix(0.213980,0.002568,-0.003000,0.249982,0,0);-ms-transform:matrix(0.213980,0.002568,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.213980,0.002568,-0.003000,0.249982,0,0);}
.m72_c01210{transform:matrix(0.214641,0.003220,-0.003750,0.249972,0,0);-ms-transform:matrix(0.214641,0.003220,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.214641,0.003220,-0.003750,0.249972,0,0);}
.m51_c01210{transform:matrix(0.214654,0.002147,-0.002500,0.249988,0,0);-ms-transform:matrix(0.214654,0.002147,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.214654,0.002147,-0.002500,0.249988,0,0);}
.m59_c01210{transform:matrix(0.214739,0.002147,-0.002500,0.249988,0,0);-ms-transform:matrix(0.214739,0.002147,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.214739,0.002147,-0.002500,0.249988,0,0);}
.mb3_c01210{transform:matrix(0.214741,0.003221,-0.003750,0.249972,0,0);-ms-transform:matrix(0.214741,0.003221,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.214741,0.003221,-0.003750,0.249972,0,0);}
.me7_c01210{transform:matrix(0.214782,0.002792,-0.003250,0.249979,0,0);-ms-transform:matrix(0.214782,0.002792,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.214782,0.002792,-0.003250,0.249979,0,0);}
.m8_c01210{transform:matrix(0.214834,0.003008,-0.003500,0.249976,0,0);-ms-transform:matrix(0.214834,0.003008,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.214834,0.003008,-0.003500,0.249976,0,0);}
.mf4_c01210{transform:matrix(0.214912,0.002794,-0.003250,0.249979,0,0);-ms-transform:matrix(0.214912,0.002794,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.214912,0.002794,-0.003250,0.249979,0,0);}
.ma6_c01210{transform:matrix(0.214981,0.003225,-0.003750,0.249972,0,0);-ms-transform:matrix(0.214981,0.003225,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.214981,0.003225,-0.003750,0.249972,0,0);}
.mfa_c01210{transform:matrix(0.215057,0.002796,-0.003250,0.249979,0,0);-ms-transform:matrix(0.215057,0.002796,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.215057,0.002796,-0.003250,0.249979,0,0);}
.m1d_c01210{transform:matrix(0.215281,0.001938,-0.002250,0.249990,0,0);-ms-transform:matrix(0.215281,0.001938,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.215281,0.001938,-0.002250,0.249990,0,0);}
.m15a_c01210{transform:matrix(0.215587,0.004527,-0.005249,0.249945,0,0);-ms-transform:matrix(0.215587,0.004527,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.215587,0.004527,-0.005249,0.249945,0,0);}
.m2_c01210{transform:matrix(0.215670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215670,0.000000,0.000000,0.250000,0,0);}
.m24_c01210{transform:matrix(0.215706,0.001941,-0.002250,0.249990,0,0);-ms-transform:matrix(0.215706,0.001941,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.215706,0.001941,-0.002250,0.249990,0,0);}
.mf8_c01210{transform:matrix(0.216317,0.002812,-0.003250,0.249979,0,0);-ms-transform:matrix(0.216317,0.002812,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.216317,0.002812,-0.003250,0.249979,0,0);}
.mc5_c01210{transform:matrix(0.216709,0.002601,-0.003000,0.249982,0,0);-ms-transform:matrix(0.216709,0.002601,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.216709,0.002601,-0.003000,0.249982,0,0);}
.m4b_c01210{transform:matrix(0.216769,0.002168,-0.002500,0.249988,0,0);-ms-transform:matrix(0.216769,0.002168,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.216769,0.002168,-0.002500,0.249988,0,0);}
.m9b_c01210{transform:matrix(0.216876,0.003253,-0.003750,0.249972,0,0);-ms-transform:matrix(0.216876,0.003253,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.216876,0.003253,-0.003750,0.249972,0,0);}
.me5_c01210{transform:matrix(0.216937,0.002820,-0.003250,0.249979,0,0);-ms-transform:matrix(0.216937,0.002820,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.216937,0.002820,-0.003250,0.249979,0,0);}
.m5d_c01210{transform:matrix(0.216939,0.002169,-0.002500,0.249988,0,0);-ms-transform:matrix(0.216939,0.002169,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.216939,0.002169,-0.002500,0.249988,0,0);}
.m4_c01210{transform:matrix(0.217509,0.003045,-0.003500,0.249976,0,0);-ms-transform:matrix(0.217509,0.003045,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.217509,0.003045,-0.003500,0.249976,0,0);}
.m101_c01210{transform:matrix(0.217562,0.002828,-0.003250,0.249979,0,0);-ms-transform:matrix(0.217562,0.002828,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.217562,0.002828,-0.003250,0.249979,0,0);}
.md8_c01210{transform:matrix(0.218907,0.002846,-0.003250,0.249979,0,0);-ms-transform:matrix(0.218907,0.002846,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.218907,0.002846,-0.003250,0.249979,0,0);}
.mb2_c01210{transform:matrix(0.219340,0.003290,-0.003750,0.249972,0,0);-ms-transform:matrix(0.219340,0.003290,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.219340,0.003290,-0.003750,0.249972,0,0);}
.mae_c01210{transform:matrix(0.219510,0.003293,-0.003750,0.249972,0,0);-ms-transform:matrix(0.219510,0.003293,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.219510,0.003293,-0.003750,0.249972,0,0);}
.mda_c01210{transform:matrix(0.219516,0.002854,-0.003250,0.249979,0,0);-ms-transform:matrix(0.219516,0.002854,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.219516,0.002854,-0.003250,0.249979,0,0);}
.m11b_c01210{transform:matrix(0.219519,0.002634,-0.003000,0.249982,0,0);-ms-transform:matrix(0.219519,0.002634,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.219519,0.002634,-0.003000,0.249982,0,0);}
.m48_c01210{transform:matrix(0.220034,0.002200,-0.002500,0.249988,0,0);-ms-transform:matrix(0.220034,0.002200,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.220034,0.002200,-0.002500,0.249988,0,0);}
.m89_c01210{transform:matrix(0.220080,0.003301,-0.003750,0.249972,0,0);-ms-transform:matrix(0.220080,0.003301,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.220080,0.003301,-0.003750,0.249972,0,0);}
.m6c_c01210{transform:matrix(0.220165,0.003302,-0.003750,0.249972,0,0);-ms-transform:matrix(0.220165,0.003302,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.220165,0.003302,-0.003750,0.249972,0,0);}
.maa_c01210{transform:matrix(0.220350,0.003305,-0.003750,0.249972,0,0);-ms-transform:matrix(0.220350,0.003305,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.220350,0.003305,-0.003750,0.249972,0,0);}
.m5b_c01210{transform:matrix(0.220359,0.002204,-0.002500,0.249988,0,0);-ms-transform:matrix(0.220359,0.002204,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.220359,0.002204,-0.002500,0.249988,0,0);}
.mcd_c01210{transform:matrix(0.220711,0.002869,-0.003250,0.249979,0,0);-ms-transform:matrix(0.220711,0.002869,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.220711,0.002869,-0.003250,0.249979,0,0);}
.m11e_c01210{transform:matrix(0.220814,0.002650,-0.003000,0.249982,0,0);-ms-transform:matrix(0.220814,0.002650,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.220814,0.002650,-0.003000,0.249982,0,0);}
.m176_c01210{transform:matrix(0.221020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221020,0.000000,0.000000,0.250000,0,0);}
.m71_c01210{transform:matrix(0.221430,0.003321,-0.003750,0.249972,0,0);-ms-transform:matrix(0.221430,0.003321,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.221430,0.003321,-0.003750,0.249972,0,0);}
.md4_c01210{transform:matrix(0.221436,0.002879,-0.003250,0.249979,0,0);-ms-transform:matrix(0.221436,0.002879,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.221436,0.002879,-0.003250,0.249979,0,0);}
.m151_c01210{transform:matrix(0.221584,0.002659,-0.003000,0.249982,0,0);-ms-transform:matrix(0.221584,0.002659,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.221584,0.002659,-0.003000,0.249982,0,0);}
.m9f_c01210{transform:matrix(0.221625,0.003324,-0.003750,0.249972,0,0);-ms-transform:matrix(0.221625,0.003324,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.221625,0.003324,-0.003750,0.249972,0,0);}
.m82_c01210{transform:matrix(0.222010,0.003330,-0.003750,0.249972,0,0);-ms-transform:matrix(0.222010,0.003330,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.222010,0.003330,-0.003750,0.249972,0,0);}
.m16b_c01210{transform:matrix(0.222016,0.002886,-0.003250,0.249979,0,0);-ms-transform:matrix(0.222016,0.002886,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.222016,0.002886,-0.003250,0.249979,0,0);}
.m56_c01210{transform:matrix(0.222114,0.002221,-0.002500,0.249988,0,0);-ms-transform:matrix(0.222114,0.002221,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.222114,0.002221,-0.002500,0.249988,0,0);}
.m15d_c01210{transform:matrix(0.222386,0.004670,-0.005249,0.249945,0,0);-ms-transform:matrix(0.222386,0.004670,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.222386,0.004670,-0.005249,0.249945,0,0);}
.m124_c01210{transform:matrix(0.222414,0.002669,-0.003000,0.249982,0,0);-ms-transform:matrix(0.222414,0.002669,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.222414,0.002669,-0.003000,0.249982,0,0);}
.m138_c01210{transform:matrix(0.222694,0.002672,-0.003000,0.249982,0,0);-ms-transform:matrix(0.222694,0.002672,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.222694,0.002672,-0.003000,0.249982,0,0);}
.m20_c01210{transform:matrix(0.222726,0.002005,-0.002250,0.249990,0,0);-ms-transform:matrix(0.222726,0.002005,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.222726,0.002005,-0.002250,0.249990,0,0);}
.m30_c01210{transform:matrix(0.222836,0.002006,-0.002250,0.249990,0,0);-ms-transform:matrix(0.222836,0.002006,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.222836,0.002006,-0.002250,0.249990,0,0);}
.m5_c01210{transform:matrix(0.223198,0.003125,-0.003500,0.249976,0,0);-ms-transform:matrix(0.223198,0.003125,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.223198,0.003125,-0.003500,0.249976,0,0);}
.m75_c01210{transform:matrix(0.223355,0.003350,-0.003750,0.249972,0,0);-ms-transform:matrix(0.223355,0.003350,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.223355,0.003350,-0.003750,0.249972,0,0);}
.m27_c01210{transform:matrix(0.223371,0.002010,-0.002250,0.249990,0,0);-ms-transform:matrix(0.223371,0.002010,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.223371,0.002010,-0.002250,0.249990,0,0);}
.me1_c01210{transform:matrix(0.223416,0.002904,-0.003250,0.249979,0,0);-ms-transform:matrix(0.223416,0.002904,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.223416,0.002904,-0.003250,0.249979,0,0);}
.mc8_c01210{transform:matrix(0.223879,0.002687,-0.003000,0.249982,0,0);-ms-transform:matrix(0.223879,0.002687,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.223879,0.002687,-0.003000,0.249982,0,0);}
.mcf_c01210{transform:matrix(0.224016,0.002912,-0.003250,0.249979,0,0);-ms-transform:matrix(0.224016,0.002912,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.224016,0.002912,-0.003250,0.249979,0,0);}
.m32_c01210{transform:matrix(0.224026,0.002016,-0.002250,0.249990,0,0);-ms-transform:matrix(0.224026,0.002016,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.224026,0.002016,-0.002250,0.249990,0,0);}
.m34_c01210{transform:matrix(0.224070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224070,0.000000,0.000000,0.250000,0,0);}
.m46_c01210{transform:matrix(0.225304,0.002253,-0.002500,0.249988,0,0);-ms-transform:matrix(0.225304,0.002253,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.225304,0.002253,-0.002500,0.249988,0,0);}
.m57_c01210{transform:matrix(0.225339,0.002253,-0.002500,0.249988,0,0);-ms-transform:matrix(0.225339,0.002253,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.225339,0.002253,-0.002500,0.249988,0,0);}
.m1e_c01210{transform:matrix(0.225931,0.002033,-0.002250,0.249990,0,0);-ms-transform:matrix(0.225931,0.002033,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.225931,0.002033,-0.002250,0.249990,0,0);}
.m11a_c01210{transform:matrix(0.226091,0.002939,-0.003250,0.249979,0,0);-ms-transform:matrix(0.226091,0.002939,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.226091,0.002939,-0.003250,0.249979,0,0);}
.m9_c01210{transform:matrix(0.226098,0.003165,-0.003500,0.249976,0,0);-ms-transform:matrix(0.226098,0.003165,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.226098,0.003165,-0.003500,0.249976,0,0);}
.m26_c01210{transform:matrix(0.226146,0.002035,-0.002250,0.249990,0,0);-ms-transform:matrix(0.226146,0.002035,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.226146,0.002035,-0.002250,0.249990,0,0);}
.mc6_c01210{transform:matrix(0.226379,0.002717,-0.003000,0.249982,0,0);-ms-transform:matrix(0.226379,0.002717,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.226379,0.002717,-0.003000,0.249982,0,0);}
.m76_c01210{transform:matrix(0.226550,0.003398,-0.003750,0.249972,0,0);-ms-transform:matrix(0.226550,0.003398,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.226550,0.003398,-0.003750,0.249972,0,0);}
.m1b_c01210{transform:matrix(0.226566,0.002039,-0.002250,0.249990,0,0);-ms-transform:matrix(0.226566,0.002039,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.226566,0.002039,-0.002250,0.249990,0,0);}
.m55_c01210{transform:matrix(0.227614,0.002276,-0.002500,0.249988,0,0);-ms-transform:matrix(0.227614,0.002276,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.227614,0.002276,-0.002500,0.249988,0,0);}
.m7c_c01210{transform:matrix(0.227919,0.003419,-0.003750,0.249972,0,0);-ms-transform:matrix(0.227919,0.003419,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.227919,0.003419,-0.003750,0.249972,0,0);}
.m11f_c01210{transform:matrix(0.227929,0.002735,-0.003000,0.249982,0,0);-ms-transform:matrix(0.227929,0.002735,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.227929,0.002735,-0.003000,0.249982,0,0);}
.mec_c01210{transform:matrix(0.228021,0.002964,-0.003250,0.249979,0,0);-ms-transform:matrix(0.228021,0.002964,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.228021,0.002964,-0.003250,0.249979,0,0);}
.mc_c01210{transform:matrix(0.228068,0.003193,-0.003500,0.249976,0,0);-ms-transform:matrix(0.228068,0.003193,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.228068,0.003193,-0.003500,0.249976,0,0);}
.m33_c01210{transform:matrix(0.228896,0.002060,-0.002250,0.249990,0,0);-ms-transform:matrix(0.228896,0.002060,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.228896,0.002060,-0.002250,0.249990,0,0);}
.m21_c01210{transform:matrix(0.228991,0.002061,-0.002250,0.249990,0,0);-ms-transform:matrix(0.228991,0.002061,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.228991,0.002061,-0.002250,0.249990,0,0);}
.md1_c01210{transform:matrix(0.229131,0.002979,-0.003250,0.249979,0,0);-ms-transform:matrix(0.229131,0.002979,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.229131,0.002979,-0.003250,0.249979,0,0);}
.m5e_c01210{transform:matrix(0.229444,0.002294,-0.002500,0.249988,0,0);-ms-transform:matrix(0.229444,0.002294,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.229444,0.002294,-0.002500,0.249988,0,0);}
.m16c_c01210{transform:matrix(0.229571,0.002984,-0.003250,0.249979,0,0);-ms-transform:matrix(0.229571,0.002984,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.229571,0.002984,-0.003250,0.249979,0,0);}
.m122_c01210{transform:matrix(0.229758,0.002757,-0.003000,0.249982,0,0);-ms-transform:matrix(0.229758,0.002757,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.229758,0.002757,-0.003000,0.249982,0,0);}
.m1c_c01210{transform:matrix(0.229876,0.002069,-0.002250,0.249990,0,0);-ms-transform:matrix(0.229876,0.002069,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.229876,0.002069,-0.002250,0.249990,0,0);}
.m121_c01210{transform:matrix(0.230323,0.002764,-0.003000,0.249982,0,0);-ms-transform:matrix(0.230323,0.002764,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.230323,0.002764,-0.003000,0.249982,0,0);}
.m133_c01210{transform:matrix(0.230433,0.002765,-0.003000,0.249982,0,0);-ms-transform:matrix(0.230433,0.002765,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.230433,0.002765,-0.003000,0.249982,0,0);}
.m103_c01210{transform:matrix(0.230691,0.002999,-0.003250,0.249979,0,0);-ms-transform:matrix(0.230691,0.002999,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.230691,0.002999,-0.003250,0.249979,0,0);}
.m73_c01210{transform:matrix(0.231034,0.003466,-0.003750,0.249972,0,0);-ms-transform:matrix(0.231034,0.003466,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.231034,0.003466,-0.003750,0.249972,0,0);}
.m45_c01210{transform:matrix(0.231188,0.002312,-0.002500,0.249988,0,0);-ms-transform:matrix(0.231188,0.002312,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.231188,0.002312,-0.002500,0.249988,0,0);}
.m1a_c01210{transform:matrix(0.231191,0.002081,-0.002250,0.249990,0,0);-ms-transform:matrix(0.231191,0.002081,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.231191,0.002081,-0.002250,0.249990,0,0);}
.m8f_c01210{transform:matrix(0.231409,0.003471,-0.003750,0.249972,0,0);-ms-transform:matrix(0.231409,0.003471,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.231409,0.003471,-0.003750,0.249972,0,0);}
.mc1_c01210{transform:matrix(0.231433,0.002777,-0.003000,0.249982,0,0);-ms-transform:matrix(0.231433,0.002777,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.231433,0.002777,-0.003000,0.249982,0,0);}
.m137_c01210{transform:matrix(0.231813,0.002782,-0.003000,0.249982,0,0);-ms-transform:matrix(0.231813,0.002782,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.231813,0.002782,-0.003000,0.249982,0,0);}
.m4d_c01210{transform:matrix(0.231908,0.002319,-0.002500,0.249988,0,0);-ms-transform:matrix(0.231908,0.002319,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.231908,0.002319,-0.002500,0.249988,0,0);}
.m175_c01210{transform:matrix(0.232085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232085,0.000000,0.000000,0.250000,0,0);}
.md2_c01210{transform:matrix(0.232315,0.003020,-0.003250,0.249979,0,0);-ms-transform:matrix(0.232315,0.003020,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.232315,0.003020,-0.003250,0.249979,0,0);}
.m11c_c01210{transform:matrix(0.232338,0.002788,-0.003000,0.249982,0,0);-ms-transform:matrix(0.232338,0.002788,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.232338,0.002788,-0.003000,0.249982,0,0);}
.m14e_c01210{transform:matrix(0.232603,0.002791,-0.003000,0.249982,0,0);-ms-transform:matrix(0.232603,0.002791,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.232603,0.002791,-0.003000,0.249982,0,0);}
.m4c_c01210{transform:matrix(0.232963,0.002330,-0.002500,0.249988,0,0);-ms-transform:matrix(0.232963,0.002330,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.232963,0.002330,-0.002500,0.249988,0,0);}
.m14f_c01210{transform:matrix(0.233798,0.002806,-0.003000,0.249982,0,0);-ms-transform:matrix(0.233798,0.002806,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.233798,0.002806,-0.003000,0.249982,0,0);}
.ma_c01210{transform:matrix(0.233877,0.003274,-0.003500,0.249976,0,0);-ms-transform:matrix(0.233877,0.003274,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.233877,0.003274,-0.003500,0.249976,0,0);}
.m29_c01210{transform:matrix(0.233996,0.002106,-0.002250,0.249990,0,0);-ms-transform:matrix(0.233996,0.002106,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.233996,0.002106,-0.002250,0.249990,0,0);}
.mfd_c01210{transform:matrix(0.234185,0.003044,-0.003250,0.249979,0,0);-ms-transform:matrix(0.234185,0.003044,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.234185,0.003044,-0.003250,0.249979,0,0);}
.m16e_c01210{transform:matrix(0.234515,0.003049,-0.003250,0.249979,0,0);-ms-transform:matrix(0.234515,0.003049,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.234515,0.003049,-0.003250,0.249979,0,0);}
.m13b_c01210{transform:matrix(0.234778,0.002817,-0.003000,0.249982,0,0);-ms-transform:matrix(0.234778,0.002817,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.234778,0.002817,-0.003000,0.249982,0,0);}
.mc3_c01210{transform:matrix(0.234958,0.002819,-0.003000,0.249982,0,0);-ms-transform:matrix(0.234958,0.002819,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.234958,0.002819,-0.003000,0.249982,0,0);}
.m81_c01210{transform:matrix(0.235249,0.003529,-0.003750,0.249972,0,0);-ms-transform:matrix(0.235249,0.003529,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.235249,0.003529,-0.003750,0.249972,0,0);}
.m134_c01210{transform:matrix(0.235368,0.002824,-0.003000,0.249982,0,0);-ms-transform:matrix(0.235368,0.002824,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.235368,0.002824,-0.003000,0.249982,0,0);}
.m125_c01210{transform:matrix(0.235513,0.002826,-0.003000,0.249982,0,0);-ms-transform:matrix(0.235513,0.002826,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.235513,0.002826,-0.003000,0.249982,0,0);}
.m15c_c01210{transform:matrix(0.235523,0.004946,-0.005249,0.249945,0,0);-ms-transform:matrix(0.235523,0.004946,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.235523,0.004946,-0.005249,0.249945,0,0);}
.mdd_c01210{transform:matrix(0.235555,0.003062,-0.003250,0.249979,0,0);-ms-transform:matrix(0.235555,0.003062,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.235555,0.003062,-0.003250,0.249979,0,0);}
.m2e_c01210{transform:matrix(0.235560,0.002120,-0.002250,0.249990,0,0);-ms-transform:matrix(0.235560,0.002120,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.235560,0.002120,-0.002250,0.249990,0,0);}
.m110_c01210{transform:matrix(0.235735,0.003065,-0.003250,0.249979,0,0);-ms-transform:matrix(0.235735,0.003065,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.235735,0.003065,-0.003250,0.249979,0,0);}
.me0_c01210{transform:matrix(0.235770,0.003065,-0.003250,0.249979,0,0);-ms-transform:matrix(0.235770,0.003065,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.235770,0.003065,-0.003250,0.249979,0,0);}
.mbd_c01210{transform:matrix(0.236418,0.003546,-0.003750,0.249972,0,0);-ms-transform:matrix(0.236418,0.003546,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.236418,0.003546,-0.003750,0.249972,0,0);}
.m13a_c01210{transform:matrix(0.236548,0.002839,-0.003000,0.249982,0,0);-ms-transform:matrix(0.236548,0.002839,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.236548,0.002839,-0.003000,0.249982,0,0);}
.m5f_c01210{transform:matrix(0.236778,0.002368,-0.002500,0.249988,0,0);-ms-transform:matrix(0.236778,0.002368,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.236778,0.002368,-0.002500,0.249988,0,0);}
.mdc_c01210{transform:matrix(0.236835,0.003079,-0.003250,0.249979,0,0);-ms-transform:matrix(0.236835,0.003079,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.236835,0.003079,-0.003250,0.249979,0,0);}
.m6_c01210{transform:matrix(0.236927,0.003317,-0.003500,0.249976,0,0);-ms-transform:matrix(0.236927,0.003317,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.236927,0.003317,-0.003500,0.249976,0,0);}
.m129_c01210{transform:matrix(0.237153,0.002846,-0.003000,0.249982,0,0);-ms-transform:matrix(0.237153,0.002846,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.237153,0.002846,-0.003000,0.249982,0,0);}
.m10e_c01210{transform:matrix(0.237215,0.003084,-0.003250,0.249979,0,0);-ms-transform:matrix(0.237215,0.003084,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.237215,0.003084,-0.003250,0.249979,0,0);}
.m4e_c01210{transform:matrix(0.237238,0.002372,-0.002500,0.249988,0,0);-ms-transform:matrix(0.237238,0.002372,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.237238,0.002372,-0.002500,0.249988,0,0);}
.mc2_c01210{transform:matrix(0.237773,0.002853,-0.003000,0.249982,0,0);-ms-transform:matrix(0.237773,0.002853,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.237773,0.002853,-0.003000,0.249982,0,0);}
.mc0_c01210{transform:matrix(0.237808,0.002854,-0.003000,0.249982,0,0);-ms-transform:matrix(0.237808,0.002854,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.237808,0.002854,-0.003000,0.249982,0,0);}
.m17_c01210{transform:matrix(0.237820,0.002140,-0.002250,0.249990,0,0);-ms-transform:matrix(0.237820,0.002140,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.237820,0.002140,-0.002250,0.249990,0,0);}
.md5_c01210{transform:matrix(0.237900,0.003093,-0.003250,0.249979,0,0);-ms-transform:matrix(0.237900,0.003093,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.237900,0.003093,-0.003250,0.249979,0,0);}
.mc7_c01210{transform:matrix(0.238093,0.002857,-0.003000,0.249982,0,0);-ms-transform:matrix(0.238093,0.002857,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.238093,0.002857,-0.003000,0.249982,0,0);}
.m16d_c01210{transform:matrix(0.238150,0.003096,-0.003250,0.249979,0,0);-ms-transform:matrix(0.238150,0.003096,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.238150,0.003096,-0.003250,0.249979,0,0);}
.md6_c01210{transform:matrix(0.238425,0.003100,-0.003250,0.249979,0,0);-ms-transform:matrix(0.238425,0.003100,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.238425,0.003100,-0.003250,0.249979,0,0);}
.m2d_c01210{transform:matrix(0.238790,0.002149,-0.002250,0.249990,0,0);-ms-transform:matrix(0.238790,0.002149,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.238790,0.002149,-0.002250,0.249990,0,0);}
.m100_c01210{transform:matrix(0.238975,0.003107,-0.003250,0.249979,0,0);-ms-transform:matrix(0.238975,0.003107,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.238975,0.003107,-0.003250,0.249979,0,0);}
.m66_c01210{transform:matrix(0.239203,0.003588,-0.003750,0.249972,0,0);-ms-transform:matrix(0.239203,0.003588,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.239203,0.003588,-0.003750,0.249972,0,0);}
.m14a_c01210{transform:matrix(0.239398,0.002873,-0.003000,0.249982,0,0);-ms-transform:matrix(0.239398,0.002873,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.239398,0.002873,-0.003000,0.249982,0,0);}
.m7_c01210{transform:matrix(0.239467,0.003353,-0.003500,0.249976,0,0);-ms-transform:matrix(0.239467,0.003353,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.239467,0.003353,-0.003500,0.249976,0,0);}
.m156_c01210{transform:matrix(0.239818,0.002878,-0.003000,0.249982,0,0);-ms-transform:matrix(0.239818,0.002878,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.239818,0.002878,-0.003000,0.249982,0,0);}
.mf0_c01210{transform:matrix(0.240045,0.003121,-0.003250,0.249979,0,0);-ms-transform:matrix(0.240045,0.003121,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.240045,0.003121,-0.003250,0.249979,0,0);}
.m80_c01210{transform:matrix(0.240203,0.003603,-0.003750,0.249972,0,0);-ms-transform:matrix(0.240203,0.003603,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.240203,0.003603,-0.003750,0.249972,0,0);}
.mde_c01210{transform:matrix(0.240210,0.003123,-0.003250,0.249979,0,0);-ms-transform:matrix(0.240210,0.003123,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.240210,0.003123,-0.003250,0.249979,0,0);}
.m7d_c01210{transform:matrix(0.240418,0.003606,-0.003750,0.249972,0,0);-ms-transform:matrix(0.240418,0.003606,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.240418,0.003606,-0.003750,0.249972,0,0);}
.m139_c01210{transform:matrix(0.240523,0.002886,-0.003000,0.249982,0,0);-ms-transform:matrix(0.240523,0.002886,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.240523,0.002886,-0.003000,0.249982,0,0);}
.m127_c01210{transform:matrix(0.240658,0.002888,-0.003000,0.249982,0,0);-ms-transform:matrix(0.240658,0.002888,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.240658,0.002888,-0.003000,0.249982,0,0);}
.m154_c01210{transform:matrix(0.241103,0.002893,-0.003000,0.249982,0,0);-ms-transform:matrix(0.241103,0.002893,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.241103,0.002893,-0.003000,0.249982,0,0);}
.m114_c01210{transform:matrix(0.241260,0.003136,-0.003250,0.249979,0,0);-ms-transform:matrix(0.241260,0.003136,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.241260,0.003136,-0.003250,0.249979,0,0);}
.mb8_c01210{transform:matrix(0.241273,0.003619,-0.003750,0.249972,0,0);-ms-transform:matrix(0.241273,0.003619,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.241273,0.003619,-0.003750,0.249972,0,0);}
.m118_c01210{transform:matrix(0.241280,0.003137,-0.003250,0.249979,0,0);-ms-transform:matrix(0.241280,0.003137,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.241280,0.003137,-0.003250,0.249979,0,0);}
.m10b_c01210{transform:matrix(0.241485,0.003139,-0.003250,0.249979,0,0);-ms-transform:matrix(0.241485,0.003139,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.241485,0.003139,-0.003250,0.249979,0,0);}
.m86_c01210{transform:matrix(0.241588,0.003624,-0.003750,0.249972,0,0);-ms-transform:matrix(0.241588,0.003624,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.241588,0.003624,-0.003750,0.249972,0,0);}
.m113_c01210{transform:matrix(0.241975,0.003146,-0.003250,0.249979,0,0);-ms-transform:matrix(0.241975,0.003146,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.241975,0.003146,-0.003250,0.249979,0,0);}
.m47_c01210{transform:matrix(0.242068,0.002421,-0.002500,0.249988,0,0);-ms-transform:matrix(0.242068,0.002421,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.242068,0.002421,-0.002500,0.249988,0,0);}
.m15_c01210{transform:matrix(0.242320,0.002181,-0.002250,0.249990,0,0);-ms-transform:matrix(0.242320,0.002181,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.242320,0.002181,-0.002250,0.249990,0,0);}
.m53_c01210{transform:matrix(0.242363,0.002424,-0.002500,0.249988,0,0);-ms-transform:matrix(0.242363,0.002424,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.242363,0.002424,-0.002500,0.249988,0,0);}
.mee_c01210{transform:matrix(0.243149,0.003161,-0.003250,0.249979,0,0);-ms-transform:matrix(0.243149,0.003161,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.243149,0.003161,-0.003250,0.249979,0,0);}
.me2_c01210{transform:matrix(0.243234,0.003162,-0.003250,0.249979,0,0);-ms-transform:matrix(0.243234,0.003162,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.243234,0.003162,-0.003250,0.249979,0,0);}
.m58_c01210{transform:matrix(0.243278,0.002433,-0.002500,0.249988,0,0);-ms-transform:matrix(0.243278,0.002433,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.243278,0.002433,-0.002500,0.249988,0,0);}
.m10c_c01210{transform:matrix(0.243354,0.003164,-0.003250,0.249979,0,0);-ms-transform:matrix(0.243354,0.003164,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.243354,0.003164,-0.003250,0.249979,0,0);}
.m52_c01210{transform:matrix(0.243533,0.002435,-0.002500,0.249988,0,0);-ms-transform:matrix(0.243533,0.002435,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.243533,0.002435,-0.002500,0.249988,0,0);}
.m5c_c01210{transform:matrix(0.243638,0.002436,-0.002500,0.249988,0,0);-ms-transform:matrix(0.243638,0.002436,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.243638,0.002436,-0.002500,0.249988,0,0);}
.m6e_c01210{transform:matrix(0.243713,0.003656,-0.003750,0.249972,0,0);-ms-transform:matrix(0.243713,0.003656,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.243713,0.003656,-0.003750,0.249972,0,0);}
.m135_c01210{transform:matrix(0.243772,0.002925,-0.003000,0.249982,0,0);-ms-transform:matrix(0.243772,0.002925,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.243772,0.002925,-0.003000,0.249982,0,0);}
.m23_c01210{transform:matrix(0.243780,0.002194,-0.002250,0.249990,0,0);-ms-transform:matrix(0.243780,0.002194,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.243780,0.002194,-0.002250,0.249990,0,0);}
.m65_c01210{transform:matrix(0.243933,0.003659,-0.003750,0.249972,0,0);-ms-transform:matrix(0.243933,0.003659,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.243933,0.003659,-0.003750,0.249972,0,0);}
.m0_c01210{transform:matrix(0.244040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244040,0.000000,0.000000,0.250000,0,0);}
.m68_c01210{transform:matrix(0.244103,0.003662,-0.003750,0.249972,0,0);-ms-transform:matrix(0.244103,0.003662,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.244103,0.003662,-0.003750,0.249972,0,0);}
.m31_c01210{transform:matrix(0.244470,0.002200,-0.002250,0.249990,0,0);-ms-transform:matrix(0.244470,0.002200,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.244470,0.002200,-0.002250,0.249990,0,0);}
.m35_c01210{transform:matrix(0.244960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244960,0.000000,0.000000,0.250000,0,0);}
.m111_c01210{transform:matrix(0.244994,0.003185,-0.003250,0.249979,0,0);-ms-transform:matrix(0.244994,0.003185,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.244994,0.003185,-0.003250,0.249979,0,0);}
.m155_c01210{transform:matrix(0.245417,0.002945,-0.003000,0.249982,0,0);-ms-transform:matrix(0.245417,0.002945,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.245417,0.002945,-0.003000,0.249982,0,0);}
.m12f_c01210{transform:matrix(0.245442,0.002945,-0.003000,0.249982,0,0);-ms-transform:matrix(0.245442,0.002945,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.245442,0.002945,-0.003000,0.249982,0,0);}
.m6f_c01210{transform:matrix(0.245697,0.003685,-0.003750,0.249972,0,0);-ms-transform:matrix(0.245697,0.003685,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.245697,0.003685,-0.003750,0.249972,0,0);}
.m16a_c01210{transform:matrix(0.245779,0.003195,-0.003250,0.249979,0,0);-ms-transform:matrix(0.245779,0.003195,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.245779,0.003195,-0.003250,0.249979,0,0);}
.m8b_c01210{transform:matrix(0.245942,0.003689,-0.003750,0.249972,0,0);-ms-transform:matrix(0.245942,0.003689,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.245942,0.003689,-0.003750,0.249972,0,0);}
.m132_c01210{transform:matrix(0.246012,0.002952,-0.003000,0.249982,0,0);-ms-transform:matrix(0.246012,0.002952,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.246012,0.002952,-0.003000,0.249982,0,0);}
.m2f_c01210{transform:matrix(0.246180,0.002216,-0.002250,0.249990,0,0);-ms-transform:matrix(0.246180,0.002216,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.246180,0.002216,-0.002250,0.249990,0,0);}
.mcb_c01210{transform:matrix(0.246239,0.003201,-0.003250,0.249979,0,0);-ms-transform:matrix(0.246239,0.003201,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.246239,0.003201,-0.003250,0.249979,0,0);}
.m7a_c01210{transform:matrix(0.246382,0.003696,-0.003750,0.249972,0,0);-ms-transform:matrix(0.246382,0.003696,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.246382,0.003696,-0.003750,0.249972,0,0);}
.ma2_c01210{transform:matrix(0.246672,0.003700,-0.003750,0.249972,0,0);-ms-transform:matrix(0.246672,0.003700,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.246672,0.003700,-0.003750,0.249972,0,0);}
.m104_c01210{transform:matrix(0.246709,0.003207,-0.003250,0.249979,0,0);-ms-transform:matrix(0.246709,0.003207,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.246709,0.003207,-0.003250,0.249979,0,0);}
.m22_c01210{transform:matrix(0.246730,0.002221,-0.002250,0.249990,0,0);-ms-transform:matrix(0.246730,0.002221,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.246730,0.002221,-0.002250,0.249990,0,0);}
.m78_c01210{transform:matrix(0.246797,0.003702,-0.003750,0.249972,0,0);-ms-transform:matrix(0.246797,0.003702,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.246797,0.003702,-0.003750,0.249972,0,0);}
.m39_c01210{transform:matrix(0.246967,0.002964,-0.003000,0.249982,0,0);-ms-transform:matrix(0.246967,0.002964,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.246967,0.002964,-0.003000,0.249982,0,0);}
.m6a_c01210{transform:matrix(0.247502,0.003713,-0.003750,0.249972,0,0);-ms-transform:matrix(0.247502,0.003713,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.247502,0.003713,-0.003750,0.249972,0,0);}
.m90_c01210{transform:matrix(0.247522,0.003713,-0.003750,0.249972,0,0);-ms-transform:matrix(0.247522,0.003713,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.247522,0.003713,-0.003750,0.249972,0,0);}
.m2c_c01210{transform:matrix(0.247560,0.002228,-0.002250,0.249990,0,0);-ms-transform:matrix(0.247560,0.002228,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.247560,0.002228,-0.002250,0.249990,0,0);}
.md0_c01210{transform:matrix(0.247714,0.003220,-0.003250,0.249979,0,0);-ms-transform:matrix(0.247714,0.003220,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.247714,0.003220,-0.003250,0.249979,0,0);}
.mef_c01210{transform:matrix(0.248224,0.003227,-0.003250,0.249979,0,0);-ms-transform:matrix(0.248224,0.003227,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.248224,0.003227,-0.003250,0.249979,0,0);}
.m131_c01210{transform:matrix(0.248427,0.002981,-0.003000,0.249982,0,0);-ms-transform:matrix(0.248427,0.002981,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.248427,0.002981,-0.003000,0.249982,0,0);}
.m44_c01210{transform:matrix(0.248603,0.002486,-0.002500,0.249988,0,0);-ms-transform:matrix(0.248603,0.002486,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.248603,0.002486,-0.002500,0.249988,0,0);}
.mf2_c01210{transform:matrix(0.248904,0.003236,-0.003250,0.249979,0,0);-ms-transform:matrix(0.248904,0.003236,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.248904,0.003236,-0.003250,0.249979,0,0);}
.md7_c01210{transform:matrix(0.248984,0.003237,-0.003250,0.249979,0,0);-ms-transform:matrix(0.248984,0.003237,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.248984,0.003237,-0.003250,0.249979,0,0);}
.m5a_c01210{transform:matrix(0.249133,0.002491,-0.002500,0.249988,0,0);-ms-transform:matrix(0.249133,0.002491,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.249133,0.002491,-0.002500,0.249988,0,0);}
.m1f_c01210{transform:matrix(0.249695,0.002247,-0.002250,0.249990,0,0);-ms-transform:matrix(0.249695,0.002247,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.249695,0.002247,-0.002250,0.249990,0,0);}
.mcc_c01210{transform:matrix(0.249719,0.003246,-0.003250,0.249979,0,0);-ms-transform:matrix(0.249719,0.003246,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.249719,0.003246,-0.003250,0.249979,0,0);}
.mf6_c01210{transform:matrix(0.249739,0.003247,-0.003250,0.249979,0,0);-ms-transform:matrix(0.249739,0.003247,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.249739,0.003247,-0.003250,0.249979,0,0);}
.m42_c01210{transform:matrix(0.249892,0.002999,-0.003000,0.249982,0,0);-ms-transform:matrix(0.249892,0.002999,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.249892,0.002999,-0.003000,0.249982,0,0);}
.me4_c01210{transform:matrix(0.249924,0.003249,-0.003250,0.249979,0,0);-ms-transform:matrix(0.249924,0.003249,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.249924,0.003249,-0.003250,0.249979,0,0);}
.m123_c01210{transform:matrix(0.249952,0.002999,-0.003000,0.249982,0,0);-ms-transform:matrix(0.249952,0.002999,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.249952,0.002999,-0.003000,0.249982,0,0);}
.m70_c01210{transform:matrix(0.250697,0.003760,-0.003750,0.249972,0,0);-ms-transform:matrix(0.250697,0.003760,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.250697,0.003760,-0.003750,0.249972,0,0);}
.m4f_c01210{transform:matrix(0.251012,0.002510,-0.002500,0.249988,0,0);-ms-transform:matrix(0.251012,0.002510,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.251012,0.002510,-0.002500,0.249988,0,0);}
.m25_c01210{transform:matrix(0.251065,0.002260,-0.002250,0.249990,0,0);-ms-transform:matrix(0.251065,0.002260,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.251065,0.002260,-0.002250,0.249990,0,0);}
.m177_c01210{transform:matrix(0.251120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251120,0.000000,0.000000,0.250000,0,0);}
.m6d_c01210{transform:matrix(0.251132,0.003767,-0.003750,0.249972,0,0);-ms-transform:matrix(0.251132,0.003767,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.251132,0.003767,-0.003750,0.249972,0,0);}
.m10_c01210{transform:matrix(0.251270,0.002261,-0.002250,0.249990,0,0);-ms-transform:matrix(0.251270,0.002261,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.251270,0.002261,-0.002250,0.249990,0,0);}
.m54_c01210{transform:matrix(0.251392,0.002514,-0.002500,0.249988,0,0);-ms-transform:matrix(0.251392,0.002514,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.251392,0.002514,-0.002500,0.249988,0,0);}
.mbb_c01210{transform:matrix(0.251567,0.003774,-0.003750,0.249972,0,0);-ms-transform:matrix(0.251567,0.003774,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.251567,0.003774,-0.003750,0.249972,0,0);}
.m12a_c01210{transform:matrix(0.251677,0.003020,-0.003000,0.249982,0,0);-ms-transform:matrix(0.251677,0.003020,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.251677,0.003020,-0.003000,0.249982,0,0);}
.m170_c01210{transform:matrix(0.251699,0.003272,-0.003250,0.249979,0,0);-ms-transform:matrix(0.251699,0.003272,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.251699,0.003272,-0.003250,0.249979,0,0);}
.m50_c01210{transform:matrix(0.251702,0.002517,-0.002500,0.249988,0,0);-ms-transform:matrix(0.251702,0.002517,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.251702,0.002517,-0.002500,0.249988,0,0);}
.mb9_c01210{transform:matrix(0.251867,0.003778,-0.003750,0.249972,0,0);-ms-transform:matrix(0.251867,0.003778,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.251867,0.003778,-0.003750,0.249972,0,0);}
.m14b_c01210{transform:matrix(0.252027,0.003024,-0.003000,0.249982,0,0);-ms-transform:matrix(0.252027,0.003024,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.252027,0.003024,-0.003000,0.249982,0,0);}
.m36_c01210{transform:matrix(0.252125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252125,0.000000,0.000000,0.250000,0,0);}
.mba_c01210{transform:matrix(0.252362,0.003785,-0.003750,0.249972,0,0);-ms-transform:matrix(0.252362,0.003785,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.252362,0.003785,-0.003750,0.249972,0,0);}
.md3_c01210{transform:matrix(0.252584,0.003284,-0.003250,0.249979,0,0);-ms-transform:matrix(0.252584,0.003284,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.252584,0.003284,-0.003250,0.249979,0,0);}
.me6_c01210{transform:matrix(0.252609,0.003284,-0.003250,0.249979,0,0);-ms-transform:matrix(0.252609,0.003284,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.252609,0.003284,-0.003250,0.249979,0,0);}
.mdb_c01210{transform:matrix(0.252669,0.003285,-0.003250,0.249979,0,0);-ms-transform:matrix(0.252669,0.003285,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.252669,0.003285,-0.003250,0.249979,0,0);}
.m93_c01210{transform:matrix(0.253007,0.003795,-0.003750,0.249972,0,0);-ms-transform:matrix(0.253007,0.003795,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.253007,0.003795,-0.003750,0.249972,0,0);}
.m102_c01210{transform:matrix(0.253479,0.003295,-0.003250,0.249979,0,0);-ms-transform:matrix(0.253479,0.003295,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.253479,0.003295,-0.003250,0.249979,0,0);}
.m107_c01210{transform:matrix(0.253764,0.003299,-0.003250,0.249979,0,0);-ms-transform:matrix(0.253764,0.003299,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.253764,0.003299,-0.003250,0.249979,0,0);}
.m8c_c01210{transform:matrix(0.253816,0.003807,-0.003750,0.249972,0,0);-ms-transform:matrix(0.253816,0.003807,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.253816,0.003807,-0.003750,0.249972,0,0);}
.m11d_c01210{transform:matrix(0.253997,0.003048,-0.003000,0.249982,0,0);-ms-transform:matrix(0.253997,0.003048,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.253997,0.003048,-0.003000,0.249982,0,0);}
.m172_c01210{transform:matrix(0.254029,0.003302,-0.003250,0.249979,0,0);-ms-transform:matrix(0.254029,0.003302,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.254029,0.003302,-0.003250,0.249979,0,0);}
.m120_c01210{transform:matrix(0.254067,0.003049,-0.003000,0.249982,0,0);-ms-transform:matrix(0.254067,0.003049,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.254067,0.003049,-0.003000,0.249982,0,0);}
.m14_c01210{transform:matrix(0.254085,0.002287,-0.002250,0.249990,0,0);-ms-transform:matrix(0.254085,0.002287,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.254085,0.002287,-0.002250,0.249990,0,0);}
.mb5_c01210{transform:matrix(0.254541,0.003818,-0.003750,0.249972,0,0);-ms-transform:matrix(0.254541,0.003818,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.254541,0.003818,-0.003750,0.249972,0,0);}
.m7e_c01210{transform:matrix(0.254551,0.003818,-0.003750,0.249972,0,0);-ms-transform:matrix(0.254551,0.003818,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.254551,0.003818,-0.003750,0.249972,0,0);}
.mbf_c01210{transform:matrix(0.255516,0.003833,-0.003750,0.249972,0,0);-ms-transform:matrix(0.255516,0.003833,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.255516,0.003833,-0.003750,0.249972,0,0);}
.m12d_c01210{transform:matrix(0.255562,0.003067,-0.003000,0.249982,0,0);-ms-transform:matrix(0.255562,0.003067,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.255562,0.003067,-0.003000,0.249982,0,0);}
.m6b_c01210{transform:matrix(0.255826,0.003837,-0.003750,0.249972,0,0);-ms-transform:matrix(0.255826,0.003837,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.255826,0.003837,-0.003750,0.249972,0,0);}
.m28_c01210{transform:matrix(0.255935,0.002303,-0.002250,0.249990,0,0);-ms-transform:matrix(0.255935,0.002303,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.255935,0.002303,-0.002250,0.249990,0,0);}
.m14d_c01210{transform:matrix(0.256052,0.003073,-0.003000,0.249982,0,0);-ms-transform:matrix(0.256052,0.003073,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.256052,0.003073,-0.003000,0.249982,0,0);}
.med_c01210{transform:matrix(0.256123,0.003330,-0.003250,0.249979,0,0);-ms-transform:matrix(0.256123,0.003330,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.256123,0.003330,-0.003250,0.249979,0,0);}
.m95_c01210{transform:matrix(0.256141,0.003842,-0.003750,0.249972,0,0);-ms-transform:matrix(0.256141,0.003842,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.256141,0.003842,-0.003750,0.249972,0,0);}
.mdf_c01210{transform:matrix(0.256333,0.003332,-0.003250,0.249979,0,0);-ms-transform:matrix(0.256333,0.003332,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.256333,0.003332,-0.003250,0.249979,0,0);}
.m49_c01210{transform:matrix(0.256427,0.002564,-0.002500,0.249988,0,0);-ms-transform:matrix(0.256427,0.002564,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.256427,0.002564,-0.002500,0.249988,0,0);}
.m4a_c01210{transform:matrix(0.256937,0.002569,-0.002500,0.249988,0,0);-ms-transform:matrix(0.256937,0.002569,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.256937,0.002569,-0.002500,0.249988,0,0);}
.m91_c01210{transform:matrix(0.257071,0.003856,-0.003750,0.249972,0,0);-ms-transform:matrix(0.257071,0.003856,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.257071,0.003856,-0.003750,0.249972,0,0);}
.m13_c01210{transform:matrix(0.257560,0.002318,-0.002250,0.249990,0,0);-ms-transform:matrix(0.257560,0.002318,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.257560,0.002318,-0.002250,0.249990,0,0);}
.m106_c01210{transform:matrix(0.258023,0.003354,-0.003250,0.249979,0,0);-ms-transform:matrix(0.258023,0.003354,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.258023,0.003354,-0.003250,0.249979,0,0);}
.m97_c01210{transform:matrix(0.258286,0.003874,-0.003750,0.249972,0,0);-ms-transform:matrix(0.258286,0.003874,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.258286,0.003874,-0.003750,0.249972,0,0);}
.m112_c01210{transform:matrix(0.258468,0.003360,-0.003250,0.249979,0,0);-ms-transform:matrix(0.258468,0.003360,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.258468,0.003360,-0.003250,0.249979,0,0);}
.m166_c01210{transform:matrix(0.258643,0.005432,-0.005249,0.249945,0,0);-ms-transform:matrix(0.258643,0.005432,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.258643,0.005432,-0.005249,0.249945,0,0);}
.m173_c01210{transform:matrix(0.258788,0.003364,-0.003250,0.249979,0,0);-ms-transform:matrix(0.258788,0.003364,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.258788,0.003364,-0.003250,0.249979,0,0);}
.m84_c01210{transform:matrix(0.259731,0.003896,-0.003750,0.249972,0,0);-ms-transform:matrix(0.259731,0.003896,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.259731,0.003896,-0.003750,0.249972,0,0);}
.m16f_c01210{transform:matrix(0.260003,0.003380,-0.003250,0.249979,0,0);-ms-transform:matrix(0.260003,0.003380,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.260003,0.003380,-0.003250,0.249979,0,0);}
.m77_c01210{transform:matrix(0.260306,0.003905,-0.003750,0.249972,0,0);-ms-transform:matrix(0.260306,0.003905,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.260306,0.003905,-0.003750,0.249972,0,0);}
.m83_c01210{transform:matrix(0.260386,0.003906,-0.003750,0.249972,0,0);-ms-transform:matrix(0.260386,0.003906,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.260386,0.003906,-0.003750,0.249972,0,0);}
.m62_c01210{transform:matrix(0.260456,0.003907,-0.003750,0.249972,0,0);-ms-transform:matrix(0.260456,0.003907,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.260456,0.003907,-0.003750,0.249972,0,0);}
.m7f_c01210{transform:matrix(0.260706,0.003911,-0.003750,0.249972,0,0);-ms-transform:matrix(0.260706,0.003911,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.260706,0.003911,-0.003750,0.249972,0,0);}
.m157_c01210{transform:matrix(0.261476,0.003138,-0.003000,0.249982,0,0);-ms-transform:matrix(0.261476,0.003138,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.261476,0.003138,-0.003000,0.249982,0,0);}
.m19_c01210{transform:matrix(0.261774,0.002356,-0.002250,0.249990,0,0);-ms-transform:matrix(0.261774,0.002356,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.261774,0.002356,-0.002250,0.249990,0,0);}
.ma8_c01210{transform:matrix(0.261816,0.003927,-0.003750,0.249972,0,0);-ms-transform:matrix(0.261816,0.003927,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.261816,0.003927,-0.003750,0.249972,0,0);}
.mea_c01210{transform:matrix(0.261828,0.003404,-0.003250,0.249979,0,0);-ms-transform:matrix(0.261828,0.003404,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.261828,0.003404,-0.003250,0.249979,0,0);}
.m108_c01210{transform:matrix(0.261943,0.003405,-0.003250,0.249979,0,0);-ms-transform:matrix(0.261943,0.003405,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.261943,0.003405,-0.003250,0.249979,0,0);}
.m128_c01210{transform:matrix(0.263251,0.003159,-0.003000,0.249982,0,0);-ms-transform:matrix(0.263251,0.003159,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.263251,0.003159,-0.003000,0.249982,0,0);}
.mc9_c01210{transform:matrix(0.264191,0.003170,-0.003000,0.249982,0,0);-ms-transform:matrix(0.264191,0.003170,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.264191,0.003170,-0.003000,0.249982,0,0);}
.m63_c01210{transform:matrix(0.264645,0.003970,-0.003750,0.249972,0,0);-ms-transform:matrix(0.264645,0.003970,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.264645,0.003970,-0.003750,0.249972,0,0);}
.me8_c01210{transform:matrix(0.264968,0.003445,-0.003250,0.249979,0,0);-ms-transform:matrix(0.264968,0.003445,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.264968,0.003445,-0.003250,0.249979,0,0);}
.m2a_c01210{transform:matrix(0.266119,0.002395,-0.002250,0.249990,0,0);-ms-transform:matrix(0.266119,0.002395,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.266119,0.002395,-0.002250,0.249990,0,0);}
.mf1_c01210{transform:matrix(0.266357,0.003463,-0.003250,0.249979,0,0);-ms-transform:matrix(0.266357,0.003463,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.266357,0.003463,-0.003250,0.249979,0,0);}
.m8a_c01210{transform:matrix(0.266535,0.003998,-0.003750,0.249972,0,0);-ms-transform:matrix(0.266535,0.003998,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.266535,0.003998,-0.003750,0.249972,0,0);}
.m171_c01210{transform:matrix(0.266977,0.003471,-0.003250,0.249979,0,0);-ms-transform:matrix(0.266977,0.003471,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.266977,0.003471,-0.003250,0.249979,0,0);}
.m11_c01210{transform:matrix(0.267029,0.002403,-0.002250,0.249990,0,0);-ms-transform:matrix(0.267029,0.002403,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.267029,0.002403,-0.002250,0.249990,0,0);}
.m116_c01210{transform:matrix(0.267042,0.003472,-0.003250,0.249979,0,0);-ms-transform:matrix(0.267042,0.003472,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.267042,0.003472,-0.003250,0.249979,0,0);}
.mf_c01210{transform:matrix(0.267144,0.002404,-0.002250,0.249990,0,0);-ms-transform:matrix(0.267144,0.002404,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.267144,0.002404,-0.002250,0.249990,0,0);}
.m12c_c01210{transform:matrix(0.267161,0.003206,-0.003000,0.249982,0,0);-ms-transform:matrix(0.267161,0.003206,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.267161,0.003206,-0.003000,0.249982,0,0);}
.m60_c01210{transform:matrix(0.267410,0.004011,-0.003750,0.249972,0,0);-ms-transform:matrix(0.267410,0.004011,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.267410,0.004011,-0.003750,0.249972,0,0);}
.m8d_c01210{transform:matrix(0.267630,0.004014,-0.003750,0.249972,0,0);-ms-transform:matrix(0.267630,0.004014,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.267630,0.004014,-0.003750,0.249972,0,0);}
.mf3_c01210{transform:matrix(0.268027,0.003484,-0.003250,0.249979,0,0);-ms-transform:matrix(0.268027,0.003484,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.268027,0.003484,-0.003250,0.249979,0,0);}
.mb6_c01210{transform:matrix(0.268590,0.004029,-0.003750,0.249972,0,0);-ms-transform:matrix(0.268590,0.004029,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.268590,0.004029,-0.003750,0.249972,0,0);}
.m64_c01210{transform:matrix(0.269240,0.004039,-0.003750,0.249972,0,0);-ms-transform:matrix(0.269240,0.004039,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.269240,0.004039,-0.003750,0.249972,0,0);}
.mbe_c01210{transform:matrix(0.269590,0.004044,-0.003750,0.249972,0,0);-ms-transform:matrix(0.269590,0.004044,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.269590,0.004044,-0.003750,0.249972,0,0);}
.m10d_c01210{transform:matrix(0.269727,0.003506,-0.003250,0.249979,0,0);-ms-transform:matrix(0.269727,0.003506,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.269727,0.003506,-0.003250,0.249979,0,0);}
.m87_c01210{transform:matrix(0.270050,0.004051,-0.003750,0.249972,0,0);-ms-transform:matrix(0.270050,0.004051,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.270050,0.004051,-0.003750,0.249972,0,0);}
.m9a_c01210{transform:matrix(0.270725,0.004061,-0.003750,0.249972,0,0);-ms-transform:matrix(0.270725,0.004061,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.270725,0.004061,-0.003750,0.249972,0,0);}
.m61_c01210{transform:matrix(0.271179,0.004068,-0.003750,0.249972,0,0);-ms-transform:matrix(0.271179,0.004068,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.271179,0.004068,-0.003750,0.249972,0,0);}
.m85_c01210{transform:matrix(0.271984,0.004080,-0.003750,0.249972,0,0);-ms-transform:matrix(0.271984,0.004080,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.271984,0.004080,-0.003750,0.249972,0,0);}
.m105_c01210{transform:matrix(0.272177,0.003538,-0.003250,0.249979,0,0);-ms-transform:matrix(0.272177,0.003538,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.272177,0.003538,-0.003250,0.249979,0,0);}
.m119_c01210{transform:matrix(0.272307,0.003540,-0.003250,0.249979,0,0);-ms-transform:matrix(0.272307,0.003540,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.272307,0.003540,-0.003250,0.249979,0,0);}
.m153_c01210{transform:matrix(0.272350,0.003268,-0.003000,0.249982,0,0);-ms-transform:matrix(0.272350,0.003268,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.272350,0.003268,-0.003000,0.249982,0,0);}
.m16_c01210{transform:matrix(0.273104,0.002458,-0.002250,0.249990,0,0);-ms-transform:matrix(0.273104,0.002458,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.273104,0.002458,-0.002250,0.249990,0,0);}
.meb_c01210{transform:matrix(0.273107,0.003550,-0.003250,0.249979,0,0);-ms-transform:matrix(0.273107,0.003550,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.273107,0.003550,-0.003250,0.249979,0,0);}
.m117_c01210{transform:matrix(0.273867,0.003560,-0.003250,0.249979,0,0);-ms-transform:matrix(0.273867,0.003560,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.273867,0.003560,-0.003250,0.249979,0,0);}
.mca_c01210{transform:matrix(0.274245,0.003291,-0.003000,0.249982,0,0);-ms-transform:matrix(0.274245,0.003291,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.274245,0.003291,-0.003000,0.249982,0,0);}
.m88_c01210{transform:matrix(0.274559,0.004118,-0.003750,0.249972,0,0);-ms-transform:matrix(0.274559,0.004118,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.274559,0.004118,-0.003750,0.249972,0,0);}
.m12b_c01210{transform:matrix(0.275105,0.003301,-0.003000,0.249982,0,0);-ms-transform:matrix(0.275105,0.003301,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.275105,0.003301,-0.003000,0.249982,0,0);}
.m92_c01210{transform:matrix(0.275209,0.004128,-0.003750,0.249972,0,0);-ms-transform:matrix(0.275209,0.004128,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.275209,0.004128,-0.003750,0.249972,0,0);}
.mab_c01210{transform:matrix(0.275364,0.004130,-0.003750,0.249972,0,0);-ms-transform:matrix(0.275364,0.004130,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.275364,0.004130,-0.003750,0.249972,0,0);}
.m109_c01210{transform:matrix(0.277847,0.003612,-0.003250,0.249979,0,0);-ms-transform:matrix(0.277847,0.003612,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.277847,0.003612,-0.003250,0.249979,0,0);}
.m18_c01210{transform:matrix(0.278024,0.002502,-0.002250,0.249990,0,0);-ms-transform:matrix(0.278024,0.002502,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.278024,0.002502,-0.002250,0.249990,0,0);}
.m10a_c01210{transform:matrix(0.278411,0.003619,-0.003250,0.249979,0,0);-ms-transform:matrix(0.278411,0.003619,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.278411,0.003619,-0.003250,0.249979,0,0);}
.m12_c01210{transform:matrix(0.280429,0.002524,-0.002250,0.249990,0,0);-ms-transform:matrix(0.280429,0.002524,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.280429,0.002524,-0.002250,0.249990,0,0);}
.m96_c01210{transform:matrix(0.280448,0.004207,-0.003750,0.249972,0,0);-ms-transform:matrix(0.280448,0.004207,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.280448,0.004207,-0.003750,0.249972,0,0);}
.m115_c01210{transform:matrix(0.282126,0.003668,-0.003250,0.249979,0,0);-ms-transform:matrix(0.282126,0.003668,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.282126,0.003668,-0.003250,0.249979,0,0);}
.m94_c01210{transform:matrix(0.282568,0.004239,-0.003750,0.249972,0,0);-ms-transform:matrix(0.282568,0.004239,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.282568,0.004239,-0.003750,0.249972,0,0);}
.m12e_c01210{transform:matrix(0.282585,0.003391,-0.003000,0.249982,0,0);-ms-transform:matrix(0.282585,0.003391,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.282585,0.003391,-0.003000,0.249982,0,0);}
.m130_c01210{transform:matrix(0.284015,0.003408,-0.003000,0.249982,0,0);-ms-transform:matrix(0.284015,0.003408,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.284015,0.003408,-0.003000,0.249982,0,0);}
.m99_c01210{transform:matrix(0.284508,0.004268,-0.003750,0.249972,0,0);-ms-transform:matrix(0.284508,0.004268,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.284508,0.004268,-0.003750,0.249972,0,0);}
.m10f_c01210{transform:matrix(0.284906,0.003704,-0.003250,0.249979,0,0);-ms-transform:matrix(0.284906,0.003704,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.284906,0.003704,-0.003250,0.249979,0,0);}
.me9_c01210{transform:matrix(0.287611,0.003739,-0.003250,0.249979,0,0);-ms-transform:matrix(0.287611,0.003739,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.287611,0.003739,-0.003250,0.249979,0,0);}
.m13c_c01210{transform:matrix(0.293239,0.003519,-0.003000,0.249982,0,0);-ms-transform:matrix(0.293239,0.003519,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.293239,0.003519,-0.003000,0.249982,0,0);}
.me_c01210{transform:matrix(0.303850,0.004254,-0.003500,0.249976,0,0);-ms-transform:matrix(0.303850,0.004254,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.303850,0.004254,-0.003500,0.249976,0,0);}
.m1_c01210{transform:matrix(0.312945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312945,0.000000,0.000000,0.250000,0,0);}
.m67_c01210{transform:matrix(0.335642,0.005035,-0.003750,0.249972,0,0);-ms-transform:matrix(0.335642,0.005035,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.335642,0.005035,-0.003750,0.249972,0,0);}
.mac_c01210{transform:matrix(0.338737,0.005081,-0.003750,0.249972,0,0);-ms-transform:matrix(0.338737,0.005081,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.338737,0.005081,-0.003750,0.249972,0,0);}
.m169_c01210{transform:matrix(0.341706,0.004442,-0.003250,0.249979,0,0);-ms-transform:matrix(0.341706,0.004442,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.341706,0.004442,-0.003250,0.249979,0,0);}
.m74_c01210{transform:matrix(0.345631,0.005184,-0.003750,0.249972,0,0);-ms-transform:matrix(0.345631,0.005184,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.345631,0.005184,-0.003750,0.249972,0,0);}
.m167_c01210{transform:matrix(0.346624,0.007279,-0.005249,0.249945,0,0);-ms-transform:matrix(0.346624,0.007279,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.346624,0.007279,-0.005249,0.249945,0,0);}
.m168_c01210{transform:matrix(0.357846,0.007515,-0.005249,0.249945,0,0);-ms-transform:matrix(0.357846,0.007515,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.357846,0.007515,-0.005249,0.249945,0,0);}
.md_c01210{transform:matrix(0.366669,0.005133,-0.003500,0.249976,0,0);-ms-transform:matrix(0.366669,0.005133,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.366669,0.005133,-0.003500,0.249976,0,0);}
.m69_c01210{transform:matrix(0.392731,0.005891,-0.003750,0.249972,0,0);-ms-transform:matrix(0.392731,0.005891,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.392731,0.005891,-0.003750,0.249972,0,0);}
.m165_c01210{transform:matrix(0.406510,0.008537,-0.005249,0.249945,0,0);-ms-transform:matrix(0.406510,0.008537,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.406510,0.008537,-0.005249,0.249945,0,0);}
.m164_c01210{transform:matrix(0.637140,0.013380,-0.005249,0.249945,0,0);-ms-transform:matrix(0.637140,0.013380,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.637140,0.013380,-0.005249,0.249945,0,0);}
.v0_c01210{vertical-align:0.000000px;}
.ls0_c01210{letter-spacing:0.000000px;}
.sc__c01210{text-shadow:none;}
.sc0_c01210{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__c01210{-webkit-text-stroke:0px transparent;}
.sc0_c01210{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01210{word-spacing:0.000000px;}
.fc0_c01210{color:transparent;}
.fs13_c01210{font-size:54.011906px;}
.fs0_c01210{font-size:60.000000px;}
.fs14_c01210{font-size:72.000000px;}
.fs2_c01210{font-size:72.002916px;}
.fs10_c01210{font-size:72.005184px;}
.fsd_c01210{font-size:72.006084px;}
.fs8_c01210{font-size:72.008100px;}
.fs4_c01210{font-size:78.000000px;}
.fs3_c01210{font-size:78.003159px;}
.fs6_c01210{font-size:78.003900px;}
.fsf_c01210{font-size:78.005616px;}
.fsc_c01210{font-size:78.006591px;}
.fs9_c01210{font-size:78.008775px;}
.fs7_c01210{font-size:84.004200px;}
.fsb_c01210{font-size:84.006048px;}
.fse_c01210{font-size:84.007098px;}
.fs1_c01210{font-size:84.008232px;}
.fs15_c01210{font-size:90.000000px;}
.fsa_c01210{font-size:90.010124px;}
.fs12_c01210{font-size:90.019843px;}
.fs5_c01210{font-size:96.006912px;}
.fs11_c01210{font-size:102.007344px;}
.y0_c01210{bottom:0.000000px;}
.y174_c01210{bottom:53.281576px;}
.y173_c01210{bottom:53.990714px;}
.y172_c01210{bottom:54.857878px;}
.y171_c01210{bottom:55.293119px;}
.y170_c01210{bottom:55.559859px;}
.y16f_c01210{bottom:56.009373px;}
.y16e_c01210{bottom:56.420141px;}
.y16d_c01210{bottom:57.301268px;}
.y16c_c01210{bottom:57.701193px;}
.y16b_c01210{bottom:58.431020px;}
.y16a_c01210{bottom:59.133000px;}
.y166_c01210{bottom:86.535904px;}
.y165_c01210{bottom:86.536132px;}
.y168_c01210{bottom:86.536158px;}
.y167_c01210{bottom:86.536182px;}
.y169_c01210{bottom:86.536705px;}
.y164_c01210{bottom:99.981909px;}
.y163_c01210{bottom:100.697494px;}
.y162_c01210{bottom:102.308373px;}
.y161_c01210{bottom:103.024053px;}
.y160_c01210{bottom:103.936009px;}
.y15f_c01210{bottom:104.644948px;}
.y15e_c01210{bottom:106.937266px;}
.y15d_c01210{bottom:109.387368px;}
.y15c_c01210{bottom:109.926490px;}
.y15b_c01210{bottom:112.251033px;}
.y15a_c01210{bottom:112.724604px;}
.y159_c01210{bottom:113.404500px;}
.y158_c01210{bottom:136.304412px;}
.y157_c01210{bottom:137.515284px;}
.y156_c01210{bottom:138.721182px;}
.y155_c01210{bottom:139.120434px;}
.y154_c01210{bottom:140.637624px;}
.y153_c01210{bottom:141.078834px;}
.y152_c01210{bottom:141.890112px;}
.y151_c01210{bottom:142.289310px;}
.y150_c01210{bottom:143.282526px;}
.y14f_c01210{bottom:143.679684px;}
.y14e_c01210{bottom:144.666480px;}
.y14d_c01210{bottom:145.058502px;}
.y14c_c01210{bottom:146.606802px;}
.y14b_c01210{bottom:172.591890px;}
.y14a_c01210{bottom:173.276274px;}
.y149_c01210{bottom:173.783472px;}
.y148_c01210{bottom:174.443862px;}
.y147_c01210{bottom:175.938066px;}
.y146_c01210{bottom:176.598708px;}
.y178_c01210{bottom:176.712000px;}
.y145_c01210{bottom:177.580314px;}
.y144_c01210{bottom:178.089726px;}
.y143_c01210{bottom:179.223372px;}
.y142_c01210{bottom:179.578758px;}
.y141_c01210{bottom:180.719322px;}
.y140_c01210{bottom:181.214664px;}
.y13f_c01210{bottom:182.514474px;}
.y13e_c01210{bottom:210.349236px;}
.y13d_c01210{bottom:210.961986px;}
.y13c_c01210{bottom:212.040462px;}
.y177_c01210{bottom:212.622000px;}
.y13b_c01210{bottom:213.041238px;}
.y13a_c01210{bottom:214.250652px;}
.y139_c01210{bottom:214.848378px;}
.y138_c01210{bottom:215.453694px;}
.y137_c01210{bottom:215.934570px;}
.y136_c01210{bottom:216.894630px;}
.y135_c01210{bottom:217.615374px;}
.y134_c01210{bottom:243.705090px;}
.y133_c01210{bottom:244.367892px;}
.y132_c01210{bottom:245.203890px;}
.y131_c01210{bottom:247.519926px;}
.y130_c01210{bottom:248.166828px;}
.y12f_c01210{bottom:250.259838px;}
.y12e_c01210{bottom:251.094918px;}
.y12d_c01210{bottom:252.548256px;}
.y12c_c01210{bottom:254.022972px;}
.y12b_c01210{bottom:254.845722px;}
.y12a_c01210{bottom:255.460698px;}
.y129_c01210{bottom:256.499856px;}
.y128_c01210{bottom:281.235858px;}
.y127_c01210{bottom:281.497848px;}
.y126_c01210{bottom:282.830442px;}
.y125_c01210{bottom:283.358454px;}
.y124_c01210{bottom:284.292168px;}
.y176_c01210{bottom:284.718000px;}
.y123_c01210{bottom:284.830080px;}
.y122_c01210{bottom:285.468396px;}
.y121_c01210{bottom:286.670652px;}
.y120_c01210{bottom:287.202012px;}
.y11f_c01210{bottom:287.600586px;}
.y11e_c01210{bottom:288.372966px;}
.y11d_c01210{bottom:288.776490px;}
.y11c_c01210{bottom:289.171500px;}
.y11b_c01210{bottom:318.468751px;}
.y11a_c01210{bottom:319.095732px;}
.y119_c01210{bottom:319.452529px;}
.y118_c01210{bottom:320.305575px;}
.y117_c01210{bottom:320.542660px;}
.y116_c01210{bottom:321.763836px;}
.y115_c01210{bottom:322.351926px;}
.y114_c01210{bottom:322.735833px;}
.y113_c01210{bottom:323.326810px;}
.y112_c01210{bottom:323.698255px;}
.y111_c01210{bottom:324.060417px;}
.y110_c01210{bottom:325.606014px;}
.y10f_c01210{bottom:352.269562px;}
.y10e_c01210{bottom:353.133724px;}
.y10d_c01210{bottom:353.569335px;}
.y10c_c01210{bottom:354.007636px;}
.y10b_c01210{bottom:355.443889px;}
.y175_c01210{bottom:356.130000px;}
.y10a_c01210{bottom:356.732040px;}
.y109_c01210{bottom:357.308050px;}
.y108_c01210{bottom:357.732994px;}
.y107_c01210{bottom:358.449015px;}
.y106_c01210{bottom:359.147037px;}
.y105_c01210{bottom:359.726596px;}
.y104_c01210{bottom:360.003223px;}
.y103_c01210{bottom:360.709045px;}
.y102_c01210{bottom:385.191208px;}
.y101_c01210{bottom:386.541325px;}
.y100_c01210{bottom:387.039055px;}
.yff_c01210{bottom:387.687382px;}
.yfe_c01210{bottom:388.206403px;}
.yfd_c01210{bottom:389.522517px;}
.yfc_c01210{bottom:390.019721px;}
.yfb_c01210{bottom:390.522578px;}
.yfa_c01210{bottom:391.178919px;}
.yf9_c01210{bottom:391.980048px;}
.yf8_c01210{bottom:392.499069px;}
.yf7_c01210{bottom:393.146967px;}
.yf6_c01210{bottom:394.632162px;}
.yf5_c01210{bottom:395.272691px;}
.yf4_c01210{bottom:422.817000px;}
.yf3_c01210{bottom:423.952023px;}
.yf2_c01210{bottom:424.531075px;}
.yf1_c01210{bottom:425.834188px;}
.yf0_c01210{bottom:426.572791px;}
.yef_c01210{bottom:427.152312px;}
.yee_c01210{bottom:427.899259px;}
.yed_c01210{bottom:428.817747px;}
.yec_c01210{bottom:429.202002px;}
.yeb_c01210{bottom:430.525974px;}
.yea_c01210{bottom:431.462592px;}
.ye9_c01210{bottom:432.209071px;}
.ye8_c01210{bottom:433.324892px;}
.ye7_c01210{bottom:433.682281px;}
.ye6_c01210{bottom:434.426382px;}
.ye5_c01210{bottom:458.920057px;}
.ye4_c01210{bottom:459.920680px;}
.ye3_c01210{bottom:460.373158px;}
.ye2_c01210{bottom:461.089861px;}
.ye1_c01210{bottom:461.651052px;}
.ye0_c01210{bottom:461.949324px;}
.ydf_c01210{bottom:463.230864px;}
.yde_c01210{bottom:463.813933px;}
.ydd_c01210{bottom:464.242309px;}
.ydc_c01210{bottom:464.804319px;}
.ydb_c01210{bottom:466.074646px;}
.yda_c01210{bottom:466.527300px;}
.yd9_c01210{bottom:466.948285px;}
.yd8_c01210{bottom:467.368900px;}
.yd7_c01210{bottom:494.468971px;}
.yd6_c01210{bottom:494.756850px;}
.yd5_c01210{bottom:495.603423px;}
.yd4_c01210{bottom:496.056408px;}
.yd3_c01210{bottom:497.060404px;}
.yd2_c01210{bottom:497.632535px;}
.yd1_c01210{bottom:498.057303px;}
.yd0_c01210{bottom:498.924390px;}
.ycf_c01210{bottom:499.356256px;}
.yce_c01210{bottom:499.769988px;}
.ycd_c01210{bottom:500.342215px;}
.ycc_c01210{bottom:501.364171px;}
.ycb_c01210{bottom:502.473000px;}
.yca_c01210{bottom:530.985642px;}
.yc9_c01210{bottom:531.624336px;}
.yc8_c01210{bottom:531.802176px;}
.yc7_c01210{bottom:533.124852px;}
.yc6_c01210{bottom:533.928354px;}
.yc5_c01210{bottom:534.462990px;}
.yc4_c01210{bottom:534.848604px;}
.yc3_c01210{bottom:535.778646px;}
.yc2_c01210{bottom:537.084582px;}
.yc1_c01210{bottom:537.362736px;}
.yc0_c01210{bottom:538.921500px;}
.ybf_c01210{bottom:566.284643px;}
.ybe_c01210{bottom:567.240802px;}
.ybd_c01210{bottom:567.655770px;}
.ybc_c01210{bottom:568.168463px;}
.ybb_c01210{bottom:568.719007px;}
.yba_c01210{bottom:569.111557px;}
.yb9_c01210{bottom:569.772600px;}
.yb8_c01210{bottom:570.174413px;}
.yb7_c01210{bottom:570.559845px;}
.yb6_c01210{bottom:571.094797px;}
.yb5_c01210{bottom:573.450390px;}
.yb4_c01210{bottom:573.993457px;}
.yb3_c01210{bottom:602.519962px;}
.yb2_c01210{bottom:603.208687px;}
.yb1_c01210{bottom:604.209352px;}
.yb0_c01210{bottom:604.691190px;}
.yaf_c01210{bottom:605.675542px;}
.yae_c01210{bottom:606.186382px;}
.yad_c01210{bottom:607.352220px;}
.yac_c01210{bottom:607.842405px;}
.yab_c01210{bottom:608.167282px;}
.yaa_c01210{bottom:609.652372px;}
.ya9_c01210{bottom:611.293297px;}
.ya8_c01210{bottom:611.799120px;}
.ya7_c01210{bottom:634.635435px;}
.ya6_c01210{bottom:634.939365px;}
.ya5_c01210{bottom:636.009982px;}
.ya4_c01210{bottom:636.498270px;}
.ya3_c01210{bottom:637.121745px;}
.ya2_c01210{bottom:637.582845px;}
.ya1_c01210{bottom:639.279840px;}
.ya0_c01210{bottom:639.578025px;}
.y9f_c01210{bottom:640.795957px;}
.y9e_c01210{bottom:641.593822px;}
.y9d_c01210{bottom:641.896170px;}
.y9c_c01210{bottom:642.818955px;}
.y9b_c01210{bottom:643.123852px;}
.y9a_c01210{bottom:644.202165px;}
.y99_c01210{bottom:669.848625px;}
.y98_c01210{bottom:670.947960px;}
.y97_c01210{bottom:671.569567px;}
.y96_c01210{bottom:671.867797px;}
.y95_c01210{bottom:673.263945px;}
.y94_c01210{bottom:673.895002px;}
.y93_c01210{bottom:675.577747px;}
.y92_c01210{bottom:675.886852px;}
.y91_c01210{bottom:677.709397px;}
.y90_c01210{bottom:678.627390px;}
.y8f_c01210{bottom:679.122052px;}
.y8e_c01210{bottom:679.574152px;}
.y8d_c01210{bottom:705.753420px;}
.y8c_c01210{bottom:706.821577px;}
.y8b_c01210{bottom:707.407770px;}
.y8a_c01210{bottom:707.977072px;}
.y89_c01210{bottom:708.711855px;}
.y88_c01210{bottom:708.999847px;}
.y87_c01210{bottom:710.282047px;}
.y86_c01210{bottom:711.292717px;}
.y85_c01210{bottom:711.853290px;}
.y84_c01210{bottom:712.568505px;}
.y83_c01210{bottom:713.153010px;}
.y82_c01210{bottom:713.865705px;}
.y81_c01210{bottom:714.287047px;}
.y80_c01210{bottom:714.950115px;}
.y7f_c01210{bottom:740.061495px;}
.y7e_c01210{bottom:740.563627px;}
.y7d_c01210{bottom:742.054702px;}
.y7c_c01210{bottom:743.399392px;}
.y7b_c01210{bottom:744.377040px;}
.y7a_c01210{bottom:745.031430px;}
.y79_c01210{bottom:745.366995px;}
.y78_c01210{bottom:746.679420px;}
.y77_c01210{bottom:747.027675px;}
.y76_c01210{bottom:748.174477px;}
.y75_c01210{bottom:749.379195px;}
.y74_c01210{bottom:749.818890px;}
.y73_c01210{bottom:750.324892px;}
.y72_c01210{bottom:777.451267px;}
.y71_c01210{bottom:777.967913px;}
.y70_c01210{bottom:778.473555px;}
.y6f_c01210{bottom:778.968622px;}
.y6e_c01210{bottom:779.470755px;}
.y6d_c01210{bottom:780.619200px;}
.y6c_c01210{bottom:781.621485px;}
.y6b_c01210{bottom:782.775847px;}
.y6a_c01210{bottom:783.942472px;}
.y69_c01210{bottom:784.440578px;}
.y68_c01210{bottom:785.902762px;}
.y67_c01210{bottom:787.049565px;}
.y66_c01210{bottom:812.253742px;}
.y65_c01210{bottom:812.776305px;}
.y64_c01210{bottom:813.774562px;}
.y63_c01210{bottom:814.270462px;}
.y62_c01210{bottom:815.080552px;}
.y61_c01210{bottom:816.251835px;}
.y60_c01210{bottom:817.243860px;}
.y5f_c01210{bottom:818.074200px;}
.y5e_c01210{bottom:819.390540px;}
.y5d_c01210{bottom:820.533000px;}
.y5a_c01210{bottom:854.750370px;}
.y59_c01210{bottom:854.750655px;}
.y58_c01210{bottom:854.750925px;}
.y5b_c01210{bottom:854.750985px;}
.y5c_c01210{bottom:854.751330px;}
.y57_c01210{bottom:883.965150px;}
.y56_c01210{bottom:884.317875px;}
.y55_c01210{bottom:885.040380px;}
.y54_c01210{bottom:885.415125px;}
.y53_c01210{bottom:885.792510px;}
.y52_c01210{bottom:886.267800px;}
.y51_c01210{bottom:887.241900px;}
.y50_c01210{bottom:887.969805px;}
.y4f_c01210{bottom:888.699750px;}
.y4e_c01210{bottom:889.059405px;}
.y4d_c01210{bottom:890.036505px;}
.y4c_c01210{bottom:891.000915px;}
.y4b_c01210{bottom:918.887100px;}
.y4a_c01210{bottom:919.237845px;}
.y49_c01210{bottom:919.573080px;}
.y48_c01210{bottom:919.996635px;}
.y47_c01210{bottom:920.904300px;}
.y46_c01210{bottom:922.005960px;}
.y45_c01210{bottom:922.434945px;}
.y44_c01210{bottom:923.102220px;}
.y43_c01210{bottom:923.437050px;}
.y42_c01210{bottom:923.982420px;}
.y41_c01210{bottom:924.954585px;}
.y40_c01210{bottom:925.291500px;}
.y3f_c01210{bottom:954.199968px;}
.y3e_c01210{bottom:954.564900px;}
.y3d_c01210{bottom:955.492098px;}
.y3c_c01210{bottom:956.163120px;}
.y3b_c01210{bottom:956.558256px;}
.y3a_c01210{bottom:957.614532px;}
.y39_c01210{bottom:958.016418px;}
.y38_c01210{bottom:958.272396px;}
.y37_c01210{bottom:958.680726px;}
.y36_c01210{bottom:959.741988px;}
.y35_c01210{bottom:960.398034px;}
.y34_c01210{bottom:961.201500px;}
.y33_c01210{bottom:995.371500px;}
.y32_c01210{bottom:1021.819455px;}
.y31_c01210{bottom:1022.234373px;}
.y30_c01210{bottom:1023.157990px;}
.y2f_c01210{bottom:1023.570222px;}
.y2e_c01210{bottom:1024.496324px;}
.y2d_c01210{bottom:1025.167036px;}
.y2c_c01210{bottom:1025.558918px;}
.y2b_c01210{bottom:1026.364771px;}
.y2a_c01210{bottom:1026.614773px;}
.y29_c01210{bottom:1027.856450px;}
.y28_c01210{bottom:1028.047954px;}
.y27_c01210{bottom:1029.644701px;}
.y26_c01210{bottom:1030.048843px;}
.y25_c01210{bottom:1058.771967px;}
.y24_c01210{bottom:1059.526078px;}
.y23_c01210{bottom:1059.879816px;}
.y22_c01210{bottom:1060.611191px;}
.y21_c01210{bottom:1061.469474px;}
.y20_c01210{bottom:1062.065904px;}
.y1f_c01210{bottom:1062.443622px;}
.y1e_c01210{bottom:1063.293116px;}
.y1d_c01210{bottom:1063.653240px;}
.y1c_c01210{bottom:1064.128770px;}
.y1b_c01210{bottom:1064.725389px;}
.y1a_c01210{bottom:1065.105388px;}
.y19_c01210{bottom:1065.690437px;}
.y18_c01210{bottom:1093.767436px;}
.y17_c01210{bottom:1094.661623px;}
.y16_c01210{bottom:1094.975254px;}
.y15_c01210{bottom:1095.672746px;}
.y14_c01210{bottom:1096.151212px;}
.y13_c01210{bottom:1096.564731px;}
.y12_c01210{bottom:1097.053026px;}
.y11_c01210{bottom:1098.061571px;}
.y10_c01210{bottom:1098.740040px;}
.yf_c01210{bottom:1098.941001px;}
.ye_c01210{bottom:1099.711500px;}
.yd_c01210{bottom:1128.311259px;}
.yc_c01210{bottom:1128.798417px;}
.yb_c01210{bottom:1129.883382px;}
.ya_c01210{bottom:1130.348490px;}
.y9_c01210{bottom:1131.441078px;}
.y8_c01210{bottom:1132.518441px;}
.y7_c01210{bottom:1132.831572px;}
.y6_c01210{bottom:1134.665691px;}
.y5_c01210{bottom:1136.208141px;}
.y4_c01210{bottom:1137.141507px;}
.y3_c01210{bottom:1137.602562px;}
.y2_c01210{bottom:1138.051500px;}
.y1_c01210{bottom:1210.012500px;}
.h15_c01210{height:54.011906px;}
.h2_c01210{height:60.000000px;}
.h16_c01210{height:72.000000px;}
.h4_c01210{height:72.002916px;}
.h12_c01210{height:72.005184px;}
.hf_c01210{height:72.006084px;}
.ha_c01210{height:72.008100px;}
.h6_c01210{height:78.000000px;}
.h5_c01210{height:78.003159px;}
.h8_c01210{height:78.003900px;}
.h11_c01210{height:78.005616px;}
.he_c01210{height:78.006591px;}
.hb_c01210{height:78.008775px;}
.h9_c01210{height:84.004200px;}
.hd_c01210{height:84.006048px;}
.h10_c01210{height:84.007098px;}
.h3_c01210{height:84.008232px;}
.h17_c01210{height:90.000000px;}
.hc_c01210{height:90.010124px;}
.h14_c01210{height:90.019843px;}
.h7_c01210{height:96.006912px;}
.h13_c01210{height:102.007344px;}
.h1_c01210{height:1258.500000px;}
.h0_c01210{height:1258.740000px;}
.w0_c01210{width:904.200000px;}
.w1_c01210{width:904.500000px;}
.x0_c01210{left:0.000000px;}
.xdd_c01210{left:136.890170px;}
.xe0_c01210{left:139.131000px;}
.xb9_c01210{left:140.769000px;}
.xac_c01210{left:142.380653px;}
.x70_c01210{left:143.427307px;}
.x3d_c01210{left:144.831435px;}
.x22_c01210{left:146.980344px;}
.x61_c01210{left:148.059330px;}
.x4_c01210{left:149.193000px;}
.xd9_c01210{left:172.314000px;}
.xba_c01210{left:173.686500px;}
.x90_c01210{left:174.787005px;}
.x69_c01210{left:176.365898px;}
.x57_c01210{left:177.703913px;}
.x5_c01210{left:181.260000px;}
.x96_c01210{left:186.164542px;}
.x80_c01210{left:188.261355px;}
.xde_c01210{left:189.281259px;}
.xe1_c01210{left:193.129500px;}
.xc1_c01210{left:195.480906px;}
.xad_c01210{left:196.674653px;}
.x62_c01210{left:199.065360px;}
.x19_c01210{left:201.795267px;}
.x58_c01210{left:207.016913px;}
.x6a_c01210{left:211.743938px;}
.x6_c01210{left:214.192500px;}
.xae_c01210{left:217.953653px;}
.x71_c01210{left:220.415955px;}
.x4e_c01210{left:222.263573px;}
.xc2_c01210{left:227.851188px;}
.x8a_c01210{left:229.021500px;}
.x63_c01210{left:231.455828px;}
.x3e_c01210{left:232.571565px;}
.x10_c01210{left:235.590000px;}
.x72_c01210{left:242.242793px;}
.x46_c01210{left:244.083390px;}
.xdf_c01210{left:245.722644px;}
.xd4_c01210{left:249.135792px;}
.x2c_c01210{left:254.982000px;}
.x48_c01210{left:256.008000px;}
.x11_c01210{left:257.919000px;}
.x2b_c01210{left:259.740000px;}
.xaf_c01210{left:262.535153px;}
.xbb_c01210{left:271.678500px;}
.x97_c01210{left:272.830038px;}
.x84_c01210{left:274.179000px;}
.x36_c01210{left:277.674000px;}
.x7_c01210{left:280.861500px;}
.xb4_c01210{left:283.322616px;}
.xa3_c01210{left:284.370767px;}
.x64_c01210{left:286.270470px;}
.x59_c01210{left:287.331413px;}
.x1a_c01210{left:290.640174px;}
.xc7_c01210{left:293.864826px;}
.x85_c01210{left:297.358500px;}
.xbc_c01210{left:304.893000px;}
.x73_c01210{left:308.162782px;}
.x23_c01210{left:313.796849px;}
.x98_c01210{left:316.749257px;}
.x4f_c01210{left:319.742573px;}
.x2d_c01210{left:321.937500px;}
.xd5_c01210{left:326.084766px;}
.xa4_c01210{left:327.515636px;}
.x24_c01210{left:329.741417px;}
.x37_c01210{left:332.211000px;}
.x12_c01210{left:333.304500px;}
.xcd_c01210{left:336.460752px;}
.xc8_c01210{left:337.563348px;}
.x91_c01210{left:339.707505px;}
.xc3_c01210{left:348.796536px;}
.xb5_c01210{left:350.024851px;}
.x8b_c01210{left:351.651000px;}
.x50_c01210{left:352.949573px;}
.x3f_c01210{left:354.095850px;}
.xce_c01210{left:360.200406px;}
.xa5_c01210{left:362.131739px;}
.x5a_c01210{left:363.784913px;}
.x47_c01210{left:365.049495px;}
.x1b_c01210{left:366.489297px;}
.x99_c01210{left:371.832390px;}
.x2e_c01210{left:376.608000px;}
.xe2_c01210{left:379.410000px;}
.xd6_c01210{left:381.223788px;}
.x8c_c01210{left:383.476500px;}
.x7b_c01210{left:384.766695px;}
.x5b_c01210{left:387.001913px;}
.x8_c01210{left:391.036500px;}
.xc9_c01210{left:392.632014px;}
.xb0_c01210{left:403.995653px;}
.x7c_c01210{left:406.425195px;}
.x6b_c01210{left:407.549385px;}
.xe3_c01210{left:413.988000px;}
.xa6_c01210{left:415.563354px;}
.x8d_c01210{left:416.697000px;}
.x40_c01210{left:420.489690px;}
.xc4_c01210{left:425.276610px;}
.x65_c01210{left:429.394268px;}
.x51_c01210{left:430.724573px;}
.x1_c01210{left:433.350000px;}
.xe4_c01210{left:434.506500px;}
.xcf_c01210{left:435.793188px;}
.x7d_c01210{left:439.104195px;}
.x1c_c01210{left:443.709407px;}
.x13_c01210{left:445.365000px;}
.xca_c01210{left:446.943162px;}
.xb1_c01210{left:448.304153px;}
.x9a_c01210{left:449.672334px;}
.x25_c01210{left:453.980055px;}
.x2_c01210{left:456.570000px;}
.xa7_c01210{left:459.357723px;}
.x81_c01210{left:461.272140px;}
.x2f_c01210{left:465.046500px;}
.xe5_c01210{left:467.986500px;}
.xc5_c01210{left:469.237920px;}
.x9b_c01210{left:472.306164px;}
.x74_c01210{left:473.708258px;}
.x38_c01210{left:475.320000px;}
.x1d_c01210{left:478.010786px;}
.x86_c01210{left:483.690000px;}
.x41_c01210{left:486.679530px;}
.xa8_c01210{left:492.845846px;}
.x75_c01210{left:494.987572px;}
.x5c_c01210{left:496.867913px;}
.x14_c01210{left:499.620000px;}
.x3_c01210{left:501.120000px;}
.xbd_c01210{left:502.554000px;}
.x52_c01210{left:507.682073px;}
.x87_c01210{left:515.824500px;}
.x7e_c01210{left:516.826695px;}
.x30_c01210{left:520.405500px;}
.x9_c01210{left:522.045000px;}
.x9c_c01210{left:526.340856px;}
.x1e_c01210{left:532.279814px;}
.xd0_c01210{left:535.166106px;}
.x49_c01210{left:541.419000px;}
.xa_c01210{left:544.411500px;}
.x15_c01210{left:545.566500px;}
.xb2_c01210{left:547.392653px;}
.x6c_c01210{left:549.841522px;}
.x7f_c01210{left:550.882695px;}
.x26_c01210{left:553.892368px;}
.xcb_c01210{left:556.853976px;}
.x92_c01210{left:559.322505px;}
.x88_c01210{left:560.377500px;}
.x9d_c01210{left:570.296075px;}
.x42_c01210{left:575.238645px;}
.xc6_c01210{left:579.396168px;}
.x82_c01210{left:582.504585px;}
.x39_c01210{left:585.486000px;}
.xe6_c01210{left:589.240500px;}
.xda_c01210{left:590.818500px;}
.x6d_c01210{left:594.912697px;}
.x16_c01210{left:598.729500px;}
.xb6_c01210{left:603.081423px;}
.x9e_c01210{left:604.372800px;}
.x5d_c01210{left:605.670413px;}
.x1f_c01210{left:610.309910px;}
.xa9_c01210{left:613.751706px;}
.x76_c01210{left:616.222395px;}
.x43_c01210{left:618.417210px;}
.x4a_c01210{left:619.504500px;}
.xb_c01210{left:621.366000px;}
.x93_c01210{left:625.435005px;}
.x66_c01210{left:627.857708px;}
.xdb_c01210{left:634.245000px;}
.x8e_c01210{left:637.311000px;}
.x31_c01210{left:641.919000px;}
.xd7_c01210{left:646.415190px;}
.x9f_c01210{left:647.801538px;}
.x77_c01210{left:649.162890px;}
.x53_c01210{left:651.064073px;}
.x44_c01210{left:652.705365px;}
.xb3_c01210{left:657.873653px;}
.xbe_c01210{left:669.190500px;}
.x83_c01210{left:671.091068px;}
.x8f_c01210{left:672.156000px;}
.x4b_c01210{left:673.510500px;}
.x32_c01210{left:674.847000px;}
.x17_c01210{left:676.228500px;}
.xd1_c01210{left:678.856440px;}
.x94_c01210{left:680.566005px;}
.x54_c01210{left:684.539573px;}
.x27_c01210{left:686.979277px;}
.xaa_c01210{left:691.545678px;}
.x78_c01210{left:693.728565px;}
.x5e_c01210{left:695.316413px;}
.xc_c01210{left:699.408000px;}
.xb7_c01210{left:702.170997px;}
.x4c_c01210{left:706.570500px;}
.x20_c01210{left:708.876128px;}
.x18_c01210{left:711.076500px;}
.xd8_c01210{left:713.691348px;}
.x6e_c01210{left:715.872997px;}
.x55_c01210{left:717.544073px;}
.x3a_c01210{left:718.608000px;}
.x28_c01210{left:721.281846px;}
.xd2_c01210{left:722.887356px;}
.xa0_c01210{left:724.498560px;}
.x67_c01210{left:728.099700px;}
.x33_c01210{left:730.765500px;}
.xd_c01210{left:732.630000px;}
.xb8_c01210{left:734.579335px;}
.x89_c01210{left:737.559000px;}
.xcc_c01210{left:745.877244px;}
.x3b_c01210{left:752.131500px;}
.xd3_c01210{left:756.652632px;}
.xa1_c01210{left:758.539286px;}
.x6f_c01210{left:760.314172px;}
.x4d_c01210{left:773.121000px;}
.x21_c01210{left:777.498399px;}
.xdc_c01210{left:779.109000px;}
.xbf_c01210{left:780.240000px;}
.x45_c01210{left:784.501545px;}
.x56_c01210{left:785.696573px;}
.x3c_c01210{left:787.206000px;}
.x95_c01210{left:792.343005px;}
.x5f_c01210{left:794.721413px;}
.x29_c01210{left:798.237267px;}
.xc0_c01210{left:802.072500px;}
.x79_c01210{left:805.057230px;}
.x34_c01210{left:808.032000px;}
.xe_c01210{left:810.127500px;}
.xab_c01210{left:814.761480px;}
.xa2_c01210{left:825.306815px;}
.x7a_c01210{left:826.819567px;}
.x60_c01210{left:828.196913px;}
.x2a_c01210{left:832.838335px;}
.x35_c01210{left:838.443000px;}
.xf_c01210{left:844.924500px;}
.x68_c01210{left:855.393525px;}
.xe8_c01210{left:880.740000px;}
.xe9_c01210{left:884.520000px;}
.xe7_c01210{left:885.870000px;}
@media print{
.v0_c01210{vertical-align:0.000000pt;}
.ls0_c01210{letter-spacing:0.000000pt;}
.ws0_c01210{word-spacing:0.000000pt;}
.fs13_c01210{font-size:48.010583pt;}
.fs0_c01210{font-size:53.333333pt;}
.fs14_c01210{font-size:64.000000pt;}
.fs2_c01210{font-size:64.002592pt;}
.fs10_c01210{font-size:64.004608pt;}
.fsd_c01210{font-size:64.005408pt;}
.fs8_c01210{font-size:64.007200pt;}
.fs4_c01210{font-size:69.333333pt;}
.fs3_c01210{font-size:69.336141pt;}
.fs6_c01210{font-size:69.336800pt;}
.fsf_c01210{font-size:69.338325pt;}
.fsc_c01210{font-size:69.339192pt;}
.fs9_c01210{font-size:69.341133pt;}
.fs7_c01210{font-size:74.670400pt;}
.fsb_c01210{font-size:74.672042pt;}
.fse_c01210{font-size:74.672976pt;}
.fs1_c01210{font-size:74.673984pt;}
.fs15_c01210{font-size:80.000000pt;}
.fsa_c01210{font-size:80.008999pt;}
.fs12_c01210{font-size:80.017638pt;}
.fs5_c01210{font-size:85.339477pt;}
.fs11_c01210{font-size:90.673194pt;}
.y0_c01210{bottom:0.000000pt;}
.y174_c01210{bottom:47.361401pt;}
.y173_c01210{bottom:47.991745pt;}
.y172_c01210{bottom:48.762559pt;}
.y171_c01210{bottom:49.149439pt;}
.y170_c01210{bottom:49.386541pt;}
.y16f_c01210{bottom:49.786109pt;}
.y16e_c01210{bottom:50.151236pt;}
.y16d_c01210{bottom:50.934460pt;}
.y16c_c01210{bottom:51.289949pt;}
.y16b_c01210{bottom:51.938684pt;}
.y16a_c01210{bottom:52.562667pt;}
.y166_c01210{bottom:76.920804pt;}
.y165_c01210{bottom:76.921007pt;}
.y168_c01210{bottom:76.921029pt;}
.y167_c01210{bottom:76.921051pt;}
.y169_c01210{bottom:76.921516pt;}
.y164_c01210{bottom:88.872808pt;}
.y163_c01210{bottom:89.508884pt;}
.y162_c01210{bottom:90.940776pt;}
.y161_c01210{bottom:91.576936pt;}
.y160_c01210{bottom:92.387564pt;}
.y15f_c01210{bottom:93.017732pt;}
.y15e_c01210{bottom:95.055348pt;}
.y15d_c01210{bottom:97.233216pt;}
.y15c_c01210{bottom:97.712436pt;}
.y15b_c01210{bottom:99.778696pt;}
.y15a_c01210{bottom:100.199648pt;}
.y159_c01210{bottom:100.804000pt;}
.y158_c01210{bottom:121.159477pt;}
.y157_c01210{bottom:122.235808pt;}
.y156_c01210{bottom:123.307717pt;}
.y155_c01210{bottom:123.662608pt;}
.y154_c01210{bottom:125.011221pt;}
.y153_c01210{bottom:125.403408pt;}
.y152_c01210{bottom:126.124544pt;}
.y151_c01210{bottom:126.479387pt;}
.y150_c01210{bottom:127.362245pt;}
.y14f_c01210{bottom:127.715275pt;}
.y14e_c01210{bottom:128.592427pt;}
.y14d_c01210{bottom:128.940891pt;}
.y14c_c01210{bottom:130.317157pt;}
.y14b_c01210{bottom:153.415013pt;}
.y14a_c01210{bottom:154.023355pt;}
.y149_c01210{bottom:154.474197pt;}
.y148_c01210{bottom:155.061211pt;}
.y147_c01210{bottom:156.389392pt;}
.y146_c01210{bottom:156.976629pt;}
.y178_c01210{bottom:157.077333pt;}
.y145_c01210{bottom:157.849168pt;}
.y144_c01210{bottom:158.301979pt;}
.y143_c01210{bottom:159.309664pt;}
.y142_c01210{bottom:159.625563pt;}
.y141_c01210{bottom:160.639397pt;}
.y140_c01210{bottom:161.079701pt;}
.y13f_c01210{bottom:162.235088pt;}
.y13e_c01210{bottom:186.977099pt;}
.y13d_c01210{bottom:187.521765pt;}
.y13c_c01210{bottom:188.480411pt;}
.y177_c01210{bottom:188.997333pt;}
.y13b_c01210{bottom:189.369989pt;}
.y13a_c01210{bottom:190.445024pt;}
.y139_c01210{bottom:190.976336pt;}
.y138_c01210{bottom:191.514395pt;}
.y137_c01210{bottom:191.941840pt;}
.y136_c01210{bottom:192.795227pt;}
.y135_c01210{bottom:193.435888pt;}
.y134_c01210{bottom:216.626747pt;}
.y133_c01210{bottom:217.215904pt;}
.y132_c01210{bottom:217.959013pt;}
.y131_c01210{bottom:220.017712pt;}
.y130_c01210{bottom:220.592736pt;}
.y12f_c01210{bottom:222.453189pt;}
.y12e_c01210{bottom:223.195483pt;}
.y12d_c01210{bottom:224.487339pt;}
.y12c_c01210{bottom:225.798197pt;}
.y12b_c01210{bottom:226.529531pt;}
.y12a_c01210{bottom:227.076176pt;}
.y129_c01210{bottom:227.999872pt;}
.y128_c01210{bottom:249.987429pt;}
.y127_c01210{bottom:250.220309pt;}
.y126_c01210{bottom:251.404837pt;}
.y125_c01210{bottom:251.874181pt;}
.y124_c01210{bottom:252.704149pt;}
.y176_c01210{bottom:253.082667pt;}
.y123_c01210{bottom:253.182293pt;}
.y122_c01210{bottom:253.749685pt;}
.y121_c01210{bottom:254.818357pt;}
.y120_c01210{bottom:255.290677pt;}
.y11f_c01210{bottom:255.644965pt;}
.y11e_c01210{bottom:256.331525pt;}
.y11d_c01210{bottom:256.690213pt;}
.y11c_c01210{bottom:257.041333pt;}
.y11b_c01210{bottom:283.083335pt;}
.y11a_c01210{bottom:283.640651pt;}
.y119_c01210{bottom:283.957804pt;}
.y118_c01210{bottom:284.716067pt;}
.y117_c01210{bottom:284.926809pt;}
.y116_c01210{bottom:286.012299pt;}
.y115_c01210{bottom:286.535045pt;}
.y114_c01210{bottom:286.876296pt;}
.y113_c01210{bottom:287.401609pt;}
.y112_c01210{bottom:287.731783pt;}
.y111_c01210{bottom:288.053704pt;}
.y110_c01210{bottom:289.427568pt;}
.y10f_c01210{bottom:313.128500pt;}
.y10e_c01210{bottom:313.896644pt;}
.y10d_c01210{bottom:314.283853pt;}
.y10c_c01210{bottom:314.673455pt;}
.y10b_c01210{bottom:315.950124pt;}
.y175_c01210{bottom:316.560000pt;}
.y10a_c01210{bottom:317.095147pt;}
.y109_c01210{bottom:317.607156pt;}
.y108_c01210{bottom:317.984884pt;}
.y107_c01210{bottom:318.621347pt;}
.y106_c01210{bottom:319.241811pt;}
.y105_c01210{bottom:319.756975pt;}
.y104_c01210{bottom:320.002865pt;}
.y103_c01210{bottom:320.630263pt;}
.y102_c01210{bottom:342.392185pt;}
.y101_c01210{bottom:343.592289pt;}
.y100_c01210{bottom:344.034716pt;}
.yff_c01210{bottom:344.611007pt;}
.yfe_c01210{bottom:345.072359pt;}
.yfd_c01210{bottom:346.242237pt;}
.yfc_c01210{bottom:346.684196pt;}
.yfb_c01210{bottom:347.131180pt;}
.yfa_c01210{bottom:347.714595pt;}
.yf9_c01210{bottom:348.426709pt;}
.yf8_c01210{bottom:348.888061pt;}
.yf7_c01210{bottom:349.463971pt;}
.yf6_c01210{bottom:350.784144pt;}
.yf5_c01210{bottom:351.353503pt;}
.yf4_c01210{bottom:375.837333pt;}
.yf3_c01210{bottom:376.846243pt;}
.yf2_c01210{bottom:377.360956pt;}
.yf1_c01210{bottom:378.519279pt;}
.yf0_c01210{bottom:379.175815pt;}
.yef_c01210{bottom:379.690944pt;}
.yee_c01210{bottom:380.354897pt;}
.yed_c01210{bottom:381.171331pt;}
.yec_c01210{bottom:381.512891pt;}
.yeb_c01210{bottom:382.689755pt;}
.yea_c01210{bottom:383.522304pt;}
.ye9_c01210{bottom:384.185841pt;}
.ye8_c01210{bottom:385.177681pt;}
.ye7_c01210{bottom:385.495361pt;}
.ye6_c01210{bottom:386.156784pt;}
.ye5_c01210{bottom:407.928940pt;}
.ye4_c01210{bottom:408.818383pt;}
.ye3_c01210{bottom:409.220585pt;}
.ye2_c01210{bottom:409.857655pt;}
.ye1_c01210{bottom:410.356491pt;}
.ye0_c01210{bottom:410.621621pt;}
.ydf_c01210{bottom:411.760768pt;}
.yde_c01210{bottom:412.279052pt;}
.ydd_c01210{bottom:412.659831pt;}
.ydc_c01210{bottom:413.159395pt;}
.ydb_c01210{bottom:414.288575pt;}
.yda_c01210{bottom:414.690933pt;}
.yd9_c01210{bottom:415.065143pt;}
.yd8_c01210{bottom:415.439023pt;}
.yd7_c01210{bottom:439.527975pt;}
.yd6_c01210{bottom:439.783867pt;}
.yd5_c01210{bottom:440.536376pt;}
.yd4_c01210{bottom:440.939029pt;}
.yd3_c01210{bottom:441.831471pt;}
.yd2_c01210{bottom:442.340031pt;}
.yd1_c01210{bottom:442.717603pt;}
.yd0_c01210{bottom:443.488347pt;}
.ycf_c01210{bottom:443.872228pt;}
.yce_c01210{bottom:444.239989pt;}
.ycd_c01210{bottom:444.748636pt;}
.ycc_c01210{bottom:445.657041pt;}
.ycb_c01210{bottom:446.642667pt;}
.yca_c01210{bottom:471.987237pt;}
.yc9_c01210{bottom:472.554965pt;}
.yc8_c01210{bottom:472.713045pt;}
.yc7_c01210{bottom:473.888757pt;}
.yc6_c01210{bottom:474.602981pt;}
.yc5_c01210{bottom:475.078213pt;}
.yc4_c01210{bottom:475.420981pt;}
.yc3_c01210{bottom:476.247685pt;}
.yc2_c01210{bottom:477.408517pt;}
.yc1_c01210{bottom:477.655765pt;}
.yc0_c01210{bottom:479.041333pt;}
.ybf_c01210{bottom:503.364127pt;}
.ybe_c01210{bottom:504.214047pt;}
.ybd_c01210{bottom:504.582907pt;}
.ybc_c01210{bottom:505.038633pt;}
.ybb_c01210{bottom:505.528007pt;}
.yba_c01210{bottom:505.876940pt;}
.yb9_c01210{bottom:506.464533pt;}
.yb8_c01210{bottom:506.821700pt;}
.yb7_c01210{bottom:507.164307pt;}
.yb6_c01210{bottom:507.639820pt;}
.yb5_c01210{bottom:509.733680pt;}
.yb4_c01210{bottom:510.216407pt;}
.yb3_c01210{bottom:535.573300pt;}
.yb2_c01210{bottom:536.185500pt;}
.yb1_c01210{bottom:537.074980pt;}
.yb0_c01210{bottom:537.503280pt;}
.yaf_c01210{bottom:538.378260pt;}
.yae_c01210{bottom:538.832340pt;}
.yad_c01210{bottom:539.868640pt;}
.yac_c01210{bottom:540.304360pt;}
.yab_c01210{bottom:540.593140pt;}
.yaa_c01210{bottom:541.913220pt;}
.ya9_c01210{bottom:543.371820pt;}
.ya8_c01210{bottom:543.821440pt;}
.ya7_c01210{bottom:564.120387pt;}
.ya6_c01210{bottom:564.390547pt;}
.ya5_c01210{bottom:565.342207pt;}
.ya4_c01210{bottom:565.776240pt;}
.ya3_c01210{bottom:566.330440pt;}
.ya2_c01210{bottom:566.740307pt;}
.ya1_c01210{bottom:568.248747pt;}
.ya0_c01210{bottom:568.513800pt;}
.y9f_c01210{bottom:569.596407pt;}
.y9e_c01210{bottom:570.305620pt;}
.y9d_c01210{bottom:570.574373pt;}
.y9c_c01210{bottom:571.394627pt;}
.y9b_c01210{bottom:571.665647pt;}
.y9a_c01210{bottom:572.624147pt;}
.y99_c01210{bottom:595.421000pt;}
.y98_c01210{bottom:596.398187pt;}
.y97_c01210{bottom:596.950727pt;}
.y96_c01210{bottom:597.215820pt;}
.y95_c01210{bottom:598.456840pt;}
.y94_c01210{bottom:599.017780pt;}
.y93_c01210{bottom:600.513553pt;}
.y92_c01210{bottom:600.788313pt;}
.y91_c01210{bottom:602.408353pt;}
.y90_c01210{bottom:603.224347pt;}
.y8f_c01210{bottom:603.664047pt;}
.y8e_c01210{bottom:604.065913pt;}
.y8d_c01210{bottom:627.336373pt;}
.y8c_c01210{bottom:628.285847pt;}
.y8b_c01210{bottom:628.806907pt;}
.y8a_c01210{bottom:629.312953pt;}
.y89_c01210{bottom:629.966093pt;}
.y88_c01210{bottom:630.222087pt;}
.y87_c01210{bottom:631.361820pt;}
.y86_c01210{bottom:632.260193pt;}
.y85_c01210{bottom:632.758480pt;}
.y84_c01210{bottom:633.394227pt;}
.y83_c01210{bottom:633.913787pt;}
.y82_c01210{bottom:634.547293pt;}
.y81_c01210{bottom:634.921820pt;}
.y80_c01210{bottom:635.511213pt;}
.y7f_c01210{bottom:657.832440pt;}
.y7e_c01210{bottom:658.278780pt;}
.y7d_c01210{bottom:659.604180pt;}
.y7c_c01210{bottom:660.799460pt;}
.y7b_c01210{bottom:661.668480pt;}
.y7a_c01210{bottom:662.250160pt;}
.y79_c01210{bottom:662.548440pt;}
.y78_c01210{bottom:663.715040pt;}
.y77_c01210{bottom:664.024600pt;}
.y76_c01210{bottom:665.043980pt;}
.y75_c01210{bottom:666.114840pt;}
.y74_c01210{bottom:666.505680pt;}
.y73_c01210{bottom:666.955460pt;}
.y72_c01210{bottom:691.067793pt;}
.y71_c01210{bottom:691.527033pt;}
.y70_c01210{bottom:691.976493pt;}
.y6f_c01210{bottom:692.416553pt;}
.y6e_c01210{bottom:692.862893pt;}
.y6d_c01210{bottom:693.883733pt;}
.y6c_c01210{bottom:694.774653pt;}
.y6b_c01210{bottom:695.800753pt;}
.y6a_c01210{bottom:696.837753pt;}
.y69_c01210{bottom:697.280513pt;}
.y68_c01210{bottom:698.580233pt;}
.y67_c01210{bottom:699.599613pt;}
.y66_c01210{bottom:722.003327pt;}
.y65_c01210{bottom:722.467827pt;}
.y64_c01210{bottom:723.355167pt;}
.y63_c01210{bottom:723.795967pt;}
.y62_c01210{bottom:724.516047pt;}
.y61_c01210{bottom:725.557187pt;}
.y60_c01210{bottom:726.438987pt;}
.y5f_c01210{bottom:727.177067pt;}
.y5e_c01210{bottom:728.347147pt;}
.y5d_c01210{bottom:729.362667pt;}
.y5a_c01210{bottom:759.778107pt;}
.y59_c01210{bottom:759.778360pt;}
.y58_c01210{bottom:759.778600pt;}
.y5b_c01210{bottom:759.778653pt;}
.y5c_c01210{bottom:759.778960pt;}
.y57_c01210{bottom:785.746800pt;}
.y56_c01210{bottom:786.060333pt;}
.y55_c01210{bottom:786.702560pt;}
.y54_c01210{bottom:787.035667pt;}
.y53_c01210{bottom:787.371120pt;}
.y52_c01210{bottom:787.793600pt;}
.y51_c01210{bottom:788.659467pt;}
.y50_c01210{bottom:789.306493pt;}
.y4f_c01210{bottom:789.955333pt;}
.y4e_c01210{bottom:790.275027pt;}
.y4d_c01210{bottom:791.143560pt;}
.y4c_c01210{bottom:792.000813pt;}
.y4b_c01210{bottom:816.788533pt;}
.y4a_c01210{bottom:817.100307pt;}
.y49_c01210{bottom:817.398293pt;}
.y48_c01210{bottom:817.774787pt;}
.y47_c01210{bottom:818.581600pt;}
.y46_c01210{bottom:819.560853pt;}
.y45_c01210{bottom:819.942173pt;}
.y44_c01210{bottom:820.535307pt;}
.y43_c01210{bottom:820.832933pt;}
.y42_c01210{bottom:821.317707pt;}
.y41_c01210{bottom:822.181853pt;}
.y40_c01210{bottom:822.481333pt;}
.y3f_c01210{bottom:848.177749pt;}
.y3e_c01210{bottom:848.502133pt;}
.y3d_c01210{bottom:849.326309pt;}
.y3c_c01210{bottom:849.922773pt;}
.y3b_c01210{bottom:850.274005pt;}
.y3a_c01210{bottom:851.212917pt;}
.y39_c01210{bottom:851.570149pt;}
.y38_c01210{bottom:851.797685pt;}
.y37_c01210{bottom:852.160645pt;}
.y36_c01210{bottom:853.103989pt;}
.y35_c01210{bottom:853.687141pt;}
.y34_c01210{bottom:854.401333pt;}
.y33_c01210{bottom:884.774667pt;}
.y32_c01210{bottom:908.283960pt;}
.y31_c01210{bottom:908.652776pt;}
.y30_c01210{bottom:909.473769pt;}
.y2f_c01210{bottom:909.840197pt;}
.y2e_c01210{bottom:910.663399pt;}
.y2d_c01210{bottom:911.259588pt;}
.y2c_c01210{bottom:911.607927pt;}
.y2b_c01210{bottom:912.324241pt;}
.y2a_c01210{bottom:912.546465pt;}
.y29_c01210{bottom:913.650177pt;}
.y28_c01210{bottom:913.820404pt;}
.y27_c01210{bottom:915.239735pt;}
.y26_c01210{bottom:915.598972pt;}
.y25_c01210{bottom:941.130637pt;}
.y24_c01210{bottom:941.800959pt;}
.y23_c01210{bottom:942.115392pt;}
.y22_c01210{bottom:942.765503pt;}
.y21_c01210{bottom:943.528421pt;}
.y20_c01210{bottom:944.058581pt;}
.y1f_c01210{bottom:944.394331pt;}
.y1e_c01210{bottom:945.149436pt;}
.y1d_c01210{bottom:945.469547pt;}
.y1c_c01210{bottom:945.892240pt;}
.y1b_c01210{bottom:946.422568pt;}
.y1a_c01210{bottom:946.760345pt;}
.y19_c01210{bottom:947.280388pt;}
.y18_c01210{bottom:972.237721pt;}
.y17_c01210{bottom:973.032553pt;}
.y16_c01210{bottom:973.311337pt;}
.y15_c01210{bottom:973.931329pt;}
.y14_c01210{bottom:974.356633pt;}
.y13_c01210{bottom:974.724205pt;}
.y12_c01210{bottom:975.158245pt;}
.y11_c01210{bottom:976.054729pt;}
.y10_c01210{bottom:976.657813pt;}
.yf_c01210{bottom:976.836445pt;}
.ye_c01210{bottom:977.521333pt;}
.yd_c01210{bottom:1002.943341pt;}
.yc_c01210{bottom:1003.376371pt;}
.yb_c01210{bottom:1004.340784pt;}
.ya_c01210{bottom:1004.754213pt;}
.y9_c01210{bottom:1005.725403pt;}
.y8_c01210{bottom:1006.683059pt;}
.y7_c01210{bottom:1006.961397pt;}
.y6_c01210{bottom:1008.591725pt;}
.y5_c01210{bottom:1009.962792pt;}
.y4_c01210{bottom:1010.792451pt;}
.y3_c01210{bottom:1011.202277pt;}
.y2_c01210{bottom:1011.601333pt;}
.y1_c01210{bottom:1075.566667pt;}
.h15_c01210{height:48.010583pt;}
.h2_c01210{height:53.333333pt;}
.h16_c01210{height:64.000000pt;}
.h4_c01210{height:64.002592pt;}
.h12_c01210{height:64.004608pt;}
.hf_c01210{height:64.005408pt;}
.ha_c01210{height:64.007200pt;}
.h6_c01210{height:69.333333pt;}
.h5_c01210{height:69.336141pt;}
.h8_c01210{height:69.336800pt;}
.h11_c01210{height:69.338325pt;}
.he_c01210{height:69.339192pt;}
.hb_c01210{height:69.341133pt;}
.h9_c01210{height:74.670400pt;}
.hd_c01210{height:74.672042pt;}
.h10_c01210{height:74.672976pt;}
.h3_c01210{height:74.673984pt;}
.h17_c01210{height:80.000000pt;}
.hc_c01210{height:80.008999pt;}
.h14_c01210{height:80.017638pt;}
.h7_c01210{height:85.339477pt;}
.h13_c01210{height:90.673194pt;}
.h1_c01210{height:1118.666667pt;}
.h0_c01210{height:1118.880000pt;}
.w0_c01210{width:803.733333pt;}
.w1_c01210{width:804.000000pt;}
.x0_c01210{left:0.000000pt;}
.xdd_c01210{left:121.680151pt;}
.xe0_c01210{left:123.672000pt;}
.xb9_c01210{left:125.128000pt;}
.xac_c01210{left:126.560580pt;}
.x70_c01210{left:127.490940pt;}
.x3d_c01210{left:128.739053pt;}
.x22_c01210{left:130.649195pt;}
.x61_c01210{left:131.608293pt;}
.x4_c01210{left:132.616000pt;}
.xd9_c01210{left:153.168000pt;}
.xba_c01210{left:154.388000pt;}
.x90_c01210{left:155.366227pt;}
.x69_c01210{left:156.769687pt;}
.x57_c01210{left:157.959033pt;}
.x5_c01210{left:161.120000pt;}
.x96_c01210{left:165.479593pt;}
.x80_c01210{left:167.343427pt;}
.xde_c01210{left:168.250008pt;}
.xe1_c01210{left:171.670667pt;}
.xc1_c01210{left:173.760805pt;}
.xad_c01210{left:174.821913pt;}
.x62_c01210{left:176.946987pt;}
.x19_c01210{left:179.373571pt;}
.x58_c01210{left:184.015033pt;}
.x6a_c01210{left:188.216833pt;}
.x6_c01210{left:190.393333pt;}
.xae_c01210{left:193.736580pt;}
.x71_c01210{left:195.925293pt;}
.x4e_c01210{left:197.567620pt;}
.xc2_c01210{left:202.534389pt;}
.x8a_c01210{left:203.574667pt;}
.x63_c01210{left:205.738513pt;}
.x3e_c01210{left:206.730280pt;}
.x10_c01210{left:209.413333pt;}
.x72_c01210{left:215.326927pt;}
.x46_c01210{left:216.963013pt;}
.xdf_c01210{left:218.420128pt;}
.xd4_c01210{left:221.454037pt;}
.x2c_c01210{left:226.650667pt;}
.x48_c01210{left:227.562667pt;}
.x11_c01210{left:229.261333pt;}
.x2b_c01210{left:230.880000pt;}
.xaf_c01210{left:233.364580pt;}
.xbb_c01210{left:241.492000pt;}
.x97_c01210{left:242.515589pt;}
.x84_c01210{left:243.714667pt;}
.x36_c01210{left:246.821333pt;}
.x7_c01210{left:249.654667pt;}
.xb4_c01210{left:251.842325pt;}
.xa3_c01210{left:252.774015pt;}
.x64_c01210{left:254.462640pt;}
.x59_c01210{left:255.405700pt;}
.x1a_c01210{left:258.346821pt;}
.xc7_c01210{left:261.213179pt;}
.x85_c01210{left:264.318667pt;}
.xbc_c01210{left:271.016000pt;}
.x73_c01210{left:273.922473pt;}
.x23_c01210{left:278.930532pt;}
.x98_c01210{left:281.554895pt;}
.x4f_c01210{left:284.215620pt;}
.x2d_c01210{left:286.166667pt;}
.xd5_c01210{left:289.853125pt;}
.xa4_c01210{left:291.125009pt;}
.x24_c01210{left:293.103481pt;}
.x37_c01210{left:295.298667pt;}
.x12_c01210{left:296.270667pt;}
.xcd_c01210{left:299.076224pt;}
.xc8_c01210{left:300.056309pt;}
.x91_c01210{left:301.962227pt;}
.xc3_c01210{left:310.041365pt;}
.xb5_c01210{left:311.133201pt;}
.x8b_c01210{left:312.578667pt;}
.x50_c01210{left:313.732953pt;}
.x3f_c01210{left:314.751867pt;}
.xce_c01210{left:320.178139pt;}
.xa5_c01210{left:321.894879pt;}
.x5a_c01210{left:323.364367pt;}
.x47_c01210{left:324.488440pt;}
.x1b_c01210{left:325.768264pt;}
.x99_c01210{left:330.517680pt;}
.x2e_c01210{left:334.762667pt;}
.xe2_c01210{left:337.253333pt;}
.xd6_c01210{left:338.865589pt;}
.x8c_c01210{left:340.868000pt;}
.x7b_c01210{left:342.014840pt;}
.x5b_c01210{left:344.001700pt;}
.x8_c01210{left:347.588000pt;}
.xc9_c01210{left:349.006235pt;}
.xb0_c01210{left:359.107247pt;}
.x7c_c01210{left:361.266840pt;}
.x6b_c01210{left:362.266120pt;}
.xe3_c01210{left:367.989333pt;}
.xa6_c01210{left:369.389648pt;}
.x8d_c01210{left:370.397333pt;}
.x40_c01210{left:373.768613pt;}
.xc4_c01210{left:378.023653pt;}
.x65_c01210{left:381.683793pt;}
.x51_c01210{left:382.866287pt;}
.x1_c01210{left:385.200000pt;}
.xe4_c01210{left:386.228000pt;}
.xcf_c01210{left:387.371723pt;}
.x7d_c01210{left:390.314840pt;}
.x1c_c01210{left:394.408361pt;}
.x13_c01210{left:395.880000pt;}
.xca_c01210{left:397.282811pt;}
.xb1_c01210{left:398.492580pt;}
.x9a_c01210{left:399.708741pt;}
.x25_c01210{left:403.537827pt;}
.x2_c01210{left:405.840000pt;}
.xa7_c01210{left:408.317976pt;}
.x81_c01210{left:410.019680pt;}
.x2f_c01210{left:413.374667pt;}
.xe5_c01210{left:415.988000pt;}
.xc5_c01210{left:417.100373pt;}
.x9b_c01210{left:419.827701pt;}
.x74_c01210{left:421.074007pt;}
.x38_c01210{left:422.506667pt;}
.x1d_c01210{left:424.898476pt;}
.x86_c01210{left:429.946667pt;}
.x41_c01210{left:432.604027pt;}
.xa8_c01210{left:438.085196pt;}
.x75_c01210{left:439.988953pt;}
.x5c_c01210{left:441.660367pt;}
.x14_c01210{left:444.106667pt;}
.x3_c01210{left:445.440000pt;}
.xbd_c01210{left:446.714667pt;}
.x52_c01210{left:451.272953pt;}
.x87_c01210{left:458.510667pt;}
.x7e_c01210{left:459.401507pt;}
.x30_c01210{left:462.582667pt;}
.x9_c01210{left:464.040000pt;}
.x9c_c01210{left:467.858539pt;}
.x1e_c01210{left:473.137612pt;}
.xd0_c01210{left:475.703205pt;}
.x49_c01210{left:481.261333pt;}
.xa_c01210{left:483.921333pt;}
.x15_c01210{left:484.948000pt;}
.xb2_c01210{left:486.571247pt;}
.x6c_c01210{left:488.748020pt;}
.x7f_c01210{left:489.673507pt;}
.x26_c01210{left:492.348772pt;}
.xcb_c01210{left:494.981312pt;}
.x92_c01210{left:497.175560pt;}
.x88_c01210{left:498.113333pt;}
.x9d_c01210{left:506.929844pt;}
.x42_c01210{left:511.323240pt;}
.xc6_c01210{left:515.018816pt;}
.x82_c01210{left:517.781853pt;}
.x39_c01210{left:520.432000pt;}
.xe6_c01210{left:523.769333pt;}
.xda_c01210{left:525.172000pt;}
.x6d_c01210{left:528.811287pt;}
.x16_c01210{left:532.204000pt;}
.xb6_c01210{left:536.072376pt;}
.x9e_c01210{left:537.220267pt;}
.x5d_c01210{left:538.373700pt;}
.x1f_c01210{left:542.497697pt;}
.xa9_c01210{left:545.557072pt;}
.x76_c01210{left:547.753240pt;}
.x43_c01210{left:549.704187pt;}
.x4a_c01210{left:550.670667pt;}
.xb_c01210{left:552.325333pt;}
.x93_c01210{left:555.942227pt;}
.x66_c01210{left:558.095740pt;}
.xdb_c01210{left:563.773333pt;}
.x8e_c01210{left:566.498667pt;}
.x31_c01210{left:570.594667pt;}
.xd7_c01210{left:574.591280pt;}
.x9f_c01210{left:575.823589pt;}
.x77_c01210{left:577.033680pt;}
.x53_c01210{left:578.723620pt;}
.x44_c01210{left:580.182547pt;}
.xb3_c01210{left:584.776580pt;}
.xbe_c01210{left:594.836000pt;}
.x83_c01210{left:596.525393pt;}
.x8f_c01210{left:597.472000pt;}
.x4b_c01210{left:598.676000pt;}
.x32_c01210{left:599.864000pt;}
.x17_c01210{left:601.092000pt;}
.xd1_c01210{left:603.427947pt;}
.x94_c01210{left:604.947560pt;}
.x54_c01210{left:608.479620pt;}
.x27_c01210{left:610.648247pt;}
.xaa_c01210{left:614.707269pt;}
.x78_c01210{left:616.647613pt;}
.x5e_c01210{left:618.059033pt;}
.xc_c01210{left:621.696000pt;}
.xb7_c01210{left:624.151997pt;}
.x4c_c01210{left:628.062667pt;}
.x20_c01210{left:630.112113pt;}
.x18_c01210{left:632.068000pt;}
.xd8_c01210{left:634.392309pt;}
.x6e_c01210{left:636.331553pt;}
.x55_c01210{left:637.816953pt;}
.x3a_c01210{left:638.762667pt;}
.x28_c01210{left:641.139419pt;}
.xd2_c01210{left:642.566539pt;}
.xa0_c01210{left:643.998720pt;}
.x67_c01210{left:647.199733pt;}
.x33_c01210{left:649.569333pt;}
.xd_c01210{left:651.226667pt;}
.xb8_c01210{left:652.959409pt;}
.x89_c01210{left:655.608000pt;}
.xcc_c01210{left:663.001995pt;}
.x3b_c01210{left:668.561333pt;}
.xd3_c01210{left:672.580117pt;}
.xa1_c01210{left:674.257143pt;}
.x6f_c01210{left:675.834820pt;}
.x4d_c01210{left:687.218667pt;}
.x21_c01210{left:691.109688pt;}
.xdc_c01210{left:692.541333pt;}
.xbf_c01210{left:693.546667pt;}
.x45_c01210{left:697.334707pt;}
.x56_c01210{left:698.396953pt;}
.x3c_c01210{left:699.738667pt;}
.x95_c01210{left:704.304893pt;}
.x5f_c01210{left:706.419033pt;}
.x29_c01210{left:709.544237pt;}
.xc0_c01210{left:712.953333pt;}
.x79_c01210{left:715.606427pt;}
.x34_c01210{left:718.250667pt;}
.xe_c01210{left:720.113333pt;}
.xab_c01210{left:724.232427pt;}
.xa2_c01210{left:733.606057pt;}
.x7a_c01210{left:734.950727pt;}
.x60_c01210{left:736.175033pt;}
.x2a_c01210{left:740.300743pt;}
.x35_c01210{left:745.282667pt;}
.xf_c01210{left:751.044000pt;}
.x68_c01210{left:760.349800pt;}
.xe8_c01210{left:782.880000pt;}
.xe9_c01210{left:786.240000pt;}
.xe7_c01210{left:787.440000pt;}
}





/* 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_c01211 {
    display:none;
  }
  .loading-indicator_c01211.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01211 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_c01211 { 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_c01211" -> "#page-container .classname_c01211")
 */
.pf_c01211 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01211 { /* 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_c01211.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01211 { /* 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_c01211 { /* 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_c01211 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01211 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01211 {overflow:visible;}
  }
}
.c_c01211 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01211 { /* 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_c01211:after { /* webkit #35443 */
  content: '';
}
.t_c01211:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01211 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 */
}
.__c01211 { /* 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_c01211 { /* info for Javascript */
  display:none;
}
.l_c01211 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01211 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01211 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01211: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_c01211 {
    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_c01211.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01211.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_c01211 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01211{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01211;src:url('chunks/assets/font_c605e72f209fc835e906f064.woff2')format("woff");}.ff1_c01211{font-family:ff1_c01211;line-height:1.000000;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;}
.m1b_c01211{transform:matrix(0.091465,0.001372,-0.003750,0.249972,0,0);-ms-transform:matrix(0.091465,0.001372,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.091465,0.001372,-0.003750,0.249972,0,0);}
.m20_c01211{transform:matrix(0.103658,0.001555,-0.003750,0.249972,0,0);-ms-transform:matrix(0.103658,0.001555,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.103658,0.001555,-0.003750,0.249972,0,0);}
.m21_c01211{transform:matrix(0.111033,0.001665,-0.003750,0.249972,0,0);-ms-transform:matrix(0.111033,0.001665,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.111033,0.001665,-0.003750,0.249972,0,0);}
.m1a_c01211{transform:matrix(0.111452,0.001672,-0.003750,0.249972,0,0);-ms-transform:matrix(0.111452,0.001672,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.111452,0.001672,-0.003750,0.249972,0,0);}
.m19_c01211{transform:matrix(0.116667,0.001750,-0.003750,0.249972,0,0);-ms-transform:matrix(0.116667,0.001750,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.116667,0.001750,-0.003750,0.249972,0,0);}
.m1c_c01211{transform:matrix(0.120886,0.001813,-0.003750,0.249972,0,0);-ms-transform:matrix(0.120886,0.001813,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.120886,0.001813,-0.003750,0.249972,0,0);}
.m1f_c01211{transform:matrix(0.125491,0.001882,-0.003750,0.249972,0,0);-ms-transform:matrix(0.125491,0.001882,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.125491,0.001882,-0.003750,0.249972,0,0);}
.m28_c01211{transform:matrix(0.130151,-0.001562,0.003000,0.249982,0,0);-ms-transform:matrix(0.130151,-0.001562,0.003000,0.249982,0,0);-webkit-transform:matrix(0.130151,-0.001562,0.003000,0.249982,0,0);}
.m26_c01211{transform:matrix(0.132630,-0.001592,0.003000,0.249982,0,0);-ms-transform:matrix(0.132630,-0.001592,0.003000,0.249982,0,0);-webkit-transform:matrix(0.132630,-0.001592,0.003000,0.249982,0,0);}
.m24_c01211{transform:matrix(0.132935,-0.001595,0.003000,0.249982,0,0);-ms-transform:matrix(0.132935,-0.001595,0.003000,0.249982,0,0);-webkit-transform:matrix(0.132935,-0.001595,0.003000,0.249982,0,0);}
.m22_c01211{transform:matrix(0.140864,0.002113,-0.003750,0.249972,0,0);-ms-transform:matrix(0.140864,0.002113,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.140864,0.002113,-0.003750,0.249972,0,0);}
.m23_c01211{transform:matrix(0.144350,-0.001732,0.003000,0.249982,0,0);-ms-transform:matrix(0.144350,-0.001732,0.003000,0.249982,0,0);-webkit-transform:matrix(0.144350,-0.001732,0.003000,0.249982,0,0);}
.m1d_c01211{transform:matrix(0.159082,0.002386,-0.003750,0.249972,0,0);-ms-transform:matrix(0.159082,0.002386,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.159082,0.002386,-0.003750,0.249972,0,0);}
.m27_c01211{transform:matrix(0.159848,-0.001918,0.003000,0.249982,0,0);-ms-transform:matrix(0.159848,-0.001918,0.003000,0.249982,0,0);-webkit-transform:matrix(0.159848,-0.001918,0.003000,0.249982,0,0);}
.m1_c01211{transform:matrix(0.179570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179570,0.000000,0.000000,0.250000,0,0);}
.m25_c01211{transform:matrix(0.180142,-0.002162,0.003000,0.249982,0,0);-ms-transform:matrix(0.180142,-0.002162,0.003000,0.249982,0,0);-webkit-transform:matrix(0.180142,-0.002162,0.003000,0.249982,0,0);}
.m1e_c01211{transform:matrix(0.185069,0.002776,-0.003750,0.249972,0,0);-ms-transform:matrix(0.185069,0.002776,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.185069,0.002776,-0.003750,0.249972,0,0);}
.m4_c01211{transform:matrix(0.207100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207100,0.000000,0.000000,0.250000,0,0);}
.m11_c01211{transform:matrix(0.215225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215225,0.000000,0.000000,0.250000,0,0);}
.m13_c01211{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.mb_c01211{transform:matrix(0.225815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225815,0.000000,0.000000,0.250000,0,0);}
.m14_c01211{transform:matrix(0.228690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228690,0.000000,0.000000,0.250000,0,0);}
.m12_c01211{transform:matrix(0.230730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230730,0.000000,0.000000,0.250000,0,0);}
.md_c01211{transform:matrix(0.233955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233955,0.000000,0.000000,0.250000,0,0);}
.me_c01211{transform:matrix(0.236830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236830,0.000000,0.000000,0.250000,0,0);}
.m5_c01211{transform:matrix(0.238385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238385,0.000000,0.000000,0.250000,0,0);}
.m2_c01211{transform:matrix(0.252390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252390,0.000000,0.000000,0.250000,0,0);}
.m16_c01211{transform:matrix(0.266145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266145,0.000000,0.000000,0.250000,0,0);}
.m17_c01211{transform:matrix(0.269490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269490,0.000000,0.000000,0.250000,0,0);}
.ma_c01211{transform:matrix(0.273395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273395,0.000000,0.000000,0.250000,0,0);}
.mc_c01211{transform:matrix(0.284265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284265,0.000000,0.000000,0.250000,0,0);}
.m3_c01211{transform:matrix(0.286925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286925,0.000000,0.000000,0.250000,0,0);}
.mf_c01211{transform:matrix(0.303930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303930,0.000000,0.000000,0.250000,0,0);}
.m18_c01211{transform:matrix(0.317065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317065,0.000000,0.000000,0.250000,0,0);}
.m6_c01211{transform:matrix(0.319955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319955,0.000000,0.000000,0.250000,0,0);}
.m7_c01211{transform:matrix(0.343000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343000,0.000000,0.000000,0.250000,0,0);}
.m15_c01211{transform:matrix(0.379545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379545,0.000000,0.000000,0.250000,0,0);}
.m9_c01211{transform:matrix(0.491760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491760,0.000000,0.000000,0.250000,0,0);}
.m10_c01211{transform:matrix(0.517620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517620,0.000000,0.000000,0.250000,0,0);}
.m0_c01211{transform:matrix(0.622355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.622355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.622355,0.000000,0.000000,0.250000,0,0);}
.m8_c01211{transform:matrix(2.272955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.272955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.272955,0.000000,0.000000,0.250000,0,0);}
.v0_c01211{vertical-align:0.000000px;}
.ls0_c01211{letter-spacing:0.000000px;}
.sc__c01211{text-shadow:none;}
.sc0_c01211{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__c01211{-webkit-text-stroke:0px transparent;}
.sc0_c01211{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01211{word-spacing:0.000000px;}
._0_c01211{margin-left:-82.683924px;}
.fc0_c01211{color:transparent;}
.fs1_c01211{font-size:42.000000px;}
.fs2_c01211{font-size:48.000000px;}
.fs0_c01211{font-size:54.000000px;}
.fs5_c01211{font-size:84.000000px;}
.fs4_c01211{font-size:114.000000px;}
.fs3_c01211{font-size:120.000000px;}
.fs7_c01211{font-size:180.012960px;}
.fs6_c01211{font-size:198.022274px;}
.y0_c01211{bottom:0.000000px;}
.y15_c01211{bottom:748.713000px;}
.y16_c01211{bottom:749.111484px;}
.y17_c01211{bottom:749.550414px;}
.y18_c01211{bottom:750.242676px;}
.y19_c01211{bottom:751.234674px;}
.y1a_c01211{bottom:751.986462px;}
.y14_c01211{bottom:923.009212px;}
.y13_c01211{bottom:923.446680px;}
.y12_c01211{bottom:923.812935px;}
.y11_c01211{bottom:924.315990px;}
.y10_c01211{bottom:925.674405px;}
.yf_c01211{bottom:926.138895px;}
.ye_c01211{bottom:926.978122px;}
.yd_c01211{bottom:928.160048px;}
.yc_c01211{bottom:928.665015px;}
.yb_c01211{bottom:929.346000px;}
.ya_c01211{bottom:1004.445000px;}
.y9_c01211{bottom:1039.113000px;}
.y6_c01211{bottom:1095.930000px;}
.y1_c01211{bottom:1103.490000px;}
.y8_c01211{bottom:1105.650000px;}
.y7_c01211{bottom:1106.460000px;}
.y5_c01211{bottom:1109.970000px;}
.y3_c01211{bottom:1110.240000px;}
.y4_c01211{bottom:1110.780000px;}
.y2_c01211{bottom:1111.050000px;}
.h3_c01211{height:42.000000px;}
.h4_c01211{height:48.000000px;}
.h2_c01211{height:54.000000px;}
.h7_c01211{height:84.000000px;}
.h6_c01211{height:114.000000px;}
.h5_c01211{height:120.000000px;}
.h9_c01211{height:180.012960px;}
.h8_c01211{height:198.022274px;}
.h1_c01211{height:1258.500000px;}
.h0_c01211{height:1258.740000px;}
.w0_c01211{width:904.200000px;}
.w1_c01211{width:904.500000px;}
.x0_c01211{left:0.000000px;}
.x10_c01211{left:8.370000px;}
.xa_c01211{left:22.950000px;}
.x19_c01211{left:45.022500px;}
.x11_c01211{left:58.320000px;}
.x1a_c01211{left:78.687000px;}
.x1_c01211{left:82.620000px;}
.x12_c01211{left:92.340000px;}
.x21_c01211{left:98.581500px;}
.xb_c01211{left:113.670000px;}
.x22_c01211{left:131.788500px;}
.x1b_c01211{left:157.482000px;}
.x2_c01211{left:160.650000px;}
.x23_c01211{left:168.366000px;}
.x13_c01211{left:169.560000px;}
.x3_c01211{left:171.180000px;}
.xc_c01211{left:182.520000px;}
.x4_c01211{left:190.080000px;}
.x14_c01211{left:205.470000px;}
.x1c_c01211{left:213.430500px;}
.x5_c01211{left:225.720000px;}
.x6_c01211{left:237.060000px;}
.x1d_c01211{left:244.396500px;}
.x15_c01211{left:281.340000px;}
.xd_c01211{left:283.230000px;}
.x7_c01211{left:292.950000px;}
.x24_c01211{left:308.721000px;}
.x1e_c01211{left:334.957500px;}
.x16_c01211{left:338.040000px;}
.x8_c01211{left:347.760000px;}
.xe_c01211{left:359.370000px;}
.x17_c01211{left:362.610000px;}
.x9_c01211{left:369.360000px;}
.x25_c01211{left:371.370000px;}
.x18_c01211{left:383.670000px;}
.x1f_c01211{left:392.911500px;}
.xf_c01211{left:413.910000px;}
.x20_c01211{left:422.076000px;}
@media print{
.v0_c01211{vertical-align:0.000000pt;}
.ls0_c01211{letter-spacing:0.000000pt;}
.ws0_c01211{word-spacing:0.000000pt;}
._0_c01211{margin-left:-73.496822pt;}
.fs1_c01211{font-size:37.333333pt;}
.fs2_c01211{font-size:42.666667pt;}
.fs0_c01211{font-size:48.000000pt;}
.fs5_c01211{font-size:74.666667pt;}
.fs4_c01211{font-size:101.333333pt;}
.fs3_c01211{font-size:106.666667pt;}
.fs7_c01211{font-size:160.011520pt;}
.fs6_c01211{font-size:176.019799pt;}
.y0_c01211{bottom:0.000000pt;}
.y15_c01211{bottom:665.522667pt;}
.y16_c01211{bottom:665.876875pt;}
.y17_c01211{bottom:666.267035pt;}
.y18_c01211{bottom:666.882379pt;}
.y19_c01211{bottom:667.764155pt;}
.y1a_c01211{bottom:668.432411pt;}
.y14_c01211{bottom:820.452633pt;}
.y13_c01211{bottom:820.841493pt;}
.y12_c01211{bottom:821.167053pt;}
.y11_c01211{bottom:821.614213pt;}
.y10_c01211{bottom:822.821693pt;}
.yf_c01211{bottom:823.234573pt;}
.ye_c01211{bottom:823.980553pt;}
.yd_c01211{bottom:825.031153pt;}
.yc_c01211{bottom:825.480013pt;}
.yb_c01211{bottom:826.085333pt;}
.ya_c01211{bottom:892.840000pt;}
.y9_c01211{bottom:923.656000pt;}
.y6_c01211{bottom:974.160000pt;}
.y1_c01211{bottom:980.880000pt;}
.y8_c01211{bottom:982.800000pt;}
.y7_c01211{bottom:983.520000pt;}
.y5_c01211{bottom:986.640000pt;}
.y3_c01211{bottom:986.880000pt;}
.y4_c01211{bottom:987.360000pt;}
.y2_c01211{bottom:987.600000pt;}
.h3_c01211{height:37.333333pt;}
.h4_c01211{height:42.666667pt;}
.h2_c01211{height:48.000000pt;}
.h7_c01211{height:74.666667pt;}
.h6_c01211{height:101.333333pt;}
.h5_c01211{height:106.666667pt;}
.h9_c01211{height:160.011520pt;}
.h8_c01211{height:176.019799pt;}
.h1_c01211{height:1118.666667pt;}
.h0_c01211{height:1118.880000pt;}
.w0_c01211{width:803.733333pt;}
.w1_c01211{width:804.000000pt;}
.x0_c01211{left:0.000000pt;}
.x10_c01211{left:7.440000pt;}
.xa_c01211{left:20.400000pt;}
.x19_c01211{left:40.020000pt;}
.x11_c01211{left:51.840000pt;}
.x1a_c01211{left:69.944000pt;}
.x1_c01211{left:73.440000pt;}
.x12_c01211{left:82.080000pt;}
.x21_c01211{left:87.628000pt;}
.xb_c01211{left:101.040000pt;}
.x22_c01211{left:117.145333pt;}
.x1b_c01211{left:139.984000pt;}
.x2_c01211{left:142.800000pt;}
.x23_c01211{left:149.658667pt;}
.x13_c01211{left:150.720000pt;}
.x3_c01211{left:152.160000pt;}
.xc_c01211{left:162.240000pt;}
.x4_c01211{left:168.960000pt;}
.x14_c01211{left:182.640000pt;}
.x1c_c01211{left:189.716000pt;}
.x5_c01211{left:200.640000pt;}
.x6_c01211{left:210.720000pt;}
.x1d_c01211{left:217.241333pt;}
.x15_c01211{left:250.080000pt;}
.xd_c01211{left:251.760000pt;}
.x7_c01211{left:260.400000pt;}
.x24_c01211{left:274.418667pt;}
.x1e_c01211{left:297.740000pt;}
.x16_c01211{left:300.480000pt;}
.x8_c01211{left:309.120000pt;}
.xe_c01211{left:319.440000pt;}
.x17_c01211{left:322.320000pt;}
.x9_c01211{left:328.320000pt;}
.x25_c01211{left:330.106667pt;}
.x18_c01211{left:341.040000pt;}
.x1f_c01211{left:349.254667pt;}
.xf_c01211{left:367.920000pt;}
.x20_c01211{left:375.178667pt;}
}





/* 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_c01212 {
    display:none;
  }
  .loading-indicator_c01212.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01212 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_c01212 { 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_c01212" -> "#page-container .classname_c01212")
 */
.pf_c01212 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01212 { /* 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_c01212.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01212 { /* 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_c01212 { /* 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_c01212 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01212 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01212 {overflow:visible;}
  }
}
.c_c01212 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01212 { /* 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_c01212:after { /* webkit #35443 */
  content: '';
}
.t_c01212:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01212 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 */
}
.__c01212 { /* 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_c01212 { /* info for Javascript */
  display:none;
}
.l_c01212 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01212 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01212 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01212: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_c01212 {
    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_c01212.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01212.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_c01212 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01212{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01212;src:url('chunks/assets/font_c605e72f209fc835e906f064.woff2')format("woff");}.ff1_c01212{font-family:ff1_c01212;line-height:1.000000;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;}
.m64_c01212{transform:matrix(0.011570,0.000069,-0.001500,0.249996,0,0);-ms-transform:matrix(0.011570,0.000069,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.011570,0.000069,-0.001500,0.249996,0,0);}
.m158_c01212{transform:matrix(0.016950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.016950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.016950,0.000000,0.000000,0.250000,0,0);}
.m159_c01212{transform:matrix(0.026205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.026205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.026205,0.000000,0.000000,0.250000,0,0);}
.m110_c01212{transform:matrix(0.032145,0.000161,-0.001250,0.249997,0,0);-ms-transform:matrix(0.032145,0.000161,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.032145,0.000161,-0.001250,0.249997,0,0);}
.mf0_c01212{transform:matrix(0.034269,0.000206,-0.001500,0.249996,0,0);-ms-transform:matrix(0.034269,0.000206,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.034269,0.000206,-0.001500,0.249996,0,0);}
.m16_c01212{transform:matrix(0.044250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.044250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.044250,0.000000,0.000000,0.250000,0,0);}
.m133_c01212{transform:matrix(0.090310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090310,0.000000,0.000000,0.250000,0,0);}
.m12e_c01212{transform:matrix(0.092845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092845,0.000000,0.000000,0.250000,0,0);}
.m0_c01212{transform:matrix(0.093695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093695,0.000000,0.000000,0.250000,0,0);}
.m10e_c01212{transform:matrix(0.095569,0.000478,-0.001250,0.249997,0,0);-ms-transform:matrix(0.095569,0.000478,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.095569,0.000478,-0.001250,0.249997,0,0);}
.m10c_c01212{transform:matrix(0.096429,0.000482,-0.001250,0.249997,0,0);-ms-transform:matrix(0.096429,0.000482,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.096429,0.000482,-0.001250,0.249997,0,0);}
.m131_c01212{transform:matrix(0.132105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132105,0.000000,0.000000,0.250000,0,0);}
.ma6_c01212{transform:matrix(0.136823,0.000821,-0.001500,0.249996,0,0);-ms-transform:matrix(0.136823,0.000821,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.136823,0.000821,-0.001500,0.249996,0,0);}
.m16d_c01212{transform:matrix(0.137690,0.001652,-0.003000,0.249982,0,0);-ms-transform:matrix(0.137690,0.001652,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.137690,0.001652,-0.003000,0.249982,0,0);}
.m130_c01212{transform:matrix(0.140090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140090,0.000000,0.000000,0.250000,0,0);}
.m16e_c01212{transform:matrix(0.144210,0.001731,-0.003000,0.249982,0,0);-ms-transform:matrix(0.144210,0.001731,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.144210,0.001731,-0.003000,0.249982,0,0);}
.m167_c01212{transform:matrix(0.153198,0.002604,-0.004249,0.249964,0,0);-ms-transform:matrix(0.153198,0.002604,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.153198,0.002604,-0.004249,0.249964,0,0);}
.m171_c01212{transform:matrix(0.154304,0.001852,-0.003000,0.249982,0,0);-ms-transform:matrix(0.154304,0.001852,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.154304,0.001852,-0.003000,0.249982,0,0);}
.m16b_c01212{transform:matrix(0.156074,0.001873,-0.003000,0.249982,0,0);-ms-transform:matrix(0.156074,0.001873,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.156074,0.001873,-0.003000,0.249982,0,0);}
.m16c_c01212{transform:matrix(0.156529,0.001878,-0.003000,0.249982,0,0);-ms-transform:matrix(0.156529,0.001878,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.156529,0.001878,-0.003000,0.249982,0,0);}
.m170_c01212{transform:matrix(0.160673,0.001928,-0.003000,0.249982,0,0);-ms-transform:matrix(0.160673,0.001928,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.160673,0.001928,-0.003000,0.249982,0,0);}
.m16f_c01212{transform:matrix(0.166028,0.001992,-0.003000,0.249982,0,0);-ms-transform:matrix(0.166028,0.001992,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.166028,0.001992,-0.003000,0.249982,0,0);}
.m132_c01212{transform:matrix(0.168020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168020,0.000000,0.000000,0.250000,0,0);}
.m3_c01212{transform:matrix(0.181195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181195,0.000000,0.000000,0.250000,0,0);}
.m115_c01212{transform:matrix(0.185430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185430,0.000000,0.000000,0.250000,0,0);}
.m102_c01212{transform:matrix(0.186043,0.000930,-0.001250,0.249997,0,0);-ms-transform:matrix(0.186043,0.000930,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.186043,0.000930,-0.001250,0.249997,0,0);}
.m3d_c01212{transform:matrix(0.188408,0.003203,-0.004249,0.249964,0,0);-ms-transform:matrix(0.188408,0.003203,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.188408,0.003203,-0.004249,0.249964,0,0);}
.m16a_c01212{transform:matrix(0.188761,0.002265,-0.003000,0.249982,0,0);-ms-transform:matrix(0.188761,0.002265,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.188761,0.002265,-0.003000,0.249982,0,0);}
.m142_c01212{transform:matrix(0.190962,0.003246,-0.004249,0.249964,0,0);-ms-transform:matrix(0.190962,0.003246,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.190962,0.003246,-0.004249,0.249964,0,0);}
.m13a_c01212{transform:matrix(0.191268,0.000956,-0.001250,0.249997,0,0);-ms-transform:matrix(0.191268,0.000956,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.191268,0.000956,-0.001250,0.249997,0,0);}
.m119_c01212{transform:matrix(0.191600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191600,0.000000,0.000000,0.250000,0,0);}
.m11a_c01212{transform:matrix(0.192885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192885,0.000000,0.000000,0.250000,0,0);}
.m152_c01212{transform:matrix(0.194565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194565,0.000000,0.000000,0.250000,0,0);}
.m109_c01212{transform:matrix(0.195573,0.000978,-0.001250,0.249997,0,0);-ms-transform:matrix(0.195573,0.000978,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.195573,0.000978,-0.001250,0.249997,0,0);}
.m11b_c01212{transform:matrix(0.196175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196175,0.000000,0.000000,0.250000,0,0);}
.m108_c01212{transform:matrix(0.197213,0.000986,-0.001250,0.249997,0,0);-ms-transform:matrix(0.197213,0.000986,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.197213,0.000986,-0.001250,0.249997,0,0);}
.mbf_c01212{transform:matrix(0.200354,0.001603,-0.002000,0.249992,0,0);-ms-transform:matrix(0.200354,0.001603,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.200354,0.001603,-0.002000,0.249992,0,0);}
.mc8_c01212{transform:matrix(0.201304,0.001610,-0.002000,0.249992,0,0);-ms-transform:matrix(0.201304,0.001610,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.201304,0.001610,-0.002000,0.249992,0,0);}
.mcb_c01212{transform:matrix(0.201609,0.001613,-0.002000,0.249992,0,0);-ms-transform:matrix(0.201609,0.001613,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.201609,0.001613,-0.002000,0.249992,0,0);}
.m100_c01212{transform:matrix(0.202947,0.001015,-0.001250,0.249997,0,0);-ms-transform:matrix(0.202947,0.001015,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.202947,0.001015,-0.001250,0.249997,0,0);}
.mca_c01212{transform:matrix(0.203543,0.001628,-0.002000,0.249992,0,0);-ms-transform:matrix(0.203543,0.001628,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.203543,0.001628,-0.002000,0.249992,0,0);}
.m106_c01212{transform:matrix(0.204127,0.001021,-0.001250,0.249997,0,0);-ms-transform:matrix(0.204127,0.001021,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.204127,0.001021,-0.001250,0.249997,0,0);}
.m15a_c01212{transform:matrix(0.205390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205390,0.000000,0.000000,0.250000,0,0);}
.mc_c01212{transform:matrix(0.205405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205405,0.000000,0.000000,0.250000,0,0);}
.m87_c01212{transform:matrix(0.205726,0.001234,-0.001500,0.249996,0,0);-ms-transform:matrix(0.205726,0.001234,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.205726,0.001234,-0.001500,0.249996,0,0);}
.m114_c01212{transform:matrix(0.206830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206830,0.000000,0.000000,0.250000,0,0);}
.m117_c01212{transform:matrix(0.207715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207715,0.000000,0.000000,0.250000,0,0);}
.mf8_c01212{transform:matrix(0.208096,0.001249,-0.001500,0.249996,0,0);-ms-transform:matrix(0.208096,0.001249,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.208096,0.001249,-0.001500,0.249996,0,0);}
.m15e_c01212{transform:matrix(0.209405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209405,0.000000,0.000000,0.250000,0,0);}
.m10a_c01212{transform:matrix(0.209847,0.001049,-0.001250,0.249997,0,0);-ms-transform:matrix(0.209847,0.001049,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.209847,0.001049,-0.001250,0.249997,0,0);}
.mcf_c01212{transform:matrix(0.210613,0.001685,-0.002000,0.249992,0,0);-ms-transform:matrix(0.210613,0.001685,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.210613,0.001685,-0.002000,0.249992,0,0);}
.mde_c01212{transform:matrix(0.211183,0.001689,-0.002000,0.249992,0,0);-ms-transform:matrix(0.211183,0.001689,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.211183,0.001689,-0.002000,0.249992,0,0);}
.m140_c01212{transform:matrix(0.211304,0.003592,-0.004249,0.249964,0,0);-ms-transform:matrix(0.211304,0.003592,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.211304,0.003592,-0.004249,0.249964,0,0);}
.ma7_c01212{transform:matrix(0.212273,0.001698,-0.002000,0.249992,0,0);-ms-transform:matrix(0.212273,0.001698,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.212273,0.001698,-0.002000,0.249992,0,0);}
.ma9_c01212{transform:matrix(0.212418,0.001699,-0.002000,0.249992,0,0);-ms-transform:matrix(0.212418,0.001699,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.212418,0.001699,-0.002000,0.249992,0,0);}
.md3_c01212{transform:matrix(0.212488,0.001700,-0.002000,0.249992,0,0);-ms-transform:matrix(0.212488,0.001700,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.212488,0.001700,-0.002000,0.249992,0,0);}
.m168_c01212{transform:matrix(0.213194,0.003624,-0.004249,0.249964,0,0);-ms-transform:matrix(0.213194,0.003624,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.213194,0.003624,-0.004249,0.249964,0,0);}
.m118_c01212{transform:matrix(0.213280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213280,0.000000,0.000000,0.250000,0,0);}
.m38_c01212{transform:matrix(0.213569,0.003631,-0.004249,0.249964,0,0);-ms-transform:matrix(0.213569,0.003631,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.213569,0.003631,-0.004249,0.249964,0,0);}
.m128_c01212{transform:matrix(0.213600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213600,0.000000,0.000000,0.250000,0,0);}
.m7_c01212{transform:matrix(0.213805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213805,0.000000,0.000000,0.250000,0,0);}
.mc1_c01212{transform:matrix(0.213838,0.001711,-0.002000,0.249992,0,0);-ms-transform:matrix(0.213838,0.001711,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.213838,0.001711,-0.002000,0.249992,0,0);}
.mc2_c01212{transform:matrix(0.214113,0.001713,-0.002000,0.249992,0,0);-ms-transform:matrix(0.214113,0.001713,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.214113,0.001713,-0.002000,0.249992,0,0);}
.m14e_c01212{transform:matrix(0.214390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214390,0.000000,0.000000,0.250000,0,0);}
.mab_c01212{transform:matrix(0.214758,0.001718,-0.002000,0.249992,0,0);-ms-transform:matrix(0.214758,0.001718,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.214758,0.001718,-0.002000,0.249992,0,0);}
.m6a_c01212{transform:matrix(0.214951,0.001290,-0.001500,0.249996,0,0);-ms-transform:matrix(0.214951,0.001290,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.214951,0.001290,-0.001500,0.249996,0,0);}
.m104_c01212{transform:matrix(0.215422,0.001077,-0.001250,0.249997,0,0);-ms-transform:matrix(0.215422,0.001077,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.215422,0.001077,-0.001250,0.249997,0,0);}
.m3f_c01212{transform:matrix(0.215679,0.003667,-0.004249,0.249964,0,0);-ms-transform:matrix(0.215679,0.003667,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.215679,0.003667,-0.004249,0.249964,0,0);}
.m1c_c01212{transform:matrix(0.215694,0.002588,-0.003000,0.249982,0,0);-ms-transform:matrix(0.215694,0.002588,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.215694,0.002588,-0.003000,0.249982,0,0);}
.mf2_c01212{transform:matrix(0.215706,0.001294,-0.001500,0.249996,0,0);-ms-transform:matrix(0.215706,0.001294,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.215706,0.001294,-0.001500,0.249996,0,0);}
.m120_c01212{transform:matrix(0.215825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215825,0.000000,0.000000,0.250000,0,0);}
.m11d_c01212{transform:matrix(0.216540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216540,0.000000,0.000000,0.250000,0,0);}
.m89_c01212{transform:matrix(0.217036,0.001302,-0.001500,0.249996,0,0);-ms-transform:matrix(0.217036,0.001302,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.217036,0.001302,-0.001500,0.249996,0,0);}
.m8b_c01212{transform:matrix(0.217051,0.001302,-0.001500,0.249996,0,0);-ms-transform:matrix(0.217051,0.001302,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.217051,0.001302,-0.001500,0.249996,0,0);}
.m160_c01212{transform:matrix(0.217055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217055,0.000000,0.000000,0.250000,0,0);}
.maf_c01212{transform:matrix(0.217823,0.001743,-0.002000,0.249992,0,0);-ms-transform:matrix(0.217823,0.001743,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.217823,0.001743,-0.002000,0.249992,0,0);}
.m6f_c01212{transform:matrix(0.217826,0.001307,-0.001500,0.249996,0,0);-ms-transform:matrix(0.217826,0.001307,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.217826,0.001307,-0.001500,0.249996,0,0);}
.m12b_c01212{transform:matrix(0.218420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218420,0.000000,0.000000,0.250000,0,0);}
.m15f_c01212{transform:matrix(0.218435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218435,0.000000,0.000000,0.250000,0,0);}
.mda_c01212{transform:matrix(0.218743,0.001750,-0.002000,0.249992,0,0);-ms-transform:matrix(0.218743,0.001750,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.218743,0.001750,-0.002000,0.249992,0,0);}
.mad_c01212{transform:matrix(0.219153,0.001753,-0.002000,0.249992,0,0);-ms-transform:matrix(0.219153,0.001753,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.219153,0.001753,-0.002000,0.249992,0,0);}
.mfa_c01212{transform:matrix(0.219156,0.001315,-0.001500,0.249996,0,0);-ms-transform:matrix(0.219156,0.001315,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.219156,0.001315,-0.001500,0.249996,0,0);}
.m122_c01212{transform:matrix(0.219160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219160,0.000000,0.000000,0.250000,0,0);}
.m107_c01212{transform:matrix(0.219332,0.001097,-0.001250,0.249997,0,0);-ms-transform:matrix(0.219332,0.001097,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.219332,0.001097,-0.001250,0.249997,0,0);}
.m11c_c01212{transform:matrix(0.219945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219945,0.000000,0.000000,0.250000,0,0);}
.me8_c01212{transform:matrix(0.220491,0.002866,-0.003250,0.249979,0,0);-ms-transform:matrix(0.220491,0.002866,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.220491,0.002866,-0.003250,0.249979,0,0);}
.m8d_c01212{transform:matrix(0.221271,0.001328,-0.001500,0.249996,0,0);-ms-transform:matrix(0.221271,0.001328,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.221271,0.001328,-0.001500,0.249996,0,0);}
.m113_c01212{transform:matrix(0.221415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221415,0.000000,0.000000,0.250000,0,0);}
.m112_c01212{transform:matrix(0.221445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221445,0.000000,0.000000,0.250000,0,0);}
.m103_c01212{transform:matrix(0.222567,0.001113,-0.001250,0.249997,0,0);-ms-transform:matrix(0.222567,0.001113,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.222567,0.001113,-0.001250,0.249997,0,0);}
.m7c_c01212{transform:matrix(0.222736,0.001336,-0.001500,0.249996,0,0);-ms-transform:matrix(0.222736,0.001336,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.222736,0.001336,-0.001500,0.249996,0,0);}
.mfd_c01212{transform:matrix(0.223741,0.001342,-0.001500,0.249996,0,0);-ms-transform:matrix(0.223741,0.001342,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.223741,0.001342,-0.001500,0.249996,0,0);}
.mf5_c01212{transform:matrix(0.224721,0.001348,-0.001500,0.249996,0,0);-ms-transform:matrix(0.224721,0.001348,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.224721,0.001348,-0.001500,0.249996,0,0);}
.m44_c01212{transform:matrix(0.225436,0.001353,-0.001500,0.249996,0,0);-ms-transform:matrix(0.225436,0.001353,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.225436,0.001353,-0.001500,0.249996,0,0);}
.md2_c01212{transform:matrix(0.225513,0.001804,-0.002000,0.249992,0,0);-ms-transform:matrix(0.225513,0.001804,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.225513,0.001804,-0.002000,0.249992,0,0);}
.m22_c01212{transform:matrix(0.225704,0.002708,-0.003000,0.249982,0,0);-ms-transform:matrix(0.225704,0.002708,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.225704,0.002708,-0.003000,0.249982,0,0);}
.m11f_c01212{transform:matrix(0.226300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226300,0.000000,0.000000,0.250000,0,0);}
.m166_c01212{transform:matrix(0.226407,0.003849,-0.004249,0.249964,0,0);-ms-transform:matrix(0.226407,0.003849,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.226407,0.003849,-0.004249,0.249964,0,0);}
.m8a_c01212{transform:matrix(0.226506,0.001359,-0.001500,0.249996,0,0);-ms-transform:matrix(0.226506,0.001359,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.226506,0.001359,-0.001500,0.249996,0,0);}
.m126_c01212{transform:matrix(0.226510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226510,0.000000,0.000000,0.250000,0,0);}
.mf4_c01212{transform:matrix(0.226646,0.001360,-0.001500,0.249996,0,0);-ms-transform:matrix(0.226646,0.001360,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.226646,0.001360,-0.001500,0.249996,0,0);}
.maa_c01212{transform:matrix(0.227013,0.001816,-0.002000,0.249992,0,0);-ms-transform:matrix(0.227013,0.001816,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.227013,0.001816,-0.002000,0.249992,0,0);}
.m151_c01212{transform:matrix(0.227020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227020,0.000000,0.000000,0.250000,0,0);}
.mc7_c01212{transform:matrix(0.227043,0.001816,-0.002000,0.249992,0,0);-ms-transform:matrix(0.227043,0.001816,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.227043,0.001816,-0.002000,0.249992,0,0);}
.m13f_c01212{transform:matrix(0.227717,0.003871,-0.004249,0.249964,0,0);-ms-transform:matrix(0.227717,0.003871,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.227717,0.003871,-0.004249,0.249964,0,0);}
.m12f_c01212{transform:matrix(0.228165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228165,0.000000,0.000000,0.250000,0,0);}
.ma3_c01212{transform:matrix(0.228191,0.001369,-0.001500,0.249996,0,0);-ms-transform:matrix(0.228191,0.001369,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.228191,0.001369,-0.001500,0.249996,0,0);}
.m105_c01212{transform:matrix(0.229152,0.001146,-0.001250,0.249997,0,0);-ms-transform:matrix(0.229152,0.001146,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.229152,0.001146,-0.001250,0.249997,0,0);}
.m74_c01212{transform:matrix(0.229296,0.001376,-0.001500,0.249996,0,0);-ms-transform:matrix(0.229296,0.001376,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.229296,0.001376,-0.001500,0.249996,0,0);}
.m144_c01212{transform:matrix(0.229557,0.003902,-0.004249,0.249964,0,0);-ms-transform:matrix(0.229557,0.003902,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.229557,0.003902,-0.004249,0.249964,0,0);}
.m9d_c01212{transform:matrix(0.230671,0.001384,-0.001500,0.249996,0,0);-ms-transform:matrix(0.230671,0.001384,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.230671,0.001384,-0.001500,0.249996,0,0);}
.m101_c01212{transform:matrix(0.231192,0.001156,-0.001250,0.249997,0,0);-ms-transform:matrix(0.231192,0.001156,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.231192,0.001156,-0.001250,0.249997,0,0);}
.m116_c01212{transform:matrix(0.231830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231830,0.000000,0.000000,0.250000,0,0);}
.m1b_c01212{transform:matrix(0.232148,0.002786,-0.003000,0.249982,0,0);-ms-transform:matrix(0.232148,0.002786,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.232148,0.002786,-0.003000,0.249982,0,0);}
.m14f_c01212{transform:matrix(0.232440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232440,0.000000,0.000000,0.250000,0,0);}
.md5_c01212{transform:matrix(0.233013,0.001864,-0.002000,0.249992,0,0);-ms-transform:matrix(0.233013,0.001864,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.233013,0.001864,-0.002000,0.249992,0,0);}
.m20_c01212{transform:matrix(0.233223,0.002799,-0.003000,0.249982,0,0);-ms-transform:matrix(0.233223,0.002799,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.233223,0.002799,-0.003000,0.249982,0,0);}
.m27_c01212{transform:matrix(0.233863,0.002806,-0.003000,0.249982,0,0);-ms-transform:matrix(0.233863,0.002806,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.233863,0.002806,-0.003000,0.249982,0,0);}
.me0_c01212{transform:matrix(0.233955,0.003041,-0.003250,0.249979,0,0);-ms-transform:matrix(0.233955,0.003041,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.233955,0.003041,-0.003250,0.249979,0,0);}
.mb3_c01212{transform:matrix(0.234113,0.001873,-0.002000,0.249992,0,0);-ms-transform:matrix(0.234113,0.001873,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.234113,0.001873,-0.002000,0.249992,0,0);}
.mf6_c01212{transform:matrix(0.234221,0.001405,-0.001500,0.249996,0,0);-ms-transform:matrix(0.234221,0.001405,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.234221,0.001405,-0.001500,0.249996,0,0);}
.m154_c01212{transform:matrix(0.234225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234225,0.000000,0.000000,0.250000,0,0);}
.m153_c01212{transform:matrix(0.234675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234675,0.000000,0.000000,0.250000,0,0);}
.m12a_c01212{transform:matrix(0.234845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234845,0.000000,0.000000,0.250000,0,0);}
.me2_c01212{transform:matrix(0.234885,0.003054,-0.003250,0.249979,0,0);-ms-transform:matrix(0.234885,0.003054,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.234885,0.003054,-0.003250,0.249979,0,0);}
.m3b_c01212{transform:matrix(0.234901,0.003993,-0.004249,0.249964,0,0);-ms-transform:matrix(0.234901,0.003993,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.234901,0.003993,-0.004249,0.249964,0,0);}
.m2_c01212{transform:matrix(0.235125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235125,0.000000,0.000000,0.250000,0,0);}
.mbb_c01212{transform:matrix(0.235312,0.001882,-0.002000,0.249992,0,0);-ms-transform:matrix(0.235312,0.001882,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.235312,0.001882,-0.002000,0.249992,0,0);}
.m42_c01212{transform:matrix(0.235316,0.001412,-0.001500,0.249996,0,0);-ms-transform:matrix(0.235316,0.001412,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.235316,0.001412,-0.001500,0.249996,0,0);}
.mac_c01212{transform:matrix(0.235377,0.001883,-0.002000,0.249992,0,0);-ms-transform:matrix(0.235377,0.001883,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.235377,0.001883,-0.002000,0.249992,0,0);}
.m5_c01212{transform:matrix(0.235580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235580,0.000000,0.000000,0.250000,0,0);}
.m163_c01212{transform:matrix(0.235650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235650,0.000000,0.000000,0.250000,0,0);}
.mc0_c01212{transform:matrix(0.236647,0.001893,-0.002000,0.249992,0,0);-ms-transform:matrix(0.236647,0.001893,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.236647,0.001893,-0.002000,0.249992,0,0);}
.m45_c01212{transform:matrix(0.236781,0.001421,-0.001500,0.249996,0,0);-ms-transform:matrix(0.236781,0.001421,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.236781,0.001421,-0.001500,0.249996,0,0);}
.mdb_c01212{transform:matrix(0.237302,0.001898,-0.002000,0.249992,0,0);-ms-transform:matrix(0.237302,0.001898,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.237302,0.001898,-0.002000,0.249992,0,0);}
.m32_c01212{transform:matrix(0.237618,0.002851,-0.003000,0.249982,0,0);-ms-transform:matrix(0.237618,0.002851,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.237618,0.002851,-0.003000,0.249982,0,0);}
.m14a_c01212{transform:matrix(0.238201,0.004049,-0.004249,0.249964,0,0);-ms-transform:matrix(0.238201,0.004049,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.238201,0.004049,-0.004249,0.249964,0,0);}
.m8e_c01212{transform:matrix(0.238646,0.001432,-0.001500,0.249996,0,0);-ms-transform:matrix(0.238646,0.001432,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.238646,0.001432,-0.001500,0.249996,0,0);}
.m6_c01212{transform:matrix(0.238735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238735,0.000000,0.000000,0.250000,0,0);}
.m162_c01212{transform:matrix(0.239070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239070,0.000000,0.000000,0.250000,0,0);}
.m15d_c01212{transform:matrix(0.239125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239125,0.000000,0.000000,0.250000,0,0);}
.me7_c01212{transform:matrix(0.239570,0.003114,-0.003250,0.249979,0,0);-ms-transform:matrix(0.239570,0.003114,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.239570,0.003114,-0.003250,0.249979,0,0);}
.mfb_c01212{transform:matrix(0.240291,0.001442,-0.001500,0.249996,0,0);-ms-transform:matrix(0.240291,0.001442,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.240291,0.001442,-0.001500,0.249996,0,0);}
.m56_c01212{transform:matrix(0.240466,0.001443,-0.001500,0.249996,0,0);-ms-transform:matrix(0.240466,0.001443,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.240466,0.001443,-0.001500,0.249996,0,0);}
.mdc_c01212{transform:matrix(0.240547,0.001924,-0.002000,0.249992,0,0);-ms-transform:matrix(0.240547,0.001924,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.240547,0.001924,-0.002000,0.249992,0,0);}
.m65_c01212{transform:matrix(0.241296,0.001448,-0.001500,0.249996,0,0);-ms-transform:matrix(0.241296,0.001448,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.241296,0.001448,-0.001500,0.249996,0,0);}
.ma8_c01212{transform:matrix(0.241437,0.001931,-0.002000,0.249992,0,0);-ms-transform:matrix(0.241437,0.001931,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.241437,0.001931,-0.002000,0.249992,0,0);}
.mb2_c01212{transform:matrix(0.241512,0.001932,-0.002000,0.249992,0,0);-ms-transform:matrix(0.241512,0.001932,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.241512,0.001932,-0.002000,0.249992,0,0);}
.m123_c01212{transform:matrix(0.242395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242395,0.000000,0.000000,0.250000,0,0);}
.mb1_c01212{transform:matrix(0.242707,0.001942,-0.002000,0.249992,0,0);-ms-transform:matrix(0.242707,0.001942,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.242707,0.001942,-0.002000,0.249992,0,0);}
.m2a_c01212{transform:matrix(0.242833,0.002914,-0.003000,0.249982,0,0);-ms-transform:matrix(0.242833,0.002914,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.242833,0.002914,-0.003000,0.249982,0,0);}
.m9f_c01212{transform:matrix(0.242846,0.001457,-0.001500,0.249996,0,0);-ms-transform:matrix(0.242846,0.001457,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.242846,0.001457,-0.001500,0.249996,0,0);}
.m8_c01212{transform:matrix(0.243020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243020,0.000000,0.000000,0.250000,0,0);}
.m4b_c01212{transform:matrix(0.244081,0.001464,-0.001500,0.249996,0,0);-ms-transform:matrix(0.244081,0.001464,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.244081,0.001464,-0.001500,0.249996,0,0);}
.m127_c01212{transform:matrix(0.244475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244475,0.000000,0.000000,0.250000,0,0);}
.m4d_c01212{transform:matrix(0.244616,0.001468,-0.001500,0.249996,0,0);-ms-transform:matrix(0.244616,0.001468,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.244616,0.001468,-0.001500,0.249996,0,0);}
.m93_c01212{transform:matrix(0.244676,0.001468,-0.001500,0.249996,0,0);-ms-transform:matrix(0.244676,0.001468,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.244676,0.001468,-0.001500,0.249996,0,0);}
.m5f_c01212{transform:matrix(0.244701,0.001468,-0.001500,0.249996,0,0);-ms-transform:matrix(0.244701,0.001468,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.244701,0.001468,-0.001500,0.249996,0,0);}
.m9c_c01212{transform:matrix(0.245486,0.001473,-0.001500,0.249996,0,0);-ms-transform:matrix(0.245486,0.001473,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.245486,0.001473,-0.001500,0.249996,0,0);}
.mcc_c01212{transform:matrix(0.245742,0.001966,-0.002000,0.249992,0,0);-ms-transform:matrix(0.245742,0.001966,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.245742,0.001966,-0.002000,0.249992,0,0);}
.m36_c01212{transform:matrix(0.245862,0.002950,-0.003000,0.249982,0,0);-ms-transform:matrix(0.245862,0.002950,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.245862,0.002950,-0.003000,0.249982,0,0);}
.m149_c01212{transform:matrix(0.246039,0.004183,-0.004249,0.249964,0,0);-ms-transform:matrix(0.246039,0.004183,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.246039,0.004183,-0.004249,0.249964,0,0);}
.md0_c01212{transform:matrix(0.246257,0.001970,-0.002000,0.249992,0,0);-ms-transform:matrix(0.246257,0.001970,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.246257,0.001970,-0.002000,0.249992,0,0);}
.m125_c01212{transform:matrix(0.246260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246260,0.000000,0.000000,0.250000,0,0);}
.mf3_c01212{transform:matrix(0.246476,0.001479,-0.001500,0.249996,0,0);-ms-transform:matrix(0.246476,0.001479,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.246476,0.001479,-0.001500,0.249996,0,0);}
.m2d_c01212{transform:matrix(0.246602,0.002959,-0.003000,0.249982,0,0);-ms-transform:matrix(0.246602,0.002959,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.246602,0.002959,-0.003000,0.249982,0,0);}
.mc6_c01212{transform:matrix(0.246877,0.001975,-0.002000,0.249992,0,0);-ms-transform:matrix(0.246877,0.001975,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.246877,0.001975,-0.002000,0.249992,0,0);}
.mff_c01212{transform:matrix(0.246936,0.001482,-0.001500,0.249996,0,0);-ms-transform:matrix(0.246936,0.001482,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.246936,0.001482,-0.001500,0.249996,0,0);}
.m161_c01212{transform:matrix(0.247135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247135,0.000000,0.000000,0.250000,0,0);}
.m18_c01212{transform:matrix(0.247137,0.002966,-0.003000,0.249982,0,0);-ms-transform:matrix(0.247137,0.002966,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.247137,0.002966,-0.003000,0.249982,0,0);}
.m14c_c01212{transform:matrix(0.247155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247155,0.000000,0.000000,0.250000,0,0);}
.m10b_c01212{transform:matrix(0.248017,0.001240,-0.001250,0.249997,0,0);-ms-transform:matrix(0.248017,0.001240,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.248017,0.001240,-0.001250,0.249997,0,0);}
.m4_c01212{transform:matrix(0.248030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248030,0.000000,0.000000,0.250000,0,0);}
.m70_c01212{transform:matrix(0.248246,0.001489,-0.001500,0.249996,0,0);-ms-transform:matrix(0.248246,0.001489,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.248246,0.001489,-0.001500,0.249996,0,0);}
.mce_c01212{transform:matrix(0.248332,0.001987,-0.002000,0.249992,0,0);-ms-transform:matrix(0.248332,0.001987,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.248332,0.001987,-0.002000,0.249992,0,0);}
.m129_c01212{transform:matrix(0.248700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248700,0.000000,0.000000,0.250000,0,0);}
.m73_c01212{transform:matrix(0.248856,0.001493,-0.001500,0.249996,0,0);-ms-transform:matrix(0.248856,0.001493,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.248856,0.001493,-0.001500,0.249996,0,0);}
.m147_c01212{transform:matrix(0.249354,0.004239,-0.004249,0.249964,0,0);-ms-transform:matrix(0.249354,0.004239,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.249354,0.004239,-0.004249,0.249964,0,0);}
.mc3_c01212{transform:matrix(0.249537,0.001996,-0.002000,0.249992,0,0);-ms-transform:matrix(0.249537,0.001996,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.249537,0.001996,-0.002000,0.249992,0,0);}
.m150_c01212{transform:matrix(0.250255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250255,0.000000,0.000000,0.250000,0,0);}
.md1_c01212{transform:matrix(0.250607,0.002005,-0.002000,0.249992,0,0);-ms-transform:matrix(0.250607,0.002005,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.250607,0.002005,-0.002000,0.249992,0,0);}
.m26_c01212{transform:matrix(0.250982,0.003012,-0.003000,0.249982,0,0);-ms-transform:matrix(0.250982,0.003012,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.250982,0.003012,-0.003000,0.249982,0,0);}
.m5d_c01212{transform:matrix(0.251220,0.001507,-0.001500,0.249996,0,0);-ms-transform:matrix(0.251220,0.001507,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.251220,0.001507,-0.001500,0.249996,0,0);}
.mf7_c01212{transform:matrix(0.251515,0.001509,-0.001500,0.249996,0,0);-ms-transform:matrix(0.251515,0.001509,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.251515,0.001509,-0.001500,0.249996,0,0);}
.m145_c01212{transform:matrix(0.252169,0.004287,-0.004249,0.249964,0,0);-ms-transform:matrix(0.252169,0.004287,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.252169,0.004287,-0.004249,0.249964,0,0);}
.m68_c01212{transform:matrix(0.253480,0.001521,-0.001500,0.249996,0,0);-ms-transform:matrix(0.253480,0.001521,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.253480,0.001521,-0.001500,0.249996,0,0);}
.m138_c01212{transform:matrix(0.253567,0.001268,-0.001250,0.249997,0,0);-ms-transform:matrix(0.253567,0.001268,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.253567,0.001268,-0.001250,0.249997,0,0);}
.m6d_c01212{transform:matrix(0.254305,0.001526,-0.001500,0.249996,0,0);-ms-transform:matrix(0.254305,0.001526,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.254305,0.001526,-0.001500,0.249996,0,0);}
.m39_c01212{transform:matrix(0.254633,0.004329,-0.004249,0.249964,0,0);-ms-transform:matrix(0.254633,0.004329,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.254633,0.004329,-0.004249,0.249964,0,0);}
.m12d_c01212{transform:matrix(0.254670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254670,0.000000,0.000000,0.250000,0,0);}
.meb_c01212{transform:matrix(0.254698,0.003311,-0.003250,0.249979,0,0);-ms-transform:matrix(0.254698,0.003311,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.254698,0.003311,-0.003250,0.249979,0,0);}
.m46_c01212{transform:matrix(0.254975,0.001530,-0.001500,0.249996,0,0);-ms-transform:matrix(0.254975,0.001530,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.254975,0.001530,-0.001500,0.249996,0,0);}
.me1_c01212{transform:matrix(0.255063,0.003316,-0.003250,0.249979,0,0);-ms-transform:matrix(0.255063,0.003316,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.255063,0.003316,-0.003250,0.249979,0,0);}
.m21_c01212{transform:matrix(0.255887,0.003071,-0.003000,0.249982,0,0);-ms-transform:matrix(0.255887,0.003071,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.255887,0.003071,-0.003000,0.249982,0,0);}
.me_c01212{transform:matrix(0.256010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256010,0.000000,0.000000,0.250000,0,0);}
.mc9_c01212{transform:matrix(0.256157,0.002049,-0.002000,0.249992,0,0);-ms-transform:matrix(0.256157,0.002049,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.256157,0.002049,-0.002000,0.249992,0,0);}
.m9_c01212{transform:matrix(0.256655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256655,0.000000,0.000000,0.250000,0,0);}
.ma_c01212{transform:matrix(0.256695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256695,0.000000,0.000000,0.250000,0,0);}
.m28_c01212{transform:matrix(0.256767,0.003081,-0.003000,0.249982,0,0);-ms-transform:matrix(0.256767,0.003081,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.256767,0.003081,-0.003000,0.249982,0,0);}
.ma2_c01212{transform:matrix(0.257120,0.001543,-0.001500,0.249996,0,0);-ms-transform:matrix(0.257120,0.001543,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.257120,0.001543,-0.001500,0.249996,0,0);}
.m99_c01212{transform:matrix(0.258610,0.001552,-0.001500,0.249996,0,0);-ms-transform:matrix(0.258610,0.001552,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.258610,0.001552,-0.001500,0.249996,0,0);}
.m78_c01212{transform:matrix(0.258690,0.001552,-0.001500,0.249996,0,0);-ms-transform:matrix(0.258690,0.001552,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.258690,0.001552,-0.001500,0.249996,0,0);}
.ma1_c01212{transform:matrix(0.258725,0.001552,-0.001500,0.249996,0,0);-ms-transform:matrix(0.258725,0.001552,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.258725,0.001552,-0.001500,0.249996,0,0);}
.mb_c01212{transform:matrix(0.258835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258835,0.000000,0.000000,0.250000,0,0);}
.m3e_c01212{transform:matrix(0.260082,0.004421,-0.004249,0.249964,0,0);-ms-transform:matrix(0.260082,0.004421,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.260082,0.004421,-0.004249,0.249964,0,0);}
.m141_c01212{transform:matrix(0.260312,0.004425,-0.004249,0.249964,0,0);-ms-transform:matrix(0.260312,0.004425,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.260312,0.004425,-0.004249,0.249964,0,0);}
.m69_c01212{transform:matrix(0.260420,0.001563,-0.001500,0.249996,0,0);-ms-transform:matrix(0.260420,0.001563,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.260420,0.001563,-0.001500,0.249996,0,0);}
.m51_c01212{transform:matrix(0.260460,0.001563,-0.001500,0.249996,0,0);-ms-transform:matrix(0.260460,0.001563,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.260460,0.001563,-0.001500,0.249996,0,0);}
.m17_c01212{transform:matrix(0.260481,0.003126,-0.003000,0.249982,0,0);-ms-transform:matrix(0.260481,0.003126,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.260481,0.003126,-0.003000,0.249982,0,0);}
.m13b_c01212{transform:matrix(0.260762,0.001304,-0.001250,0.249997,0,0);-ms-transform:matrix(0.260762,0.001304,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.260762,0.001304,-0.001250,0.249997,0,0);}
.m146_c01212{transform:matrix(0.260977,0.004437,-0.004249,0.249964,0,0);-ms-transform:matrix(0.260977,0.004437,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.260977,0.004437,-0.004249,0.249964,0,0);}
.m6e_c01212{transform:matrix(0.261040,0.001566,-0.001500,0.249996,0,0);-ms-transform:matrix(0.261040,0.001566,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.261040,0.001566,-0.001500,0.249996,0,0);}
.mb5_c01212{transform:matrix(0.261427,0.002091,-0.002000,0.249992,0,0);-ms-transform:matrix(0.261427,0.002091,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.261427,0.002091,-0.002000,0.249992,0,0);}
.m1d_c01212{transform:matrix(0.261531,0.003138,-0.003000,0.249982,0,0);-ms-transform:matrix(0.261531,0.003138,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.261531,0.003138,-0.003000,0.249982,0,0);}
.mf9_c01212{transform:matrix(0.261610,0.001570,-0.001500,0.249996,0,0);-ms-transform:matrix(0.261610,0.001570,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.261610,0.001570,-0.001500,0.249996,0,0);}
.m165_c01212{transform:matrix(0.261797,0.004451,-0.004249,0.249964,0,0);-ms-transform:matrix(0.261797,0.004451,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.261797,0.004451,-0.004249,0.249964,0,0);}
.m155_c01212{transform:matrix(0.262060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262060,0.000000,0.000000,0.250000,0,0);}
.m10_c01212{transform:matrix(0.262145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262145,0.000000,0.000000,0.250000,0,0);}
.m121_c01212{transform:matrix(0.262205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262205,0.000000,0.000000,0.250000,0,0);}
.mcd_c01212{transform:matrix(0.262292,0.002098,-0.002000,0.249992,0,0);-ms-transform:matrix(0.262292,0.002098,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.262292,0.002098,-0.002000,0.249992,0,0);}
.mb8_c01212{transform:matrix(0.262457,0.002100,-0.002000,0.249992,0,0);-ms-transform:matrix(0.262457,0.002100,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.262457,0.002100,-0.002000,0.249992,0,0);}
.m136_c01212{transform:matrix(0.263007,0.001315,-0.001250,0.249997,0,0);-ms-transform:matrix(0.263007,0.001315,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.263007,0.001315,-0.001250,0.249997,0,0);}
.m14b_c01212{transform:matrix(0.263285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263285,0.000000,0.000000,0.250000,0,0);}
.m15c_c01212{transform:matrix(0.263495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263495,0.000000,0.000000,0.250000,0,0);}
.m4e_c01212{transform:matrix(0.263605,0.001582,-0.001500,0.249996,0,0);-ms-transform:matrix(0.263605,0.001582,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.263605,0.001582,-0.001500,0.249996,0,0);}
.mbe_c01212{transform:matrix(0.263652,0.002109,-0.002000,0.249992,0,0);-ms-transform:matrix(0.263652,0.002109,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.263652,0.002109,-0.002000,0.249992,0,0);}
.m7b_c01212{transform:matrix(0.263945,0.001584,-0.001500,0.249996,0,0);-ms-transform:matrix(0.263945,0.001584,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.263945,0.001584,-0.001500,0.249996,0,0);}
.m54_c01212{transform:matrix(0.265525,0.001593,-0.001500,0.249996,0,0);-ms-transform:matrix(0.265525,0.001593,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.265525,0.001593,-0.001500,0.249996,0,0);}
.m164_c01212{transform:matrix(0.266352,0.004528,-0.004249,0.249964,0,0);-ms-transform:matrix(0.266352,0.004528,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.266352,0.004528,-0.004249,0.249964,0,0);}
.m15b_c01212{transform:matrix(0.266390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266390,0.000000,0.000000,0.250000,0,0);}
.me6_c01212{transform:matrix(0.266457,0.003464,-0.003250,0.249979,0,0);-ms-transform:matrix(0.266457,0.003464,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.266457,0.003464,-0.003250,0.249979,0,0);}
.m92_c01212{transform:matrix(0.266690,0.001600,-0.001500,0.249996,0,0);-ms-transform:matrix(0.266690,0.001600,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.266690,0.001600,-0.001500,0.249996,0,0);}
.m66_c01212{transform:matrix(0.267570,0.001605,-0.001500,0.249996,0,0);-ms-transform:matrix(0.267570,0.001605,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.267570,0.001605,-0.001500,0.249996,0,0);}
.mfc_c01212{transform:matrix(0.267655,0.001606,-0.001500,0.249996,0,0);-ms-transform:matrix(0.267655,0.001606,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.267655,0.001606,-0.001500,0.249996,0,0);}
.m169_c01212{transform:matrix(0.267846,0.004553,-0.004249,0.249964,0,0);-ms-transform:matrix(0.267846,0.004553,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.267846,0.004553,-0.004249,0.249964,0,0);}
.m3c_c01212{transform:matrix(0.267851,0.004553,-0.004249,0.249964,0,0);-ms-transform:matrix(0.267851,0.004553,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.267851,0.004553,-0.004249,0.249964,0,0);}
.m124_c01212{transform:matrix(0.268435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268435,0.000000,0.000000,0.250000,0,0);}
.m19_c01212{transform:matrix(0.268441,0.003221,-0.003000,0.249982,0,0);-ms-transform:matrix(0.268441,0.003221,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.268441,0.003221,-0.003000,0.249982,0,0);}
.mb4_c01212{transform:matrix(0.268456,0.002148,-0.002000,0.249992,0,0);-ms-transform:matrix(0.268456,0.002148,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.268456,0.002148,-0.002000,0.249992,0,0);}
.m3a_c01212{transform:matrix(0.268581,0.004566,-0.004249,0.249964,0,0);-ms-transform:matrix(0.268581,0.004566,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.268581,0.004566,-0.004249,0.249964,0,0);}
.m10f_c01212{transform:matrix(0.268632,0.001343,-0.001250,0.249997,0,0);-ms-transform:matrix(0.268632,0.001343,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.268632,0.001343,-0.001250,0.249997,0,0);}
.m6c_c01212{transform:matrix(0.269045,0.001614,-0.001500,0.249996,0,0);-ms-transform:matrix(0.269045,0.001614,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.269045,0.001614,-0.001500,0.249996,0,0);}
.m59_c01212{transform:matrix(0.269660,0.001618,-0.001500,0.249996,0,0);-ms-transform:matrix(0.269660,0.001618,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.269660,0.001618,-0.001500,0.249996,0,0);}
.m37_c01212{transform:matrix(0.270236,0.004594,-0.004249,0.249964,0,0);-ms-transform:matrix(0.270236,0.004594,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.270236,0.004594,-0.004249,0.249964,0,0);}
.m9b_c01212{transform:matrix(0.270545,0.001623,-0.001500,0.249996,0,0);-ms-transform:matrix(0.270545,0.001623,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.270545,0.001623,-0.001500,0.249996,0,0);}
.mfe_c01212{transform:matrix(0.270685,0.001624,-0.001500,0.249996,0,0);-ms-transform:matrix(0.270685,0.001624,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.270685,0.001624,-0.001500,0.249996,0,0);}
.mc5_c01212{transform:matrix(0.271111,0.002169,-0.002000,0.249992,0,0);-ms-transform:matrix(0.271111,0.002169,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.271111,0.002169,-0.002000,0.249992,0,0);}
.m8c_c01212{transform:matrix(0.271525,0.001629,-0.001500,0.249996,0,0);-ms-transform:matrix(0.271525,0.001629,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.271525,0.001629,-0.001500,0.249996,0,0);}
.m67_c01212{transform:matrix(0.272005,0.001632,-0.001500,0.249996,0,0);-ms-transform:matrix(0.272005,0.001632,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.272005,0.001632,-0.001500,0.249996,0,0);}
.m14d_c01212{transform:matrix(0.272170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272170,0.000000,0.000000,0.250000,0,0);}
.mdf_c01212{transform:matrix(0.272951,0.002184,-0.002000,0.249992,0,0);-ms-transform:matrix(0.272951,0.002184,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.272951,0.002184,-0.002000,0.249992,0,0);}
.m40_c01212{transform:matrix(0.273326,0.004647,-0.004249,0.249964,0,0);-ms-transform:matrix(0.273326,0.004647,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.273326,0.004647,-0.004249,0.249964,0,0);}
.me3_c01212{transform:matrix(0.273902,0.003561,-0.003250,0.249979,0,0);-ms-transform:matrix(0.273902,0.003561,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.273902,0.003561,-0.003250,0.249979,0,0);}
.m137_c01212{transform:matrix(0.273992,0.001370,-0.001250,0.249997,0,0);-ms-transform:matrix(0.273992,0.001370,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.273992,0.001370,-0.001250,0.249997,0,0);}
.m6b_c01212{transform:matrix(0.274005,0.001644,-0.001500,0.249996,0,0);-ms-transform:matrix(0.274005,0.001644,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.274005,0.001644,-0.001500,0.249996,0,0);}
.m135_c01212{transform:matrix(0.274507,0.001373,-0.001250,0.249997,0,0);-ms-transform:matrix(0.274507,0.001373,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.274507,0.001373,-0.001250,0.249997,0,0);}
.me9_c01212{transform:matrix(0.274802,0.003572,-0.003250,0.249979,0,0);-ms-transform:matrix(0.274802,0.003572,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.274802,0.003572,-0.003250,0.249979,0,0);}
.m91_c01212{transform:matrix(0.274850,0.001649,-0.001500,0.249996,0,0);-ms-transform:matrix(0.274850,0.001649,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.274850,0.001649,-0.001500,0.249996,0,0);}
.m88_c01212{transform:matrix(0.274900,0.001649,-0.001500,0.249996,0,0);-ms-transform:matrix(0.274900,0.001649,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.274900,0.001649,-0.001500,0.249996,0,0);}
.mae_c01212{transform:matrix(0.274916,0.002199,-0.002000,0.249992,0,0);-ms-transform:matrix(0.274916,0.002199,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.274916,0.002199,-0.002000,0.249992,0,0);}
.m49_c01212{transform:matrix(0.275125,0.001651,-0.001500,0.249996,0,0);-ms-transform:matrix(0.275125,0.001651,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.275125,0.001651,-0.001500,0.249996,0,0);}
.m143_c01212{transform:matrix(0.275205,0.004678,-0.004249,0.249964,0,0);-ms-transform:matrix(0.275205,0.004678,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.275205,0.004678,-0.004249,0.249964,0,0);}
.mef_c01212{transform:matrix(0.275360,0.001652,-0.001500,0.249996,0,0);-ms-transform:matrix(0.275360,0.001652,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.275360,0.001652,-0.001500,0.249996,0,0);}
.m148_c01212{transform:matrix(0.276155,0.004695,-0.004249,0.249964,0,0);-ms-transform:matrix(0.276155,0.004695,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.276155,0.004695,-0.004249,0.249964,0,0);}
.m79_c01212{transform:matrix(0.276620,0.001660,-0.001500,0.249996,0,0);-ms-transform:matrix(0.276620,0.001660,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.276620,0.001660,-0.001500,0.249996,0,0);}
.me5_c01212{transform:matrix(0.276792,0.003598,-0.003250,0.249979,0,0);-ms-transform:matrix(0.276792,0.003598,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.276792,0.003598,-0.003250,0.249979,0,0);}
.m1e_c01212{transform:matrix(0.277385,0.003329,-0.003000,0.249982,0,0);-ms-transform:matrix(0.277385,0.003329,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.277385,0.003329,-0.003000,0.249982,0,0);}
.m62_c01212{transform:matrix(0.277720,0.001666,-0.001500,0.249996,0,0);-ms-transform:matrix(0.277720,0.001666,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.277720,0.001666,-0.001500,0.249996,0,0);}
.m41_c01212{transform:matrix(0.277975,0.004726,-0.004249,0.249964,0,0);-ms-transform:matrix(0.277975,0.004726,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.277975,0.004726,-0.004249,0.249964,0,0);}
.m33_c01212{transform:matrix(0.278105,0.003337,-0.003000,0.249982,0,0);-ms-transform:matrix(0.278105,0.003337,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.278105,0.003337,-0.003000,0.249982,0,0);}
.m35_c01212{transform:matrix(0.278975,0.003348,-0.003000,0.249982,0,0);-ms-transform:matrix(0.278975,0.003348,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.278975,0.003348,-0.003000,0.249982,0,0);}
.m90_c01212{transform:matrix(0.278990,0.001674,-0.001500,0.249996,0,0);-ms-transform:matrix(0.278990,0.001674,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.278990,0.001674,-0.001500,0.249996,0,0);}
.m11_c01212{transform:matrix(0.279970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279970,0.000000,0.000000,0.250000,0,0);}
.m43_c01212{transform:matrix(0.280340,0.001682,-0.001500,0.249996,0,0);-ms-transform:matrix(0.280340,0.001682,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.280340,0.001682,-0.001500,0.249996,0,0);}
.m156_c01212{transform:matrix(0.281335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281335,0.000000,0.000000,0.250000,0,0);}
.m47_c01212{transform:matrix(0.281795,0.001691,-0.001500,0.249996,0,0);-ms-transform:matrix(0.281795,0.001691,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.281795,0.001691,-0.001500,0.249996,0,0);}
.ma0_c01212{transform:matrix(0.282450,0.001695,-0.001500,0.249996,0,0);-ms-transform:matrix(0.282450,0.001695,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.282450,0.001695,-0.001500,0.249996,0,0);}
.m34_c01212{transform:matrix(0.283090,0.003397,-0.003000,0.249982,0,0);-ms-transform:matrix(0.283090,0.003397,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.283090,0.003397,-0.003000,0.249982,0,0);}
.m4c_c01212{transform:matrix(0.283780,0.001703,-0.001500,0.249996,0,0);-ms-transform:matrix(0.283780,0.001703,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.283780,0.001703,-0.001500,0.249996,0,0);}
.mb9_c01212{transform:matrix(0.284016,0.002272,-0.002000,0.249992,0,0);-ms-transform:matrix(0.284016,0.002272,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.284016,0.002272,-0.002000,0.249992,0,0);}
.md_c01212{transform:matrix(0.284565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284565,0.000000,0.000000,0.250000,0,0);}
.mee_c01212{transform:matrix(0.284760,0.001709,-0.001500,0.249996,0,0);-ms-transform:matrix(0.284760,0.001709,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.284760,0.001709,-0.001500,0.249996,0,0);}
.m75_c01212{transform:matrix(0.285015,0.001710,-0.001500,0.249996,0,0);-ms-transform:matrix(0.285015,0.001710,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.285015,0.001710,-0.001500,0.249996,0,0);}
.mf_c01212{transform:matrix(0.285160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285160,0.000000,0.000000,0.250000,0,0);}
.ma4_c01212{transform:matrix(0.286070,0.001716,-0.001500,0.249996,0,0);-ms-transform:matrix(0.286070,0.001716,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.286070,0.001716,-0.001500,0.249996,0,0);}
.mb7_c01212{transform:matrix(0.286406,0.002291,-0.002000,0.249992,0,0);-ms-transform:matrix(0.286406,0.002291,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.286406,0.002291,-0.002000,0.249992,0,0);}
.md4_c01212{transform:matrix(0.287021,0.002296,-0.002000,0.249992,0,0);-ms-transform:matrix(0.287021,0.002296,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.287021,0.002296,-0.002000,0.249992,0,0);}
.m2f_c01212{transform:matrix(0.287329,0.003448,-0.003000,0.249982,0,0);-ms-transform:matrix(0.287329,0.003448,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.287329,0.003448,-0.003000,0.249982,0,0);}
.m98_c01212{transform:matrix(0.288000,0.001728,-0.001500,0.249996,0,0);-ms-transform:matrix(0.288000,0.001728,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.288000,0.001728,-0.001500,0.249996,0,0);}
.m81_c01212{transform:matrix(0.288355,0.001730,-0.001500,0.249996,0,0);-ms-transform:matrix(0.288355,0.001730,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.288355,0.001730,-0.001500,0.249996,0,0);}
.m77_c01212{transform:matrix(0.288360,0.001730,-0.001500,0.249996,0,0);-ms-transform:matrix(0.288360,0.001730,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.288360,0.001730,-0.001500,0.249996,0,0);}
.m12_c01212{transform:matrix(0.288870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288870,0.000000,0.000000,0.250000,0,0);}
.m7e_c01212{transform:matrix(0.289155,0.001735,-0.001500,0.249996,0,0);-ms-transform:matrix(0.289155,0.001735,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.289155,0.001735,-0.001500,0.249996,0,0);}
.m2c_c01212{transform:matrix(0.289939,0.003479,-0.003000,0.249982,0,0);-ms-transform:matrix(0.289939,0.003479,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.289939,0.003479,-0.003000,0.249982,0,0);}
.md9_c01212{transform:matrix(0.291141,0.002329,-0.002000,0.249992,0,0);-ms-transform:matrix(0.291141,0.002329,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.291141,0.002329,-0.002000,0.249992,0,0);}
.m139_c01212{transform:matrix(0.291461,0.001457,-0.001250,0.249997,0,0);-ms-transform:matrix(0.291461,0.001457,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.291461,0.001457,-0.001250,0.249997,0,0);}
.m1a_c01212{transform:matrix(0.291664,0.003500,-0.003000,0.249982,0,0);-ms-transform:matrix(0.291664,0.003500,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.291664,0.003500,-0.003000,0.249982,0,0);}
.m13c_c01212{transform:matrix(0.291741,0.001459,-0.001250,0.249997,0,0);-ms-transform:matrix(0.291741,0.001459,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.291741,0.001459,-0.001250,0.249997,0,0);}
.m4a_c01212{transform:matrix(0.291825,0.001751,-0.001500,0.249996,0,0);-ms-transform:matrix(0.291825,0.001751,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.291825,0.001751,-0.001500,0.249996,0,0);}
.me4_c01212{transform:matrix(0.292595,0.003804,-0.003250,0.249979,0,0);-ms-transform:matrix(0.292595,0.003804,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.292595,0.003804,-0.003250,0.249979,0,0);}
.m94_c01212{transform:matrix(0.292640,0.001756,-0.001500,0.249996,0,0);-ms-transform:matrix(0.292640,0.001756,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.292640,0.001756,-0.001500,0.249996,0,0);}
.m72_c01212{transform:matrix(0.292865,0.001757,-0.001500,0.249996,0,0);-ms-transform:matrix(0.292865,0.001757,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.292865,0.001757,-0.001500,0.249996,0,0);}
.m48_c01212{transform:matrix(0.293105,0.001759,-0.001500,0.249996,0,0);-ms-transform:matrix(0.293105,0.001759,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.293105,0.001759,-0.001500,0.249996,0,0);}
.m83_c01212{transform:matrix(0.293260,0.001760,-0.001500,0.249996,0,0);-ms-transform:matrix(0.293260,0.001760,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.293260,0.001760,-0.001500,0.249996,0,0);}
.m23_c01212{transform:matrix(0.293299,0.003520,-0.003000,0.249982,0,0);-ms-transform:matrix(0.293299,0.003520,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.293299,0.003520,-0.003000,0.249982,0,0);}
.m25_c01212{transform:matrix(0.293799,0.003526,-0.003000,0.249982,0,0);-ms-transform:matrix(0.293799,0.003526,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.293799,0.003526,-0.003000,0.249982,0,0);}
.m9e_c01212{transform:matrix(0.293840,0.001763,-0.001500,0.249996,0,0);-ms-transform:matrix(0.293840,0.001763,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.293840,0.001763,-0.001500,0.249996,0,0);}
.m5a_c01212{transform:matrix(0.294565,0.001767,-0.001500,0.249996,0,0);-ms-transform:matrix(0.294565,0.001767,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.294565,0.001767,-0.001500,0.249996,0,0);}
.m31_c01212{transform:matrix(0.294804,0.003538,-0.003000,0.249982,0,0);-ms-transform:matrix(0.294804,0.003538,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.294804,0.003538,-0.003000,0.249982,0,0);}
.md7_c01212{transform:matrix(0.296091,0.002369,-0.002000,0.249992,0,0);-ms-transform:matrix(0.296091,0.002369,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.296091,0.002369,-0.002000,0.249992,0,0);}
.md6_c01212{transform:matrix(0.296136,0.002369,-0.002000,0.249992,0,0);-ms-transform:matrix(0.296136,0.002369,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.296136,0.002369,-0.002000,0.249992,0,0);}
.mb6_c01212{transform:matrix(0.296626,0.002373,-0.002000,0.249992,0,0);-ms-transform:matrix(0.296626,0.002373,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.296626,0.002373,-0.002000,0.249992,0,0);}
.m15_c01212{transform:matrix(0.296790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296790,0.000000,0.000000,0.250000,0,0);}
.m5c_c01212{transform:matrix(0.297165,0.001783,-0.001500,0.249996,0,0);-ms-transform:matrix(0.297165,0.001783,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.297165,0.001783,-0.001500,0.249996,0,0);}
.ma5_c01212{transform:matrix(0.298790,0.001793,-0.001500,0.249996,0,0);-ms-transform:matrix(0.298790,0.001793,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.298790,0.001793,-0.001500,0.249996,0,0);}
.m13_c01212{transform:matrix(0.299125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299125,0.000000,0.000000,0.250000,0,0);}
.m24_c01212{transform:matrix(0.299318,0.003592,-0.003000,0.249982,0,0);-ms-transform:matrix(0.299318,0.003592,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.299318,0.003592,-0.003000,0.249982,0,0);}
.m96_c01212{transform:matrix(0.300070,0.001800,-0.001500,0.249996,0,0);-ms-transform:matrix(0.300070,0.001800,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.300070,0.001800,-0.001500,0.249996,0,0);}
.m2b_c01212{transform:matrix(0.300203,0.003602,-0.003000,0.249982,0,0);-ms-transform:matrix(0.300203,0.003602,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.300203,0.003602,-0.003000,0.249982,0,0);}
.mb0_c01212{transform:matrix(0.300260,0.002402,-0.002000,0.249992,0,0);-ms-transform:matrix(0.300260,0.002402,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.300260,0.002402,-0.002000,0.249992,0,0);}
.m5e_c01212{transform:matrix(0.300350,0.001802,-0.001500,0.249996,0,0);-ms-transform:matrix(0.300350,0.001802,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.300350,0.001802,-0.001500,0.249996,0,0);}
.mdd_c01212{transform:matrix(0.300505,0.002404,-0.002000,0.249992,0,0);-ms-transform:matrix(0.300505,0.002404,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.300505,0.002404,-0.002000,0.249992,0,0);}
.m13d_c01212{transform:matrix(0.301006,0.001505,-0.001250,0.249997,0,0);-ms-transform:matrix(0.301006,0.001505,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.301006,0.001505,-0.001250,0.249997,0,0);}
.m60_c01212{transform:matrix(0.301095,0.001807,-0.001500,0.249996,0,0);-ms-transform:matrix(0.301095,0.001807,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.301095,0.001807,-0.001500,0.249996,0,0);}
.m76_c01212{transform:matrix(0.301325,0.001808,-0.001500,0.249996,0,0);-ms-transform:matrix(0.301325,0.001808,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.301325,0.001808,-0.001500,0.249996,0,0);}
.mbd_c01212{transform:matrix(0.301495,0.002412,-0.002000,0.249992,0,0);-ms-transform:matrix(0.301495,0.002412,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.301495,0.002412,-0.002000,0.249992,0,0);}
.mbc_c01212{transform:matrix(0.301875,0.002415,-0.002000,0.249992,0,0);-ms-transform:matrix(0.301875,0.002415,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.301875,0.002415,-0.002000,0.249992,0,0);}
.m9a_c01212{transform:matrix(0.301930,0.001812,-0.001500,0.249996,0,0);-ms-transform:matrix(0.301930,0.001812,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.301930,0.001812,-0.001500,0.249996,0,0);}
.m57_c01212{transform:matrix(0.302920,0.001818,-0.001500,0.249996,0,0);-ms-transform:matrix(0.302920,0.001818,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.302920,0.001818,-0.001500,0.249996,0,0);}
.m95_c01212{transform:matrix(0.304020,0.001824,-0.001500,0.249996,0,0);-ms-transform:matrix(0.304020,0.001824,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.304020,0.001824,-0.001500,0.249996,0,0);}
.m63_c01212{transform:matrix(0.305060,0.001830,-0.001500,0.249996,0,0);-ms-transform:matrix(0.305060,0.001830,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.305060,0.001830,-0.001500,0.249996,0,0);}
.m29_c01212{transform:matrix(0.305973,0.003672,-0.003000,0.249982,0,0);-ms-transform:matrix(0.305973,0.003672,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.305973,0.003672,-0.003000,0.249982,0,0);}
.m111_c01212{transform:matrix(0.309386,0.001547,-0.001250,0.249997,0,0);-ms-transform:matrix(0.309386,0.001547,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.309386,0.001547,-0.001250,0.249997,0,0);}
.m50_c01212{transform:matrix(0.309894,0.001859,-0.001500,0.249996,0,0);-ms-transform:matrix(0.309894,0.001859,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.309894,0.001859,-0.001500,0.249996,0,0);}
.m30_c01212{transform:matrix(0.309923,0.003719,-0.003000,0.249982,0,0);-ms-transform:matrix(0.309923,0.003719,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.309923,0.003719,-0.003000,0.249982,0,0);}
.m61_c01212{transform:matrix(0.310089,0.001861,-0.001500,0.249996,0,0);-ms-transform:matrix(0.310089,0.001861,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.310089,0.001861,-0.001500,0.249996,0,0);}
.m2e_c01212{transform:matrix(0.310783,0.003729,-0.003000,0.249982,0,0);-ms-transform:matrix(0.310783,0.003729,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.310783,0.003729,-0.003000,0.249982,0,0);}
.m55_c01212{transform:matrix(0.311649,0.001870,-0.001500,0.249996,0,0);-ms-transform:matrix(0.311649,0.001870,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.311649,0.001870,-0.001500,0.249996,0,0);}
.m7d_c01212{transform:matrix(0.315789,0.001895,-0.001500,0.249996,0,0);-ms-transform:matrix(0.315789,0.001895,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.315789,0.001895,-0.001500,0.249996,0,0);}
.m97_c01212{transform:matrix(0.317634,0.001906,-0.001500,0.249996,0,0);-ms-transform:matrix(0.317634,0.001906,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.317634,0.001906,-0.001500,0.249996,0,0);}
.m7f_c01212{transform:matrix(0.321284,0.001928,-0.001500,0.249996,0,0);-ms-transform:matrix(0.321284,0.001928,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.321284,0.001928,-0.001500,0.249996,0,0);}
.m1_c01212{transform:matrix(0.321310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321310,0.000000,0.000000,0.250000,0,0);}
.mea_c01212{transform:matrix(0.322038,0.004186,-0.003250,0.249979,0,0);-ms-transform:matrix(0.322038,0.004186,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.322038,0.004186,-0.003250,0.249979,0,0);}
.m53_c01212{transform:matrix(0.324774,0.001949,-0.001500,0.249996,0,0);-ms-transform:matrix(0.324774,0.001949,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.324774,0.001949,-0.001500,0.249996,0,0);}
.m134_c01212{transform:matrix(0.325440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325440,0.000000,0.000000,0.250000,0,0);}
.m52_c01212{transform:matrix(0.326199,0.001957,-0.001500,0.249996,0,0);-ms-transform:matrix(0.326199,0.001957,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.326199,0.001957,-0.001500,0.249996,0,0);}
.m85_c01212{transform:matrix(0.329129,0.001975,-0.001500,0.249996,0,0);-ms-transform:matrix(0.329129,0.001975,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.329129,0.001975,-0.001500,0.249996,0,0);}
.m11e_c01212{transform:matrix(0.331210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331210,0.000000,0.000000,0.250000,0,0);}
.m58_c01212{transform:matrix(0.333234,0.001999,-0.001500,0.249996,0,0);-ms-transform:matrix(0.333234,0.001999,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.333234,0.001999,-0.001500,0.249996,0,0);}
.md8_c01212{transform:matrix(0.336554,0.002692,-0.002000,0.249992,0,0);-ms-transform:matrix(0.336554,0.002692,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.336554,0.002692,-0.002000,0.249992,0,0);}
.m1f_c01212{transform:matrix(0.342235,0.004107,-0.003000,0.249982,0,0);-ms-transform:matrix(0.342235,0.004107,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.342235,0.004107,-0.003000,0.249982,0,0);}
.m7a_c01212{transform:matrix(0.347814,0.002087,-0.001500,0.249996,0,0);-ms-transform:matrix(0.347814,0.002087,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.347814,0.002087,-0.001500,0.249996,0,0);}
.m82_c01212{transform:matrix(0.350569,0.002103,-0.001500,0.249996,0,0);-ms-transform:matrix(0.350569,0.002103,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.350569,0.002103,-0.001500,0.249996,0,0);}
.mc4_c01212{transform:matrix(0.366553,0.002932,-0.002000,0.249992,0,0);-ms-transform:matrix(0.366553,0.002932,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.366553,0.002932,-0.002000,0.249992,0,0);}
.m13e_c01212{transform:matrix(0.368745,0.001844,-0.001250,0.249997,0,0);-ms-transform:matrix(0.368745,0.001844,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.368745,0.001844,-0.001250,0.249997,0,0);}
.med_c01212{transform:matrix(0.369918,0.002220,-0.001500,0.249996,0,0);-ms-transform:matrix(0.369918,0.002220,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.369918,0.002220,-0.001500,0.249996,0,0);}
.m71_c01212{transform:matrix(0.388558,0.002331,-0.001500,0.249996,0,0);-ms-transform:matrix(0.388558,0.002331,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.388558,0.002331,-0.001500,0.249996,0,0);}
.m10d_c01212{transform:matrix(0.393370,0.001967,-0.001250,0.249997,0,0);-ms-transform:matrix(0.393370,0.001967,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.393370,0.001967,-0.001250,0.249997,0,0);}
.m8f_c01212{transform:matrix(0.411493,0.002469,-0.001500,0.249996,0,0);-ms-transform:matrix(0.411493,0.002469,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.411493,0.002469,-0.001500,0.249996,0,0);}
.m86_c01212{transform:matrix(0.438067,0.002628,-0.001500,0.249996,0,0);-ms-transform:matrix(0.438067,0.002628,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.438067,0.002628,-0.001500,0.249996,0,0);}
.mec_c01212{transform:matrix(0.468772,0.002813,-0.001500,0.249996,0,0);-ms-transform:matrix(0.468772,0.002813,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.468772,0.002813,-0.001500,0.249996,0,0);}
.mf1_c01212{transform:matrix(0.498251,0.002990,-0.001500,0.249996,0,0);-ms-transform:matrix(0.498251,0.002990,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.498251,0.002990,-0.001500,0.249996,0,0);}
.m4f_c01212{transform:matrix(0.506816,0.003041,-0.001500,0.249996,0,0);-ms-transform:matrix(0.506816,0.003041,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.506816,0.003041,-0.001500,0.249996,0,0);}
.m84_c01212{transform:matrix(0.529575,0.003177,-0.001500,0.249996,0,0);-ms-transform:matrix(0.529575,0.003177,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.529575,0.003177,-0.001500,0.249996,0,0);}
.m12c_c01212{transform:matrix(0.541730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541730,0.000000,0.000000,0.250000,0,0);}
.m5b_c01212{transform:matrix(0.644043,0.003864,-0.001500,0.249996,0,0);-ms-transform:matrix(0.644043,0.003864,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.644043,0.003864,-0.001500,0.249996,0,0);}
.m157_c01212{transform:matrix(0.732245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.732245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.732245,0.000000,0.000000,0.250000,0,0);}
.m14_c01212{transform:matrix(1.224475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.224475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.224475,0.000000,0.000000,0.250000,0,0);}
.m80_c01212{transform:matrix(1.340616,0.008044,-0.001500,0.249996,0,0);-ms-transform:matrix(1.340616,0.008044,-0.001500,0.249996,0,0);-webkit-transform:matrix(1.340616,0.008044,-0.001500,0.249996,0,0);}
.mba_c01212{transform:matrix(1.354937,0.010839,-0.002000,0.249992,0,0);-ms-transform:matrix(1.354937,0.010839,-0.002000,0.249992,0,0);-webkit-transform:matrix(1.354937,0.010839,-0.002000,0.249992,0,0);}
.v0_c01212{vertical-align:0.000000px;}
.ls0_c01212{letter-spacing:0.000000px;}
.sc__c01212{text-shadow:none;}
.sc0_c01212{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__c01212{-webkit-text-stroke:0px transparent;}
.sc0_c01212{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01212{word-spacing:0.000000px;}
.fc0_c01212{color:transparent;}
.fs12_c01212{font-size:36.005202px;}
.fse_c01212{font-size:42.000525px;}
.fs7_c01212{font-size:60.001080px;}
.fs2_c01212{font-size:66.000000px;}
.fs11_c01212{font-size:66.000825px;}
.fs6_c01212{font-size:66.001188px;}
.fsa_c01212{font-size:66.002112px;}
.fs4_c01212{font-size:66.004752px;}
.fs10_c01212{font-size:72.000000px;}
.fs8_c01212{font-size:72.001296px;}
.fs9_c01212{font-size:72.002304px;}
.fs3_c01212{font-size:72.005184px;}
.fsc_c01212{font-size:72.006084px;}
.fs5_c01212{font-size:72.010403px;}
.fs1_c01212{font-size:78.000000px;}
.fsb_c01212{font-size:78.002496px;}
.fsf_c01212{font-size:84.000000px;}
.fsd_c01212{font-size:84.001050px;}
.fs13_c01212{font-size:102.000000px;}
.fs14_c01212{font-size:108.007776px;}
.fs0_c01212{font-size:114.000000px;}
.y0_c01212{bottom:0.000000px;}
.y14d_c01212{bottom:65.180094px;}
.y14c_c01212{bottom:65.734296px;}
.y14b_c01212{bottom:66.521760px;}
.y14a_c01212{bottom:66.923340px;}
.y149_c01212{bottom:67.305714px;}
.y148_c01212{bottom:67.976610px;}
.y147_c01212{bottom:68.232660px;}
.y146_c01212{bottom:70.471500px;}
.y145_c01212{bottom:105.141872px;}
.y144_c01212{bottom:105.481251px;}
.y143_c01212{bottom:106.275678px;}
.y142_c01212{bottom:107.005845px;}
.y141_c01212{bottom:108.327663px;}
.y140_c01212{bottom:110.163000px;}
.y13f_c01212{bottom:138.001500px;}
.y13e_c01212{bottom:138.561000px;}
.y13d_c01212{bottom:139.114500px;}
.y13c_c01212{bottom:139.444500px;}
.y13b_c01212{bottom:139.650000px;}
.y13a_c01212{bottom:139.998000px;}
.y139_c01212{bottom:140.437500px;}
.y138_c01212{bottom:141.213000px;}
.y137_c01212{bottom:142.290000px;}
.y136_c01212{bottom:154.072500px;}
.y135_c01212{bottom:154.498500px;}
.y134_c01212{bottom:157.963500px;}
.y133_c01212{bottom:169.833000px;}
.y132_c01212{bottom:193.213500px;}
.y131_c01212{bottom:213.568304px;}
.y130_c01212{bottom:217.914665px;}
.y12f_c01212{bottom:220.133088px;}
.y12e_c01212{bottom:222.012081px;}
.y12d_c01212{bottom:223.343156px;}
.y12c_c01212{bottom:224.490885px;}
.y12b_c01212{bottom:225.046734px;}
.y12a_c01212{bottom:226.923917px;}
.y129_c01212{bottom:227.280866px;}
.y128_c01212{bottom:228.580728px;}
.y127_c01212{bottom:229.121175px;}
.y126_c01212{bottom:230.043000px;}
.y125_c01212{bottom:261.142560px;}
.y124_c01212{bottom:262.009163px;}
.y123_c01212{bottom:262.502010px;}
.y122_c01212{bottom:262.784160px;}
.y121_c01212{bottom:262.893518px;}
.y120_c01212{bottom:263.494313px;}
.y11f_c01212{bottom:263.723820px;}
.y11e_c01212{bottom:263.997885px;}
.y11d_c01212{bottom:264.544695px;}
.y11c_c01212{bottom:264.870000px;}
.y114_c01212{bottom:267.843000px;}
.y115_c01212{bottom:268.722000px;}
.y116_c01212{bottom:269.940000px;}
.y117_c01212{bottom:270.409500px;}
.y118_c01212{bottom:270.915000px;}
.y119_c01212{bottom:271.540500px;}
.y11a_c01212{bottom:273.024000px;}
.y11b_c01212{bottom:273.402000px;}
.y113_c01212{bottom:291.919500px;}
.y112_c01212{bottom:292.711500px;}
.y111_c01212{bottom:293.259000px;}
.y110_c01212{bottom:293.910000px;}
.y10f_c01212{bottom:294.315000px;}
.y10e_c01212{bottom:294.846000px;}
.y10d_c01212{bottom:295.243500px;}
.y10c_c01212{bottom:295.768500px;}
.y10b_c01212{bottom:296.424000px;}
.y10a_c01212{bottom:297.499500px;}
.y109_c01212{bottom:298.141500px;}
.y108_c01212{bottom:298.555500px;}
.y107_c01212{bottom:299.475000px;}
.y106_c01212{bottom:299.860500px;}
.y105_c01212{bottom:300.511500px;}
.y104_c01212{bottom:334.488000px;}
.yff_c01212{bottom:347.282123px;}
.y100_c01212{bottom:347.282430px;}
.y101_c01212{bottom:347.282438px;}
.y102_c01212{bottom:347.282445px;}
.yfe_c01212{bottom:347.282715px;}
.y103_c01212{bottom:347.283053px;}
.yfd_c01212{bottom:366.704423px;}
.yfc_c01212{bottom:367.296983px;}
.yfb_c01212{bottom:367.476653px;}
.yfa_c01212{bottom:367.696658px;}
.yf9_c01212{bottom:368.028878px;}
.yf8_c01212{bottom:368.248935px;}
.yf7_c01212{bottom:368.690415px;}
.yf6_c01212{bottom:369.021173px;}
.yf5_c01212{bottom:369.459975px;}
.yf4_c01212{bottom:369.627367px;}
.yf3_c01212{bottom:370.171425px;}
.yf2_c01212{bottom:370.440000px;}
.yf1_c01212{bottom:400.814547px;}
.yf0_c01212{bottom:401.703162px;}
.yef_c01212{bottom:401.929053px;}
.yee_c01212{bottom:402.704808px;}
.yed_c01212{bottom:403.142730px;}
.yec_c01212{bottom:403.477119px;}
.yeb_c01212{bottom:404.243235px;}
.yea_c01212{bottom:404.574351px;}
.ye9_c01212{bottom:405.332724px;}
.ye8_c01212{bottom:405.789423px;}
.ye7_c01212{bottom:406.210116px;}
.ye6_c01212{bottom:406.439289px;}
.ye5_c01212{bottom:407.090844px;}
.ye4_c01212{bottom:407.431356px;}
.ye3_c01212{bottom:411.130269px;}
.ye2_c01212{bottom:411.773283px;}
.ye1_c01212{bottom:412.315848px;}
.ye0_c01212{bottom:413.280063px;}
.ydf_c01212{bottom:413.492283px;}
.yde_c01212{bottom:413.910000px;}
.ydd_c01212{bottom:433.913943px;}
.ydc_c01212{bottom:434.220190px;}
.ydb_c01212{bottom:435.511539px;}
.yda_c01212{bottom:435.953896px;}
.yd9_c01212{bottom:436.532578px;}
.yd8_c01212{bottom:437.796705px;}
.yd7_c01212{bottom:438.402160px;}
.yd6_c01212{bottom:438.667439px;}
.yd5_c01212{bottom:440.247991px;}
.yd4_c01212{bottom:440.825640px;}
.yd3_c01212{bottom:441.955723px;}
.yd2_c01212{bottom:442.531500px;}
.yd1_c01212{bottom:470.622072px;}
.yd0_c01212{bottom:470.891136px;}
.ycf_c01212{bottom:472.232796px;}
.yce_c01212{bottom:472.628424px;}
.ycd_c01212{bottom:473.092044px;}
.ycc_c01212{bottom:473.545764px;}
.ycb_c01212{bottom:474.235800px;}
.yca_c01212{bottom:474.726108px;}
.yc9_c01212{bottom:475.667160px;}
.yc8_c01212{bottom:476.846436px;}
.yc7_c01212{bottom:477.247656px;}
.yc6_c01212{bottom:478.166736px;}
.yc5_c01212{bottom:506.324952px;}
.yc4_c01212{bottom:506.947824px;}
.yc3_c01212{bottom:508.520496px;}
.yc2_c01212{bottom:509.412756px;}
.yc1_c01212{bottom:509.830356px;}
.yc0_c01212{bottom:510.266172px;}
.ybf_c01212{bottom:511.275372px;}
.ybe_c01212{bottom:512.570364px;}
.ybd_c01212{bottom:513.850236px;}
.ybc_c01212{bottom:514.860756px;}
.ybb_c01212{bottom:515.270844px;}
.yba_c01212{bottom:515.699256px;}
.yb9_c01212{bottom:542.263404px;}
.yb8_c01212{bottom:542.631036px;}
.yb7_c01212{bottom:543.235104px;}
.yb6_c01212{bottom:544.457916px;}
.yb5_c01212{bottom:544.946136px;}
.yb4_c01212{bottom:546.149280px;}
.yb3_c01212{bottom:546.770004px;}
.yb2_c01212{bottom:547.128612px;}
.yb1_c01212{bottom:547.992984px;}
.yb0_c01212{bottom:548.808900px;}
.yaf_c01212{bottom:549.179268px;}
.yae_c01212{bottom:576.648096px;}
.yad_c01212{bottom:578.349636px;}
.yac_c01212{bottom:579.687372px;}
.yab_c01212{bottom:580.079208px;}
.yaa_c01212{bottom:581.276400px;}
.ya9_c01212{bottom:582.328380px;}
.ya8_c01212{bottom:582.859620px;}
.ya7_c01212{bottom:583.679160px;}
.ya6_c01212{bottom:584.706444px;}
.ya5_c01212{bottom:585.359448px;}
.ya4_c01212{bottom:616.245732px;}
.ya3_c01212{bottom:616.517964px;}
.ya2_c01212{bottom:616.958664px;}
.ya1_c01212{bottom:617.317092px;}
.ya0_c01212{bottom:617.816664px;}
.y9f_c01212{bottom:618.023652px;}
.y9e_c01212{bottom:618.985188px;}
.y9d_c01212{bottom:619.259244px;}
.y9c_c01212{bottom:619.607040px;}
.y9b_c01212{bottom:619.872552px;}
.y9a_c01212{bottom:620.224656px;}
.y99_c01212{bottom:620.488188px;}
.y98_c01212{bottom:620.924688px;}
.y97_c01212{bottom:621.270000px;}
.y96_c01212{bottom:627.209637px;}
.y95_c01212{bottom:651.041961px;}
.y94_c01212{bottom:651.707232px;}
.y93_c01212{bottom:651.894135px;}
.y92_c01212{bottom:652.201713px;}
.y91_c01212{bottom:652.515624px;}
.y90_c01212{bottom:652.663164px;}
.y8f_c01212{bottom:653.122995px;}
.y8e_c01212{bottom:653.366304px;}
.y8d_c01212{bottom:653.984634px;}
.y8c_c01212{bottom:654.216732px;}
.y8b_c01212{bottom:654.514710px;}
.y8a_c01212{bottom:654.748824px;}
.y89_c01212{bottom:655.290351px;}
.y88_c01212{bottom:682.594602px;}
.y87_c01212{bottom:683.657889px;}
.y86_c01212{bottom:684.065304px;}
.y85_c01212{bottom:685.805175px;}
.y84_c01212{bottom:687.044580px;}
.y83_c01212{bottom:688.280883px;}
.y82_c01212{bottom:688.869252px;}
.y81_c01212{bottom:689.504421px;}
.y80_c01212{bottom:690.423414px;}
.y7f_c01212{bottom:691.202589px;}
.y7e_c01212{bottom:721.967100px;}
.y7d_c01212{bottom:722.406549px;}
.y7c_c01212{bottom:722.678178px;}
.y7b_c01212{bottom:723.632745px;}
.y7a_c01212{bottom:723.910761px;}
.y79_c01212{bottom:724.163355px;}
.y78_c01212{bottom:724.437933px;}
.y77_c01212{bottom:725.489499px;}
.y76_c01212{bottom:725.759274px;}
.y75_c01212{bottom:753.337395px;}
.y74_c01212{bottom:754.521612px;}
.y73_c01212{bottom:754.862997px;}
.y72_c01212{bottom:755.414949px;}
.y71_c01212{bottom:756.525156px;}
.y70_c01212{bottom:756.961065px;}
.y6f_c01212{bottom:757.853556px;}
.y6e_c01212{bottom:758.735202px;}
.y6d_c01212{bottom:759.166713px;}
.y6c_c01212{bottom:760.039653px;}
.y6b_c01212{bottom:760.254483px;}
.y6a_c01212{bottom:760.589016px;}
.y69_c01212{bottom:790.494105px;}
.y68_c01212{bottom:791.201088px;}
.y67_c01212{bottom:791.593911px;}
.y66_c01212{bottom:792.296262px;}
.y65_c01212{bottom:793.474989px;}
.y64_c01212{bottom:794.279817px;}
.y63_c01212{bottom:794.568426px;}
.y62_c01212{bottom:795.057501px;}
.y61_c01212{bottom:795.958584px;}
.y60_c01212{bottom:822.280980px;}
.y5f_c01212{bottom:823.011408px;}
.y5e_c01212{bottom:823.432326px;}
.y5d_c01212{bottom:824.288187px;}
.y5c_c01212{bottom:825.015054px;}
.y5b_c01212{bottom:826.018383px;}
.y5a_c01212{bottom:827.183439px;}
.y59_c01212{bottom:827.593272px;}
.y58_c01212{bottom:828.478575px;}
.y57_c01212{bottom:829.047006px;}
.y56_c01212{bottom:829.910526px;}
.y55_c01212{bottom:831.044232px;}
.y54_c01212{bottom:831.598602px;}
.y53_c01212{bottom:863.558907px;}
.y52_c01212{bottom:864.460059px;}
.y51_c01212{bottom:864.856995px;}
.y50_c01212{bottom:865.050189px;}
.y4f_c01212{bottom:865.714002px;}
.y4e_c01212{bottom:865.911669px;}
.y4d_c01212{bottom:866.044401px;}
.y4c_c01212{bottom:866.705505px;}
.y4b_c01212{bottom:867.027795px;}
.y4a_c01212{bottom:867.766605px;}
.y49_c01212{bottom:868.047135px;}
.y48_c01212{bottom:896.972523px;}
.y47_c01212{bottom:897.516651px;}
.y46_c01212{bottom:898.284159px;}
.y45_c01212{bottom:898.681161px;}
.y44_c01212{bottom:898.910163px;}
.y43_c01212{bottom:899.528466px;}
.y42_c01212{bottom:899.767095px;}
.y41_c01212{bottom:900.449460px;}
.y40_c01212{bottom:901.307931px;}
.y3f_c01212{bottom:901.536924px;}
.y3e_c01212{bottom:902.070228px;}
.y3d_c01212{bottom:932.796423px;}
.y3c_c01212{bottom:933.262470px;}
.y3b_c01212{bottom:933.466599px;}
.y3a_c01212{bottom:933.920217px;}
.y39_c01212{bottom:934.062696px;}
.y38_c01212{bottom:934.464600px;}
.y37_c01212{bottom:934.794981px;}
.y36_c01212{bottom:935.512803px;}
.y35_c01212{bottom:935.919423px;}
.y34_c01212{bottom:936.115452px;}
.y33_c01212{bottom:936.316332px;}
.y32_c01212{bottom:936.510732px;}
.y31_c01212{bottom:936.967545px;}
.y30_c01212{bottom:937.170000px;}
.y2f_c01212{bottom:968.096181px;}
.y2e_c01212{bottom:969.997027px;}
.y2d_c01212{bottom:970.538648px;}
.y2c_c01212{bottom:971.686377px;}
.y2b_c01212{bottom:972.033993px;}
.y2a_c01212{bottom:973.170298px;}
.y29_c01212{bottom:973.908166px;}
.y28_c01212{bottom:975.069513px;}
.y27_c01212{bottom:976.152294px;}
.y26_c01212{bottom:976.721301px;}
.y25_c01212{bottom:978.213000px;}
.y24_c01212{bottom:1002.165600px;}
.y23_c01212{bottom:1002.566340px;}
.y22_c01212{bottom:1003.107534px;}
.y21_c01212{bottom:1003.648728px;}
.y20_c01212{bottom:1003.887504px;}
.y1f_c01212{bottom:1004.437398px;}
.y1e_c01212{bottom:1004.986344px;}
.y1d_c01212{bottom:1005.201894px;}
.y1c_c01212{bottom:1005.900084px;}
.y1b_c01212{bottom:1006.122774px;}
.y1a_c01212{bottom:1006.823616px;}
.y19_c01212{bottom:1038.069198px;}
.y18_c01212{bottom:1038.331812px;}
.y17_c01212{bottom:1039.226820px;}
.y16_c01212{bottom:1039.570458px;}
.y15_c01212{bottom:1039.835460px;}
.y14_c01212{bottom:1040.191326px;}
.y13_c01212{bottom:1040.993226px;}
.y12_c01212{bottom:1041.870684px;}
.y11_c01212{bottom:1042.739556px;}
.y10_c01212{bottom:1043.007330px;}
.yf_c01212{bottom:1073.375274px;}
.ye_c01212{bottom:1073.770644px;}
.yd_c01212{bottom:1074.436428px;}
.yc_c01212{bottom:1075.110564px;}
.yb_c01212{bottom:1075.504224px;}
.ya_c01212{bottom:1076.557260px;}
.y9_c01212{bottom:1076.965518px;}
.y8_c01212{bottom:1077.211848px;}
.y7_c01212{bottom:1077.647376px;}
.y6_c01212{bottom:1078.686138px;}
.y5_c01212{bottom:1079.350410px;}
.y4_c01212{bottom:1080.003000px;}
.y3_c01212{bottom:1110.861000px;}
.y2_c01212{bottom:1145.868000px;}
.y1_c01212{bottom:1202.698500px;}
.h14_c01212{height:36.005202px;}
.h10_c01212{height:42.000525px;}
.h9_c01212{height:60.001080px;}
.h4_c01212{height:66.000000px;}
.h13_c01212{height:66.000825px;}
.h8_c01212{height:66.001188px;}
.hc_c01212{height:66.002112px;}
.h6_c01212{height:66.004752px;}
.h12_c01212{height:72.000000px;}
.ha_c01212{height:72.001296px;}
.hb_c01212{height:72.002304px;}
.h5_c01212{height:72.005184px;}
.he_c01212{height:72.006084px;}
.h7_c01212{height:72.010403px;}
.h3_c01212{height:78.000000px;}
.hd_c01212{height:78.002496px;}
.h11_c01212{height:84.000000px;}
.hf_c01212{height:84.001050px;}
.h15_c01212{height:102.000000px;}
.h16_c01212{height:108.007776px;}
.h2_c01212{height:114.000000px;}
.h1_c01212{height:1258.500000px;}
.h0_c01212{height:1258.740000px;}
.w0_c01212{width:904.200000px;}
.w1_c01212{width:904.500000px;}
.x0_c01212{left:0.000000px;}
.x46_c01212{left:139.467222px;}
.xcc_c01212{left:149.143500px;}
.xd4_c01212{left:150.495000px;}
.x9d_c01212{left:151.585500px;}
.x64_c01212{left:152.757504px;}
.x2b_c01212{left:154.339404px;}
.x22_c01212{left:155.714244px;}
.x3_c01212{left:158.760000px;}
.xd_c01212{left:177.930000px;}
.x8b_c01212{left:184.797060px;}
.x47_c01212{left:186.222222px;}
.x23_c01212{left:189.155346px;}
.x4d_c01212{left:196.647771px;}
.x83_c01212{left:206.841420px;}
.x5d_c01212{left:208.568688px;}
.x8c_c01212{left:216.369300px;}
.xca_c01212{left:227.340000px;}
.x96_c01212{left:228.519192px;}
.x74_c01212{left:229.659225px;}
.x43_c01212{left:231.289959px;}
.x4_c01212{left:233.820000px;}
.xb6_c01212{left:238.680000px;}
.x33_c01212{left:242.859000px;}
.x7c_c01212{left:251.287500px;}
.x5_c01212{left:254.610000px;}
.xcf_c01212{left:258.778500px;}
.x87_c01212{left:260.108640px;}
.x6c_c01212{left:262.001604px;}
.x75_c01212{left:263.178027px;}
.x3b_c01212{left:264.783000px;}
.xe_c01212{left:266.220000px;}
.xa7_c01212{left:273.389703px;}
.x34_c01212{left:276.330000px;}
.x9e_c01212{left:282.805500px;}
.x4e_c01212{left:283.845108px;}
.x2c_c01212{left:286.308324px;}
.x84_c01212{left:292.499184px;}
.x8d_c01212{left:294.118692px;}
.x5e_c01212{left:295.806591px;}
.x24_c01212{left:297.691548px;}
.xb7_c01212{left:304.560000px;}
.x76_c01212{left:305.840775px;}
.x58_c01212{left:308.233941px;}
.xf_c01212{left:309.690000px;}
.xa8_c01212{left:315.504195px;}
.x65_c01212{left:317.979024px;}
.x17_c01212{left:320.334000px;}
.xc1_c01212{left:325.825500px;}
.x9f_c01212{left:327.240000px;}
.x7d_c01212{left:328.242000px;}
.x3c_c01212{left:330.663000px;}
.x6_c01212{left:331.830000px;}
.xc5_c01212{left:335.869500px;}
.xd5_c01212{left:337.065000px;}
.x5f_c01212{left:338.974056px;}
.x35_c01212{left:340.023000px;}
.xb0_c01212{left:349.033500px;}
.x4f_c01212{left:350.262318px;}
.x66_c01212{left:352.241610px;}
.xd6_c01212{left:358.402500px;}
.x97_c01212{left:360.264480px;}
.x7e_c01212{left:361.431000px;}
.x3d_c01212{left:363.334500px;}
.x88_c01212{left:371.353476px;}
.xa3_c01212{left:373.375500px;}
.x18_c01212{left:375.690000px;}
.xd3_c01212{left:379.435500px;}
.xc2_c01212{left:380.638500px;}
.xb8_c01212{left:382.050000px;}
.x67_c01212{left:383.840232px;}
.x10_c01212{left:386.640000px;}
.x7_c01212{left:387.720000px;}
.x8e_c01212{left:392.598756px;}
.x50_c01212{left:393.998982px;}
.xb5_c01212{left:396.094290px;}
.xbb_c01212{left:402.898500px;}
.x7f_c01212{left:404.905500px;}
.x25_c01212{left:407.318304px;}
.x36_c01212{left:408.337500px;}
.x1_c01212{left:410.130000px;}
.xd0_c01212{left:415.119000px;}
.x2d_c01212{left:416.711136px;}
.x68_c01212{left:418.675818px;}
.x2_c01212{left:424.710000px;}
.x60_c01212{left:427.162941px;}
.x6d_c01212{left:428.633103px;}
.x59_c01212{left:429.721254px;}
.x3e_c01212{left:431.104500px;}
.x11_c01212{left:432.270000px;}
.xd1_c01212{left:435.645000px;}
.xa9_c01212{left:437.013279px;}
.x80_c01212{left:439.162500px;}
.xa4_c01212{left:442.995000px;}
.xc6_c01212{left:446.292000px;}
.xa0_c01212{left:448.821000px;}
.x8_c01212{left:452.520000px;}
.x19_c01212{left:462.253500px;}
.xa1_c01212{left:469.227000px;}
.x6e_c01212{left:470.692587px;}
.x48_c01212{left:473.256222px;}
.xa5_c01212{left:478.365000px;}
.x98_c01212{left:479.555664px;}
.x44_c01212{left:484.009938px;}
.x9_c01212{left:485.190000px;}
.x12_c01212{left:486.270000px;}
.x8f_c01212{left:492.218772px;}
.x51_c01212{left:493.600797px;}
.x2e_c01212{left:495.086334px;}
.x1a_c01212{left:498.547500px;}
.xb1_c01212{left:502.945500px;}
.x26_c01212{left:507.523110px;}
.x61_c01212{left:516.409299px;}
.x45_c01212{left:518.031231px;}
.x1b_c01212{left:519.075000px;}
.xd2_c01212{left:523.930500px;}
.x49_c01212{left:528.322722px;}
.xc0_c01212{left:535.467000px;}
.xb9_c01212{left:536.490000px;}
.x69_c01212{left:538.018887px;}
.x37_c01212{left:539.031000px;}
.xa_c01212{left:542.160000px;}
.xd7_c01212{left:545.262000px;}
.xaa_c01212{left:546.882651px;}
.x77_c01212{left:548.857317px;}
.x3f_c01212{left:550.741500px;}
.x27_c01212{left:552.055752px;}
.x1c_c01212{left:553.096500px;}
.x6f_c01212{left:558.988848px;}
.x5a_c01212{left:560.673396px;}
.x13_c01212{left:562.410000px;}
.xc3_c01212{left:568.570500px;}
.x90_c01212{left:569.803164px;}
.x6a_c01212{left:572.039982px;}
.x2f_c01212{left:573.665550px;}
.x99_c01212{left:574.897116px;}
.xab_c01212{left:580.363350px;}
.x89_c01212{left:581.421924px;}
.x52_c01212{left:583.273035px;}
.x28_c01212{left:585.265854px;}
.xb2_c01212{left:591.241500px;}
.x85_c01212{left:592.483584px;}
.x78_c01212{left:593.675547px;}
.x91_c01212{left:603.278820px;}
.x38_c01212{left:606.544500px;}
.x14_c01212{left:608.310000px;}
.x9a_c01212{left:613.535880px;}
.xac_c01212{left:624.099297px;}
.x86_c01212{left:625.149540px;}
.x6b_c01212{left:627.030825px;}
.x29_c01212{left:628.154406px;}
.x92_c01212{left:635.415036px;}
.x39_c01212{left:638.404500px;}
.x1d_c01212{left:640.849500px;}
.x9b_c01212{left:646.488324px;}
.x70_c01212{left:647.552100px;}
.xb_c01212{left:651.780000px;}
.xa2_c01212{left:657.555000px;}
.x53_c01212{left:660.491295px;}
.x79_c01212{left:664.338624px;}
.xbc_c01212{left:668.341500px;}
.x4a_c01212{left:671.157222px;}
.x1e_c01212{left:673.654500px;}
.x5b_c01212{left:682.450209px;}
.x30_c01212{left:684.919710px;}
.xcd_c01212{left:688.663500px;}
.x81_c01212{left:692.478000px;}
.x40_c01212{left:696.535500px;}
.xad_c01212{left:701.639934px;}
.x93_c01212{left:704.007288px;}
.x54_c01212{left:716.383446px;}
.xae_c01212{left:724.287894px;}
.x62_c01212{left:726.332268px;}
.x1f_c01212{left:729.832500px;}
.x15_c01212{left:733.320000px;}
.xc7_c01212{left:735.330000px;}
.x4b_c01212{left:737.313222px;}
.xc_c01212{left:740.610000px;}
.xb3_c01212{left:745.698000px;}
.x82_c01212{left:747.565500px;}
.x3a_c01212{left:750.219000px;}
.xbd_c01212{left:756.417000px;}
.x9c_c01212{left:758.317248px;}
.x7a_c01212{left:759.466557px;}
.x5c_c01212{left:761.029296px;}
.x31_c01212{left:762.148836px;}
.x71_c01212{left:771.774633px;}
.x2a_c01212{left:772.879854px;}
.xcb_c01212{left:779.490000px;}
.x8a_c01212{left:780.918636px;}
.x55_c01212{left:782.274183px;}
.x20_c01212{left:785.314500px;}
.x16_c01212{left:790.290000px;}
.x72_c01212{left:800.925738px;}
.xbe_c01212{left:802.033500px;}
.x41_c01212{left:806.160000px;}
.xaf_c01212{left:813.138261px;}
.x56_c01212{left:814.675824px;}
.x21_c01212{left:818.262000px;}
.x32_c01212{left:819.422274px;}
.x94_c01212{left:825.023952px;}
.xa6_c01212{left:836.664000px;}
.xc9_c01212{left:838.176645px;}
.xce_c01212{left:846.148500px;}
.xc8_c01212{left:865.825500px;}
.xbf_c01212{left:868.038000px;}
.xba_c01212{left:869.130000px;}
.x57_c01212{left:870.911466px;}
.x95_c01212{left:872.881032px;}
.x7b_c01212{left:875.631750px;}
.x73_c01212{left:876.886593px;}
.x63_c01212{left:878.845605px;}
.x42_c01212{left:883.834500px;}
.x4c_c01212{left:887.505222px;}
.xc4_c01212{left:896.890500px;}
.xb4_c01212{left:900.144000px;}
@media print{
.v0_c01212{vertical-align:0.000000pt;}
.ls0_c01212{letter-spacing:0.000000pt;}
.ws0_c01212{word-spacing:0.000000pt;}
.fs12_c01212{font-size:32.004624pt;}
.fse_c01212{font-size:37.333800pt;}
.fs7_c01212{font-size:53.334293pt;}
.fs2_c01212{font-size:58.666667pt;}
.fs11_c01212{font-size:58.667400pt;}
.fs6_c01212{font-size:58.667723pt;}
.fsa_c01212{font-size:58.668544pt;}
.fs4_c01212{font-size:58.670891pt;}
.fs10_c01212{font-size:64.000000pt;}
.fs8_c01212{font-size:64.001152pt;}
.fs9_c01212{font-size:64.002048pt;}
.fs3_c01212{font-size:64.004608pt;}
.fsc_c01212{font-size:64.005408pt;}
.fs5_c01212{font-size:64.009247pt;}
.fs1_c01212{font-size:69.333333pt;}
.fsb_c01212{font-size:69.335552pt;}
.fsf_c01212{font-size:74.666667pt;}
.fsd_c01212{font-size:74.667600pt;}
.fs13_c01212{font-size:90.666667pt;}
.fs14_c01212{font-size:96.006912pt;}
.fs0_c01212{font-size:101.333333pt;}
.y0_c01212{bottom:0.000000pt;}
.y14d_c01212{bottom:57.937861pt;}
.y14c_c01212{bottom:58.430485pt;}
.y14b_c01212{bottom:59.130453pt;}
.y14a_c01212{bottom:59.487413pt;}
.y149_c01212{bottom:59.827301pt;}
.y148_c01212{bottom:60.423653pt;}
.y147_c01212{bottom:60.651253pt;}
.y146_c01212{bottom:62.641333pt;}
.y145_c01212{bottom:93.459441pt;}
.y144_c01212{bottom:93.761112pt;}
.y143_c01212{bottom:94.467269pt;}
.y142_c01212{bottom:95.116307pt;}
.y141_c01212{bottom:96.291256pt;}
.y140_c01212{bottom:97.922667pt;}
.y13f_c01212{bottom:122.668000pt;}
.y13e_c01212{bottom:123.165333pt;}
.y13d_c01212{bottom:123.657333pt;}
.y13c_c01212{bottom:123.950667pt;}
.y13b_c01212{bottom:124.133333pt;}
.y13a_c01212{bottom:124.442667pt;}
.y139_c01212{bottom:124.833333pt;}
.y138_c01212{bottom:125.522667pt;}
.y137_c01212{bottom:126.480000pt;}
.y136_c01212{bottom:136.953333pt;}
.y135_c01212{bottom:137.332000pt;}
.y134_c01212{bottom:140.412000pt;}
.y133_c01212{bottom:150.962667pt;}
.y132_c01212{bottom:171.745333pt;}
.y131_c01212{bottom:189.838492pt;}
.y130_c01212{bottom:193.701924pt;}
.y12f_c01212{bottom:195.673856pt;}
.y12e_c01212{bottom:197.344072pt;}
.y12d_c01212{bottom:198.527249pt;}
.y12c_c01212{bottom:199.547453pt;}
.y12b_c01212{bottom:200.041541pt;}
.y12a_c01212{bottom:201.710148pt;}
.y129_c01212{bottom:202.027436pt;}
.y128_c01212{bottom:203.182869pt;}
.y127_c01212{bottom:203.663267pt;}
.y126_c01212{bottom:204.482667pt;}
.y125_c01212{bottom:232.126720pt;}
.y124_c01212{bottom:232.897033pt;}
.y123_c01212{bottom:233.335120pt;}
.y122_c01212{bottom:233.585920pt;}
.y121_c01212{bottom:233.683127pt;}
.y120_c01212{bottom:234.217167pt;}
.y11f_c01212{bottom:234.421173pt;}
.y11e_c01212{bottom:234.664787pt;}
.y11d_c01212{bottom:235.150840pt;}
.y11c_c01212{bottom:235.440000pt;}
.y114_c01212{bottom:238.082667pt;}
.y115_c01212{bottom:238.864000pt;}
.y116_c01212{bottom:239.946667pt;}
.y117_c01212{bottom:240.364000pt;}
.y118_c01212{bottom:240.813333pt;}
.y119_c01212{bottom:241.369333pt;}
.y11a_c01212{bottom:242.688000pt;}
.y11b_c01212{bottom:243.024000pt;}
.y113_c01212{bottom:259.484000pt;}
.y112_c01212{bottom:260.188000pt;}
.y111_c01212{bottom:260.674667pt;}
.y110_c01212{bottom:261.253333pt;}
.y10f_c01212{bottom:261.613333pt;}
.y10e_c01212{bottom:262.085333pt;}
.y10d_c01212{bottom:262.438667pt;}
.y10c_c01212{bottom:262.905333pt;}
.y10b_c01212{bottom:263.488000pt;}
.y10a_c01212{bottom:264.444000pt;}
.y109_c01212{bottom:265.014667pt;}
.y108_c01212{bottom:265.382667pt;}
.y107_c01212{bottom:266.200000pt;}
.y106_c01212{bottom:266.542667pt;}
.y105_c01212{bottom:267.121333pt;}
.y104_c01212{bottom:297.322667pt;}
.yff_c01212{bottom:308.695220pt;}
.y100_c01212{bottom:308.695493pt;}
.y101_c01212{bottom:308.695500pt;}
.y102_c01212{bottom:308.695507pt;}
.yfe_c01212{bottom:308.695747pt;}
.y103_c01212{bottom:308.696047pt;}
.yfd_c01212{bottom:325.959487pt;}
.yfc_c01212{bottom:326.486207pt;}
.yfb_c01212{bottom:326.645913pt;}
.yfa_c01212{bottom:326.841473pt;}
.yf9_c01212{bottom:327.136780pt;}
.yf8_c01212{bottom:327.332387pt;}
.yf7_c01212{bottom:327.724813pt;}
.yf6_c01212{bottom:328.018820pt;}
.yf5_c01212{bottom:328.408867pt;}
.yf4_c01212{bottom:328.557660pt;}
.yf3_c01212{bottom:329.041267pt;}
.yf2_c01212{bottom:329.280000pt;}
.yf1_c01212{bottom:356.279597pt;}
.yf0_c01212{bottom:357.069477pt;}
.yef_c01212{bottom:357.270269pt;}
.yee_c01212{bottom:357.959829pt;}
.yed_c01212{bottom:358.349093pt;}
.yec_c01212{bottom:358.646328pt;}
.yeb_c01212{bottom:359.327320pt;}
.yea_c01212{bottom:359.621645pt;}
.ye9_c01212{bottom:360.295755pt;}
.ye8_c01212{bottom:360.701709pt;}
.ye7_c01212{bottom:361.075659pt;}
.ye6_c01212{bottom:361.279368pt;}
.ye5_c01212{bottom:361.858528pt;}
.ye4_c01212{bottom:362.161205pt;}
.ye3_c01212{bottom:365.449128pt;}
.ye2_c01212{bottom:366.020696pt;}
.ye1_c01212{bottom:366.502976pt;}
.ye0_c01212{bottom:367.360056pt;}
.ydf_c01212{bottom:367.548696pt;}
.yde_c01212{bottom:367.920000pt;}
.ydd_c01212{bottom:385.701283pt;}
.ydc_c01212{bottom:385.973503pt;}
.ydb_c01212{bottom:387.121368pt;}
.yda_c01212{bottom:387.514575pt;}
.yd9_c01212{bottom:388.028959pt;}
.yd8_c01212{bottom:389.152627pt;}
.yd7_c01212{bottom:389.690809pt;}
.yd6_c01212{bottom:389.926612pt;}
.yd5_c01212{bottom:391.331548pt;}
.yd4_c01212{bottom:391.845013pt;}
.yd3_c01212{bottom:392.849532pt;}
.yd2_c01212{bottom:393.361333pt;}
.yd1_c01212{bottom:418.330731pt;}
.yd0_c01212{bottom:418.569899pt;}
.ycf_c01212{bottom:419.762485pt;}
.yce_c01212{bottom:420.114155pt;}
.ycd_c01212{bottom:420.526261pt;}
.ycc_c01212{bottom:420.929568pt;}
.ycb_c01212{bottom:421.542933pt;}
.yca_c01212{bottom:421.978763pt;}
.yc9_c01212{bottom:422.815253pt;}
.yc8_c01212{bottom:423.863499pt;}
.yc7_c01212{bottom:424.220139pt;}
.yc6_c01212{bottom:425.037099pt;}
.yc5_c01212{bottom:450.066624pt;}
.yc4_c01212{bottom:450.620288pt;}
.yc3_c01212{bottom:452.018219pt;}
.yc2_c01212{bottom:452.811339pt;}
.yc1_c01212{bottom:453.182539pt;}
.yc0_c01212{bottom:453.569931pt;}
.ybf_c01212{bottom:454.466997pt;}
.ybe_c01212{bottom:455.618101pt;}
.ybd_c01212{bottom:456.755765pt;}
.ybc_c01212{bottom:457.654005pt;}
.ybb_c01212{bottom:458.018528pt;}
.yba_c01212{bottom:458.399339pt;}
.yb9_c01212{bottom:482.011915pt;}
.yb8_c01212{bottom:482.338699pt;}
.yb7_c01212{bottom:482.875648pt;}
.yb6_c01212{bottom:483.962592pt;}
.yb5_c01212{bottom:484.396565pt;}
.yb4_c01212{bottom:485.466027pt;}
.yb3_c01212{bottom:486.017781pt;}
.yb2_c01212{bottom:486.336544pt;}
.yb1_c01212{bottom:487.104875pt;}
.yb0_c01212{bottom:487.830133pt;}
.yaf_c01212{bottom:488.159349pt;}
.yae_c01212{bottom:512.576085pt;}
.yad_c01212{bottom:514.088565pt;}
.yac_c01212{bottom:515.277664pt;}
.yab_c01212{bottom:515.625963pt;}
.yaa_c01212{bottom:516.690133pt;}
.ya9_c01212{bottom:517.625227pt;}
.ya8_c01212{bottom:518.097440pt;}
.ya7_c01212{bottom:518.825920pt;}
.ya6_c01212{bottom:519.739061pt;}
.ya5_c01212{bottom:520.319509pt;}
.ya4_c01212{bottom:547.773984pt;}
.ya3_c01212{bottom:548.015968pt;}
.ya2_c01212{bottom:548.407701pt;}
.ya1_c01212{bottom:548.726304pt;}
.ya0_c01212{bottom:549.170368pt;}
.y9f_c01212{bottom:549.354357pt;}
.y9e_c01212{bottom:550.209056pt;}
.y9d_c01212{bottom:550.452661pt;}
.y9c_c01212{bottom:550.761813pt;}
.y9b_c01212{bottom:550.997824pt;}
.y9a_c01212{bottom:551.310805pt;}
.y99_c01212{bottom:551.545056pt;}
.y98_c01212{bottom:551.933056pt;}
.y97_c01212{bottom:552.240000pt;}
.y96_c01212{bottom:557.519677pt;}
.y95_c01212{bottom:578.703965pt;}
.y94_c01212{bottom:579.295317pt;}
.y93_c01212{bottom:579.461453pt;}
.y92_c01212{bottom:579.734856pt;}
.y91_c01212{bottom:580.013888pt;}
.y90_c01212{bottom:580.145035pt;}
.y8f_c01212{bottom:580.553773pt;}
.y8e_c01212{bottom:580.770048pt;}
.y8d_c01212{bottom:581.319675pt;}
.y8c_c01212{bottom:581.525984pt;}
.y8b_c01212{bottom:581.790853pt;}
.y8a_c01212{bottom:581.998955pt;}
.y89_c01212{bottom:582.480312pt;}
.y88_c01212{bottom:606.750757pt;}
.y87_c01212{bottom:607.695901pt;}
.y86_c01212{bottom:608.058048pt;}
.y85_c01212{bottom:609.604600pt;}
.y84_c01212{bottom:610.706293pt;}
.y83_c01212{bottom:611.805229pt;}
.y82_c01212{bottom:612.328224pt;}
.y81_c01212{bottom:612.892819pt;}
.y80_c01212{bottom:613.709701pt;}
.y7f_c01212{bottom:614.402301pt;}
.y7e_c01212{bottom:641.748533pt;}
.y7d_c01212{bottom:642.139155pt;}
.y7c_c01212{bottom:642.380603pt;}
.y7b_c01212{bottom:643.229107pt;}
.y7a_c01212{bottom:643.476232pt;}
.y79_c01212{bottom:643.700760pt;}
.y78_c01212{bottom:643.944829pt;}
.y77_c01212{bottom:644.879555pt;}
.y76_c01212{bottom:645.119355pt;}
.y75_c01212{bottom:669.633240pt;}
.y74_c01212{bottom:670.685877pt;}
.y73_c01212{bottom:670.989331pt;}
.y72_c01212{bottom:671.479955pt;}
.y71_c01212{bottom:672.466805pt;}
.y70_c01212{bottom:672.854280pt;}
.y6f_c01212{bottom:673.647605pt;}
.y6e_c01212{bottom:674.431291pt;}
.y6d_c01212{bottom:674.814856pt;}
.y6c_c01212{bottom:675.590803pt;}
.y6b_c01212{bottom:675.781763pt;}
.y6a_c01212{bottom:676.079125pt;}
.y69_c01212{bottom:702.661427pt;}
.y68_c01212{bottom:703.289856pt;}
.y67_c01212{bottom:703.639032pt;}
.y66_c01212{bottom:704.263344pt;}
.y65_c01212{bottom:705.311101pt;}
.y64_c01212{bottom:706.026504pt;}
.y63_c01212{bottom:706.283045pt;}
.y62_c01212{bottom:706.717779pt;}
.y61_c01212{bottom:707.518741pt;}
.y60_c01212{bottom:730.916427pt;}
.y5f_c01212{bottom:731.565696pt;}
.y5e_c01212{bottom:731.939845pt;}
.y5d_c01212{bottom:732.700611pt;}
.y5c_c01212{bottom:733.346715pt;}
.y5b_c01212{bottom:734.238563pt;}
.y5a_c01212{bottom:735.274168pt;}
.y59_c01212{bottom:735.638464pt;}
.y58_c01212{bottom:736.425400pt;}
.y57_c01212{bottom:736.930672pt;}
.y56_c01212{bottom:737.698245pt;}
.y55_c01212{bottom:738.705984pt;}
.y54_c01212{bottom:739.198757pt;}
.y53_c01212{bottom:767.607917pt;}
.y52_c01212{bottom:768.408941pt;}
.y51_c01212{bottom:768.761773pt;}
.y50_c01212{bottom:768.933501pt;}
.y4f_c01212{bottom:769.523557pt;}
.y4e_c01212{bottom:769.699261pt;}
.y4d_c01212{bottom:769.817245pt;}
.y4c_c01212{bottom:770.404893pt;}
.y4b_c01212{bottom:770.691373pt;}
.y4a_c01212{bottom:771.348093pt;}
.y49_c01212{bottom:771.597453pt;}
.y48_c01212{bottom:797.308909pt;}
.y47_c01212{bottom:797.792579pt;}
.y46_c01212{bottom:798.474808pt;}
.y45_c01212{bottom:798.827699pt;}
.y44_c01212{bottom:799.031256pt;}
.y43_c01212{bottom:799.580859pt;}
.y42_c01212{bottom:799.792973pt;}
.y41_c01212{bottom:800.399520pt;}
.y40_c01212{bottom:801.162605pt;}
.y3f_c01212{bottom:801.366155pt;}
.y3e_c01212{bottom:801.840203pt;}
.y3d_c01212{bottom:829.152376pt;}
.y3c_c01212{bottom:829.566640pt;}
.y3b_c01212{bottom:829.748088pt;}
.y3a_c01212{bottom:830.151304pt;}
.y39_c01212{bottom:830.277952pt;}
.y38_c01212{bottom:830.635200pt;}
.y37_c01212{bottom:830.928872pt;}
.y36_c01212{bottom:831.566936pt;}
.y35_c01212{bottom:831.928376pt;}
.y34_c01212{bottom:832.102624pt;}
.y33_c01212{bottom:832.281184pt;}
.y32_c01212{bottom:832.453984pt;}
.y31_c01212{bottom:832.860040pt;}
.y30_c01212{bottom:833.040000pt;}
.y2f_c01212{bottom:860.529939pt;}
.y2e_c01212{bottom:862.219580pt;}
.y2d_c01212{bottom:862.701020pt;}
.y2c_c01212{bottom:863.721224pt;}
.y2b_c01212{bottom:864.030216pt;}
.y2a_c01212{bottom:865.040265pt;}
.y29_c01212{bottom:865.696148pt;}
.y28_c01212{bottom:866.728456pt;}
.y27_c01212{bottom:867.690928pt;}
.y26_c01212{bottom:868.196712pt;}
.y25_c01212{bottom:869.522667pt;}
.y24_c01212{bottom:890.813867pt;}
.y23_c01212{bottom:891.170080pt;}
.y22_c01212{bottom:891.651141pt;}
.y21_c01212{bottom:892.132203pt;}
.y20_c01212{bottom:892.344448pt;}
.y1f_c01212{bottom:892.833243pt;}
.y1e_c01212{bottom:893.321195pt;}
.y1d_c01212{bottom:893.512795pt;}
.y1c_c01212{bottom:894.133408pt;}
.y1b_c01212{bottom:894.331355pt;}
.y1a_c01212{bottom:894.954325pt;}
.y19_c01212{bottom:922.728176pt;}
.y18_c01212{bottom:922.961611pt;}
.y17_c01212{bottom:923.757173pt;}
.y16_c01212{bottom:924.062629pt;}
.y15_c01212{bottom:924.298187pt;}
.y14_c01212{bottom:924.614512pt;}
.y13_c01212{bottom:925.327312pt;}
.y12_c01212{bottom:926.107275pt;}
.y11_c01212{bottom:926.879605pt;}
.y10_c01212{bottom:927.117627pt;}
.yf_c01212{bottom:954.111355pt;}
.ye_c01212{bottom:954.462795pt;}
.yd_c01212{bottom:955.054603pt;}
.yc_c01212{bottom:955.653835pt;}
.yb_c01212{bottom:956.003755pt;}
.ya_c01212{bottom:956.939787pt;}
.y9_c01212{bottom:957.302683pt;}
.y8_c01212{bottom:957.521643pt;}
.y7_c01212{bottom:957.908779pt;}
.y6_c01212{bottom:958.832123pt;}
.y5_c01212{bottom:959.422587pt;}
.y4_c01212{bottom:960.002667pt;}
.y3_c01212{bottom:987.432000pt;}
.y2_c01212{bottom:1018.549333pt;}
.y1_c01212{bottom:1069.065333pt;}
.h14_c01212{height:32.004624pt;}
.h10_c01212{height:37.333800pt;}
.h9_c01212{height:53.334293pt;}
.h4_c01212{height:58.666667pt;}
.h13_c01212{height:58.667400pt;}
.h8_c01212{height:58.667723pt;}
.hc_c01212{height:58.668544pt;}
.h6_c01212{height:58.670891pt;}
.h12_c01212{height:64.000000pt;}
.ha_c01212{height:64.001152pt;}
.hb_c01212{height:64.002048pt;}
.h5_c01212{height:64.004608pt;}
.he_c01212{height:64.005408pt;}
.h7_c01212{height:64.009247pt;}
.h3_c01212{height:69.333333pt;}
.hd_c01212{height:69.335552pt;}
.h11_c01212{height:74.666667pt;}
.hf_c01212{height:74.667600pt;}
.h15_c01212{height:90.666667pt;}
.h16_c01212{height:96.006912pt;}
.h2_c01212{height:101.333333pt;}
.h1_c01212{height:1118.666667pt;}
.h0_c01212{height:1118.880000pt;}
.w0_c01212{width:803.733333pt;}
.w1_c01212{width:804.000000pt;}
.x0_c01212{left:0.000000pt;}
.x46_c01212{left:123.970864pt;}
.xcc_c01212{left:132.572000pt;}
.xd4_c01212{left:133.773333pt;}
.x9d_c01212{left:134.742667pt;}
.x64_c01212{left:135.784448pt;}
.x2b_c01212{left:137.190581pt;}
.x22_c01212{left:138.412661pt;}
.x3_c01212{left:141.120000pt;}
.xd_c01212{left:158.160000pt;}
.x8b_c01212{left:164.264053pt;}
.x47_c01212{left:165.530864pt;}
.x23_c01212{left:168.138085pt;}
.x4d_c01212{left:174.798019pt;}
.x83_c01212{left:183.859040pt;}
.x5d_c01212{left:185.394389pt;}
.x8c_c01212{left:192.328267pt;}
.xca_c01212{left:202.080000pt;}
.x96_c01212{left:203.128171pt;}
.x74_c01212{left:204.141533pt;}
.x43_c01212{left:205.591075pt;}
.x4_c01212{left:207.840000pt;}
.xb6_c01212{left:212.160000pt;}
.x33_c01212{left:215.874667pt;}
.x7c_c01212{left:223.366667pt;}
.x5_c01212{left:226.320000pt;}
.xcf_c01212{left:230.025333pt;}
.x87_c01212{left:231.207680pt;}
.x6c_c01212{left:232.890315pt;}
.x75_c01212{left:233.936024pt;}
.x3b_c01212{left:235.362667pt;}
.xe_c01212{left:236.640000pt;}
.xa7_c01212{left:243.013069pt;}
.x34_c01212{left:245.626667pt;}
.x9e_c01212{left:251.382667pt;}
.x4e_c01212{left:252.306763pt;}
.x2c_c01212{left:254.496288pt;}
.x84_c01212{left:259.999275pt;}
.x8d_c01212{left:261.438837pt;}
.x5e_c01212{left:262.939192pt;}
.x24_c01212{left:264.614709pt;}
.xb7_c01212{left:270.720000pt;}
.x76_c01212{left:271.858467pt;}
.x58_c01212{left:273.985725pt;}
.xf_c01212{left:275.280000pt;}
.xa8_c01212{left:280.448173pt;}
.x65_c01212{left:282.648021pt;}
.x17_c01212{left:284.741333pt;}
.xc1_c01212{left:289.622667pt;}
.x9f_c01212{left:290.880000pt;}
.x7d_c01212{left:291.770667pt;}
.x3c_c01212{left:293.922667pt;}
.x6_c01212{left:294.960000pt;}
.xc5_c01212{left:298.550667pt;}
.xd5_c01212{left:299.613333pt;}
.x5f_c01212{left:301.310272pt;}
.x35_c01212{left:302.242667pt;}
.xb0_c01212{left:310.252000pt;}
.x4f_c01212{left:311.344283pt;}
.x66_c01212{left:313.103653pt;}
.xd6_c01212{left:318.580000pt;}
.x97_c01212{left:320.235093pt;}
.x7e_c01212{left:321.272000pt;}
.x3d_c01212{left:322.964000pt;}
.x88_c01212{left:330.091979pt;}
.xa3_c01212{left:331.889333pt;}
.x18_c01212{left:333.946667pt;}
.xd3_c01212{left:337.276000pt;}
.xc2_c01212{left:338.345333pt;}
.xb8_c01212{left:339.600000pt;}
.x67_c01212{left:341.191317pt;}
.x10_c01212{left:343.680000pt;}
.x7_c01212{left:344.640000pt;}
.x8e_c01212{left:348.976672pt;}
.x50_c01212{left:350.221317pt;}
.xb5_c01212{left:352.083813pt;}
.xbb_c01212{left:358.132000pt;}
.x7f_c01212{left:359.916000pt;}
.x25_c01212{left:362.060715pt;}
.x36_c01212{left:362.966667pt;}
.x1_c01212{left:364.560000pt;}
.xd0_c01212{left:368.994667pt;}
.x2d_c01212{left:370.409899pt;}
.x68_c01212{left:372.156283pt;}
.x2_c01212{left:377.520000pt;}
.x60_c01212{left:379.700392pt;}
.x6d_c01212{left:381.007203pt;}
.x59_c01212{left:381.974448pt;}
.x3e_c01212{left:383.204000pt;}
.x11_c01212{left:384.240000pt;}
.xd1_c01212{left:387.240000pt;}
.xa9_c01212{left:388.456248pt;}
.x80_c01212{left:390.366667pt;}
.xa4_c01212{left:393.773333pt;}
.xc6_c01212{left:396.704000pt;}
.xa0_c01212{left:398.952000pt;}
.x8_c01212{left:402.240000pt;}
.x19_c01212{left:410.892000pt;}
.xa1_c01212{left:417.090667pt;}
.x6e_c01212{left:418.393411pt;}
.x48_c01212{left:420.672197pt;}
.xa5_c01212{left:425.213333pt;}
.x98_c01212{left:426.271701pt;}
.x44_c01212{left:430.231056pt;}
.x9_c01212{left:431.280000pt;}
.x12_c01212{left:432.240000pt;}
.x8f_c01212{left:437.527797pt;}
.x51_c01212{left:438.756264pt;}
.x2e_c01212{left:440.076741pt;}
.x1a_c01212{left:443.153333pt;}
.xb1_c01212{left:447.062667pt;}
.x26_c01212{left:451.131653pt;}
.x61_c01212{left:459.030488pt;}
.x45_c01212{left:460.472205pt;}
.x1b_c01212{left:461.400000pt;}
.xd2_c01212{left:465.716000pt;}
.x49_c01212{left:469.620197pt;}
.xc0_c01212{left:475.970667pt;}
.xb9_c01212{left:476.880000pt;}
.x69_c01212{left:478.239011pt;}
.x37_c01212{left:479.138667pt;}
.xa_c01212{left:481.920000pt;}
.xd7_c01212{left:484.677333pt;}
.xaa_c01212{left:486.117912pt;}
.x77_c01212{left:487.873171pt;}
.x3f_c01212{left:489.548000pt;}
.x27_c01212{left:490.716224pt;}
.x1c_c01212{left:491.641333pt;}
.x6f_c01212{left:496.878976pt;}
.x5a_c01212{left:498.376352pt;}
.x13_c01212{left:499.920000pt;}
.xc3_c01212{left:505.396000pt;}
.x90_c01212{left:506.491701pt;}
.x6a_c01212{left:508.479984pt;}
.x2f_c01212{left:509.924933pt;}
.x99_c01212{left:511.019659pt;}
.xab_c01212{left:515.878533pt;}
.x89_c01212{left:516.819488pt;}
.x52_c01212{left:518.464920pt;}
.x28_c01212{left:520.236315pt;}
.xb2_c01212{left:525.548000pt;}
.x85_c01212{left:526.652075pt;}
.x78_c01212{left:527.711597pt;}
.x91_c01212{left:536.247840pt;}
.x38_c01212{left:539.150667pt;}
.x14_c01212{left:540.720000pt;}
.x9a_c01212{left:545.365227pt;}
.xac_c01212{left:554.754931pt;}
.x86_c01212{left:555.688480pt;}
.x6b_c01212{left:557.360733pt;}
.x29_c01212{left:558.359472pt;}
.x92_c01212{left:564.813365pt;}
.x39_c01212{left:567.470667pt;}
.x1d_c01212{left:569.644000pt;}
.x9b_c01212{left:574.656288pt;}
.x70_c01212{left:575.601867pt;}
.xb_c01212{left:579.360000pt;}
.xa2_c01212{left:584.493333pt;}
.x53_c01212{left:587.103373pt;}
.x79_c01212{left:590.523221pt;}
.xbc_c01212{left:594.081333pt;}
.x4a_c01212{left:596.584197pt;}
.x1e_c01212{left:598.804000pt;}
.x5b_c01212{left:606.622408pt;}
.x30_c01212{left:608.817520pt;}
.xcd_c01212{left:612.145333pt;}
.x81_c01212{left:615.536000pt;}
.x40_c01212{left:619.142667pt;}
.xad_c01212{left:623.679941pt;}
.x93_c01212{left:625.784256pt;}
.x54_c01212{left:636.785285pt;}
.xae_c01212{left:643.811461pt;}
.x62_c01212{left:645.628683pt;}
.x1f_c01212{left:648.740000pt;}
.x15_c01212{left:651.840000pt;}
.xc7_c01212{left:653.626667pt;}
.x4b_c01212{left:655.389531pt;}
.xc_c01212{left:658.320000pt;}
.xb3_c01212{left:662.842667pt;}
.x82_c01212{left:664.502667pt;}
.x3a_c01212{left:666.861333pt;}
.xbd_c01212{left:672.370667pt;}
.x9c_c01212{left:674.059776pt;}
.x7a_c01212{left:675.081384pt;}
.x5c_c01212{left:676.470485pt;}
.x31_c01212{left:677.465632pt;}
.x71_c01212{left:686.021896pt;}
.x2a_c01212{left:687.004315pt;}
.xcb_c01212{left:692.880000pt;}
.x8a_c01212{left:694.149899pt;}
.x55_c01212{left:695.354829pt;}
.x20_c01212{left:698.057333pt;}
.x16_c01212{left:702.480000pt;}
.x72_c01212{left:711.933989pt;}
.xbe_c01212{left:712.918667pt;}
.x41_c01212{left:716.586667pt;}
.xaf_c01212{left:722.789565pt;}
.x56_c01212{left:724.156288pt;}
.x21_c01212{left:727.344000pt;}
.x32_c01212{left:728.375355pt;}
.x94_c01212{left:733.354624pt;}
.xa6_c01212{left:743.701333pt;}
.xc9_c01212{left:745.045907pt;}
.xce_c01212{left:752.132000pt;}
.xc8_c01212{left:769.622667pt;}
.xbf_c01212{left:771.589333pt;}
.xba_c01212{left:772.560000pt;}
.x57_c01212{left:774.143525pt;}
.x95_c01212{left:775.894251pt;}
.x7b_c01212{left:778.339333pt;}
.x73_c01212{left:779.454749pt;}
.x63_c01212{left:781.196093pt;}
.x42_c01212{left:785.630667pt;}
.x4c_c01212{left:788.893531pt;}
.xc4_c01212{left:797.236000pt;}
.xb4_c01212{left:800.128000pt;}
}





/* 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_c01213 {
    display:none;
  }
  .loading-indicator_c01213.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01213 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_c01213 { 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_c01213" -> "#page-container .classname_c01213")
 */
.pf_c01213 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01213 { /* 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_c01213.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01213 { /* 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_c01213 { /* 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_c01213 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01213 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01213 {overflow:visible;}
  }
}
.c_c01213 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01213 { /* 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_c01213:after { /* webkit #35443 */
  content: '';
}
.t_c01213:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01213 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 */
}
.__c01213 { /* 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_c01213 { /* info for Javascript */
  display:none;
}
.l_c01213 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01213 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01213 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01213: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_c01213 {
    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_c01213.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01213.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_c01213 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01213{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01213;src:url('chunks/assets/font_cfe63ee56e9e10a97d33a3db.woff2')format("woff");}.ff1_c01213{font-family:ff1_c01213;line-height:1.000000;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;}
.m91_c01213{transform:matrix(0.054085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054085,0.000000,0.000000,0.250000,0,0);}
.m2c_c01213{transform:matrix(0.140714,0.003799,-0.006748,0.249909,0,0);-ms-transform:matrix(0.140714,0.003799,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.140714,0.003799,-0.006748,0.249909,0,0);}
.maf_c01213{transform:matrix(0.147819,0.004582,-0.007746,0.249880,0,0);-ms-transform:matrix(0.147819,0.004582,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.147819,0.004582,-0.007746,0.249880,0,0);}
.m4c_c01213{transform:matrix(0.149226,0.005826,-0.009752,0.249810,0,0);-ms-transform:matrix(0.149226,0.005826,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.149226,0.005826,-0.009752,0.249810,0,0);}
.m1c_c01213{transform:matrix(0.151678,0.003792,-0.006248,0.249922,0,0);-ms-transform:matrix(0.151678,0.003792,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.151678,0.003792,-0.006248,0.249922,0,0);}
.m67_c01213{transform:matrix(0.154550,0.002473,-0.003999,0.249968,0,0);-ms-transform:matrix(0.154550,0.002473,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.154550,0.002473,-0.003999,0.249968,0,0);}
.m90_c01213{transform:matrix(0.169705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169705,0.000000,0.000000,0.250000,0,0);}
.m45_c01213{transform:matrix(0.180625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180625,0.000000,0.000000,0.250000,0,0);}
.m49_c01213{transform:matrix(0.185094,0.007226,-0.009752,0.249810,0,0);-ms-transform:matrix(0.185094,0.007226,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.185094,0.007226,-0.009752,0.249810,0,0);}
.m46_c01213{transform:matrix(0.188152,0.007345,-0.009752,0.249810,0,0);-ms-transform:matrix(0.188152,0.007345,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.188152,0.007345,-0.009752,0.249810,0,0);}
.m95_c01213{transform:matrix(0.189722,0.003794,-0.004999,0.249950,0,0);-ms-transform:matrix(0.189722,0.003794,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.189722,0.003794,-0.004999,0.249950,0,0);}
.m66_c01213{transform:matrix(0.190341,0.003045,-0.003999,0.249968,0,0);-ms-transform:matrix(0.190341,0.003045,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.190341,0.003045,-0.003999,0.249968,0,0);}
.m9b_c01213{transform:matrix(0.198865,0.003977,-0.004999,0.249950,0,0);-ms-transform:matrix(0.198865,0.003977,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.198865,0.003977,-0.004999,0.249950,0,0);}
.m35_c01213{transform:matrix(0.200576,0.004212,-0.005249,0.249945,0,0);-ms-transform:matrix(0.200576,0.004212,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.200576,0.004212,-0.005249,0.249945,0,0);}
.mad_c01213{transform:matrix(0.205982,0.006179,-0.007497,0.249888,0,0);-ms-transform:matrix(0.205982,0.006179,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.205982,0.006179,-0.007497,0.249888,0,0);}
.mc_c01213{transform:matrix(0.208205,0.005205,-0.006248,0.249922,0,0);-ms-transform:matrix(0.208205,0.005205,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.208205,0.005205,-0.006248,0.249922,0,0);}
.m65_c01213{transform:matrix(0.211633,0.003386,-0.003999,0.249968,0,0);-ms-transform:matrix(0.211633,0.003386,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.211633,0.003386,-0.003999,0.249968,0,0);}
.m55_c01213{transform:matrix(0.216220,0.008441,-0.009752,0.249810,0,0);-ms-transform:matrix(0.216220,0.008441,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.216220,0.008441,-0.009752,0.249810,0,0);}
.m11_c01213{transform:matrix(0.219741,0.005494,-0.006248,0.249922,0,0);-ms-transform:matrix(0.219741,0.005494,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.219741,0.005494,-0.006248,0.249922,0,0);}
.m96_c01213{transform:matrix(0.220631,0.004413,-0.004999,0.249950,0,0);-ms-transform:matrix(0.220631,0.004413,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.220631,0.004413,-0.004999,0.249950,0,0);}
.ma6_c01213{transform:matrix(0.222970,0.006689,-0.007497,0.249888,0,0);-ms-transform:matrix(0.222970,0.006689,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.222970,0.006689,-0.007497,0.249888,0,0);}
.m50_c01213{transform:matrix(0.224139,0.008750,-0.009752,0.249810,0,0);-ms-transform:matrix(0.224139,0.008750,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.224139,0.008750,-0.009752,0.249810,0,0);}
.mf_c01213{transform:matrix(0.226459,0.005661,-0.006248,0.249922,0,0);-ms-transform:matrix(0.226459,0.005661,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.226459,0.005661,-0.006248,0.249922,0,0);}
.m42_c01213{transform:matrix(0.230943,0.005774,-0.006248,0.249922,0,0);-ms-transform:matrix(0.230943,0.005774,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.230943,0.005774,-0.006248,0.249922,0,0);}
.m4e_c01213{transform:matrix(0.236989,0.009252,-0.009752,0.249810,0,0);-ms-transform:matrix(0.236989,0.009252,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.236989,0.009252,-0.009752,0.249810,0,0);}
.m99_c01213{transform:matrix(0.237183,0.004744,-0.004999,0.249950,0,0);-ms-transform:matrix(0.237183,0.004744,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.237183,0.004744,-0.004999,0.249950,0,0);}
.m41_c01213{transform:matrix(0.241240,0.006031,-0.006248,0.249922,0,0);-ms-transform:matrix(0.241240,0.006031,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.241240,0.006031,-0.006248,0.249922,0,0);}
.m9c_c01213{transform:matrix(0.242576,0.004852,-0.004999,0.249950,0,0);-ms-transform:matrix(0.242576,0.004852,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.242576,0.004852,-0.004999,0.249950,0,0);}
.mae_c01213{transform:matrix(0.243248,0.007541,-0.007746,0.249880,0,0);-ms-transform:matrix(0.243248,0.007541,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.243248,0.007541,-0.007746,0.249880,0,0);}
.m85_c01213{transform:matrix(0.252203,0.004035,-0.003999,0.249968,0,0);-ms-transform:matrix(0.252203,0.004035,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.252203,0.004035,-0.003999,0.249968,0,0);}
.m63_c01213{transform:matrix(0.252649,0.004800,-0.004749,0.249955,0,0);-ms-transform:matrix(0.252649,0.004800,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.252649,0.004800,-0.004749,0.249955,0,0);}
.m6a_c01213{transform:matrix(0.256545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256545,0.000000,0.000000,0.250000,0,0);}
.m56_c01213{transform:matrix(0.257499,0.010053,-0.009752,0.249810,0,0);-ms-transform:matrix(0.257499,0.010053,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.257499,0.010053,-0.009752,0.249810,0,0);}
.md_c01213{transform:matrix(0.259674,0.006492,-0.006248,0.249922,0,0);-ms-transform:matrix(0.259674,0.006492,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.259674,0.006492,-0.006248,0.249922,0,0);}
.mb2_c01213{transform:matrix(0.260775,0.008084,-0.007746,0.249880,0,0);-ms-transform:matrix(0.260775,0.008084,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.260775,0.008084,-0.007746,0.249880,0,0);}
.m3f_c01213{transform:matrix(0.262858,0.006571,-0.006248,0.249922,0,0);-ms-transform:matrix(0.262858,0.006571,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.262858,0.006571,-0.006248,0.249922,0,0);}
.m2d_c01213{transform:matrix(0.264843,0.007151,-0.006748,0.249909,0,0);-ms-transform:matrix(0.264843,0.007151,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.264843,0.007151,-0.006748,0.249909,0,0);}
.m9d_c01213{transform:matrix(0.267417,0.005348,-0.004999,0.249950,0,0);-ms-transform:matrix(0.267417,0.005348,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.267417,0.005348,-0.004999,0.249950,0,0);}
.m43_c01213{transform:matrix(0.268221,0.006706,-0.006248,0.249922,0,0);-ms-transform:matrix(0.268221,0.006706,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.268221,0.006706,-0.006248,0.249922,0,0);}
.m29_c01213{transform:matrix(0.272681,0.007362,-0.006748,0.249909,0,0);-ms-transform:matrix(0.272681,0.007362,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.272681,0.007362,-0.006748,0.249909,0,0);}
.m4a_c01213{transform:matrix(0.274316,0.010709,-0.009752,0.249810,0,0);-ms-transform:matrix(0.274316,0.010709,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.274316,0.010709,-0.009752,0.249810,0,0);}
.mb_c01213{transform:matrix(0.274539,0.006863,-0.006248,0.249922,0,0);-ms-transform:matrix(0.274539,0.006863,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.274539,0.006863,-0.006248,0.249922,0,0);}
.m1d_c01213{transform:matrix(0.278133,0.006953,-0.006248,0.249922,0,0);-ms-transform:matrix(0.278133,0.006953,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.278133,0.006953,-0.006248,0.249922,0,0);}
.m8d_c01213{transform:matrix(0.279694,0.004475,-0.003999,0.249968,0,0);-ms-transform:matrix(0.279694,0.004475,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.279694,0.004475,-0.003999,0.249968,0,0);}
.m7c_c01213{transform:matrix(0.279989,0.004480,-0.003999,0.249968,0,0);-ms-transform:matrix(0.279989,0.004480,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.279989,0.004480,-0.003999,0.249968,0,0);}
.m4f_c01213{transform:matrix(0.282700,0.011036,-0.009752,0.249810,0,0);-ms-transform:matrix(0.282700,0.011036,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.282700,0.011036,-0.009752,0.249810,0,0);}
.m40_c01213{transform:matrix(0.282782,0.007070,-0.006248,0.249922,0,0);-ms-transform:matrix(0.282782,0.007070,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.282782,0.007070,-0.006248,0.249922,0,0);}
.ma1_c01213{transform:matrix(0.283020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283020,0.000000,0.000000,0.250000,0,0);}
.m10_c01213{transform:matrix(0.286401,0.007160,-0.006248,0.249922,0,0);-ms-transform:matrix(0.286401,0.007160,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.286401,0.007160,-0.006248,0.249922,0,0);}
.m27_c01213{transform:matrix(0.286965,0.007748,-0.006748,0.249909,0,0);-ms-transform:matrix(0.286965,0.007748,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.286965,0.007748,-0.006748,0.249909,0,0);}
.ma5_c01213{transform:matrix(0.290664,0.008720,-0.007497,0.249888,0,0);-ms-transform:matrix(0.290664,0.008720,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.290664,0.008720,-0.007497,0.249888,0,0);}
.m13_c01213{transform:matrix(0.291749,0.007294,-0.006248,0.249922,0,0);-ms-transform:matrix(0.291749,0.007294,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.291749,0.007294,-0.006248,0.249922,0,0);}
.me_c01213{transform:matrix(0.292719,0.007318,-0.006248,0.249922,0,0);-ms-transform:matrix(0.292719,0.007318,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.292719,0.007318,-0.006248,0.249922,0,0);}
.m22_c01213{transform:matrix(0.293273,0.007918,-0.006748,0.249909,0,0);-ms-transform:matrix(0.293273,0.007918,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.293273,0.007918,-0.006748,0.249909,0,0);}
.m70_c01213{transform:matrix(0.295252,0.004429,-0.003750,0.249972,0,0);-ms-transform:matrix(0.295252,0.004429,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.295252,0.004429,-0.003750,0.249972,0,0);}
.m7e_c01213{transform:matrix(0.296477,0.004744,-0.003999,0.249968,0,0);-ms-transform:matrix(0.296477,0.004744,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.296477,0.004744,-0.003999,0.249968,0,0);}
.mb5_c01213{transform:matrix(0.297817,0.009232,-0.007746,0.249880,0,0);-ms-transform:matrix(0.297817,0.009232,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.297817,0.009232,-0.007746,0.249880,0,0);}
.m8e_c01213{transform:matrix(0.298167,0.004771,-0.003999,0.249968,0,0);-ms-transform:matrix(0.298167,0.004771,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.298167,0.004771,-0.003999,0.249968,0,0);}
.mb3_c01213{transform:matrix(0.298657,0.009258,-0.007746,0.249880,0,0);-ms-transform:matrix(0.298657,0.009258,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.298657,0.009258,-0.007746,0.249880,0,0);}
.m6c_c01213{transform:matrix(0.298925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298925,0.000000,0.000000,0.250000,0,0);}
.m7d_c01213{transform:matrix(0.299502,0.004792,-0.003999,0.249968,0,0);-ms-transform:matrix(0.299502,0.004792,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.299502,0.004792,-0.003999,0.249968,0,0);}
.m78_c01213{transform:matrix(0.304301,0.004565,-0.003750,0.249972,0,0);-ms-transform:matrix(0.304301,0.004565,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.304301,0.004565,-0.003750,0.249972,0,0);}
.mb0_c01213{transform:matrix(0.304569,0.009442,-0.007746,0.249880,0,0);-ms-transform:matrix(0.304569,0.009442,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.304569,0.009442,-0.007746,0.249880,0,0);}
.m8c_c01213{transform:matrix(0.304961,0.004879,-0.003999,0.249968,0,0);-ms-transform:matrix(0.304961,0.004879,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.304961,0.004879,-0.003999,0.249968,0,0);}
.m1b_c01213{transform:matrix(0.305874,0.007647,-0.006248,0.249922,0,0);-ms-transform:matrix(0.305874,0.007647,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.305874,0.007647,-0.006248,0.249922,0,0);}
.m37_c01213{transform:matrix(0.306777,0.006442,-0.005249,0.249945,0,0);-ms-transform:matrix(0.306777,0.006442,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.306777,0.006442,-0.005249,0.249945,0,0);}
.m8b_c01213{transform:matrix(0.307856,0.004926,-0.003999,0.249968,0,0);-ms-transform:matrix(0.307856,0.004926,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.307856,0.004926,-0.003999,0.249968,0,0);}
.m38_c01213{transform:matrix(0.309117,0.006491,-0.005249,0.249945,0,0);-ms-transform:matrix(0.309117,0.006491,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.309117,0.006491,-0.005249,0.249945,0,0);}
.m62_c01213{transform:matrix(0.313004,0.005947,-0.004749,0.249955,0,0);-ms-transform:matrix(0.313004,0.005947,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.313004,0.005947,-0.004749,0.249955,0,0);}
.m75_c01213{transform:matrix(0.313990,0.004710,-0.003750,0.249972,0,0);-ms-transform:matrix(0.313990,0.004710,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.313990,0.004710,-0.003750,0.249972,0,0);}
.m47_c01213{transform:matrix(0.315115,0.012302,-0.009752,0.249810,0,0);-ms-transform:matrix(0.315115,0.012302,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.315115,0.012302,-0.009752,0.249810,0,0);}
.m26_c01213{transform:matrix(0.315225,0.008511,-0.006748,0.249909,0,0);-ms-transform:matrix(0.315225,0.008511,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.315225,0.008511,-0.006748,0.249909,0,0);}
.m5e_c01213{transform:matrix(0.317423,0.006031,-0.004749,0.249955,0,0);-ms-transform:matrix(0.317423,0.006031,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.317423,0.006031,-0.004749,0.249955,0,0);}
.m80_c01213{transform:matrix(0.317889,0.005086,-0.003999,0.249968,0,0);-ms-transform:matrix(0.317889,0.005086,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.317889,0.005086,-0.003999,0.249968,0,0);}
.m3d_c01213{transform:matrix(0.318061,0.007952,-0.006248,0.249922,0,0);-ms-transform:matrix(0.318061,0.007952,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.318061,0.007952,-0.006248,0.249922,0,0);}
.m86_c01213{transform:matrix(0.318544,0.005097,-0.003999,0.249968,0,0);-ms-transform:matrix(0.318544,0.005097,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.318544,0.005097,-0.003999,0.249968,0,0);}
.m74_c01213{transform:matrix(0.319159,0.004787,-0.003750,0.249972,0,0);-ms-transform:matrix(0.319159,0.004787,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.319159,0.004787,-0.003750,0.249972,0,0);}
.m5c_c01213{transform:matrix(0.321012,0.006099,-0.004749,0.249955,0,0);-ms-transform:matrix(0.321012,0.006099,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.321012,0.006099,-0.004749,0.249955,0,0);}
.m2e_c01213{transform:matrix(0.321208,0.008673,-0.006748,0.249909,0,0);-ms-transform:matrix(0.321208,0.008673,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.321208,0.008673,-0.006748,0.249909,0,0);}
.m8_c01213{transform:matrix(0.322877,0.008718,-0.006748,0.249909,0,0);-ms-transform:matrix(0.322877,0.008718,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.322877,0.008718,-0.006748,0.249909,0,0);}
.m89_c01213{transform:matrix(0.324219,0.005187,-0.003999,0.249968,0,0);-ms-transform:matrix(0.324219,0.005187,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.324219,0.005187,-0.003999,0.249968,0,0);}
.m8f_c01213{transform:matrix(0.325343,0.005205,-0.003999,0.249968,0,0);-ms-transform:matrix(0.325343,0.005205,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.325343,0.005205,-0.003999,0.249968,0,0);}
.m44_c01213{transform:matrix(0.327978,0.008199,-0.006248,0.249922,0,0);-ms-transform:matrix(0.327978,0.008199,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.327978,0.008199,-0.006248,0.249922,0,0);}
.m31_c01213{transform:matrix(0.328343,0.006895,-0.005249,0.249945,0,0);-ms-transform:matrix(0.328343,0.006895,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.328343,0.006895,-0.005249,0.249945,0,0);}
.m64_c01213{transform:matrix(0.328501,0.006242,-0.004749,0.249955,0,0);-ms-transform:matrix(0.328501,0.006242,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.328501,0.006242,-0.004749,0.249955,0,0);}
.ma7_c01213{transform:matrix(0.329342,0.009880,-0.007497,0.249888,0,0);-ms-transform:matrix(0.329342,0.009880,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.329342,0.009880,-0.007497,0.249888,0,0);}
.m0_c01213{transform:matrix(0.330540,0.014889,-0.011250,0.249747,0,0);-ms-transform:matrix(0.330540,0.014889,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.330540,0.014889,-0.011250,0.249747,0,0);}
.m9a_c01213{transform:matrix(0.330969,0.006619,-0.004999,0.249950,0,0);-ms-transform:matrix(0.330969,0.006619,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.330969,0.006619,-0.004999,0.249950,0,0);}
.m5b_c01213{transform:matrix(0.331480,0.006298,-0.004749,0.249955,0,0);-ms-transform:matrix(0.331480,0.006298,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.331480,0.006298,-0.004749,0.249955,0,0);}
.m48_c01213{transform:matrix(0.332801,0.012992,-0.009752,0.249810,0,0);-ms-transform:matrix(0.332801,0.012992,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.332801,0.012992,-0.009752,0.249810,0,0);}
.m8a_c01213{transform:matrix(0.333432,0.005335,-0.003999,0.249968,0,0);-ms-transform:matrix(0.333432,0.005335,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.333432,0.005335,-0.003999,0.249968,0,0);}
.ma8_c01213{transform:matrix(0.333825,0.010015,-0.007497,0.249888,0,0);-ms-transform:matrix(0.333825,0.010015,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.333825,0.010015,-0.007497,0.249888,0,0);}
.m53_c01213{transform:matrix(0.335010,0.013078,-0.009752,0.249810,0,0);-ms-transform:matrix(0.335010,0.013078,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.335010,0.013078,-0.009752,0.249810,0,0);}
.m2_c01213{transform:matrix(0.335125,0.015096,-0.011250,0.249747,0,0);-ms-transform:matrix(0.335125,0.015096,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.335125,0.015096,-0.011250,0.249747,0,0);}
.m32_c01213{transform:matrix(0.335931,0.007055,-0.005249,0.249945,0,0);-ms-transform:matrix(0.335931,0.007055,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.335931,0.007055,-0.005249,0.249945,0,0);}
.m83_c01213{transform:matrix(0.336162,0.005379,-0.003999,0.249968,0,0);-ms-transform:matrix(0.336162,0.005379,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.336162,0.005379,-0.003999,0.249968,0,0);}
.m24_c01213{transform:matrix(0.336827,0.009094,-0.006748,0.249909,0,0);-ms-transform:matrix(0.336827,0.009094,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.336827,0.009094,-0.006748,0.249909,0,0);}
.m5f_c01213{transform:matrix(0.338434,0.006430,-0.004749,0.249955,0,0);-ms-transform:matrix(0.338434,0.006430,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.338434,0.006430,-0.004749,0.249955,0,0);}
.m59_c01213{transform:matrix(0.339816,0.013266,-0.009752,0.249810,0,0);-ms-transform:matrix(0.339816,0.013266,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.339816,0.013266,-0.009752,0.249810,0,0);}
.m2a_c01213{transform:matrix(0.342910,0.009259,-0.006748,0.249909,0,0);-ms-transform:matrix(0.342910,0.009259,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.342910,0.009259,-0.006748,0.249909,0,0);}
.m3e_c01213{transform:matrix(0.344087,0.008602,-0.006248,0.249922,0,0);-ms-transform:matrix(0.344087,0.008602,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.344087,0.008602,-0.006248,0.249922,0,0);}
.m1e_c01213{transform:matrix(0.346072,0.008652,-0.006248,0.249922,0,0);-ms-transform:matrix(0.346072,0.008652,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.346072,0.008652,-0.006248,0.249922,0,0);}
.m7f_c01213{transform:matrix(0.347321,0.005557,-0.003999,0.249968,0,0);-ms-transform:matrix(0.347321,0.005557,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.347321,0.005557,-0.003999,0.249968,0,0);}
.m16_c01213{transform:matrix(0.347371,0.008684,-0.006248,0.249922,0,0);-ms-transform:matrix(0.347371,0.008684,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.347371,0.008684,-0.006248,0.249922,0,0);}
.m2f_c01213{transform:matrix(0.348368,0.009406,-0.006748,0.249909,0,0);-ms-transform:matrix(0.348368,0.009406,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.348368,0.009406,-0.006748,0.249909,0,0);}
.m3a_c01213{transform:matrix(0.349538,0.007340,-0.005249,0.249945,0,0);-ms-transform:matrix(0.349538,0.007340,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.349538,0.007340,-0.005249,0.249945,0,0);}
.mac_c01213{transform:matrix(0.353176,0.010595,-0.007497,0.249888,0,0);-ms-transform:matrix(0.353176,0.010595,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.353176,0.010595,-0.007497,0.249888,0,0);}
.mab_c01213{transform:matrix(0.353781,0.010613,-0.007497,0.249888,0,0);-ms-transform:matrix(0.353781,0.010613,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.353781,0.010613,-0.007497,0.249888,0,0);}
.ma9_c01213{transform:matrix(0.362847,0.010885,-0.007497,0.249888,0,0);-ms-transform:matrix(0.362847,0.010885,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.362847,0.010885,-0.007497,0.249888,0,0);}
.m81_c01213{transform:matrix(0.364068,0.005825,-0.003999,0.249968,0,0);-ms-transform:matrix(0.364068,0.005825,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.364068,0.005825,-0.003999,0.249968,0,0);}
.m88_c01213{transform:matrix(0.365543,0.005849,-0.003999,0.249968,0,0);-ms-transform:matrix(0.365543,0.005849,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.365543,0.005849,-0.003999,0.249968,0,0);}
.m33_c01213{transform:matrix(0.366329,0.007693,-0.005249,0.249945,0,0);-ms-transform:matrix(0.366329,0.007693,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.366329,0.007693,-0.005249,0.249945,0,0);}
.m17_c01213{transform:matrix(0.367690,0.009192,-0.006248,0.249922,0,0);-ms-transform:matrix(0.367690,0.009192,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.367690,0.009192,-0.006248,0.249922,0,0);}
.m69_c01213{transform:matrix(0.368175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368175,0.000000,0.000000,0.250000,0,0);}
.m94_c01213{transform:matrix(0.369556,0.007391,-0.004999,0.249950,0,0);-ms-transform:matrix(0.369556,0.007391,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.369556,0.007391,-0.004999,0.249950,0,0);}
.m54_c01213{transform:matrix(0.370013,0.014445,-0.009752,0.249810,0,0);-ms-transform:matrix(0.370013,0.014445,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.370013,0.014445,-0.009752,0.249810,0,0);}
.m58_c01213{transform:matrix(0.371017,0.014484,-0.009752,0.249810,0,0);-ms-transform:matrix(0.371017,0.014484,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.371017,0.014484,-0.009752,0.249810,0,0);}
.m7b_c01213{transform:matrix(0.372317,0.005957,-0.003999,0.249968,0,0);-ms-transform:matrix(0.372317,0.005957,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.372317,0.005957,-0.003999,0.249968,0,0);}
.m3c_c01213{transform:matrix(0.372829,0.009321,-0.006248,0.249922,0,0);-ms-transform:matrix(0.372829,0.009321,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.372829,0.009321,-0.006248,0.249922,0,0);}
.m87_c01213{transform:matrix(0.375292,0.006005,-0.003999,0.249968,0,0);-ms-transform:matrix(0.375292,0.006005,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.375292,0.006005,-0.003999,0.249968,0,0);}
.ma_c01213{transform:matrix(0.382830,0.009571,-0.006248,0.249922,0,0);-ms-transform:matrix(0.382830,0.009571,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.382830,0.009571,-0.006248,0.249922,0,0);}
.m6d_c01213{transform:matrix(0.386370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386370,0.000000,0.000000,0.250000,0,0);}
.m1_c01213{transform:matrix(0.387232,0.017443,-0.011250,0.249747,0,0);-ms-transform:matrix(0.387232,0.017443,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.387232,0.017443,-0.011250,0.249747,0,0);}
.m71_c01213{transform:matrix(0.393541,0.005903,-0.003750,0.249972,0,0);-ms-transform:matrix(0.393541,0.005903,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.393541,0.005903,-0.003750,0.249972,0,0);}
.m21_c01213{transform:matrix(0.395546,0.010680,-0.006748,0.249909,0,0);-ms-transform:matrix(0.395546,0.010680,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.395546,0.010680,-0.006748,0.249909,0,0);}
.m25_c01213{transform:matrix(0.396026,0.010693,-0.006748,0.249909,0,0);-ms-transform:matrix(0.396026,0.010693,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.396026,0.010693,-0.006748,0.249909,0,0);}
.m57_c01213{transform:matrix(0.396248,0.015469,-0.009752,0.249810,0,0);-ms-transform:matrix(0.396248,0.015469,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.396248,0.015469,-0.009752,0.249810,0,0);}
.m6e_c01213{transform:matrix(0.396770,0.005952,-0.003750,0.249972,0,0);-ms-transform:matrix(0.396770,0.005952,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.396770,0.005952,-0.003750,0.249972,0,0);}
.m5_c01213{transform:matrix(0.399580,0.017999,-0.011250,0.249747,0,0);-ms-transform:matrix(0.399580,0.017999,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.399580,0.017999,-0.011250,0.249747,0,0);}
.m28_c01213{transform:matrix(0.401049,0.010828,-0.006748,0.249909,0,0);-ms-transform:matrix(0.401049,0.010828,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.401049,0.010828,-0.006748,0.249909,0,0);}
.m84_c01213{transform:matrix(0.401424,0.006423,-0.003999,0.249968,0,0);-ms-transform:matrix(0.401424,0.006423,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.401424,0.006423,-0.003999,0.249968,0,0);}
.m30_c01213{transform:matrix(0.403431,0.008472,-0.005249,0.249945,0,0);-ms-transform:matrix(0.403431,0.008472,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.403431,0.008472,-0.005249,0.249945,0,0);}
.m73_c01213{transform:matrix(0.405229,0.006078,-0.003750,0.249972,0,0);-ms-transform:matrix(0.405229,0.006078,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.405229,0.006078,-0.003750,0.249972,0,0);}
.m6_c01213{transform:matrix(0.413631,0.018632,-0.011250,0.249747,0,0);-ms-transform:matrix(0.413631,0.018632,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.413631,0.018632,-0.011250,0.249747,0,0);}
.m72_c01213{transform:matrix(0.417473,0.006262,-0.003750,0.249972,0,0);-ms-transform:matrix(0.417473,0.006262,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.417473,0.006262,-0.003750,0.249972,0,0);}
.m68_c01213{transform:matrix(0.418111,0.006690,-0.003999,0.249968,0,0);-ms-transform:matrix(0.418111,0.006690,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.418111,0.006690,-0.003999,0.249968,0,0);}
.m6b_c01213{transform:matrix(0.419450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419450,0.000000,0.000000,0.250000,0,0);}
.m20_c01213{transform:matrix(0.419927,0.011338,-0.006748,0.249909,0,0);-ms-transform:matrix(0.419927,0.011338,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.419927,0.011338,-0.006748,0.249909,0,0);}
.m61_c01213{transform:matrix(0.420319,0.007986,-0.004749,0.249955,0,0);-ms-transform:matrix(0.420319,0.007986,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.420319,0.007986,-0.004749,0.249955,0,0);}
.m23_c01213{transform:matrix(0.421032,0.011368,-0.006748,0.249909,0,0);-ms-transform:matrix(0.421032,0.011368,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.421032,0.011368,-0.006748,0.249909,0,0);}
.m9f_c01213{transform:matrix(0.422605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422605,0.000000,0.000000,0.250000,0,0);}
.m14_c01213{transform:matrix(0.425342,0.010634,-0.006248,0.249922,0,0);-ms-transform:matrix(0.425342,0.010634,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.425342,0.010634,-0.006248,0.249922,0,0);}
.m12_c01213{transform:matrix(0.429831,0.010746,-0.006248,0.249922,0,0);-ms-transform:matrix(0.429831,0.010746,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.429831,0.010746,-0.006248,0.249922,0,0);}
.m6f_c01213{transform:matrix(0.431946,0.006479,-0.003750,0.249972,0,0);-ms-transform:matrix(0.431946,0.006479,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.431946,0.006479,-0.003750,0.249972,0,0);}
.ma0_c01213{transform:matrix(0.449370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449370,0.000000,0.000000,0.250000,0,0);}
.m79_c01213{transform:matrix(0.452544,0.006788,-0.003750,0.249972,0,0);-ms-transform:matrix(0.452544,0.006788,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.452544,0.006788,-0.003750,0.249972,0,0);}
.m52_c01213{transform:matrix(0.460329,0.017971,-0.009752,0.249810,0,0);-ms-transform:matrix(0.460329,0.017971,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.460329,0.017971,-0.009752,0.249810,0,0);}
.m3_c01213{transform:matrix(0.460468,0.020742,-0.011250,0.249747,0,0);-ms-transform:matrix(0.460468,0.020742,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.460468,0.020742,-0.011250,0.249747,0,0);}
.m92_c01213{transform:matrix(0.465725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465725,0.000000,0.000000,0.250000,0,0);}
.m36_c01213{transform:matrix(0.468482,0.009838,-0.005249,0.249945,0,0);-ms-transform:matrix(0.468482,0.009838,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.468482,0.009838,-0.005249,0.249945,0,0);}
.m39_c01213{transform:matrix(0.468497,0.009838,-0.005249,0.249945,0,0);-ms-transform:matrix(0.468497,0.009838,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.468497,0.009838,-0.005249,0.249945,0,0);}
.m4b_c01213{transform:matrix(0.474279,0.018515,-0.009752,0.249810,0,0);-ms-transform:matrix(0.474279,0.018515,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.474279,0.018515,-0.009752,0.249810,0,0);}
.m34_c01213{transform:matrix(0.477345,0.010024,-0.005249,0.249945,0,0);-ms-transform:matrix(0.477345,0.010024,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.477345,0.010024,-0.005249,0.249945,0,0);}
.m1a_c01213{transform:matrix(0.492861,0.012322,-0.006248,0.249922,0,0);-ms-transform:matrix(0.492861,0.012322,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.492861,0.012322,-0.006248,0.249922,0,0);}
.m98_c01213{transform:matrix(0.496351,0.009927,-0.004999,0.249950,0,0);-ms-transform:matrix(0.496351,0.009927,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.496351,0.009927,-0.004999,0.249950,0,0);}
.m5a_c01213{transform:matrix(0.497180,0.009446,-0.004749,0.249955,0,0);-ms-transform:matrix(0.497180,0.009446,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.497180,0.009446,-0.004749,0.249955,0,0);}
.m97_c01213{transform:matrix(0.497685,0.009954,-0.004999,0.249950,0,0);-ms-transform:matrix(0.497685,0.009954,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.497685,0.009954,-0.004999,0.249950,0,0);}
.m18_c01213{transform:matrix(0.501528,0.012538,-0.006248,0.249922,0,0);-ms-transform:matrix(0.501528,0.012538,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.501528,0.012538,-0.006248,0.249922,0,0);}
.m7_c01213{transform:matrix(0.505836,0.013658,-0.006748,0.249909,0,0);-ms-transform:matrix(0.505836,0.013658,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.505836,0.013658,-0.006748,0.249909,0,0);}
.m19_c01213{transform:matrix(0.520667,0.013017,-0.006248,0.249922,0,0);-ms-transform:matrix(0.520667,0.013017,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.520667,0.013017,-0.006248,0.249922,0,0);}
.m4d_c01213{transform:matrix(0.527263,0.020584,-0.009752,0.249810,0,0);-ms-transform:matrix(0.527263,0.020584,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.527263,0.020584,-0.009752,0.249810,0,0);}
.ma4_c01213{transform:matrix(0.569359,0.017081,-0.007497,0.249888,0,0);-ms-transform:matrix(0.569359,0.017081,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.569359,0.017081,-0.007497,0.249888,0,0);}
.m93_c01213{transform:matrix(0.586940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.586940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.586940,0.000000,0.000000,0.250000,0,0);}
.m15_c01213{transform:matrix(0.597103,0.014928,-0.006248,0.249922,0,0);-ms-transform:matrix(0.597103,0.014928,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.597103,0.014928,-0.006248,0.249922,0,0);}
.m2b_c01213{transform:matrix(0.605239,0.016341,-0.006748,0.249909,0,0);-ms-transform:matrix(0.605239,0.016341,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.605239,0.016341,-0.006748,0.249909,0,0);}
.m5d_c01213{transform:matrix(0.640279,0.012165,-0.004749,0.249955,0,0);-ms-transform:matrix(0.640279,0.012165,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.640279,0.012165,-0.004749,0.249955,0,0);}
.m82_c01213{transform:matrix(0.656351,0.010502,-0.003999,0.249968,0,0);-ms-transform:matrix(0.656351,0.010502,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.656351,0.010502,-0.003999,0.249968,0,0);}
.m51_c01213{transform:matrix(0.673062,0.026276,-0.009752,0.249810,0,0);-ms-transform:matrix(0.673062,0.026276,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.673062,0.026276,-0.009752,0.249810,0,0);}
.m4_c01213{transform:matrix(0.728956,0.032836,-0.011250,0.249747,0,0);-ms-transform:matrix(0.728956,0.032836,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.728956,0.032836,-0.011250,0.249747,0,0);}
.m9_c01213{transform:matrix(0.732823,0.019786,-0.006748,0.249909,0,0);-ms-transform:matrix(0.732823,0.019786,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.732823,0.019786,-0.006748,0.249909,0,0);}
.maa_c01213{transform:matrix(0.747624,0.022429,-0.007497,0.249888,0,0);-ms-transform:matrix(0.747624,0.022429,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.747624,0.022429,-0.007497,0.249888,0,0);}
.m60_c01213{transform:matrix(0.750280,0.014255,-0.004749,0.249955,0,0);-ms-transform:matrix(0.750280,0.014255,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.750280,0.014255,-0.004749,0.249955,0,0);}
.ma2_c01213{transform:matrix(0.765026,0.022951,-0.007497,0.249888,0,0);-ms-transform:matrix(0.765026,0.022951,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.765026,0.022951,-0.007497,0.249888,0,0);}
.ma3_c01213{transform:matrix(0.774492,0.023235,-0.007497,0.249888,0,0);-ms-transform:matrix(0.774492,0.023235,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.774492,0.023235,-0.007497,0.249888,0,0);}
.mb1_c01213{transform:matrix(0.776292,0.024065,-0.007746,0.249880,0,0);-ms-transform:matrix(0.776292,0.024065,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.776292,0.024065,-0.007746,0.249880,0,0);}
.mb4_c01213{transform:matrix(0.779216,0.024156,-0.007746,0.249880,0,0);-ms-transform:matrix(0.779216,0.024156,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.779216,0.024156,-0.007746,0.249880,0,0);}
.m7a_c01213{transform:matrix(0.779827,0.011697,-0.003750,0.249972,0,0);-ms-transform:matrix(0.779827,0.011697,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.779827,0.011697,-0.003750,0.249972,0,0);}
.m76_c01213{transform:matrix(0.919267,0.013789,-0.003750,0.249972,0,0);-ms-transform:matrix(0.919267,0.013789,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.919267,0.013789,-0.003750,0.249972,0,0);}
.m3b_c01213{transform:matrix(0.926491,0.019456,-0.005249,0.249945,0,0);-ms-transform:matrix(0.926491,0.019456,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.926491,0.019456,-0.005249,0.249945,0,0);}
.m77_c01213{transform:matrix(1.019465,0.015292,-0.003750,0.249972,0,0);-ms-transform:matrix(1.019465,0.015292,-0.003750,0.249972,0,0);-webkit-transform:matrix(1.019465,0.015292,-0.003750,0.249972,0,0);}
.m9e_c01213{transform:matrix(1.169631,0.023393,-0.004999,0.249950,0,0);-ms-transform:matrix(1.169631,0.023393,-0.004999,0.249950,0,0);-webkit-transform:matrix(1.169631,0.023393,-0.004999,0.249950,0,0);}
.mb6_c01213{transform:matrix(1.257266,0.038975,-0.007746,0.249880,0,0);-ms-transform:matrix(1.257266,0.038975,-0.007746,0.249880,0,0);-webkit-transform:matrix(1.257266,0.038975,-0.007746,0.249880,0,0);}
.m1f_c01213{transform:matrix(1.398958,0.034974,-0.006248,0.249922,0,0);-ms-transform:matrix(1.398958,0.034974,-0.006248,0.249922,0,0);-webkit-transform:matrix(1.398958,0.034974,-0.006248,0.249922,0,0);}
.v0_c01213{vertical-align:0.000000px;}
.ls0_c01213{letter-spacing:0.000000px;}
.sc__c01213{text-shadow:none;}
.sc0_c01213{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__c01213{-webkit-text-stroke:0px transparent;}
.sc0_c01213{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01213{word-spacing:0.000000px;}
.fc0_c01213{color:transparent;}
.fs5_c01213{font-size:18.000000px;}
.fsd_c01213{font-size:30.000000px;}
.fs0_c01213{font-size:66.000858px;}
.fsa_c01213{font-size:66.007425px;}
.fs7_c01213{font-size:66.011912px;}
.fs4_c01213{font-size:66.014551px;}
.fs1_c01213{font-size:66.024053px;}
.fs6_c01213{font-size:71.982790px;}
.fs9_c01213{font-size:72.000000px;}
.fsb_c01213{font-size:72.009215px;}
.fs3_c01213{font-size:72.022496px;}
.fs8_c01213{font-size:84.010751px;}
.fsf_c01213{font-size:84.040352px;}
.fsc_c01213{font-size:90.017998px;}
.fs2_c01213{font-size:96.029995px;}
.fse_c01213{font-size:108.048589px;}
.y0_c01213{bottom:0.000000px;}
.yb1_c01213{bottom:607.105542px;}
.yb0_c01213{bottom:607.716924px;}
.yaf_c01213{bottom:609.347772px;}
.yae_c01213{bottom:610.882133px;}
.yad_c01213{bottom:611.761401px;}
.yac_c01213{bottom:613.448932px;}
.yab_c01213{bottom:614.415435px;}
.yaa_c01213{bottom:615.517206px;}
.ya9_c01213{bottom:616.527000px;}
.ya8_c01213{bottom:643.869360px;}
.ya7_c01213{bottom:644.898960px;}
.ya6_c01213{bottom:646.195905px;}
.ya5_c01213{bottom:649.030275px;}
.ya4_c01213{bottom:650.136330px;}
.ya2_c01213{bottom:650.778210px;}
.ya3_c01213{bottom:650.913570px;}
.ya1_c01213{bottom:652.853970px;}
.ya0_c01213{bottom:654.080490px;}
.y9f_c01213{bottom:654.810840px;}
.y9e_c01213{bottom:657.438435px;}
.y9d_c01213{bottom:659.659500px;}
.y9c_c01213{bottom:675.540000px;}
.y9b_c01213{bottom:726.300000px;}
.y9a_c01213{bottom:752.601600px;}
.y99_c01213{bottom:752.731500px;}
.y98_c01213{bottom:754.124760px;}
.y97_c01213{bottom:755.457540px;}
.y96_c01213{bottom:755.684730px;}
.y95_c01213{bottom:756.639900px;}
.y94_c01213{bottom:757.138230px;}
.y93_c01213{bottom:759.092430px;}
.y92_c01213{bottom:759.998040px;}
.y91_c01213{bottom:760.591920px;}
.y90_c01213{bottom:762.490500px;}
.y8d_c01213{bottom:780.570000px;}
.y8f_c01213{bottom:783.433500px;}
.y8e_c01213{bottom:787.722000px;}
.y8c_c01213{bottom:788.456808px;}
.y8b_c01213{bottom:789.041556px;}
.y8a_c01213{bottom:789.505908px;}
.y89_c01213{bottom:790.418856px;}
.y88_c01213{bottom:791.218332px;}
.y87_c01213{bottom:793.094220px;}
.y86_c01213{bottom:794.833884px;}
.y85_c01213{bottom:795.812040px;}
.y84_c01213{bottom:797.312616px;}
.y83_c01213{bottom:799.317456px;}
.y82_c01213{bottom:824.220588px;}
.y81_c01213{bottom:824.576244px;}
.y80_c01213{bottom:826.019220px;}
.y7f_c01213{bottom:827.003988px;}
.y7e_c01213{bottom:827.838132px;}
.y7d_c01213{bottom:828.798156px;}
.y7c_c01213{bottom:829.280892px;}
.y7b_c01213{bottom:830.230332px;}
.y7a_c01213{bottom:830.678868px;}
.y79_c01213{bottom:831.964020px;}
.y78_c01213{bottom:832.858500px;}
.y77_c01213{bottom:833.757008px;}
.y75_c01213{bottom:833.757023px;}
.y76_c01213{bottom:833.757090px;}
.y74_c01213{bottom:859.368690px;}
.y73_c01213{bottom:861.128618px;}
.y72_c01213{bottom:862.784752px;}
.y71_c01213{bottom:863.663265px;}
.y70_c01213{bottom:864.120555px;}
.y6f_c01213{bottom:864.801608px;}
.y6e_c01213{bottom:865.351553px;}
.y6d_c01213{bottom:865.634423px;}
.y6c_c01213{bottom:866.215080px;}
.y6b_c01213{bottom:867.298500px;}
.y6a_c01213{bottom:868.348500px;}
.y65_c01213{bottom:894.252007px;}
.y64_c01213{bottom:894.867493px;}
.y63_c01213{bottom:895.870779px;}
.y62_c01213{bottom:897.194946px;}
.y61_c01213{bottom:899.192112px;}
.y60_c01213{bottom:899.807797px;}
.y5f_c01213{bottom:901.232911px;}
.y5e_c01213{bottom:902.126244px;}
.y5d_c01213{bottom:903.109864px;}
.y5c_c01213{bottom:905.358628px;}
.y5b_c01213{bottom:906.082500px;}
.y69_c01213{bottom:923.747064px;}
.y68_c01213{bottom:924.511056px;}
.y67_c01213{bottom:925.673328px;}
.y66_c01213{bottom:926.922000px;}
.y5a_c01213{bottom:928.290729px;}
.y59_c01213{bottom:929.739851px;}
.y58_c01213{bottom:930.946202px;}
.y57_c01213{bottom:931.763086px;}
.y56_c01213{bottom:933.022762px;}
.y55_c01213{bottom:935.283797px;}
.y54_c01213{bottom:937.253825px;}
.y53_c01213{bottom:939.238558px;}
.y52_c01213{bottom:941.831733px;}
.y51_c01213{bottom:942.319870px;}
.y50_c01213{bottom:945.187473px;}
.y4f_c01213{bottom:946.191113px;}
.y4e_c01213{bottom:948.156870px;}
.y4d_c01213{bottom:958.970285px;}
.y4c_c01213{bottom:960.834621px;}
.y46_c01213{bottom:961.740000px;}
.y4b_c01213{bottom:961.981514px;}
.y4a_c01213{bottom:962.429039px;}
.y49_c01213{bottom:963.378084px;}
.y48_c01213{bottom:966.019535px;}
.y47_c01213{bottom:967.057500px;}
.y45_c01213{bottom:967.078988px;}
.y44_c01213{bottom:968.144813px;}
.y43_c01213{bottom:969.803288px;}
.y42_c01213{bottom:970.406025px;}
.y41_c01213{bottom:972.005100px;}
.y40_c01213{bottom:973.027913px;}
.y3f_c01213{bottom:975.746287px;}
.y3e_c01213{bottom:976.543200px;}
.y3d_c01213{bottom:978.300000px;}
.y3c_c01213{bottom:996.694669px;}
.y3b_c01213{bottom:999.198038px;}
.y3a_c01213{bottom:1000.014801px;}
.y39_c01213{bottom:1002.096793px;}
.y38_c01213{bottom:1002.809985px;}
.y37_c01213{bottom:1004.412138px;}
.y36_c01213{bottom:1004.781885px;}
.y35_c01213{bottom:1006.114083px;}
.y34_c01213{bottom:1006.720773px;}
.y33_c01213{bottom:1008.280621px;}
.y32_c01213{bottom:1010.031896px;}
.y31_c01213{bottom:1011.183000px;}
.y30_c01213{bottom:1030.447670px;}
.y2f_c01213{bottom:1033.550699px;}
.y2e_c01213{bottom:1033.753563px;}
.y2d_c01213{bottom:1034.258193px;}
.y2c_c01213{bottom:1035.394623px;}
.y2b_c01213{bottom:1036.405219px;}
.y2a_c01213{bottom:1038.178228px;}
.y29_c01213{bottom:1039.034965px;}
.y28_c01213{bottom:1040.279733px;}
.y27_c01213{bottom:1041.173122px;}
.y26_c01213{bottom:1042.096847px;}
.y25_c01213{bottom:1042.296957px;}
.y24_c01213{bottom:1043.688051px;}
.y23_c01213{bottom:1045.325912px;}
.y22_c01213{bottom:1046.374092px;}
.y21_c01213{bottom:1047.343500px;}
.y20_c01213{bottom:1071.108900px;}
.y1f_c01213{bottom:1072.131862px;}
.y1e_c01213{bottom:1072.490025px;}
.y1d_c01213{bottom:1072.683000px;}
.y1c_c01213{bottom:1075.104487px;}
.y1b_c01213{bottom:1075.900387px;}
.y1a_c01213{bottom:1077.033862px;}
.y19_c01213{bottom:1079.318025px;}
.y18_c01213{bottom:1080.106162px;}
.y17_c01213{bottom:1081.371037px;}
.y16_c01213{bottom:1083.528000px;}
.y15_c01213{bottom:1101.533625px;}
.y14_c01213{bottom:1103.707275px;}
.y13_c01213{bottom:1104.868237px;}
.y12_c01213{bottom:1106.701312px;}
.y11_c01213{bottom:1107.756337px;}
.y10_c01213{bottom:1109.308350px;}
.yf_c01213{bottom:1111.093687px;}
.ye_c01213{bottom:1112.264625px;}
.yd_c01213{bottom:1114.107825px;}
.yc_c01213{bottom:1115.335275px;}
.yb_c01213{bottom:1116.738000px;}
.y7_c01213{bottom:1140.758055px;}
.y6_c01213{bottom:1143.378067px;}
.y5_c01213{bottom:1146.363930px;}
.y4_c01213{bottom:1147.934182px;}
.y3_c01213{bottom:1148.900175px;}
.y2_c01213{bottom:1150.402387px;}
.y1_c01213{bottom:1152.531000px;}
.ya_c01213{bottom:1153.531884px;}
.y9_c01213{bottom:1154.523770px;}
.y8_c01213{bottom:1155.738000px;}
.h7_c01213{height:18.000000px;}
.hf_c01213{height:30.000000px;}
.h2_c01213{height:66.000858px;}
.hc_c01213{height:66.007425px;}
.h9_c01213{height:66.011912px;}
.h6_c01213{height:66.014551px;}
.h3_c01213{height:66.024053px;}
.h8_c01213{height:71.982790px;}
.hb_c01213{height:72.000000px;}
.hd_c01213{height:72.009215px;}
.h5_c01213{height:72.022496px;}
.ha_c01213{height:84.010751px;}
.h11_c01213{height:84.040352px;}
.he_c01213{height:90.017998px;}
.h4_c01213{height:96.029995px;}
.h10_c01213{height:108.048589px;}
.h1_c01213{height:1258.500000px;}
.h0_c01213{height:1258.740000px;}
.w0_c01213{width:904.200000px;}
.w1_c01213{width:904.500000px;}
.x0_c01213{left:0.000000px;}
.x38_c01213{left:4.564500px;}
.x77_c01213{left:6.210000px;}
.x4f_c01213{left:7.954500px;}
.x79_c01213{left:10.530000px;}
.x78_c01213{left:30.780000px;}
.x65_c01213{left:37.774980px;}
.x2f_c01213{left:42.708000px;}
.x50_c01213{left:46.053000px;}
.x15_c01213{left:49.485000px;}
.x20_c01213{left:51.892500px;}
.x45_c01213{left:55.667317px;}
.x66_c01213{left:73.688558px;}
.x39_c01213{left:74.836500px;}
.xb_c01213{left:75.951000px;}
.x5a_c01213{left:80.730000px;}
.x46_c01213{left:84.297609px;}
.x21_c01213{left:87.796500px;}
.x83_c01213{left:93.111000px;}
.x71_c01213{left:94.992156px;}
.x30_c01213{left:97.522500px;}
.x3a_c01213{left:106.713000px;}
.x5b_c01213{left:122.850000px;}
.x7a_c01213{left:124.126500px;}
.x22_c01213{left:126.618000px;}
.x8_c01213{left:132.172500px;}
.x16_c01213{left:135.763500px;}
.x67_c01213{left:140.923500px;}
.x51_c01213{left:164.409000px;}
.x47_c01213{left:166.132958px;}
.x84_c01213{left:167.146500px;}
.x7b_c01213{left:169.407000px;}
.x9_c01213{left:177.144000px;}
.x48_c01213{left:180.059184px;}
.xc_c01213{left:181.158000px;}
.x17_c01213{left:186.358500px;}
.x5c_c01213{left:187.650000px;}
.x68_c01213{left:196.828500px;}
.xa_c01213{left:213.880500px;}
.x3b_c01213{left:215.448000px;}
.x18_c01213{left:217.884000px;}
.x23_c01213{left:238.801500px;}
.x24_c01213{left:246.213000px;}
.x5d_c01213{left:253.432500px;}
.xd_c01213{left:254.886000px;}
.x3c_c01213{left:256.360500px;}
.x52_c01213{left:263.196000px;}
.x7c_c01213{left:267.117000px;}
.x1_c01213{left:272.949000px;}
.x69_c01213{left:277.150500px;}
.x3f_c01213{left:278.370000px;}
.x25_c01213{left:280.425000px;}
.x31_c01213{left:284.085000px;}
.x7d_c01213{left:292.033500px;}
.x72_c01213{left:295.907100px;}
.xe_c01213{left:301.723500px;}
.x6a_c01213{left:305.184000px;}
.x19_c01213{left:309.250500px;}
.x49_c01213{left:310.702289px;}
.x26_c01213{left:313.513500px;}
.x2_c01213{left:320.204198px;}
.x5e_c01213{left:325.660500px;}
.x53_c01213{left:338.202000px;}
.x7e_c01213{left:339.792000px;}
.x3d_c01213{left:344.433000px;}
.x32_c01213{left:347.523000px;}
.x7f_c01213{left:351.151500px;}
.x3_c01213{left:353.553315px;}
.x1a_c01213{left:354.589500px;}
.x27_c01213{left:359.616000px;}
.x33_c01213{left:365.130000px;}
.x4a_c01213{left:366.931787px;}
.x54_c01213{left:370.606500px;}
.xf_c01213{left:373.137000px;}
.x4_c01213{left:374.998349px;}
.x5f_c01213{left:383.229000px;}
.x73_c01213{left:385.205448px;}
.x1b_c01213{left:386.425500px;}
.x85_c01213{left:389.154000px;}
.x28_c01213{left:391.347000px;}
.x6b_c01213{left:394.695000px;}
.x5_c01213{left:409.857954px;}
.x8a_c01213{left:414.004500px;}
.x80_c01213{left:417.790500px;}
.x60_c01213{left:419.892000px;}
.x74_c01213{left:423.263400px;}
.x4b_c01213{left:431.461265px;}
.x10_c01213{left:435.217500px;}
.x34_c01213{left:441.423000px;}
.x86_c01213{left:447.418500px;}
.x3e_c01213{left:453.405000px;}
.x6c_c01213{left:454.696500px;}
.x29_c01213{left:457.014000px;}
.x61_c01213{left:465.295500px;}
.x4c_c01213{left:467.418893px;}
.x6_c01213{left:476.144101px;}
.x11_c01213{left:477.418500px;}
.x8b_c01213{left:482.119500px;}
.x1c_c01213{left:483.285000px;}
.x81_c01213{left:487.453500px;}
.x75_c01213{left:488.808144px;}
.x1d_c01213{left:491.004000px;}
.x2a_c01213{left:494.443500px;}
.x62_c01213{left:495.781500px;}
.x1e_c01213{left:505.330500px;}
.x6d_c01213{left:506.830500px;}
.x82_c01213{left:510.300000px;}
.x8c_c01213{left:513.297000px;}
.x76_c01213{left:516.633912px;}
.x40_c01213{left:520.750885px;}
.x4d_c01213{left:525.165107px;}
.x7_c01213{left:534.308379px;}
.x2b_c01213{left:536.533500px;}
.x87_c01213{left:541.897500px;}
.x1f_c01213{left:546.249000px;}
.x12_c01213{left:550.741500px;}
.x2c_c01213{left:555.223500px;}
.x2d_c01213{left:562.737000px;}
.x4e_c01213{left:566.513658px;}
.x6e_c01213{left:568.378500px;}
.x35_c01213{left:574.527000px;}
.x88_c01213{left:585.129000px;}
.x41_c01213{left:588.412656px;}
.x8d_c01213{left:596.097000px;}
.x13_c01213{left:597.180000px;}
.x55_c01213{left:598.218000px;}
.x36_c01213{left:613.420500px;}
.x89_c01213{left:619.449000px;}
.x42_c01213{left:624.186347px;}
.x56_c01213{left:630.612000px;}
.x8e_c01213{left:645.592500px;}
.x43_c01213{left:653.564439px;}
.x6f_c01213{left:658.564500px;}
.x63_c01213{left:664.758000px;}
.x57_c01213{left:676.441500px;}
.x2e_c01213{left:677.664000px;}
.x70_c01213{left:680.793000px;}
.x14_c01213{left:684.126000px;}
.x8f_c01213{left:698.200500px;}
.x44_c01213{left:701.320135px;}
.x90_c01213{left:717.922500px;}
.x37_c01213{left:732.628500px;}
.x58_c01213{left:749.083500px;}
.x64_c01213{left:782.086500px;}
.x59_c01213{left:796.833000px;}
@media print{
.v0_c01213{vertical-align:0.000000pt;}
.ls0_c01213{letter-spacing:0.000000pt;}
.ws0_c01213{word-spacing:0.000000pt;}
.fs5_c01213{font-size:16.000000pt;}
.fsd_c01213{font-size:26.666667pt;}
.fs0_c01213{font-size:58.667429pt;}
.fsa_c01213{font-size:58.673266pt;}
.fs7_c01213{font-size:58.677255pt;}
.fs4_c01213{font-size:58.679601pt;}
.fs1_c01213{font-size:58.688047pt;}
.fs6_c01213{font-size:63.984702pt;}
.fs9_c01213{font-size:64.000000pt;}
.fsb_c01213{font-size:64.008191pt;}
.fs3_c01213{font-size:64.019997pt;}
.fs8_c01213{font-size:74.676223pt;}
.fsf_c01213{font-size:74.702535pt;}
.fsc_c01213{font-size:80.015998pt;}
.fs2_c01213{font-size:85.359996pt;}
.fse_c01213{font-size:96.043190pt;}
.y0_c01213{bottom:0.000000pt;}
.yb1_c01213{bottom:539.649371pt;}
.yb0_c01213{bottom:540.192821pt;}
.yaf_c01213{bottom:541.642464pt;}
.yae_c01213{bottom:543.006340pt;}
.yad_c01213{bottom:543.787912pt;}
.yac_c01213{bottom:545.287940pt;}
.yab_c01213{bottom:546.147053pt;}
.yaa_c01213{bottom:547.126405pt;}
.ya9_c01213{bottom:548.024000pt;}
.ya8_c01213{bottom:572.328320pt;}
.ya7_c01213{bottom:573.243520pt;}
.ya6_c01213{bottom:574.396360pt;}
.ya5_c01213{bottom:576.915800pt;}
.ya4_c01213{bottom:577.898960pt;}
.ya2_c01213{bottom:578.469520pt;}
.ya3_c01213{bottom:578.589840pt;}
.ya1_c01213{bottom:580.314640pt;}
.ya0_c01213{bottom:581.404880pt;}
.y9f_c01213{bottom:582.054080pt;}
.y9e_c01213{bottom:584.389720pt;}
.y9d_c01213{bottom:586.364000pt;}
.y9c_c01213{bottom:600.480000pt;}
.y9b_c01213{bottom:645.600000pt;}
.y9a_c01213{bottom:668.979200pt;}
.y99_c01213{bottom:669.094667pt;}
.y98_c01213{bottom:670.333120pt;}
.y97_c01213{bottom:671.517813pt;}
.y96_c01213{bottom:671.719760pt;}
.y95_c01213{bottom:672.568800pt;}
.y94_c01213{bottom:673.011760pt;}
.y93_c01213{bottom:674.748827pt;}
.y92_c01213{bottom:675.553813pt;}
.y91_c01213{bottom:676.081707pt;}
.y90_c01213{bottom:677.769333pt;}
.y8d_c01213{bottom:693.840000pt;}
.y8f_c01213{bottom:696.385333pt;}
.y8e_c01213{bottom:700.197333pt;}
.y8c_c01213{bottom:700.850496pt;}
.y8b_c01213{bottom:701.370272pt;}
.y8a_c01213{bottom:701.783029pt;}
.y89_c01213{bottom:702.594539pt;}
.y88_c01213{bottom:703.305184pt;}
.y87_c01213{bottom:704.972640pt;}
.y86_c01213{bottom:706.519008pt;}
.y85_c01213{bottom:707.388480pt;}
.y84_c01213{bottom:708.722325pt;}
.y83_c01213{bottom:710.504405pt;}
.y82_c01213{bottom:732.640523pt;}
.y81_c01213{bottom:732.956661pt;}
.y80_c01213{bottom:734.239307pt;}
.y7f_c01213{bottom:735.114656pt;}
.y7e_c01213{bottom:735.856117pt;}
.y7d_c01213{bottom:736.709472pt;}
.y7c_c01213{bottom:737.138571pt;}
.y7b_c01213{bottom:737.982517pt;}
.y7a_c01213{bottom:738.381216pt;}
.y79_c01213{bottom:739.523573pt;}
.y78_c01213{bottom:740.318667pt;}
.y77_c01213{bottom:741.117340pt;}
.y75_c01213{bottom:741.117353pt;}
.y76_c01213{bottom:741.117413pt;}
.y74_c01213{bottom:763.883280pt;}
.y73_c01213{bottom:765.447660pt;}
.y72_c01213{bottom:766.919780pt;}
.y71_c01213{bottom:767.700680pt;}
.y70_c01213{bottom:768.107160pt;}
.y6f_c01213{bottom:768.712540pt;}
.y6e_c01213{bottom:769.201380pt;}
.y6d_c01213{bottom:769.452820pt;}
.y6c_c01213{bottom:769.968960pt;}
.y6b_c01213{bottom:770.932000pt;}
.y6a_c01213{bottom:771.865333pt;}
.y65_c01213{bottom:794.890673pt;}
.y64_c01213{bottom:795.437772pt;}
.y63_c01213{bottom:796.329581pt;}
.y62_c01213{bottom:797.506619pt;}
.y61_c01213{bottom:799.281877pt;}
.y60_c01213{bottom:799.829153pt;}
.y5f_c01213{bottom:801.095921pt;}
.y5e_c01213{bottom:801.889995pt;}
.y5d_c01213{bottom:802.764324pt;}
.y5c_c01213{bottom:804.763225pt;}
.y5b_c01213{bottom:805.406667pt;}
.y69_c01213{bottom:821.108501pt;}
.y68_c01213{bottom:821.787605pt;}
.y67_c01213{bottom:822.820736pt;}
.y66_c01213{bottom:823.930667pt;}
.y5a_c01213{bottom:825.147315pt;}
.y59_c01213{bottom:826.435423pt;}
.y58_c01213{bottom:827.507735pt;}
.y57_c01213{bottom:828.233855pt;}
.y56_c01213{bottom:829.353567pt;}
.y55_c01213{bottom:831.363375pt;}
.y54_c01213{bottom:833.114511pt;}
.y53_c01213{bottom:834.878719pt;}
.y52_c01213{bottom:837.183763pt;}
.y51_c01213{bottom:837.617663pt;}
.y50_c01213{bottom:840.166643pt;}
.y4f_c01213{bottom:841.058767pt;}
.y4e_c01213{bottom:842.806107pt;}
.y4d_c01213{bottom:852.418031pt;}
.y4c_c01213{bottom:854.075219pt;}
.y46_c01213{bottom:854.880000pt;}
.y4b_c01213{bottom:855.094679pt;}
.y4a_c01213{bottom:855.492479pt;}
.y49_c01213{bottom:856.336075pt;}
.y48_c01213{bottom:858.684031pt;}
.y47_c01213{bottom:859.606667pt;}
.y45_c01213{bottom:859.625767pt;}
.y44_c01213{bottom:860.573167pt;}
.y43_c01213{bottom:862.047367pt;}
.y42_c01213{bottom:862.583133pt;}
.y41_c01213{bottom:864.004533pt;}
.y40_c01213{bottom:864.913700pt;}
.y3f_c01213{bottom:867.330033pt;}
.y3e_c01213{bottom:868.038400pt;}
.y3d_c01213{bottom:869.600000pt;}
.y3c_c01213{bottom:885.950817pt;}
.y3b_c01213{bottom:888.176033pt;}
.y3a_c01213{bottom:888.902045pt;}
.y39_c01213{bottom:890.752705pt;}
.y38_c01213{bottom:891.386653pt;}
.y37_c01213{bottom:892.810789pt;}
.y36_c01213{bottom:893.139453pt;}
.y35_c01213{bottom:894.323629pt;}
.y34_c01213{bottom:894.862909pt;}
.y33_c01213{bottom:896.249441pt;}
.y32_c01213{bottom:897.806129pt;}
.y31_c01213{bottom:898.829333pt;}
.y30_c01213{bottom:915.953484pt;}
.y2f_c01213{bottom:918.711732pt;}
.y2e_c01213{bottom:918.892056pt;}
.y2d_c01213{bottom:919.340616pt;}
.y2c_c01213{bottom:920.350776pt;}
.y2b_c01213{bottom:921.249084pt;}
.y2a_c01213{bottom:922.825092pt;}
.y29_c01213{bottom:923.586636pt;}
.y28_c01213{bottom:924.693096pt;}
.y27_c01213{bottom:925.487220pt;}
.y26_c01213{bottom:926.308308pt;}
.y25_c01213{bottom:926.486184pt;}
.y24_c01213{bottom:927.722712pt;}
.y23_c01213{bottom:929.178588pt;}
.y22_c01213{bottom:930.110304pt;}
.y21_c01213{bottom:930.972000pt;}
.y20_c01213{bottom:952.096800pt;}
.y1f_c01213{bottom:953.006100pt;}
.y1e_c01213{bottom:953.324467pt;}
.y1d_c01213{bottom:953.496000pt;}
.y1c_c01213{bottom:955.648433pt;}
.y1b_c01213{bottom:956.355900pt;}
.y1a_c01213{bottom:957.363433pt;}
.y19_c01213{bottom:959.393800pt;}
.y18_c01213{bottom:960.094367pt;}
.y17_c01213{bottom:961.218700pt;}
.y16_c01213{bottom:963.136000pt;}
.y15_c01213{bottom:979.141000pt;}
.y14_c01213{bottom:981.073133pt;}
.y13_c01213{bottom:982.105100pt;}
.y12_c01213{bottom:983.734500pt;}
.y11_c01213{bottom:984.672300pt;}
.y10_c01213{bottom:986.051867pt;}
.yf_c01213{bottom:987.638833pt;}
.ye_c01213{bottom:988.679667pt;}
.yd_c01213{bottom:990.318067pt;}
.yc_c01213{bottom:991.409133pt;}
.yb_c01213{bottom:992.656000pt;}
.y7_c01213{bottom:1014.007160pt;}
.y6_c01213{bottom:1016.336060pt;}
.y5_c01213{bottom:1018.990160pt;}
.y4_c01213{bottom:1020.385940pt;}
.y3_c01213{bottom:1021.244600pt;}
.y2_c01213{bottom:1022.579900pt;}
.y1_c01213{bottom:1024.472000pt;}
.ya_c01213{bottom:1025.361675pt;}
.y9_c01213{bottom:1026.243351pt;}
.y8_c01213{bottom:1027.322667pt;}
.h7_c01213{height:16.000000pt;}
.hf_c01213{height:26.666667pt;}
.h2_c01213{height:58.667429pt;}
.hc_c01213{height:58.673266pt;}
.h9_c01213{height:58.677255pt;}
.h6_c01213{height:58.679601pt;}
.h3_c01213{height:58.688047pt;}
.h8_c01213{height:63.984702pt;}
.hb_c01213{height:64.000000pt;}
.hd_c01213{height:64.008191pt;}
.h5_c01213{height:64.019997pt;}
.ha_c01213{height:74.676223pt;}
.h11_c01213{height:74.702535pt;}
.he_c01213{height:80.015998pt;}
.h4_c01213{height:85.359996pt;}
.h10_c01213{height:96.043190pt;}
.h1_c01213{height:1118.666667pt;}
.h0_c01213{height:1118.880000pt;}
.w0_c01213{width:803.733333pt;}
.w1_c01213{width:804.000000pt;}
.x0_c01213{left:0.000000pt;}
.x38_c01213{left:4.057333pt;}
.x77_c01213{left:5.520000pt;}
.x4f_c01213{left:7.070667pt;}
.x79_c01213{left:9.360000pt;}
.x78_c01213{left:27.360000pt;}
.x65_c01213{left:33.577760pt;}
.x2f_c01213{left:37.962667pt;}
.x50_c01213{left:40.936000pt;}
.x15_c01213{left:43.986667pt;}
.x20_c01213{left:46.126667pt;}
.x45_c01213{left:49.482060pt;}
.x66_c01213{left:65.500940pt;}
.x39_c01213{left:66.521333pt;}
.xb_c01213{left:67.512000pt;}
.x5a_c01213{left:71.760000pt;}
.x46_c01213{left:74.931208pt;}
.x21_c01213{left:78.041333pt;}
.x83_c01213{left:82.765333pt;}
.x71_c01213{left:84.437472pt;}
.x30_c01213{left:86.686667pt;}
.x3a_c01213{left:94.856000pt;}
.x5b_c01213{left:109.200000pt;}
.x7a_c01213{left:110.334667pt;}
.x22_c01213{left:112.549333pt;}
.x8_c01213{left:117.486667pt;}
.x16_c01213{left:120.678667pt;}
.x67_c01213{left:125.265333pt;}
.x51_c01213{left:146.141333pt;}
.x47_c01213{left:147.673740pt;}
.x84_c01213{left:148.574667pt;}
.x7b_c01213{left:150.584000pt;}
.x9_c01213{left:157.461333pt;}
.x48_c01213{left:160.052608pt;}
.xc_c01213{left:161.029333pt;}
.x17_c01213{left:165.652000pt;}
.x5c_c01213{left:166.800000pt;}
.x68_c01213{left:174.958667pt;}
.xa_c01213{left:190.116000pt;}
.x3b_c01213{left:191.509333pt;}
.x18_c01213{left:193.674667pt;}
.x23_c01213{left:212.268000pt;}
.x24_c01213{left:218.856000pt;}
.x5d_c01213{left:225.273333pt;}
.xd_c01213{left:226.565333pt;}
.x3c_c01213{left:227.876000pt;}
.x52_c01213{left:233.952000pt;}
.x7c_c01213{left:237.437333pt;}
.x1_c01213{left:242.621333pt;}
.x69_c01213{left:246.356000pt;}
.x3f_c01213{left:247.440000pt;}
.x25_c01213{left:249.266667pt;}
.x31_c01213{left:252.520000pt;}
.x7d_c01213{left:259.585333pt;}
.x72_c01213{left:263.028533pt;}
.xe_c01213{left:268.198667pt;}
.x6a_c01213{left:271.274667pt;}
.x19_c01213{left:274.889333pt;}
.x49_c01213{left:276.179812pt;}
.x26_c01213{left:278.678667pt;}
.x2_c01213{left:284.625953pt;}
.x5e_c01213{left:289.476000pt;}
.x53_c01213{left:300.624000pt;}
.x7e_c01213{left:302.037333pt;}
.x3d_c01213{left:306.162667pt;}
.x32_c01213{left:308.909333pt;}
.x7f_c01213{left:312.134667pt;}
.x3_c01213{left:314.269613pt;}
.x1a_c01213{left:315.190667pt;}
.x27_c01213{left:319.658667pt;}
.x33_c01213{left:324.560000pt;}
.x4a_c01213{left:326.161588pt;}
.x54_c01213{left:329.428000pt;}
.xf_c01213{left:331.677333pt;}
.x4_c01213{left:333.331865pt;}
.x5f_c01213{left:340.648000pt;}
.x73_c01213{left:342.404843pt;}
.x1b_c01213{left:343.489333pt;}
.x85_c01213{left:345.914667pt;}
.x28_c01213{left:347.864000pt;}
.x6b_c01213{left:350.840000pt;}
.x5_c01213{left:364.318181pt;}
.x8a_c01213{left:368.004000pt;}
.x80_c01213{left:371.369333pt;}
.x60_c01213{left:373.237333pt;}
.x74_c01213{left:376.234133pt;}
.x4b_c01213{left:383.521124pt;}
.x10_c01213{left:386.860000pt;}
.x34_c01213{left:392.376000pt;}
.x86_c01213{left:397.705333pt;}
.x3e_c01213{left:403.026667pt;}
.x6c_c01213{left:404.174667pt;}
.x29_c01213{left:406.234667pt;}
.x61_c01213{left:413.596000pt;}
.x4c_c01213{left:415.483460pt;}
.x6_c01213{left:423.239201pt;}
.x11_c01213{left:424.372000pt;}
.x8b_c01213{left:428.550667pt;}
.x1c_c01213{left:429.586667pt;}
.x81_c01213{left:433.292000pt;}
.x75_c01213{left:434.496128pt;}
.x1d_c01213{left:436.448000pt;}
.x2a_c01213{left:439.505333pt;}
.x62_c01213{left:440.694667pt;}
.x1e_c01213{left:449.182667pt;}
.x6d_c01213{left:450.516000pt;}
.x82_c01213{left:453.600000pt;}
.x8c_c01213{left:456.264000pt;}
.x76_c01213{left:459.230144pt;}
.x40_c01213{left:462.889676pt;}
.x4d_c01213{left:466.813428pt;}
.x7_c01213{left:474.940781pt;}
.x2b_c01213{left:476.918667pt;}
.x87_c01213{left:481.686667pt;}
.x1f_c01213{left:485.554667pt;}
.x12_c01213{left:489.548000pt;}
.x2c_c01213{left:493.532000pt;}
.x2d_c01213{left:500.210667pt;}
.x4e_c01213{left:503.567696pt;}
.x6e_c01213{left:505.225333pt;}
.x35_c01213{left:510.690667pt;}
.x88_c01213{left:520.114667pt;}
.x41_c01213{left:523.033472pt;}
.x8d_c01213{left:529.864000pt;}
.x13_c01213{left:530.826667pt;}
.x55_c01213{left:531.749333pt;}
.x36_c01213{left:545.262667pt;}
.x89_c01213{left:550.621333pt;}
.x42_c01213{left:554.832308pt;}
.x56_c01213{left:560.544000pt;}
.x8e_c01213{left:573.860000pt;}
.x43_c01213{left:580.946168pt;}
.x6f_c01213{left:585.390667pt;}
.x63_c01213{left:590.896000pt;}
.x57_c01213{left:601.281333pt;}
.x2e_c01213{left:602.368000pt;}
.x70_c01213{left:605.149333pt;}
.x14_c01213{left:608.112000pt;}
.x8f_c01213{left:620.622667pt;}
.x44_c01213{left:623.395676pt;}
.x90_c01213{left:638.153333pt;}
.x37_c01213{left:651.225333pt;}
.x58_c01213{left:665.852000pt;}
.x64_c01213{left:695.188000pt;}
.x59_c01213{left:708.296000pt;}
}





/* 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_c01214 {
    display:none;
  }
  .loading-indicator_c01214.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01214 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_c01214 { 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_c01214" -> "#page-container .classname_c01214")
 */
.pf_c01214 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01214 { /* 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_c01214.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01214 { /* 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_c01214 { /* 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_c01214 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01214 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01214 {overflow:visible;}
  }
}
.c_c01214 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01214 { /* 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_c01214:after { /* webkit #35443 */
  content: '';
}
.t_c01214:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01214 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 */
}
.__c01214 { /* 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_c01214 { /* info for Javascript */
  display:none;
}
.l_c01214 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01214 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01214 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01214: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_c01214 {
    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_c01214.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01214.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_c01214 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01214{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01214;src:url('chunks/assets/font_fabf4b590f7fb32aea93ffb2.woff2')format("woff");}.ff1_c01214{font-family:ff1_c01214;line-height:1.000000;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;}
.m128_c01214{transform:matrix(0.117933,0.001297,-0.002750,0.249985,0,0);-ms-transform:matrix(0.117933,0.001297,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.117933,0.001297,-0.002750,0.249985,0,0);}
.m105_c01214{transform:matrix(0.133207,0.001465,-0.002750,0.249985,0,0);-ms-transform:matrix(0.133207,0.001465,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.133207,0.001465,-0.002750,0.249985,0,0);}
.m93_c01214{transform:matrix(0.172663,0.000863,-0.001250,0.249997,0,0);-ms-transform:matrix(0.172663,0.000863,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.172663,0.000863,-0.001250,0.249997,0,0);}
.m8e_c01214{transform:matrix(0.174083,0.000870,-0.001250,0.249997,0,0);-ms-transform:matrix(0.174083,0.000870,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.174083,0.000870,-0.001250,0.249997,0,0);}
.m146_c01214{transform:matrix(0.191750,0.003643,-0.004749,0.249955,0,0);-ms-transform:matrix(0.191750,0.003643,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.191750,0.003643,-0.004749,0.249955,0,0);}
.mdf_c01214{transform:matrix(0.191963,0.002112,-0.002750,0.249985,0,0);-ms-transform:matrix(0.191963,0.002112,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.191963,0.002112,-0.002750,0.249985,0,0);}
.m14f_c01214{transform:matrix(0.193835,0.003683,-0.004749,0.249955,0,0);-ms-transform:matrix(0.193835,0.003683,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.193835,0.003683,-0.004749,0.249955,0,0);}
.m62_c01214{transform:matrix(0.194023,0.000970,-0.001250,0.249997,0,0);-ms-transform:matrix(0.194023,0.000970,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.194023,0.000970,-0.001250,0.249997,0,0);}
.m15c_c01214{transform:matrix(0.195140,0.003708,-0.004749,0.249955,0,0);-ms-transform:matrix(0.195140,0.003708,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.195140,0.003708,-0.004749,0.249955,0,0);}
.m151_c01214{transform:matrix(0.197619,0.003755,-0.004749,0.249955,0,0);-ms-transform:matrix(0.197619,0.003755,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.197619,0.003755,-0.004749,0.249955,0,0);}
.m152_c01214{transform:matrix(0.200004,0.003800,-0.004749,0.249955,0,0);-ms-transform:matrix(0.200004,0.003800,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.200004,0.003800,-0.004749,0.249955,0,0);}
.m2f_c01214{transform:matrix(0.200765,0.001405,-0.001750,0.249994,0,0);-ms-transform:matrix(0.200765,0.001405,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.200765,0.001405,-0.001750,0.249994,0,0);}
.md7_c01214{transform:matrix(0.202152,0.001011,-0.001250,0.249997,0,0);-ms-transform:matrix(0.202152,0.001011,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.202152,0.001011,-0.001250,0.249997,0,0);}
.m139_c01214{transform:matrix(0.203273,0.002643,-0.003250,0.249979,0,0);-ms-transform:matrix(0.203273,0.002643,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.203273,0.002643,-0.003250,0.249979,0,0);}
.me2_c01214{transform:matrix(0.203843,0.002242,-0.002750,0.249985,0,0);-ms-transform:matrix(0.203843,0.002242,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.203843,0.002242,-0.002750,0.249985,0,0);}
.mdc_c01214{transform:matrix(0.204113,0.002245,-0.002750,0.249985,0,0);-ms-transform:matrix(0.204113,0.002245,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.204113,0.002245,-0.002750,0.249985,0,0);}
.ma4_c01214{transform:matrix(0.204457,0.001022,-0.001250,0.249997,0,0);-ms-transform:matrix(0.204457,0.001022,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.204457,0.001022,-0.001250,0.249997,0,0);}
.m67_c01214{transform:matrix(0.204707,0.001024,-0.001250,0.249997,0,0);-ms-transform:matrix(0.204707,0.001024,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.204707,0.001024,-0.001250,0.249997,0,0);}
.m150_c01214{transform:matrix(0.204793,0.003891,-0.004749,0.249955,0,0);-ms-transform:matrix(0.204793,0.003891,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.204793,0.003891,-0.004749,0.249955,0,0);}
.md6_c01214{transform:matrix(0.205052,0.001025,-0.001250,0.249997,0,0);-ms-transform:matrix(0.205052,0.001025,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.205052,0.001025,-0.001250,0.249997,0,0);}
.m88_c01214{transform:matrix(0.208097,0.001040,-0.001250,0.249997,0,0);-ms-transform:matrix(0.208097,0.001040,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.208097,0.001040,-0.001250,0.249997,0,0);}
.m4c_c01214{transform:matrix(0.209312,0.001047,-0.001250,0.249997,0,0);-ms-transform:matrix(0.209312,0.001047,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.209312,0.001047,-0.001250,0.249997,0,0);}
.mbb_c01214{transform:matrix(0.210112,0.001051,-0.001250,0.249997,0,0);-ms-transform:matrix(0.210112,0.001051,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.210112,0.001051,-0.001250,0.249997,0,0);}
.m72_c01214{transform:matrix(0.210292,0.001051,-0.001250,0.249997,0,0);-ms-transform:matrix(0.210292,0.001051,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.210292,0.001051,-0.001250,0.249997,0,0);}
.m158_c01214{transform:matrix(0.210357,0.003997,-0.004749,0.249955,0,0);-ms-transform:matrix(0.210357,0.003997,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.210357,0.003997,-0.004749,0.249955,0,0);}
.m156_c01214{transform:matrix(0.210552,0.004000,-0.004749,0.249955,0,0);-ms-transform:matrix(0.210552,0.004000,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.210552,0.004000,-0.004749,0.249955,0,0);}
.m13b_c01214{transform:matrix(0.210592,0.002738,-0.003250,0.249979,0,0);-ms-transform:matrix(0.210592,0.002738,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.210592,0.002738,-0.003250,0.249979,0,0);}
.mda_c01214{transform:matrix(0.211307,0.001057,-0.001250,0.249997,0,0);-ms-transform:matrix(0.211307,0.001057,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.211307,0.001057,-0.001250,0.249997,0,0);}
.m155_c01214{transform:matrix(0.211347,0.004016,-0.004749,0.249955,0,0);-ms-transform:matrix(0.211347,0.004016,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.211347,0.004016,-0.004749,0.249955,0,0);}
.md5_c01214{transform:matrix(0.211657,0.001058,-0.001250,0.249997,0,0);-ms-transform:matrix(0.211657,0.001058,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.211657,0.001058,-0.001250,0.249997,0,0);}
.m101_c01214{transform:matrix(0.211857,0.002330,-0.002750,0.249985,0,0);-ms-transform:matrix(0.211857,0.002330,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.211857,0.002330,-0.002750,0.249985,0,0);}
.m25_c01214{transform:matrix(0.212565,0.001488,-0.001750,0.249994,0,0);-ms-transform:matrix(0.212565,0.001488,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.212565,0.001488,-0.001750,0.249994,0,0);}
.m10d_c01214{transform:matrix(0.213287,0.002346,-0.002750,0.249985,0,0);-ms-transform:matrix(0.213287,0.002346,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.213287,0.002346,-0.002750,0.249985,0,0);}
.me4_c01214{transform:matrix(0.213597,0.002350,-0.002750,0.249985,0,0);-ms-transform:matrix(0.213597,0.002350,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.213597,0.002350,-0.002750,0.249985,0,0);}
.mdd_c01214{transform:matrix(0.213972,0.002354,-0.002750,0.249985,0,0);-ms-transform:matrix(0.213972,0.002354,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.213972,0.002354,-0.002750,0.249985,0,0);}
.m14c_c01214{transform:matrix(0.214941,0.004084,-0.004749,0.249955,0,0);-ms-transform:matrix(0.214941,0.004084,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.214941,0.004084,-0.004749,0.249955,0,0);}
.m135_c01214{transform:matrix(0.215042,0.002796,-0.003250,0.249979,0,0);-ms-transform:matrix(0.215042,0.002796,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.215042,0.002796,-0.003250,0.249979,0,0);}
.m13c_c01214{transform:matrix(0.215162,0.002797,-0.003250,0.249979,0,0);-ms-transform:matrix(0.215162,0.002797,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.215162,0.002797,-0.003250,0.249979,0,0);}
.mb8_c01214{transform:matrix(0.215752,0.001079,-0.001250,0.249997,0,0);-ms-transform:matrix(0.215752,0.001079,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.215752,0.001079,-0.001250,0.249997,0,0);}
.ma2_c01214{transform:matrix(0.215787,0.001079,-0.001250,0.249997,0,0);-ms-transform:matrix(0.215787,0.001079,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.215787,0.001079,-0.001250,0.249997,0,0);}
.m106_c01214{transform:matrix(0.216007,0.002376,-0.002750,0.249985,0,0);-ms-transform:matrix(0.216007,0.002376,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.216007,0.002376,-0.002750,0.249985,0,0);}
.m12a_c01214{transform:matrix(0.216197,0.002378,-0.002750,0.249985,0,0);-ms-transform:matrix(0.216197,0.002378,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.216197,0.002378,-0.002750,0.249985,0,0);}
.m2c_c01214{transform:matrix(0.216330,0.001514,-0.001750,0.249994,0,0);-ms-transform:matrix(0.216330,0.001514,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.216330,0.001514,-0.001750,0.249994,0,0);}
.mc_c01214{transform:matrix(0.216955,0.001519,-0.001750,0.249994,0,0);-ms-transform:matrix(0.216955,0.001519,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.216955,0.001519,-0.001750,0.249994,0,0);}
.m28_c01214{transform:matrix(0.216990,0.001519,-0.001750,0.249994,0,0);-ms-transform:matrix(0.216990,0.001519,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.216990,0.001519,-0.001750,0.249994,0,0);}
.md0_c01214{transform:matrix(0.217497,0.001087,-0.001250,0.249997,0,0);-ms-transform:matrix(0.217497,0.001087,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.217497,0.001087,-0.001250,0.249997,0,0);}
.md_c01214{transform:matrix(0.217615,0.001523,-0.001750,0.249994,0,0);-ms-transform:matrix(0.217615,0.001523,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.217615,0.001523,-0.001750,0.249994,0,0);}
.m39_c01214{transform:matrix(0.217700,0.001524,-0.001750,0.249994,0,0);-ms-transform:matrix(0.217700,0.001524,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.217700,0.001524,-0.001750,0.249994,0,0);}
.mfd_c01214{transform:matrix(0.218782,0.002407,-0.002750,0.249985,0,0);-ms-transform:matrix(0.218782,0.002407,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.218782,0.002407,-0.002750,0.249985,0,0);}
.m12f_c01214{transform:matrix(0.218817,0.002407,-0.002750,0.249985,0,0);-ms-transform:matrix(0.218817,0.002407,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.218817,0.002407,-0.002750,0.249985,0,0);}
.ma5_c01214{transform:matrix(0.219477,0.001097,-0.001250,0.249997,0,0);-ms-transform:matrix(0.219477,0.001097,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.219477,0.001097,-0.001250,0.249997,0,0);}
.m159_c01214{transform:matrix(0.221240,0.004204,-0.004749,0.249955,0,0);-ms-transform:matrix(0.221240,0.004204,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.221240,0.004204,-0.004749,0.249955,0,0);}
.md9_c01214{transform:matrix(0.221367,0.001107,-0.001250,0.249997,0,0);-ms-transform:matrix(0.221367,0.001107,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.221367,0.001107,-0.001250,0.249997,0,0);}
.m19_c01214{transform:matrix(0.221640,0.001551,-0.001750,0.249994,0,0);-ms-transform:matrix(0.221640,0.001551,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.221640,0.001551,-0.001750,0.249994,0,0);}
.m137_c01214{transform:matrix(0.222121,0.002888,-0.003250,0.249979,0,0);-ms-transform:matrix(0.222121,0.002888,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.222121,0.002888,-0.003250,0.249979,0,0);}
.m60_c01214{transform:matrix(0.222607,0.001113,-0.001250,0.249997,0,0);-ms-transform:matrix(0.222607,0.001113,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.222607,0.001113,-0.001250,0.249997,0,0);}
.m53_c01214{transform:matrix(0.222797,0.001114,-0.001250,0.249997,0,0);-ms-transform:matrix(0.222797,0.001114,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.222797,0.001114,-0.001250,0.249997,0,0);}
.m1_c01214{transform:matrix(0.222835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222835,0.000000,0.000000,0.250000,0,0);}
.m148_c01214{transform:matrix(0.223230,0.004241,-0.004749,0.249955,0,0);-ms-transform:matrix(0.223230,0.004241,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.223230,0.004241,-0.004749,0.249955,0,0);}
.mba_c01214{transform:matrix(0.223557,0.001118,-0.001250,0.249997,0,0);-ms-transform:matrix(0.223557,0.001118,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.223557,0.001118,-0.001250,0.249997,0,0);}
.m14a_c01214{transform:matrix(0.223680,0.004250,-0.004749,0.249955,0,0);-ms-transform:matrix(0.223680,0.004250,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.223680,0.004250,-0.004749,0.249955,0,0);}
.m3a_c01214{transform:matrix(0.224649,0.001573,-0.001750,0.249994,0,0);-ms-transform:matrix(0.224649,0.001573,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.224649,0.001573,-0.001750,0.249994,0,0);}
.m14b_c01214{transform:matrix(0.224814,0.004271,-0.004749,0.249955,0,0);-ms-transform:matrix(0.224814,0.004271,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.224814,0.004271,-0.004749,0.249955,0,0);}
.m9e_c01214{transform:matrix(0.224817,0.001124,-0.001250,0.249997,0,0);-ms-transform:matrix(0.224817,0.001124,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.224817,0.001124,-0.001250,0.249997,0,0);}
.mf7_c01214{transform:matrix(0.224846,0.002473,-0.002750,0.249985,0,0);-ms-transform:matrix(0.224846,0.002473,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.224846,0.002473,-0.002750,0.249985,0,0);}
.m157_c01214{transform:matrix(0.224959,0.004274,-0.004749,0.249955,0,0);-ms-transform:matrix(0.224959,0.004274,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.224959,0.004274,-0.004749,0.249955,0,0);}
.mc1_c01214{transform:matrix(0.225527,0.001128,-0.001250,0.249997,0,0);-ms-transform:matrix(0.225527,0.001128,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.225527,0.001128,-0.001250,0.249997,0,0);}
.m14d_c01214{transform:matrix(0.225904,0.004292,-0.004749,0.249955,0,0);-ms-transform:matrix(0.225904,0.004292,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.225904,0.004292,-0.004749,0.249955,0,0);}
.m109_c01214{transform:matrix(0.225926,0.002485,-0.002750,0.249985,0,0);-ms-transform:matrix(0.225926,0.002485,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.225926,0.002485,-0.002750,0.249985,0,0);}
.md8_c01214{transform:matrix(0.226057,0.001130,-0.001250,0.249997,0,0);-ms-transform:matrix(0.226057,0.001130,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.226057,0.001130,-0.001250,0.249997,0,0);}
.m14e_c01214{transform:matrix(0.226139,0.004297,-0.004749,0.249955,0,0);-ms-transform:matrix(0.226139,0.004297,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.226139,0.004297,-0.004749,0.249955,0,0);}
.m10a_c01214{transform:matrix(0.226161,0.002488,-0.002750,0.249985,0,0);-ms-transform:matrix(0.226161,0.002488,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.226161,0.002488,-0.002750,0.249985,0,0);}
.m5a_c01214{transform:matrix(0.226837,0.001134,-0.001250,0.249997,0,0);-ms-transform:matrix(0.226837,0.001134,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.226837,0.001134,-0.001250,0.249997,0,0);}
.mb2_c01214{transform:matrix(0.227102,0.001136,-0.001250,0.249997,0,0);-ms-transform:matrix(0.227102,0.001136,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.227102,0.001136,-0.001250,0.249997,0,0);}
.m1a_c01214{transform:matrix(0.227254,0.001591,-0.001750,0.249994,0,0);-ms-transform:matrix(0.227254,0.001591,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.227254,0.001591,-0.001750,0.249994,0,0);}
.m37_c01214{transform:matrix(0.227349,0.001591,-0.001750,0.249994,0,0);-ms-transform:matrix(0.227349,0.001591,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.227349,0.001591,-0.001750,0.249994,0,0);}
.m17_c01214{transform:matrix(0.227549,0.001593,-0.001750,0.249994,0,0);-ms-transform:matrix(0.227549,0.001593,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.227549,0.001593,-0.001750,0.249994,0,0);}
.mb6_c01214{transform:matrix(0.228097,0.001140,-0.001250,0.249997,0,0);-ms-transform:matrix(0.228097,0.001140,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.228097,0.001140,-0.001250,0.249997,0,0);}
.m3f_c01214{transform:matrix(0.228099,0.001597,-0.001750,0.249994,0,0);-ms-transform:matrix(0.228099,0.001597,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.228099,0.001597,-0.001750,0.249994,0,0);}
.m32_c01214{transform:matrix(0.228504,0.001600,-0.001750,0.249994,0,0);-ms-transform:matrix(0.228504,0.001600,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.228504,0.001600,-0.001750,0.249994,0,0);}
.mdb_c01214{transform:matrix(0.228541,0.002514,-0.002750,0.249985,0,0);-ms-transform:matrix(0.228541,0.002514,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.228541,0.002514,-0.002750,0.249985,0,0);}
.m147_c01214{transform:matrix(0.228659,0.004345,-0.004749,0.249955,0,0);-ms-transform:matrix(0.228659,0.004345,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.228659,0.004345,-0.004749,0.249955,0,0);}
.ma6_c01214{transform:matrix(0.229387,0.001147,-0.001250,0.249997,0,0);-ms-transform:matrix(0.229387,0.001147,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.229387,0.001147,-0.001250,0.249997,0,0);}
.m94_c01214{transform:matrix(0.230282,0.001151,-0.001250,0.249997,0,0);-ms-transform:matrix(0.230282,0.001151,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.230282,0.001151,-0.001250,0.249997,0,0);}
.m144_c01214{transform:matrix(0.230548,0.004380,-0.004749,0.249955,0,0);-ms-transform:matrix(0.230548,0.004380,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.230548,0.004380,-0.004749,0.249955,0,0);}
.mde_c01214{transform:matrix(0.230716,0.002538,-0.002750,0.249985,0,0);-ms-transform:matrix(0.230716,0.002538,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.230716,0.002538,-0.002750,0.249985,0,0);}
.mb0_c01214{transform:matrix(0.230892,0.001154,-0.001250,0.249997,0,0);-ms-transform:matrix(0.230892,0.001154,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.230892,0.001154,-0.001250,0.249997,0,0);}
.m143_c01214{transform:matrix(0.231088,0.004391,-0.004749,0.249955,0,0);-ms-transform:matrix(0.231088,0.004391,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.231088,0.004391,-0.004749,0.249955,0,0);}
.mb5_c01214{transform:matrix(0.231377,0.001157,-0.001250,0.249997,0,0);-ms-transform:matrix(0.231377,0.001157,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.231377,0.001157,-0.001250,0.249997,0,0);}
.m4e_c01214{transform:matrix(0.231432,0.001157,-0.001250,0.249997,0,0);-ms-transform:matrix(0.231432,0.001157,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.231432,0.001157,-0.001250,0.249997,0,0);}
.mff_c01214{transform:matrix(0.231501,0.002547,-0.002750,0.249985,0,0);-ms-transform:matrix(0.231501,0.002547,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.231501,0.002547,-0.002750,0.249985,0,0);}
.m7e_c01214{transform:matrix(0.231622,0.001158,-0.001250,0.249997,0,0);-ms-transform:matrix(0.231622,0.001158,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.231622,0.001158,-0.001250,0.249997,0,0);}
.m68_c01214{transform:matrix(0.231637,0.001158,-0.001250,0.249997,0,0);-ms-transform:matrix(0.231637,0.001158,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.231637,0.001158,-0.001250,0.249997,0,0);}
.m1d_c01214{transform:matrix(0.231799,0.001623,-0.001750,0.249994,0,0);-ms-transform:matrix(0.231799,0.001623,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.231799,0.001623,-0.001750,0.249994,0,0);}
.mf_c01214{transform:matrix(0.232369,0.001627,-0.001750,0.249994,0,0);-ms-transform:matrix(0.232369,0.001627,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.232369,0.001627,-0.001750,0.249994,0,0);}
.m117_c01214{transform:matrix(0.232971,0.002563,-0.002750,0.249985,0,0);-ms-transform:matrix(0.232971,0.002563,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.232971,0.002563,-0.002750,0.249985,0,0);}
.m9d_c01214{transform:matrix(0.233207,0.001166,-0.001250,0.249997,0,0);-ms-transform:matrix(0.233207,0.001166,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.233207,0.001166,-0.001250,0.249997,0,0);}
.m23_c01214{transform:matrix(0.233389,0.001634,-0.001750,0.249994,0,0);-ms-transform:matrix(0.233389,0.001634,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.233389,0.001634,-0.001750,0.249994,0,0);}
.m154_c01214{transform:matrix(0.233393,0.004434,-0.004749,0.249955,0,0);-ms-transform:matrix(0.233393,0.004434,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.233393,0.004434,-0.004749,0.249955,0,0);}
.m102_c01214{transform:matrix(0.233411,0.002568,-0.002750,0.249985,0,0);-ms-transform:matrix(0.233411,0.002568,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.233411,0.002568,-0.002750,0.249985,0,0);}
.me1_c01214{transform:matrix(0.233576,0.002569,-0.002750,0.249985,0,0);-ms-transform:matrix(0.233576,0.002569,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.233576,0.002569,-0.002750,0.249985,0,0);}
.m8a_c01214{transform:matrix(0.233732,0.001169,-0.001250,0.249997,0,0);-ms-transform:matrix(0.233732,0.001169,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.233732,0.001169,-0.001250,0.249997,0,0);}
.me3_c01214{transform:matrix(0.233991,0.002574,-0.002750,0.249985,0,0);-ms-transform:matrix(0.233991,0.002574,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.233991,0.002574,-0.002750,0.249985,0,0);}
.m12c_c01214{transform:matrix(0.234071,0.002575,-0.002750,0.249985,0,0);-ms-transform:matrix(0.234071,0.002575,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.234071,0.002575,-0.002750,0.249985,0,0);}
.m1f_c01214{transform:matrix(0.234614,0.001642,-0.001750,0.249994,0,0);-ms-transform:matrix(0.234614,0.001642,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.234614,0.001642,-0.001750,0.249994,0,0);}
.m100_c01214{transform:matrix(0.234736,0.002582,-0.002750,0.249985,0,0);-ms-transform:matrix(0.234736,0.002582,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.234736,0.002582,-0.002750,0.249985,0,0);}
.m0_c01214{transform:matrix(0.234775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234775,0.000000,0.000000,0.250000,0,0);}
.m96_c01214{transform:matrix(0.234852,0.001174,-0.001250,0.249997,0,0);-ms-transform:matrix(0.234852,0.001174,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.234852,0.001174,-0.001250,0.249997,0,0);}
.m5d_c01214{transform:matrix(0.235077,0.001175,-0.001250,0.249997,0,0);-ms-transform:matrix(0.235077,0.001175,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.235077,0.001175,-0.001250,0.249997,0,0);}
.m15_c01214{transform:matrix(0.235539,0.001649,-0.001750,0.249994,0,0);-ms-transform:matrix(0.235539,0.001649,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.235539,0.001649,-0.001750,0.249994,0,0);}
.m127_c01214{transform:matrix(0.235576,0.002591,-0.002750,0.249985,0,0);-ms-transform:matrix(0.235576,0.002591,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.235576,0.002591,-0.002750,0.249985,0,0);}
.m30_c01214{transform:matrix(0.235804,0.001651,-0.001750,0.249994,0,0);-ms-transform:matrix(0.235804,0.001651,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.235804,0.001651,-0.001750,0.249994,0,0);}
.mad_c01214{transform:matrix(0.235847,0.001179,-0.001250,0.249997,0,0);-ms-transform:matrix(0.235847,0.001179,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.235847,0.001179,-0.001250,0.249997,0,0);}
.m149_c01214{transform:matrix(0.236352,0.004491,-0.004749,0.249955,0,0);-ms-transform:matrix(0.236352,0.004491,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.236352,0.004491,-0.004749,0.249955,0,0);}
.m56_c01214{transform:matrix(0.236442,0.001182,-0.001250,0.249997,0,0);-ms-transform:matrix(0.236442,0.001182,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.236442,0.001182,-0.001250,0.249997,0,0);}
.m22_c01214{transform:matrix(0.237029,0.001659,-0.001750,0.249994,0,0);-ms-transform:matrix(0.237029,0.001659,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.237029,0.001659,-0.001750,0.249994,0,0);}
.m129_c01214{transform:matrix(0.237156,0.002609,-0.002750,0.249985,0,0);-ms-transform:matrix(0.237156,0.002609,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.237156,0.002609,-0.002750,0.249985,0,0);}
.mf2_c01214{transform:matrix(0.237171,0.002609,-0.002750,0.249985,0,0);-ms-transform:matrix(0.237171,0.002609,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.237171,0.002609,-0.002750,0.249985,0,0);}
.mab_c01214{transform:matrix(0.237182,0.001186,-0.001250,0.249997,0,0);-ms-transform:matrix(0.237182,0.001186,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.237182,0.001186,-0.001250,0.249997,0,0);}
.m3e_c01214{transform:matrix(0.237284,0.001661,-0.001750,0.249994,0,0);-ms-transform:matrix(0.237284,0.001661,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.237284,0.001661,-0.001750,0.249994,0,0);}
.m130_c01214{transform:matrix(0.237456,0.002612,-0.002750,0.249985,0,0);-ms-transform:matrix(0.237456,0.002612,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.237456,0.002612,-0.002750,0.249985,0,0);}
.m153_c01214{transform:matrix(0.237577,0.004514,-0.004749,0.249955,0,0);-ms-transform:matrix(0.237577,0.004514,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.237577,0.004514,-0.004749,0.249955,0,0);}
.m124_c01214{transform:matrix(0.237816,0.002616,-0.002750,0.249985,0,0);-ms-transform:matrix(0.237816,0.002616,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.237816,0.002616,-0.002750,0.249985,0,0);}
.m9f_c01214{transform:matrix(0.237892,0.001189,-0.001250,0.249997,0,0);-ms-transform:matrix(0.237892,0.001189,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.237892,0.001189,-0.001250,0.249997,0,0);}
.ma3_c01214{transform:matrix(0.237922,0.001190,-0.001250,0.249997,0,0);-ms-transform:matrix(0.237922,0.001190,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.237922,0.001190,-0.001250,0.249997,0,0);}
.m6_c01214{transform:matrix(0.237969,0.001666,-0.001750,0.249994,0,0);-ms-transform:matrix(0.237969,0.001666,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.237969,0.001666,-0.001750,0.249994,0,0);}
.m1b_c01214{transform:matrix(0.238214,0.001667,-0.001750,0.249994,0,0);-ms-transform:matrix(0.238214,0.001667,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.238214,0.001667,-0.001750,0.249994,0,0);}
.mfe_c01214{transform:matrix(0.238236,0.002621,-0.002750,0.249985,0,0);-ms-transform:matrix(0.238236,0.002621,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.238236,0.002621,-0.002750,0.249985,0,0);}
.m49_c01214{transform:matrix(0.238532,0.001193,-0.001250,0.249997,0,0);-ms-transform:matrix(0.238532,0.001193,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.238532,0.001193,-0.001250,0.249997,0,0);}
.ma7_c01214{transform:matrix(0.238657,0.001193,-0.001250,0.249997,0,0);-ms-transform:matrix(0.238657,0.001193,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.238657,0.001193,-0.001250,0.249997,0,0);}
.m40_c01214{transform:matrix(0.238702,0.001194,-0.001250,0.249997,0,0);-ms-transform:matrix(0.238702,0.001194,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.238702,0.001194,-0.001250,0.249997,0,0);}
.me0_c01214{transform:matrix(0.239131,0.002630,-0.002750,0.249985,0,0);-ms-transform:matrix(0.239131,0.002630,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.239131,0.002630,-0.002750,0.249985,0,0);}
.m7d_c01214{transform:matrix(0.239322,0.001197,-0.001250,0.249997,0,0);-ms-transform:matrix(0.239322,0.001197,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.239322,0.001197,-0.001250,0.249997,0,0);}
.m12_c01214{transform:matrix(0.239529,0.001677,-0.001750,0.249994,0,0);-ms-transform:matrix(0.239529,0.001677,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.239529,0.001677,-0.001750,0.249994,0,0);}
.meb_c01214{transform:matrix(0.239815,0.002638,-0.002750,0.249985,0,0);-ms-transform:matrix(0.239815,0.002638,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.239815,0.002638,-0.002750,0.249985,0,0);}
.m114_c01214{transform:matrix(0.240050,0.002641,-0.002750,0.249985,0,0);-ms-transform:matrix(0.240050,0.002641,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.240050,0.002641,-0.002750,0.249985,0,0);}
.m15a_c01214{transform:matrix(0.240337,0.004566,-0.004749,0.249955,0,0);-ms-transform:matrix(0.240337,0.004566,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.240337,0.004566,-0.004749,0.249955,0,0);}
.med_c01214{transform:matrix(0.240620,0.002647,-0.002750,0.249985,0,0);-ms-transform:matrix(0.240620,0.002647,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.240620,0.002647,-0.002750,0.249985,0,0);}
.md2_c01214{transform:matrix(0.240632,0.001203,-0.001250,0.249997,0,0);-ms-transform:matrix(0.240632,0.001203,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.240632,0.001203,-0.001250,0.249997,0,0);}
.m6e_c01214{transform:matrix(0.240707,0.001204,-0.001250,0.249997,0,0);-ms-transform:matrix(0.240707,0.001204,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.240707,0.001204,-0.001250,0.249997,0,0);}
.m8f_c01214{transform:matrix(0.240727,0.001204,-0.001250,0.249997,0,0);-ms-transform:matrix(0.240727,0.001204,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.240727,0.001204,-0.001250,0.249997,0,0);}
.m2a_c01214{transform:matrix(0.241319,0.001689,-0.001750,0.249994,0,0);-ms-transform:matrix(0.241319,0.001689,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.241319,0.001689,-0.001750,0.249994,0,0);}
.m38_c01214{transform:matrix(0.241359,0.001690,-0.001750,0.249994,0,0);-ms-transform:matrix(0.241359,0.001690,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.241359,0.001690,-0.001750,0.249994,0,0);}
.m133_c01214{transform:matrix(0.241680,0.003142,-0.003250,0.249979,0,0);-ms-transform:matrix(0.241680,0.003142,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.241680,0.003142,-0.003250,0.249979,0,0);}
.mc7_c01214{transform:matrix(0.241992,0.001210,-0.001250,0.249997,0,0);-ms-transform:matrix(0.241992,0.001210,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.241992,0.001210,-0.001250,0.249997,0,0);}
.m46_c01214{transform:matrix(0.242072,0.001210,-0.001250,0.249997,0,0);-ms-transform:matrix(0.242072,0.001210,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.242072,0.001210,-0.001250,0.249997,0,0);}
.m145_c01214{transform:matrix(0.242666,0.004611,-0.004749,0.249955,0,0);-ms-transform:matrix(0.242666,0.004611,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.242666,0.004611,-0.004749,0.249955,0,0);}
.m45_c01214{transform:matrix(0.242742,0.001214,-0.001250,0.249997,0,0);-ms-transform:matrix(0.242742,0.001214,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.242742,0.001214,-0.001250,0.249997,0,0);}
.m3d_c01214{transform:matrix(0.242904,0.001700,-0.001750,0.249994,0,0);-ms-transform:matrix(0.242904,0.001700,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.242904,0.001700,-0.001750,0.249994,0,0);}
.mea_c01214{transform:matrix(0.243040,0.002673,-0.002750,0.249985,0,0);-ms-transform:matrix(0.243040,0.002673,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.243040,0.002673,-0.002750,0.249985,0,0);}
.m18_c01214{transform:matrix(0.243289,0.001703,-0.001750,0.249994,0,0);-ms-transform:matrix(0.243289,0.001703,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.243289,0.001703,-0.001750,0.249994,0,0);}
.mc5_c01214{transform:matrix(0.244092,0.001220,-0.001250,0.249997,0,0);-ms-transform:matrix(0.244092,0.001220,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.244092,0.001220,-0.001250,0.249997,0,0);}
.mce_c01214{transform:matrix(0.244292,0.001221,-0.001250,0.249997,0,0);-ms-transform:matrix(0.244292,0.001221,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.244292,0.001221,-0.001250,0.249997,0,0);}
.mfc_c01214{transform:matrix(0.244785,0.002693,-0.002750,0.249985,0,0);-ms-transform:matrix(0.244785,0.002693,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.244785,0.002693,-0.002750,0.249985,0,0);}
.m24_c01214{transform:matrix(0.245429,0.001718,-0.001750,0.249994,0,0);-ms-transform:matrix(0.245429,0.001718,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.245429,0.001718,-0.001750,0.249994,0,0);}
.m6a_c01214{transform:matrix(0.245457,0.001227,-0.001250,0.249997,0,0);-ms-transform:matrix(0.245457,0.001227,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.245457,0.001227,-0.001250,0.249997,0,0);}
.mfb_c01214{transform:matrix(0.246005,0.002706,-0.002750,0.249985,0,0);-ms-transform:matrix(0.246005,0.002706,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.246005,0.002706,-0.002750,0.249985,0,0);}
.md3_c01214{transform:matrix(0.246202,0.001231,-0.001250,0.249997,0,0);-ms-transform:matrix(0.246202,0.001231,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.246202,0.001231,-0.001250,0.249997,0,0);}
.m7b_c01214{transform:matrix(0.246742,0.001234,-0.001250,0.249997,0,0);-ms-transform:matrix(0.246742,0.001234,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.246742,0.001234,-0.001250,0.249997,0,0);}
.m82_c01214{transform:matrix(0.246807,0.001234,-0.001250,0.249997,0,0);-ms-transform:matrix(0.246807,0.001234,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.246807,0.001234,-0.001250,0.249997,0,0);}
.m4_c01214{transform:matrix(0.246839,0.001728,-0.001750,0.249994,0,0);-ms-transform:matrix(0.246839,0.001728,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.246839,0.001728,-0.001750,0.249994,0,0);}
.m13a_c01214{transform:matrix(0.246999,0.003211,-0.003250,0.249979,0,0);-ms-transform:matrix(0.246999,0.003211,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.246999,0.003211,-0.003250,0.249979,0,0);}
.m7f_c01214{transform:matrix(0.247852,0.001239,-0.001250,0.249997,0,0);-ms-transform:matrix(0.247852,0.001239,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.247852,0.001239,-0.001250,0.249997,0,0);}
.m4b_c01214{transform:matrix(0.247952,0.001240,-0.001250,0.249997,0,0);-ms-transform:matrix(0.247952,0.001240,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.247952,0.001240,-0.001250,0.249997,0,0);}
.m14_c01214{transform:matrix(0.248119,0.001737,-0.001750,0.249994,0,0);-ms-transform:matrix(0.248119,0.001737,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.248119,0.001737,-0.001750,0.249994,0,0);}
.mb7_c01214{transform:matrix(0.248122,0.001241,-0.001250,0.249997,0,0);-ms-transform:matrix(0.248122,0.001241,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.248122,0.001241,-0.001250,0.249997,0,0);}
.m83_c01214{transform:matrix(0.248132,0.001241,-0.001250,0.249997,0,0);-ms-transform:matrix(0.248132,0.001241,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.248132,0.001241,-0.001250,0.249997,0,0);}
.m4f_c01214{transform:matrix(0.248302,0.001242,-0.001250,0.249997,0,0);-ms-transform:matrix(0.248302,0.001242,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.248302,0.001242,-0.001250,0.249997,0,0);}
.m27_c01214{transform:matrix(0.248599,0.001740,-0.001750,0.249994,0,0);-ms-transform:matrix(0.248599,0.001740,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.248599,0.001740,-0.001750,0.249994,0,0);}
.mb1_c01214{transform:matrix(0.248917,0.001245,-0.001250,0.249997,0,0);-ms-transform:matrix(0.248917,0.001245,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.248917,0.001245,-0.001250,0.249997,0,0);}
.mb3_c01214{transform:matrix(0.249032,0.001245,-0.001250,0.249997,0,0);-ms-transform:matrix(0.249032,0.001245,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.249032,0.001245,-0.001250,0.249997,0,0);}
.m10f_c01214{transform:matrix(0.249390,0.002743,-0.002750,0.249985,0,0);-ms-transform:matrix(0.249390,0.002743,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.249390,0.002743,-0.002750,0.249985,0,0);}
.m115_c01214{transform:matrix(0.249615,0.002746,-0.002750,0.249985,0,0);-ms-transform:matrix(0.249615,0.002746,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.249615,0.002746,-0.002750,0.249985,0,0);}
.m2b_c01214{transform:matrix(0.249704,0.001748,-0.001750,0.249994,0,0);-ms-transform:matrix(0.249704,0.001748,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.249704,0.001748,-0.001750,0.249994,0,0);}
.me_c01214{transform:matrix(0.250184,0.001751,-0.001750,0.249994,0,0);-ms-transform:matrix(0.250184,0.001751,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.250184,0.001751,-0.001750,0.249994,0,0);}
.m118_c01214{transform:matrix(0.250295,0.002753,-0.002750,0.249985,0,0);-ms-transform:matrix(0.250295,0.002753,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.250295,0.002753,-0.002750,0.249985,0,0);}
.m44_c01214{transform:matrix(0.250407,0.001252,-0.001250,0.249997,0,0);-ms-transform:matrix(0.250407,0.001252,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.250407,0.001252,-0.001250,0.249997,0,0);}
.m21_c01214{transform:matrix(0.250664,0.001755,-0.001750,0.249994,0,0);-ms-transform:matrix(0.250664,0.001755,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.250664,0.001755,-0.001750,0.249994,0,0);}
.m29_c01214{transform:matrix(0.250759,0.001755,-0.001750,0.249994,0,0);-ms-transform:matrix(0.250759,0.001755,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.250759,0.001755,-0.001750,0.249994,0,0);}
.m5_c01214{transform:matrix(0.250824,0.001756,-0.001750,0.249994,0,0);-ms-transform:matrix(0.250824,0.001756,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.250824,0.001756,-0.001750,0.249994,0,0);}
.mc2_c01214{transform:matrix(0.251007,0.001255,-0.001250,0.249997,0,0);-ms-transform:matrix(0.251007,0.001255,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.251007,0.001255,-0.001250,0.249997,0,0);}
.m12b_c01214{transform:matrix(0.251325,0.002765,-0.002750,0.249985,0,0);-ms-transform:matrix(0.251325,0.002765,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.251325,0.002765,-0.002750,0.249985,0,0);}
.m11b_c01214{transform:matrix(0.251680,0.002768,-0.002750,0.249985,0,0);-ms-transform:matrix(0.251680,0.002768,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.251680,0.002768,-0.002750,0.249985,0,0);}
.m59_c01214{transform:matrix(0.251892,0.001259,-0.001250,0.249997,0,0);-ms-transform:matrix(0.251892,0.001259,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.251892,0.001259,-0.001250,0.249997,0,0);}
.m11_c01214{transform:matrix(0.251984,0.001764,-0.001750,0.249994,0,0);-ms-transform:matrix(0.251984,0.001764,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.251984,0.001764,-0.001750,0.249994,0,0);}
.m132_c01214{transform:matrix(0.252084,0.003277,-0.003250,0.249979,0,0);-ms-transform:matrix(0.252084,0.003277,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.252084,0.003277,-0.003250,0.249979,0,0);}
.m65_c01214{transform:matrix(0.252387,0.001262,-0.001250,0.249997,0,0);-ms-transform:matrix(0.252387,0.001262,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.252387,0.001262,-0.001250,0.249997,0,0);}
.m26_c01214{transform:matrix(0.252704,0.001769,-0.001750,0.249994,0,0);-ms-transform:matrix(0.252704,0.001769,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.252704,0.001769,-0.001750,0.249994,0,0);}
.mef_c01214{transform:matrix(0.252810,0.002781,-0.002750,0.249985,0,0);-ms-transform:matrix(0.252810,0.002781,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.252810,0.002781,-0.002750,0.249985,0,0);}
.mcc_c01214{transform:matrix(0.252842,0.001264,-0.001250,0.249997,0,0);-ms-transform:matrix(0.252842,0.001264,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.252842,0.001264,-0.001250,0.249997,0,0);}
.m138_c01214{transform:matrix(0.253539,0.003296,-0.003250,0.249979,0,0);-ms-transform:matrix(0.253539,0.003296,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.253539,0.003296,-0.003250,0.249979,0,0);}
.m51_c01214{transform:matrix(0.253587,0.001268,-0.001250,0.249997,0,0);-ms-transform:matrix(0.253587,0.001268,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.253587,0.001268,-0.001250,0.249997,0,0);}
.m16_c01214{transform:matrix(0.253749,0.001776,-0.001750,0.249994,0,0);-ms-transform:matrix(0.253749,0.001776,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.253749,0.001776,-0.001750,0.249994,0,0);}
.m97_c01214{transform:matrix(0.253782,0.001269,-0.001250,0.249997,0,0);-ms-transform:matrix(0.253782,0.001269,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.253782,0.001269,-0.001250,0.249997,0,0);}
.m111_c01214{transform:matrix(0.253830,0.002792,-0.002750,0.249985,0,0);-ms-transform:matrix(0.253830,0.002792,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.253830,0.002792,-0.002750,0.249985,0,0);}
.m7c_c01214{transform:matrix(0.253867,0.001269,-0.001250,0.249997,0,0);-ms-transform:matrix(0.253867,0.001269,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.253867,0.001269,-0.001250,0.249997,0,0);}
.m7a_c01214{transform:matrix(0.254307,0.001272,-0.001250,0.249997,0,0);-ms-transform:matrix(0.254307,0.001272,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.254307,0.001272,-0.001250,0.249997,0,0);}
.mcb_c01214{transform:matrix(0.254342,0.001272,-0.001250,0.249997,0,0);-ms-transform:matrix(0.254342,0.001272,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.254342,0.001272,-0.001250,0.249997,0,0);}
.mca_c01214{transform:matrix(0.254367,0.001272,-0.001250,0.249997,0,0);-ms-transform:matrix(0.254367,0.001272,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.254367,0.001272,-0.001250,0.249997,0,0);}
.m10c_c01214{transform:matrix(0.254390,0.002798,-0.002750,0.249985,0,0);-ms-transform:matrix(0.254390,0.002798,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.254390,0.002798,-0.002750,0.249985,0,0);}
.m134_c01214{transform:matrix(0.254633,0.003310,-0.003250,0.249979,0,0);-ms-transform:matrix(0.254633,0.003310,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.254633,0.003310,-0.003250,0.249979,0,0);}
.mcf_c01214{transform:matrix(0.254752,0.001274,-0.001250,0.249997,0,0);-ms-transform:matrix(0.254752,0.001274,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.254752,0.001274,-0.001250,0.249997,0,0);}
.m13_c01214{transform:matrix(0.254974,0.001785,-0.001750,0.249994,0,0);-ms-transform:matrix(0.254974,0.001785,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.254974,0.001785,-0.001750,0.249994,0,0);}
.ma_c01214{transform:matrix(0.255199,0.001786,-0.001750,0.249994,0,0);-ms-transform:matrix(0.255199,0.001786,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.255199,0.001786,-0.001750,0.249994,0,0);}
.m2e_c01214{transform:matrix(0.255284,0.001787,-0.001750,0.249994,0,0);-ms-transform:matrix(0.255284,0.001787,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.255284,0.001787,-0.001750,0.249994,0,0);}
.me6_c01214{transform:matrix(0.255320,0.002809,-0.002750,0.249985,0,0);-ms-transform:matrix(0.255320,0.002809,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.255320,0.002809,-0.002750,0.249985,0,0);}
.m107_c01214{transform:matrix(0.255425,0.002810,-0.002750,0.249985,0,0);-ms-transform:matrix(0.255425,0.002810,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.255425,0.002810,-0.002750,0.249985,0,0);}
.m2d_c01214{transform:matrix(0.255429,0.001788,-0.001750,0.249994,0,0);-ms-transform:matrix(0.255429,0.001788,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.255429,0.001788,-0.001750,0.249994,0,0);}
.m125_c01214{transform:matrix(0.255770,0.002813,-0.002750,0.249985,0,0);-ms-transform:matrix(0.255770,0.002813,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.255770,0.002813,-0.002750,0.249985,0,0);}
.m1e_c01214{transform:matrix(0.255824,0.001791,-0.001750,0.249994,0,0);-ms-transform:matrix(0.255824,0.001791,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.255824,0.001791,-0.001750,0.249994,0,0);}
.m42_c01214{transform:matrix(0.255887,0.001279,-0.001250,0.249997,0,0);-ms-transform:matrix(0.255887,0.001279,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.255887,0.001279,-0.001250,0.249997,0,0);}
.m11c_c01214{transform:matrix(0.256175,0.002818,-0.002750,0.249985,0,0);-ms-transform:matrix(0.256175,0.002818,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.256175,0.002818,-0.002750,0.249985,0,0);}
.m1c_c01214{transform:matrix(0.256189,0.001793,-0.001750,0.249994,0,0);-ms-transform:matrix(0.256189,0.001793,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.256189,0.001793,-0.001750,0.249994,0,0);}
.mf8_c01214{transform:matrix(0.256209,0.002818,-0.002750,0.249985,0,0);-ms-transform:matrix(0.256209,0.002818,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.256209,0.002818,-0.002750,0.249985,0,0);}
.m108_c01214{transform:matrix(0.256799,0.002825,-0.002750,0.249985,0,0);-ms-transform:matrix(0.256799,0.002825,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.256799,0.002825,-0.002750,0.249985,0,0);}
.m11e_c01214{transform:matrix(0.257014,0.002827,-0.002750,0.249985,0,0);-ms-transform:matrix(0.257014,0.002827,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.257014,0.002827,-0.002750,0.249985,0,0);}
.mb9_c01214{transform:matrix(0.257472,0.001287,-0.001250,0.249997,0,0);-ms-transform:matrix(0.257472,0.001287,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.257472,0.001287,-0.001250,0.249997,0,0);}
.m10_c01214{transform:matrix(0.257494,0.001802,-0.001750,0.249994,0,0);-ms-transform:matrix(0.257494,0.001802,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.257494,0.001802,-0.001750,0.249994,0,0);}
.m10b_c01214{transform:matrix(0.257829,0.002836,-0.002750,0.249985,0,0);-ms-transform:matrix(0.257829,0.002836,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.257829,0.002836,-0.002750,0.249985,0,0);}
.m136_c01214{transform:matrix(0.258363,0.003359,-0.003250,0.249979,0,0);-ms-transform:matrix(0.258363,0.003359,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.258363,0.003359,-0.003250,0.249979,0,0);}
.m104_c01214{transform:matrix(0.258399,0.002842,-0.002750,0.249985,0,0);-ms-transform:matrix(0.258399,0.002842,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.258399,0.002842,-0.002750,0.249985,0,0);}
.m120_c01214{transform:matrix(0.258844,0.002847,-0.002750,0.249985,0,0);-ms-transform:matrix(0.258844,0.002847,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.258844,0.002847,-0.002750,0.249985,0,0);}
.m78_c01214{transform:matrix(0.258947,0.001295,-0.001250,0.249997,0,0);-ms-transform:matrix(0.258947,0.001295,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.258947,0.001295,-0.001250,0.249997,0,0);}
.m8_c01214{transform:matrix(0.259274,0.001815,-0.001750,0.249994,0,0);-ms-transform:matrix(0.259274,0.001815,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.259274,0.001815,-0.001750,0.249994,0,0);}
.m61_c01214{transform:matrix(0.259347,0.001297,-0.001250,0.249997,0,0);-ms-transform:matrix(0.259347,0.001297,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.259347,0.001297,-0.001250,0.249997,0,0);}
.m35_c01214{transform:matrix(0.259679,0.001818,-0.001750,0.249994,0,0);-ms-transform:matrix(0.259679,0.001818,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.259679,0.001818,-0.001750,0.249994,0,0);}
.m10e_c01214{transform:matrix(0.259854,0.002858,-0.002750,0.249985,0,0);-ms-transform:matrix(0.259854,0.002858,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.259854,0.002858,-0.002750,0.249985,0,0);}
.m9_c01214{transform:matrix(0.260184,0.001821,-0.001750,0.249994,0,0);-ms-transform:matrix(0.260184,0.001821,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.260184,0.001821,-0.001750,0.249994,0,0);}
.mbe_c01214{transform:matrix(0.261012,0.001305,-0.001250,0.249997,0,0);-ms-transform:matrix(0.261012,0.001305,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.261012,0.001305,-0.001250,0.249997,0,0);}
.m81_c01214{transform:matrix(0.261042,0.001305,-0.001250,0.249997,0,0);-ms-transform:matrix(0.261042,0.001305,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.261042,0.001305,-0.001250,0.249997,0,0);}
.mfa_c01214{transform:matrix(0.261164,0.002873,-0.002750,0.249985,0,0);-ms-transform:matrix(0.261164,0.002873,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.261164,0.002873,-0.002750,0.249985,0,0);}
.m110_c01214{transform:matrix(0.261349,0.002875,-0.002750,0.249985,0,0);-ms-transform:matrix(0.261349,0.002875,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.261349,0.002875,-0.002750,0.249985,0,0);}
.mbd_c01214{transform:matrix(0.261722,0.001309,-0.001250,0.249997,0,0);-ms-transform:matrix(0.261722,0.001309,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.261722,0.001309,-0.001250,0.249997,0,0);}
.m113_c01214{transform:matrix(0.262254,0.002885,-0.002750,0.249985,0,0);-ms-transform:matrix(0.262254,0.002885,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.262254,0.002885,-0.002750,0.249985,0,0);}
.m55_c01214{transform:matrix(0.262462,0.001312,-0.001250,0.249997,0,0);-ms-transform:matrix(0.262462,0.001312,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.262462,0.001312,-0.001250,0.249997,0,0);}
.m12d_c01214{transform:matrix(0.262879,0.002892,-0.002750,0.249985,0,0);-ms-transform:matrix(0.262879,0.002892,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.262879,0.002892,-0.002750,0.249985,0,0);}
.mb4_c01214{transform:matrix(0.262937,0.001315,-0.001250,0.249997,0,0);-ms-transform:matrix(0.262937,0.001315,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.262937,0.001315,-0.001250,0.249997,0,0);}
.m74_c01214{transform:matrix(0.262977,0.001315,-0.001250,0.249997,0,0);-ms-transform:matrix(0.262977,0.001315,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.262977,0.001315,-0.001250,0.249997,0,0);}
.m20_c01214{transform:matrix(0.263809,0.001847,-0.001750,0.249994,0,0);-ms-transform:matrix(0.263809,0.001847,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.263809,0.001847,-0.001750,0.249994,0,0);}
.mbf_c01214{transform:matrix(0.264047,0.001320,-0.001250,0.249997,0,0);-ms-transform:matrix(0.264047,0.001320,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.264047,0.001320,-0.001250,0.249997,0,0);}
.m103_c01214{transform:matrix(0.264104,0.002905,-0.002750,0.249985,0,0);-ms-transform:matrix(0.264104,0.002905,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.264104,0.002905,-0.002750,0.249985,0,0);}
.m31_c01214{transform:matrix(0.264469,0.001851,-0.001750,0.249994,0,0);-ms-transform:matrix(0.264469,0.001851,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.264469,0.001851,-0.001750,0.249994,0,0);}
.mf4_c01214{transform:matrix(0.264659,0.002911,-0.002750,0.249985,0,0);-ms-transform:matrix(0.264659,0.002911,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.264659,0.002911,-0.002750,0.249985,0,0);}
.mac_c01214{transform:matrix(0.264672,0.001323,-0.001250,0.249997,0,0);-ms-transform:matrix(0.264672,0.001323,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.264672,0.001323,-0.001250,0.249997,0,0);}
.m122_c01214{transform:matrix(0.264684,0.002912,-0.002750,0.249985,0,0);-ms-transform:matrix(0.264684,0.002912,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.264684,0.002912,-0.002750,0.249985,0,0);}
.m112_c01214{transform:matrix(0.265294,0.002918,-0.002750,0.249985,0,0);-ms-transform:matrix(0.265294,0.002918,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.265294,0.002918,-0.002750,0.249985,0,0);}
.maa_c01214{transform:matrix(0.265307,0.001327,-0.001250,0.249997,0,0);-ms-transform:matrix(0.265307,0.001327,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.265307,0.001327,-0.001250,0.249997,0,0);}
.m8b_c01214{transform:matrix(0.265447,0.001327,-0.001250,0.249997,0,0);-ms-transform:matrix(0.265447,0.001327,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.265447,0.001327,-0.001250,0.249997,0,0);}
.m36_c01214{transform:matrix(0.266418,0.001865,-0.001750,0.249994,0,0);-ms-transform:matrix(0.266418,0.001865,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.266418,0.001865,-0.001750,0.249994,0,0);}
.m99_c01214{transform:matrix(0.267407,0.001337,-0.001250,0.249997,0,0);-ms-transform:matrix(0.267407,0.001337,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.267407,0.001337,-0.001250,0.249997,0,0);}
.me7_c01214{transform:matrix(0.267444,0.002942,-0.002750,0.249985,0,0);-ms-transform:matrix(0.267444,0.002942,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.267444,0.002942,-0.002750,0.249985,0,0);}
.m69_c01214{transform:matrix(0.267942,0.001340,-0.001250,0.249997,0,0);-ms-transform:matrix(0.267942,0.001340,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.267942,0.001340,-0.001250,0.249997,0,0);}
.mf1_c01214{transform:matrix(0.267984,0.002948,-0.002750,0.249985,0,0);-ms-transform:matrix(0.267984,0.002948,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.267984,0.002948,-0.002750,0.249985,0,0);}
.ma9_c01214{transform:matrix(0.267987,0.001340,-0.001250,0.249997,0,0);-ms-transform:matrix(0.267987,0.001340,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.267987,0.001340,-0.001250,0.249997,0,0);}
.m79_c01214{transform:matrix(0.268477,0.001342,-0.001250,0.249997,0,0);-ms-transform:matrix(0.268477,0.001342,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.268477,0.001342,-0.001250,0.249997,0,0);}
.maf_c01214{transform:matrix(0.268532,0.001343,-0.001250,0.249997,0,0);-ms-transform:matrix(0.268532,0.001343,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.268532,0.001343,-0.001250,0.249997,0,0);}
.mae_c01214{transform:matrix(0.268907,0.001345,-0.001250,0.249997,0,0);-ms-transform:matrix(0.268907,0.001345,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.268907,0.001345,-0.001250,0.249997,0,0);}
.m89_c01214{transform:matrix(0.269752,0.001349,-0.001250,0.249997,0,0);-ms-transform:matrix(0.269752,0.001349,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.269752,0.001349,-0.001250,0.249997,0,0);}
.md1_c01214{transform:matrix(0.269942,0.001350,-0.001250,0.249997,0,0);-ms-transform:matrix(0.269942,0.001350,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.269942,0.001350,-0.001250,0.249997,0,0);}
.mec_c01214{transform:matrix(0.269989,0.002970,-0.002750,0.249985,0,0);-ms-transform:matrix(0.269989,0.002970,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.269989,0.002970,-0.002750,0.249985,0,0);}
.m8c_c01214{transform:matrix(0.270312,0.001352,-0.001250,0.249997,0,0);-ms-transform:matrix(0.270312,0.001352,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.270312,0.001352,-0.001250,0.249997,0,0);}
.m73_c01214{transform:matrix(0.270947,0.001355,-0.001250,0.249997,0,0);-ms-transform:matrix(0.270947,0.001355,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.270947,0.001355,-0.001250,0.249997,0,0);}
.m98_c01214{transform:matrix(0.271272,0.001356,-0.001250,0.249997,0,0);-ms-transform:matrix(0.271272,0.001356,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.271272,0.001356,-0.001250,0.249997,0,0);}
.m48_c01214{transform:matrix(0.271682,0.001358,-0.001250,0.249997,0,0);-ms-transform:matrix(0.271682,0.001358,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.271682,0.001358,-0.001250,0.249997,0,0);}
.mf0_c01214{transform:matrix(0.271709,0.002989,-0.002750,0.249985,0,0);-ms-transform:matrix(0.271709,0.002989,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.271709,0.002989,-0.002750,0.249985,0,0);}
.m75_c01214{transform:matrix(0.271802,0.001359,-0.001250,0.249997,0,0);-ms-transform:matrix(0.271802,0.001359,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.271802,0.001359,-0.001250,0.249997,0,0);}
.m3_c01214{transform:matrix(0.271973,0.001904,-0.001750,0.249994,0,0);-ms-transform:matrix(0.271973,0.001904,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.271973,0.001904,-0.001750,0.249994,0,0);}
.mcd_c01214{transform:matrix(0.272007,0.001360,-0.001250,0.249997,0,0);-ms-transform:matrix(0.272007,0.001360,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.272007,0.001360,-0.001250,0.249997,0,0);}
.mc3_c01214{transform:matrix(0.272402,0.001362,-0.001250,0.249997,0,0);-ms-transform:matrix(0.272402,0.001362,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.272402,0.001362,-0.001250,0.249997,0,0);}
.mc4_c01214{transform:matrix(0.272627,0.001363,-0.001250,0.249997,0,0);-ms-transform:matrix(0.272627,0.001363,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.272627,0.001363,-0.001250,0.249997,0,0);}
.m90_c01214{transform:matrix(0.272637,0.001363,-0.001250,0.249997,0,0);-ms-transform:matrix(0.272637,0.001363,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.272637,0.001363,-0.001250,0.249997,0,0);}
.m121_c01214{transform:matrix(0.272778,0.003001,-0.002750,0.249985,0,0);-ms-transform:matrix(0.272778,0.003001,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.272778,0.003001,-0.002750,0.249985,0,0);}
.m4d_c01214{transform:matrix(0.272852,0.001364,-0.001250,0.249997,0,0);-ms-transform:matrix(0.272852,0.001364,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.272852,0.001364,-0.001250,0.249997,0,0);}
.m5e_c01214{transform:matrix(0.272857,0.001364,-0.001250,0.249997,0,0);-ms-transform:matrix(0.272857,0.001364,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.272857,0.001364,-0.001250,0.249997,0,0);}
.m6b_c01214{transform:matrix(0.273112,0.001366,-0.001250,0.249997,0,0);-ms-transform:matrix(0.273112,0.001366,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.273112,0.001366,-0.001250,0.249997,0,0);}
.me8_c01214{transform:matrix(0.273318,0.003007,-0.002750,0.249985,0,0);-ms-transform:matrix(0.273318,0.003007,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.273318,0.003007,-0.002750,0.249985,0,0);}
.m123_c01214{transform:matrix(0.273848,0.003012,-0.002750,0.249985,0,0);-ms-transform:matrix(0.273848,0.003012,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.273848,0.003012,-0.002750,0.249985,0,0);}
.m66_c01214{transform:matrix(0.273992,0.001370,-0.001250,0.249997,0,0);-ms-transform:matrix(0.273992,0.001370,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.273992,0.001370,-0.001250,0.249997,0,0);}
.m5f_c01214{transform:matrix(0.274422,0.001372,-0.001250,0.249997,0,0);-ms-transform:matrix(0.274422,0.001372,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.274422,0.001372,-0.001250,0.249997,0,0);}
.m54_c01214{transform:matrix(0.274662,0.001373,-0.001250,0.249997,0,0);-ms-transform:matrix(0.274662,0.001373,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.274662,0.001373,-0.001250,0.249997,0,0);}
.mc6_c01214{transform:matrix(0.274737,0.001374,-0.001250,0.249997,0,0);-ms-transform:matrix(0.274737,0.001374,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.274737,0.001374,-0.001250,0.249997,0,0);}
.m43_c01214{transform:matrix(0.274967,0.001375,-0.001250,0.249997,0,0);-ms-transform:matrix(0.274967,0.001375,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.274967,0.001375,-0.001250,0.249997,0,0);}
.m9a_c01214{transform:matrix(0.275052,0.001375,-0.001250,0.249997,0,0);-ms-transform:matrix(0.275052,0.001375,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.275052,0.001375,-0.001250,0.249997,0,0);}
.m12e_c01214{transform:matrix(0.275373,0.003029,-0.002750,0.249985,0,0);-ms-transform:matrix(0.275373,0.003029,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.275373,0.003029,-0.002750,0.249985,0,0);}
.m11f_c01214{transform:matrix(0.275533,0.003031,-0.002750,0.249985,0,0);-ms-transform:matrix(0.275533,0.003031,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.275533,0.003031,-0.002750,0.249985,0,0);}
.m77_c01214{transform:matrix(0.275972,0.001380,-0.001250,0.249997,0,0);-ms-transform:matrix(0.275972,0.001380,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.275972,0.001380,-0.001250,0.249997,0,0);}
.m2_c01214{transform:matrix(0.276228,0.001934,-0.001750,0.249994,0,0);-ms-transform:matrix(0.276228,0.001934,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.276228,0.001934,-0.001750,0.249994,0,0);}
.m6c_c01214{transform:matrix(0.276357,0.001382,-0.001250,0.249997,0,0);-ms-transform:matrix(0.276357,0.001382,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.276357,0.001382,-0.001250,0.249997,0,0);}
.m80_c01214{transform:matrix(0.277172,0.001386,-0.001250,0.249997,0,0);-ms-transform:matrix(0.277172,0.001386,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.277172,0.001386,-0.001250,0.249997,0,0);}
.m85_c01214{transform:matrix(0.277467,0.001387,-0.001250,0.249997,0,0);-ms-transform:matrix(0.277467,0.001387,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.277467,0.001387,-0.001250,0.249997,0,0);}
.m7_c01214{transform:matrix(0.277573,0.001943,-0.001750,0.249994,0,0);-ms-transform:matrix(0.277573,0.001943,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.277573,0.001943,-0.001750,0.249994,0,0);}
.m9b_c01214{transform:matrix(0.277997,0.001390,-0.001250,0.249997,0,0);-ms-transform:matrix(0.277997,0.001390,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.277997,0.001390,-0.001250,0.249997,0,0);}
.m52_c01214{transform:matrix(0.278522,0.001393,-0.001250,0.249997,0,0);-ms-transform:matrix(0.278522,0.001393,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.278522,0.001393,-0.001250,0.249997,0,0);}
.m95_c01214{transform:matrix(0.278932,0.001395,-0.001250,0.249997,0,0);-ms-transform:matrix(0.278932,0.001395,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.278932,0.001395,-0.001250,0.249997,0,0);}
.me9_c01214{transform:matrix(0.278938,0.003068,-0.002750,0.249985,0,0);-ms-transform:matrix(0.278938,0.003068,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.278938,0.003068,-0.002750,0.249985,0,0);}
.m116_c01214{transform:matrix(0.279158,0.003071,-0.002750,0.249985,0,0);-ms-transform:matrix(0.279158,0.003071,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.279158,0.003071,-0.002750,0.249985,0,0);}
.m92_c01214{transform:matrix(0.279462,0.001397,-0.001250,0.249997,0,0);-ms-transform:matrix(0.279462,0.001397,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.279462,0.001397,-0.001250,0.249997,0,0);}
.m5b_c01214{transform:matrix(0.279662,0.001398,-0.001250,0.249997,0,0);-ms-transform:matrix(0.279662,0.001398,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.279662,0.001398,-0.001250,0.249997,0,0);}
.mb_c01214{transform:matrix(0.279718,0.001958,-0.001750,0.249994,0,0);-ms-transform:matrix(0.279718,0.001958,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.279718,0.001958,-0.001750,0.249994,0,0);}
.ma1_c01214{transform:matrix(0.279852,0.001399,-0.001250,0.249997,0,0);-ms-transform:matrix(0.279852,0.001399,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.279852,0.001399,-0.001250,0.249997,0,0);}
.m9c_c01214{transform:matrix(0.279907,0.001400,-0.001250,0.249997,0,0);-ms-transform:matrix(0.279907,0.001400,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.279907,0.001400,-0.001250,0.249997,0,0);}
.ma8_c01214{transform:matrix(0.280231,0.001401,-0.001250,0.249997,0,0);-ms-transform:matrix(0.280231,0.001401,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.280231,0.001401,-0.001250,0.249997,0,0);}
.mc0_c01214{transform:matrix(0.280406,0.001402,-0.001250,0.249997,0,0);-ms-transform:matrix(0.280406,0.001402,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.280406,0.001402,-0.001250,0.249997,0,0);}
.m15b_c01214{transform:matrix(0.280549,0.005330,-0.004749,0.249955,0,0);-ms-transform:matrix(0.280549,0.005330,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.280549,0.005330,-0.004749,0.249955,0,0);}
.m71_c01214{transform:matrix(0.281241,0.001406,-0.001250,0.249997,0,0);-ms-transform:matrix(0.281241,0.001406,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.281241,0.001406,-0.001250,0.249997,0,0);}
.mf3_c01214{transform:matrix(0.281363,0.003095,-0.002750,0.249985,0,0);-ms-transform:matrix(0.281363,0.003095,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.281363,0.003095,-0.002750,0.249985,0,0);}
.m91_c01214{transform:matrix(0.281871,0.001409,-0.001250,0.249997,0,0);-ms-transform:matrix(0.281871,0.001409,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.281871,0.001409,-0.001250,0.249997,0,0);}
.m6d_c01214{transform:matrix(0.281876,0.001409,-0.001250,0.249997,0,0);-ms-transform:matrix(0.281876,0.001409,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.281876,0.001409,-0.001250,0.249997,0,0);}
.m41_c01214{transform:matrix(0.282361,0.001412,-0.001250,0.249997,0,0);-ms-transform:matrix(0.282361,0.001412,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.282361,0.001412,-0.001250,0.249997,0,0);}
.m50_c01214{transform:matrix(0.282846,0.001414,-0.001250,0.249997,0,0);-ms-transform:matrix(0.282846,0.001414,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.282846,0.001414,-0.001250,0.249997,0,0);}
.m76_c01214{transform:matrix(0.283146,0.001416,-0.001250,0.249997,0,0);-ms-transform:matrix(0.283146,0.001416,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.283146,0.001416,-0.001250,0.249997,0,0);}
.mee_c01214{transform:matrix(0.283178,0.003115,-0.002750,0.249985,0,0);-ms-transform:matrix(0.283178,0.003115,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.283178,0.003115,-0.002750,0.249985,0,0);}
.m11d_c01214{transform:matrix(0.283248,0.003116,-0.002750,0.249985,0,0);-ms-transform:matrix(0.283248,0.003116,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.283248,0.003116,-0.002750,0.249985,0,0);}
.m8d_c01214{transform:matrix(0.283951,0.001420,-0.001250,0.249997,0,0);-ms-transform:matrix(0.283951,0.001420,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.283951,0.001420,-0.001250,0.249997,0,0);}
.m142_c01214{transform:matrix(0.284456,0.003698,-0.003250,0.249979,0,0);-ms-transform:matrix(0.284456,0.003698,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.284456,0.003698,-0.003250,0.249979,0,0);}
.m64_c01214{transform:matrix(0.284611,0.001423,-0.001250,0.249997,0,0);-ms-transform:matrix(0.284611,0.001423,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.284611,0.001423,-0.001250,0.249997,0,0);}
.mf5_c01214{transform:matrix(0.285238,0.003138,-0.002750,0.249985,0,0);-ms-transform:matrix(0.285238,0.003138,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.285238,0.003138,-0.002750,0.249985,0,0);}
.mf6_c01214{transform:matrix(0.285488,0.003140,-0.002750,0.249985,0,0);-ms-transform:matrix(0.285488,0.003140,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.285488,0.003140,-0.002750,0.249985,0,0);}
.md4_c01214{transform:matrix(0.285561,0.001428,-0.001250,0.249997,0,0);-ms-transform:matrix(0.285561,0.001428,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.285561,0.001428,-0.001250,0.249997,0,0);}
.mf9_c01214{transform:matrix(0.286068,0.003147,-0.002750,0.249985,0,0);-ms-transform:matrix(0.286068,0.003147,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.286068,0.003147,-0.002750,0.249985,0,0);}
.m86_c01214{transform:matrix(0.291226,0.001456,-0.001250,0.249997,0,0);-ms-transform:matrix(0.291226,0.001456,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.291226,0.001456,-0.001250,0.249997,0,0);}
.m3c_c01214{transform:matrix(0.292308,0.002046,-0.001750,0.249994,0,0);-ms-transform:matrix(0.292308,0.002046,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.292308,0.002046,-0.001750,0.249994,0,0);}
.m119_c01214{transform:matrix(0.293572,0.003229,-0.002750,0.249985,0,0);-ms-transform:matrix(0.293572,0.003229,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.293572,0.003229,-0.002750,0.249985,0,0);}
.mc9_c01214{transform:matrix(0.299361,0.001497,-0.001250,0.249997,0,0);-ms-transform:matrix(0.299361,0.001497,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.299361,0.001497,-0.001250,0.249997,0,0);}
.m126_c01214{transform:matrix(0.302247,0.003325,-0.002750,0.249985,0,0);-ms-transform:matrix(0.302247,0.003325,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.302247,0.003325,-0.002750,0.249985,0,0);}
.m47_c01214{transform:matrix(0.309481,0.001547,-0.001250,0.249997,0,0);-ms-transform:matrix(0.309481,0.001547,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.309481,0.001547,-0.001250,0.249997,0,0);}
.m70_c01214{transform:matrix(0.317316,0.001587,-0.001250,0.249997,0,0);-ms-transform:matrix(0.317316,0.001587,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.317316,0.001587,-0.001250,0.249997,0,0);}
.m57_c01214{transform:matrix(0.317986,0.001590,-0.001250,0.249997,0,0);-ms-transform:matrix(0.317986,0.001590,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.317986,0.001590,-0.001250,0.249997,0,0);}
.mbc_c01214{transform:matrix(0.326191,0.001631,-0.001250,0.249997,0,0);-ms-transform:matrix(0.326191,0.001631,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.326191,0.001631,-0.001250,0.249997,0,0);}
.ma0_c01214{transform:matrix(0.331036,0.001655,-0.001250,0.249997,0,0);-ms-transform:matrix(0.331036,0.001655,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.331036,0.001655,-0.001250,0.249997,0,0);}
.m3b_c01214{transform:matrix(0.339177,0.002374,-0.001750,0.249994,0,0);-ms-transform:matrix(0.339177,0.002374,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.339177,0.002374,-0.001750,0.249994,0,0);}
.m4a_c01214{transform:matrix(0.340736,0.001704,-0.001250,0.249997,0,0);-ms-transform:matrix(0.340736,0.001704,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.340736,0.001704,-0.001250,0.249997,0,0);}
.m6f_c01214{transform:matrix(0.345731,0.001729,-0.001250,0.249997,0,0);-ms-transform:matrix(0.345731,0.001729,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.345731,0.001729,-0.001250,0.249997,0,0);}
.me5_c01214{transform:matrix(0.346039,0.003806,-0.002750,0.249985,0,0);-ms-transform:matrix(0.346039,0.003806,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.346039,0.003806,-0.002750,0.249985,0,0);}
.m33_c01214{transform:matrix(0.347851,0.002435,-0.001750,0.249994,0,0);-ms-transform:matrix(0.347851,0.002435,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.347851,0.002435,-0.001750,0.249994,0,0);}
.m11a_c01214{transform:matrix(0.349024,0.003839,-0.002750,0.249985,0,0);-ms-transform:matrix(0.349024,0.003839,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.349024,0.003839,-0.002750,0.249985,0,0);}
.m34_c01214{transform:matrix(0.359991,0.002520,-0.001750,0.249994,0,0);-ms-transform:matrix(0.359991,0.002520,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.359991,0.002520,-0.001750,0.249994,0,0);}
.mc8_c01214{transform:matrix(0.360110,0.001801,-0.001250,0.249997,0,0);-ms-transform:matrix(0.360110,0.001801,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.360110,0.001801,-0.001250,0.249997,0,0);}
.m87_c01214{transform:matrix(0.398130,0.001991,-0.001250,0.249997,0,0);-ms-transform:matrix(0.398130,0.001991,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.398130,0.001991,-0.001250,0.249997,0,0);}
.m5c_c01214{transform:matrix(0.417845,0.002089,-0.001250,0.249997,0,0);-ms-transform:matrix(0.417845,0.002089,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.417845,0.002089,-0.001250,0.249997,0,0);}
.m84_c01214{transform:matrix(0.435155,0.002176,-0.001250,0.249997,0,0);-ms-transform:matrix(0.435155,0.002176,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.435155,0.002176,-0.001250,0.249997,0,0);}
.m13f_c01214{transform:matrix(0.438753,0.005704,-0.003250,0.249979,0,0);-ms-transform:matrix(0.438753,0.005704,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.438753,0.005704,-0.003250,0.249979,0,0);}
.m58_c01214{transform:matrix(0.450759,0.002254,-0.001250,0.249997,0,0);-ms-transform:matrix(0.450759,0.002254,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.450759,0.002254,-0.001250,0.249997,0,0);}
.m63_c01214{transform:matrix(0.460959,0.002305,-0.001250,0.249997,0,0);-ms-transform:matrix(0.460959,0.002305,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.460959,0.002305,-0.001250,0.249997,0,0);}
.m140_c01214{transform:matrix(0.474415,0.006167,-0.003250,0.249979,0,0);-ms-transform:matrix(0.474415,0.006167,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.474415,0.006167,-0.003250,0.249979,0,0);}
.m13e_c01214{transform:matrix(0.475175,0.006177,-0.003250,0.249979,0,0);-ms-transform:matrix(0.475175,0.006177,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.475175,0.006177,-0.003250,0.249979,0,0);}
.m131_c01214{transform:matrix(0.492640,0.005419,-0.002750,0.249985,0,0);-ms-transform:matrix(0.492640,0.005419,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.492640,0.005419,-0.002750,0.249985,0,0);}
.m13d_c01214{transform:matrix(0.757101,0.009842,-0.003250,0.249979,0,0);-ms-transform:matrix(0.757101,0.009842,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.757101,0.009842,-0.003250,0.249979,0,0);}
.m141_c01214{transform:matrix(0.762761,0.009916,-0.003250,0.249979,0,0);-ms-transform:matrix(0.762761,0.009916,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.762761,0.009916,-0.003250,0.249979,0,0);}
.v0_c01214{vertical-align:0.000000px;}
.ls0_c01214{letter-spacing:0.000000px;}
.sc__c01214{text-shadow:none;}
.sc0_c01214{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__c01214{-webkit-text-stroke:0px transparent;}
.sc0_c01214{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01214{word-spacing:0.000000px;}
.fc0_c01214{color:transparent;}
.fsa_c01214{font-size:30.002535px;}
.fs3_c01214{font-size:72.000900px;}
.fs1_c01214{font-size:72.001764px;}
.fs7_c01214{font-size:72.004356px;}
.fs5_c01214{font-size:78.000975px;}
.fs2_c01214{font-size:78.001911px;}
.fs8_c01214{font-size:78.004719px;}
.fs9_c01214{font-size:78.006591px;}
.fs0_c01214{font-size:84.000000px;}
.fs4_c01214{font-size:84.001050px;}
.fs6_c01214{font-size:84.005082px;}
.fsb_c01214{font-size:84.015161px;}
.fsc_c01214{font-size:90.016244px;}
.y0_c01214{bottom:0.000000px;}
.y15d_c01214{bottom:51.631392px;}
.y15c_c01214{bottom:51.857385px;}
.y15b_c01214{bottom:54.241411px;}
.y15a_c01214{bottom:55.830616px;}
.y159_c01214{bottom:56.627679px;}
.y158_c01214{bottom:57.146193px;}
.y157_c01214{bottom:58.214643px;}
.y156_c01214{bottom:59.258700px;}
.y155_c01214{bottom:61.144587px;}
.y154_c01214{bottom:64.254616px;}
.y153_c01214{bottom:90.242727px;}
.y152_c01214{bottom:91.639308px;}
.y151_c01214{bottom:92.483115px;}
.y150_c01214{bottom:93.596166px;}
.y14f_c01214{bottom:96.370938px;}
.y14e_c01214{bottom:100.440457px;}
.y14d_c01214{bottom:126.465691px;}
.y14c_c01214{bottom:127.545613px;}
.y14b_c01214{bottom:128.805997px;}
.y14a_c01214{bottom:129.426214px;}
.y149_c01214{bottom:129.831598px;}
.y148_c01214{bottom:130.711108px;}
.y147_c01214{bottom:131.293876px;}
.y146_c01214{bottom:132.807540px;}
.y145_c01214{bottom:134.243569px;}
.y144_c01214{bottom:135.274500px;}
.y13e_c01214{bottom:156.776526px;}
.y141_c01214{bottom:156.776602px;}
.y140_c01214{bottom:156.776694px;}
.y13f_c01214{bottom:156.776734px;}
.y142_c01214{bottom:156.777252px;}
.y143_c01214{bottom:156.777891px;}
.y13d_c01214{bottom:168.423445px;}
.y13c_c01214{bottom:169.062129px;}
.y13b_c01214{bottom:170.355154px;}
.y13a_c01214{bottom:170.674038px;}
.y139_c01214{bottom:171.822724px;}
.y138_c01214{bottom:172.268631px;}
.y137_c01214{bottom:173.700730px;}
.y136_c01214{bottom:174.125440px;}
.y135_c01214{bottom:175.403334px;}
.y134_c01214{bottom:176.129885px;}
.y133_c01214{bottom:177.123000px;}
.y132_c01214{bottom:204.792919px;}
.y131_c01214{bottom:205.243432px;}
.y130_c01214{bottom:205.674478px;}
.y12f_c01214{bottom:207.322030px;}
.y12e_c01214{bottom:209.278134px;}
.y12d_c01214{bottom:209.579575px;}
.y12c_c01214{bottom:210.847191px;}
.y12b_c01214{bottom:211.422424px;}
.y12a_c01214{bottom:212.286594px;}
.y129_c01214{bottom:212.570301px;}
.y128_c01214{bottom:213.556882px;}
.y127_c01214{bottom:241.597989px;}
.y126_c01214{bottom:242.037543px;}
.y125_c01214{bottom:242.380332px;}
.y124_c01214{bottom:243.055629px;}
.y123_c01214{bottom:243.615034px;}
.y122_c01214{bottom:244.600183px;}
.y121_c01214{bottom:244.817973px;}
.y120_c01214{bottom:245.579475px;}
.y11f_c01214{bottom:246.036372px;}
.y11e_c01214{bottom:247.138632px;}
.y11d_c01214{bottom:247.688863px;}
.y11c_c01214{bottom:248.117544px;}
.y11b_c01214{bottom:274.324999px;}
.y11a_c01214{bottom:275.899686px;}
.y119_c01214{bottom:276.348241px;}
.y118_c01214{bottom:276.817021px;}
.y117_c01214{bottom:278.373876px;}
.y116_c01214{bottom:278.992576px;}
.y115_c01214{bottom:279.596859px;}
.y114_c01214{bottom:280.677642px;}
.y113_c01214{bottom:281.615334px;}
.y112_c01214{bottom:282.231394px;}
.y111_c01214{bottom:283.139046px;}
.y110_c01214{bottom:283.759411px;}
.y10f_c01214{bottom:311.258919px;}
.y10e_c01214{bottom:311.473963px;}
.y10d_c01214{bottom:312.625767px;}
.y10c_c01214{bottom:315.792751px;}
.y10b_c01214{bottom:316.375771px;}
.y10a_c01214{bottom:316.804161px;}
.y109_c01214{bottom:318.243877px;}
.y108_c01214{bottom:319.384809px;}
.y107_c01214{bottom:319.941730px;}
.y106_c01214{bottom:346.769757px;}
.y105_c01214{bottom:348.023520px;}
.y104_c01214{bottom:349.371672px;}
.y103_c01214{bottom:350.033035px;}
.y102_c01214{bottom:350.422518px;}
.y101_c01214{bottom:351.080845px;}
.y100_c01214{bottom:351.627495px;}
.yff_c01214{bottom:352.281996px;}
.yfe_c01214{bottom:352.679811px;}
.yfd_c01214{bottom:353.720676px;}
.yfc_c01214{bottom:354.527656px;}
.yfb_c01214{bottom:355.060561px;}
.yfa_c01214{bottom:383.214451px;}
.yf9_c01214{bottom:384.140530px;}
.yf8_c01214{bottom:384.597037px;}
.yf7_c01214{bottom:385.103100px;}
.yf6_c01214{bottom:386.773730px;}
.yf5_c01214{bottom:387.700452px;}
.yf4_c01214{bottom:388.944598px;}
.yf3_c01214{bottom:389.408908px;}
.yf2_c01214{bottom:390.339127px;}
.yf1_c01214{bottom:391.551948px;}
.yf0_c01214{bottom:392.307304px;}
.yef_c01214{bottom:419.347077px;}
.yee_c01214{bottom:419.682423px;}
.yed_c01214{bottom:420.459915px;}
.yec_c01214{bottom:420.902094px;}
.yeb_c01214{bottom:421.115740px;}
.yea_c01214{bottom:422.222375px;}
.ye9_c01214{bottom:423.309718px;}
.ye8_c01214{bottom:424.306863px;}
.ye7_c01214{bottom:424.971417px;}
.ye6_c01214{bottom:425.519866px;}
.ye5_c01214{bottom:455.185513px;}
.ye4_c01214{bottom:455.925192px;}
.ye3_c01214{bottom:456.305467px;}
.ye2_c01214{bottom:457.398659px;}
.ye1_c01214{bottom:458.384632px;}
.ye0_c01214{bottom:458.726034px;}
.ydf_c01214{bottom:459.569596px;}
.yde_c01214{bottom:459.946803px;}
.ydd_c01214{bottom:460.311865px;}
.ydc_c01214{bottom:461.161500px;}
.yd7_c01214{bottom:494.864850px;}
.ydb_c01214{bottom:494.864865px;}
.yd8_c01214{bottom:494.865300px;}
.yd9_c01214{bottom:494.865450px;}
.yda_c01214{bottom:494.865608px;}
.yd6_c01214{bottom:526.640438px;}
.yd5_c01214{bottom:526.989638px;}
.yd4_c01214{bottom:527.261760px;}
.yd3_c01214{bottom:527.797493px;}
.yd2_c01214{bottom:527.965800px;}
.yd1_c01214{bottom:528.413265px;}
.yd0_c01214{bottom:528.672870px;}
.ycf_c01214{bottom:529.031865px;}
.yce_c01214{bottom:529.734743px;}
.ycd_c01214{bottom:530.089658px;}
.ycc_c01214{bottom:530.438880px;}
.ycb_c01214{bottom:530.953680px;}
.yca_c01214{bottom:531.890573px;}
.yc9_c01214{bottom:562.181610px;}
.yc8_c01214{bottom:562.478070px;}
.yc7_c01214{bottom:563.081415px;}
.yc6_c01214{bottom:563.375273px;}
.yc5_c01214{bottom:563.979008px;}
.yc4_c01214{bottom:564.474405px;}
.yc3_c01214{bottom:564.774090px;}
.yc2_c01214{bottom:564.970275px;}
.yc1_c01214{bottom:566.155785px;}
.yc0_c01214{bottom:566.855055px;}
.ybf_c01214{bottom:567.536063px;}
.ybe_c01214{bottom:567.832673px;}
.ybd_c01214{bottom:568.343048px;}
.ybc_c01214{bottom:598.784970px;}
.ybb_c01214{bottom:598.979963px;}
.yba_c01214{bottom:599.592210px;}
.yb9_c01214{bottom:599.796833px;}
.yb8_c01214{bottom:600.258128px;}
.yb7_c01214{bottom:600.465345px;}
.yb6_c01214{bottom:600.590295px;}
.yb5_c01214{bottom:601.643393px;}
.yb4_c01214{bottom:602.107822px;}
.yb3_c01214{bottom:602.321625px;}
.yb2_c01214{bottom:602.905208px;}
.yb1_c01214{bottom:632.482305px;}
.yb0_c01214{bottom:633.103493px;}
.yaf_c01214{bottom:633.571793px;}
.yae_c01214{bottom:633.803865px;}
.yad_c01214{bottom:634.265295px;}
.yac_c01214{bottom:634.501448px;}
.yab_c01214{bottom:634.736437px;}
.yaa_c01214{bottom:635.192310px;}
.ya9_c01214{bottom:635.732910px;}
.ya8_c01214{bottom:636.345788px;}
.ya7_c01214{bottom:637.196310px;}
.ya6_c01214{bottom:668.199382px;}
.ya5_c01214{bottom:668.719860px;}
.ya4_c01214{bottom:668.987625px;}
.ya3_c01214{bottom:669.189382px;}
.ya2_c01214{bottom:669.844305px;}
.ya1_c01214{bottom:670.050240px;}
.ya0_c01214{bottom:670.250707px;}
.y9f_c01214{bottom:670.772340px;}
.y9e_c01214{bottom:670.976932px;}
.y9d_c01214{bottom:671.434155px;}
.y9c_c01214{bottom:672.027225px;}
.y95_c01214{bottom:705.607987px;}
.y94_c01214{bottom:705.608430px;}
.y98_c01214{bottom:705.608445px;}
.y93_c01214{bottom:705.608580px;}
.y96_c01214{bottom:705.608587px;}
.y9a_c01214{bottom:705.608760px;}
.y92_c01214{bottom:705.608872px;}
.y9b_c01214{bottom:705.608917px;}
.y97_c01214{bottom:705.609037px;}
.y99_c01214{bottom:705.609052px;}
.y91_c01214{bottom:738.619530px;}
.y90_c01214{bottom:739.252432px;}
.y8f_c01214{bottom:739.479427px;}
.y8e_c01214{bottom:739.865377px;}
.y8d_c01214{bottom:740.081287px;}
.y8c_c01214{bottom:740.193450px;}
.y8b_c01214{bottom:740.751210px;}
.y8a_c01214{bottom:741.137077px;}
.y89_c01214{bottom:741.463770px;}
.y88_c01214{bottom:741.633877px;}
.y87_c01214{bottom:742.072620px;}
.y86_c01214{bottom:742.227765px;}
.y85_c01214{bottom:774.755205px;}
.y84_c01214{bottom:775.207567px;}
.y83_c01214{bottom:775.760768px;}
.y82_c01214{bottom:775.925497px;}
.y81_c01214{bottom:776.204933px;}
.y80_c01214{bottom:776.480340px;}
.y7f_c01214{bottom:776.816505px;}
.y7e_c01214{bottom:777.033862px;}
.y7d_c01214{bottom:777.359130px;}
.y7c_c01214{bottom:777.533362px;}
.y7b_c01214{bottom:777.634628px;}
.y7a_c01214{bottom:777.811492px;}
.y79_c01214{bottom:778.120688px;}
.y78_c01214{bottom:778.408140px;}
.y76_c01214{bottom:811.617923px;}
.y70_c01214{bottom:811.618335px;}
.y77_c01214{bottom:811.618380px;}
.y71_c01214{bottom:811.618493px;}
.y75_c01214{bottom:811.618515px;}
.y72_c01214{bottom:811.618792px;}
.y73_c01214{bottom:811.618800px;}
.y74_c01214{bottom:811.619107px;}
.y67_c01214{bottom:847.295085px;}
.y66_c01214{bottom:847.295385px;}
.y65_c01214{bottom:847.295527px;}
.y68_c01214{bottom:847.295685px;}
.y6c_c01214{bottom:847.295707px;}
.y6e_c01214{bottom:847.295715px;}
.y6f_c01214{bottom:847.295865px;}
.y69_c01214{bottom:847.296292px;}
.y6b_c01214{bottom:847.296300px;}
.y6d_c01214{bottom:847.296315px;}
.y6a_c01214{bottom:847.296443px;}
.y5d_c01214{bottom:882.967477px;}
.y61_c01214{bottom:882.967650px;}
.y63_c01214{bottom:882.967657px;}
.y5a_c01214{bottom:882.967770px;}
.y62_c01214{bottom:882.967800px;}
.y60_c01214{bottom:882.967942px;}
.y5e_c01214{bottom:882.968085px;}
.y64_c01214{bottom:882.968107px;}
.y5c_c01214{bottom:882.968228px;}
.y5f_c01214{bottom:882.968242px;}
.y5b_c01214{bottom:882.968370px;}
.y4f_c01214{bottom:917.705205px;}
.y50_c01214{bottom:917.705505px;}
.y58_c01214{bottom:917.705528px;}
.y52_c01214{bottom:917.705663px;}
.y51_c01214{bottom:917.705805px;}
.y57_c01214{bottom:917.705827px;}
.y4e_c01214{bottom:917.705947px;}
.y56_c01214{bottom:917.705978px;}
.y54_c01214{bottom:917.706120px;}
.y59_c01214{bottom:917.706135px;}
.y53_c01214{bottom:917.706262px;}
.y4d_c01214{bottom:917.706547px;}
.y55_c01214{bottom:917.706720px;}
.y4c_c01214{bottom:951.857902px;}
.y4b_c01214{bottom:952.223872px;}
.y4a_c01214{bottom:952.389893px;}
.y49_c01214{bottom:952.722150px;}
.y48_c01214{bottom:952.907190px;}
.y47_c01214{bottom:953.055495px;}
.y46_c01214{bottom:953.220180px;}
.y45_c01214{bottom:953.498280px;}
.y44_c01214{bottom:954.046402px;}
.y43_c01214{bottom:954.271853px;}
.y42_c01214{bottom:954.879360px;}
.y41_c01214{bottom:954.990000px;}
.y39_c01214{bottom:989.044142px;}
.y3a_c01214{bottom:989.044452px;}
.y3c_c01214{bottom:989.044473px;}
.y38_c01214{bottom:989.044731px;}
.y3e_c01214{bottom:989.044805px;}
.y3b_c01214{bottom:989.044823px;}
.y3d_c01214{bottom:989.045154px;}
.y3f_c01214{bottom:989.045325px;}
.y40_c01214{bottom:989.045486px;}
.y2c_c01214{bottom:1022.537329px;}
.y2d_c01214{bottom:1022.537430px;}
.y2e_c01214{bottom:1022.537860px;}
.y2f_c01214{bottom:1022.538561px;}
.y37_c01214{bottom:1022.538634px;}
.y30_c01214{bottom:1022.538852px;}
.y36_c01214{bottom:1022.539104px;}
.y34_c01214{bottom:1022.539123px;}
.y35_c01214{bottom:1022.539464px;}
.y31_c01214{bottom:1022.539482px;}
.y33_c01214{bottom:1022.539803px;}
.y32_c01214{bottom:1022.540032px;}
.y29_c01214{bottom:1057.969276px;}
.y2a_c01214{bottom:1057.969317px;}
.y2b_c01214{bottom:1057.969657px;}
.y21_c01214{bottom:1057.969782px;}
.y24_c01214{bottom:1057.969813px;}
.y22_c01214{bottom:1057.969822px;}
.y28_c01214{bottom:1057.969866px;}
.y25_c01214{bottom:1057.969974px;}
.y27_c01214{bottom:1057.970025px;}
.y23_c01214{bottom:1057.970073px;}
.y26_c01214{bottom:1057.970434px;}
.y20_c01214{bottom:1093.060933px;}
.y1f_c01214{bottom:1093.280388px;}
.y1e_c01214{bottom:1093.776154px;}
.y1d_c01214{bottom:1093.999894px;}
.y1c_c01214{bottom:1094.546386px;}
.y1b_c01214{bottom:1094.828854px;}
.y1a_c01214{bottom:1094.995725px;}
.y19_c01214{bottom:1095.263730px;}
.y18_c01214{bottom:1095.651754px;}
.y17_c01214{bottom:1095.925830px;}
.yf_c01214{bottom:1128.596787px;}
.y16_c01214{bottom:1128.596821px;}
.y11_c01214{bottom:1128.596848px;}
.ye_c01214{bottom:1128.596926px;}
.y14_c01214{bottom:1128.596980px;}
.y12_c01214{bottom:1128.597099px;}
.y15_c01214{bottom:1128.597111px;}
.y13_c01214{bottom:1128.597139px;}
.y10_c01214{bottom:1128.597337px;}
.yd_c01214{bottom:1128.597606px;}
.yc_c01214{bottom:1128.597655px;}
.yb_c01214{bottom:1164.727329px;}
.ya_c01214{bottom:1165.107208px;}
.y9_c01214{bottom:1165.492810px;}
.y8_c01214{bottom:1165.734709px;}
.y7_c01214{bottom:1166.507730px;}
.y6_c01214{bottom:1166.742058px;}
.y5_c01214{bottom:1166.885698px;}
.y4_c01214{bottom:1167.125760px;}
.y3_c01214{bottom:1167.823191px;}
.y2_c01214{bottom:1168.290000px;}
.y1_c01214{bottom:1206.751500px;}
.hc_c01214{height:30.002535px;}
.h5_c01214{height:72.000900px;}
.h3_c01214{height:72.001764px;}
.h9_c01214{height:72.004356px;}
.h7_c01214{height:78.000975px;}
.h4_c01214{height:78.001911px;}
.ha_c01214{height:78.004719px;}
.hb_c01214{height:78.006591px;}
.h2_c01214{height:84.000000px;}
.h6_c01214{height:84.001050px;}
.h8_c01214{height:84.005082px;}
.hd_c01214{height:84.015161px;}
.he_c01214{height:90.016244px;}
.h1_c01214{height:1258.500000px;}
.h0_c01214{height:1258.740000px;}
.w0_c01214{width:904.200000px;}
.w1_c01214{width:904.500000px;}
.x0_c01214{left:0.000000px;}
.x6a_c01214{left:155.809440px;}
.x61_c01214{left:161.345693px;}
.x7a_c01214{left:164.159073px;}
.x52_c01214{left:166.054380px;}
.x17_c01214{left:167.335199px;}
.xd_c01214{left:169.017473px;}
.x26_c01214{left:199.523082px;}
.xe_c01214{left:210.598010px;}
.x7b_c01214{left:214.113017px;}
.x18_c01214{left:222.132465px;}
.x4c_c01214{left:224.555393px;}
.x7c_c01214{left:229.234071px;}
.x27_c01214{left:232.463199px;}
.x30_c01214{left:233.545807px;}
.xf_c01214{left:243.268106px;}
.x1e_c01214{left:255.146322px;}
.x5a_c01214{left:263.989905px;}
.x54_c01214{left:266.129513px;}
.x7d_c01214{left:273.787098px;}
.x3_c01214{left:275.037000px;}
.x66_c01214{left:276.067500px;}
.x6b_c01214{left:277.129277px;}
.x62_c01214{left:278.522438px;}
.x4d_c01214{left:286.394393px;}
.x41_c01214{left:287.551373px;}
.x80_c01214{left:296.940868px;}
.x38_c01214{left:298.006500px;}
.x19_c01214{left:299.637047px;}
.x31_c01214{left:309.148014px;}
.x10_c01214{left:320.220375px;}
.x28_c01214{left:321.296056px;}
.x7f_c01214{left:329.892819px;}
.x1f_c01214{left:331.828581px;}
.x7e_c01214{left:335.082972px;}
.x4_c01214{left:341.724000px;}
.x32_c01214{left:343.168183px;}
.x1a_c01214{left:353.352803px;}
.x64_c01214{left:355.058415px;}
.x11_c01214{left:364.501049px;}
.x6c_c01214{left:375.116801px;}
.x33_c01214{left:376.648322px;}
.x1b_c01214{left:386.834775px;}
.x20_c01214{left:397.440294px;}
.x1_c01214{left:406.890000px;}
.x49_c01214{left:408.784868px;}
.x39_c01214{left:419.508000px;}
.x67_c01214{left:420.786000px;}
.x77_c01214{left:430.177500px;}
.x29_c01214{left:431.188443px;}
.x5_c01214{left:441.357000px;}
.x2_c01214{left:443.610000px;}
.x46_c01214{left:452.527313px;}
.x2a_c01214{left:453.599545px;}
.x4f_c01214{left:463.470023px;}
.x3a_c01214{left:464.598000px;}
.x74_c01214{left:473.953875px;}
.x6_c01214{left:475.651500px;}
.x81_c01214{left:485.154999px;}
.x34_c01214{left:486.270697px;}
.x65_c01214{left:488.710253px;}
.x7_c01214{left:496.171500px;}
.x68_c01214{left:497.473500px;}
.x71_c01214{left:507.130340px;}
.x21_c01214{left:508.142723px;}
.x47_c01214{left:518.407463px;}
.x35_c01214{left:519.750835px;}
.x2b_c01214{left:524.881542px;}
.x69_c01214{left:528.510000px;}
.x8_c01214{left:529.647000px;}
.x55_c01214{left:530.998185px;}
.x5d_c01214{left:540.980077px;}
.x22_c01214{left:542.702913px;}
.x12_c01214{left:551.615715px;}
.x1c_c01214{left:552.617096px;}
.x5e_c01214{left:562.816642px;}
.x5b_c01214{left:573.144353px;}
.x3b_c01214{left:574.222500px;}
.x36_c01214{left:584.822527px;}
.x2c_c01214{left:596.703559px;}
.x13_c01214{left:598.326504px;}
.x42_c01214{left:607.776382px;}
.x73_c01214{left:617.076536px;}
.x4a_c01214{left:618.307103px;}
.x2d_c01214{left:629.373655px;}
.x43_c01214{left:630.456953px;}
.x9_c01214{left:640.078500px;}
.x75_c01214{left:647.545047px;}
.x57_c01214{left:651.408998px;}
.x37_c01214{left:656.374534px;}
.x3c_c01214{left:662.779500px;}
.x53_c01214{left:673.389563px;}
.xa_c01214{left:674.635500px;}
.x6d_c01214{left:682.680153px;}
.x58_c01214{left:684.623168px;}
.x78_c01214{left:687.529500px;}
.x3d_c01214{left:692.440500px;}
.x14_c01214{left:696.068292px;}
.x2e_c01214{left:697.685505px;}
.x48_c01214{left:709.569240px;}
.x2f_c01214{left:717.666481px;}
.x23_c01214{left:718.747033px;}
.x72_c01214{left:728.158563px;}
.xb_c01214{left:729.721500px;}
.x1d_c01214{left:740.542731px;}
.x5f_c01214{left:750.747878px;}
.x24_c01214{left:751.957161px;}
.x50_c01214{left:763.225523px;}
.x4b_c01214{left:772.209450px;}
.x63_c01214{left:773.723498px;}
.x15_c01214{left:774.910656px;}
.xc_c01214{left:783.990000px;}
.x44_c01214{left:785.439323px;}
.x79_c01214{left:786.993000px;}
.x3e_c01214{left:795.900000px;}
.x56_c01214{left:805.081312px;}
.x16_c01214{left:807.310742px;}
.x45_c01214{left:817.300118px;}
.x6f_c01214{left:818.808300px;}
.x25_c01214{left:820.269010px;}
.x3f_c01214{left:829.104000px;}
.x70_c01214{left:835.357437px;}
.x59_c01214{left:840.419115px;}
.x76_c01214{left:842.141774px;}
.x60_c01214{left:850.606875px;}
.x5c_c01214{left:853.117950px;}
.x6e_c01214{left:856.492566px;}
.x51_c01214{left:889.806023px;}
.x4e_c01214{left:897.651893px;}
.x40_c01214{left:902.298000px;}
@media print{
.v0_c01214{vertical-align:0.000000pt;}
.ls0_c01214{letter-spacing:0.000000pt;}
.ws0_c01214{word-spacing:0.000000pt;}
.fsa_c01214{font-size:26.668920pt;}
.fs3_c01214{font-size:64.000800pt;}
.fs1_c01214{font-size:64.001568pt;}
.fs7_c01214{font-size:64.003872pt;}
.fs5_c01214{font-size:69.334200pt;}
.fs2_c01214{font-size:69.335032pt;}
.fs8_c01214{font-size:69.337528pt;}
.fs9_c01214{font-size:69.339192pt;}
.fs0_c01214{font-size:74.666667pt;}
.fs4_c01214{font-size:74.667600pt;}
.fs6_c01214{font-size:74.671184pt;}
.fsb_c01214{font-size:74.680143pt;}
.fsc_c01214{font-size:80.014439pt;}
.y0_c01214{bottom:0.000000pt;}
.y15d_c01214{bottom:45.894571pt;}
.y15c_c01214{bottom:46.095453pt;}
.y15b_c01214{bottom:48.214588pt;}
.y15a_c01214{bottom:49.627215pt;}
.y159_c01214{bottom:50.335715pt;}
.y158_c01214{bottom:50.796616pt;}
.y157_c01214{bottom:51.746349pt;}
.y156_c01214{bottom:52.674400pt;}
.y155_c01214{bottom:54.350744pt;}
.y154_c01214{bottom:57.115215pt;}
.y153_c01214{bottom:80.215757pt;}
.y152_c01214{bottom:81.457163pt;}
.y151_c01214{bottom:82.207213pt;}
.y150_c01214{bottom:83.196592pt;}
.y14f_c01214{bottom:85.663056pt;}
.y14e_c01214{bottom:89.280407pt;}
.y14d_c01214{bottom:112.413948pt;}
.y14c_c01214{bottom:113.373879pt;}
.y14b_c01214{bottom:114.494220pt;}
.y14a_c01214{bottom:115.045524pt;}
.y149_c01214{bottom:115.405865pt;}
.y148_c01214{bottom:116.187652pt;}
.y147_c01214{bottom:116.705668pt;}
.y146_c01214{bottom:118.051147pt;}
.y145_c01214{bottom:119.327617pt;}
.y144_c01214{bottom:120.244000pt;}
.y13e_c01214{bottom:139.356912pt;}
.y141_c01214{bottom:139.356980pt;}
.y140_c01214{bottom:139.357061pt;}
.y13f_c01214{bottom:139.357097pt;}
.y142_c01214{bottom:139.357557pt;}
.y143_c01214{bottom:139.358125pt;}
.y13d_c01214{bottom:149.709729pt;}
.y13c_c01214{bottom:150.277448pt;}
.y13b_c01214{bottom:151.426804pt;}
.y13a_c01214{bottom:151.710256pt;}
.y139_c01214{bottom:152.731311pt;}
.y138_c01214{bottom:153.127672pt;}
.y137_c01214{bottom:154.400649pt;}
.y136_c01214{bottom:154.778169pt;}
.y135_c01214{bottom:155.914075pt;}
.y134_c01214{bottom:156.559897pt;}
.y133_c01214{bottom:157.442667pt;}
.y132_c01214{bottom:182.038151pt;}
.y131_c01214{bottom:182.438607pt;}
.y130_c01214{bottom:182.821759pt;}
.y12f_c01214{bottom:184.286249pt;}
.y12e_c01214{bottom:186.025008pt;}
.y12d_c01214{bottom:186.292956pt;}
.y12c_c01214{bottom:187.419725pt;}
.y12b_c01214{bottom:187.931044pt;}
.y12a_c01214{bottom:188.699195pt;}
.y129_c01214{bottom:188.951379pt;}
.y128_c01214{bottom:189.828340pt;}
.y127_c01214{bottom:214.753768pt;}
.y126_c01214{bottom:215.144483pt;}
.y125_c01214{bottom:215.449184pt;}
.y124_c01214{bottom:216.049448pt;}
.y123_c01214{bottom:216.546697pt;}
.y122_c01214{bottom:217.422385pt;}
.y121_c01214{bottom:217.615976pt;}
.y120_c01214{bottom:218.292867pt;}
.y11f_c01214{bottom:218.698997pt;}
.y11e_c01214{bottom:219.678784pt;}
.y11d_c01214{bottom:220.167879pt;}
.y11c_c01214{bottom:220.548928pt;}
.y11b_c01214{bottom:243.844444pt;}
.y11a_c01214{bottom:245.244165pt;}
.y119_c01214{bottom:245.642881pt;}
.y118_c01214{bottom:246.059575pt;}
.y117_c01214{bottom:247.443445pt;}
.y116_c01214{bottom:247.993401pt;}
.y115_c01214{bottom:248.530541pt;}
.y114_c01214{bottom:249.491237pt;}
.y113_c01214{bottom:250.324741pt;}
.y112_c01214{bottom:250.872351pt;}
.y111_c01214{bottom:251.679152pt;}
.y110_c01214{bottom:252.230588pt;}
.y10f_c01214{bottom:276.674595pt;}
.y10e_c01214{bottom:276.865745pt;}
.y10d_c01214{bottom:277.889571pt;}
.y10c_c01214{bottom:280.704668pt;}
.y10b_c01214{bottom:281.222908pt;}
.y10a_c01214{bottom:281.603699pt;}
.y109_c01214{bottom:282.883447pt;}
.y108_c01214{bottom:283.897608pt;}
.y107_c01214{bottom:284.392649pt;}
.y106_c01214{bottom:308.239784pt;}
.y105_c01214{bottom:309.354240pt;}
.y104_c01214{bottom:310.552597pt;}
.y103_c01214{bottom:311.140476pt;}
.y102_c01214{bottom:311.486683pt;}
.y101_c01214{bottom:312.071863pt;}
.y100_c01214{bottom:312.557773pt;}
.yff_c01214{bottom:313.139552pt;}
.yfe_c01214{bottom:313.493165pt;}
.yfd_c01214{bottom:314.418379pt;}
.yfc_c01214{bottom:315.135695pt;}
.yfb_c01214{bottom:315.609388pt;}
.yfa_c01214{bottom:340.635068pt;}
.yf9_c01214{bottom:341.458249pt;}
.yf8_c01214{bottom:341.864033pt;}
.yf7_c01214{bottom:342.313867pt;}
.yf6_c01214{bottom:343.798871pt;}
.yf5_c01214{bottom:344.622624pt;}
.yf4_c01214{bottom:345.728532pt;}
.yf3_c01214{bottom:346.141252pt;}
.yf2_c01214{bottom:346.968113pt;}
.yf1_c01214{bottom:348.046176pt;}
.yf0_c01214{bottom:348.717604pt;}
.yef_c01214{bottom:372.752957pt;}
.yee_c01214{bottom:373.051043pt;}
.yed_c01214{bottom:373.742147pt;}
.yec_c01214{bottom:374.135195pt;}
.yeb_c01214{bottom:374.325103pt;}
.yea_c01214{bottom:375.308777pt;}
.ye9_c01214{bottom:376.275305pt;}
.ye8_c01214{bottom:377.161656pt;}
.ye7_c01214{bottom:377.752371pt;}
.ye6_c01214{bottom:378.239881pt;}
.ye5_c01214{bottom:404.609345pt;}
.ye4_c01214{bottom:405.266837pt;}
.ye3_c01214{bottom:405.604860pt;}
.ye2_c01214{bottom:406.576585pt;}
.ye1_c01214{bottom:407.453007pt;}
.ye0_c01214{bottom:407.756475pt;}
.ydf_c01214{bottom:408.506308pt;}
.yde_c01214{bottom:408.841603pt;}
.ydd_c01214{bottom:409.166103pt;}
.ydc_c01214{bottom:409.921333pt;}
.yd7_c01214{bottom:439.879867pt;}
.ydb_c01214{bottom:439.879880pt;}
.yd8_c01214{bottom:439.880267pt;}
.yd9_c01214{bottom:439.880400pt;}
.yda_c01214{bottom:439.880540pt;}
.yd6_c01214{bottom:468.124833pt;}
.yd5_c01214{bottom:468.435233pt;}
.yd4_c01214{bottom:468.677120pt;}
.yd3_c01214{bottom:469.153327pt;}
.yd2_c01214{bottom:469.302933pt;}
.yd1_c01214{bottom:469.700680pt;}
.yd0_c01214{bottom:469.931440pt;}
.ycf_c01214{bottom:470.250547pt;}
.yce_c01214{bottom:470.875327pt;}
.ycd_c01214{bottom:471.190807pt;}
.ycc_c01214{bottom:471.501227pt;}
.ycb_c01214{bottom:471.958827pt;}
.yca_c01214{bottom:472.791620pt;}
.yc9_c01214{bottom:499.716987pt;}
.yc8_c01214{bottom:499.980507pt;}
.yc7_c01214{bottom:500.516813pt;}
.yc6_c01214{bottom:500.778020pt;}
.yc5_c01214{bottom:501.314673pt;}
.yc4_c01214{bottom:501.755027pt;}
.yc3_c01214{bottom:502.021413pt;}
.yc2_c01214{bottom:502.195800pt;}
.yc1_c01214{bottom:503.249587pt;}
.yc0_c01214{bottom:503.871160pt;}
.ybf_c01214{bottom:504.476500pt;}
.ybe_c01214{bottom:504.740153pt;}
.ybd_c01214{bottom:505.193820pt;}
.ybc_c01214{bottom:532.253307pt;}
.ybb_c01214{bottom:532.426633pt;}
.yba_c01214{bottom:532.970853pt;}
.yb9_c01214{bottom:533.152740pt;}
.yb8_c01214{bottom:533.562780pt;}
.yb7_c01214{bottom:533.746973pt;}
.yb6_c01214{bottom:533.858040pt;}
.yb5_c01214{bottom:534.794127pt;}
.yb4_c01214{bottom:535.206953pt;}
.yb3_c01214{bottom:535.397000pt;}
.yb2_c01214{bottom:535.915740pt;}
.yb1_c01214{bottom:562.206493pt;}
.yb0_c01214{bottom:562.758660pt;}
.yaf_c01214{bottom:563.174927pt;}
.yae_c01214{bottom:563.381213pt;}
.yad_c01214{bottom:563.791373pt;}
.yac_c01214{bottom:564.001287pt;}
.yab_c01214{bottom:564.210167pt;}
.yaa_c01214{bottom:564.615387pt;}
.ya9_c01214{bottom:565.095920pt;}
.ya8_c01214{bottom:565.640700pt;}
.ya7_c01214{bottom:566.396720pt;}
.ya6_c01214{bottom:593.955007pt;}
.ya5_c01214{bottom:594.417653pt;}
.ya4_c01214{bottom:594.655667pt;}
.ya3_c01214{bottom:594.835007pt;}
.ya2_c01214{bottom:595.417160pt;}
.ya1_c01214{bottom:595.600213pt;}
.ya0_c01214{bottom:595.778407pt;}
.y9f_c01214{bottom:596.242080pt;}
.y9e_c01214{bottom:596.423940pt;}
.y9d_c01214{bottom:596.830360pt;}
.y9c_c01214{bottom:597.357533pt;}
.y95_c01214{bottom:627.207100pt;}
.y94_c01214{bottom:627.207493pt;}
.y98_c01214{bottom:627.207507pt;}
.y93_c01214{bottom:627.207627pt;}
.y96_c01214{bottom:627.207633pt;}
.y9a_c01214{bottom:627.207787pt;}
.y92_c01214{bottom:627.207887pt;}
.y9b_c01214{bottom:627.207927pt;}
.y97_c01214{bottom:627.208033pt;}
.y99_c01214{bottom:627.208047pt;}
.y91_c01214{bottom:656.550693pt;}
.y90_c01214{bottom:657.113273pt;}
.y8f_c01214{bottom:657.315047pt;}
.y8e_c01214{bottom:657.658113pt;}
.y8d_c01214{bottom:657.850033pt;}
.y8c_c01214{bottom:657.949733pt;}
.y8b_c01214{bottom:658.445520pt;}
.y8a_c01214{bottom:658.788513pt;}
.y89_c01214{bottom:659.078907pt;}
.y88_c01214{bottom:659.230113pt;}
.y87_c01214{bottom:659.620107pt;}
.y86_c01214{bottom:659.758013pt;}
.y85_c01214{bottom:688.671293pt;}
.y84_c01214{bottom:689.073393pt;}
.y83_c01214{bottom:689.565127pt;}
.y82_c01214{bottom:689.711553pt;}
.y81_c01214{bottom:689.959940pt;}
.y80_c01214{bottom:690.204747pt;}
.y7f_c01214{bottom:690.503560pt;}
.y7e_c01214{bottom:690.696767pt;}
.y7d_c01214{bottom:690.985893pt;}
.y7c_c01214{bottom:691.140767pt;}
.y7b_c01214{bottom:691.230780pt;}
.y7a_c01214{bottom:691.387993pt;}
.y79_c01214{bottom:691.662833pt;}
.y78_c01214{bottom:691.918347pt;}
.y76_c01214{bottom:721.438153pt;}
.y70_c01214{bottom:721.438520pt;}
.y77_c01214{bottom:721.438560pt;}
.y71_c01214{bottom:721.438660pt;}
.y75_c01214{bottom:721.438680pt;}
.y72_c01214{bottom:721.438927pt;}
.y73_c01214{bottom:721.438933pt;}
.y74_c01214{bottom:721.439207pt;}
.y67_c01214{bottom:753.151187pt;}
.y66_c01214{bottom:753.151453pt;}
.y65_c01214{bottom:753.151580pt;}
.y68_c01214{bottom:753.151720pt;}
.y6c_c01214{bottom:753.151740pt;}
.y6e_c01214{bottom:753.151747pt;}
.y6f_c01214{bottom:753.151880pt;}
.y69_c01214{bottom:753.152260pt;}
.y6b_c01214{bottom:753.152267pt;}
.y6d_c01214{bottom:753.152280pt;}
.y6a_c01214{bottom:753.152393pt;}
.y5d_c01214{bottom:784.859980pt;}
.y61_c01214{bottom:784.860133pt;}
.y63_c01214{bottom:784.860140pt;}
.y5a_c01214{bottom:784.860240pt;}
.y62_c01214{bottom:784.860267pt;}
.y60_c01214{bottom:784.860393pt;}
.y5e_c01214{bottom:784.860520pt;}
.y64_c01214{bottom:784.860540pt;}
.y5c_c01214{bottom:784.860647pt;}
.y5f_c01214{bottom:784.860660pt;}
.y5b_c01214{bottom:784.860773pt;}
.y4f_c01214{bottom:815.737960pt;}
.y50_c01214{bottom:815.738227pt;}
.y58_c01214{bottom:815.738247pt;}
.y52_c01214{bottom:815.738367pt;}
.y51_c01214{bottom:815.738493pt;}
.y57_c01214{bottom:815.738513pt;}
.y4e_c01214{bottom:815.738620pt;}
.y56_c01214{bottom:815.738647pt;}
.y54_c01214{bottom:815.738773pt;}
.y59_c01214{bottom:815.738787pt;}
.y53_c01214{bottom:815.738900pt;}
.y4d_c01214{bottom:815.739153pt;}
.y55_c01214{bottom:815.739307pt;}
.y4c_c01214{bottom:846.095913pt;}
.y4b_c01214{bottom:846.421220pt;}
.y4a_c01214{bottom:846.568793pt;}
.y49_c01214{bottom:846.864133pt;}
.y48_c01214{bottom:847.028613pt;}
.y47_c01214{bottom:847.160440pt;}
.y46_c01214{bottom:847.306827pt;}
.y45_c01214{bottom:847.554027pt;}
.y44_c01214{bottom:848.041247pt;}
.y43_c01214{bottom:848.241647pt;}
.y42_c01214{bottom:848.781653pt;}
.y41_c01214{bottom:848.880000pt;}
.y39_c01214{bottom:879.150348pt;}
.y3a_c01214{bottom:879.150624pt;}
.y3c_c01214{bottom:879.150643pt;}
.y38_c01214{bottom:879.150872pt;}
.y3e_c01214{bottom:879.150937pt;}
.y3b_c01214{bottom:879.150953pt;}
.y3d_c01214{bottom:879.151248pt;}
.y3f_c01214{bottom:879.151400pt;}
.y40_c01214{bottom:879.151543pt;}
.y2c_c01214{bottom:908.922071pt;}
.y2d_c01214{bottom:908.922160pt;}
.y2e_c01214{bottom:908.922543pt;}
.y2f_c01214{bottom:908.923165pt;}
.y37_c01214{bottom:908.923231pt;}
.y30_c01214{bottom:908.923424pt;}
.y36_c01214{bottom:908.923648pt;}
.y34_c01214{bottom:908.923665pt;}
.y35_c01214{bottom:908.923968pt;}
.y31_c01214{bottom:908.923984pt;}
.y33_c01214{bottom:908.924269pt;}
.y32_c01214{bottom:908.924473pt;}
.y29_c01214{bottom:940.417135pt;}
.y2a_c01214{bottom:940.417171pt;}
.y2b_c01214{bottom:940.417473pt;}
.y21_c01214{bottom:940.417584pt;}
.y24_c01214{bottom:940.417612pt;}
.y22_c01214{bottom:940.417620pt;}
.y28_c01214{bottom:940.417659pt;}
.y25_c01214{bottom:940.417755pt;}
.y27_c01214{bottom:940.417800pt;}
.y23_c01214{bottom:940.417843pt;}
.y26_c01214{bottom:940.418164pt;}
.y20_c01214{bottom:971.609719pt;}
.y1f_c01214{bottom:971.804789pt;}
.y1e_c01214{bottom:972.245471pt;}
.y1d_c01214{bottom:972.444351pt;}
.y1c_c01214{bottom:972.930121pt;}
.y1b_c01214{bottom:973.181204pt;}
.y1a_c01214{bottom:973.329533pt;}
.y19_c01214{bottom:973.567760pt;}
.y18_c01214{bottom:973.912671pt;}
.y17_c01214{bottom:974.156293pt;}
.yf_c01214{bottom:1003.197144pt;}
.y16_c01214{bottom:1003.197175pt;}
.y11_c01214{bottom:1003.197199pt;}
.ye_c01214{bottom:1003.197268pt;}
.y14_c01214{bottom:1003.197316pt;}
.y12_c01214{bottom:1003.197421pt;}
.y15_c01214{bottom:1003.197432pt;}
.y13_c01214{bottom:1003.197457pt;}
.y10_c01214{bottom:1003.197633pt;}
.yd_c01214{bottom:1003.197872pt;}
.yc_c01214{bottom:1003.197916pt;}
.yb_c01214{bottom:1035.313181pt;}
.ya_c01214{bottom:1035.650852pt;}
.y9_c01214{bottom:1035.993609pt;}
.y8_c01214{bottom:1036.208631pt;}
.y7_c01214{bottom:1036.895760pt;}
.y6_c01214{bottom:1037.104052pt;}
.y5_c01214{bottom:1037.231732pt;}
.y4_c01214{bottom:1037.445120pt;}
.y3_c01214{bottom:1038.065059pt;}
.y2_c01214{bottom:1038.480000pt;}
.y1_c01214{bottom:1072.668000pt;}
.hc_c01214{height:26.668920pt;}
.h5_c01214{height:64.000800pt;}
.h3_c01214{height:64.001568pt;}
.h9_c01214{height:64.003872pt;}
.h7_c01214{height:69.334200pt;}
.h4_c01214{height:69.335032pt;}
.ha_c01214{height:69.337528pt;}
.hb_c01214{height:69.339192pt;}
.h2_c01214{height:74.666667pt;}
.h6_c01214{height:74.667600pt;}
.h8_c01214{height:74.671184pt;}
.hd_c01214{height:74.680143pt;}
.he_c01214{height:80.014439pt;}
.h1_c01214{height:1118.666667pt;}
.h0_c01214{height:1118.880000pt;}
.w0_c01214{width:803.733333pt;}
.w1_c01214{width:804.000000pt;}
.x0_c01214{left:0.000000pt;}
.x6a_c01214{left:138.497280pt;}
.x61_c01214{left:143.418393pt;}
.x7a_c01214{left:145.919176pt;}
.x52_c01214{left:147.603893pt;}
.x17_c01214{left:148.742399pt;}
.xd_c01214{left:150.237753pt;}
.x26_c01214{left:177.353851pt;}
.xe_c01214{left:187.198231pt;}
.x7b_c01214{left:190.322681pt;}
.x18_c01214{left:197.451080pt;}
.x4c_c01214{left:199.604793pt;}
.x7c_c01214{left:203.763619pt;}
.x27_c01214{left:206.633955pt;}
.x30_c01214{left:207.596273pt;}
.xf_c01214{left:216.238316pt;}
.x1e_c01214{left:226.796731pt;}
.x5a_c01214{left:234.657693pt;}
.x54_c01214{left:236.559567pt;}
.x7d_c01214{left:243.366309pt;}
.x3_c01214{left:244.477333pt;}
.x66_c01214{left:245.393333pt;}
.x6b_c01214{left:246.337135pt;}
.x62_c01214{left:247.575500pt;}
.x4d_c01214{left:254.572793pt;}
.x41_c01214{left:255.601220pt;}
.x80_c01214{left:263.947439pt;}
.x38_c01214{left:264.894667pt;}
.x19_c01214{left:266.344041pt;}
.x31_c01214{left:274.798235pt;}
.x10_c01214{left:284.640333pt;}
.x28_c01214{left:285.596495pt;}
.x7f_c01214{left:293.238061pt;}
.x1f_c01214{left:294.958739pt;}
.x7e_c01214{left:297.851531pt;}
.x4_c01214{left:303.754667pt;}
.x32_c01214{left:305.038385pt;}
.x1a_c01214{left:314.091380pt;}
.x64_c01214{left:315.607480pt;}
.x11_c01214{left:324.000932pt;}
.x6c_c01214{left:333.437156pt;}
.x33_c01214{left:334.798508pt;}
.x1b_c01214{left:343.853133pt;}
.x20_c01214{left:353.280261pt;}
.x1_c01214{left:361.680000pt;}
.x49_c01214{left:363.364327pt;}
.x39_c01214{left:372.896000pt;}
.x67_c01214{left:374.032000pt;}
.x77_c01214{left:382.380000pt;}
.x29_c01214{left:383.278616pt;}
.x5_c01214{left:392.317333pt;}
.x2_c01214{left:394.320000pt;}
.x46_c01214{left:402.246500pt;}
.x2a_c01214{left:403.199596pt;}
.x4f_c01214{left:411.973353pt;}
.x3a_c01214{left:412.976000pt;}
.x74_c01214{left:421.292333pt;}
.x6_c01214{left:422.801333pt;}
.x81_c01214{left:431.248888pt;}
.x34_c01214{left:432.240620pt;}
.x65_c01214{left:434.409113pt;}
.x7_c01214{left:441.041333pt;}
.x68_c01214{left:442.198667pt;}
.x71_c01214{left:450.782524pt;}
.x21_c01214{left:451.682420pt;}
.x47_c01214{left:460.806633pt;}
.x35_c01214{left:462.000743pt;}
.x2b_c01214{left:466.561371pt;}
.x69_c01214{left:469.786667pt;}
.x8_c01214{left:470.797333pt;}
.x55_c01214{left:471.998387pt;}
.x5d_c01214{left:480.871180pt;}
.x22_c01214{left:482.402589pt;}
.x12_c01214{left:490.325080pt;}
.x1c_c01214{left:491.215196pt;}
.x5e_c01214{left:500.281460pt;}
.x5b_c01214{left:509.461647pt;}
.x3b_c01214{left:510.420000pt;}
.x36_c01214{left:519.842247pt;}
.x2c_c01214{left:530.403164pt;}
.x13_c01214{left:531.845781pt;}
.x42_c01214{left:540.245673pt;}
.x73_c01214{left:548.512476pt;}
.x4a_c01214{left:549.606313pt;}
.x2d_c01214{left:559.443249pt;}
.x43_c01214{left:560.406180pt;}
.x9_c01214{left:568.958667pt;}
.x75_c01214{left:575.595597pt;}
.x57_c01214{left:579.030220pt;}
.x37_c01214{left:583.444031pt;}
.x3c_c01214{left:589.137333pt;}
.x53_c01214{left:598.568500pt;}
.xa_c01214{left:599.676000pt;}
.x6d_c01214{left:606.826803pt;}
.x58_c01214{left:608.553927pt;}
.x78_c01214{left:611.137333pt;}
.x3d_c01214{left:615.502667pt;}
.x14_c01214{left:618.727371pt;}
.x2e_c01214{left:620.164893pt;}
.x48_c01214{left:630.728213pt;}
.x2f_c01214{left:637.925761pt;}
.x23_c01214{left:638.886252pt;}
.x72_c01214{left:647.252056pt;}
.xb_c01214{left:648.641333pt;}
.x1d_c01214{left:658.260205pt;}
.x5f_c01214{left:667.331447pt;}
.x24_c01214{left:668.406365pt;}
.x50_c01214{left:678.422687pt;}
.x4b_c01214{left:686.408400pt;}
.x63_c01214{left:687.754220pt;}
.x15_c01214{left:688.809472pt;}
.xc_c01214{left:696.880000pt;}
.x44_c01214{left:698.168287pt;}
.x79_c01214{left:699.549333pt;}
.x3e_c01214{left:707.466667pt;}
.x56_c01214{left:715.627833pt;}
.x16_c01214{left:717.609548pt;}
.x45_c01214{left:726.488993pt;}
.x6f_c01214{left:727.829600pt;}
.x25_c01214{left:729.128009pt;}
.x3f_c01214{left:736.981333pt;}
.x70_c01214{left:742.539944pt;}
.x59_c01214{left:747.039213pt;}
.x76_c01214{left:748.570465pt;}
.x60_c01214{left:756.095000pt;}
.x5c_c01214{left:758.327067pt;}
.x6e_c01214{left:761.326725pt;}
.x51_c01214{left:790.938687pt;}
.x4e_c01214{left:797.912793pt;}
.x40_c01214{left:802.042667pt;}
}





/* 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_c01215 {
    display:none;
  }
  .loading-indicator_c01215.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01215 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_c01215 { 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_c01215" -> "#page-container .classname_c01215")
 */
.pf_c01215 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01215 { /* 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_c01215.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01215 { /* 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_c01215 { /* 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_c01215 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01215 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01215 {overflow:visible;}
  }
}
.c_c01215 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01215 { /* 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_c01215:after { /* webkit #35443 */
  content: '';
}
.t_c01215:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01215 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 */
}
.__c01215 { /* 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_c01215 { /* info for Javascript */
  display:none;
}
.l_c01215 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01215 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01215 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01215: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_c01215 {
    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_c01215.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01215.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_c01215 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01215{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01215;src:url('chunks/assets/font_fabf4b590f7fb32aea93ffb2.woff2')format("woff");}.ff1_c01215{font-family:ff1_c01215;line-height:1.000000;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;}
.mb_c01215{transform:matrix(0.011525,-0.000081,0.001750,0.249994,0,0);-ms-transform:matrix(0.011525,-0.000081,0.001750,0.249994,0,0);-webkit-transform:matrix(0.011525,-0.000081,0.001750,0.249994,0,0);}
.m7_c01215{transform:matrix(0.031975,-0.000799,0.006248,0.249922,0,0);-ms-transform:matrix(0.031975,-0.000799,0.006248,0.249922,0,0);-webkit-transform:matrix(0.031975,-0.000799,0.006248,0.249922,0,0);}
.mc_c01215{transform:matrix(0.045254,-0.000317,0.001750,0.249994,0,0);-ms-transform:matrix(0.045254,-0.000317,0.001750,0.249994,0,0);-webkit-transform:matrix(0.045254,-0.000317,0.001750,0.249994,0,0);}
.me_c01215{transform:matrix(0.095048,-0.000665,0.001750,0.249994,0,0);-ms-transform:matrix(0.095048,-0.000665,0.001750,0.249994,0,0);-webkit-transform:matrix(0.095048,-0.000665,0.001750,0.249994,0,0);}
.md_c01215{transform:matrix(0.113432,-0.000794,0.001750,0.249994,0,0);-ms-transform:matrix(0.113432,-0.000794,0.001750,0.249994,0,0);-webkit-transform:matrix(0.113432,-0.000794,0.001750,0.249994,0,0);}
.m16_c01215{transform:matrix(0.119472,-0.000836,0.001750,0.249994,0,0);-ms-transform:matrix(0.119472,-0.000836,0.001750,0.249994,0,0);-webkit-transform:matrix(0.119472,-0.000836,0.001750,0.249994,0,0);}
.m17_c01215{transform:matrix(0.121132,-0.000848,0.001750,0.249994,0,0);-ms-transform:matrix(0.121132,-0.000848,0.001750,0.249994,0,0);-webkit-transform:matrix(0.121132,-0.000848,0.001750,0.249994,0,0);}
.m18_c01215{transform:matrix(0.132592,-0.000928,0.001750,0.249994,0,0);-ms-transform:matrix(0.132592,-0.000928,0.001750,0.249994,0,0);-webkit-transform:matrix(0.132592,-0.000928,0.001750,0.249994,0,0);}
.m14_c01215{transform:matrix(0.137562,-0.000963,0.001750,0.249994,0,0);-ms-transform:matrix(0.137562,-0.000963,0.001750,0.249994,0,0);-webkit-transform:matrix(0.137562,-0.000963,0.001750,0.249994,0,0);}
.m15_c01215{transform:matrix(0.143261,-0.001003,0.001750,0.249994,0,0);-ms-transform:matrix(0.143261,-0.001003,0.001750,0.249994,0,0);-webkit-transform:matrix(0.143261,-0.001003,0.001750,0.249994,0,0);}
.m1a_c01215{transform:matrix(0.150311,-0.001052,0.001750,0.249994,0,0);-ms-transform:matrix(0.150311,-0.001052,0.001750,0.249994,0,0);-webkit-transform:matrix(0.150311,-0.001052,0.001750,0.249994,0,0);}
.m13_c01215{transform:matrix(0.153436,-0.001074,0.001750,0.249994,0,0);-ms-transform:matrix(0.153436,-0.001074,0.001750,0.249994,0,0);-webkit-transform:matrix(0.153436,-0.001074,0.001750,0.249994,0,0);}
.m1b_c01215{transform:matrix(0.156231,-0.001094,0.001750,0.249994,0,0);-ms-transform:matrix(0.156231,-0.001094,0.001750,0.249994,0,0);-webkit-transform:matrix(0.156231,-0.001094,0.001750,0.249994,0,0);}
.m23_c01215{transform:matrix(0.173385,0.002601,-0.003750,0.249972,0,0);-ms-transform:matrix(0.173385,0.002601,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.173385,0.002601,-0.003750,0.249972,0,0);}
.m19_c01215{transform:matrix(0.173846,-0.001217,0.001750,0.249994,0,0);-ms-transform:matrix(0.173846,-0.001217,0.001750,0.249994,0,0);-webkit-transform:matrix(0.173846,-0.001217,0.001750,0.249994,0,0);}
.m11_c01215{transform:matrix(0.178406,-0.001249,0.001750,0.249994,0,0);-ms-transform:matrix(0.178406,-0.001249,0.001750,0.249994,0,0);-webkit-transform:matrix(0.178406,-0.001249,0.001750,0.249994,0,0);}
.m4_c01215{transform:matrix(0.180903,-0.004523,0.006248,0.249922,0,0);-ms-transform:matrix(0.180903,-0.004523,0.006248,0.249922,0,0);-webkit-transform:matrix(0.180903,-0.004523,0.006248,0.249922,0,0);}
.m1c_c01215{transform:matrix(0.181256,-0.001269,0.001750,0.249994,0,0);-ms-transform:matrix(0.181256,-0.001269,0.001750,0.249994,0,0);-webkit-transform:matrix(0.181256,-0.001269,0.001750,0.249994,0,0);}
.m20_c01215{transform:matrix(0.183134,0.002747,-0.003750,0.249972,0,0);-ms-transform:matrix(0.183134,0.002747,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.183134,0.002747,-0.003750,0.249972,0,0);}
.m1_c01215{transform:matrix(0.192008,0.017736,-0.022994,0.248940,0,0);-ms-transform:matrix(0.192008,0.017736,-0.022994,0.248940,0,0);-webkit-transform:matrix(0.192008,0.017736,-0.022994,0.248940,0,0);}
.m5_c01215{transform:matrix(0.194139,-0.004853,0.006248,0.249922,0,0);-ms-transform:matrix(0.194139,-0.004853,0.006248,0.249922,0,0);-webkit-transform:matrix(0.194139,-0.004853,0.006248,0.249922,0,0);}
.m12_c01215{transform:matrix(0.195420,-0.001368,0.001750,0.249994,0,0);-ms-transform:matrix(0.195420,-0.001368,0.001750,0.249994,0,0);-webkit-transform:matrix(0.195420,-0.001368,0.001750,0.249994,0,0);}
.m21_c01215{transform:matrix(0.197068,0.002956,-0.003750,0.249972,0,0);-ms-transform:matrix(0.197068,0.002956,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.197068,0.002956,-0.003750,0.249972,0,0);}
.m22_c01215{transform:matrix(0.197978,0.002970,-0.003750,0.249972,0,0);-ms-transform:matrix(0.197978,0.002970,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.197978,0.002970,-0.003750,0.249972,0,0);}
.m1e_c01215{transform:matrix(0.200417,0.003006,-0.003750,0.249972,0,0);-ms-transform:matrix(0.200417,0.003006,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.200417,0.003006,-0.003750,0.249972,0,0);}
.m6_c01215{transform:matrix(0.201152,-0.005029,0.006248,0.249922,0,0);-ms-transform:matrix(0.201152,-0.005029,0.006248,0.249922,0,0);-webkit-transform:matrix(0.201152,-0.005029,0.006248,0.249922,0,0);}
.m10_c01215{transform:matrix(0.215990,-0.001512,0.001750,0.249994,0,0);-ms-transform:matrix(0.215990,-0.001512,0.001750,0.249994,0,0);-webkit-transform:matrix(0.215990,-0.001512,0.001750,0.249994,0,0);}
.m28_c01215{transform:matrix(0.234879,-0.017433,0.018505,0.249314,0,0);-ms-transform:matrix(0.234879,-0.017433,0.018505,0.249314,0,0);-webkit-transform:matrix(0.234879,-0.017433,0.018505,0.249314,0,0);}
.m8_c01215{transform:matrix(0.235055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235055,0.000000,0.000000,0.250000,0,0);}
.m9_c01215{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.ma_c01215{transform:matrix(0.261060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261060,0.000000,0.000000,0.250000,0,0);}
.m1d_c01215{transform:matrix(0.261366,0.003920,-0.003750,0.249972,0,0);-ms-transform:matrix(0.261366,0.003920,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.261366,0.003920,-0.003750,0.249972,0,0);}
.m3_c01215{transform:matrix(0.266442,-0.006661,0.006248,0.249922,0,0);-ms-transform:matrix(0.266442,-0.006661,0.006248,0.249922,0,0);-webkit-transform:matrix(0.266442,-0.006661,0.006248,0.249922,0,0);}
.m25_c01215{transform:matrix(0.299197,-0.022207,0.018505,0.249314,0,0);-ms-transform:matrix(0.299197,-0.022207,0.018505,0.249314,0,0);-webkit-transform:matrix(0.299197,-0.022207,0.018505,0.249314,0,0);}
.m27_c01215{transform:matrix(0.314495,-0.023343,0.018505,0.249314,0,0);-ms-transform:matrix(0.314495,-0.023343,0.018505,0.249314,0,0);-webkit-transform:matrix(0.314495,-0.023343,0.018505,0.249314,0,0);}
.m1f_c01215{transform:matrix(0.336487,0.005047,-0.003750,0.249972,0,0);-ms-transform:matrix(0.336487,0.005047,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.336487,0.005047,-0.003750,0.249972,0,0);}
.m0_c01215{transform:matrix(0.348616,0.032201,-0.022994,0.248940,0,0);-ms-transform:matrix(0.348616,0.032201,-0.022994,0.248940,0,0);-webkit-transform:matrix(0.348616,0.032201,-0.022994,0.248940,0,0);}
.m24_c01215{transform:matrix(0.390805,-0.029007,0.018505,0.249314,0,0);-ms-transform:matrix(0.390805,-0.029007,0.018505,0.249314,0,0);-webkit-transform:matrix(0.390805,-0.029007,0.018505,0.249314,0,0);}
.m26_c01215{transform:matrix(0.396006,-0.029393,0.018505,0.249314,0,0);-ms-transform:matrix(0.396006,-0.029393,0.018505,0.249314,0,0);-webkit-transform:matrix(0.396006,-0.029393,0.018505,0.249314,0,0);}
.mf_c01215{transform:matrix(0.436024,-0.003052,0.001750,0.249994,0,0);-ms-transform:matrix(0.436024,-0.003052,0.001750,0.249994,0,0);-webkit-transform:matrix(0.436024,-0.003052,0.001750,0.249994,0,0);}
.m2_c01215{transform:matrix(0.496040,-0.012401,0.006248,0.249922,0,0);-ms-transform:matrix(0.496040,-0.012401,0.006248,0.249922,0,0);-webkit-transform:matrix(0.496040,-0.012401,0.006248,0.249922,0,0);}
.v0_c01215{vertical-align:0.000000px;}
.ls0_c01215{letter-spacing:0.000000px;}
.sc__c01215{text-shadow:none;}
.sc0_c01215{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__c01215{-webkit-text-stroke:0px transparent;}
.sc0_c01215{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01215{word-spacing:0.000000px;}
.fc0_c01215{color:transparent;}
.fs2_c01215{font-size:72.000000px;}
.fs5_c01215{font-size:83.978367px;}
.fs1_c01215{font-size:102.031870px;}
.fs0_c01215{font-size:108.025917px;}
.fs4_c01215{font-size:114.012824px;}
.fs3_c01215{font-size:144.003528px;}
.y0_c01215{bottom:0.000000px;}
.y23_c01215{bottom:488.401500px;}
.y24_c01215{bottom:491.494404px;}
.y25_c01215{bottom:494.703192px;}
.y26_c01215{bottom:499.771674px;}
.y27_c01215{bottom:503.285157px;}
.y22_c01215{bottom:613.952228px;}
.y21_c01215{bottom:614.835037px;}
.y20_c01215{bottom:616.135358px;}
.y1f_c01215{bottom:616.783650px;}
.y1e_c01215{bottom:617.058893px;}
.y1d_c01215{bottom:617.293275px;}
.y1c_c01215{bottom:617.496000px;}
.y16_c01215{bottom:747.365586px;}
.y14_c01215{bottom:747.365997px;}
.y17_c01215{bottom:747.366085px;}
.y15_c01215{bottom:747.366136px;}
.y13_c01215{bottom:747.366217px;}
.y18_c01215{bottom:747.366435px;}
.y12_c01215{bottom:747.366618px;}
.y11_c01215{bottom:747.366718px;}
.y1b_c01215{bottom:747.366744px;}
.y1a_c01215{bottom:747.366784px;}
.y19_c01215{bottom:747.367185px;}
.ya_c01215{bottom:789.480000px;}
.yb_c01215{bottom:789.827833px;}
.yc_c01215{bottom:790.067842px;}
.yd_c01215{bottom:790.619670px;}
.ye_c01215{bottom:790.991359px;}
.yf_c01215{bottom:791.926941px;}
.y10_c01215{bottom:792.174468px;}
.y9_c01215{bottom:860.760000px;}
.y3_c01215{bottom:964.459500px;}
.y4_c01215{bottom:968.369738px;}
.y5_c01215{bottom:969.749363px;}
.y6_c01215{bottom:971.430750px;}
.y7_c01215{bottom:973.127663px;}
.y8_c01215{bottom:974.191988px;}
.y2_c01215{bottom:1107.597726px;}
.y1_c01215{bottom:1112.907000px;}
.h4_c01215{height:72.000000px;}
.h7_c01215{height:83.978367px;}
.h3_c01215{height:102.031870px;}
.h2_c01215{height:108.025917px;}
.h6_c01215{height:114.012824px;}
.h5_c01215{height:144.003528px;}
.h1_c01215{height:1258.500000px;}
.h0_c01215{height:1258.740000px;}
.w0_c01215{width:904.200000px;}
.w1_c01215{width:904.500000px;}
.x0_c01215{left:0.000000px;}
.x3_c01215{left:78.259500px;}
.x4_c01215{left:234.669000px;}
.xc_c01215{left:270.822000px;}
.x13_c01215{left:279.991228px;}
.x5_c01215{left:289.854000px;}
.xd_c01215{left:320.512500px;}
.x14_c01215{left:333.722364px;}
.xe_c01215{left:354.799500px;}
.x6_c01215{left:357.109500px;}
.x1_c01215{left:382.144500px;}
.x15_c01215{left:390.693657px;}
.x7_c01215{left:424.986000px;}
.xf_c01215{left:433.632000px;}
.x2_c01215{left:439.623162px;}
.x16_c01215{left:454.145265px;}
.x8_c01215{left:467.559000px;}
.x1c_c01215{left:481.608000px;}
.x10_c01215{left:486.730500px;}
.x1d_c01215{left:497.233500px;}
.x17_c01215{left:498.425938px;}
.x22_c01215{left:509.779500px;}
.x1e_c01215{left:515.583000px;}
.x23_c01215{left:551.450112px;}
.x1f_c01215{left:558.802500px;}
.x18_c01215{left:568.357861px;}
.x24_c01215{left:594.682026px;}
.x19_c01215{left:601.838000px;}
.x11_c01215{left:620.385000px;}
.x1a_c01215{left:622.088986px;}
.x20_c01215{left:645.490500px;}
.x12_c01215{left:655.746000px;}
.x1b_c01215{left:662.319460px;}
.x9_c01215{left:668.250000px;}
.xa_c01215{left:689.310000px;}
.x21_c01215{left:704.344500px;}
.x25_c01215{left:710.306609px;}
.xb_c01215{left:722.520000px;}
@media print{
.v0_c01215{vertical-align:0.000000pt;}
.ls0_c01215{letter-spacing:0.000000pt;}
.ws0_c01215{word-spacing:0.000000pt;}
.fs2_c01215{font-size:64.000000pt;}
.fs5_c01215{font-size:74.647438pt;}
.fs1_c01215{font-size:90.694996pt;}
.fs0_c01215{font-size:96.023037pt;}
.fs4_c01215{font-size:101.344733pt;}
.fs3_c01215{font-size:128.003136pt;}
.y0_c01215{bottom:0.000000pt;}
.y23_c01215{bottom:434.134667pt;}
.y24_c01215{bottom:436.883915pt;}
.y25_c01215{bottom:439.736171pt;}
.y26_c01215{bottom:444.241488pt;}
.y27_c01215{bottom:447.364584pt;}
.y22_c01215{bottom:545.735313pt;}
.y21_c01215{bottom:546.520033pt;}
.y20_c01215{bottom:547.675873pt;}
.y1f_c01215{bottom:548.252133pt;}
.y1e_c01215{bottom:548.496793pt;}
.y1d_c01215{bottom:548.705133pt;}
.y1c_c01215{bottom:548.885333pt;}
.y16_c01215{bottom:664.324965pt;}
.y14_c01215{bottom:664.325331pt;}
.y17_c01215{bottom:664.325409pt;}
.y15_c01215{bottom:664.325455pt;}
.y13_c01215{bottom:664.325527pt;}
.y18_c01215{bottom:664.325720pt;}
.y12_c01215{bottom:664.325883pt;}
.y11_c01215{bottom:664.325972pt;}
.y1b_c01215{bottom:664.325995pt;}
.y1a_c01215{bottom:664.326031pt;}
.y19_c01215{bottom:664.326387pt;}
.ya_c01215{bottom:701.760000pt;}
.yb_c01215{bottom:702.069185pt;}
.yc_c01215{bottom:702.282527pt;}
.yd_c01215{bottom:702.773040pt;}
.ye_c01215{bottom:703.103431pt;}
.yf_c01215{bottom:703.935059pt;}
.y10_c01215{bottom:704.155083pt;}
.y9_c01215{bottom:765.120000pt;}
.y3_c01215{bottom:857.297333pt;}
.y4_c01215{bottom:860.773100pt;}
.y5_c01215{bottom:861.999433pt;}
.y6_c01215{bottom:863.494000pt;}
.y7_c01215{bottom:865.002367pt;}
.y8_c01215{bottom:865.948433pt;}
.y2_c01215{bottom:984.531312pt;}
.y1_c01215{bottom:989.250667pt;}
.h4_c01215{height:64.000000pt;}
.h7_c01215{height:74.647438pt;}
.h3_c01215{height:90.694996pt;}
.h2_c01215{height:96.023037pt;}
.h6_c01215{height:101.344733pt;}
.h5_c01215{height:128.003136pt;}
.h1_c01215{height:1118.666667pt;}
.h0_c01215{height:1118.880000pt;}
.w0_c01215{width:803.733333pt;}
.w1_c01215{width:804.000000pt;}
.x0_c01215{left:0.000000pt;}
.x3_c01215{left:69.564000pt;}
.x4_c01215{left:208.594667pt;}
.xc_c01215{left:240.730667pt;}
.x13_c01215{left:248.881092pt;}
.x5_c01215{left:257.648000pt;}
.xd_c01215{left:284.900000pt;}
.x14_c01215{left:296.642101pt;}
.xe_c01215{left:315.377333pt;}
.x6_c01215{left:317.430667pt;}
.x1_c01215{left:339.684000pt;}
.x15_c01215{left:347.283251pt;}
.x7_c01215{left:377.765333pt;}
.xf_c01215{left:385.450667pt;}
.x2_c01215{left:390.776144pt;}
.x16_c01215{left:403.684680pt;}
.x8_c01215{left:415.608000pt;}
.x1c_c01215{left:428.096000pt;}
.x10_c01215{left:432.649333pt;}
.x1d_c01215{left:441.985333pt;}
.x17_c01215{left:443.045279pt;}
.x22_c01215{left:453.137333pt;}
.x1e_c01215{left:458.296000pt;}
.x23_c01215{left:490.177877pt;}
.x1f_c01215{left:496.713333pt;}
.x18_c01215{left:505.206988pt;}
.x24_c01215{left:528.606245pt;}
.x19_c01215{left:534.967111pt;}
.x11_c01215{left:551.453333pt;}
.x1a_c01215{left:552.967988pt;}
.x20_c01215{left:573.769333pt;}
.x12_c01215{left:582.885333pt;}
.x1b_c01215{left:588.728409pt;}
.x9_c01215{left:594.000000pt;}
.xa_c01215{left:612.720000pt;}
.x21_c01215{left:626.084000pt;}
.x25_c01215{left:631.383652pt;}
.xb_c01215{left:642.240000pt;}
}





/* 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_c01216 {
    display:none;
  }
  .loading-indicator_c01216.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01216 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_c01216 { 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_c01216" -> "#page-container .classname_c01216")
 */
.pf_c01216 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01216 { /* 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_c01216.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01216 { /* 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_c01216 { /* 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_c01216 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01216 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01216 {overflow:visible;}
  }
}
.c_c01216 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01216 { /* 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_c01216:after { /* webkit #35443 */
  content: '';
}
.t_c01216:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01216 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 */
}
.__c01216 { /* 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_c01216 { /* info for Javascript */
  display:none;
}
.l_c01216 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01216 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01216 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01216: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_c01216 {
    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_c01216.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01216.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_c01216 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01216{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01216;src:url('chunks/assets/font_cfe63ee56e9e10a97d33a3db.woff2')format("woff");}.ff1_c01216{font-family:ff1_c01216;line-height:1.000000;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;}
.m12_c01216{transform:matrix(0.022810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.022810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.022810,0.000000,0.000000,0.250000,0,0);}
.m154_c01216{transform:matrix(0.105470,0.001793,-0.004249,0.249964,0,0);-ms-transform:matrix(0.105470,0.001793,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.105470,0.001793,-0.004249,0.249964,0,0);}
.m148_c01216{transform:matrix(0.124057,0.002109,-0.004249,0.249964,0,0);-ms-transform:matrix(0.124057,0.002109,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.124057,0.002109,-0.004249,0.249964,0,0);}
.m151_c01216{transform:matrix(0.141155,0.002400,-0.004249,0.249964,0,0);-ms-transform:matrix(0.141155,0.002400,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.141155,0.002400,-0.004249,0.249964,0,0);}
.m0_c01216{transform:matrix(0.151955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151955,0.000000,0.000000,0.250000,0,0);}
.mfa_c01216{transform:matrix(0.152847,0.000917,-0.001500,0.249996,0,0);-ms-transform:matrix(0.152847,0.000917,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.152847,0.000917,-0.001500,0.249996,0,0);}
.m150_c01216{transform:matrix(0.153193,0.002604,-0.004249,0.249964,0,0);-ms-transform:matrix(0.153193,0.002604,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.153193,0.002604,-0.004249,0.249964,0,0);}
.m153_c01216{transform:matrix(0.157747,0.002682,-0.004249,0.249964,0,0);-ms-transform:matrix(0.157747,0.002682,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.157747,0.002682,-0.004249,0.249964,0,0);}
.m155_c01216{transform:matrix(0.158602,0.002696,-0.004249,0.249964,0,0);-ms-transform:matrix(0.158602,0.002696,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.158602,0.002696,-0.004249,0.249964,0,0);}
.ma8_c01216{transform:matrix(0.167240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167240,0.000000,0.000000,0.250000,0,0);}
.m156_c01216{transform:matrix(0.182524,0.003103,-0.004249,0.249964,0,0);-ms-transform:matrix(0.182524,0.003103,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.182524,0.003103,-0.004249,0.249964,0,0);}
.m14f_c01216{transform:matrix(0.182784,0.003107,-0.004249,0.249964,0,0);-ms-transform:matrix(0.182784,0.003107,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.182784,0.003107,-0.004249,0.249964,0,0);}
.m14b_c01216{transform:matrix(0.187823,0.003193,-0.004249,0.249964,0,0);-ms-transform:matrix(0.187823,0.003193,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.187823,0.003193,-0.004249,0.249964,0,0);}
.m98_c01216{transform:matrix(0.190540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190540,0.000000,0.000000,0.250000,0,0);}
.m122_c01216{transform:matrix(0.190917,0.001145,-0.001500,0.249996,0,0);-ms-transform:matrix(0.190917,0.001145,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.190917,0.001145,-0.001500,0.249996,0,0);}
.m149_c01216{transform:matrix(0.193377,0.003287,-0.004249,0.249964,0,0);-ms-transform:matrix(0.193377,0.003287,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.193377,0.003287,-0.004249,0.249964,0,0);}
.m11d_c01216{transform:matrix(0.194546,0.001167,-0.001500,0.249996,0,0);-ms-transform:matrix(0.194546,0.001167,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.194546,0.001167,-0.001500,0.249996,0,0);}
.m14a_c01216{transform:matrix(0.194562,0.003308,-0.004249,0.249964,0,0);-ms-transform:matrix(0.194562,0.003308,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.194562,0.003308,-0.004249,0.249964,0,0);}
.m75_c01216{transform:matrix(0.195335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195335,0.000000,0.000000,0.250000,0,0);}
.med_c01216{transform:matrix(0.196081,0.001176,-0.001500,0.249996,0,0);-ms-transform:matrix(0.196081,0.001176,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.196081,0.001176,-0.001500,0.249996,0,0);}
.ma4_c01216{transform:matrix(0.196380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196380,0.000000,0.000000,0.250000,0,0);}
.mef_c01216{transform:matrix(0.197166,0.001183,-0.001500,0.249996,0,0);-ms-transform:matrix(0.197166,0.001183,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.197166,0.001183,-0.001500,0.249996,0,0);}
.mf0_c01216{transform:matrix(0.199221,0.001195,-0.001500,0.249996,0,0);-ms-transform:matrix(0.199221,0.001195,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.199221,0.001195,-0.001500,0.249996,0,0);}
.m14d_c01216{transform:matrix(0.199606,0.003393,-0.004249,0.249964,0,0);-ms-transform:matrix(0.199606,0.003393,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.199606,0.003393,-0.004249,0.249964,0,0);}
.m13e_c01216{transform:matrix(0.202300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202300,0.000000,0.000000,0.250000,0,0);}
.me0_c01216{transform:matrix(0.202560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202560,0.000000,0.000000,0.250000,0,0);}
.m3d_c01216{transform:matrix(0.202975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202975,0.000000,0.000000,0.250000,0,0);}
.m152_c01216{transform:matrix(0.204021,0.003468,-0.004249,0.249964,0,0);-ms-transform:matrix(0.204021,0.003468,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.204021,0.003468,-0.004249,0.249964,0,0);}
.m7f_c01216{transform:matrix(0.205565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205565,0.000000,0.000000,0.250000,0,0);}
.m1a_c01216{transform:matrix(0.205930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205930,0.000000,0.000000,0.250000,0,0);}
.m112_c01216{transform:matrix(0.206151,0.001237,-0.001500,0.249996,0,0);-ms-transform:matrix(0.206151,0.001237,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.206151,0.001237,-0.001500,0.249996,0,0);}
.ma5_c01216{transform:matrix(0.206910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206910,0.000000,0.000000,0.250000,0,0);}
.m10_c01216{transform:matrix(0.209180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209180,0.000000,0.000000,0.250000,0,0);}
.m128_c01216{transform:matrix(0.209536,0.001257,-0.001500,0.249996,0,0);-ms-transform:matrix(0.209536,0.001257,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.209536,0.001257,-0.001500,0.249996,0,0);}
.m1b_c01216{transform:matrix(0.210900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210900,0.000000,0.000000,0.250000,0,0);}
.m59_c01216{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m12b_c01216{transform:matrix(0.212261,0.001274,-0.001500,0.249996,0,0);-ms-transform:matrix(0.212261,0.001274,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.212261,0.001274,-0.001500,0.249996,0,0);}
.m14c_c01216{transform:matrix(0.212639,0.003615,-0.004249,0.249964,0,0);-ms-transform:matrix(0.212639,0.003615,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.212639,0.003615,-0.004249,0.249964,0,0);}
.m11b_c01216{transform:matrix(0.212861,0.001277,-0.001500,0.249996,0,0);-ms-transform:matrix(0.212861,0.001277,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.212861,0.001277,-0.001500,0.249996,0,0);}
.m14e_c01216{transform:matrix(0.212929,0.003620,-0.004249,0.249964,0,0);-ms-transform:matrix(0.212929,0.003620,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.212929,0.003620,-0.004249,0.249964,0,0);}
.mab_c01216{transform:matrix(0.213320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213320,0.000000,0.000000,0.250000,0,0);}
.m5d_c01216{transform:matrix(0.213600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213600,0.000000,0.000000,0.250000,0,0);}
.m6_c01216{transform:matrix(0.214955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214955,0.000000,0.000000,0.250000,0,0);}
.m5f_c01216{transform:matrix(0.215710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215710,0.000000,0.000000,0.250000,0,0);}
.m141_c01216{transform:matrix(0.217035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217035,0.000000,0.000000,0.250000,0,0);}
.md4_c01216{transform:matrix(0.217830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217830,0.000000,0.000000,0.250000,0,0);}
.m18_c01216{transform:matrix(0.218110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218110,0.000000,0.000000,0.250000,0,0);}
.m142_c01216{transform:matrix(0.218925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218925,0.000000,0.000000,0.250000,0,0);}
.mde_c01216{transform:matrix(0.219160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219160,0.000000,0.000000,0.250000,0,0);}
.m140_c01216{transform:matrix(0.220705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220705,0.000000,0.000000,0.250000,0,0);}
.m16_c01216{transform:matrix(0.221445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221445,0.000000,0.000000,0.250000,0,0);}
.m138_c01216{transform:matrix(0.221880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221880,0.000000,0.000000,0.250000,0,0);}
.m136_c01216{transform:matrix(0.223675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223675,0.000000,0.000000,0.250000,0,0);}
.mdb_c01216{transform:matrix(0.223745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223745,0.000000,0.000000,0.250000,0,0);}
.mf6_c01216{transform:matrix(0.223861,0.001343,-0.001500,0.249996,0,0);-ms-transform:matrix(0.223861,0.001343,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.223861,0.001343,-0.001500,0.249996,0,0);}
.m131_c01216{transform:matrix(0.223966,0.001344,-0.001500,0.249996,0,0);-ms-transform:matrix(0.223966,0.001344,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.223966,0.001344,-0.001500,0.249996,0,0);}
.mf5_c01216{transform:matrix(0.224141,0.001345,-0.001500,0.249996,0,0);-ms-transform:matrix(0.224141,0.001345,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.224141,0.001345,-0.001500,0.249996,0,0);}
.m13d_c01216{transform:matrix(0.224540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224540,0.000000,0.000000,0.250000,0,0);}
.m1c_c01216{transform:matrix(0.224665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224665,0.000000,0.000000,0.250000,0,0);}
.m120_c01216{transform:matrix(0.224716,0.001348,-0.001500,0.249996,0,0);-ms-transform:matrix(0.224716,0.001348,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.224716,0.001348,-0.001500,0.249996,0,0);}
.m68_c01216{transform:matrix(0.225720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225720,0.000000,0.000000,0.250000,0,0);}
.m5c_c01216{transform:matrix(0.226110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226110,0.000000,0.000000,0.250000,0,0);}
.m17_c01216{transform:matrix(0.226915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226915,0.000000,0.000000,0.250000,0,0);}
.m13_c01216{transform:matrix(0.227285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227285,0.000000,0.000000,0.250000,0,0);}
.md_c01216{transform:matrix(0.228055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228055,0.000000,0.000000,0.250000,0,0);}
.m126_c01216{transform:matrix(0.228871,0.001373,-0.001500,0.249996,0,0);-ms-transform:matrix(0.228871,0.001373,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.228871,0.001373,-0.001500,0.249996,0,0);}
.m134_c01216{transform:matrix(0.228965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228965,0.000000,0.000000,0.250000,0,0);}
.m12d_c01216{transform:matrix(0.229021,0.001374,-0.001500,0.249996,0,0);-ms-transform:matrix(0.229021,0.001374,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.229021,0.001374,-0.001500,0.249996,0,0);}
.mbc_c01216{transform:matrix(0.229235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229235,0.000000,0.000000,0.250000,0,0);}
.m118_c01216{transform:matrix(0.229346,0.001376,-0.001500,0.249996,0,0);-ms-transform:matrix(0.229346,0.001376,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.229346,0.001376,-0.001500,0.249996,0,0);}
.m129_c01216{transform:matrix(0.230246,0.001381,-0.001500,0.249996,0,0);-ms-transform:matrix(0.230246,0.001381,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.230246,0.001381,-0.001500,0.249996,0,0);}
.m13b_c01216{transform:matrix(0.230285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230285,0.000000,0.000000,0.250000,0,0);}
.m65_c01216{transform:matrix(0.230675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230675,0.000000,0.000000,0.250000,0,0);}
.m6a_c01216{transform:matrix(0.230725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230725,0.000000,0.000000,0.250000,0,0);}
.m2a_c01216{transform:matrix(0.231820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231820,0.000000,0.000000,0.250000,0,0);}
.m28_c01216{transform:matrix(0.232110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232110,0.000000,0.000000,0.250000,0,0);}
.me5_c01216{transform:matrix(0.232443,0.001860,-0.002000,0.249992,0,0);-ms-transform:matrix(0.232443,0.001860,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.232443,0.001860,-0.002000,0.249992,0,0);}
.m3b_c01216{transform:matrix(0.232460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232460,0.000000,0.000000,0.250000,0,0);}
.mae_c01216{transform:matrix(0.232670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232670,0.000000,0.000000,0.250000,0,0);}
.md8_c01216{transform:matrix(0.232985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232985,0.000000,0.000000,0.250000,0,0);}
.m12f_c01216{transform:matrix(0.233016,0.001398,-0.001500,0.249996,0,0);-ms-transform:matrix(0.233016,0.001398,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.233016,0.001398,-0.001500,0.249996,0,0);}
.m3f_c01216{transform:matrix(0.233020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233020,0.000000,0.000000,0.250000,0,0);}
.m51_c01216{transform:matrix(0.233160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233160,0.000000,0.000000,0.250000,0,0);}
.m9c_c01216{transform:matrix(0.234240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234240,0.000000,0.000000,0.250000,0,0);}
.me_c01216{transform:matrix(0.234675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234675,0.000000,0.000000,0.250000,0,0);}
.m103_c01216{transform:matrix(0.235316,0.001412,-0.001500,0.249996,0,0);-ms-transform:matrix(0.235316,0.001412,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.235316,0.001412,-0.001500,0.249996,0,0);}
.m44_c01216{transform:matrix(0.235320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235320,0.000000,0.000000,0.250000,0,0);}
.m100_c01216{transform:matrix(0.235446,0.001413,-0.001500,0.249996,0,0);-ms-transform:matrix(0.235446,0.001413,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.235446,0.001413,-0.001500,0.249996,0,0);}
.mf2_c01216{transform:matrix(0.235576,0.001413,-0.001500,0.249996,0,0);-ms-transform:matrix(0.235576,0.001413,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.235576,0.001413,-0.001500,0.249996,0,0);}
.m10a_c01216{transform:matrix(0.235651,0.001414,-0.001500,0.249996,0,0);-ms-transform:matrix(0.235651,0.001414,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.235651,0.001414,-0.001500,0.249996,0,0);}
.mb0_c01216{transform:matrix(0.235730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235730,0.000000,0.000000,0.250000,0,0);}
.m19_c01216{transform:matrix(0.236475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236475,0.000000,0.000000,0.250000,0,0);}
.mb6_c01216{transform:matrix(0.236785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236785,0.000000,0.000000,0.250000,0,0);}
.mf8_c01216{transform:matrix(0.237031,0.001422,-0.001500,0.249996,0,0);-ms-transform:matrix(0.237031,0.001422,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.237031,0.001422,-0.001500,0.249996,0,0);}
.me4_c01216{transform:matrix(0.238807,0.001910,-0.002000,0.249992,0,0);-ms-transform:matrix(0.238807,0.001910,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.238807,0.001910,-0.002000,0.249992,0,0);}
.mdc_c01216{transform:matrix(0.239325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239325,0.000000,0.000000,0.250000,0,0);}
.m5e_c01216{transform:matrix(0.241085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241085,0.000000,0.000000,0.250000,0,0);}
.mad_c01216{transform:matrix(0.241120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241120,0.000000,0.000000,0.250000,0,0);}
.m37_c01216{transform:matrix(0.241390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241390,0.000000,0.000000,0.250000,0,0);}
.m143_c01216{transform:matrix(0.241595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241595,0.000000,0.000000,0.250000,0,0);}
.m145_c01216{transform:matrix(0.241680,0.004109,-0.004249,0.249964,0,0);-ms-transform:matrix(0.241680,0.004109,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.241680,0.004109,-0.004249,0.249964,0,0);}
.m124_c01216{transform:matrix(0.242386,0.001454,-0.001500,0.249996,0,0);-ms-transform:matrix(0.242386,0.001454,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.242386,0.001454,-0.001500,0.249996,0,0);}
.mc9_c01216{transform:matrix(0.242800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242800,0.000000,0.000000,0.250000,0,0);}
.m84_c01216{transform:matrix(0.242850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242850,0.000000,0.000000,0.250000,0,0);}
.mc2_c01216{transform:matrix(0.242865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242865,0.000000,0.000000,0.250000,0,0);}
.m1_c01216{transform:matrix(0.243170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243170,0.000000,0.000000,0.250000,0,0);}
.mc_c01216{transform:matrix(0.244075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244075,0.000000,0.000000,0.250000,0,0);}
.m107_c01216{transform:matrix(0.244326,0.001466,-0.001500,0.249996,0,0);-ms-transform:matrix(0.244326,0.001466,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.244326,0.001466,-0.001500,0.249996,0,0);}
.mf3_c01216{transform:matrix(0.244591,0.001468,-0.001500,0.249996,0,0);-ms-transform:matrix(0.244591,0.001468,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.244591,0.001468,-0.001500,0.249996,0,0);}
.m125_c01216{transform:matrix(0.244821,0.001469,-0.001500,0.249996,0,0);-ms-transform:matrix(0.244821,0.001469,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.244821,0.001469,-0.001500,0.249996,0,0);}
.m2_c01216{transform:matrix(0.245140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245140,0.000000,0.000000,0.250000,0,0);}
.mc6_c01216{transform:matrix(0.245350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245350,0.000000,0.000000,0.250000,0,0);}
.m5a_c01216{transform:matrix(0.245400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245400,0.000000,0.000000,0.250000,0,0);}
.mfd_c01216{transform:matrix(0.245486,0.001473,-0.001500,0.249996,0,0);-ms-transform:matrix(0.245486,0.001473,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.245486,0.001473,-0.001500,0.249996,0,0);}
.mf1_c01216{transform:matrix(0.245976,0.001476,-0.001500,0.249996,0,0);-ms-transform:matrix(0.245976,0.001476,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.245976,0.001476,-0.001500,0.249996,0,0);}
.m2c_c01216{transform:matrix(0.246485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246485,0.000000,0.000000,0.250000,0,0);}
.m10e_c01216{transform:matrix(0.247251,0.001484,-0.001500,0.249996,0,0);-ms-transform:matrix(0.247251,0.001484,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.247251,0.001484,-0.001500,0.249996,0,0);}
.m2d_c01216{transform:matrix(0.247460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247460,0.000000,0.000000,0.250000,0,0);}
.mf7_c01216{transform:matrix(0.247561,0.001485,-0.001500,0.249996,0,0);-ms-transform:matrix(0.247561,0.001485,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.247561,0.001485,-0.001500,0.249996,0,0);}
.m111_c01216{transform:matrix(0.247651,0.001486,-0.001500,0.249996,0,0);-ms-transform:matrix(0.247651,0.001486,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.247651,0.001486,-0.001500,0.249996,0,0);}
.md5_c01216{transform:matrix(0.247845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247845,0.000000,0.000000,0.250000,0,0);}
.m105_c01216{transform:matrix(0.248181,0.001489,-0.001500,0.249996,0,0);-ms-transform:matrix(0.248181,0.001489,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.248181,0.001489,-0.001500,0.249996,0,0);}
.mbe_c01216{transform:matrix(0.248185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248185,0.000000,0.000000,0.250000,0,0);}
.m91_c01216{transform:matrix(0.248445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248445,0.000000,0.000000,0.250000,0,0);}
.m5_c01216{transform:matrix(0.248775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248775,0.000000,0.000000,0.250000,0,0);}
.m55_c01216{transform:matrix(0.248905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248905,0.000000,0.000000,0.250000,0,0);}
.m106_c01216{transform:matrix(0.249241,0.001495,-0.001500,0.249996,0,0);-ms-transform:matrix(0.249241,0.001495,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.249241,0.001495,-0.001500,0.249996,0,0);}
.md9_c01216{transform:matrix(0.249350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249350,0.000000,0.000000,0.250000,0,0);}
.maa_c01216{transform:matrix(0.250570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250570,0.000000,0.000000,0.250000,0,0);}
.md6_c01216{transform:matrix(0.250635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250635,0.000000,0.000000,0.250000,0,0);}
.m104_c01216{transform:matrix(0.250695,0.001504,-0.001500,0.249996,0,0);-ms-transform:matrix(0.250695,0.001504,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.250695,0.001504,-0.001500,0.249996,0,0);}
.mbb_c01216{transform:matrix(0.250700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250700,0.000000,0.000000,0.250000,0,0);}
.ma7_c01216{transform:matrix(0.251065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251065,0.000000,0.000000,0.250000,0,0);}
.m123_c01216{transform:matrix(0.251070,0.001506,-0.001500,0.249996,0,0);-ms-transform:matrix(0.251070,0.001506,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.251070,0.001506,-0.001500,0.249996,0,0);}
.m60_c01216{transform:matrix(0.251400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251400,0.000000,0.000000,0.250000,0,0);}
.m121_c01216{transform:matrix(0.251945,0.001512,-0.001500,0.249996,0,0);-ms-transform:matrix(0.251945,0.001512,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.251945,0.001512,-0.001500,0.249996,0,0);}
.m8e_c01216{transform:matrix(0.252050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252050,0.000000,0.000000,0.250000,0,0);}
.md1_c01216{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m58_c01216{transform:matrix(0.252845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252845,0.000000,0.000000,0.250000,0,0);}
.mb3_c01216{transform:matrix(0.253010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253010,0.000000,0.000000,0.250000,0,0);}
.m15_c01216{transform:matrix(0.253090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253090,0.000000,0.000000,0.250000,0,0);}
.mee_c01216{transform:matrix(0.253530,0.001521,-0.001500,0.249996,0,0);-ms-transform:matrix(0.253530,0.001521,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.253530,0.001521,-0.001500,0.249996,0,0);}
.ma9_c01216{transform:matrix(0.254635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254635,0.000000,0.000000,0.250000,0,0);}
.m14_c01216{transform:matrix(0.254830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254830,0.000000,0.000000,0.250000,0,0);}
.m96_c01216{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m6e_c01216{transform:matrix(0.255265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255265,0.000000,0.000000,0.250000,0,0);}
.ma6_c01216{transform:matrix(0.255395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255395,0.000000,0.000000,0.250000,0,0);}
.m113_c01216{transform:matrix(0.255400,0.001532,-0.001500,0.249996,0,0);-ms-transform:matrix(0.255400,0.001532,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.255400,0.001532,-0.001500,0.249996,0,0);}
.m54_c01216{transform:matrix(0.255715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255715,0.000000,0.000000,0.250000,0,0);}
.m42_c01216{transform:matrix(0.255855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255855,0.000000,0.000000,0.250000,0,0);}
.m23_c01216{transform:matrix(0.256480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256480,0.000000,0.000000,0.250000,0,0);}
.m11_c01216{transform:matrix(0.256600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256600,0.000000,0.000000,0.250000,0,0);}
.mbd_c01216{transform:matrix(0.256785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256785,0.000000,0.000000,0.250000,0,0);}
.md0_c01216{transform:matrix(0.256855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256855,0.000000,0.000000,0.250000,0,0);}
.m57_c01216{transform:matrix(0.256985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256985,0.000000,0.000000,0.250000,0,0);}
.m3e_c01216{transform:matrix(0.257180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257180,0.000000,0.000000,0.250000,0,0);}
.m13f_c01216{transform:matrix(0.257790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257790,0.000000,0.000000,0.250000,0,0);}
.m45_c01216{transform:matrix(0.257905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257905,0.000000,0.000000,0.250000,0,0);}
.me2_c01216{transform:matrix(0.257942,0.002064,-0.002000,0.249992,0,0);-ms-transform:matrix(0.257942,0.002064,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.257942,0.002064,-0.002000,0.249992,0,0);}
.m26_c01216{transform:matrix(0.257950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257950,0.000000,0.000000,0.250000,0,0);}
.m13a_c01216{transform:matrix(0.258480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258480,0.000000,0.000000,0.250000,0,0);}
.mda_c01216{transform:matrix(0.258590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258590,0.000000,0.000000,0.250000,0,0);}
.m61_c01216{transform:matrix(0.258770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258770,0.000000,0.000000,0.250000,0,0);}
.m11c_c01216{transform:matrix(0.259345,0.001556,-0.001500,0.249996,0,0);-ms-transform:matrix(0.259345,0.001556,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.259345,0.001556,-0.001500,0.249996,0,0);}
.m63_c01216{transform:matrix(0.259805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259805,0.000000,0.000000,0.250000,0,0);}
.m135_c01216{transform:matrix(0.260350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260350,0.000000,0.000000,0.250000,0,0);}
.m9d_c01216{transform:matrix(0.260465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260465,0.000000,0.000000,0.250000,0,0);}
.mdd_c01216{transform:matrix(0.261010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261010,0.000000,0.000000,0.250000,0,0);}
.m132_c01216{transform:matrix(0.261040,0.001566,-0.001500,0.249996,0,0);-ms-transform:matrix(0.261040,0.001566,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.261040,0.001566,-0.001500,0.249996,0,0);}
.m62_c01216{transform:matrix(0.261330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261330,0.000000,0.000000,0.250000,0,0);}
.m4c_c01216{transform:matrix(0.261345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261345,0.000000,0.000000,0.250000,0,0);}
.m1e_c01216{transform:matrix(0.261395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261395,0.000000,0.000000,0.250000,0,0);}
.mc1_c01216{transform:matrix(0.261980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261980,0.000000,0.000000,0.250000,0,0);}
.m6c_c01216{transform:matrix(0.262355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262355,0.000000,0.000000,0.250000,0,0);}
.m56_c01216{transform:matrix(0.262475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262475,0.000000,0.000000,0.250000,0,0);}
.m21_c01216{transform:matrix(0.263180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263180,0.000000,0.000000,0.250000,0,0);}
.m94_c01216{transform:matrix(0.263475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263475,0.000000,0.000000,0.250000,0,0);}
.m35_c01216{transform:matrix(0.263535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263535,0.000000,0.000000,0.250000,0,0);}
.m11e_c01216{transform:matrix(0.263725,0.001582,-0.001500,0.249996,0,0);-ms-transform:matrix(0.263725,0.001582,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.263725,0.001582,-0.001500,0.249996,0,0);}
.m127_c01216{transform:matrix(0.263755,0.001583,-0.001500,0.249996,0,0);-ms-transform:matrix(0.263755,0.001583,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.263755,0.001583,-0.001500,0.249996,0,0);}
.mac_c01216{transform:matrix(0.263920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263920,0.000000,0.000000,0.250000,0,0);}
.m99_c01216{transform:matrix(0.263950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263950,0.000000,0.000000,0.250000,0,0);}
.m41_c01216{transform:matrix(0.264560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264560,0.000000,0.000000,0.250000,0,0);}
.me9_c01216{transform:matrix(0.265282,0.002122,-0.002000,0.249992,0,0);-ms-transform:matrix(0.265282,0.002122,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.265282,0.002122,-0.002000,0.249992,0,0);}
.m81_c01216{transform:matrix(0.265515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265515,0.000000,0.000000,0.250000,0,0);}
.m13c_c01216{transform:matrix(0.265580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265580,0.000000,0.000000,0.250000,0,0);}
.m71_c01216{transform:matrix(0.265650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265650,0.000000,0.000000,0.250000,0,0);}
.m5b_c01216{transform:matrix(0.266270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266270,0.000000,0.000000,0.250000,0,0);}
.m66_c01216{transform:matrix(0.266605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266605,0.000000,0.000000,0.250000,0,0);}
.m10f_c01216{transform:matrix(0.267300,0.001604,-0.001500,0.249996,0,0);-ms-transform:matrix(0.267300,0.001604,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.267300,0.001604,-0.001500,0.249996,0,0);}
.m30_c01216{transform:matrix(0.267735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267735,0.000000,0.000000,0.250000,0,0);}
.m7b_c01216{transform:matrix(0.267910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267910,0.000000,0.000000,0.250000,0,0);}
.m133_c01216{transform:matrix(0.268030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268030,0.000000,0.000000,0.250000,0,0);}
.m33_c01216{transform:matrix(0.268225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268225,0.000000,0.000000,0.250000,0,0);}
.m9f_c01216{transform:matrix(0.268495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268495,0.000000,0.000000,0.250000,0,0);}
.m139_c01216{transform:matrix(0.268830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268830,0.000000,0.000000,0.250000,0,0);}
.m9a_c01216{transform:matrix(0.268985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268985,0.000000,0.000000,0.250000,0,0);}
.m64_c01216{transform:matrix(0.269200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269200,0.000000,0.000000,0.250000,0,0);}
.m130_c01216{transform:matrix(0.269570,0.001617,-0.001500,0.249996,0,0);-ms-transform:matrix(0.269570,0.001617,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.269570,0.001617,-0.001500,0.249996,0,0);}
.m110_c01216{transform:matrix(0.270060,0.001620,-0.001500,0.249996,0,0);-ms-transform:matrix(0.270060,0.001620,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.270060,0.001620,-0.001500,0.249996,0,0);}
.m79_c01216{transform:matrix(0.270695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270695,0.000000,0.000000,0.250000,0,0);}
.m29_c01216{transform:matrix(0.271865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271865,0.000000,0.000000,0.250000,0,0);}
.mdf_c01216{transform:matrix(0.272905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272905,0.000000,0.000000,0.250000,0,0);}
.mf_c01216{transform:matrix(0.272950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272950,0.000000,0.000000,0.250000,0,0);}
.m11f_c01216{transform:matrix(0.273065,0.001638,-0.001500,0.249996,0,0);-ms-transform:matrix(0.273065,0.001638,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.273065,0.001638,-0.001500,0.249996,0,0);}
.m7d_c01216{transform:matrix(0.273315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273315,0.000000,0.000000,0.250000,0,0);}
.m137_c01216{transform:matrix(0.273460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273460,0.000000,0.000000,0.250000,0,0);}
.m7_c01216{transform:matrix(0.273905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273905,0.000000,0.000000,0.250000,0,0);}
.m4e_c01216{transform:matrix(0.274450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274450,0.000000,0.000000,0.250000,0,0);}
.md7_c01216{transform:matrix(0.274505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274505,0.000000,0.000000,0.250000,0,0);}
.m12e_c01216{transform:matrix(0.274540,0.001647,-0.001500,0.249996,0,0);-ms-transform:matrix(0.274540,0.001647,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.274540,0.001647,-0.001500,0.249996,0,0);}
.mfe_c01216{transform:matrix(0.275165,0.001651,-0.001500,0.249996,0,0);-ms-transform:matrix(0.275165,0.001651,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.275165,0.001651,-0.001500,0.249996,0,0);}
.m8_c01216{transform:matrix(0.275225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275225,0.000000,0.000000,0.250000,0,0);}
.m9_c01216{transform:matrix(0.275475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275475,0.000000,0.000000,0.250000,0,0);}
.m12c_c01216{transform:matrix(0.275660,0.001654,-0.001500,0.249996,0,0);-ms-transform:matrix(0.275660,0.001654,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.275660,0.001654,-0.001500,0.249996,0,0);}
.m108_c01216{transform:matrix(0.275760,0.001655,-0.001500,0.249996,0,0);-ms-transform:matrix(0.275760,0.001655,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.275760,0.001655,-0.001500,0.249996,0,0);}
.m4f_c01216{transform:matrix(0.276010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276010,0.000000,0.000000,0.250000,0,0);}
.m36_c01216{transform:matrix(0.276175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276175,0.000000,0.000000,0.250000,0,0);}
.maf_c01216{transform:matrix(0.276355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276355,0.000000,0.000000,0.250000,0,0);}
.m11a_c01216{transform:matrix(0.276465,0.001659,-0.001500,0.249996,0,0);-ms-transform:matrix(0.276465,0.001659,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.276465,0.001659,-0.001500,0.249996,0,0);}
.m12a_c01216{transform:matrix(0.276485,0.001659,-0.001500,0.249996,0,0);-ms-transform:matrix(0.276485,0.001659,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.276485,0.001659,-0.001500,0.249996,0,0);}
.m2b_c01216{transform:matrix(0.276510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276510,0.000000,0.000000,0.250000,0,0);}
.m7c_c01216{transform:matrix(0.277495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277495,0.000000,0.000000,0.250000,0,0);}
.meb_c01216{transform:matrix(0.277941,0.002224,-0.002000,0.249992,0,0);-ms-transform:matrix(0.277941,0.002224,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.277941,0.002224,-0.002000,0.249992,0,0);}
.m8f_c01216{transform:matrix(0.278190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278190,0.000000,0.000000,0.250000,0,0);}
.m114_c01216{transform:matrix(0.278420,0.001671,-0.001500,0.249996,0,0);-ms-transform:matrix(0.278420,0.001671,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.278420,0.001671,-0.001500,0.249996,0,0);}
.m10c_c01216{transform:matrix(0.278825,0.001673,-0.001500,0.249996,0,0);-ms-transform:matrix(0.278825,0.001673,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.278825,0.001673,-0.001500,0.249996,0,0);}
.m86_c01216{transform:matrix(0.278885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278885,0.000000,0.000000,0.250000,0,0);}
.mb8_c01216{transform:matrix(0.279165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279165,0.000000,0.000000,0.250000,0,0);}
.m144_c01216{transform:matrix(0.280235,0.004764,-0.004249,0.249964,0,0);-ms-transform:matrix(0.280235,0.004764,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.280235,0.004764,-0.004249,0.249964,0,0);}
.m102_c01216{transform:matrix(0.280690,0.001684,-0.001500,0.249996,0,0);-ms-transform:matrix(0.280690,0.001684,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.280690,0.001684,-0.001500,0.249996,0,0);}
.m70_c01216{transform:matrix(0.280800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280800,0.000000,0.000000,0.250000,0,0);}
.m69_c01216{transform:matrix(0.280825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280825,0.000000,0.000000,0.250000,0,0);}
.m39_c01216{transform:matrix(0.281020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281020,0.000000,0.000000,0.250000,0,0);}
.m4b_c01216{transform:matrix(0.281795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281795,0.000000,0.000000,0.250000,0,0);}
.mb5_c01216{transform:matrix(0.284035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284035,0.000000,0.000000,0.250000,0,0);}
.m67_c01216{transform:matrix(0.284210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284210,0.000000,0.000000,0.250000,0,0);}
.m93_c01216{transform:matrix(0.284930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284930,0.000000,0.000000,0.250000,0,0);}
.m52_c01216{transform:matrix(0.285625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285625,0.000000,0.000000,0.250000,0,0);}
.mb1_c01216{transform:matrix(0.286335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286335,0.000000,0.000000,0.250000,0,0);}
.m34_c01216{transform:matrix(0.287625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287625,0.000000,0.000000,0.250000,0,0);}
.mfb_c01216{transform:matrix(0.289245,0.001735,-0.001500,0.249996,0,0);-ms-transform:matrix(0.289245,0.001735,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.289245,0.001735,-0.001500,0.249996,0,0);}
.m115_c01216{transform:matrix(0.289435,0.001737,-0.001500,0.249996,0,0);-ms-transform:matrix(0.289435,0.001737,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.289435,0.001737,-0.001500,0.249996,0,0);}
.m4_c01216{transform:matrix(0.289915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289915,0.000000,0.000000,0.250000,0,0);}
.m40_c01216{transform:matrix(0.290895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290895,0.000000,0.000000,0.250000,0,0);}
.mcf_c01216{transform:matrix(0.291325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291325,0.000000,0.000000,0.250000,0,0);}
.mb7_c01216{transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);}
.m8d_c01216{transform:matrix(0.292265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292265,0.000000,0.000000,0.250000,0,0);}
.m2f_c01216{transform:matrix(0.292760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292760,0.000000,0.000000,0.250000,0,0);}
.m46_c01216{transform:matrix(0.293470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293470,0.000000,0.000000,0.250000,0,0);}
.m4d_c01216{transform:matrix(0.294300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294300,0.000000,0.000000,0.250000,0,0);}
.m3a_c01216{transform:matrix(0.294580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294580,0.000000,0.000000,0.250000,0,0);}
.m38_c01216{transform:matrix(0.295380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295380,0.000000,0.000000,0.250000,0,0);}
.m90_c01216{transform:matrix(0.296175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296175,0.000000,0.000000,0.250000,0,0);}
.m25_c01216{transform:matrix(0.296210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296210,0.000000,0.000000,0.250000,0,0);}
.m2e_c01216{transform:matrix(0.296705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296705,0.000000,0.000000,0.250000,0,0);}
.m24_c01216{transform:matrix(0.296960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296960,0.000000,0.000000,0.250000,0,0);}
.mcb_c01216{transform:matrix(0.296985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296985,0.000000,0.000000,0.250000,0,0);}
.m109_c01216{transform:matrix(0.297035,0.001782,-0.001500,0.249996,0,0);-ms-transform:matrix(0.297035,0.001782,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.297035,0.001782,-0.001500,0.249996,0,0);}
.mce_c01216{transform:matrix(0.297080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297080,0.000000,0.000000,0.250000,0,0);}
.mff_c01216{transform:matrix(0.297595,0.001786,-0.001500,0.249996,0,0);-ms-transform:matrix(0.297595,0.001786,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.297595,0.001786,-0.001500,0.249996,0,0);}
.m50_c01216{transform:matrix(0.297845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297845,0.000000,0.000000,0.250000,0,0);}
.mc8_c01216{transform:matrix(0.297915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297915,0.000000,0.000000,0.250000,0,0);}
.m32_c01216{transform:matrix(0.298030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298030,0.000000,0.000000,0.250000,0,0);}
.m43_c01216{transform:matrix(0.298295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298295,0.000000,0.000000,0.250000,0,0);}
.m8b_c01216{transform:matrix(0.298685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298685,0.000000,0.000000,0.250000,0,0);}
.ma_c01216{transform:matrix(0.298760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298760,0.000000,0.000000,0.250000,0,0);}
.m6d_c01216{transform:matrix(0.298830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298830,0.000000,0.000000,0.250000,0,0);}
.m9e_c01216{transform:matrix(0.298835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298835,0.000000,0.000000,0.250000,0,0);}
.mca_c01216{transform:matrix(0.299185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299185,0.000000,0.000000,0.250000,0,0);}
.mfc_c01216{transform:matrix(0.299335,0.001796,-0.001500,0.249996,0,0);-ms-transform:matrix(0.299335,0.001796,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.299335,0.001796,-0.001500,0.249996,0,0);}
.mb2_c01216{transform:matrix(0.299415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299415,0.000000,0.000000,0.250000,0,0);}
.m6b_c01216{transform:matrix(0.299555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299555,0.000000,0.000000,0.250000,0,0);}
.m6f_c01216{transform:matrix(0.299775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299775,0.000000,0.000000,0.250000,0,0);}
.m119_c01216{transform:matrix(0.300590,0.001804,-0.001500,0.249996,0,0);-ms-transform:matrix(0.300590,0.001804,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.300590,0.001804,-0.001500,0.249996,0,0);}
.m47_c01216{transform:matrix(0.302010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302010,0.000000,0.000000,0.250000,0,0);}
.m92_c01216{transform:matrix(0.302235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302235,0.000000,0.000000,0.250000,0,0);}
.m117_c01216{transform:matrix(0.302680,0.001816,-0.001500,0.249996,0,0);-ms-transform:matrix(0.302680,0.001816,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.302680,0.001816,-0.001500,0.249996,0,0);}
.m74_c01216{transform:matrix(0.302800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302800,0.000000,0.000000,0.250000,0,0);}
.m7a_c01216{transform:matrix(0.303450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303450,0.000000,0.000000,0.250000,0,0);}
.m72_c01216{transform:matrix(0.304145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304145,0.000000,0.000000,0.250000,0,0);}
.m77_c01216{transform:matrix(0.305710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305710,0.000000,0.000000,0.250000,0,0);}
.m97_c01216{transform:matrix(0.305855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305855,0.000000,0.000000,0.250000,0,0);}
.m95_c01216{transform:matrix(0.306190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306190,0.000000,0.000000,0.250000,0,0);}
.mc3_c01216{transform:matrix(0.306665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306665,0.000000,0.000000,0.250000,0,0);}
.m146_c01216{transform:matrix(0.307081,0.005220,-0.004249,0.249964,0,0);-ms-transform:matrix(0.307081,0.005220,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.307081,0.005220,-0.004249,0.249964,0,0);}
.me8_c01216{transform:matrix(0.308460,0.002468,-0.002000,0.249992,0,0);-ms-transform:matrix(0.308460,0.002468,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.308460,0.002468,-0.002000,0.249992,0,0);}
.md2_c01216{transform:matrix(0.309565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309565,0.000000,0.000000,0.250000,0,0);}
.m7e_c01216{transform:matrix(0.309820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309820,0.000000,0.000000,0.250000,0,0);}
.mb_c01216{transform:matrix(0.309970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309970,0.000000,0.000000,0.250000,0,0);}
.me3_c01216{transform:matrix(0.310015,0.002480,-0.002000,0.249992,0,0);-ms-transform:matrix(0.310015,0.002480,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.310015,0.002480,-0.002000,0.249992,0,0);}
.ma0_c01216{transform:matrix(0.310270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310270,0.000000,0.000000,0.250000,0,0);}
.m101_c01216{transform:matrix(0.310719,0.001864,-0.001500,0.249996,0,0);-ms-transform:matrix(0.310719,0.001864,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.310719,0.001864,-0.001500,0.249996,0,0);}
.mc5_c01216{transform:matrix(0.312585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312585,0.000000,0.000000,0.250000,0,0);}
.m10d_c01216{transform:matrix(0.312749,0.001876,-0.001500,0.249996,0,0);-ms-transform:matrix(0.312749,0.001876,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.312749,0.001876,-0.001500,0.249996,0,0);}
.ma2_c01216{transform:matrix(0.312945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312945,0.000000,0.000000,0.250000,0,0);}
.ma3_c01216{transform:matrix(0.313720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313720,0.000000,0.000000,0.250000,0,0);}
.m48_c01216{transform:matrix(0.314030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314030,0.000000,0.000000,0.250000,0,0);}
.ma1_c01216{transform:matrix(0.314530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314530,0.000000,0.000000,0.250000,0,0);}
.mc4_c01216{transform:matrix(0.315105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315105,0.000000,0.000000,0.250000,0,0);}
.m76_c01216{transform:matrix(0.316195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316195,0.000000,0.000000,0.250000,0,0);}
.mec_c01216{transform:matrix(0.318205,0.002546,-0.002000,0.249992,0,0);-ms-transform:matrix(0.318205,0.002546,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.318205,0.002546,-0.002000,0.249992,0,0);}
.mb4_c01216{transform:matrix(0.318885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318885,0.000000,0.000000,0.250000,0,0);}
.m116_c01216{transform:matrix(0.320954,0.001926,-0.001500,0.249996,0,0);-ms-transform:matrix(0.320954,0.001926,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.320954,0.001926,-0.001500,0.249996,0,0);}
.m89_c01216{transform:matrix(0.321945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321945,0.000000,0.000000,0.250000,0,0);}
.m73_c01216{transform:matrix(0.322450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322450,0.000000,0.000000,0.250000,0,0);}
.me6_c01216{transform:matrix(0.323040,0.002584,-0.002000,0.249992,0,0);-ms-transform:matrix(0.323040,0.002584,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.323040,0.002584,-0.002000,0.249992,0,0);}
.me1_c01216{transform:matrix(0.323200,0.002586,-0.002000,0.249992,0,0);-ms-transform:matrix(0.323200,0.002586,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.323200,0.002586,-0.002000,0.249992,0,0);}
.m147_c01216{transform:matrix(0.323383,0.005498,-0.004249,0.249964,0,0);-ms-transform:matrix(0.323383,0.005498,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.323383,0.005498,-0.004249,0.249964,0,0);}
.m85_c01216{transform:matrix(0.323425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323425,0.000000,0.000000,0.250000,0,0);}
.m80_c01216{transform:matrix(0.324135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324135,0.000000,0.000000,0.250000,0,0);}
.m20_c01216{transform:matrix(0.324595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324595,0.000000,0.000000,0.250000,0,0);}
.md3_c01216{transform:matrix(0.325675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325675,0.000000,0.000000,0.250000,0,0);}
.mcc_c01216{transform:matrix(0.325960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325960,0.000000,0.000000,0.250000,0,0);}
.mc0_c01216{transform:matrix(0.327275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327275,0.000000,0.000000,0.250000,0,0);}
.mbf_c01216{transform:matrix(0.328395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328395,0.000000,0.000000,0.250000,0,0);}
.m1f_c01216{transform:matrix(0.328650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328650,0.000000,0.000000,0.250000,0,0);}
.mb9_c01216{transform:matrix(0.328715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328715,0.000000,0.000000,0.250000,0,0);}
.m1d_c01216{transform:matrix(0.330190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330190,0.000000,0.000000,0.250000,0,0);}
.m22_c01216{transform:matrix(0.333350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333350,0.000000,0.000000,0.250000,0,0);}
.m31_c01216{transform:matrix(0.333600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333600,0.000000,0.000000,0.250000,0,0);}
.m27_c01216{transform:matrix(0.334510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334510,0.000000,0.000000,0.250000,0,0);}
.m78_c01216{transform:matrix(0.336275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336275,0.000000,0.000000,0.250000,0,0);}
.me7_c01216{transform:matrix(0.340889,0.002727,-0.002000,0.249992,0,0);-ms-transform:matrix(0.340889,0.002727,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.340889,0.002727,-0.002000,0.249992,0,0);}
.mf4_c01216{transform:matrix(0.343134,0.002059,-0.001500,0.249996,0,0);-ms-transform:matrix(0.343134,0.002059,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.343134,0.002059,-0.001500,0.249996,0,0);}
.m3_c01216{transform:matrix(0.347505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347505,0.000000,0.000000,0.250000,0,0);}
.mea_c01216{transform:matrix(0.350284,0.002802,-0.002000,0.249992,0,0);-ms-transform:matrix(0.350284,0.002802,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.350284,0.002802,-0.002000,0.249992,0,0);}
.m8c_c01216{transform:matrix(0.351455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351455,0.000000,0.000000,0.250000,0,0);}
.m10b_c01216{transform:matrix(0.353034,0.002118,-0.001500,0.249996,0,0);-ms-transform:matrix(0.353034,0.002118,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.353034,0.002118,-0.001500,0.249996,0,0);}
.m88_c01216{transform:matrix(0.356115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356115,0.000000,0.000000,0.250000,0,0);}
.m83_c01216{transform:matrix(0.356485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356485,0.000000,0.000000,0.250000,0,0);}
.mcd_c01216{transform:matrix(0.362800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362800,0.000000,0.000000,0.250000,0,0);}
.mc7_c01216{transform:matrix(0.381340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381340,0.000000,0.000000,0.250000,0,0);}
.m9b_c01216{transform:matrix(0.384010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384010,0.000000,0.000000,0.250000,0,0);}
.m4a_c01216{transform:matrix(0.404130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404130,0.000000,0.000000,0.250000,0,0);}
.m53_c01216{transform:matrix(0.406910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406910,0.000000,0.000000,0.250000,0,0);}
.m8a_c01216{transform:matrix(0.447040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447040,0.000000,0.000000,0.250000,0,0);}
.m49_c01216{transform:matrix(0.453525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453525,0.000000,0.000000,0.250000,0,0);}
.m3c_c01216{transform:matrix(0.480230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480230,0.000000,0.000000,0.250000,0,0);}
.mba_c01216{transform:matrix(0.501765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.501765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.501765,0.000000,0.000000,0.250000,0,0);}
.m87_c01216{transform:matrix(0.635950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.635950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.635950,0.000000,0.000000,0.250000,0,0);}
.m82_c01216{transform:matrix(0.929790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.929790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.929790,0.000000,0.000000,0.250000,0,0);}
.mf9_c01216{transform:matrix(1.148329,0.006890,-0.001500,0.249996,0,0);-ms-transform:matrix(1.148329,0.006890,-0.001500,0.249996,0,0);-webkit-transform:matrix(1.148329,0.006890,-0.001500,0.249996,0,0);}
.v0_c01216{vertical-align:0.000000px;}
.ls0_c01216{letter-spacing:0.000000px;}
.sc__c01216{text-shadow:none;}
.sc0_c01216{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__c01216{-webkit-text-stroke:0px transparent;}
.sc0_c01216{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01216{word-spacing:0.000000px;}
.fc0_c01216{color:transparent;}
.fs2_c01216{font-size:60.000000px;}
.fs4_c01216{font-size:60.001920px;}
.fs3_c01216{font-size:66.000000px;}
.fs6_c01216{font-size:66.001188px;}
.fs0_c01216{font-size:72.000000px;}
.fs7_c01216{font-size:72.001296px;}
.fs1_c01216{font-size:78.000000px;}
.fs5_c01216{font-size:78.001404px;}
.fs8_c01216{font-size:84.012137px;}
.fs9_c01216{font-size:102.014738px;}
.y0_c01216{bottom:0.000000px;}
.yfc_c01216{bottom:60.115014px;}
.yfb_c01216{bottom:60.593098px;}
.yfa_c01216{bottom:60.936693px;}
.yf9_c01216{bottom:61.419933px;}
.yf8_c01216{bottom:63.596691px;}
.yf7_c01216{bottom:64.074571px;}
.yf6_c01216{bottom:64.572733px;}
.yf5_c01216{bottom:65.876484px;}
.yf4_c01216{bottom:94.493254px;}
.yf3_c01216{bottom:95.420460px;}
.yf2_c01216{bottom:96.366408px;}
.yf1_c01216{bottom:96.935083px;}
.yf0_c01216{bottom:97.283873px;}
.yef_c01216{bottom:98.064529px;}
.yee_c01216{bottom:98.411610px;}
.yed_c01216{bottom:98.772766px;}
.yec_c01216{bottom:100.144666px;}
.yeb_c01216{bottom:100.599332px;}
.yea_c01216{bottom:102.333000px;}
.ye9_c01216{bottom:131.556000px;}
.ye8_c01216{bottom:132.157500px;}
.ye7_c01216{bottom:132.642000px;}
.ye6_c01216{bottom:133.233000px;}
.ye5_c01216{bottom:134.718000px;}
.ye4_c01216{bottom:135.069000px;}
.ye3_c01216{bottom:136.621500px;}
.ye2_c01216{bottom:183.523500px;}
.ye1_c01216{bottom:216.025776px;}
.ye0_c01216{bottom:216.532893px;}
.ydf_c01216{bottom:217.857768px;}
.yde_c01216{bottom:218.517621px;}
.ydd_c01216{bottom:218.845323px;}
.ydc_c01216{bottom:220.368312px;}
.ydb_c01216{bottom:220.675599px;}
.yda_c01216{bottom:222.336114px;}
.yd9_c01216{bottom:222.818367px;}
.yd8_c01216{bottom:224.310765px;}
.yd7_c01216{bottom:224.628039px;}
.yd6_c01216{bottom:225.446022px;}
.yd5_c01216{bottom:253.027908px;}
.yd4_c01216{bottom:253.470471px;}
.yd3_c01216{bottom:254.024760px;}
.yd2_c01216{bottom:254.241495px;}
.yd1_c01216{bottom:254.908725px;}
.yd0_c01216{bottom:255.129768px;}
.ycf_c01216{bottom:255.681018px;}
.yce_c01216{bottom:256.023213px;}
.ycd_c01216{bottom:256.998483px;}
.ycc_c01216{bottom:257.876991px;}
.ycb_c01216{bottom:258.206586px;}
.yca_c01216{bottom:258.862872px;}
.yc9_c01216{bottom:259.193979px;}
.yc8_c01216{bottom:287.693886px;}
.yc7_c01216{bottom:288.253275px;}
.yc6_c01216{bottom:288.571296px;}
.yc5_c01216{bottom:290.007897px;}
.yc4_c01216{bottom:290.686674px;}
.yc3_c01216{bottom:291.353418px;}
.yc2_c01216{bottom:292.117725px;}
.yc1_c01216{bottom:292.455198px;}
.yc0_c01216{bottom:292.765827px;}
.ybf_c01216{bottom:293.308911px;}
.ybe_c01216{bottom:294.298317px;}
.ybd_c01216{bottom:323.209590px;}
.ybc_c01216{bottom:323.481981px;}
.ybb_c01216{bottom:325.062501px;}
.yba_c01216{bottom:325.864068px;}
.yb9_c01216{bottom:326.265966px;}
.yb8_c01216{bottom:326.664474px;}
.yb7_c01216{bottom:327.847071px;}
.yb6_c01216{bottom:328.767606px;}
.yb5_c01216{bottom:329.175789px;}
.yb4_c01216{bottom:329.703822px;}
.yb3_c01216{bottom:330.225345px;}
.yb2_c01216{bottom:330.624186px;}
.yb1_c01216{bottom:331.019727px;}
.yb0_c01216{bottom:357.959394px;}
.yaf_c01216{bottom:358.375932px;}
.yae_c01216{bottom:358.565220px;}
.yad_c01216{bottom:359.159922px;}
.yac_c01216{bottom:359.560053px;}
.yab_c01216{bottom:359.820783px;}
.yaa_c01216{bottom:360.488358px;}
.ya9_c01216{bottom:361.006803px;}
.ya8_c01216{bottom:361.246392px;}
.ya7_c01216{bottom:361.798902px;}
.ya6_c01216{bottom:395.565165px;}
.ya5_c01216{bottom:395.963982px;}
.ya4_c01216{bottom:396.299106px;}
.ya3_c01216{bottom:396.506502px;}
.ya2_c01216{bottom:396.942777px;}
.ya1_c01216{bottom:397.363482px;}
.ya0_c01216{bottom:397.556262px;}
.y9f_c01216{bottom:397.888416px;}
.y9e_c01216{bottom:398.342385px;}
.y9d_c01216{bottom:398.542806px;}
.y9c_c01216{bottom:398.742138px;}
.y9b_c01216{bottom:399.140676px;}
.y9a_c01216{bottom:399.330000px;}
.y99_c01216{bottom:430.310244px;}
.y98_c01216{bottom:430.565028px;}
.y97_c01216{bottom:431.366484px;}
.y96_c01216{bottom:431.711940px;}
.y95_c01216{bottom:432.161604px;}
.y94_c01216{bottom:432.956736px;}
.y93_c01216{bottom:433.738236px;}
.y92_c01216{bottom:434.010468px;}
.y91_c01216{bottom:434.273784px;}
.y90_c01216{bottom:434.721492px;}
.y8f_c01216{bottom:434.975892px;}
.y8e_c01216{bottom:435.511500px;}
.y8d_c01216{bottom:467.586000px;}
.y8c_c01216{bottom:500.904000px;}
.y8b_c01216{bottom:501.756000px;}
.y8a_c01216{bottom:502.111500px;}
.y89_c01216{bottom:502.467000px;}
.y88_c01216{bottom:502.813500px;}
.y87_c01216{bottom:503.449500px;}
.y86_c01216{bottom:503.611500px;}
.y85_c01216{bottom:504.336000px;}
.y84_c01216{bottom:504.595500px;}
.y83_c01216{bottom:505.213500px;}
.y82_c01216{bottom:505.555500px;}
.y81_c01216{bottom:506.248500px;}
.y80_c01216{bottom:536.338500px;}
.y7f_c01216{bottom:536.575500px;}
.y7e_c01216{bottom:537.351000px;}
.y7d_c01216{bottom:537.507000px;}
.y7c_c01216{bottom:538.267500px;}
.y7b_c01216{bottom:538.513500px;}
.y7a_c01216{bottom:538.890000px;}
.y79_c01216{bottom:539.068500px;}
.y78_c01216{bottom:539.670000px;}
.y77_c01216{bottom:539.968500px;}
.y76_c01216{bottom:540.283500px;}
.y75_c01216{bottom:540.583500px;}
.y74_c01216{bottom:540.808500px;}
.y73_c01216{bottom:573.222000px;}
.y72_c01216{bottom:573.286500px;}
.y71_c01216{bottom:573.699000px;}
.y70_c01216{bottom:573.973500px;}
.y6f_c01216{bottom:574.465500px;}
.y6e_c01216{bottom:574.633500px;}
.y6d_c01216{bottom:575.064000px;}
.y6c_c01216{bottom:575.295000px;}
.y6b_c01216{bottom:575.512500px;}
.y6a_c01216{bottom:576.063000px;}
.y69_c01216{bottom:576.448500px;}
.y68_c01216{bottom:609.115500px;}
.y67_c01216{bottom:609.285000px;}
.y66_c01216{bottom:609.616500px;}
.y65_c01216{bottom:609.789000px;}
.y64_c01216{bottom:610.108500px;}
.y63_c01216{bottom:610.276500px;}
.y62_c01216{bottom:610.662000px;}
.y61_c01216{bottom:610.915500px;}
.y60_c01216{bottom:611.031000px;}
.y5f_c01216{bottom:611.266500px;}
.y5e_c01216{bottom:611.923500px;}
.y5d_c01216{bottom:612.142500px;}
.y5c_c01216{bottom:612.357000px;}
.y5b_c01216{bottom:642.708000px;}
.y5a_c01216{bottom:643.066500px;}
.y59_c01216{bottom:643.600500px;}
.y58_c01216{bottom:644.128500px;}
.y57_c01216{bottom:644.307000px;}
.y56_c01216{bottom:644.835000px;}
.y55_c01216{bottom:645.103500px;}
.y54_c01216{bottom:645.456000px;}
.y53_c01216{bottom:645.976500px;}
.y52_c01216{bottom:646.336500px;}
.y51_c01216{bottom:646.605000px;}
.y50_c01216{bottom:647.121000px;}
.y4f_c01216{bottom:647.298000px;}
.y4e_c01216{bottom:647.745000px;}
.y4d_c01216{bottom:648.000000px;}
.y4c_c01216{bottom:677.734500px;}
.y4b_c01216{bottom:677.958000px;}
.y4a_c01216{bottom:678.736500px;}
.y49_c01216{bottom:679.854000px;}
.y48_c01216{bottom:680.280000px;}
.y47_c01216{bottom:681.072000px;}
.y46_c01216{bottom:681.712500px;}
.y45_c01216{bottom:682.050000px;}
.y44_c01216{bottom:682.833000px;}
.y43_c01216{bottom:714.160500px;}
.y42_c01216{bottom:714.549000px;}
.y41_c01216{bottom:714.816000px;}
.y40_c01216{bottom:715.015500px;}
.y3f_c01216{bottom:715.614000px;}
.y3e_c01216{bottom:716.002500px;}
.y3d_c01216{bottom:716.205000px;}
.y3c_c01216{bottom:716.401500px;}
.y3b_c01216{bottom:716.989500px;}
.y3a_c01216{bottom:717.186000px;}
.y39_c01216{bottom:717.391500px;}
.y38_c01216{bottom:748.858500px;}
.y37_c01216{bottom:749.361000px;}
.y36_c01216{bottom:749.586000px;}
.y35_c01216{bottom:749.745000px;}
.y34_c01216{bottom:749.859000px;}
.y33_c01216{bottom:750.135000px;}
.y32_c01216{bottom:750.409500px;}
.y31_c01216{bottom:750.574500px;}
.y30_c01216{bottom:750.790500px;}
.y2f_c01216{bottom:750.961500px;}
.y2e_c01216{bottom:751.132500px;}
.y2d_c01216{bottom:751.678500px;}
.y2c_c01216{bottom:751.950000px;}
.y2b_c01216{bottom:784.966500px;}
.y2a_c01216{bottom:785.298000px;}
.y29_c01216{bottom:785.766000px;}
.y28_c01216{bottom:785.956500px;}
.y27_c01216{bottom:786.484500px;}
.y26_c01216{bottom:786.949500px;}
.y25_c01216{bottom:787.350000px;}
.y24_c01216{bottom:787.479000px;}
.y23_c01216{bottom:787.806000px;}
.y22_c01216{bottom:788.205000px;}
.y21_c01216{bottom:788.398500px;}
.y20_c01216{bottom:821.322000px;}
.y1f_c01216{bottom:856.956000px;}
.y1e_c01216{bottom:857.370000px;}
.y1d_c01216{bottom:857.602500px;}
.y1c_c01216{bottom:857.986500px;}
.y1b_c01216{bottom:858.219000px;}
.y1a_c01216{bottom:858.450000px;}
.y19_c01216{bottom:858.703500px;}
.y18_c01216{bottom:859.075500px;}
.y17_c01216{bottom:859.302000px;}
.y16_c01216{bottom:859.755000px;}
.y15_c01216{bottom:860.295000px;}
.y14_c01216{bottom:860.835000px;}
.y13_c01216{bottom:861.298500px;}
.y12_c01216{bottom:892.131000px;}
.y11_c01216{bottom:927.543000px;}
.y10_c01216{bottom:962.394000px;}
.yf_c01216{bottom:996.934500px;}
.ye_c01216{bottom:1033.375500px;}
.yd_c01216{bottom:1067.494500px;}
.yc_c01216{bottom:1067.757000px;}
.yb_c01216{bottom:1068.010500px;}
.ya_c01216{bottom:1068.432000px;}
.y9_c01216{bottom:1068.633000px;}
.y8_c01216{bottom:1068.963000px;}
.y7_c01216{bottom:1069.228500px;}
.y6_c01216{bottom:1069.891500px;}
.y5_c01216{bottom:1070.557500px;}
.y4_c01216{bottom:1070.820000px;}
.y3_c01216{bottom:1104.051000px;}
.y2_c01216{bottom:1137.972000px;}
.y1_c01216{bottom:1195.558500px;}
.h4_c01216{height:60.000000px;}
.h6_c01216{height:60.001920px;}
.h5_c01216{height:66.000000px;}
.h8_c01216{height:66.001188px;}
.h2_c01216{height:72.000000px;}
.h9_c01216{height:72.001296px;}
.h3_c01216{height:78.000000px;}
.h7_c01216{height:78.001404px;}
.ha_c01216{height:84.012137px;}
.hb_c01216{height:102.014738px;}
.h1_c01216{height:1258.500000px;}
.h0_c01216{height:1258.740000px;}
.w0_c01216{width:904.200000px;}
.w1_c01216{width:904.500000px;}
.x0_c01216{left:0.000000px;}
.x1a_c01216{left:139.050000px;}
.x7c_c01216{left:148.405500px;}
.x35_c01216{left:149.580000px;}
.x4_c01216{left:151.200000px;}
.x2f_c01216{left:152.280000px;}
.x4a_c01216{left:182.712000px;}
.x54_c01216{left:184.083000px;}
.x5_c01216{left:195.210000px;}
.x4f_c01216{left:204.046500px;}
.x30_c01216{left:205.470000px;}
.x7d_c01216{left:215.356500px;}
.x40_c01216{left:216.720000px;}
.x6d_c01216{left:225.886500px;}
.x1b_c01216{left:227.070000px;}
.x72_c01216{left:236.677500px;}
.xf_c01216{left:238.950000px;}
.x84_c01216{left:242.384820px;}
.x45_c01216{left:247.858500px;}
.x4b_c01216{left:249.123000px;}
.x36_c01216{left:250.830000px;}
.x90_c01216{left:252.192000px;}
.x59_c01216{left:258.253500px;}
.x13_c01216{left:259.395000px;}
.x6e_c01216{left:270.993000px;}
.x73_c01216{left:279.519000px;}
.x37_c01216{left:282.150000px;}
.x46_c01216{left:291.868500px;}
.x29_c01216{left:293.490000px;}
.x14_c01216{left:303.109500px;}
.x50_c01216{left:313.104000px;}
.x55_c01216{left:314.755500px;}
.x8f_c01216{left:323.293500px;}
.x38_c01216{left:325.080000px;}
.x24_c01216{left:326.970000px;}
.x88_c01216{left:334.924419px;}
.x5a_c01216{left:336.535500px;}
.x10_c01216{left:338.040000px;}
.x51_c01216{left:347.415000px;}
.x6_c01216{left:349.380000px;}
.x74_c01216{left:356.760000px;}
.x5d_c01216{left:358.201500px;}
.x2a_c01216{left:359.640000px;}
.x11_c01216{left:369.630000px;}
.x1c_c01216{left:371.250000px;}
.x68_c01216{left:380.049000px;}
.x7_c01216{left:381.510000px;}
.x47_c01216{left:382.588500px;}
.x75_c01216{left:389.136000px;}
.x7f_c01216{left:390.606000px;}
.x4c_c01216{left:391.956000px;}
.x2b_c01216{left:393.120000px;}
.x6f_c01216{left:399.418500px;}
.x91_c01216{left:401.298000px;}
.x25_c01216{left:403.650000px;}
.x87_c01216{left:413.744100px;}
.x1_c01216{left:414.990000px;}
.x61_c01216{left:416.559000px;}
.x39_c01216{left:424.710000px;}
.x69_c01216{left:426.261000px;}
.x5b_c01216{left:434.293500px;}
.x41_c01216{left:435.960000px;}
.x2_c01216{left:437.400000px;}
.x62_c01216{left:439.774500px;}
.x56_c01216{left:445.960500px;}
.x92_c01216{left:447.219000px;}
.x8d_c01216{left:456.840000px;}
.x3a_c01216{left:458.190000px;}
.x8a_c01216{left:466.958088px;}
.x42_c01216{left:468.382500px;}
.x1d_c01216{left:469.530000px;}
.x70_c01216{left:478.627500px;}
.x76_c01216{left:479.707500px;}
.x3_c01216{left:481.950000px;}
.x8c_c01216{left:488.478441px;}
.x8e_c01216{left:489.510000px;}
.x8_c01216{left:490.590000px;}
.x77_c01216{left:499.926000px;}
.x8b_c01216{left:501.239769px;}
.x1e_c01216{left:502.470000px;}
.x26_c01216{left:503.820000px;}
.x89_c01216{left:511.674171px;}
.x52_c01216{left:512.874000px;}
.x3b_c01216{left:514.890000px;}
.x43_c01216{left:521.568000px;}
.x85_c01216{left:523.441320px;}
.x9_c01216{left:524.610000px;}
.x93_c01216{left:534.162932px;}
.x31_c01216{left:536.220000px;}
.x12_c01216{left:543.240000px;}
.x57_c01216{left:545.782500px;}
.x80_c01216{left:548.212500px;}
.x5c_c01216{left:556.057500px;}
.x2c_c01216{left:557.550000px;}
.x63_c01216{left:567.472500px;}
.x15_c01216{left:568.812000px;}
.x32_c01216{left:578.610000px;}
.x48_c01216{left:579.688500px;}
.xa_c01216{left:580.770000px;}
.x4d_c01216{left:589.321500px;}
.x3c_c01216{left:591.030000px;}
.x64_c01216{left:600.931500px;}
.x5e_c01216{left:611.730000px;}
.x1f_c01216{left:613.170000px;}
.x81_c01216{left:620.925000px;}
.x53_c01216{left:622.815000px;}
.x16_c01216{left:623.892000px;}
.x27_c01216{left:625.590000px;}
.x3d_c01216{left:635.040000px;}
.x6a_c01216{left:644.164500px;}
.x79_c01216{left:645.568500px;}
.x20_c01216{left:647.190000px;}
.x82_c01216{left:655.491000px;}
.x17_c01216{left:657.370500px;}
.x65_c01216{left:664.942500px;}
.xb_c01216{left:667.440000px;}
.x28_c01216{left:678.510000px;}
.x58_c01216{left:688.348500px;}
.x2d_c01216{left:690.120000px;}
.x6b_c01216{left:698.967000px;}
.x5f_c01216{left:699.996000px;}
.x7a_c01216{left:711.448500px;}
.x21_c01216{left:712.800000px;}
.x86_c01216{left:720.794820px;}
.x4e_c01216{left:722.709000px;}
.x18_c01216{left:727.560000px;}
.x3e_c01216{left:745.200000px;}
.xc_c01216{left:747.090000px;}
.x71_c01216{left:755.388000px;}
.x66_c01216{left:765.933000px;}
.x49_c01216{left:767.338500px;}
.x19_c01216{left:769.716000px;}
.x44_c01216{left:771.012000px;}
.x83_c01216{left:777.814500px;}
.xd_c01216{left:780.840000px;}
.x3f_c01216{left:785.700000px;}
.x33_c01216{left:790.290000px;}
.x6c_c01216{left:794.571000px;}
.x7e_c01216{left:798.562500px;}
.x67_c01216{left:799.957500px;}
.x22_c01216{left:801.090000px;}
.x60_c01216{left:811.482000px;}
.x2e_c01216{left:812.970000px;}
.xe_c01216{left:814.050000px;}
.x78_c01216{left:818.263500px;}
.x7b_c01216{left:833.218500px;}
.x34_c01216{left:834.300000px;}
.x23_c01216{left:835.380000px;}
@media print{
.v0_c01216{vertical-align:0.000000pt;}
.ls0_c01216{letter-spacing:0.000000pt;}
.ws0_c01216{word-spacing:0.000000pt;}
.fs2_c01216{font-size:53.333333pt;}
.fs4_c01216{font-size:53.335040pt;}
.fs3_c01216{font-size:58.666667pt;}
.fs6_c01216{font-size:58.667723pt;}
.fs0_c01216{font-size:64.000000pt;}
.fs7_c01216{font-size:64.001152pt;}
.fs1_c01216{font-size:69.333333pt;}
.fs5_c01216{font-size:69.334581pt;}
.fs8_c01216{font-size:74.677455pt;}
.fs9_c01216{font-size:90.679767pt;}
.y0_c01216{bottom:0.000000pt;}
.yfc_c01216{bottom:53.435568pt;}
.yfb_c01216{bottom:53.860532pt;}
.yfa_c01216{bottom:54.165949pt;}
.yf9_c01216{bottom:54.595496pt;}
.yf8_c01216{bottom:56.530392pt;}
.yf7_c01216{bottom:56.955175pt;}
.yf6_c01216{bottom:57.397985pt;}
.yf5_c01216{bottom:58.556875pt;}
.yf4_c01216{bottom:83.994004pt;}
.yf3_c01216{bottom:84.818187pt;}
.yf2_c01216{bottom:85.659029pt;}
.yf1_c01216{bottom:86.164519pt;}
.yf0_c01216{bottom:86.474553pt;}
.yef_c01216{bottom:87.168471pt;}
.yee_c01216{bottom:87.476987pt;}
.yed_c01216{bottom:87.798015pt;}
.yec_c01216{bottom:89.017481pt;}
.yeb_c01216{bottom:89.421628pt;}
.yea_c01216{bottom:90.962667pt;}
.ye9_c01216{bottom:116.938667pt;}
.ye8_c01216{bottom:117.473333pt;}
.ye7_c01216{bottom:117.904000pt;}
.ye6_c01216{bottom:118.429333pt;}
.ye5_c01216{bottom:119.749333pt;}
.ye4_c01216{bottom:120.061333pt;}
.ye3_c01216{bottom:121.441333pt;}
.ye2_c01216{bottom:163.132000pt;}
.ye1_c01216{bottom:192.022912pt;}
.ye0_c01216{bottom:192.473683pt;}
.ydf_c01216{bottom:193.651349pt;}
.yde_c01216{bottom:194.237885pt;}
.ydd_c01216{bottom:194.529176pt;}
.ydc_c01216{bottom:195.882944pt;}
.ydb_c01216{bottom:196.156088pt;}
.yda_c01216{bottom:197.632101pt;}
.yd9_c01216{bottom:198.060771pt;}
.yd8_c01216{bottom:199.387347pt;}
.yd7_c01216{bottom:199.669368pt;}
.yd6_c01216{bottom:200.396464pt;}
.yd5_c01216{bottom:224.913696pt;}
.yd4_c01216{bottom:225.307085pt;}
.yd3_c01216{bottom:225.799787pt;}
.yd2_c01216{bottom:225.992440pt;}
.yd1_c01216{bottom:226.585533pt;}
.yd0_c01216{bottom:226.782016pt;}
.ycf_c01216{bottom:227.272016pt;}
.yce_c01216{bottom:227.576189pt;}
.ycd_c01216{bottom:228.443096pt;}
.ycc_c01216{bottom:229.223992pt;}
.ycb_c01216{bottom:229.516965pt;}
.yca_c01216{bottom:230.100331pt;}
.yc9_c01216{bottom:230.394648pt;}
.yc8_c01216{bottom:255.727899pt;}
.yc7_c01216{bottom:256.225133pt;}
.yc6_c01216{bottom:256.507819pt;}
.yc5_c01216{bottom:257.784797pt;}
.yc4_c01216{bottom:258.388155pt;}
.yc3_c01216{bottom:258.980816pt;}
.yc2_c01216{bottom:259.660200pt;}
.yc1_c01216{bottom:259.960176pt;}
.yc0_c01216{bottom:260.236291pt;}
.ybf_c01216{bottom:260.719032pt;}
.ybe_c01216{bottom:261.598504pt;}
.ybd_c01216{bottom:287.297413pt;}
.ybc_c01216{bottom:287.539539pt;}
.ybb_c01216{bottom:288.944445pt;}
.yba_c01216{bottom:289.656949pt;}
.yb9_c01216{bottom:290.014192pt;}
.yb8_c01216{bottom:290.368421pt;}
.yb7_c01216{bottom:291.419619pt;}
.yb6_c01216{bottom:292.237872pt;}
.yb5_c01216{bottom:292.600701pt;}
.yb4_c01216{bottom:293.070064pt;}
.yb3_c01216{bottom:293.533640pt;}
.yb2_c01216{bottom:293.888165pt;}
.yb1_c01216{bottom:294.239757pt;}
.yb0_c01216{bottom:318.186128pt;}
.yaf_c01216{bottom:318.556384pt;}
.yae_c01216{bottom:318.724640pt;}
.yad_c01216{bottom:319.253264pt;}
.yac_c01216{bottom:319.608936pt;}
.yab_c01216{bottom:319.840696pt;}
.yaa_c01216{bottom:320.434096pt;}
.ya9_c01216{bottom:320.894936pt;}
.ya8_c01216{bottom:321.107904pt;}
.ya7_c01216{bottom:321.599024pt;}
.ya6_c01216{bottom:351.613480pt;}
.ya5_c01216{bottom:351.967984pt;}
.ya4_c01216{bottom:352.265872pt;}
.ya3_c01216{bottom:352.450224pt;}
.ya2_c01216{bottom:352.838024pt;}
.ya1_c01216{bottom:353.211984pt;}
.ya0_c01216{bottom:353.383344pt;}
.y9f_c01216{bottom:353.678592pt;}
.y9e_c01216{bottom:354.082120pt;}
.y9d_c01216{bottom:354.260272pt;}
.y9c_c01216{bottom:354.437456pt;}
.y9b_c01216{bottom:354.791712pt;}
.y9a_c01216{bottom:354.960000pt;}
.y99_c01216{bottom:382.497995pt;}
.y98_c01216{bottom:382.724469pt;}
.y97_c01216{bottom:383.436875pt;}
.y96_c01216{bottom:383.743947pt;}
.y95_c01216{bottom:384.143648pt;}
.y94_c01216{bottom:384.850432pt;}
.y93_c01216{bottom:385.545099pt;}
.y92_c01216{bottom:385.787083pt;}
.y91_c01216{bottom:386.021141pt;}
.y90_c01216{bottom:386.419104pt;}
.y8f_c01216{bottom:386.645237pt;}
.y8e_c01216{bottom:387.121333pt;}
.y8d_c01216{bottom:415.632000pt;}
.y8c_c01216{bottom:445.248000pt;}
.y8b_c01216{bottom:446.005333pt;}
.y8a_c01216{bottom:446.321333pt;}
.y89_c01216{bottom:446.637333pt;}
.y88_c01216{bottom:446.945333pt;}
.y87_c01216{bottom:447.510667pt;}
.y86_c01216{bottom:447.654667pt;}
.y85_c01216{bottom:448.298667pt;}
.y84_c01216{bottom:448.529333pt;}
.y83_c01216{bottom:449.078667pt;}
.y82_c01216{bottom:449.382667pt;}
.y81_c01216{bottom:449.998667pt;}
.y80_c01216{bottom:476.745333pt;}
.y7f_c01216{bottom:476.956000pt;}
.y7e_c01216{bottom:477.645333pt;}
.y7d_c01216{bottom:477.784000pt;}
.y7c_c01216{bottom:478.460000pt;}
.y7b_c01216{bottom:478.678667pt;}
.y7a_c01216{bottom:479.013333pt;}
.y79_c01216{bottom:479.172000pt;}
.y78_c01216{bottom:479.706667pt;}
.y77_c01216{bottom:479.972000pt;}
.y76_c01216{bottom:480.252000pt;}
.y75_c01216{bottom:480.518667pt;}
.y74_c01216{bottom:480.718667pt;}
.y73_c01216{bottom:509.530667pt;}
.y72_c01216{bottom:509.588000pt;}
.y71_c01216{bottom:509.954667pt;}
.y70_c01216{bottom:510.198667pt;}
.y6f_c01216{bottom:510.636000pt;}
.y6e_c01216{bottom:510.785333pt;}
.y6d_c01216{bottom:511.168000pt;}
.y6c_c01216{bottom:511.373333pt;}
.y6b_c01216{bottom:511.566667pt;}
.y6a_c01216{bottom:512.056000pt;}
.y69_c01216{bottom:512.398667pt;}
.y68_c01216{bottom:541.436000pt;}
.y67_c01216{bottom:541.586667pt;}
.y66_c01216{bottom:541.881333pt;}
.y65_c01216{bottom:542.034667pt;}
.y64_c01216{bottom:542.318667pt;}
.y63_c01216{bottom:542.468000pt;}
.y62_c01216{bottom:542.810667pt;}
.y61_c01216{bottom:543.036000pt;}
.y60_c01216{bottom:543.138667pt;}
.y5f_c01216{bottom:543.348000pt;}
.y5e_c01216{bottom:543.932000pt;}
.y5d_c01216{bottom:544.126667pt;}
.y5c_c01216{bottom:544.317333pt;}
.y5b_c01216{bottom:571.296000pt;}
.y5a_c01216{bottom:571.614667pt;}
.y59_c01216{bottom:572.089333pt;}
.y58_c01216{bottom:572.558667pt;}
.y57_c01216{bottom:572.717333pt;}
.y56_c01216{bottom:573.186667pt;}
.y55_c01216{bottom:573.425333pt;}
.y54_c01216{bottom:573.738667pt;}
.y53_c01216{bottom:574.201333pt;}
.y52_c01216{bottom:574.521333pt;}
.y51_c01216{bottom:574.760000pt;}
.y50_c01216{bottom:575.218667pt;}
.y4f_c01216{bottom:575.376000pt;}
.y4e_c01216{bottom:575.773333pt;}
.y4d_c01216{bottom:576.000000pt;}
.y4c_c01216{bottom:602.430667pt;}
.y4b_c01216{bottom:602.629333pt;}
.y4a_c01216{bottom:603.321333pt;}
.y49_c01216{bottom:604.314667pt;}
.y48_c01216{bottom:604.693333pt;}
.y47_c01216{bottom:605.397333pt;}
.y46_c01216{bottom:605.966667pt;}
.y45_c01216{bottom:606.266667pt;}
.y44_c01216{bottom:606.962667pt;}
.y43_c01216{bottom:634.809333pt;}
.y42_c01216{bottom:635.154667pt;}
.y41_c01216{bottom:635.392000pt;}
.y40_c01216{bottom:635.569333pt;}
.y3f_c01216{bottom:636.101333pt;}
.y3e_c01216{bottom:636.446667pt;}
.y3d_c01216{bottom:636.626667pt;}
.y3c_c01216{bottom:636.801333pt;}
.y3b_c01216{bottom:637.324000pt;}
.y3a_c01216{bottom:637.498667pt;}
.y39_c01216{bottom:637.681333pt;}
.y38_c01216{bottom:665.652000pt;}
.y37_c01216{bottom:666.098667pt;}
.y36_c01216{bottom:666.298667pt;}
.y35_c01216{bottom:666.440000pt;}
.y34_c01216{bottom:666.541333pt;}
.y33_c01216{bottom:666.786667pt;}
.y32_c01216{bottom:667.030667pt;}
.y31_c01216{bottom:667.177333pt;}
.y30_c01216{bottom:667.369333pt;}
.y2f_c01216{bottom:667.521333pt;}
.y2e_c01216{bottom:667.673333pt;}
.y2d_c01216{bottom:668.158667pt;}
.y2c_c01216{bottom:668.400000pt;}
.y2b_c01216{bottom:697.748000pt;}
.y2a_c01216{bottom:698.042667pt;}
.y29_c01216{bottom:698.458667pt;}
.y28_c01216{bottom:698.628000pt;}
.y27_c01216{bottom:699.097333pt;}
.y26_c01216{bottom:699.510667pt;}
.y25_c01216{bottom:699.866667pt;}
.y24_c01216{bottom:699.981333pt;}
.y23_c01216{bottom:700.272000pt;}
.y22_c01216{bottom:700.626667pt;}
.y21_c01216{bottom:700.798667pt;}
.y20_c01216{bottom:730.064000pt;}
.y1f_c01216{bottom:761.738667pt;}
.y1e_c01216{bottom:762.106667pt;}
.y1d_c01216{bottom:762.313333pt;}
.y1c_c01216{bottom:762.654667pt;}
.y1b_c01216{bottom:762.861333pt;}
.y1a_c01216{bottom:763.066667pt;}
.y19_c01216{bottom:763.292000pt;}
.y18_c01216{bottom:763.622667pt;}
.y17_c01216{bottom:763.824000pt;}
.y16_c01216{bottom:764.226667pt;}
.y15_c01216{bottom:764.706667pt;}
.y14_c01216{bottom:765.186667pt;}
.y13_c01216{bottom:765.598667pt;}
.y12_c01216{bottom:793.005333pt;}
.y11_c01216{bottom:824.482667pt;}
.y10_c01216{bottom:855.461333pt;}
.yf_c01216{bottom:886.164000pt;}
.ye_c01216{bottom:918.556000pt;}
.yd_c01216{bottom:948.884000pt;}
.yc_c01216{bottom:949.117333pt;}
.yb_c01216{bottom:949.342667pt;}
.ya_c01216{bottom:949.717333pt;}
.y9_c01216{bottom:949.896000pt;}
.y8_c01216{bottom:950.189333pt;}
.y7_c01216{bottom:950.425333pt;}
.y6_c01216{bottom:951.014667pt;}
.y5_c01216{bottom:951.606667pt;}
.y4_c01216{bottom:951.840000pt;}
.y3_c01216{bottom:981.378667pt;}
.y2_c01216{bottom:1011.530667pt;}
.y1_c01216{bottom:1062.718667pt;}
.h4_c01216{height:53.333333pt;}
.h6_c01216{height:53.335040pt;}
.h5_c01216{height:58.666667pt;}
.h8_c01216{height:58.667723pt;}
.h2_c01216{height:64.000000pt;}
.h9_c01216{height:64.001152pt;}
.h3_c01216{height:69.333333pt;}
.h7_c01216{height:69.334581pt;}
.ha_c01216{height:74.677455pt;}
.hb_c01216{height:90.679767pt;}
.h1_c01216{height:1118.666667pt;}
.h0_c01216{height:1118.880000pt;}
.w0_c01216{width:803.733333pt;}
.w1_c01216{width:804.000000pt;}
.x0_c01216{left:0.000000pt;}
.x1a_c01216{left:123.600000pt;}
.x7c_c01216{left:131.916000pt;}
.x35_c01216{left:132.960000pt;}
.x4_c01216{left:134.400000pt;}
.x2f_c01216{left:135.360000pt;}
.x4a_c01216{left:162.410667pt;}
.x54_c01216{left:163.629333pt;}
.x5_c01216{left:173.520000pt;}
.x4f_c01216{left:181.374667pt;}
.x30_c01216{left:182.640000pt;}
.x7d_c01216{left:191.428000pt;}
.x40_c01216{left:192.640000pt;}
.x6d_c01216{left:200.788000pt;}
.x1b_c01216{left:201.840000pt;}
.x72_c01216{left:210.380000pt;}
.xf_c01216{left:212.400000pt;}
.x84_c01216{left:215.453173pt;}
.x45_c01216{left:220.318667pt;}
.x4b_c01216{left:221.442667pt;}
.x36_c01216{left:222.960000pt;}
.x90_c01216{left:224.170667pt;}
.x59_c01216{left:229.558667pt;}
.x13_c01216{left:230.573333pt;}
.x6e_c01216{left:240.882667pt;}
.x73_c01216{left:248.461333pt;}
.x37_c01216{left:250.800000pt;}
.x46_c01216{left:259.438667pt;}
.x29_c01216{left:260.880000pt;}
.x14_c01216{left:269.430667pt;}
.x50_c01216{left:278.314667pt;}
.x55_c01216{left:279.782667pt;}
.x8f_c01216{left:287.372000pt;}
.x38_c01216{left:288.960000pt;}
.x24_c01216{left:290.640000pt;}
.x88_c01216{left:297.710595pt;}
.x5a_c01216{left:299.142667pt;}
.x10_c01216{left:300.480000pt;}
.x51_c01216{left:308.813333pt;}
.x6_c01216{left:310.560000pt;}
.x74_c01216{left:317.120000pt;}
.x5d_c01216{left:318.401333pt;}
.x2a_c01216{left:319.680000pt;}
.x11_c01216{left:328.560000pt;}
.x1c_c01216{left:330.000000pt;}
.x68_c01216{left:337.821333pt;}
.x7_c01216{left:339.120000pt;}
.x47_c01216{left:340.078667pt;}
.x75_c01216{left:345.898667pt;}
.x7f_c01216{left:347.205333pt;}
.x4c_c01216{left:348.405333pt;}
.x2b_c01216{left:349.440000pt;}
.x6f_c01216{left:355.038667pt;}
.x91_c01216{left:356.709333pt;}
.x25_c01216{left:358.800000pt;}
.x87_c01216{left:367.772533pt;}
.x1_c01216{left:368.880000pt;}
.x61_c01216{left:370.274667pt;}
.x39_c01216{left:377.520000pt;}
.x69_c01216{left:378.898667pt;}
.x5b_c01216{left:386.038667pt;}
.x41_c01216{left:387.520000pt;}
.x2_c01216{left:388.800000pt;}
.x62_c01216{left:390.910667pt;}
.x56_c01216{left:396.409333pt;}
.x92_c01216{left:397.528000pt;}
.x8d_c01216{left:406.080000pt;}
.x3a_c01216{left:407.280000pt;}
.x8a_c01216{left:415.073856pt;}
.x42_c01216{left:416.340000pt;}
.x1d_c01216{left:417.360000pt;}
.x70_c01216{left:425.446667pt;}
.x76_c01216{left:426.406667pt;}
.x3_c01216{left:428.400000pt;}
.x8c_c01216{left:434.203059pt;}
.x8e_c01216{left:435.120000pt;}
.x8_c01216{left:436.080000pt;}
.x77_c01216{left:444.378667pt;}
.x8b_c01216{left:445.546461pt;}
.x1e_c01216{left:446.640000pt;}
.x26_c01216{left:447.840000pt;}
.x89_c01216{left:454.821485pt;}
.x52_c01216{left:455.888000pt;}
.x3b_c01216{left:457.680000pt;}
.x43_c01216{left:463.616000pt;}
.x85_c01216{left:465.281173pt;}
.x9_c01216{left:466.320000pt;}
.x93_c01216{left:474.811495pt;}
.x31_c01216{left:476.640000pt;}
.x12_c01216{left:482.880000pt;}
.x57_c01216{left:485.140000pt;}
.x80_c01216{left:487.300000pt;}
.x5c_c01216{left:494.273333pt;}
.x2c_c01216{left:495.600000pt;}
.x63_c01216{left:504.420000pt;}
.x15_c01216{left:505.610667pt;}
.x32_c01216{left:514.320000pt;}
.x48_c01216{left:515.278667pt;}
.xa_c01216{left:516.240000pt;}
.x4d_c01216{left:523.841333pt;}
.x3c_c01216{left:525.360000pt;}
.x64_c01216{left:534.161333pt;}
.x5e_c01216{left:543.760000pt;}
.x1f_c01216{left:545.040000pt;}
.x81_c01216{left:551.933333pt;}
.x53_c01216{left:553.613333pt;}
.x16_c01216{left:554.570667pt;}
.x27_c01216{left:556.080000pt;}
.x3d_c01216{left:564.480000pt;}
.x6a_c01216{left:572.590667pt;}
.x79_c01216{left:573.838667pt;}
.x20_c01216{left:575.280000pt;}
.x82_c01216{left:582.658667pt;}
.x17_c01216{left:584.329333pt;}
.x65_c01216{left:591.060000pt;}
.xb_c01216{left:593.280000pt;}
.x28_c01216{left:603.120000pt;}
.x58_c01216{left:611.865333pt;}
.x2d_c01216{left:613.440000pt;}
.x6b_c01216{left:621.304000pt;}
.x5f_c01216{left:622.218667pt;}
.x7a_c01216{left:632.398667pt;}
.x21_c01216{left:633.600000pt;}
.x86_c01216{left:640.706507pt;}
.x4e_c01216{left:642.408000pt;}
.x18_c01216{left:646.720000pt;}
.x3e_c01216{left:662.400000pt;}
.xc_c01216{left:664.080000pt;}
.x71_c01216{left:671.456000pt;}
.x66_c01216{left:680.829333pt;}
.x49_c01216{left:682.078667pt;}
.x19_c01216{left:684.192000pt;}
.x44_c01216{left:685.344000pt;}
.x83_c01216{left:691.390667pt;}
.xd_c01216{left:694.080000pt;}
.x3f_c01216{left:698.400000pt;}
.x33_c01216{left:702.480000pt;}
.x6c_c01216{left:706.285333pt;}
.x7e_c01216{left:709.833333pt;}
.x67_c01216{left:711.073333pt;}
.x22_c01216{left:712.080000pt;}
.x60_c01216{left:721.317333pt;}
.x2e_c01216{left:722.640000pt;}
.xe_c01216{left:723.600000pt;}
.x78_c01216{left:727.345333pt;}
.x7b_c01216{left:740.638667pt;}
.x34_c01216{left:741.600000pt;}
.x23_c01216{left:742.560000pt;}
}





/* 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_c01217 {
    display:none;
  }
  .loading-indicator_c01217.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01217 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_c01217 { 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_c01217" -> "#page-container .classname_c01217")
 */
.pf_c01217 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01217 { /* 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_c01217.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01217 { /* 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_c01217 { /* 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_c01217 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01217 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01217 {overflow:visible;}
  }
}
.c_c01217 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01217 { /* 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_c01217:after { /* webkit #35443 */
  content: '';
}
.t_c01217:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01217 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 */
}
.__c01217 { /* 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_c01217 { /* info for Javascript */
  display:none;
}
.l_c01217 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01217 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01217 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01217: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_c01217 {
    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_c01217.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01217.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_c01217 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01217{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01217;src:url('chunks/assets/font_cfe63ee56e9e10a97d33a3db.woff2')format("woff");}.ff1_c01217{font-family:ff1_c01217;line-height:1.000000;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;}
.m82_c01217{transform:matrix(0.013415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.013415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.013415,0.000000,0.000000,0.250000,0,0);}
.m54_c01217{transform:matrix(0.167410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167410,0.000000,0.000000,0.250000,0,0);}
.m6a_c01217{transform:matrix(0.187526,-0.002250,0.003000,0.249982,0,0);-ms-transform:matrix(0.187526,-0.002250,0.003000,0.249982,0,0);-webkit-transform:matrix(0.187526,-0.002250,0.003000,0.249982,0,0);}
.m37_c01217{transform:matrix(0.193780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193780,0.000000,0.000000,0.250000,0,0);}
.m6d_c01217{transform:matrix(0.199796,-0.002398,0.003000,0.249982,0,0);-ms-transform:matrix(0.199796,-0.002398,0.003000,0.249982,0,0);-webkit-transform:matrix(0.199796,-0.002398,0.003000,0.249982,0,0);}
.m69_c01217{transform:matrix(0.201520,-0.002418,0.003000,0.249982,0,0);-ms-transform:matrix(0.201520,-0.002418,0.003000,0.249982,0,0);-webkit-transform:matrix(0.201520,-0.002418,0.003000,0.249982,0,0);}
.m42_c01217{transform:matrix(0.211694,-0.002117,0.002500,0.249988,0,0);-ms-transform:matrix(0.211694,-0.002117,0.002500,0.249988,0,0);-webkit-transform:matrix(0.211694,-0.002117,0.002500,0.249988,0,0);}
.m35_c01217{transform:matrix(0.211910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211910,0.000000,0.000000,0.250000,0,0);}
.m3a_c01217{transform:matrix(0.212015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212015,0.000000,0.000000,0.250000,0,0);}
.m41_c01217{transform:matrix(0.220849,-0.002208,0.002500,0.249988,0,0);-ms-transform:matrix(0.220849,-0.002208,0.002500,0.249988,0,0);-webkit-transform:matrix(0.220849,-0.002208,0.002500,0.249988,0,0);}
.m85_c01217{transform:matrix(0.226235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226235,0.000000,0.000000,0.250000,0,0);}
.m6b_c01217{transform:matrix(0.227784,-0.002733,0.003000,0.249982,0,0);-ms-transform:matrix(0.227784,-0.002733,0.003000,0.249982,0,0);-webkit-transform:matrix(0.227784,-0.002733,0.003000,0.249982,0,0);}
.m58_c01217{transform:matrix(0.229473,-0.002754,0.003000,0.249982,0,0);-ms-transform:matrix(0.229473,-0.002754,0.003000,0.249982,0,0);-webkit-transform:matrix(0.229473,-0.002754,0.003000,0.249982,0,0);}
.m33_c01217{transform:matrix(0.231285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231285,0.000000,0.000000,0.250000,0,0);}
.m4a_c01217{transform:matrix(0.231291,-0.002544,0.002750,0.249985,0,0);-ms-transform:matrix(0.231291,-0.002544,0.002750,0.249985,0,0);-webkit-transform:matrix(0.231291,-0.002544,0.002750,0.249985,0,0);}
.m36_c01217{transform:matrix(0.234845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234845,0.000000,0.000000,0.250000,0,0);}
.m8e_c01217{transform:matrix(0.236835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236835,0.000000,0.000000,0.250000,0,0);}
.md_c01217{transform:matrix(0.237213,0.002372,-0.002500,0.249988,0,0);-ms-transform:matrix(0.237213,0.002372,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.237213,0.002372,-0.002500,0.249988,0,0);}
.m25_c01217{transform:matrix(0.241320,-0.002172,0.002250,0.249990,0,0);-ms-transform:matrix(0.241320,-0.002172,0.002250,0.249990,0,0);-webkit-transform:matrix(0.241320,-0.002172,0.002250,0.249990,0,0);}
.m27_c01217{transform:matrix(0.244180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244180,0.000000,0.000000,0.250000,0,0);}
.m6c_c01217{transform:matrix(0.247367,-0.002968,0.003000,0.249982,0,0);-ms-transform:matrix(0.247367,-0.002968,0.003000,0.249982,0,0);-webkit-transform:matrix(0.247367,-0.002968,0.003000,0.249982,0,0);}
.m7d_c01217{transform:matrix(0.251675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251675,0.000000,0.000000,0.250000,0,0);}
.m61_c01217{transform:matrix(0.254547,-0.003055,0.003000,0.249982,0,0);-ms-transform:matrix(0.254547,-0.003055,0.003000,0.249982,0,0);-webkit-transform:matrix(0.254547,-0.003055,0.003000,0.249982,0,0);}
.m89_c01217{transform:matrix(0.256610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256610,0.000000,0.000000,0.250000,0,0);}
.m67_c01217{transform:matrix(0.258586,-0.003103,0.003000,0.249982,0,0);-ms-transform:matrix(0.258586,-0.003103,0.003000,0.249982,0,0);-webkit-transform:matrix(0.258586,-0.003103,0.003000,0.249982,0,0);}
.m57_c01217{transform:matrix(0.261896,-0.003143,0.003000,0.249982,0,0);-ms-transform:matrix(0.261896,-0.003143,0.003000,0.249982,0,0);-webkit-transform:matrix(0.261896,-0.003143,0.003000,0.249982,0,0);}
.m1e_c01217{transform:matrix(0.264364,-0.002379,0.002250,0.249990,0,0);-ms-transform:matrix(0.264364,-0.002379,0.002250,0.249990,0,0);-webkit-transform:matrix(0.264364,-0.002379,0.002250,0.249990,0,0);}
.m6_c01217{transform:matrix(0.266270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266270,0.000000,0.000000,0.250000,0,0);}
.m5b_c01217{transform:matrix(0.266891,-0.003203,0.003000,0.249982,0,0);-ms-transform:matrix(0.266891,-0.003203,0.003000,0.249982,0,0);-webkit-transform:matrix(0.266891,-0.003203,0.003000,0.249982,0,0);}
.m90_c01217{transform:matrix(0.276970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276970,0.000000,0.000000,0.250000,0,0);}
.m77_c01217{transform:matrix(0.279200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279200,0.000000,0.000000,0.250000,0,0);}
.m40_c01217{transform:matrix(0.279596,-0.002796,0.002500,0.249988,0,0);-ms-transform:matrix(0.279596,-0.002796,0.002500,0.249988,0,0);-webkit-transform:matrix(0.279596,-0.002796,0.002500,0.249988,0,0);}
.m21_c01217{transform:matrix(0.279734,-0.002518,0.002250,0.249990,0,0);-ms-transform:matrix(0.279734,-0.002518,0.002250,0.249990,0,0);-webkit-transform:matrix(0.279734,-0.002518,0.002250,0.249990,0,0);}
.m2c_c01217{transform:matrix(0.281110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281110,0.000000,0.000000,0.250000,0,0);}
.m4f_c01217{transform:matrix(0.281178,-0.003093,0.002750,0.249985,0,0);-ms-transform:matrix(0.281178,-0.003093,0.002750,0.249985,0,0);-webkit-transform:matrix(0.281178,-0.003093,0.002750,0.249985,0,0);}
.m5e_c01217{transform:matrix(0.281255,-0.003375,0.003000,0.249982,0,0);-ms-transform:matrix(0.281255,-0.003375,0.003000,0.249982,0,0);-webkit-transform:matrix(0.281255,-0.003375,0.003000,0.249982,0,0);}
.mc_c01217{transform:matrix(0.281501,0.002815,-0.002500,0.249988,0,0);-ms-transform:matrix(0.281501,0.002815,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.281501,0.002815,-0.002500,0.249988,0,0);}
.m2e_c01217{transform:matrix(0.281670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281670,0.000000,0.000000,0.250000,0,0);}
.m70_c01217{transform:matrix(0.284980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284980,0.000000,0.000000,0.250000,0,0);}
.m20_c01217{transform:matrix(0.286483,-0.002578,0.002250,0.249990,0,0);-ms-transform:matrix(0.286483,-0.002578,0.002250,0.249990,0,0);-webkit-transform:matrix(0.286483,-0.002578,0.002250,0.249990,0,0);}
.m86_c01217{transform:matrix(0.287915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287915,0.000000,0.000000,0.250000,0,0);}
.m4c_c01217{transform:matrix(0.290727,-0.003198,0.002750,0.249985,0,0);-ms-transform:matrix(0.290727,-0.003198,0.002750,0.249985,0,0);-webkit-transform:matrix(0.290727,-0.003198,0.002750,0.249985,0,0);}
.m26_c01217{transform:matrix(0.291053,-0.002619,0.002250,0.249990,0,0);-ms-transform:matrix(0.291053,-0.002619,0.002250,0.249990,0,0);-webkit-transform:matrix(0.291053,-0.002619,0.002250,0.249990,0,0);}
.m4b_c01217{transform:matrix(0.291352,-0.003205,0.002750,0.249985,0,0);-ms-transform:matrix(0.291352,-0.003205,0.002750,0.249985,0,0);-webkit-transform:matrix(0.291352,-0.003205,0.002750,0.249985,0,0);}
.m8a_c01217{transform:matrix(0.293155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293155,0.000000,0.000000,0.250000,0,0);}
.m2f_c01217{transform:matrix(0.296010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296010,0.000000,0.000000,0.250000,0,0);}
.m71_c01217{transform:matrix(0.297005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297005,0.000000,0.000000,0.250000,0,0);}
.m10_c01217{transform:matrix(0.297630,0.002976,-0.002500,0.249988,0,0);-ms-transform:matrix(0.297630,0.002976,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.297630,0.002976,-0.002500,0.249988,0,0);}
.m6e_c01217{transform:matrix(0.298050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298050,0.000000,0.000000,0.250000,0,0);}
.m5c_c01217{transform:matrix(0.298738,-0.003585,0.003000,0.249982,0,0);-ms-transform:matrix(0.298738,-0.003585,0.003000,0.249982,0,0);-webkit-transform:matrix(0.298738,-0.003585,0.003000,0.249982,0,0);}
.m48_c01217{transform:matrix(0.299605,-0.002996,0.002500,0.249988,0,0);-ms-transform:matrix(0.299605,-0.002996,0.002500,0.249988,0,0);-webkit-transform:matrix(0.299605,-0.002996,0.002500,0.249988,0,0);}
.m75_c01217{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m17_c01217{transform:matrix(0.300260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300260,0.000000,0.000000,0.250000,0,0);}
.m6f_c01217{transform:matrix(0.300320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300320,0.000000,0.000000,0.250000,0,0);}
.m8f_c01217{transform:matrix(0.300710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300710,0.000000,0.000000,0.250000,0,0);}
.m5a_c01217{transform:matrix(0.300743,-0.003609,0.003000,0.249982,0,0);-ms-transform:matrix(0.300743,-0.003609,0.003000,0.249982,0,0);-webkit-transform:matrix(0.300743,-0.003609,0.003000,0.249982,0,0);}
.m47_c01217{transform:matrix(0.302645,-0.003026,0.002500,0.249988,0,0);-ms-transform:matrix(0.302645,-0.003026,0.002500,0.249988,0,0);-webkit-transform:matrix(0.302645,-0.003026,0.002500,0.249988,0,0);}
.m51_c01217{transform:matrix(0.303412,-0.003338,0.002750,0.249985,0,0);-ms-transform:matrix(0.303412,-0.003338,0.002750,0.249985,0,0);-webkit-transform:matrix(0.303412,-0.003338,0.002750,0.249985,0,0);}
.m39_c01217{transform:matrix(0.307945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307945,0.000000,0.000000,0.250000,0,0);}
.m68_c01217{transform:matrix(0.309953,-0.003719,0.003000,0.249982,0,0);-ms-transform:matrix(0.309953,-0.003719,0.003000,0.249982,0,0);-webkit-transform:matrix(0.309953,-0.003719,0.003000,0.249982,0,0);}
.m2d_c01217{transform:matrix(0.313575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313575,0.000000,0.000000,0.250000,0,0);}
.m91_c01217{transform:matrix(0.313805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313805,0.000000,0.000000,0.250000,0,0);}
.m63_c01217{transform:matrix(0.315527,-0.003786,0.003000,0.249982,0,0);-ms-transform:matrix(0.315527,-0.003786,0.003000,0.249982,0,0);-webkit-transform:matrix(0.315527,-0.003786,0.003000,0.249982,0,0);}
.m23_c01217{transform:matrix(0.315562,-0.002840,0.002250,0.249990,0,0);-ms-transform:matrix(0.315562,-0.002840,0.002250,0.249990,0,0);-webkit-transform:matrix(0.315562,-0.002840,0.002250,0.249990,0,0);}
.m14_c01217{transform:matrix(0.318595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318595,0.000000,0.000000,0.250000,0,0);}
.m12_c01217{transform:matrix(0.318680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318680,0.000000,0.000000,0.250000,0,0);}
.m34_c01217{transform:matrix(0.321435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321435,0.000000,0.000000,0.250000,0,0);}
.m11_c01217{transform:matrix(0.322439,0.003224,-0.002500,0.249988,0,0);-ms-transform:matrix(0.322439,0.003224,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.322439,0.003224,-0.002500,0.249988,0,0);}
.m4e_c01217{transform:matrix(0.326855,-0.003595,0.002750,0.249985,0,0);-ms-transform:matrix(0.326855,-0.003595,0.002750,0.249985,0,0);-webkit-transform:matrix(0.326855,-0.003595,0.002750,0.249985,0,0);}
.m43_c01217{transform:matrix(0.327684,-0.003277,0.002500,0.249988,0,0);-ms-transform:matrix(0.327684,-0.003277,0.002500,0.249988,0,0);-webkit-transform:matrix(0.327684,-0.003277,0.002500,0.249988,0,0);}
.m73_c01217{transform:matrix(0.327755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327755,0.000000,0.000000,0.250000,0,0);}
.m13_c01217{transform:matrix(0.328065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328065,0.000000,0.000000,0.250000,0,0);}
.m72_c01217{transform:matrix(0.328850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328850,0.000000,0.000000,0.250000,0,0);}
.m87_c01217{transform:matrix(0.329570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329570,0.000000,0.000000,0.250000,0,0);}
.m1d_c01217{transform:matrix(0.331952,-0.002988,0.002250,0.249990,0,0);-ms-transform:matrix(0.331952,-0.002988,0.002250,0.249990,0,0);-webkit-transform:matrix(0.331952,-0.002988,0.002250,0.249990,0,0);}
.m49_c01217{transform:matrix(0.337933,-0.003379,0.002500,0.249988,0,0);-ms-transform:matrix(0.337933,-0.003379,0.002500,0.249988,0,0);-webkit-transform:matrix(0.337933,-0.003379,0.002500,0.249988,0,0);}
.m3c_c01217{transform:matrix(0.339410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339410,0.000000,0.000000,0.250000,0,0);}
.me_c01217{transform:matrix(0.341303,0.003413,-0.002500,0.249988,0,0);-ms-transform:matrix(0.341303,0.003413,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.341303,0.003413,-0.002500,0.249988,0,0);}
.m88_c01217{transform:matrix(0.344310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344310,0.000000,0.000000,0.250000,0,0);}
.m45_c01217{transform:matrix(0.344903,-0.003449,0.002500,0.249988,0,0);-ms-transform:matrix(0.344903,-0.003449,0.002500,0.249988,0,0);-webkit-transform:matrix(0.344903,-0.003449,0.002500,0.249988,0,0);}
.m62_c01217{transform:matrix(0.349995,-0.004200,0.003000,0.249982,0,0);-ms-transform:matrix(0.349995,-0.004200,0.003000,0.249982,0,0);-webkit-transform:matrix(0.349995,-0.004200,0.003000,0.249982,0,0);}
.m18_c01217{transform:matrix(0.350020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350020,0.000000,0.000000,0.250000,0,0);}
.m8b_c01217{transform:matrix(0.350280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350280,0.000000,0.000000,0.250000,0,0);}
.m24_c01217{transform:matrix(0.352226,-0.003170,0.002250,0.249990,0,0);-ms-transform:matrix(0.352226,-0.003170,0.002250,0.249990,0,0);-webkit-transform:matrix(0.352226,-0.003170,0.002250,0.249990,0,0);}
.m50_c01217{transform:matrix(0.353834,-0.003892,0.002750,0.249985,0,0);-ms-transform:matrix(0.353834,-0.003892,0.002750,0.249985,0,0);-webkit-transform:matrix(0.353834,-0.003892,0.002750,0.249985,0,0);}
.m4d_c01217{transform:matrix(0.354409,-0.003898,0.002750,0.249985,0,0);-ms-transform:matrix(0.354409,-0.003898,0.002750,0.249985,0,0);-webkit-transform:matrix(0.354409,-0.003898,0.002750,0.249985,0,0);}
.m1a_c01217{transform:matrix(0.355360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355360,0.000000,0.000000,0.250000,0,0);}
.m38_c01217{transform:matrix(0.358085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358085,0.000000,0.000000,0.250000,0,0);}
.mf_c01217{transform:matrix(0.360017,0.003600,-0.002500,0.249988,0,0);-ms-transform:matrix(0.360017,0.003600,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.360017,0.003600,-0.002500,0.249988,0,0);}
.m79_c01217{transform:matrix(0.362525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362525,0.000000,0.000000,0.250000,0,0);}
.m83_c01217{transform:matrix(0.375280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375280,0.000000,0.000000,0.250000,0,0);}
.m28_c01217{transform:matrix(0.376140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376140,0.000000,0.000000,0.250000,0,0);}
.m8d_c01217{transform:matrix(0.379185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379185,0.000000,0.000000,0.250000,0,0);}
.m5f_c01217{transform:matrix(0.383612,-0.004603,0.003000,0.249982,0,0);-ms-transform:matrix(0.383612,-0.004603,0.003000,0.249982,0,0);-webkit-transform:matrix(0.383612,-0.004603,0.003000,0.249982,0,0);}
.m44_c01217{transform:matrix(0.383956,-0.003840,0.002500,0.249988,0,0);-ms-transform:matrix(0.383956,-0.003840,0.002500,0.249988,0,0);-webkit-transform:matrix(0.383956,-0.003840,0.002500,0.249988,0,0);}
.m66_c01217{transform:matrix(0.384682,-0.004616,0.003000,0.249982,0,0);-ms-transform:matrix(0.384682,-0.004616,0.003000,0.249982,0,0);-webkit-transform:matrix(0.384682,-0.004616,0.003000,0.249982,0,0);}
.m7b_c01217{transform:matrix(0.385140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385140,0.000000,0.000000,0.250000,0,0);}
.mb_c01217{transform:matrix(0.391185,0.003912,-0.002500,0.249988,0,0);-ms-transform:matrix(0.391185,0.003912,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.391185,0.003912,-0.002500,0.249988,0,0);}
.m2a_c01217{transform:matrix(0.399250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399250,0.000000,0.000000,0.250000,0,0);}
.m60_c01217{transform:matrix(0.403531,-0.004842,0.003000,0.249982,0,0);-ms-transform:matrix(0.403531,-0.004842,0.003000,0.249982,0,0);-webkit-transform:matrix(0.403531,-0.004842,0.003000,0.249982,0,0);}
.m8c_c01217{transform:matrix(0.404035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404035,0.000000,0.000000,0.250000,0,0);}
.m64_c01217{transform:matrix(0.405856,-0.004870,0.003000,0.249982,0,0);-ms-transform:matrix(0.405856,-0.004870,0.003000,0.249982,0,0);-webkit-transform:matrix(0.405856,-0.004870,0.003000,0.249982,0,0);}
.m7f_c01217{transform:matrix(0.408905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408905,0.000000,0.000000,0.250000,0,0);}
.m59_c01217{transform:matrix(0.408961,-0.004908,0.003000,0.249982,0,0);-ms-transform:matrix(0.408961,-0.004908,0.003000,0.249982,0,0);-webkit-transform:matrix(0.408961,-0.004908,0.003000,0.249982,0,0);}
.m46_c01217{transform:matrix(0.417239,-0.004172,0.002500,0.249988,0,0);-ms-transform:matrix(0.417239,-0.004172,0.002500,0.249988,0,0);-webkit-transform:matrix(0.417239,-0.004172,0.002500,0.249988,0,0);}
.m7a_c01217{transform:matrix(0.418165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418165,0.000000,0.000000,0.250000,0,0);}
.m31_c01217{transform:matrix(0.424650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424650,0.000000,0.000000,0.250000,0,0);}
.m29_c01217{transform:matrix(0.431855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431855,0.000000,0.000000,0.250000,0,0);}
.m1f_c01217{transform:matrix(0.445242,-0.004007,0.002250,0.249990,0,0);-ms-transform:matrix(0.445242,-0.004007,0.002250,0.249990,0,0);-webkit-transform:matrix(0.445242,-0.004007,0.002250,0.249990,0,0);}
.m15_c01217{transform:matrix(0.452940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452940,0.000000,0.000000,0.250000,0,0);}
.m65_c01217{transform:matrix(0.460172,-0.005522,0.003000,0.249982,0,0);-ms-transform:matrix(0.460172,-0.005522,0.003000,0.249982,0,0);-webkit-transform:matrix(0.460172,-0.005522,0.003000,0.249982,0,0);}
.m19_c01217{transform:matrix(0.471010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471010,0.000000,0.000000,0.250000,0,0);}
.m5d_c01217{transform:matrix(0.475501,-0.005706,0.003000,0.249982,0,0);-ms-transform:matrix(0.475501,-0.005706,0.003000,0.249982,0,0);-webkit-transform:matrix(0.475501,-0.005706,0.003000,0.249982,0,0);}
.m7_c01217{transform:matrix(0.476765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.476765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.476765,0.000000,0.000000,0.250000,0,0);}
.m53_c01217{transform:matrix(0.496150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.496150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.496150,0.000000,0.000000,0.250000,0,0);}
.m3d_c01217{transform:matrix(0.513570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.513570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.513570,0.000000,0.000000,0.250000,0,0);}
.m52_c01217{transform:matrix(0.517319,-0.005691,0.002750,0.249985,0,0);-ms-transform:matrix(0.517319,-0.005691,0.002750,0.249985,0,0);-webkit-transform:matrix(0.517319,-0.005691,0.002750,0.249985,0,0);}
.m84_c01217{transform:matrix(0.519220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519220,0.000000,0.000000,0.250000,0,0);}
.m80_c01217{transform:matrix(0.528835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528835,0.000000,0.000000,0.250000,0,0);}
.m16_c01217{transform:matrix(0.559305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.559305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.559305,0.000000,0.000000,0.250000,0,0);}
.m30_c01217{transform:matrix(0.566590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.566590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.566590,0.000000,0.000000,0.250000,0,0);}
.m78_c01217{transform:matrix(0.584655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.584655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.584655,0.000000,0.000000,0.250000,0,0);}
.m3e_c01217{transform:matrix(0.586730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.586730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.586730,0.000000,0.000000,0.250000,0,0);}
.m0_c01217{transform:matrix(0.597745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.597745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.597745,0.000000,0.000000,0.250000,0,0);}
.m56_c01217{transform:matrix(0.603382,-0.007241,0.003000,0.249982,0,0);-ms-transform:matrix(0.603382,-0.007241,0.003000,0.249982,0,0);-webkit-transform:matrix(0.603382,-0.007241,0.003000,0.249982,0,0);}
.m92_c01217{transform:matrix(0.623190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.623190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.623190,0.000000,0.000000,0.250000,0,0);}
.m81_c01217{transform:matrix(0.625930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625930,0.000000,0.000000,0.250000,0,0);}
.m5_c01217{transform:matrix(0.632950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632950,0.000000,0.000000,0.250000,0,0);}
.m22_c01217{transform:matrix(0.635724,-0.005722,0.002250,0.249990,0,0);-ms-transform:matrix(0.635724,-0.005722,0.002250,0.249990,0,0);-webkit-transform:matrix(0.635724,-0.005722,0.002250,0.249990,0,0);}
.m4_c01217{transform:matrix(0.645690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.645690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.645690,0.000000,0.000000,0.250000,0,0);}
.m7c_c01217{transform:matrix(0.687925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687925,0.000000,0.000000,0.250000,0,0);}
.m2b_c01217{transform:matrix(0.690930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.690930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.690930,0.000000,0.000000,0.250000,0,0);}
.ma_c01217{transform:matrix(0.734183,0.007342,-0.002500,0.249988,0,0);-ms-transform:matrix(0.734183,0.007342,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.734183,0.007342,-0.002500,0.249988,0,0);}
.m3f_c01217{transform:matrix(0.832473,-0.008325,0.002500,0.249988,0,0);-ms-transform:matrix(0.832473,-0.008325,0.002500,0.249988,0,0);-webkit-transform:matrix(0.832473,-0.008325,0.002500,0.249988,0,0);}
.m55_c01217{transform:matrix(0.847994,-0.010176,0.003000,0.249982,0,0);-ms-transform:matrix(0.847994,-0.010176,0.003000,0.249982,0,0);-webkit-transform:matrix(0.847994,-0.010176,0.003000,0.249982,0,0);}
.m3b_c01217{transform:matrix(0.866675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.866675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.866675,0.000000,0.000000,0.250000,0,0);}
.m9_c01217{transform:matrix(0.890585,0.008906,-0.002500,0.249988,0,0);-ms-transform:matrix(0.890585,0.008906,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.890585,0.008906,-0.002500,0.249988,0,0);}
.m3_c01217{transform:matrix(1.024240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.024240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.024240,0.000000,0.000000,0.250000,0,0);}
.m7e_c01217{transform:matrix(1.082475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.082475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.082475,0.000000,0.000000,0.250000,0,0);}
.m76_c01217{transform:matrix(1.198835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.198835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.198835,0.000000,0.000000,0.250000,0,0);}
.m1b_c01217{transform:matrix(1.209991,-0.010890,0.002250,0.249990,0,0);-ms-transform:matrix(1.209991,-0.010890,0.002250,0.249990,0,0);-webkit-transform:matrix(1.209991,-0.010890,0.002250,0.249990,0,0);}
.m74_c01217{transform:matrix(1.263760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.263760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.263760,0.000000,0.000000,0.250000,0,0);}
.m32_c01217{transform:matrix(1.409740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.409740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.409740,0.000000,0.000000,0.250000,0,0);}
.m2_c01217{transform:matrix(1.416865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.416865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.416865,0.000000,0.000000,0.250000,0,0);}
.m1_c01217{transform:matrix(1.544245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.544245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.544245,0.000000,0.000000,0.250000,0,0);}
.m1c_c01217{transform:matrix(1.564007,-0.014076,0.002250,0.249990,0,0);-ms-transform:matrix(1.564007,-0.014076,0.002250,0.249990,0,0);-webkit-transform:matrix(1.564007,-0.014076,0.002250,0.249990,0,0);}
.m8_c01217{transform:matrix(1.917504,0.019175,-0.002500,0.249988,0,0);-ms-transform:matrix(1.917504,0.019175,-0.002500,0.249988,0,0);-webkit-transform:matrix(1.917504,0.019175,-0.002500,0.249988,0,0);}
.v0_c01217{vertical-align:0.000000px;}
.ls0_c01217{letter-spacing:0.000000px;}
.sc__c01217{text-shadow:none;}
.sc0_c01217{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__c01217{-webkit-text-stroke:0px transparent;}
.sc0_c01217{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01217{word-spacing:0.000000px;}
.fc0_c01217{color:transparent;}
.fs6_c01217{font-size:12.000000px;}
.fs2_c01217{font-size:18.000000px;}
.fs0_c01217{font-size:24.000000px;}
.fsc_c01217{font-size:30.000000px;}
.fs1_c01217{font-size:36.000000px;}
.fs7_c01217{font-size:54.000000px;}
.fsb_c01217{font-size:66.003993px;}
.fs4_c01217{font-size:72.000000px;}
.fse_c01217{font-size:72.005184px;}
.fs8_c01217{font-size:78.000000px;}
.fs5_c01217{font-size:78.003159px;}
.fsa_c01217{font-size:78.003900px;}
.fsd_c01217{font-size:78.005616px;}
.fs10_c01217{font-size:84.000000px;}
.fs11_c01217{font-size:90.000000px;}
.fs3_c01217{font-size:90.004500px;}
.fsf_c01217{font-size:90.006480px;}
.fs9_c01217{font-size:96.000000px;}
.y0_c01217{bottom:0.000000px;}
.y63_c01217{bottom:177.313500px;}
.y62_c01217{bottom:208.855500px;}
.y61_c01217{bottom:209.005500px;}
.y60_c01217{bottom:209.125500px;}
.y5f_c01217{bottom:209.511000px;}
.y5e_c01217{bottom:209.737500px;}
.y5d_c01217{bottom:210.012000px;}
.y5c_c01217{bottom:210.288000px;}
.y5b_c01217{bottom:210.718500px;}
.y5a_c01217{bottom:211.330500px;}
.y59_c01217{bottom:212.071500px;}
.y58_c01217{bottom:212.221500px;}
.y57_c01217{bottom:247.641000px;}
.y56_c01217{bottom:558.223500px;}
.y55_c01217{bottom:569.862000px;}
.y4b_c01217{bottom:600.570576px;}
.y4c_c01217{bottom:601.101540px;}
.y4d_c01217{bottom:601.990098px;}
.y4e_c01217{bottom:602.500248px;}
.y4f_c01217{bottom:603.415182px;}
.y50_c01217{bottom:604.052202px;}
.y51_c01217{bottom:604.422270px;}
.y52_c01217{bottom:605.072088px;}
.y53_c01217{bottom:605.727186px;}
.y54_c01217{bottom:606.310026px;}
.y42_c01217{bottom:636.237504px;}
.y43_c01217{bottom:637.180902px;}
.y44_c01217{bottom:637.487142px;}
.y45_c01217{bottom:638.400060px;}
.y46_c01217{bottom:638.755074px;}
.y47_c01217{bottom:639.417966px;}
.y48_c01217{bottom:640.316622px;}
.y49_c01217{bottom:640.777368px;}
.y4a_c01217{bottom:641.205144px;}
.y3b_c01217{bottom:660.690000px;}
.y3a_c01217{bottom:670.140000px;}
.y3c_c01217{bottom:670.413000px;}
.y3d_c01217{bottom:671.729142px;}
.y3e_c01217{bottom:673.453830px;}
.y3f_c01217{bottom:674.334300px;}
.y40_c01217{bottom:675.248610px;}
.y41_c01217{bottom:675.627654px;}
.y31_c01217{bottom:777.871500px;}
.y32_c01217{bottom:778.175430px;}
.y33_c01217{bottom:778.656306px;}
.y34_c01217{bottom:779.001354px;}
.y35_c01217{bottom:779.488467px;}
.y36_c01217{bottom:779.754810px;}
.y37_c01217{bottom:780.352852px;}
.y38_c01217{bottom:781.131339px;}
.y39_c01217{bottom:781.882221px;}
.y26_c01217{bottom:812.431500px;}
.y27_c01217{bottom:813.527295px;}
.y28_c01217{bottom:813.784380px;}
.y29_c01217{bottom:814.227165px;}
.y2a_c01217{bottom:814.616130px;}
.y2b_c01217{bottom:814.921545px;}
.y2c_c01217{bottom:815.780235px;}
.y2d_c01217{bottom:816.346995px;}
.y2e_c01217{bottom:816.679395px;}
.y2f_c01217{bottom:817.113825px;}
.y30_c01217{bottom:817.605195px;}
.y25_c01217{bottom:826.330500px;}
.y23_c01217{bottom:848.946000px;}
.y24_c01217{bottom:850.230000px;}
.y22_c01217{bottom:865.756500px;}
.y21_c01217{bottom:887.877000px;}
.y20_c01217{bottom:923.697000px;}
.y1f_c01217{bottom:934.200000px;}
.y13_c01217{bottom:952.834500px;}
.y14_c01217{bottom:953.524593px;}
.y15_c01217{bottom:954.171405px;}
.y16_c01217{bottom:954.588960px;}
.y17_c01217{bottom:954.917280px;}
.y18_c01217{bottom:955.012725px;}
.y19_c01217{bottom:955.778040px;}
.y1a_c01217{bottom:956.273652px;}
.y1b_c01217{bottom:957.257869px;}
.y1c_c01217{bottom:957.498480px;}
.y1d_c01217{bottom:958.185819px;}
.y1e_c01217{bottom:958.672238px;}
.y12_c01217{bottom:975.510000px;}
.y11_c01217{bottom:981.450000px;}
.y10_c01217{bottom:993.243000px;}
.yf_c01217{bottom:1017.490635px;}
.ye_c01217{bottom:1017.800985px;}
.yd_c01217{bottom:1018.694715px;}
.yc_c01217{bottom:1018.916325px;}
.yb_c01217{bottom:1019.958765px;}
.ya_c01217{bottom:1020.200295px;}
.y9_c01217{bottom:1020.533595px;}
.y8_c01217{bottom:1021.273065px;}
.y7_c01217{bottom:1022.336190px;}
.y6_c01217{bottom:1023.667500px;}
.y5_c01217{bottom:1049.223000px;}
.y3_c01217{bottom:1063.683000px;}
.y4_c01217{bottom:1080.000000px;}
.y2_c01217{bottom:1083.099000px;}
.y1_c01217{bottom:1088.370000px;}
.h8_c01217{height:12.000000px;}
.h4_c01217{height:18.000000px;}
.h2_c01217{height:24.000000px;}
.he_c01217{height:30.000000px;}
.h3_c01217{height:36.000000px;}
.h9_c01217{height:54.000000px;}
.hd_c01217{height:66.003993px;}
.h6_c01217{height:72.000000px;}
.h10_c01217{height:72.005184px;}
.ha_c01217{height:78.000000px;}
.h7_c01217{height:78.003159px;}
.hc_c01217{height:78.003900px;}
.hf_c01217{height:78.005616px;}
.h12_c01217{height:84.000000px;}
.h13_c01217{height:90.000000px;}
.h5_c01217{height:90.004500px;}
.h11_c01217{height:90.006480px;}
.hb_c01217{height:96.000000px;}
.h1_c01217{height:1258.500000px;}
.h0_c01217{height:1258.740000px;}
.w0_c01217{width:904.200000px;}
.w1_c01217{width:904.500000px;}
.x0_c01217{left:0.000000px;}
.x1c_c01217{left:17.434500px;}
.x9_c01217{left:55.081500px;}
.x1d_c01217{left:94.111500px;}
.x8_c01217{left:127.170000px;}
.x4f_c01217{left:137.932500px;}
.x32_c01217{left:147.420000px;}
.x4e_c01217{left:152.280000px;}
.x1e_c01217{left:165.979500px;}
.x3e_c01217{left:186.229500px;}
.xa_c01217{left:188.212500px;}
.x67_c01217{left:191.160000px;}
.x59_c01217{left:195.451770px;}
.x55_c01217{left:197.643144px;}
.x1f_c01217{left:212.374500px;}
.x47_c01217{left:213.706500px;}
.x6e_c01217{left:230.734500px;}
.x5a_c01217{left:236.323284px;}
.x68_c01217{left:238.140000px;}
.x48_c01217{left:241.336500px;}
.x50_c01217{left:247.611000px;}
.x20_c01217{left:248.854500px;}
.x6f_c01217{left:252.249000px;}
.x21_c01217{left:259.459500px;}
.x3_c01217{left:270.810000px;}
.x7_c01217{left:274.320000px;}
.x33_c01217{left:283.500000px;}
.x49_c01217{left:285.052500px;}
.xb_c01217{left:294.525000px;}
.x3f_c01217{left:295.809000px;}
.x5b_c01217{left:304.618956px;}
.x4_c01217{left:314.010000px;}
.x34_c01217{left:316.170000px;}
.x40_c01217{left:321.517500px;}
.x5_c01217{left:330.210000px;}
.x22_c01217{left:344.494500px;}
.x13_c01217{left:347.220000px;}
.x35_c01217{left:349.110000px;}
.x70_c01217{left:358.056000px;}
.x4a_c01217{left:360.703500px;}
.x3c_c01217{left:363.690000px;}
.x41_c01217{left:365.796000px;}
.xc_c01217{left:368.472000px;}
.x3d_c01217{left:372.330000px;}
.x6_c01217{left:373.950000px;}
.x2_c01217{left:380.430000px;}
.x1_c01217{left:383.940000px;}
.x51_c01217{left:391.335000px;}
.x14_c01217{left:398.520000px;}
.x23_c01217{left:399.562500px;}
.xd_c01217{left:401.802000px;}
.x42_c01217{left:404.692500px;}
.x5c_c01217{left:414.249642px;}
.xe_c01217{left:425.955000px;}
.x61_c01217{left:430.380000px;}
.x36_c01217{left:434.700000px;}
.x4b_c01217{left:439.284000px;}
.x56_c01217{left:442.303710px;}
.x2c_c01217{left:443.880000px;}
.x69_c01217{left:445.230000px;}
.x66_c01217{left:452.520000px;}
.x74_c01217{left:453.870000px;}
.x5d_c01217{left:463.209048px;}
.x52_c01217{left:464.707500px;}
.x37_c01217{left:466.560000px;}
.x1b_c01217{left:467.910000px;}
.x1a_c01217{left:472.230000px;}
.x62_c01217{left:480.330000px;}
.x5e_c01217{left:491.672706px;}
.x15_c01217{left:500.310000px;}
.x6a_c01217{left:507.330000px;}
.x24_c01217{left:508.920000px;}
.x4c_c01217{left:510.055500px;}
.x57_c01217{left:511.440882px;}
.x2d_c01217{left:515.430000px;}
.x43_c01217{left:521.103000px;}
.x75_c01217{left:524.070000px;}
.x38_c01217{left:525.690000px;}
.xf_c01217{left:530.199000px;}
.x16_c01217{left:532.170000px;}
.x25_c01217{left:535.654500px;}
.x53_c01217{left:540.900000px;}
.x58_c01217{left:546.835950px;}
.x10_c01217{left:552.360000px;}
.x76_c01217{left:560.520000px;}
.x63_c01217{left:568.620000px;}
.x17_c01217{left:571.320000px;}
.x54_c01217{left:572.487000px;}
.x2e_c01217{left:577.260000px;}
.x4d_c01217{left:578.317500px;}
.x29_c01217{left:579.960000px;}
.x71_c01217{left:585.735000px;}
.x5f_c01217{left:592.039500px;}
.x44_c01217{left:611.019000px;}
.x26_c01217{left:612.025500px;}
.x39_c01217{left:615.330000px;}
.x64_c01217{left:616.410000px;}
.x2f_c01217{left:617.760000px;}
.x3b_c01217{left:625.050000px;}
.x6b_c01217{left:626.400000px;}
.x77_c01217{left:633.420000px;}
.x60_c01217{left:636.858960px;}
.x11_c01217{left:641.733000px;}
.x18_c01217{left:646.380000px;}
.x78_c01217{left:653.130000px;}
.x45_c01217{left:654.462000px;}
.x30_c01217{left:658.530000px;}
.x27_c01217{left:666.072000px;}
.x2a_c01217{left:667.710000px;}
.x65_c01217{left:669.060000px;}
.x12_c01217{left:672.768000px;}
.x6c_c01217{left:675.270000px;}
.x19_c01217{left:681.480000px;}
.x3a_c01217{left:683.640000px;}
.x72_c01217{left:690.499500px;}
.x2b_c01217{left:698.220000px;}
.x46_c01217{left:703.599000px;}
.x31_c01217{left:706.860000px;}
.x73_c01217{left:711.828000px;}
.x28_c01217{left:727.380000px;}
.x6d_c01217{left:735.210000px;}
@media print{
.v0_c01217{vertical-align:0.000000pt;}
.ls0_c01217{letter-spacing:0.000000pt;}
.ws0_c01217{word-spacing:0.000000pt;}
.fs6_c01217{font-size:10.666667pt;}
.fs2_c01217{font-size:16.000000pt;}
.fs0_c01217{font-size:21.333333pt;}
.fsc_c01217{font-size:26.666667pt;}
.fs1_c01217{font-size:32.000000pt;}
.fs7_c01217{font-size:48.000000pt;}
.fsb_c01217{font-size:58.670216pt;}
.fs4_c01217{font-size:64.000000pt;}
.fse_c01217{font-size:64.004608pt;}
.fs8_c01217{font-size:69.333333pt;}
.fs5_c01217{font-size:69.336141pt;}
.fsa_c01217{font-size:69.336800pt;}
.fsd_c01217{font-size:69.338325pt;}
.fs10_c01217{font-size:74.666667pt;}
.fs11_c01217{font-size:80.000000pt;}
.fs3_c01217{font-size:80.004000pt;}
.fsf_c01217{font-size:80.005760pt;}
.fs9_c01217{font-size:85.333333pt;}
.y0_c01217{bottom:0.000000pt;}
.y63_c01217{bottom:157.612000pt;}
.y62_c01217{bottom:185.649333pt;}
.y61_c01217{bottom:185.782667pt;}
.y60_c01217{bottom:185.889333pt;}
.y5f_c01217{bottom:186.232000pt;}
.y5e_c01217{bottom:186.433333pt;}
.y5d_c01217{bottom:186.677333pt;}
.y5c_c01217{bottom:186.922667pt;}
.y5b_c01217{bottom:187.305333pt;}
.y5a_c01217{bottom:187.849333pt;}
.y59_c01217{bottom:188.508000pt;}
.y58_c01217{bottom:188.641333pt;}
.y57_c01217{bottom:220.125333pt;}
.y56_c01217{bottom:496.198667pt;}
.y55_c01217{bottom:506.544000pt;}
.y4b_c01217{bottom:533.840512pt;}
.y4c_c01217{bottom:534.312480pt;}
.y4d_c01217{bottom:535.102309pt;}
.y4e_c01217{bottom:535.555776pt;}
.y4f_c01217{bottom:536.369051pt;}
.y50_c01217{bottom:536.935291pt;}
.y51_c01217{bottom:537.264240pt;}
.y52_c01217{bottom:537.841856pt;}
.y53_c01217{bottom:538.424165pt;}
.y54_c01217{bottom:538.942245pt;}
.y42_c01217{bottom:565.544448pt;}
.y43_c01217{bottom:566.383024pt;}
.y44_c01217{bottom:566.655237pt;}
.y45_c01217{bottom:567.466720pt;}
.y46_c01217{bottom:567.782288pt;}
.y47_c01217{bottom:568.371525pt;}
.y48_c01217{bottom:569.170331pt;}
.y49_c01217{bottom:569.579883pt;}
.y4a_c01217{bottom:569.960128pt;}
.y3b_c01217{bottom:587.280000pt;}
.y3a_c01217{bottom:595.680000pt;}
.y3c_c01217{bottom:595.922667pt;}
.y3d_c01217{bottom:597.092571pt;}
.y3e_c01217{bottom:598.625627pt;}
.y3f_c01217{bottom:599.408267pt;}
.y40_c01217{bottom:600.220987pt;}
.y41_c01217{bottom:600.557915pt;}
.y31_c01217{bottom:691.441333pt;}
.y32_c01217{bottom:691.711493pt;}
.y33_c01217{bottom:692.138939pt;}
.y34_c01217{bottom:692.445648pt;}
.y35_c01217{bottom:692.878637pt;}
.y36_c01217{bottom:693.115387pt;}
.y37_c01217{bottom:693.646980pt;}
.y38_c01217{bottom:694.338968pt;}
.y39_c01217{bottom:695.006419pt;}
.y26_c01217{bottom:722.161333pt;}
.y27_c01217{bottom:723.135373pt;}
.y28_c01217{bottom:723.363893pt;}
.y29_c01217{bottom:723.757480pt;}
.y2a_c01217{bottom:724.103227pt;}
.y2b_c01217{bottom:724.374707pt;}
.y2c_c01217{bottom:725.137987pt;}
.y2d_c01217{bottom:725.641773pt;}
.y2e_c01217{bottom:725.937240pt;}
.y2f_c01217{bottom:726.323400pt;}
.y30_c01217{bottom:726.760173pt;}
.y25_c01217{bottom:734.516000pt;}
.y23_c01217{bottom:754.618667pt;}
.y24_c01217{bottom:755.760000pt;}
.y22_c01217{bottom:769.561333pt;}
.y21_c01217{bottom:789.224000pt;}
.y20_c01217{bottom:821.064000pt;}
.y1f_c01217{bottom:830.400000pt;}
.y13_c01217{bottom:846.964000pt;}
.y14_c01217{bottom:847.577416pt;}
.y15_c01217{bottom:848.152360pt;}
.y16_c01217{bottom:848.523520pt;}
.y17_c01217{bottom:848.815360pt;}
.y18_c01217{bottom:848.900200pt;}
.y19_c01217{bottom:849.580480pt;}
.y1a_c01217{bottom:850.021024pt;}
.y1b_c01217{bottom:850.895884pt;}
.y1c_c01217{bottom:851.109760pt;}
.y1d_c01217{bottom:851.720728pt;}
.y1e_c01217{bottom:852.153100pt;}
.y12_c01217{bottom:867.120000pt;}
.y11_c01217{bottom:872.400000pt;}
.y10_c01217{bottom:882.882667pt;}
.yf_c01217{bottom:904.436120pt;}
.ye_c01217{bottom:904.711987pt;}
.yd_c01217{bottom:905.506413pt;}
.yc_c01217{bottom:905.703400pt;}
.yb_c01217{bottom:906.630013pt;}
.ya_c01217{bottom:906.844707pt;}
.y9_c01217{bottom:907.140973pt;}
.y8_c01217{bottom:907.798280pt;}
.y7_c01217{bottom:908.743280pt;}
.y6_c01217{bottom:909.926667pt;}
.y5_c01217{bottom:932.642667pt;}
.y3_c01217{bottom:945.496000pt;}
.y4_c01217{bottom:960.000000pt;}
.y2_c01217{bottom:962.754667pt;}
.y1_c01217{bottom:967.440000pt;}
.h8_c01217{height:10.666667pt;}
.h4_c01217{height:16.000000pt;}
.h2_c01217{height:21.333333pt;}
.he_c01217{height:26.666667pt;}
.h3_c01217{height:32.000000pt;}
.h9_c01217{height:48.000000pt;}
.hd_c01217{height:58.670216pt;}
.h6_c01217{height:64.000000pt;}
.h10_c01217{height:64.004608pt;}
.ha_c01217{height:69.333333pt;}
.h7_c01217{height:69.336141pt;}
.hc_c01217{height:69.336800pt;}
.hf_c01217{height:69.338325pt;}
.h12_c01217{height:74.666667pt;}
.h13_c01217{height:80.000000pt;}
.h5_c01217{height:80.004000pt;}
.h11_c01217{height:80.005760pt;}
.hb_c01217{height:85.333333pt;}
.h1_c01217{height:1118.666667pt;}
.h0_c01217{height:1118.880000pt;}
.w0_c01217{width:803.733333pt;}
.w1_c01217{width:804.000000pt;}
.x0_c01217{left:0.000000pt;}
.x1c_c01217{left:15.497333pt;}
.x9_c01217{left:48.961333pt;}
.x1d_c01217{left:83.654667pt;}
.x8_c01217{left:113.040000pt;}
.x4f_c01217{left:122.606667pt;}
.x32_c01217{left:131.040000pt;}
.x4e_c01217{left:135.360000pt;}
.x1e_c01217{left:147.537333pt;}
.x3e_c01217{left:165.537333pt;}
.xa_c01217{left:167.300000pt;}
.x67_c01217{left:169.920000pt;}
.x59_c01217{left:173.734907pt;}
.x55_c01217{left:175.682795pt;}
.x1f_c01217{left:188.777333pt;}
.x47_c01217{left:189.961333pt;}
.x6e_c01217{left:205.097333pt;}
.x5a_c01217{left:210.065141pt;}
.x68_c01217{left:211.680000pt;}
.x48_c01217{left:214.521333pt;}
.x50_c01217{left:220.098667pt;}
.x20_c01217{left:221.204000pt;}
.x6f_c01217{left:224.221333pt;}
.x21_c01217{left:230.630667pt;}
.x3_c01217{left:240.720000pt;}
.x7_c01217{left:243.840000pt;}
.x33_c01217{left:252.000000pt;}
.x49_c01217{left:253.380000pt;}
.xb_c01217{left:261.800000pt;}
.x3f_c01217{left:262.941333pt;}
.x5b_c01217{left:270.772405pt;}
.x4_c01217{left:279.120000pt;}
.x34_c01217{left:281.040000pt;}
.x40_c01217{left:285.793333pt;}
.x5_c01217{left:293.520000pt;}
.x22_c01217{left:306.217333pt;}
.x13_c01217{left:308.640000pt;}
.x35_c01217{left:310.320000pt;}
.x70_c01217{left:318.272000pt;}
.x4a_c01217{left:320.625333pt;}
.x3c_c01217{left:323.280000pt;}
.x41_c01217{left:325.152000pt;}
.xc_c01217{left:327.530667pt;}
.x3d_c01217{left:330.960000pt;}
.x6_c01217{left:332.400000pt;}
.x2_c01217{left:338.160000pt;}
.x1_c01217{left:341.280000pt;}
.x51_c01217{left:347.853333pt;}
.x14_c01217{left:354.240000pt;}
.x23_c01217{left:355.166667pt;}
.xd_c01217{left:357.157333pt;}
.x42_c01217{left:359.726667pt;}
.x5c_c01217{left:368.221904pt;}
.xe_c01217{left:378.626667pt;}
.x61_c01217{left:382.560000pt;}
.x36_c01217{left:386.400000pt;}
.x4b_c01217{left:390.474667pt;}
.x56_c01217{left:393.158853pt;}
.x2c_c01217{left:394.560000pt;}
.x69_c01217{left:395.760000pt;}
.x66_c01217{left:402.240000pt;}
.x74_c01217{left:403.440000pt;}
.x5d_c01217{left:411.741376pt;}
.x52_c01217{left:413.073333pt;}
.x37_c01217{left:414.720000pt;}
.x1b_c01217{left:415.920000pt;}
.x1a_c01217{left:419.760000pt;}
.x62_c01217{left:426.960000pt;}
.x5e_c01217{left:437.042405pt;}
.x15_c01217{left:444.720000pt;}
.x6a_c01217{left:450.960000pt;}
.x24_c01217{left:452.373333pt;}
.x4c_c01217{left:453.382667pt;}
.x57_c01217{left:454.614117pt;}
.x2d_c01217{left:458.160000pt;}
.x43_c01217{left:463.202667pt;}
.x75_c01217{left:465.840000pt;}
.x38_c01217{left:467.280000pt;}
.xf_c01217{left:471.288000pt;}
.x16_c01217{left:473.040000pt;}
.x25_c01217{left:476.137333pt;}
.x53_c01217{left:480.800000pt;}
.x58_c01217{left:486.076400pt;}
.x10_c01217{left:490.986667pt;}
.x76_c01217{left:498.240000pt;}
.x63_c01217{left:505.440000pt;}
.x17_c01217{left:507.840000pt;}
.x54_c01217{left:508.877333pt;}
.x2e_c01217{left:513.120000pt;}
.x4d_c01217{left:514.060000pt;}
.x29_c01217{left:515.520000pt;}
.x71_c01217{left:520.653333pt;}
.x5f_c01217{left:526.257333pt;}
.x44_c01217{left:543.128000pt;}
.x26_c01217{left:544.022667pt;}
.x39_c01217{left:546.960000pt;}
.x64_c01217{left:547.920000pt;}
.x2f_c01217{left:549.120000pt;}
.x3b_c01217{left:555.600000pt;}
.x6b_c01217{left:556.800000pt;}
.x77_c01217{left:563.040000pt;}
.x60_c01217{left:566.096853pt;}
.x11_c01217{left:570.429333pt;}
.x18_c01217{left:574.560000pt;}
.x78_c01217{left:580.560000pt;}
.x45_c01217{left:581.744000pt;}
.x30_c01217{left:585.360000pt;}
.x27_c01217{left:592.064000pt;}
.x2a_c01217{left:593.520000pt;}
.x65_c01217{left:594.720000pt;}
.x12_c01217{left:598.016000pt;}
.x6c_c01217{left:600.240000pt;}
.x19_c01217{left:605.760000pt;}
.x3a_c01217{left:607.680000pt;}
.x72_c01217{left:613.777333pt;}
.x2b_c01217{left:620.640000pt;}
.x46_c01217{left:625.421333pt;}
.x31_c01217{left:628.320000pt;}
.x73_c01217{left:632.736000pt;}
.x28_c01217{left:646.560000pt;}
.x6d_c01217{left:653.520000pt;}
}





/* 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_c01218 {
    display:none;
  }
  .loading-indicator_c01218.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01218 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_c01218 { 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_c01218" -> "#page-container .classname_c01218")
 */
.pf_c01218 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01218 { /* 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_c01218.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01218 { /* 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_c01218 { /* 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_c01218 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01218 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01218 {overflow:visible;}
  }
}
.c_c01218 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01218 { /* 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_c01218:after { /* webkit #35443 */
  content: '';
}
.t_c01218:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01218 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 */
}
.__c01218 { /* 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_c01218 { /* info for Javascript */
  display:none;
}
.l_c01218 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01218 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01218 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01218: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_c01218 {
    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_c01218.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01218.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_c01218 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01218{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01218;src:url('chunks/assets/font_c605e72f209fc835e906f064.woff2')format("woff");}.ff1_c01218{font-family:ff1_c01218;line-height:1.000000;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;}
.mb0_c01218{transform:matrix(0.015895,0.000700,-0.011000,0.249758,0,0);-ms-transform:matrix(0.015895,0.000700,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.015895,0.000700,-0.011000,0.249758,0,0);}
.mae_c01218{transform:matrix(0.020655,0.000910,-0.011000,0.249758,0,0);-ms-transform:matrix(0.020655,0.000910,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.020655,0.000910,-0.011000,0.249758,0,0);}
.m9e_c01218{transform:matrix(0.042418,0.000764,-0.004499,0.249960,0,0);-ms-transform:matrix(0.042418,0.000764,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.042418,0.000764,-0.004499,0.249960,0,0);}
.m9c_c01218{transform:matrix(0.054726,0.000985,-0.004499,0.249960,0,0);-ms-transform:matrix(0.054726,0.000985,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.054726,0.000985,-0.004499,0.249960,0,0);}
.m3c_c01218{transform:matrix(0.090662,0.002629,-0.007247,0.249895,0,0);-ms-transform:matrix(0.090662,0.002629,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.090662,0.002629,-0.007247,0.249895,0,0);}
.m3f_c01218{transform:matrix(0.094830,0.002750,-0.007247,0.249895,0,0);-ms-transform:matrix(0.094830,0.002750,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.094830,0.002750,-0.007247,0.249895,0,0);}
.m7c_c01218{transform:matrix(0.096290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096290,0.000000,0.000000,0.250000,0,0);}
.ma3_c01218{transform:matrix(0.099709,0.001795,-0.004499,0.249960,0,0);-ms-transform:matrix(0.099709,0.001795,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.099709,0.001795,-0.004499,0.249960,0,0);}
.m40_c01218{transform:matrix(0.112473,0.003262,-0.007247,0.249895,0,0);-ms-transform:matrix(0.112473,0.003262,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.112473,0.003262,-0.007247,0.249895,0,0);}
.m26_c01218{transform:matrix(0.121952,0.003906,-0.008004,0.249872,0,0);-ms-transform:matrix(0.121952,0.003906,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.121952,0.003906,-0.008004,0.249872,0,0);}
.m25_c01218{transform:matrix(0.122972,0.003939,-0.008004,0.249872,0,0);-ms-transform:matrix(0.122972,0.003939,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.122972,0.003939,-0.008004,0.249872,0,0);}
.m3d_c01218{transform:matrix(0.123758,0.003589,-0.007247,0.249895,0,0);-ms-transform:matrix(0.123758,0.003589,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.123758,0.003589,-0.007247,0.249895,0,0);}
.m48_c01218{transform:matrix(0.130445,0.003783,-0.007247,0.249895,0,0);-ms-transform:matrix(0.130445,0.003783,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.130445,0.003783,-0.007247,0.249895,0,0);}
.m9d_c01218{transform:matrix(0.132004,0.002376,-0.004499,0.249960,0,0);-ms-transform:matrix(0.132004,0.002376,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.132004,0.002376,-0.004499,0.249960,0,0);}
.m6c_c01218{transform:matrix(0.139449,0.005025,-0.009003,0.249838,0,0);-ms-transform:matrix(0.139449,0.005025,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.139449,0.005025,-0.009003,0.249838,0,0);}
.m47_c01218{transform:matrix(0.142850,0.004143,-0.007247,0.249895,0,0);-ms-transform:matrix(0.142850,0.004143,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.142850,0.004143,-0.007247,0.249895,0,0);}
.m46_c01218{transform:matrix(0.144849,0.004201,-0.007247,0.249895,0,0);-ms-transform:matrix(0.144849,0.004201,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.144849,0.004201,-0.007247,0.249895,0,0);}
.m44_c01218{transform:matrix(0.145564,0.004221,-0.007247,0.249895,0,0);-ms-transform:matrix(0.145564,0.004221,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.145564,0.004221,-0.007247,0.249895,0,0);}
.m42_c01218{transform:matrix(0.146493,0.004248,-0.007247,0.249895,0,0);-ms-transform:matrix(0.146493,0.004248,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.146493,0.004248,-0.007247,0.249895,0,0);}
.ma9_c01218{transform:matrix(0.148971,0.006561,-0.011000,0.249758,0,0);-ms-transform:matrix(0.148971,0.006561,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.148971,0.006561,-0.011000,0.249758,0,0);}
.m88_c01218{transform:matrix(0.159113,0.004773,-0.007497,0.249888,0,0);-ms-transform:matrix(0.159113,0.004773,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.159113,0.004773,-0.007497,0.249888,0,0);}
.maa_c01218{transform:matrix(0.159500,0.007025,-0.011000,0.249758,0,0);-ms-transform:matrix(0.159500,0.007025,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.159500,0.007025,-0.011000,0.249758,0,0);}
.ma6_c01218{transform:matrix(0.160469,0.007068,-0.011000,0.249758,0,0);-ms-transform:matrix(0.160469,0.007068,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.160469,0.007068,-0.011000,0.249758,0,0);}
.m41_c01218{transform:matrix(0.160533,0.004655,-0.007247,0.249895,0,0);-ms-transform:matrix(0.160533,0.004655,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.160533,0.004655,-0.007247,0.249895,0,0);}
.ma7_c01218{transform:matrix(0.161908,0.007131,-0.011000,0.249758,0,0);-ms-transform:matrix(0.161908,0.007131,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.161908,0.007131,-0.011000,0.249758,0,0);}
.m3e_c01218{transform:matrix(0.165645,0.004804,-0.007247,0.249895,0,0);-ms-transform:matrix(0.165645,0.004804,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.165645,0.004804,-0.007247,0.249895,0,0);}
.mad_c01218{transform:matrix(0.170934,0.007529,-0.011000,0.249758,0,0);-ms-transform:matrix(0.170934,0.007529,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.170934,0.007529,-0.011000,0.249758,0,0);}
.mac_c01218{transform:matrix(0.178492,0.007862,-0.011000,0.249758,0,0);-ms-transform:matrix(0.178492,0.007862,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.178492,0.007862,-0.011000,0.249758,0,0);}
.m4a_c01218{transform:matrix(0.178865,0.005187,-0.007247,0.249895,0,0);-ms-transform:matrix(0.178865,0.005187,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.178865,0.005187,-0.007247,0.249895,0,0);}
.m45_c01218{transform:matrix(0.180654,0.005239,-0.007247,0.249895,0,0);-ms-transform:matrix(0.180654,0.005239,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.180654,0.005239,-0.007247,0.249895,0,0);}
.m55_c01218{transform:matrix(0.181389,0.005260,-0.007247,0.249895,0,0);-ms-transform:matrix(0.181389,0.005260,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.181389,0.005260,-0.007247,0.249895,0,0);}
.m87_c01218{transform:matrix(0.183530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183530,0.000000,0.000000,0.250000,0,0);}
.mab_c01218{transform:matrix(0.185235,0.008159,-0.011000,0.249758,0,0);-ms-transform:matrix(0.185235,0.008159,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.185235,0.008159,-0.011000,0.249758,0,0);}
.m2a_c01218{transform:matrix(0.187969,0.006021,-0.008004,0.249872,0,0);-ms-transform:matrix(0.187969,0.006021,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.187969,0.006021,-0.008004,0.249872,0,0);}
.m6d_c01218{transform:matrix(0.188433,0.006790,-0.009003,0.249838,0,0);-ms-transform:matrix(0.188433,0.006790,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.188433,0.006790,-0.009003,0.249838,0,0);}
.m49_c01218{transform:matrix(0.188526,0.005467,-0.007247,0.249895,0,0);-ms-transform:matrix(0.188526,0.005467,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.188526,0.005467,-0.007247,0.249895,0,0);}
.m7d_c01218{transform:matrix(0.189415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189415,0.000000,0.000000,0.250000,0,0);}
.m4b_c01218{transform:matrix(0.189665,0.005500,-0.007247,0.249895,0,0);-ms-transform:matrix(0.189665,0.005500,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.189665,0.005500,-0.007247,0.249895,0,0);}
.m1b_c01218{transform:matrix(0.190780,0.005533,-0.007247,0.249895,0,0);-ms-transform:matrix(0.190780,0.005533,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.190780,0.005533,-0.007247,0.249895,0,0);}
.mb5_c01218{transform:matrix(0.190920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190920,0.000000,0.000000,0.250000,0,0);}
.m2b_c01218{transform:matrix(0.194100,0.006217,-0.008004,0.249872,0,0);-ms-transform:matrix(0.194100,0.006217,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.194100,0.006217,-0.008004,0.249872,0,0);}
.m9a_c01218{transform:matrix(0.194319,0.003498,-0.004499,0.249960,0,0);-ms-transform:matrix(0.194319,0.003498,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.194319,0.003498,-0.004499,0.249960,0,0);}
.ma8_c01218{transform:matrix(0.196060,0.008635,-0.011000,0.249758,0,0);-ms-transform:matrix(0.196060,0.008635,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.196060,0.008635,-0.011000,0.249758,0,0);}
.m28_c01218{transform:matrix(0.196474,0.006293,-0.008004,0.249872,0,0);-ms-transform:matrix(0.196474,0.006293,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.196474,0.006293,-0.008004,0.249872,0,0);}
.m79_c01218{transform:matrix(0.199360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199360,0.000000,0.000000,0.250000,0,0);}
.m4d_c01218{transform:matrix(0.200056,0.005802,-0.007247,0.249895,0,0);-ms-transform:matrix(0.200056,0.005802,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.200056,0.005802,-0.007247,0.249895,0,0);}
.m37_c01218{transform:matrix(0.200796,0.005823,-0.007247,0.249895,0,0);-ms-transform:matrix(0.200796,0.005823,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.200796,0.005823,-0.007247,0.249895,0,0);}
.m21_c01218{transform:matrix(0.201195,0.005835,-0.007247,0.249895,0,0);-ms-transform:matrix(0.201195,0.005835,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.201195,0.005835,-0.007247,0.249895,0,0);}
.m89_c01218{transform:matrix(0.202794,0.006084,-0.007497,0.249888,0,0);-ms-transform:matrix(0.202794,0.006084,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.202794,0.006084,-0.007497,0.249888,0,0);}
.m99_c01218{transform:matrix(0.202807,0.003651,-0.004499,0.249960,0,0);-ms-transform:matrix(0.202807,0.003651,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.202807,0.003651,-0.004499,0.249960,0,0);}
.m7b_c01218{transform:matrix(0.204315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204315,0.000000,0.000000,0.250000,0,0);}
.m1f_c01218{transform:matrix(0.205554,0.005961,-0.007247,0.249895,0,0);-ms-transform:matrix(0.205554,0.005961,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.205554,0.005961,-0.007247,0.249895,0,0);}
.m27_c01218{transform:matrix(0.205809,0.006592,-0.008004,0.249872,0,0);-ms-transform:matrix(0.205809,0.006592,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.205809,0.006592,-0.008004,0.249872,0,0);}
.m2d_c01218{transform:matrix(0.206719,0.006622,-0.008004,0.249872,0,0);-ms-transform:matrix(0.206719,0.006622,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.206719,0.006622,-0.008004,0.249872,0,0);}
.m86_c01218{transform:matrix(0.209965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209965,0.000000,0.000000,0.250000,0,0);}
.m33_c01218{transform:matrix(0.212141,0.006152,-0.007247,0.249895,0,0);-ms-transform:matrix(0.212141,0.006152,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.212141,0.006152,-0.007247,0.249895,0,0);}
.ma0_c01218{transform:matrix(0.212151,0.003819,-0.004499,0.249960,0,0);-ms-transform:matrix(0.212151,0.003819,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.212151,0.003819,-0.004499,0.249960,0,0);}
.m1d_c01218{transform:matrix(0.212271,0.006156,-0.007247,0.249895,0,0);-ms-transform:matrix(0.212271,0.006156,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.212271,0.006156,-0.007247,0.249895,0,0);}
.m54_c01218{transform:matrix(0.212336,0.006158,-0.007247,0.249895,0,0);-ms-transform:matrix(0.212336,0.006158,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.212336,0.006158,-0.007247,0.249895,0,0);}
.m6f_c01218{transform:matrix(0.213132,0.007680,-0.009003,0.249838,0,0);-ms-transform:matrix(0.213132,0.007680,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.213132,0.007680,-0.009003,0.249838,0,0);}
.m16_c01218{transform:matrix(0.215604,0.006906,-0.008004,0.249872,0,0);-ms-transform:matrix(0.215604,0.006906,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.215604,0.006906,-0.008004,0.249872,0,0);}
.m69_c01218{transform:matrix(0.216646,0.005849,-0.006748,0.249909,0,0);-ms-transform:matrix(0.216646,0.005849,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.216646,0.005849,-0.006748,0.249909,0,0);}
.m80_c01218{transform:matrix(0.216760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216760,0.000000,0.000000,0.250000,0,0);}
.m3a_c01218{transform:matrix(0.217009,0.006293,-0.007247,0.249895,0,0);-ms-transform:matrix(0.217009,0.006293,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.217009,0.006293,-0.007247,0.249895,0,0);}
.m11_c01218{transform:matrix(0.217331,0.006737,-0.007746,0.249880,0,0);-ms-transform:matrix(0.217331,0.006737,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.217331,0.006737,-0.007746,0.249880,0,0);}
.md_c01218{transform:matrix(0.217426,0.006740,-0.007746,0.249880,0,0);-ms-transform:matrix(0.217426,0.006740,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.217426,0.006740,-0.007746,0.249880,0,0);}
.m74_c01218{transform:matrix(0.217479,0.007837,-0.009003,0.249838,0,0);-ms-transform:matrix(0.217479,0.007837,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.217479,0.007837,-0.009003,0.249838,0,0);}
.m7_c01218{transform:matrix(0.218150,0.006763,-0.007746,0.249880,0,0);-ms-transform:matrix(0.218150,0.006763,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.218150,0.006763,-0.007746,0.249880,0,0);}
.m76_c01218{transform:matrix(0.220972,0.007963,-0.009003,0.249838,0,0);-ms-transform:matrix(0.220972,0.007963,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.220972,0.007963,-0.009003,0.249838,0,0);}
.m35_c01218{transform:matrix(0.221112,0.006412,-0.007247,0.249895,0,0);-ms-transform:matrix(0.221112,0.006412,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.221112,0.006412,-0.007247,0.249895,0,0);}
.m1a_c01218{transform:matrix(0.221267,0.006417,-0.007247,0.249895,0,0);-ms-transform:matrix(0.221267,0.006417,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.221267,0.006417,-0.007247,0.249895,0,0);}
.m23_c01218{transform:matrix(0.223516,0.006482,-0.007247,0.249895,0,0);-ms-transform:matrix(0.223516,0.006482,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.223516,0.006482,-0.007247,0.249895,0,0);}
.m65_c01218{transform:matrix(0.224758,0.006068,-0.006748,0.249909,0,0);-ms-transform:matrix(0.224758,0.006068,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.224758,0.006068,-0.006748,0.249909,0,0);}
.m34_c01218{transform:matrix(0.226195,0.006560,-0.007247,0.249895,0,0);-ms-transform:matrix(0.226195,0.006560,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.226195,0.006560,-0.007247,0.249895,0,0);}
.ma1_c01218{transform:matrix(0.226968,0.004085,-0.004499,0.249960,0,0);-ms-transform:matrix(0.226968,0.004085,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.226968,0.004085,-0.004499,0.249960,0,0);}
.m62_c01218{transform:matrix(0.227307,0.006137,-0.006748,0.249909,0,0);-ms-transform:matrix(0.227307,0.006137,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.227307,0.006137,-0.006748,0.249909,0,0);}
.m1e_c01218{transform:matrix(0.228914,0.006638,-0.007247,0.249895,0,0);-ms-transform:matrix(0.228914,0.006638,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.228914,0.006638,-0.007247,0.249895,0,0);}
.m9b_c01218{transform:matrix(0.229323,0.004128,-0.004499,0.249960,0,0);-ms-transform:matrix(0.229323,0.004128,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.229323,0.004128,-0.004499,0.249960,0,0);}
.ma2_c01218{transform:matrix(0.230203,0.004144,-0.004499,0.249960,0,0);-ms-transform:matrix(0.230203,0.004144,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.230203,0.004144,-0.004499,0.249960,0,0);}
.m2_c01218{transform:matrix(0.230804,0.007155,-0.007746,0.249880,0,0);-ms-transform:matrix(0.230804,0.007155,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.230804,0.007155,-0.007746,0.249880,0,0);}
.m72_c01218{transform:matrix(0.231480,0.008342,-0.009003,0.249838,0,0);-ms-transform:matrix(0.231480,0.008342,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.231480,0.008342,-0.009003,0.249838,0,0);}
.m98_c01218{transform:matrix(0.231947,0.004175,-0.004499,0.249960,0,0);-ms-transform:matrix(0.231947,0.004175,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.231947,0.004175,-0.004499,0.249960,0,0);}
.m67_c01218{transform:matrix(0.231990,0.006264,-0.006748,0.249909,0,0);-ms-transform:matrix(0.231990,0.006264,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.231990,0.006264,-0.006748,0.249909,0,0);}
.m20_c01218{transform:matrix(0.232442,0.006741,-0.007247,0.249895,0,0);-ms-transform:matrix(0.232442,0.006741,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.232442,0.006741,-0.007247,0.249895,0,0);}
.m38_c01218{transform:matrix(0.232542,0.006744,-0.007247,0.249895,0,0);-ms-transform:matrix(0.232542,0.006744,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.232542,0.006744,-0.007247,0.249895,0,0);}
.m61_c01218{transform:matrix(0.232715,0.006283,-0.006748,0.249909,0,0);-ms-transform:matrix(0.232715,0.006283,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.232715,0.006283,-0.006748,0.249909,0,0);}
.m39_c01218{transform:matrix(0.233727,0.006778,-0.007247,0.249895,0,0);-ms-transform:matrix(0.233727,0.006778,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.233727,0.006778,-0.007247,0.249895,0,0);}
.me_c01218{transform:matrix(0.234053,0.007256,-0.007746,0.249880,0,0);-ms-transform:matrix(0.234053,0.007256,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.234053,0.007256,-0.007746,0.249880,0,0);}
.m5a_c01218{transform:matrix(0.234694,0.008692,-0.009253,0.249829,0,0);-ms-transform:matrix(0.234694,0.008692,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.234694,0.008692,-0.009253,0.249829,0,0);}
.m1c_c01218{transform:matrix(0.234721,0.006807,-0.007247,0.249895,0,0);-ms-transform:matrix(0.234721,0.006807,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.234721,0.006807,-0.007247,0.249895,0,0);}
.m29_c01218{transform:matrix(0.234770,0.007520,-0.008004,0.249872,0,0);-ms-transform:matrix(0.234770,0.007520,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.234770,0.007520,-0.008004,0.249872,0,0);}
.m77_c01218{transform:matrix(0.235152,0.008474,-0.009003,0.249838,0,0);-ms-transform:matrix(0.235152,0.008474,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.235152,0.008474,-0.009003,0.249838,0,0);}
.m36_c01218{transform:matrix(0.235156,0.006820,-0.007247,0.249895,0,0);-ms-transform:matrix(0.235156,0.006820,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.235156,0.006820,-0.007247,0.249895,0,0);}
.m66_c01218{transform:matrix(0.236054,0.006373,-0.006748,0.249909,0,0);-ms-transform:matrix(0.236054,0.006373,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.236054,0.006373,-0.006748,0.249909,0,0);}
.m63_c01218{transform:matrix(0.236604,0.006388,-0.006748,0.249909,0,0);-ms-transform:matrix(0.236604,0.006388,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.236604,0.006388,-0.006748,0.249909,0,0);}
.m83_c01218{transform:matrix(0.236885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236885,0.000000,0.000000,0.250000,0,0);}
.m68_c01218{transform:matrix(0.237084,0.006401,-0.006748,0.249909,0,0);-ms-transform:matrix(0.237084,0.006401,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.237084,0.006401,-0.006748,0.249909,0,0);}
.m5e_c01218{transform:matrix(0.237592,0.008086,-0.008504,0.249855,0,0);-ms-transform:matrix(0.237592,0.008086,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.237592,0.008086,-0.008504,0.249855,0,0);}
.ma_c01218{transform:matrix(0.238286,0.007387,-0.007746,0.249880,0,0);-ms-transform:matrix(0.238286,0.007387,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.238286,0.007387,-0.007746,0.249880,0,0);}
.m3b_c01218{transform:matrix(0.238940,0.006929,-0.007247,0.249895,0,0);-ms-transform:matrix(0.238940,0.006929,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.238940,0.006929,-0.007247,0.249895,0,0);}
.ma5_c01218{transform:matrix(0.241271,0.010627,-0.011000,0.249758,0,0);-ms-transform:matrix(0.241271,0.010627,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.241271,0.010627,-0.011000,0.249758,0,0);}
.m9f_c01218{transform:matrix(0.241456,0.004346,-0.004499,0.249960,0,0);-ms-transform:matrix(0.241456,0.004346,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.241456,0.004346,-0.004499,0.249960,0,0);}
.mba_c01218{transform:matrix(0.242336,0.007763,-0.008004,0.249872,0,0);-ms-transform:matrix(0.242336,0.007763,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.242336,0.007763,-0.008004,0.249872,0,0);}
.m84_c01218{transform:matrix(0.243290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243290,0.000000,0.000000,0.250000,0,0);}
.mb9_c01218{transform:matrix(0.243815,0.007810,-0.008004,0.249872,0,0);-ms-transform:matrix(0.243815,0.007810,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.243815,0.007810,-0.008004,0.249872,0,0);}
.m64_c01218{transform:matrix(0.243981,0.006587,-0.006748,0.249909,0,0);-ms-transform:matrix(0.243981,0.006587,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.243981,0.006587,-0.006748,0.249909,0,0);}
.mb2_c01218{transform:matrix(0.245460,0.013022,-0.013245,0.249649,0,0);-ms-transform:matrix(0.245460,0.013022,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.245460,0.013022,-0.013245,0.249649,0,0);}
.m2e_c01218{transform:matrix(0.246054,0.007882,-0.008004,0.249872,0,0);-ms-transform:matrix(0.246054,0.007882,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.246054,0.007882,-0.008004,0.249872,0,0);}
.m6b_c01218{transform:matrix(0.246065,0.006644,-0.006748,0.249909,0,0);-ms-transform:matrix(0.246065,0.006644,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.246065,0.006644,-0.006748,0.249909,0,0);}
.m78_c01218{transform:matrix(0.246290,0.008875,-0.009003,0.249838,0,0);-ms-transform:matrix(0.246290,0.008875,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.246290,0.008875,-0.009003,0.249838,0,0);}
.m70_c01218{transform:matrix(0.246300,0.008876,-0.009003,0.249838,0,0);-ms-transform:matrix(0.246300,0.008876,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.246300,0.008876,-0.009003,0.249838,0,0);}
.m14_c01218{transform:matrix(0.246477,0.007641,-0.007746,0.249880,0,0);-ms-transform:matrix(0.246477,0.007641,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.246477,0.007641,-0.007746,0.249880,0,0);}
.m85_c01218{transform:matrix(0.247105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247105,0.000000,0.000000,0.250000,0,0);}
.m3_c01218{transform:matrix(0.247191,0.007663,-0.007746,0.249880,0,0);-ms-transform:matrix(0.247191,0.007663,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.247191,0.007663,-0.007746,0.249880,0,0);}
.m7e_c01218{transform:matrix(0.247265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247265,0.000000,0.000000,0.250000,0,0);}
.m4f_c01218{transform:matrix(0.247581,0.007180,-0.007247,0.249895,0,0);-ms-transform:matrix(0.247581,0.007180,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.247581,0.007180,-0.007247,0.249895,0,0);}
.m5_c01218{transform:matrix(0.247601,0.007676,-0.007746,0.249880,0,0);-ms-transform:matrix(0.247601,0.007676,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.247601,0.007676,-0.007746,0.249880,0,0);}
.m30_c01218{transform:matrix(0.247706,0.007183,-0.007247,0.249895,0,0);-ms-transform:matrix(0.247706,0.007183,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.247706,0.007183,-0.007247,0.249895,0,0);}
.m6e_c01218{transform:matrix(0.248319,0.008948,-0.009003,0.249838,0,0);-ms-transform:matrix(0.248319,0.008948,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.248319,0.008948,-0.009003,0.249838,0,0);}
.m75_c01218{transform:matrix(0.248404,0.008951,-0.009003,0.249838,0,0);-ms-transform:matrix(0.248404,0.008951,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.248404,0.008951,-0.009003,0.249838,0,0);}
.m17_c01218{transform:matrix(0.248488,0.007960,-0.008004,0.249872,0,0);-ms-transform:matrix(0.248488,0.007960,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.248488,0.007960,-0.008004,0.249872,0,0);}
.m71_c01218{transform:matrix(0.248614,0.008959,-0.009003,0.249838,0,0);-ms-transform:matrix(0.248614,0.008959,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.248614,0.008959,-0.009003,0.249838,0,0);}
.m7f_c01218{transform:matrix(0.248780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248780,0.000000,0.000000,0.250000,0,0);}
.m52_c01218{transform:matrix(0.251094,0.007282,-0.007247,0.249895,0,0);-ms-transform:matrix(0.251094,0.007282,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.251094,0.007282,-0.007247,0.249895,0,0);}
.m2c_c01218{transform:matrix(0.251516,0.008057,-0.008004,0.249872,0,0);-ms-transform:matrix(0.251516,0.008057,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.251516,0.008057,-0.008004,0.249872,0,0);}
.m22_c01218{transform:matrix(0.251849,0.007304,-0.007247,0.249895,0,0);-ms-transform:matrix(0.251849,0.007304,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.251849,0.007304,-0.007247,0.249895,0,0);}
.m4c_c01218{transform:matrix(0.252359,0.007318,-0.007247,0.249895,0,0);-ms-transform:matrix(0.252359,0.007318,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.252359,0.007318,-0.007247,0.249895,0,0);}
.mc_c01218{transform:matrix(0.252914,0.007840,-0.007746,0.249880,0,0);-ms-transform:matrix(0.252914,0.007840,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.252914,0.007840,-0.007746,0.249880,0,0);}
.mb6_c01218{transform:matrix(0.253180,0.008110,-0.008004,0.249872,0,0);-ms-transform:matrix(0.253180,0.008110,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.253180,0.008110,-0.008004,0.249872,0,0);}
.m8f_c01218{transform:matrix(0.253291,0.007599,-0.007497,0.249888,0,0);-ms-transform:matrix(0.253291,0.007599,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.253291,0.007599,-0.007497,0.249888,0,0);}
.m81_c01218{transform:matrix(0.253905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253905,0.000000,0.000000,0.250000,0,0);}
.mb8_c01218{transform:matrix(0.256104,0.008204,-0.008004,0.249872,0,0);-ms-transform:matrix(0.256104,0.008204,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.256104,0.008204,-0.008004,0.249872,0,0);}
.m15_c01218{transform:matrix(0.256398,0.008213,-0.008004,0.249872,0,0);-ms-transform:matrix(0.256398,0.008213,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.256398,0.008213,-0.008004,0.249872,0,0);}
.m6_c01218{transform:matrix(0.256512,0.007952,-0.007746,0.249880,0,0);-ms-transform:matrix(0.256512,0.007952,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.256512,0.007952,-0.007746,0.249880,0,0);}
.mbb_c01218{transform:matrix(0.256918,0.008230,-0.008004,0.249872,0,0);-ms-transform:matrix(0.256918,0.008230,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.256918,0.008230,-0.008004,0.249872,0,0);}
.m4_c01218{transform:matrix(0.256967,0.007966,-0.007746,0.249880,0,0);-ms-transform:matrix(0.256967,0.007966,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.256967,0.007966,-0.007746,0.249880,0,0);}
.m94_c01218{transform:matrix(0.257014,0.009519,-0.009253,0.249829,0,0);-ms-transform:matrix(0.257014,0.009519,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.257014,0.009519,-0.009253,0.249829,0,0);}
.mf_c01218{transform:matrix(0.258631,0.008018,-0.007746,0.249880,0,0);-ms-transform:matrix(0.258631,0.008018,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.258631,0.008018,-0.007746,0.249880,0,0);}
.m8a_c01218{transform:matrix(0.260308,0.007809,-0.007497,0.249888,0,0);-ms-transform:matrix(0.260308,0.007809,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.260308,0.007809,-0.007497,0.249888,0,0);}
.mb4_c01218{transform:matrix(0.260350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260350,0.000000,0.000000,0.250000,0,0);}
.mb7_c01218{transform:matrix(0.260691,0.008350,-0.008004,0.249872,0,0);-ms-transform:matrix(0.260691,0.008350,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.260691,0.008350,-0.008004,0.249872,0,0);}
.m57_c01218{transform:matrix(0.260955,0.008090,-0.007746,0.249880,0,0);-ms-transform:matrix(0.260955,0.008090,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.260955,0.008090,-0.007746,0.249880,0,0);}
.mb_c01218{transform:matrix(0.261240,0.008098,-0.007746,0.249880,0,0);-ms-transform:matrix(0.261240,0.008098,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.261240,0.008098,-0.007746,0.249880,0,0);}
.m82_c01218{transform:matrix(0.262300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262300,0.000000,0.000000,0.250000,0,0);}
.m73_c01218{transform:matrix(0.264184,0.009520,-0.009003,0.249838,0,0);-ms-transform:matrix(0.264184,0.009520,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.264184,0.009520,-0.009003,0.249838,0,0);}
.m50_c01218{transform:matrix(0.264864,0.007681,-0.007247,0.249895,0,0);-ms-transform:matrix(0.264864,0.007681,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.264864,0.007681,-0.007247,0.249895,0,0);}
.mb1_c01218{transform:matrix(0.266256,0.014126,-0.013245,0.249649,0,0);-ms-transform:matrix(0.266256,0.014126,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.266256,0.014126,-0.013245,0.249649,0,0);}
.m8d_c01218{transform:matrix(0.267225,0.008017,-0.007497,0.249888,0,0);-ms-transform:matrix(0.267225,0.008017,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.267225,0.008017,-0.007497,0.249888,0,0);}
.m90_c01218{transform:matrix(0.268674,0.008060,-0.007497,0.249888,0,0);-ms-transform:matrix(0.268674,0.008060,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.268674,0.008060,-0.007497,0.249888,0,0);}
.m53_c01218{transform:matrix(0.269422,0.007813,-0.007247,0.249895,0,0);-ms-transform:matrix(0.269422,0.007813,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.269422,0.007813,-0.007247,0.249895,0,0);}
.m93_c01218{transform:matrix(0.269950,0.009998,-0.009253,0.249829,0,0);-ms-transform:matrix(0.269950,0.009998,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.269950,0.009998,-0.009253,0.249829,0,0);}
.m8b_c01218{transform:matrix(0.270408,0.008112,-0.007497,0.249888,0,0);-ms-transform:matrix(0.270408,0.008112,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.270408,0.008112,-0.007497,0.249888,0,0);}
.mb3_c01218{transform:matrix(0.271563,0.014407,-0.013245,0.249649,0,0);-ms-transform:matrix(0.271563,0.014407,-0.013245,0.249649,0,0);-webkit-transform:matrix(0.271563,0.014407,-0.013245,0.249649,0,0);}
.m97_c01218{transform:matrix(0.271796,0.004892,-0.004499,0.249960,0,0);-ms-transform:matrix(0.271796,0.004892,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.271796,0.004892,-0.004499,0.249960,0,0);}
.m13_c01218{transform:matrix(0.272664,0.008453,-0.007746,0.249880,0,0);-ms-transform:matrix(0.272664,0.008453,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.272664,0.008453,-0.007746,0.249880,0,0);}
.m8c_c01218{transform:matrix(0.273127,0.008194,-0.007497,0.249888,0,0);-ms-transform:matrix(0.273127,0.008194,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.273127,0.008194,-0.007497,0.249888,0,0);}
.m10_c01218{transform:matrix(0.273644,0.008483,-0.007746,0.249880,0,0);-ms-transform:matrix(0.273644,0.008483,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.273644,0.008483,-0.007746,0.249880,0,0);}
.m9_c01218{transform:matrix(0.274008,0.008494,-0.007746,0.249880,0,0);-ms-transform:matrix(0.274008,0.008494,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.274008,0.008494,-0.007746,0.249880,0,0);}
.maf_c01218{transform:matrix(0.274394,0.012085,-0.011000,0.249758,0,0);-ms-transform:matrix(0.274394,0.012085,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.274394,0.012085,-0.011000,0.249758,0,0);}
.m12_c01218{transform:matrix(0.275323,0.008535,-0.007746,0.249880,0,0);-ms-transform:matrix(0.275323,0.008535,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.275323,0.008535,-0.007746,0.249880,0,0);}
.m51_c01218{transform:matrix(0.276189,0.008009,-0.007247,0.249895,0,0);-ms-transform:matrix(0.276189,0.008009,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.276189,0.008009,-0.007247,0.249895,0,0);}
.m91_c01218{transform:matrix(0.276376,0.008291,-0.007497,0.249888,0,0);-ms-transform:matrix(0.276376,0.008291,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.276376,0.008291,-0.007497,0.249888,0,0);}
.m59_c01218{transform:matrix(0.276660,0.010247,-0.009253,0.249829,0,0);-ms-transform:matrix(0.276660,0.010247,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.276660,0.010247,-0.009253,0.249829,0,0);}
.m8e_c01218{transform:matrix(0.277285,0.008319,-0.007497,0.249888,0,0);-ms-transform:matrix(0.277285,0.008319,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.277285,0.008319,-0.007497,0.249888,0,0);}
.m56_c01218{transform:matrix(0.285123,0.008839,-0.007746,0.249880,0,0);-ms-transform:matrix(0.285123,0.008839,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.285123,0.008839,-0.007746,0.249880,0,0);}
.ma4_c01218{transform:matrix(0.295533,0.013016,-0.011000,0.249758,0,0);-ms-transform:matrix(0.295533,0.013016,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.295533,0.013016,-0.011000,0.249758,0,0);}
.m95_c01218{transform:matrix(0.296662,0.010987,-0.009253,0.249829,0,0);-ms-transform:matrix(0.296662,0.010987,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.296662,0.010987,-0.009253,0.249829,0,0);}
.m92_c01218{transform:matrix(0.300054,0.011113,-0.009253,0.249829,0,0);-ms-transform:matrix(0.300054,0.011113,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.300054,0.011113,-0.009253,0.249829,0,0);}
.m1_c01218{transform:matrix(0.300635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300635,0.000000,0.000000,0.250000,0,0);}
.m58_c01218{transform:matrix(0.303589,0.009411,-0.007746,0.249880,0,0);-ms-transform:matrix(0.303589,0.009411,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.303589,0.009411,-0.007746,0.249880,0,0);}
.m31_c01218{transform:matrix(0.307721,0.008924,-0.007247,0.249895,0,0);-ms-transform:matrix(0.307721,0.008924,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.307721,0.008924,-0.007247,0.249895,0,0);}
.m7a_c01218{transform:matrix(0.309500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309500,0.000000,0.000000,0.250000,0,0);}
.m24_c01218{transform:matrix(0.316947,0.009191,-0.007247,0.249895,0,0);-ms-transform:matrix(0.316947,0.009191,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.316947,0.009191,-0.007247,0.249895,0,0);}
.m5b_c01218{transform:matrix(0.323014,0.011963,-0.009253,0.249829,0,0);-ms-transform:matrix(0.323014,0.011963,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.323014,0.011963,-0.009253,0.249829,0,0);}
.m6a_c01218{transform:matrix(0.333139,0.008995,-0.006748,0.249909,0,0);-ms-transform:matrix(0.333139,0.008995,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.333139,0.008995,-0.006748,0.249909,0,0);}
.m60_c01218{transform:matrix(0.333227,0.011341,-0.008504,0.249855,0,0);-ms-transform:matrix(0.333227,0.011341,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.333227,0.011341,-0.008504,0.249855,0,0);}
.m8_c01218{transform:matrix(0.347803,0.010782,-0.007746,0.249880,0,0);-ms-transform:matrix(0.347803,0.010782,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.347803,0.010782,-0.007746,0.249880,0,0);}
.m18_c01218{transform:matrix(0.353594,0.011326,-0.008004,0.249872,0,0);-ms-transform:matrix(0.353594,0.011326,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.353594,0.011326,-0.008004,0.249872,0,0);}
.m2f_c01218{transform:matrix(0.359174,0.010416,-0.007247,0.249895,0,0);-ms-transform:matrix(0.359174,0.010416,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.359174,0.010416,-0.007247,0.249895,0,0);}
.m96_c01218{transform:matrix(0.361122,0.013375,-0.009253,0.249829,0,0);-ms-transform:matrix(0.361122,0.013375,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.361122,0.013375,-0.009253,0.249829,0,0);}
.m32_c01218{transform:matrix(0.409408,0.011873,-0.007247,0.249895,0,0);-ms-transform:matrix(0.409408,0.011873,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.409408,0.011873,-0.007247,0.249895,0,0);}
.m0_c01218{transform:matrix(0.490410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490410,0.000000,0.000000,0.250000,0,0);}
.m4e_c01218{transform:matrix(0.504968,0.014644,-0.007247,0.249895,0,0);-ms-transform:matrix(0.504968,0.014644,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.504968,0.014644,-0.007247,0.249895,0,0);}
.m43_c01218{transform:matrix(0.518047,0.015023,-0.007247,0.249895,0,0);-ms-transform:matrix(0.518047,0.015023,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.518047,0.015023,-0.007247,0.249895,0,0);}
.m5f_c01218{transform:matrix(0.555189,0.018895,-0.008504,0.249855,0,0);-ms-transform:matrix(0.555189,0.018895,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.555189,0.018895,-0.008504,0.249855,0,0);}
.m5c_c01218{transform:matrix(1.032552,0.038243,-0.009253,0.249829,0,0);-ms-transform:matrix(1.032552,0.038243,-0.009253,0.249829,0,0);-webkit-transform:matrix(1.032552,0.038243,-0.009253,0.249829,0,0);}
.m5d_c01218{transform:matrix(2.272624,0.077347,-0.008504,0.249855,0,0);-ms-transform:matrix(2.272624,0.077347,-0.008504,0.249855,0,0);-webkit-transform:matrix(2.272624,0.077347,-0.008504,0.249855,0,0);}
.m19_c01218{transform:matrix(2.667712,0.085452,-0.008004,0.249872,0,0);-ms-transform:matrix(2.667712,0.085452,-0.008004,0.249872,0,0);-webkit-transform:matrix(2.667712,0.085452,-0.008004,0.249872,0,0);}
.v0_c01218{vertical-align:0.000000px;}
.ls0_c01218{letter-spacing:0.000000px;}
.sc__c01218{text-shadow:none;}
.sc0_c01218{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__c01218{-webkit-text-stroke:0px transparent;}
.sc0_c01218{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01218{word-spacing:0.000000px;}
.fc0_c01218{color:transparent;}
.fs4_c01218{font-size:35.982446px;}
.fsd_c01218{font-size:35.988658px;}
.fs1b_c01218{font-size:36.000000px;}
.fse_c01218{font-size:41.982293px;}
.fs12_c01218{font-size:54.000000px;}
.fs15_c01218{font-size:65.979207px;}
.fsb_c01218{font-size:66.031705px;}
.fsc_c01218{font-size:71.977316px;}
.fs19_c01218{font-size:71.997732px;}
.fs1a_c01218{font-size:72.029154px;}
.fsa_c01218{font-size:72.030270px;}
.fs14_c01218{font-size:72.032393px;}
.fs2_c01218{font-size:72.034588px;}
.fs3_c01218{font-size:77.961966px;}
.fs10_c01218{font-size:77.972578px;}
.fs13_c01218{font-size:78.000000px;}
.fs7_c01218{font-size:78.032792px;}
.fs1_c01218{font-size:78.037470px;}
.fs16_c01218{font-size:84.013607px;}
.fsf_c01218{font-size:84.030612px;}
.fs5_c01218{font-size:84.035315px;}
.fs6_c01218{font-size:89.956114px;}
.fs17_c01218{font-size:90.014579px;}
.fs9_c01218{font-size:90.037837px;}
.fs0_c01218{font-size:96.000000px;}
.fs18_c01218{font-size:101.996787px;}
.fs11_c01218{font-size:102.000000px;}
.fs8_c01218{font-size:120.050449px;}
.y0_c01218{bottom:0.000000px;}
.yba_c01218{bottom:60.596028px;}
.yb9_c01218{bottom:63.431820px;}
.yb8_c01218{bottom:66.208524px;}
.yb7_c01218{bottom:67.339500px;}
.yb6_c01218{bottom:69.550764px;}
.yb5_c01218{bottom:72.907500px;}
.yb0_c01218{bottom:80.983182px;}
.yb4_c01218{bottom:100.975500px;}
.yaf_c01218{bottom:105.315410px;}
.yae_c01218{bottom:112.957482px;}
.yad_c01218{bottom:116.323416px;}
.yac_c01218{bottom:117.811188px;}
.yab_c01218{bottom:120.204612px;}
.yaa_c01218{bottom:122.399244px;}
.ya9_c01218{bottom:126.089964px;}
.ya8_c01218{bottom:131.453652px;}
.ya7_c01218{bottom:138.160044px;}
.ya6_c01218{bottom:139.654944px;}
.ya5_c01218{bottom:142.586730px;}
.ya4_c01218{bottom:145.810500px;}
.ya3_c01218{bottom:162.061773px;}
.ya2_c01218{bottom:168.478635px;}
.ya1_c01218{bottom:172.655478px;}
.ya0_c01218{bottom:174.816615px;}
.y9f_c01218{bottom:176.211399px;}
.y9e_c01218{bottom:179.840988px;}
.yb3_c01218{bottom:190.935495px;}
.yb2_c01218{bottom:193.236304px;}
.yb1_c01218{bottom:197.406000px;}
.y9d_c01218{bottom:199.947384px;}
.y9c_c01218{bottom:200.499588px;}
.y9b_c01218{bottom:201.950946px;}
.y9a_c01218{bottom:204.090399px;}
.y99_c01218{bottom:204.926535px;}
.y98_c01218{bottom:206.666388px;}
.y97_c01218{bottom:208.444500px;}
.y96_c01218{bottom:270.672618px;}
.y95_c01218{bottom:274.811197px;}
.y94_c01218{bottom:276.040966px;}
.y93_c01218{bottom:278.849544px;}
.y92_c01218{bottom:282.168000px;}
.y91_c01218{bottom:300.098805px;}
.y90_c01218{bottom:302.725185px;}
.y8f_c01218{bottom:304.086570px;}
.y8e_c01218{bottom:307.360905px;}
.y8d_c01218{bottom:310.075845px;}
.y8c_c01218{bottom:311.721855px;}
.y8b_c01218{bottom:314.670885px;}
.y8a_c01218{bottom:316.629960px;}
.y89_c01218{bottom:318.178635px;}
.y88_c01218{bottom:318.880500px;}
.y87_c01218{bottom:358.972500px;}
.y86_c01218{bottom:367.503000px;}
.y85_c01218{bottom:369.493500px;}
.y84_c01218{bottom:371.799000px;}
.y83_c01218{bottom:373.732500px;}
.y82_c01218{bottom:378.753000px;}
.y81_c01218{bottom:381.826500px;}
.y80_c01218{bottom:383.413500px;}
.y7f_c01218{bottom:386.106000px;}
.y7e_c01218{bottom:389.166000px;}
.y7d_c01218{bottom:390.969000px;}
.y7c_c01218{bottom:391.779000px;}
.y7b_c01218{bottom:463.320000px;}
.y7a_c01218{bottom:487.347000px;}
.y79_c01218{bottom:510.345492px;}
.y78_c01218{bottom:512.224422px;}
.y77_c01218{bottom:514.307688px;}
.y76_c01218{bottom:515.543100px;}
.y75_c01218{bottom:516.728886px;}
.y74_c01218{bottom:521.532726px;}
.y73_c01218{bottom:523.486932px;}
.y72_c01218{bottom:525.492870px;}
.y71_c01218{bottom:527.875188px;}
.y70_c01218{bottom:529.051254px;}
.y6f_c01218{bottom:532.588092px;}
.y6e_c01218{bottom:534.056514px;}
.y6d_c01218{bottom:534.880500px;}
.y6c_c01218{bottom:556.909574px;}
.y6b_c01218{bottom:559.718505px;}
.y6a_c01218{bottom:581.476695px;}
.y69_c01218{bottom:584.145443px;}
.y68_c01218{bottom:585.067385px;}
.y67_c01218{bottom:588.030567px;}
.y66_c01218{bottom:589.567016px;}
.y65_c01218{bottom:593.417472px;}
.y64_c01218{bottom:596.072814px;}
.y63_c01218{bottom:597.815084px;}
.y62_c01218{bottom:600.220500px;}
.y61_c01218{bottom:629.484933px;}
.y60_c01218{bottom:630.796908px;}
.y5f_c01218{bottom:631.319862px;}
.y5e_c01218{bottom:632.887500px;}
.y5d_c01218{bottom:633.569046px;}
.y5c_c01218{bottom:644.251020px;}
.y5b_c01218{bottom:645.436777px;}
.y5a_c01218{bottom:649.099500px;}
.y59_c01218{bottom:697.593201px;}
.y58_c01218{bottom:700.959941px;}
.y57_c01218{bottom:704.442000px;}
.y56_c01218{bottom:721.949973px;}
.y55_c01218{bottom:723.303888px;}
.y54_c01218{bottom:727.934103px;}
.y53_c01218{bottom:730.220490px;}
.y52_c01218{bottom:733.915884px;}
.y51_c01218{bottom:735.539407px;}
.y50_c01218{bottom:736.864330px;}
.y4f_c01218{bottom:739.833373px;}
.y4e_c01218{bottom:740.730154px;}
.y4d_c01218{bottom:742.452943px;}
.y4c_c01218{bottom:766.862448px;}
.y4b_c01218{bottom:767.933926px;}
.y4a_c01218{bottom:770.609415px;}
.y49_c01218{bottom:772.347678px;}
.y48_c01218{bottom:774.873342px;}
.y47_c01218{bottom:796.262584px;}
.y46_c01218{bottom:797.029791px;}
.y45_c01218{bottom:798.015382px;}
.y44_c01218{bottom:800.795269px;}
.y43_c01218{bottom:802.142856px;}
.y42_c01218{bottom:804.554766px;}
.y41_c01218{bottom:806.173435px;}
.y40_c01218{bottom:807.629137px;}
.y3f_c01218{bottom:810.944253px;}
.y3e_c01218{bottom:811.638099px;}
.y3d_c01218{bottom:812.979073px;}
.y3c_c01218{bottom:814.030413px;}
.y3b_c01218{bottom:834.470845px;}
.y3a_c01218{bottom:835.643629px;}
.y39_c01218{bottom:837.622515px;}
.y38_c01218{bottom:839.120284px;}
.y37_c01218{bottom:839.948311px;}
.y36_c01218{bottom:841.656067px;}
.y35_c01218{bottom:842.229256px;}
.y34_c01218{bottom:843.362431px;}
.y33_c01218{bottom:845.068186px;}
.y32_c01218{bottom:846.109071px;}
.y31_c01218{bottom:846.991780px;}
.y30_c01218{bottom:880.691709px;}
.y2f_c01218{bottom:882.100500px;}
.y2e_c01218{bottom:900.887400px;}
.y2d_c01218{bottom:902.288424px;}
.y2c_c01218{bottom:906.825672px;}
.y2b_c01218{bottom:907.916232px;}
.y2a_c01218{bottom:908.987880px;}
.y29_c01218{bottom:913.024584px;}
.y28_c01218{bottom:917.043432px;}
.y27_c01218{bottom:919.164696px;}
.y26_c01218{bottom:920.154840px;}
.y25_c01218{bottom:921.249000px;}
.y24_c01218{bottom:970.204849px;}
.y23_c01218{bottom:971.058885px;}
.y22_c01218{bottom:976.487119px;}
.y21_c01218{bottom:977.796904px;}
.y20_c01218{bottom:980.060862px;}
.y1f_c01218{bottom:981.329931px;}
.y1e_c01218{bottom:983.867155px;}
.y1d_c01218{bottom:984.491033px;}
.y1c_c01218{bottom:987.038132px;}
.y1b_c01218{bottom:987.911090px;}
.y1a_c01218{bottom:989.559000px;}
.y19_c01218{bottom:1038.085389px;}
.y18_c01218{bottom:1040.054108px;}
.y17_c01218{bottom:1050.678024px;}
.y16_c01218{bottom:1051.755000px;}
.y15_c01218{bottom:1054.905000px;}
.y14_c01218{bottom:1097.293126px;}
.y13_c01218{bottom:1100.008812px;}
.y12_c01218{bottom:1102.400498px;}
.y11_c01218{bottom:1102.968660px;}
.y10_c01218{bottom:1105.371308px;}
.yf_c01218{bottom:1106.574043px;}
.ye_c01218{bottom:1107.732013px;}
.yd_c01218{bottom:1109.521268px;}
.yc_c01218{bottom:1110.101973px;}
.yb_c01218{bottom:1111.852993px;}
.ya_c01218{bottom:1127.722450px;}
.y9_c01218{bottom:1128.754844px;}
.y8_c01218{bottom:1132.234067px;}
.y7_c01218{bottom:1133.247394px;}
.y6_c01218{bottom:1136.354292px;}
.y5_c01218{bottom:1137.719486px;}
.y4_c01218{bottom:1140.771978px;}
.y3_c01218{bottom:1143.179841px;}
.y2_c01218{bottom:1144.543500px;}
.y1_c01218{bottom:1214.737500px;}
.h6_c01218{height:35.982446px;}
.hf_c01218{height:35.988658px;}
.h1d_c01218{height:36.000000px;}
.h10_c01218{height:41.982293px;}
.h14_c01218{height:54.000000px;}
.h17_c01218{height:65.979207px;}
.hd_c01218{height:66.031705px;}
.he_c01218{height:71.977316px;}
.h1b_c01218{height:71.997732px;}
.h1c_c01218{height:72.029154px;}
.hc_c01218{height:72.030270px;}
.h16_c01218{height:72.032393px;}
.h4_c01218{height:72.034588px;}
.h5_c01218{height:77.961966px;}
.h12_c01218{height:77.972578px;}
.h15_c01218{height:78.000000px;}
.h9_c01218{height:78.032792px;}
.h3_c01218{height:78.037470px;}
.h18_c01218{height:84.013607px;}
.h11_c01218{height:84.030612px;}
.h7_c01218{height:84.035315px;}
.h8_c01218{height:89.956114px;}
.h19_c01218{height:90.014579px;}
.hb_c01218{height:90.037837px;}
.h2_c01218{height:96.000000px;}
.h1a_c01218{height:101.996787px;}
.h13_c01218{height:102.000000px;}
.ha_c01218{height:120.050449px;}
.h1_c01218{height:1258.500000px;}
.h0_c01218{height:1258.740000px;}
.w0_c01218{width:904.200000px;}
.w1_c01218{width:904.500000px;}
.x0_c01218{left:0.000000px;}
.x95_c01218{left:73.999500px;}
.x83_c01218{left:77.482500px;}
.x5b_c01218{left:87.612000px;}
.x49_c01218{left:91.368419px;}
.x19_c01218{left:99.039000px;}
.x7b_c01218{left:103.348500px;}
.x72_c01218{left:105.297000px;}
.x2e_c01218{left:108.659027px;}
.x39_c01218{left:116.568096px;}
.x24_c01218{left:119.874000px;}
.x7c_c01218{left:126.744000px;}
.x73_c01218{left:128.427000px;}
.x65_c01218{left:132.203611px;}
.x71_c01218{left:136.350000px;}
.x86_c01218{left:137.821347px;}
.x2f_c01218{left:142.617484px;}
.xc_c01218{left:147.069942px;}
.x4a_c01218{left:148.807766px;}
.x3a_c01218{left:150.491638px;}
.x25_c01218{left:154.032308px;}
.x1a_c01218{left:155.863500px;}
.x66_c01218{left:172.952322px;}
.x5c_c01218{left:176.701500px;}
.x4b_c01218{left:178.695896px;}
.x74_c01218{left:179.958000px;}
.x30_c01218{left:182.651464px;}
.x26_c01218{left:184.943366px;}
.x1b_c01218{left:185.965500px;}
.x3b_c01218{left:193.729615px;}
.xd_c01218{left:211.933487px;}
.x3c_c01218{left:216.102310px;}
.xe_c01218{left:233.426637px;}
.x70_c01218{left:236.790000px;}
.x63_c01218{left:237.813660px;}
.x8b_c01218{left:239.152101px;}
.x5d_c01218{left:241.230000px;}
.x7d_c01218{left:243.669000px;}
.x31_c01218{left:248.252163px;}
.x27_c01218{left:251.166576px;}
.x3_c01218{left:255.525000px;}
.x44_c01218{left:262.955503px;}
.x52_c01218{left:264.486000px;}
.x75_c01218{left:267.369000px;}
.x87_c01218{left:270.072273px;}
.x67_c01218{left:271.099577px;}
.x1c_c01218{left:273.796500px;}
.x4c_c01218{left:277.660025px;}
.x2d_c01218{left:281.214000px;}
.x96_c01218{left:283.133157px;}
.x32_c01218{left:291.830947px;}
.x1d_c01218{left:295.309500px;}
.x4_c01218{left:299.514000px;}
.x68_c01218{left:303.735408px;}
.x33_c01218{left:313.873861px;}
.x64_c01218{left:315.829206px;}
.x84_c01218{left:319.377000px;}
.x4d_c01218{left:321.845763px;}
.x3d_c01218{left:323.065633px;}
.x88_c01218{left:326.948307px;}
.x17_c01218{left:329.207760px;}
.x14_c01218{left:331.111500px;}
.x45_c01218{left:337.260759px;}
.x57_c01218{left:340.199103px;}
.x54_c01218{left:341.301000px;}
.xf_c01218{left:342.544122px;}
.x76_c01218{left:344.301000px;}
.x82_c01218{left:353.709312px;}
.x94_c01218{left:361.260000px;}
.x1_c01218{left:370.440000px;}
.x4e_c01218{left:375.965697px;}
.x5_c01218{left:377.187000px;}
.x34_c01218{left:379.543560px;}
.x1e_c01218{left:382.800000px;}
.x10_c01218{left:387.105655px;}
.x46_c01218{left:388.400364px;}
.x77_c01218{left:389.643000px;}
.x18_c01218{left:394.742839px;}
.x7e_c01218{left:396.837000px;}
.x35_c01218{left:411.409344px;}
.x3e_c01218{left:422.193348px;}
.x69_c01218{left:425.509512px;}
.x1f_c01218{left:426.561000px;}
.x15_c01218{left:429.450562px;}
.x89_c01218{left:436.872252px;}
.x85_c01218{left:438.235500px;}
.x55_c01218{left:440.194507px;}
.x58_c01218{left:441.381393px;}
.x2_c01218{left:450.360000px;}
.x59_c01218{left:456.747012px;}
.x97_c01218{left:458.348267px;}
.x16_c01218{left:463.072407px;}
.x47_c01218{left:467.095467px;}
.x36_c01218{left:469.009846px;}
.x56_c01218{left:472.209960px;}
.x6_c01218{left:475.654500px;}
.x78_c01218{left:477.456000px;}
.x6a_c01218{left:479.738728px;}
.x5e_c01218{left:482.185500px;}
.x53_c01218{left:485.415000px;}
.x7f_c01218{left:487.335000px;}
.x5a_c01218{left:495.295925px;}
.x11_c01218{left:497.129280px;}
.x48_c01218{left:498.607399px;}
.x3f_c01218{left:499.978824px;}
.x28_c01218{left:502.650840px;}
.x20_c01218{left:504.628500px;}
.x7_c01218{left:519.693000px;}
.x29_c01218{left:536.106351px;}
.x5f_c01218{left:539.091000px;}
.x40_c01218{left:543.444801px;}
.x37_c01218{left:545.115958px;}
.x8c_c01218{left:547.138806px;}
.x21_c01218{left:549.793500px;}
.x2a_c01218{left:570.152271px;}
.x4f_c01218{left:575.348911px;}
.x12_c01218{left:585.710754px;}
.x38_c01218{left:590.215873px;}
.x80_c01218{left:596.479500px;}
.x8a_c01218{left:605.720475px;}
.x6b_c01218{left:613.045288px;}
.x92_c01218{left:614.914500px;}
.x8_c01218{left:619.915500px;}
.x8d_c01218{left:630.934926px;}
.x41_c01218{left:633.142624px;}
.x81_c01218{left:641.859000px;}
.x6c_c01218{left:645.950850px;}
.x60_c01218{left:648.838500px;}
.x9_c01218{left:652.603500px;}
.x42_c01218{left:664.954297px;}
.x79_c01218{left:676.150500px;}
.x6d_c01218{left:680.233533px;}
.x61_c01218{left:682.984500px;}
.x13_c01218{left:686.293716px;}
.x43_c01218{left:689.701362px;}
.x93_c01218{left:693.509326px;}
.x2b_c01218{left:711.799482px;}
.x50_c01218{left:729.679431px;}
.x8e_c01218{left:735.104652px;}
.x22_c01218{left:736.974000px;}
.x6e_c01218{left:738.044164px;}
.x7a_c01218{left:742.035000px;}
.x2c_c01218{left:755.537700px;}
.xa_c01218{left:764.836500px;}
.x23_c01218{left:766.423500px;}
.x8f_c01218{left:768.883839px;}
.x51_c01218{left:774.813126px;}
.x62_c01218{left:781.827000px;}
.x6f_c01218{left:790.184472px;}
.xb_c01218{left:798.139500px;}
.x91_c01218{left:832.632507px;}
.x90_c01218{left:845.305841px;}
@media print{
.v0_c01218{vertical-align:0.000000pt;}
.ls0_c01218{letter-spacing:0.000000pt;}
.ws0_c01218{word-spacing:0.000000pt;}
.fs4_c01218{font-size:31.984396pt;}
.fsd_c01218{font-size:31.989918pt;}
.fs1b_c01218{font-size:32.000000pt;}
.fse_c01218{font-size:37.317594pt;}
.fs12_c01218{font-size:48.000000pt;}
.fs15_c01218{font-size:58.648184pt;}
.fsb_c01218{font-size:58.694849pt;}
.fsc_c01218{font-size:63.979837pt;}
.fs19_c01218{font-size:63.997984pt;}
.fs1a_c01218{font-size:64.025915pt;}
.fsa_c01218{font-size:64.026906pt;}
.fs14_c01218{font-size:64.028794pt;}
.fs2_c01218{font-size:64.030745pt;}
.fs3_c01218{font-size:69.299525pt;}
.fs10_c01218{font-size:69.308958pt;}
.fs13_c01218{font-size:69.333333pt;}
.fs7_c01218{font-size:69.362482pt;}
.fs1_c01218{font-size:69.366640pt;}
.fs16_c01218{font-size:74.678762pt;}
.fsf_c01218{font-size:74.693878pt;}
.fs5_c01218{font-size:74.698057pt;}
.fs6_c01218{font-size:79.960990pt;}
.fs17_c01218{font-size:80.012959pt;}
.fs9_c01218{font-size:80.033633pt;}
.fs0_c01218{font-size:85.333333pt;}
.fs18_c01218{font-size:90.663811pt;}
.fs11_c01218{font-size:90.666667pt;}
.fs8_c01218{font-size:106.711511pt;}
.y0_c01218{bottom:0.000000pt;}
.yba_c01218{bottom:53.863136pt;}
.yb9_c01218{bottom:56.383840pt;}
.yb8_c01218{bottom:58.852021pt;}
.yb7_c01218{bottom:59.857333pt;}
.yb6_c01218{bottom:61.822901pt;}
.yb5_c01218{bottom:64.806667pt;}
.yb0_c01218{bottom:71.985051pt;}
.yb4_c01218{bottom:89.756000pt;}
.yaf_c01218{bottom:93.613697pt;}
.yae_c01218{bottom:100.406651pt;}
.yad_c01218{bottom:103.398592pt;}
.yac_c01218{bottom:104.721056pt;}
.yab_c01218{bottom:106.848544pt;}
.yaa_c01218{bottom:108.799328pt;}
.ya9_c01218{bottom:112.079968pt;}
.ya8_c01218{bottom:116.847691pt;}
.ya7_c01218{bottom:122.808928pt;}
.ya6_c01218{bottom:124.137728pt;}
.ya5_c01218{bottom:126.743760pt;}
.ya4_c01218{bottom:129.609333pt;}
.ya3_c01218{bottom:144.054909pt;}
.ya2_c01218{bottom:149.758787pt;}
.ya1_c01218{bottom:153.471536pt;}
.ya0_c01218{bottom:155.392547pt;}
.y9f_c01218{bottom:156.632355pt;}
.y9e_c01218{bottom:159.858656pt;}
.yb3_c01218{bottom:169.720440pt;}
.yb2_c01218{bottom:171.765604pt;}
.yb1_c01218{bottom:175.472000pt;}
.y9d_c01218{bottom:177.731008pt;}
.y9c_c01218{bottom:178.221856pt;}
.y9b_c01218{bottom:179.511952pt;}
.y9a_c01218{bottom:181.413688pt;}
.y99_c01218{bottom:182.156920pt;}
.y98_c01218{bottom:183.703456pt;}
.y97_c01218{bottom:185.284000pt;}
.y96_c01218{bottom:240.597883pt;}
.y95_c01218{bottom:244.276620pt;}
.y94_c01218{bottom:245.369748pt;}
.y93_c01218{bottom:247.866261pt;}
.y92_c01218{bottom:250.816000pt;}
.y91_c01218{bottom:266.754493pt;}
.y90_c01218{bottom:269.089053pt;}
.y8f_c01218{bottom:270.299173pt;}
.y8e_c01218{bottom:273.209693pt;}
.y8d_c01218{bottom:275.622973pt;}
.y8c_c01218{bottom:277.086093pt;}
.y8b_c01218{bottom:279.707453pt;}
.y8a_c01218{bottom:281.448853pt;}
.y89_c01218{bottom:282.825453pt;}
.y88_c01218{bottom:283.449333pt;}
.y87_c01218{bottom:319.086667pt;}
.y86_c01218{bottom:326.669333pt;}
.y85_c01218{bottom:328.438667pt;}
.y84_c01218{bottom:330.488000pt;}
.y83_c01218{bottom:332.206667pt;}
.y82_c01218{bottom:336.669333pt;}
.y81_c01218{bottom:339.401333pt;}
.y80_c01218{bottom:340.812000pt;}
.y7f_c01218{bottom:343.205333pt;}
.y7e_c01218{bottom:345.925333pt;}
.y7d_c01218{bottom:347.528000pt;}
.y7c_c01218{bottom:348.248000pt;}
.y7b_c01218{bottom:411.840000pt;}
.y7a_c01218{bottom:433.197333pt;}
.y79_c01218{bottom:453.640437pt;}
.y78_c01218{bottom:455.310597pt;}
.y77_c01218{bottom:457.162389pt;}
.y76_c01218{bottom:458.260533pt;}
.y75_c01218{bottom:459.314565pt;}
.y74_c01218{bottom:463.584645pt;}
.y73_c01218{bottom:465.321717pt;}
.y72_c01218{bottom:467.104773pt;}
.y71_c01218{bottom:469.222389pt;}
.y70_c01218{bottom:470.267781pt;}
.y6f_c01218{bottom:473.411637pt;}
.y6e_c01218{bottom:474.716901pt;}
.y6d_c01218{bottom:475.449333pt;}
.y6c_c01218{bottom:495.030732pt;}
.y6b_c01218{bottom:497.527560pt;}
.y6a_c01218{bottom:516.868173pt;}
.y69_c01218{bottom:519.240393pt;}
.y68_c01218{bottom:520.059897pt;}
.y67_c01218{bottom:522.693837pt;}
.y66_c01218{bottom:524.059569pt;}
.y65_c01218{bottom:527.482197pt;}
.y64_c01218{bottom:529.842501pt;}
.y63_c01218{bottom:531.391185pt;}
.y62_c01218{bottom:533.529333pt;}
.y61_c01218{bottom:559.542163pt;}
.y60_c01218{bottom:560.708363pt;}
.y5f_c01218{bottom:561.173211pt;}
.y5e_c01218{bottom:562.566667pt;}
.y5d_c01218{bottom:563.172485pt;}
.y5c_c01218{bottom:572.667573pt;}
.y5b_c01218{bottom:573.721580pt;}
.y5a_c01218{bottom:576.977333pt;}
.y59_c01218{bottom:620.082845pt;}
.y58_c01218{bottom:623.075503pt;}
.y57_c01218{bottom:626.170667pt;}
.y56_c01218{bottom:641.733309pt;}
.y55_c01218{bottom:642.936789pt;}
.y54_c01218{bottom:647.052536pt;}
.y53_c01218{bottom:649.084880pt;}
.y52_c01218{bottom:652.369675pt;}
.y51_c01218{bottom:653.812807pt;}
.y50_c01218{bottom:654.990516pt;}
.y4f_c01218{bottom:657.629665pt;}
.y4e_c01218{bottom:658.426804pt;}
.y4d_c01218{bottom:659.958172pt;}
.y4c_c01218{bottom:681.655509pt;}
.y4b_c01218{bottom:682.607935pt;}
.y4a_c01218{bottom:684.986147pt;}
.y49_c01218{bottom:686.531269pt;}
.y48_c01218{bottom:688.776304pt;}
.y47_c01218{bottom:707.788964pt;}
.y46_c01218{bottom:708.470925pt;}
.y45_c01218{bottom:709.347007pt;}
.y44_c01218{bottom:711.818017pt;}
.y43_c01218{bottom:713.015872pt;}
.y42_c01218{bottom:715.159792pt;}
.y41_c01218{bottom:716.598609pt;}
.y40_c01218{bottom:717.892567pt;}
.y3f_c01218{bottom:720.839336pt;}
.y3e_c01218{bottom:721.456088pt;}
.y3d_c01218{bottom:722.648065pt;}
.y3c_c01218{bottom:723.582589pt;}
.y3b_c01218{bottom:741.751863pt;}
.y3a_c01218{bottom:742.794337pt;}
.y39_c01218{bottom:744.553347pt;}
.y38_c01218{bottom:745.884697pt;}
.y37_c01218{bottom:746.620721pt;}
.y36_c01218{bottom:748.138727pt;}
.y35_c01218{bottom:748.648228pt;}
.y34_c01218{bottom:749.655495pt;}
.y33_c01218{bottom:751.171721pt;}
.y32_c01218{bottom:752.096952pt;}
.y31_c01218{bottom:752.881583pt;}
.y30_c01218{bottom:782.837075pt;}
.y2f_c01218{bottom:784.089333pt;}
.y2e_c01218{bottom:800.788800pt;}
.y2d_c01218{bottom:802.034155pt;}
.y2c_c01218{bottom:806.067264pt;}
.y2b_c01218{bottom:807.036651pt;}
.y2a_c01218{bottom:807.989227pt;}
.y29_c01218{bottom:811.577408pt;}
.y28_c01218{bottom:815.149717pt;}
.y27_c01218{bottom:817.035285pt;}
.y26_c01218{bottom:817.915413pt;}
.y25_c01218{bottom:818.888000pt;}
.y24_c01218{bottom:862.404311pt;}
.y23_c01218{bottom:863.163453pt;}
.y22_c01218{bottom:867.988551pt;}
.y21_c01218{bottom:869.152804pt;}
.y20_c01218{bottom:871.165211pt;}
.y1f_c01218{bottom:872.293272pt;}
.y1e_c01218{bottom:874.548583pt;}
.y1d_c01218{bottom:875.103140pt;}
.y1c_c01218{bottom:877.367228pt;}
.y1b_c01218{bottom:878.143191pt;}
.y1a_c01218{bottom:879.608000pt;}
.y19_c01218{bottom:922.742568pt;}
.y18_c01218{bottom:924.492540pt;}
.y17_c01218{bottom:933.936021pt;}
.y16_c01218{bottom:934.893333pt;}
.y15_c01218{bottom:937.693333pt;}
.y14_c01218{bottom:975.371668pt;}
.y13_c01218{bottom:977.785611pt;}
.y12_c01218{bottom:979.911553pt;}
.y11_c01218{bottom:980.416587pt;}
.y10_c01218{bottom:982.552273pt;}
.yf_c01218{bottom:983.621372pt;}
.ye_c01218{bottom:984.650679pt;}
.yd_c01218{bottom:986.241127pt;}
.yc_c01218{bottom:986.757309pt;}
.yb_c01218{bottom:988.313772pt;}
.ya_c01218{bottom:1002.419956pt;}
.y9_c01218{bottom:1003.337639pt;}
.y8_c01218{bottom:1006.430281pt;}
.y7_c01218{bottom:1007.331017pt;}
.y6_c01218{bottom:1010.092704pt;}
.y5_c01218{bottom:1011.306209pt;}
.y4_c01218{bottom:1014.019536pt;}
.y3_c01218{bottom:1016.159859pt;}
.y2_c01218{bottom:1017.372000pt;}
.y1_c01218{bottom:1079.766667pt;}
.h6_c01218{height:31.984396pt;}
.hf_c01218{height:31.989918pt;}
.h1d_c01218{height:32.000000pt;}
.h10_c01218{height:37.317594pt;}
.h14_c01218{height:48.000000pt;}
.h17_c01218{height:58.648184pt;}
.hd_c01218{height:58.694849pt;}
.he_c01218{height:63.979837pt;}
.h1b_c01218{height:63.997984pt;}
.h1c_c01218{height:64.025915pt;}
.hc_c01218{height:64.026906pt;}
.h16_c01218{height:64.028794pt;}
.h4_c01218{height:64.030745pt;}
.h5_c01218{height:69.299525pt;}
.h12_c01218{height:69.308958pt;}
.h15_c01218{height:69.333333pt;}
.h9_c01218{height:69.362482pt;}
.h3_c01218{height:69.366640pt;}
.h18_c01218{height:74.678762pt;}
.h11_c01218{height:74.693878pt;}
.h7_c01218{height:74.698057pt;}
.h8_c01218{height:79.960990pt;}
.h19_c01218{height:80.012959pt;}
.hb_c01218{height:80.033633pt;}
.h2_c01218{height:85.333333pt;}
.h1a_c01218{height:90.663811pt;}
.h13_c01218{height:90.666667pt;}
.ha_c01218{height:106.711511pt;}
.h1_c01218{height:1118.666667pt;}
.h0_c01218{height:1118.880000pt;}
.w0_c01218{width:803.733333pt;}
.w1_c01218{width:804.000000pt;}
.x0_c01218{left:0.000000pt;}
.x95_c01218{left:65.777333pt;}
.x83_c01218{left:68.873333pt;}
.x5b_c01218{left:77.877333pt;}
.x49_c01218{left:81.216372pt;}
.x19_c01218{left:88.034667pt;}
.x7b_c01218{left:91.865333pt;}
.x72_c01218{left:93.597333pt;}
.x2e_c01218{left:96.585801pt;}
.x39_c01218{left:103.616085pt;}
.x24_c01218{left:106.554667pt;}
.x7c_c01218{left:112.661333pt;}
.x73_c01218{left:114.157333pt;}
.x65_c01218{left:117.514321pt;}
.x71_c01218{left:121.200000pt;}
.x86_c01218{left:122.507864pt;}
.x2f_c01218{left:126.771097pt;}
.xc_c01218{left:130.728837pt;}
.x4a_c01218{left:132.273569pt;}
.x3a_c01218{left:133.770345pt;}
.x25_c01218{left:136.917607pt;}
.x1a_c01218{left:138.545333pt;}
.x66_c01218{left:153.735397pt;}
.x5c_c01218{left:157.068000pt;}
.x4b_c01218{left:158.840796pt;}
.x74_c01218{left:159.962667pt;}
.x30_c01218{left:162.356857pt;}
.x26_c01218{left:164.394103pt;}
.x1b_c01218{left:165.302667pt;}
.x3b_c01218{left:172.204103pt;}
.xd_c01218{left:188.385321pt;}
.x3c_c01218{left:192.090943pt;}
.xe_c01218{left:207.490344pt;}
.x70_c01218{left:210.480000pt;}
.x63_c01218{left:211.389920pt;}
.x8b_c01218{left:212.579645pt;}
.x5d_c01218{left:214.426667pt;}
.x7d_c01218{left:216.594667pt;}
.x31_c01218{left:220.668589pt;}
.x27_c01218{left:223.259179pt;}
.x3_c01218{left:227.133333pt;}
.x44_c01218{left:233.738225pt;}
.x52_c01218{left:235.098667pt;}
.x75_c01218{left:237.661333pt;}
.x87_c01218{left:240.064243pt;}
.x67_c01218{left:240.977401pt;}
.x1c_c01218{left:243.374667pt;}
.x4c_c01218{left:246.808911pt;}
.x2d_c01218{left:249.968000pt;}
.x96_c01218{left:251.673917pt;}
.x32_c01218{left:259.405287pt;}
.x1d_c01218{left:262.497333pt;}
.x4_c01218{left:266.234667pt;}
.x68_c01218{left:269.987029pt;}
.x33_c01218{left:278.998988pt;}
.x64_c01218{left:280.737072pt;}
.x84_c01218{left:283.890667pt;}
.x4d_c01218{left:286.085123pt;}
.x3d_c01218{left:287.169452pt;}
.x88_c01218{left:290.620717pt;}
.x17_c01218{left:292.629120pt;}
.x14_c01218{left:294.321333pt;}
.x45_c01218{left:299.787341pt;}
.x57_c01218{left:302.399203pt;}
.x54_c01218{left:303.378667pt;}
.xf_c01218{left:304.483664pt;}
.x76_c01218{left:306.045333pt;}
.x82_c01218{left:314.408277pt;}
.x94_c01218{left:321.120000pt;}
.x1_c01218{left:329.280000pt;}
.x4e_c01218{left:334.191731pt;}
.x5_c01218{left:335.277333pt;}
.x34_c01218{left:337.372053pt;}
.x1e_c01218{left:340.266667pt;}
.x10_c01218{left:344.093916pt;}
.x46_c01218{left:345.244768pt;}
.x77_c01218{left:346.349333pt;}
.x18_c01218{left:350.882524pt;}
.x7e_c01218{left:352.744000pt;}
.x35_c01218{left:365.697195pt;}
.x3e_c01218{left:375.282976pt;}
.x69_c01218{left:378.230677pt;}
.x1f_c01218{left:379.165333pt;}
.x15_c01218{left:381.733833pt;}
.x89_c01218{left:388.330891pt;}
.x85_c01218{left:389.542667pt;}
.x55_c01218{left:391.284007pt;}
.x58_c01218{left:392.339016pt;}
.x2_c01218{left:400.320000pt;}
.x59_c01218{left:405.997344pt;}
.x97_c01218{left:407.420681pt;}
.x16_c01218{left:411.619917pt;}
.x47_c01218{left:415.195971pt;}
.x36_c01218{left:416.897641pt;}
.x56_c01218{left:419.742187pt;}
.x6_c01218{left:422.804000pt;}
.x78_c01218{left:424.405333pt;}
.x6a_c01218{left:426.434425pt;}
.x5e_c01218{left:428.609333pt;}
.x53_c01218{left:431.480000pt;}
.x7f_c01218{left:433.186667pt;}
.x5a_c01218{left:440.263044pt;}
.x11_c01218{left:441.892693pt;}
.x48_c01218{left:443.206577pt;}
.x3f_c01218{left:444.425621pt;}
.x28_c01218{left:446.800747pt;}
.x20_c01218{left:448.558667pt;}
.x7_c01218{left:461.949333pt;}
.x29_c01218{left:476.538979pt;}
.x5f_c01218{left:479.192000pt;}
.x40_c01218{left:483.062045pt;}
.x37_c01218{left:484.547519pt;}
.x8c_c01218{left:486.345605pt;}
.x21_c01218{left:488.705333pt;}
.x2a_c01218{left:506.802019pt;}
.x4f_c01218{left:511.421255pt;}
.x12_c01218{left:520.631781pt;}
.x38_c01218{left:524.636332pt;}
.x80_c01218{left:530.204000pt;}
.x8a_c01218{left:538.418200pt;}
.x6b_c01218{left:544.929145pt;}
.x92_c01218{left:546.590667pt;}
.x8_c01218{left:551.036000pt;}
.x8d_c01218{left:560.831045pt;}
.x41_c01218{left:562.793444pt;}
.x81_c01218{left:570.541333pt;}
.x6c_c01218{left:574.178533pt;}
.x60_c01218{left:576.745333pt;}
.x9_c01218{left:580.092000pt;}
.x42_c01218{left:591.070487pt;}
.x79_c01218{left:601.022667pt;}
.x6d_c01218{left:604.652029pt;}
.x61_c01218{left:607.097333pt;}
.x13_c01218{left:610.038859pt;}
.x43_c01218{left:613.067877pt;}
.x93_c01218{left:616.452735pt;}
.x2b_c01218{left:632.710651pt;}
.x50_c01218{left:648.603939pt;}
.x8e_c01218{left:653.426357pt;}
.x22_c01218{left:655.088000pt;}
.x6e_c01218{left:656.039257pt;}
.x7a_c01218{left:659.586667pt;}
.x2c_c01218{left:671.589067pt;}
.xa_c01218{left:679.854667pt;}
.x23_c01218{left:681.265333pt;}
.x8f_c01218{left:683.452301pt;}
.x51_c01218{left:688.722779pt;}
.x62_c01218{left:694.957333pt;}
.x6f_c01218{left:702.386197pt;}
.xb_c01218{left:709.457333pt;}
.x91_c01218{left:740.117784pt;}
.x90_c01218{left:751.382969pt;}
}





/* 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_c01219 {
    display:none;
  }
  .loading-indicator_c01219.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01219 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_c01219 { 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_c01219" -> "#page-container .classname_c01219")
 */
.pf_c01219 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01219 { /* 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_c01219.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01219 { /* 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_c01219 { /* 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_c01219 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01219 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01219 {overflow:visible;}
  }
}
.c_c01219 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01219 { /* 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_c01219:after { /* webkit #35443 */
  content: '';
}
.t_c01219:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01219 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 */
}
.__c01219 { /* 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_c01219 { /* info for Javascript */
  display:none;
}
.l_c01219 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01219 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01219 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01219: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_c01219 {
    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_c01219.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01219.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_c01219 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01219{font-family:sans-serif;visibility:hidden;}
.sc__c01219{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01219{-webkit-text-stroke:0px transparent;}
}
.y0_c01219{bottom:0.000000px;}
.h1_c01219{height:1258.500000px;}
.h0_c01219{height:1258.740000px;}
.w0_c01219{width:904.200000px;}
.w1_c01219{width:904.500000px;}
.x0_c01219{left:0.000000px;}
@media print{
.y0_c01219{bottom:0.000000pt;}
.h1_c01219{height:1118.666667pt;}
.h0_c01219{height:1118.880000pt;}
.w0_c01219{width:803.733333pt;}
.w1_c01219{width:804.000000pt;}
.x0_c01219{left:0.000000pt;}
}





/* 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_c01220 {
    display:none;
  }
  .loading-indicator_c01220.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01220 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_c01220 { 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_c01220" -> "#page-container .classname_c01220")
 */
.pf_c01220 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01220 { /* 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_c01220.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01220 { /* 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_c01220 { /* 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_c01220 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01220 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01220 {overflow:visible;}
  }
}
.c_c01220 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01220 { /* 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_c01220:after { /* webkit #35443 */
  content: '';
}
.t_c01220:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01220 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 */
}
.__c01220 { /* 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_c01220 { /* info for Javascript */
  display:none;
}
.l_c01220 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01220 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01220 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01220: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_c01220 {
    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_c01220.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01220.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_c01220 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01220{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01220;src:url('chunks/assets/font_c605e72f209fc835e906f064.woff2')format("woff");}.ff1_c01220{font-family:ff1_c01220;line-height:1.000000;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;}
.mb_c01220{transform:matrix(0.154936,-0.003254,0.005249,0.249945,0,0);-ms-transform:matrix(0.154936,-0.003254,0.005249,0.249945,0,0);-webkit-transform:matrix(0.154936,-0.003254,0.005249,0.249945,0,0);}
.md_c01220{transform:matrix(0.170058,-0.003571,0.005249,0.249945,0,0);-ms-transform:matrix(0.170058,-0.003571,0.005249,0.249945,0,0);-webkit-transform:matrix(0.170058,-0.003571,0.005249,0.249945,0,0);}
.m2d_c01220{transform:matrix(0.176743,-0.003358,0.004749,0.249955,0,0);-ms-transform:matrix(0.176743,-0.003358,0.004749,0.249955,0,0);-webkit-transform:matrix(0.176743,-0.003358,0.004749,0.249955,0,0);}
.mc_c01220{transform:matrix(0.181250,-0.003806,0.005249,0.249945,0,0);-ms-transform:matrix(0.181250,-0.003806,0.005249,0.249945,0,0);-webkit-transform:matrix(0.181250,-0.003806,0.005249,0.249945,0,0);}
.ma_c01220{transform:matrix(0.188468,-0.003958,0.005249,0.249945,0,0);-ms-transform:matrix(0.188468,-0.003958,0.005249,0.249945,0,0);-webkit-transform:matrix(0.188468,-0.003958,0.005249,0.249945,0,0);}
.m1a_c01220{transform:matrix(0.208730,-0.007522,0.009003,0.249838,0,0);-ms-transform:matrix(0.208730,-0.007522,0.009003,0.249838,0,0);-webkit-transform:matrix(0.208730,-0.007522,0.009003,0.249838,0,0);}
.m1b_c01220{transform:matrix(0.212467,-0.007656,0.009003,0.249838,0,0);-ms-transform:matrix(0.212467,-0.007656,0.009003,0.249838,0,0);-webkit-transform:matrix(0.212467,-0.007656,0.009003,0.249838,0,0);}
.m31_c01220{transform:matrix(0.217786,-0.004138,0.004749,0.249955,0,0);-ms-transform:matrix(0.217786,-0.004138,0.004749,0.249955,0,0);-webkit-transform:matrix(0.217786,-0.004138,0.004749,0.249955,0,0);}
.m14_c01220{transform:matrix(0.219637,-0.004612,0.005249,0.249945,0,0);-ms-transform:matrix(0.219637,-0.004612,0.005249,0.249945,0,0);-webkit-transform:matrix(0.219637,-0.004612,0.005249,0.249945,0,0);}
.m2f_c01220{transform:matrix(0.220340,-0.004186,0.004749,0.249955,0,0);-ms-transform:matrix(0.220340,-0.004186,0.004749,0.249955,0,0);-webkit-transform:matrix(0.220340,-0.004186,0.004749,0.249955,0,0);}
.m30_c01220{transform:matrix(0.225169,-0.004278,0.004749,0.249955,0,0);-ms-transform:matrix(0.225169,-0.004278,0.004749,0.249955,0,0);-webkit-transform:matrix(0.225169,-0.004278,0.004749,0.249955,0,0);}
.m18_c01220{transform:matrix(0.230394,-0.004838,0.005249,0.249945,0,0);-ms-transform:matrix(0.230394,-0.004838,0.005249,0.249945,0,0);-webkit-transform:matrix(0.230394,-0.004838,0.005249,0.249945,0,0);}
.m32_c01220{transform:matrix(0.231203,-0.004393,0.004749,0.249955,0,0);-ms-transform:matrix(0.231203,-0.004393,0.004749,0.249955,0,0);-webkit-transform:matrix(0.231203,-0.004393,0.004749,0.249955,0,0);}
.m15_c01220{transform:matrix(0.232084,-0.004874,0.005249,0.249945,0,0);-ms-transform:matrix(0.232084,-0.004874,0.005249,0.249945,0,0);-webkit-transform:matrix(0.232084,-0.004874,0.005249,0.249945,0,0);}
.m19_c01220{transform:matrix(0.233823,-0.004910,0.005249,0.249945,0,0);-ms-transform:matrix(0.233823,-0.004910,0.005249,0.249945,0,0);-webkit-transform:matrix(0.233823,-0.004910,0.005249,0.249945,0,0);}
.m2e_c01220{transform:matrix(0.234298,-0.004452,0.004749,0.249955,0,0);-ms-transform:matrix(0.234298,-0.004452,0.004749,0.249955,0,0);-webkit-transform:matrix(0.234298,-0.004452,0.004749,0.249955,0,0);}
.m17_c01220{transform:matrix(0.240512,-0.005051,0.005249,0.249945,0,0);-ms-transform:matrix(0.240512,-0.005051,0.005249,0.249945,0,0);-webkit-transform:matrix(0.240512,-0.005051,0.005249,0.249945,0,0);}
.m16_c01220{transform:matrix(0.246191,-0.005170,0.005249,0.249945,0,0);-ms-transform:matrix(0.246191,-0.005170,0.005249,0.249945,0,0);-webkit-transform:matrix(0.246191,-0.005170,0.005249,0.249945,0,0);}
.m1d_c01220{transform:matrix(0.248275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248275,0.000000,0.000000,0.250000,0,0);}
.m1c_c01220{transform:matrix(0.248404,-0.008951,0.009003,0.249838,0,0);-ms-transform:matrix(0.248404,-0.008951,0.009003,0.249838,0,0);-webkit-transform:matrix(0.248404,-0.008951,0.009003,0.249838,0,0);}
.m34_c01220{transform:matrix(0.255585,-0.006390,0.006248,0.249922,0,0);-ms-transform:matrix(0.255585,-0.006390,0.006248,0.249922,0,0);-webkit-transform:matrix(0.255585,-0.006390,0.006248,0.249922,0,0);}
.mf_c01220{transform:matrix(0.263687,-0.005537,0.005249,0.249945,0,0);-ms-transform:matrix(0.263687,-0.005537,0.005249,0.249945,0,0);-webkit-transform:matrix(0.263687,-0.005537,0.005249,0.249945,0,0);}
.m35_c01220{transform:matrix(0.271100,-0.006778,0.006248,0.249922,0,0);-ms-transform:matrix(0.271100,-0.006778,0.006248,0.249922,0,0);-webkit-transform:matrix(0.271100,-0.006778,0.006248,0.249922,0,0);}
.m7_c01220{transform:matrix(0.272781,-0.007365,0.006748,0.249909,0,0);-ms-transform:matrix(0.272781,-0.007365,0.006748,0.249909,0,0);-webkit-transform:matrix(0.272781,-0.007365,0.006748,0.249909,0,0);}
.m8_c01220{transform:matrix(0.273715,-0.007390,0.006748,0.249909,0,0);-ms-transform:matrix(0.273715,-0.007390,0.006748,0.249909,0,0);-webkit-transform:matrix(0.273715,-0.007390,0.006748,0.249909,0,0);}
.m33_c01220{transform:matrix(0.286156,-0.007154,0.006248,0.249922,0,0);-ms-transform:matrix(0.286156,-0.007154,0.006248,0.249922,0,0);-webkit-transform:matrix(0.286156,-0.007154,0.006248,0.249922,0,0);}
.me_c01220{transform:matrix(0.286317,-0.006013,0.005249,0.249945,0,0);-ms-transform:matrix(0.286317,-0.006013,0.005249,0.249945,0,0);-webkit-transform:matrix(0.286317,-0.006013,0.005249,0.249945,0,0);}
.m29_c01220{transform:matrix(0.287203,-0.005457,0.004749,0.249955,0,0);-ms-transform:matrix(0.287203,-0.005457,0.004749,0.249955,0,0);-webkit-transform:matrix(0.287203,-0.005457,0.004749,0.249955,0,0);}
.m36_c01220{transform:matrix(0.292622,-0.004389,0.003750,0.249972,0,0);-ms-transform:matrix(0.292622,-0.004389,0.003750,0.249972,0,0);-webkit-transform:matrix(0.292622,-0.004389,0.003750,0.249972,0,0);}
.m12_c01220{transform:matrix(0.297109,-0.006239,0.005249,0.249945,0,0);-ms-transform:matrix(0.297109,-0.006239,0.005249,0.249945,0,0);-webkit-transform:matrix(0.297109,-0.006239,0.005249,0.249945,0,0);}
.m9_c01220{transform:matrix(0.305319,-0.008244,0.006748,0.249909,0,0);-ms-transform:matrix(0.305319,-0.008244,0.006748,0.249909,0,0);-webkit-transform:matrix(0.305319,-0.008244,0.006748,0.249909,0,0);}
.m3a_c01220{transform:matrix(0.325933,-0.004889,0.003750,0.249972,0,0);-ms-transform:matrix(0.325933,-0.004889,0.003750,0.249972,0,0);-webkit-transform:matrix(0.325933,-0.004889,0.003750,0.249972,0,0);}
.m26_c01220{transform:matrix(0.334640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334640,0.000000,0.000000,0.250000,0,0);}
.m38_c01220{transform:matrix(0.337387,-0.005061,0.003750,0.249972,0,0);-ms-transform:matrix(0.337387,-0.005061,0.003750,0.249972,0,0);-webkit-transform:matrix(0.337387,-0.005061,0.003750,0.249972,0,0);}
.m2b_c01220{transform:matrix(0.340419,-0.006468,0.004749,0.249955,0,0);-ms-transform:matrix(0.340419,-0.006468,0.004749,0.249955,0,0);-webkit-transform:matrix(0.340419,-0.006468,0.004749,0.249955,0,0);}
.m1f_c01220{transform:matrix(0.343690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343690,0.000000,0.000000,0.250000,0,0);}
.m5_c01220{transform:matrix(0.345075,-0.013126,0.009503,0.249819,0,0);-ms-transform:matrix(0.345075,-0.013126,0.009503,0.249819,0,0);-webkit-transform:matrix(0.345075,-0.013126,0.009503,0.249819,0,0);}
.m2c_c01220{transform:matrix(0.348142,-0.006615,0.004749,0.249955,0,0);-ms-transform:matrix(0.348142,-0.006615,0.004749,0.249955,0,0);-webkit-transform:matrix(0.348142,-0.006615,0.004749,0.249955,0,0);}
.m3_c01220{transform:matrix(0.351456,-0.013369,0.009503,0.249819,0,0);-ms-transform:matrix(0.351456,-0.013369,0.009503,0.249819,0,0);-webkit-transform:matrix(0.351456,-0.013369,0.009503,0.249819,0,0);}
.m2a_c01220{transform:matrix(0.361490,-0.006868,0.004749,0.249955,0,0);-ms-transform:matrix(0.361490,-0.006868,0.004749,0.249955,0,0);-webkit-transform:matrix(0.361490,-0.006868,0.004749,0.249955,0,0);}
.m1e_c01220{transform:matrix(0.361600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361600,0.000000,0.000000,0.250000,0,0);}
.m2_c01220{transform:matrix(0.373770,-0.014217,0.009503,0.249819,0,0);-ms-transform:matrix(0.373770,-0.014217,0.009503,0.249819,0,0);-webkit-transform:matrix(0.373770,-0.014217,0.009503,0.249819,0,0);}
.m21_c01220{transform:matrix(0.401550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401550,0.000000,0.000000,0.250000,0,0);}
.m22_c01220{transform:matrix(0.402125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402125,0.000000,0.000000,0.250000,0,0);}
.m39_c01220{transform:matrix(0.404994,-0.006075,0.003750,0.249972,0,0);-ms-transform:matrix(0.404994,-0.006075,0.003750,0.249972,0,0);-webkit-transform:matrix(0.404994,-0.006075,0.003750,0.249972,0,0);}
.m20_c01220{transform:matrix(0.406750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406750,0.000000,0.000000,0.250000,0,0);}
.m4_c01220{transform:matrix(0.417438,-0.015879,0.009503,0.249819,0,0);-ms-transform:matrix(0.417438,-0.015879,0.009503,0.249819,0,0);-webkit-transform:matrix(0.417438,-0.015879,0.009503,0.249819,0,0);}
.m11_c01220{transform:matrix(0.417473,-0.008767,0.005249,0.249945,0,0);-ms-transform:matrix(0.417473,-0.008767,0.005249,0.249945,0,0);-webkit-transform:matrix(0.417473,-0.008767,0.005249,0.249945,0,0);}
.m10_c01220{transform:matrix(0.417883,-0.008776,0.005249,0.249945,0,0);-ms-transform:matrix(0.417883,-0.008776,0.005249,0.249945,0,0);-webkit-transform:matrix(0.417883,-0.008776,0.005249,0.249945,0,0);}
.m25_c01220{transform:matrix(0.418960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418960,0.000000,0.000000,0.250000,0,0);}
.m27_c01220{transform:matrix(0.445705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445705,0.000000,0.000000,0.250000,0,0);}
.m24_c01220{transform:matrix(0.457865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457865,0.000000,0.000000,0.250000,0,0);}
.m13_c01220{transform:matrix(0.512042,-0.010753,0.005249,0.249945,0,0);-ms-transform:matrix(0.512042,-0.010753,0.005249,0.249945,0,0);-webkit-transform:matrix(0.512042,-0.010753,0.005249,0.249945,0,0);}
.m0_c01220{transform:matrix(0.624440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.624440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.624440,0.000000,0.000000,0.250000,0,0);}
.m1_c01220{transform:matrix(0.643995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.643995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.643995,0.000000,0.000000,0.250000,0,0);}
.m28_c01220{transform:matrix(0.664155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.664155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.664155,0.000000,0.000000,0.250000,0,0);}
.m23_c01220{transform:matrix(0.830920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.830920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.830920,0.000000,0.000000,0.250000,0,0);}
.m37_c01220{transform:matrix(0.992013,-0.014880,0.003750,0.249972,0,0);-ms-transform:matrix(0.992013,-0.014880,0.003750,0.249972,0,0);-webkit-transform:matrix(0.992013,-0.014880,0.003750,0.249972,0,0);}
.m6_c01220{transform:matrix(1.371613,-0.052173,0.009503,0.249819,0,0);-ms-transform:matrix(1.371613,-0.052173,0.009503,0.249819,0,0);-webkit-transform:matrix(1.371613,-0.052173,0.009503,0.249819,0,0);}
.v0_c01220{vertical-align:0.000000px;}
.ls0_c01220{letter-spacing:0.000000px;}
.sc__c01220{text-shadow:none;}
.sc0_c01220{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__c01220{-webkit-text-stroke:0px transparent;}
.sc0_c01220{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01220{word-spacing:0.000000px;}
.fc0_c01220{color:transparent;}
.fs0_c01220{font-size:24.000000px;}
.fs2_c01220{font-size:47.986678px;}
.fs7_c01220{font-size:48.000000px;}
.fs1_c01220{font-size:53.985013px;}
.fsb_c01220{font-size:54.006075px;}
.fs8_c01220{font-size:54.009746px;}
.fsa_c01220{font-size:66.020622px;}
.fs3_c01220{font-size:72.026239px;}
.fs9_c01220{font-size:84.015161px;}
.fs5_c01220{font-size:84.018520px;}
.fs6_c01220{font-size:89.968359px;}
.fs4_c01220{font-size:108.023811px;}
.y0_c01220{bottom:0.000000px;}
.y2_c01220{bottom:61.020000px;}
.y1_c01220{bottom:238.947000px;}
.y29_c01220{bottom:313.209000px;}
.y2a_c01220{bottom:314.566350px;}
.y2b_c01220{bottom:315.416925px;}
.y2c_c01220{bottom:318.061500px;}
.y2d_c01220{bottom:318.849855px;}
.y2e_c01220{bottom:320.380193px;}
.y2f_c01220{bottom:321.003218px;}
.y30_c01220{bottom:322.037003px;}
.y24_c01220{bottom:345.336786px;}
.y25_c01220{bottom:348.050530px;}
.y26_c01220{bottom:349.740705px;}
.y27_c01220{bottom:352.125084px;}
.y28_c01220{bottom:354.206244px;}
.y1f_c01220{bottom:382.056000px;}
.y20_c01220{bottom:383.718405px;}
.y21_c01220{bottom:384.359541px;}
.y22_c01220{bottom:385.196558px;}
.y23_c01220{bottom:386.896383px;}
.y1e_c01220{bottom:459.136500px;}
.y1b_c01220{bottom:486.562500px;}
.y1c_c01220{bottom:490.915278px;}
.y1d_c01220{bottom:492.121152px;}
.y15_c01220{bottom:524.609097px;}
.y16_c01220{bottom:525.500515px;}
.y17_c01220{bottom:527.124750px;}
.y18_c01220{bottom:528.035383px;}
.y19_c01220{bottom:529.668690px;}
.y1a_c01220{bottom:530.593876px;}
.yb_c01220{bottom:552.661500px;}
.yc_c01220{bottom:554.315943px;}
.yd_c01220{bottom:555.241381px;}
.ye_c01220{bottom:557.090936px;}
.yf_c01220{bottom:558.031431px;}
.y10_c01220{bottom:559.749063px;}
.y11_c01220{bottom:562.044909px;}
.y12_c01220{bottom:562.736491px;}
.y13_c01220{bottom:563.422404px;}
.y14_c01220{bottom:565.491009px;}
.y8_c01220{bottom:594.820500px;}
.y9_c01220{bottom:596.877090px;}
.ya_c01220{bottom:598.372958px;}
.y5_c01220{bottom:1014.951000px;}
.y6_c01220{bottom:1016.562219px;}
.y7_c01220{bottom:1017.026313px;}
.y3_c01220{bottom:1086.508500px;}
.y4_c01220{bottom:1087.767630px;}
.h2_c01220{height:24.000000px;}
.h4_c01220{height:47.986678px;}
.h9_c01220{height:48.000000px;}
.h3_c01220{height:53.985013px;}
.hd_c01220{height:54.006075px;}
.ha_c01220{height:54.009746px;}
.hc_c01220{height:66.020622px;}
.h5_c01220{height:72.026239px;}
.hb_c01220{height:84.015161px;}
.h7_c01220{height:84.018520px;}
.h8_c01220{height:89.968359px;}
.h6_c01220{height:108.023811px;}
.h1_c01220{height:1258.500000px;}
.h0_c01220{height:1258.740000px;}
.w0_c01220{width:904.200000px;}
.w1_c01220{width:904.500000px;}
.x0_c01220{left:0.000000px;}
.x1_c01220{left:141.210000px;}
.x2_c01220{left:146.880000px;}
.xb_c01220{left:180.865500px;}
.x1a_c01220{left:185.050500px;}
.x2c_c01220{left:190.246966px;}
.x5_c01220{left:204.414000px;}
.x3_c01220{left:212.148000px;}
.x8_c01220{left:214.773000px;}
.x14_c01220{left:218.427898px;}
.x1d_c01220{left:220.860000px;}
.x27_c01220{left:221.967000px;}
.x4_c01220{left:245.249865px;}
.x6_c01220{left:246.772099px;}
.x7_c01220{left:258.972886px;}
.x15_c01220{left:260.876398px;}
.x1e_c01220{left:268.650000px;}
.x2d_c01220{left:277.792516px;}
.x9_c01220{left:290.943000px;}
.x30_c01220{left:300.337500px;}
.xc_c01220{left:303.717000px;}
.x1b_c01220{left:305.840089px;}
.x1f_c01220{left:307.260000px;}
.x28_c01220{left:309.462000px;}
.x2e_c01220{left:332.315590px;}
.x31_c01220{left:334.360500px;}
.x16_c01220{left:338.220898px;}
.x1c_c01220{left:339.303093px;}
.x29_c01220{left:343.206000px;}
.xa_c01220{left:346.345500px;}
.x17_c01220{left:381.584398px;}
.x2a_c01220{left:387.259500px;}
.xd_c01220{left:391.791000px;}
.x20_c01220{left:396.900000px;}
.x2f_c01220{left:409.239063px;}
.xe_c01220{left:436.576500px;}
.x18_c01220{left:459.360898px;}
.x2b_c01220{left:476.724000px;}
.x21_c01220{left:483.300000px;}
.x32_c01220{left:490.150500px;}
.x19_c01220{left:503.417398px;}
.xf_c01220{left:518.368500px;}
.x22_c01220{left:537.840000px;}
.x33_c01220{left:542.707500px;}
.x23_c01220{left:604.800000px;}
.x10_c01220{left:627.694500px;}
.x24_c01220{left:637.470000px;}
.x34_c01220{left:644.730000px;}
.x11_c01220{left:660.627000px;}
.x25_c01220{left:667.440000px;}
.x35_c01220{left:686.265000px;}
.x12_c01220{left:693.289500px;}
.x36_c01220{left:755.184000px;}
.x26_c01220{left:784.080000px;}
.x13_c01220{left:791.794500px;}
@media print{
.v0_c01220{vertical-align:0.000000pt;}
.ls0_c01220{letter-spacing:0.000000pt;}
.ws0_c01220{word-spacing:0.000000pt;}
.fs0_c01220{font-size:21.333333pt;}
.fs2_c01220{font-size:42.654825pt;}
.fs7_c01220{font-size:42.666667pt;}
.fs1_c01220{font-size:47.986678pt;}
.fsb_c01220{font-size:48.005400pt;}
.fs8_c01220{font-size:48.008663pt;}
.fsa_c01220{font-size:58.684997pt;}
.fs3_c01220{font-size:64.023324pt;}
.fs9_c01220{font-size:74.680143pt;}
.fs5_c01220{font-size:74.683129pt;}
.fs6_c01220{font-size:79.971875pt;}
.fs4_c01220{font-size:96.021166pt;}
.y0_c01220{bottom:0.000000pt;}
.y2_c01220{bottom:54.240000pt;}
.y1_c01220{bottom:212.397333pt;}
.y29_c01220{bottom:278.408000pt;}
.y2a_c01220{bottom:279.614533pt;}
.y2b_c01220{bottom:280.370600pt;}
.y2c_c01220{bottom:282.721333pt;}
.y2d_c01220{bottom:283.422093pt;}
.y2e_c01220{bottom:284.782393pt;}
.y2f_c01220{bottom:285.336193pt;}
.y30_c01220{bottom:286.255113pt;}
.y24_c01220{bottom:306.966032pt;}
.y25_c01220{bottom:309.378249pt;}
.y26_c01220{bottom:310.880627pt;}
.y27_c01220{bottom:313.000075pt;}
.y28_c01220{bottom:314.849995pt;}
.y1f_c01220{bottom:339.605333pt;}
.y20_c01220{bottom:341.083027pt;}
.y21_c01220{bottom:341.652925pt;}
.y22_c01220{bottom:342.396940pt;}
.y23_c01220{bottom:343.907896pt;}
.y1e_c01220{bottom:408.121333pt;}
.y1b_c01220{bottom:432.500000pt;}
.y1c_c01220{bottom:436.369136pt;}
.y1d_c01220{bottom:437.441024pt;}
.y15_c01220{bottom:466.319197pt;}
.y16_c01220{bottom:467.111569pt;}
.y17_c01220{bottom:468.555333pt;}
.y18_c01220{bottom:469.364785pt;}
.y19_c01220{bottom:470.816613pt;}
.y1a_c01220{bottom:471.639001pt;}
.yb_c01220{bottom:491.254667pt;}
.yc_c01220{bottom:492.725283pt;}
.yd_c01220{bottom:493.547895pt;}
.ye_c01220{bottom:495.191943pt;}
.yf_c01220{bottom:496.027939pt;}
.y10_c01220{bottom:497.554723pt;}
.y11_c01220{bottom:499.595475pt;}
.y12_c01220{bottom:500.210215pt;}
.y13_c01220{bottom:500.819915pt;}
.y14_c01220{bottom:502.658675pt;}
.y8_c01220{bottom:528.729333pt;}
.y9_c01220{bottom:530.557413pt;}
.ya_c01220{bottom:531.887073pt;}
.y5_c01220{bottom:902.178667pt;}
.y6_c01220{bottom:903.610861pt;}
.y7_c01220{bottom:904.023389pt;}
.y3_c01220{bottom:965.785333pt;}
.y4_c01220{bottom:966.904560pt;}
.h2_c01220{height:21.333333pt;}
.h4_c01220{height:42.654825pt;}
.h9_c01220{height:42.666667pt;}
.h3_c01220{height:47.986678pt;}
.hd_c01220{height:48.005400pt;}
.ha_c01220{height:48.008663pt;}
.hc_c01220{height:58.684997pt;}
.h5_c01220{height:64.023324pt;}
.hb_c01220{height:74.680143pt;}
.h7_c01220{height:74.683129pt;}
.h8_c01220{height:79.971875pt;}
.h6_c01220{height:96.021166pt;}
.h1_c01220{height:1118.666667pt;}
.h0_c01220{height:1118.880000pt;}
.w0_c01220{width:803.733333pt;}
.w1_c01220{width:804.000000pt;}
.x0_c01220{left:0.000000pt;}
.x1_c01220{left:125.520000pt;}
.x2_c01220{left:130.560000pt;}
.xb_c01220{left:160.769333pt;}
.x1a_c01220{left:164.489333pt;}
.x2c_c01220{left:169.108415pt;}
.x5_c01220{left:181.701333pt;}
.x3_c01220{left:188.576000pt;}
.x8_c01220{left:190.909333pt;}
.x14_c01220{left:194.158132pt;}
.x1d_c01220{left:196.320000pt;}
.x27_c01220{left:197.304000pt;}
.x4_c01220{left:217.999880pt;}
.x6_c01220{left:219.352977pt;}
.x7_c01220{left:230.198121pt;}
.x15_c01220{left:231.890132pt;}
.x1e_c01220{left:238.800000pt;}
.x2d_c01220{left:246.926681pt;}
.x9_c01220{left:258.616000pt;}
.x30_c01220{left:266.966667pt;}
.xc_c01220{left:269.970667pt;}
.x1b_c01220{left:271.857857pt;}
.x1f_c01220{left:273.120000pt;}
.x28_c01220{left:275.077333pt;}
.x2e_c01220{left:295.391636pt;}
.x31_c01220{left:297.209333pt;}
.x16_c01220{left:300.640799pt;}
.x1c_c01220{left:301.602749pt;}
.x29_c01220{left:305.072000pt;}
.xa_c01220{left:307.862667pt;}
.x17_c01220{left:339.186132pt;}
.x2a_c01220{left:344.230667pt;}
.xd_c01220{left:348.258667pt;}
.x20_c01220{left:352.800000pt;}
.x2f_c01220{left:363.768056pt;}
.xe_c01220{left:388.068000pt;}
.x18_c01220{left:408.320799pt;}
.x2b_c01220{left:423.754667pt;}
.x21_c01220{left:429.600000pt;}
.x32_c01220{left:435.689333pt;}
.x19_c01220{left:447.482132pt;}
.xf_c01220{left:460.772000pt;}
.x22_c01220{left:478.080000pt;}
.x33_c01220{left:482.406667pt;}
.x23_c01220{left:537.600000pt;}
.x10_c01220{left:557.950667pt;}
.x24_c01220{left:566.640000pt;}
.x34_c01220{left:573.093333pt;}
.x11_c01220{left:587.224000pt;}
.x25_c01220{left:593.280000pt;}
.x35_c01220{left:610.013333pt;}
.x12_c01220{left:616.257333pt;}
.x36_c01220{left:671.274667pt;}
.x26_c01220{left:696.960000pt;}
.x13_c01220{left:703.817333pt;}
}





/* 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_c01221 {
    display:none;
  }
  .loading-indicator_c01221.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01221 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_c01221 { 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_c01221" -> "#page-container .classname_c01221")
 */
.pf_c01221 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01221 { /* 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_c01221.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01221 { /* 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_c01221 { /* 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_c01221 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01221 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01221 {overflow:visible;}
  }
}
.c_c01221 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01221 { /* 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_c01221:after { /* webkit #35443 */
  content: '';
}
.t_c01221:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01221 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 */
}
.__c01221 { /* 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_c01221 { /* info for Javascript */
  display:none;
}
.l_c01221 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01221 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01221 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01221: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_c01221 {
    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_c01221.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01221.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_c01221 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01221{font-family:sans-serif;visibility:hidden;}
.sc__c01221{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01221{-webkit-text-stroke:0px transparent;}
}
.y0_c01221{bottom:0.000000px;}
.h1_c01221{height:1258.500000px;}
.h0_c01221{height:1258.740000px;}
.w0_c01221{width:904.200000px;}
.w1_c01221{width:904.500000px;}
.x0_c01221{left:0.000000px;}
@media print{
.y0_c01221{bottom:0.000000pt;}
.h1_c01221{height:1118.666667pt;}
.h0_c01221{height:1118.880000pt;}
.w0_c01221{width:803.733333pt;}
.w1_c01221{width:804.000000pt;}
.x0_c01221{left:0.000000pt;}
}





/* 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_c01222 {
    display:none;
  }
  .loading-indicator_c01222.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01222 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_c01222 { 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_c01222" -> "#page-container .classname_c01222")
 */
.pf_c01222 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01222 { /* 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_c01222.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01222 { /* 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_c01222 { /* 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_c01222 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01222 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01222 {overflow:visible;}
  }
}
.c_c01222 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01222 { /* 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_c01222:after { /* webkit #35443 */
  content: '';
}
.t_c01222:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01222 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 */
}
.__c01222 { /* 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_c01222 { /* info for Javascript */
  display:none;
}
.l_c01222 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01222 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01222 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01222: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_c01222 {
    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_c01222.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01222.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_c01222 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01222{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01222;src:url('chunks/assets/font_c605e72f209fc835e906f064.woff2')format("woff");}.ff1_c01222{font-family:ff1_c01222;line-height:1.000000;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;}
.m18_c01222{transform:matrix(0.100746,0.002619,-0.006498,0.249916,0,0);-ms-transform:matrix(0.100746,0.002619,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.100746,0.002619,-0.006498,0.249916,0,0);}
.m5f_c01222{transform:matrix(0.104138,0.001562,-0.003750,0.249972,0,0);-ms-transform:matrix(0.104138,0.001562,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.104138,0.001562,-0.003750,0.249972,0,0);}
.m11_c01222{transform:matrix(0.104292,0.002190,-0.005249,0.249945,0,0);-ms-transform:matrix(0.104292,0.002190,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.104292,0.002190,-0.005249,0.249945,0,0);}
.m12_c01222{transform:matrix(0.137700,0.002892,-0.005249,0.249945,0,0);-ms-transform:matrix(0.137700,0.002892,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.137700,0.002892,-0.005249,0.249945,0,0);}
.m1d_c01222{transform:matrix(0.153833,0.004000,-0.006498,0.249916,0,0);-ms-transform:matrix(0.153833,0.004000,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.153833,0.004000,-0.006498,0.249916,0,0);}
.m21_c01222{transform:matrix(0.154968,0.004029,-0.006498,0.249916,0,0);-ms-transform:matrix(0.154968,0.004029,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.154968,0.004029,-0.006498,0.249916,0,0);}
.m60_c01222{transform:matrix(0.156527,0.002348,-0.003750,0.249972,0,0);-ms-transform:matrix(0.156527,0.002348,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.156527,0.002348,-0.003750,0.249972,0,0);}
.m16_c01222{transform:matrix(0.157110,0.003299,-0.005249,0.249945,0,0);-ms-transform:matrix(0.157110,0.003299,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.157110,0.003299,-0.005249,0.249945,0,0);}
.m4c_c01222{transform:matrix(0.159071,0.003022,-0.004749,0.249955,0,0);-ms-transform:matrix(0.159071,0.003022,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.159071,0.003022,-0.004749,0.249955,0,0);}
.m1f_c01222{transform:matrix(0.174681,0.004542,-0.006498,0.249916,0,0);-ms-transform:matrix(0.174681,0.004542,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.174681,0.004542,-0.006498,0.249916,0,0);}
.m14_c01222{transform:matrix(0.178231,0.003743,-0.005249,0.249945,0,0);-ms-transform:matrix(0.178231,0.003743,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.178231,0.003743,-0.005249,0.249945,0,0);}
.m15_c01222{transform:matrix(0.179795,0.003776,-0.005249,0.249945,0,0);-ms-transform:matrix(0.179795,0.003776,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.179795,0.003776,-0.005249,0.249945,0,0);}
.m13_c01222{transform:matrix(0.180170,0.003784,-0.005249,0.249945,0,0);-ms-transform:matrix(0.180170,0.003784,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.180170,0.003784,-0.005249,0.249945,0,0);}
.m3d_c01222{transform:matrix(0.188341,0.004709,-0.006248,0.249922,0,0);-ms-transform:matrix(0.188341,0.004709,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.188341,0.004709,-0.006248,0.249922,0,0);}
.m5e_c01222{transform:matrix(0.189229,0.002838,-0.003750,0.249972,0,0);-ms-transform:matrix(0.189229,0.002838,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.189229,0.002838,-0.003750,0.249972,0,0);}
.m0_c01222{transform:matrix(0.194975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194975,0.000000,0.000000,0.250000,0,0);}
.m5a_c01222{transform:matrix(0.199808,0.002997,-0.003750,0.249972,0,0);-ms-transform:matrix(0.199808,0.002997,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.199808,0.002997,-0.003750,0.249972,0,0);}
.m5d_c01222{transform:matrix(0.204107,0.003062,-0.003750,0.249972,0,0);-ms-transform:matrix(0.204107,0.003062,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.204107,0.003062,-0.003750,0.249972,0,0);}
.m56_c01222{transform:matrix(0.205778,0.003910,-0.004749,0.249955,0,0);-ms-transform:matrix(0.205778,0.003910,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.205778,0.003910,-0.004749,0.249955,0,0);}
.m19_c01222{transform:matrix(0.208854,0.005430,-0.006498,0.249916,0,0);-ms-transform:matrix(0.208854,0.005430,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.208854,0.005430,-0.006498,0.249916,0,0);}
.m27_c01222{transform:matrix(0.212863,0.003406,-0.003999,0.249968,0,0);-ms-transform:matrix(0.212863,0.003406,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.212863,0.003406,-0.003999,0.249968,0,0);}
.me_c01222{transform:matrix(0.213135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213135,0.000000,0.000000,0.250000,0,0);}
.m3b_c01222{transform:matrix(0.221710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221710,0.000000,0.000000,0.250000,0,0);}
.m46_c01222{transform:matrix(0.223671,0.004697,-0.005249,0.249945,0,0);-ms-transform:matrix(0.223671,0.004697,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.223671,0.004697,-0.005249,0.249945,0,0);}
.m2b_c01222{transform:matrix(0.225276,0.003604,-0.003999,0.249968,0,0);-ms-transform:matrix(0.225276,0.003604,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.225276,0.003604,-0.003999,0.249968,0,0);}
.m2e_c01222{transform:matrix(0.225321,0.003605,-0.003999,0.249968,0,0);-ms-transform:matrix(0.225321,0.003605,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.225321,0.003605,-0.003999,0.249968,0,0);}
.m3a_c01222{transform:matrix(0.225345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225345,0.000000,0.000000,0.250000,0,0);}
.m55_c01222{transform:matrix(0.225489,0.004284,-0.004749,0.249955,0,0);-ms-transform:matrix(0.225489,0.004284,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.225489,0.004284,-0.004749,0.249955,0,0);}
.m59_c01222{transform:matrix(0.225545,0.003383,-0.003750,0.249972,0,0);-ms-transform:matrix(0.225545,0.003383,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.225545,0.003383,-0.003750,0.249972,0,0);}
.m42_c01222{transform:matrix(0.229984,0.004830,-0.005249,0.249945,0,0);-ms-transform:matrix(0.229984,0.004830,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.229984,0.004830,-0.005249,0.249945,0,0);}
.m33_c01222{transform:matrix(0.230129,0.004603,-0.004999,0.249950,0,0);-ms-transform:matrix(0.230129,0.004603,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.230129,0.004603,-0.004999,0.249950,0,0);}
.m45_c01222{transform:matrix(0.230989,0.004851,-0.005249,0.249945,0,0);-ms-transform:matrix(0.230989,0.004851,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.230989,0.004851,-0.005249,0.249945,0,0);}
.m48_c01222{transform:matrix(0.232669,0.004886,-0.005249,0.249945,0,0);-ms-transform:matrix(0.232669,0.004886,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.232669,0.004886,-0.005249,0.249945,0,0);}
.m40_c01222{transform:matrix(0.232734,0.004887,-0.005249,0.249945,0,0);-ms-transform:matrix(0.232734,0.004887,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.232734,0.004887,-0.005249,0.249945,0,0);}
.m41_c01222{transform:matrix(0.233064,0.004894,-0.005249,0.249945,0,0);-ms-transform:matrix(0.233064,0.004894,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.233064,0.004894,-0.005249,0.249945,0,0);}
.m50_c01222{transform:matrix(0.233188,0.004431,-0.004749,0.249955,0,0);-ms-transform:matrix(0.233188,0.004431,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.233188,0.004431,-0.004749,0.249955,0,0);}
.m36_c01222{transform:matrix(0.233788,0.004676,-0.004999,0.249950,0,0);-ms-transform:matrix(0.233788,0.004676,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.233788,0.004676,-0.004999,0.249950,0,0);}
.m3c_c01222{transform:matrix(0.234397,0.005860,-0.006248,0.249922,0,0);-ms-transform:matrix(0.234397,0.005860,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.234397,0.005860,-0.006248,0.249922,0,0);}
.m44_c01222{transform:matrix(0.236053,0.004957,-0.005249,0.249945,0,0);-ms-transform:matrix(0.236053,0.004957,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.236053,0.004957,-0.005249,0.249945,0,0);}
.m43_c01222{transform:matrix(0.236688,0.004970,-0.005249,0.249945,0,0);-ms-transform:matrix(0.236688,0.004970,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.236688,0.004970,-0.005249,0.249945,0,0);}
.m52_c01222{transform:matrix(0.239187,0.004545,-0.004749,0.249955,0,0);-ms-transform:matrix(0.239187,0.004545,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.239187,0.004545,-0.004749,0.249955,0,0);}
.m24_c01222{transform:matrix(0.242004,0.003872,-0.003999,0.249968,0,0);-ms-transform:matrix(0.242004,0.003872,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.242004,0.003872,-0.003999,0.249968,0,0);}
.m26_c01222{transform:matrix(0.243259,0.003892,-0.003999,0.249968,0,0);-ms-transform:matrix(0.243259,0.003892,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.243259,0.003892,-0.003999,0.249968,0,0);}
.m53_c01222{transform:matrix(0.244211,0.004640,-0.004749,0.249955,0,0);-ms-transform:matrix(0.244211,0.004640,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.244211,0.004640,-0.004749,0.249955,0,0);}
.m49_c01222{transform:matrix(0.246466,0.005176,-0.005249,0.249945,0,0);-ms-transform:matrix(0.246466,0.005176,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.246466,0.005176,-0.005249,0.249945,0,0);}
.m25_c01222{transform:matrix(0.246838,0.003949,-0.003999,0.249968,0,0);-ms-transform:matrix(0.246838,0.003949,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.246838,0.003949,-0.003999,0.249968,0,0);}
.m20_c01222{transform:matrix(0.248661,0.006465,-0.006498,0.249916,0,0);-ms-transform:matrix(0.248661,0.006465,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.248661,0.006465,-0.006498,0.249916,0,0);}
.m2a_c01222{transform:matrix(0.248823,0.003981,-0.003999,0.249968,0,0);-ms-transform:matrix(0.248823,0.003981,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.248823,0.003981,-0.003999,0.249968,0,0);}
.m61_c01222{transform:matrix(0.249152,0.003737,-0.003750,0.249972,0,0);-ms-transform:matrix(0.249152,0.003737,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.249152,0.003737,-0.003750,0.249972,0,0);}
.m2c_c01222{transform:matrix(0.250278,0.004004,-0.003999,0.249968,0,0);-ms-transform:matrix(0.250278,0.004004,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.250278,0.004004,-0.003999,0.249968,0,0);}
.m47_c01222{transform:matrix(0.251150,0.005274,-0.005249,0.249945,0,0);-ms-transform:matrix(0.251150,0.005274,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.251150,0.005274,-0.005249,0.249945,0,0);}
.mc_c01222{transform:matrix(0.251885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251885,0.000000,0.000000,0.250000,0,0);}
.m54_c01222{transform:matrix(0.253189,0.004811,-0.004749,0.249955,0,0);-ms-transform:matrix(0.253189,0.004811,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.253189,0.004811,-0.004749,0.249955,0,0);}
.m4e_c01222{transform:matrix(0.253349,0.004814,-0.004749,0.249955,0,0);-ms-transform:matrix(0.253349,0.004814,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.253349,0.004814,-0.004749,0.249955,0,0);}
.md_c01222{transform:matrix(0.254165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254165,0.000000,0.000000,0.250000,0,0);}
.m8_c01222{transform:matrix(0.258020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258020,0.000000,0.000000,0.250000,0,0);}
.m4a_c01222{transform:matrix(0.258540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258540,0.000000,0.000000,0.250000,0,0);}
.m57_c01222{transform:matrix(0.265742,0.005049,-0.004749,0.249955,0,0);-ms-transform:matrix(0.265742,0.005049,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.265742,0.005049,-0.004749,0.249955,0,0);}
.m1a_c01222{transform:matrix(0.266755,0.006936,-0.006498,0.249916,0,0);-ms-transform:matrix(0.266755,0.006936,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.266755,0.006936,-0.006498,0.249916,0,0);}
.mb_c01222{transform:matrix(0.268010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268010,0.000000,0.000000,0.250000,0,0);}
.m22_c01222{transform:matrix(0.268259,0.006975,-0.006498,0.249916,0,0);-ms-transform:matrix(0.268259,0.006975,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.268259,0.006975,-0.006498,0.249916,0,0);}
.m1_c01222{transform:matrix(0.269945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269945,0.000000,0.000000,0.250000,0,0);}
.m4f_c01222{transform:matrix(0.271091,0.005151,-0.004749,0.249955,0,0);-ms-transform:matrix(0.271091,0.005151,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.271091,0.005151,-0.004749,0.249955,0,0);}
.m3f_c01222{transform:matrix(0.271890,0.006797,-0.006248,0.249922,0,0);-ms-transform:matrix(0.271890,0.006797,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.271890,0.006797,-0.006248,0.249922,0,0);}
.m58_c01222{transform:matrix(0.272584,0.004089,-0.003750,0.249972,0,0);-ms-transform:matrix(0.272584,0.004089,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.272584,0.004089,-0.003750,0.249972,0,0);}
.m39_c01222{transform:matrix(0.273655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273655,0.000000,0.000000,0.250000,0,0);}
.m30_c01222{transform:matrix(0.273930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273930,0.000000,0.000000,0.250000,0,0);}
.m1c_c01222{transform:matrix(0.275012,0.007150,-0.006498,0.249916,0,0);-ms-transform:matrix(0.275012,0.007150,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.275012,0.007150,-0.006498,0.249916,0,0);}
.m4b_c01222{transform:matrix(0.281405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281405,0.000000,0.000000,0.250000,0,0);}
.mf_c01222{transform:matrix(0.282780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282780,0.000000,0.000000,0.250000,0,0);}
.m51_c01222{transform:matrix(0.285428,0.005423,-0.004749,0.249955,0,0);-ms-transform:matrix(0.285428,0.005423,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.285428,0.005423,-0.004749,0.249955,0,0);}
.m5c_c01222{transform:matrix(0.287503,0.004313,-0.003750,0.249972,0,0);-ms-transform:matrix(0.287503,0.004313,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.287503,0.004313,-0.003750,0.249972,0,0);}
.m2_c01222{transform:matrix(0.288600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288600,0.000000,0.000000,0.250000,0,0);}
.m9_c01222{transform:matrix(0.292535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292535,0.000000,0.000000,0.250000,0,0);}
.m6_c01222{transform:matrix(0.292945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292945,0.000000,0.000000,0.250000,0,0);}
.m23_c01222{transform:matrix(0.293252,0.004692,-0.003999,0.249968,0,0);-ms-transform:matrix(0.293252,0.004692,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.293252,0.004692,-0.003999,0.249968,0,0);}
.m3e_c01222{transform:matrix(0.294078,0.007352,-0.006248,0.249922,0,0);-ms-transform:matrix(0.294078,0.007352,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.294078,0.007352,-0.006248,0.249922,0,0);}
.m4_c01222{transform:matrix(0.295960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295960,0.000000,0.000000,0.250000,0,0);}
.m7_c01222{transform:matrix(0.300655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300655,0.000000,0.000000,0.250000,0,0);}
.ma_c01222{transform:matrix(0.301380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301380,0.000000,0.000000,0.250000,0,0);}
.m4d_c01222{transform:matrix(0.307215,0.005837,-0.004749,0.249955,0,0);-ms-transform:matrix(0.307215,0.005837,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.307215,0.005837,-0.004749,0.249955,0,0);}
.m1b_c01222{transform:matrix(0.311810,0.008107,-0.006498,0.249916,0,0);-ms-transform:matrix(0.311810,0.008107,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.311810,0.008107,-0.006498,0.249916,0,0);}
.m5_c01222{transform:matrix(0.312035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312035,0.000000,0.000000,0.250000,0,0);}
.m28_c01222{transform:matrix(0.324828,0.005197,-0.003999,0.249968,0,0);-ms-transform:matrix(0.324828,0.005197,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.324828,0.005197,-0.003999,0.249968,0,0);}
.m1e_c01222{transform:matrix(0.339670,0.008831,-0.006498,0.249916,0,0);-ms-transform:matrix(0.339670,0.008831,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.339670,0.008831,-0.006498,0.249916,0,0);}
.m5b_c01222{transform:matrix(0.340557,0.005108,-0.003750,0.249972,0,0);-ms-transform:matrix(0.340557,0.005108,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.340557,0.005108,-0.003750,0.249972,0,0);}
.m3_c01222{transform:matrix(0.346615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346615,0.000000,0.000000,0.250000,0,0);}
.m10_c01222{transform:matrix(0.349085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349085,0.000000,0.000000,0.250000,0,0);}
.m29_c01222{transform:matrix(0.352595,0.005642,-0.003999,0.249968,0,0);-ms-transform:matrix(0.352595,0.005642,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.352595,0.005642,-0.003999,0.249968,0,0);}
.m34_c01222{transform:matrix(0.359758,0.007195,-0.004999,0.249950,0,0);-ms-transform:matrix(0.359758,0.007195,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.359758,0.007195,-0.004999,0.249950,0,0);}
.m35_c01222{transform:matrix(0.368721,0.007374,-0.004999,0.249950,0,0);-ms-transform:matrix(0.368721,0.007374,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.368721,0.007374,-0.004999,0.249950,0,0);}
.m32_c01222{transform:matrix(0.401680,0.008034,-0.004999,0.249950,0,0);-ms-transform:matrix(0.401680,0.008034,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.401680,0.008034,-0.004999,0.249950,0,0);}
.m2f_c01222{transform:matrix(0.418796,0.006701,-0.003999,0.249968,0,0);-ms-transform:matrix(0.418796,0.006701,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.418796,0.006701,-0.003999,0.249968,0,0);}
.m31_c01222{transform:matrix(0.455929,0.009119,-0.004999,0.249950,0,0);-ms-transform:matrix(0.455929,0.009119,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.455929,0.009119,-0.004999,0.249950,0,0);}
.m37_c01222{transform:matrix(0.546765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.546765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.546765,0.000000,0.000000,0.250000,0,0);}
.m2d_c01222{transform:matrix(0.580241,0.009284,-0.003999,0.249968,0,0);-ms-transform:matrix(0.580241,0.009284,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.580241,0.009284,-0.003999,0.249968,0,0);}
.m38_c01222{transform:matrix(0.744325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.744325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.744325,0.000000,0.000000,0.250000,0,0);}
.m17_c01222{transform:matrix(3.182063,0.066823,-0.005249,0.249945,0,0);-ms-transform:matrix(3.182063,0.066823,-0.005249,0.249945,0,0);-webkit-transform:matrix(3.182063,0.066823,-0.005249,0.249945,0,0);}
.v0_c01222{vertical-align:0.000000px;}
.ls0_c01222{letter-spacing:0.000000px;}
.sc__c01222{text-shadow:none;}
.sc0_c01222{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__c01222{-webkit-text-stroke:0px transparent;}
.sc0_c01222{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01222{word-spacing:0.000000px;}
.fc0_c01222{color:transparent;}
.fs8_c01222{font-size:42.000000px;}
.fs7_c01222{font-size:42.008399px;}
.fs9_c01222{font-size:48.000000px;}
.fs1_c01222{font-size:66.000000px;}
.fsa_c01222{font-size:66.020622px;}
.fs6_c01222{font-size:72.000000px;}
.fsd_c01222{font-size:72.012995px;}
.fs4_c01222{font-size:72.024332px;}
.fs2_c01222{font-size:78.000000px;}
.fs5_c01222{font-size:78.009983px;}
.fsf_c01222{font-size:84.009449px;}
.fsb_c01222{font-size:84.018520px;}
.fsc_c01222{font-size:96.000000px;}
.fse_c01222{font-size:102.018409px;}
.fs3_c01222{font-size:108.023811px;}
.fs0_c01222{font-size:114.000000px;}
.y0_c01222{bottom:0.000000px;}
.y51_c01222{bottom:61.647690px;}
.y50_c01222{bottom:62.802300px;}
.y4f_c01222{bottom:64.471935px;}
.y4e_c01222{bottom:66.608040px;}
.y4d_c01222{bottom:67.288733px;}
.y4c_c01222{bottom:67.792147px;}
.y4b_c01222{bottom:68.937870px;}
.y4a_c01222{bottom:69.589898px;}
.y49_c01222{bottom:70.897485px;}
.y48_c01222{bottom:72.363000px;}
.y47_c01222{bottom:98.726760px;}
.y46_c01222{bottom:101.544300px;}
.y45_c01222{bottom:132.520878px;}
.y44_c01222{bottom:133.110457px;}
.y43_c01222{bottom:133.774707px;}
.y42_c01222{bottom:135.879774px;}
.y41_c01222{bottom:139.652091px;}
.y40_c01222{bottom:140.509029px;}
.y3f_c01222{bottom:142.556412px;}
.y3e_c01222{bottom:143.832870px;}
.y3d_c01222{bottom:144.820053px;}
.y3c_c01222{bottom:145.263000px;}
.y3b_c01222{bottom:173.479500px;}
.y3a_c01222{bottom:201.161358px;}
.y39_c01222{bottom:201.585568px;}
.y38_c01222{bottom:203.253052px;}
.y37_c01222{bottom:204.616246px;}
.y36_c01222{bottom:205.569562px;}
.y35_c01222{bottom:207.390766px;}
.y34_c01222{bottom:209.971719px;}
.y33_c01222{bottom:212.024416px;}
.y32_c01222{bottom:213.419992px;}
.y31_c01222{bottom:215.464500px;}
.y30_c01222{bottom:245.056762px;}
.y2f_c01222{bottom:247.031887px;}
.y2e_c01222{bottom:249.146512px;}
.y2d_c01222{bottom:250.836000px;}
.y2c_c01222{bottom:421.873500px;}
.y2b_c01222{bottom:542.017500px;}
.y2a_c01222{bottom:567.406500px;}
.y29_c01222{bottom:664.640010px;}
.y28_c01222{bottom:668.351670px;}
.y27_c01222{bottom:669.900840px;}
.y26_c01222{bottom:670.604100px;}
.y25_c01222{bottom:671.247000px;}
.y24_c01222{bottom:672.577500px;}
.y23_c01222{bottom:777.063000px;}
.y22_c01222{bottom:836.916132px;}
.y21_c01222{bottom:837.425940px;}
.y20_c01222{bottom:838.889052px;}
.y1f_c01222{bottom:839.197812px;}
.y1e_c01222{bottom:839.884188px;}
.y1d_c01222{bottom:840.951996px;}
.y1c_c01222{bottom:841.851060px;}
.y1b_c01222{bottom:843.066444px;}
.y1a_c01222{bottom:843.786924px;}
.y19_c01222{bottom:844.854252px;}
.y18_c01222{bottom:845.549748px;}
.y17_c01222{bottom:846.780780px;}
.y16_c01222{bottom:848.344500px;}
.y15_c01222{bottom:1012.706916px;}
.y14_c01222{bottom:1013.551851px;}
.y13_c01222{bottom:1016.192502px;}
.y12_c01222{bottom:1017.316053px;}
.y11_c01222{bottom:1018.051281px;}
.y10_c01222{bottom:1019.577936px;}
.yf_c01222{bottom:1022.772582px;}
.ye_c01222{bottom:1025.341746px;}
.yd_c01222{bottom:1027.047411px;}
.yc_c01222{bottom:1028.396889px;}
.yb_c01222{bottom:1028.976000px;}
.ya_c01222{bottom:1048.624266px;}
.y9_c01222{bottom:1049.588324px;}
.y8_c01222{bottom:1051.216212px;}
.y7_c01222{bottom:1052.350086px;}
.y6_c01222{bottom:1054.419290px;}
.y5_c01222{bottom:1055.510387px;}
.y4_c01222{bottom:1055.977500px;}
.y3_c01222{bottom:1095.000000px;}
.y2_c01222{bottom:1131.030000px;}
.y1_c01222{bottom:1180.989000px;}
.ha_c01222{height:42.000000px;}
.h9_c01222{height:42.008399px;}
.hb_c01222{height:48.000000px;}
.h3_c01222{height:66.000000px;}
.hc_c01222{height:66.020622px;}
.h8_c01222{height:72.000000px;}
.hf_c01222{height:72.012995px;}
.h6_c01222{height:72.024332px;}
.h4_c01222{height:78.000000px;}
.h7_c01222{height:78.009983px;}
.h11_c01222{height:84.009449px;}
.hd_c01222{height:84.018520px;}
.he_c01222{height:96.000000px;}
.h10_c01222{height:102.018409px;}
.h5_c01222{height:108.023811px;}
.h2_c01222{height:114.000000px;}
.h1_c01222{height:1258.500000px;}
.h0_c01222{height:1258.740000px;}
.w0_c01222{width:904.200000px;}
.w1_c01222{width:904.500000px;}
.x0_c01222{left:0.000000px;}
.x4d_c01222{left:57.895500px;}
.x3a_c01222{left:59.977500px;}
.x33_c01222{left:63.720000px;}
.x32_c01222{left:66.420000px;}
.x2c_c01222{left:71.010000px;}
.x20_c01222{left:72.384000px;}
.x4_c01222{left:80.190000px;}
.x45_c01222{left:81.655500px;}
.x12_c01222{left:100.921500px;}
.x46_c01222{left:104.968500px;}
.x13_c01222{left:123.165000px;}
.x4e_c01222{left:155.596500px;}
.x3b_c01222{left:157.335000px;}
.x34_c01222{left:163.890000px;}
.x21_c01222{left:170.116500px;}
.x14_c01222{left:175.122000px;}
.x5_c01222{left:178.200000px;}
.x4c_c01222{left:196.666649px;}
.x43_c01222{left:198.450000px;}
.x44_c01222{left:199.530000px;}
.x36_c01222{left:213.604500px;}
.xe_c01222{left:221.670000px;}
.x3c_c01222{left:223.791000px;}
.x19_c01222{left:239.745000px;}
.x4f_c01222{left:242.769000px;}
.x22_c01222{left:247.056000px;}
.x35_c01222{left:271.620000px;}
.x15_c01222{left:273.655500px;}
.x6_c01222{left:275.130000px;}
.x37_c01222{left:281.184000px;}
.x2d_c01222{left:287.193000px;}
.x23_c01222{left:290.524500px;}
.x7_c01222{left:297.000000px;}
.x3d_c01222{left:321.538500px;}
.x16_c01222{left:327.649500px;}
.xf_c01222{left:329.940000px;}
.x47_c01222{left:331.864500px;}
.x1a_c01222{left:338.559000px;}
.x2e_c01222{left:353.718000px;}
.x24_c01222{left:357.232500px;}
.x10_c01222{left:361.800000px;}
.x38_c01222{left:365.769000px;}
.x48_c01222{left:376.966500px;}
.x8_c01222{left:385.020000px;}
.x1_c01222{left:391.770000px;}
.x50_c01222{left:396.180000px;}
.x25_c01222{left:402.262500px;}
.x17_c01222{left:405.168000px;}
.x2_c01222{left:414.180000px;}
.x2f_c01222{left:421.026000px;}
.x51_c01222{left:441.559500px;}
.x39_c01222{left:444.774000px;}
.x18_c01222{left:451.075500px;}
.x3_c01222{left:458.460000px;}
.x1b_c01222{left:461.430000px;}
.x11_c01222{left:471.690000px;}
.x9_c01222{left:473.580000px;}
.x26_c01222{left:478.224000px;}
.x30_c01222{left:498.484500px;}
.xa_c01222{left:519.750000px;}
.x3e_c01222{left:531.165000px;}
.x27_c01222{left:534.415500px;}
.x1c_c01222{left:548.425500px;}
.x49_c01222{left:575.509500px;}
.x3f_c01222{left:576.561000px;}
.x52_c01222{left:583.966500px;}
.x1d_c01222{left:591.639000px;}
.xb_c01222{left:595.350000px;}
.x28_c01222{left:601.153500px;}
.x40_c01222{left:641.475000px;}
.x29_c01222{left:644.052000px;}
.x2a_c01222{left:663.349500px;}
.x31_c01222{left:684.067500px;}
.x4a_c01222{left:686.302500px;}
.xc_c01222{left:687.690000px;}
.x1e_c01222{left:693.202500px;}
.x53_c01222{left:695.275500px;}
.x41_c01222{left:720.879000px;}
.x1f_c01222{left:725.700000px;}
.x42_c01222{left:741.079500px;}
.x4b_c01222{left:752.293500px;}
.x2b_c01222{left:754.794000px;}
.x54_c01222{left:772.249500px;}
.xd_c01222{left:785.700000px;}
@media print{
.v0_c01222{vertical-align:0.000000pt;}
.ls0_c01222{letter-spacing:0.000000pt;}
.ws0_c01222{word-spacing:0.000000pt;}
.fs8_c01222{font-size:37.333333pt;}
.fs7_c01222{font-size:37.340799pt;}
.fs9_c01222{font-size:42.666667pt;}
.fs1_c01222{font-size:58.666667pt;}
.fsa_c01222{font-size:58.684997pt;}
.fs6_c01222{font-size:64.000000pt;}
.fsd_c01222{font-size:64.011551pt;}
.fs4_c01222{font-size:64.021628pt;}
.fs2_c01222{font-size:69.333333pt;}
.fs5_c01222{font-size:69.342207pt;}
.fsf_c01222{font-size:74.675066pt;}
.fsb_c01222{font-size:74.683129pt;}
.fsc_c01222{font-size:85.333333pt;}
.fse_c01222{font-size:90.683031pt;}
.fs3_c01222{font-size:96.021166pt;}
.fs0_c01222{font-size:101.333333pt;}
.y0_c01222{bottom:0.000000pt;}
.y51_c01222{bottom:54.797947pt;}
.y50_c01222{bottom:55.824267pt;}
.y4f_c01222{bottom:57.308387pt;}
.y4e_c01222{bottom:59.207147pt;}
.y4d_c01222{bottom:59.812207pt;}
.y4c_c01222{bottom:60.259687pt;}
.y4b_c01222{bottom:61.278107pt;}
.y4a_c01222{bottom:61.857687pt;}
.y49_c01222{bottom:63.019987pt;}
.y48_c01222{bottom:64.322667pt;}
.y47_c01222{bottom:87.757120pt;}
.y46_c01222{bottom:90.261600pt;}
.y45_c01222{bottom:117.796336pt;}
.y44_c01222{bottom:118.320407pt;}
.y43_c01222{bottom:118.910851pt;}
.y42_c01222{bottom:120.782021pt;}
.y41_c01222{bottom:124.135192pt;}
.y40_c01222{bottom:124.896915pt;}
.y3f_c01222{bottom:126.716811pt;}
.y3e_c01222{bottom:127.851440pt;}
.y3d_c01222{bottom:128.728936pt;}
.y3c_c01222{bottom:129.122667pt;}
.y3b_c01222{bottom:154.204000pt;}
.y3a_c01222{bottom:178.810096pt;}
.y39_c01222{bottom:179.187172pt;}
.y38_c01222{bottom:180.669380pt;}
.y37_c01222{bottom:181.881108pt;}
.y36_c01222{bottom:182.728500pt;}
.y35_c01222{bottom:184.347348pt;}
.y34_c01222{bottom:186.641528pt;}
.y33_c01222{bottom:188.466148pt;}
.y32_c01222{bottom:189.706660pt;}
.y31_c01222{bottom:191.524000pt;}
.y30_c01222{bottom:217.828233pt;}
.y2f_c01222{bottom:219.583900pt;}
.y2e_c01222{bottom:221.463567pt;}
.y2d_c01222{bottom:222.965333pt;}
.y2c_c01222{bottom:374.998667pt;}
.y2b_c01222{bottom:481.793333pt;}
.y2a_c01222{bottom:504.361333pt;}
.y29_c01222{bottom:590.791120pt;}
.y28_c01222{bottom:594.090373pt;}
.y27_c01222{bottom:595.467413pt;}
.y26_c01222{bottom:596.092533pt;}
.y25_c01222{bottom:596.664000pt;}
.y24_c01222{bottom:597.846667pt;}
.y23_c01222{bottom:690.722667pt;}
.y22_c01222{bottom:743.925451pt;}
.y21_c01222{bottom:744.378613pt;}
.y20_c01222{bottom:745.679157pt;}
.y1f_c01222{bottom:745.953611pt;}
.y1e_c01222{bottom:746.563723pt;}
.y1d_c01222{bottom:747.512885pt;}
.y1c_c01222{bottom:748.312053pt;}
.y1b_c01222{bottom:749.392395pt;}
.y1a_c01222{bottom:750.032821pt;}
.y19_c01222{bottom:750.981557pt;}
.y18_c01222{bottom:751.599776pt;}
.y17_c01222{bottom:752.694027pt;}
.y16_c01222{bottom:754.084000pt;}
.y15_c01222{bottom:900.183925pt;}
.y14_c01222{bottom:900.934979pt;}
.y13_c01222{bottom:903.282224pt;}
.y12_c01222{bottom:904.280936pt;}
.y11_c01222{bottom:904.934472pt;}
.y10_c01222{bottom:906.291499pt;}
.yf_c01222{bottom:909.131184pt;}
.ye_c01222{bottom:911.414885pt;}
.yd_c01222{bottom:912.931032pt;}
.yc_c01222{bottom:914.130568pt;}
.yb_c01222{bottom:914.645333pt;}
.ya_c01222{bottom:932.110459pt;}
.y9_c01222{bottom:932.967399pt;}
.y8_c01222{bottom:934.414411pt;}
.y7_c01222{bottom:935.422299pt;}
.y6_c01222{bottom:937.261591pt;}
.y5_c01222{bottom:938.231455pt;}
.y4_c01222{bottom:938.646667pt;}
.y3_c01222{bottom:973.333333pt;}
.y2_c01222{bottom:1005.360000pt;}
.y1_c01222{bottom:1049.768000pt;}
.ha_c01222{height:37.333333pt;}
.h9_c01222{height:37.340799pt;}
.hb_c01222{height:42.666667pt;}
.h3_c01222{height:58.666667pt;}
.hc_c01222{height:58.684997pt;}
.h8_c01222{height:64.000000pt;}
.hf_c01222{height:64.011551pt;}
.h6_c01222{height:64.021628pt;}
.h4_c01222{height:69.333333pt;}
.h7_c01222{height:69.342207pt;}
.h11_c01222{height:74.675066pt;}
.hd_c01222{height:74.683129pt;}
.he_c01222{height:85.333333pt;}
.h10_c01222{height:90.683031pt;}
.h5_c01222{height:96.021166pt;}
.h2_c01222{height:101.333333pt;}
.h1_c01222{height:1118.666667pt;}
.h0_c01222{height:1118.880000pt;}
.w0_c01222{width:803.733333pt;}
.w1_c01222{width:804.000000pt;}
.x0_c01222{left:0.000000pt;}
.x4d_c01222{left:51.462667pt;}
.x3a_c01222{left:53.313333pt;}
.x33_c01222{left:56.640000pt;}
.x32_c01222{left:59.040000pt;}
.x2c_c01222{left:63.120000pt;}
.x20_c01222{left:64.341333pt;}
.x4_c01222{left:71.280000pt;}
.x45_c01222{left:72.582667pt;}
.x12_c01222{left:89.708000pt;}
.x46_c01222{left:93.305333pt;}
.x13_c01222{left:109.480000pt;}
.x4e_c01222{left:138.308000pt;}
.x3b_c01222{left:139.853333pt;}
.x34_c01222{left:145.680000pt;}
.x21_c01222{left:151.214667pt;}
.x14_c01222{left:155.664000pt;}
.x5_c01222{left:158.400000pt;}
.x4c_c01222{left:174.814799pt;}
.x43_c01222{left:176.400000pt;}
.x44_c01222{left:177.360000pt;}
.x36_c01222{left:189.870667pt;}
.xe_c01222{left:197.040000pt;}
.x3c_c01222{left:198.925333pt;}
.x19_c01222{left:213.106667pt;}
.x4f_c01222{left:215.794667pt;}
.x22_c01222{left:219.605333pt;}
.x35_c01222{left:241.440000pt;}
.x15_c01222{left:243.249333pt;}
.x6_c01222{left:244.560000pt;}
.x37_c01222{left:249.941333pt;}
.x2d_c01222{left:255.282667pt;}
.x23_c01222{left:258.244000pt;}
.x7_c01222{left:264.000000pt;}
.x3d_c01222{left:285.812000pt;}
.x16_c01222{left:291.244000pt;}
.xf_c01222{left:293.280000pt;}
.x47_c01222{left:294.990667pt;}
.x1a_c01222{left:300.941333pt;}
.x2e_c01222{left:314.416000pt;}
.x24_c01222{left:317.540000pt;}
.x10_c01222{left:321.600000pt;}
.x38_c01222{left:325.128000pt;}
.x48_c01222{left:335.081333pt;}
.x8_c01222{left:342.240000pt;}
.x1_c01222{left:348.240000pt;}
.x50_c01222{left:352.160000pt;}
.x25_c01222{left:357.566667pt;}
.x17_c01222{left:360.149333pt;}
.x2_c01222{left:368.160000pt;}
.x2f_c01222{left:374.245333pt;}
.x51_c01222{left:392.497333pt;}
.x39_c01222{left:395.354667pt;}
.x18_c01222{left:400.956000pt;}
.x3_c01222{left:407.520000pt;}
.x1b_c01222{left:410.160000pt;}
.x11_c01222{left:419.280000pt;}
.x9_c01222{left:420.960000pt;}
.x26_c01222{left:425.088000pt;}
.x30_c01222{left:443.097333pt;}
.xa_c01222{left:462.000000pt;}
.x3e_c01222{left:472.146667pt;}
.x27_c01222{left:475.036000pt;}
.x1c_c01222{left:487.489333pt;}
.x49_c01222{left:511.564000pt;}
.x3f_c01222{left:512.498667pt;}
.x52_c01222{left:519.081333pt;}
.x1d_c01222{left:525.901333pt;}
.xb_c01222{left:529.200000pt;}
.x28_c01222{left:534.358667pt;}
.x40_c01222{left:570.200000pt;}
.x29_c01222{left:572.490667pt;}
.x2a_c01222{left:589.644000pt;}
.x31_c01222{left:608.060000pt;}
.x4a_c01222{left:610.046667pt;}
.xc_c01222{left:611.280000pt;}
.x1e_c01222{left:616.180000pt;}
.x53_c01222{left:618.022667pt;}
.x41_c01222{left:640.781333pt;}
.x1f_c01222{left:645.066667pt;}
.x42_c01222{left:658.737333pt;}
.x4b_c01222{left:668.705333pt;}
.x2b_c01222{left:670.928000pt;}
.x54_c01222{left:686.444000pt;}
.xd_c01222{left:698.400000pt;}
}





/* 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_c01223 {
    display:none;
  }
  .loading-indicator_c01223.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01223 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_c01223 { 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_c01223" -> "#page-container .classname_c01223")
 */
.pf_c01223 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01223 { /* 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_c01223.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01223 { /* 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_c01223 { /* 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_c01223 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01223 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01223 {overflow:visible;}
  }
}
.c_c01223 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01223 { /* 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_c01223:after { /* webkit #35443 */
  content: '';
}
.t_c01223:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01223 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 */
}
.__c01223 { /* 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_c01223 { /* info for Javascript */
  display:none;
}
.l_c01223 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01223 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01223 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01223: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_c01223 {
    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_c01223.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01223.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_c01223 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01223{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01223;src:url('chunks/assets/font_78f73daa2ee315112395a523.woff2')format("woff");}.ff1_c01223{font-family:ff1_c01223;line-height:1.000000;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;}
.m1_c01223{transform:matrix(0.509740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.509740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.509740,0.000000,0.000000,0.250000,0,0);}
.m0_c01223{transform:matrix(0.723415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.723415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.723415,0.000000,0.000000,0.250000,0,0);}
.v0_c01223{vertical-align:0.000000px;}
.ls0_c01223{letter-spacing:0.000000px;}
.sc__c01223{text-shadow:none;}
.sc0_c01223{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__c01223{-webkit-text-stroke:0px transparent;}
.sc0_c01223{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01223{word-spacing:0.000000px;}
.fc0_c01223{color:transparent;}
.fs1_c01223{font-size:24.000000px;}
.fs0_c01223{font-size:90.000000px;}
.y0_c01223{bottom:0.000000px;}
.y2_c01223{bottom:1118.338500px;}
.y1_c01223{bottom:1119.553500px;}
.h3_c01223{height:24.000000px;}
.h2_c01223{height:90.000000px;}
.h1_c01223{height:1258.500000px;}
.h0_c01223{height:1258.740000px;}
.w0_c01223{width:892.350000px;}
.w1_c01223{width:892.500000px;}
.x0_c01223{left:0.000000px;}
.x2_c01223{left:129.870000px;}
.x1_c01223{left:133.380000px;}
@media print{
.v0_c01223{vertical-align:0.000000pt;}
.ls0_c01223{letter-spacing:0.000000pt;}
.ws0_c01223{word-spacing:0.000000pt;}
.fs1_c01223{font-size:21.333333pt;}
.fs0_c01223{font-size:80.000000pt;}
.y0_c01223{bottom:0.000000pt;}
.y2_c01223{bottom:994.078667pt;}
.y1_c01223{bottom:995.158667pt;}
.h3_c01223{height:21.333333pt;}
.h2_c01223{height:80.000000pt;}
.h1_c01223{height:1118.666667pt;}
.h0_c01223{height:1118.880000pt;}
.w0_c01223{width:793.200000pt;}
.w1_c01223{width:793.333333pt;}
.x0_c01223{left:0.000000pt;}
.x2_c01223{left:115.440000pt;}
.x1_c01223{left:118.560000pt;}
}





/* 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_c01224 {
    display:none;
  }
  .loading-indicator_c01224.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01224 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_c01224 { 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_c01224" -> "#page-container .classname_c01224")
 */
.pf_c01224 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01224 { /* 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_c01224.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01224 { /* 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_c01224 { /* 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_c01224 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01224 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01224 {overflow:visible;}
  }
}
.c_c01224 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01224 { /* 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_c01224:after { /* webkit #35443 */
  content: '';
}
.t_c01224:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01224 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 */
}
.__c01224 { /* 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_c01224 { /* info for Javascript */
  display:none;
}
.l_c01224 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01224 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01224 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01224: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_c01224 {
    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_c01224.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01224.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_c01224 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01224{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01224;src:url('chunks/assets/font_7c6b9abe6ee2a268480c528b.woff2')format("woff");}.ff1_c01224{font-family:ff1_c01224;line-height:1.000000;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;}
.mff_c01224{transform:matrix(0.009084,0.000336,-0.009253,0.249829,0,0);-ms-transform:matrix(0.009084,0.000336,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.009084,0.000336,-0.009253,0.249829,0,0);}
.mbf_c01224{transform:matrix(0.010812,0.000249,-0.005748,0.249934,0,0);-ms-transform:matrix(0.010812,0.000249,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.010812,0.000249,-0.005748,0.249934,0,0);}
.mc0_c01224{transform:matrix(0.012727,0.000293,-0.005748,0.249934,0,0);-ms-transform:matrix(0.012727,0.000293,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.012727,0.000293,-0.005748,0.249934,0,0);}
.mba_c01224{transform:matrix(0.124542,0.002864,-0.005748,0.249934,0,0);-ms-transform:matrix(0.124542,0.002864,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.124542,0.002864,-0.005748,0.249934,0,0);}
.md0_c01224{transform:matrix(0.135296,0.003247,-0.005998,0.249928,0,0);-ms-transform:matrix(0.135296,0.003247,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.135296,0.003247,-0.005998,0.249928,0,0);}
.mbb_c01224{transform:matrix(0.143247,0.003295,-0.005748,0.249934,0,0);-ms-transform:matrix(0.143247,0.003295,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.143247,0.003295,-0.005748,0.249934,0,0);}
.mb7_c01224{transform:matrix(0.157138,0.003614,-0.005748,0.249934,0,0);-ms-transform:matrix(0.157138,0.003614,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.157138,0.003614,-0.005748,0.249934,0,0);}
.m8a_c01224{transform:matrix(0.159731,0.003514,-0.005499,0.249940,0,0);-ms-transform:matrix(0.159731,0.003514,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.159731,0.003514,-0.005499,0.249940,0,0);}
.md2_c01224{transform:matrix(0.179633,0.004311,-0.005998,0.249928,0,0);-ms-transform:matrix(0.179633,0.004311,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.179633,0.004311,-0.005998,0.249928,0,0);}
.m56_c01224{transform:matrix(0.184086,0.004234,-0.005748,0.249934,0,0);-ms-transform:matrix(0.184086,0.004234,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.184086,0.004234,-0.005748,0.249934,0,0);}
.mbd_c01224{transform:matrix(0.184666,0.004247,-0.005748,0.249934,0,0);-ms-transform:matrix(0.184666,0.004247,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.184666,0.004247,-0.005748,0.249934,0,0);}
.mcf_c01224{transform:matrix(0.191610,0.004599,-0.005998,0.249928,0,0);-ms-transform:matrix(0.191610,0.004599,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.191610,0.004599,-0.005998,0.249928,0,0);}
.mc2_c01224{transform:matrix(0.196263,0.004710,-0.005998,0.249928,0,0);-ms-transform:matrix(0.196263,0.004710,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.196263,0.004710,-0.005998,0.249928,0,0);}
.mc7_c01224{transform:matrix(0.196458,0.004715,-0.005998,0.249928,0,0);-ms-transform:matrix(0.196458,0.004715,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.196458,0.004715,-0.005998,0.249928,0,0);}
.mcd_c01224{transform:matrix(0.196678,0.004720,-0.005998,0.249928,0,0);-ms-transform:matrix(0.196678,0.004720,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.196678,0.004720,-0.005998,0.249928,0,0);}
.md3_c01224{transform:matrix(0.197623,0.004743,-0.005998,0.249928,0,0);-ms-transform:matrix(0.197623,0.004743,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.197623,0.004743,-0.005998,0.249928,0,0);}
.mc4_c01224{transform:matrix(0.197888,0.004749,-0.005998,0.249928,0,0);-ms-transform:matrix(0.197888,0.004749,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.197888,0.004749,-0.005998,0.249928,0,0);}
.mf9_c01224{transform:matrix(0.200263,0.007417,-0.009253,0.249829,0,0);-ms-transform:matrix(0.200263,0.007417,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.200263,0.007417,-0.009253,0.249829,0,0);}
.m66_c01224{transform:matrix(0.200519,0.003810,-0.004749,0.249955,0,0);-ms-transform:matrix(0.200519,0.003810,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.200519,0.003810,-0.004749,0.249955,0,0);}
.m27_c01224{transform:matrix(0.200550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200550,0.000000,0.000000,0.250000,0,0);}
.mcb_c01224{transform:matrix(0.200822,0.004820,-0.005998,0.249928,0,0);-ms-transform:matrix(0.200822,0.004820,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.200822,0.004820,-0.005998,0.249928,0,0);}
.md6_c01224{transform:matrix(0.202097,0.004850,-0.005998,0.249928,0,0);-ms-transform:matrix(0.202097,0.004850,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.202097,0.004850,-0.005998,0.249928,0,0);}
.mf4_c01224{transform:matrix(0.202361,0.007495,-0.009253,0.249829,0,0);-ms-transform:matrix(0.202361,0.007495,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.202361,0.007495,-0.009253,0.249829,0,0);}
.m57_c01224{transform:matrix(0.202478,0.003847,-0.004749,0.249955,0,0);-ms-transform:matrix(0.202478,0.003847,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.202478,0.003847,-0.004749,0.249955,0,0);}
.mc6_c01224{transform:matrix(0.202627,0.004863,-0.005998,0.249928,0,0);-ms-transform:matrix(0.202627,0.004863,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.202627,0.004863,-0.005998,0.249928,0,0);}
.mc8_c01224{transform:matrix(0.204401,0.004906,-0.005998,0.249928,0,0);-ms-transform:matrix(0.204401,0.004906,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.204401,0.004906,-0.005998,0.249928,0,0);}
.md7_c01224{transform:matrix(0.204681,0.004912,-0.005998,0.249928,0,0);-ms-transform:matrix(0.204681,0.004912,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.204681,0.004912,-0.005998,0.249928,0,0);}
.m51_c01224{transform:matrix(0.209245,0.004813,-0.005748,0.249934,0,0);-ms-transform:matrix(0.209245,0.004813,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.209245,0.004813,-0.005748,0.249934,0,0);}
.mf8_c01224{transform:matrix(0.209791,0.007770,-0.009253,0.249829,0,0);-ms-transform:matrix(0.209791,0.007770,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.209791,0.007770,-0.009253,0.249829,0,0);}
.md5_c01224{transform:matrix(0.210139,0.005043,-0.005998,0.249928,0,0);-ms-transform:matrix(0.210139,0.005043,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.210139,0.005043,-0.005998,0.249928,0,0);}
.m4f_c01224{transform:matrix(0.213079,0.004901,-0.005748,0.249934,0,0);-ms-transform:matrix(0.213079,0.004901,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.213079,0.004901,-0.005748,0.249934,0,0);}
.mcc_c01224{transform:matrix(0.216888,0.005205,-0.005998,0.249928,0,0);-ms-transform:matrix(0.216888,0.005205,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.216888,0.005205,-0.005998,0.249928,0,0);}
.mfd_c01224{transform:matrix(0.218105,0.008078,-0.009253,0.249829,0,0);-ms-transform:matrix(0.218105,0.008078,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.218105,0.008078,-0.009253,0.249829,0,0);}
.mf3_c01224{transform:matrix(0.220389,0.008163,-0.009253,0.249829,0,0);-ms-transform:matrix(0.220389,0.008163,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.220389,0.008163,-0.009253,0.249829,0,0);}
.mca_c01224{transform:matrix(0.221116,0.005307,-0.005998,0.249928,0,0);-ms-transform:matrix(0.221116,0.005307,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.221116,0.005307,-0.005998,0.249928,0,0);}
.mc3_c01224{transform:matrix(0.221531,0.005317,-0.005998,0.249928,0,0);-ms-transform:matrix(0.221531,0.005317,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.221531,0.005317,-0.005998,0.249928,0,0);}
.mbc_c01224{transform:matrix(0.222271,0.005112,-0.005748,0.249934,0,0);-ms-transform:matrix(0.222271,0.005112,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.222271,0.005112,-0.005748,0.249934,0,0);}
.m9a_c01224{transform:matrix(0.222440,0.005783,-0.006498,0.249916,0,0);-ms-transform:matrix(0.222440,0.005783,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.222440,0.005783,-0.006498,0.249916,0,0);}
.m4c_c01224{transform:matrix(0.222565,0.004451,-0.004999,0.249950,0,0);-ms-transform:matrix(0.222565,0.004451,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.222565,0.004451,-0.004999,0.249950,0,0);}
.mb5_c01224{transform:matrix(0.224676,0.005168,-0.005748,0.249934,0,0);-ms-transform:matrix(0.224676,0.005168,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.224676,0.005168,-0.005748,0.249934,0,0);}
.m2a_c01224{transform:matrix(0.224720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224720,0.000000,0.000000,0.250000,0,0);}
.mb2_c01224{transform:matrix(0.224791,0.005170,-0.005748,0.249934,0,0);-ms-transform:matrix(0.224791,0.005170,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.224791,0.005170,-0.005748,0.249934,0,0);}
.m97_c01224{transform:matrix(0.225989,0.005876,-0.006498,0.249916,0,0);-ms-transform:matrix(0.225989,0.005876,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.225989,0.005876,-0.006498,0.249916,0,0);}
.m59_c01224{transform:matrix(0.226024,0.004294,-0.004749,0.249955,0,0);-ms-transform:matrix(0.226024,0.004294,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.226024,0.004294,-0.004749,0.249955,0,0);}
.md1_c01224{transform:matrix(0.226445,0.005435,-0.005998,0.249928,0,0);-ms-transform:matrix(0.226445,0.005435,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.226445,0.005435,-0.005998,0.249928,0,0);}
.m10_c01224{transform:matrix(0.226510,0.004530,-0.004999,0.249950,0,0);-ms-transform:matrix(0.226510,0.004530,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.226510,0.004530,-0.004999,0.249950,0,0);}
.m19_c01224{transform:matrix(0.226913,0.005900,-0.006498,0.249916,0,0);-ms-transform:matrix(0.226913,0.005900,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.226913,0.005900,-0.006498,0.249916,0,0);}
.m7_c01224{transform:matrix(0.226960,0.004539,-0.004999,0.249950,0,0);-ms-transform:matrix(0.226960,0.004539,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.226960,0.004539,-0.004999,0.249950,0,0);}
.mad_c01224{transform:matrix(0.227385,0.004548,-0.004999,0.249950,0,0);-ms-transform:matrix(0.227385,0.004548,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.227385,0.004548,-0.004999,0.249950,0,0);}
.m70_c01224{transform:matrix(0.228115,0.005019,-0.005499,0.249940,0,0);-ms-transform:matrix(0.228115,0.005019,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.228115,0.005019,-0.005499,0.249940,0,0);}
.m2e_c01224{transform:matrix(0.228170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228170,0.000000,0.000000,0.250000,0,0);}
.mda_c01224{transform:matrix(0.228176,0.006389,-0.006997,0.249902,0,0);-ms-transform:matrix(0.228176,0.006389,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.228176,0.006389,-0.006997,0.249902,0,0);}
.m2b_c01224{transform:matrix(0.228265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228265,0.000000,0.000000,0.250000,0,0);}
.m8f_c01224{transform:matrix(0.228760,0.005033,-0.005499,0.249940,0,0);-ms-transform:matrix(0.228760,0.005033,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.228760,0.005033,-0.005499,0.249940,0,0);}
.m42_c01224{transform:matrix(0.228994,0.004580,-0.004999,0.249950,0,0);-ms-transform:matrix(0.228994,0.004580,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.228994,0.004580,-0.004999,0.249950,0,0);}
.ma1_c01224{transform:matrix(0.229149,0.004583,-0.004999,0.249950,0,0);-ms-transform:matrix(0.229149,0.004583,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.229149,0.004583,-0.004999,0.249950,0,0);}
.ma4_c01224{transform:matrix(0.229479,0.004590,-0.004999,0.249950,0,0);-ms-transform:matrix(0.229479,0.004590,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.229479,0.004590,-0.004999,0.249950,0,0);}
.m15_c01224{transform:matrix(0.230294,0.004606,-0.004999,0.249950,0,0);-ms-transform:matrix(0.230294,0.004606,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.230294,0.004606,-0.004999,0.249950,0,0);}
.m9e_c01224{transform:matrix(0.230699,0.004614,-0.004999,0.249950,0,0);-ms-transform:matrix(0.230699,0.004614,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.230699,0.004614,-0.004999,0.249950,0,0);}
.mdf_c01224{transform:matrix(0.230805,0.006463,-0.006997,0.249902,0,0);-ms-transform:matrix(0.230805,0.006463,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.230805,0.006463,-0.006997,0.249902,0,0);}
.m55_c01224{transform:matrix(0.231064,0.005314,-0.005748,0.249934,0,0);-ms-transform:matrix(0.231064,0.005314,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.231064,0.005314,-0.005748,0.249934,0,0);}
.mc9_c01224{transform:matrix(0.231103,0.005546,-0.005998,0.249928,0,0);-ms-transform:matrix(0.231103,0.005546,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.231103,0.005546,-0.005998,0.249928,0,0);}
.mce_c01224{transform:matrix(0.231408,0.005554,-0.005998,0.249928,0,0);-ms-transform:matrix(0.231408,0.005554,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.231408,0.005554,-0.005998,0.249928,0,0);}
.mc1_c01224{transform:matrix(0.231603,0.005558,-0.005998,0.249928,0,0);-ms-transform:matrix(0.231603,0.005558,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.231603,0.005558,-0.005998,0.249928,0,0);}
.mfe_c01224{transform:matrix(0.232176,0.008599,-0.009253,0.249829,0,0);-ms-transform:matrix(0.232176,0.008599,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.232176,0.008599,-0.009253,0.249829,0,0);}
.mb9_c01224{transform:matrix(0.232224,0.005341,-0.005748,0.249934,0,0);-ms-transform:matrix(0.232224,0.005341,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.232224,0.005341,-0.005748,0.249934,0,0);}
.m71_c01224{transform:matrix(0.232349,0.005112,-0.005499,0.249940,0,0);-ms-transform:matrix(0.232349,0.005112,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.232349,0.005112,-0.005499,0.249940,0,0);}
.m60_c01224{transform:matrix(0.233363,0.004434,-0.004749,0.249955,0,0);-ms-transform:matrix(0.233363,0.004434,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.233363,0.004434,-0.004749,0.249955,0,0);}
.mc5_c01224{transform:matrix(0.233803,0.005611,-0.005998,0.249928,0,0);-ms-transform:matrix(0.233803,0.005611,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.233803,0.005611,-0.005998,0.249928,0,0);}
.mb6_c01224{transform:matrix(0.235018,0.005405,-0.005748,0.249934,0,0);-ms-transform:matrix(0.235018,0.005405,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.235018,0.005405,-0.005748,0.249934,0,0);}
.m2f_c01224{transform:matrix(0.236670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236670,0.000000,0.000000,0.250000,0,0);}
.mf5_c01224{transform:matrix(0.238057,0.008817,-0.009253,0.249829,0,0);-ms-transform:matrix(0.238057,0.008817,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.238057,0.008817,-0.009253,0.249829,0,0);}
.m63_c01224{transform:matrix(0.239267,0.004546,-0.004749,0.249955,0,0);-ms-transform:matrix(0.239267,0.004546,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.239267,0.004546,-0.004749,0.249955,0,0);}
.m84_c01224{transform:matrix(0.239852,0.005277,-0.005499,0.249940,0,0);-ms-transform:matrix(0.239852,0.005277,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.239852,0.005277,-0.005499,0.249940,0,0);}
.mfb_c01224{transform:matrix(0.240235,0.008898,-0.009253,0.249829,0,0);-ms-transform:matrix(0.240235,0.008898,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.240235,0.008898,-0.009253,0.249829,0,0);}
.m101_c01224{transform:matrix(0.240280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240280,0.000000,0.000000,0.250000,0,0);}
.m62_c01224{transform:matrix(0.240717,0.004574,-0.004749,0.249955,0,0);-ms-transform:matrix(0.240717,0.004574,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.240717,0.004574,-0.004749,0.249955,0,0);}
.m79_c01224{transform:matrix(0.240972,0.005301,-0.005499,0.249940,0,0);-ms-transform:matrix(0.240972,0.005301,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.240972,0.005301,-0.005499,0.249940,0,0);}
.m85_c01224{transform:matrix(0.241242,0.005307,-0.005499,0.249940,0,0);-ms-transform:matrix(0.241242,0.005307,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.241242,0.005307,-0.005499,0.249940,0,0);}
.m7f_c01224{transform:matrix(0.241357,0.005310,-0.005499,0.249940,0,0);-ms-transform:matrix(0.241357,0.005310,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.241357,0.005310,-0.005499,0.249940,0,0);}
.m46_c01224{transform:matrix(0.241367,0.004827,-0.004999,0.249950,0,0);-ms-transform:matrix(0.241367,0.004827,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.241367,0.004827,-0.004999,0.249950,0,0);}
.mf6_c01224{transform:matrix(0.241384,0.008940,-0.009253,0.249829,0,0);-ms-transform:matrix(0.241384,0.008940,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.241384,0.008940,-0.009253,0.249829,0,0);}
.mb_c01224{transform:matrix(0.241972,0.004839,-0.004999,0.249950,0,0);-ms-transform:matrix(0.241972,0.004839,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.241972,0.004839,-0.004999,0.249950,0,0);}
.m45_c01224{transform:matrix(0.242192,0.004844,-0.004999,0.249950,0,0);-ms-transform:matrix(0.242192,0.004844,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.242192,0.004844,-0.004999,0.249950,0,0);}
.mfa_c01224{transform:matrix(0.242329,0.008975,-0.009253,0.249829,0,0);-ms-transform:matrix(0.242329,0.008975,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.242329,0.008975,-0.009253,0.249829,0,0);}
.m9b_c01224{transform:matrix(0.242663,0.006309,-0.006498,0.249916,0,0);-ms-transform:matrix(0.242663,0.006309,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.242663,0.006309,-0.006498,0.249916,0,0);}
.m6e_c01224{transform:matrix(0.243111,0.005348,-0.005499,0.249940,0,0);-ms-transform:matrix(0.243111,0.005348,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.243111,0.005348,-0.005499,0.249940,0,0);}
.mf7_c01224{transform:matrix(0.243208,0.009008,-0.009253,0.249829,0,0);-ms-transform:matrix(0.243208,0.009008,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.243208,0.009008,-0.009253,0.249829,0,0);}
.m4e_c01224{transform:matrix(0.243406,0.005598,-0.005748,0.249934,0,0);-ms-transform:matrix(0.243406,0.005598,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.243406,0.005598,-0.005748,0.249934,0,0);}
.mbe_c01224{transform:matrix(0.243446,0.005599,-0.005748,0.249934,0,0);-ms-transform:matrix(0.243446,0.005599,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.243446,0.005599,-0.005748,0.249934,0,0);}
.m4d_c01224{transform:matrix(0.244116,0.004882,-0.004999,0.249950,0,0);-ms-transform:matrix(0.244116,0.004882,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.244116,0.004882,-0.004999,0.249950,0,0);}
.m3f_c01224{transform:matrix(0.244227,0.007083,-0.007247,0.249895,0,0);-ms-transform:matrix(0.244227,0.007083,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.244227,0.007083,-0.007247,0.249895,0,0);}
.m12_c01224{transform:matrix(0.244721,0.004894,-0.004999,0.249950,0,0);-ms-transform:matrix(0.244721,0.004894,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.244721,0.004894,-0.004999,0.249950,0,0);}
.mab_c01224{transform:matrix(0.244966,0.004899,-0.004999,0.249950,0,0);-ms-transform:matrix(0.244966,0.004899,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.244966,0.004899,-0.004999,0.249950,0,0);}
.m7c_c01224{transform:matrix(0.245846,0.005409,-0.005499,0.249940,0,0);-ms-transform:matrix(0.245846,0.005409,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.245846,0.005409,-0.005499,0.249940,0,0);}
.ma2_c01224{transform:matrix(0.245921,0.004918,-0.004999,0.249950,0,0);-ms-transform:matrix(0.245921,0.004918,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.245921,0.004918,-0.004999,0.249950,0,0);}
.m8_c01224{transform:matrix(0.246146,0.004923,-0.004999,0.249950,0,0);-ms-transform:matrix(0.246146,0.004923,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.246146,0.004923,-0.004999,0.249950,0,0);}
.me2_c01224{transform:matrix(0.246414,0.005914,-0.005998,0.249928,0,0);-ms-transform:matrix(0.246414,0.005914,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.246414,0.005914,-0.005998,0.249928,0,0);}
.m8c_c01224{transform:matrix(0.246430,0.005421,-0.005499,0.249940,0,0);-ms-transform:matrix(0.246430,0.005421,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.246430,0.005421,-0.005499,0.249940,0,0);}
.m1b_c01224{transform:matrix(0.246537,0.006410,-0.006498,0.249916,0,0);-ms-transform:matrix(0.246537,0.006410,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.246537,0.006410,-0.006498,0.249916,0,0);}
.m7e_c01224{transform:matrix(0.246700,0.005427,-0.005499,0.249940,0,0);-ms-transform:matrix(0.246700,0.005427,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.246700,0.005427,-0.005499,0.249940,0,0);}
.m5a_c01224{transform:matrix(0.246895,0.004691,-0.004749,0.249955,0,0);-ms-transform:matrix(0.246895,0.004691,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.246895,0.004691,-0.004749,0.249955,0,0);}
.m0_c01224{transform:matrix(0.247080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247080,0.000000,0.000000,0.250000,0,0);}
.mec_c01224{transform:matrix(0.247550,0.006684,-0.006748,0.249909,0,0);-ms-transform:matrix(0.247550,0.006684,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.247550,0.006684,-0.006748,0.249909,0,0);}
.m31_c01224{transform:matrix(0.247935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247935,0.000000,0.000000,0.250000,0,0);}
.mea_c01224{transform:matrix(0.248095,0.006699,-0.006748,0.249909,0,0);-ms-transform:matrix(0.248095,0.006699,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.248095,0.006699,-0.006748,0.249909,0,0);}
.mdd_c01224{transform:matrix(0.249307,0.006981,-0.006997,0.249902,0,0);-ms-transform:matrix(0.249307,0.006981,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.249307,0.006981,-0.006997,0.249902,0,0);}
.m52_c01224{transform:matrix(0.249544,0.005740,-0.005748,0.249934,0,0);-ms-transform:matrix(0.249544,0.005740,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.249544,0.005740,-0.005748,0.249934,0,0);}
.m49_c01224{transform:matrix(0.249615,0.004992,-0.004999,0.249950,0,0);-ms-transform:matrix(0.249615,0.004992,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.249615,0.004992,-0.004999,0.249950,0,0);}
.m65_c01224{transform:matrix(0.249620,0.004743,-0.004749,0.249955,0,0);-ms-transform:matrix(0.249620,0.004743,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.249620,0.004743,-0.004749,0.249955,0,0);}
.m50_c01224{transform:matrix(0.249764,0.005745,-0.005748,0.249934,0,0);-ms-transform:matrix(0.249764,0.005745,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.249764,0.005745,-0.005748,0.249934,0,0);}
.m78_c01224{transform:matrix(0.249970,0.005499,-0.005499,0.249940,0,0);-ms-transform:matrix(0.249970,0.005499,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.249970,0.005499,-0.005499,0.249940,0,0);}
.m98_c01224{transform:matrix(0.250835,0.006522,-0.006498,0.249916,0,0);-ms-transform:matrix(0.250835,0.006522,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.250835,0.006522,-0.006498,0.249916,0,0);}
.m76_c01224{transform:matrix(0.251064,0.005523,-0.005499,0.249940,0,0);-ms-transform:matrix(0.251064,0.005523,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.251064,0.005523,-0.005499,0.249940,0,0);}
.m86_c01224{transform:matrix(0.251339,0.005529,-0.005499,0.249940,0,0);-ms-transform:matrix(0.251339,0.005529,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.251339,0.005529,-0.005499,0.249940,0,0);}
.m16_c01224{transform:matrix(0.251705,0.005034,-0.004999,0.249950,0,0);-ms-transform:matrix(0.251705,0.005034,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.251705,0.005034,-0.004999,0.249950,0,0);}
.m88_c01224{transform:matrix(0.252054,0.005545,-0.005499,0.249940,0,0);-ms-transform:matrix(0.252054,0.005545,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.252054,0.005545,-0.005499,0.249940,0,0);}
.ma5_c01224{transform:matrix(0.252579,0.005052,-0.004999,0.249950,0,0);-ms-transform:matrix(0.252579,0.005052,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.252579,0.005052,-0.004999,0.249950,0,0);}
.m53_c01224{transform:matrix(0.252718,0.005813,-0.005748,0.249934,0,0);-ms-transform:matrix(0.252718,0.005813,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.252718,0.005813,-0.005748,0.249934,0,0);}
.m73_c01224{transform:matrix(0.253069,0.005568,-0.005499,0.249940,0,0);-ms-transform:matrix(0.253069,0.005568,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.253069,0.005568,-0.005499,0.249940,0,0);}
.m32_c01224{transform:matrix(0.253130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253130,0.000000,0.000000,0.250000,0,0);}
.m94_c01224{transform:matrix(0.254124,0.005591,-0.005499,0.249940,0,0);-ms-transform:matrix(0.254124,0.005591,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.254124,0.005591,-0.005499,0.249940,0,0);}
.md8_c01224{transform:matrix(0.254485,0.007126,-0.006997,0.249902,0,0);-ms-transform:matrix(0.254485,0.007126,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.254485,0.007126,-0.006997,0.249902,0,0);}
.m48_c01224{transform:matrix(0.254704,0.005094,-0.004999,0.249950,0,0);-ms-transform:matrix(0.254704,0.005094,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.254704,0.005094,-0.004999,0.249950,0,0);}
.m2d_c01224{transform:matrix(0.254965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254965,0.000000,0.000000,0.250000,0,0);}
.m5f_c01224{transform:matrix(0.255164,0.004848,-0.004749,0.249955,0,0);-ms-transform:matrix(0.255164,0.004848,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.255164,0.004848,-0.004749,0.249955,0,0);}
.m54_c01224{transform:matrix(0.255922,0.005886,-0.005748,0.249934,0,0);-ms-transform:matrix(0.255922,0.005886,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.255922,0.005886,-0.005748,0.249934,0,0);}
.me6_c01224{transform:matrix(0.256102,0.006915,-0.006748,0.249909,0,0);-ms-transform:matrix(0.256102,0.006915,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.256102,0.006915,-0.006748,0.249909,0,0);}
.me3_c01224{transform:matrix(0.256376,0.006153,-0.005998,0.249928,0,0);-ms-transform:matrix(0.256376,0.006153,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.256376,0.006153,-0.005998,0.249928,0,0);}
.med_c01224{transform:matrix(0.257196,0.006944,-0.006748,0.249909,0,0);-ms-transform:matrix(0.257196,0.006944,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.257196,0.006944,-0.006748,0.249909,0,0);}
.m67_c01224{transform:matrix(0.257374,0.004890,-0.004749,0.249955,0,0);-ms-transform:matrix(0.257374,0.004890,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.257374,0.004890,-0.004749,0.249955,0,0);}
.m68_c01224{transform:matrix(0.257983,0.004902,-0.004749,0.249955,0,0);-ms-transform:matrix(0.257983,0.004902,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.257983,0.004902,-0.004749,0.249955,0,0);}
.maf_c01224{transform:matrix(0.258262,0.005940,-0.005748,0.249934,0,0);-ms-transform:matrix(0.258262,0.005940,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.258262,0.005940,-0.005748,0.249934,0,0);}
.me0_c01224{transform:matrix(0.258671,0.006208,-0.005998,0.249928,0,0);-ms-transform:matrix(0.258671,0.006208,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.258671,0.006208,-0.005998,0.249928,0,0);}
.mfc_c01224{transform:matrix(0.258887,0.009588,-0.009253,0.249829,0,0);-ms-transform:matrix(0.258887,0.009588,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.258887,0.009588,-0.009253,0.249829,0,0);}
.m8b_c01224{transform:matrix(0.260362,0.005728,-0.005499,0.249940,0,0);-ms-transform:matrix(0.260362,0.005728,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.260362,0.005728,-0.005499,0.249940,0,0);}
.m14_c01224{transform:matrix(0.260433,0.005209,-0.004999,0.249950,0,0);-ms-transform:matrix(0.260433,0.005209,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.260433,0.005209,-0.004999,0.249950,0,0);}
.m8e_c01224{transform:matrix(0.262192,0.005768,-0.005499,0.249940,0,0);-ms-transform:matrix(0.262192,0.005768,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.262192,0.005768,-0.005499,0.249940,0,0);}
.m7b_c01224{transform:matrix(0.262380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262380,0.000000,0.000000,0.250000,0,0);}
.m9c_c01224{transform:matrix(0.263961,0.006863,-0.006498,0.249916,0,0);-ms-transform:matrix(0.263961,0.006863,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.263961,0.006863,-0.006498,0.249916,0,0);}
.m100_c01224{transform:matrix(0.264380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264380,0.000000,0.000000,0.250000,0,0);}
.m5_c01224{transform:matrix(0.264937,0.005299,-0.004999,0.249950,0,0);-ms-transform:matrix(0.264937,0.005299,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.264937,0.005299,-0.004999,0.249950,0,0);}
.m28_c01224{transform:matrix(0.265200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265200,0.000000,0.000000,0.250000,0,0);}
.m96_c01224{transform:matrix(0.265715,0.006909,-0.006498,0.249916,0,0);-ms-transform:matrix(0.265715,0.006909,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.265715,0.006909,-0.006498,0.249916,0,0);}
.m5d_c01224{transform:matrix(0.265862,0.005051,-0.004749,0.249955,0,0);-ms-transform:matrix(0.265862,0.005051,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.265862,0.005051,-0.004749,0.249955,0,0);}
.m1f_c01224{transform:matrix(0.266195,0.006921,-0.006498,0.249916,0,0);-ms-transform:matrix(0.266195,0.006921,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.266195,0.006921,-0.006498,0.249916,0,0);}
.m6f_c01224{transform:matrix(0.266351,0.005860,-0.005499,0.249940,0,0);-ms-transform:matrix(0.266351,0.005860,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.266351,0.005860,-0.005499,0.249940,0,0);}
.me_c01224{transform:matrix(0.266827,0.005337,-0.004999,0.249950,0,0);-ms-transform:matrix(0.266827,0.005337,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.266827,0.005337,-0.004999,0.249950,0,0);}
.m7d_c01224{transform:matrix(0.266925,0.005872,-0.005499,0.249940,0,0);-ms-transform:matrix(0.266925,0.005872,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.266925,0.005872,-0.005499,0.249940,0,0);}
.ma_c01224{transform:matrix(0.267122,0.005342,-0.004999,0.249950,0,0);-ms-transform:matrix(0.267122,0.005342,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.267122,0.005342,-0.004999,0.249950,0,0);}
.m4b_c01224{transform:matrix(0.267212,0.005344,-0.004999,0.249950,0,0);-ms-transform:matrix(0.267212,0.005344,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.267212,0.005344,-0.004999,0.249950,0,0);}
.m41_c01224{transform:matrix(0.267482,0.005350,-0.004999,0.249950,0,0);-ms-transform:matrix(0.267482,0.005350,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.267482,0.005350,-0.004999,0.249950,0,0);}
.mb1_c01224{transform:matrix(0.267599,0.006155,-0.005748,0.249934,0,0);-ms-transform:matrix(0.267599,0.006155,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.267599,0.006155,-0.005748,0.249934,0,0);}
.m9d_c01224{transform:matrix(0.267811,0.005356,-0.004999,0.249950,0,0);-ms-transform:matrix(0.267811,0.005356,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.267811,0.005356,-0.004999,0.249950,0,0);}
.m1a_c01224{transform:matrix(0.268044,0.006969,-0.006498,0.249916,0,0);-ms-transform:matrix(0.268044,0.006969,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.268044,0.006969,-0.006498,0.249916,0,0);}
.m47_c01224{transform:matrix(0.268661,0.005373,-0.004999,0.249950,0,0);-ms-transform:matrix(0.268661,0.005373,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.268661,0.005373,-0.004999,0.249950,0,0);}
.m99_c01224{transform:matrix(0.268734,0.006987,-0.006498,0.249916,0,0);-ms-transform:matrix(0.268734,0.006987,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.268734,0.006987,-0.006498,0.249916,0,0);}
.ma3_c01224{transform:matrix(0.269341,0.005387,-0.004999,0.249950,0,0);-ms-transform:matrix(0.269341,0.005387,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.269341,0.005387,-0.004999,0.249950,0,0);}
.ma0_c01224{transform:matrix(0.269521,0.005390,-0.004999,0.249950,0,0);-ms-transform:matrix(0.269521,0.005390,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.269521,0.005390,-0.004999,0.249950,0,0);}
.me1_c01224{transform:matrix(0.269612,0.006471,-0.005998,0.249928,0,0);-ms-transform:matrix(0.269612,0.006471,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.269612,0.006471,-0.005998,0.249928,0,0);}
.m44_c01224{transform:matrix(0.269666,0.005393,-0.004999,0.249950,0,0);-ms-transform:matrix(0.269666,0.005393,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.269666,0.005393,-0.004999,0.249950,0,0);}
.m81_c01224{transform:matrix(0.270050,0.005941,-0.005499,0.249940,0,0);-ms-transform:matrix(0.270050,0.005941,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.270050,0.005941,-0.005499,0.249940,0,0);}
.mb3_c01224{transform:matrix(0.270224,0.006215,-0.005748,0.249934,0,0);-ms-transform:matrix(0.270224,0.006215,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.270224,0.006215,-0.005748,0.249934,0,0);}
.m91_c01224{transform:matrix(0.270345,0.005948,-0.005499,0.249940,0,0);-ms-transform:matrix(0.270345,0.005948,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.270345,0.005948,-0.005499,0.249940,0,0);}
.m11_c01224{transform:matrix(0.270401,0.005408,-0.004999,0.249950,0,0);-ms-transform:matrix(0.270401,0.005408,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.270401,0.005408,-0.004999,0.249950,0,0);}
.m2c_c01224{transform:matrix(0.270495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270495,0.000000,0.000000,0.250000,0,0);}
.m7a_c01224{transform:matrix(0.270754,0.005957,-0.005499,0.249940,0,0);-ms-transform:matrix(0.270754,0.005957,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.270754,0.005957,-0.005499,0.249940,0,0);}
.m4a_c01224{transform:matrix(0.272121,0.005442,-0.004999,0.249950,0,0);-ms-transform:matrix(0.272121,0.005442,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.272121,0.005442,-0.004999,0.249950,0,0);}
.m6b_c01224{transform:matrix(0.272876,0.004912,-0.004499,0.249960,0,0);-ms-transform:matrix(0.272876,0.004912,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.272876,0.004912,-0.004499,0.249960,0,0);}
.m9f_c01224{transform:matrix(0.273025,0.005461,-0.004999,0.249950,0,0);-ms-transform:matrix(0.273025,0.005461,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.273025,0.005461,-0.004999,0.249950,0,0);}
.md9_c01224{transform:matrix(0.273653,0.007662,-0.006997,0.249902,0,0);-ms-transform:matrix(0.273653,0.007662,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.273653,0.007662,-0.006997,0.249902,0,0);}
.m5c_c01224{transform:matrix(0.273706,0.005200,-0.004749,0.249955,0,0);-ms-transform:matrix(0.273706,0.005200,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.273706,0.005200,-0.004749,0.249955,0,0);}
.m95_c01224{transform:matrix(0.273799,0.006024,-0.005499,0.249940,0,0);-ms-transform:matrix(0.273799,0.006024,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.273799,0.006024,-0.005499,0.249940,0,0);}
.mac_c01224{transform:matrix(0.274005,0.005480,-0.004999,0.249950,0,0);-ms-transform:matrix(0.274005,0.005480,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.274005,0.005480,-0.004999,0.249950,0,0);}
.m74_c01224{transform:matrix(0.274779,0.006045,-0.005499,0.249940,0,0);-ms-transform:matrix(0.274779,0.006045,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.274779,0.006045,-0.005499,0.249940,0,0);}
.mae_c01224{transform:matrix(0.274785,0.005496,-0.004999,0.249950,0,0);-ms-transform:matrix(0.274785,0.005496,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.274785,0.005496,-0.004999,0.249950,0,0);}
.mb8_c01224{transform:matrix(0.274982,0.006325,-0.005748,0.249934,0,0);-ms-transform:matrix(0.274982,0.006325,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.274982,0.006325,-0.005748,0.249934,0,0);}
.m29_c01224{transform:matrix(0.275135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275135,0.000000,0.000000,0.250000,0,0);}
.m82_c01224{transform:matrix(0.275173,0.006054,-0.005499,0.249940,0,0);-ms-transform:matrix(0.275173,0.006054,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.275173,0.006054,-0.005499,0.249940,0,0);}
.mb4_c01224{transform:matrix(0.275637,0.006340,-0.005748,0.249934,0,0);-ms-transform:matrix(0.275637,0.006340,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.275637,0.006340,-0.005748,0.249934,0,0);}
.m69_c01224{transform:matrix(0.275925,0.004967,-0.004499,0.249960,0,0);-ms-transform:matrix(0.275925,0.004967,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.275925,0.004967,-0.004499,0.249960,0,0);}
.m8d_c01224{transform:matrix(0.276078,0.006074,-0.005499,0.249940,0,0);-ms-transform:matrix(0.276078,0.006074,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.276078,0.006074,-0.005499,0.249940,0,0);}
.m90_c01224{transform:matrix(0.276233,0.006077,-0.005499,0.249940,0,0);-ms-transform:matrix(0.276233,0.006077,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.276233,0.006077,-0.005499,0.249940,0,0);}
.me7_c01224{transform:matrix(0.276254,0.007459,-0.006748,0.249909,0,0);-ms-transform:matrix(0.276254,0.007459,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.276254,0.007459,-0.006748,0.249909,0,0);}
.m30_c01224{transform:matrix(0.276325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276325,0.000000,0.000000,0.250000,0,0);}
.m80_c01224{transform:matrix(0.276388,0.006081,-0.005499,0.249940,0,0);-ms-transform:matrix(0.276388,0.006081,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.276388,0.006081,-0.005499,0.249940,0,0);}
.m5b_c01224{transform:matrix(0.276680,0.005257,-0.004749,0.249955,0,0);-ms-transform:matrix(0.276680,0.005257,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.276680,0.005257,-0.004749,0.249955,0,0);}
.m43_c01224{transform:matrix(0.276685,0.005534,-0.004999,0.249950,0,0);-ms-transform:matrix(0.276685,0.005534,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.276685,0.005534,-0.004999,0.249950,0,0);}
.m87_c01224{transform:matrix(0.276888,0.006092,-0.005499,0.249940,0,0);-ms-transform:matrix(0.276888,0.006092,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.276888,0.006092,-0.005499,0.249940,0,0);}
.mf_c01224{transform:matrix(0.277250,0.005545,-0.004999,0.249950,0,0);-ms-transform:matrix(0.277250,0.005545,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.277250,0.005545,-0.004999,0.249950,0,0);}
.m64_c01224{transform:matrix(0.277295,0.005269,-0.004749,0.249955,0,0);-ms-transform:matrix(0.277295,0.005269,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.277295,0.005269,-0.004749,0.249955,0,0);}
.mdc_c01224{transform:matrix(0.278631,0.007802,-0.006997,0.249902,0,0);-ms-transform:matrix(0.278631,0.007802,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.278631,0.007802,-0.006997,0.249902,0,0);}
.m61_c01224{transform:matrix(0.278640,0.005294,-0.004749,0.249955,0,0);-ms-transform:matrix(0.278640,0.005294,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.278640,0.005294,-0.004749,0.249955,0,0);}
.m75_c01224{transform:matrix(0.278823,0.006134,-0.005499,0.249940,0,0);-ms-transform:matrix(0.278823,0.006134,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.278823,0.006134,-0.005499,0.249940,0,0);}
.m9_c01224{transform:matrix(0.278969,0.005579,-0.004999,0.249950,0,0);-ms-transform:matrix(0.278969,0.005579,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.278969,0.005579,-0.004999,0.249950,0,0);}
.m58_c01224{transform:matrix(0.279145,0.005304,-0.004749,0.249955,0,0);-ms-transform:matrix(0.279145,0.005304,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.279145,0.005304,-0.004749,0.249955,0,0);}
.m93_c01224{transform:matrix(0.279407,0.006147,-0.005499,0.249940,0,0);-ms-transform:matrix(0.279407,0.006147,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.279407,0.006147,-0.005499,0.249940,0,0);}
.md_c01224{transform:matrix(0.279464,0.005589,-0.004999,0.249950,0,0);-ms-transform:matrix(0.279464,0.005589,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.279464,0.005589,-0.004999,0.249950,0,0);}
.m72_c01224{transform:matrix(0.280332,0.006167,-0.005499,0.249940,0,0);-ms-transform:matrix(0.280332,0.006167,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.280332,0.006167,-0.005499,0.249940,0,0);}
.m83_c01224{transform:matrix(0.280542,0.006172,-0.005499,0.249940,0,0);-ms-transform:matrix(0.280542,0.006172,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.280542,0.006172,-0.005499,0.249940,0,0);}
.mde_c01224{transform:matrix(0.280905,0.007865,-0.006997,0.249902,0,0);-ms-transform:matrix(0.280905,0.007865,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.280905,0.007865,-0.006997,0.249902,0,0);}
.m6_c01224{transform:matrix(0.281519,0.005630,-0.004999,0.249950,0,0);-ms-transform:matrix(0.281519,0.005630,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.281519,0.005630,-0.004999,0.249950,0,0);}
.m40_c01224{transform:matrix(0.283736,0.008228,-0.007247,0.249895,0,0);-ms-transform:matrix(0.283736,0.008228,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.283736,0.008228,-0.007247,0.249895,0,0);}
.me4_c01224{transform:matrix(0.284253,0.006822,-0.005998,0.249928,0,0);-ms-transform:matrix(0.284253,0.006822,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.284253,0.006822,-0.005998,0.249928,0,0);}
.m13_c01224{transform:matrix(0.285133,0.005703,-0.004999,0.249950,0,0);-ms-transform:matrix(0.285133,0.005703,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.285133,0.005703,-0.004999,0.249950,0,0);}
.m92_c01224{transform:matrix(0.285156,0.006273,-0.005499,0.249940,0,0);-ms-transform:matrix(0.285156,0.006273,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.285156,0.006273,-0.005499,0.249940,0,0);}
.m3e_c01224{transform:matrix(0.285870,0.008290,-0.007247,0.249895,0,0);-ms-transform:matrix(0.285870,0.008290,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.285870,0.008290,-0.007247,0.249895,0,0);}
.mdb_c01224{transform:matrix(0.286358,0.008018,-0.006997,0.249902,0,0);-ms-transform:matrix(0.286358,0.008018,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.286358,0.008018,-0.006997,0.249902,0,0);}
.ma6_c01224{transform:matrix(0.286993,0.005740,-0.004999,0.249950,0,0);-ms-transform:matrix(0.286993,0.005740,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.286993,0.005740,-0.004999,0.249950,0,0);}
.m21_c01224{transform:matrix(0.289332,0.007523,-0.006498,0.249916,0,0);-ms-transform:matrix(0.289332,0.007523,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.289332,0.007523,-0.006498,0.249916,0,0);}
.m20_c01224{transform:matrix(0.289362,0.007523,-0.006498,0.249916,0,0);-ms-transform:matrix(0.289362,0.007523,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.289362,0.007523,-0.006498,0.249916,0,0);}
.m102_c01224{transform:matrix(0.289635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289635,0.000000,0.000000,0.250000,0,0);}
.me8_c01224{transform:matrix(0.290414,0.007841,-0.006748,0.249909,0,0);-ms-transform:matrix(0.290414,0.007841,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.290414,0.007841,-0.006748,0.249909,0,0);}
.me9_c01224{transform:matrix(0.293393,0.007922,-0.006748,0.249909,0,0);-ms-transform:matrix(0.293393,0.007922,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.293393,0.007922,-0.006748,0.249909,0,0);}
.meb_c01224{transform:matrix(0.293548,0.007926,-0.006748,0.249909,0,0);-ms-transform:matrix(0.293548,0.007926,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.293548,0.007926,-0.006748,0.249909,0,0);}
.me5_c01224{transform:matrix(0.300406,0.008111,-0.006748,0.249909,0,0);-ms-transform:matrix(0.300406,0.008111,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.300406,0.008111,-0.006748,0.249909,0,0);}
.m34_c01224{transform:matrix(0.306470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306470,0.000000,0.000000,0.250000,0,0);}
.mc_c01224{transform:matrix(0.309858,0.006197,-0.004999,0.249950,0,0);-ms-transform:matrix(0.309858,0.006197,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.309858,0.006197,-0.004999,0.249950,0,0);}
.mb0_c01224{transform:matrix(0.310893,0.007151,-0.005748,0.249934,0,0);-ms-transform:matrix(0.310893,0.007151,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.310893,0.007151,-0.005748,0.249934,0,0);}
.mee_c01224{transform:matrix(0.311337,0.008406,-0.006748,0.249909,0,0);-ms-transform:matrix(0.311337,0.008406,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.311337,0.008406,-0.006748,0.249909,0,0);}
.m4_c01224{transform:matrix(0.312575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312575,0.000000,0.000000,0.250000,0,0);}
.m6c_c01224{transform:matrix(0.319713,0.005755,-0.004499,0.249960,0,0);-ms-transform:matrix(0.319713,0.005755,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.319713,0.005755,-0.004499,0.249960,0,0);}
.m17_c01224{transform:matrix(0.326945,0.008501,-0.006498,0.249916,0,0);-ms-transform:matrix(0.326945,0.008501,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.326945,0.008501,-0.006498,0.249916,0,0);}
.m1c_c01224{transform:matrix(0.327374,0.008512,-0.006498,0.249916,0,0);-ms-transform:matrix(0.327374,0.008512,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.327374,0.008512,-0.006498,0.249916,0,0);}
.m36_c01224{transform:matrix(0.333940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333940,0.000000,0.000000,0.250000,0,0);}
.m6a_c01224{transform:matrix(0.338840,0.006099,-0.004499,0.249960,0,0);-ms-transform:matrix(0.338840,0.006099,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.338840,0.006099,-0.004499,0.249960,0,0);}
.md4_c01224{transform:matrix(0.342611,0.008223,-0.005998,0.249928,0,0);-ms-transform:matrix(0.342611,0.008223,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.342611,0.008223,-0.005998,0.249928,0,0);}
.m1e_c01224{transform:matrix(0.347737,0.009041,-0.006498,0.249916,0,0);-ms-transform:matrix(0.347737,0.009041,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.347737,0.009041,-0.006498,0.249916,0,0);}
.m89_c01224{transform:matrix(0.357409,0.007863,-0.005499,0.249940,0,0);-ms-transform:matrix(0.357409,0.007863,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.357409,0.007863,-0.005499,0.249940,0,0);}
.m1d_c01224{transform:matrix(0.359249,0.009340,-0.006498,0.249916,0,0);-ms-transform:matrix(0.359249,0.009340,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.359249,0.009340,-0.006498,0.249916,0,0);}
.m37_c01224{transform:matrix(0.378715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378715,0.000000,0.000000,0.250000,0,0);}
.m22_c01224{transform:matrix(0.380726,0.009899,-0.006498,0.249916,0,0);-ms-transform:matrix(0.380726,0.009899,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.380726,0.009899,-0.006498,0.249916,0,0);}
.m5e_c01224{transform:matrix(0.382326,0.007264,-0.004749,0.249955,0,0);-ms-transform:matrix(0.382326,0.007264,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.382326,0.007264,-0.004749,0.249955,0,0);}
.m2_c01224{transform:matrix(0.458395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458395,0.000000,0.000000,0.250000,0,0);}
.m1_c01224{transform:matrix(0.461085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461085,0.000000,0.000000,0.250000,0,0);}
.m35_c01224{transform:matrix(0.463910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.463910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.463910,0.000000,0.000000,0.250000,0,0);}
.m18_c01224{transform:matrix(0.474615,0.012340,-0.006498,0.249916,0,0);-ms-transform:matrix(0.474615,0.012340,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.474615,0.012340,-0.006498,0.249916,0,0);}
.mf1_c01224{transform:matrix(0.500128,0.013503,-0.006748,0.249909,0,0);-ms-transform:matrix(0.500128,0.013503,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.500128,0.013503,-0.006748,0.249909,0,0);}
.mf2_c01224{transform:matrix(0.513003,0.013851,-0.006748,0.249909,0,0);-ms-transform:matrix(0.513003,0.013851,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.513003,0.013851,-0.006748,0.249909,0,0);}
.m3_c01224{transform:matrix(0.631275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.631275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.631275,0.000000,0.000000,0.250000,0,0);}
.m3b_c01224{transform:matrix(0.689220,0.019987,-0.007247,0.249895,0,0);-ms-transform:matrix(0.689220,0.019987,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.689220,0.019987,-0.007247,0.249895,0,0);}
.m3a_c01224{transform:matrix(0.761030,0.022070,-0.007247,0.249895,0,0);-ms-transform:matrix(0.761030,0.022070,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.761030,0.022070,-0.007247,0.249895,0,0);}
.m38_c01224{transform:matrix(0.804647,0.023335,-0.007247,0.249895,0,0);-ms-transform:matrix(0.804647,0.023335,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.804647,0.023335,-0.007247,0.249895,0,0);}
.m39_c01224{transform:matrix(1.006367,0.029185,-0.007247,0.249895,0,0);-ms-transform:matrix(1.006367,0.029185,-0.007247,0.249895,0,0);-webkit-transform:matrix(1.006367,0.029185,-0.007247,0.249895,0,0);}
.m3d_c01224{transform:matrix(1.052982,0.030536,-0.007247,0.249895,0,0);-ms-transform:matrix(1.052982,0.030536,-0.007247,0.249895,0,0);-webkit-transform:matrix(1.052982,0.030536,-0.007247,0.249895,0,0);}
.m23_c01224{transform:matrix(1.102397,0.028662,-0.006498,0.249916,0,0);-ms-transform:matrix(1.102397,0.028662,-0.006498,0.249916,0,0);-webkit-transform:matrix(1.102397,0.028662,-0.006498,0.249916,0,0);}
.m3c_c01224{transform:matrix(1.264104,0.036659,-0.007247,0.249895,0,0);-ms-transform:matrix(1.264104,0.036659,-0.007247,0.249895,0,0);-webkit-transform:matrix(1.264104,0.036659,-0.007247,0.249895,0,0);}
.maa_c01224{transform:matrix(1.271921,0.025438,-0.004999,0.249950,0,0);-ms-transform:matrix(1.271921,0.025438,-0.004999,0.249950,0,0);-webkit-transform:matrix(1.271921,0.025438,-0.004999,0.249950,0,0);}
.m25_c01224{transform:matrix(1.515603,0.039406,-0.006498,0.249916,0,0);-ms-transform:matrix(1.515603,0.039406,-0.006498,0.249916,0,0);-webkit-transform:matrix(1.515603,0.039406,-0.006498,0.249916,0,0);}
.ma9_c01224{transform:matrix(1.531184,0.030624,-0.004999,0.249950,0,0);-ms-transform:matrix(1.531184,0.030624,-0.004999,0.249950,0,0);-webkit-transform:matrix(1.531184,0.030624,-0.004999,0.249950,0,0);}
.ma8_c01224{transform:matrix(1.560643,0.031213,-0.004999,0.249950,0,0);-ms-transform:matrix(1.560643,0.031213,-0.004999,0.249950,0,0);-webkit-transform:matrix(1.560643,0.031213,-0.004999,0.249950,0,0);}
.mf0_c01224{transform:matrix(2.038732,0.055046,-0.006748,0.249909,0,0);-ms-transform:matrix(2.038732,0.055046,-0.006748,0.249909,0,0);-webkit-transform:matrix(2.038732,0.055046,-0.006748,0.249909,0,0);}
.m24_c01224{transform:matrix(2.344778,0.060964,-0.006498,0.249916,0,0);-ms-transform:matrix(2.344778,0.060964,-0.006498,0.249916,0,0);-webkit-transform:matrix(2.344778,0.060964,-0.006498,0.249916,0,0);}
.mef_c01224{transform:matrix(2.394532,0.064652,-0.006748,0.249909,0,0);-ms-transform:matrix(2.394532,0.064652,-0.006748,0.249909,0,0);-webkit-transform:matrix(2.394532,0.064652,-0.006748,0.249909,0,0);}
.m26_c01224{transform:matrix(2.655418,0.069041,-0.006498,0.249916,0,0);-ms-transform:matrix(2.655418,0.069041,-0.006498,0.249916,0,0);-webkit-transform:matrix(2.655418,0.069041,-0.006498,0.249916,0,0);}
.m77_c01224{transform:matrix(5.191329,0.114209,-0.005499,0.249940,0,0);-ms-transform:matrix(5.191329,0.114209,-0.005499,0.249940,0,0);-webkit-transform:matrix(5.191329,0.114209,-0.005499,0.249940,0,0);}
.m33_c01224{transform:matrix(6.135980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(6.135980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(6.135980,0.000000,0.000000,0.250000,0,0);}
.m6d_c01224{transform:matrix(8.637866,0.155482,-0.004499,0.249960,0,0);-ms-transform:matrix(8.637866,0.155482,-0.004499,0.249960,0,0);-webkit-transform:matrix(8.637866,0.155482,-0.004499,0.249960,0,0);}
.ma7_c01224{transform:matrix(13.922631,0.278453,-0.004999,0.249950,0,0);-ms-transform:matrix(13.922631,0.278453,-0.004999,0.249950,0,0);-webkit-transform:matrix(13.922631,0.278453,-0.004999,0.249950,0,0);}
.v0_c01224{vertical-align:0.000000px;}
.ls0_c01224{letter-spacing:0.000000px;}
.sc__c01224{text-shadow:none;}
.sc0_c01224{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__c01224{-webkit-text-stroke:0px transparent;}
.sc0_c01224{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01224{word-spacing:0.000000px;}
.fc0_c01224{color:transparent;}
.fs10_c01224{font-size:12.002400px;}
.fs7_c01224{font-size:12.005045px;}
.fsc_c01224{font-size:18.002916px;}
.fs6_c01224{font-size:18.006083px;}
.fs17_c01224{font-size:24.008746px;}
.fs2_c01224{font-size:36.000000px;}
.fs1_c01224{font-size:42.000000px;}
.fsb_c01224{font-size:60.009719px;}
.fs1a_c01224{font-size:66.000000px;}
.fs15_c01224{font-size:66.019005px;}
.fs5_c01224{font-size:66.022304px;}
.fs16_c01224{font-size:66.024053px;}
.fs8_c01224{font-size:66.027747px;}
.fs3_c01224{font-size:72.000000px;}
.fsa_c01224{font-size:72.012995px;}
.fs4_c01224{font-size:72.014399px;}
.fsd_c01224{font-size:72.017422px;}
.fs11_c01224{font-size:72.019041px;}
.fsf_c01224{font-size:72.024332px;}
.fs14_c01224{font-size:72.028218px;}
.fs18_c01224{font-size:77.975426px;}
.fs0_c01224{font-size:78.000000px;}
.fse_c01224{font-size:78.018874px;}
.fs9_c01224{font-size:78.020628px;}
.fs19_c01224{font-size:83.973536px;}
.fs13_c01224{font-size:84.024189px;}
.fs12_c01224{font-size:90.023802px;}
.y0_c01224{bottom:0.000000px;}
.y102_c01224{bottom:143.263500px;}
.y101_c01224{bottom:154.725477px;}
.y100_c01224{bottom:158.976333px;}
.yff_c01224{bottom:160.245285px;}
.yfe_c01224{bottom:163.935369px;}
.yfd_c01224{bottom:165.985595px;}
.yfc_c01224{bottom:168.465113px;}
.yfb_c01224{bottom:169.654200px;}
.yfa_c01224{bottom:170.882859px;}
.yf9_c01224{bottom:173.681446px;}
.yf8_c01224{bottom:176.581377px;}
.yf7_c01224{bottom:177.406274px;}
.yf6_c01224{bottom:179.862482px;}
.yf5_c01224{bottom:181.453500px;}
.yf4_c01224{bottom:191.900012px;}
.yf3_c01224{bottom:192.284690px;}
.yf2_c01224{bottom:194.660037px;}
.yf0_c01224{bottom:197.616818px;}
.yef_c01224{bottom:198.499758px;}
.yf1_c01224{bottom:199.293713px;}
.yee_c01224{bottom:199.401815px;}
.yed_c01224{bottom:201.760535px;}
.yec_c01224{bottom:203.000361px;}
.yeb_c01224{bottom:205.946615px;}
.yea_c01224{bottom:207.755831px;}
.ye9_c01224{bottom:209.235944px;}
.ye8_c01224{bottom:209.809464px;}
.ye7_c01224{bottom:212.770500px;}
.ye6_c01224{bottom:247.974828px;}
.ye5_c01224{bottom:248.752356px;}
.ye4_c01224{bottom:249.540972px;}
.ye3_c01224{bottom:250.612044px;}
.ye2_c01224{bottom:251.376000px;}
.ye1_c01224{bottom:269.062524px;}
.ye0_c01224{bottom:271.899792px;}
.ydf_c01224{bottom:273.110190px;}
.yde_c01224{bottom:276.188664px;}
.ydd_c01224{bottom:281.112954px;}
.ydc_c01224{bottom:282.382950px;}
.ydb_c01224{bottom:285.444834px;}
.yda_c01224{bottom:287.287500px;}
.yd9_c01224{bottom:308.092332px;}
.yd8_c01224{bottom:308.869392px;}
.yd7_c01224{bottom:310.140048px;}
.yd6_c01224{bottom:310.722528px;}
.yd5_c01224{bottom:312.571092px;}
.yd4_c01224{bottom:313.087944px;}
.yd3_c01224{bottom:314.425560px;}
.yd2_c01224{bottom:315.412968px;}
.yd1_c01224{bottom:316.251588px;}
.yd0_c01224{bottom:318.864936px;}
.ycf_c01224{bottom:319.687500px;}
.yce_c01224{bottom:339.443076px;}
.ycd_c01224{bottom:340.240368px;}
.ycc_c01224{bottom:341.595228px;}
.ycb_c01224{bottom:343.676748px;}
.yca_c01224{bottom:344.487144px;}
.yc9_c01224{bottom:345.288864px;}
.yc8_c01224{bottom:346.326132px;}
.yc7_c01224{bottom:348.961080px;}
.yc6_c01224{bottom:350.068224px;}
.yc5_c01224{bottom:351.377904px;}
.y5_c01224{bottom:351.825000px;}
.yc4_c01224{bottom:352.427520px;}
.yc3_c01224{bottom:355.057500px;}
.yc2_c01224{bottom:378.027620px;}
.yc1_c01224{bottom:384.763686px;}
.yc0_c01224{bottom:386.604435px;}
.ybf_c01224{bottom:387.285376px;}
.ybe_c01224{bottom:389.151674px;}
.ybd_c01224{bottom:389.808999px;}
.ybc_c01224{bottom:390.684065px;}
.ybb_c01224{bottom:411.096777px;}
.yba_c01224{bottom:413.402205px;}
.yb9_c01224{bottom:414.354992px;}
.yb8_c01224{bottom:415.166500px;}
.yb7_c01224{bottom:415.941543px;}
.yb6_c01224{bottom:418.470635px;}
.yb5_c01224{bottom:420.478086px;}
.yb4_c01224{bottom:421.515604px;}
.yb3_c01224{bottom:423.317471px;}
.yb2_c01224{bottom:424.310519px;}
.y4_c01224{bottom:425.263500px;}
.yb1_c01224{bottom:426.067500px;}
.yb0_c01224{bottom:459.263760px;}
.yaf_c01224{bottom:459.997050px;}
.yae_c01224{bottom:462.040800px;}
.yad_c01224{bottom:462.777600px;}
.yac_c01224{bottom:479.969040px;}
.yab_c01224{bottom:480.174180px;}
.yaa_c01224{bottom:480.416220px;}
.ya8_c01224{bottom:485.959530px;}
.ya7_c01224{bottom:486.813420px;}
.ya6_c01224{bottom:487.483200px;}
.ya9_c01224{bottom:488.431260px;}
.ya5_c01224{bottom:489.038730px;}
.ya4_c01224{bottom:489.908490px;}
.ya3_c01224{bottom:490.560690px;}
.ya2_c01224{bottom:492.307140px;}
.ya1_c01224{bottom:494.764830px;}
.ya0_c01224{bottom:495.639780px;}
.y9f_c01224{bottom:497.616000px;}
.y9e_c01224{bottom:526.664034px;}
.y9d_c01224{bottom:527.492472px;}
.y9c_c01224{bottom:528.340137px;}
.y9b_c01224{bottom:530.084334px;}
.y9a_c01224{bottom:531.229296px;}
.y99_c01224{bottom:532.078248px;}
.y98_c01224{bottom:534.339000px;}
.y97_c01224{bottom:554.083011px;}
.y96_c01224{bottom:555.133149px;}
.y95_c01224{bottom:557.770455px;}
.y94_c01224{bottom:561.977835px;}
.y93_c01224{bottom:564.667557px;}
.y92_c01224{bottom:566.791920px;}
.y91_c01224{bottom:567.558528px;}
.y90_c01224{bottom:569.151471px;}
.y8f_c01224{bottom:595.120044px;}
.y8e_c01224{bottom:595.979700px;}
.y8d_c01224{bottom:597.757659px;}
.y8c_c01224{bottom:598.911225px;}
.y8b_c01224{bottom:600.492210px;}
.y8a_c01224{bottom:601.666017px;}
.y89_c01224{bottom:604.298649px;}
.y88_c01224{bottom:605.779332px;}
.y87_c01224{bottom:606.959754px;}
.y86_c01224{bottom:626.097777px;}
.y85_c01224{bottom:629.496711px;}
.y84_c01224{bottom:631.695402px;}
.y83_c01224{bottom:632.675535px;}
.y82_c01224{bottom:635.313951px;}
.y81_c01224{bottom:636.062985px;}
.y80_c01224{bottom:636.524490px;}
.y7f_c01224{bottom:638.439051px;}
.y7e_c01224{bottom:639.906000px;}
.y7d_c01224{bottom:674.190000px;}
.y7c_c01224{bottom:682.768224px;}
.y7b_c01224{bottom:683.351079px;}
.y7a_c01224{bottom:684.241695px;}
.y78_c01224{bottom:696.535641px;}
.y79_c01224{bottom:697.685181px;}
.y77_c01224{bottom:699.210225px;}
.y76_c01224{bottom:701.634207px;}
.y75_c01224{bottom:702.638232px;}
.y74_c01224{bottom:705.312024px;}
.y73_c01224{bottom:706.007499px;}
.y72_c01224{bottom:706.750197px;}
.y71_c01224{bottom:708.639315px;}
.y70_c01224{bottom:710.106000px;}
.y6f_c01224{bottom:740.611809px;}
.y6e_c01224{bottom:741.945195px;}
.y6d_c01224{bottom:742.557717px;}
.y6c_c01224{bottom:744.169536px;}
.y6b_c01224{bottom:744.934500px;}
.y6a_c01224{bottom:766.490713px;}
.y69_c01224{bottom:767.903910px;}
.y68_c01224{bottom:768.857889px;}
.y67_c01224{bottom:769.894900px;}
.y66_c01224{bottom:772.081440px;}
.y65_c01224{bottom:773.031839px;}
.y64_c01224{bottom:773.525470px;}
.y63_c01224{bottom:775.443945px;}
.y62_c01224{bottom:776.454045px;}
.y61_c01224{bottom:777.660748px;}
.y60_c01224{bottom:778.622223px;}
.y3_c01224{bottom:779.220000px;}
.y5f_c01224{bottom:780.569821px;}
.y5e_c01224{bottom:810.737721px;}
.y5d_c01224{bottom:812.446581px;}
.y5c_c01224{bottom:813.267723px;}
.y5b_c01224{bottom:813.893668px;}
.y5a_c01224{bottom:815.371222px;}
.y59_c01224{bottom:815.944500px;}
.y58_c01224{bottom:838.203051px;}
.y57_c01224{bottom:839.749790px;}
.y56_c01224{bottom:842.538355px;}
.y55_c01224{bottom:845.061651px;}
.y54_c01224{bottom:847.632626px;}
.y53_c01224{bottom:848.409393px;}
.y52_c01224{bottom:850.688429px;}
.y2_c01224{bottom:850.770000px;}
.y51_c01224{bottom:851.421312px;}
.y50_c01224{bottom:852.936000px;}
.y4d_c01224{bottom:886.119300px;}
.y4e_c01224{bottom:886.119900px;}
.y4f_c01224{bottom:886.120020px;}
.y4c_c01224{bottom:910.940130px;}
.y4b_c01224{bottom:911.848110px;}
.y4a_c01224{bottom:912.944640px;}
.y49_c01224{bottom:914.489910px;}
.y48_c01224{bottom:915.165000px;}
.y47_c01224{bottom:915.823770px;}
.y46_c01224{bottom:917.563290px;}
.y45_c01224{bottom:920.047440px;}
.y44_c01224{bottom:920.900790px;}
.y43_c01224{bottom:922.866000px;}
.y41_c01224{bottom:957.131165px;}
.y42_c01224{bottom:957.131286px;}
.y40_c01224{bottom:957.131832px;}
.y39_c01224{bottom:974.697000px;}
.y3f_c01224{bottom:974.868847px;}
.y3e_c01224{bottom:975.557583px;}
.y38_c01224{bottom:975.765000px;}
.y3d_c01224{bottom:975.980229px;}
.y3c_c01224{bottom:976.207212px;}
.y37_c01224{bottom:976.221000px;}
.y3b_c01224{bottom:976.809861px;}
.y36_c01224{bottom:976.920000px;}
.y3a_c01224{bottom:977.436000px;}
.y34_c01224{bottom:979.075500px;}
.y33_c01224{bottom:980.226000px;}
.y32_c01224{bottom:983.097000px;}
.y31_c01224{bottom:983.974500px;}
.y30_c01224{bottom:984.852000px;}
.y35_c01224{bottom:984.966000px;}
.y2f_c01224{bottom:986.557500px;}
.y2e_c01224{bottom:989.121000px;}
.y2d_c01224{bottom:990.300000px;}
.y2c_c01224{bottom:991.149000px;}
.y2b_c01224{bottom:994.012500px;}
.y2a_c01224{bottom:996.306000px;}
.y29_c01224{bottom:1027.474500px;}
.y28_c01224{bottom:1046.416218px;}
.y27_c01224{bottom:1048.630887px;}
.y24_c01224{bottom:1049.715294px;}
.y26_c01224{bottom:1050.978639px;}
.y23_c01224{bottom:1051.428876px;}
.y22_c01224{bottom:1053.444591px;}
.y25_c01224{bottom:1053.966786px;}
.y21_c01224{bottom:1054.315695px;}
.y20_c01224{bottom:1055.179038px;}
.y1f_c01224{bottom:1058.437059px;}
.y1e_c01224{bottom:1058.465841px;}
.y1d_c01224{bottom:1059.353715px;}
.y1c_c01224{bottom:1060.059381px;}
.y1b_c01224{bottom:1062.369819px;}
.y1a_c01224{bottom:1063.549491px;}
.y19_c01224{bottom:1063.591338px;}
.y18_c01224{bottom:1066.327500px;}
.y17_c01224{bottom:1084.655730px;}
.y16_c01224{bottom:1085.351640px;}
.y15_c01224{bottom:1086.748020px;}
.y14_c01224{bottom:1088.874090px;}
.y13_c01224{bottom:1089.787350px;}
.y12_c01224{bottom:1091.624700px;}
.y11_c01224{bottom:1092.576930px;}
.y1_c01224{bottom:1094.580000px;}
.y10_c01224{bottom:1094.902800px;}
.yf_c01224{bottom:1096.965930px;}
.ye_c01224{bottom:1098.359700px;}
.yd_c01224{bottom:1125.051000px;}
.yc_c01224{bottom:1125.930810px;}
.yb_c01224{bottom:1127.708040px;}
.ya_c01224{bottom:1129.685340px;}
.y9_c01224{bottom:1130.360520px;}
.y8_c01224{bottom:1131.023520px;}
.y7_c01224{bottom:1133.012490px;}
.y6_c01224{bottom:1134.546000px;}
.h12_c01224{height:12.002400px;}
.h9_c01224{height:12.005045px;}
.he_c01224{height:18.002916px;}
.h8_c01224{height:18.006083px;}
.h19_c01224{height:24.008746px;}
.h4_c01224{height:36.000000px;}
.h3_c01224{height:42.000000px;}
.hd_c01224{height:60.009719px;}
.h1c_c01224{height:66.000000px;}
.h17_c01224{height:66.019005px;}
.h7_c01224{height:66.022304px;}
.h18_c01224{height:66.024053px;}
.ha_c01224{height:66.027747px;}
.h5_c01224{height:72.000000px;}
.hc_c01224{height:72.012995px;}
.h6_c01224{height:72.014399px;}
.hf_c01224{height:72.017422px;}
.h13_c01224{height:72.019041px;}
.h11_c01224{height:72.024332px;}
.h16_c01224{height:72.028218px;}
.h1a_c01224{height:77.975426px;}
.h2_c01224{height:78.000000px;}
.h10_c01224{height:78.018874px;}
.hb_c01224{height:78.020628px;}
.h1b_c01224{height:83.973536px;}
.h15_c01224{height:84.024189px;}
.h14_c01224{height:90.023802px;}
.h1_c01224{height:1258.500000px;}
.h0_c01224{height:1258.740000px;}
.w0_c01224{width:892.350000px;}
.w1_c01224{width:892.500000px;}
.x0_c01224{left:0.000000px;}
.x5_c01224{left:51.030000px;}
.x4_c01224{left:52.110000px;}
.x3_c01224{left:59.400000px;}
.x2_c01224{left:61.290000px;}
.x1_c01224{left:67.230000px;}
.xa7_c01224{left:136.326000px;}
.x99_c01224{left:137.646000px;}
.x90_c01224{left:138.997500px;}
.x85_c01224{left:140.113500px;}
.x7c_c01224{left:141.409329px;}
.x6f_c01224{left:144.147000px;}
.x58_c01224{left:145.513041px;}
.x4a_c01224{left:147.945000px;}
.x27_c01224{left:150.414000px;}
.xe_c01224{left:163.601460px;}
.x18_c01224{left:175.252500px;}
.xb8_c01224{left:178.371000px;}
.xae_c01224{left:179.811000px;}
.xa0_c01224{left:180.826500px;}
.x8c_c01224{left:183.654420px;}
.x80_c01224{left:185.956500px;}
.x6e_c01224{left:187.650000px;}
.x62_c01224{left:189.297000px;}
.x52_c01224{left:192.850500px;}
.x3d_c01224{left:193.908049px;}
.x6_c01224{left:197.623500px;}
.xa8_c01224{left:202.135500px;}
.x7d_c01224{left:207.812925px;}
.x70_c01224{left:210.826500px;}
.x66_c01224{left:212.446500px;}
.x4b_c01224{left:213.801000px;}
.x8d_c01224{left:215.692500px;}
.x6b_c01224{left:220.306428px;}
.xb9_c01224{left:221.328500px;}
.x53_c01224{left:223.023000px;}
.x97_c01224{left:226.797417px;}
.xf_c01224{left:229.988640px;}
.x63_c01224{left:231.795000px;}
.x59_c01224{left:234.039497px;}
.x28_c01224{left:238.644000px;}
.x7e_c01224{left:239.725506px;}
.x4c_c01224{left:245.665500px;}
.x3f_c01224{left:247.846500px;}
.x3e_c01224{left:249.011833px;}
.xc0_c01224{left:253.800000px;}
.xaf_c01224{left:256.270500px;}
.x91_c01224{left:258.564000px;}
.xb1_c01224{left:266.319000px;}
.x48_c01224{left:269.754420px;}
.x81_c01224{left:272.908500px;}
.x7_c01224{left:274.299000px;}
.x5a_c01224{left:277.772517px;}
.x19_c01224{left:280.489500px;}
.x1a_c01224{left:282.099000px;}
.x76_c01224{left:286.153215px;}
.xba_c01224{left:287.646116px;}
.xb0_c01224{left:289.129500px;}
.x40_c01224{left:290.514000px;}
.x67_c01224{left:298.315500px;}
.x54_c01224{left:300.789000px;}
.x49_c01224{left:302.161380px;}
.x8e_c01224{left:304.524660px;}
.x82_c01224{left:305.560500px;}
.xbb_c01224{left:309.918321px;}
.xa9_c01224{left:311.488500px;}
.x71_c01224{left:318.829500px;}
.x64_c01224{left:321.340500px;}
.xa1_c01224{left:323.989500px;}
.x10_c01224{left:328.268190px;}
.x5b_c01224{left:332.595882px;}
.x55_c01224{left:333.733500px;}
.x8f_c01224{left:336.387240px;}
.x4d_c01224{left:344.754000px;}
.x98_c01224{left:346.960437px;}
.x29_c01224{left:348.771000px;}
.x72_c01224{left:352.876500px;}
.x65_c01224{left:355.369500px;}
.xaa_c01224{left:356.845500px;}
.xa2_c01224{left:358.932000px;}
.x68_c01224{left:363.687000px;}
.x8_c01224{left:373.747500px;}
.x56_c01224{left:376.951500px;}
.x4e_c01224{left:378.526500px;}
.x2a_c01224{left:381.426000px;}
.x77_c01224{left:383.648490px;}
.xb2_c01224{left:388.146000px;}
.x9a_c01224{left:391.663500px;}
.xa3_c01224{left:400.074000px;}
.x86_c01224{left:405.556500px;}
.x9_c01224{left:406.897500px;}
.x8a_c01224{left:413.576220px;}
.x41_c01224{left:414.721500px;}
.x1b_c01224{left:416.334000px;}
.x32_c01224{left:424.293000px;}
.x2b_c01224{left:426.762000px;}
.x11_c01224{left:439.009470px;}
.xa_c01224{left:440.656500px;}
.x1c_c01224{left:443.475000px;}
.x83_c01224{left:449.284500px;}
.xa4_c01224{left:455.808000px;}
.xbc_c01224{left:463.778307px;}
.x5c_c01224{left:465.723801px;}
.x57_c01224{left:466.891500px;}
.x92_c01224{left:469.296000px;}
.x73_c01224{left:472.804500px;}
.x1d_c01224{left:477.624000px;}
.x1e_c01224{left:478.731000px;}
.x84_c01224{left:481.147500px;}
.x12_c01224{left:484.370070px;}
.x78_c01224{left:485.673270px;}
.x5d_c01224{left:488.150518px;}
.x4f_c01224{left:490.308000px;}
.x87_c01224{left:492.879000px;}
.xb3_c01224{left:497.266500px;}
.x42_c01224{left:501.697500px;}
.x74_c01224{left:517.356000px;}
.x2c_c01224{left:525.336000px;}
.x79_c01224{left:528.421584px;}
.x5e_c01224{left:531.379568px;}
.xab_c01224{left:532.713000px;}
.x43_c01224{left:534.636000px;}
.xb_c01224{left:539.521500px;}
.xb4_c01224{left:543.186000px;}
.x9b_c01224{left:544.672500px;}
.xb6_c01224{left:550.210562px;}
.xa5_c01224{left:554.367000px;}
.x44_c01224{left:568.390500px;}
.x13_c01224{left:571.885830px;}
.x9c_c01224{left:578.077500px;}
.x93_c01224{left:579.256500px;}
.x24_c01224{left:588.531387px;}
.x2d_c01224{left:590.937000px;}
.x7a_c01224{left:594.298857px;}
.xbd_c01224{left:596.004449px;}
.x50_c01224{left:600.016500px;}
.x1f_c01224{left:604.039500px;}
.x9d_c01224{left:611.844000px;}
.x94_c01224{left:612.954000px;}
.x14_c01224{left:615.372960px;}
.x75_c01224{left:617.296500px;}
.x2e_c01224{left:624.685500px;}
.x7b_c01224{left:626.143359px;}
.xc_c01224{left:628.383000px;}
.x5f_c01224{left:630.744396px;}
.x20_c01224{left:637.245000px;}
.x69_c01224{left:641.041500px;}
.xac_c01224{left:642.658500px;}
.x45_c01224{left:645.654000px;}
.x88_c01224{left:646.753500px;}
.x33_c01224{left:647.794500px;}
.xbe_c01224{left:651.360537px;}
.x2f_c01224{left:658.447500px;}
.xa6_c01224{left:663.958500px;}
.x34_c01224{left:667.209000px;}
.x21_c01224{left:670.749000px;}
.xd_c01224{left:672.373500px;}
.x25_c01224{left:675.481125px;}
.x60_c01224{left:677.900217px;}
.x35_c01224{left:679.882500px;}
.xad_c01224{left:685.887000px;}
.x95_c01224{left:689.662500px;}
.xb5_c01224{left:696.657000px;}
.x9e_c01224{left:698.574000px;}
.x46_c01224{left:700.480500px;}
.x36_c01224{left:709.543500px;}
.x15_c01224{left:716.649450px;}
.x37_c01224{left:721.848000px;}
.x89_c01224{left:722.937000px;}
.x7f_c01224{left:725.534655px;}
.x6c_c01224{left:737.373954px;}
.x38_c01224{left:743.439000px;}
.x47_c01224{left:745.879500px;}
.x22_c01224{left:748.276500px;}
.xbf_c01224{left:750.992805px;}
.x9f_c01224{left:755.026500px;}
.x26_c01224{left:757.485480px;}
.x6a_c01224{left:762.613500px;}
.x39_c01224{left:764.220000px;}
.x30_c01224{left:768.880500px;}
.x3a_c01224{left:772.047000px;}
.xb7_c01224{left:776.335181px;}
.x8b_c01224{left:781.465140px;}
.x16_c01224{left:783.167130px;}
.x61_c01224{left:785.508590px;}
.x3b_c01224{left:786.621000px;}
.x51_c01224{left:788.508000px;}
.x96_c01224{left:789.898500px;}
.x6d_c01224{left:794.049471px;}
.x3c_c01224{left:810.370500px;}
.x31_c01224{left:813.151500px;}
.x23_c01224{left:814.183500px;}
.x17_c01224{left:816.311970px;}
@media print{
.v0_c01224{vertical-align:0.000000pt;}
.ls0_c01224{letter-spacing:0.000000pt;}
.ws0_c01224{word-spacing:0.000000pt;}
.fs10_c01224{font-size:10.668800pt;}
.fs7_c01224{font-size:10.671151pt;}
.fsc_c01224{font-size:16.002592pt;}
.fs6_c01224{font-size:16.005407pt;}
.fs17_c01224{font-size:21.341108pt;}
.fs2_c01224{font-size:32.000000pt;}
.fs1_c01224{font-size:37.333333pt;}
.fsb_c01224{font-size:53.341973pt;}
.fs1a_c01224{font-size:58.666667pt;}
.fs15_c01224{font-size:58.683560pt;}
.fs5_c01224{font-size:58.686493pt;}
.fs16_c01224{font-size:58.688047pt;}
.fs8_c01224{font-size:58.691331pt;}
.fs3_c01224{font-size:64.000000pt;}
.fsa_c01224{font-size:64.011551pt;}
.fs4_c01224{font-size:64.012799pt;}
.fsd_c01224{font-size:64.015486pt;}
.fs11_c01224{font-size:64.016926pt;}
.fsf_c01224{font-size:64.021628pt;}
.fs14_c01224{font-size:64.025083pt;}
.fs18_c01224{font-size:69.311490pt;}
.fs0_c01224{font-size:69.333333pt;}
.fse_c01224{font-size:69.350110pt;}
.fs9_c01224{font-size:69.351670pt;}
.fs19_c01224{font-size:74.643143pt;}
.fs13_c01224{font-size:74.688168pt;}
.fs12_c01224{font-size:80.021157pt;}
.y0_c01224{bottom:0.000000pt;}
.y102_c01224{bottom:127.345333pt;}
.y101_c01224{bottom:137.533757pt;}
.y100_c01224{bottom:141.312296pt;}
.yff_c01224{bottom:142.440253pt;}
.yfe_c01224{bottom:145.720328pt;}
.yfd_c01224{bottom:147.542751pt;}
.yfc_c01224{bottom:149.746767pt;}
.yfb_c01224{bottom:150.803733pt;}
.yfa_c01224{bottom:151.895875pt;}
.yf9_c01224{bottom:154.383508pt;}
.yf8_c01224{bottom:156.961224pt;}
.yf7_c01224{bottom:157.694465pt;}
.yf6_c01224{bottom:159.877761pt;}
.yf5_c01224{bottom:161.292000pt;}
.yf4_c01224{bottom:170.577788pt;}
.yf3_c01224{bottom:170.919724pt;}
.yf2_c01224{bottom:173.031144pt;}
.yf0_c01224{bottom:175.659393pt;}
.yef_c01224{bottom:176.444229pt;}
.yf1_c01224{bottom:177.149967pt;}
.yee_c01224{bottom:177.246057pt;}
.yed_c01224{bottom:179.342697pt;}
.yec_c01224{bottom:180.444765pt;}
.yeb_c01224{bottom:183.063657pt;}
.yea_c01224{bottom:184.671849pt;}
.ye9_c01224{bottom:185.987505pt;}
.ye8_c01224{bottom:186.497301pt;}
.ye7_c01224{bottom:189.129333pt;}
.ye6_c01224{bottom:220.422069pt;}
.ye5_c01224{bottom:221.113205pt;}
.ye4_c01224{bottom:221.814197pt;}
.ye3_c01224{bottom:222.766261pt;}
.ye2_c01224{bottom:223.445333pt;}
.ye1_c01224{bottom:239.166688pt;}
.ye0_c01224{bottom:241.688704pt;}
.ydf_c01224{bottom:242.764613pt;}
.yde_c01224{bottom:245.501035pt;}
.ydd_c01224{bottom:249.878181pt;}
.ydc_c01224{bottom:251.007067pt;}
.ydb_c01224{bottom:253.728741pt;}
.yda_c01224{bottom:255.366667pt;}
.yd9_c01224{bottom:273.859851pt;}
.yd8_c01224{bottom:274.550571pt;}
.yd7_c01224{bottom:275.680043pt;}
.yd6_c01224{bottom:276.197803pt;}
.yd5_c01224{bottom:277.840971pt;}
.yd4_c01224{bottom:278.300395pt;}
.yd3_c01224{bottom:279.489387pt;}
.yd2_c01224{bottom:280.367083pt;}
.yd1_c01224{bottom:281.112523pt;}
.yd0_c01224{bottom:283.435499pt;}
.ycf_c01224{bottom:284.166667pt;}
.yce_c01224{bottom:301.727179pt;}
.ycd_c01224{bottom:302.435883pt;}
.ycc_c01224{bottom:303.640203pt;}
.ycb_c01224{bottom:305.490443pt;}
.yca_c01224{bottom:306.210795pt;}
.yc9_c01224{bottom:306.923435pt;}
.yc8_c01224{bottom:307.845451pt;}
.yc7_c01224{bottom:310.187627pt;}
.yc6_c01224{bottom:311.171755pt;}
.yc5_c01224{bottom:312.335915pt;}
.y5_c01224{bottom:312.733333pt;}
.yc4_c01224{bottom:313.268907pt;}
.yc3_c01224{bottom:315.606667pt;}
.yc2_c01224{bottom:336.024551pt;}
.yc1_c01224{bottom:342.012165pt;}
.yc0_c01224{bottom:343.648387pt;}
.ybf_c01224{bottom:344.253668pt;}
.ybe_c01224{bottom:345.912599pt;}
.ybd_c01224{bottom:346.496888pt;}
.ybc_c01224{bottom:347.274724pt;}
.ybb_c01224{bottom:365.419357pt;}
.yba_c01224{bottom:367.468627pt;}
.yb9_c01224{bottom:368.315548pt;}
.yb8_c01224{bottom:369.036889pt;}
.yb7_c01224{bottom:369.725816pt;}
.yb6_c01224{bottom:371.973897pt;}
.yb5_c01224{bottom:373.758299pt;}
.yb4_c01224{bottom:374.680537pt;}
.yb3_c01224{bottom:376.282196pt;}
.yb2_c01224{bottom:377.164905pt;}
.y4_c01224{bottom:378.012000pt;}
.yb1_c01224{bottom:378.726667pt;}
.yb0_c01224{bottom:408.234453pt;}
.yaf_c01224{bottom:408.886267pt;}
.yae_c01224{bottom:410.702933pt;}
.yad_c01224{bottom:411.357867pt;}
.yac_c01224{bottom:426.639147pt;}
.yab_c01224{bottom:426.821493pt;}
.yaa_c01224{bottom:427.036640pt;}
.ya8_c01224{bottom:431.964027pt;}
.ya7_c01224{bottom:432.723040pt;}
.ya6_c01224{bottom:433.318400pt;}
.ya9_c01224{bottom:434.161120pt;}
.ya5_c01224{bottom:434.701093pt;}
.ya4_c01224{bottom:435.474213pt;}
.ya3_c01224{bottom:436.053947pt;}
.ya2_c01224{bottom:437.606347pt;}
.ya1_c01224{bottom:439.790960pt;}
.ya0_c01224{bottom:440.568693pt;}
.y9f_c01224{bottom:442.325333pt;}
.y9e_c01224{bottom:468.145808pt;}
.y9d_c01224{bottom:468.882197pt;}
.y9c_c01224{bottom:469.635677pt;}
.y9b_c01224{bottom:471.186075pt;}
.y9a_c01224{bottom:472.203819pt;}
.y99_c01224{bottom:472.958443pt;}
.y98_c01224{bottom:474.968000pt;}
.y97_c01224{bottom:492.518232pt;}
.y96_c01224{bottom:493.451688pt;}
.y95_c01224{bottom:495.795960pt;}
.y94_c01224{bottom:499.535853pt;}
.y93_c01224{bottom:501.926717pt;}
.y92_c01224{bottom:503.815040pt;}
.y91_c01224{bottom:504.496469pt;}
.y90_c01224{bottom:505.912419pt;}
.y8f_c01224{bottom:528.995595pt;}
.y8e_c01224{bottom:529.759733pt;}
.y8d_c01224{bottom:531.340141pt;}
.y8c_c01224{bottom:532.365533pt;}
.y8b_c01224{bottom:533.770853pt;}
.y8a_c01224{bottom:534.814237pt;}
.y89_c01224{bottom:537.154355pt;}
.y88_c01224{bottom:538.470517pt;}
.y87_c01224{bottom:539.519781pt;}
.y86_c01224{bottom:556.531357pt;}
.y85_c01224{bottom:559.552632pt;}
.y84_c01224{bottom:561.507024pt;}
.y83_c01224{bottom:562.378253pt;}
.y82_c01224{bottom:564.723512pt;}
.y81_c01224{bottom:565.389320pt;}
.y80_c01224{bottom:565.799547pt;}
.y7f_c01224{bottom:567.501379pt;}
.y7e_c01224{bottom:568.805333pt;}
.y7d_c01224{bottom:599.280000pt;}
.y7c_c01224{bottom:606.905088pt;}
.y7b_c01224{bottom:607.423181pt;}
.y7a_c01224{bottom:608.214840pt;}
.y78_c01224{bottom:619.142792pt;}
.y79_c01224{bottom:620.164605pt;}
.y77_c01224{bottom:621.520200pt;}
.y76_c01224{bottom:623.674851pt;}
.y75_c01224{bottom:624.567317pt;}
.y74_c01224{bottom:626.944021pt;}
.y73_c01224{bottom:627.562221pt;}
.y72_c01224{bottom:628.222397pt;}
.y71_c01224{bottom:629.901613pt;}
.y70_c01224{bottom:631.205333pt;}
.y6f_c01224{bottom:658.321608pt;}
.y6e_c01224{bottom:659.506840pt;}
.y6d_c01224{bottom:660.051304pt;}
.y6c_c01224{bottom:661.484032pt;}
.y6b_c01224{bottom:662.164000pt;}
.y6a_c01224{bottom:681.325079pt;}
.y69_c01224{bottom:682.581253pt;}
.y68_c01224{bottom:683.429235pt;}
.y67_c01224{bottom:684.351023pt;}
.y66_c01224{bottom:686.294613pt;}
.y65_c01224{bottom:687.139412pt;}
.y64_c01224{bottom:687.578196pt;}
.y63_c01224{bottom:689.283507pt;}
.y62_c01224{bottom:690.181373pt;}
.y61_c01224{bottom:691.253999pt;}
.y60_c01224{bottom:692.108643pt;}
.y3_c01224{bottom:692.640000pt;}
.y5f_c01224{bottom:693.839841pt;}
.y5e_c01224{bottom:720.655752pt;}
.y5d_c01224{bottom:722.174739pt;}
.y5c_c01224{bottom:722.904643pt;}
.y5b_c01224{bottom:723.461039pt;}
.y5a_c01224{bottom:724.774420pt;}
.y59_c01224{bottom:725.284000pt;}
.y58_c01224{bottom:745.069379pt;}
.y57_c01224{bottom:746.444257pt;}
.y56_c01224{bottom:748.922983pt;}
.y55_c01224{bottom:751.165912pt;}
.y54_c01224{bottom:753.451223pt;}
.y53_c01224{bottom:754.141683pt;}
.y52_c01224{bottom:756.167492pt;}
.y2_c01224{bottom:756.240000pt;}
.y51_c01224{bottom:756.818944pt;}
.y50_c01224{bottom:758.165333pt;}
.y4d_c01224{bottom:787.661600pt;}
.y4e_c01224{bottom:787.662133pt;}
.y4f_c01224{bottom:787.662240pt;}
.y4c_c01224{bottom:809.724560pt;}
.y4b_c01224{bottom:810.531653pt;}
.y4a_c01224{bottom:811.506347pt;}
.y49_c01224{bottom:812.879920pt;}
.y48_c01224{bottom:813.480000pt;}
.y47_c01224{bottom:814.065573pt;}
.y46_c01224{bottom:815.611813pt;}
.y45_c01224{bottom:817.819947pt;}
.y44_c01224{bottom:818.578480pt;}
.y43_c01224{bottom:820.325333pt;}
.y41_c01224{bottom:850.783257pt;}
.y42_c01224{bottom:850.783365pt;}
.y40_c01224{bottom:850.783851pt;}
.y39_c01224{bottom:866.397333pt;}
.y3f_c01224{bottom:866.550087pt;}
.y3e_c01224{bottom:867.162296pt;}
.y38_c01224{bottom:867.346667pt;}
.y3d_c01224{bottom:867.537981pt;}
.y3c_c01224{bottom:867.739744pt;}
.y37_c01224{bottom:867.752000pt;}
.y3b_c01224{bottom:868.275432pt;}
.y36_c01224{bottom:868.373333pt;}
.y3a_c01224{bottom:868.832000pt;}
.y34_c01224{bottom:870.289333pt;}
.y33_c01224{bottom:871.312000pt;}
.y32_c01224{bottom:873.864000pt;}
.y31_c01224{bottom:874.644000pt;}
.y30_c01224{bottom:875.424000pt;}
.y35_c01224{bottom:875.525333pt;}
.y2f_c01224{bottom:876.940000pt;}
.y2e_c01224{bottom:879.218667pt;}
.y2d_c01224{bottom:880.266667pt;}
.y2c_c01224{bottom:881.021333pt;}
.y2b_c01224{bottom:883.566667pt;}
.y2a_c01224{bottom:885.605333pt;}
.y29_c01224{bottom:913.310667pt;}
.y28_c01224{bottom:930.147749pt;}
.y27_c01224{bottom:932.116344pt;}
.y24_c01224{bottom:933.080261pt;}
.y26_c01224{bottom:934.203235pt;}
.y23_c01224{bottom:934.603445pt;}
.y22_c01224{bottom:936.395192pt;}
.y25_c01224{bottom:936.859365pt;}
.y21_c01224{bottom:937.169507pt;}
.y20_c01224{bottom:937.936923pt;}
.y1f_c01224{bottom:940.832941pt;}
.y1e_c01224{bottom:940.858525pt;}
.y1d_c01224{bottom:941.647747pt;}
.y1c_c01224{bottom:942.275005pt;}
.y1b_c01224{bottom:944.328728pt;}
.y1a_c01224{bottom:945.377325pt;}
.y19_c01224{bottom:945.414523pt;}
.y18_c01224{bottom:947.846667pt;}
.y17_c01224{bottom:964.138427pt;}
.y16_c01224{bottom:964.757013pt;}
.y15_c01224{bottom:965.998240pt;}
.y14_c01224{bottom:967.888080pt;}
.y13_c01224{bottom:968.699867pt;}
.y12_c01224{bottom:970.333067pt;}
.y11_c01224{bottom:971.179493pt;}
.y1_c01224{bottom:972.960000pt;}
.y10_c01224{bottom:973.246933pt;}
.yf_c01224{bottom:975.080827pt;}
.ye_c01224{bottom:976.319733pt;}
.yd_c01224{bottom:1000.045333pt;}
.yc_c01224{bottom:1000.827387pt;}
.yb_c01224{bottom:1002.407147pt;}
.ya_c01224{bottom:1004.164747pt;}
.y9_c01224{bottom:1004.764907pt;}
.y8_c01224{bottom:1005.354240pt;}
.y7_c01224{bottom:1007.122213pt;}
.y6_c01224{bottom:1008.485333pt;}
.h12_c01224{height:10.668800pt;}
.h9_c01224{height:10.671151pt;}
.he_c01224{height:16.002592pt;}
.h8_c01224{height:16.005407pt;}
.h19_c01224{height:21.341108pt;}
.h4_c01224{height:32.000000pt;}
.h3_c01224{height:37.333333pt;}
.hd_c01224{height:53.341973pt;}
.h1c_c01224{height:58.666667pt;}
.h17_c01224{height:58.683560pt;}
.h7_c01224{height:58.686493pt;}
.h18_c01224{height:58.688047pt;}
.ha_c01224{height:58.691331pt;}
.h5_c01224{height:64.000000pt;}
.hc_c01224{height:64.011551pt;}
.h6_c01224{height:64.012799pt;}
.hf_c01224{height:64.015486pt;}
.h13_c01224{height:64.016926pt;}
.h11_c01224{height:64.021628pt;}
.h16_c01224{height:64.025083pt;}
.h1a_c01224{height:69.311490pt;}
.h2_c01224{height:69.333333pt;}
.h10_c01224{height:69.350110pt;}
.hb_c01224{height:69.351670pt;}
.h1b_c01224{height:74.643143pt;}
.h15_c01224{height:74.688168pt;}
.h14_c01224{height:80.021157pt;}
.h1_c01224{height:1118.666667pt;}
.h0_c01224{height:1118.880000pt;}
.w0_c01224{width:793.200000pt;}
.w1_c01224{width:793.333333pt;}
.x0_c01224{left:0.000000pt;}
.x5_c01224{left:45.360000pt;}
.x4_c01224{left:46.320000pt;}
.x3_c01224{left:52.800000pt;}
.x2_c01224{left:54.480000pt;}
.x1_c01224{left:59.760000pt;}
.xa7_c01224{left:121.178667pt;}
.x99_c01224{left:122.352000pt;}
.x90_c01224{left:123.553333pt;}
.x85_c01224{left:124.545333pt;}
.x7c_c01224{left:125.697181pt;}
.x6f_c01224{left:128.130667pt;}
.x58_c01224{left:129.344925pt;}
.x4a_c01224{left:131.506667pt;}
.x27_c01224{left:133.701333pt;}
.xe_c01224{left:145.423520pt;}
.x18_c01224{left:155.780000pt;}
.xb8_c01224{left:158.552000pt;}
.xae_c01224{left:159.832000pt;}
.xa0_c01224{left:160.734667pt;}
.x8c_c01224{left:163.248373pt;}
.x80_c01224{left:165.294667pt;}
.x6e_c01224{left:166.800000pt;}
.x62_c01224{left:168.264000pt;}
.x52_c01224{left:171.422667pt;}
.x3d_c01224{left:172.362711pt;}
.x6_c01224{left:175.665333pt;}
.xa8_c01224{left:179.676000pt;}
.x7d_c01224{left:184.722600pt;}
.x70_c01224{left:187.401333pt;}
.x66_c01224{left:188.841333pt;}
.x4b_c01224{left:190.045333pt;}
.x8d_c01224{left:191.726667pt;}
.x6b_c01224{left:195.827936pt;}
.xb9_c01224{left:196.736444pt;}
.x53_c01224{left:198.242667pt;}
.x97_c01224{left:201.597704pt;}
.xf_c01224{left:204.434347pt;}
.x63_c01224{left:206.040000pt;}
.x59_c01224{left:208.035108pt;}
.x28_c01224{left:212.128000pt;}
.x7e_c01224{left:213.089339pt;}
.x4c_c01224{left:218.369333pt;}
.x3f_c01224{left:220.308000pt;}
.x3e_c01224{left:221.343852pt;}
.xc0_c01224{left:225.600000pt;}
.xaf_c01224{left:227.796000pt;}
.x91_c01224{left:229.834667pt;}
.xb1_c01224{left:236.728000pt;}
.x48_c01224{left:239.781707pt;}
.x81_c01224{left:242.585333pt;}
.x7_c01224{left:243.821333pt;}
.x5a_c01224{left:246.908904pt;}
.x19_c01224{left:249.324000pt;}
.x1a_c01224{left:250.754667pt;}
.x76_c01224{left:254.358413pt;}
.xba_c01224{left:255.685436pt;}
.xb0_c01224{left:257.004000pt;}
.x40_c01224{left:258.234667pt;}
.x67_c01224{left:265.169333pt;}
.x54_c01224{left:267.368000pt;}
.x49_c01224{left:268.587893pt;}
.x8e_c01224{left:270.688587pt;}
.x82_c01224{left:271.609333pt;}
.xbb_c01224{left:275.482952pt;}
.xa9_c01224{left:276.878667pt;}
.x71_c01224{left:283.404000pt;}
.x64_c01224{left:285.636000pt;}
.xa1_c01224{left:287.990667pt;}
.x10_c01224{left:291.793947pt;}
.x5b_c01224{left:295.640784pt;}
.x55_c01224{left:296.652000pt;}
.x8f_c01224{left:299.010880pt;}
.x4d_c01224{left:306.448000pt;}
.x98_c01224{left:308.409277pt;}
.x29_c01224{left:310.018667pt;}
.x72_c01224{left:313.668000pt;}
.x65_c01224{left:315.884000pt;}
.xaa_c01224{left:317.196000pt;}
.xa2_c01224{left:319.050667pt;}
.x68_c01224{left:323.277333pt;}
.x8_c01224{left:332.220000pt;}
.x56_c01224{left:335.068000pt;}
.x4e_c01224{left:336.468000pt;}
.x2a_c01224{left:339.045333pt;}
.x77_c01224{left:341.020880pt;}
.xb2_c01224{left:345.018667pt;}
.x9a_c01224{left:348.145333pt;}
.xa3_c01224{left:355.621333pt;}
.x86_c01224{left:360.494667pt;}
.x9_c01224{left:361.686667pt;}
.x8a_c01224{left:367.623307pt;}
.x41_c01224{left:368.641333pt;}
.x1b_c01224{left:370.074667pt;}
.x32_c01224{left:377.149333pt;}
.x2b_c01224{left:379.344000pt;}
.x11_c01224{left:390.230640pt;}
.xa_c01224{left:391.694667pt;}
.x1c_c01224{left:394.200000pt;}
.x83_c01224{left:399.364000pt;}
.xa4_c01224{left:405.162667pt;}
.xbc_c01224{left:412.247384pt;}
.x5c_c01224{left:413.976712pt;}
.x57_c01224{left:415.014667pt;}
.x92_c01224{left:417.152000pt;}
.x73_c01224{left:420.270667pt;}
.x1d_c01224{left:424.554667pt;}
.x1e_c01224{left:425.538667pt;}
.x84_c01224{left:427.686667pt;}
.x12_c01224{left:430.551173pt;}
.x78_c01224{left:431.709573pt;}
.x5d_c01224{left:433.911572pt;}
.x4f_c01224{left:435.829333pt;}
.x87_c01224{left:438.114667pt;}
.xb3_c01224{left:442.014667pt;}
.x42_c01224{left:445.953333pt;}
.x74_c01224{left:459.872000pt;}
.x2c_c01224{left:466.965333pt;}
.x79_c01224{left:469.708075pt;}
.x5e_c01224{left:472.337393pt;}
.xab_c01224{left:473.522667pt;}
.x43_c01224{left:475.232000pt;}
.xb_c01224{left:479.574667pt;}
.xb4_c01224{left:482.832000pt;}
.x9b_c01224{left:484.153333pt;}
.xb6_c01224{left:489.076055pt;}
.xa5_c01224{left:492.770667pt;}
.x44_c01224{left:505.236000pt;}
.x13_c01224{left:508.342960pt;}
.x9c_c01224{left:513.846667pt;}
.x93_c01224{left:514.894667pt;}
.x24_c01224{left:523.139011pt;}
.x2d_c01224{left:525.277333pt;}
.x7a_c01224{left:528.265651pt;}
.xbd_c01224{left:529.781732pt;}
.x50_c01224{left:533.348000pt;}
.x1f_c01224{left:536.924000pt;}
.x9d_c01224{left:543.861333pt;}
.x94_c01224{left:544.848000pt;}
.x14_c01224{left:546.998187pt;}
.x75_c01224{left:548.708000pt;}
.x2e_c01224{left:555.276000pt;}
.x7b_c01224{left:556.571875pt;}
.xc_c01224{left:558.562667pt;}
.x5f_c01224{left:560.661685pt;}
.x20_c01224{left:566.440000pt;}
.x69_c01224{left:569.814667pt;}
.xac_c01224{left:571.252000pt;}
.x45_c01224{left:573.914667pt;}
.x88_c01224{left:574.892000pt;}
.x33_c01224{left:575.817333pt;}
.xbe_c01224{left:578.987144pt;}
.x2f_c01224{left:585.286667pt;}
.xa6_c01224{left:590.185333pt;}
.x34_c01224{left:593.074667pt;}
.x21_c01224{left:596.221333pt;}
.xd_c01224{left:597.665333pt;}
.x25_c01224{left:600.427667pt;}
.x60_c01224{left:602.577971pt;}
.x35_c01224{left:604.340000pt;}
.xad_c01224{left:609.677333pt;}
.x95_c01224{left:613.033333pt;}
.xb5_c01224{left:619.250667pt;}
.x9e_c01224{left:620.954667pt;}
.x46_c01224{left:622.649333pt;}
.x36_c01224{left:630.705333pt;}
.x15_c01224{left:637.021733pt;}
.x37_c01224{left:641.642667pt;}
.x89_c01224{left:642.610667pt;}
.x7f_c01224{left:644.919693pt;}
.x6c_c01224{left:655.443515pt;}
.x38_c01224{left:660.834667pt;}
.x47_c01224{left:663.004000pt;}
.x22_c01224{left:665.134667pt;}
.xbf_c01224{left:667.549160pt;}
.x9f_c01224{left:671.134667pt;}
.x26_c01224{left:673.320427pt;}
.x6a_c01224{left:677.878667pt;}
.x39_c01224{left:679.306667pt;}
.x30_c01224{left:683.449333pt;}
.x3a_c01224{left:686.264000pt;}
.xb7_c01224{left:690.075716pt;}
.x8b_c01224{left:694.635680pt;}
.x16_c01224{left:696.148560pt;}
.x61_c01224{left:698.229857pt;}
.x3b_c01224{left:699.218667pt;}
.x51_c01224{left:700.896000pt;}
.x96_c01224{left:702.132000pt;}
.x6d_c01224{left:705.821752pt;}
.x3c_c01224{left:720.329333pt;}
.x31_c01224{left:722.801333pt;}
.x23_c01224{left:723.718667pt;}
.x17_c01224{left:725.610640pt;}
}





/* 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_c01225 {
    display:none;
  }
  .loading-indicator_c01225.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01225 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_c01225 { 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_c01225" -> "#page-container .classname_c01225")
 */
.pf_c01225 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01225 { /* 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_c01225.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01225 { /* 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_c01225 { /* 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_c01225 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01225 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01225 {overflow:visible;}
  }
}
.c_c01225 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01225 { /* 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_c01225:after { /* webkit #35443 */
  content: '';
}
.t_c01225:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01225 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 */
}
.__c01225 { /* 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_c01225 { /* info for Javascript */
  display:none;
}
.l_c01225 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01225 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01225 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01225: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_c01225 {
    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_c01225.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01225.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_c01225 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01225{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01225;src:url('chunks/assets/font_6b78c10203a447bee2208e8d.woff2')format("woff");}.ff1_c01225{font-family:ff1_c01225;line-height:1.000000;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;}
.m1_c01225{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m0_c01225{transform:matrix(0.485710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485710,0.000000,0.000000,0.250000,0,0);}
.v0_c01225{vertical-align:0.000000px;}
.ls0_c01225{letter-spacing:0.000000px;}
.sc__c01225{text-shadow:none;}
.sc0_c01225{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__c01225{-webkit-text-stroke:0px transparent;}
.sc0_c01225{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01225{word-spacing:0.000000px;}
.fc0_c01225{color:transparent;}
.fs1_c01225{font-size:18.000000px;}
.fs0_c01225{font-size:24.000000px;}
.y0_c01225{bottom:0.000000px;}
.y2_c01225{bottom:480.465000px;}
.y1_c01225{bottom:484.786500px;}
.h3_c01225{height:18.000000px;}
.h2_c01225{height:24.000000px;}
.h1_c01225{height:1258.500000px;}
.h0_c01225{height:1258.740000px;}
.w0_c01225{width:918.540000px;}
.w1_c01225{width:918.750000px;}
.x0_c01225{left:0.000000px;}
.x1_c01225{left:399.870000px;}
.x2_c01225{left:401.760000px;}
@media print{
.v0_c01225{vertical-align:0.000000pt;}
.ls0_c01225{letter-spacing:0.000000pt;}
.ws0_c01225{word-spacing:0.000000pt;}
.fs1_c01225{font-size:16.000000pt;}
.fs0_c01225{font-size:21.333333pt;}
.y0_c01225{bottom:0.000000pt;}
.y2_c01225{bottom:427.080000pt;}
.y1_c01225{bottom:430.921333pt;}
.h3_c01225{height:16.000000pt;}
.h2_c01225{height:21.333333pt;}
.h1_c01225{height:1118.666667pt;}
.h0_c01225{height:1118.880000pt;}
.w0_c01225{width:816.480000pt;}
.w1_c01225{width:816.666667pt;}
.x0_c01225{left:0.000000pt;}
.x1_c01225{left:355.440000pt;}
.x2_c01225{left:357.120000pt;}
}





/* 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_c01226 {
    display:none;
  }
  .loading-indicator_c01226.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01226 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_c01226 { 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_c01226" -> "#page-container .classname_c01226")
 */
.pf_c01226 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01226 { /* 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_c01226.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01226 { /* 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_c01226 { /* 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_c01226 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01226 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01226 {overflow:visible;}
  }
}
.c_c01226 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01226 { /* 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_c01226:after { /* webkit #35443 */
  content: '';
}
.t_c01226:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01226 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 */
}
.__c01226 { /* 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_c01226 { /* info for Javascript */
  display:none;
}
.l_c01226 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01226 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01226 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01226: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_c01226 {
    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_c01226.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01226.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_c01226 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01226{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01226;src:url('chunks/assets/font_c605e72f209fc835e906f064.woff2')format("woff");}.ff1_c01226{font-family:ff1_c01226;line-height:1.000000;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;}
.m4_c01226{transform:matrix(0.013519,0.000189,-0.003500,0.249976,0,0);-ms-transform:matrix(0.013519,0.000189,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.013519,0.000189,-0.003500,0.249976,0,0);}
.m150_c01226{transform:matrix(0.074998,0.000525,-0.001750,0.249994,0,0);-ms-transform:matrix(0.074998,0.000525,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.074998,0.000525,-0.001750,0.249994,0,0);}
.m2_c01226{transform:matrix(0.116795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116795,0.000000,0.000000,0.250000,0,0);}
.m88_c01226{transform:matrix(0.130158,0.002083,-0.003999,0.249968,0,0);-ms-transform:matrix(0.130158,0.002083,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.130158,0.002083,-0.003999,0.249968,0,0);}
.m132_c01226{transform:matrix(0.138195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138195,0.000000,0.000000,0.250000,0,0);}
.m131_c01226{transform:matrix(0.139180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139180,0.000000,0.000000,0.250000,0,0);}
.m130_c01226{transform:matrix(0.140240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140240,0.000000,0.000000,0.250000,0,0);}
.m134_c01226{transform:matrix(0.147235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147235,0.000000,0.000000,0.250000,0,0);}
.m12e_c01226{transform:matrix(0.148760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148760,0.000000,0.000000,0.250000,0,0);}
.m65_c01226{transform:matrix(0.153320,0.002453,-0.003999,0.249968,0,0);-ms-transform:matrix(0.153320,0.002453,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.153320,0.002453,-0.003999,0.249968,0,0);}
.m136_c01226{transform:matrix(0.155110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155110,0.000000,0.000000,0.250000,0,0);}
.m2b_c01226{transform:matrix(0.156327,0.001563,-0.002500,0.249988,0,0);-ms-transform:matrix(0.156327,0.001563,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.156327,0.001563,-0.002500,0.249988,0,0);}
.m138_c01226{transform:matrix(0.158990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158990,0.000000,0.000000,0.250000,0,0);}
.m135_c01226{transform:matrix(0.159190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159190,0.000000,0.000000,0.250000,0,0);}
.m2a_c01226{transform:matrix(0.159567,0.001596,-0.002500,0.249988,0,0);-ms-transform:matrix(0.159567,0.001596,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.159567,0.001596,-0.002500,0.249988,0,0);}
.m27_c01226{transform:matrix(0.160532,0.001605,-0.002500,0.249988,0,0);-ms-transform:matrix(0.160532,0.001605,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.160532,0.001605,-0.002500,0.249988,0,0);}
.m12f_c01226{transform:matrix(0.161505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161505,0.000000,0.000000,0.250000,0,0);}
.m106_c01226{transform:matrix(0.163351,0.001143,-0.001750,0.249994,0,0);-ms-transform:matrix(0.163351,0.001143,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.163351,0.001143,-0.001750,0.249994,0,0);}
.m26_c01226{transform:matrix(0.165737,0.001657,-0.002500,0.249988,0,0);-ms-transform:matrix(0.165737,0.001657,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.165737,0.001657,-0.002500,0.249988,0,0);}
.m25_c01226{transform:matrix(0.172031,0.001720,-0.002500,0.249988,0,0);-ms-transform:matrix(0.172031,0.001720,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.172031,0.001720,-0.002500,0.249988,0,0);}
.m28_c01226{transform:matrix(0.173086,0.001731,-0.002500,0.249988,0,0);-ms-transform:matrix(0.173086,0.001731,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.173086,0.001731,-0.002500,0.249988,0,0);}
.m2d_c01226{transform:matrix(0.175756,0.001758,-0.002500,0.249988,0,0);-ms-transform:matrix(0.175756,0.001758,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.175756,0.001758,-0.002500,0.249988,0,0);}
.m24_c01226{transform:matrix(0.179611,0.001796,-0.002500,0.249988,0,0);-ms-transform:matrix(0.179611,0.001796,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.179611,0.001796,-0.002500,0.249988,0,0);}
.mf3_c01226{transform:matrix(0.185276,0.002964,-0.003999,0.249968,0,0);-ms-transform:matrix(0.185276,0.002964,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.185276,0.002964,-0.003999,0.249968,0,0);}
.mf0_c01226{transform:matrix(0.186001,0.002976,-0.003999,0.249968,0,0);-ms-transform:matrix(0.186001,0.002976,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.186001,0.002976,-0.003999,0.249968,0,0);}
.m2f_c01226{transform:matrix(0.186386,0.001864,-0.002500,0.249988,0,0);-ms-transform:matrix(0.186386,0.001864,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.186386,0.001864,-0.002500,0.249988,0,0);}
.m2e_c01226{transform:matrix(0.186836,0.001868,-0.002500,0.249988,0,0);-ms-transform:matrix(0.186836,0.001868,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.186836,0.001868,-0.002500,0.249988,0,0);}
.maf_c01226{transform:matrix(0.186836,0.002989,-0.003999,0.249968,0,0);-ms-transform:matrix(0.186836,0.002989,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.186836,0.002989,-0.003999,0.249968,0,0);}
.m107_c01226{transform:matrix(0.187500,0.001313,-0.001750,0.249994,0,0);-ms-transform:matrix(0.187500,0.001313,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.187500,0.001313,-0.001750,0.249994,0,0);}
.mb8_c01226{transform:matrix(0.187816,0.003005,-0.003999,0.249968,0,0);-ms-transform:matrix(0.187816,0.003005,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.187816,0.003005,-0.003999,0.249968,0,0);}
.m98_c01226{transform:matrix(0.190786,0.003053,-0.003999,0.249968,0,0);-ms-transform:matrix(0.190786,0.003053,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.190786,0.003053,-0.003999,0.249968,0,0);}
.mf6_c01226{transform:matrix(0.191411,0.003063,-0.003999,0.249968,0,0);-ms-transform:matrix(0.191411,0.003063,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.191411,0.003063,-0.003999,0.249968,0,0);}
.m14b_c01226{transform:matrix(0.191715,0.001342,-0.001750,0.249994,0,0);-ms-transform:matrix(0.191715,0.001342,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.191715,0.001342,-0.001750,0.249994,0,0);}
.m29_c01226{transform:matrix(0.191840,0.001918,-0.002500,0.249988,0,0);-ms-transform:matrix(0.191840,0.001918,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.191840,0.001918,-0.002500,0.249988,0,0);}
.m105_c01226{transform:matrix(0.192090,0.001345,-0.001750,0.249994,0,0);-ms-transform:matrix(0.192090,0.001345,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.192090,0.001345,-0.001750,0.249994,0,0);}
.m124_c01226{transform:matrix(0.193770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193770,0.000000,0.000000,0.250000,0,0);}
.m19_c01226{transform:matrix(0.194350,0.001944,-0.002500,0.249988,0,0);-ms-transform:matrix(0.194350,0.001944,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.194350,0.001944,-0.002500,0.249988,0,0);}
.m104_c01226{transform:matrix(0.194425,0.001361,-0.001750,0.249994,0,0);-ms-transform:matrix(0.194425,0.001361,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.194425,0.001361,-0.001750,0.249994,0,0);}
.mf4_c01226{transform:matrix(0.194810,0.003117,-0.003999,0.249968,0,0);-ms-transform:matrix(0.194810,0.003117,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.194810,0.003117,-0.003999,0.249968,0,0);}
.mb2_c01226{transform:matrix(0.194915,0.003119,-0.003999,0.249968,0,0);-ms-transform:matrix(0.194915,0.003119,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.194915,0.003119,-0.003999,0.249968,0,0);}
.mec_c01226{transform:matrix(0.195415,0.003127,-0.003999,0.249968,0,0);-ms-transform:matrix(0.195415,0.003127,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.195415,0.003127,-0.003999,0.249968,0,0);}
.m123_c01226{transform:matrix(0.195625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195625,0.000000,0.000000,0.250000,0,0);}
.ma1_c01226{transform:matrix(0.196710,0.003147,-0.003999,0.249968,0,0);-ms-transform:matrix(0.196710,0.003147,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.196710,0.003147,-0.003999,0.249968,0,0);}
.m9b_c01226{transform:matrix(0.197360,0.003158,-0.003999,0.249968,0,0);-ms-transform:matrix(0.197360,0.003158,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.197360,0.003158,-0.003999,0.249968,0,0);}
.m126_c01226{transform:matrix(0.197420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197420,0.000000,0.000000,0.250000,0,0);}
.med_c01226{transform:matrix(0.198320,0.003173,-0.003999,0.249968,0,0);-ms-transform:matrix(0.198320,0.003173,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.198320,0.003173,-0.003999,0.249968,0,0);}
.m2c_c01226{transform:matrix(0.198455,0.001985,-0.002500,0.249988,0,0);-ms-transform:matrix(0.198455,0.001985,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.198455,0.001985,-0.002500,0.249988,0,0);}
.m22_c01226{transform:matrix(0.198810,0.001988,-0.002500,0.249988,0,0);-ms-transform:matrix(0.198810,0.001988,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.198810,0.001988,-0.002500,0.249988,0,0);}
.mef_c01226{transform:matrix(0.198840,0.003181,-0.003999,0.249968,0,0);-ms-transform:matrix(0.198840,0.003181,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.198840,0.003181,-0.003999,0.249968,0,0);}
.m9f_c01226{transform:matrix(0.199220,0.003188,-0.003999,0.249968,0,0);-ms-transform:matrix(0.199220,0.003188,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.199220,0.003188,-0.003999,0.249968,0,0);}
.mf8_c01226{transform:matrix(0.199344,0.003190,-0.003999,0.249968,0,0);-ms-transform:matrix(0.199344,0.003190,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.199344,0.003190,-0.003999,0.249968,0,0);}
.m1d_c01226{transform:matrix(0.201020,0.002010,-0.002500,0.249988,0,0);-ms-transform:matrix(0.201020,0.002010,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.201020,0.002010,-0.002500,0.249988,0,0);}
.md8_c01226{transform:matrix(0.201299,0.003221,-0.003999,0.249968,0,0);-ms-transform:matrix(0.201299,0.003221,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.201299,0.003221,-0.003999,0.249968,0,0);}
.m62_c01226{transform:matrix(0.201585,0.002016,-0.002500,0.249988,0,0);-ms-transform:matrix(0.201585,0.002016,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.201585,0.002016,-0.002500,0.249988,0,0);}
.mf5_c01226{transform:matrix(0.201669,0.003227,-0.003999,0.249968,0,0);-ms-transform:matrix(0.201669,0.003227,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.201669,0.003227,-0.003999,0.249968,0,0);}
.ma0_c01226{transform:matrix(0.202154,0.003234,-0.003999,0.249968,0,0);-ms-transform:matrix(0.202154,0.003234,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.202154,0.003234,-0.003999,0.249968,0,0);}
.mc2_c01226{transform:matrix(0.203289,0.003253,-0.003999,0.249968,0,0);-ms-transform:matrix(0.203289,0.003253,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.203289,0.003253,-0.003999,0.249968,0,0);}
.mb6_c01226{transform:matrix(0.205334,0.003285,-0.003999,0.249968,0,0);-ms-transform:matrix(0.205334,0.003285,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.205334,0.003285,-0.003999,0.249968,0,0);}
.m128_c01226{transform:matrix(0.205815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205815,0.000000,0.000000,0.250000,0,0);}
.mb0_c01226{transform:matrix(0.206234,0.003300,-0.003999,0.249968,0,0);-ms-transform:matrix(0.206234,0.003300,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.206234,0.003300,-0.003999,0.249968,0,0);}
.m120_c01226{transform:matrix(0.206280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206280,0.000000,0.000000,0.250000,0,0);}
.m12_c01226{transform:matrix(0.206395,0.002064,-0.002500,0.249988,0,0);-ms-transform:matrix(0.206395,0.002064,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.206395,0.002064,-0.002500,0.249988,0,0);}
.m116_c01226{transform:matrix(0.206400,0.001445,-0.001750,0.249994,0,0);-ms-transform:matrix(0.206400,0.001445,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.206400,0.001445,-0.001750,0.249994,0,0);}
.mc4_c01226{transform:matrix(0.208648,0.003338,-0.003999,0.249968,0,0);-ms-transform:matrix(0.208648,0.003338,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.208648,0.003338,-0.003999,0.249968,0,0);}
.m1c_c01226{transform:matrix(0.208995,0.002090,-0.002500,0.249988,0,0);-ms-transform:matrix(0.208995,0.002090,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.208995,0.002090,-0.002500,0.249988,0,0);}
.m118_c01226{transform:matrix(0.209930,0.001470,-0.001750,0.249994,0,0);-ms-transform:matrix(0.209930,0.001470,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.209930,0.001470,-0.001750,0.249994,0,0);}
.mfb_c01226{transform:matrix(0.210188,0.003363,-0.003999,0.249968,0,0);-ms-transform:matrix(0.210188,0.003363,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.210188,0.003363,-0.003999,0.249968,0,0);}
.m133_c01226{transform:matrix(0.210520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210520,0.000000,0.000000,0.250000,0,0);}
.mee_c01226{transform:matrix(0.210943,0.003375,-0.003999,0.249968,0,0);-ms-transform:matrix(0.210943,0.003375,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.210943,0.003375,-0.003999,0.249968,0,0);}
.mfd_c01226{transform:matrix(0.211538,0.003385,-0.003999,0.249968,0,0);-ms-transform:matrix(0.211538,0.003385,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.211538,0.003385,-0.003999,0.249968,0,0);}
.m1b_c01226{transform:matrix(0.211754,0.002118,-0.002500,0.249988,0,0);-ms-transform:matrix(0.211754,0.002118,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.211754,0.002118,-0.002500,0.249988,0,0);}
.m129_c01226{transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);}
.m12b_c01226{transform:matrix(0.212850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212850,0.000000,0.000000,0.250000,0,0);}
.mb9_c01226{transform:matrix(0.213583,0.003417,-0.003999,0.249968,0,0);-ms-transform:matrix(0.213583,0.003417,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.213583,0.003417,-0.003999,0.249968,0,0);}
.mc1_c01226{transform:matrix(0.213778,0.003420,-0.003999,0.249968,0,0);-ms-transform:matrix(0.213778,0.003420,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.213778,0.003420,-0.003999,0.249968,0,0);}
.m97_c01226{transform:matrix(0.213963,0.003423,-0.003999,0.249968,0,0);-ms-transform:matrix(0.213963,0.003423,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.213963,0.003423,-0.003999,0.249968,0,0);}
.m15_c01226{transform:matrix(0.214689,0.002147,-0.002500,0.249988,0,0);-ms-transform:matrix(0.214689,0.002147,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.214689,0.002147,-0.002500,0.249988,0,0);}
.mf2_c01226{transform:matrix(0.214788,0.003437,-0.003999,0.249968,0,0);-ms-transform:matrix(0.214788,0.003437,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.214788,0.003437,-0.003999,0.249968,0,0);}
.mf7_c01226{transform:matrix(0.215667,0.003451,-0.003999,0.249968,0,0);-ms-transform:matrix(0.215667,0.003451,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.215667,0.003451,-0.003999,0.249968,0,0);}
.m17_c01226{transform:matrix(0.215744,0.002157,-0.002500,0.249988,0,0);-ms-transform:matrix(0.215744,0.002157,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.215744,0.002157,-0.002500,0.249988,0,0);}
.ma2_c01226{transform:matrix(0.215867,0.003454,-0.003999,0.249968,0,0);-ms-transform:matrix(0.215867,0.003454,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.215867,0.003454,-0.003999,0.249968,0,0);}
.me_c01226{transform:matrix(0.216009,0.002160,-0.002500,0.249988,0,0);-ms-transform:matrix(0.216009,0.002160,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.216009,0.002160,-0.002500,0.249988,0,0);}
.md_c01226{transform:matrix(0.216739,0.002167,-0.002500,0.249988,0,0);-ms-transform:matrix(0.216739,0.002167,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.216739,0.002167,-0.002500,0.249988,0,0);}
.m63_c01226{transform:matrix(0.216914,0.002169,-0.002500,0.249988,0,0);-ms-transform:matrix(0.216914,0.002169,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.216914,0.002169,-0.002500,0.249988,0,0);}
.mb4_c01226{transform:matrix(0.217072,0.003473,-0.003999,0.249968,0,0);-ms-transform:matrix(0.217072,0.003473,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.217072,0.003473,-0.003999,0.249968,0,0);}
.mb5_c01226{transform:matrix(0.217292,0.003477,-0.003999,0.249968,0,0);-ms-transform:matrix(0.217292,0.003477,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.217292,0.003477,-0.003999,0.249968,0,0);}
.mf_c01226{transform:matrix(0.217609,0.002176,-0.002500,0.249988,0,0);-ms-transform:matrix(0.217609,0.002176,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.217609,0.002176,-0.002500,0.249988,0,0);}
.mfc_c01226{transform:matrix(0.217707,0.003483,-0.003999,0.249968,0,0);-ms-transform:matrix(0.217707,0.003483,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.217707,0.003483,-0.003999,0.249968,0,0);}
.mc0_c01226{transform:matrix(0.218597,0.003498,-0.003999,0.249968,0,0);-ms-transform:matrix(0.218597,0.003498,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.218597,0.003498,-0.003999,0.249968,0,0);}
.mbc_c01226{transform:matrix(0.218717,0.003499,-0.003999,0.249968,0,0);-ms-transform:matrix(0.218717,0.003499,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.218717,0.003499,-0.003999,0.249968,0,0);}
.m109_c01226{transform:matrix(0.218775,0.001531,-0.001750,0.249994,0,0);-ms-transform:matrix(0.218775,0.001531,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.218775,0.001531,-0.001750,0.249994,0,0);}
.m121_c01226{transform:matrix(0.219420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219420,0.000000,0.000000,0.250000,0,0);}
.m83_c01226{transform:matrix(0.220272,0.003524,-0.003999,0.249968,0,0);-ms-transform:matrix(0.220272,0.003524,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.220272,0.003524,-0.003999,0.249968,0,0);}
.mb3_c01226{transform:matrix(0.220352,0.003526,-0.003999,0.249968,0,0);-ms-transform:matrix(0.220352,0.003526,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.220352,0.003526,-0.003999,0.249968,0,0);}
.m36_c01226{transform:matrix(0.220499,0.002205,-0.002500,0.249988,0,0);-ms-transform:matrix(0.220499,0.002205,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.220499,0.002205,-0.002500,0.249988,0,0);}
.m4c_c01226{transform:matrix(0.221009,0.002210,-0.002500,0.249988,0,0);-ms-transform:matrix(0.221009,0.002210,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.221009,0.002210,-0.002500,0.249988,0,0);}
.mb7_c01226{transform:matrix(0.221272,0.003540,-0.003999,0.249968,0,0);-ms-transform:matrix(0.221272,0.003540,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.221272,0.003540,-0.003999,0.249968,0,0);}
.m8c_c01226{transform:matrix(0.221347,0.003542,-0.003999,0.249968,0,0);-ms-transform:matrix(0.221347,0.003542,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.221347,0.003542,-0.003999,0.249968,0,0);}
.mbe_c01226{transform:matrix(0.221617,0.003546,-0.003999,0.249968,0,0);-ms-transform:matrix(0.221617,0.003546,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.221617,0.003546,-0.003999,0.249968,0,0);}
.m108_c01226{transform:matrix(0.222005,0.001554,-0.001750,0.249994,0,0);-ms-transform:matrix(0.222005,0.001554,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.222005,0.001554,-0.001750,0.249994,0,0);}
.m99_c01226{transform:matrix(0.222417,0.003559,-0.003999,0.249968,0,0);-ms-transform:matrix(0.222417,0.003559,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.222417,0.003559,-0.003999,0.249968,0,0);}
.m12a_c01226{transform:matrix(0.222425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222425,0.000000,0.000000,0.250000,0,0);}
.m3a_c01226{transform:matrix(0.222489,0.002225,-0.002500,0.249988,0,0);-ms-transform:matrix(0.222489,0.002225,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.222489,0.002225,-0.002500,0.249988,0,0);}
.mbd_c01226{transform:matrix(0.222841,0.003565,-0.003999,0.249968,0,0);-ms-transform:matrix(0.222841,0.003565,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.222841,0.003565,-0.003999,0.249968,0,0);}
.m8a_c01226{transform:matrix(0.222931,0.003567,-0.003999,0.249968,0,0);-ms-transform:matrix(0.222931,0.003567,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.222931,0.003567,-0.003999,0.249968,0,0);}
.mfe_c01226{transform:matrix(0.223351,0.003574,-0.003999,0.249968,0,0);-ms-transform:matrix(0.223351,0.003574,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.223351,0.003574,-0.003999,0.249968,0,0);}
.m23_c01226{transform:matrix(0.223754,0.002238,-0.002500,0.249988,0,0);-ms-transform:matrix(0.223754,0.002238,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.223754,0.002238,-0.002500,0.249988,0,0);}
.m48_c01226{transform:matrix(0.223959,0.002240,-0.002500,0.249988,0,0);-ms-transform:matrix(0.223959,0.002240,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.223959,0.002240,-0.002500,0.249988,0,0);}
.m11c_c01226{transform:matrix(0.223961,-0.002016,0.002250,0.249990,0,0);-ms-transform:matrix(0.223961,-0.002016,0.002250,0.249990,0,0);-webkit-transform:matrix(0.223961,-0.002016,0.002250,0.249990,0,0);}
.m1f_c01226{transform:matrix(0.224424,0.002244,-0.002500,0.249988,0,0);-ms-transform:matrix(0.224424,0.002244,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.224424,0.002244,-0.002500,0.249988,0,0);}
.mc9_c01226{transform:matrix(0.224691,0.003595,-0.003999,0.249968,0,0);-ms-transform:matrix(0.224691,0.003595,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.224691,0.003595,-0.003999,0.249968,0,0);}
.m5c_c01226{transform:matrix(0.224709,0.002247,-0.002500,0.249988,0,0);-ms-transform:matrix(0.224709,0.002247,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.224709,0.002247,-0.002500,0.249988,0,0);}
.mbb_c01226{transform:matrix(0.225241,0.003604,-0.003999,0.249968,0,0);-ms-transform:matrix(0.225241,0.003604,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.225241,0.003604,-0.003999,0.249968,0,0);}
.m9d_c01226{transform:matrix(0.225801,0.003613,-0.003999,0.249968,0,0);-ms-transform:matrix(0.225801,0.003613,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.225801,0.003613,-0.003999,0.249968,0,0);}
.m5e_c01226{transform:matrix(0.225929,0.002259,-0.002500,0.249988,0,0);-ms-transform:matrix(0.225929,0.002259,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.225929,0.002259,-0.002500,0.249988,0,0);}
.m31_c01226{transform:matrix(0.226054,0.002261,-0.002500,0.249988,0,0);-ms-transform:matrix(0.226054,0.002261,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.226054,0.002261,-0.002500,0.249988,0,0);}
.mfa_c01226{transform:matrix(0.226486,0.003624,-0.003999,0.249968,0,0);-ms-transform:matrix(0.226486,0.003624,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.226486,0.003624,-0.003999,0.249968,0,0);}
.ma_c01226{transform:matrix(0.226818,0.003175,-0.003500,0.249976,0,0);-ms-transform:matrix(0.226818,0.003175,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.226818,0.003175,-0.003500,0.249976,0,0);}
.m12d_c01226{transform:matrix(0.227125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227125,0.000000,0.000000,0.250000,0,0);}
.m16_c01226{transform:matrix(0.228019,0.002280,-0.002500,0.249988,0,0);-ms-transform:matrix(0.228019,0.002280,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.228019,0.002280,-0.002500,0.249988,0,0);}
.m95_c01226{transform:matrix(0.228061,0.003649,-0.003999,0.249968,0,0);-ms-transform:matrix(0.228061,0.003649,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.228061,0.003649,-0.003999,0.249968,0,0);}
.m4b_c01226{transform:matrix(0.228079,0.002281,-0.002500,0.249988,0,0);-ms-transform:matrix(0.228079,0.002281,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.228079,0.002281,-0.002500,0.249988,0,0);}
.m7e_c01226{transform:matrix(0.228361,0.003654,-0.003999,0.249968,0,0);-ms-transform:matrix(0.228361,0.003654,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.228361,0.003654,-0.003999,0.249968,0,0);}
.m119_c01226{transform:matrix(0.228424,0.001599,-0.001750,0.249994,0,0);-ms-transform:matrix(0.228424,0.001599,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.228424,0.001599,-0.001750,0.249994,0,0);}
.m9a_c01226{transform:matrix(0.228526,0.003656,-0.003999,0.249968,0,0);-ms-transform:matrix(0.228526,0.003656,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.228526,0.003656,-0.003999,0.249968,0,0);}
.m102_c01226{transform:matrix(0.228666,0.003659,-0.003999,0.249968,0,0);-ms-transform:matrix(0.228666,0.003659,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.228666,0.003659,-0.003999,0.249968,0,0);}
.m125_c01226{transform:matrix(0.228755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228755,0.000000,0.000000,0.250000,0,0);}
.m127_c01226{transform:matrix(0.230245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230245,0.000000,0.000000,0.250000,0,0);}
.m4d_c01226{transform:matrix(0.230273,0.002303,-0.002500,0.249988,0,0);-ms-transform:matrix(0.230273,0.002303,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.230273,0.002303,-0.002500,0.249988,0,0);}
.mc3_c01226{transform:matrix(0.230431,0.003687,-0.003999,0.249968,0,0);-ms-transform:matrix(0.230431,0.003687,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.230431,0.003687,-0.003999,0.249968,0,0);}
.me1_c01226{transform:matrix(0.230715,0.003691,-0.003999,0.249968,0,0);-ms-transform:matrix(0.230715,0.003691,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.230715,0.003691,-0.003999,0.249968,0,0);}
.mb1_c01226{transform:matrix(0.230950,0.003695,-0.003999,0.249968,0,0);-ms-transform:matrix(0.230950,0.003695,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.230950,0.003695,-0.003999,0.249968,0,0);}
.m156_c01226{transform:matrix(0.231524,0.001621,-0.001750,0.249994,0,0);-ms-transform:matrix(0.231524,0.001621,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.231524,0.001621,-0.001750,0.249994,0,0);}
.m80_c01226{transform:matrix(0.231595,0.003706,-0.003999,0.249968,0,0);-ms-transform:matrix(0.231595,0.003706,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.231595,0.003706,-0.003999,0.249968,0,0);}
.m9c_c01226{transform:matrix(0.231780,0.003708,-0.003999,0.249968,0,0);-ms-transform:matrix(0.231780,0.003708,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.231780,0.003708,-0.003999,0.249968,0,0);}
.mba_c01226{transform:matrix(0.232265,0.003716,-0.003999,0.249968,0,0);-ms-transform:matrix(0.232265,0.003716,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.232265,0.003716,-0.003999,0.249968,0,0);}
.m4a_c01226{transform:matrix(0.233518,0.002335,-0.002500,0.249988,0,0);-ms-transform:matrix(0.233518,0.002335,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.233518,0.002335,-0.002500,0.249988,0,0);}
.mca_c01226{transform:matrix(0.233705,0.003739,-0.003999,0.249968,0,0);-ms-transform:matrix(0.233705,0.003739,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.233705,0.003739,-0.003999,0.249968,0,0);}
.m9e_c01226{transform:matrix(0.233775,0.003740,-0.003999,0.249968,0,0);-ms-transform:matrix(0.233775,0.003740,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.233775,0.003740,-0.003999,0.249968,0,0);}
.m11_c01226{transform:matrix(0.233828,0.002338,-0.002500,0.249988,0,0);-ms-transform:matrix(0.233828,0.002338,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.233828,0.002338,-0.002500,0.249988,0,0);}
.m3e_c01226{transform:matrix(0.233943,0.002339,-0.002500,0.249988,0,0);-ms-transform:matrix(0.233943,0.002339,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.233943,0.002339,-0.002500,0.249988,0,0);}
.m89_c01226{transform:matrix(0.234330,0.003749,-0.003999,0.249968,0,0);-ms-transform:matrix(0.234330,0.003749,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.234330,0.003749,-0.003999,0.249968,0,0);}
.mc5_c01226{transform:matrix(0.234410,0.003751,-0.003999,0.249968,0,0);-ms-transform:matrix(0.234410,0.003751,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.234410,0.003751,-0.003999,0.249968,0,0);}
.ma5_c01226{transform:matrix(0.234730,0.003756,-0.003999,0.249968,0,0);-ms-transform:matrix(0.234730,0.003756,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.234730,0.003756,-0.003999,0.249968,0,0);}
.m51_c01226{transform:matrix(0.235263,0.002353,-0.002500,0.249988,0,0);-ms-transform:matrix(0.235263,0.002353,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.235263,0.002353,-0.002500,0.249988,0,0);}
.me0_c01226{transform:matrix(0.235450,0.003767,-0.003999,0.249968,0,0);-ms-transform:matrix(0.235450,0.003767,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.235450,0.003767,-0.003999,0.249968,0,0);}
.m21_c01226{transform:matrix(0.236023,0.002360,-0.002500,0.249988,0,0);-ms-transform:matrix(0.236023,0.002360,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.236023,0.002360,-0.002500,0.249988,0,0);}
.mea_c01226{transform:matrix(0.236080,0.003777,-0.003999,0.249968,0,0);-ms-transform:matrix(0.236080,0.003777,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.236080,0.003777,-0.003999,0.249968,0,0);}
.m1e_c01226{transform:matrix(0.236548,0.002365,-0.002500,0.249988,0,0);-ms-transform:matrix(0.236548,0.002365,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.236548,0.002365,-0.002500,0.249988,0,0);}
.me8_c01226{transform:matrix(0.236695,0.003787,-0.003999,0.249968,0,0);-ms-transform:matrix(0.236695,0.003787,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.236695,0.003787,-0.003999,0.249968,0,0);}
.m41_c01226{transform:matrix(0.237108,0.002371,-0.002500,0.249988,0,0);-ms-transform:matrix(0.237108,0.002371,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.237108,0.002371,-0.002500,0.249988,0,0);}
.m8_c01226{transform:matrix(0.237162,0.003320,-0.003500,0.249976,0,0);-ms-transform:matrix(0.237162,0.003320,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.237162,0.003320,-0.003500,0.249976,0,0);}
.m38_c01226{transform:matrix(0.237188,0.002372,-0.002500,0.249988,0,0);-ms-transform:matrix(0.237188,0.002372,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.237188,0.002372,-0.002500,0.249988,0,0);}
.mce_c01226{transform:matrix(0.237740,0.003804,-0.003999,0.249968,0,0);-ms-transform:matrix(0.237740,0.003804,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.237740,0.003804,-0.003999,0.249968,0,0);}
.m93_c01226{transform:matrix(0.237765,0.003804,-0.003999,0.249968,0,0);-ms-transform:matrix(0.237765,0.003804,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.237765,0.003804,-0.003999,0.249968,0,0);}
.m20_c01226{transform:matrix(0.238723,0.002387,-0.002500,0.249988,0,0);-ms-transform:matrix(0.238723,0.002387,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.238723,0.002387,-0.002500,0.249988,0,0);}
.mc7_c01226{transform:matrix(0.239239,0.003828,-0.003999,0.249968,0,0);-ms-transform:matrix(0.239239,0.003828,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.239239,0.003828,-0.003999,0.249968,0,0);}
.m8d_c01226{transform:matrix(0.239264,0.003828,-0.003999,0.249968,0,0);-ms-transform:matrix(0.239264,0.003828,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.239264,0.003828,-0.003999,0.249968,0,0);}
.m100_c01226{transform:matrix(0.239399,0.003830,-0.003999,0.249968,0,0);-ms-transform:matrix(0.239399,0.003830,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.239399,0.003830,-0.003999,0.249968,0,0);}
.m7f_c01226{transform:matrix(0.240084,0.003841,-0.003999,0.249968,0,0);-ms-transform:matrix(0.240084,0.003841,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.240084,0.003841,-0.003999,0.249968,0,0);}
.m47_c01226{transform:matrix(0.240093,0.002401,-0.002500,0.249988,0,0);-ms-transform:matrix(0.240093,0.002401,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.240093,0.002401,-0.002500,0.249988,0,0);}
.m11a_c01226{transform:matrix(0.241045,-0.002169,0.002250,0.249990,0,0);-ms-transform:matrix(0.241045,-0.002169,0.002250,0.249990,0,0);-webkit-transform:matrix(0.241045,-0.002169,0.002250,0.249990,0,0);}
.m34_c01226{transform:matrix(0.241403,0.002414,-0.002500,0.249988,0,0);-ms-transform:matrix(0.241403,0.002414,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.241403,0.002414,-0.002500,0.249988,0,0);}
.m5f_c01226{transform:matrix(0.241768,0.002418,-0.002500,0.249988,0,0);-ms-transform:matrix(0.241768,0.002418,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.241768,0.002418,-0.002500,0.249988,0,0);}
.mdd_c01226{transform:matrix(0.241984,0.003872,-0.003999,0.249968,0,0);-ms-transform:matrix(0.241984,0.003872,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.241984,0.003872,-0.003999,0.249968,0,0);}
.m5_c01226{transform:matrix(0.242721,0.003398,-0.003500,0.249976,0,0);-ms-transform:matrix(0.242721,0.003398,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.242721,0.003398,-0.003500,0.249976,0,0);}
.m5d_c01226{transform:matrix(0.242858,0.002429,-0.002500,0.249988,0,0);-ms-transform:matrix(0.242858,0.002429,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.242858,0.002429,-0.002500,0.249988,0,0);}
.m113_c01226{transform:matrix(0.242999,0.001701,-0.001750,0.249994,0,0);-ms-transform:matrix(0.242999,0.001701,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.242999,0.001701,-0.001750,0.249994,0,0);}
.m3f_c01226{transform:matrix(0.243483,0.002435,-0.002500,0.249988,0,0);-ms-transform:matrix(0.243483,0.002435,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.243483,0.002435,-0.002500,0.249988,0,0);}
.m44_c01226{transform:matrix(0.243688,0.002437,-0.002500,0.249988,0,0);-ms-transform:matrix(0.243688,0.002437,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.243688,0.002437,-0.002500,0.249988,0,0);}
.ma3_c01226{transform:matrix(0.243919,0.003903,-0.003999,0.249968,0,0);-ms-transform:matrix(0.243919,0.003903,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.243919,0.003903,-0.003999,0.249968,0,0);}
.m7d_c01226{transform:matrix(0.244224,0.003908,-0.003999,0.249968,0,0);-ms-transform:matrix(0.244224,0.003908,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.244224,0.003908,-0.003999,0.249968,0,0);}
.md6_c01226{transform:matrix(0.244444,0.003911,-0.003999,0.249968,0,0);-ms-transform:matrix(0.244444,0.003911,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.244444,0.003911,-0.003999,0.249968,0,0);}
.m5b_c01226{transform:matrix(0.244813,0.002448,-0.002500,0.249988,0,0);-ms-transform:matrix(0.244813,0.002448,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.244813,0.002448,-0.002500,0.249988,0,0);}
.mda_c01226{transform:matrix(0.244839,0.003917,-0.003999,0.249968,0,0);-ms-transform:matrix(0.244839,0.003917,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.244839,0.003917,-0.003999,0.249968,0,0);}
.m114_c01226{transform:matrix(0.245574,0.001719,-0.001750,0.249994,0,0);-ms-transform:matrix(0.245574,0.001719,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.245574,0.001719,-0.001750,0.249994,0,0);}
.m6a_c01226{transform:matrix(0.246588,0.003945,-0.003999,0.249968,0,0);-ms-transform:matrix(0.246588,0.003945,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.246588,0.003945,-0.003999,0.249968,0,0);}
.m87_c01226{transform:matrix(0.246908,0.003951,-0.003999,0.249968,0,0);-ms-transform:matrix(0.246908,0.003951,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.246908,0.003951,-0.003999,0.249968,0,0);}
.mf9_c01226{transform:matrix(0.247428,0.003959,-0.003999,0.249968,0,0);-ms-transform:matrix(0.247428,0.003959,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.247428,0.003959,-0.003999,0.249968,0,0);}
.md3_c01226{transform:matrix(0.247723,0.003964,-0.003999,0.249968,0,0);-ms-transform:matrix(0.247723,0.003964,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.247723,0.003964,-0.003999,0.249968,0,0);}
.m73_c01226{transform:matrix(0.248883,0.003982,-0.003999,0.249968,0,0);-ms-transform:matrix(0.248883,0.003982,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.248883,0.003982,-0.003999,0.249968,0,0);}
.m117_c01226{transform:matrix(0.249084,0.001744,-0.001750,0.249994,0,0);-ms-transform:matrix(0.249084,0.001744,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.249084,0.001744,-0.001750,0.249994,0,0);}
.m8b_c01226{transform:matrix(0.249633,0.003994,-0.003999,0.249968,0,0);-ms-transform:matrix(0.249633,0.003994,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.249633,0.003994,-0.003999,0.249968,0,0);}
.mf1_c01226{transform:matrix(0.249868,0.003998,-0.003999,0.249968,0,0);-ms-transform:matrix(0.249868,0.003998,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.249868,0.003998,-0.003999,0.249968,0,0);}
.m43_c01226{transform:matrix(0.249968,0.002500,-0.002500,0.249988,0,0);-ms-transform:matrix(0.249968,0.002500,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.249968,0.002500,-0.002500,0.249988,0,0);}
.m3c_c01226{transform:matrix(0.250987,0.002510,-0.002500,0.249988,0,0);-ms-transform:matrix(0.250987,0.002510,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.250987,0.002510,-0.002500,0.249988,0,0);}
.m77_c01226{transform:matrix(0.251188,0.004019,-0.003999,0.249968,0,0);-ms-transform:matrix(0.251188,0.004019,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.251188,0.004019,-0.003999,0.249968,0,0);}
.m45_c01226{transform:matrix(0.251282,0.002513,-0.002500,0.249988,0,0);-ms-transform:matrix(0.251282,0.002513,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.251282,0.002513,-0.002500,0.249988,0,0);}
.m13_c01226{transform:matrix(0.251702,0.002517,-0.002500,0.249988,0,0);-ms-transform:matrix(0.251702,0.002517,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.251702,0.002517,-0.002500,0.249988,0,0);}
.m10_c01226{transform:matrix(0.251732,0.002517,-0.002500,0.249988,0,0);-ms-transform:matrix(0.251732,0.002517,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.251732,0.002517,-0.002500,0.249988,0,0);}
.m4f_c01226{transform:matrix(0.251937,0.002519,-0.002500,0.249988,0,0);-ms-transform:matrix(0.251937,0.002519,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.251937,0.002519,-0.002500,0.249988,0,0);}
.m40_c01226{transform:matrix(0.253382,0.002534,-0.002500,0.249988,0,0);-ms-transform:matrix(0.253382,0.002534,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.253382,0.002534,-0.002500,0.249988,0,0);}
.m14_c01226{transform:matrix(0.253452,0.002535,-0.002500,0.249988,0,0);-ms-transform:matrix(0.253452,0.002535,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.253452,0.002535,-0.002500,0.249988,0,0);}
.md4_c01226{transform:matrix(0.254137,0.004066,-0.003999,0.249968,0,0);-ms-transform:matrix(0.254137,0.004066,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.254137,0.004066,-0.003999,0.249968,0,0);}
.mff_c01226{transform:matrix(0.254462,0.004071,-0.003999,0.249968,0,0);-ms-transform:matrix(0.254462,0.004071,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.254462,0.004071,-0.003999,0.249968,0,0);}
.m115_c01226{transform:matrix(0.254589,0.001782,-0.001750,0.249994,0,0);-ms-transform:matrix(0.254589,0.001782,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.254589,0.001782,-0.001750,0.249994,0,0);}
.m103_c01226{transform:matrix(0.254667,0.004075,-0.003999,0.249968,0,0);-ms-transform:matrix(0.254667,0.004075,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.254667,0.004075,-0.003999,0.249968,0,0);}
.m7a_c01226{transform:matrix(0.254947,0.004079,-0.003999,0.249968,0,0);-ms-transform:matrix(0.254947,0.004079,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.254947,0.004079,-0.003999,0.249968,0,0);}
.m60_c01226{transform:matrix(0.255197,0.002552,-0.002500,0.249988,0,0);-ms-transform:matrix(0.255197,0.002552,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.255197,0.002552,-0.002500,0.249988,0,0);}
.mcf_c01226{transform:matrix(0.255202,0.004083,-0.003999,0.249968,0,0);-ms-transform:matrix(0.255202,0.004083,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.255202,0.004083,-0.003999,0.249968,0,0);}
.mbf_c01226{transform:matrix(0.255492,0.004088,-0.003999,0.249968,0,0);-ms-transform:matrix(0.255492,0.004088,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.255492,0.004088,-0.003999,0.249968,0,0);}
.m52_c01226{transform:matrix(0.255652,0.002557,-0.002500,0.249988,0,0);-ms-transform:matrix(0.255652,0.002557,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.255652,0.002557,-0.002500,0.249988,0,0);}
.m11b_c01226{transform:matrix(0.255850,-0.002303,0.002250,0.249990,0,0);-ms-transform:matrix(0.255850,-0.002303,0.002250,0.249990,0,0);-webkit-transform:matrix(0.255850,-0.002303,0.002250,0.249990,0,0);}
.m72_c01226{transform:matrix(0.257162,0.004115,-0.003999,0.249968,0,0);-ms-transform:matrix(0.257162,0.004115,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.257162,0.004115,-0.003999,0.249968,0,0);}
.md5_c01226{transform:matrix(0.258197,0.004131,-0.003999,0.249968,0,0);-ms-transform:matrix(0.258197,0.004131,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.258197,0.004131,-0.003999,0.249968,0,0);}
.m0_c01226{transform:matrix(0.258525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258525,0.000000,0.000000,0.250000,0,0);}
.m35_c01226{transform:matrix(0.258682,0.002587,-0.002500,0.249988,0,0);-ms-transform:matrix(0.258682,0.002587,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.258682,0.002587,-0.002500,0.249988,0,0);}
.m68_c01226{transform:matrix(0.258712,0.004139,-0.003999,0.249968,0,0);-ms-transform:matrix(0.258712,0.004139,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.258712,0.004139,-0.003999,0.249968,0,0);}
.mcc_c01226{transform:matrix(0.259177,0.004147,-0.003999,0.249968,0,0);-ms-transform:matrix(0.259177,0.004147,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.259177,0.004147,-0.003999,0.249968,0,0);}
.m112_c01226{transform:matrix(0.259254,0.001815,-0.001750,0.249994,0,0);-ms-transform:matrix(0.259254,0.001815,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.259254,0.001815,-0.001750,0.249994,0,0);}
.meb_c01226{transform:matrix(0.259462,0.004151,-0.003999,0.249968,0,0);-ms-transform:matrix(0.259462,0.004151,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.259462,0.004151,-0.003999,0.249968,0,0);}
.m18_c01226{transform:matrix(0.259647,0.002596,-0.002500,0.249988,0,0);-ms-transform:matrix(0.259647,0.002596,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.259647,0.002596,-0.002500,0.249988,0,0);}
.mdc_c01226{transform:matrix(0.259807,0.004157,-0.003999,0.249968,0,0);-ms-transform:matrix(0.259807,0.004157,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.259807,0.004157,-0.003999,0.249968,0,0);}
.md9_c01226{transform:matrix(0.259847,0.004158,-0.003999,0.249968,0,0);-ms-transform:matrix(0.259847,0.004158,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.259847,0.004158,-0.003999,0.249968,0,0);}
.m101_c01226{transform:matrix(0.260322,0.004165,-0.003999,0.249968,0,0);-ms-transform:matrix(0.260322,0.004165,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.260322,0.004165,-0.003999,0.249968,0,0);}
.m67_c01226{transform:matrix(0.260487,0.004168,-0.003999,0.249968,0,0);-ms-transform:matrix(0.260487,0.004168,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.260487,0.004168,-0.003999,0.249968,0,0);}
.m86_c01226{transform:matrix(0.261007,0.004176,-0.003999,0.249968,0,0);-ms-transform:matrix(0.261007,0.004176,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.261007,0.004176,-0.003999,0.249968,0,0);}
.m122_c01226{transform:matrix(0.261195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261195,0.000000,0.000000,0.250000,0,0);}
.mcb_c01226{transform:matrix(0.261602,0.004186,-0.003999,0.249968,0,0);-ms-transform:matrix(0.261602,0.004186,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.261602,0.004186,-0.003999,0.249968,0,0);}
.m11f_c01226{transform:matrix(0.261625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261625,0.000000,0.000000,0.250000,0,0);}
.m57_c01226{transform:matrix(0.261917,0.002619,-0.002500,0.249988,0,0);-ms-transform:matrix(0.261917,0.002619,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.261917,0.002619,-0.002500,0.249988,0,0);}
.mdb_c01226{transform:matrix(0.262171,0.004195,-0.003999,0.249968,0,0);-ms-transform:matrix(0.262171,0.004195,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.262171,0.004195,-0.003999,0.249968,0,0);}
.m7_c01226{transform:matrix(0.262534,0.003675,-0.003500,0.249976,0,0);-ms-transform:matrix(0.262534,0.003675,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.262534,0.003675,-0.003500,0.249976,0,0);}
.m3d_c01226{transform:matrix(0.262562,0.002626,-0.002500,0.249988,0,0);-ms-transform:matrix(0.262562,0.002626,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.262562,0.002626,-0.002500,0.249988,0,0);}
.m66_c01226{transform:matrix(0.262616,0.004202,-0.003999,0.249968,0,0);-ms-transform:matrix(0.262616,0.004202,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.262616,0.004202,-0.003999,0.249968,0,0);}
.m92_c01226{transform:matrix(0.262686,0.004203,-0.003999,0.249968,0,0);-ms-transform:matrix(0.262686,0.004203,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.262686,0.004203,-0.003999,0.249968,0,0);}
.m3b_c01226{transform:matrix(0.262892,0.002629,-0.002500,0.249988,0,0);-ms-transform:matrix(0.262892,0.002629,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.262892,0.002629,-0.002500,0.249988,0,0);}
.me4_c01226{transform:matrix(0.263306,0.004213,-0.003999,0.249968,0,0);-ms-transform:matrix(0.263306,0.004213,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.263306,0.004213,-0.003999,0.249968,0,0);}
.md1_c01226{transform:matrix(0.263491,0.004216,-0.003999,0.249968,0,0);-ms-transform:matrix(0.263491,0.004216,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.263491,0.004216,-0.003999,0.249968,0,0);}
.m32_c01226{transform:matrix(0.263992,0.002640,-0.002500,0.249988,0,0);-ms-transform:matrix(0.263992,0.002640,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.263992,0.002640,-0.002500,0.249988,0,0);}
.ma9_c01226{transform:matrix(0.264486,0.004232,-0.003999,0.249968,0,0);-ms-transform:matrix(0.264486,0.004232,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.264486,0.004232,-0.003999,0.249968,0,0);}
.me7_c01226{transform:matrix(0.264511,0.004232,-0.003999,0.249968,0,0);-ms-transform:matrix(0.264511,0.004232,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.264511,0.004232,-0.003999,0.249968,0,0);}
.mc6_c01226{transform:matrix(0.264756,0.004236,-0.003999,0.249968,0,0);-ms-transform:matrix(0.264756,0.004236,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.264756,0.004236,-0.003999,0.249968,0,0);}
.me9_c01226{transform:matrix(0.264911,0.004239,-0.003999,0.249968,0,0);-ms-transform:matrix(0.264911,0.004239,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.264911,0.004239,-0.003999,0.249968,0,0);}
.m6_c01226{transform:matrix(0.265079,0.003711,-0.003500,0.249976,0,0);-ms-transform:matrix(0.265079,0.003711,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.265079,0.003711,-0.003500,0.249976,0,0);}
.me5_c01226{transform:matrix(0.265131,0.004242,-0.003999,0.249968,0,0);-ms-transform:matrix(0.265131,0.004242,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.265131,0.004242,-0.003999,0.249968,0,0);}
.m84_c01226{transform:matrix(0.265241,0.004244,-0.003999,0.249968,0,0);-ms-transform:matrix(0.265241,0.004244,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.265241,0.004244,-0.003999,0.249968,0,0);}
.m94_c01226{transform:matrix(0.265826,0.004253,-0.003999,0.249968,0,0);-ms-transform:matrix(0.265826,0.004253,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.265826,0.004253,-0.003999,0.249968,0,0);}
.m4e_c01226{transform:matrix(0.266582,0.002666,-0.002500,0.249988,0,0);-ms-transform:matrix(0.266582,0.002666,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.266582,0.002666,-0.002500,0.249988,0,0);}
.m1a_c01226{transform:matrix(0.266682,0.002667,-0.002500,0.249988,0,0);-ms-transform:matrix(0.266682,0.002667,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.266682,0.002667,-0.002500,0.249988,0,0);}
.m9_c01226{transform:matrix(0.267274,0.003742,-0.003500,0.249976,0,0);-ms-transform:matrix(0.267274,0.003742,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.267274,0.003742,-0.003500,0.249976,0,0);}
.m81_c01226{transform:matrix(0.267886,0.004286,-0.003999,0.249968,0,0);-ms-transform:matrix(0.267886,0.004286,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.267886,0.004286,-0.003999,0.249968,0,0);}
.m46_c01226{transform:matrix(0.268687,0.002687,-0.002500,0.249988,0,0);-ms-transform:matrix(0.268687,0.002687,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.268687,0.002687,-0.002500,0.249988,0,0);}
.mde_c01226{transform:matrix(0.268876,0.004302,-0.003999,0.249968,0,0);-ms-transform:matrix(0.268876,0.004302,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.268876,0.004302,-0.003999,0.249968,0,0);}
.mc_c01226{transform:matrix(0.269189,0.003769,-0.003500,0.249976,0,0);-ms-transform:matrix(0.269189,0.003769,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.269189,0.003769,-0.003500,0.249976,0,0);}
.mc8_c01226{transform:matrix(0.269361,0.004310,-0.003999,0.249968,0,0);-ms-transform:matrix(0.269361,0.004310,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.269361,0.004310,-0.003999,0.249968,0,0);}
.md2_c01226{transform:matrix(0.269630,0.004314,-0.003999,0.249968,0,0);-ms-transform:matrix(0.269630,0.004314,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.269630,0.004314,-0.003999,0.249968,0,0);}
.m13f_c01226{transform:matrix(0.269735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269735,0.000000,0.000000,0.250000,0,0);}
.m6b_c01226{transform:matrix(0.269900,0.004318,-0.003999,0.249968,0,0);-ms-transform:matrix(0.269900,0.004318,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.269900,0.004318,-0.003999,0.249968,0,0);}
.m91_c01226{transform:matrix(0.271910,0.004351,-0.003999,0.249968,0,0);-ms-transform:matrix(0.271910,0.004351,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.271910,0.004351,-0.003999,0.249968,0,0);}
.m1_c01226{transform:matrix(0.272250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272250,0.000000,0.000000,0.250000,0,0);}
.md0_c01226{transform:matrix(0.272485,0.004360,-0.003999,0.249968,0,0);-ms-transform:matrix(0.272485,0.004360,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.272485,0.004360,-0.003999,0.249968,0,0);}
.md7_c01226{transform:matrix(0.272650,0.004362,-0.003999,0.249968,0,0);-ms-transform:matrix(0.272650,0.004362,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.272650,0.004362,-0.003999,0.249968,0,0);}
.mac_c01226{transform:matrix(0.272685,0.004363,-0.003999,0.249968,0,0);-ms-transform:matrix(0.272685,0.004363,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.272685,0.004363,-0.003999,0.249968,0,0);}
.me3_c01226{transform:matrix(0.273080,0.004369,-0.003999,0.249968,0,0);-ms-transform:matrix(0.273080,0.004369,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.273080,0.004369,-0.003999,0.249968,0,0);}
.m30_c01226{transform:matrix(0.273756,0.002738,-0.002500,0.249988,0,0);-ms-transform:matrix(0.273756,0.002738,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.273756,0.002738,-0.002500,0.249988,0,0);}
.m49_c01226{transform:matrix(0.274306,0.002743,-0.002500,0.249988,0,0);-ms-transform:matrix(0.274306,0.002743,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.274306,0.002743,-0.002500,0.249988,0,0);}
.m33_c01226{transform:matrix(0.274551,0.002746,-0.002500,0.249988,0,0);-ms-transform:matrix(0.274551,0.002746,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.274551,0.002746,-0.002500,0.249988,0,0);}
.m64_c01226{transform:matrix(0.275421,0.002754,-0.002500,0.249988,0,0);-ms-transform:matrix(0.275421,0.002754,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.275421,0.002754,-0.002500,0.249988,0,0);}
.mdf_c01226{transform:matrix(0.276000,0.004416,-0.003999,0.249968,0,0);-ms-transform:matrix(0.276000,0.004416,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.276000,0.004416,-0.003999,0.249968,0,0);}
.m42_c01226{transform:matrix(0.277401,0.002774,-0.002500,0.249988,0,0);-ms-transform:matrix(0.277401,0.002774,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.277401,0.002774,-0.002500,0.249988,0,0);}
.m6c_c01226{transform:matrix(0.277469,0.004440,-0.003999,0.249968,0,0);-ms-transform:matrix(0.277469,0.004440,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.277469,0.004440,-0.003999,0.249968,0,0);}
.m61_c01226{transform:matrix(0.277711,0.002777,-0.002500,0.249988,0,0);-ms-transform:matrix(0.277711,0.002777,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.277711,0.002777,-0.002500,0.249988,0,0);}
.maa_c01226{transform:matrix(0.278304,0.004453,-0.003999,0.249968,0,0);-ms-transform:matrix(0.278304,0.004453,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.278304,0.004453,-0.003999,0.249968,0,0);}
.m70_c01226{transform:matrix(0.280439,0.004487,-0.003999,0.249968,0,0);-ms-transform:matrix(0.280439,0.004487,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.280439,0.004487,-0.003999,0.249968,0,0);}
.m55_c01226{transform:matrix(0.281026,0.002810,-0.002500,0.249988,0,0);-ms-transform:matrix(0.281026,0.002810,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.281026,0.002810,-0.002500,0.249988,0,0);}
.ma8_c01226{transform:matrix(0.281194,0.004499,-0.003999,0.249968,0,0);-ms-transform:matrix(0.281194,0.004499,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.281194,0.004499,-0.003999,0.249968,0,0);}
.m141_c01226{transform:matrix(0.282205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282205,0.000000,0.000000,0.250000,0,0);}
.mb_c01226{transform:matrix(0.282207,0.003951,-0.003500,0.249976,0,0);-ms-transform:matrix(0.282207,0.003951,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.282207,0.003951,-0.003500,0.249976,0,0);}
.m157_c01226{transform:matrix(0.283188,0.001982,-0.001750,0.249994,0,0);-ms-transform:matrix(0.283188,0.001982,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.283188,0.001982,-0.001750,0.249994,0,0);}
.me6_c01226{transform:matrix(0.283874,0.004542,-0.003999,0.249968,0,0);-ms-transform:matrix(0.283874,0.004542,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.283874,0.004542,-0.003999,0.249968,0,0);}
.m37_c01226{transform:matrix(0.283956,0.002840,-0.002500,0.249988,0,0);-ms-transform:matrix(0.283956,0.002840,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.283956,0.002840,-0.002500,0.249988,0,0);}
.m6d_c01226{transform:matrix(0.284309,0.004549,-0.003999,0.249968,0,0);-ms-transform:matrix(0.284309,0.004549,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.284309,0.004549,-0.003999,0.249968,0,0);}
.m79_c01226{transform:matrix(0.284759,0.004556,-0.003999,0.249968,0,0);-ms-transform:matrix(0.284759,0.004556,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.284759,0.004556,-0.003999,0.249968,0,0);}
.m74_c01226{transform:matrix(0.286123,0.004578,-0.003999,0.249968,0,0);-ms-transform:matrix(0.286123,0.004578,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.286123,0.004578,-0.003999,0.249968,0,0);}
.mcd_c01226{transform:matrix(0.286663,0.004587,-0.003999,0.249968,0,0);-ms-transform:matrix(0.286663,0.004587,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.286663,0.004587,-0.003999,0.249968,0,0);}
.m142_c01226{transform:matrix(0.287890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287890,0.000000,0.000000,0.250000,0,0);}
.m6f_c01226{transform:matrix(0.288228,0.004612,-0.003999,0.249968,0,0);-ms-transform:matrix(0.288228,0.004612,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.288228,0.004612,-0.003999,0.249968,0,0);}
.m69_c01226{transform:matrix(0.289708,0.004635,-0.003999,0.249968,0,0);-ms-transform:matrix(0.289708,0.004635,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.289708,0.004635,-0.003999,0.249968,0,0);}
.ma7_c01226{transform:matrix(0.289753,0.004636,-0.003999,0.249968,0,0);-ms-transform:matrix(0.289753,0.004636,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.289753,0.004636,-0.003999,0.249968,0,0);}
.mad_c01226{transform:matrix(0.290833,0.004653,-0.003999,0.249968,0,0);-ms-transform:matrix(0.290833,0.004653,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.290833,0.004653,-0.003999,0.249968,0,0);}
.m71_c01226{transform:matrix(0.290853,0.004654,-0.003999,0.249968,0,0);-ms-transform:matrix(0.290853,0.004654,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.290853,0.004654,-0.003999,0.249968,0,0);}
.m78_c01226{transform:matrix(0.290918,0.004655,-0.003999,0.249968,0,0);-ms-transform:matrix(0.290918,0.004655,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.290918,0.004655,-0.003999,0.249968,0,0);}
.m5a_c01226{transform:matrix(0.292630,0.002926,-0.002500,0.249988,0,0);-ms-transform:matrix(0.292630,0.002926,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.292630,0.002926,-0.002500,0.249988,0,0);}
.ma6_c01226{transform:matrix(0.292708,0.004683,-0.003999,0.249968,0,0);-ms-transform:matrix(0.292708,0.004683,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.292708,0.004683,-0.003999,0.249968,0,0);}
.m13d_c01226{transform:matrix(0.293265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293265,0.000000,0.000000,0.250000,0,0);}
.ma4_c01226{transform:matrix(0.293612,0.004698,-0.003999,0.249968,0,0);-ms-transform:matrix(0.293612,0.004698,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.293612,0.004698,-0.003999,0.249968,0,0);}
.m54_c01226{transform:matrix(0.294640,0.002946,-0.002500,0.249988,0,0);-ms-transform:matrix(0.294640,0.002946,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.294640,0.002946,-0.002500,0.249988,0,0);}
.m59_c01226{transform:matrix(0.295645,0.002956,-0.002500,0.249988,0,0);-ms-transform:matrix(0.295645,0.002956,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.295645,0.002956,-0.002500,0.249988,0,0);}
.m145_c01226{transform:matrix(0.295820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295820,0.000000,0.000000,0.250000,0,0);}
.m6e_c01226{transform:matrix(0.296207,0.004739,-0.003999,0.249968,0,0);-ms-transform:matrix(0.296207,0.004739,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.296207,0.004739,-0.003999,0.249968,0,0);}
.m144_c01226{transform:matrix(0.296210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296210,0.000000,0.000000,0.250000,0,0);}
.m53_c01226{transform:matrix(0.297585,0.002976,-0.002500,0.249988,0,0);-ms-transform:matrix(0.297585,0.002976,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.297585,0.002976,-0.002500,0.249988,0,0);}
.m58_c01226{transform:matrix(0.298060,0.002981,-0.002500,0.249988,0,0);-ms-transform:matrix(0.298060,0.002981,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.298060,0.002981,-0.002500,0.249988,0,0);}
.m56_c01226{transform:matrix(0.298470,0.002985,-0.002500,0.249988,0,0);-ms-transform:matrix(0.298470,0.002985,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.298470,0.002985,-0.002500,0.249988,0,0);}
.m14d_c01226{transform:matrix(0.298868,0.002092,-0.001750,0.249994,0,0);-ms-transform:matrix(0.298868,0.002092,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.298868,0.002092,-0.001750,0.249994,0,0);}
.m75_c01226{transform:matrix(0.299542,0.004793,-0.003999,0.249968,0,0);-ms-transform:matrix(0.299542,0.004793,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.299542,0.004793,-0.003999,0.249968,0,0);}
.m11d_c01226{transform:matrix(0.300433,-0.002704,0.002250,0.249990,0,0);-ms-transform:matrix(0.300433,-0.002704,0.002250,0.249990,0,0);-webkit-transform:matrix(0.300433,-0.002704,0.002250,0.249990,0,0);}
.m85_c01226{transform:matrix(0.301231,0.004820,-0.003999,0.249968,0,0);-ms-transform:matrix(0.301231,0.004820,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.301231,0.004820,-0.003999,0.249968,0,0);}
.m76_c01226{transform:matrix(0.302486,0.004840,-0.003999,0.249968,0,0);-ms-transform:matrix(0.302486,0.004840,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.302486,0.004840,-0.003999,0.249968,0,0);}
.m39_c01226{transform:matrix(0.303300,0.003033,-0.002500,0.249988,0,0);-ms-transform:matrix(0.303300,0.003033,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.303300,0.003033,-0.002500,0.249988,0,0);}
.mab_c01226{transform:matrix(0.303496,0.004856,-0.003999,0.249968,0,0);-ms-transform:matrix(0.303496,0.004856,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.303496,0.004856,-0.003999,0.249968,0,0);}
.mae_c01226{transform:matrix(0.306051,0.004897,-0.003999,0.249968,0,0);-ms-transform:matrix(0.306051,0.004897,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.306051,0.004897,-0.003999,0.249968,0,0);}
.m13c_c01226{transform:matrix(0.306530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306530,0.000000,0.000000,0.250000,0,0);}
.m13b_c01226{transform:matrix(0.307655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307655,0.000000,0.000000,0.250000,0,0);}
.m90_c01226{transform:matrix(0.310585,0.004969,-0.003999,0.249968,0,0);-ms-transform:matrix(0.310585,0.004969,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.310585,0.004969,-0.003999,0.249968,0,0);}
.m8f_c01226{transform:matrix(0.312860,0.005006,-0.003999,0.249968,0,0);-ms-transform:matrix(0.312860,0.005006,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.312860,0.005006,-0.003999,0.249968,0,0);}
.m14e_c01226{transform:matrix(0.313202,0.002192,-0.001750,0.249994,0,0);-ms-transform:matrix(0.313202,0.002192,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.313202,0.002192,-0.001750,0.249994,0,0);}
.m143_c01226{transform:matrix(0.319215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319215,0.000000,0.000000,0.250000,0,0);}
.m111_c01226{transform:matrix(0.319785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319785,0.000000,0.000000,0.250000,0,0);}
.m50_c01226{transform:matrix(0.328094,0.003281,-0.002500,0.249988,0,0);-ms-transform:matrix(0.328094,0.003281,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.328094,0.003281,-0.002500,0.249988,0,0);}
.m3_c01226{transform:matrix(0.328875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328875,0.000000,0.000000,0.250000,0,0);}
.m14a_c01226{transform:matrix(0.328932,0.002303,-0.001750,0.249994,0,0);-ms-transform:matrix(0.328932,0.002303,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.328932,0.002303,-0.001750,0.249994,0,0);}
.m13e_c01226{transform:matrix(0.329810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329810,0.000000,0.000000,0.250000,0,0);}
.m96_c01226{transform:matrix(0.333497,0.005336,-0.003999,0.249968,0,0);-ms-transform:matrix(0.333497,0.005336,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.333497,0.005336,-0.003999,0.249968,0,0);}
.m147_c01226{transform:matrix(0.335252,0.002347,-0.001750,0.249994,0,0);-ms-transform:matrix(0.335252,0.002347,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.335252,0.002347,-0.001750,0.249994,0,0);}
.m82_c01226{transform:matrix(0.344341,0.005509,-0.003999,0.249968,0,0);-ms-transform:matrix(0.344341,0.005509,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.344341,0.005509,-0.003999,0.249968,0,0);}
.m7c_c01226{transform:matrix(0.361274,0.005780,-0.003999,0.249968,0,0);-ms-transform:matrix(0.361274,0.005780,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.361274,0.005780,-0.003999,0.249968,0,0);}
.m8e_c01226{transform:matrix(0.361649,0.005786,-0.003999,0.249968,0,0);-ms-transform:matrix(0.361649,0.005786,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.361649,0.005786,-0.003999,0.249968,0,0);}
.m146_c01226{transform:matrix(0.372146,0.002605,-0.001750,0.249994,0,0);-ms-transform:matrix(0.372146,0.002605,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.372146,0.002605,-0.001750,0.249994,0,0);}
.m140_c01226{transform:matrix(0.389135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389135,0.000000,0.000000,0.250000,0,0);}
.me2_c01226{transform:matrix(0.417957,0.006687,-0.003999,0.249968,0,0);-ms-transform:matrix(0.417957,0.006687,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.417957,0.006687,-0.003999,0.249968,0,0);}
.m137_c01226{transform:matrix(0.432140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432140,0.000000,0.000000,0.250000,0,0);}
.m7b_c01226{transform:matrix(0.441483,0.007064,-0.003999,0.249968,0,0);-ms-transform:matrix(0.441483,0.007064,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.441483,0.007064,-0.003999,0.249968,0,0);}
.m155_c01226{transform:matrix(0.462699,0.003239,-0.001750,0.249994,0,0);-ms-transform:matrix(0.462699,0.003239,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.462699,0.003239,-0.001750,0.249994,0,0);}
.m139_c01226{transform:matrix(0.506250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506250,0.000000,0.000000,0.250000,0,0);}
.m149_c01226{transform:matrix(0.517867,0.003625,-0.001750,0.249994,0,0);-ms-transform:matrix(0.517867,0.003625,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.517867,0.003625,-0.001750,0.249994,0,0);}
.m12c_c01226{transform:matrix(0.529645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.529645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.529645,0.000000,0.000000,0.250000,0,0);}
.m10e_c01226{transform:matrix(0.562500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.562500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.562500,0.000000,0.000000,0.250000,0,0);}
.m10b_c01226{transform:matrix(0.576280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.576280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.576280,0.000000,0.000000,0.250000,0,0);}
.m10c_c01226{transform:matrix(0.657950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.657950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.657950,0.000000,0.000000,0.250000,0,0);}
.m10f_c01226{transform:matrix(0.692710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.692710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.692710,0.000000,0.000000,0.250000,0,0);}
.m154_c01226{transform:matrix(0.703063,0.004921,-0.001750,0.249994,0,0);-ms-transform:matrix(0.703063,0.004921,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.703063,0.004921,-0.001750,0.249994,0,0);}
.m151_c01226{transform:matrix(0.723877,0.005067,-0.001750,0.249994,0,0);-ms-transform:matrix(0.723877,0.005067,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.723877,0.005067,-0.001750,0.249994,0,0);}
.m110_c01226{transform:matrix(0.761350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.761350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.761350,0.000000,0.000000,0.250000,0,0);}
.m11e_c01226{transform:matrix(0.814272,-0.007328,0.002250,0.249990,0,0);-ms-transform:matrix(0.814272,-0.007328,0.002250,0.249990,0,0);-webkit-transform:matrix(0.814272,-0.007328,0.002250,0.249990,0,0);}
.m10d_c01226{transform:matrix(0.837350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.837350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.837350,0.000000,0.000000,0.250000,0,0);}
.m148_c01226{transform:matrix(0.924152,0.006469,-0.001750,0.249994,0,0);-ms-transform:matrix(0.924152,0.006469,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.924152,0.006469,-0.001750,0.249994,0,0);}
.m14f_c01226{transform:matrix(1.085063,0.007595,-0.001750,0.249994,0,0);-ms-transform:matrix(1.085063,0.007595,-0.001750,0.249994,0,0);-webkit-transform:matrix(1.085063,0.007595,-0.001750,0.249994,0,0);}
.m14c_c01226{transform:matrix(1.212610,0.008488,-0.001750,0.249994,0,0);-ms-transform:matrix(1.212610,0.008488,-0.001750,0.249994,0,0);-webkit-transform:matrix(1.212610,0.008488,-0.001750,0.249994,0,0);}
.m13a_c01226{transform:matrix(1.229780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.229780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.229780,0.000000,0.000000,0.250000,0,0);}
.m153_c01226{transform:matrix(1.311933,0.009184,-0.001750,0.249994,0,0);-ms-transform:matrix(1.311933,0.009184,-0.001750,0.249994,0,0);-webkit-transform:matrix(1.311933,0.009184,-0.001750,0.249994,0,0);}
.m10a_c01226{transform:matrix(2.092704,0.014649,-0.001750,0.249994,0,0);-ms-transform:matrix(2.092704,0.014649,-0.001750,0.249994,0,0);-webkit-transform:matrix(2.092704,0.014649,-0.001750,0.249994,0,0);}
.m152_c01226{transform:matrix(2.451555,0.017161,-0.001750,0.249994,0,0);-ms-transform:matrix(2.451555,0.017161,-0.001750,0.249994,0,0);-webkit-transform:matrix(2.451555,0.017161,-0.001750,0.249994,0,0);}
.v0_c01226{vertical-align:0.000000px;}
.ls0_c01226{letter-spacing:0.000000px;}
.sc__c01226{text-shadow:none;}
.sc0_c01226{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__c01226{-webkit-text-stroke:0px transparent;}
.sc0_c01226{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01226{word-spacing:0.000000px;}
.fc0_c01226{color:transparent;}
.fsd_c01226{font-size:12.000000px;}
.fs14_c01226{font-size:18.000441px;}
.fs12_c01226{font-size:48.000000px;}
.fs13_c01226{font-size:60.000000px;}
.fs6_c01226{font-size:66.003300px;}
.fs7_c01226{font-size:66.008447px;}
.fs0_c01226{font-size:72.000000px;}
.fsf_c01226{font-size:72.002916px;}
.fs5_c01226{font-size:72.003600px;}
.fs1_c01226{font-size:72.007056px;}
.fs8_c01226{font-size:72.009215px;}
.fse_c01226{font-size:78.001911px;}
.fs2_c01226{font-size:78.003900px;}
.fsa_c01226{font-size:78.009983px;}
.fs10_c01226{font-size:84.000000px;}
.fs3_c01226{font-size:84.004200px;}
.fs9_c01226{font-size:84.010751px;}
.fsc_c01226{font-size:90.002205px;}
.fsb_c01226{font-size:90.011519px;}
.fs4_c01226{font-size:102.005100px;}
.fs11_c01226{font-size:120.000000px;}
.y151_c01226{bottom:-0.000483px;}
.y14f_c01226{bottom:-0.000423px;}
.y150_c01226{bottom:-0.000393px;}
.y14e_c01226{bottom:-0.000213px;}
.y0_c01226{bottom:0.000000px;}
.y149_c01226{bottom:0.087115px;}
.y148_c01226{bottom:0.153255px;}
.y147_c01226{bottom:0.276273px;}
.y146_c01226{bottom:0.482136px;}
.y145_c01226{bottom:0.661770px;}
.y144_c01226{bottom:0.746809px;}
.y143_c01226{bottom:0.903732px;}
.y14a_c01226{bottom:1.314240px;}
.y14b_c01226{bottom:1.314780px;}
.y14d_c01226{bottom:1.314981px;}
.y14c_c01226{bottom:1.315211px;}
.y142_c01226{bottom:1.330977px;}
.y141_c01226{bottom:1.599420px;}
.y140_c01226{bottom:3.510000px;}
.y13f_c01226{bottom:77.347500px;}
.y13e_c01226{bottom:78.012000px;}
.y13d_c01226{bottom:78.819000px;}
.y13c_c01226{bottom:79.210500px;}
.y13b_c01226{bottom:79.590000px;}
.y13a_c01226{bottom:80.137500px;}
.y139_c01226{bottom:80.640000px;}
.y138_c01226{bottom:81.595500px;}
.y137_c01226{bottom:82.240500px;}
.y136_c01226{bottom:82.506000px;}
.y135_c01226{bottom:82.891500px;}
.y134_c01226{bottom:109.903500px;}
.y133_c01226{bottom:131.847000px;}
.y132_c01226{bottom:133.668000px;}
.y131_c01226{bottom:134.166000px;}
.y130_c01226{bottom:135.000000px;}
.y12f_c01226{bottom:135.246000px;}
.y12e_c01226{bottom:135.735000px;}
.y12d_c01226{bottom:136.099500px;}
.y12c_c01226{bottom:136.578000px;}
.y12b_c01226{bottom:136.956000px;}
.y12a_c01226{bottom:138.016500px;}
.y129_c01226{bottom:138.511500px;}
.y128_c01226{bottom:167.142000px;}
.y127_c01226{bottom:167.674500px;}
.y126_c01226{bottom:167.818500px;}
.y125_c01226{bottom:168.151500px;}
.y124_c01226{bottom:168.523500px;}
.y123_c01226{bottom:168.691500px;}
.y122_c01226{bottom:169.296000px;}
.y121_c01226{bottom:169.536000px;}
.y120_c01226{bottom:170.001000px;}
.y11f_c01226{bottom:170.229000px;}
.y11e_c01226{bottom:170.673000px;}
.y11d_c01226{bottom:171.067500px;}
.y11c_c01226{bottom:171.450000px;}
.y11b_c01226{bottom:196.560000px;}
.y116_c01226{bottom:206.281500px;}
.y117_c01226{bottom:206.757915px;}
.y118_c01226{bottom:207.345975px;}
.y119_c01226{bottom:207.642354px;}
.y11a_c01226{bottom:208.645337px;}
.y115_c01226{bottom:239.827599px;}
.y114_c01226{bottom:240.071598px;}
.y113_c01226{bottom:240.617892px;}
.y112_c01226{bottom:240.842687px;}
.y111_c01226{bottom:241.387196px;}
.y110_c01226{bottom:241.990347px;}
.y10f_c01226{bottom:242.536400px;}
.y10e_c01226{bottom:243.540000px;}
.y10d_c01226{bottom:274.393500px;}
.y10c_c01226{bottom:278.067047px;}
.y10b_c01226{bottom:278.985985px;}
.y10a_c01226{bottom:279.615650px;}
.y109_c01226{bottom:279.912096px;}
.y108_c01226{bottom:280.068809px;}
.y107_c01226{bottom:280.218087px;}
.y106_c01226{bottom:280.530000px;}
.y105_c01226{bottom:307.091616px;}
.y104_c01226{bottom:307.312428px;}
.y103_c01226{bottom:308.531064px;}
.y102_c01226{bottom:309.187488px;}
.y101_c01226{bottom:310.183428px;}
.y100_c01226{bottom:310.515600px;}
.yff_c01226{bottom:310.844136px;}
.yfe_c01226{bottom:311.276004px;}
.yfd_c01226{bottom:312.052188px;}
.yfc_c01226{bottom:312.275832px;}
.yfb_c01226{bottom:313.144992px;}
.yfa_c01226{bottom:342.192216px;}
.yf9_c01226{bottom:343.041948px;}
.yf8_c01226{bottom:343.415844px;}
.yf7_c01226{bottom:343.899648px;}
.yf6_c01226{bottom:344.264604px;}
.yf5_c01226{bottom:344.629416px;}
.yf4_c01226{bottom:345.704280px;}
.yf3_c01226{bottom:346.679868px;}
.yf2_c01226{bottom:346.800096px;}
.yf1_c01226{bottom:347.415984px;}
.yf0_c01226{bottom:348.258912px;}
.yef_c01226{bottom:348.739032px;}
.yee_c01226{bottom:349.327704px;}
.yed_c01226{bottom:377.446320px;}
.yec_c01226{bottom:377.883348px;}
.yeb_c01226{bottom:378.763884px;}
.yea_c01226{bottom:378.998796px;}
.ye9_c01226{bottom:379.763004px;}
.ye8_c01226{bottom:380.989344px;}
.ye7_c01226{bottom:381.428760px;}
.ye6_c01226{bottom:382.192908px;}
.ye5_c01226{bottom:382.622820px;}
.ye4_c01226{bottom:383.816448px;}
.ye3_c01226{bottom:384.161280px;}
.ye2_c01226{bottom:414.596160px;}
.ye1_c01226{bottom:415.402668px;}
.ye0_c01226{bottom:415.942836px;}
.ydf_c01226{bottom:416.112684px;}
.yde_c01226{bottom:416.644812px;}
.ydd_c01226{bottom:417.161220px;}
.ydc_c01226{bottom:417.356184px;}
.ydb_c01226{bottom:417.799812px;}
.yda_c01226{bottom:418.050048px;}
.yd9_c01226{bottom:419.014296px;}
.yd8_c01226{bottom:419.379732px;}
.yd7_c01226{bottom:419.807544px;}
.yd6_c01226{bottom:448.833012px;}
.yd5_c01226{bottom:449.052504px;}
.yd4_c01226{bottom:449.619996px;}
.yd3_c01226{bottom:450.052416px;}
.yd2_c01226{bottom:450.949128px;}
.yd1_c01226{bottom:451.389144px;}
.yd0_c01226{bottom:451.810704px;}
.ycf_c01226{bottom:452.717184px;}
.yce_c01226{bottom:453.372360px;}
.ycd_c01226{bottom:454.023624px;}
.ycc_c01226{bottom:454.358400px;}
.ycb_c01226{bottom:454.687272px;}
.yca_c01226{bottom:455.453436px;}
.yc9_c01226{bottom:486.337704px;}
.yc8_c01226{bottom:487.502196px;}
.yc7_c01226{bottom:488.017428px;}
.yc6_c01226{bottom:488.294700px;}
.yc5_c01226{bottom:488.648892px;}
.yc4_c01226{bottom:488.918916px;}
.yc3_c01226{bottom:489.177912px;}
.yc2_c01226{bottom:489.528420px;}
.yc1_c01226{bottom:490.488336px;}
.yc0_c01226{bottom:490.672032px;}
.ybf_c01226{bottom:491.097288px;}
.ybe_c01226{bottom:519.192708px;}
.ybd_c01226{bottom:519.824940px;}
.ybc_c01226{bottom:520.905828px;}
.ybb_c01226{bottom:521.634156px;}
.yba_c01226{bottom:521.995740px;}
.yb9_c01226{bottom:522.619320px;}
.yb8_c01226{bottom:522.856896px;}
.yb7_c01226{bottom:523.214784px;}
.yb6_c01226{bottom:523.719252px;}
.yb5_c01226{bottom:524.321784px;}
.yb4_c01226{bottom:524.680956px;}
.yb3_c01226{bottom:525.768552px;}
.yb2_c01226{bottom:526.127580px;}
.yb1_c01226{bottom:526.472532px;}
.yb0_c01226{bottom:557.918436px;}
.yaf_c01226{bottom:558.605616px;}
.yae_c01226{bottom:559.008996px;}
.yad_c01226{bottom:559.398972px;}
.yac_c01226{bottom:559.901868px;}
.yab_c01226{bottom:560.095440px;}
.yaa_c01226{bottom:560.778936px;}
.ya9_c01226{bottom:561.389352px;}
.ya8_c01226{bottom:562.085016px;}
.ya7_c01226{bottom:562.680012px;}
.ya6_c01226{bottom:563.467404px;}
.ya5_c01226{bottom:594.463248px;}
.ya4_c01226{bottom:594.799152px;}
.ya3_c01226{bottom:594.994920px;}
.ya2_c01226{bottom:595.255512px;}
.ya1_c01226{bottom:595.518540px;}
.ya0_c01226{bottom:595.922700px;}
.y9f_c01226{bottom:596.316624px;}
.y9e_c01226{bottom:596.786472px;}
.y9d_c01226{bottom:596.983584px;}
.y9c_c01226{bottom:597.441108px;}
.y9b_c01226{bottom:597.839592px;}
.y9a_c01226{bottom:598.033800px;}
.y99_c01226{bottom:598.302084px;}
.y98_c01226{bottom:625.862568px;}
.y97_c01226{bottom:626.269836px;}
.y96_c01226{bottom:627.316104px;}
.y95_c01226{bottom:627.604560px;}
.y94_c01226{bottom:628.516008px;}
.y93_c01226{bottom:629.702604px;}
.y92_c01226{bottom:630.639252px;}
.y91_c01226{bottom:631.032216px;}
.y90_c01226{bottom:632.350620px;}
.y8f_c01226{bottom:632.762712px;}
.y8e_c01226{bottom:633.147072px;}
.y8d_c01226{bottom:633.678960px;}
.y8c_c01226{bottom:664.190520px;}
.y8b_c01226{bottom:664.399944px;}
.y8a_c01226{bottom:664.520772px;}
.y89_c01226{bottom:664.791528px;}
.y88_c01226{bottom:665.197776px;}
.y87_c01226{bottom:665.591988px;}
.y86_c01226{bottom:665.994036px;}
.y85_c01226{bottom:666.185844px;}
.y84_c01226{bottom:666.461820px;}
.y83_c01226{bottom:666.919344px;}
.y82_c01226{bottom:667.121916px;}
.y81_c01226{bottom:667.251204px;}
.y80_c01226{bottom:667.706316px;}
.y7f_c01226{bottom:667.973520px;}
.y7e_c01226{bottom:698.910540px;}
.y7d_c01226{bottom:699.178680px;}
.y7c_c01226{bottom:699.381132px;}
.y7b_c01226{bottom:699.714648px;}
.y7a_c01226{bottom:700.176444px;}
.y79_c01226{bottom:700.378872px;}
.y78_c01226{bottom:700.975272px;}
.y77_c01226{bottom:701.366496px;}
.y76_c01226{bottom:701.704728px;}
.y75_c01226{bottom:701.900160px;}
.y74_c01226{bottom:702.222864px;}
.y73_c01226{bottom:702.692856px;}
.y72_c01226{bottom:703.076076px;}
.y71_c01226{bottom:731.967792px;}
.y70_c01226{bottom:733.380744px;}
.y6f_c01226{bottom:734.429952px;}
.y6e_c01226{bottom:735.527640px;}
.y6d_c01226{bottom:736.564728px;}
.y6c_c01226{bottom:737.100336px;}
.y6b_c01226{bottom:738.348936px;}
.y6a_c01226{bottom:738.863496px;}
.y69_c01226{bottom:739.403352px;}
.y68_c01226{bottom:739.736232px;}
.y67_c01226{bottom:740.073000px;}
.y66_c01226{bottom:770.465835px;}
.y65_c01226{bottom:770.731170px;}
.y64_c01226{bottom:770.912850px;}
.y63_c01226{bottom:771.885180px;}
.y62_c01226{bottom:772.334430px;}
.y61_c01226{bottom:772.684875px;}
.y60_c01226{bottom:772.948020px;}
.y5f_c01226{bottom:773.384145px;}
.y5e_c01226{bottom:773.650215px;}
.y5d_c01226{bottom:774.075525px;}
.y5c_c01226{bottom:803.059425px;}
.y5b_c01226{bottom:803.936985px;}
.y5a_c01226{bottom:805.046850px;}
.y59_c01226{bottom:805.386975px;}
.y58_c01226{bottom:806.280735px;}
.y57_c01226{bottom:806.831595px;}
.y56_c01226{bottom:807.709215px;}
.y55_c01226{bottom:808.802775px;}
.y54_c01226{bottom:809.126700px;}
.y53_c01226{bottom:809.447850px;}
.y52_c01226{bottom:839.022780px;}
.y51_c01226{bottom:839.565960px;}
.y50_c01226{bottom:839.911455px;}
.y4f_c01226{bottom:840.786375px;}
.y4e_c01226{bottom:841.131960px;}
.y4d_c01226{bottom:841.442580px;}
.y4c_c01226{bottom:841.790460px;}
.y4b_c01226{bottom:842.560275px;}
.y4a_c01226{bottom:843.446025px;}
.y49_c01226{bottom:843.778155px;}
.y48_c01226{bottom:844.110015px;}
.y47_c01226{bottom:844.877940px;}
.y46_c01226{bottom:845.630250px;}
.y45_c01226{bottom:875.195880px;}
.y44_c01226{bottom:875.741625px;}
.y43_c01226{bottom:876.964875px;}
.y42_c01226{bottom:877.410030px;}
.y41_c01226{bottom:877.745115px;}
.y40_c01226{bottom:878.403885px;}
.y3f_c01226{bottom:878.835975px;}
.y3e_c01226{bottom:879.286605px;}
.y3d_c01226{bottom:879.959355px;}
.y3c_c01226{bottom:880.510155px;}
.y3b_c01226{bottom:881.482140px;}
.y3a_c01226{bottom:881.811060px;}
.y39_c01226{bottom:912.129660px;}
.y38_c01226{bottom:912.282165px;}
.y37_c01226{bottom:913.066920px;}
.y36_c01226{bottom:913.289550px;}
.y35_c01226{bottom:913.824180px;}
.y34_c01226{bottom:914.063565px;}
.y33_c01226{bottom:914.293950px;}
.y32_c01226{bottom:914.833335px;}
.y31_c01226{bottom:915.452745px;}
.y30_c01226{bottom:915.685815px;}
.y2f_c01226{bottom:916.371810px;}
.y2e_c01226{bottom:945.564180px;}
.y2d_c01226{bottom:946.062285px;}
.y2c_c01226{bottom:946.254705px;}
.y2b_c01226{bottom:947.540880px;}
.y2a_c01226{bottom:947.839305px;}
.y29_c01226{bottom:948.150630px;}
.y28_c01226{bottom:949.030605px;}
.y27_c01226{bottom:949.442010px;}
.y26_c01226{bottom:949.743825px;}
.y25_c01226{bottom:950.142870px;}
.y24_c01226{bottom:950.616825px;}
.y23_c01226{bottom:951.207210px;}
.y22_c01226{bottom:981.480480px;}
.y21_c01226{bottom:981.769500px;}
.y20_c01226{bottom:982.574655px;}
.y1f_c01226{bottom:983.268570px;}
.y1e_c01226{bottom:983.654415px;}
.y1d_c01226{bottom:984.426015px;}
.y1c_c01226{bottom:984.659205px;}
.y1b_c01226{bottom:985.041120px;}
.y1a_c01226{bottom:985.498080px;}
.y19_c01226{bottom:985.757595px;}
.y18_c01226{bottom:986.039070px;}
.y17_c01226{bottom:1014.793920px;}
.y16_c01226{bottom:1015.145040px;}
.y15_c01226{bottom:1015.471785px;}
.y14_c01226{bottom:1015.809030px;}
.y13_c01226{bottom:1016.921700px;}
.y12_c01226{bottom:1017.791160px;}
.y11_c01226{bottom:1018.120245px;}
.y10_c01226{bottom:1018.687620px;}
.yf_c01226{bottom:1019.557140px;}
.ye_c01226{bottom:1019.891955px;}
.yd_c01226{bottom:1020.320910px;}
.yc_c01226{bottom:1020.871500px;}
.yb_c01226{bottom:1050.901926px;}
.ya_c01226{bottom:1052.467119px;}
.y9_c01226{bottom:1053.555864px;}
.y8_c01226{bottom:1054.009359px;}
.y7_c01226{bottom:1055.086722px;}
.y6_c01226{bottom:1055.547945px;}
.y5_c01226{bottom:1056.644355px;}
.y4_c01226{bottom:1057.559073px;}
.y3_c01226{bottom:1058.024076px;}
.y2_c01226{bottom:1058.938500px;}
.y1_c01226{bottom:1127.668500px;}
.hf_c01226{height:12.000000px;}
.h16_c01226{height:18.000441px;}
.h14_c01226{height:48.000000px;}
.h15_c01226{height:60.000000px;}
.h8_c01226{height:66.003300px;}
.h9_c01226{height:66.008447px;}
.h2_c01226{height:72.000000px;}
.h11_c01226{height:72.002916px;}
.h7_c01226{height:72.003600px;}
.h3_c01226{height:72.007056px;}
.ha_c01226{height:72.009215px;}
.h10_c01226{height:78.001911px;}
.h4_c01226{height:78.003900px;}
.hc_c01226{height:78.009983px;}
.h12_c01226{height:84.000000px;}
.h5_c01226{height:84.004200px;}
.hb_c01226{height:84.010751px;}
.he_c01226{height:90.002205px;}
.hd_c01226{height:90.011519px;}
.h6_c01226{height:102.005100px;}
.h13_c01226{height:120.000000px;}
.h1_c01226{height:1258.500000px;}
.h0_c01226{height:1258.740000px;}
.w0_c01226{width:918.540000px;}
.w1_c01226{width:918.750000px;}
.x0_c01226{left:0.000000px;}
.xa9_c01226{left:179.820000px;}
.x97_c01226{left:181.873500px;}
.x61_c01226{left:182.984964px;}
.x56_c01226{left:184.041192px;}
.x6b_c01226{left:185.058516px;}
.xd_c01226{left:186.468000px;}
.xaa_c01226{left:214.227000px;}
.x6c_c01226{left:216.370512px;}
.x2e_c01226{left:218.563455px;}
.x17_c01226{left:226.361385px;}
.x57_c01226{left:228.592320px;}
.x5_c01226{left:230.154000px;}
.xab_c01226{left:236.338500px;}
.x72_c01226{left:238.311984px;}
.x40_c01226{left:239.379825px;}
.xe_c01226{left:241.527000px;}
.x91_c01226{left:248.599500px;}
.x4d_c01226{left:249.654852px;}
.x3b_c01226{left:250.676445px;}
.x1f_c01226{left:252.889665px;}
.x5f_c01226{left:260.360496px;}
.x35_c01226{left:261.671760px;}
.x18_c01226{left:263.413995px;}
.x8b_c01226{left:269.853948px;}
.x66_c01226{left:270.942168px;}
.x41_c01226{left:272.587485px;}
.xb1_c01226{left:277.019742px;}
.x84_c01226{left:281.427492px;}
.x7c_c01226{left:283.098216px;}
.xf_c01226{left:284.422500px;}
.xb3_c01226{left:287.820069px;}
.xac_c01226{left:290.038500px;}
.x77_c01226{left:292.784556px;}
.x9f_c01226{left:294.231000px;}
.x6_c01226{left:295.470000px;}
.x9d_c01226{left:302.809500px;}
.x58_c01226{left:304.486464px;}
.x20_c01226{left:305.535690px;}
.xb4_c01226{left:307.531035px;}
.x92_c01226{left:313.336500px;}
.x2f_c01226{left:315.761955px;}
.x10_c01226{left:317.904000px;}
.xa6_c01226{left:323.559000px;}
.x59_c01226{left:326.070420px;}
.x42_c01226{left:327.151080px;}
.x7_c01226{left:328.684500px;}
.x9e_c01226{left:335.740500px;}
.x47_c01226{left:337.296000px;}
.x36_c01226{left:338.464260px;}
.x1_c01226{left:339.930000px;}
.x6d_c01226{left:347.857524px;}
.x21_c01226{left:349.790625px;}
.x85_c01226{left:358.116636px;}
.x3c_c01226{left:360.032445px;}
.x8c_c01226{left:369.759024px;}
.x30_c01226{left:370.841955px;}
.x6e_c01226{left:380.527140px;}
.x4e_c01226{left:381.719472px;}
.x19_c01226{left:383.305095px;}
.xb2_c01226{left:385.562065px;}
.xa0_c01226{left:390.303000px;}
.x78_c01226{left:391.359012px;}
.x2_c01226{left:393.390000px;}
.xa7_c01226{left:401.362500px;}
.x62_c01226{left:402.770124px;}
.x43_c01226{left:403.811610px;}
.x11_c01226{left:404.856000px;}
.xad_c01226{left:411.556500px;}
.x8d_c01226{left:412.973676px;}
.x4f_c01226{left:414.376704px;}
.x1a_c01226{left:416.525085px;}
.x73_c01226{left:424.905840px;}
.x22_c01226{left:428.913405px;}
.x7d_c01226{left:434.866632px;}
.x5a_c01226{left:435.968988px;}
.x31_c01226{left:438.116955px;}
.x8e_c01226{left:445.885344px;}
.x3d_c01226{left:447.794445px;}
.x74_c01226{left:457.315992px;}
.x44_c01226{left:459.987735px;}
.x12_c01226{left:461.593500px;}
.x3_c01226{left:463.590000px;}
.x50_c01226{left:470.775228px;}
.x8_c01226{left:472.336500px;}
.x8f_c01226{left:479.118036px;}
.x48_c01226{left:481.234500px;}
.x27_c01226{left:482.686950px;}
.x98_c01226{left:489.417000px;}
.x75_c01226{left:491.071812px;}
.x37_c01226{left:493.438260px;}
.x13_c01226{left:494.502000px;}
.x7f_c01226{left:501.167784px;}
.x3e_c01226{left:502.880445px;}
.x4_c01226{left:505.710000px;}
.x5b_c01226{left:513.780420px;}
.x28_c01226{left:515.626440px;}
.xae_c01226{left:521.442000px;}
.x1b_c01226{left:526.688385px;}
.x93_c01226{left:534.565500px;}
.x51_c01226{left:535.924644px;}
.x79_c01226{left:547.477488px;}
.x29_c01226{left:549.915975px;}
.x67_c01226{left:558.041304px;}
.x23_c01226{left:561.244725px;}
.x99_c01226{left:567.204000px;}
.x38_c01226{left:570.419760px;}
.xa1_c01226{left:577.455000px;}
.x49_c01226{left:579.528000px;}
.x5c_c01226{left:580.731624px;}
.x9_c01226{left:582.235500px;}
.x7a_c01226{left:589.579020px;}
.x32_c01226{left:592.265955px;}
.x24_c01226{left:594.387555px;}
.x9a_c01226{left:599.317500px;}
.xa2_c01226{left:601.462500px;}
.x45_c01226{left:604.191615px;}
.x39_c01226{left:605.207760px;}
.x86_c01226{left:611.422392px;}
.xa_c01226{left:614.628000px;}
.xaf_c01226{left:616.645500px;}
.xa8_c01226{left:622.281000px;}
.x80_c01226{left:623.857068px;}
.x6f_c01226{left:624.929700px;}
.x2a_c01226{left:626.331270px;}
.x76_c01226{left:634.383648px;}
.x3a_c01226{left:636.269760px;}
.x46_c01226{left:637.325775px;}
.x87_c01226{left:644.632056px;}
.x5d_c01226{left:646.349112px;}
.x4a_c01226{left:648.133500px;}
.xa3_c01226{left:654.618000px;}
.x2b_c01226{left:658.195230px;}
.x7e_c01226{left:666.832296px;}
.x52_c01226{left:669.028932px;}
.x33_c01226{left:670.289955px;}
.x9b_c01226{left:677.359500px;}
.x68_c01226{left:678.738816px;}
.x1c_c01226{left:680.869005px;}
.x60_c01226{left:690.022452px;}
.x70_c01226{left:691.080480px;}
.xb_c01226{left:692.395500px;}
.x81_c01226{left:700.314912px;}
.xa4_c01226{left:702.234000px;}
.x9c_c01226{left:712.216500px;}
.x4b_c01226{left:713.709000px;}
.x88_c01226{left:721.873248px;}
.x69_c01226{left:723.548832px;}
.x14_c01226{left:726.439500px;}
.x63_c01226{left:734.114616px;}
.x25_c01226{left:737.256480px;}
.x53_c01226{left:745.997244px;}
.x89_c01226{left:755.931984px;}
.x15_c01226{left:759.114000px;}
.x64_c01226{left:766.792848px;}
.x2c_c01226{left:770.274090px;}
.x94_c01226{left:777.600000px;}
.x5e_c01226{left:779.484924px;}
.xb0_c01226{left:784.891500px;}
.x90_c01226{left:788.354724px;}
.x71_c01226{left:789.393852px;}
.x95_c01226{left:790.560000px;}
.x2d_c01226{left:792.125250px;}
.x16_c01226{left:794.226000px;}
.x1d_c01226{left:795.887955px;}
.xa5_c01226{left:798.871500px;}
.x6a_c01226{left:799.974900px;}
.x4c_c01226{left:802.018500px;}
.xc_c01226{left:804.195000px;}
.x82_c01226{left:811.853616px;}
.x26_c01226{left:813.959745px;}
.x65_c01226{left:822.670776px;}
.x3f_c01226{left:825.011445px;}
.x8a_c01226{left:833.140152px;}
.x54_c01226{left:835.384548px;}
.x1e_c01226{left:837.241200px;}
.x7b_c01226{left:845.080524px;}
.x34_c01226{left:847.189455px;}
.x96_c01226{left:852.390000px;}
.x83_c01226{left:855.578316px;}
.x55_c01226{left:880.181724px;}
@media print{
.v0_c01226{vertical-align:0.000000pt;}
.ls0_c01226{letter-spacing:0.000000pt;}
.ws0_c01226{word-spacing:0.000000pt;}
.fsd_c01226{font-size:10.666667pt;}
.fs14_c01226{font-size:16.000392pt;}
.fs12_c01226{font-size:42.666667pt;}
.fs13_c01226{font-size:53.333333pt;}
.fs6_c01226{font-size:58.669600pt;}
.fs7_c01226{font-size:58.674176pt;}
.fs0_c01226{font-size:64.000000pt;}
.fsf_c01226{font-size:64.002592pt;}
.fs5_c01226{font-size:64.003200pt;}
.fs1_c01226{font-size:64.006272pt;}
.fs8_c01226{font-size:64.008191pt;}
.fse_c01226{font-size:69.335032pt;}
.fs2_c01226{font-size:69.336800pt;}
.fsa_c01226{font-size:69.342207pt;}
.fs10_c01226{font-size:74.666667pt;}
.fs3_c01226{font-size:74.670400pt;}
.fs9_c01226{font-size:74.676223pt;}
.fsc_c01226{font-size:80.001960pt;}
.fsb_c01226{font-size:80.010239pt;}
.fs4_c01226{font-size:90.671200pt;}
.fs11_c01226{font-size:106.666667pt;}
.y151_c01226{bottom:-0.000429pt;}
.y14f_c01226{bottom:-0.000376pt;}
.y150_c01226{bottom:-0.000349pt;}
.y14e_c01226{bottom:-0.000189pt;}
.y0_c01226{bottom:0.000000pt;}
.y149_c01226{bottom:0.077436pt;}
.y148_c01226{bottom:0.136227pt;}
.y147_c01226{bottom:0.245576pt;}
.y146_c01226{bottom:0.428565pt;}
.y145_c01226{bottom:0.588240pt;}
.y144_c01226{bottom:0.663831pt;}
.y143_c01226{bottom:0.803317pt;}
.y14a_c01226{bottom:1.168213pt;}
.y14b_c01226{bottom:1.168693pt;}
.y14d_c01226{bottom:1.168872pt;}
.y14c_c01226{bottom:1.169076pt;}
.y142_c01226{bottom:1.183091pt;}
.y141_c01226{bottom:1.421707pt;}
.y140_c01226{bottom:3.120000pt;}
.y13f_c01226{bottom:68.753333pt;}
.y13e_c01226{bottom:69.344000pt;}
.y13d_c01226{bottom:70.061333pt;}
.y13c_c01226{bottom:70.409333pt;}
.y13b_c01226{bottom:70.746667pt;}
.y13a_c01226{bottom:71.233333pt;}
.y139_c01226{bottom:71.680000pt;}
.y138_c01226{bottom:72.529333pt;}
.y137_c01226{bottom:73.102667pt;}
.y136_c01226{bottom:73.338667pt;}
.y135_c01226{bottom:73.681333pt;}
.y134_c01226{bottom:97.692000pt;}
.y133_c01226{bottom:117.197333pt;}
.y132_c01226{bottom:118.816000pt;}
.y131_c01226{bottom:119.258667pt;}
.y130_c01226{bottom:120.000000pt;}
.y12f_c01226{bottom:120.218667pt;}
.y12e_c01226{bottom:120.653333pt;}
.y12d_c01226{bottom:120.977333pt;}
.y12c_c01226{bottom:121.402667pt;}
.y12b_c01226{bottom:121.738667pt;}
.y12a_c01226{bottom:122.681333pt;}
.y129_c01226{bottom:123.121333pt;}
.y128_c01226{bottom:148.570667pt;}
.y127_c01226{bottom:149.044000pt;}
.y126_c01226{bottom:149.172000pt;}
.y125_c01226{bottom:149.468000pt;}
.y124_c01226{bottom:149.798667pt;}
.y123_c01226{bottom:149.948000pt;}
.y122_c01226{bottom:150.485333pt;}
.y121_c01226{bottom:150.698667pt;}
.y120_c01226{bottom:151.112000pt;}
.y11f_c01226{bottom:151.314667pt;}
.y11e_c01226{bottom:151.709333pt;}
.y11d_c01226{bottom:152.060000pt;}
.y11c_c01226{bottom:152.400000pt;}
.y11b_c01226{bottom:174.720000pt;}
.y116_c01226{bottom:183.361333pt;}
.y117_c01226{bottom:183.784813pt;}
.y118_c01226{bottom:184.307533pt;}
.y119_c01226{bottom:184.570981pt;}
.y11a_c01226{bottom:185.462521pt;}
.y115_c01226{bottom:213.180088pt;}
.y114_c01226{bottom:213.396976pt;}
.y113_c01226{bottom:213.882571pt;}
.y112_c01226{bottom:214.082388pt;}
.y111_c01226{bottom:214.566396pt;}
.y110_c01226{bottom:215.102531pt;}
.y10f_c01226{bottom:215.587911pt;}
.y10e_c01226{bottom:216.480000pt;}
.y10d_c01226{bottom:243.905333pt;}
.y10c_c01226{bottom:247.170708pt;}
.y10b_c01226{bottom:247.987543pt;}
.y10a_c01226{bottom:248.547244pt;}
.y109_c01226{bottom:248.810752pt;}
.y108_c01226{bottom:248.950052pt;}
.y107_c01226{bottom:249.082744pt;}
.y106_c01226{bottom:249.360000pt;}
.y105_c01226{bottom:272.970325pt;}
.y104_c01226{bottom:273.166603pt;}
.y103_c01226{bottom:274.249835pt;}
.y102_c01226{bottom:274.833323pt;}
.y101_c01226{bottom:275.718603pt;}
.y100_c01226{bottom:276.013867pt;}
.yff_c01226{bottom:276.305899pt;}
.yfe_c01226{bottom:276.689781pt;}
.yfd_c01226{bottom:277.379723pt;}
.yfc_c01226{bottom:277.578517pt;}
.yfb_c01226{bottom:278.351104pt;}
.yfa_c01226{bottom:304.170859pt;}
.yf9_c01226{bottom:304.926176pt;}
.yf8_c01226{bottom:305.258528pt;}
.yf7_c01226{bottom:305.688576pt;}
.yf6_c01226{bottom:306.012981pt;}
.yf5_c01226{bottom:306.337259pt;}
.yf4_c01226{bottom:307.292693pt;}
.yf3_c01226{bottom:308.159883pt;}
.yf2_c01226{bottom:308.266752pt;}
.yf1_c01226{bottom:308.814208pt;}
.yf0_c01226{bottom:309.563477pt;}
.yef_c01226{bottom:309.990251pt;}
.yee_c01226{bottom:310.513515pt;}
.yed_c01226{bottom:335.507840pt;}
.yec_c01226{bottom:335.896309pt;}
.yeb_c01226{bottom:336.679008pt;}
.yea_c01226{bottom:336.887819pt;}
.ye9_c01226{bottom:337.567115pt;}
.ye8_c01226{bottom:338.657195pt;}
.ye7_c01226{bottom:339.047787pt;}
.ye6_c01226{bottom:339.727029pt;}
.ye5_c01226{bottom:340.109173pt;}
.ye4_c01226{bottom:341.170176pt;}
.ye3_c01226{bottom:341.476693pt;}
.ye2_c01226{bottom:368.529920pt;}
.ye1_c01226{bottom:369.246816pt;}
.ye0_c01226{bottom:369.726965pt;}
.ydf_c01226{bottom:369.877941pt;}
.yde_c01226{bottom:370.350944pt;}
.ydd_c01226{bottom:370.809973pt;}
.ydc_c01226{bottom:370.983275pt;}
.ydb_c01226{bottom:371.377611pt;}
.yda_c01226{bottom:371.600043pt;}
.yd9_c01226{bottom:372.457152pt;}
.yd8_c01226{bottom:372.781984pt;}
.yd7_c01226{bottom:373.162261pt;}
.yd6_c01226{bottom:398.962677pt;}
.yd5_c01226{bottom:399.157781pt;}
.yd4_c01226{bottom:399.662219pt;}
.yd3_c01226{bottom:400.046592pt;}
.yd2_c01226{bottom:400.843669pt;}
.yd1_c01226{bottom:401.234795pt;}
.yd0_c01226{bottom:401.609515pt;}
.ycf_c01226{bottom:402.415275pt;}
.yce_c01226{bottom:402.997653pt;}
.ycd_c01226{bottom:403.576555pt;}
.ycc_c01226{bottom:403.874133pt;}
.ycb_c01226{bottom:404.166464pt;}
.yca_c01226{bottom:404.847499pt;}
.yc9_c01226{bottom:432.300181pt;}
.yc8_c01226{bottom:433.335285pt;}
.yc7_c01226{bottom:433.793269pt;}
.yc6_c01226{bottom:434.039733pt;}
.yc5_c01226{bottom:434.354571pt;}
.yc4_c01226{bottom:434.594592pt;}
.yc3_c01226{bottom:434.824811pt;}
.yc2_c01226{bottom:435.136373pt;}
.yc1_c01226{bottom:435.989632pt;}
.yc0_c01226{bottom:436.152917pt;}
.ybf_c01226{bottom:436.530923pt;}
.ybe_c01226{bottom:461.504629pt;}
.ybd_c01226{bottom:462.066613pt;}
.ybc_c01226{bottom:463.027403pt;}
.ybb_c01226{bottom:463.674805pt;}
.yba_c01226{bottom:463.996213pt;}
.yb9_c01226{bottom:464.550507pt;}
.yb8_c01226{bottom:464.761685pt;}
.yb7_c01226{bottom:465.079808pt;}
.yb6_c01226{bottom:465.528224pt;}
.yb5_c01226{bottom:466.063808pt;}
.yb4_c01226{bottom:466.383072pt;}
.yb3_c01226{bottom:467.349824pt;}
.yb2_c01226{bottom:467.668960pt;}
.yb1_c01226{bottom:467.975584pt;}
.yb0_c01226{bottom:495.927499pt;}
.yaf_c01226{bottom:496.538325pt;}
.yae_c01226{bottom:496.896885pt;}
.yad_c01226{bottom:497.243531pt;}
.yac_c01226{bottom:497.690549pt;}
.yab_c01226{bottom:497.862613pt;}
.yaa_c01226{bottom:498.470165pt;}
.ya9_c01226{bottom:499.012757pt;}
.ya8_c01226{bottom:499.631125pt;}
.ya7_c01226{bottom:500.160011pt;}
.ya6_c01226{bottom:500.859915pt;}
.ya5_c01226{bottom:528.411776pt;}
.ya4_c01226{bottom:528.710357pt;}
.ya3_c01226{bottom:528.884373pt;}
.ya2_c01226{bottom:529.116011pt;}
.ya1_c01226{bottom:529.349813pt;}
.ya0_c01226{bottom:529.709067pt;}
.y9f_c01226{bottom:530.059221pt;}
.y9e_c01226{bottom:530.476864pt;}
.y9d_c01226{bottom:530.652075pt;}
.y9c_c01226{bottom:531.058763pt;}
.y9b_c01226{bottom:531.412971pt;}
.y9a_c01226{bottom:531.585600pt;}
.y99_c01226{bottom:531.824075pt;}
.y98_c01226{bottom:556.322283pt;}
.y97_c01226{bottom:556.684299pt;}
.y96_c01226{bottom:557.614315pt;}
.y95_c01226{bottom:557.870720pt;}
.y94_c01226{bottom:558.680896pt;}
.y93_c01226{bottom:559.735648pt;}
.y92_c01226{bottom:560.568224pt;}
.y91_c01226{bottom:560.917525pt;}
.y90_c01226{bottom:562.089440pt;}
.y8f_c01226{bottom:562.455744pt;}
.y8e_c01226{bottom:562.797397pt;}
.y8d_c01226{bottom:563.270187pt;}
.y8c_c01226{bottom:590.391573pt;}
.y8b_c01226{bottom:590.577728pt;}
.y8a_c01226{bottom:590.685131pt;}
.y89_c01226{bottom:590.925803pt;}
.y88_c01226{bottom:591.286912pt;}
.y87_c01226{bottom:591.637323pt;}
.y86_c01226{bottom:591.994699pt;}
.y85_c01226{bottom:592.165195pt;}
.y84_c01226{bottom:592.410507pt;}
.y83_c01226{bottom:592.817195pt;}
.y82_c01226{bottom:592.997259pt;}
.y81_c01226{bottom:593.112181pt;}
.y80_c01226{bottom:593.516725pt;}
.y7f_c01226{bottom:593.754240pt;}
.y7e_c01226{bottom:621.253813pt;}
.y7d_c01226{bottom:621.492160pt;}
.y7c_c01226{bottom:621.672117pt;}
.y7b_c01226{bottom:621.968576pt;}
.y7a_c01226{bottom:622.379061pt;}
.y79_c01226{bottom:622.558997pt;}
.y78_c01226{bottom:623.089131pt;}
.y77_c01226{bottom:623.436885pt;}
.y76_c01226{bottom:623.737536pt;}
.y75_c01226{bottom:623.911253pt;}
.y74_c01226{bottom:624.198101pt;}
.y73_c01226{bottom:624.615872pt;}
.y72_c01226{bottom:624.956512pt;}
.y71_c01226{bottom:650.638037pt;}
.y70_c01226{bottom:651.893995pt;}
.y6f_c01226{bottom:652.826624pt;}
.y6e_c01226{bottom:653.802347pt;}
.y6d_c01226{bottom:654.724203pt;}
.y6c_c01226{bottom:655.200299pt;}
.y6b_c01226{bottom:656.310165pt;}
.y6a_c01226{bottom:656.767552pt;}
.y69_c01226{bottom:657.247424pt;}
.y68_c01226{bottom:657.543317pt;}
.y67_c01226{bottom:657.842667pt;}
.y66_c01226{bottom:684.858520pt;}
.y65_c01226{bottom:685.094373pt;}
.y64_c01226{bottom:685.255867pt;}
.y63_c01226{bottom:686.120160pt;}
.y62_c01226{bottom:686.519493pt;}
.y61_c01226{bottom:686.831000pt;}
.y60_c01226{bottom:687.064907pt;}
.y5f_c01226{bottom:687.452573pt;}
.y5e_c01226{bottom:687.689080pt;}
.y5d_c01226{bottom:688.067133pt;}
.y5c_c01226{bottom:713.830600pt;}
.y5b_c01226{bottom:714.610653pt;}
.y5a_c01226{bottom:715.597200pt;}
.y59_c01226{bottom:715.899533pt;}
.y58_c01226{bottom:716.693987pt;}
.y57_c01226{bottom:717.183640pt;}
.y56_c01226{bottom:717.963747pt;}
.y55_c01226{bottom:718.935800pt;}
.y54_c01226{bottom:719.223733pt;}
.y53_c01226{bottom:719.509200pt;}
.y52_c01226{bottom:745.798027pt;}
.y51_c01226{bottom:746.280853pt;}
.y50_c01226{bottom:746.587960pt;}
.y4f_c01226{bottom:747.365667pt;}
.y4e_c01226{bottom:747.672853pt;}
.y4d_c01226{bottom:747.948960pt;}
.y4c_c01226{bottom:748.258187pt;}
.y4b_c01226{bottom:748.942467pt;}
.y4a_c01226{bottom:749.729800pt;}
.y49_c01226{bottom:750.025027pt;}
.y48_c01226{bottom:750.320013pt;}
.y47_c01226{bottom:751.002613pt;}
.y46_c01226{bottom:751.671333pt;}
.y45_c01226{bottom:777.951893pt;}
.y44_c01226{bottom:778.437000pt;}
.y43_c01226{bottom:779.524333pt;}
.y42_c01226{bottom:779.920027pt;}
.y41_c01226{bottom:780.217880pt;}
.y40_c01226{bottom:780.803453pt;}
.y3f_c01226{bottom:781.187533pt;}
.y3e_c01226{bottom:781.588093pt;}
.y3d_c01226{bottom:782.186093pt;}
.y3c_c01226{bottom:782.675693pt;}
.y3b_c01226{bottom:783.539680pt;}
.y3a_c01226{bottom:783.832053pt;}
.y39_c01226{bottom:810.781920pt;}
.y38_c01226{bottom:810.917480pt;}
.y37_c01226{bottom:811.615040pt;}
.y36_c01226{bottom:811.812933pt;}
.y35_c01226{bottom:812.288160pt;}
.y34_c01226{bottom:812.500947pt;}
.y33_c01226{bottom:812.705733pt;}
.y32_c01226{bottom:813.185187pt;}
.y31_c01226{bottom:813.735773pt;}
.y30_c01226{bottom:813.942947pt;}
.y2f_c01226{bottom:814.552720pt;}
.y2e_c01226{bottom:840.501493pt;}
.y2d_c01226{bottom:840.944253pt;}
.y2c_c01226{bottom:841.115293pt;}
.y2b_c01226{bottom:842.258560pt;}
.y2a_c01226{bottom:842.523827pt;}
.y29_c01226{bottom:842.800560pt;}
.y28_c01226{bottom:843.582760pt;}
.y27_c01226{bottom:843.948453pt;}
.y26_c01226{bottom:844.216733pt;}
.y25_c01226{bottom:844.571440pt;}
.y24_c01226{bottom:844.992733pt;}
.y23_c01226{bottom:845.517520pt;}
.y22_c01226{bottom:872.427093pt;}
.y21_c01226{bottom:872.684000pt;}
.y20_c01226{bottom:873.399693pt;}
.y1f_c01226{bottom:874.016507pt;}
.y1e_c01226{bottom:874.359480pt;}
.y1d_c01226{bottom:875.045347pt;}
.y1c_c01226{bottom:875.252627pt;}
.y1b_c01226{bottom:875.592107pt;}
.y1a_c01226{bottom:875.998293pt;}
.y19_c01226{bottom:876.228973pt;}
.y18_c01226{bottom:876.479173pt;}
.y17_c01226{bottom:902.039040pt;}
.y16_c01226{bottom:902.351147pt;}
.y15_c01226{bottom:902.641587pt;}
.y14_c01226{bottom:902.941360pt;}
.y13_c01226{bottom:903.930400pt;}
.y12_c01226{bottom:904.703253pt;}
.y11_c01226{bottom:904.995773pt;}
.y10_c01226{bottom:905.500107pt;}
.yf_c01226{bottom:906.273013pt;}
.ye_c01226{bottom:906.570627pt;}
.yd_c01226{bottom:906.951920pt;}
.yc_c01226{bottom:907.441333pt;}
.yb_c01226{bottom:934.135045pt;}
.ya_c01226{bottom:935.526328pt;}
.y9_c01226{bottom:936.494101pt;}
.y8_c01226{bottom:936.897208pt;}
.y7_c01226{bottom:937.854864pt;}
.y6_c01226{bottom:938.264840pt;}
.y5_c01226{bottom:939.239427pt;}
.y4_c01226{bottom:940.052509pt;}
.y3_c01226{bottom:940.465845pt;}
.y2_c01226{bottom:941.278667pt;}
.y1_c01226{bottom:1002.372000pt;}
.hf_c01226{height:10.666667pt;}
.h16_c01226{height:16.000392pt;}
.h14_c01226{height:42.666667pt;}
.h15_c01226{height:53.333333pt;}
.h8_c01226{height:58.669600pt;}
.h9_c01226{height:58.674176pt;}
.h2_c01226{height:64.000000pt;}
.h11_c01226{height:64.002592pt;}
.h7_c01226{height:64.003200pt;}
.h3_c01226{height:64.006272pt;}
.ha_c01226{height:64.008191pt;}
.h10_c01226{height:69.335032pt;}
.h4_c01226{height:69.336800pt;}
.hc_c01226{height:69.342207pt;}
.h12_c01226{height:74.666667pt;}
.h5_c01226{height:74.670400pt;}
.hb_c01226{height:74.676223pt;}
.he_c01226{height:80.001960pt;}
.hd_c01226{height:80.010239pt;}
.h6_c01226{height:90.671200pt;}
.h13_c01226{height:106.666667pt;}
.h1_c01226{height:1118.666667pt;}
.h0_c01226{height:1118.880000pt;}
.w0_c01226{width:816.480000pt;}
.w1_c01226{width:816.666667pt;}
.x0_c01226{left:0.000000pt;}
.xa9_c01226{left:159.840000pt;}
.x97_c01226{left:161.665333pt;}
.x61_c01226{left:162.653301pt;}
.x56_c01226{left:163.592171pt;}
.x6b_c01226{left:164.496459pt;}
.xd_c01226{left:165.749333pt;}
.xaa_c01226{left:190.424000pt;}
.x6c_c01226{left:192.329344pt;}
.x2e_c01226{left:194.278627pt;}
.x17_c01226{left:201.210120pt;}
.x57_c01226{left:203.193173pt;}
.x5_c01226{left:204.581333pt;}
.xab_c01226{left:210.078667pt;}
.x72_c01226{left:211.832875pt;}
.x40_c01226{left:212.782067pt;}
.xe_c01226{left:214.690667pt;}
.x91_c01226{left:220.977333pt;}
.x4d_c01226{left:221.915424pt;}
.x3b_c01226{left:222.823507pt;}
.x1f_c01226{left:224.790813pt;}
.x5f_c01226{left:231.431552pt;}
.x35_c01226{left:232.597120pt;}
.x18_c01226{left:234.145773pt;}
.x8b_c01226{left:239.870176pt;}
.x66_c01226{left:240.837483pt;}
.x41_c01226{left:242.299987pt;}
.xb1_c01226{left:246.239771pt;}
.x84_c01226{left:250.157771pt;}
.x7c_c01226{left:251.642859pt;}
.xf_c01226{left:252.820000pt;}
.xb3_c01226{left:255.840061pt;}
.xac_c01226{left:257.812000pt;}
.x77_c01226{left:260.252939pt;}
.x9f_c01226{left:261.538667pt;}
.x6_c01226{left:262.640000pt;}
.x9d_c01226{left:269.164000pt;}
.x58_c01226{left:270.654635pt;}
.x20_c01226{left:271.587280pt;}
.xb4_c01226{left:273.360920pt;}
.x92_c01226{left:278.521333pt;}
.x2f_c01226{left:280.677293pt;}
.x10_c01226{left:282.581333pt;}
.xa6_c01226{left:287.608000pt;}
.x59_c01226{left:289.840373pt;}
.x42_c01226{left:290.800960pt;}
.x7_c01226{left:292.164000pt;}
.x9e_c01226{left:298.436000pt;}
.x47_c01226{left:299.818667pt;}
.x36_c01226{left:300.857120pt;}
.x1_c01226{left:302.160000pt;}
.x6d_c01226{left:309.206688pt;}
.x21_c01226{left:310.925000pt;}
.x85_c01226{left:318.325899pt;}
.x3c_c01226{left:320.028840pt;}
.x8c_c01226{left:328.674688pt;}
.x30_c01226{left:329.637293pt;}
.x6e_c01226{left:338.246347pt;}
.x4e_c01226{left:339.306197pt;}
.x19_c01226{left:340.715640pt;}
.xb2_c01226{left:342.721836pt;}
.xa0_c01226{left:346.936000pt;}
.x78_c01226{left:347.874677pt;}
.x2_c01226{left:349.680000pt;}
.xa7_c01226{left:356.766667pt;}
.x62_c01226{left:358.017888pt;}
.x43_c01226{left:358.943653pt;}
.x11_c01226{left:359.872000pt;}
.xad_c01226{left:365.828000pt;}
.x8d_c01226{left:367.087712pt;}
.x4f_c01226{left:368.334848pt;}
.x1a_c01226{left:370.244520pt;}
.x73_c01226{left:377.694080pt;}
.x22_c01226{left:381.256360pt;}
.x7d_c01226{left:386.548117pt;}
.x5a_c01226{left:387.527989pt;}
.x31_c01226{left:389.437293pt;}
.x8e_c01226{left:396.342528pt;}
.x3d_c01226{left:398.039507pt;}
.x74_c01226{left:406.503104pt;}
.x44_c01226{left:408.877987pt;}
.x12_c01226{left:410.305333pt;}
.x3_c01226{left:412.080000pt;}
.x50_c01226{left:418.466869pt;}
.x8_c01226{left:419.854667pt;}
.x8f_c01226{left:425.882699pt;}
.x48_c01226{left:427.764000pt;}
.x27_c01226{left:429.055067pt;}
.x98_c01226{left:435.037333pt;}
.x75_c01226{left:436.508277pt;}
.x37_c01226{left:438.611787pt;}
.x13_c01226{left:439.557333pt;}
.x7f_c01226{left:445.482475pt;}
.x3e_c01226{left:447.004840pt;}
.x4_c01226{left:449.520000pt;}
.x5b_c01226{left:456.693707pt;}
.x28_c01226{left:458.334613pt;}
.xae_c01226{left:463.504000pt;}
.x1b_c01226{left:468.167453pt;}
.x93_c01226{left:475.169333pt;}
.x51_c01226{left:476.377461pt;}
.x79_c01226{left:486.646656pt;}
.x29_c01226{left:488.814200pt;}
.x67_c01226{left:496.036715pt;}
.x23_c01226{left:498.884200pt;}
.x99_c01226{left:504.181333pt;}
.x38_c01226{left:507.039787pt;}
.xa1_c01226{left:513.293333pt;}
.x49_c01226{left:515.136000pt;}
.x5c_c01226{left:516.205888pt;}
.x9_c01226{left:517.542667pt;}
.x7a_c01226{left:524.070240pt;}
.x32_c01226{left:526.458627pt;}
.x24_c01226{left:528.344493pt;}
.x9a_c01226{left:532.726667pt;}
.xa2_c01226{left:534.633333pt;}
.x45_c01226{left:537.059213pt;}
.x39_c01226{left:537.962453pt;}
.x86_c01226{left:543.486571pt;}
.xa_c01226{left:546.336000pt;}
.xaf_c01226{left:548.129333pt;}
.xa8_c01226{left:553.138667pt;}
.x80_c01226{left:554.539616pt;}
.x6f_c01226{left:555.493067pt;}
.x2a_c01226{left:556.738907pt;}
.x76_c01226{left:563.896576pt;}
.x3a_c01226{left:565.573120pt;}
.x46_c01226{left:566.511800pt;}
.x87_c01226{left:573.006272pt;}
.x5d_c01226{left:574.532544pt;}
.x4a_c01226{left:576.118667pt;}
.xa3_c01226{left:581.882667pt;}
.x2b_c01226{left:585.062427pt;}
.x7e_c01226{left:592.739819pt;}
.x52_c01226{left:594.692384pt;}
.x33_c01226{left:595.813293pt;}
.x9b_c01226{left:602.097333pt;}
.x68_c01226{left:603.323392pt;}
.x1c_c01226{left:605.216893pt;}
.x60_c01226{left:613.353291pt;}
.x70_c01226{left:614.293760pt;}
.xb_c01226{left:615.462667pt;}
.x81_c01226{left:622.502144pt;}
.xa4_c01226{left:624.208000pt;}
.x9c_c01226{left:633.081333pt;}
.x4b_c01226{left:634.408000pt;}
.x88_c01226{left:641.665109pt;}
.x69_c01226{left:643.154517pt;}
.x14_c01226{left:645.724000pt;}
.x63_c01226{left:652.546325pt;}
.x25_c01226{left:655.339093pt;}
.x53_c01226{left:663.108661pt;}
.x89_c01226{left:671.939541pt;}
.x15_c01226{left:674.768000pt;}
.x64_c01226{left:681.593643pt;}
.x2c_c01226{left:684.688080pt;}
.x94_c01226{left:691.200000pt;}
.x5e_c01226{left:692.875488pt;}
.xb0_c01226{left:697.681333pt;}
.x90_c01226{left:700.759755pt;}
.x71_c01226{left:701.683424pt;}
.x95_c01226{left:702.720000pt;}
.x2d_c01226{left:704.111333pt;}
.x16_c01226{left:705.978667pt;}
.x1d_c01226{left:707.455960pt;}
.xa5_c01226{left:710.108000pt;}
.x6a_c01226{left:711.088800pt;}
.x4c_c01226{left:712.905333pt;}
.xc_c01226{left:714.840000pt;}
.x82_c01226{left:721.647659pt;}
.x26_c01226{left:723.519773pt;}
.x65_c01226{left:731.262912pt;}
.x3f_c01226{left:733.343507pt;}
.x8a_c01226{left:740.569024pt;}
.x54_c01226{left:742.564043pt;}
.x1e_c01226{left:744.214400pt;}
.x7b_c01226{left:751.182688pt;}
.x34_c01226{left:753.057293pt;}
.x96_c01226{left:757.680000pt;}
.x83_c01226{left:760.514059pt;}
.x55_c01226{left:782.383755pt;}
}





/* 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_c01227 {
    display:none;
  }
  .loading-indicator_c01227.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01227 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_c01227 { 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_c01227" -> "#page-container .classname_c01227")
 */
.pf_c01227 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01227 { /* 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_c01227.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01227 { /* 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_c01227 { /* 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_c01227 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01227 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01227 {overflow:visible;}
  }
}
.c_c01227 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01227 { /* 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_c01227:after { /* webkit #35443 */
  content: '';
}
.t_c01227:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01227 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 */
}
.__c01227 { /* 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_c01227 { /* info for Javascript */
  display:none;
}
.l_c01227 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01227 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01227 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01227: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_c01227 {
    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_c01227.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01227.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_c01227 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01227{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01227;src:url('chunks/assets/font_a72a081e1d55f37b0ea09712.woff2')format("woff");}.ff1_c01227{font-family:ff1_c01227;line-height:1.000000;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;}
.m2_c01227{transform:matrix(0.424500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424500,0.000000,0.000000,0.250000,0,0);}
.m3_c01227{transform:matrix(0.520155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520155,0.000000,0.000000,0.250000,0,0);}
.m0_c01227{transform:matrix(0.755380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.755380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.755380,0.000000,0.000000,0.250000,0,0);}
.m1_c01227{transform:matrix(0.997245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.997245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.997245,0.000000,0.000000,0.250000,0,0);}
.v0_c01227{vertical-align:0.000000px;}
.ls0_c01227{letter-spacing:0.000000px;}
.sc__c01227{text-shadow:none;}
.sc0_c01227{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__c01227{-webkit-text-stroke:0px transparent;}
.sc0_c01227{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01227{word-spacing:0.000000px;}
.fc0_c01227{color:transparent;}
.fs0_c01227{font-size:18.000000px;}
.y0_c01227{bottom:0.000000px;}
.y1_c01227{bottom:862.110000px;}
.h2_c01227{height:18.000000px;}
.h1_c01227{height:1258.500000px;}
.h0_c01227{height:1258.740000px;}
.w0_c01227{width:918.540000px;}
.w1_c01227{width:918.750000px;}
.x0_c01227{left:0.000000px;}
.x1_c01227{left:4.050000px;}
@media print{
.v0_c01227{vertical-align:0.000000pt;}
.ls0_c01227{letter-spacing:0.000000pt;}
.ws0_c01227{word-spacing:0.000000pt;}
.fs0_c01227{font-size:16.000000pt;}
.y0_c01227{bottom:0.000000pt;}
.y1_c01227{bottom:766.320000pt;}
.h2_c01227{height:16.000000pt;}
.h1_c01227{height:1118.666667pt;}
.h0_c01227{height:1118.880000pt;}
.w0_c01227{width:816.480000pt;}
.w1_c01227{width:816.666667pt;}
.x0_c01227{left:0.000000pt;}
.x1_c01227{left:3.600000pt;}
}





/* 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_c01228 {
    display:none;
  }
  .loading-indicator_c01228.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01228 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_c01228 { 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_c01228" -> "#page-container .classname_c01228")
 */
.pf_c01228 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01228 { /* 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_c01228.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01228 { /* 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_c01228 { /* 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_c01228 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01228 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01228 {overflow:visible;}
  }
}
.c_c01228 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01228 { /* 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_c01228:after { /* webkit #35443 */
  content: '';
}
.t_c01228:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01228 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 */
}
.__c01228 { /* 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_c01228 { /* info for Javascript */
  display:none;
}
.l_c01228 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01228 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01228 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01228: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_c01228 {
    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_c01228.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01228.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_c01228 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01228{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01228;src:url('chunks/assets/font_c605e72f209fc835e906f064.woff2')format("woff");}.ff1_c01228{font-family:ff1_c01228;line-height:1.000000;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;}
.m27_c01228{transform:matrix(0.007375,0.000066,-0.002250,0.249990,0,0);-ms-transform:matrix(0.007375,0.000066,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.007375,0.000066,-0.002250,0.249990,0,0);}
.me_c01228{transform:matrix(0.009090,0.000082,-0.002250,0.249990,0,0);-ms-transform:matrix(0.009090,0.000082,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.009090,0.000082,-0.002250,0.249990,0,0);}
.m93_c01228{transform:matrix(0.009789,0.000137,-0.003500,0.249976,0,0);-ms-transform:matrix(0.009789,0.000137,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.009789,0.000137,-0.003500,0.249976,0,0);}
.m71_c01228{transform:matrix(0.017309,0.000173,-0.002500,0.249988,0,0);-ms-transform:matrix(0.017309,0.000173,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.017309,0.000173,-0.002500,0.249988,0,0);}
.mf_c01228{transform:matrix(0.018739,0.000169,-0.002250,0.249990,0,0);-ms-transform:matrix(0.018739,0.000169,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.018739,0.000169,-0.002250,0.249990,0,0);}
.mb6_c01228{transform:matrix(0.020193,0.000283,-0.003500,0.249976,0,0);-ms-transform:matrix(0.020193,0.000283,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.020193,0.000283,-0.003500,0.249976,0,0);}
.m59_c01228{transform:matrix(0.021215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021215,0.000000,0.000000,0.250000,0,0);}
.ma1_c01228{transform:matrix(0.099790,0.001397,-0.003500,0.249976,0,0);-ms-transform:matrix(0.099790,0.001397,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.099790,0.001397,-0.003500,0.249976,0,0);}
.m95_c01228{transform:matrix(0.104125,0.001458,-0.003500,0.249976,0,0);-ms-transform:matrix(0.104125,0.001458,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.104125,0.001458,-0.003500,0.249976,0,0);}
.m58_c01228{transform:matrix(0.118585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118585,0.000000,0.000000,0.250000,0,0);}
.m65_c01228{transform:matrix(0.119647,0.000838,-0.001750,0.249994,0,0);-ms-transform:matrix(0.119647,0.000838,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.119647,0.000838,-0.001750,0.249994,0,0);}
.m28_c01228{transform:matrix(0.128450,0.001156,-0.002250,0.249990,0,0);-ms-transform:matrix(0.128450,0.001156,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.128450,0.001156,-0.002250,0.249990,0,0);}
.m29_c01228{transform:matrix(0.133155,0.001198,-0.002250,0.249990,0,0);-ms-transform:matrix(0.133155,0.001198,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.133155,0.001198,-0.002250,0.249990,0,0);}
.mdb_c01228{transform:matrix(0.149335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149335,0.000000,0.000000,0.250000,0,0);}
.mc3_c01228{transform:matrix(0.152845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152845,0.000000,0.000000,0.250000,0,0);}
.mde_c01228{transform:matrix(0.153145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153145,0.000000,0.000000,0.250000,0,0);}
.md9_c01228{transform:matrix(0.153185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153185,0.000000,0.000000,0.250000,0,0);}
.m24_c01228{transform:matrix(0.155324,0.001398,-0.002250,0.249990,0,0);-ms-transform:matrix(0.155324,0.001398,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.155324,0.001398,-0.002250,0.249990,0,0);}
.mec_c01228{transform:matrix(0.156535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156535,0.000000,0.000000,0.250000,0,0);}
.m101_c01228{transform:matrix(0.156570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156570,0.000000,0.000000,0.250000,0,0);}
.mc7_c01228{transform:matrix(0.157275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157275,0.000000,0.000000,0.250000,0,0);}
.mdf_c01228{transform:matrix(0.158190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158190,0.000000,0.000000,0.250000,0,0);}
.m37_c01228{transform:matrix(0.163500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163500,0.000000,0.000000,0.250000,0,0);}
.mc5_c01228{transform:matrix(0.165170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165170,0.000000,0.000000,0.250000,0,0);}
.mfd_c01228{transform:matrix(0.165320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165320,0.000000,0.000000,0.250000,0,0);}
.me0_c01228{transform:matrix(0.166870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166870,0.000000,0.000000,0.250000,0,0);}
.m39_c01228{transform:matrix(0.167310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167310,0.000000,0.000000,0.250000,0,0);}
.me2_c01228{transform:matrix(0.167880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167880,0.000000,0.000000,0.250000,0,0);}
.md8_c01228{transform:matrix(0.169235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169235,0.000000,0.000000,0.250000,0,0);}
.mb_c01228{transform:matrix(0.171303,0.001542,-0.002250,0.249990,0,0);-ms-transform:matrix(0.171303,0.001542,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.171303,0.001542,-0.002250,0.249990,0,0);}
.mff_c01228{transform:matrix(0.171375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171375,0.000000,0.000000,0.250000,0,0);}
.md_c01228{transform:matrix(0.171878,0.001547,-0.002250,0.249990,0,0);-ms-transform:matrix(0.171878,0.001547,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.171878,0.001547,-0.002250,0.249990,0,0);}
.m35_c01228{transform:matrix(0.173275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173275,0.000000,0.000000,0.250000,0,0);}
.mdd_c01228{transform:matrix(0.174180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174180,0.000000,0.000000,0.250000,0,0);}
.mda_c01228{transform:matrix(0.175205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175205,0.000000,0.000000,0.250000,0,0);}
.mc6_c01228{transform:matrix(0.175870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175870,0.000000,0.000000,0.250000,0,0);}
.m3a_c01228{transform:matrix(0.176050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176050,0.000000,0.000000,0.250000,0,0);}
.mcc_c01228{transform:matrix(0.176180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176180,0.000000,0.000000,0.250000,0,0);}
.mdc_c01228{transform:matrix(0.176310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176310,0.000000,0.000000,0.250000,0,0);}
.m38_c01228{transform:matrix(0.176720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176720,0.000000,0.000000,0.250000,0,0);}
.m102_c01228{transform:matrix(0.176730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176730,0.000000,0.000000,0.250000,0,0);}
.mfe_c01228{transform:matrix(0.177200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177200,0.000000,0.000000,0.250000,0,0);}
.mc8_c01228{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.mc9_c01228{transform:matrix(0.178105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178105,0.000000,0.000000,0.250000,0,0);}
.mc2_c01228{transform:matrix(0.178710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178710,0.000000,0.000000,0.250000,0,0);}
.m12d_c01228{transform:matrix(0.181163,0.004348,-0.005998,0.249928,0,0);-ms-transform:matrix(0.181163,0.004348,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.181163,0.004348,-0.005998,0.249928,0,0);}
.m100_c01228{transform:matrix(0.181530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181530,0.000000,0.000000,0.250000,0,0);}
.mc4_c01228{transform:matrix(0.182735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182735,0.000000,0.000000,0.250000,0,0);}
.m134_c01228{transform:matrix(0.182977,0.004391,-0.005998,0.249928,0,0);-ms-transform:matrix(0.182977,0.004391,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.182977,0.004391,-0.005998,0.249928,0,0);}
.m103_c01228{transform:matrix(0.183850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183850,0.000000,0.000000,0.250000,0,0);}
.mbd_c01228{transform:matrix(0.184342,0.002581,-0.003500,0.249976,0,0);-ms-transform:matrix(0.184342,0.002581,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.184342,0.002581,-0.003500,0.249976,0,0);}
.m36_c01228{transform:matrix(0.186305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186305,0.000000,0.000000,0.250000,0,0);}
.m51_c01228{transform:matrix(0.186385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186385,0.000000,0.000000,0.250000,0,0);}
.m34_c01228{transform:matrix(0.186790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186790,0.000000,0.000000,0.250000,0,0);}
.m91_c01228{transform:matrix(0.190536,0.002668,-0.003500,0.249976,0,0);-ms-transform:matrix(0.190536,0.002668,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.190536,0.002668,-0.003500,0.249976,0,0);}
.m53_c01228{transform:matrix(0.190705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190705,0.000000,0.000000,0.250000,0,0);}
.m54_c01228{transform:matrix(0.192620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192620,0.000000,0.000000,0.250000,0,0);}
.m11c_c01228{transform:matrix(0.193040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193040,0.000000,0.000000,0.250000,0,0);}
.m136_c01228{transform:matrix(0.193189,0.004637,-0.005998,0.249928,0,0);-ms-transform:matrix(0.193189,0.004637,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.193189,0.004637,-0.005998,0.249928,0,0);}
.m3b_c01228{transform:matrix(0.193775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193775,0.000000,0.000000,0.250000,0,0);}
.m128_c01228{transform:matrix(0.195260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195260,0.000000,0.000000,0.250000,0,0);}
.m106_c01228{transform:matrix(0.195295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195295,0.000000,0.000000,0.250000,0,0);}
.mf9_c01228{transform:matrix(0.195515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195515,0.000000,0.000000,0.250000,0,0);}
.m126_c01228{transform:matrix(0.195645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195645,0.000000,0.000000,0.250000,0,0);}
.m133_c01228{transform:matrix(0.195854,0.004700,-0.005998,0.249928,0,0);-ms-transform:matrix(0.195854,0.004700,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.195854,0.004700,-0.005998,0.249928,0,0);}
.m11b_c01228{transform:matrix(0.197385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197385,0.000000,0.000000,0.250000,0,0);}
.mf5_c01228{transform:matrix(0.197420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197420,0.000000,0.000000,0.250000,0,0);}
.m9b_c01228{transform:matrix(0.198356,0.002777,-0.003500,0.249976,0,0);-ms-transform:matrix(0.198356,0.002777,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.198356,0.002777,-0.003500,0.249976,0,0);}
.me1_c01228{transform:matrix(0.199405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199405,0.000000,0.000000,0.250000,0,0);}
.m12e_c01228{transform:matrix(0.199762,0.004794,-0.005998,0.249928,0,0);-ms-transform:matrix(0.199762,0.004794,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.199762,0.004794,-0.005998,0.249928,0,0);}
.m129_c01228{transform:matrix(0.199905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199905,0.000000,0.000000,0.250000,0,0);}
.m83_c01228{transform:matrix(0.200425,0.002004,-0.002500,0.249988,0,0);-ms-transform:matrix(0.200425,0.002004,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.200425,0.002004,-0.002500,0.249988,0,0);}
.m11e_c01228{transform:matrix(0.200530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200530,0.000000,0.000000,0.250000,0,0);}
.m118_c01228{transform:matrix(0.200630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200630,0.000000,0.000000,0.250000,0,0);}
.mbe_c01228{transform:matrix(0.201100,0.002815,-0.003500,0.249976,0,0);-ms-transform:matrix(0.201100,0.002815,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.201100,0.002815,-0.003500,0.249976,0,0);}
.mf7_c01228{transform:matrix(0.201495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201495,0.000000,0.000000,0.250000,0,0);}
.m12f_c01228{transform:matrix(0.202382,0.004857,-0.005998,0.249928,0,0);-ms-transform:matrix(0.202382,0.004857,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.202382,0.004857,-0.005998,0.249928,0,0);}
.m7a_c01228{transform:matrix(0.203340,0.002033,-0.002500,0.249988,0,0);-ms-transform:matrix(0.203340,0.002033,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.203340,0.002033,-0.002500,0.249988,0,0);}
.m130_c01228{transform:matrix(0.203766,0.004890,-0.005998,0.249928,0,0);-ms-transform:matrix(0.203766,0.004890,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.203766,0.004890,-0.005998,0.249928,0,0);}
.m132_c01228{transform:matrix(0.203951,0.004895,-0.005998,0.249928,0,0);-ms-transform:matrix(0.203951,0.004895,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.203951,0.004895,-0.005998,0.249928,0,0);}
.m10b_c01228{transform:matrix(0.204125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204125,0.000000,0.000000,0.250000,0,0);}
.m119_c01228{transform:matrix(0.204555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204555,0.000000,0.000000,0.250000,0,0);}
.mbc_c01228{transform:matrix(0.205550,0.002878,-0.003500,0.249976,0,0);-ms-transform:matrix(0.205550,0.002878,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.205550,0.002878,-0.003500,0.249976,0,0);}
.m14_c01228{transform:matrix(0.205627,0.001851,-0.002250,0.249990,0,0);-ms-transform:matrix(0.205627,0.001851,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.205627,0.001851,-0.002250,0.249990,0,0);}
.m108_c01228{transform:matrix(0.205770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205770,0.000000,0.000000,0.250000,0,0);}
.m16_c01228{transform:matrix(0.206032,0.001854,-0.002250,0.249990,0,0);-ms-transform:matrix(0.206032,0.001854,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.206032,0.001854,-0.002250,0.249990,0,0);}
.mc1_c01228{transform:matrix(0.206055,0.002885,-0.003500,0.249976,0,0);-ms-transform:matrix(0.206055,0.002885,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.206055,0.002885,-0.003500,0.249976,0,0);}
.m4e_c01228{transform:matrix(0.206075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206075,0.000000,0.000000,0.250000,0,0);}
.m52_c01228{transform:matrix(0.206435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206435,0.000000,0.000000,0.250000,0,0);}
.me4_c01228{transform:matrix(0.207565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207565,0.000000,0.000000,0.250000,0,0);}
.md7_c01228{transform:matrix(0.207595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207595,0.000000,0.000000,0.250000,0,0);}
.m12a_c01228{transform:matrix(0.208020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208020,0.000000,0.000000,0.250000,0,0);}
.m9e_c01228{transform:matrix(0.208055,0.002913,-0.003500,0.249976,0,0);-ms-transform:matrix(0.208055,0.002913,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.208055,0.002913,-0.003500,0.249976,0,0);}
.m4f_c01228{transform:matrix(0.208095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208095,0.000000,0.000000,0.250000,0,0);}
.m120_c01228{transform:matrix(0.208970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208970,0.000000,0.000000,0.250000,0,0);}
.mb8_c01228{transform:matrix(0.209000,0.002926,-0.003500,0.249976,0,0);-ms-transform:matrix(0.209000,0.002926,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.209000,0.002926,-0.003500,0.249976,0,0);}
.m135_c01228{transform:matrix(0.209685,0.005032,-0.005998,0.249928,0,0);-ms-transform:matrix(0.209685,0.005032,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.209685,0.005032,-0.005998,0.249928,0,0);}
.m17_c01228{transform:matrix(0.210521,0.001895,-0.002250,0.249990,0,0);-ms-transform:matrix(0.210521,0.001895,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.210521,0.001895,-0.002250,0.249990,0,0);}
.m77_c01228{transform:matrix(0.211859,0.002119,-0.002500,0.249988,0,0);-ms-transform:matrix(0.211859,0.002119,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.211859,0.002119,-0.002500,0.249988,0,0);}
.m9d_c01228{transform:matrix(0.211949,0.002967,-0.003500,0.249976,0,0);-ms-transform:matrix(0.211949,0.002967,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.211949,0.002967,-0.003500,0.249976,0,0);}
.md6_c01228{transform:matrix(0.212185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212185,0.000000,0.000000,0.250000,0,0);}
.m99_c01228{transform:matrix(0.212279,0.002972,-0.003500,0.249976,0,0);-ms-transform:matrix(0.212279,0.002972,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.212279,0.002972,-0.003500,0.249976,0,0);}
.meb_c01228{transform:matrix(0.212610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212610,0.000000,0.000000,0.250000,0,0);}
.m11_c01228{transform:matrix(0.213131,0.001918,-0.002250,0.249990,0,0);-ms-transform:matrix(0.213131,0.001918,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.213131,0.001918,-0.002250,0.249990,0,0);}
.md2_c01228{transform:matrix(0.213635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213635,0.000000,0.000000,0.250000,0,0);}
.m57_c01228{transform:matrix(0.214130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214130,0.000000,0.000000,0.250000,0,0);}
.mbf_c01228{transform:matrix(0.215014,0.003010,-0.003500,0.249976,0,0);-ms-transform:matrix(0.215014,0.003010,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.215014,0.003010,-0.003500,0.249976,0,0);}
.m131_c01228{transform:matrix(0.215338,0.005168,-0.005998,0.249928,0,0);-ms-transform:matrix(0.215338,0.005168,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.215338,0.005168,-0.005998,0.249928,0,0);}
.m7_c01228{transform:matrix(0.215696,0.001941,-0.002250,0.249990,0,0);-ms-transform:matrix(0.215696,0.001941,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.215696,0.001941,-0.002250,0.249990,0,0);}
.m85_c01228{transform:matrix(0.215829,0.002158,-0.002500,0.249988,0,0);-ms-transform:matrix(0.215829,0.002158,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.215829,0.002158,-0.002500,0.249988,0,0);}
.m104_c01228{transform:matrix(0.215870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215870,0.000000,0.000000,0.250000,0,0);}
.ma7_c01228{transform:matrix(0.216519,0.003031,-0.003500,0.249976,0,0);-ms-transform:matrix(0.216519,0.003031,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.216519,0.003031,-0.003500,0.249976,0,0);}
.mc0_c01228{transform:matrix(0.216569,0.003032,-0.003500,0.249976,0,0);-ms-transform:matrix(0.216569,0.003032,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.216569,0.003032,-0.003500,0.249976,0,0);}
.m11d_c01228{transform:matrix(0.217125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217125,0.000000,0.000000,0.250000,0,0);}
.m56_c01228{transform:matrix(0.217705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217705,0.000000,0.000000,0.250000,0,0);}
.m8e_c01228{transform:matrix(0.217759,0.002178,-0.002500,0.249988,0,0);-ms-transform:matrix(0.217759,0.002178,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.217759,0.002178,-0.002500,0.249988,0,0);}
.mef_c01228{transform:matrix(0.218795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218795,0.000000,0.000000,0.250000,0,0);}
.m125_c01228{transform:matrix(0.219495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219495,0.000000,0.000000,0.250000,0,0);}
.mcb_c01228{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m110_c01228{transform:matrix(0.220030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220030,0.000000,0.000000,0.250000,0,0);}
.m11a_c01228{transform:matrix(0.220045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220045,0.000000,0.000000,0.250000,0,0);}
.m50_c01228{transform:matrix(0.220515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220515,0.000000,0.000000,0.250000,0,0);}
.md0_c01228{transform:matrix(0.220830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220830,0.000000,0.000000,0.250000,0,0);}
.m10c_c01228{transform:matrix(0.221790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221790,0.000000,0.000000,0.250000,0,0);}
.m7f_c01228{transform:matrix(0.221969,0.002220,-0.002500,0.249988,0,0);-ms-transform:matrix(0.221969,0.002220,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.221969,0.002220,-0.002500,0.249988,0,0);}
.m11f_c01228{transform:matrix(0.222540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222540,0.000000,0.000000,0.250000,0,0);}
.m121_c01228{transform:matrix(0.222670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222670,0.000000,0.000000,0.250000,0,0);}
.m1a_c01228{transform:matrix(0.222916,0.002006,-0.002250,0.249990,0,0);-ms-transform:matrix(0.222916,0.002006,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.222916,0.002006,-0.002250,0.249990,0,0);}
.m2_c01228{transform:matrix(0.223306,0.002010,-0.002250,0.249990,0,0);-ms-transform:matrix(0.223306,0.002010,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.223306,0.002010,-0.002250,0.249990,0,0);}
.m55_c01228{transform:matrix(0.223590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223590,0.000000,0.000000,0.250000,0,0);}
.m8b_c01228{transform:matrix(0.224024,0.002240,-0.002500,0.249988,0,0);-ms-transform:matrix(0.224024,0.002240,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.224024,0.002240,-0.002500,0.249988,0,0);}
.med_c01228{transform:matrix(0.224035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224035,0.000000,0.000000,0.250000,0,0);}
.m107_c01228{transform:matrix(0.224425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224425,0.000000,0.000000,0.250000,0,0);}
.m5e_c01228{transform:matrix(0.224765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224765,0.000000,0.000000,0.250000,0,0);}
.mf6_c01228{transform:matrix(0.225330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225330,0.000000,0.000000,0.250000,0,0);}
.m98_c01228{transform:matrix(0.225373,0.003155,-0.003500,0.249976,0,0);-ms-transform:matrix(0.225373,0.003155,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.225373,0.003155,-0.003500,0.249976,0,0);}
.mf8_c01228{transform:matrix(0.225560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225560,0.000000,0.000000,0.250000,0,0);}
.m15_c01228{transform:matrix(0.225651,0.002031,-0.002250,0.249990,0,0);-ms-transform:matrix(0.225651,0.002031,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.225651,0.002031,-0.002250,0.249990,0,0);}
.m10_c01228{transform:matrix(0.225881,0.002033,-0.002250,0.249990,0,0);-ms-transform:matrix(0.225881,0.002033,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.225881,0.002033,-0.002250,0.249990,0,0);}
.m3_c01228{transform:matrix(0.226356,0.002037,-0.002250,0.249990,0,0);-ms-transform:matrix(0.226356,0.002037,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.226356,0.002037,-0.002250,0.249990,0,0);}
.mfa_c01228{transform:matrix(0.226525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226525,0.000000,0.000000,0.250000,0,0);}
.m124_c01228{transform:matrix(0.226595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226595,0.000000,0.000000,0.250000,0,0);}
.m117_c01228{transform:matrix(0.227005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227005,0.000000,0.000000,0.250000,0,0);}
.m7e_c01228{transform:matrix(0.227129,0.002271,-0.002500,0.249988,0,0);-ms-transform:matrix(0.227129,0.002271,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.227129,0.002271,-0.002500,0.249988,0,0);}
.m9f_c01228{transform:matrix(0.227393,0.003183,-0.003500,0.249976,0,0);-ms-transform:matrix(0.227393,0.003183,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.227393,0.003183,-0.003500,0.249976,0,0);}
.m9a_c01228{transform:matrix(0.227413,0.003184,-0.003500,0.249976,0,0);-ms-transform:matrix(0.227413,0.003184,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.227413,0.003184,-0.003500,0.249976,0,0);}
.ma2_c01228{transform:matrix(0.227468,0.003185,-0.003500,0.249976,0,0);-ms-transform:matrix(0.227468,0.003185,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.227468,0.003185,-0.003500,0.249976,0,0);}
.m87_c01228{transform:matrix(0.227529,0.002275,-0.002500,0.249988,0,0);-ms-transform:matrix(0.227529,0.002275,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.227529,0.002275,-0.002500,0.249988,0,0);}
.mf4_c01228{transform:matrix(0.227540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227540,0.000000,0.000000,0.250000,0,0);}
.m1f_c01228{transform:matrix(0.227546,0.002048,-0.002250,0.249990,0,0);-ms-transform:matrix(0.227546,0.002048,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.227546,0.002048,-0.002250,0.249990,0,0);}
.m84_c01228{transform:matrix(0.228074,0.002281,-0.002500,0.249988,0,0);-ms-transform:matrix(0.228074,0.002281,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.228074,0.002281,-0.002500,0.249988,0,0);}
.m109_c01228{transform:matrix(0.228205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228205,0.000000,0.000000,0.250000,0,0);}
.m5d_c01228{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m61_c01228{transform:matrix(0.229330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229330,0.000000,0.000000,0.250000,0,0);}
.m113_c01228{transform:matrix(0.229430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229430,0.000000,0.000000,0.250000,0,0);}
.m111_c01228{transform:matrix(0.229640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229640,0.000000,0.000000,0.250000,0,0);}
.m10a_c01228{transform:matrix(0.230180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230180,0.000000,0.000000,0.250000,0,0);}
.m7b_c01228{transform:matrix(0.230433,0.002304,-0.002500,0.249988,0,0);-ms-transform:matrix(0.230433,0.002304,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.230433,0.002304,-0.002500,0.249988,0,0);}
.mca_c01228{transform:matrix(0.230680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230680,0.000000,0.000000,0.250000,0,0);}
.mf0_c01228{transform:matrix(0.230800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230800,0.000000,0.000000,0.250000,0,0);}
.mce_c01228{transform:matrix(0.230915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230915,0.000000,0.000000,0.250000,0,0);}
.ma9_c01228{transform:matrix(0.231412,0.003240,-0.003500,0.249976,0,0);-ms-transform:matrix(0.231412,0.003240,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.231412,0.003240,-0.003500,0.249976,0,0);}
.mfc_c01228{transform:matrix(0.231435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231435,0.000000,0.000000,0.250000,0,0);}
.m8_c01228{transform:matrix(0.231621,0.002085,-0.002250,0.249990,0,0);-ms-transform:matrix(0.231621,0.002085,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.231621,0.002085,-0.002250,0.249990,0,0);}
.m114_c01228{transform:matrix(0.231700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231700,0.000000,0.000000,0.250000,0,0);}
.m112_c01228{transform:matrix(0.231895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231895,0.000000,0.000000,0.250000,0,0);}
.m13_c01228{transform:matrix(0.232316,0.002091,-0.002250,0.249990,0,0);-ms-transform:matrix(0.232316,0.002091,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.232316,0.002091,-0.002250,0.249990,0,0);}
.mb3_c01228{transform:matrix(0.232532,0.003255,-0.003500,0.249976,0,0);-ms-transform:matrix(0.232532,0.003255,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.232532,0.003255,-0.003500,0.249976,0,0);}
.mb1_c01228{transform:matrix(0.232627,0.003257,-0.003500,0.249976,0,0);-ms-transform:matrix(0.232627,0.003257,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.232627,0.003257,-0.003500,0.249976,0,0);}
.m10f_c01228{transform:matrix(0.232905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232905,0.000000,0.000000,0.250000,0,0);}
.m18_c01228{transform:matrix(0.233116,0.002098,-0.002250,0.249990,0,0);-ms-transform:matrix(0.233116,0.002098,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.233116,0.002098,-0.002250,0.249990,0,0);}
.md3_c01228{transform:matrix(0.233200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233200,0.000000,0.000000,0.250000,0,0);}
.m12b_c01228{transform:matrix(0.233920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233920,0.000000,0.000000,0.250000,0,0);}
.mfb_c01228{transform:matrix(0.233960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233960,0.000000,0.000000,0.250000,0,0);}
.m4_c01228{transform:matrix(0.234251,0.002108,-0.002250,0.249990,0,0);-ms-transform:matrix(0.234251,0.002108,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.234251,0.002108,-0.002250,0.249990,0,0);}
.m21_c01228{transform:matrix(0.234775,0.002113,-0.002250,0.249990,0,0);-ms-transform:matrix(0.234775,0.002113,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.234775,0.002113,-0.002250,0.249990,0,0);}
.m43_c01228{transform:matrix(0.234841,0.001409,-0.001500,0.249996,0,0);-ms-transform:matrix(0.234841,0.001409,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.234841,0.001409,-0.001500,0.249996,0,0);}
.m12_c01228{transform:matrix(0.235375,0.002118,-0.002250,0.249990,0,0);-ms-transform:matrix(0.235375,0.002118,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.235375,0.002118,-0.002250,0.249990,0,0);}
.m42_c01228{transform:matrix(0.235476,0.001413,-0.001500,0.249996,0,0);-ms-transform:matrix(0.235476,0.001413,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.235476,0.001413,-0.001500,0.249996,0,0);}
.m30_c01228{transform:matrix(0.235905,0.002123,-0.002250,0.249990,0,0);-ms-transform:matrix(0.235905,0.002123,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.235905,0.002123,-0.002250,0.249990,0,0);}
.m46_c01228{transform:matrix(0.235911,0.001415,-0.001500,0.249996,0,0);-ms-transform:matrix(0.235911,0.001415,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.235911,0.001415,-0.001500,0.249996,0,0);}
.m6c_c01228{transform:matrix(0.235989,0.001652,-0.001750,0.249994,0,0);-ms-transform:matrix(0.235989,0.001652,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.235989,0.001652,-0.001750,0.249994,0,0);}
.m45_c01228{transform:matrix(0.236126,0.001417,-0.001500,0.249996,0,0);-ms-transform:matrix(0.236126,0.001417,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.236126,0.001417,-0.001500,0.249996,0,0);}
.md1_c01228{transform:matrix(0.236315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236315,0.000000,0.000000,0.250000,0,0);}
.ma6_c01228{transform:matrix(0.236422,0.003310,-0.003500,0.249976,0,0);-ms-transform:matrix(0.236422,0.003310,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.236422,0.003310,-0.003500,0.249976,0,0);}
.m2d_c01228{transform:matrix(0.236435,0.002128,-0.002250,0.249990,0,0);-ms-transform:matrix(0.236435,0.002128,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.236435,0.002128,-0.002250,0.249990,0,0);}
.me9_c01228{transform:matrix(0.236865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236865,0.000000,0.000000,0.250000,0,0);}
.m76_c01228{transform:matrix(0.237098,0.002371,-0.002500,0.249988,0,0);-ms-transform:matrix(0.237098,0.002371,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.237098,0.002371,-0.002500,0.249988,0,0);}
.m80_c01228{transform:matrix(0.238113,0.002381,-0.002500,0.249988,0,0);-ms-transform:matrix(0.238113,0.002381,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.238113,0.002381,-0.002500,0.249988,0,0);}
.m90_c01228{transform:matrix(0.238433,0.002384,-0.002500,0.249988,0,0);-ms-transform:matrix(0.238433,0.002384,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.238433,0.002384,-0.002500,0.249988,0,0);}
.m68_c01228{transform:matrix(0.238529,0.001670,-0.001750,0.249994,0,0);-ms-transform:matrix(0.238529,0.001670,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.238529,0.001670,-0.001750,0.249994,0,0);}
.m115_c01228{transform:matrix(0.238765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238765,0.000000,0.000000,0.250000,0,0);}
.m81_c01228{transform:matrix(0.238768,0.002388,-0.002500,0.249988,0,0);-ms-transform:matrix(0.238768,0.002388,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.238768,0.002388,-0.002500,0.249988,0,0);}
.m10d_c01228{transform:matrix(0.239430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239430,0.000000,0.000000,0.250000,0,0);}
.mcf_c01228{transform:matrix(0.240525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240525,0.000000,0.000000,0.250000,0,0);}
.md5_c01228{transform:matrix(0.240705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240705,0.000000,0.000000,0.250000,0,0);}
.mea_c01228{transform:matrix(0.240715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240715,0.000000,0.000000,0.250000,0,0);}
.m40_c01228{transform:matrix(0.241296,0.001448,-0.001500,0.249996,0,0);-ms-transform:matrix(0.241296,0.001448,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.241296,0.001448,-0.001500,0.249996,0,0);}
.mf3_c01228{transform:matrix(0.241540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241540,0.000000,0.000000,0.250000,0,0);}
.m82_c01228{transform:matrix(0.241993,0.002420,-0.002500,0.249988,0,0);-ms-transform:matrix(0.241993,0.002420,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.241993,0.002420,-0.002500,0.249988,0,0);}
.m88_c01228{transform:matrix(0.242453,0.002425,-0.002500,0.249988,0,0);-ms-transform:matrix(0.242453,0.002425,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.242453,0.002425,-0.002500,0.249988,0,0);}
.mcd_c01228{transform:matrix(0.244015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244015,0.000000,0.000000,0.250000,0,0);}
.me3_c01228{transform:matrix(0.244775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244775,0.000000,0.000000,0.250000,0,0);}
.mf1_c01228{transform:matrix(0.244785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244785,0.000000,0.000000,0.250000,0,0);}
.m7d_c01228{transform:matrix(0.244788,0.002448,-0.002500,0.249988,0,0);-ms-transform:matrix(0.244788,0.002448,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.244788,0.002448,-0.002500,0.249988,0,0);}
.ma4_c01228{transform:matrix(0.245001,0.003430,-0.003500,0.249976,0,0);-ms-transform:matrix(0.245001,0.003430,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.245001,0.003430,-0.003500,0.249976,0,0);}
.m3d_c01228{transform:matrix(0.245021,0.001470,-0.001500,0.249996,0,0);-ms-transform:matrix(0.245021,0.001470,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.245021,0.001470,-0.001500,0.249996,0,0);}
.m47_c01228{transform:matrix(0.245711,0.001474,-0.001500,0.249996,0,0);-ms-transform:matrix(0.245711,0.001474,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.245711,0.001474,-0.001500,0.249996,0,0);}
.m97_c01228{transform:matrix(0.246161,0.003446,-0.003500,0.249976,0,0);-ms-transform:matrix(0.246161,0.003446,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.246161,0.003446,-0.003500,0.249976,0,0);}
.m92_c01228{transform:matrix(0.246396,0.003450,-0.003500,0.249976,0,0);-ms-transform:matrix(0.246396,0.003450,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.246396,0.003450,-0.003500,0.249976,0,0);}
.m1c_c01228{transform:matrix(0.246595,0.002219,-0.002250,0.249990,0,0);-ms-transform:matrix(0.246595,0.002219,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.246595,0.002219,-0.002250,0.249990,0,0);}
.m1d_c01228{transform:matrix(0.246930,0.002222,-0.002250,0.249990,0,0);-ms-transform:matrix(0.246930,0.002222,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.246930,0.002222,-0.002250,0.249990,0,0);}
.m5c_c01228{transform:matrix(0.246975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246975,0.000000,0.000000,0.250000,0,0);}
.m66_c01228{transform:matrix(0.247609,0.001733,-0.001750,0.249994,0,0);-ms-transform:matrix(0.247609,0.001733,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.247609,0.001733,-0.001750,0.249994,0,0);}
.m62_c01228{transform:matrix(0.247620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247620,0.000000,0.000000,0.250000,0,0);}
.m79_c01228{transform:matrix(0.247703,0.002477,-0.002500,0.249988,0,0);-ms-transform:matrix(0.247703,0.002477,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.247703,0.002477,-0.002500,0.249988,0,0);}
.m6e_c01228{transform:matrix(0.247749,0.001734,-0.001750,0.249994,0,0);-ms-transform:matrix(0.247749,0.001734,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.247749,0.001734,-0.001750,0.249994,0,0);}
.m8d_c01228{transform:matrix(0.247833,0.002478,-0.002500,0.249988,0,0);-ms-transform:matrix(0.247833,0.002478,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.247833,0.002478,-0.002500,0.249988,0,0);}
.me6_c01228{transform:matrix(0.248400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248400,0.000000,0.000000,0.250000,0,0);}
.m31_c01228{transform:matrix(0.248435,0.002236,-0.002250,0.249990,0,0);-ms-transform:matrix(0.248435,0.002236,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.248435,0.002236,-0.002250,0.249990,0,0);}
.m122_c01228{transform:matrix(0.248520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248520,0.000000,0.000000,0.250000,0,0);}
.m6b_c01228{transform:matrix(0.248654,0.001741,-0.001750,0.249994,0,0);-ms-transform:matrix(0.248654,0.001741,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.248654,0.001741,-0.001750,0.249994,0,0);}
.m8f_c01228{transform:matrix(0.249643,0.002496,-0.002500,0.249988,0,0);-ms-transform:matrix(0.249643,0.002496,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.249643,0.002496,-0.002500,0.249988,0,0);}
.m2b_c01228{transform:matrix(0.250460,0.002254,-0.002250,0.249990,0,0);-ms-transform:matrix(0.250460,0.002254,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.250460,0.002254,-0.002250,0.249990,0,0);}
.m6a_c01228{transform:matrix(0.250914,0.001756,-0.001750,0.249994,0,0);-ms-transform:matrix(0.250914,0.001756,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.250914,0.001756,-0.001750,0.249994,0,0);}
.m8a_c01228{transform:matrix(0.251007,0.002510,-0.002500,0.249988,0,0);-ms-transform:matrix(0.251007,0.002510,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.251007,0.002510,-0.002500,0.249988,0,0);}
.m1b_c01228{transform:matrix(0.251910,0.002267,-0.002250,0.249990,0,0);-ms-transform:matrix(0.251910,0.002267,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.251910,0.002267,-0.002250,0.249990,0,0);}
.m127_c01228{transform:matrix(0.252160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252160,0.000000,0.000000,0.250000,0,0);}
.m6f_c01228{transform:matrix(0.252359,0.001767,-0.001750,0.249994,0,0);-ms-transform:matrix(0.252359,0.001767,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.252359,0.001767,-0.001750,0.249994,0,0);}
.mb2_c01228{transform:matrix(0.252725,0.003538,-0.003500,0.249976,0,0);-ms-transform:matrix(0.252725,0.003538,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.252725,0.003538,-0.003500,0.249976,0,0);}
.m6_c01228{transform:matrix(0.252845,0.002276,-0.002250,0.249990,0,0);-ms-transform:matrix(0.252845,0.002276,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.252845,0.002276,-0.002250,0.249990,0,0);}
.mab_c01228{transform:matrix(0.253010,0.003542,-0.003500,0.249976,0,0);-ms-transform:matrix(0.253010,0.003542,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.253010,0.003542,-0.003500,0.249976,0,0);}
.me5_c01228{transform:matrix(0.253810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253810,0.000000,0.000000,0.250000,0,0);}
.m74_c01228{transform:matrix(0.255072,0.002551,-0.002500,0.249988,0,0);-ms-transform:matrix(0.255072,0.002551,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.255072,0.002551,-0.002500,0.249988,0,0);}
.mb9_c01228{transform:matrix(0.255490,0.003577,-0.003500,0.249976,0,0);-ms-transform:matrix(0.255490,0.003577,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.255490,0.003577,-0.003500,0.249976,0,0);}
.m78_c01228{transform:matrix(0.256077,0.002561,-0.002500,0.249988,0,0);-ms-transform:matrix(0.256077,0.002561,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.256077,0.002561,-0.002500,0.249988,0,0);}
.mee_c01228{transform:matrix(0.257795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257795,0.000000,0.000000,0.250000,0,0);}
.m41_c01228{transform:matrix(0.258625,0.001552,-0.001500,0.249996,0,0);-ms-transform:matrix(0.258625,0.001552,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.258625,0.001552,-0.001500,0.249996,0,0);}
.ma3_c01228{transform:matrix(0.259305,0.003630,-0.003500,0.249976,0,0);-ms-transform:matrix(0.259305,0.003630,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.259305,0.003630,-0.003500,0.249976,0,0);}
.mbb_c01228{transform:matrix(0.259590,0.003634,-0.003500,0.249976,0,0);-ms-transform:matrix(0.259590,0.003634,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.259590,0.003634,-0.003500,0.249976,0,0);}
.m8c_c01228{transform:matrix(0.259612,0.002596,-0.002500,0.249988,0,0);-ms-transform:matrix(0.259612,0.002596,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.259612,0.002596,-0.002500,0.249988,0,0);}
.m5f_c01228{transform:matrix(0.259990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259990,0.000000,0.000000,0.250000,0,0);}
.m20_c01228{transform:matrix(0.260994,0.002349,-0.002250,0.249990,0,0);-ms-transform:matrix(0.260994,0.002349,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.260994,0.002349,-0.002250,0.249990,0,0);}
.m2a_c01228{transform:matrix(0.262659,0.002364,-0.002250,0.249990,0,0);-ms-transform:matrix(0.262659,0.002364,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.262659,0.002364,-0.002250,0.249990,0,0);}
.m33_c01228{transform:matrix(0.262929,0.002366,-0.002250,0.249990,0,0);-ms-transform:matrix(0.262929,0.002366,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.262929,0.002366,-0.002250,0.249990,0,0);}
.m2f_c01228{transform:matrix(0.264284,0.002379,-0.002250,0.249990,0,0);-ms-transform:matrix(0.264284,0.002379,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.264284,0.002379,-0.002250,0.249990,0,0);}
.m4d_c01228{transform:matrix(0.264670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264670,0.000000,0.000000,0.250000,0,0);}
.maf_c01228{transform:matrix(0.265034,0.003710,-0.003500,0.249976,0,0);-ms-transform:matrix(0.265034,0.003710,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.265034,0.003710,-0.003500,0.249976,0,0);}
.m67_c01228{transform:matrix(0.265683,0.001860,-0.001750,0.249994,0,0);-ms-transform:matrix(0.265683,0.001860,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.265683,0.001860,-0.001750,0.249994,0,0);}
.m3c_c01228{transform:matrix(0.266005,0.001596,-0.001500,0.249996,0,0);-ms-transform:matrix(0.266005,0.001596,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.266005,0.001596,-0.001500,0.249996,0,0);}
.m2c_c01228{transform:matrix(0.266019,0.002394,-0.002250,0.249990,0,0);-ms-transform:matrix(0.266019,0.002394,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.266019,0.002394,-0.002250,0.249990,0,0);}
.m1e_c01228{transform:matrix(0.266809,0.002401,-0.002250,0.249990,0,0);-ms-transform:matrix(0.266809,0.002401,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.266809,0.002401,-0.002250,0.249990,0,0);}
.m5a_c01228{transform:matrix(0.267865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267865,0.000000,0.000000,0.250000,0,0);}
.m70_c01228{transform:matrix(0.268235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268235,0.000000,0.000000,0.250000,0,0);}
.mb7_c01228{transform:matrix(0.268334,0.003757,-0.003500,0.249976,0,0);-ms-transform:matrix(0.268334,0.003757,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.268334,0.003757,-0.003500,0.249976,0,0);}
.m6d_c01228{transform:matrix(0.269503,0.001887,-0.001750,0.249994,0,0);-ms-transform:matrix(0.269503,0.001887,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.269503,0.001887,-0.001750,0.249994,0,0);}
.m69_c01228{transform:matrix(0.269613,0.001887,-0.001750,0.249994,0,0);-ms-transform:matrix(0.269613,0.001887,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.269613,0.001887,-0.001750,0.249994,0,0);}
.ma8_c01228{transform:matrix(0.269614,0.003775,-0.003500,0.249976,0,0);-ms-transform:matrix(0.269614,0.003775,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.269614,0.003775,-0.003500,0.249976,0,0);}
.mb0_c01228{transform:matrix(0.269674,0.003775,-0.003500,0.249976,0,0);-ms-transform:matrix(0.269674,0.003775,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.269674,0.003775,-0.003500,0.249976,0,0);}
.ma5_c01228{transform:matrix(0.270159,0.003782,-0.003500,0.249976,0,0);-ms-transform:matrix(0.270159,0.003782,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.270159,0.003782,-0.003500,0.249976,0,0);}
.m48_c01228{transform:matrix(0.270430,0.001623,-0.001500,0.249996,0,0);-ms-transform:matrix(0.270430,0.001623,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.270430,0.001623,-0.001500,0.249996,0,0);}
.m2e_c01228{transform:matrix(0.270814,0.002437,-0.002250,0.249990,0,0);-ms-transform:matrix(0.270814,0.002437,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.270814,0.002437,-0.002250,0.249990,0,0);}
.mb5_c01228{transform:matrix(0.271133,0.003796,-0.003500,0.249976,0,0);-ms-transform:matrix(0.271133,0.003796,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.271133,0.003796,-0.003500,0.249976,0,0);}
.m44_c01228{transform:matrix(0.273635,0.001642,-0.001500,0.249996,0,0);-ms-transform:matrix(0.273635,0.001642,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.273635,0.001642,-0.001500,0.249996,0,0);}
.m3f_c01228{transform:matrix(0.273720,0.001642,-0.001500,0.249996,0,0);-ms-transform:matrix(0.273720,0.001642,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.273720,0.001642,-0.001500,0.249996,0,0);}
.m9c_c01228{transform:matrix(0.274158,0.003838,-0.003500,0.249976,0,0);-ms-transform:matrix(0.274158,0.003838,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.274158,0.003838,-0.003500,0.249976,0,0);}
.mb4_c01228{transform:matrix(0.274223,0.003839,-0.003500,0.249976,0,0);-ms-transform:matrix(0.274223,0.003839,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.274223,0.003839,-0.003500,0.249976,0,0);}
.maa_c01228{transform:matrix(0.274433,0.003842,-0.003500,0.249976,0,0);-ms-transform:matrix(0.274433,0.003842,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.274433,0.003842,-0.003500,0.249976,0,0);}
.m3e_c01228{transform:matrix(0.276095,0.001657,-0.001500,0.249996,0,0);-ms-transform:matrix(0.276095,0.001657,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.276095,0.001657,-0.001500,0.249996,0,0);}
.m19_c01228{transform:matrix(0.279264,0.002513,-0.002250,0.249990,0,0);-ms-transform:matrix(0.279264,0.002513,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.279264,0.002513,-0.002250,0.249990,0,0);}
.m22_c01228{transform:matrix(0.279344,0.002514,-0.002250,0.249990,0,0);-ms-transform:matrix(0.279344,0.002514,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.279344,0.002514,-0.002250,0.249990,0,0);}
.md4_c01228{transform:matrix(0.285110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285110,0.000000,0.000000,0.250000,0,0);}
.m96_c01228{transform:matrix(0.285717,0.004000,-0.003500,0.249976,0,0);-ms-transform:matrix(0.285717,0.004000,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.285717,0.004000,-0.003500,0.249976,0,0);}
.mac_c01228{transform:matrix(0.286507,0.004011,-0.003500,0.249976,0,0);-ms-transform:matrix(0.286507,0.004011,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.286507,0.004011,-0.003500,0.249976,0,0);}
.mad_c01228{transform:matrix(0.286697,0.004014,-0.003500,0.249976,0,0);-ms-transform:matrix(0.286697,0.004014,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.286697,0.004014,-0.003500,0.249976,0,0);}
.me7_c01228{transform:matrix(0.286940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286940,0.000000,0.000000,0.250000,0,0);}
.m7c_c01228{transform:matrix(0.288621,0.002886,-0.002500,0.249988,0,0);-ms-transform:matrix(0.288621,0.002886,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.288621,0.002886,-0.002500,0.249988,0,0);}
.m0_c01228{transform:matrix(0.293103,0.002638,-0.002250,0.249990,0,0);-ms-transform:matrix(0.293103,0.002638,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.293103,0.002638,-0.002250,0.249990,0,0);}
.m89_c01228{transform:matrix(0.300675,0.003007,-0.002500,0.249988,0,0);-ms-transform:matrix(0.300675,0.003007,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.300675,0.003007,-0.002500,0.249988,0,0);}
.mae_c01228{transform:matrix(0.310465,0.004347,-0.003500,0.249976,0,0);-ms-transform:matrix(0.310465,0.004347,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.310465,0.004347,-0.003500,0.249976,0,0);}
.m73_c01228{transform:matrix(0.312719,0.003127,-0.002500,0.249988,0,0);-ms-transform:matrix(0.312719,0.003127,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.312719,0.003127,-0.002500,0.249988,0,0);}
.mc_c01228{transform:matrix(0.318967,0.002871,-0.002250,0.249990,0,0);-ms-transform:matrix(0.318967,0.002871,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.318967,0.002871,-0.002250,0.249990,0,0);}
.mba_c01228{transform:matrix(0.319924,0.004479,-0.003500,0.249976,0,0);-ms-transform:matrix(0.319924,0.004479,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.319924,0.004479,-0.003500,0.249976,0,0);}
.ma_c01228{transform:matrix(0.321537,0.002894,-0.002250,0.249990,0,0);-ms-transform:matrix(0.321537,0.002894,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.321537,0.002894,-0.002250,0.249990,0,0);}
.m64_c01228{transform:matrix(0.323620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323620,0.000000,0.000000,0.250000,0,0);}
.m60_c01228{transform:matrix(0.328245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328245,0.000000,0.000000,0.250000,0,0);}
.m105_c01228{transform:matrix(0.331105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331105,0.000000,0.000000,0.250000,0,0);}
.m75_c01228{transform:matrix(0.332043,0.003320,-0.002500,0.249988,0,0);-ms-transform:matrix(0.332043,0.003320,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.332043,0.003320,-0.002500,0.249988,0,0);}
.m32_c01228{transform:matrix(0.339716,0.003057,-0.002250,0.249990,0,0);-ms-transform:matrix(0.339716,0.003057,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.339716,0.003057,-0.002250,0.249990,0,0);}
.m25_c01228{transform:matrix(0.341546,0.003074,-0.002250,0.249990,0,0);-ms-transform:matrix(0.341546,0.003074,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.341546,0.003074,-0.002250,0.249990,0,0);}
.m63_c01228{transform:matrix(0.343855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343855,0.000000,0.000000,0.250000,0,0);}
.m5_c01228{transform:matrix(0.345326,0.003108,-0.002250,0.249990,0,0);-ms-transform:matrix(0.345326,0.003108,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.345326,0.003108,-0.002250,0.249990,0,0);}
.m116_c01228{transform:matrix(0.358330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358330,0.000000,0.000000,0.250000,0,0);}
.m23_c01228{transform:matrix(0.360020,0.003240,-0.002250,0.249990,0,0);-ms-transform:matrix(0.360020,0.003240,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.360020,0.003240,-0.002250,0.249990,0,0);}
.m86_c01228{transform:matrix(0.363057,0.003631,-0.002500,0.249988,0,0);-ms-transform:matrix(0.363057,0.003631,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.363057,0.003631,-0.002500,0.249988,0,0);}
.mf2_c01228{transform:matrix(0.384250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384250,0.000000,0.000000,0.250000,0,0);}
.m72_c01228{transform:matrix(0.394185,0.003942,-0.002500,0.249988,0,0);-ms-transform:matrix(0.394185,0.003942,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.394185,0.003942,-0.002500,0.249988,0,0);}
.m12c_c01228{transform:matrix(0.439423,0.010546,-0.005998,0.249928,0,0);-ms-transform:matrix(0.439423,0.010546,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.439423,0.010546,-0.005998,0.249928,0,0);}
.m137_c01228{transform:matrix(0.470160,0.011284,-0.005998,0.249928,0,0);-ms-transform:matrix(0.470160,0.011284,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.470160,0.011284,-0.005998,0.249928,0,0);}
.m1_c01228{transform:matrix(0.474006,0.004266,-0.002250,0.249990,0,0);-ms-transform:matrix(0.474006,0.004266,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.474006,0.004266,-0.002250,0.249990,0,0);}
.ma0_c01228{transform:matrix(0.483578,0.006770,-0.003500,0.249976,0,0);-ms-transform:matrix(0.483578,0.006770,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.483578,0.006770,-0.003500,0.249976,0,0);}
.m4c_c01228{transform:matrix(0.491510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491510,0.000000,0.000000,0.250000,0,0);}
.m4a_c01228{transform:matrix(0.560495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560495,0.000000,0.000000,0.250000,0,0);}
.m123_c01228{transform:matrix(0.586385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.586385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.586385,0.000000,0.000000,0.250000,0,0);}
.m9_c01228{transform:matrix(0.612465,0.005512,-0.002250,0.249990,0,0);-ms-transform:matrix(0.612465,0.005512,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.612465,0.005512,-0.002250,0.249990,0,0);}
.me8_c01228{transform:matrix(0.665400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665400,0.000000,0.000000,0.250000,0,0);}
.m26_c01228{transform:matrix(0.720721,0.006486,-0.002250,0.249990,0,0);-ms-transform:matrix(0.720721,0.006486,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.720721,0.006486,-0.002250,0.249990,0,0);}
.m5b_c01228{transform:matrix(0.731555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.731555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.731555,0.000000,0.000000,0.250000,0,0);}
.m10e_c01228{transform:matrix(0.887490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.887490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.887490,0.000000,0.000000,0.250000,0,0);}
.m4b_c01228{transform:matrix(1.026375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.026375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.026375,0.000000,0.000000,0.250000,0,0);}
.m49_c01228{transform:matrix(1.528090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.528090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.528090,0.000000,0.000000,0.250000,0,0);}
.m94_c01228{transform:matrix(1.967137,0.027540,-0.003500,0.249976,0,0);-ms-transform:matrix(1.967137,0.027540,-0.003500,0.249976,0,0);-webkit-transform:matrix(1.967137,0.027540,-0.003500,0.249976,0,0);}
.m138_c01228{transform:matrix(2.932965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.932965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.932965,0.000000,0.000000,0.250000,0,0);}
.v0_c01228{vertical-align:0.000000px;}
.ls0_c01228{letter-spacing:0.000000px;}
.sc__c01228{text-shadow:none;}
.sc0_c01228{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__c01228{-webkit-text-stroke:0px transparent;}
.sc0_c01228{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01228{word-spacing:0.000000px;}
._0_c01228{width:34.426183px;}
.fc0_c01228{color:transparent;}
.fs6_c01228{font-size:18.000000px;}
.fs17_c01228{font-size:30.000000px;}
.fsc_c01228{font-size:42.000000px;}
.fs9_c01228{font-size:72.000000px;}
.fs5_c01228{font-size:72.001296px;}
.fsb_c01228{font-size:72.001764px;}
.fs2_c01228{font-size:72.002916px;}
.fs11_c01228{font-size:72.007056px;}
.fsa_c01228{font-size:78.000000px;}
.fs0_c01228{font-size:78.003159px;}
.fsd_c01228{font-size:78.003900px;}
.fsf_c01228{font-size:78.007644px;}
.fs15_c01228{font-size:84.000000px;}
.fs1_c01228{font-size:84.003402px;}
.fse_c01228{font-size:84.004200px;}
.fs10_c01228{font-size:84.008232px;}
.fs8_c01228{font-size:90.000000px;}
.fs12_c01228{font-size:90.008820px;}
.fs16_c01228{font-size:96.027644px;}
.fs4_c01228{font-size:102.000000px;}
.fs13_c01228{font-size:108.000000px;}
.fs14_c01228{font-size:114.000000px;}
.fs7_c01228{font-size:120.000000px;}
.fs3_c01228{font-size:132.005346px;}
.y0_c01228{bottom:0.000000px;}
.y10d_c01228{bottom:0.153000px;}
.y10c_c01228{bottom:36.288240px;}
.y10b_c01228{bottom:37.591584px;}
.y10a_c01228{bottom:39.517908px;}
.y109_c01228{bottom:40.294212px;}
.y108_c01228{bottom:40.838856px;}
.y107_c01228{bottom:42.915444px;}
.y106_c01228{bottom:46.642236px;}
.y105_c01228{bottom:47.198580px;}
.y104_c01228{bottom:48.535872px;}
.y103_c01228{bottom:50.589276px;}
.y102_c01228{bottom:51.396396px;}
.y101_c01228{bottom:52.395000px;}
.y100_c01228{bottom:79.399500px;}
.yff_c01228{bottom:80.014500px;}
.yfe_c01228{bottom:80.496000px;}
.yfd_c01228{bottom:80.974500px;}
.yfc_c01228{bottom:81.963000px;}
.yfb_c01228{bottom:82.081500px;}
.yfa_c01228{bottom:82.800000px;}
.yf9_c01228{bottom:84.136500px;}
.yf8_c01228{bottom:85.324500px;}
.yf7_c01228{bottom:108.708000px;}
.yf6_c01228{bottom:110.503500px;}
.yf5_c01228{bottom:110.946000px;}
.yf4_c01228{bottom:112.956000px;}
.yf3_c01228{bottom:113.370000px;}
.yf2_c01228{bottom:115.141500px;}
.yf1_c01228{bottom:115.821000px;}
.yf0_c01228{bottom:116.701500px;}
.yef_c01228{bottom:118.668000px;}
.yee_c01228{bottom:119.769000px;}
.yed_c01228{bottom:120.637500px;}
.yec_c01228{bottom:121.504500px;}
.yeb_c01228{bottom:153.643500px;}
.yea_c01228{bottom:155.473500px;}
.ye9_c01228{bottom:157.459500px;}
.ye8_c01228{bottom:158.626500px;}
.ye7_c01228{bottom:159.777000px;}
.ye6_c01228{bottom:160.930500px;}
.ye5_c01228{bottom:161.590500px;}
.ye4_c01228{bottom:162.541500px;}
.ye3_c01228{bottom:189.051000px;}
.ye2_c01228{bottom:190.594500px;}
.ye1_c01228{bottom:191.593500px;}
.ye0_c01228{bottom:192.246000px;}
.ydf_c01228{bottom:192.583500px;}
.yde_c01228{bottom:193.360500px;}
.ydd_c01228{bottom:194.220000px;}
.ydc_c01228{bottom:194.665500px;}
.ydb_c01228{bottom:195.210000px;}
.yda_c01228{bottom:225.877500px;}
.yd9_c01228{bottom:226.537500px;}
.yd8_c01228{bottom:226.668000px;}
.yd7_c01228{bottom:227.311500px;}
.yd6_c01228{bottom:227.695500px;}
.yd5_c01228{bottom:227.863500px;}
.yd4_c01228{bottom:228.303000px;}
.yd3_c01228{bottom:228.471000px;}
.yd2_c01228{bottom:228.745500px;}
.yd1_c01228{bottom:228.963000px;}
.yd0_c01228{bottom:258.642000px;}
.ycf_c01228{bottom:260.463000px;}
.yce_c01228{bottom:261.300000px;}
.ycd_c01228{bottom:261.673500px;}
.ycc_c01228{bottom:262.407000px;}
.ycb_c01228{bottom:263.230500px;}
.yca_c01228{bottom:263.610000px;}
.yc9_c01228{bottom:264.450000px;}
.yc8_c01228{bottom:264.811500px;}
.yc7_c01228{bottom:265.411500px;}
.yc6_c01228{bottom:294.714000px;}
.yc5_c01228{bottom:296.833500px;}
.yc4_c01228{bottom:298.381500px;}
.yc3_c01228{bottom:299.289000px;}
.yc2_c01228{bottom:299.832000px;}
.yc1_c01228{bottom:301.600500px;}
.yc0_c01228{bottom:302.127000px;}
.ybf_c01228{bottom:303.168000px;}
.ybe_c01228{bottom:303.690000px;}
.ybd_c01228{bottom:304.563000px;}
.ybc_c01228{bottom:335.502000px;}
.ybb_c01228{bottom:366.223500px;}
.yba_c01228{bottom:367.215000px;}
.yb9_c01228{bottom:367.803000px;}
.yb8_c01228{bottom:368.500500px;}
.yb7_c01228{bottom:368.794500px;}
.yb6_c01228{bottom:370.080000px;}
.yb5_c01228{bottom:371.790000px;}
.yb4_c01228{bottom:372.240000px;}
.yb3_c01228{bottom:372.939000px;}
.yb2_c01228{bottom:373.506000px;}
.yb1_c01228{bottom:374.221500px;}
.yb0_c01228{bottom:399.570000px;}
.yaf_c01228{bottom:405.993000px;}
.yae_c01228{bottom:438.535500px;}
.yad_c01228{bottom:471.729450px;}
.yac_c01228{bottom:473.359335px;}
.yab_c01228{bottom:474.262098px;}
.yaa_c01228{bottom:474.807507px;}
.ya9_c01228{bottom:475.146993px;}
.ya8_c01228{bottom:475.795323px;}
.ya7_c01228{bottom:476.120385px;}
.ya6_c01228{bottom:476.908620px;}
.ya5_c01228{bottom:477.340437px;}
.ya4_c01228{bottom:477.891204px;}
.ya3_c01228{bottom:506.121231px;}
.ya2_c01228{bottom:507.269493px;}
.ya1_c01228{bottom:512.122491px;}
.ya0_c01228{bottom:512.979804px;}
.y9f_c01228{bottom:513.520749px;}
.y9e_c01228{bottom:514.553967px;}
.y9d_c01228{bottom:515.093001px;}
.y9c_c01228{bottom:515.966922px;}
.y9b_c01228{bottom:543.293499px;}
.y9a_c01228{bottom:543.929802px;}
.y99_c01228{bottom:544.174455px;}
.y98_c01228{bottom:544.760820px;}
.y97_c01228{bottom:544.946733px;}
.y96_c01228{bottom:545.714391px;}
.y95_c01228{bottom:546.045672px;}
.y94_c01228{bottom:546.706944px;}
.y93_c01228{bottom:547.235295px;}
.y92_c01228{bottom:547.592868px;}
.y91_c01228{bottom:548.459895px;}
.y90_c01228{bottom:548.904906px;}
.y8f_c01228{bottom:549.446871px;}
.y8e_c01228{bottom:581.049771px;}
.y8d_c01228{bottom:581.338023px;}
.y8c_c01228{bottom:582.126879px;}
.y8b_c01228{bottom:582.746526px;}
.y8a_c01228{bottom:583.052865px;}
.y89_c01228{bottom:583.208010px;}
.y88_c01228{bottom:583.895724px;}
.y87_c01228{bottom:584.133378px;}
.y86_c01228{bottom:584.668038px;}
.y85_c01228{bottom:584.977290px;}
.y84_c01228{bottom:585.357444px;}
.y83_c01228{bottom:613.428807px;}
.y82_c01228{bottom:614.489832px;}
.y81_c01228{bottom:615.381933px;}
.y80_c01228{bottom:617.725680px;}
.y7f_c01228{bottom:618.506166px;}
.y7e_c01228{bottom:620.528361px;}
.y7d_c01228{bottom:621.273000px;}
.y7c_c01228{bottom:651.155385px;}
.y7b_c01228{bottom:651.851100px;}
.y7a_c01228{bottom:652.127490px;}
.y79_c01228{bottom:652.826805px;}
.y78_c01228{bottom:653.883450px;}
.y77_c01228{bottom:654.160125px;}
.y76_c01228{bottom:654.775095px;}
.y75_c01228{bottom:655.118625px;}
.y74_c01228{bottom:655.557405px;}
.y73_c01228{bottom:685.546815px;}
.y72_c01228{bottom:686.077140px;}
.y71_c01228{bottom:686.433510px;}
.y70_c01228{bottom:687.044280px;}
.y6f_c01228{bottom:687.314055px;}
.y6e_c01228{bottom:688.367970px;}
.y6d_c01228{bottom:689.163630px;}
.y6c_c01228{bottom:689.425005px;}
.y6b_c01228{bottom:689.943480px;}
.y6a_c01228{bottom:690.388395px;}
.y69_c01228{bottom:720.729960px;}
.y68_c01228{bottom:722.018595px;}
.y67_c01228{bottom:722.507340px;}
.y66_c01228{bottom:722.808915px;}
.y65_c01228{bottom:723.606030px;}
.y64_c01228{bottom:724.504905px;}
.y63_c01228{bottom:724.801290px;}
.y62_c01228{bottom:725.379480px;}
.y61_c01228{bottom:725.791665px;}
.y60_c01228{bottom:726.299115px;}
.y5f_c01228{bottom:753.231375px;}
.y5e_c01228{bottom:754.324410px;}
.y5d_c01228{bottom:759.240000px;}
.y5c_c01228{bottom:776.250000px;}
.y5b_c01228{bottom:793.076025px;}
.y5a_c01228{bottom:793.236549px;}
.y59_c01228{bottom:793.777247px;}
.y58_c01228{bottom:794.079542px;}
.y57_c01228{bottom:794.397209px;}
.y56_c01228{bottom:794.707210px;}
.y55_c01228{bottom:795.792113px;}
.y54_c01228{bottom:796.022714px;}
.y53_c01228{bottom:796.478183px;}
.y52_c01228{bottom:796.848538px;}
.y51_c01228{bottom:797.580000px;}
.y50_c01228{bottom:825.286500px;}
.y4f_c01228{bottom:826.944000px;}
.y4e_c01228{bottom:827.935500px;}
.y4d_c01228{bottom:828.375000px;}
.y4c_c01228{bottom:828.709500px;}
.y4b_c01228{bottom:830.352000px;}
.y4a_c01228{bottom:830.794500px;}
.y49_c01228{bottom:831.331500px;}
.y48_c01228{bottom:860.760000px;}
.y46_c01228{bottom:867.142500px;}
.y47_c01228{bottom:870.079500px;}
.y45_c01228{bottom:901.816500px;}
.y44_c01228{bottom:932.850000px;}
.y3f_c01228{bottom:936.951783px;}
.y41_c01228{bottom:936.952212px;}
.y40_c01228{bottom:936.952452px;}
.y42_c01228{bottom:936.952821px;}
.y43_c01228{bottom:940.401000px;}
.y3e_c01228{bottom:968.479182px;}
.y3d_c01228{bottom:968.746401px;}
.y3c_c01228{bottom:969.012099px;}
.y3b_c01228{bottom:969.412347px;}
.y3a_c01228{bottom:969.618114px;}
.y39_c01228{bottom:970.209441px;}
.y38_c01228{bottom:970.867179px;}
.y37_c01228{bottom:971.132823px;}
.y36_c01228{bottom:971.460000px;}
.y34_c01228{bottom:1001.466073px;}
.y33_c01228{bottom:1003.124742px;}
.y32_c01228{bottom:1003.568316px;}
.y31_c01228{bottom:1003.899977px;}
.y30_c01228{bottom:1004.666664px;}
.y2f_c01228{bottom:1005.447258px;}
.y2e_c01228{bottom:1005.781564px;}
.y2d_c01228{bottom:1006.534453px;}
.y2c_c01228{bottom:1007.083149px;}
.y2b_c01228{bottom:1007.634301px;}
.y2a_c01228{bottom:1036.687733px;}
.y29_c01228{bottom:1036.979919px;}
.y28_c01228{bottom:1041.388596px;}
.y35_c01228{bottom:1041.559500px;}
.y27_c01228{bottom:1074.546105px;}
.y26_c01228{bottom:1074.661811px;}
.y25_c01228{bottom:1075.478179px;}
.y24_c01228{bottom:1075.744036px;}
.y23_c01228{bottom:1076.395894px;}
.y22_c01228{bottom:1076.606660px;}
.y21_c01228{bottom:1076.934195px;}
.y20_c01228{bottom:1077.127392px;}
.y1f_c01228{bottom:1077.655532px;}
.y1e_c01228{bottom:1077.923871px;}
.y1d_c01228{bottom:1078.447842px;}
.y1c_c01228{bottom:1079.188500px;}
.y1b_c01228{bottom:1107.898688px;}
.y1a_c01228{bottom:1108.449354px;}
.y19_c01228{bottom:1109.454502px;}
.y18_c01228{bottom:1109.999120px;}
.y17_c01228{bottom:1110.339786px;}
.y16_c01228{bottom:1110.891370px;}
.y15_c01228{bottom:1111.225704px;}
.y14_c01228{bottom:1111.997292px;}
.y13_c01228{bottom:1113.086055px;}
.y12_c01228{bottom:1113.534246px;}
.y11_c01228{bottom:1114.071721px;}
.y10_c01228{bottom:1114.779867px;}
.yf_c01228{bottom:1115.230583px;}
.ye_c01228{bottom:1115.639430px;}
.yd_c01228{bottom:1144.362966px;}
.yc_c01228{bottom:1145.529407px;}
.yb_c01228{bottom:1145.638838px;}
.ya_c01228{bottom:1146.357996px;}
.y9_c01228{bottom:1146.848856px;}
.y8_c01228{bottom:1147.152417px;}
.y7_c01228{bottom:1147.847735px;}
.y6_c01228{bottom:1148.057254px;}
.y5_c01228{bottom:1148.542782px;}
.y4_c01228{bottom:1149.018765px;}
.y3_c01228{bottom:1149.424521px;}
.y2_c01228{bottom:1149.914288px;}
.y1_c01228{bottom:1151.551500px;}
.h8_c01228{height:18.000000px;}
.h19_c01228{height:30.000000px;}
.he_c01228{height:42.000000px;}
.hb_c01228{height:72.000000px;}
.h7_c01228{height:72.001296px;}
.hd_c01228{height:72.001764px;}
.h4_c01228{height:72.002916px;}
.h13_c01228{height:72.007056px;}
.hc_c01228{height:78.000000px;}
.h2_c01228{height:78.003159px;}
.hf_c01228{height:78.003900px;}
.h11_c01228{height:78.007644px;}
.h17_c01228{height:84.000000px;}
.h3_c01228{height:84.003402px;}
.h10_c01228{height:84.004200px;}
.h12_c01228{height:84.008232px;}
.ha_c01228{height:90.000000px;}
.h14_c01228{height:90.008820px;}
.h18_c01228{height:96.027644px;}
.h6_c01228{height:102.000000px;}
.h15_c01228{height:108.000000px;}
.h16_c01228{height:114.000000px;}
.h9_c01228{height:120.000000px;}
.h5_c01228{height:132.005346px;}
.h1_c01228{height:1258.500000px;}
.h0_c01228{height:1258.740000px;}
.w0_c01228{width:918.540000px;}
.w1_c01228{width:918.750000px;}
.x0_c01228{left:0.000000px;}
.xd_c01228{left:25.276335px;}
.xe_c01228{left:66.203471px;}
.x44_c01228{left:76.321500px;}
.xf_c01228{left:111.282566px;}
.x3c_c01228{left:131.760000px;}
.x17_c01228{left:148.683633px;}
.xac_c01228{left:166.264500px;}
.x4e_c01228{left:176.460300px;}
.x71_c01228{left:177.970548px;}
.x55_c01228{left:179.173500px;}
.x21_c01228{left:181.053485px;}
.x1_c01228{left:182.280000px;}
.x3f_c01228{left:191.568000px;}
.x4d_c01228{left:194.703000px;}
.x3d_c01228{left:206.280000px;}
.xad_c01228{left:207.873000px;}
.x93_c01228{left:219.429000px;}
.x31_c01228{left:224.100030px;}
.x8a_c01228{left:231.505500px;}
.x64_c01228{left:232.635216px;}
.x45_c01228{left:233.724000px;}
.x29_c01228{left:235.440000px;}
.x2_c01228{left:236.698500px;}
.x9b_c01228{left:240.913500px;}
.x36_c01228{left:245.430000px;}
.x32_c01228{left:258.391263px;}
.x9f_c01228{left:262.581000px;}
.x8b_c01228{left:264.111000px;}
.x72_c01228{left:266.250570px;}
.x94_c01228{left:274.209000px;}
.x5b_c01228{left:276.357120px;}
.x2e_c01228{left:279.351000px;}
.x10_c01228{left:280.649040px;}
.x3_c01228{left:281.782500px;}
.x9c_c01228{left:284.898000px;}
.x61_c01228{left:287.067000px;}
.x40_c01228{left:289.537500px;}
.x22_c01228{left:290.924486px;}
.x46_c01228{left:298.791000px;}
.x95_c01228{left:307.707000px;}
.x33_c01228{left:311.041662px;}
.xa0_c01228{left:317.650500px;}
.xae_c01228{left:327.061500px;}
.x83_c01228{left:329.482500px;}
.x47_c01228{left:331.734000px;}
.x4_c01228{left:334.669500px;}
.x8f_c01228{left:340.272000px;}
.x4f_c01228{left:343.044480px;}
.x37_c01228{left:344.250000px;}
.x7d_c01228{left:351.810000px;}
.x5c_c01228{left:353.305665px;}
.x75_c01228{left:354.592917px;}
.x2a_c01228{left:356.130000px;}
.x8c_c01228{left:362.100000px;}
.x6a_c01228{left:363.810642px;}
.x23_c01228{left:366.244811px;}
.x18_c01228{left:368.739573px;}
.x77_c01228{left:374.220000px;}
.x50_c01228{left:375.983310px;}
.x38_c01228{left:377.460000px;}
.xaf_c01228{left:382.782000px;}
.x7e_c01228{left:386.100000px;}
.x65_c01228{left:387.369399px;}
.x5_c01228{left:388.617000px;}
.x2b_c01228{left:390.690000px;}
.x96_c01228{left:395.475000px;}
.x78_c01228{left:397.980000px;}
.x24_c01228{left:399.723014px;}
.x19_c01228{left:400.873437px;}
.xa8_c01228{left:406.440000px;}
.x6_c01228{left:411.897000px;}
.xa1_c01228{left:415.972500px;}
.x73_c01228{left:418.280328px;}
.x1e_c01228{left:419.566067px;}
.x4c_c01228{left:428.760000px;}
.x56_c01228{left:431.621040px;}
.x39_c01228{left:433.890000px;}
.x98_c01228{left:439.155000px;}
.x2c_c01228{left:444.420000px;}
.x90_c01228{left:449.638500px;}
.x6b_c01228{left:452.381598px;}
.x41_c01228{left:453.732000px;}
.x1a_c01228{left:455.434409px;}
.xa2_c01228{left:460.002000px;}
.x11_c01228{left:466.686366px;}
.x8d_c01228{left:472.588500px;}
.x79_c01228{left:474.120000px;}
.x51_c01228{left:475.921815px;}
.x25_c01228{left:477.788312px;}
.xa9_c01228{left:482.577000px;}
.x7f_c01228{left:484.380000px;}
.x66_c01228{left:485.680038px;}
.x2f_c01228{left:487.528500px;}
.x7_c01228{left:489.154500px;}
.x1b_c01228{left:490.520354px;}
.xa3_c01228{left:493.987500px;}
.x84_c01228{left:495.559500px;}
.x12_c01228{left:500.167569px;}
.x89_c01228{left:505.978500px;}
.x67_c01228{left:507.799701px;}
.x91_c01228{left:516.355500px;}
.x6c_c01228{left:518.583315px;}
.x5d_c01228{left:519.940995px;}
.x2d_c01228{left:521.370000px;}
.x8_c01228{left:522.883500px;}
.x80_c01228{left:528.120000px;}
.x42_c01228{left:531.199500px;}
.x99_c01228{left:538.098000px;}
.x76_c01228{left:540.373812px;}
.x34_c01228{left:550.800000px;}
.x13_c01228{left:555.287570px;}
.xb0_c01228{left:561.246000px;}
.x57_c01228{left:563.415180px;}
.x52_c01228{left:564.484200px;}
.xaa_c01228{left:572.509500px;}
.x48_c01228{left:576.387000px;}
.x9_c01228{left:577.423500px;}
.x7a_c01228{left:583.200000px;}
.x26_c01228{left:587.659326px;}
.x14_c01228{left:589.305759px;}
.x85_c01228{left:594.405000px;}
.x53_c01228{left:597.942030px;}
.x1c_c01228{left:599.285297px;}
.xa4_c01228{left:603.321000px;}
.x5e_c01228{left:607.424250px;}
.xab_c01228{left:615.954000px;}
.x86_c01228{left:617.049000px;}
.x49_c01228{left:619.572000px;}
.x92_c01228{left:626.496000px;}
.x6d_c01228{left:628.477968px;}
.x43_c01228{left:630.346500px;}
.x27_c01228{left:631.944921px;}
.x97_c01228{left:634.189500px;}
.x9a_c01228{left:637.929000px;}
.x68_c01228{left:640.061658px;}
.x5f_c01228{left:641.963940px;}
.x15_c01228{left:643.818273px;}
.x6e_c01228{left:647.008497px;}
.x9d_c01228{left:648.709500px;}
.x3a_c01228{left:653.130000px;}
.x62_c01228{left:654.669000px;}
.xa_c01228{left:657.330000px;}
.x8e_c01228{left:660.012000px;}
.xb_c01228{left:669.489000px;}
.x87_c01228{left:670.689000px;}
.x58_c01228{left:673.521885px;}
.x7b_c01228{left:674.730000px;}
.x30_c01228{left:677.350500px;}
.x3b_c01228{left:687.150000px;}
.x4a_c01228{left:696.814500px;}
.xb1_c01228{left:702.810000px;}
.xa5_c01228{left:703.851000px;}
.x6f_c01228{left:705.609273px;}
.x81_c01228{left:709.830000px;}
.x7c_c01228{left:712.800000px;}
.x88_c01228{left:715.950000px;}
.x59_c01228{left:718.159785px;}
.x4b_c01228{left:719.746500px;}
.x74_c01228{left:721.628844px;}
.xa6_c01228{left:725.944500px;}
.x60_c01228{left:728.937180px;}
.x70_c01228{left:730.050138px;}
.x16_c01228{left:744.333869px;}
.x69_c01228{left:752.776704px;}
.x9e_c01228{left:770.698500px;}
.x35_c01228{left:778.140000px;}
.x1d_c01228{left:779.704170px;}
.xb2_c01228{left:783.073500px;}
.x5a_c01228{left:784.543620px;}
.x1f_c01228{left:786.909144px;}
.x82_c01228{left:792.720000px;}
.x63_c01228{left:794.178000px;}
.x54_c01228{left:795.331995px;}
.x3e_c01228{left:796.500000px;}
.x28_c01228{left:797.739923px;}
.xc_c01228{left:799.093500px;}
.x20_c01228{left:811.206983px;}
.xa7_c01228{left:815.754000px;}
.xb3_c01228{left:837.379500px;}
@media print{
.v0_c01228{vertical-align:0.000000pt;}
.ls0_c01228{letter-spacing:0.000000pt;}
.ws0_c01228{word-spacing:0.000000pt;}
._0_c01228{width:30.601051pt;}
.fs6_c01228{font-size:16.000000pt;}
.fs17_c01228{font-size:26.666667pt;}
.fsc_c01228{font-size:37.333333pt;}
.fs9_c01228{font-size:64.000000pt;}
.fs5_c01228{font-size:64.001152pt;}
.fsb_c01228{font-size:64.001568pt;}
.fs2_c01228{font-size:64.002592pt;}
.fs11_c01228{font-size:64.006272pt;}
.fsa_c01228{font-size:69.333333pt;}
.fs0_c01228{font-size:69.336141pt;}
.fsd_c01228{font-size:69.336800pt;}
.fsf_c01228{font-size:69.340128pt;}
.fs15_c01228{font-size:74.666667pt;}
.fs1_c01228{font-size:74.669691pt;}
.fse_c01228{font-size:74.670400pt;}
.fs10_c01228{font-size:74.673984pt;}
.fs8_c01228{font-size:80.000000pt;}
.fs12_c01228{font-size:80.007840pt;}
.fs16_c01228{font-size:85.357906pt;}
.fs4_c01228{font-size:90.666667pt;}
.fs13_c01228{font-size:96.000000pt;}
.fs14_c01228{font-size:101.333333pt;}
.fs7_c01228{font-size:106.666667pt;}
.fs3_c01228{font-size:117.338085pt;}
.y0_c01228{bottom:0.000000pt;}
.y10d_c01228{bottom:0.136000pt;}
.y10c_c01228{bottom:32.256213pt;}
.y10b_c01228{bottom:33.414741pt;}
.y10a_c01228{bottom:35.127029pt;}
.y109_c01228{bottom:35.817077pt;}
.y108_c01228{bottom:36.301205pt;}
.y107_c01228{bottom:38.147061pt;}
.y106_c01228{bottom:41.459765pt;}
.y105_c01228{bottom:41.954293pt;}
.y104_c01228{bottom:43.142997pt;}
.y103_c01228{bottom:44.968245pt;}
.y102_c01228{bottom:45.685685pt;}
.y101_c01228{bottom:46.573333pt;}
.y100_c01228{bottom:70.577333pt;}
.yff_c01228{bottom:71.124000pt;}
.yfe_c01228{bottom:71.552000pt;}
.yfd_c01228{bottom:71.977333pt;}
.yfc_c01228{bottom:72.856000pt;}
.yfb_c01228{bottom:72.961333pt;}
.yfa_c01228{bottom:73.600000pt;}
.yf9_c01228{bottom:74.788000pt;}
.yf8_c01228{bottom:75.844000pt;}
.yf7_c01228{bottom:96.629333pt;}
.yf6_c01228{bottom:98.225333pt;}
.yf5_c01228{bottom:98.618667pt;}
.yf4_c01228{bottom:100.405333pt;}
.yf3_c01228{bottom:100.773333pt;}
.yf2_c01228{bottom:102.348000pt;}
.yf1_c01228{bottom:102.952000pt;}
.yf0_c01228{bottom:103.734667pt;}
.yef_c01228{bottom:105.482667pt;}
.yee_c01228{bottom:106.461333pt;}
.yed_c01228{bottom:107.233333pt;}
.yec_c01228{bottom:108.004000pt;}
.yeb_c01228{bottom:136.572000pt;}
.yea_c01228{bottom:138.198667pt;}
.ye9_c01228{bottom:139.964000pt;}
.ye8_c01228{bottom:141.001333pt;}
.ye7_c01228{bottom:142.024000pt;}
.ye6_c01228{bottom:143.049333pt;}
.ye5_c01228{bottom:143.636000pt;}
.ye4_c01228{bottom:144.481333pt;}
.ye3_c01228{bottom:168.045333pt;}
.ye2_c01228{bottom:169.417333pt;}
.ye1_c01228{bottom:170.305333pt;}
.ye0_c01228{bottom:170.885333pt;}
.ydf_c01228{bottom:171.185333pt;}
.yde_c01228{bottom:171.876000pt;}
.ydd_c01228{bottom:172.640000pt;}
.ydc_c01228{bottom:173.036000pt;}
.ydb_c01228{bottom:173.520000pt;}
.yda_c01228{bottom:200.780000pt;}
.yd9_c01228{bottom:201.366667pt;}
.yd8_c01228{bottom:201.482667pt;}
.yd7_c01228{bottom:202.054667pt;}
.yd6_c01228{bottom:202.396000pt;}
.yd5_c01228{bottom:202.545333pt;}
.yd4_c01228{bottom:202.936000pt;}
.yd3_c01228{bottom:203.085333pt;}
.yd2_c01228{bottom:203.329333pt;}
.yd1_c01228{bottom:203.522667pt;}
.yd0_c01228{bottom:229.904000pt;}
.ycf_c01228{bottom:231.522667pt;}
.yce_c01228{bottom:232.266667pt;}
.ycd_c01228{bottom:232.598667pt;}
.ycc_c01228{bottom:233.250667pt;}
.ycb_c01228{bottom:233.982667pt;}
.yca_c01228{bottom:234.320000pt;}
.yc9_c01228{bottom:235.066667pt;}
.yc8_c01228{bottom:235.388000pt;}
.yc7_c01228{bottom:235.921333pt;}
.yc6_c01228{bottom:261.968000pt;}
.yc5_c01228{bottom:263.852000pt;}
.yc4_c01228{bottom:265.228000pt;}
.yc3_c01228{bottom:266.034667pt;}
.yc2_c01228{bottom:266.517333pt;}
.yc1_c01228{bottom:268.089333pt;}
.yc0_c01228{bottom:268.557333pt;}
.ybf_c01228{bottom:269.482667pt;}
.ybe_c01228{bottom:269.946667pt;}
.ybd_c01228{bottom:270.722667pt;}
.ybc_c01228{bottom:298.224000pt;}
.ybb_c01228{bottom:325.532000pt;}
.yba_c01228{bottom:326.413333pt;}
.yb9_c01228{bottom:326.936000pt;}
.yb8_c01228{bottom:327.556000pt;}
.yb7_c01228{bottom:327.817333pt;}
.yb6_c01228{bottom:328.960000pt;}
.yb5_c01228{bottom:330.480000pt;}
.yb4_c01228{bottom:330.880000pt;}
.yb3_c01228{bottom:331.501333pt;}
.yb2_c01228{bottom:332.005333pt;}
.yb1_c01228{bottom:332.641333pt;}
.yb0_c01228{bottom:355.173333pt;}
.yaf_c01228{bottom:360.882667pt;}
.yae_c01228{bottom:389.809333pt;}
.yad_c01228{bottom:419.315067pt;}
.yac_c01228{bottom:420.763853pt;}
.yab_c01228{bottom:421.566309pt;}
.yaa_c01228{bottom:422.051117pt;}
.ya9_c01228{bottom:422.352883pt;}
.ya8_c01228{bottom:422.929176pt;}
.ya7_c01228{bottom:423.218120pt;}
.ya6_c01228{bottom:423.918773pt;}
.ya5_c01228{bottom:424.302611pt;}
.ya4_c01228{bottom:424.792181pt;}
.ya3_c01228{bottom:449.885539pt;}
.ya2_c01228{bottom:450.906216pt;}
.ya1_c01228{bottom:455.219992pt;}
.ya0_c01228{bottom:455.982048pt;}
.y9f_c01228{bottom:456.462888pt;}
.y9e_c01228{bottom:457.381304pt;}
.y9d_c01228{bottom:457.860445pt;}
.y9c_c01228{bottom:458.637264pt;}
.y9b_c01228{bottom:482.927555pt;}
.y9a_c01228{bottom:483.493157pt;}
.y99_c01228{bottom:483.710627pt;}
.y98_c01228{bottom:484.231840pt;}
.y97_c01228{bottom:484.397096pt;}
.y96_c01228{bottom:485.079459pt;}
.y95_c01228{bottom:485.373931pt;}
.y94_c01228{bottom:485.961728pt;}
.y93_c01228{bottom:486.431373pt;}
.y92_c01228{bottom:486.749216pt;}
.y91_c01228{bottom:487.519907pt;}
.y90_c01228{bottom:487.915472pt;}
.y8f_c01228{bottom:488.397219pt;}
.y8e_c01228{bottom:516.488685pt;}
.y8d_c01228{bottom:516.744909pt;}
.y8c_c01228{bottom:517.446115pt;}
.y8b_c01228{bottom:517.996912pt;}
.y8a_c01228{bottom:518.269213pt;}
.y89_c01228{bottom:518.407120pt;}
.y88_c01228{bottom:519.018421pt;}
.y87_c01228{bottom:519.229669pt;}
.y86_c01228{bottom:519.704923pt;}
.y85_c01228{bottom:519.979813pt;}
.y84_c01228{bottom:520.317728pt;}
.y83_c01228{bottom:545.270051pt;}
.y82_c01228{bottom:546.213184pt;}
.y81_c01228{bottom:547.006163pt;}
.y80_c01228{bottom:549.089493pt;}
.y7f_c01228{bottom:549.783259pt;}
.y7e_c01228{bottom:551.580765pt;}
.y7d_c01228{bottom:552.242667pt;}
.y7c_c01228{bottom:578.804787pt;}
.y7b_c01228{bottom:579.423200pt;}
.y7a_c01228{bottom:579.668880pt;}
.y79_c01228{bottom:580.290493pt;}
.y78_c01228{bottom:581.229733pt;}
.y77_c01228{bottom:581.475667pt;}
.y76_c01228{bottom:582.022307pt;}
.y75_c01228{bottom:582.327667pt;}
.y74_c01228{bottom:582.717693pt;}
.y73_c01228{bottom:609.374947pt;}
.y72_c01228{bottom:609.846347pt;}
.y71_c01228{bottom:610.163120pt;}
.y70_c01228{bottom:610.706027pt;}
.y6f_c01228{bottom:610.945827pt;}
.y6e_c01228{bottom:611.882640pt;}
.y6d_c01228{bottom:612.589893pt;}
.y6c_c01228{bottom:612.822227pt;}
.y6b_c01228{bottom:613.283093pt;}
.y6a_c01228{bottom:613.678573pt;}
.y69_c01228{bottom:640.648853pt;}
.y68_c01228{bottom:641.794307pt;}
.y67_c01228{bottom:642.228747pt;}
.y66_c01228{bottom:642.496813pt;}
.y65_c01228{bottom:643.205360pt;}
.y64_c01228{bottom:644.004360pt;}
.y63_c01228{bottom:644.267813pt;}
.y62_c01228{bottom:644.781760pt;}
.y61_c01228{bottom:645.148147pt;}
.y60_c01228{bottom:645.599213pt;}
.y5f_c01228{bottom:669.539000pt;}
.y5e_c01228{bottom:670.510587pt;}
.y5d_c01228{bottom:674.880000pt;}
.y5c_c01228{bottom:690.000000pt;}
.y5b_c01228{bottom:704.956467pt;}
.y5a_c01228{bottom:705.099155pt;}
.y59_c01228{bottom:705.579775pt;}
.y58_c01228{bottom:705.848481pt;}
.y57_c01228{bottom:706.130852pt;}
.y56_c01228{bottom:706.406409pt;}
.y55_c01228{bottom:707.370767pt;}
.y54_c01228{bottom:707.575745pt;}
.y53_c01228{bottom:707.980607pt;}
.y52_c01228{bottom:708.309812pt;}
.y51_c01228{bottom:708.960000pt;}
.y50_c01228{bottom:733.588000pt;}
.y4f_c01228{bottom:735.061333pt;}
.y4e_c01228{bottom:735.942667pt;}
.y4d_c01228{bottom:736.333333pt;}
.y4c_c01228{bottom:736.630667pt;}
.y4b_c01228{bottom:738.090667pt;}
.y4a_c01228{bottom:738.484000pt;}
.y49_c01228{bottom:738.961333pt;}
.y48_c01228{bottom:765.120000pt;}
.y46_c01228{bottom:770.793333pt;}
.y47_c01228{bottom:773.404000pt;}
.y45_c01228{bottom:801.614667pt;}
.y44_c01228{bottom:829.200000pt;}
.y3f_c01228{bottom:832.846029pt;}
.y41_c01228{bottom:832.846411pt;}
.y40_c01228{bottom:832.846624pt;}
.y42_c01228{bottom:832.846952pt;}
.y43_c01228{bottom:835.912000pt;}
.y3e_c01228{bottom:860.870384pt;}
.y3d_c01228{bottom:861.107912pt;}
.y3c_c01228{bottom:861.344088pt;}
.y3b_c01228{bottom:861.699864pt;}
.y3a_c01228{bottom:861.882768pt;}
.y39_c01228{bottom:862.408392pt;}
.y38_c01228{bottom:862.993048pt;}
.y37_c01228{bottom:863.229176pt;}
.y36_c01228{bottom:863.520000pt;}
.y34_c01228{bottom:890.192065pt;}
.y33_c01228{bottom:891.666437pt;}
.y32_c01228{bottom:892.060725pt;}
.y31_c01228{bottom:892.355535pt;}
.y30_c01228{bottom:893.037035pt;}
.y2f_c01228{bottom:893.730896pt;}
.y2e_c01228{bottom:894.028057pt;}
.y2d_c01228{bottom:894.697292pt;}
.y2c_c01228{bottom:895.185021pt;}
.y2b_c01228{bottom:895.674935pt;}
.y2a_c01228{bottom:921.500207pt;}
.y29_c01228{bottom:921.759928pt;}
.y28_c01228{bottom:925.678752pt;}
.y35_c01228{bottom:925.830667pt;}
.y27_c01228{bottom:955.152093pt;}
.y26_c01228{bottom:955.254943pt;}
.y25_c01228{bottom:955.980604pt;}
.y24_c01228{bottom:956.216921pt;}
.y23_c01228{bottom:956.796351pt;}
.y22_c01228{bottom:956.983697pt;}
.y21_c01228{bottom:957.274840pt;}
.y20_c01228{bottom:957.446571pt;}
.y1f_c01228{bottom:957.916028pt;}
.y1e_c01228{bottom:958.154552pt;}
.y1d_c01228{bottom:958.620304pt;}
.y1c_c01228{bottom:959.278667pt;}
.y1b_c01228{bottom:984.798833pt;}
.y1a_c01228{bottom:985.288315pt;}
.y19_c01228{bottom:986.181780pt;}
.y18_c01228{bottom:986.665884pt;}
.y17_c01228{bottom:986.968699pt;}
.y16_c01228{bottom:987.458996pt;}
.y15_c01228{bottom:987.756181pt;}
.y14_c01228{bottom:988.442037pt;}
.y13_c01228{bottom:989.409827pt;}
.y12_c01228{bottom:989.808219pt;}
.y11_c01228{bottom:990.285975pt;}
.y10_c01228{bottom:990.915437pt;}
.yf_c01228{bottom:991.316073pt;}
.ye_c01228{bottom:991.679493pt;}
.yd_c01228{bottom:1017.211525pt;}
.yc_c01228{bottom:1018.248361pt;}
.yb_c01228{bottom:1018.345633pt;}
.ya_c01228{bottom:1018.984885pt;}
.y9_c01228{bottom:1019.421205pt;}
.y8_c01228{bottom:1019.691037pt;}
.y7_c01228{bottom:1020.309097pt;}
.y6_c01228{bottom:1020.495337pt;}
.y5_c01228{bottom:1020.926917pt;}
.y4_c01228{bottom:1021.350013pt;}
.y3_c01228{bottom:1021.710685pt;}
.y2_c01228{bottom:1022.146033pt;}
.y1_c01228{bottom:1023.601333pt;}
.h8_c01228{height:16.000000pt;}
.h19_c01228{height:26.666667pt;}
.he_c01228{height:37.333333pt;}
.hb_c01228{height:64.000000pt;}
.h7_c01228{height:64.001152pt;}
.hd_c01228{height:64.001568pt;}
.h4_c01228{height:64.002592pt;}
.h13_c01228{height:64.006272pt;}
.hc_c01228{height:69.333333pt;}
.h2_c01228{height:69.336141pt;}
.hf_c01228{height:69.336800pt;}
.h11_c01228{height:69.340128pt;}
.h17_c01228{height:74.666667pt;}
.h3_c01228{height:74.669691pt;}
.h10_c01228{height:74.670400pt;}
.h12_c01228{height:74.673984pt;}
.ha_c01228{height:80.000000pt;}
.h14_c01228{height:80.007840pt;}
.h18_c01228{height:85.357906pt;}
.h6_c01228{height:90.666667pt;}
.h15_c01228{height:96.000000pt;}
.h16_c01228{height:101.333333pt;}
.h9_c01228{height:106.666667pt;}
.h5_c01228{height:117.338085pt;}
.h1_c01228{height:1118.666667pt;}
.h0_c01228{height:1118.880000pt;}
.w0_c01228{width:816.480000pt;}
.w1_c01228{width:816.666667pt;}
.x0_c01228{left:0.000000pt;}
.xd_c01228{left:22.467853pt;}
.xe_c01228{left:58.847529pt;}
.x44_c01228{left:67.841333pt;}
.xf_c01228{left:98.917836pt;}
.x3c_c01228{left:117.120000pt;}
.x17_c01228{left:132.163229pt;}
.xac_c01228{left:147.790667pt;}
.x4e_c01228{left:156.853600pt;}
.x71_c01228{left:158.196043pt;}
.x55_c01228{left:159.265333pt;}
.x21_c01228{left:160.936431pt;}
.x1_c01228{left:162.026667pt;}
.x3f_c01228{left:170.282667pt;}
.x4d_c01228{left:173.069333pt;}
.x3d_c01228{left:183.360000pt;}
.xad_c01228{left:184.776000pt;}
.x93_c01228{left:195.048000pt;}
.x31_c01228{left:199.200027pt;}
.x8a_c01228{left:205.782667pt;}
.x64_c01228{left:206.786859pt;}
.x45_c01228{left:207.754667pt;}
.x29_c01228{left:209.280000pt;}
.x2_c01228{left:210.398667pt;}
.x9b_c01228{left:214.145333pt;}
.x36_c01228{left:218.160000pt;}
.x32_c01228{left:229.681123pt;}
.x9f_c01228{left:233.405333pt;}
.x8b_c01228{left:234.765333pt;}
.x72_c01228{left:236.667173pt;}
.x94_c01228{left:243.741333pt;}
.x5b_c01228{left:245.650773pt;}
.x2e_c01228{left:248.312000pt;}
.x10_c01228{left:249.465813pt;}
.x3_c01228{left:250.473333pt;}
.x9c_c01228{left:253.242667pt;}
.x61_c01228{left:255.170667pt;}
.x40_c01228{left:257.366667pt;}
.x22_c01228{left:258.599543pt;}
.x46_c01228{left:265.592000pt;}
.x95_c01228{left:273.517333pt;}
.x33_c01228{left:276.481477pt;}
.xa0_c01228{left:282.356000pt;}
.xae_c01228{left:290.721333pt;}
.x83_c01228{left:292.873333pt;}
.x47_c01228{left:294.874667pt;}
.x4_c01228{left:297.484000pt;}
.x8f_c01228{left:302.464000pt;}
.x4f_c01228{left:304.928427pt;}
.x37_c01228{left:306.000000pt;}
.x7d_c01228{left:312.720000pt;}
.x5c_c01228{left:314.049480pt;}
.x75_c01228{left:315.193704pt;}
.x2a_c01228{left:316.560000pt;}
.x8c_c01228{left:321.866667pt;}
.x6a_c01228{left:323.387237pt;}
.x23_c01228{left:325.550943pt;}
.x18_c01228{left:327.768509pt;}
.x77_c01228{left:332.640000pt;}
.x50_c01228{left:334.207387pt;}
.x38_c01228{left:335.520000pt;}
.xaf_c01228{left:340.250667pt;}
.x7e_c01228{left:343.200000pt;}
.x65_c01228{left:344.328355pt;}
.x5_c01228{left:345.437333pt;}
.x2b_c01228{left:347.280000pt;}
.x96_c01228{left:351.533333pt;}
.x78_c01228{left:353.760000pt;}
.x24_c01228{left:355.309345pt;}
.x19_c01228{left:356.331944pt;}
.xa8_c01228{left:361.280000pt;}
.x6_c01228{left:366.130667pt;}
.xa1_c01228{left:369.753333pt;}
.x73_c01228{left:371.804736pt;}
.x1e_c01228{left:372.947615pt;}
.x4c_c01228{left:381.120000pt;}
.x56_c01228{left:383.663147pt;}
.x39_c01228{left:385.680000pt;}
.x98_c01228{left:390.360000pt;}
.x2c_c01228{left:395.040000pt;}
.x90_c01228{left:399.678667pt;}
.x6b_c01228{left:402.116976pt;}
.x41_c01228{left:403.317333pt;}
.x1a_c01228{left:404.830585pt;}
.xa2_c01228{left:408.890667pt;}
.x11_c01228{left:414.832325pt;}
.x8d_c01228{left:420.078667pt;}
.x79_c01228{left:421.440000pt;}
.x51_c01228{left:423.041613pt;}
.x25_c01228{left:424.700721pt;}
.xa9_c01228{left:428.957333pt;}
.x7f_c01228{left:430.560000pt;}
.x66_c01228{left:431.715589pt;}
.x2f_c01228{left:433.358667pt;}
.x7_c01228{left:434.804000pt;}
.x1b_c01228{left:436.018092pt;}
.xa3_c01228{left:439.100000pt;}
.x84_c01228{left:440.497333pt;}
.x12_c01228{left:444.593395pt;}
.x89_c01228{left:449.758667pt;}
.x67_c01228{left:451.377512pt;}
.x91_c01228{left:458.982667pt;}
.x6c_c01228{left:460.962947pt;}
.x5d_c01228{left:462.169773pt;}
.x2d_c01228{left:463.440000pt;}
.x8_c01228{left:464.785333pt;}
.x80_c01228{left:469.440000pt;}
.x42_c01228{left:472.177333pt;}
.x99_c01228{left:478.309333pt;}
.x76_c01228{left:480.332277pt;}
.x34_c01228{left:489.600000pt;}
.x13_c01228{left:493.588951pt;}
.xb0_c01228{left:498.885333pt;}
.x57_c01228{left:500.813493pt;}
.x52_c01228{left:501.763733pt;}
.xaa_c01228{left:508.897333pt;}
.x48_c01228{left:512.344000pt;}
.x9_c01228{left:513.265333pt;}
.x7a_c01228{left:518.400000pt;}
.x26_c01228{left:522.363845pt;}
.x14_c01228{left:523.827341pt;}
.x85_c01228{left:528.360000pt;}
.x53_c01228{left:531.504027pt;}
.x1c_c01228{left:532.698041pt;}
.xa4_c01228{left:536.285333pt;}
.x5e_c01228{left:539.932667pt;}
.xab_c01228{left:547.514667pt;}
.x86_c01228{left:548.488000pt;}
.x49_c01228{left:550.730667pt;}
.x92_c01228{left:556.885333pt;}
.x6d_c01228{left:558.647083pt;}
.x43_c01228{left:560.308000pt;}
.x27_c01228{left:561.728819pt;}
.x97_c01228{left:563.724000pt;}
.x9a_c01228{left:567.048000pt;}
.x68_c01228{left:568.943696pt;}
.x5f_c01228{left:570.634613pt;}
.x15_c01228{left:572.282909pt;}
.x6e_c01228{left:575.118664pt;}
.x9d_c01228{left:576.630667pt;}
.x3a_c01228{left:580.560000pt;}
.x62_c01228{left:581.928000pt;}
.xa_c01228{left:584.293333pt;}
.x8e_c01228{left:586.677333pt;}
.xb_c01228{left:595.101333pt;}
.x87_c01228{left:596.168000pt;}
.x58_c01228{left:598.686120pt;}
.x7b_c01228{left:599.760000pt;}
.x30_c01228{left:602.089333pt;}
.x3b_c01228{left:610.800000pt;}
.x4a_c01228{left:619.390667pt;}
.xb1_c01228{left:624.720000pt;}
.xa5_c01228{left:625.645333pt;}
.x6f_c01228{left:627.208243pt;}
.x81_c01228{left:630.960000pt;}
.x7c_c01228{left:633.600000pt;}
.x88_c01228{left:636.400000pt;}
.x59_c01228{left:638.364253pt;}
.x4b_c01228{left:639.774667pt;}
.x74_c01228{left:641.447861pt;}
.xa6_c01228{left:645.284000pt;}
.x60_c01228{left:647.944160pt;}
.x70_c01228{left:648.933456pt;}
.x16_c01228{left:661.630105pt;}
.x69_c01228{left:669.134848pt;}
.x9e_c01228{left:685.065333pt;}
.x35_c01228{left:691.680000pt;}
.x1d_c01228{left:693.070373pt;}
.xb2_c01228{left:696.065333pt;}
.x5a_c01228{left:697.372107pt;}
.x1f_c01228{left:699.474795pt;}
.x82_c01228{left:704.640000pt;}
.x63_c01228{left:705.936000pt;}
.x54_c01228{left:706.961773pt;}
.x3e_c01228{left:708.000000pt;}
.x28_c01228{left:709.102153pt;}
.xc_c01228{left:710.305333pt;}
.x20_c01228{left:721.072873pt;}
.xa7_c01228{left:725.114667pt;}
.xb3_c01228{left:744.337333pt;}
}





/* 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_c01229 {
    display:none;
  }
  .loading-indicator_c01229.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01229 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_c01229 { 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_c01229" -> "#page-container .classname_c01229")
 */
.pf_c01229 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01229 { /* 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_c01229.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01229 { /* 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_c01229 { /* 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_c01229 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01229 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01229 {overflow:visible;}
  }
}
.c_c01229 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01229 { /* 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_c01229:after { /* webkit #35443 */
  content: '';
}
.t_c01229:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01229 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 */
}
.__c01229 { /* 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_c01229 { /* info for Javascript */
  display:none;
}
.l_c01229 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01229 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01229 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01229: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_c01229 {
    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_c01229.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01229.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_c01229 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01229{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01229;src:url('chunks/assets/font_fd0c0ba61e4839a78750c76b.woff2')format("woff");}.ff1_c01229{font-family:ff1_c01229;line-height:1.000000;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;}
.m1_c01229{transform:matrix(0.145120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145120,0.000000,0.000000,0.250000,0,0);}
.m8_c01229{transform:matrix(0.165950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165950,0.000000,0.000000,0.250000,0,0);}
.m3_c01229{transform:matrix(0.166710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166710,0.000000,0.000000,0.250000,0,0);}
.m5_c01229{transform:matrix(0.178885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178885,0.000000,0.000000,0.250000,0,0);}
.m0_c01229{transform:matrix(0.188100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188100,0.000000,0.000000,0.250000,0,0);}
.m4_c01229{transform:matrix(0.191655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191655,0.000000,0.000000,0.250000,0,0);}
.m6_c01229{transform:matrix(0.225720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225720,0.000000,0.000000,0.250000,0,0);}
.m2_c01229{transform:matrix(0.312420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312420,0.000000,0.000000,0.250000,0,0);}
.m9_c01229{transform:matrix(0.495740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495740,0.000000,0.000000,0.250000,0,0);}
.m7_c01229{transform:matrix(0.607285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.607285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.607285,0.000000,0.000000,0.250000,0,0);}
.v0_c01229{vertical-align:0.000000px;}
.ls0_c01229{letter-spacing:0.000000px;}
.sc__c01229{text-shadow:none;}
.sc0_c01229{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__c01229{-webkit-text-stroke:0px transparent;}
.sc0_c01229{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01229{word-spacing:0.000000px;}
.fc0_c01229{color:transparent;}
.fs2_c01229{font-size:18.000000px;}
.fs0_c01229{font-size:24.000000px;}
.fs1_c01229{font-size:30.000000px;}
.y0_c01229{bottom:0.000000px;}
.ya_c01229{bottom:584.820000px;}
.y9_c01229{bottom:601.830000px;}
.y8_c01229{bottom:612.090000px;}
.y7_c01229{bottom:630.990000px;}
.y6_c01229{bottom:637.740000px;}
.y5_c01229{bottom:643.680000px;}
.y4_c01229{bottom:649.080000px;}
.y3_c01229{bottom:660.960000px;}
.y2_c01229{bottom:665.280000px;}
.y1_c01229{bottom:672.030000px;}
.h4_c01229{height:18.000000px;}
.h2_c01229{height:24.000000px;}
.h3_c01229{height:30.000000px;}
.h1_c01229{height:1258.500000px;}
.h0_c01229{height:1258.740000px;}
.w0_c01229{width:918.540000px;}
.w1_c01229{width:918.750000px;}
.x0_c01229{left:0.000000px;}
.x2_c01229{left:5.130000px;}
.x3_c01229{left:7.290000px;}
.x1_c01229{left:8.910000px;}
@media print{
.v0_c01229{vertical-align:0.000000pt;}
.ls0_c01229{letter-spacing:0.000000pt;}
.ws0_c01229{word-spacing:0.000000pt;}
.fs2_c01229{font-size:16.000000pt;}
.fs0_c01229{font-size:21.333333pt;}
.fs1_c01229{font-size:26.666667pt;}
.y0_c01229{bottom:0.000000pt;}
.ya_c01229{bottom:519.840000pt;}
.y9_c01229{bottom:534.960000pt;}
.y8_c01229{bottom:544.080000pt;}
.y7_c01229{bottom:560.880000pt;}
.y6_c01229{bottom:566.880000pt;}
.y5_c01229{bottom:572.160000pt;}
.y4_c01229{bottom:576.960000pt;}
.y3_c01229{bottom:587.520000pt;}
.y2_c01229{bottom:591.360000pt;}
.y1_c01229{bottom:597.360000pt;}
.h4_c01229{height:16.000000pt;}
.h2_c01229{height:21.333333pt;}
.h3_c01229{height:26.666667pt;}
.h1_c01229{height:1118.666667pt;}
.h0_c01229{height:1118.880000pt;}
.w0_c01229{width:816.480000pt;}
.w1_c01229{width:816.666667pt;}
.x0_c01229{left:0.000000pt;}
.x2_c01229{left:4.560000pt;}
.x3_c01229{left:6.480000pt;}
.x1_c01229{left:7.920000pt;}
}





/* 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_c01230 {
    display:none;
  }
  .loading-indicator_c01230.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01230 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_c01230 { 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_c01230" -> "#page-container .classname_c01230")
 */
.pf_c01230 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01230 { /* 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_c01230.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01230 { /* 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_c01230 { /* 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_c01230 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01230 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01230 {overflow:visible;}
  }
}
.c_c01230 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01230 { /* 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_c01230:after { /* webkit #35443 */
  content: '';
}
.t_c01230:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01230 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 */
}
.__c01230 { /* 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_c01230 { /* info for Javascript */
  display:none;
}
.l_c01230 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01230 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01230 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01230: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_c01230 {
    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_c01230.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01230.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_c01230 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01230{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01230;src:url('chunks/assets/font_c605e72f209fc835e906f064.woff2')format("woff");}.ff1_c01230{font-family:ff1_c01230;line-height:1.000000;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;}
.m100_c01230{transform:matrix(0.010604,0.000117,-0.002750,0.249985,0,0);-ms-transform:matrix(0.010604,0.000117,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.010604,0.000117,-0.002750,0.249985,0,0);}
.m144_c01230{transform:matrix(0.012499,0.000137,-0.002750,0.249985,0,0);-ms-transform:matrix(0.012499,0.000137,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.012499,0.000137,-0.002750,0.249985,0,0);}
.m13b_c01230{transform:matrix(0.016949,0.000186,-0.002750,0.249985,0,0);-ms-transform:matrix(0.016949,0.000186,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.016949,0.000186,-0.002750,0.249985,0,0);}
.md_c01230{transform:matrix(0.017310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.017310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.017310,0.000000,0.000000,0.250000,0,0);}
.m13a_c01230{transform:matrix(0.022769,0.000250,-0.002750,0.249985,0,0);-ms-transform:matrix(0.022769,0.000250,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.022769,0.000250,-0.002750,0.249985,0,0);}
.m134_c01230{transform:matrix(0.064931,0.000714,-0.002750,0.249985,0,0);-ms-transform:matrix(0.064931,0.000714,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.064931,0.000714,-0.002750,0.249985,0,0);}
.m142_c01230{transform:matrix(0.066886,0.000736,-0.002750,0.249985,0,0);-ms-transform:matrix(0.066886,0.000736,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.066886,0.000736,-0.002750,0.249985,0,0);}
.m158_c01230{transform:matrix(0.085484,0.002308,-0.006748,0.249909,0,0);-ms-transform:matrix(0.085484,0.002308,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.085484,0.002308,-0.006748,0.249909,0,0);}
.mee_c01230{transform:matrix(0.090305,0.000903,-0.002500,0.249988,0,0);-ms-transform:matrix(0.090305,0.000903,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.090305,0.000903,-0.002500,0.249988,0,0);}
.m13c_c01230{transform:matrix(0.090495,0.000995,-0.002750,0.249985,0,0);-ms-transform:matrix(0.090495,0.000995,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.090495,0.000995,-0.002750,0.249985,0,0);}
.m128_c01230{transform:matrix(0.113923,0.001253,-0.002750,0.249985,0,0);-ms-transform:matrix(0.113923,0.001253,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.113923,0.001253,-0.002750,0.249985,0,0);}
.m140_c01230{transform:matrix(0.130607,0.001437,-0.002750,0.249985,0,0);-ms-transform:matrix(0.130607,0.001437,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.130607,0.001437,-0.002750,0.249985,0,0);}
.mc6_c01230{transform:matrix(0.133537,0.000935,-0.001750,0.249994,0,0);-ms-transform:matrix(0.133537,0.000935,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.133537,0.000935,-0.001750,0.249994,0,0);}
.mc9_c01230{transform:matrix(0.133917,0.000937,-0.001750,0.249994,0,0);-ms-transform:matrix(0.133917,0.000937,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.133917,0.000937,-0.001750,0.249994,0,0);}
.mc4_c01230{transform:matrix(0.135107,0.000946,-0.001750,0.249994,0,0);-ms-transform:matrix(0.135107,0.000946,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.135107,0.000946,-0.001750,0.249994,0,0);}
.mce_c01230{transform:matrix(0.136702,0.000957,-0.001750,0.249994,0,0);-ms-transform:matrix(0.136702,0.000957,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.136702,0.000957,-0.001750,0.249994,0,0);}
.mc7_c01230{transform:matrix(0.142652,0.000999,-0.001750,0.249994,0,0);-ms-transform:matrix(0.142652,0.000999,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.142652,0.000999,-0.001750,0.249994,0,0);}
.mcb_c01230{transform:matrix(0.146166,0.001023,-0.001750,0.249994,0,0);-ms-transform:matrix(0.146166,0.001023,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.146166,0.001023,-0.001750,0.249994,0,0);}
.m130_c01230{transform:matrix(0.147386,0.001621,-0.002750,0.249985,0,0);-ms-transform:matrix(0.147386,0.001621,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.147386,0.001621,-0.002750,0.249985,0,0);}
.m131_c01230{transform:matrix(0.148561,0.001634,-0.002750,0.249985,0,0);-ms-transform:matrix(0.148561,0.001634,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.148561,0.001634,-0.002750,0.249985,0,0);}
.m129_c01230{transform:matrix(0.149336,0.001643,-0.002750,0.249985,0,0);-ms-transform:matrix(0.149336,0.001643,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.149336,0.001643,-0.002750,0.249985,0,0);}
.mc8_c01230{transform:matrix(0.150041,0.001050,-0.001750,0.249994,0,0);-ms-transform:matrix(0.150041,0.001050,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.150041,0.001050,-0.001750,0.249994,0,0);}
.mc3_c01230{transform:matrix(0.151071,0.001057,-0.001750,0.249994,0,0);-ms-transform:matrix(0.151071,0.001057,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.151071,0.001057,-0.001750,0.249994,0,0);}
.m12b_c01230{transform:matrix(0.151511,0.001667,-0.002750,0.249985,0,0);-ms-transform:matrix(0.151511,0.001667,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.151511,0.001667,-0.002750,0.249985,0,0);}
.mcd_c01230{transform:matrix(0.154001,0.001078,-0.001750,0.249994,0,0);-ms-transform:matrix(0.154001,0.001078,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.154001,0.001078,-0.001750,0.249994,0,0);}
.m12a_c01230{transform:matrix(0.154446,0.001699,-0.002750,0.249985,0,0);-ms-transform:matrix(0.154446,0.001699,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.154446,0.001699,-0.002750,0.249985,0,0);}
.m12d_c01230{transform:matrix(0.156121,0.001717,-0.002750,0.249985,0,0);-ms-transform:matrix(0.156121,0.001717,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.156121,0.001717,-0.002750,0.249985,0,0);}
.m12e_c01230{transform:matrix(0.156881,0.001726,-0.002750,0.249985,0,0);-ms-transform:matrix(0.156881,0.001726,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.156881,0.001726,-0.002750,0.249985,0,0);}
.m13d_c01230{transform:matrix(0.156986,0.001727,-0.002750,0.249985,0,0);-ms-transform:matrix(0.156986,0.001727,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.156986,0.001727,-0.002750,0.249985,0,0);}
.mc2_c01230{transform:matrix(0.157276,0.001101,-0.001750,0.249994,0,0);-ms-transform:matrix(0.157276,0.001101,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.157276,0.001101,-0.001750,0.249994,0,0);}
.m143_c01230{transform:matrix(0.160495,0.001765,-0.002750,0.249985,0,0);-ms-transform:matrix(0.160495,0.001765,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.160495,0.001765,-0.002750,0.249985,0,0);}
.m141_c01230{transform:matrix(0.160855,0.001769,-0.002750,0.249985,0,0);-ms-transform:matrix(0.160855,0.001769,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.160855,0.001769,-0.002750,0.249985,0,0);}
.mc5_c01230{transform:matrix(0.162131,0.001135,-0.001750,0.249994,0,0);-ms-transform:matrix(0.162131,0.001135,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.162131,0.001135,-0.001750,0.249994,0,0);}
.m12c_c01230{transform:matrix(0.164265,0.001807,-0.002750,0.249985,0,0);-ms-transform:matrix(0.164265,0.001807,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.164265,0.001807,-0.002750,0.249985,0,0);}
.m13f_c01230{transform:matrix(0.164325,0.001808,-0.002750,0.249985,0,0);-ms-transform:matrix(0.164325,0.001808,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.164325,0.001808,-0.002750,0.249985,0,0);}
.m137_c01230{transform:matrix(0.164980,0.001815,-0.002750,0.249985,0,0);-ms-transform:matrix(0.164980,0.001815,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.164980,0.001815,-0.002750,0.249985,0,0);}
.m125_c01230{transform:matrix(0.165920,0.001825,-0.002750,0.249985,0,0);-ms-transform:matrix(0.165920,0.001825,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.165920,0.001825,-0.002750,0.249985,0,0);}
.m127_c01230{transform:matrix(0.166810,0.001835,-0.002750,0.249985,0,0);-ms-transform:matrix(0.166810,0.001835,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.166810,0.001835,-0.002750,0.249985,0,0);}
.m126_c01230{transform:matrix(0.170420,0.001875,-0.002750,0.249985,0,0);-ms-transform:matrix(0.170420,0.001875,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.170420,0.001875,-0.002750,0.249985,0,0);}
.mca_c01230{transform:matrix(0.171961,0.001204,-0.001750,0.249994,0,0);-ms-transform:matrix(0.171961,0.001204,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.171961,0.001204,-0.001750,0.249994,0,0);}
.m6_c01230{transform:matrix(0.172100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172100,0.000000,0.000000,0.250000,0,0);}
.m133_c01230{transform:matrix(0.173265,0.001906,-0.002750,0.249985,0,0);-ms-transform:matrix(0.173265,0.001906,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.173265,0.001906,-0.002750,0.249985,0,0);}
.m124_c01230{transform:matrix(0.174289,0.001917,-0.002750,0.249985,0,0);-ms-transform:matrix(0.174289,0.001917,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.174289,0.001917,-0.002750,0.249985,0,0);}
.m4_c01230{transform:matrix(0.178555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178555,0.000000,0.000000,0.250000,0,0);}
.m13e_c01230{transform:matrix(0.181054,0.001992,-0.002750,0.249985,0,0);-ms-transform:matrix(0.181054,0.001992,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.181054,0.001992,-0.002750,0.249985,0,0);}
.m138_c01230{transform:matrix(0.181669,0.001998,-0.002750,0.249985,0,0);-ms-transform:matrix(0.181669,0.001998,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.181669,0.001998,-0.002750,0.249985,0,0);}
.mc_c01230{transform:matrix(0.183635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183635,0.000000,0.000000,0.250000,0,0);}
.m64_c01230{transform:matrix(0.184115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184115,0.000000,0.000000,0.250000,0,0);}
.m3d_c01230{transform:matrix(0.184175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184175,0.000000,0.000000,0.250000,0,0);}
.m11d_c01230{transform:matrix(0.185034,0.002035,-0.002750,0.249985,0,0);-ms-transform:matrix(0.185034,0.002035,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.185034,0.002035,-0.002750,0.249985,0,0);}
.m136_c01230{transform:matrix(0.186434,0.002051,-0.002750,0.249985,0,0);-ms-transform:matrix(0.186434,0.002051,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.186434,0.002051,-0.002750,0.249985,0,0);}
.m45_c01230{transform:matrix(0.186985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186985,0.000000,0.000000,0.250000,0,0);}
.m9_c01230{transform:matrix(0.188460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188460,0.000000,0.000000,0.250000,0,0);}
.mcc_c01230{transform:matrix(0.188960,0.001323,-0.001750,0.249994,0,0);-ms-transform:matrix(0.188960,0.001323,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.188960,0.001323,-0.001750,0.249994,0,0);}
.m98_c01230{transform:matrix(0.189150,0.001324,-0.001750,0.249994,0,0);-ms-transform:matrix(0.189150,0.001324,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.189150,0.001324,-0.001750,0.249994,0,0);}
.m88_c01230{transform:matrix(0.190015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190015,0.000000,0.000000,0.250000,0,0);}
.m5_c01230{transform:matrix(0.190190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190190,0.000000,0.000000,0.250000,0,0);}
.m139_c01230{transform:matrix(0.190703,0.002098,-0.002750,0.249985,0,0);-ms-transform:matrix(0.190703,0.002098,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.190703,0.002098,-0.002750,0.249985,0,0);}
.m0_c01230{transform:matrix(0.191140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191140,0.000000,0.000000,0.250000,0,0);}
.m9c_c01230{transform:matrix(0.191155,0.001338,-0.001750,0.249994,0,0);-ms-transform:matrix(0.191155,0.001338,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.191155,0.001338,-0.001750,0.249994,0,0);}
.m132_c01230{transform:matrix(0.191538,0.002107,-0.002750,0.249985,0,0);-ms-transform:matrix(0.191538,0.002107,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.191538,0.002107,-0.002750,0.249985,0,0);}
.m9f_c01230{transform:matrix(0.194160,0.001359,-0.001750,0.249994,0,0);-ms-transform:matrix(0.194160,0.001359,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.194160,0.001359,-0.001750,0.249994,0,0);}
.m42_c01230{transform:matrix(0.194700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194700,0.000000,0.000000,0.250000,0,0);}
.m162_c01230{transform:matrix(0.195159,0.005269,-0.006748,0.249909,0,0);-ms-transform:matrix(0.195159,0.005269,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.195159,0.005269,-0.006748,0.249909,0,0);}
.m87_c01230{transform:matrix(0.195810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195810,0.000000,0.000000,0.250000,0,0);}
.m35_c01230{transform:matrix(0.197910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197910,0.000000,0.000000,0.250000,0,0);}
.m41_c01230{transform:matrix(0.198090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198090,0.000000,0.000000,0.250000,0,0);}
.ma3_c01230{transform:matrix(0.199325,0.001395,-0.001750,0.249994,0,0);-ms-transform:matrix(0.199325,0.001395,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.199325,0.001395,-0.001750,0.249994,0,0);}
.m3_c01230{transform:matrix(0.199440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199440,0.000000,0.000000,0.250000,0,0);}
.m12f_c01230{transform:matrix(0.200308,0.002203,-0.002750,0.249985,0,0);-ms-transform:matrix(0.200308,0.002203,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.200308,0.002203,-0.002750,0.249985,0,0);}
.m37_c01230{transform:matrix(0.201305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201305,0.000000,0.000000,0.250000,0,0);}
.m5e_c01230{transform:matrix(0.202045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202045,0.000000,0.000000,0.250000,0,0);}
.md6_c01230{transform:matrix(0.202220,0.001416,-0.001750,0.249994,0,0);-ms-transform:matrix(0.202220,0.001416,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.202220,0.001416,-0.001750,0.249994,0,0);}
.m10c_c01230{transform:matrix(0.203153,0.002235,-0.002750,0.249985,0,0);-ms-transform:matrix(0.203153,0.002235,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.203153,0.002235,-0.002750,0.249985,0,0);}
.m7_c01230{transform:matrix(0.204390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204390,0.000000,0.000000,0.250000,0,0);}
.mc1_c01230{transform:matrix(0.204455,0.001431,-0.001750,0.249994,0,0);-ms-transform:matrix(0.204455,0.001431,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.204455,0.001431,-0.001750,0.249994,0,0);}
.m111_c01230{transform:matrix(0.205558,0.002261,-0.002750,0.249985,0,0);-ms-transform:matrix(0.205558,0.002261,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.205558,0.002261,-0.002750,0.249985,0,0);}
.mdf_c01230{transform:matrix(0.205660,0.001440,-0.001750,0.249994,0,0);-ms-transform:matrix(0.205660,0.001440,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.205660,0.001440,-0.001750,0.249994,0,0);}
.m10e_c01230{transform:matrix(0.205778,0.002264,-0.002750,0.249985,0,0);-ms-transform:matrix(0.205778,0.002264,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.205778,0.002264,-0.002750,0.249985,0,0);}
.mfb_c01230{transform:matrix(0.206530,0.002065,-0.002500,0.249988,0,0);-ms-transform:matrix(0.206530,0.002065,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.206530,0.002065,-0.002500,0.249988,0,0);}
.mb_c01230{transform:matrix(0.206820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206820,0.000000,0.000000,0.250000,0,0);}
.ma1_c01230{transform:matrix(0.207890,0.001455,-0.001750,0.249994,0,0);-ms-transform:matrix(0.207890,0.001455,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.207890,0.001455,-0.001750,0.249994,0,0);}
.m150_c01230{transform:matrix(0.208002,0.002288,-0.002750,0.249985,0,0);-ms-transform:matrix(0.208002,0.002288,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.208002,0.002288,-0.002750,0.249985,0,0);}
.md8_c01230{transform:matrix(0.208600,0.001460,-0.001750,0.249994,0,0);-ms-transform:matrix(0.208600,0.001460,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.208600,0.001460,-0.001750,0.249994,0,0);}
.ma5_c01230{transform:matrix(0.208705,0.001461,-0.001750,0.249994,0,0);-ms-transform:matrix(0.208705,0.001461,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.208705,0.001461,-0.001750,0.249994,0,0);}
.m11a_c01230{transform:matrix(0.210517,0.002316,-0.002750,0.249985,0,0);-ms-transform:matrix(0.210517,0.002316,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.210517,0.002316,-0.002750,0.249985,0,0);}
.m8_c01230{transform:matrix(0.210930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210930,0.000000,0.000000,0.250000,0,0);}
.m121_c01230{transform:matrix(0.211307,0.002324,-0.002750,0.249985,0,0);-ms-transform:matrix(0.211307,0.002324,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.211307,0.002324,-0.002750,0.249985,0,0);}
.mad_c01230{transform:matrix(0.212495,0.001487,-0.001750,0.249994,0,0);-ms-transform:matrix(0.212495,0.001487,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.212495,0.001487,-0.001750,0.249994,0,0);}
.m3f_c01230{transform:matrix(0.212510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212510,0.000000,0.000000,0.250000,0,0);}
.m3b_c01230{transform:matrix(0.212515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212515,0.000000,0.000000,0.250000,0,0);}
.m96_c01230{transform:matrix(0.213220,0.001493,-0.001750,0.249994,0,0);-ms-transform:matrix(0.213220,0.001493,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.213220,0.001493,-0.001750,0.249994,0,0);}
.md2_c01230{transform:matrix(0.213355,0.001493,-0.001750,0.249994,0,0);-ms-transform:matrix(0.213355,0.001493,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.213355,0.001493,-0.001750,0.249994,0,0);}
.md1_c01230{transform:matrix(0.213460,0.001494,-0.001750,0.249994,0,0);-ms-transform:matrix(0.213460,0.001494,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.213460,0.001494,-0.001750,0.249994,0,0);}
.m9d_c01230{transform:matrix(0.213665,0.001496,-0.001750,0.249994,0,0);-ms-transform:matrix(0.213665,0.001496,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.213665,0.001496,-0.001750,0.249994,0,0);}
.m97_c01230{transform:matrix(0.213835,0.001497,-0.001750,0.249994,0,0);-ms-transform:matrix(0.213835,0.001497,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.213835,0.001497,-0.001750,0.249994,0,0);}
.m1e_c01230{transform:matrix(0.214700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214700,0.000000,0.000000,0.250000,0,0);}
.m59_c01230{transform:matrix(0.214800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214800,0.000000,0.000000,0.250000,0,0);}
.m10a_c01230{transform:matrix(0.215367,0.002369,-0.002750,0.249985,0,0);-ms-transform:matrix(0.215367,0.002369,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.215367,0.002369,-0.002750,0.249985,0,0);}
.ma_c01230{transform:matrix(0.215700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215700,0.000000,0.000000,0.250000,0,0);}
.m5f_c01230{transform:matrix(0.215910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215910,0.000000,0.000000,0.250000,0,0);}
.m30_c01230{transform:matrix(0.216520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216520,0.000000,0.000000,0.250000,0,0);}
.m9a_c01230{transform:matrix(0.216825,0.001518,-0.001750,0.249994,0,0);-ms-transform:matrix(0.216825,0.001518,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.216825,0.001518,-0.001750,0.249994,0,0);}
.m9e_c01230{transform:matrix(0.217095,0.001520,-0.001750,0.249994,0,0);-ms-transform:matrix(0.217095,0.001520,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.217095,0.001520,-0.001750,0.249994,0,0);}
.mfe_c01230{transform:matrix(0.217209,0.002172,-0.002500,0.249988,0,0);-ms-transform:matrix(0.217209,0.002172,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.217209,0.002172,-0.002500,0.249988,0,0);}
.md5_c01230{transform:matrix(0.217360,0.001522,-0.001750,0.249994,0,0);-ms-transform:matrix(0.217360,0.001522,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.217360,0.001522,-0.001750,0.249994,0,0);}
.m160_c01230{transform:matrix(0.217541,0.005874,-0.006748,0.249909,0,0);-ms-transform:matrix(0.217541,0.005874,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.217541,0.005874,-0.006748,0.249909,0,0);}
.m114_c01230{transform:matrix(0.218107,0.002399,-0.002750,0.249985,0,0);-ms-transform:matrix(0.218107,0.002399,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.218107,0.002399,-0.002750,0.249985,0,0);}
.ma4_c01230{transform:matrix(0.218115,0.001527,-0.001750,0.249994,0,0);-ms-transform:matrix(0.218115,0.001527,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.218115,0.001527,-0.001750,0.249994,0,0);}
.m40_c01230{transform:matrix(0.218240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218240,0.000000,0.000000,0.250000,0,0);}
.m62_c01230{transform:matrix(0.218380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218380,0.000000,0.000000,0.250000,0,0);}
.m66_c01230{transform:matrix(0.218460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218460,0.000000,0.000000,0.250000,0,0);}
.m44_c01230{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m47_c01230{transform:matrix(0.218825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218825,0.000000,0.000000,0.250000,0,0);}
.mfd_c01230{transform:matrix(0.219674,0.002197,-0.002500,0.249988,0,0);-ms-transform:matrix(0.219674,0.002197,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.219674,0.002197,-0.002500,0.249988,0,0);}
.m9b_c01230{transform:matrix(0.220330,0.001542,-0.001750,0.249994,0,0);-ms-transform:matrix(0.220330,0.001542,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.220330,0.001542,-0.001750,0.249994,0,0);}
.me4_c01230{transform:matrix(0.220515,0.001544,-0.001750,0.249994,0,0);-ms-transform:matrix(0.220515,0.001544,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.220515,0.001544,-0.001750,0.249994,0,0);}
.m20_c01230{transform:matrix(0.220890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220890,0.000000,0.000000,0.250000,0,0);}
.m99_c01230{transform:matrix(0.221220,0.001549,-0.001750,0.249994,0,0);-ms-transform:matrix(0.221220,0.001549,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.221220,0.001549,-0.001750,0.249994,0,0);}
.ma6_c01230{transform:matrix(0.221235,0.001549,-0.001750,0.249994,0,0);-ms-transform:matrix(0.221235,0.001549,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.221235,0.001549,-0.001750,0.249994,0,0);}
.m22_c01230{transform:matrix(0.221455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221455,0.000000,0.000000,0.250000,0,0);}
.m43_c01230{transform:matrix(0.221720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221720,0.000000,0.000000,0.250000,0,0);}
.m120_c01230{transform:matrix(0.221867,0.002441,-0.002750,0.249985,0,0);-ms-transform:matrix(0.221867,0.002441,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.221867,0.002441,-0.002750,0.249985,0,0);}
.m46_c01230{transform:matrix(0.221940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221940,0.000000,0.000000,0.250000,0,0);}
.m15e_c01230{transform:matrix(0.222059,0.005996,-0.006748,0.249909,0,0);-ms-transform:matrix(0.222059,0.005996,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.222059,0.005996,-0.006748,0.249909,0,0);}
.mcf_c01230{transform:matrix(0.222630,0.001558,-0.001750,0.249994,0,0);-ms-transform:matrix(0.222630,0.001558,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.222630,0.001558,-0.001750,0.249994,0,0);}
.m1f_c01230{transform:matrix(0.222940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222940,0.000000,0.000000,0.250000,0,0);}
.m39_c01230{transform:matrix(0.223270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223270,0.000000,0.000000,0.250000,0,0);}
.mbe_c01230{transform:matrix(0.223375,0.001564,-0.001750,0.249994,0,0);-ms-transform:matrix(0.223375,0.001564,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.223375,0.001564,-0.001750,0.249994,0,0);}
.m112_c01230{transform:matrix(0.223811,0.002462,-0.002750,0.249985,0,0);-ms-transform:matrix(0.223811,0.002462,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.223811,0.002462,-0.002750,0.249985,0,0);}
.m163_c01230{transform:matrix(0.223988,0.006048,-0.006748,0.249909,0,0);-ms-transform:matrix(0.223988,0.006048,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.223988,0.006048,-0.006748,0.249909,0,0);}
.m1b_c01230{transform:matrix(0.224070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224070,0.000000,0.000000,0.250000,0,0);}
.m11c_c01230{transform:matrix(0.224576,0.002470,-0.002750,0.249985,0,0);-ms-transform:matrix(0.224576,0.002470,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.224576,0.002470,-0.002750,0.249985,0,0);}
.mff_c01230{transform:matrix(0.224739,0.002247,-0.002500,0.249988,0,0);-ms-transform:matrix(0.224739,0.002247,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.224739,0.002247,-0.002500,0.249988,0,0);}
.m3e_c01230{transform:matrix(0.224865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224865,0.000000,0.000000,0.250000,0,0);}
.m3c_c01230{transform:matrix(0.225350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225350,0.000000,0.000000,0.250000,0,0);}
.md3_c01230{transform:matrix(0.225904,0.001581,-0.001750,0.249994,0,0);-ms-transform:matrix(0.225904,0.001581,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.225904,0.001581,-0.001750,0.249994,0,0);}
.m91_c01230{transform:matrix(0.226059,0.001582,-0.001750,0.249994,0,0);-ms-transform:matrix(0.226059,0.001582,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.226059,0.001582,-0.001750,0.249994,0,0);}
.m110_c01230{transform:matrix(0.226171,0.002488,-0.002750,0.249985,0,0);-ms-transform:matrix(0.226171,0.002488,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.226171,0.002488,-0.002750,0.249985,0,0);}
.m135_c01230{transform:matrix(0.226651,0.002493,-0.002750,0.249985,0,0);-ms-transform:matrix(0.226651,0.002493,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.226651,0.002493,-0.002750,0.249985,0,0);}
.m38_c01230{transform:matrix(0.226815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226815,0.000000,0.000000,0.250000,0,0);}
.mfc_c01230{transform:matrix(0.227124,0.002271,-0.002500,0.249988,0,0);-ms-transform:matrix(0.227124,0.002271,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.227124,0.002271,-0.002500,0.249988,0,0);}
.m153_c01230{transform:matrix(0.227841,0.002506,-0.002750,0.249985,0,0);-ms-transform:matrix(0.227841,0.002506,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.227841,0.002506,-0.002750,0.249985,0,0);}
.m11b_c01230{transform:matrix(0.228121,0.002509,-0.002750,0.249985,0,0);-ms-transform:matrix(0.228121,0.002509,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.228121,0.002509,-0.002750,0.249985,0,0);}
.m63_c01230{transform:matrix(0.228165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228165,0.000000,0.000000,0.250000,0,0);}
.mb8_c01230{transform:matrix(0.228189,0.001597,-0.001750,0.249994,0,0);-ms-transform:matrix(0.228189,0.001597,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.228189,0.001597,-0.001750,0.249994,0,0);}
.m10_c01230{transform:matrix(0.228230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228230,0.000000,0.000000,0.250000,0,0);}
.m53_c01230{transform:matrix(0.228255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228255,0.000000,0.000000,0.250000,0,0);}
.m33_c01230{transform:matrix(0.228455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228455,0.000000,0.000000,0.250000,0,0);}
.m123_c01230{transform:matrix(0.228766,0.002516,-0.002750,0.249985,0,0);-ms-transform:matrix(0.228766,0.002516,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.228766,0.002516,-0.002750,0.249985,0,0);}
.m155_c01230{transform:matrix(0.228831,0.002517,-0.002750,0.249985,0,0);-ms-transform:matrix(0.228831,0.002517,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.228831,0.002517,-0.002750,0.249985,0,0);}
.mbb_c01230{transform:matrix(0.229144,0.001604,-0.001750,0.249994,0,0);-ms-transform:matrix(0.229144,0.001604,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.229144,0.001604,-0.001750,0.249994,0,0);}
.m32_c01230{transform:matrix(0.229210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229210,0.000000,0.000000,0.250000,0,0);}
.m11e_c01230{transform:matrix(0.229281,0.002522,-0.002750,0.249985,0,0);-ms-transform:matrix(0.229281,0.002522,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.229281,0.002522,-0.002750,0.249985,0,0);}
.m5d_c01230{transform:matrix(0.229775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229775,0.000000,0.000000,0.250000,0,0);}
.m156_c01230{transform:matrix(0.229891,0.002529,-0.002750,0.249985,0,0);-ms-transform:matrix(0.229891,0.002529,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.229891,0.002529,-0.002750,0.249985,0,0);}
.m4a_c01230{transform:matrix(0.230340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230340,0.000000,0.000000,0.250000,0,0);}
.m152_c01230{transform:matrix(0.230431,0.002535,-0.002750,0.249985,0,0);-ms-transform:matrix(0.230431,0.002535,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.230431,0.002535,-0.002750,0.249985,0,0);}
.maf_c01230{transform:matrix(0.230824,0.001616,-0.001750,0.249994,0,0);-ms-transform:matrix(0.230824,0.001616,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.230824,0.001616,-0.001750,0.249994,0,0);}
.mb3_c01230{transform:matrix(0.230889,0.001616,-0.001750,0.249994,0,0);-ms-transform:matrix(0.230889,0.001616,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.230889,0.001616,-0.001750,0.249994,0,0);}
.m1d_c01230{transform:matrix(0.230915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230915,0.000000,0.000000,0.250000,0,0);}
.me2_c01230{transform:matrix(0.231194,0.001618,-0.001750,0.249994,0,0);-ms-transform:matrix(0.231194,0.001618,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.231194,0.001618,-0.001750,0.249994,0,0);}
.m2b_c01230{transform:matrix(0.231625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231625,0.000000,0.000000,0.250000,0,0);}
.m10b_c01230{transform:matrix(0.232081,0.002553,-0.002750,0.249985,0,0);-ms-transform:matrix(0.232081,0.002553,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.232081,0.002553,-0.002750,0.249985,0,0);}
.m34_c01230{transform:matrix(0.232390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232390,0.000000,0.000000,0.250000,0,0);}
.mb9_c01230{transform:matrix(0.232489,0.001627,-0.001750,0.249994,0,0);-ms-transform:matrix(0.232489,0.001627,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.232489,0.001627,-0.001750,0.249994,0,0);}
.mb7_c01230{transform:matrix(0.232514,0.001628,-0.001750,0.249994,0,0);-ms-transform:matrix(0.232514,0.001628,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.232514,0.001628,-0.001750,0.249994,0,0);}
.mdc_c01230{transform:matrix(0.232564,0.001628,-0.001750,0.249994,0,0);-ms-transform:matrix(0.232564,0.001628,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.232564,0.001628,-0.001750,0.249994,0,0);}
.m17_c01230{transform:matrix(0.232625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232625,0.000000,0.000000,0.250000,0,0);}
.m10f_c01230{transform:matrix(0.232911,0.002562,-0.002750,0.249985,0,0);-ms-transform:matrix(0.232911,0.002562,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.232911,0.002562,-0.002750,0.249985,0,0);}
.m122_c01230{transform:matrix(0.232961,0.002563,-0.002750,0.249985,0,0);-ms-transform:matrix(0.232961,0.002563,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.232961,0.002563,-0.002750,0.249985,0,0);}
.m4c_c01230{transform:matrix(0.232985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232985,0.000000,0.000000,0.250000,0,0);}
.ma0_c01230{transform:matrix(0.233214,0.001633,-0.001750,0.249994,0,0);-ms-transform:matrix(0.233214,0.001633,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.233214,0.001633,-0.001750,0.249994,0,0);}
.m60_c01230{transform:matrix(0.233420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233420,0.000000,0.000000,0.250000,0,0);}
.mda_c01230{transform:matrix(0.233564,0.001635,-0.001750,0.249994,0,0);-ms-transform:matrix(0.233564,0.001635,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.233564,0.001635,-0.001750,0.249994,0,0);}
.m15c_c01230{transform:matrix(0.233585,0.006307,-0.006748,0.249909,0,0);-ms-transform:matrix(0.233585,0.006307,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.233585,0.006307,-0.006748,0.249909,0,0);}
.md0_c01230{transform:matrix(0.233659,0.001636,-0.001750,0.249994,0,0);-ms-transform:matrix(0.233659,0.001636,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.233659,0.001636,-0.001750,0.249994,0,0);}
.m108_c01230{transform:matrix(0.233681,0.002570,-0.002750,0.249985,0,0);-ms-transform:matrix(0.233681,0.002570,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.233681,0.002570,-0.002750,0.249985,0,0);}
.m55_c01230{transform:matrix(0.233735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233735,0.000000,0.000000,0.250000,0,0);}
.m6e_c01230{transform:matrix(0.233800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233800,0.000000,0.000000,0.250000,0,0);}
.m151_c01230{transform:matrix(0.233991,0.002574,-0.002750,0.249985,0,0);-ms-transform:matrix(0.233991,0.002574,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.233991,0.002574,-0.002750,0.249985,0,0);}
.m12_c01230{transform:matrix(0.234260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234260,0.000000,0.000000,0.250000,0,0);}
.m103_c01230{transform:matrix(0.234346,0.002578,-0.002750,0.249985,0,0);-ms-transform:matrix(0.234346,0.002578,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.234346,0.002578,-0.002750,0.249985,0,0);}
.m28_c01230{transform:matrix(0.234360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234360,0.000000,0.000000,0.250000,0,0);}
.m165_c01230{transform:matrix(0.234395,0.006329,-0.006748,0.249909,0,0);-ms-transform:matrix(0.234395,0.006329,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.234395,0.006329,-0.006748,0.249909,0,0);}
.m11f_c01230{transform:matrix(0.234431,0.002579,-0.002750,0.249985,0,0);-ms-transform:matrix(0.234431,0.002579,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.234431,0.002579,-0.002750,0.249985,0,0);}
.mf0_c01230{transform:matrix(0.234523,0.002345,-0.002500,0.249988,0,0);-ms-transform:matrix(0.234523,0.002345,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.234523,0.002345,-0.002500,0.249988,0,0);}
.mbf_c01230{transform:matrix(0.234974,0.001645,-0.001750,0.249994,0,0);-ms-transform:matrix(0.234974,0.001645,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.234974,0.001645,-0.001750,0.249994,0,0);}
.m3a_c01230{transform:matrix(0.235035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235035,0.000000,0.000000,0.250000,0,0);}
.m15b_c01230{transform:matrix(0.235229,0.006351,-0.006748,0.249909,0,0);-ms-transform:matrix(0.235229,0.006351,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.235229,0.006351,-0.006748,0.249909,0,0);}
.m157_c01230{transform:matrix(0.235396,0.002589,-0.002750,0.249985,0,0);-ms-transform:matrix(0.235396,0.002589,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.235396,0.002589,-0.002750,0.249985,0,0);}
.m36_c01230{transform:matrix(0.235785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235785,0.000000,0.000000,0.250000,0,0);}
.m113_c01230{transform:matrix(0.235921,0.002595,-0.002750,0.249985,0,0);-ms-transform:matrix(0.235921,0.002595,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.235921,0.002595,-0.002750,0.249985,0,0);}
.md9_c01230{transform:matrix(0.236224,0.001654,-0.001750,0.249994,0,0);-ms-transform:matrix(0.236224,0.001654,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.236224,0.001654,-0.001750,0.249994,0,0);}
.mb1_c01230{transform:matrix(0.236439,0.001655,-0.001750,0.249994,0,0);-ms-transform:matrix(0.236439,0.001655,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.236439,0.001655,-0.001750,0.249994,0,0);}
.m24_c01230{transform:matrix(0.236440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236440,0.000000,0.000000,0.250000,0,0);}
.m10d_c01230{transform:matrix(0.236451,0.002601,-0.002750,0.249985,0,0);-ms-transform:matrix(0.236451,0.002601,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.236451,0.002601,-0.002750,0.249985,0,0);}
.me_c01230{transform:matrix(0.236480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236480,0.000000,0.000000,0.250000,0,0);}
.md7_c01230{transform:matrix(0.236519,0.001656,-0.001750,0.249994,0,0);-ms-transform:matrix(0.236519,0.001656,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.236519,0.001656,-0.001750,0.249994,0,0);}
.m61_c01230{transform:matrix(0.236740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236740,0.000000,0.000000,0.250000,0,0);}
.mea_c01230{transform:matrix(0.237013,0.002370,-0.002500,0.249988,0,0);-ms-transform:matrix(0.237013,0.002370,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.237013,0.002370,-0.002500,0.249988,0,0);}
.m31_c01230{transform:matrix(0.237035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237035,0.000000,0.000000,0.250000,0,0);}
.mb5_c01230{transform:matrix(0.237164,0.001660,-0.001750,0.249994,0,0);-ms-transform:matrix(0.237164,0.001660,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.237164,0.001660,-0.001750,0.249994,0,0);}
.m7a_c01230{transform:matrix(0.237185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237185,0.000000,0.000000,0.250000,0,0);}
.m72_c01230{transform:matrix(0.237245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237245,0.000000,0.000000,0.250000,0,0);}
.mf4_c01230{transform:matrix(0.237673,0.002377,-0.002500,0.249988,0,0);-ms-transform:matrix(0.237673,0.002377,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.237673,0.002377,-0.002500,0.249988,0,0);}
.md4_c01230{transform:matrix(0.237734,0.001664,-0.001750,0.249994,0,0);-ms-transform:matrix(0.237734,0.001664,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.237734,0.001664,-0.001750,0.249994,0,0);}
.m65_c01230{transform:matrix(0.237860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237860,0.000000,0.000000,0.250000,0,0);}
.m115_c01230{transform:matrix(0.238146,0.002620,-0.002750,0.249985,0,0);-ms-transform:matrix(0.238146,0.002620,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.238146,0.002620,-0.002750,0.249985,0,0);}
.m2d_c01230{transform:matrix(0.238185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238185,0.000000,0.000000,0.250000,0,0);}
.mf_c01230{transform:matrix(0.238195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238195,0.000000,0.000000,0.250000,0,0);}
.mbd_c01230{transform:matrix(0.238214,0.001667,-0.001750,0.249994,0,0);-ms-transform:matrix(0.238214,0.001667,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.238214,0.001667,-0.001750,0.249994,0,0);}
.m11_c01230{transform:matrix(0.238225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238225,0.000000,0.000000,0.250000,0,0);}
.m2e_c01230{transform:matrix(0.238385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238385,0.000000,0.000000,0.250000,0,0);}
.m145_c01230{transform:matrix(0.238406,0.002622,-0.002750,0.249985,0,0);-ms-transform:matrix(0.238406,0.002622,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.238406,0.002622,-0.002750,0.249985,0,0);}
.m21_c01230{transform:matrix(0.239190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239190,0.000000,0.000000,0.250000,0,0);}
.m78_c01230{transform:matrix(0.239295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239295,0.000000,0.000000,0.250000,0,0);}
.m8d_c01230{transform:matrix(0.239904,0.001679,-0.001750,0.249994,0,0);-ms-transform:matrix(0.239904,0.001679,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.239904,0.001679,-0.001750,0.249994,0,0);}
.mf5_c01230{transform:matrix(0.240103,0.002401,-0.002500,0.249988,0,0);-ms-transform:matrix(0.240103,0.002401,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.240103,0.002401,-0.002500,0.249988,0,0);}
.m6f_c01230{transform:matrix(0.240375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240375,0.000000,0.000000,0.250000,0,0);}
.me7_c01230{transform:matrix(0.240638,0.002406,-0.002500,0.249988,0,0);-ms-transform:matrix(0.240638,0.002406,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.240638,0.002406,-0.002500,0.249988,0,0);}
.m154_c01230{transform:matrix(0.241165,0.002653,-0.002750,0.249985,0,0);-ms-transform:matrix(0.241165,0.002653,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.241165,0.002653,-0.002750,0.249985,0,0);}
.ma2_c01230{transform:matrix(0.241194,0.001688,-0.001750,0.249994,0,0);-ms-transform:matrix(0.241194,0.001688,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.241194,0.001688,-0.001750,0.249994,0,0);}
.m101_c01230{transform:matrix(0.242000,0.002662,-0.002750,0.249985,0,0);-ms-transform:matrix(0.242000,0.002662,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.242000,0.002662,-0.002750,0.249985,0,0);}
.m6a_c01230{transform:matrix(0.242705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242705,0.000000,0.000000,0.250000,0,0);}
.m119_c01230{transform:matrix(0.242815,0.002671,-0.002750,0.249985,0,0);-ms-transform:matrix(0.242815,0.002671,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.242815,0.002671,-0.002750,0.249985,0,0);}
.m90_c01230{transform:matrix(0.243534,0.001705,-0.001750,0.249994,0,0);-ms-transform:matrix(0.243534,0.001705,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.243534,0.001705,-0.001750,0.249994,0,0);}
.mdb_c01230{transform:matrix(0.243879,0.001707,-0.001750,0.249994,0,0);-ms-transform:matrix(0.243879,0.001707,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.243879,0.001707,-0.001750,0.249994,0,0);}
.m89_c01230{transform:matrix(0.244379,0.001711,-0.001750,0.249994,0,0);-ms-transform:matrix(0.244379,0.001711,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.244379,0.001711,-0.001750,0.249994,0,0);}
.meb_c01230{transform:matrix(0.244888,0.002449,-0.002500,0.249988,0,0);-ms-transform:matrix(0.244888,0.002449,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.244888,0.002449,-0.002500,0.249988,0,0);}
.mdd_c01230{transform:matrix(0.245009,0.001715,-0.001750,0.249994,0,0);-ms-transform:matrix(0.245009,0.001715,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.245009,0.001715,-0.001750,0.249994,0,0);}
.m14_c01230{transform:matrix(0.246190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246190,0.000000,0.000000,0.250000,0,0);}
.m7e_c01230{transform:matrix(0.247755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247755,0.000000,0.000000,0.250000,0,0);}
.me0_c01230{transform:matrix(0.247909,0.001735,-0.001750,0.249994,0,0);-ms-transform:matrix(0.247909,0.001735,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.247909,0.001735,-0.001750,0.249994,0,0);}
.m14f_c01230{transform:matrix(0.248260,0.002731,-0.002750,0.249985,0,0);-ms-transform:matrix(0.248260,0.002731,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.248260,0.002731,-0.002750,0.249985,0,0);}
.ma7_c01230{transform:matrix(0.248359,0.001739,-0.001750,0.249994,0,0);-ms-transform:matrix(0.248359,0.001739,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.248359,0.001739,-0.001750,0.249994,0,0);}
.m23_c01230{transform:matrix(0.248715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248715,0.000000,0.000000,0.250000,0,0);}
.me3_c01230{transform:matrix(0.248744,0.001741,-0.001750,0.249994,0,0);-ms-transform:matrix(0.248744,0.001741,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.248744,0.001741,-0.001750,0.249994,0,0);}
.mf2_c01230{transform:matrix(0.249298,0.002493,-0.002500,0.249988,0,0);-ms-transform:matrix(0.249298,0.002493,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.249298,0.002493,-0.002500,0.249988,0,0);}
.m15a_c01230{transform:matrix(0.249489,0.006736,-0.006748,0.249909,0,0);-ms-transform:matrix(0.249489,0.006736,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.249489,0.006736,-0.006748,0.249909,0,0);}
.m15f_c01230{transform:matrix(0.249564,0.006738,-0.006748,0.249909,0,0);-ms-transform:matrix(0.249564,0.006738,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.249564,0.006738,-0.006748,0.249909,0,0);}
.m93_c01230{transform:matrix(0.250009,0.001750,-0.001750,0.249994,0,0);-ms-transform:matrix(0.250009,0.001750,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.250009,0.001750,-0.001750,0.249994,0,0);}
.m1c_c01230{transform:matrix(0.250055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250055,0.000000,0.000000,0.250000,0,0);}
.mb4_c01230{transform:matrix(0.250149,0.001751,-0.001750,0.249994,0,0);-ms-transform:matrix(0.250149,0.001751,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.250149,0.001751,-0.001750,0.249994,0,0);}
.m74_c01230{transform:matrix(0.250460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250460,0.000000,0.000000,0.250000,0,0);}
.m15d_c01230{transform:matrix(0.250614,0.006767,-0.006748,0.249909,0,0);-ms-transform:matrix(0.250614,0.006767,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.250614,0.006767,-0.006748,0.249909,0,0);}
.mde_c01230{transform:matrix(0.250644,0.001755,-0.001750,0.249994,0,0);-ms-transform:matrix(0.250644,0.001755,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.250644,0.001755,-0.001750,0.249994,0,0);}
.m5b_c01230{transform:matrix(0.250920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250920,0.000000,0.000000,0.250000,0,0);}
.m8a_c01230{transform:matrix(0.250994,0.001757,-0.001750,0.249994,0,0);-ms-transform:matrix(0.250994,0.001757,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.250994,0.001757,-0.001750,0.249994,0,0);}
.me8_c01230{transform:matrix(0.251582,0.002516,-0.002500,0.249988,0,0);-ms-transform:matrix(0.251582,0.002516,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.251582,0.002516,-0.002500,0.249988,0,0);}
.m13_c01230{transform:matrix(0.251595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251595,0.000000,0.000000,0.250000,0,0);}
.m67_c01230{transform:matrix(0.251855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251855,0.000000,0.000000,0.250000,0,0);}
.m167_c01230{transform:matrix(0.252365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252365,0.000000,0.000000,0.250000,0,0);}
.mba_c01230{transform:matrix(0.252719,0.001769,-0.001750,0.249994,0,0);-ms-transform:matrix(0.252719,0.001769,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.252719,0.001769,-0.001750,0.249994,0,0);}
.m4b_c01230{transform:matrix(0.253590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253590,0.000000,0.000000,0.250000,0,0);}
.m50_c01230{transform:matrix(0.253845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253845,0.000000,0.000000,0.250000,0,0);}
.me5_c01230{transform:matrix(0.254332,0.002543,-0.002500,0.249988,0,0);-ms-transform:matrix(0.254332,0.002543,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.254332,0.002543,-0.002500,0.249988,0,0);}
.m25_c01230{transform:matrix(0.254585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254585,0.000000,0.000000,0.250000,0,0);}
.m16_c01230{transform:matrix(0.254710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254710,0.000000,0.000000,0.250000,0,0);}
.m71_c01230{transform:matrix(0.255310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255310,0.000000,0.000000,0.250000,0,0);}
.m19_c01230{transform:matrix(0.255540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255540,0.000000,0.000000,0.250000,0,0);}
.m85_c01230{transform:matrix(0.256060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256060,0.000000,0.000000,0.250000,0,0);}
.m1a_c01230{transform:matrix(0.256310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256310,0.000000,0.000000,0.250000,0,0);}
.m104_c01230{transform:matrix(0.256624,0.002823,-0.002750,0.249985,0,0);-ms-transform:matrix(0.256624,0.002823,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.256624,0.002823,-0.002750,0.249985,0,0);}
.m4d_c01230{transform:matrix(0.256965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256965,0.000000,0.000000,0.250000,0,0);}
.m56_c01230{transform:matrix(0.257620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257620,0.000000,0.000000,0.250000,0,0);}
.mf6_c01230{transform:matrix(0.257987,0.002580,-0.002500,0.249988,0,0);-ms-transform:matrix(0.257987,0.002580,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.257987,0.002580,-0.002500,0.249988,0,0);}
.m161_c01230{transform:matrix(0.258311,0.006974,-0.006748,0.249909,0,0);-ms-transform:matrix(0.258311,0.006974,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.258311,0.006974,-0.006748,0.249909,0,0);}
.m92_c01230{transform:matrix(0.258529,0.001810,-0.001750,0.249994,0,0);-ms-transform:matrix(0.258529,0.001810,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.258529,0.001810,-0.001750,0.249994,0,0);}
.m14e_c01230{transform:matrix(0.258574,0.002844,-0.002750,0.249985,0,0);-ms-transform:matrix(0.258574,0.002844,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.258574,0.002844,-0.002750,0.249985,0,0);}
.m105_c01230{transform:matrix(0.259334,0.002853,-0.002750,0.249985,0,0);-ms-transform:matrix(0.259334,0.002853,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.259334,0.002853,-0.002750,0.249985,0,0);}
.mf3_c01230{transform:matrix(0.259897,0.002599,-0.002500,0.249988,0,0);-ms-transform:matrix(0.259897,0.002599,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.259897,0.002599,-0.002500,0.249988,0,0);}
.m4f_c01230{transform:matrix(0.260820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260820,0.000000,0.000000,0.250000,0,0);}
.m81_c01230{transform:matrix(0.261045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261045,0.000000,0.000000,0.250000,0,0);}
.m70_c01230{transform:matrix(0.261220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261220,0.000000,0.000000,0.250000,0,0);}
.m8b_c01230{transform:matrix(0.261684,0.001832,-0.001750,0.249994,0,0);-ms-transform:matrix(0.261684,0.001832,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.261684,0.001832,-0.001750,0.249994,0,0);}
.m6b_c01230{transform:matrix(0.262575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262575,0.000000,0.000000,0.250000,0,0);}
.mbc_c01230{transform:matrix(0.262774,0.001839,-0.001750,0.249994,0,0);-ms-transform:matrix(0.262774,0.001839,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.262774,0.001839,-0.001750,0.249994,0,0);}
.m116_c01230{transform:matrix(0.262914,0.002892,-0.002750,0.249985,0,0);-ms-transform:matrix(0.262914,0.002892,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.262914,0.002892,-0.002750,0.249985,0,0);}
.m106_c01230{transform:matrix(0.263449,0.002898,-0.002750,0.249985,0,0);-ms-transform:matrix(0.263449,0.002898,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.263449,0.002898,-0.002750,0.249985,0,0);}
.m8e_c01230{transform:matrix(0.263864,0.001847,-0.001750,0.249994,0,0);-ms-transform:matrix(0.263864,0.001847,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.263864,0.001847,-0.001750,0.249994,0,0);}
.m86_c01230{transform:matrix(0.264050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264050,0.000000,0.000000,0.250000,0,0);}
.m49_c01230{transform:matrix(0.264060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264060,0.000000,0.000000,0.250000,0,0);}
.m8f_c01230{transform:matrix(0.264204,0.001849,-0.001750,0.249994,0,0);-ms-transform:matrix(0.264204,0.001849,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.264204,0.001849,-0.001750,0.249994,0,0);}
.m15_c01230{transform:matrix(0.264495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264495,0.000000,0.000000,0.250000,0,0);}
.mb2_c01230{transform:matrix(0.264669,0.001853,-0.001750,0.249994,0,0);-ms-transform:matrix(0.264669,0.001853,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.264669,0.001853,-0.001750,0.249994,0,0);}
.mf1_c01230{transform:matrix(0.264842,0.002648,-0.002500,0.249988,0,0);-ms-transform:matrix(0.264842,0.002648,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.264842,0.002648,-0.002500,0.249988,0,0);}
.m5c_c01230{transform:matrix(0.265575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265575,0.000000,0.000000,0.250000,0,0);}
.mef_c01230{transform:matrix(0.265787,0.002658,-0.002500,0.249988,0,0);-ms-transform:matrix(0.265787,0.002658,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.265787,0.002658,-0.002500,0.249988,0,0);}
.m5a_c01230{transform:matrix(0.266030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266030,0.000000,0.000000,0.250000,0,0);}
.m2a_c01230{transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);}
.m76_c01230{transform:matrix(0.267300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267300,0.000000,0.000000,0.250000,0,0);}
.mc0_c01230{transform:matrix(0.267603,0.001873,-0.001750,0.249994,0,0);-ms-transform:matrix(0.267603,0.001873,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.267603,0.001873,-0.001750,0.249994,0,0);}
.m7d_c01230{transform:matrix(0.267855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267855,0.000000,0.000000,0.250000,0,0);}
.m7b_c01230{transform:matrix(0.268005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268005,0.000000,0.000000,0.250000,0,0);}
.m58_c01230{transform:matrix(0.268345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268345,0.000000,0.000000,0.250000,0,0);}
.m159_c01230{transform:matrix(0.269702,0.007282,-0.006748,0.249909,0,0);-ms-transform:matrix(0.269702,0.007282,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.269702,0.007282,-0.006748,0.249909,0,0);}
.mb0_c01230{transform:matrix(0.270723,0.001895,-0.001750,0.249994,0,0);-ms-transform:matrix(0.270723,0.001895,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.270723,0.001895,-0.001750,0.249994,0,0);}
.m27_c01230{transform:matrix(0.271735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271735,0.000000,0.000000,0.250000,0,0);}
.mec_c01230{transform:matrix(0.272126,0.002721,-0.002500,0.249988,0,0);-ms-transform:matrix(0.272126,0.002721,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.272126,0.002721,-0.002500,0.249988,0,0);}
.m84_c01230{transform:matrix(0.272860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272860,0.000000,0.000000,0.250000,0,0);}
.m7f_c01230{transform:matrix(0.272900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272900,0.000000,0.000000,0.250000,0,0);}
.m29_c01230{transform:matrix(0.273215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273215,0.000000,0.000000,0.250000,0,0);}
.m7c_c01230{transform:matrix(0.273685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273685,0.000000,0.000000,0.250000,0,0);}
.m80_c01230{transform:matrix(0.274320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274320,0.000000,0.000000,0.250000,0,0);}
.m26_c01230{transform:matrix(0.274340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274340,0.000000,0.000000,0.250000,0,0);}
.m6c_c01230{transform:matrix(0.274970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274970,0.000000,0.000000,0.250000,0,0);}
.m117_c01230{transform:matrix(0.275178,0.003027,-0.002750,0.249985,0,0);-ms-transform:matrix(0.275178,0.003027,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.275178,0.003027,-0.002750,0.249985,0,0);}
.m75_c01230{transform:matrix(0.275470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275470,0.000000,0.000000,0.250000,0,0);}
.m54_c01230{transform:matrix(0.275585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275585,0.000000,0.000000,0.250000,0,0);}
.m168_c01230{transform:matrix(0.276455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276455,0.000000,0.000000,0.250000,0,0);}
.m6d_c01230{transform:matrix(0.276535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276535,0.000000,0.000000,0.250000,0,0);}
.mf7_c01230{transform:matrix(0.276881,0.002769,-0.002500,0.249988,0,0);-ms-transform:matrix(0.276881,0.002769,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.276881,0.002769,-0.002500,0.249988,0,0);}
.m2c_c01230{transform:matrix(0.277320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277320,0.000000,0.000000,0.250000,0,0);}
.m48_c01230{transform:matrix(0.277575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277575,0.000000,0.000000,0.250000,0,0);}
.m73_c01230{transform:matrix(0.277705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277705,0.000000,0.000000,0.250000,0,0);}
.m107_c01230{transform:matrix(0.278473,0.003063,-0.002750,0.249985,0,0);-ms-transform:matrix(0.278473,0.003063,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.278473,0.003063,-0.002750,0.249985,0,0);}
.m4e_c01230{transform:matrix(0.278655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278655,0.000000,0.000000,0.250000,0,0);}
.me1_c01230{transform:matrix(0.279148,0.001954,-0.001750,0.249994,0,0);-ms-transform:matrix(0.279148,0.001954,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.279148,0.001954,-0.001750,0.249994,0,0);}
.m77_c01230{transform:matrix(0.279690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279690,0.000000,0.000000,0.250000,0,0);}
.m51_c01230{transform:matrix(0.280125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280125,0.000000,0.000000,0.250000,0,0);}
.m79_c01230{transform:matrix(0.280455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280455,0.000000,0.000000,0.250000,0,0);}
.mae_c01230{transform:matrix(0.280528,0.001964,-0.001750,0.249994,0,0);-ms-transform:matrix(0.280528,0.001964,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.280528,0.001964,-0.001750,0.249994,0,0);}
.m68_c01230{transform:matrix(0.280865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280865,0.000000,0.000000,0.250000,0,0);}
.m102_c01230{transform:matrix(0.281463,0.003096,-0.002750,0.249985,0,0);-ms-transform:matrix(0.281463,0.003096,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.281463,0.003096,-0.002750,0.249985,0,0);}
.me9_c01230{transform:matrix(0.282711,0.002827,-0.002500,0.249988,0,0);-ms-transform:matrix(0.282711,0.002827,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.282711,0.002827,-0.002500,0.249988,0,0);}
.m57_c01230{transform:matrix(0.283215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283215,0.000000,0.000000,0.250000,0,0);}
.mf8_c01230{transform:matrix(0.283226,0.002832,-0.002500,0.249988,0,0);-ms-transform:matrix(0.283226,0.002832,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.283226,0.002832,-0.002500,0.249988,0,0);}
.m14a_c01230{transform:matrix(0.283813,0.003122,-0.002750,0.249985,0,0);-ms-transform:matrix(0.283813,0.003122,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.283813,0.003122,-0.002750,0.249985,0,0);}
.m52_c01230{transform:matrix(0.284200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284200,0.000000,0.000000,0.250000,0,0);}
.me6_c01230{transform:matrix(0.285361,0.002854,-0.002500,0.249988,0,0);-ms-transform:matrix(0.285361,0.002854,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.285361,0.002854,-0.002500,0.249988,0,0);}
.m109_c01230{transform:matrix(0.289737,0.003187,-0.002750,0.249985,0,0);-ms-transform:matrix(0.289737,0.003187,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.289737,0.003187,-0.002750,0.249985,0,0);}
.m95_c01230{transform:matrix(0.290988,0.002037,-0.001750,0.249994,0,0);-ms-transform:matrix(0.290988,0.002037,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.290988,0.002037,-0.001750,0.249994,0,0);}
.mf9_c01230{transform:matrix(0.293375,0.002934,-0.002500,0.249988,0,0);-ms-transform:matrix(0.293375,0.002934,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.293375,0.002934,-0.002500,0.249988,0,0);}
.m82_c01230{transform:matrix(0.293535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293535,0.000000,0.000000,0.250000,0,0);}
.m8c_c01230{transform:matrix(0.294223,0.002060,-0.001750,0.249994,0,0);-ms-transform:matrix(0.294223,0.002060,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.294223,0.002060,-0.001750,0.249994,0,0);}
.m148_c01230{transform:matrix(0.298562,0.003284,-0.002750,0.249985,0,0);-ms-transform:matrix(0.298562,0.003284,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.298562,0.003284,-0.002750,0.249985,0,0);}
.m146_c01230{transform:matrix(0.298762,0.003286,-0.002750,0.249985,0,0);-ms-transform:matrix(0.298762,0.003286,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.298762,0.003286,-0.002750,0.249985,0,0);}
.m83_c01230{transform:matrix(0.298855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298855,0.000000,0.000000,0.250000,0,0);}
.m2f_c01230{transform:matrix(0.299635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299635,0.000000,0.000000,0.250000,0,0);}
.m2_c01230{transform:matrix(0.300355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300355,0.000000,0.000000,0.250000,0,0);}
.m69_c01230{transform:matrix(0.309235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309235,0.000000,0.000000,0.250000,0,0);}
.m94_c01230{transform:matrix(0.311332,0.002179,-0.001750,0.249994,0,0);-ms-transform:matrix(0.311332,0.002179,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.311332,0.002179,-0.001750,0.249994,0,0);}
.mab_c01230{transform:matrix(0.316427,0.002215,-0.001750,0.249994,0,0);-ms-transform:matrix(0.316427,0.002215,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.316427,0.002215,-0.001750,0.249994,0,0);}
.ma8_c01230{transform:matrix(0.316767,0.002217,-0.001750,0.249994,0,0);-ms-transform:matrix(0.316767,0.002217,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.316767,0.002217,-0.001750,0.249994,0,0);}
.m147_c01230{transform:matrix(0.316816,0.003485,-0.002750,0.249985,0,0);-ms-transform:matrix(0.316816,0.003485,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.316816,0.003485,-0.002750,0.249985,0,0);}
.m18_c01230{transform:matrix(0.322010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322010,0.000000,0.000000,0.250000,0,0);}
.med_c01230{transform:matrix(0.325609,0.003256,-0.002500,0.249988,0,0);-ms-transform:matrix(0.325609,0.003256,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.325609,0.003256,-0.002500,0.249988,0,0);}
.maa_c01230{transform:matrix(0.329102,0.002304,-0.001750,0.249994,0,0);-ms-transform:matrix(0.329102,0.002304,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.329102,0.002304,-0.001750,0.249994,0,0);}
.mb6_c01230{transform:matrix(0.342602,0.002398,-0.001750,0.249994,0,0);-ms-transform:matrix(0.342602,0.002398,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.342602,0.002398,-0.001750,0.249994,0,0);}
.m166_c01230{transform:matrix(0.349558,0.009438,-0.006748,0.249909,0,0);-ms-transform:matrix(0.349558,0.009438,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.349558,0.009438,-0.006748,0.249909,0,0);}
.m1_c01230{transform:matrix(0.366370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366370,0.000000,0.000000,0.250000,0,0);}
.m14c_c01230{transform:matrix(0.375297,0.004128,-0.002750,0.249985,0,0);-ms-transform:matrix(0.375297,0.004128,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.375297,0.004128,-0.002750,0.249985,0,0);}
.mfa_c01230{transform:matrix(0.377136,0.003771,-0.002500,0.249988,0,0);-ms-transform:matrix(0.377136,0.003771,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.377136,0.003771,-0.002500,0.249988,0,0);}
.mac_c01230{transform:matrix(0.377891,0.002645,-0.001750,0.249994,0,0);-ms-transform:matrix(0.377891,0.002645,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.377891,0.002645,-0.001750,0.249994,0,0);}
.ma9_c01230{transform:matrix(0.389760,0.002728,-0.001750,0.249994,0,0);-ms-transform:matrix(0.389760,0.002728,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.389760,0.002728,-0.001750,0.249994,0,0);}
.m14b_c01230{transform:matrix(0.422994,0.004653,-0.002750,0.249985,0,0);-ms-transform:matrix(0.422994,0.004653,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.422994,0.004653,-0.002750,0.249985,0,0);}
.m149_c01230{transform:matrix(0.529978,0.005830,-0.002750,0.249985,0,0);-ms-transform:matrix(0.529978,0.005830,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.529978,0.005830,-0.002750,0.249985,0,0);}
.m164_c01230{transform:matrix(0.694282,0.018746,-0.006748,0.249909,0,0);-ms-transform:matrix(0.694282,0.018746,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.694282,0.018746,-0.006748,0.249909,0,0);}
.m118_c01230{transform:matrix(0.703657,0.007740,-0.002750,0.249985,0,0);-ms-transform:matrix(0.703657,0.007740,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.703657,0.007740,-0.002750,0.249985,0,0);}
.m14d_c01230{transform:matrix(0.962927,0.010592,-0.002750,0.249985,0,0);-ms-transform:matrix(0.962927,0.010592,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.962927,0.010592,-0.002750,0.249985,0,0);}
.v0_c01230{vertical-align:0.000000px;}
.ls0_c01230{letter-spacing:0.000000px;}
.sc__c01230{text-shadow:none;}
.sc0_c01230{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__c01230{-webkit-text-stroke:0px transparent;}
.sc0_c01230{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01230{word-spacing:0.000000px;}
.fc0_c01230{color:transparent;}
.fs2_c01230{font-size:72.000000px;}
.fs5_c01230{font-size:72.001764px;}
.fsa_c01230{font-size:72.003600px;}
.fsc_c01230{font-size:72.004356px;}
.fs12_c01230{font-size:72.026239px;}
.fs0_c01230{font-size:78.000000px;}
.fs8_c01230{font-size:78.001911px;}
.fs11_c01230{font-size:78.004719px;}
.fs13_c01230{font-size:78.028426px;}
.fs3_c01230{font-size:84.000000px;}
.fs7_c01230{font-size:84.002058px;}
.fsb_c01230{font-size:84.004200px;}
.fsd_c01230{font-size:84.005082px;}
.fs4_c01230{font-size:90.000000px;}
.fs6_c01230{font-size:90.002205px;}
.fs1_c01230{font-size:96.000000px;}
.fsf_c01230{font-size:102.006171px;}
.fs10_c01230{font-size:108.006534px;}
.fse_c01230{font-size:114.006897px;}
.fs9_c01230{font-size:126.003087px;}
.y0_c01230{bottom:0.000000px;}
.y104_c01230{bottom:50.895000px;}
.y103_c01230{bottom:54.111216px;}
.y102_c01230{bottom:54.996431px;}
.y101_c01230{bottom:58.469901px;}
.y100_c01230{bottom:59.330493px;}
.yff_c01230{bottom:60.157796px;}
.yfe_c01230{bottom:62.239781px;}
.yfd_c01230{bottom:63.075507px;}
.yfc_c01230{bottom:65.357717px;}
.yfb_c01230{bottom:66.236615px;}
.yfa_c01230{bottom:68.245095px;}
.yf9_c01230{bottom:69.087341px;}
.yf8_c01230{bottom:70.203113px;}
.yf7_c01230{bottom:76.975524px;}
.yf6_c01230{bottom:81.505894px;}
.yf4_c01230{bottom:81.576696px;}
.yf3_c01230{bottom:82.221591px;}
.yf2_c01230{bottom:83.067469px;}
.yf1_c01230{bottom:83.898550px;}
.yf0_c01230{bottom:84.400149px;}
.yef_c01230{bottom:84.708336px;}
.yee_c01230{bottom:85.396451px;}
.yed_c01230{bottom:85.866970px;}
.yec_c01230{bottom:87.041936px;}
.yeb_c01230{bottom:88.815279px;}
.yf5_c01230{bottom:90.445500px;}
.yea_c01230{bottom:115.989998px;}
.ye9_c01230{bottom:117.270243px;}
.ye8_c01230{bottom:117.853874px;}
.ye7_c01230{bottom:119.597292px;}
.ye6_c01230{bottom:121.089191px;}
.ye5_c01230{bottom:123.902966px;}
.ye4_c01230{bottom:124.986270px;}
.ye3_c01230{bottom:126.509145px;}
.ye2_c01230{bottom:127.431566px;}
.ye1_c01230{bottom:138.260732px;}
.ye0_c01230{bottom:141.908289px;}
.ydf_c01230{bottom:142.349081px;}
.yde_c01230{bottom:142.805928px;}
.ydd_c01230{bottom:143.359361px;}
.ydc_c01230{bottom:143.559624px;}
.ydb_c01230{bottom:144.350433px;}
.yda_c01230{bottom:145.044509px;}
.yd9_c01230{bottom:145.517461px;}
.yd8_c01230{bottom:168.005820px;}
.yd7_c01230{bottom:169.167420px;}
.yd6_c01230{bottom:171.429636px;}
.yd5_c01230{bottom:172.163176px;}
.yd4_c01230{bottom:172.534278px;}
.yd3_c01230{bottom:172.780936px;}
.yd2_c01230{bottom:173.268016px;}
.yd1_c01230{bottom:173.478094px;}
.yd0_c01230{bottom:173.737293px;}
.ycf_c01230{bottom:174.601678px;}
.yce_c01230{bottom:175.032081px;}
.ycd_c01230{bottom:175.411993px;}
.ycc_c01230{bottom:176.030364px;}
.yc8_c01230{bottom:206.577723px;}
.yc6_c01230{bottom:206.577884px;}
.yca_c01230{bottom:206.578359px;}
.yc5_c01230{bottom:206.578407px;}
.yc7_c01230{bottom:206.578457px;}
.yc9_c01230{bottom:206.578460px;}
.ycb_c01230{bottom:206.578662px;}
.yc4_c01230{bottom:206.578901px;}
.yc3_c01230{bottom:206.579241px;}
.yc1_c01230{bottom:206.579668px;}
.yc2_c01230{bottom:206.579731px;}
.yc0_c01230{bottom:232.057174px;}
.ybf_c01230{bottom:232.913871px;}
.ybe_c01230{bottom:233.349387px;}
.ybd_c01230{bottom:233.648502px;}
.ybc_c01230{bottom:234.941639px;}
.ybb_c01230{bottom:235.801420px;}
.yba_c01230{bottom:236.221792px;}
.yb9_c01230{bottom:237.096883px;}
.yb8_c01230{bottom:237.946057px;}
.yb7_c01230{bottom:238.661108px;}
.yb6_c01230{bottom:239.201482px;}
.yb4_c01230{bottom:240.520603px;}
.yb5_c01230{bottom:241.106395px;}
.yb3_c01230{bottom:241.121424px;}
.yb2_c01230{bottom:266.682444px;}
.yb1_c01230{bottom:267.080098px;}
.yb0_c01230{bottom:267.950406px;}
.yaf_c01230{bottom:268.824523px;}
.yae_c01230{bottom:269.382402px;}
.yad_c01230{bottom:270.404601px;}
.yac_c01230{bottom:271.548470px;}
.yab_c01230{bottom:272.689285px;}
.yaa_c01230{bottom:273.966816px;}
.ya9_c01230{bottom:274.412429px;}
.ya8_c01230{bottom:275.403084px;}
.ya7_c01230{bottom:275.668512px;}
.ya6_c01230{bottom:304.715448px;}
.ya5_c01230{bottom:305.065726px;}
.ya4_c01230{bottom:306.266151px;}
.ya3_c01230{bottom:307.008634px;}
.ya2_c01230{bottom:307.730328px;}
.ya1_c01230{bottom:308.354028px;}
.ya0_c01230{bottom:308.710478px;}
.y9f_c01230{bottom:310.041120px;}
.y9e_c01230{bottom:310.284478px;}
.y9d_c01230{bottom:310.498500px;}
.y9c_c01230{bottom:343.031505px;}
.y9a_c01230{bottom:343.031730px;}
.y9b_c01230{bottom:343.031745px;}
.y99_c01230{bottom:343.032000px;}
.y98_c01230{bottom:343.032285px;}
.y97_c01230{bottom:373.507020px;}
.y96_c01230{bottom:373.726035px;}
.y95_c01230{bottom:373.999620px;}
.y94_c01230{bottom:374.510145px;}
.y93_c01230{bottom:374.831700px;}
.y92_c01230{bottom:374.947080px;}
.y91_c01230{bottom:375.391545px;}
.y90_c01230{bottom:375.717825px;}
.y8f_c01230{bottom:375.992670px;}
.y8e_c01230{bottom:376.373205px;}
.y8d_c01230{bottom:376.539960px;}
.y8c_c01230{bottom:376.918020px;}
.y8b_c01230{bottom:408.474570px;}
.y8a_c01230{bottom:409.194300px;}
.y89_c01230{bottom:409.963920px;}
.y88_c01230{bottom:410.409240px;}
.y87_c01230{bottom:410.746695px;}
.y86_c01230{bottom:412.070010px;}
.y85_c01230{bottom:412.510200px;}
.y84_c01230{bottom:412.844955px;}
.y83_c01230{bottom:414.276075px;}
.y82_c01230{bottom:414.721500px;}
.y81_c01230{bottom:446.760087px;}
.y80_c01230{bottom:447.211684px;}
.y7f_c01230{bottom:447.496464px;}
.y7e_c01230{bottom:447.674248px;}
.y7d_c01230{bottom:448.041024px;}
.y7c_c01230{bottom:448.154679px;}
.y7b_c01230{bottom:448.648577px;}
.y7a_c01230{bottom:449.032347px;}
.y79_c01230{bottom:449.361475px;}
.y78_c01230{bottom:449.806180px;}
.y77_c01230{bottom:482.754433px;}
.y73_c01230{bottom:482.754571px;}
.y74_c01230{bottom:482.754672px;}
.y71_c01230{bottom:482.754760px;}
.y72_c01230{bottom:482.754991px;}
.y76_c01230{bottom:482.755053px;}
.y75_c01230{bottom:482.755073px;}
.y70_c01230{bottom:482.755080px;}
.y6e_c01230{bottom:482.755419px;}
.y6d_c01230{bottom:482.755668px;}
.y6f_c01230{bottom:482.755760px;}
.y6c_c01230{bottom:482.756257px;}
.y67_c01230{bottom:519.469178px;}
.y6b_c01230{bottom:519.469329px;}
.y66_c01230{bottom:519.469467px;}
.y68_c01230{bottom:519.469578px;}
.y65_c01230{bottom:519.469726px;}
.y6a_c01230{bottom:519.469749px;}
.y69_c01230{bottom:519.469949px;}
.y63_c01230{bottom:519.470035px;}
.y64_c01230{bottom:519.470076px;}
.y61_c01230{bottom:519.470574px;}
.y62_c01230{bottom:519.470615px;}
.y60_c01230{bottom:519.470983px;}
.y5f_c01230{bottom:519.471063px;}
.y55_c01230{bottom:557.110011px;}
.y54_c01230{bottom:557.110060px;}
.y5d_c01230{bottom:557.110255px;}
.y57_c01230{bottom:557.110302px;}
.y56_c01230{bottom:557.110471px;}
.y5e_c01230{bottom:557.110547px;}
.y58_c01230{bottom:557.110672px;}
.y5c_c01230{bottom:557.110955px;}
.y5a_c01230{bottom:557.111023px;}
.y59_c01230{bottom:557.111163px;}
.y5b_c01230{bottom:557.111364px;}
.y53_c01230{bottom:588.195293px;}
.y52_c01230{bottom:588.561242px;}
.y51_c01230{bottom:588.804501px;}
.y50_c01230{bottom:589.542046px;}
.y4f_c01230{bottom:589.908017px;}
.y4e_c01230{bottom:590.641899px;}
.y4d_c01230{bottom:591.001058px;}
.y4c_c01230{bottom:591.734856px;}
.y4b_c01230{bottom:591.969424px;}
.y4a_c01230{bottom:593.178459px;}
.y49_c01230{bottom:593.534018px;}
.y47_c01230{bottom:595.233381px;}
.y48_c01230{bottom:595.616586px;}
.y46_c01230{bottom:595.628730px;}
.y41_c01230{bottom:627.020206px;}
.y3c_c01230{bottom:627.020563px;}
.y42_c01230{bottom:627.020677px;}
.y40_c01230{bottom:627.020766px;}
.y43_c01230{bottom:627.020878px;}
.y44_c01230{bottom:627.020919px;}
.y45_c01230{bottom:627.020960px;}
.y3b_c01230{bottom:627.021093px;}
.y3f_c01230{bottom:627.021115px;}
.y3d_c01230{bottom:627.021174px;}
.y3e_c01230{bottom:627.021795px;}
.y3a_c01230{bottom:661.894140px;}
.y31_c01230{bottom:661.894415px;}
.y39_c01230{bottom:661.894880px;}
.y32_c01230{bottom:661.895145px;}
.y38_c01230{bottom:661.895379px;}
.y33_c01230{bottom:661.895395px;}
.y36_c01230{bottom:661.895467px;}
.y35_c01230{bottom:661.895667px;}
.y34_c01230{bottom:661.895826px;}
.y37_c01230{bottom:661.895878px;}
.y30_c01230{bottom:694.240424px;}
.y2f_c01230{bottom:694.506630px;}
.y2e_c01230{bottom:694.856060px;}
.y2d_c01230{bottom:695.315393px;}
.y2c_c01230{bottom:695.555391px;}
.y2b_c01230{bottom:695.787882px;}
.y2a_c01230{bottom:695.937266px;}
.y29_c01230{bottom:696.330375px;}
.y28_c01230{bottom:696.564672px;}
.y27_c01230{bottom:696.899538px;}
.y26_c01230{bottom:697.333934px;}
.y25_c01230{bottom:697.719441px;}
.y24_c01230{bottom:697.950000px;}
.y23_c01230{bottom:730.746000px;}
.y22_c01230{bottom:766.552500px;}
.y21_c01230{bottom:802.248000px;}
.y20_c01230{bottom:837.000000px;}
.y1f_c01230{bottom:872.619000px;}
.y1e_c01230{bottom:908.820000px;}
.y1d_c01230{bottom:943.290000px;}
.y1c_c01230{bottom:979.675500px;}
.y1b_c01230{bottom:1014.391500px;}
.y1a_c01230{bottom:1048.185000px;}
.y19_c01230{bottom:1048.492500px;}
.y18_c01230{bottom:1048.890000px;}
.y17_c01230{bottom:1049.196000px;}
.y16_c01230{bottom:1050.202500px;}
.y15_c01230{bottom:1050.492000px;}
.y14_c01230{bottom:1051.197000px;}
.y13_c01230{bottom:1051.981500px;}
.y12_c01230{bottom:1052.284500px;}
.y11_c01230{bottom:1053.075000px;}
.y10_c01230{bottom:1054.056000px;}
.yf_c01230{bottom:1054.350000px;}
.ye_c01230{bottom:1083.607500px;}
.yd_c01230{bottom:1118.256000px;}
.yc_c01230{bottom:1118.814000px;}
.yb_c01230{bottom:1119.042000px;}
.ya_c01230{bottom:1119.426000px;}
.y9_c01230{bottom:1119.763500px;}
.y8_c01230{bottom:1119.984000px;}
.y7_c01230{bottom:1120.308000px;}
.y6_c01230{bottom:1120.536000px;}
.y5_c01230{bottom:1120.810500px;}
.y4_c01230{bottom:1121.082000px;}
.y3_c01230{bottom:1121.580000px;}
.y2_c01230{bottom:1156.087500px;}
.y1_c01230{bottom:1209.472500px;}
.h4_c01230{height:72.000000px;}
.h7_c01230{height:72.001764px;}
.hc_c01230{height:72.003600px;}
.he_c01230{height:72.004356px;}
.h14_c01230{height:72.026239px;}
.h2_c01230{height:78.000000px;}
.ha_c01230{height:78.001911px;}
.h13_c01230{height:78.004719px;}
.h15_c01230{height:78.028426px;}
.h5_c01230{height:84.000000px;}
.h9_c01230{height:84.002058px;}
.hd_c01230{height:84.004200px;}
.hf_c01230{height:84.005082px;}
.h6_c01230{height:90.000000px;}
.h8_c01230{height:90.002205px;}
.h3_c01230{height:96.000000px;}
.h11_c01230{height:102.006171px;}
.h12_c01230{height:108.006534px;}
.h10_c01230{height:114.006897px;}
.hb_c01230{height:126.003087px;}
.h1_c01230{height:1258.500000px;}
.h0_c01230{height:1258.740000px;}
.w0_c01230{width:918.540000px;}
.w1_c01230{width:918.750000px;}
.x0_c01230{left:0.000000px;}
.x19_c01230{left:151.471500px;}
.x36_c01230{left:165.513000px;}
.x3e_c01230{left:166.863000px;}
.x4_c01230{left:167.940000px;}
.x2f_c01230{left:169.023000px;}
.xe_c01230{left:176.781000px;}
.x80_c01230{left:181.869255px;}
.x77_c01230{left:189.651265px;}
.x22_c01230{left:199.978500px;}
.x73_c01230{left:211.408185px;}
.x8d_c01230{left:212.490000px;}
.x5_c01230{left:221.670000px;}
.x5e_c01230{left:224.094093px;}
.x51_c01230{left:225.453000px;}
.x81_c01230{left:229.092767px;}
.x30_c01230{left:232.473000px;}
.x67_c01230{left:234.623154px;}
.x2a_c01230{left:243.273000px;}
.x71_c01230{left:244.800570px;}
.x40_c01230{left:255.423000px;}
.x63_c01230{left:256.764733px;}
.x7c_c01230{left:259.328748px;}
.x37_c01230{left:264.873000px;}
.x8e_c01230{left:266.220000px;}
.xf_c01230{left:276.409500px;}
.x72_c01230{left:278.277750px;}
.x5a_c01230{left:287.277543px;}
.x6_c01230{left:297.540000px;}
.x31_c01230{left:298.623000px;}
.x78_c01230{left:300.036823px;}
.x23_c01230{left:309.028500px;}
.x79_c01230{left:313.004520px;}
.x7_c01230{left:319.140000px;}
.x5f_c01230{left:320.485818px;}
.x6a_c01230{left:322.294398px;}
.x10_c01230{left:330.672000px;}
.x48_c01230{left:332.373000px;}
.x1a_c01230{left:342.631500px;}
.x8_c01230{left:352.890000px;}
.x4c_c01230{left:353.973000px;}
.x38_c01230{left:364.233000px;}
.x88_c01230{left:366.416507px;}
.x45_c01230{left:374.223000px;}
.x7a_c01230{left:376.115351px;}
.x82_c01230{left:377.583900px;}
.x11_c01230{left:385.497000px;}
.x5c_c01230{left:387.290556px;}
.x24_c01230{left:396.781500px;}
.x32_c01230{left:397.983000px;}
.x7d_c01230{left:400.600248px;}
.x60_c01230{left:408.508633px;}
.x49_c01230{left:409.863000px;}
.x1_c01230{left:419.040000px;}
.x39_c01230{left:420.393000px;}
.x52_c01230{left:426.721500px;}
.x12_c01230{left:431.110500px;}
.x9_c01230{left:440.910000px;}
.x2_c01230{left:442.800000px;}
.x33_c01230{left:452.523000px;}
.x4d_c01230{left:464.133000px;}
.x7b_c01230{left:466.030224px;}
.x1b_c01230{left:474.121500px;}
.x34_c01230{left:485.463000px;}
.x3_c01230{left:487.080000px;}
.x13_c01230{left:495.927000px;}
.x5d_c01230{left:497.220979px;}
.x83_c01230{left:498.543720px;}
.x2b_c01230{left:506.793000px;}
.x53_c01230{left:508.030500px;}
.x74_c01230{left:509.341500px;}
.x25_c01230{left:517.740000px;}
.x56_c01230{left:520.562581px;}
.x41_c01230{left:528.933000px;}
.x4e_c01230{left:530.013000px;}
.x14_c01230{left:539.922000px;}
.x85_c01230{left:541.305063px;}
.x4a_c01230{left:542.433000px;}
.xa_c01230{left:552.150000px;}
.x4f_c01230{left:555.663000px;}
.x8a_c01230{left:562.808256px;}
.x54_c01230{left:564.189000px;}
.xb_c01230{left:569.970000px;}
.x1c_c01230{left:573.751500px;}
.x75_c01230{left:574.950000px;}
.x2c_c01230{left:584.553000px;}
.x3a_c01230{left:585.903000px;}
.x6b_c01230{left:593.883699px;}
.x26_c01230{left:596.034000px;}
.x15_c01230{left:607.420500px;}
.x1d_c01230{left:608.581500px;}
.x46_c01230{left:617.493000px;}
.xc_c01230{left:618.570000px;}
.x61_c01230{left:620.193008px;}
.x1e_c01230{left:628.831500px;}
.x42_c01230{left:640.713000px;}
.x57_c01230{left:641.795524px;}
.x8b_c01230{left:642.865402px;}
.x3b_c01230{left:650.973000px;}
.x3f_c01230{left:652.323000px;}
.x1f_c01230{left:662.851500px;}
.x68_c01230{left:672.572606px;}
.x50_c01230{left:673.923000px;}
.x16_c01230{left:684.100500px;}
.x6c_c01230{left:686.537001px;}
.x2d_c01230{left:694.713000px;}
.x3c_c01230{left:696.333000px;}
.x6e_c01230{left:707.557500px;}
.x4b_c01230{left:717.393000px;}
.x35_c01230{left:718.473000px;}
.xd_c01230{left:721.170000px;}
.x43_c01230{left:728.463000px;}
.x17_c01230{left:729.730500px;}
.x86_c01230{left:731.639507px;}
.x27_c01230{left:739.966500px;}
.x58_c01230{left:741.157386px;}
.x64_c01230{left:742.775037px;}
.x6f_c01230{left:752.089500px;}
.x20_c01230{left:762.481500px;}
.x87_c01230{left:766.012746px;}
.x55_c01230{left:768.565500px;}
.x44_c01230{left:770.043000px;}
.x28_c01230{left:773.988000px;}
.x6d_c01230{left:776.980772px;}
.x76_c01230{left:783.421500px;}
.x47_c01230{left:784.623000px;}
.x7e_c01230{left:792.479748px;}
.x3d_c01230{left:795.963000px;}
.x65_c01230{left:803.796530px;}
.x2e_c01230{left:807.303000px;}
.x21_c01230{left:818.911500px;}
.x59_c01230{left:828.910180px;}
.x89_c01230{left:831.411000px;}
.x5b_c01230{left:839.978122px;}
.x18_c01230{left:841.260000px;}
.x62_c01230{left:851.048316px;}
.x29_c01230{left:852.282000px;}
.x69_c01230{left:859.687272px;}
.x66_c01230{left:862.387896px;}
.x8c_c01230{left:875.430180px;}
.x7f_c01230{left:898.079748px;}
.x70_c01230{left:901.024500px;}
.x84_c01230{left:907.307208px;}
@media print{
.v0_c01230{vertical-align:0.000000pt;}
.ls0_c01230{letter-spacing:0.000000pt;}
.ws0_c01230{word-spacing:0.000000pt;}
.fs2_c01230{font-size:64.000000pt;}
.fs5_c01230{font-size:64.001568pt;}
.fsa_c01230{font-size:64.003200pt;}
.fsc_c01230{font-size:64.003872pt;}
.fs12_c01230{font-size:64.023324pt;}
.fs0_c01230{font-size:69.333333pt;}
.fs8_c01230{font-size:69.335032pt;}
.fs11_c01230{font-size:69.337528pt;}
.fs13_c01230{font-size:69.358601pt;}
.fs3_c01230{font-size:74.666667pt;}
.fs7_c01230{font-size:74.668496pt;}
.fsb_c01230{font-size:74.670400pt;}
.fsd_c01230{font-size:74.671184pt;}
.fs4_c01230{font-size:80.000000pt;}
.fs6_c01230{font-size:80.001960pt;}
.fs1_c01230{font-size:85.333333pt;}
.fsf_c01230{font-size:90.672152pt;}
.fs10_c01230{font-size:96.005808pt;}
.fse_c01230{font-size:101.339464pt;}
.fs9_c01230{font-size:112.002744pt;}
.y0_c01230{bottom:0.000000pt;}
.y104_c01230{bottom:45.240000pt;}
.y103_c01230{bottom:48.098859pt;}
.y102_c01230{bottom:48.885716pt;}
.y101_c01230{bottom:51.973245pt;}
.y100_c01230{bottom:52.738216pt;}
.yff_c01230{bottom:53.473596pt;}
.yfe_c01230{bottom:55.324249pt;}
.yfd_c01230{bottom:56.067117pt;}
.yfc_c01230{bottom:58.095748pt;}
.yfb_c01230{bottom:58.876991pt;}
.yfa_c01230{bottom:60.662307pt;}
.yf9_c01230{bottom:61.410969pt;}
.yf8_c01230{bottom:62.402767pt;}
.yf7_c01230{bottom:68.422688pt;}
.yf6_c01230{bottom:72.449684pt;}
.yf4_c01230{bottom:72.512619pt;}
.yf3_c01230{bottom:73.085859pt;}
.yf2_c01230{bottom:73.837751pt;}
.yf1_c01230{bottom:74.576489pt;}
.yf0_c01230{bottom:75.022355pt;}
.yef_c01230{bottom:75.296299pt;}
.yee_c01230{bottom:75.907956pt;}
.yed_c01230{bottom:76.326196pt;}
.yec_c01230{bottom:77.370609pt;}
.yeb_c01230{bottom:78.946915pt;}
.yf5_c01230{bottom:80.396000pt;}
.yea_c01230{bottom:103.102220pt;}
.ye9_c01230{bottom:104.240216pt;}
.ye8_c01230{bottom:104.758999pt;}
.ye7_c01230{bottom:106.308704pt;}
.ye6_c01230{bottom:107.634836pt;}
.ye5_c01230{bottom:110.135969pt;}
.ye4_c01230{bottom:111.098907pt;}
.ye3_c01230{bottom:112.452573pt;}
.ye2_c01230{bottom:113.272503pt;}
.ye1_c01230{bottom:122.898428pt;}
.ye0_c01230{bottom:126.140701pt;}
.ydf_c01230{bottom:126.532516pt;}
.yde_c01230{bottom:126.938603pt;}
.ydd_c01230{bottom:127.430543pt;}
.ydc_c01230{bottom:127.608555pt;}
.ydb_c01230{bottom:128.311496pt;}
.yda_c01230{bottom:128.928452pt;}
.yd9_c01230{bottom:129.348855pt;}
.yd8_c01230{bottom:149.338507pt;}
.yd7_c01230{bottom:150.371040pt;}
.yd6_c01230{bottom:152.381899pt;}
.yd5_c01230{bottom:153.033935pt;}
.yd4_c01230{bottom:153.363803pt;}
.yd3_c01230{bottom:153.583055pt;}
.yd2_c01230{bottom:154.016015pt;}
.yd1_c01230{bottom:154.202751pt;}
.yd0_c01230{bottom:154.433149pt;}
.ycf_c01230{bottom:155.201492pt;}
.yce_c01230{bottom:155.584072pt;}
.ycd_c01230{bottom:155.921772pt;}
.ycc_c01230{bottom:156.471435pt;}
.yc8_c01230{bottom:183.624643pt;}
.yc6_c01230{bottom:183.624785pt;}
.yca_c01230{bottom:183.625208pt;}
.yc5_c01230{bottom:183.625251pt;}
.yc7_c01230{bottom:183.625295pt;}
.yc9_c01230{bottom:183.625297pt;}
.ycb_c01230{bottom:183.625477pt;}
.yc4_c01230{bottom:183.625689pt;}
.yc3_c01230{bottom:183.625992pt;}
.yc1_c01230{bottom:183.626372pt;}
.yc2_c01230{bottom:183.626428pt;}
.yc0_c01230{bottom:206.273044pt;}
.ybf_c01230{bottom:207.034552pt;}
.ybe_c01230{bottom:207.421677pt;}
.ybd_c01230{bottom:207.687557pt;}
.ybc_c01230{bottom:208.837012pt;}
.ybb_c01230{bottom:209.601263pt;}
.yba_c01230{bottom:209.974927pt;}
.yb9_c01230{bottom:210.752785pt;}
.yb8_c01230{bottom:211.507607pt;}
.yb7_c01230{bottom:212.143207pt;}
.yb6_c01230{bottom:212.623540pt;}
.yb4_c01230{bottom:213.796092pt;}
.yb5_c01230{bottom:214.316796pt;}
.yb3_c01230{bottom:214.330155pt;}
.yb2_c01230{bottom:237.051061pt;}
.yb1_c01230{bottom:237.404532pt;}
.yb0_c01230{bottom:238.178139pt;}
.yaf_c01230{bottom:238.955132pt;}
.yae_c01230{bottom:239.451024pt;}
.yad_c01230{bottom:240.359645pt;}
.yac_c01230{bottom:241.376417pt;}
.yab_c01230{bottom:242.390476pt;}
.yaa_c01230{bottom:243.526059pt;}
.ya9_c01230{bottom:243.922159pt;}
.ya8_c01230{bottom:244.802741pt;}
.ya7_c01230{bottom:245.038677pt;}
.ya6_c01230{bottom:270.858176pt;}
.ya5_c01230{bottom:271.169535pt;}
.ya4_c01230{bottom:272.236579pt;}
.ya3_c01230{bottom:272.896564pt;}
.ya2_c01230{bottom:273.538069pt;}
.ya1_c01230{bottom:274.092469pt;}
.ya0_c01230{bottom:274.409313pt;}
.y9f_c01230{bottom:275.592107pt;}
.y9e_c01230{bottom:275.808425pt;}
.y9d_c01230{bottom:275.998667pt;}
.y9c_c01230{bottom:304.916893pt;}
.y9a_c01230{bottom:304.917093pt;}
.y9b_c01230{bottom:304.917107pt;}
.y99_c01230{bottom:304.917333pt;}
.y98_c01230{bottom:304.917587pt;}
.y97_c01230{bottom:332.006240pt;}
.y96_c01230{bottom:332.200920pt;}
.y95_c01230{bottom:332.444107pt;}
.y94_c01230{bottom:332.897907pt;}
.y93_c01230{bottom:333.183733pt;}
.y92_c01230{bottom:333.286293pt;}
.y91_c01230{bottom:333.681373pt;}
.y90_c01230{bottom:333.971400pt;}
.y8f_c01230{bottom:334.215707pt;}
.y8e_c01230{bottom:334.553960pt;}
.y8d_c01230{bottom:334.702187pt;}
.y8c_c01230{bottom:335.038240pt;}
.y8b_c01230{bottom:363.088507pt;}
.y8a_c01230{bottom:363.728267pt;}
.y89_c01230{bottom:364.412373pt;}
.y88_c01230{bottom:364.808213pt;}
.y87_c01230{bottom:365.108173pt;}
.y86_c01230{bottom:366.284453pt;}
.y85_c01230{bottom:366.675733pt;}
.y84_c01230{bottom:366.973293pt;}
.y83_c01230{bottom:368.245400pt;}
.y82_c01230{bottom:368.641333pt;}
.y81_c01230{bottom:397.120077pt;}
.y80_c01230{bottom:397.521497pt;}
.y7f_c01230{bottom:397.774635pt;}
.y7e_c01230{bottom:397.932665pt;}
.y7d_c01230{bottom:398.258688pt;}
.y7c_c01230{bottom:398.359715pt;}
.y7b_c01230{bottom:398.798735pt;}
.y7a_c01230{bottom:399.139864pt;}
.y79_c01230{bottom:399.432423pt;}
.y78_c01230{bottom:399.827716pt;}
.y77_c01230{bottom:429.115052pt;}
.y73_c01230{bottom:429.115175pt;}
.y74_c01230{bottom:429.115264pt;}
.y71_c01230{bottom:429.115343pt;}
.y72_c01230{bottom:429.115548pt;}
.y76_c01230{bottom:429.115603pt;}
.y75_c01230{bottom:429.115620pt;}
.y70_c01230{bottom:429.115627pt;}
.y6e_c01230{bottom:429.115928pt;}
.y6d_c01230{bottom:429.116149pt;}
.y6f_c01230{bottom:429.116231pt;}
.y6c_c01230{bottom:429.116673pt;}
.y67_c01230{bottom:461.750380pt;}
.y6b_c01230{bottom:461.750515pt;}
.y66_c01230{bottom:461.750637pt;}
.y68_c01230{bottom:461.750736pt;}
.y65_c01230{bottom:461.750868pt;}
.y6a_c01230{bottom:461.750888pt;}
.y69_c01230{bottom:461.751065pt;}
.y63_c01230{bottom:461.751143pt;}
.y64_c01230{bottom:461.751179pt;}
.y61_c01230{bottom:461.751621pt;}
.y62_c01230{bottom:461.751657pt;}
.y60_c01230{bottom:461.751985pt;}
.y5f_c01230{bottom:461.752056pt;}
.y55_c01230{bottom:495.208899pt;}
.y54_c01230{bottom:495.208943pt;}
.y5d_c01230{bottom:495.209116pt;}
.y57_c01230{bottom:495.209157pt;}
.y56_c01230{bottom:495.209308pt;}
.y5e_c01230{bottom:495.209375pt;}
.y58_c01230{bottom:495.209487pt;}
.y5c_c01230{bottom:495.209737pt;}
.y5a_c01230{bottom:495.209799pt;}
.y59_c01230{bottom:495.209923pt;}
.y5b_c01230{bottom:495.210101pt;}
.y53_c01230{bottom:522.840260pt;}
.y52_c01230{bottom:523.165548pt;}
.y51_c01230{bottom:523.381779pt;}
.y50_c01230{bottom:524.037375pt;}
.y4f_c01230{bottom:524.362681pt;}
.y4e_c01230{bottom:525.015021pt;}
.y4d_c01230{bottom:525.334273pt;}
.y4c_c01230{bottom:525.986539pt;}
.y4b_c01230{bottom:526.195044pt;}
.y4a_c01230{bottom:527.269741pt;}
.y49_c01230{bottom:527.585793pt;}
.y47_c01230{bottom:529.096339pt;}
.y48_c01230{bottom:529.436965pt;}
.y46_c01230{bottom:529.447760pt;}
.y41_c01230{bottom:557.351295pt;}
.y3c_c01230{bottom:557.351612pt;}
.y42_c01230{bottom:557.351713pt;}
.y40_c01230{bottom:557.351792pt;}
.y43_c01230{bottom:557.351892pt;}
.y44_c01230{bottom:557.351928pt;}
.y45_c01230{bottom:557.351964pt;}
.y3b_c01230{bottom:557.352083pt;}
.y3f_c01230{bottom:557.352103pt;}
.y3d_c01230{bottom:557.352155pt;}
.y3e_c01230{bottom:557.352707pt;}
.y3a_c01230{bottom:588.350347pt;}
.y31_c01230{bottom:588.350591pt;}
.y39_c01230{bottom:588.351004pt;}
.y32_c01230{bottom:588.351240pt;}
.y38_c01230{bottom:588.351448pt;}
.y33_c01230{bottom:588.351463pt;}
.y36_c01230{bottom:588.351527pt;}
.y35_c01230{bottom:588.351704pt;}
.y34_c01230{bottom:588.351845pt;}
.y37_c01230{bottom:588.351892pt;}
.y30_c01230{bottom:617.102599pt;}
.y2f_c01230{bottom:617.339227pt;}
.y2e_c01230{bottom:617.649831pt;}
.y2d_c01230{bottom:618.058127pt;}
.y2c_c01230{bottom:618.271459pt;}
.y2b_c01230{bottom:618.478117pt;}
.y2a_c01230{bottom:618.610903pt;}
.y29_c01230{bottom:618.960333pt;}
.y28_c01230{bottom:619.168597pt;}
.y27_c01230{bottom:619.466256pt;}
.y26_c01230{bottom:619.852385pt;}
.y25_c01230{bottom:620.195059pt;}
.y24_c01230{bottom:620.400000pt;}
.y23_c01230{bottom:649.552000pt;}
.y22_c01230{bottom:681.380000pt;}
.y21_c01230{bottom:713.109333pt;}
.y20_c01230{bottom:744.000000pt;}
.y1f_c01230{bottom:775.661333pt;}
.y1e_c01230{bottom:807.840000pt;}
.y1d_c01230{bottom:838.480000pt;}
.y1c_c01230{bottom:870.822667pt;}
.y1b_c01230{bottom:901.681333pt;}
.y1a_c01230{bottom:931.720000pt;}
.y19_c01230{bottom:931.993333pt;}
.y18_c01230{bottom:932.346667pt;}
.y17_c01230{bottom:932.618667pt;}
.y16_c01230{bottom:933.513333pt;}
.y15_c01230{bottom:933.770667pt;}
.y14_c01230{bottom:934.397333pt;}
.y13_c01230{bottom:935.094667pt;}
.y12_c01230{bottom:935.364000pt;}
.y11_c01230{bottom:936.066667pt;}
.y10_c01230{bottom:936.938667pt;}
.yf_c01230{bottom:937.200000pt;}
.ye_c01230{bottom:963.206667pt;}
.yd_c01230{bottom:994.005333pt;}
.yc_c01230{bottom:994.501333pt;}
.yb_c01230{bottom:994.704000pt;}
.ya_c01230{bottom:995.045333pt;}
.y9_c01230{bottom:995.345333pt;}
.y8_c01230{bottom:995.541333pt;}
.y7_c01230{bottom:995.829333pt;}
.y6_c01230{bottom:996.032000pt;}
.y5_c01230{bottom:996.276000pt;}
.y4_c01230{bottom:996.517333pt;}
.y3_c01230{bottom:996.960000pt;}
.y2_c01230{bottom:1027.633333pt;}
.y1_c01230{bottom:1075.086667pt;}
.h4_c01230{height:64.000000pt;}
.h7_c01230{height:64.001568pt;}
.hc_c01230{height:64.003200pt;}
.he_c01230{height:64.003872pt;}
.h14_c01230{height:64.023324pt;}
.h2_c01230{height:69.333333pt;}
.ha_c01230{height:69.335032pt;}
.h13_c01230{height:69.337528pt;}
.h15_c01230{height:69.358601pt;}
.h5_c01230{height:74.666667pt;}
.h9_c01230{height:74.668496pt;}
.hd_c01230{height:74.670400pt;}
.hf_c01230{height:74.671184pt;}
.h6_c01230{height:80.000000pt;}
.h8_c01230{height:80.001960pt;}
.h3_c01230{height:85.333333pt;}
.h11_c01230{height:90.672152pt;}
.h12_c01230{height:96.005808pt;}
.h10_c01230{height:101.339464pt;}
.hb_c01230{height:112.002744pt;}
.h1_c01230{height:1118.666667pt;}
.h0_c01230{height:1118.880000pt;}
.w0_c01230{width:816.480000pt;}
.w1_c01230{width:816.666667pt;}
.x0_c01230{left:0.000000pt;}
.x19_c01230{left:134.641333pt;}
.x36_c01230{left:147.122667pt;}
.x3e_c01230{left:148.322667pt;}
.x4_c01230{left:149.280000pt;}
.x2f_c01230{left:150.242667pt;}
.xe_c01230{left:157.138667pt;}
.x80_c01230{left:161.661560pt;}
.x77_c01230{left:168.578903pt;}
.x22_c01230{left:177.758667pt;}
.x73_c01230{left:187.918387pt;}
.x8d_c01230{left:188.880000pt;}
.x5_c01230{left:197.040000pt;}
.x5e_c01230{left:199.194749pt;}
.x51_c01230{left:200.402667pt;}
.x81_c01230{left:203.638015pt;}
.x30_c01230{left:206.642667pt;}
.x67_c01230{left:208.553915pt;}
.x2a_c01230{left:216.242667pt;}
.x71_c01230{left:217.600507pt;}
.x40_c01230{left:227.042667pt;}
.x63_c01230{left:228.235319pt;}
.x7c_c01230{left:230.514443pt;}
.x37_c01230{left:235.442667pt;}
.x8e_c01230{left:236.640000pt;}
.xf_c01230{left:245.697333pt;}
.x72_c01230{left:247.358000pt;}
.x5a_c01230{left:255.357816pt;}
.x6_c01230{left:264.480000pt;}
.x31_c01230{left:265.442667pt;}
.x78_c01230{left:266.699399pt;}
.x23_c01230{left:274.692000pt;}
.x79_c01230{left:278.226240pt;}
.x7_c01230{left:283.680000pt;}
.x5f_c01230{left:284.876283pt;}
.x6a_c01230{left:286.483909pt;}
.x10_c01230{left:293.930667pt;}
.x48_c01230{left:295.442667pt;}
.x1a_c01230{left:304.561333pt;}
.x8_c01230{left:313.680000pt;}
.x4c_c01230{left:314.642667pt;}
.x38_c01230{left:323.762667pt;}
.x88_c01230{left:325.703561pt;}
.x45_c01230{left:332.642667pt;}
.x7a_c01230{left:334.324756pt;}
.x82_c01230{left:335.630133pt;}
.x11_c01230{left:342.664000pt;}
.x5c_c01230{left:344.258272pt;}
.x24_c01230{left:352.694667pt;}
.x32_c01230{left:353.762667pt;}
.x7d_c01230{left:356.089109pt;}
.x60_c01230{left:363.118785pt;}
.x49_c01230{left:364.322667pt;}
.x1_c01230{left:372.480000pt;}
.x39_c01230{left:373.682667pt;}
.x52_c01230{left:379.308000pt;}
.x12_c01230{left:383.209333pt;}
.x9_c01230{left:391.920000pt;}
.x2_c01230{left:393.600000pt;}
.x33_c01230{left:402.242667pt;}
.x4d_c01230{left:412.562667pt;}
.x7b_c01230{left:414.249088pt;}
.x1b_c01230{left:421.441333pt;}
.x34_c01230{left:431.522667pt;}
.x3_c01230{left:432.960000pt;}
.x13_c01230{left:440.824000pt;}
.x5d_c01230{left:441.974204pt;}
.x83_c01230{left:443.149973pt;}
.x2b_c01230{left:450.482667pt;}
.x53_c01230{left:451.582667pt;}
.x74_c01230{left:452.748000pt;}
.x25_c01230{left:460.213333pt;}
.x56_c01230{left:462.722295pt;}
.x41_c01230{left:470.162667pt;}
.x4e_c01230{left:471.122667pt;}
.x14_c01230{left:479.930667pt;}
.x85_c01230{left:481.160056pt;}
.x4a_c01230{left:482.162667pt;}
.xa_c01230{left:490.800000pt;}
.x4f_c01230{left:493.922667pt;}
.x8a_c01230{left:500.274005pt;}
.x54_c01230{left:501.501333pt;}
.xb_c01230{left:506.640000pt;}
.x1c_c01230{left:510.001333pt;}
.x75_c01230{left:511.066667pt;}
.x2c_c01230{left:519.602667pt;}
.x3a_c01230{left:520.802667pt;}
.x6b_c01230{left:527.896621pt;}
.x26_c01230{left:529.808000pt;}
.x15_c01230{left:539.929333pt;}
.x1d_c01230{left:540.961333pt;}
.x46_c01230{left:548.882667pt;}
.xc_c01230{left:549.840000pt;}
.x61_c01230{left:551.282673pt;}
.x1e_c01230{left:558.961333pt;}
.x42_c01230{left:569.522667pt;}
.x57_c01230{left:570.484911pt;}
.x8b_c01230{left:571.435913pt;}
.x3b_c01230{left:578.642667pt;}
.x3f_c01230{left:579.842667pt;}
.x1f_c01230{left:589.201333pt;}
.x68_c01230{left:597.842316pt;}
.x50_c01230{left:599.042667pt;}
.x16_c01230{left:608.089333pt;}
.x6c_c01230{left:610.255112pt;}
.x2d_c01230{left:617.522667pt;}
.x3c_c01230{left:618.962667pt;}
.x6e_c01230{left:628.940000pt;}
.x4b_c01230{left:637.682667pt;}
.x35_c01230{left:638.642667pt;}
.xd_c01230{left:641.040000pt;}
.x43_c01230{left:647.522667pt;}
.x17_c01230{left:648.649333pt;}
.x86_c01230{left:650.346228pt;}
.x27_c01230{left:657.748000pt;}
.x58_c01230{left:658.806565pt;}
.x64_c01230{left:660.244477pt;}
.x6f_c01230{left:668.524000pt;}
.x20_c01230{left:677.761333pt;}
.x87_c01230{left:680.900219pt;}
.x55_c01230{left:683.169333pt;}
.x44_c01230{left:684.482667pt;}
.x28_c01230{left:687.989333pt;}
.x6d_c01230{left:690.649575pt;}
.x76_c01230{left:696.374667pt;}
.x47_c01230{left:697.442667pt;}
.x7e_c01230{left:704.426443pt;}
.x3d_c01230{left:707.522667pt;}
.x65_c01230{left:714.485804pt;}
.x2e_c01230{left:717.602667pt;}
.x21_c01230{left:727.921333pt;}
.x59_c01230{left:736.809049pt;}
.x89_c01230{left:739.032000pt;}
.x5b_c01230{left:746.647220pt;}
.x18_c01230{left:747.786667pt;}
.x62_c01230{left:756.487392pt;}
.x29_c01230{left:757.584000pt;}
.x69_c01230{left:764.166464pt;}
.x66_c01230{left:766.567019pt;}
.x8c_c01230{left:778.160160pt;}
.x7f_c01230{left:798.293109pt;}
.x70_c01230{left:800.910667pt;}
.x84_c01230{left:806.495296pt;}
}





/* 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_c01231 {
    display:none;
  }
  .loading-indicator_c01231.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01231 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_c01231 { 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_c01231" -> "#page-container .classname_c01231")
 */
.pf_c01231 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01231 { /* 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_c01231.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01231 { /* 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_c01231 { /* 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_c01231 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01231 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01231 {overflow:visible;}
  }
}
.c_c01231 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01231 { /* 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_c01231:after { /* webkit #35443 */
  content: '';
}
.t_c01231:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01231 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 */
}
.__c01231 { /* 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_c01231 { /* info for Javascript */
  display:none;
}
.l_c01231 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01231 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01231 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01231: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_c01231 {
    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_c01231.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01231.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_c01231 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01231{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01231;src:url('chunks/assets/font_132af6d682320e9b248f68cf.woff2')format("woff");}.ff1_c01231{font-family:ff1_c01231;line-height:1.000000;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;}
.m3_c01231{transform:matrix(0.084270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084270,0.000000,0.000000,0.250000,0,0);}
.m13_c01231{transform:matrix(0.087095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087095,0.000000,0.000000,0.250000,0,0);}
.m14_c01231{transform:matrix(0.108015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108015,0.000000,0.000000,0.250000,0,0);}
.m12_c01231{transform:matrix(0.113020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113020,0.000000,0.000000,0.250000,0,0);}
.m15_c01231{transform:matrix(0.129035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129035,0.000000,0.000000,0.250000,0,0);}
.m1_c01231{transform:matrix(0.183675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183675,0.000000,0.000000,0.250000,0,0);}
.m18_c01231{transform:matrix(0.189540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189540,0.000000,0.000000,0.250000,0,0);}
.m1e_c01231{transform:matrix(0.197230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197230,0.000000,0.000000,0.250000,0,0);}
.m1a_c01231{transform:matrix(0.202340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202340,0.000000,0.000000,0.250000,0,0);}
.m17_c01231{transform:matrix(0.220170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220170,0.000000,0.000000,0.250000,0,0);}
.mc_c01231{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m19_c01231{transform:matrix(0.235605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235605,0.000000,0.000000,0.250000,0,0);}
.m0_c01231{transform:matrix(0.247400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247400,0.000000,0.000000,0.250000,0,0);}
.ma_c01231{transform:matrix(0.251115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251115,0.000000,0.000000,0.250000,0,0);}
.m1d_c01231{transform:matrix(0.254685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254685,0.000000,0.000000,0.250000,0,0);}
.md_c01231{transform:matrix(0.257520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257520,0.000000,0.000000,0.250000,0,0);}
.m16_c01231{transform:matrix(0.258450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258450,0.000000,0.000000,0.250000,0,0);}
.mf_c01231{transform:matrix(0.278030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278030,0.000000,0.000000,0.250000,0,0);}
.m1c_c01231{transform:matrix(0.291730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291730,0.000000,0.000000,0.250000,0,0);}
.mb_c01231{transform:matrix(0.314135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314135,0.000000,0.000000,0.250000,0,0);}
.m4_c01231{transform:matrix(0.319005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319005,0.000000,0.000000,0.250000,0,0);}
.m10_c01231{transform:matrix(0.335475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335475,0.000000,0.000000,0.250000,0,0);}
.m9_c01231{transform:matrix(0.342055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342055,0.000000,0.000000,0.250000,0,0);}
.m1b_c01231{transform:matrix(0.373630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373630,0.000000,0.000000,0.250000,0,0);}
.m5_c01231{transform:matrix(0.375695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375695,0.000000,0.000000,0.250000,0,0);}
.m11_c01231{transform:matrix(0.400700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400700,0.000000,0.000000,0.250000,0,0);}
.m6_c01231{transform:matrix(0.599340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.599340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.599340,0.000000,0.000000,0.250000,0,0);}
.m2_c01231{transform:matrix(0.662355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662355,0.000000,0.000000,0.250000,0,0);}
.m7_c01231{transform:matrix(0.720350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720350,0.000000,0.000000,0.250000,0,0);}
.me_c01231{transform:matrix(0.808695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.808695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.808695,0.000000,0.000000,0.250000,0,0);}
.m8_c01231{transform:matrix(1.381505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.381505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.381505,0.000000,0.000000,0.250000,0,0);}
.v0_c01231{vertical-align:0.000000px;}
.ls0_c01231{letter-spacing:0.000000px;}
.sc__c01231{text-shadow:none;}
.sc0_c01231{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__c01231{-webkit-text-stroke:0px transparent;}
.sc0_c01231{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01231{word-spacing:0.000000px;}
.fc0_c01231{color:transparent;}
.fs2_c01231{font-size:12.000000px;}
.fs4_c01231{font-size:18.000000px;}
.fs6_c01231{font-size:48.000000px;}
.fs1_c01231{font-size:72.000000px;}
.fs0_c01231{font-size:90.000000px;}
.fs5_c01231{font-size:102.000000px;}
.fs3_c01231{font-size:198.000000px;}
.y0_c01231{bottom:0.000000px;}
.yb_c01231{bottom:518.940000px;}
.ya_c01231{bottom:524.880000px;}
.y8_c01231{bottom:565.110000px;}
.y9_c01231{bottom:565.650000px;}
.y7_c01231{bottom:768.873000px;}
.y6_c01231{bottom:791.370000px;}
.y5_c01231{bottom:805.882500px;}
.y4_c01231{bottom:949.320000px;}
.y3_c01231{bottom:968.496000px;}
.y2_c01231{bottom:1019.932500px;}
.y1_c01231{bottom:1056.541500px;}
.h4_c01231{height:12.000000px;}
.h6_c01231{height:18.000000px;}
.h8_c01231{height:48.000000px;}
.h3_c01231{height:72.000000px;}
.h2_c01231{height:90.000000px;}
.h7_c01231{height:102.000000px;}
.h5_c01231{height:198.000000px;}
.h1_c01231{height:1258.500000px;}
.h0_c01231{height:1258.740000px;}
.w0_c01231{width:918.540000px;}
.w1_c01231{width:918.750000px;}
.x0_c01231{left:0.000000px;}
.xa_c01231{left:75.600000px;}
.x15_c01231{left:163.890000px;}
.xb_c01231{left:175.500000px;}
.x16_c01231{left:211.410000px;}
.x4_c01231{left:215.460000px;}
.x1_c01231{left:234.900000px;}
.x5_c01231{left:244.890000px;}
.x17_c01231{left:247.320000px;}
.x12_c01231{left:255.420000px;}
.x6_c01231{left:276.210000px;}
.x7_c01231{left:282.420000px;}
.x13_c01231{left:290.250000px;}
.x18_c01231{left:300.510000px;}
.xc_c01231{left:319.410000px;}
.x19_c01231{left:322.380000px;}
.x14_c01231{left:331.020000px;}
.x2_c01231{left:345.330000px;}
.x3_c01231{left:379.080000px;}
.xd_c01231{left:387.450000px;}
.xe_c01231{left:463.860000px;}
.x8_c01231{left:474.120000px;}
.x9_c01231{left:513.270000px;}
.xf_c01231{left:552.690000px;}
.x10_c01231{left:583.200000px;}
.x11_c01231{left:644.490000px;}
.x1c_c01231{left:910.170000px;}
.x1a_c01231{left:912.870000px;}
.x1b_c01231{left:915.300000px;}
@media print{
.v0_c01231{vertical-align:0.000000pt;}
.ls0_c01231{letter-spacing:0.000000pt;}
.ws0_c01231{word-spacing:0.000000pt;}
.fs2_c01231{font-size:10.666667pt;}
.fs4_c01231{font-size:16.000000pt;}
.fs6_c01231{font-size:42.666667pt;}
.fs1_c01231{font-size:64.000000pt;}
.fs0_c01231{font-size:80.000000pt;}
.fs5_c01231{font-size:90.666667pt;}
.fs3_c01231{font-size:176.000000pt;}
.y0_c01231{bottom:0.000000pt;}
.yb_c01231{bottom:461.280000pt;}
.ya_c01231{bottom:466.560000pt;}
.y8_c01231{bottom:502.320000pt;}
.y9_c01231{bottom:502.800000pt;}
.y7_c01231{bottom:683.442667pt;}
.y6_c01231{bottom:703.440000pt;}
.y5_c01231{bottom:716.340000pt;}
.y4_c01231{bottom:843.840000pt;}
.y3_c01231{bottom:860.885333pt;}
.y2_c01231{bottom:906.606667pt;}
.y1_c01231{bottom:939.148000pt;}
.h4_c01231{height:10.666667pt;}
.h6_c01231{height:16.000000pt;}
.h8_c01231{height:42.666667pt;}
.h3_c01231{height:64.000000pt;}
.h2_c01231{height:80.000000pt;}
.h7_c01231{height:90.666667pt;}
.h5_c01231{height:176.000000pt;}
.h1_c01231{height:1118.666667pt;}
.h0_c01231{height:1118.880000pt;}
.w0_c01231{width:816.480000pt;}
.w1_c01231{width:816.666667pt;}
.x0_c01231{left:0.000000pt;}
.xa_c01231{left:67.200000pt;}
.x15_c01231{left:145.680000pt;}
.xb_c01231{left:156.000000pt;}
.x16_c01231{left:187.920000pt;}
.x4_c01231{left:191.520000pt;}
.x1_c01231{left:208.800000pt;}
.x5_c01231{left:217.680000pt;}
.x17_c01231{left:219.840000pt;}
.x12_c01231{left:227.040000pt;}
.x6_c01231{left:245.520000pt;}
.x7_c01231{left:251.040000pt;}
.x13_c01231{left:258.000000pt;}
.x18_c01231{left:267.120000pt;}
.xc_c01231{left:283.920000pt;}
.x19_c01231{left:286.560000pt;}
.x14_c01231{left:294.240000pt;}
.x2_c01231{left:306.960000pt;}
.x3_c01231{left:336.960000pt;}
.xd_c01231{left:344.400000pt;}
.xe_c01231{left:412.320000pt;}
.x8_c01231{left:421.440000pt;}
.x9_c01231{left:456.240000pt;}
.xf_c01231{left:491.280000pt;}
.x10_c01231{left:518.400000pt;}
.x11_c01231{left:572.880000pt;}
.x1c_c01231{left:809.040000pt;}
.x1a_c01231{left:811.440000pt;}
.x1b_c01231{left:813.600000pt;}
}





/* 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_c01232 {
    display:none;
  }
  .loading-indicator_c01232.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01232 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_c01232 { 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_c01232" -> "#page-container .classname_c01232")
 */
.pf_c01232 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01232 { /* 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_c01232.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01232 { /* 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_c01232 { /* 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_c01232 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01232 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01232 {overflow:visible;}
  }
}
.c_c01232 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01232 { /* 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_c01232:after { /* webkit #35443 */
  content: '';
}
.t_c01232:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01232 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 */
}
.__c01232 { /* 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_c01232 { /* info for Javascript */
  display:none;
}
.l_c01232 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01232 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01232 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01232: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_c01232 {
    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_c01232.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01232.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_c01232 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01232{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01232;src:url('chunks/assets/font_59dc3ab2e04ed21d4ac9992b.woff2')format("woff");}.ff1_c01232{font-family:ff1_c01232;line-height:1.000000;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;}
.mf_c01232{transform:matrix(0.010605,-0.000042,0.001000,0.249998,0,0);-ms-transform:matrix(0.010605,-0.000042,0.001000,0.249998,0,0);-webkit-transform:matrix(0.010605,-0.000042,0.001000,0.249998,0,0);}
.m2_c01232{transform:matrix(0.010815,0.000097,-0.002250,0.249990,0,0);-ms-transform:matrix(0.010815,0.000097,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.010815,0.000097,-0.002250,0.249990,0,0);}
.m28_c01232{transform:matrix(0.012480,-0.000050,0.001000,0.249998,0,0);-ms-transform:matrix(0.012480,-0.000050,0.001000,0.249998,0,0);-webkit-transform:matrix(0.012480,-0.000050,0.001000,0.249998,0,0);}
.md_c01232{transform:matrix(0.017355,-0.000069,0.001000,0.249998,0,0);-ms-transform:matrix(0.017355,-0.000069,0.001000,0.249998,0,0);-webkit-transform:matrix(0.017355,-0.000069,0.001000,0.249998,0,0);}
.m29_c01232{transform:matrix(0.022165,-0.000089,0.001000,0.249998,0,0);-ms-transform:matrix(0.022165,-0.000089,0.001000,0.249998,0,0);-webkit-transform:matrix(0.022165,-0.000089,0.001000,0.249998,0,0);}
.m0_c01232{transform:matrix(0.148969,0.001341,-0.002250,0.249990,0,0);-ms-transform:matrix(0.148969,0.001341,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.148969,0.001341,-0.002250,0.249990,0,0);}
.m1b_c01232{transform:matrix(0.168079,-0.000672,0.001000,0.249998,0,0);-ms-transform:matrix(0.168079,-0.000672,0.001000,0.249998,0,0);-webkit-transform:matrix(0.168079,-0.000672,0.001000,0.249998,0,0);}
.m1_c01232{transform:matrix(0.195872,0.001763,-0.002250,0.249990,0,0);-ms-transform:matrix(0.195872,0.001763,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.195872,0.001763,-0.002250,0.249990,0,0);}
.m1f_c01232{transform:matrix(0.198888,-0.000796,0.001000,0.249998,0,0);-ms-transform:matrix(0.198888,-0.000796,0.001000,0.249998,0,0);-webkit-transform:matrix(0.198888,-0.000796,0.001000,0.249998,0,0);}
.m15_c01232{transform:matrix(0.212198,-0.000849,0.001000,0.249998,0,0);-ms-transform:matrix(0.212198,-0.000849,0.001000,0.249998,0,0);-webkit-transform:matrix(0.212198,-0.000849,0.001000,0.249998,0,0);}
.me_c01232{transform:matrix(0.216973,-0.000868,0.001000,0.249998,0,0);-ms-transform:matrix(0.216973,-0.000868,0.001000,0.249998,0,0);-webkit-transform:matrix(0.216973,-0.000868,0.001000,0.249998,0,0);}
.m2b_c01232{transform:matrix(0.227663,-0.000911,0.001000,0.249998,0,0);-ms-transform:matrix(0.227663,-0.000911,0.001000,0.249998,0,0);-webkit-transform:matrix(0.227663,-0.000911,0.001000,0.249998,0,0);}
.m33_c01232{transform:matrix(0.230013,-0.000920,0.001000,0.249998,0,0);-ms-transform:matrix(0.230013,-0.000920,0.001000,0.249998,0,0);-webkit-transform:matrix(0.230013,-0.000920,0.001000,0.249998,0,0);}
.m27_c01232{transform:matrix(0.232863,-0.000931,0.001000,0.249998,0,0);-ms-transform:matrix(0.232863,-0.000931,0.001000,0.249998,0,0);-webkit-transform:matrix(0.232863,-0.000931,0.001000,0.249998,0,0);}
.m1d_c01232{transform:matrix(0.232983,-0.000932,0.001000,0.249998,0,0);-ms-transform:matrix(0.232983,-0.000932,0.001000,0.249998,0,0);-webkit-transform:matrix(0.232983,-0.000932,0.001000,0.249998,0,0);}
.m13_c01232{transform:matrix(0.234358,-0.000937,0.001000,0.249998,0,0);-ms-transform:matrix(0.234358,-0.000937,0.001000,0.249998,0,0);-webkit-transform:matrix(0.234358,-0.000937,0.001000,0.249998,0,0);}
.m2a_c01232{transform:matrix(0.235078,-0.000940,0.001000,0.249998,0,0);-ms-transform:matrix(0.235078,-0.000940,0.001000,0.249998,0,0);-webkit-transform:matrix(0.235078,-0.000940,0.001000,0.249998,0,0);}
.m2f_c01232{transform:matrix(0.239563,-0.000958,0.001000,0.249998,0,0);-ms-transform:matrix(0.239563,-0.000958,0.001000,0.249998,0,0);-webkit-transform:matrix(0.239563,-0.000958,0.001000,0.249998,0,0);}
.m19_c01232{transform:matrix(0.240373,-0.000961,0.001000,0.249998,0,0);-ms-transform:matrix(0.240373,-0.000961,0.001000,0.249998,0,0);-webkit-transform:matrix(0.240373,-0.000961,0.001000,0.249998,0,0);}
.m31_c01232{transform:matrix(0.240633,-0.000963,0.001000,0.249998,0,0);-ms-transform:matrix(0.240633,-0.000963,0.001000,0.249998,0,0);-webkit-transform:matrix(0.240633,-0.000963,0.001000,0.249998,0,0);}
.m26_c01232{transform:matrix(0.241993,-0.000968,0.001000,0.249998,0,0);-ms-transform:matrix(0.241993,-0.000968,0.001000,0.249998,0,0);-webkit-transform:matrix(0.241993,-0.000968,0.001000,0.249998,0,0);}
.m10_c01232{transform:matrix(0.243538,-0.000974,0.001000,0.249998,0,0);-ms-transform:matrix(0.243538,-0.000974,0.001000,0.249998,0,0);-webkit-transform:matrix(0.243538,-0.000974,0.001000,0.249998,0,0);}
.m8_c01232{transform:matrix(0.248838,-0.000995,0.001000,0.249998,0,0);-ms-transform:matrix(0.248838,-0.000995,0.001000,0.249998,0,0);-webkit-transform:matrix(0.248838,-0.000995,0.001000,0.249998,0,0);}
.m1c_c01232{transform:matrix(0.252428,-0.001010,0.001000,0.249998,0,0);-ms-transform:matrix(0.252428,-0.001010,0.001000,0.249998,0,0);-webkit-transform:matrix(0.252428,-0.001010,0.001000,0.249998,0,0);}
.m12_c01232{transform:matrix(0.254248,-0.001017,0.001000,0.249998,0,0);-ms-transform:matrix(0.254248,-0.001017,0.001000,0.249998,0,0);-webkit-transform:matrix(0.254248,-0.001017,0.001000,0.249998,0,0);}
.m7_c01232{transform:matrix(0.256498,-0.001026,0.001000,0.249998,0,0);-ms-transform:matrix(0.256498,-0.001026,0.001000,0.249998,0,0);-webkit-transform:matrix(0.256498,-0.001026,0.001000,0.249998,0,0);}
.m4_c01232{transform:matrix(0.257148,-0.001029,0.001000,0.249998,0,0);-ms-transform:matrix(0.257148,-0.001029,0.001000,0.249998,0,0);-webkit-transform:matrix(0.257148,-0.001029,0.001000,0.249998,0,0);}
.m30_c01232{transform:matrix(0.257998,-0.001032,0.001000,0.249998,0,0);-ms-transform:matrix(0.257998,-0.001032,0.001000,0.249998,0,0);-webkit-transform:matrix(0.257998,-0.001032,0.001000,0.249998,0,0);}
.m14_c01232{transform:matrix(0.259018,-0.001036,0.001000,0.249998,0,0);-ms-transform:matrix(0.259018,-0.001036,0.001000,0.249998,0,0);-webkit-transform:matrix(0.259018,-0.001036,0.001000,0.249998,0,0);}
.m24_c01232{transform:matrix(0.259053,-0.001036,0.001000,0.249998,0,0);-ms-transform:matrix(0.259053,-0.001036,0.001000,0.249998,0,0);-webkit-transform:matrix(0.259053,-0.001036,0.001000,0.249998,0,0);}
.m25_c01232{transform:matrix(0.259378,-0.001038,0.001000,0.249998,0,0);-ms-transform:matrix(0.259378,-0.001038,0.001000,0.249998,0,0);-webkit-transform:matrix(0.259378,-0.001038,0.001000,0.249998,0,0);}
.m5_c01232{transform:matrix(0.259398,-0.001038,0.001000,0.249998,0,0);-ms-transform:matrix(0.259398,-0.001038,0.001000,0.249998,0,0);-webkit-transform:matrix(0.259398,-0.001038,0.001000,0.249998,0,0);}
.mb_c01232{transform:matrix(0.260218,-0.001041,0.001000,0.249998,0,0);-ms-transform:matrix(0.260218,-0.001041,0.001000,0.249998,0,0);-webkit-transform:matrix(0.260218,-0.001041,0.001000,0.249998,0,0);}
.m17_c01232{transform:matrix(0.263568,-0.001054,0.001000,0.249998,0,0);-ms-transform:matrix(0.263568,-0.001054,0.001000,0.249998,0,0);-webkit-transform:matrix(0.263568,-0.001054,0.001000,0.249998,0,0);}
.m18_c01232{transform:matrix(0.264273,-0.001057,0.001000,0.249998,0,0);-ms-transform:matrix(0.264273,-0.001057,0.001000,0.249998,0,0);-webkit-transform:matrix(0.264273,-0.001057,0.001000,0.249998,0,0);}
.m32_c01232{transform:matrix(0.266648,-0.001067,0.001000,0.249998,0,0);-ms-transform:matrix(0.266648,-0.001067,0.001000,0.249998,0,0);-webkit-transform:matrix(0.266648,-0.001067,0.001000,0.249998,0,0);}
.m21_c01232{transform:matrix(0.267513,-0.001070,0.001000,0.249998,0,0);-ms-transform:matrix(0.267513,-0.001070,0.001000,0.249998,0,0);-webkit-transform:matrix(0.267513,-0.001070,0.001000,0.249998,0,0);}
.m2e_c01232{transform:matrix(0.267658,-0.001071,0.001000,0.249998,0,0);-ms-transform:matrix(0.267658,-0.001071,0.001000,0.249998,0,0);-webkit-transform:matrix(0.267658,-0.001071,0.001000,0.249998,0,0);}
.m11_c01232{transform:matrix(0.269178,-0.001077,0.001000,0.249998,0,0);-ms-transform:matrix(0.269178,-0.001077,0.001000,0.249998,0,0);-webkit-transform:matrix(0.269178,-0.001077,0.001000,0.249998,0,0);}
.m22_c01232{transform:matrix(0.269518,-0.001078,0.001000,0.249998,0,0);-ms-transform:matrix(0.269518,-0.001078,0.001000,0.249998,0,0);-webkit-transform:matrix(0.269518,-0.001078,0.001000,0.249998,0,0);}
.m2d_c01232{transform:matrix(0.270183,-0.001081,0.001000,0.249998,0,0);-ms-transform:matrix(0.270183,-0.001081,0.001000,0.249998,0,0);-webkit-transform:matrix(0.270183,-0.001081,0.001000,0.249998,0,0);}
.m23_c01232{transform:matrix(0.272798,-0.001091,0.001000,0.249998,0,0);-ms-transform:matrix(0.272798,-0.001091,0.001000,0.249998,0,0);-webkit-transform:matrix(0.272798,-0.001091,0.001000,0.249998,0,0);}
.m1e_c01232{transform:matrix(0.274108,-0.001096,0.001000,0.249998,0,0);-ms-transform:matrix(0.274108,-0.001096,0.001000,0.249998,0,0);-webkit-transform:matrix(0.274108,-0.001096,0.001000,0.249998,0,0);}
.m20_c01232{transform:matrix(0.274238,-0.001097,0.001000,0.249998,0,0);-ms-transform:matrix(0.274238,-0.001097,0.001000,0.249998,0,0);-webkit-transform:matrix(0.274238,-0.001097,0.001000,0.249998,0,0);}
.m2c_c01232{transform:matrix(0.277138,-0.001109,0.001000,0.249998,0,0);-ms-transform:matrix(0.277138,-0.001109,0.001000,0.249998,0,0);-webkit-transform:matrix(0.277138,-0.001109,0.001000,0.249998,0,0);}
.m16_c01232{transform:matrix(0.278893,-0.001116,0.001000,0.249998,0,0);-ms-transform:matrix(0.278893,-0.001116,0.001000,0.249998,0,0);-webkit-transform:matrix(0.278893,-0.001116,0.001000,0.249998,0,0);}
.m3_c01232{transform:matrix(0.279504,0.002516,-0.002250,0.249990,0,0);-ms-transform:matrix(0.279504,0.002516,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.279504,0.002516,-0.002250,0.249990,0,0);}
.m1a_c01232{transform:matrix(0.279928,-0.001120,0.001000,0.249998,0,0);-ms-transform:matrix(0.279928,-0.001120,0.001000,0.249998,0,0);-webkit-transform:matrix(0.279928,-0.001120,0.001000,0.249998,0,0);}
.m6_c01232{transform:matrix(0.285653,-0.001143,0.001000,0.249998,0,0);-ms-transform:matrix(0.285653,-0.001143,0.001000,0.249998,0,0);-webkit-transform:matrix(0.285653,-0.001143,0.001000,0.249998,0,0);}
.m9_c01232{transform:matrix(0.290318,-0.001161,0.001000,0.249998,0,0);-ms-transform:matrix(0.290318,-0.001161,0.001000,0.249998,0,0);-webkit-transform:matrix(0.290318,-0.001161,0.001000,0.249998,0,0);}
.ma_c01232{transform:matrix(0.291468,-0.001166,0.001000,0.249998,0,0);-ms-transform:matrix(0.291468,-0.001166,0.001000,0.249998,0,0);-webkit-transform:matrix(0.291468,-0.001166,0.001000,0.249998,0,0);}
.mc_c01232{transform:matrix(0.304418,-0.001218,0.001000,0.249998,0,0);-ms-transform:matrix(0.304418,-0.001218,0.001000,0.249998,0,0);-webkit-transform:matrix(0.304418,-0.001218,0.001000,0.249998,0,0);}
.m35_c01232{transform:matrix(0.345855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345855,0.000000,0.000000,0.250000,0,0);}
.m34_c01232{transform:matrix(0.347225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347225,0.000000,0.000000,0.250000,0,0);}
.v0_c01232{vertical-align:0.000000px;}
.ls0_c01232{letter-spacing:0.000000px;}
.sc__c01232{text-shadow:none;}
.sc0_c01232{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__c01232{-webkit-text-stroke:0px transparent;}
.sc0_c01232{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01232{word-spacing:0.000000px;}
.fc0_c01232{color:transparent;}
.fs4_c01232{font-size:54.000000px;}
.fs1_c01232{font-size:66.000528px;}
.fs2_c01232{font-size:72.000576px;}
.fs3_c01232{font-size:78.000624px;}
.fs0_c01232{font-size:90.003645px;}
.y0_c01232{bottom:0.000000px;}
.y35_c01232{bottom:972.283500px;}
.y2c_c01232{bottom:1007.312262px;}
.y2b_c01232{bottom:1007.312502px;}
.y2e_c01232{bottom:1007.312676px;}
.y2d_c01232{bottom:1007.312682px;}
.y2f_c01232{bottom:1007.313096px;}
.y30_c01232{bottom:1007.313636px;}
.y33_c01232{bottom:1007.313696px;}
.y31_c01232{bottom:1007.313756px;}
.y32_c01232{bottom:1007.313936px;}
.y34_c01232{bottom:1007.314236px;}
.y29_c01232{bottom:1041.201090px;}
.y2a_c01232{bottom:1041.201210px;}
.y28_c01232{bottom:1041.201228px;}
.y22_c01232{bottom:1076.487054px;}
.y23_c01232{bottom:1076.487234px;}
.y27_c01232{bottom:1076.487354px;}
.y21_c01232{bottom:1076.487360px;}
.y1f_c01232{bottom:1076.487420px;}
.y25_c01232{bottom:1076.487534px;}
.y24_c01232{bottom:1076.487654px;}
.y1e_c01232{bottom:1076.487660px;}
.y26_c01232{bottom:1076.487894px;}
.y20_c01232{bottom:1076.487900px;}
.y1d_c01232{bottom:1076.488200px;}
.y1c_c01232{bottom:1112.457978px;}
.y1b_c01232{bottom:1113.096282px;}
.y1a_c01232{bottom:1113.266862px;}
.y19_c01232{bottom:1113.600108px;}
.y18_c01232{bottom:1113.982914px;}
.y17_c01232{bottom:1114.263192px;}
.y16_c01232{bottom:1114.372464px;}
.y15_c01232{bottom:1114.655154px;}
.y14_c01232{bottom:1114.816578px;}
.y13_c01232{bottom:1115.095098px;}
.y12_c01232{bottom:1115.530764px;}
.y11_c01232{bottom:1115.698806px;}
.y10_c01232{bottom:1115.909622px;}
.y5_c01232{bottom:1146.960000px;}
.y6_c01232{bottom:1147.134960px;}
.y7_c01232{bottom:1147.345638px;}
.y8_c01232{bottom:1147.565958px;}
.y9_c01232{bottom:1147.739796px;}
.ya_c01232{bottom:1147.878078px;}
.yb_c01232{bottom:1148.183712px;}
.yc_c01232{bottom:1148.491494px;}
.yd_c01232{bottom:1148.621076px;}
.ye_c01232{bottom:1149.324276px;}
.yf_c01232{bottom:1149.980820px;}
.y4_c01232{bottom:1220.758006px;}
.y3_c01232{bottom:1221.179827px;}
.y2_c01232{bottom:1225.044202px;}
.y1_c01232{bottom:1225.260000px;}
.h6_c01232{height:54.000000px;}
.h3_c01232{height:66.000528px;}
.h4_c01232{height:72.000576px;}
.h5_c01232{height:78.000624px;}
.h2_c01232{height:90.003645px;}
.h1_c01232{height:1258.500000px;}
.h0_c01232{height:1258.740000px;}
.w0_c01232{width:918.540000px;}
.w1_c01232{width:918.750000px;}
.x0_c01232{left:0.000000px;}
.x1c_c01232{left:153.901356px;}
.x5_c01232{left:155.569500px;}
.x1d_c01232{left:197.642058px;}
.x6_c01232{left:199.309500px;}
.x2d_c01232{left:208.440000px;}
.x10_c01232{left:220.475238px;}
.x1e_c01232{left:230.582586px;}
.x7_c01232{left:251.979000px;}
.x11_c01232{left:262.647756px;}
.x12_c01232{left:296.388468px;}
.x8_c01232{left:307.059000px;}
.x1f_c01232{left:329.944176px;}
.x9_c01232{left:350.518500px;}
.x13_c01232{left:383.600106px;}
.xa_c01232{left:385.089000px;}
.x1_c01232{left:405.489000px;}
.x2_c01232{left:429.466500px;}
.x14_c01232{left:439.222110px;}
.x27_c01232{left:451.176810px;}
.xb_c01232{left:461.497500px;}
.x15_c01232{left:471.617274px;}
.x20_c01232{left:515.165640px;}
.x16_c01232{left:528.071808px;}
.xc_c01232{left:538.443000px;}
.x17_c01232{left:549.879594px;}
.xd_c01232{left:570.838500px;}
.x21_c01232{left:582.396714px;}
.x18_c01232{left:605.812110px;}
.x28_c01232{left:616.419450px;}
.x22_c01232{left:652.867842px;}
.x29_c01232{left:660.700158px;}
.x25_c01232{left:676.898370px;}
.x19_c01232{left:682.238364px;}
.x2a_c01232{left:727.121220px;}
.x26_c01232{left:734.679294px;}
.x23_c01232{left:738.459210px;}
.xe_c01232{left:746.638500px;}
.x1a_c01232{left:748.929264px;}
.x2b_c01232{left:760.061748px;}
.x1b_c01232{left:783.160494px;}
.x24_c01232{left:815.950452px;}
.x2c_c01232{left:837.822990px;}
.x3_c01232{left:858.841500px;}
.x4_c01232{left:905.710500px;}
.xf_c01232{left:910.774500px;}
@media print{
.v0_c01232{vertical-align:0.000000pt;}
.ls0_c01232{letter-spacing:0.000000pt;}
.ws0_c01232{word-spacing:0.000000pt;}
.fs4_c01232{font-size:48.000000pt;}
.fs1_c01232{font-size:58.667136pt;}
.fs2_c01232{font-size:64.000512pt;}
.fs3_c01232{font-size:69.333888pt;}
.fs0_c01232{font-size:80.003240pt;}
.y0_c01232{bottom:0.000000pt;}
.y35_c01232{bottom:864.252000pt;}
.y2c_c01232{bottom:895.388677pt;}
.y2b_c01232{bottom:895.388891pt;}
.y2e_c01232{bottom:895.389045pt;}
.y2d_c01232{bottom:895.389051pt;}
.y2f_c01232{bottom:895.389419pt;}
.y30_c01232{bottom:895.389899pt;}
.y33_c01232{bottom:895.389952pt;}
.y31_c01232{bottom:895.390005pt;}
.y32_c01232{bottom:895.390165pt;}
.y34_c01232{bottom:895.390432pt;}
.y29_c01232{bottom:925.512080pt;}
.y2a_c01232{bottom:925.512187pt;}
.y28_c01232{bottom:925.512203pt;}
.y22_c01232{bottom:956.877381pt;}
.y23_c01232{bottom:956.877541pt;}
.y27_c01232{bottom:956.877648pt;}
.y21_c01232{bottom:956.877653pt;}
.y1f_c01232{bottom:956.877707pt;}
.y25_c01232{bottom:956.877808pt;}
.y24_c01232{bottom:956.877915pt;}
.y1e_c01232{bottom:956.877920pt;}
.y26_c01232{bottom:956.878128pt;}
.y20_c01232{bottom:956.878133pt;}
.y1d_c01232{bottom:956.878400pt;}
.y1c_c01232{bottom:988.851536pt;}
.y1b_c01232{bottom:989.418917pt;}
.y1a_c01232{bottom:989.570544pt;}
.y19_c01232{bottom:989.866763pt;}
.y18_c01232{bottom:990.207035pt;}
.y17_c01232{bottom:990.456171pt;}
.y16_c01232{bottom:990.553301pt;}
.y15_c01232{bottom:990.804581pt;}
.y14_c01232{bottom:990.948069pt;}
.y13_c01232{bottom:991.195643pt;}
.y12_c01232{bottom:991.582901pt;}
.y11_c01232{bottom:991.732272pt;}
.y10_c01232{bottom:991.919664pt;}
.y5_c01232{bottom:1019.520000pt;}
.y6_c01232{bottom:1019.675520pt;}
.y7_c01232{bottom:1019.862789pt;}
.y8_c01232{bottom:1020.058629pt;}
.y9_c01232{bottom:1020.213152pt;}
.ya_c01232{bottom:1020.336069pt;}
.yb_c01232{bottom:1020.607744pt;}
.yc_c01232{bottom:1020.881328pt;}
.yd_c01232{bottom:1020.996512pt;}
.ye_c01232{bottom:1021.621579pt;}
.yf_c01232{bottom:1022.205173pt;}
.y4_c01232{bottom:1085.118228pt;}
.y3_c01232{bottom:1085.493180pt;}
.y2_c01232{bottom:1088.928180pt;}
.y1_c01232{bottom:1089.120000pt;}
.h6_c01232{height:48.000000pt;}
.h3_c01232{height:58.667136pt;}
.h4_c01232{height:64.000512pt;}
.h5_c01232{height:69.333888pt;}
.h2_c01232{height:80.003240pt;}
.h1_c01232{height:1118.666667pt;}
.h0_c01232{height:1118.880000pt;}
.w0_c01232{width:816.480000pt;}
.w1_c01232{width:816.666667pt;}
.x0_c01232{left:0.000000pt;}
.x1c_c01232{left:136.801205pt;}
.x5_c01232{left:138.284000pt;}
.x1d_c01232{left:175.681829pt;}
.x6_c01232{left:177.164000pt;}
.x2d_c01232{left:185.280000pt;}
.x10_c01232{left:195.977989pt;}
.x1e_c01232{left:204.962299pt;}
.x7_c01232{left:223.981333pt;}
.x11_c01232{left:233.464672pt;}
.x12_c01232{left:263.456416pt;}
.x8_c01232{left:272.941333pt;}
.x1f_c01232{left:293.283712pt;}
.x9_c01232{left:311.572000pt;}
.x13_c01232{left:340.977872pt;}
.xa_c01232{left:342.301333pt;}
.x1_c01232{left:360.434667pt;}
.x2_c01232{left:381.748000pt;}
.x14_c01232{left:390.419653pt;}
.x27_c01232{left:401.046053pt;}
.xb_c01232{left:410.220000pt;}
.x15_c01232{left:419.215355pt;}
.x20_c01232{left:457.925013pt;}
.x16_c01232{left:469.397163pt;}
.xc_c01232{left:478.616000pt;}
.x17_c01232{left:488.781861pt;}
.xd_c01232{left:507.412000pt;}
.x21_c01232{left:517.685968pt;}
.x18_c01232{left:538.499653pt;}
.x28_c01232{left:547.928400pt;}
.x22_c01232{left:580.326971pt;}
.x29_c01232{left:587.289029pt;}
.x25_c01232{left:601.687440pt;}
.x19_c01232{left:606.434101pt;}
.x2a_c01232{left:646.329973pt;}
.x26_c01232{left:653.048261pt;}
.x23_c01232{left:656.408187pt;}
.xe_c01232{left:663.678667pt;}
.x1a_c01232{left:665.714901pt;}
.x2b_c01232{left:675.610443pt;}
.x1b_c01232{left:696.142661pt;}
.x24_c01232{left:725.289291pt;}
.x2c_c01232{left:744.731547pt;}
.x3_c01232{left:763.414667pt;}
.x4_c01232{left:805.076000pt;}
.xf_c01232{left:809.577333pt;}
}





/* 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_c01233 {
    display:none;
  }
  .loading-indicator_c01233.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01233 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_c01233 { 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_c01233" -> "#page-container .classname_c01233")
 */
.pf_c01233 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01233 { /* 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_c01233.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01233 { /* 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_c01233 { /* 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_c01233 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01233 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01233 {overflow:visible;}
  }
}
.c_c01233 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01233 { /* 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_c01233:after { /* webkit #35443 */
  content: '';
}
.t_c01233:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01233 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 */
}
.__c01233 { /* 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_c01233 { /* info for Javascript */
  display:none;
}
.l_c01233 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01233 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01233 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01233: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_c01233 {
    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_c01233.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01233.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_c01233 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01233{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01233;src:url('chunks/assets/font_bfe6362fd3009c591583128f.woff2')format("woff");}.ff1_c01233{font-family:ff1_c01233;line-height:1.000000;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;}
.m3_c01233{transform:matrix(0.127640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127640,0.000000,0.000000,0.250000,0,0);}
.m2_c01233{transform:matrix(0.173115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173115,0.000000,0.000000,0.250000,0,0);}
.m1_c01233{transform:matrix(0.185570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185570,0.000000,0.000000,0.250000,0,0);}
.m0_c01233{transform:matrix(0.505625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505625,0.000000,0.000000,0.250000,0,0);}
.v0_c01233{vertical-align:0.000000px;}
.ls0_c01233{letter-spacing:0.000000px;}
.sc__c01233{text-shadow:none;}
.sc0_c01233{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__c01233{-webkit-text-stroke:0px transparent;}
.sc0_c01233{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01233{word-spacing:0.000000px;}
.fc0_c01233{color:transparent;}
.fs0_c01233{font-size:36.000000px;}
.fs1_c01233{font-size:114.000000px;}
.fs2_c01233{font-size:186.000000px;}
.y0_c01233{bottom:0.000000px;}
.y3_c01233{bottom:981.577500px;}
.y1_c01233{bottom:991.170000px;}
.y2_c01233{bottom:991.329000px;}
.h2_c01233{height:36.000000px;}
.h3_c01233{height:114.000000px;}
.h4_c01233{height:186.000000px;}
.h1_c01233{height:1258.500000px;}
.h0_c01233{height:1258.740000px;}
.w1_c01233{width:868.500000px;}
.w0_c01233{width:868.800000px;}
.x0_c01233{left:0.000000px;}
.x4_c01233{left:100.170000px;}
.x2_c01233{left:125.550000px;}
.x3_c01233{left:203.580000px;}
.x1_c01233{left:247.590000px;}
@media print{
.v0_c01233{vertical-align:0.000000pt;}
.ls0_c01233{letter-spacing:0.000000pt;}
.ws0_c01233{word-spacing:0.000000pt;}
.fs0_c01233{font-size:32.000000pt;}
.fs1_c01233{font-size:101.333333pt;}
.fs2_c01233{font-size:165.333333pt;}
.y0_c01233{bottom:0.000000pt;}
.y3_c01233{bottom:872.513333pt;}
.y1_c01233{bottom:881.040000pt;}
.y2_c01233{bottom:881.181333pt;}
.h2_c01233{height:32.000000pt;}
.h3_c01233{height:101.333333pt;}
.h4_c01233{height:165.333333pt;}
.h1_c01233{height:1118.666667pt;}
.h0_c01233{height:1118.880000pt;}
.w1_c01233{width:772.000000pt;}
.w0_c01233{width:772.266667pt;}
.x0_c01233{left:0.000000pt;}
.x4_c01233{left:89.040000pt;}
.x2_c01233{left:111.600000pt;}
.x3_c01233{left:180.960000pt;}
.x1_c01233{left:220.080000pt;}
}





/* 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_c01234 {
    display:none;
  }
  .loading-indicator_c01234.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01234 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_c01234 { 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_c01234" -> "#page-container .classname_c01234")
 */
.pf_c01234 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01234 { /* 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_c01234.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01234 { /* 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_c01234 { /* 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_c01234 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01234 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01234 {overflow:visible;}
  }
}
.c_c01234 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01234 { /* 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_c01234:after { /* webkit #35443 */
  content: '';
}
.t_c01234:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01234 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 */
}
.__c01234 { /* 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_c01234 { /* info for Javascript */
  display:none;
}
.l_c01234 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01234 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01234 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01234: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_c01234 {
    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_c01234.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01234.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_c01234 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01234{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01234;src:url('chunks/assets/font_cfe63ee56e9e10a97d33a3db.woff2')format("woff");}.ff1_c01234{font-family:ff1_c01234;line-height:1.000000;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;}
.m65_c01234{transform:matrix(0.013519,0.000176,-0.003250,0.249979,0,0);-ms-transform:matrix(0.013519,0.000176,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.013519,0.000176,-0.003250,0.249979,0,0);}
.ma_c01234{transform:matrix(0.090301,0.001264,-0.003500,0.249976,0,0);-ms-transform:matrix(0.090301,0.001264,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.090301,0.001264,-0.003500,0.249976,0,0);}
.m0_c01234{transform:matrix(0.097510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.097510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.097510,0.000000,0.000000,0.250000,0,0);}
.m102_c01234{transform:matrix(0.114040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114040,0.000000,0.000000,0.250000,0,0);}
.m10b_c01234{transform:matrix(0.116246,0.002092,-0.004499,0.249960,0,0);-ms-transform:matrix(0.116246,0.002092,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.116246,0.002092,-0.004499,0.249960,0,0);}
.m109_c01234{transform:matrix(0.132993,0.002394,-0.004499,0.249960,0,0);-ms-transform:matrix(0.132993,0.002394,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.132993,0.002394,-0.004499,0.249960,0,0);}
.me9_c01234{transform:matrix(0.135004,0.001755,-0.003250,0.249979,0,0);-ms-transform:matrix(0.135004,0.001755,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.135004,0.001755,-0.003250,0.249979,0,0);}
.m101_c01234{transform:matrix(0.141920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141920,0.000000,0.000000,0.250000,0,0);}
.m107_c01234{transform:matrix(0.142765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142765,0.000000,0.000000,0.250000,0,0);}
.m2_c01234{transform:matrix(0.143780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143780,0.000000,0.000000,0.250000,0,0);}
.m10e_c01234{transform:matrix(0.144532,0.002602,-0.004499,0.249960,0,0);-ms-transform:matrix(0.144532,0.002602,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.144532,0.002602,-0.004499,0.249960,0,0);}
.me8_c01234{transform:matrix(0.150612,0.001958,-0.003250,0.249979,0,0);-ms-transform:matrix(0.150612,0.001958,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.150612,0.001958,-0.003250,0.249979,0,0);}
.m106_c01234{transform:matrix(0.156680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156680,0.000000,0.000000,0.250000,0,0);}
.m4_c01234{transform:matrix(0.157155,0.002200,-0.003500,0.249976,0,0);-ms-transform:matrix(0.157155,0.002200,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.157155,0.002200,-0.003500,0.249976,0,0);}
.m8_c01234{transform:matrix(0.160419,0.002246,-0.003500,0.249976,0,0);-ms-transform:matrix(0.160419,0.002246,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.160419,0.002246,-0.003500,0.249976,0,0);}
.mff_c01234{transform:matrix(0.161581,0.002101,-0.003250,0.249979,0,0);-ms-transform:matrix(0.161581,0.002101,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.161581,0.002101,-0.003250,0.249979,0,0);}
.mb_c01234{transform:matrix(0.172153,0.002410,-0.003500,0.249976,0,0);-ms-transform:matrix(0.172153,0.002410,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.172153,0.002410,-0.003500,0.249976,0,0);}
.m5_c01234{transform:matrix(0.176788,0.002475,-0.003500,0.249976,0,0);-ms-transform:matrix(0.176788,0.002475,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.176788,0.002475,-0.003500,0.249976,0,0);}
.m6_c01234{transform:matrix(0.176988,0.002478,-0.003500,0.249976,0,0);-ms-transform:matrix(0.176988,0.002478,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.176988,0.002478,-0.003500,0.249976,0,0);}
.med_c01234{transform:matrix(0.178360,0.002319,-0.003250,0.249979,0,0);-ms-transform:matrix(0.178360,0.002319,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.178360,0.002319,-0.003250,0.249979,0,0);}
.m3_c01234{transform:matrix(0.180677,0.002529,-0.003500,0.249976,0,0);-ms-transform:matrix(0.180677,0.002529,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.180677,0.002529,-0.003500,0.249976,0,0);}
.m104_c01234{transform:matrix(0.182385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182385,0.000000,0.000000,0.250000,0,0);}
.m7_c01234{transform:matrix(0.183597,0.002570,-0.003500,0.249976,0,0);-ms-transform:matrix(0.183597,0.002570,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.183597,0.002570,-0.003500,0.249976,0,0);}
.mea_c01234{transform:matrix(0.183844,0.002390,-0.003250,0.249979,0,0);-ms-transform:matrix(0.183844,0.002390,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.183844,0.002390,-0.003250,0.249979,0,0);}
.m9_c01234{transform:matrix(0.186307,0.002608,-0.003500,0.249976,0,0);-ms-transform:matrix(0.186307,0.002608,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.186307,0.002608,-0.003500,0.249976,0,0);}
.m4f_c01234{transform:matrix(0.186369,0.002423,-0.003250,0.249979,0,0);-ms-transform:matrix(0.186369,0.002423,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.186369,0.002423,-0.003250,0.249979,0,0);}
.m72_c01234{transform:matrix(0.191709,0.002492,-0.003250,0.249979,0,0);-ms-transform:matrix(0.191709,0.002492,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.191709,0.002492,-0.003250,0.249979,0,0);}
.m5f_c01234{transform:matrix(0.194104,0.002523,-0.003250,0.249979,0,0);-ms-transform:matrix(0.194104,0.002523,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.194104,0.002523,-0.003250,0.249979,0,0);}
.m99_c01234{transform:matrix(0.196138,0.002550,-0.003250,0.249979,0,0);-ms-transform:matrix(0.196138,0.002550,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.196138,0.002550,-0.003250,0.249979,0,0);}
.mac_c01234{transform:matrix(0.197233,0.002564,-0.003250,0.249979,0,0);-ms-transform:matrix(0.197233,0.002564,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.197233,0.002564,-0.003250,0.249979,0,0);}
.m18_c01234{transform:matrix(0.197893,0.002573,-0.003250,0.249979,0,0);-ms-transform:matrix(0.197893,0.002573,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.197893,0.002573,-0.003250,0.249979,0,0);}
.m1_c01234{transform:matrix(0.197920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197920,0.000000,0.000000,0.250000,0,0);}
.md3_c01234{transform:matrix(0.198528,0.002581,-0.003250,0.249979,0,0);-ms-transform:matrix(0.198528,0.002581,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.198528,0.002581,-0.003250,0.249979,0,0);}
.m8d_c01234{transform:matrix(0.199083,0.002588,-0.003250,0.249979,0,0);-ms-transform:matrix(0.199083,0.002588,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.199083,0.002588,-0.003250,0.249979,0,0);}
.m74_c01234{transform:matrix(0.199348,0.002592,-0.003250,0.249979,0,0);-ms-transform:matrix(0.199348,0.002592,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.199348,0.002592,-0.003250,0.249979,0,0);}
.md9_c01234{transform:matrix(0.199763,0.002597,-0.003250,0.249979,0,0);-ms-transform:matrix(0.199763,0.002597,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.199763,0.002597,-0.003250,0.249979,0,0);}
.mc6_c01234{transform:matrix(0.200368,0.002605,-0.003250,0.249979,0,0);-ms-transform:matrix(0.200368,0.002605,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.200368,0.002605,-0.003250,0.249979,0,0);}
.m1f_c01234{transform:matrix(0.201228,0.002616,-0.003250,0.249979,0,0);-ms-transform:matrix(0.201228,0.002616,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.201228,0.002616,-0.003250,0.249979,0,0);}
.mdc_c01234{transform:matrix(0.201288,0.002617,-0.003250,0.249979,0,0);-ms-transform:matrix(0.201288,0.002617,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.201288,0.002617,-0.003250,0.249979,0,0);}
.m71_c01234{transform:matrix(0.201748,0.002623,-0.003250,0.249979,0,0);-ms-transform:matrix(0.201748,0.002623,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.201748,0.002623,-0.003250,0.249979,0,0);}
.mbc_c01234{transform:matrix(0.202058,0.002627,-0.003250,0.249979,0,0);-ms-transform:matrix(0.202058,0.002627,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.202058,0.002627,-0.003250,0.249979,0,0);}
.mef_c01234{transform:matrix(0.203148,0.002641,-0.003250,0.249979,0,0);-ms-transform:matrix(0.203148,0.002641,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.203148,0.002641,-0.003250,0.249979,0,0);}
.m1c_c01234{transform:matrix(0.203838,0.002650,-0.003250,0.249979,0,0);-ms-transform:matrix(0.203838,0.002650,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.203838,0.002650,-0.003250,0.249979,0,0);}
.m21_c01234{transform:matrix(0.204443,0.002658,-0.003250,0.249979,0,0);-ms-transform:matrix(0.204443,0.002658,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.204443,0.002658,-0.003250,0.249979,0,0);}
.m57_c01234{transform:matrix(0.205478,0.002671,-0.003250,0.249979,0,0);-ms-transform:matrix(0.205478,0.002671,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.205478,0.002671,-0.003250,0.249979,0,0);}
.m91_c01234{transform:matrix(0.205618,0.002673,-0.003250,0.249979,0,0);-ms-transform:matrix(0.205618,0.002673,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.205618,0.002673,-0.003250,0.249979,0,0);}
.md6_c01234{transform:matrix(0.205753,0.002675,-0.003250,0.249979,0,0);-ms-transform:matrix(0.205753,0.002675,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.205753,0.002675,-0.003250,0.249979,0,0);}
.mf1_c01234{transform:matrix(0.206413,0.002683,-0.003250,0.249979,0,0);-ms-transform:matrix(0.206413,0.002683,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.206413,0.002683,-0.003250,0.249979,0,0);}
.m3a_c01234{transform:matrix(0.206723,0.002687,-0.003250,0.249979,0,0);-ms-transform:matrix(0.206723,0.002687,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.206723,0.002687,-0.003250,0.249979,0,0);}
.m105_c01234{transform:matrix(0.207210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207210,0.000000,0.000000,0.250000,0,0);}
.m23_c01234{transform:matrix(0.207407,0.002696,-0.003250,0.249979,0,0);-ms-transform:matrix(0.207407,0.002696,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.207407,0.002696,-0.003250,0.249979,0,0);}
.ma7_c01234{transform:matrix(0.207417,0.002696,-0.003250,0.249979,0,0);-ms-transform:matrix(0.207417,0.002696,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.207417,0.002696,-0.003250,0.249979,0,0);}
.m8b_c01234{transform:matrix(0.208587,0.002712,-0.003250,0.249979,0,0);-ms-transform:matrix(0.208587,0.002712,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.208587,0.002712,-0.003250,0.249979,0,0);}
.m53_c01234{transform:matrix(0.208952,0.002716,-0.003250,0.249979,0,0);-ms-transform:matrix(0.208952,0.002716,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.208952,0.002716,-0.003250,0.249979,0,0);}
.m55_c01234{transform:matrix(0.209172,0.002719,-0.003250,0.249979,0,0);-ms-transform:matrix(0.209172,0.002719,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.209172,0.002719,-0.003250,0.249979,0,0);}
.m90_c01234{transform:matrix(0.209212,0.002720,-0.003250,0.249979,0,0);-ms-transform:matrix(0.209212,0.002720,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.209212,0.002720,-0.003250,0.249979,0,0);}
.m20_c01234{transform:matrix(0.209557,0.002724,-0.003250,0.249979,0,0);-ms-transform:matrix(0.209557,0.002724,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.209557,0.002724,-0.003250,0.249979,0,0);}
.m56_c01234{transform:matrix(0.209972,0.002730,-0.003250,0.249979,0,0);-ms-transform:matrix(0.209972,0.002730,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.209972,0.002730,-0.003250,0.249979,0,0);}
.m8a_c01234{transform:matrix(0.210222,0.002733,-0.003250,0.249979,0,0);-ms-transform:matrix(0.210222,0.002733,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.210222,0.002733,-0.003250,0.249979,0,0);}
.m92_c01234{transform:matrix(0.210377,0.002735,-0.003250,0.249979,0,0);-ms-transform:matrix(0.210377,0.002735,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.210377,0.002735,-0.003250,0.249979,0,0);}
.m51_c01234{transform:matrix(0.210667,0.002739,-0.003250,0.249979,0,0);-ms-transform:matrix(0.210667,0.002739,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.210667,0.002739,-0.003250,0.249979,0,0);}
.mb4_c01234{transform:matrix(0.211007,0.002743,-0.003250,0.249979,0,0);-ms-transform:matrix(0.211007,0.002743,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.211007,0.002743,-0.003250,0.249979,0,0);}
.md8_c01234{transform:matrix(0.211562,0.002750,-0.003250,0.249979,0,0);-ms-transform:matrix(0.211562,0.002750,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.211562,0.002750,-0.003250,0.249979,0,0);}
.m8e_c01234{transform:matrix(0.212282,0.002760,-0.003250,0.249979,0,0);-ms-transform:matrix(0.212282,0.002760,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.212282,0.002760,-0.003250,0.249979,0,0);}
.mcb_c01234{transform:matrix(0.212602,0.002764,-0.003250,0.249979,0,0);-ms-transform:matrix(0.212602,0.002764,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.212602,0.002764,-0.003250,0.249979,0,0);}
.mc9_c01234{transform:matrix(0.213117,0.002771,-0.003250,0.249979,0,0);-ms-transform:matrix(0.213117,0.002771,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.213117,0.002771,-0.003250,0.249979,0,0);}
.mbd_c01234{transform:matrix(0.213507,0.002776,-0.003250,0.249979,0,0);-ms-transform:matrix(0.213507,0.002776,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.213507,0.002776,-0.003250,0.249979,0,0);}
.m58_c01234{transform:matrix(0.213637,0.002777,-0.003250,0.249979,0,0);-ms-transform:matrix(0.213637,0.002777,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.213637,0.002777,-0.003250,0.249979,0,0);}
.m86_c01234{transform:matrix(0.213652,0.002777,-0.003250,0.249979,0,0);-ms-transform:matrix(0.213652,0.002777,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.213652,0.002777,-0.003250,0.249979,0,0);}
.mdd_c01234{transform:matrix(0.213867,0.002780,-0.003250,0.249979,0,0);-ms-transform:matrix(0.213867,0.002780,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.213867,0.002780,-0.003250,0.249979,0,0);}
.mb9_c01234{transform:matrix(0.213967,0.002782,-0.003250,0.249979,0,0);-ms-transform:matrix(0.213967,0.002782,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.213967,0.002782,-0.003250,0.249979,0,0);}
.m76_c01234{transform:matrix(0.214402,0.002787,-0.003250,0.249979,0,0);-ms-transform:matrix(0.214402,0.002787,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.214402,0.002787,-0.003250,0.249979,0,0);}
.mb3_c01234{transform:matrix(0.214602,0.002790,-0.003250,0.249979,0,0);-ms-transform:matrix(0.214602,0.002790,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.214602,0.002790,-0.003250,0.249979,0,0);}
.m6e_c01234{transform:matrix(0.214612,0.002790,-0.003250,0.249979,0,0);-ms-transform:matrix(0.214612,0.002790,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.214612,0.002790,-0.003250,0.249979,0,0);}
.m7b_c01234{transform:matrix(0.214647,0.002790,-0.003250,0.249979,0,0);-ms-transform:matrix(0.214647,0.002790,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.214647,0.002790,-0.003250,0.249979,0,0);}
.m10c_c01234{transform:matrix(0.214955,0.003869,-0.004499,0.249960,0,0);-ms-transform:matrix(0.214955,0.003869,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.214955,0.003869,-0.004499,0.249960,0,0);}
.m3c_c01234{transform:matrix(0.215042,0.002796,-0.003250,0.249979,0,0);-ms-transform:matrix(0.215042,0.002796,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.215042,0.002796,-0.003250,0.249979,0,0);}
.mcc_c01234{transform:matrix(0.215697,0.002804,-0.003250,0.249979,0,0);-ms-transform:matrix(0.215697,0.002804,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.215697,0.002804,-0.003250,0.249979,0,0);}
.m52_c01234{transform:matrix(0.215757,0.002805,-0.003250,0.249979,0,0);-ms-transform:matrix(0.215757,0.002805,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.215757,0.002805,-0.003250,0.249979,0,0);}
.m97_c01234{transform:matrix(0.215872,0.002806,-0.003250,0.249979,0,0);-ms-transform:matrix(0.215872,0.002806,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.215872,0.002806,-0.003250,0.249979,0,0);}
.m17_c01234{transform:matrix(0.216077,0.002809,-0.003250,0.249979,0,0);-ms-transform:matrix(0.216077,0.002809,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.216077,0.002809,-0.003250,0.249979,0,0);}
.m81_c01234{transform:matrix(0.216707,0.002817,-0.003250,0.249979,0,0);-ms-transform:matrix(0.216707,0.002817,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.216707,0.002817,-0.003250,0.249979,0,0);}
.m30_c01234{transform:matrix(0.217352,0.002826,-0.003250,0.249979,0,0);-ms-transform:matrix(0.217352,0.002826,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.217352,0.002826,-0.003250,0.249979,0,0);}
.mce_c01234{transform:matrix(0.217602,0.002829,-0.003250,0.249979,0,0);-ms-transform:matrix(0.217602,0.002829,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.217602,0.002829,-0.003250,0.249979,0,0);}
.m4e_c01234{transform:matrix(0.217677,0.002830,-0.003250,0.249979,0,0);-ms-transform:matrix(0.217677,0.002830,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.217677,0.002830,-0.003250,0.249979,0,0);}
.m77_c01234{transform:matrix(0.217912,0.002833,-0.003250,0.249979,0,0);-ms-transform:matrix(0.217912,0.002833,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.217912,0.002833,-0.003250,0.249979,0,0);}
.md2_c01234{transform:matrix(0.218577,0.002841,-0.003250,0.249979,0,0);-ms-transform:matrix(0.218577,0.002841,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.218577,0.002841,-0.003250,0.249979,0,0);}
.m7f_c01234{transform:matrix(0.218777,0.002844,-0.003250,0.249979,0,0);-ms-transform:matrix(0.218777,0.002844,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.218777,0.002844,-0.003250,0.249979,0,0);}
.ma1_c01234{transform:matrix(0.218812,0.002845,-0.003250,0.249979,0,0);-ms-transform:matrix(0.218812,0.002845,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.218812,0.002845,-0.003250,0.249979,0,0);}
.mb5_c01234{transform:matrix(0.219146,0.002849,-0.003250,0.249979,0,0);-ms-transform:matrix(0.219146,0.002849,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.219146,0.002849,-0.003250,0.249979,0,0);}
.m45_c01234{transform:matrix(0.219256,0.002850,-0.003250,0.249979,0,0);-ms-transform:matrix(0.219256,0.002850,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.219256,0.002850,-0.003250,0.249979,0,0);}
.mb6_c01234{transform:matrix(0.219311,0.002851,-0.003250,0.249979,0,0);-ms-transform:matrix(0.219311,0.002851,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.219311,0.002851,-0.003250,0.249979,0,0);}
.m9e_c01234{transform:matrix(0.219516,0.002854,-0.003250,0.249979,0,0);-ms-transform:matrix(0.219516,0.002854,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.219516,0.002854,-0.003250,0.249979,0,0);}
.m19_c01234{transform:matrix(0.219591,0.002855,-0.003250,0.249979,0,0);-ms-transform:matrix(0.219591,0.002855,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.219591,0.002855,-0.003250,0.249979,0,0);}
.mc3_c01234{transform:matrix(0.219806,0.002857,-0.003250,0.249979,0,0);-ms-transform:matrix(0.219806,0.002857,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.219806,0.002857,-0.003250,0.249979,0,0);}
.m108_c01234{transform:matrix(0.219854,0.003957,-0.004499,0.249960,0,0);-ms-transform:matrix(0.219854,0.003957,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.219854,0.003957,-0.004499,0.249960,0,0);}
.m96_c01234{transform:matrix(0.219991,0.002860,-0.003250,0.249979,0,0);-ms-transform:matrix(0.219991,0.002860,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.219991,0.002860,-0.003250,0.249979,0,0);}
.m6b_c01234{transform:matrix(0.220171,0.002862,-0.003250,0.249979,0,0);-ms-transform:matrix(0.220171,0.002862,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.220171,0.002862,-0.003250,0.249979,0,0);}
.ma4_c01234{transform:matrix(0.220606,0.002868,-0.003250,0.249979,0,0);-ms-transform:matrix(0.220606,0.002868,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.220606,0.002868,-0.003250,0.249979,0,0);}
.m88_c01234{transform:matrix(0.220811,0.002871,-0.003250,0.249979,0,0);-ms-transform:matrix(0.220811,0.002871,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.220811,0.002871,-0.003250,0.249979,0,0);}
.m6f_c01234{transform:matrix(0.220906,0.002872,-0.003250,0.249979,0,0);-ms-transform:matrix(0.220906,0.002872,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.220906,0.002872,-0.003250,0.249979,0,0);}
.meb_c01234{transform:matrix(0.221126,0.002875,-0.003250,0.249979,0,0);-ms-transform:matrix(0.221126,0.002875,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.221126,0.002875,-0.003250,0.249979,0,0);}
.mec_c01234{transform:matrix(0.221186,0.002875,-0.003250,0.249979,0,0);-ms-transform:matrix(0.221186,0.002875,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.221186,0.002875,-0.003250,0.249979,0,0);}
.md5_c01234{transform:matrix(0.221396,0.002878,-0.003250,0.249979,0,0);-ms-transform:matrix(0.221396,0.002878,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.221396,0.002878,-0.003250,0.249979,0,0);}
.mae_c01234{transform:matrix(0.221436,0.002879,-0.003250,0.249979,0,0);-ms-transform:matrix(0.221436,0.002879,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.221436,0.002879,-0.003250,0.249979,0,0);}
.mab_c01234{transform:matrix(0.221581,0.002881,-0.003250,0.249979,0,0);-ms-transform:matrix(0.221581,0.002881,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.221581,0.002881,-0.003250,0.249979,0,0);}
.mee_c01234{transform:matrix(0.221661,0.002882,-0.003250,0.249979,0,0);-ms-transform:matrix(0.221661,0.002882,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.221661,0.002882,-0.003250,0.249979,0,0);}
.m1e_c01234{transform:matrix(0.223011,0.002899,-0.003250,0.249979,0,0);-ms-transform:matrix(0.223011,0.002899,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.223011,0.002899,-0.003250,0.249979,0,0);}
.m3d_c01234{transform:matrix(0.224051,0.002913,-0.003250,0.249979,0,0);-ms-transform:matrix(0.224051,0.002913,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.224051,0.002913,-0.003250,0.249979,0,0);}
.mc2_c01234{transform:matrix(0.224406,0.002917,-0.003250,0.249979,0,0);-ms-transform:matrix(0.224406,0.002917,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.224406,0.002917,-0.003250,0.249979,0,0);}
.m66_c01234{transform:matrix(0.224636,0.002920,-0.003250,0.249979,0,0);-ms-transform:matrix(0.224636,0.002920,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.224636,0.002920,-0.003250,0.249979,0,0);}
.m5a_c01234{transform:matrix(0.224746,0.002922,-0.003250,0.249979,0,0);-ms-transform:matrix(0.224746,0.002922,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.224746,0.002922,-0.003250,0.249979,0,0);}
.m7a_c01234{transform:matrix(0.225076,0.002926,-0.003250,0.249979,0,0);-ms-transform:matrix(0.225076,0.002926,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.225076,0.002926,-0.003250,0.249979,0,0);}
.m78_c01234{transform:matrix(0.225126,0.002927,-0.003250,0.249979,0,0);-ms-transform:matrix(0.225126,0.002927,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.225126,0.002927,-0.003250,0.249979,0,0);}
.mc1_c01234{transform:matrix(0.225446,0.002931,-0.003250,0.249979,0,0);-ms-transform:matrix(0.225446,0.002931,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.225446,0.002931,-0.003250,0.249979,0,0);}
.m54_c01234{transform:matrix(0.226186,0.002940,-0.003250,0.249979,0,0);-ms-transform:matrix(0.226186,0.002940,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.226186,0.002940,-0.003250,0.249979,0,0);}
.m87_c01234{transform:matrix(0.226556,0.002945,-0.003250,0.249979,0,0);-ms-transform:matrix(0.226556,0.002945,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.226556,0.002945,-0.003250,0.249979,0,0);}
.m79_c01234{transform:matrix(0.226926,0.002950,-0.003250,0.249979,0,0);-ms-transform:matrix(0.226926,0.002950,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.226926,0.002950,-0.003250,0.249979,0,0);}
.mb1_c01234{transform:matrix(0.227231,0.002954,-0.003250,0.249979,0,0);-ms-transform:matrix(0.227231,0.002954,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.227231,0.002954,-0.003250,0.249979,0,0);}
.md4_c01234{transform:matrix(0.227236,0.002954,-0.003250,0.249979,0,0);-ms-transform:matrix(0.227236,0.002954,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.227236,0.002954,-0.003250,0.249979,0,0);}
.m82_c01234{transform:matrix(0.227706,0.002960,-0.003250,0.249979,0,0);-ms-transform:matrix(0.227706,0.002960,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.227706,0.002960,-0.003250,0.249979,0,0);}
.m10a_c01234{transform:matrix(0.227733,0.004099,-0.004499,0.249960,0,0);-ms-transform:matrix(0.227733,0.004099,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.227733,0.004099,-0.004499,0.249960,0,0);}
.mf0_c01234{transform:matrix(0.228026,0.002964,-0.003250,0.249979,0,0);-ms-transform:matrix(0.228026,0.002964,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.228026,0.002964,-0.003250,0.249979,0,0);}
.m2e_c01234{transform:matrix(0.228451,0.002970,-0.003250,0.249979,0,0);-ms-transform:matrix(0.228451,0.002970,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.228451,0.002970,-0.003250,0.249979,0,0);}
.mb2_c01234{transform:matrix(0.228736,0.002974,-0.003250,0.249979,0,0);-ms-transform:matrix(0.228736,0.002974,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.228736,0.002974,-0.003250,0.249979,0,0);}
.m73_c01234{transform:matrix(0.228906,0.002976,-0.003250,0.249979,0,0);-ms-transform:matrix(0.228906,0.002976,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.228906,0.002976,-0.003250,0.249979,0,0);}
.m43_c01234{transform:matrix(0.229176,0.002979,-0.003250,0.249979,0,0);-ms-transform:matrix(0.229176,0.002979,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.229176,0.002979,-0.003250,0.249979,0,0);}
.m84_c01234{transform:matrix(0.229311,0.002981,-0.003250,0.249979,0,0);-ms-transform:matrix(0.229311,0.002981,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.229311,0.002981,-0.003250,0.249979,0,0);}
.mdb_c01234{transform:matrix(0.229316,0.002981,-0.003250,0.249979,0,0);-ms-transform:matrix(0.229316,0.002981,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.229316,0.002981,-0.003250,0.249979,0,0);}
.m61_c01234{transform:matrix(0.229756,0.002987,-0.003250,0.249979,0,0);-ms-transform:matrix(0.229756,0.002987,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.229756,0.002987,-0.003250,0.249979,0,0);}
.ma5_c01234{transform:matrix(0.229946,0.002989,-0.003250,0.249979,0,0);-ms-transform:matrix(0.229946,0.002989,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.229946,0.002989,-0.003250,0.249979,0,0);}
.m36_c01234{transform:matrix(0.230436,0.002996,-0.003250,0.249979,0,0);-ms-transform:matrix(0.230436,0.002996,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.230436,0.002996,-0.003250,0.249979,0,0);}
.me3_c01234{transform:matrix(0.230511,0.002997,-0.003250,0.249979,0,0);-ms-transform:matrix(0.230511,0.002997,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.230511,0.002997,-0.003250,0.249979,0,0);}
.md0_c01234{transform:matrix(0.231040,0.003004,-0.003250,0.249979,0,0);-ms-transform:matrix(0.231040,0.003004,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.231040,0.003004,-0.003250,0.249979,0,0);}
.m40_c01234{transform:matrix(0.231105,0.003004,-0.003250,0.249979,0,0);-ms-transform:matrix(0.231105,0.003004,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.231105,0.003004,-0.003250,0.249979,0,0);}
.m1d_c01234{transform:matrix(0.231335,0.003007,-0.003250,0.249979,0,0);-ms-transform:matrix(0.231335,0.003007,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.231335,0.003007,-0.003250,0.249979,0,0);}
.mc7_c01234{transform:matrix(0.231760,0.003013,-0.003250,0.249979,0,0);-ms-transform:matrix(0.231760,0.003013,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.231760,0.003013,-0.003250,0.249979,0,0);}
.m1a_c01234{transform:matrix(0.232030,0.003016,-0.003250,0.249979,0,0);-ms-transform:matrix(0.232030,0.003016,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.232030,0.003016,-0.003250,0.249979,0,0);}
.mdf_c01234{transform:matrix(0.232185,0.003018,-0.003250,0.249979,0,0);-ms-transform:matrix(0.232185,0.003018,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.232185,0.003018,-0.003250,0.249979,0,0);}
.m70_c01234{transform:matrix(0.232380,0.003021,-0.003250,0.249979,0,0);-ms-transform:matrix(0.232380,0.003021,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.232380,0.003021,-0.003250,0.249979,0,0);}
.me0_c01234{transform:matrix(0.232475,0.003022,-0.003250,0.249979,0,0);-ms-transform:matrix(0.232475,0.003022,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.232475,0.003022,-0.003250,0.249979,0,0);}
.ma0_c01234{transform:matrix(0.233140,0.003031,-0.003250,0.249979,0,0);-ms-transform:matrix(0.233140,0.003031,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.233140,0.003031,-0.003250,0.249979,0,0);}
.mbb_c01234{transform:matrix(0.233555,0.003036,-0.003250,0.249979,0,0);-ms-transform:matrix(0.233555,0.003036,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.233555,0.003036,-0.003250,0.249979,0,0);}
.m6a_c01234{transform:matrix(0.233795,0.003039,-0.003250,0.249979,0,0);-ms-transform:matrix(0.233795,0.003039,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.233795,0.003039,-0.003250,0.249979,0,0);}
.mda_c01234{transform:matrix(0.234060,0.003043,-0.003250,0.249979,0,0);-ms-transform:matrix(0.234060,0.003043,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.234060,0.003043,-0.003250,0.249979,0,0);}
.mfd_c01234{transform:matrix(0.234460,0.003048,-0.003250,0.249979,0,0);-ms-transform:matrix(0.234460,0.003048,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.234460,0.003048,-0.003250,0.249979,0,0);}
.m8c_c01234{transform:matrix(0.234700,0.003051,-0.003250,0.249979,0,0);-ms-transform:matrix(0.234700,0.003051,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.234700,0.003051,-0.003250,0.249979,0,0);}
.m1b_c01234{transform:matrix(0.235060,0.003056,-0.003250,0.249979,0,0);-ms-transform:matrix(0.235060,0.003056,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.235060,0.003056,-0.003250,0.249979,0,0);}
.mde_c01234{transform:matrix(0.235335,0.003059,-0.003250,0.249979,0,0);-ms-transform:matrix(0.235335,0.003059,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.235335,0.003059,-0.003250,0.249979,0,0);}
.mba_c01234{transform:matrix(0.235560,0.003062,-0.003250,0.249979,0,0);-ms-transform:matrix(0.235560,0.003062,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.235560,0.003062,-0.003250,0.249979,0,0);}
.m85_c01234{transform:matrix(0.235770,0.003065,-0.003250,0.249979,0,0);-ms-transform:matrix(0.235770,0.003065,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.235770,0.003065,-0.003250,0.249979,0,0);}
.m12_c01234{transform:matrix(0.235830,0.003066,-0.003250,0.249979,0,0);-ms-transform:matrix(0.235830,0.003066,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.235830,0.003066,-0.003250,0.249979,0,0);}
.ma9_c01234{transform:matrix(0.235985,0.003068,-0.003250,0.249979,0,0);-ms-transform:matrix(0.235985,0.003068,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.235985,0.003068,-0.003250,0.249979,0,0);}
.ma2_c01234{transform:matrix(0.236185,0.003070,-0.003250,0.249979,0,0);-ms-transform:matrix(0.236185,0.003070,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.236185,0.003070,-0.003250,0.249979,0,0);}
.m4b_c01234{transform:matrix(0.236425,0.003074,-0.003250,0.249979,0,0);-ms-transform:matrix(0.236425,0.003074,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.236425,0.003074,-0.003250,0.249979,0,0);}
.m6d_c01234{transform:matrix(0.236460,0.003074,-0.003250,0.249979,0,0);-ms-transform:matrix(0.236460,0.003074,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.236460,0.003074,-0.003250,0.249979,0,0);}
.m35_c01234{transform:matrix(0.236850,0.003079,-0.003250,0.249979,0,0);-ms-transform:matrix(0.236850,0.003079,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.236850,0.003079,-0.003250,0.249979,0,0);}
.m14_c01234{transform:matrix(0.237005,0.003081,-0.003250,0.249979,0,0);-ms-transform:matrix(0.237005,0.003081,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.237005,0.003081,-0.003250,0.249979,0,0);}
.m89_c01234{transform:matrix(0.237150,0.003083,-0.003250,0.249979,0,0);-ms-transform:matrix(0.237150,0.003083,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.237150,0.003083,-0.003250,0.249979,0,0);}
.m10f_c01234{transform:matrix(0.237477,0.004275,-0.004499,0.249960,0,0);-ms-transform:matrix(0.237477,0.004275,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.237477,0.004275,-0.004499,0.249960,0,0);}
.m7e_c01234{transform:matrix(0.237950,0.003093,-0.003250,0.249979,0,0);-ms-transform:matrix(0.237950,0.003093,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.237950,0.003093,-0.003250,0.249979,0,0);}
.m50_c01234{transform:matrix(0.238015,0.003094,-0.003250,0.249979,0,0);-ms-transform:matrix(0.238015,0.003094,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.238015,0.003094,-0.003250,0.249979,0,0);}
.m10d_c01234{transform:matrix(0.238401,0.004291,-0.004499,0.249960,0,0);-ms-transform:matrix(0.238401,0.004291,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.238401,0.004291,-0.004499,0.249960,0,0);}
.me2_c01234{transform:matrix(0.238580,0.003102,-0.003250,0.249979,0,0);-ms-transform:matrix(0.238580,0.003102,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.238580,0.003102,-0.003250,0.249979,0,0);}
.m5d_c01234{transform:matrix(0.239015,0.003107,-0.003250,0.249979,0,0);-ms-transform:matrix(0.239015,0.003107,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.239015,0.003107,-0.003250,0.249979,0,0);}
.m2d_c01234{transform:matrix(0.239145,0.003109,-0.003250,0.249979,0,0);-ms-transform:matrix(0.239145,0.003109,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.239145,0.003109,-0.003250,0.249979,0,0);}
.m2f_c01234{transform:matrix(0.239220,0.003110,-0.003250,0.249979,0,0);-ms-transform:matrix(0.239220,0.003110,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.239220,0.003110,-0.003250,0.249979,0,0);}
.m4c_c01234{transform:matrix(0.239265,0.003110,-0.003250,0.249979,0,0);-ms-transform:matrix(0.239265,0.003110,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.239265,0.003110,-0.003250,0.249979,0,0);}
.md7_c01234{transform:matrix(0.239360,0.003112,-0.003250,0.249979,0,0);-ms-transform:matrix(0.239360,0.003112,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.239360,0.003112,-0.003250,0.249979,0,0);}
.m37_c01234{transform:matrix(0.239525,0.003114,-0.003250,0.249979,0,0);-ms-transform:matrix(0.239525,0.003114,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.239525,0.003114,-0.003250,0.249979,0,0);}
.m31_c01234{transform:matrix(0.239830,0.003118,-0.003250,0.249979,0,0);-ms-transform:matrix(0.239830,0.003118,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.239830,0.003118,-0.003250,0.249979,0,0);}
.mb0_c01234{transform:matrix(0.240000,0.003120,-0.003250,0.249979,0,0);-ms-transform:matrix(0.240000,0.003120,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.240000,0.003120,-0.003250,0.249979,0,0);}
.m3b_c01234{transform:matrix(0.240370,0.003125,-0.003250,0.249979,0,0);-ms-transform:matrix(0.240370,0.003125,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.240370,0.003125,-0.003250,0.249979,0,0);}
.maf_c01234{transform:matrix(0.240430,0.003126,-0.003250,0.249979,0,0);-ms-transform:matrix(0.240430,0.003126,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.240430,0.003126,-0.003250,0.249979,0,0);}
.m75_c01234{transform:matrix(0.240715,0.003129,-0.003250,0.249979,0,0);-ms-transform:matrix(0.240715,0.003129,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.240715,0.003129,-0.003250,0.249979,0,0);}
.mad_c01234{transform:matrix(0.240945,0.003132,-0.003250,0.249979,0,0);-ms-transform:matrix(0.240945,0.003132,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.240945,0.003132,-0.003250,0.249979,0,0);}
.m8f_c01234{transform:matrix(0.241140,0.003135,-0.003250,0.249979,0,0);-ms-transform:matrix(0.241140,0.003135,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.241140,0.003135,-0.003250,0.249979,0,0);}
.mc5_c01234{transform:matrix(0.241275,0.003137,-0.003250,0.249979,0,0);-ms-transform:matrix(0.241275,0.003137,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.241275,0.003137,-0.003250,0.249979,0,0);}
.mca_c01234{transform:matrix(0.241450,0.003139,-0.003250,0.249979,0,0);-ms-transform:matrix(0.241450,0.003139,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.241450,0.003139,-0.003250,0.249979,0,0);}
.m67_c01234{transform:matrix(0.241575,0.003140,-0.003250,0.249979,0,0);-ms-transform:matrix(0.241575,0.003140,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.241575,0.003140,-0.003250,0.249979,0,0);}
.ma3_c01234{transform:matrix(0.241795,0.003143,-0.003250,0.249979,0,0);-ms-transform:matrix(0.241795,0.003143,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.241795,0.003143,-0.003250,0.249979,0,0);}
.mfb_c01234{transform:matrix(0.242684,0.003155,-0.003250,0.249979,0,0);-ms-transform:matrix(0.242684,0.003155,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.242684,0.003155,-0.003250,0.249979,0,0);}
.m3f_c01234{transform:matrix(0.243029,0.003159,-0.003250,0.249979,0,0);-ms-transform:matrix(0.243029,0.003159,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.243029,0.003159,-0.003250,0.249979,0,0);}
.m32_c01234{transform:matrix(0.243059,0.003160,-0.003250,0.249979,0,0);-ms-transform:matrix(0.243059,0.003160,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.243059,0.003160,-0.003250,0.249979,0,0);}
.mf7_c01234{transform:matrix(0.243679,0.003168,-0.003250,0.249979,0,0);-ms-transform:matrix(0.243679,0.003168,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.243679,0.003168,-0.003250,0.249979,0,0);}
.m39_c01234{transform:matrix(0.243814,0.003170,-0.003250,0.249979,0,0);-ms-transform:matrix(0.243814,0.003170,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.243814,0.003170,-0.003250,0.249979,0,0);}
.m60_c01234{transform:matrix(0.243904,0.003171,-0.003250,0.249979,0,0);-ms-transform:matrix(0.243904,0.003171,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.243904,0.003171,-0.003250,0.249979,0,0);}
.m9a_c01234{transform:matrix(0.245184,0.003187,-0.003250,0.249979,0,0);-ms-transform:matrix(0.245184,0.003187,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.245184,0.003187,-0.003250,0.249979,0,0);}
.m26_c01234{transform:matrix(0.246164,0.003200,-0.003250,0.249979,0,0);-ms-transform:matrix(0.246164,0.003200,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.246164,0.003200,-0.003250,0.249979,0,0);}
.m3e_c01234{transform:matrix(0.246599,0.003206,-0.003250,0.249979,0,0);-ms-transform:matrix(0.246599,0.003206,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.246599,0.003206,-0.003250,0.249979,0,0);}
.mc4_c01234{transform:matrix(0.246659,0.003207,-0.003250,0.249979,0,0);-ms-transform:matrix(0.246659,0.003207,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.246659,0.003207,-0.003250,0.249979,0,0);}
.ma8_c01234{transform:matrix(0.247234,0.003214,-0.003250,0.249979,0,0);-ms-transform:matrix(0.247234,0.003214,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.247234,0.003214,-0.003250,0.249979,0,0);}
.m27_c01234{transform:matrix(0.247529,0.003218,-0.003250,0.249979,0,0);-ms-transform:matrix(0.247529,0.003218,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.247529,0.003218,-0.003250,0.249979,0,0);}
.mf9_c01234{transform:matrix(0.247664,0.003220,-0.003250,0.249979,0,0);-ms-transform:matrix(0.247664,0.003220,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.247664,0.003220,-0.003250,0.249979,0,0);}
.m38_c01234{transform:matrix(0.247859,0.003222,-0.003250,0.249979,0,0);-ms-transform:matrix(0.247859,0.003222,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.247859,0.003222,-0.003250,0.249979,0,0);}
.m22_c01234{transform:matrix(0.248094,0.003225,-0.003250,0.249979,0,0);-ms-transform:matrix(0.248094,0.003225,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.248094,0.003225,-0.003250,0.249979,0,0);}
.m5b_c01234{transform:matrix(0.248759,0.003234,-0.003250,0.249979,0,0);-ms-transform:matrix(0.248759,0.003234,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.248759,0.003234,-0.003250,0.249979,0,0);}
.m62_c01234{transform:matrix(0.248984,0.003237,-0.003250,0.249979,0,0);-ms-transform:matrix(0.248984,0.003237,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.248984,0.003237,-0.003250,0.249979,0,0);}
.m6c_c01234{transform:matrix(0.249634,0.003245,-0.003250,0.249979,0,0);-ms-transform:matrix(0.249634,0.003245,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.249634,0.003245,-0.003250,0.249979,0,0);}
.mc8_c01234{transform:matrix(0.249954,0.003249,-0.003250,0.249979,0,0);-ms-transform:matrix(0.249954,0.003249,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.249954,0.003249,-0.003250,0.249979,0,0);}
.ma6_c01234{transform:matrix(0.250464,0.003256,-0.003250,0.249979,0,0);-ms-transform:matrix(0.250464,0.003256,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.250464,0.003256,-0.003250,0.249979,0,0);}
.m5c_c01234{transform:matrix(0.250559,0.003257,-0.003250,0.249979,0,0);-ms-transform:matrix(0.250559,0.003257,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.250559,0.003257,-0.003250,0.249979,0,0);}
.m83_c01234{transform:matrix(0.250644,0.003258,-0.003250,0.249979,0,0);-ms-transform:matrix(0.250644,0.003258,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.250644,0.003258,-0.003250,0.249979,0,0);}
.m69_c01234{transform:matrix(0.250669,0.003259,-0.003250,0.249979,0,0);-ms-transform:matrix(0.250669,0.003259,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.250669,0.003259,-0.003250,0.249979,0,0);}
.m49_c01234{transform:matrix(0.250989,0.003263,-0.003250,0.249979,0,0);-ms-transform:matrix(0.250989,0.003263,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.250989,0.003263,-0.003250,0.249979,0,0);}
.m9b_c01234{transform:matrix(0.251319,0.003267,-0.003250,0.249979,0,0);-ms-transform:matrix(0.251319,0.003267,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.251319,0.003267,-0.003250,0.249979,0,0);}
.me1_c01234{transform:matrix(0.251664,0.003272,-0.003250,0.249979,0,0);-ms-transform:matrix(0.251664,0.003272,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.251664,0.003272,-0.003250,0.249979,0,0);}
.mf6_c01234{transform:matrix(0.251859,0.003274,-0.003250,0.249979,0,0);-ms-transform:matrix(0.251859,0.003274,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.251859,0.003274,-0.003250,0.249979,0,0);}
.m9d_c01234{transform:matrix(0.252864,0.003287,-0.003250,0.249979,0,0);-ms-transform:matrix(0.252864,0.003287,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.252864,0.003287,-0.003250,0.249979,0,0);}
.m15_c01234{transform:matrix(0.253084,0.003290,-0.003250,0.249979,0,0);-ms-transform:matrix(0.253084,0.003290,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.253084,0.003290,-0.003250,0.249979,0,0);}
.me5_c01234{transform:matrix(0.253119,0.003291,-0.003250,0.249979,0,0);-ms-transform:matrix(0.253119,0.003291,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.253119,0.003291,-0.003250,0.249979,0,0);}
.m98_c01234{transform:matrix(0.253194,0.003292,-0.003250,0.249979,0,0);-ms-transform:matrix(0.253194,0.003292,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.253194,0.003292,-0.003250,0.249979,0,0);}
.mf3_c01234{transform:matrix(0.253724,0.003298,-0.003250,0.249979,0,0);-ms-transform:matrix(0.253724,0.003298,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.253724,0.003298,-0.003250,0.249979,0,0);}
.maa_c01234{transform:matrix(0.253794,0.003299,-0.003250,0.249979,0,0);-ms-transform:matrix(0.253794,0.003299,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.253794,0.003299,-0.003250,0.249979,0,0);}
.m25_c01234{transform:matrix(0.253824,0.003300,-0.003250,0.249979,0,0);-ms-transform:matrix(0.253824,0.003300,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.253824,0.003300,-0.003250,0.249979,0,0);}
.md1_c01234{transform:matrix(0.254204,0.003305,-0.003250,0.249979,0,0);-ms-transform:matrix(0.254204,0.003305,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.254204,0.003305,-0.003250,0.249979,0,0);}
.m24_c01234{transform:matrix(0.254543,0.003309,-0.003250,0.249979,0,0);-ms-transform:matrix(0.254543,0.003309,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.254543,0.003309,-0.003250,0.249979,0,0);}
.m9c_c01234{transform:matrix(0.254763,0.003312,-0.003250,0.249979,0,0);-ms-transform:matrix(0.254763,0.003312,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.254763,0.003312,-0.003250,0.249979,0,0);}
.mbe_c01234{transform:matrix(0.254838,0.003313,-0.003250,0.249979,0,0);-ms-transform:matrix(0.254838,0.003313,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.254838,0.003313,-0.003250,0.249979,0,0);}
.me_c01234{transform:matrix(0.254848,0.003313,-0.003250,0.249979,0,0);-ms-transform:matrix(0.254848,0.003313,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.254848,0.003313,-0.003250,0.249979,0,0);}
.m33_c01234{transform:matrix(0.255308,0.003319,-0.003250,0.249979,0,0);-ms-transform:matrix(0.255308,0.003319,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.255308,0.003319,-0.003250,0.249979,0,0);}
.m44_c01234{transform:matrix(0.255313,0.003319,-0.003250,0.249979,0,0);-ms-transform:matrix(0.255313,0.003319,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.255313,0.003319,-0.003250,0.249979,0,0);}
.mf5_c01234{transform:matrix(0.255653,0.003323,-0.003250,0.249979,0,0);-ms-transform:matrix(0.255653,0.003323,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.255653,0.003323,-0.003250,0.249979,0,0);}
.m41_c01234{transform:matrix(0.255848,0.003326,-0.003250,0.249979,0,0);-ms-transform:matrix(0.255848,0.003326,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.255848,0.003326,-0.003250,0.249979,0,0);}
.mf8_c01234{transform:matrix(0.255943,0.003327,-0.003250,0.249979,0,0);-ms-transform:matrix(0.255943,0.003327,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.255943,0.003327,-0.003250,0.249979,0,0);}
.mcf_c01234{transform:matrix(0.256068,0.003329,-0.003250,0.249979,0,0);-ms-transform:matrix(0.256068,0.003329,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.256068,0.003329,-0.003250,0.249979,0,0);}
.mbf_c01234{transform:matrix(0.256353,0.003333,-0.003250,0.249979,0,0);-ms-transform:matrix(0.256353,0.003333,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.256353,0.003333,-0.003250,0.249979,0,0);}
.m42_c01234{transform:matrix(0.256823,0.003339,-0.003250,0.249979,0,0);-ms-transform:matrix(0.256823,0.003339,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.256823,0.003339,-0.003250,0.249979,0,0);}
.mc0_c01234{transform:matrix(0.256958,0.003340,-0.003250,0.249979,0,0);-ms-transform:matrix(0.256958,0.003340,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.256958,0.003340,-0.003250,0.249979,0,0);}
.m34_c01234{transform:matrix(0.257483,0.003347,-0.003250,0.249979,0,0);-ms-transform:matrix(0.257483,0.003347,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.257483,0.003347,-0.003250,0.249979,0,0);}
.m47_c01234{transform:matrix(0.257598,0.003349,-0.003250,0.249979,0,0);-ms-transform:matrix(0.257598,0.003349,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.257598,0.003349,-0.003250,0.249979,0,0);}
.m68_c01234{transform:matrix(0.258008,0.003354,-0.003250,0.249979,0,0);-ms-transform:matrix(0.258008,0.003354,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.258008,0.003354,-0.003250,0.249979,0,0);}
.mcd_c01234{transform:matrix(0.258088,0.003355,-0.003250,0.249979,0,0);-ms-transform:matrix(0.258088,0.003355,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.258088,0.003355,-0.003250,0.249979,0,0);}
.m5e_c01234{transform:matrix(0.261503,0.003400,-0.003250,0.249979,0,0);-ms-transform:matrix(0.261503,0.003400,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.261503,0.003400,-0.003250,0.249979,0,0);}
.m80_c01234{transform:matrix(0.261538,0.003400,-0.003250,0.249979,0,0);-ms-transform:matrix(0.261538,0.003400,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.261538,0.003400,-0.003250,0.249979,0,0);}
.m95_c01234{transform:matrix(0.262328,0.003410,-0.003250,0.249979,0,0);-ms-transform:matrix(0.262328,0.003410,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.262328,0.003410,-0.003250,0.249979,0,0);}
.me4_c01234{transform:matrix(0.263828,0.003430,-0.003250,0.249979,0,0);-ms-transform:matrix(0.263828,0.003430,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.263828,0.003430,-0.003250,0.249979,0,0);}
.me6_c01234{transform:matrix(0.264333,0.003436,-0.003250,0.249979,0,0);-ms-transform:matrix(0.264333,0.003436,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.264333,0.003436,-0.003250,0.249979,0,0);}
.m16_c01234{transform:matrix(0.266113,0.003459,-0.003250,0.249979,0,0);-ms-transform:matrix(0.266113,0.003459,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.266113,0.003459,-0.003250,0.249979,0,0);}
.m63_c01234{transform:matrix(0.266687,0.003467,-0.003250,0.249979,0,0);-ms-transform:matrix(0.266687,0.003467,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.266687,0.003467,-0.003250,0.249979,0,0);}
.mf_c01234{transform:matrix(0.268982,0.003497,-0.003250,0.249979,0,0);-ms-transform:matrix(0.268982,0.003497,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.268982,0.003497,-0.003250,0.249979,0,0);}
.m11_c01234{transform:matrix(0.269012,0.003497,-0.003250,0.249979,0,0);-ms-transform:matrix(0.269012,0.003497,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.269012,0.003497,-0.003250,0.249979,0,0);}
.m13_c01234{transform:matrix(0.269517,0.003504,-0.003250,0.249979,0,0);-ms-transform:matrix(0.269517,0.003504,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.269517,0.003504,-0.003250,0.249979,0,0);}
.m64_c01234{transform:matrix(0.270697,0.003519,-0.003250,0.249979,0,0);-ms-transform:matrix(0.270697,0.003519,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.270697,0.003519,-0.003250,0.249979,0,0);}
.m9f_c01234{transform:matrix(0.271427,0.003529,-0.003250,0.249979,0,0);-ms-transform:matrix(0.271427,0.003529,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.271427,0.003529,-0.003250,0.249979,0,0);}
.m10_c01234{transform:matrix(0.271797,0.003533,-0.003250,0.249979,0,0);-ms-transform:matrix(0.271797,0.003533,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.271797,0.003533,-0.003250,0.249979,0,0);}
.mf4_c01234{transform:matrix(0.272032,0.003536,-0.003250,0.249979,0,0);-ms-transform:matrix(0.272032,0.003536,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.272032,0.003536,-0.003250,0.249979,0,0);}
.m29_c01234{transform:matrix(0.274237,0.003565,-0.003250,0.249979,0,0);-ms-transform:matrix(0.274237,0.003565,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.274237,0.003565,-0.003250,0.249979,0,0);}
.mfa_c01234{transform:matrix(0.274707,0.003571,-0.003250,0.249979,0,0);-ms-transform:matrix(0.274707,0.003571,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.274707,0.003571,-0.003250,0.249979,0,0);}
.m28_c01234{transform:matrix(0.275447,0.003581,-0.003250,0.249979,0,0);-ms-transform:matrix(0.275447,0.003581,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.275447,0.003581,-0.003250,0.249979,0,0);}
.m48_c01234{transform:matrix(0.275602,0.003583,-0.003250,0.249979,0,0);-ms-transform:matrix(0.275602,0.003583,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.275602,0.003583,-0.003250,0.249979,0,0);}
.mfc_c01234{transform:matrix(0.275892,0.003587,-0.003250,0.249979,0,0);-ms-transform:matrix(0.275892,0.003587,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.275892,0.003587,-0.003250,0.249979,0,0);}
.m7d_c01234{transform:matrix(0.275987,0.003588,-0.003250,0.249979,0,0);-ms-transform:matrix(0.275987,0.003588,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.275987,0.003588,-0.003250,0.249979,0,0);}
.m2a_c01234{transform:matrix(0.278761,0.003624,-0.003250,0.249979,0,0);-ms-transform:matrix(0.278761,0.003624,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.278761,0.003624,-0.003250,0.249979,0,0);}
.mb8_c01234{transform:matrix(0.279831,0.003638,-0.003250,0.249979,0,0);-ms-transform:matrix(0.279831,0.003638,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.279831,0.003638,-0.003250,0.249979,0,0);}
.m2b_c01234{transform:matrix(0.281101,0.003654,-0.003250,0.249979,0,0);-ms-transform:matrix(0.281101,0.003654,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.281101,0.003654,-0.003250,0.249979,0,0);}
.m59_c01234{transform:matrix(0.281236,0.003656,-0.003250,0.249979,0,0);-ms-transform:matrix(0.281236,0.003656,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.281236,0.003656,-0.003250,0.249979,0,0);}
.m4a_c01234{transform:matrix(0.285281,0.003709,-0.003250,0.249979,0,0);-ms-transform:matrix(0.285281,0.003709,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.285281,0.003709,-0.003250,0.249979,0,0);}
.m2c_c01234{transform:matrix(0.290670,0.003779,-0.003250,0.249979,0,0);-ms-transform:matrix(0.290670,0.003779,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.290670,0.003779,-0.003250,0.249979,0,0);}
.me7_c01234{transform:matrix(0.298915,0.003886,-0.003250,0.249979,0,0);-ms-transform:matrix(0.298915,0.003886,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.298915,0.003886,-0.003250,0.249979,0,0);}
.m46_c01234{transform:matrix(0.301934,0.003925,-0.003250,0.249979,0,0);-ms-transform:matrix(0.301934,0.003925,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.301934,0.003925,-0.003250,0.249979,0,0);}
.m4d_c01234{transform:matrix(0.316998,0.004121,-0.003250,0.249979,0,0);-ms-transform:matrix(0.316998,0.004121,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.316998,0.004121,-0.003250,0.249979,0,0);}
.m94_c01234{transform:matrix(0.323403,0.004204,-0.003250,0.249979,0,0);-ms-transform:matrix(0.323403,0.004204,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.323403,0.004204,-0.003250,0.249979,0,0);}
.mb7_c01234{transform:matrix(0.330242,0.004293,-0.003250,0.249979,0,0);-ms-transform:matrix(0.330242,0.004293,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.330242,0.004293,-0.003250,0.249979,0,0);}
.mf2_c01234{transform:matrix(0.362394,0.004711,-0.003250,0.249979,0,0);-ms-transform:matrix(0.362394,0.004711,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.362394,0.004711,-0.003250,0.249979,0,0);}
.m103_c01234{transform:matrix(0.371915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371915,0.000000,0.000000,0.250000,0,0);}
.m7c_c01234{transform:matrix(0.381063,0.004954,-0.003250,0.249979,0,0);-ms-transform:matrix(0.381063,0.004954,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.381063,0.004954,-0.003250,0.249979,0,0);}
.m93_c01234{transform:matrix(0.399191,0.005189,-0.003250,0.249979,0,0);-ms-transform:matrix(0.399191,0.005189,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.399191,0.005189,-0.003250,0.249979,0,0);}
.md_c01234{transform:matrix(0.578671,0.007523,-0.003250,0.249979,0,0);-ms-transform:matrix(0.578671,0.007523,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.578671,0.007523,-0.003250,0.249979,0,0);}
.mfe_c01234{transform:matrix(0.787608,0.010239,-0.003250,0.249979,0,0);-ms-transform:matrix(0.787608,0.010239,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.787608,0.010239,-0.003250,0.249979,0,0);}
.m100_c01234{transform:matrix(1.681380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.681380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.681380,0.000000,0.000000,0.250000,0,0);}
.mc_c01234{transform:matrix(5.515079,0.071696,-0.003250,0.249979,0,0);-ms-transform:matrix(5.515079,0.071696,-0.003250,0.249979,0,0);-webkit-transform:matrix(5.515079,0.071696,-0.003250,0.249979,0,0);}
.v0_c01234{vertical-align:0.000000px;}
.ls0_c01234{letter-spacing:0.000000px;}
.sc__c01234{text-shadow:none;}
.sc0_c01234{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__c01234{-webkit-text-stroke:0px transparent;}
.sc0_c01234{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01234{word-spacing:0.000000px;}
.fc0_c01234{color:transparent;}
.fs7_c01234{font-size:36.000000px;}
.fs3_c01234{font-size:72.006084px;}
.fs4_c01234{font-size:78.006591px;}
.fs2_c01234{font-size:84.007098px;}
.fs9_c01234{font-size:84.013607px;}
.fs0_c01234{font-size:90.000000px;}
.fs5_c01234{font-size:90.007605px;}
.fs1_c01234{font-size:108.010583px;}
.fs6_c01234{font-size:126.010647px;}
.fs8_c01234{font-size:132.000000px;}
.y0_c01234{bottom:0.000000px;}
.y117_c01234{bottom:179.129829px;}
.y116_c01234{bottom:180.534234px;}
.y115_c01234{bottom:182.329032px;}
.y114_c01234{bottom:184.307781px;}
.y113_c01234{bottom:186.057624px;}
.y112_c01234{bottom:188.020740px;}
.y111_c01234{bottom:188.786136px;}
.y110_c01234{bottom:189.813000px;}
.y10f_c01234{bottom:217.422000px;}
.y10e_c01234{bottom:260.572500px;}
.y10d_c01234{bottom:276.095532px;}
.y10c_c01234{bottom:278.312267px;}
.y107_c01234{bottom:310.363857px;}
.y108_c01234{bottom:310.364256px;}
.y109_c01234{bottom:310.364733px;}
.y10a_c01234{bottom:310.365072px;}
.y10b_c01234{bottom:310.365630px;}
.y103_c01234{bottom:345.017835px;}
.y104_c01234{bottom:345.018344px;}
.y102_c01234{bottom:345.018569px;}
.y106_c01234{bottom:345.018761px;}
.y105_c01234{bottom:345.018882px;}
.y101_c01234{bottom:345.019110px;}
.y100_c01234{bottom:375.278886px;}
.yff_c01234{bottom:375.800316px;}
.yfe_c01234{bottom:376.513337px;}
.yfd_c01234{bottom:377.586338px;}
.yfc_c01234{bottom:378.115780px;}
.yfb_c01234{bottom:378.643683px;}
.yfa_c01234{bottom:379.684651px;}
.yf9_c01234{bottom:380.214874px;}
.yf8_c01234{bottom:381.118315px;}
.yf7_c01234{bottom:382.328337px;}
.yf6_c01234{bottom:383.559394px;}
.yf5_c01234{bottom:384.098586px;}
.yf4_c01234{bottom:384.956367px;}
.yf3_c01234{bottom:407.075959px;}
.yf2_c01234{bottom:408.855450px;}
.yf1_c01234{bottom:410.264119px;}
.yf0_c01234{bottom:412.221825px;}
.yef_c01234{bottom:412.925662px;}
.yee_c01234{bottom:413.439918px;}
.yed_c01234{bottom:414.835057px;}
.yec_c01234{bottom:415.556208px;}
.yeb_c01234{bottom:416.251681px;}
.yea_c01234{bottom:417.118138px;}
.ye9_c01234{bottom:418.167900px;}
.ye8_c01234{bottom:442.512649px;}
.ye7_c01234{bottom:443.180898px;}
.ye6_c01234{bottom:443.806494px;}
.ye5_c01234{bottom:444.884952px;}
.ye4_c01234{bottom:446.732208px;}
.ye3_c01234{bottom:447.393615px;}
.ye2_c01234{bottom:448.004922px;}
.ye1_c01234{bottom:450.113512px;}
.ye0_c01234{bottom:450.929349px;}
.ydf_c01234{bottom:451.360689px;}
.yde_c01234{bottom:453.023495px;}
.ydd_c01234{bottom:453.637649px;}
.ydc_c01234{bottom:454.892897px;}
.ydb_c01234{bottom:479.012006px;}
.yda_c01234{bottom:480.024876px;}
.yd9_c01234{bottom:480.515801px;}
.yd8_c01234{bottom:481.018541px;}
.yd7_c01234{bottom:482.501474px;}
.yd6_c01234{bottom:482.995635px;}
.yd5_c01234{bottom:483.493424px;}
.yd4_c01234{bottom:485.154992px;}
.yd3_c01234{bottom:485.648744px;}
.yd2_c01234{bottom:486.139415px;}
.yd1_c01234{bottom:486.958754px;}
.yd0_c01234{bottom:487.452506px;}
.ycf_c01234{bottom:488.917716px;}
.yce_c01234{bottom:515.352855px;}
.ycd_c01234{bottom:515.646695px;}
.ycc_c01234{bottom:516.047481px;}
.ycb_c01234{bottom:516.355797px;}
.yca_c01234{bottom:516.951494px;}
.yc9_c01234{bottom:517.255341px;}
.yc8_c01234{bottom:517.733850px;}
.yc7_c01234{bottom:518.142069px;}
.yc6_c01234{bottom:519.034746px;}
.yc5_c01234{bottom:519.929180px;}
.yc4_c01234{bottom:521.195234px;}
.yc3_c01234{bottom:521.589230px;}
.yc2_c01234{bottom:548.658702px;}
.yc1_c01234{bottom:549.859218px;}
.yc0_c01234{bottom:551.823570px;}
.ybf_c01234{bottom:552.445467px;}
.ybe_c01234{bottom:553.035491px;}
.ybd_c01234{bottom:554.607651px;}
.ybc_c01234{bottom:555.429056px;}
.ybb_c01234{bottom:556.401055px;}
.yba_c01234{bottom:557.012933px;}
.yb9_c01234{bottom:557.794821px;}
.yb8_c01234{bottom:558.972235px;}
.yb7_c01234{bottom:560.743650px;}
.yb6_c01234{bottom:586.442317px;}
.yb5_c01234{bottom:587.038823px;}
.yb4_c01234{bottom:587.467647px;}
.yb3_c01234{bottom:588.306654px;}
.yb2_c01234{bottom:588.748563px;}
.yb1_c01234{bottom:589.320790px;}
.yb0_c01234{bottom:590.620056px;}
.yaf_c01234{bottom:591.335803px;}
.yae_c01234{bottom:592.350934px;}
.yad_c01234{bottom:592.761429px;}
.yac_c01234{bottom:593.775956px;}
.yab_c01234{bottom:594.453191px;}
.yaa_c01234{bottom:595.035032px;}
.ya9_c01234{bottom:623.346999px;}
.ya8_c01234{bottom:623.745737px;}
.ya7_c01234{bottom:624.047243px;}
.ya6_c01234{bottom:624.248553px;}
.ya5_c01234{bottom:624.854454px;}
.ya4_c01234{bottom:625.143357px;}
.ya3_c01234{bottom:625.944755px;}
.ya2_c01234{bottom:626.641761px;}
.ya1_c01234{bottom:627.606445px;}
.ya0_c01234{bottom:627.917764px;}
.y9f_c01234{bottom:628.510166px;}
.y9e_c01234{bottom:628.798387px;}
.y9d_c01234{bottom:629.595960px;}
.y9c_c01234{bottom:655.461593px;}
.y9b_c01234{bottom:656.174730px;}
.y9a_c01234{bottom:656.697837px;}
.y99_c01234{bottom:657.051618px;}
.y98_c01234{bottom:658.459507px;}
.y97_c01234{bottom:658.995248px;}
.y96_c01234{bottom:659.544518px;}
.y95_c01234{bottom:660.234650px;}
.y94_c01234{bottom:662.344602px;}
.y93_c01234{bottom:663.062184px;}
.y92_c01234{bottom:663.589287px;}
.y91_c01234{bottom:664.983803px;}
.y90_c01234{bottom:665.505779px;}
.y8f_c01234{bottom:666.049590px;}
.y8e_c01234{bottom:690.383103px;}
.y8d_c01234{bottom:690.785304px;}
.y8c_c01234{bottom:691.184209px;}
.y8b_c01234{bottom:691.582530px;}
.y8a_c01234{bottom:691.858439px;}
.y89_c01234{bottom:692.380634px;}
.y88_c01234{bottom:693.320885px;}
.y87_c01234{bottom:693.968572px;}
.y86_c01234{bottom:694.370578px;}
.y85_c01234{bottom:695.702851px;}
.y84_c01234{bottom:696.094191px;}
.y83_c01234{bottom:696.878274px;}
.y82_c01234{bottom:697.254071px;}
.y81_c01234{bottom:698.066918px;}
.y80_c01234{bottom:698.452483px;}
.y7f_c01234{bottom:726.571863px;}
.y7e_c01234{bottom:726.812732px;}
.y7d_c01234{bottom:727.426957px;}
.y7c_c01234{bottom:728.029949px;}
.y7b_c01234{bottom:728.520833px;}
.y7a_c01234{bottom:728.882565px;}
.y79_c01234{bottom:729.984418px;}
.y78_c01234{bottom:730.342680px;}
.y77_c01234{bottom:731.201538px;}
.y76_c01234{bottom:731.540003px;}
.y75_c01234{bottom:732.027104px;}
.y74_c01234{bottom:733.108595px;}
.y73_c01234{bottom:733.823751px;}
.y72_c01234{bottom:762.784790px;}
.y71_c01234{bottom:763.639517px;}
.y70_c01234{bottom:765.118122px;}
.y6f_c01234{bottom:765.640010px;}
.y6e_c01234{bottom:766.437531px;}
.y6d_c01234{bottom:767.608643px;}
.y6c_c01234{bottom:769.261476px;}
.y6b_c01234{bottom:770.564936px;}
.y6a_c01234{bottom:771.087311px;}
.y69_c01234{bottom:803.983995px;}
.y68_c01234{bottom:805.148187px;}
.y67_c01234{bottom:805.688430px;}
.y66_c01234{bottom:805.916445px;}
.y65_c01234{bottom:833.383836px;}
.y64_c01234{bottom:833.724174px;}
.y63_c01234{bottom:834.393810px;}
.y62_c01234{bottom:834.721059px;}
.y61_c01234{bottom:835.044389px;}
.y60_c01234{bottom:836.492736px;}
.y5f_c01234{bottom:837.143490px;}
.y5e_c01234{bottom:838.146051px;}
.y5d_c01234{bottom:838.469654px;}
.y5c_c01234{bottom:839.242494px;}
.y5b_c01234{bottom:839.671272px;}
.y5a_c01234{bottom:869.722658px;}
.y59_c01234{bottom:869.910603px;}
.y58_c01234{bottom:870.500682px;}
.y57_c01234{bottom:870.805290px;}
.y56_c01234{bottom:871.307561px;}
.y55_c01234{bottom:872.503988px;}
.y54_c01234{bottom:872.697554px;}
.y53_c01234{bottom:873.586623px;}
.y52_c01234{bottom:874.091411px;}
.y51_c01234{bottom:874.845342px;}
.y50_c01234{bottom:875.073165px;}
.y4f_c01234{bottom:875.853200px;}
.y4e_c01234{bottom:904.729405px;}
.y4d_c01234{bottom:905.040880px;}
.y4c_c01234{bottom:905.339403px;}
.y4b_c01234{bottom:906.639948px;}
.y4a_c01234{bottom:906.934353px;}
.y49_c01234{bottom:907.726093px;}
.y48_c01234{bottom:908.219409px;}
.y47_c01234{bottom:909.313279px;}
.y46_c01234{bottom:909.500718px;}
.y45_c01234{bottom:909.806673px;}
.y44_c01234{bottom:910.392985px;}
.y43_c01234{bottom:910.686630px;}
.y42_c01234{bottom:941.083279px;}
.y41_c01234{bottom:941.986843px;}
.y40_c01234{bottom:942.383883px;}
.y3f_c01234{bottom:942.573877px;}
.y3e_c01234{bottom:943.369147px;}
.y3d_c01234{bottom:943.672917px;}
.y3c_c01234{bottom:943.969079px;}
.y3b_c01234{bottom:944.565087px;}
.y3a_c01234{bottom:944.958265px;}
.y39_c01234{bottom:945.250251px;}
.y38_c01234{bottom:945.950456px;}
.y37_c01234{bottom:946.138342px;}
.y36_c01234{bottom:946.333057px;}
.y35_c01234{bottom:974.845256px;}
.y34_c01234{bottom:975.385997px;}
.y33_c01234{bottom:976.978284px;}
.y32_c01234{bottom:978.183329px;}
.y31_c01234{bottom:979.096863px;}
.y30_c01234{bottom:979.890969px;}
.y2f_c01234{bottom:980.405091px;}
.y2e_c01234{bottom:981.345420px;}
.y2d_c01234{bottom:981.873933px;}
.y2c_c01234{bottom:982.786844px;}
.y2b_c01234{bottom:1011.227804px;}
.y2a_c01234{bottom:1012.665499px;}
.y29_c01234{bottom:1014.104756px;}
.y28_c01234{bottom:1015.249328px;}
.y27_c01234{bottom:1016.677819px;}
.y26_c01234{bottom:1017.113059px;}
.y25_c01234{bottom:1017.814826px;}
.y24_c01234{bottom:1018.389724px;}
.y23_c01234{bottom:1019.239573px;}
.y22_c01234{bottom:1045.822244px;}
.y21_c01234{bottom:1046.355961px;}
.y20_c01234{bottom:1046.625658px;}
.y1f_c01234{bottom:1046.876935px;}
.y1e_c01234{bottom:1047.153384px;}
.y1d_c01234{bottom:1047.762555px;}
.y1c_c01234{bottom:1048.402691px;}
.y1b_c01234{bottom:1048.661949px;}
.y1a_c01234{bottom:1049.284426px;}
.y19_c01234{bottom:1049.903215px;}
.y18_c01234{bottom:1050.408931px;}
.y17_c01234{bottom:1050.679545px;}
.y16_c01234{bottom:1051.105573px;}
.y15_c01234{bottom:1080.584047px;}
.y14_c01234{bottom:1081.176571px;}
.y13_c01234{bottom:1081.744707px;}
.y12_c01234{bottom:1083.429696px;}
.y11_c01234{bottom:1084.008456px;}
.y10_c01234{bottom:1085.330031px;}
.yf_c01234{bottom:1087.179951px;}
.ye_c01234{bottom:1088.693517px;}
.yd_c01234{bottom:1089.450952px;}
.yc_c01234{bottom:1122.121050px;}
.yb_c01234{bottom:1127.251500px;}
.ya_c01234{bottom:1136.768523px;}
.y9_c01234{bottom:1137.042846px;}
.y8_c01234{bottom:1138.019682px;}
.y7_c01234{bottom:1138.469565px;}
.y6_c01234{bottom:1139.717154px;}
.y5_c01234{bottom:1140.012288px;}
.y4_c01234{bottom:1141.112205px;}
.y3_c01234{bottom:1141.561983px;}
.y2_c01234{bottom:1142.643000px;}
.y1_c01234{bottom:1198.788000px;}
.h9_c01234{height:36.000000px;}
.h5_c01234{height:72.006084px;}
.h6_c01234{height:78.006591px;}
.h4_c01234{height:84.007098px;}
.hb_c01234{height:84.013607px;}
.h2_c01234{height:90.000000px;}
.h7_c01234{height:90.007605px;}
.h3_c01234{height:108.010583px;}
.h8_c01234{height:126.010647px;}
.ha_c01234{height:132.000000px;}
.h1_c01234{height:1258.500000px;}
.h0_c01234{height:1258.740000px;}
.w1_c01234{width:868.500000px;}
.w0_c01234{width:868.800000px;}
.x0_c01234{left:0.000000px;}
.xb6_c01234{left:88.560000px;}
.x9a_c01234{left:89.719694px;}
.x6c_c01234{left:91.064994px;}
.x4f_c01234{left:93.048291px;}
.x3f_c01234{left:94.361037px;}
.x20_c01234{left:95.426925px;}
.x16_c01234{left:97.341436px;}
.x2d_c01234{left:116.767376px;}
.x62_c01234{left:124.269260px;}
.x50_c01234{left:125.705846px;}
.x37_c01234{left:127.293543px;}
.xa5_c01234{left:134.089670px;}
.x7e_c01234{left:136.403559px;}
.x2e_c01234{left:137.567448px;}
.xac_c01234{left:146.057088px;}
.x17_c01234{left:150.539388px;}
.x9b_c01234{left:155.810546px;}
.x6d_c01234{left:157.699901px;}
.x58_c01234{left:159.101610px;}
.x21_c01234{left:160.799925px;}
.x27_c01234{left:171.272570px;}
.x75_c01234{left:179.688285px;}
.x40_c01234{left:181.022042px;}
.x18_c01234{left:184.281072px;}
.x7f_c01234{left:188.498559px;}
.x38_c01234{left:192.359417px;}
.x4_c01234{left:193.933500px;}
.xaf_c01234{left:197.900913px;}
.x52_c01234{left:201.470409px;}
.x51_c01234{left:202.922871px;}
.xe_c01234{left:204.174894px;}
.x41_c01234{left:206.394368px;}
.x9e_c01234{left:209.792732px;}
.x76_c01234{left:211.783962px;}
.x4a_c01234{left:213.937338px;}
.x28_c01234{left:215.274135px;}
.x92_c01234{left:221.669775px;}
.x63_c01234{left:223.320047px;}
.x39_c01234{left:226.396191px;}
.x53_c01234{left:236.344512px;}
.xb0_c01234{left:242.185401px;}
.x6e_c01234{left:244.890008px;}
.x4b_c01234{left:246.331106px;}
.x19_c01234{left:247.417167px;}
.xf_c01234{left:248.706074px;}
.x9f_c01234{left:253.250535px;}
.x88_c01234{left:254.898603px;}
.xb3_c01234{left:255.962624px;}
.x59_c01234{left:257.411165px;}
.x22_c01234{left:259.004925px;}
.xad_c01234{left:264.056517px;}
.x80_c01234{left:266.539059px;}
.x5_c01234{left:271.149000px;}
.x8d_c01234{left:276.305550px;}
.x6f_c01234{left:277.819721px;}
.x64_c01234{left:288.711905px;}
.x42_c01234{left:290.124216px;}
.x2f_c01234{left:291.449943px;}
.x23_c01234{left:292.484925px;}
.x29_c01234{left:293.608149px;}
.xb9_c01234{left:297.022500px;}
.x81_c01234{left:298.115559px;}
.x5a_c01234{left:301.689315px;}
.x6_c01234{left:303.276000px;}
.x93_c01234{left:308.937494px;}
.x77_c01234{left:312.229188px;}
.xb7_c01234{left:317.250000px;}
.xae_c01234{left:319.411377px;}
.x65_c01234{left:321.353834px;}
.x54_c01234{left:323.223750px;}
.x1a_c01234{left:324.675178px;}
.xb5_c01234{left:328.590000px;}
.x5b_c01234{left:332.456615px;}
.x2a_c01234{left:336.502715px;}
.x10_c01234{left:337.783452px;}
.xb1_c01234{left:340.473015px;}
.x94_c01234{left:341.840636px;}
.x43_c01234{left:346.264641px;}
.x1_c01234{left:349.110000px;}
.x30_c01234{left:357.607875px;}
.xb4_c01234{left:361.508145px;}
.x3a_c01234{left:368.696582px;}
.x2_c01234{left:372.330000px;}
.xa6_c01234{left:374.045829px;}
.x82_c01234{left:376.202559px;}
.x7_c01234{left:381.841500px;}
.x89_c01234{left:386.333562px;}
.x31_c01234{left:390.545091px;}
.xb8_c01234{left:393.930000px;}
.x8_c01234{left:402.922500px;}
.x5c_c01234{left:410.524643px;}
.x4c_c01234{left:411.592541px;}
.x3_c01234{left:415.530000px;}
.xa0_c01234{left:417.747639px;}
.x78_c01234{left:419.441265px;}
.x32_c01234{left:424.298346px;}
.x83_c01234{left:431.260059px;}
.x66_c01234{left:432.376277px;}
.x55_c01234{left:433.400384px;}
.x1b_c01234{left:434.854335px;}
.xb2_c01234{left:440.921000px;}
.x5d_c01234{left:443.161001px;}
.x44_c01234{left:445.121289px;}
.x11_c01234{left:446.617797px;}
.x95_c01234{left:452.573750px;}
.x70_c01234{left:454.469318px;}
.xa1_c01234{left:461.733423px;}
.xa7_c01234{left:463.670339px;}
.x45_c01234{left:466.704420px;}
.x8e_c01234{left:474.824366px;}
.x2b_c01234{left:478.823067px;}
.x9c_c01234{left:484.364403px;}
.x96_c01234{left:485.787392px;}
.x24_c01234{left:490.412925px;}
.x9_c01234{left:492.036000px;}
.x71_c01234{left:497.631641px;}
.xba_c01234{left:504.166500px;}
.x3b_c01234{left:511.516011px;}
.x33_c01234{left:512.592929px;}
.x1c_c01234{left:514.793022px;}
.x97_c01234{left:518.722034px;}
.x67_c01234{left:519.815408px;}
.xa_c01234{left:524.170500px;}
.xa8_c01234{left:528.742304px;}
.x72_c01234{left:531.920295px;}
.x34_c01234{left:533.670521px;}
.x3c_c01234{left:544.202708px;}
.x8a_c01234{left:552.137298px;}
.x4d_c01234{left:556.355676px;}
.x12_c01234{left:558.406986px;}
.xa9_c01234{left:561.733517px;}
.x56_c01234{left:564.637971px;}
.x8f_c01234{left:573.385494px;}
.x84_c01234{left:575.221059px;}
.x5e_c01234{left:576.286472px;}
.x35_c01234{left:577.714302px;}
.x2c_c01234{left:579.250874px;}
.xa2_c01234{left:584.052146px;}
.x79_c01234{left:586.057943px;}
.xd_c01234{left:588.657000px;}
.x1d_c01234{left:590.964975px;}
.xb_c01234{left:593.944500px;}
.x68_c01234{left:598.143422px;}
.x46_c01234{left:599.590323px;}
.x25_c01234{left:601.124925px;}
.xbb_c01234{left:603.877500px;}
.x90_c01234{left:607.144749px;}
.x85_c01234{left:609.214059px;}
.xc_c01234{left:613.539000px;}
.x9d_c01234{left:616.405107px;}
.x7a_c01234{left:618.090600px;}
.x4e_c01234{left:621.402711px;}
.x1e_c01234{left:625.501718px;}
.x69_c01234{left:641.658987px;}
.x98_c01234{left:651.039582px;}
.x73_c01234{left:653.387057px;}
.x47_c01234{left:655.421729px;}
.x13_c01234{left:657.554838px;}
.xaa_c01234{left:661.917617px;}
.x6a_c01234{left:664.613780px;}
.xa3_c01234{left:672.100214px;}
.x86_c01234{left:673.753059px;}
.x5f_c01234{left:675.664046px;}
.x36_c01234{left:678.147528px;}
.xbc_c01234{left:681.900000px;}
.x99_c01234{left:683.725224px;}
.x7b_c01234{left:685.471110px;}
.x3d_c01234{left:688.675215px;}
.x14_c01234{left:690.986603px;}
.x8b_c01234{left:695.800958px;}
.x57_c01234{left:698.095520px;}
.x87_c01234{left:706.739559px;}
.x74_c01234{left:708.260931px;}
.x26_c01234{left:711.716925px;}
.x3e_c01234{left:721.909451px;}
.x15_c01234{left:725.832789px;}
.x60_c01234{left:731.567508px;}
.xab_c01234{left:739.103114px;}
.x7c_c01234{left:741.344516px;}
.x91_c01234{left:752.175296px;}
.x61_c01234{left:753.442574px;}
.x48_c01234{left:754.825896px;}
.x1f_c01234{left:757.294278px;}
.x8c_c01234{left:762.528629px;}
.x6b_c01234{left:764.494067px;}
.x49_c01234{left:775.630469px;}
.xa4_c01234{left:783.364385px;}
.x7d_c01234{left:785.634317px;}
@media print{
.v0_c01234{vertical-align:0.000000pt;}
.ls0_c01234{letter-spacing:0.000000pt;}
.ws0_c01234{word-spacing:0.000000pt;}
.fs7_c01234{font-size:32.000000pt;}
.fs3_c01234{font-size:64.005408pt;}
.fs4_c01234{font-size:69.339192pt;}
.fs2_c01234{font-size:74.672976pt;}
.fs9_c01234{font-size:74.678762pt;}
.fs0_c01234{font-size:80.000000pt;}
.fs5_c01234{font-size:80.006760pt;}
.fs1_c01234{font-size:96.009408pt;}
.fs6_c01234{font-size:112.009464pt;}
.fs8_c01234{font-size:117.333333pt;}
.y0_c01234{bottom:0.000000pt;}
.y117_c01234{bottom:159.226515pt;}
.y116_c01234{bottom:160.474875pt;}
.y115_c01234{bottom:162.070251pt;}
.y114_c01234{bottom:163.829139pt;}
.y113_c01234{bottom:165.384555pt;}
.y112_c01234{bottom:167.129547pt;}
.y111_c01234{bottom:167.809899pt;}
.y110_c01234{bottom:168.722667pt;}
.y10f_c01234{bottom:193.264000pt;}
.y10e_c01234{bottom:231.620000pt;}
.y10d_c01234{bottom:245.418251pt;}
.y10c_c01234{bottom:247.388681pt;}
.y107_c01234{bottom:275.878984pt;}
.y108_c01234{bottom:275.879339pt;}
.y109_c01234{bottom:275.879763pt;}
.y10a_c01234{bottom:275.880064pt;}
.y10b_c01234{bottom:275.880560pt;}
.y103_c01234{bottom:306.682520pt;}
.y104_c01234{bottom:306.682972pt;}
.y102_c01234{bottom:306.683172pt;}
.y106_c01234{bottom:306.683343pt;}
.y105_c01234{bottom:306.683451pt;}
.y101_c01234{bottom:306.683653pt;}
.y100_c01234{bottom:333.581232pt;}
.yff_c01234{bottom:334.044725pt;}
.yfe_c01234{bottom:334.678521pt;}
.yfd_c01234{bottom:335.632300pt;}
.yfc_c01234{bottom:336.102916pt;}
.yfb_c01234{bottom:336.572163pt;}
.yfa_c01234{bottom:337.497468pt;}
.yf9_c01234{bottom:337.968777pt;}
.yf8_c01234{bottom:338.771836pt;}
.yf7_c01234{bottom:339.847411pt;}
.yf6_c01234{bottom:340.941684pt;}
.yf5_c01234{bottom:341.420965pt;}
.yf4_c01234{bottom:342.183437pt;}
.yf3_c01234{bottom:361.845297pt;}
.yf2_c01234{bottom:363.427067pt;}
.yf1_c01234{bottom:364.679217pt;}
.yf0_c01234{bottom:366.419400pt;}
.yef_c01234{bottom:367.045033pt;}
.yee_c01234{bottom:367.502149pt;}
.yed_c01234{bottom:368.742273pt;}
.yec_c01234{bottom:369.383296pt;}
.yeb_c01234{bottom:370.001495pt;}
.yea_c01234{bottom:370.771679pt;}
.ye9_c01234{bottom:371.704800pt;}
.ye8_c01234{bottom:393.344577pt;}
.ye7_c01234{bottom:393.938576pt;}
.ye6_c01234{bottom:394.494661pt;}
.ye5_c01234{bottom:395.453291pt;}
.ye4_c01234{bottom:397.095296pt;}
.ye3_c01234{bottom:397.683213pt;}
.ye2_c01234{bottom:398.226597pt;}
.ye1_c01234{bottom:400.100900pt;}
.ye0_c01234{bottom:400.826088pt;}
.ydf_c01234{bottom:401.209501pt;}
.yde_c01234{bottom:402.687551pt;}
.ydd_c01234{bottom:403.233465pt;}
.ydc_c01234{bottom:404.349241pt;}
.ydb_c01234{bottom:425.788449pt;}
.yda_c01234{bottom:426.688779pt;}
.yd9_c01234{bottom:427.125156pt;}
.yd8_c01234{bottom:427.572036pt;}
.yd7_c01234{bottom:428.890199pt;}
.yd6_c01234{bottom:429.329453pt;}
.yd5_c01234{bottom:429.771932pt;}
.yd4_c01234{bottom:431.248881pt;}
.yd3_c01234{bottom:431.687772pt;}
.yd2_c01234{bottom:432.123924pt;}
.yd1_c01234{bottom:432.852225pt;}
.yd0_c01234{bottom:433.291116pt;}
.ycf_c01234{bottom:434.593525pt;}
.yce_c01234{bottom:458.091427pt;}
.ycd_c01234{bottom:458.352617pt;}
.ycc_c01234{bottom:458.708872pt;}
.ycb_c01234{bottom:458.982931pt;}
.yca_c01234{bottom:459.512439pt;}
.yc9_c01234{bottom:459.782525pt;}
.yc8_c01234{bottom:460.207867pt;}
.yc7_c01234{bottom:460.570728pt;}
.yc6_c01234{bottom:461.364219pt;}
.yc5_c01234{bottom:462.159271pt;}
.yc4_c01234{bottom:463.284652pt;}
.yc3_c01234{bottom:463.634871pt;}
.yc2_c01234{bottom:487.696624pt;}
.yc1_c01234{bottom:488.763749pt;}
.yc0_c01234{bottom:490.509840pt;}
.ybf_c01234{bottom:491.062637pt;}
.ybe_c01234{bottom:491.587103pt;}
.ybd_c01234{bottom:492.984579pt;}
.ybc_c01234{bottom:493.714716pt;}
.ybb_c01234{bottom:494.578716pt;}
.yba_c01234{bottom:495.122607pt;}
.yb9_c01234{bottom:495.817619pt;}
.yb8_c01234{bottom:496.864209pt;}
.yb7_c01234{bottom:498.438800pt;}
.yb6_c01234{bottom:521.282060pt;}
.yb5_c01234{bottom:521.812287pt;}
.yb4_c01234{bottom:522.193464pt;}
.yb3_c01234{bottom:522.939248pt;}
.yb2_c01234{bottom:523.332056pt;}
.yb1_c01234{bottom:523.840703pt;}
.yb0_c01234{bottom:524.995605pt;}
.yaf_c01234{bottom:525.631825pt;}
.yae_c01234{bottom:526.534164pt;}
.yad_c01234{bottom:526.899048pt;}
.yac_c01234{bottom:527.800849pt;}
.yab_c01234{bottom:528.402836pt;}
.yaa_c01234{bottom:528.920028pt;}
.ya9_c01234{bottom:554.086221pt;}
.ya8_c01234{bottom:554.440655pt;}
.ya7_c01234{bottom:554.708660pt;}
.ya6_c01234{bottom:554.887603pt;}
.ya5_c01234{bottom:555.426181pt;}
.ya4_c01234{bottom:555.682984pt;}
.ya3_c01234{bottom:556.395337pt;}
.ya2_c01234{bottom:557.014899pt;}
.ya1_c01234{bottom:557.872396pt;}
.ya0_c01234{bottom:558.149124pt;}
.y9f_c01234{bottom:558.675703pt;}
.y9e_c01234{bottom:558.931900pt;}
.y9d_c01234{bottom:559.640853pt;}
.y9c_c01234{bottom:582.632527pt;}
.y9b_c01234{bottom:583.266427pt;}
.y9a_c01234{bottom:583.731411pt;}
.y99_c01234{bottom:584.045883pt;}
.y98_c01234{bottom:585.297340pt;}
.y97_c01234{bottom:585.773553pt;}
.y96_c01234{bottom:586.261793pt;}
.y95_c01234{bottom:586.875244pt;}
.y94_c01234{bottom:588.750757pt;}
.y93_c01234{bottom:589.388608pt;}
.y92_c01234{bottom:589.857144pt;}
.y91_c01234{bottom:591.096713pt;}
.y90_c01234{bottom:591.560692pt;}
.y8f_c01234{bottom:592.044080pt;}
.y8e_c01234{bottom:613.673869pt;}
.y8d_c01234{bottom:614.031381pt;}
.y8c_c01234{bottom:614.385964pt;}
.y8b_c01234{bottom:614.740027pt;}
.y8a_c01234{bottom:614.985279pt;}
.y89_c01234{bottom:615.449452pt;}
.y88_c01234{bottom:616.285231pt;}
.y87_c01234{bottom:616.860953pt;}
.y86_c01234{bottom:617.218292pt;}
.y85_c01234{bottom:618.402535pt;}
.y84_c01234{bottom:618.750392pt;}
.y83_c01234{bottom:619.447355pt;}
.y82_c01234{bottom:619.781396pt;}
.y81_c01234{bottom:620.503927pt;}
.y80_c01234{bottom:620.846652pt;}
.y7f_c01234{bottom:645.841656pt;}
.y7e_c01234{bottom:646.055761pt;}
.y7d_c01234{bottom:646.601740pt;}
.y7c_c01234{bottom:647.137732pt;}
.y7b_c01234{bottom:647.574073pt;}
.y7a_c01234{bottom:647.895613pt;}
.y79_c01234{bottom:648.875039pt;}
.y78_c01234{bottom:649.193493pt;}
.y77_c01234{bottom:649.956923pt;}
.y76_c01234{bottom:650.257780pt;}
.y75_c01234{bottom:650.690759pt;}
.y74_c01234{bottom:651.652084pt;}
.y73_c01234{bottom:652.287779pt;}
.y72_c01234{bottom:678.030924pt;}
.y71_c01234{bottom:678.790681pt;}
.y70_c01234{bottom:680.104997pt;}
.y6f_c01234{bottom:680.568897pt;}
.y6e_c01234{bottom:681.277805pt;}
.y6d_c01234{bottom:682.318793pt;}
.y6c_c01234{bottom:683.787979pt;}
.y6b_c01234{bottom:684.946609pt;}
.y6a_c01234{bottom:685.410943pt;}
.y69_c01234{bottom:714.652440pt;}
.y68_c01234{bottom:715.687277pt;}
.y67_c01234{bottom:716.167493pt;}
.y66_c01234{bottom:716.370173pt;}
.y65_c01234{bottom:740.785632pt;}
.y64_c01234{bottom:741.088155pt;}
.y63_c01234{bottom:741.683387pt;}
.y62_c01234{bottom:741.974275pt;}
.y61_c01234{bottom:742.261679pt;}
.y60_c01234{bottom:743.549099pt;}
.y5f_c01234{bottom:744.127547pt;}
.y5e_c01234{bottom:745.018712pt;}
.y5d_c01234{bottom:745.306359pt;}
.y5c_c01234{bottom:745.993328pt;}
.y5b_c01234{bottom:746.374464pt;}
.y5a_c01234{bottom:773.086807pt;}
.y59_c01234{bottom:773.253869pt;}
.y58_c01234{bottom:773.778384pt;}
.y57_c01234{bottom:774.049147pt;}
.y56_c01234{bottom:774.495609pt;}
.y55_c01234{bottom:775.559100pt;}
.y54_c01234{bottom:775.731159pt;}
.y53_c01234{bottom:776.521443pt;}
.y52_c01234{bottom:776.970143pt;}
.y51_c01234{bottom:777.640304pt;}
.y50_c01234{bottom:777.842813pt;}
.y4f_c01234{bottom:778.536177pt;}
.y4e_c01234{bottom:804.203916pt;}
.y4d_c01234{bottom:804.480783pt;}
.y4c_c01234{bottom:804.746136pt;}
.y4b_c01234{bottom:805.902176pt;}
.y4a_c01234{bottom:806.163869pt;}
.y49_c01234{bottom:806.867639pt;}
.y48_c01234{bottom:807.306141pt;}
.y47_c01234{bottom:808.278471pt;}
.y46_c01234{bottom:808.445083pt;}
.y45_c01234{bottom:808.717043pt;}
.y44_c01234{bottom:809.238209pt;}
.y43_c01234{bottom:809.499227pt;}
.y42_c01234{bottom:836.518471pt;}
.y41_c01234{bottom:837.321639pt;}
.y40_c01234{bottom:837.674563pt;}
.y3f_c01234{bottom:837.843447pt;}
.y3e_c01234{bottom:838.550353pt;}
.y3d_c01234{bottom:838.820371pt;}
.y3c_c01234{bottom:839.083625pt;}
.y3b_c01234{bottom:839.613411pt;}
.y3a_c01234{bottom:839.962903pt;}
.y39_c01234{bottom:840.222445pt;}
.y38_c01234{bottom:840.844849pt;}
.y37_c01234{bottom:841.011860pt;}
.y36_c01234{bottom:841.184940pt;}
.y35_c01234{bottom:866.529116pt;}
.y34_c01234{bottom:867.009775pt;}
.y33_c01234{bottom:868.425141pt;}
.y32_c01234{bottom:869.496292pt;}
.y31_c01234{bottom:870.308323pt;}
.y30_c01234{bottom:871.014195pt;}
.y2f_c01234{bottom:871.471192pt;}
.y2e_c01234{bottom:872.307040pt;}
.y2d_c01234{bottom:872.776829pt;}
.y2c_c01234{bottom:873.588305pt;}
.y2b_c01234{bottom:898.869159pt;}
.y2a_c01234{bottom:900.147111pt;}
.y29_c01234{bottom:901.426449pt;}
.y28_c01234{bottom:902.443847pt;}
.y27_c01234{bottom:903.713617pt;}
.y26_c01234{bottom:904.100497pt;}
.y25_c01234{bottom:904.724289pt;}
.y24_c01234{bottom:905.235311pt;}
.y23_c01234{bottom:905.990732pt;}
.y22_c01234{bottom:929.619772pt;}
.y21_c01234{bottom:930.094188pt;}
.y20_c01234{bottom:930.333919pt;}
.y1f_c01234{bottom:930.557276pt;}
.y1e_c01234{bottom:930.803008pt;}
.y1d_c01234{bottom:931.344493pt;}
.y1c_c01234{bottom:931.913503pt;}
.y1b_c01234{bottom:932.143955pt;}
.y1a_c01234{bottom:932.697268pt;}
.y19_c01234{bottom:933.247303pt;}
.y18_c01234{bottom:933.696828pt;}
.y17_c01234{bottom:933.937373pt;}
.y16_c01234{bottom:934.316065pt;}
.y15_c01234{bottom:960.519153pt;}
.y14_c01234{bottom:961.045841pt;}
.y13_c01234{bottom:961.550851pt;}
.y12_c01234{bottom:963.048619pt;}
.y11_c01234{bottom:963.563072pt;}
.y10_c01234{bottom:964.737805pt;}
.yf_c01234{bottom:966.382179pt;}
.ye_c01234{bottom:967.727571pt;}
.yd_c01234{bottom:968.400847pt;}
.yc_c01234{bottom:997.440933pt;}
.yb_c01234{bottom:1002.001333pt;}
.ya_c01234{bottom:1010.460909pt;}
.y9_c01234{bottom:1010.704752pt;}
.y8_c01234{bottom:1011.573051pt;}
.y7_c01234{bottom:1011.972947pt;}
.y6_c01234{bottom:1013.081915pt;}
.y5_c01234{bottom:1013.344256pt;}
.y4_c01234{bottom:1014.321960pt;}
.y3_c01234{bottom:1014.721763pt;}
.y2_c01234{bottom:1015.682667pt;}
.y1_c01234{bottom:1065.589333pt;}
.h9_c01234{height:32.000000pt;}
.h5_c01234{height:64.005408pt;}
.h6_c01234{height:69.339192pt;}
.h4_c01234{height:74.672976pt;}
.hb_c01234{height:74.678762pt;}
.h2_c01234{height:80.000000pt;}
.h7_c01234{height:80.006760pt;}
.h3_c01234{height:96.009408pt;}
.h8_c01234{height:112.009464pt;}
.ha_c01234{height:117.333333pt;}
.h1_c01234{height:1118.666667pt;}
.h0_c01234{height:1118.880000pt;}
.w1_c01234{width:772.000000pt;}
.w0_c01234{width:772.266667pt;}
.x0_c01234{left:0.000000pt;}
.xb6_c01234{left:78.720000pt;}
.x9a_c01234{left:79.750839pt;}
.x6c_c01234{left:80.946661pt;}
.x4f_c01234{left:82.709592pt;}
.x3f_c01234{left:83.876477pt;}
.x20_c01234{left:84.823933pt;}
.x16_c01234{left:86.525721pt;}
.x2d_c01234{left:103.793223pt;}
.x62_c01234{left:110.461564pt;}
.x50_c01234{left:111.738529pt;}
.x37_c01234{left:113.149816pt;}
.xa5_c01234{left:119.190817pt;}
.x7e_c01234{left:121.247608pt;}
.x2e_c01234{left:122.282176pt;}
.xac_c01234{left:129.828523pt;}
.x17_c01234{left:133.812789pt;}
.x9b_c01234{left:138.498263pt;}
.x6d_c01234{left:140.177689pt;}
.x58_c01234{left:141.423653pt;}
.x21_c01234{left:142.933267pt;}
.x27_c01234{left:152.242284pt;}
.x75_c01234{left:159.722920pt;}
.x40_c01234{left:160.908481pt;}
.x18_c01234{left:163.805397pt;}
.x7f_c01234{left:167.554275pt;}
.x38_c01234{left:170.986148pt;}
.x4_c01234{left:172.385333pt;}
.xaf_c01234{left:175.911923pt;}
.x52_c01234{left:179.084808pt;}
.x51_c01234{left:180.375885pt;}
.xe_c01234{left:181.488795pt;}
.x41_c01234{left:183.461660pt;}
.x9e_c01234{left:186.482428pt;}
.x76_c01234{left:188.252411pt;}
.x4a_c01234{left:190.166523pt;}
.x28_c01234{left:191.354787pt;}
.x92_c01234{left:197.039800pt;}
.x63_c01234{left:198.506708pt;}
.x39_c01234{left:201.241059pt;}
.x53_c01234{left:210.084011pt;}
.xb0_c01234{left:215.275912pt;}
.x6e_c01234{left:217.680007pt;}
.x4b_c01234{left:218.960983pt;}
.x19_c01234{left:219.926371pt;}
.xf_c01234{left:221.072065pt;}
.x9f_c01234{left:225.111587pt;}
.x88_c01234{left:226.576536pt;}
.xb3_c01234{left:227.522332pt;}
.x59_c01234{left:228.809924pt;}
.x22_c01234{left:230.226600pt;}
.xad_c01234{left:234.716904pt;}
.x80_c01234{left:236.923608pt;}
.x5_c01234{left:241.021333pt;}
.x8d_c01234{left:245.604933pt;}
.x6f_c01234{left:246.950863pt;}
.x64_c01234{left:256.632804pt;}
.x42_c01234{left:257.888192pt;}
.x2f_c01234{left:259.066616pt;}
.x23_c01234{left:259.986600pt;}
.x29_c01234{left:260.985021pt;}
.xb9_c01234{left:264.020000pt;}
.x81_c01234{left:264.991608pt;}
.x5a_c01234{left:268.168280pt;}
.x6_c01234{left:269.578667pt;}
.x93_c01234{left:274.611105pt;}
.x77_c01234{left:277.537056pt;}
.xb7_c01234{left:282.000000pt;}
.xae_c01234{left:283.921224pt;}
.x65_c01234{left:285.647852pt;}
.x54_c01234{left:287.310000pt;}
.x1a_c01234{left:288.600159pt;}
.xb5_c01234{left:292.080000pt;}
.x5b_c01234{left:295.516991pt;}
.x2a_c01234{left:299.113524pt;}
.x10_c01234{left:300.251957pt;}
.xb1_c01234{left:302.642680pt;}
.x94_c01234{left:303.858343pt;}
.x43_c01234{left:307.790792pt;}
.x1_c01234{left:310.320000pt;}
.x30_c01234{left:317.873667pt;}
.xb4_c01234{left:321.340573pt;}
.x3a_c01234{left:327.730295pt;}
.x2_c01234{left:330.960000pt;}
.xa6_c01234{left:332.485181pt;}
.x82_c01234{left:334.402275pt;}
.x7_c01234{left:339.414667pt;}
.x89_c01234{left:343.407611pt;}
.x31_c01234{left:347.151192pt;}
.xb8_c01234{left:350.160000pt;}
.x8_c01234{left:358.153333pt;}
.x5c_c01234{left:364.910793pt;}
.x4c_c01234{left:365.860036pt;}
.x3_c01234{left:369.360000pt;}
.xa0_c01234{left:371.331235pt;}
.x78_c01234{left:372.836680pt;}
.x32_c01234{left:377.154085pt;}
.x83_c01234{left:383.342275pt;}
.x66_c01234{left:384.334468pt;}
.x55_c01234{left:385.244785pt;}
.x1b_c01234{left:386.537187pt;}
.xb2_c01234{left:391.929777pt;}
.x5d_c01234{left:393.920889pt;}
.x44_c01234{left:395.663368pt;}
.x11_c01234{left:396.993597pt;}
.x95_c01234{left:402.287777pt;}
.x70_c01234{left:403.972727pt;}
.xa1_c01234{left:410.429709pt;}
.xa7_c01234{left:412.151412pt;}
.x45_c01234{left:414.848373pt;}
.x8e_c01234{left:422.066103pt;}
.x2b_c01234{left:425.620504pt;}
.x9c_c01234{left:430.546136pt;}
.x96_c01234{left:431.811015pt;}
.x24_c01234{left:435.922600pt;}
.x9_c01234{left:437.365333pt;}
.x71_c01234{left:442.339236pt;}
.xba_c01234{left:448.148000pt;}
.x3b_c01234{left:454.680899pt;}
.x33_c01234{left:455.638159pt;}
.x1c_c01234{left:457.593797pt;}
.x97_c01234{left:461.086252pt;}
.x67_c01234{left:462.058140pt;}
.xa_c01234{left:465.929333pt;}
.xa8_c01234{left:469.993159pt;}
.x72_c01234{left:472.818040pt;}
.x34_c01234{left:474.373796pt;}
.x3c_c01234{left:483.735740pt;}
.x8a_c01234{left:490.788709pt;}
.x4d_c01234{left:494.538379pt;}
.x12_c01234{left:496.361765pt;}
.xa9_c01234{left:499.318681pt;}
.x56_c01234{left:501.900419pt;}
.x8f_c01234{left:509.675995pt;}
.x84_c01234{left:511.307608pt;}
.x5e_c01234{left:512.254641pt;}
.x35_c01234{left:513.523824pt;}
.x2c_c01234{left:514.889665pt;}
.xa2_c01234{left:519.157463pt;}
.x79_c01234{left:520.940393pt;}
.xd_c01234{left:523.250667pt;}
.x1d_c01234{left:525.302200pt;}
.xb_c01234{left:527.950667pt;}
.x68_c01234{left:531.683041pt;}
.x46_c01234{left:532.969176pt;}
.x25_c01234{left:534.333267pt;}
.xbb_c01234{left:536.780000pt;}
.x90_c01234{left:539.684221pt;}
.x85_c01234{left:541.523608pt;}
.xc_c01234{left:545.368000pt;}
.x9d_c01234{left:547.915651pt;}
.x7a_c01234{left:549.413867pt;}
.x4e_c01234{left:552.357965pt;}
.x1e_c01234{left:556.001527pt;}
.x69_c01234{left:570.363544pt;}
.x98_c01234{left:578.701851pt;}
.x73_c01234{left:580.788495pt;}
.x47_c01234{left:582.597092pt;}
.x13_c01234{left:584.493189pt;}
.xaa_c01234{left:588.371215pt;}
.x6a_c01234{left:590.767804pt;}
.xa3_c01234{left:597.422412pt;}
.x86_c01234{left:598.891608pt;}
.x5f_c01234{left:600.590263pt;}
.x36_c01234{left:602.797803pt;}
.xbc_c01234{left:606.133333pt;}
.x99_c01234{left:607.755755pt;}
.x7b_c01234{left:609.307653pt;}
.x3d_c01234{left:612.155747pt;}
.x14_c01234{left:614.210313pt;}
.x8b_c01234{left:618.489740pt;}
.x57_c01234{left:620.529351pt;}
.x87_c01234{left:628.212941pt;}
.x74_c01234{left:629.565272pt;}
.x26_c01234{left:632.637267pt;}
.x3e_c01234{left:641.697289pt;}
.x15_c01234{left:645.184701pt;}
.x60_c01234{left:650.282229pt;}
.xab_c01234{left:656.980545pt;}
.x7c_c01234{left:658.972903pt;}
.x91_c01234{left:668.600263pt;}
.x61_c01234{left:669.726732pt;}
.x48_c01234{left:670.956352pt;}
.x1f_c01234{left:673.150469pt;}
.x8c_c01234{left:677.803225pt;}
.x6b_c01234{left:679.550281pt;}
.x49_c01234{left:689.449305pt;}
.xa4_c01234{left:696.323897pt;}
.x7d_c01234{left:698.341615pt;}
}





/* 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_c01235 {
    display:none;
  }
  .loading-indicator_c01235.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01235 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_c01235 { 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_c01235" -> "#page-container .classname_c01235")
 */
.pf_c01235 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01235 { /* 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_c01235.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01235 { /* 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_c01235 { /* 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_c01235 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01235 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01235 {overflow:visible;}
  }
}
.c_c01235 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01235 { /* 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_c01235:after { /* webkit #35443 */
  content: '';
}
.t_c01235:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01235 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 */
}
.__c01235 { /* 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_c01235 { /* info for Javascript */
  display:none;
}
.l_c01235 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01235 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01235 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01235: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_c01235 {
    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_c01235.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01235.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_c01235 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01235{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01235;src:url('chunks/assets/font_7c6b9abe6ee2a268480c528b.woff2')format("woff");}.ff1_c01235{font-family:ff1_c01235;line-height:1.000000;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;}
.m60_c01235{transform:matrix(0.009997,-0.000230,0.005748,0.249934,0,0);-ms-transform:matrix(0.009997,-0.000230,0.005748,0.249934,0,0);-webkit-transform:matrix(0.009997,-0.000230,0.005748,0.249934,0,0);}
.m27_c01235{transform:matrix(0.013516,-0.000311,0.005748,0.249934,0,0);-ms-transform:matrix(0.013516,-0.000311,0.005748,0.249934,0,0);-webkit-transform:matrix(0.013516,-0.000311,0.005748,0.249934,0,0);}
.m55_c01235{transform:matrix(0.014136,-0.000325,0.005748,0.249934,0,0);-ms-transform:matrix(0.014136,-0.000325,0.005748,0.249934,0,0);-webkit-transform:matrix(0.014136,-0.000325,0.005748,0.249934,0,0);}
.m5b_c01235{transform:matrix(0.014996,-0.000345,0.005748,0.249934,0,0);-ms-transform:matrix(0.014996,-0.000345,0.005748,0.249934,0,0);-webkit-transform:matrix(0.014996,-0.000345,0.005748,0.249934,0,0);}
.m2_c01235{transform:matrix(0.083815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.083815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.083815,0.000000,0.000000,0.250000,0,0);}
.m67_c01235{transform:matrix(0.084673,-0.001947,0.005748,0.249934,0,0);-ms-transform:matrix(0.084673,-0.001947,0.005748,0.249934,0,0);-webkit-transform:matrix(0.084673,-0.001947,0.005748,0.249934,0,0);}
.m84_c01235{transform:matrix(0.085675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.085675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.085675,0.000000,0.000000,0.250000,0,0);}
.m85_c01235{transform:matrix(0.096045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096045,0.000000,0.000000,0.250000,0,0);}
.m81_c01235{transform:matrix(0.096775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096775,0.000000,0.000000,0.250000,0,0);}
.m7e_c01235{transform:matrix(0.123880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123880,0.000000,0.000000,0.250000,0,0);}
.m6b_c01235{transform:matrix(0.131365,-0.003021,0.005748,0.249934,0,0);-ms-transform:matrix(0.131365,-0.003021,0.005748,0.249934,0,0);-webkit-transform:matrix(0.131365,-0.003021,0.005748,0.249934,0,0);}
.m80_c01235{transform:matrix(0.135470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135470,0.000000,0.000000,0.250000,0,0);}
.m6c_c01235{transform:matrix(0.138918,-0.003195,0.005748,0.249934,0,0);-ms-transform:matrix(0.138918,-0.003195,0.005748,0.249934,0,0);-webkit-transform:matrix(0.138918,-0.003195,0.005748,0.249934,0,0);}
.m6d_c01235{transform:matrix(0.143632,-0.003304,0.005748,0.249934,0,0);-ms-transform:matrix(0.143632,-0.003304,0.005748,0.249934,0,0);-webkit-transform:matrix(0.143632,-0.003304,0.005748,0.249934,0,0);}
.m83_c01235{transform:matrix(0.153015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153015,0.000000,0.000000,0.250000,0,0);}
.m63_c01235{transform:matrix(0.153269,-0.003525,0.005748,0.249934,0,0);-ms-transform:matrix(0.153269,-0.003525,0.005748,0.249934,0,0);-webkit-transform:matrix(0.153269,-0.003525,0.005748,0.249934,0,0);}
.m64_c01235{transform:matrix(0.155874,-0.003585,0.005748,0.249934,0,0);-ms-transform:matrix(0.155874,-0.003585,0.005748,0.249934,0,0);-webkit-transform:matrix(0.155874,-0.003585,0.005748,0.249934,0,0);}
.m6a_c01235{transform:matrix(0.166361,-0.003826,0.005748,0.249934,0,0);-ms-transform:matrix(0.166361,-0.003826,0.005748,0.249934,0,0);-webkit-transform:matrix(0.166361,-0.003826,0.005748,0.249934,0,0);}
.m65_c01235{transform:matrix(0.167316,-0.003848,0.005748,0.249934,0,0);-ms-transform:matrix(0.167316,-0.003848,0.005748,0.249934,0,0);-webkit-transform:matrix(0.167316,-0.003848,0.005748,0.249934,0,0);}
.m56_c01235{transform:matrix(0.169975,-0.003909,0.005748,0.249934,0,0);-ms-transform:matrix(0.169975,-0.003909,0.005748,0.249934,0,0);-webkit-transform:matrix(0.169975,-0.003909,0.005748,0.249934,0,0);}
.m58_c01235{transform:matrix(0.171205,-0.003938,0.005748,0.249934,0,0);-ms-transform:matrix(0.171205,-0.003938,0.005748,0.249934,0,0);-webkit-transform:matrix(0.171205,-0.003938,0.005748,0.249934,0,0);}
.m15_c01235{transform:matrix(0.172239,-0.003962,0.005748,0.249934,0,0);-ms-transform:matrix(0.172239,-0.003962,0.005748,0.249934,0,0);-webkit-transform:matrix(0.172239,-0.003962,0.005748,0.249934,0,0);}
.m7a_c01235{transform:matrix(0.172344,-0.003964,0.005748,0.249934,0,0);-ms-transform:matrix(0.172344,-0.003964,0.005748,0.249934,0,0);-webkit-transform:matrix(0.172344,-0.003964,0.005748,0.249934,0,0);}
.m0_c01235{transform:matrix(0.176920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176920,0.000000,0.000000,0.250000,0,0);}
.m69_c01235{transform:matrix(0.179498,-0.004128,0.005748,0.249934,0,0);-ms-transform:matrix(0.179498,-0.004128,0.005748,0.249934,0,0);-webkit-transform:matrix(0.179498,-0.004128,0.005748,0.249934,0,0);}
.m4b_c01235{transform:matrix(0.181452,-0.004173,0.005748,0.249934,0,0);-ms-transform:matrix(0.181452,-0.004173,0.005748,0.249934,0,0);-webkit-transform:matrix(0.181452,-0.004173,0.005748,0.249934,0,0);}
.m50_c01235{transform:matrix(0.183596,-0.004223,0.005748,0.249934,0,0);-ms-transform:matrix(0.183596,-0.004223,0.005748,0.249934,0,0);-webkit-transform:matrix(0.183596,-0.004223,0.005748,0.249934,0,0);}
.mc_c01235{transform:matrix(0.191874,-0.004413,0.005748,0.249934,0,0);-ms-transform:matrix(0.191874,-0.004413,0.005748,0.249934,0,0);-webkit-transform:matrix(0.191874,-0.004413,0.005748,0.249934,0,0);}
.m26_c01235{transform:matrix(0.192419,-0.004426,0.005748,0.249934,0,0);-ms-transform:matrix(0.192419,-0.004426,0.005748,0.249934,0,0);-webkit-transform:matrix(0.192419,-0.004426,0.005748,0.249934,0,0);}
.m8_c01235{transform:matrix(0.193154,-0.004443,0.005748,0.249934,0,0);-ms-transform:matrix(0.193154,-0.004443,0.005748,0.249934,0,0);-webkit-transform:matrix(0.193154,-0.004443,0.005748,0.249934,0,0);}
.m10_c01235{transform:matrix(0.193249,-0.004445,0.005748,0.249934,0,0);-ms-transform:matrix(0.193249,-0.004445,0.005748,0.249934,0,0);-webkit-transform:matrix(0.193249,-0.004445,0.005748,0.249934,0,0);}
.m49_c01235{transform:matrix(0.193839,-0.004458,0.005748,0.249934,0,0);-ms-transform:matrix(0.193839,-0.004458,0.005748,0.249934,0,0);-webkit-transform:matrix(0.193839,-0.004458,0.005748,0.249934,0,0);}
.m3_c01235{transform:matrix(0.194165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194165,0.000000,0.000000,0.250000,0,0);}
.m4f_c01235{transform:matrix(0.194838,-0.004481,0.005748,0.249934,0,0);-ms-transform:matrix(0.194838,-0.004481,0.005748,0.249934,0,0);-webkit-transform:matrix(0.194838,-0.004481,0.005748,0.249934,0,0);}
.m57_c01235{transform:matrix(0.195248,-0.004491,0.005748,0.249934,0,0);-ms-transform:matrix(0.195248,-0.004491,0.005748,0.249934,0,0);-webkit-transform:matrix(0.195248,-0.004491,0.005748,0.249934,0,0);}
.m66_c01235{transform:matrix(0.196178,-0.004512,0.005748,0.249934,0,0);-ms-transform:matrix(0.196178,-0.004512,0.005748,0.249934,0,0);-webkit-transform:matrix(0.196178,-0.004512,0.005748,0.249934,0,0);}
.m5c_c01235{transform:matrix(0.199777,-0.004595,0.005748,0.249934,0,0);-ms-transform:matrix(0.199777,-0.004595,0.005748,0.249934,0,0);-webkit-transform:matrix(0.199777,-0.004595,0.005748,0.249934,0,0);}
.m4a_c01235{transform:matrix(0.201007,-0.004623,0.005748,0.249934,0,0);-ms-transform:matrix(0.201007,-0.004623,0.005748,0.249934,0,0);-webkit-transform:matrix(0.201007,-0.004623,0.005748,0.249934,0,0);}
.m33_c01235{transform:matrix(0.202511,-0.004658,0.005748,0.249934,0,0);-ms-transform:matrix(0.202511,-0.004658,0.005748,0.249934,0,0);-webkit-transform:matrix(0.202511,-0.004658,0.005748,0.249934,0,0);}
.mf_c01235{transform:matrix(0.203956,-0.004691,0.005748,0.249934,0,0);-ms-transform:matrix(0.203956,-0.004691,0.005748,0.249934,0,0);-webkit-transform:matrix(0.203956,-0.004691,0.005748,0.249934,0,0);}
.m32_c01235{transform:matrix(0.204741,-0.004709,0.005748,0.249934,0,0);-ms-transform:matrix(0.204741,-0.004709,0.005748,0.249934,0,0);-webkit-transform:matrix(0.204741,-0.004709,0.005748,0.249934,0,0);}
.m73_c01235{transform:matrix(0.206895,-0.004759,0.005748,0.249934,0,0);-ms-transform:matrix(0.206895,-0.004759,0.005748,0.249934,0,0);-webkit-transform:matrix(0.206895,-0.004759,0.005748,0.249934,0,0);}
.m1_c01235{transform:matrix(0.208385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208385,0.000000,0.000000,0.250000,0,0);}
.m5e_c01235{transform:matrix(0.211749,-0.004870,0.005748,0.249934,0,0);-ms-transform:matrix(0.211749,-0.004870,0.005748,0.249934,0,0);-webkit-transform:matrix(0.211749,-0.004870,0.005748,0.249934,0,0);}
.m11_c01235{transform:matrix(0.211784,-0.004871,0.005748,0.249934,0,0);-ms-transform:matrix(0.211784,-0.004871,0.005748,0.249934,0,0);-webkit-transform:matrix(0.211784,-0.004871,0.005748,0.249934,0,0);}
.m51_c01235{transform:matrix(0.212144,-0.004879,0.005748,0.249934,0,0);-ms-transform:matrix(0.212144,-0.004879,0.005748,0.249934,0,0);-webkit-transform:matrix(0.212144,-0.004879,0.005748,0.249934,0,0);}
.m52_c01235{transform:matrix(0.212224,-0.004881,0.005748,0.249934,0,0);-ms-transform:matrix(0.212224,-0.004881,0.005748,0.249934,0,0);-webkit-transform:matrix(0.212224,-0.004881,0.005748,0.249934,0,0);}
.m37_c01235{transform:matrix(0.212534,-0.004888,0.005748,0.249934,0,0);-ms-transform:matrix(0.212534,-0.004888,0.005748,0.249934,0,0);-webkit-transform:matrix(0.212534,-0.004888,0.005748,0.249934,0,0);}
.m46_c01235{transform:matrix(0.212724,-0.004893,0.005748,0.249934,0,0);-ms-transform:matrix(0.212724,-0.004893,0.005748,0.249934,0,0);-webkit-transform:matrix(0.212724,-0.004893,0.005748,0.249934,0,0);}
.m4d_c01235{transform:matrix(0.217952,-0.005013,0.005748,0.249934,0,0);-ms-transform:matrix(0.217952,-0.005013,0.005748,0.249934,0,0);-webkit-transform:matrix(0.217952,-0.005013,0.005748,0.249934,0,0);}
.m68_c01235{transform:matrix(0.218152,-0.005018,0.005748,0.249934,0,0);-ms-transform:matrix(0.218152,-0.005018,0.005748,0.249934,0,0);-webkit-transform:matrix(0.218152,-0.005018,0.005748,0.249934,0,0);}
.m77_c01235{transform:matrix(0.218467,-0.005025,0.005748,0.249934,0,0);-ms-transform:matrix(0.218467,-0.005025,0.005748,0.249934,0,0);-webkit-transform:matrix(0.218467,-0.005025,0.005748,0.249934,0,0);}
.m4c_c01235{transform:matrix(0.220147,-0.005063,0.005748,0.249934,0,0);-ms-transform:matrix(0.220147,-0.005063,0.005748,0.249934,0,0);-webkit-transform:matrix(0.220147,-0.005063,0.005748,0.249934,0,0);}
.m6_c01235{transform:matrix(0.220717,-0.005076,0.005748,0.249934,0,0);-ms-transform:matrix(0.220717,-0.005076,0.005748,0.249934,0,0);-webkit-transform:matrix(0.220717,-0.005076,0.005748,0.249934,0,0);}
.m31_c01235{transform:matrix(0.221147,-0.005086,0.005748,0.249934,0,0);-ms-transform:matrix(0.221147,-0.005086,0.005748,0.249934,0,0);-webkit-transform:matrix(0.221147,-0.005086,0.005748,0.249934,0,0);}
.m13_c01235{transform:matrix(0.221301,-0.005090,0.005748,0.249934,0,0);-ms-transform:matrix(0.221301,-0.005090,0.005748,0.249934,0,0);-webkit-transform:matrix(0.221301,-0.005090,0.005748,0.249934,0,0);}
.me_c01235{transform:matrix(0.222191,-0.005110,0.005748,0.249934,0,0);-ms-transform:matrix(0.222191,-0.005110,0.005748,0.249934,0,0);-webkit-transform:matrix(0.222191,-0.005110,0.005748,0.249934,0,0);}
.m70_c01235{transform:matrix(0.225645,-0.005190,0.005748,0.249934,0,0);-ms-transform:matrix(0.225645,-0.005190,0.005748,0.249934,0,0);-webkit-transform:matrix(0.225645,-0.005190,0.005748,0.249934,0,0);}
.m30_c01235{transform:matrix(0.225930,-0.005196,0.005748,0.249934,0,0);-ms-transform:matrix(0.225930,-0.005196,0.005748,0.249934,0,0);-webkit-transform:matrix(0.225930,-0.005196,0.005748,0.249934,0,0);}
.m35_c01235{transform:matrix(0.226565,-0.005211,0.005748,0.249934,0,0);-ms-transform:matrix(0.226565,-0.005211,0.005748,0.249934,0,0);-webkit-transform:matrix(0.226565,-0.005211,0.005748,0.249934,0,0);}
.m5d_c01235{transform:matrix(0.227490,-0.005232,0.005748,0.249934,0,0);-ms-transform:matrix(0.227490,-0.005232,0.005748,0.249934,0,0);-webkit-transform:matrix(0.227490,-0.005232,0.005748,0.249934,0,0);}
.m79_c01235{transform:matrix(0.227625,-0.005235,0.005748,0.249934,0,0);-ms-transform:matrix(0.227625,-0.005235,0.005748,0.249934,0,0);-webkit-transform:matrix(0.227625,-0.005235,0.005748,0.249934,0,0);}
.m7_c01235{transform:matrix(0.231889,-0.005333,0.005748,0.249934,0,0);-ms-transform:matrix(0.231889,-0.005333,0.005748,0.249934,0,0);-webkit-transform:matrix(0.231889,-0.005333,0.005748,0.249934,0,0);}
.m62_c01235{transform:matrix(0.232104,-0.005338,0.005748,0.249934,0,0);-ms-transform:matrix(0.232104,-0.005338,0.005748,0.249934,0,0);-webkit-transform:matrix(0.232104,-0.005338,0.005748,0.249934,0,0);}
.m7f_c01235{transform:matrix(0.234095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234095,0.000000,0.000000,0.250000,0,0);}
.mb_c01235{transform:matrix(0.235863,-0.005425,0.005748,0.249934,0,0);-ms-transform:matrix(0.235863,-0.005425,0.005748,0.249934,0,0);-webkit-transform:matrix(0.235863,-0.005425,0.005748,0.249934,0,0);}
.m45_c01235{transform:matrix(0.236972,-0.005450,0.005748,0.249934,0,0);-ms-transform:matrix(0.236972,-0.005450,0.005748,0.249934,0,0);-webkit-transform:matrix(0.236972,-0.005450,0.005748,0.249934,0,0);}
.m43_c01235{transform:matrix(0.239672,-0.005512,0.005748,0.249934,0,0);-ms-transform:matrix(0.239672,-0.005512,0.005748,0.249934,0,0);-webkit-transform:matrix(0.239672,-0.005512,0.005748,0.249934,0,0);}
.ma_c01235{transform:matrix(0.240501,-0.005532,0.005748,0.249934,0,0);-ms-transform:matrix(0.240501,-0.005532,0.005748,0.249934,0,0);-webkit-transform:matrix(0.240501,-0.005532,0.005748,0.249934,0,0);}
.m71_c01235{transform:matrix(0.246680,-0.005674,0.005748,0.249934,0,0);-ms-transform:matrix(0.246680,-0.005674,0.005748,0.249934,0,0);-webkit-transform:matrix(0.246680,-0.005674,0.005748,0.249934,0,0);}
.m74_c01235{transform:matrix(0.247470,-0.005692,0.005748,0.249934,0,0);-ms-transform:matrix(0.247470,-0.005692,0.005748,0.249934,0,0);-webkit-transform:matrix(0.247470,-0.005692,0.005748,0.249934,0,0);}
.m7d_c01235{transform:matrix(0.249650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249650,0.000000,0.000000,0.250000,0,0);}
.m39_c01235{transform:matrix(0.250774,-0.005768,0.005748,0.249934,0,0);-ms-transform:matrix(0.250774,-0.005768,0.005748,0.249934,0,0);-webkit-transform:matrix(0.250774,-0.005768,0.005748,0.249934,0,0);}
.m5f_c01235{transform:matrix(0.250829,-0.005769,0.005748,0.249934,0,0);-ms-transform:matrix(0.250829,-0.005769,0.005748,0.249934,0,0);-webkit-transform:matrix(0.250829,-0.005769,0.005748,0.249934,0,0);}
.m87_c01235{transform:matrix(0.251445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251445,0.000000,0.000000,0.250000,0,0);}
.m17_c01235{transform:matrix(0.252473,-0.005807,0.005748,0.249934,0,0);-ms-transform:matrix(0.252473,-0.005807,0.005748,0.249934,0,0);-webkit-transform:matrix(0.252473,-0.005807,0.005748,0.249934,0,0);}
.m3f_c01235{transform:matrix(0.254318,-0.005849,0.005748,0.249934,0,0);-ms-transform:matrix(0.254318,-0.005849,0.005748,0.249934,0,0);-webkit-transform:matrix(0.254318,-0.005849,0.005748,0.249934,0,0);}
.m36_c01235{transform:matrix(0.255138,-0.005868,0.005748,0.249934,0,0);-ms-transform:matrix(0.255138,-0.005868,0.005748,0.249934,0,0);-webkit-transform:matrix(0.255138,-0.005868,0.005748,0.249934,0,0);}
.m29_c01235{transform:matrix(0.256932,-0.005909,0.005748,0.249934,0,0);-ms-transform:matrix(0.256932,-0.005909,0.005748,0.249934,0,0);-webkit-transform:matrix(0.256932,-0.005909,0.005748,0.249934,0,0);}
.m82_c01235{transform:matrix(0.257030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257030,0.000000,0.000000,0.250000,0,0);}
.m75_c01235{transform:matrix(0.260521,-0.005992,0.005748,0.249934,0,0);-ms-transform:matrix(0.260521,-0.005992,0.005748,0.249934,0,0);-webkit-transform:matrix(0.260521,-0.005992,0.005748,0.249934,0,0);}
.m40_c01235{transform:matrix(0.261036,-0.006004,0.005748,0.249934,0,0);-ms-transform:matrix(0.261036,-0.006004,0.005748,0.249934,0,0);-webkit-transform:matrix(0.261036,-0.006004,0.005748,0.249934,0,0);}
.m1d_c01235{transform:matrix(0.261196,-0.006008,0.005748,0.249934,0,0);-ms-transform:matrix(0.261196,-0.006008,0.005748,0.249934,0,0);-webkit-transform:matrix(0.261196,-0.006008,0.005748,0.249934,0,0);}
.m41_c01235{transform:matrix(0.261351,-0.006011,0.005748,0.249934,0,0);-ms-transform:matrix(0.261351,-0.006011,0.005748,0.249934,0,0);-webkit-transform:matrix(0.261351,-0.006011,0.005748,0.249934,0,0);}
.m2c_c01235{transform:matrix(0.268724,-0.006181,0.005748,0.249934,0,0);-ms-transform:matrix(0.268724,-0.006181,0.005748,0.249934,0,0);-webkit-transform:matrix(0.268724,-0.006181,0.005748,0.249934,0,0);}
.m19_c01235{transform:matrix(0.270823,-0.006229,0.005748,0.249934,0,0);-ms-transform:matrix(0.270823,-0.006229,0.005748,0.249934,0,0);-webkit-transform:matrix(0.270823,-0.006229,0.005748,0.249934,0,0);}
.m76_c01235{transform:matrix(0.275572,-0.006338,0.005748,0.249934,0,0);-ms-transform:matrix(0.275572,-0.006338,0.005748,0.249934,0,0);-webkit-transform:matrix(0.275572,-0.006338,0.005748,0.249934,0,0);}
.m72_c01235{transform:matrix(0.275612,-0.006339,0.005748,0.249934,0,0);-ms-transform:matrix(0.275612,-0.006339,0.005748,0.249934,0,0);-webkit-transform:matrix(0.275612,-0.006339,0.005748,0.249934,0,0);}
.m34_c01235{transform:matrix(0.280851,-0.006460,0.005748,0.249934,0,0);-ms-transform:matrix(0.280851,-0.006460,0.005748,0.249934,0,0);-webkit-transform:matrix(0.280851,-0.006460,0.005748,0.249934,0,0);}
.m12_c01235{transform:matrix(0.280931,-0.006461,0.005748,0.249934,0,0);-ms-transform:matrix(0.280931,-0.006461,0.005748,0.249934,0,0);-webkit-transform:matrix(0.280931,-0.006461,0.005748,0.249934,0,0);}
.m1f_c01235{transform:matrix(0.281790,-0.006481,0.005748,0.249934,0,0);-ms-transform:matrix(0.281790,-0.006481,0.005748,0.249934,0,0);-webkit-transform:matrix(0.281790,-0.006481,0.005748,0.249934,0,0);}
.m22_c01235{transform:matrix(0.285744,-0.006572,0.005748,0.249934,0,0);-ms-transform:matrix(0.285744,-0.006572,0.005748,0.249934,0,0);-webkit-transform:matrix(0.285744,-0.006572,0.005748,0.249934,0,0);}
.m38_c01235{transform:matrix(0.286769,-0.006596,0.005748,0.249934,0,0);-ms-transform:matrix(0.286769,-0.006596,0.005748,0.249934,0,0);-webkit-transform:matrix(0.286769,-0.006596,0.005748,0.249934,0,0);}
.m9_c01235{transform:matrix(0.287534,-0.006613,0.005748,0.249934,0,0);-ms-transform:matrix(0.287534,-0.006613,0.005748,0.249934,0,0);-webkit-transform:matrix(0.287534,-0.006613,0.005748,0.249934,0,0);}
.m20_c01235{transform:matrix(0.289838,-0.006666,0.005748,0.249934,0,0);-ms-transform:matrix(0.289838,-0.006666,0.005748,0.249934,0,0);-webkit-transform:matrix(0.289838,-0.006666,0.005748,0.249934,0,0);}
.m23_c01235{transform:matrix(0.290898,-0.006691,0.005748,0.249934,0,0);-ms-transform:matrix(0.290898,-0.006691,0.005748,0.249934,0,0);-webkit-transform:matrix(0.290898,-0.006691,0.005748,0.249934,0,0);}
.m59_c01235{transform:matrix(0.291303,-0.006700,0.005748,0.249934,0,0);-ms-transform:matrix(0.291303,-0.006700,0.005748,0.249934,0,0);-webkit-transform:matrix(0.291303,-0.006700,0.005748,0.249934,0,0);}
.m6f_c01235{transform:matrix(0.291768,-0.006711,0.005748,0.249934,0,0);-ms-transform:matrix(0.291768,-0.006711,0.005748,0.249934,0,0);-webkit-transform:matrix(0.291768,-0.006711,0.005748,0.249934,0,0);}
.m3e_c01235{transform:matrix(0.292128,-0.006719,0.005748,0.249934,0,0);-ms-transform:matrix(0.292128,-0.006719,0.005748,0.249934,0,0);-webkit-transform:matrix(0.292128,-0.006719,0.005748,0.249934,0,0);}
.m2d_c01235{transform:matrix(0.292208,-0.006721,0.005748,0.249934,0,0);-ms-transform:matrix(0.292208,-0.006721,0.005748,0.249934,0,0);-webkit-transform:matrix(0.292208,-0.006721,0.005748,0.249934,0,0);}
.m8b_c01235{transform:matrix(0.304630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304630,0.000000,0.000000,0.250000,0,0);}
.m16_c01235{transform:matrix(0.309333,-0.007115,0.005748,0.249934,0,0);-ms-transform:matrix(0.309333,-0.007115,0.005748,0.249934,0,0);-webkit-transform:matrix(0.309333,-0.007115,0.005748,0.249934,0,0);}
.m5a_c01235{transform:matrix(0.310438,-0.007140,0.005748,0.249934,0,0);-ms-transform:matrix(0.310438,-0.007140,0.005748,0.249934,0,0);-webkit-transform:matrix(0.310438,-0.007140,0.005748,0.249934,0,0);}
.m2a_c01235{transform:matrix(0.312627,-0.007190,0.005748,0.249934,0,0);-ms-transform:matrix(0.312627,-0.007190,0.005748,0.249934,0,0);-webkit-transform:matrix(0.312627,-0.007190,0.005748,0.249934,0,0);}
.m4e_c01235{transform:matrix(0.314757,-0.007239,0.005748,0.249934,0,0);-ms-transform:matrix(0.314757,-0.007239,0.005748,0.249934,0,0);-webkit-transform:matrix(0.314757,-0.007239,0.005748,0.249934,0,0);}
.m42_c01235{transform:matrix(0.316501,-0.007280,0.005748,0.249934,0,0);-ms-transform:matrix(0.316501,-0.007280,0.005748,0.249934,0,0);-webkit-transform:matrix(0.316501,-0.007280,0.005748,0.249934,0,0);}
.md_c01235{transform:matrix(0.316526,-0.007280,0.005748,0.249934,0,0);-ms-transform:matrix(0.316526,-0.007280,0.005748,0.249934,0,0);-webkit-transform:matrix(0.316526,-0.007280,0.005748,0.249934,0,0);}
.m24_c01235{transform:matrix(0.318211,-0.007319,0.005748,0.249934,0,0);-ms-transform:matrix(0.318211,-0.007319,0.005748,0.249934,0,0);-webkit-transform:matrix(0.318211,-0.007319,0.005748,0.249934,0,0);}
.m5_c01235{transform:matrix(0.318640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318640,0.000000,0.000000,0.250000,0,0);}
.m1e_c01235{transform:matrix(0.326299,-0.007505,0.005748,0.249934,0,0);-ms-transform:matrix(0.326299,-0.007505,0.005748,0.249934,0,0);-webkit-transform:matrix(0.326299,-0.007505,0.005748,0.249934,0,0);}
.m6e_c01235{transform:matrix(0.338435,-0.007784,0.005748,0.249934,0,0);-ms-transform:matrix(0.338435,-0.007784,0.005748,0.249934,0,0);-webkit-transform:matrix(0.338435,-0.007784,0.005748,0.249934,0,0);}
.m25_c01235{transform:matrix(0.339985,-0.007820,0.005748,0.249934,0,0);-ms-transform:matrix(0.339985,-0.007820,0.005748,0.249934,0,0);-webkit-transform:matrix(0.339985,-0.007820,0.005748,0.249934,0,0);}
.m28_c01235{transform:matrix(0.341120,-0.007846,0.005748,0.249934,0,0);-ms-transform:matrix(0.341120,-0.007846,0.005748,0.249934,0,0);-webkit-transform:matrix(0.341120,-0.007846,0.005748,0.249934,0,0);}
.m3c_c01235{transform:matrix(0.341645,-0.007858,0.005748,0.249934,0,0);-ms-transform:matrix(0.341645,-0.007858,0.005748,0.249934,0,0);-webkit-transform:matrix(0.341645,-0.007858,0.005748,0.249934,0,0);}
.m3a_c01235{transform:matrix(0.345924,-0.007956,0.005748,0.249934,0,0);-ms-transform:matrix(0.345924,-0.007956,0.005748,0.249934,0,0);-webkit-transform:matrix(0.345924,-0.007956,0.005748,0.249934,0,0);}
.m2b_c01235{transform:matrix(0.354201,-0.008147,0.005748,0.249934,0,0);-ms-transform:matrix(0.354201,-0.008147,0.005748,0.249934,0,0);-webkit-transform:matrix(0.354201,-0.008147,0.005748,0.249934,0,0);}
.m3d_c01235{transform:matrix(0.369557,-0.008500,0.005748,0.249934,0,0);-ms-transform:matrix(0.369557,-0.008500,0.005748,0.249934,0,0);-webkit-transform:matrix(0.369557,-0.008500,0.005748,0.249934,0,0);}
.m21_c01235{transform:matrix(0.395350,-0.009093,0.005748,0.249934,0,0);-ms-transform:matrix(0.395350,-0.009093,0.005748,0.249934,0,0);-webkit-transform:matrix(0.395350,-0.009093,0.005748,0.249934,0,0);}
.m47_c01235{transform:matrix(0.395570,-0.009098,0.005748,0.249934,0,0);-ms-transform:matrix(0.395570,-0.009098,0.005748,0.249934,0,0);-webkit-transform:matrix(0.395570,-0.009098,0.005748,0.249934,0,0);}
.m1c_c01235{transform:matrix(0.401359,-0.009231,0.005748,0.249934,0,0);-ms-transform:matrix(0.401359,-0.009231,0.005748,0.249934,0,0);-webkit-transform:matrix(0.401359,-0.009231,0.005748,0.249934,0,0);}
.m53_c01235{transform:matrix(0.402968,-0.009268,0.005748,0.249934,0,0);-ms-transform:matrix(0.402968,-0.009268,0.005748,0.249934,0,0);-webkit-transform:matrix(0.402968,-0.009268,0.005748,0.249934,0,0);}
.m3b_c01235{transform:matrix(0.404268,-0.009298,0.005748,0.249934,0,0);-ms-transform:matrix(0.404268,-0.009298,0.005748,0.249934,0,0);-webkit-transform:matrix(0.404268,-0.009298,0.005748,0.249934,0,0);}
.m61_c01235{transform:matrix(0.418699,-0.009630,0.005748,0.249934,0,0);-ms-transform:matrix(0.418699,-0.009630,0.005748,0.249934,0,0);-webkit-transform:matrix(0.418699,-0.009630,0.005748,0.249934,0,0);}
.m2f_c01235{transform:matrix(0.419689,-0.009653,0.005748,0.249934,0,0);-ms-transform:matrix(0.419689,-0.009653,0.005748,0.249934,0,0);-webkit-transform:matrix(0.419689,-0.009653,0.005748,0.249934,0,0);}
.m44_c01235{transform:matrix(0.424713,-0.009768,0.005748,0.249934,0,0);-ms-transform:matrix(0.424713,-0.009768,0.005748,0.249934,0,0);-webkit-transform:matrix(0.424713,-0.009768,0.005748,0.249934,0,0);}
.m14_c01235{transform:matrix(0.426827,-0.009817,0.005748,0.249934,0,0);-ms-transform:matrix(0.426827,-0.009817,0.005748,0.249934,0,0);-webkit-transform:matrix(0.426827,-0.009817,0.005748,0.249934,0,0);}
.m2e_c01235{transform:matrix(0.449116,-0.010330,0.005748,0.249934,0,0);-ms-transform:matrix(0.449116,-0.010330,0.005748,0.249934,0,0);-webkit-transform:matrix(0.449116,-0.010330,0.005748,0.249934,0,0);}
.m7b_c01235{transform:matrix(0.460758,-0.010597,0.005748,0.249934,0,0);-ms-transform:matrix(0.460758,-0.010597,0.005748,0.249934,0,0);-webkit-transform:matrix(0.460758,-0.010597,0.005748,0.249934,0,0);}
.m1a_c01235{transform:matrix(0.474310,-0.010909,0.005748,0.249934,0,0);-ms-transform:matrix(0.474310,-0.010909,0.005748,0.249934,0,0);-webkit-transform:matrix(0.474310,-0.010909,0.005748,0.249934,0,0);}
.m1b_c01235{transform:matrix(0.537453,-0.012361,0.005748,0.249934,0,0);-ms-transform:matrix(0.537453,-0.012361,0.005748,0.249934,0,0);-webkit-transform:matrix(0.537453,-0.012361,0.005748,0.249934,0,0);}
.m78_c01235{transform:matrix(0.553084,-0.012721,0.005748,0.249934,0,0);-ms-transform:matrix(0.553084,-0.012721,0.005748,0.249934,0,0);-webkit-transform:matrix(0.553084,-0.012721,0.005748,0.249934,0,0);}
.m88_c01235{transform:matrix(0.556820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556820,0.000000,0.000000,0.250000,0,0);}
.m48_c01235{transform:matrix(0.596977,-0.013730,0.005748,0.249934,0,0);-ms-transform:matrix(0.596977,-0.013730,0.005748,0.249934,0,0);-webkit-transform:matrix(0.596977,-0.013730,0.005748,0.249934,0,0);}
.m54_c01235{transform:matrix(0.642070,-0.014768,0.005748,0.249934,0,0);-ms-transform:matrix(0.642070,-0.014768,0.005748,0.249934,0,0);-webkit-transform:matrix(0.642070,-0.014768,0.005748,0.249934,0,0);}
.m4_c01235{transform:matrix(0.683410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.683410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.683410,0.000000,0.000000,0.250000,0,0);}
.m86_c01235{transform:matrix(0.700035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.700035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.700035,0.000000,0.000000,0.250000,0,0);}
.m8a_c01235{transform:matrix(0.995040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.995040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.995040,0.000000,0.000000,0.250000,0,0);}
.m18_c01235{transform:matrix(1.074431,-0.024712,0.005748,0.249934,0,0);-ms-transform:matrix(1.074431,-0.024712,0.005748,0.249934,0,0);-webkit-transform:matrix(1.074431,-0.024712,0.005748,0.249934,0,0);}
.m7c_c01235{transform:matrix(1.222385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.222385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.222385,0.000000,0.000000,0.250000,0,0);}
.m89_c01235{transform:matrix(1.701440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.701440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.701440,0.000000,0.000000,0.250000,0,0);}
.v0_c01235{vertical-align:0.000000px;}
.ls0_c01235{letter-spacing:0.000000px;}
.sc__c01235{text-shadow:none;}
.sc0_c01235{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__c01235{-webkit-text-stroke:0px transparent;}
.sc0_c01235{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01235{word-spacing:0.000000px;}
.fc0_c01235{color:transparent;}
.fsb_c01235{font-size:12.000000px;}
.fs1_c01235{font-size:18.000000px;}
.fs2_c01235{font-size:24.000000px;}
.fs0_c01235{font-size:36.000000px;}
.fs6_c01235{font-size:72.019041px;}
.fs5_c01235{font-size:78.020628px;}
.fs4_c01235{font-size:84.022215px;}
.fs3_c01235{font-size:90.023802px;}
.fs7_c01235{font-size:96.025389px;}
.fs8_c01235{font-size:108.028562px;}
.fsa_c01235{font-size:114.030149px;}
.fs9_c01235{font-size:144.038083px;}
.y0_c01235{bottom:0.000000px;}
.y3_c01235{bottom:225.720000px;}
.y2_c01235{bottom:271.350000px;}
.y1_c01235{bottom:277.290000px;}
.y89_c01235{bottom:296.730000px;}
.y88_c01235{bottom:395.010000px;}
.y87_c01235{bottom:443.070000px;}
.y86_c01235{bottom:460.350000px;}
.y85_c01235{bottom:487.080000px;}
.y84_c01235{bottom:489.240000px;}
.y83_c01235{bottom:500.850000px;}
.y82_c01235{bottom:518.533500px;}
.y81_c01235{bottom:529.470000px;}
.y80_c01235{bottom:539.730000px;}
.y7f_c01235{bottom:543.240000px;}
.y7e_c01235{bottom:548.100000px;}
.y7d_c01235{bottom:633.960000px;}
.y7c_c01235{bottom:640.440000px;}
.y6d_c01235{bottom:669.285987px;}
.y6e_c01235{bottom:670.060611px;}
.y6f_c01235{bottom:670.696185px;}
.y70_c01235{bottom:671.402733px;}
.y71_c01235{bottom:671.731277px;}
.y72_c01235{bottom:672.624834px;}
.y73_c01235{bottom:674.243831px;}
.y74_c01235{bottom:676.055030px;}
.y75_c01235{bottom:677.999499px;}
.y76_c01235{bottom:678.619443px;}
.y77_c01235{bottom:679.866525px;}
.y78_c01235{bottom:680.506809px;}
.y79_c01235{bottom:681.785117px;}
.y7a_c01235{bottom:683.257352px;}
.y7b_c01235{bottom:687.147000px;}
.y5f_c01235{bottom:701.853630px;}
.y60_c01235{bottom:703.288597px;}
.y61_c01235{bottom:703.787605px;}
.y62_c01235{bottom:704.757311px;}
.y63_c01235{bottom:705.723842px;}
.y64_c01235{bottom:706.533220px;}
.y65_c01235{bottom:707.471043px;}
.y66_c01235{bottom:708.611305px;}
.y67_c01235{bottom:709.502823px;}
.y68_c01235{bottom:710.958252px;}
.y69_c01235{bottom:711.575956px;}
.y6a_c01235{bottom:712.384438px;}
.y6b_c01235{bottom:714.163730px;}
.y6c_c01235{bottom:716.882345px;}
.y58_c01235{bottom:739.436298px;}
.y59_c01235{bottom:740.661625px;}
.y5a_c01235{bottom:743.196193px;}
.y5b_c01235{bottom:745.339232px;}
.y5c_c01235{bottom:747.669038px;}
.y5d_c01235{bottom:749.360974px;}
.y5e_c01235{bottom:753.174471px;}
.y53_c01235{bottom:772.404650px;}
.y54_c01235{bottom:781.599970px;}
.y55_c01235{bottom:782.248139px;}
.y56_c01235{bottom:783.454782px;}
.y57_c01235{bottom:784.880955px;}
.y46_c01235{bottom:812.366932px;}
.y47_c01235{bottom:813.559998px;}
.y48_c01235{bottom:814.040254px;}
.y49_c01235{bottom:814.973469px;}
.y4a_c01235{bottom:815.389224px;}
.y4b_c01235{bottom:815.916260px;}
.y4c_c01235{bottom:817.928359px;}
.y4d_c01235{bottom:818.893945px;}
.y4e_c01235{bottom:819.820310px;}
.y4f_c01235{bottom:820.275700px;}
.y50_c01235{bottom:820.725725px;}
.y51_c01235{bottom:821.758607px;}
.y52_c01235{bottom:823.326273px;}
.y3a_c01235{bottom:848.472099px;}
.y3b_c01235{bottom:849.153069px;}
.y3c_c01235{bottom:849.493864px;}
.y3d_c01235{bottom:850.470699px;}
.y3e_c01235{bottom:851.001519px;}
.y3f_c01235{bottom:851.825443px;}
.y40_c01235{bottom:853.820334px;}
.y41_c01235{bottom:854.203145px;}
.y42_c01235{bottom:855.656258px;}
.y43_c01235{bottom:856.512603px;}
.y44_c01235{bottom:857.684863px;}
.y45_c01235{bottom:858.148459px;}
.y2e_c01235{bottom:884.751403px;}
.y2f_c01235{bottom:885.646452px;}
.y30_c01235{bottom:886.314715px;}
.y31_c01235{bottom:887.021450px;}
.y32_c01235{bottom:889.913094px;}
.y33_c01235{bottom:890.600955px;}
.y34_c01235{bottom:892.335831px;}
.y35_c01235{bottom:893.510488px;}
.y36_c01235{bottom:894.488395px;}
.y37_c01235{bottom:896.334025px;}
.y38_c01235{bottom:897.013347px;}
.y39_c01235{bottom:898.428781px;}
.y20_c01235{bottom:921.212532px;}
.y21_c01235{bottom:923.629880px;}
.y22_c01235{bottom:926.059095px;}
.y23_c01235{bottom:927.097506px;}
.y24_c01235{bottom:927.700225px;}
.y25_c01235{bottom:929.225266px;}
.y26_c01235{bottom:929.538640px;}
.y27_c01235{bottom:930.562717px;}
.y28_c01235{bottom:931.391752px;}
.y29_c01235{bottom:932.966334px;}
.y2a_c01235{bottom:934.088130px;}
.y2b_c01235{bottom:934.842922px;}
.y2c_c01235{bottom:936.722478px;}
.y2d_c01235{bottom:938.215245px;}
.y17_c01235{bottom:956.586499px;}
.y18_c01235{bottom:957.074856px;}
.y19_c01235{bottom:957.744610px;}
.y1a_c01235{bottom:959.774044px;}
.y1b_c01235{bottom:961.270640px;}
.y1c_c01235{bottom:962.428440px;}
.y1d_c01235{bottom:963.434176px;}
.y1e_c01235{bottom:964.135145px;}
.y1f_c01235{bottom:965.204722px;}
.y12_c01235{bottom:991.959829px;}
.y13_c01235{bottom:992.965267px;}
.y14_c01235{bottom:993.306843px;}
.y15_c01235{bottom:995.198173px;}
.y16_c01235{bottom:997.077720px;}
.ya_c01235{bottom:1027.343178px;}
.yb_c01235{bottom:1027.811338px;}
.yc_c01235{bottom:1028.757736px;}
.yd_c01235{bottom:1029.210349px;}
.ye_c01235{bottom:1029.671400px;}
.yf_c01235{bottom:1030.155211px;}
.y10_c01235{bottom:1031.266002px;}
.y11_c01235{bottom:1032.322093px;}
.y4_c01235{bottom:1062.999000px;}
.y5_c01235{bottom:1064.836539px;}
.y6_c01235{bottom:1065.599023px;}
.y7_c01235{bottom:1066.438512px;}
.y8_c01235{bottom:1068.693777px;}
.y9_c01235{bottom:1069.454778px;}
.hd_c01235{height:12.000000px;}
.h3_c01235{height:18.000000px;}
.h4_c01235{height:24.000000px;}
.h2_c01235{height:36.000000px;}
.h8_c01235{height:72.019041px;}
.h7_c01235{height:78.020628px;}
.h6_c01235{height:84.022215px;}
.h5_c01235{height:90.023802px;}
.h9_c01235{height:96.025389px;}
.ha_c01235{height:108.028562px;}
.hc_c01235{height:114.030149px;}
.hb_c01235{height:144.038083px;}
.h1_c01235{height:1258.500000px;}
.h0_c01235{height:1258.740000px;}
.w1_c01235{width:899.250000px;}
.w0_c01235{width:899.370000px;}
.x0_c01235{left:0.000000px;}
.x1_c01235{left:1.620000px;}
.x4a_c01235{left:24.964467px;}
.x31_c01235{left:39.904924px;}
.x62_c01235{left:52.380000px;}
.x38_c01235{left:56.258050px;}
.x2_c01235{left:60.871500px;}
.x29_c01235{left:62.574427px;}
.x10_c01235{left:73.177543px;}
.x8_c01235{left:74.184189px;}
.x41_c01235{left:83.570137px;}
.x1d_c01235{left:84.927583px;}
.x54_c01235{left:86.804823px;}
.x4b_c01235{left:104.646109px;}
.x15_c01235{left:106.302487px;}
.x9_c01235{left:107.654623px;}
.x46_c01235{left:110.761885px;}
.x55_c01235{left:127.596583px;}
.x11_c01235{left:132.291685px;}
.x3_c01235{left:140.764500px;}
.x16_c01235{left:150.952198px;}
.x12_c01235{left:152.362945px;}
.x56_c01235{left:161.037654px;}
.x4_c01235{left:173.916000px;}
.xa_c01235{left:175.294630px;}
.x1e_c01235{left:185.657772px;}
.x57_c01235{left:198.217069px;}
.xb_c01235{left:207.632323px;}
.x5_c01235{left:210.415500px;}
.x58_c01235{left:215.503156px;}
.xc_c01235{left:240.532620px;}
.x39_c01235{left:242.472087px;}
.x59_c01235{left:262.509969px;}
.x13_c01235{left:263.631798px;}
.x3a_c01235{left:272.163228px;}
.xd_c01235{left:275.140296px;}
.x4c_c01235{left:284.867809px;}
.x17_c01235{left:286.235073px;}
.x6_c01235{left:308.470500px;}
.x3b_c01235{left:309.759490px;}
.x2a_c01235{left:320.665729px;}
.x1f_c01235{left:330.159960px;}
.x4d_c01235{left:336.931278px;}
.x7_c01235{left:341.557500px;}
.x5a_c01235{left:347.713300px;}
.xe_c01235{left:354.430183px;}
.x14_c01235{left:374.192547px;}
.x18_c01235{left:386.018427px;}
.x32_c01235{left:396.415474px;}
.x4e_c01235{left:400.276057px;}
.x20_c01235{left:418.821424px;}
.x33_c01235{left:421.933666px;}
.xf_c01235{left:429.906312px;}
.x21_c01235{left:431.859114px;}
.x2b_c01235{left:441.793078px;}
.x5b_c01235{left:443.035063px;}
.x4f_c01235{left:449.804250px;}
.x3c_c01235{left:453.489229px;}
.x19_c01235{left:463.176106px;}
.x22_c01235{left:474.557148px;}
.x2c_c01235{left:500.499615px;}
.x23_c01235{left:509.101355px;}
.x34_c01235{left:518.782468px;}
.x3d_c01235{left:522.485512px;}
.x1a_c01235{left:530.263957px;}
.x47_c01235{left:544.138267px;}
.x5c_c01235{left:545.390982px;}
.x2d_c01235{left:549.411996px;}
.x50_c01235{left:564.931963px;}
.x42_c01235{left:567.541642px;}
.x24_c01235{left:574.690337px;}
.x35_c01235{left:575.851456px;}
.x1b_c01235{left:576.988548px;}
.x5d_c01235{left:578.021983px;}
.x3e_c01235{left:588.667209px;}
.x43_c01235{left:601.660782px;}
.x51_c01235{left:609.871138px;}
.x25_c01235{left:621.441267px;}
.x48_c01235{left:633.165444px;}
.x2e_c01235{left:641.728378px;}
.x5e_c01235{left:643.662021px;}
.x1c_c01235{left:648.287658px;}
.x26_c01235{left:652.888042px;}
.x36_c01235{left:654.029343px;}
.x44_c01235{left:665.151112px;}
.x2f_c01235{left:675.701224px;}
.x5f_c01235{left:677.373126px;}
.x37_c01235{left:684.887001px;}
.x52_c01235{left:708.699489px;}
.x3f_c01235{left:727.034809px;}
.x27_c01235{left:731.214748px;}
.x45_c01235{left:740.209012px;}
.x60_c01235{left:744.631801px;}
.x30_c01235{left:746.507623px;}
.x28_c01235{left:793.442334px;}
.x61_c01235{left:822.083908px;}
.x49_c01235{left:833.879401px;}
.x40_c01235{left:839.043493px;}
.x67_c01235{left:846.990000px;}
.x53_c01235{left:859.721842px;}
.x69_c01235{left:869.400000px;}
.x6b_c01235{left:879.930000px;}
.x66_c01235{left:881.550000px;}
.x6c_c01235{left:883.710000px;}
.x6a_c01235{left:886.410000px;}
.x63_c01235{left:887.490000px;}
.x64_c01235{left:889.650000px;}
.x65_c01235{left:890.730000px;}
.x68_c01235{left:893.700000px;}
.x6d_c01235{left:895.590000px;}
@media print{
.v0_c01235{vertical-align:0.000000pt;}
.ls0_c01235{letter-spacing:0.000000pt;}
.ws0_c01235{word-spacing:0.000000pt;}
.fsb_c01235{font-size:10.666667pt;}
.fs1_c01235{font-size:16.000000pt;}
.fs2_c01235{font-size:21.333333pt;}
.fs0_c01235{font-size:32.000000pt;}
.fs6_c01235{font-size:64.016926pt;}
.fs5_c01235{font-size:69.351670pt;}
.fs4_c01235{font-size:74.686413pt;}
.fs3_c01235{font-size:80.021157pt;}
.fs7_c01235{font-size:85.355901pt;}
.fs8_c01235{font-size:96.025389pt;}
.fsa_c01235{font-size:101.360132pt;}
.fs9_c01235{font-size:128.033852pt;}
.y0_c01235{bottom:0.000000pt;}
.y3_c01235{bottom:200.640000pt;}
.y2_c01235{bottom:241.200000pt;}
.y1_c01235{bottom:246.480000pt;}
.y89_c01235{bottom:263.760000pt;}
.y88_c01235{bottom:351.120000pt;}
.y87_c01235{bottom:393.840000pt;}
.y86_c01235{bottom:409.200000pt;}
.y85_c01235{bottom:432.960000pt;}
.y84_c01235{bottom:434.880000pt;}
.y83_c01235{bottom:445.200000pt;}
.y82_c01235{bottom:460.918667pt;}
.y81_c01235{bottom:470.640000pt;}
.y80_c01235{bottom:479.760000pt;}
.y7f_c01235{bottom:482.880000pt;}
.y7e_c01235{bottom:487.200000pt;}
.y7d_c01235{bottom:563.520000pt;}
.y7c_c01235{bottom:569.280000pt;}
.y6d_c01235{bottom:594.920877pt;}
.y6e_c01235{bottom:595.609432pt;}
.y6f_c01235{bottom:596.174387pt;}
.y70_c01235{bottom:596.802429pt;}
.y71_c01235{bottom:597.094468pt;}
.y72_c01235{bottom:597.888741pt;}
.y73_c01235{bottom:599.327849pt;}
.y74_c01235{bottom:600.937804pt;}
.y75_c01235{bottom:602.666221pt;}
.y76_c01235{bottom:603.217283pt;}
.y77_c01235{bottom:604.325800pt;}
.y78_c01235{bottom:604.894941pt;}
.y79_c01235{bottom:606.031215pt;}
.y7a_c01235{bottom:607.339868pt;}
.y7b_c01235{bottom:610.797333pt;}
.y5f_c01235{bottom:623.869893pt;}
.y60_c01235{bottom:625.145420pt;}
.y61_c01235{bottom:625.588983pt;}
.y62_c01235{bottom:626.450943pt;}
.y63_c01235{bottom:627.310081pt;}
.y64_c01235{bottom:628.029529pt;}
.y65_c01235{bottom:628.863149pt;}
.y66_c01235{bottom:629.876716pt;}
.y67_c01235{bottom:630.669176pt;}
.y68_c01235{bottom:631.962891pt;}
.y69_c01235{bottom:632.511961pt;}
.y6a_c01235{bottom:633.230612pt;}
.y6b_c01235{bottom:634.812204pt;}
.y6c_c01235{bottom:637.228751pt;}
.y58_c01235{bottom:657.276709pt;}
.y59_c01235{bottom:658.365889pt;}
.y5a_c01235{bottom:660.618839pt;}
.y5b_c01235{bottom:662.523761pt;}
.y5c_c01235{bottom:664.594700pt;}
.y5d_c01235{bottom:666.098644pt;}
.y5e_c01235{bottom:669.488419pt;}
.y53_c01235{bottom:686.581911pt;}
.y54_c01235{bottom:694.755529pt;}
.y55_c01235{bottom:695.331679pt;}
.y56_c01235{bottom:696.404251pt;}
.y57_c01235{bottom:697.671960pt;}
.y46_c01235{bottom:722.103940pt;}
.y47_c01235{bottom:723.164443pt;}
.y48_c01235{bottom:723.591337pt;}
.y49_c01235{bottom:724.420861pt;}
.y4a_c01235{bottom:724.790421pt;}
.y4b_c01235{bottom:725.258897pt;}
.y4c_c01235{bottom:727.047431pt;}
.y4d_c01235{bottom:727.905729pt;}
.y4e_c01235{bottom:728.729164pt;}
.y4f_c01235{bottom:729.133956pt;}
.y50_c01235{bottom:729.533977pt;}
.y51_c01235{bottom:730.452095pt;}
.y52_c01235{bottom:731.845576pt;}
.y3a_c01235{bottom:754.197421pt;}
.y3b_c01235{bottom:754.802728pt;}
.y3c_c01235{bottom:755.105657pt;}
.y3d_c01235{bottom:755.973955pt;}
.y3e_c01235{bottom:756.445795pt;}
.y3f_c01235{bottom:757.178172pt;}
.y40_c01235{bottom:758.951408pt;}
.y41_c01235{bottom:759.291684pt;}
.y42_c01235{bottom:760.583340pt;}
.y43_c01235{bottom:761.344536pt;}
.y44_c01235{bottom:762.386545pt;}
.y45_c01235{bottom:762.798631pt;}
.y2e_c01235{bottom:786.445692pt;}
.y2f_c01235{bottom:787.241291pt;}
.y30_c01235{bottom:787.835303pt;}
.y31_c01235{bottom:788.463511pt;}
.y32_c01235{bottom:791.033861pt;}
.y33_c01235{bottom:791.645293pt;}
.y34_c01235{bottom:793.187405pt;}
.y35_c01235{bottom:794.231545pt;}
.y36_c01235{bottom:795.100796pt;}
.y37_c01235{bottom:796.741356pt;}
.y38_c01235{bottom:797.345197pt;}
.y39_c01235{bottom:798.603361pt;}
.y20_c01235{bottom:818.855584pt;}
.y21_c01235{bottom:821.004337pt;}
.y22_c01235{bottom:823.163640pt;}
.y23_c01235{bottom:824.086672pt;}
.y24_c01235{bottom:824.622423pt;}
.y25_c01235{bottom:825.978015pt;}
.y26_c01235{bottom:826.256569pt;}
.y27_c01235{bottom:827.166860pt;}
.y28_c01235{bottom:827.903780pt;}
.y29_c01235{bottom:829.303408pt;}
.y2a_c01235{bottom:830.300560pt;}
.y2b_c01235{bottom:830.971487pt;}
.y2c_c01235{bottom:832.642203pt;}
.y2d_c01235{bottom:833.969107pt;}
.y17_c01235{bottom:850.299111pt;}
.y18_c01235{bottom:850.733205pt;}
.y19_c01235{bottom:851.328543pt;}
.y1a_c01235{bottom:853.132484pt;}
.y1b_c01235{bottom:854.462791pt;}
.y1c_c01235{bottom:855.491947pt;}
.y1d_c01235{bottom:856.385935pt;}
.y1e_c01235{bottom:857.009017pt;}
.y1f_c01235{bottom:857.959753pt;}
.y12_c01235{bottom:881.742071pt;}
.y13_c01235{bottom:882.635793pt;}
.y14_c01235{bottom:882.939416pt;}
.y15_c01235{bottom:884.620599pt;}
.y16_c01235{bottom:886.291307pt;}
.ya_c01235{bottom:913.193936pt;}
.yb_c01235{bottom:913.610079pt;}
.yc_c01235{bottom:914.451321pt;}
.yd_c01235{bottom:914.853644pt;}
.ye_c01235{bottom:915.263467pt;}
.yf_c01235{bottom:915.693521pt;}
.y10_c01235{bottom:916.680891pt;}
.y11_c01235{bottom:917.619639pt;}
.y4_c01235{bottom:944.888000pt;}
.y5_c01235{bottom:946.521368pt;}
.y6_c01235{bottom:947.199132pt;}
.y7_c01235{bottom:947.945344pt;}
.y8_c01235{bottom:949.950024pt;}
.y9_c01235{bottom:950.626469pt;}
.hd_c01235{height:10.666667pt;}
.h3_c01235{height:16.000000pt;}
.h4_c01235{height:21.333333pt;}
.h2_c01235{height:32.000000pt;}
.h8_c01235{height:64.016926pt;}
.h7_c01235{height:69.351670pt;}
.h6_c01235{height:74.686413pt;}
.h5_c01235{height:80.021157pt;}
.h9_c01235{height:85.355901pt;}
.ha_c01235{height:96.025389pt;}
.hc_c01235{height:101.360132pt;}
.hb_c01235{height:128.033852pt;}
.h1_c01235{height:1118.666667pt;}
.h0_c01235{height:1118.880000pt;}
.w1_c01235{width:799.333333pt;}
.w0_c01235{width:799.440000pt;}
.x0_c01235{left:0.000000pt;}
.x1_c01235{left:1.440000pt;}
.x4a_c01235{left:22.190637pt;}
.x31_c01235{left:35.471044pt;}
.x62_c01235{left:46.560000pt;}
.x38_c01235{left:50.007156pt;}
.x2_c01235{left:54.108000pt;}
.x29_c01235{left:55.621713pt;}
.x10_c01235{left:65.046705pt;}
.x8_c01235{left:65.941501pt;}
.x41_c01235{left:74.284567pt;}
.x1d_c01235{left:75.491185pt;}
.x54_c01235{left:77.159843pt;}
.x4b_c01235{left:93.018764pt;}
.x15_c01235{left:94.491100pt;}
.x9_c01235{left:95.692999pt;}
.x46_c01235{left:98.455009pt;}
.x55_c01235{left:113.419185pt;}
.x11_c01235{left:117.592609pt;}
.x3_c01235{left:125.124000pt;}
.x16_c01235{left:134.179732pt;}
.x12_c01235{left:135.433729pt;}
.x56_c01235{left:143.144581pt;}
.x4_c01235{left:154.592000pt;}
.xa_c01235{left:155.817449pt;}
.x1e_c01235{left:165.029131pt;}
.x57_c01235{left:176.192951pt;}
.xb_c01235{left:184.562065pt;}
.x5_c01235{left:187.036000pt;}
.x58_c01235{left:191.558361pt;}
.xc_c01235{left:213.806773pt;}
.x39_c01235{left:215.530744pt;}
.x59_c01235{left:233.342195pt;}
.x13_c01235{left:234.339376pt;}
.x3a_c01235{left:241.922869pt;}
.xd_c01235{left:244.569152pt;}
.x4c_c01235{left:253.215831pt;}
.x17_c01235{left:254.431176pt;}
.x6_c01235{left:274.196000pt;}
.x3b_c01235{left:275.341769pt;}
.x2a_c01235{left:285.036204pt;}
.x1f_c01235{left:293.475520pt;}
.x4d_c01235{left:299.494469pt;}
.x7_c01235{left:303.606667pt;}
.x5a_c01235{left:309.078489pt;}
.xe_c01235{left:315.049052pt;}
.x14_c01235{left:332.615597pt;}
.x18_c01235{left:343.127491pt;}
.x32_c01235{left:352.369311pt;}
.x4e_c01235{left:355.800940pt;}
.x20_c01235{left:372.285711pt;}
.x33_c01235{left:375.052148pt;}
.xf_c01235{left:382.138944pt;}
.x21_c01235{left:383.874768pt;}
.x2b_c01235{left:392.704959pt;}
.x5b_c01235{left:393.808945pt;}
.x4f_c01235{left:399.826000pt;}
.x3c_c01235{left:403.101537pt;}
.x19_c01235{left:411.712095pt;}
.x22_c01235{left:421.828576pt;}
.x2c_c01235{left:444.888547pt;}
.x23_c01235{left:452.534537pt;}
.x34_c01235{left:461.139972pt;}
.x3d_c01235{left:464.431567pt;}
.x1a_c01235{left:471.345740pt;}
.x47_c01235{left:483.678460pt;}
.x5c_c01235{left:484.791984pt;}
.x2d_c01235{left:488.366219pt;}
.x50_c01235{left:502.161745pt;}
.x42_c01235{left:504.481460pt;}
.x24_c01235{left:510.835855pt;}
.x35_c01235{left:511.867961pt;}
.x1b_c01235{left:512.878709pt;}
.x5d_c01235{left:513.797319pt;}
.x3e_c01235{left:523.259741pt;}
.x43_c01235{left:534.809584pt;}
.x51_c01235{left:542.107679pt;}
.x25_c01235{left:552.392237pt;}
.x48_c01235{left:562.813728pt;}
.x2e_c01235{left:570.425225pt;}
.x5e_c01235{left:572.144019pt;}
.x1c_c01235{left:576.255696pt;}
.x26_c01235{left:580.344927pt;}
.x36_c01235{left:581.359416pt;}
.x44_c01235{left:591.245433pt;}
.x2f_c01235{left:600.623311pt;}
.x5f_c01235{left:602.109445pt;}
.x37_c01235{left:608.788445pt;}
.x52_c01235{left:629.955101pt;}
.x3f_c01235{left:646.253164pt;}
.x27_c01235{left:649.968665pt;}
.x45_c01235{left:657.963567pt;}
.x60_c01235{left:661.894935pt;}
.x30_c01235{left:663.562332pt;}
.x28_c01235{left:705.282075pt;}
.x61_c01235{left:730.741252pt;}
.x49_c01235{left:741.226135pt;}
.x40_c01235{left:745.816439pt;}
.x67_c01235{left:752.880000pt;}
.x53_c01235{left:764.197193pt;}
.x69_c01235{left:772.800000pt;}
.x6b_c01235{left:782.160000pt;}
.x66_c01235{left:783.600000pt;}
.x6c_c01235{left:785.520000pt;}
.x6a_c01235{left:787.920000pt;}
.x63_c01235{left:788.880000pt;}
.x64_c01235{left:790.800000pt;}
.x65_c01235{left:791.760000pt;}
.x68_c01235{left:794.400000pt;}
.x6d_c01235{left:796.080000pt;}
}





/* 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_c01236 {
    display:none;
  }
  .loading-indicator_c01236.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01236 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_c01236 { 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_c01236" -> "#page-container .classname_c01236")
 */
.pf_c01236 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01236 { /* 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_c01236.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01236 { /* 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_c01236 { /* 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_c01236 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01236 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01236 {overflow:visible;}
  }
}
.c_c01236 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01236 { /* 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_c01236:after { /* webkit #35443 */
  content: '';
}
.t_c01236:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01236 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 */
}
.__c01236 { /* 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_c01236 { /* info for Javascript */
  display:none;
}
.l_c01236 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01236 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01236 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01236: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_c01236 {
    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_c01236.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01236.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_c01236 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01236{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01236;src:url('chunks/assets/font_b11a17f404e7258299fdf971.woff2')format("woff");}.ff1_c01236{font-family:ff1_c01236;line-height:1.000000;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;}
.m1_c01236{transform:matrix(0.133705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133705,0.000000,0.000000,0.250000,0,0);}
.m1d_c01236{transform:matrix(0.135203,-0.001352,0.002500,0.249988,0,0);-ms-transform:matrix(0.135203,-0.001352,0.002500,0.249988,0,0);-webkit-transform:matrix(0.135203,-0.001352,0.002500,0.249988,0,0);}
.m22_c01236{transform:matrix(0.146600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146600,0.000000,0.000000,0.250000,0,0);}
.md_c01236{transform:matrix(0.162775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162775,0.000000,0.000000,0.250000,0,0);}
.m19_c01236{transform:matrix(0.181236,-0.001812,0.002500,0.249988,0,0);-ms-transform:matrix(0.181236,-0.001812,0.002500,0.249988,0,0);-webkit-transform:matrix(0.181236,-0.001812,0.002500,0.249988,0,0);}
.m6_c01236{transform:matrix(0.183635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183635,0.000000,0.000000,0.250000,0,0);}
.m1a_c01236{transform:matrix(0.201110,-0.002011,0.002500,0.249988,0,0);-ms-transform:matrix(0.201110,-0.002011,0.002500,0.249988,0,0);-webkit-transform:matrix(0.201110,-0.002011,0.002500,0.249988,0,0);}
.m1b_c01236{transform:matrix(0.206145,-0.002061,0.002500,0.249988,0,0);-ms-transform:matrix(0.206145,-0.002061,0.002500,0.249988,0,0);-webkit-transform:matrix(0.206145,-0.002061,0.002500,0.249988,0,0);}
.m15_c01236{transform:matrix(0.206880,-0.002069,0.002500,0.249988,0,0);-ms-transform:matrix(0.206880,-0.002069,0.002500,0.249988,0,0);-webkit-transform:matrix(0.206880,-0.002069,0.002500,0.249988,0,0);}
.m10_c01236{transform:matrix(0.208065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208065,0.000000,0.000000,0.250000,0,0);}
.mf_c01236{transform:matrix(0.210020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210020,0.000000,0.000000,0.250000,0,0);}
.m1c_c01236{transform:matrix(0.210694,-0.002107,0.002500,0.249988,0,0);-ms-transform:matrix(0.210694,-0.002107,0.002500,0.249988,0,0);-webkit-transform:matrix(0.210694,-0.002107,0.002500,0.249988,0,0);}
.m4_c01236{transform:matrix(0.213865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213865,0.000000,0.000000,0.250000,0,0);}
.m17_c01236{transform:matrix(0.213939,-0.002139,0.002500,0.249988,0,0);-ms-transform:matrix(0.213939,-0.002139,0.002500,0.249988,0,0);-webkit-transform:matrix(0.213939,-0.002139,0.002500,0.249988,0,0);}
.ma_c01236{transform:matrix(0.216720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216720,0.000000,0.000000,0.250000,0,0);}
.m18_c01236{transform:matrix(0.220819,-0.002208,0.002500,0.249988,0,0);-ms-transform:matrix(0.220819,-0.002208,0.002500,0.249988,0,0);-webkit-transform:matrix(0.220819,-0.002208,0.002500,0.249988,0,0);}
.mc_c01236{transform:matrix(0.221360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221360,0.000000,0.000000,0.250000,0,0);}
.m1e_c01236{transform:matrix(0.223544,-0.002235,0.002500,0.249988,0,0);-ms-transform:matrix(0.223544,-0.002235,0.002500,0.249988,0,0);-webkit-transform:matrix(0.223544,-0.002235,0.002500,0.249988,0,0);}
.m32_c01236{transform:matrix(0.228170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228170,0.000000,0.000000,0.250000,0,0);}
.m16_c01236{transform:matrix(0.230198,-0.002302,0.002500,0.249988,0,0);-ms-transform:matrix(0.230198,-0.002302,0.002500,0.249988,0,0);-webkit-transform:matrix(0.230198,-0.002302,0.002500,0.249988,0,0);}
.m13_c01236{transform:matrix(0.230345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230345,0.000000,0.000000,0.250000,0,0);}
.m11_c01236{transform:matrix(0.231035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231035,0.000000,0.000000,0.250000,0,0);}
.mb_c01236{transform:matrix(0.234310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234310,0.000000,0.000000,0.250000,0,0);}
.me_c01236{transform:matrix(0.236205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236205,0.000000,0.000000,0.250000,0,0);}
.m26_c01236{transform:matrix(0.237425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237425,0.000000,0.000000,0.250000,0,0);}
.m0_c01236{transform:matrix(0.239120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239120,0.000000,0.000000,0.250000,0,0);}
.m9_c01236{transform:matrix(0.239550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239550,0.000000,0.000000,0.250000,0,0);}
.m2f_c01236{transform:matrix(0.242745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242745,0.000000,0.000000,0.250000,0,0);}
.m12_c01236{transform:matrix(0.243120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243120,0.000000,0.000000,0.250000,0,0);}
.m33_c01236{transform:matrix(0.243540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243540,0.000000,0.000000,0.250000,0,0);}
.m24_c01236{transform:matrix(0.244870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244870,0.000000,0.000000,0.250000,0,0);}
.m2_c01236{transform:matrix(0.247890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247890,0.000000,0.000000,0.250000,0,0);}
.m5_c01236{transform:matrix(0.252600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252600,0.000000,0.000000,0.250000,0,0);}
.m3_c01236{transform:matrix(0.254175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254175,0.000000,0.000000,0.250000,0,0);}
.m1f_c01236{transform:matrix(0.255210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255210,0.000000,0.000000,0.250000,0,0);}
.m8_c01236{transform:matrix(0.255610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255610,0.000000,0.000000,0.250000,0,0);}
.m29_c01236{transform:matrix(0.256895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256895,0.000000,0.000000,0.250000,0,0);}
.m7_c01236{transform:matrix(0.257905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257905,0.000000,0.000000,0.250000,0,0);}
.m2d_c01236{transform:matrix(0.258045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258045,0.000000,0.000000,0.250000,0,0);}
.m30_c01236{transform:matrix(0.258615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258615,0.000000,0.000000,0.250000,0,0);}
.m25_c01236{transform:matrix(0.258920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258920,0.000000,0.000000,0.250000,0,0);}
.m21_c01236{transform:matrix(0.259130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259130,0.000000,0.000000,0.250000,0,0);}
.m23_c01236{transform:matrix(0.260050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260050,0.000000,0.000000,0.250000,0,0);}
.m2b_c01236{transform:matrix(0.260930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260930,0.000000,0.000000,0.250000,0,0);}
.m31_c01236{transform:matrix(0.261245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261245,0.000000,0.000000,0.250000,0,0);}
.m27_c01236{transform:matrix(0.262205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262205,0.000000,0.000000,0.250000,0,0);}
.m3c_c01236{transform:matrix(0.262735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262735,0.000000,0.000000,0.250000,0,0);}
.m3a_c01236{transform:matrix(0.266150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266150,0.000000,0.000000,0.250000,0,0);}
.m36_c01236{transform:matrix(0.266990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266990,0.000000,0.000000,0.250000,0,0);}
.m37_c01236{transform:matrix(0.270150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270150,0.000000,0.000000,0.250000,0,0);}
.m38_c01236{transform:matrix(0.270985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270985,0.000000,0.000000,0.250000,0,0);}
.m3d_c01236{transform:matrix(0.272795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272795,0.000000,0.000000,0.250000,0,0);}
.m3e_c01236{transform:matrix(0.273420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273420,0.000000,0.000000,0.250000,0,0);}
.m20_c01236{transform:matrix(0.276195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276195,0.000000,0.000000,0.250000,0,0);}
.m2e_c01236{transform:matrix(0.277640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277640,0.000000,0.000000,0.250000,0,0);}
.m39_c01236{transform:matrix(0.279060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279060,0.000000,0.000000,0.250000,0,0);}
.m28_c01236{transform:matrix(0.279560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279560,0.000000,0.000000,0.250000,0,0);}
.m34_c01236{transform:matrix(0.281545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281545,0.000000,0.000000,0.250000,0,0);}
.m2a_c01236{transform:matrix(0.299885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299885,0.000000,0.000000,0.250000,0,0);}
.m3b_c01236{transform:matrix(0.304955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304955,0.000000,0.000000,0.250000,0,0);}
.m2c_c01236{transform:matrix(0.305260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305260,0.000000,0.000000,0.250000,0,0);}
.m35_c01236{transform:matrix(0.315905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315905,0.000000,0.000000,0.250000,0,0);}
.m14_c01236{transform:matrix(2.759400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.759400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.759400,0.000000,0.000000,0.250000,0,0);}
.v0_c01236{vertical-align:0.000000px;}
.ls0_c01236{letter-spacing:0.000000px;}
.sc__c01236{text-shadow:none;}
.sc0_c01236{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__c01236{-webkit-text-stroke:0px transparent;}
.sc0_c01236{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01236{word-spacing:0.000000px;}
.fc0_c01236{color:transparent;}
.fs3_c01236{font-size:36.000000px;}
.fs2_c01236{font-size:72.000000px;}
.fs0_c01236{font-size:78.000000px;}
.fs1_c01236{font-size:84.000000px;}
.fs4_c01236{font-size:90.004500px;}
.y0_c01236{bottom:0.000000px;}
.y24_c01236{bottom:757.689000px;}
.y23_c01236{bottom:792.885000px;}
.y22_c01236{bottom:829.417500px;}
.y16_c01236{bottom:859.683000px;}
.y17_c01236{bottom:860.254500px;}
.y18_c01236{bottom:860.770500px;}
.y19_c01236{bottom:861.328500px;}
.y1a_c01236{bottom:861.537000px;}
.y1b_c01236{bottom:862.201500px;}
.y1c_c01236{bottom:862.641000px;}
.y1d_c01236{bottom:863.431500px;}
.y1e_c01236{bottom:864.649500px;}
.y1f_c01236{bottom:864.790500px;}
.y20_c01236{bottom:865.641000px;}
.y21_c01236{bottom:866.190000px;}
.y15_c01236{bottom:901.146000px;}
.yb_c01236{bottom:965.251500px;}
.yc_c01236{bottom:965.827995px;}
.yd_c01236{bottom:966.342375px;}
.ye_c01236{bottom:967.330800px;}
.yf_c01236{bottom:968.329665px;}
.y10_c01236{bottom:968.777955px;}
.y11_c01236{bottom:969.325980px;}
.y12_c01236{bottom:969.984720px;}
.y13_c01236{bottom:970.419405px;}
.y14_c01236{bottom:970.759635px;}
.ya_c01236{bottom:1008.868500px;}
.y9_c01236{bottom:1023.715500px;}
.y3_c01236{bottom:1070.016000px;}
.y4_c01236{bottom:1071.049500px;}
.y5_c01236{bottom:1071.820500px;}
.y6_c01236{bottom:1074.171000px;}
.y7_c01236{bottom:1074.960000px;}
.y8_c01236{bottom:1075.557000px;}
.y2_c01236{bottom:1111.429500px;}
.y1_c01236{bottom:1146.690000px;}
.h5_c01236{height:36.000000px;}
.h4_c01236{height:72.000000px;}
.h2_c01236{height:78.000000px;}
.h3_c01236{height:84.000000px;}
.h6_c01236{height:90.004500px;}
.h1_c01236{height:1258.500000px;}
.h0_c01236{height:1258.740000px;}
.w1_c01236{width:899.250000px;}
.w0_c01236{width:899.370000px;}
.x0_c01236{left:0.000000px;}
.x1_c01236{left:169.560000px;}
.x11_c01236{left:171.069000px;}
.x2a_c01236{left:172.530000px;}
.x2_c01236{left:226.800000px;}
.x12_c01236{left:228.718500px;}
.x3_c01236{left:268.110000px;}
.xd_c01236{left:270.618000px;}
.x13_c01236{left:280.156500px;}
.x2b_c01236{left:282.690000px;}
.xa_c01236{left:290.790000px;}
.x23_c01236{left:303.480000px;}
.x2f_c01236{left:305.640000px;}
.x1a_c01236{left:336.558000px;}
.x1b_c01236{left:357.381000px;}
.x2c_c01236{left:370.170000px;}
.x4_c01236{left:376.920000px;}
.x14_c01236{left:378.999000px;}
.x30_c01236{left:393.390000px;}
.xb_c01236{left:400.680000px;}
.xc_c01236{left:422.550000px;}
.x1c_c01236{left:423.799500px;}
.xe_c01236{left:444.976500px;}
.x24_c01236{left:446.580000px;}
.x5_c01236{left:465.750000px;}
.x1d_c01236{left:467.802000px;}
.x10_c01236{left:476.820000px;}
.xf_c01236{left:478.180500px;}
.x25_c01236{left:480.330000px;}
.x31_c01236{left:492.750000px;}
.x6_c01236{left:511.380000px;}
.x15_c01236{left:523.714500px;}
.x26_c01236{left:535.410000px;}
.x1e_c01236{left:546.912000px;}
.x2d_c01236{left:569.430000px;}
.x16_c01236{left:578.517000px;}
.x27_c01236{left:612.360000px;}
.x7_c01236{left:623.430000px;}
.x17_c01236{left:644.391000px;}
.x28_c01236{left:645.570000px;}
.x8_c01236{left:665.550000px;}
.x1f_c01236{left:668.637000px;}
.x29_c01236{left:679.860000px;}
.x20_c01236{left:682.710000px;}
.x18_c01236{left:687.859500px;}
.x19_c01236{left:721.882500px;}
.x9_c01236{left:745.200000px;}
.x21_c01236{left:767.722500px;}
.x22_c01236{left:822.613500px;}
.x2e_c01236{left:824.040000px;}
@media print{
.v0_c01236{vertical-align:0.000000pt;}
.ls0_c01236{letter-spacing:0.000000pt;}
.ws0_c01236{word-spacing:0.000000pt;}
.fs3_c01236{font-size:32.000000pt;}
.fs2_c01236{font-size:64.000000pt;}
.fs0_c01236{font-size:69.333333pt;}
.fs1_c01236{font-size:74.666667pt;}
.fs4_c01236{font-size:80.004000pt;}
.y0_c01236{bottom:0.000000pt;}
.y24_c01236{bottom:673.501333pt;}
.y23_c01236{bottom:704.786667pt;}
.y22_c01236{bottom:737.260000pt;}
.y16_c01236{bottom:764.162667pt;}
.y17_c01236{bottom:764.670667pt;}
.y18_c01236{bottom:765.129333pt;}
.y19_c01236{bottom:765.625333pt;}
.y1a_c01236{bottom:765.810667pt;}
.y1b_c01236{bottom:766.401333pt;}
.y1c_c01236{bottom:766.792000pt;}
.y1d_c01236{bottom:767.494667pt;}
.y1e_c01236{bottom:768.577333pt;}
.y1f_c01236{bottom:768.702667pt;}
.y20_c01236{bottom:769.458667pt;}
.y21_c01236{bottom:769.946667pt;}
.y15_c01236{bottom:801.018667pt;}
.yb_c01236{bottom:858.001333pt;}
.yc_c01236{bottom:858.513773pt;}
.yd_c01236{bottom:858.971000pt;}
.ye_c01236{bottom:859.849600pt;}
.yf_c01236{bottom:860.737480pt;}
.y10_c01236{bottom:861.135960pt;}
.y11_c01236{bottom:861.623093pt;}
.y12_c01236{bottom:862.208640pt;}
.y13_c01236{bottom:862.595027pt;}
.y14_c01236{bottom:862.897453pt;}
.ya_c01236{bottom:896.772000pt;}
.y9_c01236{bottom:909.969333pt;}
.y3_c01236{bottom:951.125333pt;}
.y4_c01236{bottom:952.044000pt;}
.y5_c01236{bottom:952.729333pt;}
.y6_c01236{bottom:954.818667pt;}
.y7_c01236{bottom:955.520000pt;}
.y8_c01236{bottom:956.050667pt;}
.y2_c01236{bottom:987.937333pt;}
.y1_c01236{bottom:1019.280000pt;}
.h5_c01236{height:32.000000pt;}
.h4_c01236{height:64.000000pt;}
.h2_c01236{height:69.333333pt;}
.h3_c01236{height:74.666667pt;}
.h6_c01236{height:80.004000pt;}
.h1_c01236{height:1118.666667pt;}
.h0_c01236{height:1118.880000pt;}
.w1_c01236{width:799.333333pt;}
.w0_c01236{width:799.440000pt;}
.x0_c01236{left:0.000000pt;}
.x1_c01236{left:150.720000pt;}
.x11_c01236{left:152.061333pt;}
.x2a_c01236{left:153.360000pt;}
.x2_c01236{left:201.600000pt;}
.x12_c01236{left:203.305333pt;}
.x3_c01236{left:238.320000pt;}
.xd_c01236{left:240.549333pt;}
.x13_c01236{left:249.028000pt;}
.x2b_c01236{left:251.280000pt;}
.xa_c01236{left:258.480000pt;}
.x23_c01236{left:269.760000pt;}
.x2f_c01236{left:271.680000pt;}
.x1a_c01236{left:299.162667pt;}
.x1b_c01236{left:317.672000pt;}
.x2c_c01236{left:329.040000pt;}
.x4_c01236{left:335.040000pt;}
.x14_c01236{left:336.888000pt;}
.x30_c01236{left:349.680000pt;}
.xb_c01236{left:356.160000pt;}
.xc_c01236{left:375.600000pt;}
.x1c_c01236{left:376.710667pt;}
.xe_c01236{left:395.534667pt;}
.x24_c01236{left:396.960000pt;}
.x5_c01236{left:414.000000pt;}
.x1d_c01236{left:415.824000pt;}
.x10_c01236{left:423.840000pt;}
.xf_c01236{left:425.049333pt;}
.x25_c01236{left:426.960000pt;}
.x31_c01236{left:438.000000pt;}
.x6_c01236{left:454.560000pt;}
.x15_c01236{left:465.524000pt;}
.x26_c01236{left:475.920000pt;}
.x1e_c01236{left:486.144000pt;}
.x2d_c01236{left:506.160000pt;}
.x16_c01236{left:514.237333pt;}
.x27_c01236{left:544.320000pt;}
.x7_c01236{left:554.160000pt;}
.x17_c01236{left:572.792000pt;}
.x28_c01236{left:573.840000pt;}
.x8_c01236{left:591.600000pt;}
.x1f_c01236{left:594.344000pt;}
.x29_c01236{left:604.320000pt;}
.x20_c01236{left:606.853333pt;}
.x18_c01236{left:611.430667pt;}
.x19_c01236{left:641.673333pt;}
.x9_c01236{left:662.400000pt;}
.x21_c01236{left:682.420000pt;}
.x22_c01236{left:731.212000pt;}
.x2e_c01236{left:732.480000pt;}
}





/* 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_c01237 {
    display:none;
  }
  .loading-indicator_c01237.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01237 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_c01237 { 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_c01237" -> "#page-container .classname_c01237")
 */
.pf_c01237 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01237 { /* 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_c01237.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01237 { /* 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_c01237 { /* 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_c01237 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01237 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01237 {overflow:visible;}
  }
}
.c_c01237 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01237 { /* 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_c01237:after { /* webkit #35443 */
  content: '';
}
.t_c01237:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01237 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 */
}
.__c01237 { /* 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_c01237 { /* info for Javascript */
  display:none;
}
.l_c01237 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01237 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01237 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01237: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_c01237 {
    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_c01237.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01237.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_c01237 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01237{font-family:sans-serif;visibility:hidden;}
.sc__c01237{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01237{-webkit-text-stroke:0px transparent;}
}
.y0_c01237{bottom:0.000000px;}
.h1_c01237{height:1258.500000px;}
.h0_c01237{height:1258.740000px;}
.w1_c01237{width:899.250000px;}
.w0_c01237{width:899.370000px;}
.x0_c01237{left:0.000000px;}
@media print{
.y0_c01237{bottom:0.000000pt;}
.h1_c01237{height:1118.666667pt;}
.h0_c01237{height:1118.880000pt;}
.w1_c01237{width:799.333333pt;}
.w0_c01237{width:799.440000pt;}
.x0_c01237{left:0.000000pt;}
}





/* 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_c01238 {
    display:none;
  }
  .loading-indicator_c01238.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01238 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_c01238 { 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_c01238" -> "#page-container .classname_c01238")
 */
.pf_c01238 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01238 { /* 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_c01238.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01238 { /* 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_c01238 { /* 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_c01238 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01238 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01238 {overflow:visible;}
  }
}
.c_c01238 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01238 { /* 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_c01238:after { /* webkit #35443 */
  content: '';
}
.t_c01238:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01238 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 */
}
.__c01238 { /* 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_c01238 { /* info for Javascript */
  display:none;
}
.l_c01238 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01238 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01238 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01238: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_c01238 {
    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_c01238.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01238.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_c01238 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01238{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01238;src:url('chunks/assets/font_b11a17f404e7258299fdf971.woff2')format("woff");}.ff1_c01238{font-family:ff1_c01238;line-height:1.000000;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;}
.m128_c01238{transform:matrix(0.032131,0.000932,-0.007247,0.249895,0,0);-ms-transform:matrix(0.032131,0.000932,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.032131,0.000932,-0.007247,0.249895,0,0);}
.m0_c01238{transform:matrix(0.151065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151065,0.000000,0.000000,0.250000,0,0);}
.m8c_c01238{transform:matrix(0.166097,0.001661,-0.002500,0.249988,0,0);-ms-transform:matrix(0.166097,0.001661,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.166097,0.001661,-0.002500,0.249988,0,0);}
.mdd_c01238{transform:matrix(0.173413,0.001561,-0.002250,0.249990,0,0);-ms-transform:matrix(0.173413,0.001561,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.173413,0.001561,-0.002250,0.249990,0,0);}
.md4_c01238{transform:matrix(0.173503,0.001562,-0.002250,0.249990,0,0);-ms-transform:matrix(0.173503,0.001562,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.173503,0.001562,-0.002250,0.249990,0,0);}
.md7_c01238{transform:matrix(0.174333,0.001569,-0.002250,0.249990,0,0);-ms-transform:matrix(0.174333,0.001569,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.174333,0.001569,-0.002250,0.249990,0,0);}
.mdb_c01238{transform:matrix(0.175258,0.001577,-0.002250,0.249990,0,0);-ms-transform:matrix(0.175258,0.001577,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.175258,0.001577,-0.002250,0.249990,0,0);}
.md5_c01238{transform:matrix(0.177453,0.001597,-0.002250,0.249990,0,0);-ms-transform:matrix(0.177453,0.001597,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.177453,0.001597,-0.002250,0.249990,0,0);}
.m127_c01238{transform:matrix(0.177720,0.005154,-0.007247,0.249895,0,0);-ms-transform:matrix(0.177720,0.005154,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.177720,0.005154,-0.007247,0.249895,0,0);}
.mde_c01238{transform:matrix(0.178148,0.001603,-0.002250,0.249990,0,0);-ms-transform:matrix(0.178148,0.001603,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.178148,0.001603,-0.002250,0.249990,0,0);}
.m106_c01238{transform:matrix(0.178842,0.003935,-0.005499,0.249940,0,0);-ms-transform:matrix(0.178842,0.003935,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.178842,0.003935,-0.005499,0.249940,0,0);}
.m8f_c01238{transform:matrix(0.181436,0.001814,-0.002500,0.249988,0,0);-ms-transform:matrix(0.181436,0.001814,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.181436,0.001814,-0.002500,0.249988,0,0);}
.m8a_c01238{transform:matrix(0.185226,0.001852,-0.002500,0.249988,0,0);-ms-transform:matrix(0.185226,0.001852,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.185226,0.001852,-0.002500,0.249988,0,0);}
.mdc_c01238{transform:matrix(0.190737,0.001717,-0.002250,0.249990,0,0);-ms-transform:matrix(0.190737,0.001717,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.190737,0.001717,-0.002250,0.249990,0,0);}
.m108_c01238{transform:matrix(0.191299,0.004209,-0.005499,0.249940,0,0);-ms-transform:matrix(0.191299,0.004209,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.191299,0.004209,-0.005499,0.249940,0,0);}
.mb2_c01238{transform:matrix(0.191917,0.001727,-0.002250,0.249990,0,0);-ms-transform:matrix(0.191917,0.001727,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.191917,0.001727,-0.002250,0.249990,0,0);}
.md6_c01238{transform:matrix(0.192292,0.001731,-0.002250,0.249990,0,0);-ms-transform:matrix(0.192292,0.001731,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.192292,0.001731,-0.002250,0.249990,0,0);}
.md9_c01238{transform:matrix(0.194012,0.001746,-0.002250,0.249990,0,0);-ms-transform:matrix(0.194012,0.001746,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.194012,0.001746,-0.002250,0.249990,0,0);}
.mdf_c01238{transform:matrix(0.194587,0.001751,-0.002250,0.249990,0,0);-ms-transform:matrix(0.194587,0.001751,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.194587,0.001751,-0.002250,0.249990,0,0);}
.m90_c01238{transform:matrix(0.195180,0.001952,-0.002500,0.249988,0,0);-ms-transform:matrix(0.195180,0.001952,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.195180,0.001952,-0.002500,0.249988,0,0);}
.m104_c01238{transform:matrix(0.195228,0.004295,-0.005499,0.249940,0,0);-ms-transform:matrix(0.195228,0.004295,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.195228,0.004295,-0.005499,0.249940,0,0);}
.mab_c01238{transform:matrix(0.195267,0.001757,-0.002250,0.249990,0,0);-ms-transform:matrix(0.195267,0.001757,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.195267,0.001757,-0.002250,0.249990,0,0);}
.m10_c01238{transform:matrix(0.195921,0.002743,-0.003500,0.249976,0,0);-ms-transform:matrix(0.195921,0.002743,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.195921,0.002743,-0.003500,0.249976,0,0);}
.m10b_c01238{transform:matrix(0.196317,0.004319,-0.005499,0.249940,0,0);-ms-transform:matrix(0.196317,0.004319,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.196317,0.004319,-0.005499,0.249940,0,0);}
.m11c_c01238{transform:matrix(0.196372,0.005695,-0.007247,0.249895,0,0);-ms-transform:matrix(0.196372,0.005695,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.196372,0.005695,-0.007247,0.249895,0,0);}
.m101_c01238{transform:matrix(0.196492,0.004323,-0.005499,0.249940,0,0);-ms-transform:matrix(0.196492,0.004323,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.196492,0.004323,-0.005499,0.249940,0,0);}
.mb0_c01238{transform:matrix(0.196947,0.001773,-0.002250,0.249990,0,0);-ms-transform:matrix(0.196947,0.001773,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.196947,0.001773,-0.002250,0.249990,0,0);}
.mb7_c01238{transform:matrix(0.197792,0.001780,-0.002250,0.249990,0,0);-ms-transform:matrix(0.197792,0.001780,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.197792,0.001780,-0.002250,0.249990,0,0);}
.m88_c01238{transform:matrix(0.197920,0.001979,-0.002500,0.249988,0,0);-ms-transform:matrix(0.197920,0.001979,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.197920,0.001979,-0.002500,0.249988,0,0);}
.mda_c01238{transform:matrix(0.199507,0.001796,-0.002250,0.249990,0,0);-ms-transform:matrix(0.199507,0.001796,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.199507,0.001796,-0.002250,0.249990,0,0);}
.mb3_c01238{transform:matrix(0.199712,0.001797,-0.002250,0.249990,0,0);-ms-transform:matrix(0.199712,0.001797,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.199712,0.001797,-0.002250,0.249990,0,0);}
.md8_c01238{transform:matrix(0.200237,0.001802,-0.002250,0.249990,0,0);-ms-transform:matrix(0.200237,0.001802,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.200237,0.001802,-0.002250,0.249990,0,0);}
.mbb_c01238{transform:matrix(0.200542,0.001805,-0.002250,0.249990,0,0);-ms-transform:matrix(0.200542,0.001805,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.200542,0.001805,-0.002250,0.249990,0,0);}
.m8b_c01238{transform:matrix(0.200785,0.002008,-0.002500,0.249988,0,0);-ms-transform:matrix(0.200785,0.002008,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.200785,0.002008,-0.002500,0.249988,0,0);}
.mbc_c01238{transform:matrix(0.201512,0.001814,-0.002250,0.249990,0,0);-ms-transform:matrix(0.201512,0.001814,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.201512,0.001814,-0.002250,0.249990,0,0);}
.m103_c01238{transform:matrix(0.201646,0.004436,-0.005499,0.249940,0,0);-ms-transform:matrix(0.201646,0.004436,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.201646,0.004436,-0.005499,0.249940,0,0);}
.mb9_c01238{transform:matrix(0.202062,0.001819,-0.002250,0.249990,0,0);-ms-transform:matrix(0.202062,0.001819,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.202062,0.001819,-0.002250,0.249990,0,0);}
.m2a_c01238{transform:matrix(0.204147,0.001837,-0.002250,0.249990,0,0);-ms-transform:matrix(0.204147,0.001837,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.204147,0.001837,-0.002250,0.249990,0,0);}
.ma9_c01238{transform:matrix(0.204587,0.001841,-0.002250,0.249990,0,0);-ms-transform:matrix(0.204587,0.001841,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.204587,0.001841,-0.002250,0.249990,0,0);}
.m8d_c01238{transform:matrix(0.205180,0.002052,-0.002500,0.249988,0,0);-ms-transform:matrix(0.205180,0.002052,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.205180,0.002052,-0.002500,0.249988,0,0);}
.m102_c01238{transform:matrix(0.205695,0.004525,-0.005499,0.249940,0,0);-ms-transform:matrix(0.205695,0.004525,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.205695,0.004525,-0.005499,0.249940,0,0);}
.me_c01238{transform:matrix(0.205785,0.002881,-0.003500,0.249976,0,0);-ms-transform:matrix(0.205785,0.002881,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.205785,0.002881,-0.003500,0.249976,0,0);}
.m23_c01238{transform:matrix(0.206917,0.001862,-0.002250,0.249990,0,0);-ms-transform:matrix(0.206917,0.001862,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.206917,0.001862,-0.002250,0.249990,0,0);}
.m10e_c01238{transform:matrix(0.207045,0.004555,-0.005499,0.249940,0,0);-ms-transform:matrix(0.207045,0.004555,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.207045,0.004555,-0.005499,0.249940,0,0);}
.m20_c01238{transform:matrix(0.207417,0.001867,-0.002250,0.249990,0,0);-ms-transform:matrix(0.207417,0.001867,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.207417,0.001867,-0.002250,0.249990,0,0);}
.mff_c01238{transform:matrix(0.208042,0.003121,-0.003750,0.249972,0,0);-ms-transform:matrix(0.208042,0.003121,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.208042,0.003121,-0.003750,0.249972,0,0);}
.m89_c01238{transform:matrix(0.208075,0.002081,-0.002500,0.249988,0,0);-ms-transform:matrix(0.208075,0.002081,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.208075,0.002081,-0.002500,0.249988,0,0);}
.m8e_c01238{transform:matrix(0.208210,0.002082,-0.002500,0.249988,0,0);-ms-transform:matrix(0.208210,0.002082,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.208210,0.002082,-0.002500,0.249988,0,0);}
.m31_c01238{transform:matrix(0.209082,0.001882,-0.002250,0.249990,0,0);-ms-transform:matrix(0.209082,0.001882,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.209082,0.001882,-0.002250,0.249990,0,0);}
.me1_c01238{transform:matrix(0.209212,0.001883,-0.002250,0.249990,0,0);-ms-transform:matrix(0.209212,0.001883,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.209212,0.001883,-0.002250,0.249990,0,0);}
.mc_c01238{transform:matrix(0.209529,0.002933,-0.003500,0.249976,0,0);-ms-transform:matrix(0.209529,0.002933,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.209529,0.002933,-0.003500,0.249976,0,0);}
.maa_c01238{transform:matrix(0.210371,0.001893,-0.002250,0.249990,0,0);-ms-transform:matrix(0.210371,0.001893,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.210371,0.001893,-0.002250,0.249990,0,0);}
.m10d_c01238{transform:matrix(0.210559,0.004632,-0.005499,0.249940,0,0);-ms-transform:matrix(0.210559,0.004632,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.210559,0.004632,-0.005499,0.249940,0,0);}
.mac_c01238{transform:matrix(0.210661,0.001896,-0.002250,0.249990,0,0);-ms-transform:matrix(0.210661,0.001896,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.210661,0.001896,-0.002250,0.249990,0,0);}
.m21_c01238{transform:matrix(0.210681,0.001896,-0.002250,0.249990,0,0);-ms-transform:matrix(0.210681,0.001896,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.210681,0.001896,-0.002250,0.249990,0,0);}
.mce_c01238{transform:matrix(0.211016,0.001899,-0.002250,0.249990,0,0);-ms-transform:matrix(0.211016,0.001899,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.211016,0.001899,-0.002250,0.249990,0,0);}
.mcd_c01238{transform:matrix(0.212941,0.001916,-0.002250,0.249990,0,0);-ms-transform:matrix(0.212941,0.001916,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.212941,0.001916,-0.002250,0.249990,0,0);}
.m10a_c01238{transform:matrix(0.213453,0.004696,-0.005499,0.249940,0,0);-ms-transform:matrix(0.213453,0.004696,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.213453,0.004696,-0.005499,0.249940,0,0);}
.m50_c01238{transform:matrix(0.213711,0.001923,-0.002250,0.249990,0,0);-ms-transform:matrix(0.213711,0.001923,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.213711,0.001923,-0.002250,0.249990,0,0);}
.m105_c01238{transform:matrix(0.213713,0.004702,-0.005499,0.249940,0,0);-ms-transform:matrix(0.213713,0.004702,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.213713,0.004702,-0.005499,0.249940,0,0);}
.mfe_c01238{transform:matrix(0.213961,0.003209,-0.003750,0.249972,0,0);-ms-transform:matrix(0.213961,0.003209,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.213961,0.003209,-0.003750,0.249972,0,0);}
.me5_c01238{transform:matrix(0.213981,0.001926,-0.002250,0.249990,0,0);-ms-transform:matrix(0.213981,0.001926,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.213981,0.001926,-0.002250,0.249990,0,0);}
.m120_c01238{transform:matrix(0.214400,0.006218,-0.007247,0.249895,0,0);-ms-transform:matrix(0.214400,0.006218,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.214400,0.006218,-0.007247,0.249895,0,0);}
.m10f_c01238{transform:matrix(0.215173,0.004734,-0.005499,0.249940,0,0);-ms-transform:matrix(0.215173,0.004734,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.215173,0.004734,-0.005499,0.249940,0,0);}
.mb6_c01238{transform:matrix(0.215506,0.001940,-0.002250,0.249990,0,0);-ms-transform:matrix(0.215506,0.001940,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.215506,0.001940,-0.002250,0.249990,0,0);}
.m4b_c01238{transform:matrix(0.215746,0.001942,-0.002250,0.249990,0,0);-ms-transform:matrix(0.215746,0.001942,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.215746,0.001942,-0.002250,0.249990,0,0);}
.m70_c01238{transform:matrix(0.216408,0.001731,-0.002000,0.249992,0,0);-ms-transform:matrix(0.216408,0.001731,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.216408,0.001731,-0.002000,0.249992,0,0);}
.m17_c01238{transform:matrix(0.216716,0.001950,-0.002250,0.249990,0,0);-ms-transform:matrix(0.216716,0.001950,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.216716,0.001950,-0.002250,0.249990,0,0);}
.mcb_c01238{transform:matrix(0.216941,0.001952,-0.002250,0.249990,0,0);-ms-transform:matrix(0.216941,0.001952,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.216941,0.001952,-0.002250,0.249990,0,0);}
.m2e_c01238{transform:matrix(0.217921,0.001961,-0.002250,0.249990,0,0);-ms-transform:matrix(0.217921,0.001961,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.217921,0.001961,-0.002250,0.249990,0,0);}
.md2_c01238{transform:matrix(0.218111,0.001963,-0.002250,0.249990,0,0);-ms-transform:matrix(0.218111,0.001963,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.218111,0.001963,-0.002250,0.249990,0,0);}
.m26_c01238{transform:matrix(0.218306,0.001965,-0.002250,0.249990,0,0);-ms-transform:matrix(0.218306,0.001965,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.218306,0.001965,-0.002250,0.249990,0,0);}
.m109_c01238{transform:matrix(0.218497,0.004807,-0.005499,0.249940,0,0);-ms-transform:matrix(0.218497,0.004807,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.218497,0.004807,-0.005499,0.249940,0,0);}
.m118_c01238{transform:matrix(0.218658,0.006341,-0.007247,0.249895,0,0);-ms-transform:matrix(0.218658,0.006341,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.218658,0.006341,-0.007247,0.249895,0,0);}
.mf2_c01238{transform:matrix(0.218805,0.003282,-0.003750,0.249972,0,0);-ms-transform:matrix(0.218805,0.003282,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.218805,0.003282,-0.003750,0.249972,0,0);}
.m2c_c01238{transform:matrix(0.219336,0.001974,-0.002250,0.249990,0,0);-ms-transform:matrix(0.219336,0.001974,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.219336,0.001974,-0.002250,0.249990,0,0);}
.m114_c01238{transform:matrix(0.219857,0.004837,-0.005499,0.249940,0,0);-ms-transform:matrix(0.219857,0.004837,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.219857,0.004837,-0.005499,0.249940,0,0);}
.m11b_c01238{transform:matrix(0.220277,0.006388,-0.007247,0.249895,0,0);-ms-transform:matrix(0.220277,0.006388,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.220277,0.006388,-0.007247,0.249895,0,0);}
.m72_c01238{transform:matrix(0.220433,0.001763,-0.002000,0.249992,0,0);-ms-transform:matrix(0.220433,0.001763,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.220433,0.001763,-0.002000,0.249992,0,0);}
.m29_c01238{transform:matrix(0.220551,0.001985,-0.002250,0.249990,0,0);-ms-transform:matrix(0.220551,0.001985,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.220551,0.001985,-0.002250,0.249990,0,0);}
.m28_c01238{transform:matrix(0.220786,0.001987,-0.002250,0.249990,0,0);-ms-transform:matrix(0.220786,0.001987,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.220786,0.001987,-0.002250,0.249990,0,0);}
.m6d_c01238{transform:matrix(0.220793,0.001766,-0.002000,0.249992,0,0);-ms-transform:matrix(0.220793,0.001766,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.220793,0.001766,-0.002000,0.249992,0,0);}
.mfd_c01238{transform:matrix(0.220880,0.003313,-0.003750,0.249972,0,0);-ms-transform:matrix(0.220880,0.003313,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.220880,0.003313,-0.003750,0.249972,0,0);}
.m6f_c01238{transform:matrix(0.221033,0.001768,-0.002000,0.249992,0,0);-ms-transform:matrix(0.221033,0.001768,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.221033,0.001768,-0.002000,0.249992,0,0);}
.m91_c01238{transform:matrix(0.221229,0.002212,-0.002500,0.249988,0,0);-ms-transform:matrix(0.221229,0.002212,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.221229,0.002212,-0.002500,0.249988,0,0);}
.m24_c01238{transform:matrix(0.221236,0.001991,-0.002250,0.249990,0,0);-ms-transform:matrix(0.221236,0.001991,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.221236,0.001991,-0.002250,0.249990,0,0);}
.mb5_c01238{transform:matrix(0.221831,0.001996,-0.002250,0.249990,0,0);-ms-transform:matrix(0.221831,0.001996,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.221831,0.001996,-0.002250,0.249990,0,0);}
.me3_c01238{transform:matrix(0.221986,0.001998,-0.002250,0.249990,0,0);-ms-transform:matrix(0.221986,0.001998,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.221986,0.001998,-0.002250,0.249990,0,0);}
.mf7_c01238{transform:matrix(0.222465,0.003337,-0.003750,0.249972,0,0);-ms-transform:matrix(0.222465,0.003337,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.222465,0.003337,-0.003750,0.249972,0,0);}
.mca_c01238{transform:matrix(0.222641,0.002004,-0.002250,0.249990,0,0);-ms-transform:matrix(0.222641,0.002004,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.222641,0.002004,-0.002250,0.249990,0,0);}
.ma8_c01238{transform:matrix(0.222726,0.002005,-0.002250,0.249990,0,0);-ms-transform:matrix(0.222726,0.002005,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.222726,0.002005,-0.002250,0.249990,0,0);}
.ma0_c01238{transform:matrix(0.222836,0.002006,-0.002250,0.249990,0,0);-ms-transform:matrix(0.222836,0.002006,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.222836,0.002006,-0.002250,0.249990,0,0);}
.mb4_c01238{transform:matrix(0.222891,0.002006,-0.002250,0.249990,0,0);-ms-transform:matrix(0.222891,0.002006,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.222891,0.002006,-0.002250,0.249990,0,0);}
.m4a_c01238{transform:matrix(0.222921,0.002006,-0.002250,0.249990,0,0);-ms-transform:matrix(0.222921,0.002006,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.222921,0.002006,-0.002250,0.249990,0,0);}
.m107_c01238{transform:matrix(0.222996,0.004906,-0.005499,0.249940,0,0);-ms-transform:matrix(0.222996,0.004906,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.222996,0.004906,-0.005499,0.249940,0,0);}
.m100_c01238{transform:matrix(0.223300,0.003349,-0.003750,0.249972,0,0);-ms-transform:matrix(0.223300,0.003349,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.223300,0.003349,-0.003750,0.249972,0,0);}
.m74_c01238{transform:matrix(0.223508,0.001788,-0.002000,0.249992,0,0);-ms-transform:matrix(0.223508,0.001788,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.223508,0.001788,-0.002000,0.249992,0,0);}
.mc7_c01238{transform:matrix(0.223736,0.002014,-0.002250,0.249990,0,0);-ms-transform:matrix(0.223736,0.002014,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.223736,0.002014,-0.002250,0.249990,0,0);}
.m121_c01238{transform:matrix(0.223806,0.006490,-0.007247,0.249895,0,0);-ms-transform:matrix(0.223806,0.006490,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.223806,0.006490,-0.007247,0.249895,0,0);}
.m48_c01238{transform:matrix(0.223876,0.002015,-0.002250,0.249990,0,0);-ms-transform:matrix(0.223876,0.002015,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.223876,0.002015,-0.002250,0.249990,0,0);}
.mc9_c01238{transform:matrix(0.223886,0.002015,-0.002250,0.249990,0,0);-ms-transform:matrix(0.223886,0.002015,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.223886,0.002015,-0.002250,0.249990,0,0);}
.mae_c01238{transform:matrix(0.223926,0.002015,-0.002250,0.249990,0,0);-ms-transform:matrix(0.223926,0.002015,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.223926,0.002015,-0.002250,0.249990,0,0);}
.maf_c01238{transform:matrix(0.223966,0.002016,-0.002250,0.249990,0,0);-ms-transform:matrix(0.223966,0.002016,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.223966,0.002016,-0.002250,0.249990,0,0);}
.mad_c01238{transform:matrix(0.224011,0.002016,-0.002250,0.249990,0,0);-ms-transform:matrix(0.224011,0.002016,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.224011,0.002016,-0.002250,0.249990,0,0);}
.m13_c01238{transform:matrix(0.224456,0.002020,-0.002250,0.249990,0,0);-ms-transform:matrix(0.224456,0.002020,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.224456,0.002020,-0.002250,0.249990,0,0);}
.m11_c01238{transform:matrix(0.224988,0.003150,-0.003500,0.249976,0,0);-ms-transform:matrix(0.224988,0.003150,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.224988,0.003150,-0.003500,0.249976,0,0);}
.mc8_c01238{transform:matrix(0.225056,0.002026,-0.002250,0.249990,0,0);-ms-transform:matrix(0.225056,0.002026,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.225056,0.002026,-0.002250,0.249990,0,0);}
.m2b_c01238{transform:matrix(0.225311,0.002028,-0.002250,0.249990,0,0);-ms-transform:matrix(0.225311,0.002028,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.225311,0.002028,-0.002250,0.249990,0,0);}
.m42_c01238{transform:matrix(0.226016,0.002034,-0.002250,0.249990,0,0);-ms-transform:matrix(0.226016,0.002034,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.226016,0.002034,-0.002250,0.249990,0,0);}
.mea_c01238{transform:matrix(0.226040,0.003391,-0.003750,0.249972,0,0);-ms-transform:matrix(0.226040,0.003391,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.226040,0.003391,-0.003750,0.249972,0,0);}
.mba_c01238{transform:matrix(0.226596,0.002039,-0.002250,0.249990,0,0);-ms-transform:matrix(0.226596,0.002039,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.226596,0.002039,-0.002250,0.249990,0,0);}
.mb8_c01238{transform:matrix(0.226761,0.002041,-0.002250,0.249990,0,0);-ms-transform:matrix(0.226761,0.002041,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.226761,0.002041,-0.002250,0.249990,0,0);}
.m11e_c01238{transform:matrix(0.226780,0.006577,-0.007247,0.249895,0,0);-ms-transform:matrix(0.226780,0.006577,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.226780,0.006577,-0.007247,0.249895,0,0);}
.m16_c01238{transform:matrix(0.227096,0.002044,-0.002250,0.249990,0,0);-ms-transform:matrix(0.227096,0.002044,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.227096,0.002044,-0.002250,0.249990,0,0);}
.mf_c01238{transform:matrix(0.227273,0.003182,-0.003500,0.249976,0,0);-ms-transform:matrix(0.227273,0.003182,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.227273,0.003182,-0.003500,0.249976,0,0);}
.m113_c01238{transform:matrix(0.228140,0.005019,-0.005499,0.249940,0,0);-ms-transform:matrix(0.228140,0.005019,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.228140,0.005019,-0.005499,0.249940,0,0);}
.m9e_c01238{transform:matrix(0.228621,0.002058,-0.002250,0.249990,0,0);-ms-transform:matrix(0.228621,0.002058,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.228621,0.002058,-0.002250,0.249990,0,0);}
.m5d_c01238{transform:matrix(0.229181,0.002521,-0.002750,0.249985,0,0);-ms-transform:matrix(0.229181,0.002521,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.229181,0.002521,-0.002750,0.249985,0,0);}
.m51_c01238{transform:matrix(0.229196,0.002063,-0.002250,0.249990,0,0);-ms-transform:matrix(0.229196,0.002063,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.229196,0.002063,-0.002250,0.249990,0,0);}
.mcf_c01238{transform:matrix(0.229201,0.002063,-0.002250,0.249990,0,0);-ms-transform:matrix(0.229201,0.002063,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.229201,0.002063,-0.002250,0.249990,0,0);}
.m2d_c01238{transform:matrix(0.229711,0.002067,-0.002250,0.249990,0,0);-ms-transform:matrix(0.229711,0.002067,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.229711,0.002067,-0.002250,0.249990,0,0);}
.m4c_c01238{transform:matrix(0.229791,0.002068,-0.002250,0.249990,0,0);-ms-transform:matrix(0.229791,0.002068,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.229791,0.002068,-0.002250,0.249990,0,0);}
.m47_c01238{transform:matrix(0.229941,0.002069,-0.002250,0.249990,0,0);-ms-transform:matrix(0.229941,0.002069,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.229941,0.002069,-0.002250,0.249990,0,0);}
.m75_c01238{transform:matrix(0.230123,0.001841,-0.002000,0.249992,0,0);-ms-transform:matrix(0.230123,0.001841,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.230123,0.001841,-0.002000,0.249992,0,0);}
.mfb_c01238{transform:matrix(0.230419,0.003456,-0.003750,0.249972,0,0);-ms-transform:matrix(0.230419,0.003456,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.230419,0.003456,-0.003750,0.249972,0,0);}
.m11f_c01238{transform:matrix(0.230523,0.006685,-0.007247,0.249895,0,0);-ms-transform:matrix(0.230523,0.006685,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.230523,0.006685,-0.007247,0.249895,0,0);}
.m12_c01238{transform:matrix(0.230552,0.003228,-0.003500,0.249976,0,0);-ms-transform:matrix(0.230552,0.003228,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.230552,0.003228,-0.003500,0.249976,0,0);}
.md1_c01238{transform:matrix(0.230786,0.002077,-0.002250,0.249990,0,0);-ms-transform:matrix(0.230786,0.002077,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.230786,0.002077,-0.002250,0.249990,0,0);}
.m76_c01238{transform:matrix(0.230798,0.001846,-0.002000,0.249992,0,0);-ms-transform:matrix(0.230798,0.001846,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.230798,0.001846,-0.002000,0.249992,0,0);}
.ma6_c01238{transform:matrix(0.230906,0.002078,-0.002250,0.249990,0,0);-ms-transform:matrix(0.230906,0.002078,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.230906,0.002078,-0.002250,0.249990,0,0);}
.m4e_c01238{transform:matrix(0.231191,0.002081,-0.002250,0.249990,0,0);-ms-transform:matrix(0.231191,0.002081,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.231191,0.002081,-0.002250,0.249990,0,0);}
.mb1_c01238{transform:matrix(0.231351,0.002082,-0.002250,0.249990,0,0);-ms-transform:matrix(0.231351,0.002082,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.231351,0.002082,-0.002250,0.249990,0,0);}
.mf9_c01238{transform:matrix(0.231439,0.003472,-0.003750,0.249972,0,0);-ms-transform:matrix(0.231439,0.003472,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.231439,0.003472,-0.003750,0.249972,0,0);}
.m117_c01238{transform:matrix(0.231474,0.005092,-0.005499,0.249940,0,0);-ms-transform:matrix(0.231474,0.005092,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.231474,0.005092,-0.005499,0.249940,0,0);}
.mcc_c01238{transform:matrix(0.231546,0.002084,-0.002250,0.249990,0,0);-ms-transform:matrix(0.231546,0.002084,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.231546,0.002084,-0.002250,0.249990,0,0);}
.m112_c01238{transform:matrix(0.232264,0.005110,-0.005499,0.249940,0,0);-ms-transform:matrix(0.232264,0.005110,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.232264,0.005110,-0.005499,0.249940,0,0);}
.m7b_c01238{transform:matrix(0.232548,0.001860,-0.002000,0.249992,0,0);-ms-transform:matrix(0.232548,0.001860,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.232548,0.001860,-0.002000,0.249992,0,0);}
.m94_c01238{transform:matrix(0.232973,0.002330,-0.002500,0.249988,0,0);-ms-transform:matrix(0.232973,0.002330,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.232973,0.002330,-0.002500,0.249988,0,0);}
.m2f_c01238{transform:matrix(0.232996,0.002097,-0.002250,0.249990,0,0);-ms-transform:matrix(0.232996,0.002097,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.232996,0.002097,-0.002250,0.249990,0,0);}
.m27_c01238{transform:matrix(0.233321,0.002100,-0.002250,0.249990,0,0);-ms-transform:matrix(0.233321,0.002100,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.233321,0.002100,-0.002250,0.249990,0,0);}
.m40_c01238{transform:matrix(0.233626,0.002103,-0.002250,0.249990,0,0);-ms-transform:matrix(0.233626,0.002103,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.233626,0.002103,-0.002250,0.249990,0,0);}
.m25_c01238{transform:matrix(0.233926,0.002105,-0.002250,0.249990,0,0);-ms-transform:matrix(0.233926,0.002105,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.233926,0.002105,-0.002250,0.249990,0,0);}
.me4_c01238{transform:matrix(0.233981,0.002106,-0.002250,0.249990,0,0);-ms-transform:matrix(0.233981,0.002106,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.233981,0.002106,-0.002250,0.249990,0,0);}
.mf3_c01238{transform:matrix(0.234314,0.003515,-0.003750,0.249972,0,0);-ms-transform:matrix(0.234314,0.003515,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.234314,0.003515,-0.003750,0.249972,0,0);}
.md_c01238{transform:matrix(0.234457,0.003282,-0.003500,0.249976,0,0);-ms-transform:matrix(0.234457,0.003282,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.234457,0.003282,-0.003500,0.249976,0,0);}
.m35_c01238{transform:matrix(0.234775,0.002113,-0.002250,0.249990,0,0);-ms-transform:matrix(0.234775,0.002113,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.234775,0.002113,-0.002250,0.249990,0,0);}
.ma5_c01238{transform:matrix(0.234980,0.002115,-0.002250,0.249990,0,0);-ms-transform:matrix(0.234980,0.002115,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.234980,0.002115,-0.002250,0.249990,0,0);}
.m6e_c01238{transform:matrix(0.235022,0.001880,-0.002000,0.249992,0,0);-ms-transform:matrix(0.235022,0.001880,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.235022,0.001880,-0.002000,0.249992,0,0);}
.m22_c01238{transform:matrix(0.235205,0.002117,-0.002250,0.249990,0,0);-ms-transform:matrix(0.235205,0.002117,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.235205,0.002117,-0.002250,0.249990,0,0);}
.m119_c01238{transform:matrix(0.235671,0.006834,-0.007247,0.249895,0,0);-ms-transform:matrix(0.235671,0.006834,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.235671,0.006834,-0.007247,0.249895,0,0);}
.m3d_c01238{transform:matrix(0.235745,0.002122,-0.002250,0.249990,0,0);-ms-transform:matrix(0.235745,0.002122,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.235745,0.002122,-0.002250,0.249990,0,0);}
.m115_c01238{transform:matrix(0.235843,0.005189,-0.005499,0.249940,0,0);-ms-transform:matrix(0.235843,0.005189,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.235843,0.005189,-0.005499,0.249940,0,0);}
.m110_c01238{transform:matrix(0.236278,0.005198,-0.005499,0.249940,0,0);-ms-transform:matrix(0.236278,0.005198,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.236278,0.005198,-0.005499,0.249940,0,0);}
.me2_c01238{transform:matrix(0.236320,0.002127,-0.002250,0.249990,0,0);-ms-transform:matrix(0.236320,0.002127,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.236320,0.002127,-0.002250,0.249990,0,0);}
.m5c_c01238{transform:matrix(0.236431,0.002601,-0.002750,0.249985,0,0);-ms-transform:matrix(0.236431,0.002601,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.236431,0.002601,-0.002750,0.249985,0,0);}
.m111_c01238{transform:matrix(0.236838,0.005210,-0.005499,0.249940,0,0);-ms-transform:matrix(0.236838,0.005210,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.236838,0.005210,-0.005499,0.249940,0,0);}
.m61_c01238{transform:matrix(0.237017,0.001896,-0.002000,0.249992,0,0);-ms-transform:matrix(0.237017,0.001896,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.237017,0.001896,-0.002000,0.249992,0,0);}
.m38_c01238{transform:matrix(0.237965,0.002142,-0.002250,0.249990,0,0);-ms-transform:matrix(0.237965,0.002142,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.237965,0.002142,-0.002250,0.249990,0,0);}
.m57_c01238{transform:matrix(0.238175,0.002144,-0.002250,0.249990,0,0);-ms-transform:matrix(0.238175,0.002144,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.238175,0.002144,-0.002250,0.249990,0,0);}
.m11a_c01238{transform:matrix(0.238210,0.006908,-0.007247,0.249895,0,0);-ms-transform:matrix(0.238210,0.006908,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.238210,0.006908,-0.007247,0.249895,0,0);}
.m1b_c01238{transform:matrix(0.238255,0.002144,-0.002250,0.249990,0,0);-ms-transform:matrix(0.238255,0.002144,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.238255,0.002144,-0.002250,0.249990,0,0);}
.m3f_c01238{transform:matrix(0.238375,0.002145,-0.002250,0.249990,0,0);-ms-transform:matrix(0.238375,0.002145,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.238375,0.002145,-0.002250,0.249990,0,0);}
.ma_c01238{transform:matrix(0.238412,0.003338,-0.003500,0.249976,0,0);-ms-transform:matrix(0.238412,0.003338,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.238412,0.003338,-0.003500,0.249976,0,0);}
.m52_c01238{transform:matrix(0.238640,0.002148,-0.002250,0.249990,0,0);-ms-transform:matrix(0.238640,0.002148,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.238640,0.002148,-0.002250,0.249990,0,0);}
.ma3_c01238{transform:matrix(0.239115,0.002152,-0.002250,0.249990,0,0);-ms-transform:matrix(0.239115,0.002152,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.239115,0.002152,-0.002250,0.249990,0,0);}
.mb_c01238{transform:matrix(0.239467,0.003353,-0.003500,0.249976,0,0);-ms-transform:matrix(0.239467,0.003353,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.239467,0.003353,-0.003500,0.249976,0,0);}
.m32_c01238{transform:matrix(0.239910,0.002159,-0.002250,0.249990,0,0);-ms-transform:matrix(0.239910,0.002159,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.239910,0.002159,-0.002250,0.249990,0,0);}
.mbf_c01238{transform:matrix(0.240145,0.002161,-0.002250,0.249990,0,0);-ms-transform:matrix(0.240145,0.002161,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.240145,0.002161,-0.002250,0.249990,0,0);}
.m11d_c01238{transform:matrix(0.240759,0.006982,-0.007247,0.249895,0,0);-ms-transform:matrix(0.240759,0.006982,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.240759,0.006982,-0.007247,0.249895,0,0);}
.m44_c01238{transform:matrix(0.241115,0.002170,-0.002250,0.249990,0,0);-ms-transform:matrix(0.241115,0.002170,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.241115,0.002170,-0.002250,0.249990,0,0);}
.m30_c01238{transform:matrix(0.241190,0.002171,-0.002250,0.249990,0,0);-ms-transform:matrix(0.241190,0.002171,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.241190,0.002171,-0.002250,0.249990,0,0);}
.m7f_c01238{transform:matrix(0.241403,0.002414,-0.002500,0.249988,0,0);-ms-transform:matrix(0.241403,0.002414,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.241403,0.002414,-0.002500,0.249988,0,0);}
.me0_c01238{transform:matrix(0.241675,0.002175,-0.002250,0.249990,0,0);-ms-transform:matrix(0.241675,0.002175,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.241675,0.002175,-0.002250,0.249990,0,0);}
.m14_c01238{transform:matrix(0.242320,0.002181,-0.002250,0.249990,0,0);-ms-transform:matrix(0.242320,0.002181,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.242320,0.002181,-0.002250,0.249990,0,0);}
.m65_c01238{transform:matrix(0.242607,0.001941,-0.002000,0.249992,0,0);-ms-transform:matrix(0.242607,0.001941,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.242607,0.001941,-0.002000,0.249992,0,0);}
.med_c01238{transform:matrix(0.242718,0.003641,-0.003750,0.249972,0,0);-ms-transform:matrix(0.242718,0.003641,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.242718,0.003641,-0.003750,0.249972,0,0);}
.ma2_c01238{transform:matrix(0.242765,0.002185,-0.002250,0.249990,0,0);-ms-transform:matrix(0.242765,0.002185,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.242765,0.002185,-0.002250,0.249990,0,0);}
.mf6_c01238{transform:matrix(0.242788,0.003642,-0.003750,0.249972,0,0);-ms-transform:matrix(0.242788,0.003642,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.242788,0.003642,-0.003750,0.249972,0,0);}
.m73_c01238{transform:matrix(0.242837,0.001943,-0.002000,0.249992,0,0);-ms-transform:matrix(0.242837,0.001943,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.242837,0.001943,-0.002000,0.249992,0,0);}
.md0_c01238{transform:matrix(0.243395,0.002191,-0.002250,0.249990,0,0);-ms-transform:matrix(0.243395,0.002191,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.243395,0.002191,-0.002250,0.249990,0,0);}
.ma1_c01238{transform:matrix(0.243440,0.002191,-0.002250,0.249990,0,0);-ms-transform:matrix(0.243440,0.002191,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.243440,0.002191,-0.002250,0.249990,0,0);}
.m71_c01238{transform:matrix(0.243617,0.001949,-0.002000,0.249992,0,0);-ms-transform:matrix(0.243617,0.001949,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.243617,0.001949,-0.002000,0.249992,0,0);}
.m1f_c01238{transform:matrix(0.243660,0.002193,-0.002250,0.249990,0,0);-ms-transform:matrix(0.243660,0.002193,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.243660,0.002193,-0.002250,0.249990,0,0);}
.m36_c01238{transform:matrix(0.243760,0.002194,-0.002250,0.249990,0,0);-ms-transform:matrix(0.243760,0.002194,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.243760,0.002194,-0.002250,0.249990,0,0);}
.m116_c01238{transform:matrix(0.244086,0.005370,-0.005499,0.249940,0,0);-ms-transform:matrix(0.244086,0.005370,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.244086,0.005370,-0.005499,0.249940,0,0);}
.m78_c01238{transform:matrix(0.244247,0.001954,-0.002000,0.249992,0,0);-ms-transform:matrix(0.244247,0.001954,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.244247,0.001954,-0.002000,0.249992,0,0);}
.mf5_c01238{transform:matrix(0.244742,0.003671,-0.003750,0.249972,0,0);-ms-transform:matrix(0.244742,0.003671,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.244742,0.003671,-0.003750,0.249972,0,0);}
.m1a_c01238{transform:matrix(0.244755,0.002203,-0.002250,0.249990,0,0);-ms-transform:matrix(0.244755,0.002203,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.244755,0.002203,-0.002250,0.249990,0,0);}
.m4f_c01238{transform:matrix(0.245195,0.002207,-0.002250,0.249990,0,0);-ms-transform:matrix(0.245195,0.002207,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.245195,0.002207,-0.002250,0.249990,0,0);}
.m60_c01238{transform:matrix(0.247242,0.001978,-0.002000,0.249992,0,0);-ms-transform:matrix(0.247242,0.001978,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.247242,0.001978,-0.002000,0.249992,0,0);}
.m5a_c01238{transform:matrix(0.247450,0.002722,-0.002750,0.249985,0,0);-ms-transform:matrix(0.247450,0.002722,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.247450,0.002722,-0.002750,0.249985,0,0);}
.m43_c01238{transform:matrix(0.247620,0.002229,-0.002250,0.249990,0,0);-ms-transform:matrix(0.247620,0.002229,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.247620,0.002229,-0.002250,0.249990,0,0);}
.m81_c01238{transform:matrix(0.248293,0.002483,-0.002500,0.249988,0,0);-ms-transform:matrix(0.248293,0.002483,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.248293,0.002483,-0.002500,0.249988,0,0);}
.mfa_c01238{transform:matrix(0.249632,0.003744,-0.003750,0.249972,0,0);-ms-transform:matrix(0.249632,0.003744,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.249632,0.003744,-0.003750,0.249972,0,0);}
.mf1_c01238{transform:matrix(0.249917,0.003749,-0.003750,0.249972,0,0);-ms-transform:matrix(0.249917,0.003749,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.249917,0.003749,-0.003750,0.249972,0,0);}
.m3_c01238{transform:matrix(0.249932,0.003749,-0.003750,0.249972,0,0);-ms-transform:matrix(0.249932,0.003749,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.249932,0.003749,-0.003750,0.249972,0,0);}
.m66_c01238{transform:matrix(0.250382,0.002003,-0.002000,0.249992,0,0);-ms-transform:matrix(0.250382,0.002003,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.250382,0.002003,-0.002000,0.249992,0,0);}
.m7e_c01238{transform:matrix(0.250677,0.002507,-0.002500,0.249988,0,0);-ms-transform:matrix(0.250677,0.002507,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.250677,0.002507,-0.002500,0.249988,0,0);}
.m5f_c01238{transform:matrix(0.250750,0.002758,-0.002750,0.249985,0,0);-ms-transform:matrix(0.250750,0.002758,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.250750,0.002758,-0.002750,0.249985,0,0);}
.mc4_c01238{transform:matrix(0.250940,0.002258,-0.002250,0.249990,0,0);-ms-transform:matrix(0.250940,0.002258,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.250940,0.002258,-0.002250,0.249990,0,0);}
.mf8_c01238{transform:matrix(0.251047,0.003766,-0.003750,0.249972,0,0);-ms-transform:matrix(0.251047,0.003766,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.251047,0.003766,-0.003750,0.249972,0,0);}
.m99_c01238{transform:matrix(0.251232,0.002512,-0.002500,0.249988,0,0);-ms-transform:matrix(0.251232,0.002512,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.251232,0.002512,-0.002500,0.249988,0,0);}
.m9a_c01238{transform:matrix(0.251742,0.002517,-0.002500,0.249988,0,0);-ms-transform:matrix(0.251742,0.002517,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.251742,0.002517,-0.002500,0.249988,0,0);}
.m62_c01238{transform:matrix(0.251747,0.002014,-0.002000,0.249992,0,0);-ms-transform:matrix(0.251747,0.002014,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.251747,0.002014,-0.002000,0.249992,0,0);}
.mc6_c01238{transform:matrix(0.252540,0.002273,-0.002250,0.249990,0,0);-ms-transform:matrix(0.252540,0.002273,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.252540,0.002273,-0.002250,0.249990,0,0);}
.m37_c01238{transform:matrix(0.253350,0.002280,-0.002250,0.249990,0,0);-ms-transform:matrix(0.253350,0.002280,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.253350,0.002280,-0.002250,0.249990,0,0);}
.mf0_c01238{transform:matrix(0.254066,0.003811,-0.003750,0.249972,0,0);-ms-transform:matrix(0.254066,0.003811,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.254066,0.003811,-0.003750,0.249972,0,0);}
.m4_c01238{transform:matrix(0.254626,0.003819,-0.003750,0.249972,0,0);-ms-transform:matrix(0.254626,0.003819,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.254626,0.003819,-0.003750,0.249972,0,0);}
.m45_c01238{transform:matrix(0.255005,0.002295,-0.002250,0.249990,0,0);-ms-transform:matrix(0.255005,0.002295,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.255005,0.002295,-0.002250,0.249990,0,0);}
.mef_c01238{transform:matrix(0.255026,0.003825,-0.003750,0.249972,0,0);-ms-transform:matrix(0.255026,0.003825,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.255026,0.003825,-0.003750,0.249972,0,0);}
.mc1_c01238{transform:matrix(0.255045,0.002295,-0.002250,0.249990,0,0);-ms-transform:matrix(0.255045,0.002295,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.255045,0.002295,-0.002250,0.249990,0,0);}
.m4d_c01238{transform:matrix(0.255140,0.002296,-0.002250,0.249990,0,0);-ms-transform:matrix(0.255140,0.002296,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.255140,0.002296,-0.002250,0.249990,0,0);}
.mf4_c01238{transform:matrix(0.255226,0.003828,-0.003750,0.249972,0,0);-ms-transform:matrix(0.255226,0.003828,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.255226,0.003828,-0.003750,0.249972,0,0);}
.m97_c01238{transform:matrix(0.255427,0.002554,-0.002500,0.249988,0,0);-ms-transform:matrix(0.255427,0.002554,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.255427,0.002554,-0.002500,0.249988,0,0);}
.m96_c01238{transform:matrix(0.255752,0.002558,-0.002500,0.249988,0,0);-ms-transform:matrix(0.255752,0.002558,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.255752,0.002558,-0.002500,0.249988,0,0);}
.m10c_c01238{transform:matrix(0.255948,0.005631,-0.005499,0.249940,0,0);-ms-transform:matrix(0.255948,0.005631,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.255948,0.005631,-0.005499,0.249940,0,0);}
.m12a_c01238{transform:matrix(0.256172,0.003074,-0.003000,0.249982,0,0);-ms-transform:matrix(0.256172,0.003074,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.256172,0.003074,-0.003000,0.249982,0,0);}
.m15_c01238{transform:matrix(0.257210,0.002315,-0.002250,0.249990,0,0);-ms-transform:matrix(0.257210,0.002315,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.257210,0.002315,-0.002250,0.249990,0,0);}
.me6_c01238{transform:matrix(0.257291,0.003859,-0.003750,0.249972,0,0);-ms-transform:matrix(0.257291,0.003859,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.257291,0.003859,-0.003750,0.249972,0,0);}
.mbd_c01238{transform:matrix(0.257595,0.002318,-0.002250,0.249990,0,0);-ms-transform:matrix(0.257595,0.002318,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.257595,0.002318,-0.002250,0.249990,0,0);}
.m7d_c01238{transform:matrix(0.257682,0.002577,-0.002500,0.249988,0,0);-ms-transform:matrix(0.257682,0.002577,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.257682,0.002577,-0.002500,0.249988,0,0);}
.m49_c01238{transform:matrix(0.257780,0.002320,-0.002250,0.249990,0,0);-ms-transform:matrix(0.257780,0.002320,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.257780,0.002320,-0.002250,0.249990,0,0);}
.m5b_c01238{transform:matrix(0.257984,0.002838,-0.002750,0.249985,0,0);-ms-transform:matrix(0.257984,0.002838,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.257984,0.002838,-0.002750,0.249985,0,0);}
.ma4_c01238{transform:matrix(0.258565,0.002327,-0.002250,0.249990,0,0);-ms-transform:matrix(0.258565,0.002327,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.258565,0.002327,-0.002250,0.249990,0,0);}
.m9c_c01238{transform:matrix(0.258602,0.002586,-0.002500,0.249988,0,0);-ms-transform:matrix(0.258602,0.002586,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.258602,0.002586,-0.002500,0.249988,0,0);}
.m7a_c01238{transform:matrix(0.258942,0.002072,-0.002000,0.249992,0,0);-ms-transform:matrix(0.258942,0.002072,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.258942,0.002072,-0.002000,0.249992,0,0);}
.m41_c01238{transform:matrix(0.258945,0.002331,-0.002250,0.249990,0,0);-ms-transform:matrix(0.258945,0.002331,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.258945,0.002331,-0.002250,0.249990,0,0);}
.mbe_c01238{transform:matrix(0.259020,0.002331,-0.002250,0.249990,0,0);-ms-transform:matrix(0.259020,0.002331,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.259020,0.002331,-0.002250,0.249990,0,0);}
.m84_c01238{transform:matrix(0.259042,0.002590,-0.002500,0.249988,0,0);-ms-transform:matrix(0.259042,0.002590,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.259042,0.002590,-0.002500,0.249988,0,0);}
.m5_c01238{transform:matrix(0.259056,0.003886,-0.003750,0.249972,0,0);-ms-transform:matrix(0.259056,0.003886,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.259056,0.003886,-0.003750,0.249972,0,0);}
.m83_c01238{transform:matrix(0.259397,0.002594,-0.002500,0.249988,0,0);-ms-transform:matrix(0.259397,0.002594,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.259397,0.002594,-0.002500,0.249988,0,0);}
.m9f_c01238{transform:matrix(0.259954,0.002340,-0.002250,0.249990,0,0);-ms-transform:matrix(0.259954,0.002340,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.259954,0.002340,-0.002250,0.249990,0,0);}
.m18_c01238{transform:matrix(0.260904,0.002348,-0.002250,0.249990,0,0);-ms-transform:matrix(0.260904,0.002348,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.260904,0.002348,-0.002250,0.249990,0,0);}
.m58_c01238{transform:matrix(0.261324,0.002352,-0.002250,0.249990,0,0);-ms-transform:matrix(0.261324,0.002352,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.261324,0.002352,-0.002250,0.249990,0,0);}
.m6a_c01238{transform:matrix(0.261377,0.002091,-0.002000,0.249992,0,0);-ms-transform:matrix(0.261377,0.002091,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.261377,0.002091,-0.002000,0.249992,0,0);}
.ma7_c01238{transform:matrix(0.261404,0.002353,-0.002250,0.249990,0,0);-ms-transform:matrix(0.261404,0.002353,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.261404,0.002353,-0.002250,0.249990,0,0);}
.m1e_c01238{transform:matrix(0.261469,0.002353,-0.002250,0.249990,0,0);-ms-transform:matrix(0.261469,0.002353,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.261469,0.002353,-0.002250,0.249990,0,0);}
.m64_c01238{transform:matrix(0.262017,0.002096,-0.002000,0.249992,0,0);-ms-transform:matrix(0.262017,0.002096,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.262017,0.002096,-0.002000,0.249992,0,0);}
.m69_c01238{transform:matrix(0.262112,0.002097,-0.002000,0.249992,0,0);-ms-transform:matrix(0.262112,0.002097,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.262112,0.002097,-0.002000,0.249992,0,0);}
.m85_c01238{transform:matrix(0.262142,0.002621,-0.002500,0.249988,0,0);-ms-transform:matrix(0.262142,0.002621,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.262142,0.002621,-0.002500,0.249988,0,0);}
.m46_c01238{transform:matrix(0.262314,0.002361,-0.002250,0.249990,0,0);-ms-transform:matrix(0.262314,0.002361,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.262314,0.002361,-0.002250,0.249990,0,0);}
.mfc_c01238{transform:matrix(0.262400,0.003936,-0.003750,0.249972,0,0);-ms-transform:matrix(0.262400,0.003936,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.262400,0.003936,-0.003750,0.249972,0,0);}
.mc5_c01238{transform:matrix(0.263259,0.002369,-0.002250,0.249990,0,0);-ms-transform:matrix(0.263259,0.002369,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.263259,0.002369,-0.002250,0.249990,0,0);}
.m63_c01238{transform:matrix(0.264097,0.002113,-0.002000,0.249992,0,0);-ms-transform:matrix(0.264097,0.002113,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.264097,0.002113,-0.002000,0.249992,0,0);}
.me8_c01238{transform:matrix(0.264180,0.003963,-0.003750,0.249972,0,0);-ms-transform:matrix(0.264180,0.003963,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.264180,0.003963,-0.003750,0.249972,0,0);}
.m39_c01238{transform:matrix(0.264449,0.002380,-0.002250,0.249990,0,0);-ms-transform:matrix(0.264449,0.002380,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.264449,0.002380,-0.002250,0.249990,0,0);}
.m122_c01238{transform:matrix(0.264539,0.007672,-0.007247,0.249895,0,0);-ms-transform:matrix(0.264539,0.007672,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.264539,0.007672,-0.007247,0.249895,0,0);}
.m53_c01238{transform:matrix(0.264754,0.002383,-0.002250,0.249990,0,0);-ms-transform:matrix(0.264754,0.002383,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.264754,0.002383,-0.002250,0.249990,0,0);}
.m9d_c01238{transform:matrix(0.264782,0.002648,-0.002500,0.249988,0,0);-ms-transform:matrix(0.264782,0.002648,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.264782,0.002648,-0.002500,0.249988,0,0);}
.m5e_c01238{transform:matrix(0.265089,0.002916,-0.002750,0.249985,0,0);-ms-transform:matrix(0.265089,0.002916,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.265089,0.002916,-0.002750,0.249985,0,0);}
.m19_c01238{transform:matrix(0.265199,0.002387,-0.002250,0.249990,0,0);-ms-transform:matrix(0.265199,0.002387,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.265199,0.002387,-0.002250,0.249990,0,0);}
.m92_c01238{transform:matrix(0.265217,0.002652,-0.002500,0.249988,0,0);-ms-transform:matrix(0.265217,0.002652,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.265217,0.002652,-0.002500,0.249988,0,0);}
.me7_c01238{transform:matrix(0.266760,0.004001,-0.003750,0.249972,0,0);-ms-transform:matrix(0.266760,0.004001,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.266760,0.004001,-0.003750,0.249972,0,0);}
.mc2_c01238{transform:matrix(0.267744,0.002410,-0.002250,0.249990,0,0);-ms-transform:matrix(0.267744,0.002410,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.267744,0.002410,-0.002250,0.249990,0,0);}
.m3b_c01238{transform:matrix(0.267979,0.002412,-0.002250,0.249990,0,0);-ms-transform:matrix(0.267979,0.002412,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.267979,0.002412,-0.002250,0.249990,0,0);}
.me9_c01238{transform:matrix(0.267985,0.004020,-0.003750,0.249972,0,0);-ms-transform:matrix(0.267985,0.004020,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.267985,0.004020,-0.003750,0.249972,0,0);}
.m68_c01238{transform:matrix(0.268456,0.002148,-0.002000,0.249992,0,0);-ms-transform:matrix(0.268456,0.002148,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.268456,0.002148,-0.002000,0.249992,0,0);}
.m55_c01238{transform:matrix(0.269249,0.002423,-0.002250,0.249990,0,0);-ms-transform:matrix(0.269249,0.002423,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.269249,0.002423,-0.002250,0.249990,0,0);}
.m7c_c01238{transform:matrix(0.269281,0.002154,-0.002000,0.249992,0,0);-ms-transform:matrix(0.269281,0.002154,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.269281,0.002154,-0.002000,0.249992,0,0);}
.m82_c01238{transform:matrix(0.270191,0.002702,-0.002500,0.249988,0,0);-ms-transform:matrix(0.270191,0.002702,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.270191,0.002702,-0.002500,0.249988,0,0);}
.m67_c01238{transform:matrix(0.270721,0.002166,-0.002000,0.249992,0,0);-ms-transform:matrix(0.270721,0.002166,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.270721,0.002166,-0.002000,0.249992,0,0);}
.m3a_c01238{transform:matrix(0.271289,0.002442,-0.002250,0.249990,0,0);-ms-transform:matrix(0.271289,0.002442,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.271289,0.002442,-0.002250,0.249990,0,0);}
.mc0_c01238{transform:matrix(0.271924,0.002447,-0.002250,0.249990,0,0);-ms-transform:matrix(0.271924,0.002447,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.271924,0.002447,-0.002250,0.249990,0,0);}
.m3e_c01238{transform:matrix(0.274664,0.002472,-0.002250,0.249990,0,0);-ms-transform:matrix(0.274664,0.002472,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.274664,0.002472,-0.002250,0.249990,0,0);}
.m56_c01238{transform:matrix(0.274744,0.002473,-0.002250,0.249990,0,0);-ms-transform:matrix(0.274744,0.002473,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.274744,0.002473,-0.002250,0.249990,0,0);}
.m79_c01238{transform:matrix(0.274746,0.002198,-0.002000,0.249992,0,0);-ms-transform:matrix(0.274746,0.002198,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.274746,0.002198,-0.002000,0.249992,0,0);}
.m3c_c01238{transform:matrix(0.275224,0.002477,-0.002250,0.249990,0,0);-ms-transform:matrix(0.275224,0.002477,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.275224,0.002477,-0.002250,0.249990,0,0);}
.mee_c01238{transform:matrix(0.276789,0.004152,-0.003750,0.249972,0,0);-ms-transform:matrix(0.276789,0.004152,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.276789,0.004152,-0.003750,0.249972,0,0);}
.m95_c01238{transform:matrix(0.276936,0.002769,-0.002500,0.249988,0,0);-ms-transform:matrix(0.276936,0.002769,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.276936,0.002769,-0.002500,0.249988,0,0);}
.mec_c01238{transform:matrix(0.277599,0.004164,-0.003750,0.249972,0,0);-ms-transform:matrix(0.277599,0.004164,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.277599,0.004164,-0.003750,0.249972,0,0);}
.m6b_c01238{transform:matrix(0.277856,0.002223,-0.002000,0.249992,0,0);-ms-transform:matrix(0.277856,0.002223,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.277856,0.002223,-0.002000,0.249992,0,0);}
.m59_c01238{transform:matrix(0.277859,0.002501,-0.002250,0.249990,0,0);-ms-transform:matrix(0.277859,0.002501,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.277859,0.002501,-0.002250,0.249990,0,0);}
.m93_c01238{transform:matrix(0.278096,0.002781,-0.002500,0.249988,0,0);-ms-transform:matrix(0.278096,0.002781,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.278096,0.002781,-0.002500,0.249988,0,0);}
.m80_c01238{transform:matrix(0.279161,0.002792,-0.002500,0.249988,0,0);-ms-transform:matrix(0.279161,0.002792,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.279161,0.002792,-0.002500,0.249988,0,0);}
.m77_c01238{transform:matrix(0.279291,0.002234,-0.002000,0.249992,0,0);-ms-transform:matrix(0.279291,0.002234,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.279291,0.002234,-0.002000,0.249992,0,0);}
.m54_c01238{transform:matrix(0.279619,0.002517,-0.002250,0.249990,0,0);-ms-transform:matrix(0.279619,0.002517,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.279619,0.002517,-0.002250,0.249990,0,0);}
.m34_c01238{transform:matrix(0.279944,0.002519,-0.002250,0.249990,0,0);-ms-transform:matrix(0.279944,0.002519,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.279944,0.002519,-0.002250,0.249990,0,0);}
.meb_c01238{transform:matrix(0.280373,0.004206,-0.003750,0.249972,0,0);-ms-transform:matrix(0.280373,0.004206,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.280373,0.004206,-0.003750,0.249972,0,0);}
.m9b_c01238{transform:matrix(0.280641,0.002806,-0.002500,0.249988,0,0);-ms-transform:matrix(0.280641,0.002806,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.280641,0.002806,-0.002500,0.249988,0,0);}
.m98_c01238{transform:matrix(0.283331,0.002833,-0.002500,0.249988,0,0);-ms-transform:matrix(0.283331,0.002833,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.283331,0.002833,-0.002500,0.249988,0,0);}
.mc3_c01238{transform:matrix(0.283539,0.002552,-0.002250,0.249990,0,0);-ms-transform:matrix(0.283539,0.002552,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.283539,0.002552,-0.002250,0.249990,0,0);}
.m2_c01238{transform:matrix(0.287315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287315,0.000000,0.000000,0.250000,0,0);}
.m86_c01238{transform:matrix(0.289031,0.002890,-0.002500,0.249988,0,0);-ms-transform:matrix(0.289031,0.002890,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.289031,0.002890,-0.002500,0.249988,0,0);}
.m12e_c01238{transform:matrix(0.294049,0.003529,-0.003000,0.249982,0,0);-ms-transform:matrix(0.294049,0.003529,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.294049,0.003529,-0.003000,0.249982,0,0);}
.m33_c01238{transform:matrix(0.298503,0.002687,-0.002250,0.249990,0,0);-ms-transform:matrix(0.298503,0.002687,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.298503,0.002687,-0.002250,0.249990,0,0);}
.m1_c01238{transform:matrix(0.305220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305220,0.000000,0.000000,0.250000,0,0);}
.m130_c01238{transform:matrix(0.307853,0.003694,-0.003000,0.249982,0,0);-ms-transform:matrix(0.307853,0.003694,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.307853,0.003694,-0.003000,0.249982,0,0);}
.m132_c01238{transform:matrix(0.309883,0.003719,-0.003000,0.249982,0,0);-ms-transform:matrix(0.309883,0.003719,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.309883,0.003719,-0.003000,0.249982,0,0);}
.m12b_c01238{transform:matrix(0.310733,0.003729,-0.003000,0.249982,0,0);-ms-transform:matrix(0.310733,0.003729,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.310733,0.003729,-0.003000,0.249982,0,0);}
.m12d_c01238{transform:matrix(0.310778,0.003729,-0.003000,0.249982,0,0);-ms-transform:matrix(0.310778,0.003729,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.310778,0.003729,-0.003000,0.249982,0,0);}
.m133_c01238{transform:matrix(0.316622,0.003799,-0.003000,0.249982,0,0);-ms-transform:matrix(0.316622,0.003799,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.316622,0.003799,-0.003000,0.249982,0,0);}
.m1c_c01238{transform:matrix(0.318747,0.002869,-0.002250,0.249990,0,0);-ms-transform:matrix(0.318747,0.002869,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.318747,0.002869,-0.002250,0.249990,0,0);}
.m6c_c01238{transform:matrix(0.319460,0.002556,-0.002000,0.249992,0,0);-ms-transform:matrix(0.319460,0.002556,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.319460,0.002556,-0.002000,0.249992,0,0);}
.m12f_c01238{transform:matrix(0.328231,0.003939,-0.003000,0.249982,0,0);-ms-transform:matrix(0.328231,0.003939,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.328231,0.003939,-0.003000,0.249982,0,0);}
.m129_c01238{transform:matrix(0.328976,0.003948,-0.003000,0.249982,0,0);-ms-transform:matrix(0.328976,0.003948,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.328976,0.003948,-0.003000,0.249982,0,0);}
.m12c_c01238{transform:matrix(0.332736,0.003993,-0.003000,0.249982,0,0);-ms-transform:matrix(0.332736,0.003993,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.332736,0.003993,-0.003000,0.249982,0,0);}
.m131_c01238{transform:matrix(0.334506,0.004014,-0.003000,0.249982,0,0);-ms-transform:matrix(0.334506,0.004014,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.334506,0.004014,-0.003000,0.249982,0,0);}
.m9_c01238{transform:matrix(0.362800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362800,0.000000,0.000000,0.250000,0,0);}
.md3_c01238{transform:matrix(0.380825,0.003427,-0.002250,0.249990,0,0);-ms-transform:matrix(0.380825,0.003427,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.380825,0.003427,-0.002250,0.249990,0,0);}
.m124_c01238{transform:matrix(0.397833,0.011537,-0.007247,0.249895,0,0);-ms-transform:matrix(0.397833,0.011537,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.397833,0.011537,-0.007247,0.249895,0,0);}
.m87_c01238{transform:matrix(0.459492,0.004595,-0.002500,0.249988,0,0);-ms-transform:matrix(0.459492,0.004595,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.459492,0.004595,-0.002500,0.249988,0,0);}
.m6_c01238{transform:matrix(0.496854,0.007453,-0.003750,0.249972,0,0);-ms-transform:matrix(0.496854,0.007453,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.496854,0.007453,-0.003750,0.249972,0,0);}
.m1d_c01238{transform:matrix(0.651119,0.005860,-0.002250,0.249990,0,0);-ms-transform:matrix(0.651119,0.005860,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.651119,0.005860,-0.002250,0.249990,0,0);}
.m123_c01238{transform:matrix(0.665385,0.019296,-0.007247,0.249895,0,0);-ms-transform:matrix(0.665385,0.019296,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.665385,0.019296,-0.007247,0.249895,0,0);}
.m126_c01238{transform:matrix(0.693428,0.020109,-0.007247,0.249895,0,0);-ms-transform:matrix(0.693428,0.020109,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.693428,0.020109,-0.007247,0.249895,0,0);}
.m125_c01238{transform:matrix(0.723416,0.020979,-0.007247,0.249895,0,0);-ms-transform:matrix(0.723416,0.020979,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.723416,0.020979,-0.007247,0.249895,0,0);}
.m7_c01238{transform:matrix(0.935550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.935550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.935550,0.000000,0.000000,0.250000,0,0);}
.m8_c01238{transform:matrix(1.447790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.447790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.447790,0.000000,0.000000,0.250000,0,0);}
.v0_c01238{vertical-align:0.000000px;}
.ls0_c01238{letter-spacing:0.000000px;}
.sc__c01238{text-shadow:none;}
.sc0_c01238{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__c01238{-webkit-text-stroke:0px transparent;}
.sc0_c01238{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01238{word-spacing:0.000000px;}
._0_c01238{width:40.376310px;}
.fc0_c01238{color:transparent;}
.fs3_c01238{font-size:36.000000px;}
.fs14_c01238{font-size:42.017657px;}
.fs15_c01238{font-size:60.004320px;}
.fs2_c01238{font-size:60.006750px;}
.fs9_c01238{font-size:72.002304px;}
.fs7_c01238{font-size:72.002916px;}
.fsb_c01238{font-size:72.003600px;}
.fs8_c01238{font-size:72.004356px;}
.fsf_c01238{font-size:72.008100px;}
.fs5_c01238{font-size:78.003159px;}
.fs1_c01238{font-size:78.008775px;}
.fsa_c01238{font-size:84.002688px;}
.fs6_c01238{font-size:84.003402px;}
.fs4_c01238{font-size:84.008232px;}
.fs10_c01238{font-size:84.009449px;}
.fs12_c01238{font-size:84.020326px;}
.fs13_c01238{font-size:84.035315px;}
.fsd_c01238{font-size:90.003645px;}
.fs11_c01238{font-size:90.021777px;}
.fs0_c01238{font-size:96.000000px;}
.fsc_c01238{font-size:96.004800px;}
.fse_c01238{font-size:102.004131px;}
.y0_c01238{bottom:0.000000px;}
.y131_c01238{bottom:85.307802px;}
.y130_c01238{bottom:85.972182px;}
.y12f_c01238{bottom:86.776188px;}
.y12e_c01238{bottom:87.181080px;}
.y12d_c01238{bottom:87.427374px;}
.y12c_c01238{bottom:87.949680px;}
.y12b_c01238{bottom:88.364256px;}
.y12a_c01238{bottom:89.303820px;}
.y129_c01238{bottom:89.676240px;}
.y128_c01238{bottom:90.346830px;}
.y127_c01238{bottom:90.991500px;}
.y126_c01238{bottom:98.089787px;}
.y125_c01238{bottom:112.068289px;}
.y124_c01238{bottom:112.935212px;}
.y123_c01238{bottom:114.608001px;}
.y122_c01238{bottom:115.449561px;}
.y121_c01238{bottom:116.666692px;}
.y120_c01238{bottom:128.539388px;}
.y11f_c01238{bottom:129.805150px;}
.y11e_c01238{bottom:131.074219px;}
.y11d_c01238{bottom:133.051556px;}
.y11c_c01238{bottom:134.650007px;}
.y11b_c01238{bottom:137.539668px;}
.y11a_c01238{bottom:138.485793px;}
.y119_c01238{bottom:140.115129px;}
.y118_c01238{bottom:143.610615px;}
.y117_c01238{bottom:146.442770px;}
.y116_c01238{bottom:147.426000px;}
.y115_c01238{bottom:165.049779px;}
.y114_c01238{bottom:167.907882px;}
.y113_c01238{bottom:169.952379px;}
.y112_c01238{bottom:170.823264px;}
.y111_c01238{bottom:172.268310px;}
.y110_c01238{bottom:174.270129px;}
.y10f_c01238{bottom:177.128067px;}
.y10e_c01238{bottom:179.148858px;}
.y10d_c01238{bottom:179.990559px;}
.y10c_c01238{bottom:181.104765px;}
.y10b_c01238{bottom:182.245383px;}
.y10a_c01238{bottom:201.717636px;}
.y109_c01238{bottom:202.435287px;}
.y108_c01238{bottom:204.110994px;}
.y107_c01238{bottom:205.882137px;}
.y106_c01238{bottom:206.344038px;}
.y105_c01238{bottom:208.502073px;}
.y104_c01238{bottom:209.255496px;}
.y103_c01238{bottom:210.487254px;}
.y102_c01238{bottom:211.223649px;}
.y101_c01238{bottom:212.185830px;}
.y100_c01238{bottom:213.403497px;}
.yff_c01238{bottom:214.116000px;}
.yfe_c01238{bottom:247.965848px;}
.yfd_c01238{bottom:247.966403px;}
.yfc_c01238{bottom:247.966808px;}
.yfb_c01238{bottom:247.967168px;}
.yfa_c01238{bottom:277.095705px;}
.yf9_c01238{bottom:277.475723px;}
.yf8_c01238{bottom:278.197620px;}
.yf7_c01238{bottom:278.797860px;}
.yf6_c01238{bottom:279.543653px;}
.yf5_c01238{bottom:280.018658px;}
.yf4_c01238{bottom:280.746150px;}
.yf3_c01238{bottom:281.238450px;}
.yf2_c01238{bottom:282.212850px;}
.yf1_c01238{bottom:282.572490px;}
.yf0_c01238{bottom:282.931433px;}
.yef_c01238{bottom:283.766483px;}
.yee_c01238{bottom:312.081240px;}
.yed_c01238{bottom:312.420675px;}
.yec_c01238{bottom:313.592273px;}
.yeb_c01238{bottom:314.090490px;}
.yea_c01238{bottom:315.261165px;}
.ye9_c01238{bottom:316.581690px;}
.ye8_c01238{bottom:317.050950px;}
.ye7_c01238{bottom:317.906198px;}
.ye6_c01238{bottom:318.728550px;}
.ye5_c01238{bottom:319.712520px;}
.ye4_c01238{bottom:320.223000px;}
.ye1_c01238{bottom:352.085373px;}
.ye2_c01238{bottom:352.085387px;}
.ye0_c01238{bottom:352.085573px;}
.ydf_c01238{bottom:352.085739px;}
.yde_c01238{bottom:352.085742px;}
.ye3_c01238{bottom:352.086133px;}
.ydd_c01238{bottom:381.689886px;}
.ydc_c01238{bottom:381.995796px;}
.ydb_c01238{bottom:382.297129px;}
.yda_c01238{bottom:382.979959px;}
.yd9_c01238{bottom:383.295778px;}
.yd8_c01238{bottom:383.787556px;}
.yd7_c01238{bottom:384.491635px;}
.yd6_c01238{bottom:385.580478px;}
.yd5_c01238{bottom:385.879381px;}
.yd4_c01238{bottom:386.569555px;}
.yd3_c01238{bottom:387.045660px;}
.yd2_c01238{bottom:387.446502px;}
.yd1_c01238{bottom:416.915148px;}
.yd0_c01238{bottom:417.344121px;}
.ycf_c01238{bottom:418.221661px;}
.yce_c01238{bottom:419.797447px;}
.ycd_c01238{bottom:420.668560px;}
.ycc_c01238{bottom:421.089228px;}
.ycb_c01238{bottom:421.660589px;}
.yca_c01238{bottom:422.528149px;}
.yc9_c01238{bottom:422.960674px;}
.yc8_c01238{bottom:423.535843px;}
.yc7_c01238{bottom:423.817230px;}
.yc6_c01238{bottom:424.666519px;}
.yc5_c01238{bottom:425.519077px;}
.yc4_c01238{bottom:453.690489px;}
.yc3_c01238{bottom:454.186317px;}
.yc2_c01238{bottom:454.672384px;}
.yc1_c01238{bottom:455.884968px;}
.yc0_c01238{bottom:456.570336px;}
.ybf_c01238{bottom:456.781543px;}
.ybe_c01238{bottom:457.564449px;}
.ybd_c01238{bottom:458.356386px;}
.ybc_c01238{bottom:459.037069px;}
.ybb_c01238{bottom:459.539863px;}
.yba_c01238{bottom:489.985316px;}
.yb9_c01238{bottom:490.256166px;}
.yb8_c01238{bottom:490.986379px;}
.yb7_c01238{bottom:491.120394px;}
.yb6_c01238{bottom:491.719750px;}
.yb5_c01238{bottom:491.979375px;}
.yb4_c01238{bottom:492.440197px;}
.yb3_c01238{bottom:492.979455px;}
.yb2_c01238{bottom:493.437847px;}
.yb1_c01238{bottom:493.630747px;}
.yb0_c01238{bottom:493.830570px;}
.yaf_c01238{bottom:526.100728px;}
.yae_c01238{bottom:526.304854px;}
.yad_c01238{bottom:526.893928px;}
.yac_c01238{bottom:527.559712px;}
.yab_c01238{bottom:528.282114px;}
.yaa_c01238{bottom:528.747967px;}
.ya9_c01238{bottom:528.938707px;}
.ya8_c01238{bottom:529.142820px;}
.ya7_c01238{bottom:529.470072px;}
.ya6_c01238{bottom:560.787760px;}
.ya5_c01238{bottom:561.871284px;}
.ya4_c01238{bottom:562.082505px;}
.ya3_c01238{bottom:562.476475px;}
.ya2_c01238{bottom:563.368380px;}
.ya1_c01238{bottom:563.868676px;}
.ya0_c01238{bottom:564.554301px;}
.y9f_c01238{bottom:565.064601px;}
.y9e_c01238{bottom:565.363572px;}
.y9d_c01238{bottom:566.350246px;}
.y9c_c01238{bottom:566.731500px;}
.y9b_c01238{bottom:595.713075px;}
.y9a_c01238{bottom:596.071350px;}
.y99_c01238{bottom:596.859405px;}
.y98_c01238{bottom:597.162465px;}
.y97_c01238{bottom:597.470850px;}
.y96_c01238{bottom:598.653825px;}
.y95_c01238{bottom:598.849770px;}
.y94_c01238{bottom:599.341215px;}
.y93_c01238{bottom:600.156135px;}
.y92_c01238{bottom:600.440505px;}
.y91_c01238{bottom:601.339065px;}
.y90_c01238{bottom:601.824870px;}
.y8f_c01238{bottom:631.160220px;}
.y8e_c01238{bottom:631.461660px;}
.y8d_c01238{bottom:631.843305px;}
.y8c_c01238{bottom:632.655435px;}
.y8b_c01238{bottom:633.539190px;}
.y8a_c01238{bottom:633.838155px;}
.y89_c01238{bottom:634.436670px;}
.y88_c01238{bottom:634.750530px;}
.y87_c01238{bottom:635.533035px;}
.y86_c01238{bottom:636.119040px;}
.y85_c01238{bottom:666.982125px;}
.y84_c01238{bottom:668.094840px;}
.y83_c01238{bottom:668.429490px;}
.y82_c01238{bottom:668.982960px;}
.y81_c01238{bottom:669.422820px;}
.y80_c01238{bottom:669.976800px;}
.y7f_c01238{bottom:670.314195px;}
.y7e_c01238{bottom:671.410470px;}
.y7d_c01238{bottom:671.742630px;}
.y7c_c01238{bottom:671.950650px;}
.y7b_c01238{bottom:672.301500px;}
.y7a_c01238{bottom:703.760688px;}
.y79_c01238{bottom:704.063700px;}
.y78_c01238{bottom:704.656992px;}
.y77_c01238{bottom:705.462036px;}
.y76_c01238{bottom:705.853104px;}
.y75_c01238{bottom:707.126028px;}
.y74_c01238{bottom:736.390416px;}
.y73_c01238{bottom:736.995948px;}
.y72_c01238{bottom:737.298708px;}
.y71_c01238{bottom:738.198720px;}
.y70_c01238{bottom:738.694800px;}
.y6f_c01238{bottom:739.985892px;}
.y6e_c01238{bottom:740.471724px;}
.y6d_c01238{bottom:740.679996px;}
.y6c_c01238{bottom:741.470628px;}
.y6b_c01238{bottom:741.958572px;}
.y6a_c01238{bottom:770.677212px;}
.y69_c01238{bottom:771.305868px;}
.y68_c01238{bottom:771.737712px;}
.y67_c01238{bottom:772.012320px;}
.y66_c01238{bottom:772.621452px;}
.y65_c01238{bottom:773.167944px;}
.y64_c01238{bottom:773.519880px;}
.y63_c01238{bottom:773.781252px;}
.y62_c01238{bottom:774.302052px;}
.y61_c01238{bottom:774.835572px;}
.y60_c01238{bottom:775.101228px;}
.y5f_c01238{bottom:775.362324px;}
.y5e_c01238{bottom:775.710000px;}
.y5d_c01238{bottom:811.005160px;}
.y5c_c01238{bottom:811.759260px;}
.y5b_c01238{bottom:812.103796px;}
.y5a_c01238{bottom:812.469403px;}
.y59_c01238{bottom:813.179085px;}
.y58_c01238{bottom:813.781500px;}
.y57_c01238{bottom:842.841428px;}
.y56_c01238{bottom:843.701034px;}
.y55_c01238{bottom:844.145699px;}
.y54_c01238{bottom:845.294741px;}
.y53_c01238{bottom:846.161991px;}
.y52_c01238{bottom:847.439592px;}
.y51_c01238{bottom:847.727460px;}
.y50_c01238{bottom:848.874503px;}
.y48_c01238{bottom:881.643054px;}
.y47_c01238{bottom:881.643221px;}
.y49_c01238{bottom:881.643248px;}
.y4a_c01238{bottom:881.643891px;}
.y4f_c01238{bottom:881.644149px;}
.y4c_c01238{bottom:881.644155px;}
.y4e_c01238{bottom:881.644316px;}
.y4d_c01238{bottom:881.644332px;}
.y4b_c01238{bottom:881.644502px;}
.y46_c01238{bottom:913.556037px;}
.y45_c01238{bottom:914.090514px;}
.y44_c01238{bottom:914.496332px;}
.y43_c01238{bottom:915.960935px;}
.y42_c01238{bottom:917.000411px;}
.y41_c01238{bottom:917.547608px;}
.y40_c01238{bottom:918.206033px;}
.y3f_c01238{bottom:918.607421px;}
.y3e_c01238{bottom:919.914075px;}
.y3d_c01238{bottom:920.311763px;}
.y3c_c01238{bottom:920.965853px;}
.y3b_c01238{bottom:948.401544px;}
.y3a_c01238{bottom:948.830099px;}
.y39_c01238{bottom:949.981166px;}
.y38_c01238{bottom:950.999109px;}
.y37_c01238{bottom:951.286910px;}
.y36_c01238{bottom:952.154565px;}
.y35_c01238{bottom:952.585266px;}
.y34_c01238{bottom:953.287415px;}
.y33_c01238{bottom:953.742464px;}
.y32_c01238{bottom:954.166967px;}
.y31_c01238{bottom:955.842509px;}
.y30_c01238{bottom:956.621915px;}
.y2f_c01238{bottom:984.097937px;}
.y2e_c01238{bottom:984.345605px;}
.y2d_c01238{bottom:985.114344px;}
.y2c_c01238{bottom:985.652529px;}
.y2b_c01238{bottom:986.039463px;}
.y2a_c01238{bottom:986.583519px;}
.y29_c01238{bottom:986.973948px;}
.y28_c01238{bottom:987.428297px;}
.y27_c01238{bottom:987.664196px;}
.y26_c01238{bottom:987.897288px;}
.y25_c01238{bottom:988.195458px;}
.y24_c01238{bottom:1017.918635px;}
.y23_c01238{bottom:1018.751823px;}
.y22_c01238{bottom:1020.105348px;}
.y21_c01238{bottom:1020.599916px;}
.y20_c01238{bottom:1021.102196px;}
.y1f_c01238{bottom:1022.103014px;}
.y1e_c01238{bottom:1022.763131px;}
.y1d_c01238{bottom:1023.261521px;}
.y1c_c01238{bottom:1025.058914px;}
.y1b_c01238{bottom:1025.561342px;}
.y1a_c01238{bottom:1027.079822px;}
.y19_c01238{bottom:1053.122513px;}
.y18_c01238{bottom:1053.411696px;}
.y17_c01238{bottom:1053.907457px;}
.y16_c01238{bottom:1055.008665px;}
.y15_c01238{bottom:1056.082685px;}
.y14_c01238{bottom:1056.400677px;}
.y13_c01238{bottom:1056.709247px;}
.y12_c01238{bottom:1057.601286px;}
.y11_c01238{bottom:1058.269442px;}
.y10_c01238{bottom:1058.670000px;}
.yf_c01238{bottom:1088.115828px;}
.ye_c01238{bottom:1089.046149px;}
.yd_c01238{bottom:1089.355290px;}
.yc_c01238{bottom:1090.138737px;}
.yb_c01238{bottom:1090.607205px;}
.ya_c01238{bottom:1091.816889px;}
.y9_c01238{bottom:1092.459111px;}
.y8_c01238{bottom:1094.005929px;}
.y7_c01238{bottom:1095.393000px;}
.y5_c01238{bottom:1147.636785px;}
.y6_c01238{bottom:1149.354000px;}
.y4_c01238{bottom:1163.376142px;}
.y3_c01238{bottom:1164.882697px;}
.y2_c01238{bottom:1165.863000px;}
.y1_c01238{bottom:1239.552000px;}
.h5_c01238{height:36.000000px;}
.h16_c01238{height:42.017657px;}
.h17_c01238{height:60.004320px;}
.h4_c01238{height:60.006750px;}
.hb_c01238{height:72.002304px;}
.h9_c01238{height:72.002916px;}
.hd_c01238{height:72.003600px;}
.ha_c01238{height:72.004356px;}
.h11_c01238{height:72.008100px;}
.h7_c01238{height:78.003159px;}
.h3_c01238{height:78.008775px;}
.hc_c01238{height:84.002688px;}
.h8_c01238{height:84.003402px;}
.h6_c01238{height:84.008232px;}
.h12_c01238{height:84.009449px;}
.h14_c01238{height:84.020326px;}
.h15_c01238{height:84.035315px;}
.hf_c01238{height:90.003645px;}
.h13_c01238{height:90.021777px;}
.h2_c01238{height:96.000000px;}
.he_c01238{height:96.004800px;}
.h10_c01238{height:102.004131px;}
.h1_c01238{height:1258.500000px;}
.h0_c01238{height:1258.740000px;}
.w1_c01238{width:899.250000px;}
.w0_c01238{width:899.370000px;}
.x0_c01238{left:0.000000px;}
.x9d_c01238{left:161.915640px;}
.x9a_c01238{left:165.592500px;}
.x1c_c01238{left:166.959420px;}
.x4c_c01238{left:168.380988px;}
.x36_c01238{left:169.445673px;}
.x13_c01238{left:170.557500px;}
.x66_c01238{left:179.163000px;}
.x6f_c01238{left:199.979333px;}
.x3d_c01238{left:201.960930px;}
.x9e_c01238{left:206.991750px;}
.x97_c01238{left:210.282249px;}
.x27_c01238{left:212.391985px;}
.x14_c01238{left:215.064000px;}
.xa2_c01238{left:219.357000px;}
.x60_c01238{left:221.247465px;}
.x4d_c01238{left:222.623556px;}
.x37_c01238{left:223.954201px;}
.x2e_c01238{left:226.080124px;}
.x5d_c01238{left:232.843530px;}
.x3e_c01238{left:235.442143px;}
.x9f_c01238{left:238.133534px;}
.x8e_c01238{left:242.579040px;}
.x28_c01238{left:245.625079px;}
.x86_c01238{left:253.266347px;}
.x6b_c01238{left:255.861605px;}
.x38_c01238{left:257.140810px;}
.x7f_c01238{left:264.709103px;}
.x1d_c01238{left:268.173952px;}
.x88_c01238{left:274.641000px;}
.x54_c01238{left:276.069000px;}
.x3f_c01238{left:278.374126px;}
.xa_c01238{left:279.808500px;}
.x92_c01238{left:286.203487px;}
.x6c_c01238{left:287.722469px;}
.x15_c01238{left:289.303500px;}
.x79_c01238{left:297.916494px;}
.x76_c01238{left:299.043413px;}
.xa0_c01238{left:300.112644px;}
.x1e_c01238{left:301.664143px;}
.xa3_c01238{left:306.274500px;}
.x93_c01238{left:307.483500px;}
.x70_c01238{left:308.514762px;}
.x4e_c01238{left:310.389348px;}
.x4_c01238{left:312.441000px;}
.x5e_c01238{left:319.794900px;}
.x61_c01238{left:321.154470px;}
.x44_c01238{left:322.251000px;}
.x55_c01238{left:331.956000px;}
.x4f_c01238{left:333.610668px;}
.x80_c01238{left:341.395103px;}
.x29_c01238{left:344.154348px;}
.x45_c01238{left:353.572500px;}
.x2f_c01238{left:354.913480px;}
.x94_c01238{left:362.832000px;}
.x67_c01238{left:364.374000px;}
.x39_c01238{left:365.988367px;}
.x81_c01238{left:374.606603px;}
.x5_c01238{left:377.794500px;}
.xb_c01238{left:378.885000px;}
.xa4_c01238{left:384.571500px;}
.x30_c01238{left:387.579306px;}
.x8_c01238{left:388.800000px;}
.x7a_c01238{left:396.977417px;}
.x71_c01238{left:398.434692px;}
.x2a_c01238{left:400.036360px;}
.x95_c01238{left:406.567500px;}
.x46_c01238{left:409.753500px;}
.x9b_c01238{left:417.691500px;}
.xa5_c01238{left:419.119500px;}
.x1f_c01238{left:421.534677px;}
.x16_c01238{left:422.704500px;}
.x1_c01238{left:423.900000px;}
.x89_c01238{left:429.094500px;}
.x87_c01238{left:440.654021px;}
.x47_c01238{left:442.425000px;}
.x52_c01238{left:443.485200px;}
.x2_c01238{left:447.390000px;}
.x20_c01238{left:454.742881px;}
.x17_c01238{left:458.037000px;}
.xa6_c01238{left:462.645000px;}
.x7b_c01238{left:463.704014px;}
.x98_c01238{left:473.197149px;}
.x56_c01238{left:474.799500px;}
.x31_c01238{left:476.653606px;}
.x6_c01238{left:478.231500px;}
.xa7_c01238{left:483.169500px;}
.x48_c01238{left:486.417000px;}
.x9_c01238{left:488.160000px;}
.xc_c01238{left:489.372000px;}
.x3_c01238{left:492.480000px;}
.x82_c01238{left:495.589103px;}
.x68_c01238{left:497.254500px;}
.x21_c01238{left:498.753505px;}
.x7_c01238{left:499.790813px;}
.x8f_c01238{left:507.479948px;}
.x57_c01238{left:508.539000px;}
.x32_c01238{left:509.841418px;}
.xa8_c01238{left:516.910500px;}
.x72_c01238{left:518.320919px;}
.x62_c01238{left:519.624450px;}
.x40_c01238{left:520.844769px;}
.x50_c01238{left:530.974584px;}
.x2b_c01238{left:533.148763px;}
.xd_c01238{left:535.245000px;}
.x7c_c01238{left:540.093273px;}
.x53_c01238{left:543.147408px;}
.x90_c01238{left:550.649535px;}
.x41_c01238{left:553.515915px;}
.x49_c01238{left:554.728500px;}
.x58_c01238{left:563.937000px;}
.x22_c01238{left:565.451901px;}
.x77_c01238{left:573.645413px;}
.x18_c01238{left:577.372500px;}
.xa9_c01238{left:583.911000px;}
.x3a_c01238{left:586.536414px;}
.x42_c01238{left:587.537169px;}
.x6d_c01238{left:596.901825px;}
.x23_c01238{left:598.925592px;}
.x8a_c01238{left:605.430000px;}
.x59_c01238{left:607.923000px;}
.x2c_c01238{left:610.115154px;}
.x73_c01238{left:618.252119px;}
.xe_c01238{left:621.651000px;}
.x83_c01238{left:628.462103px;}
.x4a_c01238{left:630.870000px;}
.x24_c01238{left:631.875810px;}
.x99_c01238{left:639.307563px;}
.x74_c01238{left:640.643226px;}
.x43_c01238{left:642.198637px;}
.x96_c01238{left:649.363500px;}
.x63_c01238{left:651.123270px;}
.xf_c01238{left:655.113000px;}
.x9c_c01238{left:661.263000px;}
.x5a_c01238{left:663.270000px;}
.x4b_c01238{left:665.196000px;}
.x91_c01238{left:672.992370px;}
.x33_c01238{left:676.990897px;}
.x8b_c01238{left:683.475000px;}
.x51_c01238{left:685.984836px;}
.x69_c01238{left:695.718000px;}
.x5b_c01238{left:696.735000px;}
.x19_c01238{left:699.729000px;}
.x3b_c01238{left:708.600120px;}
.x10_c01238{left:711.073500px;}
.x8c_c01238{left:716.689500px;}
.x5f_c01238{left:718.579875px;}
.x2d_c01238{left:720.032638px;}
.x25_c01238{left:722.095936px;}
.x6e_c01238{left:729.205403px;}
.x11_c01238{left:733.155000px;}
.x84_c01238{left:739.423103px;}
.x3c_c01238{left:742.356702px;}
.x1a_c01238{left:754.813500px;}
.x75_c01238{left:762.448020px;}
.x34_c01238{left:765.550711px;}
.x85_c01238{left:772.904603px;}
.x26_c01238{left:777.669439px;}
.x1b_c01238{left:786.945000px;}
.x8d_c01238{left:794.796000px;}
.x7d_c01238{left:795.799566px;}
.x35_c01238{left:798.500023px;}
.x12_c01238{left:799.606500px;}
.x64_c01238{left:806.674830px;}
.x5c_c01238{left:808.006500px;}
.x78_c01238{left:817.476413px;}
.x7e_c01238{left:828.795378px;}
.x6a_c01238{left:839.578500px;}
.x65_c01238{left:846.552735px;}
.xa1_c01238{left:849.969530px;}
@media print{
.v0_c01238{vertical-align:0.000000pt;}
.ls0_c01238{letter-spacing:0.000000pt;}
.ws0_c01238{word-spacing:0.000000pt;}
._0_c01238{width:35.890053pt;}
.fs3_c01238{font-size:32.000000pt;}
.fs14_c01238{font-size:37.349029pt;}
.fs15_c01238{font-size:53.337173pt;}
.fs2_c01238{font-size:53.339333pt;}
.fs9_c01238{font-size:64.002048pt;}
.fs7_c01238{font-size:64.002592pt;}
.fsb_c01238{font-size:64.003200pt;}
.fs8_c01238{font-size:64.003872pt;}
.fsf_c01238{font-size:64.007200pt;}
.fs5_c01238{font-size:69.336141pt;}
.fs1_c01238{font-size:69.341133pt;}
.fsa_c01238{font-size:74.669056pt;}
.fs6_c01238{font-size:74.669691pt;}
.fs4_c01238{font-size:74.673984pt;}
.fs10_c01238{font-size:74.675066pt;}
.fs12_c01238{font-size:74.684734pt;}
.fs13_c01238{font-size:74.698057pt;}
.fsd_c01238{font-size:80.003240pt;}
.fs11_c01238{font-size:80.019358pt;}
.fs0_c01238{font-size:85.333333pt;}
.fsc_c01238{font-size:85.337600pt;}
.fse_c01238{font-size:90.670339pt;}
.y0_c01238{bottom:0.000000pt;}
.y131_c01238{bottom:75.829157pt;}
.y130_c01238{bottom:76.419717pt;}
.y12f_c01238{bottom:77.134389pt;}
.y12e_c01238{bottom:77.494293pt;}
.y12d_c01238{bottom:77.713221pt;}
.y12c_c01238{bottom:78.177493pt;}
.y12b_c01238{bottom:78.546005pt;}
.y12a_c01238{bottom:79.381173pt;}
.y129_c01238{bottom:79.712213pt;}
.y128_c01238{bottom:80.308293pt;}
.y127_c01238{bottom:80.881333pt;}
.y126_c01238{bottom:87.190921pt;}
.y125_c01238{bottom:99.616257pt;}
.y124_c01238{bottom:100.386855pt;}
.y123_c01238{bottom:101.873779pt;}
.y122_c01238{bottom:102.621832pt;}
.y121_c01238{bottom:103.703727pt;}
.y120_c01238{bottom:114.257233pt;}
.y11f_c01238{bottom:115.382356pt;}
.y11e_c01238{bottom:116.510417pt;}
.y11d_c01238{bottom:118.268049pt;}
.y11c_c01238{bottom:119.688895pt;}
.y11b_c01238{bottom:122.257483pt;}
.y11a_c01238{bottom:123.098483pt;}
.y119_c01238{bottom:124.546781pt;}
.y118_c01238{bottom:127.653880pt;}
.y117_c01238{bottom:130.171351pt;}
.y116_c01238{bottom:131.045333pt;}
.y115_c01238{bottom:146.710915pt;}
.y114_c01238{bottom:149.251451pt;}
.y113_c01238{bottom:151.068781pt;}
.y112_c01238{bottom:151.842901pt;}
.y111_c01238{bottom:153.127387pt;}
.y110_c01238{bottom:154.906781pt;}
.y10f_c01238{bottom:157.447171pt;}
.y10e_c01238{bottom:159.243429pt;}
.y10d_c01238{bottom:159.991608pt;}
.y10c_c01238{bottom:160.982013pt;}
.y10b_c01238{bottom:161.995896pt;}
.y10a_c01238{bottom:179.304565pt;}
.y109_c01238{bottom:179.942477pt;}
.y108_c01238{bottom:181.431995pt;}
.y107_c01238{bottom:183.006344pt;}
.y106_c01238{bottom:183.416923pt;}
.y105_c01238{bottom:185.335176pt;}
.y104_c01238{bottom:186.004885pt;}
.y103_c01238{bottom:187.099781pt;}
.y102_c01238{bottom:187.754355pt;}
.y101_c01238{bottom:188.609627pt;}
.y100_c01238{bottom:189.691997pt;}
.yff_c01238{bottom:190.325333pt;}
.yfe_c01238{bottom:220.414087pt;}
.yfd_c01238{bottom:220.414580pt;}
.yfc_c01238{bottom:220.414940pt;}
.yfb_c01238{bottom:220.415260pt;}
.yfa_c01238{bottom:246.307293pt;}
.yf9_c01238{bottom:246.645087pt;}
.yf8_c01238{bottom:247.286773pt;}
.yf7_c01238{bottom:247.820320pt;}
.yf6_c01238{bottom:248.483247pt;}
.yf5_c01238{bottom:248.905473pt;}
.yf4_c01238{bottom:249.552133pt;}
.yf3_c01238{bottom:249.989733pt;}
.yf2_c01238{bottom:250.855867pt;}
.yf1_c01238{bottom:251.175547pt;}
.yf0_c01238{bottom:251.494607pt;}
.yef_c01238{bottom:252.236873pt;}
.yee_c01238{bottom:277.405547pt;}
.yed_c01238{bottom:277.707267pt;}
.yec_c01238{bottom:278.748687pt;}
.yeb_c01238{bottom:279.191547pt;}
.yea_c01238{bottom:280.232147pt;}
.ye9_c01238{bottom:281.405947pt;}
.ye8_c01238{bottom:281.823067pt;}
.ye7_c01238{bottom:282.583287pt;}
.ye6_c01238{bottom:283.314267pt;}
.ye5_c01238{bottom:284.188907pt;}
.ye4_c01238{bottom:284.642667pt;}
.ye1_c01238{bottom:312.964776pt;}
.ye2_c01238{bottom:312.964788pt;}
.ye0_c01238{bottom:312.964953pt;}
.ydf_c01238{bottom:312.965101pt;}
.yde_c01238{bottom:312.965104pt;}
.ye3_c01238{bottom:312.965452pt;}
.ydd_c01238{bottom:339.279899pt;}
.ydc_c01238{bottom:339.551819pt;}
.ydb_c01238{bottom:339.819671pt;}
.yda_c01238{bottom:340.426631pt;}
.yd9_c01238{bottom:340.707359pt;}
.yd8_c01238{bottom:341.144495pt;}
.yd7_c01238{bottom:341.770343pt;}
.yd6_c01238{bottom:342.738203pt;}
.yd5_c01238{bottom:343.003895pt;}
.yd4_c01238{bottom:343.617383pt;}
.yd3_c01238{bottom:344.040587pt;}
.yd2_c01238{bottom:344.396891pt;}
.yd1_c01238{bottom:370.591243pt;}
.yd0_c01238{bottom:370.972552pt;}
.ycf_c01238{bottom:371.752588pt;}
.yce_c01238{bottom:373.153287pt;}
.ycd_c01238{bottom:373.927609pt;}
.ycc_c01238{bottom:374.301536pt;}
.ycb_c01238{bottom:374.809412pt;}
.yca_c01238{bottom:375.580577pt;}
.yc9_c01238{bottom:375.965044pt;}
.yc8_c01238{bottom:376.476305pt;}
.yc7_c01238{bottom:376.726427pt;}
.yc6_c01238{bottom:377.481351pt;}
.yc5_c01238{bottom:378.239180pt;}
.yc4_c01238{bottom:403.280435pt;}
.yc3_c01238{bottom:403.721171pt;}
.yc2_c01238{bottom:404.153231pt;}
.yc1_c01238{bottom:405.231083pt;}
.yc0_c01238{bottom:405.840299pt;}
.ybf_c01238{bottom:406.028039pt;}
.ybe_c01238{bottom:406.723955pt;}
.ybd_c01238{bottom:407.427899pt;}
.ybc_c01238{bottom:408.032951pt;}
.ybb_c01238{bottom:408.479879pt;}
.yba_c01238{bottom:435.542503pt;}
.yb9_c01238{bottom:435.783259pt;}
.yb8_c01238{bottom:436.432337pt;}
.yb7_c01238{bottom:436.551461pt;}
.yb6_c01238{bottom:437.084223pt;}
.yb5_c01238{bottom:437.315000pt;}
.yb4_c01238{bottom:437.724620pt;}
.yb3_c01238{bottom:438.203960pt;}
.yb2_c01238{bottom:438.611420pt;}
.yb1_c01238{bottom:438.782887pt;}
.yb0_c01238{bottom:438.960507pt;}
.yaf_c01238{bottom:467.645092pt;}
.yae_c01238{bottom:467.826537pt;}
.yad_c01238{bottom:468.350159pt;}
.yac_c01238{bottom:468.941967pt;}
.yab_c01238{bottom:469.584101pt;}
.yaa_c01238{bottom:469.998193pt;}
.ya9_c01238{bottom:470.167740pt;}
.ya8_c01238{bottom:470.349173pt;}
.ya7_c01238{bottom:470.640064pt;}
.ya6_c01238{bottom:498.478009pt;}
.ya5_c01238{bottom:499.441141pt;}
.ya4_c01238{bottom:499.628893pt;}
.ya3_c01238{bottom:499.979089pt;}
.ya2_c01238{bottom:500.771893pt;}
.ya1_c01238{bottom:501.216601pt;}
.ya0_c01238{bottom:501.826045pt;}
.y9f_c01238{bottom:502.279645pt;}
.y9e_c01238{bottom:502.545397pt;}
.y9d_c01238{bottom:503.422441pt;}
.y9c_c01238{bottom:503.761333pt;}
.y9b_c01238{bottom:529.522733pt;}
.y9a_c01238{bottom:529.841200pt;}
.y99_c01238{bottom:530.541693pt;}
.y98_c01238{bottom:530.811080pt;}
.y97_c01238{bottom:531.085200pt;}
.y96_c01238{bottom:532.136733pt;}
.y95_c01238{bottom:532.310907pt;}
.y94_c01238{bottom:532.747747pt;}
.y93_c01238{bottom:533.472120pt;}
.y92_c01238{bottom:533.724893pt;}
.y91_c01238{bottom:534.523613pt;}
.y90_c01238{bottom:534.955440pt;}
.y8f_c01238{bottom:561.031307pt;}
.y8e_c01238{bottom:561.299253pt;}
.y8d_c01238{bottom:561.638493pt;}
.y8c_c01238{bottom:562.360387pt;}
.y8b_c01238{bottom:563.145947pt;}
.y8a_c01238{bottom:563.411693pt;}
.y89_c01238{bottom:563.943707pt;}
.y88_c01238{bottom:564.222693pt;}
.y87_c01238{bottom:564.918253pt;}
.y86_c01238{bottom:565.439147pt;}
.y85_c01238{bottom:592.873000pt;}
.y84_c01238{bottom:593.862080pt;}
.y83_c01238{bottom:594.159547pt;}
.y82_c01238{bottom:594.651520pt;}
.y81_c01238{bottom:595.042507pt;}
.y80_c01238{bottom:595.534933pt;}
.y7f_c01238{bottom:595.834840pt;}
.y7e_c01238{bottom:596.809307pt;}
.y7d_c01238{bottom:597.104560pt;}
.y7c_c01238{bottom:597.289467pt;}
.y7b_c01238{bottom:597.601333pt;}
.y7a_c01238{bottom:625.565056pt;}
.y79_c01238{bottom:625.834400pt;}
.y78_c01238{bottom:626.361771pt;}
.y77_c01238{bottom:627.077365pt;}
.y76_c01238{bottom:627.424981pt;}
.y75_c01238{bottom:628.556469pt;}
.y74_c01238{bottom:654.569259pt;}
.y73_c01238{bottom:655.107509pt;}
.y72_c01238{bottom:655.376629pt;}
.y71_c01238{bottom:656.176640pt;}
.y70_c01238{bottom:656.617600pt;}
.y6f_c01238{bottom:657.765237pt;}
.y6e_c01238{bottom:658.197088pt;}
.y6d_c01238{bottom:658.382219pt;}
.y6c_c01238{bottom:659.085003pt;}
.y6b_c01238{bottom:659.518731pt;}
.y6a_c01238{bottom:685.046411pt;}
.y69_c01238{bottom:685.605216pt;}
.y68_c01238{bottom:685.989077pt;}
.y67_c01238{bottom:686.233173pt;}
.y66_c01238{bottom:686.774624pt;}
.y65_c01238{bottom:687.260395pt;}
.y64_c01238{bottom:687.573227pt;}
.y63_c01238{bottom:687.805557pt;}
.y62_c01238{bottom:688.268491pt;}
.y61_c01238{bottom:688.742731pt;}
.y60_c01238{bottom:688.978869pt;}
.y5f_c01238{bottom:689.210955pt;}
.y5e_c01238{bottom:689.520000pt;}
.y5d_c01238{bottom:720.893476pt;}
.y5c_c01238{bottom:721.563787pt;}
.y5b_c01238{bottom:721.870041pt;}
.y5a_c01238{bottom:722.195025pt;}
.y59_c01238{bottom:722.825853pt;}
.y58_c01238{bottom:723.361333pt;}
.y57_c01238{bottom:749.192380pt;}
.y56_c01238{bottom:749.956475pt;}
.y55_c01238{bottom:750.351732pt;}
.y54_c01238{bottom:751.373103pt;}
.y53_c01238{bottom:752.143992pt;}
.y52_c01238{bottom:753.279637pt;}
.y51_c01238{bottom:753.535520pt;}
.y50_c01238{bottom:754.555113pt;}
.y48_c01238{bottom:783.682715pt;}
.y47_c01238{bottom:783.682863pt;}
.y49_c01238{bottom:783.682887pt;}
.y4a_c01238{bottom:783.683459pt;}
.y4f_c01238{bottom:783.683688pt;}
.y4c_c01238{bottom:783.683693pt;}
.y4e_c01238{bottom:783.683836pt;}
.y4d_c01238{bottom:783.683851pt;}
.y4b_c01238{bottom:783.684001pt;}
.y46_c01238{bottom:812.049811pt;}
.y45_c01238{bottom:812.524901pt;}
.y44_c01238{bottom:812.885628pt;}
.y43_c01238{bottom:814.187497pt;}
.y42_c01238{bottom:815.111476pt;}
.y41_c01238{bottom:815.597873pt;}
.y40_c01238{bottom:816.183140pt;}
.y3f_c01238{bottom:816.539929pt;}
.y3e_c01238{bottom:817.701400pt;}
.y3d_c01238{bottom:818.054900pt;}
.y3c_c01238{bottom:818.636313pt;}
.y3b_c01238{bottom:843.023595pt;}
.y3a_c01238{bottom:843.404532pt;}
.y39_c01238{bottom:844.427703pt;}
.y38_c01238{bottom:845.332541pt;}
.y37_c01238{bottom:845.588364pt;}
.y36_c01238{bottom:846.359613pt;}
.y35_c01238{bottom:846.742459pt;}
.y34_c01238{bottom:847.366591pt;}
.y33_c01238{bottom:847.771079pt;}
.y32_c01238{bottom:848.148415pt;}
.y31_c01238{bottom:849.637785pt;}
.y30_c01238{bottom:850.330591pt;}
.y2f_c01238{bottom:874.753721pt;}
.y2e_c01238{bottom:874.973871pt;}
.y2d_c01238{bottom:875.657195pt;}
.y2c_c01238{bottom:876.135581pt;}
.y2b_c01238{bottom:876.479523pt;}
.y2a_c01238{bottom:876.963128pt;}
.y29_c01238{bottom:877.310176pt;}
.y28_c01238{bottom:877.714041pt;}
.y27_c01238{bottom:877.923729pt;}
.y26_c01238{bottom:878.130923pt;}
.y25_c01238{bottom:878.395963pt;}
.y24_c01238{bottom:904.816564pt;}
.y23_c01238{bottom:905.557176pt;}
.y22_c01238{bottom:906.760309pt;}
.y21_c01238{bottom:907.199925pt;}
.y20_c01238{bottom:907.646396pt;}
.y1f_c01238{bottom:908.536012pt;}
.y1e_c01238{bottom:909.122783pt;}
.y1d_c01238{bottom:909.565796pt;}
.y1c_c01238{bottom:911.163479pt;}
.y1b_c01238{bottom:911.610081pt;}
.y1a_c01238{bottom:912.959841pt;}
.y19_c01238{bottom:936.108900pt;}
.y18_c01238{bottom:936.365952pt;}
.y17_c01238{bottom:936.806628pt;}
.y16_c01238{bottom:937.785480pt;}
.y15_c01238{bottom:938.740164pt;}
.y14_c01238{bottom:939.022824pt;}
.y13_c01238{bottom:939.297108pt;}
.y12_c01238{bottom:940.090032pt;}
.y11_c01238{bottom:940.683948pt;}
.y10_c01238{bottom:941.040000pt;}
.yf_c01238{bottom:967.214069pt;}
.ye_c01238{bottom:968.041021pt;}
.yd_c01238{bottom:968.315813pt;}
.yc_c01238{bottom:969.012211pt;}
.yb_c01238{bottom:969.428627pt;}
.ya_c01238{bottom:970.503901pt;}
.y9_c01238{bottom:971.074765pt;}
.y8_c01238{bottom:972.449715pt;}
.y7_c01238{bottom:973.682667pt;}
.y5_c01238{bottom:1020.121587pt;}
.y6_c01238{bottom:1021.648000pt;}
.y4_c01238{bottom:1034.112127pt;}
.y3_c01238{bottom:1035.451287pt;}
.y2_c01238{bottom:1036.322667pt;}
.y1_c01238{bottom:1101.824000pt;}
.h5_c01238{height:32.000000pt;}
.h16_c01238{height:37.349029pt;}
.h17_c01238{height:53.337173pt;}
.h4_c01238{height:53.339333pt;}
.hb_c01238{height:64.002048pt;}
.h9_c01238{height:64.002592pt;}
.hd_c01238{height:64.003200pt;}
.ha_c01238{height:64.003872pt;}
.h11_c01238{height:64.007200pt;}
.h7_c01238{height:69.336141pt;}
.h3_c01238{height:69.341133pt;}
.hc_c01238{height:74.669056pt;}
.h8_c01238{height:74.669691pt;}
.h6_c01238{height:74.673984pt;}
.h12_c01238{height:74.675066pt;}
.h14_c01238{height:74.684734pt;}
.h15_c01238{height:74.698057pt;}
.hf_c01238{height:80.003240pt;}
.h13_c01238{height:80.019358pt;}
.h2_c01238{height:85.333333pt;}
.he_c01238{height:85.337600pt;}
.h10_c01238{height:90.670339pt;}
.h1_c01238{height:1118.666667pt;}
.h0_c01238{height:1118.880000pt;}
.w1_c01238{width:799.333333pt;}
.w0_c01238{width:799.440000pt;}
.x0_c01238{left:0.000000pt;}
.x9d_c01238{left:143.925013pt;}
.x9a_c01238{left:147.193333pt;}
.x1c_c01238{left:148.408373pt;}
.x4c_c01238{left:149.671989pt;}
.x36_c01238{left:150.618376pt;}
.x13_c01238{left:151.606667pt;}
.x66_c01238{left:159.256000pt;}
.x6f_c01238{left:177.759407pt;}
.x3d_c01238{left:179.520827pt;}
.x9e_c01238{left:183.992667pt;}
.x97_c01238{left:186.917555pt;}
.x27_c01238{left:188.792876pt;}
.x14_c01238{left:191.168000pt;}
.xa2_c01238{left:194.984000pt;}
.x60_c01238{left:196.664413pt;}
.x4d_c01238{left:197.887605pt;}
.x37_c01238{left:199.070401pt;}
.x2e_c01238{left:200.960111pt;}
.x5d_c01238{left:206.972027pt;}
.x3e_c01238{left:209.281905pt;}
.x9f_c01238{left:211.674252pt;}
.x8e_c01238{left:215.625813pt;}
.x28_c01238{left:218.333404pt;}
.x86_c01238{left:225.125641pt;}
.x6b_c01238{left:227.432537pt;}
.x38_c01238{left:228.569609pt;}
.x7f_c01238{left:235.296980pt;}
.x1d_c01238{left:238.376847pt;}
.x88_c01238{left:244.125333pt;}
.x54_c01238{left:245.394667pt;}
.x3f_c01238{left:247.443668pt;}
.xa_c01238{left:248.718667pt;}
.x92_c01238{left:254.403100pt;}
.x6c_c01238{left:255.753305pt;}
.x15_c01238{left:257.158667pt;}
.x79_c01238{left:264.814661pt;}
.x76_c01238{left:265.816367pt;}
.xa0_c01238{left:266.766795pt;}
.x1e_c01238{left:268.145905pt;}
.xa3_c01238{left:272.244000pt;}
.x93_c01238{left:273.318667pt;}
.x70_c01238{left:274.235344pt;}
.x4e_c01238{left:275.901643pt;}
.x4_c01238{left:277.725333pt;}
.x5e_c01238{left:284.262133pt;}
.x61_c01238{left:285.470640pt;}
.x44_c01238{left:286.445333pt;}
.x55_c01238{left:295.072000pt;}
.x4f_c01238{left:296.542816pt;}
.x80_c01238{left:303.462313pt;}
.x29_c01238{left:305.914976pt;}
.x45_c01238{left:314.286667pt;}
.x2f_c01238{left:315.478649pt;}
.x94_c01238{left:322.517333pt;}
.x67_c01238{left:323.888000pt;}
.x39_c01238{left:325.322993pt;}
.x81_c01238{left:332.983647pt;}
.x5_c01238{left:335.817333pt;}
.xb_c01238{left:336.786667pt;}
.xa4_c01238{left:341.841333pt;}
.x30_c01238{left:344.514939pt;}
.x8_c01238{left:345.600000pt;}
.x7a_c01238{left:352.868815pt;}
.x71_c01238{left:354.164171pt;}
.x2a_c01238{left:355.587876pt;}
.x95_c01238{left:361.393333pt;}
.x46_c01238{left:364.225333pt;}
.x9b_c01238{left:371.281333pt;}
.xa5_c01238{left:372.550667pt;}
.x1f_c01238{left:374.697491pt;}
.x16_c01238{left:375.737333pt;}
.x1_c01238{left:376.800000pt;}
.x89_c01238{left:381.417333pt;}
.x87_c01238{left:391.692463pt;}
.x47_c01238{left:393.266667pt;}
.x52_c01238{left:394.209067pt;}
.x2_c01238{left:397.680000pt;}
.x20_c01238{left:404.215895pt;}
.x17_c01238{left:407.144000pt;}
.xa6_c01238{left:411.240000pt;}
.x7b_c01238{left:412.181345pt;}
.x98_c01238{left:420.619688pt;}
.x56_c01238{left:422.044000pt;}
.x31_c01238{left:423.692095pt;}
.x6_c01238{left:425.094667pt;}
.xa7_c01238{left:429.484000pt;}
.x48_c01238{left:432.370667pt;}
.x9_c01238{left:433.920000pt;}
.xc_c01238{left:434.997333pt;}
.x3_c01238{left:437.760000pt;}
.x82_c01238{left:440.523647pt;}
.x68_c01238{left:442.004000pt;}
.x21_c01238{left:443.336449pt;}
.x7_c01238{left:444.258500pt;}
.x8f_c01238{left:451.093287pt;}
.x57_c01238{left:452.034667pt;}
.x32_c01238{left:453.192372pt;}
.xa8_c01238{left:459.476000pt;}
.x72_c01238{left:460.729705pt;}
.x62_c01238{left:461.888400pt;}
.x40_c01238{left:462.973128pt;}
.x50_c01238{left:471.977408pt;}
.x2b_c01238{left:473.910012pt;}
.xd_c01238{left:475.773333pt;}
.x7c_c01238{left:480.082909pt;}
.x53_c01238{left:482.797696pt;}
.x90_c01238{left:489.466253pt;}
.x41_c01238{left:492.014147pt;}
.x49_c01238{left:493.092000pt;}
.x58_c01238{left:501.277333pt;}
.x22_c01238{left:502.623912pt;}
.x77_c01238{left:509.907033pt;}
.x18_c01238{left:513.220000pt;}
.xa9_c01238{left:519.032000pt;}
.x3a_c01238{left:521.365701pt;}
.x42_c01238{left:522.255261pt;}
.x6d_c01238{left:530.579400pt;}
.x23_c01238{left:532.378304pt;}
.x8a_c01238{left:538.160000pt;}
.x59_c01238{left:540.376000pt;}
.x2c_c01238{left:542.324581pt;}
.x73_c01238{left:549.557439pt;}
.xe_c01238{left:552.578667pt;}
.x83_c01238{left:558.632980pt;}
.x4a_c01238{left:560.773333pt;}
.x24_c01238{left:561.667387pt;}
.x99_c01238{left:568.273389pt;}
.x74_c01238{left:569.460645pt;}
.x43_c01238{left:570.843233pt;}
.x96_c01238{left:577.212000pt;}
.x63_c01238{left:578.776240pt;}
.xf_c01238{left:582.322667pt;}
.x9c_c01238{left:587.789333pt;}
.x5a_c01238{left:589.573333pt;}
.x4b_c01238{left:591.285333pt;}
.x91_c01238{left:598.215440pt;}
.x33_c01238{left:601.769687pt;}
.x8b_c01238{left:607.533333pt;}
.x51_c01238{left:609.764299pt;}
.x69_c01238{left:618.416000pt;}
.x5b_c01238{left:619.320000pt;}
.x19_c01238{left:621.981333pt;}
.x3b_c01238{left:629.866773pt;}
.x10_c01238{left:632.065333pt;}
.x8c_c01238{left:637.057333pt;}
.x5f_c01238{left:638.737667pt;}
.x2d_c01238{left:640.029012pt;}
.x25_c01238{left:641.863055pt;}
.x6e_c01238{left:648.182580pt;}
.x11_c01238{left:651.693333pt;}
.x84_c01238{left:657.264980pt;}
.x3c_c01238{left:659.872624pt;}
.x1a_c01238{left:670.945333pt;}
.x75_c01238{left:677.731573pt;}
.x34_c01238{left:680.489521pt;}
.x85_c01238{left:687.026313pt;}
.x26_c01238{left:691.261724pt;}
.x1b_c01238{left:699.506667pt;}
.x8d_c01238{left:706.485333pt;}
.x7d_c01238{left:707.377392pt;}
.x35_c01238{left:709.777799pt;}
.x12_c01238{left:710.761333pt;}
.x64_c01238{left:717.044293pt;}
.x5c_c01238{left:718.228000pt;}
.x78_c01238{left:726.645700pt;}
.x7e_c01238{left:736.707003pt;}
.x6a_c01238{left:746.292000pt;}
.x65_c01238{left:752.491320pt;}
.xa1_c01238{left:755.528471pt;}
}





/* 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_c01239 {
    display:none;
  }
  .loading-indicator_c01239.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01239 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_c01239 { 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_c01239" -> "#page-container .classname_c01239")
 */
.pf_c01239 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01239 { /* 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_c01239.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01239 { /* 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_c01239 { /* 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_c01239 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01239 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01239 {overflow:visible;}
  }
}
.c_c01239 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01239 { /* 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_c01239:after { /* webkit #35443 */
  content: '';
}
.t_c01239:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01239 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 */
}
.__c01239 { /* 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_c01239 { /* info for Javascript */
  display:none;
}
.l_c01239 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01239 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01239 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01239: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_c01239 {
    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_c01239.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01239.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_c01239 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01239{font-family:sans-serif;visibility:hidden;}
.sc__c01239{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01239{-webkit-text-stroke:0px transparent;}
}
.y0_c01239{bottom:0.000000px;}
.h1_c01239{height:1258.500000px;}
.h0_c01239{height:1258.740000px;}
.w1_c01239{width:899.250000px;}
.w0_c01239{width:899.370000px;}
.x0_c01239{left:0.000000px;}
@media print{
.y0_c01239{bottom:0.000000pt;}
.h1_c01239{height:1118.666667pt;}
.h0_c01239{height:1118.880000pt;}
.w1_c01239{width:799.333333pt;}
.w0_c01239{width:799.440000pt;}
.x0_c01239{left:0.000000pt;}
}





/* 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_c01240 {
    display:none;
  }
  .loading-indicator_c01240.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01240 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_c01240 { 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_c01240" -> "#page-container .classname_c01240")
 */
.pf_c01240 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01240 { /* 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_c01240.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01240 { /* 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_c01240 { /* 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_c01240 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01240 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01240 {overflow:visible;}
  }
}
.c_c01240 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01240 { /* 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_c01240:after { /* webkit #35443 */
  content: '';
}
.t_c01240:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01240 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 */
}
.__c01240 { /* 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_c01240 { /* info for Javascript */
  display:none;
}
.l_c01240 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01240 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01240 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01240: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_c01240 {
    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_c01240.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01240.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_c01240 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01240{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01240;src:url('chunks/assets/font_c605e72f209fc835e906f064.woff2')format("woff");}.ff1_c01240{font-family:ff1_c01240;line-height:1.000000;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;}
.m80_c01240{transform:matrix(0.009089,0.000164,-0.004499,0.249960,0,0);-ms-transform:matrix(0.009089,0.000164,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.009089,0.000164,-0.004499,0.249960,0,0);}
.m8d_c01240{transform:matrix(0.012478,0.000225,-0.004499,0.249960,0,0);-ms-transform:matrix(0.012478,0.000225,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.012478,0.000225,-0.004499,0.249960,0,0);}
.m69_c01240{transform:matrix(0.014683,0.000264,-0.004499,0.249960,0,0);-ms-transform:matrix(0.014683,0.000264,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.014683,0.000264,-0.004499,0.249960,0,0);}
.m133_c01240{transform:matrix(0.083855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.083855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.083855,0.000000,0.000000,0.250000,0,0);}
.ma9_c01240{transform:matrix(0.116439,0.002678,-0.005748,0.249934,0,0);-ms-transform:matrix(0.116439,0.002678,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.116439,0.002678,-0.005748,0.249934,0,0);}
.ma2_c01240{transform:matrix(0.121335,0.002184,-0.004499,0.249960,0,0);-ms-transform:matrix(0.121335,0.002184,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.121335,0.002184,-0.004499,0.249960,0,0);}
.m12a_c01240{transform:matrix(0.129891,0.005201,-0.010002,0.249800,0,0);-ms-transform:matrix(0.129891,0.005201,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.129891,0.005201,-0.010002,0.249800,0,0);}
.m12b_c01240{transform:matrix(0.135112,0.005410,-0.010002,0.249800,0,0);-ms-transform:matrix(0.135112,0.005410,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.135112,0.005410,-0.010002,0.249800,0,0);}
.ma5_c01240{transform:matrix(0.138568,0.002494,-0.004499,0.249960,0,0);-ms-transform:matrix(0.138568,0.002494,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.138568,0.002494,-0.004499,0.249960,0,0);}
.m12e_c01240{transform:matrix(0.140263,0.005616,-0.010002,0.249800,0,0);-ms-transform:matrix(0.140263,0.005616,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.140263,0.005616,-0.010002,0.249800,0,0);}
.m128_c01240{transform:matrix(0.141187,0.005653,-0.010002,0.249800,0,0);-ms-transform:matrix(0.141187,0.005653,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.141187,0.005653,-0.010002,0.249800,0,0);}
.ma4_c01240{transform:matrix(0.141792,0.002552,-0.004499,0.249960,0,0);-ms-transform:matrix(0.141792,0.002552,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.141792,0.002552,-0.004499,0.249960,0,0);}
.ma8_c01240{transform:matrix(0.142482,0.002565,-0.004499,0.249960,0,0);-ms-transform:matrix(0.142482,0.002565,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.142482,0.002565,-0.004499,0.249960,0,0);}
.ma1_c01240{transform:matrix(0.142772,0.002570,-0.004499,0.249960,0,0);-ms-transform:matrix(0.142772,0.002570,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.142772,0.002570,-0.004499,0.249960,0,0);}
.m129_c01240{transform:matrix(0.142920,0.005723,-0.010002,0.249800,0,0);-ms-transform:matrix(0.142920,0.005723,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.142920,0.005723,-0.010002,0.249800,0,0);}
.m130_c01240{transform:matrix(0.143640,0.005751,-0.010002,0.249800,0,0);-ms-transform:matrix(0.143640,0.005751,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.143640,0.005751,-0.010002,0.249800,0,0);}
.ma7_c01240{transform:matrix(0.143777,0.002588,-0.004499,0.249960,0,0);-ms-transform:matrix(0.143777,0.002588,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.143777,0.002588,-0.004499,0.249960,0,0);}
.m12d_c01240{transform:matrix(0.143915,0.005762,-0.010002,0.249800,0,0);-ms-transform:matrix(0.143915,0.005762,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.143915,0.005762,-0.010002,0.249800,0,0);}
.m9f_c01240{transform:matrix(0.145616,0.002621,-0.004499,0.249960,0,0);-ms-transform:matrix(0.145616,0.002621,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.145616,0.002621,-0.004499,0.249960,0,0);}
.ma0_c01240{transform:matrix(0.145626,0.002621,-0.004499,0.249960,0,0);-ms-transform:matrix(0.145626,0.002621,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.145626,0.002621,-0.004499,0.249960,0,0);}
.ma6_c01240{transform:matrix(0.149291,0.002687,-0.004499,0.249960,0,0);-ms-transform:matrix(0.149291,0.002687,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.149291,0.002687,-0.004499,0.249960,0,0);}
.ma3_c01240{transform:matrix(0.150116,0.002702,-0.004499,0.249960,0,0);-ms-transform:matrix(0.150116,0.002702,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.150116,0.002702,-0.004499,0.249960,0,0);}
.m127_c01240{transform:matrix(0.150240,0.006016,-0.010002,0.249800,0,0);-ms-transform:matrix(0.150240,0.006016,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.150240,0.006016,-0.010002,0.249800,0,0);}
.m12f_c01240{transform:matrix(0.151199,0.006054,-0.010002,0.249800,0,0);-ms-transform:matrix(0.151199,0.006054,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.151199,0.006054,-0.010002,0.249800,0,0);}
.m9e_c01240{transform:matrix(0.157375,0.002833,-0.004499,0.249960,0,0);-ms-transform:matrix(0.157375,0.002833,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.157375,0.002833,-0.004499,0.249960,0,0);}
.m76_c01240{transform:matrix(0.158259,0.002849,-0.004499,0.249960,0,0);-ms-transform:matrix(0.158259,0.002849,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.158259,0.002849,-0.004499,0.249960,0,0);}
.m12c_c01240{transform:matrix(0.162954,0.006525,-0.010002,0.249800,0,0);-ms-transform:matrix(0.162954,0.006525,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.162954,0.006525,-0.010002,0.249800,0,0);}
.m11a_c01240{transform:matrix(0.182852,0.002926,-0.003999,0.249968,0,0);-ms-transform:matrix(0.182852,0.002926,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.182852,0.002926,-0.003999,0.249968,0,0);}
.m9d_c01240{transform:matrix(0.183195,0.003298,-0.004499,0.249960,0,0);-ms-transform:matrix(0.183195,0.003298,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.183195,0.003298,-0.004499,0.249960,0,0);}
.m74_c01240{transform:matrix(0.189589,0.003413,-0.004499,0.249960,0,0);-ms-transform:matrix(0.189589,0.003413,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.189589,0.003413,-0.004499,0.249960,0,0);}
.m2e_c01240{transform:matrix(0.189804,0.003416,-0.004499,0.249960,0,0);-ms-transform:matrix(0.189804,0.003416,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.189804,0.003416,-0.004499,0.249960,0,0);}
.mf3_c01240{transform:matrix(0.191395,0.004593,-0.005998,0.249928,0,0);-ms-transform:matrix(0.191395,0.004593,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.191395,0.004593,-0.005998,0.249928,0,0);}
.me9_c01240{transform:matrix(0.192040,0.004609,-0.005998,0.249928,0,0);-ms-transform:matrix(0.192040,0.004609,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.192040,0.004609,-0.005998,0.249928,0,0);}
.m70_c01240{transform:matrix(0.195418,0.003518,-0.004499,0.249960,0,0);-ms-transform:matrix(0.195418,0.003518,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.195418,0.003518,-0.004499,0.249960,0,0);}
.m7a_c01240{transform:matrix(0.195643,0.003522,-0.004499,0.249960,0,0);-ms-transform:matrix(0.195643,0.003522,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.195643,0.003522,-0.004499,0.249960,0,0);}
.m100_c01240{transform:matrix(0.196308,0.004711,-0.005998,0.249928,0,0);-ms-transform:matrix(0.196308,0.004711,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.196308,0.004711,-0.005998,0.249928,0,0);}
.mf1_c01240{transform:matrix(0.197353,0.004736,-0.005998,0.249928,0,0);-ms-transform:matrix(0.197353,0.004736,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.197353,0.004736,-0.005998,0.249928,0,0);}
.m53_c01240{transform:matrix(0.197388,0.003553,-0.004499,0.249960,0,0);-ms-transform:matrix(0.197388,0.003553,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.197388,0.003553,-0.004499,0.249960,0,0);}
.m49_c01240{transform:matrix(0.197618,0.003557,-0.004499,0.249960,0,0);-ms-transform:matrix(0.197618,0.003557,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.197618,0.003557,-0.004499,0.249960,0,0);}
.m55_c01240{transform:matrix(0.199298,0.003587,-0.004499,0.249960,0,0);-ms-transform:matrix(0.199298,0.003587,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.199298,0.003587,-0.004499,0.249960,0,0);}
.mef_c01240{transform:matrix(0.199982,0.004800,-0.005998,0.249928,0,0);-ms-transform:matrix(0.199982,0.004800,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.199982,0.004800,-0.005998,0.249928,0,0);}
.m0_c01240{transform:matrix(0.200520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200520,0.000000,0.000000,0.250000,0,0);}
.m11e_c01240{transform:matrix(0.200729,0.003212,-0.003999,0.249968,0,0);-ms-transform:matrix(0.200729,0.003212,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.200729,0.003212,-0.003999,0.249968,0,0);}
.m45_c01240{transform:matrix(0.201277,0.003623,-0.004499,0.249960,0,0);-ms-transform:matrix(0.201277,0.003623,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.201277,0.003623,-0.004499,0.249960,0,0);}
.m73_c01240{transform:matrix(0.201372,0.003625,-0.004499,0.249960,0,0);-ms-transform:matrix(0.201372,0.003625,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.201372,0.003625,-0.004499,0.249960,0,0);}
.m118_c01240{transform:matrix(0.202264,0.003236,-0.003999,0.249968,0,0);-ms-transform:matrix(0.202264,0.003236,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.202264,0.003236,-0.003999,0.249968,0,0);}
.mab_c01240{transform:matrix(0.204276,0.004698,-0.005748,0.249934,0,0);-ms-transform:matrix(0.204276,0.004698,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.204276,0.004698,-0.005748,0.249934,0,0);}
.m15f_c01240{transform:matrix(0.205051,0.004921,-0.005998,0.249928,0,0);-ms-transform:matrix(0.205051,0.004921,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.205051,0.004921,-0.005998,0.249928,0,0);}
.m4e_c01240{transform:matrix(0.205057,0.003691,-0.004499,0.249960,0,0);-ms-transform:matrix(0.205057,0.003691,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.205057,0.003691,-0.004499,0.249960,0,0);}
.me0_c01240{transform:matrix(0.205546,0.004933,-0.005998,0.249928,0,0);-ms-transform:matrix(0.205546,0.004933,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.205546,0.004933,-0.005998,0.249928,0,0);}
.m6c_c01240{transform:matrix(0.207136,0.003728,-0.004499,0.249960,0,0);-ms-transform:matrix(0.207136,0.003728,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.207136,0.003728,-0.004499,0.249960,0,0);}
.m2a_c01240{transform:matrix(0.207391,0.003733,-0.004499,0.249960,0,0);-ms-transform:matrix(0.207391,0.003733,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.207391,0.003733,-0.004499,0.249960,0,0);}
.m35_c01240{transform:matrix(0.207601,0.003737,-0.004499,0.249960,0,0);-ms-transform:matrix(0.207601,0.003737,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.207601,0.003737,-0.004499,0.249960,0,0);}
.m116_c01240{transform:matrix(0.208253,0.003332,-0.003999,0.249968,0,0);-ms-transform:matrix(0.208253,0.003332,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.208253,0.003332,-0.003999,0.249968,0,0);}
.mdd_c01240{transform:matrix(0.208350,0.005000,-0.005998,0.249928,0,0);-ms-transform:matrix(0.208350,0.005000,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.208350,0.005000,-0.005998,0.249928,0,0);}
.m5a_c01240{transform:matrix(0.208716,0.003757,-0.004499,0.249960,0,0);-ms-transform:matrix(0.208716,0.003757,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.208716,0.003757,-0.004499,0.249960,0,0);}
.m25_c01240{transform:matrix(0.209186,0.003765,-0.004499,0.249960,0,0);-ms-transform:matrix(0.209186,0.003765,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.209186,0.003765,-0.004499,0.249960,0,0);}
.mc1_c01240{transform:matrix(0.209411,0.006282,-0.007497,0.249888,0,0);-ms-transform:matrix(0.209411,0.006282,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.209411,0.006282,-0.007497,0.249888,0,0);}
.md7_c01240{transform:matrix(0.209485,0.005028,-0.005998,0.249928,0,0);-ms-transform:matrix(0.209485,0.005028,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.209485,0.005028,-0.005998,0.249928,0,0);}
.m163_c01240{transform:matrix(0.209820,0.005036,-0.005998,0.249928,0,0);-ms-transform:matrix(0.209820,0.005036,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.209820,0.005036,-0.005998,0.249928,0,0);}
.m3_c01240{transform:matrix(0.209846,0.003777,-0.004499,0.249960,0,0);-ms-transform:matrix(0.209846,0.003777,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.209846,0.003777,-0.004499,0.249960,0,0);}
.mc4_c01240{transform:matrix(0.210460,0.006314,-0.007497,0.249888,0,0);-ms-transform:matrix(0.210460,0.006314,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.210460,0.006314,-0.007497,0.249888,0,0);}
.m86_c01240{transform:matrix(0.210461,0.003788,-0.004499,0.249960,0,0);-ms-transform:matrix(0.210461,0.003788,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.210461,0.003788,-0.004499,0.249960,0,0);}
.mf0_c01240{transform:matrix(0.210554,0.005053,-0.005998,0.249928,0,0);-ms-transform:matrix(0.210554,0.005053,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.210554,0.005053,-0.005998,0.249928,0,0);}
.m11c_c01240{transform:matrix(0.210918,0.003375,-0.003999,0.249968,0,0);-ms-transform:matrix(0.210918,0.003375,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.210918,0.003375,-0.003999,0.249968,0,0);}
.m47_c01240{transform:matrix(0.210991,0.003798,-0.004499,0.249960,0,0);-ms-transform:matrix(0.210991,0.003798,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.210991,0.003798,-0.004499,0.249960,0,0);}
.m78_c01240{transform:matrix(0.211081,0.003799,-0.004499,0.249960,0,0);-ms-transform:matrix(0.211081,0.003799,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.211081,0.003799,-0.004499,0.249960,0,0);}
.m4a_c01240{transform:matrix(0.211911,0.003814,-0.004499,0.249960,0,0);-ms-transform:matrix(0.211911,0.003814,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.211911,0.003814,-0.004499,0.249960,0,0);}
.mac_c01240{transform:matrix(0.212129,0.004879,-0.005748,0.249934,0,0);-ms-transform:matrix(0.212129,0.004879,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.212129,0.004879,-0.005748,0.249934,0,0);}
.m11b_c01240{transform:matrix(0.212693,0.003403,-0.003999,0.249968,0,0);-ms-transform:matrix(0.212693,0.003403,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.212693,0.003403,-0.003999,0.249968,0,0);}
.m4b_c01240{transform:matrix(0.213105,0.003836,-0.004499,0.249960,0,0);-ms-transform:matrix(0.213105,0.003836,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.213105,0.003836,-0.004499,0.249960,0,0);}
.me2_c01240{transform:matrix(0.213239,0.005118,-0.005998,0.249928,0,0);-ms-transform:matrix(0.213239,0.005118,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.213239,0.005118,-0.005998,0.249928,0,0);}
.m6b_c01240{transform:matrix(0.213750,0.003848,-0.004499,0.249960,0,0);-ms-transform:matrix(0.213750,0.003848,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.213750,0.003848,-0.004499,0.249960,0,0);}
.m119_c01240{transform:matrix(0.214413,0.003431,-0.003999,0.249968,0,0);-ms-transform:matrix(0.214413,0.003431,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.214413,0.003431,-0.003999,0.249968,0,0);}
.m19_c01240{transform:matrix(0.214630,0.003863,-0.004499,0.249960,0,0);-ms-transform:matrix(0.214630,0.003863,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.214630,0.003863,-0.004499,0.249960,0,0);}
.m84_c01240{transform:matrix(0.215040,0.003871,-0.004499,0.249960,0,0);-ms-transform:matrix(0.215040,0.003871,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.215040,0.003871,-0.004499,0.249960,0,0);}
.m9_c01240{transform:matrix(0.215115,0.003872,-0.004499,0.249960,0,0);-ms-transform:matrix(0.215115,0.003872,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.215115,0.003872,-0.004499,0.249960,0,0);}
.m117_c01240{transform:matrix(0.215172,0.003443,-0.003999,0.249968,0,0);-ms-transform:matrix(0.215172,0.003443,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.215172,0.003443,-0.003999,0.249968,0,0);}
.m36_c01240{transform:matrix(0.215320,0.003876,-0.004499,0.249960,0,0);-ms-transform:matrix(0.215320,0.003876,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.215320,0.003876,-0.004499,0.249960,0,0);}
.mea_c01240{transform:matrix(0.215508,0.005172,-0.005998,0.249928,0,0);-ms-transform:matrix(0.215508,0.005172,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.215508,0.005172,-0.005998,0.249928,0,0);}
.ma_c01240{transform:matrix(0.215640,0.003882,-0.004499,0.249960,0,0);-ms-transform:matrix(0.215640,0.003882,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.215640,0.003882,-0.004499,0.249960,0,0);}
.m64_c01240{transform:matrix(0.216085,0.003890,-0.004499,0.249960,0,0);-ms-transform:matrix(0.216085,0.003890,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.216085,0.003890,-0.004499,0.249960,0,0);}
.m62_c01240{transform:matrix(0.216300,0.003893,-0.004499,0.249960,0,0);-ms-transform:matrix(0.216300,0.003893,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.216300,0.003893,-0.004499,0.249960,0,0);}
.m87_c01240{transform:matrix(0.216435,0.003896,-0.004499,0.249960,0,0);-ms-transform:matrix(0.216435,0.003896,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.216435,0.003896,-0.004499,0.249960,0,0);}
.m26_c01240{transform:matrix(0.217330,0.003912,-0.004499,0.249960,0,0);-ms-transform:matrix(0.217330,0.003912,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.217330,0.003912,-0.004499,0.249960,0,0);}
.m72_c01240{transform:matrix(0.217405,0.003913,-0.004499,0.249960,0,0);-ms-transform:matrix(0.217405,0.003913,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.217405,0.003913,-0.004499,0.249960,0,0);}
.mb1_c01240{transform:matrix(0.217547,0.005004,-0.005748,0.249934,0,0);-ms-transform:matrix(0.217547,0.005004,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.217547,0.005004,-0.005748,0.249934,0,0);}
.m159_c01240{transform:matrix(0.217610,0.006093,-0.006997,0.249902,0,0);-ms-transform:matrix(0.217610,0.006093,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.217610,0.006093,-0.006997,0.249902,0,0);}
.m93_c01240{transform:matrix(0.217615,0.003917,-0.004499,0.249960,0,0);-ms-transform:matrix(0.217615,0.003917,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.217615,0.003917,-0.004499,0.249960,0,0);}
.mb3_c01240{transform:matrix(0.218062,0.005015,-0.005748,0.249934,0,0);-ms-transform:matrix(0.218062,0.005015,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.218062,0.005015,-0.005748,0.249934,0,0);}
.m34_c01240{transform:matrix(0.218075,0.003925,-0.004499,0.249960,0,0);-ms-transform:matrix(0.218075,0.003925,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.218075,0.003925,-0.004499,0.249960,0,0);}
.m5d_c01240{transform:matrix(0.218455,0.003932,-0.004499,0.249960,0,0);-ms-transform:matrix(0.218455,0.003932,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.218455,0.003932,-0.004499,0.249960,0,0);}
.m115_c01240{transform:matrix(0.218552,0.003497,-0.003999,0.249968,0,0);-ms-transform:matrix(0.218552,0.003497,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.218552,0.003497,-0.003999,0.249968,0,0);}
.m106_c01240{transform:matrix(0.218732,0.005250,-0.005998,0.249928,0,0);-ms-transform:matrix(0.218732,0.005250,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.218732,0.005250,-0.005998,0.249928,0,0);}
.maa_c01240{transform:matrix(0.218942,0.005036,-0.005748,0.249934,0,0);-ms-transform:matrix(0.218942,0.005036,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.218942,0.005036,-0.005748,0.249934,0,0);}
.mb5_c01240{transform:matrix(0.218992,0.005037,-0.005748,0.249934,0,0);-ms-transform:matrix(0.218992,0.005037,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.218992,0.005037,-0.005748,0.249934,0,0);}
.me7_c01240{transform:matrix(0.219652,0.005272,-0.005998,0.249928,0,0);-ms-transform:matrix(0.219652,0.005272,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.219652,0.005272,-0.005998,0.249928,0,0);}
.m6d_c01240{transform:matrix(0.220154,0.003963,-0.004499,0.249960,0,0);-ms-transform:matrix(0.220154,0.003963,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.220154,0.003963,-0.004499,0.249960,0,0);}
.m6f_c01240{transform:matrix(0.220294,0.003965,-0.004499,0.249960,0,0);-ms-transform:matrix(0.220294,0.003965,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.220294,0.003965,-0.004499,0.249960,0,0);}
.m32_c01240{transform:matrix(0.220524,0.003969,-0.004499,0.249960,0,0);-ms-transform:matrix(0.220524,0.003969,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.220524,0.003969,-0.004499,0.249960,0,0);}
.m7d_c01240{transform:matrix(0.220739,0.003973,-0.004499,0.249960,0,0);-ms-transform:matrix(0.220739,0.003973,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.220739,0.003973,-0.004499,0.249960,0,0);}
.m15_c01240{transform:matrix(0.220829,0.003975,-0.004499,0.249960,0,0);-ms-transform:matrix(0.220829,0.003975,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.220829,0.003975,-0.004499,0.249960,0,0);}
.m56_c01240{transform:matrix(0.221054,0.003979,-0.004499,0.249960,0,0);-ms-transform:matrix(0.221054,0.003979,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.221054,0.003979,-0.004499,0.249960,0,0);}
.m4_c01240{transform:matrix(0.221144,0.003981,-0.004499,0.249960,0,0);-ms-transform:matrix(0.221144,0.003981,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.221144,0.003981,-0.004499,0.249960,0,0);}
.m57_c01240{transform:matrix(0.221754,0.003992,-0.004499,0.249960,0,0);-ms-transform:matrix(0.221754,0.003992,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.221754,0.003992,-0.004499,0.249960,0,0);}
.mbb_c01240{transform:matrix(0.222025,0.006661,-0.007497,0.249888,0,0);-ms-transform:matrix(0.222025,0.006661,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.222025,0.006661,-0.007497,0.249888,0,0);}
.md3_c01240{transform:matrix(0.222061,0.005329,-0.005998,0.249928,0,0);-ms-transform:matrix(0.222061,0.005329,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.222061,0.005329,-0.005998,0.249928,0,0);}
.m95_c01240{transform:matrix(0.222159,0.003999,-0.004499,0.249960,0,0);-ms-transform:matrix(0.222159,0.003999,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.222159,0.003999,-0.004499,0.249960,0,0);}
.m71_c01240{transform:matrix(0.222279,0.004001,-0.004499,0.249960,0,0);-ms-transform:matrix(0.222279,0.004001,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.222279,0.004001,-0.004499,0.249960,0,0);}
.m6e_c01240{transform:matrix(0.222509,0.004005,-0.004499,0.249960,0,0);-ms-transform:matrix(0.222509,0.004005,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.222509,0.004005,-0.004499,0.249960,0,0);}
.m11d_c01240{transform:matrix(0.222517,0.003560,-0.003999,0.249968,0,0);-ms-transform:matrix(0.222517,0.003560,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.222517,0.003560,-0.003999,0.249968,0,0);}
.m8_c01240{transform:matrix(0.222614,0.004007,-0.004499,0.249960,0,0);-ms-transform:matrix(0.222614,0.004007,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.222614,0.004007,-0.004499,0.249960,0,0);}
.mca_c01240{transform:matrix(0.222745,0.006682,-0.007497,0.249888,0,0);-ms-transform:matrix(0.222745,0.006682,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.222745,0.006682,-0.007497,0.249888,0,0);}
.m3f_c01240{transform:matrix(0.223144,0.004017,-0.004499,0.249960,0,0);-ms-transform:matrix(0.223144,0.004017,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.223144,0.004017,-0.004499,0.249960,0,0);}
.m18_c01240{transform:matrix(0.223279,0.004019,-0.004499,0.249960,0,0);-ms-transform:matrix(0.223279,0.004019,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.223279,0.004019,-0.004499,0.249960,0,0);}
.m5b_c01240{transform:matrix(0.223479,0.004023,-0.004499,0.249960,0,0);-ms-transform:matrix(0.223479,0.004023,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.223479,0.004023,-0.004499,0.249960,0,0);}
.m10_c01240{transform:matrix(0.223919,0.004031,-0.004499,0.249960,0,0);-ms-transform:matrix(0.223919,0.004031,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.223919,0.004031,-0.004499,0.249960,0,0);}
.m67_c01240{transform:matrix(0.224034,0.004033,-0.004499,0.249960,0,0);-ms-transform:matrix(0.224034,0.004033,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.224034,0.004033,-0.004499,0.249960,0,0);}
.m42_c01240{transform:matrix(0.224619,0.004043,-0.004499,0.249960,0,0);-ms-transform:matrix(0.224619,0.004043,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.224619,0.004043,-0.004499,0.249960,0,0);}
.md1_c01240{transform:matrix(0.224745,0.005394,-0.005998,0.249928,0,0);-ms-transform:matrix(0.224745,0.005394,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.224745,0.005394,-0.005998,0.249928,0,0);}
.m13e_c01240{transform:matrix(0.224955,0.005399,-0.005998,0.249928,0,0);-ms-transform:matrix(0.224955,0.005399,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.224955,0.005399,-0.005998,0.249928,0,0);}
.m41_c01240{transform:matrix(0.224984,0.004050,-0.004499,0.249960,0,0);-ms-transform:matrix(0.224984,0.004050,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.224984,0.004050,-0.004499,0.249960,0,0);}
.me4_c01240{transform:matrix(0.225250,0.005406,-0.005998,0.249928,0,0);-ms-transform:matrix(0.225250,0.005406,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.225250,0.005406,-0.005998,0.249928,0,0);}
.mb0_c01240{transform:matrix(0.225305,0.005182,-0.005748,0.249934,0,0);-ms-transform:matrix(0.225305,0.005182,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.225305,0.005182,-0.005748,0.249934,0,0);}
.mb4_c01240{transform:matrix(0.225790,0.005193,-0.005748,0.249934,0,0);-ms-transform:matrix(0.225790,0.005193,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.225790,0.005193,-0.005748,0.249934,0,0);}
.m58_c01240{transform:matrix(0.226023,0.004068,-0.004499,0.249960,0,0);-ms-transform:matrix(0.226023,0.004068,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.226023,0.004068,-0.004499,0.249960,0,0);}
.m40_c01240{transform:matrix(0.226333,0.004074,-0.004499,0.249960,0,0);-ms-transform:matrix(0.226333,0.004074,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.226333,0.004074,-0.004499,0.249960,0,0);}
.m59_c01240{transform:matrix(0.226338,0.004074,-0.004499,0.249960,0,0);-ms-transform:matrix(0.226338,0.004074,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.226338,0.004074,-0.004499,0.249960,0,0);}
.m50_c01240{transform:matrix(0.226393,0.004075,-0.004499,0.249960,0,0);-ms-transform:matrix(0.226393,0.004075,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.226393,0.004075,-0.004499,0.249960,0,0);}
.m7f_c01240{transform:matrix(0.226553,0.004078,-0.004499,0.249960,0,0);-ms-transform:matrix(0.226553,0.004078,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.226553,0.004078,-0.004499,0.249960,0,0);}
.m7e_c01240{transform:matrix(0.226908,0.004084,-0.004499,0.249960,0,0);-ms-transform:matrix(0.226908,0.004084,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.226908,0.004084,-0.004499,0.249960,0,0);}
.mc5_c01240{transform:matrix(0.227143,0.006814,-0.007497,0.249888,0,0);-ms-transform:matrix(0.227143,0.006814,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.227143,0.006814,-0.007497,0.249888,0,0);}
.m102_c01240{transform:matrix(0.227195,0.005453,-0.005998,0.249928,0,0);-ms-transform:matrix(0.227195,0.005453,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.227195,0.005453,-0.005998,0.249928,0,0);}
.m89_c01240{transform:matrix(0.227698,0.004099,-0.004499,0.249960,0,0);-ms-transform:matrix(0.227698,0.004099,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.227698,0.004099,-0.004499,0.249960,0,0);}
.m160_c01240{transform:matrix(0.227764,0.005466,-0.005998,0.249928,0,0);-ms-transform:matrix(0.227764,0.005466,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.227764,0.005466,-0.005998,0.249928,0,0);}
.m141_c01240{transform:matrix(0.227919,0.005470,-0.005998,0.249928,0,0);-ms-transform:matrix(0.227919,0.005470,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.227919,0.005470,-0.005998,0.249928,0,0);}
.m27_c01240{transform:matrix(0.228288,0.004109,-0.004499,0.249960,0,0);-ms-transform:matrix(0.228288,0.004109,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.228288,0.004109,-0.004499,0.249960,0,0);}
.md8_c01240{transform:matrix(0.228724,0.005489,-0.005998,0.249928,0,0);-ms-transform:matrix(0.228724,0.005489,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.228724,0.005489,-0.005998,0.249928,0,0);}
.m166_c01240{transform:matrix(0.228744,0.005490,-0.005998,0.249928,0,0);-ms-transform:matrix(0.228744,0.005490,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.228744,0.005490,-0.005998,0.249928,0,0);}
.m31_c01240{transform:matrix(0.228878,0.004120,-0.004499,0.249960,0,0);-ms-transform:matrix(0.228878,0.004120,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.228878,0.004120,-0.004499,0.249960,0,0);}
.m94_c01240{transform:matrix(0.229168,0.004125,-0.004499,0.249960,0,0);-ms-transform:matrix(0.229168,0.004125,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.229168,0.004125,-0.004499,0.249960,0,0);}
.m88_c01240{transform:matrix(0.229258,0.004127,-0.004499,0.249960,0,0);-ms-transform:matrix(0.229258,0.004127,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.229258,0.004127,-0.004499,0.249960,0,0);}
.mf_c01240{transform:matrix(0.229498,0.004131,-0.004499,0.249960,0,0);-ms-transform:matrix(0.229498,0.004131,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.229498,0.004131,-0.004499,0.249960,0,0);}
.m168_c01240{transform:matrix(0.229774,0.005515,-0.005998,0.249928,0,0);-ms-transform:matrix(0.229774,0.005515,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.229774,0.005515,-0.005998,0.249928,0,0);}
.m98_c01240{transform:matrix(0.229913,0.004138,-0.004499,0.249960,0,0);-ms-transform:matrix(0.229913,0.004138,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.229913,0.004138,-0.004499,0.249960,0,0);}
.m29_c01240{transform:matrix(0.229988,0.004140,-0.004499,0.249960,0,0);-ms-transform:matrix(0.229988,0.004140,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.229988,0.004140,-0.004499,0.249960,0,0);}
.m161_c01240{transform:matrix(0.230059,0.005521,-0.005998,0.249928,0,0);-ms-transform:matrix(0.230059,0.005521,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.230059,0.005521,-0.005998,0.249928,0,0);}
.m2f_c01240{transform:matrix(0.230383,0.004147,-0.004499,0.249960,0,0);-ms-transform:matrix(0.230383,0.004147,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.230383,0.004147,-0.004499,0.249960,0,0);}
.m66_c01240{transform:matrix(0.230538,0.004150,-0.004499,0.249960,0,0);-ms-transform:matrix(0.230538,0.004150,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.230538,0.004150,-0.004499,0.249960,0,0);}
.mc7_c01240{transform:matrix(0.230631,0.006919,-0.007497,0.249888,0,0);-ms-transform:matrix(0.230631,0.006919,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.230631,0.006919,-0.007497,0.249888,0,0);}
.m30_c01240{transform:matrix(0.230653,0.004152,-0.004499,0.249960,0,0);-ms-transform:matrix(0.230653,0.004152,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.230653,0.004152,-0.004499,0.249960,0,0);}
.me8_c01240{transform:matrix(0.230774,0.005539,-0.005998,0.249928,0,0);-ms-transform:matrix(0.230774,0.005539,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.230774,0.005539,-0.005998,0.249928,0,0);}
.m162_c01240{transform:matrix(0.231138,0.005547,-0.005998,0.249928,0,0);-ms-transform:matrix(0.231138,0.005547,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.231138,0.005547,-0.005998,0.249928,0,0);}
.m5c_c01240{transform:matrix(0.231213,0.004162,-0.004499,0.249960,0,0);-ms-transform:matrix(0.231213,0.004162,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.231213,0.004162,-0.004499,0.249960,0,0);}
.m7b_c01240{transform:matrix(0.231243,0.004162,-0.004499,0.249960,0,0);-ms-transform:matrix(0.231243,0.004162,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.231243,0.004162,-0.004499,0.249960,0,0);}
.m151_c01240{transform:matrix(0.231344,0.006478,-0.006997,0.249902,0,0);-ms-transform:matrix(0.231344,0.006478,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.231344,0.006478,-0.006997,0.249902,0,0);}
.m33_c01240{transform:matrix(0.231517,0.004167,-0.004499,0.249960,0,0);-ms-transform:matrix(0.231517,0.004167,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.231517,0.004167,-0.004499,0.249960,0,0);}
.m15e_c01240{transform:matrix(0.231753,0.005562,-0.005998,0.249928,0,0);-ms-transform:matrix(0.231753,0.005562,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.231753,0.005562,-0.005998,0.249928,0,0);}
.mb7_c01240{transform:matrix(0.232089,0.005338,-0.005748,0.249934,0,0);-ms-transform:matrix(0.232089,0.005338,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.232089,0.005338,-0.005748,0.249934,0,0);}
.me1_c01240{transform:matrix(0.232558,0.005581,-0.005998,0.249928,0,0);-ms-transform:matrix(0.232558,0.005581,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.232558,0.005581,-0.005998,0.249928,0,0);}
.m2c_c01240{transform:matrix(0.232637,0.004187,-0.004499,0.249960,0,0);-ms-transform:matrix(0.232637,0.004187,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.232637,0.004187,-0.004499,0.249960,0,0);}
.mde_c01240{transform:matrix(0.232908,0.005590,-0.005998,0.249928,0,0);-ms-transform:matrix(0.232908,0.005590,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.232908,0.005590,-0.005998,0.249928,0,0);}
.m104_c01240{transform:matrix(0.233093,0.005594,-0.005998,0.249928,0,0);-ms-transform:matrix(0.233093,0.005594,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.233093,0.005594,-0.005998,0.249928,0,0);}
.m101_c01240{transform:matrix(0.233493,0.005604,-0.005998,0.249928,0,0);-ms-transform:matrix(0.233493,0.005604,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.233493,0.005604,-0.005998,0.249928,0,0);}
.m2b_c01240{transform:matrix(0.234072,0.004213,-0.004499,0.249960,0,0);-ms-transform:matrix(0.234072,0.004213,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.234072,0.004213,-0.004499,0.249960,0,0);}
.m13_c01240{transform:matrix(0.234862,0.004228,-0.004499,0.249960,0,0);-ms-transform:matrix(0.234862,0.004228,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.234862,0.004228,-0.004499,0.249960,0,0);}
.m167_c01240{transform:matrix(0.235437,0.005650,-0.005998,0.249928,0,0);-ms-transform:matrix(0.235437,0.005650,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.235437,0.005650,-0.005998,0.249928,0,0);}
.m4c_c01240{transform:matrix(0.235472,0.004238,-0.004499,0.249960,0,0);-ms-transform:matrix(0.235472,0.004238,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.235472,0.004238,-0.004499,0.249960,0,0);}
.mdc_c01240{transform:matrix(0.235937,0.005662,-0.005998,0.249928,0,0);-ms-transform:matrix(0.235937,0.005662,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.235937,0.005662,-0.005998,0.249928,0,0);}
.m164_c01240{transform:matrix(0.236012,0.005664,-0.005998,0.249928,0,0);-ms-transform:matrix(0.236012,0.005664,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.236012,0.005664,-0.005998,0.249928,0,0);}
.m4f_c01240{transform:matrix(0.236207,0.004252,-0.004499,0.249960,0,0);-ms-transform:matrix(0.236207,0.004252,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.236207,0.004252,-0.004499,0.249960,0,0);}
.m8a_c01240{transform:matrix(0.236692,0.004260,-0.004499,0.249960,0,0);-ms-transform:matrix(0.236692,0.004260,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.236692,0.004260,-0.004499,0.249960,0,0);}
.mfb_c01240{transform:matrix(0.236957,0.005687,-0.005998,0.249928,0,0);-ms-transform:matrix(0.236957,0.005687,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.236957,0.005687,-0.005998,0.249928,0,0);}
.mce_c01240{transform:matrix(0.236997,0.005688,-0.005998,0.249928,0,0);-ms-transform:matrix(0.236997,0.005688,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.236997,0.005688,-0.005998,0.249928,0,0);}
.m48_c01240{transform:matrix(0.237277,0.004271,-0.004499,0.249960,0,0);-ms-transform:matrix(0.237277,0.004271,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.237277,0.004271,-0.004499,0.249960,0,0);}
.m165_c01240{transform:matrix(0.237282,0.005695,-0.005998,0.249928,0,0);-ms-transform:matrix(0.237282,0.005695,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.237282,0.005695,-0.005998,0.249928,0,0);}
.m108_c01240{transform:matrix(0.237457,0.005699,-0.005998,0.249928,0,0);-ms-transform:matrix(0.237457,0.005699,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.237457,0.005699,-0.005998,0.249928,0,0);}
.md_c01240{transform:matrix(0.237701,0.004279,-0.004499,0.249960,0,0);-ms-transform:matrix(0.237701,0.004279,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.237701,0.004279,-0.004499,0.249960,0,0);}
.m107_c01240{transform:matrix(0.237712,0.005705,-0.005998,0.249928,0,0);-ms-transform:matrix(0.237712,0.005705,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.237712,0.005705,-0.005998,0.249928,0,0);}
.m4d_c01240{transform:matrix(0.237976,0.004284,-0.004499,0.249960,0,0);-ms-transform:matrix(0.237976,0.004284,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.237976,0.004284,-0.004499,0.249960,0,0);}
.mcf_c01240{transform:matrix(0.238111,0.005715,-0.005998,0.249928,0,0);-ms-transform:matrix(0.238111,0.005715,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.238111,0.005715,-0.005998,0.249928,0,0);}
.md6_c01240{transform:matrix(0.238151,0.005716,-0.005998,0.249928,0,0);-ms-transform:matrix(0.238151,0.005716,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.238151,0.005716,-0.005998,0.249928,0,0);}
.m123_c01240{transform:matrix(0.238155,0.003810,-0.003999,0.249968,0,0);-ms-transform:matrix(0.238155,0.003810,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.238155,0.003810,-0.003999,0.249968,0,0);}
.m3d_c01240{transform:matrix(0.238606,0.004295,-0.004499,0.249960,0,0);-ms-transform:matrix(0.238606,0.004295,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.238606,0.004295,-0.004499,0.249960,0,0);}
.m2_c01240{transform:matrix(0.238681,0.004296,-0.004499,0.249960,0,0);-ms-transform:matrix(0.238681,0.004296,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.238681,0.004296,-0.004499,0.249960,0,0);}
.mad_c01240{transform:matrix(0.238927,0.005495,-0.005748,0.249934,0,0);-ms-transform:matrix(0.238927,0.005495,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.238927,0.005495,-0.005748,0.249934,0,0);}
.m7_c01240{transform:matrix(0.239136,0.004304,-0.004499,0.249960,0,0);-ms-transform:matrix(0.239136,0.004304,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.239136,0.004304,-0.004499,0.249960,0,0);}
.mf7_c01240{transform:matrix(0.239216,0.005741,-0.005998,0.249928,0,0);-ms-transform:matrix(0.239216,0.005741,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.239216,0.005741,-0.005998,0.249928,0,0);}
.m54_c01240{transform:matrix(0.240341,0.004326,-0.004499,0.249960,0,0);-ms-transform:matrix(0.240341,0.004326,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.240341,0.004326,-0.004499,0.249960,0,0);}
.m17_c01240{transform:matrix(0.240406,0.004327,-0.004499,0.249960,0,0);-ms-transform:matrix(0.240406,0.004327,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.240406,0.004327,-0.004499,0.249960,0,0);}
.m3c_c01240{transform:matrix(0.240516,0.004329,-0.004499,0.249960,0,0);-ms-transform:matrix(0.240516,0.004329,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.240516,0.004329,-0.004499,0.249960,0,0);}
.m158_c01240{transform:matrix(0.240541,0.006735,-0.006997,0.249902,0,0);-ms-transform:matrix(0.240541,0.006735,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.240541,0.006735,-0.006997,0.249902,0,0);}
.m6_c01240{transform:matrix(0.241101,0.004340,-0.004499,0.249960,0,0);-ms-transform:matrix(0.241101,0.004340,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.241101,0.004340,-0.004499,0.249960,0,0);}
.m44_c01240{transform:matrix(0.241331,0.004344,-0.004499,0.249960,0,0);-ms-transform:matrix(0.241331,0.004344,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.241331,0.004344,-0.004499,0.249960,0,0);}
.m13f_c01240{transform:matrix(0.241370,0.005793,-0.005998,0.249928,0,0);-ms-transform:matrix(0.241370,0.005793,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.241370,0.005793,-0.005998,0.249928,0,0);}
.m85_c01240{transform:matrix(0.241441,0.004346,-0.004499,0.249960,0,0);-ms-transform:matrix(0.241441,0.004346,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.241441,0.004346,-0.004499,0.249960,0,0);}
.md5_c01240{transform:matrix(0.241625,0.005799,-0.005998,0.249928,0,0);-ms-transform:matrix(0.241625,0.005799,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.241625,0.005799,-0.005998,0.249928,0,0);}
.m28_c01240{transform:matrix(0.241661,0.004350,-0.004499,0.249960,0,0);-ms-transform:matrix(0.241661,0.004350,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.241661,0.004350,-0.004499,0.249960,0,0);}
.mf8_c01240{transform:matrix(0.241710,0.005801,-0.005998,0.249928,0,0);-ms-transform:matrix(0.241710,0.005801,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.241710,0.005801,-0.005998,0.249928,0,0);}
.mff_c01240{transform:matrix(0.241845,0.005804,-0.005998,0.249928,0,0);-ms-transform:matrix(0.241845,0.005804,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.241845,0.005804,-0.005998,0.249928,0,0);}
.m110_c01240{transform:matrix(0.242489,0.008981,-0.009253,0.249829,0,0);-ms-transform:matrix(0.242489,0.008981,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.242489,0.008981,-0.009253,0.249829,0,0);}
.m99_c01240{transform:matrix(0.243181,0.004377,-0.004499,0.249960,0,0);-ms-transform:matrix(0.243181,0.004377,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.243181,0.004377,-0.004499,0.249960,0,0);}
.mbd_c01240{transform:matrix(0.243361,0.007301,-0.007497,0.249888,0,0);-ms-transform:matrix(0.243361,0.007301,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.243361,0.007301,-0.007497,0.249888,0,0);}
.m52_c01240{transform:matrix(0.243426,0.004382,-0.004499,0.249960,0,0);-ms-transform:matrix(0.243426,0.004382,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.243426,0.004382,-0.004499,0.249960,0,0);}
.m105_c01240{transform:matrix(0.243720,0.005849,-0.005998,0.249928,0,0);-ms-transform:matrix(0.243720,0.005849,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.243720,0.005849,-0.005998,0.249928,0,0);}
.m155_c01240{transform:matrix(0.243999,0.006832,-0.006997,0.249902,0,0);-ms-transform:matrix(0.243999,0.006832,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.243999,0.006832,-0.006997,0.249902,0,0);}
.m8f_c01240{transform:matrix(0.244260,0.004397,-0.004499,0.249960,0,0);-ms-transform:matrix(0.244260,0.004397,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.244260,0.004397,-0.004499,0.249960,0,0);}
.md0_c01240{transform:matrix(0.244410,0.005866,-0.005998,0.249928,0,0);-ms-transform:matrix(0.244410,0.005866,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.244410,0.005866,-0.005998,0.249928,0,0);}
.m24_c01240{transform:matrix(0.244505,0.004401,-0.004499,0.249960,0,0);-ms-transform:matrix(0.244505,0.004401,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.244505,0.004401,-0.004499,0.249960,0,0);}
.m140_c01240{transform:matrix(0.245179,0.005884,-0.005998,0.249928,0,0);-ms-transform:matrix(0.245179,0.005884,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.245179,0.005884,-0.005998,0.249928,0,0);}
.m5_c01240{transform:matrix(0.245395,0.004417,-0.004499,0.249960,0,0);-ms-transform:matrix(0.245395,0.004417,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.245395,0.004417,-0.004499,0.249960,0,0);}
.m13a_c01240{transform:matrix(0.245469,0.005891,-0.005998,0.249928,0,0);-ms-transform:matrix(0.245469,0.005891,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.245469,0.005891,-0.005998,0.249928,0,0);}
.mc_c01240{transform:matrix(0.245625,0.004421,-0.004499,0.249960,0,0);-ms-transform:matrix(0.245625,0.004421,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.245625,0.004421,-0.004499,0.249960,0,0);}
.m79_c01240{transform:matrix(0.245745,0.004423,-0.004499,0.249960,0,0);-ms-transform:matrix(0.245745,0.004423,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.245745,0.004423,-0.004499,0.249960,0,0);}
.m149_c01240{transform:matrix(0.246124,0.005907,-0.005998,0.249928,0,0);-ms-transform:matrix(0.246124,0.005907,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.246124,0.005907,-0.005998,0.249928,0,0);}
.m92_c01240{transform:matrix(0.246540,0.004438,-0.004499,0.249960,0,0);-ms-transform:matrix(0.246540,0.004438,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.246540,0.004438,-0.004499,0.249960,0,0);}
.m3e_c01240{transform:matrix(0.246585,0.004439,-0.004499,0.249960,0,0);-ms-transform:matrix(0.246585,0.004439,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.246585,0.004439,-0.004499,0.249960,0,0);}
.m2d_c01240{transform:matrix(0.246655,0.004440,-0.004499,0.249960,0,0);-ms-transform:matrix(0.246655,0.004440,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.246655,0.004440,-0.004499,0.249960,0,0);}
.m109_c01240{transform:matrix(0.246719,0.005921,-0.005998,0.249928,0,0);-ms-transform:matrix(0.246719,0.005921,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.246719,0.005921,-0.005998,0.249928,0,0);}
.m11_c01240{transform:matrix(0.246800,0.004442,-0.004499,0.249960,0,0);-ms-transform:matrix(0.246800,0.004442,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.246800,0.004442,-0.004499,0.249960,0,0);}
.mb8_c01240{transform:matrix(0.246994,0.007410,-0.007497,0.249888,0,0);-ms-transform:matrix(0.246994,0.007410,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.246994,0.007410,-0.007497,0.249888,0,0);}
.m15b_c01240{transform:matrix(0.247453,0.006929,-0.006997,0.249902,0,0);-ms-transform:matrix(0.247453,0.006929,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.247453,0.006929,-0.006997,0.249902,0,0);}
.m7c_c01240{transform:matrix(0.247630,0.004457,-0.004499,0.249960,0,0);-ms-transform:matrix(0.247630,0.004457,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.247630,0.004457,-0.004499,0.249960,0,0);}
.me3_c01240{transform:matrix(0.247664,0.005944,-0.005998,0.249928,0,0);-ms-transform:matrix(0.247664,0.005944,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.247664,0.005944,-0.005998,0.249928,0,0);}
.m12_c01240{transform:matrix(0.247665,0.004458,-0.004499,0.249960,0,0);-ms-transform:matrix(0.247665,0.004458,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.247665,0.004458,-0.004499,0.249960,0,0);}
.m83_c01240{transform:matrix(0.248330,0.004470,-0.004499,0.249960,0,0);-ms-transform:matrix(0.248330,0.004470,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.248330,0.004470,-0.004499,0.249960,0,0);}
.m90_c01240{transform:matrix(0.248445,0.004472,-0.004499,0.249960,0,0);-ms-transform:matrix(0.248445,0.004472,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.248445,0.004472,-0.004499,0.249960,0,0);}
.m96_c01240{transform:matrix(0.248810,0.004479,-0.004499,0.249960,0,0);-ms-transform:matrix(0.248810,0.004479,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.248810,0.004479,-0.004499,0.249960,0,0);}
.m103_c01240{transform:matrix(0.249398,0.005986,-0.005998,0.249928,0,0);-ms-transform:matrix(0.249398,0.005986,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.249398,0.005986,-0.005998,0.249928,0,0);}
.mcb_c01240{transform:matrix(0.249458,0.007484,-0.007497,0.249888,0,0);-ms-transform:matrix(0.249458,0.007484,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.249458,0.007484,-0.007497,0.249888,0,0);}
.mae_c01240{transform:matrix(0.249524,0.005739,-0.005748,0.249934,0,0);-ms-transform:matrix(0.249524,0.005739,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.249524,0.005739,-0.005748,0.249934,0,0);}
.m14_c01240{transform:matrix(0.250024,0.004500,-0.004499,0.249960,0,0);-ms-transform:matrix(0.250024,0.004500,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.250024,0.004500,-0.004499,0.249960,0,0);}
.mba_c01240{transform:matrix(0.250467,0.007514,-0.007497,0.249888,0,0);-ms-transform:matrix(0.250467,0.007514,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.250467,0.007514,-0.007497,0.249888,0,0);}
.mb2_c01240{transform:matrix(0.250494,0.005761,-0.005748,0.249934,0,0);-ms-transform:matrix(0.250494,0.005761,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.250494,0.005761,-0.005748,0.249934,0,0);}
.m142_c01240{transform:matrix(0.250878,0.006021,-0.005998,0.249928,0,0);-ms-transform:matrix(0.250878,0.006021,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.250878,0.006021,-0.005998,0.249928,0,0);}
.m146_c01240{transform:matrix(0.251028,0.006025,-0.005998,0.249928,0,0);-ms-transform:matrix(0.251028,0.006025,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.251028,0.006025,-0.005998,0.249928,0,0);}
.m43_c01240{transform:matrix(0.251694,0.004530,-0.004499,0.249960,0,0);-ms-transform:matrix(0.251694,0.004530,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.251694,0.004530,-0.004499,0.249960,0,0);}
.mf4_c01240{transform:matrix(0.251733,0.006042,-0.005998,0.249928,0,0);-ms-transform:matrix(0.251733,0.006042,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.251733,0.006042,-0.005998,0.249928,0,0);}
.m10a_c01240{transform:matrix(0.252637,0.006063,-0.005998,0.249928,0,0);-ms-transform:matrix(0.252637,0.006063,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.252637,0.006063,-0.005998,0.249928,0,0);}
.m10d_c01240{transform:matrix(0.252672,0.009358,-0.009253,0.249829,0,0);-ms-transform:matrix(0.252672,0.009358,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.252672,0.009358,-0.009253,0.249829,0,0);}
.mbc_c01240{transform:matrix(0.252841,0.007585,-0.007497,0.249888,0,0);-ms-transform:matrix(0.252841,0.007585,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.252841,0.007585,-0.007497,0.249888,0,0);}
.m3a_c01240{transform:matrix(0.253114,0.004556,-0.004499,0.249960,0,0);-ms-transform:matrix(0.253114,0.004556,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.253114,0.004556,-0.004499,0.249960,0,0);}
.mee_c01240{transform:matrix(0.253267,0.006078,-0.005998,0.249928,0,0);-ms-transform:matrix(0.253267,0.006078,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.253267,0.006078,-0.005998,0.249928,0,0);}
.mb6_c01240{transform:matrix(0.253448,0.005829,-0.005748,0.249934,0,0);-ms-transform:matrix(0.253448,0.005829,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.253448,0.005829,-0.005748,0.249934,0,0);}
.mda_c01240{transform:matrix(0.253827,0.006092,-0.005998,0.249928,0,0);-ms-transform:matrix(0.253827,0.006092,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.253827,0.006092,-0.005998,0.249928,0,0);}
.mb9_c01240{transform:matrix(0.253851,0.007616,-0.007497,0.249888,0,0);-ms-transform:matrix(0.253851,0.007616,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.253851,0.007616,-0.007497,0.249888,0,0);}
.m97_c01240{transform:matrix(0.254474,0.004581,-0.004499,0.249960,0,0);-ms-transform:matrix(0.254474,0.004581,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.254474,0.004581,-0.004499,0.249960,0,0);}
.mf9_c01240{transform:matrix(0.254682,0.006112,-0.005998,0.249928,0,0);-ms-transform:matrix(0.254682,0.006112,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.254682,0.006112,-0.005998,0.249928,0,0);}
.me_c01240{transform:matrix(0.254819,0.004587,-0.004499,0.249960,0,0);-ms-transform:matrix(0.254819,0.004587,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.254819,0.004587,-0.004499,0.249960,0,0);}
.m68_c01240{transform:matrix(0.255059,0.004591,-0.004499,0.249960,0,0);-ms-transform:matrix(0.255059,0.004591,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.255059,0.004591,-0.004499,0.249960,0,0);}
.mc6_c01240{transform:matrix(0.255620,0.007669,-0.007497,0.249888,0,0);-ms-transform:matrix(0.255620,0.007669,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.255620,0.007669,-0.007497,0.249888,0,0);}
.mfd_c01240{transform:matrix(0.255916,0.006142,-0.005998,0.249928,0,0);-ms-transform:matrix(0.255916,0.006142,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.255916,0.006142,-0.005998,0.249928,0,0);}
.mb_c01240{transform:matrix(0.256243,0.004612,-0.004499,0.249960,0,0);-ms-transform:matrix(0.256243,0.004612,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.256243,0.004612,-0.004499,0.249960,0,0);}
.m1a_c01240{transform:matrix(0.256418,0.004616,-0.004499,0.249960,0,0);-ms-transform:matrix(0.256418,0.004616,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.256418,0.004616,-0.004499,0.249960,0,0);}
.m9a_c01240{transform:matrix(0.257103,0.004628,-0.004499,0.249960,0,0);-ms-transform:matrix(0.257103,0.004628,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.257103,0.004628,-0.004499,0.249960,0,0);}
.m14b_c01240{transform:matrix(0.257241,0.006174,-0.005998,0.249928,0,0);-ms-transform:matrix(0.257241,0.006174,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.257241,0.006174,-0.005998,0.249928,0,0);}
.mf5_c01240{transform:matrix(0.257476,0.006179,-0.005998,0.249928,0,0);-ms-transform:matrix(0.257476,0.006179,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.257476,0.006179,-0.005998,0.249928,0,0);}
.md2_c01240{transform:matrix(0.257896,0.006189,-0.005998,0.249928,0,0);-ms-transform:matrix(0.257896,0.006189,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.257896,0.006189,-0.005998,0.249928,0,0);}
.m51_c01240{transform:matrix(0.258483,0.004653,-0.004499,0.249960,0,0);-ms-transform:matrix(0.258483,0.004653,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.258483,0.004653,-0.004499,0.249960,0,0);}
.mc9_c01240{transform:matrix(0.258494,0.007755,-0.007497,0.249888,0,0);-ms-transform:matrix(0.258494,0.007755,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.258494,0.007755,-0.007497,0.249888,0,0);}
.mc3_c01240{transform:matrix(0.258584,0.007758,-0.007497,0.249888,0,0);-ms-transform:matrix(0.258584,0.007758,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.258584,0.007758,-0.007497,0.249888,0,0);}
.m16_c01240{transform:matrix(0.259428,0.004670,-0.004499,0.249960,0,0);-ms-transform:matrix(0.259428,0.004670,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.259428,0.004670,-0.004499,0.249960,0,0);}
.mbf_c01240{transform:matrix(0.259493,0.007785,-0.007497,0.249888,0,0);-ms-transform:matrix(0.259493,0.007785,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.259493,0.007785,-0.007497,0.249888,0,0);}
.mcc_c01240{transform:matrix(0.259673,0.007790,-0.007497,0.249888,0,0);-ms-transform:matrix(0.259673,0.007790,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.259673,0.007790,-0.007497,0.249888,0,0);}
.mdb_c01240{transform:matrix(0.260035,0.006241,-0.005998,0.249928,0,0);-ms-transform:matrix(0.260035,0.006241,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.260035,0.006241,-0.005998,0.249928,0,0);}
.m152_c01240{transform:matrix(0.260088,0.007282,-0.006997,0.249902,0,0);-ms-transform:matrix(0.260088,0.007282,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.260088,0.007282,-0.006997,0.249902,0,0);}
.m113_c01240{transform:matrix(0.260172,0.009636,-0.009253,0.249829,0,0);-ms-transform:matrix(0.260172,0.009636,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.260172,0.009636,-0.009253,0.249829,0,0);}
.m157_c01240{transform:matrix(0.260313,0.007289,-0.006997,0.249902,0,0);-ms-transform:matrix(0.260313,0.007289,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.260313,0.007289,-0.006997,0.249902,0,0);}
.m14e_c01240{transform:matrix(0.260695,0.006257,-0.005998,0.249928,0,0);-ms-transform:matrix(0.260695,0.006257,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.260695,0.006257,-0.005998,0.249928,0,0);}
.m91_c01240{transform:matrix(0.260783,0.004694,-0.004499,0.249960,0,0);-ms-transform:matrix(0.260783,0.004694,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.260783,0.004694,-0.004499,0.249960,0,0);}
.m156_c01240{transform:matrix(0.261283,0.007316,-0.006997,0.249902,0,0);-ms-transform:matrix(0.261283,0.007316,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.261283,0.007316,-0.006997,0.249902,0,0);}
.m14d_c01240{transform:matrix(0.261310,0.006271,-0.005998,0.249928,0,0);-ms-transform:matrix(0.261310,0.006271,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.261310,0.006271,-0.005998,0.249928,0,0);}
.m1e_c01240{transform:matrix(0.261433,0.004706,-0.004499,0.249960,0,0);-ms-transform:matrix(0.261433,0.004706,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.261433,0.004706,-0.004499,0.249960,0,0);}
.mbe_c01240{transform:matrix(0.261562,0.007847,-0.007497,0.249888,0,0);-ms-transform:matrix(0.261562,0.007847,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.261562,0.007847,-0.007497,0.249888,0,0);}
.md4_c01240{transform:matrix(0.262504,0.006300,-0.005998,0.249928,0,0);-ms-transform:matrix(0.262504,0.006300,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.262504,0.006300,-0.005998,0.249928,0,0);}
.m5f_c01240{transform:matrix(0.263417,0.004742,-0.004499,0.249960,0,0);-ms-transform:matrix(0.263417,0.004742,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.263417,0.004742,-0.004499,0.249960,0,0);}
.m139_c01240{transform:matrix(0.263599,0.006326,-0.005998,0.249928,0,0);-ms-transform:matrix(0.263599,0.006326,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.263599,0.006326,-0.005998,0.249928,0,0);}
.mdf_c01240{transform:matrix(0.264279,0.006343,-0.005998,0.249928,0,0);-ms-transform:matrix(0.264279,0.006343,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.264279,0.006343,-0.005998,0.249928,0,0);}
.mc8_c01240{transform:matrix(0.265186,0.007956,-0.007497,0.249888,0,0);-ms-transform:matrix(0.265186,0.007956,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.265186,0.007956,-0.007497,0.249888,0,0);}
.m3b_c01240{transform:matrix(0.265272,0.004775,-0.004499,0.249960,0,0);-ms-transform:matrix(0.265272,0.004775,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.265272,0.004775,-0.004499,0.249960,0,0);}
.m145_c01240{transform:matrix(0.265748,0.006378,-0.005998,0.249928,0,0);-ms-transform:matrix(0.265748,0.006378,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.265748,0.006378,-0.005998,0.249928,0,0);}
.m1b_c01240{transform:matrix(0.265947,0.004787,-0.004499,0.249960,0,0);-ms-transform:matrix(0.265947,0.004787,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.265947,0.004787,-0.004499,0.249960,0,0);}
.mf2_c01240{transform:matrix(0.266008,0.006384,-0.005998,0.249928,0,0);-ms-transform:matrix(0.266008,0.006384,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.266008,0.006384,-0.005998,0.249928,0,0);}
.m14a_c01240{transform:matrix(0.267048,0.006409,-0.005998,0.249928,0,0);-ms-transform:matrix(0.267048,0.006409,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.267048,0.006409,-0.005998,0.249928,0,0);}
.md9_c01240{transform:matrix(0.268278,0.006439,-0.005998,0.249928,0,0);-ms-transform:matrix(0.268278,0.006439,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.268278,0.006439,-0.005998,0.249928,0,0);}
.m10f_c01240{transform:matrix(0.268611,0.009949,-0.009253,0.249829,0,0);-ms-transform:matrix(0.268611,0.009949,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.268611,0.009949,-0.009253,0.249829,0,0);}
.m153_c01240{transform:matrix(0.268845,0.007528,-0.006997,0.249902,0,0);-ms-transform:matrix(0.268845,0.007528,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.268845,0.007528,-0.006997,0.249902,0,0);}
.m138_c01240{transform:matrix(0.270337,0.006488,-0.005998,0.249928,0,0);-ms-transform:matrix(0.270337,0.006488,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.270337,0.006488,-0.005998,0.249928,0,0);}
.m10e_c01240{transform:matrix(0.270345,0.010013,-0.009253,0.249829,0,0);-ms-transform:matrix(0.270345,0.010013,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.270345,0.010013,-0.009253,0.249829,0,0);}
.mf6_c01240{transform:matrix(0.271297,0.006511,-0.005998,0.249928,0,0);-ms-transform:matrix(0.271297,0.006511,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.271297,0.006511,-0.005998,0.249928,0,0);}
.m65_c01240{transform:matrix(0.271396,0.004885,-0.004499,0.249960,0,0);-ms-transform:matrix(0.271396,0.004885,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.271396,0.004885,-0.004499,0.249960,0,0);}
.m125_c01240{transform:matrix(0.271425,0.004343,-0.003999,0.249968,0,0);-ms-transform:matrix(0.271425,0.004343,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.271425,0.004343,-0.003999,0.249968,0,0);}
.mfc_c01240{transform:matrix(0.271637,0.006519,-0.005998,0.249928,0,0);-ms-transform:matrix(0.271637,0.006519,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.271637,0.006519,-0.005998,0.249928,0,0);}
.m13c_c01240{transform:matrix(0.272277,0.006535,-0.005998,0.249928,0,0);-ms-transform:matrix(0.272277,0.006535,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.272277,0.006535,-0.005998,0.249928,0,0);}
.m10c_c01240{transform:matrix(0.272568,0.010095,-0.009253,0.249829,0,0);-ms-transform:matrix(0.272568,0.010095,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.272568,0.010095,-0.009253,0.249829,0,0);}
.m21_c01240{transform:matrix(0.273596,0.004925,-0.004499,0.249960,0,0);-ms-transform:matrix(0.273596,0.004925,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.273596,0.004925,-0.004499,0.249960,0,0);}
.m124_c01240{transform:matrix(0.273620,0.004378,-0.003999,0.249968,0,0);-ms-transform:matrix(0.273620,0.004378,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.273620,0.004378,-0.003999,0.249968,0,0);}
.m15a_c01240{transform:matrix(0.273783,0.007666,-0.006997,0.249902,0,0);-ms-transform:matrix(0.273783,0.007666,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.273783,0.007666,-0.006997,0.249902,0,0);}
.m111_c01240{transform:matrix(0.274132,0.010153,-0.009253,0.249829,0,0);-ms-transform:matrix(0.274132,0.010153,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.274132,0.010153,-0.009253,0.249829,0,0);}
.mc2_c01240{transform:matrix(0.274192,0.008226,-0.007497,0.249888,0,0);-ms-transform:matrix(0.274192,0.008226,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.274192,0.008226,-0.007497,0.249888,0,0);}
.m143_c01240{transform:matrix(0.275416,0.006610,-0.005998,0.249928,0,0);-ms-transform:matrix(0.275416,0.006610,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.275416,0.006610,-0.005998,0.249928,0,0);}
.m112_c01240{transform:matrix(0.275781,0.010214,-0.009253,0.249829,0,0);-ms-transform:matrix(0.275781,0.010214,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.275781,0.010214,-0.009253,0.249829,0,0);}
.m126_c01240{transform:matrix(0.276325,0.004421,-0.003999,0.249968,0,0);-ms-transform:matrix(0.276325,0.004421,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.276325,0.004421,-0.003999,0.249968,0,0);}
.m114_c01240{transform:matrix(0.276395,0.010237,-0.009253,0.249829,0,0);-ms-transform:matrix(0.276395,0.010237,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.276395,0.010237,-0.009253,0.249829,0,0);}
.m150_c01240{transform:matrix(0.276610,0.006639,-0.005998,0.249928,0,0);-ms-transform:matrix(0.276610,0.006639,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.276610,0.006639,-0.005998,0.249928,0,0);}
.m13b_c01240{transform:matrix(0.279075,0.006698,-0.005998,0.249928,0,0);-ms-transform:matrix(0.279075,0.006698,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.279075,0.006698,-0.005998,0.249928,0,0);}
.m154_c01240{transform:matrix(0.279136,0.007816,-0.006997,0.249902,0,0);-ms-transform:matrix(0.279136,0.007816,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.279136,0.007816,-0.006997,0.249902,0,0);}
.m1c_c01240{transform:matrix(0.281534,0.005068,-0.004499,0.249960,0,0);-ms-transform:matrix(0.281534,0.005068,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.281534,0.005068,-0.004499,0.249960,0,0);}
.mc0_c01240{transform:matrix(0.282228,0.008467,-0.007497,0.249888,0,0);-ms-transform:matrix(0.282228,0.008467,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.282228,0.008467,-0.007497,0.249888,0,0);}
.m39_c01240{transform:matrix(0.282444,0.005084,-0.004499,0.249960,0,0);-ms-transform:matrix(0.282444,0.005084,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.282444,0.005084,-0.004499,0.249960,0,0);}
.m60_c01240{transform:matrix(0.282609,0.005087,-0.004499,0.249960,0,0);-ms-transform:matrix(0.282609,0.005087,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.282609,0.005087,-0.004499,0.249960,0,0);}
.m148_c01240{transform:matrix(0.283408,0.006802,-0.005998,0.249928,0,0);-ms-transform:matrix(0.283408,0.006802,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.283408,0.006802,-0.005998,0.249928,0,0);}
.mfa_c01240{transform:matrix(0.284663,0.006832,-0.005998,0.249928,0,0);-ms-transform:matrix(0.284663,0.006832,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.284663,0.006832,-0.005998,0.249928,0,0);}
.me5_c01240{transform:matrix(0.287657,0.006904,-0.005998,0.249928,0,0);-ms-transform:matrix(0.287657,0.006904,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.287657,0.006904,-0.005998,0.249928,0,0);}
.m14c_c01240{transform:matrix(0.288687,0.006928,-0.005998,0.249928,0,0);-ms-transform:matrix(0.288687,0.006928,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.288687,0.006928,-0.005998,0.249928,0,0);}
.m9c_c01240{transform:matrix(0.290783,0.005234,-0.004499,0.249960,0,0);-ms-transform:matrix(0.290783,0.005234,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.290783,0.005234,-0.004499,0.249960,0,0);}
.m9b_c01240{transform:matrix(0.297187,0.005349,-0.004499,0.249960,0,0);-ms-transform:matrix(0.297187,0.005349,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.297187,0.005349,-0.004499,0.249960,0,0);}
.m122_c01240{transform:matrix(0.297402,0.004758,-0.003999,0.249968,0,0);-ms-transform:matrix(0.297402,0.004758,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.297402,0.004758,-0.003999,0.249968,0,0);}
.m37_c01240{transform:matrix(0.297962,0.005363,-0.004499,0.249960,0,0);-ms-transform:matrix(0.297962,0.005363,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.297962,0.005363,-0.004499,0.249960,0,0);}
.m23_c01240{transform:matrix(0.299571,0.005392,-0.004499,0.249960,0,0);-ms-transform:matrix(0.299571,0.005392,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.299571,0.005392,-0.004499,0.249960,0,0);}
.meb_c01240{transform:matrix(0.300873,0.007221,-0.005998,0.249928,0,0);-ms-transform:matrix(0.300873,0.007221,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.300873,0.007221,-0.005998,0.249928,0,0);}
.m13d_c01240{transform:matrix(0.301173,0.007228,-0.005998,0.249928,0,0);-ms-transform:matrix(0.301173,0.007228,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.301173,0.007228,-0.005998,0.249928,0,0);}
.m1_c01240{transform:matrix(0.304040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304040,0.000000,0.000000,0.250000,0,0);}
.m38_c01240{transform:matrix(0.305361,0.005496,-0.004499,0.249960,0,0);-ms-transform:matrix(0.305361,0.005496,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.305361,0.005496,-0.004499,0.249960,0,0);}
.m15c_c01240{transform:matrix(0.306200,0.008574,-0.006997,0.249902,0,0);-ms-transform:matrix(0.306200,0.008574,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.306200,0.008574,-0.006997,0.249902,0,0);}
.m61_c01240{transform:matrix(0.308600,0.005555,-0.004499,0.249960,0,0);-ms-transform:matrix(0.308600,0.005555,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.308600,0.005555,-0.004499,0.249960,0,0);}
.m77_c01240{transform:matrix(0.309140,0.005565,-0.004499,0.249960,0,0);-ms-transform:matrix(0.309140,0.005565,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.309140,0.005565,-0.004499,0.249960,0,0);}
.m1f_c01240{transform:matrix(0.311010,0.005598,-0.004499,0.249960,0,0);-ms-transform:matrix(0.311010,0.005598,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.311010,0.005598,-0.004499,0.249960,0,0);}
.m144_c01240{transform:matrix(0.311720,0.007481,-0.005998,0.249928,0,0);-ms-transform:matrix(0.311720,0.007481,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.311720,0.007481,-0.005998,0.249928,0,0);}
.m132_c01240{transform:matrix(0.317845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317845,0.000000,0.000000,0.250000,0,0);}
.mfe_c01240{transform:matrix(0.322282,0.007735,-0.005998,0.249928,0,0);-ms-transform:matrix(0.322282,0.007735,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.322282,0.007735,-0.005998,0.249928,0,0);}
.m22_c01240{transform:matrix(0.323023,0.005814,-0.004499,0.249960,0,0);-ms-transform:matrix(0.323023,0.005814,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.323023,0.005814,-0.004499,0.249960,0,0);}
.m8c_c01240{transform:matrix(0.324098,0.005834,-0.004499,0.249960,0,0);-ms-transform:matrix(0.324098,0.005834,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.324098,0.005834,-0.004499,0.249960,0,0);}
.m20_c01240{transform:matrix(0.324412,0.005839,-0.004499,0.249960,0,0);-ms-transform:matrix(0.324412,0.005839,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.324412,0.005839,-0.004499,0.249960,0,0);}
.m10b_c01240{transform:matrix(0.327646,0.007863,-0.005998,0.249928,0,0);-ms-transform:matrix(0.327646,0.007863,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.327646,0.007863,-0.005998,0.249928,0,0);}
.m147_c01240{transform:matrix(0.329015,0.007896,-0.005998,0.249928,0,0);-ms-transform:matrix(0.329015,0.007896,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.329015,0.007896,-0.005998,0.249928,0,0);}
.m8e_c01240{transform:matrix(0.337155,0.006069,-0.004499,0.249960,0,0);-ms-transform:matrix(0.337155,0.006069,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.337155,0.006069,-0.004499,0.249960,0,0);}
.m1d_c01240{transform:matrix(0.337375,0.006073,-0.004499,0.249960,0,0);-ms-transform:matrix(0.337375,0.006073,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.337375,0.006073,-0.004499,0.249960,0,0);}
.mcd_c01240{transform:matrix(0.340417,0.010213,-0.007497,0.249888,0,0);-ms-transform:matrix(0.340417,0.010213,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.340417,0.010213,-0.007497,0.249888,0,0);}
.me6_c01240{transform:matrix(0.341442,0.008195,-0.005998,0.249928,0,0);-ms-transform:matrix(0.341442,0.008195,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.341442,0.008195,-0.005998,0.249928,0,0);}
.m14f_c01240{transform:matrix(0.351529,0.008437,-0.005998,0.249928,0,0);-ms-transform:matrix(0.351529,0.008437,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.351529,0.008437,-0.005998,0.249928,0,0);}
.m63_c01240{transform:matrix(0.351783,0.006332,-0.004499,0.249960,0,0);-ms-transform:matrix(0.351783,0.006332,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.351783,0.006332,-0.004499,0.249960,0,0);}
.mec_c01240{transform:matrix(0.352753,0.008466,-0.005998,0.249928,0,0);-ms-transform:matrix(0.352753,0.008466,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.352753,0.008466,-0.005998,0.249928,0,0);}
.m8b_c01240{transform:matrix(0.355382,0.006397,-0.004499,0.249960,0,0);-ms-transform:matrix(0.355382,0.006397,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.355382,0.006397,-0.004499,0.249960,0,0);}
.m82_c01240{transform:matrix(0.367640,0.006618,-0.004499,0.249960,0,0);-ms-transform:matrix(0.367640,0.006618,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.367640,0.006618,-0.004499,0.249960,0,0);}
.m5e_c01240{transform:matrix(0.368085,0.006626,-0.004499,0.249960,0,0);-ms-transform:matrix(0.368085,0.006626,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.368085,0.006626,-0.004499,0.249960,0,0);}
.m169_c01240{transform:matrix(0.386774,0.009283,-0.005998,0.249928,0,0);-ms-transform:matrix(0.386774,0.009283,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.386774,0.009283,-0.005998,0.249928,0,0);}
.m81_c01240{transform:matrix(0.388267,0.006989,-0.004499,0.249960,0,0);-ms-transform:matrix(0.388267,0.006989,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.388267,0.006989,-0.004499,0.249960,0,0);}
.m120_c01240{transform:matrix(0.394410,0.006311,-0.003999,0.249968,0,0);-ms-transform:matrix(0.394410,0.006311,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.394410,0.006311,-0.003999,0.249968,0,0);}
.m46_c01240{transform:matrix(0.409184,0.007365,-0.004499,0.249960,0,0);-ms-transform:matrix(0.409184,0.007365,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.409184,0.007365,-0.004499,0.249960,0,0);}
.m16a_c01240{transform:matrix(0.429871,0.010317,-0.005998,0.249928,0,0);-ms-transform:matrix(0.429871,0.010317,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.429871,0.010317,-0.005998,0.249928,0,0);}
.maf_c01240{transform:matrix(0.436899,0.010049,-0.005748,0.249934,0,0);-ms-transform:matrix(0.436899,0.010049,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.436899,0.010049,-0.005748,0.249934,0,0);}
.m6a_c01240{transform:matrix(0.456131,0.008210,-0.004499,0.249960,0,0);-ms-transform:matrix(0.456131,0.008210,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.456131,0.008210,-0.004499,0.249960,0,0);}
.m137_c01240{transform:matrix(0.463856,0.011133,-0.005998,0.249928,0,0);-ms-transform:matrix(0.463856,0.011133,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.463856,0.011133,-0.005998,0.249928,0,0);}
.m121_c01240{transform:matrix(0.509690,0.008155,-0.003999,0.249968,0,0);-ms-transform:matrix(0.509690,0.008155,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.509690,0.008155,-0.003999,0.249968,0,0);}
.m134_c01240{transform:matrix(0.511375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.511375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.511375,0.000000,0.000000,0.250000,0,0);}
.m75_c01240{transform:matrix(0.531759,0.009572,-0.004499,0.249960,0,0);-ms-transform:matrix(0.531759,0.009572,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.531759,0.009572,-0.004499,0.249960,0,0);}
.med_c01240{transform:matrix(0.541714,0.013001,-0.005998,0.249928,0,0);-ms-transform:matrix(0.541714,0.013001,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.541714,0.013001,-0.005998,0.249928,0,0);}
.m15d_c01240{transform:matrix(0.545796,0.015282,-0.006997,0.249902,0,0);-ms-transform:matrix(0.545796,0.015282,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.545796,0.015282,-0.006997,0.249902,0,0);}
.m135_c01240{transform:matrix(0.546885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.546885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.546885,0.000000,0.000000,0.250000,0,0);}
.m131_c01240{transform:matrix(0.602995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602995,0.000000,0.000000,0.250000,0,0);}
.m136_c01240{transform:matrix(0.962555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.962555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.962555,0.000000,0.000000,0.250000,0,0);}
.m11f_c01240{transform:matrix(4.077388,0.065238,-0.003999,0.249968,0,0);-ms-transform:matrix(4.077388,0.065238,-0.003999,0.249968,0,0);-webkit-transform:matrix(4.077388,0.065238,-0.003999,0.249968,0,0);}
.v0_c01240{vertical-align:0.000000px;}
.ls0_c01240{letter-spacing:0.000000px;}
.sc__c01240{text-shadow:none;}
.sc0_c01240{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__c01240{-webkit-text-stroke:0px transparent;}
.sc0_c01240{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01240{word-spacing:0.000000px;}
.fc0_c01240{color:transparent;}
.fs10_c01240{font-size:18.000000px;}
.fs11_c01240{font-size:36.000000px;}
.fsd_c01240{font-size:36.004608px;}
.fsb_c01240{font-size:71.977316px;}
.fse_c01240{font-size:72.009215px;}
.fsa_c01240{font-size:72.020733px;}
.fs12_c01240{font-size:72.028218px;}
.fs2_c01240{font-size:78.012635px;}
.fs8_c01240{font-size:78.022461px;}
.fs7_c01240{font-size:78.035092px;}
.fs1_c01240{font-size:84.013607px;}
.fs5_c01240{font-size:84.022215px;}
.fs13_c01240{font-size:84.024189px;}
.fsc_c01240{font-size:90.011519px;}
.fs3_c01240{font-size:90.014579px;}
.fs6_c01240{font-size:90.023802px;}
.fs9_c01240{font-size:90.025916px;}
.fs0_c01240{font-size:96.000000px;}
.fsf_c01240{font-size:137.972466px;}
.fs4_c01240{font-size:138.022354px;}
.y0_c01240{bottom:0.000000px;}
.y136_c01240{bottom:2.299500px;}
.y135_c01240{bottom:16.069500px;}
.y134_c01240{bottom:51.685320px;}
.y133_c01240{bottom:53.913960px;}
.y132_c01240{bottom:56.545320px;}
.y131_c01240{bottom:57.895980px;}
.y130_c01240{bottom:58.748940px;}
.y12f_c01240{bottom:60.554580px;}
.y12e_c01240{bottom:62.297160px;}
.y12d_c01240{bottom:65.384340px;}
.y12c_c01240{bottom:68.454240px;}
.y12b_c01240{bottom:70.224000px;}
.y12a_c01240{bottom:96.747840px;}
.y129_c01240{bottom:98.623800px;}
.y128_c01240{bottom:100.748148px;}
.y127_c01240{bottom:101.659284px;}
.y126_c01240{bottom:103.717716px;}
.y125_c01240{bottom:105.303744px;}
.y123_c01240{bottom:124.713516px;}
.y124_c01240{bottom:124.713996px;}
.y122_c01240{bottom:140.168208px;}
.y121_c01240{bottom:141.641064px;}
.y120_c01240{bottom:142.350360px;}
.y11f_c01240{bottom:143.386968px;}
.y11e_c01240{bottom:143.758440px;}
.y11d_c01240{bottom:144.830496px;}
.y11c_c01240{bottom:145.673952px;}
.y11b_c01240{bottom:147.099648px;}
.y11a_c01240{bottom:147.465768px;}
.y119_c01240{bottom:148.503000px;}
.y118_c01240{bottom:167.642217px;}
.y117_c01240{bottom:168.521448px;}
.y116_c01240{bottom:171.375535px;}
.y115_c01240{bottom:175.422429px;}
.y114_c01240{bottom:176.700649px;}
.y113_c01240{bottom:179.942959px;}
.y112_c01240{bottom:183.600853px;}
.y111_c01240{bottom:185.258805px;}
.y110_c01240{bottom:189.282000px;}
.y16c_c01240{bottom:203.107764px;}
.y16b_c01240{bottom:203.622384px;}
.y16a_c01240{bottom:204.162312px;}
.y169_c01240{bottom:206.284548px;}
.y168_c01240{bottom:208.405236px;}
.y167_c01240{bottom:210.577728px;}
.y166_c01240{bottom:211.626084px;}
.y165_c01240{bottom:212.430144px;}
.y164_c01240{bottom:214.241124px;}
.y163_c01240{bottom:215.602320px;}
.y162_c01240{bottom:216.911064px;}
.y161_c01240{bottom:217.695072px;}
.y160_c01240{bottom:219.787500px;}
.y10f_c01240{bottom:237.919068px;}
.y10e_c01240{bottom:240.267072px;}
.y10d_c01240{bottom:242.393964px;}
.y10c_c01240{bottom:243.432276px;}
.y10b_c01240{bottom:244.780740px;}
.y10a_c01240{bottom:245.816064px;}
.y109_c01240{bottom:247.887648px;}
.y108_c01240{bottom:248.571636px;}
.y107_c01240{bottom:250.944684px;}
.y106_c01240{bottom:251.990580px;}
.y105_c01240{bottom:255.387636px;}
.y104_c01240{bottom:256.044996px;}
.y103_c01240{bottom:258.088020px;}
.y102_c01240{bottom:276.015084px;}
.y101_c01240{bottom:277.071252px;}
.y100_c01240{bottom:279.471576px;}
.yff_c01240{bottom:280.493532px;}
.yfe_c01240{bottom:284.273040px;}
.yfd_c01240{bottom:285.921744px;}
.yfc_c01240{bottom:287.309988px;}
.yfb_c01240{bottom:288.357780px;}
.yfa_c01240{bottom:291.071640px;}
.yf9_c01240{bottom:291.778560px;}
.yf8_c01240{bottom:293.434668px;}
.yf7_c01240{bottom:294.812640px;}
.yf6_c01240{bottom:310.103664px;}
.yf5_c01240{bottom:310.614192px;}
.yf4_c01240{bottom:312.133248px;}
.yf3_c01240{bottom:313.229460px;}
.yf2_c01240{bottom:314.101740px;}
.yf1_c01240{bottom:315.539160px;}
.yf0_c01240{bottom:316.193700px;}
.yef_c01240{bottom:317.547660px;}
.yee_c01240{bottom:319.867548px;}
.yed_c01240{bottom:320.427576px;}
.yec_c01240{bottom:322.453380px;}
.yeb_c01240{bottom:324.116136px;}
.yea_c01240{bottom:324.726216px;}
.ye9_c01240{bottom:326.415156px;}
.ye8_c01240{bottom:344.409372px;}
.ye7_c01240{bottom:346.751532px;}
.ye6_c01240{bottom:347.405112px;}
.ye5_c01240{bottom:348.718056px;}
.ye4_c01240{bottom:349.391436px;}
.ye3_c01240{bottom:353.711364px;}
.ye2_c01240{bottom:354.718044px;}
.ye1_c01240{bottom:355.362852px;}
.ye0_c01240{bottom:357.026736px;}
.ydf_c01240{bottom:360.964956px;}
.yde_c01240{bottom:363.959364px;}
.ydd_c01240{bottom:380.725500px;}
.ydc_c01240{bottom:381.760284px;}
.ydb_c01240{bottom:383.389392px;}
.yda_c01240{bottom:384.711564px;}
.yd9_c01240{bottom:385.780152px;}
.yd8_c01240{bottom:387.895908px;}
.yd7_c01240{bottom:388.685784px;}
.yd6_c01240{bottom:391.065744px;}
.yd5_c01240{bottom:391.875528px;}
.yd4_c01240{bottom:393.709620px;}
.yd3_c01240{bottom:394.778352px;}
.yd2_c01240{bottom:395.827500px;}
.y15f_c01240{bottom:414.694464px;}
.y15e_c01240{bottom:416.570814px;}
.y15d_c01240{bottom:417.517704px;}
.y15c_c01240{bottom:419.666634px;}
.y15b_c01240{bottom:420.291342px;}
.y15a_c01240{bottom:421.866384px;}
.y159_c01240{bottom:422.766738px;}
.y158_c01240{bottom:424.332120px;}
.y157_c01240{bottom:425.867472px;}
.y156_c01240{bottom:426.798276px;}
.y155_c01240{bottom:430.201284px;}
.y154_c01240{bottom:431.736426px;}
.y153_c01240{bottom:433.254978px;}
.y152_c01240{bottom:434.166000px;}
.yd1_c01240{bottom:451.109910px;}
.yd0_c01240{bottom:452.328090px;}
.ycf_c01240{bottom:454.315950px;}
.yce_c01240{bottom:455.039940px;}
.ycd_c01240{bottom:456.255705px;}
.ycc_c01240{bottom:457.735065px;}
.ycb_c01240{bottom:458.483355px;}
.yca_c01240{bottom:460.875690px;}
.yc9_c01240{bottom:461.592900px;}
.yc8_c01240{bottom:462.321450px;}
.yc7_c01240{bottom:464.278185px;}
.yc6_c01240{bottom:465.012210px;}
.yc5_c01240{bottom:465.736830px;}
.yc4_c01240{bottom:486.923490px;}
.yc3_c01240{bottom:490.230765px;}
.yc2_c01240{bottom:493.559325px;}
.yc1_c01240{bottom:495.196470px;}
.yc0_c01240{bottom:497.545380px;}
.ybf_c01240{bottom:498.494115px;}
.ybe_c01240{bottom:500.536845px;}
.ybd_c01240{bottom:503.130105px;}
.ybc_c01240{bottom:505.719000px;}
.y151_c01240{bottom:520.813680px;}
.y150_c01240{bottom:522.337836px;}
.y14f_c01240{bottom:523.320180px;}
.y14e_c01240{bottom:524.932560px;}
.y14d_c01240{bottom:528.168456px;}
.y14c_c01240{bottom:529.411512px;}
.y14b_c01240{bottom:531.028560px;}
.y14a_c01240{bottom:532.006200px;}
.y149_c01240{bottom:535.194036px;}
.y148_c01240{bottom:536.189328px;}
.y147_c01240{bottom:537.082800px;}
.y146_c01240{bottom:538.091784px;}
.ybb_c01240{bottom:571.547300px;}
.yba_c01240{bottom:573.916554px;}
.yb9_c01240{bottom:593.394287px;}
.yb8_c01240{bottom:594.433668px;}
.yb7_c01240{bottom:595.204226px;}
.yb6_c01240{bottom:599.005159px;}
.yb5_c01240{bottom:599.769921px;}
.yb4_c01240{bottom:601.029205px;}
.yb3_c01240{bottom:602.838972px;}
.yb2_c01240{bottom:604.605441px;}
.yb1_c01240{bottom:606.625002px;}
.yb0_c01240{bottom:607.366580px;}
.yaf_c01240{bottom:608.345655px;}
.yae_c01240{bottom:609.712855px;}
.yad_c01240{bottom:609.933000px;}
.y145_c01240{bottom:625.547136px;}
.y144_c01240{bottom:627.681180px;}
.y143_c01240{bottom:629.008896px;}
.y142_c01240{bottom:629.799240px;}
.y141_c01240{bottom:631.374996px;}
.y140_c01240{bottom:632.204508px;}
.y13f_c01240{bottom:632.995788px;}
.y13e_c01240{bottom:633.790740px;}
.y13d_c01240{bottom:634.827720px;}
.y13c_c01240{bottom:637.514652px;}
.y13b_c01240{bottom:638.317632px;}
.y13a_c01240{bottom:639.086988px;}
.y139_c01240{bottom:641.221248px;}
.y138_c01240{bottom:642.796068px;}
.y137_c01240{bottom:643.917000px;}
.yac_c01240{bottom:665.897541px;}
.yab_c01240{bottom:667.294059px;}
.yaa_c01240{bottom:669.399063px;}
.ya9_c01240{bottom:670.561323px;}
.ya8_c01240{bottom:672.607986px;}
.ya7_c01240{bottom:673.352118px;}
.ya6_c01240{bottom:674.025297px;}
.ya5_c01240{bottom:675.654642px;}
.ya4_c01240{bottom:676.348263px;}
.ya3_c01240{bottom:678.404931px;}
.ya2_c01240{bottom:679.055940px;}
.ya1_c01240{bottom:679.560966px;}
.ya0_c01240{bottom:680.054340px;}
.y9f_c01240{bottom:698.531190px;}
.y9e_c01240{bottom:700.555503px;}
.y9d_c01240{bottom:701.426805px;}
.y9c_c01240{bottom:702.296472px;}
.y9b_c01240{bottom:704.290833px;}
.y9a_c01240{bottom:706.060485px;}
.y99_c01240{bottom:707.183058px;}
.y98_c01240{bottom:708.046500px;}
.y97_c01240{bottom:710.061684px;}
.y96_c01240{bottom:710.945814px;}
.y95_c01240{bottom:713.773935px;}
.y94_c01240{bottom:715.457160px;}
.y93_c01240{bottom:715.945146px;}
.y92_c01240{bottom:716.287557px;}
.y91_c01240{bottom:717.039630px;}
.y90_c01240{bottom:735.653127px;}
.y8f_c01240{bottom:736.552761px;}
.y8e_c01240{bottom:737.255766px;}
.y8d_c01240{bottom:739.122354px;}
.y8c_c01240{bottom:740.496243px;}
.y8b_c01240{bottom:741.918333px;}
.y8a_c01240{bottom:742.610226px;}
.y89_c01240{bottom:743.504823px;}
.y88_c01240{bottom:745.399440px;}
.y87_c01240{bottom:746.283951px;}
.y86_c01240{bottom:748.847508px;}
.y85_c01240{bottom:749.539698px;}
.y84_c01240{bottom:750.042294px;}
.y83_c01240{bottom:750.262983px;}
.y82_c01240{bottom:769.455690px;}
.y81_c01240{bottom:771.142980px;}
.y80_c01240{bottom:772.596270px;}
.y7f_c01240{bottom:776.950374px;}
.y7e_c01240{bottom:778.676880px;}
.y7d_c01240{bottom:779.229159px;}
.y7c_c01240{bottom:783.224619px;}
.y7b_c01240{bottom:784.647957px;}
.y7a_c01240{bottom:786.119424px;}
.y79_c01240{bottom:786.606411px;}
.y78_c01240{bottom:787.269303px;}
.y77_c01240{bottom:805.710009px;}
.y76_c01240{bottom:806.542263px;}
.y75_c01240{bottom:808.104090px;}
.y74_c01240{bottom:810.240945px;}
.y73_c01240{bottom:811.291116px;}
.y72_c01240{bottom:813.665658px;}
.y71_c01240{bottom:815.803674px;}
.y70_c01240{bottom:817.657998px;}
.y6f_c01240{bottom:818.480286px;}
.y6e_c01240{bottom:821.572518px;}
.y6d_c01240{bottom:822.377292px;}
.y6c_c01240{bottom:844.538730px;}
.y6b_c01240{bottom:848.614851px;}
.y6a_c01240{bottom:849.032448px;}
.y69_c01240{bottom:849.322788px;}
.y68_c01240{bottom:850.495623px;}
.y67_c01240{bottom:850.759041px;}
.y66_c01240{bottom:851.185962px;}
.y65_c01240{bottom:851.605827px;}
.y64_c01240{bottom:852.180207px;}
.y63_c01240{bottom:853.060959px;}
.y62_c01240{bottom:853.762554px;}
.y61_c01240{bottom:854.244954px;}
.y60_c01240{bottom:878.574750px;}
.y5f_c01240{bottom:879.984177px;}
.y5e_c01240{bottom:880.601829px;}
.y5d_c01240{bottom:881.194641px;}
.y5c_c01240{bottom:882.385665px;}
.y5b_c01240{bottom:883.377456px;}
.y5a_c01240{bottom:884.549040px;}
.y59_c01240{bottom:885.171444px;}
.y58_c01240{bottom:885.753672px;}
.y57_c01240{bottom:887.543610px;}
.y56_c01240{bottom:888.125568px;}
.y55_c01240{bottom:889.520955px;}
.y54_c01240{bottom:889.874547px;}
.y53_c01240{bottom:913.183656px;}
.y52_c01240{bottom:914.331804px;}
.y51_c01240{bottom:914.886108px;}
.y50_c01240{bottom:916.589964px;}
.y4f_c01240{bottom:917.540754px;}
.y4e_c01240{bottom:918.283953px;}
.y4d_c01240{bottom:919.795743px;}
.y4c_c01240{bottom:920.525280px;}
.y4b_c01240{bottom:921.094920px;}
.y4a_c01240{bottom:922.774842px;}
.y49_c01240{bottom:923.321601px;}
.y48_c01240{bottom:924.443007px;}
.y47_c01240{bottom:947.673153px;}
.y46_c01240{bottom:948.397614px;}
.y45_c01240{bottom:949.651452px;}
.y44_c01240{bottom:951.358554px;}
.y43_c01240{bottom:952.077384px;}
.y42_c01240{bottom:952.825137px;}
.y41_c01240{bottom:953.990358px;}
.y40_c01240{bottom:954.994185px;}
.y3f_c01240{bottom:955.492317px;}
.y3e_c01240{bottom:956.937525px;}
.y3d_c01240{bottom:957.918141px;}
.y3c_c01240{bottom:959.365104px;}
.y3b_c01240{bottom:960.797769px;}
.y3a_c01240{bottom:961.981137px;}
.y39_c01240{bottom:962.520357px;}
.y38_c01240{bottom:1022.462091px;}
.y37_c01240{bottom:1023.916482px;}
.y36_c01240{bottom:1024.499364px;}
.y35_c01240{bottom:1025.077224px;}
.y34_c01240{bottom:1026.151869px;}
.y33_c01240{bottom:1027.309413px;}
.y32_c01240{bottom:1027.879296px;}
.y31_c01240{bottom:1028.237565px;}
.y30_c01240{bottom:1029.188112px;}
.y2f_c01240{bottom:1030.294359px;}
.y2e_c01240{bottom:1030.839876px;}
.y2d_c01240{bottom:1055.583285px;}
.y2c_c01240{bottom:1056.853962px;}
.y2b_c01240{bottom:1058.102718px;}
.y2a_c01240{bottom:1058.629800px;}
.y29_c01240{bottom:1059.338475px;}
.y28_c01240{bottom:1060.748064px;}
.y27_c01240{bottom:1061.991879px;}
.y26_c01240{bottom:1062.687393px;}
.y25_c01240{bottom:1063.222452px;}
.y24_c01240{bottom:1064.613561px;}
.y23_c01240{bottom:1092.004290px;}
.y22_c01240{bottom:1092.460536px;}
.y21_c01240{bottom:1093.478301px;}
.y20_c01240{bottom:1093.902807px;}
.y1f_c01240{bottom:1094.327313px;}
.y1e_c01240{bottom:1095.179685px;}
.y1d_c01240{bottom:1095.639291px;}
.y1c_c01240{bottom:1096.179150px;}
.y1b_c01240{bottom:1097.930925px;}
.y1a_c01240{bottom:1099.198533px;}
.y19_c01240{bottom:1099.629003px;}
.y18_c01240{bottom:1100.193639px;}
.y17_c01240{bottom:1100.777331px;}
.y16_c01240{bottom:1122.970005px;}
.y15_c01240{bottom:1123.660872px;}
.y14_c01240{bottom:1125.078804px;}
.y13_c01240{bottom:1125.789600px;}
.y12_c01240{bottom:1127.394669px;}
.y11_c01240{bottom:1128.580908px;}
.y10_c01240{bottom:1129.282779px;}
.yf_c01240{bottom:1130.207283px;}
.ye_c01240{bottom:1132.505379px;}
.yd_c01240{bottom:1132.997997px;}
.yc_c01240{bottom:1134.592872px;}
.yb_c01240{bottom:1136.429553px;}
.ya_c01240{bottom:1157.279364px;}
.y9_c01240{bottom:1157.858919px;}
.y8_c01240{bottom:1158.664842px;}
.y7_c01240{bottom:1160.270316px;}
.y6_c01240{bottom:1162.652202px;}
.y5_c01240{bottom:1165.258404px;}
.y4_c01240{bottom:1166.240151px;}
.y3_c01240{bottom:1166.851701px;}
.y2_c01240{bottom:1169.374500px;}
.y1_c01240{bottom:1224.721500px;}
.h12_c01240{height:18.000000px;}
.h13_c01240{height:36.000000px;}
.hf_c01240{height:36.004608px;}
.hd_c01240{height:71.977316px;}
.h10_c01240{height:72.009215px;}
.hc_c01240{height:72.020733px;}
.h14_c01240{height:72.028218px;}
.h4_c01240{height:78.012635px;}
.ha_c01240{height:78.022461px;}
.h9_c01240{height:78.035092px;}
.h3_c01240{height:84.013607px;}
.h7_c01240{height:84.022215px;}
.h15_c01240{height:84.024189px;}
.he_c01240{height:90.011519px;}
.h5_c01240{height:90.014579px;}
.h8_c01240{height:90.023802px;}
.hb_c01240{height:90.025916px;}
.h2_c01240{height:96.000000px;}
.h11_c01240{height:137.972466px;}
.h6_c01240{height:138.022354px;}
.h1_c01240{height:1258.500000px;}
.h0_c01240{height:1258.740000px;}
.w1_c01240{width:899.250000px;}
.w0_c01240{width:899.370000px;}
.x0_c01240{left:0.000000px;}
.x93_c01240{left:95.449500px;}
.x73_c01240{left:98.033088px;}
.x7e_c01240{left:104.845968px;}
.x74_c01240{left:108.543021px;}
.x61_c01240{left:113.485230px;}
.xea_c01240{left:115.978500px;}
.x89_c01240{left:119.590224px;}
.x6a_c01240{left:121.716657px;}
.xe7_c01240{left:126.360000px;}
.x57_c01240{left:130.555191px;}
.x75_c01240{left:132.463725px;}
.x7f_c01240{left:133.790310px;}
.xe8_c01240{left:138.510000px;}
.x8a_c01240{left:143.081955px;}
.x33_c01240{left:147.375465px;}
.x4b_c01240{left:149.113827px;}
.xdb_c01240{left:151.471260px;}
.xd3_c01240{left:154.228500px;}
.xcd_c01240{left:155.451000px;}
.xc1_c01240{left:156.964692px;}
.xad_c01240{left:158.436000px;}
.xa5_c01240{left:159.870990px;}
.x9e_c01240{left:161.958724px;}
.x94_c01240{left:164.464500px;}
.x6b_c01240{left:165.925785px;}
.x58_c01240{left:167.608512px;}
.x4c_c01240{left:168.757827px;}
.x41_c01240{left:170.022630px;}
.x21_c01240{left:172.542699px;}
.xc_c01240{left:174.141486px;}
.x3_c01240{left:176.293500px;}
.xdd_c01240{left:178.629864px;}
.xe9_c01240{left:181.980000px;}
.xa6_c01240{left:192.782865px;}
.xe0_c01240{left:195.357756px;}
.x8b_c01240{left:198.136485px;}
.xae_c01240{left:202.150500px;}
.x2b_c01240{left:204.974658px;}
.xdc_c01240{left:206.017728px;}
.x95_c01240{left:207.033000px;}
.x18_c01240{left:218.026665px;}
.xd4_c01240{left:219.055500px;}
.x59_c01240{left:221.590872px;}
.xbd_c01240{left:223.696620px;}
.x34_c01240{left:225.735849px;}
.xeb_c01240{left:228.301500px;}
.x80_c01240{left:230.505405px;}
.x42_c01240{left:235.990818px;}
.x96_c01240{left:239.275500px;}
.xd5_c01240{left:241.938000px;}
.xc7_c01240{left:243.652440px;}
.x4d_c01240{left:246.279327px;}
.xa0_c01240{left:248.529000px;}
.x9f_c01240{left:253.093946px;}
.xc2_c01240{left:254.868276px;}
.xb5_c01240{left:257.450280px;}
.x22_c01240{left:259.496331px;}
.xd_c01240{left:261.591261px;}
.xce_c01240{left:264.077265px;}
.x43_c01240{left:268.116885px;}
.x2c_c01240{left:270.017319px;}
.xe1_c01240{left:272.028508px;}
.x62_c01240{left:275.884707px;}
.x6c_c01240{left:277.232247px;}
.x4e_c01240{left:278.610327px;}
.xde_c01240{left:284.707512px;}
.x76_c01240{left:287.496855px;}
.x5a_c01240{left:289.360974px;}
.x35_c01240{left:290.823651px;}
.x23_c01240{left:292.973046px;}
.x19_c01240{left:294.650577px;}
.x8c_c01240{left:296.057193px;}
.xf8_c01240{left:301.780500px;}
.xf1_c01240{left:304.699596px;}
.xcf_c01240{left:308.841956px;}
.x63_c01240{left:310.147008px;}
.xa7_c01240{left:315.104205px;}
.x4_c01240{left:316.449000px;}
.xaf_c01240{left:323.101500px;}
.x2d_c01240{left:325.909818px;}
.x97_c01240{left:327.082500px;}
.x77_c01240{left:329.634087px;}
.xd6_c01240{left:331.044000px;}
.x5b_c01240{left:333.524943px;}
.xa1_c01240{left:334.971000px;}
.x24_c01240{left:336.447612px;}
.xe_c01240{left:337.524657px;}
.x81_c01240{left:339.274245px;}
.x2e_c01240{left:346.980696px;}
.xa8_c01240{left:348.247170px;}
.xec_c01240{left:349.285500px;}
.x5_c01240{left:350.424000px;}
.xc8_c01240{left:353.240544px;}
.x36_c01240{left:356.622426px;}
.xf_c01240{left:360.974388px;}
.x5c_c01240{left:365.770332px;}
.x44_c01240{left:366.947667px;}
.xf2_c01240{left:369.827784px;}
.x82_c01240{left:373.304358px;}
.x4f_c01240{left:378.051327px;}
.x2f_c01240{left:380.474790px;}
.xed_c01240{left:382.743000px;}
.xd7_c01240{left:383.760000px;}
.x64_c01240{left:387.406665px;}
.xb6_c01240{left:388.711380px;}
.x1a_c01240{left:392.165352px;}
.x5d_c01240{left:398.657802px;}
.x37_c01240{left:401.181213px;}
.x98_c01240{left:403.885500px;}
.x6_c01240{left:404.965500px;}
.x8d_c01240{left:406.688226px;}
.x50_c01240{left:410.397327px;}
.x25_c01240{left:414.217920px;}
.x1_c01240{left:416.880000px;}
.x5e_c01240{left:418.960638px;}
.xf9_c01240{left:423.316500px;}
.xdf_c01240{left:427.543080px;}
.x6d_c01240{left:430.930134px;}
.xa2_c01240{left:434.686500px;}
.xe2_c01240{left:437.747624px;}
.x8e_c01240{left:438.751998px;}
.x2_c01240{left:440.640000px;}
.x45_c01240{left:443.375544px;}
.x51_c01240{left:444.975327px;}
.x30_c01240{left:448.534005px;}
.x83_c01240{left:450.831207px;}
.x6e_c01240{left:452.192583px;}
.xb0_c01240{left:456.007500px;}
.xe3_c01240{left:459.050300px;}
.x78_c01240{left:462.499932px;}
.xc9_c01240{left:463.553040px;}
.xb7_c01240{left:465.645792px;}
.x38_c01240{left:466.882488px;}
.x10_c01240{left:470.390475px;}
.x8f_c01240{left:474.174081px;}
.x65_c01240{left:476.509053px;}
.xf3_c01240{left:479.766108px;}
.x99_c01240{left:482.571000px;}
.x84_c01240{left:484.045428px;}
.xca_c01240{left:485.611332px;}
.x39_c01240{left:489.554868px;}
.xe4_c01240{left:492.783033px;}
.x79_c01240{left:495.436650px;}
.xc3_c01240{left:496.995132px;}
.xb8_c01240{left:499.210968px;}
.x26_c01240{left:502.281579px;}
.x52_c01240{left:510.063327px;}
.x31_c01240{left:511.737639px;}
.xa3_c01240{left:512.983500px;}
.x11_c01240{left:514.416099px;}
.x6f_c01240{left:518.600025px;}
.xa9_c01240{left:523.583700px;}
.x1b_c01240{left:526.914975px;}
.xd0_c01240{left:529.659417px;}
.x46_c01240{left:532.282137px;}
.x3a_c01240{left:535.153074px;}
.x9a_c01240{left:537.322500px;}
.xd8_c01240{left:538.768500px;}
.x27_c01240{left:546.570672px;}
.x12_c01240{left:547.823790px;}
.x7_c01240{left:549.754500px;}
.xbe_c01240{left:551.889888px;}
.xe5_c01240{left:558.501249px;}
.x5f_c01240{left:563.627652px;}
.x53_c01240{left:565.162827px;}
.xfa_c01240{left:567.300000px;}
.x1c_c01240{left:568.494228px;}
.x9b_c01240{left:570.573000px;}
.x90_c01240{left:571.622316px;}
.x47_c01240{left:575.988420px;}
.xb1_c01240{left:577.075500px;}
.x28_c01240{left:579.520860px;}
.xd9_c01240{left:583.099500px;}
.xcb_c01240{left:585.798984px;}
.x3b_c01240{left:588.133767px;}
.xaa_c01240{left:590.811810px;}
.x85_c01240{left:595.291917px;}
.xfb_c01240{left:599.455500px;}
.x13_c01240{left:604.306239px;}
.xf4_c01240{left:612.093732px;}
.xe6_c01240{left:614.161533px;}
.x66_c01240{left:619.172136px;}
.x3c_c01240{left:622.089810px;}
.x91_c01240{left:626.939319px;}
.x7a_c01240{left:628.594968px;}
.xfe_c01240{left:630.253500px;}
.x48_c01240{left:631.894419px;}
.xd1_c01240{left:638.925542px;}
.xb9_c01240{left:643.187232px;}
.xab_c01240{left:646.050540px;}
.xc4_c01240{left:651.842604px;}
.x3d_c01240{left:654.772461px;}
.x29_c01240{left:657.565668px;}
.xcc_c01240{left:662.797560px;}
.x54_c01240{left:664.264827px;}
.x32_c01240{left:665.608920px;}
.x1d_c01240{left:669.474327px;}
.x86_c01240{left:671.995374px;}
.xda_c01240{left:675.153000px;}
.xb2_c01240{left:676.690500px;}
.xa4_c01240{left:678.507000px;}
.x14_c01240{left:680.722608px;}
.x8_c01240{left:682.081500px;}
.x70_c01240{left:686.053914px;}
.x55_c01240{left:698.578827px;}
.x1e_c01240{left:702.144270px;}
.xee_c01240{left:704.218500px;}
.x87_c01240{left:705.472068px;}
.x67_c01240{left:708.210024px;}
.xba_c01240{left:709.378692px;}
.x15_c01240{left:714.542772px;}
.xd2_c01240{left:715.985904px;}
.x7b_c01240{left:717.456162px;}
.xff_c01240{left:718.615500px;}
.xf5_c01240{left:723.659340px;}
.x92_c01240{left:727.211919px;}
.xc5_c01240{left:729.280608px;}
.xbb_c01240{left:731.170560px;}
.x3e_c01240{left:732.355872px;}
.x1f_c01240{left:734.814213px;}
.x9c_c01240{left:735.831000px;}
.x2a_c01240{left:736.995030px;}
.x88_c01240{left:738.956235px;}
.x71_c01240{left:741.950868px;}
.xb3_c01240{left:744.570000px;}
.x7c_c01240{left:750.926853px;}
.xfc_c01240{left:754.765500px;}
.xc6_c01240{left:763.344384px;}
.x49_c01240{left:764.766822px;}
.xbf_c01240{left:766.421556px;}
.x9d_c01240{left:769.333500px;}
.x9_c01240{left:771.274500px;}
.x68_c01240{left:773.304504px;}
.x56_c01240{left:776.880327px;}
.xf6_c01240{left:779.272680px;}
.x16_c01240{left:782.063127px;}
.xc0_c01240{left:786.067620px;}
.xb4_c01240{left:787.686000px;}
.x3f_c01240{left:789.342768px;}
.xef_c01240{left:792.471000px;}
.x7d_c01240{left:793.737531px;}
.x72_c01240{left:806.846526px;}
.x69_c01240{left:807.953751px;}
.xbc_c01240{left:809.249328px;}
.x20_c01240{left:813.113760px;}
.x17_c01240{left:814.942845px;}
.xa_c01240{left:816.048000px;}
.x40_c01240{left:822.254892px;}
.xac_c01240{left:824.644335px;}
.x100_c01240{left:829.539000px;}
.x4a_c01240{left:832.304037px;}
.xb_c01240{left:848.245500px;}
.x101_c01240{left:850.981500px;}
.xfd_c01240{left:855.595500px;}
.xf7_c01240{left:865.699812px;}
.x60_c01240{left:877.190367px;}
.xf0_c01240{left:881.389500px;}
@media print{
.v0_c01240{vertical-align:0.000000pt;}
.ls0_c01240{letter-spacing:0.000000pt;}
.ws0_c01240{word-spacing:0.000000pt;}
.fs10_c01240{font-size:16.000000pt;}
.fs11_c01240{font-size:32.000000pt;}
.fsd_c01240{font-size:32.004096pt;}
.fsb_c01240{font-size:63.979837pt;}
.fse_c01240{font-size:64.008191pt;}
.fsa_c01240{font-size:64.018429pt;}
.fs12_c01240{font-size:64.025083pt;}
.fs2_c01240{font-size:69.344564pt;}
.fs8_c01240{font-size:69.353298pt;}
.fs7_c01240{font-size:69.364526pt;}
.fs1_c01240{font-size:74.678762pt;}
.fs5_c01240{font-size:74.686413pt;}
.fs13_c01240{font-size:74.688168pt;}
.fsc_c01240{font-size:80.010239pt;}
.fs3_c01240{font-size:80.012959pt;}
.fs6_c01240{font-size:80.021157pt;}
.fs9_c01240{font-size:80.023037pt;}
.fs0_c01240{font-size:85.333333pt;}
.fsf_c01240{font-size:122.642192pt;}
.fs4_c01240{font-size:122.686537pt;}
.y0_c01240{bottom:0.000000pt;}
.y136_c01240{bottom:2.044000pt;}
.y135_c01240{bottom:14.284000pt;}
.y134_c01240{bottom:45.942507pt;}
.y133_c01240{bottom:47.923520pt;}
.y132_c01240{bottom:50.262507pt;}
.y131_c01240{bottom:51.463093pt;}
.y130_c01240{bottom:52.221280pt;}
.y12f_c01240{bottom:53.826293pt;}
.y12e_c01240{bottom:55.375253pt;}
.y12d_c01240{bottom:58.119413pt;}
.y12c_c01240{bottom:60.848213pt;}
.y12b_c01240{bottom:62.421333pt;}
.y12a_c01240{bottom:85.998080pt;}
.y129_c01240{bottom:87.665600pt;}
.y128_c01240{bottom:89.553909pt;}
.y127_c01240{bottom:90.363808pt;}
.y126_c01240{bottom:92.193525pt;}
.y125_c01240{bottom:93.603328pt;}
.y123_c01240{bottom:110.856459pt;}
.y124_c01240{bottom:110.856885pt;}
.y122_c01240{bottom:124.593963pt;}
.y121_c01240{bottom:125.903168pt;}
.y120_c01240{bottom:126.533653pt;}
.y11f_c01240{bottom:127.455083pt;}
.y11e_c01240{bottom:127.785280pt;}
.y11d_c01240{bottom:128.738219pt;}
.y11c_c01240{bottom:129.487957pt;}
.y11b_c01240{bottom:130.755243pt;}
.y11a_c01240{bottom:131.080683pt;}
.y119_c01240{bottom:132.002667pt;}
.y118_c01240{bottom:149.015304pt;}
.y117_c01240{bottom:149.796843pt;}
.y116_c01240{bottom:152.333809pt;}
.y115_c01240{bottom:155.931048pt;}
.y114_c01240{bottom:157.067244pt;}
.y113_c01240{bottom:159.949297pt;}
.y112_c01240{bottom:163.200759pt;}
.y111_c01240{bottom:164.674493pt;}
.y110_c01240{bottom:168.250667pt;}
.y16c_c01240{bottom:180.540235pt;}
.y16b_c01240{bottom:180.997675pt;}
.y16a_c01240{bottom:181.477611pt;}
.y169_c01240{bottom:183.364043pt;}
.y168_c01240{bottom:185.249099pt;}
.y167_c01240{bottom:187.180203pt;}
.y166_c01240{bottom:188.112075pt;}
.y165_c01240{bottom:188.826795pt;}
.y164_c01240{bottom:190.436555pt;}
.y163_c01240{bottom:191.646507pt;}
.y162_c01240{bottom:192.809835pt;}
.y161_c01240{bottom:193.506731pt;}
.y160_c01240{bottom:195.366667pt;}
.y10f_c01240{bottom:211.483616pt;}
.y10e_c01240{bottom:213.570731pt;}
.y10d_c01240{bottom:215.461301pt;}
.y10c_c01240{bottom:216.384245pt;}
.y10b_c01240{bottom:217.582880pt;}
.y10a_c01240{bottom:218.503168pt;}
.y109_c01240{bottom:220.344576pt;}
.y108_c01240{bottom:220.952565pt;}
.y107_c01240{bottom:223.061941pt;}
.y106_c01240{bottom:223.991627pt;}
.y105_c01240{bottom:227.011232pt;}
.y104_c01240{bottom:227.595552pt;}
.y103_c01240{bottom:229.411573pt;}
.y102_c01240{bottom:245.346741pt;}
.y101_c01240{bottom:246.285557pt;}
.y100_c01240{bottom:248.419179pt;}
.yff_c01240{bottom:249.327584pt;}
.yfe_c01240{bottom:252.687147pt;}
.yfd_c01240{bottom:254.152661pt;}
.yfc_c01240{bottom:255.386656pt;}
.yfb_c01240{bottom:256.318027pt;}
.yfa_c01240{bottom:258.730347pt;}
.yf9_c01240{bottom:259.358720pt;}
.yf8_c01240{bottom:260.830816pt;}
.yf7_c01240{bottom:262.055680pt;}
.yf6_c01240{bottom:275.647701pt;}
.yf5_c01240{bottom:276.101504pt;}
.yf4_c01240{bottom:277.451776pt;}
.yf3_c01240{bottom:278.426187pt;}
.yf2_c01240{bottom:279.201547pt;}
.yf1_c01240{bottom:280.479253pt;}
.yf0_c01240{bottom:281.061067pt;}
.yef_c01240{bottom:282.264587pt;}
.yee_c01240{bottom:284.326709pt;}
.yed_c01240{bottom:284.824512pt;}
.yec_c01240{bottom:286.625227pt;}
.yeb_c01240{bottom:288.103232pt;}
.yea_c01240{bottom:288.645525pt;}
.ye9_c01240{bottom:290.146805pt;}
.ye8_c01240{bottom:306.141664pt;}
.ye7_c01240{bottom:308.223584pt;}
.ye6_c01240{bottom:308.804544pt;}
.ye5_c01240{bottom:309.971605pt;}
.ye4_c01240{bottom:310.570165pt;}
.ye3_c01240{bottom:314.410101pt;}
.ye2_c01240{bottom:315.304928pt;}
.ye1_c01240{bottom:315.878091pt;}
.ye0_c01240{bottom:317.357099pt;}
.ydf_c01240{bottom:320.857739pt;}
.yde_c01240{bottom:323.519435pt;}
.ydd_c01240{bottom:338.422667pt;}
.ydc_c01240{bottom:339.342475pt;}
.ydb_c01240{bottom:340.790571pt;}
.yda_c01240{bottom:341.965835pt;}
.yd9_c01240{bottom:342.915691pt;}
.yd8_c01240{bottom:344.796363pt;}
.yd7_c01240{bottom:345.498475pt;}
.yd6_c01240{bottom:347.613995pt;}
.yd5_c01240{bottom:348.333803pt;}
.yd4_c01240{bottom:349.964107pt;}
.yd3_c01240{bottom:350.914091pt;}
.yd2_c01240{bottom:351.846667pt;}
.y15f_c01240{bottom:368.617301pt;}
.y15e_c01240{bottom:370.285168pt;}
.y15d_c01240{bottom:371.126848pt;}
.y15c_c01240{bottom:373.037008pt;}
.y15b_c01240{bottom:373.592304pt;}
.y15a_c01240{bottom:374.992341pt;}
.y159_c01240{bottom:375.792656pt;}
.y158_c01240{bottom:377.184107pt;}
.y157_c01240{bottom:378.548864pt;}
.y156_c01240{bottom:379.376245pt;}
.y155_c01240{bottom:382.401141pt;}
.y154_c01240{bottom:383.765712pt;}
.y153_c01240{bottom:385.115536pt;}
.y152_c01240{bottom:385.925333pt;}
.yd1_c01240{bottom:400.986587pt;}
.yd0_c01240{bottom:402.069413pt;}
.ycf_c01240{bottom:403.836400pt;}
.yce_c01240{bottom:404.479947pt;}
.ycd_c01240{bottom:405.560627pt;}
.ycc_c01240{bottom:406.875613pt;}
.ycb_c01240{bottom:407.540760pt;}
.yca_c01240{bottom:409.667280pt;}
.yc9_c01240{bottom:410.304800pt;}
.yc8_c01240{bottom:410.952400pt;}
.yc7_c01240{bottom:412.691720pt;}
.yc6_c01240{bottom:413.344187pt;}
.yc5_c01240{bottom:413.988293pt;}
.yc4_c01240{bottom:432.820880pt;}
.yc3_c01240{bottom:435.760680pt;}
.yc2_c01240{bottom:438.719400pt;}
.yc1_c01240{bottom:440.174640pt;}
.yc0_c01240{bottom:442.262560pt;}
.ybf_c01240{bottom:443.105880pt;}
.ybe_c01240{bottom:444.921640pt;}
.ybd_c01240{bottom:447.226760pt;}
.ybc_c01240{bottom:449.528000pt;}
.y151_c01240{bottom:462.945493pt;}
.y150_c01240{bottom:464.300299pt;}
.y14f_c01240{bottom:465.173493pt;}
.y14e_c01240{bottom:466.606720pt;}
.y14d_c01240{bottom:469.483072pt;}
.y14c_c01240{bottom:470.588011pt;}
.y14b_c01240{bottom:472.025387pt;}
.y14a_c01240{bottom:472.894400pt;}
.y149_c01240{bottom:475.728032pt;}
.y148_c01240{bottom:476.612736pt;}
.y147_c01240{bottom:477.406933pt;}
.y146_c01240{bottom:478.303808pt;}
.ybb_c01240{bottom:508.042044pt;}
.yba_c01240{bottom:510.148048pt;}
.yb9_c01240{bottom:527.461588pt;}
.yb8_c01240{bottom:528.385483pt;}
.yb7_c01240{bottom:529.070423pt;}
.yb6_c01240{bottom:532.449031pt;}
.yb5_c01240{bottom:533.128819pt;}
.yb4_c01240{bottom:534.248183pt;}
.yb3_c01240{bottom:535.856864pt;}
.yb2_c01240{bottom:537.427059pt;}
.yb1_c01240{bottom:539.222224pt;}
.yb0_c01240{bottom:539.881404pt;}
.yaf_c01240{bottom:540.751693pt;}
.yae_c01240{bottom:541.966983pt;}
.yad_c01240{bottom:542.162667pt;}
.y145_c01240{bottom:556.041899pt;}
.y144_c01240{bottom:557.938827pt;}
.y143_c01240{bottom:559.119019pt;}
.y142_c01240{bottom:559.821547pt;}
.y141_c01240{bottom:561.222219pt;}
.y140_c01240{bottom:561.959563pt;}
.y13f_c01240{bottom:562.662923pt;}
.y13e_c01240{bottom:563.369547pt;}
.y13d_c01240{bottom:564.291307pt;}
.y13c_c01240{bottom:566.679691pt;}
.y13b_c01240{bottom:567.393451pt;}
.y13a_c01240{bottom:568.077323pt;}
.y139_c01240{bottom:569.974443pt;}
.y138_c01240{bottom:571.374283pt;}
.y137_c01240{bottom:572.370667pt;}
.yac_c01240{bottom:591.908925pt;}
.yab_c01240{bottom:593.150275pt;}
.yaa_c01240{bottom:595.021389pt;}
.ya9_c01240{bottom:596.054509pt;}
.ya8_c01240{bottom:597.873765pt;}
.ya7_c01240{bottom:598.535216pt;}
.ya6_c01240{bottom:599.133597pt;}
.ya5_c01240{bottom:600.581904pt;}
.ya4_c01240{bottom:601.198456pt;}
.ya3_c01240{bottom:603.026605pt;}
.ya2_c01240{bottom:603.605280pt;}
.ya1_c01240{bottom:604.054192pt;}
.ya0_c01240{bottom:604.492747pt;}
.y9f_c01240{bottom:620.916613pt;}
.y9e_c01240{bottom:622.716003pt;}
.y9d_c01240{bottom:623.490493pt;}
.y9c_c01240{bottom:624.263531pt;}
.y9b_c01240{bottom:626.036296pt;}
.y9a_c01240{bottom:627.609320pt;}
.y99_c01240{bottom:628.607163pt;}
.y98_c01240{bottom:629.374667pt;}
.y97_c01240{bottom:631.165941pt;}
.y96_c01240{bottom:631.951835pt;}
.y95_c01240{bottom:634.465720pt;}
.y94_c01240{bottom:635.961920pt;}
.y93_c01240{bottom:636.395685pt;}
.y92_c01240{bottom:636.700051pt;}
.y91_c01240{bottom:637.368560pt;}
.y90_c01240{bottom:653.913891pt;}
.y8f_c01240{bottom:654.713565pt;}
.y8e_c01240{bottom:655.338459pt;}
.y8d_c01240{bottom:656.997648pt;}
.y8c_c01240{bottom:658.218883pt;}
.y8b_c01240{bottom:659.482963pt;}
.y8a_c01240{bottom:660.097979pt;}
.y89_c01240{bottom:660.893176pt;}
.y88_c01240{bottom:662.577280pt;}
.y87_c01240{bottom:663.363512pt;}
.y86_c01240{bottom:665.642229pt;}
.y85_c01240{bottom:666.257509pt;}
.y84_c01240{bottom:666.704261pt;}
.y83_c01240{bottom:666.900429pt;}
.y82_c01240{bottom:683.960613pt;}
.y81_c01240{bottom:685.460427pt;}
.y80_c01240{bottom:686.752240pt;}
.y7f_c01240{bottom:690.622555pt;}
.y7e_c01240{bottom:692.157227pt;}
.y7d_c01240{bottom:692.648141pt;}
.y7c_c01240{bottom:696.199661pt;}
.y7b_c01240{bottom:697.464851pt;}
.y7a_c01240{bottom:698.772821pt;}
.y79_c01240{bottom:699.205699pt;}
.y78_c01240{bottom:699.794936pt;}
.y77_c01240{bottom:716.186675pt;}
.y76_c01240{bottom:716.926456pt;}
.y75_c01240{bottom:718.314747pt;}
.y74_c01240{bottom:720.214173pt;}
.y73_c01240{bottom:721.147659pt;}
.y72_c01240{bottom:723.258363pt;}
.y71_c01240{bottom:725.158821pt;}
.y70_c01240{bottom:726.807109pt;}
.y6f_c01240{bottom:727.538032pt;}
.y6e_c01240{bottom:730.286683pt;}
.y6d_c01240{bottom:731.002037pt;}
.y6c_c01240{bottom:750.701093pt;}
.y6b_c01240{bottom:754.324312pt;}
.y6a_c01240{bottom:754.695509pt;}
.y69_c01240{bottom:754.953589pt;}
.y68_c01240{bottom:755.996109pt;}
.y67_c01240{bottom:756.230259pt;}
.y66_c01240{bottom:756.609744pt;}
.y65_c01240{bottom:756.982957pt;}
.y64_c01240{bottom:757.493517pt;}
.y63_c01240{bottom:758.276408pt;}
.y62_c01240{bottom:758.900048pt;}
.y61_c01240{bottom:759.328848pt;}
.y60_c01240{bottom:780.955333pt;}
.y5f_c01240{bottom:782.208157pt;}
.y5e_c01240{bottom:782.757181pt;}
.y5d_c01240{bottom:783.284125pt;}
.y5c_c01240{bottom:784.342813pt;}
.y5b_c01240{bottom:785.224405pt;}
.y5a_c01240{bottom:786.265813pt;}
.y59_c01240{bottom:786.819061pt;}
.y58_c01240{bottom:787.336597pt;}
.y57_c01240{bottom:788.927653pt;}
.y56_c01240{bottom:789.444949pt;}
.y55_c01240{bottom:790.685293pt;}
.y54_c01240{bottom:790.999597pt;}
.y53_c01240{bottom:811.718805pt;}
.y52_c01240{bottom:812.739381pt;}
.y51_c01240{bottom:813.232096pt;}
.y50_c01240{bottom:814.746635pt;}
.y4f_c01240{bottom:815.591781pt;}
.y4e_c01240{bottom:816.252403pt;}
.y4d_c01240{bottom:817.596216pt;}
.y4c_c01240{bottom:818.244693pt;}
.y4b_c01240{bottom:818.751040pt;}
.y4a_c01240{bottom:820.244304pt;}
.y49_c01240{bottom:820.730312pt;}
.y48_c01240{bottom:821.727117pt;}
.y47_c01240{bottom:842.376136pt;}
.y46_c01240{bottom:843.020101pt;}
.y45_c01240{bottom:844.134624pt;}
.y44_c01240{bottom:845.652048pt;}
.y43_c01240{bottom:846.291008pt;}
.y42_c01240{bottom:846.955677pt;}
.y41_c01240{bottom:847.991429pt;}
.y40_c01240{bottom:848.883720pt;}
.y3f_c01240{bottom:849.326504pt;}
.y3e_c01240{bottom:850.611133pt;}
.y3d_c01240{bottom:851.482792pt;}
.y3c_c01240{bottom:852.768981pt;}
.y3b_c01240{bottom:854.042461pt;}
.y3a_c01240{bottom:855.094344pt;}
.y39_c01240{bottom:855.573651pt;}
.y38_c01240{bottom:908.855192pt;}
.y37_c01240{bottom:910.147984pt;}
.y36_c01240{bottom:910.666101pt;}
.y35_c01240{bottom:911.179755pt;}
.y34_c01240{bottom:912.134995pt;}
.y33_c01240{bottom:913.163923pt;}
.y32_c01240{bottom:913.670485pt;}
.y31_c01240{bottom:913.988947pt;}
.y30_c01240{bottom:914.833877pt;}
.y2f_c01240{bottom:915.817208pt;}
.y2e_c01240{bottom:916.302112pt;}
.y2d_c01240{bottom:938.296253pt;}
.y2c_c01240{bottom:939.425744pt;}
.y2b_c01240{bottom:940.535749pt;}
.y2a_c01240{bottom:941.004267pt;}
.y29_c01240{bottom:941.634200pt;}
.y28_c01240{bottom:942.887168pt;}
.y27_c01240{bottom:943.992781pt;}
.y26_c01240{bottom:944.611016pt;}
.y25_c01240{bottom:945.086624pt;}
.y24_c01240{bottom:946.323165pt;}
.y23_c01240{bottom:970.670480pt;}
.y22_c01240{bottom:971.076032pt;}
.y21_c01240{bottom:971.980712pt;}
.y20_c01240{bottom:972.358051pt;}
.y1f_c01240{bottom:972.735389pt;}
.y1e_c01240{bottom:973.493053pt;}
.y1d_c01240{bottom:973.901592pt;}
.y1c_c01240{bottom:974.381467pt;}
.y1b_c01240{bottom:975.938600pt;}
.y1a_c01240{bottom:977.065363pt;}
.y19_c01240{bottom:977.448003pt;}
.y18_c01240{bottom:977.949901pt;}
.y17_c01240{bottom:978.468739pt;}
.y16_c01240{bottom:998.195560pt;}
.y15_c01240{bottom:998.809664pt;}
.y14_c01240{bottom:1000.070048pt;}
.y13_c01240{bottom:1000.701867pt;}
.y12_c01240{bottom:1002.128595pt;}
.y11_c01240{bottom:1003.183029pt;}
.y10_c01240{bottom:1003.806915pt;}
.yf_c01240{bottom:1004.628696pt;}
.ye_c01240{bottom:1006.671448pt;}
.yd_c01240{bottom:1007.109331pt;}
.yc_c01240{bottom:1008.526997pt;}
.yb_c01240{bottom:1010.159603pt;}
.ya_c01240{bottom:1028.692768pt;}
.y9_c01240{bottom:1029.207928pt;}
.y8_c01240{bottom:1029.924304pt;}
.y7_c01240{bottom:1031.351392pt;}
.y6_c01240{bottom:1033.468624pt;}
.y5_c01240{bottom:1035.785248pt;}
.y4_c01240{bottom:1036.657912pt;}
.y3_c01240{bottom:1037.201512pt;}
.y2_c01240{bottom:1039.444000pt;}
.y1_c01240{bottom:1088.641333pt;}
.h12_c01240{height:16.000000pt;}
.h13_c01240{height:32.000000pt;}
.hf_c01240{height:32.004096pt;}
.hd_c01240{height:63.979837pt;}
.h10_c01240{height:64.008191pt;}
.hc_c01240{height:64.018429pt;}
.h14_c01240{height:64.025083pt;}
.h4_c01240{height:69.344564pt;}
.ha_c01240{height:69.353298pt;}
.h9_c01240{height:69.364526pt;}
.h3_c01240{height:74.678762pt;}
.h7_c01240{height:74.686413pt;}
.h15_c01240{height:74.688168pt;}
.he_c01240{height:80.010239pt;}
.h5_c01240{height:80.012959pt;}
.h8_c01240{height:80.021157pt;}
.hb_c01240{height:80.023037pt;}
.h2_c01240{height:85.333333pt;}
.h11_c01240{height:122.642192pt;}
.h6_c01240{height:122.686537pt;}
.h1_c01240{height:1118.666667pt;}
.h0_c01240{height:1118.880000pt;}
.w1_c01240{width:799.333333pt;}
.w0_c01240{width:799.440000pt;}
.x0_c01240{left:0.000000pt;}
.x93_c01240{left:84.844000pt;}
.x73_c01240{left:87.140523pt;}
.x7e_c01240{left:93.196416pt;}
.x74_c01240{left:96.482685pt;}
.x61_c01240{left:100.875760pt;}
.xea_c01240{left:103.092000pt;}
.x89_c01240{left:106.302421pt;}
.x6a_c01240{left:108.192584pt;}
.xe7_c01240{left:112.320000pt;}
.x57_c01240{left:116.049059pt;}
.x75_c01240{left:117.745533pt;}
.x7f_c01240{left:118.924720pt;}
.xe8_c01240{left:123.120000pt;}
.x8a_c01240{left:127.183960pt;}
.x33_c01240{left:131.000413pt;}
.x4b_c01240{left:132.545624pt;}
.xdb_c01240{left:134.641120pt;}
.xd3_c01240{left:137.092000pt;}
.xcd_c01240{left:138.178667pt;}
.xc1_c01240{left:139.524171pt;}
.xad_c01240{left:140.832000pt;}
.xa5_c01240{left:142.107547pt;}
.x9e_c01240{left:143.963311pt;}
.x94_c01240{left:146.190667pt;}
.x6b_c01240{left:147.489587pt;}
.x58_c01240{left:148.985344pt;}
.x4c_c01240{left:150.006957pt;}
.x41_c01240{left:151.131227pt;}
.x21_c01240{left:153.371288pt;}
.xc_c01240{left:154.792432pt;}
.x3_c01240{left:156.705333pt;}
.xdd_c01240{left:158.782101pt;}
.xe9_c01240{left:161.760000pt;}
.xa6_c01240{left:171.362547pt;}
.xe0_c01240{left:173.651339pt;}
.x8b_c01240{left:176.121320pt;}
.xae_c01240{left:179.689333pt;}
.x2b_c01240{left:182.199696pt;}
.xdc_c01240{left:183.126869pt;}
.x95_c01240{left:184.029333pt;}
.x18_c01240{left:193.801480pt;}
.xd4_c01240{left:194.716000pt;}
.x59_c01240{left:196.969664pt;}
.xbd_c01240{left:198.841440pt;}
.x34_c01240{left:200.654088pt;}
.xeb_c01240{left:202.934667pt;}
.x80_c01240{left:204.893693pt;}
.x42_c01240{left:209.769616pt;}
.x96_c01240{left:212.689333pt;}
.xd5_c01240{left:215.056000pt;}
.xc7_c01240{left:216.579947pt;}
.x4d_c01240{left:218.914957pt;}
.xa0_c01240{left:220.914667pt;}
.x9f_c01240{left:224.972396pt;}
.xc2_c01240{left:226.549579pt;}
.xb5_c01240{left:228.844693pt;}
.x22_c01240{left:230.663405pt;}
.xd_c01240{left:232.525565pt;}
.xce_c01240{left:234.735347pt;}
.x43_c01240{left:238.326120pt;}
.x2c_c01240{left:240.015395pt;}
.xe1_c01240{left:241.803119pt;}
.x62_c01240{left:245.230851pt;}
.x6c_c01240{left:246.428664pt;}
.x4e_c01240{left:247.653624pt;}
.xde_c01240{left:253.073344pt;}
.x76_c01240{left:255.552760pt;}
.x5a_c01240{left:257.209755pt;}
.x35_c01240{left:258.509912pt;}
.x23_c01240{left:260.420485pt;}
.x19_c01240{left:261.911624pt;}
.x8c_c01240{left:263.161949pt;}
.xf8_c01240{left:268.249333pt;}
.xf1_c01240{left:270.844085pt;}
.xcf_c01240{left:274.526183pt;}
.x63_c01240{left:275.686229pt;}
.xa7_c01240{left:280.092627pt;}
.x4_c01240{left:281.288000pt;}
.xaf_c01240{left:287.201333pt;}
.x2d_c01240{left:289.697616pt;}
.x97_c01240{left:290.740000pt;}
.x77_c01240{left:293.008077pt;}
.xd6_c01240{left:294.261333pt;}
.x5b_c01240{left:296.466616pt;}
.xa1_c01240{left:297.752000pt;}
.x24_c01240{left:299.064544pt;}
.xe_c01240{left:300.021917pt;}
.x81_c01240{left:301.577107pt;}
.x2e_c01240{left:308.427285pt;}
.xa8_c01240{left:309.553040pt;}
.xec_c01240{left:310.476000pt;}
.x5_c01240{left:311.488000pt;}
.xc8_c01240{left:313.991595pt;}
.x36_c01240{left:316.997712pt;}
.xf_c01240{left:320.866123pt;}
.x5c_c01240{left:325.129184pt;}
.x44_c01240{left:326.175704pt;}
.xf2_c01240{left:328.735808pt;}
.x82_c01240{left:331.826096pt;}
.x4f_c01240{left:336.045624pt;}
.x2f_c01240{left:338.199813pt;}
.xed_c01240{left:340.216000pt;}
.xd7_c01240{left:341.120000pt;}
.x64_c01240{left:344.361480pt;}
.xb6_c01240{left:345.521227pt;}
.x1a_c01240{left:348.591424pt;}
.x5d_c01240{left:354.362491pt;}
.x37_c01240{left:356.605523pt;}
.x98_c01240{left:359.009333pt;}
.x6_c01240{left:359.969333pt;}
.x8d_c01240{left:361.500645pt;}
.x50_c01240{left:364.797624pt;}
.x25_c01240{left:368.193707pt;}
.x1_c01240{left:370.560000pt;}
.x5e_c01240{left:372.409456pt;}
.xf9_c01240{left:376.281333pt;}
.xdf_c01240{left:380.038293pt;}
.x6d_c01240{left:383.049008pt;}
.xa2_c01240{left:386.388000pt;}
.xe2_c01240{left:389.108999pt;}
.x8e_c01240{left:390.001776pt;}
.x2_c01240{left:391.680000pt;}
.x45_c01240{left:394.111595pt;}
.x51_c01240{left:395.533624pt;}
.x30_c01240{left:398.696893pt;}
.x83_c01240{left:400.738851pt;}
.x6e_c01240{left:401.948963pt;}
.xb0_c01240{left:405.340000pt;}
.xe3_c01240{left:408.044711pt;}
.x78_c01240{left:411.111051pt;}
.xc9_c01240{left:412.047147pt;}
.xb7_c01240{left:413.907371pt;}
.x38_c01240{left:415.006656pt;}
.x10_c01240{left:418.124867pt;}
.x8f_c01240{left:421.488072pt;}
.x65_c01240{left:423.563603pt;}
.xf3_c01240{left:426.458763pt;}
.x99_c01240{left:428.952000pt;}
.x84_c01240{left:430.262603pt;}
.xca_c01240{left:431.654517pt;}
.x39_c01240{left:435.159883pt;}
.xe4_c01240{left:438.029363pt;}
.x79_c01240{left:440.388133pt;}
.xc3_c01240{left:441.773451pt;}
.xb8_c01240{left:443.743083pt;}
.x26_c01240{left:446.472515pt;}
.x52_c01240{left:453.389624pt;}
.x31_c01240{left:454.877901pt;}
.xa3_c01240{left:455.985333pt;}
.x11_c01240{left:457.258755pt;}
.x6f_c01240{left:460.977800pt;}
.xa9_c01240{left:465.407733pt;}
.x1b_c01240{left:468.368867pt;}
.xd0_c01240{left:470.808371pt;}
.x46_c01240{left:473.139677pt;}
.x3a_c01240{left:475.691621pt;}
.x9a_c01240{left:477.620000pt;}
.xd8_c01240{left:478.905333pt;}
.x27_c01240{left:485.840597pt;}
.x12_c01240{left:486.954480pt;}
.x7_c01240{left:488.670667pt;}
.xbe_c01240{left:490.568789pt;}
.xe5_c01240{left:496.445555pt;}
.x5f_c01240{left:501.002357pt;}
.x53_c01240{left:502.366957pt;}
.xfa_c01240{left:504.266667pt;}
.x1c_c01240{left:505.328203pt;}
.x9b_c01240{left:507.176000pt;}
.x90_c01240{left:508.108725pt;}
.x47_c01240{left:511.989707pt;}
.xb1_c01240{left:512.956000pt;}
.x28_c01240{left:515.129653pt;}
.xd9_c01240{left:518.310667pt;}
.xcb_c01240{left:520.710208pt;}
.x3b_c01240{left:522.785571pt;}
.xaa_c01240{left:525.166053pt;}
.x85_c01240{left:529.148371pt;}
.xfb_c01240{left:532.849333pt;}
.x13_c01240{left:537.161101pt;}
.xf4_c01240{left:544.083317pt;}
.xe6_c01240{left:545.921363pt;}
.x66_c01240{left:550.375232pt;}
.x3c_c01240{left:552.968720pt;}
.x91_c01240{left:557.279395pt;}
.x7a_c01240{left:558.751083pt;}
.xfe_c01240{left:560.225333pt;}
.x48_c01240{left:561.683928pt;}
.xd1_c01240{left:567.933815pt;}
.xb9_c01240{left:571.721984pt;}
.xab_c01240{left:574.267147pt;}
.xc4_c01240{left:579.415648pt;}
.x3d_c01240{left:582.019965pt;}
.x29_c01240{left:584.502816pt;}
.xcc_c01240{left:589.153387pt;}
.x54_c01240{left:590.457624pt;}
.x32_c01240{left:591.652373pt;}
.x1d_c01240{left:595.088291pt;}
.x86_c01240{left:597.329221pt;}
.xda_c01240{left:600.136000pt;}
.xb2_c01240{left:601.502667pt;}
.xa4_c01240{left:603.117333pt;}
.x14_c01240{left:605.086763pt;}
.x8_c01240{left:606.294667pt;}
.x70_c01240{left:609.825701pt;}
.x55_c01240{left:620.958957pt;}
.x1e_c01240{left:624.128240pt;}
.xee_c01240{left:625.972000pt;}
.x87_c01240{left:627.086283pt;}
.x67_c01240{left:629.520021pt;}
.xba_c01240{left:630.558837pt;}
.x15_c01240{left:635.149131pt;}
.xd2_c01240{left:636.431915pt;}
.x7b_c01240{left:637.738811pt;}
.xff_c01240{left:638.769333pt;}
.xf5_c01240{left:643.252747pt;}
.x92_c01240{left:646.410595pt;}
.xc5_c01240{left:648.249429pt;}
.xbb_c01240{left:649.929387pt;}
.x3e_c01240{left:650.982997pt;}
.x1f_c01240{left:653.168189pt;}
.x9c_c01240{left:654.072000pt;}
.x2a_c01240{left:655.106693pt;}
.x88_c01240{left:656.849987pt;}
.x71_c01240{left:659.511883pt;}
.xb3_c01240{left:661.840000pt;}
.x7c_c01240{left:667.490536pt;}
.xfc_c01240{left:670.902667pt;}
.xc6_c01240{left:678.528341pt;}
.x49_c01240{left:679.792731pt;}
.xbf_c01240{left:681.263605pt;}
.x9d_c01240{left:683.852000pt;}
.x9_c01240{left:685.577333pt;}
.x68_c01240{left:687.381781pt;}
.x56_c01240{left:690.560291pt;}
.xf6_c01240{left:692.686827pt;}
.x16_c01240{left:695.167224pt;}
.xc0_c01240{left:698.726773pt;}
.xb4_c01240{left:700.165333pt;}
.x3f_c01240{left:701.638016pt;}
.xef_c01240{left:704.418667pt;}
.x7d_c01240{left:705.544472pt;}
.x72_c01240{left:717.196912pt;}
.x69_c01240{left:718.181112pt;}
.xbc_c01240{left:719.332736pt;}
.x20_c01240{left:722.767787pt;}
.x17_c01240{left:724.393640pt;}
.xa_c01240{left:725.376000pt;}
.x40_c01240{left:730.893237pt;}
.xac_c01240{left:733.017187pt;}
.x100_c01240{left:737.368000pt;}
.x4a_c01240{left:739.825811pt;}
.xb_c01240{left:753.996000pt;}
.x101_c01240{left:756.428000pt;}
.xfd_c01240{left:760.529333pt;}
.xf7_c01240{left:769.510944pt;}
.x60_c01240{left:779.724771pt;}
.xf0_c01240{left:783.457333pt;}
}





/* 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_c01241 {
    display:none;
  }
  .loading-indicator_c01241.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01241 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_c01241 { 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_c01241" -> "#page-container .classname_c01241")
 */
.pf_c01241 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01241 { /* 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_c01241.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01241 { /* 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_c01241 { /* 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_c01241 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01241 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01241 {overflow:visible;}
  }
}
.c_c01241 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01241 { /* 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_c01241:after { /* webkit #35443 */
  content: '';
}
.t_c01241:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01241 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 */
}
.__c01241 { /* 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_c01241 { /* info for Javascript */
  display:none;
}
.l_c01241 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01241 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01241 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01241: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_c01241 {
    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_c01241.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01241.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_c01241 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01241{font-family:sans-serif;visibility:hidden;}
.sc__c01241{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01241{-webkit-text-stroke:0px transparent;}
}
.y0_c01241{bottom:0.000000px;}
.h1_c01241{height:1258.500000px;}
.h0_c01241{height:1258.740000px;}
.w1_c01241{width:899.250000px;}
.w0_c01241{width:899.370000px;}
.x0_c01241{left:0.000000px;}
@media print{
.y0_c01241{bottom:0.000000pt;}
.h1_c01241{height:1118.666667pt;}
.h0_c01241{height:1118.880000pt;}
.w1_c01241{width:799.333333pt;}
.w0_c01241{width:799.440000pt;}
.x0_c01241{left:0.000000pt;}
}





/* 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_c01242 {
    display:none;
  }
  .loading-indicator_c01242.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01242 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_c01242 { 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_c01242" -> "#page-container .classname_c01242")
 */
.pf_c01242 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01242 { /* 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_c01242.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01242 { /* 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_c01242 { /* 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_c01242 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01242 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01242 {overflow:visible;}
  }
}
.c_c01242 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01242 { /* 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_c01242:after { /* webkit #35443 */
  content: '';
}
.t_c01242:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01242 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 */
}
.__c01242 { /* 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_c01242 { /* info for Javascript */
  display:none;
}
.l_c01242 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01242 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01242 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01242: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_c01242 {
    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_c01242.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01242.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_c01242 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01242{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01242;src:url('chunks/assets/font_cfe63ee56e9e10a97d33a3db.woff2')format("woff");}.ff1_c01242{font-family:ff1_c01242;line-height:1.000000;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;}
.m84_c01242{transform:matrix(0.007893,0.000197,-0.006248,0.249922,0,0);-ms-transform:matrix(0.007893,0.000197,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.007893,0.000197,-0.006248,0.249922,0,0);}
.med_c01242{transform:matrix(0.008482,0.000221,-0.006498,0.249916,0,0);-ms-transform:matrix(0.008482,0.000221,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.008482,0.000221,-0.006498,0.249916,0,0);}
.me4_c01242{transform:matrix(0.009087,0.000236,-0.006498,0.249916,0,0);-ms-transform:matrix(0.009087,0.000236,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.009087,0.000236,-0.006498,0.249916,0,0);}
.mc3_c01242{transform:matrix(0.009787,0.000254,-0.006498,0.249916,0,0);-ms-transform:matrix(0.009787,0.000254,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.009787,0.000254,-0.006498,0.249916,0,0);}
.md6_c01242{transform:matrix(0.050803,0.001321,-0.006498,0.249916,0,0);-ms-transform:matrix(0.050803,0.001321,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.050803,0.001321,-0.006498,0.249916,0,0);}
.m9f_c01242{transform:matrix(0.070268,0.001757,-0.006248,0.249922,0,0);-ms-transform:matrix(0.070268,0.001757,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.070268,0.001757,-0.006248,0.249922,0,0);}
.md7_c01242{transform:matrix(0.072496,0.001885,-0.006498,0.249916,0,0);-ms-transform:matrix(0.072496,0.001885,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.072496,0.001885,-0.006498,0.249916,0,0);}
.mad_c01242{transform:matrix(0.075836,0.001896,-0.006248,0.249922,0,0);-ms-transform:matrix(0.075836,0.001896,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.075836,0.001896,-0.006248,0.249922,0,0);}
.meb_c01242{transform:matrix(0.085076,0.002212,-0.006498,0.249916,0,0);-ms-transform:matrix(0.085076,0.002212,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.085076,0.002212,-0.006498,0.249916,0,0);}
.m86_c01242{transform:matrix(0.147484,0.003687,-0.006248,0.249922,0,0);-ms-transform:matrix(0.147484,0.003687,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.147484,0.003687,-0.006248,0.249922,0,0);}
.m0_c01242{transform:matrix(0.153635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153635,0.000000,0.000000,0.250000,0,0);}
.m11c_c01242{transform:matrix(0.155098,0.004188,-0.006748,0.249909,0,0);-ms-transform:matrix(0.155098,0.004188,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.155098,0.004188,-0.006748,0.249909,0,0);}
.m8b_c01242{transform:matrix(0.157286,0.003932,-0.006248,0.249922,0,0);-ms-transform:matrix(0.157286,0.003932,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.157286,0.003932,-0.006248,0.249922,0,0);}
.m87_c01242{transform:matrix(0.160670,0.004017,-0.006248,0.249922,0,0);-ms-transform:matrix(0.160670,0.004017,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.160670,0.004017,-0.006248,0.249922,0,0);}
.m8d_c01242{transform:matrix(0.161035,0.004026,-0.006248,0.249922,0,0);-ms-transform:matrix(0.161035,0.004026,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.161035,0.004026,-0.006248,0.249922,0,0);}
.m8a_c01242{transform:matrix(0.162399,0.004060,-0.006248,0.249922,0,0);-ms-transform:matrix(0.162399,0.004060,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.162399,0.004060,-0.006248,0.249922,0,0);}
.m90_c01242{transform:matrix(0.163599,0.004090,-0.006248,0.249922,0,0);-ms-transform:matrix(0.163599,0.004090,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.163599,0.004090,-0.006248,0.249922,0,0);}
.m8c_c01242{transform:matrix(0.164644,0.004116,-0.006248,0.249922,0,0);-ms-transform:matrix(0.164644,0.004116,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.164644,0.004116,-0.006248,0.249922,0,0);}
.m8f_c01242{transform:matrix(0.167723,0.004193,-0.006248,0.249922,0,0);-ms-transform:matrix(0.167723,0.004193,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.167723,0.004193,-0.006248,0.249922,0,0);}
.m2e_c01242{transform:matrix(0.172101,0.004303,-0.006248,0.249922,0,0);-ms-transform:matrix(0.172101,0.004303,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.172101,0.004303,-0.006248,0.249922,0,0);}
.m89_c01242{transform:matrix(0.173681,0.004342,-0.006248,0.249922,0,0);-ms-transform:matrix(0.173681,0.004342,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.173681,0.004342,-0.006248,0.249922,0,0);}
.m8e_c01242{transform:matrix(0.175260,0.004382,-0.006248,0.249922,0,0);-ms-transform:matrix(0.175260,0.004382,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.175260,0.004382,-0.006248,0.249922,0,0);}
.m85_c01242{transform:matrix(0.175730,0.004393,-0.006248,0.249922,0,0);-ms-transform:matrix(0.175730,0.004393,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.175730,0.004393,-0.006248,0.249922,0,0);}
.m112_c01242{transform:matrix(0.176316,0.004937,-0.006997,0.249902,0,0);-ms-transform:matrix(0.176316,0.004937,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.176316,0.004937,-0.006997,0.249902,0,0);}
.mae_c01242{transform:matrix(0.177590,0.004440,-0.006248,0.249922,0,0);-ms-transform:matrix(0.177590,0.004440,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.177590,0.004440,-0.006248,0.249922,0,0);}
.m88_c01242{transform:matrix(0.177689,0.004442,-0.006248,0.249922,0,0);-ms-transform:matrix(0.177689,0.004442,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.177689,0.004442,-0.006248,0.249922,0,0);}
.mf7_c01242{transform:matrix(0.181589,0.004721,-0.006498,0.249916,0,0);-ms-transform:matrix(0.181589,0.004721,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.181589,0.004721,-0.006498,0.249916,0,0);}
.mac_c01242{transform:matrix(0.181768,0.004544,-0.006248,0.249922,0,0);-ms-transform:matrix(0.181768,0.004544,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.181768,0.004544,-0.006248,0.249922,0,0);}
.m91_c01242{transform:matrix(0.182973,0.004574,-0.006248,0.249922,0,0);-ms-transform:matrix(0.182973,0.004574,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.182973,0.004574,-0.006248,0.249922,0,0);}
.m49_c01242{transform:matrix(0.186812,0.004670,-0.006248,0.249922,0,0);-ms-transform:matrix(0.186812,0.004670,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.186812,0.004670,-0.006248,0.249922,0,0);}
.m111_c01242{transform:matrix(0.186872,0.005232,-0.006997,0.249902,0,0);-ms-transform:matrix(0.186872,0.005232,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.186872,0.005232,-0.006997,0.249902,0,0);}
.mab_c01242{transform:matrix(0.188096,0.004702,-0.006248,0.249922,0,0);-ms-transform:matrix(0.188096,0.004702,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.188096,0.004702,-0.006248,0.249922,0,0);}
.mff_c01242{transform:matrix(0.188236,0.004894,-0.006498,0.249916,0,0);-ms-transform:matrix(0.188236,0.004894,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.188236,0.004894,-0.006498,0.249916,0,0);}
.mc4_c01242{transform:matrix(0.189761,0.004934,-0.006498,0.249916,0,0);-ms-transform:matrix(0.189761,0.004934,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.189761,0.004934,-0.006498,0.249916,0,0);}
.m137_c01242{transform:matrix(0.190185,0.005515,-0.007247,0.249895,0,0);-ms-transform:matrix(0.190185,0.005515,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.190185,0.005515,-0.007247,0.249895,0,0);}
.m95_c01242{transform:matrix(0.190770,0.004769,-0.006248,0.249922,0,0);-ms-transform:matrix(0.190770,0.004769,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.190770,0.004769,-0.006248,0.249922,0,0);}
.m20_c01242{transform:matrix(0.191375,0.004784,-0.006248,0.249922,0,0);-ms-transform:matrix(0.191375,0.004784,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.191375,0.004784,-0.006248,0.249922,0,0);}
.ma2_c01242{transform:matrix(0.192240,0.004806,-0.006248,0.249922,0,0);-ms-transform:matrix(0.192240,0.004806,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.192240,0.004806,-0.006248,0.249922,0,0);}
.m7f_c01242{transform:matrix(0.192260,0.004806,-0.006248,0.249922,0,0);-ms-transform:matrix(0.192260,0.004806,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.192260,0.004806,-0.006248,0.249922,0,0);}
.m12f_c01242{transform:matrix(0.192429,0.005580,-0.007247,0.249895,0,0);-ms-transform:matrix(0.192429,0.005580,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.192429,0.005580,-0.007247,0.249895,0,0);}
.m2_c01242{transform:matrix(0.192860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192860,0.000000,0.000000,0.250000,0,0);}
.ma3_c01242{transform:matrix(0.193145,0.004829,-0.006248,0.249922,0,0);-ms-transform:matrix(0.193145,0.004829,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.193145,0.004829,-0.006248,0.249922,0,0);}
.m10b_c01242{transform:matrix(0.194119,0.005435,-0.006997,0.249902,0,0);-ms-transform:matrix(0.194119,0.005435,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.194119,0.005435,-0.006997,0.249902,0,0);}
.m1e_c01242{transform:matrix(0.194774,0.004869,-0.006248,0.249922,0,0);-ms-transform:matrix(0.194774,0.004869,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.194774,0.004869,-0.006248,0.249922,0,0);}
.mfa_c01242{transform:matrix(0.194954,0.005069,-0.006498,0.249916,0,0);-ms-transform:matrix(0.194954,0.005069,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.194954,0.005069,-0.006498,0.249916,0,0);}
.m1c_c01242{transform:matrix(0.194959,0.004874,-0.006248,0.249922,0,0);-ms-transform:matrix(0.194959,0.004874,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.194959,0.004874,-0.006248,0.249922,0,0);}
.m121_c01242{transform:matrix(0.195039,0.005266,-0.006748,0.249909,0,0);-ms-transform:matrix(0.195039,0.005266,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.195039,0.005266,-0.006748,0.249909,0,0);}
.mf0_c01242{transform:matrix(0.195239,0.005076,-0.006498,0.249916,0,0);-ms-transform:matrix(0.195239,0.005076,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.195239,0.005076,-0.006498,0.249916,0,0);}
.m114_c01242{transform:matrix(0.196288,0.005496,-0.006997,0.249902,0,0);-ms-transform:matrix(0.196288,0.005496,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.196288,0.005496,-0.006997,0.249902,0,0);}
.m122_c01242{transform:matrix(0.196623,0.005309,-0.006748,0.249909,0,0);-ms-transform:matrix(0.196623,0.005309,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.196623,0.005309,-0.006748,0.249909,0,0);}
.m93_c01242{transform:matrix(0.196893,0.004922,-0.006248,0.249922,0,0);-ms-transform:matrix(0.196893,0.004922,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.196893,0.004922,-0.006248,0.249922,0,0);}
.m36_c01242{transform:matrix(0.197413,0.004935,-0.006248,0.249922,0,0);-ms-transform:matrix(0.197413,0.004935,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.197413,0.004935,-0.006248,0.249922,0,0);}
.mcf_c01242{transform:matrix(0.199298,0.005182,-0.006498,0.249916,0,0);-ms-transform:matrix(0.199298,0.005182,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.199298,0.005182,-0.006498,0.249916,0,0);}
.m110_c01242{transform:matrix(0.200047,0.005601,-0.006997,0.249902,0,0);-ms-transform:matrix(0.200047,0.005601,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.200047,0.005601,-0.006997,0.249902,0,0);}
.m2d_c01242{transform:matrix(0.200567,0.005014,-0.006248,0.249922,0,0);-ms-transform:matrix(0.200567,0.005014,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.200567,0.005014,-0.006248,0.249922,0,0);}
.m19_c01242{transform:matrix(0.201882,0.005047,-0.006248,0.249922,0,0);-ms-transform:matrix(0.201882,0.005047,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.201882,0.005047,-0.006248,0.249922,0,0);}
.m10c_c01242{transform:matrix(0.202581,0.005672,-0.006997,0.249902,0,0);-ms-transform:matrix(0.202581,0.005672,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.202581,0.005672,-0.006997,0.249902,0,0);}
.m1d_c01242{transform:matrix(0.203601,0.005090,-0.006248,0.249922,0,0);-ms-transform:matrix(0.203601,0.005090,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.203601,0.005090,-0.006248,0.249922,0,0);}
.m97_c01242{transform:matrix(0.203716,0.005093,-0.006248,0.249922,0,0);-ms-transform:matrix(0.203716,0.005093,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.203716,0.005093,-0.006248,0.249922,0,0);}
.m18_c01242{transform:matrix(0.204291,0.005107,-0.006248,0.249922,0,0);-ms-transform:matrix(0.204291,0.005107,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.204291,0.005107,-0.006248,0.249922,0,0);}
.m136_c01242{transform:matrix(0.204664,0.005935,-0.007247,0.249895,0,0);-ms-transform:matrix(0.204664,0.005935,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.204664,0.005935,-0.007247,0.249895,0,0);}
.m22_c01242{transform:matrix(0.204851,0.005121,-0.006248,0.249922,0,0);-ms-transform:matrix(0.204851,0.005121,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.204851,0.005121,-0.006248,0.249922,0,0);}
.mc5_c01242{transform:matrix(0.205341,0.005339,-0.006498,0.249916,0,0);-ms-transform:matrix(0.205341,0.005339,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.205341,0.005339,-0.006498,0.249916,0,0);}
.ma6_c01242{transform:matrix(0.205431,0.005136,-0.006248,0.249922,0,0);-ms-transform:matrix(0.205431,0.005136,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.205431,0.005136,-0.006248,0.249922,0,0);}
.m32_c01242{transform:matrix(0.205561,0.005139,-0.006248,0.249922,0,0);-ms-transform:matrix(0.205561,0.005139,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.205561,0.005139,-0.006248,0.249922,0,0);}
.m16_c01242{transform:matrix(0.205791,0.005145,-0.006248,0.249922,0,0);-ms-transform:matrix(0.205791,0.005145,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.205791,0.005145,-0.006248,0.249922,0,0);}
.m30_c01242{transform:matrix(0.205846,0.005146,-0.006248,0.249922,0,0);-ms-transform:matrix(0.205846,0.005146,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.205846,0.005146,-0.006248,0.249922,0,0);}
.m107_c01242{transform:matrix(0.205970,0.005355,-0.006498,0.249916,0,0);-ms-transform:matrix(0.205970,0.005355,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.205970,0.005355,-0.006498,0.249916,0,0);}
.md4_c01242{transform:matrix(0.206225,0.005362,-0.006498,0.249916,0,0);-ms-transform:matrix(0.206225,0.005362,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.206225,0.005362,-0.006498,0.249916,0,0);}
.m9b_c01242{transform:matrix(0.206635,0.005166,-0.006248,0.249922,0,0);-ms-transform:matrix(0.206635,0.005166,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.206635,0.005166,-0.006248,0.249922,0,0);}
.m9c_c01242{transform:matrix(0.207530,0.005188,-0.006248,0.249922,0,0);-ms-transform:matrix(0.207530,0.005188,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.207530,0.005188,-0.006248,0.249922,0,0);}
.m9a_c01242{transform:matrix(0.207805,0.005195,-0.006248,0.249922,0,0);-ms-transform:matrix(0.207805,0.005195,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.207805,0.005195,-0.006248,0.249922,0,0);}
.m6_c01242{transform:matrix(0.208370,0.005209,-0.006248,0.249922,0,0);-ms-transform:matrix(0.208370,0.005209,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.208370,0.005209,-0.006248,0.249922,0,0);}
.m104_c01242{transform:matrix(0.208844,0.005430,-0.006498,0.249916,0,0);-ms-transform:matrix(0.208844,0.005430,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.208844,0.005430,-0.006498,0.249916,0,0);}
.mef_c01242{transform:matrix(0.208949,0.005433,-0.006498,0.249916,0,0);-ms-transform:matrix(0.208949,0.005433,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.208949,0.005433,-0.006498,0.249916,0,0);}
.ma1_c01242{transform:matrix(0.209040,0.005226,-0.006248,0.249922,0,0);-ms-transform:matrix(0.209040,0.005226,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.209040,0.005226,-0.006248,0.249922,0,0);}
.m115_c01242{transform:matrix(0.209488,0.005866,-0.006997,0.249902,0,0);-ms-transform:matrix(0.209488,0.005866,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.209488,0.005866,-0.006997,0.249902,0,0);}
.mf1_c01242{transform:matrix(0.210249,0.005466,-0.006498,0.249916,0,0);-ms-transform:matrix(0.210249,0.005466,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.210249,0.005466,-0.006498,0.249916,0,0);}
.m102_c01242{transform:matrix(0.210334,0.005469,-0.006498,0.249916,0,0);-ms-transform:matrix(0.210334,0.005469,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.210334,0.005469,-0.006498,0.249916,0,0);}
.md8_c01242{transform:matrix(0.210659,0.005477,-0.006498,0.249916,0,0);-ms-transform:matrix(0.210659,0.005477,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.210659,0.005477,-0.006498,0.249916,0,0);}
.maf_c01242{transform:matrix(0.210809,0.005270,-0.006248,0.249922,0,0);-ms-transform:matrix(0.210809,0.005270,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.210809,0.005270,-0.006248,0.249922,0,0);}
.m77_c01242{transform:matrix(0.210959,0.005274,-0.006248,0.249922,0,0);-ms-transform:matrix(0.210959,0.005274,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.210959,0.005274,-0.006248,0.249922,0,0);}
.m144_c01242{transform:matrix(0.211831,0.006143,-0.007247,0.249895,0,0);-ms-transform:matrix(0.211831,0.006143,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.211831,0.006143,-0.007247,0.249895,0,0);}
.mee_c01242{transform:matrix(0.211923,0.005510,-0.006498,0.249916,0,0);-ms-transform:matrix(0.211923,0.005510,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.211923,0.005510,-0.006498,0.249916,0,0);}
.mf8_c01242{transform:matrix(0.212468,0.005524,-0.006498,0.249916,0,0);-ms-transform:matrix(0.212468,0.005524,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.212468,0.005524,-0.006498,0.249916,0,0);}
.m113_c01242{transform:matrix(0.212557,0.005952,-0.006997,0.249902,0,0);-ms-transform:matrix(0.212557,0.005952,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.212557,0.005952,-0.006997,0.249902,0,0);}
.m17_c01242{transform:matrix(0.212664,0.005317,-0.006248,0.249922,0,0);-ms-transform:matrix(0.212664,0.005317,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.212664,0.005317,-0.006248,0.249922,0,0);}
.m7a_c01242{transform:matrix(0.212679,0.005317,-0.006248,0.249922,0,0);-ms-transform:matrix(0.212679,0.005317,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.212679,0.005317,-0.006248,0.249922,0,0);}
.me9_c01242{transform:matrix(0.212763,0.005532,-0.006498,0.249916,0,0);-ms-transform:matrix(0.212763,0.005532,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.212763,0.005532,-0.006498,0.249916,0,0);}
.m10a_c01242{transform:matrix(0.213591,0.005981,-0.006997,0.249902,0,0);-ms-transform:matrix(0.213591,0.005981,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.213591,0.005981,-0.006997,0.249902,0,0);}
.m73_c01242{transform:matrix(0.213918,0.005348,-0.006248,0.249922,0,0);-ms-transform:matrix(0.213918,0.005348,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.213918,0.005348,-0.006248,0.249922,0,0);}
.m103_c01242{transform:matrix(0.213973,0.005563,-0.006498,0.249916,0,0);-ms-transform:matrix(0.213973,0.005563,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.213973,0.005563,-0.006498,0.249916,0,0);}
.m33_c01242{transform:matrix(0.214218,0.005355,-0.006248,0.249922,0,0);-ms-transform:matrix(0.214218,0.005355,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.214218,0.005355,-0.006248,0.249922,0,0);}
.m10d_c01242{transform:matrix(0.214221,0.005998,-0.006997,0.249902,0,0);-ms-transform:matrix(0.214221,0.005998,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.214221,0.005998,-0.006997,0.249902,0,0);}
.m1f_c01242{transform:matrix(0.214393,0.005360,-0.006248,0.249922,0,0);-ms-transform:matrix(0.214393,0.005360,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.214393,0.005360,-0.006248,0.249922,0,0);}
.ma5_c01242{transform:matrix(0.215178,0.005379,-0.006248,0.249922,0,0);-ms-transform:matrix(0.215178,0.005379,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.215178,0.005379,-0.006248,0.249922,0,0);}
.m31_c01242{transform:matrix(0.215418,0.005385,-0.006248,0.249922,0,0);-ms-transform:matrix(0.215418,0.005385,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.215418,0.005385,-0.006248,0.249922,0,0);}
.md1_c01242{transform:matrix(0.215547,0.005604,-0.006498,0.249916,0,0);-ms-transform:matrix(0.215547,0.005604,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.215547,0.005604,-0.006498,0.249916,0,0);}
.m96_c01242{transform:matrix(0.215593,0.005390,-0.006248,0.249922,0,0);-ms-transform:matrix(0.215593,0.005390,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.215593,0.005390,-0.006248,0.249922,0,0);}
.m10f_c01242{transform:matrix(0.215935,0.006046,-0.006997,0.249902,0,0);-ms-transform:matrix(0.215935,0.006046,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.215935,0.006046,-0.006997,0.249902,0,0);}
.m133_c01242{transform:matrix(0.216474,0.006278,-0.007247,0.249895,0,0);-ms-transform:matrix(0.216474,0.006278,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.216474,0.006278,-0.007247,0.249895,0,0);}
.m34_c01242{transform:matrix(0.216747,0.005419,-0.006248,0.249922,0,0);-ms-transform:matrix(0.216747,0.005419,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.216747,0.005419,-0.006248,0.249922,0,0);}
.mf4_c01242{transform:matrix(0.216827,0.005637,-0.006498,0.249916,0,0);-ms-transform:matrix(0.216827,0.005637,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.216827,0.005637,-0.006498,0.249916,0,0);}
.ma0_c01242{transform:matrix(0.217062,0.005427,-0.006248,0.249922,0,0);-ms-transform:matrix(0.217062,0.005427,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.217062,0.005427,-0.006248,0.249922,0,0);}
.me6_c01242{transform:matrix(0.217127,0.005645,-0.006498,0.249916,0,0);-ms-transform:matrix(0.217127,0.005645,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.217127,0.005645,-0.006498,0.249916,0,0);}
.m94_c01242{transform:matrix(0.217347,0.005434,-0.006248,0.249922,0,0);-ms-transform:matrix(0.217347,0.005434,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.217347,0.005434,-0.006248,0.249922,0,0);}
.mf9_c01242{transform:matrix(0.217786,0.005662,-0.006498,0.249916,0,0);-ms-transform:matrix(0.217786,0.005662,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.217786,0.005662,-0.006498,0.249916,0,0);}
.mfb_c01242{transform:matrix(0.218286,0.005675,-0.006498,0.249916,0,0);-ms-transform:matrix(0.218286,0.005675,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.218286,0.005675,-0.006498,0.249916,0,0);}
.m7_c01242{transform:matrix(0.218682,0.005467,-0.006248,0.249922,0,0);-ms-transform:matrix(0.218682,0.005467,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.218682,0.005467,-0.006248,0.249922,0,0);}
.m6d_c01242{transform:matrix(0.218727,0.005468,-0.006248,0.249922,0,0);-ms-transform:matrix(0.218727,0.005468,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.218727,0.005468,-0.006248,0.249922,0,0);}
.mf2_c01242{transform:matrix(0.219331,0.005703,-0.006498,0.249916,0,0);-ms-transform:matrix(0.219331,0.005703,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.219331,0.005703,-0.006498,0.249916,0,0);}
.ma4_c01242{transform:matrix(0.219506,0.005488,-0.006248,0.249922,0,0);-ms-transform:matrix(0.219506,0.005488,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.219506,0.005488,-0.006248,0.249922,0,0);}
.mc9_c01242{transform:matrix(0.219786,0.005714,-0.006498,0.249916,0,0);-ms-transform:matrix(0.219786,0.005714,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.219786,0.005714,-0.006498,0.249916,0,0);}
.m71_c01242{transform:matrix(0.219951,0.005499,-0.006248,0.249922,0,0);-ms-transform:matrix(0.219951,0.005499,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.219951,0.005499,-0.006248,0.249922,0,0);}
.m76_c01242{transform:matrix(0.220166,0.005504,-0.006248,0.249922,0,0);-ms-transform:matrix(0.220166,0.005504,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.220166,0.005504,-0.006248,0.249922,0,0);}
.m3_c01242{transform:matrix(0.220481,0.005512,-0.006248,0.249922,0,0);-ms-transform:matrix(0.220481,0.005512,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.220481,0.005512,-0.006248,0.249922,0,0);}
.m10e_c01242{transform:matrix(0.220549,0.006175,-0.006997,0.249902,0,0);-ms-transform:matrix(0.220549,0.006175,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.220549,0.006175,-0.006997,0.249902,0,0);}
.m43_c01242{transform:matrix(0.220971,0.005524,-0.006248,0.249922,0,0);-ms-transform:matrix(0.220971,0.005524,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.220971,0.005524,-0.006248,0.249922,0,0);}
.mfc_c01242{transform:matrix(0.221010,0.005746,-0.006498,0.249916,0,0);-ms-transform:matrix(0.221010,0.005746,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.221010,0.005746,-0.006498,0.249916,0,0);}
.m4e_c01242{transform:matrix(0.222056,0.005551,-0.006248,0.249922,0,0);-ms-transform:matrix(0.222056,0.005551,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.222056,0.005551,-0.006248,0.249922,0,0);}
.m46_c01242{transform:matrix(0.223205,0.005580,-0.006248,0.249922,0,0);-ms-transform:matrix(0.223205,0.005580,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.223205,0.005580,-0.006248,0.249922,0,0);}
.mb0_c01242{transform:matrix(0.223295,0.005582,-0.006248,0.249922,0,0);-ms-transform:matrix(0.223295,0.005582,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.223295,0.005582,-0.006248,0.249922,0,0);}
.m2f_c01242{transform:matrix(0.223305,0.005583,-0.006248,0.249922,0,0);-ms-transform:matrix(0.223305,0.005583,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.223305,0.005583,-0.006248,0.249922,0,0);}
.mf3_c01242{transform:matrix(0.223769,0.005818,-0.006498,0.249916,0,0);-ms-transform:matrix(0.223769,0.005818,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.223769,0.005818,-0.006498,0.249916,0,0);}
.m131_c01242{transform:matrix(0.223816,0.006491,-0.007247,0.249895,0,0);-ms-transform:matrix(0.223816,0.006491,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.223816,0.006491,-0.007247,0.249895,0,0);}
.md5_c01242{transform:matrix(0.223984,0.005824,-0.006498,0.249916,0,0);-ms-transform:matrix(0.223984,0.005824,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.223984,0.005824,-0.006498,0.249916,0,0);}
.mde_c01242{transform:matrix(0.224004,0.005824,-0.006498,0.249916,0,0);-ms-transform:matrix(0.224004,0.005824,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.224004,0.005824,-0.006498,0.249916,0,0);}
.mfe_c01242{transform:matrix(0.224274,0.005831,-0.006498,0.249916,0,0);-ms-transform:matrix(0.224274,0.005831,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.224274,0.005831,-0.006498,0.249916,0,0);}
.m44_c01242{transform:matrix(0.224520,0.005613,-0.006248,0.249922,0,0);-ms-transform:matrix(0.224520,0.005613,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.224520,0.005613,-0.006248,0.249922,0,0);}
.m2b_c01242{transform:matrix(0.224665,0.005617,-0.006248,0.249922,0,0);-ms-transform:matrix(0.224665,0.005617,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.224665,0.005617,-0.006248,0.249922,0,0);}
.m68_c01242{transform:matrix(0.224740,0.005618,-0.006248,0.249922,0,0);-ms-transform:matrix(0.224740,0.005618,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.224740,0.005618,-0.006248,0.249922,0,0);}
.m9d_c01242{transform:matrix(0.224820,0.005620,-0.006248,0.249922,0,0);-ms-transform:matrix(0.224820,0.005620,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.224820,0.005620,-0.006248,0.249922,0,0);}
.m1b_c01242{transform:matrix(0.224940,0.005623,-0.006248,0.249922,0,0);-ms-transform:matrix(0.224940,0.005623,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.224940,0.005623,-0.006248,0.249922,0,0);}
.m145_c01242{transform:matrix(0.225150,0.006529,-0.007247,0.249895,0,0);-ms-transform:matrix(0.225150,0.006529,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.225150,0.006529,-0.007247,0.249895,0,0);}
.m1a_c01242{transform:matrix(0.225235,0.005631,-0.006248,0.249922,0,0);-ms-transform:matrix(0.225235,0.005631,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.225235,0.005631,-0.006248,0.249922,0,0);}
.m6f_c01242{transform:matrix(0.225245,0.005631,-0.006248,0.249922,0,0);-ms-transform:matrix(0.225245,0.005631,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.225245,0.005631,-0.006248,0.249922,0,0);}
.m75_c01242{transform:matrix(0.225255,0.005631,-0.006248,0.249922,0,0);-ms-transform:matrix(0.225255,0.005631,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.225255,0.005631,-0.006248,0.249922,0,0);}
.m98_c01242{transform:matrix(0.225649,0.005641,-0.006248,0.249922,0,0);-ms-transform:matrix(0.225649,0.005641,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.225649,0.005641,-0.006248,0.249922,0,0);}
.mce_c01242{transform:matrix(0.225864,0.005872,-0.006498,0.249916,0,0);-ms-transform:matrix(0.225864,0.005872,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.225864,0.005872,-0.006498,0.249916,0,0);}
.mda_c01242{transform:matrix(0.225989,0.005876,-0.006498,0.249916,0,0);-ms-transform:matrix(0.225989,0.005876,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.225989,0.005876,-0.006498,0.249916,0,0);}
.m35_c01242{transform:matrix(0.226329,0.005658,-0.006248,0.249922,0,0);-ms-transform:matrix(0.226329,0.005658,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.226329,0.005658,-0.006248,0.249922,0,0);}
.m99_c01242{transform:matrix(0.226409,0.005660,-0.006248,0.249922,0,0);-ms-transform:matrix(0.226409,0.005660,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.226409,0.005660,-0.006248,0.249922,0,0);}
.m108_c01242{transform:matrix(0.226418,0.005887,-0.006498,0.249916,0,0);-ms-transform:matrix(0.226418,0.005887,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.226418,0.005887,-0.006498,0.249916,0,0);}
.m62_c01242{transform:matrix(0.226504,0.005663,-0.006248,0.249922,0,0);-ms-transform:matrix(0.226504,0.005663,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.226504,0.005663,-0.006248,0.249922,0,0);}
.m66_c01242{transform:matrix(0.227174,0.005679,-0.006248,0.249922,0,0);-ms-transform:matrix(0.227174,0.005679,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.227174,0.005679,-0.006248,0.249922,0,0);}
.m4c_c01242{transform:matrix(0.227189,0.005680,-0.006248,0.249922,0,0);-ms-transform:matrix(0.227189,0.005680,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.227189,0.005680,-0.006248,0.249922,0,0);}
.m4_c01242{transform:matrix(0.228194,0.005705,-0.006248,0.249922,0,0);-ms-transform:matrix(0.228194,0.005705,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.228194,0.005705,-0.006248,0.249922,0,0);}
.m147_c01242{transform:matrix(0.228414,0.006624,-0.007247,0.249895,0,0);-ms-transform:matrix(0.228414,0.006624,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.228414,0.006624,-0.007247,0.249895,0,0);}
.m74_c01242{transform:matrix(0.228599,0.005715,-0.006248,0.249922,0,0);-ms-transform:matrix(0.228599,0.005715,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.228599,0.005715,-0.006248,0.249922,0,0);}
.me1_c01242{transform:matrix(0.228713,0.005947,-0.006498,0.249916,0,0);-ms-transform:matrix(0.228713,0.005947,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.228713,0.005947,-0.006498,0.249916,0,0);}
.m81_c01242{transform:matrix(0.229133,0.005728,-0.006248,0.249922,0,0);-ms-transform:matrix(0.229133,0.005728,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.229133,0.005728,-0.006248,0.249922,0,0);}
.me8_c01242{transform:matrix(0.229352,0.005963,-0.006498,0.249916,0,0);-ms-transform:matrix(0.229352,0.005963,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.229352,0.005963,-0.006498,0.249916,0,0);}
.ma9_c01242{transform:matrix(0.229383,0.005735,-0.006248,0.249922,0,0);-ms-transform:matrix(0.229383,0.005735,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.229383,0.005735,-0.006248,0.249922,0,0);}
.m50_c01242{transform:matrix(0.229878,0.005747,-0.006248,0.249922,0,0);-ms-transform:matrix(0.229878,0.005747,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.229878,0.005747,-0.006248,0.249922,0,0);}
.m8_c01242{transform:matrix(0.229968,0.005749,-0.006248,0.249922,0,0);-ms-transform:matrix(0.229968,0.005749,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.229968,0.005749,-0.006248,0.249922,0,0);}
.m4b_c01242{transform:matrix(0.230443,0.005761,-0.006248,0.249922,0,0);-ms-transform:matrix(0.230443,0.005761,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.230443,0.005761,-0.006248,0.249922,0,0);}
.m5a_c01242{transform:matrix(0.230478,0.005762,-0.006248,0.249922,0,0);-ms-transform:matrix(0.230478,0.005762,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.230478,0.005762,-0.006248,0.249922,0,0);}
.mcb_c01242{transform:matrix(0.231622,0.006022,-0.006498,0.249916,0,0);-ms-transform:matrix(0.231622,0.006022,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.231622,0.006022,-0.006498,0.249916,0,0);}
.md2_c01242{transform:matrix(0.232027,0.006033,-0.006498,0.249916,0,0);-ms-transform:matrix(0.232027,0.006033,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.232027,0.006033,-0.006498,0.249916,0,0);}
.mc8_c01242{transform:matrix(0.232416,0.006043,-0.006498,0.249916,0,0);-ms-transform:matrix(0.232416,0.006043,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.232416,0.006043,-0.006498,0.249916,0,0);}
.m7b_c01242{transform:matrix(0.232652,0.005816,-0.006248,0.249922,0,0);-ms-transform:matrix(0.232652,0.005816,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.232652,0.005816,-0.006248,0.249922,0,0);}
.m132_c01242{transform:matrix(0.232677,0.006748,-0.007247,0.249895,0,0);-ms-transform:matrix(0.232677,0.006748,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.232677,0.006748,-0.007247,0.249895,0,0);}
.m56_c01242{transform:matrix(0.232902,0.005823,-0.006248,0.249922,0,0);-ms-transform:matrix(0.232902,0.005823,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.232902,0.005823,-0.006248,0.249922,0,0);}
.me7_c01242{transform:matrix(0.232926,0.006056,-0.006498,0.249916,0,0);-ms-transform:matrix(0.232926,0.006056,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.232926,0.006056,-0.006498,0.249916,0,0);}
.m4d_c01242{transform:matrix(0.233127,0.005828,-0.006248,0.249922,0,0);-ms-transform:matrix(0.233127,0.005828,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.233127,0.005828,-0.006248,0.249922,0,0);}
.ma7_c01242{transform:matrix(0.233277,0.005832,-0.006248,0.249922,0,0);-ms-transform:matrix(0.233277,0.005832,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.233277,0.005832,-0.006248,0.249922,0,0);}
.m146_c01242{transform:matrix(0.234596,0.006803,-0.007247,0.249895,0,0);-ms-transform:matrix(0.234596,0.006803,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.234596,0.006803,-0.007247,0.249895,0,0);}
.m139_c01242{transform:matrix(0.234686,0.006806,-0.007247,0.249895,0,0);-ms-transform:matrix(0.234686,0.006806,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.234686,0.006806,-0.007247,0.249895,0,0);}
.m135_c01242{transform:matrix(0.234691,0.006806,-0.007247,0.249895,0,0);-ms-transform:matrix(0.234691,0.006806,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.234691,0.006806,-0.007247,0.249895,0,0);}
.m109_c01242{transform:matrix(0.234956,0.006109,-0.006498,0.249916,0,0);-ms-transform:matrix(0.234956,0.006109,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.234956,0.006109,-0.006498,0.249916,0,0);}
.m5d_c01242{transform:matrix(0.235596,0.005890,-0.006248,0.249922,0,0);-ms-transform:matrix(0.235596,0.005890,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.235596,0.005890,-0.006248,0.249922,0,0);}
.m52_c01242{transform:matrix(0.235736,0.005893,-0.006248,0.249922,0,0);-ms-transform:matrix(0.235736,0.005893,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.235736,0.005893,-0.006248,0.249922,0,0);}
.m11d_c01242{transform:matrix(0.235794,0.006366,-0.006748,0.249909,0,0);-ms-transform:matrix(0.235794,0.006366,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.235794,0.006366,-0.006748,0.249909,0,0);}
.m100_c01242{transform:matrix(0.235880,0.006133,-0.006498,0.249916,0,0);-ms-transform:matrix(0.235880,0.006133,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.235880,0.006133,-0.006498,0.249916,0,0);}
.m149_c01242{transform:matrix(0.235936,0.006842,-0.007247,0.249895,0,0);-ms-transform:matrix(0.235936,0.006842,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.235936,0.006842,-0.007247,0.249895,0,0);}
.m2c_c01242{transform:matrix(0.236011,0.005900,-0.006248,0.249922,0,0);-ms-transform:matrix(0.236011,0.005900,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.236011,0.005900,-0.006248,0.249922,0,0);}
.mea_c01242{transform:matrix(0.236115,0.006139,-0.006498,0.249916,0,0);-ms-transform:matrix(0.236115,0.006139,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.236115,0.006139,-0.006498,0.249916,0,0);}
.mdf_c01242{transform:matrix(0.236125,0.006139,-0.006498,0.249916,0,0);-ms-transform:matrix(0.236125,0.006139,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.236125,0.006139,-0.006498,0.249916,0,0);}
.md3_c01242{transform:matrix(0.236155,0.006140,-0.006498,0.249916,0,0);-ms-transform:matrix(0.236155,0.006140,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.236155,0.006140,-0.006498,0.249916,0,0);}
.m5c_c01242{transform:matrix(0.236176,0.005904,-0.006248,0.249922,0,0);-ms-transform:matrix(0.236176,0.005904,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.236176,0.005904,-0.006248,0.249922,0,0);}
.m21_c01242{transform:matrix(0.236476,0.005912,-0.006248,0.249922,0,0);-ms-transform:matrix(0.236476,0.005912,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.236476,0.005912,-0.006248,0.249922,0,0);}
.m3c_c01242{transform:matrix(0.236596,0.005915,-0.006248,0.249922,0,0);-ms-transform:matrix(0.236596,0.005915,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.236596,0.005915,-0.006248,0.249922,0,0);}
.me_c01242{transform:matrix(0.237111,0.005928,-0.006248,0.249922,0,0);-ms-transform:matrix(0.237111,0.005928,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.237111,0.005928,-0.006248,0.249922,0,0);}
.m4a_c01242{transform:matrix(0.237481,0.005937,-0.006248,0.249922,0,0);-ms-transform:matrix(0.237481,0.005937,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.237481,0.005937,-0.006248,0.249922,0,0);}
.md0_c01242{transform:matrix(0.237520,0.006176,-0.006498,0.249916,0,0);-ms-transform:matrix(0.237520,0.006176,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.237520,0.006176,-0.006498,0.249916,0,0);}
.m72_c01242{transform:matrix(0.237576,0.005939,-0.006248,0.249922,0,0);-ms-transform:matrix(0.237576,0.005939,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.237576,0.005939,-0.006248,0.249922,0,0);}
.m117_c01242{transform:matrix(0.237858,0.006422,-0.006748,0.249909,0,0);-ms-transform:matrix(0.237858,0.006422,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.237858,0.006422,-0.006748,0.249909,0,0);}
.m116_c01242{transform:matrix(0.237958,0.006425,-0.006748,0.249909,0,0);-ms-transform:matrix(0.237958,0.006425,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.237958,0.006425,-0.006748,0.249909,0,0);}
.m9_c01242{transform:matrix(0.237961,0.005949,-0.006248,0.249922,0,0);-ms-transform:matrix(0.237961,0.005949,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.237961,0.005949,-0.006248,0.249922,0,0);}
.mcd_c01242{transform:matrix(0.238195,0.006193,-0.006498,0.249916,0,0);-ms-transform:matrix(0.238195,0.006193,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.238195,0.006193,-0.006498,0.249916,0,0);}
.m6b_c01242{transform:matrix(0.238371,0.005959,-0.006248,0.249922,0,0);-ms-transform:matrix(0.238371,0.005959,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.238371,0.005959,-0.006248,0.249922,0,0);}
.m60_c01242{transform:matrix(0.238565,0.005964,-0.006248,0.249922,0,0);-ms-transform:matrix(0.238565,0.005964,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.238565,0.005964,-0.006248,0.249922,0,0);}
.m106_c01242{transform:matrix(0.238674,0.006206,-0.006498,0.249916,0,0);-ms-transform:matrix(0.238674,0.006206,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.238674,0.006206,-0.006498,0.249916,0,0);}
.m47_c01242{transform:matrix(0.238950,0.005974,-0.006248,0.249922,0,0);-ms-transform:matrix(0.238950,0.005974,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.238950,0.005974,-0.006248,0.249922,0,0);}
.m79_c01242{transform:matrix(0.238990,0.005975,-0.006248,0.249922,0,0);-ms-transform:matrix(0.238990,0.005975,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.238990,0.005975,-0.006248,0.249922,0,0);}
.m3e_c01242{transform:matrix(0.239220,0.005981,-0.006248,0.249922,0,0);-ms-transform:matrix(0.239220,0.005981,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.239220,0.005981,-0.006248,0.249922,0,0);}
.m3f_c01242{transform:matrix(0.239235,0.005981,-0.006248,0.249922,0,0);-ms-transform:matrix(0.239235,0.005981,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.239235,0.005981,-0.006248,0.249922,0,0);}
.m58_c01242{transform:matrix(0.239670,0.005992,-0.006248,0.249922,0,0);-ms-transform:matrix(0.239670,0.005992,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.239670,0.005992,-0.006248,0.249922,0,0);}
.m29_c01242{transform:matrix(0.239835,0.005996,-0.006248,0.249922,0,0);-ms-transform:matrix(0.239835,0.005996,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.239835,0.005996,-0.006248,0.249922,0,0);}
.mdc_c01242{transform:matrix(0.240369,0.006250,-0.006498,0.249916,0,0);-ms-transform:matrix(0.240369,0.006250,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.240369,0.006250,-0.006498,0.249916,0,0);}
.m45_c01242{transform:matrix(0.240890,0.006022,-0.006248,0.249922,0,0);-ms-transform:matrix(0.240890,0.006022,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.240890,0.006022,-0.006248,0.249922,0,0);}
.m70_c01242{transform:matrix(0.241220,0.006030,-0.006248,0.249922,0,0);-ms-transform:matrix(0.241220,0.006030,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.241220,0.006030,-0.006248,0.249922,0,0);}
.m54_c01242{transform:matrix(0.241964,0.006049,-0.006248,0.249922,0,0);-ms-transform:matrix(0.241964,0.006049,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.241964,0.006049,-0.006248,0.249922,0,0);}
.m6c_c01242{transform:matrix(0.242104,0.006053,-0.006248,0.249922,0,0);-ms-transform:matrix(0.242104,0.006053,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.242104,0.006053,-0.006248,0.249922,0,0);}
.m5_c01242{transform:matrix(0.242149,0.006054,-0.006248,0.249922,0,0);-ms-transform:matrix(0.242149,0.006054,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.242149,0.006054,-0.006248,0.249922,0,0);}
.m101_c01242{transform:matrix(0.242398,0.006302,-0.006498,0.249916,0,0);-ms-transform:matrix(0.242398,0.006302,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.242398,0.006302,-0.006498,0.249916,0,0);}
.m12_c01242{transform:matrix(0.242669,0.006067,-0.006248,0.249922,0,0);-ms-transform:matrix(0.242669,0.006067,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.242669,0.006067,-0.006248,0.249922,0,0);}
.m7c_c01242{transform:matrix(0.242684,0.006067,-0.006248,0.249922,0,0);-ms-transform:matrix(0.242684,0.006067,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.242684,0.006067,-0.006248,0.249922,0,0);}
.m119_c01242{transform:matrix(0.242802,0.006556,-0.006748,0.249909,0,0);-ms-transform:matrix(0.242802,0.006556,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.242802,0.006556,-0.006748,0.249909,0,0);}
.m11b_c01242{transform:matrix(0.243011,0.006561,-0.006748,0.249909,0,0);-ms-transform:matrix(0.243011,0.006561,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.243011,0.006561,-0.006748,0.249909,0,0);}
.m11f_c01242{transform:matrix(0.243291,0.006569,-0.006748,0.249909,0,0);-ms-transform:matrix(0.243291,0.006569,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.243291,0.006569,-0.006748,0.249909,0,0);}
.m138_c01242{transform:matrix(0.243623,0.007065,-0.007247,0.249895,0,0);-ms-transform:matrix(0.243623,0.007065,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.243623,0.007065,-0.007247,0.249895,0,0);}
.m12d_c01242{transform:matrix(0.243646,0.006578,-0.006748,0.249909,0,0);-ms-transform:matrix(0.243646,0.006578,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.243646,0.006578,-0.006748,0.249909,0,0);}
.mc7_c01242{transform:matrix(0.244232,0.006350,-0.006498,0.249916,0,0);-ms-transform:matrix(0.244232,0.006350,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.244232,0.006350,-0.006498,0.249916,0,0);}
.m126_c01242{transform:matrix(0.244771,0.006609,-0.006748,0.249909,0,0);-ms-transform:matrix(0.244771,0.006609,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.244771,0.006609,-0.006748,0.249909,0,0);}
.ma_c01242{transform:matrix(0.244873,0.006122,-0.006248,0.249922,0,0);-ms-transform:matrix(0.244873,0.006122,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.244873,0.006122,-0.006248,0.249922,0,0);}
.m48_c01242{transform:matrix(0.244933,0.006123,-0.006248,0.249922,0,0);-ms-transform:matrix(0.244933,0.006123,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.244933,0.006123,-0.006248,0.249922,0,0);}
.m142_c01242{transform:matrix(0.245552,0.007121,-0.007247,0.249895,0,0);-ms-transform:matrix(0.245552,0.007121,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.245552,0.007121,-0.007247,0.249895,0,0);}
.me5_c01242{transform:matrix(0.245762,0.006390,-0.006498,0.249916,0,0);-ms-transform:matrix(0.245762,0.006390,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.245762,0.006390,-0.006498,0.249916,0,0);}
.mdb_c01242{transform:matrix(0.245897,0.006393,-0.006498,0.249916,0,0);-ms-transform:matrix(0.245897,0.006393,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.245897,0.006393,-0.006498,0.249916,0,0);}
.m78_c01242{transform:matrix(0.246083,0.006152,-0.006248,0.249922,0,0);-ms-transform:matrix(0.246083,0.006152,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.246083,0.006152,-0.006248,0.249922,0,0);}
.m26_c01242{transform:matrix(0.246118,0.006153,-0.006248,0.249922,0,0);-ms-transform:matrix(0.246118,0.006153,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.246118,0.006153,-0.006248,0.249922,0,0);}
.m59_c01242{transform:matrix(0.246183,0.006155,-0.006248,0.249922,0,0);-ms-transform:matrix(0.246183,0.006155,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.246183,0.006155,-0.006248,0.249922,0,0);}
.m6e_c01242{transform:matrix(0.247083,0.006177,-0.006248,0.249922,0,0);-ms-transform:matrix(0.247083,0.006177,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.247083,0.006177,-0.006248,0.249922,0,0);}
.m143_c01242{transform:matrix(0.247711,0.007184,-0.007247,0.249895,0,0);-ms-transform:matrix(0.247711,0.007184,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.247711,0.007184,-0.007247,0.249895,0,0);}
.m4f_c01242{transform:matrix(0.248232,0.006206,-0.006248,0.249922,0,0);-ms-transform:matrix(0.248232,0.006206,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.248232,0.006206,-0.006248,0.249922,0,0);}
.m5e_c01242{transform:matrix(0.248262,0.006207,-0.006248,0.249922,0,0);-ms-transform:matrix(0.248262,0.006207,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.248262,0.006207,-0.006248,0.249922,0,0);}
.m128_c01242{transform:matrix(0.248834,0.006719,-0.006748,0.249909,0,0);-ms-transform:matrix(0.248834,0.006719,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.248834,0.006719,-0.006748,0.249909,0,0);}
.m55_c01242{transform:matrix(0.248997,0.006225,-0.006248,0.249922,0,0);-ms-transform:matrix(0.248997,0.006225,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.248997,0.006225,-0.006248,0.249922,0,0);}
.m7d_c01242{transform:matrix(0.249077,0.006227,-0.006248,0.249922,0,0);-ms-transform:matrix(0.249077,0.006227,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.249077,0.006227,-0.006248,0.249922,0,0);}
.m51_c01242{transform:matrix(0.249167,0.006229,-0.006248,0.249922,0,0);-ms-transform:matrix(0.249167,0.006229,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.249167,0.006229,-0.006248,0.249922,0,0);}
.m12b_c01242{transform:matrix(0.249559,0.006738,-0.006748,0.249909,0,0);-ms-transform:matrix(0.249559,0.006738,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.249559,0.006738,-0.006748,0.249909,0,0);}
.m10_c01242{transform:matrix(0.250347,0.006259,-0.006248,0.249922,0,0);-ms-transform:matrix(0.250347,0.006259,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.250347,0.006259,-0.006248,0.249922,0,0);}
.md9_c01242{transform:matrix(0.250775,0.006520,-0.006498,0.249916,0,0);-ms-transform:matrix(0.250775,0.006520,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.250775,0.006520,-0.006498,0.249916,0,0);}
.m23_c01242{transform:matrix(0.250932,0.006273,-0.006248,0.249922,0,0);-ms-transform:matrix(0.250932,0.006273,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.250932,0.006273,-0.006248,0.249922,0,0);}
.m105_c01242{transform:matrix(0.251030,0.006527,-0.006498,0.249916,0,0);-ms-transform:matrix(0.251030,0.006527,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.251030,0.006527,-0.006498,0.249916,0,0);}
.m5b_c01242{transform:matrix(0.251271,0.006282,-0.006248,0.249922,0,0);-ms-transform:matrix(0.251271,0.006282,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.251271,0.006282,-0.006248,0.249922,0,0);}
.mc6_c01242{transform:matrix(0.251300,0.006534,-0.006498,0.249916,0,0);-ms-transform:matrix(0.251300,0.006534,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.251300,0.006534,-0.006498,0.249916,0,0);}
.m120_c01242{transform:matrix(0.251543,0.006792,-0.006748,0.249909,0,0);-ms-transform:matrix(0.251543,0.006792,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.251543,0.006792,-0.006748,0.249909,0,0);}
.m15_c01242{transform:matrix(0.251676,0.006292,-0.006248,0.249922,0,0);-ms-transform:matrix(0.251676,0.006292,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.251676,0.006292,-0.006248,0.249922,0,0);}
.m83_c01242{transform:matrix(0.251781,0.006295,-0.006248,0.249922,0,0);-ms-transform:matrix(0.251781,0.006295,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.251781,0.006295,-0.006248,0.249922,0,0);}
.mb7_c01242{transform:matrix(0.252641,0.006316,-0.006248,0.249922,0,0);-ms-transform:matrix(0.252641,0.006316,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.252641,0.006316,-0.006248,0.249922,0,0);}
.m38_c01242{transform:matrix(0.253026,0.006326,-0.006248,0.249922,0,0);-ms-transform:matrix(0.253026,0.006326,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.253026,0.006326,-0.006248,0.249922,0,0);}
.m134_c01242{transform:matrix(0.253044,0.007338,-0.007247,0.249895,0,0);-ms-transform:matrix(0.253044,0.007338,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.253044,0.007338,-0.007247,0.249895,0,0);}
.m67_c01242{transform:matrix(0.253346,0.006334,-0.006248,0.249922,0,0);-ms-transform:matrix(0.253346,0.006334,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.253346,0.006334,-0.006248,0.249922,0,0);}
.me2_c01242{transform:matrix(0.253459,0.006590,-0.006498,0.249916,0,0);-ms-transform:matrix(0.253459,0.006590,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.253459,0.006590,-0.006498,0.249916,0,0);}
.m57_c01242{transform:matrix(0.253676,0.006342,-0.006248,0.249922,0,0);-ms-transform:matrix(0.253676,0.006342,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.253676,0.006342,-0.006248,0.249922,0,0);}
.m7e_c01242{transform:matrix(0.253836,0.006346,-0.006248,0.249922,0,0);-ms-transform:matrix(0.253836,0.006346,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.253836,0.006346,-0.006248,0.249922,0,0);}
.m80_c01242{transform:matrix(0.254665,0.006367,-0.006248,0.249922,0,0);-ms-transform:matrix(0.254665,0.006367,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.254665,0.006367,-0.006248,0.249922,0,0);}
.m65_c01242{transform:matrix(0.254770,0.006369,-0.006248,0.249922,0,0);-ms-transform:matrix(0.254770,0.006369,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.254770,0.006369,-0.006248,0.249922,0,0);}
.m6a_c01242{transform:matrix(0.254945,0.006374,-0.006248,0.249922,0,0);-ms-transform:matrix(0.254945,0.006374,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.254945,0.006374,-0.006248,0.249922,0,0);}
.mdd_c01242{transform:matrix(0.255519,0.006643,-0.006498,0.249916,0,0);-ms-transform:matrix(0.255519,0.006643,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.255519,0.006643,-0.006498,0.249916,0,0);}
.m141_c01242{transform:matrix(0.256062,0.007426,-0.007247,0.249895,0,0);-ms-transform:matrix(0.256062,0.007426,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.256062,0.007426,-0.007247,0.249895,0,0);}
.m41_c01242{transform:matrix(0.256090,0.006402,-0.006248,0.249922,0,0);-ms-transform:matrix(0.256090,0.006402,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.256090,0.006402,-0.006248,0.249922,0,0);}
.m69_c01242{transform:matrix(0.256380,0.006409,-0.006248,0.249922,0,0);-ms-transform:matrix(0.256380,0.006409,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.256380,0.006409,-0.006248,0.249922,0,0);}
.mb4_c01242{transform:matrix(0.256400,0.006410,-0.006248,0.249922,0,0);-ms-transform:matrix(0.256400,0.006410,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.256400,0.006410,-0.006248,0.249922,0,0);}
.mf_c01242{transform:matrix(0.257525,0.006438,-0.006248,0.249922,0,0);-ms-transform:matrix(0.257525,0.006438,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.257525,0.006438,-0.006248,0.249922,0,0);}
.m63_c01242{transform:matrix(0.258024,0.006451,-0.006248,0.249922,0,0);-ms-transform:matrix(0.258024,0.006451,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.258024,0.006451,-0.006248,0.249922,0,0);}
.me0_c01242{transform:matrix(0.258033,0.006709,-0.006498,0.249916,0,0);-ms-transform:matrix(0.258033,0.006709,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.258033,0.006709,-0.006498,0.249916,0,0);}
.m37_c01242{transform:matrix(0.258229,0.006456,-0.006248,0.249922,0,0);-ms-transform:matrix(0.258229,0.006456,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.258229,0.006456,-0.006248,0.249922,0,0);}
.ma8_c01242{transform:matrix(0.258299,0.006457,-0.006248,0.249922,0,0);-ms-transform:matrix(0.258299,0.006457,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.258299,0.006457,-0.006248,0.249922,0,0);}
.mb2_c01242{transform:matrix(0.258329,0.006458,-0.006248,0.249922,0,0);-ms-transform:matrix(0.258329,0.006458,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.258329,0.006458,-0.006248,0.249922,0,0);}
.m3a_c01242{transform:matrix(0.258674,0.006467,-0.006248,0.249922,0,0);-ms-transform:matrix(0.258674,0.006467,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.258674,0.006467,-0.006248,0.249922,0,0);}
.m82_c01242{transform:matrix(0.259139,0.006478,-0.006248,0.249922,0,0);-ms-transform:matrix(0.259139,0.006478,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.259139,0.006478,-0.006248,0.249922,0,0);}
.m14a_c01242{transform:matrix(0.259141,0.007515,-0.007247,0.249895,0,0);-ms-transform:matrix(0.259141,0.007515,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.259141,0.007515,-0.007247,0.249895,0,0);}
.mca_c01242{transform:matrix(0.259542,0.006748,-0.006498,0.249916,0,0);-ms-transform:matrix(0.259542,0.006748,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.259542,0.006748,-0.006498,0.249916,0,0);}
.mbf_c01242{transform:matrix(0.259797,0.006755,-0.006498,0.249916,0,0);-ms-transform:matrix(0.259797,0.006755,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.259797,0.006755,-0.006498,0.249916,0,0);}
.m5f_c01242{transform:matrix(0.259939,0.006498,-0.006248,0.249922,0,0);-ms-transform:matrix(0.259939,0.006498,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.259939,0.006498,-0.006248,0.249922,0,0);}
.m127_c01242{transform:matrix(0.260445,0.007032,-0.006748,0.249909,0,0);-ms-transform:matrix(0.260445,0.007032,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.260445,0.007032,-0.006748,0.249909,0,0);}
.m53_c01242{transform:matrix(0.260619,0.006515,-0.006248,0.249922,0,0);-ms-transform:matrix(0.260619,0.006515,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.260619,0.006515,-0.006248,0.249922,0,0);}
.m3b_c01242{transform:matrix(0.261508,0.006538,-0.006248,0.249922,0,0);-ms-transform:matrix(0.261508,0.006538,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.261508,0.006538,-0.006248,0.249922,0,0);}
.mfd_c01242{transform:matrix(0.262061,0.006814,-0.006498,0.249916,0,0);-ms-transform:matrix(0.262061,0.006814,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.262061,0.006814,-0.006498,0.249916,0,0);}
.m3d_c01242{transform:matrix(0.262818,0.006570,-0.006248,0.249922,0,0);-ms-transform:matrix(0.262818,0.006570,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.262818,0.006570,-0.006248,0.249922,0,0);}
.m13a_c01242{transform:matrix(0.263899,0.007653,-0.007247,0.249895,0,0);-ms-transform:matrix(0.263899,0.007653,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.263899,0.007653,-0.007247,0.249895,0,0);}
.mc0_c01242{transform:matrix(0.264811,0.006885,-0.006498,0.249916,0,0);-ms-transform:matrix(0.264811,0.006885,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.264811,0.006885,-0.006498,0.249916,0,0);}
.m14_c01242{transform:matrix(0.266167,0.006654,-0.006248,0.249922,0,0);-ms-transform:matrix(0.266167,0.006654,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.266167,0.006654,-0.006248,0.249922,0,0);}
.mb5_c01242{transform:matrix(0.267037,0.006676,-0.006248,0.249922,0,0);-ms-transform:matrix(0.267037,0.006676,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.267037,0.006676,-0.006248,0.249922,0,0);}
.m64_c01242{transform:matrix(0.267761,0.006694,-0.006248,0.249922,0,0);-ms-transform:matrix(0.267761,0.006694,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.267761,0.006694,-0.006248,0.249922,0,0);}
.m123_c01242{transform:matrix(0.268487,0.007249,-0.006748,0.249909,0,0);-ms-transform:matrix(0.268487,0.007249,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.268487,0.007249,-0.006748,0.249909,0,0);}
.mb_c01242{transform:matrix(0.268716,0.006718,-0.006248,0.249922,0,0);-ms-transform:matrix(0.268716,0.006718,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.268716,0.006718,-0.006248,0.249922,0,0);}
.maa_c01242{transform:matrix(0.268856,0.006721,-0.006248,0.249922,0,0);-ms-transform:matrix(0.268856,0.006721,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.268856,0.006721,-0.006248,0.249922,0,0);}
.m148_c01242{transform:matrix(0.268872,0.007797,-0.007247,0.249895,0,0);-ms-transform:matrix(0.268872,0.007797,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.268872,0.007797,-0.007247,0.249895,0,0);}
.mc2_c01242{transform:matrix(0.269039,0.006995,-0.006498,0.249916,0,0);-ms-transform:matrix(0.269039,0.006995,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.269039,0.006995,-0.006498,0.249916,0,0);}
.m125_c01242{transform:matrix(0.269437,0.007275,-0.006748,0.249909,0,0);-ms-transform:matrix(0.269437,0.007275,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.269437,0.007275,-0.006748,0.249909,0,0);}
.mc_c01242{transform:matrix(0.270725,0.006768,-0.006248,0.249922,0,0);-ms-transform:matrix(0.270725,0.006768,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.270725,0.006768,-0.006248,0.249922,0,0);}
.m11e_c01242{transform:matrix(0.270856,0.007313,-0.006748,0.249909,0,0);-ms-transform:matrix(0.270856,0.007313,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.270856,0.007313,-0.006748,0.249909,0,0);}
.m40_c01242{transform:matrix(0.272420,0.006810,-0.006248,0.249922,0,0);-ms-transform:matrix(0.272420,0.006810,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.272420,0.006810,-0.006248,0.249922,0,0);}
.mb3_c01242{transform:matrix(0.272895,0.006822,-0.006248,0.249922,0,0);-ms-transform:matrix(0.272895,0.006822,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.272895,0.006822,-0.006248,0.249922,0,0);}
.m27_c01242{transform:matrix(0.273500,0.006837,-0.006248,0.249922,0,0);-ms-transform:matrix(0.273500,0.006837,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.273500,0.006837,-0.006248,0.249922,0,0);}
.m11a_c01242{transform:matrix(0.274040,0.007399,-0.006748,0.249909,0,0);-ms-transform:matrix(0.274040,0.007399,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.274040,0.007399,-0.006748,0.249909,0,0);}
.m12c_c01242{transform:matrix(0.274780,0.007419,-0.006748,0.249909,0,0);-ms-transform:matrix(0.274780,0.007419,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.274780,0.007419,-0.006748,0.249909,0,0);}
.m11_c01242{transform:matrix(0.274899,0.006872,-0.006248,0.249922,0,0);-ms-transform:matrix(0.274899,0.006872,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.274899,0.006872,-0.006248,0.249922,0,0);}
.md_c01242{transform:matrix(0.275519,0.006888,-0.006248,0.249922,0,0);-ms-transform:matrix(0.275519,0.006888,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.275519,0.006888,-0.006248,0.249922,0,0);}
.m25_c01242{transform:matrix(0.275789,0.006895,-0.006248,0.249922,0,0);-ms-transform:matrix(0.275789,0.006895,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.275789,0.006895,-0.006248,0.249922,0,0);}
.m42_c01242{transform:matrix(0.275799,0.006895,-0.006248,0.249922,0,0);-ms-transform:matrix(0.275799,0.006895,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.275799,0.006895,-0.006248,0.249922,0,0);}
.m24_c01242{transform:matrix(0.276239,0.006906,-0.006248,0.249922,0,0);-ms-transform:matrix(0.276239,0.006906,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.276239,0.006906,-0.006248,0.249922,0,0);}
.m12a_c01242{transform:matrix(0.278439,0.007518,-0.006748,0.249909,0,0);-ms-transform:matrix(0.278439,0.007518,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.278439,0.007518,-0.006748,0.249909,0,0);}
.m118_c01242{transform:matrix(0.278978,0.007532,-0.006748,0.249909,0,0);-ms-transform:matrix(0.278978,0.007532,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.278978,0.007532,-0.006748,0.249909,0,0);}
.m39_c01242{transform:matrix(0.279203,0.006980,-0.006248,0.249922,0,0);-ms-transform:matrix(0.279203,0.006980,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.279203,0.006980,-0.006248,0.249922,0,0);}
.m14e_c01242{transform:matrix(0.279785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279785,0.000000,0.000000,0.250000,0,0);}
.m61_c01242{transform:matrix(0.280222,0.007006,-0.006248,0.249922,0,0);-ms-transform:matrix(0.280222,0.007006,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.280222,0.007006,-0.006248,0.249922,0,0);}
.m28_c01242{transform:matrix(0.280827,0.007021,-0.006248,0.249922,0,0);-ms-transform:matrix(0.280827,0.007021,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.280827,0.007021,-0.006248,0.249922,0,0);}
.m12e_c01242{transform:matrix(0.280913,0.007585,-0.006748,0.249909,0,0);-ms-transform:matrix(0.280913,0.007585,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.280913,0.007585,-0.006748,0.249909,0,0);}
.m13_c01242{transform:matrix(0.282162,0.007054,-0.006248,0.249922,0,0);-ms-transform:matrix(0.282162,0.007054,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.282162,0.007054,-0.006248,0.249922,0,0);}
.m129_c01242{transform:matrix(0.282397,0.007625,-0.006748,0.249909,0,0);-ms-transform:matrix(0.282397,0.007625,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.282397,0.007625,-0.006748,0.249909,0,0);}
.m2a_c01242{transform:matrix(0.284376,0.007109,-0.006248,0.249922,0,0);-ms-transform:matrix(0.284376,0.007109,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.284376,0.007109,-0.006248,0.249922,0,0);}
.m13b_c01242{transform:matrix(0.287004,0.008323,-0.007247,0.249895,0,0);-ms-transform:matrix(0.287004,0.008323,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.287004,0.008323,-0.007247,0.249895,0,0);}
.m124_c01242{transform:matrix(0.290354,0.007840,-0.006748,0.249909,0,0);-ms-transform:matrix(0.290354,0.007840,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.290354,0.007840,-0.006748,0.249909,0,0);}
.mb9_c01242{transform:matrix(0.293806,0.007639,-0.006498,0.249916,0,0);-ms-transform:matrix(0.293806,0.007639,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.293806,0.007639,-0.006498,0.249916,0,0);}
.mb1_c01242{transform:matrix(0.296472,0.007412,-0.006248,0.249922,0,0);-ms-transform:matrix(0.296472,0.007412,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.296472,0.007412,-0.006248,0.249922,0,0);}
.mc1_c01242{transform:matrix(0.297170,0.007726,-0.006498,0.249916,0,0);-ms-transform:matrix(0.297170,0.007726,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.297170,0.007726,-0.006498,0.249916,0,0);}
.m1_c01242{transform:matrix(0.303075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303075,0.000000,0.000000,0.250000,0,0);}
.mb6_c01242{transform:matrix(0.308908,0.007723,-0.006248,0.249922,0,0);-ms-transform:matrix(0.308908,0.007723,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.308908,0.007723,-0.006248,0.249922,0,0);}
.mb8_c01242{transform:matrix(0.317488,0.008255,-0.006498,0.249916,0,0);-ms-transform:matrix(0.317488,0.008255,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.317488,0.008255,-0.006498,0.249916,0,0);}
.mbc_c01242{transform:matrix(0.331593,0.008621,-0.006498,0.249916,0,0);-ms-transform:matrix(0.331593,0.008621,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.331593,0.008621,-0.006498,0.249916,0,0);}
.m9e_c01242{transform:matrix(0.333151,0.008329,-0.006248,0.249922,0,0);-ms-transform:matrix(0.333151,0.008329,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.333151,0.008329,-0.006248,0.249922,0,0);}
.mbe_c01242{transform:matrix(0.344654,0.008961,-0.006498,0.249916,0,0);-ms-transform:matrix(0.344654,0.008961,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.344654,0.008961,-0.006498,0.249916,0,0);}
.mf5_c01242{transform:matrix(0.367491,0.009555,-0.006498,0.249916,0,0);-ms-transform:matrix(0.367491,0.009555,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.367491,0.009555,-0.006498,0.249916,0,0);}
.m14c_c01242{transform:matrix(0.372040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372040,0.000000,0.000000,0.250000,0,0);}
.mba_c01242{transform:matrix(0.374653,0.009741,-0.006498,0.249916,0,0);-ms-transform:matrix(0.374653,0.009741,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.374653,0.009741,-0.006498,0.249916,0,0);}
.m92_c01242{transform:matrix(0.383190,0.009580,-0.006248,0.249922,0,0);-ms-transform:matrix(0.383190,0.009580,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.383190,0.009580,-0.006248,0.249922,0,0);}
.m14b_c01242{transform:matrix(0.388490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388490,0.000000,0.000000,0.250000,0,0);}
.mbd_c01242{transform:matrix(0.398035,0.010349,-0.006498,0.249916,0,0);-ms-transform:matrix(0.398035,0.010349,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.398035,0.010349,-0.006498,0.249916,0,0);}
.mbb_c01242{transform:matrix(0.411651,0.010703,-0.006498,0.249916,0,0);-ms-transform:matrix(0.411651,0.010703,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.411651,0.010703,-0.006498,0.249916,0,0);}
.m13d_c01242{transform:matrix(0.415046,0.012036,-0.007247,0.249895,0,0);-ms-transform:matrix(0.415046,0.012036,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.415046,0.012036,-0.007247,0.249895,0,0);}
.m13f_c01242{transform:matrix(0.439255,0.012738,-0.007247,0.249895,0,0);-ms-transform:matrix(0.439255,0.012738,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.439255,0.012738,-0.007247,0.249895,0,0);}
.mf6_c01242{transform:matrix(0.503120,0.013081,-0.006498,0.249916,0,0);-ms-transform:matrix(0.503120,0.013081,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.503120,0.013081,-0.006498,0.249916,0,0);}
.mcc_c01242{transform:matrix(0.528841,0.013750,-0.006498,0.249916,0,0);-ms-transform:matrix(0.528841,0.013750,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.528841,0.013750,-0.006498,0.249916,0,0);}
.m13e_c01242{transform:matrix(0.578427,0.016774,-0.007247,0.249895,0,0);-ms-transform:matrix(0.578427,0.016774,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.578427,0.016774,-0.007247,0.249895,0,0);}
.mec_c01242{transform:matrix(0.585197,0.015215,-0.006498,0.249916,0,0);-ms-transform:matrix(0.585197,0.015215,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.585197,0.015215,-0.006498,0.249916,0,0);}
.m130_c01242{transform:matrix(0.611903,0.017745,-0.007247,0.249895,0,0);-ms-transform:matrix(0.611903,0.017745,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.611903,0.017745,-0.007247,0.249895,0,0);}
.me3_c01242{transform:matrix(0.705652,0.018347,-0.006498,0.249916,0,0);-ms-transform:matrix(0.705652,0.018347,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.705652,0.018347,-0.006498,0.249916,0,0);}
.m13c_c01242{transform:matrix(0.818496,0.023736,-0.007247,0.249895,0,0);-ms-transform:matrix(0.818496,0.023736,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.818496,0.023736,-0.007247,0.249895,0,0);}
.m14d_c01242{transform:matrix(0.943880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.943880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.943880,0.000000,0.000000,0.250000,0,0);}
.m140_c01242{transform:matrix(1.012769,0.029370,-0.007247,0.249895,0,0);-ms-transform:matrix(1.012769,0.029370,-0.007247,0.249895,0,0);-webkit-transform:matrix(1.012769,0.029370,-0.007247,0.249895,0,0);}
.v0_c01242{vertical-align:0.000000px;}
.ls0_c01242{letter-spacing:0.000000px;}
.sc__c01242{text-shadow:none;}
.sc0_c01242{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__c01242{-webkit-text-stroke:0px transparent;}
.sc0_c01242{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01242{word-spacing:0.000000px;}
.fc0_c01242{color:transparent;}
.fse_c01242{font-size:36.015135px;}
.fs10_c01242{font-size:48.000000px;}
.fs2_c01242{font-size:72.022496px;}
.fsc_c01242{font-size:72.026239px;}
.fs4_c01242{font-size:78.024371px;}
.fs6_c01242{font-size:78.026360px;}
.fsb_c01242{font-size:78.028426px;}
.fsf_c01242{font-size:78.032792px;}
.fs1_c01242{font-size:84.026246px;}
.fs7_c01242{font-size:84.028387px;}
.fsa_c01242{font-size:84.030612px;}
.fs3_c01242{font-size:90.028121px;}
.fs8_c01242{font-size:90.030415px;}
.fs9_c01242{font-size:90.035273px;}
.fsd_c01242{font-size:90.037837px;}
.fs0_c01242{font-size:96.000000px;}
.fs5_c01242{font-size:114.035619px;}
.y0_c01242{bottom:0.000000px;}
.y151_c01242{bottom:81.565999px;}
.y150_c01242{bottom:82.963005px;}
.y14f_c01242{bottom:84.629797px;}
.y14e_c01242{bottom:85.454884px;}
.y14d_c01242{bottom:85.968073px;}
.y14c_c01242{bottom:87.109300px;}
.y14b_c01242{bottom:87.912157px;}
.y14a_c01242{bottom:89.856958px;}
.y149_c01242{bottom:91.779529px;}
.y148_c01242{bottom:93.135337px;}
.y147_c01242{bottom:122.083955px;}
.y146_c01242{bottom:122.752855px;}
.y145_c01242{bottom:123.260852px;}
.y144_c01242{bottom:123.552574px;}
.y143_c01242{bottom:124.214427px;}
.y142_c01242{bottom:129.060339px;}
.y141_c01242{bottom:129.965965px;}
.y152_c01242{bottom:130.276500px;}
.y140_c01242{bottom:131.946129px;}
.y13f_c01242{bottom:133.253174px;}
.y13e_c01242{bottom:134.203735px;}
.y13d_c01242{bottom:134.875027px;}
.y13c_c01242{bottom:137.150904px;}
.y13b_c01242{bottom:138.143443px;}
.y13a_c01242{bottom:139.653981px;}
.y139_c01242{bottom:140.585360px;}
.y138_c01242{bottom:142.205473px;}
.y137_c01242{bottom:145.395372px;}
.y136_c01242{bottom:146.347500px;}
.y135_c01242{bottom:160.624846px;}
.y134_c01242{bottom:161.732911px;}
.y133_c01242{bottom:162.877879px;}
.y132_c01242{bottom:165.883719px;}
.y131_c01242{bottom:167.042176px;}
.y130_c01242{bottom:170.410971px;}
.y12f_c01242{bottom:174.892570px;}
.y12e_c01242{bottom:176.032474px;}
.y12d_c01242{bottom:177.894196px;}
.y12c_c01242{bottom:179.011780px;}
.y12b_c01242{bottom:181.963744px;}
.y12a_c01242{bottom:195.618493px;}
.y129_c01242{bottom:196.637197px;}
.y128_c01242{bottom:197.711437px;}
.y127_c01242{bottom:198.401335px;}
.y126_c01242{bottom:199.315081px;}
.y125_c01242{bottom:201.576783px;}
.y124_c01242{bottom:202.750836px;}
.y123_c01242{bottom:203.951746px;}
.y122_c01242{bottom:207.616657px;}
.y121_c01242{bottom:210.183306px;}
.y120_c01242{bottom:211.339779px;}
.y11f_c01242{bottom:213.201258px;}
.y11e_c01242{bottom:214.384101px;}
.y11d_c01242{bottom:251.965071px;}
.y11c_c01242{bottom:254.614500px;}
.y11b_c01242{bottom:268.531440px;}
.y11a_c01242{bottom:269.462244px;}
.y119_c01242{bottom:271.278030px;}
.y118_c01242{bottom:272.221392px;}
.y117_c01242{bottom:273.189324px;}
.y116_c01242{bottom:274.407492px;}
.y115_c01242{bottom:276.865626px;}
.y114_c01242{bottom:279.983580px;}
.y113_c01242{bottom:282.425754px;}
.y112_c01242{bottom:283.998234px;}
.y111_c01242{bottom:284.927736px;}
.y110_c01242{bottom:286.746000px;}
.y10f_c01242{bottom:305.071689px;}
.y10e_c01242{bottom:306.867537px;}
.y10d_c01242{bottom:307.921314px;}
.y10c_c01242{bottom:311.458224px;}
.y10b_c01242{bottom:315.043485px;}
.y10a_c01242{bottom:316.090146px;}
.y109_c01242{bottom:317.801730px;}
.y108_c01242{bottom:319.244109px;}
.y107_c01242{bottom:324.834024px;}
.y106_c01242{bottom:325.540689px;}
.y105_c01242{bottom:342.447672px;}
.y104_c01242{bottom:343.396905px;}
.y103_c01242{bottom:346.022835px;}
.y102_c01242{bottom:347.609538px;}
.y101_c01242{bottom:349.675626px;}
.y100_c01242{bottom:350.389398px;}
.yff_c01242{bottom:351.779904px;}
.yfe_c01242{bottom:352.913124px;}
.yfd_c01242{bottom:354.297114px;}
.yfc_c01242{bottom:354.974823px;}
.yfb_c01242{bottom:374.863512px;}
.yfa_c01242{bottom:377.540958px;}
.yf9_c01242{bottom:379.319019px;}
.yf8_c01242{bottom:382.322142px;}
.yf7_c01242{bottom:384.701541px;}
.yf6_c01242{bottom:386.493447px;}
.yf5_c01242{bottom:387.378792px;}
.yf4_c01242{bottom:388.874016px;}
.yf3_c01242{bottom:390.644667px;}
.yf2_c01242{bottom:393.876789px;}
.yf0_c01242{bottom:409.312353px;}
.yf1_c01242{bottom:409.580673px;}
.yef_c01242{bottom:419.408634px;}
.yee_c01242{bottom:420.272913px;}
.yed_c01242{bottom:422.218428px;}
.yec_c01242{bottom:424.269048px;}
.yeb_c01242{bottom:425.405898px;}
.yea_c01242{bottom:428.290494px;}
.ye9_c01242{bottom:428.972838px;}
.ye8_c01242{bottom:446.916486px;}
.ye7_c01242{bottom:448.277385px;}
.ye6_c01242{bottom:449.569614px;}
.ye5_c01242{bottom:453.202038px;}
.ye4_c01242{bottom:454.582122px;}
.ye3_c01242{bottom:455.883924px;}
.ye2_c01242{bottom:458.528727px;}
.ye1_c01242{bottom:460.203027px;}
.ye0_c01242{bottom:462.502434px;}
.ydf_c01242{bottom:463.812933px;}
.yde_c01242{bottom:464.798799px;}
.ydd_c01242{bottom:465.447633px;}
.ydc_c01242{bottom:480.960606px;}
.ydb_c01242{bottom:482.897283px;}
.yda_c01242{bottom:486.701382px;}
.yd9_c01242{bottom:488.119389px;}
.yd8_c01242{bottom:490.818102px;}
.yd7_c01242{bottom:492.819510px;}
.yd6_c01242{bottom:493.822242px;}
.yd5_c01242{bottom:497.421267px;}
.yd4_c01242{bottom:498.413997px;}
.yd3_c01242{bottom:499.062129px;}
.yd2_c01242{bottom:501.104385px;}
.yd1_c01242{bottom:516.177195px;}
.yd0_c01242{bottom:517.080156px;}
.ycf_c01242{bottom:519.840126px;}
.yce_c01242{bottom:520.776195px;}
.ycd_c01242{bottom:522.011451px;}
.ycc_c01242{bottom:523.886028px;}
.ycb_c01242{bottom:524.515833px;}
.yca_c01242{bottom:526.373895px;}
.yc9_c01242{bottom:531.183051px;}
.yc8_c01242{bottom:533.237346px;}
.yc7_c01242{bottom:550.577058px;}
.yc6_c01242{bottom:553.211235px;}
.yc5_c01242{bottom:554.095443px;}
.yc4_c01242{bottom:555.211233px;}
.yc3_c01242{bottom:557.232291px;}
.yc2_c01242{bottom:558.403968px;}
.yc1_c01242{bottom:559.239075px;}
.yc0_c01242{bottom:560.354865px;}
.ybf_c01242{bottom:561.288213px;}
.ybe_c01242{bottom:562.775946px;}
.ybd_c01242{bottom:564.446160px;}
.ybc_c01242{bottom:566.769000px;}
.ybb_c01242{bottom:623.175900px;}
.yba_c01242{bottom:624.080100px;}
.yb9_c01242{bottom:625.260187px;}
.yb8_c01242{bottom:626.746200px;}
.yb7_c01242{bottom:627.991537px;}
.yb6_c01242{bottom:629.806687px;}
.yb5_c01242{bottom:630.644137px;}
.yb4_c01242{bottom:632.144400px;}
.yb3_c01242{bottom:632.737200px;}
.yb2_c01242{bottom:633.753037px;}
.yb1_c01242{bottom:635.016825px;}
.yb0_c01242{bottom:638.116012px;}
.yaf_c01242{bottom:639.718050px;}
.yae_c01242{bottom:659.358000px;}
.yad_c01242{bottom:659.993850px;}
.yac_c01242{bottom:661.265512px;}
.yab_c01242{bottom:661.896112px;}
.yaa_c01242{bottom:662.721638px;}
.ya9_c01242{bottom:664.003913px;}
.ya8_c01242{bottom:665.255625px;}
.ya7_c01242{bottom:666.097163px;}
.ya6_c01242{bottom:667.781663px;}
.ya5_c01242{bottom:668.416463px;}
.ya4_c01242{bottom:669.052537px;}
.ya3_c01242{bottom:670.083787px;}
.ya2_c01242{bottom:672.147038px;}
.ya1_c01242{bottom:690.513225px;}
.ya0_c01242{bottom:691.056525px;}
.y9f_c01242{bottom:692.275987px;}
.y9e_c01242{bottom:693.311213px;}
.y9d_c01242{bottom:694.318650px;}
.y9c_c01242{bottom:695.828100px;}
.y9b_c01242{bottom:698.654250px;}
.y9a_c01242{bottom:701.202413px;}
.y99_c01242{bottom:702.462638px;}
.y98_c01242{bottom:704.451563px;}
.y97_c01242{bottom:705.246038px;}
.y96_c01242{bottom:707.282288px;}
.y95_c01242{bottom:708.033863px;}
.y94_c01242{bottom:708.620850px;}
.y93_c01242{bottom:726.773888px;}
.y92_c01242{bottom:728.322300px;}
.y91_c01242{bottom:729.078413px;}
.y90_c01242{bottom:732.588450px;}
.y8f_c01242{bottom:733.349513px;}
.y8e_c01242{bottom:734.545687px;}
.y8d_c01242{bottom:735.697388px;}
.y8c_c01242{bottom:737.946488px;}
.y8b_c01242{bottom:739.573125px;}
.y8a_c01242{bottom:744.202988px;}
.y89_c01242{bottom:745.337400px;}
.y88_c01242{bottom:746.097750px;}
.y87_c01242{bottom:749.953050px;}
.y86_c01242{bottom:750.726262px;}
.y85_c01242{bottom:764.149575px;}
.y84_c01242{bottom:766.949963px;}
.y83_c01242{bottom:767.804588px;}
.y82_c01242{bottom:770.512162px;}
.y81_c01242{bottom:771.936300px;}
.y80_c01242{bottom:774.151987px;}
.y7f_c01242{bottom:775.813500px;}
.y7e_c01242{bottom:777.184350px;}
.y7d_c01242{bottom:778.026825px;}
.y7c_c01242{bottom:800.964263px;}
.y7b_c01242{bottom:802.906875px;}
.y7a_c01242{bottom:806.601825px;}
.y79_c01242{bottom:807.424500px;}
.y78_c01242{bottom:808.719150px;}
.y77_c01242{bottom:809.550975px;}
.y76_c01242{bottom:811.618763px;}
.y75_c01242{bottom:812.455425px;}
.y74_c01242{bottom:814.541775px;}
.y73_c01242{bottom:815.836913px;}
.y72_c01242{bottom:835.897087px;}
.y71_c01242{bottom:836.456438px;}
.y70_c01242{bottom:837.750937px;}
.y6f_c01242{bottom:838.338338px;}
.y6e_c01242{bottom:839.283788px;}
.y6d_c01242{bottom:839.665650px;}
.y6c_c01242{bottom:840.988988px;}
.y6b_c01242{bottom:841.898212px;}
.y6a_c01242{bottom:843.588263px;}
.y69_c01242{bottom:844.170750px;}
.y68_c01242{bottom:845.827425px;}
.y67_c01242{bottom:846.397163px;}
.y66_c01242{bottom:847.163738px;}
.y65_c01242{bottom:872.110312px;}
.y64_c01242{bottom:874.766513px;}
.y63_c01242{bottom:875.514938px;}
.y62_c01242{bottom:877.362863px;}
.y61_c01242{bottom:878.413462px;}
.y60_c01242{bottom:879.409800px;}
.y5f_c01242{bottom:881.099663px;}
.y5e_c01242{bottom:882.085612px;}
.y5d_c01242{bottom:882.552900px;}
.y5c_c01242{bottom:884.473688px;}
.y5b_c01242{bottom:884.976075px;}
.y5a_c01242{bottom:886.865812px;}
.y59_c01242{bottom:907.224975px;}
.y58_c01242{bottom:908.421975px;}
.y57_c01242{bottom:909.011287px;}
.y56_c01242{bottom:910.206975px;}
.y55_c01242{bottom:911.019863px;}
.y54_c01242{bottom:913.207388px;}
.y53_c01242{bottom:914.193975px;}
.y52_c01242{bottom:915.384900px;}
.y51_c01242{bottom:916.007250px;}
.y50_c01242{bottom:917.557238px;}
.y4f_c01242{bottom:918.160200px;}
.y4e_c01242{bottom:918.933262px;}
.y4d_c01242{bottom:919.544625px;}
.y4c_c01242{bottom:942.364763px;}
.y4b_c01242{bottom:944.675325px;}
.y4a_c01242{bottom:945.184088px;}
.y49_c01242{bottom:948.247837px;}
.y48_c01242{bottom:951.279150px;}
.y47_c01242{bottom:952.568737px;}
.y46_c01242{bottom:955.346175px;}
.y45_c01242{bottom:956.817525px;}
.y44_c01242{bottom:957.355463px;}
.y43_c01242{bottom:977.474100px;}
.y42_c01242{bottom:978.375713px;}
.y41_c01242{bottom:979.711762px;}
.y40_c01242{bottom:980.574975px;}
.y3f_c01242{bottom:981.255900px;}
.y3e_c01242{bottom:982.601363px;}
.y3d_c01242{bottom:983.249063px;}
.y3c_c01242{bottom:984.340200px;}
.y3b_c01242{bottom:985.242900px;}
.y3a_c01242{bottom:987.451725px;}
.y39_c01242{bottom:988.089038px;}
.y38_c01242{bottom:988.752338px;}
.y37_c01242{bottom:990.035737px;}
.y36_c01242{bottom:1010.755688px;}
.y35_c01242{bottom:1011.671550px;}
.y34_c01242{bottom:1014.676987px;}
.y33_c01242{bottom:1017.026250px;}
.y32_c01242{bottom:1018.871513px;}
.y31_c01242{bottom:1020.066975px;}
.y30_c01242{bottom:1022.412937px;}
.y2f_c01242{bottom:1023.932400px;}
.y2e_c01242{bottom:1027.175062px;}
.y2d_c01242{bottom:1027.768050px;}
.y2c_c01242{bottom:1028.929312px;}
.y2b_c01242{bottom:1050.435975px;}
.y2a_c01242{bottom:1050.913125px;}
.y29_c01242{bottom:1052.167200px;}
.y28_c01242{bottom:1052.623500px;}
.y27_c01242{bottom:1053.724200px;}
.y26_c01242{bottom:1054.934925px;}
.y25_c01242{bottom:1055.423513px;}
.y24_c01242{bottom:1056.652875px;}
.y23_c01242{bottom:1058.171850px;}
.y22_c01242{bottom:1058.637000px;}
.y21_c01242{bottom:1082.717025px;}
.y20_c01242{bottom:1084.183013px;}
.y1f_c01242{bottom:1085.011800px;}
.y1e_c01242{bottom:1086.924262px;}
.y1d_c01242{bottom:1087.910700px;}
.y1c_c01242{bottom:1088.868188px;}
.y1b_c01242{bottom:1089.866888px;}
.y1a_c01242{bottom:1092.719738px;}
.y19_c01242{bottom:1095.930300px;}
.y18_c01242{bottom:1097.189025px;}
.y17_c01242{bottom:1097.822363px;}
.y16_c01242{bottom:1100.368125px;}
.y15_c01242{bottom:1101.314063px;}
.y14_c01242{bottom:1117.084838px;}
.y13_c01242{bottom:1118.526975px;}
.y12_c01242{bottom:1120.266938px;}
.y11_c01242{bottom:1120.887938px;}
.y10_c01242{bottom:1122.170888px;}
.yf_c01242{bottom:1122.777225px;}
.ye_c01242{bottom:1123.809113px;}
.yd_c01242{bottom:1124.471438px;}
.yc_c01242{bottom:1126.144650px;}
.yb_c01242{bottom:1128.212250px;}
.ya_c01242{bottom:1129.673850px;}
.y9_c01242{bottom:1153.953338px;}
.y8_c01242{bottom:1156.167488px;}
.y7_c01242{bottom:1157.861550px;}
.y6_c01242{bottom:1158.678375px;}
.y5_c01242{bottom:1159.749938px;}
.y4_c01242{bottom:1162.000688px;}
.y3_c01242{bottom:1163.648363px;}
.y2_c01242{bottom:1166.679000px;}
.y1_c01242{bottom:1225.384500px;}
.h10_c01242{height:36.015135px;}
.h12_c01242{height:48.000000px;}
.h4_c01242{height:72.022496px;}
.he_c01242{height:72.026239px;}
.h6_c01242{height:78.024371px;}
.h8_c01242{height:78.026360px;}
.hd_c01242{height:78.028426px;}
.h11_c01242{height:78.032792px;}
.h3_c01242{height:84.026246px;}
.h9_c01242{height:84.028387px;}
.hc_c01242{height:84.030612px;}
.h5_c01242{height:90.028121px;}
.ha_c01242{height:90.030415px;}
.hb_c01242{height:90.035273px;}
.hf_c01242{height:90.037837px;}
.h2_c01242{height:96.000000px;}
.h7_c01242{height:114.035619px;}
.h1_c01242{height:1258.500000px;}
.h0_c01242{height:1258.740000px;}
.w1_c01242{width:899.250000px;}
.w0_c01242{width:899.370000px;}
.x0_c01242{left:0.000000px;}
.xb0_c01242{left:98.953707px;}
.x76_c01242{left:105.375150px;}
.x6b_c01242{left:109.413150px;}
.xb4_c01242{left:116.189970px;}
.xdf_c01242{left:118.960070px;}
.xd7_c01242{left:122.067000px;}
.xcf_c01242{left:123.363057px;}
.xc7_c01242{left:124.506000px;}
.xa1_c01242{left:125.786487px;}
.xa7_c01242{left:127.813407px;}
.x6c_c01242{left:131.516138px;}
.x55_c01242{left:133.098375px;}
.x42_c01242{left:134.732287px;}
.x3a_c01242{left:135.904200px;}
.x1d_c01242{left:138.014475px;}
.xc_c01242{left:139.316100px;}
.xc0_c01242{left:147.619803px;}
.xa8_c01242{left:149.420145px;}
.xe0_c01242{left:153.792662px;}
.xd8_c01242{left:154.899000px;}
.x8a_c01242{left:157.218038px;}
.x3b_c01242{left:159.282862px;}
.x77_c01242{left:163.540538px;}
.x43_c01242{left:168.732750px;}
.x16_c01242{left:171.192825px;}
.xe3_c01242{left:175.495254px;}
.x56_c01242{left:178.170375px;}
.x25_c01242{left:181.268250px;}
.x5e_c01242{left:188.116200px;}
.xc8_c01242{left:189.444000px;}
.x9b_c01242{left:191.167047px;}
.xa2_c01242{left:193.885428px;}
.xe1_c01242{left:195.915885px;}
.x2e_c01242{left:201.934875px;}
.x26_c01242{left:203.246662px;}
.xd0_c01242{left:210.178654px;}
.x44_c01242{left:211.662750px;}
.xd_c01242{left:216.211612px;}
.x4d_c01242{left:221.985113px;}
.x3c_c01242{left:223.240050px;}
.xbb_c01242{left:224.301168px;}
.xa9_c01242{left:225.964689px;}
.xe2_c01242{left:231.095064px;}
.xcc_c01242{left:232.507777px;}
.x2f_c01242{left:235.131037px;}
.x93_c01242{left:236.640000px;}
.x80_c01242{left:240.299100px;}
.x66_c01242{left:241.315125px;}
.xd1_c01242{left:243.064458px;}
.x45_c01242{left:245.147100px;}
.xa3_c01242{left:248.566734px;}
.x78_c01242{left:252.074963px;}
.x4_c01242{left:259.950000px;}
.x6d_c01242{left:263.369175px;}
.x9c_c01242{left:264.520725px;}
.x30_c01242{left:266.987512px;}
.x5f_c01242{left:275.052375px;}
.xbc_c01242{left:278.278188px;}
.x1e_c01242{left:279.758438px;}
.x17_c01242{left:280.825875px;}
.x79_c01242{left:286.615688px;}
.x81_c01242{left:294.577238px;}
.x6e_c01242{left:295.777575px;}
.xd2_c01242{left:297.840130px;}
.xb5_c01242{left:301.445634px;}
.xaa_c01242{left:302.626233px;}
.x57_c01242{left:309.133050px;}
.xd9_c01242{left:320.761500px;}
.xc1_c01242{left:322.320081px;}
.x27_c01242{left:323.347162px;}
.xe_c01242{left:325.031925px;}
.x82_c01242{left:328.065263px;}
.x67_c01242{left:329.848125px;}
.x46_c01242{left:331.281675px;}
.x3d_c01242{left:344.003587px;}
.x4e_c01242{left:353.393475px;}
.xb6_c01242{left:356.818191px;}
.xab_c01242{left:358.420422px;}
.x83_c01242{left:361.502288px;}
.x47_c01242{left:365.841712px;}
.x1f_c01242{left:367.537050px;}
.x7a_c01242{left:373.077000px;}
.x31_c01242{left:377.434312px;}
.xbd_c01242{left:378.494214px;}
.x28_c01242{left:379.622850px;}
.x5_c01242{left:381.175500px;}
.x94_c01242{left:390.219000px;}
.x60_c01242{left:396.033375px;}
.x4f_c01242{left:398.234850px;}
.x3e_c01242{left:400.089900px;}
.x20_c01242{left:402.390113px;}
.x1_c01242{left:403.650000px;}
.xda_c01242{left:404.965500px;}
.xe4_c01242{left:407.986224px;}
.xf_c01242{left:413.093625px;}
.x8b_c01242{left:415.799138px;}
.xc2_c01242{left:420.880215px;}
.x32_c01242{left:422.547937px;}
.x2_c01242{left:427.410000px;}
.xe5_c01242{left:428.529617px;}
.x61_c01242{left:430.687238px;}
.x48_c01242{left:432.030300px;}
.xb1_c01242{left:433.566207px;}
.x18_c01242{left:434.921963px;}
.x9d_c01242{left:436.267794px;}
.x8c_c01242{left:437.770050px;}
.xdb_c01242{left:439.191000px;}
.x58_c01242{left:442.841288px;}
.x6_c01242{left:447.082500px;}
.x84_c01242{left:450.135563px;}
.xc3_c01242{left:453.573606px;}
.xb7_c01242{left:455.979117px;}
.xe6_c01242{left:461.536445px;}
.xd3_c01242{left:463.179405px;}
.x29_c01242{left:466.497000px;}
.xa4_c01242{left:468.646341px;}
.x3_c01242{left:470.880000px;}
.x50_c01242{left:475.015088px;}
.x33_c01242{left:477.120262px;}
.x95_c01242{left:483.337500px;}
.x62_c01242{left:484.634588px;}
.x49_c01242{left:486.863400px;}
.x21_c01242{left:488.822850px;}
.xac_c01242{left:489.949233px;}
.x8d_c01242{left:493.337775px;}
.x85_c01242{left:494.423700px;}
.x59_c01242{left:496.320975px;}
.x10_c01242{left:502.235475px;}
.x34_c01242{left:509.512312px;}
.x2a_c01242{left:510.773288px;}
.xdc_c01242{left:517.669500px;}
.x63_c01242{left:518.922450px;}
.x51_c01242{left:520.332000px;}
.x8e_c01242{left:524.374238px;}
.x96_c01242{left:526.252500px;}
.xe7_c01242{left:528.226688px;}
.x3f_c01242{left:531.909000px;}
.x11_c01242{left:534.113738px;}
.xad_c01242{left:535.928436px;}
.x7_c01242{left:537.112500px;}
.x6f_c01242{left:538.800863px;}
.xdd_c01242{left:540.817500px;}
.x68_c01242{left:541.901625px;}
.xb8_c01242{left:544.088316px;}
.xbe_c01242{left:552.470334px;}
.x97_c01242{left:558.372000px;}
.x86_c01242{left:560.342100px;}
.xd4_c01242{left:562.264194px;}
.xc4_c01242{left:565.604634px;}
.x19_c01242{left:567.730687px;}
.x70_c01242{left:571.720650px;}
.x5a_c01242{left:574.170038px;}
.x35_c01242{left:576.779212px;}
.x8_c01242{left:579.975000px;}
.xe8_c01242{left:584.112669px;}
.x8f_c01242{left:591.576863px;}
.x5b_c01242{left:596.589000px;}
.x22_c01242{left:599.973375px;}
.x12_c01242{left:601.641862px;}
.x98_c01242{left:603.436500px;}
.x71_c01242{left:605.879100px;}
.x4a_c01242{left:608.405662px;}
.x36_c01242{left:610.860487px;}
.x9_c01242{left:612.648000px;}
.xde_c01242{left:618.666000px;}
.x72_c01242{left:627.616163px;}
.x13_c01242{left:634.346775px;}
.x9e_c01242{left:636.207420px;}
.x90_c01242{left:637.728075px;}
.xc9_c01242{left:643.242000px;}
.x69_c01242{left:650.204625px;}
.x52_c01242{left:652.122900px;}
.x37_c01242{left:654.034387px;}
.xb9_c01242{left:655.320930px;}
.xae_c01242{left:656.989839px;}
.x7b_c01242{left:661.572938px;}
.x2b_c01242{left:666.126525px;}
.x9f_c01242{left:669.612165px;}
.x87_c01242{left:671.310750px;}
.x64_c01242{left:672.904313px;}
.xc5_c01242{left:676.122396px;}
.xbf_c01242{left:677.541597px;}
.xa_c01242{left:680.410500px;}
.x6a_c01242{left:684.389625px;}
.x53_c01242{left:686.142450px;}
.x40_c01242{left:687.237262px;}
.x23_c01242{left:689.581013px;}
.x91_c01242{left:692.785838px;}
.x1a_c01242{left:700.672875px;}
.xcd_c01242{left:702.595501px;}
.x88_c01242{left:704.519738px;}
.xc6_c01242{left:709.031748px;}
.xd5_c01242{left:718.429710px;}
.x38_c01242{left:720.804712px;}
.x24_c01242{left:723.616350px;}
.x14_c01242{left:725.919000px;}
.x73_c01242{left:727.912613px;}
.x1b_c01242{left:729.261525px;}
.xa5_c01242{left:732.650385px;}
.x92_c01242{left:736.507163px;}
.xca_c01242{left:741.783000px;}
.xaf_c01242{left:745.408635px;}
.x74_c01242{left:749.511713px;}
.xd6_c01242{left:751.018554px;}
.x4b_c01242{left:752.666362px;}
.x65_c01242{left:753.850838px;}
.x99_c01242{left:758.092500px;}
.x5c_c01242{left:762.936263px;}
.x39_c01242{left:765.874838px;}
.xb_c01242{left:768.976500px;}
.x7c_c01242{left:770.953875px;}
.xcb_c01242{left:775.026000px;}
.x2c_c01242{left:777.458475px;}
.x1c_c01242{left:779.795962px;}
.xce_c01242{left:784.426031px;}
.x41_c01242{left:787.704787px;}
.x75_c01242{left:793.737150px;}
.x5d_c01242{left:795.876863px;}
.xa6_c01242{left:797.208177px;}
.xa0_c01242{left:800.448879px;}
.x15_c01242{left:801.795862px;}
.x89_c01242{left:804.955313px;}
.x54_c01242{left:806.859487px;}
.x2d_c01242{left:811.391287px;}
.x7d_c01242{left:815.965125px;}
.x4c_c01242{left:819.157987px;}
.xba_c01242{left:820.336140px;}
.xe9_c01242{left:839.430000px;}
.xb3_c01242{left:844.806207px;}
.xb2_c01242{left:855.126207px;}
.x9a_c01242{left:859.407000px;}
.xea_c01242{left:862.650000px;}
.x7e_c01242{left:869.006288px;}
.x7f_c01242{left:892.599450px;}
@media print{
.v0_c01242{vertical-align:0.000000pt;}
.ls0_c01242{letter-spacing:0.000000pt;}
.ws0_c01242{word-spacing:0.000000pt;}
.fse_c01242{font-size:32.013453pt;}
.fs10_c01242{font-size:42.666667pt;}
.fs2_c01242{font-size:64.019997pt;}
.fsc_c01242{font-size:64.023324pt;}
.fs4_c01242{font-size:69.354997pt;}
.fs6_c01242{font-size:69.356764pt;}
.fsb_c01242{font-size:69.358601pt;}
.fsf_c01242{font-size:69.362482pt;}
.fs1_c01242{font-size:74.689996pt;}
.fs7_c01242{font-size:74.691900pt;}
.fsa_c01242{font-size:74.693878pt;}
.fs3_c01242{font-size:80.024996pt;}
.fs8_c01242{font-size:80.027035pt;}
.fs9_c01242{font-size:80.031354pt;}
.fsd_c01242{font-size:80.033633pt;}
.fs0_c01242{font-size:85.333333pt;}
.fs5_c01242{font-size:101.364995pt;}
.y0_c01242{bottom:0.000000pt;}
.y151_c01242{bottom:72.503111pt;}
.y150_c01242{bottom:73.744893pt;}
.y14f_c01242{bottom:75.226487pt;}
.y14e_c01242{bottom:75.959897pt;}
.y14d_c01242{bottom:76.416065pt;}
.y14c_c01242{bottom:77.430489pt;}
.y14b_c01242{bottom:78.144140pt;}
.y14a_c01242{bottom:79.872852pt;}
.y149_c01242{bottom:81.581804pt;}
.y148_c01242{bottom:82.786967pt;}
.y147_c01242{bottom:108.519071pt;}
.y146_c01242{bottom:109.113649pt;}
.y145_c01242{bottom:109.565201pt;}
.y144_c01242{bottom:109.824511pt;}
.y143_c01242{bottom:110.412824pt;}
.y142_c01242{bottom:114.720301pt;}
.y141_c01242{bottom:115.525303pt;}
.y152_c01242{bottom:115.801333pt;}
.y140_c01242{bottom:117.285448pt;}
.y13f_c01242{bottom:118.447265pt;}
.y13e_c01242{bottom:119.292209pt;}
.y13d_c01242{bottom:119.888913pt;}
.y13c_c01242{bottom:121.911915pt;}
.y13b_c01242{bottom:122.794172pt;}
.y13a_c01242{bottom:124.136872pt;}
.y139_c01242{bottom:124.964764pt;}
.y138_c01242{bottom:126.404865pt;}
.y137_c01242{bottom:129.240331pt;}
.y136_c01242{bottom:130.086667pt;}
.y135_c01242{bottom:142.777641pt;}
.y134_c01242{bottom:143.762588pt;}
.y133_c01242{bottom:144.780337pt;}
.y132_c01242{bottom:147.452195pt;}
.y131_c01242{bottom:148.481935pt;}
.y130_c01242{bottom:151.476419pt;}
.y12f_c01242{bottom:155.460063pt;}
.y12e_c01242{bottom:156.473311pt;}
.y12d_c01242{bottom:158.128175pt;}
.y12c_c01242{bottom:159.121583pt;}
.y12b_c01242{bottom:161.745551pt;}
.y12a_c01242{bottom:173.883105pt;}
.y129_c01242{bottom:174.788620pt;}
.y128_c01242{bottom:175.743500pt;}
.y127_c01242{bottom:176.356743pt;}
.y126_c01242{bottom:177.168961pt;}
.y125_c01242{bottom:179.179363pt;}
.y124_c01242{bottom:180.222965pt;}
.y123_c01242{bottom:181.290441pt;}
.y122_c01242{bottom:184.548140pt;}
.y121_c01242{bottom:186.829605pt;}
.y120_c01242{bottom:187.857581pt;}
.y11f_c01242{bottom:189.512229pt;}
.y11e_c01242{bottom:190.563645pt;}
.y11d_c01242{bottom:223.968952pt;}
.y11c_c01242{bottom:226.324000pt;}
.y11b_c01242{bottom:238.694613pt;}
.y11a_c01242{bottom:239.521995pt;}
.y119_c01242{bottom:241.136027pt;}
.y118_c01242{bottom:241.974571pt;}
.y117_c01242{bottom:242.834955pt;}
.y116_c01242{bottom:243.917771pt;}
.y115_c01242{bottom:246.102779pt;}
.y114_c01242{bottom:248.874293pt;}
.y113_c01242{bottom:251.045115pt;}
.y112_c01242{bottom:252.442875pt;}
.y111_c01242{bottom:253.269099pt;}
.y110_c01242{bottom:254.885333pt;}
.y10f_c01242{bottom:271.174835pt;}
.y10e_c01242{bottom:272.771144pt;}
.y10d_c01242{bottom:273.707835pt;}
.y10c_c01242{bottom:276.851755pt;}
.y10b_c01242{bottom:280.038653pt;}
.y10a_c01242{bottom:280.969019pt;}
.y109_c01242{bottom:282.490427pt;}
.y108_c01242{bottom:283.772541pt;}
.y107_c01242{bottom:288.741355pt;}
.y106_c01242{bottom:289.369501pt;}
.y105_c01242{bottom:304.397931pt;}
.y104_c01242{bottom:305.241693pt;}
.y103_c01242{bottom:307.575853pt;}
.y102_c01242{bottom:308.986256pt;}
.y101_c01242{bottom:310.822779pt;}
.y100_c01242{bottom:311.457243pt;}
.yff_c01242{bottom:312.693248pt;}
.yfe_c01242{bottom:313.700555pt;}
.yfd_c01242{bottom:314.930768pt;}
.yfc_c01242{bottom:315.533176pt;}
.yfb_c01242{bottom:333.212011pt;}
.yfa_c01242{bottom:335.591963pt;}
.yf9_c01242{bottom:337.172461pt;}
.yf8_c01242{bottom:339.841904pt;}
.yf7_c01242{bottom:341.956925pt;}
.yf6_c01242{bottom:343.549731pt;}
.yf5_c01242{bottom:344.336704pt;}
.yf4_c01242{bottom:345.665792pt;}
.yf3_c01242{bottom:347.239704pt;}
.yf2_c01242{bottom:350.112701pt;}
.yf0_c01242{bottom:363.833203pt;}
.yf1_c01242{bottom:364.071709pt;}
.yef_c01242{bottom:372.807675pt;}
.yee_c01242{bottom:373.575923pt;}
.yed_c01242{bottom:375.305269pt;}
.yec_c01242{bottom:377.128043pt;}
.yeb_c01242{bottom:378.138576pt;}
.yea_c01242{bottom:380.702661pt;}
.ye9_c01242{bottom:381.309189pt;}
.ye8_c01242{bottom:397.259099pt;}
.ye7_c01242{bottom:398.468787pt;}
.ye6_c01242{bottom:399.617435pt;}
.ye5_c01242{bottom:402.846256pt;}
.ye4_c01242{bottom:404.072997pt;}
.ye3_c01242{bottom:405.230155pt;}
.ye2_c01242{bottom:407.581091pt;}
.ye1_c01242{bottom:409.069357pt;}
.ye0_c01242{bottom:411.113275pt;}
.ydf_c01242{bottom:412.278163pt;}
.yde_c01242{bottom:413.154488pt;}
.ydd_c01242{bottom:413.731229pt;}
.ydc_c01242{bottom:427.520539pt;}
.ydb_c01242{bottom:429.242029pt;}
.yda_c01242{bottom:432.623451pt;}
.yd9_c01242{bottom:433.883901pt;}
.yd8_c01242{bottom:436.282757pt;}
.yd7_c01242{bottom:438.061787pt;}
.yd6_c01242{bottom:438.953104pt;}
.yd5_c01242{bottom:442.152237pt;}
.yd4_c01242{bottom:443.034664pt;}
.yd3_c01242{bottom:443.610781pt;}
.yd2_c01242{bottom:445.426120pt;}
.yd1_c01242{bottom:458.824173pt;}
.yd0_c01242{bottom:459.626805pt;}
.ycf_c01242{bottom:462.080112pt;}
.yce_c01242{bottom:462.912173pt;}
.ycd_c01242{bottom:464.010179pt;}
.ycc_c01242{bottom:465.676469pt;}
.ycb_c01242{bottom:466.236296pt;}
.yca_c01242{bottom:467.887907pt;}
.yc9_c01242{bottom:472.162712pt;}
.yc8_c01242{bottom:473.988752pt;}
.yc7_c01242{bottom:489.401829pt;}
.yc6_c01242{bottom:491.743320pt;}
.yc5_c01242{bottom:492.529283pt;}
.yc4_c01242{bottom:493.521096pt;}
.yc3_c01242{bottom:495.317592pt;}
.yc2_c01242{bottom:496.359083pt;}
.yc1_c01242{bottom:497.101400pt;}
.yc0_c01242{bottom:498.093213pt;}
.ybf_c01242{bottom:498.922856pt;}
.ybe_c01242{bottom:500.245285pt;}
.ybd_c01242{bottom:501.729920pt;}
.ybc_c01242{bottom:503.794667pt;}
.ybb_c01242{bottom:553.934133pt;}
.yba_c01242{bottom:554.737867pt;}
.yb9_c01242{bottom:555.786833pt;}
.yb8_c01242{bottom:557.107733pt;}
.yb7_c01242{bottom:558.214700pt;}
.yb6_c01242{bottom:559.828167pt;}
.yb5_c01242{bottom:560.572567pt;}
.yb4_c01242{bottom:561.906133pt;}
.yb3_c01242{bottom:562.433067pt;}
.yb2_c01242{bottom:563.336033pt;}
.yb1_c01242{bottom:564.459400pt;}
.yb0_c01242{bottom:567.214233pt;}
.yaf_c01242{bottom:568.638267pt;}
.yae_c01242{bottom:586.096000pt;}
.yad_c01242{bottom:586.661200pt;}
.yac_c01242{bottom:587.791567pt;}
.yab_c01242{bottom:588.352100pt;}
.yaa_c01242{bottom:589.085900pt;}
.ya9_c01242{bottom:590.225700pt;}
.ya8_c01242{bottom:591.338333pt;}
.ya7_c01242{bottom:592.086367pt;}
.ya6_c01242{bottom:593.583700pt;}
.ya5_c01242{bottom:594.147967pt;}
.ya4_c01242{bottom:594.713367pt;}
.ya3_c01242{bottom:595.630033pt;}
.ya2_c01242{bottom:597.464033pt;}
.ya1_c01242{bottom:613.789533pt;}
.ya0_c01242{bottom:614.272467pt;}
.y9f_c01242{bottom:615.356433pt;}
.y9e_c01242{bottom:616.276633pt;}
.y9d_c01242{bottom:617.172133pt;}
.y9c_c01242{bottom:618.513867pt;}
.y9b_c01242{bottom:621.026000pt;}
.y9a_c01242{bottom:623.291033pt;}
.y99_c01242{bottom:624.411233pt;}
.y98_c01242{bottom:626.179167pt;}
.y97_c01242{bottom:626.885367pt;}
.y96_c01242{bottom:628.695367pt;}
.y95_c01242{bottom:629.363433pt;}
.y94_c01242{bottom:629.885200pt;}
.y93_c01242{bottom:646.021233pt;}
.y92_c01242{bottom:647.397600pt;}
.y91_c01242{bottom:648.069700pt;}
.y90_c01242{bottom:651.189733pt;}
.y8f_c01242{bottom:651.866233pt;}
.y8e_c01242{bottom:652.929500pt;}
.y8d_c01242{bottom:653.953233pt;}
.y8c_c01242{bottom:655.952433pt;}
.y8b_c01242{bottom:657.398333pt;}
.y8a_c01242{bottom:661.513767pt;}
.y89_c01242{bottom:662.522133pt;}
.y88_c01242{bottom:663.198000pt;}
.y87_c01242{bottom:666.624933pt;}
.y86_c01242{bottom:667.312233pt;}
.y85_c01242{bottom:679.244067pt;}
.y84_c01242{bottom:681.733300pt;}
.y83_c01242{bottom:682.492967pt;}
.y82_c01242{bottom:684.899700pt;}
.y81_c01242{bottom:686.165600pt;}
.y80_c01242{bottom:688.135100pt;}
.y7f_c01242{bottom:689.612000pt;}
.y7e_c01242{bottom:690.830533pt;}
.y7d_c01242{bottom:691.579400pt;}
.y7c_c01242{bottom:711.968233pt;}
.y7b_c01242{bottom:713.695000pt;}
.y7a_c01242{bottom:716.979400pt;}
.y79_c01242{bottom:717.710667pt;}
.y78_c01242{bottom:718.861467pt;}
.y77_c01242{bottom:719.600867pt;}
.y76_c01242{bottom:721.438900pt;}
.y75_c01242{bottom:722.182600pt;}
.y74_c01242{bottom:724.037133pt;}
.y73_c01242{bottom:725.188367pt;}
.y72_c01242{bottom:743.019633pt;}
.y71_c01242{bottom:743.516833pt;}
.y70_c01242{bottom:744.667500pt;}
.y6f_c01242{bottom:745.189633pt;}
.y6e_c01242{bottom:746.030033pt;}
.y6d_c01242{bottom:746.369467pt;}
.y6c_c01242{bottom:747.545767pt;}
.y6b_c01242{bottom:748.353967pt;}
.y6a_c01242{bottom:749.856233pt;}
.y69_c01242{bottom:750.374000pt;}
.y68_c01242{bottom:751.846600pt;}
.y67_c01242{bottom:752.353033pt;}
.y66_c01242{bottom:753.034433pt;}
.y65_c01242{bottom:775.209167pt;}
.y64_c01242{bottom:777.570233pt;}
.y63_c01242{bottom:778.235500pt;}
.y62_c01242{bottom:779.878100pt;}
.y61_c01242{bottom:780.811967pt;}
.y60_c01242{bottom:781.697600pt;}
.y5f_c01242{bottom:783.199700pt;}
.y5e_c01242{bottom:784.076100pt;}
.y5d_c01242{bottom:784.491467pt;}
.y5c_c01242{bottom:786.198833pt;}
.y5b_c01242{bottom:786.645400pt;}
.y5a_c01242{bottom:788.325167pt;}
.y59_c01242{bottom:806.422200pt;}
.y58_c01242{bottom:807.486200pt;}
.y57_c01242{bottom:808.010033pt;}
.y56_c01242{bottom:809.072867pt;}
.y55_c01242{bottom:809.795433pt;}
.y54_c01242{bottom:811.739900pt;}
.y53_c01242{bottom:812.616867pt;}
.y52_c01242{bottom:813.675467pt;}
.y51_c01242{bottom:814.228667pt;}
.y50_c01242{bottom:815.606433pt;}
.y4f_c01242{bottom:816.142400pt;}
.y4e_c01242{bottom:816.829567pt;}
.y4d_c01242{bottom:817.373000pt;}
.y4c_c01242{bottom:837.657567pt;}
.y4b_c01242{bottom:839.711400pt;}
.y4a_c01242{bottom:840.163633pt;}
.y49_c01242{bottom:842.886967pt;}
.y48_c01242{bottom:845.581467pt;}
.y47_c01242{bottom:846.727767pt;}
.y46_c01242{bottom:849.196600pt;}
.y45_c01242{bottom:850.504467pt;}
.y44_c01242{bottom:850.982633pt;}
.y43_c01242{bottom:868.865867pt;}
.y42_c01242{bottom:869.667300pt;}
.y41_c01242{bottom:870.854900pt;}
.y40_c01242{bottom:871.622200pt;}
.y3f_c01242{bottom:872.227467pt;}
.y3e_c01242{bottom:873.423433pt;}
.y3d_c01242{bottom:873.999167pt;}
.y3c_c01242{bottom:874.969067pt;}
.y3b_c01242{bottom:875.771467pt;}
.y3a_c01242{bottom:877.734867pt;}
.y39_c01242{bottom:878.301367pt;}
.y38_c01242{bottom:878.890967pt;}
.y37_c01242{bottom:880.031767pt;}
.y36_c01242{bottom:898.449500pt;}
.y35_c01242{bottom:899.263600pt;}
.y34_c01242{bottom:901.935100pt;}
.y33_c01242{bottom:904.023333pt;}
.y32_c01242{bottom:905.663567pt;}
.y31_c01242{bottom:906.726200pt;}
.y30_c01242{bottom:908.811500pt;}
.y2f_c01242{bottom:910.162133pt;}
.y2e_c01242{bottom:913.044500pt;}
.y2d_c01242{bottom:913.571600pt;}
.y2c_c01242{bottom:914.603833pt;}
.y2b_c01242{bottom:933.720867pt;}
.y2a_c01242{bottom:934.145000pt;}
.y29_c01242{bottom:935.259733pt;}
.y28_c01242{bottom:935.665333pt;}
.y27_c01242{bottom:936.643733pt;}
.y26_c01242{bottom:937.719933pt;}
.y25_c01242{bottom:938.154233pt;}
.y24_c01242{bottom:939.247000pt;}
.y23_c01242{bottom:940.597200pt;}
.y22_c01242{bottom:941.010667pt;}
.y21_c01242{bottom:962.415133pt;}
.y20_c01242{bottom:963.718233pt;}
.y1f_c01242{bottom:964.454933pt;}
.y1e_c01242{bottom:966.154900pt;}
.y1d_c01242{bottom:967.031733pt;}
.y1c_c01242{bottom:967.882833pt;}
.y1b_c01242{bottom:968.770567pt;}
.y1a_c01242{bottom:971.306433pt;}
.y19_c01242{bottom:974.160267pt;}
.y18_c01242{bottom:975.279133pt;}
.y17_c01242{bottom:975.842100pt;}
.y16_c01242{bottom:978.105000pt;}
.y15_c01242{bottom:978.945833pt;}
.y14_c01242{bottom:992.964300pt;}
.y13_c01242{bottom:994.246200pt;}
.y12_c01242{bottom:995.792833pt;}
.y11_c01242{bottom:996.344833pt;}
.y10_c01242{bottom:997.485233pt;}
.yf_c01242{bottom:998.024200pt;}
.ye_c01242{bottom:998.941433pt;}
.yd_c01242{bottom:999.530167pt;}
.yc_c01242{bottom:1001.017467pt;}
.yb_c01242{bottom:1002.855333pt;}
.ya_c01242{bottom:1004.154533pt;}
.y9_c01242{bottom:1025.736300pt;}
.y8_c01242{bottom:1027.704433pt;}
.y7_c01242{bottom:1029.210267pt;}
.y6_c01242{bottom:1029.936333pt;}
.y5_c01242{bottom:1030.888833pt;}
.y4_c01242{bottom:1032.889500pt;}
.y3_c01242{bottom:1034.354100pt;}
.y2_c01242{bottom:1037.048000pt;}
.y1_c01242{bottom:1089.230667pt;}
.h10_c01242{height:32.013453pt;}
.h12_c01242{height:42.666667pt;}
.h4_c01242{height:64.019997pt;}
.he_c01242{height:64.023324pt;}
.h6_c01242{height:69.354997pt;}
.h8_c01242{height:69.356764pt;}
.hd_c01242{height:69.358601pt;}
.h11_c01242{height:69.362482pt;}
.h3_c01242{height:74.689996pt;}
.h9_c01242{height:74.691900pt;}
.hc_c01242{height:74.693878pt;}
.h5_c01242{height:80.024996pt;}
.ha_c01242{height:80.027035pt;}
.hb_c01242{height:80.031354pt;}
.hf_c01242{height:80.033633pt;}
.h2_c01242{height:85.333333pt;}
.h7_c01242{height:101.364995pt;}
.h1_c01242{height:1118.666667pt;}
.h0_c01242{height:1118.880000pt;}
.w1_c01242{width:799.333333pt;}
.w0_c01242{width:799.440000pt;}
.x0_c01242{left:0.000000pt;}
.xb0_c01242{left:87.958851pt;}
.x76_c01242{left:93.666800pt;}
.x6b_c01242{left:97.256133pt;}
.xb4_c01242{left:103.279973pt;}
.xdf_c01242{left:105.742284pt;}
.xd7_c01242{left:108.504000pt;}
.xcf_c01242{left:109.656051pt;}
.xc7_c01242{left:110.672000pt;}
.xa1_c01242{left:111.810211pt;}
.xa7_c01242{left:113.611917pt;}
.x6c_c01242{left:116.903233pt;}
.x55_c01242{left:118.309667pt;}
.x42_c01242{left:119.762033pt;}
.x3a_c01242{left:120.803733pt;}
.x1d_c01242{left:122.679533pt;}
.xc_c01242{left:123.836533pt;}
.xc0_c01242{left:131.217603pt;}
.xa8_c01242{left:132.817907pt;}
.xe0_c01242{left:136.704588pt;}
.xd8_c01242{left:137.688000pt;}
.x8a_c01242{left:139.749367pt;}
.x3b_c01242{left:141.584767pt;}
.x77_c01242{left:145.369367pt;}
.x43_c01242{left:149.984667pt;}
.x16_c01242{left:152.171400pt;}
.xe3_c01242{left:155.995781pt;}
.x56_c01242{left:158.373667pt;}
.x25_c01242{left:161.127333pt;}
.x5e_c01242{left:167.214400pt;}
.xc8_c01242{left:168.394667pt;}
.x9b_c01242{left:169.926264pt;}
.xa2_c01242{left:172.342603pt;}
.xe1_c01242{left:174.147453pt;}
.x2e_c01242{left:179.497667pt;}
.x26_c01242{left:180.663700pt;}
.xd0_c01242{left:186.825471pt;}
.x44_c01242{left:188.144667pt;}
.xd_c01242{left:192.188100pt;}
.x4d_c01242{left:197.320100pt;}
.x3c_c01242{left:198.435600pt;}
.xbb_c01242{left:199.378816pt;}
.xa9_c01242{left:200.857501pt;}
.xe2_c01242{left:205.417835pt;}
.xcc_c01242{left:206.673580pt;}
.x2f_c01242{left:209.005367pt;}
.x93_c01242{left:210.346667pt;}
.x80_c01242{left:213.599200pt;}
.x66_c01242{left:214.502333pt;}
.xd1_c01242{left:216.057296pt;}
.x45_c01242{left:217.908533pt;}
.xa3_c01242{left:220.948208pt;}
.x78_c01242{left:224.066633pt;}
.x4_c01242{left:231.066667pt;}
.x6d_c01242{left:234.105933pt;}
.x9c_c01242{left:235.129533pt;}
.x30_c01242{left:237.322233pt;}
.x5f_c01242{left:244.491000pt;}
.xbc_c01242{left:247.358389pt;}
.x1e_c01242{left:248.674167pt;}
.x17_c01242{left:249.623000pt;}
.x79_c01242{left:254.769500pt;}
.x81_c01242{left:261.846433pt;}
.x6e_c01242{left:262.913400pt;}
.xd2_c01242{left:264.746783pt;}
.xb5_c01242{left:267.951675pt;}
.xaa_c01242{left:269.001096pt;}
.x57_c01242{left:274.784933pt;}
.xd9_c01242{left:285.121333pt;}
.xc1_c01242{left:286.506739pt;}
.x27_c01242{left:287.419700pt;}
.xe_c01242{left:288.917267pt;}
.x82_c01242{left:291.613567pt;}
.x67_c01242{left:293.198333pt;}
.x46_c01242{left:294.472600pt;}
.x3d_c01242{left:305.780967pt;}
.x4e_c01242{left:314.127533pt;}
.xb6_c01242{left:317.171725pt;}
.xab_c01242{left:318.595931pt;}
.x83_c01242{left:321.335367pt;}
.x47_c01242{left:325.192633pt;}
.x1f_c01242{left:326.699600pt;}
.x7a_c01242{left:331.624000pt;}
.x31_c01242{left:335.497167pt;}
.xbd_c01242{left:336.439301pt;}
.x28_c01242{left:337.442533pt;}
.x5_c01242{left:338.822667pt;}
.x94_c01242{left:346.861333pt;}
.x60_c01242{left:352.029667pt;}
.x4f_c01242{left:353.986533pt;}
.x3e_c01242{left:355.635467pt;}
.x20_c01242{left:357.680100pt;}
.x1_c01242{left:358.800000pt;}
.xda_c01242{left:359.969333pt;}
.xe4_c01242{left:362.654421pt;}
.xf_c01242{left:367.194333pt;}
.x8b_c01242{left:369.599233pt;}
.xc2_c01242{left:374.115747pt;}
.x32_c01242{left:375.598167pt;}
.x2_c01242{left:379.920000pt;}
.xe5_c01242{left:380.915215pt;}
.x61_c01242{left:382.833100pt;}
.x48_c01242{left:384.026933pt;}
.xb1_c01242{left:385.392184pt;}
.x18_c01242{left:386.597300pt;}
.x9d_c01242{left:387.793595pt;}
.x8c_c01242{left:389.128933pt;}
.xdb_c01242{left:390.392000pt;}
.x58_c01242{left:393.636700pt;}
.x6_c01242{left:397.406667pt;}
.x84_c01242{left:400.120500pt;}
.xc3_c01242{left:403.176539pt;}
.xb7_c01242{left:405.314771pt;}
.xe6_c01242{left:410.254617pt;}
.xd3_c01242{left:411.715027pt;}
.x29_c01242{left:414.664000pt;}
.xa4_c01242{left:416.574525pt;}
.x3_c01242{left:418.560000pt;}
.x50_c01242{left:422.235633pt;}
.x33_c01242{left:424.106900pt;}
.x95_c01242{left:429.633333pt;}
.x62_c01242{left:430.786300pt;}
.x49_c01242{left:432.767467pt;}
.x21_c01242{left:434.509200pt;}
.xac_c01242{left:435.510429pt;}
.x8d_c01242{left:438.522467pt;}
.x85_c01242{left:439.487733pt;}
.x59_c01242{left:441.174200pt;}
.x10_c01242{left:446.431533pt;}
.x34_c01242{left:452.899833pt;}
.x2a_c01242{left:454.020700pt;}
.xdc_c01242{left:460.150667pt;}
.x63_c01242{left:461.264400pt;}
.x51_c01242{left:462.517333pt;}
.x8e_c01242{left:466.110433pt;}
.x96_c01242{left:467.780000pt;}
.xe7_c01242{left:469.534833pt;}
.x3f_c01242{left:472.808000pt;}
.x11_c01242{left:474.767767pt;}
.xad_c01242{left:476.380832pt;}
.x7_c01242{left:477.433333pt;}
.x6f_c01242{left:478.934100pt;}
.xdd_c01242{left:480.726667pt;}
.x68_c01242{left:481.690333pt;}
.xb8_c01242{left:483.634059pt;}
.xbe_c01242{left:491.084741pt;}
.x97_c01242{left:496.330667pt;}
.x86_c01242{left:498.081867pt;}
.xd4_c01242{left:499.790395pt;}
.xc4_c01242{left:502.759675pt;}
.x19_c01242{left:504.649500pt;}
.x70_c01242{left:508.196133pt;}
.x5a_c01242{left:510.373367pt;}
.x35_c01242{left:512.692633pt;}
.x8_c01242{left:515.533333pt;}
.xe8_c01242{left:519.211261pt;}
.x8f_c01242{left:525.846100pt;}
.x5b_c01242{left:530.301333pt;}
.x22_c01242{left:533.309667pt;}
.x12_c01242{left:534.792767pt;}
.x98_c01242{left:536.388000pt;}
.x71_c01242{left:538.559200pt;}
.x4a_c01242{left:540.805033pt;}
.x36_c01242{left:542.987100pt;}
.x9_c01242{left:544.576000pt;}
.xde_c01242{left:549.925333pt;}
.x72_c01242{left:557.881033pt;}
.x13_c01242{left:563.863800pt;}
.x9e_c01242{left:565.517707pt;}
.x90_c01242{left:566.869400pt;}
.xc9_c01242{left:571.770667pt;}
.x69_c01242{left:577.959667pt;}
.x52_c01242{left:579.664800pt;}
.x37_c01242{left:581.363900pt;}
.xb9_c01242{left:582.507493pt;}
.xae_c01242{left:583.990968pt;}
.x7b_c01242{left:588.064833pt;}
.x2b_c01242{left:592.112467pt;}
.x9f_c01242{left:595.210813pt;}
.x87_c01242{left:596.720667pt;}
.x64_c01242{left:598.137167pt;}
.xc5_c01242{left:600.997685pt;}
.xbf_c01242{left:602.259197pt;}
.xa_c01242{left:604.809333pt;}
.x6a_c01242{left:608.346333pt;}
.x53_c01242{left:609.904400pt;}
.x40_c01242{left:610.877567pt;}
.x23_c01242{left:612.960900pt;}
.x91_c01242{left:615.809633pt;}
.x1a_c01242{left:622.820333pt;}
.xcd_c01242{left:624.529335pt;}
.x88_c01242{left:626.239767pt;}
.xc6_c01242{left:630.250443pt;}
.xd5_c01242{left:638.604187pt;}
.x38_c01242{left:640.715300pt;}
.x24_c01242{left:643.214533pt;}
.x14_c01242{left:645.261333pt;}
.x73_c01242{left:647.033433pt;}
.x1b_c01242{left:648.232467pt;}
.xa5_c01242{left:651.244787pt;}
.x92_c01242{left:654.673033pt;}
.xca_c01242{left:659.362667pt;}
.xaf_c01242{left:662.585453pt;}
.x74_c01242{left:666.232633pt;}
.xd6_c01242{left:667.572048pt;}
.x4b_c01242{left:669.036767pt;}
.x65_c01242{left:670.089633pt;}
.x99_c01242{left:673.860000pt;}
.x5c_c01242{left:678.165567pt;}
.x39_c01242{left:680.777633pt;}
.xb_c01242{left:683.534667pt;}
.x7c_c01242{left:685.292333pt;}
.xcb_c01242{left:688.912000pt;}
.x2c_c01242{left:691.074200pt;}
.x1c_c01242{left:693.151967pt;}
.xce_c01242{left:697.267583pt;}
.x41_c01242{left:700.182033pt;}
.x75_c01242{left:705.544133pt;}
.x5d_c01242{left:707.446100pt;}
.xa6_c01242{left:708.629491pt;}
.xa0_c01242{left:711.510115pt;}
.x15_c01242{left:712.707433pt;}
.x89_c01242{left:715.515833pt;}
.x54_c01242{left:717.208433pt;}
.x2d_c01242{left:721.236700pt;}
.x7d_c01242{left:725.302333pt;}
.x4c_c01242{left:728.140433pt;}
.xba_c01242{left:729.187680pt;}
.xe9_c01242{left:746.160000pt;}
.xb3_c01242{left:750.938851pt;}
.xb2_c01242{left:760.112184pt;}
.x9a_c01242{left:763.917333pt;}
.xea_c01242{left:766.800000pt;}
.x7e_c01242{left:772.450033pt;}
.x7f_c01242{left:793.421733pt;}
}





/* 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_c01243 {
    display:none;
  }
  .loading-indicator_c01243.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01243 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_c01243 { 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_c01243" -> "#page-container .classname_c01243")
 */
.pf_c01243 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01243 { /* 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_c01243.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01243 { /* 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_c01243 { /* 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_c01243 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01243 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01243 {overflow:visible;}
  }
}
.c_c01243 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01243 { /* 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_c01243:after { /* webkit #35443 */
  content: '';
}
.t_c01243:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01243 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 */
}
.__c01243 { /* 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_c01243 { /* info for Javascript */
  display:none;
}
.l_c01243 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01243 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01243 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01243: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_c01243 {
    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_c01243.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01243.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_c01243 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01243{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01243;src:url('chunks/assets/font_056baf2ea819f438984cb5ca.woff2')format("woff");}.ff1_c01243{font-family:ff1_c01243;line-height:1.000000;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;}
.m1_c01243{transform:matrix(0.008458,0.162485,-0.249662,0.012995,0,0);-ms-transform:matrix(0.008458,0.162485,-0.249662,0.012995,0,0);-webkit-transform:matrix(0.008458,0.162485,-0.249662,0.012995,0,0);}
.m2_c01243{transform:matrix(0.009438,0.181310,-0.249662,0.012995,0,0);-ms-transform:matrix(0.009438,0.181310,-0.249662,0.012995,0,0);-webkit-transform:matrix(0.009438,0.181310,-0.249662,0.012995,0,0);}
.m0_c01243{transform:matrix(0.162110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162110,0.000000,0.000000,0.250000,0,0);}
.v0_c01243{vertical-align:0.000000px;}
.ls0_c01243{letter-spacing:0.000000px;}
.sc__c01243{text-shadow:none;}
.sc0_c01243{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__c01243{-webkit-text-stroke:0px transparent;}
.sc0_c01243{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01243{word-spacing:0.000000px;}
.fc0_c01243{color:transparent;}
.fs0_c01243{font-size:30.000000px;}
.fs1_c01243{font-size:108.038063px;}
.y0_c01243{bottom:0.000000px;}
.y3_c01243{bottom:542.925860px;}
.y2_c01243{bottom:572.256000px;}
.y1_c01243{bottom:1144.531500px;}
.h2_c01243{height:30.000000px;}
.h3_c01243{height:108.038063px;}
.h1_c01243{height:1258.500000px;}
.h0_c01243{height:1258.740000px;}
.w1_c01243{width:899.250000px;}
.w0_c01243{width:899.370000px;}
.x0_c01243{left:0.000000px;}
.x2_c01243{left:18.624000px;}
.x3_c01243{left:20.150694px;}
.x1_c01243{left:543.780000px;}
@media print{
.v0_c01243{vertical-align:0.000000pt;}
.ls0_c01243{letter-spacing:0.000000pt;}
.ws0_c01243{word-spacing:0.000000pt;}
.fs0_c01243{font-size:26.666667pt;}
.fs1_c01243{font-size:96.033834pt;}
.y0_c01243{bottom:0.000000pt;}
.y3_c01243{bottom:482.600764pt;}
.y2_c01243{bottom:508.672000pt;}
.y1_c01243{bottom:1017.361333pt;}
.h2_c01243{height:26.666667pt;}
.h3_c01243{height:96.033834pt;}
.h1_c01243{height:1118.666667pt;}
.h0_c01243{height:1118.880000pt;}
.w1_c01243{width:799.333333pt;}
.w0_c01243{width:799.440000pt;}
.x0_c01243{left:0.000000pt;}
.x2_c01243{left:16.554667pt;}
.x3_c01243{left:17.911728pt;}
.x1_c01243{left:483.360000pt;}
}





/* 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_c01244 {
    display:none;
  }
  .loading-indicator_c01244.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01244 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_c01244 { 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_c01244" -> "#page-container .classname_c01244")
 */
.pf_c01244 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01244 { /* 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_c01244.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01244 { /* 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_c01244 { /* 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_c01244 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01244 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01244 {overflow:visible;}
  }
}
.c_c01244 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01244 { /* 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_c01244:after { /* webkit #35443 */
  content: '';
}
.t_c01244:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01244 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 */
}
.__c01244 { /* 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_c01244 { /* info for Javascript */
  display:none;
}
.l_c01244 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01244 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01244 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01244: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_c01244 {
    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_c01244.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01244.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_c01244 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01244{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01244;src:url('chunks/assets/font_c605e72f209fc835e906f064.woff2')format("woff");}.ff1_c01244{font-family:ff1_c01244;line-height:1.000000;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;}
.m2f_c01244{transform:matrix(0.018749,0.000150,-0.002000,0.249992,0,0);-ms-transform:matrix(0.018749,0.000150,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.018749,0.000150,-0.002000,0.249992,0,0);}
.m40_c01244{transform:matrix(0.020579,0.000165,-0.002000,0.249992,0,0);-ms-transform:matrix(0.020579,0.000165,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.020579,0.000165,-0.002000,0.249992,0,0);}
.m94_c01244{transform:matrix(0.081125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.081125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.081125,0.000000,0.000000,0.250000,0,0);}
.m93_c01244{transform:matrix(0.092770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092770,0.000000,0.000000,0.250000,0,0);}
.m9_c01244{transform:matrix(0.134161,0.001073,-0.002000,0.249992,0,0);-ms-transform:matrix(0.134161,0.001073,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.134161,0.001073,-0.002000,0.249992,0,0);}
.m11_c01244{transform:matrix(0.143115,0.001145,-0.002000,0.249992,0,0);-ms-transform:matrix(0.143115,0.001145,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.143115,0.001145,-0.002000,0.249992,0,0);}
.m8b_c01244{transform:matrix(0.144060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144060,0.000000,0.000000,0.250000,0,0);}
.md_c01244{transform:matrix(0.144845,0.001159,-0.002000,0.249992,0,0);-ms-transform:matrix(0.144845,0.001159,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.144845,0.001159,-0.002000,0.249992,0,0);}
.mf_c01244{transform:matrix(0.151455,0.001212,-0.002000,0.249992,0,0);-ms-transform:matrix(0.151455,0.001212,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.151455,0.001212,-0.002000,0.249992,0,0);}
.m8_c01244{transform:matrix(0.156465,0.001252,-0.002000,0.249992,0,0);-ms-transform:matrix(0.156465,0.001252,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.156465,0.001252,-0.002000,0.249992,0,0);}
.m10_c01244{transform:matrix(0.161630,0.001293,-0.002000,0.249992,0,0);-ms-transform:matrix(0.161630,0.001293,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.161630,0.001293,-0.002000,0.249992,0,0);}
.mc_c01244{transform:matrix(0.162800,0.001302,-0.002000,0.249992,0,0);-ms-transform:matrix(0.162800,0.001302,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.162800,0.001302,-0.002000,0.249992,0,0);}
.m53_c01244{transform:matrix(0.165170,0.001321,-0.002000,0.249992,0,0);-ms-transform:matrix(0.165170,0.001321,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.165170,0.001321,-0.002000,0.249992,0,0);}
.m51_c01244{transform:matrix(0.167700,0.001342,-0.002000,0.249992,0,0);-ms-transform:matrix(0.167700,0.001342,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.167700,0.001342,-0.002000,0.249992,0,0);}
.me_c01244{transform:matrix(0.169150,0.001353,-0.002000,0.249992,0,0);-ms-transform:matrix(0.169150,0.001353,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.169150,0.001353,-0.002000,0.249992,0,0);}
.ma_c01244{transform:matrix(0.170050,0.001360,-0.002000,0.249992,0,0);-ms-transform:matrix(0.170050,0.001360,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.170050,0.001360,-0.002000,0.249992,0,0);}
.m32_c01244{transform:matrix(0.176304,0.001410,-0.002000,0.249992,0,0);-ms-transform:matrix(0.176304,0.001410,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.176304,0.001410,-0.002000,0.249992,0,0);}
.m4e_c01244{transform:matrix(0.183229,0.001466,-0.002000,0.249992,0,0);-ms-transform:matrix(0.183229,0.001466,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.183229,0.001466,-0.002000,0.249992,0,0);}
.m30_c01244{transform:matrix(0.185199,0.001482,-0.002000,0.249992,0,0);-ms-transform:matrix(0.185199,0.001482,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.185199,0.001482,-0.002000,0.249992,0,0);}
.m50_c01244{transform:matrix(0.187989,0.001504,-0.002000,0.249992,0,0);-ms-transform:matrix(0.187989,0.001504,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.187989,0.001504,-0.002000,0.249992,0,0);}
.m8f_c01244{transform:matrix(0.188435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188435,0.000000,0.000000,0.250000,0,0);}
.m64_c01244{transform:matrix(0.188671,0.001887,-0.002500,0.249988,0,0);-ms-transform:matrix(0.188671,0.001887,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.188671,0.001887,-0.002500,0.249988,0,0);}
.m4f_c01244{transform:matrix(0.190399,0.001523,-0.002000,0.249992,0,0);-ms-transform:matrix(0.190399,0.001523,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.190399,0.001523,-0.002000,0.249992,0,0);}
.m8e_c01244{transform:matrix(0.190625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190625,0.000000,0.000000,0.250000,0,0);}
.m4_c01244{transform:matrix(0.191405,-0.001914,0.002500,0.249988,0,0);-ms-transform:matrix(0.191405,-0.001914,0.002500,0.249988,0,0);-webkit-transform:matrix(0.191405,-0.001914,0.002500,0.249988,0,0);}
.m38_c01244{transform:matrix(0.191419,0.001531,-0.002000,0.249992,0,0);-ms-transform:matrix(0.191419,0.001531,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.191419,0.001531,-0.002000,0.249992,0,0);}
.m36_c01244{transform:matrix(0.191474,0.001532,-0.002000,0.249992,0,0);-ms-transform:matrix(0.191474,0.001532,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.191474,0.001532,-0.002000,0.249992,0,0);}
.m4b_c01244{transform:matrix(0.192474,0.001540,-0.002000,0.249992,0,0);-ms-transform:matrix(0.192474,0.001540,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.192474,0.001540,-0.002000,0.249992,0,0);}
.m52_c01244{transform:matrix(0.193684,0.001549,-0.002000,0.249992,0,0);-ms-transform:matrix(0.193684,0.001549,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.193684,0.001549,-0.002000,0.249992,0,0);}
.m68_c01244{transform:matrix(0.194190,0.001942,-0.002500,0.249988,0,0);-ms-transform:matrix(0.194190,0.001942,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.194190,0.001942,-0.002500,0.249988,0,0);}
.m6c_c01244{transform:matrix(0.194530,0.001945,-0.002500,0.249988,0,0);-ms-transform:matrix(0.194530,0.001945,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.194530,0.001945,-0.002500,0.249988,0,0);}
.m6a_c01244{transform:matrix(0.195970,0.001960,-0.002500,0.249988,0,0);-ms-transform:matrix(0.195970,0.001960,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.195970,0.001960,-0.002500,0.249988,0,0);}
.m4a_c01244{transform:matrix(0.196264,0.001570,-0.002000,0.249992,0,0);-ms-transform:matrix(0.196264,0.001570,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.196264,0.001570,-0.002000,0.249992,0,0);}
.mb_c01244{transform:matrix(0.198409,0.001587,-0.002000,0.249992,0,0);-ms-transform:matrix(0.198409,0.001587,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.198409,0.001587,-0.002000,0.249992,0,0);}
.m90_c01244{transform:matrix(0.198875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198875,0.000000,0.000000,0.250000,0,0);}
.m46_c01244{transform:matrix(0.199199,0.001594,-0.002000,0.249992,0,0);-ms-transform:matrix(0.199199,0.001594,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.199199,0.001594,-0.002000,0.249992,0,0);}
.m33_c01244{transform:matrix(0.199514,0.001596,-0.002000,0.249992,0,0);-ms-transform:matrix(0.199514,0.001596,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.199514,0.001596,-0.002000,0.249992,0,0);}
.m6e_c01244{transform:matrix(0.200870,0.002009,-0.002500,0.249988,0,0);-ms-transform:matrix(0.200870,0.002009,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.200870,0.002009,-0.002500,0.249988,0,0);}
.m37_c01244{transform:matrix(0.200994,0.001608,-0.002000,0.249992,0,0);-ms-transform:matrix(0.200994,0.001608,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.200994,0.001608,-0.002000,0.249992,0,0);}
.m70_c01244{transform:matrix(0.201235,0.002012,-0.002500,0.249988,0,0);-ms-transform:matrix(0.201235,0.002012,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.201235,0.002012,-0.002500,0.249988,0,0);}
.m7_c01244{transform:matrix(0.201310,-0.002013,0.002500,0.249988,0,0);-ms-transform:matrix(0.201310,-0.002013,0.002500,0.249988,0,0);-webkit-transform:matrix(0.201310,-0.002013,0.002500,0.249988,0,0);}
.m75_c01244{transform:matrix(0.202065,0.002021,-0.002500,0.249988,0,0);-ms-transform:matrix(0.202065,0.002021,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.202065,0.002021,-0.002500,0.249988,0,0);}
.m65_c01244{transform:matrix(0.202860,0.002029,-0.002500,0.249988,0,0);-ms-transform:matrix(0.202860,0.002029,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.202860,0.002029,-0.002500,0.249988,0,0);}
.m34_c01244{transform:matrix(0.203368,0.001627,-0.002000,0.249992,0,0);-ms-transform:matrix(0.203368,0.001627,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.203368,0.001627,-0.002000,0.249992,0,0);}
.m5_c01244{transform:matrix(0.203570,-0.002036,0.002500,0.249988,0,0);-ms-transform:matrix(0.203570,-0.002036,0.002500,0.249988,0,0);-webkit-transform:matrix(0.203570,-0.002036,0.002500,0.249988,0,0);}
.m79_c01244{transform:matrix(0.204140,0.002041,-0.002500,0.249988,0,0);-ms-transform:matrix(0.204140,0.002041,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.204140,0.002041,-0.002500,0.249988,0,0);}
.m77_c01244{transform:matrix(0.204145,0.002041,-0.002500,0.249988,0,0);-ms-transform:matrix(0.204145,0.002041,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.204145,0.002041,-0.002500,0.249988,0,0);}
.m56_c01244{transform:matrix(0.205838,0.001647,-0.002000,0.249992,0,0);-ms-transform:matrix(0.205838,0.001647,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.205838,0.001647,-0.002000,0.249992,0,0);}
.m35_c01244{transform:matrix(0.206648,0.001653,-0.002000,0.249992,0,0);-ms-transform:matrix(0.206648,0.001653,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.206648,0.001653,-0.002000,0.249992,0,0);}
.m5b_c01244{transform:matrix(0.206918,0.001655,-0.002000,0.249992,0,0);-ms-transform:matrix(0.206918,0.001655,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.206918,0.001655,-0.002000,0.249992,0,0);}
.m48_c01244{transform:matrix(0.207468,0.001660,-0.002000,0.249992,0,0);-ms-transform:matrix(0.207468,0.001660,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.207468,0.001660,-0.002000,0.249992,0,0);}
.m67_c01244{transform:matrix(0.208380,0.002084,-0.002500,0.249988,0,0);-ms-transform:matrix(0.208380,0.002084,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.208380,0.002084,-0.002500,0.249988,0,0);}
.m6d_c01244{transform:matrix(0.209210,0.002092,-0.002500,0.249988,0,0);-ms-transform:matrix(0.209210,0.002092,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.209210,0.002092,-0.002500,0.249988,0,0);}
.m59_c01244{transform:matrix(0.210788,0.001686,-0.002000,0.249992,0,0);-ms-transform:matrix(0.210788,0.001686,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.210788,0.001686,-0.002000,0.249992,0,0);}
.m31_c01244{transform:matrix(0.210968,0.001688,-0.002000,0.249992,0,0);-ms-transform:matrix(0.210968,0.001688,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.210968,0.001688,-0.002000,0.249992,0,0);}
.m54_c01244{transform:matrix(0.212073,0.001697,-0.002000,0.249992,0,0);-ms-transform:matrix(0.212073,0.001697,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.212073,0.001697,-0.002000,0.249992,0,0);}
.m23_c01244{transform:matrix(0.213628,0.001709,-0.002000,0.249992,0,0);-ms-transform:matrix(0.213628,0.001709,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.213628,0.001709,-0.002000,0.249992,0,0);}
.m44_c01244{transform:matrix(0.213978,0.001712,-0.002000,0.249992,0,0);-ms-transform:matrix(0.213978,0.001712,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.213978,0.001712,-0.002000,0.249992,0,0);}
.m80_c01244{transform:matrix(0.214394,0.002144,-0.002500,0.249988,0,0);-ms-transform:matrix(0.214394,0.002144,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.214394,0.002144,-0.002500,0.249988,0,0);}
.m7a_c01244{transform:matrix(0.214409,0.002144,-0.002500,0.249988,0,0);-ms-transform:matrix(0.214409,0.002144,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.214409,0.002144,-0.002500,0.249988,0,0);}
.m57_c01244{transform:matrix(0.214548,0.001716,-0.002000,0.249992,0,0);-ms-transform:matrix(0.214548,0.001716,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.214548,0.001716,-0.002000,0.249992,0,0);}
.m4c_c01244{transform:matrix(0.214698,0.001718,-0.002000,0.249992,0,0);-ms-transform:matrix(0.214698,0.001718,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.214698,0.001718,-0.002000,0.249992,0,0);}
.m1b_c01244{transform:matrix(0.215053,0.001720,-0.002000,0.249992,0,0);-ms-transform:matrix(0.215053,0.001720,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.215053,0.001720,-0.002000,0.249992,0,0);}
.m3b_c01244{transform:matrix(0.215138,0.001721,-0.002000,0.249992,0,0);-ms-transform:matrix(0.215138,0.001721,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.215138,0.001721,-0.002000,0.249992,0,0);}
.m3d_c01244{transform:matrix(0.218003,0.001744,-0.002000,0.249992,0,0);-ms-transform:matrix(0.218003,0.001744,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.218003,0.001744,-0.002000,0.249992,0,0);}
.m89_c01244{transform:matrix(0.219050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219050,0.000000,0.000000,0.250000,0,0);}
.m55_c01244{transform:matrix(0.219393,0.001755,-0.002000,0.249992,0,0);-ms-transform:matrix(0.219393,0.001755,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.219393,0.001755,-0.002000,0.249992,0,0);}
.m5a_c01244{transform:matrix(0.219583,0.001757,-0.002000,0.249992,0,0);-ms-transform:matrix(0.219583,0.001757,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.219583,0.001757,-0.002000,0.249992,0,0);}
.m25_c01244{transform:matrix(0.219793,0.001758,-0.002000,0.249992,0,0);-ms-transform:matrix(0.219793,0.001758,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.219793,0.001758,-0.002000,0.249992,0,0);}
.m1e_c01244{transform:matrix(0.219853,0.001759,-0.002000,0.249992,0,0);-ms-transform:matrix(0.219853,0.001759,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.219853,0.001759,-0.002000,0.249992,0,0);}
.m3c_c01244{transform:matrix(0.219968,0.001760,-0.002000,0.249992,0,0);-ms-transform:matrix(0.219968,0.001760,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.219968,0.001760,-0.002000,0.249992,0,0);}
.m6b_c01244{transform:matrix(0.220034,0.002200,-0.002500,0.249988,0,0);-ms-transform:matrix(0.220034,0.002200,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.220034,0.002200,-0.002500,0.249988,0,0);}
.m7c_c01244{transform:matrix(0.221159,0.002212,-0.002500,0.249988,0,0);-ms-transform:matrix(0.221159,0.002212,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.221159,0.002212,-0.002500,0.249988,0,0);}
.m3_c01244{transform:matrix(0.221469,-0.002215,0.002500,0.249988,0,0);-ms-transform:matrix(0.221469,-0.002215,0.002500,0.249988,0,0);-webkit-transform:matrix(0.221469,-0.002215,0.002500,0.249988,0,0);}
.m6_c01244{transform:matrix(0.223904,-0.002239,0.002500,0.249988,0,0);-ms-transform:matrix(0.223904,-0.002239,0.002500,0.249988,0,0);-webkit-transform:matrix(0.223904,-0.002239,0.002500,0.249988,0,0);}
.m6f_c01244{transform:matrix(0.224074,0.002241,-0.002500,0.249988,0,0);-ms-transform:matrix(0.224074,0.002241,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.224074,0.002241,-0.002500,0.249988,0,0);}
.m69_c01244{transform:matrix(0.225099,0.002251,-0.002500,0.249988,0,0);-ms-transform:matrix(0.225099,0.002251,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.225099,0.002251,-0.002500,0.249988,0,0);}
.m7b_c01244{transform:matrix(0.225549,0.002255,-0.002500,0.249988,0,0);-ms-transform:matrix(0.225549,0.002255,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.225549,0.002255,-0.002500,0.249988,0,0);}
.m3f_c01244{transform:matrix(0.226113,0.001809,-0.002000,0.249992,0,0);-ms-transform:matrix(0.226113,0.001809,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.226113,0.001809,-0.002000,0.249992,0,0);}
.m74_c01244{transform:matrix(0.226334,0.002263,-0.002500,0.249988,0,0);-ms-transform:matrix(0.226334,0.002263,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.226334,0.002263,-0.002500,0.249988,0,0);}
.m1d_c01244{transform:matrix(0.226593,0.001813,-0.002000,0.249992,0,0);-ms-transform:matrix(0.226593,0.001813,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.226593,0.001813,-0.002000,0.249992,0,0);}
.m78_c01244{transform:matrix(0.226614,0.002266,-0.002500,0.249988,0,0);-ms-transform:matrix(0.226614,0.002266,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.226614,0.002266,-0.002500,0.249988,0,0);}
.m66_c01244{transform:matrix(0.227719,0.002277,-0.002500,0.249988,0,0);-ms-transform:matrix(0.227719,0.002277,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.227719,0.002277,-0.002500,0.249988,0,0);}
.m24_c01244{transform:matrix(0.229188,0.001834,-0.002000,0.249992,0,0);-ms-transform:matrix(0.229188,0.001834,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.229188,0.001834,-0.002000,0.249992,0,0);}
.m45_c01244{transform:matrix(0.230093,0.001841,-0.002000,0.249992,0,0);-ms-transform:matrix(0.230093,0.001841,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.230093,0.001841,-0.002000,0.249992,0,0);}
.m4d_c01244{transform:matrix(0.230153,0.001841,-0.002000,0.249992,0,0);-ms-transform:matrix(0.230153,0.001841,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.230153,0.001841,-0.002000,0.249992,0,0);}
.m71_c01244{transform:matrix(0.230233,0.002302,-0.002500,0.249988,0,0);-ms-transform:matrix(0.230233,0.002302,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.230233,0.002302,-0.002500,0.249988,0,0);}
.m5f_c01244{transform:matrix(0.230333,0.001843,-0.002000,0.249992,0,0);-ms-transform:matrix(0.230333,0.001843,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.230333,0.001843,-0.002000,0.249992,0,0);}
.m3e_c01244{transform:matrix(0.230748,0.001846,-0.002000,0.249992,0,0);-ms-transform:matrix(0.230748,0.001846,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.230748,0.001846,-0.002000,0.249992,0,0);}
.m61_c01244{transform:matrix(0.232278,0.001858,-0.002000,0.249992,0,0);-ms-transform:matrix(0.232278,0.001858,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.232278,0.001858,-0.002000,0.249992,0,0);}
.m49_c01244{transform:matrix(0.233163,0.001865,-0.002000,0.249992,0,0);-ms-transform:matrix(0.233163,0.001865,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.233163,0.001865,-0.002000,0.249992,0,0);}
.m5e_c01244{transform:matrix(0.233443,0.001868,-0.002000,0.249992,0,0);-ms-transform:matrix(0.233443,0.001868,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.233443,0.001868,-0.002000,0.249992,0,0);}
.m7e_c01244{transform:matrix(0.234083,0.002341,-0.002500,0.249988,0,0);-ms-transform:matrix(0.234083,0.002341,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.234083,0.002341,-0.002500,0.249988,0,0);}
.m8c_c01244{transform:matrix(0.234345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234345,0.000000,0.000000,0.250000,0,0);}
.m5c_c01244{transform:matrix(0.234502,0.001876,-0.002000,0.249992,0,0);-ms-transform:matrix(0.234502,0.001876,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.234502,0.001876,-0.002000,0.249992,0,0);}
.m41_c01244{transform:matrix(0.235382,0.001883,-0.002000,0.249992,0,0);-ms-transform:matrix(0.235382,0.001883,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.235382,0.001883,-0.002000,0.249992,0,0);}
.m1f_c01244{transform:matrix(0.235567,0.001885,-0.002000,0.249992,0,0);-ms-transform:matrix(0.235567,0.001885,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.235567,0.001885,-0.002000,0.249992,0,0);}
.m86_c01244{transform:matrix(0.236660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236660,0.000000,0.000000,0.250000,0,0);}
.m76_c01244{transform:matrix(0.236868,0.002369,-0.002500,0.249988,0,0);-ms-transform:matrix(0.236868,0.002369,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.236868,0.002369,-0.002500,0.249988,0,0);}
.m18_c01244{transform:matrix(0.237177,0.001897,-0.002000,0.249992,0,0);-ms-transform:matrix(0.237177,0.001897,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.237177,0.001897,-0.002000,0.249992,0,0);}
.m7f_c01244{transform:matrix(0.237608,0.002376,-0.002500,0.249988,0,0);-ms-transform:matrix(0.237608,0.002376,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.237608,0.002376,-0.002500,0.249988,0,0);}
.m58_c01244{transform:matrix(0.238382,0.001907,-0.002000,0.249992,0,0);-ms-transform:matrix(0.238382,0.001907,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.238382,0.001907,-0.002000,0.249992,0,0);}
.m47_c01244{transform:matrix(0.238427,0.001907,-0.002000,0.249992,0,0);-ms-transform:matrix(0.238427,0.001907,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.238427,0.001907,-0.002000,0.249992,0,0);}
.m1a_c01244{transform:matrix(0.238432,0.001907,-0.002000,0.249992,0,0);-ms-transform:matrix(0.238432,0.001907,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.238432,0.001907,-0.002000,0.249992,0,0);}
.m8a_c01244{transform:matrix(0.238630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238630,0.000000,0.000000,0.250000,0,0);}
.m5d_c01244{transform:matrix(0.238812,0.001910,-0.002000,0.249992,0,0);-ms-transform:matrix(0.238812,0.001910,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.238812,0.001910,-0.002000,0.249992,0,0);}
.m43_c01244{transform:matrix(0.238912,0.001911,-0.002000,0.249992,0,0);-ms-transform:matrix(0.238912,0.001911,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.238912,0.001911,-0.002000,0.249992,0,0);}
.m73_c01244{transform:matrix(0.239813,0.002398,-0.002500,0.249988,0,0);-ms-transform:matrix(0.239813,0.002398,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.239813,0.002398,-0.002500,0.249988,0,0);}
.m3a_c01244{transform:matrix(0.239932,0.001919,-0.002000,0.249992,0,0);-ms-transform:matrix(0.239932,0.001919,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.239932,0.001919,-0.002000,0.249992,0,0);}
.m62_c01244{transform:matrix(0.241312,0.001930,-0.002000,0.249992,0,0);-ms-transform:matrix(0.241312,0.001930,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.241312,0.001930,-0.002000,0.249992,0,0);}
.m42_c01244{transform:matrix(0.241662,0.001933,-0.002000,0.249992,0,0);-ms-transform:matrix(0.241662,0.001933,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.241662,0.001933,-0.002000,0.249992,0,0);}
.m72_c01244{transform:matrix(0.242678,0.002427,-0.002500,0.249988,0,0);-ms-transform:matrix(0.242678,0.002427,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.242678,0.002427,-0.002500,0.249988,0,0);}
.m2a_c01244{transform:matrix(0.243932,0.001951,-0.002000,0.249992,0,0);-ms-transform:matrix(0.243932,0.001951,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.243932,0.001951,-0.002000,0.249992,0,0);}
.m87_c01244{transform:matrix(0.248015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248015,0.000000,0.000000,0.250000,0,0);}
.m15_c01244{transform:matrix(0.249102,0.001993,-0.002000,0.249992,0,0);-ms-transform:matrix(0.249102,0.001993,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.249102,0.001993,-0.002000,0.249992,0,0);}
.m21_c01244{transform:matrix(0.251202,0.002010,-0.002000,0.249992,0,0);-ms-transform:matrix(0.251202,0.002010,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.251202,0.002010,-0.002000,0.249992,0,0);}
.m39_c01244{transform:matrix(0.252107,0.002017,-0.002000,0.249992,0,0);-ms-transform:matrix(0.252107,0.002017,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.252107,0.002017,-0.002000,0.249992,0,0);}
.m28_c01244{transform:matrix(0.252837,0.002023,-0.002000,0.249992,0,0);-ms-transform:matrix(0.252837,0.002023,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.252837,0.002023,-0.002000,0.249992,0,0);}
.m22_c01244{transform:matrix(0.255572,0.002045,-0.002000,0.249992,0,0);-ms-transform:matrix(0.255572,0.002045,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.255572,0.002045,-0.002000,0.249992,0,0);}
.m20_c01244{transform:matrix(0.256942,0.002056,-0.002000,0.249992,0,0);-ms-transform:matrix(0.256942,0.002056,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.256942,0.002056,-0.002000,0.249992,0,0);}
.m1c_c01244{transform:matrix(0.257962,0.002064,-0.002000,0.249992,0,0);-ms-transform:matrix(0.257962,0.002064,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.257962,0.002064,-0.002000,0.249992,0,0);}
.m88_c01244{transform:matrix(0.259455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259455,0.000000,0.000000,0.250000,0,0);}
.m17_c01244{transform:matrix(0.262147,0.002097,-0.002000,0.249992,0,0);-ms-transform:matrix(0.262147,0.002097,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.262147,0.002097,-0.002000,0.249992,0,0);}
.m2c_c01244{transform:matrix(0.263727,0.002110,-0.002000,0.249992,0,0);-ms-transform:matrix(0.263727,0.002110,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.263727,0.002110,-0.002000,0.249992,0,0);}
.m14_c01244{transform:matrix(0.265891,0.002127,-0.002000,0.249992,0,0);-ms-transform:matrix(0.265891,0.002127,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.265891,0.002127,-0.002000,0.249992,0,0);}
.m27_c01244{transform:matrix(0.268561,0.002148,-0.002000,0.249992,0,0);-ms-transform:matrix(0.268561,0.002148,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.268561,0.002148,-0.002000,0.249992,0,0);}
.m12_c01244{transform:matrix(0.269306,0.002154,-0.002000,0.249992,0,0);-ms-transform:matrix(0.269306,0.002154,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.269306,0.002154,-0.002000,0.249992,0,0);}
.m19_c01244{transform:matrix(0.269821,0.002159,-0.002000,0.249992,0,0);-ms-transform:matrix(0.269821,0.002159,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.269821,0.002159,-0.002000,0.249992,0,0);}
.m13_c01244{transform:matrix(0.273126,0.002185,-0.002000,0.249992,0,0);-ms-transform:matrix(0.273126,0.002185,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.273126,0.002185,-0.002000,0.249992,0,0);}
.m60_c01244{transform:matrix(0.274311,0.002194,-0.002000,0.249992,0,0);-ms-transform:matrix(0.274311,0.002194,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.274311,0.002194,-0.002000,0.249992,0,0);}
.m26_c01244{transform:matrix(0.275206,0.002202,-0.002000,0.249992,0,0);-ms-transform:matrix(0.275206,0.002202,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.275206,0.002202,-0.002000,0.249992,0,0);}
.m16_c01244{transform:matrix(0.277036,0.002216,-0.002000,0.249992,0,0);-ms-transform:matrix(0.277036,0.002216,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.277036,0.002216,-0.002000,0.249992,0,0);}
.m29_c01244{transform:matrix(0.279651,0.002237,-0.002000,0.249992,0,0);-ms-transform:matrix(0.279651,0.002237,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.279651,0.002237,-0.002000,0.249992,0,0);}
.m63_c01244{transform:matrix(0.281731,0.002254,-0.002000,0.249992,0,0);-ms-transform:matrix(0.281731,0.002254,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.281731,0.002254,-0.002000,0.249992,0,0);}
.m2_c01244{transform:matrix(0.287190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287190,0.000000,0.000000,0.250000,0,0);}
.m2b_c01244{transform:matrix(0.290831,0.002327,-0.002000,0.249992,0,0);-ms-transform:matrix(0.290831,0.002327,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.290831,0.002327,-0.002000,0.249992,0,0);}
.m8d_c01244{transform:matrix(0.304385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304385,0.000000,0.000000,0.250000,0,0);}
.m1_c01244{transform:matrix(0.326465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326465,0.000000,0.000000,0.250000,0,0);}
.m84_c01244{transform:matrix(0.327435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327435,0.000000,0.000000,0.250000,0,0);}
.m7d_c01244{transform:matrix(0.351632,0.003516,-0.002500,0.249988,0,0);-ms-transform:matrix(0.351632,0.003516,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.351632,0.003516,-0.002500,0.249988,0,0);}
.m2d_c01244{transform:matrix(0.381653,0.003053,-0.002000,0.249992,0,0);-ms-transform:matrix(0.381653,0.003053,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.381653,0.003053,-0.002000,0.249992,0,0);}
.m2e_c01244{transform:matrix(0.396797,0.003174,-0.002000,0.249992,0,0);-ms-transform:matrix(0.396797,0.003174,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.396797,0.003174,-0.002000,0.249992,0,0);}
.m81_c01244{transform:matrix(0.412555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412555,0.000000,0.000000,0.250000,0,0);}
.m0_c01244{transform:matrix(0.419830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419830,0.000000,0.000000,0.250000,0,0);}
.m91_c01244{transform:matrix(0.439775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439775,0.000000,0.000000,0.250000,0,0);}
.m83_c01244{transform:matrix(0.623590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.623590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.623590,0.000000,0.000000,0.250000,0,0);}
.m82_c01244{transform:matrix(0.673755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.673755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.673755,0.000000,0.000000,0.250000,0,0);}
.m92_c01244{transform:matrix(0.867840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.867840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.867840,0.000000,0.000000,0.250000,0,0);}
.m85_c01244{transform:matrix(0.901860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.901860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.901860,0.000000,0.000000,0.250000,0,0);}
.m95_c01244{transform:matrix(1.377105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.377105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.377105,0.000000,0.000000,0.250000,0,0);}
.v0_c01244{vertical-align:0.000000px;}
.ls0_c01244{letter-spacing:0.000000px;}
.sc__c01244{text-shadow:none;}
.sc0_c01244{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__c01244{-webkit-text-stroke:0px transparent;}
.sc0_c01244{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01244{word-spacing:0.000000px;}
.fc0_c01244{color:transparent;}
.fsd_c01244{font-size:12.000000px;}
.fs8_c01244{font-size:24.000000px;}
.fsc_c01244{font-size:48.000000px;}
.fs0_c01244{font-size:60.000000px;}
.fsb_c01244{font-size:72.000000px;}
.fs3_c01244{font-size:72.002304px;}
.fs9_c01244{font-size:78.000000px;}
.fs4_c01244{font-size:78.002496px;}
.fs6_c01244{font-size:84.002688px;}
.fs7_c01244{font-size:84.004200px;}
.fs1_c01244{font-size:90.004500px;}
.fs5_c01244{font-size:96.003072px;}
.fs2_c01244{font-size:120.003840px;}
.fsa_c01244{font-size:132.000000px;}
.y0_c01244{bottom:0.000000px;}
.y87_c01244{bottom:10.530000px;}
.y86_c01244{bottom:13.770000px;}
.y85_c01244{bottom:14.580000px;}
.y84_c01244{bottom:14.850000px;}
.y83_c01244{bottom:15.120000px;}
.y82_c01244{bottom:617.140500px;}
.y81_c01244{bottom:646.672500px;}
.y7e_c01244{bottom:684.694350px;}
.y80_c01244{bottom:684.694425px;}
.y7c_c01244{bottom:684.694590px;}
.y7d_c01244{bottom:684.694905px;}
.y7f_c01244{bottom:684.694965px;}
.y79_c01244{bottom:684.695130px;}
.y7b_c01244{bottom:684.695160px;}
.y78_c01244{bottom:684.695400px;}
.y7a_c01244{bottom:684.695445px;}
.y77_c01244{bottom:684.695985px;}
.y76_c01244{bottom:717.209745px;}
.y75_c01244{bottom:717.384060px;}
.y74_c01244{bottom:717.660240px;}
.y73_c01244{bottom:718.379190px;}
.y72_c01244{bottom:718.991505px;}
.y71_c01244{bottom:719.325510px;}
.y70_c01244{bottom:719.488545px;}
.y6f_c01244{bottom:719.761095px;}
.y6e_c01244{bottom:719.924160px;}
.y6d_c01244{bottom:720.088485px;}
.y6c_c01244{bottom:752.839365px;}
.y6b_c01244{bottom:753.727965px;}
.y6a_c01244{bottom:754.078680px;}
.y69_c01244{bottom:755.062155px;}
.y68_c01244{bottom:755.509770px;}
.y67_c01244{bottom:756.071640px;}
.y66_c01244{bottom:757.400130px;}
.y65_c01244{bottom:757.832220px;}
.y64_c01244{bottom:758.161500px;}
.y5f_c01244{bottom:789.751188px;}
.y60_c01244{bottom:790.209468px;}
.y61_c01244{bottom:791.445588px;}
.y62_c01244{bottom:791.901624px;}
.y63_c01244{bottom:792.529884px;}
.y5d_c01244{bottom:825.265788px;}
.y5c_c01244{bottom:825.266076px;}
.y55_c01244{bottom:825.266316px;}
.y5e_c01244{bottom:825.266532px;}
.y56_c01244{bottom:825.266760px;}
.y5b_c01244{bottom:825.266784px;}
.y58_c01244{bottom:825.267324px;}
.y5a_c01244{bottom:825.267432px;}
.y57_c01244{bottom:825.267492px;}
.y59_c01244{bottom:825.268068px;}
.y49_c01244{bottom:862.109712px;}
.y4c_c01244{bottom:862.110120px;}
.y4a_c01244{bottom:862.110324px;}
.y53_c01244{bottom:862.110492px;}
.y4b_c01244{bottom:862.110516px;}
.y4f_c01244{bottom:862.110564px;}
.y51_c01244{bottom:862.110648px;}
.y4d_c01244{bottom:862.110660px;}
.y4e_c01244{bottom:862.110912px;}
.y50_c01244{bottom:862.110936px;}
.y52_c01244{bottom:862.110960px;}
.y54_c01244{bottom:862.111212px;}
.y48_c01244{bottom:897.464040px;}
.y47_c01244{bottom:897.815748px;}
.y46_c01244{bottom:898.610832px;}
.y45_c01244{bottom:898.880856px;}
.y44_c01244{bottom:899.420688px;}
.y43_c01244{bottom:899.680140px;}
.y42_c01244{bottom:900.030552px;}
.y41_c01244{bottom:900.835752px;}
.y40_c01244{bottom:901.352220px;}
.y3f_c01244{bottom:901.531500px;}
.y39_c01244{bottom:933.833592px;}
.y3a_c01244{bottom:933.833856px;}
.y3b_c01244{bottom:933.834048px;}
.y3e_c01244{bottom:933.834324px;}
.y3c_c01244{bottom:933.834420px;}
.y3d_c01244{bottom:933.834492px;}
.y38_c01244{bottom:968.754552px;}
.y36_c01244{bottom:968.754588px;}
.y37_c01244{bottom:968.754600px;}
.y35_c01244{bottom:968.754876px;}
.y33_c01244{bottom:968.754948px;}
.y34_c01244{bottom:968.755272px;}
.y32_c01244{bottom:968.755656px;}
.y31_c01244{bottom:968.755824px;}
.y30_c01244{bottom:968.756448px;}
.y2f_c01244{bottom:968.756496px;}
.y29_c01244{bottom:1003.853016px;}
.y2a_c01244{bottom:1003.853028px;}
.y28_c01244{bottom:1003.853052px;}
.y2b_c01244{bottom:1003.853244px;}
.y2c_c01244{bottom:1003.853316px;}
.y2e_c01244{bottom:1003.853340px;}
.y25_c01244{bottom:1003.853412px;}
.y2d_c01244{bottom:1003.853448px;}
.y27_c01244{bottom:1003.853460px;}
.y26_c01244{bottom:1003.853856px;}
.y24_c01244{bottom:1003.854120px;}
.y19_c01244{bottom:1037.608248px;}
.y1a_c01244{bottom:1037.608860px;}
.y1d_c01244{bottom:1037.608908px;}
.y1b_c01244{bottom:1037.609172px;}
.y1f_c01244{bottom:1037.609232px;}
.y1c_c01244{bottom:1037.609316px;}
.y1e_c01244{bottom:1037.609400px;}
.y20_c01244{bottom:1037.609436px;}
.y23_c01244{bottom:1037.609664px;}
.y21_c01244{bottom:1037.610168px;}
.y22_c01244{bottom:1037.610192px;}
.y15_c01244{bottom:1073.336232px;}
.y11_c01244{bottom:1073.336376px;}
.y13_c01244{bottom:1073.336436px;}
.y14_c01244{bottom:1073.336520px;}
.y18_c01244{bottom:1073.336664px;}
.y16_c01244{bottom:1073.336676px;}
.y17_c01244{bottom:1073.336832px;}
.y12_c01244{bottom:1073.337012px;}
.y10_c01244{bottom:1107.958308px;}
.yf_c01244{bottom:1108.586880px;}
.ye_c01244{bottom:1108.934616px;}
.yd_c01244{bottom:1109.475396px;}
.yc_c01244{bottom:1109.740356px;}
.yb_c01244{bottom:1110.539616px;}
.ya_c01244{bottom:1110.829704px;}
.y9_c01244{bottom:1111.510116px;}
.y8_c01244{bottom:1111.768476px;}
.y7_c01244{bottom:1112.131500px;}
.y2_c01244{bottom:1143.181500px;}
.y3_c01244{bottom:1144.155990px;}
.y4_c01244{bottom:1144.488480px;}
.y5_c01244{bottom:1144.823295px;}
.y6_c01244{bottom:1145.830485px;}
.y1_c01244{bottom:1220.790000px;}
.hf_c01244{height:12.000000px;}
.ha_c01244{height:24.000000px;}
.he_c01244{height:48.000000px;}
.h2_c01244{height:60.000000px;}
.hd_c01244{height:72.000000px;}
.h5_c01244{height:72.002304px;}
.hb_c01244{height:78.000000px;}
.h6_c01244{height:78.002496px;}
.h8_c01244{height:84.002688px;}
.h9_c01244{height:84.004200px;}
.h3_c01244{height:90.004500px;}
.h7_c01244{height:96.003072px;}
.h4_c01244{height:120.003840px;}
.hc_c01244{height:132.000000px;}
.h1_c01244{height:1258.500000px;}
.h0_c01244{height:1258.740000px;}
.w1_c01244{width:899.250000px;}
.w0_c01244{width:899.370000px;}
.x0_c01244{left:0.000000px;}
.x4d_c01244{left:155.520000px;}
.x4_c01244{left:158.922000px;}
.x13_c01244{left:160.916340px;}
.x4e_c01244{left:180.360000px;}
.x21_c01244{left:192.233016px;}
.x52_c01244{left:193.860000px;}
.x29_c01244{left:203.573484px;}
.x19_c01244{left:224.636616px;}
.x2e_c01244{left:236.245212px;}
.x4f_c01244{left:244.890000px;}
.x31_c01244{left:246.643500px;}
.x49_c01244{left:248.938425px;}
.x5_c01244{left:256.371000px;}
.x9_c01244{left:267.468000px;}
.x32_c01244{left:269.053500px;}
.x50_c01244{left:278.100000px;}
.x14_c01244{left:279.719448px;}
.x43_c01244{left:280.754052px;}
.x51_c01244{left:285.390000px;}
.x6_c01244{left:289.620000px;}
.x2f_c01244{left:290.787204px;}
.x57_c01244{left:299.160000px;}
.x45_c01244{left:301.716000px;}
.xa_c01244{left:312.846000px;}
.x7_c01244{left:323.101500px;}
.x33_c01244{left:333.612000px;}
.x58_c01244{left:339.120000px;}
.xb_c01244{left:345.141000px;}
.x59_c01244{left:352.890000px;}
.x1a_c01244{left:356.400552px;}
.x44_c01244{left:358.230684px;}
.x5a_c01244{left:362.610000px;}
.x22_c01244{left:367.738248px;}
.x2a_c01244{left:378.808692px;}
.x1_c01244{left:387.990000px;}
.x15_c01244{left:390.423528px;}
.x1b_c01244{left:400.141848px;}
.x3e_c01244{left:402.847428px;}
.x5b_c01244{left:409.590000px;}
.x2_c01244{left:410.670000px;}
.x38_c01244{left:412.568772px;}
.x8_c01244{left:423.820500px;}
.xc_c01244{left:430.192500px;}
.x1c_c01244{left:433.082460px;}
.x34_c01244{left:434.262000px;}
.x2b_c01244{left:444.151368px;}
.x3_c01244{left:454.140000px;}
.x30_c01244{left:455.763264px;}
.x5c_c01244{left:462.240000px;}
.xd_c01244{left:466.453500px;}
.x53_c01244{left:468.180000px;}
.x5d_c01244{left:475.470000px;}
.x35_c01244{left:478.063500px;}
.x39_c01244{left:488.710644px;}
.x3f_c01244{left:490.870056px;}
.x16_c01244{left:502.206180px;}
.x54_c01244{left:503.280000px;}
.x23_c01244{left:510.302868px;}
.x55_c01244{left:523.530000px;}
.x4a_c01244{left:524.894010px;}
.x46_c01244{left:533.961000px;}
.x24_c01244{left:544.053528px;}
.x40_c01244{left:545.142024px;}
.x1d_c01244{left:554.585736px;}
.x3a_c01244{left:557.293536px;}
.xe_c01244{left:566.361000px;}
.x4b_c01244{left:568.636890px;}
.x41_c01244{left:576.732540px;}
.x36_c01244{left:577.974000px;}
.x56_c01244{left:579.690000px;}
.xf_c01244{left:599.481000px;}
.x1e_c01244{left:610.747836px;}
.x3b_c01244{left:612.645576px;}
.x2c_c01244{left:621.546720px;}
.x3c_c01244{left:645.046152px;}
.x10_c01244{left:667.078500px;}
.x2d_c01244{left:676.898760px;}
.x4c_c01244{left:678.801900px;}
.x25_c01244{left:699.849000px;}
.x48_c01244{left:700.867470px;}
.x11_c01244{left:710.545500px;}
.x1f_c01244{left:712.001316px;}
.x3d_c01244{left:722.269596px;}
.x17_c01244{left:733.333476px;}
.x42_c01244{left:735.498204px;}
.x20_c01244{left:744.131868px;}
.x37_c01244{left:755.076000px;}
.x26_c01244{left:756.281112px;}
.x18_c01244{left:766.544100px;}
.x12_c01244{left:789.117000px;}
.x47_c01244{left:801.001500px;}
.x27_c01244{left:808.392948px;}
.x28_c01244{left:837.283296px;}
@media print{
.v0_c01244{vertical-align:0.000000pt;}
.ls0_c01244{letter-spacing:0.000000pt;}
.ws0_c01244{word-spacing:0.000000pt;}
.fsd_c01244{font-size:10.666667pt;}
.fs8_c01244{font-size:21.333333pt;}
.fsc_c01244{font-size:42.666667pt;}
.fs0_c01244{font-size:53.333333pt;}
.fsb_c01244{font-size:64.000000pt;}
.fs3_c01244{font-size:64.002048pt;}
.fs9_c01244{font-size:69.333333pt;}
.fs4_c01244{font-size:69.335552pt;}
.fs6_c01244{font-size:74.669056pt;}
.fs7_c01244{font-size:74.670400pt;}
.fs1_c01244{font-size:80.004000pt;}
.fs5_c01244{font-size:85.336064pt;}
.fs2_c01244{font-size:106.670080pt;}
.fsa_c01244{font-size:117.333333pt;}
.y0_c01244{bottom:0.000000pt;}
.y87_c01244{bottom:9.360000pt;}
.y86_c01244{bottom:12.240000pt;}
.y85_c01244{bottom:12.960000pt;}
.y84_c01244{bottom:13.200000pt;}
.y83_c01244{bottom:13.440000pt;}
.y82_c01244{bottom:548.569333pt;}
.y81_c01244{bottom:574.820000pt;}
.y7e_c01244{bottom:608.617200pt;}
.y80_c01244{bottom:608.617267pt;}
.y7c_c01244{bottom:608.617413pt;}
.y7d_c01244{bottom:608.617693pt;}
.y7f_c01244{bottom:608.617747pt;}
.y79_c01244{bottom:608.617893pt;}
.y7b_c01244{bottom:608.617920pt;}
.y78_c01244{bottom:608.618133pt;}
.y7a_c01244{bottom:608.618173pt;}
.y77_c01244{bottom:608.618653pt;}
.y76_c01244{bottom:637.519773pt;}
.y75_c01244{bottom:637.674720pt;}
.y74_c01244{bottom:637.920213pt;}
.y73_c01244{bottom:638.559280pt;}
.y72_c01244{bottom:639.103560pt;}
.y71_c01244{bottom:639.400453pt;}
.y70_c01244{bottom:639.545373pt;}
.y6f_c01244{bottom:639.787640pt;}
.y6e_c01244{bottom:639.932587pt;}
.y6d_c01244{bottom:640.078653pt;}
.y6c_c01244{bottom:669.190547pt;}
.y6b_c01244{bottom:669.980413pt;}
.y6a_c01244{bottom:670.292160pt;}
.y69_c01244{bottom:671.166360pt;}
.y68_c01244{bottom:671.564240pt;}
.y67_c01244{bottom:672.063680pt;}
.y66_c01244{bottom:673.244560pt;}
.y65_c01244{bottom:673.628640pt;}
.y64_c01244{bottom:673.921333pt;}
.y5f_c01244{bottom:702.001056pt;}
.y60_c01244{bottom:702.408416pt;}
.y61_c01244{bottom:703.507189pt;}
.y62_c01244{bottom:703.912555pt;}
.y63_c01244{bottom:704.471008pt;}
.y5d_c01244{bottom:733.569589pt;}
.y5c_c01244{bottom:733.569845pt;}
.y55_c01244{bottom:733.570059pt;}
.y5e_c01244{bottom:733.570251pt;}
.y56_c01244{bottom:733.570453pt;}
.y5b_c01244{bottom:733.570475pt;}
.y58_c01244{bottom:733.570955pt;}
.y5a_c01244{bottom:733.571051pt;}
.y57_c01244{bottom:733.571104pt;}
.y59_c01244{bottom:733.571616pt;}
.y49_c01244{bottom:766.319744pt;}
.y4c_c01244{bottom:766.320107pt;}
.y4a_c01244{bottom:766.320288pt;}
.y53_c01244{bottom:766.320437pt;}
.y4b_c01244{bottom:766.320459pt;}
.y4f_c01244{bottom:766.320501pt;}
.y51_c01244{bottom:766.320576pt;}
.y4d_c01244{bottom:766.320587pt;}
.y4e_c01244{bottom:766.320811pt;}
.y50_c01244{bottom:766.320832pt;}
.y52_c01244{bottom:766.320853pt;}
.y54_c01244{bottom:766.321077pt;}
.y48_c01244{bottom:797.745813pt;}
.y47_c01244{bottom:798.058443pt;}
.y46_c01244{bottom:798.765184pt;}
.y45_c01244{bottom:799.005205pt;}
.y44_c01244{bottom:799.485056pt;}
.y43_c01244{bottom:799.715680pt;}
.y42_c01244{bottom:800.027157pt;}
.y41_c01244{bottom:800.742891pt;}
.y40_c01244{bottom:801.201973pt;}
.y3f_c01244{bottom:801.361333pt;}
.y39_c01244{bottom:830.074304pt;}
.y3a_c01244{bottom:830.074539pt;}
.y3b_c01244{bottom:830.074709pt;}
.y3e_c01244{bottom:830.074955pt;}
.y3c_c01244{bottom:830.075040pt;}
.y3d_c01244{bottom:830.075104pt;}
.y38_c01244{bottom:861.115157pt;}
.y36_c01244{bottom:861.115189pt;}
.y37_c01244{bottom:861.115200pt;}
.y35_c01244{bottom:861.115445pt;}
.y33_c01244{bottom:861.115509pt;}
.y34_c01244{bottom:861.115797pt;}
.y32_c01244{bottom:861.116139pt;}
.y31_c01244{bottom:861.116288pt;}
.y30_c01244{bottom:861.116843pt;}
.y2f_c01244{bottom:861.116885pt;}
.y29_c01244{bottom:892.313792pt;}
.y2a_c01244{bottom:892.313803pt;}
.y28_c01244{bottom:892.313824pt;}
.y2b_c01244{bottom:892.313995pt;}
.y2c_c01244{bottom:892.314059pt;}
.y2e_c01244{bottom:892.314080pt;}
.y25_c01244{bottom:892.314144pt;}
.y2d_c01244{bottom:892.314176pt;}
.y27_c01244{bottom:892.314187pt;}
.y26_c01244{bottom:892.314539pt;}
.y24_c01244{bottom:892.314773pt;}
.y19_c01244{bottom:922.318443pt;}
.y1a_c01244{bottom:922.318987pt;}
.y1d_c01244{bottom:922.319029pt;}
.y1b_c01244{bottom:922.319264pt;}
.y1f_c01244{bottom:922.319317pt;}
.y1c_c01244{bottom:922.319392pt;}
.y1e_c01244{bottom:922.319467pt;}
.y20_c01244{bottom:922.319499pt;}
.y23_c01244{bottom:922.319701pt;}
.y21_c01244{bottom:922.320149pt;}
.y22_c01244{bottom:922.320171pt;}
.y15_c01244{bottom:954.076651pt;}
.y11_c01244{bottom:954.076779pt;}
.y13_c01244{bottom:954.076832pt;}
.y14_c01244{bottom:954.076907pt;}
.y18_c01244{bottom:954.077035pt;}
.y16_c01244{bottom:954.077045pt;}
.y17_c01244{bottom:954.077184pt;}
.y12_c01244{bottom:954.077344pt;}
.y10_c01244{bottom:984.851829pt;}
.yf_c01244{bottom:985.410560pt;}
.ye_c01244{bottom:985.719659pt;}
.yd_c01244{bottom:986.200352pt;}
.yc_c01244{bottom:986.435872pt;}
.yb_c01244{bottom:987.146325pt;}
.ya_c01244{bottom:987.404181pt;}
.y9_c01244{bottom:988.008992pt;}
.y8_c01244{bottom:988.238645pt;}
.y7_c01244{bottom:988.561333pt;}
.y2_c01244{bottom:1016.161333pt;}
.y3_c01244{bottom:1017.027547pt;}
.y4_c01244{bottom:1017.323093pt;}
.y5_c01244{bottom:1017.620707pt;}
.y6_c01244{bottom:1018.515987pt;}
.y1_c01244{bottom:1085.146667pt;}
.hf_c01244{height:10.666667pt;}
.ha_c01244{height:21.333333pt;}
.he_c01244{height:42.666667pt;}
.h2_c01244{height:53.333333pt;}
.hd_c01244{height:64.000000pt;}
.h5_c01244{height:64.002048pt;}
.hb_c01244{height:69.333333pt;}
.h6_c01244{height:69.335552pt;}
.h8_c01244{height:74.669056pt;}
.h9_c01244{height:74.670400pt;}
.h3_c01244{height:80.004000pt;}
.h7_c01244{height:85.336064pt;}
.h4_c01244{height:106.670080pt;}
.hc_c01244{height:117.333333pt;}
.h1_c01244{height:1118.666667pt;}
.h0_c01244{height:1118.880000pt;}
.w1_c01244{width:799.333333pt;}
.w0_c01244{width:799.440000pt;}
.x0_c01244{left:0.000000pt;}
.x4d_c01244{left:138.240000pt;}
.x4_c01244{left:141.264000pt;}
.x13_c01244{left:143.036747pt;}
.x4e_c01244{left:160.320000pt;}
.x21_c01244{left:170.873792pt;}
.x52_c01244{left:172.320000pt;}
.x29_c01244{left:180.954208pt;}
.x19_c01244{left:199.676992pt;}
.x2e_c01244{left:209.995744pt;}
.x4f_c01244{left:217.680000pt;}
.x31_c01244{left:219.238667pt;}
.x49_c01244{left:221.278600pt;}
.x5_c01244{left:227.885333pt;}
.x9_c01244{left:237.749333pt;}
.x32_c01244{left:239.158667pt;}
.x50_c01244{left:247.200000pt;}
.x14_c01244{left:248.639509pt;}
.x43_c01244{left:249.559157pt;}
.x51_c01244{left:253.680000pt;}
.x6_c01244{left:257.440000pt;}
.x2f_c01244{left:258.477515pt;}
.x57_c01244{left:265.920000pt;}
.x45_c01244{left:268.192000pt;}
.xa_c01244{left:278.085333pt;}
.x7_c01244{left:287.201333pt;}
.x33_c01244{left:296.544000pt;}
.x58_c01244{left:301.440000pt;}
.xb_c01244{left:306.792000pt;}
.x59_c01244{left:313.680000pt;}
.x1a_c01244{left:316.800491pt;}
.x44_c01244{left:318.427275pt;}
.x5a_c01244{left:322.320000pt;}
.x22_c01244{left:326.878443pt;}
.x2a_c01244{left:336.718837pt;}
.x1_c01244{left:344.880000pt;}
.x15_c01244{left:347.043136pt;}
.x1b_c01244{left:355.681643pt;}
.x3e_c01244{left:358.086603pt;}
.x5b_c01244{left:364.080000pt;}
.x2_c01244{left:365.040000pt;}
.x38_c01244{left:366.727797pt;}
.x8_c01244{left:376.729333pt;}
.xc_c01244{left:382.393333pt;}
.x1c_c01244{left:384.962187pt;}
.x34_c01244{left:386.010667pt;}
.x2b_c01244{left:394.801216pt;}
.x3_c01244{left:403.680000pt;}
.x30_c01244{left:405.122901pt;}
.x5c_c01244{left:410.880000pt;}
.xd_c01244{left:414.625333pt;}
.x53_c01244{left:416.160000pt;}
.x5d_c01244{left:422.640000pt;}
.x35_c01244{left:424.945333pt;}
.x39_c01244{left:434.409461pt;}
.x3f_c01244{left:436.328939pt;}
.x16_c01244{left:446.405493pt;}
.x54_c01244{left:447.360000pt;}
.x23_c01244{left:453.602549pt;}
.x55_c01244{left:465.360000pt;}
.x4a_c01244{left:466.572453pt;}
.x46_c01244{left:474.632000pt;}
.x24_c01244{left:483.603136pt;}
.x40_c01244{left:484.570688pt;}
.x1d_c01244{left:492.965099pt;}
.x3a_c01244{left:495.372032pt;}
.xe_c01244{left:503.432000pt;}
.x4b_c01244{left:505.455013pt;}
.x41_c01244{left:512.651147pt;}
.x36_c01244{left:513.754667pt;}
.x56_c01244{left:515.280000pt;}
.xf_c01244{left:532.872000pt;}
.x1e_c01244{left:542.886965pt;}
.x3b_c01244{left:544.573845pt;}
.x2c_c01244{left:552.485973pt;}
.x3c_c01244{left:573.374357pt;}
.x10_c01244{left:592.958667pt;}
.x2d_c01244{left:601.687787pt;}
.x4c_c01244{left:603.379467pt;}
.x25_c01244{left:622.088000pt;}
.x48_c01244{left:622.993307pt;}
.x11_c01244{left:631.596000pt;}
.x1f_c01244{left:632.890059pt;}
.x3d_c01244{left:642.017419pt;}
.x17_c01244{left:651.851979pt;}
.x42_c01244{left:653.776181pt;}
.x20_c01244{left:661.450549pt;}
.x37_c01244{left:671.178667pt;}
.x26_c01244{left:672.249877pt;}
.x18_c01244{left:681.372533pt;}
.x12_c01244{left:701.437333pt;}
.x47_c01244{left:712.001333pt;}
.x27_c01244{left:718.571509pt;}
.x28_c01244{left:744.251819pt;}
}





/* 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_c01245 {
    display:none;
  }
  .loading-indicator_c01245.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01245 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_c01245 { 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_c01245" -> "#page-container .classname_c01245")
 */
.pf_c01245 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01245 { /* 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_c01245.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01245 { /* 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_c01245 { /* 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_c01245 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01245 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01245 {overflow:visible;}
  }
}
.c_c01245 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01245 { /* 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_c01245:after { /* webkit #35443 */
  content: '';
}
.t_c01245:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01245 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 */
}
.__c01245 { /* 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_c01245 { /* info for Javascript */
  display:none;
}
.l_c01245 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01245 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01245 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01245: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_c01245 {
    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_c01245.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01245.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_c01245 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01245{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01245;src:url('chunks/assets/font_132af6d682320e9b248f68cf.woff2')format("woff");}.ff1_c01245{font-family:ff1_c01245;line-height:1.000000;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;}
.m6_c01245{transform:matrix(0.010815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.010815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.010815,0.000000,0.000000,0.250000,0,0);}
.m0_c01245{transform:matrix(0.074275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.074275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.074275,0.000000,0.000000,0.250000,0,0);}
.m10_c01245{transform:matrix(0.194175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194175,0.000000,0.000000,0.250000,0,0);}
.mf_c01245{transform:matrix(0.226320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226320,0.000000,0.000000,0.250000,0,0);}
.m9_c01245{transform:matrix(0.227435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227435,0.000000,0.000000,0.250000,0,0);}
.m3_c01245{transform:matrix(0.285160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285160,0.000000,0.000000,0.250000,0,0);}
.m11_c01245{transform:matrix(0.328305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328305,0.000000,0.000000,0.250000,0,0);}
.mb_c01245{transform:matrix(0.331550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331550,0.000000,0.000000,0.250000,0,0);}
.md_c01245{transform:matrix(0.340970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340970,0.000000,0.000000,0.250000,0,0);}
.m7_c01245{transform:matrix(0.349135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349135,0.000000,0.000000,0.250000,0,0);}
.m8_c01245{transform:matrix(0.350025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350025,0.000000,0.000000,0.250000,0,0);}
.m13_c01245{transform:matrix(0.350700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350700,0.000000,0.000000,0.250000,0,0);}
.m4_c01245{transform:matrix(0.367015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367015,0.000000,0.000000,0.250000,0,0);}
.m1_c01245{transform:matrix(0.415920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415920,0.000000,0.000000,0.250000,0,0);}
.mc_c01245{transform:matrix(0.442755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442755,0.000000,0.000000,0.250000,0,0);}
.m12_c01245{transform:matrix(0.446610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446610,0.000000,0.000000,0.250000,0,0);}
.m2_c01245{transform:matrix(0.515025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515025,0.000000,0.000000,0.250000,0,0);}
.me_c01245{transform:matrix(0.571260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571260,0.000000,0.000000,0.250000,0,0);}
.m5_c01245{transform:matrix(0.770350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770350,0.000000,0.000000,0.250000,0,0);}
.ma_c01245{transform:matrix(1.385575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.385575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.385575,0.000000,0.000000,0.250000,0,0);}
.v0_c01245{vertical-align:0.000000px;}
.ls0_c01245{letter-spacing:0.000000px;}
.sc__c01245{text-shadow:none;}
.sc0_c01245{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__c01245{-webkit-text-stroke:0px transparent;}
.sc0_c01245{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01245{word-spacing:0.000000px;}
.fc0_c01245{color:transparent;}
.fs2_c01245{font-size:36.000000px;}
.fs3_c01245{font-size:72.000000px;}
.fs0_c01245{font-size:90.000000px;}
.fs1_c01245{font-size:102.000000px;}
.y0_c01245{bottom:0.000000px;}
.yb_c01245{bottom:758.133000px;}
.y6_c01245{bottom:792.843000px;}
.y7_c01245{bottom:793.149000px;}
.y8_c01245{bottom:793.884000px;}
.y9_c01245{bottom:794.394000px;}
.ya_c01245{bottom:794.958000px;}
.y3_c01245{bottom:815.944500px;}
.y4_c01245{bottom:817.365000px;}
.y5_c01245{bottom:819.010500px;}
.y2_c01245{bottom:870.564000px;}
.y1_c01245{bottom:905.007000px;}
.h4_c01245{height:36.000000px;}
.h5_c01245{height:72.000000px;}
.h2_c01245{height:90.000000px;}
.h3_c01245{height:102.000000px;}
.h1_c01245{height:1258.500000px;}
.h0_c01245{height:1258.740000px;}
.w1_c01245{width:899.250000px;}
.w0_c01245{width:899.370000px;}
.x0_c01245{left:0.000000px;}
.x9_c01245{left:140.400000px;}
.xa_c01245{left:219.780000px;}
.x1_c01245{left:352.620000px;}
.x2_c01245{left:363.690000px;}
.x3_c01245{left:435.510000px;}
.x4_c01245{left:507.060000px;}
.xe_c01245{left:528.681000px;}
.x5_c01245{left:545.670000px;}
.xf_c01245{left:581.220000px;}
.xb_c01245{left:592.609500px;}
.x6_c01245{left:608.310000px;}
.x10_c01245{left:617.655000px;}
.xc_c01245{left:654.382500px;}
.x11_c01245{left:657.925500px;}
.x7_c01245{left:673.650000px;}
.x8_c01245{left:675.810000px;}
.x12_c01245{left:705.510000px;}
.xd_c01245{left:725.913000px;}
@media print{
.v0_c01245{vertical-align:0.000000pt;}
.ls0_c01245{letter-spacing:0.000000pt;}
.ws0_c01245{word-spacing:0.000000pt;}
.fs2_c01245{font-size:32.000000pt;}
.fs3_c01245{font-size:64.000000pt;}
.fs0_c01245{font-size:80.000000pt;}
.fs1_c01245{font-size:90.666667pt;}
.y0_c01245{bottom:0.000000pt;}
.yb_c01245{bottom:673.896000pt;}
.y6_c01245{bottom:704.749333pt;}
.y7_c01245{bottom:705.021333pt;}
.y8_c01245{bottom:705.674667pt;}
.y9_c01245{bottom:706.128000pt;}
.ya_c01245{bottom:706.629333pt;}
.y3_c01245{bottom:725.284000pt;}
.y4_c01245{bottom:726.546667pt;}
.y5_c01245{bottom:728.009333pt;}
.y2_c01245{bottom:773.834667pt;}
.y1_c01245{bottom:804.450667pt;}
.h4_c01245{height:32.000000pt;}
.h5_c01245{height:64.000000pt;}
.h2_c01245{height:80.000000pt;}
.h3_c01245{height:90.666667pt;}
.h1_c01245{height:1118.666667pt;}
.h0_c01245{height:1118.880000pt;}
.w1_c01245{width:799.333333pt;}
.w0_c01245{width:799.440000pt;}
.x0_c01245{left:0.000000pt;}
.x9_c01245{left:124.800000pt;}
.xa_c01245{left:195.360000pt;}
.x1_c01245{left:313.440000pt;}
.x2_c01245{left:323.280000pt;}
.x3_c01245{left:387.120000pt;}
.x4_c01245{left:450.720000pt;}
.xe_c01245{left:469.938667pt;}
.x5_c01245{left:485.040000pt;}
.xf_c01245{left:516.640000pt;}
.xb_c01245{left:526.764000pt;}
.x6_c01245{left:540.720000pt;}
.x10_c01245{left:549.026667pt;}
.xc_c01245{left:581.673333pt;}
.x11_c01245{left:584.822667pt;}
.x7_c01245{left:598.800000pt;}
.x8_c01245{left:600.720000pt;}
.x12_c01245{left:627.120000pt;}
.xd_c01245{left:645.256000pt;}
}





/* 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_c01246 {
    display:none;
  }
  .loading-indicator_c01246.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01246 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_c01246 { 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_c01246" -> "#page-container .classname_c01246")
 */
.pf_c01246 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01246 { /* 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_c01246.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01246 { /* 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_c01246 { /* 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_c01246 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01246 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01246 {overflow:visible;}
  }
}
.c_c01246 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01246 { /* 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_c01246:after { /* webkit #35443 */
  content: '';
}
.t_c01246:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01246 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 */
}
.__c01246 { /* 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_c01246 { /* info for Javascript */
  display:none;
}
.l_c01246 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01246 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01246 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01246: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_c01246 {
    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_c01246.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01246.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_c01246 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01246{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01246;src:url('chunks/assets/font_c605e72f209fc835e906f064.woff2')format("woff");}.ff1_c01246{font-family:ff1_c01246;line-height:1.000000;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;}
.m102_c01246{transform:matrix(0.008483,0.000204,-0.005998,0.249928,0,0);-ms-transform:matrix(0.008483,0.000204,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.008483,0.000204,-0.005998,0.249928,0,0);}
.m56_c01246{transform:matrix(0.008894,0.000133,-0.003750,0.249972,0,0);-ms-transform:matrix(0.008894,0.000133,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.008894,0.000133,-0.003750,0.249972,0,0);}
.m63_c01246{transform:matrix(0.009089,0.000145,-0.003999,0.249968,0,0);-ms-transform:matrix(0.009089,0.000145,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.009089,0.000145,-0.003999,0.249968,0,0);}
.m55_c01246{transform:matrix(0.010139,0.000152,-0.003750,0.249972,0,0);-ms-transform:matrix(0.010139,0.000152,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.010139,0.000152,-0.003750,0.249972,0,0);}
.m3a_c01246{transform:matrix(0.010604,0.000159,-0.003750,0.249972,0,0);-ms-transform:matrix(0.010604,0.000159,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.010604,0.000159,-0.003750,0.249972,0,0);}
.m23_c01246{transform:matrix(0.015460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.015460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.015460,0.000000,0.000000,0.250000,0,0);}
.m21_c01246{transform:matrix(0.021215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021215,0.000000,0.000000,0.250000,0,0);}
.m20_c01246{transform:matrix(0.024010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.024010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.024010,0.000000,0.000000,0.250000,0,0);}
.me5_c01246{transform:matrix(0.078212,0.001877,-0.005998,0.249928,0,0);-ms-transform:matrix(0.078212,0.001877,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.078212,0.001877,-0.005998,0.249928,0,0);}
.me7_c01246{transform:matrix(0.080952,0.001943,-0.005998,0.249928,0,0);-ms-transform:matrix(0.080952,0.001943,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.080952,0.001943,-0.005998,0.249928,0,0);}
.mfe_c01246{transform:matrix(0.117356,0.002817,-0.005998,0.249928,0,0);-ms-transform:matrix(0.117356,0.002817,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.117356,0.002817,-0.005998,0.249928,0,0);}
.m45_c01246{transform:matrix(0.117472,0.001762,-0.003750,0.249972,0,0);-ms-transform:matrix(0.117472,0.001762,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.117472,0.001762,-0.003750,0.249972,0,0);}
.m97_c01246{transform:matrix(0.121706,0.002434,-0.004999,0.249950,0,0);-ms-transform:matrix(0.121706,0.002434,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.121706,0.002434,-0.004999,0.249950,0,0);}
.m96_c01246{transform:matrix(0.125150,0.002503,-0.004999,0.249950,0,0);-ms-transform:matrix(0.125150,0.002503,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.125150,0.002503,-0.004999,0.249950,0,0);}
.mc5_c01246{transform:matrix(0.129541,0.002720,-0.005249,0.249945,0,0);-ms-transform:matrix(0.129541,0.002720,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.129541,0.002720,-0.005249,0.249945,0,0);}
.m24_c01246{transform:matrix(0.129553,0.002073,-0.003999,0.249968,0,0);-ms-transform:matrix(0.129553,0.002073,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.129553,0.002073,-0.003999,0.249968,0,0);}
.mfd_c01246{transform:matrix(0.129593,0.003110,-0.005998,0.249928,0,0);-ms-transform:matrix(0.129593,0.003110,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.129593,0.003110,-0.005998,0.249928,0,0);}
.mc4_c01246{transform:matrix(0.131796,0.002768,-0.005249,0.249945,0,0);-ms-transform:matrix(0.131796,0.002768,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.131796,0.002768,-0.005249,0.249945,0,0);}
.ma8_c01246{transform:matrix(0.136432,0.001910,-0.003500,0.249976,0,0);-ms-transform:matrix(0.136432,0.001910,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.136432,0.001910,-0.003500,0.249976,0,0);}
.me6_c01246{transform:matrix(0.140964,0.003383,-0.005998,0.249928,0,0);-ms-transform:matrix(0.140964,0.003383,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.140964,0.003383,-0.005998,0.249928,0,0);}
.md1_c01246{transform:matrix(0.141927,0.003264,-0.005748,0.249934,0,0);-ms-transform:matrix(0.141927,0.003264,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.141927,0.003264,-0.005748,0.249934,0,0);}
.m58_c01246{transform:matrix(0.142971,0.002002,-0.003500,0.249976,0,0);-ms-transform:matrix(0.142971,0.002002,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.142971,0.002002,-0.003500,0.249976,0,0);}
.m57_c01246{transform:matrix(0.145356,0.002035,-0.003500,0.249976,0,0);-ms-transform:matrix(0.145356,0.002035,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.145356,0.002035,-0.003500,0.249976,0,0);}
.md2_c01246{transform:matrix(0.145646,0.003350,-0.005748,0.249934,0,0);-ms-transform:matrix(0.145646,0.003350,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.145646,0.003350,-0.005748,0.249934,0,0);}
.mea_c01246{transform:matrix(0.146793,0.003523,-0.005998,0.249928,0,0);-ms-transform:matrix(0.146793,0.003523,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.146793,0.003523,-0.005998,0.249928,0,0);}
.mf2_c01246{transform:matrix(0.146898,0.003526,-0.005998,0.249928,0,0);-ms-transform:matrix(0.146898,0.003526,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.146898,0.003526,-0.005998,0.249928,0,0);}
.m78_c01246{transform:matrix(0.149143,-0.000746,0.001250,0.249997,0,0);-ms-transform:matrix(0.149143,-0.000746,0.001250,0.249997,0,0);-webkit-transform:matrix(0.149143,-0.000746,0.001250,0.249997,0,0);}
.mf0_c01246{transform:matrix(0.149287,0.003583,-0.005998,0.249928,0,0);-ms-transform:matrix(0.149287,0.003583,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.149287,0.003583,-0.005998,0.249928,0,0);}
.mef_c01246{transform:matrix(0.151681,0.003640,-0.005998,0.249928,0,0);-ms-transform:matrix(0.151681,0.003640,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.151681,0.003640,-0.005998,0.249928,0,0);}
.m46_c01246{transform:matrix(0.152148,0.002282,-0.003750,0.249972,0,0);-ms-transform:matrix(0.152148,0.002282,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.152148,0.002282,-0.003750,0.249972,0,0);}
.mec_c01246{transform:matrix(0.153581,0.003686,-0.005998,0.249928,0,0);-ms-transform:matrix(0.153581,0.003686,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.153581,0.003686,-0.005998,0.249928,0,0);}
.mb5_c01246{transform:matrix(0.156432,0.003442,-0.005499,0.249940,0,0);-ms-transform:matrix(0.156432,0.003442,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.156432,0.003442,-0.005499,0.249940,0,0);}
.m84_c01246{transform:matrix(0.156452,0.002347,-0.003750,0.249972,0,0);-ms-transform:matrix(0.156452,0.002347,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.156452,0.002347,-0.003750,0.249972,0,0);}
.me8_c01246{transform:matrix(0.160459,0.003851,-0.005998,0.249928,0,0);-ms-transform:matrix(0.160459,0.003851,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.160459,0.003851,-0.005998,0.249928,0,0);}
.m34_c01246{transform:matrix(0.163259,0.002612,-0.003999,0.249968,0,0);-ms-transform:matrix(0.163259,0.002612,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.163259,0.002612,-0.003999,0.249968,0,0);}
.m9d_c01246{transform:matrix(0.165172,0.003303,-0.004999,0.249950,0,0);-ms-transform:matrix(0.165172,0.003303,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.165172,0.003303,-0.004999,0.249950,0,0);}
.m62_c01246{transform:matrix(0.169663,0.002375,-0.003500,0.249976,0,0);-ms-transform:matrix(0.169663,0.002375,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.169663,0.002375,-0.003500,0.249976,0,0);}
.me9_c01246{transform:matrix(0.170881,0.004101,-0.005998,0.249928,0,0);-ms-transform:matrix(0.170881,0.004101,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.170881,0.004101,-0.005998,0.249928,0,0);}
.m25_c01246{transform:matrix(0.171083,0.002737,-0.003999,0.249968,0,0);-ms-transform:matrix(0.171083,0.002737,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.171083,0.002737,-0.003999,0.249968,0,0);}
.m5d_c01246{transform:matrix(0.172833,0.002420,-0.003500,0.249976,0,0);-ms-transform:matrix(0.172833,0.002420,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.172833,0.002420,-0.003500,0.249976,0,0);}
.m79_c01246{transform:matrix(0.175583,-0.000878,0.001250,0.249997,0,0);-ms-transform:matrix(0.175583,-0.000878,0.001250,0.249997,0,0);-webkit-transform:matrix(0.175583,-0.000878,0.001250,0.249997,0,0);}
.mcd_c01246{transform:matrix(0.176966,0.003716,-0.005249,0.249945,0,0);-ms-transform:matrix(0.176966,0.003716,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.176966,0.003716,-0.005249,0.249945,0,0);}
.m4a_c01246{transform:matrix(0.176980,0.002655,-0.003750,0.249972,0,0);-ms-transform:matrix(0.176980,0.002655,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.176980,0.002655,-0.003750,0.249972,0,0);}
.m48_c01246{transform:matrix(0.177315,0.002660,-0.003750,0.249972,0,0);-ms-transform:matrix(0.177315,0.002660,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.177315,0.002660,-0.003750,0.249972,0,0);}
.m91_c01246{transform:matrix(0.177560,0.002663,-0.003750,0.249972,0,0);-ms-transform:matrix(0.177560,0.002663,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.177560,0.002663,-0.003750,0.249972,0,0);}
.m5e_c01246{transform:matrix(0.177693,0.002488,-0.003500,0.249976,0,0);-ms-transform:matrix(0.177693,0.002488,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.177693,0.002488,-0.003500,0.249976,0,0);}
.ma9_c01246{transform:matrix(0.178662,0.002501,-0.003500,0.249976,0,0);-ms-transform:matrix(0.178662,0.002501,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.178662,0.002501,-0.003500,0.249976,0,0);}
.m2c_c01246{transform:matrix(0.179877,0.002878,-0.003999,0.249968,0,0);-ms-transform:matrix(0.179877,0.002878,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.179877,0.002878,-0.003999,0.249968,0,0);}
.mee_c01246{transform:matrix(0.180698,0.004337,-0.005998,0.249928,0,0);-ms-transform:matrix(0.180698,0.004337,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.180698,0.004337,-0.005998,0.249928,0,0);}
.m49_c01246{transform:matrix(0.183684,0.002755,-0.003750,0.249972,0,0);-ms-transform:matrix(0.183684,0.002755,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.183684,0.002755,-0.003750,0.249972,0,0);}
.mff_c01246{transform:matrix(0.186991,0.004488,-0.005998,0.249928,0,0);-ms-transform:matrix(0.186991,0.004488,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.186991,0.004488,-0.005998,0.249928,0,0);}
.m100_c01246{transform:matrix(0.187436,0.004498,-0.005998,0.249928,0,0);-ms-transform:matrix(0.187436,0.004498,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.187436,0.004498,-0.005998,0.249928,0,0);}
.m99_c01246{transform:matrix(0.187453,0.003749,-0.004999,0.249950,0,0);-ms-transform:matrix(0.187453,0.003749,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.187453,0.003749,-0.004999,0.249950,0,0);}
.m5a_c01246{transform:matrix(0.188247,0.002635,-0.003500,0.249976,0,0);-ms-transform:matrix(0.188247,0.002635,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.188247,0.002635,-0.003500,0.249976,0,0);}
.m4c_c01246{transform:matrix(0.188674,0.002830,-0.003750,0.249972,0,0);-ms-transform:matrix(0.188674,0.002830,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.188674,0.002830,-0.003750,0.249972,0,0);}
.m92_c01246{transform:matrix(0.188964,0.002834,-0.003750,0.249972,0,0);-ms-transform:matrix(0.188964,0.002834,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.188964,0.002834,-0.003750,0.249972,0,0);}
.ma1_c01246{transform:matrix(0.190227,0.003805,-0.004999,0.249950,0,0);-ms-transform:matrix(0.190227,0.003805,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.190227,0.003805,-0.004999,0.249950,0,0);}
.m2e_c01246{transform:matrix(0.191111,0.003058,-0.003999,0.249968,0,0);-ms-transform:matrix(0.191111,0.003058,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.191111,0.003058,-0.003999,0.249968,0,0);}
.m50_c01246{transform:matrix(0.194998,0.002925,-0.003750,0.249972,0,0);-ms-transform:matrix(0.194998,0.002925,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.194998,0.002925,-0.003750,0.249972,0,0);}
.m2b_c01246{transform:matrix(0.196710,0.003147,-0.003999,0.249968,0,0);-ms-transform:matrix(0.196710,0.003147,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.196710,0.003147,-0.003999,0.249968,0,0);}
.m9a_c01246{transform:matrix(0.196896,0.003938,-0.004999,0.249950,0,0);-ms-transform:matrix(0.196896,0.003938,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.196896,0.003938,-0.004999,0.249950,0,0);}
.m5b_c01246{transform:matrix(0.196936,0.002757,-0.003500,0.249976,0,0);-ms-transform:matrix(0.196936,0.002757,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.196936,0.002757,-0.003500,0.249976,0,0);}
.m85_c01246{transform:matrix(0.197288,0.002959,-0.003750,0.249972,0,0);-ms-transform:matrix(0.197288,0.002959,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.197288,0.002959,-0.003750,0.249972,0,0);}
.m60_c01246{transform:matrix(0.197356,0.002763,-0.003500,0.249976,0,0);-ms-transform:matrix(0.197356,0.002763,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.197356,0.002763,-0.003500,0.249976,0,0);}
.m4e_c01246{transform:matrix(0.197433,0.002961,-0.003750,0.249972,0,0);-ms-transform:matrix(0.197433,0.002961,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.197433,0.002961,-0.003750,0.249972,0,0);}
.m59_c01246{transform:matrix(0.198106,0.002773,-0.003500,0.249976,0,0);-ms-transform:matrix(0.198106,0.002773,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.198106,0.002773,-0.003500,0.249976,0,0);}
.m5c_c01246{transform:matrix(0.199140,0.002788,-0.003500,0.249976,0,0);-ms-transform:matrix(0.199140,0.002788,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.199140,0.002788,-0.003500,0.249976,0,0);}
.m9e_c01246{transform:matrix(0.199545,0.003991,-0.004999,0.249950,0,0);-ms-transform:matrix(0.199545,0.003991,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.199545,0.003991,-0.004999,0.249950,0,0);}
.mcf_c01246{transform:matrix(0.200266,0.004206,-0.005249,0.249945,0,0);-ms-transform:matrix(0.200266,0.004206,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.200266,0.004206,-0.005249,0.249945,0,0);}
.m9f_c01246{transform:matrix(0.200695,0.004014,-0.004999,0.249950,0,0);-ms-transform:matrix(0.200695,0.004014,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.200695,0.004014,-0.004999,0.249950,0,0);}
.mc3_c01246{transform:matrix(0.201396,0.002417,-0.003000,0.249982,0,0);-ms-transform:matrix(0.201396,0.002417,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.201396,0.002417,-0.003000,0.249982,0,0);}
.m18_c01246{transform:matrix(0.201555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201555,0.000000,0.000000,0.250000,0,0);}
.m3c_c01246{transform:matrix(0.201922,0.003029,-0.003750,0.249972,0,0);-ms-transform:matrix(0.201922,0.003029,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.201922,0.003029,-0.003750,0.249972,0,0);}
.m6c_c01246{transform:matrix(0.203835,0.002854,-0.003500,0.249976,0,0);-ms-transform:matrix(0.203835,0.002854,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.203835,0.002854,-0.003500,0.249976,0,0);}
.m54_c01246{transform:matrix(0.203877,0.003058,-0.003750,0.249972,0,0);-ms-transform:matrix(0.203877,0.003058,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.203877,0.003058,-0.003750,0.249972,0,0);}
.m51_c01246{transform:matrix(0.204172,0.003063,-0.003750,0.249972,0,0);-ms-transform:matrix(0.204172,0.003063,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.204172,0.003063,-0.003750,0.249972,0,0);}
.m7c_c01246{transform:matrix(0.204867,-0.001024,0.001250,0.249997,0,0);-ms-transform:matrix(0.204867,-0.001024,0.001250,0.249997,0,0);-webkit-transform:matrix(0.204867,-0.001024,0.001250,0.249997,0,0);}
.m5f_c01246{transform:matrix(0.205255,0.002874,-0.003500,0.249976,0,0);-ms-transform:matrix(0.205255,0.002874,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.205255,0.002874,-0.003500,0.249976,0,0);}
.m47_c01246{transform:matrix(0.205857,0.003088,-0.003750,0.249972,0,0);-ms-transform:matrix(0.205857,0.003088,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.205857,0.003088,-0.003750,0.249972,0,0);}
.ma3_c01246{transform:matrix(0.206485,0.002891,-0.003500,0.249976,0,0);-ms-transform:matrix(0.206485,0.002891,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.206485,0.002891,-0.003500,0.249976,0,0);}
.m4b_c01246{transform:matrix(0.207042,0.003106,-0.003750,0.249972,0,0);-ms-transform:matrix(0.207042,0.003106,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.207042,0.003106,-0.003750,0.249972,0,0);}
.m4f_c01246{transform:matrix(0.208147,0.003122,-0.003750,0.249972,0,0);-ms-transform:matrix(0.208147,0.003122,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.208147,0.003122,-0.003750,0.249972,0,0);}
.mb6_c01246{transform:matrix(0.208410,0.004585,-0.005499,0.249940,0,0);-ms-transform:matrix(0.208410,0.004585,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.208410,0.004585,-0.005499,0.249940,0,0);}
.m94_c01246{transform:matrix(0.208926,0.003134,-0.003750,0.249972,0,0);-ms-transform:matrix(0.208926,0.003134,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.208926,0.003134,-0.003750,0.249972,0,0);}
.me4_c01246{transform:matrix(0.210454,0.004840,-0.005748,0.249934,0,0);-ms-transform:matrix(0.210454,0.004840,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.210454,0.004840,-0.005748,0.249934,0,0);}
.m4d_c01246{transform:matrix(0.210821,0.003162,-0.003750,0.249972,0,0);-ms-transform:matrix(0.210821,0.003162,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.210821,0.003162,-0.003750,0.249972,0,0);}
.m7f_c01246{transform:matrix(0.211557,-0.001058,0.001250,0.249997,0,0);-ms-transform:matrix(0.211557,-0.001058,0.001250,0.249997,0,0);-webkit-transform:matrix(0.211557,-0.001058,0.001250,0.249997,0,0);}
.mcc_c01246{transform:matrix(0.211653,0.004445,-0.005249,0.249945,0,0);-ms-transform:matrix(0.211653,0.004445,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.211653,0.004445,-0.005249,0.249945,0,0);}
.mf7_c01246{transform:matrix(0.211809,0.005083,-0.005998,0.249928,0,0);-ms-transform:matrix(0.211809,0.005083,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.211809,0.005083,-0.005998,0.249928,0,0);}
.m38_c01246{transform:matrix(0.211843,0.003389,-0.003999,0.249968,0,0);-ms-transform:matrix(0.211843,0.003389,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.211843,0.003389,-0.003999,0.249968,0,0);}
.m103_c01246{transform:matrix(0.212127,0.007220,-0.008504,0.249855,0,0);-ms-transform:matrix(0.212127,0.007220,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.212127,0.007220,-0.008504,0.249855,0,0);}
.m81_c01246{transform:matrix(0.214872,-0.001074,0.001250,0.249997,0,0);-ms-transform:matrix(0.214872,-0.001074,0.001250,0.249997,0,0);-webkit-transform:matrix(0.214872,-0.001074,0.001250,0.249997,0,0);}
.mad_c01246{transform:matrix(0.215459,0.003016,-0.003500,0.249976,0,0);-ms-transform:matrix(0.215459,0.003016,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.215459,0.003016,-0.003500,0.249976,0,0);}
.mda_c01246{transform:matrix(0.215658,0.004960,-0.005748,0.249934,0,0);-ms-transform:matrix(0.215658,0.004960,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.215658,0.004960,-0.005748,0.249934,0,0);}
.m29_c01246{transform:matrix(0.215762,0.003452,-0.003999,0.249968,0,0);-ms-transform:matrix(0.215762,0.003452,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.215762,0.003452,-0.003999,0.249968,0,0);}
.m9b_c01246{transform:matrix(0.216192,0.004324,-0.004999,0.249950,0,0);-ms-transform:matrix(0.216192,0.004324,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.216192,0.004324,-0.004999,0.249950,0,0);}
.mca_c01246{transform:matrix(0.216302,0.004542,-0.005249,0.249945,0,0);-ms-transform:matrix(0.216302,0.004542,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.216302,0.004542,-0.005249,0.249945,0,0);}
.m69_c01246{transform:matrix(0.216512,0.003464,-0.003999,0.249968,0,0);-ms-transform:matrix(0.216512,0.003464,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.216512,0.003464,-0.003999,0.249968,0,0);}
.m64_c01246{transform:matrix(0.216922,0.003471,-0.003999,0.249968,0,0);-ms-transform:matrix(0.216922,0.003471,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.216922,0.003471,-0.003999,0.249968,0,0);}
.mb0_c01246{transform:matrix(0.216989,0.003038,-0.003500,0.249976,0,0);-ms-transform:matrix(0.216989,0.003038,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.216989,0.003038,-0.003500,0.249976,0,0);}
.m9c_c01246{transform:matrix(0.217207,0.004344,-0.004999,0.249950,0,0);-ms-transform:matrix(0.217207,0.004344,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.217207,0.004344,-0.004999,0.249950,0,0);}
.m61_c01246{transform:matrix(0.217229,0.003041,-0.003500,0.249976,0,0);-ms-transform:matrix(0.217229,0.003041,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.217229,0.003041,-0.003500,0.249976,0,0);}
.ma0_c01246{transform:matrix(0.217881,0.004358,-0.004999,0.249950,0,0);-ms-transform:matrix(0.217881,0.004358,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.217881,0.004358,-0.004999,0.249950,0,0);}
.m95_c01246{transform:matrix(0.220485,0.003307,-0.003750,0.249972,0,0);-ms-transform:matrix(0.220485,0.003307,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.220485,0.003307,-0.003750,0.249972,0,0);}
.m28_c01246{transform:matrix(0.220627,0.003530,-0.003999,0.249968,0,0);-ms-transform:matrix(0.220627,0.003530,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.220627,0.003530,-0.003999,0.249968,0,0);}
.m75_c01246{transform:matrix(0.220872,-0.001104,0.001250,0.249997,0,0);-ms-transform:matrix(0.220872,-0.001104,0.001250,0.249997,0,0);-webkit-transform:matrix(0.220872,-0.001104,0.001250,0.249997,0,0);}
.m101_c01246{transform:matrix(0.220946,0.005303,-0.005998,0.249928,0,0);-ms-transform:matrix(0.220946,0.005303,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.220946,0.005303,-0.005998,0.249928,0,0);}
.m80_c01246{transform:matrix(0.220947,-0.001105,0.001250,0.249997,0,0);-ms-transform:matrix(0.220947,-0.001105,0.001250,0.249997,0,0);-webkit-transform:matrix(0.220947,-0.001105,0.001250,0.249997,0,0);}
.mcb_c01246{transform:matrix(0.221341,0.004648,-0.005249,0.249945,0,0);-ms-transform:matrix(0.221341,0.004648,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.221341,0.004648,-0.005249,0.249945,0,0);}
.mc0_c01246{transform:matrix(0.221364,0.002656,-0.003000,0.249982,0,0);-ms-transform:matrix(0.221364,0.002656,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.221364,0.002656,-0.003000,0.249982,0,0);}
.m98_c01246{transform:matrix(0.222820,0.004456,-0.004999,0.249950,0,0);-ms-transform:matrix(0.222820,0.004456,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.222820,0.004456,-0.004999,0.249950,0,0);}
.med_c01246{transform:matrix(0.223531,0.005365,-0.005998,0.249928,0,0);-ms-transform:matrix(0.223531,0.005365,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.223531,0.005365,-0.005998,0.249928,0,0);}
.md7_c01246{transform:matrix(0.223896,0.005150,-0.005748,0.249934,0,0);-ms-transform:matrix(0.223896,0.005150,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.223896,0.005150,-0.005748,0.249934,0,0);}
.m53_c01246{transform:matrix(0.224975,0.003375,-0.003750,0.249972,0,0);-ms-transform:matrix(0.224975,0.003375,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.224975,0.003375,-0.003750,0.249972,0,0);}
.m3e_c01246{transform:matrix(0.225320,0.003380,-0.003750,0.249972,0,0);-ms-transform:matrix(0.225320,0.003380,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.225320,0.003380,-0.003750,0.249972,0,0);}
.mce_c01246{transform:matrix(0.226350,0.004753,-0.005249,0.249945,0,0);-ms-transform:matrix(0.226350,0.004753,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.226350,0.004753,-0.005249,0.249945,0,0);}
.m90_c01246{transform:matrix(0.226555,0.003398,-0.003750,0.249972,0,0);-ms-transform:matrix(0.226555,0.003398,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.226555,0.003398,-0.003750,0.249972,0,0);}
.m2f_c01246{transform:matrix(0.226631,0.003626,-0.003999,0.249968,0,0);-ms-transform:matrix(0.226631,0.003626,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.226631,0.003626,-0.003999,0.249968,0,0);}
.m82_c01246{transform:matrix(0.226862,-0.001134,0.001250,0.249997,0,0);-ms-transform:matrix(0.226862,-0.001134,0.001250,0.249997,0,0);-webkit-transform:matrix(0.226862,-0.001134,0.001250,0.249997,0,0);}
.md8_c01246{transform:matrix(0.227035,0.005222,-0.005748,0.249934,0,0);-ms-transform:matrix(0.227035,0.005222,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.227035,0.005222,-0.005748,0.249934,0,0);}
.m7b_c01246{transform:matrix(0.228502,-0.001143,0.001250,0.249997,0,0);-ms-transform:matrix(0.228502,-0.001143,0.001250,0.249997,0,0);-webkit-transform:matrix(0.228502,-0.001143,0.001250,0.249997,0,0);}
.m32_c01246{transform:matrix(0.228641,0.003658,-0.003999,0.249968,0,0);-ms-transform:matrix(0.228641,0.003658,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.228641,0.003658,-0.003999,0.249968,0,0);}
.m1d_c01246{transform:matrix(0.229525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229525,0.000000,0.000000,0.250000,0,0);}
.mf8_c01246{transform:matrix(0.229709,0.005513,-0.005998,0.249928,0,0);-ms-transform:matrix(0.229709,0.005513,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.229709,0.005513,-0.005998,0.249928,0,0);}
.m2a_c01246{transform:matrix(0.230216,0.003683,-0.003999,0.249968,0,0);-ms-transform:matrix(0.230216,0.003683,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.230216,0.003683,-0.003999,0.249968,0,0);}
.me2_c01246{transform:matrix(0.230384,0.005299,-0.005748,0.249934,0,0);-ms-transform:matrix(0.230384,0.005299,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.230384,0.005299,-0.005748,0.249934,0,0);}
.m65_c01246{transform:matrix(0.230391,0.003686,-0.003999,0.249968,0,0);-ms-transform:matrix(0.230391,0.003686,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.230391,0.003686,-0.003999,0.249968,0,0);}
.mc2_c01246{transform:matrix(0.230458,0.002766,-0.003000,0.249982,0,0);-ms-transform:matrix(0.230458,0.002766,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.230458,0.002766,-0.003000,0.249982,0,0);}
.mfc_c01246{transform:matrix(0.230849,0.005540,-0.005998,0.249928,0,0);-ms-transform:matrix(0.230849,0.005540,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.230849,0.005540,-0.005998,0.249928,0,0);}
.mc6_c01246{transform:matrix(0.231134,0.004854,-0.005249,0.249945,0,0);-ms-transform:matrix(0.231134,0.004854,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.231134,0.004854,-0.005249,0.249945,0,0);}
.mfb_c01246{transform:matrix(0.231633,0.005559,-0.005998,0.249928,0,0);-ms-transform:matrix(0.231633,0.005559,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.231633,0.005559,-0.005998,0.249928,0,0);}
.m52_c01246{transform:matrix(0.231899,0.003478,-0.003750,0.249972,0,0);-ms-transform:matrix(0.231899,0.003478,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.231899,0.003478,-0.003750,0.249972,0,0);}
.m87_c01246{transform:matrix(0.232259,0.003484,-0.003750,0.249972,0,0);-ms-transform:matrix(0.232259,0.003484,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.232259,0.003484,-0.003750,0.249972,0,0);}
.m8f_c01246{transform:matrix(0.232334,0.003485,-0.003750,0.249972,0,0);-ms-transform:matrix(0.232334,0.003485,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.232334,0.003485,-0.003750,0.249972,0,0);}
.mc7_c01246{transform:matrix(0.232734,0.004887,-0.005249,0.249945,0,0);-ms-transform:matrix(0.232734,0.004887,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.232734,0.004887,-0.005249,0.249945,0,0);}
.mc8_c01246{transform:matrix(0.233434,0.004902,-0.005249,0.249945,0,0);-ms-transform:matrix(0.233434,0.004902,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.233434,0.004902,-0.005249,0.249945,0,0);}
.mbd_c01246{transform:matrix(0.233678,0.005141,-0.005499,0.249940,0,0);-ms-transform:matrix(0.233678,0.005141,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.233678,0.005141,-0.005499,0.249940,0,0);}
.m27_c01246{transform:matrix(0.234005,0.003744,-0.003999,0.249968,0,0);-ms-transform:matrix(0.234005,0.003744,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.234005,0.003744,-0.003999,0.249968,0,0);}
.m1b_c01246{transform:matrix(0.234020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234020,0.000000,0.000000,0.250000,0,0);}
.maa_c01246{transform:matrix(0.234422,0.003282,-0.003500,0.249976,0,0);-ms-transform:matrix(0.234422,0.003282,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.234422,0.003282,-0.003500,0.249976,0,0);}
.m2d_c01246{transform:matrix(0.234945,0.003759,-0.003999,0.249968,0,0);-ms-transform:matrix(0.234945,0.003759,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.234945,0.003759,-0.003999,0.249968,0,0);}
.m7e_c01246{transform:matrix(0.236567,-0.001183,0.001250,0.249997,0,0);-ms-transform:matrix(0.236567,-0.001183,0.001250,0.249997,0,0);-webkit-transform:matrix(0.236567,-0.001183,0.001250,0.249997,0,0);}
.m93_c01246{transform:matrix(0.236653,0.003550,-0.003750,0.249972,0,0);-ms-transform:matrix(0.236653,0.003550,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.236653,0.003550,-0.003750,0.249972,0,0);}
.mfa_c01246{transform:matrix(0.236787,0.005683,-0.005998,0.249928,0,0);-ms-transform:matrix(0.236787,0.005683,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.236787,0.005683,-0.005998,0.249928,0,0);}
.maf_c01246{transform:matrix(0.237027,0.003318,-0.003500,0.249976,0,0);-ms-transform:matrix(0.237027,0.003318,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.237027,0.003318,-0.003500,0.249976,0,0);}
.mab_c01246{transform:matrix(0.237542,0.003326,-0.003500,0.249976,0,0);-ms-transform:matrix(0.237542,0.003326,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.237542,0.003326,-0.003500,0.249976,0,0);}
.m33_c01246{transform:matrix(0.237875,0.003806,-0.003999,0.249968,0,0);-ms-transform:matrix(0.237875,0.003806,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.237875,0.003806,-0.003999,0.249968,0,0);}
.mdf_c01246{transform:matrix(0.238202,0.005479,-0.005748,0.249934,0,0);-ms-transform:matrix(0.238202,0.005479,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.238202,0.005479,-0.005748,0.249934,0,0);}
.md0_c01246{transform:matrix(0.238427,0.005007,-0.005249,0.249945,0,0);-ms-transform:matrix(0.238427,0.005007,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.238427,0.005007,-0.005249,0.249945,0,0);}
.mae_c01246{transform:matrix(0.238937,0.003345,-0.003500,0.249976,0,0);-ms-transform:matrix(0.238937,0.003345,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.238937,0.003345,-0.003500,0.249976,0,0);}
.m31_c01246{transform:matrix(0.238944,0.003823,-0.003999,0.249968,0,0);-ms-transform:matrix(0.238944,0.003823,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.238944,0.003823,-0.003999,0.249968,0,0);}
.m67_c01246{transform:matrix(0.239214,0.003827,-0.003999,0.249968,0,0);-ms-transform:matrix(0.239214,0.003827,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.239214,0.003827,-0.003999,0.249968,0,0);}
.m26_c01246{transform:matrix(0.239794,0.003837,-0.003999,0.249968,0,0);-ms-transform:matrix(0.239794,0.003837,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.239794,0.003837,-0.003999,0.249968,0,0);}
.m36_c01246{transform:matrix(0.240339,0.003845,-0.003999,0.249968,0,0);-ms-transform:matrix(0.240339,0.003845,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.240339,0.003845,-0.003999,0.249968,0,0);}
.m66_c01246{transform:matrix(0.240789,0.003853,-0.003999,0.249968,0,0);-ms-transform:matrix(0.240789,0.003853,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.240789,0.003853,-0.003999,0.249968,0,0);}
.m68_c01246{transform:matrix(0.240944,0.003855,-0.003999,0.249968,0,0);-ms-transform:matrix(0.240944,0.003855,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.240944,0.003855,-0.003999,0.249968,0,0);}
.m7d_c01246{transform:matrix(0.241007,-0.001205,0.001250,0.249997,0,0);-ms-transform:matrix(0.241007,-0.001205,0.001250,0.249997,0,0);-webkit-transform:matrix(0.241007,-0.001205,0.001250,0.249997,0,0);}
.mac_c01246{transform:matrix(0.241046,0.003375,-0.003500,0.249976,0,0);-ms-transform:matrix(0.241046,0.003375,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.241046,0.003375,-0.003500,0.249976,0,0);}
.md6_c01246{transform:matrix(0.241311,0.005550,-0.005748,0.249934,0,0);-ms-transform:matrix(0.241311,0.005550,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.241311,0.005550,-0.005748,0.249934,0,0);}
.m7a_c01246{transform:matrix(0.241657,-0.001208,0.001250,0.249997,0,0);-ms-transform:matrix(0.241657,-0.001208,0.001250,0.249997,0,0);-webkit-transform:matrix(0.241657,-0.001208,0.001250,0.249997,0,0);}
.mb7_c01246{transform:matrix(0.242286,0.005330,-0.005499,0.249940,0,0);-ms-transform:matrix(0.242286,0.005330,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.242286,0.005330,-0.005499,0.249940,0,0);}
.mc9_c01246{transform:matrix(0.242602,0.005095,-0.005249,0.249945,0,0);-ms-transform:matrix(0.242602,0.005095,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.242602,0.005095,-0.005249,0.249945,0,0);}
.mdb_c01246{transform:matrix(0.242956,0.005588,-0.005748,0.249934,0,0);-ms-transform:matrix(0.242956,0.005588,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.242956,0.005588,-0.005748,0.249934,0,0);}
.m70_c01246{transform:matrix(0.243471,0.003409,-0.003500,0.249976,0,0);-ms-transform:matrix(0.243471,0.003409,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.243471,0.003409,-0.003500,0.249976,0,0);}
.m35_c01246{transform:matrix(0.243604,0.003898,-0.003999,0.249968,0,0);-ms-transform:matrix(0.243604,0.003898,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.243604,0.003898,-0.003999,0.249968,0,0);}
.mdc_c01246{transform:matrix(0.243786,0.005607,-0.005748,0.249934,0,0);-ms-transform:matrix(0.243786,0.005607,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.243786,0.005607,-0.005748,0.249934,0,0);}
.m1e_c01246{transform:matrix(0.244095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244095,0.000000,0.000000,0.250000,0,0);}
.me1_c01246{transform:matrix(0.244635,0.005627,-0.005748,0.249934,0,0);-ms-transform:matrix(0.244635,0.005627,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.244635,0.005627,-0.005748,0.249934,0,0);}
.m72_c01246{transform:matrix(0.245946,0.003443,-0.003500,0.249976,0,0);-ms-transform:matrix(0.245946,0.003443,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.245946,0.003443,-0.003500,0.249976,0,0);}
.mba_c01246{transform:matrix(0.246135,0.005415,-0.005499,0.249940,0,0);-ms-transform:matrix(0.246135,0.005415,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.246135,0.005415,-0.005499,0.249940,0,0);}
.m6a_c01246{transform:matrix(0.246853,0.003950,-0.003999,0.249968,0,0);-ms-transform:matrix(0.246853,0.003950,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.246853,0.003950,-0.003999,0.249968,0,0);}
.mf4_c01246{transform:matrix(0.247304,0.005935,-0.005998,0.249928,0,0);-ms-transform:matrix(0.247304,0.005935,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.247304,0.005935,-0.005998,0.249928,0,0);}
.md4_c01246{transform:matrix(0.248634,0.005719,-0.005748,0.249934,0,0);-ms-transform:matrix(0.248634,0.005719,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.248634,0.005719,-0.005748,0.249934,0,0);}
.m88_c01246{transform:matrix(0.249082,0.003736,-0.003750,0.249972,0,0);-ms-transform:matrix(0.249082,0.003736,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.249082,0.003736,-0.003750,0.249972,0,0);}
.mbf_c01246{transform:matrix(0.249747,0.002997,-0.003000,0.249982,0,0);-ms-transform:matrix(0.249747,0.002997,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.249747,0.002997,-0.003000,0.249982,0,0);}
.m17_c01246{transform:matrix(0.250175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250175,0.000000,0.000000,0.250000,0,0);}
.m37_c01246{transform:matrix(0.250208,0.004003,-0.003999,0.249968,0,0);-ms-transform:matrix(0.250208,0.004003,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.250208,0.004003,-0.003999,0.249968,0,0);}
.mf5_c01246{transform:matrix(0.250623,0.006015,-0.005998,0.249928,0,0);-ms-transform:matrix(0.250623,0.006015,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.250623,0.006015,-0.005998,0.249928,0,0);}
.m44_c01246{transform:matrix(0.252562,0.003788,-0.003750,0.249972,0,0);-ms-transform:matrix(0.252562,0.003788,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.252562,0.003788,-0.003750,0.249972,0,0);}
.me3_c01246{transform:matrix(0.252663,0.005811,-0.005748,0.249934,0,0);-ms-transform:matrix(0.252663,0.005811,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.252663,0.005811,-0.005748,0.249934,0,0);}
.m76_c01246{transform:matrix(0.253582,-0.001268,0.001250,0.249997,0,0);-ms-transform:matrix(0.253582,-0.001268,0.001250,0.249997,0,0);-webkit-transform:matrix(0.253582,-0.001268,0.001250,0.249997,0,0);}
.m39_c01246{transform:matrix(0.254347,0.004070,-0.003999,0.249968,0,0);-ms-transform:matrix(0.254347,0.004070,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.254347,0.004070,-0.003999,0.249968,0,0);}
.mde_c01246{transform:matrix(0.254513,0.005854,-0.005748,0.249934,0,0);-ms-transform:matrix(0.254513,0.005854,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.254513,0.005854,-0.005748,0.249934,0,0);}
.m3b_c01246{transform:matrix(0.254746,0.003821,-0.003750,0.249972,0,0);-ms-transform:matrix(0.254746,0.003821,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.254746,0.003821,-0.003750,0.249972,0,0);}
.md9_c01246{transform:matrix(0.255452,0.005875,-0.005748,0.249934,0,0);-ms-transform:matrix(0.255452,0.005875,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.255452,0.005875,-0.005748,0.249934,0,0);}
.m8a_c01246{transform:matrix(0.255616,0.003834,-0.003750,0.249972,0,0);-ms-transform:matrix(0.255616,0.003834,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.255616,0.003834,-0.003750,0.249972,0,0);}
.mdd_c01246{transform:matrix(0.256247,0.005894,-0.005748,0.249934,0,0);-ms-transform:matrix(0.256247,0.005894,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.256247,0.005894,-0.005748,0.249934,0,0);}
.mb9_c01246{transform:matrix(0.256533,0.005644,-0.005499,0.249940,0,0);-ms-transform:matrix(0.256533,0.005644,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.256533,0.005644,-0.005499,0.249940,0,0);}
.m6b_c01246{transform:matrix(0.257180,0.003601,-0.003500,0.249976,0,0);-ms-transform:matrix(0.257180,0.003601,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.257180,0.003601,-0.003500,0.249976,0,0);}
.mb1_c01246{transform:matrix(0.257295,0.003602,-0.003500,0.249976,0,0);-ms-transform:matrix(0.257295,0.003602,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.257295,0.003602,-0.003500,0.249976,0,0);}
.m10d_c01246{transform:matrix(0.257880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257880,0.000000,0.000000,0.250000,0,0);}
.md3_c01246{transform:matrix(0.259546,0.005970,-0.005748,0.249934,0,0);-ms-transform:matrix(0.259546,0.005970,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.259546,0.005970,-0.005748,0.249934,0,0);}
.m86_c01246{transform:matrix(0.259811,0.003897,-0.003750,0.249972,0,0);-ms-transform:matrix(0.259811,0.003897,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.259811,0.003897,-0.003750,0.249972,0,0);}
.mf6_c01246{transform:matrix(0.260265,0.006246,-0.005998,0.249928,0,0);-ms-transform:matrix(0.260265,0.006246,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.260265,0.006246,-0.005998,0.249928,0,0);}
.m40_c01246{transform:matrix(0.260386,0.003906,-0.003750,0.249972,0,0);-ms-transform:matrix(0.260386,0.003906,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.260386,0.003906,-0.003750,0.249972,0,0);}
.md5_c01246{transform:matrix(0.262221,0.006031,-0.005748,0.249934,0,0);-ms-transform:matrix(0.262221,0.006031,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.262221,0.006031,-0.005748,0.249934,0,0);}
.mbb_c01246{transform:matrix(0.262486,0.005775,-0.005499,0.249940,0,0);-ms-transform:matrix(0.262486,0.005775,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.262486,0.005775,-0.005499,0.249940,0,0);}
.mf9_c01246{transform:matrix(0.262539,0.006301,-0.005998,0.249928,0,0);-ms-transform:matrix(0.262539,0.006301,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.262539,0.006301,-0.005998,0.249928,0,0);}
.m6d_c01246{transform:matrix(0.263769,0.003693,-0.003500,0.249976,0,0);-ms-transform:matrix(0.263769,0.003693,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.263769,0.003693,-0.003500,0.249976,0,0);}
.m89_c01246{transform:matrix(0.263955,0.003959,-0.003750,0.249972,0,0);-ms-transform:matrix(0.263955,0.003959,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.263955,0.003959,-0.003750,0.249972,0,0);}
.me0_c01246{transform:matrix(0.264145,0.006075,-0.005748,0.249934,0,0);-ms-transform:matrix(0.264145,0.006075,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.264145,0.006075,-0.005748,0.249934,0,0);}
.mf3_c01246{transform:matrix(0.264654,0.006352,-0.005998,0.249928,0,0);-ms-transform:matrix(0.264654,0.006352,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.264654,0.006352,-0.005998,0.249928,0,0);}
.m1a_c01246{transform:matrix(0.264790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264790,0.000000,0.000000,0.250000,0,0);}
.m8c_c01246{transform:matrix(0.265940,0.003989,-0.003750,0.249972,0,0);-ms-transform:matrix(0.265940,0.003989,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.265940,0.003989,-0.003750,0.249972,0,0);}
.m3f_c01246{transform:matrix(0.266235,0.003994,-0.003750,0.249972,0,0);-ms-transform:matrix(0.266235,0.003994,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.266235,0.003994,-0.003750,0.249972,0,0);}
.m19_c01246{transform:matrix(0.266530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266530,0.000000,0.000000,0.250000,0,0);}
.m1f_c01246{transform:matrix(0.266780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266780,0.000000,0.000000,0.250000,0,0);}
.mb3_c01246{transform:matrix(0.267244,0.003741,-0.003500,0.249976,0,0);-ms-transform:matrix(0.267244,0.003741,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.267244,0.003741,-0.003500,0.249976,0,0);}
.ma7_c01246{transform:matrix(0.268429,0.003758,-0.003500,0.249976,0,0);-ms-transform:matrix(0.268429,0.003758,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.268429,0.003758,-0.003500,0.249976,0,0);}
.m3d_c01246{transform:matrix(0.269240,0.004039,-0.003750,0.249972,0,0);-ms-transform:matrix(0.269240,0.004039,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.269240,0.004039,-0.003750,0.249972,0,0);}
.m30_c01246{transform:matrix(0.271170,0.004339,-0.003999,0.249968,0,0);-ms-transform:matrix(0.271170,0.004339,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.271170,0.004339,-0.003999,0.249968,0,0);}
.m6e_c01246{transform:matrix(0.272538,0.003816,-0.003500,0.249976,0,0);-ms-transform:matrix(0.272538,0.003816,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.272538,0.003816,-0.003500,0.249976,0,0);}
.m41_c01246{transform:matrix(0.272594,0.004089,-0.003750,0.249972,0,0);-ms-transform:matrix(0.272594,0.004089,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.272594,0.004089,-0.003750,0.249972,0,0);}
.ma6_c01246{transform:matrix(0.274508,0.003843,-0.003500,0.249976,0,0);-ms-transform:matrix(0.274508,0.003843,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.274508,0.003843,-0.003500,0.249976,0,0);}
.ma5_c01246{transform:matrix(0.276663,0.003873,-0.003500,0.249976,0,0);-ms-transform:matrix(0.276663,0.003873,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.276663,0.003873,-0.003500,0.249976,0,0);}
.ma4_c01246{transform:matrix(0.276743,0.003874,-0.003500,0.249976,0,0);-ms-transform:matrix(0.276743,0.003874,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.276743,0.003874,-0.003500,0.249976,0,0);}
.m71_c01246{transform:matrix(0.277043,0.003879,-0.003500,0.249976,0,0);-ms-transform:matrix(0.277043,0.003879,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.277043,0.003879,-0.003500,0.249976,0,0);}
.m42_c01246{transform:matrix(0.277574,0.004164,-0.003750,0.249972,0,0);-ms-transform:matrix(0.277574,0.004164,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.277574,0.004164,-0.003750,0.249972,0,0);}
.mbc_c01246{transform:matrix(0.277758,0.006111,-0.005499,0.249940,0,0);-ms-transform:matrix(0.277758,0.006111,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.277758,0.006111,-0.005499,0.249940,0,0);}
.m8d_c01246{transform:matrix(0.278964,0.004184,-0.003750,0.249972,0,0);-ms-transform:matrix(0.278964,0.004184,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.278964,0.004184,-0.003750,0.249972,0,0);}
.m2_c01246{transform:matrix(0.280568,0.005892,-0.005249,0.249945,0,0);-ms-transform:matrix(0.280568,0.005892,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.280568,0.005892,-0.005249,0.249945,0,0);}
.m6f_c01246{transform:matrix(0.280862,0.003932,-0.003500,0.249976,0,0);-ms-transform:matrix(0.280862,0.003932,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.280862,0.003932,-0.003500,0.249976,0,0);}
.m74_c01246{transform:matrix(0.281097,0.003935,-0.003500,0.249976,0,0);-ms-transform:matrix(0.281097,0.003935,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.281097,0.003935,-0.003500,0.249976,0,0);}
.m1c_c01246{transform:matrix(0.281180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281180,0.000000,0.000000,0.250000,0,0);}
.mb8_c01246{transform:matrix(0.281947,0.006203,-0.005499,0.249940,0,0);-ms-transform:matrix(0.281947,0.006203,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.281947,0.006203,-0.005499,0.249940,0,0);}
.mb2_c01246{transform:matrix(0.283557,0.003970,-0.003500,0.249976,0,0);-ms-transform:matrix(0.283557,0.003970,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.283557,0.003970,-0.003500,0.249976,0,0);}
.m73_c01246{transform:matrix(0.284887,0.003988,-0.003500,0.249976,0,0);-ms-transform:matrix(0.284887,0.003988,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.284887,0.003988,-0.003500,0.249976,0,0);}
.m8b_c01246{transform:matrix(0.286848,0.004303,-0.003750,0.249972,0,0);-ms-transform:matrix(0.286848,0.004303,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.286848,0.004303,-0.003750,0.249972,0,0);}
.m1_c01246{transform:matrix(0.289851,0.006087,-0.005249,0.249945,0,0);-ms-transform:matrix(0.289851,0.006087,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.289851,0.006087,-0.005249,0.249945,0,0);}
.m14_c01246{transform:matrix(0.295767,0.006803,-0.005748,0.249934,0,0);-ms-transform:matrix(0.295767,0.006803,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.295767,0.006803,-0.005748,0.249934,0,0);}
.m43_c01246{transform:matrix(0.296297,0.004444,-0.003750,0.249972,0,0);-ms-transform:matrix(0.296297,0.004444,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.296297,0.004444,-0.003750,0.249972,0,0);}
.meb_c01246{transform:matrix(0.298244,0.007158,-0.005998,0.249928,0,0);-ms-transform:matrix(0.298244,0.007158,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.298244,0.007158,-0.005998,0.249928,0,0);}
.m13_c01246{transform:matrix(0.302255,0.006952,-0.005748,0.249934,0,0);-ms-transform:matrix(0.302255,0.006952,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.302255,0.006952,-0.005748,0.249934,0,0);}
.mbe_c01246{transform:matrix(0.309950,0.006819,-0.005499,0.249940,0,0);-ms-transform:matrix(0.309950,0.006819,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.309950,0.006819,-0.005499,0.249940,0,0);}
.ma2_c01246{transform:matrix(0.317624,0.004447,-0.003500,0.249976,0,0);-ms-transform:matrix(0.317624,0.004447,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.317624,0.004447,-0.003500,0.249976,0,0);}
.m8e_c01246{transform:matrix(0.335592,0.005034,-0.003750,0.249972,0,0);-ms-transform:matrix(0.335592,0.005034,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.335592,0.005034,-0.003750,0.249972,0,0);}
.m105_c01246{transform:matrix(0.341327,0.011617,-0.008504,0.249855,0,0);-ms-transform:matrix(0.341327,0.011617,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.341327,0.011617,-0.008504,0.249855,0,0);}
.m22_c01246{transform:matrix(0.342155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342155,0.000000,0.000000,0.250000,0,0);}
.m108_c01246{transform:matrix(0.351162,0.011951,-0.008504,0.249855,0,0);-ms-transform:matrix(0.351162,0.011951,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.351162,0.011951,-0.008504,0.249855,0,0);}
.m10c_c01246{transform:matrix(0.355469,0.012098,-0.008504,0.249855,0,0);-ms-transform:matrix(0.355469,0.012098,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.355469,0.012098,-0.008504,0.249855,0,0);}
.m12_c01246{transform:matrix(0.355996,0.008188,-0.005748,0.249934,0,0);-ms-transform:matrix(0.355996,0.008188,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.355996,0.008188,-0.005748,0.249934,0,0);}
.m106_c01246{transform:matrix(0.359427,0.012233,-0.008504,0.249855,0,0);-ms-transform:matrix(0.359427,0.012233,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.359427,0.012233,-0.008504,0.249855,0,0);}
.m10b_c01246{transform:matrix(0.361391,0.012300,-0.008504,0.249855,0,0);-ms-transform:matrix(0.361391,0.012300,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.361391,0.012300,-0.008504,0.249855,0,0);}
.mf1_c01246{transform:matrix(0.365895,0.008781,-0.005998,0.249928,0,0);-ms-transform:matrix(0.365895,0.008781,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.365895,0.008781,-0.005998,0.249928,0,0);}
.mf_c01246{transform:matrix(0.368852,0.008484,-0.005748,0.249934,0,0);-ms-transform:matrix(0.368852,0.008484,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.368852,0.008484,-0.005748,0.249934,0,0);}
.m107_c01246{transform:matrix(0.370650,0.012615,-0.008504,0.249855,0,0);-ms-transform:matrix(0.370650,0.012615,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.370650,0.012615,-0.008504,0.249855,0,0);}
.m10a_c01246{transform:matrix(0.378446,0.012880,-0.008504,0.249855,0,0);-ms-transform:matrix(0.378446,0.012880,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.378446,0.012880,-0.008504,0.249855,0,0);}
.m0_c01246{transform:matrix(0.379556,0.007971,-0.005249,0.249945,0,0);-ms-transform:matrix(0.379556,0.007971,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.379556,0.007971,-0.005249,0.249945,0,0);}
.m11_c01246{transform:matrix(0.381999,0.008786,-0.005748,0.249934,0,0);-ms-transform:matrix(0.381999,0.008786,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.381999,0.008786,-0.005748,0.249934,0,0);}
.m104_c01246{transform:matrix(0.383883,0.013065,-0.008504,0.249855,0,0);-ms-transform:matrix(0.383883,0.013065,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.383883,0.013065,-0.008504,0.249855,0,0);}
.m109_c01246{transform:matrix(0.391983,0.013341,-0.008504,0.249855,0,0);-ms-transform:matrix(0.391983,0.013341,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.391983,0.013341,-0.008504,0.249855,0,0);}
.m83_c01246{transform:matrix(0.411135,-0.002056,0.001250,0.249997,0,0);-ms-transform:matrix(0.411135,-0.002056,0.001250,0.249997,0,0);-webkit-transform:matrix(0.411135,-0.002056,0.001250,0.249997,0,0);}
.m15_c01246{transform:matrix(0.448101,0.010306,-0.005748,0.249934,0,0);-ms-transform:matrix(0.448101,0.010306,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.448101,0.010306,-0.005748,0.249934,0,0);}
.m77_c01246{transform:matrix(0.481859,-0.002409,0.001250,0.249997,0,0);-ms-transform:matrix(0.481859,-0.002409,0.001250,0.249997,0,0);-webkit-transform:matrix(0.481859,-0.002409,0.001250,0.249997,0,0);}
.me_c01246{transform:matrix(0.488131,0.011227,-0.005748,0.249934,0,0);-ms-transform:matrix(0.488131,0.011227,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.488131,0.011227,-0.005748,0.249934,0,0);}
.mb_c01246{transform:matrix(0.493465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493465,0.000000,0.000000,0.250000,0,0);}
.md_c01246{transform:matrix(0.503115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.503115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.503115,0.000000,0.000000,0.250000,0,0);}
.m16_c01246{transform:matrix(0.516004,0.011868,-0.005748,0.249934,0,0);-ms-transform:matrix(0.516004,0.011868,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.516004,0.011868,-0.005748,0.249934,0,0);}
.m8_c01246{transform:matrix(0.519830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519830,0.000000,0.000000,0.250000,0,0);}
.m9_c01246{transform:matrix(0.553425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553425,0.000000,0.000000,0.250000,0,0);}
.mc_c01246{transform:matrix(0.579010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.579010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.579010,0.000000,0.000000,0.250000,0,0);}
.ma_c01246{transform:matrix(0.640360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.640360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.640360,0.000000,0.000000,0.250000,0,0);}
.mc1_c01246{transform:matrix(0.659058,0.007909,-0.003000,0.249982,0,0);-ms-transform:matrix(0.659058,0.007909,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.659058,0.007909,-0.003000,0.249982,0,0);}
.m10_c01246{transform:matrix(0.781648,0.017978,-0.005748,0.249934,0,0);-ms-transform:matrix(0.781648,0.017978,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.781648,0.017978,-0.005748,0.249934,0,0);}
.m7_c01246{transform:matrix(0.825135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.825135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.825135,0.000000,0.000000,0.250000,0,0);}
.m3_c01246{transform:matrix(0.884755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.884755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.884755,0.000000,0.000000,0.250000,0,0);}
.m5_c01246{transform:matrix(1.128425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.128425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.128425,0.000000,0.000000,0.250000,0,0);}
.m4_c01246{transform:matrix(1.337355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.337355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.337355,0.000000,0.000000,0.250000,0,0);}
.m6_c01246{transform:matrix(1.708965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.708965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.708965,0.000000,0.000000,0.250000,0,0);}
.mb4_c01246{transform:matrix(4.809479,0.067333,-0.003500,0.249976,0,0);-ms-transform:matrix(4.809479,0.067333,-0.003500,0.249976,0,0);-webkit-transform:matrix(4.809479,0.067333,-0.003500,0.249976,0,0);}
.v0_c01246{vertical-align:0.000000px;}
.ls0_c01246{letter-spacing:0.000000px;}
.sc__c01246{text-shadow:none;}
.sc0_c01246{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__c01246{-webkit-text-stroke:0px transparent;}
.sc0_c01246{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01246{word-spacing:0.000000px;}
.fc0_c01246{color:transparent;}
.fs2_c01246{font-size:12.000000px;}
.fs11_c01246{font-size:18.001764px;}
.fs3_c01246{font-size:18.004760px;}
.fs1_c01246{font-size:24.000000px;}
.fs19_c01246{font-size:53.977234px;}
.fs10_c01246{font-size:66.006468px;}
.fs4_c01246{font-size:72.000000px;}
.fsa_c01246{font-size:72.007056px;}
.fs7_c01246{font-size:72.008100px;}
.fs0_c01246{font-size:72.015874px;}
.fs12_c01246{font-size:72.017422px;}
.fsb_c01246{font-size:78.000975px;}
.fs6_c01246{font-size:78.009983px;}
.fs15_c01246{font-size:78.020628px;}
.fs17_c01246{font-size:78.022461px;}
.fsc_c01246{font-size:84.001050px;}
.fsf_c01246{font-size:84.008232px;}
.fsd_c01246{font-size:84.009449px;}
.fs5_c01246{font-size:84.010751px;}
.fs14_c01246{font-size:84.018520px;}
.fse_c01246{font-size:90.017998px;}
.fs18_c01246{font-size:90.025916px;}
.fs8_c01246{font-size:96.010799px;}
.fs13_c01246{font-size:102.007344px;}
.fs9_c01246{font-size:102.009996px;}
.fs1a_c01246{font-size:144.000000px;}
.fs16_c01246{font-size:144.041466px;}
.y0_c01246{bottom:0.000000px;}
.y103_c01246{bottom:0.136500px;}
.y102_c01246{bottom:48.305988px;}
.y101_c01246{bottom:51.330390px;}
.y100_c01246{bottom:52.512978px;}
.yff_c01246{bottom:54.427569px;}
.yfe_c01246{bottom:55.885098px;}
.yfd_c01246{bottom:59.991516px;}
.yfc_c01246{bottom:62.609754px;}
.yfb_c01246{bottom:64.454169px;}
.yfa_c01246{bottom:68.298702px;}
.yf9_c01246{bottom:70.741500px;}
.yf8_c01246{bottom:87.525864px;}
.yf7_c01246{bottom:94.746348px;}
.yf6_c01246{bottom:96.111192px;}
.yf5_c01246{bottom:97.748688px;}
.yf4_c01246{bottom:98.668668px;}
.yf3_c01246{bottom:99.344976px;}
.yf2_c01246{bottom:121.312260px;}
.yf1_c01246{bottom:122.225700px;}
.yf0_c01246{bottom:123.376056px;}
.yef_c01246{bottom:125.710548px;}
.yee_c01246{bottom:126.553548px;}
.yed_c01246{bottom:127.395396px;}
.yec_c01246{bottom:130.295388px;}
.yeb_c01246{bottom:130.847796px;}
.yea_c01246{bottom:132.837048px;}
.ye9_c01246{bottom:135.685452px;}
.ye8_c01246{bottom:136.521576px;}
.ye7_c01246{bottom:137.782560px;}
.ye6_c01246{bottom:138.505428px;}
.ye5_c01246{bottom:153.658740px;}
.ye4_c01246{bottom:154.742448px;}
.ye3_c01246{bottom:155.578116px;}
.ye2_c01246{bottom:157.987992px;}
.ye1_c01246{bottom:158.486808px;}
.ye0_c01246{bottom:161.142852px;}
.ydf_c01246{bottom:162.477336px;}
.yde_c01246{bottom:164.304156px;}
.ydd_c01246{bottom:164.773020px;}
.ydc_c01246{bottom:165.973116px;}
.ydb_c01246{bottom:166.597500px;}
.yda_c01246{bottom:193.289756px;}
.yd9_c01246{bottom:195.425095px;}
.yd8_c01246{bottom:196.329843px;}
.yd7_c01246{bottom:198.378198px;}
.yd6_c01246{bottom:200.507346px;}
.yd5_c01246{bottom:201.381098px;}
.yd4_c01246{bottom:203.780619px;}
.yd3_c01246{bottom:206.142262px;}
.yd2_c01246{bottom:207.627291px;}
.yd1_c01246{bottom:229.437700px;}
.yd0_c01246{bottom:230.195700px;}
.ycf_c01246{bottom:231.743301px;}
.yce_c01246{bottom:232.474321px;}
.ycd_c01246{bottom:233.282139px;}
.ycc_c01246{bottom:236.581339px;}
.ycb_c01246{bottom:239.359038px;}
.yca_c01246{bottom:239.872467px;}
.yc9_c01246{bottom:242.604798px;}
.yc8_c01246{bottom:243.594499px;}
.yc7_c01246{bottom:244.354500px;}
.yc6_c01246{bottom:338.388632px;}
.yc5_c01246{bottom:339.075017px;}
.yc4_c01246{bottom:340.032428px;}
.yc3_c01246{bottom:340.897607px;}
.yc2_c01246{bottom:341.655591px;}
.yc1_c01246{bottom:342.573092px;}
.yc0_c01246{bottom:343.514469px;}
.ybf_c01246{bottom:345.602226px;}
.ybe_c01246{bottom:347.423336px;}
.ybd_c01246{bottom:347.903994px;}
.ybc_c01246{bottom:349.934484px;}
.ybb_c01246{bottom:350.832140px;}
.yba_c01246{bottom:351.543000px;}
.yb9_c01246{bottom:374.522736px;}
.yb8_c01246{bottom:374.918142px;}
.yb6_c01246{bottom:376.518576px;}
.yb7_c01246{bottom:376.923396px;}
.yb5_c01246{bottom:376.936500px;}
.yb4_c01246{bottom:410.169432px;}
.yb3_c01246{bottom:410.905959px;}
.yb2_c01246{bottom:412.870845px;}
.yb1_c01246{bottom:414.291858px;}
.yb0_c01246{bottom:415.035084px;}
.yaf_c01246{bottom:416.008221px;}
.yae_c01246{bottom:418.195692px;}
.yad_c01246{bottom:420.321816px;}
.yac_c01246{bottom:421.273866px;}
.yab_c01246{bottom:422.013000px;}
.yaa_c01246{bottom:449.136792px;}
.ya9_c01246{bottom:452.249781px;}
.ya8_c01246{bottom:453.021090px;}
.ya7_c01246{bottom:453.603000px;}
.ya6_c01246{bottom:478.156866px;}
.ya5_c01246{bottom:480.716553px;}
.ya4_c01246{bottom:483.042105px;}
.ya3_c01246{bottom:485.378070px;}
.ya2_c01246{bottom:485.841732px;}
.ya1_c01246{bottom:488.151057px;}
.ya0_c01246{bottom:490.877796px;}
.y9f_c01246{bottom:491.769516px;}
.y9e_c01246{bottom:492.480486px;}
.y9d_c01246{bottom:520.284627px;}
.y9c_c01246{bottom:521.535534px;}
.y9b_c01246{bottom:522.140586px;}
.y9a_c01246{bottom:523.520622px;}
.y99_c01246{bottom:524.116014px;}
.y98_c01246{bottom:524.613000px;}
.y97_c01246{bottom:550.921320px;}
.y96_c01246{bottom:552.487860px;}
.y95_c01246{bottom:553.373820px;}
.y94_c01246{bottom:553.821930px;}
.y93_c01246{bottom:554.650350px;}
.y92_c01246{bottom:556.430700px;}
.y91_c01246{bottom:558.234690px;}
.y90_c01246{bottom:560.216640px;}
.y8f_c01246{bottom:560.870220px;}
.y8e_c01246{bottom:563.051370px;}
.y8d_c01246{bottom:563.884950px;}
.y8c_c01246{bottom:564.573000px;}
.y8b_c01246{bottom:591.893325px;}
.y8a_c01246{bottom:592.470427px;}
.y89_c01246{bottom:593.793547px;}
.y88_c01246{bottom:594.334110px;}
.y87_c01246{bottom:595.038780px;}
.y86_c01246{bottom:595.844617px;}
.y85_c01246{bottom:597.511043px;}
.y84_c01246{bottom:622.987657px;}
.y83_c01246{bottom:624.320805px;}
.y82_c01246{bottom:625.313662px;}
.y81_c01246{bottom:627.298365px;}
.y80_c01246{bottom:628.440645px;}
.y7f_c01246{bottom:629.769135px;}
.y7e_c01246{bottom:630.283620px;}
.y7d_c01246{bottom:630.765570px;}
.y7c_c01246{bottom:631.741395px;}
.y7b_c01246{bottom:632.541382px;}
.y7a_c01246{bottom:632.883000px;}
.y79_c01246{bottom:698.010330px;}
.y78_c01246{bottom:698.564392px;}
.y77_c01246{bottom:698.835435px;}
.y76_c01246{bottom:699.101490px;}
.y75_c01246{bottom:699.632167px;}
.y74_c01246{bottom:699.766215px;}
.y73_c01246{bottom:700.549710px;}
.y72_c01246{bottom:700.820760px;}
.y71_c01246{bottom:701.154652px;}
.y70_c01246{bottom:702.078690px;}
.y6f_c01246{bottom:702.323580px;}
.y6e_c01246{bottom:702.539880px;}
.y6b_c01246{bottom:736.830000px;}
.y6c_c01246{bottom:736.992052px;}
.y6d_c01246{bottom:740.052165px;}
.y6a_c01246{bottom:764.269293px;}
.y69_c01246{bottom:765.815586px;}
.y68_c01246{bottom:766.431873px;}
.y67_c01246{bottom:767.966763px;}
.y66_c01246{bottom:768.598065px;}
.y65_c01246{bottom:770.148075px;}
.y64_c01246{bottom:771.682755px;}
.y63_c01246{bottom:772.449906px;}
.y62_c01246{bottom:773.026713px;}
.y61_c01246{bottom:773.821500px;}
.y60_c01246{bottom:802.131864px;}
.y5f_c01246{bottom:802.845120px;}
.y5e_c01246{bottom:804.767208px;}
.y5d_c01246{bottom:805.497744px;}
.y5c_c01246{bottom:807.070440px;}
.y5b_c01246{bottom:808.115688px;}
.y5a_c01246{bottom:808.655688px;}
.y59_c01246{bottom:810.543000px;}
.y58_c01246{bottom:835.981371px;}
.y57_c01246{bottom:836.596524px;}
.y56_c01246{bottom:837.996867px;}
.y55_c01246{bottom:838.928868px;}
.y54_c01246{bottom:839.388285px;}
.y53_c01246{bottom:839.842368px;}
.y52_c01246{bottom:841.399266px;}
.y51_c01246{bottom:841.708764px;}
.y50_c01246{bottom:842.771574px;}
.y4f_c01246{bottom:844.295670px;}
.y4e_c01246{bottom:844.886589px;}
.y4d_c01246{bottom:845.371500px;}
.y4c_c01246{bottom:870.536595px;}
.y4b_c01246{bottom:871.282267px;}
.y4a_c01246{bottom:878.301165px;}
.y49_c01246{bottom:878.978280px;}
.y48_c01246{bottom:879.464235px;}
.y47_c01246{bottom:879.933000px;}
.y46_c01246{bottom:905.955083px;}
.y45_c01246{bottom:907.096665px;}
.y44_c01246{bottom:907.974405px;}
.y43_c01246{bottom:909.396165px;}
.y42_c01246{bottom:910.108155px;}
.y41_c01246{bottom:911.500245px;}
.y40_c01246{bottom:912.934800px;}
.y3f_c01246{bottom:914.520285px;}
.y3e_c01246{bottom:915.039352px;}
.y3d_c01246{bottom:916.780665px;}
.y3c_c01246{bottom:917.456490px;}
.y3b_c01246{bottom:917.998477px;}
.y3a_c01246{bottom:942.005587px;}
.y39_c01246{bottom:944.941275px;}
.y38_c01246{bottom:946.731600px;}
.y37_c01246{bottom:948.412462px;}
.y36_c01246{bottom:949.230652px;}
.y35_c01246{bottom:950.563013px;}
.y34_c01246{bottom:951.040867px;}
.y33_c01246{bottom:952.203217px;}
.y32_c01246{bottom:952.812697px;}
.y31_c01246{bottom:953.668485px;}
.y30_c01246{bottom:953.910000px;}
.y2f_c01246{bottom:982.334532px;}
.y2e_c01246{bottom:982.828716px;}
.y2d_c01246{bottom:984.124356px;}
.y2c_c01246{bottom:985.303260px;}
.y2b_c01246{bottom:986.449968px;}
.y2a_c01246{bottom:986.945352px;}
.y29_c01246{bottom:987.923340px;}
.y27_c01246{bottom:1019.620752px;}
.y28_c01246{bottom:1019.621064px;}
.y26_c01246{bottom:1019.621208px;}
.y25_c01246{bottom:1047.582444px;}
.y24_c01246{bottom:1047.931548px;}
.y23_c01246{bottom:1049.340852px;}
.y22_c01246{bottom:1050.598092px;}
.y21_c01246{bottom:1051.116564px;}
.y20_c01246{bottom:1052.188140px;}
.y1f_c01246{bottom:1052.719788px;}
.y1e_c01246{bottom:1053.431868px;}
.y1d_c01246{bottom:1054.841052px;}
.y1c_c01246{bottom:1056.914244px;}
.y1b_c01246{bottom:1057.594428px;}
.y1a_c01246{bottom:1058.131500px;}
.y19_c01246{bottom:1090.260000px;}
.y18_c01246{bottom:1124.914685px;}
.y17_c01246{bottom:1125.218906px;}
.y16_c01246{bottom:1125.448607px;}
.y15_c01246{bottom:1125.720191px;}
.y14_c01246{bottom:1125.988704px;}
.y13_c01246{bottom:1126.187355px;}
.y12_c01246{bottom:1126.491576px;}
.y11_c01246{bottom:1127.000658px;}
.y10_c01246{bottom:1127.186337px;}
.yf_c01246{bottom:1127.547000px;}
.ye_c01246{bottom:1128.657000px;}
.yd_c01246{bottom:1128.958500px;}
.yc_c01246{bottom:1129.179000px;}
.yb_c01246{bottom:1129.434000px;}
.ya_c01246{bottom:1129.882500px;}
.y9_c01246{bottom:1130.070000px;}
.y8_c01246{bottom:1130.484000px;}
.y7_c01246{bottom:1130.835000px;}
.y4_c01246{bottom:1131.030000px;}
.y6_c01246{bottom:1132.236000px;}
.y5_c01246{bottom:1132.944000px;}
.y3_c01246{bottom:1141.768599px;}
.y2_c01246{bottom:1142.467395px;}
.y1_c01246{bottom:1144.536000px;}
.h4_c01246{height:12.000000px;}
.h13_c01246{height:18.001764px;}
.h5_c01246{height:18.004760px;}
.h3_c01246{height:24.000000px;}
.h1b_c01246{height:53.977234px;}
.h12_c01246{height:66.006468px;}
.h6_c01246{height:72.000000px;}
.hc_c01246{height:72.007056px;}
.h9_c01246{height:72.008100px;}
.h2_c01246{height:72.015874px;}
.h14_c01246{height:72.017422px;}
.hd_c01246{height:78.000975px;}
.h8_c01246{height:78.009983px;}
.h17_c01246{height:78.020628px;}
.h19_c01246{height:78.022461px;}
.he_c01246{height:84.001050px;}
.h11_c01246{height:84.008232px;}
.hf_c01246{height:84.009449px;}
.h7_c01246{height:84.010751px;}
.h16_c01246{height:84.018520px;}
.h10_c01246{height:90.017998px;}
.h1a_c01246{height:90.025916px;}
.ha_c01246{height:96.010799px;}
.h15_c01246{height:102.007344px;}
.hb_c01246{height:102.009996px;}
.h1c_c01246{height:144.000000px;}
.h18_c01246{height:144.041466px;}
.h1_c01246{height:1258.500000px;}
.h0_c01246{height:1258.740000px;}
.w1_c01246{width:899.250000px;}
.w0_c01246{width:899.370000px;}
.x0_c01246{left:0.000000px;}
.x33_c01246{left:87.202500px;}
.x4e_c01246{left:102.460500px;}
.x2c_c01246{left:103.554444px;}
.x14_c01246{left:105.030000px;}
.x49_c01246{left:115.396500px;}
.x56_c01246{left:123.324683px;}
.x5b_c01246{left:124.848000px;}
.x38_c01246{left:125.974170px;}
.x1f_c01246{left:127.048500px;}
.x5c_c01246{left:147.622500px;}
.x87_c01246{left:150.451500px;}
.x8d_c01246{left:152.132784px;}
.x6b_c01246{left:158.147757px;}
.x4f_c01246{left:159.231000px;}
.x20_c01246{left:160.615500px;}
.x15_c01246{left:161.730000px;}
.x29_c01246{left:166.054476px;}
.x2d_c01246{left:168.710976px;}
.x96_c01246{left:195.928653px;}
.x50_c01246{left:200.431500px;}
.x2e_c01246{left:201.735504px;}
.x16_c01246{left:203.310000px;}
.x88_c01246{left:219.991500px;}
.x6f_c01246{left:228.959517px;}
.x69_c01246{left:232.266000px;}
.x4a_c01246{left:233.353500px;}
.x2a_c01246{left:234.913092px;}
.x92_c01246{left:254.085504px;}
.x51_c01246{left:255.228000px;}
.x75_c01246{left:263.524500px;}
.x2b_c01246{left:266.776752px;}
.x6e_c01246{left:275.466000px;}
.x2f_c01246{left:278.187228px;}
.x81_c01246{left:286.941932px;}
.x89_c01246{left:296.109000px;}
.x70_c01246{left:297.553500px;}
.x40_c01246{left:298.897500px;}
.x63_c01246{left:309.453000px;}
.x17_c01246{left:311.040000px;}
.x7e_c01246{left:319.443000px;}
.x76_c01246{left:320.508000px;}
.x1_c01246{left:323.436000px;}
.x93_c01246{left:330.040440px;}
.x5e_c01246{left:331.064437px;}
.x5_c01246{left:332.560500px;}
.x64_c01246{left:342.132000px;}
.x39_c01246{left:343.250385px;}
.x8a_c01246{left:351.712500px;}
.x57_c01246{left:353.891873px;}
.x30_c01246{left:356.744976px;}
.x97_c01246{left:363.083331px;}
.x52_c01246{left:364.848000px;}
.x6_c01246{left:366.295500px;}
.x82_c01246{left:374.418393px;}
.x5f_c01246{left:378.485520px;}
.x43_c01246{left:387.042000px;}
.x71_c01246{left:396.984000px;}
.x34_c01246{left:399.159000px;}
.x77_c01246{left:407.227500px;}
.x44_c01246{left:409.149000px;}
.x4_c01246{left:411.480000px;}
.x8e_c01246{left:418.818468px;}
.x21_c01246{left:420.775500px;}
.x2_c01246{left:421.941000px;}
.x4b_c01246{left:430.725000px;}
.xf_c01246{left:431.920500px;}
.x7_c01246{left:433.024500px;}
.x8f_c01246{left:440.084460px;}
.x65_c01246{left:441.229500px;}
.x31_c01246{left:443.161368px;}
.x10_c01246{left:447.601500px;}
.x8_c01246{left:449.734500px;}
.x60_c01246{left:451.798837px;}
.x35_c01246{left:453.705000px;}
.x3_c01246{left:455.217000px;}
.x6c_c01246{left:462.506937px;}
.x22_c01246{left:465.280500px;}
.x9_c01246{left:469.435500px;}
.x94_c01246{left:473.023236px;}
.x72_c01246{left:475.000500px;}
.x32_c01246{left:476.110896px;}
.xa_c01246{left:478.381500px;}
.x8b_c01246{left:483.165000px;}
.x11_c01246{left:491.035500px;}
.x83_c01246{left:495.658250px;}
.x5d_c01246{left:497.157000px;}
.x23_c01246{left:498.508500px;}
.xb_c01246{left:499.719000px;}
.x78_c01246{left:506.644500px;}
.xc_c01246{left:511.875000px;}
.x45_c01246{left:520.356000px;}
.xd_c01246{left:522.366000px;}
.x61_c01246{left:529.604497px;}
.x3a_c01246{left:531.983550px;}
.x12_c01246{left:533.142000px;}
.xe_c01246{left:536.703000px;}
.x73_c01246{left:539.592000px;}
.x6a_c01246{left:541.435500px;}
.x18_c01246{left:543.780000px;}
.x13_c01246{left:546.369000px;}
.x79_c01246{left:551.472000px;}
.x46_c01246{left:552.790500px;}
.x98_c01246{left:560.669547px;}
.x62_c01246{left:563.576985px;}
.x24_c01246{left:565.482000px;}
.x6d_c01246{left:573.743538px;}
.x19_c01246{left:576.720000px;}
.x8c_c01246{left:583.576500px;}
.x47_c01246{left:585.606000px;}
.x7a_c01246{left:595.162500px;}
.x4c_c01246{left:596.514000px;}
.x25_c01246{left:597.886500px;}
.x99_c01246{left:603.495179px;}
.x7f_c01246{left:605.979000px;}
.x58_c01246{left:607.708830px;}
.x1a_c01246{left:609.120000px;}
.x90_c01246{left:616.423500px;}
.x3b_c01246{left:618.988245px;}
.x66_c01246{left:620.446500px;}
.x74_c01246{left:628.905000px;}
.x53_c01246{left:630.291000px;}
.x4d_c01246{left:641.092500px;}
.x84_c01246{left:650.405036px;}
.x48_c01246{left:652.177500px;}
.x9a_c01246{left:659.750367px;}
.x67_c01246{left:661.867500px;}
.x3c_c01246{left:663.453570px;}
.x7b_c01246{left:672.456000px;}
.x54_c01246{left:674.311500px;}
.x26_c01246{left:676.464000px;}
.x85_c01246{left:683.934465px;}
.x36_c01246{left:685.117500px;}
.x9b_c01246{left:694.497585px;}
.x59_c01246{left:696.278198px;}
.x91_c01246{left:706.189680px;}
.x1b_c01246{left:709.020000px;}
.x7c_c01246{left:718.047000px;}
.x68_c01246{left:728.571000px;}
.x5a_c01246{left:740.569635px;}
.x7d_c01246{left:750.732000px;}
.x3d_c01246{left:752.336243px;}
.x86_c01246{left:763.007186px;}
.x27_c01246{left:764.545500px;}
.x80_c01246{left:773.128500px;}
.x9c_c01246{left:783.361632px;}
.x55_c01246{left:784.761000px;}
.x28_c01246{left:786.364500px;}
.x1c_c01246{left:795.960000px;}
.x3e_c01246{left:807.151410px;}
.x41_c01246{left:811.965000px;}
.x95_c01246{left:816.838968px;}
.x42_c01246{left:861.676500px;}
.x9d_c01246{left:875.070000px;}
.x3f_c01246{left:878.455830px;}
.x37_c01246{left:880.830000px;}
.x1d_c01246{left:882.900000px;}
.x1e_c01246{left:898.290000px;}
@media print{
.v0_c01246{vertical-align:0.000000pt;}
.ls0_c01246{letter-spacing:0.000000pt;}
.ws0_c01246{word-spacing:0.000000pt;}
.fs2_c01246{font-size:10.666667pt;}
.fs11_c01246{font-size:16.001568pt;}
.fs3_c01246{font-size:16.004231pt;}
.fs1_c01246{font-size:21.333333pt;}
.fs19_c01246{font-size:47.979764pt;}
.fs10_c01246{font-size:58.672416pt;}
.fs4_c01246{font-size:64.000000pt;}
.fsa_c01246{font-size:64.006272pt;}
.fs7_c01246{font-size:64.007200pt;}
.fs0_c01246{font-size:64.014110pt;}
.fs12_c01246{font-size:64.015486pt;}
.fsb_c01246{font-size:69.334200pt;}
.fs6_c01246{font-size:69.342207pt;}
.fs15_c01246{font-size:69.351670pt;}
.fs17_c01246{font-size:69.353298pt;}
.fsc_c01246{font-size:74.667600pt;}
.fsf_c01246{font-size:74.673984pt;}
.fsd_c01246{font-size:74.675066pt;}
.fs5_c01246{font-size:74.676223pt;}
.fs14_c01246{font-size:74.683129pt;}
.fse_c01246{font-size:80.015998pt;}
.fs18_c01246{font-size:80.023037pt;}
.fs8_c01246{font-size:85.342933pt;}
.fs13_c01246{font-size:90.673194pt;}
.fs9_c01246{font-size:90.675552pt;}
.fs1a_c01246{font-size:128.000000pt;}
.fs16_c01246{font-size:128.036859pt;}
.y0_c01246{bottom:0.000000pt;}
.y103_c01246{bottom:0.121333pt;}
.y102_c01246{bottom:42.938656pt;}
.y101_c01246{bottom:45.627013pt;}
.y100_c01246{bottom:46.678203pt;}
.yff_c01246{bottom:48.380061pt;}
.yfe_c01246{bottom:49.675643pt;}
.yfd_c01246{bottom:53.325792pt;}
.yfc_c01246{bottom:55.653115pt;}
.yfb_c01246{bottom:57.292595pt;}
.yfa_c01246{bottom:60.709957pt;}
.yf9_c01246{bottom:62.881333pt;}
.yf8_c01246{bottom:77.800768pt;}
.yf7_c01246{bottom:84.218976pt;}
.yf6_c01246{bottom:85.432171pt;}
.yf5_c01246{bottom:86.887723pt;}
.yf4_c01246{bottom:87.705483pt;}
.yf3_c01246{bottom:88.306645pt;}
.yf2_c01246{bottom:107.833120pt;}
.yf1_c01246{bottom:108.645067pt;}
.yf0_c01246{bottom:109.667605pt;}
.yef_c01246{bottom:111.742709pt;}
.yee_c01246{bottom:112.492043pt;}
.yed_c01246{bottom:113.240352pt;}
.yec_c01246{bottom:115.818123pt;}
.yeb_c01246{bottom:116.309152pt;}
.yea_c01246{bottom:118.077376pt;}
.ye9_c01246{bottom:120.609291pt;}
.ye8_c01246{bottom:121.352512pt;}
.ye7_c01246{bottom:122.473387pt;}
.ye6_c01246{bottom:123.115936pt;}
.ye5_c01246{bottom:136.585547pt;}
.ye4_c01246{bottom:137.548843pt;}
.ye3_c01246{bottom:138.291659pt;}
.ye2_c01246{bottom:140.433771pt;}
.ye1_c01246{bottom:140.877163pt;}
.ye0_c01246{bottom:143.238091pt;}
.ydf_c01246{bottom:144.424299pt;}
.yde_c01246{bottom:146.048139pt;}
.ydd_c01246{bottom:146.464907pt;}
.ydc_c01246{bottom:147.531659pt;}
.ydb_c01246{bottom:148.086667pt;}
.yda_c01246{bottom:171.813116pt;}
.yd9_c01246{bottom:173.711196pt;}
.yd8_c01246{bottom:174.515416pt;}
.yd7_c01246{bottom:176.336176pt;}
.yd6_c01246{bottom:178.228752pt;}
.yd5_c01246{bottom:179.005420pt;}
.yd4_c01246{bottom:181.138328pt;}
.yd3_c01246{bottom:183.237567pt;}
.yd2_c01246{bottom:184.557592pt;}
.yd1_c01246{bottom:203.944623pt;}
.yd0_c01246{bottom:204.618400pt;}
.ycf_c01246{bottom:205.994045pt;}
.yce_c01246{bottom:206.643841pt;}
.ycd_c01246{bottom:207.361901pt;}
.ycc_c01246{bottom:210.294524pt;}
.ycb_c01246{bottom:212.763589pt;}
.yca_c01246{bottom:213.219971pt;}
.yc9_c01246{bottom:215.648709pt;}
.yc8_c01246{bottom:216.528444pt;}
.yc7_c01246{bottom:217.204000pt;}
.yc6_c01246{bottom:300.789895pt;}
.yc5_c01246{bottom:301.400015pt;}
.yc4_c01246{bottom:302.251047pt;}
.yc3_c01246{bottom:303.020095pt;}
.yc2_c01246{bottom:303.693859pt;}
.yc1_c01246{bottom:304.509415pt;}
.yc0_c01246{bottom:305.346195pt;}
.ybf_c01246{bottom:307.201979pt;}
.ybe_c01246{bottom:308.820743pt;}
.ybd_c01246{bottom:309.247995pt;}
.ybc_c01246{bottom:311.052875pt;}
.ybb_c01246{bottom:311.850791pt;}
.yba_c01246{bottom:312.482667pt;}
.yb9_c01246{bottom:332.909099pt;}
.yb8_c01246{bottom:333.260571pt;}
.yb6_c01246{bottom:334.683179pt;}
.yb7_c01246{bottom:335.043019pt;}
.yb5_c01246{bottom:335.054667pt;}
.yb4_c01246{bottom:364.595051pt;}
.yb3_c01246{bottom:365.249741pt;}
.yb2_c01246{bottom:366.996307pt;}
.yb1_c01246{bottom:368.259429pt;}
.yb0_c01246{bottom:368.920075pt;}
.yaf_c01246{bottom:369.785085pt;}
.yae_c01246{bottom:371.729504pt;}
.yad_c01246{bottom:373.619392pt;}
.yac_c01246{bottom:374.465659pt;}
.yab_c01246{bottom:375.122667pt;}
.yaa_c01246{bottom:399.232704pt;}
.ya9_c01246{bottom:401.999805pt;}
.ya8_c01246{bottom:402.685413pt;}
.ya7_c01246{bottom:403.202667pt;}
.ya6_c01246{bottom:425.028325pt;}
.ya5_c01246{bottom:427.303603pt;}
.ya4_c01246{bottom:429.370760pt;}
.ya3_c01246{bottom:431.447173pt;}
.ya2_c01246{bottom:431.859317pt;}
.ya1_c01246{bottom:433.912051pt;}
.ya0_c01246{bottom:436.335819pt;}
.y9f_c01246{bottom:437.128459pt;}
.y9e_c01246{bottom:437.760432pt;}
.y9d_c01246{bottom:462.475224pt;}
.y9c_c01246{bottom:463.587141pt;}
.y9b_c01246{bottom:464.124965pt;}
.y9a_c01246{bottom:465.351664pt;}
.y99_c01246{bottom:465.880901pt;}
.y98_c01246{bottom:466.322667pt;}
.y97_c01246{bottom:489.707840pt;}
.y96_c01246{bottom:491.100320pt;}
.y95_c01246{bottom:491.887840pt;}
.y94_c01246{bottom:492.286160pt;}
.y93_c01246{bottom:493.022533pt;}
.y92_c01246{bottom:494.605067pt;}
.y91_c01246{bottom:496.208613pt;}
.y90_c01246{bottom:497.970347pt;}
.y8f_c01246{bottom:498.551307pt;}
.y8e_c01246{bottom:500.490107pt;}
.y8d_c01246{bottom:501.231067pt;}
.y8c_c01246{bottom:501.842667pt;}
.y8b_c01246{bottom:526.127400pt;}
.y8a_c01246{bottom:526.640380pt;}
.y89_c01246{bottom:527.816487pt;}
.y88_c01246{bottom:528.296987pt;}
.y87_c01246{bottom:528.923360pt;}
.y86_c01246{bottom:529.639660pt;}
.y85_c01246{bottom:531.120927pt;}
.y84_c01246{bottom:553.766807pt;}
.y83_c01246{bottom:554.951827pt;}
.y82_c01246{bottom:555.834367pt;}
.y81_c01246{bottom:557.598547pt;}
.y80_c01246{bottom:558.613907pt;}
.y7f_c01246{bottom:559.794787pt;}
.y7e_c01246{bottom:560.252107pt;}
.y7d_c01246{bottom:560.680507pt;}
.y7c_c01246{bottom:561.547907pt;}
.y7b_c01246{bottom:562.259007pt;}
.y7a_c01246{bottom:562.562667pt;}
.y79_c01246{bottom:620.453627pt;}
.y78_c01246{bottom:620.946127pt;}
.y77_c01246{bottom:621.187053pt;}
.y76_c01246{bottom:621.423547pt;}
.y75_c01246{bottom:621.895260pt;}
.y74_c01246{bottom:622.014413pt;}
.y73_c01246{bottom:622.710853pt;}
.y72_c01246{bottom:622.951787pt;}
.y71_c01246{bottom:623.248580pt;}
.y70_c01246{bottom:624.069947pt;}
.y6f_c01246{bottom:624.287627pt;}
.y6e_c01246{bottom:624.479893pt;}
.y6b_c01246{bottom:654.960000pt;}
.y6c_c01246{bottom:655.104047pt;}
.y6d_c01246{bottom:657.824147pt;}
.y6a_c01246{bottom:679.350483pt;}
.y69_c01246{bottom:680.724965pt;}
.y68_c01246{bottom:681.272776pt;}
.y67_c01246{bottom:682.637123pt;}
.y66_c01246{bottom:683.198280pt;}
.y65_c01246{bottom:684.576067pt;}
.y64_c01246{bottom:685.940227pt;}
.y63_c01246{bottom:686.622139pt;}
.y62_c01246{bottom:687.134856pt;}
.y61_c01246{bottom:687.841333pt;}
.y60_c01246{bottom:713.006101pt;}
.y5f_c01246{bottom:713.640107pt;}
.y5e_c01246{bottom:715.348629pt;}
.y5d_c01246{bottom:715.997995pt;}
.y5c_c01246{bottom:717.395947pt;}
.y5b_c01246{bottom:718.325056pt;}
.y5a_c01246{bottom:718.805056pt;}
.y59_c01246{bottom:720.482667pt;}
.y58_c01246{bottom:743.094552pt;}
.y57_c01246{bottom:743.641355pt;}
.y56_c01246{bottom:744.886104pt;}
.y55_c01246{bottom:745.714549pt;}
.y54_c01246{bottom:746.122920pt;}
.y53_c01246{bottom:746.526549pt;}
.y52_c01246{bottom:747.910459pt;}
.y51_c01246{bottom:748.185568pt;}
.y50_c01246{bottom:749.130288pt;}
.y4f_c01246{bottom:750.485040pt;}
.y4e_c01246{bottom:751.010301pt;}
.y4d_c01246{bottom:751.441333pt;}
.y4c_c01246{bottom:773.810307pt;}
.y4b_c01246{bottom:774.473127pt;}
.y4a_c01246{bottom:780.712147pt;}
.y49_c01246{bottom:781.314027pt;}
.y48_c01246{bottom:781.745987pt;}
.y47_c01246{bottom:782.162667pt;}
.y46_c01246{bottom:805.293407pt;}
.y45_c01246{bottom:806.308147pt;}
.y44_c01246{bottom:807.088360pt;}
.y43_c01246{bottom:808.352147pt;}
.y42_c01246{bottom:808.985027pt;}
.y41_c01246{bottom:810.222440pt;}
.y40_c01246{bottom:811.497600pt;}
.y3f_c01246{bottom:812.906920pt;}
.y3e_c01246{bottom:813.368313pt;}
.y3d_c01246{bottom:814.916147pt;}
.y3c_c01246{bottom:815.516880pt;}
.y3b_c01246{bottom:815.998647pt;}
.y3a_c01246{bottom:837.338300pt;}
.y39_c01246{bottom:839.947800pt;}
.y38_c01246{bottom:841.539200pt;}
.y37_c01246{bottom:843.033300pt;}
.y36_c01246{bottom:843.760580pt;}
.y35_c01246{bottom:844.944900pt;}
.y34_c01246{bottom:845.369660pt;}
.y33_c01246{bottom:846.402860pt;}
.y32_c01246{bottom:846.944620pt;}
.y31_c01246{bottom:847.705320pt;}
.y30_c01246{bottom:847.920000pt;}
.y2f_c01246{bottom:873.186251pt;}
.y2e_c01246{bottom:873.625525pt;}
.y2d_c01246{bottom:874.777205pt;}
.y2c_c01246{bottom:875.825120pt;}
.y2b_c01246{bottom:876.844416pt;}
.y2a_c01246{bottom:877.284757pt;}
.y29_c01246{bottom:878.154080pt;}
.y27_c01246{bottom:906.329557pt;}
.y28_c01246{bottom:906.329835pt;}
.y26_c01246{bottom:906.329963pt;}
.y25_c01246{bottom:931.184395pt;}
.y24_c01246{bottom:931.494709pt;}
.y23_c01246{bottom:932.747424pt;}
.y22_c01246{bottom:933.864971pt;}
.y21_c01246{bottom:934.325835pt;}
.y20_c01246{bottom:935.278347pt;}
.y1f_c01246{bottom:935.750923pt;}
.y1e_c01246{bottom:936.383883pt;}
.y1d_c01246{bottom:937.636491pt;}
.y1c_c01246{bottom:939.479328pt;}
.y1b_c01246{bottom:940.083936pt;}
.y1a_c01246{bottom:940.561333pt;}
.y19_c01246{bottom:969.120000pt;}
.y18_c01246{bottom:999.924164pt;}
.y17_c01246{bottom:1000.194583pt;}
.y16_c01246{bottom:1000.398761pt;}
.y15_c01246{bottom:1000.640169pt;}
.y14_c01246{bottom:1000.878848pt;}
.y13_c01246{bottom:1001.055427pt;}
.y12_c01246{bottom:1001.325845pt;}
.y11_c01246{bottom:1001.778363pt;}
.y10_c01246{bottom:1001.943411pt;}
.yf_c01246{bottom:1002.264000pt;}
.ye_c01246{bottom:1003.250667pt;}
.yd_c01246{bottom:1003.518667pt;}
.yc_c01246{bottom:1003.714667pt;}
.yb_c01246{bottom:1003.941333pt;}
.ya_c01246{bottom:1004.340000pt;}
.y9_c01246{bottom:1004.506667pt;}
.y8_c01246{bottom:1004.874667pt;}
.y7_c01246{bottom:1005.186667pt;}
.y4_c01246{bottom:1005.360000pt;}
.y6_c01246{bottom:1006.432000pt;}
.y5_c01246{bottom:1007.061333pt;}
.y3_c01246{bottom:1014.905421pt;}
.y2_c01246{bottom:1015.526573pt;}
.y1_c01246{bottom:1017.365333pt;}
.h4_c01246{height:10.666667pt;}
.h13_c01246{height:16.001568pt;}
.h5_c01246{height:16.004231pt;}
.h3_c01246{height:21.333333pt;}
.h1b_c01246{height:47.979764pt;}
.h12_c01246{height:58.672416pt;}
.h6_c01246{height:64.000000pt;}
.hc_c01246{height:64.006272pt;}
.h9_c01246{height:64.007200pt;}
.h2_c01246{height:64.014110pt;}
.h14_c01246{height:64.015486pt;}
.hd_c01246{height:69.334200pt;}
.h8_c01246{height:69.342207pt;}
.h17_c01246{height:69.351670pt;}
.h19_c01246{height:69.353298pt;}
.he_c01246{height:74.667600pt;}
.h11_c01246{height:74.673984pt;}
.hf_c01246{height:74.675066pt;}
.h7_c01246{height:74.676223pt;}
.h16_c01246{height:74.683129pt;}
.h10_c01246{height:80.015998pt;}
.h1a_c01246{height:80.023037pt;}
.ha_c01246{height:85.342933pt;}
.h15_c01246{height:90.673194pt;}
.hb_c01246{height:90.675552pt;}
.h1c_c01246{height:128.000000pt;}
.h18_c01246{height:128.036859pt;}
.h1_c01246{height:1118.666667pt;}
.h0_c01246{height:1118.880000pt;}
.w1_c01246{width:799.333333pt;}
.w0_c01246{width:799.440000pt;}
.x0_c01246{left:0.000000pt;}
.x33_c01246{left:77.513333pt;}
.x4e_c01246{left:91.076000pt;}
.x2c_c01246{left:92.048395pt;}
.x14_c01246{left:93.360000pt;}
.x49_c01246{left:102.574667pt;}
.x56_c01246{left:109.621940pt;}
.x5b_c01246{left:110.976000pt;}
.x38_c01246{left:111.977040pt;}
.x1f_c01246{left:112.932000pt;}
.x5c_c01246{left:131.220000pt;}
.x87_c01246{left:133.734667pt;}
.x8d_c01246{left:135.229141pt;}
.x6b_c01246{left:140.575784pt;}
.x4f_c01246{left:141.538667pt;}
.x20_c01246{left:142.769333pt;}
.x15_c01246{left:143.760000pt;}
.x29_c01246{left:147.603979pt;}
.x2d_c01246{left:149.965312pt;}
.x96_c01246{left:174.158803pt;}
.x50_c01246{left:178.161333pt;}
.x2e_c01246{left:179.320448pt;}
.x16_c01246{left:180.720000pt;}
.x88_c01246{left:195.548000pt;}
.x6f_c01246{left:203.519571pt;}
.x69_c01246{left:206.458667pt;}
.x4a_c01246{left:207.425333pt;}
.x2a_c01246{left:208.811637pt;}
.x92_c01246{left:225.853781pt;}
.x51_c01246{left:226.869333pt;}
.x75_c01246{left:234.244000pt;}
.x2b_c01246{left:237.134891pt;}
.x6e_c01246{left:244.858667pt;}
.x2f_c01246{left:247.277536pt;}
.x81_c01246{left:255.059495pt;}
.x89_c01246{left:263.208000pt;}
.x70_c01246{left:264.492000pt;}
.x40_c01246{left:265.686667pt;}
.x63_c01246{left:275.069333pt;}
.x17_c01246{left:276.480000pt;}
.x7e_c01246{left:283.949333pt;}
.x76_c01246{left:284.896000pt;}
.x1_c01246{left:287.498667pt;}
.x93_c01246{left:293.369280pt;}
.x5e_c01246{left:294.279500pt;}
.x5_c01246{left:295.609333pt;}
.x64_c01246{left:304.117333pt;}
.x39_c01246{left:305.111453pt;}
.x8a_c01246{left:312.633333pt;}
.x57_c01246{left:314.570553pt;}
.x30_c01246{left:317.106645pt;}
.x97_c01246{left:322.740739pt;}
.x52_c01246{left:324.309333pt;}
.x6_c01246{left:325.596000pt;}
.x82_c01246{left:332.816349pt;}
.x5f_c01246{left:336.431573pt;}
.x43_c01246{left:344.037333pt;}
.x71_c01246{left:352.874667pt;}
.x34_c01246{left:354.808000pt;}
.x77_c01246{left:361.980000pt;}
.x44_c01246{left:363.688000pt;}
.x4_c01246{left:365.760000pt;}
.x8e_c01246{left:372.283083pt;}
.x21_c01246{left:374.022667pt;}
.x2_c01246{left:375.058667pt;}
.x4b_c01246{left:382.866667pt;}
.xf_c01246{left:383.929333pt;}
.x7_c01246{left:384.910667pt;}
.x8f_c01246{left:391.186187pt;}
.x65_c01246{left:392.204000pt;}
.x31_c01246{left:393.921216pt;}
.x10_c01246{left:397.868000pt;}
.x8_c01246{left:399.764000pt;}
.x60_c01246{left:401.598967pt;}
.x35_c01246{left:403.293333pt;}
.x3_c01246{left:404.637333pt;}
.x6c_c01246{left:411.117277pt;}
.x22_c01246{left:413.582667pt;}
.x9_c01246{left:417.276000pt;}
.x94_c01246{left:420.465099pt;}
.x72_c01246{left:422.222667pt;}
.x32_c01246{left:423.209685pt;}
.xa_c01246{left:425.228000pt;}
.x8b_c01246{left:429.480000pt;}
.x11_c01246{left:436.476000pt;}
.x83_c01246{left:440.585111pt;}
.x5d_c01246{left:441.917333pt;}
.x23_c01246{left:443.118667pt;}
.xb_c01246{left:444.194667pt;}
.x78_c01246{left:450.350667pt;}
.xc_c01246{left:455.000000pt;}
.x45_c01246{left:462.538667pt;}
.xd_c01246{left:464.325333pt;}
.x61_c01246{left:470.759553pt;}
.x3a_c01246{left:472.874267pt;}
.x12_c01246{left:473.904000pt;}
.xe_c01246{left:477.069333pt;}
.x73_c01246{left:479.637333pt;}
.x6a_c01246{left:481.276000pt;}
.x18_c01246{left:483.360000pt;}
.x13_c01246{left:485.661333pt;}
.x79_c01246{left:490.197333pt;}
.x46_c01246{left:491.369333pt;}
.x98_c01246{left:498.372931pt;}
.x62_c01246{left:500.957320pt;}
.x24_c01246{left:502.650667pt;}
.x6d_c01246{left:509.994256pt;}
.x19_c01246{left:512.640000pt;}
.x8c_c01246{left:518.734667pt;}
.x47_c01246{left:520.538667pt;}
.x7a_c01246{left:529.033333pt;}
.x4c_c01246{left:530.234667pt;}
.x25_c01246{left:531.454667pt;}
.x99_c01246{left:536.440159pt;}
.x7f_c01246{left:538.648000pt;}
.x58_c01246{left:540.185627pt;}
.x1a_c01246{left:541.440000pt;}
.x90_c01246{left:547.932000pt;}
.x3b_c01246{left:550.211773pt;}
.x66_c01246{left:551.508000pt;}
.x74_c01246{left:559.026667pt;}
.x53_c01246{left:560.258667pt;}
.x4d_c01246{left:569.860000pt;}
.x84_c01246{left:578.137809pt;}
.x48_c01246{left:579.713333pt;}
.x9a_c01246{left:586.444771pt;}
.x67_c01246{left:588.326667pt;}
.x3c_c01246{left:589.736507pt;}
.x7b_c01246{left:597.738667pt;}
.x54_c01246{left:599.388000pt;}
.x26_c01246{left:601.301333pt;}
.x85_c01246{left:607.941747pt;}
.x36_c01246{left:608.993333pt;}
.x9b_c01246{left:617.331187pt;}
.x59_c01246{left:618.913953pt;}
.x91_c01246{left:627.724160pt;}
.x1b_c01246{left:630.240000pt;}
.x7c_c01246{left:638.264000pt;}
.x68_c01246{left:647.618667pt;}
.x5a_c01246{left:658.284120pt;}
.x7d_c01246{left:667.317333pt;}
.x3d_c01246{left:668.743327pt;}
.x86_c01246{left:678.228609pt;}
.x27_c01246{left:679.596000pt;}
.x80_c01246{left:687.225333pt;}
.x9c_c01246{left:696.321451pt;}
.x55_c01246{left:697.565333pt;}
.x28_c01246{left:698.990667pt;}
.x1c_c01246{left:707.520000pt;}
.x3e_c01246{left:717.467920pt;}
.x41_c01246{left:721.746667pt;}
.x95_c01246{left:726.079083pt;}
.x42_c01246{left:765.934667pt;}
.x9d_c01246{left:777.840000pt;}
.x3f_c01246{left:780.849627pt;}
.x37_c01246{left:782.960000pt;}
.x1d_c01246{left:784.800000pt;}
.x1e_c01246{left:798.480000pt;}
}





/* 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_c01247 {
    display:none;
  }
  .loading-indicator_c01247.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01247 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_c01247 { 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_c01247" -> "#page-container .classname_c01247")
 */
.pf_c01247 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01247 { /* 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_c01247.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01247 { /* 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_c01247 { /* 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_c01247 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01247 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01247 {overflow:visible;}
  }
}
.c_c01247 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01247 { /* 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_c01247:after { /* webkit #35443 */
  content: '';
}
.t_c01247:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01247 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 */
}
.__c01247 { /* 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_c01247 { /* info for Javascript */
  display:none;
}
.l_c01247 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01247 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01247 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01247: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_c01247 {
    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_c01247.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01247.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_c01247 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01247{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01247;src:url('chunks/assets/font_ffdda91d43f5751d6c5cd797.woff2')format("woff");}.ff1_c01247{font-family:ff1_c01247;line-height:1.000000;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;}
.m7_c01247{transform:matrix(0.195575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195575,0.000000,0.000000,0.250000,0,0);}
.m2_c01247{transform:matrix(0.232105,-0.003017,0.003250,0.249979,0,0);-ms-transform:matrix(0.232105,-0.003017,0.003250,0.249979,0,0);-webkit-transform:matrix(0.232105,-0.003017,0.003250,0.249979,0,0);}
.m6_c01247{transform:matrix(0.236100,-0.003069,0.003250,0.249979,0,0);-ms-transform:matrix(0.236100,-0.003069,0.003250,0.249979,0,0);-webkit-transform:matrix(0.236100,-0.003069,0.003250,0.249979,0,0);}
.m8_c01247{transform:matrix(0.237170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237170,0.000000,0.000000,0.250000,0,0);}
.m5_c01247{transform:matrix(0.238565,-0.003101,0.003250,0.249979,0,0);-ms-transform:matrix(0.238565,-0.003101,0.003250,0.249979,0,0);-webkit-transform:matrix(0.238565,-0.003101,0.003250,0.249979,0,0);}
.m4_c01247{transform:matrix(0.291670,-0.003792,0.003250,0.249979,0,0);-ms-transform:matrix(0.291670,-0.003792,0.003250,0.249979,0,0);-webkit-transform:matrix(0.291670,-0.003792,0.003250,0.249979,0,0);}
.m1_c01247{transform:matrix(0.342731,-0.004456,0.003250,0.249979,0,0);-ms-transform:matrix(0.342731,-0.004456,0.003250,0.249979,0,0);-webkit-transform:matrix(0.342731,-0.004456,0.003250,0.249979,0,0);}
.m0_c01247{transform:matrix(0.360625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360625,0.000000,0.000000,0.250000,0,0);}
.m3_c01247{transform:matrix(0.847268,-0.011014,0.003250,0.249979,0,0);-ms-transform:matrix(0.847268,-0.011014,0.003250,0.249979,0,0);-webkit-transform:matrix(0.847268,-0.011014,0.003250,0.249979,0,0);}
.v0_c01247{vertical-align:0.000000px;}
.ls0_c01247{letter-spacing:0.000000px;}
.sc__c01247{text-shadow:none;}
.sc0_c01247{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__c01247{-webkit-text-stroke:0px transparent;}
.sc0_c01247{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01247{word-spacing:0.000000px;}
.fc0_c01247{color:transparent;}
.fs0_c01247{font-size:18.000000px;}
.fs1_c01247{font-size:78.006591px;}
.y0_c01247{bottom:0.000000px;}
.y8_c01247{bottom:892.488000px;}
.y2_c01247{bottom:905.043000px;}
.y3_c01247{bottom:905.636697px;}
.y4_c01247{bottom:906.700324px;}
.y5_c01247{bottom:908.057388px;}
.y6_c01247{bottom:908.471802px;}
.y7_c01247{bottom:909.626670px;}
.y1_c01247{bottom:932.176500px;}
.h2_c01247{height:18.000000px;}
.h3_c01247{height:78.006591px;}
.h1_c01247{height:1258.500000px;}
.h0_c01247{height:1258.740000px;}
.w1_c01247{width:899.250000px;}
.w0_c01247{width:899.370000px;}
.x0_c01247{left:0.000000px;}
.x2_c01247{left:316.149000px;}
.x3_c01247{left:361.818000px;}
.x4_c01247{left:443.635500px;}
.x8_c01247{left:517.050000px;}
.x9_c01247{left:532.980000px;}
.x5_c01247{left:548.025000px;}
.x6_c01247{left:579.903000px;}
.x1_c01247{left:616.410000px;}
.x7_c01247{left:668.739000px;}
@media print{
.v0_c01247{vertical-align:0.000000pt;}
.ls0_c01247{letter-spacing:0.000000pt;}
.ws0_c01247{word-spacing:0.000000pt;}
.fs0_c01247{font-size:16.000000pt;}
.fs1_c01247{font-size:69.339192pt;}
.y0_c01247{bottom:0.000000pt;}
.y8_c01247{bottom:793.322667pt;}
.y2_c01247{bottom:804.482667pt;}
.y3_c01247{bottom:805.010397pt;}
.y4_c01247{bottom:805.955844pt;}
.y5_c01247{bottom:807.162123pt;}
.y6_c01247{bottom:807.530491pt;}
.y7_c01247{bottom:808.557040pt;}
.y1_c01247{bottom:828.601333pt;}
.h2_c01247{height:16.000000pt;}
.h3_c01247{height:69.339192pt;}
.h1_c01247{height:1118.666667pt;}
.h0_c01247{height:1118.880000pt;}
.w1_c01247{width:799.333333pt;}
.w0_c01247{width:799.440000pt;}
.x0_c01247{left:0.000000pt;}
.x2_c01247{left:281.021333pt;}
.x3_c01247{left:321.616000pt;}
.x4_c01247{left:394.342667pt;}
.x8_c01247{left:459.600000pt;}
.x9_c01247{left:473.760000pt;}
.x5_c01247{left:487.133333pt;}
.x6_c01247{left:515.469333pt;}
.x1_c01247{left:547.920000pt;}
.x7_c01247{left:594.434667pt;}
}





/* 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_c01248 {
    display:none;
  }
  .loading-indicator_c01248.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01248 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_c01248 { 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_c01248" -> "#page-container .classname_c01248")
 */
.pf_c01248 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01248 { /* 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_c01248.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01248 { /* 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_c01248 { /* 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_c01248 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01248 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01248 {overflow:visible;}
  }
}
.c_c01248 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01248 { /* 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_c01248:after { /* webkit #35443 */
  content: '';
}
.t_c01248:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01248 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 */
}
.__c01248 { /* 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_c01248 { /* info for Javascript */
  display:none;
}
.l_c01248 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01248 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01248 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01248: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_c01248 {
    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_c01248.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01248.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_c01248 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01248{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01248;src:url('chunks/assets/font_53ec0c54e60da7c2d414b553.woff2')format("woff");}.ff1_c01248{font-family:ff1_c01248;line-height:1.000000;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;}
.mcf_c01248{transform:matrix(0.009090,0.000082,-0.002250,0.249990,0,0);-ms-transform:matrix(0.009090,0.000082,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.009090,0.000082,-0.002250,0.249990,0,0);}
.mc8_c01248{transform:matrix(0.013454,0.000121,-0.002250,0.249990,0,0);-ms-transform:matrix(0.013454,0.000121,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.013454,0.000121,-0.002250,0.249990,0,0);}
.m6e_c01248{transform:matrix(0.015908,0.000223,-0.003500,0.249976,0,0);-ms-transform:matrix(0.015908,0.000223,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.015908,0.000223,-0.003500,0.249976,0,0);}
.ma4_c01248{transform:matrix(0.026511,0.000451,-0.004249,0.249964,0,0);-ms-transform:matrix(0.026511,0.000451,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.026511,0.000451,-0.004249,0.249964,0,0);}
.m5b_c01248{transform:matrix(0.031817,0.000445,-0.003500,0.249976,0,0);-ms-transform:matrix(0.031817,0.000445,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.031817,0.000445,-0.003500,0.249976,0,0);}
.ma6_c01248{transform:matrix(0.095638,0.001148,-0.003000,0.249982,0,0);-ms-transform:matrix(0.095638,0.001148,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.095638,0.001148,-0.003000,0.249982,0,0);}
.m93_c01248{transform:matrix(0.097605,0.001366,-0.003500,0.249976,0,0);-ms-transform:matrix(0.097605,0.001366,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.097605,0.001366,-0.003500,0.249976,0,0);}
.maf_c01248{transform:matrix(0.113362,0.001700,-0.003750,0.249972,0,0);-ms-transform:matrix(0.113362,0.001700,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.113362,0.001700,-0.003750,0.249972,0,0);}
.mbf_c01248{transform:matrix(0.115060,0.001036,-0.002250,0.249990,0,0);-ms-transform:matrix(0.115060,0.001036,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.115060,0.001036,-0.002250,0.249990,0,0);}
.ma7_c01248{transform:matrix(0.115567,0.001387,-0.003000,0.249982,0,0);-ms-transform:matrix(0.115567,0.001387,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.115567,0.001387,-0.003000,0.249982,0,0);}
.m94_c01248{transform:matrix(0.120653,0.001689,-0.003500,0.249976,0,0);-ms-transform:matrix(0.120653,0.001689,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.120653,0.001689,-0.003500,0.249976,0,0);}
.m5c_c01248{transform:matrix(0.126228,0.001767,-0.003500,0.249976,0,0);-ms-transform:matrix(0.126228,0.001767,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.126228,0.001767,-0.003500,0.249976,0,0);}
.ma8_c01248{transform:matrix(0.126301,0.001516,-0.003000,0.249982,0,0);-ms-transform:matrix(0.126301,0.001516,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.126301,0.001516,-0.003000,0.249982,0,0);}
.m2e_c01248{transform:matrix(0.140946,0.001973,-0.003500,0.249976,0,0);-ms-transform:matrix(0.140946,0.001973,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.140946,0.001973,-0.003500,0.249976,0,0);}
.m99_c01248{transform:matrix(0.141811,0.001985,-0.003500,0.249976,0,0);-ms-transform:matrix(0.141811,0.001985,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.141811,0.001985,-0.003500,0.249976,0,0);}
.m95_c01248{transform:matrix(0.141911,0.001987,-0.003500,0.249976,0,0);-ms-transform:matrix(0.141911,0.001987,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.141911,0.001987,-0.003500,0.249976,0,0);}
.m88_c01248{transform:matrix(0.142252,0.002561,-0.004499,0.249960,0,0);-ms-transform:matrix(0.142252,0.002561,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.142252,0.002561,-0.004499,0.249960,0,0);}
.ma9_c01248{transform:matrix(0.142525,0.001710,-0.003000,0.249982,0,0);-ms-transform:matrix(0.142525,0.001710,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.142525,0.001710,-0.003000,0.249982,0,0);}
.mae_c01248{transform:matrix(0.146524,0.001758,-0.003000,0.249982,0,0);-ms-transform:matrix(0.146524,0.001758,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.146524,0.001758,-0.003000,0.249982,0,0);}
.maa_c01248{transform:matrix(0.151074,0.001813,-0.003000,0.249982,0,0);-ms-transform:matrix(0.151074,0.001813,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.151074,0.001813,-0.003000,0.249982,0,0);}
.m98_c01248{transform:matrix(0.155745,0.002180,-0.003500,0.249976,0,0);-ms-transform:matrix(0.155745,0.002180,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.155745,0.002180,-0.003500,0.249976,0,0);}
.mac_c01248{transform:matrix(0.160498,0.001926,-0.003000,0.249982,0,0);-ms-transform:matrix(0.160498,0.001926,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.160498,0.001926,-0.003000,0.249982,0,0);}
.m8f_c01248{transform:matrix(0.162824,0.002931,-0.004499,0.249960,0,0);-ms-transform:matrix(0.162824,0.002931,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.162824,0.002931,-0.004499,0.249960,0,0);}
.m48_c01248{transform:matrix(0.163314,0.002613,-0.003999,0.249968,0,0);-ms-transform:matrix(0.163314,0.002613,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.163314,0.002613,-0.003999,0.249968,0,0);}
.m92_c01248{transform:matrix(0.167013,0.003006,-0.004499,0.249960,0,0);-ms-transform:matrix(0.167013,0.003006,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.167013,0.003006,-0.004499,0.249960,0,0);}
.m97_c01248{transform:matrix(0.168683,0.002362,-0.003500,0.249976,0,0);-ms-transform:matrix(0.168683,0.002362,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.168683,0.002362,-0.003500,0.249976,0,0);}
.mb8_c01248{transform:matrix(0.172755,0.001900,-0.002750,0.249985,0,0);-ms-transform:matrix(0.172755,0.001900,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.172755,0.001900,-0.002750,0.249985,0,0);}
.mb1_c01248{transform:matrix(0.174720,0.002621,-0.003750,0.249972,0,0);-ms-transform:matrix(0.174720,0.002621,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.174720,0.002621,-0.003750,0.249972,0,0);}
.m27_c01248{transform:matrix(0.175068,0.002451,-0.003500,0.249976,0,0);-ms-transform:matrix(0.175068,0.002451,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.175068,0.002451,-0.003500,0.249976,0,0);}
.m8e_c01248{transform:matrix(0.175757,0.003164,-0.004499,0.249960,0,0);-ms-transform:matrix(0.175757,0.003164,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.175757,0.003164,-0.004499,0.249960,0,0);}
.mb4_c01248{transform:matrix(0.175895,0.002638,-0.003750,0.249972,0,0);-ms-transform:matrix(0.175895,0.002638,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.175895,0.002638,-0.003750,0.249972,0,0);}
.mb6_c01248{transform:matrix(0.176290,0.002644,-0.003750,0.249972,0,0);-ms-transform:matrix(0.176290,0.002644,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.176290,0.002644,-0.003750,0.249972,0,0);}
.m81_c01248{transform:matrix(0.176685,0.002650,-0.003750,0.249972,0,0);-ms-transform:matrix(0.176685,0.002650,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.176685,0.002650,-0.003750,0.249972,0,0);}
.m8d_c01248{transform:matrix(0.177236,0.003190,-0.004499,0.249960,0,0);-ms-transform:matrix(0.177236,0.003190,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.177236,0.003190,-0.004499,0.249960,0,0);}
.mab_c01248{transform:matrix(0.177562,0.002131,-0.003000,0.249982,0,0);-ms-transform:matrix(0.177562,0.002131,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.177562,0.002131,-0.003000,0.249982,0,0);}
.mb2_c01248{transform:matrix(0.179610,0.002694,-0.003750,0.249972,0,0);-ms-transform:matrix(0.179610,0.002694,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.179610,0.002694,-0.003750,0.249972,0,0);}
.m91_c01248{transform:matrix(0.179671,0.003234,-0.004499,0.249960,0,0);-ms-transform:matrix(0.179671,0.003234,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.179671,0.003234,-0.004499,0.249960,0,0);}
.m8a_c01248{transform:matrix(0.180681,0.003252,-0.004499,0.249960,0,0);-ms-transform:matrix(0.180681,0.003252,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.180681,0.003252,-0.004499,0.249960,0,0);}
.m4_c01248{transform:matrix(0.180887,0.002171,-0.003000,0.249982,0,0);-ms-transform:matrix(0.180887,0.002171,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.180887,0.002171,-0.003000,0.249982,0,0);}
.m35_c01248{transform:matrix(0.186611,0.002986,-0.003999,0.249968,0,0);-ms-transform:matrix(0.186611,0.002986,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.186611,0.002986,-0.003999,0.249968,0,0);}
.m8c_c01248{transform:matrix(0.188100,0.003386,-0.004499,0.249960,0,0);-ms-transform:matrix(0.188100,0.003386,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.188100,0.003386,-0.004499,0.249960,0,0);}
.m3d_c01248{transform:matrix(0.188146,0.003010,-0.003999,0.249968,0,0);-ms-transform:matrix(0.188146,0.003010,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.188146,0.003010,-0.003999,0.249968,0,0);}
.m1b_c01248{transform:matrix(0.188555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188555,0.000000,0.000000,0.250000,0,0);}
.m4e_c01248{transform:matrix(0.189396,0.002652,-0.003500,0.249976,0,0);-ms-transform:matrix(0.189396,0.002652,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.189396,0.002652,-0.003500,0.249976,0,0);}
.m89_c01248{transform:matrix(0.190849,0.003435,-0.004499,0.249960,0,0);-ms-transform:matrix(0.190849,0.003435,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.190849,0.003435,-0.004499,0.249960,0,0);}
.m90_c01248{transform:matrix(0.195943,0.003527,-0.004499,0.249960,0,0);-ms-transform:matrix(0.195943,0.003527,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.195943,0.003527,-0.004499,0.249960,0,0);}
.m8b_c01248{transform:matrix(0.196403,0.003535,-0.004499,0.249960,0,0);-ms-transform:matrix(0.196403,0.003535,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.196403,0.003535,-0.004499,0.249960,0,0);}
.mbd_c01248{transform:matrix(0.197373,0.002171,-0.002750,0.249985,0,0);-ms-transform:matrix(0.197373,0.002171,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.197373,0.002171,-0.002750,0.249985,0,0);}
.m6a_c01248{transform:matrix(0.197461,0.002764,-0.003500,0.249976,0,0);-ms-transform:matrix(0.197461,0.002764,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.197461,0.002764,-0.003500,0.249976,0,0);}
.m67_c01248{transform:matrix(0.197941,0.002771,-0.003500,0.249976,0,0);-ms-transform:matrix(0.197941,0.002771,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.197941,0.002771,-0.003500,0.249976,0,0);}
.m11_c01248{transform:matrix(0.198275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198275,0.000000,0.000000,0.250000,0,0);}
.m2_c01248{transform:matrix(0.200345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200345,0.000000,0.000000,0.250000,0,0);}
.m7e_c01248{transform:matrix(0.200851,0.003414,-0.004249,0.249964,0,0);-ms-transform:matrix(0.200851,0.003414,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.200851,0.003414,-0.004249,0.249964,0,0);}
.mbb_c01248{transform:matrix(0.202718,0.002230,-0.002750,0.249985,0,0);-ms-transform:matrix(0.202718,0.002230,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.202718,0.002230,-0.002750,0.249985,0,0);}
.mad_c01248{transform:matrix(0.202840,0.002434,-0.003000,0.249982,0,0);-ms-transform:matrix(0.202840,0.002434,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.202840,0.002434,-0.003000,0.249982,0,0);}
.m5f_c01248{transform:matrix(0.203280,0.002846,-0.003500,0.249976,0,0);-ms-transform:matrix(0.203280,0.002846,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.203280,0.002846,-0.003500,0.249976,0,0);}
.mb0_c01248{transform:matrix(0.203452,0.003052,-0.003750,0.249972,0,0);-ms-transform:matrix(0.203452,0.003052,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.203452,0.003052,-0.003750,0.249972,0,0);}
.m49_c01248{transform:matrix(0.206184,0.003299,-0.003999,0.249968,0,0);-ms-transform:matrix(0.206184,0.003299,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.206184,0.003299,-0.003999,0.249968,0,0);}
.mcc_c01248{transform:matrix(0.206817,0.001861,-0.002250,0.249990,0,0);-ms-transform:matrix(0.206817,0.001861,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.206817,0.001861,-0.002250,0.249990,0,0);}
.m60_c01248{transform:matrix(0.209339,0.002931,-0.003500,0.249976,0,0);-ms-transform:matrix(0.209339,0.002931,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.209339,0.002931,-0.003500,0.249976,0,0);}
.mb7_c01248{transform:matrix(0.211246,0.003169,-0.003750,0.249972,0,0);-ms-transform:matrix(0.211246,0.003169,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.211246,0.003169,-0.003750,0.249972,0,0);}
.mb3_c01248{transform:matrix(0.212076,0.003181,-0.003750,0.249972,0,0);-ms-transform:matrix(0.212076,0.003181,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.212076,0.003181,-0.003750,0.249972,0,0);}
.mb5_c01248{transform:matrix(0.212526,0.003188,-0.003750,0.249972,0,0);-ms-transform:matrix(0.212526,0.003188,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.212526,0.003188,-0.003750,0.249972,0,0);}
.m4c_c01248{transform:matrix(0.213108,0.003410,-0.003999,0.249968,0,0);-ms-transform:matrix(0.213108,0.003410,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.213108,0.003410,-0.003999,0.249968,0,0);}
.m6_c01248{transform:matrix(0.214515,0.002574,-0.003000,0.249982,0,0);-ms-transform:matrix(0.214515,0.002574,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.214515,0.002574,-0.003000,0.249982,0,0);}
.m66_c01248{transform:matrix(0.214629,0.003005,-0.003500,0.249976,0,0);-ms-transform:matrix(0.214629,0.003005,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.214629,0.003005,-0.003500,0.249976,0,0);}
.m47_c01248{transform:matrix(0.215687,0.003451,-0.003999,0.249968,0,0);-ms-transform:matrix(0.215687,0.003451,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.215687,0.003451,-0.003999,0.249968,0,0);}
.mc3_c01248{transform:matrix(0.218786,0.001969,-0.002250,0.249990,0,0);-ms-transform:matrix(0.218786,0.001969,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.218786,0.001969,-0.002250,0.249990,0,0);}
.m65_c01248{transform:matrix(0.219923,0.003079,-0.003500,0.249976,0,0);-ms-transform:matrix(0.219923,0.003079,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.219923,0.003079,-0.003500,0.249976,0,0);}
.m30_c01248{transform:matrix(0.220293,0.003084,-0.003500,0.249976,0,0);-ms-transform:matrix(0.220293,0.003084,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.220293,0.003084,-0.003500,0.249976,0,0);}
.m2a_c01248{transform:matrix(0.220358,0.003085,-0.003500,0.249976,0,0);-ms-transform:matrix(0.220358,0.003085,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.220358,0.003085,-0.003500,0.249976,0,0);}
.m58_c01248{transform:matrix(0.221433,0.003100,-0.003500,0.249976,0,0);-ms-transform:matrix(0.221433,0.003100,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.221433,0.003100,-0.003500,0.249976,0,0);}
.mc6_c01248{transform:matrix(0.222116,0.001999,-0.002250,0.249990,0,0);-ms-transform:matrix(0.222116,0.001999,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.222116,0.001999,-0.002250,0.249990,0,0);}
.md3_c01248{transform:matrix(0.225135,0.009014,-0.010002,0.249800,0,0);-ms-transform:matrix(0.225135,0.009014,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.225135,0.009014,-0.010002,0.249800,0,0);}
.m31_c01248{transform:matrix(0.225223,0.003153,-0.003500,0.249976,0,0);-ms-transform:matrix(0.225223,0.003153,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.225223,0.003153,-0.003500,0.249976,0,0);}
.mbe_c01248{transform:matrix(0.226241,0.002489,-0.002750,0.249985,0,0);-ms-transform:matrix(0.226241,0.002489,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.226241,0.002489,-0.002750,0.249985,0,0);}
.m7_c01248{transform:matrix(0.227839,0.002734,-0.003000,0.249982,0,0);-ms-transform:matrix(0.227839,0.002734,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.227839,0.002734,-0.003000,0.249982,0,0);}
.m74_c01248{transform:matrix(0.228072,0.003877,-0.004249,0.249964,0,0);-ms-transform:matrix(0.228072,0.003877,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.228072,0.003877,-0.004249,0.249964,0,0);}
.m25_c01248{transform:matrix(0.228630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228630,0.000000,0.000000,0.250000,0,0);}
.m21_c01248{transform:matrix(0.229125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229125,0.000000,0.000000,0.250000,0,0);}
.mb9_c01248{transform:matrix(0.229956,0.002530,-0.002750,0.249985,0,0);-ms-transform:matrix(0.229956,0.002530,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.229956,0.002530,-0.002750,0.249985,0,0);}
.m62_c01248{transform:matrix(0.230152,0.003222,-0.003500,0.249976,0,0);-ms-transform:matrix(0.230152,0.003222,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.230152,0.003222,-0.003500,0.249976,0,0);}
.mc5_c01248{transform:matrix(0.230451,0.002074,-0.002250,0.249990,0,0);-ms-transform:matrix(0.230451,0.002074,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.230451,0.002074,-0.002250,0.249990,0,0);}
.mb_c01248{transform:matrix(0.230718,0.002769,-0.003000,0.249982,0,0);-ms-transform:matrix(0.230718,0.002769,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.230718,0.002769,-0.003000,0.249982,0,0);}
.mce_c01248{transform:matrix(0.231441,0.002083,-0.002250,0.249990,0,0);-ms-transform:matrix(0.231441,0.002083,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.231441,0.002083,-0.002250,0.249990,0,0);}
.ma_c01248{transform:matrix(0.231478,0.002778,-0.003000,0.249982,0,0);-ms-transform:matrix(0.231478,0.002778,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.231478,0.002778,-0.003000,0.249982,0,0);}
.m3_c01248{transform:matrix(0.232735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232735,0.000000,0.000000,0.250000,0,0);}
.m64_c01248{transform:matrix(0.232882,0.003260,-0.003500,0.249976,0,0);-ms-transform:matrix(0.232882,0.003260,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.232882,0.003260,-0.003500,0.249976,0,0);}
.md_c01248{transform:matrix(0.233108,0.002797,-0.003000,0.249982,0,0);-ms-transform:matrix(0.233108,0.002797,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.233108,0.002797,-0.003000,0.249982,0,0);}
.m2f_c01248{transform:matrix(0.233267,0.003266,-0.003500,0.249976,0,0);-ms-transform:matrix(0.233267,0.003266,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.233267,0.003266,-0.003500,0.249976,0,0);}
.mba_c01248{transform:matrix(0.233476,0.002568,-0.002750,0.249985,0,0);-ms-transform:matrix(0.233476,0.002568,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.233476,0.002568,-0.002750,0.249985,0,0);}
.m55_c01248{transform:matrix(0.233732,0.003272,-0.003500,0.249976,0,0);-ms-transform:matrix(0.233732,0.003272,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.233732,0.003272,-0.003500,0.249976,0,0);}
.mc9_c01248{transform:matrix(0.234496,0.002110,-0.002250,0.249990,0,0);-ms-transform:matrix(0.234496,0.002110,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.234496,0.002110,-0.002250,0.249990,0,0);}
.m7f_c01248{transform:matrix(0.234881,0.003993,-0.004249,0.249964,0,0);-ms-transform:matrix(0.234881,0.003993,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.234881,0.003993,-0.004249,0.249964,0,0);}
.m28_c01248{transform:matrix(0.235902,0.003303,-0.003500,0.249976,0,0);-ms-transform:matrix(0.235902,0.003303,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.235902,0.003303,-0.003500,0.249976,0,0);}
.mc4_c01248{transform:matrix(0.236060,0.002125,-0.002250,0.249990,0,0);-ms-transform:matrix(0.236060,0.002125,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.236060,0.002125,-0.002250,0.249990,0,0);}
.m87_c01248{transform:matrix(0.236188,0.003543,-0.003750,0.249972,0,0);-ms-transform:matrix(0.236188,0.003543,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.236188,0.003543,-0.003750,0.249972,0,0);}
.m63_c01248{transform:matrix(0.236227,0.003307,-0.003500,0.249976,0,0);-ms-transform:matrix(0.236227,0.003307,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.236227,0.003307,-0.003500,0.249976,0,0);}
.m7d_c01248{transform:matrix(0.236256,0.004016,-0.004249,0.249964,0,0);-ms-transform:matrix(0.236256,0.004016,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.236256,0.004016,-0.004249,0.249964,0,0);}
.m56_c01248{transform:matrix(0.236277,0.003308,-0.003500,0.249976,0,0);-ms-transform:matrix(0.236277,0.003308,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.236277,0.003308,-0.003500,0.249976,0,0);}
.m44_c01248{transform:matrix(0.236420,0.003783,-0.003999,0.249968,0,0);-ms-transform:matrix(0.236420,0.003783,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.236420,0.003783,-0.003999,0.249968,0,0);}
.ma2_c01248{transform:matrix(0.236636,0.004023,-0.004249,0.249964,0,0);-ms-transform:matrix(0.236636,0.004023,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.236636,0.004023,-0.004249,0.249964,0,0);}
.m43_c01248{transform:matrix(0.236835,0.003789,-0.003999,0.249968,0,0);-ms-transform:matrix(0.236835,0.003789,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.236835,0.003789,-0.003999,0.249968,0,0);}
.mc7_c01248{transform:matrix(0.236935,0.002132,-0.002250,0.249990,0,0);-ms-transform:matrix(0.236935,0.002132,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.236935,0.002132,-0.002250,0.249990,0,0);}
.m6c_c01248{transform:matrix(0.237162,0.003320,-0.003500,0.249976,0,0);-ms-transform:matrix(0.237162,0.003320,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.237162,0.003320,-0.003500,0.249976,0,0);}
.m19_c01248{transform:matrix(0.237185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237185,0.000000,0.000000,0.250000,0,0);}
.m82_c01248{transform:matrix(0.237388,0.003561,-0.003750,0.249972,0,0);-ms-transform:matrix(0.237388,0.003561,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.237388,0.003561,-0.003750,0.249972,0,0);}
.m5d_c01248{transform:matrix(0.238142,0.003334,-0.003500,0.249976,0,0);-ms-transform:matrix(0.238142,0.003334,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.238142,0.003334,-0.003500,0.249976,0,0);}
.m2d_c01248{transform:matrix(0.238712,0.003342,-0.003500,0.249976,0,0);-ms-transform:matrix(0.238712,0.003342,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.238712,0.003342,-0.003500,0.249976,0,0);}
.m1_c01248{transform:matrix(0.239015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239015,0.000000,0.000000,0.250000,0,0);}
.m0_c01248{transform:matrix(0.239070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239070,0.000000,0.000000,0.250000,0,0);}
.mbc_c01248{transform:matrix(0.239256,0.002632,-0.002750,0.249985,0,0);-ms-transform:matrix(0.239256,0.002632,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.239256,0.002632,-0.002750,0.249985,0,0);}
.m1e_c01248{transform:matrix(0.239540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239540,0.000000,0.000000,0.250000,0,0);}
.m61_c01248{transform:matrix(0.240261,0.003364,-0.003500,0.249976,0,0);-ms-transform:matrix(0.240261,0.003364,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.240261,0.003364,-0.003500,0.249976,0,0);}
.mc1_c01248{transform:matrix(0.240375,0.002163,-0.002250,0.249990,0,0);-ms-transform:matrix(0.240375,0.002163,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.240375,0.002163,-0.002250,0.249990,0,0);}
.m29_c01248{transform:matrix(0.240991,0.003374,-0.003500,0.249976,0,0);-ms-transform:matrix(0.240991,0.003374,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.240991,0.003374,-0.003500,0.249976,0,0);}
.m83_c01248{transform:matrix(0.241253,0.003619,-0.003750,0.249972,0,0);-ms-transform:matrix(0.241253,0.003619,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.241253,0.003619,-0.003750,0.249972,0,0);}
.m46_c01248{transform:matrix(0.241349,0.003862,-0.003999,0.249968,0,0);-ms-transform:matrix(0.241349,0.003862,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.241349,0.003862,-0.003999,0.249968,0,0);}
.m72_c01248{transform:matrix(0.242580,0.004124,-0.004249,0.249964,0,0);-ms-transform:matrix(0.242580,0.004124,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.242580,0.004124,-0.004249,0.249964,0,0);}
.m5e_c01248{transform:matrix(0.242896,0.003401,-0.003500,0.249976,0,0);-ms-transform:matrix(0.242896,0.003401,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.242896,0.003401,-0.003500,0.249976,0,0);}
.m54_c01248{transform:matrix(0.243446,0.003408,-0.003500,0.249976,0,0);-ms-transform:matrix(0.243446,0.003408,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.243446,0.003408,-0.003500,0.249976,0,0);}
.m4d_c01248{transform:matrix(0.243684,0.003899,-0.003999,0.249968,0,0);-ms-transform:matrix(0.243684,0.003899,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.243684,0.003899,-0.003999,0.249968,0,0);}
.m51_c01248{transform:matrix(0.243766,0.003413,-0.003500,0.249976,0,0);-ms-transform:matrix(0.243766,0.003413,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.243766,0.003413,-0.003500,0.249976,0,0);}
.m2b_c01248{transform:matrix(0.243821,0.003413,-0.003500,0.249976,0,0);-ms-transform:matrix(0.243821,0.003413,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.243821,0.003413,-0.003500,0.249976,0,0);}
.m78_c01248{transform:matrix(0.244825,0.004162,-0.004249,0.249964,0,0);-ms-transform:matrix(0.244825,0.004162,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.244825,0.004162,-0.004249,0.249964,0,0);}
.m84_c01248{transform:matrix(0.244852,0.003673,-0.003750,0.249972,0,0);-ms-transform:matrix(0.244852,0.003673,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.244852,0.003673,-0.003750,0.249972,0,0);}
.m40_c01248{transform:matrix(0.244874,0.003918,-0.003999,0.249968,0,0);-ms-transform:matrix(0.244874,0.003918,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.244874,0.003918,-0.003999,0.249968,0,0);}
.m1f_c01248{transform:matrix(0.245235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245235,0.000000,0.000000,0.250000,0,0);}
.m69_c01248{transform:matrix(0.245436,0.003436,-0.003500,0.249976,0,0);-ms-transform:matrix(0.245436,0.003436,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.245436,0.003436,-0.003500,0.249976,0,0);}
.md0_c01248{transform:matrix(0.246328,0.009863,-0.010002,0.249800,0,0);-ms-transform:matrix(0.246328,0.009863,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.246328,0.009863,-0.010002,0.249800,0,0);}
.md2_c01248{transform:matrix(0.246353,0.009864,-0.010002,0.249800,0,0);-ms-transform:matrix(0.246353,0.009864,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.246353,0.009864,-0.010002,0.249800,0,0);}
.m8_c01248{transform:matrix(0.246987,0.002964,-0.003000,0.249982,0,0);-ms-transform:matrix(0.246987,0.002964,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.246987,0.002964,-0.003000,0.249982,0,0);}
.m85_c01248{transform:matrix(0.247072,0.003706,-0.003750,0.249972,0,0);-ms-transform:matrix(0.247072,0.003706,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.247072,0.003706,-0.003750,0.249972,0,0);}
.mc_c01248{transform:matrix(0.247897,0.002975,-0.003000,0.249982,0,0);-ms-transform:matrix(0.247897,0.002975,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.247897,0.002975,-0.003000,0.249982,0,0);}
.m53_c01248{transform:matrix(0.248676,0.003481,-0.003500,0.249976,0,0);-ms-transform:matrix(0.248676,0.003481,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.248676,0.003481,-0.003500,0.249976,0,0);}
.md5_c01248{transform:matrix(0.249135,0.009975,-0.010002,0.249800,0,0);-ms-transform:matrix(0.249135,0.009975,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.249135,0.009975,-0.010002,0.249800,0,0);}
.m24_c01248{transform:matrix(0.250405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250405,0.000000,0.000000,0.250000,0,0);}
.m52_c01248{transform:matrix(0.251005,0.003514,-0.003500,0.249976,0,0);-ms-transform:matrix(0.251005,0.003514,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.251005,0.003514,-0.003500,0.249976,0,0);}
.m26_c01248{transform:matrix(0.251015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251015,0.000000,0.000000,0.250000,0,0);}
.m4b_c01248{transform:matrix(0.251838,0.004029,-0.003999,0.249968,0,0);-ms-transform:matrix(0.251838,0.004029,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.251838,0.004029,-0.003999,0.249968,0,0);}
.m45_c01248{transform:matrix(0.251858,0.004030,-0.003999,0.249968,0,0);-ms-transform:matrix(0.251858,0.004030,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.251858,0.004030,-0.003999,0.249968,0,0);}
.mc2_c01248{transform:matrix(0.251900,0.002267,-0.002250,0.249990,0,0);-ms-transform:matrix(0.251900,0.002267,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.251900,0.002267,-0.002250,0.249990,0,0);}
.m10_c01248{transform:matrix(0.252075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252075,0.000000,0.000000,0.250000,0,0);}
.m41_c01248{transform:matrix(0.252683,0.004043,-0.003999,0.249968,0,0);-ms-transform:matrix(0.252683,0.004043,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.252683,0.004043,-0.003999,0.249968,0,0);}
.m1a_c01248{transform:matrix(0.253170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253170,0.000000,0.000000,0.250000,0,0);}
.m86_c01248{transform:matrix(0.253476,0.003802,-0.003750,0.249972,0,0);-ms-transform:matrix(0.253476,0.003802,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.253476,0.003802,-0.003750,0.249972,0,0);}
.m1c_c01248{transform:matrix(0.253595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253595,0.000000,0.000000,0.250000,0,0);}
.m5_c01248{transform:matrix(0.254057,0.003049,-0.003000,0.249982,0,0);-ms-transform:matrix(0.254057,0.003049,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.254057,0.003049,-0.003000,0.249982,0,0);}
.mcb_c01248{transform:matrix(0.254215,0.002288,-0.002250,0.249990,0,0);-ms-transform:matrix(0.254215,0.002288,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.254215,0.002288,-0.002250,0.249990,0,0);}
.m42_c01248{transform:matrix(0.254257,0.004068,-0.003999,0.249968,0,0);-ms-transform:matrix(0.254257,0.004068,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.254257,0.004068,-0.003999,0.249968,0,0);}
.mcd_c01248{transform:matrix(0.254785,0.002293,-0.002250,0.249990,0,0);-ms-transform:matrix(0.254785,0.002293,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.254785,0.002293,-0.002250,0.249990,0,0);}
.m4a_c01248{transform:matrix(0.255047,0.004081,-0.003999,0.249968,0,0);-ms-transform:matrix(0.255047,0.004081,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.255047,0.004081,-0.003999,0.249968,0,0);}
.m9f_c01248{transform:matrix(0.255173,0.004338,-0.004249,0.249964,0,0);-ms-transform:matrix(0.255173,0.004338,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.255173,0.004338,-0.004249,0.249964,0,0);}
.m9d_c01248{transform:matrix(0.255968,0.004351,-0.004249,0.249964,0,0);-ms-transform:matrix(0.255968,0.004351,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.255968,0.004351,-0.004249,0.249964,0,0);}
.m4f_c01248{transform:matrix(0.256890,0.003596,-0.003500,0.249976,0,0);-ms-transform:matrix(0.256890,0.003596,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.256890,0.003596,-0.003500,0.249976,0,0);}
.md6_c01248{transform:matrix(0.257743,0.010320,-0.010002,0.249800,0,0);-ms-transform:matrix(0.257743,0.010320,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.257743,0.010320,-0.010002,0.249800,0,0);}
.m9_c01248{transform:matrix(0.257961,0.003096,-0.003000,0.249982,0,0);-ms-transform:matrix(0.257961,0.003096,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.257961,0.003096,-0.003000,0.249982,0,0);}
.m3e_c01248{transform:matrix(0.258207,0.004131,-0.003999,0.249968,0,0);-ms-transform:matrix(0.258207,0.004131,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.258207,0.004131,-0.003999,0.249968,0,0);}
.m73_c01248{transform:matrix(0.258228,0.004390,-0.004249,0.249964,0,0);-ms-transform:matrix(0.258228,0.004390,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.258228,0.004390,-0.004249,0.249964,0,0);}
.mf_c01248{transform:matrix(0.259121,0.003109,-0.003000,0.249982,0,0);-ms-transform:matrix(0.259121,0.003109,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.259121,0.003109,-0.003000,0.249982,0,0);}
.m57_c01248{transform:matrix(0.259140,0.003628,-0.003500,0.249976,0,0);-ms-transform:matrix(0.259140,0.003628,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.259140,0.003628,-0.003500,0.249976,0,0);}
.md1_c01248{transform:matrix(0.259202,0.010378,-0.010002,0.249800,0,0);-ms-transform:matrix(0.259202,0.010378,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.259202,0.010378,-0.010002,0.249800,0,0);}
.m76_c01248{transform:matrix(0.259288,0.004408,-0.004249,0.249964,0,0);-ms-transform:matrix(0.259288,0.004408,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.259288,0.004408,-0.004249,0.249964,0,0);}
.m17_c01248{transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);}
.m20_c01248{transform:matrix(0.259850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259850,0.000000,0.000000,0.250000,0,0);}
.m7c_c01248{transform:matrix(0.260042,0.004421,-0.004249,0.249964,0,0);-ms-transform:matrix(0.260042,0.004421,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.260042,0.004421,-0.004249,0.249964,0,0);}
.m9e_c01248{transform:matrix(0.260397,0.004427,-0.004249,0.249964,0,0);-ms-transform:matrix(0.260397,0.004427,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.260397,0.004427,-0.004249,0.249964,0,0);}
.m79_c01248{transform:matrix(0.260757,0.004433,-0.004249,0.249964,0,0);-ms-transform:matrix(0.260757,0.004433,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.260757,0.004433,-0.004249,0.249964,0,0);}
.m33_c01248{transform:matrix(0.260857,0.004174,-0.003999,0.249968,0,0);-ms-transform:matrix(0.260857,0.004174,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.260857,0.004174,-0.003999,0.249968,0,0);}
.m50_c01248{transform:matrix(0.261204,0.003657,-0.003500,0.249976,0,0);-ms-transform:matrix(0.261204,0.003657,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.261204,0.003657,-0.003500,0.249976,0,0);}
.m3f_c01248{transform:matrix(0.261477,0.004184,-0.003999,0.249968,0,0);-ms-transform:matrix(0.261477,0.004184,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.261477,0.004184,-0.003999,0.249968,0,0);}
.m68_c01248{transform:matrix(0.261939,0.003667,-0.003500,0.249976,0,0);-ms-transform:matrix(0.261939,0.003667,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.261939,0.003667,-0.003500,0.249976,0,0);}
.m13_c01248{transform:matrix(0.262575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262575,0.000000,0.000000,0.250000,0,0);}
.me_c01248{transform:matrix(0.263476,0.003162,-0.003000,0.249982,0,0);-ms-transform:matrix(0.263476,0.003162,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.263476,0.003162,-0.003000,0.249982,0,0);}
.m1d_c01248{transform:matrix(0.264230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264230,0.000000,0.000000,0.250000,0,0);}
.m34_c01248{transform:matrix(0.266276,0.004260,-0.003999,0.249968,0,0);-ms-transform:matrix(0.266276,0.004260,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.266276,0.004260,-0.003999,0.249968,0,0);}
.md4_c01248{transform:matrix(0.266342,0.010664,-0.010002,0.249800,0,0);-ms-transform:matrix(0.266342,0.010664,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.266342,0.010664,-0.010002,0.249800,0,0);}
.m75_c01248{transform:matrix(0.268876,0.004571,-0.004249,0.249964,0,0);-ms-transform:matrix(0.268876,0.004571,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.268876,0.004571,-0.004249,0.249964,0,0);}
.m18_c01248{transform:matrix(0.269035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269035,0.000000,0.000000,0.250000,0,0);}
.m77_c01248{transform:matrix(0.269356,0.004579,-0.004249,0.249964,0,0);-ms-transform:matrix(0.269356,0.004579,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.269356,0.004579,-0.004249,0.249964,0,0);}
.m23_c01248{transform:matrix(0.270010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270010,0.000000,0.000000,0.250000,0,0);}
.m7a_c01248{transform:matrix(0.270391,0.004597,-0.004249,0.249964,0,0);-ms-transform:matrix(0.270391,0.004597,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.270391,0.004597,-0.004249,0.249964,0,0);}
.m9c_c01248{transform:matrix(0.271721,0.004619,-0.004249,0.249964,0,0);-ms-transform:matrix(0.271721,0.004619,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.271721,0.004619,-0.004249,0.249964,0,0);}
.m15_c01248{transform:matrix(0.273005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273005,0.000000,0.000000,0.250000,0,0);}
.m32_c01248{transform:matrix(0.273410,0.004375,-0.003999,0.249968,0,0);-ms-transform:matrix(0.273410,0.004375,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.273410,0.004375,-0.003999,0.249968,0,0);}
.ma3_c01248{transform:matrix(0.274065,0.004659,-0.004249,0.249964,0,0);-ms-transform:matrix(0.274065,0.004659,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.274065,0.004659,-0.004249,0.249964,0,0);}
.m36_c01248{transform:matrix(0.274430,0.004391,-0.003999,0.249968,0,0);-ms-transform:matrix(0.274430,0.004391,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.274430,0.004391,-0.003999,0.249968,0,0);}
.ma1_c01248{transform:matrix(0.276910,0.004707,-0.004249,0.249964,0,0);-ms-transform:matrix(0.276910,0.004707,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.276910,0.004707,-0.004249,0.249964,0,0);}
.m22_c01248{transform:matrix(0.277075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277075,0.000000,0.000000,0.250000,0,0);}
.m12_c01248{transform:matrix(0.277125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277125,0.000000,0.000000,0.250000,0,0);}
.m6d_c01248{transform:matrix(0.277893,0.003890,-0.003500,0.249976,0,0);-ms-transform:matrix(0.277893,0.003890,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.277893,0.003890,-0.003500,0.249976,0,0);}
.m16_c01248{transform:matrix(0.279595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279595,0.000000,0.000000,0.250000,0,0);}
.m71_c01248{transform:matrix(0.283369,0.004817,-0.004249,0.249964,0,0);-ms-transform:matrix(0.283369,0.004817,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.283369,0.004817,-0.004249,0.249964,0,0);}
.m6b_c01248{transform:matrix(0.283462,0.003968,-0.003500,0.249976,0,0);-ms-transform:matrix(0.283462,0.003968,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.283462,0.003968,-0.003500,0.249976,0,0);}
.m70_c01248{transform:matrix(0.283799,0.004825,-0.004249,0.249964,0,0);-ms-transform:matrix(0.283799,0.004825,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.283799,0.004825,-0.004249,0.249964,0,0);}
.mc0_c01248{transform:matrix(0.285693,0.002571,-0.002250,0.249990,0,0);-ms-transform:matrix(0.285693,0.002571,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.285693,0.002571,-0.002250,0.249990,0,0);}
.m14_c01248{transform:matrix(0.286585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286585,0.000000,0.000000,0.250000,0,0);}
.m9a_c01248{transform:matrix(0.287032,0.004018,-0.003500,0.249976,0,0);-ms-transform:matrix(0.287032,0.004018,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.287032,0.004018,-0.003500,0.249976,0,0);}
.ma0_c01248{transform:matrix(0.289593,0.004923,-0.004249,0.249964,0,0);-ms-transform:matrix(0.289593,0.004923,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.289593,0.004923,-0.004249,0.249964,0,0);}
.m7b_c01248{transform:matrix(0.313620,0.005332,-0.004249,0.249964,0,0);-ms-transform:matrix(0.313620,0.005332,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.313620,0.005332,-0.004249,0.249964,0,0);}
.mca_c01248{transform:matrix(0.322707,0.002904,-0.002250,0.249990,0,0);-ms-transform:matrix(0.322707,0.002904,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.322707,0.002904,-0.002250,0.249990,0,0);}
.m2c_c01248{transform:matrix(0.324118,0.004538,-0.003500,0.249976,0,0);-ms-transform:matrix(0.324118,0.004538,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.324118,0.004538,-0.003500,0.249976,0,0);}
.m37_c01248{transform:matrix(0.352235,0.005636,-0.003999,0.249968,0,0);-ms-transform:matrix(0.352235,0.005636,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.352235,0.005636,-0.003999,0.249968,0,0);}
.m6f_c01248{transform:matrix(0.359695,0.005036,-0.003500,0.249976,0,0);-ms-transform:matrix(0.359695,0.005036,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.359695,0.005036,-0.003500,0.249976,0,0);}
.m80_c01248{transform:matrix(0.389124,0.006615,-0.004249,0.249964,0,0);-ms-transform:matrix(0.389124,0.006615,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.389124,0.006615,-0.004249,0.249964,0,0);}
.m96_c01248{transform:matrix(0.496676,0.006953,-0.003500,0.249976,0,0);-ms-transform:matrix(0.496676,0.006953,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.496676,0.006953,-0.003500,0.249976,0,0);}
.m59_c01248{transform:matrix(0.498841,0.006984,-0.003500,0.249976,0,0);-ms-transform:matrix(0.498841,0.006984,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.498841,0.006984,-0.003500,0.249976,0,0);}
.ma5_c01248{transform:matrix(0.519595,0.008833,-0.004249,0.249964,0,0);-ms-transform:matrix(0.519595,0.008833,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.519595,0.008833,-0.004249,0.249964,0,0);}
.m9b_c01248{transform:matrix(0.523114,0.008893,-0.004249,0.249964,0,0);-ms-transform:matrix(0.523114,0.008893,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.523114,0.008893,-0.004249,0.249964,0,0);}
.m3a_c01248{transform:matrix(0.526273,0.008420,-0.003999,0.249968,0,0);-ms-transform:matrix(0.526273,0.008420,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.526273,0.008420,-0.003999,0.249968,0,0);}
.m5a_c01248{transform:matrix(0.548126,0.007674,-0.003500,0.249976,0,0);-ms-transform:matrix(0.548126,0.007674,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.548126,0.007674,-0.003500,0.249976,0,0);}
.m3c_c01248{transform:matrix(0.592019,0.009472,-0.003999,0.249968,0,0);-ms-transform:matrix(0.592019,0.009472,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.592019,0.009472,-0.003999,0.249968,0,0);}
.m3b_c01248{transform:matrix(2.063381,0.033014,-0.003999,0.249968,0,0);-ms-transform:matrix(2.063381,0.033014,-0.003999,0.249968,0,0);-webkit-transform:matrix(2.063381,0.033014,-0.003999,0.249968,0,0);}
.m39_c01248{transform:matrix(2.492871,0.039886,-0.003999,0.249968,0,0);-ms-transform:matrix(2.492871,0.039886,-0.003999,0.249968,0,0);-webkit-transform:matrix(2.492871,0.039886,-0.003999,0.249968,0,0);}
.m38_c01248{transform:matrix(2.654970,0.042480,-0.003999,0.249968,0,0);-ms-transform:matrix(2.654970,0.042480,-0.003999,0.249968,0,0);-webkit-transform:matrix(2.654970,0.042480,-0.003999,0.249968,0,0);}
.v0_c01248{vertical-align:0.000000px;}
.ls0_c01248{letter-spacing:0.000000px;}
.sc__c01248{text-shadow:none;}
.sc0_c01248{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__c01248{-webkit-text-stroke:0px transparent;}
.sc0_c01248{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01248{word-spacing:0.000000px;}
._0_c01248{margin-left:-31.150059px;}
.fc0_c01248{color:transparent;}
.fs6_c01248{font-size:24.003072px;}
.fs9_c01248{font-size:36.003528px;}
.fs3_c01248{font-size:72.000000px;}
.fsa_c01248{font-size:72.007056px;}
.fs5_c01248{font-size:72.009215px;}
.fsb_c01248{font-size:72.010403px;}
.fs15_c01248{font-size:77.984437px;}
.fs2_c01248{font-size:78.000000px;}
.fs13_c01248{font-size:78.003159px;}
.fs1_c01248{font-size:78.005616px;}
.fs8_c01248{font-size:78.007644px;}
.fs7_c01248{font-size:78.009983px;}
.fs0_c01248{font-size:84.000000px;}
.fs14_c01248{font-size:84.003402px;}
.fs12_c01248{font-size:84.005082px;}
.fs4_c01248{font-size:84.008232px;}
.fsd_c01248{font-size:84.009449px;}
.fsc_c01248{font-size:84.012137px;}
.fs11_c01248{font-size:96.010799px;}
.fse_c01248{font-size:102.016523px;}
.fs10_c01248{font-size:150.010800px;}
.fsf_c01248{font-size:150.014699px;}
.y0_c01248{bottom:0.000000px;}
.yd6_c01248{bottom:159.068880px;}
.yd5_c01248{bottom:162.126720px;}
.yd4_c01248{bottom:169.623240px;}
.yd3_c01248{bottom:170.984220px;}
.yd2_c01248{bottom:173.640600px;}
.yd1_c01248{bottom:178.830840px;}
.yd0_c01248{bottom:180.090000px;}
.ycc_c01248{bottom:203.337537px;}
.ycd_c01248{bottom:203.338091px;}
.yce_c01248{bottom:203.338268px;}
.ycf_c01248{bottom:203.338638px;}
.ycb_c01248{bottom:231.936291px;}
.yca_c01248{bottom:232.116584px;}
.yc9_c01248{bottom:232.628787px;}
.yc8_c01248{bottom:232.895790px;}
.yc7_c01248{bottom:233.333609px;}
.yc6_c01248{bottom:233.829720px;}
.yc5_c01248{bottom:234.133457px;}
.yc4_c01248{bottom:234.524687px;}
.yc3_c01248{bottom:235.030167px;}
.yc2_c01248{bottom:235.321646px;}
.yc1_c01248{bottom:236.208906px;}
.yc0_c01248{bottom:236.712024px;}
.ybf_c01248{bottom:237.797951px;}
.ybe_c01248{bottom:237.870000px;}
.ybd_c01248{bottom:268.664088px;}
.ybc_c01248{bottom:269.029447px;}
.ybb_c01248{bottom:270.354381px;}
.yba_c01248{bottom:270.856344px;}
.yb9_c01248{bottom:271.708949px;}
.yb8_c01248{bottom:272.908399px;}
.yb7_c01248{bottom:273.240000px;}
.yb6_c01248{bottom:303.369293px;}
.yb5_c01248{bottom:303.867803px;}
.yb4_c01248{bottom:305.841210px;}
.yb3_c01248{bottom:306.493620px;}
.yb2_c01248{bottom:307.340588px;}
.yb1_c01248{bottom:308.684175px;}
.yb0_c01248{bottom:309.165945px;}
.yaf_c01248{bottom:310.320128px;}
.yae_c01248{bottom:310.771500px;}
.yad_c01248{bottom:331.207710px;}
.yac_c01248{bottom:331.739034px;}
.yab_c01248{bottom:332.105136px;}
.yaa_c01248{bottom:332.798442px;}
.ya9_c01248{bottom:333.329766px;}
.ya8_c01248{bottom:334.266054px;}
.ya7_c01248{bottom:335.571684px;}
.ya6_c01248{bottom:336.491628px;}
.ya5_c01248{bottom:337.679772px;}
.ya4_c01248{bottom:338.041500px;}
.ya3_c01248{bottom:370.244490px;}
.ya2_c01248{bottom:370.422046px;}
.ya1_c01248{bottom:374.651629px;}
.ya0_c01248{bottom:375.220636px;}
.y9f_c01248{bottom:376.717384px;}
.y9e_c01248{bottom:377.859121px;}
.y9d_c01248{bottom:378.430143px;}
.y9c_c01248{bottom:379.343884px;}
.y9b_c01248{bottom:380.477538px;}
.y9a_c01248{bottom:382.354032px;}
.y99_c01248{bottom:382.867500px;}
.y98_c01248{bottom:401.473470px;}
.y97_c01248{bottom:404.695143px;}
.y96_c01248{bottom:405.647619px;}
.y95_c01248{bottom:406.872213px;}
.y94_c01248{bottom:410.245401px;}
.y93_c01248{bottom:410.391036px;}
.y92_c01248{bottom:411.314658px;}
.y91_c01248{bottom:411.751500px;}
.y90_c01248{bottom:441.868245px;}
.y8f_c01248{bottom:442.660992px;}
.y8e_c01248{bottom:444.259149px;}
.y8d_c01248{bottom:444.857712px;}
.y8c_c01248{bottom:445.668846px;}
.y8b_c01248{bottom:446.442693px;}
.y8a_c01248{bottom:447.657936px;}
.y89_c01248{bottom:449.607444px;}
.y88_c01248{bottom:450.822606px;}
.y87_c01248{bottom:452.799789px;}
.y86_c01248{bottom:453.331500px;}
.y85_c01248{bottom:475.017090px;}
.y84_c01248{bottom:476.045678px;}
.y83_c01248{bottom:477.187642px;}
.y82_c01248{bottom:478.843913px;}
.y81_c01248{bottom:480.791738px;}
.y80_c01248{bottom:482.281980px;}
.y7f_c01248{bottom:482.761500px;}
.y7e_c01248{bottom:514.451568px;}
.y7d_c01248{bottom:521.137845px;}
.y7c_c01248{bottom:521.565774px;}
.y7b_c01248{bottom:522.716554px;}
.y7a_c01248{bottom:547.684371px;}
.y79_c01248{bottom:548.563254px;}
.y78_c01248{bottom:549.704583px;}
.y77_c01248{bottom:550.470934px;}
.y76_c01248{bottom:551.035504px;}
.y75_c01248{bottom:552.339957px;}
.y74_c01248{bottom:552.923193px;}
.y73_c01248{bottom:554.042847px;}
.y72_c01248{bottom:554.602368px;}
.y71_c01248{bottom:555.364588px;}
.y70_c01248{bottom:555.924568px;}
.y6f_c01248{bottom:557.802847px;}
.y6e_c01248{bottom:559.984500px;}
.y6d_c01248{bottom:586.020075px;}
.y6c_c01248{bottom:586.250970px;}
.y6b_c01248{bottom:591.549774px;}
.y6a_c01248{bottom:592.013664px;}
.y69_c01248{bottom:592.955535px;}
.y68_c01248{bottom:593.524299px;}
.y67_c01248{bottom:594.028950px;}
.y66_c01248{bottom:595.079643px;}
.y65_c01248{bottom:618.461154px;}
.y64_c01248{bottom:619.276521px;}
.y63_c01248{bottom:619.899780px;}
.y62_c01248{bottom:621.139872px;}
.y61_c01248{bottom:622.391766px;}
.y60_c01248{bottom:622.697274px;}
.y5f_c01248{bottom:624.251505px;}
.y5e_c01248{bottom:624.852840px;}
.y5d_c01248{bottom:625.329183px;}
.y5c_c01248{bottom:626.886648px;}
.y5b_c01248{bottom:628.384221px;}
.y5a_c01248{bottom:628.831500px;}
.y59_c01248{bottom:660.327180px;}
.y58_c01248{bottom:662.511999px;}
.y57_c01248{bottom:663.929640px;}
.y56_c01248{bottom:689.897805px;}
.y55_c01248{bottom:691.300416px;}
.y54_c01248{bottom:691.773021px;}
.y53_c01248{bottom:692.392458px;}
.y52_c01248{bottom:693.314841px;}
.y51_c01248{bottom:693.628497px;}
.y50_c01248{bottom:694.850172px;}
.y4f_c01248{bottom:695.795445px;}
.y4e_c01248{bottom:697.349130px;}
.y4d_c01248{bottom:698.857140px;}
.y4c_c01248{bottom:699.301500px;}
.y4b_c01248{bottom:731.798592px;}
.y4a_c01248{bottom:732.035592px;}
.y49_c01248{bottom:732.499932px;}
.y48_c01248{bottom:732.735528px;}
.y47_c01248{bottom:733.097436px;}
.y46_c01248{bottom:733.351440px;}
.y45_c01248{bottom:733.578816px;}
.y44_c01248{bottom:764.041260px;}
.y43_c01248{bottom:764.573964px;}
.y42_c01248{bottom:764.935524px;}
.y41_c01248{bottom:765.285912px;}
.y40_c01248{bottom:766.261164px;}
.y3f_c01248{bottom:766.961796px;}
.y3e_c01248{bottom:767.495148px;}
.y3d_c01248{bottom:768.386808px;}
.y3c_c01248{bottom:769.246524px;}
.y3b_c01248{bottom:769.494648px;}
.y3a_c01248{bottom:794.218692px;}
.y35_c01248{bottom:794.720256px;}
.y39_c01248{bottom:797.407572px;}
.y38_c01248{bottom:797.580648px;}
.y37_c01248{bottom:798.142632px;}
.y36_c01248{bottom:799.477368px;}
.y34_c01248{bottom:800.904936px;}
.y33_c01248{bottom:801.789936px;}
.y32_c01248{bottom:802.836552px;}
.y31_c01248{bottom:803.726424px;}
.y30_c01248{bottom:805.143000px;}
.y2f_c01248{bottom:830.841921px;}
.y2e_c01248{bottom:831.473328px;}
.y2d_c01248{bottom:832.543026px;}
.y2c_c01248{bottom:833.011284px;}
.y2b_c01248{bottom:834.584457px;}
.y2a_c01248{bottom:834.868986px;}
.y29_c01248{bottom:835.975623px;}
.y28_c01248{bottom:836.732022px;}
.y27_c01248{bottom:838.293120px;}
.y26_c01248{bottom:839.793465px;}
.y25_c01248{bottom:840.241500px;}
.y24_c01248{bottom:904.677000px;}
.y23_c01248{bottom:905.205000px;}
.y22_c01248{bottom:906.151500px;}
.y21_c01248{bottom:906.576000px;}
.y20_c01248{bottom:907.006500px;}
.y1f_c01248{bottom:907.473000px;}
.y1e_c01248{bottom:908.548500px;}
.y1d_c01248{bottom:909.199500px;}
.y1c_c01248{bottom:909.861000px;}
.y1b_c01248{bottom:911.196000px;}
.y1a_c01248{bottom:912.478500px;}
.y19_c01248{bottom:912.868500px;}
.y18_c01248{bottom:946.252500px;}
.y17_c01248{bottom:974.209500px;}
.y16_c01248{bottom:975.061500px;}
.y15_c01248{bottom:975.676500px;}
.y14_c01248{bottom:977.379000px;}
.y13_c01248{bottom:977.637000px;}
.y12_c01248{bottom:979.449000px;}
.y11_c01248{bottom:980.185500px;}
.y10_c01248{bottom:981.373500px;}
.yf_c01248{bottom:981.720000px;}
.ye_c01248{bottom:1015.354500px;}
.yd_c01248{bottom:1043.615736px;}
.yc_c01248{bottom:1044.937836px;}
.yb_c01248{bottom:1045.342926px;}
.ya_c01248{bottom:1046.256624px;}
.y9_c01248{bottom:1046.674674px;}
.y8_c01248{bottom:1047.199158px;}
.y7_c01248{bottom:1048.398534px;}
.y6_c01248{bottom:1049.055930px;}
.y5_c01248{bottom:1049.451804px;}
.y4_c01248{bottom:1049.850144px;}
.y3_c01248{bottom:1051.145964px;}
.y2_c01248{bottom:1051.650000px;}
.y1_c01248{bottom:1155.139500px;}
.h8_c01248{height:24.003072px;}
.hb_c01248{height:36.003528px;}
.h5_c01248{height:72.000000px;}
.hc_c01248{height:72.007056px;}
.h7_c01248{height:72.009215px;}
.hd_c01248{height:72.010403px;}
.h17_c01248{height:77.984437px;}
.h4_c01248{height:78.000000px;}
.h15_c01248{height:78.003159px;}
.h3_c01248{height:78.005616px;}
.ha_c01248{height:78.007644px;}
.h9_c01248{height:78.009983px;}
.h2_c01248{height:84.000000px;}
.h16_c01248{height:84.003402px;}
.h14_c01248{height:84.005082px;}
.h6_c01248{height:84.008232px;}
.hf_c01248{height:84.009449px;}
.he_c01248{height:84.012137px;}
.h13_c01248{height:96.010799px;}
.h10_c01248{height:102.016523px;}
.h12_c01248{height:150.010800px;}
.h11_c01248{height:150.014699px;}
.h1_c01248{height:1258.500000px;}
.h0_c01248{height:1258.740000px;}
.w1_c01248{width:899.250000px;}
.w0_c01248{width:899.370000px;}
.x0_c01248{left:0.000000px;}
.x65_c01248{left:141.100500px;}
.x3e_c01248{left:142.222500px;}
.x18_c01248{left:143.325000px;}
.x5_c01248{left:145.215000px;}
.x7b_c01248{left:149.193000px;}
.x53_c01248{left:152.521500px;}
.x5e_c01248{left:171.516000px;}
.x33_c01248{left:174.300216px;}
.x10_c01248{left:175.899000px;}
.x6_c01248{left:187.218000px;}
.x17_c01248{left:194.937000px;}
.x1_c01248{left:197.370000px;}
.x2e_c01248{left:224.025012px;}
.x80_c01248{left:225.990602px;}
.x28_c01248{left:227.389500px;}
.x4c_c01248{left:228.515031px;}
.x66_c01248{left:238.276500px;}
.x67_c01248{left:248.679000px;}
.x81_c01248{left:258.931775px;}
.x3a_c01248{left:260.472096px;}
.x6e_c01248{left:270.496500px;}
.x59_c01248{left:272.668500px;}
.x75_c01248{left:280.308000px;}
.x34_c01248{left:281.764968px;}
.x19_c01248{left:282.778500px;}
.x11_c01248{left:283.867500px;}
.x2_c01248{left:295.650000px;}
.x3b_c01248{left:296.696304px;}
.x82_c01248{left:302.024265px;}
.x4d_c01248{left:303.564531px;}
.x29_c01248{left:315.925500px;}
.x7c_c01248{left:325.753500px;}
.x7_c01248{left:328.398000px;}
.x43_c01248{left:337.317279px;}
.x4e_c01248{left:339.611031px;}
.x6f_c01248{left:347.158500px;}
.x3c_c01248{left:348.479268px;}
.x12_c01248{left:350.836500px;}
.x78_c01248{left:358.116000px;}
.x8_c01248{left:361.387500px;}
.x83_c01248{left:368.367356px;}
.x76_c01248{left:369.880500px;}
.x2a_c01248{left:371.542500px;}
.x4f_c01248{left:380.237031px;}
.x3d_c01248{left:382.240140px;}
.x2f_c01248{left:390.904872px;}
.x3f_c01248{left:392.655000px;}
.x1a_c01248{left:394.012500px;}
.x3_c01248{left:395.280000px;}
.x5a_c01248{left:402.523500px;}
.x79_c01248{left:403.749000px;}
.x9_c01248{left:416.170500px;}
.x54_c01248{left:424.281000px;}
.x45_c01248{left:426.135000px;}
.x4_c01248{left:429.030000px;}
.x6a_c01248{left:435.408000px;}
.x2b_c01248{left:436.956000px;}
.x23_c01248{left:448.008000px;}
.x1b_c01248{left:449.133000px;}
.x70_c01248{left:455.961000px;}
.x5f_c01248{left:457.174500px;}
.x35_c01248{left:460.007292px;}
.x30_c01248{left:461.100348px;}
.x46_c01248{left:469.087500px;}
.x50_c01248{left:480.648531px;}
.x31_c01248{left:482.701608px;}
.x68_c01248{left:489.621000px;}
.x2c_c01248{left:492.268500px;}
.x55_c01248{left:502.030500px;}
.x1c_c01248{left:503.373000px;}
.x44_c01248{left:505.378131px;}
.x5b_c01248{left:512.941500px;}
.xa_c01248{left:516.118500px;}
.x60_c01248{left:524.688000px;}
.x24_c01248{left:527.053500px;}
.x71_c01248{left:533.985000px;}
.x13_c01248{left:539.035500px;}
.x25_c01248{left:547.377000px;}
.x7d_c01248{left:556.359000px;}
.x7a_c01248{left:557.412000px;}
.xb_c01248{left:559.825500px;}
.x56_c01248{left:567.892500px;}
.x40_c01248{left:569.841000px;}
.x69_c01248{left:577.092000px;}
.x72_c01248{left:578.262000px;}
.x47_c01248{left:580.104000px;}
.x5c_c01248{left:589.072500px;}
.x6b_c01248{left:590.613000px;}
.x1d_c01248{left:593.052000px;}
.xc_c01248{left:594.663000px;}
.x48_c01248{left:601.926000px;}
.x61_c01248{left:612.742500px;}
.x6c_c01248{left:624.084000px;}
.x1e_c01248{left:631.929000px;}
.x77_c01248{left:634.633500px;}
.x41_c01248{left:635.725500px;}
.x62_c01248{left:645.996000px;}
.x5d_c01248{left:657.645000px;}
.x26_c01248{left:659.746500px;}
.x73_c01248{left:666.546000px;}
.x1f_c01248{left:667.801500px;}
.x36_c01248{left:669.308052px;}
.xd_c01248{left:670.804500px;}
.x57_c01248{left:678.933000px;}
.x42_c01248{left:679.971000px;}
.x49_c01248{left:691.347000px;}
.x14_c01248{left:693.741000px;}
.x20_c01248{left:703.186500px;}
.xe_c01248{left:704.562000px;}
.x74_c01248{left:710.823000px;}
.x37_c01248{left:713.056644px;}
.x7e_c01248{left:723.544500px;}
.x63_c01248{left:734.782500px;}
.x15_c01248{left:749.632500px;}
.x38_c01248{left:758.159904px;}
.x27_c01248{left:769.600500px;}
.x64_c01248{left:778.824000px;}
.x4a_c01248{left:779.925000px;}
.x21_c01248{left:782.019000px;}
.x7f_c01248{left:800.488500px;}
.xf_c01248{left:814.737000px;}
.x39_c01248{left:824.837448px;}
.x22_c01248{left:826.029000px;}
.x16_c01248{left:827.128500px;}
.x51_c01248{left:859.134531px;}
.x58_c01248{left:862.448774px;}
.x6d_c01248{left:872.883000px;}
.x52_c01248{left:875.627031px;}
.x2d_c01248{left:878.811000px;}
.x32_c01248{left:881.370132px;}
.x4b_c01248{left:882.684000px;}
@media print{
.v0_c01248{vertical-align:0.000000pt;}
.ls0_c01248{letter-spacing:0.000000pt;}
.ws0_c01248{word-spacing:0.000000pt;}
._0_c01248{margin-left:-27.688941pt;}
.fs6_c01248{font-size:21.336064pt;}
.fs9_c01248{font-size:32.003136pt;}
.fs3_c01248{font-size:64.000000pt;}
.fsa_c01248{font-size:64.006272pt;}
.fs5_c01248{font-size:64.008191pt;}
.fsb_c01248{font-size:64.009247pt;}
.fs15_c01248{font-size:69.319500pt;}
.fs2_c01248{font-size:69.333333pt;}
.fs13_c01248{font-size:69.336141pt;}
.fs1_c01248{font-size:69.338325pt;}
.fs8_c01248{font-size:69.340128pt;}
.fs7_c01248{font-size:69.342207pt;}
.fs0_c01248{font-size:74.666667pt;}
.fs14_c01248{font-size:74.669691pt;}
.fs12_c01248{font-size:74.671184pt;}
.fs4_c01248{font-size:74.673984pt;}
.fsd_c01248{font-size:74.675066pt;}
.fsc_c01248{font-size:74.677455pt;}
.fs11_c01248{font-size:85.342933pt;}
.fse_c01248{font-size:90.681353pt;}
.fs10_c01248{font-size:133.342933pt;}
.fsf_c01248{font-size:133.346399pt;}
.y0_c01248{bottom:0.000000pt;}
.yd6_c01248{bottom:141.394560pt;}
.yd5_c01248{bottom:144.112640pt;}
.yd4_c01248{bottom:150.776213pt;}
.yd3_c01248{bottom:151.985973pt;}
.yd2_c01248{bottom:154.347200pt;}
.yd1_c01248{bottom:158.960747pt;}
.yd0_c01248{bottom:160.080000pt;}
.ycc_c01248{bottom:180.744477pt;}
.ycd_c01248{bottom:180.744969pt;}
.yce_c01248{bottom:180.745127pt;}
.ycf_c01248{bottom:180.745456pt;}
.ycb_c01248{bottom:206.165592pt;}
.yca_c01248{bottom:206.325852pt;}
.yc9_c01248{bottom:206.781144pt;}
.yc8_c01248{bottom:207.018480pt;}
.yc7_c01248{bottom:207.407652pt;}
.yc6_c01248{bottom:207.848640pt;}
.yc5_c01248{bottom:208.118628pt;}
.yc4_c01248{bottom:208.466388pt;}
.yc3_c01248{bottom:208.915704pt;}
.yc2_c01248{bottom:209.174796pt;}
.yc1_c01248{bottom:209.963472pt;}
.yc0_c01248{bottom:210.410688pt;}
.ybf_c01248{bottom:211.375956pt;}
.ybe_c01248{bottom:211.440000pt;}
.ybd_c01248{bottom:238.812523pt;}
.ybc_c01248{bottom:239.137287pt;}
.ybb_c01248{bottom:240.315005pt;}
.yba_c01248{bottom:240.761195pt;}
.yb9_c01248{bottom:241.519065pt;}
.yb8_c01248{bottom:242.585244pt;}
.yb7_c01248{bottom:242.880000pt;}
.yb6_c01248{bottom:269.661593pt;}
.yb5_c01248{bottom:270.104713pt;}
.yb4_c01248{bottom:271.858853pt;}
.yb3_c01248{bottom:272.438773pt;}
.yb2_c01248{bottom:273.191633pt;}
.yb1_c01248{bottom:274.385933pt;}
.yb0_c01248{bottom:274.814173pt;}
.yaf_c01248{bottom:275.840113pt;}
.yae_c01248{bottom:276.241333pt;}
.yad_c01248{bottom:294.406853pt;}
.yac_c01248{bottom:294.879141pt;}
.yab_c01248{bottom:295.204565pt;}
.yaa_c01248{bottom:295.820837pt;}
.ya9_c01248{bottom:296.293125pt;}
.ya8_c01248{bottom:297.125381pt;}
.ya7_c01248{bottom:298.285941pt;}
.ya6_c01248{bottom:299.103669pt;}
.ya5_c01248{bottom:300.159797pt;}
.ya4_c01248{bottom:300.481333pt;}
.ya3_c01248{bottom:329.106213pt;}
.ya2_c01248{bottom:329.264041pt;}
.ya1_c01248{bottom:333.023671pt;}
.ya0_c01248{bottom:333.529455pt;}
.y9f_c01248{bottom:334.859897pt;}
.y9e_c01248{bottom:335.874775pt;}
.y9d_c01248{bottom:336.382349pt;}
.y9c_c01248{bottom:337.194564pt;}
.y9b_c01248{bottom:338.202256pt;}
.y9a_c01248{bottom:339.870251pt;}
.y99_c01248{bottom:340.326667pt;}
.y98_c01248{bottom:356.865307pt;}
.y97_c01248{bottom:359.729016pt;}
.y96_c01248{bottom:360.575661pt;}
.y95_c01248{bottom:361.664189pt;}
.y94_c01248{bottom:364.662579pt;}
.y93_c01248{bottom:364.792032pt;}
.y92_c01248{bottom:365.613029pt;}
.y91_c01248{bottom:366.001333pt;}
.y90_c01248{bottom:392.771773pt;}
.y8f_c01248{bottom:393.476437pt;}
.y8e_c01248{bottom:394.897021pt;}
.y8d_c01248{bottom:395.429077pt;}
.y8c_c01248{bottom:396.150085pt;}
.y8b_c01248{bottom:396.837949pt;}
.y8a_c01248{bottom:397.918165pt;}
.y89_c01248{bottom:399.651061pt;}
.y88_c01248{bottom:400.731205pt;}
.y87_c01248{bottom:402.488701pt;}
.y86_c01248{bottom:402.961333pt;}
.y85_c01248{bottom:422.237413pt;}
.y84_c01248{bottom:423.151713pt;}
.y83_c01248{bottom:424.166793pt;}
.y82_c01248{bottom:425.639033pt;}
.y81_c01248{bottom:427.370433pt;}
.y80_c01248{bottom:428.695093pt;}
.y7f_c01248{bottom:429.121333pt;}
.y7e_c01248{bottom:457.290283pt;}
.y7d_c01248{bottom:463.233640pt;}
.y7c_c01248{bottom:463.614021pt;}
.y7b_c01248{bottom:464.636937pt;}
.y7a_c01248{bottom:486.830552pt;}
.y79_c01248{bottom:487.611781pt;}
.y78_c01248{bottom:488.626296pt;}
.y77_c01248{bottom:489.307497pt;}
.y76_c01248{bottom:489.809337pt;}
.y75_c01248{bottom:490.968851pt;}
.y74_c01248{bottom:491.487283pt;}
.y73_c01248{bottom:492.482531pt;}
.y72_c01248{bottom:492.979883pt;}
.y71_c01248{bottom:493.657412pt;}
.y70_c01248{bottom:494.155172pt;}
.y6f_c01248{bottom:495.824753pt;}
.y6e_c01248{bottom:497.764000pt;}
.y6d_c01248{bottom:520.906733pt;}
.y6c_c01248{bottom:521.111973pt;}
.y6b_c01248{bottom:525.822021pt;}
.y6a_c01248{bottom:526.234368pt;}
.y69_c01248{bottom:527.071587pt;}
.y68_c01248{bottom:527.577155pt;}
.y67_c01248{bottom:528.025733pt;}
.y66_c01248{bottom:528.959683pt;}
.y65_c01248{bottom:549.743248pt;}
.y64_c01248{bottom:550.468019pt;}
.y63_c01248{bottom:551.022027pt;}
.y62_c01248{bottom:552.124331pt;}
.y61_c01248{bottom:553.237125pt;}
.y60_c01248{bottom:553.508688pt;}
.y5f_c01248{bottom:554.890227pt;}
.y5e_c01248{bottom:555.424747pt;}
.y5d_c01248{bottom:555.848163pt;}
.y5c_c01248{bottom:557.232576pt;}
.y5b_c01248{bottom:558.563752pt;}
.y5a_c01248{bottom:558.961333pt;}
.y59_c01248{bottom:586.957493pt;}
.y58_c01248{bottom:588.899555pt;}
.y57_c01248{bottom:590.159680pt;}
.y56_c01248{bottom:613.242493pt;}
.y55_c01248{bottom:614.489259pt;}
.y54_c01248{bottom:614.909352pt;}
.y53_c01248{bottom:615.459963pt;}
.y52_c01248{bottom:616.279859pt;}
.y51_c01248{bottom:616.558664pt;}
.y50_c01248{bottom:617.644597pt;}
.y4f_c01248{bottom:618.484840pt;}
.y4e_c01248{bottom:619.865893pt;}
.y4d_c01248{bottom:621.206347pt;}
.y4c_c01248{bottom:621.601333pt;}
.y4b_c01248{bottom:650.487637pt;}
.y4a_c01248{bottom:650.698304pt;}
.y49_c01248{bottom:651.111051pt;}
.y48_c01248{bottom:651.320469pt;}
.y47_c01248{bottom:651.642165pt;}
.y46_c01248{bottom:651.867947pt;}
.y45_c01248{bottom:652.070059pt;}
.y44_c01248{bottom:679.147787pt;}
.y43_c01248{bottom:679.621301pt;}
.y42_c01248{bottom:679.942688pt;}
.y41_c01248{bottom:680.254144pt;}
.y40_c01248{bottom:681.121035pt;}
.y3f_c01248{bottom:681.743819pt;}
.y3e_c01248{bottom:682.217909pt;}
.y3d_c01248{bottom:683.010496pt;}
.y3c_c01248{bottom:683.774688pt;}
.y3b_c01248{bottom:683.995243pt;}
.y3a_c01248{bottom:705.972171pt;}
.y35_c01248{bottom:706.418005pt;}
.y39_c01248{bottom:708.806731pt;}
.y38_c01248{bottom:708.960576pt;}
.y37_c01248{bottom:709.460117pt;}
.y36_c01248{bottom:710.646549pt;}
.y34_c01248{bottom:711.915499pt;}
.y33_c01248{bottom:712.702165pt;}
.y32_c01248{bottom:713.632491pt;}
.y31_c01248{bottom:714.423488pt;}
.y30_c01248{bottom:715.682667pt;}
.y2f_c01248{bottom:738.526152pt;}
.y2e_c01248{bottom:739.087403pt;}
.y2d_c01248{bottom:740.038245pt;}
.y2c_c01248{bottom:740.454475pt;}
.y2b_c01248{bottom:741.852851pt;}
.y2a_c01248{bottom:742.105765pt;}
.y29_c01248{bottom:743.089443pt;}
.y28_c01248{bottom:743.761797pt;}
.y27_c01248{bottom:745.149440pt;}
.y26_c01248{bottom:746.483080pt;}
.y25_c01248{bottom:746.881333pt;}
.y24_c01248{bottom:804.157333pt;}
.y23_c01248{bottom:804.626667pt;}
.y22_c01248{bottom:805.468000pt;}
.y21_c01248{bottom:805.845333pt;}
.y20_c01248{bottom:806.228000pt;}
.y1f_c01248{bottom:806.642667pt;}
.y1e_c01248{bottom:807.598667pt;}
.y1d_c01248{bottom:808.177333pt;}
.y1c_c01248{bottom:808.765333pt;}
.y1b_c01248{bottom:809.952000pt;}
.y1a_c01248{bottom:811.092000pt;}
.y19_c01248{bottom:811.438667pt;}
.y18_c01248{bottom:841.113333pt;}
.y17_c01248{bottom:865.964000pt;}
.y16_c01248{bottom:866.721333pt;}
.y15_c01248{bottom:867.268000pt;}
.y14_c01248{bottom:868.781333pt;}
.y13_c01248{bottom:869.010667pt;}
.y12_c01248{bottom:870.621333pt;}
.y11_c01248{bottom:871.276000pt;}
.y10_c01248{bottom:872.332000pt;}
.yf_c01248{bottom:872.640000pt;}
.ye_c01248{bottom:902.537333pt;}
.yd_c01248{bottom:927.658432pt;}
.yc_c01248{bottom:928.833632pt;}
.yb_c01248{bottom:929.193712pt;}
.ya_c01248{bottom:930.005888pt;}
.y9_c01248{bottom:930.377488pt;}
.y8_c01248{bottom:930.843696pt;}
.y7_c01248{bottom:931.909808pt;}
.y6_c01248{bottom:932.494160pt;}
.y5_c01248{bottom:932.846048pt;}
.y4_c01248{bottom:933.200128pt;}
.y3_c01248{bottom:934.351968pt;}
.y2_c01248{bottom:934.800000pt;}
.y1_c01248{bottom:1026.790667pt;}
.h8_c01248{height:21.336064pt;}
.hb_c01248{height:32.003136pt;}
.h5_c01248{height:64.000000pt;}
.hc_c01248{height:64.006272pt;}
.h7_c01248{height:64.008191pt;}
.hd_c01248{height:64.009247pt;}
.h17_c01248{height:69.319500pt;}
.h4_c01248{height:69.333333pt;}
.h15_c01248{height:69.336141pt;}
.h3_c01248{height:69.338325pt;}
.ha_c01248{height:69.340128pt;}
.h9_c01248{height:69.342207pt;}
.h2_c01248{height:74.666667pt;}
.h16_c01248{height:74.669691pt;}
.h14_c01248{height:74.671184pt;}
.h6_c01248{height:74.673984pt;}
.hf_c01248{height:74.675066pt;}
.he_c01248{height:74.677455pt;}
.h13_c01248{height:85.342933pt;}
.h10_c01248{height:90.681353pt;}
.h12_c01248{height:133.342933pt;}
.h11_c01248{height:133.346399pt;}
.h1_c01248{height:1118.666667pt;}
.h0_c01248{height:1118.880000pt;}
.w1_c01248{width:799.333333pt;}
.w0_c01248{width:799.440000pt;}
.x0_c01248{left:0.000000pt;}
.x65_c01248{left:125.422667pt;}
.x3e_c01248{left:126.420000pt;}
.x18_c01248{left:127.400000pt;}
.x5_c01248{left:129.080000pt;}
.x7b_c01248{left:132.616000pt;}
.x53_c01248{left:135.574667pt;}
.x5e_c01248{left:152.458667pt;}
.x33_c01248{left:154.933525pt;}
.x10_c01248{left:156.354667pt;}
.x6_c01248{left:166.416000pt;}
.x17_c01248{left:173.277333pt;}
.x1_c01248{left:175.440000pt;}
.x2e_c01248{left:199.133344pt;}
.x80_c01248{left:200.880535pt;}
.x28_c01248{left:202.124000pt;}
.x4c_c01248{left:203.124472pt;}
.x66_c01248{left:211.801333pt;}
.x67_c01248{left:221.048000pt;}
.x81_c01248{left:230.161577pt;}
.x3a_c01248{left:231.530752pt;}
.x6e_c01248{left:240.441333pt;}
.x59_c01248{left:242.372000pt;}
.x75_c01248{left:249.162667pt;}
.x34_c01248{left:250.457749pt;}
.x19_c01248{left:251.358667pt;}
.x11_c01248{left:252.326667pt;}
.x2_c01248{left:262.800000pt;}
.x3b_c01248{left:263.730048pt;}
.x82_c01248{left:268.466013pt;}
.x4d_c01248{left:269.835139pt;}
.x29_c01248{left:280.822667pt;}
.x7c_c01248{left:289.558667pt;}
.x7_c01248{left:291.909333pt;}
.x43_c01248{left:299.837581pt;}
.x4e_c01248{left:301.876472pt;}
.x6f_c01248{left:308.585333pt;}
.x3c_c01248{left:309.759349pt;}
.x12_c01248{left:311.854667pt;}
.x78_c01248{left:318.325333pt;}
.x8_c01248{left:321.233333pt;}
.x83_c01248{left:327.437649pt;}
.x76_c01248{left:328.782667pt;}
.x2a_c01248{left:330.260000pt;}
.x4f_c01248{left:337.988472pt;}
.x3d_c01248{left:339.769013pt;}
.x2f_c01248{left:347.470997pt;}
.x3f_c01248{left:349.026667pt;}
.x1a_c01248{left:350.233333pt;}
.x3_c01248{left:351.360000pt;}
.x5a_c01248{left:357.798667pt;}
.x79_c01248{left:358.888000pt;}
.x9_c01248{left:369.929333pt;}
.x54_c01248{left:377.138667pt;}
.x45_c01248{left:378.786667pt;}
.x4_c01248{left:381.360000pt;}
.x6a_c01248{left:387.029333pt;}
.x2b_c01248{left:388.405333pt;}
.x23_c01248{left:398.229333pt;}
.x1b_c01248{left:399.229333pt;}
.x70_c01248{left:405.298667pt;}
.x5f_c01248{left:406.377333pt;}
.x35_c01248{left:408.895371pt;}
.x30_c01248{left:409.866976pt;}
.x46_c01248{left:416.966667pt;}
.x50_c01248{left:427.243139pt;}
.x31_c01248{left:429.068096pt;}
.x68_c01248{left:435.218667pt;}
.x2c_c01248{left:437.572000pt;}
.x55_c01248{left:446.249333pt;}
.x1c_c01248{left:447.442667pt;}
.x44_c01248{left:449.225005pt;}
.x5b_c01248{left:455.948000pt;}
.xa_c01248{left:458.772000pt;}
.x60_c01248{left:466.389333pt;}
.x24_c01248{left:468.492000pt;}
.x71_c01248{left:474.653333pt;}
.x13_c01248{left:479.142667pt;}
.x25_c01248{left:486.557333pt;}
.x7d_c01248{left:494.541333pt;}
.x7a_c01248{left:495.477333pt;}
.xb_c01248{left:497.622667pt;}
.x56_c01248{left:504.793333pt;}
.x40_c01248{left:506.525333pt;}
.x69_c01248{left:512.970667pt;}
.x72_c01248{left:514.010667pt;}
.x47_c01248{left:515.648000pt;}
.x5c_c01248{left:523.620000pt;}
.x6b_c01248{left:524.989333pt;}
.x1d_c01248{left:527.157333pt;}
.xc_c01248{left:528.589333pt;}
.x48_c01248{left:535.045333pt;}
.x61_c01248{left:544.660000pt;}
.x6c_c01248{left:554.741333pt;}
.x1e_c01248{left:561.714667pt;}
.x77_c01248{left:564.118667pt;}
.x41_c01248{left:565.089333pt;}
.x62_c01248{left:574.218667pt;}
.x5d_c01248{left:584.573333pt;}
.x26_c01248{left:586.441333pt;}
.x73_c01248{left:592.485333pt;}
.x1f_c01248{left:593.601333pt;}
.x36_c01248{left:594.940491pt;}
.xd_c01248{left:596.270667pt;}
.x57_c01248{left:603.496000pt;}
.x42_c01248{left:604.418667pt;}
.x49_c01248{left:614.530667pt;}
.x14_c01248{left:616.658667pt;}
.x20_c01248{left:625.054667pt;}
.xe_c01248{left:626.277333pt;}
.x74_c01248{left:631.842667pt;}
.x37_c01248{left:633.828128pt;}
.x7e_c01248{left:643.150667pt;}
.x63_c01248{left:653.140000pt;}
.x15_c01248{left:666.340000pt;}
.x38_c01248{left:673.919915pt;}
.x27_c01248{left:684.089333pt;}
.x64_c01248{left:692.288000pt;}
.x4a_c01248{left:693.266667pt;}
.x21_c01248{left:695.128000pt;}
.x7f_c01248{left:711.545333pt;}
.xf_c01248{left:724.210667pt;}
.x39_c01248{left:733.188843pt;}
.x22_c01248{left:734.248000pt;}
.x16_c01248{left:735.225333pt;}
.x51_c01248{left:763.675139pt;}
.x58_c01248{left:766.621132pt;}
.x6d_c01248{left:775.896000pt;}
.x52_c01248{left:778.335139pt;}
.x2d_c01248{left:781.165333pt;}
.x32_c01248{left:783.440117pt;}
.x4b_c01248{left:784.608000pt;}
}





/* 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_c01249 {
    display:none;
  }
  .loading-indicator_c01249.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01249 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_c01249 { 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_c01249" -> "#page-container .classname_c01249")
 */
.pf_c01249 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01249 { /* 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_c01249.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01249 { /* 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_c01249 { /* 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_c01249 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01249 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01249 {overflow:visible;}
  }
}
.c_c01249 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01249 { /* 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_c01249:after { /* webkit #35443 */
  content: '';
}
.t_c01249:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01249 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 */
}
.__c01249 { /* 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_c01249 { /* info for Javascript */
  display:none;
}
.l_c01249 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01249 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01249 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01249: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_c01249 {
    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_c01249.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01249.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_c01249 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01249{font-family:sans-serif;visibility:hidden;}
.sc__c01249{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01249{-webkit-text-stroke:0px transparent;}
}
.y0_c01249{bottom:0.000000px;}
.h1_c01249{height:1258.500000px;}
.h0_c01249{height:1258.740000px;}
.w1_c01249{width:899.250000px;}
.w0_c01249{width:899.370000px;}
.x0_c01249{left:0.000000px;}
@media print{
.y0_c01249{bottom:0.000000pt;}
.h1_c01249{height:1118.666667pt;}
.h0_c01249{height:1118.880000pt;}
.w1_c01249{width:799.333333pt;}
.w0_c01249{width:799.440000pt;}
.x0_c01249{left:0.000000pt;}
}





/* 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_c01250 {
    display:none;
  }
  .loading-indicator_c01250.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01250 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_c01250 { 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_c01250" -> "#page-container .classname_c01250")
 */
.pf_c01250 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01250 { /* 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_c01250.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01250 { /* 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_c01250 { /* 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_c01250 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01250 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01250 {overflow:visible;}
  }
}
.c_c01250 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01250 { /* 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_c01250:after { /* webkit #35443 */
  content: '';
}
.t_c01250:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01250 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 */
}
.__c01250 { /* 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_c01250 { /* info for Javascript */
  display:none;
}
.l_c01250 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01250 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01250 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01250: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_c01250 {
    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_c01250.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01250.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_c01250 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01250{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01250;src:url('chunks/assets/font_c605e72f209fc835e906f064.woff2')format("woff");}.ff1_c01250{font-family:ff1_c01250;line-height:1.000000;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;}
.m4d_c01250{transform:matrix(0.068215,-0.001160,0.004249,0.249964,0,0);-ms-transform:matrix(0.068215,-0.001160,0.004249,0.249964,0,0);-webkit-transform:matrix(0.068215,-0.001160,0.004249,0.249964,0,0);}
.m9c_c01250{transform:matrix(0.095561,-0.001338,0.003500,0.249976,0,0);-ms-transform:matrix(0.095561,-0.001338,0.003500,0.249976,0,0);-webkit-transform:matrix(0.095561,-0.001338,0.003500,0.249976,0,0);}
.m69_c01250{transform:matrix(0.106027,-0.004564,0.010751,0.249769,0,0);-ms-transform:matrix(0.106027,-0.004564,0.010751,0.249769,0,0);-webkit-transform:matrix(0.106027,-0.004564,0.010751,0.249769,0,0);}
.m2e_c01250{transform:matrix(0.106094,-0.002546,0.005998,0.249928,0,0);-ms-transform:matrix(0.106094,-0.002546,0.005998,0.249928,0,0);-webkit-transform:matrix(0.106094,-0.002546,0.005998,0.249928,0,0);}
.m2_c01250{transform:matrix(0.111126,-0.001778,0.003999,0.249968,0,0);-ms-transform:matrix(0.111126,-0.001778,0.003999,0.249968,0,0);-webkit-transform:matrix(0.111126,-0.001778,0.003999,0.249968,0,0);}
.m0_c01250{transform:matrix(0.116680,-0.001867,0.003999,0.249968,0,0);-ms-transform:matrix(0.116680,-0.001867,0.003999,0.249968,0,0);-webkit-transform:matrix(0.116680,-0.001867,0.003999,0.249968,0,0);}
.m83_c01250{transform:matrix(0.130863,-0.002094,0.003999,0.249968,0,0);-ms-transform:matrix(0.130863,-0.002094,0.003999,0.249968,0,0);-webkit-transform:matrix(0.130863,-0.002094,0.003999,0.249968,0,0);}
.m5a_c01250{transform:matrix(0.131568,-0.005663,0.010751,0.249769,0,0);-ms-transform:matrix(0.131568,-0.005663,0.010751,0.249769,0,0);-webkit-transform:matrix(0.131568,-0.005663,0.010751,0.249769,0,0);}
.m2f_c01250{transform:matrix(0.134331,-0.003224,0.005998,0.249928,0,0);-ms-transform:matrix(0.134331,-0.003224,0.005998,0.249928,0,0);-webkit-transform:matrix(0.134331,-0.003224,0.005998,0.249928,0,0);}
.m8d_c01250{transform:matrix(0.135883,-0.002174,0.003999,0.249968,0,0);-ms-transform:matrix(0.135883,-0.002174,0.003999,0.249968,0,0);-webkit-transform:matrix(0.135883,-0.002174,0.003999,0.249968,0,0);}
.mb4_c01250{transform:matrix(0.136590,-0.002049,0.003750,0.249972,0,0);-ms-transform:matrix(0.136590,-0.002049,0.003750,0.249972,0,0);-webkit-transform:matrix(0.136590,-0.002049,0.003750,0.249972,0,0);}
.m82_c01250{transform:matrix(0.139092,-0.002225,0.003999,0.249968,0,0);-ms-transform:matrix(0.139092,-0.002225,0.003999,0.249968,0,0);-webkit-transform:matrix(0.139092,-0.002225,0.003999,0.249968,0,0);}
.m6a_c01250{transform:matrix(0.139326,-0.005997,0.010751,0.249769,0,0);-ms-transform:matrix(0.139326,-0.005997,0.010751,0.249769,0,0);-webkit-transform:matrix(0.139326,-0.005997,0.010751,0.249769,0,0);}
.mb3_c01250{transform:matrix(0.140899,-0.002113,0.003750,0.249972,0,0);-ms-transform:matrix(0.140899,-0.002113,0.003750,0.249972,0,0);-webkit-transform:matrix(0.140899,-0.002113,0.003750,0.249972,0,0);}
.m4_c01250{transform:matrix(0.144831,-0.002317,0.003999,0.249968,0,0);-ms-transform:matrix(0.144831,-0.002317,0.003999,0.249968,0,0);-webkit-transform:matrix(0.144831,-0.002317,0.003999,0.249968,0,0);}
.m8f_c01250{transform:matrix(0.154950,-0.002479,0.003999,0.249968,0,0);-ms-transform:matrix(0.154950,-0.002479,0.003999,0.249968,0,0);-webkit-transform:matrix(0.154950,-0.002479,0.003999,0.249968,0,0);}
.m7_c01250{transform:matrix(0.157657,-0.002680,0.004249,0.249964,0,0);-ms-transform:matrix(0.157657,-0.002680,0.004249,0.249964,0,0);-webkit-transform:matrix(0.157657,-0.002680,0.004249,0.249964,0,0);}
.m31_c01250{transform:matrix(0.157720,-0.003785,0.005998,0.249928,0,0);-ms-transform:matrix(0.157720,-0.003785,0.005998,0.249928,0,0);-webkit-transform:matrix(0.157720,-0.003785,0.005998,0.249928,0,0);}
.m1_c01250{transform:matrix(0.159480,-0.002552,0.003999,0.249968,0,0);-ms-transform:matrix(0.159480,-0.002552,0.003999,0.249968,0,0);-webkit-transform:matrix(0.159480,-0.002552,0.003999,0.249968,0,0);}
.me_c01250{transform:matrix(0.161177,-0.002740,0.004249,0.249964,0,0);-ms-transform:matrix(0.161177,-0.002740,0.004249,0.249964,0,0);-webkit-transform:matrix(0.161177,-0.002740,0.004249,0.249964,0,0);}
.m70_c01250{transform:matrix(0.161752,-0.002426,0.003750,0.249972,0,0);-ms-transform:matrix(0.161752,-0.002426,0.003750,0.249972,0,0);-webkit-transform:matrix(0.161752,-0.002426,0.003750,0.249972,0,0);}
.m6e_c01250{transform:matrix(0.170048,-0.007319,0.010751,0.249769,0,0);-ms-transform:matrix(0.170048,-0.007319,0.010751,0.249769,0,0);-webkit-transform:matrix(0.170048,-0.007319,0.010751,0.249769,0,0);}
.m6b_c01250{transform:matrix(0.170757,-0.007350,0.010751,0.249769,0,0);-ms-transform:matrix(0.170757,-0.007350,0.010751,0.249769,0,0);-webkit-transform:matrix(0.170757,-0.007350,0.010751,0.249769,0,0);}
.m8c_c01250{transform:matrix(0.173058,-0.002769,0.003999,0.249968,0,0);-ms-transform:matrix(0.173058,-0.002769,0.003999,0.249968,0,0);-webkit-transform:matrix(0.173058,-0.002769,0.003999,0.249968,0,0);}
.mc_c01250{transform:matrix(0.173145,-0.002943,0.004249,0.249964,0,0);-ms-transform:matrix(0.173145,-0.002943,0.004249,0.249964,0,0);-webkit-transform:matrix(0.173145,-0.002943,0.004249,0.249964,0,0);}
.m32_c01250{transform:matrix(0.175160,-0.004204,0.005998,0.249928,0,0);-ms-transform:matrix(0.175160,-0.004204,0.005998,0.249928,0,0);-webkit-transform:matrix(0.175160,-0.004204,0.005998,0.249928,0,0);}
.m90_c01250{transform:matrix(0.176242,-0.002820,0.003999,0.249968,0,0);-ms-transform:matrix(0.176242,-0.002820,0.003999,0.249968,0,0);-webkit-transform:matrix(0.176242,-0.002820,0.003999,0.249968,0,0);}
.m9d_c01250{transform:matrix(0.177528,-0.002485,0.003500,0.249976,0,0);-ms-transform:matrix(0.177528,-0.002485,0.003500,0.249976,0,0);-webkit-transform:matrix(0.177528,-0.002485,0.003500,0.249976,0,0);}
.m8e_c01250{transform:matrix(0.178277,-0.002852,0.003999,0.249968,0,0);-ms-transform:matrix(0.178277,-0.002852,0.003999,0.249968,0,0);-webkit-transform:matrix(0.178277,-0.002852,0.003999,0.249968,0,0);}
.m3a_c01250{transform:matrix(0.178530,-0.007327,0.010252,0.249790,0,0);-ms-transform:matrix(0.178530,-0.007327,0.010252,0.249790,0,0);-webkit-transform:matrix(0.178530,-0.007327,0.010252,0.249790,0,0);}
.m6c_c01250{transform:matrix(0.179319,-0.007718,0.010751,0.249769,0,0);-ms-transform:matrix(0.179319,-0.007718,0.010751,0.249769,0,0);-webkit-transform:matrix(0.179319,-0.007718,0.010751,0.249769,0,0);}
.m30_c01250{transform:matrix(0.180953,-0.004343,0.005998,0.249928,0,0);-ms-transform:matrix(0.180953,-0.004343,0.005998,0.249928,0,0);-webkit-transform:matrix(0.180953,-0.004343,0.005998,0.249928,0,0);}
.m35_c01250{transform:matrix(0.181928,-0.004366,0.005998,0.249928,0,0);-ms-transform:matrix(0.181928,-0.004366,0.005998,0.249928,0,0);-webkit-transform:matrix(0.181928,-0.004366,0.005998,0.249928,0,0);}
.m94_c01250{transform:matrix(0.182597,-0.002922,0.003999,0.249968,0,0);-ms-transform:matrix(0.182597,-0.002922,0.003999,0.249968,0,0);-webkit-transform:matrix(0.182597,-0.002922,0.003999,0.249968,0,0);}
.m92_c01250{transform:matrix(0.183562,-0.002937,0.003999,0.249968,0,0);-ms-transform:matrix(0.183562,-0.002937,0.003999,0.249968,0,0);-webkit-transform:matrix(0.183562,-0.002937,0.003999,0.249968,0,0);}
.m34_c01250{transform:matrix(0.183867,-0.004413,0.005998,0.249928,0,0);-ms-transform:matrix(0.183867,-0.004413,0.005998,0.249928,0,0);-webkit-transform:matrix(0.183867,-0.004413,0.005998,0.249928,0,0);}
.m22_c01250{transform:matrix(0.183873,-0.004781,0.006498,0.249916,0,0);-ms-transform:matrix(0.183873,-0.004781,0.006498,0.249916,0,0);-webkit-transform:matrix(0.183873,-0.004781,0.006498,0.249916,0,0);}
.m93_c01250{transform:matrix(0.184166,-0.002947,0.003999,0.249968,0,0);-ms-transform:matrix(0.184166,-0.002947,0.003999,0.249968,0,0);-webkit-transform:matrix(0.184166,-0.002947,0.003999,0.249968,0,0);}
.m33_c01250{transform:matrix(0.184807,-0.004435,0.005998,0.249928,0,0);-ms-transform:matrix(0.184807,-0.004435,0.005998,0.249928,0,0);-webkit-transform:matrix(0.184807,-0.004435,0.005998,0.249928,0,0);}
.m6d_c01250{transform:matrix(0.185918,-0.008002,0.010751,0.249769,0,0);-ms-transform:matrix(0.185918,-0.008002,0.010751,0.249769,0,0);-webkit-transform:matrix(0.185918,-0.008002,0.010751,0.249769,0,0);}
.m6f_c01250{transform:matrix(0.186692,-0.008036,0.010751,0.249769,0,0);-ms-transform:matrix(0.186692,-0.008036,0.010751,0.249769,0,0);-webkit-transform:matrix(0.186692,-0.008036,0.010751,0.249769,0,0);}
.ma_c01250{transform:matrix(0.188878,-0.003211,0.004249,0.249964,0,0);-ms-transform:matrix(0.188878,-0.003211,0.004249,0.249964,0,0);-webkit-transform:matrix(0.188878,-0.003211,0.004249,0.249964,0,0);}
.mf_c01250{transform:matrix(0.190377,-0.003236,0.004249,0.249964,0,0);-ms-transform:matrix(0.190377,-0.003236,0.004249,0.249964,0,0);-webkit-transform:matrix(0.190377,-0.003236,0.004249,0.249964,0,0);}
.m91_c01250{transform:matrix(0.192575,-0.003081,0.003999,0.249968,0,0);-ms-transform:matrix(0.192575,-0.003081,0.003999,0.249968,0,0);-webkit-transform:matrix(0.192575,-0.003081,0.003999,0.249968,0,0);}
.m95_c01250{transform:matrix(0.192625,-0.003082,0.003999,0.249968,0,0);-ms-transform:matrix(0.192625,-0.003082,0.003999,0.249968,0,0);-webkit-transform:matrix(0.192625,-0.003082,0.003999,0.249968,0,0);}
.m16_c01250{transform:matrix(0.195774,-0.005090,0.006498,0.249916,0,0);-ms-transform:matrix(0.195774,-0.005090,0.006498,0.249916,0,0);-webkit-transform:matrix(0.195774,-0.005090,0.006498,0.249916,0,0);}
.ma2_c01250{transform:matrix(0.195916,-0.002743,0.003500,0.249976,0,0);-ms-transform:matrix(0.195916,-0.002743,0.003500,0.249976,0,0);-webkit-transform:matrix(0.195916,-0.002743,0.003500,0.249976,0,0);}
.m5c_c01250{transform:matrix(0.196553,-0.008460,0.010751,0.249769,0,0);-ms-transform:matrix(0.196553,-0.008460,0.010751,0.249769,0,0);-webkit-transform:matrix(0.196553,-0.008460,0.010751,0.249769,0,0);}
.m36_c01250{transform:matrix(0.196618,-0.004719,0.005998,0.249928,0,0);-ms-transform:matrix(0.196618,-0.004719,0.005998,0.249928,0,0);-webkit-transform:matrix(0.196618,-0.004719,0.005998,0.249928,0,0);}
.m26_c01250{transform:matrix(0.197708,-0.005140,0.006498,0.249916,0,0);-ms-transform:matrix(0.197708,-0.005140,0.006498,0.249916,0,0);-webkit-transform:matrix(0.197708,-0.005140,0.006498,0.249916,0,0);}
.m3d_c01250{transform:matrix(0.198423,-0.008143,0.010252,0.249790,0,0);-ms-transform:matrix(0.198423,-0.008143,0.010252,0.249790,0,0);-webkit-transform:matrix(0.198423,-0.008143,0.010252,0.249790,0,0);}
.m6_c01250{transform:matrix(0.198661,-0.003377,0.004249,0.249964,0,0);-ms-transform:matrix(0.198661,-0.003377,0.004249,0.249964,0,0);-webkit-transform:matrix(0.198661,-0.003377,0.004249,0.249964,0,0);}
.m11_c01250{transform:matrix(0.199226,-0.003387,0.004249,0.249964,0,0);-ms-transform:matrix(0.199226,-0.003387,0.004249,0.249964,0,0);-webkit-transform:matrix(0.199226,-0.003387,0.004249,0.249964,0,0);}
.m65_c01250{transform:matrix(0.199515,-0.008588,0.010751,0.249769,0,0);-ms-transform:matrix(0.199515,-0.008588,0.010751,0.249769,0,0);-webkit-transform:matrix(0.199515,-0.008588,0.010751,0.249769,0,0);}
.md_c01250{transform:matrix(0.200846,-0.003414,0.004249,0.249964,0,0);-ms-transform:matrix(0.200846,-0.003414,0.004249,0.249964,0,0);-webkit-transform:matrix(0.200846,-0.003414,0.004249,0.249964,0,0);}
.m9f_c01250{transform:matrix(0.202645,-0.002837,0.003500,0.249976,0,0);-ms-transform:matrix(0.202645,-0.002837,0.003500,0.249976,0,0);-webkit-transform:matrix(0.202645,-0.002837,0.003500,0.249976,0,0);}
.m60_c01250{transform:matrix(0.203112,-0.008743,0.010751,0.249769,0,0);-ms-transform:matrix(0.203112,-0.008743,0.010751,0.249769,0,0);-webkit-transform:matrix(0.203112,-0.008743,0.010751,0.249769,0,0);}
.ma5_c01250{transform:matrix(0.204440,-0.002862,0.003500,0.249976,0,0);-ms-transform:matrix(0.204440,-0.002862,0.003500,0.249976,0,0);-webkit-transform:matrix(0.204440,-0.002862,0.003500,0.249976,0,0);}
.m9_c01250{transform:matrix(0.205845,-0.003499,0.004249,0.249964,0,0);-ms-transform:matrix(0.205845,-0.003499,0.004249,0.249964,0,0);-webkit-transform:matrix(0.205845,-0.003499,0.004249,0.249964,0,0);}
.m8a_c01250{transform:matrix(0.206234,-0.003300,0.003999,0.249968,0,0);-ms-transform:matrix(0.206234,-0.003300,0.003999,0.249968,0,0);-webkit-transform:matrix(0.206234,-0.003300,0.003999,0.249968,0,0);}
.mb_c01250{transform:matrix(0.206320,-0.003507,0.004249,0.249964,0,0);-ms-transform:matrix(0.206320,-0.003507,0.004249,0.249964,0,0);-webkit-transform:matrix(0.206320,-0.003507,0.004249,0.249964,0,0);}
.m10_c01250{transform:matrix(0.206820,-0.003516,0.004249,0.249964,0,0);-ms-transform:matrix(0.206820,-0.003516,0.004249,0.249964,0,0);-webkit-transform:matrix(0.206820,-0.003516,0.004249,0.249964,0,0);}
.m50_c01250{transform:matrix(0.207605,-0.003529,0.004249,0.249964,0,0);-ms-transform:matrix(0.207605,-0.003529,0.004249,0.249964,0,0);-webkit-transform:matrix(0.207605,-0.003529,0.004249,0.249964,0,0);}
.mac_c01250{transform:matrix(0.209134,-0.004392,0.005249,0.249945,0,0);-ms-transform:matrix(0.209134,-0.004392,0.005249,0.249945,0,0);-webkit-transform:matrix(0.209134,-0.004392,0.005249,0.249945,0,0);}
.ma1_c01250{transform:matrix(0.209209,-0.002929,0.003500,0.249976,0,0);-ms-transform:matrix(0.209209,-0.002929,0.003500,0.249976,0,0);-webkit-transform:matrix(0.209209,-0.002929,0.003500,0.249976,0,0);}
.m8_c01250{transform:matrix(0.209300,-0.003558,0.004249,0.249964,0,0);-ms-transform:matrix(0.209300,-0.003558,0.004249,0.249964,0,0);-webkit-transform:matrix(0.209300,-0.003558,0.004249,0.249964,0,0);}
.m63_c01250{transform:matrix(0.212638,-0.009153,0.010751,0.249769,0,0);-ms-transform:matrix(0.212638,-0.009153,0.010751,0.249769,0,0);-webkit-transform:matrix(0.212638,-0.009153,0.010751,0.249769,0,0);}
.m71_c01250{transform:matrix(0.212696,-0.003190,0.003750,0.249972,0,0);-ms-transform:matrix(0.212696,-0.003190,0.003750,0.249972,0,0);-webkit-transform:matrix(0.212696,-0.003190,0.003750,0.249972,0,0);}
.m67_c01250{transform:matrix(0.214082,-0.009215,0.010751,0.249769,0,0);-ms-transform:matrix(0.214082,-0.009215,0.010751,0.249769,0,0);-webkit-transform:matrix(0.214082,-0.009215,0.010751,0.249769,0,0);}
.ma6_c01250{transform:matrix(0.216329,-0.003029,0.003500,0.249976,0,0);-ms-transform:matrix(0.216329,-0.003029,0.003500,0.249976,0,0);-webkit-transform:matrix(0.216329,-0.003029,0.003500,0.249976,0,0);}
.m29_c01250{transform:matrix(0.216433,-0.005194,0.005998,0.249928,0,0);-ms-transform:matrix(0.216433,-0.005194,0.005998,0.249928,0,0);-webkit-transform:matrix(0.216433,-0.005194,0.005998,0.249928,0,0);}
.m5b_c01250{transform:matrix(0.216505,-0.009319,0.010751,0.249769,0,0);-ms-transform:matrix(0.216505,-0.009319,0.010751,0.249769,0,0);-webkit-transform:matrix(0.216505,-0.009319,0.010751,0.249769,0,0);}
.m53_c01250{transform:matrix(0.216854,-0.003687,0.004249,0.249964,0,0);-ms-transform:matrix(0.216854,-0.003687,0.004249,0.249964,0,0);-webkit-transform:matrix(0.216854,-0.003687,0.004249,0.249964,0,0);}
.m68_c01250{transform:matrix(0.218018,-0.009384,0.010751,0.249769,0,0);-ms-transform:matrix(0.218018,-0.009384,0.010751,0.249769,0,0);-webkit-transform:matrix(0.218018,-0.009384,0.010751,0.249769,0,0);}
.m85_c01250{transform:matrix(0.218637,-0.003498,0.003999,0.249968,0,0);-ms-transform:matrix(0.218637,-0.003498,0.003999,0.249968,0,0);-webkit-transform:matrix(0.218637,-0.003498,0.003999,0.249968,0,0);}
.m3b_c01250{transform:matrix(0.219066,-0.008991,0.010252,0.249790,0,0);-ms-transform:matrix(0.219066,-0.008991,0.010252,0.249790,0,0);-webkit-transform:matrix(0.219066,-0.008991,0.010252,0.249790,0,0);}
.m55_c01250{transform:matrix(0.219903,-0.003738,0.004249,0.249964,0,0);-ms-transform:matrix(0.219903,-0.003738,0.004249,0.249964,0,0);-webkit-transform:matrix(0.219903,-0.003738,0.004249,0.249964,0,0);}
.m3c_c01250{transform:matrix(0.219920,-0.009026,0.010252,0.249790,0,0);-ms-transform:matrix(0.219920,-0.009026,0.010252,0.249790,0,0);-webkit-transform:matrix(0.219920,-0.009026,0.010252,0.249790,0,0);}
.m1b_c01250{transform:matrix(0.223994,-0.005824,0.006498,0.249916,0,0);-ms-transform:matrix(0.223994,-0.005824,0.006498,0.249916,0,0);-webkit-transform:matrix(0.223994,-0.005824,0.006498,0.249916,0,0);}
.m39_c01250{transform:matrix(0.224031,-0.009194,0.010252,0.249790,0,0);-ms-transform:matrix(0.224031,-0.009194,0.010252,0.249790,0,0);-webkit-transform:matrix(0.224031,-0.009194,0.010252,0.249790,0,0);}
.m62_c01250{transform:matrix(0.224078,-0.009645,0.010751,0.249769,0,0);-ms-transform:matrix(0.224078,-0.009645,0.010751,0.249769,0,0);-webkit-transform:matrix(0.224078,-0.009645,0.010751,0.249769,0,0);}
.m3f_c01250{transform:matrix(0.224246,-0.009203,0.010252,0.249790,0,0);-ms-transform:matrix(0.224246,-0.009203,0.010252,0.249790,0,0);-webkit-transform:matrix(0.224246,-0.009203,0.010252,0.249790,0,0);}
.m66_c01250{transform:matrix(0.225261,-0.009696,0.010751,0.249769,0,0);-ms-transform:matrix(0.225261,-0.009696,0.010751,0.249769,0,0);-webkit-transform:matrix(0.225261,-0.009696,0.010751,0.249769,0,0);}
.m52_c01250{transform:matrix(0.227347,-0.003865,0.004249,0.249964,0,0);-ms-transform:matrix(0.227347,-0.003865,0.004249,0.249964,0,0);-webkit-transform:matrix(0.227347,-0.003865,0.004249,0.249964,0,0);}
.m21_c01250{transform:matrix(0.227703,-0.005920,0.006498,0.249916,0,0);-ms-transform:matrix(0.227703,-0.005920,0.006498,0.249916,0,0);-webkit-transform:matrix(0.227703,-0.005920,0.006498,0.249916,0,0);}
.m45_c01250{transform:matrix(0.227866,-0.006380,0.006997,0.249902,0,0);-ms-transform:matrix(0.227866,-0.006380,0.006997,0.249902,0,0);-webkit-transform:matrix(0.227866,-0.006380,0.006997,0.249902,0,0);}
.m59_c01250{transform:matrix(0.229942,-0.009897,0.010751,0.249769,0,0);-ms-transform:matrix(0.229942,-0.009897,0.010751,0.249769,0,0);-webkit-transform:matrix(0.229942,-0.009897,0.010751,0.249769,0,0);}
.m51_c01250{transform:matrix(0.229947,-0.003909,0.004249,0.249964,0,0);-ms-transform:matrix(0.229947,-0.003909,0.004249,0.249964,0,0);-webkit-transform:matrix(0.229947,-0.003909,0.004249,0.249964,0,0);}
.ma0_c01250{transform:matrix(0.230177,-0.003222,0.003500,0.249976,0,0);-ms-transform:matrix(0.230177,-0.003222,0.003500,0.249976,0,0);-webkit-transform:matrix(0.230177,-0.003222,0.003500,0.249976,0,0);}
.ma3_c01250{transform:matrix(0.231112,-0.003236,0.003500,0.249976,0,0);-ms-transform:matrix(0.231112,-0.003236,0.003500,0.249976,0,0);-webkit-transform:matrix(0.231112,-0.003236,0.003500,0.249976,0,0);}
.m5d_c01250{transform:matrix(0.231905,-0.009982,0.010751,0.249769,0,0);-ms-transform:matrix(0.231905,-0.009982,0.010751,0.249769,0,0);-webkit-transform:matrix(0.231905,-0.009982,0.010751,0.249769,0,0);}
.m13_c01250{transform:matrix(0.232307,-0.006737,0.007247,0.249895,0,0);-ms-transform:matrix(0.232307,-0.006737,0.007247,0.249895,0,0);-webkit-transform:matrix(0.232307,-0.006737,0.007247,0.249895,0,0);}
.m54_c01250{transform:matrix(0.232751,-0.003957,0.004249,0.249964,0,0);-ms-transform:matrix(0.232751,-0.003957,0.004249,0.249964,0,0);-webkit-transform:matrix(0.232751,-0.003957,0.004249,0.249964,0,0);}
.m89_c01250{transform:matrix(0.232805,-0.003725,0.003999,0.249968,0,0);-ms-transform:matrix(0.232805,-0.003725,0.003999,0.249968,0,0);-webkit-transform:matrix(0.232805,-0.003725,0.003999,0.249968,0,0);}
.m40_c01250{transform:matrix(0.233478,-0.009582,0.010252,0.249790,0,0);-ms-transform:matrix(0.233478,-0.009582,0.010252,0.249790,0,0);-webkit-transform:matrix(0.233478,-0.009582,0.010252,0.249790,0,0);}
.m42_c01250{transform:matrix(0.233603,-0.006541,0.006997,0.249902,0,0);-ms-transform:matrix(0.233603,-0.006541,0.006997,0.249902,0,0);-webkit-transform:matrix(0.233603,-0.006541,0.006997,0.249902,0,0);}
.m3e_c01250{transform:matrix(0.234043,-0.009605,0.010252,0.249790,0,0);-ms-transform:matrix(0.234043,-0.009605,0.010252,0.249790,0,0);-webkit-transform:matrix(0.234043,-0.009605,0.010252,0.249790,0,0);}
.m86_c01250{transform:matrix(0.234440,-0.003751,0.003999,0.249968,0,0);-ms-transform:matrix(0.234440,-0.003751,0.003999,0.249968,0,0);-webkit-transform:matrix(0.234440,-0.003751,0.003999,0.249968,0,0);}
.m9e_c01250{transform:matrix(0.235252,-0.003294,0.003500,0.249976,0,0);-ms-transform:matrix(0.235252,-0.003294,0.003500,0.249976,0,0);-webkit-transform:matrix(0.235252,-0.003294,0.003500,0.249976,0,0);}
.m87_c01250{transform:matrix(0.235995,-0.003776,0.003999,0.249968,0,0);-ms-transform:matrix(0.235995,-0.003776,0.003999,0.249968,0,0);-webkit-transform:matrix(0.235995,-0.003776,0.003999,0.249968,0,0);}
.m18_c01250{transform:matrix(0.236170,-0.006140,0.006498,0.249916,0,0);-ms-transform:matrix(0.236170,-0.006140,0.006498,0.249916,0,0);-webkit-transform:matrix(0.236170,-0.006140,0.006498,0.249916,0,0);}
.m8b_c01250{transform:matrix(0.236215,-0.003779,0.003999,0.249968,0,0);-ms-transform:matrix(0.236215,-0.003779,0.003999,0.249968,0,0);-webkit-transform:matrix(0.236215,-0.003779,0.003999,0.249968,0,0);}
.m5e_c01250{transform:matrix(0.236341,-0.010173,0.010751,0.249769,0,0);-ms-transform:matrix(0.236341,-0.010173,0.010751,0.249769,0,0);-webkit-transform:matrix(0.236341,-0.010173,0.010751,0.249769,0,0);}
.mae_c01250{transform:matrix(0.236593,-0.004968,0.005249,0.249945,0,0);-ms-transform:matrix(0.236593,-0.004968,0.005249,0.249945,0,0);-webkit-transform:matrix(0.236593,-0.004968,0.005249,0.249945,0,0);}
.m1c_c01250{transform:matrix(0.237870,-0.006185,0.006498,0.249916,0,0);-ms-transform:matrix(0.237870,-0.006185,0.006498,0.249916,0,0);-webkit-transform:matrix(0.237870,-0.006185,0.006498,0.249916,0,0);}
.m47_c01250{transform:matrix(0.238122,-0.006667,0.006997,0.249902,0,0);-ms-transform:matrix(0.238122,-0.006667,0.006997,0.249902,0,0);-webkit-transform:matrix(0.238122,-0.006667,0.006997,0.249902,0,0);}
.m4f_c01250{transform:matrix(0.238391,-0.004053,0.004249,0.249964,0,0);-ms-transform:matrix(0.238391,-0.004053,0.004249,0.249964,0,0);-webkit-transform:matrix(0.238391,-0.004053,0.004249,0.249964,0,0);}
.m84_c01250{transform:matrix(0.238609,-0.003818,0.003999,0.249968,0,0);-ms-transform:matrix(0.238609,-0.003818,0.003999,0.249968,0,0);-webkit-transform:matrix(0.238609,-0.003818,0.003999,0.249968,0,0);}
.m88_c01250{transform:matrix(0.239439,-0.003831,0.003999,0.249968,0,0);-ms-transform:matrix(0.239439,-0.003831,0.003999,0.249968,0,0);-webkit-transform:matrix(0.239439,-0.003831,0.003999,0.249968,0,0);}
.m58_c01250{transform:matrix(0.239548,-0.010311,0.010751,0.249769,0,0);-ms-transform:matrix(0.239548,-0.010311,0.010751,0.249769,0,0);-webkit-transform:matrix(0.239548,-0.010311,0.010751,0.249769,0,0);}
.m15_c01250{transform:matrix(0.239599,-0.006230,0.006498,0.249916,0,0);-ms-transform:matrix(0.239599,-0.006230,0.006498,0.249916,0,0);-webkit-transform:matrix(0.239599,-0.006230,0.006498,0.249916,0,0);}
.m61_c01250{transform:matrix(0.239753,-0.010320,0.010751,0.249769,0,0);-ms-transform:matrix(0.239753,-0.010320,0.010751,0.249769,0,0);-webkit-transform:matrix(0.239753,-0.010320,0.010751,0.249769,0,0);}
.m75_c01250{transform:matrix(0.239883,-0.003598,0.003750,0.249972,0,0);-ms-transform:matrix(0.239883,-0.003598,0.003750,0.249972,0,0);-webkit-transform:matrix(0.239883,-0.003598,0.003750,0.249972,0,0);}
.ma4_c01250{transform:matrix(0.240086,-0.003361,0.003500,0.249976,0,0);-ms-transform:matrix(0.240086,-0.003361,0.003500,0.249976,0,0);-webkit-transform:matrix(0.240086,-0.003361,0.003500,0.249976,0,0);}
.m80_c01250{transform:matrix(0.240405,-0.004087,0.004249,0.249964,0,0);-ms-transform:matrix(0.240405,-0.004087,0.004249,0.249964,0,0);-webkit-transform:matrix(0.240405,-0.004087,0.004249,0.249964,0,0);}
.m24_c01250{transform:matrix(0.242513,-0.006305,0.006498,0.249916,0,0);-ms-transform:matrix(0.242513,-0.006305,0.006498,0.249916,0,0);-webkit-transform:matrix(0.242513,-0.006305,0.006498,0.249916,0,0);}
.m4a_c01250{transform:matrix(0.242650,-0.006794,0.006997,0.249902,0,0);-ms-transform:matrix(0.242650,-0.006794,0.006997,0.249902,0,0);-webkit-transform:matrix(0.242650,-0.006794,0.006997,0.249902,0,0);}
.m5f_c01250{transform:matrix(0.243000,-0.010459,0.010751,0.249769,0,0);-ms-transform:matrix(0.243000,-0.010459,0.010751,0.249769,0,0);-webkit-transform:matrix(0.243000,-0.010459,0.010751,0.249769,0,0);}
.m96_c01250{transform:matrix(0.244479,-0.003912,0.003999,0.249968,0,0);-ms-transform:matrix(0.244479,-0.003912,0.003999,0.249968,0,0);-webkit-transform:matrix(0.244479,-0.003912,0.003999,0.249968,0,0);}
.m1e_c01250{transform:matrix(0.244742,-0.006363,0.006498,0.249916,0,0);-ms-transform:matrix(0.244742,-0.006363,0.006498,0.249916,0,0);-webkit-transform:matrix(0.244742,-0.006363,0.006498,0.249916,0,0);}
.ma9_c01250{transform:matrix(0.246516,-0.003451,0.003500,0.249976,0,0);-ms-transform:matrix(0.246516,-0.003451,0.003500,0.249976,0,0);-webkit-transform:matrix(0.246516,-0.003451,0.003500,0.249976,0,0);}
.m2b_c01250{transform:matrix(0.247304,-0.005935,0.005998,0.249928,0,0);-ms-transform:matrix(0.247304,-0.005935,0.005998,0.249928,0,0);-webkit-transform:matrix(0.247304,-0.005935,0.005998,0.249928,0,0);}
.m57_c01250{transform:matrix(0.248489,-0.004224,0.004249,0.249964,0,0);-ms-transform:matrix(0.248489,-0.004224,0.004249,0.249964,0,0);-webkit-transform:matrix(0.248489,-0.004224,0.004249,0.249964,0,0);}
.m23_c01250{transform:matrix(0.248846,-0.006470,0.006498,0.249916,0,0);-ms-transform:matrix(0.248846,-0.006470,0.006498,0.249916,0,0);-webkit-transform:matrix(0.248846,-0.006470,0.006498,0.249916,0,0);}
.m25_c01250{transform:matrix(0.249551,-0.006488,0.006498,0.249916,0,0);-ms-transform:matrix(0.249551,-0.006488,0.006498,0.249916,0,0);-webkit-transform:matrix(0.249551,-0.006488,0.006498,0.249916,0,0);}
.m1a_c01250{transform:matrix(0.249681,-0.006492,0.006498,0.249916,0,0);-ms-transform:matrix(0.249681,-0.006492,0.006498,0.249916,0,0);-webkit-transform:matrix(0.249681,-0.006492,0.006498,0.249916,0,0);}
.m7e_c01250{transform:matrix(0.249924,-0.004249,0.004249,0.249964,0,0);-ms-transform:matrix(0.249924,-0.004249,0.004249,0.249964,0,0);-webkit-transform:matrix(0.249924,-0.004249,0.004249,0.249964,0,0);}
.m17_c01250{transform:matrix(0.250265,-0.006507,0.006498,0.249916,0,0);-ms-transform:matrix(0.250265,-0.006507,0.006498,0.249916,0,0);-webkit-transform:matrix(0.250265,-0.006507,0.006498,0.249916,0,0);}
.m19_c01250{transform:matrix(0.251255,-0.006533,0.006498,0.249916,0,0);-ms-transform:matrix(0.251255,-0.006533,0.006498,0.249916,0,0);-webkit-transform:matrix(0.251255,-0.006533,0.006498,0.249916,0,0);}
.m1d_c01250{transform:matrix(0.251875,-0.006549,0.006498,0.249916,0,0);-ms-transform:matrix(0.251875,-0.006549,0.006498,0.249916,0,0);-webkit-transform:matrix(0.251875,-0.006549,0.006498,0.249916,0,0);}
.m28_c01250{transform:matrix(0.252047,-0.006049,0.005998,0.249928,0,0);-ms-transform:matrix(0.252047,-0.006049,0.005998,0.249928,0,0);-webkit-transform:matrix(0.252047,-0.006049,0.005998,0.249928,0,0);}
.m1f_c01250{transform:matrix(0.254684,-0.006622,0.006498,0.249916,0,0);-ms-transform:matrix(0.254684,-0.006622,0.006498,0.249916,0,0);-webkit-transform:matrix(0.254684,-0.006622,0.006498,0.249916,0,0);}
.m4e_c01250{transform:matrix(0.254888,-0.004333,0.004249,0.249964,0,0);-ms-transform:matrix(0.254888,-0.004333,0.004249,0.249964,0,0);-webkit-transform:matrix(0.254888,-0.004333,0.004249,0.249964,0,0);}
.m73_c01250{transform:matrix(0.254976,-0.003825,0.003750,0.249972,0,0);-ms-transform:matrix(0.254976,-0.003825,0.003750,0.249972,0,0);-webkit-transform:matrix(0.254976,-0.003825,0.003750,0.249972,0,0);}
.m2c_c01250{transform:matrix(0.255451,-0.006131,0.005998,0.249928,0,0);-ms-transform:matrix(0.255451,-0.006131,0.005998,0.249928,0,0);-webkit-transform:matrix(0.255451,-0.006131,0.005998,0.249928,0,0);}
.m76_c01250{transform:matrix(0.256271,-0.003844,0.003750,0.249972,0,0);-ms-transform:matrix(0.256271,-0.003844,0.003750,0.249972,0,0);-webkit-transform:matrix(0.256271,-0.003844,0.003750,0.249972,0,0);}
.m7d_c01250{transform:matrix(0.258228,-0.004390,0.004249,0.249964,0,0);-ms-transform:matrix(0.258228,-0.004390,0.004249,0.249964,0,0);-webkit-transform:matrix(0.258228,-0.004390,0.004249,0.249964,0,0);}
.m79_c01250{transform:matrix(0.259466,-0.003892,0.003750,0.249972,0,0);-ms-transform:matrix(0.259466,-0.003892,0.003750,0.249972,0,0);-webkit-transform:matrix(0.259466,-0.003892,0.003750,0.249972,0,0);}
.ma7_c01250{transform:matrix(0.259565,-0.003634,0.003500,0.249976,0,0);-ms-transform:matrix(0.259565,-0.003634,0.003500,0.249976,0,0);-webkit-transform:matrix(0.259565,-0.003634,0.003500,0.249976,0,0);}
.m2a_c01250{transform:matrix(0.259580,-0.006230,0.005998,0.249928,0,0);-ms-transform:matrix(0.259580,-0.006230,0.005998,0.249928,0,0);-webkit-transform:matrix(0.259580,-0.006230,0.005998,0.249928,0,0);}
.maf_c01250{transform:matrix(0.259808,-0.005456,0.005249,0.249945,0,0);-ms-transform:matrix(0.259808,-0.005456,0.005249,0.249945,0,0);-webkit-transform:matrix(0.259808,-0.005456,0.005249,0.249945,0,0);}
.mad_c01250{transform:matrix(0.259823,-0.005456,0.005249,0.249945,0,0);-ms-transform:matrix(0.259823,-0.005456,0.005249,0.249945,0,0);-webkit-transform:matrix(0.259823,-0.005456,0.005249,0.249945,0,0);}
.m7b_c01250{transform:matrix(0.261002,-0.004437,0.004249,0.249964,0,0);-ms-transform:matrix(0.261002,-0.004437,0.004249,0.249964,0,0);-webkit-transform:matrix(0.261002,-0.004437,0.004249,0.249964,0,0);}
.m48_c01250{transform:matrix(0.262782,-0.007358,0.006997,0.249902,0,0);-ms-transform:matrix(0.262782,-0.007358,0.006997,0.249902,0,0);-webkit-transform:matrix(0.262782,-0.007358,0.006997,0.249902,0,0);}
.m64_c01250{transform:matrix(0.264360,-0.011379,0.010751,0.249769,0,0);-ms-transform:matrix(0.264360,-0.011379,0.010751,0.249769,0,0);-webkit-transform:matrix(0.264360,-0.011379,0.010751,0.249769,0,0);}
.m41_c01250{transform:matrix(0.264736,-0.007413,0.006997,0.249902,0,0);-ms-transform:matrix(0.264736,-0.007413,0.006997,0.249902,0,0);-webkit-transform:matrix(0.264736,-0.007413,0.006997,0.249902,0,0);}
.m4b_c01250{transform:matrix(0.265536,-0.007435,0.006997,0.249902,0,0);-ms-transform:matrix(0.265536,-0.007435,0.006997,0.249902,0,0);-webkit-transform:matrix(0.265536,-0.007435,0.006997,0.249902,0,0);}
.mab_c01250{transform:matrix(0.265951,-0.005585,0.005249,0.249945,0,0);-ms-transform:matrix(0.265951,-0.005585,0.005249,0.249945,0,0);-webkit-transform:matrix(0.265951,-0.005585,0.005249,0.249945,0,0);}
.m20_c01250{transform:matrix(0.266495,-0.006929,0.006498,0.249916,0,0);-ms-transform:matrix(0.266495,-0.006929,0.006498,0.249916,0,0);-webkit-transform:matrix(0.266495,-0.006929,0.006498,0.249916,0,0);}
.m46_c01250{transform:matrix(0.267115,-0.007479,0.006997,0.249902,0,0);-ms-transform:matrix(0.267115,-0.007479,0.006997,0.249902,0,0);-webkit-transform:matrix(0.267115,-0.007479,0.006997,0.249902,0,0);}
.m27_c01250{transform:matrix(0.267158,-0.006412,0.005998,0.249928,0,0);-ms-transform:matrix(0.267158,-0.006412,0.005998,0.249928,0,0);-webkit-transform:matrix(0.267158,-0.006412,0.005998,0.249928,0,0);}
.m7f_c01250{transform:matrix(0.269481,-0.004581,0.004249,0.249964,0,0);-ms-transform:matrix(0.269481,-0.004581,0.004249,0.249964,0,0);-webkit-transform:matrix(0.269481,-0.004581,0.004249,0.249964,0,0);}
.m74_c01250{transform:matrix(0.271839,-0.004078,0.003750,0.249972,0,0);-ms-transform:matrix(0.271839,-0.004078,0.003750,0.249972,0,0);-webkit-transform:matrix(0.271839,-0.004078,0.003750,0.249972,0,0);}
.m81_c01250{transform:matrix(0.272496,-0.004632,0.004249,0.249964,0,0);-ms-transform:matrix(0.272496,-0.004632,0.004249,0.249964,0,0);-webkit-transform:matrix(0.272496,-0.004632,0.004249,0.249964,0,0);}
.m72_c01250{transform:matrix(0.274499,-0.004117,0.003750,0.249972,0,0);-ms-transform:matrix(0.274499,-0.004117,0.003750,0.249972,0,0);-webkit-transform:matrix(0.274499,-0.004117,0.003750,0.249972,0,0);}
.m7c_c01250{transform:matrix(0.275750,-0.004688,0.004249,0.249964,0,0);-ms-transform:matrix(0.275750,-0.004688,0.004249,0.249964,0,0);-webkit-transform:matrix(0.275750,-0.004688,0.004249,0.249964,0,0);}
.m49_c01250{transform:matrix(0.277751,-0.007777,0.006997,0.249902,0,0);-ms-transform:matrix(0.277751,-0.007777,0.006997,0.249902,0,0);-webkit-transform:matrix(0.277751,-0.007777,0.006997,0.249902,0,0);}
.maa_c01250{transform:matrix(0.278363,-0.003897,0.003500,0.249976,0,0);-ms-transform:matrix(0.278363,-0.003897,0.003500,0.249976,0,0);-webkit-transform:matrix(0.278363,-0.003897,0.003500,0.249976,0,0);}
.m14_c01250{transform:matrix(0.278438,-0.008075,0.007247,0.249895,0,0);-ms-transform:matrix(0.278438,-0.008075,0.007247,0.249895,0,0);-webkit-transform:matrix(0.278438,-0.008075,0.007247,0.249895,0,0);}
.m7a_c01250{transform:matrix(0.280733,-0.004211,0.003750,0.249972,0,0);-ms-transform:matrix(0.280733,-0.004211,0.003750,0.249972,0,0);-webkit-transform:matrix(0.280733,-0.004211,0.003750,0.249972,0,0);}
.m78_c01250{transform:matrix(0.281203,-0.004218,0.003750,0.249972,0,0);-ms-transform:matrix(0.281203,-0.004218,0.003750,0.249972,0,0);-webkit-transform:matrix(0.281203,-0.004218,0.003750,0.249972,0,0);}
.mb2_c01250{transform:matrix(0.282113,-0.005924,0.005249,0.249945,0,0);-ms-transform:matrix(0.282113,-0.005924,0.005249,0.249945,0,0);-webkit-transform:matrix(0.282113,-0.005924,0.005249,0.249945,0,0);}
.m77_c01250{transform:matrix(0.282338,-0.004235,0.003750,0.249972,0,0);-ms-transform:matrix(0.282338,-0.004235,0.003750,0.249972,0,0);-webkit-transform:matrix(0.282338,-0.004235,0.003750,0.249972,0,0);}
.mb1_c01250{transform:matrix(0.283927,-0.005962,0.005249,0.249945,0,0);-ms-transform:matrix(0.283927,-0.005962,0.005249,0.249945,0,0);-webkit-transform:matrix(0.283927,-0.005962,0.005249,0.249945,0,0);}
.ma8_c01250{transform:matrix(0.284137,-0.003978,0.003500,0.249976,0,0);-ms-transform:matrix(0.284137,-0.003978,0.003500,0.249976,0,0);-webkit-transform:matrix(0.284137,-0.003978,0.003500,0.249976,0,0);}
.m4c_c01250{transform:matrix(0.285333,-0.007989,0.006997,0.249902,0,0);-ms-transform:matrix(0.285333,-0.007989,0.006997,0.249902,0,0);-webkit-transform:matrix(0.285333,-0.007989,0.006997,0.249902,0,0);}
.mb9_c01250{transform:matrix(0.302866,-0.004543,0.003750,0.249972,0,0);-ms-transform:matrix(0.302866,-0.004543,0.003750,0.249972,0,0);-webkit-transform:matrix(0.302866,-0.004543,0.003750,0.249972,0,0);}
.mb0_c01250{transform:matrix(0.311126,-0.006534,0.005249,0.249945,0,0);-ms-transform:matrix(0.311126,-0.006534,0.005249,0.249945,0,0);-webkit-transform:matrix(0.311126,-0.006534,0.005249,0.249945,0,0);}
.m12_c01250{transform:matrix(0.318066,-0.009224,0.007247,0.249895,0,0);-ms-transform:matrix(0.318066,-0.009224,0.007247,0.249895,0,0);-webkit-transform:matrix(0.318066,-0.009224,0.007247,0.249895,0,0);}
.m44_c01250{transform:matrix(0.331535,-0.009283,0.006997,0.249902,0,0);-ms-transform:matrix(0.331535,-0.009283,0.006997,0.249902,0,0);-webkit-transform:matrix(0.331535,-0.009283,0.006997,0.249902,0,0);}
.m56_c01250{transform:matrix(0.348140,-0.005918,0.004249,0.249964,0,0);-ms-transform:matrix(0.348140,-0.005918,0.004249,0.249964,0,0);-webkit-transform:matrix(0.348140,-0.005918,0.004249,0.249964,0,0);}
.m97_c01250{transform:matrix(0.373455,-0.007469,0.004999,0.249950,0,0);-ms-transform:matrix(0.373455,-0.007469,0.004999,0.249950,0,0);-webkit-transform:matrix(0.373455,-0.007469,0.004999,0.249950,0,0);}
.m3_c01250{transform:matrix(0.386556,-0.006185,0.003999,0.249968,0,0);-ms-transform:matrix(0.386556,-0.006185,0.003999,0.249968,0,0);-webkit-transform:matrix(0.386556,-0.006185,0.003999,0.249968,0,0);}
.m2d_c01250{transform:matrix(0.390183,-0.009364,0.005998,0.249928,0,0);-ms-transform:matrix(0.390183,-0.009364,0.005998,0.249928,0,0);-webkit-transform:matrix(0.390183,-0.009364,0.005998,0.249928,0,0);}
.mb7_c01250{transform:matrix(0.391531,-0.005873,0.003750,0.249972,0,0);-ms-transform:matrix(0.391531,-0.005873,0.003750,0.249972,0,0);-webkit-transform:matrix(0.391531,-0.005873,0.003750,0.249972,0,0);}
.m98_c01250{transform:matrix(0.416842,-0.008337,0.004999,0.249950,0,0);-ms-transform:matrix(0.416842,-0.008337,0.004999,0.249950,0,0);-webkit-transform:matrix(0.416842,-0.008337,0.004999,0.249950,0,0);}
.m37_c01250{transform:matrix(0.441323,-0.010592,0.005998,0.249928,0,0);-ms-transform:matrix(0.441323,-0.010592,0.005998,0.249928,0,0);-webkit-transform:matrix(0.441323,-0.010592,0.005998,0.249928,0,0);}
.mb8_c01250{transform:matrix(0.459393,-0.006891,0.003750,0.249972,0,0);-ms-transform:matrix(0.459393,-0.006891,0.003750,0.249972,0,0);-webkit-transform:matrix(0.459393,-0.006891,0.003750,0.249972,0,0);}
.mb5_c01250{transform:matrix(0.468507,-0.007028,0.003750,0.249972,0,0);-ms-transform:matrix(0.468507,-0.007028,0.003750,0.249972,0,0);-webkit-transform:matrix(0.468507,-0.007028,0.003750,0.249972,0,0);}
.m38_c01250{transform:matrix(0.469620,-0.011271,0.005998,0.249928,0,0);-ms-transform:matrix(0.469620,-0.011271,0.005998,0.249928,0,0);-webkit-transform:matrix(0.469620,-0.011271,0.005998,0.249928,0,0);}
.mb6_c01250{transform:matrix(0.535235,-0.008029,0.003750,0.249972,0,0);-ms-transform:matrix(0.535235,-0.008029,0.003750,0.249972,0,0);-webkit-transform:matrix(0.535235,-0.008029,0.003750,0.249972,0,0);}
.m9a_c01250{transform:matrix(0.541627,-0.010833,0.004999,0.249950,0,0);-ms-transform:matrix(0.541627,-0.010833,0.004999,0.249950,0,0);-webkit-transform:matrix(0.541627,-0.010833,0.004999,0.249950,0,0);}
.m99_c01250{transform:matrix(0.558778,-0.011176,0.004999,0.249950,0,0);-ms-transform:matrix(0.558778,-0.011176,0.004999,0.249950,0,0);-webkit-transform:matrix(0.558778,-0.011176,0.004999,0.249950,0,0);}
.m9b_c01250{transform:matrix(0.611878,-0.012238,0.004999,0.249950,0,0);-ms-transform:matrix(0.611878,-0.012238,0.004999,0.249950,0,0);-webkit-transform:matrix(0.611878,-0.012238,0.004999,0.249950,0,0);}
.mba_c01250{transform:matrix(0.786177,-0.011793,0.003750,0.249972,0,0);-ms-transform:matrix(0.786177,-0.011793,0.003750,0.249972,0,0);-webkit-transform:matrix(0.786177,-0.011793,0.003750,0.249972,0,0);}
.m43_c01250{transform:matrix(1.258997,-0.035252,0.006997,0.249902,0,0);-ms-transform:matrix(1.258997,-0.035252,0.006997,0.249902,0,0);-webkit-transform:matrix(1.258997,-0.035252,0.006997,0.249902,0,0);}
.m5_c01250{transform:matrix(14.044141,-0.238750,0.004249,0.249964,0,0);-ms-transform:matrix(14.044141,-0.238750,0.004249,0.249964,0,0);-webkit-transform:matrix(14.044141,-0.238750,0.004249,0.249964,0,0);}
.v0_c01250{vertical-align:0.000000px;}
.ls0_c01250{letter-spacing:0.000000px;}
.sc__c01250{text-shadow:none;}
.sc0_c01250{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__c01250{-webkit-text-stroke:0px transparent;}
.sc0_c01250{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01250{word-spacing:0.000000px;}
.fc0_c01250{color:transparent;}
.fs1_c01250{font-size:24.003468px;}
.fs11_c01250{font-size:36.007199px;}
.fs7_c01250{font-size:42.012094px;}
.fs13_c01250{font-size:72.007056px;}
.fsd_c01250{font-size:72.008100px;}
.fse_c01250{font-size:72.010403px;}
.fs14_c01250{font-size:72.015874px;}
.fs9_c01250{font-size:72.028218px;}
.fs3_c01250{font-size:72.030270px;}
.fs5_c01250{font-size:78.022461px;}
.fs4_c01250{font-size:78.026360px;}
.fs8_c01250{font-size:83.986643px;}
.fsb_c01250{font-size:83.993700px;}
.fs12_c01250{font-size:84.008232px;}
.fs15_c01250{font-size:84.009449px;}
.fsf_c01250{font-size:84.010751px;}
.fsa_c01250{font-size:84.012137px;}
.fs2_c01250{font-size:96.013871px;}
.fsc_c01250{font-size:107.991900px;}
.fs10_c01250{font-size:108.013823px;}
.fs6_c01250{font-size:108.031100px;}
.fs0_c01250{font-size:120.015359px;}
.y0_c01250{bottom:0.000000px;}
.yb4_c01250{bottom:103.141500px;}
.yb5_c01250{bottom:103.805138px;}
.yb6_c01250{bottom:104.440380px;}
.yb7_c01250{bottom:106.902623px;}
.yb8_c01250{bottom:107.894873px;}
.yb9_c01250{bottom:109.729613px;}
.yba_c01250{bottom:111.194993px;}
.ybb_c01250{bottom:113.301960px;}
.yac_c01250{bottom:139.054500px;}
.yad_c01250{bottom:140.249169px;}
.yae_c01250{bottom:141.115230px;}
.yaf_c01250{bottom:142.732503px;}
.yb0_c01250{bottom:143.662667px;}
.yb1_c01250{bottom:145.296225px;}
.yb2_c01250{bottom:147.132769px;}
.yb3_c01250{bottom:147.814461px;}
.ya9_c01250{bottom:179.823774px;}
.yaa_c01250{bottom:182.119149px;}
.yab_c01250{bottom:182.817744px;}
.y9d_c01250{bottom:211.951500px;}
.y9e_c01250{bottom:212.434542px;}
.y9f_c01250{bottom:213.018993px;}
.ya0_c01250{bottom:214.092723px;}
.ya1_c01250{bottom:214.542879px;}
.ya2_c01250{bottom:215.782656px;}
.ya3_c01250{bottom:216.398838px;}
.ya4_c01250{bottom:217.495185px;}
.ya5_c01250{bottom:218.413746px;}
.ya6_c01250{bottom:219.653628px;}
.ya7_c01250{bottom:220.118631px;}
.ya8_c01250{bottom:220.745082px;}
.y98_c01250{bottom:242.736000px;}
.y99_c01250{bottom:243.408480px;}
.y9a_c01250{bottom:244.207530px;}
.y9b_c01250{bottom:246.443880px;}
.y9c_c01250{bottom:247.994340px;}
.y97_c01250{bottom:286.203816px;}
.y8d_c01250{bottom:311.315880px;}
.y8e_c01250{bottom:312.793644px;}
.y8f_c01250{bottom:313.604772px;}
.y90_c01250{bottom:315.594372px;}
.y91_c01250{bottom:316.732836px;}
.y92_c01250{bottom:319.030008px;}
.y93_c01250{bottom:322.748004px;}
.y94_c01250{bottom:325.029192px;}
.y95_c01250{bottom:326.184816px;}
.y96_c01250{bottom:327.955488px;}
.y83_c01250{bottom:354.511500px;}
.y84_c01250{bottom:355.059180px;}
.y85_c01250{bottom:355.736268px;}
.y86_c01250{bottom:357.482004px;}
.y87_c01250{bottom:358.164348px;}
.y88_c01250{bottom:359.235996px;}
.y89_c01250{bottom:360.112644px;}
.y8a_c01250{bottom:361.344108px;}
.y8b_c01250{bottom:362.415612px;}
.y8c_c01250{bottom:362.942988px;}
.y7c_c01250{bottom:390.423000px;}
.y7d_c01250{bottom:391.530593px;}
.y7e_c01250{bottom:393.204999px;}
.y7f_c01250{bottom:393.963088px;}
.y80_c01250{bottom:394.523221px;}
.y81_c01250{bottom:395.656084px;}
.y82_c01250{bottom:396.213259px;}
.y71_c01250{bottom:497.071500px;}
.y72_c01250{bottom:497.576602px;}
.y73_c01250{bottom:498.198795px;}
.y74_c01250{bottom:500.013712px;}
.y75_c01250{bottom:501.006165px;}
.y76_c01250{bottom:501.832207px;}
.y77_c01250{bottom:502.326375px;}
.y78_c01250{bottom:502.978785px;}
.y79_c01250{bottom:504.651480px;}
.y7a_c01250{bottom:506.308222px;}
.y7b_c01250{bottom:506.984617px;}
.y6a_c01250{bottom:532.444959px;}
.y6b_c01250{bottom:533.028640px;}
.y6c_c01250{bottom:533.722534px;}
.y6d_c01250{bottom:535.803313px;}
.y6e_c01250{bottom:537.301572px;}
.y6f_c01250{bottom:538.801492px;}
.y70_c01250{bottom:539.565643px;}
.y66_c01250{bottom:570.518065px;}
.y67_c01250{bottom:571.071123px;}
.y68_c01250{bottom:571.816144px;}
.y69_c01250{bottom:572.562391px;}
.y5a_c01250{bottom:603.450904px;}
.y5b_c01250{bottom:604.429166px;}
.y5c_c01250{bottom:605.149486px;}
.y5d_c01250{bottom:606.078688px;}
.y5e_c01250{bottom:606.616977px;}
.y5f_c01250{bottom:608.309829px;}
.y60_c01250{bottom:610.210640px;}
.y61_c01250{bottom:612.272126px;}
.y62_c01250{bottom:612.849561px;}
.y63_c01250{bottom:614.350806px;}
.y64_c01250{bottom:615.105675px;}
.y65_c01250{bottom:615.691326px;}
.y59_c01250{bottom:639.018000px;}
.y4e_c01250{bottom:673.653000px;}
.y4f_c01250{bottom:674.422769px;}
.y50_c01250{bottom:675.137228px;}
.y51_c01250{bottom:676.992097px;}
.y52_c01250{bottom:677.557127px;}
.y53_c01250{bottom:679.053416px;}
.y54_c01250{bottom:680.172432px;}
.y55_c01250{bottom:680.568447px;}
.y56_c01250{bottom:681.862955px;}
.y57_c01250{bottom:683.006859px;}
.y58_c01250{bottom:685.439508px;}
.y45_c01250{bottom:721.431546px;}
.y46_c01250{bottom:721.837494px;}
.y47_c01250{bottom:722.150658px;}
.y48_c01250{bottom:722.841474px;}
.y49_c01250{bottom:723.151272px;}
.y4a_c01250{bottom:723.696342px;}
.y4b_c01250{bottom:724.306386px;}
.y4c_c01250{bottom:724.544652px;}
.y4d_c01250{bottom:725.003226px;}
.y42_c01250{bottom:743.860500px;}
.y43_c01250{bottom:745.714296px;}
.y44_c01250{bottom:746.627544px;}
.y3a_c01250{bottom:840.810000px;}
.y3b_c01250{bottom:843.146262px;}
.y3c_c01250{bottom:844.900918px;}
.y3d_c01250{bottom:848.046213px;}
.y3e_c01250{bottom:850.726075px;}
.y3f_c01250{bottom:852.564864px;}
.y40_c01250{bottom:856.152159px;}
.y41_c01250{bottom:858.406072px;}
.y39_c01250{bottom:888.626196px;}
.y38_c01250{bottom:888.626352px;}
.y2f_c01250{bottom:918.263844px;}
.y30_c01250{bottom:919.292292px;}
.y31_c01250{bottom:920.247564px;}
.y32_c01250{bottom:922.770024px;}
.y33_c01250{bottom:923.776752px;}
.y34_c01250{bottom:925.063764px;}
.y35_c01250{bottom:927.325092px;}
.y36_c01250{bottom:929.908596px;}
.y37_c01250{bottom:931.919604px;}
.y28_c01250{bottom:956.346000px;}
.y29_c01250{bottom:956.887260px;}
.y2a_c01250{bottom:958.753428px;}
.y2b_c01250{bottom:959.532504px;}
.y2c_c01250{bottom:961.936836px;}
.y2d_c01250{bottom:963.765060px;}
.y2e_c01250{bottom:969.599796px;}
.y22_c01250{bottom:987.388650px;}
.y23_c01250{bottom:988.897416px;}
.y24_c01250{bottom:990.262380px;}
.y25_c01250{bottom:993.524760px;}
.y26_c01250{bottom:995.344056px;}
.y27_c01250{bottom:998.657184px;}
.y16_c01250{bottom:1021.417500px;}
.y17_c01250{bottom:1022.880897px;}
.y18_c01250{bottom:1024.004916px;}
.y19_c01250{bottom:1026.242463px;}
.y1a_c01250{bottom:1026.871611px;}
.y1b_c01250{bottom:1029.693963px;}
.y1c_c01250{bottom:1032.305247px;}
.y1d_c01250{bottom:1033.126860px;}
.y1e_c01250{bottom:1034.291790px;}
.y1f_c01250{bottom:1036.594857px;}
.y20_c01250{bottom:1038.031656px;}
.y21_c01250{bottom:1038.620517px;}
.y13_c01250{bottom:1062.709500px;}
.y14_c01250{bottom:1063.999188px;}
.y15_c01250{bottom:1064.943138px;}
.y7_c01250{bottom:1169.101500px;}
.y8_c01250{bottom:1170.063768px;}
.y6_c01250{bottom:1170.183000px;}
.y9_c01250{bottom:1170.605796px;}
.ya_c01250{bottom:1172.432106px;}
.yb_c01250{bottom:1173.933367px;}
.yc_c01250{bottom:1174.695358px;}
.yd_c01250{bottom:1175.819832px;}
.ye_c01250{bottom:1176.380041px;}
.yf_c01250{bottom:1178.077474px;}
.y10_c01250{bottom:1178.445796px;}
.y11_c01250{bottom:1179.028956px;}
.y12_c01250{bottom:1180.529988px;}
.y1_c01250{bottom:1229.851500px;}
.y2_c01250{bottom:1230.220788px;}
.y3_c01250{bottom:1230.914292px;}
.y4_c01250{bottom:1235.719140px;}
.y5_c01250{bottom:1238.267676px;}
.h3_c01250{height:24.003468px;}
.h13_c01250{height:36.007199px;}
.h9_c01250{height:42.012094px;}
.h15_c01250{height:72.007056px;}
.hf_c01250{height:72.008100px;}
.h10_c01250{height:72.010403px;}
.h16_c01250{height:72.015874px;}
.hb_c01250{height:72.028218px;}
.h5_c01250{height:72.030270px;}
.h7_c01250{height:78.022461px;}
.h6_c01250{height:78.026360px;}
.ha_c01250{height:83.986643px;}
.hd_c01250{height:83.993700px;}
.h14_c01250{height:84.008232px;}
.h17_c01250{height:84.009449px;}
.h11_c01250{height:84.010751px;}
.hc_c01250{height:84.012137px;}
.h4_c01250{height:96.013871px;}
.he_c01250{height:107.991900px;}
.h12_c01250{height:108.013823px;}
.h8_c01250{height:108.031100px;}
.h2_c01250{height:120.015359px;}
.h1_c01250{height:1258.500000px;}
.h0_c01250{height:1258.740000px;}
.w1_c01250{width:899.250000px;}
.w0_c01250{width:899.370000px;}
.x0_c01250{left:0.000000px;}
.x7_c01250{left:70.300500px;}
.x16_c01250{left:73.755000px;}
.x39_c01250{left:79.018500px;}
.x22_c01250{left:85.672203px;}
.x2e_c01250{left:89.013108px;}
.x48_c01250{left:95.713500px;}
.x95_c01250{left:101.184000px;}
.x7e_c01250{left:106.837344px;}
.x60_c01250{left:111.116637px;}
.x66_c01250{left:112.711500px;}
.x9a_c01250{left:114.613500px;}
.x74_c01250{left:117.031500px;}
.x87_c01250{left:120.723000px;}
.x8_c01250{left:126.904500px;}
.x17_c01250{left:130.039500px;}
.x23_c01250{left:131.404896px;}
.x2f_c01250{left:133.741188px;}
.x3a_c01250{left:135.943518px;}
.x49_c01250{left:140.994000px;}
.x54_c01250{left:143.158591px;}
.x61_c01250{left:145.325116px;}
.x67_c01250{left:146.385000px;}
.x75_c01250{left:151.261500px;}
.x88_c01250{left:154.347000px;}
.x8a_c01250{left:155.580000px;}
.x9_c01250{left:158.788500px;}
.x7f_c01250{left:163.657248px;}
.x18_c01250{left:173.271000px;}
.x30_c01250{left:175.295196px;}
.x3b_c01250{left:178.697222px;}
.x43_c01250{left:181.431120px;}
.x4a_c01250{left:183.021000px;}
.x55_c01250{left:185.424545px;}
.x68_c01250{left:187.864500px;}
.x76_c01250{left:193.579500px;}
.x80_c01250{left:194.847756px;}
.x8b_c01250{left:197.326500px;}
.x96_c01250{left:199.314000px;}
.x9b_c01250{left:201.205500px;}
.x13_c01250{left:203.776500px;}
.x27_c01250{left:205.986000px;}
.x37_c01250{left:208.709904px;}
.x41_c01250{left:213.700500px;}
.x53_c01250{left:214.855500px;}
.x5d_c01250{left:219.710566px;}
.x6e_c01250{left:224.860500px;}
.x28_c01250{left:228.538500px;}
.x93_c01250{left:230.139072px;}
.x56_c01250{left:239.972456px;}
.x38_c01250{left:241.659876px;}
.x14_c01250{left:248.248500px;}
.x5e_c01250{left:252.126339px;}
.x3c_c01250{left:255.335007px;}
.x19_c01250{left:259.330500px;}
.xa_c01250{left:266.218500px;}
.x24_c01250{left:271.623390px;}
.x8c_c01250{left:274.021500px;}
.x97_c01250{left:276.327000px;}
.x15_c01250{left:280.798500px;}
.x1a_c01250{left:283.528500px;}
.x31_c01250{left:284.962824px;}
.x6f_c01250{left:290.013000px;}
.x4b_c01250{left:292.131000px;}
.x5f_c01250{left:295.872988px;}
.x77_c01250{left:302.688000px;}
.x29_c01250{left:306.295500px;}
.x62_c01250{left:308.145205px;}
.x42_c01250{left:312.523500px;}
.x81_c01250{left:315.145008px;}
.x3d_c01250{left:320.632145px;}
.x44_c01250{left:324.340578px;}
.x4c_c01250{left:325.368000px;}
.x25_c01250{left:326.759367px;}
.x32_c01250{left:328.723368px;}
.x2a_c01250{left:338.757000px;}
.x78_c01250{left:345.334500px;}
.x1_c01250{left:351.613500px;}
.xb_c01250{left:354.528000px;}
.x3e_c01250{left:365.435796px;}
.x57_c01250{left:370.946847px;}
.x94_c01250{left:372.730107px;}
.x2_c01250{left:374.694000px;}
.x89_c01250{left:383.640000px;}
.x33_c01250{left:384.662700px;}
.x70_c01250{left:388.507500px;}
.x1b_c01250{left:392.080500px;}
.x8d_c01250{left:394.731000px;}
.x63_c01250{left:396.073521px;}
.xc_c01250{left:399.351000px;}
.x45_c01250{left:402.138774px;}
.x82_c01250{left:403.485372px;}
.x79_c01250{left:412.312500px;}
.x4d_c01250{left:413.385000px;}
.x3_c01250{left:418.038000px;}
.x26_c01250{left:427.169115px;}
.x69_c01250{left:430.092000px;}
.x9c_c01250{left:431.505000px;}
.x71_c01250{left:433.101000px;}
.x2b_c01250{left:438.937500px;}
.x3f_c01250{left:452.843301px;}
.x6_c01250{left:463.219500px;}
.xd_c01250{left:465.496500px;}
.x7a_c01250{left:467.103000px;}
.x4e_c01250{left:479.209500px;}
.x34_c01250{left:482.949540px;}
.x64_c01250{left:484.075327px;}
.x98_c01250{left:485.863500px;}
.x46_c01250{left:489.388056px;}
.x1c_c01250{left:492.514500px;}
.xe_c01250{left:498.450000px;}
.x4f_c01250{left:502.504500px;}
.x6a_c01250{left:506.530500px;}
.x40_c01250{left:507.761827px;}
.x2c_c01250{left:515.113500px;}
.x8e_c01250{left:517.054500px;}
.x99_c01250{left:518.325000px;}
.x1d_c01250{left:524.115000px;}
.x65_c01250{left:528.929096px;}
.x72_c01250{left:532.689000px;}
.x7b_c01250{left:544.069500px;}
.x83_c01250{left:546.493500px;}
.x9d_c01250{left:553.821000px;}
.x73_c01250{left:565.464000px;}
.x1e_c01250{left:568.920000px;}
.x50_c01250{left:578.652000px;}
.x8f_c01250{left:582.666000px;}
.x47_c01250{left:588.851478px;}
.x35_c01250{left:595.285740px;}
.xf_c01250{left:598.299000px;}
.x58_c01250{left:603.387046px;}
.x7c_c01250{left:611.038500px;}
.x6b_c01250{left:618.043500px;}
.x10_c01250{left:619.965000px;}
.x84_c01250{left:634.209960px;}
.x59_c01250{left:637.276023px;}
.x7d_c01250{left:643.999500px;}
.x51_c01250{left:645.940500px;}
.x9e_c01250{left:651.513000px;}
.x11_c01250{left:654.268500px;}
.x1f_c01250{left:657.499500px;}
.x90_c01250{left:671.229000px;}
.x85_c01250{left:678.679356px;}
.x36_c01250{left:682.704828px;}
.x91_c01250{left:704.443500px;}
.x20_c01250{left:712.761000px;}
.x4_c01250{left:718.341000px;}
.x5a_c01250{left:725.378358px;}
.x6c_c01250{left:728.493000px;}
.x21_c01250{left:735.409500px;}
.x12_c01250{left:742.564500px;}
.x86_c01250{left:746.772960px;}
.x92_c01250{left:749.190000px;}
.x2d_c01250{left:758.227500px;}
.x5b_c01250{left:769.702575px;}
.x6d_c01250{left:773.586000px;}
.x52_c01250{left:789.037500px;}
.x9f_c01250{left:791.977500px;}
.x5c_c01250{left:804.026568px;}
.x5_c01250{left:877.624500px;}
@media print{
.v0_c01250{vertical-align:0.000000pt;}
.ls0_c01250{letter-spacing:0.000000pt;}
.ws0_c01250{word-spacing:0.000000pt;}
.fs1_c01250{font-size:21.336416pt;}
.fs11_c01250{font-size:32.006399pt;}
.fs7_c01250{font-size:37.344084pt;}
.fs13_c01250{font-size:64.006272pt;}
.fsd_c01250{font-size:64.007200pt;}
.fse_c01250{font-size:64.009247pt;}
.fs14_c01250{font-size:64.014110pt;}
.fs9_c01250{font-size:64.025083pt;}
.fs3_c01250{font-size:64.026906pt;}
.fs5_c01250{font-size:69.353298pt;}
.fs4_c01250{font-size:69.356764pt;}
.fs8_c01250{font-size:74.654794pt;}
.fsb_c01250{font-size:74.661066pt;}
.fs12_c01250{font-size:74.673984pt;}
.fs15_c01250{font-size:74.675066pt;}
.fsf_c01250{font-size:74.676223pt;}
.fsa_c01250{font-size:74.677455pt;}
.fs2_c01250{font-size:85.345663pt;}
.fsc_c01250{font-size:95.992800pt;}
.fs10_c01250{font-size:96.012287pt;}
.fs6_c01250{font-size:96.027644pt;}
.fs0_c01250{font-size:106.680319pt;}
.y0_c01250{bottom:0.000000pt;}
.yb4_c01250{bottom:91.681333pt;}
.yb5_c01250{bottom:92.271233pt;}
.yb6_c01250{bottom:92.835893pt;}
.yb7_c01250{bottom:95.024553pt;}
.yb8_c01250{bottom:95.906553pt;}
.yb9_c01250{bottom:97.537433pt;}
.yba_c01250{bottom:98.839993pt;}
.ybb_c01250{bottom:100.712853pt;}
.yac_c01250{bottom:123.604000pt;}
.yad_c01250{bottom:124.665928pt;}
.yae_c01250{bottom:125.435760pt;}
.yaf_c01250{bottom:126.873336pt;}
.yb0_c01250{bottom:127.700148pt;}
.yb1_c01250{bottom:129.152200pt;}
.yb2_c01250{bottom:130.784684pt;}
.yb3_c01250{bottom:131.390632pt;}
.ya9_c01250{bottom:159.843355pt;}
.yaa_c01250{bottom:161.883688pt;}
.yab_c01250{bottom:162.504661pt;}
.y9d_c01250{bottom:188.401333pt;}
.y9e_c01250{bottom:188.830704pt;}
.y9f_c01250{bottom:189.350216pt;}
.ya0_c01250{bottom:190.304643pt;}
.ya1_c01250{bottom:190.704781pt;}
.ya2_c01250{bottom:191.806805pt;}
.ya3_c01250{bottom:192.354523pt;}
.ya4_c01250{bottom:193.329053pt;}
.ya5_c01250{bottom:194.145552pt;}
.ya6_c01250{bottom:195.247669pt;}
.ya7_c01250{bottom:195.661005pt;}
.ya8_c01250{bottom:196.217851pt;}
.y98_c01250{bottom:215.765333pt;}
.y99_c01250{bottom:216.363093pt;}
.y9a_c01250{bottom:217.073360pt;}
.y9b_c01250{bottom:219.061227pt;}
.y9c_c01250{bottom:220.439413pt;}
.y97_c01250{bottom:254.403392pt;}
.y8d_c01250{bottom:276.725227pt;}
.y8e_c01250{bottom:278.038795pt;}
.y8f_c01250{bottom:278.759797pt;}
.y90_c01250{bottom:280.528331pt;}
.y91_c01250{bottom:281.540299pt;}
.y92_c01250{bottom:283.582229pt;}
.y93_c01250{bottom:286.887115pt;}
.y94_c01250{bottom:288.914837pt;}
.y95_c01250{bottom:289.942059pt;}
.y96_c01250{bottom:291.515989pt;}
.y83_c01250{bottom:315.121333pt;}
.y84_c01250{bottom:315.608160pt;}
.y85_c01250{bottom:316.210016pt;}
.y86_c01250{bottom:317.761781pt;}
.y87_c01250{bottom:318.368309pt;}
.y88_c01250{bottom:319.320885pt;}
.y89_c01250{bottom:320.100128pt;}
.y8a_c01250{bottom:321.194763pt;}
.y8b_c01250{bottom:322.147211pt;}
.y8c_c01250{bottom:322.615989pt;}
.y7c_c01250{bottom:347.042667pt;}
.y7d_c01250{bottom:348.027193pt;}
.y7e_c01250{bottom:349.515555pt;}
.y7f_c01250{bottom:350.189412pt;}
.y80_c01250{bottom:350.687308pt;}
.y81_c01250{bottom:351.694297pt;}
.y82_c01250{bottom:352.189564pt;}
.y71_c01250{bottom:441.841333pt;}
.y72_c01250{bottom:442.290313pt;}
.y73_c01250{bottom:442.843373pt;}
.y74_c01250{bottom:444.456633pt;}
.y75_c01250{bottom:445.338813pt;}
.y76_c01250{bottom:446.073073pt;}
.y77_c01250{bottom:446.512333pt;}
.y78_c01250{bottom:447.092253pt;}
.y79_c01250{bottom:448.579093pt;}
.y7a_c01250{bottom:450.051753pt;}
.y7b_c01250{bottom:450.652993pt;}
.y6a_c01250{bottom:473.284408pt;}
.y6b_c01250{bottom:473.803236pt;}
.y6c_c01250{bottom:474.420031pt;}
.y6d_c01250{bottom:476.269612pt;}
.y6e_c01250{bottom:477.601397pt;}
.y6f_c01250{bottom:478.934660pt;}
.y70_c01250{bottom:479.613905pt;}
.y66_c01250{bottom:507.127169pt;}
.y67_c01250{bottom:507.618776pt;}
.y68_c01250{bottom:508.281017pt;}
.y69_c01250{bottom:508.944348pt;}
.y5a_c01250{bottom:536.400804pt;}
.y5b_c01250{bottom:537.270369pt;}
.y5c_c01250{bottom:537.910655pt;}
.y5d_c01250{bottom:538.736612pt;}
.y5e_c01250{bottom:539.215091pt;}
.y5f_c01250{bottom:540.719848pt;}
.y60_c01250{bottom:542.409457pt;}
.y61_c01250{bottom:544.241889pt;}
.y62_c01250{bottom:544.755165pt;}
.y63_c01250{bottom:546.089605pt;}
.y64_c01250{bottom:546.760600pt;}
.y65_c01250{bottom:547.281179pt;}
.y59_c01250{bottom:568.016000pt;}
.y4e_c01250{bottom:598.802667pt;}
.y4f_c01250{bottom:599.486905pt;}
.y50_c01250{bottom:600.121980pt;}
.y51_c01250{bottom:601.770753pt;}
.y52_c01250{bottom:602.273001pt;}
.y53_c01250{bottom:603.603036pt;}
.y54_c01250{bottom:604.597717pt;}
.y55_c01250{bottom:604.949731pt;}
.y56_c01250{bottom:606.100404pt;}
.y57_c01250{bottom:607.117208pt;}
.y58_c01250{bottom:609.279563pt;}
.y45_c01250{bottom:641.272485pt;}
.y46_c01250{bottom:641.633328pt;}
.y47_c01250{bottom:641.911696pt;}
.y48_c01250{bottom:642.525755pt;}
.y49_c01250{bottom:642.801131pt;}
.y4a_c01250{bottom:643.285637pt;}
.y4b_c01250{bottom:643.827899pt;}
.y4c_c01250{bottom:644.039691pt;}
.y4d_c01250{bottom:644.447312pt;}
.y42_c01250{bottom:661.209333pt;}
.y43_c01250{bottom:662.857152pt;}
.y44_c01250{bottom:663.668928pt;}
.y3a_c01250{bottom:747.386667pt;}
.y3b_c01250{bottom:749.463344pt;}
.y3c_c01250{bottom:751.023039pt;}
.y3d_c01250{bottom:753.818856pt;}
.y3e_c01250{bottom:756.200956pt;}
.y3f_c01250{bottom:757.835435pt;}
.y40_c01250{bottom:761.024141pt;}
.y41_c01250{bottom:763.027620pt;}
.y39_c01250{bottom:789.889952pt;}
.y38_c01250{bottom:789.890091pt;}
.y2f_c01250{bottom:816.234528pt;}
.y30_c01250{bottom:817.148704pt;}
.y31_c01250{bottom:817.997835pt;}
.y32_c01250{bottom:820.240021pt;}
.y33_c01250{bottom:821.134891pt;}
.y34_c01250{bottom:822.278901pt;}
.y35_c01250{bottom:824.288971pt;}
.y36_c01250{bottom:826.585419pt;}
.y37_c01250{bottom:828.372981pt;}
.y28_c01250{bottom:850.085333pt;}
.y29_c01250{bottom:850.566453pt;}
.y2a_c01250{bottom:852.225269pt;}
.y2b_c01250{bottom:852.917781pt;}
.y2c_c01250{bottom:855.054965pt;}
.y2d_c01250{bottom:856.680053pt;}
.y2e_c01250{bottom:861.866485pt;}
.y22_c01250{bottom:877.678800pt;}
.y23_c01250{bottom:879.019925pt;}
.y24_c01250{bottom:880.233227pt;}
.y25_c01250{bottom:883.133120pt;}
.y26_c01250{bottom:884.750272pt;}
.y27_c01250{bottom:887.695275pt;}
.y16_c01250{bottom:907.926667pt;}
.y17_c01250{bottom:909.227464pt;}
.y18_c01250{bottom:910.226592pt;}
.y19_c01250{bottom:912.215523pt;}
.y1a_c01250{bottom:912.774765pt;}
.y1b_c01250{bottom:915.283523pt;}
.y1c_c01250{bottom:917.604664pt;}
.y1d_c01250{bottom:918.334987pt;}
.y1e_c01250{bottom:919.370480pt;}
.y1f_c01250{bottom:921.417651pt;}
.y20_c01250{bottom:922.694805pt;}
.y21_c01250{bottom:923.218237pt;}
.y13_c01250{bottom:944.630667pt;}
.y14_c01250{bottom:945.777056pt;}
.y15_c01250{bottom:946.616123pt;}
.y7_c01250{bottom:1039.201333pt;}
.y8_c01250{bottom:1040.056683pt;}
.y6_c01250{bottom:1040.162667pt;}
.y9_c01250{bottom:1040.538485pt;}
.ya_c01250{bottom:1042.161872pt;}
.yb_c01250{bottom:1043.496327pt;}
.yc_c01250{bottom:1044.173652pt;}
.yd_c01250{bottom:1045.173184pt;}
.ye_c01250{bottom:1045.671148pt;}
.yf_c01250{bottom:1047.179977pt;}
.y10_c01250{bottom:1047.507375pt;}
.y11_c01250{bottom:1048.025739pt;}
.y12_c01250{bottom:1049.359989pt;}
.y1_c01250{bottom:1093.201333pt;}
.y2_c01250{bottom:1093.529589pt;}
.y3_c01250{bottom:1094.146037pt;}
.y4_c01250{bottom:1098.417013pt;}
.y5_c01250{bottom:1100.682379pt;}
.h3_c01250{height:21.336416pt;}
.h13_c01250{height:32.006399pt;}
.h9_c01250{height:37.344084pt;}
.h15_c01250{height:64.006272pt;}
.hf_c01250{height:64.007200pt;}
.h10_c01250{height:64.009247pt;}
.h16_c01250{height:64.014110pt;}
.hb_c01250{height:64.025083pt;}
.h5_c01250{height:64.026906pt;}
.h7_c01250{height:69.353298pt;}
.h6_c01250{height:69.356764pt;}
.ha_c01250{height:74.654794pt;}
.hd_c01250{height:74.661066pt;}
.h14_c01250{height:74.673984pt;}
.h17_c01250{height:74.675066pt;}
.h11_c01250{height:74.676223pt;}
.hc_c01250{height:74.677455pt;}
.h4_c01250{height:85.345663pt;}
.he_c01250{height:95.992800pt;}
.h12_c01250{height:96.012287pt;}
.h8_c01250{height:96.027644pt;}
.h2_c01250{height:106.680319pt;}
.h1_c01250{height:1118.666667pt;}
.h0_c01250{height:1118.880000pt;}
.w1_c01250{width:799.333333pt;}
.w0_c01250{width:799.440000pt;}
.x0_c01250{left:0.000000pt;}
.x7_c01250{left:62.489333pt;}
.x16_c01250{left:65.560000pt;}
.x39_c01250{left:70.238667pt;}
.x22_c01250{left:76.153069pt;}
.x2e_c01250{left:79.122763pt;}
.x48_c01250{left:85.078667pt;}
.x95_c01250{left:89.941333pt;}
.x7e_c01250{left:94.966528pt;}
.x60_c01250{left:98.770344pt;}
.x66_c01250{left:100.188000pt;}
.x9a_c01250{left:101.878667pt;}
.x74_c01250{left:104.028000pt;}
.x87_c01250{left:107.309333pt;}
.x8_c01250{left:112.804000pt;}
.x17_c01250{left:115.590667pt;}
.x23_c01250{left:116.804352pt;}
.x2f_c01250{left:118.881056pt;}
.x3a_c01250{left:120.838683pt;}
.x49_c01250{left:125.328000pt;}
.x54_c01250{left:127.252081pt;}
.x61_c01250{left:129.177881pt;}
.x67_c01250{left:130.120000pt;}
.x75_c01250{left:134.454667pt;}
.x88_c01250{left:137.197333pt;}
.x8a_c01250{left:138.293333pt;}
.x9_c01250{left:141.145333pt;}
.x7f_c01250{left:145.473109pt;}
.x18_c01250{left:154.018667pt;}
.x30_c01250{left:155.817952pt;}
.x3b_c01250{left:158.841975pt;}
.x43_c01250{left:161.272107pt;}
.x4a_c01250{left:162.685333pt;}
.x55_c01250{left:164.821817pt;}
.x68_c01250{left:166.990667pt;}
.x76_c01250{left:172.070667pt;}
.x80_c01250{left:173.198005pt;}
.x8b_c01250{left:175.401333pt;}
.x96_c01250{left:177.168000pt;}
.x9b_c01250{left:178.849333pt;}
.x13_c01250{left:181.134667pt;}
.x27_c01250{left:183.098667pt;}
.x37_c01250{left:185.519915pt;}
.x41_c01250{left:189.956000pt;}
.x53_c01250{left:190.982667pt;}
.x5d_c01250{left:195.298281pt;}
.x6e_c01250{left:199.876000pt;}
.x28_c01250{left:203.145333pt;}
.x93_c01250{left:204.568064pt;}
.x56_c01250{left:213.308849pt;}
.x38_c01250{left:214.808779pt;}
.x14_c01250{left:220.665333pt;}
.x5e_c01250{left:224.112301pt;}
.x3c_c01250{left:226.964451pt;}
.x19_c01250{left:230.516000pt;}
.xa_c01250{left:236.638667pt;}
.x24_c01250{left:241.443013pt;}
.x8c_c01250{left:243.574667pt;}
.x97_c01250{left:245.624000pt;}
.x15_c01250{left:249.598667pt;}
.x1a_c01250{left:252.025333pt;}
.x31_c01250{left:253.300288pt;}
.x6f_c01250{left:257.789333pt;}
.x4b_c01250{left:259.672000pt;}
.x5f_c01250{left:262.998212pt;}
.x77_c01250{left:269.056000pt;}
.x29_c01250{left:272.262667pt;}
.x62_c01250{left:273.906849pt;}
.x42_c01250{left:277.798667pt;}
.x81_c01250{left:280.128896pt;}
.x3d_c01250{left:285.006351pt;}
.x44_c01250{left:288.302736pt;}
.x4c_c01250{left:289.216000pt;}
.x25_c01250{left:290.452771pt;}
.x32_c01250{left:292.198549pt;}
.x2a_c01250{left:301.117333pt;}
.x78_c01250{left:306.964000pt;}
.x1_c01250{left:312.545333pt;}
.xb_c01250{left:315.136000pt;}
.x3e_c01250{left:324.831819pt;}
.x57_c01250{left:329.730531pt;}
.x94_c01250{left:331.315651pt;}
.x2_c01250{left:333.061333pt;}
.x89_c01250{left:341.013333pt;}
.x33_c01250{left:341.922400pt;}
.x70_c01250{left:345.340000pt;}
.x1b_c01250{left:348.516000pt;}
.x8d_c01250{left:350.872000pt;}
.x63_c01250{left:352.065352pt;}
.xc_c01250{left:354.978667pt;}
.x45_c01250{left:357.456688pt;}
.x82_c01250{left:358.653664pt;}
.x79_c01250{left:366.500000pt;}
.x4d_c01250{left:367.453333pt;}
.x3_c01250{left:371.589333pt;}
.x26_c01250{left:379.705880pt;}
.x69_c01250{left:382.304000pt;}
.x9c_c01250{left:383.560000pt;}
.x71_c01250{left:384.978667pt;}
.x2b_c01250{left:390.166667pt;}
.x3f_c01250{left:402.527379pt;}
.x6_c01250{left:411.750667pt;}
.xd_c01250{left:413.774667pt;}
.x7a_c01250{left:415.202667pt;}
.x4e_c01250{left:425.964000pt;}
.x34_c01250{left:429.288480pt;}
.x64_c01250{left:430.289180pt;}
.x98_c01250{left:431.878667pt;}
.x46_c01250{left:435.011605pt;}
.x1c_c01250{left:437.790667pt;}
.xe_c01250{left:443.066667pt;}
.x4f_c01250{left:446.670667pt;}
.x6a_c01250{left:450.249333pt;}
.x40_c01250{left:451.343847pt;}
.x2c_c01250{left:457.878667pt;}
.x8e_c01250{left:459.604000pt;}
.x99_c01250{left:460.733333pt;}
.x1d_c01250{left:465.880000pt;}
.x65_c01250{left:470.159196pt;}
.x72_c01250{left:473.501333pt;}
.x7b_c01250{left:483.617333pt;}
.x83_c01250{left:485.772000pt;}
.x9d_c01250{left:492.285333pt;}
.x73_c01250{left:502.634667pt;}
.x1e_c01250{left:505.706667pt;}
.x50_c01250{left:514.357333pt;}
.x8f_c01250{left:517.925333pt;}
.x47_c01250{left:523.423536pt;}
.x35_c01250{left:529.142880pt;}
.xf_c01250{left:531.821333pt;}
.x58_c01250{left:536.344041pt;}
.x7c_c01250{left:543.145333pt;}
.x6b_c01250{left:549.372000pt;}
.x10_c01250{left:551.080000pt;}
.x84_c01250{left:563.742187pt;}
.x59_c01250{left:566.467576pt;}
.x7d_c01250{left:572.444000pt;}
.x51_c01250{left:574.169333pt;}
.x9e_c01250{left:579.122667pt;}
.x11_c01250{left:581.572000pt;}
.x1f_c01250{left:584.444000pt;}
.x90_c01250{left:596.648000pt;}
.x85_c01250{left:603.270539pt;}
.x36_c01250{left:606.848736pt;}
.x91_c01250{left:626.172000pt;}
.x20_c01250{left:633.565333pt;}
.x4_c01250{left:638.525333pt;}
.x5a_c01250{left:644.780763pt;}
.x6c_c01250{left:647.549333pt;}
.x21_c01250{left:653.697333pt;}
.x12_c01250{left:660.057333pt;}
.x86_c01250{left:663.798187pt;}
.x92_c01250{left:665.946667pt;}
.x2d_c01250{left:673.980000pt;}
.x5b_c01250{left:684.180067pt;}
.x6d_c01250{left:687.632000pt;}
.x52_c01250{left:701.366667pt;}
.x9f_c01250{left:703.980000pt;}
.x5c_c01250{left:714.690283pt;}
.x5_c01250{left:780.110667pt;}
}





/* 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_c01251 {
    display:none;
  }
  .loading-indicator_c01251.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01251 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_c01251 { 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_c01251" -> "#page-container .classname_c01251")
 */
.pf_c01251 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01251 { /* 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_c01251.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01251 { /* 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_c01251 { /* 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_c01251 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01251 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01251 {overflow:visible;}
  }
}
.c_c01251 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01251 { /* 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_c01251:after { /* webkit #35443 */
  content: '';
}
.t_c01251:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01251 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 */
}
.__c01251 { /* 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_c01251 { /* info for Javascript */
  display:none;
}
.l_c01251 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01251 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01251 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01251: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_c01251 {
    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_c01251.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01251.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_c01251 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01251{font-family:sans-serif;visibility:hidden;}
.sc__c01251{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01251{-webkit-text-stroke:0px transparent;}
}
.y0_c01251{bottom:0.000000px;}
.h1_c01251{height:1258.500000px;}
.h0_c01251{height:1258.740000px;}
.w1_c01251{width:899.250000px;}
.w0_c01251{width:899.370000px;}
.x0_c01251{left:0.000000px;}
@media print{
.y0_c01251{bottom:0.000000pt;}
.h1_c01251{height:1118.666667pt;}
.h0_c01251{height:1118.880000pt;}
.w1_c01251{width:799.333333pt;}
.w0_c01251{width:799.440000pt;}
.x0_c01251{left:0.000000pt;}
}





/* 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_c01252 {
    display:none;
  }
  .loading-indicator_c01252.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01252 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_c01252 { 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_c01252" -> "#page-container .classname_c01252")
 */
.pf_c01252 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01252 { /* 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_c01252.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01252 { /* 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_c01252 { /* 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_c01252 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01252 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01252 {overflow:visible;}
  }
}
.c_c01252 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01252 { /* 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_c01252:after { /* webkit #35443 */
  content: '';
}
.t_c01252:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01252 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 */
}
.__c01252 { /* 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_c01252 { /* info for Javascript */
  display:none;
}
.l_c01252 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01252 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01252 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01252: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_c01252 {
    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_c01252.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01252.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_c01252 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01252{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01252;src:url('chunks/assets/font_c605e72f209fc835e906f064.woff2')format("woff");}.ff1_c01252{font-family:ff1_c01252;line-height:1.000000;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;}
.ma3_c01252{transform:matrix(0.009089,0.000145,-0.003999,0.249968,0,0);-ms-transform:matrix(0.009089,0.000145,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.009089,0.000145,-0.003999,0.249968,0,0);}
.m29_c01252{transform:matrix(0.009090,-0.000064,0.001750,0.249994,0,0);-ms-transform:matrix(0.009090,-0.000064,0.001750,0.249994,0,0);-webkit-transform:matrix(0.009090,-0.000064,0.001750,0.249994,0,0);}
.mb8_c01252{transform:matrix(0.011859,0.000130,-0.002750,0.249985,0,0);-ms-transform:matrix(0.011859,0.000130,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.011859,0.000130,-0.002750,0.249985,0,0);}
.mc7_c01252{transform:matrix(0.013254,0.000186,-0.003500,0.249976,0,0);-ms-transform:matrix(0.013254,0.000186,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.013254,0.000186,-0.003500,0.249976,0,0);}
.mc_c01252{transform:matrix(0.023865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.023865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.023865,0.000000,0.000000,0.250000,0,0);}
.md6_c01252{transform:matrix(0.081338,0.001383,-0.004249,0.249964,0,0);-ms-transform:matrix(0.081338,0.001383,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.081338,0.001383,-0.004249,0.249964,0,0);}
.m40_c01252{transform:matrix(0.108427,0.000759,-0.001750,0.249994,0,0);-ms-transform:matrix(0.108427,0.000759,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.108427,0.000759,-0.001750,0.249994,0,0);}
.m6e_c01252{transform:matrix(0.114645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114645,0.000000,0.000000,0.250000,0,0);}
.m3e_c01252{transform:matrix(0.119912,0.000839,-0.001750,0.249994,0,0);-ms-transform:matrix(0.119912,0.000839,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.119912,0.000839,-0.001750,0.249994,0,0);}
.m4b_c01252{transform:matrix(0.122522,0.000858,-0.001750,0.249994,0,0);-ms-transform:matrix(0.122522,0.000858,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.122522,0.000858,-0.001750,0.249994,0,0);}
.mf6_c01252{transform:matrix(0.124402,0.002861,-0.005748,0.249934,0,0);-ms-transform:matrix(0.124402,0.002861,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.124402,0.002861,-0.005748,0.249934,0,0);}
.ma5_c01252{transform:matrix(0.126692,0.001394,-0.002750,0.249985,0,0);-ms-transform:matrix(0.126692,0.001394,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.126692,0.001394,-0.002750,0.249985,0,0);}
.m3f_c01252{transform:matrix(0.127477,0.000892,-0.001750,0.249994,0,0);-ms-transform:matrix(0.127477,0.000892,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.127477,0.000892,-0.001750,0.249994,0,0);}
.ma6_c01252{transform:matrix(0.133877,0.001473,-0.002750,0.249985,0,0);-ms-transform:matrix(0.133877,0.001473,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.133877,0.001473,-0.002750,0.249985,0,0);}
.m41_c01252{transform:matrix(0.135092,0.000946,-0.001750,0.249994,0,0);-ms-transform:matrix(0.135092,0.000946,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.135092,0.000946,-0.001750,0.249994,0,0);}
.m45_c01252{transform:matrix(0.138327,0.000968,-0.001750,0.249994,0,0);-ms-transform:matrix(0.138327,0.000968,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.138327,0.000968,-0.001750,0.249994,0,0);}
.ma9_c01252{transform:matrix(0.138422,0.001523,-0.002750,0.249985,0,0);-ms-transform:matrix(0.138422,0.001523,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.138422,0.001523,-0.002750,0.249985,0,0);}
.ma8_c01252{transform:matrix(0.145686,0.001603,-0.002750,0.249985,0,0);-ms-transform:matrix(0.145686,0.001603,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.145686,0.001603,-0.002750,0.249985,0,0);}
.ma4_c01252{transform:matrix(0.149111,0.001640,-0.002750,0.249985,0,0);-ms-transform:matrix(0.149111,0.001640,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.149111,0.001640,-0.002750,0.249985,0,0);}
.m4d_c01252{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m42_c01252{transform:matrix(0.150416,0.001053,-0.001750,0.249994,0,0);-ms-transform:matrix(0.150416,0.001053,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.150416,0.001053,-0.001750,0.249994,0,0);}
.ma7_c01252{transform:matrix(0.154361,0.001698,-0.002750,0.249985,0,0);-ms-transform:matrix(0.154361,0.001698,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.154361,0.001698,-0.002750,0.249985,0,0);}
.m31_c01252{transform:matrix(0.154870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154870,0.000000,0.000000,0.250000,0,0);}
.m49_c01252{transform:matrix(0.165291,0.001157,-0.001750,0.249994,0,0);-ms-transform:matrix(0.165291,0.001157,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.165291,0.001157,-0.001750,0.249994,0,0);}
.md0_c01252{transform:matrix(0.165736,0.002818,-0.004249,0.249964,0,0);-ms-transform:matrix(0.165736,0.002818,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.165736,0.002818,-0.004249,0.249964,0,0);}
.m44_c01252{transform:matrix(0.165866,0.001161,-0.001750,0.249994,0,0);-ms-transform:matrix(0.165866,0.001161,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.165866,0.001161,-0.001750,0.249994,0,0);}
.md9_c01252{transform:matrix(0.168026,0.002856,-0.004249,0.249964,0,0);-ms-transform:matrix(0.168026,0.002856,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.168026,0.002856,-0.004249,0.249964,0,0);}
.m4f_c01252{transform:matrix(0.169295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169295,0.000000,0.000000,0.250000,0,0);}
.m47_c01252{transform:matrix(0.169911,0.001189,-0.001750,0.249994,0,0);-ms-transform:matrix(0.169911,0.001189,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.169911,0.001189,-0.001750,0.249994,0,0);}
.mdb_c01252{transform:matrix(0.177364,0.003015,-0.004249,0.249964,0,0);-ms-transform:matrix(0.177364,0.003015,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.177364,0.003015,-0.004249,0.249964,0,0);}
.ma0_c01252{transform:matrix(0.177927,0.002847,-0.003999,0.249968,0,0);-ms-transform:matrix(0.177927,0.002847,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.177927,0.002847,-0.003999,0.249968,0,0);}
.m53_c01252{transform:matrix(0.178225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178225,0.000000,0.000000,0.250000,0,0);}
.m55_c01252{transform:matrix(0.180555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180555,0.000000,0.000000,0.250000,0,0);}
.m4c_c01252{transform:matrix(0.183720,0.001286,-0.001750,0.249994,0,0);-ms-transform:matrix(0.183720,0.001286,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.183720,0.001286,-0.001750,0.249994,0,0);}
.m50_c01252{transform:matrix(0.184295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184295,0.000000,0.000000,0.250000,0,0);}
.mcf_c01252{transform:matrix(0.185358,0.003151,-0.004249,0.249964,0,0);-ms-transform:matrix(0.185358,0.003151,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.185358,0.003151,-0.004249,0.249964,0,0);}
.m6c_c01252{transform:matrix(0.185920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185920,0.000000,0.000000,0.250000,0,0);}
.m46_c01252{transform:matrix(0.186200,0.001303,-0.001750,0.249994,0,0);-ms-transform:matrix(0.186200,0.001303,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.186200,0.001303,-0.001750,0.249994,0,0);}
.m4e_c01252{transform:matrix(0.186895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186895,0.000000,0.000000,0.250000,0,0);}
.md2_c01252{transform:matrix(0.187728,0.003191,-0.004249,0.249964,0,0);-ms-transform:matrix(0.187728,0.003191,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.187728,0.003191,-0.004249,0.249964,0,0);}
.m15_c01252{transform:matrix(0.187765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187765,0.000000,0.000000,0.250000,0,0);}
.m58_c01252{transform:matrix(0.188745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188745,0.000000,0.000000,0.250000,0,0);}
.m48_c01252{transform:matrix(0.189705,0.001328,-0.001750,0.249994,0,0);-ms-transform:matrix(0.189705,0.001328,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.189705,0.001328,-0.001750,0.249994,0,0);}
.m1d_c01252{transform:matrix(0.191025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191025,0.000000,0.000000,0.250000,0,0);}
.mce_c01252{transform:matrix(0.192992,0.003281,-0.004249,0.249964,0,0);-ms-transform:matrix(0.192992,0.003281,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.192992,0.003281,-0.004249,0.249964,0,0);}
.mcd_c01252{transform:matrix(0.193222,0.003285,-0.004249,0.249964,0,0);-ms-transform:matrix(0.193222,0.003285,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.193222,0.003285,-0.004249,0.249964,0,0);}
.me0_c01252{transform:matrix(0.193562,0.003291,-0.004249,0.249964,0,0);-ms-transform:matrix(0.193562,0.003291,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.193562,0.003291,-0.004249,0.249964,0,0);}
.md4_c01252{transform:matrix(0.193872,0.003296,-0.004249,0.249964,0,0);-ms-transform:matrix(0.193872,0.003296,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.193872,0.003296,-0.004249,0.249964,0,0);}
.md3_c01252{transform:matrix(0.194247,0.003302,-0.004249,0.249964,0,0);-ms-transform:matrix(0.194247,0.003302,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.194247,0.003302,-0.004249,0.249964,0,0);}
.md1_c01252{transform:matrix(0.195262,0.003319,-0.004249,0.249964,0,0);-ms-transform:matrix(0.195262,0.003319,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.195262,0.003319,-0.004249,0.249964,0,0);}
.mdd_c01252{transform:matrix(0.195997,0.003332,-0.004249,0.249964,0,0);-ms-transform:matrix(0.195997,0.003332,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.195997,0.003332,-0.004249,0.249964,0,0);}
.md7_c01252{transform:matrix(0.196242,0.003336,-0.004249,0.249964,0,0);-ms-transform:matrix(0.196242,0.003336,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.196242,0.003336,-0.004249,0.249964,0,0);}
.m51_c01252{transform:matrix(0.196265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196265,0.000000,0.000000,0.250000,0,0);}
.m59_c01252{transform:matrix(0.196365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196365,0.000000,0.000000,0.250000,0,0);}
.m43_c01252{transform:matrix(0.197090,0.001380,-0.001750,0.249994,0,0);-ms-transform:matrix(0.197090,0.001380,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.197090,0.001380,-0.001750,0.249994,0,0);}
.mbe_c01252{transform:matrix(0.197291,0.003946,-0.004999,0.249950,0,0);-ms-transform:matrix(0.197291,0.003946,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.197291,0.003946,-0.004999,0.249950,0,0);}
.m57_c01252{transform:matrix(0.197365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197365,0.000000,0.000000,0.250000,0,0);}
.mef_c01252{transform:matrix(0.197858,0.004551,-0.005748,0.249934,0,0);-ms-transform:matrix(0.197858,0.004551,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.197858,0.004551,-0.005748,0.249934,0,0);}
.me1_c01252{transform:matrix(0.198251,0.003370,-0.004249,0.249964,0,0);-ms-transform:matrix(0.198251,0.003370,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.198251,0.003370,-0.004249,0.249964,0,0);}
.mda_c01252{transform:matrix(0.198436,0.003373,-0.004249,0.249964,0,0);-ms-transform:matrix(0.198436,0.003373,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.198436,0.003373,-0.004249,0.249964,0,0);}
.md8_c01252{transform:matrix(0.198551,0.003375,-0.004249,0.249964,0,0);-ms-transform:matrix(0.198551,0.003375,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.198551,0.003375,-0.004249,0.249964,0,0);}
.m52_c01252{transform:matrix(0.199605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199605,0.000000,0.000000,0.250000,0,0);}
.mbb_c01252{transform:matrix(0.199660,0.003993,-0.004999,0.249950,0,0);-ms-transform:matrix(0.199660,0.003993,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.199660,0.003993,-0.004999,0.249950,0,0);}
.m54_c01252{transform:matrix(0.199695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199695,0.000000,0.000000,0.250000,0,0);}
.m2b_c01252{transform:matrix(0.199805,-0.001399,0.001750,0.249994,0,0);-ms-transform:matrix(0.199805,-0.001399,0.001750,0.249994,0,0);-webkit-transform:matrix(0.199805,-0.001399,0.001750,0.249994,0,0);}
.mea_c01252{transform:matrix(0.201442,0.004633,-0.005748,0.249934,0,0);-ms-transform:matrix(0.201442,0.004633,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.201442,0.004633,-0.005748,0.249934,0,0);}
.mc1_c01252{transform:matrix(0.203124,0.004062,-0.004999,0.249950,0,0);-ms-transform:matrix(0.203124,0.004062,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.203124,0.004062,-0.004999,0.249950,0,0);}
.m9a_c01252{transform:matrix(0.204104,0.003266,-0.003999,0.249968,0,0);-ms-transform:matrix(0.204104,0.003266,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.204104,0.003266,-0.003999,0.249968,0,0);}
.mdc_c01252{transform:matrix(0.204880,0.003483,-0.004249,0.249964,0,0);-ms-transform:matrix(0.204880,0.003483,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.204880,0.003483,-0.004249,0.249964,0,0);}
.m9f_c01252{transform:matrix(0.205064,0.003281,-0.003999,0.249968,0,0);-ms-transform:matrix(0.205064,0.003281,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.205064,0.003281,-0.003999,0.249968,0,0);}
.m5e_c01252{transform:matrix(0.205140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205140,0.000000,0.000000,0.250000,0,0);}
.m32_c01252{transform:matrix(0.205275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205275,0.000000,0.000000,0.250000,0,0);}
.mc9_c01252{transform:matrix(0.206279,0.004126,-0.004999,0.249950,0,0);-ms-transform:matrix(0.206279,0.004126,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.206279,0.004126,-0.004999,0.249950,0,0);}
.m9c_c01252{transform:matrix(0.206294,0.003301,-0.003999,0.249968,0,0);-ms-transform:matrix(0.206294,0.003301,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.206294,0.003301,-0.003999,0.249968,0,0);}
.m7c_c01252{transform:matrix(0.207000,0.002070,-0.002500,0.249988,0,0);-ms-transform:matrix(0.207000,0.002070,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.207000,0.002070,-0.002500,0.249988,0,0);}
.mf0_c01252{transform:matrix(0.207210,0.004766,-0.005748,0.249934,0,0);-ms-transform:matrix(0.207210,0.004766,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.207210,0.004766,-0.005748,0.249934,0,0);}
.m4a_c01252{transform:matrix(0.207425,0.001452,-0.001750,0.249994,0,0);-ms-transform:matrix(0.207425,0.001452,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.207425,0.001452,-0.001750,0.249994,0,0);}
.m72_c01252{transform:matrix(0.208780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208780,0.000000,0.000000,0.250000,0,0);}
.med_c01252{transform:matrix(0.209825,0.004826,-0.005748,0.249934,0,0);-ms-transform:matrix(0.209825,0.004826,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.209825,0.004826,-0.005748,0.249934,0,0);}
.mdf_c01252{transform:matrix(0.210495,0.003578,-0.004249,0.249964,0,0);-ms-transform:matrix(0.210495,0.003578,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.210495,0.003578,-0.004249,0.249964,0,0);}
.mee_c01252{transform:matrix(0.210874,0.004850,-0.005748,0.249934,0,0);-ms-transform:matrix(0.210874,0.004850,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.210874,0.004850,-0.005748,0.249934,0,0);}
.mbc_c01252{transform:matrix(0.210983,0.004220,-0.004999,0.249950,0,0);-ms-transform:matrix(0.210983,0.004220,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.210983,0.004220,-0.004999,0.249950,0,0);}
.m2a_c01252{transform:matrix(0.212775,-0.001489,0.001750,0.249994,0,0);-ms-transform:matrix(0.212775,-0.001489,0.001750,0.249994,0,0);-webkit-transform:matrix(0.212775,-0.001489,0.001750,0.249994,0,0);}
.m70_c01252{transform:matrix(0.213675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213675,0.000000,0.000000,0.250000,0,0);}
.mac_c01252{transform:matrix(0.213792,0.002352,-0.002750,0.249985,0,0);-ms-transform:matrix(0.213792,0.002352,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.213792,0.002352,-0.002750,0.249985,0,0);}
.m5c_c01252{transform:matrix(0.213840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213840,0.000000,0.000000,0.250000,0,0);}
.m7d_c01252{transform:matrix(0.214564,0.002146,-0.002500,0.249988,0,0);-ms-transform:matrix(0.214564,0.002146,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.214564,0.002146,-0.002500,0.249988,0,0);}
.mc2_c01252{transform:matrix(0.215107,0.004302,-0.004999,0.249950,0,0);-ms-transform:matrix(0.215107,0.004302,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.215107,0.004302,-0.004999,0.249950,0,0);}
.m78_c01252{transform:matrix(0.215704,0.002157,-0.002500,0.249988,0,0);-ms-transform:matrix(0.215704,0.002157,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.215704,0.002157,-0.002500,0.249988,0,0);}
.m2_c01252{transform:matrix(0.215930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215930,0.000000,0.000000,0.250000,0,0);}
.m8e_c01252{transform:matrix(0.215992,0.003456,-0.003999,0.249968,0,0);-ms-transform:matrix(0.215992,0.003456,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.215992,0.003456,-0.003999,0.249968,0,0);}
.m76_c01252{transform:matrix(0.216854,0.002169,-0.002500,0.249988,0,0);-ms-transform:matrix(0.216854,0.002169,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.216854,0.002169,-0.002500,0.249988,0,0);}
.m91_c01252{transform:matrix(0.217007,0.003472,-0.003999,0.249968,0,0);-ms-transform:matrix(0.217007,0.003472,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.217007,0.003472,-0.003999,0.249968,0,0);}
.m7f_c01252{transform:matrix(0.218244,0.002182,-0.002500,0.249988,0,0);-ms-transform:matrix(0.218244,0.002182,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.218244,0.002182,-0.002500,0.249988,0,0);}
.mc0_c01252{transform:matrix(0.218711,0.004374,-0.004999,0.249950,0,0);-ms-transform:matrix(0.218711,0.004374,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.218711,0.004374,-0.004999,0.249950,0,0);}
.m6f_c01252{transform:matrix(0.218890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218890,0.000000,0.000000,0.250000,0,0);}
.m71_c01252{transform:matrix(0.219410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219410,0.000000,0.000000,0.250000,0,0);}
.mc4_c01252{transform:matrix(0.219491,0.004390,-0.004999,0.249950,0,0);-ms-transform:matrix(0.219491,0.004390,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.219491,0.004390,-0.004999,0.249950,0,0);}
.mc8_c01252{transform:matrix(0.220026,0.004401,-0.004999,0.249950,0,0);-ms-transform:matrix(0.220026,0.004401,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.220026,0.004401,-0.004999,0.249950,0,0);}
.ma1_c01252{transform:matrix(0.221017,0.003536,-0.003999,0.249968,0,0);-ms-transform:matrix(0.221017,0.003536,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.221017,0.003536,-0.003999,0.249968,0,0);}
.mb0_c01252{transform:matrix(0.221442,0.002436,-0.002750,0.249985,0,0);-ms-transform:matrix(0.221442,0.002436,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.221442,0.002436,-0.002750,0.249985,0,0);}
.m5d_c01252{transform:matrix(0.221450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221450,0.000000,0.000000,0.250000,0,0);}
.m5a_c01252{transform:matrix(0.221680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221680,0.000000,0.000000,0.250000,0,0);}
.m69_c01252{transform:matrix(0.223905,0.001567,-0.001750,0.249994,0,0);-ms-transform:matrix(0.223905,0.001567,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.223905,0.001567,-0.001750,0.249994,0,0);}
.mcc_c01252{transform:matrix(0.224190,0.004484,-0.004999,0.249950,0,0);-ms-transform:matrix(0.224190,0.004484,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.224190,0.004484,-0.004999,0.249950,0,0);}
.mec_c01252{transform:matrix(0.224531,0.005164,-0.005748,0.249934,0,0);-ms-transform:matrix(0.224531,0.005164,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.224531,0.005164,-0.005748,0.249934,0,0);}
.m73_c01252{transform:matrix(0.225385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225385,0.000000,0.000000,0.250000,0,0);}
.mca_c01252{transform:matrix(0.226290,0.004526,-0.004999,0.249950,0,0);-ms-transform:matrix(0.226290,0.004526,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.226290,0.004526,-0.004999,0.249950,0,0);}
.m26_c01252{transform:matrix(0.227086,0.002952,-0.003250,0.249979,0,0);-ms-transform:matrix(0.227086,0.002952,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.227086,0.002952,-0.003250,0.249979,0,0);}
.m2e_c01252{transform:matrix(0.228164,-0.001597,0.001750,0.249994,0,0);-ms-transform:matrix(0.228164,-0.001597,0.001750,0.249994,0,0);-webkit-transform:matrix(0.228164,-0.001597,0.001750,0.249994,0,0);}
.m98_c01252{transform:matrix(0.228381,0.003654,-0.003999,0.249968,0,0);-ms-transform:matrix(0.228381,0.003654,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.228381,0.003654,-0.003999,0.249968,0,0);}
.mba_c01252{transform:matrix(0.229999,0.004600,-0.004999,0.249950,0,0);-ms-transform:matrix(0.229999,0.004600,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.229999,0.004600,-0.004999,0.249950,0,0);}
.m7_c01252{transform:matrix(0.231140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231140,0.000000,0.000000,0.250000,0,0);}
.m9b_c01252{transform:matrix(0.231315,0.003701,-0.003999,0.249968,0,0);-ms-transform:matrix(0.231315,0.003701,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.231315,0.003701,-0.003999,0.249968,0,0);}
.m2c_c01252{transform:matrix(0.231824,-0.001623,0.001750,0.249994,0,0);-ms-transform:matrix(0.231824,-0.001623,0.001750,0.249994,0,0);-webkit-transform:matrix(0.231824,-0.001623,0.001750,0.249994,0,0);}
.md5_c01252{transform:matrix(0.232546,0.003953,-0.004249,0.249964,0,0);-ms-transform:matrix(0.232546,0.003953,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.232546,0.003953,-0.004249,0.249964,0,0);}
.m36_c01252{transform:matrix(0.232581,0.002558,-0.002750,0.249985,0,0);-ms-transform:matrix(0.232581,0.002558,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.232581,0.002558,-0.002750,0.249985,0,0);}
.m2d_c01252{transform:matrix(0.232664,-0.001629,0.001750,0.249994,0,0);-ms-transform:matrix(0.232664,-0.001629,0.001750,0.249994,0,0);-webkit-transform:matrix(0.232664,-0.001629,0.001750,0.249994,0,0);}
.m3b_c01252{transform:matrix(0.232971,0.002563,-0.002750,0.249985,0,0);-ms-transform:matrix(0.232971,0.002563,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.232971,0.002563,-0.002750,0.249985,0,0);}
.m9d_c01252{transform:matrix(0.233680,0.003739,-0.003999,0.249968,0,0);-ms-transform:matrix(0.233680,0.003739,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.233680,0.003739,-0.003999,0.249968,0,0);}
.m62_c01252{transform:matrix(0.234014,0.001638,-0.001750,0.249994,0,0);-ms-transform:matrix(0.234014,0.001638,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.234014,0.001638,-0.001750,0.249994,0,0);}
.m37_c01252{transform:matrix(0.235066,0.002586,-0.002750,0.249985,0,0);-ms-transform:matrix(0.235066,0.002586,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.235066,0.002586,-0.002750,0.249985,0,0);}
.meb_c01252{transform:matrix(0.235318,0.005412,-0.005748,0.249934,0,0);-ms-transform:matrix(0.235318,0.005412,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.235318,0.005412,-0.005748,0.249934,0,0);}
.m5f_c01252{transform:matrix(0.235340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235340,0.000000,0.000000,0.250000,0,0);}
.m99_c01252{transform:matrix(0.235665,0.003771,-0.003999,0.249968,0,0);-ms-transform:matrix(0.235665,0.003771,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.235665,0.003771,-0.003999,0.249968,0,0);}
.m7b_c01252{transform:matrix(0.235688,0.002357,-0.002500,0.249988,0,0);-ms-transform:matrix(0.235688,0.002357,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.235688,0.002357,-0.002500,0.249988,0,0);}
.me9_c01252{transform:matrix(0.236153,0.005432,-0.005748,0.249934,0,0);-ms-transform:matrix(0.236153,0.005432,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.236153,0.005432,-0.005748,0.249934,0,0);}
.m3c_c01252{transform:matrix(0.236306,0.002599,-0.002750,0.249985,0,0);-ms-transform:matrix(0.236306,0.002599,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.236306,0.002599,-0.002750,0.249985,0,0);}
.mcb_c01252{transform:matrix(0.236583,0.004732,-0.004999,0.249950,0,0);-ms-transform:matrix(0.236583,0.004732,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.236583,0.004732,-0.004999,0.249950,0,0);}
.m8c_c01252{transform:matrix(0.236625,0.003786,-0.003999,0.249968,0,0);-ms-transform:matrix(0.236625,0.003786,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.236625,0.003786,-0.003999,0.249968,0,0);}
.m2f_c01252{transform:matrix(0.237224,-0.001661,0.001750,0.249994,0,0);-ms-transform:matrix(0.237224,-0.001661,0.001750,0.249994,0,0);-webkit-transform:matrix(0.237224,-0.001661,0.001750,0.249994,0,0);}
.me4_c01252{transform:matrix(0.237706,0.004041,-0.004249,0.249964,0,0);-ms-transform:matrix(0.237706,0.004041,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.237706,0.004041,-0.004249,0.249964,0,0);}
.m8f_c01252{transform:matrix(0.238504,0.003816,-0.003999,0.249968,0,0);-ms-transform:matrix(0.238504,0.003816,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.238504,0.003816,-0.003999,0.249968,0,0);}
.mb2_c01252{transform:matrix(0.238921,0.002628,-0.002750,0.249985,0,0);-ms-transform:matrix(0.238921,0.002628,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.238921,0.002628,-0.002750,0.249985,0,0);}
.mbd_c01252{transform:matrix(0.239247,0.004785,-0.004999,0.249950,0,0);-ms-transform:matrix(0.239247,0.004785,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.239247,0.004785,-0.004999,0.249950,0,0);}
.m56_c01252{transform:matrix(0.239385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239385,0.000000,0.000000,0.250000,0,0);}
.m8d_c01252{transform:matrix(0.239804,0.003837,-0.003999,0.249968,0,0);-ms-transform:matrix(0.239804,0.003837,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.239804,0.003837,-0.003999,0.249968,0,0);}
.mc3_c01252{transform:matrix(0.240077,0.004802,-0.004999,0.249950,0,0);-ms-transform:matrix(0.240077,0.004802,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.240077,0.004802,-0.004999,0.249950,0,0);}
.mbf_c01252{transform:matrix(0.240212,0.004804,-0.004999,0.249950,0,0);-ms-transform:matrix(0.240212,0.004804,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.240212,0.004804,-0.004999,0.249950,0,0);}
.m9e_c01252{transform:matrix(0.240784,0.003853,-0.003999,0.249968,0,0);-ms-transform:matrix(0.240784,0.003853,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.240784,0.003853,-0.003999,0.249968,0,0);}
.m64_c01252{transform:matrix(0.241514,0.001691,-0.001750,0.249994,0,0);-ms-transform:matrix(0.241514,0.001691,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.241514,0.001691,-0.001750,0.249994,0,0);}
.mb5_c01252{transform:matrix(0.241600,0.002658,-0.002750,0.249985,0,0);-ms-transform:matrix(0.241600,0.002658,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.241600,0.002658,-0.002750,0.249985,0,0);}
.me6_c01252{transform:matrix(0.242130,0.004116,-0.004249,0.249964,0,0);-ms-transform:matrix(0.242130,0.004116,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.242130,0.004116,-0.004249,0.249964,0,0);}
.m86_c01252{transform:matrix(0.242209,0.003875,-0.003999,0.249968,0,0);-ms-transform:matrix(0.242209,0.003875,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.242209,0.003875,-0.003999,0.249968,0,0);}
.m34_c01252{transform:matrix(0.242730,0.002670,-0.002750,0.249985,0,0);-ms-transform:matrix(0.242730,0.002670,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.242730,0.002670,-0.002750,0.249985,0,0);}
.me_c01252{transform:matrix(0.243440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243440,0.000000,0.000000,0.250000,0,0);}
.mae_c01252{transform:matrix(0.243725,0.002681,-0.002750,0.249985,0,0);-ms-transform:matrix(0.243725,0.002681,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.243725,0.002681,-0.002750,0.249985,0,0);}
.mc6_c01252{transform:matrix(0.243811,0.003413,-0.003500,0.249976,0,0);-ms-transform:matrix(0.243811,0.003413,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.243811,0.003413,-0.003500,0.249976,0,0);}
.m66_c01252{transform:matrix(0.243904,0.001707,-0.001750,0.249994,0,0);-ms-transform:matrix(0.243904,0.001707,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.243904,0.001707,-0.001750,0.249994,0,0);}
.m5b_c01252{transform:matrix(0.243905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243905,0.000000,0.000000,0.250000,0,0);}
.m77_c01252{transform:matrix(0.244623,0.002446,-0.002500,0.249988,0,0);-ms-transform:matrix(0.244623,0.002446,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.244623,0.002446,-0.002500,0.249988,0,0);}
.mad_c01252{transform:matrix(0.247660,0.002724,-0.002750,0.249985,0,0);-ms-transform:matrix(0.247660,0.002724,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.247660,0.002724,-0.002750,0.249985,0,0);}
.me7_c01252{transform:matrix(0.248214,0.004220,-0.004249,0.249964,0,0);-ms-transform:matrix(0.248214,0.004220,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.248214,0.004220,-0.004249,0.249964,0,0);}
.m94_c01252{transform:matrix(0.248233,0.003972,-0.003999,0.249968,0,0);-ms-transform:matrix(0.248233,0.003972,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.248233,0.003972,-0.003999,0.249968,0,0);}
.m7a_c01252{transform:matrix(0.248453,0.002485,-0.002500,0.249988,0,0);-ms-transform:matrix(0.248453,0.002485,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.248453,0.002485,-0.002500,0.249988,0,0);}
.m93_c01252{transform:matrix(0.248513,0.003976,-0.003999,0.249968,0,0);-ms-transform:matrix(0.248513,0.003976,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.248513,0.003976,-0.003999,0.249968,0,0);}
.m74_c01252{transform:matrix(0.248678,0.002487,-0.002500,0.249988,0,0);-ms-transform:matrix(0.248678,0.002487,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.248678,0.002487,-0.002500,0.249988,0,0);}
.m23_c01252{transform:matrix(0.248709,0.003233,-0.003250,0.249979,0,0);-ms-transform:matrix(0.248709,0.003233,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.248709,0.003233,-0.003250,0.249979,0,0);}
.me2_c01252{transform:matrix(0.248799,0.004230,-0.004249,0.249964,0,0);-ms-transform:matrix(0.248799,0.004230,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.248799,0.004230,-0.004249,0.249964,0,0);}
.m6d_c01252{transform:matrix(0.248950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248950,0.000000,0.000000,0.250000,0,0);}
.me5_c01252{transform:matrix(0.249269,0.004238,-0.004249,0.249964,0,0);-ms-transform:matrix(0.249269,0.004238,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.249269,0.004238,-0.004249,0.249964,0,0);}
.me3_c01252{transform:matrix(0.249654,0.004244,-0.004249,0.249964,0,0);-ms-transform:matrix(0.249654,0.004244,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.249654,0.004244,-0.004249,0.249964,0,0);}
.m24_c01252{transform:matrix(0.249844,0.003248,-0.003250,0.249979,0,0);-ms-transform:matrix(0.249844,0.003248,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.249844,0.003248,-0.003250,0.249979,0,0);}
.m92_c01252{transform:matrix(0.250138,0.004002,-0.003999,0.249968,0,0);-ms-transform:matrix(0.250138,0.004002,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.250138,0.004002,-0.003999,0.249968,0,0);}
.m7e_c01252{transform:matrix(0.250182,0.002502,-0.002500,0.249988,0,0);-ms-transform:matrix(0.250182,0.002502,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.250182,0.002502,-0.002500,0.249988,0,0);}
.m5_c01252{transform:matrix(0.250340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250340,0.000000,0.000000,0.250000,0,0);}
.mab_c01252{transform:matrix(0.251850,0.002770,-0.002750,0.249985,0,0);-ms-transform:matrix(0.251850,0.002770,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.251850,0.002770,-0.002750,0.249985,0,0);}
.m38_c01252{transform:matrix(0.251855,0.002770,-0.002750,0.249985,0,0);-ms-transform:matrix(0.251855,0.002770,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.251855,0.002770,-0.002750,0.249985,0,0);}
.m27_c01252{transform:matrix(0.251874,0.003274,-0.003250,0.249979,0,0);-ms-transform:matrix(0.251874,0.003274,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.251874,0.003274,-0.003250,0.249979,0,0);}
.maa_c01252{transform:matrix(0.252185,0.002774,-0.002750,0.249985,0,0);-ms-transform:matrix(0.252185,0.002774,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.252185,0.002774,-0.002750,0.249985,0,0);}
.m65_c01252{transform:matrix(0.252624,0.001768,-0.001750,0.249994,0,0);-ms-transform:matrix(0.252624,0.001768,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.252624,0.001768,-0.001750,0.249994,0,0);}
.m22_c01252{transform:matrix(0.252689,0.003285,-0.003250,0.249979,0,0);-ms-transform:matrix(0.252689,0.003285,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.252689,0.003285,-0.003250,0.249979,0,0);}
.maf_c01252{transform:matrix(0.252910,0.002782,-0.002750,0.249985,0,0);-ms-transform:matrix(0.252910,0.002782,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.252910,0.002782,-0.002750,0.249985,0,0);}
.m3_c01252{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m35_c01252{transform:matrix(0.253235,0.002786,-0.002750,0.249985,0,0);-ms-transform:matrix(0.253235,0.002786,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.253235,0.002786,-0.002750,0.249985,0,0);}
.m80_c01252{transform:matrix(0.255002,0.002550,-0.002500,0.249988,0,0);-ms-transform:matrix(0.255002,0.002550,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.255002,0.002550,-0.002500,0.249988,0,0);}
.m21_c01252{transform:matrix(0.255318,0.003319,-0.003250,0.249979,0,0);-ms-transform:matrix(0.255318,0.003319,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.255318,0.003319,-0.003250,0.249979,0,0);}
.m90_c01252{transform:matrix(0.256092,0.004097,-0.003999,0.249968,0,0);-ms-transform:matrix(0.256092,0.004097,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.256092,0.004097,-0.003999,0.249968,0,0);}
.mf5_c01252{transform:matrix(0.256227,0.005893,-0.005748,0.249934,0,0);-ms-transform:matrix(0.256227,0.005893,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.256227,0.005893,-0.005748,0.249934,0,0);}
.m81_c01252{transform:matrix(0.256382,0.002564,-0.002500,0.249988,0,0);-ms-transform:matrix(0.256382,0.002564,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.256382,0.002564,-0.002500,0.249988,0,0);}
.me8_c01252{transform:matrix(0.257533,0.004378,-0.004249,0.249964,0,0);-ms-transform:matrix(0.257533,0.004378,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.257533,0.004378,-0.004249,0.249964,0,0);}
.m75_c01252{transform:matrix(0.258172,0.002582,-0.002500,0.249988,0,0);-ms-transform:matrix(0.258172,0.002582,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.258172,0.002582,-0.002500,0.249988,0,0);}
.m61_c01252{transform:matrix(0.258794,0.001812,-0.001750,0.249994,0,0);-ms-transform:matrix(0.258794,0.001812,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.258794,0.001812,-0.001750,0.249994,0,0);}
.m25_c01252{transform:matrix(0.259168,0.003369,-0.003250,0.249979,0,0);-ms-transform:matrix(0.259168,0.003369,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.259168,0.003369,-0.003250,0.249979,0,0);}
.m95_c01252{transform:matrix(0.259312,0.004149,-0.003999,0.249968,0,0);-ms-transform:matrix(0.259312,0.004149,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.259312,0.004149,-0.003999,0.249968,0,0);}
.m85_c01252{transform:matrix(0.260692,0.004171,-0.003999,0.249968,0,0);-ms-transform:matrix(0.260692,0.004171,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.260692,0.004171,-0.003999,0.249968,0,0);}
.m68_c01252{transform:matrix(0.261214,0.001828,-0.001750,0.249994,0,0);-ms-transform:matrix(0.261214,0.001828,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.261214,0.001828,-0.001750,0.249994,0,0);}
.m3a_c01252{transform:matrix(0.264044,0.002904,-0.002750,0.249985,0,0);-ms-transform:matrix(0.264044,0.002904,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.264044,0.002904,-0.002750,0.249985,0,0);}
.m79_c01252{transform:matrix(0.266027,0.002660,-0.002500,0.249988,0,0);-ms-transform:matrix(0.266027,0.002660,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.266027,0.002660,-0.002500,0.249988,0,0);}
.mb3_c01252{transform:matrix(0.266449,0.002931,-0.002750,0.249985,0,0);-ms-transform:matrix(0.266449,0.002931,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.266449,0.002931,-0.002750,0.249985,0,0);}
.m84_c01252{transform:matrix(0.267591,0.004281,-0.003999,0.249968,0,0);-ms-transform:matrix(0.267591,0.004281,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.267591,0.004281,-0.003999,0.249968,0,0);}
.m39_c01252{transform:matrix(0.267894,0.002947,-0.002750,0.249985,0,0);-ms-transform:matrix(0.267894,0.002947,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.267894,0.002947,-0.002750,0.249985,0,0);}
.m83_c01252{transform:matrix(0.270495,0.004328,-0.003999,0.249968,0,0);-ms-transform:matrix(0.270495,0.004328,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.270495,0.004328,-0.003999,0.249968,0,0);}
.m82_c01252{transform:matrix(0.270640,0.004330,-0.003999,0.249968,0,0);-ms-transform:matrix(0.270640,0.004330,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.270640,0.004330,-0.003999,0.249968,0,0);}
.m16_c01252{transform:matrix(0.271015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271015,0.000000,0.000000,0.250000,0,0);}
.m8b_c01252{transform:matrix(0.272065,0.004353,-0.003999,0.249968,0,0);-ms-transform:matrix(0.272065,0.004353,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.272065,0.004353,-0.003999,0.249968,0,0);}
.mb6_c01252{transform:matrix(0.273548,0.003009,-0.002750,0.249985,0,0);-ms-transform:matrix(0.273548,0.003009,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.273548,0.003009,-0.002750,0.249985,0,0);}
.m87_c01252{transform:matrix(0.273925,0.004383,-0.003999,0.249968,0,0);-ms-transform:matrix(0.273925,0.004383,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.273925,0.004383,-0.003999,0.249968,0,0);}
.m11_c01252{transform:matrix(0.274090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274090,0.000000,0.000000,0.250000,0,0);}
.mb4_c01252{transform:matrix(0.274158,0.003016,-0.002750,0.249985,0,0);-ms-transform:matrix(0.274158,0.003016,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.274158,0.003016,-0.002750,0.249985,0,0);}
.mb7_c01252{transform:matrix(0.275278,0.003028,-0.002750,0.249985,0,0);-ms-transform:matrix(0.275278,0.003028,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.275278,0.003028,-0.002750,0.249985,0,0);}
.m67_c01252{transform:matrix(0.275793,0.001931,-0.001750,0.249994,0,0);-ms-transform:matrix(0.275793,0.001931,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.275793,0.001931,-0.001750,0.249994,0,0);}
.m6b_c01252{transform:matrix(0.283195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283195,0.000000,0.000000,0.250000,0,0);}
.m88_c01252{transform:matrix(0.283939,0.004543,-0.003999,0.249968,0,0);-ms-transform:matrix(0.283939,0.004543,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.283939,0.004543,-0.003999,0.249968,0,0);}
.m33_c01252{transform:matrix(0.284238,0.003127,-0.002750,0.249985,0,0);-ms-transform:matrix(0.284238,0.003127,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.284238,0.003127,-0.002750,0.249985,0,0);}
.mb1_c01252{transform:matrix(0.287303,0.003160,-0.002750,0.249985,0,0);-ms-transform:matrix(0.287303,0.003160,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.287303,0.003160,-0.002750,0.249985,0,0);}
.m63_c01252{transform:matrix(0.290453,0.002033,-0.001750,0.249994,0,0);-ms-transform:matrix(0.290453,0.002033,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.290453,0.002033,-0.001750,0.249994,0,0);}
.mf2_c01252{transform:matrix(0.292788,0.006734,-0.005748,0.249934,0,0);-ms-transform:matrix(0.292788,0.006734,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.292788,0.006734,-0.005748,0.249934,0,0);}
.mf3_c01252{transform:matrix(0.292868,0.006736,-0.005748,0.249934,0,0);-ms-transform:matrix(0.292868,0.006736,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.292868,0.006736,-0.005748,0.249934,0,0);}
.mc5_c01252{transform:matrix(0.294201,0.005884,-0.004999,0.249950,0,0);-ms-transform:matrix(0.294201,0.005884,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.294201,0.005884,-0.004999,0.249950,0,0);}
.mf1_c01252{transform:matrix(0.296802,0.006826,-0.005748,0.249934,0,0);-ms-transform:matrix(0.296802,0.006826,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.296802,0.006826,-0.005748,0.249934,0,0);}
.mf4_c01252{transform:matrix(0.297976,0.006853,-0.005748,0.249934,0,0);-ms-transform:matrix(0.297976,0.006853,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.297976,0.006853,-0.005748,0.249934,0,0);}
.m1a_c01252{transform:matrix(0.299295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299295,0.000000,0.000000,0.250000,0,0);}
.m89_c01252{transform:matrix(0.299962,0.004799,-0.003999,0.249968,0,0);-ms-transform:matrix(0.299962,0.004799,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.299962,0.004799,-0.003999,0.249968,0,0);}
.m19_c01252{transform:matrix(0.304330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304330,0.000000,0.000000,0.250000,0,0);}
.ma_c01252{transform:matrix(0.306400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306400,0.000000,0.000000,0.250000,0,0);}
.mf7_c01252{transform:matrix(0.307110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307110,0.000000,0.000000,0.250000,0,0);}
.m13_c01252{transform:matrix(0.307775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307775,0.000000,0.000000,0.250000,0,0);}
.m28_c01252{transform:matrix(0.308469,0.004010,-0.003250,0.249979,0,0);-ms-transform:matrix(0.308469,0.004010,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.308469,0.004010,-0.003250,0.249979,0,0);}
.m1e_c01252{transform:matrix(0.313300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313300,0.000000,0.000000,0.250000,0,0);}
.mf_c01252{transform:matrix(0.314305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314305,0.000000,0.000000,0.250000,0,0);}
.m97_c01252{transform:matrix(0.317684,0.005083,-0.003999,0.249968,0,0);-ms-transform:matrix(0.317684,0.005083,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.317684,0.005083,-0.003999,0.249968,0,0);}
.m4_c01252{transform:matrix(0.319510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319510,0.000000,0.000000,0.250000,0,0);}
.mb_c01252{transform:matrix(0.320600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320600,0.000000,0.000000,0.250000,0,0);}
.mde_c01252{transform:matrix(0.323698,0.005503,-0.004249,0.249964,0,0);-ms-transform:matrix(0.323698,0.005503,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.323698,0.005503,-0.004249,0.249964,0,0);}
.m0_c01252{transform:matrix(0.343845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343845,0.000000,0.000000,0.250000,0,0);}
.m6_c01252{transform:matrix(0.348620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348620,0.000000,0.000000,0.250000,0,0);}
.m1b_c01252{transform:matrix(0.359030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359030,0.000000,0.000000,0.250000,0,0);}
.m96_c01252{transform:matrix(0.361169,0.005779,-0.003999,0.249968,0,0);-ms-transform:matrix(0.361169,0.005779,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.361169,0.005779,-0.003999,0.249968,0,0);}
.m30_c01252{transform:matrix(0.367671,-0.002574,0.001750,0.249994,0,0);-ms-transform:matrix(0.367671,-0.002574,0.001750,0.249994,0,0);-webkit-transform:matrix(0.367671,-0.002574,0.001750,0.249994,0,0);}
.ma2_c01252{transform:matrix(0.392740,0.006284,-0.003999,0.249968,0,0);-ms-transform:matrix(0.392740,0.006284,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.392740,0.006284,-0.003999,0.249968,0,0);}
.m9_c01252{transform:matrix(0.395075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395075,0.000000,0.000000,0.250000,0,0);}
.m18_c01252{transform:matrix(0.397750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397750,0.000000,0.000000,0.250000,0,0);}
.m12_c01252{transform:matrix(0.403115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403115,0.000000,0.000000,0.250000,0,0);}
.m14_c01252{transform:matrix(0.419670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419670,0.000000,0.000000,0.250000,0,0);}
.m8_c01252{transform:matrix(0.427580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427580,0.000000,0.000000,0.250000,0,0);}
.m6a_c01252{transform:matrix(0.460154,0.003221,-0.001750,0.249994,0,0);-ms-transform:matrix(0.460154,0.003221,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.460154,0.003221,-0.001750,0.249994,0,0);}
.m1f_c01252{transform:matrix(0.462345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462345,0.000000,0.000000,0.250000,0,0);}
.m10_c01252{transform:matrix(0.474835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.474835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.474835,0.000000,0.000000,0.250000,0,0);}
.m8a_c01252{transform:matrix(0.499376,0.007990,-0.003999,0.249968,0,0);-ms-transform:matrix(0.499376,0.007990,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.499376,0.007990,-0.003999,0.249968,0,0);}
.m20_c01252{transform:matrix(0.512395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512395,0.000000,0.000000,0.250000,0,0);}
.m1_c01252{transform:matrix(0.518290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518290,0.000000,0.000000,0.250000,0,0);}
.m17_c01252{transform:matrix(0.608655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608655,0.000000,0.000000,0.250000,0,0);}
.m1c_c01252{transform:matrix(0.619200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.619200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.619200,0.000000,0.000000,0.250000,0,0);}
.mb9_c01252{transform:matrix(0.659300,0.007252,-0.002750,0.249985,0,0);-ms-transform:matrix(0.659300,0.007252,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.659300,0.007252,-0.002750,0.249985,0,0);}
.md_c01252{transform:matrix(0.690420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.690420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.690420,0.000000,0.000000,0.250000,0,0);}
.m3d_c01252{transform:matrix(0.792412,0.008717,-0.002750,0.249985,0,0);-ms-transform:matrix(0.792412,0.008717,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.792412,0.008717,-0.002750,0.249985,0,0);}
.m60_c01252{transform:matrix(0.901530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.901530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.901530,0.000000,0.000000,0.250000,0,0);}
.v0_c01252{vertical-align:0.000000px;}
.ls0_c01252{letter-spacing:0.000000px;}
.sc__c01252{text-shadow:none;}
.sc0_c01252{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__c01252{-webkit-text-stroke:0px transparent;}
.sc0_c01252{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01252{word-spacing:0.000000px;}
._0_c01252{margin-left:-38.195990px;}
._1_c01252{margin-left:-16.655773px;}
.fc0_c01252{color:transparent;}
.fsb_c01252{font-size:18.000000px;}
.fs3_c01252{font-size:36.000000px;}
.fs0_c01252{font-size:42.000000px;}
.fs2_c01252{font-size:48.000000px;}
.fs1_c01252{font-size:54.000000px;}
.fs4_c01252{font-size:60.000000px;}
.fs1b_c01252{font-size:66.017455px;}
.fsd_c01252{font-size:72.001764px;}
.fs8_c01252{font-size:72.004356px;}
.fs10_c01252{font-size:72.009215px;}
.fse_c01252{font-size:78.000000px;}
.fsf_c01252{font-size:78.003900px;}
.fs14_c01252{font-size:78.004719px;}
.fs5_c01252{font-size:78.006591px;}
.fs11_c01252{font-size:78.009983px;}
.fs19_c01252{font-size:78.011270px;}
.fs6_c01252{font-size:84.002058px;}
.fs16_c01252{font-size:84.008232px;}
.fs12_c01252{font-size:84.010751px;}
.fs15_c01252{font-size:84.016798px;}
.fs1a_c01252{font-size:84.022215px;}
.fs7_c01252{font-size:90.000000px;}
.fs1c_c01252{font-size:96.000000px;}
.fs18_c01252{font-size:96.013871px;}
.fsc_c01252{font-size:102.000000px;}
.fsa_c01252{font-size:102.002499px;}
.fs17_c01252{font-size:102.014738px;}
.fs13_c01252{font-size:132.007986px;}
.fs9_c01252{font-size:156.003822px;}
.y0_c01252{bottom:0.000000px;}
.yd3_c01252{bottom:137.700000px;}
.y14_c01252{bottom:172.801500px;}
.yd2_c01252{bottom:176.112345px;}
.yd1_c01252{bottom:177.231798px;}
.yd0_c01252{bottom:178.703947px;}
.ycf_c01252{bottom:180.382324px;}
.yce_c01252{bottom:180.812101px;}
.ycd_c01252{bottom:182.244054px;}
.ycc_c01252{bottom:208.585647px;}
.ycb_c01252{bottom:209.349408px;}
.yca_c01252{bottom:210.385064px;}
.yc9_c01252{bottom:211.138406px;}
.yc8_c01252{bottom:212.660166px;}
.y13_c01252{bottom:214.246500px;}
.yc7_c01252{bottom:215.200090px;}
.yc6_c01252{bottom:215.945532px;}
.yc5_c01252{bottom:218.434500px;}
.yc4_c01252{bottom:244.078547px;}
.yc3_c01252{bottom:245.313559px;}
.yc2_c01252{bottom:246.294000px;}
.yc1_c01252{bottom:247.695195px;}
.yc0_c01252{bottom:248.886153px;}
.ybf_c01252{bottom:250.845372px;}
.y12_c01252{bottom:251.236500px;}
.ybe_c01252{bottom:252.443651px;}
.ybd_c01252{bottom:275.741126px;}
.ybc_c01252{bottom:276.413145px;}
.ybb_c01252{bottom:278.702550px;}
.yba_c01252{bottom:279.153119px;}
.yb9_c01252{bottom:280.396082px;}
.yb8_c01252{bottom:282.074343px;}
.yb7_c01252{bottom:282.926309px;}
.yb6_c01252{bottom:283.975071px;}
.yb5_c01252{bottom:284.593737px;}
.yb4_c01252{bottom:286.065949px;}
.y11_c01252{bottom:286.606500px;}
.yb3_c01252{bottom:287.280285px;}
.yb2_c01252{bottom:310.488222px;}
.yb1_c01252{bottom:311.447864px;}
.yb0_c01252{bottom:312.953613px;}
.yaf_c01252{bottom:313.913254px;}
.yae_c01252{bottom:315.566037px;}
.y10_c01252{bottom:316.719000px;}
.yad_c01252{bottom:317.659485px;}
.yac_c01252{bottom:318.398679px;}
.yab_c01252{bottom:319.703310px;}
.yaa_c01252{bottom:320.118909px;}
.ya9_c01252{bottom:321.574500px;}
.yf_c01252{bottom:350.191500px;}
.ya8_c01252{bottom:352.958610px;}
.ya7_c01252{bottom:355.124760px;}
.ya6_c01252{bottom:356.690760px;}
.ya5_c01252{bottom:357.581580px;}
.ya4_c01252{bottom:359.103000px;}
.ya3_c01252{bottom:391.627731px;}
.ya2_c01252{bottom:399.618000px;}
.ya1_c01252{bottom:414.748650px;}
.ya0_c01252{bottom:416.733180px;}
.y9f_c01252{bottom:418.730880px;}
.y9e_c01252{bottom:419.411460px;}
.y9d_c01252{bottom:420.074340px;}
.y9c_c01252{bottom:421.166340px;}
.y9b_c01252{bottom:423.602340px;}
.y9a_c01252{bottom:424.266420px;}
.y99_c01252{bottom:426.486360px;}
.y98_c01252{bottom:427.129170px;}
.y97_c01252{bottom:427.792920px;}
.ye_c01252{bottom:428.089500px;}
.y96_c01252{bottom:429.304500px;}
.y95_c01252{bottom:454.039005px;}
.y94_c01252{bottom:455.698322px;}
.y93_c01252{bottom:457.212186px;}
.y92_c01252{bottom:458.266117px;}
.y91_c01252{bottom:458.820553px;}
.y90_c01252{bottom:459.746770px;}
.y8f_c01252{bottom:460.919411px;}
.y8e_c01252{bottom:461.968509px;}
.yd_c01252{bottom:463.723500px;}
.y8d_c01252{bottom:490.990026px;}
.y8c_c01252{bottom:491.475376px;}
.y8b_c01252{bottom:492.965886px;}
.y8a_c01252{bottom:494.136298px;}
.y89_c01252{bottom:495.460186px;}
.y88_c01252{bottom:495.945586px;}
.y87_c01252{bottom:497.108509px;}
.y86_c01252{bottom:498.420092px;}
.y85_c01252{bottom:525.815544px;}
.y84_c01252{bottom:530.807421px;}
.y83_c01252{bottom:531.923943px;}
.y82_c01252{bottom:532.280524px;}
.y81_c01252{bottom:532.642782px;}
.y80_c01252{bottom:533.251500px;}
.y7f_c01252{bottom:560.118024px;}
.y7e_c01252{bottom:560.315892px;}
.y7d_c01252{bottom:561.389976px;}
.y7c_c01252{bottom:561.932448px;}
.y7b_c01252{bottom:562.393332px;}
.y7a_c01252{bottom:563.829456px;}
.y79_c01252{bottom:564.974088px;}
.y78_c01252{bottom:565.563348px;}
.y77_c01252{bottom:566.286960px;}
.y76_c01252{bottom:566.849256px;}
.y75_c01252{bottom:568.418964px;}
.y74_c01252{bottom:569.423028px;}
.yc_c01252{bottom:572.263500px;}
.y73_c01252{bottom:595.942248px;}
.y72_c01252{bottom:596.325492px;}
.y71_c01252{bottom:597.516432px;}
.y70_c01252{bottom:598.182576px;}
.y6f_c01252{bottom:598.980012px;}
.y6e_c01252{bottom:600.035760px;}
.y6d_c01252{bottom:600.433692px;}
.y6c_c01252{bottom:601.502292px;}
.y6b_c01252{bottom:602.274336px;}
.y6a_c01252{bottom:602.818644px;}
.y69_c01252{bottom:603.612948px;}
.y68_c01252{bottom:604.526544px;}
.yb_c01252{bottom:608.179500px;}
.y67_c01252{bottom:629.296896px;}
.y66_c01252{bottom:629.506992px;}
.y65_c01252{bottom:630.606312px;}
.y64_c01252{bottom:632.785272px;}
.y63_c01252{bottom:634.172448px;}
.y62_c01252{bottom:634.729656px;}
.y61_c01252{bottom:636.298104px;}
.ya_c01252{bottom:636.795000px;}
.y60_c01252{bottom:637.723944px;}
.y5f_c01252{bottom:639.300888px;}
.y5e_c01252{bottom:640.713000px;}
.y9_c01252{bottom:714.823500px;}
.y5d_c01252{bottom:740.822430px;}
.y5c_c01252{bottom:741.671295px;}
.y5b_c01252{bottom:742.033710px;}
.y5a_c01252{bottom:742.874535px;}
.y59_c01252{bottom:743.367645px;}
.y58_c01252{bottom:744.087060px;}
.y57_c01252{bottom:744.930255px;}
.y8_c01252{bottom:747.765000px;}
.y56_c01252{bottom:774.569175px;}
.y55_c01252{bottom:775.911255px;}
.y54_c01252{bottom:776.235270px;}
.y53_c01252{bottom:777.110190px;}
.y52_c01252{bottom:777.561090px;}
.y51_c01252{bottom:778.668195px;}
.y50_c01252{bottom:779.761500px;}
.y7_c01252{bottom:792.856500px;}
.y6_c01252{bottom:810.676500px;}
.y4f_c01252{bottom:812.946000px;}
.y4e_c01252{bottom:849.681000px;}
.y4d_c01252{bottom:857.964000px;}
.y4c_c01252{bottom:880.344695px;}
.y4b_c01252{bottom:880.619942px;}
.y4a_c01252{bottom:880.935592px;}
.y49_c01252{bottom:881.557444px;}
.y48_c01252{bottom:882.334308px;}
.y47_c01252{bottom:882.642441px;}
.y46_c01252{bottom:882.872874px;}
.y45_c01252{bottom:884.419125px;}
.y44_c01252{bottom:884.721515px;}
.y43_c01252{bottom:885.330000px;}
.y5_c01252{bottom:889.243500px;}
.y1d_c01252{bottom:920.970000px;}
.y1e_c01252{bottom:921.079578px;}
.y1f_c01252{bottom:921.535121px;}
.y20_c01252{bottom:921.841280px;}
.y21_c01252{bottom:922.623718px;}
.y22_c01252{bottom:923.462773px;}
.y23_c01252{bottom:923.927619px;}
.y4_c01252{bottom:924.345000px;}
.y24_c01252{bottom:926.073189px;}
.y42_c01252{bottom:956.238000px;}
.y41_c01252{bottom:989.728500px;}
.y3_c01252{bottom:993.463500px;}
.y39_c01252{bottom:1024.650335px;}
.y3a_c01252{bottom:1025.177595px;}
.y3b_c01252{bottom:1025.442399px;}
.y3c_c01252{bottom:1025.906721px;}
.y3d_c01252{bottom:1026.173903px;}
.y3e_c01252{bottom:1027.229511px;}
.y3f_c01252{bottom:1027.430088px;}
.y2_c01252{bottom:1028.563500px;}
.y38_c01252{bottom:1049.969563px;}
.y37_c01252{bottom:1050.292743px;}
.y36_c01252{bottom:1050.525202px;}
.y35_c01252{bottom:1051.681851px;}
.y34_c01252{bottom:1052.377350px;}
.y33_c01252{bottom:1052.696277px;}
.y32_c01252{bottom:1053.459869px;}
.y31_c01252{bottom:1054.081500px;}
.y1_c01252{bottom:1063.665000px;}
.y30_c01252{bottom:1091.139786px;}
.y2f_c01252{bottom:1092.080369px;}
.y2e_c01252{bottom:1092.564611px;}
.y2d_c01252{bottom:1093.298250px;}
.y2c_c01252{bottom:1094.144783px;}
.y2b_c01252{bottom:1094.635129px;}
.y2a_c01252{bottom:1095.003360px;}
.y29_c01252{bottom:1095.739706px;}
.y28_c01252{bottom:1096.339778px;}
.y27_c01252{bottom:1096.705318px;}
.y26_c01252{bottom:1097.563500px;}
.y1c_c01252{bottom:1125.682192px;}
.y1b_c01252{bottom:1126.700287px;}
.y1a_c01252{bottom:1127.139096px;}
.y19_c01252{bottom:1128.705336px;}
.y18_c01252{bottom:1129.881498px;}
.y17_c01252{bottom:1131.159313px;}
.y16_c01252{bottom:1132.314045px;}
.y15_c01252{bottom:1133.731500px;}
.y40_c01252{bottom:1138.050000px;}
.y25_c01252{bottom:1204.194000px;}
.hd_c01252{height:18.000000px;}
.h5_c01252{height:36.000000px;}
.h2_c01252{height:42.000000px;}
.h4_c01252{height:48.000000px;}
.h3_c01252{height:54.000000px;}
.h6_c01252{height:60.000000px;}
.h1d_c01252{height:66.017455px;}
.hf_c01252{height:72.001764px;}
.ha_c01252{height:72.004356px;}
.h12_c01252{height:72.009215px;}
.h10_c01252{height:78.000000px;}
.h11_c01252{height:78.003900px;}
.h16_c01252{height:78.004719px;}
.h7_c01252{height:78.006591px;}
.h13_c01252{height:78.009983px;}
.h1b_c01252{height:78.011270px;}
.h8_c01252{height:84.002058px;}
.h18_c01252{height:84.008232px;}
.h14_c01252{height:84.010751px;}
.h17_c01252{height:84.016798px;}
.h1c_c01252{height:84.022215px;}
.h9_c01252{height:90.000000px;}
.h1e_c01252{height:96.000000px;}
.h1a_c01252{height:96.013871px;}
.he_c01252{height:102.000000px;}
.hc_c01252{height:102.002499px;}
.h19_c01252{height:102.014738px;}
.h15_c01252{height:132.007986px;}
.hb_c01252{height:156.003822px;}
.h1_c01252{height:1258.500000px;}
.h0_c01252{height:1258.740000px;}
.w1_c01252{width:899.250000px;}
.w0_c01252{width:899.370000px;}
.x0_c01252{left:0.000000px;}
.xa_c01252{left:74.250000px;}
.x5_c01252{left:75.330000px;}
.xc_c01252{left:85.320000px;}
.x7_c01252{left:86.400000px;}
.x3_c01252{left:87.750000px;}
.x1_c01252{left:89.370000px;}
.x6_c01252{left:104.760000px;}
.x9_c01252{left:120.420000px;}
.x4_c01252{left:122.580000px;}
.x2_c01252{left:123.660000px;}
.xb_c01252{left:131.490000px;}
.x8_c01252{left:141.210000px;}
.x15_c01252{left:148.872000px;}
.x6a_c01252{left:163.128000px;}
.xd_c01252{left:164.823000px;}
.x84_c01252{left:172.038883px;}
.x44_c01252{left:173.610000px;}
.x8c_c01252{left:202.500000px;}
.x73_c01252{left:204.433500px;}
.x43_c01252{left:205.740000px;}
.x1d_c01252{left:206.935500px;}
.x16_c01252{left:229.603500px;}
.x7e_c01252{left:237.582234px;}
.x6b_c01252{left:238.707000px;}
.x75_c01252{left:248.698500px;}
.x54_c01252{left:250.118184px;}
.x2b_c01252{left:252.005981px;}
.x27_c01252{left:253.093500px;}
.x78_c01252{left:258.463500px;}
.x5e_c01252{left:260.926500px;}
.x30_c01252{left:262.440000px;}
.x8a_c01252{left:270.307074px;}
.x6c_c01252{left:271.894500px;}
.xe_c01252{left:273.858000px;}
.x47_c01252{left:283.342500px;}
.x1e_c01252{left:284.952000px;}
.x76_c01252{left:293.239500px;}
.x3b_c01252{left:294.456000px;}
.x2c_c01252{left:296.037992px;}
.x6d_c01252{left:304.035000px;}
.x31_c01252{left:306.990000px;}
.x7f_c01252{left:315.092108px;}
.x37_c01252{left:316.980000px;}
.x1f_c01252{left:318.183000px;}
.x5f_c01252{left:326.275500px;}
.x62_c01252{left:337.822683px;}
.x80_c01252{left:347.689011px;}
.x65_c01252{left:359.183128px;}
.x45_c01252{left:360.720000px;}
.xf_c01252{left:362.683500px;}
.x85_c01252{left:369.653017px;}
.x5a_c01252{left:371.073072px;}
.x20_c01252{left:372.735000px;}
.x1b_c01252{left:383.940000px;}
.x17_c01252{left:385.117500px;}
.x48_c01252{left:394.053000px;}
.x79_c01252{left:403.135500px;}
.x38_c01252{left:405.000000px;}
.x1c_c01252{left:406.620000px;}
.x28_c01252{left:407.739000px;}
.x5b_c01252{left:414.281136px;}
.x2d_c01252{left:418.048590px;}
.x55_c01252{left:425.920416px;}
.x60_c01252{left:427.777500px;}
.x66_c01252{left:436.429287px;}
.x4c_c01252{left:437.790135px;}
.x21_c01252{left:439.675500px;}
.x6e_c01252{left:448.236000px;}
.x4e_c01252{left:449.338500px;}
.x63_c01252{left:458.525386px;}
.x46_c01252{left:459.810000px;}
.x10_c01252{left:460.977000px;}
.x4d_c01252{left:470.731305px;}
.x22_c01252{left:473.151000px;}
.x77_c01252{left:479.847000px;}
.x39_c01252{left:481.950000px;}
.x32_c01252{left:493.290000px;}
.x8b_c01252{left:495.044240px;}
.x18_c01252{left:504.982500px;}
.x29_c01252{left:507.096000px;}
.x86_c01252{left:513.659569px;}
.x3c_c01252{left:515.349000px;}
.x23_c01252{left:517.728000px;}
.x49_c01252{left:526.635000px;}
.x64_c01252{left:536.559454px;}
.x3d_c01252{left:548.268000px;}
.x11_c01252{left:551.451000px;}
.x88_c01252{left:557.860500px;}
.x4a_c01252{left:559.036500px;}
.x87_c01252{left:568.155151px;}
.x67_c01252{left:570.370302px;}
.x19_c01252{left:571.389000px;}
.x4f_c01252{left:582.192000px;}
.x89_c01252{left:591.067500px;}
.x3e_c01252{left:592.287000px;}
.x24_c01252{left:594.685500px;}
.x81_c01252{left:601.412867px;}
.x5c_c01252{left:603.321708px;}
.x33_c01252{left:605.610000px;}
.x7a_c01252{left:623.502000px;}
.x6f_c01252{left:624.636000px;}
.x2e_c01252{left:627.541148px;}
.x56_c01252{left:636.263904px;}
.x34_c01252{left:648.000000px;}
.x70_c01252{left:657.780000px;}
.x25_c01252{left:661.380000px;}
.x50_c01252{left:668.890500px;}
.x12_c01252{left:671.931000px;}
.x7b_c01252{left:679.951500px;}
.x71_c01252{left:691.809000px;}
.x4b_c01252{left:693.244500px;}
.x68_c01252{left:696.538416px;}
.x3f_c01252{left:703.267500px;}
.x13_c01252{left:705.685500px;}
.x5d_c01252{left:713.803512px;}
.x82_c01252{left:745.553445px;}
.x35_c01252{left:748.440000px;}
.x2a_c01252{left:751.708500px;}
.x57_c01252{left:758.214204px;}
.x7c_c01252{left:768.525000px;}
.x74_c01252{left:775.167000px;}
.x83_c01252{left:780.935747px;}
.x14_c01252{left:784.000500px;}
.x26_c01252{left:790.909500px;}
.x40_c01252{left:792.103500px;}
.x36_c01252{left:794.070000px;}
.x51_c01252{left:805.075500px;}
.x3a_c01252{left:808.110000px;}
.x7d_c01252{left:824.974500px;}
.x69_c01252{left:834.838398px;}
.x41_c01252{left:837.196500px;}
.x2f_c01252{left:845.910000px;}
.x58_c01252{left:857.498064px;}
.x52_c01252{left:873.783000px;}
.x42_c01252{left:876.517500px;}
.x1a_c01252{left:877.899000px;}
.x61_c01252{left:881.584500px;}
.x53_c01252{left:886.914000px;}
.x59_c01252{left:889.421604px;}
.x72_c01252{left:890.920500px;}
@media print{
.v0_c01252{vertical-align:0.000000pt;}
.ls0_c01252{letter-spacing:0.000000pt;}
.ws0_c01252{word-spacing:0.000000pt;}
._0_c01252{margin-left:-33.951991pt;}
._1_c01252{margin-left:-14.805132pt;}
.fsb_c01252{font-size:16.000000pt;}
.fs3_c01252{font-size:32.000000pt;}
.fs0_c01252{font-size:37.333333pt;}
.fs2_c01252{font-size:42.666667pt;}
.fs1_c01252{font-size:48.000000pt;}
.fs4_c01252{font-size:53.333333pt;}
.fs1b_c01252{font-size:58.682182pt;}
.fsd_c01252{font-size:64.001568pt;}
.fs8_c01252{font-size:64.003872pt;}
.fs10_c01252{font-size:64.008191pt;}
.fse_c01252{font-size:69.333333pt;}
.fsf_c01252{font-size:69.336800pt;}
.fs14_c01252{font-size:69.337528pt;}
.fs5_c01252{font-size:69.339192pt;}
.fs11_c01252{font-size:69.342207pt;}
.fs19_c01252{font-size:69.343351pt;}
.fs6_c01252{font-size:74.668496pt;}
.fs16_c01252{font-size:74.673984pt;}
.fs12_c01252{font-size:74.676223pt;}
.fs15_c01252{font-size:74.681599pt;}
.fs1a_c01252{font-size:74.686413pt;}
.fs7_c01252{font-size:80.000000pt;}
.fs1c_c01252{font-size:85.333333pt;}
.fs18_c01252{font-size:85.345663pt;}
.fsc_c01252{font-size:90.666667pt;}
.fsa_c01252{font-size:90.668888pt;}
.fs17_c01252{font-size:90.679767pt;}
.fs13_c01252{font-size:117.340432pt;}
.fs9_c01252{font-size:138.670064pt;}
.y0_c01252{bottom:0.000000pt;}
.yd3_c01252{bottom:122.400000pt;}
.y14_c01252{bottom:153.601333pt;}
.yd2_c01252{bottom:156.544307pt;}
.yd1_c01252{bottom:157.539376pt;}
.yd0_c01252{bottom:158.847953pt;}
.ycf_c01252{bottom:160.339844pt;}
.yce_c01252{bottom:160.721868pt;}
.ycd_c01252{bottom:161.994715pt;}
.ycc_c01252{bottom:185.409464pt;}
.ycb_c01252{bottom:186.088363pt;}
.yca_c01252{bottom:187.008945pt;}
.yc9_c01252{bottom:187.678583pt;}
.yc8_c01252{bottom:189.031259pt;}
.y13_c01252{bottom:190.441333pt;}
.yc7_c01252{bottom:191.288969pt;}
.yc6_c01252{bottom:191.951584pt;}
.yc5_c01252{bottom:194.164000pt;}
.yc4_c01252{bottom:216.958708pt;}
.yc3_c01252{bottom:218.056497pt;}
.yc2_c01252{bottom:218.928000pt;}
.yc1_c01252{bottom:220.173507pt;}
.yc0_c01252{bottom:221.232136pt;}
.ybf_c01252{bottom:222.973664pt;}
.y12_c01252{bottom:223.321333pt;}
.ybe_c01252{bottom:224.394356pt;}
.ybd_c01252{bottom:245.103223pt;}
.ybc_c01252{bottom:245.700573pt;}
.ybb_c01252{bottom:247.735600pt;}
.yba_c01252{bottom:248.136105pt;}
.yb9_c01252{bottom:249.240961pt;}
.yb8_c01252{bottom:250.732749pt;}
.yb7_c01252{bottom:251.490052pt;}
.yb6_c01252{bottom:252.422285pt;}
.yb5_c01252{bottom:252.972211pt;}
.yb4_c01252{bottom:254.280844pt;}
.y11_c01252{bottom:254.761333pt;}
.yb3_c01252{bottom:255.360253pt;}
.yb2_c01252{bottom:275.989531pt;}
.yb1_c01252{bottom:276.842545pt;}
.yb0_c01252{bottom:278.180989pt;}
.yaf_c01252{bottom:279.034004pt;}
.yae_c01252{bottom:280.503144pt;}
.y10_c01252{bottom:281.528000pt;}
.yad_c01252{bottom:282.363987pt;}
.yac_c01252{bottom:283.021048pt;}
.yab_c01252{bottom:284.180720pt;}
.yaa_c01252{bottom:284.550141pt;}
.ya9_c01252{bottom:285.844000pt;}
.yf_c01252{bottom:311.281333pt;}
.ya8_c01252{bottom:313.740987pt;}
.ya7_c01252{bottom:315.666453pt;}
.ya6_c01252{bottom:317.058453pt;}
.ya5_c01252{bottom:317.850293pt;}
.ya4_c01252{bottom:319.202667pt;}
.ya3_c01252{bottom:348.113539pt;}
.ya2_c01252{bottom:355.216000pt;}
.ya1_c01252{bottom:368.665467pt;}
.ya0_c01252{bottom:370.429493pt;}
.y9f_c01252{bottom:372.205227pt;}
.y9e_c01252{bottom:372.810187pt;}
.y9d_c01252{bottom:373.399413pt;}
.y9c_c01252{bottom:374.370080pt;}
.y9b_c01252{bottom:376.535413pt;}
.y9a_c01252{bottom:377.125707pt;}
.y99_c01252{bottom:379.098987pt;}
.y98_c01252{bottom:379.670373pt;}
.y97_c01252{bottom:380.260373pt;}
.ye_c01252{bottom:380.524000pt;}
.y96_c01252{bottom:381.604000pt;}
.y95_c01252{bottom:403.590227pt;}
.y94_c01252{bottom:405.065175pt;}
.y93_c01252{bottom:406.410832pt;}
.y92_c01252{bottom:407.347660pt;}
.y91_c01252{bottom:407.840492pt;}
.y90_c01252{bottom:408.663796pt;}
.y8f_c01252{bottom:409.706143pt;}
.y8e_c01252{bottom:410.638675pt;}
.yd_c01252{bottom:412.198667pt;}
.y8d_c01252{bottom:436.435579pt;}
.y8c_c01252{bottom:436.867001pt;}
.y8b_c01252{bottom:438.191899pt;}
.y8a_c01252{bottom:439.232265pt;}
.y89_c01252{bottom:440.409055pt;}
.y88_c01252{bottom:440.840521pt;}
.y87_c01252{bottom:441.874231pt;}
.y86_c01252{bottom:443.040081pt;}
.y85_c01252{bottom:467.391595pt;}
.y84_c01252{bottom:471.828819pt;}
.y83_c01252{bottom:472.821283pt;}
.y82_c01252{bottom:473.138244pt;}
.y81_c01252{bottom:473.460251pt;}
.y80_c01252{bottom:474.001333pt;}
.y7f_c01252{bottom:497.882688pt;}
.y7e_c01252{bottom:498.058571pt;}
.y7d_c01252{bottom:499.013312pt;}
.y7c_c01252{bottom:499.495509pt;}
.y7b_c01252{bottom:499.905184pt;}
.y7a_c01252{bottom:501.181739pt;}
.y79_c01252{bottom:502.199189pt;}
.y78_c01252{bottom:502.722976pt;}
.y77_c01252{bottom:503.366187pt;}
.y76_c01252{bottom:503.866005pt;}
.y75_c01252{bottom:505.261301pt;}
.y74_c01252{bottom:506.153803pt;}
.yc_c01252{bottom:508.678667pt;}
.y73_c01252{bottom:529.726443pt;}
.y72_c01252{bottom:530.067104pt;}
.y71_c01252{bottom:531.125717pt;}
.y70_c01252{bottom:531.717845pt;}
.y6f_c01252{bottom:532.426677pt;}
.y6e_c01252{bottom:533.365120pt;}
.y6d_c01252{bottom:533.718837pt;}
.y6c_c01252{bottom:534.668704pt;}
.y6b_c01252{bottom:535.354965pt;}
.y6a_c01252{bottom:535.838795pt;}
.y69_c01252{bottom:536.544843pt;}
.y68_c01252{bottom:537.356928pt;}
.yb_c01252{bottom:540.604000pt;}
.y67_c01252{bottom:559.375019pt;}
.y66_c01252{bottom:559.561771pt;}
.y65_c01252{bottom:560.538944pt;}
.y64_c01252{bottom:562.475797pt;}
.y63_c01252{bottom:563.708843pt;}
.y62_c01252{bottom:564.204139pt;}
.y61_c01252{bottom:565.598315pt;}
.ya_c01252{bottom:566.040000pt;}
.y60_c01252{bottom:566.865728pt;}
.y5f_c01252{bottom:568.267456pt;}
.y5e_c01252{bottom:569.522667pt;}
.y9_c01252{bottom:635.398667pt;}
.y5d_c01252{bottom:658.508827pt;}
.y5c_c01252{bottom:659.263373pt;}
.y5b_c01252{bottom:659.585520pt;}
.y5a_c01252{bottom:660.332920pt;}
.y59_c01252{bottom:660.771240pt;}
.y58_c01252{bottom:661.410720pt;}
.y57_c01252{bottom:662.160227pt;}
.y8_c01252{bottom:664.680000pt;}
.y56_c01252{bottom:688.505933pt;}
.y55_c01252{bottom:689.698893pt;}
.y54_c01252{bottom:689.986907pt;}
.y53_c01252{bottom:690.764613pt;}
.y52_c01252{bottom:691.165413pt;}
.y51_c01252{bottom:692.149507pt;}
.y50_c01252{bottom:693.121333pt;}
.y7_c01252{bottom:704.761333pt;}
.y6_c01252{bottom:720.601333pt;}
.y4f_c01252{bottom:722.618667pt;}
.y4e_c01252{bottom:755.272000pt;}
.y4d_c01252{bottom:762.634667pt;}
.y4c_c01252{bottom:782.528617pt;}
.y4b_c01252{bottom:782.773281pt;}
.y4a_c01252{bottom:783.053860pt;}
.y49_c01252{bottom:783.606617pt;}
.y48_c01252{bottom:784.297163pt;}
.y47_c01252{bottom:784.571059pt;}
.y46_c01252{bottom:784.775888pt;}
.y45_c01252{bottom:786.150333pt;}
.y44_c01252{bottom:786.419124pt;}
.y43_c01252{bottom:786.960000pt;}
.y5_c01252{bottom:790.438667pt;}
.y1d_c01252{bottom:818.640000pt;}
.y1e_c01252{bottom:818.737403pt;}
.y1f_c01252{bottom:819.142329pt;}
.y20_c01252{bottom:819.414471pt;}
.y21_c01252{bottom:820.109972pt;}
.y22_c01252{bottom:820.855799pt;}
.y23_c01252{bottom:821.268995pt;}
.y4_c01252{bottom:821.640000pt;}
.y24_c01252{bottom:823.176168pt;}
.y42_c01252{bottom:849.989333pt;}
.y41_c01252{bottom:879.758667pt;}
.y3_c01252{bottom:883.078667pt;}
.y39_c01252{bottom:910.800297pt;}
.y3a_c01252{bottom:911.268973pt;}
.y3b_c01252{bottom:911.504355pt;}
.y3c_c01252{bottom:911.917085pt;}
.y3d_c01252{bottom:912.154580pt;}
.y3e_c01252{bottom:913.092899pt;}
.y3f_c01252{bottom:913.271189pt;}
.y2_c01252{bottom:914.278667pt;}
.y38_c01252{bottom:933.306279pt;}
.y37_c01252{bottom:933.593549pt;}
.y36_c01252{bottom:933.800180pt;}
.y35_c01252{bottom:934.828312pt;}
.y34_c01252{bottom:935.446533pt;}
.y33_c01252{bottom:935.730024pt;}
.y32_c01252{bottom:936.408772pt;}
.y31_c01252{bottom:936.961333pt;}
.y1_c01252{bottom:945.480000pt;}
.y30_c01252{bottom:969.902032pt;}
.y2f_c01252{bottom:970.738105pt;}
.y2e_c01252{bottom:971.168543pt;}
.y2d_c01252{bottom:971.820667pt;}
.y2c_c01252{bottom:972.573140pt;}
.y2b_c01252{bottom:973.009004pt;}
.y2a_c01252{bottom:973.336320pt;}
.y29_c01252{bottom:973.990849pt;}
.y28_c01252{bottom:974.524247pt;}
.y27_c01252{bottom:974.849172pt;}
.y26_c01252{bottom:975.612000pt;}
.y1c_c01252{bottom:1000.606393pt;}
.y1b_c01252{bottom:1001.511367pt;}
.y1a_c01252{bottom:1001.901419pt;}
.y19_c01252{bottom:1003.293632pt;}
.y18_c01252{bottom:1004.339109pt;}
.y17_c01252{bottom:1005.474945pt;}
.y16_c01252{bottom:1006.501373pt;}
.y15_c01252{bottom:1007.761333pt;}
.y40_c01252{bottom:1011.600000pt;}
.y25_c01252{bottom:1070.394667pt;}
.hd_c01252{height:16.000000pt;}
.h5_c01252{height:32.000000pt;}
.h2_c01252{height:37.333333pt;}
.h4_c01252{height:42.666667pt;}
.h3_c01252{height:48.000000pt;}
.h6_c01252{height:53.333333pt;}
.h1d_c01252{height:58.682182pt;}
.hf_c01252{height:64.001568pt;}
.ha_c01252{height:64.003872pt;}
.h12_c01252{height:64.008191pt;}
.h10_c01252{height:69.333333pt;}
.h11_c01252{height:69.336800pt;}
.h16_c01252{height:69.337528pt;}
.h7_c01252{height:69.339192pt;}
.h13_c01252{height:69.342207pt;}
.h1b_c01252{height:69.343351pt;}
.h8_c01252{height:74.668496pt;}
.h18_c01252{height:74.673984pt;}
.h14_c01252{height:74.676223pt;}
.h17_c01252{height:74.681599pt;}
.h1c_c01252{height:74.686413pt;}
.h9_c01252{height:80.000000pt;}
.h1e_c01252{height:85.333333pt;}
.h1a_c01252{height:85.345663pt;}
.he_c01252{height:90.666667pt;}
.hc_c01252{height:90.668888pt;}
.h19_c01252{height:90.679767pt;}
.h15_c01252{height:117.340432pt;}
.hb_c01252{height:138.670064pt;}
.h1_c01252{height:1118.666667pt;}
.h0_c01252{height:1118.880000pt;}
.w1_c01252{width:799.333333pt;}
.w0_c01252{width:799.440000pt;}
.x0_c01252{left:0.000000pt;}
.xa_c01252{left:66.000000pt;}
.x5_c01252{left:66.960000pt;}
.xc_c01252{left:75.840000pt;}
.x7_c01252{left:76.800000pt;}
.x3_c01252{left:78.000000pt;}
.x1_c01252{left:79.440000pt;}
.x6_c01252{left:93.120000pt;}
.x9_c01252{left:107.040000pt;}
.x4_c01252{left:108.960000pt;}
.x2_c01252{left:109.920000pt;}
.xb_c01252{left:116.880000pt;}
.x8_c01252{left:125.520000pt;}
.x15_c01252{left:132.330667pt;}
.x6a_c01252{left:145.002667pt;}
.xd_c01252{left:146.509333pt;}
.x84_c01252{left:152.923452pt;}
.x44_c01252{left:154.320000pt;}
.x8c_c01252{left:180.000000pt;}
.x73_c01252{left:181.718667pt;}
.x43_c01252{left:182.880000pt;}
.x1d_c01252{left:183.942667pt;}
.x16_c01252{left:204.092000pt;}
.x7e_c01252{left:211.184208pt;}
.x6b_c01252{left:212.184000pt;}
.x75_c01252{left:221.065333pt;}
.x54_c01252{left:222.327275pt;}
.x2b_c01252{left:224.005316pt;}
.x27_c01252{left:224.972000pt;}
.x78_c01252{left:229.745333pt;}
.x5e_c01252{left:231.934667pt;}
.x30_c01252{left:233.280000pt;}
.x8a_c01252{left:240.272955pt;}
.x6c_c01252{left:241.684000pt;}
.xe_c01252{left:243.429333pt;}
.x47_c01252{left:251.860000pt;}
.x1e_c01252{left:253.290667pt;}
.x76_c01252{left:260.657333pt;}
.x3b_c01252{left:261.738667pt;}
.x2c_c01252{left:263.144881pt;}
.x6d_c01252{left:270.253333pt;}
.x31_c01252{left:272.880000pt;}
.x7f_c01252{left:280.081873pt;}
.x37_c01252{left:281.760000pt;}
.x1f_c01252{left:282.829333pt;}
.x5f_c01252{left:290.022667pt;}
.x62_c01252{left:300.286829pt;}
.x80_c01252{left:309.056899pt;}
.x65_c01252{left:319.273892pt;}
.x45_c01252{left:320.640000pt;}
.xf_c01252{left:322.385333pt;}
.x85_c01252{left:328.580460pt;}
.x5a_c01252{left:329.842731pt;}
.x20_c01252{left:331.320000pt;}
.x1b_c01252{left:341.280000pt;}
.x17_c01252{left:342.326667pt;}
.x48_c01252{left:350.269333pt;}
.x79_c01252{left:358.342667pt;}
.x38_c01252{left:360.000000pt;}
.x1c_c01252{left:361.440000pt;}
.x28_c01252{left:362.434667pt;}
.x5b_c01252{left:368.249899pt;}
.x2d_c01252{left:371.598747pt;}
.x55_c01252{left:378.595925pt;}
.x60_c01252{left:380.246667pt;}
.x66_c01252{left:387.937144pt;}
.x4c_c01252{left:389.146787pt;}
.x21_c01252{left:390.822667pt;}
.x6e_c01252{left:398.432000pt;}
.x4e_c01252{left:399.412000pt;}
.x63_c01252{left:407.578121pt;}
.x46_c01252{left:408.720000pt;}
.x10_c01252{left:409.757333pt;}
.x4d_c01252{left:418.427827pt;}
.x22_c01252{left:420.578667pt;}
.x77_c01252{left:426.530667pt;}
.x39_c01252{left:428.400000pt;}
.x32_c01252{left:438.480000pt;}
.x8b_c01252{left:440.039324pt;}
.x18_c01252{left:448.873333pt;}
.x29_c01252{left:450.752000pt;}
.x86_c01252{left:456.586284pt;}
.x3c_c01252{left:458.088000pt;}
.x23_c01252{left:460.202667pt;}
.x49_c01252{left:468.120000pt;}
.x64_c01252{left:476.941737pt;}
.x3d_c01252{left:487.349333pt;}
.x11_c01252{left:490.178667pt;}
.x88_c01252{left:495.876000pt;}
.x4a_c01252{left:496.921333pt;}
.x87_c01252{left:505.026801pt;}
.x67_c01252{left:506.995824pt;}
.x19_c01252{left:507.901333pt;}
.x4f_c01252{left:517.504000pt;}
.x89_c01252{left:525.393333pt;}
.x3e_c01252{left:526.477333pt;}
.x24_c01252{left:528.609333pt;}
.x81_c01252{left:534.589215pt;}
.x5c_c01252{left:536.285963pt;}
.x33_c01252{left:538.320000pt;}
.x7a_c01252{left:554.224000pt;}
.x6f_c01252{left:555.232000pt;}
.x2e_c01252{left:557.814353pt;}
.x56_c01252{left:565.567915pt;}
.x34_c01252{left:576.000000pt;}
.x70_c01252{left:584.693333pt;}
.x25_c01252{left:587.893333pt;}
.x50_c01252{left:594.569333pt;}
.x12_c01252{left:597.272000pt;}
.x7b_c01252{left:604.401333pt;}
.x71_c01252{left:614.941333pt;}
.x4b_c01252{left:616.217333pt;}
.x68_c01252{left:619.145259pt;}
.x3f_c01252{left:625.126667pt;}
.x13_c01252{left:627.276000pt;}
.x5d_c01252{left:634.492011pt;}
.x82_c01252{left:662.714173pt;}
.x35_c01252{left:665.280000pt;}
.x2a_c01252{left:668.185333pt;}
.x57_c01252{left:673.968181pt;}
.x7c_c01252{left:683.133333pt;}
.x74_c01252{left:689.037333pt;}
.x83_c01252{left:694.165108pt;}
.x14_c01252{left:696.889333pt;}
.x26_c01252{left:703.030667pt;}
.x40_c01252{left:704.092000pt;}
.x36_c01252{left:705.840000pt;}
.x51_c01252{left:715.622667pt;}
.x3a_c01252{left:718.320000pt;}
.x7d_c01252{left:733.310667pt;}
.x69_c01252{left:742.078576pt;}
.x41_c01252{left:744.174667pt;}
.x2f_c01252{left:751.920000pt;}
.x58_c01252{left:762.220501pt;}
.x52_c01252{left:776.696000pt;}
.x42_c01252{left:779.126667pt;}
.x1a_c01252{left:780.354667pt;}
.x61_c01252{left:783.630667pt;}
.x53_c01252{left:788.368000pt;}
.x59_c01252{left:790.596981pt;}
.x72_c01252{left:791.929333pt;}
}





/* 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_c01253 {
    display:none;
  }
  .loading-indicator_c01253.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01253 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_c01253 { 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_c01253" -> "#page-container .classname_c01253")
 */
.pf_c01253 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01253 { /* 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_c01253.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01253 { /* 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_c01253 { /* 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_c01253 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01253 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01253 {overflow:visible;}
  }
}
.c_c01253 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01253 { /* 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_c01253:after { /* webkit #35443 */
  content: '';
}
.t_c01253:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01253 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 */
}
.__c01253 { /* 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_c01253 { /* info for Javascript */
  display:none;
}
.l_c01253 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01253 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01253 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01253: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_c01253 {
    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_c01253.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01253.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_c01253 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01253{font-family:sans-serif;visibility:hidden;}
.sc__c01253{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01253{-webkit-text-stroke:0px transparent;}
}
.y0_c01253{bottom:0.000000px;}
.h1_c01253{height:1258.500000px;}
.h0_c01253{height:1258.740000px;}
.w1_c01253{width:899.250000px;}
.w0_c01253{width:899.370000px;}
.x0_c01253{left:0.000000px;}
@media print{
.y0_c01253{bottom:0.000000pt;}
.h1_c01253{height:1118.666667pt;}
.h0_c01253{height:1118.880000pt;}
.w1_c01253{width:799.333333pt;}
.w0_c01253{width:799.440000pt;}
.x0_c01253{left:0.000000pt;}
}





/* 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_c01254 {
    display:none;
  }
  .loading-indicator_c01254.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01254 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_c01254 { 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_c01254" -> "#page-container .classname_c01254")
 */
.pf_c01254 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01254 { /* 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_c01254.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01254 { /* 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_c01254 { /* 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_c01254 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01254 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01254 {overflow:visible;}
  }
}
.c_c01254 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01254 { /* 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_c01254:after { /* webkit #35443 */
  content: '';
}
.t_c01254:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01254 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 */
}
.__c01254 { /* 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_c01254 { /* info for Javascript */
  display:none;
}
.l_c01254 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01254 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01254 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01254: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_c01254 {
    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_c01254.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01254.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_c01254 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01254{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01254;src:url('chunks/assets/font_c605e72f209fc835e906f064.woff2')format("woff");}.ff1_c01254{font-family:ff1_c01254;line-height:1.000000;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;}
.m22_c01254{transform:matrix(0.014140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.014140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.014140,0.000000,0.000000,0.250000,0,0);}
.mf_c01254{transform:matrix(0.102530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102530,0.000000,0.000000,0.250000,0,0);}
.m1d_c01254{transform:matrix(0.104500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.104500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.104500,0.000000,0.000000,0.250000,0,0);}
.m6f_c01254{transform:matrix(0.108685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108685,0.000000,0.000000,0.250000,0,0);}
.m10_c01254{transform:matrix(0.110240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110240,0.000000,0.000000,0.250000,0,0);}
.me_c01254{transform:matrix(0.118505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118505,0.000000,0.000000,0.250000,0,0);}
.m70_c01254{transform:matrix(0.122820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122820,0.000000,0.000000,0.250000,0,0);}
.mcb_c01254{transform:matrix(0.127315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127315,0.000000,0.000000,0.250000,0,0);}
.m56_c01254{transform:matrix(0.131795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131795,0.000000,0.000000,0.250000,0,0);}
.m20_c01254{transform:matrix(0.132500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132500,0.000000,0.000000,0.250000,0,0);}
.m72_c01254{transform:matrix(0.134115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134115,0.000000,0.000000,0.250000,0,0);}
.mc9_c01254{transform:matrix(0.134270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134270,0.000000,0.000000,0.250000,0,0);}
.m97_c01254{transform:matrix(0.134633,0.000808,-0.001500,0.249996,0,0);-ms-transform:matrix(0.134633,0.000808,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.134633,0.000808,-0.001500,0.249996,0,0);}
.m63_c01254{transform:matrix(0.135495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135495,0.000000,0.000000,0.250000,0,0);}
.ma5_c01254{transform:matrix(0.136445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136445,0.000000,0.000000,0.250000,0,0);}
.m60_c01254{transform:matrix(0.139110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139110,0.000000,0.000000,0.250000,0,0);}
.mc5_c01254{transform:matrix(0.139700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139700,0.000000,0.000000,0.250000,0,0);}
.m8b_c01254{transform:matrix(0.143800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143800,0.000000,0.000000,0.250000,0,0);}
.m35_c01254{transform:matrix(0.144600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144600,0.000000,0.000000,0.250000,0,0);}
.m96_c01254{transform:matrix(0.145532,0.000873,-0.001500,0.249996,0,0);-ms-transform:matrix(0.145532,0.000873,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.145532,0.000873,-0.001500,0.249996,0,0);}
.m66_c01254{transform:matrix(0.149490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149490,0.000000,0.000000,0.250000,0,0);}
.m67_c01254{transform:matrix(0.151835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151835,0.000000,0.000000,0.250000,0,0);}
.m1f_c01254{transform:matrix(0.152545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152545,0.000000,0.000000,0.250000,0,0);}
.md6_c01254{transform:matrix(0.153885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153885,0.000000,0.000000,0.250000,0,0);}
.m15_c01254{transform:matrix(0.154970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154970,0.000000,0.000000,0.250000,0,0);}
.m12_c01254{transform:matrix(0.156625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156625,0.000000,0.000000,0.250000,0,0);}
.m48_c01254{transform:matrix(0.156695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156695,0.000000,0.000000,0.250000,0,0);}
.m18_c01254{transform:matrix(0.157235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157235,0.000000,0.000000,0.250000,0,0);}
.m17_c01254{transform:matrix(0.158650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158650,0.000000,0.000000,0.250000,0,0);}
.m14_c01254{transform:matrix(0.160945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160945,0.000000,0.000000,0.250000,0,0);}
.mcf_c01254{transform:matrix(0.167075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167075,0.000000,0.000000,0.250000,0,0);}
.m21_c01254{transform:matrix(0.171295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171295,0.000000,0.000000,0.250000,0,0);}
.md0_c01254{transform:matrix(0.172355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172355,0.000000,0.000000,0.250000,0,0);}
.m13_c01254{transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173000,0.000000,0.000000,0.250000,0,0);}
.m11_c01254{transform:matrix(0.174975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174975,0.000000,0.000000,0.250000,0,0);}
.mca_c01254{transform:matrix(0.175025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175025,0.000000,0.000000,0.250000,0,0);}
.m32_c01254{transform:matrix(0.176885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176885,0.000000,0.000000,0.250000,0,0);}
.mc4_c01254{transform:matrix(0.177355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177355,0.000000,0.000000,0.250000,0,0);}
.m6e_c01254{transform:matrix(0.177465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177465,0.000000,0.000000,0.250000,0,0);}
.m1e_c01254{transform:matrix(0.179015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179015,0.000000,0.000000,0.250000,0,0);}
.m73_c01254{transform:matrix(0.179080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179080,0.000000,0.000000,0.250000,0,0);}
.m59_c01254{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.ma6_c01254{transform:matrix(0.183460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183460,0.000000,0.000000,0.250000,0,0);}
.m7d_c01254{transform:matrix(0.186235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186235,0.000000,0.000000,0.250000,0,0);}
.m16_c01254{transform:matrix(0.186625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186625,0.000000,0.000000,0.250000,0,0);}
.m1a_c01254{transform:matrix(0.188595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188595,0.000000,0.000000,0.250000,0,0);}
.m1_c01254{transform:matrix(0.191110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191110,0.000000,0.000000,0.250000,0,0);}
.m57_c01254{transform:matrix(0.192240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192240,0.000000,0.000000,0.250000,0,0);}
.m19_c01254{transform:matrix(0.192720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192720,0.000000,0.000000,0.250000,0,0);}
.ma9_c01254{transform:matrix(0.196735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196735,0.000000,0.000000,0.250000,0,0);}
.m36_c01254{transform:matrix(0.197170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197170,0.000000,0.000000,0.250000,0,0);}
.m77_c01254{transform:matrix(0.197945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197945,0.000000,0.000000,0.250000,0,0);}
.m1b_c01254{transform:matrix(0.198335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198335,0.000000,0.000000,0.250000,0,0);}
.mc8_c01254{transform:matrix(0.199245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199245,0.000000,0.000000,0.250000,0,0);}
.m4_c01254{transform:matrix(0.200715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200715,0.000000,0.000000,0.250000,0,0);}
.mbf_c01254{transform:matrix(0.202045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202045,0.000000,0.000000,0.250000,0,0);}
.mab_c01254{transform:matrix(0.202180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202180,0.000000,0.000000,0.250000,0,0);}
.m81_c01254{transform:matrix(0.202350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202350,0.000000,0.000000,0.250000,0,0);}
.m33_c01254{transform:matrix(0.202425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202425,0.000000,0.000000,0.250000,0,0);}
.m75_c01254{transform:matrix(0.202665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202665,0.000000,0.000000,0.250000,0,0);}
.mbd_c01254{transform:matrix(0.202840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202840,0.000000,0.000000,0.250000,0,0);}
.m9c_c01254{transform:matrix(0.203006,0.001218,-0.001500,0.249996,0,0);-ms-transform:matrix(0.203006,0.001218,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.203006,0.001218,-0.001500,0.249996,0,0);}
.m31_c01254{transform:matrix(0.203120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203120,0.000000,0.000000,0.250000,0,0);}
.m24_c01254{transform:matrix(0.203350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203350,0.000000,0.000000,0.250000,0,0);}
.m71_c01254{transform:matrix(0.203430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203430,0.000000,0.000000,0.250000,0,0);}
.m7b_c01254{transform:matrix(0.206040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206040,0.000000,0.000000,0.250000,0,0);}
.ma4_c01254{transform:matrix(0.206170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206170,0.000000,0.000000,0.250000,0,0);}
.ma3_c01254{transform:matrix(0.206565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206565,0.000000,0.000000,0.250000,0,0);}
.m6_c01254{transform:matrix(0.209165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209165,0.000000,0.000000,0.250000,0,0);}
.mb5_c01254{transform:matrix(0.209550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209550,0.000000,0.000000,0.250000,0,0);}
.mac_c01254{transform:matrix(0.211345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211345,0.000000,0.000000,0.250000,0,0);}
.m84_c01254{transform:matrix(0.213480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213480,0.000000,0.000000,0.250000,0,0);}
.m98_c01254{transform:matrix(0.213996,0.001284,-0.001500,0.249996,0,0);-ms-transform:matrix(0.213996,0.001284,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.213996,0.001284,-0.001500,0.249996,0,0);}
.mcc_c01254{transform:matrix(0.214650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214650,0.000000,0.000000,0.250000,0,0);}
.ma2_c01254{transform:matrix(0.215230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215230,0.000000,0.000000,0.250000,0,0);}
.m3c_c01254{transform:matrix(0.215295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215295,0.000000,0.000000,0.250000,0,0);}
.m91_c01254{transform:matrix(0.215695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215695,0.000000,0.000000,0.250000,0,0);}
.m28_c01254{transform:matrix(0.216150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216150,0.000000,0.000000,0.250000,0,0);}
.m83_c01254{transform:matrix(0.216720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216720,0.000000,0.000000,0.250000,0,0);}
.m26_c01254{transform:matrix(0.217035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217035,0.000000,0.000000,0.250000,0,0);}
.mb3_c01254{transform:matrix(0.217530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217530,0.000000,0.000000,0.250000,0,0);}
.mad_c01254{transform:matrix(0.219480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219480,0.000000,0.000000,0.250000,0,0);}
.m2b_c01254{transform:matrix(0.219860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219860,0.000000,0.000000,0.250000,0,0);}
.m8_c01254{transform:matrix(0.220130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220130,0.000000,0.000000,0.250000,0,0);}
.m69_c01254{transform:matrix(0.220215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220215,0.000000,0.000000,0.250000,0,0);}
.m38_c01254{transform:matrix(0.220730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220730,0.000000,0.000000,0.250000,0,0);}
.mc_c01254{transform:matrix(0.221635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221635,0.000000,0.000000,0.250000,0,0);}
.m6b_c01254{transform:matrix(0.222195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222195,0.000000,0.000000,0.250000,0,0);}
.m99_c01254{transform:matrix(0.222276,0.001334,-0.001500,0.249996,0,0);-ms-transform:matrix(0.222276,0.001334,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.222276,0.001334,-0.001500,0.249996,0,0);}
.m7c_c01254{transform:matrix(0.222835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222835,0.000000,0.000000,0.250000,0,0);}
.mb8_c01254{transform:matrix(0.223610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223610,0.000000,0.000000,0.250000,0,0);}
.mae_c01254{transform:matrix(0.223655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223655,0.000000,0.000000,0.250000,0,0);}
.mb2_c01254{transform:matrix(0.223765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223765,0.000000,0.000000,0.250000,0,0);}
.m41_c01254{transform:matrix(0.224070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224070,0.000000,0.000000,0.250000,0,0);}
.mc2_c01254{transform:matrix(0.224435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224435,0.000000,0.000000,0.250000,0,0);}
.ma7_c01254{transform:matrix(0.224790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224790,0.000000,0.000000,0.250000,0,0);}
.m79_c01254{transform:matrix(0.224880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224880,0.000000,0.000000,0.250000,0,0);}
.m62_c01254{transform:matrix(0.226940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226940,0.000000,0.000000,0.250000,0,0);}
.ma8_c01254{transform:matrix(0.228455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228455,0.000000,0.000000,0.250000,0,0);}
.mb9_c01254{transform:matrix(0.228705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228705,0.000000,0.000000,0.250000,0,0);}
.m4a_c01254{transform:matrix(0.228815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228815,0.000000,0.000000,0.250000,0,0);}
.m9a_c01254{transform:matrix(0.229031,0.001374,-0.001500,0.249996,0,0);-ms-transform:matrix(0.229031,0.001374,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.229031,0.001374,-0.001500,0.249996,0,0);}
.maa_c01254{transform:matrix(0.229310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229310,0.000000,0.000000,0.250000,0,0);}
.mb0_c01254{transform:matrix(0.229725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229725,0.000000,0.000000,0.250000,0,0);}
.mb_c01254{transform:matrix(0.229885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229885,0.000000,0.000000,0.250000,0,0);}
.m2_c01254{transform:matrix(0.230855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230855,0.000000,0.000000,0.250000,0,0);}
.mb1_c01254{transform:matrix(0.231035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231035,0.000000,0.000000,0.250000,0,0);}
.mbc_c01254{transform:matrix(0.231240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231240,0.000000,0.000000,0.250000,0,0);}
.m7a_c01254{transform:matrix(0.231405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231405,0.000000,0.000000,0.250000,0,0);}
.md4_c01254{transform:matrix(0.231625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231625,0.000000,0.000000,0.250000,0,0);}
.mc6_c01254{transform:matrix(0.231915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231915,0.000000,0.000000,0.250000,0,0);}
.m6d_c01254{transform:matrix(0.232155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232155,0.000000,0.000000,0.250000,0,0);}
.m9b_c01254{transform:matrix(0.232386,0.001394,-0.001500,0.249996,0,0);-ms-transform:matrix(0.232386,0.001394,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.232386,0.001394,-0.001500,0.249996,0,0);}
.m2c_c01254{transform:matrix(0.232725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232725,0.000000,0.000000,0.250000,0,0);}
.m3a_c01254{transform:matrix(0.232865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232865,0.000000,0.000000,0.250000,0,0);}
.m7e_c01254{transform:matrix(0.233120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233120,0.000000,0.000000,0.250000,0,0);}
.m3d_c01254{transform:matrix(0.233125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233125,0.000000,0.000000,0.250000,0,0);}
.m7f_c01254{transform:matrix(0.233315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233315,0.000000,0.000000,0.250000,0,0);}
.m76_c01254{transform:matrix(0.233445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233445,0.000000,0.000000,0.250000,0,0);}
.mc7_c01254{transform:matrix(0.233555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233555,0.000000,0.000000,0.250000,0,0);}
.mb4_c01254{transform:matrix(0.233650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233650,0.000000,0.000000,0.250000,0,0);}
.md5_c01254{transform:matrix(0.233955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233955,0.000000,0.000000,0.250000,0,0);}
.mce_c01254{transform:matrix(0.234465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234465,0.000000,0.000000,0.250000,0,0);}
.mb6_c01254{transform:matrix(0.234655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234655,0.000000,0.000000,0.250000,0,0);}
.m9d_c01254{transform:matrix(0.235336,0.001412,-0.001500,0.249996,0,0);-ms-transform:matrix(0.235336,0.001412,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.235336,0.001412,-0.001500,0.249996,0,0);}
.m80_c01254{transform:matrix(0.235445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235445,0.000000,0.000000,0.250000,0,0);}
.mbe_c01254{transform:matrix(0.235480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235480,0.000000,0.000000,0.250000,0,0);}
.mc1_c01254{transform:matrix(0.235655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235655,0.000000,0.000000,0.250000,0,0);}
.m9f_c01254{transform:matrix(0.235811,0.001415,-0.001500,0.249996,0,0);-ms-transform:matrix(0.235811,0.001415,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.235811,0.001415,-0.001500,0.249996,0,0);}
.m4c_c01254{transform:matrix(0.235880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235880,0.000000,0.000000,0.250000,0,0);}
.m7_c01254{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m5_c01254{transform:matrix(0.236950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236950,0.000000,0.000000,0.250000,0,0);}
.m82_c01254{transform:matrix(0.238165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238165,0.000000,0.000000,0.250000,0,0);}
.m44_c01254{transform:matrix(0.239535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239535,0.000000,0.000000,0.250000,0,0);}
.md2_c01254{transform:matrix(0.240065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240065,0.000000,0.000000,0.250000,0,0);}
.m23_c01254{transform:matrix(0.240175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240175,0.000000,0.000000,0.250000,0,0);}
.m3_c01254{transform:matrix(0.240920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240920,0.000000,0.000000,0.250000,0,0);}
.m27_c01254{transform:matrix(0.241775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241775,0.000000,0.000000,0.250000,0,0);}
.m25_c01254{transform:matrix(0.242040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242040,0.000000,0.000000,0.250000,0,0);}
.mc3_c01254{transform:matrix(0.242645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242645,0.000000,0.000000,0.250000,0,0);}
.m37_c01254{transform:matrix(0.243235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243235,0.000000,0.000000,0.250000,0,0);}
.m74_c01254{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.m39_c01254{transform:matrix(0.243915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243915,0.000000,0.000000,0.250000,0,0);}
.ma0_c01254{transform:matrix(0.244251,0.001466,-0.001500,0.249996,0,0);-ms-transform:matrix(0.244251,0.001466,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.244251,0.001466,-0.001500,0.249996,0,0);}
.m78_c01254{transform:matrix(0.244280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244280,0.000000,0.000000,0.250000,0,0);}
.m40_c01254{transform:matrix(0.244350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244350,0.000000,0.000000,0.250000,0,0);}
.ma_c01254{transform:matrix(0.245185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245185,0.000000,0.000000,0.250000,0,0);}
.mb7_c01254{transform:matrix(0.245855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245855,0.000000,0.000000,0.250000,0,0);}
.mba_c01254{transform:matrix(0.245925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245925,0.000000,0.000000,0.250000,0,0);}
.maf_c01254{transform:matrix(0.247010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247010,0.000000,0.000000,0.250000,0,0);}
.m9e_c01254{transform:matrix(0.247091,0.001483,-0.001500,0.249996,0,0);-ms-transform:matrix(0.247091,0.001483,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.247091,0.001483,-0.001500,0.249996,0,0);}
.mcd_c01254{transform:matrix(0.247210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247210,0.000000,0.000000,0.250000,0,0);}
.m2e_c01254{transform:matrix(0.247955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247955,0.000000,0.000000,0.250000,0,0);}
.m9_c01254{transform:matrix(0.248360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248360,0.000000,0.000000,0.250000,0,0);}
.m2f_c01254{transform:matrix(0.248810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248810,0.000000,0.000000,0.250000,0,0);}
.m45_c01254{transform:matrix(0.250900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250900,0.000000,0.000000,0.250000,0,0);}
.m43_c01254{transform:matrix(0.251205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251205,0.000000,0.000000,0.250000,0,0);}
.ma1_c01254{transform:matrix(0.251905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251905,0.000000,0.000000,0.250000,0,0);}
.m2a_c01254{transform:matrix(0.252035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252035,0.000000,0.000000,0.250000,0,0);}
.m29_c01254{transform:matrix(0.252255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252255,0.000000,0.000000,0.250000,0,0);}
.m61_c01254{transform:matrix(0.254045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254045,0.000000,0.000000,0.250000,0,0);}
.m1c_c01254{transform:matrix(0.254720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254720,0.000000,0.000000,0.250000,0,0);}
.m2d_c01254{transform:matrix(0.255980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255980,0.000000,0.000000,0.250000,0,0);}
.md_c01254{transform:matrix(0.257120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257120,0.000000,0.000000,0.250000,0,0);}
.m42_c01254{transform:matrix(0.257570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257570,0.000000,0.000000,0.250000,0,0);}
.m3b_c01254{transform:matrix(0.257970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257970,0.000000,0.000000,0.250000,0,0);}
.m53_c01254{transform:matrix(0.258185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258185,0.000000,0.000000,0.250000,0,0);}
.m51_c01254{transform:matrix(0.258755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258755,0.000000,0.000000,0.250000,0,0);}
.m34_c01254{transform:matrix(0.258825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258825,0.000000,0.000000,0.250000,0,0);}
.m47_c01254{transform:matrix(0.259130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259130,0.000000,0.000000,0.250000,0,0);}
.m6a_c01254{transform:matrix(0.259385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259385,0.000000,0.000000,0.250000,0,0);}
.m0_c01254{transform:matrix(0.259475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259475,0.000000,0.000000,0.250000,0,0);}
.mc0_c01254{transform:matrix(0.260550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260550,0.000000,0.000000,0.250000,0,0);}
.m68_c01254{transform:matrix(0.261485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261485,0.000000,0.000000,0.250000,0,0);}
.m3f_c01254{transform:matrix(0.264295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264295,0.000000,0.000000,0.250000,0,0);}
.m3e_c01254{transform:matrix(0.264430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264430,0.000000,0.000000,0.250000,0,0);}
.m64_c01254{transform:matrix(0.264730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264730,0.000000,0.000000,0.250000,0,0);}
.m4f_c01254{transform:matrix(0.264870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264870,0.000000,0.000000,0.250000,0,0);}
.m93_c01254{transform:matrix(0.265885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265885,0.000000,0.000000,0.250000,0,0);}
.m50_c01254{transform:matrix(0.268850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268850,0.000000,0.000000,0.250000,0,0);}
.md3_c01254{transform:matrix(0.269440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269440,0.000000,0.000000,0.250000,0,0);}
.md1_c01254{transform:matrix(0.270765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270765,0.000000,0.000000,0.250000,0,0);}
.m65_c01254{transform:matrix(0.272970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272970,0.000000,0.000000,0.250000,0,0);}
.m4d_c01254{transform:matrix(0.273300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273300,0.000000,0.000000,0.250000,0,0);}
.mbb_c01254{transform:matrix(0.273500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273500,0.000000,0.000000,0.250000,0,0);}
.m4b_c01254{transform:matrix(0.273610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273610,0.000000,0.000000,0.250000,0,0);}
.m54_c01254{transform:matrix(0.276145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276145,0.000000,0.000000,0.250000,0,0);}
.m92_c01254{transform:matrix(0.277140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277140,0.000000,0.000000,0.250000,0,0);}
.m4e_c01254{transform:matrix(0.283590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283590,0.000000,0.000000,0.250000,0,0);}
.m5e_c01254{transform:matrix(0.283760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283760,0.000000,0.000000,0.250000,0,0);}
.m49_c01254{transform:matrix(0.285125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285125,0.000000,0.000000,0.250000,0,0);}
.m5d_c01254{transform:matrix(0.288765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288765,0.000000,0.000000,0.250000,0,0);}
.m6c_c01254{transform:matrix(0.290285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290285,0.000000,0.000000,0.250000,0,0);}
.m8e_c01254{transform:matrix(0.293565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293565,0.000000,0.000000,0.250000,0,0);}
.m52_c01254{transform:matrix(0.296230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296230,0.000000,0.000000,0.250000,0,0);}
.m55_c01254{transform:matrix(0.299105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299105,0.000000,0.000000,0.250000,0,0);}
.m5c_c01254{transform:matrix(0.308445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308445,0.000000,0.000000,0.250000,0,0);}
.m5b_c01254{transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308905,0.000000,0.000000,0.250000,0,0);}
.m5f_c01254{transform:matrix(0.317640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317640,0.000000,0.000000,0.250000,0,0);}
.m58_c01254{transform:matrix(0.325070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325070,0.000000,0.000000,0.250000,0,0);}
.m85_c01254{transform:matrix(0.336885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336885,0.000000,0.000000,0.250000,0,0);}
.m30_c01254{transform:matrix(0.338820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338820,0.000000,0.000000,0.250000,0,0);}
.m8c_c01254{transform:matrix(0.340770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340770,0.000000,0.000000,0.250000,0,0);}
.m90_c01254{transform:matrix(0.341180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341180,0.000000,0.000000,0.250000,0,0);}
.m8f_c01254{transform:matrix(0.345465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345465,0.000000,0.000000,0.250000,0,0);}
.m87_c01254{transform:matrix(0.347885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347885,0.000000,0.000000,0.250000,0,0);}
.m86_c01254{transform:matrix(0.349290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349290,0.000000,0.000000,0.250000,0,0);}
.m88_c01254{transform:matrix(0.350600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350600,0.000000,0.000000,0.250000,0,0);}
.m8a_c01254{transform:matrix(0.355080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355080,0.000000,0.000000,0.250000,0,0);}
.m95_c01254{transform:matrix(0.363000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363000,0.000000,0.000000,0.250000,0,0);}
.m46_c01254{transform:matrix(0.364645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364645,0.000000,0.000000,0.250000,0,0);}
.m94_c01254{transform:matrix(0.373760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373760,0.000000,0.000000,0.250000,0,0);}
.m5a_c01254{transform:matrix(0.377405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377405,0.000000,0.000000,0.250000,0,0);}
.m89_c01254{transform:matrix(0.406525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406525,0.000000,0.000000,0.250000,0,0);}
.m8d_c01254{transform:matrix(0.416925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416925,0.000000,0.000000,0.250000,0,0);}
.v0_c01254{vertical-align:0.000000px;}
.ls0_c01254{letter-spacing:0.000000px;}
.sc__c01254{text-shadow:none;}
.sc0_c01254{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__c01254{-webkit-text-stroke:0px transparent;}
.sc0_c01254{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01254{word-spacing:0.000000px;}
.fc0_c01254{color:transparent;}
.fs3_c01254{font-size:42.000000px;}
.fs8_c01254{font-size:48.000000px;}
.fs9_c01254{font-size:54.000000px;}
.fs7_c01254{font-size:60.000000px;}
.fs6_c01254{font-size:66.000000px;}
.fs5_c01254{font-size:72.000000px;}
.fs1_c01254{font-size:78.000000px;}
.fs0_c01254{font-size:84.000000px;}
.fsa_c01254{font-size:84.001512px;}
.fs4_c01254{font-size:96.000000px;}
.fsb_c01254{font-size:102.000000px;}
.fs2_c01254{font-size:108.000000px;}
.y0_c01254{bottom:0.000000px;}
.y62_c01254{bottom:76.735500px;}
.y61_c01254{bottom:77.004000px;}
.y60_c01254{bottom:77.202000px;}
.y5f_c01254{bottom:77.542500px;}
.y5e_c01254{bottom:77.800500px;}
.y5d_c01254{bottom:78.453000px;}
.y5c_c01254{bottom:78.642000px;}
.y5b_c01254{bottom:78.840000px;}
.y5a_c01254{bottom:107.554500px;}
.y59_c01254{bottom:108.090000px;}
.y58_c01254{bottom:110.220000px;}
.y57_c01254{bottom:110.743500px;}
.y56_c01254{bottom:111.105000px;}
.y55_c01254{bottom:111.610500px;}
.y54_c01254{bottom:113.023500px;}
.y53_c01254{bottom:113.749500px;}
.y52_c01254{bottom:115.162500px;}
.y51_c01254{bottom:115.866000px;}
.y50_c01254{bottom:117.765000px;}
.y4f_c01254{bottom:118.285500px;}
.y4e_c01254{bottom:118.800000px;}
.y4d_c01254{bottom:146.188500px;}
.y4c_c01254{bottom:179.209500px;}
.y4b_c01254{bottom:179.929500px;}
.y4a_c01254{bottom:180.933000px;}
.y49_c01254{bottom:182.800500px;}
.y48_c01254{bottom:183.390000px;}
.y47_c01254{bottom:184.812000px;}
.y46_c01254{bottom:185.398500px;}
.y45_c01254{bottom:186.802500px;}
.y44_c01254{bottom:187.212000px;}
.y43_c01254{bottom:187.651500px;}
.y42_c01254{bottom:214.479000px;}
.y41_c01254{bottom:258.645000px;}
.y40_c01254{bottom:290.683500px;}
.y3f_c01254{bottom:322.518000px;}
.y3e_c01254{bottom:359.726436px;}
.y3d_c01254{bottom:360.128286px;}
.y3c_c01254{bottom:360.862344px;}
.y3b_c01254{bottom:361.311075px;}
.y3a_c01254{bottom:361.587942px;}
.y39_c01254{bottom:362.048076px;}
.y38_c01254{bottom:362.380167px;}
.y37_c01254{bottom:362.773872px;}
.y36_c01254{bottom:363.029679px;}
.y35_c01254{bottom:363.217356px;}
.y34_c01254{bottom:363.420000px;}
.y33_c01254{bottom:432.502500px;}
.y32_c01254{bottom:468.283500px;}
.y31_c01254{bottom:499.545000px;}
.y30_c01254{bottom:500.485500px;}
.y2f_c01254{bottom:500.706000px;}
.y2e_c01254{bottom:500.865000px;}
.y2d_c01254{bottom:501.483000px;}
.y2c_c01254{bottom:501.718500px;}
.y2b_c01254{bottom:502.335000px;}
.y2a_c01254{bottom:502.728000px;}
.y29_c01254{bottom:503.265000px;}
.y28_c01254{bottom:503.551500px;}
.y27_c01254{bottom:535.009500px;}
.y26_c01254{bottom:535.312500px;}
.y25_c01254{bottom:535.816500px;}
.y24_c01254{bottom:536.311500px;}
.y23_c01254{bottom:537.589500px;}
.y22_c01254{bottom:538.000500px;}
.y21_c01254{bottom:538.800000px;}
.y20_c01254{bottom:539.101500px;}
.y1f_c01254{bottom:540.672000px;}
.y1e_c01254{bottom:541.047000px;}
.y1d_c01254{bottom:541.351500px;}
.y1c_c01254{bottom:575.278500px;}
.y1b_c01254{bottom:611.667000px;}
.y1a_c01254{bottom:646.138500px;}
.y19_c01254{bottom:675.822000px;}
.y18_c01254{bottom:714.807000px;}
.y17_c01254{bottom:751.396500px;}
.y16_c01254{bottom:785.784000px;}
.y15_c01254{bottom:820.636500px;}
.ya_c01254{bottom:849.961500px;}
.yb_c01254{bottom:850.410000px;}
.yc_c01254{bottom:850.741500px;}
.yd_c01254{bottom:852.145500px;}
.ye_c01254{bottom:852.411000px;}
.yf_c01254{bottom:853.119000px;}
.y10_c01254{bottom:853.479000px;}
.y11_c01254{bottom:854.094000px;}
.y12_c01254{bottom:855.061500px;}
.y13_c01254{bottom:855.334500px;}
.y14_c01254{bottom:855.694500px;}
.y9_c01254{bottom:892.141500px;}
.y8_c01254{bottom:925.114500px;}
.y7_c01254{bottom:961.663500px;}
.y6_c01254{bottom:996.030000px;}
.y5_c01254{bottom:1031.427000px;}
.y4_c01254{bottom:1045.980000px;}
.y3_c01254{bottom:1064.610000px;}
.y2_c01254{bottom:1101.870000px;}
.y1_c01254{bottom:1135.491000px;}
.h5_c01254{height:42.000000px;}
.ha_c01254{height:48.000000px;}
.hb_c01254{height:54.000000px;}
.h9_c01254{height:60.000000px;}
.h8_c01254{height:66.000000px;}
.h7_c01254{height:72.000000px;}
.h3_c01254{height:78.000000px;}
.h2_c01254{height:84.000000px;}
.hc_c01254{height:84.001512px;}
.h6_c01254{height:96.000000px;}
.hd_c01254{height:102.000000px;}
.h4_c01254{height:108.000000px;}
.h1_c01254{height:1258.500000px;}
.h0_c01254{height:1258.740000px;}
.w1_c01254{width:899.250000px;}
.w0_c01254{width:899.370000px;}
.x0_c01254{left:0.000000px;}
.x1e_c01254{left:90.990000px;}
.x1_c01254{left:92.070000px;}
.x3a_c01254{left:113.130000px;}
.x10_c01254{left:114.210000px;}
.x5b_c01254{left:115.560000px;}
.x68_c01254{left:116.571000px;}
.x4c_c01254{left:132.300000px;}
.x60_c01254{left:144.720000px;}
.x28_c01254{left:146.880000px;}
.x2_c01254{left:148.500000px;}
.x4d_c01254{left:178.470000px;}
.x52_c01254{left:180.024000px;}
.x69_c01254{left:181.285500px;}
.x3_c01254{left:188.730000px;}
.xb_c01254{left:221.400000px;}
.x2d_c01254{left:222.480000px;}
.x41_c01254{left:224.370000px;}
.x19_c01254{left:233.280000px;}
.x5c_c01254{left:244.620000px;}
.x3e_c01254{left:254.880000px;}
.x58_c01254{left:257.040000px;}
.xc_c01254{left:265.680000px;}
.x3b_c01254{left:268.650000px;}
.x2e_c01254{left:276.210000px;}
.x4_c01254{left:286.200000px;}
.x3f_c01254{left:287.280000px;}
.x4a_c01254{left:288.630000px;}
.x26_c01254{left:298.080000px;}
.x1a_c01254{left:299.430000px;}
.x59_c01254{left:301.860000px;}
.x11_c01254{left:308.610000px;}
.xd_c01254{left:319.680000px;}
.x5d_c01254{left:321.300000px;}
.x27_c01254{left:331.020000px;}
.x61_c01254{left:332.640000px;}
.x64_c01254{left:333.778500px;}
.x3c_c01254{left:342.090000px;}
.x53_c01254{left:343.624500px;}
.x42_c01254{left:345.330000px;}
.xe_c01254{left:352.620000px;}
.x4b_c01254{left:354.240000px;}
.x4e_c01254{left:355.320000px;}
.x12_c01254{left:363.960000px;}
.x39_c01254{left:376.380000px;}
.x5a_c01254{left:389.610000px;}
.x5_c01254{left:396.630000px;}
.x2f_c01254{left:397.980000px;}
.x1f_c01254{left:409.320000px;}
.x43_c01254{left:410.670000px;}
.x54_c01254{left:420.313500px;}
.x6d_c01254{left:421.908000px;}
.x1b_c01254{left:429.570000px;}
.x29_c01254{left:431.460000px;}
.x4f_c01254{left:433.890000px;}
.x6_c01254{left:442.530000px;}
.x62_c01254{left:444.690000px;}
.x44_c01254{left:453.600000px;}
.x5e_c01254{left:455.490000px;}
.x55_c01254{left:466.458000px;}
.x30_c01254{left:474.390000px;}
.x40_c01254{left:478.170000px;}
.x33_c01254{left:485.866500px;}
.x65_c01254{left:488.487000px;}
.x1c_c01254{left:496.260000px;}
.x50_c01254{left:510.840000px;}
.x31_c01254{left:518.940000px;}
.x48_c01254{left:520.186500px;}
.x34_c01254{left:530.958000px;}
.x45_c01254{left:532.039500px;}
.x56_c01254{left:541.246500px;}
.x13_c01254{left:551.880000px;}
.x7_c01254{left:553.230000px;}
.x2a_c01254{left:562.950000px;}
.x6a_c01254{left:566.001000px;}
.x3d_c01254{left:574.290000px;}
.x20_c01254{left:584.550000px;}
.x14_c01254{left:586.170000px;}
.x8_c01254{left:596.700000px;}
.x18_c01254{left:597.780000px;}
.x35_c01254{left:607.894500px;}
.x15_c01254{left:617.490000px;}
.x21_c01254{left:618.570000px;}
.x6b_c01254{left:620.212500px;}
.x2b_c01254{left:629.100000px;}
.x49_c01254{left:631.176000px;}
.x5f_c01254{left:652.860000px;}
.x22_c01254{left:662.850000px;}
.x46_c01254{left:674.058000px;}
.x9_c01254{left:684.990000px;}
.x63_c01254{left:697.140000px;}
.x66_c01254{left:709.365000px;}
.xa_c01254{left:718.470000px;}
.x36_c01254{left:728.823000px;}
.x57_c01254{left:730.564500px;}
.x23_c01254{left:739.800000px;}
.x16_c01254{left:742.500000px;}
.x51_c01254{left:751.140000px;}
.x37_c01254{left:762.864000px;}
.x67_c01254{left:764.730000px;}
.x24_c01254{left:774.360000px;}
.x2c_c01254{left:784.080000px;}
.x6c_c01254{left:786.036000px;}
.x32_c01254{left:797.040000px;}
.x25_c01254{left:805.140000px;}
.x38_c01254{left:807.949500px;}
.x17_c01254{left:810.270000px;}
.x47_c01254{left:818.808000px;}
.x1d_c01254{left:827.550000px;}
.xf_c01254{left:885.060000px;}
@media print{
.v0_c01254{vertical-align:0.000000pt;}
.ls0_c01254{letter-spacing:0.000000pt;}
.ws0_c01254{word-spacing:0.000000pt;}
.fs3_c01254{font-size:37.333333pt;}
.fs8_c01254{font-size:42.666667pt;}
.fs9_c01254{font-size:48.000000pt;}
.fs7_c01254{font-size:53.333333pt;}
.fs6_c01254{font-size:58.666667pt;}
.fs5_c01254{font-size:64.000000pt;}
.fs1_c01254{font-size:69.333333pt;}
.fs0_c01254{font-size:74.666667pt;}
.fsa_c01254{font-size:74.668011pt;}
.fs4_c01254{font-size:85.333333pt;}
.fsb_c01254{font-size:90.666667pt;}
.fs2_c01254{font-size:96.000000pt;}
.y0_c01254{bottom:0.000000pt;}
.y62_c01254{bottom:68.209333pt;}
.y61_c01254{bottom:68.448000pt;}
.y60_c01254{bottom:68.624000pt;}
.y5f_c01254{bottom:68.926667pt;}
.y5e_c01254{bottom:69.156000pt;}
.y5d_c01254{bottom:69.736000pt;}
.y5c_c01254{bottom:69.904000pt;}
.y5b_c01254{bottom:70.080000pt;}
.y5a_c01254{bottom:95.604000pt;}
.y59_c01254{bottom:96.080000pt;}
.y58_c01254{bottom:97.973333pt;}
.y57_c01254{bottom:98.438667pt;}
.y56_c01254{bottom:98.760000pt;}
.y55_c01254{bottom:99.209333pt;}
.y54_c01254{bottom:100.465333pt;}
.y53_c01254{bottom:101.110667pt;}
.y52_c01254{bottom:102.366667pt;}
.y51_c01254{bottom:102.992000pt;}
.y50_c01254{bottom:104.680000pt;}
.y4f_c01254{bottom:105.142667pt;}
.y4e_c01254{bottom:105.600000pt;}
.y4d_c01254{bottom:129.945333pt;}
.y4c_c01254{bottom:159.297333pt;}
.y4b_c01254{bottom:159.937333pt;}
.y4a_c01254{bottom:160.829333pt;}
.y49_c01254{bottom:162.489333pt;}
.y48_c01254{bottom:163.013333pt;}
.y47_c01254{bottom:164.277333pt;}
.y46_c01254{bottom:164.798667pt;}
.y45_c01254{bottom:166.046667pt;}
.y44_c01254{bottom:166.410667pt;}
.y43_c01254{bottom:166.801333pt;}
.y42_c01254{bottom:190.648000pt;}
.y41_c01254{bottom:229.906667pt;}
.y40_c01254{bottom:258.385333pt;}
.y3f_c01254{bottom:286.682667pt;}
.y3e_c01254{bottom:319.756832pt;}
.y3d_c01254{bottom:320.114032pt;}
.y3c_c01254{bottom:320.766528pt;}
.y3b_c01254{bottom:321.165400pt;}
.y3a_c01254{bottom:321.411504pt;}
.y39_c01254{bottom:321.820512pt;}
.y38_c01254{bottom:322.115704pt;}
.y37_c01254{bottom:322.465664pt;}
.y36_c01254{bottom:322.693048pt;}
.y35_c01254{bottom:322.859872pt;}
.y34_c01254{bottom:323.040000pt;}
.y33_c01254{bottom:384.446667pt;}
.y32_c01254{bottom:416.252000pt;}
.y31_c01254{bottom:444.040000pt;}
.y30_c01254{bottom:444.876000pt;}
.y2f_c01254{bottom:445.072000pt;}
.y2e_c01254{bottom:445.213333pt;}
.y2d_c01254{bottom:445.762667pt;}
.y2c_c01254{bottom:445.972000pt;}
.y2b_c01254{bottom:446.520000pt;}
.y2a_c01254{bottom:446.869333pt;}
.y29_c01254{bottom:447.346667pt;}
.y28_c01254{bottom:447.601333pt;}
.y27_c01254{bottom:475.564000pt;}
.y26_c01254{bottom:475.833333pt;}
.y25_c01254{bottom:476.281333pt;}
.y24_c01254{bottom:476.721333pt;}
.y23_c01254{bottom:477.857333pt;}
.y22_c01254{bottom:478.222667pt;}
.y21_c01254{bottom:478.933333pt;}
.y20_c01254{bottom:479.201333pt;}
.y1f_c01254{bottom:480.597333pt;}
.y1e_c01254{bottom:480.930667pt;}
.y1d_c01254{bottom:481.201333pt;}
.y1c_c01254{bottom:511.358667pt;}
.y1b_c01254{bottom:543.704000pt;}
.y1a_c01254{bottom:574.345333pt;}
.y19_c01254{bottom:600.730667pt;}
.y18_c01254{bottom:635.384000pt;}
.y17_c01254{bottom:667.908000pt;}
.y16_c01254{bottom:698.474667pt;}
.y15_c01254{bottom:729.454667pt;}
.ya_c01254{bottom:755.521333pt;}
.yb_c01254{bottom:755.920000pt;}
.yc_c01254{bottom:756.214667pt;}
.yd_c01254{bottom:757.462667pt;}
.ye_c01254{bottom:757.698667pt;}
.yf_c01254{bottom:758.328000pt;}
.y10_c01254{bottom:758.648000pt;}
.y11_c01254{bottom:759.194667pt;}
.y12_c01254{bottom:760.054667pt;}
.y13_c01254{bottom:760.297333pt;}
.y14_c01254{bottom:760.617333pt;}
.y9_c01254{bottom:793.014667pt;}
.y8_c01254{bottom:822.324000pt;}
.y7_c01254{bottom:854.812000pt;}
.y6_c01254{bottom:885.360000pt;}
.y5_c01254{bottom:916.824000pt;}
.y4_c01254{bottom:929.760000pt;}
.y3_c01254{bottom:946.320000pt;}
.y2_c01254{bottom:979.440000pt;}
.y1_c01254{bottom:1009.325333pt;}
.h5_c01254{height:37.333333pt;}
.ha_c01254{height:42.666667pt;}
.hb_c01254{height:48.000000pt;}
.h9_c01254{height:53.333333pt;}
.h8_c01254{height:58.666667pt;}
.h7_c01254{height:64.000000pt;}
.h3_c01254{height:69.333333pt;}
.h2_c01254{height:74.666667pt;}
.hc_c01254{height:74.668011pt;}
.h6_c01254{height:85.333333pt;}
.hd_c01254{height:90.666667pt;}
.h4_c01254{height:96.000000pt;}
.h1_c01254{height:1118.666667pt;}
.h0_c01254{height:1118.880000pt;}
.w1_c01254{width:799.333333pt;}
.w0_c01254{width:799.440000pt;}
.x0_c01254{left:0.000000pt;}
.x1e_c01254{left:80.880000pt;}
.x1_c01254{left:81.840000pt;}
.x3a_c01254{left:100.560000pt;}
.x10_c01254{left:101.520000pt;}
.x5b_c01254{left:102.720000pt;}
.x68_c01254{left:103.618667pt;}
.x4c_c01254{left:117.600000pt;}
.x60_c01254{left:128.640000pt;}
.x28_c01254{left:130.560000pt;}
.x2_c01254{left:132.000000pt;}
.x4d_c01254{left:158.640000pt;}
.x52_c01254{left:160.021333pt;}
.x69_c01254{left:161.142667pt;}
.x3_c01254{left:167.760000pt;}
.xb_c01254{left:196.800000pt;}
.x2d_c01254{left:197.760000pt;}
.x41_c01254{left:199.440000pt;}
.x19_c01254{left:207.360000pt;}
.x5c_c01254{left:217.440000pt;}
.x3e_c01254{left:226.560000pt;}
.x58_c01254{left:228.480000pt;}
.xc_c01254{left:236.160000pt;}
.x3b_c01254{left:238.800000pt;}
.x2e_c01254{left:245.520000pt;}
.x4_c01254{left:254.400000pt;}
.x3f_c01254{left:255.360000pt;}
.x4a_c01254{left:256.560000pt;}
.x26_c01254{left:264.960000pt;}
.x1a_c01254{left:266.160000pt;}
.x59_c01254{left:268.320000pt;}
.x11_c01254{left:274.320000pt;}
.xd_c01254{left:284.160000pt;}
.x5d_c01254{left:285.600000pt;}
.x27_c01254{left:294.240000pt;}
.x61_c01254{left:295.680000pt;}
.x64_c01254{left:296.692000pt;}
.x3c_c01254{left:304.080000pt;}
.x53_c01254{left:305.444000pt;}
.x42_c01254{left:306.960000pt;}
.xe_c01254{left:313.440000pt;}
.x4b_c01254{left:314.880000pt;}
.x4e_c01254{left:315.840000pt;}
.x12_c01254{left:323.520000pt;}
.x39_c01254{left:334.560000pt;}
.x5a_c01254{left:346.320000pt;}
.x5_c01254{left:352.560000pt;}
.x2f_c01254{left:353.760000pt;}
.x1f_c01254{left:363.840000pt;}
.x43_c01254{left:365.040000pt;}
.x54_c01254{left:373.612000pt;}
.x6d_c01254{left:375.029333pt;}
.x1b_c01254{left:381.840000pt;}
.x29_c01254{left:383.520000pt;}
.x4f_c01254{left:385.680000pt;}
.x6_c01254{left:393.360000pt;}
.x62_c01254{left:395.280000pt;}
.x44_c01254{left:403.200000pt;}
.x5e_c01254{left:404.880000pt;}
.x55_c01254{left:414.629333pt;}
.x30_c01254{left:421.680000pt;}
.x40_c01254{left:425.040000pt;}
.x33_c01254{left:431.881333pt;}
.x65_c01254{left:434.210667pt;}
.x1c_c01254{left:441.120000pt;}
.x50_c01254{left:454.080000pt;}
.x31_c01254{left:461.280000pt;}
.x48_c01254{left:462.388000pt;}
.x34_c01254{left:471.962667pt;}
.x45_c01254{left:472.924000pt;}
.x56_c01254{left:481.108000pt;}
.x13_c01254{left:490.560000pt;}
.x7_c01254{left:491.760000pt;}
.x2a_c01254{left:500.400000pt;}
.x6a_c01254{left:503.112000pt;}
.x3d_c01254{left:510.480000pt;}
.x20_c01254{left:519.600000pt;}
.x14_c01254{left:521.040000pt;}
.x8_c01254{left:530.400000pt;}
.x18_c01254{left:531.360000pt;}
.x35_c01254{left:540.350667pt;}
.x15_c01254{left:548.880000pt;}
.x21_c01254{left:549.840000pt;}
.x6b_c01254{left:551.300000pt;}
.x2b_c01254{left:559.200000pt;}
.x49_c01254{left:561.045333pt;}
.x5f_c01254{left:580.320000pt;}
.x22_c01254{left:589.200000pt;}
.x46_c01254{left:599.162667pt;}
.x9_c01254{left:608.880000pt;}
.x63_c01254{left:619.680000pt;}
.x66_c01254{left:630.546667pt;}
.xa_c01254{left:638.640000pt;}
.x36_c01254{left:647.842667pt;}
.x57_c01254{left:649.390667pt;}
.x23_c01254{left:657.600000pt;}
.x16_c01254{left:660.000000pt;}
.x51_c01254{left:667.680000pt;}
.x37_c01254{left:678.101333pt;}
.x67_c01254{left:679.760000pt;}
.x24_c01254{left:688.320000pt;}
.x2c_c01254{left:696.960000pt;}
.x6c_c01254{left:698.698667pt;}
.x32_c01254{left:708.480000pt;}
.x25_c01254{left:715.680000pt;}
.x38_c01254{left:718.177333pt;}
.x17_c01254{left:720.240000pt;}
.x47_c01254{left:727.829333pt;}
.x1d_c01254{left:735.600000pt;}
.xf_c01254{left:786.720000pt;}
}





/* 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_c01255 {
    display:none;
  }
  .loading-indicator_c01255.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01255 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_c01255 { 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_c01255" -> "#page-container .classname_c01255")
 */
.pf_c01255 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01255 { /* 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_c01255.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01255 { /* 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_c01255 { /* 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_c01255 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01255 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01255 {overflow:visible;}
  }
}
.c_c01255 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01255 { /* 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_c01255:after { /* webkit #35443 */
  content: '';
}
.t_c01255:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01255 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 */
}
.__c01255 { /* 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_c01255 { /* info for Javascript */
  display:none;
}
.l_c01255 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01255 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01255 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01255: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_c01255 {
    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_c01255.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01255.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_c01255 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01255{font-family:sans-serif;visibility:hidden;}
.sc__c01255{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01255{-webkit-text-stroke:0px transparent;}
}
.y0_c01255{bottom:0.000000px;}
.h1_c01255{height:1258.500000px;}
.h0_c01255{height:1258.740000px;}
.w1_c01255{width:888.750000px;}
.w0_c01255{width:889.050000px;}
.x0_c01255{left:0.000000px;}
@media print{
.y0_c01255{bottom:0.000000pt;}
.h1_c01255{height:1118.666667pt;}
.h0_c01255{height:1118.880000pt;}
.w1_c01255{width:790.000000pt;}
.w0_c01255{width:790.266667pt;}
.x0_c01255{left:0.000000pt;}
}





/* 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_c01256 {
    display:none;
  }
  .loading-indicator_c01256.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01256 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_c01256 { 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_c01256" -> "#page-container .classname_c01256")
 */
.pf_c01256 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01256 { /* 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_c01256.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01256 { /* 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_c01256 { /* 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_c01256 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01256 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01256 {overflow:visible;}
  }
}
.c_c01256 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01256 { /* 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_c01256:after { /* webkit #35443 */
  content: '';
}
.t_c01256:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01256 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 */
}
.__c01256 { /* 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_c01256 { /* info for Javascript */
  display:none;
}
.l_c01256 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01256 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01256 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01256: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_c01256 {
    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_c01256.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01256.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_c01256 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01256{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01256;src:url('chunks/assets/font_c605e72f209fc835e906f064.woff2')format("woff");}.ff1_c01256{font-family:ff1_c01256;line-height:1.000000;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;}
.ma1_c01256{transform:matrix(0.010945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.010945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.010945,0.000000,0.000000,0.250000,0,0);}
.m7e_c01256{transform:matrix(0.011860,0.000107,-0.002250,0.249990,0,0);-ms-transform:matrix(0.011860,0.000107,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.011860,0.000107,-0.002250,0.249990,0,0);}
.m9f_c01256{transform:matrix(0.046570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.046570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.046570,0.000000,0.000000,0.250000,0,0);}
.mb0_c01256{transform:matrix(0.097905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.097905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.097905,0.000000,0.000000,0.250000,0,0);}
.ma0_c01256{transform:matrix(0.105280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105280,0.000000,0.000000,0.250000,0,0);}
.m3b_c01256{transform:matrix(0.113375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113375,0.000000,0.000000,0.250000,0,0);}
.m2e_c01256{transform:matrix(0.121085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121085,0.000000,0.000000,0.250000,0,0);}
.m2f_c01256{transform:matrix(0.127500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127500,0.000000,0.000000,0.250000,0,0);}
.m6e_c01256{transform:matrix(0.128808,-0.000773,0.001500,0.249996,0,0);-ms-transform:matrix(0.128808,-0.000773,0.001500,0.249996,0,0);-webkit-transform:matrix(0.128808,-0.000773,0.001500,0.249996,0,0);}
.ma5_c01256{transform:matrix(0.134635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134635,0.000000,0.000000,0.250000,0,0);}
.m69_c01256{transform:matrix(0.135173,-0.000811,0.001500,0.249996,0,0);-ms-transform:matrix(0.135173,-0.000811,0.001500,0.249996,0,0);-webkit-transform:matrix(0.135173,-0.000811,0.001500,0.249996,0,0);}
.mb1_c01256{transform:matrix(0.148180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148180,0.000000,0.000000,0.250000,0,0);}
.m4a_c01256{transform:matrix(0.148583,0.000743,-0.001250,0.249997,0,0);-ms-transform:matrix(0.148583,0.000743,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.148583,0.000743,-0.001250,0.249997,0,0);}
.m66_c01256{transform:matrix(0.148642,-0.000892,0.001500,0.249996,0,0);-ms-transform:matrix(0.148642,-0.000892,0.001500,0.249996,0,0);-webkit-transform:matrix(0.148642,-0.000892,0.001500,0.249996,0,0);}
.ma7_c01256{transform:matrix(0.149775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149775,0.000000,0.000000,0.250000,0,0);}
.m71_c01256{transform:matrix(0.153879,0.001385,-0.002250,0.249990,0,0);-ms-transform:matrix(0.153879,0.001385,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.153879,0.001385,-0.002250,0.249990,0,0);}
.m1d_c01256{transform:matrix(0.153885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153885,0.000000,0.000000,0.250000,0,0);}
.mf_c01256{transform:matrix(0.154160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154160,0.000000,0.000000,0.250000,0,0);}
.m1e_c01256{transform:matrix(0.157375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157375,0.000000,0.000000,0.250000,0,0);}
.m2a_c01256{transform:matrix(0.163355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163355,0.000000,0.000000,0.250000,0,0);}
.m3a_c01256{transform:matrix(0.175370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175370,0.000000,0.000000,0.250000,0,0);}
.m6d_c01256{transform:matrix(0.177097,-0.001063,0.001500,0.249996,0,0);-ms-transform:matrix(0.177097,-0.001063,0.001500,0.249996,0,0);-webkit-transform:matrix(0.177097,-0.001063,0.001500,0.249996,0,0);}
.m49_c01256{transform:matrix(0.183360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183360,0.000000,0.000000,0.250000,0,0);}
.m34_c01256{transform:matrix(0.183375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183375,0.000000,0.000000,0.250000,0,0);}
.mcf_c01256{transform:matrix(0.187550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187550,0.000000,0.000000,0.250000,0,0);}
.m43_c01256{transform:matrix(0.188560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188560,0.000000,0.000000,0.250000,0,0);}
.m6f_c01256{transform:matrix(0.189742,-0.001138,0.001500,0.249996,0,0);-ms-transform:matrix(0.189742,-0.001138,0.001500,0.249996,0,0);-webkit-transform:matrix(0.189742,-0.001138,0.001500,0.249996,0,0);}
.m32_c01256{transform:matrix(0.190685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190685,0.000000,0.000000,0.250000,0,0);}
.ma3_c01256{transform:matrix(0.193130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193130,0.000000,0.000000,0.250000,0,0);}
.mc4_c01256{transform:matrix(0.193325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193325,0.000000,0.000000,0.250000,0,0);}
.m3e_c01256{transform:matrix(0.194740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194740,0.000000,0.000000,0.250000,0,0);}
.m3d_c01256{transform:matrix(0.194845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194845,0.000000,0.000000,0.250000,0,0);}
.m5e_c01256{transform:matrix(0.197571,-0.001185,0.001500,0.249996,0,0);-ms-transform:matrix(0.197571,-0.001185,0.001500,0.249996,0,0);-webkit-transform:matrix(0.197571,-0.001185,0.001500,0.249996,0,0);}
.m22_c01256{transform:matrix(0.200140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200140,0.000000,0.000000,0.250000,0,0);}
.m30_c01256{transform:matrix(0.201390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201390,0.000000,0.000000,0.250000,0,0);}
.mbd_c01256{transform:matrix(0.201555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201555,0.000000,0.000000,0.250000,0,0);}
.m37_c01256{transform:matrix(0.203660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203660,0.000000,0.000000,0.250000,0,0);}
.m12_c01256{transform:matrix(0.203855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203855,0.000000,0.000000,0.250000,0,0);}
.m40_c01256{transform:matrix(0.204275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204275,0.000000,0.000000,0.250000,0,0);}
.m42_c01256{transform:matrix(0.205160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205160,0.000000,0.000000,0.250000,0,0);}
.m7f_c01256{transform:matrix(0.205700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205700,0.000000,0.000000,0.250000,0,0);}
.m6b_c01256{transform:matrix(0.208091,-0.001249,0.001500,0.249996,0,0);-ms-transform:matrix(0.208091,-0.001249,0.001500,0.249996,0,0);-webkit-transform:matrix(0.208091,-0.001249,0.001500,0.249996,0,0);}
.m35_c01256{transform:matrix(0.208810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208810,0.000000,0.000000,0.250000,0,0);}
.m72_c01256{transform:matrix(0.210376,0.001893,-0.002250,0.249990,0,0);-ms-transform:matrix(0.210376,0.001893,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.210376,0.001893,-0.002250,0.249990,0,0);}
.m92_c01256{transform:matrix(0.210990,0.002532,-0.003000,0.249982,0,0);-ms-transform:matrix(0.210990,0.002532,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.210990,0.002532,-0.003000,0.249982,0,0);}
.m3f_c01256{transform:matrix(0.211975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211975,0.000000,0.000000,0.250000,0,0);}
.m10_c01256{transform:matrix(0.212160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212160,0.000000,0.000000,0.250000,0,0);}
.mb5_c01256{transform:matrix(0.213175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213175,0.000000,0.000000,0.250000,0,0);}
.m5f_c01256{transform:matrix(0.213241,-0.001279,0.001500,0.249996,0,0);-ms-transform:matrix(0.213241,-0.001279,0.001500,0.249996,0,0);-webkit-transform:matrix(0.213241,-0.001279,0.001500,0.249996,0,0);}
.m36_c01256{transform:matrix(0.214470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214470,0.000000,0.000000,0.250000,0,0);}
.m4b_c01256{transform:matrix(0.214487,0.001072,-0.001250,0.249997,0,0);-ms-transform:matrix(0.214487,0.001072,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.214487,0.001072,-0.001250,0.249997,0,0);}
.mdb_c01256{transform:matrix(0.214708,-0.004938,0.005748,0.249934,0,0);-ms-transform:matrix(0.214708,-0.004938,0.005748,0.249934,0,0);-webkit-transform:matrix(0.214708,-0.004938,0.005748,0.249934,0,0);}
.m62_c01256{transform:matrix(0.214756,-0.001289,0.001500,0.249996,0,0);-ms-transform:matrix(0.214756,-0.001289,0.001500,0.249996,0,0);-webkit-transform:matrix(0.214756,-0.001289,0.001500,0.249996,0,0);}
.mba_c01256{transform:matrix(0.215755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215755,0.000000,0.000000,0.250000,0,0);}
.m86_c01256{transform:matrix(0.215785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215785,0.000000,0.000000,0.250000,0,0);}
.m47_c01256{transform:matrix(0.216215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216215,0.000000,0.000000,0.250000,0,0);}
.me5_c01256{transform:matrix(0.217641,0.005659,-0.006498,0.249916,0,0);-ms-transform:matrix(0.217641,0.005659,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.217641,0.005659,-0.006498,0.249916,0,0);}
.m41_c01256{transform:matrix(0.217685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217685,0.000000,0.000000,0.250000,0,0);}
.mc9_c01256{transform:matrix(0.219315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219315,0.000000,0.000000,0.250000,0,0);}
.m6_c01256{transform:matrix(0.219660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219660,0.000000,0.000000,0.250000,0,0);}
.m9e_c01256{transform:matrix(0.220110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220110,0.000000,0.000000,0.250000,0,0);}
.mb7_c01256{transform:matrix(0.220190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220190,0.000000,0.000000,0.250000,0,0);}
.m60_c01256{transform:matrix(0.220211,-0.001321,0.001500,0.249996,0,0);-ms-transform:matrix(0.220211,-0.001321,0.001500,0.249996,0,0);-webkit-transform:matrix(0.220211,-0.001321,0.001500,0.249996,0,0);}
.m33_c01256{transform:matrix(0.220705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220705,0.000000,0.000000,0.250000,0,0);}
.mb3_c01256{transform:matrix(0.220900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220900,0.000000,0.000000,0.250000,0,0);}
.m44_c01256{transform:matrix(0.221535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221535,0.000000,0.000000,0.250000,0,0);}
.me6_c01256{transform:matrix(0.222865,0.005794,-0.006498,0.249916,0,0);-ms-transform:matrix(0.222865,0.005794,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.222865,0.005794,-0.006498,0.249916,0,0);}
.m39_c01256{transform:matrix(0.223145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223145,0.000000,0.000000,0.250000,0,0);}
.m70_c01256{transform:matrix(0.223851,-0.001343,0.001500,0.249996,0,0);-ms-transform:matrix(0.223851,-0.001343,0.001500,0.249996,0,0);-webkit-transform:matrix(0.223851,-0.001343,0.001500,0.249996,0,0);}
.mc7_c01256{transform:matrix(0.223885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223885,0.000000,0.000000,0.250000,0,0);}
.ma4_c01256{transform:matrix(0.223950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223950,0.000000,0.000000,0.250000,0,0);}
.mad_c01256{transform:matrix(0.224045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224045,0.000000,0.000000,0.250000,0,0);}
.m31_c01256{transform:matrix(0.225140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225140,0.000000,0.000000,0.250000,0,0);}
.ma8_c01256{transform:matrix(0.225660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225660,0.000000,0.000000,0.250000,0,0);}
.mc0_c01256{transform:matrix(0.226680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226680,0.000000,0.000000,0.250000,0,0);}
.mdd_c01256{transform:matrix(0.226780,-0.005216,0.005748,0.249934,0,0);-ms-transform:matrix(0.226780,-0.005216,0.005748,0.249934,0,0);-webkit-transform:matrix(0.226780,-0.005216,0.005748,0.249934,0,0);}
.mc5_c01256{transform:matrix(0.229155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229155,0.000000,0.000000,0.250000,0,0);}
.mde_c01256{transform:matrix(0.230509,-0.005302,0.005748,0.249934,0,0);-ms-transform:matrix(0.230509,-0.005302,0.005748,0.249934,0,0);-webkit-transform:matrix(0.230509,-0.005302,0.005748,0.249934,0,0);}
.m2b_c01256{transform:matrix(0.230680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230680,0.000000,0.000000,0.250000,0,0);}
.ma9_c01256{transform:matrix(0.231220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231220,0.000000,0.000000,0.250000,0,0);}
.mce_c01256{transform:matrix(0.232495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232495,0.000000,0.000000,0.250000,0,0);}
.m7a_c01256{transform:matrix(0.233726,0.002104,-0.002250,0.249990,0,0);-ms-transform:matrix(0.233726,0.002104,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.233726,0.002104,-0.002250,0.249990,0,0);}
.md7_c01256{transform:matrix(0.233800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233800,0.000000,0.000000,0.250000,0,0);}
.me0_c01256{transform:matrix(0.234103,-0.005384,0.005748,0.249934,0,0);-ms-transform:matrix(0.234103,-0.005384,0.005748,0.249934,0,0);-webkit-transform:matrix(0.234103,-0.005384,0.005748,0.249934,0,0);}
.ma6_c01256{transform:matrix(0.234230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234230,0.000000,0.000000,0.250000,0,0);}
.m65_c01256{transform:matrix(0.234511,-0.001407,0.001500,0.249996,0,0);-ms-transform:matrix(0.234511,-0.001407,0.001500,0.249996,0,0);-webkit-transform:matrix(0.234511,-0.001407,0.001500,0.249996,0,0);}
.md4_c01256{transform:matrix(0.234780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234780,0.000000,0.000000,0.250000,0,0);}
.mc3_c01256{transform:matrix(0.235800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235800,0.000000,0.000000,0.250000,0,0);}
.m8c_c01256{transform:matrix(0.236010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236010,0.000000,0.000000,0.250000,0,0);}
.m4e_c01256{transform:matrix(0.236107,0.001181,-0.001250,0.249997,0,0);-ms-transform:matrix(0.236107,0.001181,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.236107,0.001181,-0.001250,0.249997,0,0);}
.m9d_c01256{transform:matrix(0.236200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236200,0.000000,0.000000,0.250000,0,0);}
.maa_c01256{transform:matrix(0.236905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236905,0.000000,0.000000,0.250000,0,0);}
.maf_c01256{transform:matrix(0.237085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237085,0.000000,0.000000,0.250000,0,0);}
.m0_c01256{transform:matrix(0.237095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237095,0.000000,0.000000,0.250000,0,0);}
.mcc_c01256{transform:matrix(0.238220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238220,0.000000,0.000000,0.250000,0,0);}
.m20_c01256{transform:matrix(0.238570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238570,0.000000,0.000000,0.250000,0,0);}
.mac_c01256{transform:matrix(0.238670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238670,0.000000,0.000000,0.250000,0,0);}
.mae_c01256{transform:matrix(0.238820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238820,0.000000,0.000000,0.250000,0,0);}
.m18_c01256{transform:matrix(0.239295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239295,0.000000,0.000000,0.250000,0,0);}
.m61_c01256{transform:matrix(0.239831,-0.001439,0.001500,0.249996,0,0);-ms-transform:matrix(0.239831,-0.001439,0.001500,0.249996,0,0);-webkit-transform:matrix(0.239831,-0.001439,0.001500,0.249996,0,0);}
.m5d_c01256{transform:matrix(0.239886,-0.001439,0.001500,0.249996,0,0);-ms-transform:matrix(0.239886,-0.001439,0.001500,0.249996,0,0);-webkit-transform:matrix(0.239886,-0.001439,0.001500,0.249996,0,0);}
.m67_c01256{transform:matrix(0.240041,-0.001440,0.001500,0.249996,0,0);-ms-transform:matrix(0.240041,-0.001440,0.001500,0.249996,0,0);-webkit-transform:matrix(0.240041,-0.001440,0.001500,0.249996,0,0);}
.mb8_c01256{transform:matrix(0.240960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240960,0.000000,0.000000,0.250000,0,0);}
.m55_c01256{transform:matrix(0.241062,0.001205,-0.001250,0.249997,0,0);-ms-transform:matrix(0.241062,0.001205,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.241062,0.001205,-0.001250,0.249997,0,0);}
.m74_c01256{transform:matrix(0.242005,0.002178,-0.002250,0.249990,0,0);-ms-transform:matrix(0.242005,0.002178,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.242005,0.002178,-0.002250,0.249990,0,0);}
.mb4_c01256{transform:matrix(0.242595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242595,0.000000,0.000000,0.250000,0,0);}
.m3_c01256{transform:matrix(0.242790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242790,0.000000,0.000000,0.250000,0,0);}
.m19_c01256{transform:matrix(0.243120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243120,0.000000,0.000000,0.250000,0,0);}
.m73_c01256{transform:matrix(0.243540,0.002192,-0.002250,0.249990,0,0);-ms-transform:matrix(0.243540,0.002192,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.243540,0.002192,-0.002250,0.249990,0,0);}
.m6a_c01256{transform:matrix(0.245546,-0.001473,0.001500,0.249996,0,0);-ms-transform:matrix(0.245546,-0.001473,0.001500,0.249996,0,0);-webkit-transform:matrix(0.245546,-0.001473,0.001500,0.249996,0,0);}
.m3c_c01256{transform:matrix(0.246445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246445,0.000000,0.000000,0.250000,0,0);}
.m59_c01256{transform:matrix(0.246962,0.001235,-0.001250,0.249997,0,0);-ms-transform:matrix(0.246962,0.001235,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.246962,0.001235,-0.001250,0.249997,0,0);}
.m46_c01256{transform:matrix(0.247025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247025,0.000000,0.000000,0.250000,0,0);}
.md0_c01256{transform:matrix(0.248930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248930,0.000000,0.000000,0.250000,0,0);}
.mcd_c01256{transform:matrix(0.249145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249145,0.000000,0.000000,0.250000,0,0);}
.m63_c01256{transform:matrix(0.250390,-0.001502,0.001500,0.249996,0,0);-ms-transform:matrix(0.250390,-0.001502,0.001500,0.249996,0,0);-webkit-transform:matrix(0.250390,-0.001502,0.001500,0.249996,0,0);}
.mdf_c01256{transform:matrix(0.250789,-0.005768,0.005748,0.249934,0,0);-ms-transform:matrix(0.250789,-0.005768,0.005748,0.249934,0,0);-webkit-transform:matrix(0.250789,-0.005768,0.005748,0.249934,0,0);}
.m64_c01256{transform:matrix(0.250980,-0.001506,0.001500,0.249996,0,0);-ms-transform:matrix(0.250980,-0.001506,0.001500,0.249996,0,0);-webkit-transform:matrix(0.250980,-0.001506,0.001500,0.249996,0,0);}
.mca_c01256{transform:matrix(0.251030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251030,0.000000,0.000000,0.250000,0,0);}
.mb2_c01256{transform:matrix(0.251635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251635,0.000000,0.000000,0.250000,0,0);}
.mb6_c01256{transform:matrix(0.251715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251715,0.000000,0.000000,0.250000,0,0);}
.md5_c01256{transform:matrix(0.252405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252405,0.000000,0.000000,0.250000,0,0);}
.md2_c01256{transform:matrix(0.252785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252785,0.000000,0.000000,0.250000,0,0);}
.mc8_c01256{transform:matrix(0.253050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253050,0.000000,0.000000,0.250000,0,0);}
.mbb_c01256{transform:matrix(0.253405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253405,0.000000,0.000000,0.250000,0,0);}
.mc6_c01256{transform:matrix(0.253415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253415,0.000000,0.000000,0.250000,0,0);}
.m57_c01256{transform:matrix(0.253532,0.001268,-0.001250,0.249997,0,0);-ms-transform:matrix(0.253532,0.001268,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.253532,0.001268,-0.001250,0.249997,0,0);}
.mb9_c01256{transform:matrix(0.253640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253640,0.000000,0.000000,0.250000,0,0);}
.m85_c01256{transform:matrix(0.254570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254570,0.000000,0.000000,0.250000,0,0);}
.me1_c01256{transform:matrix(0.255595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255595,0.000000,0.000000,0.250000,0,0);}
.m6c_c01256{transform:matrix(0.256780,-0.001541,0.001500,0.249996,0,0);-ms-transform:matrix(0.256780,-0.001541,0.001500,0.249996,0,0);-webkit-transform:matrix(0.256780,-0.001541,0.001500,0.249996,0,0);}
.m4_c01256{transform:matrix(0.257320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257320,0.000000,0.000000,0.250000,0,0);}
.me3_c01256{transform:matrix(0.257853,0.006704,-0.006498,0.249916,0,0);-ms-transform:matrix(0.257853,0.006704,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.257853,0.006704,-0.006498,0.249916,0,0);}
.m5_c01256{transform:matrix(0.257915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257915,0.000000,0.000000,0.250000,0,0);}
.m16_c01256{transform:matrix(0.258070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258070,0.000000,0.000000,0.250000,0,0);}
.m38_c01256{transform:matrix(0.258820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258820,0.000000,0.000000,0.250000,0,0);}
.m5a_c01256{transform:matrix(0.260017,0.001300,-0.001250,0.249997,0,0);-ms-transform:matrix(0.260017,0.001300,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.260017,0.001300,-0.001250,0.249997,0,0);}
.mda_c01256{transform:matrix(0.260121,-0.005983,0.005748,0.249934,0,0);-ms-transform:matrix(0.260121,-0.005983,0.005748,0.249934,0,0);-webkit-transform:matrix(0.260121,-0.005983,0.005748,0.249934,0,0);}
.mbc_c01256{transform:matrix(0.260190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260190,0.000000,0.000000,0.250000,0,0);}
.mcb_c01256{transform:matrix(0.260415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260415,0.000000,0.000000,0.250000,0,0);}
.m25_c01256{transform:matrix(0.261050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261050,0.000000,0.000000,0.250000,0,0);}
.m7c_c01256{transform:matrix(0.261234,0.002351,-0.002250,0.249990,0,0);-ms-transform:matrix(0.261234,0.002351,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.261234,0.002351,-0.002250,0.249990,0,0);}
.mc1_c01256{transform:matrix(0.261385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261385,0.000000,0.000000,0.250000,0,0);}
.m80_c01256{transform:matrix(0.261845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261845,0.000000,0.000000,0.250000,0,0);}
.m4d_c01256{transform:matrix(0.262572,0.001313,-0.001250,0.249997,0,0);-ms-transform:matrix(0.262572,0.001313,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.262572,0.001313,-0.001250,0.249997,0,0);}
.md3_c01256{transform:matrix(0.262625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262625,0.000000,0.000000,0.250000,0,0);}
.m97_c01256{transform:matrix(0.262706,0.003152,-0.003000,0.249982,0,0);-ms-transform:matrix(0.262706,0.003152,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.262706,0.003152,-0.003000,0.249982,0,0);}
.m78_c01256{transform:matrix(0.263289,0.002370,-0.002250,0.249990,0,0);-ms-transform:matrix(0.263289,0.002370,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.263289,0.002370,-0.002250,0.249990,0,0);}
.m7b_c01256{transform:matrix(0.263479,0.002371,-0.002250,0.249990,0,0);-ms-transform:matrix(0.263479,0.002371,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.263479,0.002371,-0.002250,0.249990,0,0);}
.mdc_c01256{transform:matrix(0.263690,-0.006065,0.005748,0.249934,0,0);-ms-transform:matrix(0.263690,-0.006065,0.005748,0.249934,0,0);-webkit-transform:matrix(0.263690,-0.006065,0.005748,0.249934,0,0);}
.m21_c01256{transform:matrix(0.263885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263885,0.000000,0.000000,0.250000,0,0);}
.me4_c01256{transform:matrix(0.264731,0.006883,-0.006498,0.249916,0,0);-ms-transform:matrix(0.264731,0.006883,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.264731,0.006883,-0.006498,0.249916,0,0);}
.m48_c01256{transform:matrix(0.266235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266235,0.000000,0.000000,0.250000,0,0);}
.me7_c01256{transform:matrix(0.267030,0.006943,-0.006498,0.249916,0,0);-ms-transform:matrix(0.267030,0.006943,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.267030,0.006943,-0.006498,0.249916,0,0);}
.me2_c01256{transform:matrix(0.267045,0.006943,-0.006498,0.249916,0,0);-ms-transform:matrix(0.267045,0.006943,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.267045,0.006943,-0.006498,0.249916,0,0);}
.m95_c01256{transform:matrix(0.267676,0.003212,-0.003000,0.249982,0,0);-ms-transform:matrix(0.267676,0.003212,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.267676,0.003212,-0.003000,0.249982,0,0);}
.m13_c01256{transform:matrix(0.268015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268015,0.000000,0.000000,0.250000,0,0);}
.m79_c01256{transform:matrix(0.268799,0.002419,-0.002250,0.249990,0,0);-ms-transform:matrix(0.268799,0.002419,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.268799,0.002419,-0.002250,0.249990,0,0);}
.m1f_c01256{transform:matrix(0.269315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269315,0.000000,0.000000,0.250000,0,0);}
.mbe_c01256{transform:matrix(0.269900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269900,0.000000,0.000000,0.250000,0,0);}
.m4f_c01256{transform:matrix(0.270127,0.001351,-0.001250,0.249997,0,0);-ms-transform:matrix(0.270127,0.001351,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.270127,0.001351,-0.001250,0.249997,0,0);}
.m14_c01256{transform:matrix(0.270165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270165,0.000000,0.000000,0.250000,0,0);}
.md6_c01256{transform:matrix(0.272925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272925,0.000000,0.000000,0.250000,0,0);}
.m7d_c01256{transform:matrix(0.273074,0.002458,-0.002250,0.249990,0,0);-ms-transform:matrix(0.273074,0.002458,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.273074,0.002458,-0.002250,0.249990,0,0);}
.m50_c01256{transform:matrix(0.273277,0.001366,-0.001250,0.249997,0,0);-ms-transform:matrix(0.273277,0.001366,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.273277,0.001366,-0.001250,0.249997,0,0);}
.m26_c01256{transform:matrix(0.273590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273590,0.000000,0.000000,0.250000,0,0);}
.mbf_c01256{transform:matrix(0.273760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273760,0.000000,0.000000,0.250000,0,0);}
.m17_c01256{transform:matrix(0.274425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274425,0.000000,0.000000,0.250000,0,0);}
.m76_c01256{transform:matrix(0.274514,0.002471,-0.002250,0.249990,0,0);-ms-transform:matrix(0.274514,0.002471,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.274514,0.002471,-0.002250,0.249990,0,0);}
.m51_c01256{transform:matrix(0.274517,0.001373,-0.001250,0.249997,0,0);-ms-transform:matrix(0.274517,0.001373,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.274517,0.001373,-0.001250,0.249997,0,0);}
.m15_c01256{transform:matrix(0.275240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275240,0.000000,0.000000,0.250000,0,0);}
.mc2_c01256{transform:matrix(0.275355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275355,0.000000,0.000000,0.250000,0,0);}
.md8_c01256{transform:matrix(0.276100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276100,0.000000,0.000000,0.250000,0,0);}
.m11_c01256{transform:matrix(0.276680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276680,0.000000,0.000000,0.250000,0,0);}
.m7_c01256{transform:matrix(0.276685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276685,0.000000,0.000000,0.250000,0,0);}
.m4c_c01256{transform:matrix(0.277317,0.001387,-0.001250,0.249997,0,0);-ms-transform:matrix(0.277317,0.001387,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.277317,0.001387,-0.001250,0.249997,0,0);}
.m1a_c01256{transform:matrix(0.278225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278225,0.000000,0.000000,0.250000,0,0);}
.m2c_c01256{transform:matrix(0.278885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278885,0.000000,0.000000,0.250000,0,0);}
.m53_c01256{transform:matrix(0.279197,0.001396,-0.001250,0.249997,0,0);-ms-transform:matrix(0.279197,0.001396,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.279197,0.001396,-0.001250,0.249997,0,0);}
.m83_c01256{transform:matrix(0.281595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281595,0.000000,0.000000,0.250000,0,0);}
.m75_c01256{transform:matrix(0.281794,0.002536,-0.002250,0.249990,0,0);-ms-transform:matrix(0.281794,0.002536,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.281794,0.002536,-0.002250,0.249990,0,0);}
.m2_c01256{transform:matrix(0.282160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282160,0.000000,0.000000,0.250000,0,0);}
.m77_c01256{transform:matrix(0.282654,0.002544,-0.002250,0.249990,0,0);-ms-transform:matrix(0.282654,0.002544,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.282654,0.002544,-0.002250,0.249990,0,0);}
.m52_c01256{transform:matrix(0.285046,0.001425,-0.001250,0.249997,0,0);-ms-transform:matrix(0.285046,0.001425,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.285046,0.001425,-0.001250,0.249997,0,0);}
.m81_c01256{transform:matrix(0.285810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285810,0.000000,0.000000,0.250000,0,0);}
.m84_c01256{transform:matrix(0.286125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286125,0.000000,0.000000,0.250000,0,0);}
.m58_c01256{transform:matrix(0.286411,0.001432,-0.001250,0.249997,0,0);-ms-transform:matrix(0.286411,0.001432,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.286411,0.001432,-0.001250,0.249997,0,0);}
.m54_c01256{transform:matrix(0.286896,0.001434,-0.001250,0.249997,0,0);-ms-transform:matrix(0.286896,0.001434,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.286896,0.001434,-0.001250,0.249997,0,0);}
.m9c_c01256{transform:matrix(0.288274,0.003459,-0.003000,0.249982,0,0);-ms-transform:matrix(0.288274,0.003459,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.288274,0.003459,-0.003000,0.249982,0,0);}
.m24_c01256{transform:matrix(0.289205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289205,0.000000,0.000000,0.250000,0,0);}
.md_c01256{transform:matrix(0.291290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291290,0.000000,0.000000,0.250000,0,0);}
.m56_c01256{transform:matrix(0.292031,0.001460,-0.001250,0.249997,0,0);-ms-transform:matrix(0.292031,0.001460,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.292031,0.001460,-0.001250,0.249997,0,0);}
.m82_c01256{transform:matrix(0.293325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293325,0.000000,0.000000,0.250000,0,0);}
.md1_c01256{transform:matrix(0.294535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294535,0.000000,0.000000,0.250000,0,0);}
.m94_c01256{transform:matrix(0.297839,0.003574,-0.003000,0.249982,0,0);-ms-transform:matrix(0.297839,0.003574,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.297839,0.003574,-0.003000,0.249982,0,0);}
.m99_c01256{transform:matrix(0.298998,0.003588,-0.003000,0.249982,0,0);-ms-transform:matrix(0.298998,0.003588,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.298998,0.003588,-0.003000,0.249982,0,0);}
.m1_c01256{transform:matrix(0.299560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299560,0.000000,0.000000,0.250000,0,0);}
.m28_c01256{transform:matrix(0.299645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299645,0.000000,0.000000,0.250000,0,0);}
.me8_c01256{transform:matrix(0.300488,0.007813,-0.006498,0.249916,0,0);-ms-transform:matrix(0.300488,0.007813,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.300488,0.007813,-0.006498,0.249916,0,0);}
.m27_c01256{transform:matrix(0.303115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303115,0.000000,0.000000,0.250000,0,0);}
.ma2_c01256{transform:matrix(0.303670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303670,0.000000,0.000000,0.250000,0,0);}
.m96_c01256{transform:matrix(0.303878,0.003647,-0.003000,0.249982,0,0);-ms-transform:matrix(0.303878,0.003647,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.303878,0.003647,-0.003000,0.249982,0,0);}
.m29_c01256{transform:matrix(0.304245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304245,0.000000,0.000000,0.250000,0,0);}
.m68_c01256{transform:matrix(0.305435,-0.001833,0.001500,0.249996,0,0);-ms-transform:matrix(0.305435,-0.001833,0.001500,0.249996,0,0);-webkit-transform:matrix(0.305435,-0.001833,0.001500,0.249996,0,0);}
.me9_c01256{transform:matrix(0.307026,0.007983,-0.006498,0.249916,0,0);-ms-transform:matrix(0.307026,0.007983,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.307026,0.007983,-0.006498,0.249916,0,0);}
.m5c_c01256{transform:matrix(0.307961,0.001540,-0.001250,0.249997,0,0);-ms-transform:matrix(0.307961,0.001540,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.307961,0.001540,-0.001250,0.249997,0,0);}
.m5b_c01256{transform:matrix(0.311701,0.001559,-0.001250,0.249997,0,0);-ms-transform:matrix(0.311701,0.001559,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.311701,0.001559,-0.001250,0.249997,0,0);}
.m9_c01256{transform:matrix(0.312510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312510,0.000000,0.000000,0.250000,0,0);}
.m9a_c01256{transform:matrix(0.313162,0.003758,-0.003000,0.249982,0,0);-ms-transform:matrix(0.313162,0.003758,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.313162,0.003758,-0.003000,0.249982,0,0);}
.mc_c01256{transform:matrix(0.314465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314465,0.000000,0.000000,0.250000,0,0);}
.mb_c01256{transform:matrix(0.316565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316565,0.000000,0.000000,0.250000,0,0);}
.m98_c01256{transform:matrix(0.317022,0.003804,-0.003000,0.249982,0,0);-ms-transform:matrix(0.317022,0.003804,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.317022,0.003804,-0.003000,0.249982,0,0);}
.m2d_c01256{transform:matrix(0.319235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319235,0.000000,0.000000,0.250000,0,0);}
.m8_c01256{transform:matrix(0.320415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320415,0.000000,0.000000,0.250000,0,0);}
.mab_c01256{transform:matrix(0.328880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328880,0.000000,0.000000,0.250000,0,0);}
.me_c01256{transform:matrix(0.336245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336245,0.000000,0.000000,0.250000,0,0);}
.m93_c01256{transform:matrix(0.341855,0.004102,-0.003000,0.249982,0,0);-ms-transform:matrix(0.341855,0.004102,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.341855,0.004102,-0.003000,0.249982,0,0);}
.m1c_c01256{transform:matrix(0.343855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343855,0.000000,0.000000,0.250000,0,0);}
.m87_c01256{transform:matrix(0.347385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347385,0.000000,0.000000,0.250000,0,0);}
.m8f_c01256{transform:matrix(0.357635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357635,0.000000,0.000000,0.250000,0,0);}
.ma_c01256{transform:matrix(0.358945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358945,0.000000,0.000000,0.250000,0,0);}
.m8b_c01256{transform:matrix(0.359415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359415,0.000000,0.000000,0.250000,0,0);}
.m90_c01256{transform:matrix(0.360740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360740,0.000000,0.000000,0.250000,0,0);}
.m91_c01256{transform:matrix(0.375535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375535,0.000000,0.000000,0.250000,0,0);}
.m88_c01256{transform:matrix(0.381635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381635,0.000000,0.000000,0.250000,0,0);}
.m89_c01256{transform:matrix(0.398400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398400,0.000000,0.000000,0.250000,0,0);}
.m8a_c01256{transform:matrix(0.404550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404550,0.000000,0.000000,0.250000,0,0);}
.m8e_c01256{transform:matrix(0.419810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419810,0.000000,0.000000,0.250000,0,0);}
.mea_c01256{transform:matrix(0.442880,0.011515,-0.006498,0.249916,0,0);-ms-transform:matrix(0.442880,0.011515,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.442880,0.011515,-0.006498,0.249916,0,0);}
.m9b_c01256{transform:matrix(0.493239,0.005919,-0.003000,0.249982,0,0);-ms-transform:matrix(0.493239,0.005919,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.493239,0.005919,-0.003000,0.249982,0,0);}
.m23_c01256{transform:matrix(0.508410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508410,0.000000,0.000000,0.250000,0,0);}
.m1b_c01256{transform:matrix(0.639530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.639530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.639530,0.000000,0.000000,0.250000,0,0);}
.m45_c01256{transform:matrix(0.697180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697180,0.000000,0.000000,0.250000,0,0);}
.m8d_c01256{transform:matrix(0.814240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.814240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.814240,0.000000,0.000000,0.250000,0,0);}
.md9_c01256{transform:matrix(4.909572,-0.112920,0.005748,0.249934,0,0);-ms-transform:matrix(4.909572,-0.112920,0.005748,0.249934,0,0);-webkit-transform:matrix(4.909572,-0.112920,0.005748,0.249934,0,0);}
.v0_c01256{vertical-align:0.000000px;}
.ls0_c01256{letter-spacing:0.000000px;}
.sc__c01256{text-shadow:none;}
.sc0_c01256{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__c01256{-webkit-text-stroke:0px transparent;}
.sc0_c01256{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01256{word-spacing:0.000000px;}
.fc0_c01256{color:transparent;}
.fs11_c01256{font-size:24.006347px;}
.fsf_c01256{font-size:36.000000px;}
.fs1_c01256{font-size:54.000000px;}
.fs4_c01256{font-size:60.000000px;}
.fs3_c01256{font-size:66.000000px;}
.fsa_c01256{font-size:66.000825px;}
.fse_c01256{font-size:66.004752px;}
.fs13_c01256{font-size:66.022304px;}
.fs2_c01256{font-size:72.000000px;}
.fs9_c01256{font-size:72.000900px;}
.fsd_c01256{font-size:72.002916px;}
.fs12_c01256{font-size:72.019041px;}
.fs0_c01256{font-size:78.000000px;}
.fsb_c01256{font-size:78.001404px;}
.fs10_c01256{font-size:84.000000px;}
.fs5_c01256{font-size:90.000000px;}
.fsc_c01256{font-size:90.001620px;}
.fs7_c01256{font-size:96.000000px;}
.fs6_c01256{font-size:102.000000px;}
.fs8_c01256{font-size:108.000000px;}
.y0_c01256{bottom:0.000000px;}
.y76_c01256{bottom:105.172500px;}
.y7f_c01256{bottom:127.106160px;}
.y7e_c01256{bottom:129.327015px;}
.y7d_c01256{bottom:131.349009px;}
.y7c_c01256{bottom:132.226938px;}
.y7b_c01256{bottom:133.596462px;}
.y7a_c01256{bottom:135.098781px;}
.y6f_c01256{bottom:135.270481px;}
.y79_c01256{bottom:136.237113px;}
.y70_c01256{bottom:137.015197px;}
.y78_c01256{bottom:137.107476px;}
.y71_c01256{bottom:137.958547px;}
.y77_c01256{bottom:138.516000px;}
.y72_c01256{bottom:140.010256px;}
.y73_c01256{bottom:141.032049px;}
.y74_c01256{bottom:143.408671px;}
.y75_c01256{bottom:145.489615px;}
.y6e_c01256{bottom:177.933000px;}
.y6d_c01256{bottom:193.686000px;}
.y6c_c01256{bottom:223.854000px;}
.y6b_c01256{bottom:224.430000px;}
.y6a_c01256{bottom:226.143000px;}
.y69_c01256{bottom:227.736000px;}
.y68_c01256{bottom:228.307500px;}
.y67_c01256{bottom:229.588500px;}
.y66_c01256{bottom:230.283000px;}
.y65_c01256{bottom:230.851500px;}
.y64_c01256{bottom:256.323000px;}
.y63_c01256{bottom:297.789000px;}
.y62_c01256{bottom:298.171500px;}
.y61_c01256{bottom:298.629000px;}
.y60_c01256{bottom:299.484000px;}
.y5f_c01256{bottom:300.175500px;}
.y5e_c01256{bottom:300.382500px;}
.y5d_c01256{bottom:300.780000px;}
.y5c_c01256{bottom:330.225000px;}
.y5b_c01256{bottom:330.453000px;}
.y5a_c01256{bottom:330.993000px;}
.y59_c01256{bottom:331.456500px;}
.y58_c01256{bottom:331.693500px;}
.y57_c01256{bottom:332.305500px;}
.y56_c01256{bottom:332.619000px;}
.y55_c01256{bottom:333.009000px;}
.y54_c01256{bottom:333.316500px;}
.y53_c01256{bottom:334.005000px;}
.y52_c01256{bottom:334.218000px;}
.y51_c01256{bottom:334.530000px;}
.y50_c01256{bottom:363.150000px;}
.y4f_c01256{bottom:386.910000px;}
.y4e_c01256{bottom:405.268500px;}
.y4d_c01256{bottom:434.074398px;}
.y4c_c01256{bottom:434.476680px;}
.y4b_c01256{bottom:435.954552px;}
.y4a_c01256{bottom:436.861806px;}
.y49_c01256{bottom:438.327924px;}
.y48_c01256{bottom:438.867258px;}
.y47_c01256{bottom:440.312352px;}
.y46_c01256{bottom:440.567826px;}
.y45_c01256{bottom:441.627306px;}
.y44_c01256{bottom:441.995622px;}
.y43_c01256{bottom:442.545000px;}
.y42_c01256{bottom:503.688000px;}
.y41_c01256{bottom:508.332000px;}
.y40_c01256{bottom:541.421607px;}
.y3f_c01256{bottom:545.129970px;}
.y3e_c01256{bottom:545.667952px;}
.y3d_c01256{bottom:577.302889px;}
.y3c_c01256{bottom:577.602050px;}
.y3b_c01256{bottom:578.296867px;}
.y3a_c01256{bottom:578.498612px;}
.y39_c01256{bottom:579.684708px;}
.y38_c01256{bottom:580.787928px;}
.y37_c01256{bottom:582.178010px;}
.y36_c01256{bottom:582.372045px;}
.y35_c01256{bottom:583.079324px;}
.y34_c01256{bottom:583.341143px;}
.y33_c01256{bottom:583.740000px;}
.y32_c01256{bottom:614.462346px;}
.y2f_c01256{bottom:614.462424px;}
.y31_c01256{bottom:614.462826px;}
.y30_c01256{bottom:614.463135px;}
.y2e_c01256{bottom:614.463153px;}
.y20_c01256{bottom:647.190000px;}
.y21_c01256{bottom:647.528319px;}
.y22_c01256{bottom:647.708391px;}
.y23_c01256{bottom:648.173358px;}
.y24_c01256{bottom:648.439029px;}
.y25_c01256{bottom:648.834291px;}
.y26_c01256{bottom:649.103202px;}
.y27_c01256{bottom:649.691235px;}
.y28_c01256{bottom:649.964988px;}
.y29_c01256{bottom:650.426571px;}
.y2a_c01256{bottom:650.619405px;}
.y2b_c01256{bottom:650.954871px;}
.y2c_c01256{bottom:651.090654px;}
.y2d_c01256{bottom:651.412998px;}
.y1a_c01256{bottom:684.761917px;}
.y1f_c01256{bottom:684.761940px;}
.y1e_c01256{bottom:684.762233px;}
.y1b_c01256{bottom:684.762525px;}
.y1d_c01256{bottom:684.762533px;}
.y19_c01256{bottom:684.762668px;}
.y18_c01256{bottom:684.762817px;}
.y1c_c01256{bottom:684.762825px;}
.y17_c01256{bottom:717.820740px;}
.y16_c01256{bottom:718.432313px;}
.y15_c01256{bottom:718.606463px;}
.y14_c01256{bottom:718.925160px;}
.y13_c01256{bottom:719.362485px;}
.y12_c01256{bottom:719.596043px;}
.y11_c01256{bottom:719.918723px;}
.y10_c01256{bottom:720.528847px;}
.yf_c01256{bottom:720.679860px;}
.ye_c01256{bottom:720.900000px;}
.yd_c01256{bottom:756.828000px;}
.yc_c01256{bottom:784.398000px;}
.yb_c01256{bottom:827.289000px;}
.ya_c01256{bottom:862.920000px;}
.y9_c01256{bottom:892.864500px;}
.y8_c01256{bottom:930.628500px;}
.y7_c01256{bottom:968.614500px;}
.y6_c01256{bottom:1001.031000px;}
.y5_c01256{bottom:1003.053000px;}
.y4_c01256{bottom:1037.755500px;}
.y3_c01256{bottom:1069.011000px;}
.y2_c01256{bottom:1106.190000px;}
.y1_c01256{bottom:1140.750000px;}
.h13_c01256{height:24.006347px;}
.h11_c01256{height:36.000000px;}
.h3_c01256{height:54.000000px;}
.h6_c01256{height:60.000000px;}
.h5_c01256{height:66.000000px;}
.hc_c01256{height:66.000825px;}
.h10_c01256{height:66.004752px;}
.h15_c01256{height:66.022304px;}
.h4_c01256{height:72.000000px;}
.hb_c01256{height:72.000900px;}
.hf_c01256{height:72.002916px;}
.h14_c01256{height:72.019041px;}
.h2_c01256{height:78.000000px;}
.hd_c01256{height:78.001404px;}
.h12_c01256{height:84.000000px;}
.h7_c01256{height:90.000000px;}
.he_c01256{height:90.001620px;}
.h9_c01256{height:96.000000px;}
.h8_c01256{height:102.000000px;}
.ha_c01256{height:108.000000px;}
.h1_c01256{height:1258.500000px;}
.h0_c01256{height:1258.740000px;}
.w1_c01256{width:888.750000px;}
.w0_c01256{width:889.050000px;}
.x0_c01256{left:0.000000px;}
.x2c_c01256{left:59.940000px;}
.x60_c01256{left:61.231500px;}
.x1_c01256{left:62.640000px;}
.x50_c01256{left:71.371500px;}
.x7_c01256{left:72.900000px;}
.x65_c01256{left:105.472500px;}
.x2d_c01256{left:116.640000px;}
.x2_c01256{left:117.720000px;}
.x42_c01256{left:145.971000px;}
.xd_c01256{left:147.420000px;}
.x3_c01256{left:148.500000px;}
.x66_c01256{left:158.868000px;}
.x29_c01256{left:188.730000px;}
.x21_c01256{left:190.890000px;}
.x2b_c01256{left:192.240000px;}
.x17_c01256{left:193.590000px;}
.x49_c01256{left:201.420000px;}
.x55_c01256{left:204.390000px;}
.x68_c01256{left:214.768646px;}
.x40_c01256{left:223.289721px;}
.x18_c01256{left:225.180000px;}
.x37_c01256{left:234.631875px;}
.x2a_c01256{left:236.250000px;}
.x8_c01256{left:245.970000px;}
.x69_c01256{left:247.710074px;}
.x4_c01256{left:256.500000px;}
.x34_c01256{left:268.569000px;}
.x47_c01256{left:269.901021px;}
.xe_c01256{left:279.990000px;}
.x9_c01256{left:288.900000px;}
.x5d_c01256{left:290.134500px;}
.x41_c01256{left:295.920840px;}
.x4b_c01256{left:297.000000px;}
.x19_c01256{left:300.510000px;}
.xf_c01256{left:311.310000px;}
.x62_c01256{left:312.390000px;}
.x1e_c01256{left:322.920000px;}
.x6a_c01256{left:324.353463px;}
.x5_c01256{left:333.450000px;}
.x38_c01256{left:334.532872px;}
.x4c_c01256{left:336.420000px;}
.x22_c01256{left:344.790000px;}
.x5a_c01256{left:355.860000px;}
.x10_c01256{left:365.850000px;}
.x61_c01256{left:368.443500px;}
.x56_c01256{left:369.900000px;}
.x1f_c01256{left:378.270000px;}
.x35_c01256{left:379.816500px;}
.x23_c01256{left:389.340000px;}
.xa_c01256{left:390.960000px;}
.x57_c01256{left:395.280000px;}
.x43_c01256{left:400.570500px;}
.x20_c01256{left:410.130000px;}
.x2e_c01256{left:412.290000px;}
.x30_c01256{left:420.390000px;}
.x51_c01256{left:422.794500px;}
.x67_c01256{left:423.970500px;}
.x4d_c01256{left:433.890000px;}
.x63_c01256{left:444.420000px;}
.x6b_c01256{left:446.064000px;}
.x6_c01256{left:456.300000px;}
.x5b_c01256{left:457.380000px;}
.x11_c01256{left:468.180000px;}
.x3a_c01256{left:477.184500px;}
.xb_c01256{left:488.700000px;}
.x64_c01256{left:490.320000px;}
.x4e_c01256{left:497.610000px;}
.x24_c01256{left:499.770000px;}
.x2f_c01256{left:510.030000px;}
.x5e_c01256{left:511.818000px;}
.x3b_c01256{left:522.810000px;}
.x36_c01256{left:531.021000px;}
.xc_c01256{left:534.330000px;}
.x25_c01256{left:545.130000px;}
.x39_c01256{left:554.856877px;}
.x1a_c01256{left:566.190000px;}
.x12_c01256{left:567.540000px;}
.x5f_c01256{left:577.966500px;}
.x13_c01256{left:588.060000px;}
.x3c_c01256{left:599.740500px;}
.x52_c01256{left:620.575500px;}
.x1b_c01256{left:622.890000px;}
.x26_c01256{left:623.970000px;}
.x3d_c01256{left:631.879500px;}
.x6c_c01256{left:635.277000px;}
.x4a_c01256{left:643.410000px;}
.x44_c01256{left:654.939000px;}
.x1c_c01256{left:657.180000px;}
.x58_c01256{left:661.500000px;}
.x14_c01256{left:666.090000px;}
.x45_c01256{left:677.355000px;}
.x3e_c01256{left:687.790500px;}
.x31_c01256{left:689.040000px;}
.x15_c01256{left:699.300000px;}
.x27_c01256{left:710.100000px;}
.x32_c01256{left:720.900000px;}
.x16_c01256{left:733.050000px;}
.x53_c01256{left:743.731500px;}
.x28_c01256{left:754.110000px;}
.x3f_c01256{left:764.145000px;}
.x54_c01256{left:777.255000px;}
.x1d_c01256{left:780.570000px;}
.x46_c01256{left:787.797000px;}
.x33_c01256{left:797.040000px;}
.x5c_c01256{left:798.390000px;}
.x48_c01256{left:799.617552px;}
.x4f_c01256{left:865.620000px;}
.x59_c01256{left:870.210000px;}
.x6d_c01256{left:884.904000px;}
@media print{
.v0_c01256{vertical-align:0.000000pt;}
.ls0_c01256{letter-spacing:0.000000pt;}
.ws0_c01256{word-spacing:0.000000pt;}
.fs11_c01256{font-size:21.338975pt;}
.fsf_c01256{font-size:32.000000pt;}
.fs1_c01256{font-size:48.000000pt;}
.fs4_c01256{font-size:53.333333pt;}
.fs3_c01256{font-size:58.666667pt;}
.fsa_c01256{font-size:58.667400pt;}
.fse_c01256{font-size:58.670891pt;}
.fs13_c01256{font-size:58.686493pt;}
.fs2_c01256{font-size:64.000000pt;}
.fs9_c01256{font-size:64.000800pt;}
.fsd_c01256{font-size:64.002592pt;}
.fs12_c01256{font-size:64.016926pt;}
.fs0_c01256{font-size:69.333333pt;}
.fsb_c01256{font-size:69.334581pt;}
.fs10_c01256{font-size:74.666667pt;}
.fs5_c01256{font-size:80.000000pt;}
.fsc_c01256{font-size:80.001440pt;}
.fs7_c01256{font-size:85.333333pt;}
.fs6_c01256{font-size:90.666667pt;}
.fs8_c01256{font-size:96.000000pt;}
.y0_c01256{bottom:0.000000pt;}
.y76_c01256{bottom:93.486667pt;}
.y7f_c01256{bottom:112.983253pt;}
.y7e_c01256{bottom:114.957347pt;}
.y7d_c01256{bottom:116.754675pt;}
.y7c_c01256{bottom:117.535056pt;}
.y7b_c01256{bottom:118.752411pt;}
.y7a_c01256{bottom:120.087805pt;}
.y6f_c01256{bottom:120.240428pt;}
.y79_c01256{bottom:121.099656pt;}
.y70_c01256{bottom:121.791287pt;}
.y78_c01256{bottom:121.873312pt;}
.y71_c01256{bottom:122.629820pt;}
.y77_c01256{bottom:123.125333pt;}
.y72_c01256{bottom:124.453561pt;}
.y73_c01256{bottom:125.361821pt;}
.y74_c01256{bottom:127.474375pt;}
.y75_c01256{bottom:129.324103pt;}
.y6e_c01256{bottom:158.162667pt;}
.y6d_c01256{bottom:172.165333pt;}
.y6c_c01256{bottom:198.981333pt;}
.y6b_c01256{bottom:199.493333pt;}
.y6a_c01256{bottom:201.016000pt;}
.y69_c01256{bottom:202.432000pt;}
.y68_c01256{bottom:202.940000pt;}
.y67_c01256{bottom:204.078667pt;}
.y66_c01256{bottom:204.696000pt;}
.y65_c01256{bottom:205.201333pt;}
.y64_c01256{bottom:227.842667pt;}
.y63_c01256{bottom:264.701333pt;}
.y62_c01256{bottom:265.041333pt;}
.y61_c01256{bottom:265.448000pt;}
.y60_c01256{bottom:266.208000pt;}
.y5f_c01256{bottom:266.822667pt;}
.y5e_c01256{bottom:267.006667pt;}
.y5d_c01256{bottom:267.360000pt;}
.y5c_c01256{bottom:293.533333pt;}
.y5b_c01256{bottom:293.736000pt;}
.y5a_c01256{bottom:294.216000pt;}
.y59_c01256{bottom:294.628000pt;}
.y58_c01256{bottom:294.838667pt;}
.y57_c01256{bottom:295.382667pt;}
.y56_c01256{bottom:295.661333pt;}
.y55_c01256{bottom:296.008000pt;}
.y54_c01256{bottom:296.281333pt;}
.y53_c01256{bottom:296.893333pt;}
.y52_c01256{bottom:297.082667pt;}
.y51_c01256{bottom:297.360000pt;}
.y50_c01256{bottom:322.800000pt;}
.y4f_c01256{bottom:343.920000pt;}
.y4e_c01256{bottom:360.238667pt;}
.y4d_c01256{bottom:385.843909pt;}
.y4c_c01256{bottom:386.201493pt;}
.y4b_c01256{bottom:387.515157pt;}
.y4a_c01256{bottom:388.321605pt;}
.y49_c01256{bottom:389.624821pt;}
.y48_c01256{bottom:390.104229pt;}
.y47_c01256{bottom:391.388757pt;}
.y46_c01256{bottom:391.615845pt;}
.y45_c01256{bottom:392.557605pt;}
.y44_c01256{bottom:392.884997pt;}
.y43_c01256{bottom:393.373333pt;}
.y42_c01256{bottom:447.722667pt;}
.y41_c01256{bottom:451.850667pt;}
.y40_c01256{bottom:481.263651pt;}
.y3f_c01256{bottom:484.559973pt;}
.y3e_c01256{bottom:485.038180pt;}
.y3d_c01256{bottom:513.158124pt;}
.y3c_c01256{bottom:513.424044pt;}
.y3b_c01256{bottom:514.041660pt;}
.y3a_c01256{bottom:514.220988pt;}
.y39_c01256{bottom:515.275296pt;}
.y38_c01256{bottom:516.255936pt;}
.y37_c01256{bottom:517.491564pt;}
.y36_c01256{bottom:517.664040pt;}
.y35_c01256{bottom:518.292732pt;}
.y34_c01256{bottom:518.525460pt;}
.y33_c01256{bottom:518.880000pt;}
.y32_c01256{bottom:546.188752pt;}
.y2f_c01256{bottom:546.188821pt;}
.y31_c01256{bottom:546.189179pt;}
.y30_c01256{bottom:546.189453pt;}
.y2e_c01256{bottom:546.189469pt;}
.y20_c01256{bottom:575.280000pt;}
.y21_c01256{bottom:575.580728pt;}
.y22_c01256{bottom:575.740792pt;}
.y23_c01256{bottom:576.154096pt;}
.y24_c01256{bottom:576.390248pt;}
.y25_c01256{bottom:576.741592pt;}
.y26_c01256{bottom:576.980624pt;}
.y27_c01256{bottom:577.503320pt;}
.y28_c01256{bottom:577.746656pt;}
.y29_c01256{bottom:578.156952pt;}
.y2a_c01256{bottom:578.328360pt;}
.y2b_c01256{bottom:578.626552pt;}
.y2c_c01256{bottom:578.747248pt;}
.y2d_c01256{bottom:579.033776pt;}
.y1a_c01256{bottom:608.677260pt;}
.y1f_c01256{bottom:608.677280pt;}
.y1e_c01256{bottom:608.677540pt;}
.y1b_c01256{bottom:608.677800pt;}
.y1d_c01256{bottom:608.677807pt;}
.y19_c01256{bottom:608.677927pt;}
.y18_c01256{bottom:608.678060pt;}
.y1c_c01256{bottom:608.678067pt;}
.y17_c01256{bottom:638.062880pt;}
.y16_c01256{bottom:638.606500pt;}
.y15_c01256{bottom:638.761300pt;}
.y14_c01256{bottom:639.044587pt;}
.y13_c01256{bottom:639.433320pt;}
.y12_c01256{bottom:639.640927pt;}
.y11_c01256{bottom:639.927753pt;}
.y10_c01256{bottom:640.470087pt;}
.yf_c01256{bottom:640.604320pt;}
.ye_c01256{bottom:640.800000pt;}
.yd_c01256{bottom:672.736000pt;}
.yc_c01256{bottom:697.242667pt;}
.yb_c01256{bottom:735.368000pt;}
.ya_c01256{bottom:767.040000pt;}
.y9_c01256{bottom:793.657333pt;}
.y8_c01256{bottom:827.225333pt;}
.y7_c01256{bottom:860.990667pt;}
.y6_c01256{bottom:889.805333pt;}
.y5_c01256{bottom:891.602667pt;}
.y4_c01256{bottom:922.449333pt;}
.y3_c01256{bottom:950.232000pt;}
.y2_c01256{bottom:983.280000pt;}
.y1_c01256{bottom:1014.000000pt;}
.h13_c01256{height:21.338975pt;}
.h11_c01256{height:32.000000pt;}
.h3_c01256{height:48.000000pt;}
.h6_c01256{height:53.333333pt;}
.h5_c01256{height:58.666667pt;}
.hc_c01256{height:58.667400pt;}
.h10_c01256{height:58.670891pt;}
.h15_c01256{height:58.686493pt;}
.h4_c01256{height:64.000000pt;}
.hb_c01256{height:64.000800pt;}
.hf_c01256{height:64.002592pt;}
.h14_c01256{height:64.016926pt;}
.h2_c01256{height:69.333333pt;}
.hd_c01256{height:69.334581pt;}
.h12_c01256{height:74.666667pt;}
.h7_c01256{height:80.000000pt;}
.he_c01256{height:80.001440pt;}
.h9_c01256{height:85.333333pt;}
.h8_c01256{height:90.666667pt;}
.ha_c01256{height:96.000000pt;}
.h1_c01256{height:1118.666667pt;}
.h0_c01256{height:1118.880000pt;}
.w1_c01256{width:790.000000pt;}
.w0_c01256{width:790.266667pt;}
.x0_c01256{left:0.000000pt;}
.x2c_c01256{left:53.280000pt;}
.x60_c01256{left:54.428000pt;}
.x1_c01256{left:55.680000pt;}
.x50_c01256{left:63.441333pt;}
.x7_c01256{left:64.800000pt;}
.x65_c01256{left:93.753333pt;}
.x2d_c01256{left:103.680000pt;}
.x2_c01256{left:104.640000pt;}
.x42_c01256{left:129.752000pt;}
.xd_c01256{left:131.040000pt;}
.x3_c01256{left:132.000000pt;}
.x66_c01256{left:141.216000pt;}
.x29_c01256{left:167.760000pt;}
.x21_c01256{left:169.680000pt;}
.x2b_c01256{left:170.880000pt;}
.x17_c01256{left:172.080000pt;}
.x49_c01256{left:179.040000pt;}
.x55_c01256{left:181.680000pt;}
.x68_c01256{left:190.905463pt;}
.x40_c01256{left:198.479752pt;}
.x18_c01256{left:200.160000pt;}
.x37_c01256{left:208.561667pt;}
.x2a_c01256{left:210.000000pt;}
.x8_c01256{left:218.640000pt;}
.x69_c01256{left:220.186732pt;}
.x4_c01256{left:228.000000pt;}
.x34_c01256{left:238.728000pt;}
.x47_c01256{left:239.912019pt;}
.xe_c01256{left:248.880000pt;}
.x9_c01256{left:256.800000pt;}
.x5d_c01256{left:257.897333pt;}
.x41_c01256{left:263.040747pt;}
.x4b_c01256{left:264.000000pt;}
.x19_c01256{left:267.120000pt;}
.xf_c01256{left:276.720000pt;}
.x62_c01256{left:277.680000pt;}
.x1e_c01256{left:287.040000pt;}
.x6a_c01256{left:288.314189pt;}
.x5_c01256{left:296.400000pt;}
.x38_c01256{left:297.362553pt;}
.x4c_c01256{left:299.040000pt;}
.x22_c01256{left:306.480000pt;}
.x5a_c01256{left:316.320000pt;}
.x10_c01256{left:325.200000pt;}
.x61_c01256{left:327.505333pt;}
.x56_c01256{left:328.800000pt;}
.x1f_c01256{left:336.240000pt;}
.x35_c01256{left:337.614667pt;}
.x23_c01256{left:346.080000pt;}
.xa_c01256{left:347.520000pt;}
.x57_c01256{left:351.360000pt;}
.x43_c01256{left:356.062667pt;}
.x20_c01256{left:364.560000pt;}
.x2e_c01256{left:366.480000pt;}
.x30_c01256{left:373.680000pt;}
.x51_c01256{left:375.817333pt;}
.x67_c01256{left:376.862667pt;}
.x4d_c01256{left:385.680000pt;}
.x63_c01256{left:395.040000pt;}
.x6b_c01256{left:396.501333pt;}
.x6_c01256{left:405.600000pt;}
.x5b_c01256{left:406.560000pt;}
.x11_c01256{left:416.160000pt;}
.x3a_c01256{left:424.164000pt;}
.xb_c01256{left:434.400000pt;}
.x64_c01256{left:435.840000pt;}
.x4e_c01256{left:442.320000pt;}
.x24_c01256{left:444.240000pt;}
.x2f_c01256{left:453.360000pt;}
.x5e_c01256{left:454.949333pt;}
.x3b_c01256{left:464.720000pt;}
.x36_c01256{left:472.018667pt;}
.xc_c01256{left:474.960000pt;}
.x25_c01256{left:484.560000pt;}
.x39_c01256{left:493.206113pt;}
.x1a_c01256{left:503.280000pt;}
.x12_c01256{left:504.480000pt;}
.x5f_c01256{left:513.748000pt;}
.x13_c01256{left:522.720000pt;}
.x3c_c01256{left:533.102667pt;}
.x52_c01256{left:551.622667pt;}
.x1b_c01256{left:553.680000pt;}
.x26_c01256{left:554.640000pt;}
.x3d_c01256{left:561.670667pt;}
.x6c_c01256{left:564.690667pt;}
.x4a_c01256{left:571.920000pt;}
.x44_c01256{left:582.168000pt;}
.x1c_c01256{left:584.160000pt;}
.x58_c01256{left:588.000000pt;}
.x14_c01256{left:592.080000pt;}
.x45_c01256{left:602.093333pt;}
.x3e_c01256{left:611.369333pt;}
.x31_c01256{left:612.480000pt;}
.x15_c01256{left:621.600000pt;}
.x27_c01256{left:631.200000pt;}
.x32_c01256{left:640.800000pt;}
.x16_c01256{left:651.600000pt;}
.x53_c01256{left:661.094667pt;}
.x28_c01256{left:670.320000pt;}
.x3f_c01256{left:679.240000pt;}
.x54_c01256{left:690.893333pt;}
.x1d_c01256{left:693.840000pt;}
.x46_c01256{left:700.264000pt;}
.x33_c01256{left:708.480000pt;}
.x5c_c01256{left:709.680000pt;}
.x48_c01256{left:710.771157pt;}
.x4f_c01256{left:769.440000pt;}
.x59_c01256{left:773.520000pt;}
.x6d_c01256{left:786.581333pt;}
}





/* 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_c01257 {
    display:none;
  }
  .loading-indicator_c01257.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01257 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_c01257 { 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_c01257" -> "#page-container .classname_c01257")
 */
.pf_c01257 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01257 { /* 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_c01257.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01257 { /* 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_c01257 { /* 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_c01257 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01257 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01257 {overflow:visible;}
  }
}
.c_c01257 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01257 { /* 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_c01257:after { /* webkit #35443 */
  content: '';
}
.t_c01257:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01257 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 */
}
.__c01257 { /* 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_c01257 { /* info for Javascript */
  display:none;
}
.l_c01257 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01257 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01257 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01257: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_c01257 {
    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_c01257.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01257.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_c01257 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01257{font-family:sans-serif;visibility:hidden;}
.sc__c01257{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01257{-webkit-text-stroke:0px transparent;}
}
.y0_c01257{bottom:0.000000px;}
.h1_c01257{height:1258.500000px;}
.h0_c01257{height:1258.740000px;}
.w1_c01257{width:888.750000px;}
.w0_c01257{width:889.050000px;}
.x0_c01257{left:0.000000px;}
@media print{
.y0_c01257{bottom:0.000000pt;}
.h1_c01257{height:1118.666667pt;}
.h0_c01257{height:1118.880000pt;}
.w1_c01257{width:790.000000pt;}
.w0_c01257{width:790.266667pt;}
.x0_c01257{left:0.000000pt;}
}





/* 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_c01258 {
    display:none;
  }
  .loading-indicator_c01258.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01258 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_c01258 { 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_c01258" -> "#page-container .classname_c01258")
 */
.pf_c01258 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01258 { /* 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_c01258.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01258 { /* 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_c01258 { /* 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_c01258 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01258 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01258 {overflow:visible;}
  }
}
.c_c01258 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01258 { /* 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_c01258:after { /* webkit #35443 */
  content: '';
}
.t_c01258:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01258 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 */
}
.__c01258 { /* 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_c01258 { /* info for Javascript */
  display:none;
}
.l_c01258 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01258 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01258 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01258: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_c01258 {
    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_c01258.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01258.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_c01258 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01258{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01258;src:url('chunks/assets/font_c605e72f209fc835e906f064.woff2')format("woff");}.ff1_c01258{font-family:ff1_c01258;line-height:1.000000;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;}
.m68_c01258{transform:matrix(0.018975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.018975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.018975,0.000000,0.000000,0.250000,0,0);}
.m6_c01258{transform:matrix(0.040560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.040560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.040560,0.000000,0.000000,0.250000,0,0);}
.m3b_c01258{transform:matrix(0.040660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.040660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.040660,0.000000,0.000000,0.250000,0,0);}
.m4_c01258{transform:matrix(0.047730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.047730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.047730,0.000000,0.000000,0.250000,0,0);}
.m5_c01258{transform:matrix(0.050310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.050310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.050310,0.000000,0.000000,0.250000,0,0);}
.m6b_c01258{transform:matrix(0.052480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.052480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.052480,0.000000,0.000000,0.250000,0,0);}
.m78_c01258{transform:matrix(0.056920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.056920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.056920,0.000000,0.000000,0.250000,0,0);}
.m51_c01258{transform:matrix(0.060375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060375,0.000000,0.000000,0.250000,0,0);}
.m25_c01258{transform:matrix(0.060585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060585,0.000000,0.000000,0.250000,0,0);}
.m44_c01258{transform:matrix(0.063640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.063640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.063640,0.000000,0.000000,0.250000,0,0);}
.m5f_c01258{transform:matrix(0.065520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065520,0.000000,0.000000,0.250000,0,0);}
.m26_c01258{transform:matrix(0.065600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065600,0.000000,0.000000,0.250000,0,0);}
.m1b_c01258{transform:matrix(0.072035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072035,0.000000,0.000000,0.250000,0,0);}
.m5a_c01258{transform:matrix(0.072560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072560,0.000000,0.000000,0.250000,0,0);}
.m24_c01258{transform:matrix(0.081125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.081125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.081125,0.000000,0.000000,0.250000,0,0);}
.m46_c01258{transform:matrix(0.082975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.082975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.082975,0.000000,0.000000,0.250000,0,0);}
.m48_c01258{transform:matrix(0.087465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087465,0.000000,0.000000,0.250000,0,0);}
.m62_c01258{transform:matrix(0.092770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092770,0.000000,0.000000,0.250000,0,0);}
.m29_c01258{transform:matrix(0.096120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096120,0.000000,0.000000,0.250000,0,0);}
.m70_c01258{transform:matrix(0.096935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096935,0.000000,0.000000,0.250000,0,0);}
.m7a_c01258{transform:matrix(0.100625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100625,0.000000,0.000000,0.250000,0,0);}
.m4c_c01258{transform:matrix(0.106065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106065,0.000000,0.000000,0.250000,0,0);}
.m7d_c01258{transform:matrix(0.106320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106320,0.000000,0.000000,0.250000,0,0);}
.mf_c01258{transform:matrix(0.110735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110735,0.000000,0.000000,0.250000,0,0);}
.m14_c01258{transform:matrix(0.112500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112500,0.000000,0.000000,0.250000,0,0);}
.m6f_c01258{transform:matrix(0.112730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112730,0.000000,0.000000,0.250000,0,0);}
.m69_c01258{transform:matrix(0.117000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117000,0.000000,0.000000,0.250000,0,0);}
.m40_c01258{transform:matrix(0.131195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131195,0.000000,0.000000,0.250000,0,0);}
.m3a_c01258{transform:matrix(0.140990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140990,0.000000,0.000000,0.250000,0,0);}
.m38_c01258{transform:matrix(0.143745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143745,0.000000,0.000000,0.250000,0,0);}
.m83_c01258{transform:matrix(0.147970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147970,0.000000,0.000000,0.250000,0,0);}
.m52_c01258{transform:matrix(0.148975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148975,0.000000,0.000000,0.250000,0,0);}
.m45_c01258{transform:matrix(0.150865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150865,0.000000,0.000000,0.250000,0,0);}
.m18_c01258{transform:matrix(0.153015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153015,0.000000,0.000000,0.250000,0,0);}
.m66_c01258{transform:matrix(0.156605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156605,0.000000,0.000000,0.250000,0,0);}
.m63_c01258{transform:matrix(0.159100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159100,0.000000,0.000000,0.250000,0,0);}
.m20_c01258{transform:matrix(0.159990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159990,0.000000,0.000000,0.250000,0,0);}
.m50_c01258{transform:matrix(0.161555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161555,0.000000,0.000000,0.250000,0,0);}
.m15_c01258{transform:matrix(0.162250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162250,0.000000,0.000000,0.250000,0,0);}
.m7b_c01258{transform:matrix(0.173120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173120,0.000000,0.000000,0.250000,0,0);}
.mb_c01258{transform:matrix(0.173325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173325,0.000000,0.000000,0.250000,0,0);}
.m57_c01258{transform:matrix(0.174930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174930,0.000000,0.000000,0.250000,0,0);}
.m34_c01258{transform:matrix(0.175090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175090,0.000000,0.000000,0.250000,0,0);}
.m6c_c01258{transform:matrix(0.176820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176820,0.000000,0.000000,0.250000,0,0);}
.m77_c01258{transform:matrix(0.178190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178190,0.000000,0.000000,0.250000,0,0);}
.m6d_c01258{transform:matrix(0.182235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182235,0.000000,0.000000,0.250000,0,0);}
.m4a_c01258{transform:matrix(0.188680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188680,0.000000,0.000000,0.250000,0,0);}
.m1c_c01258{transform:matrix(0.194335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194335,0.000000,0.000000,0.250000,0,0);}
.m79_c01258{transform:matrix(0.194700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194700,0.000000,0.000000,0.250000,0,0);}
.m85_c01258{transform:matrix(0.195575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195575,0.000000,0.000000,0.250000,0,0);}
.m42_c01258{transform:matrix(0.201245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201245,0.000000,0.000000,0.250000,0,0);}
.m76_c01258{transform:matrix(0.203050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203050,0.000000,0.000000,0.250000,0,0);}
.m28_c01258{transform:matrix(0.204020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204020,0.000000,0.000000,0.250000,0,0);}
.m19_c01258{transform:matrix(0.206830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206830,0.000000,0.000000,0.250000,0,0);}
.m64_c01258{transform:matrix(0.207440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207440,0.000000,0.000000,0.250000,0,0);}
.m21_c01258{transform:matrix(0.209260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209260,0.000000,0.000000,0.250000,0,0);}
.m5c_c01258{transform:matrix(0.210685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210685,0.000000,0.000000,0.250000,0,0);}
.m35_c01258{transform:matrix(0.211200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211200,0.000000,0.000000,0.250000,0,0);}
.m1f_c01258{transform:matrix(0.211735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211735,0.000000,0.000000,0.250000,0,0);}
.m36_c01258{transform:matrix(0.212130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212130,0.000000,0.000000,0.250000,0,0);}
.m3c_c01258{transform:matrix(0.212265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212265,0.000000,0.000000,0.250000,0,0);}
.m23_c01258{transform:matrix(0.213190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213190,0.000000,0.000000,0.250000,0,0);}
.me_c01258{transform:matrix(0.213455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213455,0.000000,0.000000,0.250000,0,0);}
.m22_c01258{transform:matrix(0.218435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218435,0.000000,0.000000,0.250000,0,0);}
.m59_c01258{transform:matrix(0.227735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227735,0.000000,0.000000,0.250000,0,0);}
.m47_c01258{transform:matrix(0.230690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230690,0.000000,0.000000,0.250000,0,0);}
.m2f_c01258{transform:matrix(0.230830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230830,0.000000,0.000000,0.250000,0,0);}
.m87_c01258{transform:matrix(0.238650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238650,0.000000,0.000000,0.250000,0,0);}
.m3d_c01258{transform:matrix(0.239180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239180,0.000000,0.000000,0.250000,0,0);}
.m3_c01258{transform:matrix(0.241520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241520,0.000000,0.000000,0.250000,0,0);}
.m8a_c01258{transform:matrix(0.242330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242330,0.000000,0.000000,0.250000,0,0);}
.m84_c01258{transform:matrix(0.242910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242910,0.000000,0.000000,0.250000,0,0);}
.m1e_c01258{transform:matrix(0.263785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263785,0.000000,0.000000,0.250000,0,0);}
.m5b_c01258{transform:matrix(0.264125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264125,0.000000,0.000000,0.250000,0,0);}
.m88_c01258{transform:matrix(0.264795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264795,0.000000,0.000000,0.250000,0,0);}
.m1d_c01258{transform:matrix(0.268885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268885,0.000000,0.000000,0.250000,0,0);}
.m37_c01258{transform:matrix(0.273725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273725,0.000000,0.000000,0.250000,0,0);}
.m54_c01258{transform:matrix(0.278165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278165,0.000000,0.000000,0.250000,0,0);}
.m89_c01258{transform:matrix(0.278715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278715,0.000000,0.000000,0.250000,0,0);}
.m0_c01258{transform:matrix(0.279015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279015,0.000000,0.000000,0.250000,0,0);}
.m81_c01258{transform:matrix(0.284605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284605,0.000000,0.000000,0.250000,0,0);}
.m7f_c01258{transform:matrix(0.293365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293365,0.000000,0.000000,0.250000,0,0);}
.m12_c01258{transform:matrix(0.297740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297740,0.000000,0.000000,0.250000,0,0);}
.m11_c01258{transform:matrix(0.300185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300185,0.000000,0.000000,0.250000,0,0);}
.m16_c01258{transform:matrix(0.305940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305940,0.000000,0.000000,0.250000,0,0);}
.md_c01258{transform:matrix(0.329490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329490,0.000000,0.000000,0.250000,0,0);}
.m67_c01258{transform:matrix(0.330435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330435,0.000000,0.000000,0.250000,0,0);}
.m72_c01258{transform:matrix(0.335015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335015,0.000000,0.000000,0.250000,0,0);}
.m13_c01258{transform:matrix(0.342710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342710,0.000000,0.000000,0.250000,0,0);}
.mc_c01258{transform:matrix(0.353025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353025,0.000000,0.000000,0.250000,0,0);}
.m27_c01258{transform:matrix(0.353080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353080,0.000000,0.000000,0.250000,0,0);}
.m2_c01258{transform:matrix(0.355675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355675,0.000000,0.000000,0.250000,0,0);}
.m2e_c01258{transform:matrix(0.360175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360175,0.000000,0.000000,0.250000,0,0);}
.m32_c01258{transform:matrix(0.362260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362260,0.000000,0.000000,0.250000,0,0);}
.m1a_c01258{transform:matrix(0.366275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366275,0.000000,0.000000,0.250000,0,0);}
.m74_c01258{transform:matrix(0.371130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371130,0.000000,0.000000,0.250000,0,0);}
.m6e_c01258{transform:matrix(0.376765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376765,0.000000,0.000000,0.250000,0,0);}
.m7e_c01258{transform:matrix(0.377170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377170,0.000000,0.000000,0.250000,0,0);}
.m65_c01258{transform:matrix(0.381840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381840,0.000000,0.000000,0.250000,0,0);}
.m4e_c01258{transform:matrix(0.387220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387220,0.000000,0.000000,0.250000,0,0);}
.m4f_c01258{transform:matrix(0.391150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391150,0.000000,0.000000,0.250000,0,0);}
.m2d_c01258{transform:matrix(0.398700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398700,0.000000,0.000000,0.250000,0,0);}
.m75_c01258{transform:matrix(0.400565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400565,0.000000,0.000000,0.250000,0,0);}
.m71_c01258{transform:matrix(0.404680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404680,0.000000,0.000000,0.250000,0,0);}
.m4d_c01258{transform:matrix(0.404970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404970,0.000000,0.000000,0.250000,0,0);}
.m10_c01258{transform:matrix(0.405625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405625,0.000000,0.000000,0.250000,0,0);}
.m53_c01258{transform:matrix(0.410680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410680,0.000000,0.000000,0.250000,0,0);}
.m56_c01258{transform:matrix(0.411265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411265,0.000000,0.000000,0.250000,0,0);}
.m82_c01258{transform:matrix(0.414880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414880,0.000000,0.000000,0.250000,0,0);}
.m61_c01258{transform:matrix(0.416775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416775,0.000000,0.000000,0.250000,0,0);}
.m80_c01258{transform:matrix(0.417850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417850,0.000000,0.000000,0.250000,0,0);}
.m2b_c01258{transform:matrix(0.433565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433565,0.000000,0.000000,0.250000,0,0);}
.m17_c01258{transform:matrix(0.436805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436805,0.000000,0.000000,0.250000,0,0);}
.m41_c01258{transform:matrix(0.437320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437320,0.000000,0.000000,0.250000,0,0);}
.m7_c01258{transform:matrix(0.441050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441050,0.000000,0.000000,0.250000,0,0);}
.m3f_c01258{transform:matrix(0.446610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446610,0.000000,0.000000,0.250000,0,0);}
.m86_c01258{transform:matrix(0.453115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453115,0.000000,0.000000,0.250000,0,0);}
.m3e_c01258{transform:matrix(0.456205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456205,0.000000,0.000000,0.250000,0,0);}
.m2c_c01258{transform:matrix(0.470525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470525,0.000000,0.000000,0.250000,0,0);}
.m30_c01258{transform:matrix(0.471025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471025,0.000000,0.000000,0.250000,0,0);}
.m5e_c01258{transform:matrix(0.473505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.473505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.473505,0.000000,0.000000,0.250000,0,0);}
.m31_c01258{transform:matrix(0.496310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.496310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.496310,0.000000,0.000000,0.250000,0,0);}
.m1_c01258{transform:matrix(0.500390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.500390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.500390,0.000000,0.000000,0.250000,0,0);}
.ma_c01258{transform:matrix(0.510220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510220,0.000000,0.000000,0.250000,0,0);}
.m5d_c01258{transform:matrix(0.531400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531400,0.000000,0.000000,0.250000,0,0);}
.m33_c01258{transform:matrix(0.533635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533635,0.000000,0.000000,0.250000,0,0);}
.m60_c01258{transform:matrix(0.534725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534725,0.000000,0.000000,0.250000,0,0);}
.m2a_c01258{transform:matrix(0.543735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543735,0.000000,0.000000,0.250000,0,0);}
.m7c_c01258{transform:matrix(0.553700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553700,0.000000,0.000000,0.250000,0,0);}
.m39_c01258{transform:matrix(0.560365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560365,0.000000,0.000000,0.250000,0,0);}
.m9_c01258{transform:matrix(0.589840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.589840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.589840,0.000000,0.000000,0.250000,0,0);}
.m49_c01258{transform:matrix(0.626500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.626500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.626500,0.000000,0.000000,0.250000,0,0);}
.m73_c01258{transform:matrix(0.655115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.655115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.655115,0.000000,0.000000,0.250000,0,0);}
.m6a_c01258{transform:matrix(0.667835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667835,0.000000,0.000000,0.250000,0,0);}
.m8_c01258{transform:matrix(0.674555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.674555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.674555,0.000000,0.000000,0.250000,0,0);}
.m55_c01258{transform:matrix(0.782795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.782795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.782795,0.000000,0.000000,0.250000,0,0);}
.m58_c01258{transform:matrix(0.804005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.804005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.804005,0.000000,0.000000,0.250000,0,0);}
.m43_c01258{transform:matrix(0.971415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.971415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.971415,0.000000,0.000000,0.250000,0,0);}
.m4b_c01258{transform:matrix(1.111620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.111620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.111620,0.000000,0.000000,0.250000,0,0);}
.v1_c01258{vertical-align:-2.292000px;}
.v0_c01258{vertical-align:0.000000px;}
.ls0_c01258{letter-spacing:0.000000px;}
.sc__c01258{text-shadow:none;}
.sc0_c01258{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__c01258{-webkit-text-stroke:0px transparent;}
.sc0_c01258{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01258{word-spacing:0.000000px;}
._0_c01258{width:98.888983px;}
.fc0_c01258{color:transparent;}
.fs3_c01258{font-size:12.000000px;}
.fs0_c01258{font-size:18.000000px;}
.fs1_c01258{font-size:24.000000px;}
.fs5_c01258{font-size:30.000000px;}
.fs2_c01258{font-size:36.000000px;}
.fs4_c01258{font-size:42.000000px;}
.y0_c01258{bottom:0.000000px;}
.y2e_c01258{bottom:785.431500px;}
.y2d_c01258{bottom:789.751500px;}
.y2c_c01258{bottom:791.662500px;}
.y2b_c01258{bottom:795.459000px;}
.y2a_c01258{bottom:799.059000px;}
.y29_c01258{bottom:805.411500px;}
.y28_c01258{bottom:825.423000px;}
.y27_c01258{bottom:897.315000px;}
.y26_c01258{bottom:901.348500px;}
.y25_c01258{bottom:907.327500px;}
.y24_c01258{bottom:908.985000px;}
.y23_c01258{bottom:930.967500px;}
.y22_c01258{bottom:935.101500px;}
.y21_c01258{bottom:936.837000px;}
.y20_c01258{bottom:943.002000px;}
.y1f_c01258{bottom:965.070000px;}
.y1e_c01258{bottom:965.886000px;}
.y1d_c01258{bottom:966.540000px;}
.y1c_c01258{bottom:967.096500px;}
.y19_c01258{bottom:967.422000px;}
.y1b_c01258{bottom:967.560000px;}
.y1a_c01258{bottom:968.218500px;}
.y18_c01258{bottom:968.277000px;}
.y17_c01258{bottom:968.806500px;}
.y16_c01258{bottom:969.828000px;}
.y15_c01258{bottom:970.137000px;}
.y14_c01258{bottom:970.572000px;}
.y13_c01258{bottom:970.753500px;}
.y12_c01258{bottom:971.025000px;}
.yf_c01258{bottom:971.161500px;}
.y11_c01258{bottom:971.490000px;}
.y10_c01258{bottom:972.001500px;}
.ye_c01258{bottom:972.639000px;}
.yd_c01258{bottom:973.956000px;}
.yc_c01258{bottom:975.241500px;}
.yb_c01258{bottom:975.732000px;}
.ya_c01258{bottom:976.590000px;}
.y9_c01258{bottom:978.201000px;}
.y8_c01258{bottom:1006.419000px;}
.y7_c01258{bottom:1011.292500px;}
.y6_c01258{bottom:1014.811500px;}
.y5_c01258{bottom:1075.417500px;}
.y4_c01258{bottom:1081.174500px;}
.y3_c01258{bottom:1145.616000px;}
.y2_c01258{bottom:1151.290500px;}
.y1_c01258{bottom:1251.990000px;}
.h5_c01258{height:12.000000px;}
.h2_c01258{height:18.000000px;}
.h3_c01258{height:24.000000px;}
.h7_c01258{height:30.000000px;}
.h4_c01258{height:36.000000px;}
.h6_c01258{height:42.000000px;}
.h1_c01258{height:1258.500000px;}
.h0_c01258{height:1258.740000px;}
.w1_c01258{width:888.750000px;}
.w0_c01258{width:889.050000px;}
.x0_c01258{left:0.000000px;}
.x45_c01258{left:130.410000px;}
.x4c_c01258{left:131.490000px;}
.x53_c01258{left:135.270000px;}
.x40_c01258{left:138.510000px;}
.x3d_c01258{left:139.860000px;}
.x49_c01258{left:145.260000px;}
.x46_c01258{left:146.340000px;}
.x39_c01258{left:150.930000px;}
.x43_c01258{left:157.410000px;}
.x3e_c01258{left:162.270000px;}
.x54_c01258{left:163.890000px;}
.x4a_c01258{left:167.940000px;}
.x4d_c01258{left:170.100000px;}
.x47_c01258{left:188.190000px;}
.x55_c01258{left:200.340000px;}
.xf_c01258{left:201.960000px;}
.x41_c01258{left:212.490000px;}
.x3f_c01258{left:213.840000px;}
.x3a_c01258{left:225.990000px;}
.x48_c01258{left:241.110000px;}
.x2b_c01258{left:242.730000px;}
.x8_c01258{left:245.160000px;}
.x2_c01258{left:251.100000px;}
.x1f_c01258{left:254.500500px;}
.x9_c01258{left:256.770000px;}
.x10_c01258{left:260.550000px;}
.x56_c01258{left:264.060000px;}
.x16_c01258{left:266.490000px;}
.x11_c01258{left:267.840000px;}
.x2f_c01258{left:270.540000px;}
.x2c_c01258{left:271.620000px;}
.x14_c01258{left:278.640000px;}
.xd_c01258{left:279.720000px;}
.xb_c01258{left:283.500000px;}
.x3b_c01258{left:287.010000px;}
.x30_c01258{left:288.360000px;}
.x18_c01258{left:289.710000px;}
.x12_c01258{left:290.790000px;}
.x15_c01258{left:295.650000px;}
.xa_c01258{left:300.240000px;}
.x57_c01258{left:301.320000px;}
.x3_c01258{left:304.290000px;}
.x3c_c01258{left:309.150000px;}
.xc_c01258{left:312.120000px;}
.x13_c01258{left:313.470000px;}
.x19_c01258{left:314.820000px;}
.x4b_c01258{left:317.250000px;}
.x17_c01258{left:320.760000px;}
.x4_c01258{left:322.110000px;}
.xe_c01258{left:323.730000px;}
.x31_c01258{left:331.560000px;}
.x2d_c01258{left:332.910000px;}
.x1b_c01258{left:340.141500px;}
.x20_c01258{left:343.639500px;}
.x32_c01258{left:346.410000px;}
.x2e_c01258{left:349.110000px;}
.x5f_c01258{left:350.190000px;}
.x5_c01258{left:356.670000px;}
.x4e_c01258{left:363.420000px;}
.x6_c01258{left:370.170000px;}
.x58_c01258{left:375.570000px;}
.x7_c01258{left:384.210000px;}
.x1a_c01258{left:388.260000px;}
.x4f_c01258{left:398.790000px;}
.x60_c01258{left:400.140000px;}
.x59_c01258{left:403.110000px;}
.x21_c01258{left:409.750500px;}
.x1c_c01258{left:415.761000px;}
.x5a_c01258{left:428.220000px;}
.x25_c01258{left:442.507500px;}
.x50_c01258{left:451.170000px;}
.x5b_c01258{left:454.680000px;}
.x51_c01258{left:464.130000px;}
.x61_c01258{left:474.120000px;}
.x26_c01258{left:475.444500px;}
.x22_c01258{left:482.677500px;}
.x33_c01258{left:486.540000px;}
.x5c_c01258{left:487.890000px;}
.x1d_c01258{left:493.242000px;}
.x42_c01258{left:496.260000px;}
.x27_c01258{left:498.649500px;}
.x34_c01258{left:501.660000px;}
.x5d_c01258{left:517.050000px;}
.x23_c01258{left:520.470000px;}
.x38_c01258{left:525.150000px;}
.x28_c01258{left:526.476000px;}
.x37_c01258{left:531.630000px;}
.x35_c01258{left:534.060000px;}
.x52_c01258{left:539.190000px;}
.x44_c01258{left:542.160000px;}
.x63_c01258{left:551.880000px;}
.x29_c01258{left:559.155000px;}
.x64_c01258{left:573.480000px;}
.x1e_c01258{left:580.138500px;}
.x24_c01258{left:581.500500px;}
.x65_c01258{left:594.810000px;}
.x5e_c01258{left:596.700000px;}
.x62_c01258{left:598.320000px;}
.x2a_c01258{left:599.925000px;}
.x36_c01258{left:602.910000px;}
.x1_c01258{left:846.720000px;}
@media print{
.v1_c01258{vertical-align:-2.037333pt;}
.v0_c01258{vertical-align:0.000000pt;}
.ls0_c01258{letter-spacing:0.000000pt;}
.ws0_c01258{word-spacing:0.000000pt;}
._0_c01258{width:87.901318pt;}
.fs3_c01258{font-size:10.666667pt;}
.fs0_c01258{font-size:16.000000pt;}
.fs1_c01258{font-size:21.333333pt;}
.fs5_c01258{font-size:26.666667pt;}
.fs2_c01258{font-size:32.000000pt;}
.fs4_c01258{font-size:37.333333pt;}
.y0_c01258{bottom:0.000000pt;}
.y2e_c01258{bottom:698.161333pt;}
.y2d_c01258{bottom:702.001333pt;}
.y2c_c01258{bottom:703.700000pt;}
.y2b_c01258{bottom:707.074667pt;}
.y2a_c01258{bottom:710.274667pt;}
.y29_c01258{bottom:715.921333pt;}
.y28_c01258{bottom:733.709333pt;}
.y27_c01258{bottom:797.613333pt;}
.y26_c01258{bottom:801.198667pt;}
.y25_c01258{bottom:806.513333pt;}
.y24_c01258{bottom:807.986667pt;}
.y23_c01258{bottom:827.526667pt;}
.y22_c01258{bottom:831.201333pt;}
.y21_c01258{bottom:832.744000pt;}
.y20_c01258{bottom:838.224000pt;}
.y1f_c01258{bottom:857.840000pt;}
.y1e_c01258{bottom:858.565333pt;}
.y1d_c01258{bottom:859.146667pt;}
.y1c_c01258{bottom:859.641333pt;}
.y19_c01258{bottom:859.930667pt;}
.y1b_c01258{bottom:860.053333pt;}
.y1a_c01258{bottom:860.638667pt;}
.y18_c01258{bottom:860.690667pt;}
.y17_c01258{bottom:861.161333pt;}
.y16_c01258{bottom:862.069333pt;}
.y15_c01258{bottom:862.344000pt;}
.y14_c01258{bottom:862.730667pt;}
.y13_c01258{bottom:862.892000pt;}
.y12_c01258{bottom:863.133333pt;}
.yf_c01258{bottom:863.254667pt;}
.y11_c01258{bottom:863.546667pt;}
.y10_c01258{bottom:864.001333pt;}
.ye_c01258{bottom:864.568000pt;}
.yd_c01258{bottom:865.738667pt;}
.yc_c01258{bottom:866.881333pt;}
.yb_c01258{bottom:867.317333pt;}
.ya_c01258{bottom:868.080000pt;}
.y9_c01258{bottom:869.512000pt;}
.y8_c01258{bottom:894.594667pt;}
.y7_c01258{bottom:898.926667pt;}
.y6_c01258{bottom:902.054667pt;}
.y5_c01258{bottom:955.926667pt;}
.y4_c01258{bottom:961.044000pt;}
.y3_c01258{bottom:1018.325333pt;}
.y2_c01258{bottom:1023.369333pt;}
.y1_c01258{bottom:1112.880000pt;}
.h5_c01258{height:10.666667pt;}
.h2_c01258{height:16.000000pt;}
.h3_c01258{height:21.333333pt;}
.h7_c01258{height:26.666667pt;}
.h4_c01258{height:32.000000pt;}
.h6_c01258{height:37.333333pt;}
.h1_c01258{height:1118.666667pt;}
.h0_c01258{height:1118.880000pt;}
.w1_c01258{width:790.000000pt;}
.w0_c01258{width:790.266667pt;}
.x0_c01258{left:0.000000pt;}
.x45_c01258{left:115.920000pt;}
.x4c_c01258{left:116.880000pt;}
.x53_c01258{left:120.240000pt;}
.x40_c01258{left:123.120000pt;}
.x3d_c01258{left:124.320000pt;}
.x49_c01258{left:129.120000pt;}
.x46_c01258{left:130.080000pt;}
.x39_c01258{left:134.160000pt;}
.x43_c01258{left:139.920000pt;}
.x3e_c01258{left:144.240000pt;}
.x54_c01258{left:145.680000pt;}
.x4a_c01258{left:149.280000pt;}
.x4d_c01258{left:151.200000pt;}
.x47_c01258{left:167.280000pt;}
.x55_c01258{left:178.080000pt;}
.xf_c01258{left:179.520000pt;}
.x41_c01258{left:188.880000pt;}
.x3f_c01258{left:190.080000pt;}
.x3a_c01258{left:200.880000pt;}
.x48_c01258{left:214.320000pt;}
.x2b_c01258{left:215.760000pt;}
.x8_c01258{left:217.920000pt;}
.x2_c01258{left:223.200000pt;}
.x1f_c01258{left:226.222667pt;}
.x9_c01258{left:228.240000pt;}
.x10_c01258{left:231.600000pt;}
.x56_c01258{left:234.720000pt;}
.x16_c01258{left:236.880000pt;}
.x11_c01258{left:238.080000pt;}
.x2f_c01258{left:240.480000pt;}
.x2c_c01258{left:241.440000pt;}
.x14_c01258{left:247.680000pt;}
.xd_c01258{left:248.640000pt;}
.xb_c01258{left:252.000000pt;}
.x3b_c01258{left:255.120000pt;}
.x30_c01258{left:256.320000pt;}
.x18_c01258{left:257.520000pt;}
.x12_c01258{left:258.480000pt;}
.x15_c01258{left:262.800000pt;}
.xa_c01258{left:266.880000pt;}
.x57_c01258{left:267.840000pt;}
.x3_c01258{left:270.480000pt;}
.x3c_c01258{left:274.800000pt;}
.xc_c01258{left:277.440000pt;}
.x13_c01258{left:278.640000pt;}
.x19_c01258{left:279.840000pt;}
.x4b_c01258{left:282.000000pt;}
.x17_c01258{left:285.120000pt;}
.x4_c01258{left:286.320000pt;}
.xe_c01258{left:287.760000pt;}
.x31_c01258{left:294.720000pt;}
.x2d_c01258{left:295.920000pt;}
.x1b_c01258{left:302.348000pt;}
.x20_c01258{left:305.457333pt;}
.x32_c01258{left:307.920000pt;}
.x2e_c01258{left:310.320000pt;}
.x5f_c01258{left:311.280000pt;}
.x5_c01258{left:317.040000pt;}
.x4e_c01258{left:323.040000pt;}
.x6_c01258{left:329.040000pt;}
.x58_c01258{left:333.840000pt;}
.x7_c01258{left:341.520000pt;}
.x1a_c01258{left:345.120000pt;}
.x4f_c01258{left:354.480000pt;}
.x60_c01258{left:355.680000pt;}
.x59_c01258{left:358.320000pt;}
.x21_c01258{left:364.222667pt;}
.x1c_c01258{left:369.565333pt;}
.x5a_c01258{left:380.640000pt;}
.x25_c01258{left:393.340000pt;}
.x50_c01258{left:401.040000pt;}
.x5b_c01258{left:404.160000pt;}
.x51_c01258{left:412.560000pt;}
.x61_c01258{left:421.440000pt;}
.x26_c01258{left:422.617333pt;}
.x22_c01258{left:429.046667pt;}
.x33_c01258{left:432.480000pt;}
.x5c_c01258{left:433.680000pt;}
.x1d_c01258{left:438.437333pt;}
.x42_c01258{left:441.120000pt;}
.x27_c01258{left:443.244000pt;}
.x34_c01258{left:445.920000pt;}
.x5d_c01258{left:459.600000pt;}
.x23_c01258{left:462.640000pt;}
.x38_c01258{left:466.800000pt;}
.x28_c01258{left:467.978667pt;}
.x37_c01258{left:472.560000pt;}
.x35_c01258{left:474.720000pt;}
.x52_c01258{left:479.280000pt;}
.x44_c01258{left:481.920000pt;}
.x63_c01258{left:490.560000pt;}
.x29_c01258{left:497.026667pt;}
.x64_c01258{left:509.760000pt;}
.x1e_c01258{left:515.678667pt;}
.x24_c01258{left:516.889333pt;}
.x65_c01258{left:528.720000pt;}
.x5e_c01258{left:530.400000pt;}
.x62_c01258{left:531.840000pt;}
.x2a_c01258{left:533.266667pt;}
.x36_c01258{left:535.920000pt;}
.x1_c01258{left:752.640000pt;}
}





/* 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_c01259 {
    display:none;
  }
  .loading-indicator_c01259.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01259 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_c01259 { 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_c01259" -> "#page-container .classname_c01259")
 */
.pf_c01259 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01259 { /* 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_c01259.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01259 { /* 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_c01259 { /* 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_c01259 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01259 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01259 {overflow:visible;}
  }
}
.c_c01259 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01259 { /* 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_c01259:after { /* webkit #35443 */
  content: '';
}
.t_c01259:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01259 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 */
}
.__c01259 { /* 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_c01259 { /* info for Javascript */
  display:none;
}
.l_c01259 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01259 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01259 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01259: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_c01259 {
    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_c01259.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01259.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_c01259 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01259{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01259;src:url('chunks/assets/font_ffdda91d43f5751d6c5cd797.woff2')format("woff");}.ff1_c01259{font-family:ff1_c01259;line-height:1.000000;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;}
.m15_c01259{transform:matrix(0.149100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149100,0.000000,0.000000,0.250000,0,0);}
.mb_c01259{transform:matrix(0.159450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159450,0.000000,0.000000,0.250000,0,0);}
.mc_c01259{transform:matrix(0.164285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164285,0.000000,0.000000,0.250000,0,0);}
.me_c01259{transform:matrix(0.171025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171025,0.000000,0.000000,0.250000,0,0);}
.m12_c01259{transform:matrix(0.175360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175360,0.000000,0.000000,0.250000,0,0);}
.m3_c01259{transform:matrix(0.183850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183850,0.000000,0.000000,0.250000,0,0);}
.m25_c01259{transform:matrix(0.186295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186295,0.000000,0.000000,0.250000,0,0);}
.m1f_c01259{transform:matrix(0.201760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201760,0.000000,0.000000,0.250000,0,0);}
.m13_c01259{transform:matrix(0.201805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201805,0.000000,0.000000,0.250000,0,0);}
.m11_c01259{transform:matrix(0.208065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208065,0.000000,0.000000,0.250000,0,0);}
.m1e_c01259{transform:matrix(0.208520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208520,0.000000,0.000000,0.250000,0,0);}
.m24_c01259{transform:matrix(0.213455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213455,0.000000,0.000000,0.250000,0,0);}
.m16_c01259{transform:matrix(0.225970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225970,0.000000,0.000000,0.250000,0,0);}
.m1c_c01259{transform:matrix(0.231030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231030,0.000000,0.000000,0.250000,0,0);}
.m1b_c01259{transform:matrix(0.234275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234275,0.000000,0.000000,0.250000,0,0);}
.m2_c01259{transform:matrix(0.237695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237695,0.000000,0.000000,0.250000,0,0);}
.m0_c01259{transform:matrix(0.242330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242330,0.000000,0.000000,0.250000,0,0);}
.m22_c01259{transform:matrix(0.243515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243515,0.000000,0.000000,0.250000,0,0);}
.m21_c01259{transform:matrix(0.245205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245205,0.000000,0.000000,0.250000,0,0);}
.m4_c01259{transform:matrix(0.250710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250710,0.000000,0.000000,0.250000,0,0);}
.md_c01259{transform:matrix(0.254035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254035,0.000000,0.000000,0.250000,0,0);}
.m20_c01259{transform:matrix(0.258605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258605,0.000000,0.000000,0.250000,0,0);}
.m23_c01259{transform:matrix(0.258615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258615,0.000000,0.000000,0.250000,0,0);}
.m17_c01259{transform:matrix(0.262635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262635,0.000000,0.000000,0.250000,0,0);}
.m9_c01259{transform:matrix(0.264530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264530,0.000000,0.000000,0.250000,0,0);}
.m14_c01259{transform:matrix(0.289795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289795,0.000000,0.000000,0.250000,0,0);}
.ma_c01259{transform:matrix(0.299925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299925,0.000000,0.000000,0.250000,0,0);}
.m10_c01259{transform:matrix(0.316000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316000,0.000000,0.000000,0.250000,0,0);}
.m1d_c01259{transform:matrix(0.322190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322190,0.000000,0.000000,0.250000,0,0);}
.m5_c01259{transform:matrix(0.336155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336155,0.000000,0.000000,0.250000,0,0);}
.mf_c01259{transform:matrix(0.353080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353080,0.000000,0.000000,0.250000,0,0);}
.m7_c01259{transform:matrix(0.360780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360780,0.000000,0.000000,0.250000,0,0);}
.m8_c01259{transform:matrix(0.373845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373845,0.000000,0.000000,0.250000,0,0);}
.m19_c01259{transform:matrix(0.456945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456945,0.000000,0.000000,0.250000,0,0);}
.m6_c01259{transform:matrix(0.470105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470105,0.000000,0.000000,0.250000,0,0);}
.m18_c01259{transform:matrix(0.517230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517230,0.000000,0.000000,0.250000,0,0);}
.m1_c01259{transform:matrix(0.861195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.861195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.861195,0.000000,0.000000,0.250000,0,0);}
.m1a_c01259{transform:matrix(1.199415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.199415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.199415,0.000000,0.000000,0.250000,0,0);}
.v0_c01259{vertical-align:0.000000px;}
.ls0_c01259{letter-spacing:0.000000px;}
.sc__c01259{text-shadow:none;}
.sc0_c01259{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__c01259{-webkit-text-stroke:0px transparent;}
.sc0_c01259{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01259{word-spacing:0.000000px;}
.fc0_c01259{color:transparent;}
.fs1_c01259{font-size:12.000000px;}
.fs3_c01259{font-size:18.000000px;}
.fs8_c01259{font-size:24.000000px;}
.fs0_c01259{font-size:30.000000px;}
.fsb_c01259{font-size:42.000000px;}
.fs7_c01259{font-size:48.000000px;}
.fs2_c01259{font-size:54.000000px;}
.fs4_c01259{font-size:60.000000px;}
.fs6_c01259{font-size:66.000000px;}
.fs9_c01259{font-size:72.000000px;}
.fsa_c01259{font-size:78.000000px;}
.fs5_c01259{font-size:84.000000px;}
.y0_c01259{bottom:0.000000px;}
.y1c_c01259{bottom:882.627000px;}
.y1b_c01259{bottom:883.170000px;}
.y1d_c01259{bottom:887.760000px;}
.y1a_c01259{bottom:889.650000px;}
.y18_c01259{bottom:954.186000px;}
.y16_c01259{bottom:954.312000px;}
.y17_c01259{bottom:954.313500px;}
.y11_c01259{bottom:954.450000px;}
.y19_c01259{bottom:954.583500px;}
.y12_c01259{bottom:989.151000px;}
.y15_c01259{bottom:989.283000px;}
.yf_c01259{bottom:989.550000px;}
.ye_c01259{bottom:990.747000px;}
.y10_c01259{bottom:991.440000px;}
.y14_c01259{bottom:994.674000px;}
.yd_c01259{bottom:996.570000px;}
.y13_c01259{bottom:997.650000px;}
.y8_c01259{bottom:1024.782000px;}
.y7_c01259{bottom:1025.182500px;}
.yb_c01259{bottom:1025.326500px;}
.y6_c01259{bottom:1026.276000px;}
.y9_c01259{bottom:1028.700000px;}
.yc_c01259{bottom:1030.860000px;}
.ya_c01259{bottom:1035.990000px;}
.y3_c01259{bottom:1253.880000px;}
.y4_c01259{bottom:1254.150000px;}
.y1_c01259{bottom:1254.960000px;}
.y2_c01259{bottom:1255.230000px;}
.y5_c01259{bottom:1256.046000px;}
.h3_c01259{height:12.000000px;}
.h5_c01259{height:18.000000px;}
.ha_c01259{height:24.000000px;}
.h2_c01259{height:30.000000px;}
.hd_c01259{height:42.000000px;}
.h9_c01259{height:48.000000px;}
.h4_c01259{height:54.000000px;}
.h6_c01259{height:60.000000px;}
.h8_c01259{height:66.000000px;}
.hb_c01259{height:72.000000px;}
.hc_c01259{height:78.000000px;}
.h7_c01259{height:84.000000px;}
.h1_c01259{height:1258.500000px;}
.h0_c01259{height:1258.740000px;}
.w1_c01259{width:888.750000px;}
.w0_c01259{width:889.050000px;}
.x0_c01259{left:0.000000px;}
.x6_c01259{left:343.170000px;}
.x7_c01259{left:364.770000px;}
.x8_c01259{left:400.140000px;}
.x5_c01259{left:420.660000px;}
.x4_c01259{left:427.950000px;}
.x1d_c01259{left:430.920000px;}
.x3_c01259{left:437.130000px;}
.x1b_c01259{left:442.800000px;}
.x1a_c01259{left:459.810000px;}
.x1c_c01259{left:465.210000px;}
.x2_c01259{left:474.930000px;}
.xf_c01259{left:480.870000px;}
.xe_c01259{left:483.840000px;}
.x1_c01259{left:489.240000px;}
.xd_c01259{left:495.720000px;}
.xc_c01259{left:502.740000px;}
.x19_c01259{left:507.870000px;}
.xb_c01259{left:520.290000px;}
.x18_c01259{left:522.180000px;}
.x17_c01259{left:528.930000px;}
.x14_c01259{left:573.750000px;}
.x11_c01259{left:576.450000px;}
.x16_c01259{left:585.900000px;}
.xa_c01259{left:587.520000px;}
.x12_c01259{left:608.040000px;}
.x9_c01259{left:630.720000px;}
.x13_c01259{left:640.170000px;}
.x15_c01259{left:651.240000px;}
.x10_c01259{left:653.130000px;}
@media print{
.v0_c01259{vertical-align:0.000000pt;}
.ls0_c01259{letter-spacing:0.000000pt;}
.ws0_c01259{word-spacing:0.000000pt;}
.fs1_c01259{font-size:10.666667pt;}
.fs3_c01259{font-size:16.000000pt;}
.fs8_c01259{font-size:21.333333pt;}
.fs0_c01259{font-size:26.666667pt;}
.fsb_c01259{font-size:37.333333pt;}
.fs7_c01259{font-size:42.666667pt;}
.fs2_c01259{font-size:48.000000pt;}
.fs4_c01259{font-size:53.333333pt;}
.fs6_c01259{font-size:58.666667pt;}
.fs9_c01259{font-size:64.000000pt;}
.fsa_c01259{font-size:69.333333pt;}
.fs5_c01259{font-size:74.666667pt;}
.y0_c01259{bottom:0.000000pt;}
.y1c_c01259{bottom:784.557333pt;}
.y1b_c01259{bottom:785.040000pt;}
.y1d_c01259{bottom:789.120000pt;}
.y1a_c01259{bottom:790.800000pt;}
.y18_c01259{bottom:848.165333pt;}
.y16_c01259{bottom:848.277333pt;}
.y17_c01259{bottom:848.278667pt;}
.y11_c01259{bottom:848.400000pt;}
.y19_c01259{bottom:848.518667pt;}
.y12_c01259{bottom:879.245333pt;}
.y15_c01259{bottom:879.362667pt;}
.yf_c01259{bottom:879.600000pt;}
.ye_c01259{bottom:880.664000pt;}
.y10_c01259{bottom:881.280000pt;}
.y14_c01259{bottom:884.154667pt;}
.yd_c01259{bottom:885.840000pt;}
.y13_c01259{bottom:886.800000pt;}
.y8_c01259{bottom:910.917333pt;}
.y7_c01259{bottom:911.273333pt;}
.yb_c01259{bottom:911.401333pt;}
.y6_c01259{bottom:912.245333pt;}
.y9_c01259{bottom:914.400000pt;}
.yc_c01259{bottom:916.320000pt;}
.ya_c01259{bottom:920.880000pt;}
.y3_c01259{bottom:1114.560000pt;}
.y4_c01259{bottom:1114.800000pt;}
.y1_c01259{bottom:1115.520000pt;}
.y2_c01259{bottom:1115.760000pt;}
.y5_c01259{bottom:1116.485333pt;}
.h3_c01259{height:10.666667pt;}
.h5_c01259{height:16.000000pt;}
.ha_c01259{height:21.333333pt;}
.h2_c01259{height:26.666667pt;}
.hd_c01259{height:37.333333pt;}
.h9_c01259{height:42.666667pt;}
.h4_c01259{height:48.000000pt;}
.h6_c01259{height:53.333333pt;}
.h8_c01259{height:58.666667pt;}
.hb_c01259{height:64.000000pt;}
.hc_c01259{height:69.333333pt;}
.h7_c01259{height:74.666667pt;}
.h1_c01259{height:1118.666667pt;}
.h0_c01259{height:1118.880000pt;}
.w1_c01259{width:790.000000pt;}
.w0_c01259{width:790.266667pt;}
.x0_c01259{left:0.000000pt;}
.x6_c01259{left:305.040000pt;}
.x7_c01259{left:324.240000pt;}
.x8_c01259{left:355.680000pt;}
.x5_c01259{left:373.920000pt;}
.x4_c01259{left:380.400000pt;}
.x1d_c01259{left:383.040000pt;}
.x3_c01259{left:388.560000pt;}
.x1b_c01259{left:393.600000pt;}
.x1a_c01259{left:408.720000pt;}
.x1c_c01259{left:413.520000pt;}
.x2_c01259{left:422.160000pt;}
.xf_c01259{left:427.440000pt;}
.xe_c01259{left:430.080000pt;}
.x1_c01259{left:434.880000pt;}
.xd_c01259{left:440.640000pt;}
.xc_c01259{left:446.880000pt;}
.x19_c01259{left:451.440000pt;}
.xb_c01259{left:462.480000pt;}
.x18_c01259{left:464.160000pt;}
.x17_c01259{left:470.160000pt;}
.x14_c01259{left:510.000000pt;}
.x11_c01259{left:512.400000pt;}
.x16_c01259{left:520.800000pt;}
.xa_c01259{left:522.240000pt;}
.x12_c01259{left:540.480000pt;}
.x9_c01259{left:560.640000pt;}
.x13_c01259{left:569.040000pt;}
.x15_c01259{left:578.880000pt;}
.x10_c01259{left:580.560000pt;}
}





/* 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_c01260 {
    display:none;
  }
  .loading-indicator_c01260.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01260 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_c01260 { 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_c01260" -> "#page-container .classname_c01260")
 */
.pf_c01260 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01260 { /* 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_c01260.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01260 { /* 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_c01260 { /* 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_c01260 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01260 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01260 {overflow:visible;}
  }
}
.c_c01260 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01260 { /* 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_c01260:after { /* webkit #35443 */
  content: '';
}
.t_c01260:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01260 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 */
}
.__c01260 { /* 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_c01260 { /* info for Javascript */
  display:none;
}
.l_c01260 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01260 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01260 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01260: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_c01260 {
    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_c01260.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01260.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_c01260 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01260{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01260;src:url('chunks/assets/font_c605e72f209fc835e906f064.woff2')format("woff");}.ff1_c01260{font-family:ff1_c01260;line-height:1.000000;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;}
.mfd_c01260{transform:matrix(0.120792,0.000846,-0.001750,0.249994,0,0);-ms-transform:matrix(0.120792,0.000846,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.120792,0.000846,-0.001750,0.249994,0,0);}
.m1f_c01260{transform:matrix(0.125546,0.001004,-0.002000,0.249992,0,0);-ms-transform:matrix(0.125546,0.001004,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.125546,0.001004,-0.002000,0.249992,0,0);}
.mfe_c01260{transform:matrix(0.138197,0.000967,-0.001750,0.249994,0,0);-ms-transform:matrix(0.138197,0.000967,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.138197,0.000967,-0.001750,0.249994,0,0);}
.mf0_c01260{transform:matrix(0.139534,0.001256,-0.002250,0.249990,0,0);-ms-transform:matrix(0.139534,0.001256,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.139534,0.001256,-0.002250,0.249990,0,0);}
.maa_c01260{transform:matrix(0.154624,0.001855,-0.003000,0.249982,0,0);-ms-transform:matrix(0.154624,0.001855,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.154624,0.001855,-0.003000,0.249982,0,0);}
.mf1_c01260{transform:matrix(0.178268,0.001604,-0.002250,0.249990,0,0);-ms-transform:matrix(0.178268,0.001604,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.178268,0.001604,-0.002250,0.249990,0,0);}
.m14_c01260{transform:matrix(0.186394,0.001491,-0.002000,0.249992,0,0);-ms-transform:matrix(0.186394,0.001491,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.186394,0.001491,-0.002000,0.249992,0,0);}
.m53_c01260{transform:matrix(0.193735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193735,0.000000,0.000000,0.250000,0,0);}
.m10b_c01260{transform:matrix(0.195270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195270,0.000000,0.000000,0.250000,0,0);}
.m61_c01260{transform:matrix(0.196510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196510,0.000000,0.000000,0.250000,0,0);}
.me1_c01260{transform:matrix(0.199625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199625,0.000000,0.000000,0.250000,0,0);}
.m6d_c01260{transform:matrix(0.200225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200225,0.000000,0.000000,0.250000,0,0);}
.m73_c01260{transform:matrix(0.201075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201075,0.000000,0.000000,0.250000,0,0);}
.m48_c01260{transform:matrix(0.204255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204255,0.000000,0.000000,0.250000,0,0);}
.m4b_c01260{transform:matrix(0.204385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204385,0.000000,0.000000,0.250000,0,0);}
.mb0_c01260{transform:matrix(0.205370,0.002464,-0.003000,0.249982,0,0);-ms-transform:matrix(0.205370,0.002464,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.205370,0.002464,-0.003000,0.249982,0,0);}
.m2d_c01260{transform:matrix(0.206208,0.001650,-0.002000,0.249992,0,0);-ms-transform:matrix(0.206208,0.001650,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.206208,0.001650,-0.002000,0.249992,0,0);}
.m105_c01260{transform:matrix(0.206330,0.001444,-0.001750,0.249994,0,0);-ms-transform:matrix(0.206330,0.001444,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.206330,0.001444,-0.001750,0.249994,0,0);}
.ma6_c01260{transform:matrix(0.206455,0.002477,-0.003000,0.249982,0,0);-ms-transform:matrix(0.206455,0.002477,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.206455,0.002477,-0.003000,0.249982,0,0);}
.mf5_c01260{transform:matrix(0.207027,0.001863,-0.002250,0.249990,0,0);-ms-transform:matrix(0.207027,0.001863,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.207027,0.001863,-0.002250,0.249990,0,0);}
.m101_c01260{transform:matrix(0.207430,0.001452,-0.001750,0.249994,0,0);-ms-transform:matrix(0.207430,0.001452,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.207430,0.001452,-0.001750,0.249994,0,0);}
.m2b_c01260{transform:matrix(0.208468,0.001668,-0.002000,0.249992,0,0);-ms-transform:matrix(0.208468,0.001668,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.208468,0.001668,-0.002000,0.249992,0,0);}
.m69_c01260{transform:matrix(0.208560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208560,0.000000,0.000000,0.250000,0,0);}
.mac_c01260{transform:matrix(0.209695,0.002516,-0.003000,0.249982,0,0);-ms-transform:matrix(0.209695,0.002516,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.209695,0.002516,-0.003000,0.249982,0,0);}
.mca_c01260{transform:matrix(0.211305,0.002536,-0.003000,0.249982,0,0);-ms-transform:matrix(0.211305,0.002536,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.211305,0.002536,-0.003000,0.249982,0,0);}
.ma8_c01260{transform:matrix(0.211615,0.002539,-0.003000,0.249982,0,0);-ms-transform:matrix(0.211615,0.002539,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.211615,0.002539,-0.003000,0.249982,0,0);}
.m4e_c01260{transform:matrix(0.212570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212570,0.000000,0.000000,0.250000,0,0);}
.m76_c01260{transform:matrix(0.213135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213135,0.000000,0.000000,0.250000,0,0);}
.mab_c01260{transform:matrix(0.213510,0.002562,-0.003000,0.249982,0,0);-ms-transform:matrix(0.213510,0.002562,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.213510,0.002562,-0.003000,0.249982,0,0);}
.m46_c01260{transform:matrix(0.214005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214005,0.000000,0.000000,0.250000,0,0);}
.mf3_c01260{transform:matrix(0.214076,0.001927,-0.002250,0.249990,0,0);-ms-transform:matrix(0.214076,0.001927,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.214076,0.001927,-0.002250,0.249990,0,0);}
.m70_c01260{transform:matrix(0.214530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214530,0.000000,0.000000,0.250000,0,0);}
.m30_c01260{transform:matrix(0.214753,0.001718,-0.002000,0.249992,0,0);-ms-transform:matrix(0.214753,0.001718,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.214753,0.001718,-0.002000,0.249992,0,0);}
.m4f_c01260{transform:matrix(0.215450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215450,0.000000,0.000000,0.250000,0,0);}
.m3a_c01260{transform:matrix(0.216328,0.001731,-0.002000,0.249992,0,0);-ms-transform:matrix(0.216328,0.001731,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.216328,0.001731,-0.002000,0.249992,0,0);}
.mb5_c01260{transform:matrix(0.217024,0.002604,-0.003000,0.249982,0,0);-ms-transform:matrix(0.217024,0.002604,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.217024,0.002604,-0.003000,0.249982,0,0);}
.m35_c01260{transform:matrix(0.217273,0.001738,-0.002000,0.249992,0,0);-ms-transform:matrix(0.217273,0.001738,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.217273,0.001738,-0.002000,0.249992,0,0);}
.m74_c01260{transform:matrix(0.217705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217705,0.000000,0.000000,0.250000,0,0);}
.mcc_c01260{transform:matrix(0.218074,0.002617,-0.003000,0.249982,0,0);-ms-transform:matrix(0.218074,0.002617,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.218074,0.002617,-0.003000,0.249982,0,0);}
.m4a_c01260{transform:matrix(0.218515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218515,0.000000,0.000000,0.250000,0,0);}
.m27_c01260{transform:matrix(0.219153,0.001753,-0.002000,0.249992,0,0);-ms-transform:matrix(0.219153,0.001753,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.219153,0.001753,-0.002000,0.249992,0,0);}
.mc4_c01260{transform:matrix(0.219939,0.002639,-0.003000,0.249982,0,0);-ms-transform:matrix(0.219939,0.002639,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.219939,0.002639,-0.003000,0.249982,0,0);}
.m72_c01260{transform:matrix(0.220190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220190,0.000000,0.000000,0.250000,0,0);}
.m102_c01260{transform:matrix(0.220435,0.001543,-0.001750,0.249994,0,0);-ms-transform:matrix(0.220435,0.001543,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.220435,0.001543,-0.001750,0.249994,0,0);}
.m6c_c01260{transform:matrix(0.220780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220780,0.000000,0.000000,0.250000,0,0);}
.m16_c01260{transform:matrix(0.222618,0.001781,-0.002000,0.249992,0,0);-ms-transform:matrix(0.222618,0.001781,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.222618,0.001781,-0.002000,0.249992,0,0);}
.m33_c01260{transform:matrix(0.222838,0.001783,-0.002000,0.249992,0,0);-ms-transform:matrix(0.222838,0.001783,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.222838,0.001783,-0.002000,0.249992,0,0);}
.m51_c01260{transform:matrix(0.223075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223075,0.000000,0.000000,0.250000,0,0);}
.m1a_c01260{transform:matrix(0.223308,0.001786,-0.002000,0.249992,0,0);-ms-transform:matrix(0.223308,0.001786,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.223308,0.001786,-0.002000,0.249992,0,0);}
.mf7_c01260{transform:matrix(0.223736,0.002014,-0.002250,0.249990,0,0);-ms-transform:matrix(0.223736,0.002014,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.223736,0.002014,-0.002250,0.249990,0,0);}
.m5c_c01260{transform:matrix(0.223970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223970,0.000000,0.000000,0.250000,0,0);}
.mb3_c01260{transform:matrix(0.224704,0.002696,-0.003000,0.249982,0,0);-ms-transform:matrix(0.224704,0.002696,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.224704,0.002696,-0.003000,0.249982,0,0);}
.m65_c01260{transform:matrix(0.224720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224720,0.000000,0.000000,0.250000,0,0);}
.m1c_c01260{transform:matrix(0.224898,0.001799,-0.002000,0.249992,0,0);-ms-transform:matrix(0.224898,0.001799,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.224898,0.001799,-0.002000,0.249992,0,0);}
.m2e_c01260{transform:matrix(0.225063,0.001801,-0.002000,0.249992,0,0);-ms-transform:matrix(0.225063,0.001801,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.225063,0.001801,-0.002000,0.249992,0,0);}
.maf_c01260{transform:matrix(0.225654,0.002708,-0.003000,0.249982,0,0);-ms-transform:matrix(0.225654,0.002708,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.225654,0.002708,-0.003000,0.249982,0,0);}
.m58_c01260{transform:matrix(0.225940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225940,0.000000,0.000000,0.250000,0,0);}
.mcf_c01260{transform:matrix(0.226824,0.002722,-0.003000,0.249982,0,0);-ms-transform:matrix(0.226824,0.002722,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.226824,0.002722,-0.003000,0.249982,0,0);}
.m5f_c01260{transform:matrix(0.227005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227005,0.000000,0.000000,0.250000,0,0);}
.m44_c01260{transform:matrix(0.227185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227185,0.000000,0.000000,0.250000,0,0);}
.m6a_c01260{transform:matrix(0.228140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228140,0.000000,0.000000,0.250000,0,0);}
.mf_c01260{transform:matrix(0.228533,0.001828,-0.002000,0.249992,0,0);-ms-transform:matrix(0.228533,0.001828,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.228533,0.001828,-0.002000,0.249992,0,0);}
.m7c_c01260{transform:matrix(0.228965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228965,0.000000,0.000000,0.250000,0,0);}
.mb8_c01260{transform:matrix(0.229453,0.002753,-0.003000,0.249982,0,0);-ms-transform:matrix(0.229453,0.002753,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.229453,0.002753,-0.003000,0.249982,0,0);}
.mec_c01260{transform:matrix(0.229570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229570,0.000000,0.000000,0.250000,0,0);}
.m32_c01260{transform:matrix(0.230453,0.001844,-0.002000,0.249992,0,0);-ms-transform:matrix(0.230453,0.001844,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.230453,0.001844,-0.002000,0.249992,0,0);}
.md4_c01260{transform:matrix(0.232640,0.003024,-0.003250,0.249979,0,0);-ms-transform:matrix(0.232640,0.003024,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.232640,0.003024,-0.003250,0.249979,0,0);}
.mad_c01260{transform:matrix(0.232708,0.002792,-0.003000,0.249982,0,0);-ms-transform:matrix(0.232708,0.002792,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.232708,0.002792,-0.003000,0.249982,0,0);}
.m26_c01260{transform:matrix(0.233233,0.001866,-0.002000,0.249992,0,0);-ms-transform:matrix(0.233233,0.001866,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.233233,0.001866,-0.002000,0.249992,0,0);}
.mee_c01260{transform:matrix(0.233240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233240,0.000000,0.000000,0.250000,0,0);}
.mbb_c01260{transform:matrix(0.233388,0.002801,-0.003000,0.249982,0,0);-ms-transform:matrix(0.233388,0.002801,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.233388,0.002801,-0.003000,0.249982,0,0);}
.m67_c01260{transform:matrix(0.233405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233405,0.000000,0.000000,0.250000,0,0);}
.md6_c01260{transform:matrix(0.233640,0.003037,-0.003250,0.249979,0,0);-ms-transform:matrix(0.233640,0.003037,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.233640,0.003037,-0.003250,0.249979,0,0);}
.m34_c01260{transform:matrix(0.233973,0.001872,-0.002000,0.249992,0,0);-ms-transform:matrix(0.233973,0.001872,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.233973,0.001872,-0.002000,0.249992,0,0);}
.m38_c01260{transform:matrix(0.234268,0.001874,-0.002000,0.249992,0,0);-ms-transform:matrix(0.234268,0.001874,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.234268,0.001874,-0.002000,0.249992,0,0);}
.m106_c01260{transform:matrix(0.234314,0.001640,-0.001750,0.249994,0,0);-ms-transform:matrix(0.234314,0.001640,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.234314,0.001640,-0.001750,0.249994,0,0);}
.mbd_c01260{transform:matrix(0.234838,0.002818,-0.003000,0.249982,0,0);-ms-transform:matrix(0.234838,0.002818,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.234838,0.002818,-0.003000,0.249982,0,0);}
.md_c01260{transform:matrix(0.235072,0.001881,-0.002000,0.249992,0,0);-ms-transform:matrix(0.235072,0.001881,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.235072,0.001881,-0.002000,0.249992,0,0);}
.mfb_c01260{transform:matrix(0.235125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235125,0.000000,0.000000,0.250000,0,0);}
.ma9_c01260{transform:matrix(0.235288,0.002823,-0.003000,0.249982,0,0);-ms-transform:matrix(0.235288,0.002823,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.235288,0.002823,-0.003000,0.249982,0,0);}
.m3f_c01260{transform:matrix(0.235385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235385,0.000000,0.000000,0.250000,0,0);}
.m103_c01260{transform:matrix(0.235999,0.001652,-0.001750,0.249994,0,0);-ms-transform:matrix(0.235999,0.001652,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.235999,0.001652,-0.001750,0.249994,0,0);}
.m71_c01260{transform:matrix(0.236070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236070,0.000000,0.000000,0.250000,0,0);}
.md9_c01260{transform:matrix(0.236090,0.003069,-0.003250,0.249979,0,0);-ms-transform:matrix(0.236090,0.003069,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.236090,0.003069,-0.003250,0.249979,0,0);}
.mb1_c01260{transform:matrix(0.236093,0.002833,-0.003000,0.249982,0,0);-ms-transform:matrix(0.236093,0.002833,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.236093,0.002833,-0.003000,0.249982,0,0);}
.md2_c01260{transform:matrix(0.236220,0.003071,-0.003250,0.249979,0,0);-ms-transform:matrix(0.236220,0.003071,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.236220,0.003071,-0.003250,0.249979,0,0);}
.mb7_c01260{transform:matrix(0.236708,0.002840,-0.003000,0.249982,0,0);-ms-transform:matrix(0.236708,0.002840,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.236708,0.002840,-0.003000,0.249982,0,0);}
.m6b_c01260{transform:matrix(0.236755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236755,0.000000,0.000000,0.250000,0,0);}
.m3_c01260{transform:matrix(0.237175,0.002135,-0.002250,0.249990,0,0);-ms-transform:matrix(0.237175,0.002135,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.237175,0.002135,-0.002250,0.249990,0,0);}
.mf4_c01260{transform:matrix(0.237795,0.002140,-0.002250,0.249990,0,0);-ms-transform:matrix(0.237795,0.002140,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.237795,0.002140,-0.002250,0.249990,0,0);}
.m5b_c01260{transform:matrix(0.238370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238370,0.000000,0.000000,0.250000,0,0);}
.m8c_c01260{transform:matrix(0.238730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238730,0.000000,0.000000,0.250000,0,0);}
.m66_c01260{transform:matrix(0.238810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238810,0.000000,0.000000,0.250000,0,0);}
.mb9_c01260{transform:matrix(0.239023,0.002868,-0.003000,0.249982,0,0);-ms-transform:matrix(0.239023,0.002868,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.239023,0.002868,-0.003000,0.249982,0,0);}
.mc2_c01260{transform:matrix(0.239163,0.002870,-0.003000,0.249982,0,0);-ms-transform:matrix(0.239163,0.002870,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.239163,0.002870,-0.003000,0.249982,0,0);}
.md7_c01260{transform:matrix(0.239275,0.003111,-0.003250,0.249979,0,0);-ms-transform:matrix(0.239275,0.003111,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.239275,0.003111,-0.003250,0.249979,0,0);}
.mc7_c01260{transform:matrix(0.239368,0.002872,-0.003000,0.249982,0,0);-ms-transform:matrix(0.239368,0.002872,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.239368,0.002872,-0.003000,0.249982,0,0);}
.me6_c01260{transform:matrix(0.239830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239830,0.000000,0.000000,0.250000,0,0);}
.m7a_c01260{transform:matrix(0.240105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240105,0.000000,0.000000,0.250000,0,0);}
.mf2_c01260{transform:matrix(0.240110,0.002161,-0.002250,0.249990,0,0);-ms-transform:matrix(0.240110,0.002161,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.240110,0.002161,-0.002250,0.249990,0,0);}
.md1_c01260{transform:matrix(0.240575,0.003127,-0.003250,0.249979,0,0);-ms-transform:matrix(0.240575,0.003127,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.240575,0.003127,-0.003250,0.249979,0,0);}
.mf8_c01260{transform:matrix(0.240850,0.002168,-0.002250,0.249990,0,0);-ms-transform:matrix(0.240850,0.002168,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.240850,0.002168,-0.002250,0.249990,0,0);}
.m3d_c01260{transform:matrix(0.240960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240960,0.000000,0.000000,0.250000,0,0);}
.m90_c01260{transform:matrix(0.241200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241200,0.000000,0.000000,0.250000,0,0);}
.m2a_c01260{transform:matrix(0.241292,0.001930,-0.002000,0.249992,0,0);-ms-transform:matrix(0.241292,0.001930,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.241292,0.001930,-0.002000,0.249992,0,0);}
.m56_c01260{transform:matrix(0.241415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241415,0.000000,0.000000,0.250000,0,0);}
.m107_c01260{transform:matrix(0.241809,0.001693,-0.001750,0.249994,0,0);-ms-transform:matrix(0.241809,0.001693,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.241809,0.001693,-0.001750,0.249994,0,0);}
.m47_c01260{transform:matrix(0.242115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242115,0.000000,0.000000,0.250000,0,0);}
.me9_c01260{transform:matrix(0.242745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242745,0.000000,0.000000,0.250000,0,0);}
.m4c_c01260{transform:matrix(0.242890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242890,0.000000,0.000000,0.250000,0,0);}
.m24_c01260{transform:matrix(0.243047,0.001944,-0.002000,0.249992,0,0);-ms-transform:matrix(0.243047,0.001944,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.243047,0.001944,-0.002000,0.249992,0,0);}
.m3b_c01260{transform:matrix(0.244192,0.001954,-0.002000,0.249992,0,0);-ms-transform:matrix(0.244192,0.001954,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.244192,0.001954,-0.002000,0.249992,0,0);}
.m62_c01260{transform:matrix(0.244295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244295,0.000000,0.000000,0.250000,0,0);}
.mae_c01260{transform:matrix(0.244297,0.002932,-0.003000,0.249982,0,0);-ms-transform:matrix(0.244297,0.002932,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.244297,0.002932,-0.003000,0.249982,0,0);}
.m81_c01260{transform:matrix(0.244435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244435,0.000000,0.000000,0.250000,0,0);}
.m39_c01260{transform:matrix(0.244597,0.001957,-0.002000,0.249992,0,0);-ms-transform:matrix(0.244597,0.001957,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.244597,0.001957,-0.002000,0.249992,0,0);}
.mc9_c01260{transform:matrix(0.245197,0.002942,-0.003000,0.249982,0,0);-ms-transform:matrix(0.245197,0.002942,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.245197,0.002942,-0.003000,0.249982,0,0);}
.ma4_c01260{transform:matrix(0.245222,0.002943,-0.003000,0.249982,0,0);-ms-transform:matrix(0.245222,0.002943,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.245222,0.002943,-0.003000,0.249982,0,0);}
.m108_c01260{transform:matrix(0.245270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245270,0.000000,0.000000,0.250000,0,0);}
.m37_c01260{transform:matrix(0.245397,0.001963,-0.002000,0.249992,0,0);-ms-transform:matrix(0.245397,0.001963,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.245397,0.001963,-0.002000,0.249992,0,0);}
.m7e_c01260{transform:matrix(0.245675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245675,0.000000,0.000000,0.250000,0,0);}
.m29_c01260{transform:matrix(0.246532,0.001972,-0.002000,0.249992,0,0);-ms-transform:matrix(0.246532,0.001972,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.246532,0.001972,-0.002000,0.249992,0,0);}
.m31_c01260{transform:matrix(0.246542,0.001972,-0.002000,0.249992,0,0);-ms-transform:matrix(0.246542,0.001972,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.246542,0.001972,-0.002000,0.249992,0,0);}
.m6e_c01260{transform:matrix(0.246790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246790,0.000000,0.000000,0.250000,0,0);}
.m49_c01260{transform:matrix(0.247310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247310,0.000000,0.000000,0.250000,0,0);}
.m9f_c01260{transform:matrix(0.248087,0.002977,-0.003000,0.249982,0,0);-ms-transform:matrix(0.248087,0.002977,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.248087,0.002977,-0.003000,0.249982,0,0);}
.m8e_c01260{transform:matrix(0.248445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248445,0.000000,0.000000,0.250000,0,0);}
.m5d_c01260{transform:matrix(0.248620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248620,0.000000,0.000000,0.250000,0,0);}
.ma7_c01260{transform:matrix(0.249302,0.002992,-0.003000,0.249982,0,0);-ms-transform:matrix(0.249302,0.002992,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.249302,0.002992,-0.003000,0.249982,0,0);}
.m75_c01260{transform:matrix(0.249365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249365,0.000000,0.000000,0.250000,0,0);}
.mb_c01260{transform:matrix(0.249562,0.001996,-0.002000,0.249992,0,0);-ms-transform:matrix(0.249562,0.001996,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.249562,0.001996,-0.002000,0.249992,0,0);}
.m3c_c01260{transform:matrix(0.249587,0.001997,-0.002000,0.249992,0,0);-ms-transform:matrix(0.249587,0.001997,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.249587,0.001997,-0.002000,0.249992,0,0);}
.m86_c01260{transform:matrix(0.250105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250105,0.000000,0.000000,0.250000,0,0);}
.m2f_c01260{transform:matrix(0.250117,0.002001,-0.002000,0.249992,0,0);-ms-transform:matrix(0.250117,0.002001,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.250117,0.002001,-0.002000,0.249992,0,0);}
.mff_c01260{transform:matrix(0.250964,0.001757,-0.001750,0.249994,0,0);-ms-transform:matrix(0.250964,0.001757,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.250964,0.001757,-0.001750,0.249994,0,0);}
.m55_c01260{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m20_c01260{transform:matrix(0.251392,0.002011,-0.002000,0.249992,0,0);-ms-transform:matrix(0.251392,0.002011,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.251392,0.002011,-0.002000,0.249992,0,0);}
.mc0_c01260{transform:matrix(0.251427,0.003017,-0.003000,0.249982,0,0);-ms-transform:matrix(0.251427,0.003017,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.251427,0.003017,-0.003000,0.249982,0,0);}
.mc6_c01260{transform:matrix(0.252417,0.003029,-0.003000,0.249982,0,0);-ms-transform:matrix(0.252417,0.003029,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.252417,0.003029,-0.003000,0.249982,0,0);}
.m6_c01260{transform:matrix(0.252915,0.002276,-0.002250,0.249990,0,0);-ms-transform:matrix(0.252915,0.002276,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.252915,0.002276,-0.002250,0.249990,0,0);}
.mfc_c01260{transform:matrix(0.252925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252925,0.000000,0.000000,0.250000,0,0);}
.m54_c01260{transform:matrix(0.253005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253005,0.000000,0.000000,0.250000,0,0);}
.mba_c01260{transform:matrix(0.253142,0.003038,-0.003000,0.249982,0,0);-ms-transform:matrix(0.253142,0.003038,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.253142,0.003038,-0.003000,0.249982,0,0);}
.m4d_c01260{transform:matrix(0.253300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253300,0.000000,0.000000,0.250000,0,0);}
.md0_c01260{transform:matrix(0.253447,0.003041,-0.003000,0.249982,0,0);-ms-transform:matrix(0.253447,0.003041,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.253447,0.003041,-0.003000,0.249982,0,0);}
.m36_c01260{transform:matrix(0.253507,0.002028,-0.002000,0.249992,0,0);-ms-transform:matrix(0.253507,0.002028,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.253507,0.002028,-0.002000,0.249992,0,0);}
.m17_c01260{transform:matrix(0.253772,0.002030,-0.002000,0.249992,0,0);-ms-transform:matrix(0.253772,0.002030,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.253772,0.002030,-0.002000,0.249992,0,0);}
.m104_c01260{transform:matrix(0.253944,0.001778,-0.001750,0.249994,0,0);-ms-transform:matrix(0.253944,0.001778,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.253944,0.001778,-0.001750,0.249994,0,0);}
.m100_c01260{transform:matrix(0.254484,0.001781,-0.001750,0.249994,0,0);-ms-transform:matrix(0.254484,0.001781,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.254484,0.001781,-0.001750,0.249994,0,0);}
.m8f_c01260{transform:matrix(0.254755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254755,0.000000,0.000000,0.250000,0,0);}
.mf9_c01260{transform:matrix(0.255455,0.002299,-0.002250,0.249990,0,0);-ms-transform:matrix(0.255455,0.002299,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.255455,0.002299,-0.002250,0.249990,0,0);}
.m50_c01260{transform:matrix(0.255650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255650,0.000000,0.000000,0.250000,0,0);}
.m95_c01260{transform:matrix(0.255672,0.003068,-0.003000,0.249982,0,0);-ms-transform:matrix(0.255672,0.003068,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.255672,0.003068,-0.003000,0.249982,0,0);}
.ma5_c01260{transform:matrix(0.255767,0.003069,-0.003000,0.249982,0,0);-ms-transform:matrix(0.255767,0.003069,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.255767,0.003069,-0.003000,0.249982,0,0);}
.m9e_c01260{transform:matrix(0.256132,0.003074,-0.003000,0.249982,0,0);-ms-transform:matrix(0.256132,0.003074,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.256132,0.003074,-0.003000,0.249982,0,0);}
.mf6_c01260{transform:matrix(0.256360,0.002307,-0.002250,0.249990,0,0);-ms-transform:matrix(0.256360,0.002307,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.256360,0.002307,-0.002250,0.249990,0,0);}
.m7d_c01260{transform:matrix(0.256480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256480,0.000000,0.000000,0.250000,0,0);}
.m2c_c01260{transform:matrix(0.256812,0.002054,-0.002000,0.249992,0,0);-ms-transform:matrix(0.256812,0.002054,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.256812,0.002054,-0.002000,0.249992,0,0);}
.me0_c01260{transform:matrix(0.257205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257205,0.000000,0.000000,0.250000,0,0);}
.mbe_c01260{transform:matrix(0.257726,0.003093,-0.003000,0.249982,0,0);-ms-transform:matrix(0.257726,0.003093,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.257726,0.003093,-0.003000,0.249982,0,0);}
.m1d_c01260{transform:matrix(0.258112,0.002065,-0.002000,0.249992,0,0);-ms-transform:matrix(0.258112,0.002065,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.258112,0.002065,-0.002000,0.249992,0,0);}
.m89_c01260{transform:matrix(0.258245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258245,0.000000,0.000000,0.250000,0,0);}
.mbf_c01260{transform:matrix(0.258591,0.003103,-0.003000,0.249982,0,0);-ms-transform:matrix(0.258591,0.003103,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.258591,0.003103,-0.003000,0.249982,0,0);}
.m6f_c01260{transform:matrix(0.259210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259210,0.000000,0.000000,0.250000,0,0);}
.m9c_c01260{transform:matrix(0.259441,0.003113,-0.003000,0.249982,0,0);-ms-transform:matrix(0.259441,0.003113,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.259441,0.003113,-0.003000,0.249982,0,0);}
.m79_c01260{transform:matrix(0.259530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259530,0.000000,0.000000,0.250000,0,0);}
.m93_c01260{transform:matrix(0.260501,0.003126,-0.003000,0.249982,0,0);-ms-transform:matrix(0.260501,0.003126,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.260501,0.003126,-0.003000,0.249982,0,0);}
.mb6_c01260{transform:matrix(0.261596,0.003139,-0.003000,0.249982,0,0);-ms-transform:matrix(0.261596,0.003139,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.261596,0.003139,-0.003000,0.249982,0,0);}
.mb2_c01260{transform:matrix(0.262106,0.003145,-0.003000,0.249982,0,0);-ms-transform:matrix(0.262106,0.003145,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.262106,0.003145,-0.003000,0.249982,0,0);}
.me5_c01260{transform:matrix(0.262255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262255,0.000000,0.000000,0.250000,0,0);}
.med_c01260{transform:matrix(0.262490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262490,0.000000,0.000000,0.250000,0,0);}
.m59_c01260{transform:matrix(0.262930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262930,0.000000,0.000000,0.250000,0,0);}
.m28_c01260{transform:matrix(0.263297,0.002106,-0.002000,0.249992,0,0);-ms-transform:matrix(0.263297,0.002106,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.263297,0.002106,-0.002000,0.249992,0,0);}
.m43_c01260{transform:matrix(0.263495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263495,0.000000,0.000000,0.250000,0,0);}
.m7f_c01260{transform:matrix(0.263760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263760,0.000000,0.000000,0.250000,0,0);}
.mcd_c01260{transform:matrix(0.264316,0.003172,-0.003000,0.249982,0,0);-ms-transform:matrix(0.264316,0.003172,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.264316,0.003172,-0.003000,0.249982,0,0);}
.m96_c01260{transform:matrix(0.264931,0.003179,-0.003000,0.249982,0,0);-ms-transform:matrix(0.264931,0.003179,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.264931,0.003179,-0.003000,0.249982,0,0);}
.mcb_c01260{transform:matrix(0.264956,0.003179,-0.003000,0.249982,0,0);-ms-transform:matrix(0.264956,0.003179,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.264956,0.003179,-0.003000,0.249982,0,0);}
.md8_c01260{transform:matrix(0.265788,0.003455,-0.003250,0.249979,0,0);-ms-transform:matrix(0.265788,0.003455,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.265788,0.003455,-0.003250,0.249979,0,0);}
.m45_c01260{transform:matrix(0.265800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265800,0.000000,0.000000,0.250000,0,0);}
.m64_c01260{transform:matrix(0.265855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265855,0.000000,0.000000,0.250000,0,0);}
.m25_c01260{transform:matrix(0.266226,0.002130,-0.002000,0.249992,0,0);-ms-transform:matrix(0.266226,0.002130,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.266226,0.002130,-0.002000,0.249992,0,0);}
.m1e_c01260{transform:matrix(0.266411,0.002131,-0.002000,0.249992,0,0);-ms-transform:matrix(0.266411,0.002131,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.266411,0.002131,-0.002000,0.249992,0,0);}
.me7_c01260{transform:matrix(0.266690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266690,0.000000,0.000000,0.250000,0,0);}
.mc8_c01260{transform:matrix(0.267076,0.003205,-0.003000,0.249982,0,0);-ms-transform:matrix(0.267076,0.003205,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.267076,0.003205,-0.003000,0.249982,0,0);}
.me4_c01260{transform:matrix(0.267160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267160,0.000000,0.000000,0.250000,0,0);}
.m0_c01260{transform:matrix(0.267540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267540,0.000000,0.000000,0.250000,0,0);}
.m52_c01260{transform:matrix(0.267970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267970,0.000000,0.000000,0.250000,0,0);}
.m42_c01260{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m78_c01260{transform:matrix(0.268265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268265,0.000000,0.000000,0.250000,0,0);}
.m109_c01260{transform:matrix(0.268665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268665,0.000000,0.000000,0.250000,0,0);}
.m1_c01260{transform:matrix(0.268885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268885,0.000000,0.000000,0.250000,0,0);}
.m63_c01260{transform:matrix(0.268915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268915,0.000000,0.000000,0.250000,0,0);}
.m77_c01260{transform:matrix(0.268935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268935,0.000000,0.000000,0.250000,0,0);}
.me_c01260{transform:matrix(0.268951,0.002152,-0.002000,0.249992,0,0);-ms-transform:matrix(0.268951,0.002152,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.268951,0.002152,-0.002000,0.249992,0,0);}
.m15_c01260{transform:matrix(0.269031,0.002152,-0.002000,0.249992,0,0);-ms-transform:matrix(0.269031,0.002152,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.269031,0.002152,-0.002000,0.249992,0,0);}
.m60_c01260{transform:matrix(0.269585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269585,0.000000,0.000000,0.250000,0,0);}
.mdc_c01260{transform:matrix(0.269665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269665,0.000000,0.000000,0.250000,0,0);}
.m5_c01260{transform:matrix(0.269979,0.002430,-0.002250,0.249990,0,0);-ms-transform:matrix(0.269979,0.002430,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.269979,0.002430,-0.002250,0.249990,0,0);}
.mdf_c01260{transform:matrix(0.270275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270275,0.000000,0.000000,0.250000,0,0);}
.m7b_c01260{transform:matrix(0.270295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270295,0.000000,0.000000,0.250000,0,0);}
.m41_c01260{transform:matrix(0.270490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270490,0.000000,0.000000,0.250000,0,0);}
.mb4_c01260{transform:matrix(0.270491,0.003246,-0.003000,0.249982,0,0);-ms-transform:matrix(0.270491,0.003246,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.270491,0.003246,-0.003000,0.249982,0,0);}
.mea_c01260{transform:matrix(0.270605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270605,0.000000,0.000000,0.250000,0,0);}
.m19_c01260{transform:matrix(0.270996,0.002168,-0.002000,0.249992,0,0);-ms-transform:matrix(0.270996,0.002168,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.270996,0.002168,-0.002000,0.249992,0,0);}
.m21_c01260{transform:matrix(0.271006,0.002168,-0.002000,0.249992,0,0);-ms-transform:matrix(0.271006,0.002168,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.271006,0.002168,-0.002000,0.249992,0,0);}
.m3e_c01260{transform:matrix(0.271210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271210,0.000000,0.000000,0.250000,0,0);}
.m2_c01260{transform:matrix(0.271344,0.002442,-0.002250,0.249990,0,0);-ms-transform:matrix(0.271344,0.002442,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.271344,0.002442,-0.002250,0.249990,0,0);}
.m10_c01260{transform:matrix(0.271411,0.002171,-0.002000,0.249992,0,0);-ms-transform:matrix(0.271411,0.002171,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.271411,0.002171,-0.002000,0.249992,0,0);}
.m18_c01260{transform:matrix(0.271461,0.002172,-0.002000,0.249992,0,0);-ms-transform:matrix(0.271461,0.002172,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.271461,0.002172,-0.002000,0.249992,0,0);}
.m40_c01260{transform:matrix(0.271680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271680,0.000000,0.000000,0.250000,0,0);}
.m11_c01260{transform:matrix(0.271796,0.002174,-0.002000,0.249992,0,0);-ms-transform:matrix(0.271796,0.002174,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.271796,0.002174,-0.002000,0.249992,0,0);}
.m8a_c01260{transform:matrix(0.271865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271865,0.000000,0.000000,0.250000,0,0);}
.mc_c01260{transform:matrix(0.272311,0.002178,-0.002000,0.249992,0,0);-ms-transform:matrix(0.272311,0.002178,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.272311,0.002178,-0.002000,0.249992,0,0);}
.mce_c01260{transform:matrix(0.272500,0.003270,-0.003000,0.249982,0,0);-ms-transform:matrix(0.272500,0.003270,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.272500,0.003270,-0.003000,0.249982,0,0);}
.m97_c01260{transform:matrix(0.272955,0.003275,-0.003000,0.249982,0,0);-ms-transform:matrix(0.272955,0.003275,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.272955,0.003275,-0.003000,0.249982,0,0);}
.m9d_c01260{transform:matrix(0.273030,0.003276,-0.003000,0.249982,0,0);-ms-transform:matrix(0.273030,0.003276,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.273030,0.003276,-0.003000,0.249982,0,0);}
.m22_c01260{transform:matrix(0.273061,0.002184,-0.002000,0.249992,0,0);-ms-transform:matrix(0.273061,0.002184,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.273061,0.002184,-0.002000,0.249992,0,0);}
.md5_c01260{transform:matrix(0.273127,0.003551,-0.003250,0.249979,0,0);-ms-transform:matrix(0.273127,0.003551,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.273127,0.003551,-0.003250,0.249979,0,0);}
.me8_c01260{transform:matrix(0.273345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273345,0.000000,0.000000,0.250000,0,0);}
.me3_c01260{transform:matrix(0.273670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273670,0.000000,0.000000,0.250000,0,0);}
.mc3_c01260{transform:matrix(0.274130,0.003290,-0.003000,0.249982,0,0);-ms-transform:matrix(0.274130,0.003290,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.274130,0.003290,-0.003000,0.249982,0,0);}
.meb_c01260{transform:matrix(0.274545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274545,0.000000,0.000000,0.250000,0,0);}
.mbc_c01260{transform:matrix(0.276515,0.003318,-0.003000,0.249982,0,0);-ms-transform:matrix(0.276515,0.003318,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.276515,0.003318,-0.003000,0.249982,0,0);}
.m5e_c01260{transform:matrix(0.276935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276935,0.000000,0.000000,0.250000,0,0);}
.mc1_c01260{transform:matrix(0.277680,0.003332,-0.003000,0.249982,0,0);-ms-transform:matrix(0.277680,0.003332,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.277680,0.003332,-0.003000,0.249982,0,0);}
.m8d_c01260{transform:matrix(0.277700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277700,0.000000,0.000000,0.250000,0,0);}
.m1b_c01260{transform:matrix(0.278481,0.002228,-0.002000,0.249992,0,0);-ms-transform:matrix(0.278481,0.002228,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.278481,0.002228,-0.002000,0.249992,0,0);}
.m57_c01260{transform:matrix(0.279635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279635,0.000000,0.000000,0.250000,0,0);}
.m80_c01260{transform:matrix(0.279645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279645,0.000000,0.000000,0.250000,0,0);}
.md3_c01260{transform:matrix(0.280701,0.003649,-0.003250,0.249979,0,0);-ms-transform:matrix(0.280701,0.003649,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.280701,0.003649,-0.003250,0.249979,0,0);}
.m10a_c01260{transform:matrix(0.280715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280715,0.000000,0.000000,0.250000,0,0);}
.m4_c01260{transform:matrix(0.281164,0.002530,-0.002250,0.249990,0,0);-ms-transform:matrix(0.281164,0.002530,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.281164,0.002530,-0.002250,0.249990,0,0);}
.m68_c01260{transform:matrix(0.281285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281285,0.000000,0.000000,0.250000,0,0);}
.mc5_c01260{transform:matrix(0.281695,0.003380,-0.003000,0.249982,0,0);-ms-transform:matrix(0.281695,0.003380,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.281695,0.003380,-0.003000,0.249982,0,0);}
.m85_c01260{transform:matrix(0.281725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281725,0.000000,0.000000,0.250000,0,0);}
.m23_c01260{transform:matrix(0.282041,0.002256,-0.002000,0.249992,0,0);-ms-transform:matrix(0.282041,0.002256,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.282041,0.002256,-0.002000,0.249992,0,0);}
.m82_c01260{transform:matrix(0.283340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283340,0.000000,0.000000,0.250000,0,0);}
.mef_c01260{transform:matrix(0.284820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284820,0.000000,0.000000,0.250000,0,0);}
.mda_c01260{transform:matrix(0.286245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286245,0.000000,0.000000,0.250000,0,0);}
.m98_c01260{transform:matrix(0.287274,0.003447,-0.003000,0.249982,0,0);-ms-transform:matrix(0.287274,0.003447,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.287274,0.003447,-0.003000,0.249982,0,0);}
.ma2_c01260{transform:matrix(0.289054,0.003469,-0.003000,0.249982,0,0);-ms-transform:matrix(0.289054,0.003469,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.289054,0.003469,-0.003000,0.249982,0,0);}
.m13_c01260{transform:matrix(0.289906,0.002319,-0.002000,0.249992,0,0);-ms-transform:matrix(0.289906,0.002319,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.289906,0.002319,-0.002000,0.249992,0,0);}
.m91_c01260{transform:matrix(0.292484,0.003510,-0.003000,0.249982,0,0);-ms-transform:matrix(0.292484,0.003510,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.292484,0.003510,-0.003000,0.249982,0,0);}
.ma3_c01260{transform:matrix(0.292559,0.003511,-0.003000,0.249982,0,0);-ms-transform:matrix(0.292559,0.003511,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.292559,0.003511,-0.003000,0.249982,0,0);}
.m84_c01260{transform:matrix(0.292990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292990,0.000000,0.000000,0.250000,0,0);}
.mfa_c01260{transform:matrix(0.294523,0.002651,-0.002250,0.249990,0,0);-ms-transform:matrix(0.294523,0.002651,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.294523,0.002651,-0.002250,0.249990,0,0);}
.m92_c01260{transform:matrix(0.295499,0.003546,-0.003000,0.249982,0,0);-ms-transform:matrix(0.295499,0.003546,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.295499,0.003546,-0.003000,0.249982,0,0);}
.m9b_c01260{transform:matrix(0.295634,0.003548,-0.003000,0.249982,0,0);-ms-transform:matrix(0.295634,0.003548,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.295634,0.003548,-0.003000,0.249982,0,0);}
.m87_c01260{transform:matrix(0.296385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296385,0.000000,0.000000,0.250000,0,0);}
.m94_c01260{transform:matrix(0.296634,0.003560,-0.003000,0.249982,0,0);-ms-transform:matrix(0.296634,0.003560,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.296634,0.003560,-0.003000,0.249982,0,0);}
.m83_c01260{transform:matrix(0.297270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297270,0.000000,0.000000,0.250000,0,0);}
.ma0_c01260{transform:matrix(0.298803,0.003586,-0.003000,0.249982,0,0);-ms-transform:matrix(0.298803,0.003586,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.298803,0.003586,-0.003000,0.249982,0,0);}
.ma1_c01260{transform:matrix(0.301428,0.003617,-0.003000,0.249982,0,0);-ms-transform:matrix(0.301428,0.003617,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.301428,0.003617,-0.003000,0.249982,0,0);}
.m99_c01260{transform:matrix(0.301858,0.003622,-0.003000,0.249982,0,0);-ms-transform:matrix(0.301858,0.003622,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.301858,0.003622,-0.003000,0.249982,0,0);}
.m88_c01260{transform:matrix(0.304025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304025,0.000000,0.000000,0.250000,0,0);}
.m9a_c01260{transform:matrix(0.304413,0.003653,-0.003000,0.249982,0,0);-ms-transform:matrix(0.304413,0.003653,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.304413,0.003653,-0.003000,0.249982,0,0);}
.me2_c01260{transform:matrix(0.306205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306205,0.000000,0.000000,0.250000,0,0);}
.m8b_c01260{transform:matrix(0.309315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309315,0.000000,0.000000,0.250000,0,0);}
.mdb_c01260{transform:matrix(0.313600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313600,0.000000,0.000000,0.250000,0,0);}
.mdd_c01260{transform:matrix(0.325025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325025,0.000000,0.000000,0.250000,0,0);}
.mde_c01260{transform:matrix(0.325070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325070,0.000000,0.000000,0.250000,0,0);}
.m8_c01260{transform:matrix(0.516140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516140,0.000000,0.000000,0.250000,0,0);}
.m12_c01260{transform:matrix(0.684288,0.005474,-0.002000,0.249992,0,0);-ms-transform:matrix(0.684288,0.005474,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.684288,0.005474,-0.002000,0.249992,0,0);}
.m5a_c01260{transform:matrix(0.828710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.828710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.828710,0.000000,0.000000,0.250000,0,0);}
.ma_c01260{transform:matrix(1.839030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.839030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.839030,0.000000,0.000000,0.250000,0,0);}
.m9_c01260{transform:matrix(5.417990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.417990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.417990,0.000000,0.000000,0.250000,0,0);}
.m7_c01260{transform:matrix(9.767590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(9.767590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(9.767590,0.000000,0.000000,0.250000,0,0);}
.v0_c01260{vertical-align:0.000000px;}
.ls0_c01260{letter-spacing:0.000000px;}
.sc__c01260{text-shadow:none;}
.sc0_c01260{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__c01260{-webkit-text-stroke:0px transparent;}
.sc0_c01260{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01260{word-spacing:0.000000px;}
.fc0_c01260{color:transparent;}
.fs2_c01260{font-size:18.000000px;}
.fsc_c01260{font-size:60.000000px;}
.fs7_c01260{font-size:66.000000px;}
.fs8_c01260{font-size:66.004752px;}
.fs5_c01260{font-size:72.000000px;}
.fs3_c01260{font-size:72.002304px;}
.fs1_c01260{font-size:72.002916px;}
.fsa_c01260{font-size:72.005184px;}
.fsb_c01260{font-size:72.006084px;}
.fs6_c01260{font-size:78.000000px;}
.fsf_c01260{font-size:78.001911px;}
.fs4_c01260{font-size:78.002496px;}
.fsd_c01260{font-size:78.003159px;}
.fs9_c01260{font-size:78.005616px;}
.fs0_c01260{font-size:84.000000px;}
.fse_c01260{font-size:96.000000px;}
.y0_c01260{bottom:0.000000px;}
.yb7_c01260{bottom:196.443000px;}
.yb6_c01260{bottom:228.636365px;}
.yb5_c01260{bottom:228.961518px;}
.yb4_c01260{bottom:229.496335px;}
.yb3_c01260{bottom:230.358365px;}
.yb2_c01260{bottom:230.736239px;}
.yb1_c01260{bottom:230.976458px;}
.yb0_c01260{bottom:231.203247px;}
.yaf_c01260{bottom:232.038690px;}
.yae_c01260{bottom:232.804025px;}
.yad_c01260{bottom:233.026551px;}
.yac_c01260{bottom:233.280000px;}
.yab_c01260{bottom:264.574500px;}
.yaa_c01260{bottom:298.123038px;}
.ya9_c01260{bottom:299.024743px;}
.ya8_c01260{bottom:299.522988px;}
.ya7_c01260{bottom:300.907899px;}
.ya6_c01260{bottom:301.994676px;}
.ya5_c01260{bottom:302.405157px;}
.ya4_c01260{bottom:302.896085px;}
.ya3_c01260{bottom:303.294456px;}
.ya2_c01260{bottom:303.986871px;}
.ya1_c01260{bottom:304.248595px;}
.ya0_c01260{bottom:304.560000px;}
.y9f_c01260{bottom:336.690000px;}
.y9e_c01260{bottom:366.820500px;}
.y9d_c01260{bottom:409.675500px;}
.y9c_c01260{bottom:438.722679px;}
.y9b_c01260{bottom:439.744186px;}
.y9a_c01260{bottom:440.165757px;}
.y99_c01260{bottom:440.733831px;}
.y98_c01260{bottom:442.165969px;}
.y97_c01260{bottom:442.748805px;}
.y96_c01260{bottom:444.472898px;}
.y95_c01260{bottom:445.153740px;}
.y94_c01260{bottom:445.771500px;}
.y8d_c01260{bottom:478.835166px;}
.y90_c01260{bottom:478.835430px;}
.y8e_c01260{bottom:478.835562px;}
.y92_c01260{bottom:478.835910px;}
.y93_c01260{bottom:478.835946px;}
.y8f_c01260{bottom:478.836078px;}
.y91_c01260{bottom:478.836126px;}
.y82_c01260{bottom:512.562768px;}
.y85_c01260{bottom:512.563050px;}
.y86_c01260{bottom:512.563320px;}
.y83_c01260{bottom:512.563482px;}
.y87_c01260{bottom:512.563698px;}
.y84_c01260{bottom:512.563716px;}
.y8b_c01260{bottom:512.564208px;}
.y89_c01260{bottom:512.564424px;}
.y88_c01260{bottom:512.564448px;}
.y8a_c01260{bottom:512.564634px;}
.y8c_c01260{bottom:512.564784px;}
.y81_c01260{bottom:545.213034px;}
.y80_c01260{bottom:546.100692px;}
.y7f_c01260{bottom:546.503604px;}
.y7e_c01260{bottom:547.104402px;}
.y7d_c01260{bottom:547.506864px;}
.y7c_c01260{bottom:547.898076px;}
.y7b_c01260{bottom:548.097720px;}
.y7a_c01260{bottom:548.790246px;}
.y79_c01260{bottom:549.086562px;}
.y78_c01260{bottom:549.894066px;}
.y77_c01260{bottom:550.183554px;}
.y76_c01260{bottom:550.681308px;}
.y75_c01260{bottom:551.061822px;}
.y74_c01260{bottom:581.050872px;}
.y73_c01260{bottom:581.499108px;}
.y72_c01260{bottom:582.174324px;}
.y71_c01260{bottom:582.515172px;}
.y70_c01260{bottom:582.835782px;}
.y6f_c01260{bottom:583.267218px;}
.y6e_c01260{bottom:583.494882px;}
.y6d_c01260{bottom:584.051358px;}
.y6c_c01260{bottom:584.380170px;}
.y6b_c01260{bottom:585.258102px;}
.y6a_c01260{bottom:585.592020px;}
.y69_c01260{bottom:586.904556px;}
.y68_c01260{bottom:587.784720px;}
.y67_c01260{bottom:618.172896px;}
.y66_c01260{bottom:618.401028px;}
.y65_c01260{bottom:618.902622px;}
.y64_c01260{bottom:619.389744px;}
.y63_c01260{bottom:619.555746px;}
.y62_c01260{bottom:619.774428px;}
.y61_c01260{bottom:620.060844px;}
.y60_c01260{bottom:620.279760px;}
.y5f_c01260{bottom:620.717904px;}
.y5e_c01260{bottom:621.266754px;}
.y5d_c01260{bottom:652.163550px;}
.y5c_c01260{bottom:652.831098px;}
.y5b_c01260{bottom:653.375112px;}
.y5a_c01260{bottom:654.013806px;}
.y59_c01260{bottom:654.551250px;}
.y58_c01260{bottom:655.617606px;}
.y57_c01260{bottom:656.022156px;}
.y56_c01260{bottom:657.075750px;}
.y55_c01260{bottom:658.261500px;}
.y54_c01260{bottom:691.290000px;}
.y53_c01260{bottom:724.573500px;}
.y52_c01260{bottom:724.831500px;}
.y51_c01260{bottom:724.947000px;}
.y50_c01260{bottom:725.451000px;}
.y4f_c01260{bottom:725.941500px;}
.y4e_c01260{bottom:726.111000px;}
.y4d_c01260{bottom:726.492000px;}
.y4c_c01260{bottom:726.886500px;}
.y4b_c01260{bottom:727.426500px;}
.y4a_c01260{bottom:727.758000px;}
.y49_c01260{bottom:727.918500px;}
.y48_c01260{bottom:759.814500px;}
.y47_c01260{bottom:794.878500px;}
.y46_c01260{bottom:830.626500px;}
.y45_c01260{bottom:830.845500px;}
.y44_c01260{bottom:831.015000px;}
.y43_c01260{bottom:831.181500px;}
.y42_c01260{bottom:831.574500px;}
.y41_c01260{bottom:831.906000px;}
.y40_c01260{bottom:832.123500px;}
.y3f_c01260{bottom:832.231500px;}
.y3e_c01260{bottom:832.671000px;}
.y3d_c01260{bottom:832.839000px;}
.y3c_c01260{bottom:833.490000px;}
.y3b_c01260{bottom:866.430000px;}
.y3a_c01260{bottom:902.748000px;}
.y39_c01260{bottom:938.161500px;}
.y36_c01260{bottom:973.106124px;}
.y38_c01260{bottom:973.106340px;}
.y37_c01260{bottom:973.106436px;}
.y35_c01260{bottom:973.106472px;}
.y34_c01260{bottom:973.106520px;}
.y27_c01260{bottom:1006.770168px;}
.y28_c01260{bottom:1006.770300px;}
.y29_c01260{bottom:1006.770912px;}
.y2a_c01260{bottom:1006.771644px;}
.y30_c01260{bottom:1006.771728px;}
.y2d_c01260{bottom:1006.772112px;}
.y2f_c01260{bottom:1006.772196px;}
.y2b_c01260{bottom:1006.772256px;}
.y31_c01260{bottom:1006.772340px;}
.y2e_c01260{bottom:1006.772604px;}
.y2c_c01260{bottom:1006.772700px;}
.y32_c01260{bottom:1006.772832px;}
.y33_c01260{bottom:1006.773456px;}
.y26_c01260{bottom:1040.882700px;}
.y25_c01260{bottom:1041.120540px;}
.y24_c01260{bottom:1041.661848px;}
.y23_c01260{bottom:1041.887232px;}
.y22_c01260{bottom:1042.134348px;}
.y21_c01260{bottom:1042.678392px;}
.y20_c01260{bottom:1042.823832px;}
.y1f_c01260{bottom:1043.753052px;}
.y1e_c01260{bottom:1044.442248px;}
.y1d_c01260{bottom:1045.062252px;}
.y1c_c01260{bottom:1045.437972px;}
.y16_c01260{bottom:1076.667504px;}
.y14_c01260{bottom:1076.667528px;}
.y17_c01260{bottom:1076.667768px;}
.y15_c01260{bottom:1076.667840px;}
.y13_c01260{bottom:1076.667876px;}
.y19_c01260{bottom:1076.667888px;}
.y12_c01260{bottom:1076.667972px;}
.y18_c01260{bottom:1076.668056px;}
.y1b_c01260{bottom:1076.668152px;}
.y1a_c01260{bottom:1076.668560px;}
.y11_c01260{bottom:1110.878628px;}
.y10_c01260{bottom:1111.129524px;}
.yf_c01260{bottom:1111.556844px;}
.ye_c01260{bottom:1112.276184px;}
.yd_c01260{bottom:1113.077556px;}
.yc_c01260{bottom:1113.343212px;}
.yb_c01260{bottom:1113.958848px;}
.ya_c01260{bottom:1114.222416px;}
.y9_c01260{bottom:1114.930944px;}
.y8_c01260{bottom:1115.371500px;}
.y7_c01260{bottom:1174.183500px;}
.y6_c01260{bottom:1185.576563px;}
.y5_c01260{bottom:1186.473178px;}
.y4_c01260{bottom:1187.375505px;}
.y3_c01260{bottom:1187.673706px;}
.y2_c01260{bottom:1188.271500px;}
.y1_c01260{bottom:1240.261500px;}
.h4_c01260{height:18.000000px;}
.he_c01260{height:60.000000px;}
.h9_c01260{height:66.000000px;}
.ha_c01260{height:66.004752px;}
.h7_c01260{height:72.000000px;}
.h5_c01260{height:72.002304px;}
.h3_c01260{height:72.002916px;}
.hc_c01260{height:72.005184px;}
.hd_c01260{height:72.006084px;}
.h8_c01260{height:78.000000px;}
.h11_c01260{height:78.001911px;}
.h6_c01260{height:78.002496px;}
.hf_c01260{height:78.003159px;}
.hb_c01260{height:78.005616px;}
.h2_c01260{height:84.000000px;}
.h10_c01260{height:96.000000px;}
.h1_c01260{height:1258.500000px;}
.h0_c01260{height:1258.740000px;}
.w1_c01260{width:888.750000px;}
.w0_c01260{width:889.050000px;}
.x0_c01260{left:0.000000px;}
.x5f_c01260{left:42.120000px;}
.x6b_c01260{left:52.603500px;}
.x67_c01260{left:54.202500px;}
.x68_c01260{left:88.803000px;}
.x60_c01260{left:99.360000px;}
.x48_c01260{left:110.700000px;}
.x69_c01260{left:117.883500px;}
.x14_c01260{left:119.068452px;}
.x6c_c01260{left:120.600000px;}
.x61_c01260{left:128.520000px;}
.x24_c01260{left:150.657828px;}
.x44_c01260{left:151.945500px;}
.x54_c01260{left:161.584662px;}
.x31_c01260{left:162.810000px;}
.x1d_c01260{left:172.721556px;}
.x2b_c01260{left:183.869160px;}
.x70_c01260{left:186.840000px;}
.x6a_c01260{left:193.320000px;}
.x15_c01260{left:195.210324px;}
.x3d_c01260{left:205.740000px;}
.x37_c01260{left:217.350000px;}
.x45_c01260{left:218.358000px;}
.x65_c01260{left:222.750000px;}
.xb_c01260{left:227.506500px;}
.x6d_c01260{left:229.933500px;}
.x25_c01260{left:231.119988px;}
.x32_c01260{left:238.950000px;}
.x55_c01260{left:249.066312px;}
.x2c_c01260{left:250.291908px;}
.x3_c01260{left:259.351500px;}
.x1e_c01260{left:261.285264px;}
.x33_c01260{left:271.620000px;}
.x5d_c01260{left:274.962000px;}
.xc_c01260{left:282.576000px;}
.x5c_c01260{left:283.771728px;}
.x16_c01260{left:294.033648px;}
.x26_c01260{left:295.922640px;}
.x3e_c01260{left:304.020000px;}
.x38_c01260{left:315.900000px;}
.x66_c01260{left:316.980000px;}
.x4_c01260{left:325.773000px;}
.x49_c01260{left:327.240000px;}
.x62_c01260{left:328.320000px;}
.x3f_c01260{left:337.500000px;}
.x56_c01260{left:338.736534px;}
.x2d_c01260{left:349.110000px;}
.x5_c01260{left:358.906500px;}
.x1_c01260{left:370.170000px;}
.x51_c01260{left:371.380230px;}
.x4a_c01260{left:381.780000px;}
.x2_c01260{left:384.480000px;}
.x2e_c01260{left:392.310000px;}
.x17_c01260{left:394.207056px;}
.xd_c01260{left:404.088000px;}
.x34_c01260{left:405.540000px;}
.x8_c01260{left:406.890000px;}
.x4b_c01260{left:414.606000px;}
.x4f_c01260{left:416.565372px;}
.x59_c01260{left:426.883014px;}
.x9_c01260{left:436.860000px;}
.x5e_c01260{left:438.480000px;}
.x4c_c01260{left:448.318500px;}
.x6_c01260{left:459.165000px;}
.x50_c01260{left:460.292544px;}
.x57_c01260{left:470.781786px;}
.xe_c01260{left:481.042500px;}
.x63_c01260{left:482.220000px;}
.x1f_c01260{left:492.651624px;}
.x71_c01260{left:495.180000px;}
.x3a_c01260{left:502.129500px;}
.x27_c01260{left:503.829948px;}
.x18_c01260{left:505.181160px;}
.xf_c01260{left:514.249500px;}
.x46_c01260{left:515.365500px;}
.x42_c01260{left:525.420000px;}
.xa_c01260{left:535.950000px;}
.x4d_c01260{left:537.181500px;}
.x19_c01260{left:548.112408px;}
.x7_c01260{left:558.789000px;}
.x40_c01260{left:569.700000px;}
.x2f_c01260{left:580.230000px;}
.x28_c01260{left:582.131952px;}
.x20_c01260{left:591.212916px;}
.x6e_c01260{left:593.127000px;}
.x64_c01260{left:603.720000px;}
.x39_c01260{left:613.170000px;}
.x10_c01260{left:614.421000px;}
.x35_c01260{left:625.320000px;}
.x21_c01260{left:626.602704px;}
.x4e_c01260{left:635.193000px;}
.x52_c01260{left:645.714318px;}
.x29_c01260{left:646.934604px;}
.x3b_c01260{left:647.943000px;}
.x22_c01260{left:658.713456px;}
.x5a_c01260{left:669.089898px;}
.x1a_c01260{left:670.155720px;}
.x2a_c01260{left:679.875216px;}
.x3c_c01260{left:691.671000px;}
.x11_c01260{left:704.338500px;}
.x43_c01260{left:714.690000px;}
.x6f_c01260{left:715.980000px;}
.x5b_c01260{left:723.633246px;}
.x30_c01260{left:724.680000px;}
.x23_c01260{left:735.940068px;}
.x47_c01260{left:737.325000px;}
.x53_c01260{left:747.263748px;}
.x12_c01260{left:757.753500px;}
.x58_c01260{left:769.171032px;}
.x1b_c01260{left:770.599152px;}
.x36_c01260{left:780.570000px;}
.x13_c01260{left:789.115500px;}
.x41_c01260{left:791.640000px;}
.x1c_c01260{left:827.841312px;}
@media print{
.v0_c01260{vertical-align:0.000000pt;}
.ls0_c01260{letter-spacing:0.000000pt;}
.ws0_c01260{word-spacing:0.000000pt;}
.fs2_c01260{font-size:16.000000pt;}
.fsc_c01260{font-size:53.333333pt;}
.fs7_c01260{font-size:58.666667pt;}
.fs8_c01260{font-size:58.670891pt;}
.fs5_c01260{font-size:64.000000pt;}
.fs3_c01260{font-size:64.002048pt;}
.fs1_c01260{font-size:64.002592pt;}
.fsa_c01260{font-size:64.004608pt;}
.fsb_c01260{font-size:64.005408pt;}
.fs6_c01260{font-size:69.333333pt;}
.fsf_c01260{font-size:69.335032pt;}
.fs4_c01260{font-size:69.335552pt;}
.fsd_c01260{font-size:69.336141pt;}
.fs9_c01260{font-size:69.338325pt;}
.fs0_c01260{font-size:74.666667pt;}
.fse_c01260{font-size:85.333333pt;}
.y0_c01260{bottom:0.000000pt;}
.yb7_c01260{bottom:174.616000pt;}
.yb6_c01260{bottom:203.232324pt;}
.yb5_c01260{bottom:203.521349pt;}
.yb4_c01260{bottom:203.996743pt;}
.yb3_c01260{bottom:204.762991pt;}
.yb2_c01260{bottom:205.098879pt;}
.yb1_c01260{bottom:205.312407pt;}
.yb0_c01260{bottom:205.513997pt;}
.yaf_c01260{bottom:206.256613pt;}
.yae_c01260{bottom:206.936911pt;}
.yad_c01260{bottom:207.134712pt;}
.yac_c01260{bottom:207.360000pt;}
.yab_c01260{bottom:235.177333pt;}
.yaa_c01260{bottom:264.998256pt;}
.ya9_c01260{bottom:265.799772pt;}
.ya8_c01260{bottom:266.242656pt;}
.ya7_c01260{bottom:267.473688pt;}
.ya6_c01260{bottom:268.439712pt;}
.ya5_c01260{bottom:268.804584pt;}
.ya4_c01260{bottom:269.240964pt;}
.ya3_c01260{bottom:269.595072pt;}
.ya2_c01260{bottom:270.210552pt;}
.ya1_c01260{bottom:270.443196pt;}
.ya0_c01260{bottom:270.720000pt;}
.y9f_c01260{bottom:299.280000pt;}
.y9e_c01260{bottom:326.062667pt;}
.y9d_c01260{bottom:364.156000pt;}
.y9c_c01260{bottom:389.975715pt;}
.y9b_c01260{bottom:390.883721pt;}
.y9a_c01260{bottom:391.258451pt;}
.y99_c01260{bottom:391.763405pt;}
.y98_c01260{bottom:393.036417pt;}
.y97_c01260{bottom:393.554493pt;}
.y96_c01260{bottom:395.087020pt;}
.y95_c01260{bottom:395.692213pt;}
.y94_c01260{bottom:396.241333pt;}
.y8d_c01260{bottom:425.631259pt;}
.y90_c01260{bottom:425.631493pt;}
.y8e_c01260{bottom:425.631611pt;}
.y92_c01260{bottom:425.631920pt;}
.y93_c01260{bottom:425.631952pt;}
.y8f_c01260{bottom:425.632069pt;}
.y91_c01260{bottom:425.632112pt;}
.y82_c01260{bottom:455.611349pt;}
.y85_c01260{bottom:455.611600pt;}
.y86_c01260{bottom:455.611840pt;}
.y83_c01260{bottom:455.611984pt;}
.y87_c01260{bottom:455.612176pt;}
.y84_c01260{bottom:455.612192pt;}
.y8b_c01260{bottom:455.612629pt;}
.y89_c01260{bottom:455.612821pt;}
.y88_c01260{bottom:455.612843pt;}
.y8a_c01260{bottom:455.613008pt;}
.y8c_c01260{bottom:455.613141pt;}
.y81_c01260{bottom:484.633808pt;}
.y80_c01260{bottom:485.422837pt;}
.y7f_c01260{bottom:485.780981pt;}
.y7e_c01260{bottom:486.315024pt;}
.y7d_c01260{bottom:486.672768pt;}
.y7c_c01260{bottom:487.020512pt;}
.y7b_c01260{bottom:487.197973pt;}
.y7a_c01260{bottom:487.813552pt;}
.y79_c01260{bottom:488.076944pt;}
.y78_c01260{bottom:488.794725pt;}
.y77_c01260{bottom:489.052048pt;}
.y76_c01260{bottom:489.494496pt;}
.y75_c01260{bottom:489.832731pt;}
.y74_c01260{bottom:516.489664pt;}
.y73_c01260{bottom:516.888096pt;}
.y72_c01260{bottom:517.488288pt;}
.y71_c01260{bottom:517.791264pt;}
.y70_c01260{bottom:518.076251pt;}
.y6f_c01260{bottom:518.459749pt;}
.y6e_c01260{bottom:518.662117pt;}
.y6d_c01260{bottom:519.156763pt;}
.y6c_c01260{bottom:519.449040pt;}
.y6b_c01260{bottom:520.229424pt;}
.y6a_c01260{bottom:520.526240pt;}
.y69_c01260{bottom:521.692939pt;}
.y68_c01260{bottom:522.475307pt;}
.y67_c01260{bottom:549.487019pt;}
.y66_c01260{bottom:549.689803pt;}
.y65_c01260{bottom:550.135664pt;}
.y64_c01260{bottom:550.568661pt;}
.y63_c01260{bottom:550.716219pt;}
.y62_c01260{bottom:550.910603pt;}
.y61_c01260{bottom:551.165195pt;}
.y60_c01260{bottom:551.359787pt;}
.y5f_c01260{bottom:551.749248pt;}
.y5e_c01260{bottom:552.237115pt;}
.y5d_c01260{bottom:579.700933pt;}
.y5c_c01260{bottom:580.294309pt;}
.y5b_c01260{bottom:580.777877pt;}
.y5a_c01260{bottom:581.345605pt;}
.y59_c01260{bottom:581.823333pt;}
.y58_c01260{bottom:582.771205pt;}
.y57_c01260{bottom:583.130805pt;}
.y56_c01260{bottom:584.067333pt;}
.y55_c01260{bottom:585.121333pt;}
.y54_c01260{bottom:614.480000pt;}
.y53_c01260{bottom:644.065333pt;}
.y52_c01260{bottom:644.294667pt;}
.y51_c01260{bottom:644.397333pt;}
.y50_c01260{bottom:644.845333pt;}
.y4f_c01260{bottom:645.281333pt;}
.y4e_c01260{bottom:645.432000pt;}
.y4d_c01260{bottom:645.770667pt;}
.y4c_c01260{bottom:646.121333pt;}
.y4b_c01260{bottom:646.601333pt;}
.y4a_c01260{bottom:646.896000pt;}
.y49_c01260{bottom:647.038667pt;}
.y48_c01260{bottom:675.390667pt;}
.y47_c01260{bottom:706.558667pt;}
.y46_c01260{bottom:738.334667pt;}
.y45_c01260{bottom:738.529333pt;}
.y44_c01260{bottom:738.680000pt;}
.y43_c01260{bottom:738.828000pt;}
.y42_c01260{bottom:739.177333pt;}
.y41_c01260{bottom:739.472000pt;}
.y40_c01260{bottom:739.665333pt;}
.y3f_c01260{bottom:739.761333pt;}
.y3e_c01260{bottom:740.152000pt;}
.y3d_c01260{bottom:740.301333pt;}
.y3c_c01260{bottom:740.880000pt;}
.y3b_c01260{bottom:770.160000pt;}
.y3a_c01260{bottom:802.442667pt;}
.y39_c01260{bottom:833.921333pt;}
.y36_c01260{bottom:864.983221pt;}
.y38_c01260{bottom:864.983413pt;}
.y37_c01260{bottom:864.983499pt;}
.y35_c01260{bottom:864.983531pt;}
.y34_c01260{bottom:864.983573pt;}
.y27_c01260{bottom:894.906816pt;}
.y28_c01260{bottom:894.906933pt;}
.y29_c01260{bottom:894.907477pt;}
.y2a_c01260{bottom:894.908128pt;}
.y30_c01260{bottom:894.908203pt;}
.y2d_c01260{bottom:894.908544pt;}
.y2f_c01260{bottom:894.908619pt;}
.y2b_c01260{bottom:894.908672pt;}
.y31_c01260{bottom:894.908747pt;}
.y2e_c01260{bottom:894.908981pt;}
.y2c_c01260{bottom:894.909067pt;}
.y32_c01260{bottom:894.909184pt;}
.y33_c01260{bottom:894.909739pt;}
.y26_c01260{bottom:925.229067pt;}
.y25_c01260{bottom:925.440480pt;}
.y24_c01260{bottom:925.921643pt;}
.y23_c01260{bottom:926.121984pt;}
.y22_c01260{bottom:926.341643pt;}
.y21_c01260{bottom:926.825237pt;}
.y20_c01260{bottom:926.954517pt;}
.y1f_c01260{bottom:927.780491pt;}
.y1e_c01260{bottom:928.393109pt;}
.y1d_c01260{bottom:928.944224pt;}
.y1c_c01260{bottom:929.278197pt;}
.y16_c01260{bottom:957.037781pt;}
.y14_c01260{bottom:957.037803pt;}
.y17_c01260{bottom:957.038016pt;}
.y15_c01260{bottom:957.038080pt;}
.y13_c01260{bottom:957.038112pt;}
.y19_c01260{bottom:957.038123pt;}
.y12_c01260{bottom:957.038197pt;}
.y18_c01260{bottom:957.038272pt;}
.y1b_c01260{bottom:957.038357pt;}
.y1a_c01260{bottom:957.038720pt;}
.y11_c01260{bottom:987.447669pt;}
.y10_c01260{bottom:987.670688pt;}
.yf_c01260{bottom:988.050528pt;}
.ye_c01260{bottom:988.689941pt;}
.yd_c01260{bottom:989.402272pt;}
.yc_c01260{bottom:989.638411pt;}
.yb_c01260{bottom:990.185643pt;}
.ya_c01260{bottom:990.419925pt;}
.y9_c01260{bottom:991.049728pt;}
.y8_c01260{bottom:991.441333pt;}
.y7_c01260{bottom:1043.718667pt;}
.y6_c01260{bottom:1053.845833pt;}
.y5_c01260{bottom:1054.642825pt;}
.y4_c01260{bottom:1055.444893pt;}
.y3_c01260{bottom:1055.709961pt;}
.y2_c01260{bottom:1056.241333pt;}
.y1_c01260{bottom:1102.454667pt;}
.h4_c01260{height:16.000000pt;}
.he_c01260{height:53.333333pt;}
.h9_c01260{height:58.666667pt;}
.ha_c01260{height:58.670891pt;}
.h7_c01260{height:64.000000pt;}
.h5_c01260{height:64.002048pt;}
.h3_c01260{height:64.002592pt;}
.hc_c01260{height:64.004608pt;}
.hd_c01260{height:64.005408pt;}
.h8_c01260{height:69.333333pt;}
.h11_c01260{height:69.335032pt;}
.h6_c01260{height:69.335552pt;}
.hf_c01260{height:69.336141pt;}
.hb_c01260{height:69.338325pt;}
.h2_c01260{height:74.666667pt;}
.h10_c01260{height:85.333333pt;}
.h1_c01260{height:1118.666667pt;}
.h0_c01260{height:1118.880000pt;}
.w1_c01260{width:790.000000pt;}
.w0_c01260{width:790.266667pt;}
.x0_c01260{left:0.000000pt;}
.x5f_c01260{left:37.440000pt;}
.x6b_c01260{left:46.758667pt;}
.x67_c01260{left:48.180000pt;}
.x68_c01260{left:78.936000pt;}
.x60_c01260{left:88.320000pt;}
.x48_c01260{left:98.400000pt;}
.x69_c01260{left:104.785333pt;}
.x14_c01260{left:105.838624pt;}
.x6c_c01260{left:107.200000pt;}
.x61_c01260{left:114.240000pt;}
.x24_c01260{left:133.918069pt;}
.x44_c01260{left:135.062667pt;}
.x54_c01260{left:143.630811pt;}
.x31_c01260{left:144.720000pt;}
.x1d_c01260{left:153.530272pt;}
.x2b_c01260{left:163.439253pt;}
.x70_c01260{left:166.080000pt;}
.x6a_c01260{left:171.840000pt;}
.x15_c01260{left:173.520288pt;}
.x3d_c01260{left:182.880000pt;}
.x37_c01260{left:193.200000pt;}
.x45_c01260{left:194.096000pt;}
.x65_c01260{left:198.000000pt;}
.xb_c01260{left:202.228000pt;}
.x6d_c01260{left:204.385333pt;}
.x25_c01260{left:205.439989pt;}
.x32_c01260{left:212.400000pt;}
.x55_c01260{left:221.392277pt;}
.x2c_c01260{left:222.481696pt;}
.x3_c01260{left:230.534667pt;}
.x1e_c01260{left:232.253568pt;}
.x33_c01260{left:241.440000pt;}
.x5d_c01260{left:244.410667pt;}
.xc_c01260{left:251.178667pt;}
.x5c_c01260{left:252.241536pt;}
.x16_c01260{left:261.363243pt;}
.x26_c01260{left:263.042347pt;}
.x3e_c01260{left:270.240000pt;}
.x38_c01260{left:280.800000pt;}
.x66_c01260{left:281.760000pt;}
.x4_c01260{left:289.576000pt;}
.x49_c01260{left:290.880000pt;}
.x62_c01260{left:291.840000pt;}
.x3f_c01260{left:300.000000pt;}
.x56_c01260{left:301.099141pt;}
.x2d_c01260{left:310.320000pt;}
.x5_c01260{left:319.028000pt;}
.x1_c01260{left:329.040000pt;}
.x51_c01260{left:330.115760pt;}
.x4a_c01260{left:339.360000pt;}
.x2_c01260{left:341.760000pt;}
.x2e_c01260{left:348.720000pt;}
.x17_c01260{left:350.406272pt;}
.xd_c01260{left:359.189333pt;}
.x34_c01260{left:360.480000pt;}
.x8_c01260{left:361.680000pt;}
.x4b_c01260{left:368.538667pt;}
.x4f_c01260{left:370.280331pt;}
.x59_c01260{left:379.451568pt;}
.x9_c01260{left:388.320000pt;}
.x5e_c01260{left:389.760000pt;}
.x4c_c01260{left:398.505333pt;}
.x6_c01260{left:408.146667pt;}
.x50_c01260{left:409.148928pt;}
.x57_c01260{left:418.472699pt;}
.xe_c01260{left:427.593333pt;}
.x63_c01260{left:428.640000pt;}
.x1f_c01260{left:437.912555pt;}
.x71_c01260{left:440.160000pt;}
.x3a_c01260{left:446.337333pt;}
.x27_c01260{left:447.848843pt;}
.x18_c01260{left:449.049920pt;}
.xf_c01260{left:457.110667pt;}
.x46_c01260{left:458.102667pt;}
.x42_c01260{left:467.040000pt;}
.xa_c01260{left:476.400000pt;}
.x4d_c01260{left:477.494667pt;}
.x19_c01260{left:487.211029pt;}
.x7_c01260{left:496.701333pt;}
.x40_c01260{left:506.400000pt;}
.x2f_c01260{left:515.760000pt;}
.x28_c01260{left:517.450624pt;}
.x20_c01260{left:525.522592pt;}
.x6e_c01260{left:527.224000pt;}
.x64_c01260{left:536.640000pt;}
.x39_c01260{left:545.040000pt;}
.x10_c01260{left:546.152000pt;}
.x35_c01260{left:555.840000pt;}
.x21_c01260{left:556.980181pt;}
.x4e_c01260{left:564.616000pt;}
.x52_c01260{left:573.968283pt;}
.x29_c01260{left:575.052981pt;}
.x3b_c01260{left:575.949333pt;}
.x22_c01260{left:585.523072pt;}
.x5a_c01260{left:594.746576pt;}
.x1a_c01260{left:595.693973pt;}
.x2a_c01260{left:604.333525pt;}
.x3c_c01260{left:614.818667pt;}
.x11_c01260{left:626.078667pt;}
.x43_c01260{left:635.280000pt;}
.x6f_c01260{left:636.426667pt;}
.x5b_c01260{left:643.229552pt;}
.x30_c01260{left:644.160000pt;}
.x23_c01260{left:654.168949pt;}
.x47_c01260{left:655.400000pt;}
.x53_c01260{left:664.234443pt;}
.x12_c01260{left:673.558667pt;}
.x58_c01260{left:683.707584pt;}
.x1b_c01260{left:684.977024pt;}
.x36_c01260{left:693.840000pt;}
.x13_c01260{left:701.436000pt;}
.x41_c01260{left:703.680000pt;}
.x1c_c01260{left:735.858944pt;}
}





/* 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_c01261 {
    display:none;
  }
  .loading-indicator_c01261.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01261 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_c01261 { 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_c01261" -> "#page-container .classname_c01261")
 */
.pf_c01261 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01261 { /* 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_c01261.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01261 { /* 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_c01261 { /* 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_c01261 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01261 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01261 {overflow:visible;}
  }
}
.c_c01261 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01261 { /* 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_c01261:after { /* webkit #35443 */
  content: '';
}
.t_c01261:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01261 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 */
}
.__c01261 { /* 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_c01261 { /* info for Javascript */
  display:none;
}
.l_c01261 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01261 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01261 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01261: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_c01261 {
    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_c01261.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01261.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_c01261 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01261{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01261;src:url('chunks/assets/font_b11a17f404e7258299fdf971.woff2')format("woff");}.ff1_c01261{font-family:ff1_c01261;line-height:1.000000;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;}
.m2_c01261{transform:matrix(0.230314,0.017326,-0.018753,0.249296,0,0);-ms-transform:matrix(0.230314,0.017326,-0.018753,0.249296,0,0);-webkit-transform:matrix(0.230314,0.017326,-0.018753,0.249296,0,0);}
.m1_c01261{transform:matrix(0.238307,0.017927,-0.018753,0.249296,0,0);-ms-transform:matrix(0.238307,0.017927,-0.018753,0.249296,0,0);-webkit-transform:matrix(0.238307,0.017927,-0.018753,0.249296,0,0);}
.m3_c01261{transform:matrix(0.290424,0.021847,-0.018753,0.249296,0,0);-ms-transform:matrix(0.290424,0.021847,-0.018753,0.249296,0,0);-webkit-transform:matrix(0.290424,0.021847,-0.018753,0.249296,0,0);}
.m0_c01261{transform:matrix(0.327430,0.024631,-0.018753,0.249296,0,0);-ms-transform:matrix(0.327430,0.024631,-0.018753,0.249296,0,0);-webkit-transform:matrix(0.327430,0.024631,-0.018753,0.249296,0,0);}
.v0_c01261{vertical-align:0.000000px;}
.ls0_c01261{letter-spacing:0.000000px;}
.sc__c01261{text-shadow:none;}
.sc0_c01261{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__c01261{-webkit-text-stroke:0px transparent;}
.sc0_c01261{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01261{word-spacing:0.000000px;}
.fc0_c01261{color:transparent;}
.fs0_c01261{font-size:89.983528px;}
.y0_c01261{bottom:0.000000px;}
.y4_c01261{bottom:1024.445287px;}
.y3_c01261{bottom:1031.936438px;}
.y2_c01261{bottom:1040.619075px;}
.y1_c01261{bottom:1044.163500px;}
.h2_c01261{height:89.983528px;}
.h1_c01261{height:1258.500000px;}
.h0_c01261{height:1258.740000px;}
.w1_c01261{width:888.750000px;}
.w0_c01261{width:889.050000px;}
.x0_c01261{left:0.000000px;}
.x1_c01261{left:299.793000px;}
.x2_c01261{left:346.910223px;}
.x3_c01261{left:462.331418px;}
.x4_c01261{left:561.913771px;}
@media print{
.v0_c01261{vertical-align:0.000000pt;}
.ls0_c01261{letter-spacing:0.000000pt;}
.ws0_c01261{word-spacing:0.000000pt;}
.fs0_c01261{font-size:79.985359pt;}
.y0_c01261{bottom:0.000000pt;}
.y4_c01261{bottom:910.618033pt;}
.y3_c01261{bottom:917.276833pt;}
.y2_c01261{bottom:924.994733pt;}
.y1_c01261{bottom:928.145333pt;}
.h2_c01261{height:79.985359pt;}
.h1_c01261{height:1118.666667pt;}
.h0_c01261{height:1118.880000pt;}
.w1_c01261{width:790.000000pt;}
.w0_c01261{width:790.266667pt;}
.x0_c01261{left:0.000000pt;}
.x1_c01261{left:266.482667pt;}
.x2_c01261{left:308.364643pt;}
.x3_c01261{left:410.961260pt;}
.x4_c01261{left:499.478908pt;}
}





/* 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_c01262 {
    display:none;
  }
  .loading-indicator_c01262.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01262 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_c01262 { 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_c01262" -> "#page-container .classname_c01262")
 */
.pf_c01262 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01262 { /* 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_c01262.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01262 { /* 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_c01262 { /* 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_c01262 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01262 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01262 {overflow:visible;}
  }
}
.c_c01262 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01262 { /* 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_c01262:after { /* webkit #35443 */
  content: '';
}
.t_c01262:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01262 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 */
}
.__c01262 { /* 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_c01262 { /* info for Javascript */
  display:none;
}
.l_c01262 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01262 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01262 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01262: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_c01262 {
    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_c01262.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01262.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_c01262 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01262{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01262;src:url('chunks/assets/font_dbd529e162d5851c7bfb6d27.woff2')format("woff");}.ff1_c01262{font-family:ff1_c01262;line-height:1.000000;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;}
.m4c_c01262{transform:matrix(0.201527,0.001814,-0.002250,0.249990,0,0);-ms-transform:matrix(0.201527,0.001814,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.201527,0.001814,-0.002250,0.249990,0,0);}
.m3d_c01262{transform:matrix(0.211337,0.002325,-0.002750,0.249985,0,0);-ms-transform:matrix(0.211337,0.002325,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.211337,0.002325,-0.002750,0.249985,0,0);}
.m50_c01262{transform:matrix(0.212436,0.001912,-0.002250,0.249990,0,0);-ms-transform:matrix(0.212436,0.001912,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.212436,0.001912,-0.002250,0.249990,0,0);}
.m51_c01262{transform:matrix(0.214256,0.001928,-0.002250,0.249990,0,0);-ms-transform:matrix(0.214256,0.001928,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.214256,0.001928,-0.002250,0.249990,0,0);}
.m18_c01262{transform:matrix(0.217011,0.001302,-0.001500,0.249996,0,0);-ms-transform:matrix(0.217011,0.001302,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.217011,0.001302,-0.001500,0.249996,0,0);}
.m19_c01262{transform:matrix(0.217431,0.001305,-0.001500,0.249996,0,0);-ms-transform:matrix(0.217431,0.001305,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.217431,0.001305,-0.001500,0.249996,0,0);}
.m3a_c01262{transform:matrix(0.219252,0.002412,-0.002750,0.249985,0,0);-ms-transform:matrix(0.219252,0.002412,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.219252,0.002412,-0.002750,0.249985,0,0);}
.m2_c01262{transform:matrix(0.220412,0.004849,-0.005499,0.249940,0,0);-ms-transform:matrix(0.220412,0.004849,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.220412,0.004849,-0.005499,0.249940,0,0);}
.m40_c01262{transform:matrix(0.221797,0.002440,-0.002750,0.249985,0,0);-ms-transform:matrix(0.221797,0.002440,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.221797,0.002440,-0.002750,0.249985,0,0);}
.m4d_c01262{transform:matrix(0.222171,0.002000,-0.002250,0.249990,0,0);-ms-transform:matrix(0.222171,0.002000,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.222171,0.002000,-0.002250,0.249990,0,0);}
.m3b_c01262{transform:matrix(0.223596,0.002460,-0.002750,0.249985,0,0);-ms-transform:matrix(0.223596,0.002460,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.223596,0.002460,-0.002750,0.249985,0,0);}
.m37_c01262{transform:matrix(0.225301,0.002478,-0.002750,0.249985,0,0);-ms-transform:matrix(0.225301,0.002478,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.225301,0.002478,-0.002750,0.249985,0,0);}
.m1_c01262{transform:matrix(0.225335,0.004957,-0.005499,0.249940,0,0);-ms-transform:matrix(0.225335,0.004957,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.225335,0.004957,-0.005499,0.249940,0,0);}
.m24_c01262{transform:matrix(0.225696,0.002031,-0.002250,0.249990,0,0);-ms-transform:matrix(0.225696,0.002031,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.225696,0.002031,-0.002250,0.249990,0,0);}
.m43_c01262{transform:matrix(0.225926,0.002485,-0.002750,0.249985,0,0);-ms-transform:matrix(0.225926,0.002485,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.225926,0.002485,-0.002750,0.249985,0,0);}
.m2f_c01262{transform:matrix(0.226994,0.002270,-0.002500,0.249988,0,0);-ms-transform:matrix(0.226994,0.002270,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.226994,0.002270,-0.002500,0.249988,0,0);}
.m35_c01262{transform:matrix(0.228159,0.002282,-0.002500,0.249988,0,0);-ms-transform:matrix(0.228159,0.002282,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.228159,0.002282,-0.002500,0.249988,0,0);}
.m52_c01262{transform:matrix(0.229001,0.002061,-0.002250,0.249990,0,0);-ms-transform:matrix(0.229001,0.002061,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.229001,0.002061,-0.002250,0.249990,0,0);}
.m0_c01262{transform:matrix(0.230189,0.005064,-0.005499,0.249940,0,0);-ms-transform:matrix(0.230189,0.005064,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.230189,0.005064,-0.005499,0.249940,0,0);}
.m4b_c01262{transform:matrix(0.230881,0.002540,-0.002750,0.249985,0,0);-ms-transform:matrix(0.230881,0.002540,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.230881,0.002540,-0.002750,0.249985,0,0);}
.m4f_c01262{transform:matrix(0.231001,0.002079,-0.002250,0.249990,0,0);-ms-transform:matrix(0.231001,0.002079,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.231001,0.002079,-0.002250,0.249990,0,0);}
.m4e_c01262{transform:matrix(0.237035,0.002133,-0.002250,0.249990,0,0);-ms-transform:matrix(0.237035,0.002133,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.237035,0.002133,-0.002250,0.249990,0,0);}
.m39_c01262{transform:matrix(0.239551,0.002635,-0.002750,0.249985,0,0);-ms-transform:matrix(0.239551,0.002635,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.239551,0.002635,-0.002750,0.249985,0,0);}
.m46_c01262{transform:matrix(0.240280,0.002643,-0.002750,0.249985,0,0);-ms-transform:matrix(0.240280,0.002643,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.240280,0.002643,-0.002750,0.249985,0,0);}
.m49_c01262{transform:matrix(0.242730,0.002670,-0.002750,0.249985,0,0);-ms-transform:matrix(0.242730,0.002670,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.242730,0.002670,-0.002750,0.249985,0,0);}
.m44_c01262{transform:matrix(0.244280,0.002687,-0.002750,0.249985,0,0);-ms-transform:matrix(0.244280,0.002687,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.244280,0.002687,-0.002750,0.249985,0,0);}
.m1e_c01262{transform:matrix(0.246026,0.001476,-0.001500,0.249996,0,0);-ms-transform:matrix(0.246026,0.001476,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.246026,0.001476,-0.001500,0.249996,0,0);}
.m3c_c01262{transform:matrix(0.246250,0.002709,-0.002750,0.249985,0,0);-ms-transform:matrix(0.246250,0.002709,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.246250,0.002709,-0.002750,0.249985,0,0);}
.m45_c01262{transform:matrix(0.247250,0.002720,-0.002750,0.249985,0,0);-ms-transform:matrix(0.247250,0.002720,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.247250,0.002720,-0.002750,0.249985,0,0);}
.m34_c01262{transform:matrix(0.248238,0.002482,-0.002500,0.249988,0,0);-ms-transform:matrix(0.248238,0.002482,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.248238,0.002482,-0.002500,0.249988,0,0);}
.m31_c01262{transform:matrix(0.248433,0.002484,-0.002500,0.249988,0,0);-ms-transform:matrix(0.248433,0.002484,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.248433,0.002484,-0.002500,0.249988,0,0);}
.m15_c01262{transform:matrix(0.249776,0.001499,-0.001500,0.249996,0,0);-ms-transform:matrix(0.249776,0.001499,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.249776,0.001499,-0.001500,0.249996,0,0);}
.m41_c01262{transform:matrix(0.250320,0.002754,-0.002750,0.249985,0,0);-ms-transform:matrix(0.250320,0.002754,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.250320,0.002754,-0.002750,0.249985,0,0);}
.m38_c01262{transform:matrix(0.250390,0.002754,-0.002750,0.249985,0,0);-ms-transform:matrix(0.250390,0.002754,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.250390,0.002754,-0.002750,0.249985,0,0);}
.m3e_c01262{transform:matrix(0.251135,0.002762,-0.002750,0.249985,0,0);-ms-transform:matrix(0.251135,0.002762,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.251135,0.002762,-0.002750,0.249985,0,0);}
.m26_c01262{transform:matrix(0.251210,0.002261,-0.002250,0.249990,0,0);-ms-transform:matrix(0.251210,0.002261,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.251210,0.002261,-0.002250,0.249990,0,0);}
.m3f_c01262{transform:matrix(0.252110,0.002773,-0.002750,0.249985,0,0);-ms-transform:matrix(0.252110,0.002773,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.252110,0.002773,-0.002750,0.249985,0,0);}
.m47_c01262{transform:matrix(0.253090,0.002784,-0.002750,0.249985,0,0);-ms-transform:matrix(0.253090,0.002784,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.253090,0.002784,-0.002750,0.249985,0,0);}
.m1d_c01262{transform:matrix(0.255360,0.001532,-0.001500,0.249996,0,0);-ms-transform:matrix(0.255360,0.001532,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.255360,0.001532,-0.001500,0.249996,0,0);}
.m2d_c01262{transform:matrix(0.255890,0.002303,-0.002250,0.249990,0,0);-ms-transform:matrix(0.255890,0.002303,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.255890,0.002303,-0.002250,0.249990,0,0);}
.m36_c01262{transform:matrix(0.256337,0.002563,-0.002500,0.249988,0,0);-ms-transform:matrix(0.256337,0.002563,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.256337,0.002563,-0.002500,0.249988,0,0);}
.m1a_c01262{transform:matrix(0.256785,0.001541,-0.001500,0.249996,0,0);-ms-transform:matrix(0.256785,0.001541,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.256785,0.001541,-0.001500,0.249996,0,0);}
.m29_c01262{transform:matrix(0.259449,0.002335,-0.002250,0.249990,0,0);-ms-transform:matrix(0.259449,0.002335,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.259449,0.002335,-0.002250,0.249990,0,0);}
.m13_c01262{transform:matrix(0.261925,0.001572,-0.001500,0.249996,0,0);-ms-transform:matrix(0.261925,0.001572,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.261925,0.001572,-0.001500,0.249996,0,0);}
.m22_c01262{transform:matrix(0.265675,0.001594,-0.001500,0.249996,0,0);-ms-transform:matrix(0.265675,0.001594,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.265675,0.001594,-0.001500,0.249996,0,0);}
.m12_c01262{transform:matrix(0.266205,0.001597,-0.001500,0.249996,0,0);-ms-transform:matrix(0.266205,0.001597,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.266205,0.001597,-0.001500,0.249996,0,0);}
.m2b_c01262{transform:matrix(0.266274,0.002396,-0.002250,0.249990,0,0);-ms-transform:matrix(0.266274,0.002396,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.266274,0.002396,-0.002250,0.249990,0,0);}
.m2e_c01262{transform:matrix(0.266317,0.002663,-0.002500,0.249988,0,0);-ms-transform:matrix(0.266317,0.002663,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.266317,0.002663,-0.002500,0.249988,0,0);}
.m32_c01262{transform:matrix(0.269507,0.002695,-0.002500,0.249988,0,0);-ms-transform:matrix(0.269507,0.002695,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.269507,0.002695,-0.002500,0.249988,0,0);}
.m33_c01262{transform:matrix(0.269902,0.002699,-0.002500,0.249988,0,0);-ms-transform:matrix(0.269902,0.002699,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.269902,0.002699,-0.002500,0.249988,0,0);}
.m1b_c01262{transform:matrix(0.270670,0.001624,-0.001500,0.249996,0,0);-ms-transform:matrix(0.270670,0.001624,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.270670,0.001624,-0.001500,0.249996,0,0);}
.m2c_c01262{transform:matrix(0.270954,0.002439,-0.002250,0.249990,0,0);-ms-transform:matrix(0.270954,0.002439,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.270954,0.002439,-0.002250,0.249990,0,0);}
.m30_c01262{transform:matrix(0.271006,0.002710,-0.002500,0.249988,0,0);-ms-transform:matrix(0.271006,0.002710,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.271006,0.002710,-0.002500,0.249988,0,0);}
.m17_c01262{transform:matrix(0.274845,0.001649,-0.001500,0.249996,0,0);-ms-transform:matrix(0.274845,0.001649,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.274845,0.001649,-0.001500,0.249996,0,0);}
.m42_c01262{transform:matrix(0.275048,0.003026,-0.002750,0.249985,0,0);-ms-transform:matrix(0.275048,0.003026,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.275048,0.003026,-0.002750,0.249985,0,0);}
.m48_c01262{transform:matrix(0.276073,0.003037,-0.002750,0.249985,0,0);-ms-transform:matrix(0.276073,0.003037,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.276073,0.003037,-0.002750,0.249985,0,0);}
.me_c01262{transform:matrix(0.276350,0.001658,-0.001500,0.249996,0,0);-ms-transform:matrix(0.276350,0.001658,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.276350,0.001658,-0.001500,0.249996,0,0);}
.m20_c01262{transform:matrix(0.276865,0.001661,-0.001500,0.249996,0,0);-ms-transform:matrix(0.276865,0.001661,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.276865,0.001661,-0.001500,0.249996,0,0);}
.m25_c01262{transform:matrix(0.278464,0.002506,-0.002250,0.249990,0,0);-ms-transform:matrix(0.278464,0.002506,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.278464,0.002506,-0.002250,0.249990,0,0);}
.m1c_c01262{transform:matrix(0.281525,0.001689,-0.001500,0.249996,0,0);-ms-transform:matrix(0.281525,0.001689,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.281525,0.001689,-0.001500,0.249996,0,0);}
.md_c01262{transform:matrix(0.281830,0.001691,-0.001500,0.249996,0,0);-ms-transform:matrix(0.281830,0.001691,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.281830,0.001691,-0.001500,0.249996,0,0);}
.m4a_c01262{transform:matrix(0.281863,0.003100,-0.002750,0.249985,0,0);-ms-transform:matrix(0.281863,0.003100,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.281863,0.003100,-0.002750,0.249985,0,0);}
.m21_c01262{transform:matrix(0.284160,0.001705,-0.001500,0.249996,0,0);-ms-transform:matrix(0.284160,0.001705,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.284160,0.001705,-0.001500,0.249996,0,0);}
.m1f_c01262{transform:matrix(0.286360,0.001718,-0.001500,0.249996,0,0);-ms-transform:matrix(0.286360,0.001718,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.286360,0.001718,-0.001500,0.249996,0,0);}
.m2a_c01262{transform:matrix(0.287473,0.002587,-0.002250,0.249990,0,0);-ms-transform:matrix(0.287473,0.002587,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.287473,0.002587,-0.002250,0.249990,0,0);}
.m14_c01262{transform:matrix(0.289510,0.001737,-0.001500,0.249996,0,0);-ms-transform:matrix(0.289510,0.001737,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.289510,0.001737,-0.001500,0.249996,0,0);}
.m28_c01262{transform:matrix(0.296438,0.002668,-0.002250,0.249990,0,0);-ms-transform:matrix(0.296438,0.002668,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.296438,0.002668,-0.002250,0.249990,0,0);}
.m27_c01262{transform:matrix(0.298733,0.002689,-0.002250,0.249990,0,0);-ms-transform:matrix(0.298733,0.002689,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.298733,0.002689,-0.002250,0.249990,0,0);}
.m10_c01262{transform:matrix(0.298755,0.001793,-0.001500,0.249996,0,0);-ms-transform:matrix(0.298755,0.001793,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.298755,0.001793,-0.001500,0.249996,0,0);}
.mf_c01262{transform:matrix(0.302800,0.001817,-0.001500,0.249996,0,0);-ms-transform:matrix(0.302800,0.001817,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.302800,0.001817,-0.001500,0.249996,0,0);}
.m11_c01262{transform:matrix(0.303185,0.001819,-0.001500,0.249996,0,0);-ms-transform:matrix(0.303185,0.001819,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.303185,0.001819,-0.001500,0.249996,0,0);}
.m16_c01262{transform:matrix(0.304980,0.001830,-0.001500,0.249996,0,0);-ms-transform:matrix(0.304980,0.001830,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.304980,0.001830,-0.001500,0.249996,0,0);}
.mc_c01262{transform:matrix(0.309617,0.006502,-0.005249,0.249945,0,0);-ms-transform:matrix(0.309617,0.006502,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.309617,0.006502,-0.005249,0.249945,0,0);}
.m23_c01262{transform:matrix(0.327587,0.002948,-0.002250,0.249990,0,0);-ms-transform:matrix(0.327587,0.002948,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.327587,0.002948,-0.002250,0.249990,0,0);}
.m4_c01262{transform:matrix(0.335336,0.007042,-0.005249,0.249945,0,0);-ms-transform:matrix(0.335336,0.007042,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.335336,0.007042,-0.005249,0.249945,0,0);}
.m6_c01262{transform:matrix(0.352202,0.007396,-0.005249,0.249945,0,0);-ms-transform:matrix(0.352202,0.007396,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.352202,0.007396,-0.005249,0.249945,0,0);}
.m8_c01262{transform:matrix(0.403026,0.008464,-0.005249,0.249945,0,0);-ms-transform:matrix(0.403026,0.008464,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.403026,0.008464,-0.005249,0.249945,0,0);}
.ma_c01262{transform:matrix(0.446781,0.009382,-0.005249,0.249945,0,0);-ms-transform:matrix(0.446781,0.009382,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.446781,0.009382,-0.005249,0.249945,0,0);}
.m3_c01262{transform:matrix(0.460034,0.009661,-0.005249,0.249945,0,0);-ms-transform:matrix(0.460034,0.009661,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.460034,0.009661,-0.005249,0.249945,0,0);}
.m7_c01262{transform:matrix(0.528299,0.011094,-0.005249,0.249945,0,0);-ms-transform:matrix(0.528299,0.011094,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.528299,0.011094,-0.005249,0.249945,0,0);}
.m9_c01262{transform:matrix(0.695692,0.014610,-0.005249,0.249945,0,0);-ms-transform:matrix(0.695692,0.014610,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.695692,0.014610,-0.005249,0.249945,0,0);}
.m5_c01262{transform:matrix(2.833345,0.059500,-0.005249,0.249945,0,0);-ms-transform:matrix(2.833345,0.059500,-0.005249,0.249945,0,0);-webkit-transform:matrix(2.833345,0.059500,-0.005249,0.249945,0,0);}
.mb_c01262{transform:matrix(2.933698,0.061608,-0.005249,0.249945,0,0);-ms-transform:matrix(2.933698,0.061608,-0.005249,0.249945,0,0);-webkit-transform:matrix(2.933698,0.061608,-0.005249,0.249945,0,0);}
.v0_c01262{vertical-align:0.000000px;}
.ls0_c01262{letter-spacing:0.000000px;}
.sc__c01262{text-shadow:none;}
.sc0_c01262{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__c01262{-webkit-text-stroke:0px transparent;}
.sc0_c01262{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01262{word-spacing:0.000000px;}
.fc0_c01262{color:transparent;}
.fs1_c01262{font-size:18.003969px;}
.fs2_c01262{font-size:30.006614px;}
.fs3_c01262{font-size:66.001188px;}
.fs4_c01262{font-size:66.002673px;}
.fs5_c01262{font-size:72.003600px;}
.fs7_c01262{font-size:72.004356px;}
.fs6_c01262{font-size:78.004719px;}
.fs8_c01262{font-size:84.003402px;}
.fs0_c01262{font-size:84.020326px;}
.y0_c01262{bottom:0.000000px;}
.y53_c01262{bottom:859.269143px;}
.y52_c01262{bottom:859.750593px;}
.y51_c01262{bottom:860.163518px;}
.y50_c01262{bottom:860.856405px;}
.y4f_c01262{bottom:861.935325px;}
.y4e_c01262{bottom:862.532997px;}
.y4d_c01262{bottom:862.921500px;}
.y4c_c01262{bottom:890.704620px;}
.y4b_c01262{bottom:892.568061px;}
.y4a_c01262{bottom:893.032536px;}
.y49_c01262{bottom:894.711282px;}
.y48_c01262{bottom:895.634094px;}
.y47_c01262{bottom:896.269537px;}
.y46_c01262{bottom:897.052311px;}
.y45_c01262{bottom:897.800970px;}
.y44_c01262{bottom:898.279582px;}
.y43_c01262{bottom:899.640294px;}
.y42_c01262{bottom:927.326044px;}
.y41_c01262{bottom:927.833683px;}
.y40_c01262{bottom:928.814278px;}
.y3f_c01262{bottom:929.907370px;}
.y3e_c01262{bottom:930.272664px;}
.y3d_c01262{bottom:931.006369px;}
.y3c_c01262{bottom:931.362819px;}
.y3b_c01262{bottom:931.737055px;}
.y3a_c01262{bottom:932.449839px;}
.y39_c01262{bottom:933.302212px;}
.y38_c01262{bottom:933.661500px;}
.y37_c01262{bottom:963.923430px;}
.y36_c01262{bottom:964.250040px;}
.y35_c01262{bottom:964.703700px;}
.y34_c01262{bottom:965.484150px;}
.y33_c01262{bottom:966.143025px;}
.y32_c01262{bottom:966.569310px;}
.y31_c01262{bottom:967.444500px;}
.y30_c01262{bottom:967.778880px;}
.y2f_c01262{bottom:968.761500px;}
.y2e_c01262{bottom:999.544767px;}
.y2d_c01262{bottom:1000.047750px;}
.y2c_c01262{bottom:1000.353916px;}
.y2b_c01262{bottom:1000.849664px;}
.y2a_c01262{bottom:1001.250425px;}
.y29_c01262{bottom:1002.234628px;}
.y28_c01262{bottom:1003.333407px;}
.y27_c01262{bottom:1003.639573px;}
.y26_c01262{bottom:1004.220344px;}
.y25_c01262{bottom:1004.416809px;}
.y24_c01262{bottom:1005.211500px;}
.y23_c01262{bottom:1031.079171px;}
.y22_c01262{bottom:1031.519169px;}
.y21_c01262{bottom:1032.035439px;}
.y20_c01262{bottom:1032.675459px;}
.y1f_c01262{bottom:1032.932748px;}
.y1e_c01262{bottom:1033.639587px;}
.y1d_c01262{bottom:1034.262210px;}
.y1c_c01262{bottom:1034.694264px;}
.y1b_c01262{bottom:1035.046662px;}
.y1a_c01262{bottom:1035.221364px;}
.y19_c01262{bottom:1035.755094px;}
.y18_c01262{bottom:1036.260030px;}
.y17_c01262{bottom:1068.853167px;}
.y16_c01262{bottom:1069.057287px;}
.y15_c01262{bottom:1069.518987px;}
.y14_c01262{bottom:1069.719948px;}
.y13_c01262{bottom:1069.985547px;}
.y12_c01262{bottom:1070.645049px;}
.y11_c01262{bottom:1071.242865px;}
.y10_c01262{bottom:1071.847161px;}
.yf_c01262{bottom:1072.167894px;}
.ye_c01262{bottom:1072.440000px;}
.yd_c01262{bottom:1144.746513px;}
.yb_c01262{bottom:1147.740729px;}
.ya_c01262{bottom:1148.209701px;}
.yc_c01262{bottom:1148.312880px;}
.y9_c01262{bottom:1148.443683px;}
.y8_c01262{bottom:1148.659080px;}
.y7_c01262{bottom:1148.908497px;}
.y6_c01262{bottom:1149.854473px;}
.y5_c01262{bottom:1150.693917px;}
.y4_c01262{bottom:1151.011500px;}
.y3_c01262{bottom:1160.284329px;}
.y2_c01262{bottom:1162.211562px;}
.y1_c01262{bottom:1163.706000px;}
.h3_c01262{height:18.003969px;}
.h4_c01262{height:30.006614px;}
.h5_c01262{height:66.001188px;}
.h6_c01262{height:66.002673px;}
.h7_c01262{height:72.003600px;}
.h9_c01262{height:72.004356px;}
.h8_c01262{height:78.004719px;}
.ha_c01262{height:84.003402px;}
.h2_c01262{height:84.020326px;}
.h1_c01262{height:1258.500000px;}
.h0_c01262{height:1258.740000px;}
.w1_c01262{width:888.750000px;}
.w0_c01262{width:889.050000px;}
.x0_c01262{left:0.000000px;}
.x1e_c01262{left:161.914500px;}
.x15_c01262{left:164.597358px;}
.xc_c01262{left:194.320500px;}
.x3c_c01262{left:204.534000px;}
.x2c_c01262{left:226.104000px;}
.x16_c01262{left:227.752602px;}
.xd_c01262{left:239.671500px;}
.x1f_c01262{left:250.213500px;}
.x36_c01262{left:259.052784px;}
.x27_c01262{left:260.170500px;}
.x3d_c01262{left:270.942000px;}
.x20_c01262{left:272.043000px;}
.xe_c01262{left:293.127000px;}
.x17_c01262{left:294.456801px;}
.x2d_c01262{left:303.592500px;}
.x1_c01262{left:315.081000px;}
.x18_c01262{left:316.323540px;}
.x21_c01262{left:336.573000px;}
.x37_c01262{left:346.756397px;}
.x4_c01262{left:359.589000px;}
.x2e_c01262{left:368.391000px;}
.x22_c01262{left:370.591500px;}
.x5_c01262{left:374.712000px;}
.x28_c01262{left:381.127500px;}
.x2_c01262{left:383.010000px;}
.x3e_c01262{left:390.822000px;}
.xf_c01262{left:393.843000px;}
.x2f_c01262{left:402.412500px;}
.x6_c01262{left:414.685500px;}
.x29_c01262{left:423.756000px;}
.x30_c01262{left:434.817000px;}
.x38_c01262{left:448.000047px;}
.x7_c01262{left:459.732000px;}
.x3f_c01262{left:467.809500px;}
.x3_c01262{left:470.611500px;}
.x8_c01262{left:481.866000px;}
.xb_c01262{left:485.059801px;}
.x2a_c01262{left:489.643500px;}
.x9_c01262{left:493.008000px;}
.x31_c01262{left:501.517500px;}
.x39_c01262{left:513.889869px;}
.xa_c01262{left:515.340000px;}
.x32_c01262{left:534.726000px;}
.x2b_c01262{left:567.688500px;}
.x19_c01262{left:580.389363px;}
.x23_c01262{left:602.034000px;}
.x10_c01262{left:603.396000px;}
.x1a_c01262{left:612.520476px;}
.x33_c01262{left:634.098000px;}
.x24_c01262{left:646.563000px;}
.x11_c01262{left:647.662500px;}
.x3a_c01262{left:666.995820px;}
.x12_c01262{left:681.156000px;}
.x1b_c01262{left:692.439513px;}
.x25_c01262{left:701.646000px;}
.x34_c01262{left:723.243000px;}
.x26_c01262{left:735.664500px;}
.x1c_c01262{left:756.983739px;}
.x13_c01262{left:758.106000px;}
.x35_c01262{left:769.392000px;}
.x14_c01262{left:792.126000px;}
.x3b_c01262{left:800.122431px;}
.x1d_c01262{left:812.066082px;}
@media print{
.v0_c01262{vertical-align:0.000000pt;}
.ls0_c01262{letter-spacing:0.000000pt;}
.ws0_c01262{word-spacing:0.000000pt;}
.fs1_c01262{font-size:16.003528pt;}
.fs2_c01262{font-size:26.672546pt;}
.fs3_c01262{font-size:58.667723pt;}
.fs4_c01262{font-size:58.669043pt;}
.fs5_c01262{font-size:64.003200pt;}
.fs7_c01262{font-size:64.003872pt;}
.fs6_c01262{font-size:69.337528pt;}
.fs8_c01262{font-size:74.669691pt;}
.fs0_c01262{font-size:74.684734pt;}
.y0_c01262{bottom:0.000000pt;}
.y53_c01262{bottom:763.794793pt;}
.y52_c01262{bottom:764.222749pt;}
.y51_c01262{bottom:764.589793pt;}
.y50_c01262{bottom:765.205693pt;}
.y4f_c01262{bottom:766.164733pt;}
.y4e_c01262{bottom:766.695997pt;}
.y4d_c01262{bottom:767.041333pt;}
.y4c_c01262{bottom:791.737440pt;}
.y4b_c01262{bottom:793.393832pt;}
.y4a_c01262{bottom:793.806699pt;}
.y49_c01262{bottom:795.298917pt;}
.y48_c01262{bottom:796.119195pt;}
.y47_c01262{bottom:796.684033pt;}
.y46_c01262{bottom:797.379832pt;}
.y45_c01262{bottom:798.045307pt;}
.y44_c01262{bottom:798.470740pt;}
.y43_c01262{bottom:799.680261pt;}
.y42_c01262{bottom:824.289817pt;}
.y41_c01262{bottom:824.741052pt;}
.y40_c01262{bottom:825.612692pt;}
.y3f_c01262{bottom:826.584329pt;}
.y3e_c01262{bottom:826.909035pt;}
.y3d_c01262{bottom:827.561217pt;}
.y3c_c01262{bottom:827.878061pt;}
.y3b_c01262{bottom:828.210716pt;}
.y3a_c01262{bottom:828.844301pt;}
.y39_c01262{bottom:829.601967pt;}
.y38_c01262{bottom:829.921333pt;}
.y37_c01262{bottom:856.820827pt;}
.y36_c01262{bottom:857.111147pt;}
.y35_c01262{bottom:857.514400pt;}
.y34_c01262{bottom:858.208133pt;}
.y33_c01262{bottom:858.793800pt;}
.y32_c01262{bottom:859.172720pt;}
.y31_c01262{bottom:859.950667pt;}
.y30_c01262{bottom:860.247893pt;}
.y2f_c01262{bottom:861.121333pt;}
.y2e_c01262{bottom:888.484237pt;}
.y2d_c01262{bottom:888.931333pt;}
.y2c_c01262{bottom:889.203481pt;}
.y2b_c01262{bottom:889.644145pt;}
.y2a_c01262{bottom:890.000377pt;}
.y29_c01262{bottom:890.875225pt;}
.y28_c01262{bottom:891.851917pt;}
.y27_c01262{bottom:892.124065pt;}
.y26_c01262{bottom:892.640305pt;}
.y25_c01262{bottom:892.814941pt;}
.y24_c01262{bottom:893.521333pt;}
.y23_c01262{bottom:916.514819pt;}
.y22_c01262{bottom:916.905928pt;}
.y21_c01262{bottom:917.364835pt;}
.y20_c01262{bottom:917.933741pt;}
.y1f_c01262{bottom:918.162443pt;}
.y1e_c01262{bottom:918.790744pt;}
.y1d_c01262{bottom:919.344187pt;}
.y1c_c01262{bottom:919.728235pt;}
.y1b_c01262{bottom:920.041477pt;}
.y1a_c01262{bottom:920.196768pt;}
.y19_c01262{bottom:920.671195pt;}
.y18_c01262{bottom:921.120027pt;}
.y17_c01262{bottom:950.091704pt;}
.y16_c01262{bottom:950.273144pt;}
.y15_c01262{bottom:950.683544pt;}
.y14_c01262{bottom:950.862176pt;}
.y13_c01262{bottom:951.098264pt;}
.y12_c01262{bottom:951.684488pt;}
.y11_c01262{bottom:952.215880pt;}
.y10_c01262{bottom:952.753032pt;}
.yf_c01262{bottom:953.038128pt;}
.ye_c01262{bottom:953.280000pt;}
.yd_c01262{bottom:1017.552456pt;}
.yb_c01262{bottom:1020.213981pt;}
.ya_c01262{bottom:1020.630845pt;}
.yc_c01262{bottom:1020.722560pt;}
.y9_c01262{bottom:1020.838829pt;}
.y8_c01262{bottom:1021.030293pt;}
.y7_c01262{bottom:1021.251997pt;}
.y6_c01262{bottom:1022.092865pt;}
.y5_c01262{bottom:1022.839037pt;}
.y4_c01262{bottom:1023.121333pt;}
.y3_c01262{bottom:1031.363848pt;}
.y2_c01262{bottom:1033.076944pt;}
.y1_c01262{bottom:1034.405333pt;}
.h3_c01262{height:16.003528pt;}
.h4_c01262{height:26.672546pt;}
.h5_c01262{height:58.667723pt;}
.h6_c01262{height:58.669043pt;}
.h7_c01262{height:64.003200pt;}
.h9_c01262{height:64.003872pt;}
.h8_c01262{height:69.337528pt;}
.ha_c01262{height:74.669691pt;}
.h2_c01262{height:74.684734pt;}
.h1_c01262{height:1118.666667pt;}
.h0_c01262{height:1118.880000pt;}
.w1_c01262{width:790.000000pt;}
.w0_c01262{width:790.266667pt;}
.x0_c01262{left:0.000000pt;}
.x1e_c01262{left:143.924000pt;}
.x15_c01262{left:146.308763pt;}
.xc_c01262{left:172.729333pt;}
.x3c_c01262{left:181.808000pt;}
.x2c_c01262{left:200.981333pt;}
.x16_c01262{left:202.446757pt;}
.xd_c01262{left:213.041333pt;}
.x1f_c01262{left:222.412000pt;}
.x36_c01262{left:230.269141pt;}
.x27_c01262{left:231.262667pt;}
.x3d_c01262{left:240.837333pt;}
.x20_c01262{left:241.816000pt;}
.xe_c01262{left:260.557333pt;}
.x17_c01262{left:261.739379pt;}
.x2d_c01262{left:269.860000pt;}
.x1_c01262{left:280.072000pt;}
.x18_c01262{left:281.176480pt;}
.x21_c01262{left:299.176000pt;}
.x37_c01262{left:308.227908pt;}
.x4_c01262{left:319.634667pt;}
.x2e_c01262{left:327.458667pt;}
.x22_c01262{left:329.414667pt;}
.x5_c01262{left:333.077333pt;}
.x28_c01262{left:338.780000pt;}
.x2_c01262{left:340.453333pt;}
.x3e_c01262{left:347.397333pt;}
.xf_c01262{left:350.082667pt;}
.x2f_c01262{left:357.700000pt;}
.x6_c01262{left:368.609333pt;}
.x29_c01262{left:376.672000pt;}
.x30_c01262{left:386.504000pt;}
.x38_c01262{left:398.222264pt;}
.x7_c01262{left:408.650667pt;}
.x3f_c01262{left:415.830667pt;}
.x3_c01262{left:418.321333pt;}
.x8_c01262{left:428.325333pt;}
.xb_c01262{left:431.164268pt;}
.x2a_c01262{left:435.238667pt;}
.x9_c01262{left:438.229333pt;}
.x31_c01262{left:445.793333pt;}
.x39_c01262{left:456.790995pt;}
.xa_c01262{left:458.080000pt;}
.x32_c01262{left:475.312000pt;}
.x2b_c01262{left:504.612000pt;}
.x19_c01262{left:515.901656pt;}
.x23_c01262{left:535.141333pt;}
.x10_c01262{left:536.352000pt;}
.x1a_c01262{left:544.462645pt;}
.x33_c01262{left:563.642667pt;}
.x24_c01262{left:574.722667pt;}
.x11_c01262{left:575.700000pt;}
.x3a_c01262{left:592.885173pt;}
.x12_c01262{left:605.472000pt;}
.x1b_c01262{left:615.501789pt;}
.x25_c01262{left:623.685333pt;}
.x34_c01262{left:642.882667pt;}
.x26_c01262{left:653.924000pt;}
.x1c_c01262{left:672.874435pt;}
.x13_c01262{left:673.872000pt;}
.x35_c01262{left:683.904000pt;}
.x14_c01262{left:704.112000pt;}
.x3b_c01262{left:711.219939pt;}
.x1d_c01262{left:721.836517pt;}
}





/* 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_c01263 {
    display:none;
  }
  .loading-indicator_c01263.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01263 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_c01263 { 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_c01263" -> "#page-container .classname_c01263")
 */
.pf_c01263 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01263 { /* 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_c01263.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01263 { /* 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_c01263 { /* 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_c01263 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01263 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01263 {overflow:visible;}
  }
}
.c_c01263 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01263 { /* 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_c01263:after { /* webkit #35443 */
  content: '';
}
.t_c01263:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01263 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 */
}
.__c01263 { /* 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_c01263 { /* info for Javascript */
  display:none;
}
.l_c01263 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01263 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01263 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01263: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_c01263 {
    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_c01263.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01263.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_c01263 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01263{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01263;src:url('chunks/assets/font_5f4fe34b032b9307bcc13373.woff2')format("woff");}.ff1_c01263{font-family:ff1_c01263;line-height:1.000000;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;}
.m0_c01263{transform:matrix(1.141545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.141545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.141545,0.000000,0.000000,0.250000,0,0);}
.v0_c01263{vertical-align:0.000000px;}
.ls0_c01263{letter-spacing:0.000000px;}
.sc__c01263{text-shadow:none;}
.sc0_c01263{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__c01263{-webkit-text-stroke:0px transparent;}
.sc0_c01263{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01263{word-spacing:0.000000px;}
.fc0_c01263{color:transparent;}
.fs0_c01263{font-size:42.000000px;}
.y0_c01263{bottom:0.000000px;}
.y1_c01263{bottom:1249.152000px;}
.h2_c01263{height:42.000000px;}
.h1_c01263{height:1258.500000px;}
.h0_c01263{height:1258.740000px;}
.w1_c01263{width:888.750000px;}
.w0_c01263{width:889.050000px;}
.x0_c01263{left:0.000000px;}
.x1_c01263{left:429.300000px;}
@media print{
.v0_c01263{vertical-align:0.000000pt;}
.ls0_c01263{letter-spacing:0.000000pt;}
.ws0_c01263{word-spacing:0.000000pt;}
.fs0_c01263{font-size:37.333333pt;}
.y0_c01263{bottom:0.000000pt;}
.y1_c01263{bottom:1110.357333pt;}
.h2_c01263{height:37.333333pt;}
.h1_c01263{height:1118.666667pt;}
.h0_c01263{height:1118.880000pt;}
.w1_c01263{width:790.000000pt;}
.w0_c01263{width:790.266667pt;}
.x0_c01263{left:0.000000pt;}
.x1_c01263{left:381.600000pt;}
}





/* 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_c01264 {
    display:none;
  }
  .loading-indicator_c01264.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01264 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_c01264 { 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_c01264" -> "#page-container .classname_c01264")
 */
.pf_c01264 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01264 { /* 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_c01264.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01264 { /* 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_c01264 { /* 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_c01264 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01264 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01264 {overflow:visible;}
  }
}
.c_c01264 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01264 { /* 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_c01264:after { /* webkit #35443 */
  content: '';
}
.t_c01264:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01264 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 */
}
.__c01264 { /* 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_c01264 { /* info for Javascript */
  display:none;
}
.l_c01264 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01264 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01264 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01264: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_c01264 {
    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_c01264.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01264.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_c01264 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01264{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01264;src:url('chunks/assets/font_cfe63ee56e9e10a97d33a3db.woff2')format("woff");}.ff1_c01264{font-family:ff1_c01264;line-height:1.000000;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;}
.m3c_c01264{transform:matrix(0.035640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.035640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.035640,0.000000,0.000000,0.250000,0,0);}
.m3b_c01264{transform:matrix(0.151865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151865,0.000000,0.000000,0.250000,0,0);}
.m60_c01264{transform:matrix(0.180855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180855,0.000000,0.000000,0.250000,0,0);}
.m5f_c01264{transform:matrix(0.185600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185600,0.000000,0.000000,0.250000,0,0);}
.m63_c01264{transform:matrix(0.186945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186945,0.000000,0.000000,0.250000,0,0);}
.m67_c01264{transform:matrix(0.188930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188930,0.000000,0.000000,0.250000,0,0);}
.m62_c01264{transform:matrix(0.192015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192015,0.000000,0.000000,0.250000,0,0);}
.m3e_c01264{transform:matrix(0.196060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196060,0.000000,0.000000,0.250000,0,0);}
.m56_c01264{transform:matrix(0.201805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201805,0.000000,0.000000,0.250000,0,0);}
.m65_c01264{transform:matrix(0.201950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201950,0.000000,0.000000,0.250000,0,0);}
.m33_c01264{transform:matrix(0.204605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204605,0.000000,0.000000,0.250000,0,0);}
.m43_c01264{transform:matrix(0.205490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205490,0.000000,0.000000,0.250000,0,0);}
.m54_c01264{transform:matrix(0.205745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205745,0.000000,0.000000,0.250000,0,0);}
.m5e_c01264{transform:matrix(0.207070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207070,0.000000,0.000000,0.250000,0,0);}
.m61_c01264{transform:matrix(0.209765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209765,0.000000,0.000000,0.250000,0,0);}
.m66_c01264{transform:matrix(0.210245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210245,0.000000,0.000000,0.250000,0,0);}
.m64_c01264{transform:matrix(0.211640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211640,0.000000,0.000000,0.250000,0,0);}
.m2b_c01264{transform:matrix(0.211665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211665,0.000000,0.000000,0.250000,0,0);}
.m5b_c01264{transform:matrix(0.212395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212395,0.000000,0.000000,0.250000,0,0);}
.m1e_c01264{transform:matrix(0.226840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226840,0.000000,0.000000,0.250000,0,0);}
.mb_c01264{transform:matrix(0.227005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227005,0.000000,0.000000,0.250000,0,0);}
.m36_c01264{transform:matrix(0.227185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227185,0.000000,0.000000,0.250000,0,0);}
.m39_c01264{transform:matrix(0.228965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228965,0.000000,0.000000,0.250000,0,0);}
.m1a_c01264{transform:matrix(0.229195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229195,0.000000,0.000000,0.250000,0,0);}
.mf_c01264{transform:matrix(0.229555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229555,0.000000,0.000000,0.250000,0,0);}
.m40_c01264{transform:matrix(0.230220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230220,0.000000,0.000000,0.250000,0,0);}
.m7_c01264{transform:matrix(0.231625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231625,0.000000,0.000000,0.250000,0,0);}
.m30_c01264{transform:matrix(0.237200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237200,0.000000,0.000000,0.250000,0,0);}
.m16_c01264{transform:matrix(0.239180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239180,0.000000,0.000000,0.250000,0,0);}
.m17_c01264{transform:matrix(0.240635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240635,0.000000,0.000000,0.250000,0,0);}
.m37_c01264{transform:matrix(0.241415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241415,0.000000,0.000000,0.250000,0,0);}
.m1b_c01264{transform:matrix(0.242745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242745,0.000000,0.000000,0.250000,0,0);}
.m13_c01264{transform:matrix(0.244095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244095,0.000000,0.000000,0.250000,0,0);}
.m3f_c01264{transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);}
.m49_c01264{transform:matrix(0.244435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244435,0.000000,0.000000,0.250000,0,0);}
.me_c01264{transform:matrix(0.246660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246660,0.000000,0.000000,0.250000,0,0);}
.m18_c01264{transform:matrix(0.247310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247310,0.000000,0.000000,0.250000,0,0);}
.m45_c01264{transform:matrix(0.247395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247395,0.000000,0.000000,0.250000,0,0);}
.m21_c01264{transform:matrix(0.249110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249110,0.000000,0.000000,0.250000,0,0);}
.m14_c01264{transform:matrix(0.249655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249655,0.000000,0.000000,0.250000,0,0);}
.m5d_c01264{transform:matrix(0.249665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249665,0.000000,0.000000,0.250000,0,0);}
.m31_c01264{transform:matrix(0.250470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250470,0.000000,0.000000,0.250000,0,0);}
.m20_c01264{transform:matrix(0.251060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251060,0.000000,0.000000,0.250000,0,0);}
.m52_c01264{transform:matrix(0.251720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251720,0.000000,0.000000,0.250000,0,0);}
.m42_c01264{transform:matrix(0.253425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253425,0.000000,0.000000,0.250000,0,0);}
.m34_c01264{transform:matrix(0.253785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253785,0.000000,0.000000,0.250000,0,0);}
.m41_c01264{transform:matrix(0.254950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254950,0.000000,0.000000,0.250000,0,0);}
.m4a_c01264{transform:matrix(0.254980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254980,0.000000,0.000000,0.250000,0,0);}
.m58_c01264{transform:matrix(0.255030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255030,0.000000,0.000000,0.250000,0,0);}
.m44_c01264{transform:matrix(0.255570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255570,0.000000,0.000000,0.250000,0,0);}
.m23_c01264{transform:matrix(0.255905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255905,0.000000,0.000000,0.250000,0,0);}
.m4c_c01264{transform:matrix(0.256450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256450,0.000000,0.000000,0.250000,0,0);}
.m2f_c01264{transform:matrix(0.257100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257100,0.000000,0.000000,0.250000,0,0);}
.m29_c01264{transform:matrix(0.257150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257150,0.000000,0.000000,0.250000,0,0);}
.mc_c01264{transform:matrix(0.258735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258735,0.000000,0.000000,0.250000,0,0);}
.m48_c01264{transform:matrix(0.258745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258745,0.000000,0.000000,0.250000,0,0);}
.m1d_c01264{transform:matrix(0.259055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259055,0.000000,0.000000,0.250000,0,0);}
.md_c01264{transform:matrix(0.260100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260100,0.000000,0.000000,0.250000,0,0);}
.ma_c01264{transform:matrix(0.260785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260785,0.000000,0.000000,0.250000,0,0);}
.m59_c01264{transform:matrix(0.260930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260930,0.000000,0.000000,0.250000,0,0);}
.m24_c01264{transform:matrix(0.261050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261050,0.000000,0.000000,0.250000,0,0);}
.m2_c01264{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.m12_c01264{transform:matrix(0.262450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262450,0.000000,0.000000,0.250000,0,0);}
.m11_c01264{transform:matrix(0.262745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262745,0.000000,0.000000,0.250000,0,0);}
.m5_c01264{transform:matrix(0.262815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262815,0.000000,0.000000,0.250000,0,0);}
.m3d_c01264{transform:matrix(0.263160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263160,0.000000,0.000000,0.250000,0,0);}
.m2c_c01264{transform:matrix(0.263450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263450,0.000000,0.000000,0.250000,0,0);}
.m57_c01264{transform:matrix(0.263470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263470,0.000000,0.000000,0.250000,0,0);}
.m25_c01264{transform:matrix(0.264520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264520,0.000000,0.000000,0.250000,0,0);}
.m0_c01264{transform:matrix(0.265630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265630,0.000000,0.000000,0.250000,0,0);}
.m19_c01264{transform:matrix(0.266025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266025,0.000000,0.000000,0.250000,0,0);}
.m1c_c01264{transform:matrix(0.266030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266030,0.000000,0.000000,0.250000,0,0);}
.m5c_c01264{transform:matrix(0.266620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266620,0.000000,0.000000,0.250000,0,0);}
.m53_c01264{transform:matrix(0.267065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267065,0.000000,0.000000,0.250000,0,0);}
.m4f_c01264{transform:matrix(0.267120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267120,0.000000,0.000000,0.250000,0,0);}
.m55_c01264{transform:matrix(0.267930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267930,0.000000,0.000000,0.250000,0,0);}
.m1f_c01264{transform:matrix(0.268680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268680,0.000000,0.000000,0.250000,0,0);}
.m8_c01264{transform:matrix(0.269420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269420,0.000000,0.000000,0.250000,0,0);}
.m10_c01264{transform:matrix(0.269990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269990,0.000000,0.000000,0.250000,0,0);}
.m35_c01264{transform:matrix(0.270490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270490,0.000000,0.000000,0.250000,0,0);}
.m9_c01264{transform:matrix(0.271550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271550,0.000000,0.000000,0.250000,0,0);}
.m4e_c01264{transform:matrix(0.272745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272745,0.000000,0.000000,0.250000,0,0);}
.m6_c01264{transform:matrix(0.273925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273925,0.000000,0.000000,0.250000,0,0);}
.m4_c01264{transform:matrix(0.275975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275975,0.000000,0.000000,0.250000,0,0);}
.m46_c01264{transform:matrix(0.276645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276645,0.000000,0.000000,0.250000,0,0);}
.m1_c01264{transform:matrix(0.277905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277905,0.000000,0.000000,0.250000,0,0);}
.m3a_c01264{transform:matrix(0.278055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278055,0.000000,0.000000,0.250000,0,0);}
.m32_c01264{transform:matrix(0.278535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278535,0.000000,0.000000,0.250000,0,0);}
.m5a_c01264{transform:matrix(0.278955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278955,0.000000,0.000000,0.250000,0,0);}
.m38_c01264{transform:matrix(0.279150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279150,0.000000,0.000000,0.250000,0,0);}
.m27_c01264{transform:matrix(0.279970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279970,0.000000,0.000000,0.250000,0,0);}
.m22_c01264{transform:matrix(0.280755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280755,0.000000,0.000000,0.250000,0,0);}
.m15_c01264{transform:matrix(0.281370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281370,0.000000,0.000000,0.250000,0,0);}
.m26_c01264{transform:matrix(0.282210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282210,0.000000,0.000000,0.250000,0,0);}
.m4d_c01264{transform:matrix(0.283110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283110,0.000000,0.000000,0.250000,0,0);}
.m2e_c01264{transform:matrix(0.284165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284165,0.000000,0.000000,0.250000,0,0);}
.m2d_c01264{transform:matrix(0.287430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287430,0.000000,0.000000,0.250000,0,0);}
.m51_c01264{transform:matrix(0.299310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299310,0.000000,0.000000,0.250000,0,0);}
.m4b_c01264{transform:matrix(0.299490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299490,0.000000,0.000000,0.250000,0,0);}
.m28_c01264{transform:matrix(0.300570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300570,0.000000,0.000000,0.250000,0,0);}
.m47_c01264{transform:matrix(0.302010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302010,0.000000,0.000000,0.250000,0,0);}
.m50_c01264{transform:matrix(0.305005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305005,0.000000,0.000000,0.250000,0,0);}
.m2a_c01264{transform:matrix(0.310890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310890,0.000000,0.000000,0.250000,0,0);}
.m71_c01264{transform:matrix(0.326155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326155,0.000000,0.000000,0.250000,0,0);}
.m73_c01264{transform:matrix(0.350180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350180,0.000000,0.000000,0.250000,0,0);}
.m6f_c01264{transform:matrix(0.353460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353460,0.000000,0.000000,0.250000,0,0);}
.m70_c01264{transform:matrix(0.355265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355265,0.000000,0.000000,0.250000,0,0);}
.m75_c01264{transform:matrix(0.357230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357230,0.000000,0.000000,0.250000,0,0);}
.m74_c01264{transform:matrix(0.361460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361460,0.000000,0.000000,0.250000,0,0);}
.m6d_c01264{transform:matrix(0.389955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389955,0.000000,0.000000,0.250000,0,0);}
.m6e_c01264{transform:matrix(0.397805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397805,0.000000,0.000000,0.250000,0,0);}
.m72_c01264{transform:matrix(0.416270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416270,0.000000,0.000000,0.250000,0,0);}
.m6c_c01264{transform:matrix(0.489415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.489415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.489415,0.000000,0.000000,0.250000,0,0);}
.m69_c01264{transform:matrix(0.547850,-0.010957,0.004999,0.249950,0,0);-ms-transform:matrix(0.547850,-0.010957,0.004999,0.249950,0,0);-webkit-transform:matrix(0.547850,-0.010957,0.004999,0.249950,0,0);}
.m6a_c01264{transform:matrix(1.151210,-0.023024,0.004999,0.249950,0,0);-ms-transform:matrix(1.151210,-0.023024,0.004999,0.249950,0,0);-webkit-transform:matrix(1.151210,-0.023024,0.004999,0.249950,0,0);}
.m68_c01264{transform:matrix(1.216817,-0.024336,0.004999,0.249950,0,0);-ms-transform:matrix(1.216817,-0.024336,0.004999,0.249950,0,0);-webkit-transform:matrix(1.216817,-0.024336,0.004999,0.249950,0,0);}
.m6b_c01264{transform:matrix(1.606324,-0.032126,0.004999,0.249950,0,0);-ms-transform:matrix(1.606324,-0.032126,0.004999,0.249950,0,0);-webkit-transform:matrix(1.606324,-0.032126,0.004999,0.249950,0,0);}
.m3_c01264{transform:matrix(3.670125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.670125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.670125,0.000000,0.000000,0.250000,0,0);}
.v0_c01264{vertical-align:0.000000px;}
.ls0_c01264{letter-spacing:0.000000px;}
.sc__c01264{text-shadow:none;}
.sc0_c01264{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__c01264{-webkit-text-stroke:0px transparent;}
.sc0_c01264{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01264{word-spacing:0.000000px;}
.fc0_c01264{color:transparent;}
.fs5_c01264{font-size:18.003600px;}
.fs1_c01264{font-size:30.000000px;}
.fs6_c01264{font-size:48.000000px;}
.fs2_c01264{font-size:66.000000px;}
.fs0_c01264{font-size:72.000000px;}
.fs3_c01264{font-size:78.000000px;}
.fs4_c01264{font-size:90.000000px;}
.y0_c01264{bottom:0.000000px;}
.y1b_c01264{bottom:667.156500px;}
.y17_c01264{bottom:695.772000px;}
.y18_c01264{bottom:696.684420px;}
.y19_c01264{bottom:697.332300px;}
.y1a_c01264{bottom:698.449890px;}
.y16_c01264{bottom:772.203000px;}
.y15_c01264{bottom:806.290500px;}
.y14_c01264{bottom:843.391500px;}
.y13_c01264{bottom:878.664000px;}
.y12_c01264{bottom:914.943000px;}
.y11_c01264{bottom:950.194500px;}
.y10_c01264{bottom:984.364500px;}
.y4_c01264{bottom:1017.630000px;}
.y5_c01264{bottom:1018.023000px;}
.y6_c01264{bottom:1018.356000px;}
.y7_c01264{bottom:1018.620000px;}
.y8_c01264{bottom:1019.212500px;}
.y9_c01264{bottom:1019.674500px;}
.ya_c01264{bottom:1020.136500px;}
.yb_c01264{bottom:1020.328500px;}
.yc_c01264{bottom:1020.597000px;}
.yd_c01264{bottom:1021.260000px;}
.ye_c01264{bottom:1021.396500px;}
.yf_c01264{bottom:1021.597500px;}
.y3_c01264{bottom:1055.355000px;}
.y2_c01264{bottom:1130.575500px;}
.y1_c01264{bottom:1145.508000px;}
.h7_c01264{height:18.003600px;}
.h3_c01264{height:30.000000px;}
.h8_c01264{height:48.000000px;}
.h4_c01264{height:66.000000px;}
.h2_c01264{height:72.000000px;}
.h5_c01264{height:78.000000px;}
.h6_c01264{height:90.000000px;}
.h1_c01264{height:1258.500000px;}
.h0_c01264{height:1258.740000px;}
.w1_c01264{width:888.750000px;}
.w0_c01264{width:889.050000px;}
.x0_c01264{left:0.000000px;}
.x31_c01264{left:134.190000px;}
.x4a_c01264{left:145.432500px;}
.xd_c01264{left:148.588500px;}
.x3e_c01264{left:149.850000px;}
.x23_c01264{left:181.438500px;}
.x37_c01264{left:191.430000px;}
.x2b_c01264{left:203.040000px;}
.x24_c01264{left:204.658500px;}
.x3f_c01264{left:213.030000px;}
.xe_c01264{left:214.203000px;}
.x4b_c01264{left:223.447500px;}
.x2c_c01264{left:225.180000px;}
.x43_c01264{left:226.530000px;}
.x19_c01264{left:246.508500px;}
.x5_c01264{left:255.960000px;}
.x44_c01264{left:257.850000px;}
.x4c_c01264{left:267.840000px;}
.xf_c01264{left:269.812500px;}
.x1a_c01264{left:279.178500px;}
.x45_c01264{left:290.520000px;}
.x32_c01264{left:301.320000px;}
.x10_c01264{left:313.843500px;}
.x33_c01264{left:323.190000px;}
.x1_c01264{left:333.450000px;}
.x25_c01264{left:334.528500px;}
.x38_c01264{left:335.880000px;}
.x4_c01264{left:343.980000px;}
.x40_c01264{left:345.870000px;}
.x1b_c01264{left:355.858500px;}
.x46_c01264{left:357.210000px;}
.x39_c01264{left:366.930000px;}
.x2_c01264{left:388.260000px;}
.x34_c01264{left:389.340000px;}
.x2d_c01264{left:390.690000px;}
.x6_c01264{left:400.680000px;}
.x3a_c01264{left:402.030000px;}
.x1c_c01264{left:410.938500px;}
.x11_c01264{left:412.660500px;}
.x2e_c01264{left:422.280000px;}
.x35_c01264{left:434.160000px;}
.x4d_c01264{left:435.240000px;}
.x1d_c01264{left:445.228500px;}
.x26_c01264{left:456.298500px;}
.x2f_c01264{left:477.630000px;}
.x12_c01264{left:489.601500px;}
.x7_c01264{left:499.500000px;}
.x41_c01264{left:511.380000px;}
.x3_c01264{left:521.100000px;}
.x47_c01264{left:523.260000px;}
.x8_c01264{left:532.170000px;}
.x1e_c01264{left:543.778500px;}
.x3b_c01264{left:554.850000px;}
.x4e_c01264{left:557.010000px;}
.x13_c01264{left:566.550000px;}
.x48_c01264{left:578.070000px;}
.x1f_c01264{left:587.518500px;}
.x4f_c01264{left:588.870000px;}
.x14_c01264{left:598.659000px;}
.x3c_c01264{left:610.200000px;}
.x9_c01264{left:620.460000px;}
.x20_c01264{left:621.538500px;}
.x27_c01264{left:632.878500px;}
.x15_c01264{left:643.497000px;}
.x28_c01264{left:655.018500px;}
.x49_c01264{left:657.720000px;}
.x36_c01264{left:665.280000px;}
.x29_c01264{left:699.298500px;}
.xa_c01264{left:720.090000px;}
.x42_c01264{left:722.520000px;}
.x21_c01264{left:732.238500px;}
.x16_c01264{left:753.892500px;}
.xb_c01264{left:764.910000px;}
.x17_c01264{left:776.592000px;}
.x2a_c01264{left:786.238500px;}
.x22_c01264{left:788.398500px;}
.xc_c01264{left:798.390000px;}
.x3d_c01264{left:808.920000px;}
.x18_c01264{left:810.048000px;}
.x30_c01264{left:856.710000px;}
@media print{
.v0_c01264{vertical-align:0.000000pt;}
.ls0_c01264{letter-spacing:0.000000pt;}
.ws0_c01264{word-spacing:0.000000pt;}
.fs5_c01264{font-size:16.003200pt;}
.fs1_c01264{font-size:26.666667pt;}
.fs6_c01264{font-size:42.666667pt;}
.fs2_c01264{font-size:58.666667pt;}
.fs0_c01264{font-size:64.000000pt;}
.fs3_c01264{font-size:69.333333pt;}
.fs4_c01264{font-size:80.000000pt;}
.y0_c01264{bottom:0.000000pt;}
.y1b_c01264{bottom:593.028000pt;}
.y17_c01264{bottom:618.464000pt;}
.y18_c01264{bottom:619.275040pt;}
.y19_c01264{bottom:619.850933pt;}
.y1a_c01264{bottom:620.844347pt;}
.y16_c01264{bottom:686.402667pt;}
.y15_c01264{bottom:716.702667pt;}
.y14_c01264{bottom:749.681333pt;}
.y13_c01264{bottom:781.034667pt;}
.y12_c01264{bottom:813.282667pt;}
.y11_c01264{bottom:844.617333pt;}
.y10_c01264{bottom:874.990667pt;}
.y4_c01264{bottom:904.560000pt;}
.y5_c01264{bottom:904.909333pt;}
.y6_c01264{bottom:905.205333pt;}
.y7_c01264{bottom:905.440000pt;}
.y8_c01264{bottom:905.966667pt;}
.y9_c01264{bottom:906.377333pt;}
.ya_c01264{bottom:906.788000pt;}
.yb_c01264{bottom:906.958667pt;}
.yc_c01264{bottom:907.197333pt;}
.yd_c01264{bottom:907.786667pt;}
.ye_c01264{bottom:907.908000pt;}
.yf_c01264{bottom:908.086667pt;}
.y3_c01264{bottom:938.093333pt;}
.y2_c01264{bottom:1004.956000pt;}
.y1_c01264{bottom:1018.229333pt;}
.h7_c01264{height:16.003200pt;}
.h3_c01264{height:26.666667pt;}
.h8_c01264{height:42.666667pt;}
.h4_c01264{height:58.666667pt;}
.h2_c01264{height:64.000000pt;}
.h5_c01264{height:69.333333pt;}
.h6_c01264{height:80.000000pt;}
.h1_c01264{height:1118.666667pt;}
.h0_c01264{height:1118.880000pt;}
.w1_c01264{width:790.000000pt;}
.w0_c01264{width:790.266667pt;}
.x0_c01264{left:0.000000pt;}
.x31_c01264{left:119.280000pt;}
.x4a_c01264{left:129.273333pt;}
.xd_c01264{left:132.078667pt;}
.x3e_c01264{left:133.200000pt;}
.x23_c01264{left:161.278667pt;}
.x37_c01264{left:170.160000pt;}
.x2b_c01264{left:180.480000pt;}
.x24_c01264{left:181.918667pt;}
.x3f_c01264{left:189.360000pt;}
.xe_c01264{left:190.402667pt;}
.x4b_c01264{left:198.620000pt;}
.x2c_c01264{left:200.160000pt;}
.x43_c01264{left:201.360000pt;}
.x19_c01264{left:219.118667pt;}
.x5_c01264{left:227.520000pt;}
.x44_c01264{left:229.200000pt;}
.x4c_c01264{left:238.080000pt;}
.xf_c01264{left:239.833333pt;}
.x1a_c01264{left:248.158667pt;}
.x45_c01264{left:258.240000pt;}
.x32_c01264{left:267.840000pt;}
.x10_c01264{left:278.972000pt;}
.x33_c01264{left:287.280000pt;}
.x1_c01264{left:296.400000pt;}
.x25_c01264{left:297.358667pt;}
.x38_c01264{left:298.560000pt;}
.x4_c01264{left:305.760000pt;}
.x40_c01264{left:307.440000pt;}
.x1b_c01264{left:316.318667pt;}
.x46_c01264{left:317.520000pt;}
.x39_c01264{left:326.160000pt;}
.x2_c01264{left:345.120000pt;}
.x34_c01264{left:346.080000pt;}
.x2d_c01264{left:347.280000pt;}
.x6_c01264{left:356.160000pt;}
.x3a_c01264{left:357.360000pt;}
.x1c_c01264{left:365.278667pt;}
.x11_c01264{left:366.809333pt;}
.x2e_c01264{left:375.360000pt;}
.x35_c01264{left:385.920000pt;}
.x4d_c01264{left:386.880000pt;}
.x1d_c01264{left:395.758667pt;}
.x26_c01264{left:405.598667pt;}
.x2f_c01264{left:424.560000pt;}
.x12_c01264{left:435.201333pt;}
.x7_c01264{left:444.000000pt;}
.x41_c01264{left:454.560000pt;}
.x3_c01264{left:463.200000pt;}
.x47_c01264{left:465.120000pt;}
.x8_c01264{left:473.040000pt;}
.x1e_c01264{left:483.358667pt;}
.x3b_c01264{left:493.200000pt;}
.x4e_c01264{left:495.120000pt;}
.x13_c01264{left:503.600000pt;}
.x48_c01264{left:513.840000pt;}
.x1f_c01264{left:522.238667pt;}
.x4f_c01264{left:523.440000pt;}
.x14_c01264{left:532.141333pt;}
.x3c_c01264{left:542.400000pt;}
.x9_c01264{left:551.520000pt;}
.x20_c01264{left:552.478667pt;}
.x27_c01264{left:562.558667pt;}
.x15_c01264{left:571.997333pt;}
.x28_c01264{left:582.238667pt;}
.x49_c01264{left:584.640000pt;}
.x36_c01264{left:591.360000pt;}
.x29_c01264{left:621.598667pt;}
.xa_c01264{left:640.080000pt;}
.x42_c01264{left:642.240000pt;}
.x21_c01264{left:650.878667pt;}
.x16_c01264{left:670.126667pt;}
.xb_c01264{left:679.920000pt;}
.x17_c01264{left:690.304000pt;}
.x2a_c01264{left:698.878667pt;}
.x22_c01264{left:700.798667pt;}
.xc_c01264{left:709.680000pt;}
.x3d_c01264{left:719.040000pt;}
.x18_c01264{left:720.042667pt;}
.x30_c01264{left:761.520000pt;}
}





/* 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_c01265 {
    display:none;
  }
  .loading-indicator_c01265.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01265 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_c01265 { 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_c01265" -> "#page-container .classname_c01265")
 */
.pf_c01265 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01265 { /* 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_c01265.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01265 { /* 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_c01265 { /* 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_c01265 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01265 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01265 {overflow:visible;}
  }
}
.c_c01265 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01265 { /* 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_c01265:after { /* webkit #35443 */
  content: '';
}
.t_c01265:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01265 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 */
}
.__c01265 { /* 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_c01265 { /* info for Javascript */
  display:none;
}
.l_c01265 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01265 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01265 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01265: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_c01265 {
    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_c01265.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01265.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_c01265 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01265{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01265;src:url('chunks/assets/font_e3fbdd6f747043a19966a9dc.woff2')format("woff");}.ff1_c01265{font-family:ff1_c01265;line-height:1.000000;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;}
.m2_c01265{transform:matrix(0.004306,0.269146,-0.249968,0.003999,0,0);-ms-transform:matrix(0.004306,0.269146,-0.249968,0.003999,0,0);-webkit-transform:matrix(0.004306,0.269146,-0.249968,0.003999,0,0);}
.m1_c01265{transform:matrix(0.004307,0.478521,-0.249990,0.002250,0,0);-ms-transform:matrix(0.004307,0.478521,-0.249990,0.002250,0,0);-webkit-transform:matrix(0.004307,0.478521,-0.249990,0.002250,0,0);}
.m3_c01265{transform:matrix(0.008011,0.500666,-0.249968,0.003999,0,0);-ms-transform:matrix(0.008011,0.500666,-0.249968,0.003999,0,0);-webkit-transform:matrix(0.008011,0.500666,-0.249968,0.003999,0,0);}
.m0_c01265{transform:matrix(0.013799,1.533203,-0.249990,0.002250,0,0);-ms-transform:matrix(0.013799,1.533203,-0.249990,0.002250,0,0);-webkit-transform:matrix(0.013799,1.533203,-0.249990,0.002250,0,0);}
.m4_c01265{transform:matrix(0.184860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184860,0.000000,0.000000,0.250000,0,0);}
.v0_c01265{vertical-align:0.000000px;}
.ls0_c01265{letter-spacing:0.000000px;}
.sc__c01265{text-shadow:none;}
.sc0_c01265{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__c01265{-webkit-text-stroke:0px transparent;}
.sc0_c01265{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01265{word-spacing:0.000000px;}
.fc0_c01265{color:transparent;}
.fs0_c01265{font-size:18.000729px;}
.fs2_c01265{font-size:60.000000px;}
.fs1_c01265{font-size:96.012287px;}
.y0_c01265{bottom:0.000000px;}
.y2_c01265{bottom:347.217000px;}
.y1_c01265{bottom:390.960000px;}
.y5_c01265{bottom:799.470000px;}
.y4_c01265{bottom:800.247948px;}
.y3_c01265{bottom:835.455000px;}
.h2_c01265{height:18.000729px;}
.h4_c01265{height:60.000000px;}
.h3_c01265{height:96.012287px;}
.h1_c01265{height:1258.500000px;}
.h0_c01265{height:1258.740000px;}
.w1_c01265{width:888.750000px;}
.w0_c01265{width:889.050000px;}
.x0_c01265{left:0.000000px;}
.x4_c01265{left:165.240000px;}
.x3_c01265{left:298.900644px;}
.x2_c01265{left:353.698500px;}
.x1_c01265{left:877.500000px;}
@media print{
.v0_c01265{vertical-align:0.000000pt;}
.ls0_c01265{letter-spacing:0.000000pt;}
.ws0_c01265{word-spacing:0.000000pt;}
.fs0_c01265{font-size:16.000648pt;}
.fs2_c01265{font-size:53.333333pt;}
.fs1_c01265{font-size:85.344255pt;}
.y0_c01265{bottom:0.000000pt;}
.y2_c01265{bottom:308.637333pt;}
.y1_c01265{bottom:347.520000pt;}
.y5_c01265{bottom:710.640000pt;}
.y4_c01265{bottom:711.331509pt;}
.y3_c01265{bottom:742.626667pt;}
.h2_c01265{height:16.000648pt;}
.h4_c01265{height:53.333333pt;}
.h3_c01265{height:85.344255pt;}
.h1_c01265{height:1118.666667pt;}
.h0_c01265{height:1118.880000pt;}
.w1_c01265{width:790.000000pt;}
.w0_c01265{width:790.266667pt;}
.x0_c01265{left:0.000000pt;}
.x4_c01265{left:146.880000pt;}
.x3_c01265{left:265.689461pt;}
.x2_c01265{left:314.398667pt;}
.x1_c01265{left:780.000000pt;}
}





/* 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_c01266 {
    display:none;
  }
  .loading-indicator_c01266.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01266 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_c01266 { 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_c01266" -> "#page-container .classname_c01266")
 */
.pf_c01266 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01266 { /* 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_c01266.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01266 { /* 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_c01266 { /* 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_c01266 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01266 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01266 {overflow:visible;}
  }
}
.c_c01266 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01266 { /* 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_c01266:after { /* webkit #35443 */
  content: '';
}
.t_c01266:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01266 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 */
}
.__c01266 { /* 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_c01266 { /* info for Javascript */
  display:none;
}
.l_c01266 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01266 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01266 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01266: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_c01266 {
    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_c01266.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01266.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_c01266 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01266{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01266;src:url('chunks/assets/font_dbd529e162d5851c7bfb6d27.woff2')format("woff");}.ff1_c01266{font-family:ff1_c01266;line-height:1.000000;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;}
.m3f_c01266{transform:matrix(0.011590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.011590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.011590,0.000000,0.000000,0.250000,0,0);}
.m7_c01266{transform:matrix(0.187625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187625,0.000000,0.000000,0.250000,0,0);}
.m3e_c01266{transform:matrix(0.190975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190975,0.000000,0.000000,0.250000,0,0);}
.m8_c01266{transform:matrix(0.197810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197810,0.000000,0.000000,0.250000,0,0);}
.m42_c01266{transform:matrix(0.200400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200400,0.000000,0.000000,0.250000,0,0);}
.m20_c01266{transform:matrix(0.202405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202405,0.000000,0.000000,0.250000,0,0);}
.m39_c01266{transform:matrix(0.206845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206845,0.000000,0.000000,0.250000,0,0);}
.m3c_c01266{transform:matrix(0.208385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208385,0.000000,0.000000,0.250000,0,0);}
.m3a_c01266{transform:matrix(0.209220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209220,0.000000,0.000000,0.250000,0,0);}
.m19_c01266{transform:matrix(0.216790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216790,0.000000,0.000000,0.250000,0,0);}
.m4d_c01266{transform:matrix(0.216995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216995,0.000000,0.000000,0.250000,0,0);}
.m3b_c01266{transform:matrix(0.220440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220440,0.000000,0.000000,0.250000,0,0);}
.m3d_c01266{transform:matrix(0.221790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221790,0.000000,0.000000,0.250000,0,0);}
.m14_c01266{transform:matrix(0.222930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222930,0.000000,0.000000,0.250000,0,0);}
.m23_c01266{transform:matrix(0.225315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225315,0.000000,0.000000,0.250000,0,0);}
.m24_c01266{transform:matrix(0.225670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225670,0.000000,0.000000,0.250000,0,0);}
.md_c01266{transform:matrix(0.225780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225780,0.000000,0.000000,0.250000,0,0);}
.m22_c01266{transform:matrix(0.227050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227050,0.000000,0.000000,0.250000,0,0);}
.m15_c01266{transform:matrix(0.229565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229565,0.000000,0.000000,0.250000,0,0);}
.m1b_c01266{transform:matrix(0.232390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232390,0.000000,0.000000,0.250000,0,0);}
.m43_c01266{transform:matrix(0.235220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235220,0.000000,0.000000,0.250000,0,0);}
.m46_c01266{transform:matrix(0.235670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235670,0.000000,0.000000,0.250000,0,0);}
.m1d_c01266{transform:matrix(0.237950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237950,0.000000,0.000000,0.250000,0,0);}
.m50_c01266{transform:matrix(0.238265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238265,0.000000,0.000000,0.250000,0,0);}
.m21_c01266{transform:matrix(0.238640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238640,0.000000,0.000000,0.250000,0,0);}
.m29_c01266{transform:matrix(0.239120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239120,0.000000,0.000000,0.250000,0,0);}
.m1c_c01266{transform:matrix(0.240445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240445,0.000000,0.000000,0.250000,0,0);}
.m1_c01266{transform:matrix(0.241070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241070,0.000000,0.000000,0.250000,0,0);}
.m9_c01266{transform:matrix(0.241615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241615,0.000000,0.000000,0.250000,0,0);}
.m4a_c01266{transform:matrix(0.241710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241710,0.000000,0.000000,0.250000,0,0);}
.m4e_c01266{transform:matrix(0.241965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241965,0.000000,0.000000,0.250000,0,0);}
.m47_c01266{transform:matrix(0.242745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242745,0.000000,0.000000,0.250000,0,0);}
.m4b_c01266{transform:matrix(0.243320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243320,0.000000,0.000000,0.250000,0,0);}
.m48_c01266{transform:matrix(0.243575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243575,0.000000,0.000000,0.250000,0,0);}
.m1a_c01266{transform:matrix(0.243580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243580,0.000000,0.000000,0.250000,0,0);}
.m44_c01266{transform:matrix(0.243855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243855,0.000000,0.000000,0.250000,0,0);}
.m40_c01266{transform:matrix(0.244175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244175,0.000000,0.000000,0.250000,0,0);}
.m13_c01266{transform:matrix(0.245205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245205,0.000000,0.000000,0.250000,0,0);}
.m41_c01266{transform:matrix(0.245240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245240,0.000000,0.000000,0.250000,0,0);}
.m31_c01266{transform:matrix(0.247550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247550,0.000000,0.000000,0.250000,0,0);}
.m26_c01266{transform:matrix(0.247955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247955,0.000000,0.000000,0.250000,0,0);}
.m5_c01266{transform:matrix(0.248295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248295,0.000000,0.000000,0.250000,0,0);}
.m27_c01266{transform:matrix(0.248355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248355,0.000000,0.000000,0.250000,0,0);}
.m1f_c01266{transform:matrix(0.248775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248775,0.000000,0.000000,0.250000,0,0);}
.m33_c01266{transform:matrix(0.250310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250310,0.000000,0.000000,0.250000,0,0);}
.m17_c01266{transform:matrix(0.250860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250860,0.000000,0.000000,0.250000,0,0);}
.m4c_c01266{transform:matrix(0.250935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250935,0.000000,0.000000,0.250000,0,0);}
.m28_c01266{transform:matrix(0.252320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252320,0.000000,0.000000,0.250000,0,0);}
.m0_c01266{transform:matrix(0.253145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253145,0.000000,0.000000,0.250000,0,0);}
.m18_c01266{transform:matrix(0.253915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253915,0.000000,0.000000,0.250000,0,0);}
.m16_c01266{transform:matrix(0.254095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254095,0.000000,0.000000,0.250000,0,0);}
.m49_c01266{transform:matrix(0.254110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254110,0.000000,0.000000,0.250000,0,0);}
.m25_c01266{transform:matrix(0.254945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254945,0.000000,0.000000,0.250000,0,0);}
.m10_c01266{transform:matrix(0.256820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256820,0.000000,0.000000,0.250000,0,0);}
.m2_c01266{transform:matrix(0.258085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258085,0.000000,0.000000,0.250000,0,0);}
.m2b_c01266{transform:matrix(0.259020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259020,0.000000,0.000000,0.250000,0,0);}
.ma_c01266{transform:matrix(0.259495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259495,0.000000,0.000000,0.250000,0,0);}
.m35_c01266{transform:matrix(0.260725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260725,0.000000,0.000000,0.250000,0,0);}
.m6_c01266{transform:matrix(0.261505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261505,0.000000,0.000000,0.250000,0,0);}
.m2e_c01266{transform:matrix(0.261920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261920,0.000000,0.000000,0.250000,0,0);}
.m4_c01266{transform:matrix(0.262915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262915,0.000000,0.000000,0.250000,0,0);}
.m4f_c01266{transform:matrix(0.263825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263825,0.000000,0.000000,0.250000,0,0);}
.m3_c01266{transform:matrix(0.265960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265960,0.000000,0.000000,0.250000,0,0);}
.m2d_c01266{transform:matrix(0.266010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266010,0.000000,0.000000,0.250000,0,0);}
.m30_c01266{transform:matrix(0.271045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271045,0.000000,0.000000,0.250000,0,0);}
.me_c01266{transform:matrix(0.272640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272640,0.000000,0.000000,0.250000,0,0);}
.m2c_c01266{transform:matrix(0.273115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273115,0.000000,0.000000,0.250000,0,0);}
.m34_c01266{transform:matrix(0.273585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273585,0.000000,0.000000,0.250000,0,0);}
.m2f_c01266{transform:matrix(0.274010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274010,0.000000,0.000000,0.250000,0,0);}
.m32_c01266{transform:matrix(0.274860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274860,0.000000,0.000000,0.250000,0,0);}
.m11_c01266{transform:matrix(0.279280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279280,0.000000,0.000000,0.250000,0,0);}
.mf_c01266{transform:matrix(0.279780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279780,0.000000,0.000000,0.250000,0,0);}
.mb_c01266{transform:matrix(0.281950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281950,0.000000,0.000000,0.250000,0,0);}
.m36_c01266{transform:matrix(0.282420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282420,0.000000,0.000000,0.250000,0,0);}
.mc_c01266{transform:matrix(0.282735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282735,0.000000,0.000000,0.250000,0,0);}
.m1e_c01266{transform:matrix(0.289505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289505,0.000000,0.000000,0.250000,0,0);}
.m37_c01266{transform:matrix(0.350285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350285,0.000000,0.000000,0.250000,0,0);}
.m38_c01266{transform:matrix(0.371285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371285,0.000000,0.000000,0.250000,0,0);}
.m45_c01266{transform:matrix(0.395135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395135,0.000000,0.000000,0.250000,0,0);}
.m2a_c01266{transform:matrix(0.406630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406630,0.000000,0.000000,0.250000,0,0);}
.m12_c01266{transform:matrix(0.767730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.767730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.767730,0.000000,0.000000,0.250000,0,0);}
.v0_c01266{vertical-align:0.000000px;}
.ls0_c01266{letter-spacing:0.000000px;}
.sc__c01266{text-shadow:none;}
.sc0_c01266{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__c01266{-webkit-text-stroke:0px transparent;}
.sc0_c01266{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01266{word-spacing:0.000000px;}
.fc0_c01266{color:transparent;}
.fs1_c01266{font-size:72.000000px;}
.fs0_c01266{font-size:78.000000px;}
.fs2_c01266{font-size:84.000000px;}
.y0_c01266{bottom:0.000000px;}
.y34_c01266{bottom:726.414000px;}
.y33_c01266{bottom:758.302500px;}
.y32_c01266{bottom:759.633000px;}
.y31_c01266{bottom:760.822500px;}
.y30_c01266{bottom:761.224500px;}
.y2f_c01266{bottom:762.819000px;}
.y2e_c01266{bottom:764.676000px;}
.y2d_c01266{bottom:766.533000px;}
.y2c_c01266{bottom:796.972500px;}
.y2b_c01266{bottom:799.056000px;}
.y2a_c01266{bottom:799.222500px;}
.y29_c01266{bottom:799.500000px;}
.y28_c01266{bottom:799.662000px;}
.y27_c01266{bottom:799.881000px;}
.y26_c01266{bottom:800.551500px;}
.y25_c01266{bottom:829.824000px;}
.y24_c01266{bottom:830.595000px;}
.y23_c01266{bottom:830.821500px;}
.y22_c01266{bottom:831.705000px;}
.y21_c01266{bottom:832.045500px;}
.y20_c01266{bottom:832.822500px;}
.y1f_c01266{bottom:833.160000px;}
.y1e_c01266{bottom:833.926500px;}
.y1d_c01266{bottom:834.259500px;}
.y1c_c01266{bottom:834.823500px;}
.y1b_c01266{bottom:835.044000px;}
.y1a_c01266{bottom:835.915500px;}
.y19_c01266{bottom:836.460000px;}
.y18_c01266{bottom:866.437500px;}
.y17_c01266{bottom:902.803500px;}
.y16_c01266{bottom:903.073500px;}
.y15_c01266{bottom:903.337500px;}
.y14_c01266{bottom:903.538500px;}
.y13_c01266{bottom:903.997500px;}
.y12_c01266{bottom:904.204500px;}
.y11_c01266{bottom:904.734000px;}
.y10_c01266{bottom:905.064000px;}
.yf_c01266{bottom:905.595000px;}
.ye_c01266{bottom:905.799000px;}
.yd_c01266{bottom:905.997000px;}
.yc_c01266{bottom:906.390000px;}
.yb_c01266{bottom:937.648500px;}
.ya_c01266{bottom:938.178000px;}
.y9_c01266{bottom:938.382000px;}
.y8_c01266{bottom:939.037500px;}
.y7_c01266{bottom:939.507000px;}
.y6_c01266{bottom:939.645000px;}
.y5_c01266{bottom:940.242000px;}
.y4_c01266{bottom:940.963500px;}
.y3_c01266{bottom:941.239500px;}
.y2_c01266{bottom:941.490000px;}
.y1_c01266{bottom:974.709000px;}
.h3_c01266{height:72.000000px;}
.h2_c01266{height:78.000000px;}
.h4_c01266{height:84.000000px;}
.h1_c01266{height:1258.500000px;}
.h0_c01266{height:1258.740000px;}
.w1_c01266{width:888.750000px;}
.w0_c01266{width:889.050000px;}
.x0_c01266{left:0.000000px;}
.x2b_c01266{left:110.926500px;}
.x37_c01266{left:156.060000px;}
.x12_c01266{left:157.342500px;}
.x1_c01266{left:159.570000px;}
.x38_c01266{left:196.830000px;}
.xa_c01266{left:200.806500px;}
.x25_c01266{left:212.101500px;}
.x13_c01266{left:222.957000px;}
.x1c_c01266{left:224.100000px;}
.x39_c01266{left:232.740000px;}
.x2c_c01266{left:245.107500px;}
.xb_c01266{left:246.696000px;}
.x2_c01266{left:255.960000px;}
.x31_c01266{left:266.590500px;}
.x2d_c01266{left:288.826500px;}
.x14_c01266{left:289.885500px;}
.x26_c01266{left:299.311500px;}
.x3_c01266{left:300.510000px;}
.x3a_c01266{left:309.960000px;}
.x1d_c01266{left:311.580000px;}
.x27_c01266{left:321.420000px;}
.x1e_c01266{left:355.050000px;}
.x3b_c01266{left:364.500000px;}
.xc_c01266{left:366.832500px;}
.x2e_c01266{left:376.579500px;}
.x15_c01266{left:378.441000px;}
.x3c_c01266{left:385.560000px;}
.x1f_c01266{left:388.530000px;}
.x2f_c01266{left:409.785000px;}
.x4_c01266{left:411.480000px;}
.x32_c01266{left:421.281000px;}
.x16_c01266{left:433.528500px;}
.x3d_c01266{left:443.070000px;}
.xd_c01266{left:466.215000px;}
.x3e_c01266{left:476.550000px;}
.x28_c01266{left:487.741500px;}
.xe_c01266{left:489.142500px;}
.x17_c01266{left:521.838000px;}
.x20_c01266{left:532.710000px;}
.x5_c01266{left:544.320000px;}
.x33_c01266{left:554.176500px;}
.x18_c01266{left:556.384500px;}
.xf_c01266{left:567.444000px;}
.x34_c01266{left:587.616000px;}
.x21_c01266{left:599.940000px;}
.x19_c01266{left:632.790000px;}
.x22_c01266{left:655.560000px;}
.x1a_c01266{left:666.271500px;}
.x6_c01266{left:677.160000px;}
.x35_c01266{left:686.707500px;}
.x10_c01266{left:710.827500px;}
.x29_c01266{left:721.603500px;}
.x7_c01266{left:732.510000px;}
.x23_c01266{left:743.850000px;}
.x1b_c01266{left:755.319000px;}
.x8_c01266{left:768.690000px;}
.x24_c01266{left:787.320000px;}
.x36_c01266{left:797.560500px;}
.x11_c01266{left:799.122000px;}
.x9_c01266{left:801.900000px;}
.x2a_c01266{left:821.353500px;}
.x30_c01266{left:826.455000px;}
@media print{
.v0_c01266{vertical-align:0.000000pt;}
.ls0_c01266{letter-spacing:0.000000pt;}
.ws0_c01266{word-spacing:0.000000pt;}
.fs1_c01266{font-size:64.000000pt;}
.fs0_c01266{font-size:69.333333pt;}
.fs2_c01266{font-size:74.666667pt;}
.y0_c01266{bottom:0.000000pt;}
.y34_c01266{bottom:645.701333pt;}
.y33_c01266{bottom:674.046667pt;}
.y32_c01266{bottom:675.229333pt;}
.y31_c01266{bottom:676.286667pt;}
.y30_c01266{bottom:676.644000pt;}
.y2f_c01266{bottom:678.061333pt;}
.y2e_c01266{bottom:679.712000pt;}
.y2d_c01266{bottom:681.362667pt;}
.y2c_c01266{bottom:708.420000pt;}
.y2b_c01266{bottom:710.272000pt;}
.y2a_c01266{bottom:710.420000pt;}
.y29_c01266{bottom:710.666667pt;}
.y28_c01266{bottom:710.810667pt;}
.y27_c01266{bottom:711.005333pt;}
.y26_c01266{bottom:711.601333pt;}
.y25_c01266{bottom:737.621333pt;}
.y24_c01266{bottom:738.306667pt;}
.y23_c01266{bottom:738.508000pt;}
.y22_c01266{bottom:739.293333pt;}
.y21_c01266{bottom:739.596000pt;}
.y20_c01266{bottom:740.286667pt;}
.y1f_c01266{bottom:740.586667pt;}
.y1e_c01266{bottom:741.268000pt;}
.y1d_c01266{bottom:741.564000pt;}
.y1c_c01266{bottom:742.065333pt;}
.y1b_c01266{bottom:742.261333pt;}
.y1a_c01266{bottom:743.036000pt;}
.y19_c01266{bottom:743.520000pt;}
.y18_c01266{bottom:770.166667pt;}
.y17_c01266{bottom:802.492000pt;}
.y16_c01266{bottom:802.732000pt;}
.y15_c01266{bottom:802.966667pt;}
.y14_c01266{bottom:803.145333pt;}
.y13_c01266{bottom:803.553333pt;}
.y12_c01266{bottom:803.737333pt;}
.y11_c01266{bottom:804.208000pt;}
.y10_c01266{bottom:804.501333pt;}
.yf_c01266{bottom:804.973333pt;}
.ye_c01266{bottom:805.154667pt;}
.yd_c01266{bottom:805.330667pt;}
.yc_c01266{bottom:805.680000pt;}
.yb_c01266{bottom:833.465333pt;}
.ya_c01266{bottom:833.936000pt;}
.y9_c01266{bottom:834.117333pt;}
.y8_c01266{bottom:834.700000pt;}
.y7_c01266{bottom:835.117333pt;}
.y6_c01266{bottom:835.240000pt;}
.y5_c01266{bottom:835.770667pt;}
.y4_c01266{bottom:836.412000pt;}
.y3_c01266{bottom:836.657333pt;}
.y2_c01266{bottom:836.880000pt;}
.y1_c01266{bottom:866.408000pt;}
.h3_c01266{height:64.000000pt;}
.h2_c01266{height:69.333333pt;}
.h4_c01266{height:74.666667pt;}
.h1_c01266{height:1118.666667pt;}
.h0_c01266{height:1118.880000pt;}
.w1_c01266{width:790.000000pt;}
.w0_c01266{width:790.266667pt;}
.x0_c01266{left:0.000000pt;}
.x2b_c01266{left:98.601333pt;}
.x37_c01266{left:138.720000pt;}
.x12_c01266{left:139.860000pt;}
.x1_c01266{left:141.840000pt;}
.x38_c01266{left:174.960000pt;}
.xa_c01266{left:178.494667pt;}
.x25_c01266{left:188.534667pt;}
.x13_c01266{left:198.184000pt;}
.x1c_c01266{left:199.200000pt;}
.x39_c01266{left:206.880000pt;}
.x2c_c01266{left:217.873333pt;}
.xb_c01266{left:219.285333pt;}
.x2_c01266{left:227.520000pt;}
.x31_c01266{left:236.969333pt;}
.x2d_c01266{left:256.734667pt;}
.x14_c01266{left:257.676000pt;}
.x26_c01266{left:266.054667pt;}
.x3_c01266{left:267.120000pt;}
.x3a_c01266{left:275.520000pt;}
.x1d_c01266{left:276.960000pt;}
.x27_c01266{left:285.706667pt;}
.x1e_c01266{left:315.600000pt;}
.x3b_c01266{left:324.000000pt;}
.xc_c01266{left:326.073333pt;}
.x2e_c01266{left:334.737333pt;}
.x15_c01266{left:336.392000pt;}
.x3c_c01266{left:342.720000pt;}
.x1f_c01266{left:345.360000pt;}
.x2f_c01266{left:364.253333pt;}
.x4_c01266{left:365.760000pt;}
.x32_c01266{left:374.472000pt;}
.x16_c01266{left:385.358667pt;}
.x3d_c01266{left:393.840000pt;}
.xd_c01266{left:414.413333pt;}
.x3e_c01266{left:423.600000pt;}
.x28_c01266{left:433.548000pt;}
.xe_c01266{left:434.793333pt;}
.x17_c01266{left:463.856000pt;}
.x20_c01266{left:473.520000pt;}
.x5_c01266{left:483.840000pt;}
.x33_c01266{left:492.601333pt;}
.x18_c01266{left:494.564000pt;}
.xf_c01266{left:504.394667pt;}
.x34_c01266{left:522.325333pt;}
.x21_c01266{left:533.280000pt;}
.x19_c01266{left:562.480000pt;}
.x22_c01266{left:582.720000pt;}
.x1a_c01266{left:592.241333pt;}
.x6_c01266{left:601.920000pt;}
.x35_c01266{left:610.406667pt;}
.x10_c01266{left:631.846667pt;}
.x29_c01266{left:641.425333pt;}
.x7_c01266{left:651.120000pt;}
.x23_c01266{left:661.200000pt;}
.x1b_c01266{left:671.394667pt;}
.x8_c01266{left:683.280000pt;}
.x24_c01266{left:699.840000pt;}
.x36_c01266{left:708.942667pt;}
.x11_c01266{left:710.330667pt;}
.x9_c01266{left:712.800000pt;}
.x2a_c01266{left:730.092000pt;}
.x30_c01266{left:734.626667pt;}
}





/* 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_c01267 {
    display:none;
  }
  .loading-indicator_c01267.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01267 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_c01267 { 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_c01267" -> "#page-container .classname_c01267")
 */
.pf_c01267 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01267 { /* 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_c01267.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01267 { /* 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_c01267 { /* 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_c01267 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01267 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01267 {overflow:visible;}
  }
}
.c_c01267 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01267 { /* 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_c01267:after { /* webkit #35443 */
  content: '';
}
.t_c01267:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01267 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 */
}
.__c01267 { /* 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_c01267 { /* info for Javascript */
  display:none;
}
.l_c01267 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01267 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01267 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01267: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_c01267 {
    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_c01267.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01267.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_c01267 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01267{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01267;src:url('chunks/assets/font_a17ea70eb993d518921cd15d.woff2')format("woff");}.ff1_c01267{font-family:ff1_c01267;line-height:1.000000;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;}
.m4_c01267{transform:matrix(0.001298,0.108157,-0.249982,0.003000,0,0);-ms-transform:matrix(0.001298,0.108157,-0.249982,0.003000,0,0);-webkit-transform:matrix(0.001298,0.108157,-0.249982,0.003000,0,0);}
.m3_c01267{transform:matrix(0.002755,0.229623,-0.249982,0.003000,0,0);-ms-transform:matrix(0.002755,0.229623,-0.249982,0.003000,0,0);-webkit-transform:matrix(0.002755,0.229623,-0.249982,0.003000,0,0);}
.m5_c01267{transform:matrix(0.004601,0.383417,-0.249982,0.003000,0,0);-ms-transform:matrix(0.004601,0.383417,-0.249982,0.003000,0,0);-webkit-transform:matrix(0.004601,0.383417,-0.249982,0.003000,0,0);}
.m6_c01267{transform:matrix(0.004951,0.412565,-0.249982,0.003000,0,0);-ms-transform:matrix(0.004951,0.412565,-0.249982,0.003000,0,0);-webkit-transform:matrix(0.004951,0.412565,-0.249982,0.003000,0,0);}
.m0_c01267{transform:matrix(0.241300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241300,0.000000,0.000000,0.250000,0,0);}
.m2_c01267{transform:matrix(0.392945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392945,0.000000,0.000000,0.250000,0,0);}
.m1_c01267{transform:matrix(0.639530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.639530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.639530,0.000000,0.000000,0.250000,0,0);}
.v0_c01267{vertical-align:0.000000px;}
.ls0_c01267{letter-spacing:0.000000px;}
.sc__c01267{text-shadow:none;}
.sc0_c01267{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__c01267{-webkit-text-stroke:0px transparent;}
.sc0_c01267{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01267{word-spacing:0.000000px;}
.fc0_c01267{color:transparent;}
.fs1_c01267{font-size:18.000000px;}
.fs2_c01267{font-size:24.000000px;}
.fs3_c01267{font-size:30.002160px;}
.fs0_c01267{font-size:36.000000px;}
.fs4_c01267{font-size:42.003024px;}
.y0_c01267{bottom:0.000000px;}
.y5_c01267{bottom:140.937000px;}
.y7_c01267{bottom:165.041802px;}
.y4_c01267{bottom:182.247000px;}
.y6_c01267{bottom:188.514360px;}
.y3_c01267{bottom:1085.130000px;}
.y2_c01267{bottom:1087.426500px;}
.y1_c01267{bottom:1087.560000px;}
.h3_c01267{height:18.000000px;}
.h4_c01267{height:24.000000px;}
.h5_c01267{height:30.002160px;}
.h2_c01267{height:36.000000px;}
.h6_c01267{height:42.003024px;}
.h1_c01267{height:1250.250000px;}
.h0_c01267{height:1250.370000px;}
.w1_c01267{width:888.750000px;}
.w0_c01267{width:889.050000px;}
.x0_c01267{left:0.000000px;}
.x5_c01267{left:54.268986px;}
.x4_c01267{left:59.940000px;}
.x3_c01267{left:409.050000px;}
.x2_c01267{left:431.460000px;}
.x1_c01267{left:446.580000px;}
@media print{
.v0_c01267{vertical-align:0.000000pt;}
.ls0_c01267{letter-spacing:0.000000pt;}
.ws0_c01267{word-spacing:0.000000pt;}
.fs1_c01267{font-size:16.000000pt;}
.fs2_c01267{font-size:21.333333pt;}
.fs3_c01267{font-size:26.668587pt;}
.fs0_c01267{font-size:32.000000pt;}
.fs4_c01267{font-size:37.336021pt;}
.y0_c01267{bottom:0.000000pt;}
.y5_c01267{bottom:125.277333pt;}
.y7_c01267{bottom:146.703824pt;}
.y4_c01267{bottom:161.997333pt;}
.y6_c01267{bottom:167.568320pt;}
.y3_c01267{bottom:964.560000pt;}
.y2_c01267{bottom:966.601333pt;}
.y1_c01267{bottom:966.720000pt;}
.h3_c01267{height:16.000000pt;}
.h4_c01267{height:21.333333pt;}
.h5_c01267{height:26.668587pt;}
.h2_c01267{height:32.000000pt;}
.h6_c01267{height:37.336021pt;}
.h1_c01267{height:1111.333333pt;}
.h0_c01267{height:1111.440000pt;}
.w1_c01267{width:790.000000pt;}
.w0_c01267{width:790.266667pt;}
.x0_c01267{left:0.000000pt;}
.x5_c01267{left:48.239099pt;}
.x4_c01267{left:53.280000pt;}
.x3_c01267{left:363.600000pt;}
.x2_c01267{left:383.520000pt;}
.x1_c01267{left:396.960000pt;}
}





/* 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_c01268 {
    display:none;
  }
  .loading-indicator_c01268.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01268 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_c01268 { 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_c01268" -> "#page-container .classname_c01268")
 */
.pf_c01268 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01268 { /* 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_c01268.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01268 { /* 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_c01268 { /* 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_c01268 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01268 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01268 {overflow:visible;}
  }
}
.c_c01268 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01268 { /* 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_c01268:after { /* webkit #35443 */
  content: '';
}
.t_c01268:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01268 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 */
}
.__c01268 { /* 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_c01268 { /* info for Javascript */
  display:none;
}
.l_c01268 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01268 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01268 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01268: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_c01268 {
    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_c01268.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01268.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_c01268 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01268{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01268;src:url('chunks/assets/font_7c6b9abe6ee2a268480c528b.woff2')format("woff");}.ff1_c01268{font-family:ff1_c01268;line-height:1.000000;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;}
.m13_c01268{transform:matrix(0.008370,0.000084,-0.002500,0.249988,0,0);-ms-transform:matrix(0.008370,0.000084,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.008370,0.000084,-0.002500,0.249988,0,0);}
.m38_c01268{transform:matrix(0.018750,0.000131,-0.001750,0.249994,0,0);-ms-transform:matrix(0.018750,0.000131,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.018750,0.000131,-0.001750,0.249994,0,0);}
.m36_c01268{transform:matrix(0.092843,0.000650,-0.001750,0.249994,0,0);-ms-transform:matrix(0.092843,0.000650,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.092843,0.000650,-0.001750,0.249994,0,0);}
.m20_c01268{transform:matrix(0.179176,0.001792,-0.002500,0.249988,0,0);-ms-transform:matrix(0.179176,0.001792,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.179176,0.001792,-0.002500,0.249988,0,0);}
.m10_c01268{transform:matrix(0.180056,0.001801,-0.002500,0.249988,0,0);-ms-transform:matrix(0.180056,0.001801,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.180056,0.001801,-0.002500,0.249988,0,0);}
.md_c01268{transform:matrix(0.184511,0.001845,-0.002500,0.249988,0,0);-ms-transform:matrix(0.184511,0.001845,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.184511,0.001845,-0.002500,0.249988,0,0);}
.mb_c01268{transform:matrix(0.189171,0.001892,-0.002500,0.249988,0,0);-ms-transform:matrix(0.189171,0.001892,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.189171,0.001892,-0.002500,0.249988,0,0);}
.m9_c01268{transform:matrix(0.190760,0.001908,-0.002500,0.249988,0,0);-ms-transform:matrix(0.190760,0.001908,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.190760,0.001908,-0.002500,0.249988,0,0);}
.m11_c01268{transform:matrix(0.191500,0.001915,-0.002500,0.249988,0,0);-ms-transform:matrix(0.191500,0.001915,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.191500,0.001915,-0.002500,0.249988,0,0);}
.me_c01268{transform:matrix(0.191950,0.001920,-0.002500,0.249988,0,0);-ms-transform:matrix(0.191950,0.001920,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.191950,0.001920,-0.002500,0.249988,0,0);}
.m12_c01268{transform:matrix(0.193465,0.001935,-0.002500,0.249988,0,0);-ms-transform:matrix(0.193465,0.001935,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.193465,0.001935,-0.002500,0.249988,0,0);}
.mc_c01268{transform:matrix(0.196695,0.001967,-0.002500,0.249988,0,0);-ms-transform:matrix(0.196695,0.001967,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.196695,0.001967,-0.002500,0.249988,0,0);}
.mf_c01268{transform:matrix(0.200065,0.002001,-0.002500,0.249988,0,0);-ms-transform:matrix(0.200065,0.002001,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.200065,0.002001,-0.002500,0.249988,0,0);}
.ma_c01268{transform:matrix(0.200640,0.002006,-0.002500,0.249988,0,0);-ms-transform:matrix(0.200640,0.002006,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.200640,0.002006,-0.002500,0.249988,0,0);}
.m35_c01268{transform:matrix(0.201526,0.001209,-0.001500,0.249996,0,0);-ms-transform:matrix(0.201526,0.001209,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.201526,0.001209,-0.001500,0.249996,0,0);}
.m3e_c01268{transform:matrix(0.201922,-0.003029,0.003750,0.249972,0,0);-ms-transform:matrix(0.201922,-0.003029,0.003750,0.249972,0,0);-webkit-transform:matrix(0.201922,-0.003029,0.003750,0.249972,0,0);}
.m22_c01268{transform:matrix(0.206166,0.001237,-0.001500,0.249996,0,0);-ms-transform:matrix(0.206166,0.001237,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.206166,0.001237,-0.001500,0.249996,0,0);}
.m16_c01268{transform:matrix(0.207440,0.002074,-0.002500,0.249988,0,0);-ms-transform:matrix(0.207440,0.002074,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.207440,0.002074,-0.002500,0.249988,0,0);}
.m23_c01268{transform:matrix(0.208061,0.001248,-0.001500,0.249996,0,0);-ms-transform:matrix(0.208061,0.001248,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.208061,0.001248,-0.001500,0.249996,0,0);}
.m33_c01268{transform:matrix(0.217601,0.001306,-0.001500,0.249996,0,0);-ms-transform:matrix(0.217601,0.001306,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.217601,0.001306,-0.001500,0.249996,0,0);}
.m29_c01268{transform:matrix(0.218331,0.001310,-0.001500,0.249996,0,0);-ms-transform:matrix(0.218331,0.001310,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.218331,0.001310,-0.001500,0.249996,0,0);}
.m1d_c01268{transform:matrix(0.218944,0.002189,-0.002500,0.249988,0,0);-ms-transform:matrix(0.218944,0.002189,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.218944,0.002189,-0.002500,0.249988,0,0);}
.m2e_c01268{transform:matrix(0.219241,0.001315,-0.001500,0.249996,0,0);-ms-transform:matrix(0.219241,0.001315,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.219241,0.001315,-0.001500,0.249996,0,0);}
.m25_c01268{transform:matrix(0.219326,0.001316,-0.001500,0.249996,0,0);-ms-transform:matrix(0.219326,0.001316,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.219326,0.001316,-0.001500,0.249996,0,0);}
.m15_c01268{transform:matrix(0.219659,0.002197,-0.002500,0.249988,0,0);-ms-transform:matrix(0.219659,0.002197,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.219659,0.002197,-0.002500,0.249988,0,0);}
.m21_c01268{transform:matrix(0.220501,0.001323,-0.001500,0.249996,0,0);-ms-transform:matrix(0.220501,0.001323,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.220501,0.001323,-0.001500,0.249996,0,0);}
.m3d_c01268{transform:matrix(0.221475,-0.003322,0.003750,0.249972,0,0);-ms-transform:matrix(0.221475,-0.003322,0.003750,0.249972,0,0);-webkit-transform:matrix(0.221475,-0.003322,0.003750,0.249972,0,0);}
.m30_c01268{transform:matrix(0.222426,0.001335,-0.001500,0.249996,0,0);-ms-transform:matrix(0.222426,0.001335,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.222426,0.001335,-0.001500,0.249996,0,0);}
.m2c_c01268{transform:matrix(0.222816,0.001337,-0.001500,0.249996,0,0);-ms-transform:matrix(0.222816,0.001337,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.222816,0.001337,-0.001500,0.249996,0,0);}
.m34_c01268{transform:matrix(0.224126,0.001345,-0.001500,0.249996,0,0);-ms-transform:matrix(0.224126,0.001345,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.224126,0.001345,-0.001500,0.249996,0,0);}
.m1_c01268{transform:matrix(0.229194,0.002292,-0.002500,0.249988,0,0);-ms-transform:matrix(0.229194,0.002292,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.229194,0.002292,-0.002500,0.249988,0,0);}
.m24_c01268{transform:matrix(0.230301,0.001382,-0.001500,0.249996,0,0);-ms-transform:matrix(0.230301,0.001382,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.230301,0.001382,-0.001500,0.249996,0,0);}
.m3b_c01268{transform:matrix(0.231719,-0.003476,0.003750,0.249972,0,0);-ms-transform:matrix(0.231719,-0.003476,0.003750,0.249972,0,0);-webkit-transform:matrix(0.231719,-0.003476,0.003750,0.249972,0,0);}
.m32_c01268{transform:matrix(0.232521,0.001395,-0.001500,0.249996,0,0);-ms-transform:matrix(0.232521,0.001395,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.232521,0.001395,-0.001500,0.249996,0,0);}
.m1b_c01268{transform:matrix(0.234248,0.002342,-0.002500,0.249988,0,0);-ms-transform:matrix(0.234248,0.002342,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.234248,0.002342,-0.002500,0.249988,0,0);}
.m2b_c01268{transform:matrix(0.235766,0.001415,-0.001500,0.249996,0,0);-ms-transform:matrix(0.235766,0.001415,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.235766,0.001415,-0.001500,0.249996,0,0);}
.m2d_c01268{transform:matrix(0.236016,0.001416,-0.001500,0.249996,0,0);-ms-transform:matrix(0.236016,0.001416,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.236016,0.001416,-0.001500,0.249996,0,0);}
.m31_c01268{transform:matrix(0.236546,0.001419,-0.001500,0.249996,0,0);-ms-transform:matrix(0.236546,0.001419,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.236546,0.001419,-0.001500,0.249996,0,0);}
.m18_c01268{transform:matrix(0.237248,0.002372,-0.002500,0.249988,0,0);-ms-transform:matrix(0.237248,0.002372,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.237248,0.002372,-0.002500,0.249988,0,0);}
.m2a_c01268{transform:matrix(0.238476,0.001431,-0.001500,0.249996,0,0);-ms-transform:matrix(0.238476,0.001431,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.238476,0.001431,-0.001500,0.249996,0,0);}
.m2f_c01268{transform:matrix(0.240736,0.001444,-0.001500,0.249996,0,0);-ms-transform:matrix(0.240736,0.001444,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.240736,0.001444,-0.001500,0.249996,0,0);}
.m28_c01268{transform:matrix(0.240806,0.001445,-0.001500,0.249996,0,0);-ms-transform:matrix(0.240806,0.001445,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.240806,0.001445,-0.001500,0.249996,0,0);}
.m17_c01268{transform:matrix(0.241903,0.002419,-0.002500,0.249988,0,0);-ms-transform:matrix(0.241903,0.002419,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.241903,0.002419,-0.002500,0.249988,0,0);}
.m1c_c01268{transform:matrix(0.243088,0.002431,-0.002500,0.249988,0,0);-ms-transform:matrix(0.243088,0.002431,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.243088,0.002431,-0.002500,0.249988,0,0);}
.m41_c01268{transform:matrix(0.244068,-0.003661,0.003750,0.249972,0,0);-ms-transform:matrix(0.244068,-0.003661,0.003750,0.249972,0,0);-webkit-transform:matrix(0.244068,-0.003661,0.003750,0.249972,0,0);}
.m40_c01268{transform:matrix(0.246732,-0.003701,0.003750,0.249972,0,0);-ms-transform:matrix(0.246732,-0.003701,0.003750,0.249972,0,0);-webkit-transform:matrix(0.246732,-0.003701,0.003750,0.249972,0,0);}
.m3f_c01268{transform:matrix(0.247372,-0.003711,0.003750,0.249972,0,0);-ms-transform:matrix(0.247372,-0.003711,0.003750,0.249972,0,0);-webkit-transform:matrix(0.247372,-0.003711,0.003750,0.249972,0,0);}
.m26_c01268{transform:matrix(0.248166,0.001489,-0.001500,0.249996,0,0);-ms-transform:matrix(0.248166,0.001489,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.248166,0.001489,-0.001500,0.249996,0,0);}
.m7_c01268{transform:matrix(0.249603,0.002496,-0.002500,0.249988,0,0);-ms-transform:matrix(0.249603,0.002496,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.249603,0.002496,-0.002500,0.249988,0,0);}
.m4_c01268{transform:matrix(0.251622,0.002516,-0.002500,0.249988,0,0);-ms-transform:matrix(0.251622,0.002516,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.251622,0.002516,-0.002500,0.249988,0,0);}
.m1a_c01268{transform:matrix(0.251917,0.002519,-0.002500,0.249988,0,0);-ms-transform:matrix(0.251917,0.002519,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.251917,0.002519,-0.002500,0.249988,0,0);}
.m0_c01268{transform:matrix(0.252637,0.002526,-0.002500,0.249988,0,0);-ms-transform:matrix(0.252637,0.002526,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.252637,0.002526,-0.002500,0.249988,0,0);}
.m37_c01268{transform:matrix(0.253499,0.001774,-0.001750,0.249994,0,0);-ms-transform:matrix(0.253499,0.001774,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.253499,0.001774,-0.001750,0.249994,0,0);}
.m5_c01268{transform:matrix(0.256682,0.002567,-0.002500,0.249988,0,0);-ms-transform:matrix(0.256682,0.002567,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.256682,0.002567,-0.002500,0.249988,0,0);}
.m39_c01268{transform:matrix(0.258609,0.001810,-0.001750,0.249994,0,0);-ms-transform:matrix(0.258609,0.001810,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.258609,0.001810,-0.001750,0.249994,0,0);}
.m27_c01268{transform:matrix(0.259320,0.001556,-0.001500,0.249996,0,0);-ms-transform:matrix(0.259320,0.001556,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.259320,0.001556,-0.001500,0.249996,0,0);}
.m6_c01268{transform:matrix(0.259532,0.002595,-0.002500,0.249988,0,0);-ms-transform:matrix(0.259532,0.002595,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.259532,0.002595,-0.002500,0.249988,0,0);}
.m44_c01268{transform:matrix(0.263460,-0.003952,0.003750,0.249972,0,0);-ms-transform:matrix(0.263460,-0.003952,0.003750,0.249972,0,0);-webkit-transform:matrix(0.263460,-0.003952,0.003750,0.249972,0,0);}
.m3_c01268{transform:matrix(0.263842,0.002638,-0.002500,0.249988,0,0);-ms-transform:matrix(0.263842,0.002638,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.263842,0.002638,-0.002500,0.249988,0,0);}
.m2_c01268{transform:matrix(0.264972,0.002650,-0.002500,0.249988,0,0);-ms-transform:matrix(0.264972,0.002650,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.264972,0.002650,-0.002500,0.249988,0,0);}
.m14_c01268{transform:matrix(0.265557,0.002656,-0.002500,0.249988,0,0);-ms-transform:matrix(0.265557,0.002656,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.265557,0.002656,-0.002500,0.249988,0,0);}
.m3a_c01268{transform:matrix(0.272059,-0.004081,0.003750,0.249972,0,0);-ms-transform:matrix(0.272059,-0.004081,0.003750,0.249972,0,0);-webkit-transform:matrix(0.272059,-0.004081,0.003750,0.249972,0,0);}
.m42_c01268{transform:matrix(0.273114,-0.004097,0.003750,0.249972,0,0);-ms-transform:matrix(0.273114,-0.004097,0.003750,0.249972,0,0);-webkit-transform:matrix(0.273114,-0.004097,0.003750,0.249972,0,0);}
.m3c_c01268{transform:matrix(0.273184,-0.004098,0.003750,0.249972,0,0);-ms-transform:matrix(0.273184,-0.004098,0.003750,0.249972,0,0);-webkit-transform:matrix(0.273184,-0.004098,0.003750,0.249972,0,0);}
.m19_c01268{transform:matrix(0.275241,0.002752,-0.002500,0.249988,0,0);-ms-transform:matrix(0.275241,0.002752,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.275241,0.002752,-0.002500,0.249988,0,0);}
.m43_c01268{transform:matrix(0.284928,-0.004274,0.003750,0.249972,0,0);-ms-transform:matrix(0.284928,-0.004274,0.003750,0.249972,0,0);-webkit-transform:matrix(0.284928,-0.004274,0.003750,0.249972,0,0);}
.m1e_c01268{transform:matrix(0.292515,0.002925,-0.002500,0.249988,0,0);-ms-transform:matrix(0.292515,0.002925,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.292515,0.002925,-0.002500,0.249988,0,0);}
.m8_c01268{transform:matrix(0.315969,0.003160,-0.002500,0.249988,0,0);-ms-transform:matrix(0.315969,0.003160,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.315969,0.003160,-0.002500,0.249988,0,0);}
.m1f_c01268{transform:matrix(0.362782,0.003628,-0.002500,0.249988,0,0);-ms-transform:matrix(0.362782,0.003628,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.362782,0.003628,-0.002500,0.249988,0,0);}
.v0_c01268{vertical-align:0.000000px;}
.ls0_c01268{letter-spacing:0.000000px;}
.sc__c01268{text-shadow:none;}
.sc0_c01268{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__c01268{-webkit-text-stroke:0px transparent;}
.sc0_c01268{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01268{word-spacing:0.000000px;}
.fc0_c01268{color:transparent;}
.fs3_c01268{font-size:72.001764px;}
.fs4_c01268{font-size:72.008100px;}
.fs0_c01268{font-size:78.003900px;}
.fs2_c01268{font-size:84.001512px;}
.fs1_c01268{font-size:102.005100px;}
.y0_c01268{bottom:0.000000px;}
.y3b_c01268{bottom:690.933000px;}
.y3c_c01268{bottom:691.592948px;}
.y3d_c01268{bottom:692.751428px;}
.y3e_c01268{bottom:693.949980px;}
.y3f_c01268{bottom:694.402005px;}
.y40_c01268{bottom:694.743443px;}
.y41_c01268{bottom:695.427262px;}
.y42_c01268{bottom:695.743253px;}
.y43_c01268{bottom:696.241403px;}
.y44_c01268{bottom:697.249245px;}
.y45_c01268{bottom:698.075220px;}
.y3a_c01268{bottom:791.489062px;}
.y39_c01268{bottom:794.312124px;}
.y38_c01268{bottom:796.110123px;}
.y37_c01268{bottom:796.501500px;}
.y36_c01268{bottom:827.221920px;}
.y35_c01268{bottom:828.041415px;}
.y34_c01268{bottom:828.514023px;}
.y33_c01268{bottom:829.729938px;}
.y32_c01268{bottom:830.982000px;}
.y31_c01268{bottom:831.756645px;}
.y30_c01268{bottom:833.011638px;}
.y2f_c01268{bottom:833.907213px;}
.y2e_c01268{bottom:835.161828px;}
.y2d_c01268{bottom:835.920588px;}
.y2c_c01268{bottom:863.317359px;}
.y2b_c01268{bottom:863.785557px;}
.y2a_c01268{bottom:864.109593px;}
.y29_c01268{bottom:864.715536px;}
.y28_c01268{bottom:865.056159px;}
.y27_c01268{bottom:865.452852px;}
.y26_c01268{bottom:865.708704px;}
.y25_c01268{bottom:866.095857px;}
.y24_c01268{bottom:866.301534px;}
.y23_c01268{bottom:866.487861px;}
.y22_c01268{bottom:866.700000px;}
.y21_c01268{bottom:968.666205px;}
.y20_c01268{bottom:968.761755px;}
.y1f_c01268{bottom:969.324450px;}
.y1e_c01268{bottom:969.472485px;}
.y1d_c01268{bottom:969.866205px;}
.y1c_c01268{bottom:970.096875px;}
.y1b_c01268{bottom:970.725975px;}
.y1a_c01268{bottom:971.183595px;}
.y19_c01268{bottom:971.500170px;}
.y18_c01268{bottom:971.959845px;}
.y17_c01268{bottom:972.188835px;}
.y16_c01268{bottom:972.423270px;}
.y15_c01268{bottom:973.347720px;}
.y14_c01268{bottom:1002.790260px;}
.y13_c01268{bottom:1004.221875px;}
.y12_c01268{bottom:1005.101565px;}
.y11_c01268{bottom:1005.803310px;}
.y10_c01268{bottom:1007.267340px;}
.yf_c01268{bottom:1008.126780px;}
.ye_c01268{bottom:1008.562260px;}
.yd_c01268{bottom:1009.966545px;}
.yc_c01268{bottom:1010.419635px;}
.yb_c01268{bottom:1010.847270px;}
.ya_c01268{bottom:1011.690420px;}
.y9_c01268{bottom:1040.325510px;}
.y8_c01268{bottom:1040.608050px;}
.y7_c01268{bottom:1041.388425px;}
.y6_c01268{bottom:1042.276875px;}
.y5_c01268{bottom:1042.608960px;}
.y4_c01268{bottom:1043.608230px;}
.y3_c01268{bottom:1044.721350px;}
.y2_c01268{bottom:1045.050060px;}
.y1_c01268{bottom:1045.711500px;}
.h5_c01268{height:72.001764px;}
.h6_c01268{height:72.008100px;}
.h2_c01268{height:78.003900px;}
.h4_c01268{height:84.001512px;}
.h3_c01268{height:102.005100px;}
.h1_c01268{height:1250.250000px;}
.h0_c01268{height:1250.370000px;}
.w1_c01268{width:888.750000px;}
.w0_c01268{width:889.050000px;}
.x0_c01268{left:0.000000px;}
.x31_c01268{left:122.451000px;}
.x34_c01268{left:175.477500px;}
.x21_c01268{left:178.380000px;}
.x14_c01268{left:180.220920px;}
.xa_c01268{left:181.834470px;}
.x22_c01268{left:213.736500px;}
.x35_c01268{left:219.474000px;}
.x2b_c01268{left:232.804737px;}
.x23_c01268{left:244.791000px;}
.xb_c01268{left:246.647520px;}
.xc_c01268{left:279.510030px;}
.x1_c01268{left:290.377500px;}
.x36_c01268{left:296.706000px;}
.x15_c01268{left:312.269880px;}
.xd_c01268{left:314.317980px;}
.x2c_c01268{left:322.402935px;}
.x24_c01268{left:343.596000px;}
.x16_c01268{left:345.764385px;}
.x2_c01268{left:356.521500px;}
.x37_c01268{left:376.609500px;}
.x17_c01268{left:378.414360px;}
.x25_c01268{left:386.238000px;}
.x3_c01268{left:389.392500px;}
.x38_c01268{left:406.744500px;}
.xe_c01268{left:422.343240px;}
.x39_c01268{left:429.507000px;}
.x32_c01268{left:435.219000px;}
.x18_c01268{left:444.033825px;}
.x26_c01268{left:452.353500px;}
.xf_c01268{left:455.840235px;}
.x2d_c01268{left:476.073564px;}
.x19_c01268{left:489.342690px;}
.x3a_c01268{left:496.161000px;}
.x4_c01268{left:500.704500px;}
.x27_c01268{left:509.124000px;}
.x10_c01268{left:521.982255px;}
.x3b_c01268{left:529.371000px;}
.x2e_c01268{left:531.428409px;}
.x1a_c01268{left:554.756655px;}
.x3c_c01268{left:596.560500px;}
.x5_c01268{left:600.631500px;}
.x28_c01268{left:610.114500px;}
.x2f_c01268{left:620.851116px;}
.x6_c01268{left:633.840000px;}
.x1b_c01268{left:644.669355px;}
.x3d_c01268{left:651.625500px;}
.x29_c01268{left:664.120500px;}
.x1c_c01268{left:677.637345px;}
.x11_c01268{left:688.604760px;}
.x30_c01268{left:707.749449px;}
.x7_c01268{left:722.685000px;}
.x1d_c01268{left:733.811025px;}
.x2a_c01268{left:742.153500px;}
.x1e_c01268{left:755.065170px;}
.x12_c01268{left:756.321735px;}
.x8_c01268{left:800.722500px;}
.x9_c01268{left:828.976500px;}
.x1f_c01268{left:835.487085px;}
.x33_c01268{left:838.513500px;}
.x20_c01268{left:849.092490px;}
.x13_c01268{left:866.479935px;}
@media print{
.v0_c01268{vertical-align:0.000000pt;}
.ls0_c01268{letter-spacing:0.000000pt;}
.ws0_c01268{word-spacing:0.000000pt;}
.fs3_c01268{font-size:64.001568pt;}
.fs4_c01268{font-size:64.007200pt;}
.fs0_c01268{font-size:69.336800pt;}
.fs2_c01268{font-size:74.668011pt;}
.fs1_c01268{font-size:90.671200pt;}
.y0_c01268{bottom:0.000000pt;}
.y3b_c01268{bottom:614.162667pt;}
.y3c_c01268{bottom:614.749287pt;}
.y3d_c01268{bottom:615.779047pt;}
.y3e_c01268{bottom:616.844427pt;}
.y3f_c01268{bottom:617.246227pt;}
.y40_c01268{bottom:617.549727pt;}
.y41_c01268{bottom:618.157567pt;}
.y42_c01268{bottom:618.438447pt;}
.y43_c01268{bottom:618.881247pt;}
.y44_c01268{bottom:619.777107pt;}
.y45_c01268{bottom:620.511307pt;}
.y3a_c01268{bottom:703.545833pt;}
.y39_c01268{bottom:706.055221pt;}
.y38_c01268{bottom:707.653443pt;}
.y37_c01268{bottom:708.001333pt;}
.y36_c01268{bottom:735.308373pt;}
.y35_c01268{bottom:736.036813pt;}
.y34_c01268{bottom:736.456909pt;}
.y33_c01268{bottom:737.537723pt;}
.y32_c01268{bottom:738.650667pt;}
.y31_c01268{bottom:739.339240pt;}
.y30_c01268{bottom:740.454789pt;}
.y2f_c01268{bottom:741.250856pt;}
.y2e_c01268{bottom:742.366069pt;}
.y2d_c01268{bottom:743.040523pt;}
.y2c_c01268{bottom:767.393208pt;}
.y2b_c01268{bottom:767.809384pt;}
.y2a_c01268{bottom:768.097416pt;}
.y29_c01268{bottom:768.636032pt;}
.y28_c01268{bottom:768.938808pt;}
.y27_c01268{bottom:769.291424pt;}
.y26_c01268{bottom:769.518848pt;}
.y25_c01268{bottom:769.862984pt;}
.y24_c01268{bottom:770.045808pt;}
.y23_c01268{bottom:770.211432pt;}
.y22_c01268{bottom:770.400000pt;}
.y21_c01268{bottom:861.036627pt;}
.y20_c01268{bottom:861.121560pt;}
.y1f_c01268{bottom:861.621733pt;}
.y1e_c01268{bottom:861.753320pt;}
.y1d_c01268{bottom:862.103293pt;}
.y1c_c01268{bottom:862.308333pt;}
.y1b_c01268{bottom:862.867533pt;}
.y1a_c01268{bottom:863.274307pt;}
.y19_c01268{bottom:863.555707pt;}
.y18_c01268{bottom:863.964307pt;}
.y17_c01268{bottom:864.167853pt;}
.y16_c01268{bottom:864.376240pt;}
.y15_c01268{bottom:865.197973pt;}
.y14_c01268{bottom:891.369120pt;}
.y13_c01268{bottom:892.641667pt;}
.y12_c01268{bottom:893.423613pt;}
.y11_c01268{bottom:894.047387pt;}
.y10_c01268{bottom:895.348747pt;}
.yf_c01268{bottom:896.112693pt;}
.ye_c01268{bottom:896.499787pt;}
.yd_c01268{bottom:897.748040pt;}
.yc_c01268{bottom:898.150787pt;}
.yb_c01268{bottom:898.530907pt;}
.ya_c01268{bottom:899.280373pt;}
.y9_c01268{bottom:924.733787pt;}
.y8_c01268{bottom:924.984933pt;}
.y7_c01268{bottom:925.678600pt;}
.y6_c01268{bottom:926.468333pt;}
.y5_c01268{bottom:926.763520pt;}
.y4_c01268{bottom:927.651760pt;}
.y3_c01268{bottom:928.641200pt;}
.y2_c01268{bottom:928.933387pt;}
.y1_c01268{bottom:929.521333pt;}
.h5_c01268{height:64.001568pt;}
.h6_c01268{height:64.007200pt;}
.h2_c01268{height:69.336800pt;}
.h4_c01268{height:74.668011pt;}
.h3_c01268{height:90.671200pt;}
.h1_c01268{height:1111.333333pt;}
.h0_c01268{height:1111.440000pt;}
.w1_c01268{width:790.000000pt;}
.w0_c01268{width:790.266667pt;}
.x0_c01268{left:0.000000pt;}
.x31_c01268{left:108.845333pt;}
.x34_c01268{left:155.980000pt;}
.x21_c01268{left:158.560000pt;}
.x14_c01268{left:160.196373pt;}
.xa_c01268{left:161.630640pt;}
.x22_c01268{left:189.988000pt;}
.x35_c01268{left:195.088000pt;}
.x2b_c01268{left:206.937544pt;}
.x23_c01268{left:217.592000pt;}
.xb_c01268{left:219.242240pt;}
.xc_c01268{left:248.453360pt;}
.x1_c01268{left:258.113333pt;}
.x36_c01268{left:263.738667pt;}
.x15_c01268{left:277.573227pt;}
.xd_c01268{left:279.393760pt;}
.x2c_c01268{left:286.580387pt;}
.x24_c01268{left:305.418667pt;}
.x16_c01268{left:307.346120pt;}
.x2_c01268{left:316.908000pt;}
.x37_c01268{left:334.764000pt;}
.x17_c01268{left:336.368320pt;}
.x25_c01268{left:343.322667pt;}
.x3_c01268{left:346.126667pt;}
.x38_c01268{left:361.550667pt;}
.xe_c01268{left:375.416213pt;}
.x39_c01268{left:381.784000pt;}
.x32_c01268{left:386.861333pt;}
.x18_c01268{left:394.696733pt;}
.x26_c01268{left:402.092000pt;}
.xf_c01268{left:405.191320pt;}
.x2d_c01268{left:423.176501pt;}
.x19_c01268{left:434.971280pt;}
.x3a_c01268{left:441.032000pt;}
.x4_c01268{left:445.070667pt;}
.x27_c01268{left:452.554667pt;}
.x10_c01268{left:463.984227pt;}
.x3b_c01268{left:470.552000pt;}
.x2e_c01268{left:472.380808pt;}
.x1a_c01268{left:493.117027pt;}
.x3c_c01268{left:530.276000pt;}
.x5_c01268{left:533.894667pt;}
.x28_c01268{left:542.324000pt;}
.x2f_c01268{left:551.867659pt;}
.x6_c01268{left:563.413333pt;}
.x1b_c01268{left:573.039427pt;}
.x3d_c01268{left:579.222667pt;}
.x29_c01268{left:590.329333pt;}
.x1c_c01268{left:602.344307pt;}
.x11_c01268{left:612.093120pt;}
.x30_c01268{left:629.110621pt;}
.x7_c01268{left:642.386667pt;}
.x1d_c01268{left:652.276467pt;}
.x2a_c01268{left:659.692000pt;}
.x1e_c01268{left:671.169040pt;}
.x12_c01268{left:672.285987pt;}
.x8_c01268{left:711.753333pt;}
.x9_c01268{left:736.868000pt;}
.x1f_c01268{left:742.655187pt;}
.x33_c01268{left:745.345333pt;}
.x20_c01268{left:754.748880pt;}
.x13_c01268{left:770.204387pt;}
}





/* 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_c01269 {
    display:none;
  }
  .loading-indicator_c01269.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01269 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_c01269 { 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_c01269" -> "#page-container .classname_c01269")
 */
.pf_c01269 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01269 { /* 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_c01269.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01269 { /* 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_c01269 { /* 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_c01269 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01269 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01269 {overflow:visible;}
  }
}
.c_c01269 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01269 { /* 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_c01269:after { /* webkit #35443 */
  content: '';
}
.t_c01269:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01269 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 */
}
.__c01269 { /* 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_c01269 { /* info for Javascript */
  display:none;
}
.l_c01269 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01269 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01269 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01269: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_c01269 {
    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_c01269.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01269.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_c01269 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01269{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01269;src:url('chunks/assets/font_a72a081e1d55f37b0ea09712.woff2')format("woff");}.ff1_c01269{font-family:ff1_c01269;line-height:1.000000;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;}
.ma_c01269{transform:matrix(0.142900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142900,0.000000,0.000000,0.250000,0,0);}
.m7_c01269{transform:matrix(0.151765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151765,0.000000,0.000000,0.250000,0,0);}
.mc_c01269{transform:matrix(0.155990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155990,0.000000,0.000000,0.250000,0,0);}
.m9_c01269{transform:matrix(0.164460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164460,0.000000,0.000000,0.250000,0,0);}
.m0_c01269{transform:matrix(0.185540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185540,0.000000,0.000000,0.250000,0,0);}
.md_c01269{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m4_c01269{transform:matrix(0.245505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245505,0.000000,0.000000,0.250000,0,0);}
.m2_c01269{transform:matrix(0.252945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252945,0.000000,0.000000,0.250000,0,0);}
.m6_c01269{transform:matrix(0.267135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267135,0.000000,0.000000,0.250000,0,0);}
.m5_c01269{transform:matrix(0.282910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282910,0.000000,0.000000,0.250000,0,0);}
.mb_c01269{transform:matrix(0.305165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305165,0.000000,0.000000,0.250000,0,0);}
.m1_c01269{transform:matrix(0.393880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393880,0.000000,0.000000,0.250000,0,0);}
.m3_c01269{transform:matrix(0.621050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.621050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.621050,0.000000,0.000000,0.250000,0,0);}
.m8_c01269{transform:matrix(1.114955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.114955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.114955,0.000000,0.000000,0.250000,0,0);}
.v0_c01269{vertical-align:0.000000px;}
.ls0_c01269{letter-spacing:0.000000px;}
.sc__c01269{text-shadow:none;}
.sc0_c01269{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__c01269{-webkit-text-stroke:0px transparent;}
.sc0_c01269{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01269{word-spacing:0.000000px;}
.fc0_c01269{color:transparent;}
.fs2_c01269{font-size:18.000000px;}
.fs5_c01269{font-size:36.000000px;}
.fs1_c01269{font-size:42.000000px;}
.fs4_c01269{font-size:60.000000px;}
.fs0_c01269{font-size:90.000000px;}
.fs3_c01269{font-size:102.000000px;}
.fs6_c01269{font-size:228.000000px;}
.y0_c01269{bottom:0.000000px;}
.y7_c01269{bottom:681.750000px;}
.y2_c01269{bottom:682.020000px;}
.yb_c01269{bottom:686.880000px;}
.y4_c01269{bottom:687.150000px;}
.ya_c01269{bottom:687.420000px;}
.y9_c01269{bottom:687.690000px;}
.y6_c01269{bottom:687.960000px;}
.y1_c01269{bottom:688.230000px;}
.y5_c01269{bottom:688.500000px;}
.y3_c01269{bottom:689.040000px;}
.y8_c01269{bottom:689.580000px;}
.h4_c01269{height:18.000000px;}
.h7_c01269{height:36.000000px;}
.h3_c01269{height:42.000000px;}
.h6_c01269{height:60.000000px;}
.h2_c01269{height:90.000000px;}
.h5_c01269{height:102.000000px;}
.h8_c01269{height:228.000000px;}
.h1_c01269{height:1250.250000px;}
.h0_c01269{height:1250.370000px;}
.w1_c01269{width:888.750000px;}
.w0_c01269{width:889.050000px;}
.x0_c01269{left:0.000000px;}
.xe_c01269{left:352.890000px;}
.xd_c01269{left:377.460000px;}
.xc_c01269{left:419.040000px;}
.xb_c01269{left:442.530000px;}
.xa_c01269{left:453.330000px;}
.x9_c01269{left:477.900000px;}
.x8_c01269{left:507.870000px;}
.x7_c01269{left:551.340000px;}
.x6_c01269{left:572.670000px;}
.x5_c01269{left:591.300000px;}
.x4_c01269{left:619.650000px;}
.x3_c01269{left:640.710000px;}
.x2_c01269{left:662.040000px;}
.x1_c01269{left:672.840000px;}
@media print{
.v0_c01269{vertical-align:0.000000pt;}
.ls0_c01269{letter-spacing:0.000000pt;}
.ws0_c01269{word-spacing:0.000000pt;}
.fs2_c01269{font-size:16.000000pt;}
.fs5_c01269{font-size:32.000000pt;}
.fs1_c01269{font-size:37.333333pt;}
.fs4_c01269{font-size:53.333333pt;}
.fs0_c01269{font-size:80.000000pt;}
.fs3_c01269{font-size:90.666667pt;}
.fs6_c01269{font-size:202.666667pt;}
.y0_c01269{bottom:0.000000pt;}
.y7_c01269{bottom:606.000000pt;}
.y2_c01269{bottom:606.240000pt;}
.yb_c01269{bottom:610.560000pt;}
.y4_c01269{bottom:610.800000pt;}
.ya_c01269{bottom:611.040000pt;}
.y9_c01269{bottom:611.280000pt;}
.y6_c01269{bottom:611.520000pt;}
.y1_c01269{bottom:611.760000pt;}
.y5_c01269{bottom:612.000000pt;}
.y3_c01269{bottom:612.480000pt;}
.y8_c01269{bottom:612.960000pt;}
.h4_c01269{height:16.000000pt;}
.h7_c01269{height:32.000000pt;}
.h3_c01269{height:37.333333pt;}
.h6_c01269{height:53.333333pt;}
.h2_c01269{height:80.000000pt;}
.h5_c01269{height:90.666667pt;}
.h8_c01269{height:202.666667pt;}
.h1_c01269{height:1111.333333pt;}
.h0_c01269{height:1111.440000pt;}
.w1_c01269{width:790.000000pt;}
.w0_c01269{width:790.266667pt;}
.x0_c01269{left:0.000000pt;}
.xe_c01269{left:313.680000pt;}
.xd_c01269{left:335.520000pt;}
.xc_c01269{left:372.480000pt;}
.xb_c01269{left:393.360000pt;}
.xa_c01269{left:402.960000pt;}
.x9_c01269{left:424.800000pt;}
.x8_c01269{left:451.440000pt;}
.x7_c01269{left:490.080000pt;}
.x6_c01269{left:509.040000pt;}
.x5_c01269{left:525.600000pt;}
.x4_c01269{left:550.800000pt;}
.x3_c01269{left:569.520000pt;}
.x2_c01269{left:588.480000pt;}
.x1_c01269{left:598.080000pt;}
}





/* 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_c01270 {
    display:none;
  }
  .loading-indicator_c01270.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01270 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_c01270 { 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_c01270" -> "#page-container .classname_c01270")
 */
.pf_c01270 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01270 { /* 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_c01270.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01270 { /* 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_c01270 { /* 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_c01270 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01270 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01270 {overflow:visible;}
  }
}
.c_c01270 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01270 { /* 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_c01270:after { /* webkit #35443 */
  content: '';
}
.t_c01270:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01270 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 */
}
.__c01270 { /* 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_c01270 { /* info for Javascript */
  display:none;
}
.l_c01270 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01270 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01270 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01270: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_c01270 {
    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_c01270.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01270.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_c01270 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01270{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01270;src:url('chunks/assets/font_c605e72f209fc835e906f064.woff2')format("woff");}.ff1_c01270{font-family:ff1_c01270;line-height:1.000000;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;}
.m28_c01270{transform:matrix(0.011570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.011570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.011570,0.000000,0.000000,0.250000,0,0);}
.m8a_c01270{transform:matrix(0.012480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.012480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.012480,0.000000,0.000000,0.250000,0,0);}
.m0_c01270{transform:matrix(0.104015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.104015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.104015,0.000000,0.000000,0.250000,0,0);}
.m1d_c01270{transform:matrix(0.151295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151295,0.000000,0.000000,0.250000,0,0);}
.m6_c01270{transform:matrix(0.163135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163135,0.000000,0.000000,0.250000,0,0);}
.md3_c01270{transform:matrix(0.171130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171130,0.000000,0.000000,0.250000,0,0);}
.m6d_c01270{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.md5_c01270{transform:matrix(0.182155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182155,0.000000,0.000000,0.250000,0,0);}
.md2_c01270{transform:matrix(0.184820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184820,0.000000,0.000000,0.250000,0,0);}
.mfd_c01270{transform:matrix(0.185225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185225,0.000000,0.000000,0.250000,0,0);}
.mff_c01270{transform:matrix(0.185925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185925,0.000000,0.000000,0.250000,0,0);}
.m4a_c01270{transform:matrix(0.186090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186090,0.000000,0.000000,0.250000,0,0);}
.m10e_c01270{transform:matrix(0.186375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186375,0.000000,0.000000,0.250000,0,0);}
.md4_c01270{transform:matrix(0.186420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186420,0.000000,0.000000,0.250000,0,0);}
.m6a_c01270{transform:matrix(0.187505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187505,0.000000,0.000000,0.250000,0,0);}
.mf6_c01270{transform:matrix(0.187830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187830,0.000000,0.000000,0.250000,0,0);}
.m9e_c01270{transform:matrix(0.188435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188435,0.000000,0.000000,0.250000,0,0);}
.m6b_c01270{transform:matrix(0.188605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188605,0.000000,0.000000,0.250000,0,0);}
.m64_c01270{transform:matrix(0.191670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191670,0.000000,0.000000,0.250000,0,0);}
.m66_c01270{transform:matrix(0.191930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191930,0.000000,0.000000,0.250000,0,0);}
.m104_c01270{transform:matrix(0.192630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192630,0.000000,0.000000,0.250000,0,0);}
.mf7_c01270{transform:matrix(0.194035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194035,0.000000,0.000000,0.250000,0,0);}
.m14_c01270{transform:matrix(0.194435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194435,0.000000,0.000000,0.250000,0,0);}
.mf9_c01270{transform:matrix(0.194445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194445,0.000000,0.000000,0.250000,0,0);}
.m67_c01270{transform:matrix(0.195440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195440,0.000000,0.000000,0.250000,0,0);}
.mfa_c01270{transform:matrix(0.196175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196175,0.000000,0.000000,0.250000,0,0);}
.m68_c01270{transform:matrix(0.196955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196955,0.000000,0.000000,0.250000,0,0);}
.m108_c01270{transform:matrix(0.197435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197435,0.000000,0.000000,0.250000,0,0);}
.m106_c01270{transform:matrix(0.198535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198535,0.000000,0.000000,0.250000,0,0);}
.m10_c01270{transform:matrix(0.199100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199100,0.000000,0.000000,0.250000,0,0);}
.m12_c01270{transform:matrix(0.199515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199515,0.000000,0.000000,0.250000,0,0);}
.m16_c01270{transform:matrix(0.200345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200345,0.000000,0.000000,0.250000,0,0);}
.m62_c01270{transform:matrix(0.200585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200585,0.000000,0.000000,0.250000,0,0);}
.mfe_c01270{transform:matrix(0.201405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201405,0.000000,0.000000,0.250000,0,0);}
.m11_c01270{transform:matrix(0.202045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202045,0.000000,0.000000,0.250000,0,0);}
.m72_c01270{transform:matrix(0.203350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203350,0.000000,0.000000,0.250000,0,0);}
.m31_c01270{transform:matrix(0.204710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204710,0.000000,0.000000,0.250000,0,0);}
.m13_c01270{transform:matrix(0.205760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205760,0.000000,0.000000,0.250000,0,0);}
.m94_c01270{transform:matrix(0.205915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205915,0.000000,0.000000,0.250000,0,0);}
.m10b_c01270{transform:matrix(0.207240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207240,0.000000,0.000000,0.250000,0,0);}
.m63_c01270{transform:matrix(0.207300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207300,0.000000,0.000000,0.250000,0,0);}
.m6e_c01270{transform:matrix(0.208585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208585,0.000000,0.000000,0.250000,0,0);}
.m71_c01270{transform:matrix(0.208675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208675,0.000000,0.000000,0.250000,0,0);}
.mf8_c01270{transform:matrix(0.209670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209670,0.000000,0.000000,0.250000,0,0);}
.maa_c01270{transform:matrix(0.210195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210195,0.000000,0.000000,0.250000,0,0);}
.mfb_c01270{transform:matrix(0.210670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210670,0.000000,0.000000,0.250000,0,0);}
.m69_c01270{transform:matrix(0.211425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211425,0.000000,0.000000,0.250000,0,0);}
.m4e_c01270{transform:matrix(0.211630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211630,0.000000,0.000000,0.250000,0,0);}
.m1a_c01270{transform:matrix(0.211700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211700,0.000000,0.000000,0.250000,0,0);}
.m65_c01270{transform:matrix(0.211740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211740,0.000000,0.000000,0.250000,0,0);}
.m10c_c01270{transform:matrix(0.211830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211830,0.000000,0.000000,0.250000,0,0);}
.m10a_c01270{transform:matrix(0.212185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212185,0.000000,0.000000,0.250000,0,0);}
.m102_c01270{transform:matrix(0.212360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212360,0.000000,0.000000,0.250000,0,0);}
.m101_c01270{transform:matrix(0.212460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212460,0.000000,0.000000,0.250000,0,0);}
.m7e_c01270{transform:matrix(0.212570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212570,0.000000,0.000000,0.250000,0,0);}
.mc2_c01270{transform:matrix(0.212760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212760,0.000000,0.000000,0.250000,0,0);}
.m5f_c01270{transform:matrix(0.213555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213555,0.000000,0.000000,0.250000,0,0);}
.m88_c01270{transform:matrix(0.214530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214530,0.000000,0.000000,0.250000,0,0);}
.m19_c01270{transform:matrix(0.214770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214770,0.000000,0.000000,0.250000,0,0);}
.m2f_c01270{transform:matrix(0.215195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215195,0.000000,0.000000,0.250000,0,0);}
.mcf_c01270{transform:matrix(0.215705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215705,0.000000,0.000000,0.250000,0,0);}
.mc4_c01270{transform:matrix(0.215755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215755,0.000000,0.000000,0.250000,0,0);}
.m8c_c01270{transform:matrix(0.216210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216210,0.000000,0.000000,0.250000,0,0);}
.m105_c01270{transform:matrix(0.216305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216305,0.000000,0.000000,0.250000,0,0);}
.m3_c01270{transform:matrix(0.216495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216495,0.000000,0.000000,0.250000,0,0);}
.m7d_c01270{transform:matrix(0.217385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217385,0.000000,0.000000,0.250000,0,0);}
.mfc_c01270{transform:matrix(0.217700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217700,0.000000,0.000000,0.250000,0,0);}
.m54_c01270{transform:matrix(0.217705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217705,0.000000,0.000000,0.250000,0,0);}
.m18_c01270{transform:matrix(0.217860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217860,0.000000,0.000000,0.250000,0,0);}
.m74_c01270{transform:matrix(0.217995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217995,0.000000,0.000000,0.250000,0,0);}
.mbe_c01270{transform:matrix(0.218465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218465,0.000000,0.000000,0.250000,0,0);}
.mc7_c01270{transform:matrix(0.218925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218925,0.000000,0.000000,0.250000,0,0);}
.m8f_c01270{transform:matrix(0.218940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218940,0.000000,0.000000,0.250000,0,0);}
.m112_c01270{transform:matrix(0.219045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219045,0.000000,0.000000,0.250000,0,0);}
.mc8_c01270{transform:matrix(0.219070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219070,0.000000,0.000000,0.250000,0,0);}
.m35_c01270{transform:matrix(0.219540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219540,0.000000,0.000000,0.250000,0,0);}
.mcd_c01270{transform:matrix(0.219670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219670,0.000000,0.000000,0.250000,0,0);}
.m17_c01270{transform:matrix(0.220020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220020,0.000000,0.000000,0.250000,0,0);}
.m3b_c01270{transform:matrix(0.220440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220440,0.000000,0.000000,0.250000,0,0);}
.mdd_c01270{transform:matrix(0.220485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220485,0.000000,0.000000,0.250000,0,0);}
.mc3_c01270{transform:matrix(0.220625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220625,0.000000,0.000000,0.250000,0,0);}
.m84_c01270{transform:matrix(0.220890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220890,0.000000,0.000000,0.250000,0,0);}
.m100_c01270{transform:matrix(0.220950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220950,0.000000,0.000000,0.250000,0,0);}
.ma9_c01270{transform:matrix(0.221415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221415,0.000000,0.000000,0.250000,0,0);}
.m6c_c01270{transform:matrix(0.221575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221575,0.000000,0.000000,0.250000,0,0);}
.m61_c01270{transform:matrix(0.221740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221740,0.000000,0.000000,0.250000,0,0);}
.m37_c01270{transform:matrix(0.222125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222125,0.000000,0.000000,0.250000,0,0);}
.m51_c01270{transform:matrix(0.222215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222215,0.000000,0.000000,0.250000,0,0);}
.m4b_c01270{transform:matrix(0.222845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222845,0.000000,0.000000,0.250000,0,0);}
.m10d_c01270{transform:matrix(0.223515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223515,0.000000,0.000000,0.250000,0,0);}
.m90_c01270{transform:matrix(0.223860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223860,0.000000,0.000000,0.250000,0,0);}
.m89_c01270{transform:matrix(0.224400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224400,0.000000,0.000000,0.250000,0,0);}
.mc1_c01270{transform:matrix(0.225945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225945,0.000000,0.000000,0.250000,0,0);}
.ma0_c01270{transform:matrix(0.227005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227005,0.000000,0.000000,0.250000,0,0);}
.m4f_c01270{transform:matrix(0.227260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227260,0.000000,0.000000,0.250000,0,0);}
.m81_c01270{transform:matrix(0.227540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227540,0.000000,0.000000,0.250000,0,0);}
.maf_c01270{transform:matrix(0.228965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228965,0.000000,0.000000,0.250000,0,0);}
.mcb_c01270{transform:matrix(0.230340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230340,0.000000,0.000000,0.250000,0,0);}
.m83_c01270{transform:matrix(0.230550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230550,0.000000,0.000000,0.250000,0,0);}
.med_c01270{transform:matrix(0.230895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230895,0.000000,0.000000,0.250000,0,0);}
.mb7_c01270{transform:matrix(0.231100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231100,0.000000,0.000000,0.250000,0,0);}
.m3d_c01270{transform:matrix(0.231405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231405,0.000000,0.000000,0.250000,0,0);}
.m78_c01270{transform:matrix(0.231625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231625,0.000000,0.000000,0.250000,0,0);}
.m4c_c01270{transform:matrix(0.233340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233340,0.000000,0.000000,0.250000,0,0);}
.m2c_c01270{transform:matrix(0.234535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234535,0.000000,0.000000,0.250000,0,0);}
.md8_c01270{transform:matrix(0.235080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235080,0.000000,0.000000,0.250000,0,0);}
.m53_c01270{transform:matrix(0.235390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235390,0.000000,0.000000,0.250000,0,0);}
.m5b_c01270{transform:matrix(0.235395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235395,0.000000,0.000000,0.250000,0,0);}
.md0_c01270{transform:matrix(0.235670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235670,0.000000,0.000000,0.250000,0,0);}
.m5a_c01270{transform:matrix(0.235850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235850,0.000000,0.000000,0.250000,0,0);}
.m15_c01270{transform:matrix(0.237010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237010,0.000000,0.000000,0.250000,0,0);}
.m92_c01270{transform:matrix(0.237205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237205,0.000000,0.000000,0.250000,0,0);}
.m103_c01270{transform:matrix(0.237300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237300,0.000000,0.000000,0.250000,0,0);}
.m86_c01270{transform:matrix(0.237805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237805,0.000000,0.000000,0.250000,0,0);}
.mf0_c01270{transform:matrix(0.237830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237830,0.000000,0.000000,0.250000,0,0);}
.m3f_c01270{transform:matrix(0.237975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237975,0.000000,0.000000,0.250000,0,0);}
.m107_c01270{transform:matrix(0.238405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238405,0.000000,0.000000,0.250000,0,0);}
.m44_c01270{transform:matrix(0.238810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238810,0.000000,0.000000,0.250000,0,0);}
.m1b_c01270{transform:matrix(0.238830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238830,0.000000,0.000000,0.250000,0,0);}
.m58_c01270{transform:matrix(0.239295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239295,0.000000,0.000000,0.250000,0,0);}
.m93_c01270{transform:matrix(0.239540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239540,0.000000,0.000000,0.250000,0,0);}
.m109_c01270{transform:matrix(0.239650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239650,0.000000,0.000000,0.250000,0,0);}
.m1c_c01270{transform:matrix(0.239875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239875,0.000000,0.000000,0.250000,0,0);}
.m2_c01270{transform:matrix(0.239960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239960,0.000000,0.000000,0.250000,0,0);}
.m6f_c01270{transform:matrix(0.240275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240275,0.000000,0.000000,0.250000,0,0);}
.m5e_c01270{transform:matrix(0.240295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240295,0.000000,0.000000,0.250000,0,0);}
.m9c_c01270{transform:matrix(0.240535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240535,0.000000,0.000000,0.250000,0,0);}
.m47_c01270{transform:matrix(0.240635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240635,0.000000,0.000000,0.250000,0,0);}
.m76_c01270{transform:matrix(0.241030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241030,0.000000,0.000000,0.250000,0,0);}
.m34_c01270{transform:matrix(0.243170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243170,0.000000,0.000000,0.250000,0,0);}
.m9d_c01270{transform:matrix(0.243415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243415,0.000000,0.000000,0.250000,0,0);}
.mdb_c01270{transform:matrix(0.243540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243540,0.000000,0.000000,0.250000,0,0);}
.mc9_c01270{transform:matrix(0.243835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243835,0.000000,0.000000,0.250000,0,0);}
.m97_c01270{transform:matrix(0.244095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244095,0.000000,0.000000,0.250000,0,0);}
.m73_c01270{transform:matrix(0.244490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244490,0.000000,0.000000,0.250000,0,0);}
.mdf_c01270{transform:matrix(0.245390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245390,0.000000,0.000000,0.250000,0,0);}
.m85_c01270{transform:matrix(0.245565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245565,0.000000,0.000000,0.250000,0,0);}
.mb1_c01270{transform:matrix(0.246185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246185,0.000000,0.000000,0.250000,0,0);}
.m32_c01270{transform:matrix(0.246540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246540,0.000000,0.000000,0.250000,0,0);}
.m8e_c01270{transform:matrix(0.246945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246945,0.000000,0.000000,0.250000,0,0);}
.m75_c01270{transform:matrix(0.247550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247550,0.000000,0.000000,0.250000,0,0);}
.ma8_c01270{transform:matrix(0.247755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247755,0.000000,0.000000,0.250000,0,0);}
.mee_c01270{transform:matrix(0.247935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247935,0.000000,0.000000,0.250000,0,0);}
.mb6_c01270{transform:matrix(0.248005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248005,0.000000,0.000000,0.250000,0,0);}
.m43_c01270{transform:matrix(0.248080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248080,0.000000,0.000000,0.250000,0,0);}
.me9_c01270{transform:matrix(0.248305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248305,0.000000,0.000000,0.250000,0,0);}
.m23_c01270{transform:matrix(0.248360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248360,0.000000,0.000000,0.250000,0,0);}
.m4d_c01270{transform:matrix(0.248635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248635,0.000000,0.000000,0.250000,0,0);}
.m7f_c01270{transform:matrix(0.249400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249400,0.000000,0.000000,0.250000,0,0);}
.m70_c01270{transform:matrix(0.249520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249520,0.000000,0.000000,0.250000,0,0);}
.m91_c01270{transform:matrix(0.249640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249640,0.000000,0.000000,0.250000,0,0);}
.mb4_c01270{transform:matrix(0.249665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249665,0.000000,0.000000,0.250000,0,0);}
.m52_c01270{transform:matrix(0.250055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250055,0.000000,0.000000,0.250000,0,0);}
.mcc_c01270{transform:matrix(0.250545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250545,0.000000,0.000000,0.250000,0,0);}
.mbc_c01270{transform:matrix(0.250620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250620,0.000000,0.000000,0.250000,0,0);}
.m45_c01270{transform:matrix(0.250660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250660,0.000000,0.000000,0.250000,0,0);}
.m96_c01270{transform:matrix(0.250930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250930,0.000000,0.000000,0.250000,0,0);}
.m9a_c01270{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m8b_c01270{transform:matrix(0.251035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251035,0.000000,0.000000,0.250000,0,0);}
.ma6_c01270{transform:matrix(0.251125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251125,0.000000,0.000000,0.250000,0,0);}
.mad_c01270{transform:matrix(0.251395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251395,0.000000,0.000000,0.250000,0,0);}
.mca_c01270{transform:matrix(0.251660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251660,0.000000,0.000000,0.250000,0,0);}
.me3_c01270{transform:matrix(0.251755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251755,0.000000,0.000000,0.250000,0,0);}
.ma2_c01270{transform:matrix(0.251870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251870,0.000000,0.000000,0.250000,0,0);}
.me5_c01270{transform:matrix(0.252010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252010,0.000000,0.000000,0.250000,0,0);}
.m2a_c01270{transform:matrix(0.252115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252115,0.000000,0.000000,0.250000,0,0);}
.mce_c01270{transform:matrix(0.252355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252355,0.000000,0.000000,0.250000,0,0);}
.me8_c01270{transform:matrix(0.252390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252390,0.000000,0.000000,0.250000,0,0);}
.m36_c01270{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.mbf_c01270{transform:matrix(0.253510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253510,0.000000,0.000000,0.250000,0,0);}
.m40_c01270{transform:matrix(0.254130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254130,0.000000,0.000000,0.250000,0,0);}
.m7_c01270{transform:matrix(0.254405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254405,0.000000,0.000000,0.250000,0,0);}
.mf1_c01270{transform:matrix(0.254570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254570,0.000000,0.000000,0.250000,0,0);}
.m80_c01270{transform:matrix(0.255880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255880,0.000000,0.000000,0.250000,0,0);}
.m42_c01270{transform:matrix(0.256190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256190,0.000000,0.000000,0.250000,0,0);}
.m38_c01270{transform:matrix(0.256230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256230,0.000000,0.000000,0.250000,0,0);}
.m21_c01270{transform:matrix(0.256365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256365,0.000000,0.000000,0.250000,0,0);}
.m3c_c01270{transform:matrix(0.256775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256775,0.000000,0.000000,0.250000,0,0);}
.m50_c01270{transform:matrix(0.256815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256815,0.000000,0.000000,0.250000,0,0);}
.mb3_c01270{transform:matrix(0.256935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256935,0.000000,0.000000,0.250000,0,0);}
.m87_c01270{transform:matrix(0.257020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257020,0.000000,0.000000,0.250000,0,0);}
.m3a_c01270{transform:matrix(0.257220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257220,0.000000,0.000000,0.250000,0,0);}
.m60_c01270{transform:matrix(0.257570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257570,0.000000,0.000000,0.250000,0,0);}
.m8d_c01270{transform:matrix(0.257840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257840,0.000000,0.000000,0.250000,0,0);}
.m39_c01270{transform:matrix(0.258670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258670,0.000000,0.000000,0.250000,0,0);}
.m9_c01270{transform:matrix(0.258730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258730,0.000000,0.000000,0.250000,0,0);}
.mf2_c01270{transform:matrix(0.258950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258950,0.000000,0.000000,0.250000,0,0);}
.m98_c01270{transform:matrix(0.259055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259055,0.000000,0.000000,0.250000,0,0);}
.mec_c01270{transform:matrix(0.259110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259110,0.000000,0.000000,0.250000,0,0);}
.me2_c01270{transform:matrix(0.259210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259210,0.000000,0.000000,0.250000,0,0);}
.mbd_c01270{transform:matrix(0.260195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260195,0.000000,0.000000,0.250000,0,0);}
.me4_c01270{transform:matrix(0.260350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260350,0.000000,0.000000,0.250000,0,0);}
.meb_c01270{transform:matrix(0.260675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260675,0.000000,0.000000,0.250000,0,0);}
.m26_c01270{transform:matrix(0.261150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261150,0.000000,0.000000,0.250000,0,0);}
.m82_c01270{transform:matrix(0.261265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261265,0.000000,0.000000,0.250000,0,0);}
.m46_c01270{transform:matrix(0.261335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261335,0.000000,0.000000,0.250000,0,0);}
.m79_c01270{transform:matrix(0.261435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261435,0.000000,0.000000,0.250000,0,0);}
.mb5_c01270{transform:matrix(0.261945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261945,0.000000,0.000000,0.250000,0,0);}
.m4_c01270{transform:matrix(0.262195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262195,0.000000,0.000000,0.250000,0,0);}
.mb9_c01270{transform:matrix(0.262465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262465,0.000000,0.000000,0.250000,0,0);}
.md9_c01270{transform:matrix(0.262815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262815,0.000000,0.000000,0.250000,0,0);}
.md_c01270{transform:matrix(0.262865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262865,0.000000,0.000000,0.250000,0,0);}
.mc5_c01270{transform:matrix(0.262940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262940,0.000000,0.000000,0.250000,0,0);}
.mc0_c01270{transform:matrix(0.262965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262965,0.000000,0.000000,0.250000,0,0);}
.mbb_c01270{transform:matrix(0.263230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263230,0.000000,0.000000,0.250000,0,0);}
.me7_c01270{transform:matrix(0.263880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263880,0.000000,0.000000,0.250000,0,0);}
.mae_c01270{transform:matrix(0.264675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264675,0.000000,0.000000,0.250000,0,0);}
.me6_c01270{transform:matrix(0.264990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264990,0.000000,0.000000,0.250000,0,0);}
.m29_c01270{transform:matrix(0.265340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265340,0.000000,0.000000,0.250000,0,0);}
.m5c_c01270{transform:matrix(0.265690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265690,0.000000,0.000000,0.250000,0,0);}
.m95_c01270{transform:matrix(0.265925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265925,0.000000,0.000000,0.250000,0,0);}
.m56_c01270{transform:matrix(0.266400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266400,0.000000,0.000000,0.250000,0,0);}
.m33_c01270{transform:matrix(0.266790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266790,0.000000,0.000000,0.250000,0,0);}
.mdc_c01270{transform:matrix(0.266865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266865,0.000000,0.000000,0.250000,0,0);}
.me0_c01270{transform:matrix(0.266885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266885,0.000000,0.000000,0.250000,0,0);}
.me1_c01270{transform:matrix(0.267155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267155,0.000000,0.000000,0.250000,0,0);}
.m57_c01270{transform:matrix(0.267510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267510,0.000000,0.000000,0.250000,0,0);}
.m30_c01270{transform:matrix(0.267715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267715,0.000000,0.000000,0.250000,0,0);}
.ma7_c01270{transform:matrix(0.268150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268150,0.000000,0.000000,0.250000,0,0);}
.m49_c01270{transform:matrix(0.268620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268620,0.000000,0.000000,0.250000,0,0);}
.m59_c01270{transform:matrix(0.268800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268800,0.000000,0.000000,0.250000,0,0);}
.m25_c01270{transform:matrix(0.269130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269130,0.000000,0.000000,0.250000,0,0);}
.md6_c01270{transform:matrix(0.269260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269260,0.000000,0.000000,0.250000,0,0);}
.m3e_c01270{transform:matrix(0.269490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269490,0.000000,0.000000,0.250000,0,0);}
.m2b_c01270{transform:matrix(0.269615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269615,0.000000,0.000000,0.250000,0,0);}
.mab_c01270{transform:matrix(0.269990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269990,0.000000,0.000000,0.250000,0,0);}
.mde_c01270{transform:matrix(0.270540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270540,0.000000,0.000000,0.250000,0,0);}
.m7a_c01270{transform:matrix(0.270855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270855,0.000000,0.000000,0.250000,0,0);}
.m2e_c01270{transform:matrix(0.271060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271060,0.000000,0.000000,0.250000,0,0);}
.m7b_c01270{transform:matrix(0.271470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271470,0.000000,0.000000,0.250000,0,0);}
.m1f_c01270{transform:matrix(0.272075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272075,0.000000,0.000000,0.250000,0,0);}
.m48_c01270{transform:matrix(0.272405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272405,0.000000,0.000000,0.250000,0,0);}
.mef_c01270{transform:matrix(0.272925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272925,0.000000,0.000000,0.250000,0,0);}
.mea_c01270{transform:matrix(0.273635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273635,0.000000,0.000000,0.250000,0,0);}
.m41_c01270{transform:matrix(0.274040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274040,0.000000,0.000000,0.250000,0,0);}
.mda_c01270{transform:matrix(0.274535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274535,0.000000,0.000000,0.250000,0,0);}
.m77_c01270{transform:matrix(0.275455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275455,0.000000,0.000000,0.250000,0,0);}
.ma4_c01270{transform:matrix(0.276085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276085,0.000000,0.000000,0.250000,0,0);}
.ma1_c01270{transform:matrix(0.276535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276535,0.000000,0.000000,0.250000,0,0);}
.ma_c01270{transform:matrix(0.276925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276925,0.000000,0.000000,0.250000,0,0);}
.m9b_c01270{transform:matrix(0.277470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277470,0.000000,0.000000,0.250000,0,0);}
.m9f_c01270{transform:matrix(0.278110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278110,0.000000,0.000000,0.250000,0,0);}
.mb8_c01270{transform:matrix(0.278535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278535,0.000000,0.000000,0.250000,0,0);}
.mac_c01270{transform:matrix(0.279355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279355,0.000000,0.000000,0.250000,0,0);}
.m2d_c01270{transform:matrix(0.279590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279590,0.000000,0.000000,0.250000,0,0);}
.mf3_c01270{transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279965,0.000000,0.000000,0.250000,0,0);}
.ma3_c01270{transform:matrix(0.280225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280225,0.000000,0.000000,0.250000,0,0);}
.me_c01270{transform:matrix(0.280560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280560,0.000000,0.000000,0.250000,0,0);}
.m99_c01270{transform:matrix(0.281195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281195,0.000000,0.000000,0.250000,0,0);}
.mb2_c01270{transform:matrix(0.281805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281805,0.000000,0.000000,0.250000,0,0);}
.mb0_c01270{transform:matrix(0.282955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282955,0.000000,0.000000,0.250000,0,0);}
.md7_c01270{transform:matrix(0.283375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283375,0.000000,0.000000,0.250000,0,0);}
.mba_c01270{transform:matrix(0.283570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283570,0.000000,0.000000,0.250000,0,0);}
.m5d_c01270{transform:matrix(0.286410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286410,0.000000,0.000000,0.250000,0,0);}
.m1e_c01270{transform:matrix(0.287075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287075,0.000000,0.000000,0.250000,0,0);}
.m8_c01270{transform:matrix(0.287430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287430,0.000000,0.000000,0.250000,0,0);}
.m20_c01270{transform:matrix(0.287770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287770,0.000000,0.000000,0.250000,0,0);}
.ma5_c01270{transform:matrix(0.288990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288990,0.000000,0.000000,0.250000,0,0);}
.m55_c01270{transform:matrix(0.293530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293530,0.000000,0.000000,0.250000,0,0);}
.m24_c01270{transform:matrix(0.293645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293645,0.000000,0.000000,0.250000,0,0);}
.m5_c01270{transform:matrix(0.295445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295445,0.000000,0.000000,0.250000,0,0);}
.m119_c01270{transform:matrix(0.297920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297920,0.000000,0.000000,0.250000,0,0);}
.m11b_c01270{transform:matrix(0.301425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301425,0.000000,0.000000,0.250000,0,0);}
.mb_c01270{transform:matrix(0.301905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301905,0.000000,0.000000,0.250000,0,0);}
.m1_c01270{transform:matrix(0.302635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302635,0.000000,0.000000,0.250000,0,0);}
.mc_c01270{transform:matrix(0.303270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303270,0.000000,0.000000,0.250000,0,0);}
.m22_c01270{transform:matrix(0.303295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303295,0.000000,0.000000,0.250000,0,0);}
.mf_c01270{transform:matrix(0.304355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304355,0.000000,0.000000,0.250000,0,0);}
.m27_c01270{transform:matrix(0.308955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308955,0.000000,0.000000,0.250000,0,0);}
.m11d_c01270{transform:matrix(0.312870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312870,0.000000,0.000000,0.250000,0,0);}
.m11e_c01270{transform:matrix(0.314340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314340,0.000000,0.000000,0.250000,0,0);}
.m115_c01270{transform:matrix(0.314465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314465,0.000000,0.000000,0.250000,0,0);}
.m114_c01270{transform:matrix(0.314840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314840,0.000000,0.000000,0.250000,0,0);}
.m7c_c01270{transform:matrix(0.316430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316430,0.000000,0.000000,0.250000,0,0);}
.m113_c01270{transform:matrix(0.323670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323670,0.000000,0.000000,0.250000,0,0);}
.m117_c01270{transform:matrix(0.328275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328275,0.000000,0.000000,0.250000,0,0);}
.m121_c01270{transform:matrix(0.328720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328720,0.000000,0.000000,0.250000,0,0);}
.m118_c01270{transform:matrix(0.329075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329075,0.000000,0.000000,0.250000,0,0);}
.m120_c01270{transform:matrix(0.337735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337735,0.000000,0.000000,0.250000,0,0);}
.m11c_c01270{transform:matrix(0.338830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338830,0.000000,0.000000,0.250000,0,0);}
.mc6_c01270{transform:matrix(0.344295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344295,0.000000,0.000000,0.250000,0,0);}
.md1_c01270{transform:matrix(0.349855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349855,0.000000,0.000000,0.250000,0,0);}
.m116_c01270{transform:matrix(0.354075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354075,0.000000,0.000000,0.250000,0,0);}
.m11f_c01270{transform:matrix(0.359125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359125,0.000000,0.000000,0.250000,0,0);}
.m111_c01270{transform:matrix(0.361065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361065,0.000000,0.000000,0.250000,0,0);}
.m110_c01270{transform:matrix(0.366785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366785,0.000000,0.000000,0.250000,0,0);}
.m11a_c01270{transform:matrix(0.374165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374165,0.000000,0.000000,0.250000,0,0);}
.mf5_c01270{transform:matrix(0.408765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408765,0.000000,0.000000,0.250000,0,0);}
.mf4_c01270{transform:matrix(0.556530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.556530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.556530,0.000000,0.000000,0.250000,0,0);}
.m10f_c01270{transform:matrix(1.793235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.793235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.793235,0.000000,0.000000,0.250000,0,0);}
.v0_c01270{vertical-align:0.000000px;}
.v1_c01270{vertical-align:4.146000px;}
.ls0_c01270{letter-spacing:0.000000px;}
.sc__c01270{text-shadow:none;}
.sc0_c01270{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__c01270{-webkit-text-stroke:0px transparent;}
.sc0_c01270{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01270{word-spacing:0.000000px;}
._0_c01270{width:75.934232px;}
.fc0_c01270{color:transparent;}
.fs7_c01270{font-size:36.000000px;}
.fs8_c01270{font-size:54.000000px;}
.fs2_c01270{font-size:66.000000px;}
.fs4_c01270{font-size:72.000000px;}
.fs1_c01270{font-size:78.000000px;}
.fs3_c01270{font-size:84.000000px;}
.fs5_c01270{font-size:90.000000px;}
.fs6_c01270{font-size:96.000000px;}
.fs0_c01270{font-size:102.000000px;}
.y0_c01270{bottom:0.000000px;}
.ye2_c01270{bottom:80.866500px;}
.yd9_c01270{bottom:114.211500px;}
.yda_c01270{bottom:115.086000px;}
.ydb_c01270{bottom:115.800000px;}
.ydc_c01270{bottom:116.079000px;}
.ydd_c01270{bottom:116.499000px;}
.yde_c01270{bottom:116.679000px;}
.ydf_c01270{bottom:116.977500px;}
.ye0_c01270{bottom:117.582000px;}
.ye1_c01270{bottom:118.087500px;}
.yd8_c01270{bottom:149.488500px;}
.yd7_c01270{bottom:168.030000px;}
.yd6_c01270{bottom:207.282000px;}
.yd5_c01270{bottom:240.427500px;}
.yd4_c01270{bottom:275.946000px;}
.yd3_c01270{bottom:276.207000px;}
.yd2_c01270{bottom:276.831000px;}
.yd1_c01270{bottom:277.366500px;}
.yd0_c01270{bottom:277.726500px;}
.ycf_c01270{bottom:277.987500px;}
.yce_c01270{bottom:278.430000px;}
.ycd_c01270{bottom:278.970000px;}
.ycc_c01270{bottom:279.406500px;}
.ycb_c01270{bottom:279.931500px;}
.yca_c01270{bottom:280.638000px;}
.yc9_c01270{bottom:281.163000px;}
.yc8_c01270{bottom:281.340000px;}
.yc7_c01270{bottom:313.642500px;}
.yc3_c01270{bottom:343.437000px;}
.yc4_c01270{bottom:344.419500px;}
.yc5_c01270{bottom:345.007500px;}
.yc6_c01270{bottom:346.003500px;}
.yc2_c01270{bottom:382.743000px;}
.yb6_c01270{bottom:415.795500px;}
.yb7_c01270{bottom:415.966500px;}
.yb8_c01270{bottom:416.515500px;}
.yb9_c01270{bottom:417.115500px;}
.yba_c01270{bottom:417.289500px;}
.ybb_c01270{bottom:417.783000px;}
.ybc_c01270{bottom:417.951000px;}
.ybd_c01270{bottom:418.173000px;}
.ybe_c01270{bottom:418.345500px;}
.ybf_c01270{bottom:418.503000px;}
.yc0_c01270{bottom:418.669500px;}
.yc1_c01270{bottom:419.256000px;}
.yaa_c01270{bottom:451.437000px;}
.yab_c01270{bottom:452.358000px;}
.yac_c01270{bottom:452.755500px;}
.yad_c01270{bottom:453.024000px;}
.yae_c01270{bottom:453.421500px;}
.yaf_c01270{bottom:453.628500px;}
.yb0_c01270{bottom:453.820500px;}
.yb1_c01270{bottom:454.017000px;}
.yb2_c01270{bottom:454.684500px;}
.yb3_c01270{bottom:454.887000px;}
.yb4_c01270{bottom:455.217000px;}
.yb5_c01270{bottom:455.485500px;}
.y9e_c01270{bottom:486.000000px;}
.y9f_c01270{bottom:486.307500px;}
.ya0_c01270{bottom:486.927000px;}
.ya1_c01270{bottom:487.074000px;}
.ya2_c01270{bottom:487.315500px;}
.ya3_c01270{bottom:487.552500px;}
.ya4_c01270{bottom:488.250000px;}
.ya5_c01270{bottom:489.093000px;}
.ya6_c01270{bottom:489.399000px;}
.ya7_c01270{bottom:489.874500px;}
.ya8_c01270{bottom:490.107000px;}
.ya9_c01270{bottom:490.650000px;}
.y94_c01270{bottom:523.530000px;}
.y95_c01270{bottom:524.056500px;}
.y96_c01270{bottom:524.184000px;}
.y97_c01270{bottom:524.779500px;}
.y98_c01270{bottom:524.980500px;}
.y99_c01270{bottom:525.174000px;}
.y9a_c01270{bottom:525.780000px;}
.y9b_c01270{bottom:526.042500px;}
.y9c_c01270{bottom:526.708500px;}
.y9d_c01270{bottom:527.236500px;}
.y93_c01270{bottom:562.026000px;}
.y88_c01270{bottom:630.712500px;}
.y89_c01270{bottom:631.164000px;}
.y8a_c01270{bottom:631.375500px;}
.y8b_c01270{bottom:631.537500px;}
.y8c_c01270{bottom:632.148000px;}
.y8d_c01270{bottom:632.536500px;}
.y8e_c01270{bottom:632.704500px;}
.y8f_c01270{bottom:632.874000px;}
.y90_c01270{bottom:633.091500px;}
.y91_c01270{bottom:633.478500px;}
.y92_c01270{bottom:634.035000px;}
.y7b_c01270{bottom:663.652500px;}
.y7c_c01270{bottom:663.894000px;}
.y7d_c01270{bottom:664.504500px;}
.y7e_c01270{bottom:665.193000px;}
.y7f_c01270{bottom:665.418000px;}
.y80_c01270{bottom:665.968500px;}
.y81_c01270{bottom:666.127500px;}
.y82_c01270{bottom:666.357000px;}
.y83_c01270{bottom:666.901500px;}
.y84_c01270{bottom:667.299000px;}
.y85_c01270{bottom:668.071500px;}
.y86_c01270{bottom:668.313000px;}
.y87_c01270{bottom:668.818500px;}
.y71_c01270{bottom:702.265500px;}
.y72_c01270{bottom:702.499500px;}
.y73_c01270{bottom:702.813000px;}
.y74_c01270{bottom:703.584000px;}
.y75_c01270{bottom:703.812000px;}
.y76_c01270{bottom:704.208000px;}
.y77_c01270{bottom:704.446500px;}
.y78_c01270{bottom:705.135000px;}
.y79_c01270{bottom:705.834000px;}
.y7a_c01270{bottom:706.461000px;}
.y6b_c01270{bottom:733.863000px;}
.y6c_c01270{bottom:735.207000px;}
.y6d_c01270{bottom:736.839000px;}
.y6e_c01270{bottom:737.547000px;}
.y6f_c01270{bottom:738.234000px;}
.y70_c01270{bottom:740.388000px;}
.y5d_c01270{bottom:769.500000px;}
.y5e_c01270{bottom:769.950000px;}
.y5f_c01270{bottom:770.592000px;}
.y60_c01270{bottom:771.256500px;}
.y61_c01270{bottom:771.475500px;}
.y62_c01270{bottom:772.150500px;}
.y63_c01270{bottom:772.585500px;}
.y64_c01270{bottom:773.028000px;}
.y65_c01270{bottom:773.373000px;}
.y66_c01270{bottom:774.147000px;}
.y67_c01270{bottom:774.579000px;}
.y68_c01270{bottom:774.913500px;}
.y69_c01270{bottom:775.812000px;}
.y6a_c01270{bottom:776.023500px;}
.y52_c01270{bottom:804.330000px;}
.y53_c01270{bottom:805.399500px;}
.y54_c01270{bottom:806.124000px;}
.y55_c01270{bottom:806.490000px;}
.y56_c01270{bottom:807.339000px;}
.y57_c01270{bottom:807.715500px;}
.y58_c01270{bottom:808.179000px;}
.y59_c01270{bottom:808.924500px;}
.y5a_c01270{bottom:810.640500px;}
.y5b_c01270{bottom:811.134000px;}
.y5c_c01270{bottom:811.491000px;}
.y45_c01270{bottom:840.240000px;}
.y46_c01270{bottom:840.435000px;}
.y47_c01270{bottom:840.738000px;}
.y48_c01270{bottom:841.431000px;}
.y49_c01270{bottom:842.211000px;}
.y4a_c01270{bottom:842.512500px;}
.y4b_c01270{bottom:842.823000px;}
.y4c_c01270{bottom:843.802500px;}
.y4d_c01270{bottom:844.113000px;}
.y4e_c01270{bottom:844.497000px;}
.y4f_c01270{bottom:845.319000px;}
.y50_c01270{bottom:845.907000px;}
.y51_c01270{bottom:846.217500px;}
.y39_c01270{bottom:873.456000px;}
.y3a_c01270{bottom:874.602000px;}
.y3b_c01270{bottom:875.112000px;}
.y3c_c01270{bottom:876.079500px;}
.y3d_c01270{bottom:877.423500px;}
.y3e_c01270{bottom:878.241000px;}
.y3f_c01270{bottom:879.079500px;}
.y40_c01270{bottom:879.585000px;}
.y41_c01270{bottom:880.402500px;}
.y42_c01270{bottom:881.400000px;}
.y43_c01270{bottom:881.910000px;}
.y44_c01270{bottom:883.080000px;}
.y30_c01270{bottom:908.826000px;}
.y31_c01270{bottom:909.580500px;}
.y32_c01270{bottom:911.613000px;}
.y33_c01270{bottom:912.163500px;}
.y34_c01270{bottom:914.026500px;}
.y35_c01270{bottom:915.922500px;}
.y36_c01270{bottom:917.625000px;}
.y37_c01270{bottom:918.171000px;}
.y38_c01270{bottom:919.896000px;}
.y24_c01270{bottom:947.974500px;}
.y25_c01270{bottom:948.664500px;}
.y26_c01270{bottom:949.068000px;}
.y27_c01270{bottom:949.945500px;}
.y28_c01270{bottom:950.250000px;}
.y29_c01270{bottom:951.249000px;}
.y2a_c01270{bottom:951.948000px;}
.y2b_c01270{bottom:952.147500px;}
.y2c_c01270{bottom:952.756500px;}
.y2d_c01270{bottom:953.041500px;}
.y2e_c01270{bottom:953.344500px;}
.y2f_c01270{bottom:953.949000px;}
.y19_c01270{bottom:978.486000px;}
.y1a_c01270{bottom:979.420500px;}
.y1b_c01270{bottom:980.029500px;}
.y1c_c01270{bottom:981.265500px;}
.y1d_c01270{bottom:982.977000px;}
.y1e_c01270{bottom:984.367500px;}
.y1f_c01270{bottom:984.829500px;}
.y20_c01270{bottom:985.941000px;}
.y21_c01270{bottom:986.692500px;}
.y22_c01270{bottom:987.165000px;}
.y23_c01270{bottom:988.872000px;}
.yb_c01270{bottom:1017.093000px;}
.yc_c01270{bottom:1017.358500px;}
.yd_c01270{bottom:1017.697500px;}
.ye_c01270{bottom:1017.966000px;}
.yf_c01270{bottom:1018.227000px;}
.y10_c01270{bottom:1018.488000px;}
.y11_c01270{bottom:1019.371500px;}
.y12_c01270{bottom:1019.641500px;}
.y13_c01270{bottom:1020.079500px;}
.y14_c01270{bottom:1020.441000px;}
.y15_c01270{bottom:1020.883500px;}
.y16_c01270{bottom:1021.152000px;}
.y17_c01270{bottom:1022.044500px;}
.y18_c01270{bottom:1023.036000px;}
.y3_c01270{bottom:1054.351500px;}
.y4_c01270{bottom:1055.292000px;}
.y5_c01270{bottom:1055.590500px;}
.y6_c01270{bottom:1055.908500px;}
.y7_c01270{bottom:1056.612000px;}
.y8_c01270{bottom:1057.380000px;}
.y9_c01270{bottom:1057.612500px;}
.ya_c01270{bottom:1058.017500px;}
.y2_c01270{bottom:1129.179000px;}
.y1_c01270{bottom:1191.775500px;}
.ha_c01270{height:36.000000px;}
.hb_c01270{height:54.000000px;}
.h4_c01270{height:66.000000px;}
.h6_c01270{height:72.000000px;}
.h3_c01270{height:78.000000px;}
.h5_c01270{height:84.000000px;}
.h7_c01270{height:90.000000px;}
.h8_c01270{height:96.000000px;}
.h9_c01270{height:100.146000px;}
.h2_c01270{height:102.000000px;}
.h1_c01270{height:1250.250000px;}
.h0_c01270{height:1250.370000px;}
.w1_c01270{width:888.750000px;}
.w0_c01270{width:889.050000px;}
.x0_c01270{left:0.000000px;}
.x11_c01270{left:134.812500px;}
.x2e_c01270{left:136.038000px;}
.x45_c01270{left:137.344500px;}
.x8f_c01270{left:138.505500px;}
.x94_c01270{left:139.539000px;}
.xb9_c01270{left:141.610500px;}
.x3c_c01270{left:157.527000px;}
.x9d_c01270{left:161.917500px;}
.xc0_c01270{left:166.590000px;}
.x12_c01270{left:168.016500px;}
.x60_c01270{left:170.766000px;}
.x88_c01270{left:172.338000px;}
.x2f_c01270{left:180.415500px;}
.x3d_c01270{left:191.277000px;}
.x95_c01270{left:194.130000px;}
.x1d_c01270{left:200.583000px;}
.x13_c01270{left:210.414000px;}
.x24_c01270{left:211.504500px;}
.x90_c01270{left:217.075500px;}
.x67_c01270{left:226.051500px;}
.x9e_c01270{left:227.508000px;}
.x46_c01270{left:234.559500px;}
.xba_c01270{left:238.842000px;}
.x9_c01270{left:242.301000px;}
.x14_c01270{left:243.933000px;}
.x35_c01270{left:245.700000px;}
.x72_c01270{left:247.153500px;}
.x96_c01270{left:248.670000px;}
.xb2_c01270{left:249.750000px;}
.x25_c01270{left:256.354500px;}
.x61_c01270{left:257.973000px;}
.x3e_c01270{left:268.272000px;}
.x77_c01270{left:269.560500px;}
.x15_c01270{left:276.604500px;}
.x56_c01270{left:279.229500px;}
.x89_c01270{left:282.235500px;}
.xaa_c01270{left:283.495500px;}
.x78_c01270{left:290.619000px;}
.x80_c01270{left:291.690000px;}
.xa4_c01270{left:293.755500px;}
.x3_c01270{left:297.810000px;}
.x30_c01270{left:300.013500px;}
.xab_c01270{left:304.825500px;}
.x16_c01270{left:309.288000px;}
.x4f_c01270{left:311.445000px;}
.x57_c01270{left:312.925500px;}
.x9f_c01270{left:315.787500px;}
.xbb_c01270{left:318.216000px;}
.x5a_c01270{left:323.839500px;}
.x79_c01270{left:325.177500px;}
.x1e_c01270{left:332.374500px;}
.x47_c01270{left:333.655500px;}
.x97_c01270{left:337.500000px;}
.x58_c01270{left:345.666000px;}
.x1_c01270{left:349.110000px;}
.x4_c01270{left:352.620000px;}
.x26_c01270{left:353.844000px;}
.x3f_c01270{left:354.910500px;}
.x62_c01270{left:356.272500px;}
.x81_c01270{left:357.850500px;}
.x7a_c01270{left:358.950000px;}
.x2_c01270{left:369.360000px;}
.xa5_c01270{left:371.785500px;}
.xa_c01270{left:376.740000px;}
.x73_c01270{left:379.989000px;}
.xa0_c01270{left:381.417000px;}
.x5_c01270{left:385.830000px;}
.x27_c01270{left:387.601500px;}
.x91_c01270{left:392.845500px;}
.xc1_c01270{left:394.740000px;}
.xbc_c01270{left:395.971500px;}
.x36_c01270{left:399.873000px;}
.x82_c01270{left:402.670500px;}
.xb3_c01270{left:404.460000px;}
.x48_c01270{left:410.860500px;}
.x74_c01270{left:412.116000px;}
.xa6_c01270{left:414.175500px;}
.xbd_c01270{left:415.950000px;}
.xb_c01270{left:419.421000px;}
.x40_c01270{left:422.983500px;}
.xac_c01270{left:426.595500px;}
.x5b_c01270{left:433.993500px;}
.x8a_c01270{left:436.926000px;}
.x31_c01270{left:442.020000px;}
.x49_c01270{left:445.113000px;}
.x59_c01270{left:448.255500px;}
.x17_c01270{left:453.480000px;}
.x1f_c01270{left:454.672500px;}
.x7b_c01270{left:458.577000px;}
.xc2_c01270{left:460.350000px;}
.xc_c01270{left:464.781000px;}
.x5c_c01270{left:466.671000px;}
.x6d_c01270{left:467.910000px;}
.x98_c01270{left:469.800000px;}
.x6_c01270{left:475.200000px;}
.x4a_c01270{left:487.266000px;}
.x50_c01270{left:488.598000px;}
.x63_c01270{left:489.876000px;}
.x28_c01270{left:498.559500px;}
.x68_c01270{left:500.658000px;}
.x83_c01270{left:503.376000px;}
.x18_c01270{left:508.248000px;}
.x37_c01270{left:510.282000px;}
.x75_c01270{left:513.093000px;}
.xad_c01270{left:515.155500px;}
.xbe_c01270{left:516.379500px;}
.x51_c01270{left:523.149000px;}
.x6e_c01270{left:524.340000px;}
.xc3_c01270{left:527.580000px;}
.x7_c01270{left:530.550000px;}
.x41_c01270{left:531.784500px;}
.x69_c01270{left:534.138000px;}
.x84_c01270{left:535.497000px;}
.xb4_c01270{left:537.300000px;}
.x38_c01270{left:543.988500px;}
.x92_c01270{left:546.205500px;}
.xae_c01270{left:548.095500px;}
.x8_c01270{left:553.230000px;}
.x4b_c01270{left:555.036000px;}
.x5d_c01270{left:557.377500px;}
.x99_c01270{left:558.630000px;}
.xd_c01270{left:565.218000px;}
.x42_c01270{left:566.314500px;}
.x6a_c01270{left:568.141500px;}
.x8b_c01270{left:569.233500px;}
.xbf_c01270{left:572.539500px;}
.x29_c01270{left:576.289500px;}
.x7c_c01270{left:578.968500px;}
.xaf_c01270{left:581.845500px;}
.xc4_c01270{left:583.200000px;}
.x20_c01270{left:586.950000px;}
.x9a_c01270{left:592.110000px;}
.x2a_c01270{left:598.455000px;}
.x52_c01270{left:600.601500px;}
.x19_c01270{left:608.710500px;}
.x6b_c01270{left:611.628000px;}
.x8c_c01270{left:613.497000px;}
.xb0_c01270{left:614.515500px;}
.x7d_c01270{left:622.726500px;}
.xa1_c01270{left:636.528000px;}
.xa7_c01270{left:638.005500px;}
.x1a_c01270{left:642.186000px;}
.x53_c01270{left:643.833000px;}
.x6f_c01270{left:645.570000px;}
.x8d_c01270{left:648.075000px;}
.x32_c01270{left:653.649000px;}
.x5e_c01270{left:655.653000px;}
.x64_c01270{left:657.027000px;}
.x39_c01270{left:664.983000px;}
.x21_c01270{left:666.310500px;}
.x76_c01270{left:667.804500px;}
.xe_c01270{left:674.830500px;}
.x54_c01270{left:677.304000px;}
.x85_c01270{left:679.404000px;}
.xb5_c01270{left:681.750000px;}
.x33_c01270{left:685.779000px;}
.x6c_c01270{left:689.115000px;}
.x7e_c01270{left:690.757500px;}
.x2b_c01270{left:697.812000px;}
.x3a_c01270{left:699.007500px;}
.x43_c01270{left:700.258500px;}
.x70_c01270{left:701.730000px;}
.xa2_c01270{left:703.492500px;}
.xf_c01270{left:708.039000px;}
.x4c_c01270{left:711.039000px;}
.x86_c01270{left:713.157000px;}
.xb1_c01270{left:716.305500px;}
.x22_c01270{left:719.992500px;}
.x7f_c01270{left:724.053000px;}
.x2c_c01270{left:731.562000px;}
.x1b_c01270{left:753.688500px;}
.x4d_c01270{left:755.850000px;}
.x93_c01270{left:757.885500px;}
.xb6_c01270{left:761.940000px;}
.x10_c01270{left:765.817500px;}
.x55_c01270{left:767.170500px;}
.x87_c01270{left:768.265500px;}
.x9b_c01270{left:770.310000px;}
.x3b_c01270{left:777.007500px;}
.xa3_c01270{left:781.525500px;}
.x34_c01270{left:787.219500px;}
.x4e_c01270{left:788.281500px;}
.x9c_c01270{left:791.640000px;}
.x2d_c01270{left:798.754500px;}
.x44_c01270{left:800.149500px;}
.x65_c01270{left:801.975000px;}
.xa8_c01270{left:804.595500px;}
.x71_c01270{left:813.510000px;}
.xb7_c01270{left:815.670000px;}
.x8e_c01270{left:830.355000px;}
.x5f_c01270{left:845.200500px;}
.xb8_c01270{left:849.690000px;}
.xa9_c01270{left:866.425500px;}
.x66_c01270{left:874.159500px;}
.x23_c01270{left:875.706000px;}
.x1c_c01270{left:877.596000px;}
@media print{
.v0_c01270{vertical-align:0.000000pt;}
.v1_c01270{vertical-align:3.685333pt;}
.ls0_c01270{letter-spacing:0.000000pt;}
.ws0_c01270{word-spacing:0.000000pt;}
._0_c01270{width:67.497095pt;}
.fs7_c01270{font-size:32.000000pt;}
.fs8_c01270{font-size:48.000000pt;}
.fs2_c01270{font-size:58.666667pt;}
.fs4_c01270{font-size:64.000000pt;}
.fs1_c01270{font-size:69.333333pt;}
.fs3_c01270{font-size:74.666667pt;}
.fs5_c01270{font-size:80.000000pt;}
.fs6_c01270{font-size:85.333333pt;}
.fs0_c01270{font-size:90.666667pt;}
.y0_c01270{bottom:0.000000pt;}
.ye2_c01270{bottom:71.881333pt;}
.yd9_c01270{bottom:101.521333pt;}
.yda_c01270{bottom:102.298667pt;}
.ydb_c01270{bottom:102.933333pt;}
.ydc_c01270{bottom:103.181333pt;}
.ydd_c01270{bottom:103.554667pt;}
.yde_c01270{bottom:103.714667pt;}
.ydf_c01270{bottom:103.980000pt;}
.ye0_c01270{bottom:104.517333pt;}
.ye1_c01270{bottom:104.966667pt;}
.yd8_c01270{bottom:132.878667pt;}
.yd7_c01270{bottom:149.360000pt;}
.yd6_c01270{bottom:184.250667pt;}
.yd5_c01270{bottom:213.713333pt;}
.yd4_c01270{bottom:245.285333pt;}
.yd3_c01270{bottom:245.517333pt;}
.yd2_c01270{bottom:246.072000pt;}
.yd1_c01270{bottom:246.548000pt;}
.yd0_c01270{bottom:246.868000pt;}
.ycf_c01270{bottom:247.100000pt;}
.yce_c01270{bottom:247.493333pt;}
.ycd_c01270{bottom:247.973333pt;}
.ycc_c01270{bottom:248.361333pt;}
.ycb_c01270{bottom:248.828000pt;}
.yca_c01270{bottom:249.456000pt;}
.yc9_c01270{bottom:249.922667pt;}
.yc8_c01270{bottom:250.080000pt;}
.yc7_c01270{bottom:278.793333pt;}
.yc3_c01270{bottom:305.277333pt;}
.yc4_c01270{bottom:306.150667pt;}
.yc5_c01270{bottom:306.673333pt;}
.yc6_c01270{bottom:307.558667pt;}
.yc2_c01270{bottom:340.216000pt;}
.yb6_c01270{bottom:369.596000pt;}
.yb7_c01270{bottom:369.748000pt;}
.yb8_c01270{bottom:370.236000pt;}
.yb9_c01270{bottom:370.769333pt;}
.yba_c01270{bottom:370.924000pt;}
.ybb_c01270{bottom:371.362667pt;}
.ybc_c01270{bottom:371.512000pt;}
.ybd_c01270{bottom:371.709333pt;}
.ybe_c01270{bottom:371.862667pt;}
.ybf_c01270{bottom:372.002667pt;}
.yc0_c01270{bottom:372.150667pt;}
.yc1_c01270{bottom:372.672000pt;}
.yaa_c01270{bottom:401.277333pt;}
.yab_c01270{bottom:402.096000pt;}
.yac_c01270{bottom:402.449333pt;}
.yad_c01270{bottom:402.688000pt;}
.yae_c01270{bottom:403.041333pt;}
.yaf_c01270{bottom:403.225333pt;}
.yb0_c01270{bottom:403.396000pt;}
.yb1_c01270{bottom:403.570667pt;}
.yb2_c01270{bottom:404.164000pt;}
.yb3_c01270{bottom:404.344000pt;}
.yb4_c01270{bottom:404.637333pt;}
.yb5_c01270{bottom:404.876000pt;}
.y9e_c01270{bottom:432.000000pt;}
.y9f_c01270{bottom:432.273333pt;}
.ya0_c01270{bottom:432.824000pt;}
.ya1_c01270{bottom:432.954667pt;}
.ya2_c01270{bottom:433.169333pt;}
.ya3_c01270{bottom:433.380000pt;}
.ya4_c01270{bottom:434.000000pt;}
.ya5_c01270{bottom:434.749333pt;}
.ya6_c01270{bottom:435.021333pt;}
.ya7_c01270{bottom:435.444000pt;}
.ya8_c01270{bottom:435.650667pt;}
.ya9_c01270{bottom:436.133333pt;}
.y94_c01270{bottom:465.360000pt;}
.y95_c01270{bottom:465.828000pt;}
.y96_c01270{bottom:465.941333pt;}
.y97_c01270{bottom:466.470667pt;}
.y98_c01270{bottom:466.649333pt;}
.y99_c01270{bottom:466.821333pt;}
.y9a_c01270{bottom:467.360000pt;}
.y9b_c01270{bottom:467.593333pt;}
.y9c_c01270{bottom:468.185333pt;}
.y9d_c01270{bottom:468.654667pt;}
.y93_c01270{bottom:499.578667pt;}
.y88_c01270{bottom:560.633333pt;}
.y89_c01270{bottom:561.034667pt;}
.y8a_c01270{bottom:561.222667pt;}
.y8b_c01270{bottom:561.366667pt;}
.y8c_c01270{bottom:561.909333pt;}
.y8d_c01270{bottom:562.254667pt;}
.y8e_c01270{bottom:562.404000pt;}
.y8f_c01270{bottom:562.554667pt;}
.y90_c01270{bottom:562.748000pt;}
.y91_c01270{bottom:563.092000pt;}
.y92_c01270{bottom:563.586667pt;}
.y7b_c01270{bottom:589.913333pt;}
.y7c_c01270{bottom:590.128000pt;}
.y7d_c01270{bottom:590.670667pt;}
.y7e_c01270{bottom:591.282667pt;}
.y7f_c01270{bottom:591.482667pt;}
.y80_c01270{bottom:591.972000pt;}
.y81_c01270{bottom:592.113333pt;}
.y82_c01270{bottom:592.317333pt;}
.y83_c01270{bottom:592.801333pt;}
.y84_c01270{bottom:593.154667pt;}
.y85_c01270{bottom:593.841333pt;}
.y86_c01270{bottom:594.056000pt;}
.y87_c01270{bottom:594.505333pt;}
.y71_c01270{bottom:624.236000pt;}
.y72_c01270{bottom:624.444000pt;}
.y73_c01270{bottom:624.722667pt;}
.y74_c01270{bottom:625.408000pt;}
.y75_c01270{bottom:625.610667pt;}
.y76_c01270{bottom:625.962667pt;}
.y77_c01270{bottom:626.174667pt;}
.y78_c01270{bottom:626.786667pt;}
.y79_c01270{bottom:627.408000pt;}
.y7a_c01270{bottom:627.965333pt;}
.y6b_c01270{bottom:652.322667pt;}
.y6c_c01270{bottom:653.517333pt;}
.y6d_c01270{bottom:654.968000pt;}
.y6e_c01270{bottom:655.597333pt;}
.y6f_c01270{bottom:656.208000pt;}
.y70_c01270{bottom:658.122667pt;}
.y5d_c01270{bottom:684.000000pt;}
.y5e_c01270{bottom:684.400000pt;}
.y5f_c01270{bottom:684.970667pt;}
.y60_c01270{bottom:685.561333pt;}
.y61_c01270{bottom:685.756000pt;}
.y62_c01270{bottom:686.356000pt;}
.y63_c01270{bottom:686.742667pt;}
.y64_c01270{bottom:687.136000pt;}
.y65_c01270{bottom:687.442667pt;}
.y66_c01270{bottom:688.130667pt;}
.y67_c01270{bottom:688.514667pt;}
.y68_c01270{bottom:688.812000pt;}
.y69_c01270{bottom:689.610667pt;}
.y6a_c01270{bottom:689.798667pt;}
.y52_c01270{bottom:714.960000pt;}
.y53_c01270{bottom:715.910667pt;}
.y54_c01270{bottom:716.554667pt;}
.y55_c01270{bottom:716.880000pt;}
.y56_c01270{bottom:717.634667pt;}
.y57_c01270{bottom:717.969333pt;}
.y58_c01270{bottom:718.381333pt;}
.y59_c01270{bottom:719.044000pt;}
.y5a_c01270{bottom:720.569333pt;}
.y5b_c01270{bottom:721.008000pt;}
.y5c_c01270{bottom:721.325333pt;}
.y45_c01270{bottom:746.880000pt;}
.y46_c01270{bottom:747.053333pt;}
.y47_c01270{bottom:747.322667pt;}
.y48_c01270{bottom:747.938667pt;}
.y49_c01270{bottom:748.632000pt;}
.y4a_c01270{bottom:748.900000pt;}
.y4b_c01270{bottom:749.176000pt;}
.y4c_c01270{bottom:750.046667pt;}
.y4d_c01270{bottom:750.322667pt;}
.y4e_c01270{bottom:750.664000pt;}
.y4f_c01270{bottom:751.394667pt;}
.y50_c01270{bottom:751.917333pt;}
.y51_c01270{bottom:752.193333pt;}
.y39_c01270{bottom:776.405333pt;}
.y3a_c01270{bottom:777.424000pt;}
.y3b_c01270{bottom:777.877333pt;}
.y3c_c01270{bottom:778.737333pt;}
.y3d_c01270{bottom:779.932000pt;}
.y3e_c01270{bottom:780.658667pt;}
.y3f_c01270{bottom:781.404000pt;}
.y40_c01270{bottom:781.853333pt;}
.y41_c01270{bottom:782.580000pt;}
.y42_c01270{bottom:783.466667pt;}
.y43_c01270{bottom:783.920000pt;}
.y44_c01270{bottom:784.960000pt;}
.y30_c01270{bottom:807.845333pt;}
.y31_c01270{bottom:808.516000pt;}
.y32_c01270{bottom:810.322667pt;}
.y33_c01270{bottom:810.812000pt;}
.y34_c01270{bottom:812.468000pt;}
.y35_c01270{bottom:814.153333pt;}
.y36_c01270{bottom:815.666667pt;}
.y37_c01270{bottom:816.152000pt;}
.y38_c01270{bottom:817.685333pt;}
.y24_c01270{bottom:842.644000pt;}
.y25_c01270{bottom:843.257333pt;}
.y26_c01270{bottom:843.616000pt;}
.y27_c01270{bottom:844.396000pt;}
.y28_c01270{bottom:844.666667pt;}
.y29_c01270{bottom:845.554667pt;}
.y2a_c01270{bottom:846.176000pt;}
.y2b_c01270{bottom:846.353333pt;}
.y2c_c01270{bottom:846.894667pt;}
.y2d_c01270{bottom:847.148000pt;}
.y2e_c01270{bottom:847.417333pt;}
.y2f_c01270{bottom:847.954667pt;}
.y19_c01270{bottom:869.765333pt;}
.y1a_c01270{bottom:870.596000pt;}
.y1b_c01270{bottom:871.137333pt;}
.y1c_c01270{bottom:872.236000pt;}
.y1d_c01270{bottom:873.757333pt;}
.y1e_c01270{bottom:874.993333pt;}
.y1f_c01270{bottom:875.404000pt;}
.y20_c01270{bottom:876.392000pt;}
.y21_c01270{bottom:877.060000pt;}
.y22_c01270{bottom:877.480000pt;}
.y23_c01270{bottom:878.997333pt;}
.yb_c01270{bottom:904.082667pt;}
.yc_c01270{bottom:904.318667pt;}
.yd_c01270{bottom:904.620000pt;}
.ye_c01270{bottom:904.858667pt;}
.yf_c01270{bottom:905.090667pt;}
.y10_c01270{bottom:905.322667pt;}
.y11_c01270{bottom:906.108000pt;}
.y12_c01270{bottom:906.348000pt;}
.y13_c01270{bottom:906.737333pt;}
.y14_c01270{bottom:907.058667pt;}
.y15_c01270{bottom:907.452000pt;}
.y16_c01270{bottom:907.690667pt;}
.y17_c01270{bottom:908.484000pt;}
.y18_c01270{bottom:909.365333pt;}
.y3_c01270{bottom:937.201333pt;}
.y4_c01270{bottom:938.037333pt;}
.y5_c01270{bottom:938.302667pt;}
.y6_c01270{bottom:938.585333pt;}
.y7_c01270{bottom:939.210667pt;}
.y8_c01270{bottom:939.893333pt;}
.y9_c01270{bottom:940.100000pt;}
.ya_c01270{bottom:940.460000pt;}
.y2_c01270{bottom:1003.714667pt;}
.y1_c01270{bottom:1059.356000pt;}
.ha_c01270{height:32.000000pt;}
.hb_c01270{height:48.000000pt;}
.h4_c01270{height:58.666667pt;}
.h6_c01270{height:64.000000pt;}
.h3_c01270{height:69.333333pt;}
.h5_c01270{height:74.666667pt;}
.h7_c01270{height:80.000000pt;}
.h8_c01270{height:85.333333pt;}
.h9_c01270{height:89.018667pt;}
.h2_c01270{height:90.666667pt;}
.h1_c01270{height:1111.333333pt;}
.h0_c01270{height:1111.440000pt;}
.w1_c01270{width:790.000000pt;}
.w0_c01270{width:790.266667pt;}
.x0_c01270{left:0.000000pt;}
.x11_c01270{left:119.833333pt;}
.x2e_c01270{left:120.922667pt;}
.x45_c01270{left:122.084000pt;}
.x8f_c01270{left:123.116000pt;}
.x94_c01270{left:124.034667pt;}
.xb9_c01270{left:125.876000pt;}
.x3c_c01270{left:140.024000pt;}
.x9d_c01270{left:143.926667pt;}
.xc0_c01270{left:148.080000pt;}
.x12_c01270{left:149.348000pt;}
.x60_c01270{left:151.792000pt;}
.x88_c01270{left:153.189333pt;}
.x2f_c01270{left:160.369333pt;}
.x3d_c01270{left:170.024000pt;}
.x95_c01270{left:172.560000pt;}
.x1d_c01270{left:178.296000pt;}
.x13_c01270{left:187.034667pt;}
.x24_c01270{left:188.004000pt;}
.x90_c01270{left:192.956000pt;}
.x67_c01270{left:200.934667pt;}
.x9e_c01270{left:202.229333pt;}
.x46_c01270{left:208.497333pt;}
.xba_c01270{left:212.304000pt;}
.x9_c01270{left:215.378667pt;}
.x14_c01270{left:216.829333pt;}
.x35_c01270{left:218.400000pt;}
.x72_c01270{left:219.692000pt;}
.x96_c01270{left:221.040000pt;}
.xb2_c01270{left:222.000000pt;}
.x25_c01270{left:227.870667pt;}
.x61_c01270{left:229.309333pt;}
.x3e_c01270{left:238.464000pt;}
.x77_c01270{left:239.609333pt;}
.x15_c01270{left:245.870667pt;}
.x56_c01270{left:248.204000pt;}
.x89_c01270{left:250.876000pt;}
.xaa_c01270{left:251.996000pt;}
.x78_c01270{left:258.328000pt;}
.x80_c01270{left:259.280000pt;}
.xa4_c01270{left:261.116000pt;}
.x3_c01270{left:264.720000pt;}
.x30_c01270{left:266.678667pt;}
.xab_c01270{left:270.956000pt;}
.x16_c01270{left:274.922667pt;}
.x4f_c01270{left:276.840000pt;}
.x57_c01270{left:278.156000pt;}
.x9f_c01270{left:280.700000pt;}
.xbb_c01270{left:282.858667pt;}
.x5a_c01270{left:287.857333pt;}
.x79_c01270{left:289.046667pt;}
.x1e_c01270{left:295.444000pt;}
.x47_c01270{left:296.582667pt;}
.x97_c01270{left:300.000000pt;}
.x58_c01270{left:307.258667pt;}
.x1_c01270{left:310.320000pt;}
.x4_c01270{left:313.440000pt;}
.x26_c01270{left:314.528000pt;}
.x3f_c01270{left:315.476000pt;}
.x62_c01270{left:316.686667pt;}
.x81_c01270{left:318.089333pt;}
.x7a_c01270{left:319.066667pt;}
.x2_c01270{left:328.320000pt;}
.xa5_c01270{left:330.476000pt;}
.xa_c01270{left:334.880000pt;}
.x73_c01270{left:337.768000pt;}
.xa0_c01270{left:339.037333pt;}
.x5_c01270{left:342.960000pt;}
.x27_c01270{left:344.534667pt;}
.x91_c01270{left:349.196000pt;}
.xc1_c01270{left:350.880000pt;}
.xbc_c01270{left:351.974667pt;}
.x36_c01270{left:355.442667pt;}
.x82_c01270{left:357.929333pt;}
.xb3_c01270{left:359.520000pt;}
.x48_c01270{left:365.209333pt;}
.x74_c01270{left:366.325333pt;}
.xa6_c01270{left:368.156000pt;}
.xbd_c01270{left:369.733333pt;}
.xb_c01270{left:372.818667pt;}
.x40_c01270{left:375.985333pt;}
.xac_c01270{left:379.196000pt;}
.x5b_c01270{left:385.772000pt;}
.x8a_c01270{left:388.378667pt;}
.x31_c01270{left:392.906667pt;}
.x49_c01270{left:395.656000pt;}
.x59_c01270{left:398.449333pt;}
.x17_c01270{left:403.093333pt;}
.x1f_c01270{left:404.153333pt;}
.x7b_c01270{left:407.624000pt;}
.xc2_c01270{left:409.200000pt;}
.xc_c01270{left:413.138667pt;}
.x5c_c01270{left:414.818667pt;}
.x6d_c01270{left:415.920000pt;}
.x98_c01270{left:417.600000pt;}
.x6_c01270{left:422.400000pt;}
.x4a_c01270{left:433.125333pt;}
.x50_c01270{left:434.309333pt;}
.x63_c01270{left:435.445333pt;}
.x28_c01270{left:443.164000pt;}
.x68_c01270{left:445.029333pt;}
.x83_c01270{left:447.445333pt;}
.x18_c01270{left:451.776000pt;}
.x37_c01270{left:453.584000pt;}
.x75_c01270{left:456.082667pt;}
.xad_c01270{left:457.916000pt;}
.xbe_c01270{left:459.004000pt;}
.x51_c01270{left:465.021333pt;}
.x6e_c01270{left:466.080000pt;}
.xc3_c01270{left:468.960000pt;}
.x7_c01270{left:471.600000pt;}
.x41_c01270{left:472.697333pt;}
.x69_c01270{left:474.789333pt;}
.x84_c01270{left:475.997333pt;}
.xb4_c01270{left:477.600000pt;}
.x38_c01270{left:483.545333pt;}
.x92_c01270{left:485.516000pt;}
.xae_c01270{left:487.196000pt;}
.x8_c01270{left:491.760000pt;}
.x4b_c01270{left:493.365333pt;}
.x5d_c01270{left:495.446667pt;}
.x99_c01270{left:496.560000pt;}
.xd_c01270{left:502.416000pt;}
.x42_c01270{left:503.390667pt;}
.x6a_c01270{left:505.014667pt;}
.x8b_c01270{left:505.985333pt;}
.xbf_c01270{left:508.924000pt;}
.x29_c01270{left:512.257333pt;}
.x7c_c01270{left:514.638667pt;}
.xaf_c01270{left:517.196000pt;}
.xc4_c01270{left:518.400000pt;}
.x20_c01270{left:521.733333pt;}
.x9a_c01270{left:526.320000pt;}
.x2a_c01270{left:531.960000pt;}
.x52_c01270{left:533.868000pt;}
.x19_c01270{left:541.076000pt;}
.x6b_c01270{left:543.669333pt;}
.x8c_c01270{left:545.330667pt;}
.xb0_c01270{left:546.236000pt;}
.x7d_c01270{left:553.534667pt;}
.xa1_c01270{left:565.802667pt;}
.xa7_c01270{left:567.116000pt;}
.x1a_c01270{left:570.832000pt;}
.x53_c01270{left:572.296000pt;}
.x6f_c01270{left:573.840000pt;}
.x8d_c01270{left:576.066667pt;}
.x32_c01270{left:581.021333pt;}
.x5e_c01270{left:582.802667pt;}
.x64_c01270{left:584.024000pt;}
.x39_c01270{left:591.096000pt;}
.x21_c01270{left:592.276000pt;}
.x76_c01270{left:593.604000pt;}
.xe_c01270{left:599.849333pt;}
.x54_c01270{left:602.048000pt;}
.x85_c01270{left:603.914667pt;}
.xb5_c01270{left:606.000000pt;}
.x33_c01270{left:609.581333pt;}
.x6c_c01270{left:612.546667pt;}
.x7e_c01270{left:614.006667pt;}
.x2b_c01270{left:620.277333pt;}
.x3a_c01270{left:621.340000pt;}
.x43_c01270{left:622.452000pt;}
.x70_c01270{left:623.760000pt;}
.xa2_c01270{left:625.326667pt;}
.xf_c01270{left:629.368000pt;}
.x4c_c01270{left:632.034667pt;}
.x86_c01270{left:633.917333pt;}
.xb1_c01270{left:636.716000pt;}
.x22_c01270{left:639.993333pt;}
.x7f_c01270{left:643.602667pt;}
.x2c_c01270{left:650.277333pt;}
.x1b_c01270{left:669.945333pt;}
.x4d_c01270{left:671.866667pt;}
.x93_c01270{left:673.676000pt;}
.xb6_c01270{left:677.280000pt;}
.x10_c01270{left:680.726667pt;}
.x55_c01270{left:681.929333pt;}
.x87_c01270{left:682.902667pt;}
.x9b_c01270{left:684.720000pt;}
.x3b_c01270{left:690.673333pt;}
.xa3_c01270{left:694.689333pt;}
.x34_c01270{left:699.750667pt;}
.x4e_c01270{left:700.694667pt;}
.x9c_c01270{left:703.680000pt;}
.x2d_c01270{left:710.004000pt;}
.x44_c01270{left:711.244000pt;}
.x65_c01270{left:712.866667pt;}
.xa8_c01270{left:715.196000pt;}
.x71_c01270{left:723.120000pt;}
.xb7_c01270{left:725.040000pt;}
.x8e_c01270{left:738.093333pt;}
.x5f_c01270{left:751.289333pt;}
.xb8_c01270{left:755.280000pt;}
.xa9_c01270{left:770.156000pt;}
.x66_c01270{left:777.030667pt;}
.x23_c01270{left:778.405333pt;}
.x1c_c01270{left:780.085333pt;}
}





/* 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_c01271 {
    display:none;
  }
  .loading-indicator_c01271.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01271 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_c01271 { 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_c01271" -> "#page-container .classname_c01271")
 */
.pf_c01271 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01271 { /* 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_c01271.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01271 { /* 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_c01271 { /* 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_c01271 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01271 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01271 {overflow:visible;}
  }
}
.c_c01271 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01271 { /* 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_c01271:after { /* webkit #35443 */
  content: '';
}
.t_c01271:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01271 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 */
}
.__c01271 { /* 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_c01271 { /* info for Javascript */
  display:none;
}
.l_c01271 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01271 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01271 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01271: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_c01271 {
    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_c01271.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01271.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_c01271 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01271{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01271;src:url('chunks/assets/font_170a54771682c73350741ec9.woff2')format("woff");}.ff1_c01271{font-family:ff1_c01271;line-height:1.000000;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;}
.m14_c01271{transform:matrix(0.163879,0.002294,-0.003500,0.249976,0,0);-ms-transform:matrix(0.163879,0.002294,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.163879,0.002294,-0.003500,0.249976,0,0);}
.m13_c01271{transform:matrix(0.241581,0.003382,-0.003500,0.249976,0,0);-ms-transform:matrix(0.241581,0.003382,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.241581,0.003382,-0.003500,0.249976,0,0);}
.me_c01271{transform:matrix(0.248217,0.001986,-0.002000,0.249992,0,0);-ms-transform:matrix(0.248217,0.001986,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.248217,0.001986,-0.002000,0.249992,0,0);}
.m2_c01271{transform:matrix(0.249250,0.005483,-0.005499,0.249940,0,0);-ms-transform:matrix(0.249250,0.005483,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.249250,0.005483,-0.005499,0.249940,0,0);}
.m10_c01271{transform:matrix(0.259050,0.003627,-0.003500,0.249976,0,0);-ms-transform:matrix(0.259050,0.003627,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.259050,0.003627,-0.003500,0.249976,0,0);}
.m15_c01271{transform:matrix(0.284907,0.003989,-0.003500,0.249976,0,0);-ms-transform:matrix(0.284907,0.003989,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.284907,0.003989,-0.003500,0.249976,0,0);}
.ma_c01271{transform:matrix(0.322815,0.002583,-0.002000,0.249992,0,0);-ms-transform:matrix(0.322815,0.002583,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.322815,0.002583,-0.002000,0.249992,0,0);}
.m11_c01271{transform:matrix(0.329778,0.004617,-0.003500,0.249976,0,0);-ms-transform:matrix(0.329778,0.004617,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.329778,0.004617,-0.003500,0.249976,0,0);}
.mf_c01271{transform:matrix(0.351651,0.004923,-0.003500,0.249976,0,0);-ms-transform:matrix(0.351651,0.004923,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.351651,0.004923,-0.003500,0.249976,0,0);}
.m6_c01271{transform:matrix(0.369661,0.008133,-0.005499,0.249940,0,0);-ms-transform:matrix(0.369661,0.008133,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.369661,0.008133,-0.005499,0.249940,0,0);}
.m0_c01271{transform:matrix(0.381643,0.008396,-0.005499,0.249940,0,0);-ms-transform:matrix(0.381643,0.008396,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.381643,0.008396,-0.005499,0.249940,0,0);}
.m12_c01271{transform:matrix(0.388107,0.005433,-0.003500,0.249976,0,0);-ms-transform:matrix(0.388107,0.005433,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.388107,0.005433,-0.003500,0.249976,0,0);}
.mb_c01271{transform:matrix(0.401292,0.003210,-0.002000,0.249992,0,0);-ms-transform:matrix(0.401292,0.003210,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.401292,0.003210,-0.002000,0.249992,0,0);}
.m16_c01271{transform:matrix(0.449220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449220,0.000000,0.000000,0.250000,0,0);}
.m5_c01271{transform:matrix(0.458284,0.010082,-0.005499,0.249940,0,0);-ms-transform:matrix(0.458284,0.010082,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.458284,0.010082,-0.005499,0.249940,0,0);}
.m3_c01271{transform:matrix(0.464478,0.010219,-0.005499,0.249940,0,0);-ms-transform:matrix(0.464478,0.010219,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.464478,0.010219,-0.005499,0.249940,0,0);}
.md_c01271{transform:matrix(0.510734,0.004086,-0.002000,0.249992,0,0);-ms-transform:matrix(0.510734,0.004086,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.510734,0.004086,-0.002000,0.249992,0,0);}
.m1_c01271{transform:matrix(0.514730,0.011324,-0.005499,0.249940,0,0);-ms-transform:matrix(0.514730,0.011324,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.514730,0.011324,-0.005499,0.249940,0,0);}
.m9_c01271{transform:matrix(0.581141,0.004649,-0.002000,0.249992,0,0);-ms-transform:matrix(0.581141,0.004649,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.581141,0.004649,-0.002000,0.249992,0,0);}
.m7_c01271{transform:matrix(0.684470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.684470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.684470,0.000000,0.000000,0.250000,0,0);}
.mc_c01271{transform:matrix(0.688858,0.005511,-0.002000,0.249992,0,0);-ms-transform:matrix(0.688858,0.005511,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.688858,0.005511,-0.002000,0.249992,0,0);}
.m4_c01271{transform:matrix(0.862361,0.018972,-0.005499,0.249940,0,0);-ms-transform:matrix(0.862361,0.018972,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.862361,0.018972,-0.005499,0.249940,0,0);}
.m8_c01271{transform:matrix(2.057305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.057305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.057305,0.000000,0.000000,0.250000,0,0);}
.v0_c01271{vertical-align:0.000000px;}
.ls0_c01271{letter-spacing:0.000000px;}
.sc__c01271{text-shadow:none;}
.sc0_c01271{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__c01271{-webkit-text-stroke:0px transparent;}
.sc0_c01271{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01271{word-spacing:0.000000px;}
.fc0_c01271{color:transparent;}
.fs4_c01271{font-size:18.000000px;}
.fs1_c01271{font-size:54.000000px;}
.fs0_c01271{font-size:72.017422px;}
.fs2_c01271{font-size:78.002496px;}
.fs3_c01271{font-size:84.008232px;}
.y0_c01271{bottom:0.000000px;}
.y16_c01271{bottom:502.470000px;}
.y15_c01271{bottom:517.143453px;}
.y14_c01271{bottom:517.314078px;}
.y13_c01271{bottom:518.688255px;}
.y12_c01271{bottom:519.233310px;}
.y11_c01271{bottom:519.640920px;}
.y10_c01271{bottom:521.006046px;}
.yf_c01271{bottom:521.793000px;}
.ye_c01271{bottom:553.642296px;}
.yd_c01271{bottom:554.475144px;}
.yc_c01271{bottom:554.884932px;}
.yb_c01271{bottom:555.183612px;}
.ya_c01271{bottom:556.056324px;}
.y9_c01271{bottom:556.561500px;}
.y8_c01271{bottom:1100.407500px;}
.y7_c01271{bottom:1112.037051px;}
.y6_c01271{bottom:1112.780805px;}
.y5_c01271{bottom:1114.811922px;}
.y4_c01271{bottom:1116.178980px;}
.y3_c01271{bottom:1116.437073px;}
.y2_c01271{bottom:1116.553497px;}
.y1_c01271{bottom:1117.810500px;}
.h6_c01271{height:18.000000px;}
.h3_c01271{height:54.000000px;}
.h2_c01271{height:72.017422px;}
.h4_c01271{height:78.002496px;}
.h5_c01271{height:84.008232px;}
.h1_c01271{height:1250.250000px;}
.h0_c01271{height:1250.370000px;}
.w1_c01271{width:888.750000px;}
.w0_c01271{width:889.050000px;}
.x0_c01271{left:0.000000px;}
.x8_c01271{left:241.650000px;}
.x1_c01271{left:248.986500px;}
.x9_c01271{left:302.940000px;}
.x2_c01271{left:306.123000px;}
.x3_c01271{left:311.415000px;}
.x4_c01271{left:323.146500px;}
.xa_c01271{left:338.913000px;}
.x15_c01271{left:354.780000px;}
.xf_c01271{left:361.764000px;}
.x5_c01271{left:385.285500px;}
.xb_c01271{left:402.060000px;}
.x10_c01271{left:459.273000px;}
.x6_c01271{left:477.609000px;}
.x11_c01271{left:488.388000px;}
.x7_c01271{left:511.416000px;}
.x12_c01271{left:527.320500px;}
.xc_c01271{left:548.484000px;}
.xd_c01271{left:599.707500px;}
.x13_c01271{left:625.476000px;}
.x14_c01271{left:637.663500px;}
.xe_c01271{left:703.813500px;}
@media print{
.v0_c01271{vertical-align:0.000000pt;}
.ls0_c01271{letter-spacing:0.000000pt;}
.ws0_c01271{word-spacing:0.000000pt;}
.fs4_c01271{font-size:16.000000pt;}
.fs1_c01271{font-size:48.000000pt;}
.fs0_c01271{font-size:64.015486pt;}
.fs2_c01271{font-size:69.335552pt;}
.fs3_c01271{font-size:74.673984pt;}
.y0_c01271{bottom:0.000000pt;}
.y16_c01271{bottom:446.640000pt;}
.y15_c01271{bottom:459.683069pt;}
.y14_c01271{bottom:459.834736pt;}
.y13_c01271{bottom:461.056227pt;}
.y12_c01271{bottom:461.540720pt;}
.y11_c01271{bottom:461.903040pt;}
.y10_c01271{bottom:463.116485pt;}
.yf_c01271{bottom:463.816000pt;}
.ye_c01271{bottom:492.126485pt;}
.yd_c01271{bottom:492.866795pt;}
.yc_c01271{bottom:493.231051pt;}
.yb_c01271{bottom:493.496544pt;}
.ya_c01271{bottom:494.272288pt;}
.y9_c01271{bottom:494.721333pt;}
.y8_c01271{bottom:978.140000pt;}
.y7_c01271{bottom:988.477379pt;}
.y6_c01271{bottom:989.138493pt;}
.y5_c01271{bottom:990.943931pt;}
.y4_c01271{bottom:992.159093pt;}
.y3_c01271{bottom:992.388509pt;}
.y2_c01271{bottom:992.491997pt;}
.y1_c01271{bottom:993.609333pt;}
.h6_c01271{height:16.000000pt;}
.h3_c01271{height:48.000000pt;}
.h2_c01271{height:64.015486pt;}
.h4_c01271{height:69.335552pt;}
.h5_c01271{height:74.673984pt;}
.h1_c01271{height:1111.333333pt;}
.h0_c01271{height:1111.440000pt;}
.w1_c01271{width:790.000000pt;}
.w0_c01271{width:790.266667pt;}
.x0_c01271{left:0.000000pt;}
.x8_c01271{left:214.800000pt;}
.x1_c01271{left:221.321333pt;}
.x9_c01271{left:269.280000pt;}
.x2_c01271{left:272.109333pt;}
.x3_c01271{left:276.813333pt;}
.x4_c01271{left:287.241333pt;}
.xa_c01271{left:301.256000pt;}
.x15_c01271{left:315.360000pt;}
.xf_c01271{left:321.568000pt;}
.x5_c01271{left:342.476000pt;}
.xb_c01271{left:357.386667pt;}
.x10_c01271{left:408.242667pt;}
.x6_c01271{left:424.541333pt;}
.x11_c01271{left:434.122667pt;}
.x7_c01271{left:454.592000pt;}
.x12_c01271{left:468.729333pt;}
.xc_c01271{left:487.541333pt;}
.xd_c01271{left:533.073333pt;}
.x13_c01271{left:555.978667pt;}
.x14_c01271{left:566.812000pt;}
.xe_c01271{left:625.612000pt;}
}





/* 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_c01272 {
    display:none;
  }
  .loading-indicator_c01272.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01272 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_c01272 { 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_c01272" -> "#page-container .classname_c01272")
 */
.pf_c01272 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01272 { /* 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_c01272.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01272 { /* 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_c01272 { /* 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_c01272 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01272 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01272 {overflow:visible;}
  }
}
.c_c01272 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01272 { /* 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_c01272:after { /* webkit #35443 */
  content: '';
}
.t_c01272:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01272 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 */
}
.__c01272 { /* 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_c01272 { /* info for Javascript */
  display:none;
}
.l_c01272 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01272 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01272 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01272: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_c01272 {
    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_c01272.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01272.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_c01272 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01272{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01272;src:url('chunks/assets/font_cfe63ee56e9e10a97d33a3db.woff2')format("woff");}.ff1_c01272{font-family:ff1_c01272;line-height:1.000000;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;}
.m120_c01272{transform:matrix(0.015906,0.000334,-0.005249,0.249945,0,0);-ms-transform:matrix(0.015906,0.000334,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.015906,0.000334,-0.005249,0.249945,0,0);}
.m116_c01272{transform:matrix(0.065586,0.001377,-0.005249,0.249945,0,0);-ms-transform:matrix(0.065586,0.001377,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.065586,0.001377,-0.005249,0.249945,0,0);}
.m6e_c01272{transform:matrix(0.113707,0.002502,-0.005499,0.249940,0,0);-ms-transform:matrix(0.113707,0.002502,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.113707,0.002502,-0.005499,0.249940,0,0);}
.m11e_c01272{transform:matrix(0.115799,0.002432,-0.005249,0.249945,0,0);-ms-transform:matrix(0.115799,0.002432,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.115799,0.002432,-0.005249,0.249945,0,0);}
.m0_c01272{transform:matrix(0.151620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151620,0.000000,0.000000,0.250000,0,0);}
.mcf_c01272{transform:matrix(0.161047,0.004509,-0.006997,0.249902,0,0);-ms-transform:matrix(0.161047,0.004509,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.161047,0.004509,-0.006997,0.249902,0,0);}
.m73_c01272{transform:matrix(0.167834,0.003692,-0.005499,0.249940,0,0);-ms-transform:matrix(0.167834,0.003692,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.167834,0.003692,-0.005499,0.249940,0,0);}
.m95_c01272{transform:matrix(0.170542,0.004434,-0.006498,0.249916,0,0);-ms-transform:matrix(0.170542,0.004434,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.170542,0.004434,-0.006498,0.249916,0,0);}
.m105_c01272{transform:matrix(0.173637,0.005383,-0.007746,0.249880,0,0);-ms-transform:matrix(0.173637,0.005383,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.173637,0.005383,-0.007746,0.249880,0,0);}
.m10a_c01272{transform:matrix(0.174331,0.005404,-0.007746,0.249880,0,0);-ms-transform:matrix(0.174331,0.005404,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.174331,0.005404,-0.007746,0.249880,0,0);}
.m107_c01272{transform:matrix(0.174361,0.005405,-0.007746,0.249880,0,0);-ms-transform:matrix(0.174361,0.005405,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.174361,0.005405,-0.007746,0.249880,0,0);}
.m103_c01272{transform:matrix(0.179844,0.005575,-0.007746,0.249880,0,0);-ms-transform:matrix(0.179844,0.005575,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.179844,0.005575,-0.007746,0.249880,0,0);}
.mc4_c01272{transform:matrix(0.181814,0.005091,-0.006997,0.249902,0,0);-ms-transform:matrix(0.181814,0.005091,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.181814,0.005091,-0.006997,0.249902,0,0);}
.mf0_c01272{transform:matrix(0.187740,0.005820,-0.007746,0.249880,0,0);-ms-transform:matrix(0.187740,0.005820,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.187740,0.005820,-0.007746,0.249880,0,0);}
.m104_c01272{transform:matrix(0.189179,0.005865,-0.007746,0.249880,0,0);-ms-transform:matrix(0.189179,0.005865,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.189179,0.005865,-0.007746,0.249880,0,0);}
.mf3_c01272{transform:matrix(0.189654,0.005879,-0.007746,0.249880,0,0);-ms-transform:matrix(0.189654,0.005879,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.189654,0.005879,-0.007746,0.249880,0,0);}
.m18_c01272{transform:matrix(0.193716,0.003874,-0.004999,0.249950,0,0);-ms-transform:matrix(0.193716,0.003874,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.193716,0.003874,-0.004999,0.249950,0,0);}
.m108_c01272{transform:matrix(0.196426,0.006089,-0.007746,0.249880,0,0);-ms-transform:matrix(0.196426,0.006089,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.196426,0.006089,-0.007746,0.249880,0,0);}
.mc7_c01272{transform:matrix(0.200217,0.005606,-0.006997,0.249902,0,0);-ms-transform:matrix(0.200217,0.005606,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.200217,0.005606,-0.006997,0.249902,0,0);}
.m10e_c01272{transform:matrix(0.201369,0.007257,-0.009003,0.249838,0,0);-ms-transform:matrix(0.201369,0.007257,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.201369,0.007257,-0.009003,0.249838,0,0);}
.mee_c01272{transform:matrix(0.201408,0.006244,-0.007746,0.249880,0,0);-ms-transform:matrix(0.201408,0.006244,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.201408,0.006244,-0.007746,0.249880,0,0);}
.m10c_c01272{transform:matrix(0.202149,0.007285,-0.009003,0.249838,0,0);-ms-transform:matrix(0.202149,0.007285,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.202149,0.007285,-0.009003,0.249838,0,0);}
.mf9_c01272{transform:matrix(0.202193,0.006268,-0.007746,0.249880,0,0);-ms-transform:matrix(0.202193,0.006268,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.202193,0.006268,-0.007746,0.249880,0,0);}
.meb_c01272{transform:matrix(0.202203,0.006268,-0.007746,0.249880,0,0);-ms-transform:matrix(0.202203,0.006268,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.202203,0.006268,-0.007746,0.249880,0,0);}
.m8f_c01272{transform:matrix(0.203231,0.005284,-0.006498,0.249916,0,0);-ms-transform:matrix(0.203231,0.005284,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.203231,0.005284,-0.006498,0.249916,0,0);}
.m72_c01272{transform:matrix(0.203461,0.004476,-0.005499,0.249940,0,0);-ms-transform:matrix(0.203461,0.004476,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.203461,0.004476,-0.005499,0.249940,0,0);}
.mc2_c01272{transform:matrix(0.203525,0.005699,-0.006997,0.249902,0,0);-ms-transform:matrix(0.203525,0.005699,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.203525,0.005699,-0.006997,0.249902,0,0);}
.mcb_c01272{transform:matrix(0.203895,0.005709,-0.006997,0.249902,0,0);-ms-transform:matrix(0.203895,0.005709,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.203895,0.005709,-0.006997,0.249902,0,0);}
.m9a_c01272{transform:matrix(0.204261,0.005311,-0.006498,0.249916,0,0);-ms-transform:matrix(0.204261,0.005311,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.204261,0.005311,-0.006498,0.249916,0,0);}
.mc9_c01272{transform:matrix(0.205010,0.005740,-0.006997,0.249902,0,0);-ms-transform:matrix(0.205010,0.005740,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.205010,0.005740,-0.006997,0.249902,0,0);}
.m13_c01272{transform:matrix(0.205139,0.004103,-0.004999,0.249950,0,0);-ms-transform:matrix(0.205139,0.004103,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.205139,0.004103,-0.004999,0.249950,0,0);}
.mf1_c01272{transform:matrix(0.205151,0.006360,-0.007746,0.249880,0,0);-ms-transform:matrix(0.205151,0.006360,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.205151,0.006360,-0.007746,0.249880,0,0);}
.m92_c01272{transform:matrix(0.205291,0.005338,-0.006498,0.249916,0,0);-ms-transform:matrix(0.205291,0.005338,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.205291,0.005338,-0.006498,0.249916,0,0);}
.me9_c01272{transform:matrix(0.205356,0.006366,-0.007746,0.249880,0,0);-ms-transform:matrix(0.205356,0.006366,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.205356,0.006366,-0.007746,0.249880,0,0);}
.m106_c01272{transform:matrix(0.206331,0.006396,-0.007746,0.249880,0,0);-ms-transform:matrix(0.206331,0.006396,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.206331,0.006396,-0.007746,0.249880,0,0);}
.m90_c01272{transform:matrix(0.206755,0.005376,-0.006498,0.249916,0,0);-ms-transform:matrix(0.206755,0.005376,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.206755,0.005376,-0.006498,0.249916,0,0);}
.m113_c01272{transform:matrix(0.207146,0.007465,-0.009003,0.249838,0,0);-ms-transform:matrix(0.207146,0.007465,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.207146,0.007465,-0.009003,0.249838,0,0);}
.mf2_c01272{transform:matrix(0.207325,0.006427,-0.007746,0.249880,0,0);-ms-transform:matrix(0.207325,0.006427,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.207325,0.006427,-0.007746,0.249880,0,0);}
.mac_c01272{transform:matrix(0.207373,0.006014,-0.007247,0.249895,0,0);-ms-transform:matrix(0.207373,0.006014,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.207373,0.006014,-0.007247,0.249895,0,0);}
.m110_c01272{transform:matrix(0.207490,0.007477,-0.009003,0.249838,0,0);-ms-transform:matrix(0.207490,0.007477,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.207490,0.007477,-0.009003,0.249838,0,0);}
.mf4_c01272{transform:matrix(0.208250,0.006456,-0.007746,0.249880,0,0);-ms-transform:matrix(0.208250,0.006456,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.208250,0.006456,-0.007746,0.249880,0,0);}
.mbc_c01272{transform:matrix(0.209542,0.006077,-0.007247,0.249895,0,0);-ms-transform:matrix(0.209542,0.006077,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.209542,0.006077,-0.007247,0.249895,0,0);}
.m109_c01272{transform:matrix(0.209844,0.006505,-0.007746,0.249880,0,0);-ms-transform:matrix(0.209844,0.006505,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.209844,0.006505,-0.007746,0.249880,0,0);}
.m98_c01272{transform:matrix(0.211628,0.005502,-0.006498,0.249916,0,0);-ms-transform:matrix(0.211628,0.005502,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.211628,0.005502,-0.006498,0.249916,0,0);}
.m53_c01272{transform:matrix(0.212353,0.004247,-0.004999,0.249950,0,0);-ms-transform:matrix(0.212353,0.004247,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.212353,0.004247,-0.004999,0.249950,0,0);}
.mfc_c01272{transform:matrix(0.212508,0.006588,-0.007746,0.249880,0,0);-ms-transform:matrix(0.212508,0.006588,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.212508,0.006588,-0.007746,0.249880,0,0);}
.m7c_c01272{transform:matrix(0.212706,0.003191,-0.003750,0.249972,0,0);-ms-transform:matrix(0.212706,0.003191,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.212706,0.003191,-0.003750,0.249972,0,0);}
.m89_c01272{transform:matrix(0.213483,0.005551,-0.006498,0.249916,0,0);-ms-transform:matrix(0.213483,0.005551,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.213483,0.005551,-0.006498,0.249916,0,0);}
.maf_c01272{transform:matrix(0.213545,0.006193,-0.007247,0.249895,0,0);-ms-transform:matrix(0.213545,0.006193,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.213545,0.006193,-0.007247,0.249895,0,0);}
.md_c01272{transform:matrix(0.213677,0.004274,-0.004999,0.249950,0,0);-ms-transform:matrix(0.213677,0.004274,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.213677,0.004274,-0.004999,0.249950,0,0);}
.med_c01272{transform:matrix(0.214077,0.006636,-0.007746,0.249880,0,0);-ms-transform:matrix(0.214077,0.006636,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.214077,0.006636,-0.007746,0.249880,0,0);}
.ma9_c01272{transform:matrix(0.214440,0.006219,-0.007247,0.249895,0,0);-ms-transform:matrix(0.214440,0.006219,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.214440,0.006219,-0.007247,0.249895,0,0);}
.m6_c01272{transform:matrix(0.214487,0.004290,-0.004999,0.249950,0,0);-ms-transform:matrix(0.214487,0.004290,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.214487,0.004290,-0.004999,0.249950,0,0);}
.m1_c01272{transform:matrix(0.214905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214905,0.000000,0.000000,0.250000,0,0);}
.m10b_c01272{transform:matrix(0.215092,0.006668,-0.007746,0.249880,0,0);-ms-transform:matrix(0.215092,0.006668,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.215092,0.006668,-0.007746,0.249880,0,0);}
.mef_c01272{transform:matrix(0.215566,0.006683,-0.007746,0.249880,0,0);-ms-transform:matrix(0.215566,0.006683,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.215566,0.006683,-0.007746,0.249880,0,0);}
.m10_c01272{transform:matrix(0.215712,0.004314,-0.004999,0.249950,0,0);-ms-transform:matrix(0.215712,0.004314,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.215712,0.004314,-0.004999,0.249950,0,0);}
.m93_c01272{transform:matrix(0.215822,0.005611,-0.006498,0.249916,0,0);-ms-transform:matrix(0.215822,0.005611,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.215822,0.005611,-0.006498,0.249916,0,0);}
.mad_c01272{transform:matrix(0.216904,0.006290,-0.007247,0.249895,0,0);-ms-transform:matrix(0.216904,0.006290,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.216904,0.006290,-0.007247,0.249895,0,0);}
.mdd_c01272{transform:matrix(0.216910,0.006073,-0.006997,0.249902,0,0);-ms-transform:matrix(0.216910,0.006073,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.216910,0.006073,-0.006997,0.249902,0,0);}
.mea_c01272{transform:matrix(0.218425,0.006771,-0.007746,0.249880,0,0);-ms-transform:matrix(0.218425,0.006771,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.218425,0.006771,-0.007746,0.249880,0,0);}
.mcd_c01272{transform:matrix(0.218534,0.006119,-0.006997,0.249902,0,0);-ms-transform:matrix(0.218534,0.006119,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.218534,0.006119,-0.006997,0.249902,0,0);}
.m6d_c01272{transform:matrix(0.219252,0.004824,-0.005499,0.249940,0,0);-ms-transform:matrix(0.219252,0.004824,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.219252,0.004824,-0.005499,0.249940,0,0);}
.mb2_c01272{transform:matrix(0.219768,0.006373,-0.007247,0.249895,0,0);-ms-transform:matrix(0.219768,0.006373,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.219768,0.006373,-0.007247,0.249895,0,0);}
.m27_c01272{transform:matrix(0.220121,0.005503,-0.006248,0.249922,0,0);-ms-transform:matrix(0.220121,0.005503,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.220121,0.005503,-0.006248,0.249922,0,0);}
.mec_c01272{transform:matrix(0.220124,0.006824,-0.007746,0.249880,0,0);-ms-transform:matrix(0.220124,0.006824,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.220124,0.006824,-0.007746,0.249880,0,0);}
.m69_c01272{transform:matrix(0.220447,0.004850,-0.005499,0.249940,0,0);-ms-transform:matrix(0.220447,0.004850,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.220447,0.004850,-0.005499,0.249940,0,0);}
.m3d_c01272{transform:matrix(0.220846,0.004417,-0.004999,0.249950,0,0);-ms-transform:matrix(0.220846,0.004417,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.220846,0.004417,-0.004999,0.249950,0,0);}
.m10f_c01272{transform:matrix(0.220982,0.007963,-0.009003,0.249838,0,0);-ms-transform:matrix(0.220982,0.007963,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.220982,0.007963,-0.009003,0.249838,0,0);}
.m94_c01272{transform:matrix(0.221520,0.005760,-0.006498,0.249916,0,0);-ms-transform:matrix(0.221520,0.005760,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.221520,0.005760,-0.006498,0.249916,0,0);}
.mce_c01272{transform:matrix(0.221778,0.006210,-0.006997,0.249902,0,0);-ms-transform:matrix(0.221778,0.006210,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.221778,0.006210,-0.006997,0.249902,0,0);}
.ma8_c01272{transform:matrix(0.221945,0.005771,-0.006498,0.249916,0,0);-ms-transform:matrix(0.221945,0.005771,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.221945,0.005771,-0.006498,0.249916,0,0);}
.mf5_c01272{transform:matrix(0.222088,0.006885,-0.007746,0.249880,0,0);-ms-transform:matrix(0.222088,0.006885,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.222088,0.006885,-0.007746,0.249880,0,0);}
.mbf_c01272{transform:matrix(0.222406,0.006450,-0.007247,0.249895,0,0);-ms-transform:matrix(0.222406,0.006450,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.222406,0.006450,-0.007247,0.249895,0,0);}
.mf7_c01272{transform:matrix(0.223288,0.006922,-0.007746,0.249880,0,0);-ms-transform:matrix(0.223288,0.006922,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.223288,0.006922,-0.007746,0.249880,0,0);}
.m101_c01272{transform:matrix(0.223298,0.006922,-0.007746,0.249880,0,0);-ms-transform:matrix(0.223298,0.006922,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.223298,0.006922,-0.007746,0.249880,0,0);}
.mc8_c01272{transform:matrix(0.223567,0.006260,-0.006997,0.249902,0,0);-ms-transform:matrix(0.223567,0.006260,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.223567,0.006260,-0.006997,0.249902,0,0);}
.md7_c01272{transform:matrix(0.223602,0.006261,-0.006997,0.249902,0,0);-ms-transform:matrix(0.223602,0.006261,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.223602,0.006261,-0.006997,0.249902,0,0);}
.m3b_c01272{transform:matrix(0.224025,0.004481,-0.004999,0.249950,0,0);-ms-transform:matrix(0.224025,0.004481,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.224025,0.004481,-0.004999,0.249950,0,0);}
.m96_c01272{transform:matrix(0.224549,0.005838,-0.006498,0.249916,0,0);-ms-transform:matrix(0.224549,0.005838,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.224549,0.005838,-0.006498,0.249916,0,0);}
.mc3_c01272{transform:matrix(0.224592,0.006289,-0.006997,0.249902,0,0);-ms-transform:matrix(0.224592,0.006289,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.224592,0.006289,-0.006997,0.249902,0,0);}
.m99_c01272{transform:matrix(0.224989,0.005850,-0.006498,0.249916,0,0);-ms-transform:matrix(0.224989,0.005850,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.224989,0.005850,-0.006498,0.249916,0,0);}
.m14_c01272{transform:matrix(0.225980,0.004520,-0.004999,0.249950,0,0);-ms-transform:matrix(0.225980,0.004520,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.225980,0.004520,-0.004999,0.249950,0,0);}
.m111_c01272{transform:matrix(0.225993,0.008144,-0.009003,0.249838,0,0);-ms-transform:matrix(0.225993,0.008144,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.225993,0.008144,-0.009003,0.249838,0,0);}
.m6a_c01272{transform:matrix(0.226545,0.004984,-0.005499,0.249940,0,0);-ms-transform:matrix(0.226545,0.004984,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.226545,0.004984,-0.005499,0.249940,0,0);}
.mfb_c01272{transform:matrix(0.227156,0.007042,-0.007746,0.249880,0,0);-ms-transform:matrix(0.227156,0.007042,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.227156,0.007042,-0.007746,0.249880,0,0);}
.md1_c01272{transform:matrix(0.227171,0.006361,-0.006997,0.249902,0,0);-ms-transform:matrix(0.227171,0.006361,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.227171,0.006361,-0.006997,0.249902,0,0);}
.mc5_c01272{transform:matrix(0.227291,0.006364,-0.006997,0.249902,0,0);-ms-transform:matrix(0.227291,0.006364,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.227291,0.006364,-0.006997,0.249902,0,0);}
.m10d_c01272{transform:matrix(0.227827,0.008210,-0.009003,0.249838,0,0);-ms-transform:matrix(0.227827,0.008210,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.227827,0.008210,-0.009003,0.249838,0,0);}
.mf8_c01272{transform:matrix(0.228245,0.007076,-0.007746,0.249880,0,0);-ms-transform:matrix(0.228245,0.007076,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.228245,0.007076,-0.007746,0.249880,0,0);}
.m37_c01272{transform:matrix(0.228584,0.004572,-0.004999,0.249950,0,0);-ms-transform:matrix(0.228584,0.004572,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.228584,0.004572,-0.004999,0.249950,0,0);}
.ma6_c01272{transform:matrix(0.229188,0.005959,-0.006498,0.249916,0,0);-ms-transform:matrix(0.229188,0.005959,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.229188,0.005959,-0.006498,0.249916,0,0);}
.m61_c01272{transform:matrix(0.229199,0.005501,-0.005998,0.249928,0,0);-ms-transform:matrix(0.229199,0.005501,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.229199,0.005501,-0.005998,0.249928,0,0);}
.m6c_c01272{transform:matrix(0.229449,0.005048,-0.005499,0.249940,0,0);-ms-transform:matrix(0.229449,0.005048,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.229449,0.005048,-0.005499,0.249940,0,0);}
.ma_c01272{transform:matrix(0.229519,0.004590,-0.004999,0.249950,0,0);-ms-transform:matrix(0.229519,0.004590,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.229519,0.004590,-0.004999,0.249950,0,0);}
.m112_c01272{transform:matrix(0.229631,0.008275,-0.009003,0.249838,0,0);-ms-transform:matrix(0.229631,0.008275,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.229631,0.008275,-0.009003,0.249838,0,0);}
.me_c01272{transform:matrix(0.229904,0.004598,-0.004999,0.249950,0,0);-ms-transform:matrix(0.229904,0.004598,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.229904,0.004598,-0.004999,0.249950,0,0);}
.m3e_c01272{transform:matrix(0.230174,0.004603,-0.004999,0.249950,0,0);-ms-transform:matrix(0.230174,0.004603,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.230174,0.004603,-0.004999,0.249950,0,0);}
.mca_c01272{transform:matrix(0.230235,0.006447,-0.006997,0.249902,0,0);-ms-transform:matrix(0.230235,0.006447,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.230235,0.006447,-0.006997,0.249902,0,0);}
.mff_c01272{transform:matrix(0.230639,0.007150,-0.007746,0.249880,0,0);-ms-transform:matrix(0.230639,0.007150,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.230639,0.007150,-0.007746,0.249880,0,0);}
.m68_c01272{transform:matrix(0.232349,0.005112,-0.005499,0.249940,0,0);-ms-transform:matrix(0.232349,0.005112,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.232349,0.005112,-0.005499,0.249940,0,0);}
.m91_c01272{transform:matrix(0.232356,0.006041,-0.006498,0.249916,0,0);-ms-transform:matrix(0.232356,0.006041,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.232356,0.006041,-0.006498,0.249916,0,0);}
.m4e_c01272{transform:matrix(0.232359,0.004647,-0.004999,0.249950,0,0);-ms-transform:matrix(0.232359,0.004647,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.232359,0.004647,-0.004999,0.249950,0,0);}
.m41_c01272{transform:matrix(0.233348,0.004667,-0.004999,0.249950,0,0);-ms-transform:matrix(0.233348,0.004667,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.233348,0.004667,-0.004999,0.249950,0,0);}
.m102_c01272{transform:matrix(0.233523,0.007239,-0.007746,0.249880,0,0);-ms-transform:matrix(0.233523,0.007239,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.233523,0.007239,-0.007746,0.249880,0,0);}
.m97_c01272{transform:matrix(0.233546,0.006072,-0.006498,0.249916,0,0);-ms-transform:matrix(0.233546,0.006072,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.233546,0.006072,-0.006498,0.249916,0,0);}
.m2f_c01272{transform:matrix(0.233613,0.004672,-0.004999,0.249950,0,0);-ms-transform:matrix(0.233613,0.004672,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.233613,0.004672,-0.004999,0.249950,0,0);}
.m9_c01272{transform:matrix(0.234213,0.004684,-0.004999,0.249950,0,0);-ms-transform:matrix(0.234213,0.004684,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.234213,0.004684,-0.004999,0.249950,0,0);}
.m9b_c01272{transform:matrix(0.234386,0.006094,-0.006498,0.249916,0,0);-ms-transform:matrix(0.234386,0.006094,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.234386,0.006094,-0.006498,0.249916,0,0);}
.ma1_c01272{transform:matrix(0.234776,0.006104,-0.006498,0.249916,0,0);-ms-transform:matrix(0.234776,0.006104,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.234776,0.006104,-0.006498,0.249916,0,0);}
.md9_c01272{transform:matrix(0.235578,0.006596,-0.006997,0.249902,0,0);-ms-transform:matrix(0.235578,0.006596,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.235578,0.006596,-0.006997,0.249902,0,0);}
.mc1_c01272{transform:matrix(0.235781,0.006838,-0.007247,0.249895,0,0);-ms-transform:matrix(0.235781,0.006838,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.235781,0.006838,-0.007247,0.249895,0,0);}
.m5e_c01272{transform:matrix(0.235782,0.005659,-0.005998,0.249928,0,0);-ms-transform:matrix(0.235782,0.005659,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.235782,0.005659,-0.005998,0.249928,0,0);}
.mc6_c01272{transform:matrix(0.235808,0.006603,-0.006997,0.249902,0,0);-ms-transform:matrix(0.235808,0.006603,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.235808,0.006603,-0.006997,0.249902,0,0);}
.m3_c01272{transform:matrix(0.236845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236845,0.000000,0.000000,0.250000,0,0);}
.ma7_c01272{transform:matrix(0.236945,0.006161,-0.006498,0.249916,0,0);-ms-transform:matrix(0.236945,0.006161,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.236945,0.006161,-0.006498,0.249916,0,0);}
.mb6_c01272{transform:matrix(0.237085,0.006875,-0.007247,0.249895,0,0);-ms-transform:matrix(0.237085,0.006875,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.237085,0.006875,-0.007247,0.249895,0,0);}
.mfe_c01272{transform:matrix(0.237211,0.007354,-0.007746,0.249880,0,0);-ms-transform:matrix(0.237211,0.007354,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.237211,0.007354,-0.007746,0.249880,0,0);}
.me5_c01272{transform:matrix(0.237481,0.007362,-0.007746,0.249880,0,0);-ms-transform:matrix(0.237481,0.007362,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.237481,0.007362,-0.007746,0.249880,0,0);}
.m63_c01272{transform:matrix(0.237525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237525,0.000000,0.000000,0.250000,0,0);}
.mf6_c01272{transform:matrix(0.237621,0.007366,-0.007746,0.249880,0,0);-ms-transform:matrix(0.237621,0.007366,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.237621,0.007366,-0.007746,0.249880,0,0);}
.mb7_c01272{transform:matrix(0.237700,0.006893,-0.007247,0.249895,0,0);-ms-transform:matrix(0.237700,0.006893,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.237700,0.006893,-0.007247,0.249895,0,0);}
.m9e_c01272{transform:matrix(0.237755,0.006182,-0.006498,0.249916,0,0);-ms-transform:matrix(0.237755,0.006182,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.237755,0.006182,-0.006498,0.249916,0,0);}
.m5f_c01272{transform:matrix(0.237906,0.005710,-0.005998,0.249928,0,0);-ms-transform:matrix(0.237906,0.005710,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.237906,0.005710,-0.005998,0.249928,0,0);}
.ma3_c01272{transform:matrix(0.238729,0.006207,-0.006498,0.249916,0,0);-ms-transform:matrix(0.238729,0.006207,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.238729,0.006207,-0.006498,0.249916,0,0);}
.m32_c01272{transform:matrix(0.239077,0.004782,-0.004999,0.249950,0,0);-ms-transform:matrix(0.239077,0.004782,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.239077,0.004782,-0.004999,0.249950,0,0);}
.me3_c01272{transform:matrix(0.239180,0.007415,-0.007746,0.249880,0,0);-ms-transform:matrix(0.239180,0.007415,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.239180,0.007415,-0.007746,0.249880,0,0);}
.mb4_c01272{transform:matrix(0.239464,0.006944,-0.007247,0.249895,0,0);-ms-transform:matrix(0.239464,0.006944,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.239464,0.006944,-0.007247,0.249895,0,0);}
.m6b_c01272{transform:matrix(0.239472,0.005268,-0.005499,0.249940,0,0);-ms-transform:matrix(0.239472,0.005268,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.239472,0.005268,-0.005499,0.249940,0,0);}
.m16_c01272{transform:matrix(0.240097,0.004802,-0.004999,0.249950,0,0);-ms-transform:matrix(0.240097,0.004802,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.240097,0.004802,-0.004999,0.249950,0,0);}
.mfd_c01272{transform:matrix(0.240270,0.007448,-0.007746,0.249880,0,0);-ms-transform:matrix(0.240270,0.007448,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.240270,0.007448,-0.007746,0.249880,0,0);}
.md8_c01272{transform:matrix(0.240311,0.006729,-0.006997,0.249902,0,0);-ms-transform:matrix(0.240311,0.006729,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.240311,0.006729,-0.006997,0.249902,0,0);}
.m26_c01272{transform:matrix(0.240315,0.006008,-0.006248,0.249922,0,0);-ms-transform:matrix(0.240315,0.006008,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.240315,0.006008,-0.006248,0.249922,0,0);}
.m33_c01272{transform:matrix(0.240342,0.004807,-0.004999,0.249950,0,0);-ms-transform:matrix(0.240342,0.004807,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.240342,0.004807,-0.004999,0.249950,0,0);}
.mcc_c01272{transform:matrix(0.240401,0.006731,-0.006997,0.249902,0,0);-ms-transform:matrix(0.240401,0.006731,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.240401,0.006731,-0.006997,0.249902,0,0);}
.m3a_c01272{transform:matrix(0.240422,0.004808,-0.004999,0.249950,0,0);-ms-transform:matrix(0.240422,0.004808,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.240422,0.004808,-0.004999,0.249950,0,0);}
.mbe_c01272{transform:matrix(0.240534,0.006975,-0.007247,0.249895,0,0);-ms-transform:matrix(0.240534,0.006975,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.240534,0.006975,-0.007247,0.249895,0,0);}
.m46_c01272{transform:matrix(0.240627,0.004813,-0.004999,0.249950,0,0);-ms-transform:matrix(0.240627,0.004813,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.240627,0.004813,-0.004999,0.249950,0,0);}
.md4_c01272{transform:matrix(0.240726,0.006740,-0.006997,0.249902,0,0);-ms-transform:matrix(0.240726,0.006740,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.240726,0.006740,-0.006997,0.249902,0,0);}
.m7_c01272{transform:matrix(0.241462,0.004829,-0.004999,0.249950,0,0);-ms-transform:matrix(0.241462,0.004829,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.241462,0.004829,-0.004999,0.249950,0,0);}
.md3_c01272{transform:matrix(0.241945,0.006774,-0.006997,0.249902,0,0);-ms-transform:matrix(0.241945,0.006774,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.241945,0.006774,-0.006997,0.249902,0,0);}
.m70_c01272{transform:matrix(0.242236,0.005329,-0.005499,0.249940,0,0);-ms-transform:matrix(0.242236,0.005329,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.242236,0.005329,-0.005499,0.249940,0,0);}
.mb0_c01272{transform:matrix(0.242878,0.007043,-0.007247,0.249895,0,0);-ms-transform:matrix(0.242878,0.007043,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.242878,0.007043,-0.007247,0.249895,0,0);}
.m9f_c01272{transform:matrix(0.242943,0.006317,-0.006498,0.249916,0,0);-ms-transform:matrix(0.242943,0.006317,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.242943,0.006317,-0.006498,0.249916,0,0);}
.m25_c01272{transform:matrix(0.243299,0.006082,-0.006248,0.249922,0,0);-ms-transform:matrix(0.243299,0.006082,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.243299,0.006082,-0.006248,0.249922,0,0);}
.m57_c01272{transform:matrix(0.243326,0.004867,-0.004999,0.249950,0,0);-ms-transform:matrix(0.243326,0.004867,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.243326,0.004867,-0.004999,0.249950,0,0);}
.m54_c01272{transform:matrix(0.243491,0.004870,-0.004999,0.249950,0,0);-ms-transform:matrix(0.243491,0.004870,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.243491,0.004870,-0.004999,0.249950,0,0);}
.m8e_c01272{transform:matrix(0.243668,0.006335,-0.006498,0.249916,0,0);-ms-transform:matrix(0.243668,0.006335,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.243668,0.006335,-0.006498,0.249916,0,0);}
.m12_c01272{transform:matrix(0.243701,0.004874,-0.004999,0.249950,0,0);-ms-transform:matrix(0.243701,0.004874,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.243701,0.004874,-0.004999,0.249950,0,0);}
.m1a_c01272{transform:matrix(0.244341,0.004887,-0.004999,0.249950,0,0);-ms-transform:matrix(0.244341,0.004887,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.244341,0.004887,-0.004999,0.249950,0,0);}
.m38_c01272{transform:matrix(0.244756,0.004895,-0.004999,0.249950,0,0);-ms-transform:matrix(0.244756,0.004895,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.244756,0.004895,-0.004999,0.249950,0,0);}
.m6f_c01272{transform:matrix(0.245161,0.005394,-0.005499,0.249940,0,0);-ms-transform:matrix(0.245161,0.005394,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.245161,0.005394,-0.005499,0.249940,0,0);}
.m44_c01272{transform:matrix(0.245501,0.004910,-0.004999,0.249950,0,0);-ms-transform:matrix(0.245501,0.004910,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.245501,0.004910,-0.004999,0.249950,0,0);}
.mf_c01272{transform:matrix(0.245881,0.004918,-0.004999,0.249950,0,0);-ms-transform:matrix(0.245881,0.004918,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.245881,0.004918,-0.004999,0.249950,0,0);}
.md0_c01272{transform:matrix(0.245919,0.006886,-0.006997,0.249902,0,0);-ms-transform:matrix(0.245919,0.006886,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.245919,0.006886,-0.006997,0.249902,0,0);}
.me7_c01272{transform:matrix(0.246077,0.007628,-0.007746,0.249880,0,0);-ms-transform:matrix(0.246077,0.007628,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.246077,0.007628,-0.007746,0.249880,0,0);}
.m30_c01272{transform:matrix(0.246141,0.004923,-0.004999,0.249950,0,0);-ms-transform:matrix(0.246141,0.004923,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.246141,0.004923,-0.004999,0.249950,0,0);}
.m8_c01272{transform:matrix(0.246271,0.004925,-0.004999,0.249950,0,0);-ms-transform:matrix(0.246271,0.004925,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.246271,0.004925,-0.004999,0.249950,0,0);}
.m19_c01272{transform:matrix(0.246461,0.004929,-0.004999,0.249950,0,0);-ms-transform:matrix(0.246461,0.004929,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.246461,0.004929,-0.004999,0.249950,0,0);}
.m42_c01272{transform:matrix(0.246581,0.004932,-0.004999,0.249950,0,0);-ms-transform:matrix(0.246581,0.004932,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.246581,0.004932,-0.004999,0.249950,0,0);}
.mdc_c01272{transform:matrix(0.247298,0.006924,-0.006997,0.249902,0,0);-ms-transform:matrix(0.247298,0.006924,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.247298,0.006924,-0.006997,0.249902,0,0);}
.mb_c01272{transform:matrix(0.247655,0.004953,-0.004999,0.249950,0,0);-ms-transform:matrix(0.247655,0.004953,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.247655,0.004953,-0.004999,0.249950,0,0);}
.m47_c01272{transform:matrix(0.247735,0.004955,-0.004999,0.249950,0,0);-ms-transform:matrix(0.247735,0.004955,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.247735,0.004955,-0.004999,0.249950,0,0);}
.m28_c01272{transform:matrix(0.247838,0.006196,-0.006248,0.249922,0,0);-ms-transform:matrix(0.247838,0.006196,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.247838,0.006196,-0.006248,0.249922,0,0);}
.m71_c01272{transform:matrix(0.248065,0.005457,-0.005499,0.249940,0,0);-ms-transform:matrix(0.248065,0.005457,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.248065,0.005457,-0.005499,0.249940,0,0);}
.m1c_c01272{transform:matrix(0.248837,0.006221,-0.006248,0.249922,0,0);-ms-transform:matrix(0.248837,0.006221,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.248837,0.006221,-0.006248,0.249922,0,0);}
.m3f_c01272{transform:matrix(0.248900,0.004978,-0.004999,0.249950,0,0);-ms-transform:matrix(0.248900,0.004978,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.248900,0.004978,-0.004999,0.249950,0,0);}
.m31_c01272{transform:matrix(0.249025,0.004981,-0.004999,0.249950,0,0);-ms-transform:matrix(0.249025,0.004981,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.249025,0.004981,-0.004999,0.249950,0,0);}
.m8c_c01272{transform:matrix(0.249321,0.006482,-0.006498,0.249916,0,0);-ms-transform:matrix(0.249321,0.006482,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.249321,0.006482,-0.006498,0.249916,0,0);}
.m5_c01272{transform:matrix(0.249380,0.004988,-0.004999,0.249950,0,0);-ms-transform:matrix(0.249380,0.004988,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.249380,0.004988,-0.004999,0.249950,0,0);}
.m100_c01272{transform:matrix(0.249850,0.007745,-0.007746,0.249880,0,0);-ms-transform:matrix(0.249850,0.007745,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.249850,0.007745,-0.007746,0.249880,0,0);}
.m87_c01272{transform:matrix(0.249896,0.006497,-0.006498,0.249916,0,0);-ms-transform:matrix(0.249896,0.006497,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.249896,0.006497,-0.006498,0.249916,0,0);}
.m5c_c01272{transform:matrix(0.250353,0.006008,-0.005998,0.249928,0,0);-ms-transform:matrix(0.250353,0.006008,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.250353,0.006008,-0.005998,0.249928,0,0);}
.mb1_c01272{transform:matrix(0.250375,0.007261,-0.007247,0.249895,0,0);-ms-transform:matrix(0.250375,0.007261,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.250375,0.007261,-0.007247,0.249895,0,0);}
.mdf_c01272{transform:matrix(0.251032,0.007029,-0.006997,0.249902,0,0);-ms-transform:matrix(0.251032,0.007029,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.251032,0.007029,-0.006997,0.249902,0,0);}
.m7d_c01272{transform:matrix(0.251842,0.003778,-0.003750,0.249972,0,0);-ms-transform:matrix(0.251842,0.003778,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.251842,0.003778,-0.003750,0.249972,0,0);}
.maa_c01272{transform:matrix(0.252014,0.007308,-0.007247,0.249895,0,0);-ms-transform:matrix(0.252014,0.007308,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.252014,0.007308,-0.007247,0.249895,0,0);}
.m22_c01272{transform:matrix(0.252026,0.006301,-0.006248,0.249922,0,0);-ms-transform:matrix(0.252026,0.006301,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.252026,0.006301,-0.006248,0.249922,0,0);}
.m4c_c01272{transform:matrix(0.252065,0.005041,-0.004999,0.249950,0,0);-ms-transform:matrix(0.252065,0.005041,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.252065,0.005041,-0.004999,0.249950,0,0);}
.m40_c01272{transform:matrix(0.252230,0.005045,-0.004999,0.249950,0,0);-ms-transform:matrix(0.252230,0.005045,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.252230,0.005045,-0.004999,0.249950,0,0);}
.m29_c01272{transform:matrix(0.252436,0.006311,-0.006248,0.249922,0,0);-ms-transform:matrix(0.252436,0.006311,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.252436,0.006311,-0.006248,0.249922,0,0);}
.mda_c01272{transform:matrix(0.252611,0.007073,-0.006997,0.249902,0,0);-ms-transform:matrix(0.252611,0.007073,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.252611,0.007073,-0.006997,0.249902,0,0);}
.md5_c01272{transform:matrix(0.252951,0.007083,-0.006997,0.249902,0,0);-ms-transform:matrix(0.252951,0.007083,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.252951,0.007083,-0.006997,0.249902,0,0);}
.m2b_c01272{transform:matrix(0.253031,0.007085,-0.006997,0.249902,0,0);-ms-transform:matrix(0.253031,0.007085,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.253031,0.007085,-0.006997,0.249902,0,0);}
.m43_c01272{transform:matrix(0.253174,0.005063,-0.004999,0.249950,0,0);-ms-transform:matrix(0.253174,0.005063,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.253174,0.005063,-0.004999,0.249950,0,0);}
.m2e_c01272{transform:matrix(0.253459,0.005069,-0.004999,0.249950,0,0);-ms-transform:matrix(0.253459,0.005069,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.253459,0.005069,-0.004999,0.249950,0,0);}
.m36_c01272{transform:matrix(0.254139,0.005083,-0.004999,0.249950,0,0);-ms-transform:matrix(0.254139,0.005083,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.254139,0.005083,-0.004999,0.249950,0,0);}
.m11_c01272{transform:matrix(0.254304,0.005086,-0.004999,0.249950,0,0);-ms-transform:matrix(0.254304,0.005086,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.254304,0.005086,-0.004999,0.249950,0,0);}
.m60_c01272{transform:matrix(0.254597,0.006110,-0.005998,0.249928,0,0);-ms-transform:matrix(0.254597,0.006110,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.254597,0.006110,-0.005998,0.249928,0,0);}
.mc_c01272{transform:matrix(0.254644,0.005093,-0.004999,0.249950,0,0);-ms-transform:matrix(0.254644,0.005093,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.254644,0.005093,-0.004999,0.249950,0,0);}
.mdb_c01272{transform:matrix(0.254660,0.007130,-0.006997,0.249902,0,0);-ms-transform:matrix(0.254660,0.007130,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.254660,0.007130,-0.006997,0.249902,0,0);}
.md6_c01272{transform:matrix(0.254910,0.007137,-0.006997,0.249902,0,0);-ms-transform:matrix(0.254910,0.007137,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.254910,0.007137,-0.006997,0.249902,0,0);}
.m3c_c01272{transform:matrix(0.255384,0.005108,-0.004999,0.249950,0,0);-ms-transform:matrix(0.255384,0.005108,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.255384,0.005108,-0.004999,0.249950,0,0);}
.m50_c01272{transform:matrix(0.255389,0.005108,-0.004999,0.249950,0,0);-ms-transform:matrix(0.255389,0.005108,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.255389,0.005108,-0.004999,0.249950,0,0);}
.m55_c01272{transform:matrix(0.255529,0.005111,-0.004999,0.249950,0,0);-ms-transform:matrix(0.255529,0.005111,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.255529,0.005111,-0.004999,0.249950,0,0);}
.m39_c01272{transform:matrix(0.255729,0.005115,-0.004999,0.249950,0,0);-ms-transform:matrix(0.255729,0.005115,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.255729,0.005115,-0.004999,0.249950,0,0);}
.m45_c01272{transform:matrix(0.256394,0.005128,-0.004999,0.249950,0,0);-ms-transform:matrix(0.256394,0.005128,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.256394,0.005128,-0.004999,0.249950,0,0);}
.md2_c01272{transform:matrix(0.256444,0.007180,-0.006997,0.249902,0,0);-ms-transform:matrix(0.256444,0.007180,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.256444,0.007180,-0.006997,0.249902,0,0);}
.mb5_c01272{transform:matrix(0.256532,0.007439,-0.007247,0.249895,0,0);-ms-transform:matrix(0.256532,0.007439,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.256532,0.007439,-0.007247,0.249895,0,0);}
.m7f_c01272{transform:matrix(0.257286,0.003859,-0.003750,0.249972,0,0);-ms-transform:matrix(0.257286,0.003859,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.257286,0.003859,-0.003750,0.249972,0,0);}
.m17_c01272{transform:matrix(0.257469,0.005149,-0.004999,0.249950,0,0);-ms-transform:matrix(0.257469,0.005149,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.257469,0.005149,-0.004999,0.249950,0,0);}
.m8b_c01272{transform:matrix(0.257608,0.006698,-0.006498,0.249916,0,0);-ms-transform:matrix(0.257608,0.006698,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.257608,0.006698,-0.006498,0.249916,0,0);}
.m15_c01272{transform:matrix(0.258093,0.005162,-0.004999,0.249950,0,0);-ms-transform:matrix(0.258093,0.005162,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.258093,0.005162,-0.004999,0.249950,0,0);}
.mab_c01272{transform:matrix(0.258366,0.007493,-0.007247,0.249895,0,0);-ms-transform:matrix(0.258366,0.007493,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.258366,0.007493,-0.007247,0.249895,0,0);}
.m52_c01272{transform:matrix(0.258643,0.005173,-0.004999,0.249950,0,0);-ms-transform:matrix(0.258643,0.005173,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.258643,0.005173,-0.004999,0.249950,0,0);}
.m77_c01272{transform:matrix(0.258682,0.005691,-0.005499,0.249940,0,0);-ms-transform:matrix(0.258682,0.005691,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.258682,0.005691,-0.005499,0.249940,0,0);}
.m5b_c01272{transform:matrix(0.259055,0.006217,-0.005998,0.249928,0,0);-ms-transform:matrix(0.259055,0.006217,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.259055,0.006217,-0.005998,0.249928,0,0);}
.m5a_c01272{transform:matrix(0.259135,0.006219,-0.005998,0.249928,0,0);-ms-transform:matrix(0.259135,0.006219,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.259135,0.006219,-0.005998,0.249928,0,0);}
.m59_c01272{transform:matrix(0.259425,0.006226,-0.005998,0.249928,0,0);-ms-transform:matrix(0.259425,0.006226,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.259425,0.006226,-0.005998,0.249928,0,0);}
.m1f_c01272{transform:matrix(0.259524,0.006488,-0.006248,0.249922,0,0);-ms-transform:matrix(0.259524,0.006488,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.259524,0.006488,-0.006248,0.249922,0,0);}
.m86_c01272{transform:matrix(0.260162,0.006764,-0.006498,0.249916,0,0);-ms-transform:matrix(0.260162,0.006764,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.260162,0.006764,-0.006498,0.249916,0,0);}
.m56_c01272{transform:matrix(0.260538,0.005211,-0.004999,0.249950,0,0);-ms-transform:matrix(0.260538,0.005211,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.260538,0.005211,-0.004999,0.249950,0,0);}
.mba_c01272{transform:matrix(0.260675,0.007560,-0.007247,0.249895,0,0);-ms-transform:matrix(0.260675,0.007560,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.260675,0.007560,-0.007247,0.249895,0,0);}
.me4_c01272{transform:matrix(0.260935,0.008089,-0.007746,0.249880,0,0);-ms-transform:matrix(0.260935,0.008089,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.260935,0.008089,-0.007746,0.249880,0,0);}
.mae_c01272{transform:matrix(0.261345,0.007579,-0.007247,0.249895,0,0);-ms-transform:matrix(0.261345,0.007579,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.261345,0.007579,-0.007247,0.249895,0,0);}
.m88_c01272{transform:matrix(0.261762,0.006806,-0.006498,0.249916,0,0);-ms-transform:matrix(0.261762,0.006806,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.261762,0.006806,-0.006498,0.249916,0,0);}
.m4d_c01272{transform:matrix(0.261793,0.005236,-0.004999,0.249950,0,0);-ms-transform:matrix(0.261793,0.005236,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.261793,0.005236,-0.004999,0.249950,0,0);}
.m64_c01272{transform:matrix(0.262515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262515,0.000000,0.000000,0.250000,0,0);}
.ma4_c01272{transform:matrix(0.263066,0.006840,-0.006498,0.249916,0,0);-ms-transform:matrix(0.263066,0.006840,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.263066,0.006840,-0.006498,0.249916,0,0);}
.me0_c01272{transform:matrix(0.263104,0.008156,-0.007746,0.249880,0,0);-ms-transform:matrix(0.263104,0.008156,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.263104,0.008156,-0.007746,0.249880,0,0);}
.m7b_c01272{transform:matrix(0.263310,0.003950,-0.003750,0.249972,0,0);-ms-transform:matrix(0.263310,0.003950,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.263310,0.003950,-0.003750,0.249972,0,0);}
.me6_c01272{transform:matrix(0.263438,0.008167,-0.007746,0.249880,0,0);-ms-transform:matrix(0.263438,0.008167,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.263438,0.008167,-0.007746,0.249880,0,0);}
.m1d_c01272{transform:matrix(0.263678,0.006592,-0.006248,0.249922,0,0);-ms-transform:matrix(0.263678,0.006592,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.263678,0.006592,-0.006248,0.249922,0,0);}
.m49_c01272{transform:matrix(0.264382,0.005288,-0.004999,0.249950,0,0);-ms-transform:matrix(0.264382,0.005288,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.264382,0.005288,-0.004999,0.249950,0,0);}
.m4_c01272{transform:matrix(0.264700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264700,0.000000,0.000000,0.250000,0,0);}
.ma0_c01272{transform:matrix(0.266160,0.006920,-0.006498,0.249916,0,0);-ms-transform:matrix(0.266160,0.006920,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.266160,0.006920,-0.006498,0.249916,0,0);}
.mb8_c01272{transform:matrix(0.266378,0.007725,-0.007247,0.249895,0,0);-ms-transform:matrix(0.266378,0.007725,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.266378,0.007725,-0.007247,0.249895,0,0);}
.m4a_c01272{transform:matrix(0.266427,0.005329,-0.004999,0.249950,0,0);-ms-transform:matrix(0.266427,0.005329,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.266427,0.005329,-0.004999,0.249950,0,0);}
.m66_c01272{transform:matrix(0.266460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266460,0.000000,0.000000,0.250000,0,0);}
.m78_c01272{transform:matrix(0.267055,0.005875,-0.005499,0.249940,0,0);-ms-transform:matrix(0.267055,0.005875,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.267055,0.005875,-0.005499,0.249940,0,0);}
.m7e_c01272{transform:matrix(0.267380,0.004011,-0.003750,0.249972,0,0);-ms-transform:matrix(0.267380,0.004011,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.267380,0.004011,-0.003750,0.249972,0,0);}
.mbd_c01272{transform:matrix(0.268012,0.007772,-0.007247,0.249895,0,0);-ms-transform:matrix(0.268012,0.007772,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.268012,0.007772,-0.007247,0.249895,0,0);}
.m81_c01272{transform:matrix(0.268405,0.004026,-0.003750,0.249972,0,0);-ms-transform:matrix(0.268405,0.004026,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.268405,0.004026,-0.003750,0.249972,0,0);}
.m2c_c01272{transform:matrix(0.268930,0.007530,-0.006997,0.249902,0,0);-ms-transform:matrix(0.268930,0.007530,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.268930,0.007530,-0.006997,0.249902,0,0);}
.m4f_c01272{transform:matrix(0.269536,0.005391,-0.004999,0.249950,0,0);-ms-transform:matrix(0.269536,0.005391,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.269536,0.005391,-0.004999,0.249950,0,0);}
.ma2_c01272{transform:matrix(0.270134,0.007023,-0.006498,0.249916,0,0);-ms-transform:matrix(0.270134,0.007023,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.270134,0.007023,-0.006498,0.249916,0,0);}
.m4b_c01272{transform:matrix(0.271506,0.005430,-0.004999,0.249950,0,0);-ms-transform:matrix(0.271506,0.005430,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.271506,0.005430,-0.004999,0.249950,0,0);}
.me8_c01272{transform:matrix(0.271809,0.008426,-0.007746,0.249880,0,0);-ms-transform:matrix(0.271809,0.008426,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.271809,0.008426,-0.007746,0.249880,0,0);}
.m65_c01272{transform:matrix(0.272470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272470,0.000000,0.000000,0.250000,0,0);}
.m80_c01272{transform:matrix(0.272564,0.004088,-0.003750,0.249972,0,0);-ms-transform:matrix(0.272564,0.004088,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.272564,0.004088,-0.003750,0.249972,0,0);}
.m2d_c01272{transform:matrix(0.272748,0.007637,-0.006997,0.249902,0,0);-ms-transform:matrix(0.272748,0.007637,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.272748,0.007637,-0.006997,0.249902,0,0);}
.m2_c01272{transform:matrix(0.273135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273135,0.000000,0.000000,0.250000,0,0);}
.m58_c01272{transform:matrix(0.273460,0.005469,-0.004999,0.249950,0,0);-ms-transform:matrix(0.273460,0.005469,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.273460,0.005469,-0.004999,0.249950,0,0);}
.mb9_c01272{transform:matrix(0.273750,0.007939,-0.007247,0.249895,0,0);-ms-transform:matrix(0.273750,0.007939,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.273750,0.007939,-0.007247,0.249895,0,0);}
.m84_c01272{transform:matrix(0.273939,0.004109,-0.003750,0.249972,0,0);-ms-transform:matrix(0.273939,0.004109,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.273939,0.004109,-0.003750,0.249972,0,0);}
.m51_c01272{transform:matrix(0.273940,0.005479,-0.004999,0.249950,0,0);-ms-transform:matrix(0.273940,0.005479,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.273940,0.005479,-0.004999,0.249950,0,0);}
.me2_c01272{transform:matrix(0.275133,0.008529,-0.007746,0.249880,0,0);-ms-transform:matrix(0.275133,0.008529,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.275133,0.008529,-0.007746,0.249880,0,0);}
.m2a_c01272{transform:matrix(0.275827,0.007723,-0.006997,0.249902,0,0);-ms-transform:matrix(0.275827,0.007723,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.275827,0.007723,-0.006997,0.249902,0,0);}
.m48_c01272{transform:matrix(0.276335,0.005527,-0.004999,0.249950,0,0);-ms-transform:matrix(0.276335,0.005527,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.276335,0.005527,-0.004999,0.249950,0,0);}
.ma5_c01272{transform:matrix(0.276806,0.007197,-0.006498,0.249916,0,0);-ms-transform:matrix(0.276806,0.007197,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.276806,0.007197,-0.006498,0.249916,0,0);}
.m9c_c01272{transform:matrix(0.276951,0.007201,-0.006498,0.249916,0,0);-ms-transform:matrix(0.276951,0.007201,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.276951,0.007201,-0.006498,0.249916,0,0);}
.m8a_c01272{transform:matrix(0.277926,0.007226,-0.006498,0.249916,0,0);-ms-transform:matrix(0.277926,0.007226,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.277926,0.007226,-0.006498,0.249916,0,0);}
.me1_c01272{transform:matrix(0.279271,0.008657,-0.007746,0.249880,0,0);-ms-transform:matrix(0.279271,0.008657,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.279271,0.008657,-0.007746,0.249880,0,0);}
.mc0_c01272{transform:matrix(0.279822,0.008115,-0.007247,0.249895,0,0);-ms-transform:matrix(0.279822,0.008115,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.279822,0.008115,-0.007247,0.249895,0,0);}
.mfa_c01272{transform:matrix(0.280005,0.008680,-0.007746,0.249880,0,0);-ms-transform:matrix(0.280005,0.008680,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.280005,0.008680,-0.007746,0.249880,0,0);}
.m5d_c01272{transform:matrix(0.280099,0.006722,-0.005998,0.249928,0,0);-ms-transform:matrix(0.280099,0.006722,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.280099,0.006722,-0.005998,0.249928,0,0);}
.m20_c01272{transform:matrix(0.280617,0.007015,-0.006248,0.249922,0,0);-ms-transform:matrix(0.280617,0.007015,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.280617,0.007015,-0.006248,0.249922,0,0);}
.m1e_c01272{transform:matrix(0.280717,0.007018,-0.006248,0.249922,0,0);-ms-transform:matrix(0.280717,0.007018,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.280717,0.007018,-0.006248,0.249922,0,0);}
.mbb_c01272{transform:matrix(0.281487,0.008163,-0.007247,0.249895,0,0);-ms-transform:matrix(0.281487,0.008163,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.281487,0.008163,-0.007247,0.249895,0,0);}
.m8d_c01272{transform:matrix(0.283364,0.007367,-0.006498,0.249916,0,0);-ms-transform:matrix(0.283364,0.007367,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.283364,0.007367,-0.006498,0.249916,0,0);}
.m67_c01272{transform:matrix(0.283460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283460,0.000000,0.000000,0.250000,0,0);}
.m21_c01272{transform:matrix(0.284001,0.007100,-0.006248,0.249922,0,0);-ms-transform:matrix(0.284001,0.007100,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.284001,0.007100,-0.006248,0.249922,0,0);}
.m62_c01272{transform:matrix(0.286023,0.006865,-0.005998,0.249928,0,0);-ms-transform:matrix(0.286023,0.006865,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.286023,0.006865,-0.005998,0.249928,0,0);}
.m114_c01272{transform:matrix(0.286089,0.010310,-0.009003,0.249838,0,0);-ms-transform:matrix(0.286089,0.010310,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.286089,0.010310,-0.009003,0.249838,0,0);}
.mb3_c01272{transform:matrix(0.288564,0.008368,-0.007247,0.249895,0,0);-ms-transform:matrix(0.288564,0.008368,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.288564,0.008368,-0.007247,0.249895,0,0);}
.m74_c01272{transform:matrix(0.289320,0.006365,-0.005499,0.249940,0,0);-ms-transform:matrix(0.289320,0.006365,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.289320,0.006365,-0.005499,0.249940,0,0);}
.m79_c01272{transform:matrix(0.293419,0.006455,-0.005499,0.249940,0,0);-ms-transform:matrix(0.293419,0.006455,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.293419,0.006455,-0.005499,0.249940,0,0);}
.m75_c01272{transform:matrix(0.293969,0.006467,-0.005499,0.249940,0,0);-ms-transform:matrix(0.293969,0.006467,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.293969,0.006467,-0.005499,0.249940,0,0);}
.m7a_c01272{transform:matrix(0.294059,0.006469,-0.005499,0.249940,0,0);-ms-transform:matrix(0.294059,0.006469,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.294059,0.006469,-0.005499,0.249940,0,0);}
.m1b_c01272{transform:matrix(0.297607,0.007440,-0.006248,0.249922,0,0);-ms-transform:matrix(0.297607,0.007440,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.297607,0.007440,-0.006248,0.249922,0,0);}
.m76_c01272{transform:matrix(0.300187,0.006604,-0.005499,0.249940,0,0);-ms-transform:matrix(0.300187,0.006604,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.300187,0.006604,-0.005499,0.249940,0,0);}
.m24_c01272{transform:matrix(0.303030,0.007576,-0.006248,0.249922,0,0);-ms-transform:matrix(0.303030,0.007576,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.303030,0.007576,-0.006248,0.249922,0,0);}
.m35_c01272{transform:matrix(0.306454,0.006129,-0.004999,0.249950,0,0);-ms-transform:matrix(0.306454,0.006129,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.306454,0.006129,-0.004999,0.249950,0,0);}
.m23_c01272{transform:matrix(0.311383,0.007785,-0.006248,0.249922,0,0);-ms-transform:matrix(0.311383,0.007785,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.311383,0.007785,-0.006248,0.249922,0,0);}
.m9d_c01272{transform:matrix(0.337346,0.008771,-0.006498,0.249916,0,0);-ms-transform:matrix(0.337346,0.008771,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.337346,0.008771,-0.006498,0.249916,0,0);}
.m83_c01272{transform:matrix(0.339827,0.005097,-0.003750,0.249972,0,0);-ms-transform:matrix(0.339827,0.005097,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.339827,0.005097,-0.003750,0.249972,0,0);}
.mde_c01272{transform:matrix(0.344745,0.009653,-0.006997,0.249902,0,0);-ms-transform:matrix(0.344745,0.009653,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.344745,0.009653,-0.006997,0.249902,0,0);}
.m11b_c01272{transform:matrix(0.383076,0.008045,-0.005249,0.249945,0,0);-ms-transform:matrix(0.383076,0.008045,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.383076,0.008045,-0.005249,0.249945,0,0);}
.m34_c01272{transform:matrix(0.386103,0.007722,-0.004999,0.249950,0,0);-ms-transform:matrix(0.386103,0.007722,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.386103,0.007722,-0.004999,0.249950,0,0);}
.m85_c01272{transform:matrix(0.547878,0.008218,-0.003750,0.249972,0,0);-ms-transform:matrix(0.547878,0.008218,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.547878,0.008218,-0.003750,0.249972,0,0);}
.m11f_c01272{transform:matrix(0.556722,0.011691,-0.005249,0.249945,0,0);-ms-transform:matrix(0.556722,0.011691,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.556722,0.011691,-0.005249,0.249945,0,0);}
.m117_c01272{transform:matrix(0.564845,0.011862,-0.005249,0.249945,0,0);-ms-transform:matrix(0.564845,0.011862,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.564845,0.011862,-0.005249,0.249945,0,0);}
.m11d_c01272{transform:matrix(0.597813,0.012554,-0.005249,0.249945,0,0);-ms-transform:matrix(0.597813,0.012554,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.597813,0.012554,-0.005249,0.249945,0,0);}
.m11a_c01272{transform:matrix(0.600243,0.012605,-0.005249,0.249945,0,0);-ms-transform:matrix(0.600243,0.012605,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.600243,0.012605,-0.005249,0.249945,0,0);}
.m121_c01272{transform:matrix(0.653906,0.013732,-0.005249,0.249945,0,0);-ms-transform:matrix(0.653906,0.013732,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.653906,0.013732,-0.005249,0.249945,0,0);}
.m11c_c01272{transform:matrix(0.980019,0.020580,-0.005249,0.249945,0,0);-ms-transform:matrix(0.980019,0.020580,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.980019,0.020580,-0.005249,0.249945,0,0);}
.m115_c01272{transform:matrix(1.094654,0.022988,-0.005249,0.249945,0,0);-ms-transform:matrix(1.094654,0.022988,-0.005249,0.249945,0,0);-webkit-transform:matrix(1.094654,0.022988,-0.005249,0.249945,0,0);}
.m118_c01272{transform:matrix(1.374272,0.028860,-0.005249,0.249945,0,0);-ms-transform:matrix(1.374272,0.028860,-0.005249,0.249945,0,0);-webkit-transform:matrix(1.374272,0.028860,-0.005249,0.249945,0,0);}
.m119_c01272{transform:matrix(1.466582,0.030798,-0.005249,0.249945,0,0);-ms-transform:matrix(1.466582,0.030798,-0.005249,0.249945,0,0);-webkit-transform:matrix(1.466582,0.030798,-0.005249,0.249945,0,0);}
.m82_c01272{transform:matrix(4.991693,0.074875,-0.003750,0.249972,0,0);-ms-transform:matrix(4.991693,0.074875,-0.003750,0.249972,0,0);-webkit-transform:matrix(4.991693,0.074875,-0.003750,0.249972,0,0);}
.v0_c01272{vertical-align:0.000000px;}
.ls0_c01272{letter-spacing:0.000000px;}
.sc__c01272{text-shadow:none;}
.sc0_c01272{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__c01272{-webkit-text-stroke:0px transparent;}
.sc0_c01272{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01272{word-spacing:0.000000px;}
.fc0_c01272{color:transparent;}
.fs1a_c01272{font-size:24.005291px;}
.fs8_c01272{font-size:66.000000px;}
.fsb_c01272{font-size:66.015970px;}
.fs3_c01272{font-size:66.020622px;}
.fs1_c01272{font-size:72.000000px;}
.fsc_c01272{font-size:72.008100px;}
.fs6_c01272{font-size:72.014399px;}
.fs7_c01272{font-size:72.020733px;}
.fse_c01272{font-size:72.024332px;}
.fs5_c01272{font-size:72.028218px;}
.fs12_c01272{font-size:72.030270px;}
.fs15_c01272{font-size:72.034588px;}
.fsd_c01272{font-size:78.008775px;}
.fs2_c01272{font-size:78.015598px;}
.fsa_c01272{font-size:78.018874px;}
.fs4_c01272{font-size:78.024371px;}
.fs10_c01272{font-size:78.026360px;}
.fs14_c01272{font-size:78.030570px;}
.fs11_c01272{font-size:78.032792px;}
.fs17_c01272{font-size:78.037470px;}
.fs0_c01272{font-size:84.000000px;}
.fs9_c01272{font-size:84.020326px;}
.fsf_c01272{font-size:84.028387px;}
.fs13_c01272{font-size:84.032922px;}
.fs19_c01272{font-size:89.968359px;}
.fs16_c01272{font-size:90.043235px;}
.fs18_c01272{font-size:96.046117px;}
.y0_c01272{bottom:0.000000px;}
.y11c_c01272{bottom:0.155281px;}
.y11b_c01272{bottom:0.676449px;}
.y11a_c01272{bottom:1.079649px;}
.y119_c01272{bottom:1.289628px;}
.y118_c01272{bottom:1.732014px;}
.y117_c01272{bottom:2.333254px;}
.y116_c01272{bottom:2.482060px;}
.y115_c01272{bottom:2.797848px;}
.y114_c01272{bottom:3.660318px;}
.y113_c01272{bottom:5.617476px;}
.y112_c01272{bottom:6.087991px;}
.y111_c01272{bottom:6.405448px;}
.y110_c01272{bottom:7.290000px;}
.y10f_c01272{bottom:27.666876px;}
.y10e_c01272{bottom:30.213948px;}
.y10d_c01272{bottom:34.267080px;}
.y10c_c01272{bottom:36.289974px;}
.y10b_c01272{bottom:37.466040px;}
.y10a_c01272{bottom:41.400102px;}
.y109_c01272{bottom:43.054230px;}
.y108_c01272{bottom:47.823402px;}
.y107_c01272{bottom:49.426500px;}
.y106_c01272{bottom:73.589013px;}
.y105_c01272{bottom:74.484802px;}
.y104_c01272{bottom:77.196396px;}
.y103_c01272{bottom:78.979558px;}
.y102_c01272{bottom:79.910919px;}
.y101_c01272{bottom:82.590103px;}
.y100_c01272{bottom:83.464667px;}
.yff_c01272{bottom:84.914029px;}
.yfe_c01272{bottom:85.815991px;}
.yfd_c01272{bottom:102.087460px;}
.yfc_c01272{bottom:103.223052px;}
.yfb_c01272{bottom:105.233824px;}
.yfa_c01272{bottom:106.687880px;}
.yf9_c01272{bottom:108.164079px;}
.yf8_c01272{bottom:109.625237px;}
.yf7_c01272{bottom:110.501580px;}
.yf6_c01272{bottom:111.620468px;}
.yf5_c01272{bottom:113.594286px;}
.yf4_c01272{bottom:114.175811px;}
.yf3_c01272{bottom:115.629447px;}
.yf2_c01272{bottom:116.233721px;}
.yf1_c01272{bottom:118.220395px;}
.yf0_c01272{bottom:119.314999px;}
.yef_c01272{bottom:138.536037px;}
.yee_c01272{bottom:139.533337px;}
.yed_c01272{bottom:141.510687px;}
.yec_c01272{bottom:142.557451px;}
.yeb_c01272{bottom:143.543360px;}
.yea_c01272{bottom:145.555944px;}
.ye9_c01272{bottom:147.208389px;}
.ye8_c01272{bottom:149.225577px;}
.ye7_c01272{bottom:151.881181px;}
.ye6_c01272{bottom:153.533626px;}
.ye5_c01272{bottom:157.115259px;}
.ye4_c01272{bottom:158.481906px;}
.ye3_c01272{bottom:176.219362px;}
.ye2_c01272{bottom:177.234504px;}
.ye1_c01272{bottom:179.260881px;}
.ye0_c01272{bottom:180.648859px;}
.ydf_c01272{bottom:182.402793px;}
.yde_c01272{bottom:183.465550px;}
.ydd_c01272{bottom:186.853261px;}
.ydc_c01272{bottom:190.289518px;}
.ydb_c01272{bottom:191.712000px;}
.yda_c01272{bottom:218.771046px;}
.yd9_c01272{bottom:220.577778px;}
.yd8_c01272{bottom:221.246970px;}
.yd7_c01272{bottom:222.370290px;}
.yd6_c01272{bottom:224.547012px;}
.yd5_c01272{bottom:226.506276px;}
.yd4_c01272{bottom:245.988486px;}
.yd3_c01272{bottom:247.603110px;}
.yd2_c01272{bottom:249.174948px;}
.yd1_c01272{bottom:251.505132px;}
.yd0_c01272{bottom:254.066886px;}
.ycf_c01272{bottom:255.665718px;}
.yce_c01272{bottom:256.988484px;}
.ycd_c01272{bottom:260.168226px;}
.ycc_c01272{bottom:261.139380px;}
.ycb_c01272{bottom:263.034564px;}
.yca_c01272{bottom:263.677362px;}
.yc9_c01272{bottom:265.946418px;}
.yc8_c01272{bottom:281.880600px;}
.yc7_c01272{bottom:284.410134px;}
.yc6_c01272{bottom:285.348036px;}
.yc5_c01272{bottom:287.231652px;}
.yc4_c01272{bottom:288.159474px;}
.yc3_c01272{bottom:289.712046px;}
.yc2_c01272{bottom:290.632308px;}
.yc1_c01272{bottom:293.387508px;}
.yc0_c01272{bottom:294.983928px;}
.ybf_c01272{bottom:295.585746px;}
.ybe_c01272{bottom:297.154488px;}
.ybd_c01272{bottom:298.090500px;}
.ybc_c01272{bottom:331.260801px;}
.ybb_c01272{bottom:353.444751px;}
.yba_c01272{bottom:354.278781px;}
.yb9_c01272{bottom:355.180435px;}
.yb8_c01272{bottom:357.223509px;}
.yb7_c01272{bottom:357.769813px;}
.yb6_c01272{bottom:361.227567px;}
.yb5_c01272{bottom:362.406463px;}
.yb4_c01272{bottom:364.156308px;}
.yb3_c01272{bottom:365.876832px;}
.yb2_c01272{bottom:366.998370px;}
.yb1_c01272{bottom:367.871095px;}
.yb0_c01272{bottom:369.300414px;}
.yaf_c01272{bottom:370.431327px;}
.yae_c01272{bottom:387.978493px;}
.yad_c01272{bottom:388.928794px;}
.yac_c01272{bottom:390.873897px;}
.yab_c01272{bottom:392.785417px;}
.yaa_c01272{bottom:393.448183px;}
.ya9_c01272{bottom:395.072082px;}
.ya8_c01272{bottom:396.028168px;}
.ya7_c01272{bottom:396.973162px;}
.ya6_c01272{bottom:400.179982px;}
.ya5_c01272{bottom:402.459817px;}
.ya4_c01272{bottom:403.390500px;}
.ya3_c01272{bottom:436.959444px;}
.ya2_c01272{bottom:459.696612px;}
.ya1_c01272{bottom:460.600170px;}
.ya0_c01272{bottom:463.017105px;}
.y9f_c01272{bottom:463.912122px;}
.y9e_c01272{bottom:465.730176px;}
.y9d_c01272{bottom:466.640754px;}
.y9c_c01272{bottom:468.725013px;}
.y9b_c01272{bottom:469.627245px;}
.y9a_c01272{bottom:471.669951px;}
.y99_c01272{bottom:473.177694px;}
.y98_c01272{bottom:474.374325px;}
.y97_c01272{bottom:474.734145px;}
.y96_c01272{bottom:477.341628px;}
.y95_c01272{bottom:494.306757px;}
.y94_c01272{bottom:495.268788px;}
.y93_c01272{bottom:496.761648px;}
.y92_c01272{bottom:497.499642px;}
.y91_c01272{bottom:499.930641px;}
.y90_c01272{bottom:501.629010px;}
.y8f_c01272{bottom:502.109577px;}
.y8e_c01272{bottom:503.336271px;}
.y8d_c01272{bottom:504.553800px;}
.y8c_c01272{bottom:505.069824px;}
.y8b_c01272{bottom:507.451734px;}
.y8a_c01272{bottom:508.213620px;}
.y89_c01272{bottom:508.944417px;}
.y88_c01272{bottom:531.793479px;}
.y87_c01272{bottom:535.244589px;}
.y86_c01272{bottom:536.430930px;}
.y85_c01272{bottom:538.150440px;}
.y84_c01272{bottom:540.741756px;}
.y83_c01272{bottom:541.596831px;}
.y82_c01272{bottom:543.334203px;}
.y81_c01272{bottom:544.766166px;}
.y80_c01272{bottom:545.679000px;}
.y7f_c01272{bottom:569.999250px;}
.y7e_c01272{bottom:569.999932px;}
.y7d_c01272{bottom:570.000315px;}
.y7c_c01272{bottom:570.000915px;}
.y7b_c01272{bottom:576.363023px;}
.y7a_c01272{bottom:577.529828px;}
.y79_c01272{bottom:578.194185px;}
.y78_c01272{bottom:579.190867px;}
.y77_c01272{bottom:579.851130px;}
.y76_c01272{bottom:580.174297px;}
.y75_c01272{bottom:581.313000px;}
.y74_c01272{bottom:610.735728px;}
.y73_c01272{bottom:612.208371px;}
.y72_c01272{bottom:612.824001px;}
.y71_c01272{bottom:613.460259px;}
.y70_c01272{bottom:614.947821px;}
.y6f_c01272{bottom:615.552939px;}
.y6e_c01272{bottom:616.820124px;}
.y6d_c01272{bottom:617.205426px;}
.y6c_c01272{bottom:648.906030px;}
.y6b_c01272{bottom:649.983039px;}
.y6a_c01272{bottom:650.433399px;}
.y69_c01272{bottom:651.503523px;}
.y68_c01272{bottom:680.161515px;}
.y67_c01272{bottom:681.668295px;}
.y66_c01272{bottom:683.379378px;}
.y65_c01272{bottom:684.354231px;}
.y64_c01272{bottom:685.809564px;}
.y63_c01272{bottom:686.283213px;}
.y62_c01272{bottom:687.967500px;}
.y61_c01272{bottom:719.964000px;}
.y60_c01272{bottom:746.149908px;}
.y5f_c01272{bottom:746.959224px;}
.y5e_c01272{bottom:748.288020px;}
.y5d_c01272{bottom:749.080848px;}
.y5c_c01272{bottom:749.890920px;}
.y5b_c01272{bottom:752.275668px;}
.y5a_c01272{bottom:753.086532px;}
.y59_c01272{bottom:754.402692px;}
.y58_c01272{bottom:756.002784px;}
.y57_c01272{bottom:757.357500px;}
.y56_c01272{bottom:787.647240px;}
.y55_c01272{bottom:788.158290px;}
.y54_c01272{bottom:788.659890px;}
.y53_c01272{bottom:789.643830px;}
.y52_c01272{bottom:790.150980px;}
.y51_c01272{bottom:790.473780px;}
.y50_c01272{bottom:791.612460px;}
.y4f_c01272{bottom:817.750200px;}
.y4e_c01272{bottom:818.398170px;}
.y4d_c01272{bottom:819.726960px;}
.y4c_c01272{bottom:820.402140px;}
.y4b_c01272{bottom:821.525880px;}
.y4a_c01272{bottom:822.395220px;}
.y49_c01272{bottom:823.718490px;}
.y48_c01272{bottom:825.284940px;}
.y47_c01272{bottom:826.160100px;}
.y46_c01272{bottom:828.341040px;}
.y45_c01272{bottom:854.564400px;}
.y44_c01272{bottom:855.882480px;}
.y43_c01272{bottom:857.681070px;}
.y42_c01272{bottom:858.318480px;}
.y41_c01272{bottom:859.663470px;}
.y40_c01272{bottom:861.213600px;}
.y3f_c01272{bottom:862.104750px;}
.y3e_c01272{bottom:864.258600px;}
.y3d_c01272{bottom:889.342830px;}
.y3c_c01272{bottom:890.450940px;}
.y3b_c01272{bottom:891.288600px;}
.y3a_c01272{bottom:893.516340px;}
.y39_c01272{bottom:894.326790px;}
.y38_c01272{bottom:895.960830px;}
.y37_c01272{bottom:897.676290px;}
.y36_c01272{bottom:899.592300px;}
.y35_c01272{bottom:900.700140px;}
.y34_c01272{bottom:903.418350px;}
.y33_c01272{bottom:927.659850px;}
.y32_c01272{bottom:928.274790px;}
.y31_c01272{bottom:929.592570px;}
.y30_c01272{bottom:930.699900px;}
.y2f_c01272{bottom:932.044770px;}
.y2e_c01272{bottom:933.589500px;}
.y2d_c01272{bottom:934.469850px;}
.y2c_c01272{bottom:936.634500px;}
.y2b_c01272{bottom:967.448790px;}
.y2a_c01272{bottom:969.611160px;}
.y29_c01272{bottom:970.843398px;}
.y28_c01272{bottom:973.896000px;}
.y27_c01272{bottom:1001.612437px;}
.y26_c01272{bottom:1002.848775px;}
.y25_c01272{bottom:1003.362713px;}
.y24_c01272{bottom:1004.413088px;}
.y23_c01272{bottom:1005.471788px;}
.y22_c01272{bottom:1028.908500px;}
.y21_c01272{bottom:1032.013388px;}
.y20_c01272{bottom:1032.850463px;}
.y1f_c01272{bottom:1034.241713px;}
.y1e_c01272{bottom:1035.362363px;}
.y1d_c01272{bottom:1036.192875px;}
.y1c_c01272{bottom:1037.831775px;}
.y1b_c01272{bottom:1038.934050px;}
.y1a_c01272{bottom:1039.770788px;}
.y19_c01272{bottom:1042.476000px;}
.y18_c01272{bottom:1065.199110px;}
.y17_c01272{bottom:1066.276620px;}
.y16_c01272{bottom:1066.695720px;}
.y15_c01272{bottom:1068.399720px;}
.y14_c01272{bottom:1069.646610px;}
.y13_c01272{bottom:1071.360810px;}
.y12_c01272{bottom:1071.975990px;}
.y11_c01272{bottom:1073.202360px;}
.y10_c01272{bottom:1074.484410px;}
.yf_c01272{bottom:1075.946430px;}
.ye_c01272{bottom:1098.503130px;}
.yd_c01272{bottom:1099.831920px;}
.yc_c01272{bottom:1100.512620px;}
.yb_c01272{bottom:1101.175620px;}
.ya_c01272{bottom:1102.532700px;}
.y9_c01272{bottom:1104.077220px;}
.y8_c01272{bottom:1104.747240px;}
.y7_c01272{bottom:1105.849470px;}
.y6_c01272{bottom:1107.176730px;}
.y5_c01272{bottom:1108.522890px;}
.y4_c01272{bottom:1109.176170px;}
.y3_c01272{bottom:1111.324500px;}
.y2_c01272{bottom:1144.425000px;}
.y1_c01272{bottom:1218.631500px;}
.h1c_c01272{height:24.005291px;}
.ha_c01272{height:66.000000px;}
.hd_c01272{height:66.015970px;}
.h5_c01272{height:66.020622px;}
.h3_c01272{height:72.000000px;}
.he_c01272{height:72.008100px;}
.h8_c01272{height:72.014399px;}
.h9_c01272{height:72.020733px;}
.h10_c01272{height:72.024332px;}
.h7_c01272{height:72.028218px;}
.h14_c01272{height:72.030270px;}
.h17_c01272{height:72.034588px;}
.hf_c01272{height:78.008775px;}
.h4_c01272{height:78.015598px;}
.hc_c01272{height:78.018874px;}
.h6_c01272{height:78.024371px;}
.h12_c01272{height:78.026360px;}
.h16_c01272{height:78.030570px;}
.h13_c01272{height:78.032792px;}
.h19_c01272{height:78.037470px;}
.h2_c01272{height:84.000000px;}
.hb_c01272{height:84.020326px;}
.h11_c01272{height:84.028387px;}
.h15_c01272{height:84.032922px;}
.h1b_c01272{height:89.968359px;}
.h18_c01272{height:90.043235px;}
.h1a_c01272{height:96.046117px;}
.h1_c01272{height:1250.250000px;}
.h0_c01272{height:1250.370000px;}
.w1_c01272{width:888.750000px;}
.w0_c01272{width:889.050000px;}
.x0_c01272{left:0.000000px;}
.x99_c01272{left:151.674966px;}
.xa0_c01272{left:153.649554px;}
.x84_c01272{left:154.694041px;}
.x6f_c01272{left:156.536187px;}
.x4c_c01272{left:162.000000px;}
.x12_c01272{left:167.179290px;}
.x3_c01272{left:170.370000px;}
.x5f_c01272{left:181.237500px;}
.x51_c01272{left:182.434500px;}
.xb3_c01272{left:184.081904px;}
.x37_c01272{left:185.517120px;}
.x33_c01272{left:186.607620px;}
.x24_c01272{left:187.693500px;}
.x1b_c01272{left:190.134000px;}
.x6_c01272{left:192.018000px;}
.x4d_c01272{left:194.400000px;}
.xa7_c01272{left:196.435353px;}
.x85_c01272{left:198.194826px;}
.x59_c01272{left:201.987474px;}
.x70_c01272{left:224.338707px;}
.x9a_c01272{left:229.924782px;}
.x22_c01272{left:232.546013px;}
.xb4_c01272{left:237.761553px;}
.x13_c01272{left:244.106820px;}
.x9b_c01272{left:252.077652px;}
.x77_c01272{left:253.434780px;}
.x60_c01272{left:257.151000px;}
.x52_c01272{left:258.993000px;}
.xa2_c01272{left:260.157000px;}
.x3d_c01272{left:261.203340px;}
.x8f_c01272{left:262.354500px;}
.x67_c01272{left:265.869000px;}
.x5a_c01272{left:268.659363px;}
.x42_c01272{left:269.689500px;}
.xad_c01272{left:271.274593px;}
.x4_c01272{left:278.910000px;}
.x53_c01272{left:280.522500px;}
.x3e_c01272{left:282.745500px;}
.x86_c01272{left:286.738525px;}
.x4e_c01272{left:291.600000px;}
.x34_c01272{left:294.300120px;}
.x2c_c01272{left:295.652760px;}
.x25_c01272{left:296.715000px;}
.x1c_c01272{left:298.342500px;}
.x7_c01272{left:299.434500px;}
.x5b_c01272{left:300.530475px;}
.xba_c01272{left:303.489469px;}
.xa3_c01272{left:306.043500px;}
.x14_c01272{left:311.585670px;}
.x4f_c01272{left:315.360000px;}
.x3f_c01272{left:316.506360px;}
.x5_c01272{left:322.380000px;}
.x43_c01272{left:326.136000px;}
.x23_c01272{left:330.300488px;}
.x8_c01272{left:332.098500px;}
.x35_c01272{left:338.857620px;}
.x26_c01272{left:340.723500px;}
.x54_c01272{left:346.674000px;}
.xae_c01272{left:350.396823px;}
.x90_c01272{left:351.810000px;}
.x68_c01272{left:356.053500px;}
.x50_c01272{left:358.290000px;}
.xa1_c01272{left:360.445338px;}
.x58_c01272{left:367.800237px;}
.xb5_c01272{left:369.350328px;}
.xa8_c01272{left:370.943294px;}
.x91_c01272{left:373.303500px;}
.x15_c01272{left:376.130460px;}
.x5c_c01272{left:378.856656px;}
.x40_c01272{left:382.134930px;}
.x61_c01272{left:389.158500px;}
.x55_c01272{left:390.985500px;}
.x44_c01272{left:392.806500px;}
.x87_c01272{left:396.026008px;}
.x9_c01272{left:399.406500px;}
.xc0_c01272{left:402.535500px;}
.xb6_c01272{left:403.850106px;}
.x16_c01272{left:408.540120px;}
.x1_c01272{left:412.020000px;}
.x2d_c01272{left:416.608170px;}
.x27_c01272{left:417.951000px;}
.x69_c01272{left:422.875500px;}
.x92_c01272{left:430.318500px;}
.x62_c01272{left:433.449000px;}
.x2_c01272{left:435.240000px;}
.x1d_c01272{left:441.459000px;}
.x78_c01272{left:442.579866px;}
.x5d_c01272{left:444.765012px;}
.x45_c01272{left:447.646500px;}
.x41_c01272{left:449.649180px;}
.x6a_c01272{left:455.763000px;}
.x64_c01272{left:460.109580px;}
.x88_c01272{left:463.302337px;}
.xa_c01272{left:465.769500px;}
.x71_c01272{left:467.158440px;}
.x56_c01272{left:468.762000px;}
.xb7_c01272{left:469.895790px;}
.x1e_c01272{left:474.679500px;}
.x79_c01272{left:476.011008px;}
.x46_c01272{left:481.432500px;}
.x38_c01272{left:482.808120px;}
.x28_c01272{left:484.440000px;}
.x7f_c01272{left:486.592500px;}
.x72_c01272{left:488.990202px;}
.xaf_c01272{left:491.684178px;}
.x17_c01272{left:498.751920px;}
.x65_c01272{left:500.344125px;}
.x9c_c01272{left:506.190054px;}
.x89_c01272{left:508.664796px;}
.x63_c01272{left:511.236000px;}
.x36_c01272{left:515.484120px;}
.x1f_c01272{left:519.505500px;}
.xb_c01272{left:520.881000px;}
.x5e_c01272{left:522.276627px;}
.x39_c01272{left:526.275120px;}
.x93_c01272{left:528.718500px;}
.x57_c01272{left:537.252000px;}
.x29_c01272{left:539.806500px;}
.x66_c01272{left:542.199030px;}
.x2e_c01272{left:550.544760px;}
.x80_c01272{left:552.147000px;}
.x7a_c01272{left:553.230519px;}
.xc_c01272{left:554.382000px;}
.x6b_c01272{left:555.429000px;}
.xa4_c01272{left:560.454000px;}
.x94_c01272{left:561.585000px;}
.x18_c01272{left:564.397740px;}
.x73_c01272{left:566.204736px;}
.xb8_c01272{left:570.346752px;}
.x20_c01272{left:575.155500px;}
.x47_c01272{left:580.797000px;}
.xa9_c01272{left:581.812350px;}
.x2f_c01272{left:582.964020px;}
.x7b_c01272{left:586.982661px;}
.xbb_c01272{left:590.906265px;}
.xb9_c01272{left:603.505344px;}
.x2a_c01272{left:605.695500px;}
.x21_c01272{left:608.638500px;}
.x48_c01272{left:614.550000px;}
.x3a_c01272{left:616.221120px;}
.x6c_c01272{left:621.564000px;}
.xbc_c01272{left:623.542096px;}
.xd_c01272{left:631.608000px;}
.x2b_c01272{left:636.442500px;}
.xb0_c01272{left:638.342370px;}
.x8a_c01272{left:641.667867px;}
.x49_c01272{left:647.584500px;}
.xaa_c01272{left:648.913943px;}
.x95_c01272{left:650.170500px;}
.x19_c01272{left:654.099540px;}
.x8b_c01272{left:662.680194px;}
.x6d_c01272{left:667.192500px;}
.x30_c01272{left:672.067110px;}
.x1a_c01272{left:676.179990px;}
.xbd_c01272{left:679.677405px;}
.x3b_c01272{left:682.660620px;}
.x7c_c01272{left:687.463548px;}
.xb1_c01272{left:694.256019px;}
.x81_c01272{left:696.912000px;}
.xc1_c01272{left:698.266500px;}
.xe_c01272{left:699.462000px;}
.x4a_c01272{left:702.951000px;}
.x31_c01272{left:705.546750px;}
.x74_c01272{left:710.200173px;}
.x3c_c01272{left:715.059120px;}
.x96_c01272{left:717.442500px;}
.xa5_c01272{left:727.173000px;}
.x9d_c01272{left:729.961254px;}
.xf_c01272{left:732.612000px;}
.x4b_c01272{left:736.672500px;}
.x8c_c01272{left:741.258523px;}
.xc2_c01272{left:742.284000px;}
.x32_c01272{left:749.847810px;}
.x97_c01272{left:750.939000px;}
.xa6_c01272{left:759.919500px;}
.x82_c01272{left:763.984500px;}
.x10_c01272{left:766.647000px;}
.xb2_c01272{left:771.615516px;}
.x8d_c01272{left:775.922025px;}
.x7d_c01272{left:776.958708px;}
.x75_c01272{left:778.067232px;}
.xab_c01272{left:782.580081px;}
.x9e_c01272{left:784.168242px;}
.xbe_c01272{left:792.151818px;}
.x83_c01272{left:796.753500px;}
.x6e_c01272{left:799.927500px;}
.x8e_c01272{left:807.994809px;}
.x7e_c01272{left:810.440850px;}
.xac_c01272{left:815.816604px;}
.x76_c01272{left:821.765256px;}
.x11_c01272{left:833.086500px;}
.x9f_c01272{left:839.849688px;}
.x98_c01272{left:841.279500px;}
.xbf_c01272{left:862.833066px;}
@media print{
.v0_c01272{vertical-align:0.000000pt;}
.ls0_c01272{letter-spacing:0.000000pt;}
.ws0_c01272{word-spacing:0.000000pt;}
.fs1a_c01272{font-size:21.338037pt;}
.fs8_c01272{font-size:58.666667pt;}
.fsb_c01272{font-size:58.680862pt;}
.fs3_c01272{font-size:58.684997pt;}
.fs1_c01272{font-size:64.000000pt;}
.fsc_c01272{font-size:64.007200pt;}
.fs6_c01272{font-size:64.012799pt;}
.fs7_c01272{font-size:64.018429pt;}
.fse_c01272{font-size:64.021628pt;}
.fs5_c01272{font-size:64.025083pt;}
.fs12_c01272{font-size:64.026906pt;}
.fs15_c01272{font-size:64.030745pt;}
.fsd_c01272{font-size:69.341133pt;}
.fs2_c01272{font-size:69.347199pt;}
.fsa_c01272{font-size:69.350110pt;}
.fs4_c01272{font-size:69.354997pt;}
.fs10_c01272{font-size:69.356764pt;}
.fs14_c01272{font-size:69.360507pt;}
.fs11_c01272{font-size:69.362482pt;}
.fs17_c01272{font-size:69.366640pt;}
.fs0_c01272{font-size:74.666667pt;}
.fs9_c01272{font-size:74.684734pt;}
.fsf_c01272{font-size:74.691900pt;}
.fs13_c01272{font-size:74.695930pt;}
.fs19_c01272{font-size:79.971875pt;}
.fs16_c01272{font-size:80.038431pt;}
.fs18_c01272{font-size:85.374326pt;}
.y0_c01272{bottom:0.000000pt;}
.y11c_c01272{bottom:0.138028pt;}
.y11b_c01272{bottom:0.601288pt;}
.y11a_c01272{bottom:0.959688pt;}
.y119_c01272{bottom:1.146336pt;}
.y118_c01272{bottom:1.539568pt;}
.y117_c01272{bottom:2.074004pt;}
.y116_c01272{bottom:2.206276pt;}
.y115_c01272{bottom:2.486976pt;}
.y114_c01272{bottom:3.253616pt;}
.y113_c01272{bottom:4.993312pt;}
.y112_c01272{bottom:5.411548pt;}
.y111_c01272{bottom:5.693732pt;}
.y110_c01272{bottom:6.480000pt;}
.y10f_c01272{bottom:24.592779pt;}
.y10e_c01272{bottom:26.856843pt;}
.y10d_c01272{bottom:30.459627pt;}
.y10c_c01272{bottom:32.257755pt;}
.y10b_c01272{bottom:33.303147pt;}
.y10a_c01272{bottom:36.800091pt;}
.y109_c01272{bottom:38.270427pt;}
.y108_c01272{bottom:42.509691pt;}
.y107_c01272{bottom:43.934667pt;}
.y106_c01272{bottom:65.412456pt;}
.y105_c01272{bottom:66.208713pt;}
.y104_c01272{bottom:68.619019pt;}
.y103_c01272{bottom:70.204052pt;}
.y102_c01272{bottom:71.031928pt;}
.y101_c01272{bottom:73.413425pt;}
.y100_c01272{bottom:74.190815pt;}
.yff_c01272{bottom:75.479137pt;}
.yfe_c01272{bottom:76.280881pt;}
.yfd_c01272{bottom:90.744409pt;}
.yfc_c01272{bottom:91.753824pt;}
.yfb_c01272{bottom:93.541177pt;}
.yfa_c01272{bottom:94.833671pt;}
.yf9_c01272{bottom:96.145848pt;}
.yf8_c01272{bottom:97.444655pt;}
.yf7_c01272{bottom:98.223627pt;}
.yf6_c01272{bottom:99.218193pt;}
.yf5_c01272{bottom:100.972699pt;}
.yf4_c01272{bottom:101.489609pt;}
.yf3_c01272{bottom:102.781731pt;}
.yf2_c01272{bottom:103.318863pt;}
.yf1_c01272{bottom:105.084796pt;}
.yf0_c01272{bottom:106.057777pt;}
.yef_c01272{bottom:123.143144pt;}
.yee_c01272{bottom:124.029633pt;}
.yed_c01272{bottom:125.787277pt;}
.yec_c01272{bottom:126.717735pt;}
.yeb_c01272{bottom:127.594097pt;}
.yea_c01272{bottom:129.383061pt;}
.ye9_c01272{bottom:130.851901pt;}
.ye8_c01272{bottom:132.644957pt;}
.ye7_c01272{bottom:135.005495pt;}
.ye6_c01272{bottom:136.474335pt;}
.ye5_c01272{bottom:139.658008pt;}
.ye4_c01272{bottom:140.872805pt;}
.ye3_c01272{bottom:156.639433pt;}
.ye2_c01272{bottom:157.541781pt;}
.ye1_c01272{bottom:159.343005pt;}
.ye0_c01272{bottom:160.576764pt;}
.ydf_c01272{bottom:162.135816pt;}
.yde_c01272{bottom:163.080489pt;}
.ydd_c01272{bottom:166.091788pt;}
.ydc_c01272{bottom:169.146239pt;}
.ydb_c01272{bottom:170.410667pt;}
.yda_c01272{bottom:194.463152pt;}
.yd9_c01272{bottom:196.069136pt;}
.yd8_c01272{bottom:196.663973pt;}
.yd7_c01272{bottom:197.662480pt;}
.yd6_c01272{bottom:199.597344pt;}
.yd5_c01272{bottom:201.338912pt;}
.yd4_c01272{bottom:218.656432pt;}
.yd3_c01272{bottom:220.091653pt;}
.yd2_c01272{bottom:221.488843pt;}
.yd1_c01272{bottom:223.560117pt;}
.yd0_c01272{bottom:225.837232pt;}
.ycf_c01272{bottom:227.258416pt;}
.yce_c01272{bottom:228.434208pt;}
.ycd_c01272{bottom:231.260645pt;}
.ycc_c01272{bottom:232.123893pt;}
.ycb_c01272{bottom:233.808501pt;}
.yca_c01272{bottom:234.379877pt;}
.yc9_c01272{bottom:236.396816pt;}
.yc8_c01272{bottom:250.560533pt;}
.yc7_c01272{bottom:252.809008pt;}
.yc6_c01272{bottom:253.642699pt;}
.yc5_c01272{bottom:255.317024pt;}
.yc4_c01272{bottom:256.141755pt;}
.yc3_c01272{bottom:257.521819pt;}
.yc2_c01272{bottom:258.339829pt;}
.yc1_c01272{bottom:260.788896pt;}
.yc0_c01272{bottom:262.207936pt;}
.ybf_c01272{bottom:262.742885pt;}
.ybe_c01272{bottom:264.137323pt;}
.ybd_c01272{bottom:264.969333pt;}
.ybc_c01272{bottom:294.454045pt;}
.ybb_c01272{bottom:314.173112pt;}
.yba_c01272{bottom:314.914472pt;}
.yb9_c01272{bottom:315.715943pt;}
.yb8_c01272{bottom:317.532008pt;}
.yb7_c01272{bottom:318.017612pt;}
.yb6_c01272{bottom:321.091171pt;}
.yb5_c01272{bottom:322.139079pt;}
.yb4_c01272{bottom:323.694496pt;}
.yb3_c01272{bottom:325.223851pt;}
.yb2_c01272{bottom:326.220773pt;}
.yb1_c01272{bottom:326.996529pt;}
.yb0_c01272{bottom:328.267035pt;}
.yaf_c01272{bottom:329.272291pt;}
.yae_c01272{bottom:344.869772pt;}
.yad_c01272{bottom:345.714484pt;}
.yac_c01272{bottom:347.443464pt;}
.yab_c01272{bottom:349.142593pt;}
.yaa_c01272{bottom:349.731719pt;}
.ya9_c01272{bottom:351.175184pt;}
.ya8_c01272{bottom:352.025039pt;}
.ya7_c01272{bottom:352.865033pt;}
.ya6_c01272{bottom:355.715540pt;}
.ya5_c01272{bottom:357.742060pt;}
.ya4_c01272{bottom:358.569333pt;}
.ya3_c01272{bottom:388.408395pt;}
.ya2_c01272{bottom:408.619211pt;}
.ya1_c01272{bottom:409.422373pt;}
.ya0_c01272{bottom:411.570760pt;}
.y9f_c01272{bottom:412.366331pt;}
.y9e_c01272{bottom:413.982379pt;}
.y9d_c01272{bottom:414.791781pt;}
.y9c_c01272{bottom:416.644456pt;}
.y9b_c01272{bottom:417.446440pt;}
.y9a_c01272{bottom:419.262179pt;}
.y99_c01272{bottom:420.602395pt;}
.y98_c01272{bottom:421.666067pt;}
.y97_c01272{bottom:421.985907pt;}
.y96_c01272{bottom:424.303669pt;}
.y95_c01272{bottom:439.383784pt;}
.y94_c01272{bottom:440.238923pt;}
.y93_c01272{bottom:441.565909pt;}
.y92_c01272{bottom:442.221904pt;}
.y91_c01272{bottom:444.382792pt;}
.y90_c01272{bottom:445.892453pt;}
.y8f_c01272{bottom:446.319624pt;}
.y8e_c01272{bottom:447.410019pt;}
.y8d_c01272{bottom:448.492267pt;}
.y8c_c01272{bottom:448.950955pt;}
.y8b_c01272{bottom:451.068208pt;}
.y8a_c01272{bottom:451.745440pt;}
.y89_c01272{bottom:452.395037pt;}
.y88_c01272{bottom:472.705315pt;}
.y87_c01272{bottom:475.772968pt;}
.y86_c01272{bottom:476.827493pt;}
.y85_c01272{bottom:478.355947pt;}
.y84_c01272{bottom:480.659339pt;}
.y83_c01272{bottom:481.419405pt;}
.y82_c01272{bottom:482.963736pt;}
.y81_c01272{bottom:484.236592pt;}
.y80_c01272{bottom:485.048000pt;}
.y7f_c01272{bottom:506.666000pt;}
.y7e_c01272{bottom:506.666607pt;}
.y7d_c01272{bottom:506.666947pt;}
.y7c_c01272{bottom:506.667480pt;}
.y7b_c01272{bottom:512.322687pt;}
.y7a_c01272{bottom:513.359847pt;}
.y79_c01272{bottom:513.950387pt;}
.y78_c01272{bottom:514.836327pt;}
.y77_c01272{bottom:515.423227pt;}
.y76_c01272{bottom:515.710487pt;}
.y75_c01272{bottom:516.722667pt;}
.y74_c01272{bottom:542.876203pt;}
.y73_c01272{bottom:544.185219pt;}
.y72_c01272{bottom:544.732445pt;}
.y71_c01272{bottom:545.298008pt;}
.y70_c01272{bottom:546.620285pt;}
.y6f_c01272{bottom:547.158168pt;}
.y6e_c01272{bottom:548.284555pt;}
.y6d_c01272{bottom:548.627045pt;}
.y6c_c01272{bottom:576.805360pt;}
.y6b_c01272{bottom:577.762701pt;}
.y6a_c01272{bottom:578.163021pt;}
.y69_c01272{bottom:579.114243pt;}
.y68_c01272{bottom:604.588013pt;}
.y67_c01272{bottom:605.927373pt;}
.y66_c01272{bottom:607.448336pt;}
.y65_c01272{bottom:608.314872pt;}
.y64_c01272{bottom:609.608501pt;}
.y63_c01272{bottom:610.029523pt;}
.y62_c01272{bottom:611.526667pt;}
.y61_c01272{bottom:639.968000pt;}
.y60_c01272{bottom:663.244363pt;}
.y5f_c01272{bottom:663.963755pt;}
.y5e_c01272{bottom:665.144907pt;}
.y5d_c01272{bottom:665.849643pt;}
.y5c_c01272{bottom:666.569707pt;}
.y5b_c01272{bottom:668.689483pt;}
.y5a_c01272{bottom:669.410251pt;}
.y59_c01272{bottom:670.580171pt;}
.y58_c01272{bottom:672.002475pt;}
.y57_c01272{bottom:673.206667pt;}
.y56_c01272{bottom:700.130880pt;}
.y55_c01272{bottom:700.585147pt;}
.y54_c01272{bottom:701.031013pt;}
.y53_c01272{bottom:701.905627pt;}
.y52_c01272{bottom:702.356427pt;}
.y51_c01272{bottom:702.643360pt;}
.y50_c01272{bottom:703.655520pt;}
.y4f_c01272{bottom:726.889067pt;}
.y4e_c01272{bottom:727.465040pt;}
.y4d_c01272{bottom:728.646187pt;}
.y4c_c01272{bottom:729.246347pt;}
.y4b_c01272{bottom:730.245227pt;}
.y4a_c01272{bottom:731.017973pt;}
.y49_c01272{bottom:732.194213pt;}
.y48_c01272{bottom:733.586613pt;}
.y47_c01272{bottom:734.364533pt;}
.y46_c01272{bottom:736.303147pt;}
.y45_c01272{bottom:759.612800pt;}
.y44_c01272{bottom:760.784427pt;}
.y43_c01272{bottom:762.383173pt;}
.y42_c01272{bottom:762.949760pt;}
.y41_c01272{bottom:764.145307pt;}
.y40_c01272{bottom:765.523200pt;}
.y3f_c01272{bottom:766.315333pt;}
.y3e_c01272{bottom:768.229867pt;}
.y3d_c01272{bottom:790.526960pt;}
.y3c_c01272{bottom:791.511947pt;}
.y3b_c01272{bottom:792.256533pt;}
.y3a_c01272{bottom:794.236747pt;}
.y39_c01272{bottom:794.957147pt;}
.y38_c01272{bottom:796.409627pt;}
.y37_c01272{bottom:797.934480pt;}
.y36_c01272{bottom:799.637600pt;}
.y35_c01272{bottom:800.622347pt;}
.y34_c01272{bottom:803.038533pt;}
.y33_c01272{bottom:824.586533pt;}
.y32_c01272{bottom:825.133147pt;}
.y31_c01272{bottom:826.304507pt;}
.y30_c01272{bottom:827.288800pt;}
.y2f_c01272{bottom:828.484240pt;}
.y2e_c01272{bottom:829.857333pt;}
.y2d_c01272{bottom:830.639867pt;}
.y2c_c01272{bottom:832.564000pt;}
.y2b_c01272{bottom:859.954480pt;}
.y2a_c01272{bottom:861.876587pt;}
.y29_c01272{bottom:862.971909pt;}
.y28_c01272{bottom:865.685333pt;}
.y27_c01272{bottom:890.322167pt;}
.y26_c01272{bottom:891.421133pt;}
.y25_c01272{bottom:891.877967pt;}
.y24_c01272{bottom:892.811633pt;}
.y23_c01272{bottom:893.752700pt;}
.y22_c01272{bottom:914.585333pt;}
.y21_c01272{bottom:917.345233pt;}
.y20_c01272{bottom:918.089300pt;}
.y1f_c01272{bottom:919.325967pt;}
.y1e_c01272{bottom:920.322100pt;}
.y1d_c01272{bottom:921.060333pt;}
.y1c_c01272{bottom:922.517133pt;}
.y1b_c01272{bottom:923.496933pt;}
.y1a_c01272{bottom:924.240700pt;}
.y19_c01272{bottom:926.645333pt;}
.y18_c01272{bottom:946.843653pt;}
.y17_c01272{bottom:947.801440pt;}
.y16_c01272{bottom:948.173973pt;}
.y15_c01272{bottom:949.688640pt;}
.y14_c01272{bottom:950.796987pt;}
.y13_c01272{bottom:952.320720pt;}
.y12_c01272{bottom:952.867547pt;}
.y11_c01272{bottom:953.957653pt;}
.y10_c01272{bottom:955.097253pt;}
.yf_c01272{bottom:956.396827pt;}
.ye_c01272{bottom:976.447227pt;}
.yd_c01272{bottom:977.628373pt;}
.yc_c01272{bottom:978.233440pt;}
.yb_c01272{bottom:978.822773pt;}
.ya_c01272{bottom:980.029067pt;}
.y9_c01272{bottom:981.401973pt;}
.y8_c01272{bottom:981.997547pt;}
.y7_c01272{bottom:982.977307pt;}
.y6_c01272{bottom:984.157093pt;}
.y5_c01272{bottom:985.353680pt;}
.y4_c01272{bottom:985.934373pt;}
.y3_c01272{bottom:987.844000pt;}
.y2_c01272{bottom:1017.266667pt;}
.y1_c01272{bottom:1083.228000pt;}
.h1c_c01272{height:21.338037pt;}
.ha_c01272{height:58.666667pt;}
.hd_c01272{height:58.680862pt;}
.h5_c01272{height:58.684997pt;}
.h3_c01272{height:64.000000pt;}
.he_c01272{height:64.007200pt;}
.h8_c01272{height:64.012799pt;}
.h9_c01272{height:64.018429pt;}
.h10_c01272{height:64.021628pt;}
.h7_c01272{height:64.025083pt;}
.h14_c01272{height:64.026906pt;}
.h17_c01272{height:64.030745pt;}
.hf_c01272{height:69.341133pt;}
.h4_c01272{height:69.347199pt;}
.hc_c01272{height:69.350110pt;}
.h6_c01272{height:69.354997pt;}
.h12_c01272{height:69.356764pt;}
.h16_c01272{height:69.360507pt;}
.h13_c01272{height:69.362482pt;}
.h19_c01272{height:69.366640pt;}
.h2_c01272{height:74.666667pt;}
.hb_c01272{height:74.684734pt;}
.h11_c01272{height:74.691900pt;}
.h15_c01272{height:74.695930pt;}
.h1b_c01272{height:79.971875pt;}
.h18_c01272{height:80.038431pt;}
.h1a_c01272{height:85.374326pt;}
.h1_c01272{height:1111.333333pt;}
.h0_c01272{height:1111.440000pt;}
.w1_c01272{width:790.000000pt;}
.w0_c01272{width:790.266667pt;}
.x0_c01272{left:0.000000pt;}
.x99_c01272{left:134.822192pt;}
.xa0_c01272{left:136.577381pt;}
.x84_c01272{left:137.505815pt;}
.x6f_c01272{left:139.143277pt;}
.x4c_c01272{left:144.000000pt;}
.x12_c01272{left:148.603813pt;}
.x3_c01272{left:151.440000pt;}
.x5f_c01272{left:161.100000pt;}
.x51_c01272{left:162.164000pt;}
.xb3_c01272{left:163.628359pt;}
.x37_c01272{left:164.904107pt;}
.x33_c01272{left:165.873440pt;}
.x24_c01272{left:166.838667pt;}
.x1b_c01272{left:169.008000pt;}
.x6_c01272{left:170.682667pt;}
.x4d_c01272{left:172.800000pt;}
.xa7_c01272{left:174.609203pt;}
.x85_c01272{left:176.173179pt;}
.x59_c01272{left:179.544421pt;}
.x70_c01272{left:199.412184pt;}
.x9a_c01272{left:204.377584pt;}
.x22_c01272{left:206.707567pt;}
.xb4_c01272{left:211.343603pt;}
.x13_c01272{left:216.983840pt;}
.x9b_c01272{left:224.069024pt;}
.x77_c01272{left:225.275360pt;}
.x60_c01272{left:228.578667pt;}
.x52_c01272{left:230.216000pt;}
.xa2_c01272{left:231.250667pt;}
.x3d_c01272{left:232.180747pt;}
.x8f_c01272{left:233.204000pt;}
.x67_c01272{left:236.328000pt;}
.x5a_c01272{left:238.808323pt;}
.x42_c01272{left:239.724000pt;}
.xad_c01272{left:241.132972pt;}
.x4_c01272{left:247.920000pt;}
.x53_c01272{left:249.353333pt;}
.x3e_c01272{left:251.329333pt;}
.x86_c01272{left:254.878689pt;}
.x4e_c01272{left:259.200000pt;}
.x34_c01272{left:261.600107pt;}
.x2c_c01272{left:262.802453pt;}
.x25_c01272{left:263.746667pt;}
.x1c_c01272{left:265.193333pt;}
.x7_c01272{left:266.164000pt;}
.x5b_c01272{left:267.138200pt;}
.xba_c01272{left:269.768417pt;}
.xa3_c01272{left:272.038667pt;}
.x14_c01272{left:276.965040pt;}
.x4f_c01272{left:280.320000pt;}
.x3f_c01272{left:281.338987pt;}
.x5_c01272{left:286.560000pt;}
.x43_c01272{left:289.898667pt;}
.x23_c01272{left:293.600433pt;}
.x8_c01272{left:295.198667pt;}
.x35_c01272{left:301.206773pt;}
.x26_c01272{left:302.865333pt;}
.x54_c01272{left:308.154667pt;}
.xae_c01272{left:311.463843pt;}
.x90_c01272{left:312.720000pt;}
.x68_c01272{left:316.492000pt;}
.x50_c01272{left:318.480000pt;}
.xa1_c01272{left:320.395856pt;}
.x58_c01272{left:326.933544pt;}
.xb5_c01272{left:328.311403pt;}
.xa8_c01272{left:329.727372pt;}
.x91_c01272{left:331.825333pt;}
.x15_c01272{left:334.338187pt;}
.x5c_c01272{left:336.761472pt;}
.x40_c01272{left:339.675493pt;}
.x61_c01272{left:345.918667pt;}
.x55_c01272{left:347.542667pt;}
.x44_c01272{left:349.161333pt;}
.x87_c01272{left:352.023119pt;}
.x9_c01272{left:355.028000pt;}
.xc0_c01272{left:357.809333pt;}
.xb6_c01272{left:358.977872pt;}
.x16_c01272{left:363.146773pt;}
.x1_c01272{left:366.240000pt;}
.x2d_c01272{left:370.318373pt;}
.x27_c01272{left:371.512000pt;}
.x69_c01272{left:375.889333pt;}
.x92_c01272{left:382.505333pt;}
.x62_c01272{left:385.288000pt;}
.x2_c01272{left:386.880000pt;}
.x1d_c01272{left:392.408000pt;}
.x78_c01272{left:393.404325pt;}
.x5d_c01272{left:395.346677pt;}
.x45_c01272{left:397.908000pt;}
.x41_c01272{left:399.688160pt;}
.x6a_c01272{left:405.122667pt;}
.x64_c01272{left:408.986293pt;}
.x88_c01272{left:411.824300pt;}
.xa_c01272{left:414.017333pt;}
.x71_c01272{left:415.251947pt;}
.x56_c01272{left:416.677333pt;}
.xb7_c01272{left:417.685147pt;}
.x1e_c01272{left:421.937333pt;}
.x79_c01272{left:423.120896pt;}
.x46_c01272{left:427.940000pt;}
.x38_c01272{left:429.162773pt;}
.x28_c01272{left:430.613333pt;}
.x7f_c01272{left:432.526667pt;}
.x72_c01272{left:434.657957pt;}
.xaf_c01272{left:437.052603pt;}
.x17_c01272{left:443.335040pt;}
.x65_c01272{left:444.750333pt;}
.x9c_c01272{left:449.946715pt;}
.x89_c01272{left:452.146485pt;}
.x63_c01272{left:454.432000pt;}
.x36_c01272{left:458.208107pt;}
.x1f_c01272{left:461.782667pt;}
.xb_c01272{left:463.005333pt;}
.x5e_c01272{left:464.245891pt;}
.x39_c01272{left:467.800107pt;}
.x93_c01272{left:469.972000pt;}
.x57_c01272{left:477.557333pt;}
.x29_c01272{left:479.828000pt;}
.x66_c01272{left:481.954693pt;}
.x2e_c01272{left:489.373120pt;}
.x80_c01272{left:490.797333pt;}
.x7a_c01272{left:491.760461pt;}
.xc_c01272{left:492.784000pt;}
.x6b_c01272{left:493.714667pt;}
.xa4_c01272{left:498.181333pt;}
.x94_c01272{left:499.186667pt;}
.x18_c01272{left:501.686880pt;}
.x73_c01272{left:503.293099pt;}
.xb8_c01272{left:506.974891pt;}
.x20_c01272{left:511.249333pt;}
.x47_c01272{left:516.264000pt;}
.xa9_c01272{left:517.166533pt;}
.x2f_c01272{left:518.190240pt;}
.x7b_c01272{left:521.762365pt;}
.xbb_c01272{left:525.250013pt;}
.xb9_c01272{left:536.449195pt;}
.x2a_c01272{left:538.396000pt;}
.x21_c01272{left:541.012000pt;}
.x48_c01272{left:546.266667pt;}
.x3a_c01272{left:547.752107pt;}
.x6c_c01272{left:552.501333pt;}
.xbc_c01272{left:554.259641pt;}
.xd_c01272{left:561.429333pt;}
.x2b_c01272{left:565.726667pt;}
.xb0_c01272{left:567.415440pt;}
.x8a_c01272{left:570.371437pt;}
.x49_c01272{left:575.630667pt;}
.xaa_c01272{left:576.812393pt;}
.x95_c01272{left:577.929333pt;}
.x19_c01272{left:581.421813pt;}
.x8b_c01272{left:589.049061pt;}
.x6d_c01272{left:593.060000pt;}
.x30_c01272{left:597.392987pt;}
.x1a_c01272{left:601.048880pt;}
.xbd_c01272{left:604.157693pt;}
.x3b_c01272{left:606.809440pt;}
.x7c_c01272{left:611.078709pt;}
.xb1_c01272{left:617.116461pt;}
.x81_c01272{left:619.477333pt;}
.xc1_c01272{left:620.681333pt;}
.xe_c01272{left:621.744000pt;}
.x4a_c01272{left:624.845333pt;}
.x31_c01272{left:627.152667pt;}
.x74_c01272{left:631.289043pt;}
.x3c_c01272{left:635.608107pt;}
.x96_c01272{left:637.726667pt;}
.xa5_c01272{left:646.376000pt;}
.x9d_c01272{left:648.854448pt;}
.xf_c01272{left:651.210667pt;}
.x4b_c01272{left:654.820000pt;}
.x8c_c01272{left:658.896465pt;}
.xc2_c01272{left:659.808000pt;}
.x32_c01272{left:666.531387pt;}
.x97_c01272{left:667.501333pt;}
.xa6_c01272{left:675.484000pt;}
.x82_c01272{left:679.097333pt;}
.x10_c01272{left:681.464000pt;}
.xb2_c01272{left:685.880459pt;}
.x8d_c01272{left:689.708467pt;}
.x7d_c01272{left:690.629963pt;}
.x75_c01272{left:691.615317pt;}
.xab_c01272{left:695.626739pt;}
.x9e_c01272{left:697.038437pt;}
.xbe_c01272{left:704.134949pt;}
.x83_c01272{left:708.225333pt;}
.x6e_c01272{left:711.046667pt;}
.x8e_c01272{left:718.217608pt;}
.x7e_c01272{left:720.391867pt;}
.xac_c01272{left:725.170315pt;}
.x76_c01272{left:730.458005pt;}
.x11_c01272{left:740.521333pt;}
.x9f_c01272{left:746.533056pt;}
.x98_c01272{left:747.804000pt;}
.xbf_c01272{left:766.962725pt;}
}





/* 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_c01273 {
    display:none;
  }
  .loading-indicator_c01273.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01273 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_c01273 { 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_c01273" -> "#page-container .classname_c01273")
 */
.pf_c01273 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01273 { /* 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_c01273.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01273 { /* 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_c01273 { /* 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_c01273 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01273 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01273 {overflow:visible;}
  }
}
.c_c01273 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01273 { /* 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_c01273:after { /* webkit #35443 */
  content: '';
}
.t_c01273:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01273 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 */
}
.__c01273 { /* 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_c01273 { /* info for Javascript */
  display:none;
}
.l_c01273 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01273 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01273 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01273: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_c01273 {
    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_c01273.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01273.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_c01273 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01273{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01273;src:url('chunks/assets/font_132af6d682320e9b248f68cf.woff2')format("woff");}.ff1_c01273{font-family:ff1_c01273;line-height:1.000000;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;}
.m1_c01273{transform:matrix(0.156925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156925,0.000000,0.000000,0.250000,0,0);}
.m4_c01273{transform:matrix(0.167365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167365,0.000000,0.000000,0.250000,0,0);}
.m9_c01273{transform:matrix(0.177645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177645,0.000000,0.000000,0.250000,0,0);}
.m0_c01273{transform:matrix(0.180625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180625,0.000000,0.000000,0.250000,0,0);}
.m7_c01273{transform:matrix(0.198560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198560,0.000000,0.000000,0.250000,0,0);}
.ma_c01273{transform:matrix(0.201465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201465,0.000000,0.000000,0.250000,0,0);}
.m8_c01273{transform:matrix(0.235240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235240,0.000000,0.000000,0.250000,0,0);}
.m5_c01273{transform:matrix(0.244400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244400,0.000000,0.000000,0.250000,0,0);}
.m2_c01273{transform:matrix(0.286610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286610,0.000000,0.000000,0.250000,0,0);}
.m6_c01273{transform:matrix(0.351000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351000,0.000000,0.000000,0.250000,0,0);}
.m3_c01273{transform:matrix(0.451445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451445,0.000000,0.000000,0.250000,0,0);}
.v0_c01273{vertical-align:0.000000px;}
.ls0_c01273{letter-spacing:0.000000px;}
.sc__c01273{text-shadow:none;}
.sc0_c01273{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__c01273{-webkit-text-stroke:0px transparent;}
.sc0_c01273{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01273{word-spacing:0.000000px;}
.fc0_c01273{color:transparent;}
.fs0_c01273{font-size:36.000000px;}
.fs1_c01273{font-size:54.000000px;}
.fs2_c01273{font-size:66.000000px;}
.fs3_c01273{font-size:78.000000px;}
.fs4_c01273{font-size:168.000000px;}
.y0_c01273{bottom:0.000000px;}
.y6_c01273{bottom:237.199500px;}
.y4_c01273{bottom:237.876000px;}
.y2_c01273{bottom:238.950000px;}
.y1_c01273{bottom:246.510000px;}
.y7_c01273{bottom:701.460000px;}
.y3_c01273{bottom:704.160000px;}
.y5_c01273{bottom:705.240000px;}
.ya_c01273{bottom:716.931000px;}
.y8_c01273{bottom:718.527000px;}
.y9_c01273{bottom:719.010000px;}
.h2_c01273{height:36.000000px;}
.h3_c01273{height:54.000000px;}
.h4_c01273{height:66.000000px;}
.h5_c01273{height:78.000000px;}
.h6_c01273{height:168.000000px;}
.h1_c01273{height:1250.250000px;}
.h0_c01273{height:1250.370000px;}
.w1_c01273{width:888.750000px;}
.w0_c01273{width:889.050000px;}
.x0_c01273{left:0.000000px;}
.xb_c01273{left:494.902500px;}
.xa_c01273{left:499.770000px;}
.x9_c01273{left:567.262500px;}
.x8_c01273{left:600.480000px;}
.x6_c01273{left:629.910000px;}
.x5_c01273{left:632.340000px;}
.x7_c01273{left:652.590000px;}
.x4_c01273{left:673.650000px;}
.x3_c01273{left:699.840000px;}
.x2_c01273{left:712.800000px;}
.x1_c01273{left:715.230000px;}
@media print{
.v0_c01273{vertical-align:0.000000pt;}
.ls0_c01273{letter-spacing:0.000000pt;}
.ws0_c01273{word-spacing:0.000000pt;}
.fs0_c01273{font-size:32.000000pt;}
.fs1_c01273{font-size:48.000000pt;}
.fs2_c01273{font-size:58.666667pt;}
.fs3_c01273{font-size:69.333333pt;}
.fs4_c01273{font-size:149.333333pt;}
.y0_c01273{bottom:0.000000pt;}
.y6_c01273{bottom:210.844000pt;}
.y4_c01273{bottom:211.445333pt;}
.y2_c01273{bottom:212.400000pt;}
.y1_c01273{bottom:219.120000pt;}
.y7_c01273{bottom:623.520000pt;}
.y3_c01273{bottom:625.920000pt;}
.y5_c01273{bottom:626.880000pt;}
.ya_c01273{bottom:637.272000pt;}
.y8_c01273{bottom:638.690667pt;}
.y9_c01273{bottom:639.120000pt;}
.h2_c01273{height:32.000000pt;}
.h3_c01273{height:48.000000pt;}
.h4_c01273{height:58.666667pt;}
.h5_c01273{height:69.333333pt;}
.h6_c01273{height:149.333333pt;}
.h1_c01273{height:1111.333333pt;}
.h0_c01273{height:1111.440000pt;}
.w1_c01273{width:790.000000pt;}
.w0_c01273{width:790.266667pt;}
.x0_c01273{left:0.000000pt;}
.xb_c01273{left:439.913333pt;}
.xa_c01273{left:444.240000pt;}
.x9_c01273{left:504.233333pt;}
.x8_c01273{left:533.760000pt;}
.x6_c01273{left:559.920000pt;}
.x5_c01273{left:562.080000pt;}
.x7_c01273{left:580.080000pt;}
.x4_c01273{left:598.800000pt;}
.x3_c01273{left:622.080000pt;}
.x2_c01273{left:633.600000pt;}
.x1_c01273{left:635.760000pt;}
}





/* 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_c01274 {
    display:none;
  }
  .loading-indicator_c01274.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01274 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_c01274 { 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_c01274" -> "#page-container .classname_c01274")
 */
.pf_c01274 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01274 { /* 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_c01274.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01274 { /* 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_c01274 { /* 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_c01274 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01274 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01274 {overflow:visible;}
  }
}
.c_c01274 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01274 { /* 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_c01274:after { /* webkit #35443 */
  content: '';
}
.t_c01274:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01274 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 */
}
.__c01274 { /* 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_c01274 { /* info for Javascript */
  display:none;
}
.l_c01274 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01274 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01274 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01274: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_c01274 {
    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_c01274.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01274.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_c01274 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01274{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01274;src:url('chunks/assets/font_97998a297af8da24a717a89b.woff2')format("woff");}.ff1_c01274{font-family:ff1_c01274;line-height:1.000000;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;}
.m1b_c01274{transform:matrix(0.066581,0.000732,-0.002750,0.249985,0,0);-ms-transform:matrix(0.066581,0.000732,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.066581,0.000732,-0.002750,0.249985,0,0);}
.m17_c01274{transform:matrix(0.145151,0.001597,-0.002750,0.249985,0,0);-ms-transform:matrix(0.145151,0.001597,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.145151,0.001597,-0.002750,0.249985,0,0);}
.m15_c01274{transform:matrix(0.191538,0.002107,-0.002750,0.249985,0,0);-ms-transform:matrix(0.191538,0.002107,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.191538,0.002107,-0.002750,0.249985,0,0);}
.m9_c01274{transform:matrix(0.200980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200980,0.000000,0.000000,0.250000,0,0);}
.m19_c01274{transform:matrix(0.209247,0.002302,-0.002750,0.249985,0,0);-ms-transform:matrix(0.209247,0.002302,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.209247,0.002302,-0.002750,0.249985,0,0);}
.me_c01274{transform:matrix(0.209822,0.002308,-0.002750,0.249985,0,0);-ms-transform:matrix(0.209822,0.002308,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.209822,0.002308,-0.002750,0.249985,0,0);}
.m1d_c01274{transform:matrix(0.210567,0.002316,-0.002750,0.249985,0,0);-ms-transform:matrix(0.210567,0.002316,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.210567,0.002316,-0.002750,0.249985,0,0);}
.m1c_c01274{transform:matrix(0.222927,0.002452,-0.002750,0.249985,0,0);-ms-transform:matrix(0.222927,0.002452,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.222927,0.002452,-0.002750,0.249985,0,0);}
.md_c01274{transform:matrix(0.227625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227625,0.000000,0.000000,0.250000,0,0);}
.m16_c01274{transform:matrix(0.233421,0.002568,-0.002750,0.249985,0,0);-ms-transform:matrix(0.233421,0.002568,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.233421,0.002568,-0.002750,0.249985,0,0);}
.m1a_c01274{transform:matrix(0.244765,0.002692,-0.002750,0.249985,0,0);-ms-transform:matrix(0.244765,0.002692,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.244765,0.002692,-0.002750,0.249985,0,0);}
.m8_c01274{transform:matrix(0.244855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244855,0.000000,0.000000,0.250000,0,0);}
.ma_c01274{transform:matrix(0.252590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252590,0.000000,0.000000,0.250000,0,0);}
.mc_c01274{transform:matrix(0.256075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256075,0.000000,0.000000,0.250000,0,0);}
.m14_c01274{transform:matrix(0.271699,0.002989,-0.002750,0.249985,0,0);-ms-transform:matrix(0.271699,0.002989,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.271699,0.002989,-0.002750,0.249985,0,0);}
.m12_c01274{transform:matrix(0.272778,0.003001,-0.002750,0.249985,0,0);-ms-transform:matrix(0.272778,0.003001,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.272778,0.003001,-0.002750,0.249985,0,0);}
.m4_c01274{transform:matrix(0.272785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272785,0.000000,0.000000,0.250000,0,0);}
.m11_c01274{transform:matrix(0.273008,0.003003,-0.002750,0.249985,0,0);-ms-transform:matrix(0.273008,0.003003,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.273008,0.003003,-0.002750,0.249985,0,0);}
.m10_c01274{transform:matrix(0.273248,0.003006,-0.002750,0.249985,0,0);-ms-transform:matrix(0.273248,0.003006,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.273248,0.003006,-0.002750,0.249985,0,0);}
.mf_c01274{transform:matrix(0.276738,0.003044,-0.002750,0.249985,0,0);-ms-transform:matrix(0.276738,0.003044,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.276738,0.003044,-0.002750,0.249985,0,0);}
.m13_c01274{transform:matrix(0.282658,0.003109,-0.002750,0.249985,0,0);-ms-transform:matrix(0.282658,0.003109,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.282658,0.003109,-0.002750,0.249985,0,0);}
.m18_c01274{transform:matrix(0.288318,0.003171,-0.002750,0.249985,0,0);-ms-transform:matrix(0.288318,0.003171,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.288318,0.003171,-0.002750,0.249985,0,0);}
.mb_c01274{transform:matrix(0.293360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293360,0.000000,0.000000,0.250000,0,0);}
.m5_c01274{transform:matrix(0.302045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302045,0.000000,0.000000,0.250000,0,0);}
.m3_c01274{transform:matrix(0.305425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305425,0.000000,0.000000,0.250000,0,0);}
.m0_c01274{transform:matrix(0.326480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326480,0.000000,0.000000,0.250000,0,0);}
.m6_c01274{transform:matrix(0.328060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328060,0.000000,0.000000,0.250000,0,0);}
.m7_c01274{transform:matrix(0.334290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334290,0.000000,0.000000,0.250000,0,0);}
.m2_c01274{transform:matrix(0.351840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351840,0.000000,0.000000,0.250000,0,0);}
.m1_c01274{transform:matrix(0.365630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365630,0.000000,0.000000,0.250000,0,0);}
.v0_c01274{vertical-align:0.000000px;}
.ls0_c01274{letter-spacing:0.000000px;}
.sc__c01274{text-shadow:none;}
.sc0_c01274{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__c01274{-webkit-text-stroke:0px transparent;}
.sc0_c01274{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01274{word-spacing:0.000000px;}
.fc0_c01274{color:transparent;}
.fs0_c01274{font-size:54.000000px;}
.fs1_c01274{font-size:66.000000px;}
.fs3_c01274{font-size:72.004356px;}
.fs2_c01274{font-size:78.000000px;}
.fs4_c01274{font-size:78.004719px;}
.y0_c01274{bottom:0.000000px;}
.y1d_c01274{bottom:490.438708px;}
.y1c_c01274{bottom:490.647921px;}
.y1b_c01274{bottom:490.751758px;}
.y1a_c01274{bottom:491.083983px;}
.y19_c01274{bottom:491.363694px;}
.y18_c01274{bottom:492.044375px;}
.y17_c01274{bottom:492.564294px;}
.y16_c01274{bottom:493.095805px;}
.y15_c01274{bottom:493.286787px;}
.y14_c01274{bottom:525.326832px;}
.y13_c01274{bottom:525.695194px;}
.y12_c01274{bottom:526.532817px;}
.y11_c01274{bottom:527.750632px;}
.y10_c01274{bottom:528.852601px;}
.yf_c01274{bottom:529.945363px;}
.ye_c01274{bottom:530.280000px;}
.y9_c01274{bottom:562.953000px;}
.ya_c01274{bottom:563.295000px;}
.yb_c01274{bottom:564.262500px;}
.yc_c01274{bottom:564.747000px;}
.yd_c01274{bottom:566.098500px;}
.y2_c01274{bottom:597.244500px;}
.y3_c01274{bottom:597.825000px;}
.y4_c01274{bottom:599.299500px;}
.y5_c01274{bottom:601.419000px;}
.y6_c01274{bottom:602.850000px;}
.y7_c01274{bottom:603.948000px;}
.y8_c01274{bottom:605.886000px;}
.y1_c01274{bottom:635.836500px;}
.h2_c01274{height:54.000000px;}
.h3_c01274{height:66.000000px;}
.h5_c01274{height:72.004356px;}
.h4_c01274{height:78.000000px;}
.h6_c01274{height:78.004719px;}
.h1_c01274{height:1250.250000px;}
.h0_c01274{height:1250.370000px;}
.w1_c01274{width:888.750000px;}
.w0_c01274{width:889.050000px;}
.x0_c01274{left:0.000000px;}
.x12_c01274{left:118.492060px;}
.x3_c01274{left:119.520000px;}
.x4_c01274{left:150.057000px;}
.x1_c01274{left:205.200000px;}
.x5_c01274{left:227.665500px;}
.xa_c01274{left:238.036500px;}
.x2_c01274{left:239.220000px;}
.xd_c01274{left:248.779500px;}
.xb_c01274{left:282.043500px;}
.x13_c01274{left:325.540945px;}
.x6_c01274{left:339.181500px;}
.xe_c01274{left:348.958500px;}
.xc_c01274{left:404.863500px;}
.x7_c01274{left:414.484500px;}
.x14_c01274{left:438.972682px;}
.xf_c01274{left:459.669000px;}
.x8_c01274{left:472.243500px;}
.x15_c01274{left:485.676257px;}
.x10_c01274{left:535.816500px;}
.x16_c01274{left:541.108809px;}
.x17_c01274{left:558.322249px;}
.x11_c01274{left:569.304000px;}
.x9_c01274{left:574.266000px;}
.x18_c01274{left:593.161664px;}
@media print{
.v0_c01274{vertical-align:0.000000pt;}
.ls0_c01274{letter-spacing:0.000000pt;}
.ws0_c01274{word-spacing:0.000000pt;}
.fs0_c01274{font-size:48.000000pt;}
.fs1_c01274{font-size:58.666667pt;}
.fs3_c01274{font-size:64.003872pt;}
.fs2_c01274{font-size:69.333333pt;}
.fs4_c01274{font-size:69.337528pt;}
.y0_c01274{bottom:0.000000pt;}
.y1d_c01274{bottom:435.945519pt;}
.y1c_c01274{bottom:436.131485pt;}
.y1b_c01274{bottom:436.223785pt;}
.y1a_c01274{bottom:436.519096pt;}
.y19_c01274{bottom:436.767728pt;}
.y18_c01274{bottom:437.372777pt;}
.y17_c01274{bottom:437.834928pt;}
.y16_c01274{bottom:438.307383pt;}
.y15_c01274{bottom:438.477144pt;}
.y14_c01274{bottom:466.957184pt;}
.y13_c01274{bottom:467.284617pt;}
.y12_c01274{bottom:468.029171pt;}
.y11_c01274{bottom:469.111673pt;}
.y10_c01274{bottom:470.091201pt;}
.yf_c01274{bottom:471.062545pt;}
.ye_c01274{bottom:471.360000pt;}
.y9_c01274{bottom:500.402667pt;}
.ya_c01274{bottom:500.706667pt;}
.yb_c01274{bottom:501.566667pt;}
.yc_c01274{bottom:501.997333pt;}
.yd_c01274{bottom:503.198667pt;}
.y2_c01274{bottom:530.884000pt;}
.y3_c01274{bottom:531.400000pt;}
.y4_c01274{bottom:532.710667pt;}
.y5_c01274{bottom:534.594667pt;}
.y6_c01274{bottom:535.866667pt;}
.y7_c01274{bottom:536.842667pt;}
.y8_c01274{bottom:538.565333pt;}
.y1_c01274{bottom:565.188000pt;}
.h2_c01274{height:48.000000pt;}
.h3_c01274{height:58.666667pt;}
.h5_c01274{height:64.003872pt;}
.h4_c01274{height:69.333333pt;}
.h6_c01274{height:69.337528pt;}
.h1_c01274{height:1111.333333pt;}
.h0_c01274{height:1111.440000pt;}
.w1_c01274{width:790.000000pt;}
.w0_c01274{width:790.266667pt;}
.x0_c01274{left:0.000000pt;}
.x12_c01274{left:105.326276pt;}
.x3_c01274{left:106.240000pt;}
.x4_c01274{left:133.384000pt;}
.x1_c01274{left:182.400000pt;}
.x5_c01274{left:202.369333pt;}
.xa_c01274{left:211.588000pt;}
.x2_c01274{left:212.640000pt;}
.xd_c01274{left:221.137333pt;}
.xb_c01274{left:250.705333pt;}
.x13_c01274{left:289.369729pt;}
.x6_c01274{left:301.494667pt;}
.xe_c01274{left:310.185333pt;}
.xc_c01274{left:359.878667pt;}
.x7_c01274{left:368.430667pt;}
.x14_c01274{left:390.197940pt;}
.xf_c01274{left:408.594667pt;}
.x8_c01274{left:419.772000pt;}
.x15_c01274{left:431.712228pt;}
.x10_c01274{left:476.281333pt;}
.x16_c01274{left:480.985608pt;}
.x17_c01274{left:496.286444pt;}
.x11_c01274{left:506.048000pt;}
.x9_c01274{left:510.458667pt;}
.x18_c01274{left:527.254812pt;}
}





/* 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_c01275 {
    display:none;
  }
  .loading-indicator_c01275.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01275 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_c01275 { 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_c01275" -> "#page-container .classname_c01275")
 */
.pf_c01275 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01275 { /* 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_c01275.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01275 { /* 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_c01275 { /* 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_c01275 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01275 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01275 {overflow:visible;}
  }
}
.c_c01275 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01275 { /* 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_c01275:after { /* webkit #35443 */
  content: '';
}
.t_c01275:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01275 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 */
}
.__c01275 { /* 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_c01275 { /* info for Javascript */
  display:none;
}
.l_c01275 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01275 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01275 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01275: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_c01275 {
    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_c01275.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01275.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_c01275 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01275{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01275;src:url('chunks/assets/font_97998a297af8da24a717a89b.woff2')format("woff");}.ff1_c01275{font-family:ff1_c01275;line-height:1.000000;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;}
.m6_c01275{transform:matrix(0.012935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.012935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.012935,0.000000,0.000000,0.250000,0,0);}
.m8_c01275{transform:matrix(0.016865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.016865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.016865,0.000000,0.000000,0.250000,0,0);}
.m4_c01275{transform:matrix(0.029500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.029500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.029500,0.000000,0.000000,0.250000,0,0);}
.mb_c01275{transform:matrix(0.042425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.042425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.042425,0.000000,0.000000,0.250000,0,0);}
.m10_c01275{transform:matrix(0.047435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.047435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.047435,0.000000,0.000000,0.250000,0,0);}
.m11_c01275{transform:matrix(0.054085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054085,0.000000,0.000000,0.250000,0,0);}
.m12_c01275{transform:matrix(0.120415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120415,0.000000,0.000000,0.250000,0,0);}
.m1b_c01275{transform:matrix(0.131195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131195,0.000000,0.000000,0.250000,0,0);}
.mc_c01275{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m9_c01275{transform:matrix(0.219275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219275,0.000000,0.000000,0.250000,0,0);}
.m18_c01275{transform:matrix(0.249310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249310,0.000000,0.000000,0.250000,0,0);}
.m19_c01275{transform:matrix(0.268330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268330,0.000000,0.000000,0.250000,0,0);}
.m0_c01275{transform:matrix(0.275770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275770,0.000000,0.000000,0.250000,0,0);}
.mf_c01275{transform:matrix(0.324585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324585,0.000000,0.000000,0.250000,0,0);}
.m15_c01275{transform:matrix(0.363110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363110,0.000000,0.000000,0.250000,0,0);}
.m16_c01275{transform:matrix(0.410490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410490,0.000000,0.000000,0.250000,0,0);}
.m2_c01275{transform:matrix(0.415380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415380,0.000000,0.000000,0.250000,0,0);}
.m7_c01275{transform:matrix(0.432090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432090,0.000000,0.000000,0.250000,0,0);}
.m5_c01275{transform:matrix(0.521880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.521880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.521880,0.000000,0.000000,0.250000,0,0);}
.m14_c01275{transform:matrix(0.524785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.524785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.524785,0.000000,0.000000,0.250000,0,0);}
.m1c_c01275{transform:matrix(0.535395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535395,0.000000,0.000000,0.250000,0,0);}
.m1a_c01275{transform:matrix(0.553680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553680,0.000000,0.000000,0.250000,0,0);}
.m3_c01275{transform:matrix(0.679460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.679460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.679460,0.000000,0.000000,0.250000,0,0);}
.me_c01275{transform:matrix(0.750000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.750000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.750000,0.000000,0.000000,0.250000,0,0);}
.md_c01275{transform:matrix(0.821175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.821175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.821175,0.000000,0.000000,0.250000,0,0);}
.m13_c01275{transform:matrix(0.875170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.875170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.875170,0.000000,0.000000,0.250000,0,0);}
.m17_c01275{transform:matrix(1.278195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.278195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.278195,0.000000,0.000000,0.250000,0,0);}
.ma_c01275{transform:matrix(1.308100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.308100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.308100,0.000000,0.000000,0.250000,0,0);}
.m1_c01275{transform:matrix(1.507480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.507480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.507480,0.000000,0.000000,0.250000,0,0);}
.v0_c01275{vertical-align:0.000000px;}
.ls0_c01275{letter-spacing:0.000000px;}
.sc__c01275{text-shadow:none;}
.sc0_c01275{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__c01275{-webkit-text-stroke:0px transparent;}
.sc0_c01275{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01275{word-spacing:0.000000px;}
._0_c01275{width:426.300638px;}
.fc0_c01275{color:transparent;}
.fs0_c01275{font-size:18.000000px;}
.fs1_c01275{font-size:24.000000px;}
.fs2_c01275{font-size:66.000000px;}
.y0_c01275{bottom:0.000000px;}
.y6_c01275{bottom:760.734000px;}
.y5_c01275{bottom:894.907500px;}
.y4_c01275{bottom:898.570500px;}
.y3_c01275{bottom:904.230000px;}
.y2_c01275{bottom:933.120000px;}
.y1_c01275{bottom:972.540000px;}
.h2_c01275{height:18.000000px;}
.h3_c01275{height:24.000000px;}
.h4_c01275{height:66.000000px;}
.h1_c01275{height:1250.250000px;}
.h0_c01275{height:1250.370000px;}
.w1_c01275{width:888.750000px;}
.w0_c01275{width:889.050000px;}
.x0_c01275{left:0.000000px;}
.x3_c01275{left:144.720000px;}
.xb_c01275{left:195.480000px;}
.xc_c01275{left:221.130000px;}
.x4_c01275{left:224.370000px;}
.xd_c01275{left:277.560000px;}
.xe_c01275{left:337.500000px;}
.x5_c01275{left:363.150000px;}
.xf_c01275{left:408.240000px;}
.x6_c01275{left:426.330000px;}
.x10_c01275{left:433.890000px;}
.x11_c01275{left:452.250000px;}
.x12_c01275{left:501.930000px;}
.x1_c01275{left:515.160000px;}
.x7_c01275{left:555.930000px;}
.x1a_c01275{left:576.720000px;}
.x13_c01275{left:590.220000px;}
.x8_c01275{left:593.460000px;}
.x2_c01275{left:595.080000px;}
.x14_c01275{left:598.320000px;}
.x1b_c01275{left:599.940000px;}
.x1c_c01275{left:604.260000px;}
.x15_c01275{left:619.380000px;}
.x16_c01275{left:626.940000px;}
.x9_c01275{left:635.850000px;}
.x17_c01275{left:651.780000px;}
.x18_c01275{left:662.040000px;}
.x19_c01275{left:678.780000px;}
.xa_c01275{left:696.330000px;}
@media print{
.v0_c01275{vertical-align:0.000000pt;}
.ls0_c01275{letter-spacing:0.000000pt;}
.ws0_c01275{word-spacing:0.000000pt;}
._0_c01275{width:378.933900pt;}
.fs0_c01275{font-size:16.000000pt;}
.fs1_c01275{font-size:21.333333pt;}
.fs2_c01275{font-size:58.666667pt;}
.y0_c01275{bottom:0.000000pt;}
.y6_c01275{bottom:676.208000pt;}
.y5_c01275{bottom:795.473333pt;}
.y4_c01275{bottom:798.729333pt;}
.y3_c01275{bottom:803.760000pt;}
.y2_c01275{bottom:829.440000pt;}
.y1_c01275{bottom:864.480000pt;}
.h2_c01275{height:16.000000pt;}
.h3_c01275{height:21.333333pt;}
.h4_c01275{height:58.666667pt;}
.h1_c01275{height:1111.333333pt;}
.h0_c01275{height:1111.440000pt;}
.w1_c01275{width:790.000000pt;}
.w0_c01275{width:790.266667pt;}
.x0_c01275{left:0.000000pt;}
.x3_c01275{left:128.640000pt;}
.xb_c01275{left:173.760000pt;}
.xc_c01275{left:196.560000pt;}
.x4_c01275{left:199.440000pt;}
.xd_c01275{left:246.720000pt;}
.xe_c01275{left:300.000000pt;}
.x5_c01275{left:322.800000pt;}
.xf_c01275{left:362.880000pt;}
.x6_c01275{left:378.960000pt;}
.x10_c01275{left:385.680000pt;}
.x11_c01275{left:402.000000pt;}
.x12_c01275{left:446.160000pt;}
.x1_c01275{left:457.920000pt;}
.x7_c01275{left:494.160000pt;}
.x1a_c01275{left:512.640000pt;}
.x13_c01275{left:524.640000pt;}
.x8_c01275{left:527.520000pt;}
.x2_c01275{left:528.960000pt;}
.x14_c01275{left:531.840000pt;}
.x1b_c01275{left:533.280000pt;}
.x1c_c01275{left:537.120000pt;}
.x15_c01275{left:550.560000pt;}
.x16_c01275{left:557.280000pt;}
.x9_c01275{left:565.200000pt;}
.x17_c01275{left:579.360000pt;}
.x18_c01275{left:588.480000pt;}
.x19_c01275{left:603.360000pt;}
.xa_c01275{left:618.960000pt;}
}





/* 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_c01276 {
    display:none;
  }
  .loading-indicator_c01276.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01276 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_c01276 { 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_c01276" -> "#page-container .classname_c01276")
 */
.pf_c01276 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01276 { /* 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_c01276.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01276 { /* 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_c01276 { /* 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_c01276 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01276 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01276 {overflow:visible;}
  }
}
.c_c01276 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01276 { /* 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_c01276:after { /* webkit #35443 */
  content: '';
}
.t_c01276:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01276 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 */
}
.__c01276 { /* 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_c01276 { /* info for Javascript */
  display:none;
}
.l_c01276 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01276 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01276 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01276: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_c01276 {
    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_c01276.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01276.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_c01276 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01276{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01276;src:url('chunks/assets/font_bfe6362fd3009c591583128f.woff2')format("woff");}.ff1_c01276{font-family:ff1_c01276;line-height:1.000000;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;}
.m1_c01276{transform:matrix(0.021215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021215,0.000000,0.000000,0.250000,0,0);}
.m3_c01276{transform:matrix(0.037500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.037500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.037500,0.000000,0.000000,0.250000,0,0);}
.m15_c01276{transform:matrix(0.047435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.047435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.047435,0.000000,0.000000,0.250000,0,0);}
.m7_c01276{transform:matrix(0.054085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054085,0.000000,0.000000,0.250000,0,0);}
.m8_c01276{transform:matrix(0.084855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084855,0.000000,0.000000,0.250000,0,0);}
.m10_c01276{transform:matrix(0.096045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096045,0.000000,0.000000,0.250000,0,0);}
.m4_c01276{transform:matrix(0.106300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106300,0.000000,0.000000,0.250000,0,0);}
.m9_c01276{transform:matrix(0.108165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108165,0.000000,0.000000,0.250000,0,0);}
.m14_c01276{transform:matrix(0.205915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205915,0.000000,0.000000,0.250000,0,0);}
.m0_c01276{transform:matrix(0.429535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429535,0.000000,0.000000,0.250000,0,0);}
.m13_c01276{transform:matrix(0.429795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429795,0.000000,0.000000,0.250000,0,0);}
.m5_c01276{transform:matrix(0.436805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436805,0.000000,0.000000,0.250000,0,0);}
.md_c01276{transform:matrix(0.451250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451250,0.000000,0.000000,0.250000,0,0);}
.me_c01276{transform:matrix(0.470105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470105,0.000000,0.000000,0.250000,0,0);}
.m11_c01276{transform:matrix(0.571185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.571185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.571185,0.000000,0.000000,0.250000,0,0);}
.m6_c01276{transform:matrix(0.631115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.631115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.631115,0.000000,0.000000,0.250000,0,0);}
.m2_c01276{transform:matrix(0.721405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.721405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.721405,0.000000,0.000000,0.250000,0,0);}
.ma_c01276{transform:matrix(0.917825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.917825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.917825,0.000000,0.000000,0.250000,0,0);}
.mb_c01276{transform:matrix(1.071740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.071740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.071740,0.000000,0.000000,0.250000,0,0);}
.mf_c01276{transform:matrix(1.524550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.524550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.524550,0.000000,0.000000,0.250000,0,0);}
.m12_c01276{transform:matrix(1.537335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.537335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.537335,0.000000,0.000000,0.250000,0,0);}
.mc_c01276{transform:matrix(4.241990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.241990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.241990,0.000000,0.000000,0.250000,0,0);}
.v0_c01276{vertical-align:0.000000px;}
.ls0_c01276{letter-spacing:0.000000px;}
.sc__c01276{text-shadow:none;}
.sc0_c01276{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__c01276{-webkit-text-stroke:0px transparent;}
.sc0_c01276{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01276{word-spacing:0.000000px;}
.fc0_c01276{color:transparent;}
.fs0_c01276{font-size:18.000000px;}
.y0_c01276{bottom:0.000000px;}
.y5_c01276{bottom:639.360000px;}
.y6_c01276{bottom:650.700000px;}
.y4_c01276{bottom:787.320000px;}
.y3_c01276{bottom:821.070000px;}
.y2_c01276{bottom:827.280000px;}
.y1_c01276{bottom:884.250000px;}
.h2_c01276{height:18.000000px;}
.h1_c01276{height:1250.250000px;}
.h0_c01276{height:1250.370000px;}
.w1_c01276{width:888.750000px;}
.w0_c01276{width:889.050000px;}
.x0_c01276{left:0.000000px;}
.x1_c01276{left:3.240000px;}
.x3_c01276{left:4.320000px;}
.x2_c01276{left:5.400000px;}
.x4_c01276{left:7.020000px;}
.x5_c01276{left:8.910000px;}
.x6_c01276{left:10.260000px;}
.x7_c01276{left:12.690000px;}
@media print{
.v0_c01276{vertical-align:0.000000pt;}
.ls0_c01276{letter-spacing:0.000000pt;}
.ws0_c01276{word-spacing:0.000000pt;}
.fs0_c01276{font-size:16.000000pt;}
.y0_c01276{bottom:0.000000pt;}
.y5_c01276{bottom:568.320000pt;}
.y6_c01276{bottom:578.400000pt;}
.y4_c01276{bottom:699.840000pt;}
.y3_c01276{bottom:729.840000pt;}
.y2_c01276{bottom:735.360000pt;}
.y1_c01276{bottom:786.000000pt;}
.h2_c01276{height:16.000000pt;}
.h1_c01276{height:1111.333333pt;}
.h0_c01276{height:1111.440000pt;}
.w1_c01276{width:790.000000pt;}
.w0_c01276{width:790.266667pt;}
.x0_c01276{left:0.000000pt;}
.x1_c01276{left:2.880000pt;}
.x3_c01276{left:3.840000pt;}
.x2_c01276{left:4.800000pt;}
.x4_c01276{left:6.240000pt;}
.x5_c01276{left:7.920000pt;}
.x6_c01276{left:9.120000pt;}
.x7_c01276{left:11.280000pt;}
}





/* 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_c01277 {
    display:none;
  }
  .loading-indicator_c01277.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01277 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_c01277 { 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_c01277" -> "#page-container .classname_c01277")
 */
.pf_c01277 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01277 { /* 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_c01277.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01277 { /* 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_c01277 { /* 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_c01277 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01277 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01277 {overflow:visible;}
  }
}
.c_c01277 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01277 { /* 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_c01277:after { /* webkit #35443 */
  content: '';
}
.t_c01277:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01277 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 */
}
.__c01277 { /* 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_c01277 { /* info for Javascript */
  display:none;
}
.l_c01277 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01277 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01277 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01277: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_c01277 {
    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_c01277.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01277.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_c01277 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01277{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01277;src:url('chunks/assets/font_a922ad9dd70ab389832b6583.woff2')format("woff");}.ff1_c01277{font-family:ff1_c01277;line-height:1.000000;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;}
.mb_c01277{transform:matrix(0.050000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.050000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.050000,0.000000,0.000000,0.250000,0,0);}
.m7_c01277{transform:matrix(0.056570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.056570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.056570,0.000000,0.000000,0.250000,0,0);}
.m5_c01277{transform:matrix(0.114235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114235,0.000000,0.000000,0.250000,0,0);}
.m3_c01277{transform:matrix(0.129035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129035,0.000000,0.000000,0.250000,0,0);}
.m8_c01277{transform:matrix(0.180280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180280,0.000000,0.000000,0.250000,0,0);}
.m1_c01277{transform:matrix(0.193130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193130,0.000000,0.000000,0.250000,0,0);}
.m0_c01277{transform:matrix(0.304140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304140,0.000000,0.000000,0.250000,0,0);}
.ma_c01277{transform:matrix(0.304630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304630,0.000000,0.000000,0.250000,0,0);}
.m2_c01277{transform:matrix(0.316425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316425,0.000000,0.000000,0.250000,0,0);}
.m4_c01277{transform:matrix(0.394590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394590,0.000000,0.000000,0.250000,0,0);}
.m9_c01277{transform:matrix(0.886850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.886850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.886850,0.000000,0.000000,0.250000,0,0);}
.m6_c01277{transform:matrix(0.955250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.955250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.955250,0.000000,0.000000,0.250000,0,0);}
.v0_c01277{vertical-align:0.000000px;}
.ls0_c01277{letter-spacing:0.000000px;}
.sc__c01277{text-shadow:none;}
.sc0_c01277{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__c01277{-webkit-text-stroke:0px transparent;}
.sc0_c01277{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01277{word-spacing:0.000000px;}
.fc0_c01277{color:transparent;}
.fs0_c01277{font-size:18.000000px;}
.y0_c01277{bottom:0.000000px;}
.y4_c01277{bottom:411.210000px;}
.y3_c01277{bottom:874.111500px;}
.y2_c01277{bottom:875.077500px;}
.y1_c01277{bottom:878.850000px;}
.h2_c01277{height:18.000000px;}
.h1_c01277{height:1250.250000px;}
.h0_c01277{height:1250.370000px;}
.w1_c01277{width:912.000000px;}
.w0_c01277{width:912.300000px;}
.x0_c01277{left:0.000000px;}
.x2_c01277{left:420.930000px;}
.x6_c01277{left:428.220000px;}
.x3_c01277{left:439.290000px;}
.x7_c01277{left:456.570000px;}
.x4_c01277{left:463.320000px;}
.x5_c01277{left:478.170000px;}
.x1_c01277{left:488.700000px;}
.x9_c01277{left:903.420000px;}
.x8_c01277{left:906.930000px;}
@media print{
.v0_c01277{vertical-align:0.000000pt;}
.ls0_c01277{letter-spacing:0.000000pt;}
.ws0_c01277{word-spacing:0.000000pt;}
.fs0_c01277{font-size:16.000000pt;}
.y0_c01277{bottom:0.000000pt;}
.y4_c01277{bottom:365.520000pt;}
.y3_c01277{bottom:776.988000pt;}
.y2_c01277{bottom:777.846667pt;}
.y1_c01277{bottom:781.200000pt;}
.h2_c01277{height:16.000000pt;}
.h1_c01277{height:1111.333333pt;}
.h0_c01277{height:1111.440000pt;}
.w1_c01277{width:810.666667pt;}
.w0_c01277{width:810.933333pt;}
.x0_c01277{left:0.000000pt;}
.x2_c01277{left:374.160000pt;}
.x6_c01277{left:380.640000pt;}
.x3_c01277{left:390.480000pt;}
.x7_c01277{left:405.840000pt;}
.x4_c01277{left:411.840000pt;}
.x5_c01277{left:425.040000pt;}
.x1_c01277{left:434.400000pt;}
.x9_c01277{left:803.040000pt;}
.x8_c01277{left:806.160000pt;}
}





/* 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_c01278 {
    display:none;
  }
  .loading-indicator_c01278.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01278 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_c01278 { 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_c01278" -> "#page-container .classname_c01278")
 */
.pf_c01278 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01278 { /* 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_c01278.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01278 { /* 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_c01278 { /* 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_c01278 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01278 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01278 {overflow:visible;}
  }
}
.c_c01278 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01278 { /* 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_c01278:after { /* webkit #35443 */
  content: '';
}
.t_c01278:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01278 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 */
}
.__c01278 { /* 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_c01278 { /* info for Javascript */
  display:none;
}
.l_c01278 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01278 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01278 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01278: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_c01278 {
    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_c01278.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01278.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_c01278 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01278{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01278;src:url('chunks/assets/font_cfe63ee56e9e10a97d33a3db.woff2')format("woff");}.ff1_c01278{font-family:ff1_c01278;line-height:1.000000;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;}
.m13_c01278{transform:matrix(0.068489,0.000890,-0.003250,0.249979,0,0);-ms-transform:matrix(0.068489,0.000890,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.068489,0.000890,-0.003250,0.249979,0,0);}
.m12_c01278{transform:matrix(0.109461,0.001423,-0.003250,0.249979,0,0);-ms-transform:matrix(0.109461,0.001423,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.109461,0.001423,-0.003250,0.249979,0,0);}
.m11_c01278{transform:matrix(0.142933,0.001858,-0.003250,0.249979,0,0);-ms-transform:matrix(0.142933,0.001858,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.142933,0.001858,-0.003250,0.249979,0,0);}
.m14_c01278{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m10_c01278{transform:matrix(0.172065,0.002237,-0.003250,0.249979,0,0);-ms-transform:matrix(0.172065,0.002237,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.172065,0.002237,-0.003250,0.249979,0,0);}
.m1_c01278{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m2_c01278{transform:matrix(0.207440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207440,0.000000,0.000000,0.250000,0,0);}
.m0_c01278{transform:matrix(0.210555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210555,0.000000,0.000000,0.250000,0,0);}
.mc_c01278{transform:matrix(0.274388,0.008506,-0.007746,0.249880,0,0);-ms-transform:matrix(0.274388,0.008506,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.274388,0.008506,-0.007746,0.249880,0,0);}
.md_c01278{transform:matrix(0.279511,0.008665,-0.007746,0.249880,0,0);-ms-transform:matrix(0.279511,0.008665,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.279511,0.008665,-0.007746,0.249880,0,0);}
.mb_c01278{transform:matrix(0.279946,0.008678,-0.007746,0.249880,0,0);-ms-transform:matrix(0.279946,0.008678,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.279946,0.008678,-0.007746,0.249880,0,0);}
.m7_c01278{transform:matrix(0.330562,0.002975,-0.002250,0.249990,0,0);-ms-transform:matrix(0.330562,0.002975,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.330562,0.002975,-0.002250,0.249990,0,0);}
.mf_c01278{transform:matrix(0.331997,0.004316,-0.003250,0.249979,0,0);-ms-transform:matrix(0.331997,0.004316,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.331997,0.004316,-0.003250,0.249979,0,0);}
.m9_c01278{transform:matrix(0.353426,0.003181,-0.002250,0.249990,0,0);-ms-transform:matrix(0.353426,0.003181,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.353426,0.003181,-0.002250,0.249990,0,0);}
.m6_c01278{transform:matrix(0.357961,0.003222,-0.002250,0.249990,0,0);-ms-transform:matrix(0.357961,0.003222,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.357961,0.003222,-0.002250,0.249990,0,0);}
.m4_c01278{transform:matrix(0.360795,0.003247,-0.002250,0.249990,0,0);-ms-transform:matrix(0.360795,0.003247,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.360795,0.003247,-0.002250,0.249990,0,0);}
.m8_c01278{transform:matrix(0.365515,0.003290,-0.002250,0.249990,0,0);-ms-transform:matrix(0.365515,0.003290,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.365515,0.003290,-0.002250,0.249990,0,0);}
.m5_c01278{transform:matrix(0.375365,0.003378,-0.002250,0.249990,0,0);-ms-transform:matrix(0.375365,0.003378,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.375365,0.003378,-0.002250,0.249990,0,0);}
.me_c01278{transform:matrix(0.406965,0.012616,-0.007746,0.249880,0,0);-ms-transform:matrix(0.406965,0.012616,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.406965,0.012616,-0.007746,0.249880,0,0);}
.m3_c01278{transform:matrix(0.429548,0.003866,-0.002250,0.249990,0,0);-ms-transform:matrix(0.429548,0.003866,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.429548,0.003866,-0.002250,0.249990,0,0);}
.ma_c01278{transform:matrix(0.668680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.668680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.668680,0.000000,0.000000,0.250000,0,0);}
.m15_c01278{transform:matrix(0.827645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.827645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.827645,0.000000,0.000000,0.250000,0,0);}
.v0_c01278{vertical-align:0.000000px;}
.ls0_c01278{letter-spacing:0.000000px;}
.sc__c01278{text-shadow:none;}
.sc0_c01278{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__c01278{-webkit-text-stroke:0px transparent;}
.sc0_c01278{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01278{word-spacing:0.000000px;}
.fc0_c01278{color:transparent;}
.fs1_c01278{font-size:24.000000px;}
.fs5_c01278{font-size:36.000000px;}
.fs2_c01278{font-size:54.002187px;}
.fs3_c01278{font-size:72.034588px;}
.fs0_c01278{font-size:78.000000px;}
.fs4_c01278{font-size:156.013181px;}
.y0_c01278{bottom:0.000000px;}
.y15_c01278{bottom:33.210000px;}
.y3_c01278{bottom:43.470000px;}
.y16_c01278{bottom:46.710000px;}
.y2_c01278{bottom:56.160000px;}
.y1_c01278{bottom:89.640000px;}
.y14_c01278{bottom:674.017962px;}
.y13_c01278{bottom:674.446143px;}
.y12_c01278{bottom:675.129072px;}
.y11_c01278{bottom:675.771344px;}
.y10_c01278{bottom:677.163000px;}
.yb_c01278{bottom:754.786500px;}
.ya_c01278{bottom:926.707240px;}
.y9_c01278{bottom:927.628264px;}
.y8_c01278{bottom:928.019481px;}
.y7_c01278{bottom:928.622229px;}
.y6_c01278{bottom:928.926006px;}
.y5_c01278{bottom:929.691253px;}
.y4_c01278{bottom:929.890500px;}
.yf_c01278{bottom:963.760797px;}
.ye_c01278{bottom:966.543496px;}
.yd_c01278{bottom:967.609927px;}
.yc_c01278{bottom:969.040500px;}
.h3_c01278{height:24.000000px;}
.h7_c01278{height:36.000000px;}
.h4_c01278{height:54.002187px;}
.h5_c01278{height:72.034588px;}
.h2_c01278{height:78.000000px;}
.h6_c01278{height:156.013181px;}
.h1_c01278{height:1250.250000px;}
.h0_c01278{height:1250.370000px;}
.w1_c01278{width:912.000000px;}
.w0_c01278{width:912.300000px;}
.x0_c01278{left:0.000000px;}
.x1_c01278{left:1.890000px;}
.x2_c01278{left:4.050000px;}
.x3_c01278{left:7.560000px;}
.xb_c01278{left:159.570000px;}
.x4_c01278{left:161.061000px;}
.x5_c01278{left:183.199500px;}
.xf_c01278{left:214.684500px;}
.xc_c01278{left:255.904500px;}
.x6_c01278{left:268.227000px;}
.x7_c01278{left:301.980000px;}
.x10_c01278{left:321.735000px;}
.xd_c01278{left:336.453000px;}
.x8_c01278{left:368.952000px;}
.x11_c01278{left:371.140500px;}
.x9_c01278{left:412.420500px;}
.x12_c01278{left:423.673500px;}
.xe_c01278{left:426.217500px;}
.x13_c01278{left:456.610500px;}
.xa_c01278{left:514.756500px;}
.x14_c01278{left:899.100000px;}
.x15_c01278{left:901.530000px;}
@media print{
.v0_c01278{vertical-align:0.000000pt;}
.ls0_c01278{letter-spacing:0.000000pt;}
.ws0_c01278{word-spacing:0.000000pt;}
.fs1_c01278{font-size:21.333333pt;}
.fs5_c01278{font-size:32.000000pt;}
.fs2_c01278{font-size:48.001944pt;}
.fs3_c01278{font-size:64.030745pt;}
.fs0_c01278{font-size:69.333333pt;}
.fs4_c01278{font-size:138.678384pt;}
.y0_c01278{bottom:0.000000pt;}
.y15_c01278{bottom:29.520000pt;}
.y3_c01278{bottom:38.640000pt;}
.y16_c01278{bottom:41.520000pt;}
.y2_c01278{bottom:49.920000pt;}
.y1_c01278{bottom:79.680000pt;}
.y14_c01278{bottom:599.127077pt;}
.y13_c01278{bottom:599.507683pt;}
.y12_c01278{bottom:600.114731pt;}
.y11_c01278{bottom:600.685639pt;}
.y10_c01278{bottom:601.922667pt;}
.yb_c01278{bottom:670.921333pt;}
.ya_c01278{bottom:823.739769pt;}
.y9_c01278{bottom:824.558457pt;}
.y8_c01278{bottom:824.906205pt;}
.y7_c01278{bottom:825.441981pt;}
.y6_c01278{bottom:825.712005pt;}
.y5_c01278{bottom:826.392225pt;}
.y4_c01278{bottom:826.569333pt;}
.yf_c01278{bottom:856.676264pt;}
.ye_c01278{bottom:859.149775pt;}
.yd_c01278{bottom:860.097713pt;}
.yc_c01278{bottom:861.369333pt;}
.h3_c01278{height:21.333333pt;}
.h7_c01278{height:32.000000pt;}
.h4_c01278{height:48.001944pt;}
.h5_c01278{height:64.030745pt;}
.h2_c01278{height:69.333333pt;}
.h6_c01278{height:138.678384pt;}
.h1_c01278{height:1111.333333pt;}
.h0_c01278{height:1111.440000pt;}
.w1_c01278{width:810.666667pt;}
.w0_c01278{width:810.933333pt;}
.x0_c01278{left:0.000000pt;}
.x1_c01278{left:1.680000pt;}
.x2_c01278{left:3.600000pt;}
.x3_c01278{left:6.720000pt;}
.xb_c01278{left:141.840000pt;}
.x4_c01278{left:143.165333pt;}
.x5_c01278{left:162.844000pt;}
.xf_c01278{left:190.830667pt;}
.xc_c01278{left:227.470667pt;}
.x6_c01278{left:238.424000pt;}
.x7_c01278{left:268.426667pt;}
.x10_c01278{left:285.986667pt;}
.xd_c01278{left:299.069333pt;}
.x8_c01278{left:327.957333pt;}
.x11_c01278{left:329.902667pt;}
.x9_c01278{left:366.596000pt;}
.x12_c01278{left:376.598667pt;}
.xe_c01278{left:378.860000pt;}
.x13_c01278{left:405.876000pt;}
.xa_c01278{left:457.561333pt;}
.x14_c01278{left:799.200000pt;}
.x15_c01278{left:801.360000pt;}
}





/* 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_c01279 {
    display:none;
  }
  .loading-indicator_c01279.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01279 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_c01279 { 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_c01279" -> "#page-container .classname_c01279")
 */
.pf_c01279 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01279 { /* 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_c01279.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01279 { /* 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_c01279 { /* 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_c01279 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01279 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01279 {overflow:visible;}
  }
}
.c_c01279 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01279 { /* 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_c01279:after { /* webkit #35443 */
  content: '';
}
.t_c01279:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01279 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 */
}
.__c01279 { /* 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_c01279 { /* info for Javascript */
  display:none;
}
.l_c01279 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01279 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01279 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01279: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_c01279 {
    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_c01279.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01279.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_c01279 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01279{font-family:sans-serif;visibility:hidden;}
.sc__c01279{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01279{-webkit-text-stroke:0px transparent;}
}
.y0_c01279{bottom:0.000000px;}
.h1_c01279{height:1250.250000px;}
.h0_c01279{height:1250.370000px;}
.w1_c01279{width:912.000000px;}
.w0_c01279{width:912.300000px;}
.x0_c01279{left:0.000000px;}
@media print{
.y0_c01279{bottom:0.000000pt;}
.h1_c01279{height:1111.333333pt;}
.h0_c01279{height:1111.440000pt;}
.w1_c01279{width:810.666667pt;}
.w0_c01279{width:810.933333pt;}
.x0_c01279{left:0.000000pt;}
}





/* 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_c01280 {
    display:none;
  }
  .loading-indicator_c01280.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01280 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_c01280 { 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_c01280" -> "#page-container .classname_c01280")
 */
.pf_c01280 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01280 { /* 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_c01280.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01280 { /* 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_c01280 { /* 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_c01280 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01280 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01280 {overflow:visible;}
  }
}
.c_c01280 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01280 { /* 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_c01280:after { /* webkit #35443 */
  content: '';
}
.t_c01280:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01280 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 */
}
.__c01280 { /* 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_c01280 { /* info for Javascript */
  display:none;
}
.l_c01280 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01280 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01280 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01280: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_c01280 {
    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_c01280.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01280.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_c01280 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01280{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01280;src:url('chunks/assets/font_cfe63ee56e9e10a97d33a3db.woff2')format("woff");}.ff1_c01280{font-family:ff1_c01280;line-height:1.000000;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;}
.m4_c01280{transform:matrix(0.108165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108165,0.000000,0.000000,0.250000,0,0);}
.mb_c01280{transform:matrix(0.146680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146680,0.000000,0.000000,0.250000,0,0);}
.m2_c01280{transform:matrix(0.190920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190920,0.000000,0.000000,0.250000,0,0);}
.m9_c01280{transform:matrix(0.264010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264010,0.000000,0.000000,0.250000,0,0);}
.m5_c01280{transform:matrix(0.273725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273725,0.000000,0.000000,0.250000,0,0);}
.ma_c01280{transform:matrix(0.302290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302290,0.000000,0.000000,0.250000,0,0);}
.m3_c01280{transform:matrix(0.368110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368110,0.000000,0.000000,0.250000,0,0);}
.m8_c01280{transform:matrix(0.393080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393080,0.000000,0.000000,0.250000,0,0);}
.m1_c01280{transform:matrix(0.405970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405970,0.000000,0.000000,0.250000,0,0);}
.m7_c01280{transform:matrix(0.443200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.443200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.443200,0.000000,0.000000,0.250000,0,0);}
.m0_c01280{transform:matrix(1.224600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.224600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.224600,0.000000,0.000000,0.250000,0,0);}
.m6_c01280{transform:matrix(1.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.227000,0.000000,0.000000,0.250000,0,0);}
.v0_c01280{vertical-align:0.000000px;}
.ls0_c01280{letter-spacing:0.000000px;}
.sc__c01280{text-shadow:none;}
.sc0_c01280{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__c01280{-webkit-text-stroke:0px transparent;}
.sc0_c01280{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01280{word-spacing:0.000000px;}
.fc0_c01280{color:transparent;}
.fs1_c01280{font-size:18.000000px;}
.fs0_c01280{font-size:24.000000px;}
.y0_c01280{bottom:0.000000px;}
.y6_c01280{bottom:974.160000px;}
.y7_c01280{bottom:978.210000px;}
.y8_c01280{bottom:978.480000px;}
.y5_c01280{bottom:1052.605500px;}
.y4_c01280{bottom:1059.085500px;}
.y3_c01280{bottom:1160.460000px;}
.y2_c01280{bottom:1162.890000px;}
.y1_c01280{bottom:1164.915000px;}
.h3_c01280{height:18.000000px;}
.h2_c01280{height:24.000000px;}
.h1_c01280{height:1250.250000px;}
.h0_c01280{height:1250.370000px;}
.w1_c01280{width:912.000000px;}
.w0_c01280{width:912.300000px;}
.x0_c01280{left:0.000000px;}
.xb_c01280{left:458.460000px;}
.xa_c01280{left:464.940000px;}
.x9_c01280{left:471.690000px;}
.x1_c01280{left:584.820000px;}
.x4_c01280{left:587.250000px;}
.x3_c01280{left:588.870000px;}
.x2_c01280{left:599.940000px;}
.x7_c01280{left:605.340000px;}
.x8_c01280{left:611.280000px;}
.x5_c01280{left:627.210000px;}
.x6_c01280{left:635.040000px;}
@media print{
.v0_c01280{vertical-align:0.000000pt;}
.ls0_c01280{letter-spacing:0.000000pt;}
.ws0_c01280{word-spacing:0.000000pt;}
.fs1_c01280{font-size:16.000000pt;}
.fs0_c01280{font-size:21.333333pt;}
.y0_c01280{bottom:0.000000pt;}
.y6_c01280{bottom:865.920000pt;}
.y7_c01280{bottom:869.520000pt;}
.y8_c01280{bottom:869.760000pt;}
.y5_c01280{bottom:935.649333pt;}
.y4_c01280{bottom:941.409333pt;}
.y3_c01280{bottom:1031.520000pt;}
.y2_c01280{bottom:1033.680000pt;}
.y1_c01280{bottom:1035.480000pt;}
.h3_c01280{height:16.000000pt;}
.h2_c01280{height:21.333333pt;}
.h1_c01280{height:1111.333333pt;}
.h0_c01280{height:1111.440000pt;}
.w1_c01280{width:810.666667pt;}
.w0_c01280{width:810.933333pt;}
.x0_c01280{left:0.000000pt;}
.xb_c01280{left:407.520000pt;}
.xa_c01280{left:413.280000pt;}
.x9_c01280{left:419.280000pt;}
.x1_c01280{left:519.840000pt;}
.x4_c01280{left:522.000000pt;}
.x3_c01280{left:523.440000pt;}
.x2_c01280{left:533.280000pt;}
.x7_c01280{left:538.080000pt;}
.x8_c01280{left:543.360000pt;}
.x5_c01280{left:557.520000pt;}
.x6_c01280{left:564.480000pt;}
}





/* 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_c01281 {
    display:none;
  }
  .loading-indicator_c01281.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01281 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_c01281 { 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_c01281" -> "#page-container .classname_c01281")
 */
.pf_c01281 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01281 { /* 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_c01281.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01281 { /* 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_c01281 { /* 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_c01281 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01281 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01281 {overflow:visible;}
  }
}
.c_c01281 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01281 { /* 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_c01281:after { /* webkit #35443 */
  content: '';
}
.t_c01281:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01281 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 */
}
.__c01281 { /* 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_c01281 { /* info for Javascript */
  display:none;
}
.l_c01281 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01281 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01281 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01281: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_c01281 {
    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_c01281.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01281.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_c01281 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01281{font-family:sans-serif;visibility:hidden;}
.sc__c01281{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01281{-webkit-text-stroke:0px transparent;}
}
.y0_c01281{bottom:0.000000px;}
.h1_c01281{height:1250.250000px;}
.h0_c01281{height:1250.370000px;}
.w1_c01281{width:912.000000px;}
.w0_c01281{width:912.300000px;}
.x0_c01281{left:0.000000px;}
@media print{
.y0_c01281{bottom:0.000000pt;}
.h1_c01281{height:1111.333333pt;}
.h0_c01281{height:1111.440000pt;}
.w1_c01281{width:810.666667pt;}
.w0_c01281{width:810.933333pt;}
.x0_c01281{left:0.000000pt;}
}





/* 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_c01282 {
    display:none;
  }
  .loading-indicator_c01282.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01282 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_c01282 { 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_c01282" -> "#page-container .classname_c01282")
 */
.pf_c01282 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01282 { /* 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_c01282.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01282 { /* 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_c01282 { /* 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_c01282 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01282 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01282 {overflow:visible;}
  }
}
.c_c01282 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01282 { /* 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_c01282:after { /* webkit #35443 */
  content: '';
}
.t_c01282:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01282 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 */
}
.__c01282 { /* 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_c01282 { /* info for Javascript */
  display:none;
}
.l_c01282 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01282 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01282 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01282: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_c01282 {
    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_c01282.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01282.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_c01282 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01282{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01282;src:url('chunks/assets/font_97998a297af8da24a717a89b.woff2')format("woff");}.ff1_c01282{font-family:ff1_c01282;line-height:1.000000;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;}
.m48_c01282{transform:matrix(0.009485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.009485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.009485,0.000000,0.000000,0.250000,0,0);}
.m9_c01282{transform:matrix(0.013015,0.000078,-0.001500,0.249996,0,0);-ms-transform:matrix(0.013015,0.000078,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.013015,0.000078,-0.001500,0.249996,0,0);}
.m23_c01282{transform:matrix(0.065519,0.000393,-0.001500,0.249996,0,0);-ms-transform:matrix(0.065519,0.000393,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.065519,0.000393,-0.001500,0.249996,0,0);}
.mf_c01282{transform:matrix(0.115003,0.000690,-0.001500,0.249996,0,0);-ms-transform:matrix(0.115003,0.000690,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.115003,0.000690,-0.001500,0.249996,0,0);}
.md_c01282{transform:matrix(0.122278,0.000734,-0.001500,0.249996,0,0);-ms-transform:matrix(0.122278,0.000734,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.122278,0.000734,-0.001500,0.249996,0,0);}
.mc_c01282{transform:matrix(0.123613,0.000742,-0.001500,0.249996,0,0);-ms-transform:matrix(0.123613,0.000742,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.123613,0.000742,-0.001500,0.249996,0,0);}
.m11_c01282{transform:matrix(0.123803,0.000743,-0.001500,0.249996,0,0);-ms-transform:matrix(0.123803,0.000743,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.123803,0.000743,-0.001500,0.249996,0,0);}
.ma_c01282{transform:matrix(0.125578,0.000753,-0.001500,0.249996,0,0);-ms-transform:matrix(0.125578,0.000753,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.125578,0.000753,-0.001500,0.249996,0,0);}
.mb_c01282{transform:matrix(0.126728,0.000760,-0.001500,0.249996,0,0);-ms-transform:matrix(0.126728,0.000760,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.126728,0.000760,-0.001500,0.249996,0,0);}
.me_c01282{transform:matrix(0.128343,0.000770,-0.001500,0.249996,0,0);-ms-transform:matrix(0.128343,0.000770,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.128343,0.000770,-0.001500,0.249996,0,0);}
.m0_c01282{transform:matrix(0.131808,0.000791,-0.001500,0.249996,0,0);-ms-transform:matrix(0.131808,0.000791,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.131808,0.000791,-0.001500,0.249996,0,0);}
.m4b_c01282{transform:matrix(0.135405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135405,0.000000,0.000000,0.250000,0,0);}
.m4d_c01282{transform:matrix(0.136175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136175,0.000000,0.000000,0.250000,0,0);}
.m4c_c01282{transform:matrix(0.138320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138320,0.000000,0.000000,0.250000,0,0);}
.m4a_c01282{transform:matrix(0.141785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141785,0.000000,0.000000,0.250000,0,0);}
.m4e_c01282{transform:matrix(0.144680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144680,0.000000,0.000000,0.250000,0,0);}
.m50_c01282{transform:matrix(0.146860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146860,0.000000,0.000000,0.250000,0,0);}
.m4f_c01282{transform:matrix(0.147855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147855,0.000000,0.000000,0.250000,0,0);}
.m29_c01282{transform:matrix(0.151980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151980,0.000000,0.000000,0.250000,0,0);}
.m25_c01282{transform:matrix(0.154165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154165,0.000000,0.000000,0.250000,0,0);}
.m27_c01282{transform:matrix(0.157280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157280,0.000000,0.000000,0.250000,0,0);}
.m28_c01282{transform:matrix(0.160540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160540,0.000000,0.000000,0.250000,0,0);}
.m10_c01282{transform:matrix(0.164222,0.000985,-0.001500,0.249996,0,0);-ms-transform:matrix(0.164222,0.000985,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.164222,0.000985,-0.001500,0.249996,0,0);}
.m2c_c01282{transform:matrix(0.165085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165085,0.000000,0.000000,0.250000,0,0);}
.m2a_c01282{transform:matrix(0.167565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167565,0.000000,0.000000,0.250000,0,0);}
.m21_c01282{transform:matrix(0.169757,0.001019,-0.001500,0.249996,0,0);-ms-transform:matrix(0.169757,0.001019,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.169757,0.001019,-0.001500,0.249996,0,0);}
.m52_c01282{transform:matrix(0.169845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169845,0.000000,0.000000,0.250000,0,0);}
.m49_c01282{transform:matrix(0.175395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175395,0.000000,0.000000,0.250000,0,0);}
.m2b_c01282{transform:matrix(0.175905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175905,0.000000,0.000000,0.250000,0,0);}
.m19_c01282{transform:matrix(0.176237,0.001057,-0.001500,0.249996,0,0);-ms-transform:matrix(0.176237,0.001057,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.176237,0.001057,-0.001500,0.249996,0,0);}
.m26_c01282{transform:matrix(0.178255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178255,0.000000,0.000000,0.250000,0,0);}
.m2d_c01282{transform:matrix(0.185620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185620,0.000000,0.000000,0.250000,0,0);}
.m51_c01282{transform:matrix(0.186660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186660,0.000000,0.000000,0.250000,0,0);}
.m3e_c01282{transform:matrix(0.186870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186870,0.000000,0.000000,0.250000,0,0);}
.m18_c01282{transform:matrix(0.192297,0.001154,-0.001500,0.249996,0,0);-ms-transform:matrix(0.192297,0.001154,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.192297,0.001154,-0.001500,0.249996,0,0);}
.m2f_c01282{transform:matrix(0.198410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198410,0.000000,0.000000,0.250000,0,0);}
.m1c_c01282{transform:matrix(0.199526,0.001197,-0.001500,0.249996,0,0);-ms-transform:matrix(0.199526,0.001197,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.199526,0.001197,-0.001500,0.249996,0,0);}
.m14_c01282{transform:matrix(0.200766,0.001205,-0.001500,0.249996,0,0);-ms-transform:matrix(0.200766,0.001205,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.200766,0.001205,-0.001500,0.249996,0,0);}
.m13_c01282{transform:matrix(0.200921,0.001206,-0.001500,0.249996,0,0);-ms-transform:matrix(0.200921,0.001206,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.200921,0.001206,-0.001500,0.249996,0,0);}
.m31_c01282{transform:matrix(0.203245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203245,0.000000,0.000000,0.250000,0,0);}
.m12_c01282{transform:matrix(0.204816,0.001229,-0.001500,0.249996,0,0);-ms-transform:matrix(0.204816,0.001229,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.204816,0.001229,-0.001500,0.249996,0,0);}
.m17_c01282{transform:matrix(0.208196,0.001249,-0.001500,0.249996,0,0);-ms-transform:matrix(0.208196,0.001249,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.208196,0.001249,-0.001500,0.249996,0,0);}
.m30_c01282{transform:matrix(0.209880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209880,0.000000,0.000000,0.250000,0,0);}
.m36_c01282{transform:matrix(0.212825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212825,0.000000,0.000000,0.250000,0,0);}
.m40_c01282{transform:matrix(0.212835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212835,0.000000,0.000000,0.250000,0,0);}
.m15_c01282{transform:matrix(0.214341,0.001286,-0.001500,0.249996,0,0);-ms-transform:matrix(0.214341,0.001286,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.214341,0.001286,-0.001500,0.249996,0,0);}
.m3d_c01282{transform:matrix(0.217605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217605,0.000000,0.000000,0.250000,0,0);}
.m41_c01282{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m32_c01282{transform:matrix(0.220695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220695,0.000000,0.000000,0.250000,0,0);}
.m38_c01282{transform:matrix(0.221380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221380,0.000000,0.000000,0.250000,0,0);}
.m2e_c01282{transform:matrix(0.222135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222135,0.000000,0.000000,0.250000,0,0);}
.m1a_c01282{transform:matrix(0.222651,0.001336,-0.001500,0.249996,0,0);-ms-transform:matrix(0.222651,0.001336,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.222651,0.001336,-0.001500,0.249996,0,0);}
.m1f_c01282{transform:matrix(0.223956,0.001344,-0.001500,0.249996,0,0);-ms-transform:matrix(0.223956,0.001344,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.223956,0.001344,-0.001500,0.249996,0,0);}
.m22_c01282{transform:matrix(0.224521,0.001347,-0.001500,0.249996,0,0);-ms-transform:matrix(0.224521,0.001347,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.224521,0.001347,-0.001500,0.249996,0,0);}
.m20_c01282{transform:matrix(0.225516,0.001353,-0.001500,0.249996,0,0);-ms-transform:matrix(0.225516,0.001353,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.225516,0.001353,-0.001500,0.249996,0,0);}
.m16_c01282{transform:matrix(0.225791,0.001355,-0.001500,0.249996,0,0);-ms-transform:matrix(0.225791,0.001355,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.225791,0.001355,-0.001500,0.249996,0,0);}
.m47_c01282{transform:matrix(0.226270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226270,0.000000,0.000000,0.250000,0,0);}
.m1e_c01282{transform:matrix(0.227166,0.001363,-0.001500,0.249996,0,0);-ms-transform:matrix(0.227166,0.001363,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.227166,0.001363,-0.001500,0.249996,0,0);}
.m42_c01282{transform:matrix(0.227910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227910,0.000000,0.000000,0.250000,0,0);}
.m1d_c01282{transform:matrix(0.228021,0.001368,-0.001500,0.249996,0,0);-ms-transform:matrix(0.228021,0.001368,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.228021,0.001368,-0.001500,0.249996,0,0);}
.m35_c01282{transform:matrix(0.231075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231075,0.000000,0.000000,0.250000,0,0);}
.m3f_c01282{transform:matrix(0.231515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231515,0.000000,0.000000,0.250000,0,0);}
.m46_c01282{transform:matrix(0.231925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231925,0.000000,0.000000,0.250000,0,0);}
.m2_c01282{transform:matrix(0.234401,0.001406,-0.001500,0.249996,0,0);-ms-transform:matrix(0.234401,0.001406,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.234401,0.001406,-0.001500,0.249996,0,0);}
.m37_c01282{transform:matrix(0.238775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238775,0.000000,0.000000,0.250000,0,0);}
.m3c_c01282{transform:matrix(0.239030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239030,0.000000,0.000000,0.250000,0,0);}
.m1b_c01282{transform:matrix(0.239101,0.001435,-0.001500,0.249996,0,0);-ms-transform:matrix(0.239101,0.001435,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.239101,0.001435,-0.001500,0.249996,0,0);}
.m34_c01282{transform:matrix(0.239225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239225,0.000000,0.000000,0.250000,0,0);}
.m43_c01282{transform:matrix(0.240300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240300,0.000000,0.000000,0.250000,0,0);}
.m24_c01282{transform:matrix(0.243305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243305,0.000000,0.000000,0.250000,0,0);}
.m39_c01282{transform:matrix(0.243465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243465,0.000000,0.000000,0.250000,0,0);}
.m5_c01282{transform:matrix(0.246411,0.001478,-0.001500,0.249996,0,0);-ms-transform:matrix(0.246411,0.001478,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.246411,0.001478,-0.001500,0.249996,0,0);}
.m44_c01282{transform:matrix(0.247220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247220,0.000000,0.000000,0.250000,0,0);}
.m3b_c01282{transform:matrix(0.254925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254925,0.000000,0.000000,0.250000,0,0);}
.m3_c01282{transform:matrix(0.259595,0.001558,-0.001500,0.249996,0,0);-ms-transform:matrix(0.259595,0.001558,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.259595,0.001558,-0.001500,0.249996,0,0);}
.m45_c01282{transform:matrix(0.265015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265015,0.000000,0.000000,0.250000,0,0);}
.m33_c01282{transform:matrix(0.271940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271940,0.000000,0.000000,0.250000,0,0);}
.m6_c01282{transform:matrix(0.275610,0.001654,-0.001500,0.249996,0,0);-ms-transform:matrix(0.275610,0.001654,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.275610,0.001654,-0.001500,0.249996,0,0);}
.m3a_c01282{transform:matrix(0.280320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280320,0.000000,0.000000,0.250000,0,0);}
.m4_c01282{transform:matrix(0.281345,0.001688,-0.001500,0.249996,0,0);-ms-transform:matrix(0.281345,0.001688,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.281345,0.001688,-0.001500,0.249996,0,0);}
.m7_c01282{transform:matrix(0.283725,0.001702,-0.001500,0.249996,0,0);-ms-transform:matrix(0.283725,0.001702,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.283725,0.001702,-0.001500,0.249996,0,0);}
.m1_c01282{transform:matrix(0.284370,0.001706,-0.001500,0.249996,0,0);-ms-transform:matrix(0.284370,0.001706,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.284370,0.001706,-0.001500,0.249996,0,0);}
.m8_c01282{transform:matrix(0.293120,0.001759,-0.001500,0.249996,0,0);-ms-transform:matrix(0.293120,0.001759,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.293120,0.001759,-0.001500,0.249996,0,0);}
.v0_c01282{vertical-align:0.000000px;}
.ls0_c01282{letter-spacing:0.000000px;}
.sc__c01282{text-shadow:none;}
.sc0_c01282{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__c01282{-webkit-text-stroke:0px transparent;}
.sc0_c01282{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01282{word-spacing:0.000000px;}
.fc0_c01282{color:transparent;}
.fs0_c01282{font-size:78.001404px;}
.fs4_c01282{font-size:84.000000px;}
.fs5_c01282{font-size:90.000000px;}
.fs2_c01282{font-size:90.001620px;}
.fs3_c01282{font-size:114.000000px;}
.fs6_c01282{font-size:132.000000px;}
.fs1_c01282{font-size:162.002916px;}
.y0_c01282{bottom:0.000000px;}
.y41_c01282{bottom:627.600000px;}
.y40_c01282{bottom:632.187000px;}
.y3f_c01282{bottom:696.286500px;}
.y3e_c01282{bottom:699.841500px;}
.y3d_c01282{bottom:735.120000px;}
.y3c_c01282{bottom:735.646500px;}
.y3b_c01282{bottom:735.909000px;}
.y3a_c01282{bottom:736.353000px;}
.y39_c01282{bottom:736.737000px;}
.y38_c01282{bottom:736.908000px;}
.y37_c01282{bottom:737.077500px;}
.y36_c01282{bottom:737.511000px;}
.y35_c01282{bottom:737.626500px;}
.y34_c01282{bottom:737.796000px;}
.y33_c01282{bottom:738.180000px;}
.y32_c01282{bottom:769.546500px;}
.y31_c01282{bottom:769.873500px;}
.y30_c01282{bottom:770.764500px;}
.y2f_c01282{bottom:771.075000px;}
.y2e_c01282{bottom:771.559500px;}
.y2d_c01282{bottom:771.865500px;}
.y2c_c01282{bottom:772.464000px;}
.y2b_c01282{bottom:773.259000px;}
.y2a_c01282{bottom:773.587500px;}
.y29_c01282{bottom:774.552000px;}
.y28_c01282{bottom:774.853500px;}
.y27_c01282{bottom:775.147500px;}
.y26_c01282{bottom:775.441500px;}
.y25_c01282{bottom:808.849500px;}
.y21_c01282{bottom:842.690004px;}
.y22_c01282{bottom:845.274492px;}
.y23_c01282{bottom:846.026688px;}
.y24_c01282{bottom:864.347883px;}
.y15_c01282{bottom:875.878260px;}
.y16_c01282{bottom:876.255237px;}
.y17_c01282{bottom:876.583476px;}
.y18_c01282{bottom:877.182558px;}
.y19_c01282{bottom:877.439694px;}
.y1a_c01282{bottom:877.646370px;}
.y1b_c01282{bottom:877.834653px;}
.y1c_c01282{bottom:878.239644px;}
.y1d_c01282{bottom:878.438262px;}
.y1e_c01282{bottom:878.646357px;}
.y1f_c01282{bottom:879.241056px;}
.y20_c01282{bottom:879.569196px;}
.ya_c01282{bottom:932.045583px;}
.yb_c01282{bottom:932.725611px;}
.yc_c01282{bottom:933.865374px;}
.yd_c01282{bottom:936.636153px;}
.ye_c01282{bottom:937.339791px;}
.yf_c01282{bottom:939.218175px;}
.y10_c01282{bottom:941.537685px;}
.y11_c01282{bottom:942.460710px;}
.y12_c01282{bottom:943.174815px;}
.y13_c01282{bottom:944.552718px;}
.y14_c01282{bottom:945.987858px;}
.y9_c01282{bottom:988.594938px;}
.y8_c01282{bottom:988.836264px;}
.y7_c01282{bottom:989.565372px;}
.y6_c01282{bottom:989.759565px;}
.y5_c01282{bottom:989.966808px;}
.y4_c01282{bottom:990.621405px;}
.y3_c01282{bottom:990.950094px;}
.y2_c01282{bottom:991.614348px;}
.y1_c01282{bottom:991.710000px;}
.h2_c01282{height:78.001404px;}
.h6_c01282{height:84.000000px;}
.h7_c01282{height:90.000000px;}
.h4_c01282{height:90.001620px;}
.h5_c01282{height:114.000000px;}
.h8_c01282{height:132.000000px;}
.h3_c01282{height:162.002916px;}
.h1_c01282{height:1250.250000px;}
.h0_c01282{height:1250.370000px;}
.w1_c01282{width:912.000000px;}
.w0_c01282{width:912.300000px;}
.x0_c01282{left:0.000000px;}
.xa_c01282{left:126.440958px;}
.x1_c01282{left:142.230000px;}
.x3e_c01282{left:150.930000px;}
.x2e_c01282{left:156.261000px;}
.x2_c01282{left:158.172000px;}
.x1c_c01282{left:159.252525px;}
.x13_c01282{left:161.575731px;}
.x3f_c01282{left:188.460000px;}
.x28_c01282{left:190.513500px;}
.xb_c01282{left:213.156498px;}
.x29_c01282{left:223.195500px;}
.x14_c01282{left:224.500758px;}
.x2f_c01282{left:233.203500px;}
.x1d_c01282{left:235.272768px;}
.x37_c01282{left:254.880000px;}
.x1e_c01282{left:257.412078px;}
.x20_c01282{left:266.490000px;}
.x3_c01282{left:268.881000px;}
.x15_c01282{left:279.298200px;}
.x30_c01282{left:290.439000px;}
.x21_c01282{left:300.780000px;}
.x4_c01282{left:323.662500px;}
.x22_c01282{left:333.180000px;}
.x38_c01282{left:343.170000px;}
.xc_c01282{left:345.131373px;}
.x2a_c01282{left:363.825000px;}
.x31_c01282{left:377.107500px;}
.xd_c01282{left:378.613800px;}
.x39_c01282{left:387.180000px;}
.x23_c01282{left:400.140000px;}
.x32_c01282{left:410.857500px;}
.x16_c01282{left:422.105478px;}
.x5_c01282{left:432.762000px;}
.x3a_c01282{left:443.610000px;}
.x24_c01282{left:444.690000px;}
.x17_c01282{left:456.661962px;}
.x6_c01282{left:467.302500px;}
.x3b_c01282{left:476.820000px;}
.x18_c01282{left:488.033721px;}
.x7_c01282{left:499.668000px;}
.x25_c01282{left:522.720000px;}
.x3c_c01282{left:543.780000px;}
.x19_c01282{left:555.540081px;}
.xe_c01282{left:578.497182px;}
.x1a_c01282{left:588.689466px;}
.x3d_c01282{left:600.210000px;}
.x33_c01282{left:610.603500px;}
.x8_c01282{left:621.186000px;}
.xf_c01282{left:622.416801px;}
.x2b_c01282{left:642.756000px;}
.x10_c01282{left:656.404809px;}
.x9_c01282{left:661.407000px;}
.x34_c01282{left:663.249000px;}
.x26_c01282{left:665.550000px;}
.x36_c01282{left:667.530000px;}
.x2c_c01282{left:677.298000px;}
.x11_c01282{left:722.014938px;}
.x35_c01282{left:768.552000px;}
.x1b_c01282{left:777.214038px;}
.x12_c01282{left:790.336008px;}
.x1f_c01282{left:796.258899px;}
.x27_c01282{left:798.660000px;}
.x2d_c01282{left:812.709000px;}
@media print{
.v0_c01282{vertical-align:0.000000pt;}
.ls0_c01282{letter-spacing:0.000000pt;}
.ws0_c01282{word-spacing:0.000000pt;}
.fs0_c01282{font-size:69.334581pt;}
.fs4_c01282{font-size:74.666667pt;}
.fs5_c01282{font-size:80.000000pt;}
.fs2_c01282{font-size:80.001440pt;}
.fs3_c01282{font-size:101.333333pt;}
.fs6_c01282{font-size:117.333333pt;}
.fs1_c01282{font-size:144.002592pt;}
.y0_c01282{bottom:0.000000pt;}
.y41_c01282{bottom:557.866667pt;}
.y40_c01282{bottom:561.944000pt;}
.y3f_c01282{bottom:618.921333pt;}
.y3e_c01282{bottom:622.081333pt;}
.y3d_c01282{bottom:653.440000pt;}
.y3c_c01282{bottom:653.908000pt;}
.y3b_c01282{bottom:654.141333pt;}
.y3a_c01282{bottom:654.536000pt;}
.y39_c01282{bottom:654.877333pt;}
.y38_c01282{bottom:655.029333pt;}
.y37_c01282{bottom:655.180000pt;}
.y36_c01282{bottom:655.565333pt;}
.y35_c01282{bottom:655.668000pt;}
.y34_c01282{bottom:655.818667pt;}
.y33_c01282{bottom:656.160000pt;}
.y32_c01282{bottom:684.041333pt;}
.y31_c01282{bottom:684.332000pt;}
.y30_c01282{bottom:685.124000pt;}
.y2f_c01282{bottom:685.400000pt;}
.y2e_c01282{bottom:685.830667pt;}
.y2d_c01282{bottom:686.102667pt;}
.y2c_c01282{bottom:686.634667pt;}
.y2b_c01282{bottom:687.341333pt;}
.y2a_c01282{bottom:687.633333pt;}
.y29_c01282{bottom:688.490667pt;}
.y28_c01282{bottom:688.758667pt;}
.y27_c01282{bottom:689.020000pt;}
.y26_c01282{bottom:689.281333pt;}
.y25_c01282{bottom:718.977333pt;}
.y21_c01282{bottom:749.057781pt;}
.y22_c01282{bottom:751.355104pt;}
.y23_c01282{bottom:752.023723pt;}
.y24_c01282{bottom:768.309229pt;}
.y15_c01282{bottom:778.558453pt;}
.y16_c01282{bottom:778.893544pt;}
.y17_c01282{bottom:779.185312pt;}
.y18_c01282{bottom:779.717829pt;}
.y19_c01282{bottom:779.946395pt;}
.y1a_c01282{bottom:780.130107pt;}
.y1b_c01282{bottom:780.297469pt;}
.y1c_c01282{bottom:780.657461pt;}
.y1d_c01282{bottom:780.834011pt;}
.y1e_c01282{bottom:781.018984pt;}
.y1f_c01282{bottom:781.547605pt;}
.y20_c01282{bottom:781.839285pt;}
.ya_c01282{bottom:828.484963pt;}
.yb_c01282{bottom:829.089432pt;}
.yc_c01282{bottom:830.102555pt;}
.yd_c01282{bottom:832.565469pt;}
.ye_c01282{bottom:833.190925pt;}
.yf_c01282{bottom:834.860600pt;}
.y10_c01282{bottom:836.922387pt;}
.y11_c01282{bottom:837.742853pt;}
.y12_c01282{bottom:838.377613pt;}
.y13_c01282{bottom:839.602416pt;}
.y14_c01282{bottom:840.878096pt;}
.y9_c01282{bottom:878.751056pt;}
.y8_c01282{bottom:878.965568pt;}
.y7_c01282{bottom:879.613664pt;}
.y6_c01282{bottom:879.786280pt;}
.y5_c01282{bottom:879.970496pt;}
.y4_c01282{bottom:880.552360pt;}
.y3_c01282{bottom:880.844528pt;}
.y2_c01282{bottom:881.434976pt;}
.y1_c01282{bottom:881.520000pt;}
.h2_c01282{height:69.334581pt;}
.h6_c01282{height:74.666667pt;}
.h7_c01282{height:80.000000pt;}
.h4_c01282{height:80.001440pt;}
.h5_c01282{height:101.333333pt;}
.h8_c01282{height:117.333333pt;}
.h3_c01282{height:144.002592pt;}
.h1_c01282{height:1111.333333pt;}
.h0_c01282{height:1111.440000pt;}
.w1_c01282{width:810.666667pt;}
.w0_c01282{width:810.933333pt;}
.x0_c01282{left:0.000000pt;}
.xa_c01282{left:112.391963pt;}
.x1_c01282{left:126.426667pt;}
.x3e_c01282{left:134.160000pt;}
.x2e_c01282{left:138.898667pt;}
.x2_c01282{left:140.597333pt;}
.x1c_c01282{left:141.557800pt;}
.x13_c01282{left:143.622872pt;}
.x3f_c01282{left:167.520000pt;}
.x28_c01282{left:169.345333pt;}
.xb_c01282{left:189.472443pt;}
.x29_c01282{left:198.396000pt;}
.x14_c01282{left:199.556229pt;}
.x2f_c01282{left:207.292000pt;}
.x1d_c01282{left:209.131349pt;}
.x37_c01282{left:226.560000pt;}
.x1e_c01282{left:228.810736pt;}
.x20_c01282{left:236.880000pt;}
.x3_c01282{left:239.005333pt;}
.x15_c01282{left:248.265067pt;}
.x30_c01282{left:258.168000pt;}
.x21_c01282{left:267.360000pt;}
.x4_c01282{left:287.700000pt;}
.x22_c01282{left:296.160000pt;}
.x38_c01282{left:305.040000pt;}
.xc_c01282{left:306.783443pt;}
.x2a_c01282{left:323.400000pt;}
.x31_c01282{left:335.206667pt;}
.xd_c01282{left:336.545600pt;}
.x39_c01282{left:344.160000pt;}
.x23_c01282{left:355.680000pt;}
.x32_c01282{left:365.206667pt;}
.x16_c01282{left:375.204869pt;}
.x5_c01282{left:384.677333pt;}
.x3a_c01282{left:394.320000pt;}
.x24_c01282{left:395.280000pt;}
.x17_c01282{left:405.921744pt;}
.x6_c01282{left:415.380000pt;}
.x3b_c01282{left:423.840000pt;}
.x18_c01282{left:433.807752pt;}
.x7_c01282{left:444.149333pt;}
.x25_c01282{left:464.640000pt;}
.x3c_c01282{left:483.360000pt;}
.x19_c01282{left:493.813405pt;}
.xe_c01282{left:514.219717pt;}
.x1a_c01282{left:523.279525pt;}
.x3d_c01282{left:533.520000pt;}
.x33_c01282{left:542.758667pt;}
.x8_c01282{left:552.165333pt;}
.xf_c01282{left:553.259379pt;}
.x2b_c01282{left:571.338667pt;}
.x10_c01282{left:583.470941pt;}
.x9_c01282{left:587.917333pt;}
.x34_c01282{left:589.554667pt;}
.x26_c01282{left:591.600000pt;}
.x36_c01282{left:593.360000pt;}
.x2c_c01282{left:602.042667pt;}
.x11_c01282{left:641.791056pt;}
.x35_c01282{left:683.157333pt;}
.x1b_c01282{left:690.856923pt;}
.x12_c01282{left:702.520896pt;}
.x1f_c01282{left:707.785688pt;}
.x27_c01282{left:709.920000pt;}
.x2d_c01282{left:722.408000pt;}
}





/* 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_c01283 {
    display:none;
  }
  .loading-indicator_c01283.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01283 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_c01283 { 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_c01283" -> "#page-container .classname_c01283")
 */
.pf_c01283 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01283 { /* 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_c01283.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01283 { /* 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_c01283 { /* 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_c01283 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01283 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01283 {overflow:visible;}
  }
}
.c_c01283 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01283 { /* 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_c01283:after { /* webkit #35443 */
  content: '';
}
.t_c01283:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01283 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 */
}
.__c01283 { /* 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_c01283 { /* info for Javascript */
  display:none;
}
.l_c01283 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01283 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01283 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01283: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_c01283 {
    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_c01283.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01283.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_c01283 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01283{font-family:sans-serif;visibility:hidden;}
.sc__c01283{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01283{-webkit-text-stroke:0px transparent;}
}
.y0_c01283{bottom:0.000000px;}
.h1_c01283{height:1250.250000px;}
.h0_c01283{height:1250.370000px;}
.w1_c01283{width:912.000000px;}
.w0_c01283{width:912.300000px;}
.x0_c01283{left:0.000000px;}
@media print{
.y0_c01283{bottom:0.000000pt;}
.h1_c01283{height:1111.333333pt;}
.h0_c01283{height:1111.440000pt;}
.w1_c01283{width:810.666667pt;}
.w0_c01283{width:810.933333pt;}
.x0_c01283{left:0.000000pt;}
}





/* 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_c01284 {
    display:none;
  }
  .loading-indicator_c01284.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01284 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_c01284 { 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_c01284" -> "#page-container .classname_c01284")
 */
.pf_c01284 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01284 { /* 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_c01284.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01284 { /* 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_c01284 { /* 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_c01284 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01284 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01284 {overflow:visible;}
  }
}
.c_c01284 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01284 { /* 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_c01284:after { /* webkit #35443 */
  content: '';
}
.t_c01284:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01284 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 */
}
.__c01284 { /* 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_c01284 { /* info for Javascript */
  display:none;
}
.l_c01284 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01284 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01284 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01284: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_c01284 {
    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_c01284.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01284.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_c01284 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01284{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01284;src:url('chunks/assets/font_dbd529e162d5851c7bfb6d27.woff2')format("woff");}.ff1_c01284{font-family:ff1_c01284;line-height:1.000000;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;}
.mdf_c01284{transform:matrix(0.010601,0.000276,-0.006498,0.249916,0,0);-ms-transform:matrix(0.010601,0.000276,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.010601,0.000276,-0.006498,0.249916,0,0);}
.m67_c01284{transform:matrix(0.098229,0.002652,-0.006748,0.249909,0,0);-ms-transform:matrix(0.098229,0.002652,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.098229,0.002652,-0.006748,0.249909,0,0);}
.mb_c01284{transform:matrix(0.101841,0.002648,-0.006498,0.249916,0,0);-ms-transform:matrix(0.101841,0.002648,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.101841,0.002648,-0.006498,0.249916,0,0);}
.m0_c01284{transform:matrix(0.119262,0.005730,-0.011998,0.249712,0,0);-ms-transform:matrix(0.119262,0.005730,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.119262,0.005730,-0.011998,0.249712,0,0);}
.m64_c01284{transform:matrix(0.165455,0.004467,-0.006748,0.249909,0,0);-ms-transform:matrix(0.165455,0.004467,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.165455,0.004467,-0.006748,0.249909,0,0);}
.m61_c01284{transform:matrix(0.167234,0.004515,-0.006748,0.249909,0,0);-ms-transform:matrix(0.167234,0.004515,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.167234,0.004515,-0.006748,0.249909,0,0);}
.m5f_c01284{transform:matrix(0.168094,0.004539,-0.006748,0.249909,0,0);-ms-transform:matrix(0.168094,0.004539,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.168094,0.004539,-0.006748,0.249909,0,0);}
.m100_c01284{transform:matrix(0.187462,0.004874,-0.006498,0.249916,0,0);-ms-transform:matrix(0.187462,0.004874,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.187462,0.004874,-0.006498,0.249916,0,0);}
.m2_c01284{transform:matrix(0.187818,0.009024,-0.011998,0.249712,0,0);-ms-transform:matrix(0.187818,0.009024,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.187818,0.009024,-0.011998,0.249712,0,0);}
.mb8_c01284{transform:matrix(0.189716,0.005122,-0.006748,0.249909,0,0);-ms-transform:matrix(0.189716,0.005122,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.189716,0.005122,-0.006748,0.249909,0,0);}
.m65_c01284{transform:matrix(0.192700,0.005203,-0.006748,0.249909,0,0);-ms-transform:matrix(0.192700,0.005203,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.192700,0.005203,-0.006748,0.249909,0,0);}
.mb1_c01284{transform:matrix(0.193085,0.005213,-0.006748,0.249909,0,0);-ms-transform:matrix(0.193085,0.005213,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.193085,0.005213,-0.006748,0.249909,0,0);}
.mac_c01284{transform:matrix(0.197363,0.005329,-0.006748,0.249909,0,0);-ms-transform:matrix(0.197363,0.005329,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.197363,0.005329,-0.006748,0.249909,0,0);}
.m5d_c01284{transform:matrix(0.198858,0.005369,-0.006748,0.249909,0,0);-ms-transform:matrix(0.198858,0.005369,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.198858,0.005369,-0.006748,0.249909,0,0);}
.m154_c01284{transform:matrix(0.199221,0.007578,-0.009503,0.249819,0,0);-ms-transform:matrix(0.199221,0.007578,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.199221,0.007578,-0.009503,0.249819,0,0);}
.mbf_c01284{transform:matrix(0.200222,0.005406,-0.006748,0.249909,0,0);-ms-transform:matrix(0.200222,0.005406,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.200222,0.005406,-0.006748,0.249909,0,0);}
.m62_c01284{transform:matrix(0.201811,0.005449,-0.006748,0.249909,0,0);-ms-transform:matrix(0.201811,0.005449,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.201811,0.005449,-0.006748,0.249909,0,0);}
.m5c_c01284{transform:matrix(0.202076,0.005456,-0.006748,0.249909,0,0);-ms-transform:matrix(0.202076,0.005456,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.202076,0.005456,-0.006748,0.249909,0,0);}
.ma8_c01284{transform:matrix(0.203216,0.005487,-0.006748,0.249909,0,0);-ms-transform:matrix(0.203216,0.005487,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.203216,0.005487,-0.006748,0.249909,0,0);}
.m7a_c01284{transform:matrix(0.203456,0.005493,-0.006748,0.249909,0,0);-ms-transform:matrix(0.203456,0.005493,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.203456,0.005493,-0.006748,0.249909,0,0);}
.mbd_c01284{transform:matrix(0.203731,0.005501,-0.006748,0.249909,0,0);-ms-transform:matrix(0.203731,0.005501,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.203731,0.005501,-0.006748,0.249909,0,0);}
.m12c_c01284{transform:matrix(0.205299,0.005954,-0.007247,0.249895,0,0);-ms-transform:matrix(0.205299,0.005954,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.205299,0.005954,-0.007247,0.249895,0,0);}
.mbe_c01284{transform:matrix(0.205695,0.005554,-0.006748,0.249909,0,0);-ms-transform:matrix(0.205695,0.005554,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.205695,0.005554,-0.006748,0.249909,0,0);}
.mb0_c01284{transform:matrix(0.206185,0.005567,-0.006748,0.249909,0,0);-ms-transform:matrix(0.206185,0.005567,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.206185,0.005567,-0.006748,0.249909,0,0);}
.m158_c01284{transform:matrix(0.206775,0.007865,-0.009503,0.249819,0,0);-ms-transform:matrix(0.206775,0.007865,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.206775,0.007865,-0.009503,0.249819,0,0);}
.mcf_c01284{transform:matrix(0.206850,0.005585,-0.006748,0.249909,0,0);-ms-transform:matrix(0.206850,0.005585,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.206850,0.005585,-0.006748,0.249909,0,0);}
.maa_c01284{transform:matrix(0.207065,0.005591,-0.006748,0.249909,0,0);-ms-transform:matrix(0.207065,0.005591,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.207065,0.005591,-0.006748,0.249909,0,0);}
.m11c_c01284{transform:matrix(0.207373,0.006014,-0.007247,0.249895,0,0);-ms-transform:matrix(0.207373,0.006014,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.207373,0.006014,-0.007247,0.249895,0,0);}
.mb5_c01284{transform:matrix(0.207559,0.005604,-0.006748,0.249909,0,0);-ms-transform:matrix(0.207559,0.005604,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.207559,0.005604,-0.006748,0.249909,0,0);}
.m4b_c01284{transform:matrix(0.207889,0.005613,-0.006748,0.249909,0,0);-ms-transform:matrix(0.207889,0.005613,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.207889,0.005613,-0.006748,0.249909,0,0);}
.mb2_c01284{transform:matrix(0.208274,0.005623,-0.006748,0.249909,0,0);-ms-transform:matrix(0.208274,0.005623,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.208274,0.005623,-0.006748,0.249909,0,0);}
.m11d_c01284{transform:matrix(0.208587,0.006049,-0.007247,0.249895,0,0);-ms-transform:matrix(0.208587,0.006049,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.208587,0.006049,-0.007247,0.249895,0,0);}
.ma7_c01284{transform:matrix(0.209474,0.005656,-0.006748,0.249909,0,0);-ms-transform:matrix(0.209474,0.005656,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.209474,0.005656,-0.006748,0.249909,0,0);}
.m156_c01284{transform:matrix(0.211527,0.008046,-0.009503,0.249819,0,0);-ms-transform:matrix(0.211527,0.008046,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.211527,0.008046,-0.009503,0.249819,0,0);}
.mba_c01284{transform:matrix(0.211893,0.005721,-0.006748,0.249909,0,0);-ms-transform:matrix(0.211893,0.005721,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.211893,0.005721,-0.006748,0.249909,0,0);}
.m60_c01284{transform:matrix(0.212253,0.005731,-0.006748,0.249909,0,0);-ms-transform:matrix(0.212253,0.005731,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.212253,0.005731,-0.006748,0.249909,0,0);}
.mae_c01284{transform:matrix(0.212283,0.005732,-0.006748,0.249909,0,0);-ms-transform:matrix(0.212283,0.005732,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.212283,0.005732,-0.006748,0.249909,0,0);}
.m11b_c01284{transform:matrix(0.213995,0.006206,-0.007247,0.249895,0,0);-ms-transform:matrix(0.213995,0.006206,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.213995,0.006206,-0.007247,0.249895,0,0);}
.m12b_c01284{transform:matrix(0.214485,0.006220,-0.007247,0.249895,0,0);-ms-transform:matrix(0.214485,0.006220,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.214485,0.006220,-0.007247,0.249895,0,0);}
.m131_c01284{transform:matrix(0.214840,0.006230,-0.007247,0.249895,0,0);-ms-transform:matrix(0.214840,0.006230,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.214840,0.006230,-0.007247,0.249895,0,0);}
.m66_c01284{transform:matrix(0.215007,0.005805,-0.006748,0.249909,0,0);-ms-transform:matrix(0.215007,0.005805,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.215007,0.005805,-0.006748,0.249909,0,0);}
.mcb_c01284{transform:matrix(0.216021,0.005833,-0.006748,0.249909,0,0);-ms-transform:matrix(0.216021,0.005833,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.216021,0.005833,-0.006748,0.249909,0,0);}
.m151_c01284{transform:matrix(0.216244,0.008225,-0.009503,0.249819,0,0);-ms-transform:matrix(0.216244,0.008225,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.216244,0.008225,-0.009503,0.249819,0,0);}
.m9c_c01284{transform:matrix(0.217521,0.005873,-0.006748,0.249909,0,0);-ms-transform:matrix(0.217521,0.005873,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.217521,0.005873,-0.006748,0.249909,0,0);}
.mb4_c01284{transform:matrix(0.218670,0.005904,-0.006748,0.249909,0,0);-ms-transform:matrix(0.218670,0.005904,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.218670,0.005904,-0.006748,0.249909,0,0);}
.m5e_c01284{transform:matrix(0.219100,0.005916,-0.006748,0.249909,0,0);-ms-transform:matrix(0.219100,0.005916,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.219100,0.005916,-0.006748,0.249909,0,0);}
.m11a_c01284{transform:matrix(0.220097,0.006383,-0.007247,0.249895,0,0);-ms-transform:matrix(0.220097,0.006383,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.220097,0.006383,-0.007247,0.249895,0,0);}
.m117_c01284{transform:matrix(0.220797,0.006403,-0.007247,0.249895,0,0);-ms-transform:matrix(0.220797,0.006403,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.220797,0.006403,-0.007247,0.249895,0,0);}
.mb6_c01284{transform:matrix(0.220800,0.005962,-0.006748,0.249909,0,0);-ms-transform:matrix(0.220800,0.005962,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.220800,0.005962,-0.006748,0.249909,0,0);}
.ma5_c01284{transform:matrix(0.220810,0.005962,-0.006748,0.249909,0,0);-ms-transform:matrix(0.220810,0.005962,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.220810,0.005962,-0.006748,0.249909,0,0);}
.m155_c01284{transform:matrix(0.222269,0.008455,-0.009503,0.249819,0,0);-ms-transform:matrix(0.222269,0.008455,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.222269,0.008455,-0.009503,0.249819,0,0);}
.mda_c01284{transform:matrix(0.222425,0.005783,-0.006498,0.249916,0,0);-ms-transform:matrix(0.222425,0.005783,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.222425,0.005783,-0.006498,0.249916,0,0);}
.mce_c01284{transform:matrix(0.223404,0.006032,-0.006748,0.249909,0,0);-ms-transform:matrix(0.223404,0.006032,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.223404,0.006032,-0.006748,0.249909,0,0);}
.m102_c01284{transform:matrix(0.223855,0.007171,-0.008004,0.249872,0,0);-ms-transform:matrix(0.223855,0.007171,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.223855,0.007171,-0.008004,0.249872,0,0);}
.ma4_c01284{transform:matrix(0.224258,0.006055,-0.006748,0.249909,0,0);-ms-transform:matrix(0.224258,0.006055,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.224258,0.006055,-0.006748,0.249909,0,0);}
.m129_c01284{transform:matrix(0.224716,0.006517,-0.007247,0.249895,0,0);-ms-transform:matrix(0.224716,0.006517,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.224716,0.006517,-0.007247,0.249895,0,0);}
.mbb_c01284{transform:matrix(0.224758,0.006068,-0.006748,0.249909,0,0);-ms-transform:matrix(0.224758,0.006068,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.224758,0.006068,-0.006748,0.249909,0,0);}
.maf_c01284{transform:matrix(0.225058,0.006077,-0.006748,0.249909,0,0);-ms-transform:matrix(0.225058,0.006077,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.225058,0.006077,-0.006748,0.249909,0,0);}
.m121_c01284{transform:matrix(0.225930,0.006552,-0.007247,0.249895,0,0);-ms-transform:matrix(0.225930,0.006552,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.225930,0.006552,-0.007247,0.249895,0,0);}
.m1a_c01284{transform:matrix(0.226324,0.005884,-0.006498,0.249916,0,0);-ms-transform:matrix(0.226324,0.005884,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.226324,0.005884,-0.006498,0.249916,0,0);}
.mad_c01284{transform:matrix(0.226572,0.006117,-0.006748,0.249909,0,0);-ms-transform:matrix(0.226572,0.006117,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.226572,0.006117,-0.006748,0.249909,0,0);}
.m9a_c01284{transform:matrix(0.226757,0.006122,-0.006748,0.249909,0,0);-ms-transform:matrix(0.226757,0.006122,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.226757,0.006122,-0.006748,0.249909,0,0);}
.m63_c01284{transform:matrix(0.227302,0.006137,-0.006748,0.249909,0,0);-ms-transform:matrix(0.227302,0.006137,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.227302,0.006137,-0.006748,0.249909,0,0);}
.m152_c01284{transform:matrix(0.227475,0.008653,-0.009503,0.249819,0,0);-ms-transform:matrix(0.227475,0.008653,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.227475,0.008653,-0.009503,0.249819,0,0);}
.ma0_c01284{transform:matrix(0.227667,0.006147,-0.006748,0.249909,0,0);-ms-transform:matrix(0.227667,0.006147,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.227667,0.006147,-0.006748,0.249909,0,0);}
.m10c_c01284{transform:matrix(0.228074,0.006614,-0.007247,0.249895,0,0);-ms-transform:matrix(0.228074,0.006614,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.228074,0.006614,-0.007247,0.249895,0,0);}
.md0_c01284{transform:matrix(0.228282,0.006164,-0.006748,0.249909,0,0);-ms-transform:matrix(0.228282,0.006164,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.228282,0.006164,-0.006748,0.249909,0,0);}
.m44_c01284{transform:matrix(0.228882,0.006180,-0.006748,0.249909,0,0);-ms-transform:matrix(0.228882,0.006180,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.228882,0.006180,-0.006748,0.249909,0,0);}
.m123_c01284{transform:matrix(0.229124,0.006645,-0.007247,0.249895,0,0);-ms-transform:matrix(0.229124,0.006645,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.229124,0.006645,-0.007247,0.249895,0,0);}
.m136_c01284{transform:matrix(0.229169,0.006646,-0.007247,0.249895,0,0);-ms-transform:matrix(0.229169,0.006646,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.229169,0.006646,-0.007247,0.249895,0,0);}
.m74_c01284{transform:matrix(0.229181,0.006188,-0.006748,0.249909,0,0);-ms-transform:matrix(0.229181,0.006188,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.229181,0.006188,-0.006748,0.249909,0,0);}
.mc2_c01284{transform:matrix(0.229441,0.006195,-0.006748,0.249909,0,0);-ms-transform:matrix(0.229441,0.006195,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.229441,0.006195,-0.006748,0.249909,0,0);}
.ma2_c01284{transform:matrix(0.229451,0.006195,-0.006748,0.249909,0,0);-ms-transform:matrix(0.229451,0.006195,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.229451,0.006195,-0.006748,0.249909,0,0);}
.m159_c01284{transform:matrix(0.230024,0.008750,-0.009503,0.249819,0,0);-ms-transform:matrix(0.230024,0.008750,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.230024,0.008750,-0.009503,0.249819,0,0);}
.m122_c01284{transform:matrix(0.230038,0.006671,-0.007247,0.249895,0,0);-ms-transform:matrix(0.230038,0.006671,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.230038,0.006671,-0.007247,0.249895,0,0);}
.m30_c01284{transform:matrix(0.230256,0.006217,-0.006748,0.249909,0,0);-ms-transform:matrix(0.230256,0.006217,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.230256,0.006217,-0.006748,0.249909,0,0);}
.mc0_c01284{transform:matrix(0.230431,0.006222,-0.006748,0.249909,0,0);-ms-transform:matrix(0.230431,0.006222,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.230431,0.006222,-0.006748,0.249909,0,0);}
.m12e_c01284{transform:matrix(0.230538,0.006686,-0.007247,0.249895,0,0);-ms-transform:matrix(0.230538,0.006686,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.230538,0.006686,-0.007247,0.249895,0,0);}
.me1_c01284{transform:matrix(0.230667,0.005997,-0.006498,0.249916,0,0);-ms-transform:matrix(0.230667,0.005997,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.230667,0.005997,-0.006498,0.249916,0,0);}
.m11f_c01284{transform:matrix(0.230818,0.006694,-0.007247,0.249895,0,0);-ms-transform:matrix(0.230818,0.006694,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.230818,0.006694,-0.007247,0.249895,0,0);}
.mc4_c01284{transform:matrix(0.231016,0.006237,-0.006748,0.249909,0,0);-ms-transform:matrix(0.231016,0.006237,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.231016,0.006237,-0.006748,0.249909,0,0);}
.m38_c01284{transform:matrix(0.231351,0.006246,-0.006748,0.249909,0,0);-ms-transform:matrix(0.231351,0.006246,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.231351,0.006246,-0.006748,0.249909,0,0);}
.m49_c01284{transform:matrix(0.231541,0.006252,-0.006748,0.249909,0,0);-ms-transform:matrix(0.231541,0.006252,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.231541,0.006252,-0.006748,0.249909,0,0);}
.m18_c01284{transform:matrix(0.231572,0.006021,-0.006498,0.249916,0,0);-ms-transform:matrix(0.231572,0.006021,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.231572,0.006021,-0.006498,0.249916,0,0);}
.m33_c01284{transform:matrix(0.232510,0.006278,-0.006748,0.249909,0,0);-ms-transform:matrix(0.232510,0.006278,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.232510,0.006278,-0.006748,0.249909,0,0);}
.m53_c01284{transform:matrix(0.232900,0.006288,-0.006748,0.249909,0,0);-ms-transform:matrix(0.232900,0.006288,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.232900,0.006288,-0.006748,0.249909,0,0);}
.m125_c01284{transform:matrix(0.232912,0.006754,-0.007247,0.249895,0,0);-ms-transform:matrix(0.232912,0.006754,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.232912,0.006754,-0.007247,0.249895,0,0);}
.m58_c01284{transform:matrix(0.232935,0.006289,-0.006748,0.249909,0,0);-ms-transform:matrix(0.232935,0.006289,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.232935,0.006289,-0.006748,0.249909,0,0);}
.m57_c01284{transform:matrix(0.233320,0.006300,-0.006748,0.249909,0,0);-ms-transform:matrix(0.233320,0.006300,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.233320,0.006300,-0.006748,0.249909,0,0);}
.m93_c01284{transform:matrix(0.233530,0.006305,-0.006748,0.249909,0,0);-ms-transform:matrix(0.233530,0.006305,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.233530,0.006305,-0.006748,0.249909,0,0);}
.m13c_c01284{transform:matrix(0.233637,0.006775,-0.007247,0.249895,0,0);-ms-transform:matrix(0.233637,0.006775,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.233637,0.006775,-0.007247,0.249895,0,0);}
.m35_c01284{transform:matrix(0.233650,0.006309,-0.006748,0.249909,0,0);-ms-transform:matrix(0.233650,0.006309,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.233650,0.006309,-0.006748,0.249909,0,0);}
.mf3_c01284{transform:matrix(0.234101,0.006087,-0.006498,0.249916,0,0);-ms-transform:matrix(0.234101,0.006087,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.234101,0.006087,-0.006498,0.249916,0,0);}
.m124_c01284{transform:matrix(0.234162,0.006791,-0.007247,0.249895,0,0);-ms-transform:matrix(0.234162,0.006791,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.234162,0.006791,-0.007247,0.249895,0,0);}
.mc7_c01284{transform:matrix(0.234699,0.006337,-0.006748,0.249909,0,0);-ms-transform:matrix(0.234699,0.006337,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.234699,0.006337,-0.006748,0.249909,0,0);}
.m162_c01284{transform:matrix(0.234892,0.009405,-0.010002,0.249800,0,0);-ms-transform:matrix(0.234892,0.009405,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.234892,0.009405,-0.010002,0.249800,0,0);}
.ma9_c01284{transform:matrix(0.234974,0.006344,-0.006748,0.249909,0,0);-ms-transform:matrix(0.234974,0.006344,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.234974,0.006344,-0.006748,0.249909,0,0);}
.m9d_c01284{transform:matrix(0.235549,0.006360,-0.006748,0.249909,0,0);-ms-transform:matrix(0.235549,0.006360,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.235549,0.006360,-0.006748,0.249909,0,0);}
.me6_c01284{transform:matrix(0.235770,0.006130,-0.006498,0.249916,0,0);-ms-transform:matrix(0.235770,0.006130,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.235770,0.006130,-0.006498,0.249916,0,0);}
.m32_c01284{transform:matrix(0.236024,0.006373,-0.006748,0.249909,0,0);-ms-transform:matrix(0.236024,0.006373,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.236024,0.006373,-0.006748,0.249909,0,0);}
.m153_c01284{transform:matrix(0.236104,0.008981,-0.009503,0.249819,0,0);-ms-transform:matrix(0.236104,0.008981,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.236104,0.008981,-0.009503,0.249819,0,0);}
.md3_c01284{transform:matrix(0.236219,0.006378,-0.006748,0.249909,0,0);-ms-transform:matrix(0.236219,0.006378,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.236219,0.006378,-0.006748,0.249909,0,0);}
.m3b_c01284{transform:matrix(0.236359,0.006382,-0.006748,0.249909,0,0);-ms-transform:matrix(0.236359,0.006382,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.236359,0.006382,-0.006748,0.249909,0,0);}
.mc_c01284{transform:matrix(0.236440,0.006147,-0.006498,0.249916,0,0);-ms-transform:matrix(0.236440,0.006147,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.236440,0.006147,-0.006498,0.249916,0,0);}
.m145_c01284{transform:matrix(0.236486,0.006858,-0.007247,0.249895,0,0);-ms-transform:matrix(0.236486,0.006858,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.236486,0.006858,-0.007247,0.249895,0,0);}
.m14e_c01284{transform:matrix(0.236700,0.008293,-0.008753,0.249847,0,0);-ms-transform:matrix(0.236700,0.008293,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.236700,0.008293,-0.008753,0.249847,0,0);}
.m97_c01284{transform:matrix(0.237099,0.006402,-0.006748,0.249909,0,0);-ms-transform:matrix(0.237099,0.006402,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.237099,0.006402,-0.006748,0.249909,0,0);}
.ma6_c01284{transform:matrix(0.237558,0.006414,-0.006748,0.249909,0,0);-ms-transform:matrix(0.237558,0.006414,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.237558,0.006414,-0.006748,0.249909,0,0);}
.mb7_c01284{transform:matrix(0.238648,0.006443,-0.006748,0.249909,0,0);-ms-transform:matrix(0.238648,0.006443,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.238648,0.006443,-0.006748,0.249909,0,0);}
.mab_c01284{transform:matrix(0.238708,0.006445,-0.006748,0.249909,0,0);-ms-transform:matrix(0.238708,0.006445,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.238708,0.006445,-0.006748,0.249909,0,0);}
.m10f_c01284{transform:matrix(0.238710,0.006923,-0.007247,0.249895,0,0);-ms-transform:matrix(0.238710,0.006923,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.238710,0.006923,-0.007247,0.249895,0,0);}
.m48_c01284{transform:matrix(0.239093,0.006456,-0.006748,0.249909,0,0);-ms-transform:matrix(0.239093,0.006456,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.239093,0.006456,-0.006748,0.249909,0,0);}
.m106_c01284{transform:matrix(0.239187,0.007662,-0.008004,0.249872,0,0);-ms-transform:matrix(0.239187,0.007662,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.239187,0.007662,-0.008004,0.249872,0,0);}
.m132_c01284{transform:matrix(0.239194,0.006937,-0.007247,0.249895,0,0);-ms-transform:matrix(0.239194,0.006937,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.239194,0.006937,-0.007247,0.249895,0,0);}
.m90_c01284{transform:matrix(0.239208,0.006459,-0.006748,0.249909,0,0);-ms-transform:matrix(0.239208,0.006459,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.239208,0.006459,-0.006748,0.249909,0,0);}
.mdc_c01284{transform:matrix(0.239214,0.006220,-0.006498,0.249916,0,0);-ms-transform:matrix(0.239214,0.006220,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.239214,0.006220,-0.006498,0.249916,0,0);}
.m8a_c01284{transform:matrix(0.239823,0.006475,-0.006748,0.249909,0,0);-ms-transform:matrix(0.239823,0.006475,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.239823,0.006475,-0.006748,0.249909,0,0);}
.m75_c01284{transform:matrix(0.240018,0.006480,-0.006748,0.249909,0,0);-ms-transform:matrix(0.240018,0.006480,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.240018,0.006480,-0.006748,0.249909,0,0);}
.m118_c01284{transform:matrix(0.240084,0.006962,-0.007247,0.249895,0,0);-ms-transform:matrix(0.240084,0.006962,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.240084,0.006962,-0.007247,0.249895,0,0);}
.m4a_c01284{transform:matrix(0.240207,0.006486,-0.006748,0.249909,0,0);-ms-transform:matrix(0.240207,0.006486,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.240207,0.006486,-0.006748,0.249909,0,0);}
.m9f_c01284{transform:matrix(0.240467,0.006493,-0.006748,0.249909,0,0);-ms-transform:matrix(0.240467,0.006493,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.240467,0.006493,-0.006748,0.249909,0,0);}
.mcc_c01284{transform:matrix(0.240602,0.006496,-0.006748,0.249909,0,0);-ms-transform:matrix(0.240602,0.006496,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.240602,0.006496,-0.006748,0.249909,0,0);}
.mbc_c01284{transform:matrix(0.240772,0.006501,-0.006748,0.249909,0,0);-ms-transform:matrix(0.240772,0.006501,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.240772,0.006501,-0.006748,0.249909,0,0);}
.mb9_c01284{transform:matrix(0.240812,0.006502,-0.006748,0.249909,0,0);-ms-transform:matrix(0.240812,0.006502,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.240812,0.006502,-0.006748,0.249909,0,0);}
.m4e_c01284{transform:matrix(0.240872,0.006504,-0.006748,0.249909,0,0);-ms-transform:matrix(0.240872,0.006504,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.240872,0.006504,-0.006748,0.249909,0,0);}
.m110_c01284{transform:matrix(0.241419,0.007001,-0.007247,0.249895,0,0);-ms-transform:matrix(0.241419,0.007001,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.241419,0.007001,-0.007247,0.249895,0,0);}
.m2a_c01284{transform:matrix(0.241468,0.006278,-0.006498,0.249916,0,0);-ms-transform:matrix(0.241468,0.006278,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.241468,0.006278,-0.006498,0.249916,0,0);}
.m150_c01284{transform:matrix(0.241570,0.009189,-0.009503,0.249819,0,0);-ms-transform:matrix(0.241570,0.009189,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.241570,0.009189,-0.009503,0.249819,0,0);}
.m79_c01284{transform:matrix(0.241577,0.006523,-0.006748,0.249909,0,0);-ms-transform:matrix(0.241577,0.006523,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.241577,0.006523,-0.006748,0.249909,0,0);}
.md1_c01284{transform:matrix(0.241737,0.006527,-0.006748,0.249909,0,0);-ms-transform:matrix(0.241737,0.006527,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.241737,0.006527,-0.006748,0.249909,0,0);}
.m46_c01284{transform:matrix(0.241927,0.006532,-0.006748,0.249909,0,0);-ms-transform:matrix(0.241927,0.006532,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.241927,0.006532,-0.006748,0.249909,0,0);}
.m13d_c01284{transform:matrix(0.242383,0.007029,-0.007247,0.249895,0,0);-ms-transform:matrix(0.242383,0.007029,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.242383,0.007029,-0.007247,0.249895,0,0);}
.md2_c01284{transform:matrix(0.242437,0.006546,-0.006748,0.249909,0,0);-ms-transform:matrix(0.242437,0.006546,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.242437,0.006546,-0.006748,0.249909,0,0);}
.m50_c01284{transform:matrix(0.242657,0.006552,-0.006748,0.249909,0,0);-ms-transform:matrix(0.242657,0.006552,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.242657,0.006552,-0.006748,0.249909,0,0);}
.m1_c01284{transform:matrix(0.242890,0.011670,-0.011998,0.249712,0,0);-ms-transform:matrix(0.242890,0.011670,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.242890,0.011670,-0.011998,0.249712,0,0);}
.m140_c01284{transform:matrix(0.243273,0.007055,-0.007247,0.249895,0,0);-ms-transform:matrix(0.243273,0.007055,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.243273,0.007055,-0.007247,0.249895,0,0);}
.m99_c01284{transform:matrix(0.243691,0.006580,-0.006748,0.249909,0,0);-ms-transform:matrix(0.243691,0.006580,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.243691,0.006580,-0.006748,0.249909,0,0);}
.m13a_c01284{transform:matrix(0.244077,0.007078,-0.007247,0.249895,0,0);-ms-transform:matrix(0.244077,0.007078,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.244077,0.007078,-0.007247,0.249895,0,0);}
.m5b_c01284{transform:matrix(0.244091,0.006590,-0.006748,0.249909,0,0);-ms-transform:matrix(0.244091,0.006590,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.244091,0.006590,-0.006748,0.249909,0,0);}
.mcd_c01284{transform:matrix(0.244251,0.006595,-0.006748,0.249909,0,0);-ms-transform:matrix(0.244251,0.006595,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.244251,0.006595,-0.006748,0.249909,0,0);}
.m15f_c01284{transform:matrix(0.244274,0.009781,-0.010002,0.249800,0,0);-ms-transform:matrix(0.244274,0.009781,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.244274,0.009781,-0.010002,0.249800,0,0);}
.m3f_c01284{transform:matrix(0.244296,0.006596,-0.006748,0.249909,0,0);-ms-transform:matrix(0.244296,0.006596,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.244296,0.006596,-0.006748,0.249909,0,0);}
.m147_c01284{transform:matrix(0.244345,0.008561,-0.008753,0.249847,0,0);-ms-transform:matrix(0.244345,0.008561,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.244345,0.008561,-0.008753,0.249847,0,0);}
.m13e_c01284{transform:matrix(0.244367,0.007087,-0.007247,0.249895,0,0);-ms-transform:matrix(0.244367,0.007087,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.244367,0.007087,-0.007247,0.249895,0,0);}
.me4_c01284{transform:matrix(0.244387,0.006354,-0.006498,0.249916,0,0);-ms-transform:matrix(0.244387,0.006354,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.244387,0.006354,-0.006498,0.249916,0,0);}
.m95_c01284{transform:matrix(0.244771,0.006609,-0.006748,0.249909,0,0);-ms-transform:matrix(0.244771,0.006609,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.244771,0.006609,-0.006748,0.249909,0,0);}
.m10b_c01284{transform:matrix(0.244862,0.007101,-0.007247,0.249895,0,0);-ms-transform:matrix(0.244862,0.007101,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.244862,0.007101,-0.007247,0.249895,0,0);}
.m6f_c01284{transform:matrix(0.245091,0.006617,-0.006748,0.249909,0,0);-ms-transform:matrix(0.245091,0.006617,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.245091,0.006617,-0.006748,0.249909,0,0);}
.m157_c01284{transform:matrix(0.245108,0.009323,-0.009503,0.249819,0,0);-ms-transform:matrix(0.245108,0.009323,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.245108,0.009323,-0.009503,0.249819,0,0);}
.m8e_c01284{transform:matrix(0.245940,0.006640,-0.006748,0.249909,0,0);-ms-transform:matrix(0.245940,0.006640,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.245940,0.006640,-0.006748,0.249909,0,0);}
.me2_c01284{transform:matrix(0.246122,0.006399,-0.006498,0.249916,0,0);-ms-transform:matrix(0.246122,0.006399,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.246122,0.006399,-0.006498,0.249916,0,0);}
.m4c_c01284{transform:matrix(0.246450,0.006654,-0.006748,0.249909,0,0);-ms-transform:matrix(0.246450,0.006654,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.246450,0.006654,-0.006748,0.249909,0,0);}
.m119_c01284{transform:matrix(0.246571,0.007151,-0.007247,0.249895,0,0);-ms-transform:matrix(0.246571,0.007151,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.246571,0.007151,-0.007247,0.249895,0,0);}
.m112_c01284{transform:matrix(0.246601,0.007151,-0.007247,0.249895,0,0);-ms-transform:matrix(0.246601,0.007151,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.246601,0.007151,-0.007247,0.249895,0,0);}
.m4_c01284{transform:matrix(0.246647,0.006413,-0.006498,0.249916,0,0);-ms-transform:matrix(0.246647,0.006413,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.246647,0.006413,-0.006498,0.249916,0,0);}
.m10e_c01284{transform:matrix(0.246856,0.007159,-0.007247,0.249895,0,0);-ms-transform:matrix(0.246856,0.007159,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.246856,0.007159,-0.007247,0.249895,0,0);}
.m87_c01284{transform:matrix(0.247210,0.006675,-0.006748,0.249909,0,0);-ms-transform:matrix(0.247210,0.006675,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.247210,0.006675,-0.006748,0.249909,0,0);}
.m68_c01284{transform:matrix(0.247370,0.006679,-0.006748,0.249909,0,0);-ms-transform:matrix(0.247370,0.006679,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.247370,0.006679,-0.006748,0.249909,0,0);}
.mf1_c01284{transform:matrix(0.247871,0.006445,-0.006498,0.249916,0,0);-ms-transform:matrix(0.247871,0.006445,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.247871,0.006445,-0.006498,0.249916,0,0);}
.m128_c01284{transform:matrix(0.248021,0.007193,-0.007247,0.249895,0,0);-ms-transform:matrix(0.248021,0.007193,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.248021,0.007193,-0.007247,0.249895,0,0);}
.m2f_c01284{transform:matrix(0.248315,0.006704,-0.006748,0.249909,0,0);-ms-transform:matrix(0.248315,0.006704,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.248315,0.006704,-0.006748,0.249909,0,0);}
.m114_c01284{transform:matrix(0.248341,0.007202,-0.007247,0.249895,0,0);-ms-transform:matrix(0.248341,0.007202,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.248341,0.007202,-0.007247,0.249895,0,0);}
.m52_c01284{transform:matrix(0.248574,0.006712,-0.006748,0.249909,0,0);-ms-transform:matrix(0.248574,0.006712,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.248574,0.006712,-0.006748,0.249909,0,0);}
.m9b_c01284{transform:matrix(0.248834,0.006719,-0.006748,0.249909,0,0);-ms-transform:matrix(0.248834,0.006719,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.248834,0.006719,-0.006748,0.249909,0,0);}
.m15a_c01284{transform:matrix(0.249060,0.009972,-0.010002,0.249800,0,0);-ms-transform:matrix(0.249060,0.009972,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.249060,0.009972,-0.010002,0.249800,0,0);}
.ma1_c01284{transform:matrix(0.249429,0.006735,-0.006748,0.249909,0,0);-ms-transform:matrix(0.249429,0.006735,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.249429,0.006735,-0.006748,0.249909,0,0);}
.m116_c01284{transform:matrix(0.249525,0.007236,-0.007247,0.249895,0,0);-ms-transform:matrix(0.249525,0.007236,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.249525,0.007236,-0.007247,0.249895,0,0);}
.m3a_c01284{transform:matrix(0.249889,0.006747,-0.006748,0.249909,0,0);-ms-transform:matrix(0.249889,0.006747,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.249889,0.006747,-0.006748,0.249909,0,0);}
.m55_c01284{transform:matrix(0.250064,0.006752,-0.006748,0.249909,0,0);-ms-transform:matrix(0.250064,0.006752,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.250064,0.006752,-0.006748,0.249909,0,0);}
.m126_c01284{transform:matrix(0.250140,0.007254,-0.007247,0.249895,0,0);-ms-transform:matrix(0.250140,0.007254,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.250140,0.007254,-0.007247,0.249895,0,0);}
.m59_c01284{transform:matrix(0.250299,0.006758,-0.006748,0.249909,0,0);-ms-transform:matrix(0.250299,0.006758,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.250299,0.006758,-0.006748,0.249909,0,0);}
.m12f_c01284{transform:matrix(0.250635,0.007268,-0.007247,0.249895,0,0);-ms-transform:matrix(0.250635,0.007268,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.250635,0.007268,-0.007247,0.249895,0,0);}
.m143_c01284{transform:matrix(0.250845,0.007274,-0.007247,0.249895,0,0);-ms-transform:matrix(0.250845,0.007274,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.250845,0.007274,-0.007247,0.249895,0,0);}
.m8c_c01284{transform:matrix(0.250969,0.006776,-0.006748,0.249909,0,0);-ms-transform:matrix(0.250969,0.006776,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.250969,0.006776,-0.006748,0.249909,0,0);}
.mf2_c01284{transform:matrix(0.251195,0.006531,-0.006498,0.249916,0,0);-ms-transform:matrix(0.251195,0.006531,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.251195,0.006531,-0.006498,0.249916,0,0);}
.m130_c01284{transform:matrix(0.251294,0.007288,-0.007247,0.249895,0,0);-ms-transform:matrix(0.251294,0.007288,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.251294,0.007288,-0.007247,0.249895,0,0);}
.m24_c01284{transform:matrix(0.251475,0.006538,-0.006498,0.249916,0,0);-ms-transform:matrix(0.251475,0.006538,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.251475,0.006538,-0.006498,0.249916,0,0);}
.m127_c01284{transform:matrix(0.251804,0.007302,-0.007247,0.249895,0,0);-ms-transform:matrix(0.251804,0.007302,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.251804,0.007302,-0.007247,0.249895,0,0);}
.m86_c01284{transform:matrix(0.252503,0.006818,-0.006748,0.249909,0,0);-ms-transform:matrix(0.252503,0.006818,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.252503,0.006818,-0.006748,0.249909,0,0);}
.mc5_c01284{transform:matrix(0.252733,0.006824,-0.006748,0.249909,0,0);-ms-transform:matrix(0.252733,0.006824,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.252733,0.006824,-0.006748,0.249909,0,0);}
.m91_c01284{transform:matrix(0.252753,0.006824,-0.006748,0.249909,0,0);-ms-transform:matrix(0.252753,0.006824,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.252753,0.006824,-0.006748,0.249909,0,0);}
.me0_c01284{transform:matrix(0.252760,0.006572,-0.006498,0.249916,0,0);-ms-transform:matrix(0.252760,0.006572,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.252760,0.006572,-0.006498,0.249916,0,0);}
.m8b_c01284{transform:matrix(0.252833,0.006826,-0.006748,0.249909,0,0);-ms-transform:matrix(0.252833,0.006826,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.252833,0.006826,-0.006748,0.249909,0,0);}
.mfe_c01284{transform:matrix(0.254839,0.006626,-0.006498,0.249916,0,0);-ms-transform:matrix(0.254839,0.006626,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.254839,0.006626,-0.006498,0.249916,0,0);}
.md7_c01284{transform:matrix(0.255024,0.006631,-0.006498,0.249916,0,0);-ms-transform:matrix(0.255024,0.006631,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.255024,0.006631,-0.006498,0.249916,0,0);}
.md4_c01284{transform:matrix(0.255124,0.006633,-0.006498,0.249916,0,0);-ms-transform:matrix(0.255124,0.006633,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.255124,0.006633,-0.006498,0.249916,0,0);}
.md9_c01284{transform:matrix(0.255149,0.006634,-0.006498,0.249916,0,0);-ms-transform:matrix(0.255149,0.006634,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.255149,0.006634,-0.006498,0.249916,0,0);}
.m138_c01284{transform:matrix(0.255163,0.007400,-0.007247,0.249895,0,0);-ms-transform:matrix(0.255163,0.007400,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.255163,0.007400,-0.007247,0.249895,0,0);}
.m77_c01284{transform:matrix(0.255487,0.006898,-0.006748,0.249909,0,0);-ms-transform:matrix(0.255487,0.006898,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.255487,0.006898,-0.006748,0.249909,0,0);}
.m9e_c01284{transform:matrix(0.256072,0.006914,-0.006748,0.249909,0,0);-ms-transform:matrix(0.256072,0.006914,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.256072,0.006914,-0.006748,0.249909,0,0);}
.m88_c01284{transform:matrix(0.256087,0.006914,-0.006748,0.249909,0,0);-ms-transform:matrix(0.256087,0.006914,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.256087,0.006914,-0.006748,0.249909,0,0);}
.mc3_c01284{transform:matrix(0.256097,0.006915,-0.006748,0.249909,0,0);-ms-transform:matrix(0.256097,0.006915,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.256097,0.006915,-0.006748,0.249909,0,0);}
.m6c_c01284{transform:matrix(0.256112,0.006915,-0.006748,0.249909,0,0);-ms-transform:matrix(0.256112,0.006915,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.256112,0.006915,-0.006748,0.249909,0,0);}
.m7f_c01284{transform:matrix(0.256691,0.006931,-0.006748,0.249909,0,0);-ms-transform:matrix(0.256691,0.006931,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.256691,0.006931,-0.006748,0.249909,0,0);}
.m19_c01284{transform:matrix(0.256943,0.006681,-0.006498,0.249916,0,0);-ms-transform:matrix(0.256943,0.006681,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.256943,0.006681,-0.006498,0.249916,0,0);}
.m11e_c01284{transform:matrix(0.256982,0.007452,-0.007247,0.249895,0,0);-ms-transform:matrix(0.256982,0.007452,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.256982,0.007452,-0.007247,0.249895,0,0);}
.m81_c01284{transform:matrix(0.257196,0.006944,-0.006748,0.249909,0,0);-ms-transform:matrix(0.257196,0.006944,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.257196,0.006944,-0.006748,0.249909,0,0);}
.m34_c01284{transform:matrix(0.257326,0.006948,-0.006748,0.249909,0,0);-ms-transform:matrix(0.257326,0.006948,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.257326,0.006948,-0.006748,0.249909,0,0);}
.me3_c01284{transform:matrix(0.257573,0.006697,-0.006498,0.249916,0,0);-ms-transform:matrix(0.257573,0.006697,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.257573,0.006697,-0.006498,0.249916,0,0);}
.m144_c01284{transform:matrix(0.257657,0.007472,-0.007247,0.249895,0,0);-ms-transform:matrix(0.257657,0.007472,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.257657,0.007472,-0.007247,0.249895,0,0);}
.m72_c01284{transform:matrix(0.257791,0.006960,-0.006748,0.249909,0,0);-ms-transform:matrix(0.257791,0.006960,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.257791,0.006960,-0.006748,0.249909,0,0);}
.m76_c01284{transform:matrix(0.257806,0.006961,-0.006748,0.249909,0,0);-ms-transform:matrix(0.257806,0.006961,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.257806,0.006961,-0.006748,0.249909,0,0);}
.m108_c01284{transform:matrix(0.257868,0.008260,-0.008004,0.249872,0,0);-ms-transform:matrix(0.257868,0.008260,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.257868,0.008260,-0.008004,0.249872,0,0);}
.m120_c01284{transform:matrix(0.257902,0.007479,-0.007247,0.249895,0,0);-ms-transform:matrix(0.257902,0.007479,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.257902,0.007479,-0.007247,0.249895,0,0);}
.m135_c01284{transform:matrix(0.258077,0.007484,-0.007247,0.249895,0,0);-ms-transform:matrix(0.258077,0.007484,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.258077,0.007484,-0.007247,0.249895,0,0);}
.ma3_c01284{transform:matrix(0.258401,0.006977,-0.006748,0.249909,0,0);-ms-transform:matrix(0.258401,0.006977,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.258401,0.006977,-0.006748,0.249909,0,0);}
.m14a_c01284{transform:matrix(0.258456,0.009055,-0.008753,0.249847,0,0);-ms-transform:matrix(0.258456,0.009055,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.258456,0.009055,-0.008753,0.249847,0,0);}
.m2d_c01284{transform:matrix(0.258478,0.006720,-0.006498,0.249916,0,0);-ms-transform:matrix(0.258478,0.006720,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.258478,0.006720,-0.006498,0.249916,0,0);}
.m146_c01284{transform:matrix(0.258571,0.007499,-0.007247,0.249895,0,0);-ms-transform:matrix(0.258571,0.007499,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.258571,0.007499,-0.007247,0.249895,0,0);}
.m73_c01284{transform:matrix(0.258811,0.006988,-0.006748,0.249909,0,0);-ms-transform:matrix(0.258811,0.006988,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.258811,0.006988,-0.006748,0.249909,0,0);}
.m109_c01284{transform:matrix(0.258867,0.008292,-0.008004,0.249872,0,0);-ms-transform:matrix(0.258867,0.008292,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.258867,0.008292,-0.008004,0.249872,0,0);}
.m7c_c01284{transform:matrix(0.259370,0.007003,-0.006748,0.249909,0,0);-ms-transform:matrix(0.259370,0.007003,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.259370,0.007003,-0.006748,0.249909,0,0);}
.m148_c01284{transform:matrix(0.259601,0.009095,-0.008753,0.249847,0,0);-ms-transform:matrix(0.259601,0.009095,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.259601,0.009095,-0.008753,0.249847,0,0);}
.m51_c01284{transform:matrix(0.259745,0.007013,-0.006748,0.249909,0,0);-ms-transform:matrix(0.259745,0.007013,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.259745,0.007013,-0.006748,0.249909,0,0);}
.mdb_c01284{transform:matrix(0.260072,0.006762,-0.006498,0.249916,0,0);-ms-transform:matrix(0.260072,0.006762,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.260072,0.006762,-0.006498,0.249916,0,0);}
.m3d_c01284{transform:matrix(0.260390,0.007031,-0.006748,0.249909,0,0);-ms-transform:matrix(0.260390,0.007031,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.260390,0.007031,-0.006748,0.249909,0,0);}
.mc1_c01284{transform:matrix(0.260635,0.007037,-0.006748,0.249909,0,0);-ms-transform:matrix(0.260635,0.007037,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.260635,0.007037,-0.006748,0.249909,0,0);}
.m13f_c01284{transform:matrix(0.260755,0.007562,-0.007247,0.249895,0,0);-ms-transform:matrix(0.260755,0.007562,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.260755,0.007562,-0.007247,0.249895,0,0);}
.m8f_c01284{transform:matrix(0.260825,0.007042,-0.006748,0.249909,0,0);-ms-transform:matrix(0.260825,0.007042,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.260825,0.007042,-0.006748,0.249909,0,0);}
.m89_c01284{transform:matrix(0.260950,0.007046,-0.006748,0.249909,0,0);-ms-transform:matrix(0.260950,0.007046,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.260950,0.007046,-0.006748,0.249909,0,0);}
.m12a_c01284{transform:matrix(0.261150,0.007573,-0.007247,0.249895,0,0);-ms-transform:matrix(0.261150,0.007573,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.261150,0.007573,-0.007247,0.249895,0,0);}
.m149_c01284{transform:matrix(0.261205,0.009151,-0.008753,0.249847,0,0);-ms-transform:matrix(0.261205,0.009151,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.261205,0.009151,-0.008753,0.249847,0,0);}
.m1e_c01284{transform:matrix(0.261582,0.006801,-0.006498,0.249916,0,0);-ms-transform:matrix(0.261582,0.006801,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.261582,0.006801,-0.006498,0.249916,0,0);}
.mf8_c01284{transform:matrix(0.262426,0.006823,-0.006498,0.249916,0,0);-ms-transform:matrix(0.262426,0.006823,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.262426,0.006823,-0.006498,0.249916,0,0);}
.m14f_c01284{transform:matrix(0.262624,0.009201,-0.008753,0.249847,0,0);-ms-transform:matrix(0.262624,0.009201,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.262624,0.009201,-0.008753,0.249847,0,0);}
.m39_c01284{transform:matrix(0.263134,0.007105,-0.006748,0.249909,0,0);-ms-transform:matrix(0.263134,0.007105,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.263134,0.007105,-0.006748,0.249909,0,0);}
.m36_c01284{transform:matrix(0.263774,0.007122,-0.006748,0.249909,0,0);-ms-transform:matrix(0.263774,0.007122,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.263774,0.007122,-0.006748,0.249909,0,0);}
.m111_c01284{transform:matrix(0.264434,0.007669,-0.007247,0.249895,0,0);-ms-transform:matrix(0.264434,0.007669,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.264434,0.007669,-0.007247,0.249895,0,0);}
.m163_c01284{transform:matrix(0.264748,0.010601,-0.010002,0.249800,0,0);-ms-transform:matrix(0.264748,0.010601,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.264748,0.010601,-0.010002,0.249800,0,0);}
.m139_c01284{transform:matrix(0.264869,0.007681,-0.007247,0.249895,0,0);-ms-transform:matrix(0.264869,0.007681,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.264869,0.007681,-0.007247,0.249895,0,0);}
.m10a_c01284{transform:matrix(0.264924,0.008486,-0.008004,0.249872,0,0);-ms-transform:matrix(0.264924,0.008486,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.264924,0.008486,-0.008004,0.249872,0,0);}
.m14c_c01284{transform:matrix(0.265512,0.009302,-0.008753,0.249847,0,0);-ms-transform:matrix(0.265512,0.009302,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.265512,0.009302,-0.008753,0.249847,0,0);}
.m42_c01284{transform:matrix(0.265533,0.007169,-0.006748,0.249909,0,0);-ms-transform:matrix(0.265533,0.007169,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.265533,0.007169,-0.006748,0.249909,0,0);}
.mc8_c01284{transform:matrix(0.266213,0.007188,-0.006748,0.249909,0,0);-ms-transform:matrix(0.266213,0.007188,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.266213,0.007188,-0.006748,0.249909,0,0);}
.m7e_c01284{transform:matrix(0.266598,0.007198,-0.006748,0.249909,0,0);-ms-transform:matrix(0.266598,0.007198,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.266598,0.007198,-0.006748,0.249909,0,0);}
.m1c_c01284{transform:matrix(0.266610,0.006932,-0.006498,0.249916,0,0);-ms-transform:matrix(0.266610,0.006932,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.266610,0.006932,-0.006498,0.249916,0,0);}
.md6_c01284{transform:matrix(0.267025,0.006943,-0.006498,0.249916,0,0);-ms-transform:matrix(0.267025,0.006943,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.267025,0.006943,-0.006498,0.249916,0,0);}
.md5_c01284{transform:matrix(0.267245,0.006948,-0.006498,0.249916,0,0);-ms-transform:matrix(0.267245,0.006948,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.267245,0.006948,-0.006498,0.249916,0,0);}
.m43_c01284{transform:matrix(0.267318,0.007218,-0.006748,0.249909,0,0);-ms-transform:matrix(0.267318,0.007218,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.267318,0.007218,-0.006748,0.249909,0,0);}
.m28_c01284{transform:matrix(0.267320,0.006950,-0.006498,0.249916,0,0);-ms-transform:matrix(0.267320,0.006950,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.267320,0.006950,-0.006498,0.249916,0,0);}
.m94_c01284{transform:matrix(0.267892,0.007233,-0.006748,0.249909,0,0);-ms-transform:matrix(0.267892,0.007233,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.267892,0.007233,-0.006748,0.249909,0,0);}
.m142_c01284{transform:matrix(0.268047,0.007773,-0.007247,0.249895,0,0);-ms-transform:matrix(0.268047,0.007773,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.268047,0.007773,-0.007247,0.249895,0,0);}
.mf4_c01284{transform:matrix(0.268074,0.006970,-0.006498,0.249916,0,0);-ms-transform:matrix(0.268074,0.006970,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.268074,0.006970,-0.006498,0.249916,0,0);}
.mdd_c01284{transform:matrix(0.268219,0.006974,-0.006498,0.249916,0,0);-ms-transform:matrix(0.268219,0.006974,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.268219,0.006974,-0.006498,0.249916,0,0);}
.m105_c01284{transform:matrix(0.268407,0.008598,-0.008004,0.249872,0,0);-ms-transform:matrix(0.268407,0.008598,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.268407,0.008598,-0.008004,0.249872,0,0);}
.m56_c01284{transform:matrix(0.268472,0.007249,-0.006748,0.249909,0,0);-ms-transform:matrix(0.268472,0.007249,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.268472,0.007249,-0.006748,0.249909,0,0);}
.m83_c01284{transform:matrix(0.268852,0.007259,-0.006748,0.249909,0,0);-ms-transform:matrix(0.268852,0.007259,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.268852,0.007259,-0.006748,0.249909,0,0);}
.m4f_c01284{transform:matrix(0.269172,0.007268,-0.006748,0.249909,0,0);-ms-transform:matrix(0.269172,0.007268,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.269172,0.007268,-0.006748,0.249909,0,0);}
.m47_c01284{transform:matrix(0.269732,0.007283,-0.006748,0.249909,0,0);-ms-transform:matrix(0.269732,0.007283,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.269732,0.007283,-0.006748,0.249909,0,0);}
.m70_c01284{transform:matrix(0.270371,0.007300,-0.006748,0.249909,0,0);-ms-transform:matrix(0.270371,0.007300,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.270371,0.007300,-0.006748,0.249909,0,0);}
.m3c_c01284{transform:matrix(0.270391,0.007301,-0.006748,0.249909,0,0);-ms-transform:matrix(0.270391,0.007301,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.270391,0.007301,-0.006748,0.249909,0,0);}
.m14d_c01284{transform:matrix(0.270849,0.009489,-0.008753,0.249847,0,0);-ms-transform:matrix(0.270849,0.009489,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.270849,0.009489,-0.008753,0.249847,0,0);}
.m161_c01284{transform:matrix(0.270908,0.010847,-0.010002,0.249800,0,0);-ms-transform:matrix(0.270908,0.010847,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.270908,0.010847,-0.010002,0.249800,0,0);}
.m96_c01284{transform:matrix(0.271021,0.007318,-0.006748,0.249909,0,0);-ms-transform:matrix(0.271021,0.007318,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.271021,0.007318,-0.006748,0.249909,0,0);}
.m92_c01284{transform:matrix(0.271481,0.007330,-0.006748,0.249909,0,0);-ms-transform:matrix(0.271481,0.007330,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.271481,0.007330,-0.006748,0.249909,0,0);}
.m23_c01284{transform:matrix(0.272008,0.007072,-0.006498,0.249916,0,0);-ms-transform:matrix(0.272008,0.007072,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.272008,0.007072,-0.006498,0.249916,0,0);}
.me8_c01284{transform:matrix(0.272428,0.007083,-0.006498,0.249916,0,0);-ms-transform:matrix(0.272428,0.007083,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.272428,0.007083,-0.006498,0.249916,0,0);}
.m13b_c01284{transform:matrix(0.272525,0.007903,-0.007247,0.249895,0,0);-ms-transform:matrix(0.272525,0.007903,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.272525,0.007903,-0.007247,0.249895,0,0);}
.mfa_c01284{transform:matrix(0.272628,0.007088,-0.006498,0.249916,0,0);-ms-transform:matrix(0.272628,0.007088,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.272628,0.007088,-0.006498,0.249916,0,0);}
.m10d_c01284{transform:matrix(0.273050,0.007918,-0.007247,0.249895,0,0);-ms-transform:matrix(0.273050,0.007918,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.273050,0.007918,-0.007247,0.249895,0,0);}
.mc6_c01284{transform:matrix(0.273265,0.007378,-0.006748,0.249909,0,0);-ms-transform:matrix(0.273265,0.007378,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.273265,0.007378,-0.006748,0.249909,0,0);}
.m160_c01284{transform:matrix(0.273346,0.010945,-0.010002,0.249800,0,0);-ms-transform:matrix(0.273346,0.010945,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.273346,0.010945,-0.010002,0.249800,0,0);}
.m5a_c01284{transform:matrix(0.273350,0.007380,-0.006748,0.249909,0,0);-ms-transform:matrix(0.273350,0.007380,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.273350,0.007380,-0.006748,0.249909,0,0);}
.me7_c01284{transform:matrix(0.273653,0.007115,-0.006498,0.249916,0,0);-ms-transform:matrix(0.273653,0.007115,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.273653,0.007115,-0.006498,0.249916,0,0);}
.m45_c01284{transform:matrix(0.273790,0.007392,-0.006748,0.249909,0,0);-ms-transform:matrix(0.273790,0.007392,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.273790,0.007392,-0.006748,0.249909,0,0);}
.m4d_c01284{transform:matrix(0.274035,0.007399,-0.006748,0.249909,0,0);-ms-transform:matrix(0.274035,0.007399,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.274035,0.007399,-0.006748,0.249909,0,0);}
.m7b_c01284{transform:matrix(0.274780,0.007419,-0.006748,0.249909,0,0);-ms-transform:matrix(0.274780,0.007419,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.274780,0.007419,-0.006748,0.249909,0,0);}
.m3e_c01284{transform:matrix(0.274815,0.007420,-0.006748,0.249909,0,0);-ms-transform:matrix(0.274815,0.007420,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.274815,0.007420,-0.006748,0.249909,0,0);}
.m85_c01284{transform:matrix(0.274935,0.007423,-0.006748,0.249909,0,0);-ms-transform:matrix(0.274935,0.007423,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.274935,0.007423,-0.006748,0.249909,0,0);}
.m6a_c01284{transform:matrix(0.275455,0.007437,-0.006748,0.249909,0,0);-ms-transform:matrix(0.275455,0.007437,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.275455,0.007437,-0.006748,0.249909,0,0);}
.me5_c01284{transform:matrix(0.275577,0.007165,-0.006498,0.249916,0,0);-ms-transform:matrix(0.275577,0.007165,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.275577,0.007165,-0.006498,0.249916,0,0);}
.m107_c01284{transform:matrix(0.275913,0.008838,-0.008004,0.249872,0,0);-ms-transform:matrix(0.275913,0.008838,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.275913,0.008838,-0.008004,0.249872,0,0);}
.mef_c01284{transform:matrix(0.276437,0.007187,-0.006498,0.249916,0,0);-ms-transform:matrix(0.276437,0.007187,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.276437,0.007187,-0.006498,0.249916,0,0);}
.m113_c01284{transform:matrix(0.276629,0.008022,-0.007247,0.249895,0,0);-ms-transform:matrix(0.276629,0.008022,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.276629,0.008022,-0.007247,0.249895,0,0);}
.m133_c01284{transform:matrix(0.276639,0.008023,-0.007247,0.249895,0,0);-ms-transform:matrix(0.276639,0.008023,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.276639,0.008023,-0.007247,0.249895,0,0);}
.mca_c01284{transform:matrix(0.276914,0.007477,-0.006748,0.249909,0,0);-ms-transform:matrix(0.276914,0.007477,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.276914,0.007477,-0.006748,0.249909,0,0);}
.m41_c01284{transform:matrix(0.277084,0.007481,-0.006748,0.249909,0,0);-ms-transform:matrix(0.277084,0.007481,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.277084,0.007481,-0.006748,0.249909,0,0);}
.md8_c01284{transform:matrix(0.277451,0.007214,-0.006498,0.249916,0,0);-ms-transform:matrix(0.277451,0.007214,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.277451,0.007214,-0.006498,0.249916,0,0);}
.m54_c01284{transform:matrix(0.277674,0.007497,-0.006748,0.249909,0,0);-ms-transform:matrix(0.277674,0.007497,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.277674,0.007497,-0.006748,0.249909,0,0);}
.m29_c01284{transform:matrix(0.277761,0.007222,-0.006498,0.249916,0,0);-ms-transform:matrix(0.277761,0.007222,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.277761,0.007222,-0.006498,0.249916,0,0);}
.m31_c01284{transform:matrix(0.277869,0.007502,-0.006748,0.249909,0,0);-ms-transform:matrix(0.277869,0.007502,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.277869,0.007502,-0.006748,0.249909,0,0);}
.med_c01284{transform:matrix(0.278191,0.007233,-0.006498,0.249916,0,0);-ms-transform:matrix(0.278191,0.007233,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.278191,0.007233,-0.006498,0.249916,0,0);}
.m15d_c01284{transform:matrix(0.278517,0.011152,-0.010002,0.249800,0,0);-ms-transform:matrix(0.278517,0.011152,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.278517,0.011152,-0.010002,0.249800,0,0);}
.m78_c01284{transform:matrix(0.279243,0.007540,-0.006748,0.249909,0,0);-ms-transform:matrix(0.279243,0.007540,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.279243,0.007540,-0.006748,0.249909,0,0);}
.m14b_c01284{transform:matrix(0.279294,0.009785,-0.008753,0.249847,0,0);-ms-transform:matrix(0.279294,0.009785,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.279294,0.009785,-0.008753,0.249847,0,0);}
.m2c_c01284{transform:matrix(0.279351,0.007263,-0.006498,0.249916,0,0);-ms-transform:matrix(0.279351,0.007263,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.279351,0.007263,-0.006498,0.249916,0,0);}
.m8d_c01284{transform:matrix(0.279423,0.007544,-0.006748,0.249909,0,0);-ms-transform:matrix(0.279423,0.007544,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.279423,0.007544,-0.006748,0.249909,0,0);}
.mde_c01284{transform:matrix(0.279516,0.007267,-0.006498,0.249916,0,0);-ms-transform:matrix(0.279516,0.007267,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.279516,0.007267,-0.006498,0.249916,0,0);}
.m6d_c01284{transform:matrix(0.279983,0.007560,-0.006748,0.249909,0,0);-ms-transform:matrix(0.279983,0.007560,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.279983,0.007560,-0.006748,0.249909,0,0);}
.m40_c01284{transform:matrix(0.280023,0.007561,-0.006748,0.249909,0,0);-ms-transform:matrix(0.280023,0.007561,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.280023,0.007561,-0.006748,0.249909,0,0);}
.m12_c01284{transform:matrix(0.280130,0.007283,-0.006498,0.249916,0,0);-ms-transform:matrix(0.280130,0.007283,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.280130,0.007283,-0.006498,0.249916,0,0);}
.mc9_c01284{transform:matrix(0.280598,0.007576,-0.006748,0.249909,0,0);-ms-transform:matrix(0.280598,0.007576,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.280598,0.007576,-0.006748,0.249909,0,0);}
.mf0_c01284{transform:matrix(0.281345,0.007315,-0.006498,0.249916,0,0);-ms-transform:matrix(0.281345,0.007315,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.281345,0.007315,-0.006498,0.249916,0,0);}
.m98_c01284{transform:matrix(0.281582,0.007603,-0.006748,0.249909,0,0);-ms-transform:matrix(0.281582,0.007603,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.281582,0.007603,-0.006748,0.249909,0,0);}
.m37_c01284{transform:matrix(0.281977,0.007613,-0.006748,0.249909,0,0);-ms-transform:matrix(0.281977,0.007613,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.281977,0.007613,-0.006748,0.249909,0,0);}
.m103_c01284{transform:matrix(0.281990,0.009033,-0.008004,0.249872,0,0);-ms-transform:matrix(0.281990,0.009033,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.281990,0.009033,-0.008004,0.249872,0,0);}
.m104_c01284{transform:matrix(0.282280,0.009042,-0.008004,0.249872,0,0);-ms-transform:matrix(0.282280,0.009042,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.282280,0.009042,-0.008004,0.249872,0,0);}
.m115_c01284{transform:matrix(0.282631,0.008196,-0.007247,0.249895,0,0);-ms-transform:matrix(0.282631,0.008196,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.282631,0.008196,-0.007247,0.249895,0,0);}
.mfb_c01284{transform:matrix(0.283364,0.007367,-0.006498,0.249916,0,0);-ms-transform:matrix(0.283364,0.007367,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.283364,0.007367,-0.006498,0.249916,0,0);}
.m134_c01284{transform:matrix(0.283591,0.008224,-0.007247,0.249895,0,0);-ms-transform:matrix(0.283591,0.008224,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.283591,0.008224,-0.007247,0.249895,0,0);}
.mfc_c01284{transform:matrix(0.284399,0.007394,-0.006498,0.249916,0,0);-ms-transform:matrix(0.284399,0.007394,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.284399,0.007394,-0.006498,0.249916,0,0);}
.mf9_c01284{transform:matrix(0.284434,0.007395,-0.006498,0.249916,0,0);-ms-transform:matrix(0.284434,0.007395,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.284434,0.007395,-0.006498,0.249916,0,0);}
.mff_c01284{transform:matrix(0.284509,0.007397,-0.006498,0.249916,0,0);-ms-transform:matrix(0.284509,0.007397,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.284509,0.007397,-0.006498,0.249916,0,0);}
.me9_c01284{transform:matrix(0.285249,0.007416,-0.006498,0.249916,0,0);-ms-transform:matrix(0.285249,0.007416,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.285249,0.007416,-0.006498,0.249916,0,0);}
.mf5_c01284{transform:matrix(0.287908,0.007486,-0.006498,0.249916,0,0);-ms-transform:matrix(0.287908,0.007486,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.287908,0.007486,-0.006498,0.249916,0,0);}
.m137_c01284{transform:matrix(0.288144,0.008356,-0.007247,0.249895,0,0);-ms-transform:matrix(0.288144,0.008356,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.288144,0.008356,-0.007247,0.249895,0,0);}
.mb3_c01284{transform:matrix(0.289200,0.007808,-0.006748,0.249909,0,0);-ms-transform:matrix(0.289200,0.007808,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.289200,0.007808,-0.006748,0.249909,0,0);}
.m2b_c01284{transform:matrix(0.291147,0.007570,-0.006498,0.249916,0,0);-ms-transform:matrix(0.291147,0.007570,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.291147,0.007570,-0.006498,0.249916,0,0);}
.mfd_c01284{transform:matrix(0.291591,0.007581,-0.006498,0.249916,0,0);-ms-transform:matrix(0.291591,0.007581,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.291591,0.007581,-0.006498,0.249916,0,0);}
.m80_c01284{transform:matrix(0.292199,0.007889,-0.006748,0.249909,0,0);-ms-transform:matrix(0.292199,0.007889,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.292199,0.007889,-0.006748,0.249909,0,0);}
.m21_c01284{transform:matrix(0.292401,0.007602,-0.006498,0.249916,0,0);-ms-transform:matrix(0.292401,0.007602,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.292401,0.007602,-0.006498,0.249916,0,0);}
.mee_c01284{transform:matrix(0.293256,0.007625,-0.006498,0.249916,0,0);-ms-transform:matrix(0.293256,0.007625,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.293256,0.007625,-0.006498,0.249916,0,0);}
.m84_c01284{transform:matrix(0.293873,0.007935,-0.006748,0.249909,0,0);-ms-transform:matrix(0.293873,0.007935,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.293873,0.007935,-0.006748,0.249909,0,0);}
.m6e_c01284{transform:matrix(0.294548,0.007953,-0.006748,0.249909,0,0);-ms-transform:matrix(0.294548,0.007953,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.294548,0.007953,-0.006748,0.249909,0,0);}
.m12d_c01284{transform:matrix(0.295066,0.008557,-0.007247,0.249895,0,0);-ms-transform:matrix(0.295066,0.008557,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.295066,0.008557,-0.007247,0.249895,0,0);}
.m69_c01284{transform:matrix(0.297901,0.008043,-0.006748,0.249909,0,0);-ms-transform:matrix(0.297901,0.008043,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.297901,0.008043,-0.006748,0.249909,0,0);}
.m6b_c01284{transform:matrix(0.298146,0.008050,-0.006748,0.249909,0,0);-ms-transform:matrix(0.298146,0.008050,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.298146,0.008050,-0.006748,0.249909,0,0);}
.mec_c01284{transform:matrix(0.299579,0.007789,-0.006498,0.249916,0,0);-ms-transform:matrix(0.299579,0.007789,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.299579,0.007789,-0.006498,0.249916,0,0);}
.m101_c01284{transform:matrix(0.299634,0.007790,-0.006498,0.249916,0,0);-ms-transform:matrix(0.299634,0.007790,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.299634,0.007790,-0.006498,0.249916,0,0);}
.mf7_c01284{transform:matrix(0.302093,0.007854,-0.006498,0.249916,0,0);-ms-transform:matrix(0.302093,0.007854,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.302093,0.007854,-0.006498,0.249916,0,0);}
.meb_c01284{transform:matrix(0.303068,0.007880,-0.006498,0.249916,0,0);-ms-transform:matrix(0.303068,0.007880,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.303068,0.007880,-0.006498,0.249916,0,0);}
.m82_c01284{transform:matrix(0.304039,0.008209,-0.006748,0.249909,0,0);-ms-transform:matrix(0.304039,0.008209,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.304039,0.008209,-0.006748,0.249909,0,0);}
.m71_c01284{transform:matrix(0.305154,0.008239,-0.006748,0.249909,0,0);-ms-transform:matrix(0.305154,0.008239,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.305154,0.008239,-0.006748,0.249909,0,0);}
.m7d_c01284{transform:matrix(0.305609,0.008251,-0.006748,0.249909,0,0);-ms-transform:matrix(0.305609,0.008251,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.305609,0.008251,-0.006748,0.249909,0,0);}
.md_c01284{transform:matrix(0.322741,0.008391,-0.006498,0.249916,0,0);-ms-transform:matrix(0.322741,0.008391,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.322741,0.008391,-0.006498,0.249916,0,0);}
.m10_c01284{transform:matrix(0.338301,0.008796,-0.006498,0.249916,0,0);-ms-transform:matrix(0.338301,0.008796,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.338301,0.008796,-0.006498,0.249916,0,0);}
.m1d_c01284{transform:matrix(0.340040,0.008841,-0.006498,0.249916,0,0);-ms-transform:matrix(0.340040,0.008841,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.340040,0.008841,-0.006498,0.249916,0,0);}
.m1f_c01284{transform:matrix(0.349737,0.009093,-0.006498,0.249916,0,0);-ms-transform:matrix(0.349737,0.009093,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.349737,0.009093,-0.006498,0.249916,0,0);}
.mf6_c01284{transform:matrix(0.373849,0.009720,-0.006498,0.249916,0,0);-ms-transform:matrix(0.373849,0.009720,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.373849,0.009720,-0.006498,0.249916,0,0);}
.m22_c01284{transform:matrix(0.379417,0.009865,-0.006498,0.249916,0,0);-ms-transform:matrix(0.379417,0.009865,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.379417,0.009865,-0.006498,0.249916,0,0);}
.m165_c01284{transform:matrix(0.388074,0.015539,-0.010002,0.249800,0,0);-ms-transform:matrix(0.388074,0.015539,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.388074,0.015539,-0.010002,0.249800,0,0);}
.m20_c01284{transform:matrix(0.398565,0.010363,-0.006498,0.249916,0,0);-ms-transform:matrix(0.398565,0.010363,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.398565,0.010363,-0.006498,0.249916,0,0);}
.mea_c01284{transform:matrix(0.409232,0.010640,-0.006498,0.249916,0,0);-ms-transform:matrix(0.409232,0.010640,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.409232,0.010640,-0.006498,0.249916,0,0);}
.m11_c01284{transform:matrix(0.410831,0.010682,-0.006498,0.249916,0,0);-ms-transform:matrix(0.410831,0.010682,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.410831,0.010682,-0.006498,0.249916,0,0);}
.m164_c01284{transform:matrix(0.417630,0.016722,-0.010002,0.249800,0,0);-ms-transform:matrix(0.417630,0.016722,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.417630,0.016722,-0.010002,0.249800,0,0);}
.m26_c01284{transform:matrix(0.442620,0.011508,-0.006498,0.249916,0,0);-ms-transform:matrix(0.442620,0.011508,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.442620,0.011508,-0.006498,0.249916,0,0);}
.m17_c01284{transform:matrix(0.447874,0.011645,-0.006498,0.249916,0,0);-ms-transform:matrix(0.447874,0.011645,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.447874,0.011645,-0.006498,0.249916,0,0);}
.m141_c01284{transform:matrix(0.451090,0.013082,-0.007247,0.249895,0,0);-ms-transform:matrix(0.451090,0.013082,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.451090,0.013082,-0.007247,0.249895,0,0);}
.m15c_c01284{transform:matrix(0.452407,0.018114,-0.010002,0.249800,0,0);-ms-transform:matrix(0.452407,0.018114,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.452407,0.018114,-0.010002,0.249800,0,0);}
.m15_c01284{transform:matrix(0.459030,0.011935,-0.006498,0.249916,0,0);-ms-transform:matrix(0.459030,0.011935,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.459030,0.011935,-0.006498,0.249916,0,0);}
.m16_c01284{transform:matrix(0.464918,0.012088,-0.006498,0.249916,0,0);-ms-transform:matrix(0.464918,0.012088,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.464918,0.012088,-0.006498,0.249916,0,0);}
.mf_c01284{transform:matrix(0.478253,0.012435,-0.006498,0.249916,0,0);-ms-transform:matrix(0.478253,0.012435,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.478253,0.012435,-0.006498,0.249916,0,0);}
.m15e_c01284{transform:matrix(0.503666,0.020167,-0.010002,0.249800,0,0);-ms-transform:matrix(0.503666,0.020167,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.503666,0.020167,-0.010002,0.249800,0,0);}
.m1b_c01284{transform:matrix(0.522084,0.013574,-0.006498,0.249916,0,0);-ms-transform:matrix(0.522084,0.013574,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.522084,0.013574,-0.006498,0.249916,0,0);}
.me_c01284{transform:matrix(0.526427,0.013687,-0.006498,0.249916,0,0);-ms-transform:matrix(0.526427,0.013687,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.526427,0.013687,-0.006498,0.249916,0,0);}
.ma_c01284{transform:matrix(0.595519,0.015483,-0.006498,0.249916,0,0);-ms-transform:matrix(0.595519,0.015483,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.595519,0.015483,-0.006498,0.249916,0,0);}
.m2e_c01284{transform:matrix(0.598013,0.015548,-0.006498,0.249916,0,0);-ms-transform:matrix(0.598013,0.015548,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.598013,0.015548,-0.006498,0.249916,0,0);}
.m15b_c01284{transform:matrix(0.603212,0.024153,-0.010002,0.249800,0,0);-ms-transform:matrix(0.603212,0.024153,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.603212,0.024153,-0.010002,0.249800,0,0);}
.m7_c01284{transform:matrix(0.644082,0.016746,-0.006498,0.249916,0,0);-ms-transform:matrix(0.644082,0.016746,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.644082,0.016746,-0.006498,0.249916,0,0);}
.m9_c01284{transform:matrix(0.761843,0.019808,-0.006498,0.249916,0,0);-ms-transform:matrix(0.761843,0.019808,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.761843,0.019808,-0.006498,0.249916,0,0);}
.m13_c01284{transform:matrix(0.920754,0.023940,-0.006498,0.249916,0,0);-ms-transform:matrix(0.920754,0.023940,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.920754,0.023940,-0.006498,0.249916,0,0);}
.m27_c01284{transform:matrix(1.191302,0.030974,-0.006498,0.249916,0,0);-ms-transform:matrix(1.191302,0.030974,-0.006498,0.249916,0,0);-webkit-transform:matrix(1.191302,0.030974,-0.006498,0.249916,0,0);}
.m8_c01284{transform:matrix(1.198120,0.031151,-0.006498,0.249916,0,0);-ms-transform:matrix(1.198120,0.031151,-0.006498,0.249916,0,0);-webkit-transform:matrix(1.198120,0.031151,-0.006498,0.249916,0,0);}
.m5_c01284{transform:matrix(1.242185,0.032297,-0.006498,0.249916,0,0);-ms-transform:matrix(1.242185,0.032297,-0.006498,0.249916,0,0);-webkit-transform:matrix(1.242185,0.032297,-0.006498,0.249916,0,0);}
.m3_c01284{transform:matrix(1.338863,0.034810,-0.006498,0.249916,0,0);-ms-transform:matrix(1.338863,0.034810,-0.006498,0.249916,0,0);-webkit-transform:matrix(1.338863,0.034810,-0.006498,0.249916,0,0);}
.m25_c01284{transform:matrix(1.794114,0.046647,-0.006498,0.249916,0,0);-ms-transform:matrix(1.794114,0.046647,-0.006498,0.249916,0,0);-webkit-transform:matrix(1.794114,0.046647,-0.006498,0.249916,0,0);}
.m6_c01284{transform:matrix(2.082736,0.054151,-0.006498,0.249916,0,0);-ms-transform:matrix(2.082736,0.054151,-0.006498,0.249916,0,0);-webkit-transform:matrix(2.082736,0.054151,-0.006498,0.249916,0,0);}
.m14_c01284{transform:matrix(2.131420,0.055417,-0.006498,0.249916,0,0);-ms-transform:matrix(2.131420,0.055417,-0.006498,0.249916,0,0);-webkit-transform:matrix(2.131420,0.055417,-0.006498,0.249916,0,0);}
.v0_c01284{vertical-align:0.000000px;}
.ls0_c01284{letter-spacing:0.000000px;}
.sc__c01284{text-shadow:none;}
.sc0_c01284{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__c01284{-webkit-text-stroke:0px transparent;}
.sc0_c01284{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01284{word-spacing:0.000000px;}
._0_c01284{width:13.122873px;}
.fc0_c01284{color:transparent;}
.fs1_c01284{font-size:24.008111px;}
.fsf_c01284{font-size:41.991620px;}
.fs8_c01284{font-size:66.022304px;}
.fs4_c01284{font-size:66.024053px;}
.fs9_c01284{font-size:71.964891px;}
.fsc_c01284{font-size:71.972131px;}
.fse_c01284{font-size:71.985635px;}
.fs0_c01284{font-size:72.010979px;}
.fs7_c01284{font-size:72.024332px;}
.fs2_c01284{font-size:72.026239px;}
.fsa_c01284{font-size:72.030270px;}
.fs5_c01284{font-size:78.028426px;}
.fsb_c01284{font-size:78.032792px;}
.fsd_c01284{font-size:83.976687px;}
.fs6_c01284{font-size:84.030612px;}
.fs3_c01284{font-size:90.032799px;}
.y0_c01284{bottom:0.000000px;}
.y174_c01284{bottom:67.016460px;}
.y173_c01284{bottom:68.344680px;}
.y176_c01284{bottom:68.465744px;}
.y175_c01284{bottom:68.469168px;}
.y172_c01284{bottom:71.080080px;}
.y171_c01284{bottom:74.616180px;}
.y170_c01284{bottom:75.475200px;}
.y16f_c01284{bottom:80.819520px;}
.y16e_c01284{bottom:85.259520px;}
.y16d_c01284{bottom:87.075060px;}
.y16c_c01284{bottom:90.549420px;}
.y16b_c01284{bottom:91.812000px;}
.y16a_c01284{bottom:95.302959px;}
.y169_c01284{bottom:96.565566px;}
.y168_c01284{bottom:102.088068px;}
.y167_c01284{bottom:102.928020px;}
.y166_c01284{bottom:105.026931px;}
.y165_c01284{bottom:106.295922px;}
.y164_c01284{bottom:110.469405px;}
.y163_c01284{bottom:113.045121px;}
.y162_c01284{bottom:115.072383px;}
.y161_c01284{bottom:119.352000px;}
.y160_c01284{bottom:131.767425px;}
.y15f_c01284{bottom:133.286933px;}
.y15e_c01284{bottom:136.392255px;}
.y15d_c01284{bottom:138.399068px;}
.y15c_c01284{bottom:141.869737px;}
.y15b_c01284{bottom:143.825363px;}
.y15a_c01284{bottom:145.756260px;}
.y159_c01284{bottom:147.331155px;}
.y158_c01284{bottom:150.406500px;}
.y157_c01284{bottom:179.215291px;}
.y156_c01284{bottom:183.124336px;}
.y155_c01284{bottom:184.489953px;}
.y154_c01284{bottom:185.483091px;}
.y153_c01284{bottom:189.209137px;}
.y152_c01284{bottom:202.699903px;}
.y151_c01284{bottom:204.854364px;}
.y150_c01284{bottom:205.758697px;}
.y14f_c01284{bottom:206.648653px;}
.y14e_c01284{bottom:208.425607px;}
.y14d_c01284{bottom:209.030889px;}
.y14c_c01284{bottom:211.143283px;}
.y14b_c01284{bottom:212.045920px;}
.y14a_c01284{bottom:214.146439px;}
.y149_c01284{bottom:214.756810px;}
.y148_c01284{bottom:216.814219px;}
.y147_c01284{bottom:217.703349px;}
.y146_c01284{bottom:219.457704px;}
.y145_c01284{bottom:240.607188px;}
.y144_c01284{bottom:241.658707px;}
.y143_c01284{bottom:243.465330px;}
.y142_c01284{bottom:247.402896px;}
.y141_c01284{bottom:248.457678px;}
.y140_c01284{bottom:251.603103px;}
.y13f_c01284{bottom:252.693162px;}
.y13e_c01284{bottom:253.390564px;}
.y13d_c01284{bottom:255.165390px;}
.y13c_c01284{bottom:257.229303px;}
.y13b_c01284{bottom:258.626349px;}
.y13a_c01284{bottom:276.217918px;}
.y139_c01284{bottom:277.333278px;}
.y138_c01284{bottom:278.785633px;}
.y137_c01284{bottom:282.862185px;}
.y136_c01284{bottom:283.967866px;}
.y135_c01284{bottom:286.480513px;}
.y134_c01284{bottom:289.778353px;}
.y133_c01284{bottom:292.721950px;}
.y132_c01284{bottom:294.191182px;}
.y131_c01284{bottom:295.981903px;}
.y130_c01284{bottom:296.707461px;}
.y12f_c01284{bottom:311.779852px;}
.y12e_c01284{bottom:312.949366px;}
.y12d_c01284{bottom:316.229568px;}
.y12c_c01284{bottom:317.665068px;}
.y12b_c01284{bottom:320.257141px;}
.y12a_c01284{bottom:321.355515px;}
.y129_c01284{bottom:322.484076px;}
.y128_c01284{bottom:323.892825px;}
.y127_c01284{bottom:325.019733px;}
.y126_c01284{bottom:327.897737px;}
.y125_c01284{bottom:330.435307px;}
.y124_c01284{bottom:331.554800px;}
.y123_c01284{bottom:344.698457px;}
.y122_c01284{bottom:347.638708px;}
.y121_c01284{bottom:348.923872px;}
.y120_c01284{bottom:351.788217px;}
.y11f_c01284{bottom:353.411767px;}
.y11e_c01284{bottom:355.677074px;}
.y11d_c01284{bottom:356.685142px;}
.y11c_c01284{bottom:357.617217px;}
.y11b_c01284{bottom:358.275329px;}
.y11a_c01284{bottom:361.747107px;}
.y119_c01284{bottom:362.732817px;}
.y118_c01284{bottom:363.969000px;}
.y117_c01284{bottom:381.279864px;}
.y116_c01284{bottom:382.658712px;}
.y115_c01284{bottom:384.812376px;}
.y114_c01284{bottom:388.000584px;}
.y113_c01284{bottom:389.426856px;}
.y112_c01284{bottom:392.618616px;}
.y111_c01284{bottom:396.560328px;}
.y110_c01284{bottom:400.751640px;}
.y10f_c01284{bottom:401.769000px;}
.y10e_c01284{bottom:417.335691px;}
.y10d_c01284{bottom:418.320417px;}
.y10c_c01284{bottom:419.951229px;}
.y10b_c01284{bottom:420.912090px;}
.y10a_c01284{bottom:423.780789px;}
.y109_c01284{bottom:425.160330px;}
.y108_c01284{bottom:427.040637px;}
.y107_c01284{bottom:428.331540px;}
.y106_c01284{bottom:430.252794px;}
.y105_c01284{bottom:431.208468px;}
.y104_c01284{bottom:434.673279px;}
.y103_c01284{bottom:452.272989px;}
.y102_c01284{bottom:453.425712px;}
.y101_c01284{bottom:454.845897px;}
.y100_c01284{bottom:456.032784px;}
.yff_c01284{bottom:456.889497px;}
.yfe_c01284{bottom:457.788486px;}
.yfd_c01284{bottom:458.596059px;}
.yfc_c01284{bottom:459.194553px;}
.yfb_c01284{bottom:460.359132px;}
.yfa_c01284{bottom:462.096309px;}
.yf9_c01284{bottom:463.534551px;}
.yf8_c01284{bottom:465.839256px;}
.yf7_c01284{bottom:468.977040px;}
.yf6_c01284{bottom:488.549796px;}
.yf5_c01284{bottom:492.527130px;}
.yf4_c01284{bottom:495.158148px;}
.yf3_c01284{bottom:498.167358px;}
.yf2_c01284{bottom:499.195398px;}
.yf1_c01284{bottom:501.861960px;}
.yf0_c01284{bottom:502.507110px;}
.yef_c01284{bottom:504.210696px;}
.yee_c01284{bottom:505.506708px;}
.yed_c01284{bottom:506.775306px;}
.yec_c01284{bottom:508.137531px;}
.yeb_c01284{bottom:522.008316px;}
.yea_c01284{bottom:524.173284px;}
.ye9_c01284{bottom:525.900711px;}
.ye8_c01284{bottom:526.800246px;}
.ye7_c01284{bottom:528.464532px;}
.ye6_c01284{bottom:529.389417px;}
.ye5_c01284{bottom:530.534574px;}
.ye4_c01284{bottom:533.402517px;}
.ye3_c01284{bottom:534.569085px;}
.ye2_c01284{bottom:536.301153px;}
.ye1_c01284{bottom:538.556913px;}
.ye0_c01284{bottom:540.009000px;}
.ydf_c01284{bottom:560.520649px;}
.yde_c01284{bottom:561.139815px;}
.ydd_c01284{bottom:564.680529px;}
.ydc_c01284{bottom:566.571807px;}
.ydb_c01284{bottom:567.610866px;}
.yda_c01284{bottom:569.498377px;}
.yd9_c01284{bottom:573.362911px;}
.yd8_c01284{bottom:576.869805px;}
.yd7_c01284{bottom:578.168811px;}
.yd6_c01284{bottom:597.291334px;}
.yd5_c01284{bottom:600.249288px;}
.yd4_c01284{bottom:601.869814px;}
.yd3_c01284{bottom:602.665986px;}
.yd2_c01284{bottom:605.318202px;}
.yd1_c01284{bottom:606.642023px;}
.yd0_c01284{bottom:607.459170px;}
.ycf_c01284{bottom:608.768331px;}
.yce_c01284{bottom:609.566082px;}
.ycd_c01284{bottom:611.121656px;}
.ycc_c01284{bottom:631.626591px;}
.ycb_c01284{bottom:632.428553px;}
.yca_c01284{bottom:633.466641px;}
.yc9_c01284{bottom:634.528863px;}
.yc8_c01284{bottom:636.961353px;}
.yc7_c01284{bottom:638.310119px;}
.yc6_c01284{bottom:638.832867px;}
.yc5_c01284{bottom:640.966262px;}
.yc4_c01284{bottom:641.730360px;}
.yc3_c01284{bottom:644.137137px;}
.yc2_c01284{bottom:645.717735px;}
.yc1_c01284{bottom:646.501556px;}
.yc0_c01284{bottom:666.295671px;}
.ybf_c01284{bottom:666.784203px;}
.ybe_c01284{bottom:668.030462px;}
.ybd_c01284{bottom:668.865419px;}
.ybc_c01284{bottom:669.757558px;}
.ybb_c01284{bottom:671.729063px;}
.yba_c01284{bottom:673.181904px;}
.yb9_c01284{bottom:674.947556px;}
.yb8_c01284{bottom:675.843948px;}
.yb7_c01284{bottom:677.524390px;}
.yb6_c01284{bottom:678.133284px;}
.yb5_c01284{bottom:680.690355px;}
.yb4_c01284{bottom:681.825527px;}
.yb3_c01284{bottom:682.964505px;}
.yb2_c01284{bottom:702.075043px;}
.yb1_c01284{bottom:702.955433px;}
.yb0_c01284{bottom:704.171445px;}
.yaf_c01284{bottom:706.864412px;}
.yae_c01284{bottom:708.053046px;}
.yad_c01284{bottom:710.160666px;}
.yac_c01284{bottom:710.792709px;}
.yab_c01284{bottom:712.543443px;}
.yaa_c01284{bottom:715.244469px;}
.ya9_c01284{bottom:717.044856px;}
.ya8_c01284{bottom:719.427998px;}
.ya7_c01284{bottom:737.312919px;}
.ya6_c01284{bottom:738.183758px;}
.ya5_c01284{bottom:739.033698px;}
.ya4_c01284{bottom:740.520153px;}
.ya3_c01284{bottom:741.371957px;}
.ya2_c01284{bottom:744.265692px;}
.ya1_c01284{bottom:745.150178px;}
.ya0_c01284{bottom:747.684044px;}
.y9f_c01284{bottom:748.584608px;}
.y9e_c01284{bottom:750.599283px;}
.y9d_c01284{bottom:751.712787px;}
.y9c_c01284{bottom:753.728030px;}
.y9b_c01284{bottom:774.068144px;}
.y9a_c01284{bottom:774.973932px;}
.y99_c01284{bottom:776.941145px;}
.y98_c01284{bottom:777.764357px;}
.y97_c01284{bottom:780.724955px;}
.y96_c01284{bottom:781.904270px;}
.y95_c01284{bottom:783.592367px;}
.y94_c01284{bottom:784.498925px;}
.y93_c01284{bottom:786.226427px;}
.y92_c01284{bottom:787.938944px;}
.y91_c01284{bottom:788.519408px;}
.y90_c01284{bottom:790.191062px;}
.y8f_c01284{bottom:809.265825px;}
.y8e_c01284{bottom:811.203957px;}
.y8d_c01284{bottom:811.970772px;}
.y8c_c01284{bottom:815.114924px;}
.y8b_c01284{bottom:815.875462px;}
.y8a_c01284{bottom:817.597212px;}
.y89_c01284{bottom:818.785496px;}
.y88_c01284{bottom:819.515909px;}
.y87_c01284{bottom:820.246322px;}
.y86_c01284{bottom:823.140726px;}
.y85_c01284{bottom:846.283305px;}
.y84_c01284{bottom:848.497951px;}
.y83_c01284{bottom:849.313800px;}
.y82_c01284{bottom:849.907320px;}
.y81_c01284{bottom:852.420995px;}
.y80_c01284{bottom:853.519671px;}
.y7f_c01284{bottom:855.168416px;}
.y7e_c01284{bottom:856.013340px;}
.y7d_c01284{bottom:856.847694px;}
.y7c_c01284{bottom:858.496641px;}
.y7b_c01284{bottom:860.643335px;}
.y7a_c01284{bottom:861.220656px;}
.y79_c01284{bottom:882.279903px;}
.y78_c01284{bottom:883.205267px;}
.y77_c01284{bottom:883.884825px;}
.y76_c01284{bottom:885.758550px;}
.y75_c01284{bottom:886.932432px;}
.y74_c01284{bottom:887.647377px;}
.y73_c01284{bottom:889.486524px;}
.y72_c01284{bottom:890.865804px;}
.y71_c01284{bottom:893.445768px;}
.y70_c01284{bottom:894.125934px;}
.y6f_c01284{bottom:897.694262px;}
.y6e_c01284{bottom:917.713352px;}
.y6d_c01284{bottom:918.497699px;}
.y6c_c01284{bottom:918.970995px;}
.y6b_c01284{bottom:922.151304px;}
.y6a_c01284{bottom:923.387691px;}
.y69_c01284{bottom:924.099155px;}
.y68_c01284{bottom:926.281164px;}
.y67_c01284{bottom:927.029151px;}
.y66_c01284{bottom:929.437100px;}
.y65_c01284{bottom:930.417180px;}
.y64_c01284{bottom:934.428523px;}
.y63_c01284{bottom:951.166983px;}
.y62_c01284{bottom:952.666755px;}
.y61_c01284{bottom:953.498519px;}
.y60_c01284{bottom:954.318704px;}
.y5f_c01284{bottom:955.170789px;}
.y5e_c01284{bottom:956.669873px;}
.y5d_c01284{bottom:957.516573px;}
.y5c_c01284{bottom:959.408949px;}
.y5b_c01284{bottom:960.025869px;}
.y5a_c01284{bottom:962.309797px;}
.y59_c01284{bottom:963.591771px;}
.y58_c01284{bottom:984.833295px;}
.y57_c01284{bottom:986.357588px;}
.y56_c01284{bottom:987.059531px;}
.y55_c01284{bottom:988.847790px;}
.y54_c01284{bottom:989.518115px;}
.y53_c01284{bottom:990.154957px;}
.y52_c01284{bottom:991.057995px;}
.y51_c01284{bottom:991.734068px;}
.y50_c01284{bottom:992.175768px;}
.y4f_c01284{bottom:993.522327px;}
.y4e_c01284{bottom:993.932126px;}
.y4d_c01284{bottom:995.504879px;}
.y4c_c01284{bottom:996.158766px;}
.y4b_c01284{bottom:997.897553px;}
.y4a_c01284{bottom:1020.872130px;}
.y49_c01284{bottom:1023.087678px;}
.y48_c01284{bottom:1025.097475px;}
.y47_c01284{bottom:1025.773306px;}
.y46_c01284{bottom:1027.999218px;}
.y45_c01284{bottom:1028.669421px;}
.y44_c01284{bottom:1029.782904px;}
.y43_c01284{bottom:1031.538695px;}
.y42_c01284{bottom:1032.175212px;}
.y41_c01284{bottom:1033.282176px;}
.y40_c01284{bottom:1056.156674px;}
.y3f_c01284{bottom:1057.029773px;}
.y3e_c01284{bottom:1059.758379px;}
.y3d_c01284{bottom:1061.254854px;}
.y3c_c01284{bottom:1062.136823px;}
.y3b_c01284{bottom:1063.909224px;}
.y3a_c01284{bottom:1064.869560px;}
.y39_c01284{bottom:1066.036730px;}
.y38_c01284{bottom:1068.758046px;}
.y37_c01284{bottom:1069.638840px;}
.y36_c01284{bottom:1070.559000px;}
.y35_c01284{bottom:1112.547312px;}
.y34_c01284{bottom:1112.799438px;}
.y33_c01284{bottom:1113.089220px;}
.y32_c01284{bottom:1113.642165px;}
.y31_c01284{bottom:1113.878787px;}
.y30_c01284{bottom:1114.200219px;}
.y2f_c01284{bottom:1114.477812px;}
.y2e_c01284{bottom:1116.084618px;}
.y2d_c01284{bottom:1116.381771px;}
.y14_c01284{bottom:1116.398511px;}
.y13_c01284{bottom:1116.679389px;}
.y2c_c01284{bottom:1117.186275px;}
.y12_c01284{bottom:1117.252026px;}
.y11_c01284{bottom:1117.676619px;}
.y2b_c01284{bottom:1118.092242px;}
.y10_c01284{bottom:1118.329791px;}
.y2a_c01284{bottom:1118.348424px;}
.y29_c01284{bottom:1118.948112px;}
.yf_c01284{bottom:1118.976138px;}
.ye_c01284{bottom:1119.560787px;}
.yd_c01284{bottom:1119.776496px;}
.yc_c01284{bottom:1120.057569px;}
.y28_c01284{bottom:1120.603065px;}
.y27_c01284{bottom:1120.806282px;}
.yb_c01284{bottom:1120.836711px;}
.y26_c01284{bottom:1121.077011px;}
.y25_c01284{bottom:1121.416851px;}
.ya_c01284{bottom:1121.609184px;}
.y24_c01284{bottom:1121.644191px;}
.y23_c01284{bottom:1122.271707px;}
.y22_c01284{bottom:1122.543840px;}
.y21_c01284{bottom:1122.745302px;}
.y20_c01284{bottom:1123.238457px;}
.y9_c01284{bottom:1123.329981px;}
.y1f_c01284{bottom:1123.669932px;}
.y8_c01284{bottom:1124.053353px;}
.y1e_c01284{bottom:1124.223774px;}
.y1d_c01284{bottom:1124.742456px;}
.y1c_c01284{bottom:1124.965233px;}
.y1b_c01284{bottom:1125.316656px;}
.y1a_c01284{bottom:1125.512658px;}
.y7_c01284{bottom:1125.627510px;}
.y19_c01284{bottom:1125.872565px;}
.y18_c01284{bottom:1126.109187px;}
.y17_c01284{bottom:1126.345809px;}
.y16_c01284{bottom:1126.616031px;}
.y15_c01284{bottom:1127.533737px;}
.y6_c01284{bottom:1128.245619px;}
.y5_c01284{bottom:1128.793374px;}
.y4_c01284{bottom:1129.972500px;}
.y3_c01284{bottom:1210.990848px;}
.y2_c01284{bottom:1213.053576px;}
.y1_c01284{bottom:1214.205000px;}
.h3_c01284{height:24.008111px;}
.h4_c01284{height:24.068131px;}
.h12_c01284{height:41.991620px;}
.hb_c01284{height:66.022304px;}
.h7_c01284{height:66.024053px;}
.hc_c01284{height:71.964891px;}
.hf_c01284{height:71.972131px;}
.h11_c01284{height:71.985635px;}
.h2_c01284{height:72.010979px;}
.ha_c01284{height:72.024332px;}
.h5_c01284{height:72.026239px;}
.hd_c01284{height:72.030270px;}
.h8_c01284{height:78.028426px;}
.he_c01284{height:78.032792px;}
.h10_c01284{height:83.976687px;}
.h9_c01284{height:84.030612px;}
.h6_c01284{height:90.032799px;}
.h1_c01284{height:1250.250000px;}
.h0_c01284{height:1250.370000px;}
.w1_c01284{width:912.000000px;}
.w0_c01284{width:912.300000px;}
.x0_c01284{left:0.000000px;}
.x55_c01284{left:8.014337px;}
.x5c_c01284{left:19.337483px;}
.xe4_c01284{left:172.201500px;}
.xe8_c01284{left:173.298000px;}
.xd8_c01284{left:176.495450px;}
.xc5_c01284{left:177.655008px;}
.xbe_c01284{left:179.761500px;}
.xb0_c01284{left:180.869211px;}
.xa2_c01284{left:182.166696px;}
.x88_c01284{left:184.880393px;}
.x7e_c01284{left:186.490992px;}
.x6f_c01284{left:188.135468px;}
.x5d_c01284{left:189.247482px;}
.x4d_c01284{left:190.591672px;}
.x39_c01284{left:192.458303px;}
.xcd_c01284{left:199.466589px;}
.xe9_c01284{left:204.830936px;}
.x65_c01284{left:212.179316px;}
.x15_c01284{left:215.329392px;}
.x98_c01284{left:216.702347px;}
.x5e_c01284{left:221.610707px;}
.xa3_c01284{left:226.942266px;}
.x90_c01284{left:229.471349px;}
.x56_c01284{left:234.856914px;}
.xa8_c01284{left:237.741000px;}
.xd9_c01284{left:241.494234px;}
.x3a_c01284{left:247.800751px;}
.x9e_c01284{left:249.089556px;}
.x16_c01284{left:252.011328px;}
.xce_c01284{left:253.709282px;}
.xbf_c01284{left:256.378500px;}
.x4e_c01284{left:258.086752px;}
.x17_c01284{left:262.808601px;}
.x7f_c01284{left:264.020598px;}
.xb1_c01284{left:268.545585px;}
.x18_c01284{left:272.255835px;}
.x78_c01284{left:274.796342px;}
.x3b_c01284{left:279.659286px;}
.x4_c01284{left:281.562000px;}
.x99_c01284{left:282.581693px;}
.xe1_c01284{left:284.127000px;}
.xd4_c01284{left:286.288361px;}
.xc6_c01284{left:288.489175px;}
.xea_c01284{left:291.603076px;}
.x19_c01284{left:296.122959px;}
.x66_c01284{left:298.024433px;}
.x2e_c01284{left:301.531500px;}
.x1a_c01284{left:303.950154px;}
.x80_c01284{left:306.873773px;}
.x41_c01284{left:311.518290px;}
.x1b_c01284{left:317.986005px;}
.x70_c01284{left:319.686707px;}
.xa9_c01284{left:324.501000px;}
.x5_c01284{left:326.913000px;}
.xe0_c01284{left:327.928485px;}
.xb7_c01284{left:333.573234px;}
.x2f_c01284{left:335.611500px;}
.x9f_c01284{left:336.852644px;}
.xe5_c01284{left:338.006030px;}
.x79_c01284{left:340.669124px;}
.xd5_c01284{left:341.743032px;}
.x57_c01284{left:344.277156px;}
.x6_c01284{left:347.980500px;}
.xda_c01284{left:350.657085px;}
.x71_c01284{left:352.910202px;}
.x67_c01284{left:363.988997px;}
.x30_c01284{left:368.233500px;}
.x1c_c01284{left:369.825870px;}
.x91_c01284{left:371.502696px;}
.xdb_c01284{left:373.257390px;}
.xc0_c01284{left:376.095000px;}
.x4f_c01284{left:378.258173px;}
.x9a_c01284{left:382.840793px;}
.x81_c01284{left:384.382379px;}
.x1d_c01284{left:387.113838px;}
.x42_c01284{left:390.172153px;}
.x1_c01284{left:392.269500px;}
.x92_c01284{left:394.943844px;}
.x68_c01284{left:397.392819px;}
.xc1_c01284{left:398.788500px;}
.xb8_c01284{left:399.847086px;}
.xe6_c01284{left:405.720248px;}
.x1e_c01284{left:406.831845px;}
.x43_c01284{left:410.631501px;}
.x1f_c01284{left:414.869040px;}
.x2_c01284{left:416.233512px;}
.x82_c01284{left:419.015310px;}
.x3c_c01284{left:423.066840px;}
.x20_c01284{left:425.739813px;}
.x69_c01284{left:431.188142px;}
.xaa_c01284{left:435.987000px;}
.x72_c01284{left:440.151488px;}
.x7a_c01284{left:441.951837px;}
.xb3_c01284{left:444.898311px;}
.x7_c01284{left:448.677000px;}
.x21_c01284{left:450.856476px;}
.xc7_c01284{left:452.544666px;}
.x3d_c01284{left:456.562158px;}
.x3_c01284{left:459.164038px;}
.xbc_c01284{left:466.557550px;}
.x31_c01284{left:469.023000px;}
.xe2_c01284{left:471.971468px;}
.x22_c01284{left:473.537061px;}
.x44_c01284{left:477.961218px;}
.xa4_c01284{left:481.111037px;}
.x23_c01284{left:484.353834px;}
.xc8_c01284{left:486.749708px;}
.x24_c01284{left:492.458529px;}
.x93_c01284{left:494.051517px;}
.xd6_c01284{left:495.898134px;}
.x5f_c01284{left:497.688378px;}
.x45_c01284{left:500.046890px;}
.x9b_c01284{left:503.609594px;}
.x89_c01284{left:504.705893px;}
.x7b_c01284{left:506.864579px;}
.x8_c01284{left:509.221500px;}
.x50_c01284{left:510.334684px;}
.x32_c01284{left:512.251500px;}
.xe7_c01284{left:515.438919px;}
.x83_c01284{left:516.475943px;}
.x73_c01284{left:518.430558px;}
.xc9_c01284{left:520.017336px;}
.x9c_c01284{left:525.416876px;}
.x8a_c01284{left:528.114893px;}
.x60_c01284{left:531.728886px;}
.x46_c01284{left:533.870789px;}
.x9_c01284{left:537.043500px;}
.x6a_c01284{left:541.117095px;}
.xc2_c01284{left:543.804000px;}
.xa5_c01284{left:546.182013px;}
.x33_c01284{left:547.819500px;}
.x84_c01284{left:550.513374px;}
.x74_c01284{left:552.992216px;}
.x51_c01284{left:554.925823px;}
.xb4_c01284{left:556.504311px;}
.x25_c01284{left:558.650745px;}
.x94_c01284{left:561.947840px;}
.xcf_c01284{left:563.477351px;}
.x58_c01284{left:565.968045px;}
.x3e_c01284{left:567.857677px;}
.xa0_c01284{left:569.717976px;}
.x47_c01284{left:578.991793px;}
.x9d_c01284{left:581.597912px;}
.x26_c01284{left:582.639369px;}
.xdc_c01284{left:585.177701px;}
.x61_c01284{left:587.603918px;}
.xab_c01284{left:590.337000px;}
.x27_c01284{left:592.896642px;}
.xd0_c01284{left:596.996979px;}
.xca_c01284{left:598.579745px;}
.xc3_c01284{left:599.788500px;}
.x3f_c01284{left:601.617036px;}
.xa_c01284{left:603.228000px;}
.x8b_c01284{left:606.174893px;}
.x48_c01284{left:610.806787px;}
.x34_c01284{left:613.464000px;}
.x95_c01284{left:617.813838px;}
.xac_c01284{left:625.909500px;}
.x28_c01284{left:629.127078px;}
.xb_c01284{left:632.938500px;}
.xa1_c01284{left:637.242944px;}
.x6b_c01284{left:641.666022px;}
.x49_c01284{left:644.306605px;}
.x35_c01284{left:646.129500px;}
.xa6_c01284{left:647.207546px;}
.x8c_c01284{left:650.198393px;}
.xd7_c01284{left:651.896562px;}
.xb9_c01284{left:655.652118px;}
.x29_c01284{left:661.281897px;}
.xc_c01284{left:662.905500px;}
.x6c_c01284{left:665.427318px;}
.xd_c01284{left:673.716000px;}
.x62_c01284{left:676.793336px;}
.x52_c01284{left:678.699553px;}
.xe_c01284{left:682.012500px;}
.xdd_c01284{left:683.973443px;}
.xba_c01284{left:688.798044px;}
.xad_c01284{left:689.920500px;}
.xeb_c01284{left:691.077702px;}
.x85_c01284{left:694.574262px;}
.x75_c01284{left:695.905994px;}
.x6d_c01284{left:698.034560px;}
.x36_c01284{left:701.554500px;}
.xf_c01284{left:704.499000px;}
.x63_c01284{left:709.134060px;}
.x59_c01284{left:710.554566px;}
.xde_c01284{left:717.486900px;}
.xd1_c01284{left:720.536168px;}
.x53_c01284{left:721.863868px;}
.xae_c01284{left:724.518000px;}
.x96_c01284{left:727.988835px;}
.x10_c01284{left:729.358500px;}
.x76_c01284{left:730.755692px;}
.x5a_c01284{left:732.086982px;}
.x4a_c01284{left:733.721994px;}
.x2a_c01284{left:737.455386px;}
.xcb_c01284{left:741.466671px;}
.xc4_c01284{left:742.875000px;}
.xbb_c01284{left:745.055676px;}
.x2b_c01284{left:748.536159px;}
.x8d_c01284{left:749.937893px;}
.x86_c01284{left:751.740801px;}
.x64_c01284{left:753.191688px;}
.x11_c01284{left:754.480500px;}
.x97_c01284{left:760.080686px;}
.x2c_c01284{left:761.418510px;}
.xd2_c01284{left:764.560578px;}
.x54_c01284{left:765.623805px;}
.x5b_c01284{left:767.752802px;}
.x4b_c01284{left:768.837636px;}
.x12_c01284{left:770.811000px;}
.x7c_c01284{left:773.384247px;}
.xcc_c01284{left:776.928582px;}
.xb5_c01284{left:778.382811px;}
.x87_c01284{left:784.443192px;}
.x6e_c01284{left:786.618839px;}
.xa7_c01284{left:790.658310px;}
.x13_c01284{left:792.835500px;}
.x8e_c01284{left:794.975393px;}
.xdf_c01284{left:797.266011px;}
.xd3_c01284{left:798.362163px;}
.x37_c01284{left:802.614000px;}
.x14_c01284{left:803.638500px;}
.x7d_c01284{left:808.210679px;}
.x40_c01284{left:812.873429px;}
.x2d_c01284{left:814.707414px;}
.xe3_c01284{left:816.139455px;}
.x77_c01284{left:818.883599px;}
.xbd_c01284{left:820.539215px;}
.xb6_c01284{left:822.718311px;}
.x8f_c01284{left:827.582393px;}
.xb2_c01284{left:833.848890px;}
.x38_c01284{left:834.951000px;}
.x4c_c01284{left:845.029513px;}
.xaf_c01284{left:874.225500px;}
@media print{
.v0_c01284{vertical-align:0.000000pt;}
.ls0_c01284{letter-spacing:0.000000pt;}
.ws0_c01284{word-spacing:0.000000pt;}
._0_c01284{width:11.664776pt;}
.fs1_c01284{font-size:21.340543pt;}
.fsf_c01284{font-size:37.325885pt;}
.fs8_c01284{font-size:58.686493pt;}
.fs4_c01284{font-size:58.688047pt;}
.fs9_c01284{font-size:63.968792pt;}
.fsc_c01284{font-size:63.975227pt;}
.fse_c01284{font-size:63.987231pt;}
.fs0_c01284{font-size:64.009759pt;}
.fs7_c01284{font-size:64.021628pt;}
.fs2_c01284{font-size:64.023324pt;}
.fsa_c01284{font-size:64.026906pt;}
.fs5_c01284{font-size:69.358601pt;}
.fsb_c01284{font-size:69.362482pt;}
.fsd_c01284{font-size:74.645944pt;}
.fs6_c01284{font-size:74.693878pt;}
.fs3_c01284{font-size:80.029155pt;}
.y0_c01284{bottom:0.000000pt;}
.y174_c01284{bottom:59.570187pt;}
.y173_c01284{bottom:60.750827pt;}
.y176_c01284{bottom:60.858439pt;}
.y175_c01284{bottom:60.861483pt;}
.y172_c01284{bottom:63.182293pt;}
.y171_c01284{bottom:66.325493pt;}
.y170_c01284{bottom:67.089067pt;}
.y16f_c01284{bottom:71.839573pt;}
.y16e_c01284{bottom:75.786240pt;}
.y16d_c01284{bottom:77.400053pt;}
.y16c_c01284{bottom:80.488373pt;}
.y16b_c01284{bottom:81.610667pt;}
.y16a_c01284{bottom:84.713741pt;}
.y169_c01284{bottom:85.836059pt;}
.y168_c01284{bottom:90.744949pt;}
.y167_c01284{bottom:91.491573pt;}
.y166_c01284{bottom:93.357272pt;}
.y165_c01284{bottom:94.485264pt;}
.y164_c01284{bottom:98.195027pt;}
.y163_c01284{bottom:100.484552pt;}
.y162_c01284{bottom:102.286563pt;}
.y161_c01284{bottom:106.090667pt;}
.y160_c01284{bottom:117.126600pt;}
.y15f_c01284{bottom:118.477273pt;}
.y15e_c01284{bottom:121.237560pt;}
.y15d_c01284{bottom:123.021393pt;}
.y15c_c01284{bottom:126.106433pt;}
.y15b_c01284{bottom:127.844767pt;}
.y15a_c01284{bottom:129.561120pt;}
.y159_c01284{bottom:130.961027pt;}
.y158_c01284{bottom:133.694667pt;}
.y157_c01284{bottom:159.302481pt;}
.y156_c01284{bottom:162.777188pt;}
.y155_c01284{bottom:163.991069pt;}
.y154_c01284{bottom:164.873859pt;}
.y153_c01284{bottom:168.185900pt;}
.y152_c01284{bottom:180.177692pt;}
.y151_c01284{bottom:182.092768pt;}
.y150_c01284{bottom:182.896620pt;}
.y14f_c01284{bottom:183.687692pt;}
.y14e_c01284{bottom:185.267207pt;}
.y14d_c01284{bottom:185.805235pt;}
.y14c_c01284{bottom:187.682919pt;}
.y14b_c01284{bottom:188.485263pt;}
.y14a_c01284{bottom:190.352391pt;}
.y149_c01284{bottom:190.894943pt;}
.y148_c01284{bottom:192.723751pt;}
.y147_c01284{bottom:193.514088pt;}
.y146_c01284{bottom:195.073515pt;}
.y145_c01284{bottom:213.873056pt;}
.y144_c01284{bottom:214.807740pt;}
.y143_c01284{bottom:216.413627pt;}
.y142_c01284{bottom:219.913685pt;}
.y141_c01284{bottom:220.851269pt;}
.y140_c01284{bottom:223.647203pt;}
.y13f_c01284{bottom:224.616144pt;}
.y13e_c01284{bottom:225.236057pt;}
.y13d_c01284{bottom:226.813680pt;}
.y13c_c01284{bottom:228.648269pt;}
.y13b_c01284{bottom:229.890088pt;}
.y13a_c01284{bottom:245.527039pt;}
.y139_c01284{bottom:246.518469pt;}
.y138_c01284{bottom:247.809452pt;}
.y137_c01284{bottom:251.433053pt;}
.y136_c01284{bottom:252.415881pt;}
.y135_c01284{bottom:254.649345pt;}
.y134_c01284{bottom:257.580759pt;}
.y133_c01284{bottom:260.197289pt;}
.y132_c01284{bottom:261.503273pt;}
.y131_c01284{bottom:263.095025pt;}
.y130_c01284{bottom:263.739965pt;}
.y12f_c01284{bottom:277.137647pt;}
.y12e_c01284{bottom:278.177215pt;}
.y12d_c01284{bottom:281.092949pt;}
.y12c_c01284{bottom:282.368949pt;}
.y12b_c01284{bottom:284.673015pt;}
.y12a_c01284{bottom:285.649347pt;}
.y129_c01284{bottom:286.652512pt;}
.y128_c01284{bottom:287.904733pt;}
.y127_c01284{bottom:288.906429pt;}
.y126_c01284{bottom:291.464655pt;}
.y125_c01284{bottom:293.720273pt;}
.y124_c01284{bottom:294.715377pt;}
.y123_c01284{bottom:306.398628pt;}
.y122_c01284{bottom:309.012185pt;}
.y121_c01284{bottom:310.154553pt;}
.y120_c01284{bottom:312.700637pt;}
.y11f_c01284{bottom:314.143793pt;}
.y11e_c01284{bottom:316.157399pt;}
.y11d_c01284{bottom:317.053460pt;}
.y11c_c01284{bottom:317.881971pt;}
.y11b_c01284{bottom:318.466959pt;}
.y11a_c01284{bottom:321.552984pt;}
.y119_c01284{bottom:322.429171pt;}
.y118_c01284{bottom:323.528000pt;}
.y117_c01284{bottom:338.915435pt;}
.y116_c01284{bottom:340.141077pt;}
.y115_c01284{bottom:342.055445pt;}
.y114_c01284{bottom:344.889408pt;}
.y113_c01284{bottom:346.157205pt;}
.y112_c01284{bottom:348.994325pt;}
.y111_c01284{bottom:352.498069pt;}
.y110_c01284{bottom:356.223680pt;}
.y10f_c01284{bottom:357.128000pt;}
.y10e_c01284{bottom:370.965059pt;}
.y10d_c01284{bottom:371.840371pt;}
.y10c_c01284{bottom:373.289981pt;}
.y10b_c01284{bottom:374.144080pt;}
.y10a_c01284{bottom:376.694035pt;}
.y109_c01284{bottom:377.920293pt;}
.y108_c01284{bottom:379.591677pt;}
.y107_c01284{bottom:380.739147pt;}
.y106_c01284{bottom:382.446928pt;}
.y105_c01284{bottom:383.296416pt;}
.y104_c01284{bottom:386.376248pt;}
.y103_c01284{bottom:402.020435pt;}
.y102_c01284{bottom:403.045077pt;}
.y101_c01284{bottom:404.307464pt;}
.y100_c01284{bottom:405.362475pt;}
.yff_c01284{bottom:406.123997pt;}
.yfe_c01284{bottom:406.923099pt;}
.yfd_c01284{bottom:407.640941pt;}
.yfc_c01284{bottom:408.172936pt;}
.yfb_c01284{bottom:409.208117pt;}
.yfa_c01284{bottom:410.752275pt;}
.yf9_c01284{bottom:412.030712pt;}
.yf8_c01284{bottom:414.079339pt;}
.yf7_c01284{bottom:416.868480pt;}
.yf6_c01284{bottom:434.266485pt;}
.yf5_c01284{bottom:437.801893pt;}
.yf4_c01284{bottom:440.140576pt;}
.yf3_c01284{bottom:442.815429pt;}
.yf2_c01284{bottom:443.729243pt;}
.yf1_c01284{bottom:446.099520pt;}
.yf0_c01284{bottom:446.672987pt;}
.yef_c01284{bottom:448.187285pt;}
.yee_c01284{bottom:449.339296pt;}
.yed_c01284{bottom:450.466939pt;}
.yec_c01284{bottom:451.677805pt;}
.yeb_c01284{bottom:464.007392pt;}
.yea_c01284{bottom:465.931808pt;}
.ye9_c01284{bottom:467.467299pt;}
.ye8_c01284{bottom:468.266885pt;}
.ye7_c01284{bottom:469.746251pt;}
.ye6_c01284{bottom:470.568371pt;}
.ye5_c01284{bottom:471.586288pt;}
.ye4_c01284{bottom:474.135571pt;}
.ye3_c01284{bottom:475.172520pt;}
.ye2_c01284{bottom:476.712136pt;}
.ye1_c01284{bottom:478.717256pt;}
.ye0_c01284{bottom:480.008000pt;}
.ydf_c01284{bottom:498.240577pt;}
.yde_c01284{bottom:498.790947pt;}
.ydd_c01284{bottom:501.938248pt;}
.ydc_c01284{bottom:503.619384pt;}
.ydb_c01284{bottom:504.542992pt;}
.yda_c01284{bottom:506.220780pt;}
.yd9_c01284{bottom:509.655921pt;}
.yd8_c01284{bottom:512.773160pt;}
.yd7_c01284{bottom:513.927832pt;}
.yd6_c01284{bottom:530.925631pt;}
.yd5_c01284{bottom:533.554923pt;}
.yd4_c01284{bottom:534.995391pt;}
.yd3_c01284{bottom:535.703099pt;}
.yd2_c01284{bottom:538.060624pt;}
.yd1_c01284{bottom:539.237353pt;}
.yd0_c01284{bottom:539.963707pt;}
.ycf_c01284{bottom:541.127405pt;}
.yce_c01284{bottom:541.836517pt;}
.ycd_c01284{bottom:543.219249pt;}
.ycc_c01284{bottom:561.445859pt;}
.ycb_c01284{bottom:562.158713pt;}
.yca_c01284{bottom:563.081459pt;}
.yc9_c01284{bottom:564.025656pt;}
.yc8_c01284{bottom:566.187869pt;}
.yc7_c01284{bottom:567.386772pt;}
.yc6_c01284{bottom:567.851437pt;}
.yc5_c01284{bottom:569.747788pt;}
.yc4_c01284{bottom:570.426987pt;}
.yc3_c01284{bottom:572.566344pt;}
.yc2_c01284{bottom:573.971320pt;}
.yc1_c01284{bottom:574.668049pt;}
.yc0_c01284{bottom:592.262819pt;}
.ybf_c01284{bottom:592.697069pt;}
.ybe_c01284{bottom:593.804855pt;}
.ybd_c01284{bottom:594.547039pt;}
.ybc_c01284{bottom:595.340052pt;}
.ybb_c01284{bottom:597.092500pt;}
.yba_c01284{bottom:598.383915pt;}
.yb9_c01284{bottom:599.953383pt;}
.yb8_c01284{bottom:600.750176pt;}
.yb7_c01284{bottom:602.243903pt;}
.yb6_c01284{bottom:602.785141pt;}
.yb5_c01284{bottom:605.058093pt;}
.yb4_c01284{bottom:606.067135pt;}
.yb3_c01284{bottom:607.079560pt;}
.yb2_c01284{bottom:624.066705pt;}
.yb1_c01284{bottom:624.849273pt;}
.yb0_c01284{bottom:625.930173pt;}
.yaf_c01284{bottom:628.323921pt;}
.yae_c01284{bottom:629.380485pt;}
.yad_c01284{bottom:631.253925pt;}
.yac_c01284{bottom:631.815741pt;}
.yab_c01284{bottom:633.371949pt;}
.yaa_c01284{bottom:635.772861pt;}
.ya9_c01284{bottom:637.373205pt;}
.ya8_c01284{bottom:639.491553pt;}
.ya7_c01284{bottom:655.389261pt;}
.ya6_c01284{bottom:656.163340pt;}
.ya5_c01284{bottom:656.918843pt;}
.ya4_c01284{bottom:658.240136pt;}
.ya3_c01284{bottom:658.997295pt;}
.ya2_c01284{bottom:661.569504pt;}
.ya1_c01284{bottom:662.355713pt;}
.ya0_c01284{bottom:664.608039pt;}
.y9f_c01284{bottom:665.408540pt;}
.y9e_c01284{bottom:667.199363pt;}
.y9d_c01284{bottom:668.189144pt;}
.y9c_c01284{bottom:669.980471pt;}
.y9b_c01284{bottom:688.060572pt;}
.y9a_c01284{bottom:688.865717pt;}
.y99_c01284{bottom:690.614351pt;}
.y98_c01284{bottom:691.346095pt;}
.y97_c01284{bottom:693.977737pt;}
.y96_c01284{bottom:695.026017pt;}
.y95_c01284{bottom:696.526548pt;}
.y94_c01284{bottom:697.332377pt;}
.y93_c01284{bottom:698.867935pt;}
.y92_c01284{bottom:700.390172pt;}
.y91_c01284{bottom:700.906140pt;}
.y90_c01284{bottom:702.392055pt;}
.y8f_c01284{bottom:719.347400pt;}
.y8e_c01284{bottom:721.070184pt;}
.y8d_c01284{bottom:721.751797pt;}
.y8c_c01284{bottom:724.546599pt;}
.y8b_c01284{bottom:725.222633pt;}
.y8a_c01284{bottom:726.753077pt;}
.y89_c01284{bottom:727.809329pt;}
.y88_c01284{bottom:728.458585pt;}
.y87_c01284{bottom:729.107841pt;}
.y86_c01284{bottom:731.680645pt;}
.y85_c01284{bottom:752.251827pt;}
.y84_c01284{bottom:754.220401pt;}
.y83_c01284{bottom:754.945600pt;}
.y82_c01284{bottom:755.473173pt;}
.y81_c01284{bottom:757.707551pt;}
.y80_c01284{bottom:758.684152pt;}
.y7f_c01284{bottom:760.149703pt;}
.y7e_c01284{bottom:760.900747pt;}
.y7d_c01284{bottom:761.642395pt;}
.y7c_c01284{bottom:763.108125pt;}
.y7b_c01284{bottom:765.016297pt;}
.y7a_c01284{bottom:765.529472pt;}
.y79_c01284{bottom:784.248803pt;}
.y78_c01284{bottom:785.071348pt;}
.y77_c01284{bottom:785.675400pt;}
.y76_c01284{bottom:787.340933pt;}
.y75_c01284{bottom:788.384384pt;}
.y74_c01284{bottom:789.019891pt;}
.y73_c01284{bottom:790.654688pt;}
.y72_c01284{bottom:791.880715pt;}
.y71_c01284{bottom:794.174016pt;}
.y70_c01284{bottom:794.778608pt;}
.y6f_c01284{bottom:797.950455pt;}
.y6e_c01284{bottom:815.745201pt;}
.y6d_c01284{bottom:816.442399pt;}
.y6c_c01284{bottom:816.863107pt;}
.y6b_c01284{bottom:819.690048pt;}
.y6a_c01284{bottom:820.789059pt;}
.y69_c01284{bottom:821.421471pt;}
.y68_c01284{bottom:823.361035pt;}
.y67_c01284{bottom:824.025912pt;}
.y66_c01284{bottom:826.166311pt;}
.y65_c01284{bottom:827.037493pt;}
.y64_c01284{bottom:830.603132pt;}
.y63_c01284{bottom:845.481763pt;}
.y62_c01284{bottom:846.814893pt;}
.y61_c01284{bottom:847.554239pt;}
.y60_c01284{bottom:848.283292pt;}
.y5f_c01284{bottom:849.040701pt;}
.y5e_c01284{bottom:850.373220pt;}
.y5d_c01284{bottom:851.125843pt;}
.y5c_c01284{bottom:852.807955pt;}
.y5b_c01284{bottom:853.356328pt;}
.y5a_c01284{bottom:855.386487pt;}
.y59_c01284{bottom:856.526019pt;}
.y58_c01284{bottom:875.407373pt;}
.y57_c01284{bottom:876.762300pt;}
.y56_c01284{bottom:877.386249pt;}
.y55_c01284{bottom:878.975813pt;}
.y54_c01284{bottom:879.571657pt;}
.y53_c01284{bottom:880.137740pt;}
.y52_c01284{bottom:880.940440pt;}
.y51_c01284{bottom:881.541393pt;}
.y50_c01284{bottom:881.934016pt;}
.y4f_c01284{bottom:883.130957pt;}
.y4e_c01284{bottom:883.495223pt;}
.y4d_c01284{bottom:884.893225pt;}
.y4c_c01284{bottom:885.474459pt;}
.y4b_c01284{bottom:887.020047pt;}
.y4a_c01284{bottom:907.441893pt;}
.y49_c01284{bottom:909.411269pt;}
.y48_c01284{bottom:911.197756pt;}
.y47_c01284{bottom:911.798495pt;}
.y46_c01284{bottom:913.777083pt;}
.y45_c01284{bottom:914.372819pt;}
.y44_c01284{bottom:915.362581pt;}
.y43_c01284{bottom:916.923284pt;}
.y42_c01284{bottom:917.489077pt;}
.y41_c01284{bottom:918.473045pt;}
.y40_c01284{bottom:938.805932pt;}
.y3f_c01284{bottom:939.582020pt;}
.y3e_c01284{bottom:942.007448pt;}
.y3d_c01284{bottom:943.337648pt;}
.y3c_c01284{bottom:944.121620pt;}
.y3b_c01284{bottom:945.697088pt;}
.y3a_c01284{bottom:946.550720pt;}
.y39_c01284{bottom:947.588204pt;}
.y38_c01284{bottom:950.007152pt;}
.y37_c01284{bottom:950.790080pt;}
.y36_c01284{bottom:951.608000pt;}
.y35_c01284{bottom:988.930944pt;}
.y34_c01284{bottom:989.155056pt;}
.y33_c01284{bottom:989.412640pt;}
.y32_c01284{bottom:989.904147pt;}
.y31_c01284{bottom:990.114477pt;}
.y30_c01284{bottom:990.400195pt;}
.y2f_c01284{bottom:990.646944pt;}
.y2e_c01284{bottom:992.075216pt;}
.y2d_c01284{bottom:992.339352pt;}
.y14_c01284{bottom:992.354232pt;}
.y13_c01284{bottom:992.603901pt;}
.y2c_c01284{bottom:993.054467pt;}
.y12_c01284{bottom:993.112912pt;}
.y11_c01284{bottom:993.490328pt;}
.y2b_c01284{bottom:993.859771pt;}
.y10_c01284{bottom:994.070925pt;}
.y2a_c01284{bottom:994.087488pt;}
.y29_c01284{bottom:994.620544pt;}
.yf_c01284{bottom:994.645456pt;}
.ye_c01284{bottom:995.165144pt;}
.yd_c01284{bottom:995.356885pt;}
.yc_c01284{bottom:995.606728pt;}
.y28_c01284{bottom:996.091613pt;}
.y27_c01284{bottom:996.272251pt;}
.yb_c01284{bottom:996.299299pt;}
.y26_c01284{bottom:996.512899pt;}
.y25_c01284{bottom:996.814979pt;}
.ya_c01284{bottom:996.985941pt;}
.y24_c01284{bottom:997.017059pt;}
.y23_c01284{bottom:997.574851pt;}
.y22_c01284{bottom:997.816747pt;}
.y21_c01284{bottom:997.995824pt;}
.y20_c01284{bottom:998.434184pt;}
.y9_c01284{bottom:998.515539pt;}
.y1f_c01284{bottom:998.817717pt;}
.y8_c01284{bottom:999.158536pt;}
.y1e_c01284{bottom:999.310021pt;}
.y1d_c01284{bottom:999.771072pt;}
.y1c_c01284{bottom:999.969096pt;}
.y1b_c01284{bottom:1000.281472pt;}
.y1a_c01284{bottom:1000.455696pt;}
.y7_c01284{bottom:1000.557787pt;}
.y19_c01284{bottom:1000.775613pt;}
.y18_c01284{bottom:1000.985944pt;}
.y17_c01284{bottom:1001.196275pt;}
.y16_c01284{bottom:1001.436472pt;}
.y15_c01284{bottom:1002.252211pt;}
.y6_c01284{bottom:1002.884995pt;}
.y5_c01284{bottom:1003.371888pt;}
.y4_c01284{bottom:1004.420000pt;}
.y3_c01284{bottom:1076.436309pt;}
.y2_c01284{bottom:1078.269845pt;}
.y1_c01284{bottom:1079.293333pt;}
.h3_c01284{height:21.340543pt;}
.h4_c01284{height:21.393894pt;}
.h12_c01284{height:37.325885pt;}
.hb_c01284{height:58.686493pt;}
.h7_c01284{height:58.688047pt;}
.hc_c01284{height:63.968792pt;}
.hf_c01284{height:63.975227pt;}
.h11_c01284{height:63.987231pt;}
.h2_c01284{height:64.009759pt;}
.ha_c01284{height:64.021628pt;}
.h5_c01284{height:64.023324pt;}
.hd_c01284{height:64.026906pt;}
.h8_c01284{height:69.358601pt;}
.he_c01284{height:69.362482pt;}
.h10_c01284{height:74.645944pt;}
.h9_c01284{height:74.693878pt;}
.h6_c01284{height:80.029155pt;}
.h1_c01284{height:1111.333333pt;}
.h0_c01284{height:1111.440000pt;}
.w1_c01284{width:810.666667pt;}
.w0_c01284{width:810.933333pt;}
.x0_c01284{left:0.000000pt;}
.x55_c01284{left:7.123855pt;}
.x5c_c01284{left:17.188873pt;}
.xe4_c01284{left:153.068000pt;}
.xe8_c01284{left:154.042667pt;}
.xd8_c01284{left:156.884844pt;}
.xc5_c01284{left:157.915563pt;}
.xbe_c01284{left:159.788000pt;}
.xb0_c01284{left:160.772632pt;}
.xa2_c01284{left:161.925952pt;}
.x88_c01284{left:164.338127pt;}
.x7e_c01284{left:165.769771pt;}
.x6f_c01284{left:167.231527pt;}
.x5d_c01284{left:168.219984pt;}
.x4d_c01284{left:169.414820pt;}
.x39_c01284{left:171.074047pt;}
.xcd_c01284{left:177.303635pt;}
.xe9_c01284{left:182.071943pt;}
.x65_c01284{left:188.603836pt;}
.x15_c01284{left:191.403904pt;}
.x98_c01284{left:192.624308pt;}
.x5e_c01284{left:196.987295pt;}
.xa3_c01284{left:201.726459pt;}
.x90_c01284{left:203.974532pt;}
.x56_c01284{left:208.761701pt;}
.xa8_c01284{left:211.325333pt;}
.xd9_c01284{left:214.661541pt;}
.x3a_c01284{left:220.267335pt;}
.x9e_c01284{left:221.412939pt;}
.x16_c01284{left:224.010069pt;}
.xce_c01284{left:225.519361pt;}
.xbf_c01284{left:227.892000pt;}
.x4e_c01284{left:229.410447pt;}
.x17_c01284{left:233.607645pt;}
.x7f_c01284{left:234.684976pt;}
.xb1_c01284{left:238.707187pt;}
.x18_c01284{left:242.005187pt;}
.x78_c01284{left:244.263415pt;}
.x3b_c01284{left:248.586032pt;}
.x4_c01284{left:250.277333pt;}
.x99_c01284{left:251.183727pt;}
.xe1_c01284{left:252.557333pt;}
.xd4_c01284{left:254.478543pt;}
.xc6_c01284{left:256.434823pt;}
.xea_c01284{left:259.202735pt;}
.x19_c01284{left:263.220408pt;}
.x66_c01284{left:264.910607pt;}
.x2e_c01284{left:268.028000pt;}
.x1a_c01284{left:270.177915pt;}
.x80_c01284{left:272.776687pt;}
.x41_c01284{left:276.905147pt;}
.x1b_c01284{left:282.654227pt;}
.x70_c01284{left:284.165961pt;}
.xa9_c01284{left:288.445333pt;}
.x5_c01284{left:290.589333pt;}
.xe0_c01284{left:291.491987pt;}
.xb7_c01284{left:296.509541pt;}
.x2f_c01284{left:298.321333pt;}
.x9f_c01284{left:299.424572pt;}
.xe5_c01284{left:300.449804pt;}
.x79_c01284{left:302.816999pt;}
.xd5_c01284{left:303.771584pt;}
.x57_c01284{left:306.024139pt;}
.x6_c01284{left:309.316000pt;}
.xda_c01284{left:311.695187pt;}
.x71_c01284{left:313.697957pt;}
.x67_c01284{left:323.545775pt;}
.x30_c01284{left:327.318667pt;}
.x1c_c01284{left:328.734107pt;}
.x91_c01284{left:330.224619pt;}
.xdb_c01284{left:331.784347pt;}
.xc0_c01284{left:334.306667pt;}
.x4f_c01284{left:336.229487pt;}
.x9a_c01284{left:340.302927pt;}
.x81_c01284{left:341.673225pt;}
.x1d_c01284{left:344.101189pt;}
.x42_c01284{left:346.819692pt;}
.x1_c01284{left:348.684000pt;}
.x92_c01284{left:351.061195pt;}
.x68_c01284{left:353.238061pt;}
.xc1_c01284{left:354.478667pt;}
.xb8_c01284{left:355.419632pt;}
.xe6_c01284{left:360.640220pt;}
.x1e_c01284{left:361.628307pt;}
.x43_c01284{left:365.005779pt;}
.x1f_c01284{left:368.772480pt;}
.x2_c01284{left:369.985344pt;}
.x82_c01284{left:372.458053pt;}
.x3c_c01284{left:376.059413pt;}
.x20_c01284{left:378.435389pt;}
.x69_c01284{left:383.278348pt;}
.xaa_c01284{left:387.544000pt;}
.x72_c01284{left:391.245767pt;}
.x7a_c01284{left:392.846077pt;}
.xb3_c01284{left:395.465165pt;}
.x7_c01284{left:398.824000pt;}
.x21_c01284{left:400.761312pt;}
.xc7_c01284{left:402.261925pt;}
.x3d_c01284{left:405.833029pt;}
.x3_c01284{left:408.145812pt;}
.xbc_c01284{left:414.717823pt;}
.x31_c01284{left:416.909333pt;}
.xe2_c01284{left:419.530193pt;}
.x22_c01284{left:420.921832pt;}
.x44_c01284{left:424.854416pt;}
.xa4_c01284{left:427.654255pt;}
.x23_c01284{left:430.536741pt;}
.xc8_c01284{left:432.666407pt;}
.x24_c01284{left:437.740915pt;}
.x93_c01284{left:439.156904pt;}
.xd6_c01284{left:440.798341pt;}
.x5f_c01284{left:442.389669pt;}
.x45_c01284{left:444.486124pt;}
.x9b_c01284{left:447.652972pt;}
.x89_c01284{left:448.627460pt;}
.x7b_c01284{left:450.546292pt;}
.x8_c01284{left:452.641333pt;}
.x50_c01284{left:453.630831pt;}
.x32_c01284{left:455.334667pt;}
.xe7_c01284{left:458.167928pt;}
.x83_c01284{left:459.089727pt;}
.x73_c01284{left:460.827163pt;}
.xc9_c01284{left:462.237632pt;}
.x9c_c01284{left:467.037223pt;}
.x8a_c01284{left:469.435460pt;}
.x60_c01284{left:472.647899pt;}
.x46_c01284{left:474.551812pt;}
.x9_c01284{left:477.372000pt;}
.x6a_c01284{left:480.992973pt;}
.xc2_c01284{left:483.381333pt;}
.xa5_c01284{left:485.495123pt;}
.x33_c01284{left:486.950667pt;}
.x84_c01284{left:489.345221pt;}
.x74_c01284{left:491.548636pt;}
.x51_c01284{left:493.267399pt;}
.xb4_c01284{left:494.670499pt;}
.x25_c01284{left:496.578440pt;}
.x94_c01284{left:499.509191pt;}
.xcf_c01284{left:500.868756pt;}
.x58_c01284{left:503.082707pt;}
.x3e_c01284{left:504.762380pt;}
.xa0_c01284{left:506.415979pt;}
.x47_c01284{left:514.659372pt;}
.x9d_c01284{left:516.975921pt;}
.x26_c01284{left:517.901661pt;}
.xdc_c01284{left:520.157956pt;}
.x61_c01284{left:522.314593pt;}
.xab_c01284{left:524.744000pt;}
.x27_c01284{left:527.019237pt;}
.xd0_c01284{left:530.663981pt;}
.xca_c01284{left:532.070884pt;}
.xc3_c01284{left:533.145333pt;}
.x3f_c01284{left:534.770699pt;}
.xa_c01284{left:536.202667pt;}
.x8b_c01284{left:538.822127pt;}
.x48_c01284{left:542.939367pt;}
.x34_c01284{left:545.301333pt;}
.x95_c01284{left:549.167856pt;}
.xac_c01284{left:556.364000pt;}
.x28_c01284{left:559.224069pt;}
.xb_c01284{left:562.612000pt;}
.xa1_c01284{left:566.438172pt;}
.x6b_c01284{left:570.369797pt;}
.x49_c01284{left:572.716983pt;}
.x35_c01284{left:574.337333pt;}
.xa6_c01284{left:575.295596pt;}
.x8c_c01284{left:577.954127pt;}
.xd7_c01284{left:579.463611pt;}
.xb9_c01284{left:582.801883pt;}
.x29_c01284{left:587.806131pt;}
.xc_c01284{left:589.249333pt;}
.x6c_c01284{left:591.490949pt;}
.xd_c01284{left:598.858667pt;}
.x62_c01284{left:601.594076pt;}
.x52_c01284{left:603.288492pt;}
.xe_c01284{left:606.233333pt;}
.xdd_c01284{left:607.976393pt;}
.xba_c01284{left:612.264928pt;}
.xad_c01284{left:613.262667pt;}
.xeb_c01284{left:614.291291pt;}
.x85_c01284{left:617.399344pt;}
.x75_c01284{left:618.583105pt;}
.x6d_c01284{left:620.475164pt;}
.x36_c01284{left:623.604000pt;}
.xf_c01284{left:626.221333pt;}
.x63_c01284{left:630.341387pt;}
.x59_c01284{left:631.604059pt;}
.xde_c01284{left:637.766133pt;}
.xd1_c01284{left:640.476593pt;}
.x53_c01284{left:641.656772pt;}
.xae_c01284{left:644.016000pt;}
.x96_c01284{left:647.101187pt;}
.x10_c01284{left:648.318667pt;}
.x76_c01284{left:649.560615pt;}
.x5a_c01284{left:650.743984pt;}
.x4a_c01284{left:652.197328pt;}
.x2a_c01284{left:655.515899pt;}
.xcb_c01284{left:659.081485pt;}
.xc4_c01284{left:660.333333pt;}
.xbb_c01284{left:662.271712pt;}
.x2b_c01284{left:665.365475pt;}
.x8d_c01284{left:666.611460pt;}
.x86_c01284{left:668.214045pt;}
.x64_c01284{left:669.503723pt;}
.x11_c01284{left:670.649333pt;}
.x97_c01284{left:675.627276pt;}
.x2c_c01284{left:676.816453pt;}
.xd2_c01284{left:679.609403pt;}
.x54_c01284{left:680.554493pt;}
.x5b_c01284{left:682.446935pt;}
.x4b_c01284{left:683.411232pt;}
.x12_c01284{left:685.165333pt;}
.x7c_c01284{left:687.452664pt;}
.xcc_c01284{left:690.603184pt;}
.xb5_c01284{left:691.895832pt;}
.x87_c01284{left:697.282837pt;}
.x6e_c01284{left:699.216745pt;}
.xa7_c01284{left:702.807387pt;}
.x13_c01284{left:704.742667pt;}
.x8e_c01284{left:706.644793pt;}
.xdf_c01284{left:708.680899pt;}
.xd3_c01284{left:709.655256pt;}
.x37_c01284{left:713.434667pt;}
.x14_c01284{left:714.345333pt;}
.x7d_c01284{left:718.409492pt;}
.x40_c01284{left:722.554159pt;}
.x2d_c01284{left:724.184368pt;}
.xe3_c01284{left:725.457293pt;}
.x77_c01284{left:727.896532pt;}
.xbd_c01284{left:729.368191pt;}
.xb6_c01284{left:731.305165pt;}
.x8f_c01284{left:735.628793pt;}
.xb2_c01284{left:741.199013pt;}
.x38_c01284{left:742.178667pt;}
.x4c_c01284{left:751.137345pt;}
.xaf_c01284{left:777.089333pt;}
}





/* 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_c01285 {
    display:none;
  }
  .loading-indicator_c01285.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01285 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_c01285 { 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_c01285" -> "#page-container .classname_c01285")
 */
.pf_c01285 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01285 { /* 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_c01285.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01285 { /* 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_c01285 { /* 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_c01285 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01285 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01285 {overflow:visible;}
  }
}
.c_c01285 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01285 { /* 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_c01285:after { /* webkit #35443 */
  content: '';
}
.t_c01285:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01285 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 */
}
.__c01285 { /* 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_c01285 { /* info for Javascript */
  display:none;
}
.l_c01285 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01285 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01285 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01285: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_c01285 {
    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_c01285.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01285.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_c01285 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01285{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01285;src:url('chunks/assets/font_b11a17f404e7258299fdf971.woff2')format("woff");}.ff1_c01285{font-family:ff1_c01285;line-height:1.000000;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;}
.m2f_c01285{transform:matrix(0.019269,-0.000231,0.003000,0.249982,0,0);-ms-transform:matrix(0.019269,-0.000231,0.003000,0.249982,0,0);-webkit-transform:matrix(0.019269,-0.000231,0.003000,0.249982,0,0);}
.m2_c01285{transform:matrix(0.164395,-0.004439,0.006748,0.249909,0,0);-ms-transform:matrix(0.164395,-0.004439,0.006748,0.249909,0,0);-webkit-transform:matrix(0.164395,-0.004439,0.006748,0.249909,0,0);}
.m3_c01285{transform:matrix(0.187947,-0.005075,0.006748,0.249909,0,0);-ms-transform:matrix(0.187947,-0.005075,0.006748,0.249909,0,0);-webkit-transform:matrix(0.187947,-0.005075,0.006748,0.249909,0,0);}
.m4f_c01285{transform:matrix(0.190730,-0.001907,0.002500,0.249988,0,0);-ms-transform:matrix(0.190730,-0.001907,0.002500,0.249988,0,0);-webkit-transform:matrix(0.190730,-0.001907,0.002500,0.249988,0,0);}
.m52_c01285{transform:matrix(0.194930,-0.001949,0.002500,0.249988,0,0);-ms-transform:matrix(0.194930,-0.001949,0.002500,0.249988,0,0);-webkit-transform:matrix(0.194930,-0.001949,0.002500,0.249988,0,0);}
.m31_c01285{transform:matrix(0.199856,-0.002398,0.003000,0.249982,0,0);-ms-transform:matrix(0.199856,-0.002398,0.003000,0.249982,0,0);-webkit-transform:matrix(0.199856,-0.002398,0.003000,0.249982,0,0);}
.m56_c01285{transform:matrix(0.202075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202075,0.000000,0.000000,0.250000,0,0);}
.m1_c01285{transform:matrix(0.204975,-0.005534,0.006748,0.249909,0,0);-ms-transform:matrix(0.204975,-0.005534,0.006748,0.249909,0,0);-webkit-transform:matrix(0.204975,-0.005534,0.006748,0.249909,0,0);}
.m26_c01285{transform:matrix(0.205910,-0.005560,0.006748,0.249909,0,0);-ms-transform:matrix(0.205910,-0.005560,0.006748,0.249909,0,0);-webkit-transform:matrix(0.205910,-0.005560,0.006748,0.249909,0,0);}
.m5_c01285{transform:matrix(0.207140,-0.005593,0.006748,0.249909,0,0);-ms-transform:matrix(0.207140,-0.005593,0.006748,0.249909,0,0);-webkit-transform:matrix(0.207140,-0.005593,0.006748,0.249909,0,0);}
.m9_c01285{transform:matrix(0.207449,-0.005601,0.006748,0.249909,0,0);-ms-transform:matrix(0.207449,-0.005601,0.006748,0.249909,0,0);-webkit-transform:matrix(0.207449,-0.005601,0.006748,0.249909,0,0);}
.m4e_c01285{transform:matrix(0.209480,-0.002095,0.002500,0.249988,0,0);-ms-transform:matrix(0.209480,-0.002095,0.002500,0.249988,0,0);-webkit-transform:matrix(0.209480,-0.002095,0.002500,0.249988,0,0);}
.m1b_c01285{transform:matrix(0.216391,-0.005843,0.006748,0.249909,0,0);-ms-transform:matrix(0.216391,-0.005843,0.006748,0.249909,0,0);-webkit-transform:matrix(0.216391,-0.005843,0.006748,0.249909,0,0);}
.m1e_c01285{transform:matrix(0.219295,-0.005921,0.006748,0.249909,0,0);-ms-transform:matrix(0.219295,-0.005921,0.006748,0.249909,0,0);-webkit-transform:matrix(0.219295,-0.005921,0.006748,0.249909,0,0);}
.m57_c01285{transform:matrix(0.219890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219890,0.000000,0.000000,0.250000,0,0);}
.m22_c01285{transform:matrix(0.224478,-0.006061,0.006748,0.249909,0,0);-ms-transform:matrix(0.224478,-0.006061,0.006748,0.249909,0,0);-webkit-transform:matrix(0.224478,-0.006061,0.006748,0.249909,0,0);}
.m42_c01285{transform:matrix(0.227079,-0.002725,0.003000,0.249982,0,0);-ms-transform:matrix(0.227079,-0.002725,0.003000,0.249982,0,0);-webkit-transform:matrix(0.227079,-0.002725,0.003000,0.249982,0,0);}
.m2d_c01285{transform:matrix(0.228812,-0.006178,0.006748,0.249909,0,0);-ms-transform:matrix(0.228812,-0.006178,0.006748,0.249909,0,0);-webkit-transform:matrix(0.228812,-0.006178,0.006748,0.249909,0,0);}
.m1d_c01285{transform:matrix(0.231766,-0.006258,0.006748,0.249909,0,0);-ms-transform:matrix(0.231766,-0.006258,0.006748,0.249909,0,0);-webkit-transform:matrix(0.231766,-0.006258,0.006748,0.249909,0,0);}
.mb_c01285{transform:matrix(0.232560,-0.006279,0.006748,0.249909,0,0);-ms-transform:matrix(0.232560,-0.006279,0.006748,0.249909,0,0);-webkit-transform:matrix(0.232560,-0.006279,0.006748,0.249909,0,0);}
.ma_c01285{transform:matrix(0.234739,-0.006338,0.006748,0.249909,0,0);-ms-transform:matrix(0.234739,-0.006338,0.006748,0.249909,0,0);-webkit-transform:matrix(0.234739,-0.006338,0.006748,0.249909,0,0);}
.m3b_c01285{transform:matrix(0.234763,-0.002817,0.003000,0.249982,0,0);-ms-transform:matrix(0.234763,-0.002817,0.003000,0.249982,0,0);-webkit-transform:matrix(0.234763,-0.002817,0.003000,0.249982,0,0);}
.m58_c01285{transform:matrix(0.236560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236560,0.000000,0.000000,0.250000,0,0);}
.m1c_c01285{transform:matrix(0.237109,-0.006402,0.006748,0.249909,0,0);-ms-transform:matrix(0.237109,-0.006402,0.006748,0.249909,0,0);-webkit-transform:matrix(0.237109,-0.006402,0.006748,0.249909,0,0);}
.m19_c01285{transform:matrix(0.238833,-0.006448,0.006748,0.249909,0,0);-ms-transform:matrix(0.238833,-0.006448,0.006748,0.249909,0,0);-webkit-transform:matrix(0.238833,-0.006448,0.006748,0.249909,0,0);}
.m4c_c01285{transform:matrix(0.239193,-0.002392,0.002500,0.249988,0,0);-ms-transform:matrix(0.239193,-0.002392,0.002500,0.249988,0,0);-webkit-transform:matrix(0.239193,-0.002392,0.002500,0.249988,0,0);}
.m2e_c01285{transform:matrix(0.239243,-0.006460,0.006748,0.249909,0,0);-ms-transform:matrix(0.239243,-0.006460,0.006748,0.249909,0,0);-webkit-transform:matrix(0.239243,-0.006460,0.006748,0.249909,0,0);}
.m5f_c01285{transform:matrix(0.239605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239605,0.000000,0.000000,0.250000,0,0);}
.me_c01285{transform:matrix(0.239923,-0.006478,0.006748,0.249909,0,0);-ms-transform:matrix(0.239923,-0.006478,0.006748,0.249909,0,0);-webkit-transform:matrix(0.239923,-0.006478,0.006748,0.249909,0,0);}
.m54_c01285{transform:matrix(0.240195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240195,0.000000,0.000000,0.250000,0,0);}
.m17_c01285{transform:matrix(0.243046,-0.006562,0.006748,0.249909,0,0);-ms-transform:matrix(0.243046,-0.006562,0.006748,0.249909,0,0);-webkit-transform:matrix(0.243046,-0.006562,0.006748,0.249909,0,0);}
.md_c01285{transform:matrix(0.244251,-0.006595,0.006748,0.249909,0,0);-ms-transform:matrix(0.244251,-0.006595,0.006748,0.249909,0,0);-webkit-transform:matrix(0.244251,-0.006595,0.006748,0.249909,0,0);}
.m50_c01285{transform:matrix(0.245268,-0.002453,0.002500,0.249988,0,0);-ms-transform:matrix(0.245268,-0.002453,0.002500,0.249988,0,0);-webkit-transform:matrix(0.245268,-0.002453,0.002500,0.249988,0,0);}
.m40_c01285{transform:matrix(0.246137,-0.002954,0.003000,0.249982,0,0);-ms-transform:matrix(0.246137,-0.002954,0.003000,0.249982,0,0);-webkit-transform:matrix(0.246137,-0.002954,0.003000,0.249982,0,0);}
.m2b_c01285{transform:matrix(0.246600,-0.006658,0.006748,0.249909,0,0);-ms-transform:matrix(0.246600,-0.006658,0.006748,0.249909,0,0);-webkit-transform:matrix(0.246600,-0.006658,0.006748,0.249909,0,0);}
.m3c_c01285{transform:matrix(0.249602,-0.002995,0.003000,0.249982,0,0);-ms-transform:matrix(0.249602,-0.002995,0.003000,0.249982,0,0);-webkit-transform:matrix(0.249602,-0.002995,0.003000,0.249982,0,0);}
.m11_c01285{transform:matrix(0.249619,-0.006740,0.006748,0.249909,0,0);-ms-transform:matrix(0.249619,-0.006740,0.006748,0.249909,0,0);-webkit-transform:matrix(0.249619,-0.006740,0.006748,0.249909,0,0);}
.m61_c01285{transform:matrix(0.254785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254785,0.000000,0.000000,0.250000,0,0);}
.m4_c01285{transform:matrix(0.256571,-0.006927,0.006748,0.249909,0,0);-ms-transform:matrix(0.256571,-0.006927,0.006748,0.249909,0,0);-webkit-transform:matrix(0.256571,-0.006927,0.006748,0.249909,0,0);}
.m3a_c01285{transform:matrix(0.257241,-0.003087,0.003000,0.249982,0,0);-ms-transform:matrix(0.257241,-0.003087,0.003000,0.249982,0,0);-webkit-transform:matrix(0.257241,-0.003087,0.003000,0.249982,0,0);}
.m2c_c01285{transform:matrix(0.259350,-0.007002,0.006748,0.249909,0,0);-ms-transform:matrix(0.259350,-0.007002,0.006748,0.249909,0,0);-webkit-transform:matrix(0.259350,-0.007002,0.006748,0.249909,0,0);}
.m5d_c01285{transform:matrix(0.259580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259580,0.000000,0.000000,0.250000,0,0);}
.m12_c01285{transform:matrix(0.260420,-0.007031,0.006748,0.249909,0,0);-ms-transform:matrix(0.260420,-0.007031,0.006748,0.249909,0,0);-webkit-transform:matrix(0.260420,-0.007031,0.006748,0.249909,0,0);}
.m10_c01285{transform:matrix(0.261725,-0.007067,0.006748,0.249909,0,0);-ms-transform:matrix(0.261725,-0.007067,0.006748,0.249909,0,0);-webkit-transform:matrix(0.261725,-0.007067,0.006748,0.249909,0,0);}
.m4d_c01285{transform:matrix(0.263382,-0.002634,0.002500,0.249988,0,0);-ms-transform:matrix(0.263382,-0.002634,0.002500,0.249988,0,0);-webkit-transform:matrix(0.263382,-0.002634,0.002500,0.249988,0,0);}
.m36_c01285{transform:matrix(0.264711,-0.003177,0.003000,0.249982,0,0);-ms-transform:matrix(0.264711,-0.003177,0.003000,0.249982,0,0);-webkit-transform:matrix(0.264711,-0.003177,0.003000,0.249982,0,0);}
.m1a_c01285{transform:matrix(0.266828,-0.007204,0.006748,0.249909,0,0);-ms-transform:matrix(0.266828,-0.007204,0.006748,0.249909,0,0);-webkit-transform:matrix(0.266828,-0.007204,0.006748,0.249909,0,0);}
.m24_c01285{transform:matrix(0.267243,-0.007216,0.006748,0.249909,0,0);-ms-transform:matrix(0.267243,-0.007216,0.006748,0.249909,0,0);-webkit-transform:matrix(0.267243,-0.007216,0.006748,0.249909,0,0);}
.mc_c01285{transform:matrix(0.267562,-0.007224,0.006748,0.249909,0,0);-ms-transform:matrix(0.267562,-0.007224,0.006748,0.249909,0,0);-webkit-transform:matrix(0.267562,-0.007224,0.006748,0.249909,0,0);}
.m1f_c01285{transform:matrix(0.268737,-0.007256,0.006748,0.249909,0,0);-ms-transform:matrix(0.268737,-0.007256,0.006748,0.249909,0,0);-webkit-transform:matrix(0.268737,-0.007256,0.006748,0.249909,0,0);}
.m62_c01285{transform:matrix(0.269685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269685,0.000000,0.000000,0.250000,0,0);}
.m41_c01285{transform:matrix(0.271045,-0.003253,0.003000,0.249982,0,0);-ms-transform:matrix(0.271045,-0.003253,0.003000,0.249982,0,0);-webkit-transform:matrix(0.271045,-0.003253,0.003000,0.249982,0,0);}
.m21_c01285{transform:matrix(0.272506,-0.007358,0.006748,0.249909,0,0);-ms-transform:matrix(0.272506,-0.007358,0.006748,0.249909,0,0);-webkit-transform:matrix(0.272506,-0.007358,0.006748,0.249909,0,0);}
.m5a_c01285{transform:matrix(0.272860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272860,0.000000,0.000000,0.250000,0,0);}
.m23_c01285{transform:matrix(0.274570,-0.007413,0.006748,0.249909,0,0);-ms-transform:matrix(0.274570,-0.007413,0.006748,0.249909,0,0);-webkit-transform:matrix(0.274570,-0.007413,0.006748,0.249909,0,0);}
.m51_c01285{transform:matrix(0.275126,-0.002751,0.002500,0.249988,0,0);-ms-transform:matrix(0.275126,-0.002751,0.002500,0.249988,0,0);-webkit-transform:matrix(0.275126,-0.002751,0.002500,0.249988,0,0);}
.m63_c01285{transform:matrix(0.277575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277575,0.000000,0.000000,0.250000,0,0);}
.m3f_c01285{transform:matrix(0.278320,-0.003340,0.003000,0.249982,0,0);-ms-transform:matrix(0.278320,-0.003340,0.003000,0.249982,0,0);-webkit-transform:matrix(0.278320,-0.003340,0.003000,0.249982,0,0);}
.m2a_c01285{transform:matrix(0.279003,-0.007533,0.006748,0.249909,0,0);-ms-transform:matrix(0.279003,-0.007533,0.006748,0.249909,0,0);-webkit-transform:matrix(0.279003,-0.007533,0.006748,0.249909,0,0);}
.m29_c01285{transform:matrix(0.280913,-0.007585,0.006748,0.249909,0,0);-ms-transform:matrix(0.280913,-0.007585,0.006748,0.249909,0,0);-webkit-transform:matrix(0.280913,-0.007585,0.006748,0.249909,0,0);}
.m59_c01285{transform:matrix(0.282240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282240,0.000000,0.000000,0.250000,0,0);}
.m4b_c01285{transform:matrix(0.282246,-0.002822,0.002500,0.249988,0,0);-ms-transform:matrix(0.282246,-0.002822,0.002500,0.249988,0,0);-webkit-transform:matrix(0.282246,-0.002822,0.002500,0.249988,0,0);}
.m53_c01285{transform:matrix(0.285650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285650,0.000000,0.000000,0.250000,0,0);}
.m28_c01285{transform:matrix(0.290854,-0.007853,0.006748,0.249909,0,0);-ms-transform:matrix(0.290854,-0.007853,0.006748,0.249909,0,0);-webkit-transform:matrix(0.290854,-0.007853,0.006748,0.249909,0,0);}
.m27_c01285{transform:matrix(0.294833,-0.007960,0.006748,0.249909,0,0);-ms-transform:matrix(0.294833,-0.007960,0.006748,0.249909,0,0);-webkit-transform:matrix(0.294833,-0.007960,0.006748,0.249909,0,0);}
.m3d_c01285{transform:matrix(0.297239,-0.003567,0.003000,0.249982,0,0);-ms-transform:matrix(0.297239,-0.003567,0.003000,0.249982,0,0);-webkit-transform:matrix(0.297239,-0.003567,0.003000,0.249982,0,0);}
.mf_c01285{transform:matrix(0.298406,-0.008057,0.006748,0.249909,0,0);-ms-transform:matrix(0.298406,-0.008057,0.006748,0.249909,0,0);-webkit-transform:matrix(0.298406,-0.008057,0.006748,0.249909,0,0);}
.m6_c01285{transform:matrix(0.301770,-0.008148,0.006748,0.249909,0,0);-ms-transform:matrix(0.301770,-0.008148,0.006748,0.249909,0,0);-webkit-transform:matrix(0.301770,-0.008148,0.006748,0.249909,0,0);}
.m4a_c01285{transform:matrix(0.302205,-0.003022,0.002500,0.249988,0,0);-ms-transform:matrix(0.302205,-0.003022,0.002500,0.249988,0,0);-webkit-transform:matrix(0.302205,-0.003022,0.002500,0.249988,0,0);}
.m5e_c01285{transform:matrix(0.304075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304075,0.000000,0.000000,0.250000,0,0);}
.m5b_c01285{transform:matrix(0.308690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308690,0.000000,0.000000,0.250000,0,0);}
.m15_c01285{transform:matrix(0.310787,-0.008391,0.006748,0.249909,0,0);-ms-transform:matrix(0.310787,-0.008391,0.006748,0.249909,0,0);-webkit-transform:matrix(0.310787,-0.008391,0.006748,0.249909,0,0);}
.m43_c01285{transform:matrix(0.311213,-0.003735,0.003000,0.249982,0,0);-ms-transform:matrix(0.311213,-0.003735,0.003000,0.249982,0,0);-webkit-transform:matrix(0.311213,-0.003735,0.003000,0.249982,0,0);}
.m60_c01285{transform:matrix(0.311540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311540,0.000000,0.000000,0.250000,0,0);}
.m13_c01285{transform:matrix(0.318439,-0.008598,0.006748,0.249909,0,0);-ms-transform:matrix(0.318439,-0.008598,0.006748,0.249909,0,0);-webkit-transform:matrix(0.318439,-0.008598,0.006748,0.249909,0,0);}
.m25_c01285{transform:matrix(0.319009,-0.008613,0.006748,0.249909,0,0);-ms-transform:matrix(0.319009,-0.008613,0.006748,0.249909,0,0);-webkit-transform:matrix(0.319009,-0.008613,0.006748,0.249909,0,0);}
.m5c_c01285{transform:matrix(0.322130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322130,0.000000,0.000000,0.250000,0,0);}
.m55_c01285{transform:matrix(0.326705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326705,0.000000,0.000000,0.250000,0,0);}
.m7_c01285{transform:matrix(0.326721,-0.008821,0.006748,0.249909,0,0);-ms-transform:matrix(0.326721,-0.008821,0.006748,0.249909,0,0);-webkit-transform:matrix(0.326721,-0.008821,0.006748,0.249909,0,0);}
.m49_c01285{transform:matrix(0.328639,-0.003286,0.002500,0.249988,0,0);-ms-transform:matrix(0.328639,-0.003286,0.002500,0.249988,0,0);-webkit-transform:matrix(0.328639,-0.003286,0.002500,0.249988,0,0);}
.m65_c01285{transform:matrix(0.329280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329280,0.000000,0.000000,0.250000,0,0);}
.m68_c01285{transform:matrix(0.334160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334160,0.000000,0.000000,0.250000,0,0);}
.m69_c01285{transform:matrix(0.339270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339270,0.000000,0.000000,0.250000,0,0);}
.m3e_c01285{transform:matrix(0.352610,-0.004231,0.003000,0.249982,0,0);-ms-transform:matrix(0.352610,-0.004231,0.003000,0.249982,0,0);-webkit-transform:matrix(0.352610,-0.004231,0.003000,0.249982,0,0);}
.m30_c01285{transform:matrix(0.366629,-0.004400,0.003000,0.249982,0,0);-ms-transform:matrix(0.366629,-0.004400,0.003000,0.249982,0,0);-webkit-transform:matrix(0.366629,-0.004400,0.003000,0.249982,0,0);}
.m67_c01285{transform:matrix(0.388930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388930,0.000000,0.000000,0.250000,0,0);}
.m39_c01285{transform:matrix(0.391017,-0.004692,0.003000,0.249982,0,0);-ms-transform:matrix(0.391017,-0.004692,0.003000,0.249982,0,0);-webkit-transform:matrix(0.391017,-0.004692,0.003000,0.249982,0,0);}
.m64_c01285{transform:matrix(0.395230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395230,0.000000,0.000000,0.250000,0,0);}
.m20_c01285{transform:matrix(0.405177,-0.010940,0.006748,0.249909,0,0);-ms-transform:matrix(0.405177,-0.010940,0.006748,0.249909,0,0);-webkit-transform:matrix(0.405177,-0.010940,0.006748,0.249909,0,0);}
.m38_c01285{transform:matrix(0.451997,-0.005424,0.003000,0.249982,0,0);-ms-transform:matrix(0.451997,-0.005424,0.003000,0.249982,0,0);-webkit-transform:matrix(0.451997,-0.005424,0.003000,0.249982,0,0);}
.m16_c01285{transform:matrix(0.480080,-0.012962,0.006748,0.249909,0,0);-ms-transform:matrix(0.480080,-0.012962,0.006748,0.249909,0,0);-webkit-transform:matrix(0.480080,-0.012962,0.006748,0.249909,0,0);}
.m0_c01285{transform:matrix(0.530382,-0.014320,0.006748,0.249909,0,0);-ms-transform:matrix(0.530382,-0.014320,0.006748,0.249909,0,0);-webkit-transform:matrix(0.530382,-0.014320,0.006748,0.249909,0,0);}
.m35_c01285{transform:matrix(0.555570,-0.006667,0.003000,0.249982,0,0);-ms-transform:matrix(0.555570,-0.006667,0.003000,0.249982,0,0);-webkit-transform:matrix(0.555570,-0.006667,0.003000,0.249982,0,0);}
.m44_c01285{transform:matrix(0.574419,-0.006893,0.003000,0.249982,0,0);-ms-transform:matrix(0.574419,-0.006893,0.003000,0.249982,0,0);-webkit-transform:matrix(0.574419,-0.006893,0.003000,0.249982,0,0);}
.m66_c01285{transform:matrix(0.612700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612700,0.000000,0.000000,0.250000,0,0);}
.m33_c01285{transform:matrix(0.703174,-0.008438,0.003000,0.249982,0,0);-ms-transform:matrix(0.703174,-0.008438,0.003000,0.249982,0,0);-webkit-transform:matrix(0.703174,-0.008438,0.003000,0.249982,0,0);}
.m48_c01285{transform:matrix(0.733508,-0.007335,0.002500,0.249988,0,0);-ms-transform:matrix(0.733508,-0.007335,0.002500,0.249988,0,0);-webkit-transform:matrix(0.733508,-0.007335,0.002500,0.249988,0,0);}
.m8_c01285{transform:matrix(0.781175,-0.021092,0.006748,0.249909,0,0);-ms-transform:matrix(0.781175,-0.021092,0.006748,0.249909,0,0);-webkit-transform:matrix(0.781175,-0.021092,0.006748,0.249909,0,0);}
.m45_c01285{transform:matrix(0.783264,-0.009399,0.003000,0.249982,0,0);-ms-transform:matrix(0.783264,-0.009399,0.003000,0.249982,0,0);-webkit-transform:matrix(0.783264,-0.009399,0.003000,0.249982,0,0);}
.m14_c01285{transform:matrix(0.806596,-0.021778,0.006748,0.249909,0,0);-ms-transform:matrix(0.806596,-0.021778,0.006748,0.249909,0,0);-webkit-transform:matrix(0.806596,-0.021778,0.006748,0.249909,0,0);}
.m32_c01285{transform:matrix(0.813326,-0.009760,0.003000,0.249982,0,0);-ms-transform:matrix(0.813326,-0.009760,0.003000,0.249982,0,0);-webkit-transform:matrix(0.813326,-0.009760,0.003000,0.249982,0,0);}
.m34_c01285{transform:matrix(0.835975,-0.010032,0.003000,0.249982,0,0);-ms-transform:matrix(0.835975,-0.010032,0.003000,0.249982,0,0);-webkit-transform:matrix(0.835975,-0.010032,0.003000,0.249982,0,0);}
.m18_c01285{transform:matrix(0.836025,-0.022573,0.006748,0.249909,0,0);-ms-transform:matrix(0.836025,-0.022573,0.006748,0.249909,0,0);-webkit-transform:matrix(0.836025,-0.022573,0.006748,0.249909,0,0);}
.m37_c01285{transform:matrix(1.270264,-0.015243,0.003000,0.249982,0,0);-ms-transform:matrix(1.270264,-0.015243,0.003000,0.249982,0,0);-webkit-transform:matrix(1.270264,-0.015243,0.003000,0.249982,0,0);}
.m47_c01285{transform:matrix(1.433418,-0.014334,0.002500,0.249988,0,0);-ms-transform:matrix(1.433418,-0.014334,0.002500,0.249988,0,0);-webkit-transform:matrix(1.433418,-0.014334,0.002500,0.249988,0,0);}
.m46_c01285{transform:matrix(1.812979,-0.018130,0.002500,0.249988,0,0);-ms-transform:matrix(1.812979,-0.018130,0.002500,0.249988,0,0);-webkit-transform:matrix(1.812979,-0.018130,0.002500,0.249988,0,0);}
.v0_c01285{vertical-align:0.000000px;}
.ls0_c01285{letter-spacing:0.000000px;}
.sc__c01285{text-shadow:none;}
.sc0_c01285{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__c01285{-webkit-text-stroke:0px transparent;}
.sc0_c01285{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01285{word-spacing:0.000000px;}
.fc0_c01285{color:transparent;}
.fs5_c01285{font-size:66.003300px;}
.fs8_c01285{font-size:78.000000px;}
.fs4_c01285{font-size:78.005616px;}
.fs1_c01285{font-size:78.028426px;}
.fs7_c01285{font-size:84.000000px;}
.fs6_c01285{font-size:84.004200px;}
.fs2_c01285{font-size:84.030612px;}
.fs0_c01285{font-size:96.034986px;}
.fs3_c01285{font-size:102.007344px;}
.y0_c01285{bottom:0.000000px;}
.y56_c01285{bottom:220.713000px;}
.y55_c01285{bottom:257.350500px;}
.y54_c01285{bottom:291.108000px;}
.y4c_c01285{bottom:320.224065px;}
.y4d_c01285{bottom:321.480225px;}
.y4e_c01285{bottom:322.124955px;}
.y4f_c01285{bottom:323.085135px;}
.y50_c01285{bottom:323.813550px;}
.y51_c01285{bottom:325.390770px;}
.y52_c01285{bottom:327.319890px;}
.y53_c01285{bottom:329.444505px;}
.y47_c01285{bottom:359.355000px;}
.y48_c01285{bottom:360.994515px;}
.y49_c01285{bottom:362.029590px;}
.y4a_c01285{bottom:364.179525px;}
.y4b_c01285{bottom:364.552950px;}
.y45_c01285{bottom:435.474576px;}
.y46_c01285{bottom:435.474642px;}
.y44_c01285{bottom:435.475110px;}
.y41_c01285{bottom:435.475356px;}
.y40_c01285{bottom:435.475446px;}
.y42_c01285{bottom:435.475560px;}
.y43_c01285{bottom:435.475788px;}
.y38_c01285{bottom:466.830432px;}
.y39_c01285{bottom:468.588924px;}
.y3a_c01285{bottom:468.990036px;}
.y3b_c01285{bottom:469.403886px;}
.y3c_c01285{bottom:470.487768px;}
.y3d_c01285{bottom:470.944188px;}
.y3e_c01285{bottom:471.592626px;}
.y3f_c01285{bottom:472.454478px;}
.y30_c01285{bottom:501.118500px;}
.y31_c01285{bottom:501.356622px;}
.y32_c01285{bottom:501.638412px;}
.y33_c01285{bottom:502.785696px;}
.y34_c01285{bottom:504.214230px;}
.y35_c01285{bottom:505.140798px;}
.y36_c01285{bottom:506.815878px;}
.y37_c01285{bottom:508.198998px;}
.y28_c01285{bottom:639.544469px;}
.y29_c01285{bottom:643.217595px;}
.y2a_c01285{bottom:644.676306px;}
.y2b_c01285{bottom:647.263673px;}
.y2c_c01285{bottom:647.974577px;}
.y2d_c01285{bottom:650.053739px;}
.y2e_c01285{bottom:653.509706px;}
.y2f_c01285{bottom:655.729064px;}
.y21_c01285{bottom:681.795359px;}
.y22_c01285{bottom:682.566591px;}
.y23_c01285{bottom:684.262181px;}
.y24_c01285{bottom:684.835163px;}
.y25_c01285{bottom:686.134328px;}
.y26_c01285{bottom:686.979996px;}
.y27_c01285{bottom:688.057674px;}
.y15_c01285{bottom:705.864530px;}
.y16_c01285{bottom:707.523693px;}
.y17_c01285{bottom:708.289062px;}
.y18_c01285{bottom:710.514051px;}
.y19_c01285{bottom:711.448589px;}
.y1a_c01285{bottom:714.427728px;}
.y1b_c01285{bottom:715.632887px;}
.y1c_c01285{bottom:717.441333px;}
.y1d_c01285{bottom:718.311881px;}
.y1e_c01285{bottom:720.173301px;}
.y1f_c01285{bottom:721.913991px;}
.y20_c01285{bottom:722.467626px;}
.yc_c01285{bottom:744.118508px;}
.yd_c01285{bottom:745.038675px;}
.ye_c01285{bottom:748.493819px;}
.yf_c01285{bottom:749.385477px;}
.y10_c01285{bottom:751.210950px;}
.y11_c01285{bottom:752.729903px;}
.y12_c01285{bottom:753.813110px;}
.y13_c01285{bottom:754.372613px;}
.y14_c01285{bottom:756.350759px;}
.y1_c01285{bottom:778.005000px;}
.y2_c01285{bottom:779.923931px;}
.y3_c01285{bottom:782.350407px;}
.y4_c01285{bottom:783.254448px;}
.y5_c01285{bottom:783.814361px;}
.y6_c01285{bottom:786.493355px;}
.y7_c01285{bottom:787.774532px;}
.y8_c01285{bottom:789.357434px;}
.y9_c01285{bottom:789.714887px;}
.ya_c01285{bottom:791.446707px;}
.yb_c01285{bottom:793.003244px;}
.h7_c01285{height:66.003300px;}
.ha_c01285{height:78.000000px;}
.h6_c01285{height:78.005616px;}
.h3_c01285{height:78.028426px;}
.h9_c01285{height:84.000000px;}
.h8_c01285{height:84.004200px;}
.h4_c01285{height:84.030612px;}
.h2_c01285{height:96.034986px;}
.h5_c01285{height:102.007344px;}
.h1_c01285{height:1250.250000px;}
.h0_c01285{height:1250.370000px;}
.w1_c01285{width:912.000000px;}
.w0_c01285{width:912.300000px;}
.x0_c01285{left:0.000000px;}
.x15_c01285{left:48.136385px;}
.x1_c01285{left:59.790000px;}
.x45_c01285{left:99.841500px;}
.x2e_c01285{left:105.973500px;}
.x16_c01285{left:109.586885px;}
.x36_c01285{left:115.797312px;}
.x2f_c01285{left:125.817000px;}
.x4a_c01285{left:128.542140px;}
.x2_c01285{left:130.861500px;}
.x17_c01285{left:137.933885px;}
.x30_c01285{left:149.299500px;}
.x26_c01285{left:156.261488px;}
.xc_c01285{left:186.519087px;}
.x4b_c01285{left:207.053430px;}
.x3_c01285{left:220.731000px;}
.xd_c01285{left:223.323572px;}
.x31_c01285{left:244.906500px;}
.x4c_c01285{left:247.374015px;}
.x4_c01285{left:254.214000px;}
.x46_c01285{left:263.793000px;}
.x27_c01285{left:267.562965px;}
.x57_c01285{left:268.650000px;}
.x5_c01285{left:274.951500px;}
.x37_c01285{left:291.592524px;}
.x3e_c01285{left:304.035120px;}
.x4d_c01285{left:307.388415px;}
.x5f_c01285{left:308.880000px;}
.x28_c01285{left:311.748797px;}
.x58_c01285{left:321.030000px;}
.x38_c01285{left:331.769496px;}
.x4e_c01285{left:352.927185px;}
.x1f_c01285{left:355.336565px;}
.xe_c01285{left:361.521523px;}
.x32_c01285{left:363.951000px;}
.x18_c01285{left:365.291884px;}
.x47_c01285{left:367.300500px;}
.x39_c01285{left:373.132986px;}
.x6_c01285{left:374.173500px;}
.x29_c01285{left:390.175620px;}
.xf_c01285{left:397.158927px;}
.x20_c01285{left:400.746336px;}
.x3f_c01285{left:405.292200px;}
.x19_c01285{left:409.927385px;}
.x2a_c01285{left:411.724137px;}
.x60_c01285{left:413.100000px;}
.x7_c01285{left:421.624500px;}
.x59_c01285{left:431.190000px;}
.x40_c01285{left:439.314096px;}
.x33_c01285{left:441.165000px;}
.x4f_c01285{left:451.543275px;}
.x52_c01285{left:455.760000px;}
.x5a_c01285{left:462.780000px;}
.x10_c01285{left:470.161856px;}
.x2b_c01285{left:474.719931px;}
.x1a_c01285{left:476.906885px;}
.x8_c01285{left:480.250500px;}
.x3a_c01285{left:481.584096px;}
.x53_c01285{left:485.190000px;}
.x9_c01285{left:493.489500px;}
.x21_c01285{left:500.461728px;}
.x5b_c01285{left:506.790000px;}
.x1b_c01285{left:509.149384px;}
.x54_c01285{left:517.860000px;}
.x41_c01285{left:525.720534px;}
.x3b_c01285{left:527.245194px;}
.x11_c01285{left:530.922636px;}
.x22_c01285{left:534.136800px;}
.x5c_c01285{left:541.350000px;}
.x55_c01285{left:544.320000px;}
.x42_c01285{left:550.292580px;}
.xa_c01285{left:557.631000px;}
.x50_c01285{left:572.148045px;}
.x12_c01285{left:574.265985px;}
.x1c_c01285{left:578.090885px;}
.x2c_c01285{left:579.423962px;}
.x34_c01285{left:580.755000px;}
.x48_c01285{left:582.294000px;}
.x3c_c01285{left:592.033242px;}
.x13_c01285{left:596.656200px;}
.x23_c01285{left:610.552415px;}
.xb_c01285{left:615.280500px;}
.x43_c01285{left:617.257728px;}
.x49_c01285{left:619.636500px;}
.x61_c01285{left:621.270000px;}
.x5d_c01285{left:629.640000px;}
.x1d_c01285{left:642.560885px;}
.x2d_c01285{left:646.667067px;}
.x24_c01285{left:660.331361px;}
.x1e_c01285{left:663.065885px;}
.x14_c01285{left:675.758452px;}
.x3d_c01285{left:678.231312px;}
.x44_c01285{left:681.522480px;}
.x35_c01285{left:696.015000px;}
.x56_c01285{left:697.410000px;}
.x51_c01285{left:704.951580px;}
.x5e_c01285{left:706.050000px;}
.x25_c01285{left:723.762492px;}
@media print{
.v0_c01285{vertical-align:0.000000pt;}
.ls0_c01285{letter-spacing:0.000000pt;}
.ws0_c01285{word-spacing:0.000000pt;}
.fs5_c01285{font-size:58.669600pt;}
.fs8_c01285{font-size:69.333333pt;}
.fs4_c01285{font-size:69.338325pt;}
.fs1_c01285{font-size:69.358601pt;}
.fs7_c01285{font-size:74.666667pt;}
.fs6_c01285{font-size:74.670400pt;}
.fs2_c01285{font-size:74.693878pt;}
.fs0_c01285{font-size:85.364432pt;}
.fs3_c01285{font-size:90.673194pt;}
.y0_c01285{bottom:0.000000pt;}
.y56_c01285{bottom:196.189333pt;}
.y55_c01285{bottom:228.756000pt;}
.y54_c01285{bottom:258.762667pt;}
.y4c_c01285{bottom:284.643613pt;}
.y4d_c01285{bottom:285.760200pt;}
.y4e_c01285{bottom:286.333293pt;}
.y4f_c01285{bottom:287.186787pt;}
.y50_c01285{bottom:287.834267pt;}
.y51_c01285{bottom:289.236240pt;}
.y52_c01285{bottom:290.951013pt;}
.y53_c01285{bottom:292.839560pt;}
.y47_c01285{bottom:319.426667pt;}
.y48_c01285{bottom:320.884013pt;}
.y49_c01285{bottom:321.804080pt;}
.y4a_c01285{bottom:323.715133pt;}
.y4b_c01285{bottom:324.047067pt;}
.y45_c01285{bottom:387.088512pt;}
.y46_c01285{bottom:387.088571pt;}
.y44_c01285{bottom:387.088987pt;}
.y41_c01285{bottom:387.089205pt;}
.y40_c01285{bottom:387.089285pt;}
.y42_c01285{bottom:387.089387pt;}
.y43_c01285{bottom:387.089589pt;}
.y38_c01285{bottom:414.960384pt;}
.y39_c01285{bottom:416.523488pt;}
.y3a_c01285{bottom:416.880032pt;}
.y3b_c01285{bottom:417.247899pt;}
.y3c_c01285{bottom:418.211349pt;}
.y3d_c01285{bottom:418.617056pt;}
.y3e_c01285{bottom:419.193445pt;}
.y3f_c01285{bottom:419.959536pt;}
.y30_c01285{bottom:445.438667pt;}
.y31_c01285{bottom:445.650331pt;}
.y32_c01285{bottom:445.900811pt;}
.y33_c01285{bottom:446.920619pt;}
.y34_c01285{bottom:448.190427pt;}
.y35_c01285{bottom:449.014043pt;}
.y36_c01285{bottom:450.503003pt;}
.y37_c01285{bottom:451.732443pt;}
.y28_c01285{bottom:568.483972pt;}
.y29_c01285{bottom:571.748973pt;}
.y2a_c01285{bottom:573.045605pt;}
.y2b_c01285{bottom:575.345487pt;}
.y2c_c01285{bottom:575.977401pt;}
.y2d_c01285{bottom:577.825545pt;}
.y2e_c01285{bottom:580.897516pt;}
.y2f_c01285{bottom:582.870279pt;}
.y21_c01285{bottom:606.040319pt;}
.y22_c01285{bottom:606.725859pt;}
.y23_c01285{bottom:608.233049pt;}
.y24_c01285{bottom:608.742367pt;}
.y25_c01285{bottom:609.897180pt;}
.y26_c01285{bottom:610.648885pt;}
.y27_c01285{bottom:611.606821pt;}
.y15_c01285{bottom:627.435137pt;}
.y16_c01285{bottom:628.909949pt;}
.y17_c01285{bottom:629.590277pt;}
.y18_c01285{bottom:631.568045pt;}
.y19_c01285{bottom:632.398745pt;}
.y1a_c01285{bottom:635.046869pt;}
.y1b_c01285{bottom:636.118121pt;}
.y1c_c01285{bottom:637.725629pt;}
.y1d_c01285{bottom:638.499449pt;}
.y1e_c01285{bottom:640.154045pt;}
.y1f_c01285{bottom:641.701325pt;}
.y20_c01285{bottom:642.193445pt;}
.yc_c01285{bottom:661.438673pt;}
.yd_c01285{bottom:662.256600pt;}
.ye_c01285{bottom:665.327839pt;}
.yf_c01285{bottom:666.120424pt;}
.y10_c01285{bottom:667.743067pt;}
.y11_c01285{bottom:669.093247pt;}
.y12_c01285{bottom:670.056097pt;}
.y13_c01285{bottom:670.553433pt;}
.y14_c01285{bottom:672.311785pt;}
.y1_c01285{bottom:691.560000pt;}
.y2_c01285{bottom:693.265716pt;}
.y3_c01285{bottom:695.422584pt;}
.y4_c01285{bottom:696.226176pt;}
.y5_c01285{bottom:696.723876pt;}
.y6_c01285{bottom:699.105204pt;}
.y7_c01285{bottom:700.244028pt;}
.y8_c01285{bottom:701.651052pt;}
.y9_c01285{bottom:701.968788pt;}
.ya_c01285{bottom:703.508184pt;}
.yb_c01285{bottom:704.891772pt;}
.h7_c01285{height:58.669600pt;}
.ha_c01285{height:69.333333pt;}
.h6_c01285{height:69.338325pt;}
.h3_c01285{height:69.358601pt;}
.h9_c01285{height:74.666667pt;}
.h8_c01285{height:74.670400pt;}
.h4_c01285{height:74.693878pt;}
.h2_c01285{height:85.364432pt;}
.h5_c01285{height:90.673194pt;}
.h1_c01285{height:1111.333333pt;}
.h0_c01285{height:1111.440000pt;}
.w1_c01285{width:810.666667pt;}
.w0_c01285{width:810.933333pt;}
.x0_c01285{left:0.000000pt;}
.x15_c01285{left:42.787897pt;}
.x1_c01285{left:53.146667pt;}
.x45_c01285{left:88.748000pt;}
.x2e_c01285{left:94.198667pt;}
.x16_c01285{left:97.410564pt;}
.x36_c01285{left:102.930944pt;}
.x2f_c01285{left:111.837333pt;}
.x4a_c01285{left:114.259680pt;}
.x2_c01285{left:116.321333pt;}
.x17_c01285{left:122.607897pt;}
.x30_c01285{left:132.710667pt;}
.x26_c01285{left:138.899100pt;}
.xc_c01285{left:165.794744pt;}
.x4b_c01285{left:184.047493pt;}
.x3_c01285{left:196.205333pt;}
.xd_c01285{left:198.509841pt;}
.x31_c01285{left:217.694667pt;}
.x4c_c01285{left:219.888013pt;}
.x4_c01285{left:225.968000pt;}
.x46_c01285{left:234.482667pt;}
.x27_c01285{left:237.833747pt;}
.x57_c01285{left:238.800000pt;}
.x5_c01285{left:244.401333pt;}
.x37_c01285{left:259.193355pt;}
.x3e_c01285{left:270.253440pt;}
.x4d_c01285{left:273.234147pt;}
.x5f_c01285{left:274.560000pt;}
.x28_c01285{left:277.110041pt;}
.x58_c01285{left:285.360000pt;}
.x38_c01285{left:294.906219pt;}
.x4e_c01285{left:313.713053pt;}
.x1f_c01285{left:315.854724pt;}
.xe_c01285{left:321.352465pt;}
.x32_c01285{left:323.512000pt;}
.x18_c01285{left:324.703897pt;}
.x47_c01285{left:326.489333pt;}
.x39_c01285{left:331.673765pt;}
.x6_c01285{left:332.598667pt;}
.x29_c01285{left:346.822773pt;}
.xf_c01285{left:353.030157pt;}
.x20_c01285{left:356.218965pt;}
.x3f_c01285{left:360.259733pt;}
.x19_c01285{left:364.379897pt;}
.x2a_c01285{left:365.977011pt;}
.x60_c01285{left:367.200000pt;}
.x7_c01285{left:374.777333pt;}
.x59_c01285{left:383.280000pt;}
.x40_c01285{left:390.501419pt;}
.x33_c01285{left:392.146667pt;}
.x4f_c01285{left:401.371800pt;}
.x52_c01285{left:405.120000pt;}
.x5a_c01285{left:411.360000pt;}
.x10_c01285{left:417.921649pt;}
.x2b_c01285{left:421.973272pt;}
.x1a_c01285{left:423.917231pt;}
.x8_c01285{left:426.889333pt;}
.x3a_c01285{left:428.074752pt;}
.x53_c01285{left:431.280000pt;}
.x9_c01285{left:438.657333pt;}
.x21_c01285{left:444.854869pt;}
.x5b_c01285{left:450.480000pt;}
.x1b_c01285{left:452.577231pt;}
.x54_c01285{left:460.320000pt;}
.x41_c01285{left:467.307141pt;}
.x3b_c01285{left:468.662395pt;}
.x11_c01285{left:471.931232pt;}
.x22_c01285{left:474.788267pt;}
.x5c_c01285{left:481.200000pt;}
.x55_c01285{left:483.840000pt;}
.x42_c01285{left:489.148960pt;}
.xa_c01285{left:495.672000pt;}
.x50_c01285{left:508.576040pt;}
.x12_c01285{left:510.458653pt;}
.x1c_c01285{left:513.858564pt;}
.x2c_c01285{left:515.043521pt;}
.x34_c01285{left:516.226667pt;}
.x48_c01285{left:517.594667pt;}
.x3c_c01285{left:526.251771pt;}
.x13_c01285{left:530.361067pt;}
.x23_c01285{left:542.713257pt;}
.xb_c01285{left:546.916000pt;}
.x43_c01285{left:548.673536pt;}
.x49_c01285{left:550.788000pt;}
.x61_c01285{left:552.240000pt;}
.x5d_c01285{left:559.680000pt;}
.x1d_c01285{left:571.165231pt;}
.x2d_c01285{left:574.815171pt;}
.x24_c01285{left:586.961209pt;}
.x1e_c01285{left:589.391897pt;}
.x14_c01285{left:600.674180pt;}
.x3d_c01285{left:602.872277pt;}
.x44_c01285{left:605.797760pt;}
.x35_c01285{left:618.680000pt;}
.x56_c01285{left:619.920000pt;}
.x51_c01285{left:626.623627pt;}
.x5e_c01285{left:627.600000pt;}
.x25_c01285{left:643.344437pt;}
}





/* 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_c01286 {
    display:none;
  }
  .loading-indicator_c01286.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01286 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_c01286 { 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_c01286" -> "#page-container .classname_c01286")
 */
.pf_c01286 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01286 { /* 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_c01286.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01286 { /* 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_c01286 { /* 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_c01286 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01286 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01286 {overflow:visible;}
  }
}
.c_c01286 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01286 { /* 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_c01286:after { /* webkit #35443 */
  content: '';
}
.t_c01286:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01286 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 */
}
.__c01286 { /* 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_c01286 { /* info for Javascript */
  display:none;
}
.l_c01286 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01286 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01286 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01286: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_c01286 {
    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_c01286.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01286.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_c01286 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01286{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01286;src:url('chunks/assets/font_b11a17f404e7258299fdf971.woff2')format("woff");}.ff1_c01286{font-family:ff1_c01286;line-height:1.000000;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;}
.m7_c01286{transform:matrix(0.028459,-0.000199,0.001750,0.249994,0,0);-ms-transform:matrix(0.028459,-0.000199,0.001750,0.249994,0,0);-webkit-transform:matrix(0.028459,-0.000199,0.001750,0.249994,0,0);}
.m1e_c01286{transform:matrix(0.131693,0.002107,-0.003999,0.249968,0,0);-ms-transform:matrix(0.131693,0.002107,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.131693,0.002107,-0.003999,0.249968,0,0);}
.m18_c01286{transform:matrix(0.132378,0.002118,-0.003999,0.249968,0,0);-ms-transform:matrix(0.132378,0.002118,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.132378,0.002118,-0.003999,0.249968,0,0);}
.m17_c01286{transform:matrix(0.137182,0.002195,-0.003999,0.249968,0,0);-ms-transform:matrix(0.137182,0.002195,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.137182,0.002195,-0.003999,0.249968,0,0);}
.m1a_c01286{transform:matrix(0.139147,0.002226,-0.003999,0.249968,0,0);-ms-transform:matrix(0.139147,0.002226,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.139147,0.002226,-0.003999,0.249968,0,0);}
.m1b_c01286{transform:matrix(0.151586,0.002425,-0.003999,0.249968,0,0);-ms-transform:matrix(0.151586,0.002425,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.151586,0.002425,-0.003999,0.249968,0,0);}
.m1d_c01286{transform:matrix(0.153300,0.002453,-0.003999,0.249968,0,0);-ms-transform:matrix(0.153300,0.002453,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.153300,0.002453,-0.003999,0.249968,0,0);}
.m1c_c01286{transform:matrix(0.155325,0.002485,-0.003999,0.249968,0,0);-ms-transform:matrix(0.155325,0.002485,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.155325,0.002485,-0.003999,0.249968,0,0);}
.m1f_c01286{transform:matrix(0.156685,0.002507,-0.003999,0.249968,0,0);-ms-transform:matrix(0.156685,0.002507,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.156685,0.002507,-0.003999,0.249968,0,0);}
.m16_c01286{transform:matrix(0.158345,0.002534,-0.003999,0.249968,0,0);-ms-transform:matrix(0.158345,0.002534,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.158345,0.002534,-0.003999,0.249968,0,0);}
.m20_c01286{transform:matrix(0.160000,0.002560,-0.003999,0.249968,0,0);-ms-transform:matrix(0.160000,0.002560,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.160000,0.002560,-0.003999,0.249968,0,0);}
.m19_c01286{transform:matrix(0.161129,0.002578,-0.003999,0.249968,0,0);-ms-transform:matrix(0.161129,0.002578,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.161129,0.002578,-0.003999,0.249968,0,0);}
.m2c_c01286{transform:matrix(0.181972,0.002912,-0.003999,0.249968,0,0);-ms-transform:matrix(0.181972,0.002912,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.181972,0.002912,-0.003999,0.249968,0,0);}
.mcd_c01286{transform:matrix(0.192617,0.003274,-0.004249,0.249964,0,0);-ms-transform:matrix(0.192617,0.003274,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.192617,0.003274,-0.004249,0.249964,0,0);}
.m139_c01286{transform:matrix(0.193449,0.004643,-0.005998,0.249928,0,0);-ms-transform:matrix(0.193449,0.004643,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.193449,0.004643,-0.005998,0.249928,0,0);}
.mf2_c01286{transform:matrix(0.196029,0.004705,-0.005998,0.249928,0,0);-ms-transform:matrix(0.196029,0.004705,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.196029,0.004705,-0.005998,0.249928,0,0);}
.m2f_c01286{transform:matrix(0.199020,0.003184,-0.003999,0.249968,0,0);-ms-transform:matrix(0.199020,0.003184,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.199020,0.003184,-0.003999,0.249968,0,0);}
.m42_c01286{transform:matrix(0.201551,0.004233,-0.005249,0.249945,0,0);-ms-transform:matrix(0.201551,0.004233,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.201551,0.004233,-0.005249,0.249945,0,0);}
.m31_c01286{transform:matrix(0.201984,0.003232,-0.003999,0.249968,0,0);-ms-transform:matrix(0.201984,0.003232,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.201984,0.003232,-0.003999,0.249968,0,0);}
.m111_c01286{transform:matrix(0.202232,0.004854,-0.005998,0.249928,0,0);-ms-transform:matrix(0.202232,0.004854,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.202232,0.004854,-0.005998,0.249928,0,0);}
.m33_c01286{transform:matrix(0.205760,0.004321,-0.005249,0.249945,0,0);-ms-transform:matrix(0.205760,0.004321,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.205760,0.004321,-0.005249,0.249945,0,0);}
.ma8_c01286{transform:matrix(0.206080,0.004534,-0.005499,0.249940,0,0);-ms-transform:matrix(0.206080,0.004534,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.206080,0.004534,-0.005499,0.249940,0,0);}
.m32_c01286{transform:matrix(0.206854,0.003310,-0.003999,0.249968,0,0);-ms-transform:matrix(0.206854,0.003310,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.206854,0.003310,-0.003999,0.249968,0,0);}
.md6_c01286{transform:matrix(0.206895,0.003517,-0.004249,0.249964,0,0);-ms-transform:matrix(0.206895,0.003517,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.206895,0.003517,-0.004249,0.249964,0,0);}
.m13d_c01286{transform:matrix(0.207400,0.004978,-0.005998,0.249928,0,0);-ms-transform:matrix(0.207400,0.004978,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.207400,0.004978,-0.005998,0.249928,0,0);}
.m34_c01286{transform:matrix(0.208029,0.004369,-0.005249,0.249945,0,0);-ms-transform:matrix(0.208029,0.004369,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.208029,0.004369,-0.005249,0.249945,0,0);}
.me_c01286{transform:matrix(0.208073,0.003329,-0.003999,0.249968,0,0);-ms-transform:matrix(0.208073,0.003329,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.208073,0.003329,-0.003999,0.249968,0,0);}
.m128_c01286{transform:matrix(0.209485,0.005028,-0.005998,0.249928,0,0);-ms-transform:matrix(0.209485,0.005028,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.209485,0.005028,-0.005998,0.249928,0,0);}
.mce_c01286{transform:matrix(0.209850,0.003567,-0.004249,0.249964,0,0);-ms-transform:matrix(0.209850,0.003567,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.209850,0.003567,-0.004249,0.249964,0,0);}
.m8c_c01286{transform:matrix(0.209889,0.004408,-0.005249,0.249945,0,0);-ms-transform:matrix(0.209889,0.004408,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.209889,0.004408,-0.005249,0.249945,0,0);}
.m8f_c01286{transform:matrix(0.210574,0.004422,-0.005249,0.249945,0,0);-ms-transform:matrix(0.210574,0.004422,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.210574,0.004422,-0.005249,0.249945,0,0);}
.m37_c01286{transform:matrix(0.211378,0.004439,-0.005249,0.249945,0,0);-ms-transform:matrix(0.211378,0.004439,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.211378,0.004439,-0.005249,0.249945,0,0);}
.m109_c01286{transform:matrix(0.211569,0.005078,-0.005998,0.249928,0,0);-ms-transform:matrix(0.211569,0.005078,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.211569,0.005078,-0.005998,0.249928,0,0);}
.m108_c01286{transform:matrix(0.212509,0.005100,-0.005998,0.249928,0,0);-ms-transform:matrix(0.212509,0.005100,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.212509,0.005100,-0.005998,0.249928,0,0);}
.m65_c01286{transform:matrix(0.212573,0.004464,-0.005249,0.249945,0,0);-ms-transform:matrix(0.212573,0.004464,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.212573,0.004464,-0.005249,0.249945,0,0);}
.m30_c01286{transform:matrix(0.213158,0.003411,-0.003999,0.249968,0,0);-ms-transform:matrix(0.213158,0.003411,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.213158,0.003411,-0.003999,0.249968,0,0);}
.mf8_c01286{transform:matrix(0.213573,0.005126,-0.005998,0.249928,0,0);-ms-transform:matrix(0.213573,0.005126,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.213573,0.005126,-0.005998,0.249928,0,0);}
.md2_c01286{transform:matrix(0.213664,0.003632,-0.004249,0.249964,0,0);-ms-transform:matrix(0.213664,0.003632,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.213664,0.003632,-0.004249,0.249964,0,0);}
.md4_c01286{transform:matrix(0.213854,0.003636,-0.004249,0.249964,0,0);-ms-transform:matrix(0.213854,0.003636,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.213854,0.003636,-0.004249,0.249964,0,0);}
.mab_c01286{transform:matrix(0.214478,0.004719,-0.005499,0.249940,0,0);-ms-transform:matrix(0.214478,0.004719,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.214478,0.004719,-0.005499,0.249940,0,0);}
.mb4_c01286{transform:matrix(0.214503,0.003432,-0.003999,0.249968,0,0);-ms-transform:matrix(0.214503,0.003432,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.214503,0.003432,-0.003999,0.249968,0,0);}
.mb1_c01286{transform:matrix(0.214673,0.003435,-0.003999,0.249968,0,0);-ms-transform:matrix(0.214673,0.003435,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.214673,0.003435,-0.003999,0.249968,0,0);}
.m39_c01286{transform:matrix(0.214828,0.004511,-0.005249,0.249945,0,0);-ms-transform:matrix(0.214828,0.004511,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.214828,0.004511,-0.005249,0.249945,0,0);}
.m95_c01286{transform:matrix(0.215707,0.004530,-0.005249,0.249945,0,0);-ms-transform:matrix(0.215707,0.004530,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.215707,0.004530,-0.005249,0.249945,0,0);}
.m12f_c01286{transform:matrix(0.216933,0.005206,-0.005998,0.249928,0,0);-ms-transform:matrix(0.216933,0.005206,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.216933,0.005206,-0.005998,0.249928,0,0);}
.m12b_c01286{transform:matrix(0.217642,0.005223,-0.005998,0.249928,0,0);-ms-transform:matrix(0.217642,0.005223,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.217642,0.005223,-0.005998,0.249928,0,0);}
.mc6_c01286{transform:matrix(0.217976,0.004142,-0.004749,0.249955,0,0);-ms-transform:matrix(0.217976,0.004142,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.217976,0.004142,-0.004749,0.249955,0,0);}
.me1_c01286{transform:matrix(0.218058,0.003707,-0.004249,0.249964,0,0);-ms-transform:matrix(0.218058,0.003707,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.218058,0.003707,-0.004249,0.249964,0,0);}
.md0_c01286{transform:matrix(0.218428,0.003713,-0.004249,0.249964,0,0);-ms-transform:matrix(0.218428,0.003713,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.218428,0.003713,-0.004249,0.249964,0,0);}
.m121_c01286{transform:matrix(0.218452,0.005243,-0.005998,0.249928,0,0);-ms-transform:matrix(0.218452,0.005243,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.218452,0.005243,-0.005998,0.249928,0,0);}
.m67_c01286{transform:matrix(0.218832,0.004595,-0.005249,0.249945,0,0);-ms-transform:matrix(0.218832,0.004595,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.218832,0.004595,-0.005249,0.249945,0,0);}
.mf7_c01286{transform:matrix(0.219527,0.005269,-0.005998,0.249928,0,0);-ms-transform:matrix(0.219527,0.005269,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.219527,0.005269,-0.005998,0.249928,0,0);}
.m135_c01286{transform:matrix(0.220127,0.005283,-0.005998,0.249928,0,0);-ms-transform:matrix(0.220127,0.005283,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.220127,0.005283,-0.005998,0.249928,0,0);}
.m38_c01286{transform:matrix(0.220391,0.004628,-0.005249,0.249945,0,0);-ms-transform:matrix(0.220391,0.004628,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.220391,0.004628,-0.005249,0.249945,0,0);}
.maf_c01286{transform:matrix(0.220752,0.003532,-0.003999,0.249968,0,0);-ms-transform:matrix(0.220752,0.003532,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.220752,0.003532,-0.003999,0.249968,0,0);}
.ma6_c01286{transform:matrix(0.220837,0.004858,-0.005499,0.249940,0,0);-ms-transform:matrix(0.220837,0.004858,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.220837,0.004858,-0.005499,0.249940,0,0);}
.ma4_c01286{transform:matrix(0.221087,0.004864,-0.005499,0.249940,0,0);-ms-transform:matrix(0.221087,0.004864,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.221087,0.004864,-0.005499,0.249940,0,0);}
.m137_c01286{transform:matrix(0.221096,0.005306,-0.005998,0.249928,0,0);-ms-transform:matrix(0.221096,0.005306,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.221096,0.005306,-0.005998,0.249928,0,0);}
.mbd_c01286{transform:matrix(0.221571,0.005318,-0.005998,0.249928,0,0);-ms-transform:matrix(0.221571,0.005318,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.221571,0.005318,-0.005998,0.249928,0,0);}
.mf4_c01286{transform:matrix(0.222426,0.005338,-0.005998,0.249928,0,0);-ms-transform:matrix(0.222426,0.005338,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.222426,0.005338,-0.005998,0.249928,0,0);}
.m107_c01286{transform:matrix(0.222991,0.005352,-0.005998,0.249928,0,0);-ms-transform:matrix(0.222991,0.005352,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.222991,0.005352,-0.005998,0.249928,0,0);}
.m10f_c01286{transform:matrix(0.223116,0.005355,-0.005998,0.249928,0,0);-ms-transform:matrix(0.223116,0.005355,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.223116,0.005355,-0.005998,0.249928,0,0);}
.m10c_c01286{transform:matrix(0.224350,0.005384,-0.005998,0.249928,0,0);-ms-transform:matrix(0.224350,0.005384,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.224350,0.005384,-0.005998,0.249928,0,0);}
.ma3_c01286{transform:matrix(0.224361,0.004936,-0.005499,0.249940,0,0);-ms-transform:matrix(0.224361,0.004936,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.224361,0.004936,-0.005499,0.249940,0,0);}
.m123_c01286{transform:matrix(0.224700,0.005393,-0.005998,0.249928,0,0);-ms-transform:matrix(0.224700,0.005393,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.224700,0.005393,-0.005998,0.249928,0,0);}
.mb6_c01286{transform:matrix(0.224781,0.003596,-0.003999,0.249968,0,0);-ms-transform:matrix(0.224781,0.003596,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.224781,0.003596,-0.003999,0.249968,0,0);}
.mad_c01286{transform:matrix(0.225495,0.004961,-0.005499,0.249940,0,0);-ms-transform:matrix(0.225495,0.004961,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.225495,0.004961,-0.005499,0.249940,0,0);}
.m13a_c01286{transform:matrix(0.225960,0.005423,-0.005998,0.249928,0,0);-ms-transform:matrix(0.225960,0.005423,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.225960,0.005423,-0.005998,0.249928,0,0);}
.m11c_c01286{transform:matrix(0.225970,0.005423,-0.005998,0.249928,0,0);-ms-transform:matrix(0.225970,0.005423,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.225970,0.005423,-0.005998,0.249928,0,0);}
.m112_c01286{transform:matrix(0.227200,0.005453,-0.005998,0.249928,0,0);-ms-transform:matrix(0.227200,0.005453,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.227200,0.005453,-0.005998,0.249928,0,0);}
.m129_c01286{transform:matrix(0.227919,0.005470,-0.005998,0.249928,0,0);-ms-transform:matrix(0.227919,0.005470,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.227919,0.005470,-0.005998,0.249928,0,0);}
.mc1_c01286{transform:matrix(0.228129,0.004334,-0.004749,0.249955,0,0);-ms-transform:matrix(0.228129,0.004334,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.228129,0.004334,-0.004749,0.249955,0,0);}
.m69_c01286{transform:matrix(0.228230,0.004793,-0.005249,0.249945,0,0);-ms-transform:matrix(0.228230,0.004793,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.228230,0.004793,-0.005249,0.249945,0,0);}
.m54_c01286{transform:matrix(0.228640,0.004801,-0.005249,0.249945,0,0);-ms-transform:matrix(0.228640,0.004801,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.228640,0.004801,-0.005249,0.249945,0,0);}
.m115_c01286{transform:matrix(0.228979,0.005495,-0.005998,0.249928,0,0);-ms-transform:matrix(0.228979,0.005495,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.228979,0.005495,-0.005998,0.249928,0,0);}
.m102_c01286{transform:matrix(0.229129,0.005499,-0.005998,0.249928,0,0);-ms-transform:matrix(0.229129,0.005499,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.229129,0.005499,-0.005998,0.249928,0,0);}
.m47_c01286{transform:matrix(0.229144,0.004812,-0.005249,0.249945,0,0);-ms-transform:matrix(0.229144,0.004812,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.229144,0.004812,-0.005249,0.249945,0,0);}
.m3d_c01286{transform:matrix(0.229169,0.004813,-0.005249,0.249945,0,0);-ms-transform:matrix(0.229169,0.004813,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.229169,0.004813,-0.005249,0.249945,0,0);}
.md5_c01286{transform:matrix(0.230367,0.003916,-0.004249,0.249964,0,0);-ms-transform:matrix(0.230367,0.003916,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.230367,0.003916,-0.004249,0.249964,0,0);}
.m2d_c01286{transform:matrix(0.230446,0.003687,-0.003999,0.249968,0,0);-ms-transform:matrix(0.230446,0.003687,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.230446,0.003687,-0.003999,0.249968,0,0);}
.m36_c01286{transform:matrix(0.230884,0.004849,-0.005249,0.249945,0,0);-ms-transform:matrix(0.230884,0.004849,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.230884,0.004849,-0.005249,0.249945,0,0);}
.m83_c01286{transform:matrix(0.231049,0.004852,-0.005249,0.249945,0,0);-ms-transform:matrix(0.231049,0.004852,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.231049,0.004852,-0.005249,0.249945,0,0);}
.m13e_c01286{transform:matrix(0.231283,0.005551,-0.005998,0.249928,0,0);-ms-transform:matrix(0.231283,0.005551,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.231283,0.005551,-0.005998,0.249928,0,0);}
.mcb_c01286{transform:matrix(0.231488,0.004398,-0.004749,0.249955,0,0);-ms-transform:matrix(0.231488,0.004398,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.231488,0.004398,-0.004749,0.249955,0,0);}
.m3f_c01286{transform:matrix(0.232354,0.004879,-0.005249,0.249945,0,0);-ms-transform:matrix(0.232354,0.004879,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.232354,0.004879,-0.005249,0.249945,0,0);}
.m7a_c01286{transform:matrix(0.232719,0.004887,-0.005249,0.249945,0,0);-ms-transform:matrix(0.232719,0.004887,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.232719,0.004887,-0.005249,0.249945,0,0);}
.md1_c01286{transform:matrix(0.232831,0.003958,-0.004249,0.249964,0,0);-ms-transform:matrix(0.232831,0.003958,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.232831,0.003958,-0.004249,0.249964,0,0);}
.m93_c01286{transform:matrix(0.233109,0.004895,-0.005249,0.249945,0,0);-ms-transform:matrix(0.233109,0.004895,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.233109,0.004895,-0.005249,0.249945,0,0);}
.m43_c01286{transform:matrix(0.233683,0.004907,-0.005249,0.249945,0,0);-ms-transform:matrix(0.233683,0.004907,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.233683,0.004907,-0.005249,0.249945,0,0);}
.ma7_c01286{transform:matrix(0.233758,0.005143,-0.005499,0.249940,0,0);-ms-transform:matrix(0.233758,0.005143,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.233758,0.005143,-0.005499,0.249940,0,0);}
.mb9_c01286{transform:matrix(0.234253,0.005622,-0.005998,0.249928,0,0);-ms-transform:matrix(0.234253,0.005622,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.234253,0.005622,-0.005998,0.249928,0,0);}
.m6c_c01286{transform:matrix(0.234258,0.004919,-0.005249,0.249945,0,0);-ms-transform:matrix(0.234258,0.004919,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.234258,0.004919,-0.005249,0.249945,0,0);}
.m11d_c01286{transform:matrix(0.234278,0.005623,-0.005998,0.249928,0,0);-ms-transform:matrix(0.234278,0.005623,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.234278,0.005623,-0.005998,0.249928,0,0);}
.mde_c01286{transform:matrix(0.234501,0.003987,-0.004249,0.249964,0,0);-ms-transform:matrix(0.234501,0.003987,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.234501,0.003987,-0.004249,0.249964,0,0);}
.m35_c01286{transform:matrix(0.234783,0.004930,-0.005249,0.249945,0,0);-ms-transform:matrix(0.234783,0.004930,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.234783,0.004930,-0.005249,0.249945,0,0);}
.m75_c01286{transform:matrix(0.234803,0.004931,-0.005249,0.249945,0,0);-ms-transform:matrix(0.234803,0.004931,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.234803,0.004931,-0.005249,0.249945,0,0);}
.mbe_c01286{transform:matrix(0.234922,0.005638,-0.005998,0.249928,0,0);-ms-transform:matrix(0.234922,0.005638,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.234922,0.005638,-0.005998,0.249928,0,0);}
.m74_c01286{transform:matrix(0.235073,0.004937,-0.005249,0.249945,0,0);-ms-transform:matrix(0.235073,0.004937,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.235073,0.004937,-0.005249,0.249945,0,0);}
.mdb_c01286{transform:matrix(0.235351,0.004001,-0.004249,0.249964,0,0);-ms-transform:matrix(0.235351,0.004001,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.235351,0.004001,-0.004249,0.249964,0,0);}
.m11b_c01286{transform:matrix(0.235362,0.005649,-0.005998,0.249928,0,0);-ms-transform:matrix(0.235362,0.005649,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.235362,0.005649,-0.005998,0.249928,0,0);}
.m141_c01286{transform:matrix(0.235555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235555,0.000000,0.000000,0.250000,0,0);}
.m86_c01286{transform:matrix(0.235798,0.004952,-0.005249,0.249945,0,0);-ms-transform:matrix(0.235798,0.004952,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.235798,0.004952,-0.005249,0.249945,0,0);}
.md9_c01286{transform:matrix(0.235816,0.004009,-0.004249,0.249964,0,0);-ms-transform:matrix(0.235816,0.004009,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.235816,0.004009,-0.004249,0.249964,0,0);}
.ma5_c01286{transform:matrix(0.236013,0.005192,-0.005499,0.249940,0,0);-ms-transform:matrix(0.236013,0.005192,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.236013,0.005192,-0.005499,0.249940,0,0);}
.m12c_c01286{transform:matrix(0.236152,0.005668,-0.005998,0.249928,0,0);-ms-transform:matrix(0.236152,0.005668,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.236152,0.005668,-0.005998,0.249928,0,0);}
.mcf_c01286{transform:matrix(0.236161,0.004015,-0.004249,0.249964,0,0);-ms-transform:matrix(0.236161,0.004015,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.236161,0.004015,-0.004249,0.249964,0,0);}
.me4_c01286{transform:matrix(0.236691,0.004024,-0.004249,0.249964,0,0);-ms-transform:matrix(0.236691,0.004024,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.236691,0.004024,-0.004249,0.249964,0,0);}
.md3_c01286{transform:matrix(0.237061,0.004030,-0.004249,0.249964,0,0);-ms-transform:matrix(0.237061,0.004030,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.237061,0.004030,-0.004249,0.249964,0,0);}
.mc5_c01286{transform:matrix(0.237077,0.004504,-0.004749,0.249955,0,0);-ms-transform:matrix(0.237077,0.004504,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.237077,0.004504,-0.004749,0.249955,0,0);}
.m131_c01286{transform:matrix(0.237397,0.005698,-0.005998,0.249928,0,0);-ms-transform:matrix(0.237397,0.005698,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.237397,0.005698,-0.005998,0.249928,0,0);}
.m136_c01286{transform:matrix(0.237522,0.005701,-0.005998,0.249928,0,0);-ms-transform:matrix(0.237522,0.005701,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.237522,0.005701,-0.005998,0.249928,0,0);}
.m61_c01286{transform:matrix(0.237753,0.004993,-0.005249,0.249945,0,0);-ms-transform:matrix(0.237753,0.004993,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.237753,0.004993,-0.005249,0.249945,0,0);}
.me8_c01286{transform:matrix(0.238351,0.004052,-0.004249,0.249964,0,0);-ms-transform:matrix(0.238351,0.004052,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.238351,0.004052,-0.004249,0.249964,0,0);}
.me5_c01286{transform:matrix(0.238536,0.004055,-0.004249,0.249964,0,0);-ms-transform:matrix(0.238536,0.004055,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.238536,0.004055,-0.004249,0.249964,0,0);}
.m72_c01286{transform:matrix(0.239332,0.005026,-0.005249,0.249945,0,0);-ms-transform:matrix(0.239332,0.005026,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.239332,0.005026,-0.005249,0.249945,0,0);}
.mbb_c01286{transform:matrix(0.239476,0.005747,-0.005998,0.249928,0,0);-ms-transform:matrix(0.239476,0.005747,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.239476,0.005747,-0.005998,0.249928,0,0);}
.m10a_c01286{transform:matrix(0.239491,0.005748,-0.005998,0.249928,0,0);-ms-transform:matrix(0.239491,0.005748,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.239491,0.005748,-0.005998,0.249928,0,0);}
.m7e_c01286{transform:matrix(0.239537,0.005030,-0.005249,0.249945,0,0);-ms-transform:matrix(0.239537,0.005030,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.239537,0.005030,-0.005249,0.249945,0,0);}
.ma9_c01286{transform:matrix(0.239622,0.005272,-0.005499,0.249940,0,0);-ms-transform:matrix(0.239622,0.005272,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.239622,0.005272,-0.005499,0.249940,0,0);}
.mef_c01286{transform:matrix(0.239875,0.004078,-0.004249,0.249964,0,0);-ms-transform:matrix(0.239875,0.004078,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.239875,0.004078,-0.004249,0.249964,0,0);}
.md_c01286{transform:matrix(0.239879,0.003838,-0.003999,0.249968,0,0);-ms-transform:matrix(0.239879,0.003838,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.239879,0.003838,-0.003999,0.249968,0,0);}
.mc4_c01286{transform:matrix(0.240022,0.004560,-0.004749,0.249955,0,0);-ms-transform:matrix(0.240022,0.004560,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.240022,0.004560,-0.004749,0.249955,0,0);}
.m9a_c01286{transform:matrix(0.240052,0.005041,-0.005249,0.249945,0,0);-ms-transform:matrix(0.240052,0.005041,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.240052,0.005041,-0.005249,0.249945,0,0);}
.mb7_c01286{transform:matrix(0.240089,0.003841,-0.003999,0.249968,0,0);-ms-transform:matrix(0.240089,0.003841,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.240089,0.003841,-0.003999,0.249968,0,0);}
.mff_c01286{transform:matrix(0.240226,0.005765,-0.005998,0.249928,0,0);-ms-transform:matrix(0.240226,0.005765,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.240226,0.005765,-0.005998,0.249928,0,0);}
.m2e_c01286{transform:matrix(0.240384,0.003846,-0.003999,0.249968,0,0);-ms-transform:matrix(0.240384,0.003846,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.240384,0.003846,-0.003999,0.249968,0,0);}
.md7_c01286{transform:matrix(0.240400,0.004087,-0.004249,0.249964,0,0);-ms-transform:matrix(0.240400,0.004087,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.240400,0.004087,-0.004249,0.249964,0,0);}
.m90_c01286{transform:matrix(0.240417,0.005049,-0.005249,0.249945,0,0);-ms-transform:matrix(0.240417,0.005049,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.240417,0.005049,-0.005249,0.249945,0,0);}
.mfa_c01286{transform:matrix(0.240601,0.005774,-0.005998,0.249928,0,0);-ms-transform:matrix(0.240601,0.005774,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.240601,0.005774,-0.005998,0.249928,0,0);}
.m10b_c01286{transform:matrix(0.240816,0.005780,-0.005998,0.249928,0,0);-ms-transform:matrix(0.240816,0.005780,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.240816,0.005780,-0.005998,0.249928,0,0);}
.m113_c01286{transform:matrix(0.241161,0.005788,-0.005998,0.249928,0,0);-ms-transform:matrix(0.241161,0.005788,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.241161,0.005788,-0.005998,0.249928,0,0);}
.m14a_c01286{transform:matrix(0.241168,0.007967,-0.008254,0.249864,0,0);-ms-transform:matrix(0.241168,0.007967,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.241168,0.007967,-0.008254,0.249864,0,0);}
.mf9_c01286{transform:matrix(0.241400,0.005794,-0.005998,0.249928,0,0);-ms-transform:matrix(0.241400,0.005794,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.241400,0.005794,-0.005998,0.249928,0,0);}
.m104_c01286{transform:matrix(0.241595,0.005798,-0.005998,0.249928,0,0);-ms-transform:matrix(0.241595,0.005798,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.241595,0.005798,-0.005998,0.249928,0,0);}
.mba_c01286{transform:matrix(0.241725,0.005801,-0.005998,0.249928,0,0);-ms-transform:matrix(0.241725,0.005801,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.241725,0.005801,-0.005998,0.249928,0,0);}
.mf3_c01286{transform:matrix(0.241800,0.005803,-0.005998,0.249928,0,0);-ms-transform:matrix(0.241800,0.005803,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.241800,0.005803,-0.005998,0.249928,0,0);}
.m119_c01286{transform:matrix(0.241985,0.005808,-0.005998,0.249928,0,0);-ms-transform:matrix(0.241985,0.005808,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.241985,0.005808,-0.005998,0.249928,0,0);}
.m132_c01286{transform:matrix(0.242605,0.005823,-0.005998,0.249928,0,0);-ms-transform:matrix(0.242605,0.005823,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.242605,0.005823,-0.005998,0.249928,0,0);}
.m3a_c01286{transform:matrix(0.242637,0.005095,-0.005249,0.249945,0,0);-ms-transform:matrix(0.242637,0.005095,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.242637,0.005095,-0.005249,0.249945,0,0);}
.m8d_c01286{transform:matrix(0.242951,0.005102,-0.005249,0.249945,0,0);-ms-transform:matrix(0.242951,0.005102,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.242951,0.005102,-0.005249,0.249945,0,0);}
.m124_c01286{transform:matrix(0.243420,0.005842,-0.005998,0.249928,0,0);-ms-transform:matrix(0.243420,0.005842,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.243420,0.005842,-0.005998,0.249928,0,0);}
.mfc_c01286{transform:matrix(0.243425,0.005842,-0.005998,0.249928,0,0);-ms-transform:matrix(0.243425,0.005842,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.243425,0.005842,-0.005998,0.249928,0,0);}
.m94_c01286{transform:matrix(0.243831,0.005120,-0.005249,0.249945,0,0);-ms-transform:matrix(0.243831,0.005120,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.243831,0.005120,-0.005249,0.249945,0,0);}
.m6a_c01286{transform:matrix(0.244006,0.005124,-0.005249,0.249945,0,0);-ms-transform:matrix(0.244006,0.005124,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.244006,0.005124,-0.005249,0.249945,0,0);}
.m9d_c01286{transform:matrix(0.244041,0.005125,-0.005249,0.249945,0,0);-ms-transform:matrix(0.244041,0.005125,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.244041,0.005125,-0.005249,0.249945,0,0);}
.m91_c01286{transform:matrix(0.244261,0.005129,-0.005249,0.249945,0,0);-ms-transform:matrix(0.244261,0.005129,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.244261,0.005129,-0.005249,0.249945,0,0);}
.m63_c01286{transform:matrix(0.244426,0.005133,-0.005249,0.249945,0,0);-ms-transform:matrix(0.244426,0.005133,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.244426,0.005133,-0.005249,0.249945,0,0);}
.m96_c01286{transform:matrix(0.244756,0.005140,-0.005249,0.249945,0,0);-ms-transform:matrix(0.244756,0.005140,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.244756,0.005140,-0.005249,0.249945,0,0);}
.mc2_c01286{transform:matrix(0.244816,0.004652,-0.004749,0.249955,0,0);-ms-transform:matrix(0.244816,0.004652,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.244816,0.004652,-0.004749,0.249955,0,0);}
.mdc_c01286{transform:matrix(0.244825,0.004162,-0.004249,0.249964,0,0);-ms-transform:matrix(0.244825,0.004162,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.244825,0.004162,-0.004249,0.249964,0,0);}
.m12d_c01286{transform:matrix(0.245149,0.005884,-0.005998,0.249928,0,0);-ms-transform:matrix(0.245149,0.005884,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.245149,0.005884,-0.005998,0.249928,0,0);}
.mfb_c01286{transform:matrix(0.245164,0.005884,-0.005998,0.249928,0,0);-ms-transform:matrix(0.245164,0.005884,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.245164,0.005884,-0.005998,0.249928,0,0);}
.m98_c01286{transform:matrix(0.245176,0.005149,-0.005249,0.249945,0,0);-ms-transform:matrix(0.245176,0.005149,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.245176,0.005149,-0.005249,0.249945,0,0);}
.m68_c01286{transform:matrix(0.245301,0.005151,-0.005249,0.249945,0,0);-ms-transform:matrix(0.245301,0.005151,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.245301,0.005151,-0.005249,0.249945,0,0);}
.mae_c01286{transform:matrix(0.245739,0.003932,-0.003999,0.249968,0,0);-ms-transform:matrix(0.245739,0.003932,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.245739,0.003932,-0.003999,0.249968,0,0);}
.m122_c01286{transform:matrix(0.245934,0.005902,-0.005998,0.249928,0,0);-ms-transform:matrix(0.245934,0.005902,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.245934,0.005902,-0.005998,0.249928,0,0);}
.m77_c01286{transform:matrix(0.246151,0.005169,-0.005249,0.249945,0,0);-ms-transform:matrix(0.246151,0.005169,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.246151,0.005169,-0.005249,0.249945,0,0);}
.m59_c01286{transform:matrix(0.246321,0.005173,-0.005249,0.249945,0,0);-ms-transform:matrix(0.246321,0.005173,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.246321,0.005173,-0.005249,0.249945,0,0);}
.m142_c01286{transform:matrix(0.246406,0.008140,-0.008254,0.249864,0,0);-ms-transform:matrix(0.246406,0.008140,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.246406,0.008140,-0.008254,0.249864,0,0);}
.ma1_c01286{transform:matrix(0.246651,0.005180,-0.005249,0.249945,0,0);-ms-transform:matrix(0.246651,0.005180,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.246651,0.005180,-0.005249,0.249945,0,0);}
.m127_c01286{transform:matrix(0.247009,0.005928,-0.005998,0.249928,0,0);-ms-transform:matrix(0.247009,0.005928,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.247009,0.005928,-0.005998,0.249928,0,0);}
.m3b_c01286{transform:matrix(0.247136,0.005190,-0.005249,0.249945,0,0);-ms-transform:matrix(0.247136,0.005190,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.247136,0.005190,-0.005249,0.249945,0,0);}
.mb8_c01286{transform:matrix(0.247209,0.005933,-0.005998,0.249928,0,0);-ms-transform:matrix(0.247209,0.005933,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.247209,0.005933,-0.005998,0.249928,0,0);}
.mf5_c01286{transform:matrix(0.247304,0.005935,-0.005998,0.249928,0,0);-ms-transform:matrix(0.247304,0.005935,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.247304,0.005935,-0.005998,0.249928,0,0);}
.maa_c01286{transform:matrix(0.247370,0.005442,-0.005499,0.249940,0,0);-ms-transform:matrix(0.247370,0.005442,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.247370,0.005442,-0.005499,0.249940,0,0);}
.mf6_c01286{transform:matrix(0.247449,0.005939,-0.005998,0.249928,0,0);-ms-transform:matrix(0.247449,0.005939,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.247449,0.005939,-0.005998,0.249928,0,0);}
.m11_c01286{transform:matrix(0.247583,0.003961,-0.003999,0.249968,0,0);-ms-transform:matrix(0.247583,0.003961,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.247583,0.003961,-0.003999,0.249968,0,0);}
.m84_c01286{transform:matrix(0.247630,0.005200,-0.005249,0.249945,0,0);-ms-transform:matrix(0.247630,0.005200,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.247630,0.005200,-0.005249,0.249945,0,0);}
.me9_c01286{transform:matrix(0.247649,0.004210,-0.004249,0.249964,0,0);-ms-transform:matrix(0.247649,0.004210,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.247649,0.004210,-0.004249,0.249964,0,0);}
.m9c_c01286{transform:matrix(0.247700,0.005202,-0.005249,0.249945,0,0);-ms-transform:matrix(0.247700,0.005202,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.247700,0.005202,-0.005249,0.249945,0,0);}
.m44_c01286{transform:matrix(0.247760,0.005203,-0.005249,0.249945,0,0);-ms-transform:matrix(0.247760,0.005203,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.247760,0.005203,-0.005249,0.249945,0,0);}
.mb2_c01286{transform:matrix(0.247918,0.003967,-0.003999,0.249968,0,0);-ms-transform:matrix(0.247918,0.003967,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.247918,0.003967,-0.003999,0.249968,0,0);}
.m3c_c01286{transform:matrix(0.248590,0.005220,-0.005249,0.249945,0,0);-ms-transform:matrix(0.248590,0.005220,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.248590,0.005220,-0.005249,0.249945,0,0);}
.m62_c01286{transform:matrix(0.249585,0.005241,-0.005249,0.249945,0,0);-ms-transform:matrix(0.249585,0.005241,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.249585,0.005241,-0.005249,0.249945,0,0);}
.m9e_c01286{transform:matrix(0.249610,0.005242,-0.005249,0.249945,0,0);-ms-transform:matrix(0.249610,0.005242,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.249610,0.005242,-0.005249,0.249945,0,0);}
.m125_c01286{transform:matrix(0.249668,0.005992,-0.005998,0.249928,0,0);-ms-transform:matrix(0.249668,0.005992,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.249668,0.005992,-0.005998,0.249928,0,0);}
.mc8_c01286{transform:matrix(0.249935,0.004749,-0.004749,0.249955,0,0);-ms-transform:matrix(0.249935,0.004749,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.249935,0.004749,-0.004749,0.249955,0,0);}
.m6b_c01286{transform:matrix(0.250100,0.005252,-0.005249,0.249945,0,0);-ms-transform:matrix(0.250100,0.005252,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.250100,0.005252,-0.005249,0.249945,0,0);}
.m23_c01286{transform:matrix(0.250853,0.004014,-0.003999,0.249968,0,0);-ms-transform:matrix(0.250853,0.004014,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.250853,0.004014,-0.003999,0.249968,0,0);}
.m7f_c01286{transform:matrix(0.250980,0.005271,-0.005249,0.249945,0,0);-ms-transform:matrix(0.250980,0.005271,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.250980,0.005271,-0.005249,0.249945,0,0);}
.m12e_c01286{transform:matrix(0.251078,0.006026,-0.005998,0.249928,0,0);-ms-transform:matrix(0.251078,0.006026,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.251078,0.006026,-0.005998,0.249928,0,0);}
.m133_c01286{transform:matrix(0.251118,0.006027,-0.005998,0.249928,0,0);-ms-transform:matrix(0.251118,0.006027,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.251118,0.006027,-0.005998,0.249928,0,0);}
.m134_c01286{transform:matrix(0.251123,0.006027,-0.005998,0.249928,0,0);-ms-transform:matrix(0.251123,0.006027,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.251123,0.006027,-0.005998,0.249928,0,0);}
.m66_c01286{transform:matrix(0.251130,0.005274,-0.005249,0.249945,0,0);-ms-transform:matrix(0.251130,0.005274,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.251130,0.005274,-0.005249,0.249945,0,0);}
.mdf_c01286{transform:matrix(0.251209,0.004271,-0.004249,0.249964,0,0);-ms-transform:matrix(0.251209,0.004271,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.251209,0.004271,-0.004249,0.249964,0,0);}
.m48_c01286{transform:matrix(0.251340,0.005278,-0.005249,0.249945,0,0);-ms-transform:matrix(0.251340,0.005278,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.251340,0.005278,-0.005249,0.249945,0,0);}
.m85_c01286{transform:matrix(0.251390,0.005279,-0.005249,0.249945,0,0);-ms-transform:matrix(0.251390,0.005279,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.251390,0.005279,-0.005249,0.249945,0,0);}
.mee_c01286{transform:matrix(0.252429,0.004291,-0.004249,0.249964,0,0);-ms-transform:matrix(0.252429,0.004291,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.252429,0.004291,-0.004249,0.249964,0,0);}
.m89_c01286{transform:matrix(0.252584,0.005304,-0.005249,0.249945,0,0);-ms-transform:matrix(0.252584,0.005304,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.252584,0.005304,-0.005249,0.249945,0,0);}
.m60_c01286{transform:matrix(0.252634,0.005305,-0.005249,0.249945,0,0);-ms-transform:matrix(0.252634,0.005305,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.252634,0.005305,-0.005249,0.249945,0,0);}
.m29_c01286{transform:matrix(0.252648,0.004042,-0.003999,0.249968,0,0);-ms-transform:matrix(0.252648,0.004042,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.252648,0.004042,-0.003999,0.249968,0,0);}
.mac_c01286{transform:matrix(0.253324,0.005573,-0.005499,0.249940,0,0);-ms-transform:matrix(0.253324,0.005573,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.253324,0.005573,-0.005499,0.249940,0,0);}
.mf1_c01286{transform:matrix(0.253662,0.006088,-0.005998,0.249928,0,0);-ms-transform:matrix(0.253662,0.006088,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.253662,0.006088,-0.005998,0.249928,0,0);}
.m10e_c01286{transform:matrix(0.254012,0.006096,-0.005998,0.249928,0,0);-ms-transform:matrix(0.254012,0.006096,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.254012,0.006096,-0.005998,0.249928,0,0);}
.m92_c01286{transform:matrix(0.254039,0.005335,-0.005249,0.249945,0,0);-ms-transform:matrix(0.254039,0.005335,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.254039,0.005335,-0.005249,0.249945,0,0);}
.mb0_c01286{transform:matrix(0.254332,0.004069,-0.003999,0.249968,0,0);-ms-transform:matrix(0.254332,0.004069,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.254332,0.004069,-0.003999,0.249968,0,0);}
.m81_c01286{transform:matrix(0.254414,0.005343,-0.005249,0.249945,0,0);-ms-transform:matrix(0.254414,0.005343,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.254414,0.005343,-0.005249,0.249945,0,0);}
.m114_c01286{transform:matrix(0.254502,0.006108,-0.005998,0.249928,0,0);-ms-transform:matrix(0.254502,0.006108,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.254502,0.006108,-0.005998,0.249928,0,0);}
.me2_c01286{transform:matrix(0.254683,0.004330,-0.004249,0.249964,0,0);-ms-transform:matrix(0.254683,0.004330,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.254683,0.004330,-0.004249,0.249964,0,0);}
.mf0_c01286{transform:matrix(0.254703,0.004330,-0.004249,0.249964,0,0);-ms-transform:matrix(0.254703,0.004330,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.254703,0.004330,-0.004249,0.249964,0,0);}
.mb3_c01286{transform:matrix(0.254792,0.004077,-0.003999,0.249968,0,0);-ms-transform:matrix(0.254792,0.004077,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.254792,0.004077,-0.003999,0.249968,0,0);}
.m130_c01286{transform:matrix(0.254867,0.006117,-0.005998,0.249928,0,0);-ms-transform:matrix(0.254867,0.006117,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.254867,0.006117,-0.005998,0.249928,0,0);}
.m25_c01286{transform:matrix(0.254892,0.004078,-0.003999,0.249968,0,0);-ms-transform:matrix(0.254892,0.004078,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.254892,0.004078,-0.003999,0.249968,0,0);}
.m57_c01286{transform:matrix(0.254924,0.005353,-0.005249,0.249945,0,0);-ms-transform:matrix(0.254924,0.005353,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.254924,0.005353,-0.005249,0.249945,0,0);}
.m7c_c01286{transform:matrix(0.254949,0.005354,-0.005249,0.249945,0,0);-ms-transform:matrix(0.254949,0.005354,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.254949,0.005354,-0.005249,0.249945,0,0);}
.m12a_c01286{transform:matrix(0.255192,0.006125,-0.005998,0.249928,0,0);-ms-transform:matrix(0.255192,0.006125,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.255192,0.006125,-0.005998,0.249928,0,0);}
.m14_c01286{transform:matrix(0.255882,0.004094,-0.003999,0.249968,0,0);-ms-transform:matrix(0.255882,0.004094,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.255882,0.004094,-0.003999,0.249968,0,0);}
.m8e_c01286{transform:matrix(0.256074,0.005378,-0.005249,0.249945,0,0);-ms-transform:matrix(0.256074,0.005378,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.256074,0.005378,-0.005249,0.249945,0,0);}
.mb5_c01286{transform:matrix(0.256132,0.004098,-0.003999,0.249968,0,0);-ms-transform:matrix(0.256132,0.004098,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.256132,0.004098,-0.003999,0.249968,0,0);}
.m64_c01286{transform:matrix(0.256254,0.005381,-0.005249,0.249945,0,0);-ms-transform:matrix(0.256254,0.005381,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.256254,0.005381,-0.005249,0.249945,0,0);}
.m144_c01286{transform:matrix(0.256400,0.008470,-0.008254,0.249864,0,0);-ms-transform:matrix(0.256400,0.008470,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.256400,0.008470,-0.008254,0.249864,0,0);}
.mec_c01286{transform:matrix(0.257278,0.004374,-0.004249,0.249964,0,0);-ms-transform:matrix(0.257278,0.004374,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.257278,0.004374,-0.004249,0.249964,0,0);}
.m110_c01286{transform:matrix(0.257696,0.006185,-0.005998,0.249928,0,0);-ms-transform:matrix(0.257696,0.006185,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.257696,0.006185,-0.005998,0.249928,0,0);}
.m45_c01286{transform:matrix(0.257998,0.005418,-0.005249,0.249945,0,0);-ms-transform:matrix(0.257998,0.005418,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.257998,0.005418,-0.005249,0.249945,0,0);}
.mfd_c01286{transform:matrix(0.258256,0.006198,-0.005998,0.249928,0,0);-ms-transform:matrix(0.258256,0.006198,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.258256,0.006198,-0.005998,0.249928,0,0);}
.m138_c01286{transform:matrix(0.258556,0.006205,-0.005998,0.249928,0,0);-ms-transform:matrix(0.258556,0.006205,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.258556,0.006205,-0.005998,0.249928,0,0);}
.m6e_c01286{transform:matrix(0.258573,0.005430,-0.005249,0.249945,0,0);-ms-transform:matrix(0.258573,0.005430,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.258573,0.005430,-0.005249,0.249945,0,0);}
.m6d_c01286{transform:matrix(0.258848,0.005436,-0.005249,0.249945,0,0);-ms-transform:matrix(0.258848,0.005436,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.258848,0.005436,-0.005249,0.249945,0,0);}
.mc_c01286{transform:matrix(0.259477,0.004152,-0.003999,0.249968,0,0);-ms-transform:matrix(0.259477,0.004152,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.259477,0.004152,-0.003999,0.249968,0,0);}
.m13c_c01286{transform:matrix(0.259585,0.006230,-0.005998,0.249928,0,0);-ms-transform:matrix(0.259585,0.006230,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.259585,0.006230,-0.005998,0.249928,0,0);}
.m73_c01286{transform:matrix(0.259598,0.005452,-0.005249,0.249945,0,0);-ms-transform:matrix(0.259598,0.005452,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.259598,0.005452,-0.005249,0.249945,0,0);}
.mbf_c01286{transform:matrix(0.259735,0.006234,-0.005998,0.249928,0,0);-ms-transform:matrix(0.259735,0.006234,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.259735,0.006234,-0.005998,0.249928,0,0);}
.meb_c01286{transform:matrix(0.260137,0.004422,-0.004249,0.249964,0,0);-ms-transform:matrix(0.260137,0.004422,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.260137,0.004422,-0.004249,0.249964,0,0);}
.m21_c01286{transform:matrix(0.260187,0.004163,-0.003999,0.249968,0,0);-ms-transform:matrix(0.260187,0.004163,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.260187,0.004163,-0.003999,0.249968,0,0);}
.m13b_c01286{transform:matrix(0.260335,0.006248,-0.005998,0.249928,0,0);-ms-transform:matrix(0.260335,0.006248,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.260335,0.006248,-0.005998,0.249928,0,0);}
.m51_c01286{transform:matrix(0.260513,0.005471,-0.005249,0.249945,0,0);-ms-transform:matrix(0.260513,0.005471,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.260513,0.005471,-0.005249,0.249945,0,0);}
.m10d_c01286{transform:matrix(0.260820,0.006260,-0.005998,0.249928,0,0);-ms-transform:matrix(0.260820,0.006260,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.260820,0.006260,-0.005998,0.249928,0,0);}
.mfe_c01286{transform:matrix(0.260965,0.006263,-0.005998,0.249928,0,0);-ms-transform:matrix(0.260965,0.006263,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.260965,0.006263,-0.005998,0.249928,0,0);}
.m120_c01286{transform:matrix(0.261330,0.006272,-0.005998,0.249928,0,0);-ms-transform:matrix(0.261330,0.006272,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.261330,0.006272,-0.005998,0.249928,0,0);}
.m6f_c01286{transform:matrix(0.261787,0.005498,-0.005249,0.249945,0,0);-ms-transform:matrix(0.261787,0.005498,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.261787,0.005498,-0.005249,0.249945,0,0);}
.m52_c01286{transform:matrix(0.261832,0.005498,-0.005249,0.249945,0,0);-ms-transform:matrix(0.261832,0.005498,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.261832,0.005498,-0.005249,0.249945,0,0);}
.m145_c01286{transform:matrix(0.261982,0.008654,-0.008254,0.249864,0,0);-ms-transform:matrix(0.261982,0.008654,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.261982,0.008654,-0.008254,0.249864,0,0);}
.md8_c01286{transform:matrix(0.262252,0.004458,-0.004249,0.249964,0,0);-ms-transform:matrix(0.262252,0.004458,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.262252,0.004458,-0.004249,0.249964,0,0);}
.mc0_c01286{transform:matrix(0.262329,0.006296,-0.005998,0.249928,0,0);-ms-transform:matrix(0.262329,0.006296,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.262329,0.006296,-0.005998,0.249928,0,0);}
.m3e_c01286{transform:matrix(0.262492,0.005512,-0.005249,0.249945,0,0);-ms-transform:matrix(0.262492,0.005512,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.262492,0.005512,-0.005249,0.249945,0,0);}
.m149_c01286{transform:matrix(0.262757,0.008680,-0.008254,0.249864,0,0);-ms-transform:matrix(0.262757,0.008680,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.262757,0.008680,-0.008254,0.249864,0,0);}
.m78_c01286{transform:matrix(0.262792,0.005519,-0.005249,0.249945,0,0);-ms-transform:matrix(0.262792,0.005519,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.262792,0.005519,-0.005249,0.249945,0,0);}
.m4d_c01286{transform:matrix(0.262882,0.005521,-0.005249,0.249945,0,0);-ms-transform:matrix(0.262882,0.005521,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.262882,0.005521,-0.005249,0.249945,0,0);}
.mbc_c01286{transform:matrix(0.262904,0.006310,-0.005998,0.249928,0,0);-ms-transform:matrix(0.262904,0.006310,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.262904,0.006310,-0.005998,0.249928,0,0);}
.m105_c01286{transform:matrix(0.263154,0.006316,-0.005998,0.249928,0,0);-ms-transform:matrix(0.263154,0.006316,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.263154,0.006316,-0.005998,0.249928,0,0);}
.m15_c01286{transform:matrix(0.263236,0.004212,-0.003999,0.249968,0,0);-ms-transform:matrix(0.263236,0.004212,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.263236,0.004212,-0.003999,0.249968,0,0);}
.m5e_c01286{transform:matrix(0.263302,0.005529,-0.005249,0.249945,0,0);-ms-transform:matrix(0.263302,0.005529,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.263302,0.005529,-0.005249,0.249945,0,0);}
.m148_c01286{transform:matrix(0.263321,0.008698,-0.008254,0.249864,0,0);-ms-transform:matrix(0.263321,0.008698,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.263321,0.008698,-0.008254,0.249864,0,0);}
.m143_c01286{transform:matrix(0.264781,0.008747,-0.008254,0.249864,0,0);-ms-transform:matrix(0.264781,0.008747,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.264781,0.008747,-0.008254,0.249864,0,0);}
.m9b_c01286{transform:matrix(0.265371,0.005573,-0.005249,0.249945,0,0);-ms-transform:matrix(0.265371,0.005573,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.265371,0.005573,-0.005249,0.249945,0,0);}
.m50_c01286{transform:matrix(0.265621,0.005578,-0.005249,0.249945,0,0);-ms-transform:matrix(0.265621,0.005578,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.265621,0.005578,-0.005249,0.249945,0,0);}
.m40_c01286{transform:matrix(0.265826,0.005582,-0.005249,0.249945,0,0);-ms-transform:matrix(0.265826,0.005582,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.265826,0.005582,-0.005249,0.249945,0,0);}
.m41_c01286{transform:matrix(0.266071,0.005587,-0.005249,0.249945,0,0);-ms-transform:matrix(0.266071,0.005587,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.266071,0.005587,-0.005249,0.249945,0,0);}
.m79_c01286{transform:matrix(0.266141,0.005589,-0.005249,0.249945,0,0);-ms-transform:matrix(0.266141,0.005589,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.266141,0.005589,-0.005249,0.249945,0,0);}
.mc9_c01286{transform:matrix(0.266142,0.005057,-0.004749,0.249955,0,0);-ms-transform:matrix(0.266142,0.005057,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.266142,0.005057,-0.004749,0.249955,0,0);}
.m101_c01286{transform:matrix(0.266633,0.006399,-0.005998,0.249928,0,0);-ms-transform:matrix(0.266633,0.006399,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.266633,0.006399,-0.005998,0.249928,0,0);}
.m147_c01286{transform:matrix(0.266799,0.008813,-0.008254,0.249864,0,0);-ms-transform:matrix(0.266799,0.008813,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.266799,0.008813,-0.008254,0.249864,0,0);}
.m80_c01286{transform:matrix(0.267021,0.005607,-0.005249,0.249945,0,0);-ms-transform:matrix(0.267021,0.005607,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.267021,0.005607,-0.005249,0.249945,0,0);}
.m70_c01286{transform:matrix(0.267276,0.005613,-0.005249,0.249945,0,0);-ms-transform:matrix(0.267276,0.005613,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.267276,0.005613,-0.005249,0.249945,0,0);}
.m103_c01286{transform:matrix(0.267363,0.006417,-0.005998,0.249928,0,0);-ms-transform:matrix(0.267363,0.006417,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.267363,0.006417,-0.005998,0.249928,0,0);}
.ma2_c01286{transform:matrix(0.267626,0.005620,-0.005249,0.249945,0,0);-ms-transform:matrix(0.267626,0.005620,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.267626,0.005620,-0.005249,0.249945,0,0);}
.m117_c01286{transform:matrix(0.267808,0.006427,-0.005998,0.249928,0,0);-ms-transform:matrix(0.267808,0.006427,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.267808,0.006427,-0.005998,0.249928,0,0);}
.m118_c01286{transform:matrix(0.268168,0.006436,-0.005998,0.249928,0,0);-ms-transform:matrix(0.268168,0.006436,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.268168,0.006436,-0.005998,0.249928,0,0);}
.me3_c01286{transform:matrix(0.268411,0.004563,-0.004249,0.249964,0,0);-ms-transform:matrix(0.268411,0.004563,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.268411,0.004563,-0.004249,0.249964,0,0);}
.m76_c01286{transform:matrix(0.268561,0.005640,-0.005249,0.249945,0,0);-ms-transform:matrix(0.268561,0.005640,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.268561,0.005640,-0.005249,0.249945,0,0);}
.mda_c01286{transform:matrix(0.268581,0.004566,-0.004249,0.249964,0,0);-ms-transform:matrix(0.268581,0.004566,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.268581,0.004566,-0.004249,0.249964,0,0);}
.mdd_c01286{transform:matrix(0.269546,0.004582,-0.004249,0.249964,0,0);-ms-transform:matrix(0.269546,0.004582,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.269546,0.004582,-0.004249,0.249964,0,0);}
.m11f_c01286{transform:matrix(0.269577,0.006470,-0.005998,0.249928,0,0);-ms-transform:matrix(0.269577,0.006470,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.269577,0.006470,-0.005998,0.249928,0,0);}
.mf_c01286{transform:matrix(0.270335,0.004325,-0.003999,0.249968,0,0);-ms-transform:matrix(0.270335,0.004325,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.270335,0.004325,-0.003999,0.249968,0,0);}
.mca_c01286{transform:matrix(0.270346,0.005137,-0.004749,0.249955,0,0);-ms-transform:matrix(0.270346,0.005137,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.270346,0.005137,-0.004749,0.249955,0,0);}
.m2_c01286{transform:matrix(0.270743,-0.001895,0.001750,0.249994,0,0);-ms-transform:matrix(0.270743,-0.001895,0.001750,0.249994,0,0);-webkit-transform:matrix(0.270743,-0.001895,0.001750,0.249994,0,0);}
.mcc_c01286{transform:matrix(0.270806,0.005145,-0.004749,0.249955,0,0);-ms-transform:matrix(0.270806,0.005145,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.270806,0.005145,-0.004749,0.249955,0,0);}
.m5a_c01286{transform:matrix(0.270820,0.005687,-0.005249,0.249945,0,0);-ms-transform:matrix(0.270820,0.005687,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.270820,0.005687,-0.005249,0.249945,0,0);}
.mea_c01286{transform:matrix(0.271451,0.004615,-0.004249,0.249964,0,0);-ms-transform:matrix(0.271451,0.004615,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.271451,0.004615,-0.004249,0.249964,0,0);}
.mc3_c01286{transform:matrix(0.271736,0.005163,-0.004749,0.249955,0,0);-ms-transform:matrix(0.271736,0.005163,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.271736,0.005163,-0.004749,0.249955,0,0);}
.m7b_c01286{transform:matrix(0.272235,0.005717,-0.005249,0.249945,0,0);-ms-transform:matrix(0.272235,0.005717,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.272235,0.005717,-0.005249,0.249945,0,0);}
.m14b_c01286{transform:matrix(0.272731,0.009009,-0.008254,0.249864,0,0);-ms-transform:matrix(0.272731,0.009009,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.272731,0.009009,-0.008254,0.249864,0,0);}
.m87_c01286{transform:matrix(0.273155,0.005736,-0.005249,0.249945,0,0);-ms-transform:matrix(0.273155,0.005736,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.273155,0.005736,-0.005249,0.249945,0,0);}
.me7_c01286{transform:matrix(0.273835,0.004655,-0.004249,0.249964,0,0);-ms-transform:matrix(0.273835,0.004655,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.273835,0.004655,-0.004249,0.249964,0,0);}
.m146_c01286{transform:matrix(0.273931,0.009049,-0.008254,0.249864,0,0);-ms-transform:matrix(0.273931,0.009049,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.273931,0.009049,-0.008254,0.249864,0,0);}
.m4a_c01286{transform:matrix(0.274190,0.005758,-0.005249,0.249945,0,0);-ms-transform:matrix(0.274190,0.005758,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.274190,0.005758,-0.005249,0.249945,0,0);}
.m140_c01286{transform:matrix(0.274475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274475,0.000000,0.000000,0.250000,0,0);}
.m88_c01286{transform:matrix(0.274494,0.005764,-0.005249,0.249945,0,0);-ms-transform:matrix(0.274494,0.005764,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.274494,0.005764,-0.005249,0.249945,0,0);}
.m46_c01286{transform:matrix(0.274904,0.005773,-0.005249,0.249945,0,0);-ms-transform:matrix(0.274904,0.005773,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.274904,0.005773,-0.005249,0.249945,0,0);}
.mc7_c01286{transform:matrix(0.275185,0.005229,-0.004749,0.249955,0,0);-ms-transform:matrix(0.275185,0.005229,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.275185,0.005229,-0.004749,0.249955,0,0);}
.m99_c01286{transform:matrix(0.277749,0.005833,-0.005249,0.249945,0,0);-ms-transform:matrix(0.277749,0.005833,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.277749,0.005833,-0.005249,0.249945,0,0);}
.me0_c01286{transform:matrix(0.277760,0.004722,-0.004249,0.249964,0,0);-ms-transform:matrix(0.277760,0.004722,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.277760,0.004722,-0.004249,0.249964,0,0);}
.m71_c01286{transform:matrix(0.277774,0.005833,-0.005249,0.249945,0,0);-ms-transform:matrix(0.277774,0.005833,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.277774,0.005833,-0.005249,0.249945,0,0);}
.m97_c01286{transform:matrix(0.277844,0.005835,-0.005249,0.249945,0,0);-ms-transform:matrix(0.277844,0.005835,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.277844,0.005835,-0.005249,0.249945,0,0);}
.m7d_c01286{transform:matrix(0.277864,0.005835,-0.005249,0.249945,0,0);-ms-transform:matrix(0.277864,0.005835,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.277864,0.005835,-0.005249,0.249945,0,0);}
.m22_c01286{transform:matrix(0.278119,0.004450,-0.003999,0.249968,0,0);-ms-transform:matrix(0.278119,0.004450,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.278119,0.004450,-0.003999,0.249968,0,0);}
.med_c01286{transform:matrix(0.278140,0.004728,-0.004249,0.249964,0,0);-ms-transform:matrix(0.278140,0.004728,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.278140,0.004728,-0.004249,0.249964,0,0);}
.m10_c01286{transform:matrix(0.278539,0.004457,-0.003999,0.249968,0,0);-ms-transform:matrix(0.278539,0.004457,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.278539,0.004457,-0.003999,0.249968,0,0);}
.m4b_c01286{transform:matrix(0.279378,0.005867,-0.005249,0.249945,0,0);-ms-transform:matrix(0.279378,0.005867,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.279378,0.005867,-0.005249,0.249945,0,0);}
.m9f_c01286{transform:matrix(0.280118,0.005882,-0.005249,0.249945,0,0);-ms-transform:matrix(0.280118,0.005882,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.280118,0.005882,-0.005249,0.249945,0,0);}
.m5c_c01286{transform:matrix(0.280578,0.005892,-0.005249,0.249945,0,0);-ms-transform:matrix(0.280578,0.005892,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.280578,0.005892,-0.005249,0.249945,0,0);}
.m82_c01286{transform:matrix(0.281013,0.005901,-0.005249,0.249945,0,0);-ms-transform:matrix(0.281013,0.005901,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.281013,0.005901,-0.005249,0.249945,0,0);}
.ma0_c01286{transform:matrix(0.281498,0.005911,-0.005249,0.249945,0,0);-ms-transform:matrix(0.281498,0.005911,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.281498,0.005911,-0.005249,0.249945,0,0);}
.ma_c01286{transform:matrix(0.281705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281705,0.000000,0.000000,0.250000,0,0);}
.m8a_c01286{transform:matrix(0.281868,0.005919,-0.005249,0.249945,0,0);-ms-transform:matrix(0.281868,0.005919,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.281868,0.005919,-0.005249,0.249945,0,0);}
.me6_c01286{transform:matrix(0.282299,0.004799,-0.004249,0.249964,0,0);-ms-transform:matrix(0.282299,0.004799,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.282299,0.004799,-0.004249,0.249964,0,0);}
.m100_c01286{transform:matrix(0.282324,0.006776,-0.005998,0.249928,0,0);-ms-transform:matrix(0.282324,0.006776,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.282324,0.006776,-0.005998,0.249928,0,0);}
.m2b_c01286{transform:matrix(0.282504,0.004520,-0.003999,0.249968,0,0);-ms-transform:matrix(0.282504,0.004520,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.282504,0.004520,-0.003999,0.249968,0,0);}
.m5f_c01286{transform:matrix(0.283028,0.005944,-0.005249,0.249945,0,0);-ms-transform:matrix(0.283028,0.005944,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.283028,0.005944,-0.005249,0.249945,0,0);}
.m4f_c01286{transform:matrix(0.284372,0.005972,-0.005249,0.249945,0,0);-ms-transform:matrix(0.284372,0.005972,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.284372,0.005972,-0.005249,0.249945,0,0);}
.m27_c01286{transform:matrix(0.285608,0.004570,-0.003999,0.249968,0,0);-ms-transform:matrix(0.285608,0.004570,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.285608,0.004570,-0.003999,0.249968,0,0);}
.m13_c01286{transform:matrix(0.286693,0.004587,-0.003999,0.249968,0,0);-ms-transform:matrix(0.286693,0.004587,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.286693,0.004587,-0.003999,0.249968,0,0);}
.m12_c01286{transform:matrix(0.286918,0.004591,-0.003999,0.249968,0,0);-ms-transform:matrix(0.286918,0.004591,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.286918,0.004591,-0.003999,0.249968,0,0);}
.m49_c01286{transform:matrix(0.287352,0.006034,-0.005249,0.249945,0,0);-ms-transform:matrix(0.287352,0.006034,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.287352,0.006034,-0.005249,0.249945,0,0);}
.m55_c01286{transform:matrix(0.288331,0.006055,-0.005249,0.249945,0,0);-ms-transform:matrix(0.288331,0.006055,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.288331,0.006055,-0.005249,0.249945,0,0);}
.m4c_c01286{transform:matrix(0.289251,0.006074,-0.005249,0.249945,0,0);-ms-transform:matrix(0.289251,0.006074,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.289251,0.006074,-0.005249,0.249945,0,0);}
.m56_c01286{transform:matrix(0.289646,0.006083,-0.005249,0.249945,0,0);-ms-transform:matrix(0.289646,0.006083,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.289646,0.006083,-0.005249,0.249945,0,0);}
.m116_c01286{transform:matrix(0.290246,0.006966,-0.005998,0.249928,0,0);-ms-transform:matrix(0.290246,0.006966,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.290246,0.006966,-0.005998,0.249928,0,0);}
.m4e_c01286{transform:matrix(0.293400,0.006161,-0.005249,0.249945,0,0);-ms-transform:matrix(0.293400,0.006161,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.293400,0.006161,-0.005249,0.249945,0,0);}
.m53_c01286{transform:matrix(0.293930,0.006173,-0.005249,0.249945,0,0);-ms-transform:matrix(0.293930,0.006173,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.293930,0.006173,-0.005249,0.249945,0,0);}
.m11a_c01286{transform:matrix(0.294795,0.007075,-0.005998,0.249928,0,0);-ms-transform:matrix(0.294795,0.007075,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.294795,0.007075,-0.005998,0.249928,0,0);}
.m28_c01286{transform:matrix(0.295622,0.004730,-0.003999,0.249968,0,0);-ms-transform:matrix(0.295622,0.004730,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.295622,0.004730,-0.003999,0.249968,0,0);}
.m58_c01286{transform:matrix(0.301279,0.006327,-0.005249,0.249945,0,0);-ms-transform:matrix(0.301279,0.006327,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.301279,0.006327,-0.005249,0.249945,0,0);}
.m26_c01286{transform:matrix(0.301651,0.004826,-0.003999,0.249968,0,0);-ms-transform:matrix(0.301651,0.004826,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.301651,0.004826,-0.003999,0.249968,0,0);}
.m2a_c01286{transform:matrix(0.303096,0.004850,-0.003999,0.249968,0,0);-ms-transform:matrix(0.303096,0.004850,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.303096,0.004850,-0.003999,0.249968,0,0);}
.m5d_c01286{transform:matrix(0.303478,0.006373,-0.005249,0.249945,0,0);-ms-transform:matrix(0.303478,0.006373,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.303478,0.006373,-0.005249,0.249945,0,0);}
.m24_c01286{transform:matrix(0.303591,0.004857,-0.003999,0.249968,0,0);-ms-transform:matrix(0.303591,0.004857,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.303591,0.004857,-0.003999,0.249968,0,0);}
.m5b_c01286{transform:matrix(0.309342,0.006496,-0.005249,0.249945,0,0);-ms-transform:matrix(0.309342,0.006496,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.309342,0.006496,-0.005249,0.249945,0,0);}
.m126_c01286{transform:matrix(0.311105,0.007467,-0.005998,0.249928,0,0);-ms-transform:matrix(0.311105,0.007467,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.311105,0.007467,-0.005998,0.249928,0,0);}
.mb_c01286{transform:matrix(0.319080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319080,0.000000,0.000000,0.250000,0,0);}
.m106_c01286{transform:matrix(0.324876,0.007797,-0.005998,0.249928,0,0);-ms-transform:matrix(0.324876,0.007797,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.324876,0.007797,-0.005998,0.249928,0,0);}
.m8b_c01286{transform:matrix(0.335596,0.007048,-0.005249,0.249945,0,0);-ms-transform:matrix(0.335596,0.007048,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.335596,0.007048,-0.005249,0.249945,0,0);}
.m3_c01286{transform:matrix(0.388660,-0.002721,0.001750,0.249994,0,0);-ms-transform:matrix(0.388660,-0.002721,0.001750,0.249994,0,0);-webkit-transform:matrix(0.388660,-0.002721,0.001750,0.249994,0,0);}
.m8_c01286{transform:matrix(0.477668,-0.003344,0.001750,0.249994,0,0);-ms-transform:matrix(0.477668,-0.003344,0.001750,0.249994,0,0);-webkit-transform:matrix(0.477668,-0.003344,0.001750,0.249994,0,0);}
.m9_c01286{transform:matrix(0.558235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558235,0.000000,0.000000,0.250000,0,0);}
.m11e_c01286{transform:matrix(0.604031,0.014497,-0.005998,0.249928,0,0);-ms-transform:matrix(0.604031,0.014497,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.604031,0.014497,-0.005998,0.249928,0,0);}
.m13f_c01286{transform:matrix(0.609165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.609165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.609165,0.000000,0.000000,0.250000,0,0);}
.m0_c01286{transform:matrix(0.772776,-0.005409,0.001750,0.249994,0,0);-ms-transform:matrix(0.772776,-0.005409,0.001750,0.249994,0,0);-webkit-transform:matrix(0.772776,-0.005409,0.001750,0.249994,0,0);}
.m6_c01286{transform:matrix(0.945147,-0.006616,0.001750,0.249994,0,0);-ms-transform:matrix(0.945147,-0.006616,0.001750,0.249994,0,0);-webkit-transform:matrix(0.945147,-0.006616,0.001750,0.249994,0,0);}
.m5_c01286{transform:matrix(0.989036,-0.006923,0.001750,0.249994,0,0);-ms-transform:matrix(0.989036,-0.006923,0.001750,0.249994,0,0);-webkit-transform:matrix(0.989036,-0.006923,0.001750,0.249994,0,0);}
.m1_c01286{transform:matrix(1.161567,-0.008131,0.001750,0.249994,0,0);-ms-transform:matrix(1.161567,-0.008131,0.001750,0.249994,0,0);-webkit-transform:matrix(1.161567,-0.008131,0.001750,0.249994,0,0);}
.m4_c01286{transform:matrix(3.100644,-0.021705,0.001750,0.249994,0,0);-ms-transform:matrix(3.100644,-0.021705,0.001750,0.249994,0,0);-webkit-transform:matrix(3.100644,-0.021705,0.001750,0.249994,0,0);}
.v0_c01286{vertical-align:0.000000px;}
.ls0_c01286{letter-spacing:0.000000px;}
.sc__c01286{text-shadow:none;}
.sc0_c01286{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__c01286{-webkit-text-stroke:0px transparent;}
.sc0_c01286{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01286{word-spacing:0.000000px;}
.fc0_c01286{color:transparent;}
.fs11_c01286{font-size:24.000000px;}
.fs0_c01286{font-size:30.000735px;}
.fs4_c01286{font-size:66.008447px;}
.fs8_c01286{font-size:66.014551px;}
.fs12_c01286{font-size:71.967233px;}
.fs1_c01286{font-size:72.000000px;}
.fs2_c01286{font-size:72.009215px;}
.fsf_c01286{font-size:72.010403px;}
.fsd_c01286{font-size:72.012995px;}
.fs7_c01286{font-size:72.015874px;}
.fs10_c01286{font-size:72.020733px;}
.fsb_c01286{font-size:78.009983px;}
.fs9_c01286{font-size:78.017197px;}
.fsa_c01286{font-size:78.018874px;}
.fsc_c01286{font-size:78.022461px;}
.fse_c01286{font-size:84.012137px;}
.fs6_c01286{font-size:84.018520px;}
.fs5_c01286{font-size:102.013055px;}
.fs3_c01286{font-size:126.016127px;}
.y0_c01286{bottom:0.000000px;}
.y14d_c01286{bottom:30.415071px;}
.y14c_c01286{bottom:31.530256px;}
.y14b_c01286{bottom:33.704890px;}
.y14a_c01286{bottom:35.906799px;}
.y149_c01286{bottom:38.493124px;}
.y148_c01286{bottom:41.738444px;}
.y147_c01286{bottom:43.610286px;}
.y146_c01286{bottom:44.319176px;}
.y145_c01286{bottom:46.159239px;}
.y144_c01286{bottom:47.262000px;}
.y143_c01286{bottom:60.750000px;}
.y142_c01286{bottom:77.689044px;}
.y141_c01286{bottom:77.689368px;}
.y140_c01286{bottom:105.112848px;}
.y13f_c01286{bottom:107.349828px;}
.y13e_c01286{bottom:108.014484px;}
.y13d_c01286{bottom:108.450816px;}
.y13c_c01286{bottom:110.456628px;}
.y13b_c01286{bottom:110.888268px;}
.y13a_c01286{bottom:111.992136px;}
.y139_c01286{bottom:112.683648px;}
.y138_c01286{bottom:114.428508px;}
.y137_c01286{bottom:116.587320px;}
.y136_c01286{bottom:136.291584px;}
.y135_c01286{bottom:136.824204px;}
.y134_c01286{bottom:138.956772px;}
.y133_c01286{bottom:139.786752px;}
.y132_c01286{bottom:142.133088px;}
.y131_c01286{bottom:144.052176px;}
.y130_c01286{bottom:145.374024px;}
.y12f_c01286{bottom:146.178552px;}
.y12e_c01286{bottom:148.531656px;}
.y12d_c01286{bottom:149.354364px;}
.y12c_c01286{bottom:150.129552px;}
.y12b_c01286{bottom:151.968720px;}
.y12a_c01286{bottom:173.753280px;}
.y129_c01286{bottom:175.704540px;}
.y128_c01286{bottom:177.379872px;}
.y127_c01286{bottom:178.500048px;}
.y126_c01286{bottom:180.686712px;}
.y125_c01286{bottom:181.274616px;}
.y124_c01286{bottom:182.966940px;}
.y123_c01286{bottom:184.067004px;}
.y122_c01286{bottom:186.226308px;}
.y121_c01286{bottom:187.628748px;}
.y120_c01286{bottom:188.180664px;}
.y11f_c01286{bottom:190.051524px;}
.y11e_c01286{bottom:216.855516px;}
.y11d_c01286{bottom:217.076676px;}
.y11c_c01286{bottom:217.998924px;}
.y11b_c01286{bottom:218.163000px;}
.y11a_c01286{bottom:219.113796px;}
.y119_c01286{bottom:219.489420px;}
.y118_c01286{bottom:220.171668px;}
.y117_c01286{bottom:220.790088px;}
.y116_c01286{bottom:221.101284px;}
.y115_c01286{bottom:247.439592px;}
.y114_c01286{bottom:249.258192px;}
.y113_c01286{bottom:250.055916px;}
.y112_c01286{bottom:251.840832px;}
.y111_c01286{bottom:254.052660px;}
.y110_c01286{bottom:254.636160px;}
.y10f_c01286{bottom:256.021212px;}
.y10e_c01286{bottom:257.216832px;}
.y10d_c01286{bottom:257.809344px;}
.y10c_c01286{bottom:258.402588px;}
.y10b_c01286{bottom:259.183968px;}
.y10a_c01286{bottom:282.180060px;}
.y109_c01286{bottom:283.582248px;}
.y108_c01286{bottom:284.062572px;}
.y107_c01286{bottom:285.708180px;}
.y106_c01286{bottom:286.387416px;}
.y105_c01286{bottom:288.021564px;}
.y104_c01286{bottom:289.665720px;}
.y103_c01286{bottom:290.590356px;}
.y102_c01286{bottom:291.975024px;}
.y101_c01286{bottom:293.574780px;}
.y100_c01286{bottom:294.493932px;}
.yff_c01286{bottom:295.644612px;}
.yfe_c01286{bottom:317.716464px;}
.yfd_c01286{bottom:319.066860px;}
.yfc_c01286{bottom:319.855620px;}
.yfb_c01286{bottom:320.918952px;}
.yfa_c01286{bottom:323.020668px;}
.yf9_c01286{bottom:324.913044px;}
.yf8_c01286{bottom:325.950024px;}
.yf7_c01286{bottom:327.544716px;}
.yf6_c01286{bottom:328.359720px;}
.yf5_c01286{bottom:330.487500px;}
.yf2_c01286{bottom:364.363431px;}
.yf4_c01286{bottom:364.363459px;}
.yf3_c01286{bottom:364.363773px;}
.yf1_c01286{bottom:390.370644px;}
.yf0_c01286{bottom:391.047709px;}
.yef_c01286{bottom:392.011359px;}
.yee_c01286{bottom:393.214344px;}
.yed_c01286{bottom:393.866589px;}
.yec_c01286{bottom:394.517942px;}
.yeb_c01286{bottom:396.175440px;}
.yea_c01286{bottom:398.655362px;}
.ye9_c01286{bottom:399.323650px;}
.ye8_c01286{bottom:423.877346px;}
.ye7_c01286{bottom:425.008194px;}
.ye6_c01286{bottom:425.944732px;}
.ye5_c01286{bottom:426.531539px;}
.ye4_c01286{bottom:428.391865px;}
.ye3_c01286{bottom:428.988642px;}
.ye2_c01286{bottom:429.548546px;}
.ye1_c01286{bottom:430.682964px;}
.ye0_c01286{bottom:431.242944px;}
.ydf_c01286{bottom:431.985861px;}
.yde_c01286{bottom:433.134202px;}
.ydd_c01286{bottom:433.689593px;}
.ydc_c01286{bottom:434.969871px;}
.ydb_c01286{bottom:461.544102px;}
.yda_c01286{bottom:462.131851px;}
.yd9_c01286{bottom:463.426588px;}
.yd8_c01286{bottom:464.515107px;}
.yd7_c01286{bottom:466.268385px;}
.yd6_c01286{bottom:467.015662px;}
.yd5_c01286{bottom:468.160052px;}
.yd4_c01286{bottom:468.903759px;}
.yd3_c01286{bottom:470.565339px;}
.yd2_c01286{bottom:471.138860px;}
.yd1_c01286{bottom:471.693000px;}
.yd0_c01286{bottom:494.440546px;}
.ycf_c01286{bottom:495.065409px;}
.yce_c01286{bottom:496.734711px;}
.ycd_c01286{bottom:498.022113px;}
.ycc_c01286{bottom:499.058686px;}
.ycb_c01286{bottom:500.751672px;}
.yca_c01286{bottom:501.361743px;}
.yc9_c01286{bottom:502.028814px;}
.yc8_c01286{bottom:502.844826px;}
.yc7_c01286{bottom:504.754212px;}
.yc6_c01286{bottom:505.364283px;}
.yc5_c01286{bottom:505.984500px;}
.yc4_c01286{bottom:532.738248px;}
.yc3_c01286{bottom:535.648164px;}
.yc2_c01286{bottom:536.730792px;}
.yc1_c01286{bottom:537.540576px;}
.yc0_c01286{bottom:540.709332px;}
.ybf_c01286{bottom:541.246704px;}
.ybe_c01286{bottom:542.829840px;}
.ybd_c01286{bottom:543.899364px;}
.ybc_c01286{bottom:545.946000px;}
.ybb_c01286{bottom:568.684272px;}
.yba_c01286{bottom:569.224416px;}
.yb9_c01286{bottom:570.801576px;}
.yb8_c01286{bottom:571.354464px;}
.yb7_c01286{bottom:573.272928px;}
.yb6_c01286{bottom:574.197912px;}
.yb5_c01286{bottom:574.719864px;}
.yb4_c01286{bottom:576.482760px;}
.yb3_c01286{bottom:576.836808px;}
.yb2_c01286{bottom:578.073000px;}
.yb1_c01286{bottom:602.998524px;}
.yb0_c01286{bottom:604.923282px;}
.yaf_c01286{bottom:605.659941px;}
.yae_c01286{bottom:607.139430px;}
.yad_c01286{bottom:608.351685px;}
.yac_c01286{bottom:608.830746px;}
.yab_c01286{bottom:610.038876px;}
.yaa_c01286{bottom:610.799130px;}
.ya9_c01286{bottom:612.005049px;}
.ya8_c01286{bottom:612.961554px;}
.ya7_c01286{bottom:613.716000px;}
.ya6_c01286{bottom:646.363620px;}
.ya5_c01286{bottom:647.149917px;}
.ya4_c01286{bottom:649.006950px;}
.ya3_c01286{bottom:672.996243px;}
.ya2_c01286{bottom:673.735365px;}
.ya1_c01286{bottom:674.299464px;}
.ya0_c01286{bottom:674.674865px;}
.y9f_c01286{bottom:675.998522px;}
.y9e_c01286{bottom:676.582301px;}
.y9d_c01286{bottom:677.321423px;}
.y9c_c01286{bottom:679.194192px;}
.y9b_c01286{bottom:680.125446px;}
.y9a_c01286{bottom:682.177818px;}
.y99_c01286{bottom:682.764696px;}
.y98_c01286{bottom:708.994928px;}
.y97_c01286{bottom:709.572942px;}
.y96_c01286{bottom:710.519561px;}
.y95_c01286{bottom:710.890508px;}
.y94_c01286{bottom:712.401981px;}
.y93_c01286{bottom:713.517386px;}
.y92_c01286{bottom:714.665232px;}
.y91_c01286{bottom:715.220896px;}
.y90_c01286{bottom:717.111752px;}
.y8f_c01286{bottom:718.423836px;}
.y8e_c01286{bottom:718.949937px;}
.y8d_c01286{bottom:745.729206px;}
.y8c_c01286{bottom:747.327218px;}
.y8b_c01286{bottom:748.141878px;}
.y8a_c01286{bottom:749.332229px;}
.y89_c01286{bottom:750.349717px;}
.y88_c01286{bottom:750.774914px;}
.y87_c01286{bottom:751.481178px;}
.y86_c01286{bottom:752.066978px;}
.y85_c01286{bottom:752.498667px;}
.y84_c01286{bottom:754.057490px;}
.y83_c01286{bottom:780.161107px;}
.y82_c01286{bottom:781.161869px;}
.y81_c01286{bottom:781.888338px;}
.y80_c01286{bottom:782.187320px;}
.y7f_c01286{bottom:783.624141px;}
.y7e_c01286{bottom:784.481184px;}
.y7d_c01286{bottom:785.635992px;}
.y7c_c01286{bottom:786.080700px;}
.y7b_c01286{bottom:786.945623px;}
.y7a_c01286{bottom:787.791215px;}
.y79_c01286{bottom:788.355612px;}
.y78_c01286{bottom:818.347278px;}
.y77_c01286{bottom:818.688292px;}
.y76_c01286{bottom:819.120182px;}
.y75_c01286{bottom:819.685156px;}
.y74_c01286{bottom:820.028054px;}
.y73_c01286{bottom:821.016498px;}
.y72_c01286{bottom:821.894874px;}
.y71_c01286{bottom:822.456455px;}
.y70_c01286{bottom:823.115466px;}
.y6f_c01286{bottom:823.784968px;}
.y6e_c01286{bottom:824.307972px;}
.y6d_c01286{bottom:824.542979px;}
.y6c_c01286{bottom:850.580792px;}
.y6b_c01286{bottom:850.923576px;}
.y6a_c01286{bottom:851.750299px;}
.y69_c01286{bottom:852.255510px;}
.y68_c01286{bottom:853.568724px;}
.y67_c01286{bottom:854.082621px;}
.y66_c01286{bottom:855.570866px;}
.y65_c01286{bottom:856.741716px;}
.y64_c01286{bottom:857.916548px;}
.y63_c01286{bottom:858.733974px;}
.y62_c01286{bottom:860.192084px;}
.y61_c01286{bottom:887.595341px;}
.y60_c01286{bottom:888.079978px;}
.y5f_c01286{bottom:889.455358px;}
.y5e_c01286{bottom:889.769193px;}
.y5d_c01286{bottom:891.337775px;}
.y5c_c01286{bottom:891.807012px;}
.y5b_c01286{bottom:892.264200px;}
.y5a_c01286{bottom:893.357964px;}
.y59_c01286{bottom:893.811769px;}
.y58_c01286{bottom:895.028289px;}
.y57_c01286{bottom:895.818599px;}
.y56_c01286{bottom:896.108460px;}
.y55_c01286{bottom:922.996296px;}
.y54_c01286{bottom:923.652624px;}
.y53_c01286{bottom:924.439499px;}
.y52_c01286{bottom:925.043496px;}
.y51_c01286{bottom:926.244675px;}
.y50_c01286{bottom:927.833757px;}
.y4f_c01286{bottom:928.640418px;}
.y4e_c01286{bottom:930.036468px;}
.y4d_c01286{bottom:931.377731px;}
.y4c_c01286{bottom:932.198169px;}
.y4b_c01286{bottom:933.380172px;}
.y4a_c01286{bottom:956.340054px;}
.y49_c01286{bottom:956.884249px;}
.y48_c01286{bottom:958.303147px;}
.y47_c01286{bottom:959.543217px;}
.y46_c01286{bottom:960.101183px;}
.y45_c01286{bottom:960.628017px;}
.y44_c01286{bottom:960.980980px;}
.y43_c01286{bottom:962.239179px;}
.y42_c01286{bottom:963.288836px;}
.y41_c01286{bottom:963.823915px;}
.y40_c01286{bottom:964.877301px;}
.y3f_c01286{bottom:965.576526px;}
.y3e_c01286{bottom:966.596268px;}
.y3d_c01286{bottom:990.804224px;}
.y3c_c01286{bottom:993.387255px;}
.y3b_c01286{bottom:994.323781px;}
.y3a_c01286{bottom:995.469216px;}
.y39_c01286{bottom:996.426753px;}
.y38_c01286{bottom:998.286828px;}
.y37_c01286{bottom:1000.584942px;}
.y36_c01286{bottom:1001.537281px;}
.y35_c01286{bottom:1002.246000px;}
.y34_c01286{bottom:1025.007132px;}
.y33_c01286{bottom:1025.333328px;}
.y32_c01286{bottom:1025.779080px;}
.y31_c01286{bottom:1026.667764px;}
.y30_c01286{bottom:1027.113516px;}
.y2f_c01286{bottom:1027.465068px;}
.y2e_c01286{bottom:1028.447952px;}
.y2d_c01286{bottom:1028.774148px;}
.y2c_c01286{bottom:1029.100344px;}
.y2b_c01286{bottom:1029.778092px;}
.y2a_c01286{bottom:1064.586792px;}
.y29_c01286{bottom:1065.774084px;}
.y28_c01286{bottom:1066.268196px;}
.y27_c01286{bottom:1067.596944px;}
.y26_c01286{bottom:1068.440292px;}
.y25_c01286{bottom:1069.764600px;}
.y24_c01286{bottom:1070.271216px;}
.y23_c01286{bottom:1071.754320px;}
.y22_c01286{bottom:1072.397556px;}
.y21_c01286{bottom:1073.567820px;}
.y20_c01286{bottom:1074.052716px;}
.y1f_c01286{bottom:1098.282672px;}
.y1e_c01286{bottom:1099.803408px;}
.y1d_c01286{bottom:1100.347812px;}
.y1c_c01286{bottom:1101.496320px;}
.y1b_c01286{bottom:1102.827384px;}
.y1a_c01286{bottom:1103.952288px;}
.y19_c01286{bottom:1104.520968px;}
.y18_c01286{bottom:1105.662828px;}
.y17_c01286{bottom:1106.394576px;}
.y16_c01286{bottom:1106.950080px;}
.y15_c01286{bottom:1108.078488px;}
.y14_c01286{bottom:1132.842168px;}
.y13_c01286{bottom:1133.550696px;}
.y12_c01286{bottom:1135.512480px;}
.y11_c01286{bottom:1137.461232px;}
.y10_c01286{bottom:1137.806016px;}
.yf_c01286{bottom:1139.747184px;}
.ye_c01286{bottom:1141.337016px;}
.yd_c01286{bottom:1141.858704px;}
.yc_c01286{bottom:1142.562504px;}
.yb_c01286{bottom:1142.913000px;}
.ya_c01286{bottom:1242.118500px;}
.y1_c01286{bottom:1244.160000px;}
.y2_c01286{bottom:1244.891409px;}
.y3_c01286{bottom:1245.138988px;}
.y4_c01286{bottom:1245.229708px;}
.y5_c01286{bottom:1245.456498px;}
.y6_c01286{bottom:1246.220037px;}
.y7_c01286{bottom:1246.571451px;}
.y8_c01286{bottom:1246.928661px;}
.y9_c01286{bottom:1247.335000px;}
.h13_c01286{height:24.000000px;}
.h2_c01286{height:30.000735px;}
.h6_c01286{height:66.008447px;}
.ha_c01286{height:66.014551px;}
.h14_c01286{height:71.967233px;}
.h3_c01286{height:72.000000px;}
.h4_c01286{height:72.009215px;}
.h11_c01286{height:72.010403px;}
.hf_c01286{height:72.012995px;}
.h9_c01286{height:72.015874px;}
.h12_c01286{height:72.020733px;}
.hd_c01286{height:78.009983px;}
.hb_c01286{height:78.017197px;}
.hc_c01286{height:78.018874px;}
.he_c01286{height:78.022461px;}
.h10_c01286{height:84.012137px;}
.h8_c01286{height:84.018520px;}
.h7_c01286{height:102.013055px;}
.h5_c01286{height:126.016127px;}
.h1_c01286{height:1250.250000px;}
.h0_c01286{height:1250.370000px;}
.w1_c01286{width:912.000000px;}
.w0_c01286{width:912.300000px;}
.x0_c01286{left:0.000000px;}
.xce_c01286{left:159.840540px;}
.xc1_c01286{left:161.486172px;}
.xba_c01286{left:162.542832px;}
.xb0_c01286{left:163.691829px;}
.x9f_c01286{left:164.994000px;}
.x82_c01286{left:167.180407px;}
.x68_c01286{left:169.902039px;}
.x2c_c01286{left:171.228984px;}
.x47_c01286{left:172.587396px;}
.x17_c01286{left:173.676096px;}
.x22_c01286{left:175.086684px;}
.xd_c01286{left:176.389500px;}
.x4f_c01286{left:192.311145px;}
.x60_c01286{left:194.007332px;}
.xa8_c01286{left:197.145000px;}
.xe_c01286{left:198.295500px;}
.x79_c01286{left:200.103432px;}
.x83_c01286{left:201.701305px;}
.xc2_c01286{left:204.924936px;}
.x23_c01286{left:207.455712px;}
.x69_c01286{left:213.356847px;}
.xbb_c01286{left:217.304256px;}
.xa0_c01286{left:229.746000px;}
.xa9_c01286{left:230.881500px;}
.xc9_c01286{left:236.797428px;}
.x3d_c01286{left:237.918019px;}
.x2d_c01286{left:239.000988px;}
.x18_c01286{left:240.075540px;}
.xf_c01286{left:242.283000px;}
.x61_c01286{left:246.352928px;}
.x50_c01286{left:248.738929px;}
.x9a_c01286{left:252.430500px;}
.x95_c01286{left:253.621500px;}
.xca_c01286{left:258.855888px;}
.xbc_c01286{left:261.042888px;}
.xd6_c01286{left:266.917500px;}
.x58_c01286{left:269.001016px;}
.x2e_c01286{left:271.672632px;}
.x19_c01286{left:272.731512px;}
.x10_c01286{left:274.888500px;}
.x7a_c01286{left:277.304421px;}
.x6a_c01286{left:278.419778px;}
.x35_c01286{left:281.613000px;}
.x48_c01286{left:283.805889px;}
.x24_c01286{left:285.473460px;}
.x72_c01286{left:289.246983px;}
.xc5_c01286{left:293.638992px;}
.x9b_c01286{left:296.994000px;}
.x8a_c01286{left:299.790282px;}
.xcf_c01286{left:303.051540px;}
.x2f_c01286{left:304.344276px;}
.x8c_c01286{left:309.948000px;}
.x62_c01286{left:313.320894px;}
.x1a_c01286{left:315.746316px;}
.x73_c01286{left:322.452059px;}
.x59_c01286{left:323.504383px;}
.x25_c01286{left:328.395156px;}
.xa1_c01286{left:330.240000px;}
.x51_c01286{left:335.681218px;}
.xbd_c01286{left:337.204860px;}
.xad_c01286{left:339.991362px;}
.x6b_c01286{left:344.903429px;}
.x3e_c01286{left:347.530048px;}
.x8d_c01286{left:353.425500px;}
.x8b_c01286{left:355.955535px;}
.x49_c01286{left:358.323082px;}
.x36_c01286{left:360.711000px;}
.x9c_c01286{left:362.958000px;}
.x52_c01286{left:368.081475px;}
.xa_c01286{left:373.140000px;}
.x11_c01286{left:374.253000px;}
.x84_c01286{left:377.222047px;}
.x63_c01286{left:379.217609px;}
.x3f_c01286{left:381.013576px;}
.x1b_c01286{left:382.892736px;}
.x96_c01286{left:385.930500px;}
.x7b_c01286{left:388.568776px;}
.xc6_c01286{left:391.168272px;}
.xb4_c01286{left:394.458000px;}
.xcb_c01286{left:401.320968px;}
.x30_c01286{left:402.627708px;}
.x8e_c01286{left:408.240000px;}
.xc3_c01286{left:414.202068px;}
.x1c_c01286{left:416.372208px;}
.xb_c01286{left:418.500000px;}
.x74_c01286{left:421.852754px;}
.x26_c01286{left:427.278240px;}
.xd7_c01286{left:434.130619px;}
.x1_c01286{left:435.553500px;}
.x31_c01286{left:437.728068px;}
.xa2_c01286{left:440.406000px;}
.x8f_c01286{left:442.797000px;}
.xc7_c01286{left:444.903696px;}
.x40_c01286{left:446.646975px;}
.x75_c01286{left:454.534235px;}
.x27_c01286{left:461.004768px;}
.xc_c01286{left:463.050000px;}
.x6c_c01286{left:468.020124px;}
.x37_c01286{left:470.145000px;}
.x97_c01286{left:476.364000px;}
.x53_c01286{left:478.809729px;}
.x4a_c01286{left:480.721800px;}
.x1d_c01286{left:482.552652px;}
.xaa_c01286{left:483.643500px;}
.x85_c01286{left:487.410808px;}
.x7c_c01286{left:488.768187px;}
.x12_c01286{left:495.576000px;}
.x90_c01286{left:497.712000px;}
.xb5_c01286{left:504.111000px;}
.x54_c01286{left:512.302143px;}
.x13_c01286{left:517.125000px;}
.x91_c01286{left:519.487500px;}
.x64_c01286{left:523.177341px;}
.x41_c01286{left:525.283728px;}
.xb1_c01286{left:527.413671px;}
.xa3_c01286{left:529.510500px;}
.x86_c01286{left:530.896462px;}
.x76_c01286{left:532.856402px;}
.x6d_c01286{left:533.914181px;}
.xcc_c01286{left:536.538228px;}
.x2_c01286{left:540.040500px;}
.x42_c01286{left:547.379559px;}
.x28_c01286{left:549.306684px;}
.x9d_c01286{left:551.121000px;}
.x7d_c01286{left:554.388199px;}
.x38_c01286{left:558.720000px;}
.x1e_c01286{left:560.867904px;}
.x87_c01286{left:565.198329px;}
.xd2_c01286{left:567.652476px;}
.x4b_c01286{left:568.969344px;}
.x32_c01286{left:571.111860px;}
.x3_c01286{left:575.409000px;}
.x5a_c01286{left:579.033045px;}
.x43_c01286{left:580.327524px;}
.xb6_c01286{left:582.960000px;}
.xa4_c01286{left:584.067000px;}
.xab_c01286{left:586.777500px;}
.x4_c01286{left:588.369000px;}
.xd3_c01286{left:589.460064px;}
.x98_c01286{left:596.268000px;}
.xbe_c01286{left:603.291012px;}
.x39_c01286{left:604.317000px;}
.x29_c01286{left:605.485572px;}
.xd8_c01286{left:610.670403px;}
.x5b_c01286{left:613.294361px;}
.x33_c01286{left:615.663132px;}
.x5_c01286{left:620.767500px;}
.x65_c01286{left:622.054679px;}
.x55_c01286{left:624.370117px;}
.x1f_c01286{left:628.429824px;}
.x99_c01286{left:630.823500px;}
.x4c_c01286{left:635.672533px;}
.x14_c01286{left:638.922000px;}
.x92_c01286{left:641.839500px;}
.x7e_c01286{left:643.299165px;}
.x6e_c01286{left:644.424234px;}
.x56_c01286{left:646.817925px;}
.x34_c01286{left:648.334776px;}
.xac_c01286{left:650.808000px;}
.xa5_c01286{left:651.825000px;}
.x66_c01286{left:656.319585px;}
.x3a_c01286{left:658.861500px;}
.x20_c01286{left:660.485820px;}
.x7f_c01286{left:665.107992px;}
.x6f_c01286{left:667.379577px;}
.x4d_c01286{left:669.222144px;}
.xb7_c01286{left:670.531500px;}
.x93_c01286{left:675.324000px;}
.xd9_c01286{left:677.328178px;}
.x77_c01286{left:687.073295px;}
.x44_c01286{left:692.674305px;}
.x2a_c01286{left:694.064988px;}
.xae_c01286{left:695.351862px;}
.x88_c01286{left:698.336011px;}
.x5c_c01286{left:700.839386px;}
.xd0_c01286{left:702.005040px;}
.x3b_c01286{left:703.458000px;}
.x4e_c01286{left:712.909384px;}
.xbf_c01286{left:714.042504px;}
.xb2_c01286{left:715.383572px;}
.x9e_c01286{left:717.477000px;}
.x80_c01286{left:720.761154px;}
.x70_c01286{left:723.268464px;}
.x2b_c01286{left:727.010016px;}
.x6_c01286{left:729.844500px;}
.x5d_c01286{left:734.544138px;}
.xcd_c01286{left:735.811440px;}
.xc0_c01286{left:736.932660px;}
.xa6_c01286{left:739.683000px;}
.x89_c01286{left:741.821665px;}
.xda_c01286{left:743.160280px;}
.x57_c01286{left:745.112383px;}
.xb8_c01286{left:747.702000px;}
.x21_c01286{left:749.905380px;}
.x81_c01286{left:754.788520px;}
.x67_c01286{left:756.026611px;}
.xb3_c01286{left:760.506601px;}
.x15_c01286{left:761.533500px;}
.x94_c01286{left:762.813000px;}
.xc8_c01286{left:767.692848px;}
.xa7_c01286{left:772.570500px;}
.xdb_c01286{left:776.919987px;}
.x7_c01286{left:780.046500px;}
.x45_c01286{left:781.321597px;}
.x5e_c01286{left:789.704600px;}
.xd1_c01286{left:790.862040px;}
.x71_c01286{left:800.222379px;}
.xb9_c01286{left:803.968500px;}
.x16_c01286{left:805.816500px;}
.x78_c01286{left:809.975427px;}
.x5f_c01286{left:812.601997px;}
.xc4_c01286{left:813.991596px;}
.x46_c01286{left:815.310657px;}
.xaf_c01286{left:816.962862px;}
.x3c_c01286{left:826.459500px;}
.x8_c01286{left:831.076500px;}
.x9_c01286{left:889.125000px;}
.xd5_c01286{left:891.810000px;}
.xd4_c01286{left:895.050000px;}
@media print{
.v0_c01286{vertical-align:0.000000pt;}
.ls0_c01286{letter-spacing:0.000000pt;}
.ws0_c01286{word-spacing:0.000000pt;}
.fs11_c01286{font-size:21.333333pt;}
.fs0_c01286{font-size:26.667320pt;}
.fs4_c01286{font-size:58.674176pt;}
.fs8_c01286{font-size:58.679601pt;}
.fs12_c01286{font-size:63.970873pt;}
.fs1_c01286{font-size:64.000000pt;}
.fs2_c01286{font-size:64.008191pt;}
.fsf_c01286{font-size:64.009247pt;}
.fsd_c01286{font-size:64.011551pt;}
.fs7_c01286{font-size:64.014110pt;}
.fs10_c01286{font-size:64.018429pt;}
.fsb_c01286{font-size:69.342207pt;}
.fs9_c01286{font-size:69.348620pt;}
.fsa_c01286{font-size:69.350110pt;}
.fsc_c01286{font-size:69.353298pt;}
.fse_c01286{font-size:74.677455pt;}
.fs6_c01286{font-size:74.683129pt;}
.fs5_c01286{font-size:90.678271pt;}
.fs3_c01286{font-size:112.014335pt;}
.y0_c01286{bottom:0.000000pt;}
.y14d_c01286{bottom:27.035619pt;}
.y14c_c01286{bottom:28.026895pt;}
.y14b_c01286{bottom:29.959903pt;}
.y14a_c01286{bottom:31.917155pt;}
.y149_c01286{bottom:34.216111pt;}
.y148_c01286{bottom:37.100839pt;}
.y147_c01286{bottom:38.764699pt;}
.y146_c01286{bottom:39.394823pt;}
.y145_c01286{bottom:41.030435pt;}
.y144_c01286{bottom:42.010667pt;}
.y143_c01286{bottom:54.000000pt;}
.y142_c01286{bottom:69.056928pt;}
.y141_c01286{bottom:69.057216pt;}
.y140_c01286{bottom:93.433643pt;}
.y13f_c01286{bottom:95.422069pt;}
.y13e_c01286{bottom:96.012875pt;}
.y13d_c01286{bottom:96.400725pt;}
.y13c_c01286{bottom:98.183669pt;}
.y13b_c01286{bottom:98.567349pt;}
.y13a_c01286{bottom:99.548565pt;}
.y139_c01286{bottom:100.163243pt;}
.y138_c01286{bottom:101.714229pt;}
.y137_c01286{bottom:103.633173pt;}
.y136_c01286{bottom:121.148075pt;}
.y135_c01286{bottom:121.621515pt;}
.y134_c01286{bottom:123.517131pt;}
.y133_c01286{bottom:124.254891pt;}
.y132_c01286{bottom:126.340523pt;}
.y131_c01286{bottom:128.046379pt;}
.y130_c01286{bottom:129.221355pt;}
.y12f_c01286{bottom:129.936491pt;}
.y12e_c01286{bottom:132.028139pt;}
.y12d_c01286{bottom:132.759435pt;}
.y12c_c01286{bottom:133.448491pt;}
.y12b_c01286{bottom:135.083307pt;}
.y12a_c01286{bottom:154.447360pt;}
.y129_c01286{bottom:156.181813pt;}
.y128_c01286{bottom:157.670997pt;}
.y127_c01286{bottom:158.666709pt;}
.y126_c01286{bottom:160.610411pt;}
.y125_c01286{bottom:161.132992pt;}
.y124_c01286{bottom:162.637280pt;}
.y123_c01286{bottom:163.615115pt;}
.y122_c01286{bottom:165.534496pt;}
.y121_c01286{bottom:166.781109pt;}
.y120_c01286{bottom:167.271701pt;}
.y11f_c01286{bottom:168.934688pt;}
.y11e_c01286{bottom:192.760459pt;}
.y11d_c01286{bottom:192.957045pt;}
.y11c_c01286{bottom:193.776821pt;}
.y11b_c01286{bottom:193.922667pt;}
.y11a_c01286{bottom:194.767819pt;}
.y119_c01286{bottom:195.101707pt;}
.y118_c01286{bottom:195.708149pt;}
.y117_c01286{bottom:196.257856pt;}
.y116_c01286{bottom:196.534475pt;}
.y115_c01286{bottom:219.946304pt;}
.y114_c01286{bottom:221.562837pt;}
.y113_c01286{bottom:222.271925pt;}
.y112_c01286{bottom:223.858517pt;}
.y111_c01286{bottom:225.824587pt;}
.y110_c01286{bottom:226.343253pt;}
.y10f_c01286{bottom:227.574411pt;}
.y10e_c01286{bottom:228.637184pt;}
.y10d_c01286{bottom:229.163861pt;}
.y10c_c01286{bottom:229.691189pt;}
.y10b_c01286{bottom:230.385749pt;}
.y10a_c01286{bottom:250.826720pt;}
.y109_c01286{bottom:252.073109pt;}
.y108_c01286{bottom:252.500064pt;}
.y107_c01286{bottom:253.962827pt;}
.y106_c01286{bottom:254.566592pt;}
.y105_c01286{bottom:256.019168pt;}
.y104_c01286{bottom:257.480640pt;}
.y103_c01286{bottom:258.302539pt;}
.y102_c01286{bottom:259.533355pt;}
.y101_c01286{bottom:260.955360pt;}
.y100_c01286{bottom:261.772384pt;}
.yff_c01286{bottom:262.795211pt;}
.yfe_c01286{bottom:282.414635pt;}
.yfd_c01286{bottom:283.614987pt;}
.yfc_c01286{bottom:284.316107pt;}
.yfb_c01286{bottom:285.261291pt;}
.yfa_c01286{bottom:287.129483pt;}
.yf9_c01286{bottom:288.811595pt;}
.yf8_c01286{bottom:289.733355pt;}
.yf7_c01286{bottom:291.150859pt;}
.yf6_c01286{bottom:291.875307pt;}
.yf5_c01286{bottom:293.766667pt;}
.yf2_c01286{bottom:323.878605pt;}
.yf4_c01286{bottom:323.878631pt;}
.yf3_c01286{bottom:323.878909pt;}
.yf1_c01286{bottom:346.996128pt;}
.yf0_c01286{bottom:347.597964pt;}
.yef_c01286{bottom:348.454541pt;}
.yee_c01286{bottom:349.523861pt;}
.yed_c01286{bottom:350.103635pt;}
.yec_c01286{bottom:350.682615pt;}
.yeb_c01286{bottom:352.155947pt;}
.yea_c01286{bottom:354.360321pt;}
.ye9_c01286{bottom:354.954356pt;}
.ye8_c01286{bottom:376.779863pt;}
.ye7_c01286{bottom:377.785061pt;}
.ye6_c01286{bottom:378.617540pt;}
.ye5_c01286{bottom:379.139145pt;}
.ye4_c01286{bottom:380.792769pt;}
.ye3_c01286{bottom:381.323237pt;}
.ye2_c01286{bottom:381.820929pt;}
.ye1_c01286{bottom:382.829301pt;}
.ye0_c01286{bottom:383.327061pt;}
.ydf_c01286{bottom:383.987432pt;}
.yde_c01286{bottom:385.008180pt;}
.ydd_c01286{bottom:385.501860pt;}
.ydc_c01286{bottom:386.639885pt;}
.ydb_c01286{bottom:410.261424pt;}
.yda_c01286{bottom:410.783868pt;}
.yd9_c01286{bottom:411.934745pt;}
.yd8_c01286{bottom:412.902317pt;}
.yd7_c01286{bottom:414.460787pt;}
.yd6_c01286{bottom:415.125033pt;}
.yd5_c01286{bottom:416.142268pt;}
.yd4_c01286{bottom:416.803341pt;}
.yd3_c01286{bottom:418.280301pt;}
.yd2_c01286{bottom:418.790097pt;}
.yd1_c01286{bottom:419.282667pt;}
.yd0_c01286{bottom:439.502708pt;}
.ycf_c01286{bottom:440.058141pt;}
.yce_c01286{bottom:441.541965pt;}
.ycd_c01286{bottom:442.686323pt;}
.ycc_c01286{bottom:443.607721pt;}
.ycb_c01286{bottom:445.112597pt;}
.yca_c01286{bottom:445.654883pt;}
.yc9_c01286{bottom:446.247835pt;}
.yc8_c01286{bottom:446.973179pt;}
.yc7_c01286{bottom:448.670411pt;}
.yc6_c01286{bottom:449.212696pt;}
.yc5_c01286{bottom:449.764000pt;}
.yc4_c01286{bottom:473.545109pt;}
.yc3_c01286{bottom:476.131701pt;}
.yc2_c01286{bottom:477.094037pt;}
.yc1_c01286{bottom:477.813845pt;}
.yc0_c01286{bottom:480.630517pt;}
.ybf_c01286{bottom:481.108181pt;}
.ybe_c01286{bottom:482.515413pt;}
.ybd_c01286{bottom:483.466101pt;}
.ybc_c01286{bottom:485.285333pt;}
.ybb_c01286{bottom:505.497131pt;}
.yba_c01286{bottom:505.977259pt;}
.yb9_c01286{bottom:507.379179pt;}
.yb8_c01286{bottom:507.870635pt;}
.yb7_c01286{bottom:509.575936pt;}
.yb6_c01286{bottom:510.398144pt;}
.yb5_c01286{bottom:510.862101pt;}
.yb4_c01286{bottom:512.429120pt;}
.yb3_c01286{bottom:512.743829pt;}
.yb2_c01286{bottom:513.842667pt;}
.yb1_c01286{bottom:535.998688pt;}
.yb0_c01286{bottom:537.709584pt;}
.yaf_c01286{bottom:538.364392pt;}
.yae_c01286{bottom:539.679493pt;}
.yad_c01286{bottom:540.757053pt;}
.yac_c01286{bottom:541.182885pt;}
.yab_c01286{bottom:542.256779pt;}
.yaa_c01286{bottom:542.932560pt;}
.ya9_c01286{bottom:544.004488pt;}
.ya8_c01286{bottom:544.854715pt;}
.ya7_c01286{bottom:545.525333pt;}
.ya6_c01286{bottom:574.545440pt;}
.ya5_c01286{bottom:575.244371pt;}
.ya4_c01286{bottom:576.895067pt;}
.ya3_c01286{bottom:598.218883pt;}
.ya2_c01286{bottom:598.875880pt;}
.ya1_c01286{bottom:599.377301pt;}
.ya0_c01286{bottom:599.710991pt;}
.y9f_c01286{bottom:600.887575pt;}
.y9e_c01286{bottom:601.406489pt;}
.y9d_c01286{bottom:602.063487pt;}
.y9c_c01286{bottom:603.728171pt;}
.y9b_c01286{bottom:604.555952pt;}
.y9a_c01286{bottom:606.380283pt;}
.y99_c01286{bottom:606.901952pt;}
.y98_c01286{bottom:630.217713pt;}
.y97_c01286{bottom:630.731504pt;}
.y96_c01286{bottom:631.572943pt;}
.y95_c01286{bottom:631.902673pt;}
.y94_c01286{bottom:633.246205pt;}
.y93_c01286{bottom:634.237676pt;}
.y92_c01286{bottom:635.257984pt;}
.y91_c01286{bottom:635.751908pt;}
.y90_c01286{bottom:637.432668pt;}
.y8f_c01286{bottom:638.598965pt;}
.y8e_c01286{bottom:639.066611pt;}
.y8d_c01286{bottom:662.870405pt;}
.y8c_c01286{bottom:664.290860pt;}
.y8b_c01286{bottom:665.015003pt;}
.y8a_c01286{bottom:666.073092pt;}
.y89_c01286{bottom:666.977527pt;}
.y88_c01286{bottom:667.355479pt;}
.y87_c01286{bottom:667.983269pt;}
.y86_c01286{bottom:668.503980pt;}
.y85_c01286{bottom:668.887704pt;}
.y84_c01286{bottom:670.273324pt;}
.y83_c01286{bottom:693.476540pt;}
.y82_c01286{bottom:694.366105pt;}
.y81_c01286{bottom:695.011856pt;}
.y80_c01286{bottom:695.277617pt;}
.y7f_c01286{bottom:696.554792pt;}
.y7e_c01286{bottom:697.316608pt;}
.y7d_c01286{bottom:698.343104pt;}
.y7c_c01286{bottom:698.738400pt;}
.y7b_c01286{bottom:699.507220pt;}
.y7a_c01286{bottom:700.258857pt;}
.y79_c01286{bottom:700.760544pt;}
.y78_c01286{bottom:727.419803pt;}
.y77_c01286{bottom:727.722927pt;}
.y76_c01286{bottom:728.106828pt;}
.y75_c01286{bottom:728.609028pt;}
.y74_c01286{bottom:728.913825pt;}
.y73_c01286{bottom:729.792443pt;}
.y72_c01286{bottom:730.573221pt;}
.y71_c01286{bottom:731.072404pt;}
.y70_c01286{bottom:731.658192pt;}
.y6f_c01286{bottom:732.253305pt;}
.y6e_c01286{bottom:732.718197pt;}
.y6d_c01286{bottom:732.927092pt;}
.y6c_c01286{bottom:756.071815pt;}
.y6b_c01286{bottom:756.376512pt;}
.y6a_c01286{bottom:757.111377pt;}
.y69_c01286{bottom:757.560453pt;}
.y68_c01286{bottom:758.727755pt;}
.y67_c01286{bottom:759.184552pt;}
.y66_c01286{bottom:760.507436pt;}
.y65_c01286{bottom:761.548192pt;}
.y64_c01286{bottom:762.592487pt;}
.y63_c01286{bottom:763.319088pt;}
.y62_c01286{bottom:764.615185pt;}
.y61_c01286{bottom:788.973636pt;}
.y60_c01286{bottom:789.404425pt;}
.y5f_c01286{bottom:790.626985pt;}
.y5e_c01286{bottom:790.905949pt;}
.y5d_c01286{bottom:792.300244pt;}
.y5c_c01286{bottom:792.717344pt;}
.y5b_c01286{bottom:793.123733pt;}
.y5a_c01286{bottom:794.095968pt;}
.y59_c01286{bottom:794.499351pt;}
.y58_c01286{bottom:795.580701pt;}
.y57_c01286{bottom:796.283199pt;}
.y56_c01286{bottom:796.540853pt;}
.y55_c01286{bottom:820.441152pt;}
.y54_c01286{bottom:821.024555pt;}
.y53_c01286{bottom:821.723999pt;}
.y52_c01286{bottom:822.260885pt;}
.y51_c01286{bottom:823.328600pt;}
.y50_c01286{bottom:824.741117pt;}
.y4f_c01286{bottom:825.458149pt;}
.y4e_c01286{bottom:826.699083pt;}
.y4d_c01286{bottom:827.891316pt;}
.y4c_c01286{bottom:828.620595pt;}
.y4b_c01286{bottom:829.671264pt;}
.y4a_c01286{bottom:850.080048pt;}
.y49_c01286{bottom:850.563777pt;}
.y48_c01286{bottom:851.825020pt;}
.y47_c01286{bottom:852.927304pt;}
.y46_c01286{bottom:853.423273pt;}
.y45_c01286{bottom:853.891571pt;}
.y44_c01286{bottom:854.205316pt;}
.y43_c01286{bottom:855.323715pt;}
.y42_c01286{bottom:856.256743pt;}
.y41_c01286{bottom:856.732369pt;}
.y40_c01286{bottom:857.668712pt;}
.y3f_c01286{bottom:858.290245pt;}
.y3e_c01286{bottom:859.196683pt;}
.y3d_c01286{bottom:880.714865pt;}
.y3c_c01286{bottom:883.010893pt;}
.y3b_c01286{bottom:883.843361pt;}
.y3a_c01286{bottom:884.861525pt;}
.y39_c01286{bottom:885.712669pt;}
.y38_c01286{bottom:887.366069pt;}
.y37_c01286{bottom:889.408837pt;}
.y36_c01286{bottom:890.255361pt;}
.y35_c01286{bottom:890.885333pt;}
.y34_c01286{bottom:911.117451pt;}
.y33_c01286{bottom:911.407403pt;}
.y32_c01286{bottom:911.803627pt;}
.y31_c01286{bottom:912.593568pt;}
.y30_c01286{bottom:912.989792pt;}
.y2f_c01286{bottom:913.302283pt;}
.y2e_c01286{bottom:914.175957pt;}
.y2d_c01286{bottom:914.465909pt;}
.y2c_c01286{bottom:914.755861pt;}
.y2b_c01286{bottom:915.358304pt;}
.y2a_c01286{bottom:946.299371pt;}
.y29_c01286{bottom:947.354741pt;}
.y28_c01286{bottom:947.793952pt;}
.y27_c01286{bottom:948.975061pt;}
.y26_c01286{bottom:949.724704pt;}
.y25_c01286{bottom:950.901867pt;}
.y24_c01286{bottom:951.352192pt;}
.y23_c01286{bottom:952.670507pt;}
.y22_c01286{bottom:953.242272pt;}
.y21_c01286{bottom:954.282507pt;}
.y20_c01286{bottom:954.713525pt;}
.y1f_c01286{bottom:976.251264pt;}
.y1e_c01286{bottom:977.603029pt;}
.y1d_c01286{bottom:978.086944pt;}
.y1c_c01286{bottom:979.107840pt;}
.y1b_c01286{bottom:980.291008pt;}
.y1a_c01286{bottom:981.290923pt;}
.y19_c01286{bottom:981.796416pt;}
.y18_c01286{bottom:982.811403pt;}
.y17_c01286{bottom:983.461845pt;}
.y16_c01286{bottom:983.955627pt;}
.y15_c01286{bottom:984.958656pt;}
.y14_c01286{bottom:1006.970816pt;}
.y13_c01286{bottom:1007.600619pt;}
.y12_c01286{bottom:1009.344427pt;}
.y11_c01286{bottom:1011.076651pt;}
.y10_c01286{bottom:1011.383125pt;}
.yf_c01286{bottom:1013.108608pt;}
.ye_c01286{bottom:1014.521792pt;}
.yd_c01286{bottom:1014.985515pt;}
.yc_c01286{bottom:1015.611115pt;}
.yb_c01286{bottom:1015.922667pt;}
.ya_c01286{bottom:1104.105333pt;}
.y1_c01286{bottom:1105.920000pt;}
.y2_c01286{bottom:1106.570141pt;}
.y3_c01286{bottom:1106.790212pt;}
.y4_c01286{bottom:1106.870852pt;}
.y5_c01286{bottom:1107.072443pt;}
.y6_c01286{bottom:1107.751144pt;}
.y7_c01286{bottom:1108.063512pt;}
.y8_c01286{bottom:1108.381032pt;}
.y9_c01286{bottom:1108.742223pt;}
.h13_c01286{height:21.333333pt;}
.h2_c01286{height:26.667320pt;}
.h6_c01286{height:58.674176pt;}
.ha_c01286{height:58.679601pt;}
.h14_c01286{height:63.970873pt;}
.h3_c01286{height:64.000000pt;}
.h4_c01286{height:64.008191pt;}
.h11_c01286{height:64.009247pt;}
.hf_c01286{height:64.011551pt;}
.h9_c01286{height:64.014110pt;}
.h12_c01286{height:64.018429pt;}
.hd_c01286{height:69.342207pt;}
.hb_c01286{height:69.348620pt;}
.hc_c01286{height:69.350110pt;}
.he_c01286{height:69.353298pt;}
.h10_c01286{height:74.677455pt;}
.h8_c01286{height:74.683129pt;}
.h7_c01286{height:90.678271pt;}
.h5_c01286{height:112.014335pt;}
.h1_c01286{height:1111.333333pt;}
.h0_c01286{height:1111.440000pt;}
.w1_c01286{width:810.666667pt;}
.w0_c01286{width:810.933333pt;}
.x0_c01286{left:0.000000pt;}
.xce_c01286{left:142.080480pt;}
.xc1_c01286{left:143.543264pt;}
.xba_c01286{left:144.482517pt;}
.xb0_c01286{left:145.503848pt;}
.x9f_c01286{left:146.661333pt;}
.x82_c01286{left:148.604807pt;}
.x68_c01286{left:151.024035pt;}
.x2c_c01286{left:152.203541pt;}
.x47_c01286{left:153.411019pt;}
.x17_c01286{left:154.378752pt;}
.x22_c01286{left:155.632608pt;}
.xd_c01286{left:156.790667pt;}
.x4f_c01286{left:170.943240pt;}
.x60_c01286{left:172.450961pt;}
.xa8_c01286{left:175.240000pt;}
.xe_c01286{left:176.262667pt;}
.x79_c01286{left:177.869717pt;}
.x83_c01286{left:179.290049pt;}
.xc2_c01286{left:182.155499pt;}
.x23_c01286{left:184.405077pt;}
.x69_c01286{left:189.650531pt;}
.xbb_c01286{left:193.159339pt;}
.xa0_c01286{left:204.218667pt;}
.xa9_c01286{left:205.228000pt;}
.xc9_c01286{left:210.486603pt;}
.x3d_c01286{left:211.482684pt;}
.x2d_c01286{left:212.445323pt;}
.x18_c01286{left:213.400480pt;}
.xf_c01286{left:215.362667pt;}
.x61_c01286{left:218.980380pt;}
.x50_c01286{left:221.101271pt;}
.x9a_c01286{left:224.382667pt;}
.x95_c01286{left:225.441333pt;}
.xca_c01286{left:230.094123pt;}
.xbc_c01286{left:232.038123pt;}
.xd6_c01286{left:237.260000pt;}
.x58_c01286{left:239.112015pt;}
.x2e_c01286{left:241.486784pt;}
.x19_c01286{left:242.428011pt;}
.x10_c01286{left:244.345333pt;}
.x7a_c01286{left:246.492819pt;}
.x6a_c01286{left:247.484247pt;}
.x35_c01286{left:250.322667pt;}
.x48_c01286{left:252.271901pt;}
.x24_c01286{left:253.754187pt;}
.x72_c01286{left:257.108429pt;}
.xc5_c01286{left:261.012437pt;}
.x9b_c01286{left:263.994667pt;}
.x8a_c01286{left:266.480251pt;}
.xcf_c01286{left:269.379147pt;}
.x2f_c01286{left:270.528245pt;}
.x8c_c01286{left:275.509333pt;}
.x62_c01286{left:278.507461pt;}
.x1a_c01286{left:280.663392pt;}
.x73_c01286{left:286.624052pt;}
.x59_c01286{left:287.559452pt;}
.x25_c01286{left:291.906805pt;}
.xa1_c01286{left:293.546667pt;}
.x51_c01286{left:298.383305pt;}
.xbd_c01286{left:299.737653pt;}
.xad_c01286{left:302.214544pt;}
.x6b_c01286{left:306.580825pt;}
.x3e_c01286{left:308.915599pt;}
.x8d_c01286{left:314.156000pt;}
.x8b_c01286{left:316.404920pt;}
.x49_c01286{left:318.509407pt;}
.x36_c01286{left:320.632000pt;}
.x9c_c01286{left:322.629333pt;}
.x52_c01286{left:327.183533pt;}
.xa_c01286{left:331.680000pt;}
.x11_c01286{left:332.669333pt;}
.x84_c01286{left:335.308487pt;}
.x63_c01286{left:337.082319pt;}
.x3f_c01286{left:338.678735pt;}
.x1b_c01286{left:340.349099pt;}
.x96_c01286{left:343.049333pt;}
.x7b_c01286{left:345.394468pt;}
.xc6_c01286{left:347.705131pt;}
.xb4_c01286{left:350.629333pt;}
.xcb_c01286{left:356.729749pt;}
.x30_c01286{left:357.891296pt;}
.x8e_c01286{left:362.880000pt;}
.xc3_c01286{left:368.179616pt;}
.x1c_c01286{left:370.108629pt;}
.xb_c01286{left:372.000000pt;}
.x74_c01286{left:374.980225pt;}
.x26_c01286{left:379.802880pt;}
.xd7_c01286{left:385.893884pt;}
.x1_c01286{left:387.158667pt;}
.x31_c01286{left:389.091616pt;}
.xa2_c01286{left:391.472000pt;}
.x8f_c01286{left:393.597333pt;}
.xc7_c01286{left:395.469952pt;}
.x40_c01286{left:397.019533pt;}
.x75_c01286{left:404.030431pt;}
.x27_c01286{left:409.782016pt;}
.xc_c01286{left:411.600000pt;}
.x6c_c01286{left:416.017888pt;}
.x37_c01286{left:417.906667pt;}
.x97_c01286{left:423.434667pt;}
.x53_c01286{left:425.608648pt;}
.x4a_c01286{left:427.308267pt;}
.x1d_c01286{left:428.935691pt;}
.xaa_c01286{left:429.905333pt;}
.x85_c01286{left:433.254052pt;}
.x7c_c01286{left:434.460611pt;}
.x12_c01286{left:440.512000pt;}
.x90_c01286{left:442.410667pt;}
.xb5_c01286{left:448.098667pt;}
.x54_c01286{left:455.379683pt;}
.x13_c01286{left:459.666667pt;}
.x91_c01286{left:461.766667pt;}
.x64_c01286{left:465.046525pt;}
.x41_c01286{left:466.918869pt;}
.xb1_c01286{left:468.812152pt;}
.xa3_c01286{left:470.676000pt;}
.x86_c01286{left:471.907967pt;}
.x76_c01286{left:473.650135pt;}
.x6d_c01286{left:474.590383pt;}
.xcc_c01286{left:476.922869pt;}
.x2_c01286{left:480.036000pt;}
.x42_c01286{left:486.559608pt;}
.x28_c01286{left:488.272608pt;}
.x9d_c01286{left:489.885333pt;}
.x7d_c01286{left:492.789511pt;}
.x38_c01286{left:496.640000pt;}
.x1e_c01286{left:498.549248pt;}
.x87_c01286{left:502.398515pt;}
.xd2_c01286{left:504.579979pt;}
.x4b_c01286{left:505.750528pt;}
.x32_c01286{left:507.654987pt;}
.x3_c01286{left:511.474667pt;}
.x5a_c01286{left:514.696040pt;}
.x43_c01286{left:515.846688pt;}
.xb6_c01286{left:518.186667pt;}
.xa4_c01286{left:519.170667pt;}
.xab_c01286{left:521.580000pt;}
.x4_c01286{left:522.994667pt;}
.xd3_c01286{left:523.964501pt;}
.x98_c01286{left:530.016000pt;}
.xbe_c01286{left:536.258677pt;}
.x39_c01286{left:537.170667pt;}
.x29_c01286{left:538.209397pt;}
.xd8_c01286{left:542.818136pt;}
.x5b_c01286{left:545.150543pt;}
.x33_c01286{left:547.256117pt;}
.x5_c01286{left:551.793333pt;}
.x65_c01286{left:552.937492pt;}
.x55_c01286{left:554.995660pt;}
.x1f_c01286{left:558.604288pt;}
.x99_c01286{left:560.732000pt;}
.x4c_c01286{left:565.042252pt;}
.x14_c01286{left:567.930667pt;}
.x92_c01286{left:570.524000pt;}
.x7e_c01286{left:571.821480pt;}
.x6e_c01286{left:572.821541pt;}
.x56_c01286{left:574.949267pt;}
.x34_c01286{left:576.297579pt;}
.xac_c01286{left:578.496000pt;}
.xa5_c01286{left:579.400000pt;}
.x66_c01286{left:583.395187pt;}
.x3a_c01286{left:585.654667pt;}
.x20_c01286{left:587.098507pt;}
.x7f_c01286{left:591.207104pt;}
.x6f_c01286{left:593.226291pt;}
.x4d_c01286{left:594.864128pt;}
.xb7_c01286{left:596.028000pt;}
.x93_c01286{left:600.288000pt;}
.xd9_c01286{left:602.069492pt;}
.x77_c01286{left:610.731817pt;}
.x44_c01286{left:615.710493pt;}
.x2a_c01286{left:616.946656pt;}
.xae_c01286{left:618.090544pt;}
.x88_c01286{left:620.743121pt;}
.x5c_c01286{left:622.968343pt;}
.xd0_c01286{left:624.004480pt;}
.x3b_c01286{left:625.296000pt;}
.x4e_c01286{left:633.697231pt;}
.xbf_c01286{left:634.704448pt;}
.xb2_c01286{left:635.896508pt;}
.x9e_c01286{left:637.757333pt;}
.x80_c01286{left:640.676581pt;}
.x70_c01286{left:642.905301pt;}
.x2b_c01286{left:646.231125pt;}
.x6_c01286{left:648.750667pt;}
.x5d_c01286{left:652.928123pt;}
.xcd_c01286{left:654.054613pt;}
.xc0_c01286{left:655.051253pt;}
.xa6_c01286{left:657.496000pt;}
.x89_c01286{left:659.397036pt;}
.xda_c01286{left:660.586916pt;}
.x57_c01286{left:662.322119pt;}
.xb8_c01286{left:664.624000pt;}
.x21_c01286{left:666.582560pt;}
.x81_c01286{left:670.923129pt;}
.x67_c01286{left:672.023655pt;}
.xb3_c01286{left:676.005868pt;}
.x15_c01286{left:676.918667pt;}
.x94_c01286{left:678.056000pt;}
.xc8_c01286{left:682.393643pt;}
.xa7_c01286{left:686.729333pt;}
.xdb_c01286{left:690.595544pt;}
.x7_c01286{left:693.374667pt;}
.x45_c01286{left:694.508087pt;}
.x5e_c01286{left:701.959644pt;}
.xd1_c01286{left:702.988480pt;}
.x71_c01286{left:711.308781pt;}
.xb9_c01286{left:714.638667pt;}
.x16_c01286{left:716.281333pt;}
.x78_c01286{left:719.978157pt;}
.x5f_c01286{left:722.312887pt;}
.xc4_c01286{left:723.548085pt;}
.x46_c01286{left:724.720584pt;}
.xaf_c01286{left:726.189211pt;}
.x3c_c01286{left:734.630667pt;}
.x8_c01286{left:738.734667pt;}
.x9_c01286{left:790.333333pt;}
.xd5_c01286{left:792.720000pt;}
.xd4_c01286{left:795.600000pt;}
}





/* 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_c01287 {
    display:none;
  }
  .loading-indicator_c01287.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01287 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_c01287 { 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_c01287" -> "#page-container .classname_c01287")
 */
.pf_c01287 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01287 { /* 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_c01287.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01287 { /* 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_c01287 { /* 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_c01287 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01287 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01287 {overflow:visible;}
  }
}
.c_c01287 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01287 { /* 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_c01287:after { /* webkit #35443 */
  content: '';
}
.t_c01287:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01287 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 */
}
.__c01287 { /* 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_c01287 { /* info for Javascript */
  display:none;
}
.l_c01287 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01287 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01287 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01287: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_c01287 {
    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_c01287.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01287.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_c01287 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01287{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01287;src:url('chunks/assets/font_6b78c10203a447bee2208e8d.woff2')format("woff");}.ff1_c01287{font-family:ff1_c01287;line-height:1.000000;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;}
.m2_c01287{transform:matrix(0.154010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154010,0.000000,0.000000,0.250000,0,0);}
.m1_c01287{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.m6_c01287{transform:matrix(0.211740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211740,0.000000,0.000000,0.250000,0,0);}
.m4_c01287{transform:matrix(0.293155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293155,0.000000,0.000000,0.250000,0,0);}
.m0_c01287{transform:matrix(0.432745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432745,0.000000,0.000000,0.250000,0,0);}
.m5_c01287{transform:matrix(0.826670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.826670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.826670,0.000000,0.000000,0.250000,0,0);}
.m3_c01287{transform:matrix(0.981345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.981345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.981345,0.000000,0.000000,0.250000,0,0);}
.m7_c01287{transform:matrix(1.221940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.221940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.221940,0.000000,0.000000,0.250000,0,0);}
.v0_c01287{vertical-align:0.000000px;}
.ls0_c01287{letter-spacing:0.000000px;}
.sc__c01287{text-shadow:none;}
.sc0_c01287{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__c01287{-webkit-text-stroke:0px transparent;}
.sc0_c01287{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01287{word-spacing:0.000000px;}
.fc0_c01287{color:transparent;}
.fs1_c01287{font-size:84.000000px;}
.fs0_c01287{font-size:132.000000px;}
.y0_c01287{bottom:0.000000px;}
.y2_c01287{bottom:285.792000px;}
.y1_c01287{bottom:318.565500px;}
.h3_c01287{height:84.000000px;}
.h2_c01287{height:132.000000px;}
.h1_c01287{height:1250.250000px;}
.h0_c01287{height:1250.370000px;}
.w1_c01287{width:912.000000px;}
.w0_c01287{width:912.300000px;}
.x0_c01287{left:0.000000px;}
.x4_c01287{left:325.080000px;}
.x5_c01287{left:410.130000px;}
.x6_c01287{left:455.220000px;}
.x7_c01287{left:522.720000px;}
.x8_c01287{left:552.960000px;}
.x1_c01287{left:602.100000px;}
.x2_c01287{left:676.350000px;}
.x3_c01287{left:707.670000px;}
@media print{
.v0_c01287{vertical-align:0.000000pt;}
.ls0_c01287{letter-spacing:0.000000pt;}
.ws0_c01287{word-spacing:0.000000pt;}
.fs1_c01287{font-size:74.666667pt;}
.fs0_c01287{font-size:117.333333pt;}
.y0_c01287{bottom:0.000000pt;}
.y2_c01287{bottom:254.037333pt;}
.y1_c01287{bottom:283.169333pt;}
.h3_c01287{height:74.666667pt;}
.h2_c01287{height:117.333333pt;}
.h1_c01287{height:1111.333333pt;}
.h0_c01287{height:1111.440000pt;}
.w1_c01287{width:810.666667pt;}
.w0_c01287{width:810.933333pt;}
.x0_c01287{left:0.000000pt;}
.x4_c01287{left:288.960000pt;}
.x5_c01287{left:364.560000pt;}
.x6_c01287{left:404.640000pt;}
.x7_c01287{left:464.640000pt;}
.x8_c01287{left:491.520000pt;}
.x1_c01287{left:535.200000pt;}
.x2_c01287{left:601.200000pt;}
.x3_c01287{left:629.040000pt;}
}





/* 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_c01288 {
    display:none;
  }
  .loading-indicator_c01288.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01288 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_c01288 { 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_c01288" -> "#page-container .classname_c01288")
 */
.pf_c01288 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01288 { /* 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_c01288.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01288 { /* 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_c01288 { /* 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_c01288 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01288 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01288 {overflow:visible;}
  }
}
.c_c01288 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01288 { /* 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_c01288:after { /* webkit #35443 */
  content: '';
}
.t_c01288:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01288 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 */
}
.__c01288 { /* 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_c01288 { /* info for Javascript */
  display:none;
}
.l_c01288 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01288 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01288 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01288: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_c01288 {
    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_c01288.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01288.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_c01288 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01288{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01288;src:url('chunks/assets/font_cfe63ee56e9e10a97d33a3db.woff2')format("woff");}.ff1_c01288{font-family:ff1_c01288;line-height:1.000000;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;}
.m93_c01288{transform:matrix(0.010164,0.000102,-0.002500,0.249988,0,0);-ms-transform:matrix(0.010164,0.000102,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.010164,0.000102,-0.002500,0.249988,0,0);}
.m1a_c01288{transform:matrix(0.015479,0.000155,-0.002500,0.249988,0,0);-ms-transform:matrix(0.015479,0.000155,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.015479,0.000155,-0.002500,0.249988,0,0);}
.m92_c01288{transform:matrix(0.016069,0.000161,-0.002500,0.249988,0,0);-ms-transform:matrix(0.016069,0.000161,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.016069,0.000161,-0.002500,0.249988,0,0);}
.mc5_c01288{transform:matrix(0.021559,0.000216,-0.002500,0.249988,0,0);-ms-transform:matrix(0.021559,0.000216,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.021559,0.000216,-0.002500,0.249988,0,0);}
.m90_c01288{transform:matrix(0.027699,0.000277,-0.002500,0.249988,0,0);-ms-transform:matrix(0.027699,0.000277,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.027699,0.000277,-0.002500,0.249988,0,0);}
.mda_c01288{transform:matrix(0.050000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.050000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.050000,0.000000,0.000000,0.250000,0,0);}
.md7_c01288{transform:matrix(0.060827,0.000608,-0.002500,0.249988,0,0);-ms-transform:matrix(0.060827,0.000608,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.060827,0.000608,-0.002500,0.249988,0,0);}
.m115_c01288{transform:matrix(0.111780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111780,0.000000,0.000000,0.250000,0,0);}
.m11d_c01288{transform:matrix(0.122415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122415,0.000000,0.000000,0.250000,0,0);}
.m7c_c01288{transform:matrix(0.134283,0.001343,-0.002500,0.249988,0,0);-ms-transform:matrix(0.134283,0.001343,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.134283,0.001343,-0.002500,0.249988,0,0);}
.m11a_c01288{transform:matrix(0.139945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139945,0.000000,0.000000,0.250000,0,0);}
.m119_c01288{transform:matrix(0.146680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146680,0.000000,0.000000,0.250000,0,0);}
.m9e_c01288{transform:matrix(0.153927,0.001539,-0.002500,0.249988,0,0);-ms-transform:matrix(0.153927,0.001539,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.153927,0.001539,-0.002500,0.249988,0,0);}
.m9d_c01288{transform:matrix(0.155157,0.001552,-0.002500,0.249988,0,0);-ms-transform:matrix(0.155157,0.001552,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.155157,0.001552,-0.002500,0.249988,0,0);}
.ma5_c01288{transform:matrix(0.157062,0.001571,-0.002500,0.249988,0,0);-ms-transform:matrix(0.157062,0.001571,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.157062,0.001571,-0.002500,0.249988,0,0);}
.m116_c01288{transform:matrix(0.157495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157495,0.000000,0.000000,0.250000,0,0);}
.ma1_c01288{transform:matrix(0.158157,0.001582,-0.002500,0.249988,0,0);-ms-transform:matrix(0.158157,0.001582,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.158157,0.001582,-0.002500,0.249988,0,0);}
.m7b_c01288{transform:matrix(0.158912,0.001589,-0.002500,0.249988,0,0);-ms-transform:matrix(0.158912,0.001589,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.158912,0.001589,-0.002500,0.249988,0,0);}
.m11b_c01288{transform:matrix(0.159100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159100,0.000000,0.000000,0.250000,0,0);}
.m9f_c01288{transform:matrix(0.161587,0.001616,-0.002500,0.249988,0,0);-ms-transform:matrix(0.161587,0.001616,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.161587,0.001616,-0.002500,0.249988,0,0);}
.ma3_c01288{transform:matrix(0.169032,0.001690,-0.002500,0.249988,0,0);-ms-transform:matrix(0.169032,0.001690,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.169032,0.001690,-0.002500,0.249988,0,0);}
.ma2_c01288{transform:matrix(0.169172,0.001692,-0.002500,0.249988,0,0);-ms-transform:matrix(0.169172,0.001692,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.169172,0.001692,-0.002500,0.249988,0,0);}
.m8b_c01288{transform:matrix(0.171056,0.001711,-0.002500,0.249988,0,0);-ms-transform:matrix(0.171056,0.001711,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.171056,0.001711,-0.002500,0.249988,0,0);}
.m5d_c01288{transform:matrix(0.171346,0.001713,-0.002500,0.249988,0,0);-ms-transform:matrix(0.171346,0.001713,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.171346,0.001713,-0.002500,0.249988,0,0);}
.ma7_c01288{transform:matrix(0.171691,0.001717,-0.002500,0.249988,0,0);-ms-transform:matrix(0.171691,0.001717,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.171691,0.001717,-0.002500,0.249988,0,0);}
.m60_c01288{transform:matrix(0.172771,0.001728,-0.002500,0.249988,0,0);-ms-transform:matrix(0.172771,0.001728,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.172771,0.001728,-0.002500,0.249988,0,0);}
.m78_c01288{transform:matrix(0.173586,0.001736,-0.002500,0.249988,0,0);-ms-transform:matrix(0.173586,0.001736,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.173586,0.001736,-0.002500,0.249988,0,0);}
.ma4_c01288{transform:matrix(0.174786,0.001748,-0.002500,0.249988,0,0);-ms-transform:matrix(0.174786,0.001748,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.174786,0.001748,-0.002500,0.249988,0,0);}
.m0_c01288{transform:matrix(0.174935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174935,0.000000,0.000000,0.250000,0,0);}
.ma0_c01288{transform:matrix(0.176156,0.001762,-0.002500,0.249988,0,0);-ms-transform:matrix(0.176156,0.001762,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.176156,0.001762,-0.002500,0.249988,0,0);}
.m76_c01288{transform:matrix(0.176946,0.001769,-0.002500,0.249988,0,0);-ms-transform:matrix(0.176946,0.001769,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.176946,0.001769,-0.002500,0.249988,0,0);}
.ma8_c01288{transform:matrix(0.177441,0.001774,-0.002500,0.249988,0,0);-ms-transform:matrix(0.177441,0.001774,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.177441,0.001774,-0.002500,0.249988,0,0);}
.m85_c01288{transform:matrix(0.178756,0.001788,-0.002500,0.249988,0,0);-ms-transform:matrix(0.178756,0.001788,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.178756,0.001788,-0.002500,0.249988,0,0);}
.ma6_c01288{transform:matrix(0.180481,0.001805,-0.002500,0.249988,0,0);-ms-transform:matrix(0.180481,0.001805,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.180481,0.001805,-0.002500,0.249988,0,0);}
.m5c_c01288{transform:matrix(0.180596,0.001806,-0.002500,0.249988,0,0);-ms-transform:matrix(0.180596,0.001806,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.180596,0.001806,-0.002500,0.249988,0,0);}
.m61_c01288{transform:matrix(0.184061,0.001841,-0.002500,0.249988,0,0);-ms-transform:matrix(0.184061,0.001841,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.184061,0.001841,-0.002500,0.249988,0,0);}
.m105_c01288{transform:matrix(0.184573,0.003691,-0.004999,0.249950,0,0);-ms-transform:matrix(0.184573,0.003691,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.184573,0.003691,-0.004999,0.249950,0,0);}
.mb4_c01288{transform:matrix(0.184851,0.001849,-0.002500,0.249988,0,0);-ms-transform:matrix(0.184851,0.001849,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.184851,0.001849,-0.002500,0.249988,0,0);}
.m36_c01288{transform:matrix(0.185141,0.001851,-0.002500,0.249988,0,0);-ms-transform:matrix(0.185141,0.001851,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.185141,0.001851,-0.002500,0.249988,0,0);}
.m5e_c01288{transform:matrix(0.185831,0.001858,-0.002500,0.249988,0,0);-ms-transform:matrix(0.185831,0.001858,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.185831,0.001858,-0.002500,0.249988,0,0);}
.m6d_c01288{transform:matrix(0.186691,0.001867,-0.002500,0.249988,0,0);-ms-transform:matrix(0.186691,0.001867,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.186691,0.001867,-0.002500,0.249988,0,0);}
.m9c_c01288{transform:matrix(0.188091,0.001881,-0.002500,0.249988,0,0);-ms-transform:matrix(0.188091,0.001881,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.188091,0.001881,-0.002500,0.249988,0,0);}
.m7d_c01288{transform:matrix(0.189351,0.001894,-0.002500,0.249988,0,0);-ms-transform:matrix(0.189351,0.001894,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.189351,0.001894,-0.002500,0.249988,0,0);}
.m89_c01288{transform:matrix(0.189611,0.001896,-0.002500,0.249988,0,0);-ms-transform:matrix(0.189611,0.001896,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.189611,0.001896,-0.002500,0.249988,0,0);}
.m2e_c01288{transform:matrix(0.190505,0.001905,-0.002500,0.249988,0,0);-ms-transform:matrix(0.190505,0.001905,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.190505,0.001905,-0.002500,0.249988,0,0);}
.me_c01288{transform:matrix(0.190535,0.001905,-0.002500,0.249988,0,0);-ms-transform:matrix(0.190535,0.001905,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.190535,0.001905,-0.002500,0.249988,0,0);}
.m8_c01288{transform:matrix(0.191405,0.001914,-0.002500,0.249988,0,0);-ms-transform:matrix(0.191405,0.001914,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.191405,0.001914,-0.002500,0.249988,0,0);}
.m118_c01288{transform:matrix(0.193550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193550,0.000000,0.000000,0.250000,0,0);}
.maf_c01288{transform:matrix(0.193600,0.001936,-0.002500,0.249988,0,0);-ms-transform:matrix(0.193600,0.001936,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.193600,0.001936,-0.002500,0.249988,0,0);}
.mb0_c01288{transform:matrix(0.194790,0.001948,-0.002500,0.249988,0,0);-ms-transform:matrix(0.194790,0.001948,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.194790,0.001948,-0.002500,0.249988,0,0);}
.m30_c01288{transform:matrix(0.194825,0.001948,-0.002500,0.249988,0,0);-ms-transform:matrix(0.194825,0.001948,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.194825,0.001948,-0.002500,0.249988,0,0);}
.m8e_c01288{transform:matrix(0.194900,0.001949,-0.002500,0.249988,0,0);-ms-transform:matrix(0.194900,0.001949,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.194900,0.001949,-0.002500,0.249988,0,0);}
.mb5_c01288{transform:matrix(0.195880,0.001959,-0.002500,0.249988,0,0);-ms-transform:matrix(0.195880,0.001959,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.195880,0.001959,-0.002500,0.249988,0,0);}
.m75_c01288{transform:matrix(0.196130,0.001961,-0.002500,0.249988,0,0);-ms-transform:matrix(0.196130,0.001961,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.196130,0.001961,-0.002500,0.249988,0,0);}
.ma9_c01288{transform:matrix(0.197055,0.001971,-0.002500,0.249988,0,0);-ms-transform:matrix(0.197055,0.001971,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.197055,0.001971,-0.002500,0.249988,0,0);}
.m82_c01288{transform:matrix(0.197485,0.001975,-0.002500,0.249988,0,0);-ms-transform:matrix(0.197485,0.001975,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.197485,0.001975,-0.002500,0.249988,0,0);}
.m4_c01288{transform:matrix(0.197575,0.001976,-0.002500,0.249988,0,0);-ms-transform:matrix(0.197575,0.001976,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.197575,0.001976,-0.002500,0.249988,0,0);}
.mb_c01288{transform:matrix(0.199280,0.001993,-0.002500,0.249988,0,0);-ms-transform:matrix(0.199280,0.001993,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.199280,0.001993,-0.002500,0.249988,0,0);}
.m5f_c01288{transform:matrix(0.199475,0.001995,-0.002500,0.249988,0,0);-ms-transform:matrix(0.199475,0.001995,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.199475,0.001995,-0.002500,0.249988,0,0);}
.mac_c01288{transform:matrix(0.199710,0.001997,-0.002500,0.249988,0,0);-ms-transform:matrix(0.199710,0.001997,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.199710,0.001997,-0.002500,0.249988,0,0);}
.m86_c01288{transform:matrix(0.200655,0.002007,-0.002500,0.249988,0,0);-ms-transform:matrix(0.200655,0.002007,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.200655,0.002007,-0.002500,0.249988,0,0);}
.m8c_c01288{transform:matrix(0.200805,0.002008,-0.002500,0.249988,0,0);-ms-transform:matrix(0.200805,0.002008,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.200805,0.002008,-0.002500,0.249988,0,0);}
.m8d_c01288{transform:matrix(0.201650,0.002016,-0.002500,0.249988,0,0);-ms-transform:matrix(0.201650,0.002016,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.201650,0.002016,-0.002500,0.249988,0,0);}
.mad_c01288{transform:matrix(0.201935,0.002019,-0.002500,0.249988,0,0);-ms-transform:matrix(0.201935,0.002019,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.201935,0.002019,-0.002500,0.249988,0,0);}
.mf8_c01288{transform:matrix(0.201995,0.004242,-0.005249,0.249945,0,0);-ms-transform:matrix(0.201995,0.004242,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.201995,0.004242,-0.005249,0.249945,0,0);}
.maa_c01288{transform:matrix(0.202475,0.002025,-0.002500,0.249988,0,0);-ms-transform:matrix(0.202475,0.002025,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.202475,0.002025,-0.002500,0.249988,0,0);}
.m8a_c01288{transform:matrix(0.202825,0.002028,-0.002500,0.249988,0,0);-ms-transform:matrix(0.202825,0.002028,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.202825,0.002028,-0.002500,0.249988,0,0);}
.md_c01288{transform:matrix(0.203230,0.002032,-0.002500,0.249988,0,0);-ms-transform:matrix(0.203230,0.002032,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.203230,0.002032,-0.002500,0.249988,0,0);}
.m88_c01288{transform:matrix(0.203320,0.002033,-0.002500,0.249988,0,0);-ms-transform:matrix(0.203320,0.002033,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.203320,0.002033,-0.002500,0.249988,0,0);}
.mbe_c01288{transform:matrix(0.203845,0.002038,-0.002500,0.249988,0,0);-ms-transform:matrix(0.203845,0.002038,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.203845,0.002038,-0.002500,0.249988,0,0);}
.m62_c01288{transform:matrix(0.204660,0.002047,-0.002500,0.249988,0,0);-ms-transform:matrix(0.204660,0.002047,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.204660,0.002047,-0.002500,0.249988,0,0);}
.m9_c01288{transform:matrix(0.205030,0.002050,-0.002500,0.249988,0,0);-ms-transform:matrix(0.205030,0.002050,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.205030,0.002050,-0.002500,0.249988,0,0);}
.m87_c01288{transform:matrix(0.205200,0.002052,-0.002500,0.249988,0,0);-ms-transform:matrix(0.205200,0.002052,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.205200,0.002052,-0.002500,0.249988,0,0);}
.mf4_c01288{transform:matrix(0.205410,0.004314,-0.005249,0.249945,0,0);-ms-transform:matrix(0.205410,0.004314,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.205410,0.004314,-0.005249,0.249945,0,0);}
.mb1_c01288{transform:matrix(0.205615,0.002056,-0.002500,0.249988,0,0);-ms-transform:matrix(0.205615,0.002056,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.205615,0.002056,-0.002500,0.249988,0,0);}
.mc_c01288{transform:matrix(0.205735,0.002057,-0.002500,0.249988,0,0);-ms-transform:matrix(0.205735,0.002057,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.205735,0.002057,-0.002500,0.249988,0,0);}
.m5b_c01288{transform:matrix(0.205895,0.002059,-0.002500,0.249988,0,0);-ms-transform:matrix(0.205895,0.002059,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.205895,0.002059,-0.002500,0.249988,0,0);}
.mba_c01288{transform:matrix(0.206085,0.002061,-0.002500,0.249988,0,0);-ms-transform:matrix(0.206085,0.002061,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.206085,0.002061,-0.002500,0.249988,0,0);}
.m32_c01288{transform:matrix(0.206295,0.002063,-0.002500,0.249988,0,0);-ms-transform:matrix(0.206295,0.002063,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.206295,0.002063,-0.002500,0.249988,0,0);}
.m31_c01288{transform:matrix(0.206990,0.002070,-0.002500,0.249988,0,0);-ms-transform:matrix(0.206990,0.002070,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.206990,0.002070,-0.002500,0.249988,0,0);}
.m73_c01288{transform:matrix(0.206995,0.002070,-0.002500,0.249988,0,0);-ms-transform:matrix(0.206995,0.002070,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.206995,0.002070,-0.002500,0.249988,0,0);}
.m7_c01288{transform:matrix(0.207230,0.002072,-0.002500,0.249988,0,0);-ms-transform:matrix(0.207230,0.002072,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.207230,0.002072,-0.002500,0.249988,0,0);}
.mde_c01288{transform:matrix(0.207379,0.004355,-0.005249,0.249945,0,0);-ms-transform:matrix(0.207379,0.004355,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.207379,0.004355,-0.005249,0.249945,0,0);}
.mf_c01288{transform:matrix(0.207450,0.002074,-0.002500,0.249988,0,0);-ms-transform:matrix(0.207450,0.002074,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.207450,0.002074,-0.002500,0.249988,0,0);}
.m5_c01288{transform:matrix(0.207590,0.002076,-0.002500,0.249988,0,0);-ms-transform:matrix(0.207590,0.002076,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.207590,0.002076,-0.002500,0.249988,0,0);}
.m70_c01288{transform:matrix(0.207945,0.002079,-0.002500,0.249988,0,0);-ms-transform:matrix(0.207945,0.002079,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.207945,0.002079,-0.002500,0.249988,0,0);}
.m5a_c01288{transform:matrix(0.208140,0.002081,-0.002500,0.249988,0,0);-ms-transform:matrix(0.208140,0.002081,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.208140,0.002081,-0.002500,0.249988,0,0);}
.mf9_c01288{transform:matrix(0.208569,0.004380,-0.005249,0.249945,0,0);-ms-transform:matrix(0.208569,0.004380,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.208569,0.004380,-0.005249,0.249945,0,0);}
.mab_c01288{transform:matrix(0.208645,0.002086,-0.002500,0.249988,0,0);-ms-transform:matrix(0.208645,0.002086,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.208645,0.002086,-0.002500,0.249988,0,0);}
.m6e_c01288{transform:matrix(0.209400,0.002094,-0.002500,0.249988,0,0);-ms-transform:matrix(0.209400,0.002094,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.209400,0.002094,-0.002500,0.249988,0,0);}
.mec_c01288{transform:matrix(0.209844,0.004407,-0.005249,0.249945,0,0);-ms-transform:matrix(0.209844,0.004407,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.209844,0.004407,-0.005249,0.249945,0,0);}
.mc9_c01288{transform:matrix(0.211649,0.002116,-0.002500,0.249988,0,0);-ms-transform:matrix(0.211649,0.002116,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.211649,0.002116,-0.002500,0.249988,0,0);}
.me7_c01288{transform:matrix(0.213478,0.004483,-0.005249,0.249945,0,0);-ms-transform:matrix(0.213478,0.004483,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.213478,0.004483,-0.005249,0.249945,0,0);}
.mf6_c01288{transform:matrix(0.213483,0.004483,-0.005249,0.249945,0,0);-ms-transform:matrix(0.213483,0.004483,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.213483,0.004483,-0.005249,0.249945,0,0);}
.mbc_c01288{transform:matrix(0.213514,0.002135,-0.002500,0.249988,0,0);-ms-transform:matrix(0.213514,0.002135,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.213514,0.002135,-0.002500,0.249988,0,0);}
.m54_c01288{transform:matrix(0.213624,0.002136,-0.002500,0.249988,0,0);-ms-transform:matrix(0.213624,0.002136,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.213624,0.002136,-0.002500,0.249988,0,0);}
.mb6_c01288{transform:matrix(0.213729,0.002137,-0.002500,0.249988,0,0);-ms-transform:matrix(0.213729,0.002137,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.213729,0.002137,-0.002500,0.249988,0,0);}
.mf5_c01288{transform:matrix(0.213978,0.004494,-0.005249,0.249945,0,0);-ms-transform:matrix(0.213978,0.004494,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.213978,0.004494,-0.005249,0.249945,0,0);}
.m33_c01288{transform:matrix(0.214174,0.002142,-0.002500,0.249988,0,0);-ms-transform:matrix(0.214174,0.002142,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.214174,0.002142,-0.002500,0.249988,0,0);}
.m43_c01288{transform:matrix(0.214919,0.002149,-0.002500,0.249988,0,0);-ms-transform:matrix(0.214919,0.002149,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.214919,0.002149,-0.002500,0.249988,0,0);}
.mb8_c01288{transform:matrix(0.215729,0.002157,-0.002500,0.249988,0,0);-ms-transform:matrix(0.215729,0.002157,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.215729,0.002157,-0.002500,0.249988,0,0);}
.mbf_c01288{transform:matrix(0.215779,0.002158,-0.002500,0.249988,0,0);-ms-transform:matrix(0.215779,0.002158,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.215779,0.002158,-0.002500,0.249988,0,0);}
.mf2_c01288{transform:matrix(0.216037,0.004537,-0.005249,0.249945,0,0);-ms-transform:matrix(0.216037,0.004537,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.216037,0.004537,-0.005249,0.249945,0,0);}
.m2f_c01288{transform:matrix(0.216524,0.002165,-0.002500,0.249988,0,0);-ms-transform:matrix(0.216524,0.002165,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.216524,0.002165,-0.002500,0.249988,0,0);}
.mcf_c01288{transform:matrix(0.216589,0.002166,-0.002500,0.249988,0,0);-ms-transform:matrix(0.216589,0.002166,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.216589,0.002166,-0.002500,0.249988,0,0);}
.m3_c01288{transform:matrix(0.216874,0.002169,-0.002500,0.249988,0,0);-ms-transform:matrix(0.216874,0.002169,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.216874,0.002169,-0.002500,0.249988,0,0);}
.mb2_c01288{transform:matrix(0.217689,0.002177,-0.002500,0.249988,0,0);-ms-transform:matrix(0.217689,0.002177,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.217689,0.002177,-0.002500,0.249988,0,0);}
.m53_c01288{transform:matrix(0.217694,0.002177,-0.002500,0.249988,0,0);-ms-transform:matrix(0.217694,0.002177,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.217694,0.002177,-0.002500,0.249988,0,0);}
.m8f_c01288{transform:matrix(0.218024,0.002180,-0.002500,0.249988,0,0);-ms-transform:matrix(0.218024,0.002180,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.218024,0.002180,-0.002500,0.249988,0,0);}
.m34_c01288{transform:matrix(0.218479,0.002185,-0.002500,0.249988,0,0);-ms-transform:matrix(0.218479,0.002185,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.218479,0.002185,-0.002500,0.249988,0,0);}
.mbd_c01288{transform:matrix(0.218739,0.002187,-0.002500,0.249988,0,0);-ms-transform:matrix(0.218739,0.002187,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.218739,0.002187,-0.002500,0.249988,0,0);}
.m3c_c01288{transform:matrix(0.218929,0.002189,-0.002500,0.249988,0,0);-ms-transform:matrix(0.218929,0.002189,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.218929,0.002189,-0.002500,0.249988,0,0);}
.m6_c01288{transform:matrix(0.219009,0.002190,-0.002500,0.249988,0,0);-ms-transform:matrix(0.219009,0.002190,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.219009,0.002190,-0.002500,0.249988,0,0);}
.mae_c01288{transform:matrix(0.219329,0.002193,-0.002500,0.249988,0,0);-ms-transform:matrix(0.219329,0.002193,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.219329,0.002193,-0.002500,0.249988,0,0);}
.me9_c01288{transform:matrix(0.220081,0.004622,-0.005249,0.249945,0,0);-ms-transform:matrix(0.220081,0.004622,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.220081,0.004622,-0.005249,0.249945,0,0);}
.mc2_c01288{transform:matrix(0.220304,0.002203,-0.002500,0.249988,0,0);-ms-transform:matrix(0.220304,0.002203,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.220304,0.002203,-0.002500,0.249988,0,0);}
.mf3_c01288{transform:matrix(0.220736,0.004635,-0.005249,0.249945,0,0);-ms-transform:matrix(0.220736,0.004635,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.220736,0.004635,-0.005249,0.249945,0,0);}
.m72_c01288{transform:matrix(0.220959,0.002210,-0.002500,0.249988,0,0);-ms-transform:matrix(0.220959,0.002210,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.220959,0.002210,-0.002500,0.249988,0,0);}
.m4e_c01288{transform:matrix(0.221444,0.002214,-0.002500,0.249988,0,0);-ms-transform:matrix(0.221444,0.002214,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.221444,0.002214,-0.002500,0.249988,0,0);}
.m117_c01288{transform:matrix(0.221600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221600,0.000000,0.000000,0.250000,0,0);}
.m107_c01288{transform:matrix(0.222081,0.004442,-0.004999,0.249950,0,0);-ms-transform:matrix(0.222081,0.004442,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.222081,0.004442,-0.004999,0.249950,0,0);}
.mf1_c01288{transform:matrix(0.222236,0.004667,-0.005249,0.249945,0,0);-ms-transform:matrix(0.222236,0.004667,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.222236,0.004667,-0.005249,0.249945,0,0);}
.mcd_c01288{transform:matrix(0.222364,0.002224,-0.002500,0.249988,0,0);-ms-transform:matrix(0.222364,0.002224,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.222364,0.002224,-0.002500,0.249988,0,0);}
.mb3_c01288{transform:matrix(0.222679,0.002227,-0.002500,0.249988,0,0);-ms-transform:matrix(0.222679,0.002227,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.222679,0.002227,-0.002500,0.249988,0,0);}
.m29_c01288{transform:matrix(0.222834,0.002228,-0.002500,0.249988,0,0);-ms-transform:matrix(0.222834,0.002228,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.222834,0.002228,-0.002500,0.249988,0,0);}
.m6c_c01288{transform:matrix(0.222924,0.002229,-0.002500,0.249988,0,0);-ms-transform:matrix(0.222924,0.002229,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.222924,0.002229,-0.002500,0.249988,0,0);}
.m7a_c01288{transform:matrix(0.223099,0.002231,-0.002500,0.249988,0,0);-ms-transform:matrix(0.223099,0.002231,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.223099,0.002231,-0.002500,0.249988,0,0);}
.mc1_c01288{transform:matrix(0.223144,0.002231,-0.002500,0.249988,0,0);-ms-transform:matrix(0.223144,0.002231,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.223144,0.002231,-0.002500,0.249988,0,0);}
.ma_c01288{transform:matrix(0.223239,0.002232,-0.002500,0.249988,0,0);-ms-transform:matrix(0.223239,0.002232,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.223239,0.002232,-0.002500,0.249988,0,0);}
.mc3_c01288{transform:matrix(0.224049,0.002240,-0.002500,0.249988,0,0);-ms-transform:matrix(0.224049,0.002240,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.224049,0.002240,-0.002500,0.249988,0,0);}
.mfb_c01288{transform:matrix(0.224070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224070,0.000000,0.000000,0.250000,0,0);}
.me8_c01288{transform:matrix(0.224925,0.004723,-0.005249,0.249945,0,0);-ms-transform:matrix(0.224925,0.004723,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.224925,0.004723,-0.005249,0.249945,0,0);}
.m10e_c01288{transform:matrix(0.225270,0.004505,-0.004999,0.249950,0,0);-ms-transform:matrix(0.225270,0.004505,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.225270,0.004505,-0.004999,0.249950,0,0);}
.m37_c01288{transform:matrix(0.225279,0.002253,-0.002500,0.249988,0,0);-ms-transform:matrix(0.225279,0.002253,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.225279,0.002253,-0.002500,0.249988,0,0);}
.m24_c01288{transform:matrix(0.225304,0.002253,-0.002500,0.249988,0,0);-ms-transform:matrix(0.225304,0.002253,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.225304,0.002253,-0.002500,0.249988,0,0);}
.m51_c01288{transform:matrix(0.226344,0.002263,-0.002500,0.249988,0,0);-ms-transform:matrix(0.226344,0.002263,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.226344,0.002263,-0.002500,0.249988,0,0);}
.m58_c01288{transform:matrix(0.226619,0.002266,-0.002500,0.249988,0,0);-ms-transform:matrix(0.226619,0.002266,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.226619,0.002266,-0.002500,0.249988,0,0);}
.m6f_c01288{transform:matrix(0.227309,0.002273,-0.002500,0.249988,0,0);-ms-transform:matrix(0.227309,0.002273,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.227309,0.002273,-0.002500,0.249988,0,0);}
.m104_c01288{transform:matrix(0.227529,0.004551,-0.004999,0.249950,0,0);-ms-transform:matrix(0.227529,0.004551,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.227529,0.004551,-0.004999,0.249950,0,0);}
.m35_c01288{transform:matrix(0.227904,0.002279,-0.002500,0.249988,0,0);-ms-transform:matrix(0.227904,0.002279,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.227904,0.002279,-0.002500,0.249988,0,0);}
.m39_c01288{transform:matrix(0.227974,0.002280,-0.002500,0.249988,0,0);-ms-transform:matrix(0.227974,0.002280,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.227974,0.002280,-0.002500,0.249988,0,0);}
.me2_c01288{transform:matrix(0.228370,0.004796,-0.005249,0.249945,0,0);-ms-transform:matrix(0.228370,0.004796,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.228370,0.004796,-0.005249,0.249945,0,0);}
.m16_c01288{transform:matrix(0.228499,0.002285,-0.002500,0.249988,0,0);-ms-transform:matrix(0.228499,0.002285,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.228499,0.002285,-0.002500,0.249988,0,0);}
.m7f_c01288{transform:matrix(0.228619,0.002286,-0.002500,0.249988,0,0);-ms-transform:matrix(0.228619,0.002286,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.228619,0.002286,-0.002500,0.249988,0,0);}
.m10_c01288{transform:matrix(0.228744,0.002287,-0.002500,0.249988,0,0);-ms-transform:matrix(0.228744,0.002287,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.228744,0.002287,-0.002500,0.249988,0,0);}
.m109_c01288{transform:matrix(0.229104,0.004582,-0.004999,0.249950,0,0);-ms-transform:matrix(0.229104,0.004582,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.229104,0.004582,-0.004999,0.249950,0,0);}
.mea_c01288{transform:matrix(0.229154,0.004812,-0.005249,0.249945,0,0);-ms-transform:matrix(0.229154,0.004812,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.229154,0.004812,-0.005249,0.249945,0,0);}
.mef_c01288{transform:matrix(0.229184,0.004813,-0.005249,0.249945,0,0);-ms-transform:matrix(0.229184,0.004813,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.229184,0.004813,-0.005249,0.249945,0,0);}
.mee_c01288{transform:matrix(0.229374,0.004817,-0.005249,0.249945,0,0);-ms-transform:matrix(0.229374,0.004817,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.229374,0.004817,-0.005249,0.249945,0,0);}
.mcb_c01288{transform:matrix(0.230183,0.002302,-0.002500,0.249988,0,0);-ms-transform:matrix(0.230183,0.002302,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.230183,0.002302,-0.002500,0.249988,0,0);}
.m71_c01288{transform:matrix(0.230393,0.002304,-0.002500,0.249988,0,0);-ms-transform:matrix(0.230393,0.002304,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.230393,0.002304,-0.002500,0.249988,0,0);}
.me6_c01288{transform:matrix(0.230489,0.004840,-0.005249,0.249945,0,0);-ms-transform:matrix(0.230489,0.004840,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.230489,0.004840,-0.005249,0.249945,0,0);}
.m4b_c01288{transform:matrix(0.230818,0.002308,-0.002500,0.249988,0,0);-ms-transform:matrix(0.230818,0.002308,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.230818,0.002308,-0.002500,0.249988,0,0);}
.mc0_c01288{transform:matrix(0.231478,0.002315,-0.002500,0.249988,0,0);-ms-transform:matrix(0.231478,0.002315,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.231478,0.002315,-0.002500,0.249988,0,0);}
.mca_c01288{transform:matrix(0.231818,0.002318,-0.002500,0.249988,0,0);-ms-transform:matrix(0.231818,0.002318,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.231818,0.002318,-0.002500,0.249988,0,0);}
.m41_c01288{transform:matrix(0.232048,0.002320,-0.002500,0.249988,0,0);-ms-transform:matrix(0.232048,0.002320,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.232048,0.002320,-0.002500,0.249988,0,0);}
.mb9_c01288{transform:matrix(0.232793,0.002328,-0.002500,0.249988,0,0);-ms-transform:matrix(0.232793,0.002328,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.232793,0.002328,-0.002500,0.249988,0,0);}
.m2b_c01288{transform:matrix(0.233148,0.002331,-0.002500,0.249988,0,0);-ms-transform:matrix(0.233148,0.002331,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.233148,0.002331,-0.002500,0.249988,0,0);}
.mdd_c01288{transform:matrix(0.233349,0.004900,-0.005249,0.249945,0,0);-ms-transform:matrix(0.233349,0.004900,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.233349,0.004900,-0.005249,0.249945,0,0);}
.mbb_c01288{transform:matrix(0.233473,0.002335,-0.002500,0.249988,0,0);-ms-transform:matrix(0.233473,0.002335,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.233473,0.002335,-0.002500,0.249988,0,0);}
.m3f_c01288{transform:matrix(0.233663,0.002337,-0.002500,0.249988,0,0);-ms-transform:matrix(0.233663,0.002337,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.233663,0.002337,-0.002500,0.249988,0,0);}
.mfa_c01288{transform:matrix(0.234358,0.004922,-0.005249,0.249945,0,0);-ms-transform:matrix(0.234358,0.004922,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.234358,0.004922,-0.005249,0.249945,0,0);}
.mf7_c01288{transform:matrix(0.234508,0.004925,-0.005249,0.249945,0,0);-ms-transform:matrix(0.234508,0.004925,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.234508,0.004925,-0.005249,0.249945,0,0);}
.m57_c01288{transform:matrix(0.234793,0.002348,-0.002500,0.249988,0,0);-ms-transform:matrix(0.234793,0.002348,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.234793,0.002348,-0.002500,0.249988,0,0);}
.m19_c01288{transform:matrix(0.235563,0.002356,-0.002500,0.249988,0,0);-ms-transform:matrix(0.235563,0.002356,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.235563,0.002356,-0.002500,0.249988,0,0);}
.m11_c01288{transform:matrix(0.235673,0.002357,-0.002500,0.249988,0,0);-ms-transform:matrix(0.235673,0.002357,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.235673,0.002357,-0.002500,0.249988,0,0);}
.mc8_c01288{transform:matrix(0.235678,0.002357,-0.002500,0.249988,0,0);-ms-transform:matrix(0.235678,0.002357,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.235678,0.002357,-0.002500,0.249988,0,0);}
.m67_c01288{transform:matrix(0.236358,0.002364,-0.002500,0.249988,0,0);-ms-transform:matrix(0.236358,0.002364,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.236358,0.002364,-0.002500,0.249988,0,0);}
.m12_c01288{transform:matrix(0.236573,0.002366,-0.002500,0.249988,0,0);-ms-transform:matrix(0.236573,0.002366,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.236573,0.002366,-0.002500,0.249988,0,0);}
.mdf_c01288{transform:matrix(0.236993,0.004977,-0.005249,0.249945,0,0);-ms-transform:matrix(0.236993,0.004977,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.236993,0.004977,-0.005249,0.249945,0,0);}
.m91_c01288{transform:matrix(0.236993,0.002370,-0.002500,0.249988,0,0);-ms-transform:matrix(0.236993,0.002370,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.236993,0.002370,-0.002500,0.249988,0,0);}
.mcc_c01288{transform:matrix(0.237268,0.002373,-0.002500,0.249988,0,0);-ms-transform:matrix(0.237268,0.002373,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.237268,0.002373,-0.002500,0.249988,0,0);}
.m40_c01288{transform:matrix(0.237938,0.002379,-0.002500,0.249988,0,0);-ms-transform:matrix(0.237938,0.002379,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.237938,0.002379,-0.002500,0.249988,0,0);}
.m74_c01288{transform:matrix(0.238003,0.002380,-0.002500,0.249988,0,0);-ms-transform:matrix(0.238003,0.002380,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.238003,0.002380,-0.002500,0.249988,0,0);}
.md1_c01288{transform:matrix(0.238373,0.002384,-0.002500,0.249988,0,0);-ms-transform:matrix(0.238373,0.002384,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.238373,0.002384,-0.002500,0.249988,0,0);}
.me1_c01288{transform:matrix(0.238512,0.005009,-0.005249,0.249945,0,0);-ms-transform:matrix(0.238512,0.005009,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.238512,0.005009,-0.005249,0.249945,0,0);}
.m15_c01288{transform:matrix(0.238708,0.002387,-0.002500,0.249988,0,0);-ms-transform:matrix(0.238708,0.002387,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.238708,0.002387,-0.002500,0.249988,0,0);}
.m27_c01288{transform:matrix(0.239058,0.002391,-0.002500,0.249988,0,0);-ms-transform:matrix(0.239058,0.002391,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.239058,0.002391,-0.002500,0.249988,0,0);}
.m113_c01288{transform:matrix(0.239077,0.004782,-0.004999,0.249950,0,0);-ms-transform:matrix(0.239077,0.004782,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.239077,0.004782,-0.004999,0.249950,0,0);}
.m63_c01288{transform:matrix(0.239283,0.002393,-0.002500,0.249988,0,0);-ms-transform:matrix(0.239283,0.002393,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.239283,0.002393,-0.002500,0.249988,0,0);}
.m38_c01288{transform:matrix(0.239483,0.002395,-0.002500,0.249988,0,0);-ms-transform:matrix(0.239483,0.002395,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.239483,0.002395,-0.002500,0.249988,0,0);}
.med_c01288{transform:matrix(0.239507,0.005030,-0.005249,0.249945,0,0);-ms-transform:matrix(0.239507,0.005030,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.239507,0.005030,-0.005249,0.249945,0,0);}
.mc7_c01288{transform:matrix(0.239803,0.002398,-0.002500,0.249988,0,0);-ms-transform:matrix(0.239803,0.002398,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.239803,0.002398,-0.002500,0.249988,0,0);}
.m25_c01288{transform:matrix(0.240438,0.002404,-0.002500,0.249988,0,0);-ms-transform:matrix(0.240438,0.002404,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.240438,0.002404,-0.002500,0.249988,0,0);}
.me4_c01288{transform:matrix(0.240702,0.005055,-0.005249,0.249945,0,0);-ms-transform:matrix(0.240702,0.005055,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.240702,0.005055,-0.005249,0.249945,0,0);}
.m10b_c01288{transform:matrix(0.241212,0.004824,-0.004999,0.249950,0,0);-ms-transform:matrix(0.241212,0.004824,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.241212,0.004824,-0.004999,0.249950,0,0);}
.m106_c01288{transform:matrix(0.241617,0.004832,-0.004999,0.249950,0,0);-ms-transform:matrix(0.241617,0.004832,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.241617,0.004832,-0.004999,0.249950,0,0);}
.md3_c01288{transform:matrix(0.242713,0.002427,-0.002500,0.249988,0,0);-ms-transform:matrix(0.242713,0.002427,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.242713,0.002427,-0.002500,0.249988,0,0);}
.m1d_c01288{transform:matrix(0.242733,0.002427,-0.002500,0.249988,0,0);-ms-transform:matrix(0.242733,0.002427,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.242733,0.002427,-0.002500,0.249988,0,0);}
.meb_c01288{transform:matrix(0.242776,0.005098,-0.005249,0.249945,0,0);-ms-transform:matrix(0.242776,0.005098,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.242776,0.005098,-0.005249,0.249945,0,0);}
.m98_c01288{transform:matrix(0.243303,0.002433,-0.002500,0.249988,0,0);-ms-transform:matrix(0.243303,0.002433,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.243303,0.002433,-0.002500,0.249988,0,0);}
.m97_c01288{transform:matrix(0.243528,0.002435,-0.002500,0.249988,0,0);-ms-transform:matrix(0.243528,0.002435,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.243528,0.002435,-0.002500,0.249988,0,0);}
.m102_c01288{transform:matrix(0.243691,0.004874,-0.004999,0.249950,0,0);-ms-transform:matrix(0.243691,0.004874,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.243691,0.004874,-0.004999,0.249950,0,0);}
.mf0_c01288{transform:matrix(0.243776,0.005119,-0.005249,0.249945,0,0);-ms-transform:matrix(0.243776,0.005119,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.243776,0.005119,-0.005249,0.249945,0,0);}
.m81_c01288{transform:matrix(0.243903,0.002439,-0.002500,0.249988,0,0);-ms-transform:matrix(0.243903,0.002439,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.243903,0.002439,-0.002500,0.249988,0,0);}
.mce_c01288{transform:matrix(0.243938,0.002439,-0.002500,0.249988,0,0);-ms-transform:matrix(0.243938,0.002439,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.243938,0.002439,-0.002500,0.249988,0,0);}
.m3a_c01288{transform:matrix(0.245258,0.002453,-0.002500,0.249988,0,0);-ms-transform:matrix(0.245258,0.002453,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.245258,0.002453,-0.002500,0.249988,0,0);}
.m3b_c01288{transform:matrix(0.246128,0.002461,-0.002500,0.249988,0,0);-ms-transform:matrix(0.246128,0.002461,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.246128,0.002461,-0.002500,0.249988,0,0);}
.me0_c01288{transform:matrix(0.246141,0.005169,-0.005249,0.249945,0,0);-ms-transform:matrix(0.246141,0.005169,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.246141,0.005169,-0.005249,0.249945,0,0);}
.m10a_c01288{transform:matrix(0.246871,0.004937,-0.004999,0.249950,0,0);-ms-transform:matrix(0.246871,0.004937,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.246871,0.004937,-0.004999,0.249950,0,0);}
.m46_c01288{transform:matrix(0.246968,0.002470,-0.002500,0.249988,0,0);-ms-transform:matrix(0.246968,0.002470,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.246968,0.002470,-0.002500,0.249988,0,0);}
.m68_c01288{transform:matrix(0.248433,0.002484,-0.002500,0.249988,0,0);-ms-transform:matrix(0.248433,0.002484,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.248433,0.002484,-0.002500,0.249988,0,0);}
.m50_c01288{transform:matrix(0.248458,0.002485,-0.002500,0.249988,0,0);-ms-transform:matrix(0.248458,0.002485,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.248458,0.002485,-0.002500,0.249988,0,0);}
.m108_c01288{transform:matrix(0.249095,0.004982,-0.004999,0.249950,0,0);-ms-transform:matrix(0.249095,0.004982,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.249095,0.004982,-0.004999,0.249950,0,0);}
.m110_c01288{transform:matrix(0.249685,0.004994,-0.004999,0.249950,0,0);-ms-transform:matrix(0.249685,0.004994,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.249685,0.004994,-0.004999,0.249950,0,0);}
.m28_c01288{transform:matrix(0.250007,0.002500,-0.002500,0.249988,0,0);-ms-transform:matrix(0.250007,0.002500,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.250007,0.002500,-0.002500,0.249988,0,0);}
.m103_c01288{transform:matrix(0.250220,0.005004,-0.004999,0.249950,0,0);-ms-transform:matrix(0.250220,0.005004,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.250220,0.005004,-0.004999,0.249950,0,0);}
.m4d_c01288{transform:matrix(0.250437,0.002504,-0.002500,0.249988,0,0);-ms-transform:matrix(0.250437,0.002504,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.250437,0.002504,-0.002500,0.249988,0,0);}
.m55_c01288{transform:matrix(0.250597,0.002506,-0.002500,0.249988,0,0);-ms-transform:matrix(0.250597,0.002506,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.250597,0.002506,-0.002500,0.249988,0,0);}
.m111_c01288{transform:matrix(0.251025,0.005020,-0.004999,0.249950,0,0);-ms-transform:matrix(0.251025,0.005020,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.251025,0.005020,-0.004999,0.249950,0,0);}
.m56_c01288{transform:matrix(0.251772,0.002518,-0.002500,0.249988,0,0);-ms-transform:matrix(0.251772,0.002518,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.251772,0.002518,-0.002500,0.249988,0,0);}
.m64_c01288{transform:matrix(0.253312,0.002533,-0.002500,0.249988,0,0);-ms-transform:matrix(0.253312,0.002533,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.253312,0.002533,-0.002500,0.249988,0,0);}
.m2a_c01288{transform:matrix(0.253367,0.002534,-0.002500,0.249988,0,0);-ms-transform:matrix(0.253367,0.002534,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.253367,0.002534,-0.002500,0.249988,0,0);}
.m26_c01288{transform:matrix(0.253887,0.002539,-0.002500,0.249988,0,0);-ms-transform:matrix(0.253887,0.002539,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.253887,0.002539,-0.002500,0.249988,0,0);}
.m52_c01288{transform:matrix(0.254057,0.002541,-0.002500,0.249988,0,0);-ms-transform:matrix(0.254057,0.002541,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.254057,0.002541,-0.002500,0.249988,0,0);}
.mc6_c01288{transform:matrix(0.254952,0.002550,-0.002500,0.249988,0,0);-ms-transform:matrix(0.254952,0.002550,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.254952,0.002550,-0.002500,0.249988,0,0);}
.m101_c01288{transform:matrix(0.255039,0.005101,-0.004999,0.249950,0,0);-ms-transform:matrix(0.255039,0.005101,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.255039,0.005101,-0.004999,0.249950,0,0);}
.m2d_c01288{transform:matrix(0.255297,0.002553,-0.002500,0.249988,0,0);-ms-transform:matrix(0.255297,0.002553,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.255297,0.002553,-0.002500,0.249988,0,0);}
.m42_c01288{transform:matrix(0.256607,0.002566,-0.002500,0.249988,0,0);-ms-transform:matrix(0.256607,0.002566,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.256607,0.002566,-0.002500,0.249988,0,0);}
.m3e_c01288{transform:matrix(0.257382,0.002574,-0.002500,0.249988,0,0);-ms-transform:matrix(0.257382,0.002574,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.257382,0.002574,-0.002500,0.249988,0,0);}
.m4f_c01288{transform:matrix(0.257552,0.002576,-0.002500,0.249988,0,0);-ms-transform:matrix(0.257552,0.002576,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.257552,0.002576,-0.002500,0.249988,0,0);}
.m10f_c01288{transform:matrix(0.257738,0.005155,-0.004999,0.249950,0,0);-ms-transform:matrix(0.257738,0.005155,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.257738,0.005155,-0.004999,0.249950,0,0);}
.m18_c01288{transform:matrix(0.259052,0.002591,-0.002500,0.249988,0,0);-ms-transform:matrix(0.259052,0.002591,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.259052,0.002591,-0.002500,0.249988,0,0);}
.m114_c01288{transform:matrix(0.259548,0.005191,-0.004999,0.249950,0,0);-ms-transform:matrix(0.259548,0.005191,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.259548,0.005191,-0.004999,0.249950,0,0);}
.m3d_c01288{transform:matrix(0.260482,0.002605,-0.002500,0.249988,0,0);-ms-transform:matrix(0.260482,0.002605,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.260482,0.002605,-0.002500,0.249988,0,0);}
.m4a_c01288{transform:matrix(0.260527,0.002605,-0.002500,0.249988,0,0);-ms-transform:matrix(0.260527,0.002605,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.260527,0.002605,-0.002500,0.249988,0,0);}
.m7e_c01288{transform:matrix(0.260742,0.002607,-0.002500,0.249988,0,0);-ms-transform:matrix(0.260742,0.002607,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.260742,0.002607,-0.002500,0.249988,0,0);}
.m17_c01288{transform:matrix(0.261012,0.002610,-0.002500,0.249988,0,0);-ms-transform:matrix(0.261012,0.002610,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.261012,0.002610,-0.002500,0.249988,0,0);}
.mfc_c01288{transform:matrix(0.261265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261265,0.000000,0.000000,0.250000,0,0);}
.m14_c01288{transform:matrix(0.261442,0.002614,-0.002500,0.249988,0,0);-ms-transform:matrix(0.261442,0.002614,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.261442,0.002614,-0.002500,0.249988,0,0);}
.mfd_c01288{transform:matrix(0.262125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262125,0.000000,0.000000,0.250000,0,0);}
.m13_c01288{transform:matrix(0.262382,0.002624,-0.002500,0.249988,0,0);-ms-transform:matrix(0.262382,0.002624,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.262382,0.002624,-0.002500,0.249988,0,0);}
.m45_c01288{transform:matrix(0.262837,0.002628,-0.002500,0.249988,0,0);-ms-transform:matrix(0.262837,0.002628,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.262837,0.002628,-0.002500,0.249988,0,0);}
.m99_c01288{transform:matrix(0.263037,0.002630,-0.002500,0.249988,0,0);-ms-transform:matrix(0.263037,0.002630,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.263037,0.002630,-0.002500,0.249988,0,0);}
.m2c_c01288{transform:matrix(0.264007,0.002640,-0.002500,0.249988,0,0);-ms-transform:matrix(0.264007,0.002640,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.264007,0.002640,-0.002500,0.249988,0,0);}
.md5_c01288{transform:matrix(0.264092,0.002641,-0.002500,0.249988,0,0);-ms-transform:matrix(0.264092,0.002641,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.264092,0.002641,-0.002500,0.249988,0,0);}
.m80_c01288{transform:matrix(0.264867,0.002649,-0.002500,0.249988,0,0);-ms-transform:matrix(0.264867,0.002649,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.264867,0.002649,-0.002500,0.249988,0,0);}
.md2_c01288{transform:matrix(0.265237,0.002652,-0.002500,0.249988,0,0);-ms-transform:matrix(0.265237,0.002652,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.265237,0.002652,-0.002500,0.249988,0,0);}
.m1c_c01288{transform:matrix(0.265417,0.002654,-0.002500,0.249988,0,0);-ms-transform:matrix(0.265417,0.002654,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.265417,0.002654,-0.002500,0.249988,0,0);}
.m49_c01288{transform:matrix(0.265562,0.002656,-0.002500,0.249988,0,0);-ms-transform:matrix(0.265562,0.002656,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.265562,0.002656,-0.002500,0.249988,0,0);}
.m65_c01288{transform:matrix(0.266932,0.002669,-0.002500,0.249988,0,0);-ms-transform:matrix(0.266932,0.002669,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.266932,0.002669,-0.002500,0.249988,0,0);}
.md4_c01288{transform:matrix(0.267397,0.002674,-0.002500,0.249988,0,0);-ms-transform:matrix(0.267397,0.002674,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.267397,0.002674,-0.002500,0.249988,0,0);}
.me3_c01288{transform:matrix(0.267646,0.005621,-0.005249,0.249945,0,0);-ms-transform:matrix(0.267646,0.005621,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.267646,0.005621,-0.005249,0.249945,0,0);}
.m66_c01288{transform:matrix(0.267977,0.002680,-0.002500,0.249988,0,0);-ms-transform:matrix(0.267977,0.002680,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.267977,0.002680,-0.002500,0.249988,0,0);}
.m4c_c01288{transform:matrix(0.268082,0.002681,-0.002500,0.249988,0,0);-ms-transform:matrix(0.268082,0.002681,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.268082,0.002681,-0.002500,0.249988,0,0);}
.m95_c01288{transform:matrix(0.269092,0.002691,-0.002500,0.249988,0,0);-ms-transform:matrix(0.269092,0.002691,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.269092,0.002691,-0.002500,0.249988,0,0);}
.m6a_c01288{transform:matrix(0.270451,0.002705,-0.002500,0.249988,0,0);-ms-transform:matrix(0.270451,0.002705,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.270451,0.002705,-0.002500,0.249988,0,0);}
.m1b_c01288{transform:matrix(0.271546,0.002715,-0.002500,0.249988,0,0);-ms-transform:matrix(0.271546,0.002715,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.271546,0.002715,-0.002500,0.249988,0,0);}
.m83_c01288{transform:matrix(0.272441,0.002724,-0.002500,0.249988,0,0);-ms-transform:matrix(0.272441,0.002724,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.272441,0.002724,-0.002500,0.249988,0,0);}
.m21_c01288{transform:matrix(0.272971,0.002730,-0.002500,0.249988,0,0);-ms-transform:matrix(0.272971,0.002730,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.272971,0.002730,-0.002500,0.249988,0,0);}
.m94_c01288{transform:matrix(0.273796,0.002738,-0.002500,0.249988,0,0);-ms-transform:matrix(0.273796,0.002738,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.273796,0.002738,-0.002500,0.249988,0,0);}
.m1f_c01288{transform:matrix(0.275961,0.002760,-0.002500,0.249988,0,0);-ms-transform:matrix(0.275961,0.002760,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.275961,0.002760,-0.002500,0.249988,0,0);}
.m20_c01288{transform:matrix(0.276001,0.002760,-0.002500,0.249988,0,0);-ms-transform:matrix(0.276001,0.002760,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.276001,0.002760,-0.002500,0.249988,0,0);}
.m47_c01288{transform:matrix(0.277816,0.002778,-0.002500,0.249988,0,0);-ms-transform:matrix(0.277816,0.002778,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.277816,0.002778,-0.002500,0.249988,0,0);}
.m1e_c01288{transform:matrix(0.278021,0.002780,-0.002500,0.249988,0,0);-ms-transform:matrix(0.278021,0.002780,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.278021,0.002780,-0.002500,0.249988,0,0);}
.m9a_c01288{transform:matrix(0.278381,0.002784,-0.002500,0.249988,0,0);-ms-transform:matrix(0.278381,0.002784,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.278381,0.002784,-0.002500,0.249988,0,0);}
.m96_c01288{transform:matrix(0.278796,0.002788,-0.002500,0.249988,0,0);-ms-transform:matrix(0.278796,0.002788,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.278796,0.002788,-0.002500,0.249988,0,0);}
.m69_c01288{transform:matrix(0.280001,0.002800,-0.002500,0.249988,0,0);-ms-transform:matrix(0.280001,0.002800,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.280001,0.002800,-0.002500,0.249988,0,0);}
.m44_c01288{transform:matrix(0.280116,0.002801,-0.002500,0.249988,0,0);-ms-transform:matrix(0.280116,0.002801,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.280116,0.002801,-0.002500,0.249988,0,0);}
.m6b_c01288{transform:matrix(0.284246,0.002842,-0.002500,0.249988,0,0);-ms-transform:matrix(0.284246,0.002842,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.284246,0.002842,-0.002500,0.249988,0,0);}
.m48_c01288{transform:matrix(0.284936,0.002849,-0.002500,0.249988,0,0);-ms-transform:matrix(0.284936,0.002849,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.284936,0.002849,-0.002500,0.249988,0,0);}
.m9b_c01288{transform:matrix(0.288686,0.002887,-0.002500,0.249988,0,0);-ms-transform:matrix(0.288686,0.002887,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.288686,0.002887,-0.002500,0.249988,0,0);}
.m22_c01288{transform:matrix(0.303015,0.003030,-0.002500,0.249988,0,0);-ms-transform:matrix(0.303015,0.003030,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.303015,0.003030,-0.002500,0.249988,0,0);}
.m84_c01288{transform:matrix(0.306190,0.003062,-0.002500,0.249988,0,0);-ms-transform:matrix(0.306190,0.003062,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.306190,0.003062,-0.002500,0.249988,0,0);}
.m2_c01288{transform:matrix(0.313370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313370,0.000000,0.000000,0.250000,0,0);}
.m10c_c01288{transform:matrix(0.317107,0.006342,-0.004999,0.249950,0,0);-ms-transform:matrix(0.317107,0.006342,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.317107,0.006342,-0.004999,0.249950,0,0);}
.m79_c01288{transform:matrix(0.323369,0.003234,-0.002500,0.249988,0,0);-ms-transform:matrix(0.323369,0.003234,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.323369,0.003234,-0.002500,0.249988,0,0);}
.m23_c01288{transform:matrix(0.330128,0.003301,-0.002500,0.249988,0,0);-ms-transform:matrix(0.330128,0.003301,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.330128,0.003301,-0.002500,0.249988,0,0);}
.m77_c01288{transform:matrix(0.359932,0.003599,-0.002500,0.249988,0,0);-ms-transform:matrix(0.359932,0.003599,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.359932,0.003599,-0.002500,0.249988,0,0);}
.m10d_c01288{transform:matrix(0.360253,0.007205,-0.004999,0.249950,0,0);-ms-transform:matrix(0.360253,0.007205,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.360253,0.007205,-0.004999,0.249950,0,0);}
.md6_c01288{transform:matrix(0.362337,0.003623,-0.002500,0.249988,0,0);-ms-transform:matrix(0.362337,0.003623,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.362337,0.003623,-0.002500,0.249988,0,0);}
.m1_c01288{transform:matrix(0.365515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365515,0.000000,0.000000,0.250000,0,0);}
.me5_c01288{transform:matrix(0.425171,0.008929,-0.005249,0.249945,0,0);-ms-transform:matrix(0.425171,0.008929,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.425171,0.008929,-0.005249,0.249945,0,0);}
.m112_c01288{transform:matrix(0.440812,0.008816,-0.004999,0.249950,0,0);-ms-transform:matrix(0.440812,0.008816,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.440812,0.008816,-0.004999,0.249950,0,0);}
.mff_c01288{transform:matrix(0.514220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514220,0.000000,0.000000,0.250000,0,0);}
.m59_c01288{transform:matrix(0.603080,0.006031,-0.002500,0.249988,0,0);-ms-transform:matrix(0.603080,0.006031,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.603080,0.006031,-0.002500,0.249988,0,0);}
.mc4_c01288{transform:matrix(0.611229,0.006112,-0.002500,0.249988,0,0);-ms-transform:matrix(0.611229,0.006112,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.611229,0.006112,-0.002500,0.249988,0,0);}
.md0_c01288{transform:matrix(0.668162,0.006682,-0.002500,0.249988,0,0);-ms-transform:matrix(0.668162,0.006682,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.668162,0.006682,-0.002500,0.249988,0,0);}
.m11c_c01288{transform:matrix(0.685420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.685420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.685420,0.000000,0.000000,0.250000,0,0);}
.mb7_c01288{transform:matrix(0.826854,0.008269,-0.002500,0.249988,0,0);-ms-transform:matrix(0.826854,0.008269,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.826854,0.008269,-0.002500,0.249988,0,0);}
.mdb_c01288{transform:matrix(0.953415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.953415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.953415,0.000000,0.000000,0.250000,0,0);}
.mfe_c01288{transform:matrix(0.963515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.963515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.963515,0.000000,0.000000,0.250000,0,0);}
.md9_c01288{transform:matrix(1.069165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.069165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.069165,0.000000,0.000000,0.250000,0,0);}
.mdc_c01288{transform:matrix(1.350870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.350870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.350870,0.000000,0.000000,0.250000,0,0);}
.md8_c01288{transform:matrix(2.365445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.365445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.365445,0.000000,0.000000,0.250000,0,0);}
.m100_c01288{transform:matrix(3.559585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.559585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.559585,0.000000,0.000000,0.250000,0,0);}
.v0_c01288{vertical-align:0.000000px;}
.ls0_c01288{letter-spacing:0.000000px;}
.sc__c01288{text-shadow:none;}
.sc0_c01288{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__c01288{-webkit-text-stroke:0px transparent;}
.sc0_c01288{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01288{word-spacing:0.000000px;}
.fc0_c01288{color:transparent;}
.fs10_c01288{font-size:12.000000px;}
.fsa_c01288{font-size:18.000000px;}
.fs9_c01288{font-size:24.000000px;}
.fsb_c01288{font-size:30.000000px;}
.fs11_c01288{font-size:48.000000px;}
.fs3_c01288{font-size:72.003600px;}
.fse_c01288{font-size:78.000000px;}
.fs2_c01288{font-size:78.003900px;}
.fsf_c01288{font-size:78.015598px;}
.fs0_c01288{font-size:84.000000px;}
.fs5_c01288{font-size:84.004200px;}
.fsc_c01288{font-size:84.018520px;}
.fs1_c01288{font-size:90.004500px;}
.fsd_c01288{font-size:90.019843px;}
.fs7_c01288{font-size:96.004800px;}
.fs4_c01288{font-size:102.005100px;}
.fs8_c01288{font-size:114.005700px;}
.fs6_c01288{font-size:132.006600px;}
.y0_c01288{bottom:0.000000px;}
.y114_c01288{bottom:57.830250px;}
.y113_c01288{bottom:59.233710px;}
.y112_c01288{bottom:61.408710px;}
.y111_c01288{bottom:63.081840px;}
.y110_c01288{bottom:65.026650px;}
.y10f_c01288{bottom:67.009860px;}
.y10e_c01288{bottom:68.040360px;}
.y10d_c01288{bottom:85.291740px;}
.y10c_c01288{bottom:85.953120px;}
.y10b_c01288{bottom:87.046410px;}
.y10a_c01288{bottom:87.927960px;}
.y109_c01288{bottom:89.023950px;}
.y108_c01288{bottom:90.147570px;}
.y107_c01288{bottom:90.805800px;}
.y106_c01288{bottom:91.227360px;}
.y105_c01288{bottom:92.156400px;}
.y104_c01288{bottom:93.026280px;}
.y103_c01288{bottom:94.586790px;}
.y102_c01288{bottom:96.114240px;}
.y101_c01288{bottom:97.204500px;}
.y100_c01288{bottom:127.053000px;}
.yff_c01288{bottom:147.951000px;}
.y11d_c01288{bottom:155.790000px;}
.y11c_c01288{bottom:165.240000px;}
.yfe_c01288{bottom:174.447148px;}
.yfd_c01288{bottom:174.896406px;}
.yfc_c01288{bottom:175.376559px;}
.yfb_c01288{bottom:177.701707px;}
.y11b_c01288{bottom:178.200000px;}
.yfa_c01288{bottom:178.321276px;}
.yf9_c01288{bottom:179.096721px;}
.yf8_c01288{bottom:179.572704px;}
.yf7_c01288{bottom:180.491734px;}
.yf6_c01288{bottom:181.402834px;}
.yf5_c01288{bottom:182.778423px;}
.y11a_c01288{bottom:187.785000px;}
.y119_c01288{bottom:190.620000px;}
.yf4_c01288{bottom:209.284440px;}
.yf3_c01288{bottom:209.945985px;}
.yf2_c01288{bottom:210.764671px;}
.yf1_c01288{bottom:212.105733px;}
.yf0_c01288{bottom:212.607025px;}
.y118_c01288{bottom:213.840000px;}
.yef_c01288{bottom:214.750585px;}
.yee_c01288{bottom:215.593831px;}
.yed_c01288{bottom:216.095659px;}
.y117_c01288{bottom:216.270000px;}
.yec_c01288{bottom:217.076961px;}
.yeb_c01288{bottom:217.582266px;}
.yea_c01288{bottom:218.695480px;}
.y116_c01288{bottom:224.910000px;}
.y115_c01288{bottom:231.793500px;}
.ye9_c01288{bottom:244.561236px;}
.ye8_c01288{bottom:246.150001px;}
.ye7_c01288{bottom:247.362909px;}
.ye6_c01288{bottom:247.811878px;}
.ye5_c01288{bottom:250.141839px;}
.ye4_c01288{bottom:252.494952px;}
.ye3_c01288{bottom:254.100412px;}
.ye2_c01288{bottom:254.798011px;}
.ye1_c01288{bottom:255.966000px;}
.ye0_c01288{bottom:305.370000px;}
.ydf_c01288{bottom:314.820000px;}
.yde_c01288{bottom:343.440000px;}
.ydd_c01288{bottom:430.106700px;}
.yd8_c01288{bottom:430.106865px;}
.yda_c01288{bottom:430.106925px;}
.ydc_c01288{bottom:430.106985px;}
.yd7_c01288{bottom:430.107150px;}
.yd9_c01288{bottom:430.107495px;}
.ydb_c01288{bottom:430.107555px;}
.yd6_c01288{bottom:458.671320px;}
.yd5_c01288{bottom:459.210450px;}
.yd4_c01288{bottom:460.793370px;}
.yd3_c01288{bottom:461.677860px;}
.yd2_c01288{bottom:462.762570px;}
.yd1_c01288{bottom:463.323525px;}
.yd0_c01288{bottom:464.347545px;}
.ycf_c01288{bottom:465.055515px;}
.yce_c01288{bottom:466.296000px;}
.ycd_c01288{bottom:467.868330px;}
.ycc_c01288{bottom:468.593370px;}
.ycb_c01288{bottom:493.936485px;}
.yca_c01288{bottom:494.701395px;}
.yc9_c01288{bottom:495.002325px;}
.yc8_c01288{bottom:495.400125px;}
.yc7_c01288{bottom:495.598755px;}
.yc6_c01288{bottom:496.298715px;}
.yc5_c01288{bottom:496.589730px;}
.yc4_c01288{bottom:496.894215px;}
.yc3_c01288{bottom:497.589930px;}
.yc2_c01288{bottom:497.893110px;}
.yc1_c01288{bottom:498.194925px;}
.yc0_c01288{bottom:498.787845px;}
.ybf_c01288{bottom:499.093215px;}
.ybe_c01288{bottom:499.885140px;}
.ybd_c01288{bottom:500.270820px;}
.ybc_c01288{bottom:531.857505px;}
.ybb_c01288{bottom:532.383915px;}
.yba_c01288{bottom:532.656675px;}
.yb9_c01288{bottom:532.835580px;}
.yb8_c01288{bottom:533.544405px;}
.yb7_c01288{bottom:534.255660px;}
.yb6_c01288{bottom:534.610140px;}
.yb5_c01288{bottom:534.960375px;}
.yb4_c01288{bottom:535.143390px;}
.yb3_c01288{bottom:535.586310px;}
.yb2_c01288{bottom:535.929960px;}
.yb1_c01288{bottom:536.202690px;}
.yb0_c01288{bottom:536.718990px;}
.yaf_c01288{bottom:536.992770px;}
.yae_c01288{bottom:566.862960px;}
.yad_c01288{bottom:567.625755px;}
.yac_c01288{bottom:568.334640px;}
.yab_c01288{bottom:568.826040px;}
.yaa_c01288{bottom:569.127825px;}
.ya9_c01288{bottom:569.824770px;}
.ya8_c01288{bottom:570.425910px;}
.ya7_c01288{bottom:570.823710px;}
.ya6_c01288{bottom:571.122825px;}
.ya5_c01288{bottom:572.014785px;}
.ya4_c01288{bottom:572.311200px;}
.ya3_c01288{bottom:572.609925px;}
.ya2_c01288{bottom:572.903760px;}
.ya1_c01288{bottom:599.496675px;}
.ya0_c01288{bottom:601.322175px;}
.y9f_c01288{bottom:603.114930px;}
.y9e_c01288{bottom:604.313715px;}
.y9d_c01288{bottom:605.096475px;}
.y9c_c01288{bottom:605.714340px;}
.y9b_c01288{bottom:607.493280px;}
.y9a_c01288{bottom:608.518725px;}
.y99_c01288{bottom:609.899265px;}
.y98_c01288{bottom:632.313645px;}
.y97_c01288{bottom:637.021890px;}
.y96_c01288{bottom:640.678410px;}
.y95_c01288{bottom:671.864595px;}
.y94_c01288{bottom:672.532350px;}
.y93_c01288{bottom:673.153320px;}
.y92_c01288{bottom:673.335480px;}
.y91_c01288{bottom:673.955835px;}
.y90_c01288{bottom:674.225565px;}
.y8f_c01288{bottom:674.852820px;}
.y8e_c01288{bottom:675.282015px;}
.y8d_c01288{bottom:675.913215px;}
.y8c_c01288{bottom:676.619145px;}
.y8b_c01288{bottom:677.057730px;}
.y8a_c01288{bottom:677.398425px;}
.y89_c01288{bottom:707.316225px;}
.y88_c01288{bottom:707.851395px;}
.y87_c01288{bottom:708.241575px;}
.y86_c01288{bottom:708.477195px;}
.y85_c01288{bottom:708.860280px;}
.y84_c01288{bottom:709.867440px;}
.y83_c01288{bottom:710.179320px;}
.y82_c01288{bottom:711.186660px;}
.y81_c01288{bottom:711.958215px;}
.y80_c01288{bottom:739.551540px;}
.y7f_c01288{bottom:739.719855px;}
.y7e_c01288{bottom:740.497410px;}
.y7d_c01288{bottom:740.740770px;}
.y7c_c01288{bottom:741.729750px;}
.y7b_c01288{bottom:742.050810px;}
.y7a_c01288{bottom:742.518195px;}
.y79_c01288{bottom:743.133840px;}
.y78_c01288{bottom:743.516250px;}
.y77_c01288{bottom:743.828235px;}
.y76_c01288{bottom:776.341485px;}
.y75_c01288{bottom:777.020115px;}
.y74_c01288{bottom:779.446740px;}
.y73_c01288{bottom:780.575220px;}
.y72_c01288{bottom:781.243620px;}
.y71_c01288{bottom:782.773290px;}
.y70_c01288{bottom:783.663690px;}
.y6f_c01288{bottom:784.788345px;}
.y6e_c01288{bottom:785.679240px;}
.y6d_c01288{bottom:813.937785px;}
.y6c_c01288{bottom:814.406445px;}
.y6b_c01288{bottom:815.178090px;}
.y6a_c01288{bottom:815.487225px;}
.y69_c01288{bottom:815.646525px;}
.y68_c01288{bottom:816.185310px;}
.y67_c01288{bottom:816.650010px;}
.y66_c01288{bottom:817.180725px;}
.y65_c01288{bottom:817.574160px;}
.y64_c01288{bottom:817.807170px;}
.y5d_c01288{bottom:848.858280px;}
.y63_c01288{bottom:848.858430px;}
.y5e_c01288{bottom:848.858595px;}
.y5c_c01288{bottom:848.858835px;}
.y5f_c01288{bottom:848.858910px;}
.y62_c01288{bottom:848.859015px;}
.y60_c01288{bottom:848.859240px;}
.y61_c01288{bottom:848.859300px;}
.y5b_c01288{bottom:848.859420px;}
.y5a_c01288{bottom:848.859945px;}
.y58_c01288{bottom:848.860245px;}
.y59_c01288{bottom:848.860260px;}
.y57_c01288{bottom:886.751580px;}
.y56_c01288{bottom:887.376150px;}
.y55_c01288{bottom:887.632815px;}
.y54_c01288{bottom:888.260070px;}
.y53_c01288{bottom:888.526155px;}
.y52_c01288{bottom:889.147920px;}
.y51_c01288{bottom:889.498020px;}
.y50_c01288{bottom:890.118630px;}
.y4f_c01288{bottom:890.907750px;}
.y4e_c01288{bottom:891.254880px;}
.y4d_c01288{bottom:919.309560px;}
.y4c_c01288{bottom:919.921725px;}
.y4b_c01288{bottom:920.155560px;}
.y4a_c01288{bottom:920.767785px;}
.y49_c01288{bottom:921.507510px;}
.y48_c01288{bottom:922.853715px;}
.y47_c01288{bottom:923.943705px;}
.y46_c01288{bottom:924.321090px;}
.y45_c01288{bottom:925.036215px;}
.y44_c01288{bottom:926.120685px;}
.y43_c01288{bottom:926.356935px;}
.y42_c01288{bottom:955.283925px;}
.y41_c01288{bottom:955.695060px;}
.y40_c01288{bottom:956.086560px;}
.y3f_c01288{bottom:957.090765px;}
.y3e_c01288{bottom:957.491325px;}
.y3d_c01288{bottom:958.288965px;}
.y3c_c01288{bottom:958.582140px;}
.y3b_c01288{bottom:958.979970px;}
.y3a_c01288{bottom:959.767665px;}
.y39_c01288{bottom:960.078750px;}
.y38_c01288{bottom:960.650145px;}
.y37_c01288{bottom:989.440650px;}
.y36_c01288{bottom:989.730150px;}
.y35_c01288{bottom:990.938985px;}
.y34_c01288{bottom:991.738560px;}
.y33_c01288{bottom:992.246325px;}
.y32_c01288{bottom:992.542395px;}
.y31_c01288{bottom:992.741280px;}
.y30_c01288{bottom:993.932760px;}
.y2f_c01288{bottom:994.237020px;}
.y2e_c01288{bottom:994.919085px;}
.y2d_c01288{bottom:995.212365px;}
.y2c_c01288{bottom:1025.638575px;}
.y2b_c01288{bottom:1026.975210px;}
.y2a_c01288{bottom:1027.226865px;}
.y29_c01288{bottom:1028.088285px;}
.y28_c01288{bottom:1028.450730px;}
.y27_c01288{bottom:1029.535230px;}
.y26_c01288{bottom:1030.152480px;}
.y25_c01288{bottom:1031.229930px;}
.y24_c01288{bottom:1031.844060px;}
.y23_c01288{bottom:1032.203655px;}
.y22_c01288{bottom:1059.531930px;}
.y21_c01288{bottom:1060.020885px;}
.y20_c01288{bottom:1060.557375px;}
.y1f_c01288{bottom:1061.103810px;}
.y1e_c01288{bottom:1061.714925px;}
.y1d_c01288{bottom:1062.426930px;}
.y1c_c01288{bottom:1062.656070px;}
.y1b_c01288{bottom:1063.193355px;}
.y1a_c01288{bottom:1063.796535px;}
.y19_c01288{bottom:1094.342595px;}
.y18_c01288{bottom:1094.847585px;}
.y17_c01288{bottom:1095.913080px;}
.y16_c01288{bottom:1097.251590px;}
.y15_c01288{bottom:1097.644455px;}
.y14_c01288{bottom:1098.314220px;}
.y13_c01288{bottom:1099.510245px;}
.y12_c01288{bottom:1100.848920px;}
.y11_c01288{bottom:1101.370230px;}
.y10_c01288{bottom:1102.267950px;}
.yf_c01288{bottom:1102.679820px;}
.ye_c01288{bottom:1129.905645px;}
.yd_c01288{bottom:1130.240025px;}
.yc_c01288{bottom:1130.796525px;}
.yb_c01288{bottom:1131.355455px;}
.ya_c01288{bottom:1131.693045px;}
.y9_c01288{bottom:1132.786605px;}
.y8_c01288{bottom:1133.245770px;}
.y7_c01288{bottom:1133.577615px;}
.y6_c01288{bottom:1134.133875px;}
.y5_c01288{bottom:1134.803790px;}
.y4_c01288{bottom:1135.346490px;}
.y3_c01288{bottom:1135.683885px;}
.y2_c01288{bottom:1136.431500px;}
.y1_c01288{bottom:1193.118000px;}
.h12_c01288{height:12.000000px;}
.hc_c01288{height:18.000000px;}
.hb_c01288{height:24.000000px;}
.hd_c01288{height:30.000000px;}
.h13_c01288{height:48.000000px;}
.h5_c01288{height:72.003600px;}
.h10_c01288{height:78.000000px;}
.h4_c01288{height:78.003900px;}
.h11_c01288{height:78.015598px;}
.h2_c01288{height:84.000000px;}
.h7_c01288{height:84.004200px;}
.he_c01288{height:84.018520px;}
.h3_c01288{height:90.004500px;}
.hf_c01288{height:90.019843px;}
.h9_c01288{height:96.004800px;}
.h6_c01288{height:102.005100px;}
.ha_c01288{height:114.005700px;}
.h8_c01288{height:132.006600px;}
.h1_c01288{height:1250.250000px;}
.h0_c01288{height:1250.370000px;}
.w1_c01288{width:912.000000px;}
.w0_c01288{width:912.300000px;}
.x0_c01288{left:0.000000px;}
.xb2_c01288{left:156.600000px;}
.xb5_c01288{left:158.803500px;}
.x8c_c01288{left:160.429020px;}
.x71_c01288{left:161.883165px;}
.x40_c01288{left:163.894155px;}
.x41_c01288{left:164.974260px;}
.x11_c01288{left:167.024910px;}
.x4_c01288{left:168.094500px;}
.x35_c01288{left:187.775070px;}
.xb1_c01288{left:192.240000px;}
.x72_c01288{left:194.566995px;}
.x7b_c01288{left:195.901755px;}
.x49_c01288{left:197.543190px;}
.x20_c01288{left:199.145835px;}
.x12_c01288{left:201.311220px;}
.x84_c01288{left:204.519315px;}
.x5f_c01288{left:206.432055px;}
.x52_c01288{left:207.444675px;}
.x3d_c01288{left:209.668665px;}
.xb6_c01288{left:213.316500px;}
.xb3_c01288{left:221.940000px;}
.x73_c01288{left:227.739825px;}
.x2d_c01288{left:230.462385px;}
.xa0_c01288{left:235.723677px;}
.x5_c01288{left:242.856000px;}
.xb4_c01288{left:244.350000px;}
.x19_c01288{left:253.685250px;}
.x21_c01288{left:255.008280px;}
.xa9_c01288{left:258.375729px;}
.x74_c01288{left:260.681655px;}
.x53_c01288{left:262.037310px;}
.x2e_c01288{left:265.021230px;}
.x97_c01288{left:268.890000px;}
.x68_c01288{left:271.663560px;}
.x4b_c01288{left:272.723790px;}
.x26_c01288{left:274.731360px;}
.x6_c01288{left:276.595500px;}
.x36_c01288{left:286.321080px;}
.xb7_c01288{left:289.689000px;}
.x85_c01288{left:292.562700px;}
.x7c_c01288{left:294.456720px;}
.x8d_c01288{left:304.057410px;}
.x27_c01288{left:308.457690px;}
.x4c_c01288{left:317.258835px;}
.x13_c01288{left:319.511850px;}
.xaa_c01288{left:323.485305px;}
.x98_c01288{left:324.508500px;}
.x86_c01288{left:326.550045px;}
.x42_c01288{left:329.143170px;}
.x7_c01288{left:330.865500px;}
.xa1_c01288{left:334.812651px;}
.x7d_c01288{left:337.372575px;}
.x69_c01288{left:348.361425px;}
.x54_c01288{left:350.004450px;}
.x37_c01288{left:351.382935px;}
.x22_c01288{left:353.002305px;}
.x99_c01288{left:357.727500px;}
.x75_c01288{left:359.778645px;}
.x1a_c01288{left:363.031020px;}
.xa2_c01288{left:368.284872px;}
.x43_c01288{left:373.156065px;}
.x8e_c01288{left:381.601260px;}
.x38_c01288{left:385.671090px;}
.xab_c01288{left:389.115444px;}
.x76_c01288{left:392.990475px;}
.x2f_c01288{left:396.775050px;}
.x8_c01288{left:397.857000px;}
.x6a_c01288{left:405.301365px;}
.x1_c01288{left:408.780000px;}
.xb8_c01288{left:411.208500px;}
.xbd_c01288{left:412.280670px;}
.x55_c01288{left:416.694945px;}
.x4d_c01288{left:417.954255px;}
.xac_c01288{left:423.143452px;}
.xa3_c01288{left:424.517959px;}
.x87_c01288{left:425.924535px;}
.x30_c01288{left:429.392880px;}
.x2_c01288{left:431.730000px;}
.x9a_c01288{left:434.178000px;}
.x77_c01288{left:437.270925px;}
.x28_c01288{left:440.807010px;}
.x44_c01288{left:450.919335px;}
.x9_c01288{left:453.483000px;}
.x92_c01288{left:458.212470px;}
.x7e_c01288{left:459.442020px;}
.x5a_c01288{left:461.614635px;}
.x29_c01288{left:462.945735px;}
.x1b_c01288{left:464.834580px;}
.x66_c01288{left:467.891880px;}
.x4a_c01288{left:472.964955px;}
.x3_c01288{left:478.170000px;}
.xbe_c01288{left:479.205480px;}
.x60_c01288{left:482.128575px;}
.x39_c01288{left:484.769100px;}
.xa_c01288{left:486.667500px;}
.x8f_c01288{left:489.843765px;}
.x4e_c01288{left:494.413605px;}
.x2a_c01288{left:495.853065px;}
.x93_c01288{left:502.495395px;}
.x6b_c01288{left:504.137460px;}
.x23_c01288{left:507.725760px;}
.xb9_c01288{left:511.650000px;}
.x31_c01288{left:518.007765px;}
.xad_c01288{left:522.801600px;}
.x90_c01288{left:524.937165px;}
.x45_c01288{left:528.414090px;}
.x14_c01288{left:530.677620px;}
.xb_c01288{left:532.584000px;}
.x88_c01288{left:536.915145px;}
.x6c_c01288{left:538.471215px;}
.x24_c01288{left:540.669930px;}
.x9b_c01288{left:546.231000px;}
.x1c_c01288{left:552.048690px;}
.x61_c01288{left:560.455635px;}
.x32_c01288{left:562.564215px;}
.xbf_c01288{left:566.196780px;}
.xa4_c01288{left:567.395946px;}
.x89_c01288{left:570.663975px;}
.x6d_c01288{left:581.943735px;}
.x4f_c01288{left:584.242620px;}
.x46_c01288{left:585.386790px;}
.x15_c01288{left:586.553010px;}
.x7f_c01288{left:592.568175px;}
.x62_c01288{left:594.179310px;}
.xa5_c01288{left:600.842667px;}
.x56_c01288{left:603.804555px;}
.x5b_c01288{left:605.534955px;}
.x3a_c01288{left:607.088370px;}
.x78_c01288{left:614.959695px;}
.x16_c01288{left:619.238850px;}
.xba_c01288{left:622.630500px;}
.x1d_c01288{left:630.094530px;}
.x57_c01288{left:638.641605px;}
.xc_c01288{left:641.940000px;}
.x6e_c01288{left:648.566910px;}
.x3e_c01288{left:650.887470px;}
.x9c_c01288{left:657.181500px;}
.x5c_c01288{left:660.345105px;}
.xbb_c01288{left:666.708000px;}
.x79_c01288{left:669.500235px;}
.x63_c01288{left:671.666355px;}
.x33_c01288{left:674.085825px;}
.xd_c01288{left:675.699000px;}
.x9d_c01288{left:678.561000px;}
.x80_c01288{left:681.152445px;}
.xae_c01288{left:688.904512px;}
.xa6_c01288{left:690.285444px;}
.x5d_c01288{left:694.108125px;}
.x47_c01288{left:696.091860px;}
.x81_c01288{left:703.543395px;}
.x50_c01288{left:705.542985px;}
.x1e_c01288{left:706.695825px;}
.x34_c01288{left:717.586260px;}
.xbc_c01288{left:721.372500px;}
.xaf_c01288{left:723.202552px;}
.x3f_c01288{left:728.946030px;}
.x3b_c01288{left:729.982140px;}
.xe_c01288{left:731.592000px;}
.x9e_c01288{left:736.318500px;}
.x82_c01288{left:737.570070px;}
.x51_c01288{left:739.502595px;}
.xa7_c01288{left:744.848811px;}
.x91_c01288{left:746.935845px;}
.x6f_c01288{left:748.184445px;}
.x58_c01288{left:749.700435px;}
.x3c_c01288{left:751.265430px;}
.xb0_c01288{left:755.314777px;}
.x48_c01288{left:757.384980px;}
.x25_c01288{left:763.438710px;}
.x64_c01288{left:772.081365px;}
.x59_c01288{left:773.732655px;}
.x2b_c01288{left:775.373355px;}
.x1f_c01288{left:776.443410px;}
.x8a_c01288{left:780.649590px;}
.xf_c01288{left:787.242000px;}
.xa8_c01288{left:788.999387px;}
.x83_c01288{left:803.412390px;}
.x2c_c01288{left:807.473670px;}
.x9f_c01288{left:811.974000px;}
.x17_c01288{left:819.585345px;}
.x10_c01288{left:820.680000px;}
.x5e_c01288{left:826.397100px;}
.x7a_c01288{left:833.169885px;}
.x70_c01288{left:849.576330px;}
.x65_c01288{left:855.508530px;}
.x67_c01288{left:860.258535px;}
.x18_c01288{left:861.683505px;}
.x8b_c01288{left:865.691445px;}
.x96_c01288{left:868.590000px;}
.xc0_c01288{left:883.170000px;}
.x94_c01288{left:884.520000px;}
.x95_c01288{left:886.950000px;}
@media print{
.v0_c01288{vertical-align:0.000000pt;}
.ls0_c01288{letter-spacing:0.000000pt;}
.ws0_c01288{word-spacing:0.000000pt;}
.fs10_c01288{font-size:10.666667pt;}
.fsa_c01288{font-size:16.000000pt;}
.fs9_c01288{font-size:21.333333pt;}
.fsb_c01288{font-size:26.666667pt;}
.fs11_c01288{font-size:42.666667pt;}
.fs3_c01288{font-size:64.003200pt;}
.fse_c01288{font-size:69.333333pt;}
.fs2_c01288{font-size:69.336800pt;}
.fsf_c01288{font-size:69.347199pt;}
.fs0_c01288{font-size:74.666667pt;}
.fs5_c01288{font-size:74.670400pt;}
.fsc_c01288{font-size:74.683129pt;}
.fs1_c01288{font-size:80.004000pt;}
.fsd_c01288{font-size:80.017638pt;}
.fs7_c01288{font-size:85.337600pt;}
.fs4_c01288{font-size:90.671200pt;}
.fs8_c01288{font-size:101.338400pt;}
.fs6_c01288{font-size:117.339200pt;}
.y0_c01288{bottom:0.000000pt;}
.y114_c01288{bottom:51.404667pt;}
.y113_c01288{bottom:52.652187pt;}
.y112_c01288{bottom:54.585520pt;}
.y111_c01288{bottom:56.072747pt;}
.y110_c01288{bottom:57.801467pt;}
.y10f_c01288{bottom:59.564320pt;}
.y10e_c01288{bottom:60.480320pt;}
.y10d_c01288{bottom:75.814880pt;}
.y10c_c01288{bottom:76.402773pt;}
.y10b_c01288{bottom:77.374587pt;}
.y10a_c01288{bottom:78.158187pt;}
.y109_c01288{bottom:79.132400pt;}
.y108_c01288{bottom:80.131173pt;}
.y107_c01288{bottom:80.716267pt;}
.y106_c01288{bottom:81.090987pt;}
.y105_c01288{bottom:81.916800pt;}
.y104_c01288{bottom:82.690027pt;}
.y103_c01288{bottom:84.077147pt;}
.y102_c01288{bottom:85.434880pt;}
.y101_c01288{bottom:86.404000pt;}
.y100_c01288{bottom:112.936000pt;}
.yff_c01288{bottom:131.512000pt;}
.y11d_c01288{bottom:138.480000pt;}
.y11c_c01288{bottom:146.880000pt;}
.yfe_c01288{bottom:155.064132pt;}
.yfd_c01288{bottom:155.463472pt;}
.yfc_c01288{bottom:155.890275pt;}
.yfb_c01288{bottom:157.957073pt;}
.y11b_c01288{bottom:158.400000pt;}
.yfa_c01288{bottom:158.507801pt;}
.yf9_c01288{bottom:159.197085pt;}
.yf8_c01288{bottom:159.620181pt;}
.yf7_c01288{bottom:160.437097pt;}
.yf6_c01288{bottom:161.246964pt;}
.yf5_c01288{bottom:162.469709pt;}
.y11a_c01288{bottom:166.920000pt;}
.y119_c01288{bottom:169.440000pt;}
.yf4_c01288{bottom:186.030613pt;}
.yf3_c01288{bottom:186.618653pt;}
.yf2_c01288{bottom:187.346375pt;}
.yf1_c01288{bottom:188.538429pt;}
.yf0_c01288{bottom:188.984023pt;}
.y118_c01288{bottom:190.080000pt;}
.yef_c01288{bottom:190.889409pt;}
.yee_c01288{bottom:191.638961pt;}
.yed_c01288{bottom:192.085031pt;}
.y117_c01288{bottom:192.240000pt;}
.yec_c01288{bottom:192.957299pt;}
.yeb_c01288{bottom:193.406459pt;}
.yea_c01288{bottom:194.395983pt;}
.y116_c01288{bottom:199.920000pt;}
.y115_c01288{bottom:206.038667pt;}
.ye9_c01288{bottom:217.387765pt;}
.ye8_c01288{bottom:218.800001pt;}
.ye7_c01288{bottom:219.878141pt;}
.ye6_c01288{bottom:220.277225pt;}
.ye5_c01288{bottom:222.348301pt;}
.ye4_c01288{bottom:224.439957pt;}
.ye3_c01288{bottom:225.867033pt;}
.ye2_c01288{bottom:226.487121pt;}
.ye1_c01288{bottom:227.525333pt;}
.ye0_c01288{bottom:271.440000pt;}
.ydf_c01288{bottom:279.840000pt;}
.yde_c01288{bottom:305.280000pt;}
.ydd_c01288{bottom:382.317067pt;}
.yd8_c01288{bottom:382.317213pt;}
.yda_c01288{bottom:382.317267pt;}
.ydc_c01288{bottom:382.317320pt;}
.yd7_c01288{bottom:382.317467pt;}
.yd9_c01288{bottom:382.317773pt;}
.ydb_c01288{bottom:382.317827pt;}
.yd6_c01288{bottom:407.707840pt;}
.yd5_c01288{bottom:408.187067pt;}
.yd4_c01288{bottom:409.594107pt;}
.yd3_c01288{bottom:410.380320pt;}
.yd2_c01288{bottom:411.344507pt;}
.yd1_c01288{bottom:411.843133pt;}
.yd0_c01288{bottom:412.753373pt;}
.ycf_c01288{bottom:413.382680pt;}
.yce_c01288{bottom:414.485333pt;}
.ycd_c01288{bottom:415.882960pt;}
.ycc_c01288{bottom:416.527440pt;}
.ycb_c01288{bottom:439.054653pt;}
.yca_c01288{bottom:439.734573pt;}
.yc9_c01288{bottom:440.002067pt;}
.yc8_c01288{bottom:440.355667pt;}
.yc7_c01288{bottom:440.532227pt;}
.yc6_c01288{bottom:441.154413pt;}
.yc5_c01288{bottom:441.413093pt;}
.yc4_c01288{bottom:441.683747pt;}
.yc3_c01288{bottom:442.302160pt;}
.yc2_c01288{bottom:442.571653pt;}
.yc1_c01288{bottom:442.839933pt;}
.yc0_c01288{bottom:443.366973pt;}
.ybf_c01288{bottom:443.638413pt;}
.ybe_c01288{bottom:444.342347pt;}
.ybd_c01288{bottom:444.685173pt;}
.ybc_c01288{bottom:472.762227pt;}
.ybb_c01288{bottom:473.230147pt;}
.yba_c01288{bottom:473.472600pt;}
.yb9_c01288{bottom:473.631627pt;}
.yb8_c01288{bottom:474.261693pt;}
.yb7_c01288{bottom:474.893920pt;}
.yb6_c01288{bottom:475.209013pt;}
.yb5_c01288{bottom:475.520333pt;}
.yb4_c01288{bottom:475.683013pt;}
.yb3_c01288{bottom:476.076720pt;}
.yb2_c01288{bottom:476.382187pt;}
.yb1_c01288{bottom:476.624613pt;}
.yb0_c01288{bottom:477.083547pt;}
.yaf_c01288{bottom:477.326907pt;}
.yae_c01288{bottom:503.878187pt;}
.yad_c01288{bottom:504.556227pt;}
.yac_c01288{bottom:505.186347pt;}
.yab_c01288{bottom:505.623147pt;}
.yaa_c01288{bottom:505.891400pt;}
.ya9_c01288{bottom:506.510907pt;}
.ya8_c01288{bottom:507.045253pt;}
.ya7_c01288{bottom:507.398853pt;}
.ya6_c01288{bottom:507.664733pt;}
.ya5_c01288{bottom:508.457587pt;}
.ya4_c01288{bottom:508.721067pt;}
.ya3_c01288{bottom:508.986600pt;}
.ya2_c01288{bottom:509.247787pt;}
.ya1_c01288{bottom:532.885933pt;}
.ya0_c01288{bottom:534.508600pt;}
.y9f_c01288{bottom:536.102160pt;}
.y9e_c01288{bottom:537.167747pt;}
.y9d_c01288{bottom:537.863533pt;}
.y9c_c01288{bottom:538.412747pt;}
.y9b_c01288{bottom:539.994027pt;}
.y9a_c01288{bottom:540.905533pt;}
.y99_c01288{bottom:542.132680pt;}
.y98_c01288{bottom:562.056573pt;}
.y97_c01288{bottom:566.241680pt;}
.y96_c01288{bottom:569.491920pt;}
.y95_c01288{bottom:597.212973pt;}
.y94_c01288{bottom:597.806533pt;}
.y93_c01288{bottom:598.358507pt;}
.y92_c01288{bottom:598.520427pt;}
.y91_c01288{bottom:599.071853pt;}
.y90_c01288{bottom:599.311613pt;}
.y8f_c01288{bottom:599.869173pt;}
.y8e_c01288{bottom:600.250680pt;}
.y8d_c01288{bottom:600.811747pt;}
.y8c_c01288{bottom:601.439240pt;}
.y8b_c01288{bottom:601.829093pt;}
.y8a_c01288{bottom:602.131933pt;}
.y89_c01288{bottom:628.725533pt;}
.y88_c01288{bottom:629.201240pt;}
.y87_c01288{bottom:629.548067pt;}
.y86_c01288{bottom:629.757507pt;}
.y85_c01288{bottom:630.098027pt;}
.y84_c01288{bottom:630.993280pt;}
.y83_c01288{bottom:631.270507pt;}
.y82_c01288{bottom:632.165920pt;}
.y81_c01288{bottom:632.851747pt;}
.y80_c01288{bottom:657.379147pt;}
.y7f_c01288{bottom:657.528760pt;}
.y7e_c01288{bottom:658.219920pt;}
.y7d_c01288{bottom:658.436240pt;}
.y7c_c01288{bottom:659.315333pt;}
.y7b_c01288{bottom:659.600720pt;}
.y7a_c01288{bottom:660.016173pt;}
.y79_c01288{bottom:660.563413pt;}
.y78_c01288{bottom:660.903333pt;}
.y77_c01288{bottom:661.180653pt;}
.y76_c01288{bottom:690.081320pt;}
.y75_c01288{bottom:690.684547pt;}
.y74_c01288{bottom:692.841547pt;}
.y73_c01288{bottom:693.844640pt;}
.y72_c01288{bottom:694.438773pt;}
.y71_c01288{bottom:695.798480pt;}
.y70_c01288{bottom:696.589947pt;}
.y6f_c01288{bottom:697.589640pt;}
.y6e_c01288{bottom:698.381547pt;}
.y6d_c01288{bottom:723.500253pt;}
.y6c_c01288{bottom:723.916840pt;}
.y6b_c01288{bottom:724.602747pt;}
.y6a_c01288{bottom:724.877533pt;}
.y69_c01288{bottom:725.019133pt;}
.y68_c01288{bottom:725.498053pt;}
.y67_c01288{bottom:725.911120pt;}
.y66_c01288{bottom:726.382867pt;}
.y65_c01288{bottom:726.732587pt;}
.y64_c01288{bottom:726.939707pt;}
.y5d_c01288{bottom:754.540693pt;}
.y63_c01288{bottom:754.540827pt;}
.y5e_c01288{bottom:754.540973pt;}
.y5c_c01288{bottom:754.541187pt;}
.y5f_c01288{bottom:754.541253pt;}
.y62_c01288{bottom:754.541347pt;}
.y60_c01288{bottom:754.541547pt;}
.y61_c01288{bottom:754.541600pt;}
.y5b_c01288{bottom:754.541707pt;}
.y5a_c01288{bottom:754.542173pt;}
.y58_c01288{bottom:754.542440pt;}
.y59_c01288{bottom:754.542453pt;}
.y57_c01288{bottom:788.223627pt;}
.y56_c01288{bottom:788.778800pt;}
.y55_c01288{bottom:789.006947pt;}
.y54_c01288{bottom:789.564507pt;}
.y53_c01288{bottom:789.801027pt;}
.y52_c01288{bottom:790.353707pt;}
.y51_c01288{bottom:790.664907pt;}
.y50_c01288{bottom:791.216560pt;}
.y4f_c01288{bottom:791.918000pt;}
.y4e_c01288{bottom:792.226560pt;}
.y4d_c01288{bottom:817.164053pt;}
.y4c_c01288{bottom:817.708200pt;}
.y4b_c01288{bottom:817.916053pt;}
.y4a_c01288{bottom:818.460253pt;}
.y49_c01288{bottom:819.117787pt;}
.y48_c01288{bottom:820.314413pt;}
.y47_c01288{bottom:821.283293pt;}
.y46_c01288{bottom:821.618747pt;}
.y45_c01288{bottom:822.254413pt;}
.y44_c01288{bottom:823.218387pt;}
.y43_c01288{bottom:823.428387pt;}
.y42_c01288{bottom:849.141267pt;}
.y41_c01288{bottom:849.506720pt;}
.y40_c01288{bottom:849.854720pt;}
.y3f_c01288{bottom:850.747347pt;}
.y3e_c01288{bottom:851.103400pt;}
.y3d_c01288{bottom:851.812413pt;}
.y3c_c01288{bottom:852.073013pt;}
.y3b_c01288{bottom:852.426640pt;}
.y3a_c01288{bottom:853.126813pt;}
.y39_c01288{bottom:853.403333pt;}
.y38_c01288{bottom:853.911240pt;}
.y37_c01288{bottom:879.502800pt;}
.y36_c01288{bottom:879.760133pt;}
.y35_c01288{bottom:880.834653pt;}
.y34_c01288{bottom:881.545387pt;}
.y33_c01288{bottom:881.996733pt;}
.y32_c01288{bottom:882.259907pt;}
.y31_c01288{bottom:882.436693pt;}
.y30_c01288{bottom:883.495787pt;}
.y2f_c01288{bottom:883.766240pt;}
.y2e_c01288{bottom:884.372520pt;}
.y2d_c01288{bottom:884.633213pt;}
.y2c_c01288{bottom:911.678733pt;}
.y2b_c01288{bottom:912.866853pt;}
.y2a_c01288{bottom:913.090547pt;}
.y29_c01288{bottom:913.856253pt;}
.y28_c01288{bottom:914.178427pt;}
.y27_c01288{bottom:915.142427pt;}
.y26_c01288{bottom:915.691093pt;}
.y25_c01288{bottom:916.648827pt;}
.y24_c01288{bottom:917.194720pt;}
.y23_c01288{bottom:917.514360pt;}
.y22_c01288{bottom:941.806160pt;}
.y21_c01288{bottom:942.240787pt;}
.y20_c01288{bottom:942.717667pt;}
.y1f_c01288{bottom:943.203387pt;}
.y1e_c01288{bottom:943.746600pt;}
.y1d_c01288{bottom:944.379493pt;}
.y1c_c01288{bottom:944.583173pt;}
.y1b_c01288{bottom:945.060760pt;}
.y1a_c01288{bottom:945.596920pt;}
.y19_c01288{bottom:972.748973pt;}
.y18_c01288{bottom:973.197853pt;}
.y17_c01288{bottom:974.144960pt;}
.y16_c01288{bottom:975.334747pt;}
.y15_c01288{bottom:975.683960pt;}
.y14_c01288{bottom:976.279307pt;}
.y13_c01288{bottom:977.342440pt;}
.y12_c01288{bottom:978.532373pt;}
.y11_c01288{bottom:978.995760pt;}
.y10_c01288{bottom:979.793733pt;}
.yf_c01288{bottom:980.159840pt;}
.ye_c01288{bottom:1004.360573pt;}
.yd_c01288{bottom:1004.657800pt;}
.yc_c01288{bottom:1005.152467pt;}
.yb_c01288{bottom:1005.649293pt;}
.ya_c01288{bottom:1005.949373pt;}
.y9_c01288{bottom:1006.921427pt;}
.y8_c01288{bottom:1007.329573pt;}
.y7_c01288{bottom:1007.624547pt;}
.y6_c01288{bottom:1008.119000pt;}
.y5_c01288{bottom:1008.714480pt;}
.y4_c01288{bottom:1009.196880pt;}
.y3_c01288{bottom:1009.496787pt;}
.y2_c01288{bottom:1010.161333pt;}
.y1_c01288{bottom:1060.549333pt;}
.h12_c01288{height:10.666667pt;}
.hc_c01288{height:16.000000pt;}
.hb_c01288{height:21.333333pt;}
.hd_c01288{height:26.666667pt;}
.h13_c01288{height:42.666667pt;}
.h5_c01288{height:64.003200pt;}
.h10_c01288{height:69.333333pt;}
.h4_c01288{height:69.336800pt;}
.h11_c01288{height:69.347199pt;}
.h2_c01288{height:74.666667pt;}
.h7_c01288{height:74.670400pt;}
.he_c01288{height:74.683129pt;}
.h3_c01288{height:80.004000pt;}
.hf_c01288{height:80.017638pt;}
.h9_c01288{height:85.337600pt;}
.h6_c01288{height:90.671200pt;}
.ha_c01288{height:101.338400pt;}
.h8_c01288{height:117.339200pt;}
.h1_c01288{height:1111.333333pt;}
.h0_c01288{height:1111.440000pt;}
.w1_c01288{width:810.666667pt;}
.w0_c01288{width:810.933333pt;}
.x0_c01288{left:0.000000pt;}
.xb2_c01288{left:139.200000pt;}
.xb5_c01288{left:141.158667pt;}
.x8c_c01288{left:142.603573pt;}
.x71_c01288{left:143.896147pt;}
.x40_c01288{left:145.683693pt;}
.x41_c01288{left:146.643787pt;}
.x11_c01288{left:148.466587pt;}
.x4_c01288{left:149.417333pt;}
.x35_c01288{left:166.911173pt;}
.xb1_c01288{left:170.880000pt;}
.x72_c01288{left:172.948440pt;}
.x7b_c01288{left:174.134893pt;}
.x49_c01288{left:175.593947pt;}
.x20_c01288{left:177.018520pt;}
.x12_c01288{left:178.943307pt;}
.x84_c01288{left:181.794947pt;}
.x5f_c01288{left:183.495160pt;}
.x52_c01288{left:184.395267pt;}
.x3d_c01288{left:186.372147pt;}
.xb6_c01288{left:189.614667pt;}
.xb3_c01288{left:197.280000pt;}
.x73_c01288{left:202.435400pt;}
.x2d_c01288{left:204.855453pt;}
.xa0_c01288{left:209.532157pt;}
.x5_c01288{left:215.872000pt;}
.xb4_c01288{left:217.200000pt;}
.x19_c01288{left:225.498000pt;}
.x21_c01288{left:226.674027pt;}
.xa9_c01288{left:229.667315pt;}
.x74_c01288{left:231.717027pt;}
.x53_c01288{left:232.922053pt;}
.x2e_c01288{left:235.574427pt;}
.x97_c01288{left:239.013333pt;}
.x68_c01288{left:241.478720pt;}
.x4b_c01288{left:242.421147pt;}
.x26_c01288{left:244.205653pt;}
.x6_c01288{left:245.862667pt;}
.x36_c01288{left:254.507627pt;}
.xb7_c01288{left:257.501333pt;}
.x85_c01288{left:260.055733pt;}
.x7c_c01288{left:261.739307pt;}
.x8d_c01288{left:270.273253pt;}
.x27_c01288{left:274.184613pt;}
.x4c_c01288{left:282.007853pt;}
.x13_c01288{left:284.010533pt;}
.xaa_c01288{left:287.542493pt;}
.x98_c01288{left:288.452000pt;}
.x86_c01288{left:290.266707pt;}
.x42_c01288{left:292.571707pt;}
.x7_c01288{left:294.102667pt;}
.xa1_c01288{left:297.611245pt;}
.x7d_c01288{left:299.886733pt;}
.x69_c01288{left:309.654600pt;}
.x54_c01288{left:311.115067pt;}
.x37_c01288{left:312.340387pt;}
.x22_c01288{left:313.779827pt;}
.x99_c01288{left:317.980000pt;}
.x75_c01288{left:319.803240pt;}
.x1a_c01288{left:322.694240pt;}
.xa2_c01288{left:327.364331pt;}
.x43_c01288{left:331.694280pt;}
.x8e_c01288{left:339.201120pt;}
.x38_c01288{left:342.818747pt;}
.xab_c01288{left:345.880395pt;}
.x76_c01288{left:349.324867pt;}
.x2f_c01288{left:352.688933pt;}
.x8_c01288{left:353.650667pt;}
.x6a_c01288{left:360.267880pt;}
.x1_c01288{left:363.360000pt;}
.xb8_c01288{left:365.518667pt;}
.xbd_c01288{left:366.471707pt;}
.x55_c01288{left:370.395507pt;}
.x4d_c01288{left:371.514893pt;}
.xac_c01288{left:376.127513pt;}
.xa3_c01288{left:377.349297pt;}
.x87_c01288{left:378.599587pt;}
.x30_c01288{left:381.682560pt;}
.x2_c01288{left:383.760000pt;}
.x9a_c01288{left:385.936000pt;}
.x77_c01288{left:388.685267pt;}
.x28_c01288{left:391.828453pt;}
.x44_c01288{left:400.817187pt;}
.x9_c01288{left:403.096000pt;}
.x92_c01288{left:407.299973pt;}
.x7e_c01288{left:408.392907pt;}
.x5a_c01288{left:410.324120pt;}
.x29_c01288{left:411.507320pt;}
.x1b_c01288{left:413.186293pt;}
.x66_c01288{left:415.903893pt;}
.x4a_c01288{left:420.413293pt;}
.x3_c01288{left:425.040000pt;}
.xbe_c01288{left:425.960427pt;}
.x60_c01288{left:428.558733pt;}
.x39_c01288{left:430.905867pt;}
.xa_c01288{left:432.593333pt;}
.x8f_c01288{left:435.416680pt;}
.x4e_c01288{left:439.478760pt;}
.x2a_c01288{left:440.758280pt;}
.x93_c01288{left:446.662573pt;}
.x6b_c01288{left:448.122187pt;}
.x23_c01288{left:451.311787pt;}
.xb9_c01288{left:454.800000pt;}
.x31_c01288{left:460.451347pt;}
.xad_c01288{left:464.712533pt;}
.x90_c01288{left:466.610813pt;}
.x45_c01288{left:469.701413pt;}
.x14_c01288{left:471.713440pt;}
.xb_c01288{left:473.408000pt;}
.x88_c01288{left:477.257907pt;}
.x6c_c01288{left:478.641080pt;}
.x24_c01288{left:480.595493pt;}
.x9b_c01288{left:485.538667pt;}
.x1c_c01288{left:490.709947pt;}
.x61_c01288{left:498.182787pt;}
.x32_c01288{left:500.057080pt;}
.xbf_c01288{left:503.286027pt;}
.xa4_c01288{left:504.351952pt;}
.x89_c01288{left:507.256867pt;}
.x6d_c01288{left:517.283320pt;}
.x4f_c01288{left:519.326773pt;}
.x46_c01288{left:520.343813pt;}
.x15_c01288{left:521.380453pt;}
.x7f_c01288{left:526.727267pt;}
.x62_c01288{left:528.159387pt;}
.xa5_c01288{left:534.082371pt;}
.x56_c01288{left:536.715160pt;}
.x5b_c01288{left:538.253293pt;}
.x3a_c01288{left:539.634107pt;}
.x78_c01288{left:546.630840pt;}
.x16_c01288{left:550.434533pt;}
.xba_c01288{left:553.449333pt;}
.x1d_c01288{left:560.084027pt;}
.x57_c01288{left:567.681427pt;}
.xc_c01288{left:570.613333pt;}
.x6e_c01288{left:576.503920pt;}
.x3e_c01288{left:578.566640pt;}
.x9c_c01288{left:584.161333pt;}
.x5c_c01288{left:586.973427pt;}
.xbb_c01288{left:592.629333pt;}
.x79_c01288{left:595.111320pt;}
.x63_c01288{left:597.036760pt;}
.x33_c01288{left:599.187400pt;}
.xd_c01288{left:600.621333pt;}
.x9d_c01288{left:603.165333pt;}
.x80_c01288{left:605.468840pt;}
.xae_c01288{left:612.359567pt;}
.xa6_c01288{left:613.587061pt;}
.x5d_c01288{left:616.985000pt;}
.x47_c01288{left:618.748320pt;}
.x81_c01288{left:625.371907pt;}
.x50_c01288{left:627.149320pt;}
.x1e_c01288{left:628.174067pt;}
.x34_c01288{left:637.854453pt;}
.xbc_c01288{left:641.220000pt;}
.xaf_c01288{left:642.846713pt;}
.x3f_c01288{left:647.952027pt;}
.x3b_c01288{left:648.873013pt;}
.xe_c01288{left:650.304000pt;}
.x9e_c01288{left:654.505333pt;}
.x82_c01288{left:655.617840pt;}
.x51_c01288{left:657.335640pt;}
.xa7_c01288{left:662.087832pt;}
.x91_c01288{left:663.942973pt;}
.x6f_c01288{left:665.052840pt;}
.x58_c01288{left:666.400387pt;}
.x3c_c01288{left:667.791493pt;}
.xb0_c01288{left:671.390913pt;}
.x48_c01288{left:673.231093pt;}
.x25_c01288{left:678.612187pt;}
.x64_c01288{left:686.294547pt;}
.x59_c01288{left:687.762360pt;}
.x2b_c01288{left:689.220760pt;}
.x1f_c01288{left:690.171920pt;}
.x8a_c01288{left:693.910747pt;}
.xf_c01288{left:699.770667pt;}
.xa8_c01288{left:701.332788pt;}
.x83_c01288{left:714.144347pt;}
.x2c_c01288{left:717.754373pt;}
.x9f_c01288{left:721.754667pt;}
.x17_c01288{left:728.520307pt;}
.x10_c01288{left:729.493333pt;}
.x5e_c01288{left:734.575200pt;}
.x7a_c01288{left:740.595453pt;}
.x70_c01288{left:755.178960pt;}
.x65_c01288{left:760.452027pt;}
.x67_c01288{left:764.674253pt;}
.x18_c01288{left:765.940893pt;}
.x8b_c01288{left:769.503507pt;}
.x96_c01288{left:772.080000pt;}
.xc0_c01288{left:785.040000pt;}
.x94_c01288{left:786.240000pt;}
.x95_c01288{left:788.400000pt;}
}





/* 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_c01289 {
    display:none;
  }
  .loading-indicator_c01289.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01289 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_c01289 { 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_c01289" -> "#page-container .classname_c01289")
 */
.pf_c01289 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01289 { /* 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_c01289.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01289 { /* 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_c01289 { /* 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_c01289 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01289 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01289 {overflow:visible;}
  }
}
.c_c01289 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01289 { /* 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_c01289:after { /* webkit #35443 */
  content: '';
}
.t_c01289:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01289 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 */
}
.__c01289 { /* 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_c01289 { /* info for Javascript */
  display:none;
}
.l_c01289 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01289 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01289 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01289: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_c01289 {
    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_c01289.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01289.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_c01289 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01289{font-family:sans-serif;visibility:hidden;}
.sc__c01289{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01289{-webkit-text-stroke:0px transparent;}
}
.y0_c01289{bottom:0.000000px;}
.h0_c01289{height:1249.500000px;}
.w1_c01289{width:912.000000px;}
.w0_c01289{width:912.300000px;}
.x0_c01289{left:0.000000px;}
@media print{
.y0_c01289{bottom:0.000000pt;}
.h0_c01289{height:1110.666667pt;}
.w1_c01289{width:810.666667pt;}
.w0_c01289{width:810.933333pt;}
.x0_c01289{left:0.000000pt;}
}





/* 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_c01290 {
    display:none;
  }
  .loading-indicator_c01290.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01290 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_c01290 { 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_c01290" -> "#page-container .classname_c01290")
 */
.pf_c01290 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01290 { /* 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_c01290.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01290 { /* 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_c01290 { /* 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_c01290 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01290 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01290 {overflow:visible;}
  }
}
.c_c01290 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01290 { /* 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_c01290:after { /* webkit #35443 */
  content: '';
}
.t_c01290:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01290 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 */
}
.__c01290 { /* 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_c01290 { /* info for Javascript */
  display:none;
}
.l_c01290 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01290 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01290 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01290: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_c01290 {
    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_c01290.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01290.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_c01290 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01290{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01290;src:url('chunks/assets/font_c605e72f209fc835e906f064.woff2')format("woff");}.ff1_c01290{font-family:ff1_c01290;line-height:1.000000;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;}
.m33_c01290{transform:matrix(0.140690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140690,0.000000,0.000000,0.250000,0,0);}
.m31_c01290{transform:matrix(0.141285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141285,0.000000,0.000000,0.250000,0,0);}
.ma7_c01290{transform:matrix(0.146093,-0.001461,0.002500,0.249988,0,0);-ms-transform:matrix(0.146093,-0.001461,0.002500,0.249988,0,0);-webkit-transform:matrix(0.146093,-0.001461,0.002500,0.249988,0,0);}
.m30_c01290{transform:matrix(0.147180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147180,0.000000,0.000000,0.250000,0,0);}
.m2d_c01290{transform:matrix(0.147595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147595,0.000000,0.000000,0.250000,0,0);}
.m35_c01290{transform:matrix(0.150015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150015,0.000000,0.000000,0.250000,0,0);}
.m2e_c01290{transform:matrix(0.154190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154190,0.000000,0.000000,0.250000,0,0);}
.m2f_c01290{transform:matrix(0.155125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155125,0.000000,0.000000,0.250000,0,0);}
.ma9_c01290{transform:matrix(0.155362,-0.001554,0.002500,0.249988,0,0);-ms-transform:matrix(0.155362,-0.001554,0.002500,0.249988,0,0);-webkit-transform:matrix(0.155362,-0.001554,0.002500,0.249988,0,0);}
.m16_c01290{transform:matrix(0.156715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156715,0.000000,0.000000,0.250000,0,0);}
.m32_c01290{transform:matrix(0.163040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163040,0.000000,0.000000,0.250000,0,0);}
.m1_c01290{transform:matrix(0.163711,-0.002128,0.003250,0.249979,0,0);-ms-transform:matrix(0.163711,-0.002128,0.003250,0.249979,0,0);-webkit-transform:matrix(0.163711,-0.002128,0.003250,0.249979,0,0);}
.m36_c01290{transform:matrix(0.167860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167860,0.000000,0.000000,0.250000,0,0);}
.ma8_c01290{transform:matrix(0.170611,-0.001706,0.002500,0.249988,0,0);-ms-transform:matrix(0.170611,-0.001706,0.002500,0.249988,0,0);-webkit-transform:matrix(0.170611,-0.001706,0.002500,0.249988,0,0);}
.m34_c01290{transform:matrix(0.171045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171045,0.000000,0.000000,0.250000,0,0);}
.m13_c01290{transform:matrix(0.172810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172810,0.000000,0.000000,0.250000,0,0);}
.mb_c01290{transform:matrix(0.173080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173080,0.000000,0.000000,0.250000,0,0);}
.m9_c01290{transform:matrix(0.173745,-0.002259,0.003250,0.249979,0,0);-ms-transform:matrix(0.173745,-0.002259,0.003250,0.249979,0,0);-webkit-transform:matrix(0.173745,-0.002259,0.003250,0.249979,0,0);}
.ma4_c01290{transform:matrix(0.182791,-0.001828,0.002500,0.249988,0,0);-ms-transform:matrix(0.182791,-0.001828,0.002500,0.249988,0,0);-webkit-transform:matrix(0.182791,-0.001828,0.002500,0.249988,0,0);}
.mba_c01290{transform:matrix(0.182953,-0.004940,0.006748,0.249909,0,0);-ms-transform:matrix(0.182953,-0.004940,0.006748,0.249909,0,0);-webkit-transform:matrix(0.182953,-0.004940,0.006748,0.249909,0,0);}
.mb8_c01290{transform:matrix(0.186152,-0.005026,0.006748,0.249909,0,0);-ms-transform:matrix(0.186152,-0.005026,0.006748,0.249909,0,0);-webkit-transform:matrix(0.186152,-0.005026,0.006748,0.249909,0,0);}
.m8d_c01290{transform:matrix(0.186430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186430,0.000000,0.000000,0.250000,0,0);}
.m5_c01290{transform:matrix(0.186479,-0.002424,0.003250,0.249979,0,0);-ms-transform:matrix(0.186479,-0.002424,0.003250,0.249979,0,0);-webkit-transform:matrix(0.186479,-0.002424,0.003250,0.249979,0,0);}
.m2c_c01290{transform:matrix(0.186555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186555,0.000000,0.000000,0.250000,0,0);}
.m9e_c01290{transform:matrix(0.186870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186870,0.000000,0.000000,0.250000,0,0);}
.m15_c01290{transform:matrix(0.188240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188240,0.000000,0.000000,0.250000,0,0);}
.m4f_c01290{transform:matrix(0.190515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190515,0.000000,0.000000,0.250000,0,0);}
.mb6_c01290{transform:matrix(0.192915,-0.005209,0.006748,0.249909,0,0);-ms-transform:matrix(0.192915,-0.005209,0.006748,0.249909,0,0);-webkit-transform:matrix(0.192915,-0.005209,0.006748,0.249909,0,0);}
.m4e_c01290{transform:matrix(0.195890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195890,0.000000,0.000000,0.250000,0,0);}
.m4_c01290{transform:matrix(0.197618,-0.002569,0.003250,0.249979,0,0);-ms-transform:matrix(0.197618,-0.002569,0.003250,0.249979,0,0);-webkit-transform:matrix(0.197618,-0.002569,0.003250,0.249979,0,0);}
.m0_c01290{transform:matrix(0.199333,-0.002591,0.003250,0.249979,0,0);-ms-transform:matrix(0.199333,-0.002591,0.003250,0.249979,0,0);-webkit-transform:matrix(0.199333,-0.002591,0.003250,0.249979,0,0);}
.m3_c01290{transform:matrix(0.200073,-0.002601,0.003250,0.249979,0,0);-ms-transform:matrix(0.200073,-0.002601,0.003250,0.249979,0,0);-webkit-transform:matrix(0.200073,-0.002601,0.003250,0.249979,0,0);}
.m8_c01290{transform:matrix(0.200818,-0.002611,0.003250,0.249979,0,0);-ms-transform:matrix(0.200818,-0.002611,0.003250,0.249979,0,0);-webkit-transform:matrix(0.200818,-0.002611,0.003250,0.249979,0,0);}
.mb7_c01290{transform:matrix(0.201856,-0.005450,0.006748,0.249909,0,0);-ms-transform:matrix(0.201856,-0.005450,0.006748,0.249909,0,0);-webkit-transform:matrix(0.201856,-0.005450,0.006748,0.249909,0,0);}
.m53_c01290{transform:matrix(0.202340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202340,0.000000,0.000000,0.250000,0,0);}
.m55_c01290{transform:matrix(0.204045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204045,0.000000,0.000000,0.250000,0,0);}
.ma2_c01290{transform:matrix(0.204240,-0.002042,0.002500,0.249988,0,0);-ms-transform:matrix(0.204240,-0.002042,0.002500,0.249988,0,0);-webkit-transform:matrix(0.204240,-0.002042,0.002500,0.249988,0,0);}
.m92_c01290{transform:matrix(0.204555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204555,0.000000,0.000000,0.250000,0,0);}
.m5e_c01290{transform:matrix(0.205090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205090,0.000000,0.000000,0.250000,0,0);}
.m57_c01290{transform:matrix(0.205345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205345,0.000000,0.000000,0.250000,0,0);}
.m2_c01290{transform:matrix(0.205988,-0.002678,0.003250,0.249979,0,0);-ms-transform:matrix(0.205988,-0.002678,0.003250,0.249979,0,0);-webkit-transform:matrix(0.205988,-0.002678,0.003250,0.249979,0,0);}
.mb9_c01290{transform:matrix(0.206275,-0.005569,0.006748,0.249909,0,0);-ms-transform:matrix(0.206275,-0.005569,0.006748,0.249909,0,0);-webkit-transform:matrix(0.206275,-0.005569,0.006748,0.249909,0,0);}
.m94_c01290{transform:matrix(0.207895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207895,0.000000,0.000000,0.250000,0,0);}
.m5c_c01290{transform:matrix(0.209795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209795,0.000000,0.000000,0.250000,0,0);}
.m12_c01290{transform:matrix(0.210135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210135,0.000000,0.000000,0.250000,0,0);}
.mbb_c01290{transform:matrix(0.210698,-0.005689,0.006748,0.249909,0,0);-ms-transform:matrix(0.210698,-0.005689,0.006748,0.249909,0,0);-webkit-transform:matrix(0.210698,-0.005689,0.006748,0.249909,0,0);}
.m27_c01290{transform:matrix(0.211025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211025,0.000000,0.000000,0.250000,0,0);}
.ma_c01290{transform:matrix(0.211100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211100,0.000000,0.000000,0.250000,0,0);}
.ma3_c01290{transform:matrix(0.211309,-0.002113,0.002500,0.249988,0,0);-ms-transform:matrix(0.211309,-0.002113,0.002500,0.249988,0,0);-webkit-transform:matrix(0.211309,-0.002113,0.002500,0.249988,0,0);}
.m46_c01290{transform:matrix(0.211335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211335,0.000000,0.000000,0.250000,0,0);}
.m70_c01290{transform:matrix(0.211930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211930,0.000000,0.000000,0.250000,0,0);}
.m25_c01290{transform:matrix(0.212640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212640,0.000000,0.000000,0.250000,0,0);}
.m28_c01290{transform:matrix(0.212835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212835,0.000000,0.000000,0.250000,0,0);}
.m4d_c01290{transform:matrix(0.213045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213045,0.000000,0.000000,0.250000,0,0);}
.m51_c01290{transform:matrix(0.213745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213745,0.000000,0.000000,0.250000,0,0);}
.m61_c01290{transform:matrix(0.214255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214255,0.000000,0.000000,0.250000,0,0);}
.m5b_c01290{transform:matrix(0.214420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214420,0.000000,0.000000,0.250000,0,0);}
.m6f_c01290{transform:matrix(0.216470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216470,0.000000,0.000000,0.250000,0,0);}
.m50_c01290{transform:matrix(0.219240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219240,0.000000,0.000000,0.250000,0,0);}
.m93_c01290{transform:matrix(0.220130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220130,0.000000,0.000000,0.250000,0,0);}
.m91_c01290{transform:matrix(0.220570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220570,0.000000,0.000000,0.250000,0,0);}
.m59_c01290{transform:matrix(0.220880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220880,0.000000,0.000000,0.250000,0,0);}
.m54_c01290{transform:matrix(0.221050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221050,0.000000,0.000000,0.250000,0,0);}
.m23_c01290{transform:matrix(0.221090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221090,0.000000,0.000000,0.250000,0,0);}
.m72_c01290{transform:matrix(0.221720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221720,0.000000,0.000000,0.250000,0,0);}
.m37_c01290{transform:matrix(0.221880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221880,0.000000,0.000000,0.250000,0,0);}
.m7_c01290{transform:matrix(0.223236,-0.002902,0.003250,0.249979,0,0);-ms-transform:matrix(0.223236,-0.002902,0.003250,0.249979,0,0);-webkit-transform:matrix(0.223236,-0.002902,0.003250,0.249979,0,0);}
.m8c_c01290{transform:matrix(0.223850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223850,0.000000,0.000000,0.250000,0,0);}
.m5f_c01290{transform:matrix(0.224190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224190,0.000000,0.000000,0.250000,0,0);}
.m65_c01290{transform:matrix(0.225940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225940,0.000000,0.000000,0.250000,0,0);}
.m52_c01290{transform:matrix(0.226345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226345,0.000000,0.000000,0.250000,0,0);}
.m89_c01290{transform:matrix(0.226965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226965,0.000000,0.000000,0.250000,0,0);}
.m14_c01290{transform:matrix(0.227290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227290,0.000000,0.000000,0.250000,0,0);}
.m6e_c01290{transform:matrix(0.227415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227415,0.000000,0.000000,0.250000,0,0);}
.m62_c01290{transform:matrix(0.227720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227720,0.000000,0.000000,0.250000,0,0);}
.m56_c01290{transform:matrix(0.227915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227915,0.000000,0.000000,0.250000,0,0);}
.m82_c01290{transform:matrix(0.228105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228105,0.000000,0.000000,0.250000,0,0);}
.m69_c01290{transform:matrix(0.228230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228230,0.000000,0.000000,0.250000,0,0);}
.m6_c01290{transform:matrix(0.228256,-0.002967,0.003250,0.249979,0,0);-ms-transform:matrix(0.228256,-0.002967,0.003250,0.249979,0,0);-webkit-transform:matrix(0.228256,-0.002967,0.003250,0.249979,0,0);}
.m29_c01290{transform:matrix(0.228755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228755,0.000000,0.000000,0.250000,0,0);}
.ma5_c01290{transform:matrix(0.228779,-0.002288,0.002500,0.249988,0,0);-ms-transform:matrix(0.228779,-0.002288,0.002500,0.249988,0,0);-webkit-transform:matrix(0.228779,-0.002288,0.002500,0.249988,0,0);}
.m1f_c01290{transform:matrix(0.229205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229205,0.000000,0.000000,0.250000,0,0);}
.m6c_c01290{transform:matrix(0.229875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229875,0.000000,0.000000,0.250000,0,0);}
.m8b_c01290{transform:matrix(0.230325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230325,0.000000,0.000000,0.250000,0,0);}
.m19_c01290{transform:matrix(0.230445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230445,0.000000,0.000000,0.250000,0,0);}
.m1b_c01290{transform:matrix(0.231515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231515,0.000000,0.000000,0.250000,0,0);}
.m8f_c01290{transform:matrix(0.231520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231520,0.000000,0.000000,0.250000,0,0);}
.m58_c01290{transform:matrix(0.232595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232595,0.000000,0.000000,0.250000,0,0);}
.m68_c01290{transform:matrix(0.232725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232725,0.000000,0.000000,0.250000,0,0);}
.m5a_c01290{transform:matrix(0.233680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233680,0.000000,0.000000,0.250000,0,0);}
.m22_c01290{transform:matrix(0.233895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233895,0.000000,0.000000,0.250000,0,0);}
.m24_c01290{transform:matrix(0.235480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235480,0.000000,0.000000,0.250000,0,0);}
.m3d_c01290{transform:matrix(0.235930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235930,0.000000,0.000000,0.250000,0,0);}
.m76_c01290{transform:matrix(0.236030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236030,0.000000,0.000000,0.250000,0,0);}
.m1d_c01290{transform:matrix(0.236175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236175,0.000000,0.000000,0.250000,0,0);}
.m74_c01290{transform:matrix(0.236680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236680,0.000000,0.000000,0.250000,0,0);}
.m21_c01290{transform:matrix(0.238180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238180,0.000000,0.000000,0.250000,0,0);}
.m60_c01290{transform:matrix(0.238210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238210,0.000000,0.000000,0.250000,0,0);}
.m83_c01290{transform:matrix(0.239310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239310,0.000000,0.000000,0.250000,0,0);}
.m90_c01290{transform:matrix(0.239440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239440,0.000000,0.000000,0.250000,0,0);}
.m95_c01290{transform:matrix(0.239560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239560,0.000000,0.000000,0.250000,0,0);}
.m5d_c01290{transform:matrix(0.240565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240565,0.000000,0.000000,0.250000,0,0);}
.m73_c01290{transform:matrix(0.240675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240675,0.000000,0.000000,0.250000,0,0);}
.m6a_c01290{transform:matrix(0.240980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240980,0.000000,0.000000,0.250000,0,0);}
.m71_c01290{transform:matrix(0.241610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241610,0.000000,0.000000,0.250000,0,0);}
.m75_c01290{transform:matrix(0.242025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242025,0.000000,0.000000,0.250000,0,0);}
.m41_c01290{transform:matrix(0.242745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242745,0.000000,0.000000,0.250000,0,0);}
.m2b_c01290{transform:matrix(0.242755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242755,0.000000,0.000000,0.250000,0,0);}
.m67_c01290{transform:matrix(0.242925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242925,0.000000,0.000000,0.250000,0,0);}
.m8e_c01290{transform:matrix(0.244550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244550,0.000000,0.000000,0.250000,0,0);}
.m2a_c01290{transform:matrix(0.244555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244555,0.000000,0.000000,0.250000,0,0);}
.m26_c01290{transform:matrix(0.245810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245810,0.000000,0.000000,0.250000,0,0);}
.m20_c01290{transform:matrix(0.247075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247075,0.000000,0.000000,0.250000,0,0);}
.m7a_c01290{transform:matrix(0.247245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247245,0.000000,0.000000,0.250000,0,0);}
.m6b_c01290{transform:matrix(0.248105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248105,0.000000,0.000000,0.250000,0,0);}
.m44_c01290{transform:matrix(0.248305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248305,0.000000,0.000000,0.250000,0,0);}
.m80_c01290{transform:matrix(0.249310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249310,0.000000,0.000000,0.250000,0,0);}
.m87_c01290{transform:matrix(0.249360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249360,0.000000,0.000000,0.250000,0,0);}
.m98_c01290{transform:matrix(0.249405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249405,0.000000,0.000000,0.250000,0,0);}
.mb5_c01290{transform:matrix(0.251379,-0.003268,0.003250,0.249979,0,0);-ms-transform:matrix(0.251379,-0.003268,0.003250,0.249979,0,0);-webkit-transform:matrix(0.251379,-0.003268,0.003250,0.249979,0,0);}
.m1a_c01290{transform:matrix(0.251595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251595,0.000000,0.000000,0.250000,0,0);}
.m63_c01290{transform:matrix(0.252910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252910,0.000000,0.000000,0.250000,0,0);}
.m86_c01290{transform:matrix(0.254345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254345,0.000000,0.000000,0.250000,0,0);}
.m77_c01290{transform:matrix(0.254570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254570,0.000000,0.000000,0.250000,0,0);}
.m9b_c01290{transform:matrix(0.254805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254805,0.000000,0.000000,0.250000,0,0);}
.m66_c01290{transform:matrix(0.255120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255120,0.000000,0.000000,0.250000,0,0);}
.m1c_c01290{transform:matrix(0.256285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256285,0.000000,0.000000,0.250000,0,0);}
.m47_c01290{transform:matrix(0.256820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256820,0.000000,0.000000,0.250000,0,0);}
.m7d_c01290{transform:matrix(0.257315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257315,0.000000,0.000000,0.250000,0,0);}
.mc_c01290{transform:matrix(0.257335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257335,0.000000,0.000000,0.250000,0,0);}
.m3f_c01290{transform:matrix(0.257880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257880,0.000000,0.000000,0.250000,0,0);}
.m38_c01290{transform:matrix(0.257935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257935,0.000000,0.000000,0.250000,0,0);}
.m4a_c01290{transform:matrix(0.260090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260090,0.000000,0.000000,0.250000,0,0);}
.m7b_c01290{transform:matrix(0.260485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260485,0.000000,0.000000,0.250000,0,0);}
.m88_c01290{transform:matrix(0.263795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263795,0.000000,0.000000,0.250000,0,0);}
.m84_c01290{transform:matrix(0.264060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264060,0.000000,0.000000,0.250000,0,0);}
.m43_c01290{transform:matrix(0.265095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265095,0.000000,0.000000,0.250000,0,0);}
.m42_c01290{transform:matrix(0.265885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265885,0.000000,0.000000,0.250000,0,0);}
.m49_c01290{transform:matrix(0.267730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267730,0.000000,0.000000,0.250000,0,0);}
.m96_c01290{transform:matrix(0.268340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268340,0.000000,0.000000,0.250000,0,0);}
.m97_c01290{transform:matrix(0.268570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268570,0.000000,0.000000,0.250000,0,0);}
.m81_c01290{transform:matrix(0.268615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268615,0.000000,0.000000,0.250000,0,0);}
.mb2_c01290{transform:matrix(0.268682,-0.003493,0.003250,0.249979,0,0);-ms-transform:matrix(0.268682,-0.003493,0.003250,0.249979,0,0);-webkit-transform:matrix(0.268682,-0.003493,0.003250,0.249979,0,0);}
.m99_c01290{transform:matrix(0.268800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268800,0.000000,0.000000,0.250000,0,0);}
.m1e_c01290{transform:matrix(0.270110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270110,0.000000,0.000000,0.250000,0,0);}
.md_c01290{transform:matrix(0.271765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271765,0.000000,0.000000,0.250000,0,0);}
.m4b_c01290{transform:matrix(0.271945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271945,0.000000,0.000000,0.250000,0,0);}
.m6d_c01290{transform:matrix(0.272855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272855,0.000000,0.000000,0.250000,0,0);}
.m78_c01290{transform:matrix(0.274495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274495,0.000000,0.000000,0.250000,0,0);}
.m7c_c01290{transform:matrix(0.275080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275080,0.000000,0.000000,0.250000,0,0);}
.m48_c01290{transform:matrix(0.276550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276550,0.000000,0.000000,0.250000,0,0);}
.m85_c01290{transform:matrix(0.276620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276620,0.000000,0.000000,0.250000,0,0);}
.m39_c01290{transform:matrix(0.276905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276905,0.000000,0.000000,0.250000,0,0);}
.m3a_c01290{transform:matrix(0.277600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277600,0.000000,0.000000,0.250000,0,0);}
.mb3_c01290{transform:matrix(0.278236,-0.003617,0.003250,0.249979,0,0);-ms-transform:matrix(0.278236,-0.003617,0.003250,0.249979,0,0);-webkit-transform:matrix(0.278236,-0.003617,0.003250,0.249979,0,0);}
.m7e_c01290{transform:matrix(0.278265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278265,0.000000,0.000000,0.250000,0,0);}
.m3c_c01290{transform:matrix(0.278415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278415,0.000000,0.000000,0.250000,0,0);}
.m9a_c01290{transform:matrix(0.278650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278650,0.000000,0.000000,0.250000,0,0);}
.mb4_c01290{transform:matrix(0.279046,-0.003628,0.003250,0.249979,0,0);-ms-transform:matrix(0.279046,-0.003628,0.003250,0.249979,0,0);-webkit-transform:matrix(0.279046,-0.003628,0.003250,0.249979,0,0);}
.m79_c01290{transform:matrix(0.279305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279305,0.000000,0.000000,0.250000,0,0);}
.mac_c01290{transform:matrix(0.281291,-0.002813,0.002500,0.249988,0,0);-ms-transform:matrix(0.281291,-0.002813,0.002500,0.249988,0,0);-webkit-transform:matrix(0.281291,-0.002813,0.002500,0.249988,0,0);}
.m3b_c01290{transform:matrix(0.283400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283400,0.000000,0.000000,0.250000,0,0);}
.mab_c01290{transform:matrix(0.285761,-0.002858,0.002500,0.249988,0,0);-ms-transform:matrix(0.285761,-0.002858,0.002500,0.249988,0,0);-webkit-transform:matrix(0.285761,-0.002858,0.002500,0.249988,0,0);}
.m40_c01290{transform:matrix(0.287455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287455,0.000000,0.000000,0.250000,0,0);}
.m3e_c01290{transform:matrix(0.288585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288585,0.000000,0.000000,0.250000,0,0);}
.m8a_c01290{transform:matrix(0.288945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288945,0.000000,0.000000,0.250000,0,0);}
.m64_c01290{transform:matrix(0.289555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289555,0.000000,0.000000,0.250000,0,0);}
.m10_c01290{transform:matrix(0.291310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291310,0.000000,0.000000,0.250000,0,0);}
.m45_c01290{transform:matrix(0.294460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294460,0.000000,0.000000,0.250000,0,0);}
.m7f_c01290{transform:matrix(0.298515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298515,0.000000,0.000000,0.250000,0,0);}
.mb1_c01290{transform:matrix(0.300015,-0.003900,0.003250,0.249979,0,0);-ms-transform:matrix(0.300015,-0.003900,0.003250,0.249979,0,0);-webkit-transform:matrix(0.300015,-0.003900,0.003250,0.249979,0,0);}
.m18_c01290{transform:matrix(0.301870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301870,0.000000,0.000000,0.250000,0,0);}
.m4c_c01290{transform:matrix(0.302470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302470,0.000000,0.000000,0.250000,0,0);}
.m11_c01290{transform:matrix(0.307530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307530,0.000000,0.000000,0.250000,0,0);}
.m9d_c01290{transform:matrix(0.316010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316010,0.000000,0.000000,0.250000,0,0);}
.m17_c01290{transform:matrix(0.321935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321935,0.000000,0.000000,0.250000,0,0);}
.ma1_c01290{transform:matrix(0.360272,-0.003603,0.002500,0.249988,0,0);-ms-transform:matrix(0.360272,-0.003603,0.002500,0.249988,0,0);-webkit-transform:matrix(0.360272,-0.003603,0.002500,0.249988,0,0);}
.mf_c01290{transform:matrix(0.402400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402400,0.000000,0.000000,0.250000,0,0);}
.m9f_c01290{transform:matrix(0.402450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402450,0.000000,0.000000,0.250000,0,0);}
.ma6_c01290{transform:matrix(0.418389,-0.004184,0.002500,0.249988,0,0);-ms-transform:matrix(0.418389,-0.004184,0.002500,0.249988,0,0);-webkit-transform:matrix(0.418389,-0.004184,0.002500,0.249988,0,0);}
.m9c_c01290{transform:matrix(0.484305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484305,0.000000,0.000000,0.250000,0,0);}
.me_c01290{transform:matrix(0.558805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.558805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.558805,0.000000,0.000000,0.250000,0,0);}
.maa_c01290{transform:matrix(0.663547,-0.006635,0.002500,0.249988,0,0);-ms-transform:matrix(0.663547,-0.006635,0.002500,0.249988,0,0);-webkit-transform:matrix(0.663547,-0.006635,0.002500,0.249988,0,0);}
.maf_c01290{transform:matrix(0.693130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.693130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.693130,0.000000,0.000000,0.250000,0,0);}
.mb0_c01290{transform:matrix(1.095105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.095105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.095105,0.000000,0.000000,0.250000,0,0);}
.mae_c01290{transform:matrix(1.120015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.120015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.120015,0.000000,0.000000,0.250000,0,0);}
.ma0_c01290{transform:matrix(1.417539,-0.014175,0.002500,0.249988,0,0);-ms-transform:matrix(1.417539,-0.014175,0.002500,0.249988,0,0);-webkit-transform:matrix(1.417539,-0.014175,0.002500,0.249988,0,0);}
.mad_c01290{transform:matrix(3.220115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.220115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.220115,0.000000,0.000000,0.250000,0,0);}
.v0_c01290{vertical-align:0.000000px;}
.ls0_c01290{letter-spacing:0.000000px;}
.sc__c01290{text-shadow:none;}
.sc0_c01290{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__c01290{-webkit-text-stroke:0px transparent;}
.sc0_c01290{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01290{word-spacing:0.000000px;}
.fc0_c01290{color:transparent;}
.fsc_c01290{font-size:18.000000px;}
.fsd_c01290{font-size:24.000000px;}
.fs3_c01290{font-size:42.000000px;}
.fs4_c01290{font-size:48.000000px;}
.fs9_c01290{font-size:72.000000px;}
.fse_c01290{font-size:72.006084px;}
.fs7_c01290{font-size:78.000000px;}
.fs5_c01290{font-size:84.000000px;}
.fs2_c01290{font-size:90.000000px;}
.fsa_c01290{font-size:96.004800px;}
.fs0_c01290{font-size:96.008112px;}
.fsf_c01290{font-size:96.034986px;}
.fs6_c01290{font-size:102.000000px;}
.fs1_c01290{font-size:102.008619px;}
.fsb_c01290{font-size:120.006000px;}
.fs8_c01290{font-size:126.000000px;}
.y0_c01290{bottom:0.000000px;}
.y92_c01290{bottom:59.949000px;}
.y93_c01290{bottom:61.097823px;}
.y94_c01290{bottom:62.882618px;}
.y95_c01290{bottom:64.078339px;}
.y96_c01290{bottom:65.856047px;}
.y97_c01290{bottom:67.087409px;}
.y8d_c01290{bottom:129.429000px;}
.y8e_c01290{bottom:130.892826px;}
.y8f_c01290{bottom:131.892903px;}
.y90_c01290{bottom:132.468446px;}
.y91_c01290{bottom:133.759872px;}
.y8c_c01290{bottom:142.560000px;}
.y10_c01290{bottom:193.324500px;}
.yf_c01290{bottom:228.273000px;}
.y8b_c01290{bottom:339.120000px;}
.y8a_c01290{bottom:362.880000px;}
.ye_c01290{bottom:373.273500px;}
.y83_c01290{bottom:374.516415px;}
.y85_c01290{bottom:374.516640px;}
.y84_c01290{bottom:374.516955px;}
.y86_c01290{bottom:374.517180px;}
.y89_c01290{bottom:374.517675px;}
.y87_c01290{bottom:374.517750px;}
.y88_c01290{bottom:374.518290px;}
.y7d_c01290{bottom:411.207000px;}
.y7e_c01290{bottom:413.271780px;}
.y7f_c01290{bottom:414.547410px;}
.y80_c01290{bottom:414.774165px;}
.y81_c01290{bottom:415.759290px;}
.y82_c01290{bottom:416.096130px;}
.yd_c01290{bottom:449.821500px;}
.yc_c01290{bottom:478.035000px;}
.yb_c01290{bottom:514.360500px;}
.y7c_c01290{bottom:558.769500px;}
.ya_c01290{bottom:624.346648px;}
.y8_c01290{bottom:624.346975px;}
.y9_c01290{bottom:624.347187px;}
.y1_c01290{bottom:660.151500px;}
.y2_c01290{bottom:660.891408px;}
.y3_c01290{bottom:661.296618px;}
.y4_c01290{bottom:661.580635px;}
.y5_c01290{bottom:662.437543px;}
.y6_c01290{bottom:663.430873px;}
.y7_c01290{bottom:664.006923px;}
.y75_c01290{bottom:711.721500px;}
.y76_c01290{bottom:712.224000px;}
.y77_c01290{bottom:713.391000px;}
.y78_c01290{bottom:714.532500px;}
.y79_c01290{bottom:715.209000px;}
.y7a_c01290{bottom:716.367000px;}
.y7b_c01290{bottom:717.853500px;}
.y6a_c01290{bottom:747.631500px;}
.y6b_c01290{bottom:748.332000px;}
.y6c_c01290{bottom:748.588500px;}
.y6d_c01290{bottom:750.150000px;}
.y6e_c01290{bottom:750.880500px;}
.y6f_c01290{bottom:751.990500px;}
.y70_c01290{bottom:752.460000px;}
.y71_c01290{bottom:752.959500px;}
.y72_c01290{bottom:753.199500px;}
.y73_c01290{bottom:753.697500px;}
.y74_c01290{bottom:754.185000px;}
.y69_c01290{bottom:788.130000px;}
.y68_c01290{bottom:823.002000px;}
.y5f_c01290{bottom:852.936000px;}
.y60_c01290{bottom:853.671000px;}
.y61_c01290{bottom:854.008500px;}
.y62_c01290{bottom:854.451000px;}
.y63_c01290{bottom:855.787500px;}
.y64_c01290{bottom:856.117500px;}
.y65_c01290{bottom:857.106000px;}
.y66_c01290{bottom:857.892000px;}
.y67_c01290{bottom:858.999000px;}
.y54_c01290{bottom:889.383000px;}
.y55_c01290{bottom:890.472000px;}
.y56_c01290{bottom:891.687000px;}
.y57_c01290{bottom:892.027500px;}
.y58_c01290{bottom:892.899000px;}
.y59_c01290{bottom:893.125500px;}
.y5a_c01290{bottom:893.563500px;}
.y5b_c01290{bottom:893.910000px;}
.y5c_c01290{bottom:894.469500px;}
.y5d_c01290{bottom:895.357500px;}
.y5e_c01290{bottom:895.785000px;}
.y48_c01290{bottom:925.023000px;}
.y49_c01290{bottom:925.528500px;}
.y4a_c01290{bottom:926.433000px;}
.y4b_c01290{bottom:926.835000px;}
.y4c_c01290{bottom:927.903000px;}
.y4d_c01290{bottom:928.458000px;}
.y4e_c01290{bottom:929.112000px;}
.y4f_c01290{bottom:930.427500px;}
.y50_c01290{bottom:930.823500px;}
.y51_c01290{bottom:931.231500px;}
.y52_c01290{bottom:932.296500px;}
.y53_c01290{bottom:932.698500px;}
.y3e_c01290{bottom:959.040000px;}
.y3f_c01290{bottom:959.821500px;}
.y40_c01290{bottom:960.220500px;}
.y41_c01290{bottom:960.622500px;}
.y42_c01290{bottom:961.704000px;}
.y43_c01290{bottom:962.628000px;}
.y44_c01290{bottom:964.245000px;}
.y45_c01290{bottom:964.873500px;}
.y46_c01290{bottom:965.803500px;}
.y47_c01290{bottom:966.093000px;}
.y32_c01290{bottom:994.138500px;}
.y33_c01290{bottom:994.471500px;}
.y34_c01290{bottom:995.130000px;}
.y35_c01290{bottom:995.893500px;}
.y36_c01290{bottom:996.226500px;}
.y37_c01290{bottom:996.909000px;}
.y38_c01290{bottom:997.219500px;}
.y39_c01290{bottom:997.560000px;}
.y3a_c01290{bottom:998.451000px;}
.y3b_c01290{bottom:999.109500px;}
.y3c_c01290{bottom:999.558000px;}
.y3d_c01290{bottom:1000.228500px;}
.y28_c01290{bottom:1032.207000px;}
.y29_c01290{bottom:1032.360000px;}
.y2a_c01290{bottom:1032.522000px;}
.y2b_c01290{bottom:1032.964500px;}
.y2c_c01290{bottom:1033.072500px;}
.y2d_c01290{bottom:1033.680000px;}
.y2e_c01290{bottom:1034.131500px;}
.y2f_c01290{bottom:1034.293500px;}
.y30_c01290{bottom:1034.791500px;}
.y31_c01290{bottom:1034.904000px;}
.y1d_c01290{bottom:1062.723000px;}
.y1e_c01290{bottom:1063.444500px;}
.y1f_c01290{bottom:1064.164500px;}
.y20_c01290{bottom:1065.312000px;}
.y21_c01290{bottom:1066.990500px;}
.y22_c01290{bottom:1067.926500px;}
.y23_c01290{bottom:1068.687000px;}
.y24_c01290{bottom:1069.830000px;}
.y25_c01290{bottom:1070.506500px;}
.y26_c01290{bottom:1072.464000px;}
.y27_c01290{bottom:1073.221500px;}
.y13_c01290{bottom:1098.366000px;}
.y14_c01290{bottom:1099.807500px;}
.y15_c01290{bottom:1100.449500px;}
.y16_c01290{bottom:1102.573500px;}
.y17_c01290{bottom:1103.364000px;}
.y18_c01290{bottom:1104.630000px;}
.y19_c01290{bottom:1105.270500px;}
.y1a_c01290{bottom:1105.915500px;}
.y1b_c01290{bottom:1107.382500px;}
.y1c_c01290{bottom:1109.488500px;}
.y12_c01290{bottom:1140.793500px;}
.y11_c01290{bottom:1195.150500px;}
.hd_c01290{height:18.000000px;}
.he_c01290{height:24.000000px;}
.h4_c01290{height:42.000000px;}
.h5_c01290{height:48.000000px;}
.ha_c01290{height:72.000000px;}
.hf_c01290{height:72.006084px;}
.h8_c01290{height:78.000000px;}
.h6_c01290{height:84.000000px;}
.h3_c01290{height:90.000000px;}
.hb_c01290{height:96.004800px;}
.h1_c01290{height:96.008112px;}
.h10_c01290{height:96.034986px;}
.h7_c01290{height:102.000000px;}
.h2_c01290{height:102.008619px;}
.hc_c01290{height:120.006000px;}
.h9_c01290{height:126.000000px;}
.h0_c01290{height:1249.500000px;}
.w1_c01290{width:912.000000px;}
.w0_c01290{width:912.300000px;}
.x0_c01290{left:0.000000px;}
.x1_c01290{left:76.006500px;}
.xb_c01290{left:77.220000px;}
.xe_c01290{left:78.840000px;}
.x10_c01290{left:80.730000px;}
.xc_c01290{left:99.900000px;}
.x2_c01290{left:132.922500px;}
.xd_c01290{left:134.730000px;}
.x11_c01290{left:137.430000px;}
.xf_c01290{left:145.800000px;}
.x3_c01290{left:164.092500px;}
.x1e_c01290{left:172.297500px;}
.x27_c01290{left:173.604000px;}
.x43_c01290{left:174.838500px;}
.x5d_c01290{left:176.200500px;}
.x4_c01290{left:185.940000px;}
.x7e_c01290{left:188.167500px;}
.x73_c01290{left:198.986670px;}
.x82_c01290{left:203.638500px;}
.x31_c01290{left:204.723000px;}
.x65_c01290{left:207.844500px;}
.x28_c01290{left:216.037500px;}
.x58_c01290{left:217.620000px;}
.x8_c01290{left:237.612687px;}
.x5e_c01290{left:239.904000px;}
.x6a_c01290{left:241.920000px;}
.x83_c01290{left:246.187500px;}
.x1f_c01290{left:248.202000px;}
.x5_c01290{left:251.856000px;}
.x29_c01290{left:258.429000px;}
.x5f_c01290{left:263.184000px;}
.x37_c01290{left:271.258500px;}
.x59_c01290{left:272.700000px;}
.x6b_c01290{left:276.480000px;}
.x15_c01290{left:279.990000px;}
.x20_c01290{left:281.961000px;}
.x9_c01290{left:285.406260px;}
.x44_c01290{left:292.339500px;}
.x5a_c01290{left:295.380000px;}
.x6c_c01290{left:301.050000px;}
.x3d_c01290{left:304.507500px;}
.x16_c01290{left:312.660000px;}
.x6d_c01290{left:318.060000px;}
.x2a_c01290{left:325.932000px;}
.x52_c01290{left:327.240000px;}
.x6_c01290{left:328.266000px;}
.x74_c01290{left:330.753840px;}
.xa_c01290{left:339.950984px;}
.x32_c01290{left:347.301000px;}
.x84_c01290{left:356.577000px;}
.x66_c01290{left:361.743000px;}
.x7_c01290{left:372.577500px;}
.x75_c01290{left:375.576825px;}
.x7f_c01290{left:377.698500px;}
.x17_c01290{left:380.160000px;}
.x21_c01290{left:393.721500px;}
.x4a_c01290{left:404.098500px;}
.x5b_c01290{left:405.810000px;}
.x67_c01290{left:406.867500px;}
.x12_c01290{left:412.020000px;}
.x45_c01290{left:414.895500px;}
.x80_c01290{left:421.971000px;}
.x18_c01290{left:423.090000px;}
.x2b_c01290{left:424.686000px;}
.x13_c01290{left:430.380000px;}
.x22_c01290{left:435.318000px;}
.x4b_c01290{left:438.118500px;}
.x6e_c01290{left:447.460500px;}
.x38_c01290{left:449.152500px;}
.x46_c01290{left:461.085000px;}
.x33_c01290{left:468.802500px;}
.x3e_c01290{left:471.633000px;}
.x14_c01290{left:479.790000px;}
.x68_c01290{left:484.078500px;}
.x76_c01290{left:485.741835px;}
.x50_c01290{left:493.471500px;}
.x23_c01290{left:501.943500px;}
.x53_c01290{left:503.820000px;}
.x19_c01290{left:513.000000px;}
.x39_c01290{left:514.254000px;}
.x47_c01290{left:515.637000px;}
.x81_c01290{left:521.311500px;}
.x2c_c01290{left:524.535000px;}
.x24_c01290{left:535.692000px;}
.x54_c01290{left:537.300000px;}
.x1a_c01290{left:545.940000px;}
.x4c_c01290{left:547.975500px;}
.x77_c01290{left:550.005255px;}
.x34_c01290{left:558.966000px;}
.x25_c01290{left:569.674500px;}
.x60_c01290{left:572.538000px;}
.x6f_c01290{left:575.023500px;}
.x69_c01290{left:583.155000px;}
.x2d_c01290{left:591.777000px;}
.x55_c01290{left:593.730000px;}
.x70_c01290{left:597.699000px;}
.x3a_c01290{left:603.345000px;}
.x3f_c01290{left:606.366000px;}
.x61_c01290{left:615.199500px;}
.x48_c01290{left:625.203000px;}
.x4d_c01290{left:626.307000px;}
.x2e_c01290{left:631.597500px;}
.x26_c01290{left:646.902000px;}
.x5c_c01290{left:649.080000px;}
.x40_c01290{left:658.680000px;}
.x62_c01290{left:660.616500px;}
.x3b_c01290{left:669.189000px;}
.x51_c01290{left:670.852500px;}
.x78_c01290{left:672.321480px;}
.x4e_c01290{left:682.188000px;}
.x35_c01290{left:690.991500px;}
.x49_c01290{left:692.202000px;}
.x71_c01290{left:696.211500px;}
.x79_c01290{left:706.613415px;}
.x36_c01290{left:713.418000px;}
.x56_c01290{left:714.960000px;}
.x1b_c01290{left:723.870000px;}
.x63_c01290{left:727.776000px;}
.x72_c01290{left:729.895500px;}
.x41_c01290{left:736.155000px;}
.x2f_c01290{left:746.712000px;}
.x1c_c01290{left:757.620000px;}
.x42_c01290{left:760.221000px;}
.x4f_c01290{left:770.974500px;}
.x64_c01290{left:772.074000px;}
.x3c_c01290{left:781.101000px;}
.x30_c01290{left:791.248500px;}
.x1d_c01290{left:814.320000px;}
.x57_c01290{left:815.400000px;}
.x7c_c01290{left:897.210000px;}
.x7a_c01290{left:898.560000px;}
.x7b_c01290{left:899.640000px;}
.x7d_c01290{left:901.260000px;}
@media print{
.v0_c01290{vertical-align:0.000000pt;}
.ls0_c01290{letter-spacing:0.000000pt;}
.ws0_c01290{word-spacing:0.000000pt;}
.fsc_c01290{font-size:16.000000pt;}
.fsd_c01290{font-size:21.333333pt;}
.fs3_c01290{font-size:37.333333pt;}
.fs4_c01290{font-size:42.666667pt;}
.fs9_c01290{font-size:64.000000pt;}
.fse_c01290{font-size:64.005408pt;}
.fs7_c01290{font-size:69.333333pt;}
.fs5_c01290{font-size:74.666667pt;}
.fs2_c01290{font-size:80.000000pt;}
.fsa_c01290{font-size:85.337600pt;}
.fs0_c01290{font-size:85.340544pt;}
.fsf_c01290{font-size:85.364432pt;}
.fs6_c01290{font-size:90.666667pt;}
.fs1_c01290{font-size:90.674328pt;}
.fsb_c01290{font-size:106.672000pt;}
.fs8_c01290{font-size:112.000000pt;}
.y0_c01290{bottom:0.000000pt;}
.y92_c01290{bottom:53.288000pt;}
.y93_c01290{bottom:54.309176pt;}
.y94_c01290{bottom:55.895660pt;}
.y95_c01290{bottom:56.958524pt;}
.y96_c01290{bottom:58.538708pt;}
.y97_c01290{bottom:59.633252pt;}
.y8d_c01290{bottom:115.048000pt;}
.y8e_c01290{bottom:116.349179pt;}
.y8f_c01290{bottom:117.238136pt;}
.y90_c01290{bottom:117.749729pt;}
.y91_c01290{bottom:118.897664pt;}
.y8c_c01290{bottom:126.720000pt;}
.y10_c01290{bottom:171.844000pt;}
.yf_c01290{bottom:202.909333pt;}
.y8b_c01290{bottom:301.440000pt;}
.y8a_c01290{bottom:322.560000pt;}
.ye_c01290{bottom:331.798667pt;}
.y83_c01290{bottom:332.903480pt;}
.y85_c01290{bottom:332.903680pt;}
.y84_c01290{bottom:332.903960pt;}
.y86_c01290{bottom:332.904160pt;}
.y89_c01290{bottom:332.904600pt;}
.y87_c01290{bottom:332.904667pt;}
.y88_c01290{bottom:332.905147pt;}
.y7d_c01290{bottom:365.517333pt;}
.y7e_c01290{bottom:367.352693pt;}
.y7f_c01290{bottom:368.486587pt;}
.y80_c01290{bottom:368.688147pt;}
.y81_c01290{bottom:369.563813pt;}
.y82_c01290{bottom:369.863227pt;}
.yd_c01290{bottom:399.841333pt;}
.yc_c01290{bottom:424.920000pt;}
.yb_c01290{bottom:457.209333pt;}
.y7c_c01290{bottom:496.684000pt;}
.ya_c01290{bottom:554.974799pt;}
.y8_c01290{bottom:554.975089pt;}
.y9_c01290{bottom:554.975277pt;}
.y1_c01290{bottom:586.801333pt;}
.y2_c01290{bottom:587.459029pt;}
.y3_c01290{bottom:587.819216pt;}
.y4_c01290{bottom:588.071676pt;}
.y5_c01290{bottom:588.833372pt;}
.y6_c01290{bottom:589.716332pt;}
.y7_c01290{bottom:590.228376pt;}
.y75_c01290{bottom:632.641333pt;}
.y76_c01290{bottom:633.088000pt;}
.y77_c01290{bottom:634.125333pt;}
.y78_c01290{bottom:635.140000pt;}
.y79_c01290{bottom:635.741333pt;}
.y7a_c01290{bottom:636.770667pt;}
.y7b_c01290{bottom:638.092000pt;}
.y6a_c01290{bottom:664.561333pt;}
.y6b_c01290{bottom:665.184000pt;}
.y6c_c01290{bottom:665.412000pt;}
.y6d_c01290{bottom:666.800000pt;}
.y6e_c01290{bottom:667.449333pt;}
.y6f_c01290{bottom:668.436000pt;}
.y70_c01290{bottom:668.853333pt;}
.y71_c01290{bottom:669.297333pt;}
.y72_c01290{bottom:669.510667pt;}
.y73_c01290{bottom:669.953333pt;}
.y74_c01290{bottom:670.386667pt;}
.y69_c01290{bottom:700.560000pt;}
.y68_c01290{bottom:731.557333pt;}
.y5f_c01290{bottom:758.165333pt;}
.y60_c01290{bottom:758.818667pt;}
.y61_c01290{bottom:759.118667pt;}
.y62_c01290{bottom:759.512000pt;}
.y63_c01290{bottom:760.700000pt;}
.y64_c01290{bottom:760.993333pt;}
.y65_c01290{bottom:761.872000pt;}
.y66_c01290{bottom:762.570667pt;}
.y67_c01290{bottom:763.554667pt;}
.y54_c01290{bottom:790.562667pt;}
.y55_c01290{bottom:791.530667pt;}
.y56_c01290{bottom:792.610667pt;}
.y57_c01290{bottom:792.913333pt;}
.y58_c01290{bottom:793.688000pt;}
.y59_c01290{bottom:793.889333pt;}
.y5a_c01290{bottom:794.278667pt;}
.y5b_c01290{bottom:794.586667pt;}
.y5c_c01290{bottom:795.084000pt;}
.y5d_c01290{bottom:795.873333pt;}
.y5e_c01290{bottom:796.253333pt;}
.y48_c01290{bottom:822.242667pt;}
.y49_c01290{bottom:822.692000pt;}
.y4a_c01290{bottom:823.496000pt;}
.y4b_c01290{bottom:823.853333pt;}
.y4c_c01290{bottom:824.802667pt;}
.y4d_c01290{bottom:825.296000pt;}
.y4e_c01290{bottom:825.877333pt;}
.y4f_c01290{bottom:827.046667pt;}
.y50_c01290{bottom:827.398667pt;}
.y51_c01290{bottom:827.761333pt;}
.y52_c01290{bottom:828.708000pt;}
.y53_c01290{bottom:829.065333pt;}
.y3e_c01290{bottom:852.480000pt;}
.y3f_c01290{bottom:853.174667pt;}
.y40_c01290{bottom:853.529333pt;}
.y41_c01290{bottom:853.886667pt;}
.y42_c01290{bottom:854.848000pt;}
.y43_c01290{bottom:855.669333pt;}
.y44_c01290{bottom:857.106667pt;}
.y45_c01290{bottom:857.665333pt;}
.y46_c01290{bottom:858.492000pt;}
.y47_c01290{bottom:858.749333pt;}
.y32_c01290{bottom:883.678667pt;}
.y33_c01290{bottom:883.974667pt;}
.y34_c01290{bottom:884.560000pt;}
.y35_c01290{bottom:885.238667pt;}
.y36_c01290{bottom:885.534667pt;}
.y37_c01290{bottom:886.141333pt;}
.y38_c01290{bottom:886.417333pt;}
.y39_c01290{bottom:886.720000pt;}
.y3a_c01290{bottom:887.512000pt;}
.y3b_c01290{bottom:888.097333pt;}
.y3c_c01290{bottom:888.496000pt;}
.y3d_c01290{bottom:889.092000pt;}
.y28_c01290{bottom:917.517333pt;}
.y29_c01290{bottom:917.653333pt;}
.y2a_c01290{bottom:917.797333pt;}
.y2b_c01290{bottom:918.190667pt;}
.y2c_c01290{bottom:918.286667pt;}
.y2d_c01290{bottom:918.826667pt;}
.y2e_c01290{bottom:919.228000pt;}
.y2f_c01290{bottom:919.372000pt;}
.y30_c01290{bottom:919.814667pt;}
.y31_c01290{bottom:919.914667pt;}
.y1d_c01290{bottom:944.642667pt;}
.y1e_c01290{bottom:945.284000pt;}
.y1f_c01290{bottom:945.924000pt;}
.y20_c01290{bottom:946.944000pt;}
.y21_c01290{bottom:948.436000pt;}
.y22_c01290{bottom:949.268000pt;}
.y23_c01290{bottom:949.944000pt;}
.y24_c01290{bottom:950.960000pt;}
.y25_c01290{bottom:951.561333pt;}
.y26_c01290{bottom:953.301333pt;}
.y27_c01290{bottom:953.974667pt;}
.y13_c01290{bottom:976.325333pt;}
.y14_c01290{bottom:977.606667pt;}
.y15_c01290{bottom:978.177333pt;}
.y16_c01290{bottom:980.065333pt;}
.y17_c01290{bottom:980.768000pt;}
.y18_c01290{bottom:981.893333pt;}
.y19_c01290{bottom:982.462667pt;}
.y1a_c01290{bottom:983.036000pt;}
.y1b_c01290{bottom:984.340000pt;}
.y1c_c01290{bottom:986.212000pt;}
.y12_c01290{bottom:1014.038667pt;}
.y11_c01290{bottom:1062.356000pt;}
.hd_c01290{height:16.000000pt;}
.he_c01290{height:21.333333pt;}
.h4_c01290{height:37.333333pt;}
.h5_c01290{height:42.666667pt;}
.ha_c01290{height:64.000000pt;}
.hf_c01290{height:64.005408pt;}
.h8_c01290{height:69.333333pt;}
.h6_c01290{height:74.666667pt;}
.h3_c01290{height:80.000000pt;}
.hb_c01290{height:85.337600pt;}
.h1_c01290{height:85.340544pt;}
.h10_c01290{height:85.364432pt;}
.h7_c01290{height:90.666667pt;}
.h2_c01290{height:90.674328pt;}
.hc_c01290{height:106.672000pt;}
.h9_c01290{height:112.000000pt;}
.h0_c01290{height:1110.666667pt;}
.w1_c01290{width:810.666667pt;}
.w0_c01290{width:810.933333pt;}
.x0_c01290{left:0.000000pt;}
.x1_c01290{left:67.561333pt;}
.xb_c01290{left:68.640000pt;}
.xe_c01290{left:70.080000pt;}
.x10_c01290{left:71.760000pt;}
.xc_c01290{left:88.800000pt;}
.x2_c01290{left:118.153333pt;}
.xd_c01290{left:119.760000pt;}
.x11_c01290{left:122.160000pt;}
.xf_c01290{left:129.600000pt;}
.x3_c01290{left:145.860000pt;}
.x1e_c01290{left:153.153333pt;}
.x27_c01290{left:154.314667pt;}
.x43_c01290{left:155.412000pt;}
.x5d_c01290{left:156.622667pt;}
.x4_c01290{left:165.280000pt;}
.x7e_c01290{left:167.260000pt;}
.x73_c01290{left:176.877040pt;}
.x82_c01290{left:181.012000pt;}
.x31_c01290{left:181.976000pt;}
.x65_c01290{left:184.750667pt;}
.x28_c01290{left:192.033333pt;}
.x58_c01290{left:193.440000pt;}
.x8_c01290{left:211.211277pt;}
.x5e_c01290{left:213.248000pt;}
.x6a_c01290{left:215.040000pt;}
.x83_c01290{left:218.833333pt;}
.x1f_c01290{left:220.624000pt;}
.x5_c01290{left:223.872000pt;}
.x29_c01290{left:229.714667pt;}
.x5f_c01290{left:233.941333pt;}
.x37_c01290{left:241.118667pt;}
.x59_c01290{left:242.400000pt;}
.x6b_c01290{left:245.760000pt;}
.x15_c01290{left:248.880000pt;}
.x20_c01290{left:250.632000pt;}
.x9_c01290{left:253.694453pt;}
.x44_c01290{left:259.857333pt;}
.x5a_c01290{left:262.560000pt;}
.x6c_c01290{left:267.600000pt;}
.x3d_c01290{left:270.673333pt;}
.x16_c01290{left:277.920000pt;}
.x6d_c01290{left:282.720000pt;}
.x2a_c01290{left:289.717333pt;}
.x52_c01290{left:290.880000pt;}
.x6_c01290{left:291.792000pt;}
.x74_c01290{left:294.003413pt;}
.xa_c01290{left:302.178652pt;}
.x32_c01290{left:308.712000pt;}
.x84_c01290{left:316.957333pt;}
.x66_c01290{left:321.549333pt;}
.x7_c01290{left:331.180000pt;}
.x75_c01290{left:333.846067pt;}
.x7f_c01290{left:335.732000pt;}
.x17_c01290{left:337.920000pt;}
.x21_c01290{left:349.974667pt;}
.x4a_c01290{left:359.198667pt;}
.x5b_c01290{left:360.720000pt;}
.x67_c01290{left:361.660000pt;}
.x12_c01290{left:366.240000pt;}
.x45_c01290{left:368.796000pt;}
.x80_c01290{left:375.085333pt;}
.x18_c01290{left:376.080000pt;}
.x2b_c01290{left:377.498667pt;}
.x13_c01290{left:382.560000pt;}
.x22_c01290{left:386.949333pt;}
.x4b_c01290{left:389.438667pt;}
.x6e_c01290{left:397.742667pt;}
.x38_c01290{left:399.246667pt;}
.x46_c01290{left:409.853333pt;}
.x33_c01290{left:416.713333pt;}
.x3e_c01290{left:419.229333pt;}
.x14_c01290{left:426.480000pt;}
.x68_c01290{left:430.292000pt;}
.x76_c01290{left:431.770520pt;}
.x50_c01290{left:438.641333pt;}
.x23_c01290{left:446.172000pt;}
.x53_c01290{left:447.840000pt;}
.x19_c01290{left:456.000000pt;}
.x39_c01290{left:457.114667pt;}
.x47_c01290{left:458.344000pt;}
.x81_c01290{left:463.388000pt;}
.x2c_c01290{left:466.253333pt;}
.x24_c01290{left:476.170667pt;}
.x54_c01290{left:477.600000pt;}
.x1a_c01290{left:485.280000pt;}
.x4c_c01290{left:487.089333pt;}
.x77_c01290{left:488.893560pt;}
.x34_c01290{left:496.858667pt;}
.x25_c01290{left:506.377333pt;}
.x60_c01290{left:508.922667pt;}
.x6f_c01290{left:511.132000pt;}
.x69_c01290{left:518.360000pt;}
.x2d_c01290{left:526.024000pt;}
.x55_c01290{left:527.760000pt;}
.x70_c01290{left:531.288000pt;}
.x3a_c01290{left:536.306667pt;}
.x3f_c01290{left:538.992000pt;}
.x61_c01290{left:546.844000pt;}
.x48_c01290{left:555.736000pt;}
.x4d_c01290{left:556.717333pt;}
.x2e_c01290{left:561.420000pt;}
.x26_c01290{left:575.024000pt;}
.x5c_c01290{left:576.960000pt;}
.x40_c01290{left:585.493333pt;}
.x62_c01290{left:587.214667pt;}
.x3b_c01290{left:594.834667pt;}
.x51_c01290{left:596.313333pt;}
.x78_c01290{left:597.619093pt;}
.x4e_c01290{left:606.389333pt;}
.x35_c01290{left:614.214667pt;}
.x49_c01290{left:615.290667pt;}
.x71_c01290{left:618.854667pt;}
.x79_c01290{left:628.100813pt;}
.x36_c01290{left:634.149333pt;}
.x56_c01290{left:635.520000pt;}
.x1b_c01290{left:643.440000pt;}
.x63_c01290{left:646.912000pt;}
.x72_c01290{left:648.796000pt;}
.x41_c01290{left:654.360000pt;}
.x2f_c01290{left:663.744000pt;}
.x1c_c01290{left:673.440000pt;}
.x42_c01290{left:675.752000pt;}
.x4f_c01290{left:685.310667pt;}
.x64_c01290{left:686.288000pt;}
.x3c_c01290{left:694.312000pt;}
.x30_c01290{left:703.332000pt;}
.x1d_c01290{left:723.840000pt;}
.x57_c01290{left:724.800000pt;}
.x7c_c01290{left:797.520000pt;}
.x7a_c01290{left:798.720000pt;}
.x7b_c01290{left:799.680000pt;}
.x7d_c01290{left:801.120000pt;}
}





/* 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_c01291 {
    display:none;
  }
  .loading-indicator_c01291.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01291 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_c01291 { 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_c01291" -> "#page-container .classname_c01291")
 */
.pf_c01291 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01291 { /* 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_c01291.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01291 { /* 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_c01291 { /* 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_c01291 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01291 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01291 {overflow:visible;}
  }
}
.c_c01291 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01291 { /* 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_c01291:after { /* webkit #35443 */
  content: '';
}
.t_c01291:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01291 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 */
}
.__c01291 { /* 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_c01291 { /* info for Javascript */
  display:none;
}
.l_c01291 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01291 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01291 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01291: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_c01291 {
    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_c01291.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01291.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_c01291 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01291{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01291;src:url('chunks/assets/font_b11a17f404e7258299fdf971.woff2')format("woff");}.ff1_c01291{font-family:ff1_c01291;line-height:1.000000;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;}
.m13_c01291{transform:matrix(0.133435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133435,0.000000,0.000000,0.250000,0,0);}
.ma_c01291{transform:matrix(0.178885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178885,0.000000,0.000000,0.250000,0,0);}
.m9_c01291{transform:matrix(0.183100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183100,0.000000,0.000000,0.250000,0,0);}
.m14_c01291{transform:matrix(0.185950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185950,0.000000,0.000000,0.250000,0,0);}
.me_c01291{transform:matrix(0.201805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201805,0.000000,0.000000,0.250000,0,0);}
.m4_c01291{transform:matrix(0.281125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281125,0.000000,0.000000,0.250000,0,0);}
.mc_c01291{transform:matrix(0.324585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324585,0.000000,0.000000,0.250000,0,0);}
.m6_c01291{transform:matrix(0.342055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342055,0.000000,0.000000,0.250000,0,0);}
.m12_c01291{transform:matrix(0.361630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361630,0.000000,0.000000,0.250000,0,0);}
.md_c01291{transform:matrix(0.429535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429535,0.000000,0.000000,0.250000,0,0);}
.m1_c01291{transform:matrix(0.553175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553175,0.000000,0.000000,0.250000,0,0);}
.m2_c01291{transform:matrix(0.616700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.616700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.616700,0.000000,0.000000,0.250000,0,0);}
.mf_c01291{transform:matrix(0.678200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.678200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.678200,0.000000,0.000000,0.250000,0,0);}
.m3_c01291{transform:matrix(0.793515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.793515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.793515,0.000000,0.000000,0.250000,0,0);}
.m11_c01291{transform:matrix(0.823770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.823770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.823770,0.000000,0.000000,0.250000,0,0);}
.m7_c01291{transform:matrix(0.902720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.902720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.902720,0.000000,0.000000,0.250000,0,0);}
.m10_c01291{transform:matrix(0.915000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.915000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.915000,0.000000,0.000000,0.250000,0,0);}
.m8_c01291{transform:matrix(1.147965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.147965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.147965,0.000000,0.000000,0.250000,0,0);}
.m5_c01291{transform:matrix(1.182720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.182720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.182720,0.000000,0.000000,0.250000,0,0);}
.m0_c01291{transform:matrix(2.107700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.107700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.107700,0.000000,0.000000,0.250000,0,0);}
.mb_c01291{transform:matrix(2.209130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.209130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.209130,0.000000,0.000000,0.250000,0,0);}
.v0_c01291{vertical-align:0.000000px;}
.ls0_c01291{letter-spacing:0.000000px;}
.sc__c01291{text-shadow:none;}
.sc0_c01291{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__c01291{-webkit-text-stroke:0px transparent;}
.sc0_c01291{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01291{word-spacing:0.000000px;}
.fc0_c01291{color:transparent;}
.fs0_c01291{font-size:18.000000px;}
.fs1_c01291{font-size:24.000000px;}
.fs2_c01291{font-size:60.000000px;}
.fs3_c01291{font-size:162.000000px;}
.y0_c01291{bottom:0.000000px;}
.ye_c01291{bottom:1210.140000px;}
.y5_c01291{bottom:1211.760000px;}
.yc_c01291{bottom:1212.030000px;}
.y1_c01291{bottom:1212.432000px;}
.y3_c01291{bottom:1213.507500px;}
.y9_c01291{bottom:1214.190000px;}
.y4_c01291{bottom:1214.193000px;}
.yd_c01291{bottom:1217.700000px;}
.y6_c01291{bottom:1228.500000px;}
.yb_c01291{bottom:1228.770000px;}
.y8_c01291{bottom:1228.911000px;}
.y2_c01291{bottom:1230.312000px;}
.y7_c01291{bottom:1230.922500px;}
.ya_c01291{bottom:1231.470000px;}
.h1_c01291{height:18.000000px;}
.h2_c01291{height:24.000000px;}
.h3_c01291{height:60.000000px;}
.h4_c01291{height:162.000000px;}
.h0_c01291{height:1249.500000px;}
.w1_c01291{width:912.000000px;}
.w0_c01291{width:912.300000px;}
.x0_c01291{left:0.000000px;}
.x15_c01291{left:407.700000px;}
.x14_c01291{left:425.520000px;}
.x13_c01291{left:436.860000px;}
.x12_c01291{left:457.380000px;}
.x11_c01291{left:469.260000px;}
.xf_c01291{left:479.790000px;}
.x10_c01291{left:488.430000px;}
.xc_c01291{left:501.930000px;}
.xb_c01291{left:511.380000px;}
.x9_c01291{left:517.860000px;}
.x8_c01291{left:519.480000px;}
.xd_c01291{left:521.640000px;}
.xa_c01291{left:526.230000px;}
.xe_c01291{left:534.600000px;}
.x3_c01291{left:541.890000px;}
.x6_c01291{left:544.050000px;}
.x4_c01291{left:565.110000px;}
.x7_c01291{left:580.500000px;}
.x1_c01291{left:589.950000px;}
.x5_c01291{left:593.460000px;}
.x2_c01291{left:622.080000px;}
@media print{
.v0_c01291{vertical-align:0.000000pt;}
.ls0_c01291{letter-spacing:0.000000pt;}
.ws0_c01291{word-spacing:0.000000pt;}
.fs0_c01291{font-size:16.000000pt;}
.fs1_c01291{font-size:21.333333pt;}
.fs2_c01291{font-size:53.333333pt;}
.fs3_c01291{font-size:144.000000pt;}
.y0_c01291{bottom:0.000000pt;}
.ye_c01291{bottom:1075.680000pt;}
.y5_c01291{bottom:1077.120000pt;}
.yc_c01291{bottom:1077.360000pt;}
.y1_c01291{bottom:1077.717333pt;}
.y3_c01291{bottom:1078.673333pt;}
.y9_c01291{bottom:1079.280000pt;}
.y4_c01291{bottom:1079.282667pt;}
.yd_c01291{bottom:1082.400000pt;}
.y6_c01291{bottom:1092.000000pt;}
.yb_c01291{bottom:1092.240000pt;}
.y8_c01291{bottom:1092.365333pt;}
.y2_c01291{bottom:1093.610667pt;}
.y7_c01291{bottom:1094.153333pt;}
.ya_c01291{bottom:1094.640000pt;}
.h1_c01291{height:16.000000pt;}
.h2_c01291{height:21.333333pt;}
.h3_c01291{height:53.333333pt;}
.h4_c01291{height:144.000000pt;}
.h0_c01291{height:1110.666667pt;}
.w1_c01291{width:810.666667pt;}
.w0_c01291{width:810.933333pt;}
.x0_c01291{left:0.000000pt;}
.x15_c01291{left:362.400000pt;}
.x14_c01291{left:378.240000pt;}
.x13_c01291{left:388.320000pt;}
.x12_c01291{left:406.560000pt;}
.x11_c01291{left:417.120000pt;}
.xf_c01291{left:426.480000pt;}
.x10_c01291{left:434.160000pt;}
.xc_c01291{left:446.160000pt;}
.xb_c01291{left:454.560000pt;}
.x9_c01291{left:460.320000pt;}
.x8_c01291{left:461.760000pt;}
.xd_c01291{left:463.680000pt;}
.xa_c01291{left:467.760000pt;}
.xe_c01291{left:475.200000pt;}
.x3_c01291{left:481.680000pt;}
.x6_c01291{left:483.600000pt;}
.x4_c01291{left:502.320000pt;}
.x7_c01291{left:516.000000pt;}
.x1_c01291{left:524.400000pt;}
.x5_c01291{left:527.520000pt;}
.x2_c01291{left:552.960000pt;}
}





/* 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_c01292 {
    display:none;
  }
  .loading-indicator_c01292.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01292 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_c01292 { 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_c01292" -> "#page-container .classname_c01292")
 */
.pf_c01292 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01292 { /* 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_c01292.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01292 { /* 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_c01292 { /* 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_c01292 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01292 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01292 {overflow:visible;}
  }
}
.c_c01292 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01292 { /* 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_c01292:after { /* webkit #35443 */
  content: '';
}
.t_c01292:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01292 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 */
}
.__c01292 { /* 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_c01292 { /* info for Javascript */
  display:none;
}
.l_c01292 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01292 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01292 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01292: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_c01292 {
    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_c01292.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01292.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_c01292 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01292{font-family:sans-serif;visibility:hidden;}
.sc__c01292{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01292{-webkit-text-stroke:0px transparent;}
}
.y0_c01292{bottom:0.000000px;}
.h0_c01292{height:1249.500000px;}
.w1_c01292{width:912.000000px;}
.w0_c01292{width:912.300000px;}
.x0_c01292{left:0.000000px;}
@media print{
.y0_c01292{bottom:0.000000pt;}
.h0_c01292{height:1110.666667pt;}
.w1_c01292{width:810.666667pt;}
.w0_c01292{width:810.933333pt;}
.x0_c01292{left:0.000000pt;}
}





/* 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_c01293 {
    display:none;
  }
  .loading-indicator_c01293.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01293 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_c01293 { 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_c01293" -> "#page-container .classname_c01293")
 */
.pf_c01293 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01293 { /* 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_c01293.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01293 { /* 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_c01293 { /* 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_c01293 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01293 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01293 {overflow:visible;}
  }
}
.c_c01293 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01293 { /* 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_c01293:after { /* webkit #35443 */
  content: '';
}
.t_c01293:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01293 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 */
}
.__c01293 { /* 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_c01293 { /* info for Javascript */
  display:none;
}
.l_c01293 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01293 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01293 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01293: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_c01293 {
    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_c01293.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01293.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_c01293 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01293{font-family:sans-serif;visibility:hidden;}
.sc__c01293{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01293{-webkit-text-stroke:0px transparent;}
}
.y0_c01293{bottom:0.000000px;}
.h1_c01293{height:1250.250000px;}
.h0_c01293{height:1250.370000px;}
.w1_c01293{width:912.000000px;}
.w0_c01293{width:912.300000px;}
.x0_c01293{left:0.000000px;}
@media print{
.y0_c01293{bottom:0.000000pt;}
.h1_c01293{height:1111.333333pt;}
.h0_c01293{height:1111.440000pt;}
.w1_c01293{width:810.666667pt;}
.w0_c01293{width:810.933333pt;}
.x0_c01293{left:0.000000pt;}
}





/* 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_c01294 {
    display:none;
  }
  .loading-indicator_c01294.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01294 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_c01294 { 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_c01294" -> "#page-container .classname_c01294")
 */
.pf_c01294 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01294 { /* 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_c01294.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01294 { /* 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_c01294 { /* 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_c01294 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01294 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01294 {overflow:visible;}
  }
}
.c_c01294 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01294 { /* 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_c01294:after { /* webkit #35443 */
  content: '';
}
.t_c01294:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01294 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 */
}
.__c01294 { /* 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_c01294 { /* info for Javascript */
  display:none;
}
.l_c01294 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01294 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01294 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01294: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_c01294 {
    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_c01294.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01294.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_c01294 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01294{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01294;src:url('chunks/assets/font_cfe63ee56e9e10a97d33a3db.woff2')format("woff");}.ff1_c01294{font-family:ff1_c01294;line-height:1.000000;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;}
.m29_c01294{transform:matrix(0.011570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.011570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.011570,0.000000,0.000000,0.250000,0,0);}
.m20_c01294{transform:matrix(0.030325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.030325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.030325,0.000000,0.000000,0.250000,0,0);}
.m12_c01294{transform:matrix(0.035575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.035575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.035575,0.000000,0.000000,0.250000,0,0);}
.m8_c01294{transform:matrix(0.056250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.056250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.056250,0.000000,0.000000,0.250000,0,0);}
.mb_c01294{transform:matrix(0.065600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065600,0.000000,0.000000,0.250000,0,0);}
.m22_c01294{transform:matrix(0.119320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119320,0.000000,0.000000,0.250000,0,0);}
.m10_c01294{transform:matrix(0.175730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175730,0.000000,0.000000,0.250000,0,0);}
.m2e_c01294{transform:matrix(0.188585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188585,0.000000,0.000000,0.250000,0,0);}
.m1d_c01294{transform:matrix(0.212185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212185,0.000000,0.000000,0.250000,0,0);}
.m19_c01294{transform:matrix(0.228475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228475,0.000000,0.000000,0.250000,0,0);}
.m14_c01294{transform:matrix(0.241005,-0.003133,0.003250,0.249979,0,0);-ms-transform:matrix(0.241005,-0.003133,0.003250,0.249979,0,0);-webkit-transform:matrix(0.241005,-0.003133,0.003250,0.249979,0,0);}
.m1e_c01294{transform:matrix(0.242400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242400,0.000000,0.000000,0.250000,0,0);}
.m24_c01294{transform:matrix(0.244160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244160,0.000000,0.000000,0.250000,0,0);}
.m1_c01294{transform:matrix(0.257030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257030,0.000000,0.000000,0.250000,0,0);}
.m1f_c01294{transform:matrix(0.260820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260820,0.000000,0.000000,0.250000,0,0);}
.m4_c01294{transform:matrix(0.267410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267410,0.000000,0.000000,0.250000,0,0);}
.mc_c01294{transform:matrix(0.277440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277440,0.000000,0.000000,0.250000,0,0);}
.m1c_c01294{transform:matrix(0.284605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284605,0.000000,0.000000,0.250000,0,0);}
.me_c01294{transform:matrix(0.284750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284750,0.000000,0.000000,0.250000,0,0);}
.m23_c01294{transform:matrix(0.286525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286525,0.000000,0.000000,0.250000,0,0);}
.m21_c01294{transform:matrix(0.294845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294845,0.000000,0.000000,0.250000,0,0);}
.m2a_c01294{transform:matrix(0.294900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294900,0.000000,0.000000,0.250000,0,0);}
.mf_c01294{transform:matrix(0.304535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304535,0.000000,0.000000,0.250000,0,0);}
.m3_c01294{transform:matrix(0.306035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306035,0.000000,0.000000,0.250000,0,0);}
.m33_c01294{transform:matrix(0.309045,-0.010827,0.008753,0.249847,0,0);-ms-transform:matrix(0.309045,-0.010827,0.008753,0.249847,0,0);-webkit-transform:matrix(0.309045,-0.010827,0.008753,0.249847,0,0);}
.m36_c01294{transform:matrix(0.309555,-0.010845,0.008753,0.249847,0,0);-ms-transform:matrix(0.309555,-0.010845,0.008753,0.249847,0,0);-webkit-transform:matrix(0.309555,-0.010845,0.008753,0.249847,0,0);}
.m30_c01294{transform:matrix(0.314112,-0.011005,0.008753,0.249847,0,0);-ms-transform:matrix(0.314112,-0.011005,0.008753,0.249847,0,0);-webkit-transform:matrix(0.314112,-0.011005,0.008753,0.249847,0,0);}
.md_c01294{transform:matrix(0.318775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318775,0.000000,0.000000,0.250000,0,0);}
.m28_c01294{transform:matrix(0.360070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360070,0.000000,0.000000,0.250000,0,0);}
.m35_c01294{transform:matrix(0.376874,-0.013204,0.008753,0.249847,0,0);-ms-transform:matrix(0.376874,-0.013204,0.008753,0.249847,0,0);-webkit-transform:matrix(0.376874,-0.013204,0.008753,0.249847,0,0);}
.m32_c01294{transform:matrix(0.395657,-0.013862,0.008753,0.249847,0,0);-ms-transform:matrix(0.395657,-0.013862,0.008753,0.249847,0,0);-webkit-transform:matrix(0.395657,-0.013862,0.008753,0.249847,0,0);}
.m31_c01294{transform:matrix(0.396916,-0.013906,0.008753,0.249847,0,0);-ms-transform:matrix(0.396916,-0.013906,0.008753,0.249847,0,0);-webkit-transform:matrix(0.396916,-0.013906,0.008753,0.249847,0,0);}
.m2c_c01294{transform:matrix(0.401280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401280,0.000000,0.000000,0.250000,0,0);}
.m2_c01294{transform:matrix(0.427650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427650,0.000000,0.000000,0.250000,0,0);}
.m0_c01294{transform:matrix(0.428385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428385,0.000000,0.000000,0.250000,0,0);}
.m2b_c01294{transform:matrix(0.457790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457790,0.000000,0.000000,0.250000,0,0);}
.m2f_c01294{transform:matrix(0.526797,-0.018456,0.008753,0.249847,0,0);-ms-transform:matrix(0.526797,-0.018456,0.008753,0.249847,0,0);-webkit-transform:matrix(0.526797,-0.018456,0.008753,0.249847,0,0);}
.m16_c01294{transform:matrix(0.580211,-0.007543,0.003250,0.249979,0,0);-ms-transform:matrix(0.580211,-0.007543,0.003250,0.249979,0,0);-webkit-transform:matrix(0.580211,-0.007543,0.003250,0.249979,0,0);}
.m37_c01294{transform:matrix(0.596544,-0.020900,0.008753,0.249847,0,0);-ms-transform:matrix(0.596544,-0.020900,0.008753,0.249847,0,0);-webkit-transform:matrix(0.596544,-0.020900,0.008753,0.249847,0,0);}
.m26_c01294{transform:matrix(0.604150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.604150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.604150,0.000000,0.000000,0.250000,0,0);}
.m27_c01294{transform:matrix(0.646220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.646220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.646220,0.000000,0.000000,0.250000,0,0);}
.m5_c01294{transform:matrix(0.795495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.795495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.795495,0.000000,0.000000,0.250000,0,0);}
.m13_c01294{transform:matrix(0.877860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.877860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.877860,0.000000,0.000000,0.250000,0,0);}
.m25_c01294{transform:matrix(0.935550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.935550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.935550,0.000000,0.000000,0.250000,0,0);}
.m7_c01294{transform:matrix(0.975185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.975185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.975185,0.000000,0.000000,0.250000,0,0);}
.ma_c01294{transform:matrix(1.045825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.045825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.045825,0.000000,0.000000,0.250000,0,0);}
.m17_c01294{transform:matrix(1.081349,-0.014058,0.003250,0.249979,0,0);-ms-transform:matrix(1.081349,-0.014058,0.003250,0.249979,0,0);-webkit-transform:matrix(1.081349,-0.014058,0.003250,0.249979,0,0);}
.m9_c01294{transform:matrix(1.099230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.099230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.099230,0.000000,0.000000,0.250000,0,0);}
.m11_c01294{transform:matrix(1.144825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.144825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.144825,0.000000,0.000000,0.250000,0,0);}
.m1b_c01294{transform:matrix(1.195410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.195410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.195410,0.000000,0.000000,0.250000,0,0);}
.m34_c01294{transform:matrix(1.224923,-0.042915,0.008753,0.249847,0,0);-ms-transform:matrix(1.224923,-0.042915,0.008753,0.249847,0,0);-webkit-transform:matrix(1.224923,-0.042915,0.008753,0.249847,0,0);}
.m1a_c01294{transform:matrix(1.309820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.309820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.309820,0.000000,0.000000,0.250000,0,0);}
.m18_c01294{transform:matrix(1.390373,-0.018075,0.003250,0.249979,0,0);-ms-transform:matrix(1.390373,-0.018075,0.003250,0.249979,0,0);-webkit-transform:matrix(1.390373,-0.018075,0.003250,0.249979,0,0);}
.m2d_c01294{transform:matrix(1.509765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.509765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.509765,0.000000,0.000000,0.250000,0,0);}
.m15_c01294{transform:matrix(1.703571,-0.022146,0.003250,0.249979,0,0);-ms-transform:matrix(1.703571,-0.022146,0.003250,0.249979,0,0);-webkit-transform:matrix(1.703571,-0.022146,0.003250,0.249979,0,0);}
.m6_c01294{transform:matrix(2.395170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.395170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.395170,0.000000,0.000000,0.250000,0,0);}
.v0_c01294{vertical-align:0.000000px;}
.ls0_c01294{letter-spacing:0.000000px;}
.sc__c01294{text-shadow:none;}
.sc0_c01294{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__c01294{-webkit-text-stroke:0px transparent;}
.sc0_c01294{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01294{word-spacing:0.000000px;}
.fc0_c01294{color:transparent;}
.fs2_c01294{font-size:18.000000px;}
.fs0_c01294{font-size:24.000000px;}
.fs7_c01294{font-size:35.986065px;}
.fs8_c01294{font-size:47.981420px;}
.fs6_c01294{font-size:66.000000px;}
.fs1_c01294{font-size:72.000000px;}
.fs3_c01294{font-size:78.006591px;}
.fs5_c01294{font-size:84.000000px;}
.fs4_c01294{font-size:90.000000px;}
.y0_c01294{bottom:0.000000px;}
.y1d_c01294{bottom:786.265801px;}
.y1e_c01294{bottom:787.355544px;}
.y1f_c01294{bottom:790.078457px;}
.y20_c01294{bottom:792.845259px;}
.y21_c01294{bottom:793.933007px;}
.y22_c01294{bottom:797.447934px;}
.y23_c01294{bottom:799.784604px;}
.y24_c01294{bottom:801.726474px;}
.y1c_c01294{bottom:813.253500px;}
.y1b_c01294{bottom:892.218000px;}
.y1a_c01294{bottom:900.045000px;}
.y19_c01294{bottom:915.052500px;}
.y18_c01294{bottom:952.828500px;}
.y11_c01294{bottom:964.947000px;}
.y12_c01294{bottom:965.875500px;}
.y13_c01294{bottom:968.457000px;}
.y14_c01294{bottom:968.674500px;}
.y15_c01294{bottom:970.647000px;}
.y16_c01294{bottom:970.932000px;}
.y17_c01294{bottom:971.727000px;}
.yf_c01294{bottom:993.069000px;}
.y10_c01294{bottom:998.104500px;}
.ya_c01294{bottom:1001.694000px;}
.yb_c01294{bottom:1002.323831px;}
.yc_c01294{bottom:1004.142128px;}
.yd_c01294{bottom:1004.627054px;}
.ye_c01294{bottom:1006.462277px;}
.y9_c01294{bottom:1021.680000px;}
.y8_c01294{bottom:1028.430000px;}
.y3_c01294{bottom:1037.343000px;}
.y4_c01294{bottom:1038.480000px;}
.y5_c01294{bottom:1039.399500px;}
.y6_c01294{bottom:1039.767000px;}
.y7_c01294{bottom:1040.596500px;}
.y2_c01294{bottom:1063.813500px;}
.y1_c01294{bottom:1113.541500px;}
.h4_c01294{height:18.000000px;}
.h2_c01294{height:24.000000px;}
.h9_c01294{height:35.986065px;}
.ha_c01294{height:47.981420px;}
.h8_c01294{height:66.000000px;}
.h3_c01294{height:72.000000px;}
.h5_c01294{height:78.006591px;}
.h7_c01294{height:84.000000px;}
.h6_c01294{height:90.000000px;}
.h1_c01294{height:1250.250000px;}
.h0_c01294{height:1250.370000px;}
.w1_c01294{width:912.000000px;}
.w0_c01294{width:912.300000px;}
.x0_c01294{left:0.000000px;}
.x1e_c01294{left:169.146000px;}
.x1d_c01294{left:181.170000px;}
.x2d_c01294{left:182.981366px;}
.x14_c01294{left:201.949500px;}
.x2e_c01294{left:214.085730px;}
.x1f_c01294{left:223.738500px;}
.x24_c01294{left:236.250000px;}
.x12_c01294{left:238.410000px;}
.x13_c01294{left:245.160000px;}
.x15_c01294{left:250.398000px;}
.xd_c01294{left:255.924000px;}
.x8_c01294{left:288.900000px;}
.x2f_c01294{left:291.805432px;}
.x1_c01294{left:319.950000px;}
.x9_c01294{left:342.900000px;}
.x2_c01294{left:345.330000px;}
.x3_c01294{left:356.400000px;}
.xe_c01294{left:359.331000px;}
.x25_c01294{left:364.770000px;}
.x4_c01294{left:367.470000px;}
.xa_c01294{left:369.900000px;}
.x20_c01294{left:375.567000px;}
.x5_c01294{left:378.000000px;}
.x26_c01294{left:385.290000px;}
.x21_c01294{left:388.317000px;}
.x16_c01294{left:390.267000px;}
.x6_c01294{left:399.060000px;}
.x30_c01294{left:401.825303px;}
.xb_c01294{left:418.770000px;}
.x17_c01294{left:427.569000px;}
.x7_c01294{left:430.380000px;}
.xf_c01294{left:442.950000px;}
.x28_c01294{left:444.690000px;}
.x27_c01294{left:445.770000px;}
.xc_c01294{left:455.760000px;}
.x10_c01294{left:476.292000px;}
.x29_c01294{left:487.350000px;}
.x31_c01294{left:502.151376px;}
.x22_c01294{left:504.351000px;}
.x23_c01294{left:521.155500px;}
.x2b_c01294{left:525.150000px;}
.x2a_c01294{left:540.000000px;}
.x11_c01294{left:551.637000px;}
.x2c_c01294{left:560.250000px;}
.x18_c01294{left:568.740000px;}
.x19_c01294{left:575.640000px;}
.x1a_c01294{left:587.790000px;}
.x1b_c01294{left:606.960000px;}
.x32_c01294{left:624.273132px;}
.x1c_c01294{left:639.090000px;}
@media print{
.v0_c01294{vertical-align:0.000000pt;}
.ls0_c01294{letter-spacing:0.000000pt;}
.ws0_c01294{word-spacing:0.000000pt;}
.fs2_c01294{font-size:16.000000pt;}
.fs0_c01294{font-size:21.333333pt;}
.fs7_c01294{font-size:31.987614pt;}
.fs8_c01294{font-size:42.650151pt;}
.fs6_c01294{font-size:58.666667pt;}
.fs1_c01294{font-size:64.000000pt;}
.fs3_c01294{font-size:69.339192pt;}
.fs5_c01294{font-size:74.666667pt;}
.fs4_c01294{font-size:80.000000pt;}
.y0_c01294{bottom:0.000000pt;}
.y1d_c01294{bottom:698.902935pt;}
.y1e_c01294{bottom:699.871595pt;}
.y1f_c01294{bottom:702.291961pt;}
.y20_c01294{bottom:704.751341pt;}
.y21_c01294{bottom:705.718228pt;}
.y22_c01294{bottom:708.842608pt;}
.y23_c01294{bottom:710.919648pt;}
.y24_c01294{bottom:712.645755pt;}
.y1c_c01294{bottom:722.892000pt;}
.y1b_c01294{bottom:793.082667pt;}
.y1a_c01294{bottom:800.040000pt;}
.y19_c01294{bottom:813.380000pt;}
.y18_c01294{bottom:846.958667pt;}
.y11_c01294{bottom:857.730667pt;}
.y12_c01294{bottom:858.556000pt;}
.y13_c01294{bottom:860.850667pt;}
.y14_c01294{bottom:861.044000pt;}
.y15_c01294{bottom:862.797333pt;}
.y16_c01294{bottom:863.050667pt;}
.y17_c01294{bottom:863.757333pt;}
.yf_c01294{bottom:882.728000pt;}
.y10_c01294{bottom:887.204000pt;}
.ya_c01294{bottom:890.394667pt;}
.yb_c01294{bottom:890.954516pt;}
.yc_c01294{bottom:892.570780pt;}
.yd_c01294{bottom:893.001825pt;}
.ye_c01294{bottom:894.633135pt;}
.y9_c01294{bottom:908.160000pt;}
.y8_c01294{bottom:914.160000pt;}
.y3_c01294{bottom:922.082667pt;}
.y4_c01294{bottom:923.093333pt;}
.y5_c01294{bottom:923.910667pt;}
.y6_c01294{bottom:924.237333pt;}
.y7_c01294{bottom:924.974667pt;}
.y2_c01294{bottom:945.612000pt;}
.y1_c01294{bottom:989.814667pt;}
.h4_c01294{height:16.000000pt;}
.h2_c01294{height:21.333333pt;}
.h9_c01294{height:31.987614pt;}
.ha_c01294{height:42.650151pt;}
.h8_c01294{height:58.666667pt;}
.h3_c01294{height:64.000000pt;}
.h5_c01294{height:69.339192pt;}
.h7_c01294{height:74.666667pt;}
.h6_c01294{height:80.000000pt;}
.h1_c01294{height:1111.333333pt;}
.h0_c01294{height:1111.440000pt;}
.w1_c01294{width:810.666667pt;}
.w0_c01294{width:810.933333pt;}
.x0_c01294{left:0.000000pt;}
.x1e_c01294{left:150.352000pt;}
.x1d_c01294{left:161.040000pt;}
.x2d_c01294{left:162.650103pt;}
.x14_c01294{left:179.510667pt;}
.x2e_c01294{left:190.298427pt;}
.x1f_c01294{left:198.878667pt;}
.x24_c01294{left:210.000000pt;}
.x12_c01294{left:211.920000pt;}
.x13_c01294{left:217.920000pt;}
.x15_c01294{left:222.576000pt;}
.xd_c01294{left:227.488000pt;}
.x8_c01294{left:256.800000pt;}
.x2f_c01294{left:259.382607pt;}
.x1_c01294{left:284.400000pt;}
.x9_c01294{left:304.800000pt;}
.x2_c01294{left:306.960000pt;}
.x3_c01294{left:316.800000pt;}
.xe_c01294{left:319.405333pt;}
.x25_c01294{left:324.240000pt;}
.x4_c01294{left:326.640000pt;}
.xa_c01294{left:328.800000pt;}
.x20_c01294{left:333.837333pt;}
.x5_c01294{left:336.000000pt;}
.x26_c01294{left:342.480000pt;}
.x21_c01294{left:345.170667pt;}
.x16_c01294{left:346.904000pt;}
.x6_c01294{left:354.720000pt;}
.x30_c01294{left:357.178047pt;}
.xb_c01294{left:372.240000pt;}
.x17_c01294{left:380.061333pt;}
.x7_c01294{left:382.560000pt;}
.xf_c01294{left:393.733333pt;}
.x28_c01294{left:395.280000pt;}
.x27_c01294{left:396.240000pt;}
.xc_c01294{left:405.120000pt;}
.x10_c01294{left:423.370667pt;}
.x29_c01294{left:433.200000pt;}
.x31_c01294{left:446.356779pt;}
.x22_c01294{left:448.312000pt;}
.x23_c01294{left:463.249333pt;}
.x2b_c01294{left:466.800000pt;}
.x2a_c01294{left:480.000000pt;}
.x11_c01294{left:490.344000pt;}
.x2c_c01294{left:498.000000pt;}
.x18_c01294{left:505.546667pt;}
.x19_c01294{left:511.680000pt;}
.x1a_c01294{left:522.480000pt;}
.x1b_c01294{left:539.520000pt;}
.x32_c01294{left:554.909451pt;}
.x1c_c01294{left:568.080000pt;}
}





/* 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_c01295 {
    display:none;
  }
  .loading-indicator_c01295.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01295 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_c01295 { 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_c01295" -> "#page-container .classname_c01295")
 */
.pf_c01295 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01295 { /* 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_c01295.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01295 { /* 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_c01295 { /* 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_c01295 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01295 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01295 {overflow:visible;}
  }
}
.c_c01295 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01295 { /* 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_c01295:after { /* webkit #35443 */
  content: '';
}
.t_c01295:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01295 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 */
}
.__c01295 { /* 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_c01295 { /* info for Javascript */
  display:none;
}
.l_c01295 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01295 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01295 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01295: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_c01295 {
    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_c01295.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01295.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_c01295 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01295{font-family:sans-serif;visibility:hidden;}
.sc__c01295{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01295{-webkit-text-stroke:0px transparent;}
}
.y0_c01295{bottom:0.000000px;}
.h1_c01295{height:1250.250000px;}
.h0_c01295{height:1250.370000px;}
.w1_c01295{width:912.000000px;}
.w0_c01295{width:912.300000px;}
.x0_c01295{left:0.000000px;}
@media print{
.y0_c01295{bottom:0.000000pt;}
.h1_c01295{height:1111.333333pt;}
.h0_c01295{height:1111.440000pt;}
.w1_c01295{width:810.666667pt;}
.w0_c01295{width:810.933333pt;}
.x0_c01295{left:0.000000pt;}
}





/* 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_c01296 {
    display:none;
  }
  .loading-indicator_c01296.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01296 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_c01296 { 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_c01296" -> "#page-container .classname_c01296")
 */
.pf_c01296 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01296 { /* 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_c01296.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01296 { /* 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_c01296 { /* 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_c01296 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01296 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01296 {overflow:visible;}
  }
}
.c_c01296 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01296 { /* 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_c01296:after { /* webkit #35443 */
  content: '';
}
.t_c01296:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01296 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 */
}
.__c01296 { /* 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_c01296 { /* info for Javascript */
  display:none;
}
.l_c01296 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01296 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01296 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01296: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_c01296 {
    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_c01296.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01296.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_c01296 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01296{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01296;src:url('chunks/assets/font_7c6b9abe6ee2a268480c528b.woff2')format("woff");}.ff1_c01296{font-family:ff1_c01296;line-height:1.000000;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;}
.m1_c01296{transform:matrix(0.009134,0.761130,-0.249982,0.003000,0,0);-ms-transform:matrix(0.009134,0.761130,-0.249982,0.003000,0,0);-webkit-transform:matrix(0.009134,0.761130,-0.249982,0.003000,0,0);}
.m2_c01296{transform:matrix(0.013378,1.337798,-0.249988,0.002500,0,0);-ms-transform:matrix(0.013378,1.337798,-0.249988,0.002500,0,0);-webkit-transform:matrix(0.013378,1.337798,-0.249988,0.002500,0,0);}
.m0_c01296{transform:matrix(0.216105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216105,0.000000,0.000000,0.250000,0,0);}
.v0_c01296{vertical-align:0.000000px;}
.ls0_c01296{letter-spacing:0.000000px;}
.sc__c01296{text-shadow:none;}
.sc0_c01296{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__c01296{-webkit-text-stroke:0px transparent;}
.sc0_c01296{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01296{word-spacing:0.000000px;}
.fc0_c01296{color:transparent;}
.fs1_c01296{font-size:18.001296px;}
.fs0_c01296{font-size:24.000000px;}
.fs2_c01296{font-size:24.001200px;}
.y0_c01296{bottom:0.000000px;}
.y1_c01296{bottom:286.200000px;}
.y2_c01296{bottom:327.520500px;}
.y3_c01296{bottom:360.997500px;}
.h3_c01296{height:18.001296px;}
.h2_c01296{height:24.000000px;}
.h4_c01296{height:24.001200px;}
.h1_c01296{height:1250.250000px;}
.h0_c01296{height:1250.370000px;}
.w1_c01296{width:912.000000px;}
.w0_c01296{width:912.300000px;}
.x0_c01296{left:0.000000px;}
.x3_c01296{left:49.140000px;}
.x2_c01296{left:55.890000px;}
.x1_c01296{left:57.240000px;}
@media print{
.v0_c01296{vertical-align:0.000000pt;}
.ls0_c01296{letter-spacing:0.000000pt;}
.ws0_c01296{word-spacing:0.000000pt;}
.fs1_c01296{font-size:16.001152pt;}
.fs0_c01296{font-size:21.333333pt;}
.fs2_c01296{font-size:21.334400pt;}
.y0_c01296{bottom:0.000000pt;}
.y1_c01296{bottom:254.400000pt;}
.y2_c01296{bottom:291.129333pt;}
.y3_c01296{bottom:320.886667pt;}
.h3_c01296{height:16.001152pt;}
.h2_c01296{height:21.333333pt;}
.h4_c01296{height:21.334400pt;}
.h1_c01296{height:1111.333333pt;}
.h0_c01296{height:1111.440000pt;}
.w1_c01296{width:810.666667pt;}
.w0_c01296{width:810.933333pt;}
.x0_c01296{left:0.000000pt;}
.x3_c01296{left:43.680000pt;}
.x2_c01296{left:49.680000pt;}
.x1_c01296{left:50.880000pt;}
}





/* 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_c01297 {
    display:none;
  }
  .loading-indicator_c01297.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01297 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_c01297 { 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_c01297" -> "#page-container .classname_c01297")
 */
.pf_c01297 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01297 { /* 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_c01297.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01297 { /* 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_c01297 { /* 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_c01297 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01297 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01297 {overflow:visible;}
  }
}
.c_c01297 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01297 { /* 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_c01297:after { /* webkit #35443 */
  content: '';
}
.t_c01297:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01297 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 */
}
.__c01297 { /* 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_c01297 { /* info for Javascript */
  display:none;
}
.l_c01297 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01297 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01297 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01297: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_c01297 {
    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_c01297.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01297.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_c01297 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01297{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01297;src:url('chunks/assets/font_6b78c10203a447bee2208e8d.woff2')format("woff");}.ff1_c01297{font-family:ff1_c01297;line-height:1.000000;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;}
.me_c01297{transform:matrix(0.035575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.035575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.035575,0.000000,0.000000,0.250000,0,0);}
.ma_c01297{transform:matrix(0.054085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054085,0.000000,0.000000,0.250000,0,0);}
.m0_c01297{transform:matrix(0.155240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155240,0.000000,0.000000,0.250000,0,0);}
.m1_c01297{transform:matrix(0.159450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159450,0.000000,0.000000,0.250000,0,0);}
.m9_c01297{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m8_c01297{transform:matrix(0.272030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272030,0.000000,0.000000,0.250000,0,0);}
.m7_c01297{transform:matrix(0.296815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296815,0.000000,0.000000,0.250000,0,0);}
.m3_c01297{transform:matrix(0.309235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309235,0.000000,0.000000,0.250000,0,0);}
.m6_c01297{transform:matrix(0.340155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340155,0.000000,0.000000,0.250000,0,0);}
.m5_c01297{transform:matrix(0.349295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349295,0.000000,0.000000,0.250000,0,0);}
.mf_c01297{transform:matrix(0.489400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.489400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.489400,0.000000,0.000000,0.250000,0,0);}
.m10_c01297{transform:matrix(0.603925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.603925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.603925,0.000000,0.000000,0.250000,0,0);}
.m4_c01297{transform:matrix(0.698410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.698410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.698410,0.000000,0.000000,0.250000,0,0);}
.m2_c01297{transform:matrix(0.721560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.721560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.721560,0.000000,0.000000,0.250000,0,0);}
.md_c01297{transform:matrix(0.766860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.766860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.766860,0.000000,0.000000,0.250000,0,0);}
.mb_c01297{transform:matrix(0.986220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.986220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.986220,0.000000,0.000000,0.250000,0,0);}
.mc_c01297{transform:matrix(1.780525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.780525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.780525,0.000000,0.000000,0.250000,0,0);}
.v0_c01297{vertical-align:0.000000px;}
.ls0_c01297{letter-spacing:0.000000px;}
.sc__c01297{text-shadow:none;}
.sc0_c01297{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__c01297{-webkit-text-stroke:0px transparent;}
.sc0_c01297{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01297{word-spacing:0.000000px;}
.fc0_c01297{color:transparent;}
.fs0_c01297{font-size:18.000000px;}
.fs2_c01297{font-size:24.000000px;}
.fs1_c01297{font-size:30.000000px;}
.y0_c01297{bottom:0.000000px;}
.y7_c01297{bottom:891.142500px;}
.y6_c01297{bottom:894.910500px;}
.y5_c01297{bottom:959.577000px;}
.y4_c01297{bottom:963.360000px;}
.y3_c01297{bottom:997.105500px;}
.y2_c01297{bottom:999.684000px;}
.y1_c01297{bottom:1007.370000px;}
.h2_c01297{height:18.000000px;}
.h4_c01297{height:24.000000px;}
.h3_c01297{height:30.000000px;}
.h1_c01297{height:1249.500000px;}
.h0_c01297{height:1249.800000px;}
.w1_c01297{width:912.000000px;}
.w0_c01297{width:912.300000px;}
.x0_c01297{left:0.000000px;}
.xb_c01297{left:369.630000px;}
.xc_c01297{left:436.590000px;}
.x7_c01297{left:445.500000px;}
.x8_c01297{left:455.490000px;}
.x9_c01297{left:466.290000px;}
.xa_c01297{left:472.770000px;}
.x5_c01297{left:576.720000px;}
.x1_c01297{left:578.610000px;}
.x6_c01297{left:588.330000px;}
.x2_c01297{left:595.620000px;}
.x3_c01297{left:610.200000px;}
.x4_c01297{left:630.720000px;}
.xd_c01297{left:660.690000px;}
.xf_c01297{left:662.580000px;}
.x10_c01297{left:683.640000px;}
.xe_c01297{left:703.620000px;}
@media print{
.v0_c01297{vertical-align:0.000000pt;}
.ls0_c01297{letter-spacing:0.000000pt;}
.ws0_c01297{word-spacing:0.000000pt;}
.fs0_c01297{font-size:16.000000pt;}
.fs2_c01297{font-size:21.333333pt;}
.fs1_c01297{font-size:26.666667pt;}
.y0_c01297{bottom:0.000000pt;}
.y7_c01297{bottom:792.126667pt;}
.y6_c01297{bottom:795.476000pt;}
.y5_c01297{bottom:852.957333pt;}
.y4_c01297{bottom:856.320000pt;}
.y3_c01297{bottom:886.316000pt;}
.y2_c01297{bottom:888.608000pt;}
.y1_c01297{bottom:895.440000pt;}
.h2_c01297{height:16.000000pt;}
.h4_c01297{height:21.333333pt;}
.h3_c01297{height:26.666667pt;}
.h1_c01297{height:1110.666667pt;}
.h0_c01297{height:1110.933333pt;}
.w1_c01297{width:810.666667pt;}
.w0_c01297{width:810.933333pt;}
.x0_c01297{left:0.000000pt;}
.xb_c01297{left:328.560000pt;}
.xc_c01297{left:388.080000pt;}
.x7_c01297{left:396.000000pt;}
.x8_c01297{left:404.880000pt;}
.x9_c01297{left:414.480000pt;}
.xa_c01297{left:420.240000pt;}
.x5_c01297{left:512.640000pt;}
.x1_c01297{left:514.320000pt;}
.x6_c01297{left:522.960000pt;}
.x2_c01297{left:529.440000pt;}
.x3_c01297{left:542.400000pt;}
.x4_c01297{left:560.640000pt;}
.xd_c01297{left:587.280000pt;}
.xf_c01297{left:588.960000pt;}
.x10_c01297{left:607.680000pt;}
.xe_c01297{left:625.440000pt;}
}





/* 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_c01298 {
    display:none;
  }
  .loading-indicator_c01298.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01298 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_c01298 { 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_c01298" -> "#page-container .classname_c01298")
 */
.pf_c01298 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01298 { /* 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_c01298.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01298 { /* 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_c01298 { /* 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_c01298 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01298 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01298 {overflow:visible;}
  }
}
.c_c01298 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01298 { /* 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_c01298:after { /* webkit #35443 */
  content: '';
}
.t_c01298:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01298 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 */
}
.__c01298 { /* 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_c01298 { /* info for Javascript */
  display:none;
}
.l_c01298 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01298 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01298 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01298: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_c01298 {
    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_c01298.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01298.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_c01298 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01298{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01298;src:url('chunks/assets/font_fabf4b590f7fb32aea93ffb2.woff2')format("woff");}.ff1_c01298{font-family:ff1_c01298;line-height:1.000000;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;}
.m2_c01298{transform:matrix(0.107860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107860,0.000000,0.000000,0.250000,0,0);}
.m47_c01298{transform:matrix(0.162409,-0.002923,0.004499,0.249960,0,0);-ms-transform:matrix(0.162409,-0.002923,0.004499,0.249960,0,0);-webkit-transform:matrix(0.162409,-0.002923,0.004499,0.249960,0,0);}
.m43_c01298{transform:matrix(0.188292,-0.002636,0.003500,0.249976,0,0);-ms-transform:matrix(0.188292,-0.002636,0.003500,0.249976,0,0);-webkit-transform:matrix(0.188292,-0.002636,0.003500,0.249976,0,0);}
.m4a_c01298{transform:matrix(0.189414,-0.003409,0.004499,0.249960,0,0);-ms-transform:matrix(0.189414,-0.003409,0.004499,0.249960,0,0);-webkit-transform:matrix(0.189414,-0.003409,0.004499,0.249960,0,0);}
.m45_c01298{transform:matrix(0.192166,-0.002690,0.003500,0.249976,0,0);-ms-transform:matrix(0.192166,-0.002690,0.003500,0.249976,0,0);-webkit-transform:matrix(0.192166,-0.002690,0.003500,0.249976,0,0);}
.m4d_c01298{transform:matrix(0.195543,-0.003520,0.004499,0.249960,0,0);-ms-transform:matrix(0.195543,-0.003520,0.004499,0.249960,0,0);-webkit-transform:matrix(0.195543,-0.003520,0.004499,0.249960,0,0);}
.m0_c01298{transform:matrix(0.196005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196005,0.000000,0.000000,0.250000,0,0);}
.m48_c01298{transform:matrix(0.198403,-0.003571,0.004499,0.249960,0,0);-ms-transform:matrix(0.198403,-0.003571,0.004499,0.249960,0,0);-webkit-transform:matrix(0.198403,-0.003571,0.004499,0.249960,0,0);}
.m4b_c01298{transform:matrix(0.199388,-0.003589,0.004499,0.249960,0,0);-ms-transform:matrix(0.199388,-0.003589,0.004499,0.249960,0,0);-webkit-transform:matrix(0.199388,-0.003589,0.004499,0.249960,0,0);}
.m4c_c01298{transform:matrix(0.201827,-0.003633,0.004499,0.249960,0,0);-ms-transform:matrix(0.201827,-0.003633,0.004499,0.249960,0,0);-webkit-transform:matrix(0.201827,-0.003633,0.004499,0.249960,0,0);}
.m44_c01298{transform:matrix(0.203020,-0.002842,0.003500,0.249976,0,0);-ms-transform:matrix(0.203020,-0.002842,0.003500,0.249976,0,0);-webkit-transform:matrix(0.203020,-0.002842,0.003500,0.249976,0,0);}
.m50_c01298{transform:matrix(0.209886,-0.003778,0.004499,0.249960,0,0);-ms-transform:matrix(0.209886,-0.003778,0.004499,0.249960,0,0);-webkit-transform:matrix(0.209886,-0.003778,0.004499,0.249960,0,0);}
.m4f_c01298{transform:matrix(0.210581,-0.003790,0.004499,0.249960,0,0);-ms-transform:matrix(0.210581,-0.003790,0.004499,0.249960,0,0);-webkit-transform:matrix(0.210581,-0.003790,0.004499,0.249960,0,0);}
.m24_c01298{transform:matrix(0.215290,0.001507,-0.001750,0.249994,0,0);-ms-transform:matrix(0.215290,0.001507,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.215290,0.001507,-0.001750,0.249994,0,0);}
.m22_c01298{transform:matrix(0.216145,0.001513,-0.001750,0.249994,0,0);-ms-transform:matrix(0.216145,0.001513,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.216145,0.001513,-0.001750,0.249994,0,0);}
.m46_c01298{transform:matrix(0.216900,-0.003904,0.004499,0.249960,0,0);-ms-transform:matrix(0.216900,-0.003904,0.004499,0.249960,0,0);-webkit-transform:matrix(0.216900,-0.003904,0.004499,0.249960,0,0);}
.m29_c01298{transform:matrix(0.218875,0.001532,-0.001750,0.249994,0,0);-ms-transform:matrix(0.218875,0.001532,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.218875,0.001532,-0.001750,0.249994,0,0);}
.m26_c01298{transform:matrix(0.219260,0.001535,-0.001750,0.249994,0,0);-ms-transform:matrix(0.219260,0.001535,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.219260,0.001535,-0.001750,0.249994,0,0);}
.m4e_c01298{transform:matrix(0.219519,-0.003951,0.004499,0.249960,0,0);-ms-transform:matrix(0.219519,-0.003951,0.004499,0.249960,0,0);-webkit-transform:matrix(0.219519,-0.003951,0.004499,0.249960,0,0);}
.m42_c01298{transform:matrix(0.220543,-0.003088,0.003500,0.249976,0,0);-ms-transform:matrix(0.220543,-0.003088,0.003500,0.249976,0,0);-webkit-transform:matrix(0.220543,-0.003088,0.003500,0.249976,0,0);}
.m2a_c01298{transform:matrix(0.220565,0.001544,-0.001750,0.249994,0,0);-ms-transform:matrix(0.220565,0.001544,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.220565,0.001544,-0.001750,0.249994,0,0);}
.m49_c01298{transform:matrix(0.225483,-0.004059,0.004499,0.249960,0,0);-ms-transform:matrix(0.225483,-0.004059,0.004499,0.249960,0,0);-webkit-transform:matrix(0.225483,-0.004059,0.004499,0.249960,0,0);}
.m1d_c01298{transform:matrix(0.226999,0.001589,-0.001750,0.249994,0,0);-ms-transform:matrix(0.226999,0.001589,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.226999,0.001589,-0.001750,0.249994,0,0);}
.m38_c01298{transform:matrix(0.228164,0.001597,-0.001750,0.249994,0,0);-ms-transform:matrix(0.228164,0.001597,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.228164,0.001597,-0.001750,0.249994,0,0);}
.m6_c01298{transform:matrix(0.231480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231480,0.000000,0.000000,0.250000,0,0);}
.m30_c01298{transform:matrix(0.232764,0.001629,-0.001750,0.249994,0,0);-ms-transform:matrix(0.232764,0.001629,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.232764,0.001629,-0.001750,0.249994,0,0);}
.m32_c01298{transform:matrix(0.233234,0.001633,-0.001750,0.249994,0,0);-ms-transform:matrix(0.233234,0.001633,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.233234,0.001633,-0.001750,0.249994,0,0);}
.m3c_c01298{transform:matrix(0.234374,0.001641,-0.001750,0.249994,0,0);-ms-transform:matrix(0.234374,0.001641,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.234374,0.001641,-0.001750,0.249994,0,0);}
.m1e_c01298{transform:matrix(0.237969,0.001666,-0.001750,0.249994,0,0);-ms-transform:matrix(0.237969,0.001666,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.237969,0.001666,-0.001750,0.249994,0,0);}
.m1b_c01298{transform:matrix(0.240099,0.001681,-0.001750,0.249994,0,0);-ms-transform:matrix(0.240099,0.001681,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.240099,0.001681,-0.001750,0.249994,0,0);}
.m27_c01298{transform:matrix(0.244329,0.001710,-0.001750,0.249994,0,0);-ms-transform:matrix(0.244329,0.001710,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.244329,0.001710,-0.001750,0.249994,0,0);}
.m3b_c01298{transform:matrix(0.244854,0.001714,-0.001750,0.249994,0,0);-ms-transform:matrix(0.244854,0.001714,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.244854,0.001714,-0.001750,0.249994,0,0);}
.m1_c01298{transform:matrix(0.245040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245040,0.000000,0.000000,0.250000,0,0);}
.m28_c01298{transform:matrix(0.245149,0.001716,-0.001750,0.249994,0,0);-ms-transform:matrix(0.245149,0.001716,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.245149,0.001716,-0.001750,0.249994,0,0);}
.m23_c01298{transform:matrix(0.246109,0.001723,-0.001750,0.249994,0,0);-ms-transform:matrix(0.246109,0.001723,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.246109,0.001723,-0.001750,0.249994,0,0);}
.m3a_c01298{transform:matrix(0.248244,0.001738,-0.001750,0.249994,0,0);-ms-transform:matrix(0.248244,0.001738,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.248244,0.001738,-0.001750,0.249994,0,0);}
.m2c_c01298{transform:matrix(0.248499,0.001739,-0.001750,0.249994,0,0);-ms-transform:matrix(0.248499,0.001739,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.248499,0.001739,-0.001750,0.249994,0,0);}
.m34_c01298{transform:matrix(0.249564,0.001747,-0.001750,0.249994,0,0);-ms-transform:matrix(0.249564,0.001747,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.249564,0.001747,-0.001750,0.249994,0,0);}
.m3_c01298{transform:matrix(0.251015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251015,0.000000,0.000000,0.250000,0,0);}
.m2e_c01298{transform:matrix(0.251389,0.001760,-0.001750,0.249994,0,0);-ms-transform:matrix(0.251389,0.001760,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.251389,0.001760,-0.001750,0.249994,0,0);}
.m3f_c01298{transform:matrix(0.251394,0.001760,-0.001750,0.249994,0,0);-ms-transform:matrix(0.251394,0.001760,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.251394,0.001760,-0.001750,0.249994,0,0);}
.m2f_c01298{transform:matrix(0.251439,0.001760,-0.001750,0.249994,0,0);-ms-transform:matrix(0.251439,0.001760,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.251439,0.001760,-0.001750,0.249994,0,0);}
.m20_c01298{transform:matrix(0.252424,0.001767,-0.001750,0.249994,0,0);-ms-transform:matrix(0.252424,0.001767,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.252424,0.001767,-0.001750,0.249994,0,0);}
.m40_c01298{transform:matrix(0.253124,0.001772,-0.001750,0.249994,0,0);-ms-transform:matrix(0.253124,0.001772,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.253124,0.001772,-0.001750,0.249994,0,0);}
.m2d_c01298{transform:matrix(0.254589,0.001782,-0.001750,0.249994,0,0);-ms-transform:matrix(0.254589,0.001782,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.254589,0.001782,-0.001750,0.249994,0,0);}
.m3d_c01298{transform:matrix(0.255589,0.001789,-0.001750,0.249994,0,0);-ms-transform:matrix(0.255589,0.001789,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.255589,0.001789,-0.001750,0.249994,0,0);}
.m25_c01298{transform:matrix(0.258759,0.001811,-0.001750,0.249994,0,0);-ms-transform:matrix(0.258759,0.001811,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.258759,0.001811,-0.001750,0.249994,0,0);}
.m2b_c01298{transform:matrix(0.258864,0.001812,-0.001750,0.249994,0,0);-ms-transform:matrix(0.258864,0.001812,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.258864,0.001812,-0.001750,0.249994,0,0);}
.m7_c01298{transform:matrix(0.259655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259655,0.000000,0.000000,0.250000,0,0);}
.m33_c01298{transform:matrix(0.260534,0.001824,-0.001750,0.249994,0,0);-ms-transform:matrix(0.260534,0.001824,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.260534,0.001824,-0.001750,0.249994,0,0);}
.m31_c01298{transform:matrix(0.264124,0.001849,-0.001750,0.249994,0,0);-ms-transform:matrix(0.264124,0.001849,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.264124,0.001849,-0.001750,0.249994,0,0);}
.m1a_c01298{transform:matrix(0.264149,0.001849,-0.001750,0.249994,0,0);-ms-transform:matrix(0.264149,0.001849,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.264149,0.001849,-0.001750,0.249994,0,0);}
.m3e_c01298{transform:matrix(0.264754,0.001853,-0.001750,0.249994,0,0);-ms-transform:matrix(0.264754,0.001853,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.264754,0.001853,-0.001750,0.249994,0,0);}
.m37_c01298{transform:matrix(0.266243,0.001864,-0.001750,0.249994,0,0);-ms-transform:matrix(0.266243,0.001864,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.266243,0.001864,-0.001750,0.249994,0,0);}
.m19_c01298{transform:matrix(0.271623,0.001901,-0.001750,0.249994,0,0);-ms-transform:matrix(0.271623,0.001901,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.271623,0.001901,-0.001750,0.249994,0,0);}
.m5_c01298{transform:matrix(0.272325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272325,0.000000,0.000000,0.250000,0,0);}
.m1c_c01298{transform:matrix(0.272683,0.001909,-0.001750,0.249994,0,0);-ms-transform:matrix(0.272683,0.001909,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.272683,0.001909,-0.001750,0.249994,0,0);}
.m21_c01298{transform:matrix(0.273753,0.001916,-0.001750,0.249994,0,0);-ms-transform:matrix(0.273753,0.001916,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.273753,0.001916,-0.001750,0.249994,0,0);}
.m39_c01298{transform:matrix(0.273843,0.001917,-0.001750,0.249994,0,0);-ms-transform:matrix(0.273843,0.001917,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.273843,0.001917,-0.001750,0.249994,0,0);}
.m36_c01298{transform:matrix(0.274348,0.001920,-0.001750,0.249994,0,0);-ms-transform:matrix(0.274348,0.001920,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.274348,0.001920,-0.001750,0.249994,0,0);}
.m1f_c01298{transform:matrix(0.277248,0.001941,-0.001750,0.249994,0,0);-ms-transform:matrix(0.277248,0.001941,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.277248,0.001941,-0.001750,0.249994,0,0);}
.m35_c01298{transform:matrix(0.278733,0.001951,-0.001750,0.249994,0,0);-ms-transform:matrix(0.278733,0.001951,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.278733,0.001951,-0.001750,0.249994,0,0);}
.m41_c01298{transform:matrix(0.281443,0.001970,-0.001750,0.249994,0,0);-ms-transform:matrix(0.281443,0.001970,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.281443,0.001970,-0.001750,0.249994,0,0);}
.m4_c01298{transform:matrix(0.290775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290775,0.000000,0.000000,0.250000,0,0);}
.me_c01298{transform:matrix(0.309235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309235,0.000000,0.000000,0.250000,0,0);}
.m10_c01298{transform:matrix(0.322065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322065,0.000000,0.000000,0.250000,0,0);}
.m12_c01298{transform:matrix(0.328975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328975,0.000000,0.000000,0.250000,0,0);}
.m15_c01298{transform:matrix(0.329315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329315,0.000000,0.000000,0.250000,0,0);}
.mb_c01298{transform:matrix(0.335410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335410,0.000000,0.000000,0.250000,0,0);}
.m14_c01298{transform:matrix(0.342380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342380,0.000000,0.000000,0.250000,0,0);}
.md_c01298{transform:matrix(0.342710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342710,0.000000,0.000000,0.250000,0,0);}
.mf_c01298{transform:matrix(0.348890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348890,0.000000,0.000000,0.250000,0,0);}
.m13_c01298{transform:matrix(0.351140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351140,0.000000,0.000000,0.250000,0,0);}
.m18_c01298{transform:matrix(0.356090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356090,0.000000,0.000000,0.250000,0,0);}
.m16_c01298{transform:matrix(0.356545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356545,0.000000,0.000000,0.250000,0,0);}
.mc_c01298{transform:matrix(0.362490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362490,0.000000,0.000000,0.250000,0,0);}
.m17_c01298{transform:matrix(0.375900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375900,0.000000,0.000000,0.250000,0,0);}
.m11_c01298{transform:matrix(0.384480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384480,0.000000,0.000000,0.250000,0,0);}
.ma_c01298{transform:matrix(0.516140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516140,0.000000,0.000000,0.250000,0,0);}
.m9_c01298{transform:matrix(0.531600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531600,0.000000,0.000000,0.250000,0,0);}
.m8_c01298{transform:matrix(12.257655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(12.257655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(12.257655,0.000000,0.000000,0.250000,0,0);}
.v0_c01298{vertical-align:0.000000px;}
.ls0_c01298{letter-spacing:0.000000px;}
.sc__c01298{text-shadow:none;}
.sc0_c01298{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__c01298{-webkit-text-stroke:0px transparent;}
.sc0_c01298{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01298{word-spacing:0.000000px;}
.fc0_c01298{color:transparent;}
.fs4_c01298{font-size:18.000000px;}
.fs3_c01298{font-size:72.000000px;}
.fs5_c01298{font-size:72.001764px;}
.fs6_c01298{font-size:78.001911px;}
.fs8_c01298{font-size:84.013607px;}
.fs7_c01298{font-size:90.008820px;}
.fs2_c01298{font-size:114.000000px;}
.fs0_c01298{font-size:138.000000px;}
.fs1_c01298{font-size:150.000000px;}
.y0_c01298{bottom:0.000000px;}
.y2_c01298{bottom:636.930000px;}
.y1_c01298{bottom:667.440000px;}
.y36_c01298{bottom:800.286000px;}
.y37_c01298{bottom:800.936349px;}
.y38_c01298{bottom:801.496545px;}
.y39_c01298{bottom:802.263777px;}
.y3a_c01298{bottom:803.682330px;}
.y3b_c01298{bottom:804.250761px;}
.y3c_c01298{bottom:805.062246px;}
.y3d_c01298{bottom:805.450803px;}
.y3e_c01298{bottom:806.053605px;}
.y3f_c01298{bottom:807.258426px;}
.y40_c01298{bottom:808.249542px;}
.y32_c01298{bottom:907.743000px;}
.y33_c01298{bottom:909.266235px;}
.y34_c01298{bottom:909.731238px;}
.y35_c01298{bottom:910.714269px;}
.y2e_c01298{bottom:942.158050px;}
.y2f_c01298{bottom:942.158301px;}
.y2d_c01298{bottom:942.158370px;}
.y31_c01298{bottom:942.158412px;}
.y28_c01298{bottom:942.158517px;}
.y2b_c01298{bottom:942.158619px;}
.y27_c01298{bottom:942.158657px;}
.y29_c01298{bottom:942.158947px;}
.y2c_c01298{bottom:942.158989px;}
.y30_c01298{bottom:942.159031px;}
.y2a_c01298{bottom:942.159179px;}
.y26_c01298{bottom:976.318430px;}
.y25_c01298{bottom:976.986109px;}
.y24_c01298{bottom:977.187512px;}
.y23_c01298{bottom:977.519451px;}
.y22_c01298{bottom:978.046986px;}
.y21_c01298{bottom:978.250647px;}
.y20_c01298{bottom:978.456292px;}
.y1f_c01298{bottom:978.918432px;}
.y1e_c01298{bottom:979.117818px;}
.y1d_c01298{bottom:979.513083px;}
.y1c_c01298{bottom:979.775627px;}
.y1b_c01298{bottom:980.095899px;}
.y1a_c01298{bottom:1010.796775px;}
.y19_c01298{bottom:1011.353877px;}
.y18_c01298{bottom:1011.575253px;}
.y17_c01298{bottom:1011.745903px;}
.y16_c01298{bottom:1012.138098px;}
.y15_c01298{bottom:1012.414590px;}
.y14_c01298{bottom:1012.581039px;}
.y13_c01298{bottom:1013.291710px;}
.y12_c01298{bottom:1013.464631px;}
.y11_c01298{bottom:1013.896920px;}
.y10_c01298{bottom:1014.118285px;}
.yf_c01298{bottom:1046.306626px;}
.ye_c01298{bottom:1046.626047px;}
.yd_c01298{bottom:1047.389639px;}
.yc_c01298{bottom:1047.633459px;}
.yb_c01298{bottom:1047.865761px;}
.ya_c01298{bottom:1048.482080px;}
.y9_c01298{bottom:1048.725911px;}
.y8_c01298{bottom:1049.258901px;}
.y7_c01298{bottom:1050.030000px;}
.y6_c01298{bottom:1123.506000px;}
.y5_c01298{bottom:1126.527000px;}
.y4_c01298{bottom:1137.510000px;}
.y3_c01298{bottom:1193.404500px;}
.h6_c01298{height:18.000000px;}
.h5_c01298{height:72.000000px;}
.h7_c01298{height:72.001764px;}
.h8_c01298{height:78.001911px;}
.ha_c01298{height:84.013607px;}
.h9_c01298{height:90.008820px;}
.h4_c01298{height:114.000000px;}
.h2_c01298{height:138.000000px;}
.h3_c01298{height:150.000000px;}
.h1_c01298{height:1249.500000px;}
.h0_c01298{height:1249.800000px;}
.w1_c01298{width:912.000000px;}
.w0_c01298{width:912.300000px;}
.x0_c01298{left:0.000000px;}
.x1_c01298{left:21.060000px;}
.x35_c01298{left:174.687648px;}
.x22_c01298{left:176.244417px;}
.x3c_c01298{left:210.577500px;}
.x23_c01298{left:220.511536px;}
.x2c_c01298{left:230.243676px;}
.x1a_c01298{left:241.825500px;}
.x36_c01298{left:251.639918px;}
.x2d_c01298{left:273.964480px;}
.x37_c01298{left:284.580035px;}
.x24_c01298{left:306.911244px;}
.x5_c01298{left:317.520000px;}
.x8_c01298{left:332.640000px;}
.x2e_c01298{left:339.859942px;}
.x25_c01298{left:341.471727px;}
.x9_c01298{left:343.980000px;}
.xa_c01298{left:352.890000px;}
.x3d_c01298{left:363.132000px;}
.xb_c01298{left:365.580000px;}
.x2f_c01298{left:373.058173px;}
.xc_c01298{left:375.030000px;}
.xd_c01298{left:388.260000px;}
.x6_c01298{left:395.280000px;}
.xe_c01298{left:399.600000px;}
.x2_c01298{left:407.160000px;}
.xf_c01298{left:410.130000px;}
.x10_c01298{left:421.470000px;}
.x1b_c01298{left:428.124000px;}
.x3_c01298{left:430.650000px;}
.x11_c01298{left:431.730000px;}
.x38_c01298{left:439.563126px;}
.x12_c01298{left:443.610000px;}
.x30_c01298{left:450.007209px;}
.x13_c01298{left:455.490000px;}
.x3e_c01298{left:461.380500px;}
.x1c_c01298{left:462.957000px;}
.x14_c01298{left:466.290000px;}
.x4_c01298{left:471.960000px;}
.x15_c01298{left:474.390000px;}
.x26_c01298{left:483.498211px;}
.x7_c01298{left:484.920000px;}
.x16_c01298{left:488.430000px;}
.x3f_c01298{left:494.869500px;}
.x17_c01298{left:498.960000px;}
.x18_c01298{left:509.760000px;}
.x27_c01298{left:516.705674px;}
.x19_c01298{left:519.210000px;}
.x1d_c01298{left:551.002500px;}
.x40_c01298{left:561.804000px;}
.x28_c01298{left:572.062450px;}
.x1e_c01298{left:584.188500px;}
.x39_c01298{left:585.365766px;}
.x31_c01298{left:606.342812px;}
.x41_c01298{left:616.866000px;}
.x1f_c01298{left:619.020000px;}
.x29_c01298{left:650.377043px;}
.x32_c01298{left:661.691700px;}
.x2a_c01298{left:684.399015px;}
.x33_c01298{left:695.177931px;}
.x3a_c01298{left:716.589203px;}
.x20_c01298{left:728.104500px;}
.x3b_c01298{left:761.679908px;}
.x21_c01298{left:773.736000px;}
.x34_c01298{left:806.418708px;}
.x2b_c01298{left:840.183699px;}
@media print{
.v0_c01298{vertical-align:0.000000pt;}
.ls0_c01298{letter-spacing:0.000000pt;}
.ws0_c01298{word-spacing:0.000000pt;}
.fs4_c01298{font-size:16.000000pt;}
.fs3_c01298{font-size:64.000000pt;}
.fs5_c01298{font-size:64.001568pt;}
.fs6_c01298{font-size:69.335032pt;}
.fs8_c01298{font-size:74.678762pt;}
.fs7_c01298{font-size:80.007840pt;}
.fs2_c01298{font-size:101.333333pt;}
.fs0_c01298{font-size:122.666667pt;}
.fs1_c01298{font-size:133.333333pt;}
.y0_c01298{bottom:0.000000pt;}
.y2_c01298{bottom:566.160000pt;}
.y1_c01298{bottom:593.280000pt;}
.y36_c01298{bottom:711.365333pt;}
.y37_c01298{bottom:711.943421pt;}
.y38_c01298{bottom:712.441373pt;}
.y39_c01298{bottom:713.123357pt;}
.y3a_c01298{bottom:714.384293pt;}
.y3b_c01298{bottom:714.889565pt;}
.y3c_c01298{bottom:715.610885pt;}
.y3d_c01298{bottom:715.956269pt;}
.y3e_c01298{bottom:716.492093pt;}
.y3f_c01298{bottom:717.563045pt;}
.y40_c01298{bottom:718.444037pt;}
.y32_c01298{bottom:806.882667pt;}
.y33_c01298{bottom:808.236653pt;}
.y34_c01298{bottom:808.649989pt;}
.y35_c01298{bottom:809.523795pt;}
.y2e_c01298{bottom:837.473823pt;}
.y2f_c01298{bottom:837.474045pt;}
.y2d_c01298{bottom:837.474107pt;}
.y31_c01298{bottom:837.474144pt;}
.y28_c01298{bottom:837.474237pt;}
.y2b_c01298{bottom:837.474328pt;}
.y27_c01298{bottom:837.474361pt;}
.y29_c01298{bottom:837.474620pt;}
.y2c_c01298{bottom:837.474657pt;}
.y30_c01298{bottom:837.474695pt;}
.y2a_c01298{bottom:837.474825pt;}
.y26_c01298{bottom:867.838604pt;}
.y25_c01298{bottom:868.432097pt;}
.y24_c01298{bottom:868.611121pt;}
.y23_c01298{bottom:868.906179pt;}
.y22_c01298{bottom:869.375099pt;}
.y21_c01298{bottom:869.556131pt;}
.y20_c01298{bottom:869.738927pt;}
.y1f_c01298{bottom:870.149717pt;}
.y1e_c01298{bottom:870.326949pt;}
.y1d_c01298{bottom:870.678296pt;}
.y1c_c01298{bottom:870.911668pt;}
.y1b_c01298{bottom:871.196355pt;}
.y1a_c01298{bottom:898.486023pt;}
.y19_c01298{bottom:898.981224pt;}
.y18_c01298{bottom:899.178003pt;}
.y17_c01298{bottom:899.329692pt;}
.y16_c01298{bottom:899.678309pt;}
.y15_c01298{bottom:899.924080pt;}
.y14_c01298{bottom:900.072035pt;}
.y13_c01298{bottom:900.703743pt;}
.y12_c01298{bottom:900.857449pt;}
.y11_c01298{bottom:901.241707pt;}
.y10_c01298{bottom:901.438476pt;}
.yf_c01298{bottom:930.050335pt;}
.ye_c01298{bottom:930.334264pt;}
.yd_c01298{bottom:931.013012pt;}
.yc_c01298{bottom:931.229741pt;}
.yb_c01298{bottom:931.436232pt;}
.ya_c01298{bottom:931.984071pt;}
.y9_c01298{bottom:932.200809pt;}
.y8_c01298{bottom:932.674579pt;}
.y7_c01298{bottom:933.360000pt;}
.y6_c01298{bottom:998.672000pt;}
.y5_c01298{bottom:1001.357333pt;}
.y4_c01298{bottom:1011.120000pt;}
.y3_c01298{bottom:1060.804000pt;}
.h6_c01298{height:16.000000pt;}
.h5_c01298{height:64.000000pt;}
.h7_c01298{height:64.001568pt;}
.h8_c01298{height:69.335032pt;}
.ha_c01298{height:74.678762pt;}
.h9_c01298{height:80.007840pt;}
.h4_c01298{height:101.333333pt;}
.h2_c01298{height:122.666667pt;}
.h3_c01298{height:133.333333pt;}
.h1_c01298{height:1110.666667pt;}
.h0_c01298{height:1110.933333pt;}
.w1_c01298{width:810.666667pt;}
.w0_c01298{width:810.933333pt;}
.x0_c01298{left:0.000000pt;}
.x1_c01298{left:18.720000pt;}
.x35_c01298{left:155.277909pt;}
.x22_c01298{left:156.661704pt;}
.x3c_c01298{left:187.180000pt;}
.x23_c01298{left:196.010255pt;}
.x2c_c01298{left:204.661045pt;}
.x1a_c01298{left:214.956000pt;}
.x36_c01298{left:223.679927pt;}
.x2d_c01298{left:243.523983pt;}
.x37_c01298{left:252.960031pt;}
.x24_c01298{left:272.809995pt;}
.x5_c01298{left:282.240000pt;}
.x8_c01298{left:295.680000pt;}
.x2e_c01298{left:302.097727pt;}
.x25_c01298{left:303.530424pt;}
.x9_c01298{left:305.760000pt;}
.xa_c01298{left:313.680000pt;}
.x3d_c01298{left:322.784000pt;}
.xb_c01298{left:324.960000pt;}
.x2f_c01298{left:331.607265pt;}
.xc_c01298{left:333.360000pt;}
.xd_c01298{left:345.120000pt;}
.x6_c01298{left:351.360000pt;}
.xe_c01298{left:355.200000pt;}
.x2_c01298{left:361.920000pt;}
.xf_c01298{left:364.560000pt;}
.x10_c01298{left:374.640000pt;}
.x1b_c01298{left:380.554667pt;}
.x3_c01298{left:382.800000pt;}
.x11_c01298{left:383.760000pt;}
.x38_c01298{left:390.722779pt;}
.x12_c01298{left:394.320000pt;}
.x30_c01298{left:400.006408pt;}
.x13_c01298{left:404.880000pt;}
.x3e_c01298{left:410.116000pt;}
.x1c_c01298{left:411.517333pt;}
.x14_c01298{left:414.480000pt;}
.x4_c01298{left:419.520000pt;}
.x15_c01298{left:421.680000pt;}
.x26_c01298{left:429.776188pt;}
.x7_c01298{left:431.040000pt;}
.x16_c01298{left:434.160000pt;}
.x3f_c01298{left:439.884000pt;}
.x17_c01298{left:443.520000pt;}
.x18_c01298{left:453.120000pt;}
.x27_c01298{left:459.293932pt;}
.x19_c01298{left:461.520000pt;}
.x1d_c01298{left:489.780000pt;}
.x40_c01298{left:499.381333pt;}
.x28_c01298{left:508.499956pt;}
.x1e_c01298{left:519.278667pt;}
.x39_c01298{left:520.325125pt;}
.x31_c01298{left:538.971388pt;}
.x41_c01298{left:548.325333pt;}
.x1f_c01298{left:550.240000pt;}
.x29_c01298{left:578.112927pt;}
.x32_c01298{left:588.170400pt;}
.x2a_c01298{left:608.354680pt;}
.x33_c01298{left:617.935939pt;}
.x3a_c01298{left:636.968180pt;}
.x20_c01298{left:647.204000pt;}
.x3b_c01298{left:677.048807pt;}
.x21_c01298{left:687.765333pt;}
.x34_c01298{left:716.816629pt;}
.x2b_c01298{left:746.829955pt;}
}





/* 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_c01299 {
    display:none;
  }
  .loading-indicator_c01299.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01299 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_c01299 { 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_c01299" -> "#page-container .classname_c01299")
 */
.pf_c01299 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01299 { /* 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_c01299.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01299 { /* 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_c01299 { /* 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_c01299 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01299 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01299 {overflow:visible;}
  }
}
.c_c01299 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01299 { /* 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_c01299:after { /* webkit #35443 */
  content: '';
}
.t_c01299:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01299 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 */
}
.__c01299 { /* 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_c01299 { /* info for Javascript */
  display:none;
}
.l_c01299 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01299 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01299 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01299: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_c01299 {
    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_c01299.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01299.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_c01299 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01299{font-family:sans-serif;visibility:hidden;}
.sc__c01299{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01299{-webkit-text-stroke:0px transparent;}
}
.y0_c01299{bottom:0.000000px;}
.h1_c01299{height:1250.250000px;}
.h0_c01299{height:1250.370000px;}
.w1_c01299{width:912.000000px;}
.w0_c01299{width:912.300000px;}
.x0_c01299{left:0.000000px;}
@media print{
.y0_c01299{bottom:0.000000pt;}
.h1_c01299{height:1111.333333pt;}
.h0_c01299{height:1111.440000pt;}
.w1_c01299{width:810.666667pt;}
.w0_c01299{width:810.933333pt;}
.x0_c01299{left:0.000000pt;}
}





/* 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_c01300 {
    display:none;
  }
  .loading-indicator_c01300.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01300 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_c01300 { 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_c01300" -> "#page-container .classname_c01300")
 */
.pf_c01300 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01300 { /* 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_c01300.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01300 { /* 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_c01300 { /* 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_c01300 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01300 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01300 {overflow:visible;}
  }
}
.c_c01300 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01300 { /* 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_c01300:after { /* webkit #35443 */
  content: '';
}
.t_c01300:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01300 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 */
}
.__c01300 { /* 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_c01300 { /* info for Javascript */
  display:none;
}
.l_c01300 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01300 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01300 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01300: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_c01300 {
    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_c01300.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01300.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_c01300 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01300{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01300;src:url('chunks/assets/font_6b78c10203a447bee2208e8d.woff2')format("woff");}.ff1_c01300{font-family:ff1_c01300;line-height:1.000000;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;}
.m0_c01300{transform:matrix(0.257325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257325,0.000000,0.000000,0.250000,0,0);}
.m1_c01300{transform:matrix(0.265780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265780,0.000000,0.000000,0.250000,0,0);}
.v0_c01300{vertical-align:0.000000px;}
.ls0_c01300{letter-spacing:0.000000px;}
.sc__c01300{text-shadow:none;}
.sc0_c01300{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__c01300{-webkit-text-stroke:0px transparent;}
.sc0_c01300{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01300{word-spacing:0.000000px;}
.fc0_c01300{color:transparent;}
.fs0_c01300{font-size:78.000000px;}
.y0_c01300{bottom:0.000000px;}
.y1_c01300{bottom:891.945000px;}
.h2_c01300{height:78.000000px;}
.h1_c01300{height:1250.250000px;}
.h0_c01300{height:1250.370000px;}
.w1_c01300{width:912.000000px;}
.w0_c01300{width:912.300000px;}
.x0_c01300{left:0.000000px;}
.x1_c01300{left:263.250000px;}
.x2_c01300{left:293.490000px;}
@media print{
.v0_c01300{vertical-align:0.000000pt;}
.ls0_c01300{letter-spacing:0.000000pt;}
.ws0_c01300{word-spacing:0.000000pt;}
.fs0_c01300{font-size:69.333333pt;}
.y0_c01300{bottom:0.000000pt;}
.y1_c01300{bottom:792.840000pt;}
.h2_c01300{height:69.333333pt;}
.h1_c01300{height:1111.333333pt;}
.h0_c01300{height:1111.440000pt;}
.w1_c01300{width:810.666667pt;}
.w0_c01300{width:810.933333pt;}
.x0_c01300{left:0.000000pt;}
.x1_c01300{left:234.000000pt;}
.x2_c01300{left:260.880000pt;}
}





/* 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_c01301 {
    display:none;
  }
  .loading-indicator_c01301.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01301 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_c01301 { 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_c01301" -> "#page-container .classname_c01301")
 */
.pf_c01301 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01301 { /* 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_c01301.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01301 { /* 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_c01301 { /* 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_c01301 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01301 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01301 {overflow:visible;}
  }
}
.c_c01301 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01301 { /* 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_c01301:after { /* webkit #35443 */
  content: '';
}
.t_c01301:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01301 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 */
}
.__c01301 { /* 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_c01301 { /* info for Javascript */
  display:none;
}
.l_c01301 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01301 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01301 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01301: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_c01301 {
    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_c01301.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01301.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_c01301 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01301{font-family:sans-serif;visibility:hidden;}
.sc__c01301{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01301{-webkit-text-stroke:0px transparent;}
}
.y0_c01301{bottom:0.000000px;}
.h1_c01301{height:1250.250000px;}
.h0_c01301{height:1250.370000px;}
.w1_c01301{width:912.000000px;}
.w0_c01301{width:912.300000px;}
.x0_c01301{left:0.000000px;}
@media print{
.y0_c01301{bottom:0.000000pt;}
.h1_c01301{height:1111.333333pt;}
.h0_c01301{height:1111.440000pt;}
.w1_c01301{width:810.666667pt;}
.w0_c01301{width:810.933333pt;}
.x0_c01301{left:0.000000pt;}
}





/* 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_c01302 {
    display:none;
  }
  .loading-indicator_c01302.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01302 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_c01302 { 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_c01302" -> "#page-container .classname_c01302")
 */
.pf_c01302 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01302 { /* 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_c01302.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01302 { /* 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_c01302 { /* 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_c01302 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01302 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01302 {overflow:visible;}
  }
}
.c_c01302 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01302 { /* 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_c01302:after { /* webkit #35443 */
  content: '';
}
.t_c01302:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01302 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 */
}
.__c01302 { /* 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_c01302 { /* info for Javascript */
  display:none;
}
.l_c01302 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01302 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01302 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01302: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_c01302 {
    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_c01302.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01302.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_c01302 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01302{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01302;src:url('chunks/assets/font_fabf4b590f7fb32aea93ffb2.woff2')format("woff");}.ff1_c01302{font-family:ff1_c01302;line-height:1.000000;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;}
.m84_c01302{transform:matrix(0.126011,0.003528,-0.006997,0.249902,0,0);-ms-transform:matrix(0.126011,0.003528,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.126011,0.003528,-0.006997,0.249902,0,0);}
.m0_c01302{transform:matrix(0.133795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133795,0.000000,0.000000,0.250000,0,0);}
.m2_c01302{transform:matrix(0.143280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143280,0.000000,0.000000,0.250000,0,0);}
.m12e_c01302{transform:matrix(0.153865,0.004462,-0.007247,0.249895,0,0);-ms-transform:matrix(0.153865,0.004462,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.153865,0.004462,-0.007247,0.249895,0,0);}
.m131_c01302{transform:matrix(0.154865,0.004491,-0.007247,0.249895,0,0);-ms-transform:matrix(0.154865,0.004491,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.154865,0.004491,-0.007247,0.249895,0,0);}
.m12c_c01302{transform:matrix(0.158154,0.004586,-0.007247,0.249895,0,0);-ms-transform:matrix(0.158154,0.004586,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.158154,0.004586,-0.007247,0.249895,0,0);}
.m12b_c01302{transform:matrix(0.161552,0.004685,-0.007247,0.249895,0,0);-ms-transform:matrix(0.161552,0.004685,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.161552,0.004685,-0.007247,0.249895,0,0);}
.m130_c01302{transform:matrix(0.165780,0.004808,-0.007247,0.249895,0,0);-ms-transform:matrix(0.165780,0.004808,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.165780,0.004808,-0.007247,0.249895,0,0);}
.m12d_c01302{transform:matrix(0.171918,0.004986,-0.007247,0.249895,0,0);-ms-transform:matrix(0.171918,0.004986,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.171918,0.004986,-0.007247,0.249895,0,0);}
.m129_c01302{transform:matrix(0.178220,0.005168,-0.007247,0.249895,0,0);-ms-transform:matrix(0.178220,0.005168,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.178220,0.005168,-0.007247,0.249895,0,0);}
.m128_c01302{transform:matrix(0.179160,0.005196,-0.007247,0.249895,0,0);-ms-transform:matrix(0.179160,0.005196,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.179160,0.005196,-0.007247,0.249895,0,0);}
.m12a_c01302{transform:matrix(0.181149,0.005253,-0.007247,0.249895,0,0);-ms-transform:matrix(0.181149,0.005253,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.181149,0.005253,-0.007247,0.249895,0,0);}
.m34_c01302{transform:matrix(0.186802,0.005044,-0.006748,0.249909,0,0);-ms-transform:matrix(0.186802,0.005044,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.186802,0.005044,-0.006748,0.249909,0,0);}
.m11d_c01302{transform:matrix(0.191206,0.006316,-0.008254,0.249864,0,0);-ms-transform:matrix(0.191206,0.006316,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.191206,0.006316,-0.008254,0.249864,0,0);}
.m104_c01302{transform:matrix(0.194959,0.006440,-0.008254,0.249864,0,0);-ms-transform:matrix(0.194959,0.006440,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.194959,0.006440,-0.008254,0.249864,0,0);}
.m31_c01302{transform:matrix(0.197363,0.005329,-0.006748,0.249909,0,0);-ms-transform:matrix(0.197363,0.005329,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.197363,0.005329,-0.006748,0.249909,0,0);}
.m2e_c01302{transform:matrix(0.198518,0.005360,-0.006748,0.249909,0,0);-ms-transform:matrix(0.198518,0.005360,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.198518,0.005360,-0.006748,0.249909,0,0);}
.m11e_c01302{transform:matrix(0.199136,0.006578,-0.008254,0.249864,0,0);-ms-transform:matrix(0.199136,0.006578,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.199136,0.006578,-0.008254,0.249864,0,0);}
.m113_c01302{transform:matrix(0.200606,0.006627,-0.008254,0.249864,0,0);-ms-transform:matrix(0.200606,0.006627,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.200606,0.006627,-0.008254,0.249864,0,0);}
.m118_c01302{transform:matrix(0.202555,0.006691,-0.008254,0.249864,0,0);-ms-transform:matrix(0.202555,0.006691,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.202555,0.006691,-0.008254,0.249864,0,0);}
.m106_c01302{transform:matrix(0.203414,0.006719,-0.008254,0.249864,0,0);-ms-transform:matrix(0.203414,0.006719,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.203414,0.006719,-0.008254,0.249864,0,0);}
.m124_c01302{transform:matrix(0.203744,0.006730,-0.008254,0.249864,0,0);-ms-transform:matrix(0.203744,0.006730,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.203744,0.006730,-0.008254,0.249864,0,0);}
.m38_c01302{transform:matrix(0.205050,0.005536,-0.006748,0.249909,0,0);-ms-transform:matrix(0.205050,0.005536,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.205050,0.005536,-0.006748,0.249909,0,0);}
.m53_c01302{transform:matrix(0.206829,0.005791,-0.006997,0.249902,0,0);-ms-transform:matrix(0.206829,0.005791,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.206829,0.005791,-0.006997,0.249902,0,0);}
.m93_c01302{transform:matrix(0.207019,0.005797,-0.006997,0.249902,0,0);-ms-transform:matrix(0.207019,0.005797,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.207019,0.005797,-0.006997,0.249902,0,0);}
.mff_c01302{transform:matrix(0.208067,0.006873,-0.008254,0.249864,0,0);-ms-transform:matrix(0.208067,0.006873,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.208067,0.006873,-0.008254,0.249864,0,0);}
.m102_c01302{transform:matrix(0.209431,0.006918,-0.008254,0.249864,0,0);-ms-transform:matrix(0.209431,0.006918,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.209431,0.006918,-0.008254,0.249864,0,0);}
.m120_c01302{transform:matrix(0.209776,0.006930,-0.008254,0.249864,0,0);-ms-transform:matrix(0.209776,0.006930,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.209776,0.006930,-0.008254,0.249864,0,0);}
.m49_c01302{transform:matrix(0.209824,0.005665,-0.006748,0.249909,0,0);-ms-transform:matrix(0.209824,0.005665,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.209824,0.005665,-0.006748,0.249909,0,0);}
.m21_c01302{transform:matrix(0.210653,0.005688,-0.006748,0.249909,0,0);-ms-transform:matrix(0.210653,0.005688,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.210653,0.005688,-0.006748,0.249909,0,0);}
.mb3_c01302{transform:matrix(0.212312,0.005945,-0.006997,0.249902,0,0);-ms-transform:matrix(0.212312,0.005945,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.212312,0.005945,-0.006997,0.249902,0,0);}
.m45_c01302{transform:matrix(0.212423,0.005735,-0.006748,0.249909,0,0);-ms-transform:matrix(0.212423,0.005735,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.212423,0.005735,-0.006748,0.249909,0,0);}
.me1_c01302{transform:matrix(0.213441,0.005976,-0.006997,0.249902,0,0);-ms-transform:matrix(0.213441,0.005976,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.213441,0.005976,-0.006997,0.249902,0,0);}
.mef_c01302{transform:matrix(0.213721,0.005984,-0.006997,0.249902,0,0);-ms-transform:matrix(0.213721,0.005984,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.213721,0.005984,-0.006997,0.249902,0,0);}
.m33_c01302{transform:matrix(0.213762,0.005772,-0.006748,0.249909,0,0);-ms-transform:matrix(0.213762,0.005772,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.213762,0.005772,-0.006748,0.249909,0,0);}
.m11b_c01302{transform:matrix(0.214373,0.007081,-0.008254,0.249864,0,0);-ms-transform:matrix(0.214373,0.007081,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.214373,0.007081,-0.008254,0.249864,0,0);}
.me0_c01302{transform:matrix(0.214601,0.006009,-0.006997,0.249902,0,0);-ms-transform:matrix(0.214601,0.006009,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.214601,0.006009,-0.006997,0.249902,0,0);}
.m91_c01302{transform:matrix(0.214626,0.006010,-0.006997,0.249902,0,0);-ms-transform:matrix(0.214626,0.006010,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.214626,0.006010,-0.006997,0.249902,0,0);}
.m127_c01302{transform:matrix(0.214633,0.007090,-0.008254,0.249864,0,0);-ms-transform:matrix(0.214633,0.007090,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.214633,0.007090,-0.008254,0.249864,0,0);}
.m1b_c01302{transform:matrix(0.216711,0.005851,-0.006748,0.249909,0,0);-ms-transform:matrix(0.216711,0.005851,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.216711,0.005851,-0.006748,0.249909,0,0);}
.mb4_c01302{transform:matrix(0.217930,0.006102,-0.006997,0.249902,0,0);-ms-transform:matrix(0.217930,0.006102,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.217930,0.006102,-0.006997,0.249902,0,0);}
.mc0_c01302{transform:matrix(0.218005,0.006104,-0.006997,0.249902,0,0);-ms-transform:matrix(0.218005,0.006104,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.218005,0.006104,-0.006997,0.249902,0,0);}
.mcb_c01302{transform:matrix(0.218709,0.006124,-0.006997,0.249902,0,0);-ms-transform:matrix(0.218709,0.006124,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.218709,0.006124,-0.006997,0.249902,0,0);}
.mc3_c01302{transform:matrix(0.219074,0.006134,-0.006997,0.249902,0,0);-ms-transform:matrix(0.219074,0.006134,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.219074,0.006134,-0.006997,0.249902,0,0);}
.mda_c01302{transform:matrix(0.221323,0.006197,-0.006997,0.249902,0,0);-ms-transform:matrix(0.221323,0.006197,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.221323,0.006197,-0.006997,0.249902,0,0);}
.m5d_c01302{transform:matrix(0.221328,0.006197,-0.006997,0.249902,0,0);-ms-transform:matrix(0.221328,0.006197,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.221328,0.006197,-0.006997,0.249902,0,0);}
.mca_c01302{transform:matrix(0.221368,0.006198,-0.006997,0.249902,0,0);-ms-transform:matrix(0.221368,0.006198,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.221368,0.006198,-0.006997,0.249902,0,0);}
.m30_c01302{transform:matrix(0.221659,0.005985,-0.006748,0.249909,0,0);-ms-transform:matrix(0.221659,0.005985,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.221659,0.005985,-0.006748,0.249909,0,0);}
.m122_c01302{transform:matrix(0.221799,0.007327,-0.008254,0.249864,0,0);-ms-transform:matrix(0.221799,0.007327,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.221799,0.007327,-0.008254,0.249864,0,0);}
.m1d_c01302{transform:matrix(0.222764,0.006015,-0.006748,0.249909,0,0);-ms-transform:matrix(0.222764,0.006015,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.222764,0.006015,-0.006748,0.249909,0,0);}
.m126_c01302{transform:matrix(0.223108,0.007370,-0.008254,0.249864,0,0);-ms-transform:matrix(0.223108,0.007370,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.223108,0.007370,-0.008254,0.249864,0,0);}
.m4e_c01302{transform:matrix(0.223524,0.006035,-0.006748,0.249909,0,0);-ms-transform:matrix(0.223524,0.006035,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.223524,0.006035,-0.006748,0.249909,0,0);}
.m42_c01302{transform:matrix(0.223594,0.006037,-0.006748,0.249909,0,0);-ms-transform:matrix(0.223594,0.006037,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.223594,0.006037,-0.006748,0.249909,0,0);}
.mde_c01302{transform:matrix(0.224222,0.006278,-0.006997,0.249902,0,0);-ms-transform:matrix(0.224222,0.006278,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.224222,0.006278,-0.006997,0.249902,0,0);}
.m125_c01302{transform:matrix(0.224308,0.007410,-0.008254,0.249864,0,0);-ms-transform:matrix(0.224308,0.007410,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.224308,0.007410,-0.008254,0.249864,0,0);}
.mdb_c01302{transform:matrix(0.224702,0.006292,-0.006997,0.249902,0,0);-ms-transform:matrix(0.224702,0.006292,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.224702,0.006292,-0.006997,0.249902,0,0);}
.m116_c01302{transform:matrix(0.224717,0.007423,-0.008254,0.249864,0,0);-ms-transform:matrix(0.224717,0.007423,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.224717,0.007423,-0.008254,0.249864,0,0);}
.mdc_c01302{transform:matrix(0.225137,0.006304,-0.006997,0.249902,0,0);-ms-transform:matrix(0.225137,0.006304,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.225137,0.006304,-0.006997,0.249902,0,0);}
.m37_c01302{transform:matrix(0.225613,0.006092,-0.006748,0.249909,0,0);-ms-transform:matrix(0.225613,0.006092,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.225613,0.006092,-0.006748,0.249909,0,0);}
.m22_c01302{transform:matrix(0.225763,0.006096,-0.006748,0.249909,0,0);-ms-transform:matrix(0.225763,0.006096,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.225763,0.006096,-0.006748,0.249909,0,0);}
.m18_c01302{transform:matrix(0.226283,0.006110,-0.006748,0.249909,0,0);-ms-transform:matrix(0.226283,0.006110,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.226283,0.006110,-0.006748,0.249909,0,0);}
.m35_c01302{transform:matrix(0.226412,0.006113,-0.006748,0.249909,0,0);-ms-transform:matrix(0.226412,0.006113,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.226412,0.006113,-0.006748,0.249909,0,0);}
.m2f_c01302{transform:matrix(0.226517,0.006116,-0.006748,0.249909,0,0);-ms-transform:matrix(0.226517,0.006116,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.226517,0.006116,-0.006748,0.249909,0,0);}
.m107_c01302{transform:matrix(0.226771,0.007491,-0.008254,0.249864,0,0);-ms-transform:matrix(0.226771,0.007491,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.226771,0.007491,-0.008254,0.249864,0,0);}
.m7d_c01302{transform:matrix(0.226856,0.006352,-0.006997,0.249902,0,0);-ms-transform:matrix(0.226856,0.006352,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.226856,0.006352,-0.006997,0.249902,0,0);}
.m68_c01302{transform:matrix(0.226916,0.006354,-0.006997,0.249902,0,0);-ms-transform:matrix(0.226916,0.006354,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.226916,0.006354,-0.006997,0.249902,0,0);}
.m11f_c01302{transform:matrix(0.227586,0.007518,-0.008254,0.249864,0,0);-ms-transform:matrix(0.227586,0.007518,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.227586,0.007518,-0.008254,0.249864,0,0);}
.m114_c01302{transform:matrix(0.227776,0.007524,-0.008254,0.249864,0,0);-ms-transform:matrix(0.227776,0.007524,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.227776,0.007524,-0.008254,0.249864,0,0);}
.m6d_c01302{transform:matrix(0.228001,0.006384,-0.006997,0.249902,0,0);-ms-transform:matrix(0.228001,0.006384,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.228001,0.006384,-0.006997,0.249902,0,0);}
.mc8_c01302{transform:matrix(0.228191,0.006389,-0.006997,0.249902,0,0);-ms-transform:matrix(0.228191,0.006389,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.228191,0.006389,-0.006997,0.249902,0,0);}
.mdf_c01302{transform:matrix(0.228635,0.006402,-0.006997,0.249902,0,0);-ms-transform:matrix(0.228635,0.006402,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.228635,0.006402,-0.006997,0.249902,0,0);}
.md1_c01302{transform:matrix(0.228725,0.006404,-0.006997,0.249902,0,0);-ms-transform:matrix(0.228725,0.006404,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.228725,0.006404,-0.006997,0.249902,0,0);}
.m11a_c01302{transform:matrix(0.228885,0.007561,-0.008254,0.249864,0,0);-ms-transform:matrix(0.228885,0.007561,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.228885,0.007561,-0.008254,0.249864,0,0);}
.mcd_c01302{transform:matrix(0.228960,0.006411,-0.006997,0.249902,0,0);-ms-transform:matrix(0.228960,0.006411,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.228960,0.006411,-0.006997,0.249902,0,0);}
.m4b_c01302{transform:matrix(0.229112,0.006186,-0.006748,0.249909,0,0);-ms-transform:matrix(0.229112,0.006186,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.229112,0.006186,-0.006748,0.249909,0,0);}
.m10d_c01302{transform:matrix(0.229400,0.007578,-0.008254,0.249864,0,0);-ms-transform:matrix(0.229400,0.007578,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.229400,0.007578,-0.008254,0.249864,0,0);}
.m76_c01302{transform:matrix(0.229435,0.006424,-0.006997,0.249902,0,0);-ms-transform:matrix(0.229435,0.006424,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.229435,0.006424,-0.006997,0.249902,0,0);}
.ma5_c01302{transform:matrix(0.230195,0.006445,-0.006997,0.249902,0,0);-ms-transform:matrix(0.230195,0.006445,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.230195,0.006445,-0.006997,0.249902,0,0);}
.m3e_c01302{transform:matrix(0.230201,0.006215,-0.006748,0.249909,0,0);-ms-transform:matrix(0.230201,0.006215,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.230201,0.006215,-0.006748,0.249909,0,0);}
.m11_c01302{transform:matrix(0.230406,0.006221,-0.006748,0.249909,0,0);-ms-transform:matrix(0.230406,0.006221,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.230406,0.006221,-0.006748,0.249909,0,0);}
.m51_c01302{transform:matrix(0.230805,0.006463,-0.006997,0.249902,0,0);-ms-transform:matrix(0.230805,0.006463,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.230805,0.006463,-0.006997,0.249902,0,0);}
.me6_c01302{transform:matrix(0.231344,0.006478,-0.006997,0.249902,0,0);-ms-transform:matrix(0.231344,0.006478,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.231344,0.006478,-0.006997,0.249902,0,0);}
.m6c_c01302{transform:matrix(0.231439,0.006480,-0.006997,0.249902,0,0);-ms-transform:matrix(0.231439,0.006480,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.231439,0.006480,-0.006997,0.249902,0,0);}
.mfa_c01302{transform:matrix(0.231499,0.007647,-0.008254,0.249864,0,0);-ms-transform:matrix(0.231499,0.007647,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.231499,0.007647,-0.008254,0.249864,0,0);}
.me8_c01302{transform:matrix(0.231534,0.006483,-0.006997,0.249902,0,0);-ms-transform:matrix(0.231534,0.006483,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.231534,0.006483,-0.006997,0.249902,0,0);}
.mf3_c01302{transform:matrix(0.232404,0.006507,-0.006997,0.249902,0,0);-ms-transform:matrix(0.232404,0.006507,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.232404,0.006507,-0.006997,0.249902,0,0);}
.m7e_c01302{transform:matrix(0.232894,0.006521,-0.006997,0.249902,0,0);-ms-transform:matrix(0.232894,0.006521,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.232894,0.006521,-0.006997,0.249902,0,0);}
.m36_c01302{transform:matrix(0.233005,0.006291,-0.006748,0.249909,0,0);-ms-transform:matrix(0.233005,0.006291,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.233005,0.006291,-0.006748,0.249909,0,0);}
.m11c_c01302{transform:matrix(0.233113,0.007700,-0.008254,0.249864,0,0);-ms-transform:matrix(0.233113,0.007700,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.233113,0.007700,-0.008254,0.249864,0,0);}
.mea_c01302{transform:matrix(0.233149,0.006528,-0.006997,0.249902,0,0);-ms-transform:matrix(0.233149,0.006528,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.233149,0.006528,-0.006997,0.249902,0,0);}
.m117_c01302{transform:matrix(0.233298,0.007707,-0.008254,0.249864,0,0);-ms-transform:matrix(0.233298,0.007707,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.233298,0.007707,-0.008254,0.249864,0,0);}
.m32_c01302{transform:matrix(0.233445,0.006303,-0.006748,0.249909,0,0);-ms-transform:matrix(0.233445,0.006303,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.233445,0.006303,-0.006748,0.249909,0,0);}
.m123_c01302{transform:matrix(0.233548,0.007715,-0.008254,0.249864,0,0);-ms-transform:matrix(0.233548,0.007715,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.233548,0.007715,-0.008254,0.249864,0,0);}
.m87_c01302{transform:matrix(0.233708,0.006544,-0.006997,0.249902,0,0);-ms-transform:matrix(0.233708,0.006544,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.233708,0.006544,-0.006997,0.249902,0,0);}
.md9_c01302{transform:matrix(0.234083,0.006554,-0.006997,0.249902,0,0);-ms-transform:matrix(0.234083,0.006554,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.234083,0.006554,-0.006997,0.249902,0,0);}
.m97_c01302{transform:matrix(0.234213,0.006558,-0.006997,0.249902,0,0);-ms-transform:matrix(0.234213,0.006558,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.234213,0.006558,-0.006997,0.249902,0,0);}
.mbd_c01302{transform:matrix(0.234268,0.006560,-0.006997,0.249902,0,0);-ms-transform:matrix(0.234268,0.006560,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.234268,0.006560,-0.006997,0.249902,0,0);}
.ma1_c01302{transform:matrix(0.234443,0.006564,-0.006997,0.249902,0,0);-ms-transform:matrix(0.234443,0.006564,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.234443,0.006564,-0.006997,0.249902,0,0);}
.m121_c01302{transform:matrix(0.234752,0.007755,-0.008254,0.249864,0,0);-ms-transform:matrix(0.234752,0.007755,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.234752,0.007755,-0.008254,0.249864,0,0);}
.m57_c01302{transform:matrix(0.234763,0.006573,-0.006997,0.249902,0,0);-ms-transform:matrix(0.234763,0.006573,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.234763,0.006573,-0.006997,0.249902,0,0);}
.m64_c01302{transform:matrix(0.234843,0.006576,-0.006997,0.249902,0,0);-ms-transform:matrix(0.234843,0.006576,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.234843,0.006576,-0.006997,0.249902,0,0);}
.m8f_c01302{transform:matrix(0.235758,0.006601,-0.006997,0.249902,0,0);-ms-transform:matrix(0.235758,0.006601,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.235758,0.006601,-0.006997,0.249902,0,0);}
.m115_c01302{transform:matrix(0.235761,0.007788,-0.008254,0.249864,0,0);-ms-transform:matrix(0.235761,0.007788,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.235761,0.007788,-0.008254,0.249864,0,0);}
.m112_c01302{transform:matrix(0.235786,0.007789,-0.008254,0.249864,0,0);-ms-transform:matrix(0.235786,0.007789,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.235786,0.007789,-0.008254,0.249864,0,0);}
.m40_c01302{transform:matrix(0.235794,0.006366,-0.006748,0.249909,0,0);-ms-transform:matrix(0.235794,0.006366,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.235794,0.006366,-0.006748,0.249909,0,0);}
.mcc_c01302{transform:matrix(0.236222,0.006614,-0.006997,0.249902,0,0);-ms-transform:matrix(0.236222,0.006614,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.236222,0.006614,-0.006997,0.249902,0,0);}
.m119_c01302{transform:matrix(0.237056,0.007831,-0.008254,0.249864,0,0);-ms-transform:matrix(0.237056,0.007831,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.237056,0.007831,-0.008254,0.249864,0,0);}
.m60_c01302{transform:matrix(0.237882,0.006661,-0.006997,0.249902,0,0);-ms-transform:matrix(0.237882,0.006661,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.237882,0.006661,-0.006997,0.249902,0,0);}
.mf6_c01302{transform:matrix(0.239165,0.007900,-0.008254,0.249864,0,0);-ms-transform:matrix(0.239165,0.007900,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.239165,0.007900,-0.008254,0.249864,0,0);}
.mdd_c01302{transform:matrix(0.239196,0.006697,-0.006997,0.249902,0,0);-ms-transform:matrix(0.239196,0.006697,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.239196,0.006697,-0.006997,0.249902,0,0);}
.m14_c01302{transform:matrix(0.239208,0.006459,-0.006748,0.249909,0,0);-ms-transform:matrix(0.239208,0.006459,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.239208,0.006459,-0.006748,0.249909,0,0);}
.mcf_c01302{transform:matrix(0.239216,0.006698,-0.006997,0.249902,0,0);-ms-transform:matrix(0.239216,0.006698,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.239216,0.006698,-0.006997,0.249902,0,0);}
.mfe_c01302{transform:matrix(0.239309,0.007905,-0.008254,0.249864,0,0);-ms-transform:matrix(0.239309,0.007905,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.239309,0.007905,-0.008254,0.249864,0,0);}
.m1c_c01302{transform:matrix(0.239583,0.006469,-0.006748,0.249909,0,0);-ms-transform:matrix(0.239583,0.006469,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.239583,0.006469,-0.006748,0.249909,0,0);}
.m79_c01302{transform:matrix(0.240011,0.006720,-0.006997,0.249902,0,0);-ms-transform:matrix(0.240011,0.006720,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.240011,0.006720,-0.006997,0.249902,0,0);}
.m89_c01302{transform:matrix(0.240201,0.006726,-0.006997,0.249902,0,0);-ms-transform:matrix(0.240201,0.006726,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.240201,0.006726,-0.006997,0.249902,0,0);}
.m4d_c01302{transform:matrix(0.240547,0.006495,-0.006748,0.249909,0,0);-ms-transform:matrix(0.240547,0.006495,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.240547,0.006495,-0.006748,0.249909,0,0);}
.m62_c01302{transform:matrix(0.240636,0.006738,-0.006997,0.249902,0,0);-ms-transform:matrix(0.240636,0.006738,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.240636,0.006738,-0.006997,0.249902,0,0);}
.md6_c01302{transform:matrix(0.240936,0.006746,-0.006997,0.249902,0,0);-ms-transform:matrix(0.240936,0.006746,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.240936,0.006746,-0.006997,0.249902,0,0);}
.ma7_c01302{transform:matrix(0.241685,0.006767,-0.006997,0.249902,0,0);-ms-transform:matrix(0.241685,0.006767,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.241685,0.006767,-0.006997,0.249902,0,0);}
.m1e_c01302{transform:matrix(0.241707,0.006526,-0.006748,0.249909,0,0);-ms-transform:matrix(0.241707,0.006526,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.241707,0.006526,-0.006748,0.249909,0,0);}
.m95_c01302{transform:matrix(0.241900,0.006773,-0.006997,0.249902,0,0);-ms-transform:matrix(0.241900,0.006773,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.241900,0.006773,-0.006997,0.249902,0,0);}
.m2a_c01302{transform:matrix(0.241932,0.006532,-0.006748,0.249909,0,0);-ms-transform:matrix(0.241932,0.006532,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.241932,0.006532,-0.006748,0.249909,0,0);}
.m1a_c01302{transform:matrix(0.242287,0.006542,-0.006748,0.249909,0,0);-ms-transform:matrix(0.242287,0.006542,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.242287,0.006542,-0.006748,0.249909,0,0);}
.m28_c01302{transform:matrix(0.242457,0.006546,-0.006748,0.249909,0,0);-ms-transform:matrix(0.242457,0.006546,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.242457,0.006546,-0.006748,0.249909,0,0);}
.me2_c01302{transform:matrix(0.242615,0.006793,-0.006997,0.249902,0,0);-ms-transform:matrix(0.242615,0.006793,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.242615,0.006793,-0.006997,0.249902,0,0);}
.mc5_c01302{transform:matrix(0.242775,0.006798,-0.006997,0.249902,0,0);-ms-transform:matrix(0.242775,0.006798,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.242775,0.006798,-0.006997,0.249902,0,0);}
.m39_c01302{transform:matrix(0.242881,0.006558,-0.006748,0.249909,0,0);-ms-transform:matrix(0.242881,0.006558,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.242881,0.006558,-0.006748,0.249909,0,0);}
.m54_c01302{transform:matrix(0.243025,0.006805,-0.006997,0.249902,0,0);-ms-transform:matrix(0.243025,0.006805,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.243025,0.006805,-0.006997,0.249902,0,0);}
.m19_c01302{transform:matrix(0.243111,0.006564,-0.006748,0.249909,0,0);-ms-transform:matrix(0.243111,0.006564,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.243111,0.006564,-0.006748,0.249909,0,0);}
.ma6_c01302{transform:matrix(0.243400,0.006815,-0.006997,0.249902,0,0);-ms-transform:matrix(0.243400,0.006815,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.243400,0.006815,-0.006997,0.249902,0,0);}
.mc6_c01302{transform:matrix(0.243420,0.006816,-0.006997,0.249902,0,0);-ms-transform:matrix(0.243420,0.006816,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.243420,0.006816,-0.006997,0.249902,0,0);}
.m26_c01302{transform:matrix(0.243451,0.006573,-0.006748,0.249909,0,0);-ms-transform:matrix(0.243451,0.006573,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.243451,0.006573,-0.006748,0.249909,0,0);}
.m56_c01302{transform:matrix(0.243655,0.006822,-0.006997,0.249902,0,0);-ms-transform:matrix(0.243655,0.006822,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.243655,0.006822,-0.006997,0.249902,0,0);}
.m3b_c01302{transform:matrix(0.243751,0.006581,-0.006748,0.249909,0,0);-ms-transform:matrix(0.243751,0.006581,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.243751,0.006581,-0.006748,0.249909,0,0);}
.mb7_c01302{transform:matrix(0.243999,0.006832,-0.006997,0.249902,0,0);-ms-transform:matrix(0.243999,0.006832,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.243999,0.006832,-0.006997,0.249902,0,0);}
.mb2_c01302{transform:matrix(0.244374,0.006842,-0.006997,0.249902,0,0);-ms-transform:matrix(0.244374,0.006842,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.244374,0.006842,-0.006997,0.249902,0,0);}
.m59_c01302{transform:matrix(0.244764,0.006853,-0.006997,0.249902,0,0);-ms-transform:matrix(0.244764,0.006853,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.244764,0.006853,-0.006997,0.249902,0,0);}
.mee_c01302{transform:matrix(0.244814,0.006855,-0.006997,0.249902,0,0);-ms-transform:matrix(0.244814,0.006855,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.244814,0.006855,-0.006997,0.249902,0,0);}
.mf0_c01302{transform:matrix(0.245054,0.006862,-0.006997,0.249902,0,0);-ms-transform:matrix(0.245054,0.006862,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.245054,0.006862,-0.006997,0.249902,0,0);}
.mc2_c01302{transform:matrix(0.245119,0.006863,-0.006997,0.249902,0,0);-ms-transform:matrix(0.245119,0.006863,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.245119,0.006863,-0.006997,0.249902,0,0);}
.m12_c01302{transform:matrix(0.245586,0.006631,-0.006748,0.249909,0,0);-ms-transform:matrix(0.245586,0.006631,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.245586,0.006631,-0.006748,0.249909,0,0);}
.mb6_c01302{transform:matrix(0.245629,0.006878,-0.006997,0.249902,0,0);-ms-transform:matrix(0.245629,0.006878,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.245629,0.006878,-0.006997,0.249902,0,0);}
.mf2_c01302{transform:matrix(0.246533,0.006903,-0.006997,0.249902,0,0);-ms-transform:matrix(0.246533,0.006903,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.246533,0.006903,-0.006997,0.249902,0,0);}
.m3a_c01302{transform:matrix(0.246640,0.006659,-0.006748,0.249909,0,0);-ms-transform:matrix(0.246640,0.006659,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.246640,0.006659,-0.006748,0.249909,0,0);}
.mb0_c01302{transform:matrix(0.246843,0.006912,-0.006997,0.249902,0,0);-ms-transform:matrix(0.246843,0.006912,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.246843,0.006912,-0.006997,0.249902,0,0);}
.m8d_c01302{transform:matrix(0.247303,0.006924,-0.006997,0.249902,0,0);-ms-transform:matrix(0.247303,0.006924,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.247303,0.006924,-0.006997,0.249902,0,0);}
.m100_c01302{transform:matrix(0.247325,0.008170,-0.008254,0.249864,0,0);-ms-transform:matrix(0.247325,0.008170,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.247325,0.008170,-0.008254,0.249864,0,0);}
.m67_c01302{transform:matrix(0.247518,0.006931,-0.006997,0.249902,0,0);-ms-transform:matrix(0.247518,0.006931,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.247518,0.006931,-0.006997,0.249902,0,0);}
.m71_c01302{transform:matrix(0.247628,0.006934,-0.006997,0.249902,0,0);-ms-transform:matrix(0.247628,0.006934,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.247628,0.006934,-0.006997,0.249902,0,0);}
.m105_c01302{transform:matrix(0.247690,0.008182,-0.008254,0.249864,0,0);-ms-transform:matrix(0.247690,0.008182,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.247690,0.008182,-0.008254,0.249864,0,0);}
.m4f_c01302{transform:matrix(0.247718,0.006936,-0.006997,0.249902,0,0);-ms-transform:matrix(0.247718,0.006936,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.247718,0.006936,-0.006997,0.249902,0,0);}
.me_c01302{transform:matrix(0.247725,0.006689,-0.006748,0.249909,0,0);-ms-transform:matrix(0.247725,0.006689,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.247725,0.006689,-0.006748,0.249909,0,0);}
.m81_c01302{transform:matrix(0.247883,0.006941,-0.006997,0.249902,0,0);-ms-transform:matrix(0.247883,0.006941,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.247883,0.006941,-0.006997,0.249902,0,0);}
.mf7_c01302{transform:matrix(0.248789,0.008218,-0.008254,0.249864,0,0);-ms-transform:matrix(0.248789,0.008218,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.248789,0.008218,-0.008254,0.249864,0,0);}
.m9e_c01302{transform:matrix(0.248852,0.006968,-0.006997,0.249902,0,0);-ms-transform:matrix(0.248852,0.006968,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.248852,0.006968,-0.006997,0.249902,0,0);}
.m10_c01302{transform:matrix(0.249389,0.006734,-0.006748,0.249909,0,0);-ms-transform:matrix(0.249389,0.006734,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.249389,0.006734,-0.006748,0.249909,0,0);}
.m101_c01302{transform:matrix(0.250199,0.008265,-0.008254,0.249864,0,0);-ms-transform:matrix(0.250199,0.008265,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.250199,0.008265,-0.008254,0.249864,0,0);}
.m77_c01302{transform:matrix(0.250327,0.007009,-0.006997,0.249902,0,0);-ms-transform:matrix(0.250327,0.007009,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.250327,0.007009,-0.006997,0.249902,0,0);}
.m103_c01302{transform:matrix(0.250333,0.008269,-0.008254,0.249864,0,0);-ms-transform:matrix(0.250333,0.008269,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.250333,0.008269,-0.008254,0.249864,0,0);}
.mc1_c01302{transform:matrix(0.250372,0.007010,-0.006997,0.249902,0,0);-ms-transform:matrix(0.250372,0.007010,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.250372,0.007010,-0.006997,0.249902,0,0);}
.mbf_c01302{transform:matrix(0.250592,0.007017,-0.006997,0.249902,0,0);-ms-transform:matrix(0.250592,0.007017,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.250592,0.007017,-0.006997,0.249902,0,0);}
.mc7_c01302{transform:matrix(0.250687,0.007019,-0.006997,0.249902,0,0);-ms-transform:matrix(0.250687,0.007019,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.250687,0.007019,-0.006997,0.249902,0,0);}
.mae_c01302{transform:matrix(0.250822,0.007023,-0.006997,0.249902,0,0);-ms-transform:matrix(0.250822,0.007023,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.250822,0.007023,-0.006997,0.249902,0,0);}
.ma9_c01302{transform:matrix(0.250852,0.007024,-0.006997,0.249902,0,0);-ms-transform:matrix(0.250852,0.007024,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.250852,0.007024,-0.006997,0.249902,0,0);}
.md2_c01302{transform:matrix(0.250912,0.007026,-0.006997,0.249902,0,0);-ms-transform:matrix(0.250912,0.007026,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.250912,0.007026,-0.006997,0.249902,0,0);}
.m10a_c01302{transform:matrix(0.250923,0.008289,-0.008254,0.249864,0,0);-ms-transform:matrix(0.250923,0.008289,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.250923,0.008289,-0.008254,0.249864,0,0);}
.m29_c01302{transform:matrix(0.251663,0.006795,-0.006748,0.249909,0,0);-ms-transform:matrix(0.251663,0.006795,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.251663,0.006795,-0.006748,0.249909,0,0);}
.m74_c01302{transform:matrix(0.251796,0.007050,-0.006997,0.249902,0,0);-ms-transform:matrix(0.251796,0.007050,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.251796,0.007050,-0.006997,0.249902,0,0);}
.m17_c01302{transform:matrix(0.251863,0.006800,-0.006748,0.249909,0,0);-ms-transform:matrix(0.251863,0.006800,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.251863,0.006800,-0.006748,0.249909,0,0);}
.m9a_c01302{transform:matrix(0.251906,0.007053,-0.006997,0.249902,0,0);-ms-transform:matrix(0.251906,0.007053,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.251906,0.007053,-0.006997,0.249902,0,0);}
.m63_c01302{transform:matrix(0.252451,0.007069,-0.006997,0.249902,0,0);-ms-transform:matrix(0.252451,0.007069,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.252451,0.007069,-0.006997,0.249902,0,0);}
.m7b_c01302{transform:matrix(0.252491,0.007070,-0.006997,0.249902,0,0);-ms-transform:matrix(0.252491,0.007070,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.252491,0.007070,-0.006997,0.249902,0,0);}
.m9b_c01302{transform:matrix(0.252531,0.007071,-0.006997,0.249902,0,0);-ms-transform:matrix(0.252531,0.007071,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.252531,0.007071,-0.006997,0.249902,0,0);}
.mbb_c01302{transform:matrix(0.252781,0.007078,-0.006997,0.249902,0,0);-ms-transform:matrix(0.252781,0.007078,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.252781,0.007078,-0.006997,0.249902,0,0);}
.m24_c01302{transform:matrix(0.252788,0.006825,-0.006748,0.249909,0,0);-ms-transform:matrix(0.252788,0.006825,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.252788,0.006825,-0.006748,0.249909,0,0);}
.m6b_c01302{transform:matrix(0.253261,0.007091,-0.006997,0.249902,0,0);-ms-transform:matrix(0.253261,0.007091,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.253261,0.007091,-0.006997,0.249902,0,0);}
.md_c01302{transform:matrix(0.253298,0.006839,-0.006748,0.249909,0,0);-ms-transform:matrix(0.253298,0.006839,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.253298,0.006839,-0.006748,0.249909,0,0);}
.m1f_c01302{transform:matrix(0.253618,0.006848,-0.006748,0.249909,0,0);-ms-transform:matrix(0.253618,0.006848,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.253618,0.006848,-0.006748,0.249909,0,0);}
.m8b_c01302{transform:matrix(0.253771,0.007106,-0.006997,0.249902,0,0);-ms-transform:matrix(0.253771,0.007106,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.253771,0.007106,-0.006997,0.249902,0,0);}
.m8_c01302{transform:matrix(0.254499,0.006617,-0.006498,0.249916,0,0);-ms-transform:matrix(0.254499,0.006617,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.254499,0.006617,-0.006498,0.249916,0,0);}
.mf4_c01302{transform:matrix(0.254620,0.007129,-0.006997,0.249902,0,0);-ms-transform:matrix(0.254620,0.007129,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.254620,0.007129,-0.006997,0.249902,0,0);}
.m82_c01302{transform:matrix(0.255110,0.007143,-0.006997,0.249902,0,0);-ms-transform:matrix(0.255110,0.007143,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.255110,0.007143,-0.006997,0.249902,0,0);}
.maa_c01302{transform:matrix(0.255245,0.007147,-0.006997,0.249902,0,0);-ms-transform:matrix(0.255245,0.007147,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.255245,0.007147,-0.006997,0.249902,0,0);}
.md4_c01302{transform:matrix(0.255340,0.007150,-0.006997,0.249902,0,0);-ms-transform:matrix(0.255340,0.007150,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.255340,0.007150,-0.006997,0.249902,0,0);}
.me7_c01302{transform:matrix(0.255400,0.007151,-0.006997,0.249902,0,0);-ms-transform:matrix(0.255400,0.007151,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.255400,0.007151,-0.006997,0.249902,0,0);}
.m6a_c01302{transform:matrix(0.255645,0.007158,-0.006997,0.249902,0,0);-ms-transform:matrix(0.255645,0.007158,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.255645,0.007158,-0.006997,0.249902,0,0);}
.m15_c01302{transform:matrix(0.255652,0.006903,-0.006748,0.249909,0,0);-ms-transform:matrix(0.255652,0.006903,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.255652,0.006903,-0.006748,0.249909,0,0);}
.m3f_c01302{transform:matrix(0.255702,0.006904,-0.006748,0.249909,0,0);-ms-transform:matrix(0.255702,0.006904,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.255702,0.006904,-0.006748,0.249909,0,0);}
.mc9_c01302{transform:matrix(0.255805,0.007163,-0.006997,0.249902,0,0);-ms-transform:matrix(0.255805,0.007163,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.255805,0.007163,-0.006997,0.249902,0,0);}
.mec_c01302{transform:matrix(0.255960,0.007167,-0.006997,0.249902,0,0);-ms-transform:matrix(0.255960,0.007167,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.255960,0.007167,-0.006997,0.249902,0,0);}
.mce_c01302{transform:matrix(0.256010,0.007168,-0.006997,0.249902,0,0);-ms-transform:matrix(0.256010,0.007168,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.256010,0.007168,-0.006997,0.249902,0,0);}
.me9_c01302{transform:matrix(0.256489,0.007182,-0.006997,0.249902,0,0);-ms-transform:matrix(0.256489,0.007182,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.256489,0.007182,-0.006997,0.249902,0,0);}
.m99_c01302{transform:matrix(0.256834,0.007191,-0.006997,0.249902,0,0);-ms-transform:matrix(0.256834,0.007191,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.256834,0.007191,-0.006997,0.249902,0,0);}
.meb_c01302{transform:matrix(0.256864,0.007192,-0.006997,0.249902,0,0);-ms-transform:matrix(0.256864,0.007192,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.256864,0.007192,-0.006997,0.249902,0,0);}
.m5a_c01302{transform:matrix(0.257009,0.007196,-0.006997,0.249902,0,0);-ms-transform:matrix(0.257009,0.007196,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.257009,0.007196,-0.006997,0.249902,0,0);}
.m108_c01302{transform:matrix(0.257050,0.008491,-0.008254,0.249864,0,0);-ms-transform:matrix(0.257050,0.008491,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.257050,0.008491,-0.008254,0.249864,0,0);}
.md7_c01302{transform:matrix(0.257119,0.007199,-0.006997,0.249902,0,0);-ms-transform:matrix(0.257119,0.007199,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.257119,0.007199,-0.006997,0.249902,0,0);}
.m73_c01302{transform:matrix(0.257549,0.007211,-0.006997,0.249902,0,0);-ms-transform:matrix(0.257549,0.007211,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.257549,0.007211,-0.006997,0.249902,0,0);}
.m10f_c01302{transform:matrix(0.257585,0.008509,-0.008254,0.249864,0,0);-ms-transform:matrix(0.257585,0.008509,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.257585,0.008509,-0.008254,0.249864,0,0);}
.m3d_c01302{transform:matrix(0.257651,0.006957,-0.006748,0.249909,0,0);-ms-transform:matrix(0.257651,0.006957,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.257651,0.006957,-0.006748,0.249909,0,0);}
.m6f_c01302{transform:matrix(0.258424,0.007236,-0.006997,0.249902,0,0);-ms-transform:matrix(0.258424,0.007236,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.258424,0.007236,-0.006997,0.249902,0,0);}
.mc4_c01302{transform:matrix(0.258434,0.007236,-0.006997,0.249902,0,0);-ms-transform:matrix(0.258434,0.007236,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.258434,0.007236,-0.006997,0.249902,0,0);}
.mba_c01302{transform:matrix(0.258654,0.007242,-0.006997,0.249902,0,0);-ms-transform:matrix(0.258654,0.007242,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.258654,0.007242,-0.006997,0.249902,0,0);}
.m7c_c01302{transform:matrix(0.259333,0.007261,-0.006997,0.249902,0,0);-ms-transform:matrix(0.259333,0.007261,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.259333,0.007261,-0.006997,0.249902,0,0);}
.mf1_c01302{transform:matrix(0.259888,0.007277,-0.006997,0.249902,0,0);-ms-transform:matrix(0.259888,0.007277,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.259888,0.007277,-0.006997,0.249902,0,0);}
.m47_c01302{transform:matrix(0.260330,0.007029,-0.006748,0.249909,0,0);-ms-transform:matrix(0.260330,0.007029,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.260330,0.007029,-0.006748,0.249909,0,0);}
.m20_c01302{transform:matrix(0.260460,0.007032,-0.006748,0.249909,0,0);-ms-transform:matrix(0.260460,0.007032,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.260460,0.007032,-0.006748,0.249909,0,0);}
.m72_c01302{transform:matrix(0.260913,0.007306,-0.006997,0.249902,0,0);-ms-transform:matrix(0.260913,0.007306,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.260913,0.007306,-0.006997,0.249902,0,0);}
.ma2_c01302{transform:matrix(0.261263,0.007315,-0.006997,0.249902,0,0);-ms-transform:matrix(0.261263,0.007315,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.261263,0.007315,-0.006997,0.249902,0,0);}
.m27_c01302{transform:matrix(0.261430,0.007059,-0.006748,0.249909,0,0);-ms-transform:matrix(0.261430,0.007059,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.261430,0.007059,-0.006748,0.249909,0,0);}
.m4_c01302{transform:matrix(0.261687,0.006804,-0.006498,0.249916,0,0);-ms-transform:matrix(0.261687,0.006804,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.261687,0.006804,-0.006498,0.249916,0,0);}
.md8_c01302{transform:matrix(0.261897,0.007333,-0.006997,0.249902,0,0);-ms-transform:matrix(0.261897,0.007333,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.261897,0.007333,-0.006997,0.249902,0,0);}
.mf8_c01302{transform:matrix(0.261932,0.008652,-0.008254,0.249864,0,0);-ms-transform:matrix(0.261932,0.008652,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.261932,0.008652,-0.008254,0.249864,0,0);}
.m55_c01302{transform:matrix(0.262472,0.007349,-0.006997,0.249902,0,0);-ms-transform:matrix(0.262472,0.007349,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.262472,0.007349,-0.006997,0.249902,0,0);}
.m88_c01302{transform:matrix(0.263487,0.007378,-0.006997,0.249902,0,0);-ms-transform:matrix(0.263487,0.007378,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.263487,0.007378,-0.006997,0.249902,0,0);}
.mfc_c01302{transform:matrix(0.263666,0.008710,-0.008254,0.249864,0,0);-ms-transform:matrix(0.263666,0.008710,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.263666,0.008710,-0.008254,0.249864,0,0);}
.m25_c01302{transform:matrix(0.263964,0.007127,-0.006748,0.249909,0,0);-ms-transform:matrix(0.263964,0.007127,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.263964,0.007127,-0.006748,0.249909,0,0);}
.ma8_c01302{transform:matrix(0.264496,0.007406,-0.006997,0.249902,0,0);-ms-transform:matrix(0.264496,0.007406,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.264496,0.007406,-0.006997,0.249902,0,0);}
.m1_c01302{transform:matrix(0.264825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264825,0.000000,0.000000,0.250000,0,0);}
.m2b_c01302{transform:matrix(0.264878,0.007152,-0.006748,0.249909,0,0);-ms-transform:matrix(0.264878,0.007152,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.264878,0.007152,-0.006748,0.249909,0,0);}
.m7f_c01302{transform:matrix(0.265536,0.007435,-0.006997,0.249902,0,0);-ms-transform:matrix(0.265536,0.007435,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.265536,0.007435,-0.006997,0.249902,0,0);}
.m3_c01302{transform:matrix(0.265550,0.006904,-0.006498,0.249916,0,0);-ms-transform:matrix(0.265550,0.006904,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.265550,0.006904,-0.006498,0.249916,0,0);}
.m46_c01302{transform:matrix(0.265803,0.007177,-0.006748,0.249909,0,0);-ms-transform:matrix(0.265803,0.007177,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.265803,0.007177,-0.006748,0.249909,0,0);}
.ma0_c01302{transform:matrix(0.266206,0.007454,-0.006997,0.249902,0,0);-ms-transform:matrix(0.266206,0.007454,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.266206,0.007454,-0.006997,0.249902,0,0);}
.m86_c01302{transform:matrix(0.266586,0.007464,-0.006997,0.249902,0,0);-ms-transform:matrix(0.266586,0.007464,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.266586,0.007464,-0.006997,0.249902,0,0);}
.m43_c01302{transform:matrix(0.266763,0.007203,-0.006748,0.249909,0,0);-ms-transform:matrix(0.266763,0.007203,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.266763,0.007203,-0.006748,0.249909,0,0);}
.m9d_c01302{transform:matrix(0.266780,0.007470,-0.006997,0.249902,0,0);-ms-transform:matrix(0.266780,0.007470,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.266780,0.007470,-0.006997,0.249902,0,0);}
.mfd_c01302{transform:matrix(0.266944,0.008818,-0.008254,0.249864,0,0);-ms-transform:matrix(0.266944,0.008818,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.266944,0.008818,-0.008254,0.249864,0,0);}
.m83_c01302{transform:matrix(0.267200,0.007482,-0.006997,0.249902,0,0);-ms-transform:matrix(0.267200,0.007482,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.267200,0.007482,-0.006997,0.249902,0,0);}
.m110_c01302{transform:matrix(0.267254,0.008828,-0.008254,0.249864,0,0);-ms-transform:matrix(0.267254,0.008828,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.267254,0.008828,-0.008254,0.249864,0,0);}
.m5b_c01302{transform:matrix(0.267595,0.007493,-0.006997,0.249902,0,0);-ms-transform:matrix(0.267595,0.007493,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.267595,0.007493,-0.006997,0.249902,0,0);}
.m52_c01302{transform:matrix(0.268275,0.007512,-0.006997,0.249902,0,0);-ms-transform:matrix(0.268275,0.007512,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.268275,0.007512,-0.006997,0.249902,0,0);}
.m5f_c01302{transform:matrix(0.268515,0.007518,-0.006997,0.249902,0,0);-ms-transform:matrix(0.268515,0.007518,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.268515,0.007518,-0.006997,0.249902,0,0);}
.m23_c01302{transform:matrix(0.268617,0.007253,-0.006748,0.249909,0,0);-ms-transform:matrix(0.268617,0.007253,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.268617,0.007253,-0.006748,0.249909,0,0);}
.mfb_c01302{transform:matrix(0.268843,0.008881,-0.008254,0.249864,0,0);-ms-transform:matrix(0.268843,0.008881,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.268843,0.008881,-0.008254,0.249864,0,0);}
.mf5_c01302{transform:matrix(0.269123,0.008890,-0.008254,0.249864,0,0);-ms-transform:matrix(0.269123,0.008890,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.269123,0.008890,-0.008254,0.249864,0,0);}
.m5c_c01302{transform:matrix(0.269294,0.007540,-0.006997,0.249902,0,0);-ms-transform:matrix(0.269294,0.007540,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.269294,0.007540,-0.006997,0.249902,0,0);}
.m111_c01302{transform:matrix(0.269363,0.008898,-0.008254,0.249864,0,0);-ms-transform:matrix(0.269363,0.008898,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.269363,0.008898,-0.008254,0.249864,0,0);}
.m65_c01302{transform:matrix(0.269414,0.007544,-0.006997,0.249902,0,0);-ms-transform:matrix(0.269414,0.007544,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.269414,0.007544,-0.006997,0.249902,0,0);}
.m9f_c01302{transform:matrix(0.269614,0.007549,-0.006997,0.249902,0,0);-ms-transform:matrix(0.269614,0.007549,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.269614,0.007549,-0.006997,0.249902,0,0);}
.m78_c01302{transform:matrix(0.269724,0.007552,-0.006997,0.249902,0,0);-ms-transform:matrix(0.269724,0.007552,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.269724,0.007552,-0.006997,0.249902,0,0);}
.m8a_c01302{transform:matrix(0.269899,0.007557,-0.006997,0.249902,0,0);-ms-transform:matrix(0.269899,0.007557,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.269899,0.007557,-0.006997,0.249902,0,0);}
.med_c01302{transform:matrix(0.270039,0.007561,-0.006997,0.249902,0,0);-ms-transform:matrix(0.270039,0.007561,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.270039,0.007561,-0.006997,0.249902,0,0);}
.m69_c01302{transform:matrix(0.270244,0.007567,-0.006997,0.249902,0,0);-ms-transform:matrix(0.270244,0.007567,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.270244,0.007567,-0.006997,0.249902,0,0);}
.m94_c01302{transform:matrix(0.270339,0.007569,-0.006997,0.249902,0,0);-ms-transform:matrix(0.270339,0.007569,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.270339,0.007569,-0.006997,0.249902,0,0);}
.m80_c01302{transform:matrix(0.270939,0.007586,-0.006997,0.249902,0,0);-ms-transform:matrix(0.270939,0.007586,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.270939,0.007586,-0.006997,0.249902,0,0);}
.m8e_c01302{transform:matrix(0.271214,0.007594,-0.006997,0.249902,0,0);-ms-transform:matrix(0.271214,0.007594,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.271214,0.007594,-0.006997,0.249902,0,0);}
.m10c_c01302{transform:matrix(0.271682,0.008974,-0.008254,0.249864,0,0);-ms-transform:matrix(0.271682,0.008974,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.271682,0.008974,-0.008254,0.249864,0,0);}
.m13_c01302{transform:matrix(0.271731,0.007337,-0.006748,0.249909,0,0);-ms-transform:matrix(0.271731,0.007337,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.271731,0.007337,-0.006748,0.249909,0,0);}
.mb8_c01302{transform:matrix(0.272253,0.007623,-0.006997,0.249902,0,0);-ms-transform:matrix(0.272253,0.007623,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.272253,0.007623,-0.006997,0.249902,0,0);}
.m50_c01302{transform:matrix(0.272298,0.007624,-0.006997,0.249902,0,0);-ms-transform:matrix(0.272298,0.007624,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.272298,0.007624,-0.006997,0.249902,0,0);}
.m2c_c01302{transform:matrix(0.272541,0.007359,-0.006748,0.249909,0,0);-ms-transform:matrix(0.272541,0.007359,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.272541,0.007359,-0.006748,0.249909,0,0);}
.m5e_c01302{transform:matrix(0.273268,0.007652,-0.006997,0.249902,0,0);-ms-transform:matrix(0.273268,0.007652,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.273268,0.007652,-0.006997,0.249902,0,0);}
.m3c_c01302{transform:matrix(0.273320,0.007380,-0.006748,0.249909,0,0);-ms-transform:matrix(0.273320,0.007380,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.273320,0.007380,-0.006748,0.249909,0,0);}
.m41_c01302{transform:matrix(0.273350,0.007380,-0.006748,0.249909,0,0);-ms-transform:matrix(0.273350,0.007380,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.273350,0.007380,-0.006748,0.249909,0,0);}
.maf_c01302{transform:matrix(0.274068,0.007674,-0.006997,0.249902,0,0);-ms-transform:matrix(0.274068,0.007674,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.274068,0.007674,-0.006997,0.249902,0,0);}
.m70_c01302{transform:matrix(0.274302,0.007680,-0.006997,0.249902,0,0);-ms-transform:matrix(0.274302,0.007680,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.274302,0.007680,-0.006997,0.249902,0,0);}
.m6_c01302{transform:matrix(0.274372,0.007134,-0.006498,0.249916,0,0);-ms-transform:matrix(0.274372,0.007134,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.274372,0.007134,-0.006498,0.249916,0,0);}
.m9c_c01302{transform:matrix(0.274387,0.007683,-0.006997,0.249902,0,0);-ms-transform:matrix(0.274387,0.007683,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.274387,0.007683,-0.006997,0.249902,0,0);}
.m5_c01302{transform:matrix(0.274407,0.007135,-0.006498,0.249916,0,0);-ms-transform:matrix(0.274407,0.007135,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.274407,0.007135,-0.006498,0.249916,0,0);}
.me5_c01302{transform:matrix(0.274957,0.007699,-0.006997,0.249902,0,0);-ms-transform:matrix(0.274957,0.007699,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.274957,0.007699,-0.006997,0.249902,0,0);}
.md5_c01302{transform:matrix(0.275687,0.007719,-0.006997,0.249902,0,0);-ms-transform:matrix(0.275687,0.007719,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.275687,0.007719,-0.006997,0.249902,0,0);}
.me3_c01302{transform:matrix(0.275712,0.007720,-0.006997,0.249902,0,0);-ms-transform:matrix(0.275712,0.007720,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.275712,0.007720,-0.006997,0.249902,0,0);}
.md3_c01302{transform:matrix(0.276252,0.007735,-0.006997,0.249902,0,0);-ms-transform:matrix(0.276252,0.007735,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.276252,0.007735,-0.006997,0.249902,0,0);}
.mb1_c01302{transform:matrix(0.276662,0.007747,-0.006997,0.249902,0,0);-ms-transform:matrix(0.276662,0.007747,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.276662,0.007747,-0.006997,0.249902,0,0);}
.m92_c01302{transform:matrix(0.276792,0.007750,-0.006997,0.249902,0,0);-ms-transform:matrix(0.276792,0.007750,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.276792,0.007750,-0.006997,0.249902,0,0);}
.mf9_c01302{transform:matrix(0.277289,0.009160,-0.008254,0.249864,0,0);-ms-transform:matrix(0.277289,0.009160,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.277289,0.009160,-0.008254,0.249864,0,0);}
.m7_c01302{transform:matrix(0.277576,0.007217,-0.006498,0.249916,0,0);-ms-transform:matrix(0.277576,0.007217,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.277576,0.007217,-0.006498,0.249916,0,0);}
.m4a_c01302{transform:matrix(0.277729,0.007499,-0.006748,0.249909,0,0);-ms-transform:matrix(0.277729,0.007499,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.277729,0.007499,-0.006748,0.249909,0,0);}
.m10e_c01302{transform:matrix(0.277754,0.009175,-0.008254,0.249864,0,0);-ms-transform:matrix(0.277754,0.009175,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.277754,0.009175,-0.008254,0.249864,0,0);}
.mab_c01302{transform:matrix(0.277911,0.007782,-0.006997,0.249902,0,0);-ms-transform:matrix(0.277911,0.007782,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.277911,0.007782,-0.006997,0.249902,0,0);}
.m85_c01302{transform:matrix(0.278176,0.007789,-0.006997,0.249902,0,0);-ms-transform:matrix(0.278176,0.007789,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.278176,0.007789,-0.006997,0.249902,0,0);}
.mb5_c01302{transform:matrix(0.278326,0.007793,-0.006997,0.249902,0,0);-ms-transform:matrix(0.278326,0.007793,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.278326,0.007793,-0.006997,0.249902,0,0);}
.m6e_c01302{transform:matrix(0.278366,0.007794,-0.006997,0.249902,0,0);-ms-transform:matrix(0.278366,0.007794,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.278366,0.007794,-0.006997,0.249902,0,0);}
.m75_c01302{transform:matrix(0.278441,0.007796,-0.006997,0.249902,0,0);-ms-transform:matrix(0.278441,0.007796,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.278441,0.007796,-0.006997,0.249902,0,0);}
.m96_c01302{transform:matrix(0.278541,0.007799,-0.006997,0.249902,0,0);-ms-transform:matrix(0.278541,0.007799,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.278541,0.007799,-0.006997,0.249902,0,0);}
.me4_c01302{transform:matrix(0.278796,0.007806,-0.006997,0.249902,0,0);-ms-transform:matrix(0.278796,0.007806,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.278796,0.007806,-0.006997,0.249902,0,0);}
.m48_c01302{transform:matrix(0.278978,0.007532,-0.006748,0.249909,0,0);-ms-transform:matrix(0.278978,0.007532,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.278978,0.007532,-0.006748,0.249909,0,0);}
.m16_c01302{transform:matrix(0.279233,0.007539,-0.006748,0.249909,0,0);-ms-transform:matrix(0.279233,0.007539,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.279233,0.007539,-0.006748,0.249909,0,0);}
.mf_c01302{transform:matrix(0.279253,0.007540,-0.006748,0.249909,0,0);-ms-transform:matrix(0.279253,0.007540,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.279253,0.007540,-0.006748,0.249909,0,0);}
.m90_c01302{transform:matrix(0.279685,0.007831,-0.006997,0.249902,0,0);-ms-transform:matrix(0.279685,0.007831,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.279685,0.007831,-0.006997,0.249902,0,0);}
.m61_c01302{transform:matrix(0.279745,0.007833,-0.006997,0.249902,0,0);-ms-transform:matrix(0.279745,0.007833,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.279745,0.007833,-0.006997,0.249902,0,0);}
.mbe_c01302{transform:matrix(0.280095,0.007843,-0.006997,0.249902,0,0);-ms-transform:matrix(0.280095,0.007843,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.280095,0.007843,-0.006997,0.249902,0,0);}
.md0_c01302{transform:matrix(0.280365,0.007850,-0.006997,0.249902,0,0);-ms-transform:matrix(0.280365,0.007850,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.280365,0.007850,-0.006997,0.249902,0,0);}
.m58_c01302{transform:matrix(0.281135,0.007872,-0.006997,0.249902,0,0);-ms-transform:matrix(0.281135,0.007872,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.281135,0.007872,-0.006997,0.249902,0,0);}
.mb9_c01302{transform:matrix(0.282494,0.007910,-0.006997,0.249902,0,0);-ms-transform:matrix(0.282494,0.007910,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.282494,0.007910,-0.006997,0.249902,0,0);}
.m7a_c01302{transform:matrix(0.282689,0.007915,-0.006997,0.249902,0,0);-ms-transform:matrix(0.282689,0.007915,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.282689,0.007915,-0.006997,0.249902,0,0);}
.m8c_c01302{transform:matrix(0.283799,0.007946,-0.006997,0.249902,0,0);-ms-transform:matrix(0.283799,0.007946,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.283799,0.007946,-0.006997,0.249902,0,0);}
.m109_c01302{transform:matrix(0.284000,0.009381,-0.008254,0.249864,0,0);-ms-transform:matrix(0.284000,0.009381,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.284000,0.009381,-0.008254,0.249864,0,0);}
.mbc_c01302{transform:matrix(0.284204,0.007958,-0.006997,0.249902,0,0);-ms-transform:matrix(0.284204,0.007958,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.284204,0.007958,-0.006997,0.249902,0,0);}
.ma3_c01302{transform:matrix(0.286343,0.008018,-0.006997,0.249902,0,0);-ms-transform:matrix(0.286343,0.008018,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.286343,0.008018,-0.006997,0.249902,0,0);}
.m10b_c01302{transform:matrix(0.293290,0.009688,-0.008254,0.249864,0,0);-ms-transform:matrix(0.293290,0.009688,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.293290,0.009688,-0.008254,0.249864,0,0);}
.m12f_c01302{transform:matrix(0.300464,0.008713,-0.007247,0.249895,0,0);-ms-transform:matrix(0.300464,0.008713,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.300464,0.008713,-0.007247,0.249895,0,0);}
.m2d_c01302{transform:matrix(0.319544,0.008628,-0.006748,0.249909,0,0);-ms-transform:matrix(0.319544,0.008628,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.319544,0.008628,-0.006748,0.249909,0,0);}
.m44_c01302{transform:matrix(0.320043,0.008641,-0.006748,0.249909,0,0);-ms-transform:matrix(0.320043,0.008641,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.320043,0.008641,-0.006748,0.249909,0,0);}
.m66_c01302{transform:matrix(0.320849,0.008984,-0.006997,0.249902,0,0);-ms-transform:matrix(0.320849,0.008984,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.320849,0.008984,-0.006997,0.249902,0,0);}
.m4c_c01302{transform:matrix(0.321258,0.008674,-0.006748,0.249909,0,0);-ms-transform:matrix(0.321258,0.008674,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.321258,0.008674,-0.006748,0.249909,0,0);}
.m98_c01302{transform:matrix(0.328386,0.009195,-0.006997,0.249902,0,0);-ms-transform:matrix(0.328386,0.009195,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.328386,0.009195,-0.006997,0.249902,0,0);}
.mad_c01302{transform:matrix(0.354391,0.009923,-0.006997,0.249902,0,0);-ms-transform:matrix(0.354391,0.009923,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.354391,0.009923,-0.006997,0.249902,0,0);}
.mac_c01302{transform:matrix(0.361528,0.010123,-0.006997,0.249902,0,0);-ms-transform:matrix(0.361528,0.010123,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.361528,0.010123,-0.006997,0.249902,0,0);}
.ma4_c01302{transform:matrix(0.365822,0.010243,-0.006997,0.249902,0,0);-ms-transform:matrix(0.365822,0.010243,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.365822,0.010243,-0.006997,0.249902,0,0);}
.mb_c01302{transform:matrix(0.984157,0.023620,-0.005998,0.249928,0,0);-ms-transform:matrix(0.984157,0.023620,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.984157,0.023620,-0.005998,0.249928,0,0);}
.mc_c01302{transform:matrix(1.108181,0.026596,-0.005998,0.249928,0,0);-ms-transform:matrix(1.108181,0.026596,-0.005998,0.249928,0,0);-webkit-transform:matrix(1.108181,0.026596,-0.005998,0.249928,0,0);}
.m9_c01302{transform:matrix(1.491291,0.035791,-0.005998,0.249928,0,0);-ms-transform:matrix(1.491291,0.035791,-0.005998,0.249928,0,0);-webkit-transform:matrix(1.491291,0.035791,-0.005998,0.249928,0,0);}
.ma_c01302{transform:matrix(2.210818,0.053060,-0.005998,0.249928,0,0);-ms-transform:matrix(2.210818,0.053060,-0.005998,0.249928,0,0);-webkit-transform:matrix(2.210818,0.053060,-0.005998,0.249928,0,0);}
.v0_c01302{vertical-align:0.000000px;}
.ls0_c01302{letter-spacing:0.000000px;}
.sc__c01302{text-shadow:none;}
.sc0_c01302{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__c01302{-webkit-text-stroke:0px transparent;}
.sc0_c01302{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01302{word-spacing:0.000000px;}
.fc0_c01302{color:transparent;}
.fs2_c01302{font-size:30.008639px;}
.fs9_c01302{font-size:71.967233px;}
.fs1_c01302{font-size:72.024332px;}
.fs3_c01302{font-size:72.026239px;}
.fs6_c01302{font-size:72.028218px;}
.fsa_c01302{font-size:77.964502px;}
.fs4_c01302{font-size:78.028426px;}
.fs7_c01302{font-size:78.030570px;}
.fsb_c01302{font-size:83.961771px;}
.fs5_c01302{font-size:84.030612px;}
.fs8_c01302{font-size:84.032922px;}
.fs0_c01302{font-size:90.000000px;}
.fsc_c01302{font-size:108.045404px;}
.y0_c01302{bottom:0.000000px;}
.y13a_c01302{bottom:67.697724px;}
.y139_c01302{bottom:69.335760px;}
.y138_c01302{bottom:71.263419px;}
.y137_c01302{bottom:72.218288px;}
.y136_c01302{bottom:73.166457px;}
.y135_c01302{bottom:74.482724px;}
.y134_c01302{bottom:75.768105px;}
.y133_c01302{bottom:78.031366px;}
.y132_c01302{bottom:80.267441px;}
.y131_c01302{bottom:81.822000px;}
.y130_c01302{bottom:116.884208px;}
.y12f_c01302{bottom:118.702329px;}
.y12e_c01302{bottom:123.135063px;}
.y12d_c01302{bottom:124.198246px;}
.y12c_c01302{bottom:127.581346px;}
.y12b_c01302{bottom:129.631389px;}
.y12a_c01302{bottom:133.093091px;}
.y129_c01302{bottom:133.784844px;}
.y128_c01302{bottom:136.156745px;}
.y127_c01302{bottom:137.508400px;}
.y126_c01302{bottom:150.335137px;}
.y125_c01302{bottom:152.877336px;}
.y124_c01302{bottom:154.295156px;}
.y123_c01302{bottom:156.433047px;}
.y122_c01302{bottom:159.277956px;}
.y121_c01302{bottom:160.341513px;}
.y120_c01302{bottom:162.494106px;}
.y11f_c01302{bottom:164.231862px;}
.y11e_c01302{bottom:167.740624px;}
.y11d_c01302{bottom:169.866550px;}
.y11c_c01302{bottom:171.243695px;}
.y11b_c01302{bottom:187.787225px;}
.y11a_c01302{bottom:189.905410px;}
.y119_c01302{bottom:192.284875px;}
.y118_c01302{bottom:193.803913px;}
.y117_c01302{bottom:197.108021px;}
.y116_c01302{bottom:197.982960px;}
.y115_c01302{bottom:200.661158px;}
.y114_c01302{bottom:201.578883px;}
.y113_c01302{bottom:202.759026px;}
.y112_c01302{bottom:205.517202px;}
.y111_c01302{bottom:223.989621px;}
.y110_c01302{bottom:225.390822px;}
.y10f_c01302{bottom:226.095450px;}
.y10e_c01302{bottom:228.570491px;}
.y10d_c01302{bottom:229.630879px;}
.y10c_c01302{bottom:232.832328px;}
.y10b_c01302{bottom:233.901083px;}
.y10a_c01302{bottom:236.757179px;}
.y109_c01302{bottom:239.559630px;}
.y108_c01302{bottom:240.603932px;}
.y107_c01302{bottom:243.030228px;}
.y106_c01302{bottom:259.664703px;}
.y105_c01302{bottom:262.204449px;}
.y104_c01302{bottom:265.165094px;}
.y103_c01302{bottom:266.252114px;}
.y102_c01302{bottom:269.539854px;}
.y101_c01302{bottom:271.761365px;}
.y100_c01302{bottom:272.831753px;}
.yff_c01302{bottom:273.945502px;}
.yfe_c01302{bottom:276.495000px;}
.yfd_c01302{bottom:301.235376px;}
.yfc_c01302{bottom:302.356260px;}
.yfb_c01302{bottom:304.280490px;}
.yfa_c01302{bottom:307.338468px;}
.yf9_c01302{bottom:309.013062px;}
.yf8_c01302{bottom:309.823434px;}
.yf7_c01302{bottom:311.718744px;}
.yf6_c01302{bottom:329.237046px;}
.yf5_c01302{bottom:330.463512px;}
.yf4_c01302{bottom:332.235978px;}
.yf3_c01302{bottom:333.153282px;}
.yf2_c01302{bottom:334.904778px;}
.yf1_c01302{bottom:335.838000px;}
.yf0_c01302{bottom:336.728202px;}
.yef_c01302{bottom:337.622688px;}
.yee_c01302{bottom:340.345344px;}
.yed_c01302{bottom:341.198868px;}
.yec_c01302{bottom:344.196540px;}
.yeb_c01302{bottom:346.566456px;}
.yea_c01302{bottom:367.582368px;}
.ye9_c01302{bottom:368.480760px;}
.ye8_c01302{bottom:369.953712px;}
.ye7_c01302{bottom:371.762436px;}
.ye6_c01302{bottom:373.520232px;}
.ye5_c01302{bottom:377.145144px;}
.ye4_c01302{bottom:379.194684px;}
.ye3_c01302{bottom:381.002190px;}
.ye2_c01302{bottom:382.756752px;}
.ye1_c01302{bottom:400.570278px;}
.ye0_c01302{bottom:402.795330px;}
.ydf_c01302{bottom:404.437956px;}
.yde_c01302{bottom:405.714744px;}
.ydd_c01302{bottom:408.944202px;}
.ydc_c01302{bottom:409.576374px;}
.ydb_c01302{bottom:412.446450px;}
.yda_c01302{bottom:413.433972px;}
.yd9_c01302{bottom:414.397104px;}
.yd8_c01302{bottom:418.218594px;}
.yd7_c01302{bottom:419.493408px;}
.yd6_c01302{bottom:437.306334px;}
.yd5_c01302{bottom:438.933642px;}
.yd4_c01302{bottom:440.904822px;}
.yd3_c01302{bottom:441.946794px;}
.yd2_c01302{bottom:442.938096px;}
.yd1_c01302{bottom:446.558958px;}
.yd0_c01302{bottom:447.244668px;}
.ycf_c01302{bottom:450.229734px;}
.yce_c01302{bottom:452.523726px;}
.ycd_c01302{bottom:454.875990px;}
.ycc_c01302{bottom:472.886580px;}
.ycb_c01302{bottom:473.702034px;}
.yca_c01302{bottom:474.823128px;}
.yc9_c01302{bottom:476.485824px;}
.yc8_c01302{bottom:477.863316px;}
.yc7_c01302{bottom:478.665738px;}
.yc6_c01302{bottom:479.806836px;}
.yc5_c01302{bottom:481.469700px;}
.yc4_c01302{bottom:484.265178px;}
.yc3_c01302{bottom:485.061930px;}
.yc2_c01302{bottom:487.283262px;}
.yc1_c01302{bottom:488.639226px;}
.yc0_c01302{bottom:506.904858px;}
.ybf_c01302{bottom:509.694108px;}
.ybe_c01302{bottom:510.518268px;}
.ybd_c01302{bottom:512.983176px;}
.ybc_c01302{bottom:513.820578px;}
.ybb_c01302{bottom:515.189964px;}
.yba_c01302{bottom:517.993002px;}
.yb9_c01302{bottom:518.775366px;}
.yb8_c01302{bottom:519.356694px;}
.yb7_c01302{bottom:519.910992px;}
.yb6_c01302{bottom:522.366060px;}
.yb5_c01302{bottom:523.484874px;}
.yb4_c01302{bottom:543.192006px;}
.yb3_c01302{bottom:544.395372px;}
.yb2_c01302{bottom:544.998294px;}
.yb1_c01302{bottom:547.100682px;}
.yb0_c01302{bottom:549.784392px;}
.yaf_c01302{bottom:551.832714px;}
.yae_c01302{bottom:553.335246px;}
.yad_c01302{bottom:555.158670px;}
.yac_c01302{bottom:556.953186px;}
.yab_c01302{bottom:558.132726px;}
.yaa_c01302{bottom:559.323522px;}
.ya9_c01302{bottom:560.219646px;}
.ya8_c01302{bottom:577.082088px;}
.ya7_c01302{bottom:578.898204px;}
.ya6_c01302{bottom:580.660632px;}
.ya5_c01302{bottom:581.586504px;}
.ya4_c01302{bottom:583.402788px;}
.ya3_c01302{bottom:585.758214px;}
.ya2_c01302{bottom:586.983252px;}
.ya1_c01302{bottom:588.769998px;}
.ya0_c01302{bottom:591.160086px;}
.y9f_c01302{bottom:592.358538px;}
.y9e_c01302{bottom:593.836614px;}
.y9d_c01302{bottom:596.142888px;}
.y9c_c01302{bottom:614.440428px;}
.y9b_c01302{bottom:614.708976px;}
.y9a_c01302{bottom:617.196966px;}
.y99_c01302{bottom:618.034158px;}
.y98_c01302{bottom:619.992222px;}
.y97_c01302{bottom:620.537448px;}
.y96_c01302{bottom:623.009550px;}
.y95_c01302{bottom:623.825004px;}
.y94_c01302{bottom:627.157746px;}
.y93_c01302{bottom:628.008180px;}
.y92_c01302{bottom:630.715740px;}
.y91_c01302{bottom:648.373494px;}
.y90_c01302{bottom:651.237054px;}
.y8f_c01302{bottom:652.166136px;}
.y8e_c01302{bottom:654.327666px;}
.y8d_c01302{bottom:655.559232px;}
.y8c_c01302{bottom:657.738612px;}
.y8b_c01302{bottom:658.681554px;}
.y8a_c01302{bottom:660.846906px;}
.y89_c01302{bottom:663.940500px;}
.y88_c01302{bottom:682.728882px;}
.y87_c01302{bottom:692.425392px;}
.y86_c01302{bottom:693.906672px;}
.y85_c01302{bottom:695.123520px;}
.y84_c01302{bottom:697.218306px;}
.y83_c01302{bottom:699.005052px;}
.y82_c01302{bottom:699.917136px;}
.y81_c01302{bottom:701.680992px;}
.y80_c01302{bottom:719.986518px;}
.y7f_c01302{bottom:720.524928px;}
.y7e_c01302{bottom:722.782740px;}
.y7d_c01302{bottom:723.600462px;}
.y7c_c01302{bottom:725.255208px;}
.y7b_c01302{bottom:726.079368px;}
.y7a_c01302{bottom:726.888984px;}
.y79_c01302{bottom:729.649314px;}
.y78_c01302{bottom:731.055558px;}
.y77_c01302{bottom:732.708624px;}
.y76_c01302{bottom:733.811172px;}
.y75_c01302{bottom:735.714798px;}
.y74_c01302{bottom:755.486766px;}
.y73_c01302{bottom:757.263870px;}
.y72_c01302{bottom:758.703132px;}
.y71_c01302{bottom:759.557352px;}
.y70_c01302{bottom:762.706092px;}
.y6f_c01302{bottom:763.574352px;}
.y6e_c01302{bottom:764.465346px;}
.y6d_c01302{bottom:765.872160px;}
.y6c_c01302{bottom:767.338398px;}
.y6b_c01302{bottom:769.917900px;}
.y6a_c01302{bottom:770.766060px;}
.y69_c01302{bottom:772.179258px;}
.y68_c01302{bottom:791.387604px;}
.y67_c01302{bottom:793.172742px;}
.y66_c01302{bottom:794.274276px;}
.y65_c01302{bottom:795.189180px;}
.y64_c01302{bottom:796.303536px;}
.y63_c01302{bottom:798.672612px;}
.y62_c01302{bottom:799.522044px;}
.y61_c01302{bottom:801.242790px;}
.y60_c01302{bottom:803.256666px;}
.y5f_c01302{bottom:804.078690px;}
.y5e_c01302{bottom:804.693228px;}
.y5d_c01302{bottom:806.693526px;}
.y5c_c01302{bottom:808.105338px;}
.y5b_c01302{bottom:826.376298px;}
.y5a_c01302{bottom:829.802616px;}
.y59_c01302{bottom:830.738208px;}
.y58_c01302{bottom:831.971076px;}
.y57_c01302{bottom:833.833692px;}
.y56_c01302{bottom:834.778734px;}
.y55_c01302{bottom:835.653678px;}
.y54_c01302{bottom:837.577194px;}
.y53_c01302{bottom:838.484688px;}
.y52_c01302{bottom:840.662808px;}
.y51_c01302{bottom:841.600500px;}
.y50_c01302{bottom:864.244271px;}
.y4f_c01302{bottom:864.971808px;}
.y4e_c01302{bottom:865.793654px;}
.y4d_c01302{bottom:867.036261px;}
.y4c_c01302{bottom:867.810931px;}
.y4b_c01302{bottom:870.093318px;}
.y4a_c01302{bottom:870.619281px;}
.y49_c01302{bottom:873.396693px;}
.y48_c01302{bottom:874.937652px;}
.y47_c01302{bottom:876.683749px;}
.y46_c01302{bottom:877.438537px;}
.y45_c01302{bottom:898.220985px;}
.y44_c01302{bottom:899.277943px;}
.y43_c01302{bottom:899.848964px;}
.y42_c01302{bottom:901.710718px;}
.y41_c01302{bottom:902.481459px;}
.y40_c01302{bottom:904.376015px;}
.y3f_c01302{bottom:905.411835px;}
.y3e_c01302{bottom:906.763193px;}
.y3d_c01302{bottom:907.566045px;}
.y3c_c01302{bottom:909.121374px;}
.y3b_c01302{bottom:911.519444px;}
.y3a_c01302{bottom:912.822288px;}
.y39_c01302{bottom:913.904718px;}
.y38_c01302{bottom:935.132534px;}
.y37_c01302{bottom:936.049799px;}
.y36_c01302{bottom:936.987674px;}
.y35_c01302{bottom:938.615187px;}
.y34_c01302{bottom:939.800972px;}
.y33_c01302{bottom:940.253025px;}
.y32_c01302{bottom:940.723419px;}
.y31_c01302{bottom:942.807763px;}
.y30_c01302{bottom:943.508943px;}
.y2f_c01302{bottom:945.092852px;}
.y2e_c01302{bottom:946.516628px;}
.y2d_c01302{bottom:947.395511px;}
.y2c_c01302{bottom:969.485592px;}
.y2b_c01302{bottom:971.437576px;}
.y2a_c01302{bottom:973.077089px;}
.y29_c01302{bottom:974.184675px;}
.y28_c01302{bottom:975.043935px;}
.y27_c01302{bottom:976.108433px;}
.y26_c01302{bottom:978.069165px;}
.y25_c01302{bottom:978.926441px;}
.y24_c01302{bottom:980.567573px;}
.y23_c01302{bottom:981.938024px;}
.y22_c01302{bottom:983.604951px;}
.y21_c01302{bottom:984.400267px;}
.y20_c01302{bottom:1003.726271px;}
.y1f_c01302{bottom:1006.232817px;}
.y1e_c01302{bottom:1008.196424px;}
.y1d_c01302{bottom:1009.574852px;}
.y1c_c01302{bottom:1010.405238px;}
.y1b_c01302{bottom:1012.065282px;}
.y1a_c01302{bottom:1012.896033px;}
.y19_c01302{bottom:1014.552635px;}
.y18_c01302{bottom:1016.227581px;}
.y17_c01302{bottom:1017.568550px;}
.y16_c01302{bottom:1020.054444px;}
.y15_c01302{bottom:1040.648305px;}
.y14_c01302{bottom:1042.179246px;}
.y13_c01302{bottom:1043.091346px;}
.y12_c01302{bottom:1045.731339px;}
.y11_c01302{bottom:1046.672194px;}
.y10_c01302{bottom:1047.573846px;}
.yf_c01302{bottom:1048.193658px;}
.ye_c01302{bottom:1051.441434px;}
.yd_c01302{bottom:1052.374797px;}
.yc_c01302{bottom:1053.279000px;}
.yb_c01302{bottom:1120.323684px;}
.ya_c01302{bottom:1121.387016px;}
.y9_c01302{bottom:1123.519584px;}
.y8_c01302{bottom:1127.253000px;}
.y7_c01302{bottom:1132.853409px;}
.y6_c01302{bottom:1136.055075px;}
.y5_c01302{bottom:1137.772128px;}
.y4_c01302{bottom:1140.057879px;}
.y3_c01302{bottom:1140.935613px;}
.y2_c01302{bottom:1142.649000px;}
.y1_c01302{bottom:1196.115000px;}
.h4_c01302{height:30.008639px;}
.hb_c01302{height:71.967233px;}
.h3_c01302{height:72.024332px;}
.h5_c01302{height:72.026239px;}
.h8_c01302{height:72.028218px;}
.hc_c01302{height:77.964502px;}
.h6_c01302{height:78.028426px;}
.h9_c01302{height:78.030570px;}
.hd_c01302{height:83.961771px;}
.h7_c01302{height:84.030612px;}
.ha_c01302{height:84.032922px;}
.h2_c01302{height:90.000000px;}
.he_c01302{height:108.045404px;}
.h1_c01302{height:1250.250000px;}
.h0_c01302{height:1250.370000px;}
.w1_c01302{width:912.000000px;}
.w0_c01302{width:912.300000px;}
.x0_c01302{left:0.000000px;}
.xc0_c01302{left:166.567824px;}
.xc6_c01302{left:169.880566px;}
.xad_c01302{left:172.888422px;}
.x9a_c01302{left:175.205028px;}
.x96_c01302{left:176.213448px;}
.x8b_c01302{left:177.827394px;}
.x6c_c01302{left:181.587816px;}
.x61_c01302{left:183.226800px;}
.x51_c01302{left:184.323006px;}
.x35_c01302{left:186.757211px;}
.x18_c01302{left:189.485153px;}
.x8c_c01302{left:211.011318px;}
.xc7_c01302{left:212.887453px;}
.xa0_c01302{left:219.120828px;}
.x22_c01302{left:220.783533px;}
.x92_c01302{left:222.002430px;}
.x2c_c01302{left:231.321054px;}
.x52_c01302{left:238.605030px;}
.xa7_c01302{left:240.164070px;}
.x6d_c01302{left:246.941664px;}
.xbc_c01302{left:247.991576px;}
.xb4_c01302{left:249.081612px;}
.x9b_c01302{left:253.638660px;}
.xa_c01302{left:255.823500px;}
.x4_c01302{left:257.506500px;}
.x62_c01302{left:259.362684px;}
.xae_c01302{left:260.637858px;}
.x82_c01302{left:266.731578px;}
.xc1_c01302{left:268.593912px;}
.x5a_c01302{left:270.980982px;}
.xc8_c01302{left:279.243211px;}
.x6e_c01302{left:280.695588px;}
.x36_c01302{left:286.108730px;}
.x23_c01302{left:287.469638px;}
.x19_c01302{left:288.893999px;}
.x73_c01302{left:290.412000px;}
.x47_c01302{left:293.929500px;}
.x41_c01302{left:295.843332px;}
.xe_c01302{left:298.533000px;}
.x63_c01302{left:303.457380px;}
.xa8_c01302{left:307.130460px;}
.xc2_c01302{left:312.267366px;}
.x53_c01302{left:315.512814px;}
.x93_c01302{left:320.191662px;}
.x83_c01302{left:321.450090px;}
.x5_c01302{left:323.406000px;}
.x48_c01302{left:327.418500px;}
.x9c_c01302{left:330.098376px;}
.xf_c01302{left:332.022000px;}
.x54_c01302{left:339.122616px;}
.x1a_c01302{left:342.562415px;}
.x6f_c01302{left:346.866936px;}
.xb5_c01302{left:348.499470px;}
.x97_c01302{left:351.194148px;}
.x6_c01302{left:357.165000px;}
.x42_c01302{left:362.867582px;}
.x8d_c01302{left:365.224602px;}
.x10_c01302{left:366.591000px;}
.xbd_c01302{left:368.076334px;}
.x64_c01302{left:369.572424px;}
.x55_c01302{left:370.732380px;}
.x2d_c01302{left:374.517720px;}
.xce_c01302{left:375.748500px;}
.xa9_c01302{left:383.062602px;}
.xa1_c01302{left:384.102708px;}
.x37_c01302{left:386.045330px;}
.xc9_c01302{left:388.778184px;}
.xb8_c01302{left:391.529992px;}
.x94_c01302{left:396.840546px;}
.x74_c01302{left:400.897500px;}
.xaf_c01302{left:403.273848px;}
.x49_c01302{left:405.208500px;}
.x24_c01302{left:407.905118px;}
.x1b_c01302{left:409.545519px;}
.xb_c01302{left:411.382500px;}
.xa2_c01302{left:418.138242px;}
.xcf_c01302{left:420.072000px;}
.xb9_c01302{left:423.933557px;}
.x1_c01302{left:425.250000px;}
.x5b_c01302{left:426.569676px;}
.x9d_c01302{left:429.577290px;}
.x8e_c01302{left:432.759492px;}
.x4a_c01302{left:437.619000px;}
.x25_c01302{left:442.213481px;}
.x7_c01302{left:445.078500px;}
.x2_c01302{left:448.470000px;}
.x38_c01302{left:450.877595px;}
.x9e_c01302{left:452.458530px;}
.x84_c01302{left:454.383828px;}
.x7a_c01302{left:456.651876px;}
.x98_c01302{left:463.042056px;}
.xd0_c01302{left:465.460500px;}
.x70_c01302{left:469.535880px;}
.xb6_c01302{left:470.848260px;}
.x1c_c01302{left:475.793583px;}
.x75_c01302{left:478.231500px;}
.x5c_c01302{left:480.673200px;}
.x39_c01302{left:484.337808px;}
.x11_c01302{left:486.879000px;}
.x7b_c01302{left:489.260106px;}
.xbe_c01302{left:490.570731px;}
.x3_c01302{left:491.940000px;}
.xd1_c01302{left:498.156000px;}
.xc_c01302{left:500.239500px;}
.xb0_c01302{left:504.103662px;}
.x2e_c01302{left:507.151185px;}
.x12_c01302{left:509.835000px;}
.x8_c01302{left:511.119000px;}
.x56_c01302{left:514.351902px;}
.xa3_c01302{left:517.102470px;}
.x26_c01302{left:520.615193px;}
.x71_c01302{left:524.422434px;}
.x2f_c01302{left:529.576830px;}
.xd2_c01302{left:531.082500px;}
.x65_c01302{left:536.231910px;}
.x4b_c01302{left:537.564000px;}
.xa4_c01302{left:538.875840px;}
.x3a_c01302{left:540.614844px;}
.x13_c01302{left:543.229500px;}
.xd_c01302{left:544.545000px;}
.x57_c01302{left:547.047750px;}
.x5d_c01302{left:548.382522px;}
.x30_c01302{left:551.100813px;}
.x27_c01302{left:563.210001px;}
.x8f_c01302{left:564.293688px;}
.x85_c01302{left:565.914936px;}
.x66_c01302{left:568.631640px;}
.xb1_c01302{left:570.201510px;}
.x4c_c01302{left:571.315500px;}
.x9f_c01302{left:573.143268px;}
.x1d_c01302{left:575.383929px;}
.x14_c01302{left:578.076000px;}
.xaa_c01302{left:582.379146px;}
.x3b_c01302{left:583.759827px;}
.x7c_c01302{left:588.164922px;}
.x76_c01302{left:589.743000px;}
.xb7_c01302{left:592.684008px;}
.x28_c01302{left:597.591864px;}
.xc3_c01302{left:599.907469px;}
.x67_c01302{left:601.604412px;}
.x43_c01302{left:605.718285px;}
.x31_c01302{left:607.583466px;}
.x1e_c01302{left:608.585211px;}
.x7d_c01302{left:609.996270px;}
.xba_c01302{left:623.620670px;}
.xca_c01302{left:632.226519px;}
.x9_c01302{left:634.260000px;}
.x4d_c01302{left:637.837500px;}
.x44_c01302{left:639.413430px;}
.x29_c01302{left:641.893754px;}
.xa5_c01302{left:650.246232px;}
.x86_c01302{left:653.146872px;}
.xc4_c01302{left:656.110858px;}
.x3c_c01302{left:662.712726px;}
.x1f_c01302{left:663.752208px;}
.x68_c01302{left:667.779456px;}
.x5e_c01302{left:669.469284px;}
.x15_c01302{left:675.853500px;}
.x4e_c01302{left:681.868500px;}
.x32_c01302{left:685.096521px;}
.x7e_c01302{left:688.290822px;}
.x45_c01302{left:693.441762px;}
.x3d_c01302{left:694.816818px;}
.x95_c01302{left:695.856162px;}
.xcb_c01302{left:698.989919px;}
.x69_c01302{left:700.468686px;}
.x5f_c01302{left:702.336132px;}
.xab_c01302{left:703.924548px;}
.x2a_c01302{left:707.453277px;}
.x16_c01302{left:709.635000px;}
.x77_c01302{left:710.925000px;}
.xbb_c01302{left:713.247453px;}
.x4f_c01302{left:715.282500px;}
.x87_c01302{left:720.426762px;}
.x7f_c01302{left:721.782636px;}
.xbf_c01302{left:722.929869px;}
.x33_c01302{left:729.728730px;}
.xac_c01302{left:737.189472px;}
.x20_c01302{left:742.315961px;}
.x78_c01302{left:744.106500px;}
.xa6_c01302{left:750.918918px;}
.x88_c01302{left:754.726728px;}
.x58_c01302{left:758.537052px;}
.x46_c01302{left:760.778012px;}
.x90_c01302{left:763.889274px;}
.x17_c01302{left:766.336500px;}
.xb2_c01302{left:769.278096px;}
.x3e_c01302{left:772.388096px;}
.x34_c01302{left:773.430818px;}
.xcc_c01302{left:775.393668px;}
.x2b_c01302{left:785.530989px;}
.x6a_c01302{left:790.755246px;}
.x3f_c01302{left:796.149999px;}
.x99_c01302{left:806.360868px;}
.x91_c01302{left:808.475034px;}
.x6b_c01302{left:812.289552px;}
.xb3_c01302{left:814.688856px;}
.x89_c01302{left:820.029576px;}
.x80_c01302{left:821.308494px;}
.xc5_c01302{left:822.466787px;}
.x60_c01302{left:826.052562px;}
.x59_c01302{left:827.224416px;}
.x81_c01302{left:832.025376px;}
.xcd_c01302{left:833.975392px;}
.x50_c01302{left:837.651000px;}
.x40_c01302{left:840.189063px;}
.x21_c01302{left:842.600888px;}
.x79_c01302{left:846.376500px;}
.x72_c01302{left:883.539972px;}
.x8a_c01302{left:887.303466px;}
@media print{
.v0_c01302{vertical-align:0.000000pt;}
.ls0_c01302{letter-spacing:0.000000pt;}
.ws0_c01302{word-spacing:0.000000pt;}
.fs2_c01302{font-size:26.674346pt;}
.fs9_c01302{font-size:63.970873pt;}
.fs1_c01302{font-size:64.021628pt;}
.fs3_c01302{font-size:64.023324pt;}
.fs6_c01302{font-size:64.025083pt;}
.fsa_c01302{font-size:69.301779pt;}
.fs4_c01302{font-size:69.358601pt;}
.fs7_c01302{font-size:69.360507pt;}
.fsb_c01302{font-size:74.632686pt;}
.fs5_c01302{font-size:74.693878pt;}
.fs8_c01302{font-size:74.695930pt;}
.fs0_c01302{font-size:80.000000pt;}
.fsc_c01302{font-size:96.040360pt;}
.y0_c01302{bottom:0.000000pt;}
.y13a_c01302{bottom:60.175755pt;}
.y139_c01302{bottom:61.631787pt;}
.y138_c01302{bottom:63.345261pt;}
.y137_c01302{bottom:64.194033pt;}
.y136_c01302{bottom:65.036851pt;}
.y135_c01302{bottom:66.206865pt;}
.y134_c01302{bottom:67.349427pt;}
.y133_c01302{bottom:69.361215pt;}
.y132_c01302{bottom:71.348836pt;}
.y131_c01302{bottom:72.730667pt;}
.y130_c01302{bottom:103.897073pt;}
.y12f_c01302{bottom:105.513181pt;}
.y12e_c01302{bottom:109.453389pt;}
.y12d_c01302{bottom:110.398441pt;}
.y12c_c01302{bottom:113.405641pt;}
.y12b_c01302{bottom:115.227901pt;}
.y12a_c01302{bottom:118.304969pt;}
.y129_c01302{bottom:118.919861pt;}
.y128_c01302{bottom:121.028217pt;}
.y127_c01302{bottom:122.229689pt;}
.y126_c01302{bottom:133.631233pt;}
.y125_c01302{bottom:135.890965pt;}
.y124_c01302{bottom:137.151249pt;}
.y123_c01302{bottom:139.051597pt;}
.y122_c01302{bottom:141.580405pt;}
.y121_c01302{bottom:142.525789pt;}
.y120_c01302{bottom:144.439205pt;}
.y11f_c01302{bottom:145.983877pt;}
.y11e_c01302{bottom:149.102777pt;}
.y11d_c01302{bottom:150.992489pt;}
.y11c_c01302{bottom:152.216617pt;}
.y11b_c01302{bottom:166.921977pt;}
.y11a_c01302{bottom:168.804809pt;}
.y119_c01302{bottom:170.919889pt;}
.y118_c01302{bottom:172.270145pt;}
.y117_c01302{bottom:175.207129pt;}
.y116_c01302{bottom:175.984853pt;}
.y115_c01302{bottom:178.365473pt;}
.y114_c01302{bottom:179.181229pt;}
.y113_c01302{bottom:180.230245pt;}
.y112_c01302{bottom:182.681957pt;}
.y111_c01302{bottom:199.101885pt;}
.y110_c01302{bottom:200.347397pt;}
.y10f_c01302{bottom:200.973733pt;}
.y10e_c01302{bottom:203.173769pt;}
.y10d_c01302{bottom:204.116337pt;}
.y10c_c01302{bottom:206.962069pt;}
.y10b_c01302{bottom:207.912073pt;}
.y10a_c01302{bottom:210.450825pt;}
.y109_c01302{bottom:212.941893pt;}
.y108_c01302{bottom:213.870161pt;}
.y107_c01302{bottom:216.026869pt;}
.y106_c01302{bottom:230.813069pt;}
.y105_c01302{bottom:233.070621pt;}
.y104_c01302{bottom:235.702305pt;}
.y103_c01302{bottom:236.668545pt;}
.y102_c01302{bottom:239.590981pt;}
.y101_c01302{bottom:241.565657pt;}
.y100_c01302{bottom:242.517113pt;}
.yff_c01302{bottom:243.507113pt;}
.yfe_c01302{bottom:245.773333pt;}
.yfd_c01302{bottom:267.764779pt;}
.yfc_c01302{bottom:268.761120pt;}
.yfb_c01302{bottom:270.471547pt;}
.yfa_c01302{bottom:273.189749pt;}
.yf9_c01302{bottom:274.678277pt;}
.yf8_c01302{bottom:275.398608pt;}
.yf7_c01302{bottom:277.083328pt;}
.yf6_c01302{bottom:292.655152pt;}
.yf5_c01302{bottom:293.745344pt;}
.yf4_c01302{bottom:295.320869pt;}
.yf3_c01302{bottom:296.136251pt;}
.yf2_c01302{bottom:297.693136pt;}
.yf1_c01302{bottom:298.522667pt;}
.yf0_c01302{bottom:299.313957pt;}
.yef_c01302{bottom:300.109056pt;}
.yee_c01302{bottom:302.529195pt;}
.yed_c01302{bottom:303.287883pt;}
.yec_c01302{bottom:305.952480pt;}
.yeb_c01302{bottom:308.059072pt;}
.yea_c01302{bottom:326.739883pt;}
.ye9_c01302{bottom:327.538453pt;}
.ye8_c01302{bottom:328.847744pt;}
.ye7_c01302{bottom:330.455499pt;}
.ye6_c01302{bottom:332.017984pt;}
.ye5_c01302{bottom:335.240128pt;}
.ye4_c01302{bottom:337.061941pt;}
.ye3_c01302{bottom:338.668613pt;}
.ye2_c01302{bottom:340.228224pt;}
.ye1_c01302{bottom:356.062469pt;}
.ye0_c01302{bottom:358.040293pt;}
.ydf_c01302{bottom:359.500405pt;}
.yde_c01302{bottom:360.635328pt;}
.ydd_c01302{bottom:363.505957pt;}
.ydc_c01302{bottom:364.067888pt;}
.ydb_c01302{bottom:366.619067pt;}
.yda_c01302{bottom:367.496864pt;}
.yd9_c01302{bottom:368.352981pt;}
.yd8_c01302{bottom:371.749861pt;}
.yd7_c01302{bottom:372.883029pt;}
.yd6_c01302{bottom:388.716741pt;}
.yd5_c01302{bottom:390.163237pt;}
.yd4_c01302{bottom:391.915397pt;}
.yd3_c01302{bottom:392.841595pt;}
.yd2_c01302{bottom:393.722752pt;}
.yd1_c01302{bottom:396.941296pt;}
.yd0_c01302{bottom:397.550816pt;}
.ycf_c01302{bottom:400.204208pt;}
.yce_c01302{bottom:402.243312pt;}
.ycd_c01302{bottom:404.334213pt;}
.ycc_c01302{bottom:420.343627pt;}
.ycb_c01302{bottom:421.068475pt;}
.yca_c01302{bottom:422.065003pt;}
.yc9_c01302{bottom:423.542955pt;}
.yc8_c01302{bottom:424.767392pt;}
.yc7_c01302{bottom:425.480656pt;}
.yc6_c01302{bottom:426.494965pt;}
.yc5_c01302{bottom:427.973067pt;}
.yc4_c01302{bottom:430.457936pt;}
.yc3_c01302{bottom:431.166160pt;}
.yc2_c01302{bottom:433.140677pt;}
.yc1_c01302{bottom:434.345979pt;}
.yc0_c01302{bottom:450.582096pt;}
.ybf_c01302{bottom:453.061429pt;}
.ybe_c01302{bottom:453.794016pt;}
.ybd_c01302{bottom:455.985045pt;}
.ybc_c01302{bottom:456.729403pt;}
.ybb_c01302{bottom:457.946635pt;}
.yba_c01302{bottom:460.438224pt;}
.yb9_c01302{bottom:461.133659pt;}
.yb8_c01302{bottom:461.650395pt;}
.yb7_c01302{bottom:462.143104pt;}
.yb6_c01302{bottom:464.325387pt;}
.yb5_c01302{bottom:465.319888pt;}
.yb4_c01302{bottom:482.837339pt;}
.yb3_c01302{bottom:483.906997pt;}
.yb2_c01302{bottom:484.442928pt;}
.yb1_c01302{bottom:486.311717pt;}
.yb0_c01302{bottom:488.697237pt;}
.yaf_c01302{bottom:490.517968pt;}
.yae_c01302{bottom:491.853552pt;}
.yad_c01302{bottom:493.474373pt;}
.yac_c01302{bottom:495.069499pt;}
.yab_c01302{bottom:496.117979pt;}
.yaa_c01302{bottom:497.176464pt;}
.ya9_c01302{bottom:497.973019pt;}
.ya8_c01302{bottom:512.961856pt;}
.ya7_c01302{bottom:514.576181pt;}
.ya6_c01302{bottom:516.142784pt;}
.ya5_c01302{bottom:516.965781pt;}
.ya4_c01302{bottom:518.580256pt;}
.ya3_c01302{bottom:520.673968pt;}
.ya2_c01302{bottom:521.762891pt;}
.ya1_c01302{bottom:523.351109pt;}
.ya0_c01302{bottom:525.475632pt;}
.y9f_c01302{bottom:526.540923pt;}
.y9e_c01302{bottom:527.854768pt;}
.y9d_c01302{bottom:529.904789pt;}
.y9c_c01302{bottom:546.169269pt;}
.y9b_c01302{bottom:546.407979pt;}
.y9a_c01302{bottom:548.619525pt;}
.y99_c01302{bottom:549.363696pt;}
.y98_c01302{bottom:551.104197pt;}
.y97_c01302{bottom:551.588843pt;}
.y96_c01302{bottom:553.786267pt;}
.y95_c01302{bottom:554.511115pt;}
.y94_c01302{bottom:557.473552pt;}
.y93_c01302{bottom:558.229493pt;}
.y92_c01302{bottom:560.636213pt;}
.y91_c01302{bottom:576.331995pt;}
.y90_c01302{bottom:578.877381pt;}
.y8f_c01302{bottom:579.703232pt;}
.y8e_c01302{bottom:581.624592pt;}
.y8d_c01302{bottom:582.719317pt;}
.y8c_c01302{bottom:584.656544pt;}
.y8b_c01302{bottom:585.494715pt;}
.y8a_c01302{bottom:587.419472pt;}
.y89_c01302{bottom:590.169333pt;}
.y88_c01302{bottom:606.870117pt;}
.y87_c01302{bottom:615.489237pt;}
.y86_c01302{bottom:616.805931pt;}
.y85_c01302{bottom:617.887573pt;}
.y84_c01302{bottom:619.749605pt;}
.y83_c01302{bottom:621.337824pt;}
.y82_c01302{bottom:622.148565pt;}
.y81_c01302{bottom:623.716437pt;}
.y80_c01302{bottom:639.988016pt;}
.y7f_c01302{bottom:640.466603pt;}
.y7e_c01302{bottom:642.473547pt;}
.y7d_c01302{bottom:643.200411pt;}
.y7c_c01302{bottom:644.671296pt;}
.y7b_c01302{bottom:645.403883pt;}
.y7a_c01302{bottom:646.123541pt;}
.y79_c01302{bottom:648.577168pt;}
.y78_c01302{bottom:649.827163pt;}
.y77_c01302{bottom:651.296555pt;}
.y76_c01302{bottom:652.276597pt;}
.y75_c01302{bottom:653.968709pt;}
.y74_c01302{bottom:671.543792pt;}
.y73_c01302{bottom:673.123440pt;}
.y72_c01302{bottom:674.402784pt;}
.y71_c01302{bottom:675.162091pt;}
.y70_c01302{bottom:677.960971pt;}
.y6f_c01302{bottom:678.732757pt;}
.y6e_c01302{bottom:679.524752pt;}
.y6d_c01302{bottom:680.775253pt;}
.y6c_c01302{bottom:682.078576pt;}
.y6b_c01302{bottom:684.371467pt;}
.y6a_c01302{bottom:685.125387pt;}
.y69_c01302{bottom:686.381563pt;}
.y68_c01302{bottom:703.455648pt;}
.y67_c01302{bottom:705.042437pt;}
.y66_c01302{bottom:706.021579pt;}
.y65_c01302{bottom:706.834827pt;}
.y64_c01302{bottom:707.825365pt;}
.y63_c01302{bottom:709.931211pt;}
.y62_c01302{bottom:710.686261pt;}
.y61_c01302{bottom:712.215813pt;}
.y60_c01302{bottom:714.005925pt;}
.y5f_c01302{bottom:714.736613pt;}
.y5e_c01302{bottom:715.282869pt;}
.y5d_c01302{bottom:717.060912pt;}
.y5c_c01302{bottom:718.315856pt;}
.y5b_c01302{bottom:734.556709pt;}
.y5a_c01302{bottom:737.602325pt;}
.y59_c01302{bottom:738.433963pt;}
.y58_c01302{bottom:739.529845pt;}
.y57_c01302{bottom:741.185504pt;}
.y56_c01302{bottom:742.025541pt;}
.y55_c01302{bottom:742.803269pt;}
.y54_c01302{bottom:744.513061pt;}
.y53_c01302{bottom:745.319723pt;}
.y52_c01302{bottom:747.255829pt;}
.y51_c01302{bottom:748.089333pt;}
.y50_c01302{bottom:768.217129pt;}
.y4f_c01302{bottom:768.863829pt;}
.y4e_c01302{bottom:769.594359pt;}
.y4d_c01302{bottom:770.698899pt;}
.y4c_c01302{bottom:771.387495pt;}
.y4b_c01302{bottom:773.416283pt;}
.y4a_c01302{bottom:773.883805pt;}
.y49_c01302{bottom:776.352616pt;}
.y48_c01302{bottom:777.722357pt;}
.y47_c01302{bottom:779.274444pt;}
.y46_c01302{bottom:779.945367pt;}
.y45_c01302{bottom:798.418653pt;}
.y44_c01302{bottom:799.358172pt;}
.y43_c01302{bottom:799.865745pt;}
.y42_c01302{bottom:801.520639pt;}
.y41_c01302{bottom:802.205741pt;}
.y40_c01302{bottom:803.889791pt;}
.y3f_c01302{bottom:804.810520pt;}
.y3e_c01302{bottom:806.011727pt;}
.y3d_c01302{bottom:806.725373pt;}
.y3c_c01302{bottom:808.107888pt;}
.y3b_c01302{bottom:810.239505pt;}
.y3a_c01302{bottom:811.397589pt;}
.y39_c01302{bottom:812.359749pt;}
.y38_c01302{bottom:831.228919pt;}
.y37_c01302{bottom:832.044265pt;}
.y36_c01302{bottom:832.877932pt;}
.y35_c01302{bottom:834.324611pt;}
.y34_c01302{bottom:835.378641pt;}
.y33_c01302{bottom:835.780467pt;}
.y32_c01302{bottom:836.198595pt;}
.y31_c01302{bottom:838.051345pt;}
.y30_c01302{bottom:838.674616pt;}
.y2f_c01302{bottom:840.082535pt;}
.y2e_c01302{bottom:841.348113pt;}
.y2d_c01302{bottom:842.129343pt;}
.y2c_c01302{bottom:861.764971pt;}
.y2b_c01302{bottom:863.500068pt;}
.y2a_c01302{bottom:864.957412pt;}
.y29_c01302{bottom:865.941933pt;}
.y28_c01302{bottom:866.705720pt;}
.y27_c01302{bottom:867.651940pt;}
.y26_c01302{bottom:869.394813pt;}
.y25_c01302{bottom:870.156836pt;}
.y24_c01302{bottom:871.615620pt;}
.y23_c01302{bottom:872.833799pt;}
.y22_c01302{bottom:874.315512pt;}
.y21_c01302{bottom:875.022460pt;}
.y20_c01302{bottom:892.201129pt;}
.y1f_c01302{bottom:894.429171pt;}
.y1e_c01302{bottom:896.174599pt;}
.y1d_c01302{bottom:897.399868pt;}
.y1c_c01302{bottom:898.137989pt;}
.y1b_c01302{bottom:899.613584pt;}
.y1a_c01302{bottom:900.352029pt;}
.y19_c01302{bottom:901.824564pt;}
.y18_c01302{bottom:903.313405pt;}
.y17_c01302{bottom:904.505377pt;}
.y16_c01302{bottom:906.715061pt;}
.y15_c01302{bottom:925.020716pt;}
.y14_c01302{bottom:926.381552pt;}
.y13_c01302{bottom:927.192308pt;}
.y12_c01302{bottom:929.538968pt;}
.y11_c01302{bottom:930.375284pt;}
.y10_c01302{bottom:931.176752pt;}
.yf_c01302{bottom:931.727696pt;}
.ye_c01302{bottom:934.614608pt;}
.yd_c01302{bottom:935.444264pt;}
.yc_c01302{bottom:936.248000pt;}
.yb_c01302{bottom:995.843275pt;}
.ya_c01302{bottom:996.788459pt;}
.y9_c01302{bottom:998.684075pt;}
.y8_c01302{bottom:1002.002667pt;}
.y7_c01302{bottom:1006.980808pt;}
.y6_c01302{bottom:1009.826733pt;}
.y5_c01302{bottom:1011.353003pt;}
.y4_c01302{bottom:1013.384781pt;}
.y3_c01302{bottom:1014.164989pt;}
.y2_c01302{bottom:1015.688000pt;}
.y1_c01302{bottom:1063.213333pt;}
.h4_c01302{height:26.674346pt;}
.hb_c01302{height:63.970873pt;}
.h3_c01302{height:64.021628pt;}
.h5_c01302{height:64.023324pt;}
.h8_c01302{height:64.025083pt;}
.hc_c01302{height:69.301779pt;}
.h6_c01302{height:69.358601pt;}
.h9_c01302{height:69.360507pt;}
.hd_c01302{height:74.632686pt;}
.h7_c01302{height:74.693878pt;}
.ha_c01302{height:74.695930pt;}
.h2_c01302{height:80.000000pt;}
.he_c01302{height:96.040360pt;}
.h1_c01302{height:1111.333333pt;}
.h0_c01302{height:1111.440000pt;}
.w1_c01302{width:810.666667pt;}
.w0_c01302{width:810.933333pt;}
.x0_c01302{left:0.000000pt;}
.xc0_c01302{left:148.060288pt;}
.xc6_c01302{left:151.004948pt;}
.xad_c01302{left:153.678597pt;}
.x9a_c01302{left:155.737803pt;}
.x96_c01302{left:156.634176pt;}
.x8b_c01302{left:158.068795pt;}
.x6c_c01302{left:161.411392pt;}
.x61_c01302{left:162.868267pt;}
.x51_c01302{left:163.842672pt;}
.x35_c01302{left:166.006409pt;}
.x18_c01302{left:168.431247pt;}
.x8c_c01302{left:187.565616pt;}
.xc7_c01302{left:189.233292pt;}
.xa0_c01302{left:194.774069pt;}
.x22_c01302{left:196.252029pt;}
.x92_c01302{left:197.335493pt;}
.x2c_c01302{left:205.618715pt;}
.x52_c01302{left:212.093360pt;}
.xa7_c01302{left:213.479173pt;}
.x6d_c01302{left:219.503701pt;}
.xbc_c01302{left:220.436956pt;}
.xb4_c01302{left:221.405877pt;}
.x9b_c01302{left:225.456587pt;}
.xa_c01302{left:227.398667pt;}
.x4_c01302{left:228.894667pt;}
.x62_c01302{left:230.544608pt;}
.xae_c01302{left:231.678096pt;}
.x82_c01302{left:237.094736pt;}
.xc1_c01302{left:238.750144pt;}
.x5a_c01302{left:240.871984pt;}
.xc8_c01302{left:248.216188pt;}
.x6e_c01302{left:249.507189pt;}
.x36_c01302{left:254.318871pt;}
.x23_c01302{left:255.528567pt;}
.x19_c01302{left:256.794665pt;}
.x73_c01302{left:258.144000pt;}
.x47_c01302{left:261.270667pt;}
.x41_c01302{left:262.971851pt;}
.xe_c01302{left:265.362667pt;}
.x63_c01302{left:269.739893pt;}
.xa8_c01302{left:273.004853pt;}
.xc2_c01302{left:277.570992pt;}
.x53_c01302{left:280.455835pt;}
.x93_c01302{left:284.614811pt;}
.x83_c01302{left:285.733413pt;}
.x5_c01302{left:287.472000pt;}
.x48_c01302{left:291.038667pt;}
.x9c_c01302{left:293.420779pt;}
.xf_c01302{left:295.130667pt;}
.x54_c01302{left:301.442325pt;}
.x1a_c01302{left:304.499924pt;}
.x6f_c01302{left:308.326165pt;}
.xb5_c01302{left:309.777307pt;}
.x97_c01302{left:312.172576pt;}
.x6_c01302{left:317.480000pt;}
.x42_c01302{left:322.548961pt;}
.x8d_c01302{left:324.644091pt;}
.x10_c01302{left:325.858667pt;}
.xbd_c01302{left:327.178964pt;}
.x64_c01302{left:328.508821pt;}
.x55_c01302{left:329.539893pt;}
.x2d_c01302{left:332.904640pt;}
.xce_c01302{left:333.998667pt;}
.xa9_c01302{left:340.500091pt;}
.xa1_c01302{left:341.424629pt;}
.x37_c01302{left:343.151404pt;}
.xc9_c01302{left:345.580608pt;}
.xb8_c01302{left:348.026660pt;}
.x94_c01302{left:352.747152pt;}
.x74_c01302{left:356.353333pt;}
.xaf_c01302{left:358.465643pt;}
.x49_c01302{left:360.185333pt;}
.x24_c01302{left:362.582327pt;}
.x1b_c01302{left:364.040461pt;}
.xb_c01302{left:365.673333pt;}
.xa2_c01302{left:371.678437pt;}
.xcf_c01302{left:373.397333pt;}
.xb9_c01302{left:376.829828pt;}
.x1_c01302{left:378.000000pt;}
.x5b_c01302{left:379.173045pt;}
.x9d_c01302{left:381.846480pt;}
.x8e_c01302{left:384.675104pt;}
.x4a_c01302{left:388.994667pt;}
.x25_c01302{left:393.078649pt;}
.x7_c01302{left:395.625333pt;}
.x2_c01302{left:398.640000pt;}
.x38_c01302{left:400.780084pt;}
.x9e_c01302{left:402.185360pt;}
.x84_c01302{left:403.896736pt;}
.x7a_c01302{left:405.912779pt;}
.x98_c01302{left:411.592939pt;}
.xd0_c01302{left:413.742667pt;}
.x70_c01302{left:417.365227pt;}
.xb6_c01302{left:418.531787pt;}
.x1c_c01302{left:422.927629pt;}
.x75_c01302{left:425.094667pt;}
.x5c_c01302{left:427.265067pt;}
.x39_c01302{left:430.522496pt;}
.x11_c01302{left:432.781333pt;}
.x7b_c01302{left:434.897872pt;}
.xbe_c01302{left:436.062872pt;}
.x3_c01302{left:437.280000pt;}
.xd1_c01302{left:442.805333pt;}
.xc_c01302{left:444.657333pt;}
.xb0_c01302{left:448.092144pt;}
.x2e_c01302{left:450.801053pt;}
.x12_c01302{left:453.186667pt;}
.x8_c01302{left:454.328000pt;}
.x56_c01302{left:457.201691pt;}
.xa3_c01302{left:459.646640pt;}
.x26_c01302{left:462.769060pt;}
.x71_c01302{left:466.153275pt;}
.x2f_c01302{left:470.734960pt;}
.xd2_c01302{left:472.073333pt;}
.x65_c01302{left:476.650587pt;}
.x4b_c01302{left:477.834667pt;}
.xa4_c01302{left:479.000747pt;}
.x3a_c01302{left:480.546528pt;}
.x13_c01302{left:482.870667pt;}
.xd_c01302{left:484.040000pt;}
.x57_c01302{left:486.264667pt;}
.x5d_c01302{left:487.451131pt;}
.x30_c01302{left:489.867389pt;}
.x27_c01302{left:500.631112pt;}
.x8f_c01302{left:501.594389pt;}
.x85_c01302{left:503.035499pt;}
.x66_c01302{left:505.450347pt;}
.xb1_c01302{left:506.845787pt;}
.x4c_c01302{left:507.836000pt;}
.x9f_c01302{left:509.460683pt;}
.x1d_c01302{left:511.452381pt;}
.x14_c01302{left:513.845333pt;}
.xaa_c01302{left:517.670352pt;}
.x3b_c01302{left:518.897624pt;}
.x7c_c01302{left:522.813264pt;}
.x76_c01302{left:524.216000pt;}
.xb7_c01302{left:526.830229pt;}
.x28_c01302{left:531.192768pt;}
.xc3_c01302{left:533.251084pt;}
.x67_c01302{left:534.759477pt;}
.x43_c01302{left:538.416253pt;}
.x31_c01302{left:540.074192pt;}
.x1e_c01302{left:540.964632pt;}
.x7d_c01302{left:542.218907pt;}
.xba_c01302{left:554.329484pt;}
.xca_c01302{left:561.979128pt;}
.x9_c01302{left:563.786667pt;}
.x4d_c01302{left:566.966667pt;}
.x44_c01302{left:568.367493pt;}
.x29_c01302{left:570.572225pt;}
.xa5_c01302{left:577.996651pt;}
.x86_c01302{left:580.574997pt;}
.xc4_c01302{left:583.209652pt;}
.x3c_c01302{left:589.077979pt;}
.x1f_c01302{left:590.001963pt;}
.x68_c01302{left:593.581739pt;}
.x5e_c01302{left:595.083808pt;}
.x15_c01302{left:600.758667pt;}
.x4e_c01302{left:606.105333pt;}
.x32_c01302{left:608.974685pt;}
.x7e_c01302{left:611.814064pt;}
.x45_c01302{left:616.392677pt;}
.x3d_c01302{left:617.614949pt;}
.x95_c01302{left:618.538811pt;}
.xcb_c01302{left:621.324372pt;}
.x69_c01302{left:622.638832pt;}
.x5f_c01302{left:624.298784pt;}
.xab_c01302{left:625.710709pt;}
.x2a_c01302{left:628.847357pt;}
.x16_c01302{left:630.786667pt;}
.x77_c01302{left:631.933333pt;}
.xbb_c01302{left:633.997736pt;}
.x4f_c01302{left:635.806667pt;}
.x87_c01302{left:640.379344pt;}
.x7f_c01302{left:641.584565pt;}
.xbf_c01302{left:642.604328pt;}
.x33_c01302{left:648.647760pt;}
.xac_c01302{left:655.279531pt;}
.x20_c01302{left:659.836409pt;}
.x78_c01302{left:661.428000pt;}
.xa6_c01302{left:667.483483pt;}
.x88_c01302{left:670.868203pt;}
.x58_c01302{left:674.255157pt;}
.x46_c01302{left:676.247121pt;}
.x90_c01302{left:679.012688pt;}
.x17_c01302{left:681.188000pt;}
.xb2_c01302{left:683.802752pt;}
.x3e_c01302{left:686.567196pt;}
.x34_c01302{left:687.494060pt;}
.xcc_c01302{left:689.238816pt;}
.x2b_c01302{left:698.249768pt;}
.x6a_c01302{left:702.893552pt;}
.x3f_c01302{left:707.688888pt;}
.x99_c01302{left:716.765216pt;}
.x91_c01302{left:718.644475pt;}
.x6b_c01302{left:722.035157pt;}
.xb3_c01302{left:724.167872pt;}
.x89_c01302{left:728.915179pt;}
.x80_c01302{left:730.051995pt;}
.xc5_c01302{left:731.081588pt;}
.x60_c01302{left:734.268944pt;}
.x59_c01302{left:735.310592pt;}
.x81_c01302{left:739.578112pt;}
.xcd_c01302{left:741.311460pt;}
.x50_c01302{left:744.578667pt;}
.x40_c01302{left:746.834723pt;}
.x21_c01302{left:748.978567pt;}
.x79_c01302{left:752.334667pt;}
.x72_c01302{left:785.368864pt;}
.x8a_c01302{left:788.714192pt;}
}





/* 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_c01303 {
    display:none;
  }
  .loading-indicator_c01303.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01303 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_c01303 { 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_c01303" -> "#page-container .classname_c01303")
 */
.pf_c01303 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01303 { /* 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_c01303.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01303 { /* 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_c01303 { /* 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_c01303 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01303 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01303 {overflow:visible;}
  }
}
.c_c01303 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01303 { /* 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_c01303:after { /* webkit #35443 */
  content: '';
}
.t_c01303:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01303 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 */
}
.__c01303 { /* 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_c01303 { /* info for Javascript */
  display:none;
}
.l_c01303 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01303 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01303 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01303: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_c01303 {
    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_c01303.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01303.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_c01303 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01303{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01303;src:url('chunks/assets/font_7ef351174269f1343c6a59b1.woff2')format("woff");}.ff1_c01303{font-family:ff1_c01303;line-height:1.000000;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;}
.m2_c01303{transform:matrix(0.251783,-0.004029,0.003999,0.249968,0,0);-ms-transform:matrix(0.251783,-0.004029,0.003999,0.249968,0,0);-webkit-transform:matrix(0.251783,-0.004029,0.003999,0.249968,0,0);}
.m3_c01303{transform:matrix(0.252733,-0.004044,0.003999,0.249968,0,0);-ms-transform:matrix(0.252733,-0.004044,0.003999,0.249968,0,0);-webkit-transform:matrix(0.252733,-0.004044,0.003999,0.249968,0,0);}
.m6_c01303{transform:matrix(0.253248,-0.004052,0.003999,0.249968,0,0);-ms-transform:matrix(0.253248,-0.004052,0.003999,0.249968,0,0);-webkit-transform:matrix(0.253248,-0.004052,0.003999,0.249968,0,0);}
.m1_c01303{transform:matrix(0.299962,-0.004799,0.003999,0.249968,0,0);-ms-transform:matrix(0.299962,-0.004799,0.003999,0.249968,0,0);-webkit-transform:matrix(0.299962,-0.004799,0.003999,0.249968,0,0);}
.m5_c01303{transform:matrix(0.317499,-0.005080,0.003999,0.249968,0,0);-ms-transform:matrix(0.317499,-0.005080,0.003999,0.249968,0,0);-webkit-transform:matrix(0.317499,-0.005080,0.003999,0.249968,0,0);}
.m0_c01303{transform:matrix(0.357334,-0.005717,0.003999,0.249968,0,0);-ms-transform:matrix(0.357334,-0.005717,0.003999,0.249968,0,0);-webkit-transform:matrix(0.357334,-0.005717,0.003999,0.249968,0,0);}
.m4_c01303{transform:matrix(0.593654,-0.009498,0.003999,0.249968,0,0);-ms-transform:matrix(0.593654,-0.009498,0.003999,0.249968,0,0);-webkit-transform:matrix(0.593654,-0.009498,0.003999,0.249968,0,0);}
.v0_c01303{vertical-align:0.000000px;}
.ls0_c01303{letter-spacing:0.000000px;}
.sc__c01303{text-shadow:none;}
.sc0_c01303{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__c01303{-webkit-text-stroke:0px transparent;}
.sc0_c01303{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01303{word-spacing:0.000000px;}
.fc0_c01303{color:transparent;}
.fs0_c01303{font-size:72.009215px;}
.y0_c01303{bottom:0.000000px;}
.y1_c01303{bottom:679.984500px;}
.y2_c01303{bottom:681.005652px;}
.y3_c01303{bottom:681.729996px;}
.y4_c01303{bottom:682.331292px;}
.y5_c01303{bottom:682.962204px;}
.y6_c01303{bottom:684.058140px;}
.y7_c01303{bottom:684.523476px;}
.h2_c01303{height:72.009215px;}
.h1_c01303{height:1250.250000px;}
.h0_c01303{height:1250.370000px;}
.w1_c01303{width:912.000000px;}
.w0_c01303{width:912.300000px;}
.x0_c01303{left:0.000000px;}
.x1_c01303{left:389.526000px;}
.x2_c01303{left:453.348000px;}
.x3_c01303{left:498.619500px;}
.x4_c01303{left:536.200500px;}
.x5_c01303{left:575.632500px;}
.x6_c01303{left:644.128500px;}
.x7_c01303{left:673.212000px;}
@media print{
.v0_c01303{vertical-align:0.000000pt;}
.ls0_c01303{letter-spacing:0.000000pt;}
.ws0_c01303{word-spacing:0.000000pt;}
.fs0_c01303{font-size:64.008191pt;}
.y0_c01303{bottom:0.000000pt;}
.y1_c01303{bottom:604.430667pt;}
.y2_c01303{bottom:605.338357pt;}
.y3_c01303{bottom:605.982219pt;}
.y4_c01303{bottom:606.516704pt;}
.y5_c01303{bottom:607.077515pt;}
.y6_c01303{bottom:608.051680pt;}
.y7_c01303{bottom:608.465312pt;}
.h2_c01303{height:64.008191pt;}
.h1_c01303{height:1111.333333pt;}
.h0_c01303{height:1111.440000pt;}
.w1_c01303{width:810.666667pt;}
.w0_c01303{width:810.933333pt;}
.x0_c01303{left:0.000000pt;}
.x1_c01303{left:346.245333pt;}
.x2_c01303{left:402.976000pt;}
.x3_c01303{left:443.217333pt;}
.x4_c01303{left:476.622667pt;}
.x5_c01303{left:511.673333pt;}
.x6_c01303{left:572.558667pt;}
.x7_c01303{left:598.410667pt;}
}





/* 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_c01304 {
    display:none;
  }
  .loading-indicator_c01304.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01304 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_c01304 { 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_c01304" -> "#page-container .classname_c01304")
 */
.pf_c01304 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01304 { /* 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_c01304.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01304 { /* 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_c01304 { /* 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_c01304 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01304 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01304 {overflow:visible;}
  }
}
.c_c01304 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01304 { /* 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_c01304:after { /* webkit #35443 */
  content: '';
}
.t_c01304:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01304 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 */
}
.__c01304 { /* 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_c01304 { /* info for Javascript */
  display:none;
}
.l_c01304 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01304 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01304 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01304: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_c01304 {
    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_c01304.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01304.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_c01304 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01304{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01304;src:url('chunks/assets/font_b11a17f404e7258299fdf971.woff2')format("woff");}.ff1_c01304{font-family:ff1_c01304;line-height:1.000000;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;}
.med_c01304{transform:matrix(0.164391,0.004767,-0.007247,0.249895,0,0);-ms-transform:matrix(0.164391,0.004767,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.164391,0.004767,-0.007247,0.249895,0,0);}
.mea_c01304{transform:matrix(0.167475,0.004857,-0.007247,0.249895,0,0);-ms-transform:matrix(0.167475,0.004857,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.167475,0.004857,-0.007247,0.249895,0,0);}
.me2_c01304{transform:matrix(0.168089,0.005043,-0.007497,0.249888,0,0);-ms-transform:matrix(0.168089,0.005043,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.168089,0.005043,-0.007497,0.249888,0,0);}
.me4_c01304{transform:matrix(0.168304,0.005049,-0.007497,0.249888,0,0);-ms-transform:matrix(0.168304,0.005049,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.168304,0.005049,-0.007497,0.249888,0,0);}
.meb_c01304{transform:matrix(0.169844,0.004925,-0.007247,0.249895,0,0);-ms-transform:matrix(0.169844,0.004925,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.169844,0.004925,-0.007247,0.249895,0,0);}
.mef_c01304{transform:matrix(0.171813,0.004983,-0.007247,0.249895,0,0);-ms-transform:matrix(0.171813,0.004983,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.171813,0.004983,-0.007247,0.249895,0,0);}
.mf0_c01304{transform:matrix(0.174986,0.005075,-0.007247,0.249895,0,0);-ms-transform:matrix(0.174986,0.005075,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.174986,0.005075,-0.007247,0.249895,0,0);}
.me6_c01304{transform:matrix(0.177140,0.005314,-0.007497,0.249888,0,0);-ms-transform:matrix(0.177140,0.005314,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.177140,0.005314,-0.007497,0.249888,0,0);}
.mec_c01304{transform:matrix(0.179809,0.005214,-0.007247,0.249895,0,0);-ms-transform:matrix(0.179809,0.005214,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.179809,0.005214,-0.007247,0.249895,0,0);}
.md1_c01304{transform:matrix(0.182542,0.006578,-0.009003,0.249838,0,0);-ms-transform:matrix(0.182542,0.006578,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.182542,0.006578,-0.009003,0.249838,0,0);}
.mee_c01304{transform:matrix(0.182733,0.005299,-0.007247,0.249895,0,0);-ms-transform:matrix(0.182733,0.005299,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.182733,0.005299,-0.007247,0.249895,0,0);}
.me8_c01304{transform:matrix(0.184667,0.005355,-0.007247,0.249895,0,0);-ms-transform:matrix(0.184667,0.005355,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.184667,0.005355,-0.007247,0.249895,0,0);}
.me3_c01304{transform:matrix(0.185187,0.005556,-0.007497,0.249888,0,0);-ms-transform:matrix(0.185187,0.005556,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.185187,0.005556,-0.007497,0.249888,0,0);}
.mdf_c01304{transform:matrix(0.187331,0.005620,-0.007497,0.249888,0,0);-ms-transform:matrix(0.187331,0.005620,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.187331,0.005620,-0.007497,0.249888,0,0);}
.m95_c01304{transform:matrix(0.189965,0.006465,-0.008504,0.249855,0,0);-ms-transform:matrix(0.189965,0.006465,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.189965,0.006465,-0.008504,0.249855,0,0);}
.me9_c01304{transform:matrix(0.191425,0.005551,-0.007247,0.249895,0,0);-ms-transform:matrix(0.191425,0.005551,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.191425,0.005551,-0.007247,0.249895,0,0);}
.me1_c01304{transform:matrix(0.191974,0.005759,-0.007497,0.249888,0,0);-ms-transform:matrix(0.191974,0.005759,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.191974,0.005759,-0.007497,0.249888,0,0);}
.me5_c01304{transform:matrix(0.192933,0.005788,-0.007497,0.249888,0,0);-ms-transform:matrix(0.192933,0.005788,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.192933,0.005788,-0.007497,0.249888,0,0);}
.m79_c01304{transform:matrix(0.192936,0.006180,-0.008004,0.249872,0,0);-ms-transform:matrix(0.192936,0.006180,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.192936,0.006180,-0.008004,0.249872,0,0);}
.m2f_c01304{transform:matrix(0.193936,0.006212,-0.008004,0.249872,0,0);-ms-transform:matrix(0.193936,0.006212,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.193936,0.006212,-0.008004,0.249872,0,0);}
.me0_c01304{transform:matrix(0.195737,0.005872,-0.007497,0.249888,0,0);-ms-transform:matrix(0.195737,0.005872,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.195737,0.005872,-0.007497,0.249888,0,0);}
.m83_c01304{transform:matrix(0.195959,0.006277,-0.008004,0.249872,0,0);-ms-transform:matrix(0.195959,0.006277,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.195959,0.006277,-0.008004,0.249872,0,0);}
.m30_c01304{transform:matrix(0.198433,0.006356,-0.008004,0.249872,0,0);-ms-transform:matrix(0.198433,0.006356,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.198433,0.006356,-0.008004,0.249872,0,0);}
.m28_c01304{transform:matrix(0.199957,0.006405,-0.008004,0.249872,0,0);-ms-transform:matrix(0.199957,0.006405,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.199957,0.006405,-0.008004,0.249872,0,0);}
.m71_c01304{transform:matrix(0.204630,0.006555,-0.008004,0.249872,0,0);-ms-transform:matrix(0.204630,0.006555,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.204630,0.006555,-0.008004,0.249872,0,0);}
.m75_c01304{transform:matrix(0.205739,0.006590,-0.008004,0.249872,0,0);-ms-transform:matrix(0.205739,0.006590,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.205739,0.006590,-0.008004,0.249872,0,0);}
.m76_c01304{transform:matrix(0.206819,0.006625,-0.008004,0.249872,0,0);-ms-transform:matrix(0.206819,0.006625,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.206819,0.006625,-0.008004,0.249872,0,0);}
.m2b_c01304{transform:matrix(0.207034,0.006632,-0.008004,0.249872,0,0);-ms-transform:matrix(0.207034,0.006632,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.207034,0.006632,-0.008004,0.249872,0,0);}
.m2c_c01304{transform:matrix(0.207928,0.006660,-0.008004,0.249872,0,0);-ms-transform:matrix(0.207928,0.006660,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.207928,0.006660,-0.008004,0.249872,0,0);}
.mc8_c01304{transform:matrix(0.208030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208030,0.000000,0.000000,0.250000,0,0);}
.m73_c01304{transform:matrix(0.211721,0.006782,-0.008004,0.249872,0,0);-ms-transform:matrix(0.211721,0.006782,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.211721,0.006782,-0.008004,0.249872,0,0);}
.m31_c01304{transform:matrix(0.212306,0.006801,-0.008004,0.249872,0,0);-ms-transform:matrix(0.212306,0.006801,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.212306,0.006801,-0.008004,0.249872,0,0);}
.m85_c01304{transform:matrix(0.213191,0.006829,-0.008004,0.249872,0,0);-ms-transform:matrix(0.213191,0.006829,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.213191,0.006829,-0.008004,0.249872,0,0);}
.m18_c01304{transform:matrix(0.214820,0.006881,-0.008004,0.249872,0,0);-ms-transform:matrix(0.214820,0.006881,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.214820,0.006881,-0.008004,0.249872,0,0);}
.m88_c01304{transform:matrix(0.214950,0.006885,-0.008004,0.249872,0,0);-ms-transform:matrix(0.214950,0.006885,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.214950,0.006885,-0.008004,0.249872,0,0);}
.m8f_c01304{transform:matrix(0.215594,0.006906,-0.008004,0.249872,0,0);-ms-transform:matrix(0.215594,0.006906,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.215594,0.006906,-0.008004,0.249872,0,0);}
.m72_c01304{transform:matrix(0.215779,0.006912,-0.008004,0.249872,0,0);-ms-transform:matrix(0.215779,0.006912,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.215779,0.006912,-0.008004,0.249872,0,0);}
.m32_c01304{transform:matrix(0.216469,0.006934,-0.008004,0.249872,0,0);-ms-transform:matrix(0.216469,0.006934,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.216469,0.006934,-0.008004,0.249872,0,0);}
.m5a_c01304{transform:matrix(0.216629,0.006939,-0.008004,0.249872,0,0);-ms-transform:matrix(0.216629,0.006939,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.216629,0.006939,-0.008004,0.249872,0,0);}
.m8b_c01304{transform:matrix(0.216754,0.006943,-0.008004,0.249872,0,0);-ms-transform:matrix(0.216754,0.006943,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.216754,0.006943,-0.008004,0.249872,0,0);}
.m45_c01304{transform:matrix(0.217413,0.006964,-0.008004,0.249872,0,0);-ms-transform:matrix(0.217413,0.006964,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.217413,0.006964,-0.008004,0.249872,0,0);}
.m60_c01304{transform:matrix(0.217833,0.006978,-0.008004,0.249872,0,0);-ms-transform:matrix(0.217833,0.006978,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.217833,0.006978,-0.008004,0.249872,0,0);}
.mc4_c01304{transform:matrix(0.218350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218350,0.000000,0.000000,0.250000,0,0);}
.m7b_c01304{transform:matrix(0.219203,0.007022,-0.008004,0.249872,0,0);-ms-transform:matrix(0.219203,0.007022,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.219203,0.007022,-0.008004,0.249872,0,0);}
.m2a_c01304{transform:matrix(0.219542,0.007032,-0.008004,0.249872,0,0);-ms-transform:matrix(0.219542,0.007032,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.219542,0.007032,-0.008004,0.249872,0,0);}
.mf6_c01304{transform:matrix(0.220132,0.006384,-0.007247,0.249895,0,0);-ms-transform:matrix(0.220132,0.006384,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.220132,0.006384,-0.007247,0.249895,0,0);}
.m6f_c01304{transform:matrix(0.221866,0.007107,-0.008004,0.249872,0,0);-ms-transform:matrix(0.221866,0.007107,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.221866,0.007107,-0.008004,0.249872,0,0);}
.mac_c01304{transform:matrix(0.223083,0.007369,-0.008254,0.249864,0,0);-ms-transform:matrix(0.223083,0.007369,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.223083,0.007369,-0.008254,0.249864,0,0);}
.m1e_c01304{transform:matrix(0.223156,0.007148,-0.008004,0.249872,0,0);-ms-transform:matrix(0.223156,0.007148,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.223156,0.007148,-0.008004,0.249872,0,0);}
.m82_c01304{transform:matrix(0.223770,0.007168,-0.008004,0.249872,0,0);-ms-transform:matrix(0.223770,0.007168,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.223770,0.007168,-0.008004,0.249872,0,0);}
.m8c_c01304{transform:matrix(0.223955,0.007174,-0.008004,0.249872,0,0);-ms-transform:matrix(0.223955,0.007174,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.223955,0.007174,-0.008004,0.249872,0,0);}
.m77_c01304{transform:matrix(0.224145,0.007180,-0.008004,0.249872,0,0);-ms-transform:matrix(0.224145,0.007180,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.224145,0.007180,-0.008004,0.249872,0,0);}
.m24_c01304{transform:matrix(0.224635,0.007196,-0.008004,0.249872,0,0);-ms-transform:matrix(0.224635,0.007196,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.224635,0.007196,-0.008004,0.249872,0,0);}
.m7e_c01304{transform:matrix(0.225554,0.007225,-0.008004,0.249872,0,0);-ms-transform:matrix(0.225554,0.007225,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.225554,0.007225,-0.008004,0.249872,0,0);}
.m9b_c01304{transform:matrix(0.225894,0.007688,-0.008504,0.249855,0,0);-ms-transform:matrix(0.225894,0.007688,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.225894,0.007688,-0.008504,0.249855,0,0);}
.m11_c01304{transform:matrix(0.226629,0.007259,-0.008004,0.249872,0,0);-ms-transform:matrix(0.226629,0.007259,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.226629,0.007259,-0.008004,0.249872,0,0);}
.m5d_c01304{transform:matrix(0.226934,0.007269,-0.008004,0.249872,0,0);-ms-transform:matrix(0.226934,0.007269,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.226934,0.007269,-0.008004,0.249872,0,0);}
.m2d_c01304{transform:matrix(0.227573,0.007290,-0.008004,0.249872,0,0);-ms-transform:matrix(0.227573,0.007290,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.227573,0.007290,-0.008004,0.249872,0,0);}
.m8a_c01304{transform:matrix(0.227633,0.007292,-0.008004,0.249872,0,0);-ms-transform:matrix(0.227633,0.007292,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.227633,0.007292,-0.008004,0.249872,0,0);}
.mf7_c01304{transform:matrix(0.228074,0.006614,-0.007247,0.249895,0,0);-ms-transform:matrix(0.228074,0.006614,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.228074,0.006614,-0.007247,0.249895,0,0);}
.m7c_c01304{transform:matrix(0.228393,0.007316,-0.008004,0.249872,0,0);-ms-transform:matrix(0.228393,0.007316,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.228393,0.007316,-0.008004,0.249872,0,0);}
.m90_c01304{transform:matrix(0.228463,0.007318,-0.008004,0.249872,0,0);-ms-transform:matrix(0.228463,0.007318,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.228463,0.007318,-0.008004,0.249872,0,0);}
.m20_c01304{transform:matrix(0.229078,0.007338,-0.008004,0.249872,0,0);-ms-transform:matrix(0.229078,0.007338,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.229078,0.007338,-0.008004,0.249872,0,0);}
.mb5_c01304{transform:matrix(0.229376,0.008266,-0.009003,0.249838,0,0);-ms-transform:matrix(0.229376,0.008266,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.229376,0.008266,-0.009003,0.249838,0,0);}
.m86_c01304{transform:matrix(0.229832,0.007362,-0.008004,0.249872,0,0);-ms-transform:matrix(0.229832,0.007362,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.229832,0.007362,-0.008004,0.249872,0,0);}
.m70_c01304{transform:matrix(0.230067,0.007370,-0.008004,0.249872,0,0);-ms-transform:matrix(0.230067,0.007370,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.230067,0.007370,-0.008004,0.249872,0,0);}
.m61_c01304{transform:matrix(0.230172,0.007373,-0.008004,0.249872,0,0);-ms-transform:matrix(0.230172,0.007373,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.230172,0.007373,-0.008004,0.249872,0,0);}
.m6_c01304{transform:matrix(0.230777,0.007392,-0.008004,0.249872,0,0);-ms-transform:matrix(0.230777,0.007392,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.230777,0.007392,-0.008004,0.249872,0,0);}
.m65_c01304{transform:matrix(0.231042,0.007401,-0.008004,0.249872,0,0);-ms-transform:matrix(0.231042,0.007401,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.231042,0.007401,-0.008004,0.249872,0,0);}
.m14_c01304{transform:matrix(0.231411,0.007413,-0.008004,0.249872,0,0);-ms-transform:matrix(0.231411,0.007413,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.231411,0.007413,-0.008004,0.249872,0,0);}
.m9_c01304{transform:matrix(0.231506,0.007416,-0.008004,0.249872,0,0);-ms-transform:matrix(0.231506,0.007416,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.231506,0.007416,-0.008004,0.249872,0,0);}
.m62_c01304{transform:matrix(0.232256,0.007440,-0.008004,0.249872,0,0);-ms-transform:matrix(0.232256,0.007440,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.232256,0.007440,-0.008004,0.249872,0,0);}
.m9e_c01304{transform:matrix(0.232715,0.007920,-0.008504,0.249855,0,0);-ms-transform:matrix(0.232715,0.007920,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.232715,0.007920,-0.008504,0.249855,0,0);}
.mc_c01304{transform:matrix(0.232866,0.007459,-0.008004,0.249872,0,0);-ms-transform:matrix(0.232866,0.007459,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.232866,0.007459,-0.008004,0.249872,0,0);}
.m80_c01304{transform:matrix(0.232926,0.007461,-0.008004,0.249872,0,0);-ms-transform:matrix(0.232926,0.007461,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.232926,0.007461,-0.008004,0.249872,0,0);}
.mde_c01304{transform:matrix(0.233397,0.006769,-0.007247,0.249895,0,0);-ms-transform:matrix(0.233397,0.006769,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.233397,0.006769,-0.007247,0.249895,0,0);}
.me_c01304{transform:matrix(0.233615,0.007483,-0.008004,0.249872,0,0);-ms-transform:matrix(0.233615,0.007483,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.233615,0.007483,-0.008004,0.249872,0,0);}
.m26_c01304{transform:matrix(0.234415,0.007509,-0.008004,0.249872,0,0);-ms-transform:matrix(0.234415,0.007509,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.234415,0.007509,-0.008004,0.249872,0,0);}
.mf5_c01304{transform:matrix(0.234836,0.006810,-0.007247,0.249895,0,0);-ms-transform:matrix(0.234836,0.006810,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.234836,0.006810,-0.007247,0.249895,0,0);}
.m5b_c01304{transform:matrix(0.234870,0.007523,-0.008004,0.249872,0,0);-ms-transform:matrix(0.234870,0.007523,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.234870,0.007523,-0.008004,0.249872,0,0);}
.m49_c01304{transform:matrix(0.234959,0.007526,-0.008004,0.249872,0,0);-ms-transform:matrix(0.234959,0.007526,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.234959,0.007526,-0.008004,0.249872,0,0);}
.ma5_c01304{transform:matrix(0.235012,0.007285,-0.007746,0.249880,0,0);-ms-transform:matrix(0.235012,0.007285,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.235012,0.007285,-0.007746,0.249880,0,0);}
.m4c_c01304{transform:matrix(0.235759,0.007552,-0.008004,0.249872,0,0);-ms-transform:matrix(0.235759,0.007552,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.235759,0.007552,-0.008004,0.249872,0,0);}
.m4_c01304{transform:matrix(0.235850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235850,0.000000,0.000000,0.250000,0,0);}
.m15_c01304{transform:matrix(0.235989,0.007559,-0.008004,0.249872,0,0);-ms-transform:matrix(0.235989,0.007559,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.235989,0.007559,-0.008004,0.249872,0,0);}
.m97_c01304{transform:matrix(0.236093,0.008035,-0.008504,0.249855,0,0);-ms-transform:matrix(0.236093,0.008035,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.236093,0.008035,-0.008504,0.249855,0,0);}
.m74_c01304{transform:matrix(0.236584,0.007578,-0.008004,0.249872,0,0);-ms-transform:matrix(0.236584,0.007578,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.236584,0.007578,-0.008004,0.249872,0,0);}
.m58_c01304{transform:matrix(0.236724,0.007583,-0.008004,0.249872,0,0);-ms-transform:matrix(0.236724,0.007583,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.236724,0.007583,-0.008004,0.249872,0,0);}
.m53_c01304{transform:matrix(0.237063,0.007594,-0.008004,0.249872,0,0);-ms-transform:matrix(0.237063,0.007594,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.237063,0.007594,-0.008004,0.249872,0,0);}
.me7_c01304{transform:matrix(0.237640,0.006892,-0.007247,0.249895,0,0);-ms-transform:matrix(0.237640,0.006892,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.237640,0.006892,-0.007247,0.249895,0,0);}
.md9_c01304{transform:matrix(0.238115,0.006905,-0.007247,0.249895,0,0);-ms-transform:matrix(0.238115,0.006905,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.238115,0.006905,-0.007247,0.249895,0,0);}
.m29_c01304{transform:matrix(0.238318,0.007634,-0.008004,0.249872,0,0);-ms-transform:matrix(0.238318,0.007634,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.238318,0.007634,-0.008004,0.249872,0,0);}
.m4a_c01304{transform:matrix(0.238413,0.007637,-0.008004,0.249872,0,0);-ms-transform:matrix(0.238413,0.007637,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.238413,0.007637,-0.008004,0.249872,0,0);}
.ma9_c01304{transform:matrix(0.238420,0.007391,-0.007746,0.249880,0,0);-ms-transform:matrix(0.238420,0.007391,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.238420,0.007391,-0.007746,0.249880,0,0);}
.m87_c01304{transform:matrix(0.239097,0.007659,-0.008004,0.249872,0,0);-ms-transform:matrix(0.239097,0.007659,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.239097,0.007659,-0.008004,0.249872,0,0);}
.m9a_c01304{transform:matrix(0.239132,0.008139,-0.008504,0.249855,0,0);-ms-transform:matrix(0.239132,0.008139,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.239132,0.008139,-0.008504,0.249855,0,0);}
.m51_c01304{transform:matrix(0.239172,0.007661,-0.008004,0.249872,0,0);-ms-transform:matrix(0.239172,0.007661,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.239172,0.007661,-0.008004,0.249872,0,0);}
.m2e_c01304{transform:matrix(0.239457,0.007670,-0.008004,0.249872,0,0);-ms-transform:matrix(0.239457,0.007670,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.239457,0.007670,-0.008004,0.249872,0,0);}
.mdb_c01304{transform:matrix(0.240534,0.006975,-0.007247,0.249895,0,0);-ms-transform:matrix(0.240534,0.006975,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.240534,0.006975,-0.007247,0.249895,0,0);}
.mb4_c01304{transform:matrix(0.240874,0.008680,-0.009003,0.249838,0,0);-ms-transform:matrix(0.240874,0.008680,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.240874,0.008680,-0.009003,0.249838,0,0);}
.mfa_c01304{transform:matrix(0.240899,0.006986,-0.007247,0.249895,0,0);-ms-transform:matrix(0.240899,0.006986,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.240899,0.006986,-0.007247,0.249895,0,0);}
.m3a_c01304{transform:matrix(0.240906,0.007717,-0.008004,0.249872,0,0);-ms-transform:matrix(0.240906,0.007717,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.240906,0.007717,-0.008004,0.249872,0,0);}
.mdd_c01304{transform:matrix(0.241473,0.007003,-0.007247,0.249895,0,0);-ms-transform:matrix(0.241473,0.007003,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.241473,0.007003,-0.007247,0.249895,0,0);}
.mcd_c01304{transform:matrix(0.241778,0.008713,-0.009003,0.249838,0,0);-ms-transform:matrix(0.241778,0.008713,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.241778,0.008713,-0.009003,0.249838,0,0);}
.mf9_c01304{transform:matrix(0.241998,0.007018,-0.007247,0.249895,0,0);-ms-transform:matrix(0.241998,0.007018,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.241998,0.007018,-0.007247,0.249895,0,0);}
.mc6_c01304{transform:matrix(0.242850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242850,0.000000,0.000000,0.250000,0,0);}
.ma8_c01304{transform:matrix(0.243198,0.007539,-0.007746,0.249880,0,0);-ms-transform:matrix(0.243198,0.007539,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.243198,0.007539,-0.007746,0.249880,0,0);}
.m78_c01304{transform:matrix(0.243690,0.007806,-0.008004,0.249872,0,0);-ms-transform:matrix(0.243690,0.007806,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.243690,0.007806,-0.008004,0.249872,0,0);}
.mfb_c01304{transform:matrix(0.243713,0.007068,-0.007247,0.249895,0,0);-ms-transform:matrix(0.243713,0.007068,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.243713,0.007068,-0.007247,0.249895,0,0);}
.mbe_c01304{transform:matrix(0.244030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244030,0.000000,0.000000,0.250000,0,0);}
.m22_c01304{transform:matrix(0.244055,0.007818,-0.008004,0.249872,0,0);-ms-transform:matrix(0.244055,0.007818,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.244055,0.007818,-0.008004,0.249872,0,0);}
.ma7_c01304{transform:matrix(0.244742,0.007587,-0.007746,0.249880,0,0);-ms-transform:matrix(0.244742,0.007587,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.244742,0.007587,-0.007746,0.249880,0,0);}
.m7f_c01304{transform:matrix(0.244779,0.007841,-0.008004,0.249872,0,0);-ms-transform:matrix(0.244779,0.007841,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.244779,0.007841,-0.008004,0.249872,0,0);}
.m96_c01304{transform:matrix(0.245043,0.008340,-0.008504,0.249855,0,0);-ms-transform:matrix(0.245043,0.008340,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.245043,0.008340,-0.008504,0.249855,0,0);}
.mab_c01304{transform:matrix(0.245046,0.008095,-0.008254,0.249864,0,0);-ms-transform:matrix(0.245046,0.008095,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.245046,0.008095,-0.008254,0.249864,0,0);}
.m33_c01304{transform:matrix(0.245534,0.007865,-0.008004,0.249872,0,0);-ms-transform:matrix(0.245534,0.007865,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.245534,0.007865,-0.008004,0.249872,0,0);}
.m19_c01304{transform:matrix(0.245549,0.007865,-0.008004,0.249872,0,0);-ms-transform:matrix(0.245549,0.007865,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.245549,0.007865,-0.008004,0.249872,0,0);}
.md4_c01304{transform:matrix(0.245727,0.007126,-0.007247,0.249895,0,0);-ms-transform:matrix(0.245727,0.007126,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.245727,0.007126,-0.007247,0.249895,0,0);}
.m5c_c01304{transform:matrix(0.245764,0.007872,-0.008004,0.249872,0,0);-ms-transform:matrix(0.245764,0.007872,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.245764,0.007872,-0.008004,0.249872,0,0);}
.m5e_c01304{transform:matrix(0.246499,0.007896,-0.008004,0.249872,0,0);-ms-transform:matrix(0.246499,0.007896,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.246499,0.007896,-0.008004,0.249872,0,0);}
.m7a_c01304{transform:matrix(0.246614,0.007900,-0.008004,0.249872,0,0);-ms-transform:matrix(0.246614,0.007900,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.246614,0.007900,-0.008004,0.249872,0,0);}
.m47_c01304{transform:matrix(0.246833,0.007907,-0.008004,0.249872,0,0);-ms-transform:matrix(0.246833,0.007907,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.246833,0.007907,-0.008004,0.249872,0,0);}
.m63_c01304{transform:matrix(0.246953,0.007910,-0.008004,0.249872,0,0);-ms-transform:matrix(0.246953,0.007910,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.246953,0.007910,-0.008004,0.249872,0,0);}
.mba_c01304{transform:matrix(0.247090,0.008904,-0.009003,0.249838,0,0);-ms-transform:matrix(0.247090,0.008904,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.247090,0.008904,-0.009003,0.249838,0,0);}
.m81_c01304{transform:matrix(0.247248,0.007920,-0.008004,0.249872,0,0);-ms-transform:matrix(0.247248,0.007920,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.247248,0.007920,-0.008004,0.249872,0,0);}
.mb2_c01304{transform:matrix(0.247524,0.008920,-0.009003,0.249838,0,0);-ms-transform:matrix(0.247524,0.008920,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.247524,0.008920,-0.009003,0.249838,0,0);}
.m10_c01304{transform:matrix(0.247643,0.007933,-0.008004,0.249872,0,0);-ms-transform:matrix(0.247643,0.007933,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.247643,0.007933,-0.008004,0.249872,0,0);}
.m4e_c01304{transform:matrix(0.248343,0.007955,-0.008004,0.249872,0,0);-ms-transform:matrix(0.248343,0.007955,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.248343,0.007955,-0.008004,0.249872,0,0);}
.m1d_c01304{transform:matrix(0.248518,0.007961,-0.008004,0.249872,0,0);-ms-transform:matrix(0.248518,0.007961,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.248518,0.007961,-0.008004,0.249872,0,0);}
.m84_c01304{transform:matrix(0.250077,0.008010,-0.008004,0.249872,0,0);-ms-transform:matrix(0.250077,0.008010,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.250077,0.008010,-0.008004,0.249872,0,0);}
.mb6_c01304{transform:matrix(0.250263,0.009018,-0.009003,0.249838,0,0);-ms-transform:matrix(0.250263,0.009018,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.250263,0.009018,-0.009003,0.249838,0,0);}
.mf4_c01304{transform:matrix(0.250420,0.007262,-0.007247,0.249895,0,0);-ms-transform:matrix(0.250420,0.007262,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.250420,0.007262,-0.007247,0.249895,0,0);}
.m98_c01304{transform:matrix(0.250875,0.008538,-0.008504,0.249855,0,0);-ms-transform:matrix(0.250875,0.008538,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.250875,0.008538,-0.008504,0.249855,0,0);}
.m91_c01304{transform:matrix(0.251321,0.008050,-0.008004,0.249872,0,0);-ms-transform:matrix(0.251321,0.008050,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.251321,0.008050,-0.008004,0.249872,0,0);}
.m36_c01304{transform:matrix(0.252301,0.008082,-0.008004,0.249872,0,0);-ms-transform:matrix(0.252301,0.008082,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.252301,0.008082,-0.008004,0.249872,0,0);}
.m9c_c01304{transform:matrix(0.252444,0.008592,-0.008504,0.249855,0,0);-ms-transform:matrix(0.252444,0.008592,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.252444,0.008592,-0.008504,0.249855,0,0);}
.m55_c01304{transform:matrix(0.252680,0.008094,-0.008004,0.249872,0,0);-ms-transform:matrix(0.252680,0.008094,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.252680,0.008094,-0.008004,0.249872,0,0);}
.mbc_c01304{transform:matrix(0.252880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252880,0.000000,0.000000,0.250000,0,0);}
.m99_c01304{transform:matrix(0.253288,0.008620,-0.008504,0.249855,0,0);-ms-transform:matrix(0.253288,0.008620,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.253288,0.008620,-0.008504,0.249855,0,0);}
.md8_c01304{transform:matrix(0.253913,0.007363,-0.007247,0.249895,0,0);-ms-transform:matrix(0.253913,0.007363,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.253913,0.007363,-0.007247,0.249895,0,0);}
.ma4_c01304{transform:matrix(0.254048,0.007875,-0.007746,0.249880,0,0);-ms-transform:matrix(0.254048,0.007875,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.254048,0.007875,-0.007746,0.249880,0,0);}
.m7d_c01304{transform:matrix(0.254065,0.008138,-0.008004,0.249872,0,0);-ms-transform:matrix(0.254065,0.008138,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.254065,0.008138,-0.008004,0.249872,0,0);}
.m7_c01304{transform:matrix(0.254120,0.008140,-0.008004,0.249872,0,0);-ms-transform:matrix(0.254120,0.008140,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.254120,0.008140,-0.008004,0.249872,0,0);}
.m8e_c01304{transform:matrix(0.254275,0.008145,-0.008004,0.249872,0,0);-ms-transform:matrix(0.254275,0.008145,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.254275,0.008145,-0.008004,0.249872,0,0);}
.m6a_c01304{transform:matrix(0.254435,0.008150,-0.008004,0.249872,0,0);-ms-transform:matrix(0.254435,0.008150,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.254435,0.008150,-0.008004,0.249872,0,0);}
.m9d_c01304{transform:matrix(0.254568,0.008664,-0.008504,0.249855,0,0);-ms-transform:matrix(0.254568,0.008664,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.254568,0.008664,-0.008504,0.249855,0,0);}
.m8d_c01304{transform:matrix(0.254574,0.008155,-0.008004,0.249872,0,0);-ms-transform:matrix(0.254574,0.008155,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.254574,0.008155,-0.008004,0.249872,0,0);}
.md2_c01304{transform:matrix(0.255144,0.009194,-0.009003,0.249838,0,0);-ms-transform:matrix(0.255144,0.009194,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.255144,0.009194,-0.009003,0.249838,0,0);}
.mce_c01304{transform:matrix(0.255484,0.009207,-0.009003,0.249838,0,0);-ms-transform:matrix(0.255484,0.009207,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.255484,0.009207,-0.009003,0.249838,0,0);}
.m89_c01304{transform:matrix(0.255594,0.008187,-0.008004,0.249872,0,0);-ms-transform:matrix(0.255594,0.008187,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.255594,0.008187,-0.008004,0.249872,0,0);}
.m0_c01304{transform:matrix(0.255605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255605,0.000000,0.000000,0.250000,0,0);}
.md0_c01304{transform:matrix(0.255714,0.009215,-0.009003,0.249838,0,0);-ms-transform:matrix(0.255714,0.009215,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.255714,0.009215,-0.009003,0.249838,0,0);}
.m5f_c01304{transform:matrix(0.256104,0.008204,-0.008004,0.249872,0,0);-ms-transform:matrix(0.256104,0.008204,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.256104,0.008204,-0.008004,0.249872,0,0);}
.m12_c01304{transform:matrix(0.256189,0.008206,-0.008004,0.249872,0,0);-ms-transform:matrix(0.256189,0.008206,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.256189,0.008206,-0.008004,0.249872,0,0);}
.mda_c01304{transform:matrix(0.256787,0.007447,-0.007247,0.249895,0,0);-ms-transform:matrix(0.256787,0.007447,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.256787,0.007447,-0.007247,0.249895,0,0);}
.mcf_c01304{transform:matrix(0.256958,0.009260,-0.009003,0.249838,0,0);-ms-transform:matrix(0.256958,0.009260,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.256958,0.009260,-0.009003,0.249838,0,0);}
.m4d_c01304{transform:matrix(0.256968,0.008231,-0.008004,0.249872,0,0);-ms-transform:matrix(0.256968,0.008231,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.256968,0.008231,-0.008004,0.249872,0,0);}
.m38_c01304{transform:matrix(0.258123,0.008268,-0.008004,0.249872,0,0);-ms-transform:matrix(0.258123,0.008268,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.258123,0.008268,-0.008004,0.249872,0,0);}
.m52_c01304{transform:matrix(0.258178,0.008270,-0.008004,0.249872,0,0);-ms-transform:matrix(0.258178,0.008270,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.258178,0.008270,-0.008004,0.249872,0,0);}
.m64_c01304{transform:matrix(0.258213,0.008271,-0.008004,0.249872,0,0);-ms-transform:matrix(0.258213,0.008271,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.258213,0.008271,-0.008004,0.249872,0,0);}
.mb7_c01304{transform:matrix(0.258242,0.009306,-0.009003,0.249838,0,0);-ms-transform:matrix(0.258242,0.009306,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.258242,0.009306,-0.009003,0.249838,0,0);}
.m2_c01304{transform:matrix(0.259145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259145,0.000000,0.000000,0.250000,0,0);}
.m6c_c01304{transform:matrix(0.259197,0.008303,-0.008004,0.249872,0,0);-ms-transform:matrix(0.259197,0.008303,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.259197,0.008303,-0.008004,0.249872,0,0);}
.md6_c01304{transform:matrix(0.260021,0.007541,-0.007247,0.249895,0,0);-ms-transform:matrix(0.260021,0.007541,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.260021,0.007541,-0.007247,0.249895,0,0);}
.m37_c01304{transform:matrix(0.260027,0.008329,-0.008004,0.249872,0,0);-ms-transform:matrix(0.260027,0.008329,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.260027,0.008329,-0.008004,0.249872,0,0);}
.m56_c01304{transform:matrix(0.260057,0.008330,-0.008004,0.249872,0,0);-ms-transform:matrix(0.260057,0.008330,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.260057,0.008330,-0.008004,0.249872,0,0);}
.m66_c01304{transform:matrix(0.260541,0.008346,-0.008004,0.249872,0,0);-ms-transform:matrix(0.260541,0.008346,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.260541,0.008346,-0.008004,0.249872,0,0);}
.m25_c01304{transform:matrix(0.260821,0.008355,-0.008004,0.249872,0,0);-ms-transform:matrix(0.260821,0.008355,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.260821,0.008355,-0.008004,0.249872,0,0);}
.m6b_c01304{transform:matrix(0.260911,0.008358,-0.008004,0.249872,0,0);-ms-transform:matrix(0.260911,0.008358,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.260911,0.008358,-0.008004,0.249872,0,0);}
.m6e_c01304{transform:matrix(0.261021,0.008361,-0.008004,0.249872,0,0);-ms-transform:matrix(0.261021,0.008361,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.261021,0.008361,-0.008004,0.249872,0,0);}
.md3_c01304{transform:matrix(0.262994,0.009477,-0.009003,0.249838,0,0);-ms-transform:matrix(0.262994,0.009477,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.262994,0.009477,-0.009003,0.249838,0,0);}
.mc5_c01304{transform:matrix(0.263360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263360,0.000000,0.000000,0.250000,0,0);}
.ma1_c01304{transform:matrix(0.263668,0.008174,-0.007746,0.249880,0,0);-ms-transform:matrix(0.263668,0.008174,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.263668,0.008174,-0.007746,0.249880,0,0);}
.maa_c01304{transform:matrix(0.263943,0.008182,-0.007746,0.249880,0,0);-ms-transform:matrix(0.263943,0.008182,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.263943,0.008182,-0.007746,0.249880,0,0);}
.m43_c01304{transform:matrix(0.264130,0.008461,-0.008004,0.249872,0,0);-ms-transform:matrix(0.264130,0.008461,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.264130,0.008461,-0.008004,0.249872,0,0);}
.ma2_c01304{transform:matrix(0.264558,0.008201,-0.007746,0.249880,0,0);-ms-transform:matrix(0.264558,0.008201,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.264558,0.008201,-0.007746,0.249880,0,0);}
.mdc_c01304{transform:matrix(0.264814,0.007680,-0.007247,0.249895,0,0);-ms-transform:matrix(0.264814,0.007680,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.264814,0.007680,-0.007247,0.249895,0,0);}
.m39_c01304{transform:matrix(0.265204,0.008495,-0.008004,0.249872,0,0);-ms-transform:matrix(0.265204,0.008495,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.265204,0.008495,-0.008004,0.249872,0,0);}
.ma_c01304{transform:matrix(0.265889,0.008517,-0.008004,0.249872,0,0);-ms-transform:matrix(0.265889,0.008517,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.265889,0.008517,-0.008004,0.249872,0,0);}
.m59_c01304{transform:matrix(0.265999,0.008520,-0.008004,0.249872,0,0);-ms-transform:matrix(0.265999,0.008520,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.265999,0.008520,-0.008004,0.249872,0,0);}
.mf8_c01304{transform:matrix(0.266218,0.007720,-0.007247,0.249895,0,0);-ms-transform:matrix(0.266218,0.007720,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.266218,0.007720,-0.007247,0.249895,0,0);}
.m41_c01304{transform:matrix(0.266248,0.008528,-0.008004,0.249872,0,0);-ms-transform:matrix(0.266248,0.008528,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.266248,0.008528,-0.008004,0.249872,0,0);}
.m8_c01304{transform:matrix(0.266303,0.008530,-0.008004,0.249872,0,0);-ms-transform:matrix(0.266303,0.008530,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.266303,0.008530,-0.008004,0.249872,0,0);}
.m16_c01304{transform:matrix(0.266383,0.008533,-0.008004,0.249872,0,0);-ms-transform:matrix(0.266383,0.008533,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.266383,0.008533,-0.008004,0.249872,0,0);}
.m50_c01304{transform:matrix(0.266653,0.008541,-0.008004,0.249872,0,0);-ms-transform:matrix(0.266653,0.008541,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.266653,0.008541,-0.008004,0.249872,0,0);}
.md_c01304{transform:matrix(0.266743,0.008544,-0.008004,0.249872,0,0);-ms-transform:matrix(0.266743,0.008544,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.266743,0.008544,-0.008004,0.249872,0,0);}
.m1a_c01304{transform:matrix(0.267038,0.008554,-0.008004,0.249872,0,0);-ms-transform:matrix(0.267038,0.008554,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.267038,0.008554,-0.008004,0.249872,0,0);}
.m21_c01304{transform:matrix(0.267373,0.008564,-0.008004,0.249872,0,0);-ms-transform:matrix(0.267373,0.008564,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.267373,0.008564,-0.008004,0.249872,0,0);}
.m13_c01304{transform:matrix(0.267388,0.008565,-0.008004,0.249872,0,0);-ms-transform:matrix(0.267388,0.008565,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.267388,0.008565,-0.008004,0.249872,0,0);}
.mc1_c01304{transform:matrix(0.268345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268345,0.000000,0.000000,0.250000,0,0);}
.m1b_c01304{transform:matrix(0.268577,0.008603,-0.008004,0.249872,0,0);-ms-transform:matrix(0.268577,0.008603,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.268577,0.008603,-0.008004,0.249872,0,0);}
.m57_c01304{transform:matrix(0.268662,0.008606,-0.008004,0.249872,0,0);-ms-transform:matrix(0.268662,0.008606,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.268662,0.008606,-0.008004,0.249872,0,0);}
.m1f_c01304{transform:matrix(0.269372,0.008629,-0.008004,0.249872,0,0);-ms-transform:matrix(0.269372,0.008629,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.269372,0.008629,-0.008004,0.249872,0,0);}
.ma6_c01304{transform:matrix(0.269381,0.008351,-0.007746,0.249880,0,0);-ms-transform:matrix(0.269381,0.008351,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.269381,0.008351,-0.007746,0.249880,0,0);}
.mb9_c01304{transform:matrix(0.269410,0.009708,-0.009003,0.249838,0,0);-ms-transform:matrix(0.269410,0.009708,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.269410,0.009708,-0.009003,0.249838,0,0);}
.m68_c01304{transform:matrix(0.269617,0.008636,-0.008004,0.249872,0,0);-ms-transform:matrix(0.269617,0.008636,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.269617,0.008636,-0.008004,0.249872,0,0);}
.m4f_c01304{transform:matrix(0.270027,0.008649,-0.008004,0.249872,0,0);-ms-transform:matrix(0.270027,0.008649,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.270027,0.008649,-0.008004,0.249872,0,0);}
.m54_c01304{transform:matrix(0.270036,0.008650,-0.008004,0.249872,0,0);-ms-transform:matrix(0.270036,0.008650,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.270036,0.008650,-0.008004,0.249872,0,0);}
.m3c_c01304{transform:matrix(0.270061,0.008651,-0.008004,0.249872,0,0);-ms-transform:matrix(0.270061,0.008651,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.270061,0.008651,-0.008004,0.249872,0,0);}
.m17_c01304{transform:matrix(0.270581,0.008667,-0.008004,0.249872,0,0);-ms-transform:matrix(0.270581,0.008667,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.270581,0.008667,-0.008004,0.249872,0,0);}
.m23_c01304{transform:matrix(0.271176,0.008686,-0.008004,0.249872,0,0);-ms-transform:matrix(0.271176,0.008686,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.271176,0.008686,-0.008004,0.249872,0,0);}
.mf3_c01304{transform:matrix(0.271726,0.007880,-0.007247,0.249895,0,0);-ms-transform:matrix(0.271726,0.007880,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.271726,0.007880,-0.007247,0.249895,0,0);}
.mcb_c01304{transform:matrix(0.272075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272075,0.000000,0.000000,0.250000,0,0);}
.ma0_c01304{transform:matrix(0.272514,0.008448,-0.007746,0.249880,0,0);-ms-transform:matrix(0.272514,0.008448,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.272514,0.008448,-0.007746,0.249880,0,0);}
.mca_c01304{transform:matrix(0.272690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272690,0.000000,0.000000,0.250000,0,0);}
.m6d_c01304{transform:matrix(0.273075,0.008747,-0.008004,0.249872,0,0);-ms-transform:matrix(0.273075,0.008747,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.273075,0.008747,-0.008004,0.249872,0,0);}
.m35_c01304{transform:matrix(0.273195,0.008751,-0.008004,0.249872,0,0);-ms-transform:matrix(0.273195,0.008751,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.273195,0.008751,-0.008004,0.249872,0,0);}
.m46_c01304{transform:matrix(0.274099,0.008780,-0.008004,0.249872,0,0);-ms-transform:matrix(0.274099,0.008780,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.274099,0.008780,-0.008004,0.249872,0,0);}
.md7_c01304{transform:matrix(0.274305,0.007955,-0.007247,0.249895,0,0);-ms-transform:matrix(0.274305,0.007955,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.274305,0.007955,-0.007247,0.249895,0,0);}
.mbf_c01304{transform:matrix(0.274420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274420,0.000000,0.000000,0.250000,0,0);}
.m69_c01304{transform:matrix(0.274549,0.008794,-0.008004,0.249872,0,0);-ms-transform:matrix(0.274549,0.008794,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.274549,0.008794,-0.008004,0.249872,0,0);}
.mc0_c01304{transform:matrix(0.274730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274730,0.000000,0.000000,0.250000,0,0);}
.m4b_c01304{transform:matrix(0.274739,0.008800,-0.008004,0.249872,0,0);-ms-transform:matrix(0.274739,0.008800,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.274739,0.008800,-0.008004,0.249872,0,0);}
.mf_c01304{transform:matrix(0.274819,0.008803,-0.008004,0.249872,0,0);-ms-transform:matrix(0.274819,0.008803,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.274819,0.008803,-0.008004,0.249872,0,0);}
.md5_c01304{transform:matrix(0.275434,0.007988,-0.007247,0.249895,0,0);-ms-transform:matrix(0.275434,0.007988,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.275434,0.007988,-0.007247,0.249895,0,0);}
.m34_c01304{transform:matrix(0.275784,0.008834,-0.008004,0.249872,0,0);-ms-transform:matrix(0.275784,0.008834,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.275784,0.008834,-0.008004,0.249872,0,0);}
.mbd_c01304{transform:matrix(0.276565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276565,0.000000,0.000000,0.250000,0,0);}
.mb0_c01304{transform:matrix(0.277279,0.009159,-0.008254,0.249864,0,0);-ms-transform:matrix(0.277279,0.009159,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.277279,0.009159,-0.008254,0.249864,0,0);}
.m67_c01304{transform:matrix(0.279202,0.008943,-0.008004,0.249872,0,0);-ms-transform:matrix(0.279202,0.008943,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.279202,0.008943,-0.008004,0.249872,0,0);}
.mb_c01304{transform:matrix(0.279767,0.008961,-0.008004,0.249872,0,0);-ms-transform:matrix(0.279767,0.008961,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.279767,0.008961,-0.008004,0.249872,0,0);}
.ma3_c01304{transform:matrix(0.280065,0.008682,-0.007746,0.249880,0,0);-ms-transform:matrix(0.280065,0.008682,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.280065,0.008682,-0.007746,0.249880,0,0);}
.mc9_c01304{transform:matrix(0.280295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280295,0.000000,0.000000,0.250000,0,0);}
.m48_c01304{transform:matrix(0.280591,0.008988,-0.008004,0.249872,0,0);-ms-transform:matrix(0.280591,0.008988,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.280591,0.008988,-0.008004,0.249872,0,0);}
.mb3_c01304{transform:matrix(0.281172,0.010132,-0.009003,0.249838,0,0);-ms-transform:matrix(0.281172,0.010132,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.281172,0.010132,-0.009003,0.249838,0,0);}
.mb8_c01304{transform:matrix(0.282542,0.010182,-0.009003,0.249838,0,0);-ms-transform:matrix(0.282542,0.010182,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.282542,0.010182,-0.009003,0.249838,0,0);}
.mc2_c01304{transform:matrix(0.283295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283295,0.000000,0.000000,0.250000,0,0);}
.mbb_c01304{transform:matrix(0.283480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283480,0.000000,0.000000,0.250000,0,0);}
.mb1_c01304{transform:matrix(0.284280,0.009391,-0.008254,0.249864,0,0);-ms-transform:matrix(0.284280,0.009391,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.284280,0.009391,-0.008254,0.249864,0,0);}
.mc7_c01304{transform:matrix(0.285845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285845,0.000000,0.000000,0.250000,0,0);}
.m44_c01304{transform:matrix(0.288327,0.009236,-0.008004,0.249872,0,0);-ms-transform:matrix(0.288327,0.009236,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.288327,0.009236,-0.008004,0.249872,0,0);}
.m3f_c01304{transform:matrix(0.289282,0.009266,-0.008004,0.249872,0,0);-ms-transform:matrix(0.289282,0.009266,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.289282,0.009266,-0.008004,0.249872,0,0);}
.mc3_c01304{transform:matrix(0.294440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294440,0.000000,0.000000,0.250000,0,0);}
.m3d_c01304{transform:matrix(0.294739,0.009441,-0.008004,0.249872,0,0);-ms-transform:matrix(0.294739,0.009441,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.294739,0.009441,-0.008004,0.249872,0,0);}
.mcc_c01304{transform:matrix(0.296185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296185,0.000000,0.000000,0.250000,0,0);}
.m40_c01304{transform:matrix(0.296813,0.009508,-0.008004,0.249872,0,0);-ms-transform:matrix(0.296813,0.009508,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.296813,0.009508,-0.008004,0.249872,0,0);}
.mf2_c01304{transform:matrix(0.303352,0.008797,-0.007247,0.249895,0,0);-ms-transform:matrix(0.303352,0.008797,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.303352,0.008797,-0.007247,0.249895,0,0);}
.m1c_c01304{transform:matrix(0.304569,0.009756,-0.008004,0.249872,0,0);-ms-transform:matrix(0.304569,0.009756,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.304569,0.009756,-0.008004,0.249872,0,0);}
.m42_c01304{transform:matrix(0.304764,0.009762,-0.008004,0.249872,0,0);-ms-transform:matrix(0.304764,0.009762,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.304764,0.009762,-0.008004,0.249872,0,0);}
.m3b_c01304{transform:matrix(0.305218,0.009777,-0.008004,0.249872,0,0);-ms-transform:matrix(0.305218,0.009777,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.305218,0.009777,-0.008004,0.249872,0,0);}
.mad_c01304{transform:matrix(0.305668,0.010097,-0.008254,0.249864,0,0);-ms-transform:matrix(0.305668,0.010097,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.305668,0.010097,-0.008254,0.249864,0,0);}
.maf_c01304{transform:matrix(0.321884,0.010633,-0.008254,0.249864,0,0);-ms-transform:matrix(0.321884,0.010633,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.321884,0.010633,-0.008254,0.249864,0,0);}
.mf1_c01304{transform:matrix(0.324649,0.009415,-0.007247,0.249895,0,0);-ms-transform:matrix(0.324649,0.009415,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.324649,0.009415,-0.007247,0.249895,0,0);}
.m9f_c01304{transform:matrix(0.339783,0.011564,-0.008504,0.249855,0,0);-ms-transform:matrix(0.339783,0.011564,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.339783,0.011564,-0.008504,0.249855,0,0);}
.m3_c01304{transform:matrix(0.340195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340195,0.000000,0.000000,0.250000,0,0);}
.m1_c01304{transform:matrix(0.341625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341625,0.000000,0.000000,0.250000,0,0);}
.mae_c01304{transform:matrix(0.391596,0.012936,-0.008254,0.249864,0,0);-ms-transform:matrix(0.391596,0.012936,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.391596,0.012936,-0.008254,0.249864,0,0);}
.m92_c01304{transform:matrix(0.396010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396010,0.000000,0.000000,0.250000,0,0);}
.m27_c01304{transform:matrix(0.401569,0.012863,-0.008004,0.249872,0,0);-ms-transform:matrix(0.401569,0.012863,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.401569,0.012863,-0.008004,0.249872,0,0);}
.m3e_c01304{transform:matrix(0.428525,0.013727,-0.008004,0.249872,0,0);-ms-transform:matrix(0.428525,0.013727,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.428525,0.013727,-0.008004,0.249872,0,0);}
.m93_c01304{transform:matrix(0.429795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.429795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.429795,0.000000,0.000000,0.250000,0,0);}
.m5_c01304{transform:matrix(0.526100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526100,0.000000,0.000000,0.250000,0,0);}
.m94_c01304{transform:matrix(3.856840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.856840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.856840,0.000000,0.000000,0.250000,0,0);}
.v0_c01304{vertical-align:0.000000px;}
.ls0_c01304{letter-spacing:0.000000px;}
.sc__c01304{text-shadow:none;}
.sc0_c01304{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__c01304{-webkit-text-stroke:0px transparent;}
.sc0_c01304{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01304{word-spacing:0.000000px;}
.fc0_c01304{color:transparent;}
.fs6_c01304{font-size:18.000000px;}
.fs0_c01304{font-size:42.000000px;}
.fs1_c01304{font-size:54.000000px;}
.fs4_c01304{font-size:65.967817px;}
.fs9_c01304{font-size:65.969963px;}
.fsb_c01304{font-size:66.000000px;}
.fs2_c01304{font-size:71.964891px;}
.fsa_c01304{font-size:71.974688px;}
.fsc_c01304{font-size:72.000000px;}
.fsf_c01304{font-size:72.030270px;}
.fs8_c01304{font-size:72.034588px;}
.fs5_c01304{font-size:77.961966px;}
.fs7_c01304{font-size:77.967116px;}
.fsd_c01304{font-size:77.972578px;}
.fs3_c01304{font-size:83.959040px;}
.fse_c01304{font-size:84.035315px;}
.fs11_c01304{font-size:102.042882px;}
.fs10_c01304{font-size:102.045890px;}
.y0_c01304{bottom:0.000000px;}
.yff_c01304{bottom:207.430357px;}
.yfe_c01304{bottom:208.554315px;}
.yfd_c01304{bottom:210.426004px;}
.yfc_c01304{bottom:212.336580px;}
.yfb_c01304{bottom:213.447205px;}
.yfa_c01304{bottom:214.558919px;}
.yf9_c01304{bottom:216.101685px;}
.yf8_c01304{bottom:217.214181px;}
.yf7_c01304{bottom:219.868095px;}
.yf6_c01304{bottom:222.475403px;}
.yf5_c01304{bottom:224.641239px;}
.yf4_c01304{bottom:243.491757px;}
.yf3_c01304{bottom:245.097820px;}
.yf2_c01304{bottom:247.041357px;}
.yf1_c01304{bottom:248.012320px;}
.yf0_c01304{bottom:248.623495px;}
.yef_c01304{bottom:249.955639px;}
.yee_c01304{bottom:251.209744px;}
.yed_c01304{bottom:253.481749px;}
.yec_c01304{bottom:255.706122px;}
.yeb_c01304{bottom:257.593500px;}
.yea_c01304{bottom:280.423215px;}
.ye9_c01304{bottom:283.745160px;}
.ye8_c01304{bottom:284.757930px;}
.ye7_c01304{bottom:286.411275px;}
.ye6_c01304{bottom:287.725050px;}
.ye5_c01304{bottom:290.067345px;}
.ye4_c01304{bottom:292.375800px;}
.ye3_c01304{bottom:294.313500px;}
.ye2_c01304{bottom:315.735465px;}
.ye1_c01304{bottom:317.634840px;}
.ye0_c01304{bottom:319.555006px;}
.ydf_c01304{bottom:320.684292px;}
.yde_c01304{bottom:321.400467px;}
.ydd_c01304{bottom:322.943494px;}
.ydc_c01304{bottom:324.046138px;}
.ydb_c01304{bottom:326.737372px;}
.yda_c01304{bottom:329.327520px;}
.yd9_c01304{bottom:331.559449px;}
.yd8_c01304{bottom:369.363000px;}
.yd7_c01304{bottom:420.200232px;}
.yd6_c01304{bottom:423.040470px;}
.yd5_c01304{bottom:424.508190px;}
.yd4_c01304{bottom:428.156160px;}
.yd3_c01304{bottom:431.395350px;}
.yd2_c01304{bottom:435.352308px;}
.yd1_c01304{bottom:437.685000px;}
.y2_c01304{bottom:438.885000px;}
.yd0_c01304{bottom:454.006500px;}
.ycf_c01304{bottom:455.641500px;}
.yce_c01304{bottom:457.572000px;}
.ycd_c01304{bottom:461.157000px;}
.ycc_c01304{bottom:462.780000px;}
.ycb_c01304{bottom:465.555000px;}
.yca_c01304{bottom:466.770000px;}
.yc9_c01304{bottom:467.965500px;}
.yc8_c01304{bottom:469.098000px;}
.yc7_c01304{bottom:473.058000px;}
.y1_c01304{bottom:474.937500px;}
.yc6_c01304{bottom:492.588000px;}
.yc5_c01304{bottom:495.030000px;}
.yc4_c01304{bottom:497.442000px;}
.yc3_c01304{bottom:499.837500px;}
.yc2_c01304{bottom:502.548000px;}
.yc1_c01304{bottom:506.263500px;}
.yc0_c01304{bottom:540.648000px;}
.ybf_c01304{bottom:556.203528px;}
.ybe_c01304{bottom:558.649026px;}
.ybd_c01304{bottom:562.656690px;}
.ybc_c01304{bottom:564.990408px;}
.ybb_c01304{bottom:566.225442px;}
.yba_c01304{bottom:567.411228px;}
.yb9_c01304{bottom:568.992834px;}
.yb8_c01304{bottom:573.744996px;}
.yb7_c01304{bottom:575.388000px;}
.yb6_c01304{bottom:618.525207px;}
.yb5_c01304{bottom:620.440708px;}
.yb4_c01304{bottom:621.528223px;}
.yb3_c01304{bottom:625.881056px;}
.yb2_c01304{bottom:629.870854px;}
.yb1_c01304{bottom:630.938866px;}
.yb0_c01304{bottom:632.079000px;}
.yaf_c01304{bottom:645.854840px;}
.yae_c01304{bottom:646.909739px;}
.yad_c01304{bottom:648.266329px;}
.yac_c01304{bottom:649.313370px;}
.yab_c01304{bottom:651.724070px;}
.yaa_c01304{bottom:653.054016px;}
.ya9_c01304{bottom:654.452178px;}
.ya8_c01304{bottom:657.234366px;}
.ya7_c01304{bottom:659.269392px;}
.ya6_c01304{bottom:661.013142px;}
.ya5_c01304{bottom:665.022000px;}
.ya4_c01304{bottom:680.090991px;}
.ya3_c01304{bottom:680.896944px;}
.ya2_c01304{bottom:684.638865px;}
.ya1_c01304{bottom:687.699630px;}
.ya0_c01304{bottom:688.853454px;}
.y9f_c01304{bottom:691.077462px;}
.y9e_c01304{bottom:694.082586px;}
.y9d_c01304{bottom:696.744480px;}
.y9c_c01304{bottom:698.230773px;}
.y9b_c01304{bottom:701.208357px;}
.y9a_c01304{bottom:702.279000px;}
.y98_c01304{bottom:716.460219px;}
.y97_c01304{bottom:718.308735px;}
.y96_c01304{bottom:719.488050px;}
.y95_c01304{bottom:722.484239px;}
.y94_c01304{bottom:725.874243px;}
.y93_c01304{bottom:727.031468px;}
.y92_c01304{bottom:728.496738px;}
.y91_c01304{bottom:729.286088px;}
.y90_c01304{bottom:731.935580px;}
.y8f_c01304{bottom:733.018325px;}
.y8e_c01304{bottom:735.606489px;}
.y8d_c01304{bottom:736.781004px;}
.y8c_c01304{bottom:749.600600px;}
.y8b_c01304{bottom:752.022207px;}
.y8a_c01304{bottom:752.809440px;}
.y89_c01304{bottom:754.389725px;}
.y88_c01304{bottom:757.198613px;}
.y87_c01304{bottom:759.202487px;}
.y86_c01304{bottom:761.603780px;}
.y85_c01304{bottom:763.165862px;}
.y84_c01304{bottom:766.738970px;}
.y83_c01304{bottom:767.983568px;}
.y82_c01304{bottom:769.524749px;}
.y81_c01304{bottom:772.326282px;}
.y80_c01304{bottom:773.477735px;}
.y7f_c01304{bottom:790.097465px;}
.y7e_c01304{bottom:792.329082px;}
.y7d_c01304{bottom:793.486595px;}
.y7c_c01304{bottom:795.253191px;}
.y7b_c01304{bottom:798.410013px;}
.y7a_c01304{bottom:800.191836px;}
.y79_c01304{bottom:801.763671px;}
.y78_c01304{bottom:803.247672px;}
.y77_c01304{bottom:806.582888px;}
.y76_c01304{bottom:808.832372px;}
.y75_c01304{bottom:821.381732px;}
.y74_c01304{bottom:824.098191px;}
.y73_c01304{bottom:826.019778px;}
.y72_c01304{bottom:828.315218px;}
.y71_c01304{bottom:829.901277px;}
.y70_c01304{bottom:832.986885px;}
.y6f_c01304{bottom:834.177951px;}
.y6e_c01304{bottom:836.881872px;}
.y6d_c01304{bottom:838.043445px;}
.y6c_c01304{bottom:841.529663px;}
.y6b_c01304{bottom:844.186187px;}
.y6a_c01304{bottom:857.869715px;}
.y69_c01304{bottom:860.394323px;}
.y68_c01304{bottom:862.840979px;}
.y67_c01304{bottom:864.263939px;}
.y66_c01304{bottom:864.963971px;}
.y65_c01304{bottom:866.301587px;}
.y64_c01304{bottom:869.921267px;}
.y63_c01304{bottom:872.056451px;}
.y62_c01304{bottom:873.462659px;}
.y61_c01304{bottom:875.929043px;}
.y60_c01304{bottom:877.363091px;}
.y5f_c01304{bottom:878.723651px;}
.y5e_c01304{bottom:893.303139px;}
.y5d_c01304{bottom:894.788916px;}
.y5c_c01304{bottom:897.464339px;}
.y5b_c01304{bottom:899.357852px;}
.y5a_c01304{bottom:900.859479px;}
.y59_c01304{bottom:904.224465px;}
.y58_c01304{bottom:905.381689px;}
.y57_c01304{bottom:907.602891px;}
.y56_c01304{bottom:908.779470px;}
.y55_c01304{bottom:911.028378px;}
.y54_c01304{bottom:914.350527px;}
.y53_c01304{bottom:929.720589px;}
.y52_c01304{bottom:931.431689px;}
.y51_c01304{bottom:932.777544px;}
.y50_c01304{bottom:935.569794px;}
.y4f_c01304{bottom:936.617115px;}
.y4e_c01304{bottom:938.995940px;}
.y4d_c01304{bottom:940.043261px;}
.y4c_c01304{bottom:943.139469px;}
.y4b_c01304{bottom:943.808826px;}
.y4a_c01304{bottom:946.843232px;}
.y49_c01304{bottom:948.892802px;}
.y48_c01304{bottom:962.664494px;}
.y47_c01304{bottom:963.736670px;}
.y46_c01304{bottom:966.909805px;}
.y45_c01304{bottom:968.615438px;}
.y44_c01304{bottom:971.852654px;}
.y43_c01304{bottom:974.016253px;}
.y42_c01304{bottom:975.437678px;}
.y41_c01304{bottom:977.923405px;}
.y40_c01304{bottom:979.332686px;}
.y3f_c01304{bottom:983.167981px;}
.y3e_c01304{bottom:996.883038px;}
.y3d_c01304{bottom:999.349710px;}
.y3c_c01304{bottom:1001.192142px;}
.y3b_c01304{bottom:1003.309518px;}
.y3a_c01304{bottom:1004.750814px;}
.y39_c01304{bottom:1007.952606px;}
.y38_c01304{bottom:1009.015902px;}
.y37_c01304{bottom:1011.497070px;}
.y36_c01304{bottom:1012.551438px;}
.y35_c01304{bottom:1015.713150px;}
.y34_c01304{bottom:1017.441918px;}
.y33_c01304{bottom:1032.970239px;}
.y32_c01304{bottom:1034.906559px;}
.y31_c01304{bottom:1035.987951px;}
.y30_c01304{bottom:1037.050671px;}
.y2f_c01304{bottom:1039.168863px;}
.y2e_c01304{bottom:1042.376271px;}
.y2d_c01304{bottom:1044.520095px;}
.y2c_c01304{bottom:1045.566639px;}
.y2b_c01304{bottom:1046.288703px;}
.y2a_c01304{bottom:1048.309359px;}
.y29_c01304{bottom:1052.238543px;}
.y28_c01304{bottom:1053.602703px;}
.y27_c01304{bottom:1069.607733px;}
.y26_c01304{bottom:1070.587585px;}
.y25_c01304{bottom:1072.913880px;}
.y24_c01304{bottom:1073.909130px;}
.y99_c01304{bottom:1075.680000px;}
.y23_c01304{bottom:1076.908549px;}
.y22_c01304{bottom:1077.921405px;}
.y21_c01304{bottom:1078.594002px;}
.y20_c01304{bottom:1080.575286px;}
.y1f_c01304{bottom:1081.569240px;}
.y1e_c01304{bottom:1083.899134px;}
.y1d_c01304{bottom:1084.862139px;}
.y1c_c01304{bottom:1086.797796px;}
.y1b_c01304{bottom:1102.089273px;}
.y1a_c01304{bottom:1104.426309px;}
.y19_c01304{bottom:1106.453076px;}
.y18_c01304{bottom:1107.475340px;}
.y17_c01304{bottom:1108.120203px;}
.y16_c01304{bottom:1111.087377px;}
.y15_c01304{bottom:1113.140341px;}
.y14_c01304{bottom:1114.442021px;}
.y13_c01304{bottom:1115.463756px;}
.y12_c01304{bottom:1117.784531px;}
.y11_c01304{bottom:1119.421716px;}
.y10_c01304{bottom:1120.417782px;}
.yf_c01304{bottom:1121.340344px;}
.ye_c01304{bottom:1139.510928px;}
.yd_c01304{bottom:1142.712720px;}
.yc_c01304{bottom:1143.784896px;}
.yb_c01304{bottom:1146.240720px;}
.ya_c01304{bottom:1147.338000px;}
.y9_c01304{bottom:1150.551552px;}
.y8_c01304{bottom:1152.680880px;}
.y7_c01304{bottom:1153.717968px;}
.y6_c01304{bottom:1155.853440px;}
.y5_c01304{bottom:1157.598384px;}
.y4_c01304{bottom:1158.582000px;}
.y3_c01304{bottom:1209.468000px;}
.h8_c01304{height:18.000000px;}
.h2_c01304{height:42.000000px;}
.h3_c01304{height:54.000000px;}
.h6_c01304{height:65.967817px;}
.hb_c01304{height:65.969963px;}
.hd_c01304{height:66.000000px;}
.h4_c01304{height:71.964891px;}
.hc_c01304{height:71.974688px;}
.he_c01304{height:72.000000px;}
.h11_c01304{height:72.030270px;}
.ha_c01304{height:72.034588px;}
.h7_c01304{height:77.961966px;}
.h9_c01304{height:77.967116px;}
.hf_c01304{height:77.972578px;}
.h5_c01304{height:83.959040px;}
.h10_c01304{height:84.035315px;}
.h13_c01304{height:102.042882px;}
.h12_c01304{height:102.045890px;}
.h1_c01304{height:1250.250000px;}
.h0_c01304{height:1250.370000px;}
.w1_c01304{width:912.000000px;}
.w0_c01304{width:912.300000px;}
.x0_c01304{left:0.000000px;}
.x1_c01304{left:87.210000px;}
.x3_c01304{left:121.500000px;}
.x2_c01304{left:122.580000px;}
.xa8_c01304{left:168.828000px;}
.xa3_c01304{left:170.793000px;}
.xa0_c01304{left:174.832500px;}
.x98_c01304{left:176.310000px;}
.x8e_c01304{left:178.743000px;}
.x76_c01304{left:182.081322px;}
.x6a_c01304{left:184.381821px;}
.x5c_c01304{left:186.171245px;}
.x4c_c01304{left:188.322749px;}
.x42_c01304{left:189.699215px;}
.x3a_c01304{left:190.750617px;}
.x2f_c01304{left:192.074987px;}
.x1b_c01304{left:195.067616px;}
.x6_c01304{left:196.990500px;}
.x8f_c01304{left:213.257950px;}
.x7e_c01304{left:214.503010px;}
.x6b_c01304{left:216.348239px;}
.x7_c01304{left:227.697762px;}
.x55_c01304{left:230.126042px;}
.xa9_c01304{left:233.910000px;}
.xa4_c01304{left:235.807578px;}
.x24_c01304{left:236.882687px;}
.xa1_c01304{left:239.564703px;}
.x99_c01304{left:244.080000px;}
.x30_c01304{left:246.044963px;}
.x64_c01304{left:252.024413px;}
.x43_c01304{left:255.744717px;}
.x11_c01304{left:260.032226px;}
.x5d_c01304{left:261.986550px;}
.x56_c01304{left:274.895228px;}
.x8_c01304{left:282.172733px;}
.x4d_c01304{left:285.948279px;}
.x92_c01304{left:287.064000px;}
.x1c_c01304{left:291.601184px;}
.x77_c01304{left:292.663566px;}
.x6c_c01304{left:294.114948px;}
.x9a_c01304{left:296.838000px;}
.x7f_c01304{left:301.991435px;}
.x3b_c01304{left:310.483764px;}
.xa5_c01304{left:311.974029px;}
.x12_c01304{left:314.561649px;}
.x9e_c01304{left:317.566500px;}
.x78_c01304{left:324.498681px;}
.x93_c01304{left:332.657361px;}
.x6d_c01304{left:336.890153px;}
.x31_c01304{left:344.749659px;}
.x9_c01304{left:348.839499px;}
.x65_c01304{left:350.011034px;}
.x4e_c01304{left:352.035398px;}
.x3c_c01304{left:354.479724px;}
.x25_c01304{left:359.546900px;}
.x5e_c01304{left:361.502873px;}
.x87_c01304{left:367.146000px;}
.x1d_c01304{left:369.160995px;}
.x6e_c01304{left:371.436651px;}
.x44_c01304{left:375.071067px;}
.x32_c01304{left:377.665710px;}
.xa_c01304{left:381.216090px;}
.x9b_c01304{left:384.292500px;}
.x4f_c01304{left:386.612576px;}
.xaf_c01304{left:387.853029px;}
.xaa_c01304{left:388.957500px;}
.xa6_c01304{left:390.063000px;}
.x13_c01304{left:391.836746px;}
.x66_c01304{left:393.623591px;}
.x5f_c01304{left:394.674996px;}
.x57_c01304{left:395.792709px;}
.x1e_c01304{left:402.251486px;}
.xb0_c01304{left:420.572288px;}
.x26_c01304{left:422.629254px;}
.x80_c01304{left:423.874929px;}
.x14_c01304{left:425.841369px;}
.x3d_c01304{left:432.081045px;}
.xa7_c01304{left:433.855500px;}
.x4_c01304{left:439.830000px;}
.x27_c01304{left:445.171190px;}
.xb_c01304{left:447.691048px;}
.x50_c01304{left:451.881561px;}
.x33_c01304{left:455.124674px;}
.x9c_c01304{left:461.547000px;}
.x5_c01304{left:463.320000px;}
.x94_c01304{left:464.529857px;}
.xb1_c01304{left:465.954219px;}
.x15_c01304{left:469.194260px;}
.x6f_c01304{left:470.621682px;}
.x60_c01304{left:471.876318px;}
.x45_c01304{left:474.868389px;}
.x3e_c01304{left:476.456126px;}
.x28_c01304{left:477.842985px;}
.x51_c01304{left:485.901345px;}
.x34_c01304{left:488.319446px;}
.x1f_c01304{left:490.628190px;}
.x67_c01304{left:492.139134px;}
.x90_c01304{left:498.143779px;}
.xab_c01304{left:499.213500px;}
.x79_c01304{left:502.627487px;}
.x61_c01304{left:505.875518px;}
.x46_c01304{left:508.594686px;}
.x81_c01304{left:512.172543px;}
.x70_c01304{left:513.955731px;}
.x88_c01304{left:522.540000px;}
.x20_c01304{left:524.355591px;}
.x91_c01304{left:531.065824px;}
.xac_c01304{left:532.695000px;}
.x16_c01304{left:537.546711px;}
.x9d_c01304{left:539.341500px;}
.x95_c01304{left:541.324985px;}
.x29_c01304{left:544.770491px;}
.xc_c01304{left:548.014125px;}
.x89_c01304{left:567.642000px;}
.x58_c01304{left:575.452370px;}
.x82_c01304{left:577.519131px;}
.x71_c01304{left:580.585482px;}
.xd_c01304{left:582.269835px;}
.x47_c01304{left:585.246908px;}
.x35_c01304{left:588.275390px;}
.x62_c01304{left:593.962386px;}
.xad_c01304{left:599.713500px;}
.x7a_c01304{left:602.230893px;}
.x9f_c01304{left:606.309000px;}
.x83_c01304{left:611.421195px;}
.x59_c01304{left:617.211069px;}
.x48_c01304{left:618.973205px;}
.x21_c01304{left:624.222015px;}
.x52_c01304{left:628.886540px;}
.x36_c01304{left:633.270849px;}
.x17_c01304{left:636.359642px;}
.x5a_c01304{left:639.065193px;}
.x96_c01304{left:640.357853px;}
.xb2_c01304{left:642.570141px;}
.x2a_c01304{left:644.901759px;}
.xae_c01304{left:655.095000px;}
.x18_c01304{left:657.849524px;}
.xe_c01304{left:658.937591px;}
.xa2_c01304{left:660.034812px;}
.x68_c01304{left:670.832826px;}
.xb3_c01304{left:675.632856px;}
.x5b_c01304{left:683.488226px;}
.x53_c01304{left:684.534281px;}
.x8a_c01304{left:688.308000px;}
.x7b_c01304{left:690.289125px;}
.xf_c01304{left:692.409585px;}
.x3f_c01304{left:698.310549px;}
.x37_c01304{left:699.372681px;}
.x84_c01304{left:701.353673px;}
.x63_c01304{left:704.741829px;}
.x49_c01304{left:708.953517px;}
.x2b_c01304{left:711.029066px;}
.x72_c01304{left:714.162666px;}
.x8b_c01304{left:722.083500px;}
.x7c_c01304{left:724.951718px;}
.x22_c01304{left:734.800389px;}
.x69_c01304{left:736.426986px;}
.x2c_c01304{left:744.205856px;}
.x4a_c01304{left:752.327493px;}
.x38_c01304{left:756.891105px;}
.x73_c01304{left:758.018145px;}
.x19_c01304{left:759.358400px;}
.x54_c01304{left:763.140551px;}
.x8c_c01304{left:765.844500px;}
.x23_c01304{left:767.403819px;}
.x2d_c01304{left:777.965562px;}
.x74_c01304{left:779.878476px;}
.x10_c01304{left:792.365529px;}
.x40_c01304{left:797.371889px;}
.x8d_c01304{left:799.873500px;}
.x4b_c01304{left:807.478565px;}
.x85_c01304{left:811.300116px;}
.x97_c01304{left:819.433098px;}
.x41_c01304{left:830.843883px;}
.x39_c01304{left:833.897522px;}
.x86_c01304{left:834.980911px;}
.x1a_c01304{left:837.187989px;}
.x2e_c01304{left:838.415052px;}
.x75_c01304{left:847.095591px;}
.x7d_c01304{left:906.120000px;}
@media print{
.v0_c01304{vertical-align:0.000000pt;}
.ls0_c01304{letter-spacing:0.000000pt;}
.ws0_c01304{word-spacing:0.000000pt;}
.fs6_c01304{font-size:16.000000pt;}
.fs0_c01304{font-size:37.333333pt;}
.fs1_c01304{font-size:48.000000pt;}
.fs4_c01304{font-size:58.638060pt;}
.fs9_c01304{font-size:58.639967pt;}
.fsb_c01304{font-size:58.666667pt;}
.fs2_c01304{font-size:63.968792pt;}
.fsa_c01304{font-size:63.977500pt;}
.fsc_c01304{font-size:64.000000pt;}
.fsf_c01304{font-size:64.026906pt;}
.fs8_c01304{font-size:64.030745pt;}
.fs5_c01304{font-size:69.299525pt;}
.fs7_c01304{font-size:69.304103pt;}
.fsd_c01304{font-size:69.308958pt;}
.fs3_c01304{font-size:74.630258pt;}
.fse_c01304{font-size:74.698057pt;}
.fs11_c01304{font-size:90.704784pt;}
.fs10_c01304{font-size:90.707457pt;}
.y0_c01304{bottom:0.000000pt;}
.yff_c01304{bottom:184.382540pt;}
.yfe_c01304{bottom:185.381613pt;}
.yfd_c01304{bottom:187.045337pt;}
.yfc_c01304{bottom:188.743627pt;}
.yfb_c01304{bottom:189.730849pt;}
.yfa_c01304{bottom:190.719039pt;}
.yf9_c01304{bottom:192.090387pt;}
.yf8_c01304{bottom:193.079272pt;}
.yf7_c01304{bottom:195.438307pt;}
.yf6_c01304{bottom:197.755913pt;}
.yf5_c01304{bottom:199.681101pt;}
.yf4_c01304{bottom:216.437117pt;}
.yf3_c01304{bottom:217.864729pt;}
.yf2_c01304{bottom:219.592317pt;}
.yf1_c01304{bottom:220.455396pt;}
.yf0_c01304{bottom:220.998663pt;}
.yef_c01304{bottom:222.182791pt;}
.yee_c01304{bottom:223.297551pt;}
.yed_c01304{bottom:225.317111pt;}
.yec_c01304{bottom:227.294331pt;}
.yeb_c01304{bottom:228.972000pt;}
.yea_c01304{bottom:249.265080pt;}
.ye9_c01304{bottom:252.217920pt;}
.ye8_c01304{bottom:253.118160pt;}
.ye7_c01304{bottom:254.587800pt;}
.ye6_c01304{bottom:255.755600pt;}
.ye5_c01304{bottom:257.837640pt;}
.ye4_c01304{bottom:259.889600pt;}
.ye3_c01304{bottom:261.612000pt;}
.ye2_c01304{bottom:280.653747pt;}
.ye1_c01304{bottom:282.342080pt;}
.ye0_c01304{bottom:284.048895pt;}
.ydf_c01304{bottom:285.052704pt;}
.yde_c01304{bottom:285.689304pt;}
.ydd_c01304{bottom:287.060884pt;}
.ydc_c01304{bottom:288.041012pt;}
.ydb_c01304{bottom:290.433220pt;}
.yda_c01304{bottom:292.735573pt;}
.yd9_c01304{bottom:294.719511pt;}
.yd8_c01304{bottom:328.322667pt;}
.yd7_c01304{bottom:373.511317pt;}
.yd6_c01304{bottom:376.035973pt;}
.yd5_c01304{bottom:377.340613pt;}
.yd4_c01304{bottom:380.583253pt;}
.yd3_c01304{bottom:383.462533pt;}
.yd2_c01304{bottom:386.979829pt;}
.yd1_c01304{bottom:389.053333pt;}
.y2_c01304{bottom:390.120000pt;}
.yd0_c01304{bottom:403.561333pt;}
.ycf_c01304{bottom:405.014667pt;}
.yce_c01304{bottom:406.730667pt;}
.ycd_c01304{bottom:409.917333pt;}
.ycc_c01304{bottom:411.360000pt;}
.ycb_c01304{bottom:413.826667pt;}
.yca_c01304{bottom:414.906667pt;}
.yc9_c01304{bottom:415.969333pt;}
.yc8_c01304{bottom:416.976000pt;}
.yc7_c01304{bottom:420.496000pt;}
.y1_c01304{bottom:422.166667pt;}
.yc6_c01304{bottom:437.856000pt;}
.yc5_c01304{bottom:440.026667pt;}
.yc4_c01304{bottom:442.170667pt;}
.yc3_c01304{bottom:444.300000pt;}
.yc2_c01304{bottom:446.709333pt;}
.yc1_c01304{bottom:450.012000pt;}
.yc0_c01304{bottom:480.576000pt;}
.ybf_c01304{bottom:494.403136pt;}
.ybe_c01304{bottom:496.576912pt;}
.ybd_c01304{bottom:500.139280pt;}
.ybc_c01304{bottom:502.213696pt;}
.ybb_c01304{bottom:503.311504pt;}
.yba_c01304{bottom:504.365536pt;}
.yb9_c01304{bottom:505.771408pt;}
.yb8_c01304{bottom:509.995552pt;}
.yb7_c01304{bottom:511.456000pt;}
.yb6_c01304{bottom:549.800184pt;}
.yb5_c01304{bottom:551.502852pt;}
.yb4_c01304{bottom:552.469532pt;}
.yb3_c01304{bottom:556.338716pt;}
.yb2_c01304{bottom:559.885204pt;}
.yb1_c01304{bottom:560.834548pt;}
.yb0_c01304{bottom:561.848000pt;}
.yaf_c01304{bottom:574.093191pt;}
.yae_c01304{bottom:575.030879pt;}
.yad_c01304{bottom:576.236737pt;}
.yac_c01304{bottom:577.167440pt;}
.yab_c01304{bottom:579.310284pt;}
.yaa_c01304{bottom:580.492459pt;}
.ya9_c01304{bottom:581.735269pt;}
.ya8_c01304{bottom:584.208325pt;}
.ya7_c01304{bottom:586.017237pt;}
.ya6_c01304{bottom:587.567237pt;}
.ya5_c01304{bottom:591.130667pt;}
.ya4_c01304{bottom:604.525325pt;}
.ya3_c01304{bottom:605.241728pt;}
.ya2_c01304{bottom:608.567880pt;}
.ya1_c01304{bottom:611.288560pt;}
.ya0_c01304{bottom:612.314181pt;}
.y9f_c01304{bottom:614.291077pt;}
.y9e_c01304{bottom:616.962299pt;}
.y9d_c01304{bottom:619.328427pt;}
.y9c_c01304{bottom:620.649576pt;}
.y9b_c01304{bottom:623.296317pt;}
.y9a_c01304{bottom:624.248000pt;}
.y98_c01304{bottom:636.853528pt;}
.y97_c01304{bottom:638.496653pt;}
.y96_c01304{bottom:639.544933pt;}
.y95_c01304{bottom:642.208212pt;}
.y94_c01304{bottom:645.221549pt;}
.y93_c01304{bottom:646.250193pt;}
.y92_c01304{bottom:647.552656pt;}
.y91_c01304{bottom:648.254300pt;}
.y90_c01304{bottom:650.609404pt;}
.y8f_c01304{bottom:651.571844pt;}
.y8e_c01304{bottom:653.872435pt;}
.y8d_c01304{bottom:654.916448pt;}
.y8c_c01304{bottom:666.311644pt;}
.y8b_c01304{bottom:668.464184pt;}
.y8a_c01304{bottom:669.163947pt;}
.y89_c01304{bottom:670.568644pt;}
.y88_c01304{bottom:673.065433pt;}
.y87_c01304{bottom:674.846655pt;}
.y86_c01304{bottom:676.981137pt;}
.y85_c01304{bottom:678.369655pt;}
.y84_c01304{bottom:681.545751pt;}
.y83_c01304{bottom:682.652060pt;}
.y82_c01304{bottom:684.021999pt;}
.y81_c01304{bottom:686.512251pt;}
.y80_c01304{bottom:687.535764pt;}
.y7f_c01304{bottom:702.308857pt;}
.y7e_c01304{bottom:704.292517pt;}
.y7d_c01304{bottom:705.321417pt;}
.y7c_c01304{bottom:706.891725pt;}
.y7b_c01304{bottom:709.697789pt;}
.y7a_c01304{bottom:711.281632pt;}
.y79_c01304{bottom:712.678819pt;}
.y78_c01304{bottom:713.997931pt;}
.y77_c01304{bottom:716.962567pt;}
.y76_c01304{bottom:718.962108pt;}
.y75_c01304{bottom:730.117095pt;}
.y74_c01304{bottom:732.531725pt;}
.y73_c01304{bottom:734.239803pt;}
.y72_c01304{bottom:736.280193pt;}
.y71_c01304{bottom:737.690024pt;}
.y70_c01304{bottom:740.432787pt;}
.y6f_c01304{bottom:741.491512pt;}
.y6e_c01304{bottom:743.894997pt;}
.y6d_c01304{bottom:744.927507pt;}
.y6c_c01304{bottom:748.026367pt;}
.y6b_c01304{bottom:750.387721pt;}
.y6a_c01304{bottom:762.550857pt;}
.y69_c01304{bottom:764.794953pt;}
.y68_c01304{bottom:766.969759pt;}
.y67_c01304{bottom:768.234612pt;}
.y66_c01304{bottom:768.856863pt;}
.y65_c01304{bottom:770.045855pt;}
.y64_c01304{bottom:773.263348pt;}
.y63_c01304{bottom:775.161289pt;}
.y62_c01304{bottom:776.411252pt;}
.y61_c01304{bottom:778.603593pt;}
.y60_c01304{bottom:779.878303pt;}
.y5f_c01304{bottom:781.087689pt;}
.y5e_c01304{bottom:794.047235pt;}
.y5d_c01304{bottom:795.367925pt;}
.y5c_c01304{bottom:797.746079pt;}
.y5b_c01304{bottom:799.429201pt;}
.y5a_c01304{bottom:800.763981pt;}
.y59_c01304{bottom:803.755080pt;}
.y58_c01304{bottom:804.783724pt;}
.y57_c01304{bottom:806.758125pt;}
.y56_c01304{bottom:807.803973pt;}
.y55_c01304{bottom:809.803003pt;}
.y54_c01304{bottom:812.756024pt;}
.y53_c01304{bottom:826.418301pt;}
.y52_c01304{bottom:827.939279pt;}
.y51_c01304{bottom:829.135595pt;}
.y50_c01304{bottom:831.617595pt;}
.y4f_c01304{bottom:832.548547pt;}
.y4e_c01304{bottom:834.663057pt;}
.y4d_c01304{bottom:835.594009pt;}
.y4c_c01304{bottom:838.346195pt;}
.y4b_c01304{bottom:838.941179pt;}
.y4a_c01304{bottom:841.638428pt;}
.y49_c01304{bottom:843.460268pt;}
.y48_c01304{bottom:855.701772pt;}
.y47_c01304{bottom:856.654817pt;}
.y46_c01304{bottom:859.475383pt;}
.y45_c01304{bottom:860.991500pt;}
.y44_c01304{bottom:863.869025pt;}
.y43_c01304{bottom:865.792225pt;}
.y42_c01304{bottom:867.055713pt;}
.y41_c01304{bottom:869.265249pt;}
.y40_c01304{bottom:870.517943pt;}
.y3f_c01304{bottom:873.927095pt;}
.y3e_c01304{bottom:886.118256pt;}
.y3d_c01304{bottom:888.310853pt;}
.y3c_c01304{bottom:889.948571pt;}
.y3b_c01304{bottom:891.830683pt;}
.y3a_c01304{bottom:893.111835pt;}
.y39_c01304{bottom:895.957872pt;}
.y38_c01304{bottom:896.903024pt;}
.y37_c01304{bottom:899.108507pt;}
.y36_c01304{bottom:900.045723pt;}
.y35_c01304{bottom:902.856133pt;}
.y34_c01304{bottom:904.392816pt;}
.y33_c01304{bottom:918.195768pt;}
.y32_c01304{bottom:919.916941pt;}
.y31_c01304{bottom:920.878179pt;}
.y30_c01304{bottom:921.822819pt;}
.y2f_c01304{bottom:923.705656pt;}
.y2e_c01304{bottom:926.556685pt;}
.y2d_c01304{bottom:928.462307pt;}
.y2c_c01304{bottom:929.392568pt;}
.y2b_c01304{bottom:930.034403pt;}
.y2a_c01304{bottom:931.830541pt;}
.y29_c01304{bottom:935.323149pt;}
.y28_c01304{bottom:936.535736pt;}
.y27_c01304{bottom:950.762429pt;}
.y26_c01304{bottom:951.633409pt;}
.y25_c01304{bottom:953.701227pt;}
.y24_c01304{bottom:954.585893pt;}
.y99_c01304{bottom:956.160000pt;}
.y23_c01304{bottom:957.252044pt;}
.y22_c01304{bottom:958.152360pt;}
.y21_c01304{bottom:958.750224pt;}
.y20_c01304{bottom:960.511365pt;}
.y1f_c01304{bottom:961.394880pt;}
.y1e_c01304{bottom:963.465897pt;}
.y1d_c01304{bottom:964.321901pt;}
.y1c_c01304{bottom:966.042485pt;}
.y1b_c01304{bottom:979.634909pt;}
.y1a_c01304{bottom:981.712275pt;}
.y19_c01304{bottom:983.513845pt;}
.y18_c01304{bottom:984.422524pt;}
.y17_c01304{bottom:984.995736pt;}
.y16_c01304{bottom:987.633224pt;}
.y15_c01304{bottom:989.458081pt;}
.y14_c01304{bottom:990.615129pt;}
.y13_c01304{bottom:991.523339pt;}
.y12_c01304{bottom:993.586249pt;}
.y11_c01304{bottom:995.041525pt;}
.y10_c01304{bottom:995.926917pt;}
.yf_c01304{bottom:996.746972pt;}
.ye_c01304{bottom:1012.898603pt;}
.yd_c01304{bottom:1015.744640pt;}
.yc_c01304{bottom:1016.697685pt;}
.yb_c01304{bottom:1018.880640pt;}
.ya_c01304{bottom:1019.856000pt;}
.y9_c01304{bottom:1022.712491pt;}
.y8_c01304{bottom:1024.605227pt;}
.y7_c01304{bottom:1025.527083pt;}
.y6_c01304{bottom:1027.425280pt;}
.y5_c01304{bottom:1028.976341pt;}
.y4_c01304{bottom:1029.850667pt;}
.y3_c01304{bottom:1075.082667pt;}
.h8_c01304{height:16.000000pt;}
.h2_c01304{height:37.333333pt;}
.h3_c01304{height:48.000000pt;}
.h6_c01304{height:58.638060pt;}
.hb_c01304{height:58.639967pt;}
.hd_c01304{height:58.666667pt;}
.h4_c01304{height:63.968792pt;}
.hc_c01304{height:63.977500pt;}
.he_c01304{height:64.000000pt;}
.h11_c01304{height:64.026906pt;}
.ha_c01304{height:64.030745pt;}
.h7_c01304{height:69.299525pt;}
.h9_c01304{height:69.304103pt;}
.hf_c01304{height:69.308958pt;}
.h5_c01304{height:74.630258pt;}
.h10_c01304{height:74.698057pt;}
.h13_c01304{height:90.704784pt;}
.h12_c01304{height:90.707457pt;}
.h1_c01304{height:1111.333333pt;}
.h0_c01304{height:1111.440000pt;}
.w1_c01304{width:810.666667pt;}
.w0_c01304{width:810.933333pt;}
.x0_c01304{left:0.000000pt;}
.x1_c01304{left:77.520000pt;}
.x3_c01304{left:108.000000pt;}
.x2_c01304{left:108.960000pt;}
.xa8_c01304{left:150.069333pt;}
.xa3_c01304{left:151.816000pt;}
.xa0_c01304{left:155.406667pt;}
.x98_c01304{left:156.720000pt;}
.x8e_c01304{left:158.882667pt;}
.x76_c01304{left:161.850064pt;}
.x6a_c01304{left:163.894952pt;}
.x5c_c01304{left:165.485551pt;}
.x4c_c01304{left:167.397999pt;}
.x42_c01304{left:168.621524pt;}
.x3a_c01304{left:169.556104pt;}
.x2f_c01304{left:170.733321pt;}
.x1b_c01304{left:173.393436pt;}
.x6_c01304{left:175.102667pt;}
.x8f_c01304{left:189.562623pt;}
.x7e_c01304{left:190.669343pt;}
.x6b_c01304{left:192.309545pt;}
.x7_c01304{left:202.398011pt;}
.x55_c01304{left:204.556481pt;}
.xa9_c01304{left:207.920000pt;}
.xa4_c01304{left:209.606736pt;}
.x24_c01304{left:210.562388pt;}
.xa1_c01304{left:212.946403pt;}
.x99_c01304{left:216.960000pt;}
.x30_c01304{left:218.706633pt;}
.x64_c01304{left:224.021700pt;}
.x43_c01304{left:227.328637pt;}
.x11_c01304{left:231.139756pt;}
.x5d_c01304{left:232.876933pt;}
.x56_c01304{left:244.351313pt;}
.x8_c01304{left:250.820207pt;}
.x4d_c01304{left:254.176248pt;}
.x92_c01304{left:255.168000pt;}
.x1c_c01304{left:259.201052pt;}
.x77_c01304{left:260.145392pt;}
.x6c_c01304{left:261.435509pt;}
.x9a_c01304{left:263.856000pt;}
.x7f_c01304{left:268.436831pt;}
.x3b_c01304{left:275.985568pt;}
.xa5_c01304{left:277.310248pt;}
.x12_c01304{left:279.610355pt;}
.x9e_c01304{left:282.281333pt;}
.x78_c01304{left:288.443272pt;}
.x93_c01304{left:295.695432pt;}
.x6d_c01304{left:299.457913pt;}
.x31_c01304{left:306.444141pt;}
.x9_c01304{left:310.079555pt;}
.x65_c01304{left:311.120919pt;}
.x4e_c01304{left:312.920353pt;}
.x3c_c01304{left:315.093088pt;}
.x25_c01304{left:319.597244pt;}
.x5e_c01304{left:321.335887pt;}
.x87_c01304{left:326.352000pt;}
.x1d_c01304{left:328.143107pt;}
.x6e_c01304{left:330.165912pt;}
.x44_c01304{left:333.396504pt;}
.x32_c01304{left:335.702853pt;}
.xa_c01304{left:338.858747pt;}
.x9b_c01304{left:341.593333pt;}
.x4f_c01304{left:343.655623pt;}
.xaf_c01304{left:344.758248pt;}
.xaa_c01304{left:345.740000pt;}
.xa6_c01304{left:346.722667pt;}
.x13_c01304{left:348.299329pt;}
.x66_c01304{left:349.887636pt;}
.x5f_c01304{left:350.822219pt;}
.x57_c01304{left:351.815741pt;}
.x1e_c01304{left:357.556876pt;}
.xb0_c01304{left:373.842033pt;}
.x26_c01304{left:375.670448pt;}
.x80_c01304{left:376.777715pt;}
.x14_c01304{left:378.525661pt;}
.x3d_c01304{left:384.072040pt;}
.xa7_c01304{left:385.649333pt;}
.x4_c01304{left:390.960000pt;}
.x27_c01304{left:395.707724pt;}
.xb_c01304{left:397.947599pt;}
.x50_c01304{left:401.672499pt;}
.x33_c01304{left:404.555265pt;}
.x9c_c01304{left:410.264000pt;}
.x5_c01304{left:411.840000pt;}
.x94_c01304{left:412.915428pt;}
.xb1_c01304{left:414.181528pt;}
.x15_c01304{left:417.061564pt;}
.x6f_c01304{left:418.330384pt;}
.x60_c01304{left:419.445616pt;}
.x45_c01304{left:422.105235pt;}
.x3e_c01304{left:423.516556pt;}
.x28_c01304{left:424.749320pt;}
.x51_c01304{left:431.912307pt;}
.x34_c01304{left:434.061729pt;}
.x1f_c01304{left:436.113947pt;}
.x67_c01304{left:437.457008pt;}
.x90_c01304{left:442.794471pt;}
.xab_c01304{left:443.745333pt;}
.x79_c01304{left:446.779988pt;}
.x61_c01304{left:449.667127pt;}
.x46_c01304{left:452.084165pt;}
.x81_c01304{left:455.264483pt;}
.x70_c01304{left:456.849539pt;}
.x88_c01304{left:464.480000pt;}
.x20_c01304{left:466.093859pt;}
.x91_c01304{left:472.058511pt;}
.xac_c01304{left:473.506667pt;}
.x16_c01304{left:477.819299pt;}
.x9d_c01304{left:479.414667pt;}
.x95_c01304{left:481.177764pt;}
.x29_c01304{left:484.240436pt;}
.xc_c01304{left:487.123667pt;}
.x89_c01304{left:504.570667pt;}
.x58_c01304{left:511.513217pt;}
.x82_c01304{left:513.350339pt;}
.x71_c01304{left:516.075984pt;}
.xd_c01304{left:517.573187pt;}
.x47_c01304{left:520.219473pt;}
.x35_c01304{left:522.911457pt;}
.x62_c01304{left:527.966565pt;}
.xad_c01304{left:533.078667pt;}
.x7a_c01304{left:535.316349pt;}
.x9f_c01304{left:538.941333pt;}
.x83_c01304{left:543.485507pt;}
.x59_c01304{left:548.632061pt;}
.x48_c01304{left:550.198404pt;}
.x21_c01304{left:554.864013pt;}
.x52_c01304{left:559.010257pt;}
.x36_c01304{left:562.907421pt;}
.x17_c01304{left:565.653015pt;}
.x5a_c01304{left:568.057949pt;}
.x96_c01304{left:569.206980pt;}
.xb2_c01304{left:571.173459pt;}
.x2a_c01304{left:573.246008pt;}
.xae_c01304{left:582.306667pt;}
.x18_c01304{left:584.755132pt;}
.xe_c01304{left:585.722303pt;}
.xa2_c01304{left:586.697611pt;}
.x68_c01304{left:596.295845pt;}
.xb3_c01304{left:600.562539pt;}
.x5b_c01304{left:607.545089pt;}
.x53_c01304{left:608.474916pt;}
.x8a_c01304{left:611.829333pt;}
.x7b_c01304{left:613.590333pt;}
.xf_c01304{left:615.475187pt;}
.x3f_c01304{left:620.720488pt;}
.x37_c01304{left:621.664605pt;}
.x84_c01304{left:623.425487pt;}
.x63_c01304{left:626.437181pt;}
.x49_c01304{left:630.180904pt;}
.x2b_c01304{left:632.025836pt;}
.x72_c01304{left:634.811259pt;}
.x8b_c01304{left:641.852000pt;}
.x7c_c01304{left:644.401527pt;}
.x22_c01304{left:653.155901pt;}
.x69_c01304{left:654.601765pt;}
.x2c_c01304{left:661.516316pt;}
.x4a_c01304{left:668.735549pt;}
.x38_c01304{left:672.792093pt;}
.x73_c01304{left:673.793907pt;}
.x19_c01304{left:674.985244pt;}
.x54_c01304{left:678.347156pt;}
.x8c_c01304{left:680.750667pt;}
.x23_c01304{left:682.136728pt;}
.x2d_c01304{left:691.524944pt;}
.x74_c01304{left:693.225312pt;}
.x10_c01304{left:704.324915pt;}
.x40_c01304{left:708.775012pt;}
.x8d_c01304{left:710.998667pt;}
.x4b_c01304{left:717.758724pt;}
.x85_c01304{left:721.155659pt;}
.x97_c01304{left:728.384976pt;}
.x41_c01304{left:738.527896pt;}
.x39_c01304{left:741.242241pt;}
.x86_c01304{left:742.205255pt;}
.x1a_c01304{left:744.167101pt;}
.x2e_c01304{left:745.257824pt;}
.x75_c01304{left:752.973859pt;}
.x7d_c01304{left:805.440000pt;}
}





/* 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_c01305 {
    display:none;
  }
  .loading-indicator_c01305.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01305 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_c01305 { 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_c01305" -> "#page-container .classname_c01305")
 */
.pf_c01305 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01305 { /* 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_c01305.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01305 { /* 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_c01305 { /* 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_c01305 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01305 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01305 {overflow:visible;}
  }
}
.c_c01305 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01305 { /* 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_c01305:after { /* webkit #35443 */
  content: '';
}
.t_c01305:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01305 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 */
}
.__c01305 { /* 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_c01305 { /* info for Javascript */
  display:none;
}
.l_c01305 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01305 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01305 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01305: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_c01305 {
    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_c01305.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01305.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_c01305 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01305{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01305;src:url('chunks/assets/font_132af6d682320e9b248f68cf.woff2')format("woff");}.ff1_c01305{font-family:ff1_c01305;line-height:1.000000;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;}
.mc_c01305{transform:matrix(0.008370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.008370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.008370,0.000000,0.000000,0.250000,0,0);}
.mb_c01305{transform:matrix(0.011860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.011860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.011860,0.000000,0.000000,0.250000,0,0);}
.m1d_c01305{transform:matrix(0.138695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138695,0.000000,0.000000,0.250000,0,0);}
.m1c_c01305{transform:matrix(0.143655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143655,0.000000,0.000000,0.250000,0,0);}
.m1e_c01305{transform:matrix(0.168015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168015,0.000000,0.000000,0.250000,0,0);}
.m1b_c01305{transform:matrix(0.168105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168105,0.000000,0.000000,0.250000,0,0);}
.m17_c01305{transform:matrix(0.181110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181110,0.000000,0.000000,0.250000,0,0);}
.m1a_c01305{transform:matrix(0.185320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185320,0.000000,0.000000,0.250000,0,0);}
.m12_c01305{transform:matrix(0.198735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198735,0.000000,0.000000,0.250000,0,0);}
.m15_c01305{transform:matrix(0.208680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208680,0.000000,0.000000,0.250000,0,0);}
.m11_c01305{transform:matrix(0.210065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210065,0.000000,0.000000,0.250000,0,0);}
.me_c01305{transform:matrix(0.212110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212110,0.000000,0.000000,0.250000,0,0);}
.m10_c01305{transform:matrix(0.227580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227580,0.000000,0.000000,0.250000,0,0);}
.m19_c01305{transform:matrix(0.241125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241125,0.000000,0.000000,0.250000,0,0);}
.m8_c01305{transform:matrix(0.249880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249880,0.000000,0.000000,0.250000,0,0);}
.m13_c01305{transform:matrix(0.251665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251665,0.000000,0.000000,0.250000,0,0);}
.m14_c01305{transform:matrix(0.264540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264540,0.000000,0.000000,0.250000,0,0);}
.m9_c01305{transform:matrix(0.273105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273105,0.000000,0.000000,0.250000,0,0);}
.ma_c01305{transform:matrix(0.275920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275920,0.000000,0.000000,0.250000,0,0);}
.md_c01305{transform:matrix(0.281165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281165,0.000000,0.000000,0.250000,0,0);}
.mf_c01305{transform:matrix(0.284175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284175,0.000000,0.000000,0.250000,0,0);}
.m6_c01305{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m3_c01305{transform:matrix(0.291245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291245,0.000000,0.000000,0.250000,0,0);}
.m1_c01305{transform:matrix(0.301995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301995,0.000000,0.000000,0.250000,0,0);}
.m7_c01305{transform:matrix(0.302130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302130,0.000000,0.000000,0.250000,0,0);}
.m2_c01305{transform:matrix(0.302790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302790,0.000000,0.000000,0.250000,0,0);}
.m5_c01305{transform:matrix(0.327705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327705,0.000000,0.000000,0.250000,0,0);}
.m0_c01305{transform:matrix(0.336350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336350,0.000000,0.000000,0.250000,0,0);}
.m16_c01305{transform:matrix(0.354855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354855,0.000000,0.000000,0.250000,0,0);}
.m4_c01305{transform:matrix(0.364970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364970,0.000000,0.000000,0.250000,0,0);}
.m18_c01305{transform:matrix(1.535615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.535615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.535615,0.000000,0.000000,0.250000,0,0);}
.v0_c01305{vertical-align:0.000000px;}
.ls0_c01305{letter-spacing:0.000000px;}
.sc__c01305{text-shadow:none;}
.sc0_c01305{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__c01305{-webkit-text-stroke:0px transparent;}
.sc0_c01305{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01305{word-spacing:0.000000px;}
.fc0_c01305{color:transparent;}
.fs3_c01305{font-size:12.000000px;}
.fs0_c01305{font-size:72.000000px;}
.fs2_c01305{font-size:90.000000px;}
.fs1_c01305{font-size:102.000000px;}
.fs4_c01305{font-size:150.000000px;}
.y0_c01305{bottom:0.000000px;}
.y5_c01305{bottom:555.682500px;}
.y4_c01305{bottom:572.130000px;}
.y3_c01305{bottom:680.076000px;}
.y2_c01305{bottom:713.463000px;}
.y1_c01305{bottom:785.878500px;}
.h5_c01305{height:12.000000px;}
.h2_c01305{height:72.000000px;}
.h4_c01305{height:90.000000px;}
.h3_c01305{height:102.000000px;}
.h6_c01305{height:150.000000px;}
.h1_c01305{height:1250.250000px;}
.h0_c01305{height:1250.370000px;}
.w1_c01305{width:912.000000px;}
.w0_c01305{width:912.300000px;}
.x0_c01305{left:0.000000px;}
.x1_c01305{left:87.480000px;}
.x2_c01305{left:98.550000px;}
.x3_c01305{left:163.620000px;}
.x4_c01305{left:232.740000px;}
.x5_c01305{left:266.490000px;}
.x19_c01305{left:312.660000px;}
.x6_c01305{left:324.270000px;}
.x1a_c01305{left:328.320000px;}
.x1b_c01305{left:358.290000px;}
.x18_c01305{left:363.150000px;}
.xd_c01305{left:380.700000px;}
.xe_c01305{left:389.070000px;}
.x1c_c01305{left:392.850000px;}
.x7_c01305{left:414.180000px;}
.xf_c01305{left:430.110000px;}
.x1d_c01305{left:436.320000px;}
.x8_c01305{left:465.210000px;}
.x15_c01305{left:468.720000px;}
.x10_c01305{left:477.630000px;}
.x11_c01305{left:491.670000px;}
.x9_c01305{left:511.920000px;}
.xa_c01305{left:556.200000px;}
.x1e_c01305{left:569.430000px;}
.x12_c01305{left:574.020000px;}
.x16_c01305{left:603.720000px;}
.x13_c01305{left:612.090000px;}
.xb_c01305{left:653.400000px;}
.x14_c01305{left:688.230000px;}
.x17_c01305{left:690.120000px;}
.xc_c01305{left:718.740000px;}
@media print{
.v0_c01305{vertical-align:0.000000pt;}
.ls0_c01305{letter-spacing:0.000000pt;}
.ws0_c01305{word-spacing:0.000000pt;}
.fs3_c01305{font-size:10.666667pt;}
.fs0_c01305{font-size:64.000000pt;}
.fs2_c01305{font-size:80.000000pt;}
.fs1_c01305{font-size:90.666667pt;}
.fs4_c01305{font-size:133.333333pt;}
.y0_c01305{bottom:0.000000pt;}
.y5_c01305{bottom:493.940000pt;}
.y4_c01305{bottom:508.560000pt;}
.y3_c01305{bottom:604.512000pt;}
.y2_c01305{bottom:634.189333pt;}
.y1_c01305{bottom:698.558667pt;}
.h5_c01305{height:10.666667pt;}
.h2_c01305{height:64.000000pt;}
.h4_c01305{height:80.000000pt;}
.h3_c01305{height:90.666667pt;}
.h6_c01305{height:133.333333pt;}
.h1_c01305{height:1111.333333pt;}
.h0_c01305{height:1111.440000pt;}
.w1_c01305{width:810.666667pt;}
.w0_c01305{width:810.933333pt;}
.x0_c01305{left:0.000000pt;}
.x1_c01305{left:77.760000pt;}
.x2_c01305{left:87.600000pt;}
.x3_c01305{left:145.440000pt;}
.x4_c01305{left:206.880000pt;}
.x5_c01305{left:236.880000pt;}
.x19_c01305{left:277.920000pt;}
.x6_c01305{left:288.240000pt;}
.x1a_c01305{left:291.840000pt;}
.x1b_c01305{left:318.480000pt;}
.x18_c01305{left:322.800000pt;}
.xd_c01305{left:338.400000pt;}
.xe_c01305{left:345.840000pt;}
.x1c_c01305{left:349.200000pt;}
.x7_c01305{left:368.160000pt;}
.xf_c01305{left:382.320000pt;}
.x1d_c01305{left:387.840000pt;}
.x8_c01305{left:413.520000pt;}
.x15_c01305{left:416.640000pt;}
.x10_c01305{left:424.560000pt;}
.x11_c01305{left:437.040000pt;}
.x9_c01305{left:455.040000pt;}
.xa_c01305{left:494.400000pt;}
.x1e_c01305{left:506.160000pt;}
.x12_c01305{left:510.240000pt;}
.x16_c01305{left:536.640000pt;}
.x13_c01305{left:544.080000pt;}
.xb_c01305{left:580.800000pt;}
.x14_c01305{left:611.760000pt;}
.x17_c01305{left:613.440000pt;}
.xc_c01305{left:638.880000pt;}
}





/* 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_c01306 {
    display:none;
  }
  .loading-indicator_c01306.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01306 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_c01306 { 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_c01306" -> "#page-container .classname_c01306")
 */
.pf_c01306 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01306 { /* 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_c01306.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01306 { /* 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_c01306 { /* 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_c01306 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01306 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01306 {overflow:visible;}
  }
}
.c_c01306 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01306 { /* 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_c01306:after { /* webkit #35443 */
  content: '';
}
.t_c01306:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01306 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 */
}
.__c01306 { /* 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_c01306 { /* info for Javascript */
  display:none;
}
.l_c01306 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01306 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01306 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01306: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_c01306 {
    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_c01306.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01306.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_c01306 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01306{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01306;src:url('chunks/assets/font_53ec0c54e60da7c2d414b553.woff2')format("woff");}.ff1_c01306{font-family:ff1_c01306;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m21_c01306{transform:matrix(0.011858,-0.000237,0.004999,0.249950,0,0);-ms-transform:matrix(0.011858,-0.000237,0.004999,0.249950,0,0);-webkit-transform:matrix(0.011858,-0.000237,0.004999,0.249950,0,0);}
.m8d_c01306{transform:matrix(0.090685,-0.001632,0.004499,0.249960,0,0);-ms-transform:matrix(0.090685,-0.001632,0.004499,0.249960,0,0);-webkit-transform:matrix(0.090685,-0.001632,0.004499,0.249960,0,0);}
.ma3_c01306{transform:matrix(0.135188,-0.002433,0.004499,0.249960,0,0);-ms-transform:matrix(0.135188,-0.002433,0.004499,0.249960,0,0);-webkit-transform:matrix(0.135188,-0.002433,0.004499,0.249960,0,0);}
.ma1_c01306{transform:matrix(0.141027,-0.002538,0.004499,0.249960,0,0);-ms-transform:matrix(0.141027,-0.002538,0.004499,0.249960,0,0);-webkit-transform:matrix(0.141027,-0.002538,0.004499,0.249960,0,0);}
.m9e_c01306{transform:matrix(0.142122,-0.002558,0.004499,0.249960,0,0);-ms-transform:matrix(0.142122,-0.002558,0.004499,0.249960,0,0);-webkit-transform:matrix(0.142122,-0.002558,0.004499,0.249960,0,0);}
.ma5_c01306{transform:matrix(0.148346,-0.002670,0.004499,0.249960,0,0);-ms-transform:matrix(0.148346,-0.002670,0.004499,0.249960,0,0);-webkit-transform:matrix(0.148346,-0.002670,0.004499,0.249960,0,0);}
.ma4_c01306{transform:matrix(0.153425,-0.002762,0.004499,0.249960,0,0);-ms-transform:matrix(0.153425,-0.002762,0.004499,0.249960,0,0);-webkit-transform:matrix(0.153425,-0.002762,0.004499,0.249960,0,0);}
.m9f_c01306{transform:matrix(0.156535,-0.002818,0.004499,0.249960,0,0);-ms-transform:matrix(0.156535,-0.002818,0.004499,0.249960,0,0);-webkit-transform:matrix(0.156535,-0.002818,0.004499,0.249960,0,0);}
.ma6_c01306{transform:matrix(0.168043,-0.003025,0.004499,0.249960,0,0);-ms-transform:matrix(0.168043,-0.003025,0.004499,0.249960,0,0);-webkit-transform:matrix(0.168043,-0.003025,0.004499,0.249960,0,0);}
.m3b_c01306{transform:matrix(0.175535,-0.003511,0.004999,0.249950,0,0);-ms-transform:matrix(0.175535,-0.003511,0.004999,0.249950,0,0);-webkit-transform:matrix(0.175535,-0.003511,0.004999,0.249950,0,0);}
.m9a_c01306{transform:matrix(0.183105,-0.003296,0.004499,0.249960,0,0);-ms-transform:matrix(0.183105,-0.003296,0.004499,0.249960,0,0);-webkit-transform:matrix(0.183105,-0.003296,0.004499,0.249960,0,0);}
.m2a_c01306{transform:matrix(0.184413,-0.003688,0.004999,0.249950,0,0);-ms-transform:matrix(0.184413,-0.003688,0.004999,0.249950,0,0);-webkit-transform:matrix(0.184413,-0.003688,0.004999,0.249950,0,0);}
.m69_c01306{transform:matrix(0.186406,-0.002982,0.003999,0.249968,0,0);-ms-transform:matrix(0.186406,-0.002982,0.003999,0.249968,0,0);-webkit-transform:matrix(0.186406,-0.002982,0.003999,0.249968,0,0);}
.m6a_c01306{transform:matrix(0.186911,-0.002991,0.003999,0.249968,0,0);-ms-transform:matrix(0.186911,-0.002991,0.003999,0.249968,0,0);-webkit-transform:matrix(0.186911,-0.002991,0.003999,0.249968,0,0);}
.m75_c01306{transform:matrix(0.193355,-0.003094,0.003999,0.249968,0,0);-ms-transform:matrix(0.193355,-0.003094,0.003999,0.249968,0,0);-webkit-transform:matrix(0.193355,-0.003094,0.003999,0.249968,0,0);}
.m3d_c01306{transform:matrix(0.193901,-0.003878,0.004999,0.249950,0,0);-ms-transform:matrix(0.193901,-0.003878,0.004999,0.249950,0,0);-webkit-transform:matrix(0.193901,-0.003878,0.004999,0.249950,0,0);}
.m23_c01306{transform:matrix(0.194586,-0.003892,0.004999,0.249950,0,0);-ms-transform:matrix(0.194586,-0.003892,0.004999,0.249950,0,0);-webkit-transform:matrix(0.194586,-0.003892,0.004999,0.249950,0,0);}
.m27_c01306{transform:matrix(0.195536,-0.003911,0.004999,0.249950,0,0);-ms-transform:matrix(0.195536,-0.003911,0.004999,0.249950,0,0);-webkit-transform:matrix(0.195536,-0.003911,0.004999,0.249950,0,0);}
.m24_c01306{transform:matrix(0.197396,-0.003948,0.004999,0.249950,0,0);-ms-transform:matrix(0.197396,-0.003948,0.004999,0.249950,0,0);-webkit-transform:matrix(0.197396,-0.003948,0.004999,0.249950,0,0);}
.m73_c01306{transform:matrix(0.197410,-0.003159,0.003999,0.249968,0,0);-ms-transform:matrix(0.197410,-0.003159,0.003999,0.249968,0,0);-webkit-transform:matrix(0.197410,-0.003159,0.003999,0.249968,0,0);}
.m3f_c01306{transform:matrix(0.199325,-0.003987,0.004999,0.249950,0,0);-ms-transform:matrix(0.199325,-0.003987,0.004999,0.249950,0,0);-webkit-transform:matrix(0.199325,-0.003987,0.004999,0.249950,0,0);}
.m6d_c01306{transform:matrix(0.199339,-0.003189,0.003999,0.249968,0,0);-ms-transform:matrix(0.199339,-0.003189,0.003999,0.249968,0,0);-webkit-transform:matrix(0.199339,-0.003189,0.003999,0.249968,0,0);}
.m71_c01306{transform:matrix(0.200219,-0.003204,0.003999,0.249968,0,0);-ms-transform:matrix(0.200219,-0.003204,0.003999,0.249968,0,0);-webkit-transform:matrix(0.200219,-0.003204,0.003999,0.249968,0,0);}
.m2b_c01306{transform:matrix(0.200270,-0.004005,0.004999,0.249950,0,0);-ms-transform:matrix(0.200270,-0.004005,0.004999,0.249950,0,0);-webkit-transform:matrix(0.200270,-0.004005,0.004999,0.249950,0,0);}
.m41_c01306{transform:matrix(0.200305,-0.004006,0.004999,0.249950,0,0);-ms-transform:matrix(0.200305,-0.004006,0.004999,0.249950,0,0);-webkit-transform:matrix(0.200305,-0.004006,0.004999,0.249950,0,0);}
.m48_c01306{transform:matrix(0.202245,-0.004045,0.004999,0.249950,0,0);-ms-transform:matrix(0.202245,-0.004045,0.004999,0.249950,0,0);-webkit-transform:matrix(0.202245,-0.004045,0.004999,0.249950,0,0);}
.m3e_c01306{transform:matrix(0.205319,-0.004106,0.004999,0.249950,0,0);-ms-transform:matrix(0.205319,-0.004106,0.004999,0.249950,0,0);-webkit-transform:matrix(0.205319,-0.004106,0.004999,0.249950,0,0);}
.m67_c01306{transform:matrix(0.207748,-0.003324,0.003999,0.249968,0,0);-ms-transform:matrix(0.207748,-0.003324,0.003999,0.249968,0,0);-webkit-transform:matrix(0.207748,-0.003324,0.003999,0.249968,0,0);}
.m6f_c01306{transform:matrix(0.208308,-0.003333,0.003999,0.249968,0,0);-ms-transform:matrix(0.208308,-0.003333,0.003999,0.249968,0,0);-webkit-transform:matrix(0.208308,-0.003333,0.003999,0.249968,0,0);}
.m83_c01306{transform:matrix(0.208910,-0.002925,0.003500,0.249976,0,0);-ms-transform:matrix(0.208910,-0.002925,0.003500,0.249976,0,0);-webkit-transform:matrix(0.208910,-0.002925,0.003500,0.249976,0,0);}
.m25_c01306{transform:matrix(0.209178,-0.004184,0.004999,0.249950,0,0);-ms-transform:matrix(0.209178,-0.004184,0.004999,0.249950,0,0);-webkit-transform:matrix(0.209178,-0.004184,0.004999,0.249950,0,0);}
.m72_c01306{transform:matrix(0.209333,-0.003349,0.003999,0.249968,0,0);-ms-transform:matrix(0.209333,-0.003349,0.003999,0.249968,0,0);-webkit-transform:matrix(0.209333,-0.003349,0.003999,0.249968,0,0);}
.ma2_c01306{transform:matrix(0.210891,-0.003796,0.004499,0.249960,0,0);-ms-transform:matrix(0.210891,-0.003796,0.004499,0.249960,0,0);-webkit-transform:matrix(0.210891,-0.003796,0.004499,0.249960,0,0);}
.m85_c01306{transform:matrix(0.211004,-0.002954,0.003500,0.249976,0,0);-ms-transform:matrix(0.211004,-0.002954,0.003500,0.249976,0,0);-webkit-transform:matrix(0.211004,-0.002954,0.003500,0.249976,0,0);}
.m2f_c01306{transform:matrix(0.211278,-0.004226,0.004999,0.249950,0,0);-ms-transform:matrix(0.211278,-0.004226,0.004999,0.249950,0,0);-webkit-transform:matrix(0.211278,-0.004226,0.004999,0.249950,0,0);}
.m82_c01306{transform:matrix(0.211639,-0.002963,0.003500,0.249976,0,0);-ms-transform:matrix(0.211639,-0.002963,0.003500,0.249976,0,0);-webkit-transform:matrix(0.211639,-0.002963,0.003500,0.249976,0,0);}
.m77_c01306{transform:matrix(0.212593,-0.003401,0.003999,0.249968,0,0);-ms-transform:matrix(0.212593,-0.003401,0.003999,0.249968,0,0);-webkit-transform:matrix(0.212593,-0.003401,0.003999,0.249968,0,0);}
.ma0_c01306{transform:matrix(0.212876,-0.003832,0.004499,0.249960,0,0);-ms-transform:matrix(0.212876,-0.003832,0.004499,0.249960,0,0);-webkit-transform:matrix(0.212876,-0.003832,0.004499,0.249960,0,0);}
.m45_c01306{transform:matrix(0.213097,-0.004262,0.004999,0.249950,0,0);-ms-transform:matrix(0.213097,-0.004262,0.004999,0.249950,0,0);-webkit-transform:matrix(0.213097,-0.004262,0.004999,0.249950,0,0);}
.m53_c01306{transform:matrix(0.213762,-0.004275,0.004999,0.249950,0,0);-ms-transform:matrix(0.213762,-0.004275,0.004999,0.249950,0,0);-webkit-transform:matrix(0.213762,-0.004275,0.004999,0.249950,0,0);}
.m6b_c01306{transform:matrix(0.214238,-0.003428,0.003999,0.249968,0,0);-ms-transform:matrix(0.214238,-0.003428,0.003999,0.249968,0,0);-webkit-transform:matrix(0.214238,-0.003428,0.003999,0.249968,0,0);}
.m30_c01306{transform:matrix(0.214577,-0.004292,0.004999,0.249950,0,0);-ms-transform:matrix(0.214577,-0.004292,0.004999,0.249950,0,0);-webkit-transform:matrix(0.214577,-0.004292,0.004999,0.249950,0,0);}
.m22_c01306{transform:matrix(0.214627,-0.004293,0.004999,0.249950,0,0);-ms-transform:matrix(0.214627,-0.004293,0.004999,0.249950,0,0);-webkit-transform:matrix(0.214627,-0.004293,0.004999,0.249950,0,0);}
.m87_c01306{transform:matrix(0.215599,-0.003018,0.003500,0.249976,0,0);-ms-transform:matrix(0.215599,-0.003018,0.003500,0.249976,0,0);-webkit-transform:matrix(0.215599,-0.003018,0.003500,0.249976,0,0);}
.m26_c01306{transform:matrix(0.215852,-0.004317,0.004999,0.249950,0,0);-ms-transform:matrix(0.215852,-0.004317,0.004999,0.249950,0,0);-webkit-transform:matrix(0.215852,-0.004317,0.004999,0.249950,0,0);}
.m4b_c01306{transform:matrix(0.216452,-0.004329,0.004999,0.249950,0,0);-ms-transform:matrix(0.216452,-0.004329,0.004999,0.249950,0,0);-webkit-transform:matrix(0.216452,-0.004329,0.004999,0.249950,0,0);}
.m43_c01306{transform:matrix(0.219021,-0.004380,0.004999,0.249950,0,0);-ms-transform:matrix(0.219021,-0.004380,0.004999,0.249950,0,0);-webkit-transform:matrix(0.219021,-0.004380,0.004999,0.249950,0,0);}
.m18_c01306{transform:matrix(0.219231,-0.004385,0.004999,0.249950,0,0);-ms-transform:matrix(0.219231,-0.004385,0.004999,0.249950,0,0);-webkit-transform:matrix(0.219231,-0.004385,0.004999,0.249950,0,0);}
.m2d_c01306{transform:matrix(0.219376,-0.004388,0.004999,0.249950,0,0);-ms-transform:matrix(0.219376,-0.004388,0.004999,0.249950,0,0);-webkit-transform:matrix(0.219376,-0.004388,0.004999,0.249950,0,0);}
.m42_c01306{transform:matrix(0.219516,-0.004390,0.004999,0.249950,0,0);-ms-transform:matrix(0.219516,-0.004390,0.004999,0.249950,0,0);-webkit-transform:matrix(0.219516,-0.004390,0.004999,0.249950,0,0);}
.m47_c01306{transform:matrix(0.220996,-0.004420,0.004999,0.249950,0,0);-ms-transform:matrix(0.220996,-0.004420,0.004999,0.249950,0,0);-webkit-transform:matrix(0.220996,-0.004420,0.004999,0.249950,0,0);}
.m74_c01306{transform:matrix(0.221622,-0.003546,0.003999,0.249968,0,0);-ms-transform:matrix(0.221622,-0.003546,0.003999,0.249968,0,0);-webkit-transform:matrix(0.221622,-0.003546,0.003999,0.249968,0,0);}
.m6e_c01306{transform:matrix(0.221642,-0.003546,0.003999,0.249968,0,0);-ms-transform:matrix(0.221642,-0.003546,0.003999,0.249968,0,0);-webkit-transform:matrix(0.221642,-0.003546,0.003999,0.249968,0,0);}
.m40_c01306{transform:matrix(0.221951,-0.004439,0.004999,0.249950,0,0);-ms-transform:matrix(0.221951,-0.004439,0.004999,0.249950,0,0);-webkit-transform:matrix(0.221951,-0.004439,0.004999,0.249950,0,0);}
.m2c_c01306{transform:matrix(0.222136,-0.004443,0.004999,0.249950,0,0);-ms-transform:matrix(0.222136,-0.004443,0.004999,0.249950,0,0);-webkit-transform:matrix(0.222136,-0.004443,0.004999,0.249950,0,0);}
.m86_c01306{transform:matrix(0.222878,-0.003120,0.003500,0.249976,0,0);-ms-transform:matrix(0.222878,-0.003120,0.003500,0.249976,0,0);-webkit-transform:matrix(0.222878,-0.003120,0.003500,0.249976,0,0);}
.m4d_c01306{transform:matrix(0.223780,-0.004476,0.004999,0.249950,0,0);-ms-transform:matrix(0.223780,-0.004476,0.004999,0.249950,0,0);-webkit-transform:matrix(0.223780,-0.004476,0.004999,0.249950,0,0);}
.m51_c01306{transform:matrix(0.224765,-0.004495,0.004999,0.249950,0,0);-ms-transform:matrix(0.224765,-0.004495,0.004999,0.249950,0,0);-webkit-transform:matrix(0.224765,-0.004495,0.004999,0.249950,0,0);}
.m44_c01306{transform:matrix(0.225515,-0.004510,0.004999,0.249950,0,0);-ms-transform:matrix(0.225515,-0.004510,0.004999,0.249950,0,0);-webkit-transform:matrix(0.225515,-0.004510,0.004999,0.249950,0,0);}
.m46_c01306{transform:matrix(0.228399,-0.004568,0.004999,0.249950,0,0);-ms-transform:matrix(0.228399,-0.004568,0.004999,0.249950,0,0);-webkit-transform:matrix(0.228399,-0.004568,0.004999,0.249950,0,0);}
.m19_c01306{transform:matrix(0.229479,-0.004590,0.004999,0.249950,0,0);-ms-transform:matrix(0.229479,-0.004590,0.004999,0.249950,0,0);-webkit-transform:matrix(0.229479,-0.004590,0.004999,0.249950,0,0);}
.m6c_c01306{transform:matrix(0.229981,-0.003680,0.003999,0.249968,0,0);-ms-transform:matrix(0.229981,-0.003680,0.003999,0.249968,0,0);-webkit-transform:matrix(0.229981,-0.003680,0.003999,0.249968,0,0);}
.m38_c01306{transform:matrix(0.230239,-0.004605,0.004999,0.249950,0,0);-ms-transform:matrix(0.230239,-0.004605,0.004999,0.249950,0,0);-webkit-transform:matrix(0.230239,-0.004605,0.004999,0.249950,0,0);}
.m29_c01306{transform:matrix(0.231679,-0.004634,0.004999,0.249950,0,0);-ms-transform:matrix(0.231679,-0.004634,0.004999,0.249950,0,0);-webkit-transform:matrix(0.231679,-0.004634,0.004999,0.249950,0,0);}
.m70_c01306{transform:matrix(0.232290,-0.003717,0.003999,0.249968,0,0);-ms-transform:matrix(0.232290,-0.003717,0.003999,0.249968,0,0);-webkit-transform:matrix(0.232290,-0.003717,0.003999,0.249968,0,0);}
.m11_c01306{transform:matrix(0.232354,-0.004879,0.005249,0.249945,0,0);-ms-transform:matrix(0.232354,-0.004879,0.005249,0.249945,0,0);-webkit-transform:matrix(0.232354,-0.004879,0.005249,0.249945,0,0);}
.m64_c01306{transform:matrix(0.232375,-0.003718,0.003999,0.249968,0,0);-ms-transform:matrix(0.232375,-0.003718,0.003999,0.249968,0,0);-webkit-transform:matrix(0.232375,-0.003718,0.003999,0.249968,0,0);}
.m5d_c01306{transform:matrix(0.232565,-0.003721,0.003999,0.249968,0,0);-ms-transform:matrix(0.232565,-0.003721,0.003999,0.249968,0,0);-webkit-transform:matrix(0.232565,-0.003721,0.003999,0.249968,0,0);}
.m7b_c01306{transform:matrix(0.232572,-0.003256,0.003500,0.249976,0,0);-ms-transform:matrix(0.232572,-0.003256,0.003500,0.249976,0,0);-webkit-transform:matrix(0.232572,-0.003256,0.003500,0.249976,0,0);}
.m4a_c01306{transform:matrix(0.232708,-0.004654,0.004999,0.249950,0,0);-ms-transform:matrix(0.232708,-0.004654,0.004999,0.249950,0,0);-webkit-transform:matrix(0.232708,-0.004654,0.004999,0.249950,0,0);}
.m13_c01306{transform:matrix(0.234483,-0.004924,0.005249,0.249945,0,0);-ms-transform:matrix(0.234483,-0.004924,0.005249,0.249945,0,0);-webkit-transform:matrix(0.234483,-0.004924,0.005249,0.249945,0,0);}
.m35_c01306{transform:matrix(0.235803,-0.004716,0.004999,0.249950,0,0);-ms-transform:matrix(0.235803,-0.004716,0.004999,0.249950,0,0);-webkit-transform:matrix(0.235803,-0.004716,0.004999,0.249950,0,0);}
.m3c_c01306{transform:matrix(0.235893,-0.004718,0.004999,0.249950,0,0);-ms-transform:matrix(0.235893,-0.004718,0.004999,0.249950,0,0);-webkit-transform:matrix(0.235893,-0.004718,0.004999,0.249950,0,0);}
.m3a_c01306{transform:matrix(0.236623,-0.004732,0.004999,0.249950,0,0);-ms-transform:matrix(0.236623,-0.004732,0.004999,0.249950,0,0);-webkit-transform:matrix(0.236623,-0.004732,0.004999,0.249950,0,0);}
.m81_c01306{transform:matrix(0.236702,-0.003314,0.003500,0.249976,0,0);-ms-transform:matrix(0.236702,-0.003314,0.003500,0.249976,0,0);-webkit-transform:matrix(0.236702,-0.003314,0.003500,0.249976,0,0);}
.m68_c01306{transform:matrix(0.236820,-0.003789,0.003999,0.249968,0,0);-ms-transform:matrix(0.236820,-0.003789,0.003999,0.249968,0,0);-webkit-transform:matrix(0.236820,-0.003789,0.003999,0.249968,0,0);}
.m1d_c01306{transform:matrix(0.237927,-0.004759,0.004999,0.249950,0,0);-ms-transform:matrix(0.237927,-0.004759,0.004999,0.249950,0,0);-webkit-transform:matrix(0.237927,-0.004759,0.004999,0.249950,0,0);}
.m52_c01306{transform:matrix(0.238172,-0.004763,0.004999,0.249950,0,0);-ms-transform:matrix(0.238172,-0.004763,0.004999,0.249950,0,0);-webkit-transform:matrix(0.238172,-0.004763,0.004999,0.249950,0,0);}
.m28_c01306{transform:matrix(0.238367,-0.004767,0.004999,0.249950,0,0);-ms-transform:matrix(0.238367,-0.004767,0.004999,0.249950,0,0);-webkit-transform:matrix(0.238367,-0.004767,0.004999,0.249950,0,0);}
.m79_c01306{transform:matrix(0.238787,-0.003343,0.003500,0.249976,0,0);-ms-transform:matrix(0.238787,-0.003343,0.003500,0.249976,0,0);-webkit-transform:matrix(0.238787,-0.003343,0.003500,0.249976,0,0);}
.m7c_c01306{transform:matrix(0.239272,-0.003350,0.003500,0.249976,0,0);-ms-transform:matrix(0.239272,-0.003350,0.003500,0.249976,0,0);-webkit-transform:matrix(0.239272,-0.003350,0.003500,0.249976,0,0);}
.m4c_c01306{transform:matrix(0.239287,-0.004786,0.004999,0.249950,0,0);-ms-transform:matrix(0.239287,-0.004786,0.004999,0.249950,0,0);-webkit-transform:matrix(0.239287,-0.004786,0.004999,0.249950,0,0);}
.m10_c01306{transform:matrix(0.240582,-0.005052,0.005249,0.249945,0,0);-ms-transform:matrix(0.240582,-0.005052,0.005249,0.249945,0,0);-webkit-transform:matrix(0.240582,-0.005052,0.005249,0.249945,0,0);}
.m62_c01306{transform:matrix(0.240999,-0.003856,0.003999,0.249968,0,0);-ms-transform:matrix(0.240999,-0.003856,0.003999,0.249968,0,0);-webkit-transform:matrix(0.240999,-0.003856,0.003999,0.249968,0,0);}
.m84_c01306{transform:matrix(0.241026,-0.003374,0.003500,0.249976,0,0);-ms-transform:matrix(0.241026,-0.003374,0.003500,0.249976,0,0);-webkit-transform:matrix(0.241026,-0.003374,0.003500,0.249976,0,0);}
.m2e_c01306{transform:matrix(0.241162,-0.004823,0.004999,0.249950,0,0);-ms-transform:matrix(0.241162,-0.004823,0.004999,0.249950,0,0);-webkit-transform:matrix(0.241162,-0.004823,0.004999,0.249950,0,0);}
.m55_c01306{transform:matrix(0.241332,-0.004827,0.004999,0.249950,0,0);-ms-transform:matrix(0.241332,-0.004827,0.004999,0.249950,0,0);-webkit-transform:matrix(0.241332,-0.004827,0.004999,0.249950,0,0);}
.m5b_c01306{transform:matrix(0.242209,-0.003875,0.003999,0.249968,0,0);-ms-transform:matrix(0.242209,-0.003875,0.003999,0.249968,0,0);-webkit-transform:matrix(0.242209,-0.003875,0.003999,0.249968,0,0);}
.m33_c01306{transform:matrix(0.242696,-0.004854,0.004999,0.249950,0,0);-ms-transform:matrix(0.242696,-0.004854,0.004999,0.249950,0,0);-webkit-transform:matrix(0.242696,-0.004854,0.004999,0.249950,0,0);}
.m56_c01306{transform:matrix(0.243051,-0.004861,0.004999,0.249950,0,0);-ms-transform:matrix(0.243051,-0.004861,0.004999,0.249950,0,0);-webkit-transform:matrix(0.243051,-0.004861,0.004999,0.249950,0,0);}
.m50_c01306{transform:matrix(0.243441,-0.004869,0.004999,0.249950,0,0);-ms-transform:matrix(0.243441,-0.004869,0.004999,0.249950,0,0);-webkit-transform:matrix(0.243441,-0.004869,0.004999,0.249950,0,0);}
.mf_c01306{transform:matrix(0.243486,-0.005113,0.005249,0.249945,0,0);-ms-transform:matrix(0.243486,-0.005113,0.005249,0.249945,0,0);-webkit-transform:matrix(0.243486,-0.005113,0.005249,0.249945,0,0);}
.m54_c01306{transform:matrix(0.244446,-0.004889,0.004999,0.249950,0,0);-ms-transform:matrix(0.244446,-0.004889,0.004999,0.249950,0,0);-webkit-transform:matrix(0.244446,-0.004889,0.004999,0.249950,0,0);}
.m49_c01306{transform:matrix(0.246251,-0.004925,0.004999,0.249950,0,0);-ms-transform:matrix(0.246251,-0.004925,0.004999,0.249950,0,0);-webkit-transform:matrix(0.246251,-0.004925,0.004999,0.249950,0,0);}
.m78_c01306{transform:matrix(0.246438,-0.003943,0.003999,0.249968,0,0);-ms-transform:matrix(0.246438,-0.003943,0.003999,0.249968,0,0);-webkit-transform:matrix(0.246438,-0.003943,0.003999,0.249968,0,0);}
.m4f_c01306{transform:matrix(0.250970,-0.005019,0.004999,0.249950,0,0);-ms-transform:matrix(0.250970,-0.005019,0.004999,0.249950,0,0);-webkit-transform:matrix(0.250970,-0.005019,0.004999,0.249950,0,0);}
.m16_c01306{transform:matrix(0.252824,-0.005309,0.005249,0.249945,0,0);-ms-transform:matrix(0.252824,-0.005309,0.005249,0.249945,0,0);-webkit-transform:matrix(0.252824,-0.005309,0.005249,0.249945,0,0);}
.m76_c01306{transform:matrix(0.254787,-0.004077,0.003999,0.249968,0,0);-ms-transform:matrix(0.254787,-0.004077,0.003999,0.249968,0,0);-webkit-transform:matrix(0.254787,-0.004077,0.003999,0.249968,0,0);}
.m4e_c01306{transform:matrix(0.254864,-0.005097,0.004999,0.249950,0,0);-ms-transform:matrix(0.254864,-0.005097,0.004999,0.249950,0,0);-webkit-transform:matrix(0.254864,-0.005097,0.004999,0.249950,0,0);}
.m58_c01306{transform:matrix(0.254929,-0.005099,0.004999,0.249950,0,0);-ms-transform:matrix(0.254929,-0.005099,0.004999,0.249950,0,0);-webkit-transform:matrix(0.254929,-0.005099,0.004999,0.249950,0,0);}
.m61_c01306{transform:matrix(0.255277,-0.004084,0.003999,0.249968,0,0);-ms-transform:matrix(0.255277,-0.004084,0.003999,0.249968,0,0);-webkit-transform:matrix(0.255277,-0.004084,0.003999,0.249968,0,0);}
.m20_c01306{transform:matrix(0.255744,-0.005115,0.004999,0.249950,0,0);-ms-transform:matrix(0.255744,-0.005115,0.004999,0.249950,0,0);-webkit-transform:matrix(0.255744,-0.005115,0.004999,0.249950,0,0);}
.m32_c01306{transform:matrix(0.257519,-0.005150,0.004999,0.249950,0,0);-ms-transform:matrix(0.257519,-0.005150,0.004999,0.249950,0,0);-webkit-transform:matrix(0.257519,-0.005150,0.004999,0.249950,0,0);}
.m14_c01306{transform:matrix(0.257548,-0.005409,0.005249,0.249945,0,0);-ms-transform:matrix(0.257548,-0.005409,0.005249,0.249945,0,0);-webkit-transform:matrix(0.257548,-0.005409,0.005249,0.249945,0,0);}
.m12_c01306{transform:matrix(0.258478,-0.005428,0.005249,0.249945,0,0);-ms-transform:matrix(0.258478,-0.005428,0.005249,0.249945,0,0);-webkit-transform:matrix(0.258478,-0.005428,0.005249,0.249945,0,0);}
.m5e_c01306{transform:matrix(0.260157,-0.004163,0.003999,0.249968,0,0);-ms-transform:matrix(0.260157,-0.004163,0.003999,0.249968,0,0);-webkit-transform:matrix(0.260157,-0.004163,0.003999,0.249968,0,0);}
.md_c01306{transform:matrix(0.260433,-0.005469,0.005249,0.249945,0,0);-ms-transform:matrix(0.260433,-0.005469,0.005249,0.249945,0,0);-webkit-transform:matrix(0.260433,-0.005469,0.005249,0.249945,0,0);}
.m3_c01306{transform:matrix(0.260463,-0.005470,0.005249,0.249945,0,0);-ms-transform:matrix(0.260463,-0.005470,0.005249,0.249945,0,0);-webkit-transform:matrix(0.260463,-0.005470,0.005249,0.249945,0,0);}
.m57_c01306{transform:matrix(0.262672,-0.005253,0.004999,0.249950,0,0);-ms-transform:matrix(0.262672,-0.005253,0.004999,0.249950,0,0);-webkit-transform:matrix(0.262672,-0.005253,0.004999,0.249950,0,0);}
.m60_c01306{transform:matrix(0.264026,-0.004224,0.003999,0.249968,0,0);-ms-transform:matrix(0.264026,-0.004224,0.003999,0.249968,0,0);-webkit-transform:matrix(0.264026,-0.004224,0.003999,0.249968,0,0);}
.m5f_c01306{transform:matrix(0.268586,-0.004297,0.003999,0.249968,0,0);-ms-transform:matrix(0.268586,-0.004297,0.003999,0.249968,0,0);-webkit-transform:matrix(0.268586,-0.004297,0.003999,0.249968,0,0);}
.m7a_c01306{transform:matrix(0.268594,-0.003760,0.003500,0.249976,0,0);-ms-transform:matrix(0.268594,-0.003760,0.003500,0.249976,0,0);-webkit-transform:matrix(0.268594,-0.003760,0.003500,0.249976,0,0);}
.m63_c01306{transform:matrix(0.269386,-0.004310,0.003999,0.249968,0,0);-ms-transform:matrix(0.269386,-0.004310,0.003999,0.249968,0,0);-webkit-transform:matrix(0.269386,-0.004310,0.003999,0.249968,0,0);}
.m65_c01306{transform:matrix(0.269501,-0.004312,0.003999,0.249968,0,0);-ms-transform:matrix(0.269501,-0.004312,0.003999,0.249968,0,0);-webkit-transform:matrix(0.269501,-0.004312,0.003999,0.249968,0,0);}
.m37_c01306{transform:matrix(0.270171,-0.005403,0.004999,0.249950,0,0);-ms-transform:matrix(0.270171,-0.005403,0.004999,0.249950,0,0);-webkit-transform:matrix(0.270171,-0.005403,0.004999,0.249950,0,0);}
.m5a_c01306{transform:matrix(0.271476,-0.005430,0.004999,0.249950,0,0);-ms-transform:matrix(0.271476,-0.005430,0.004999,0.249950,0,0);-webkit-transform:matrix(0.271476,-0.005430,0.004999,0.249950,0,0);}
.m31_c01306{transform:matrix(0.272800,-0.005456,0.004999,0.249950,0,0);-ms-transform:matrix(0.272800,-0.005456,0.004999,0.249950,0,0);-webkit-transform:matrix(0.272800,-0.005456,0.004999,0.249950,0,0);}
.m66_c01306{transform:matrix(0.273350,-0.004374,0.003999,0.249968,0,0);-ms-transform:matrix(0.273350,-0.004374,0.003999,0.249968,0,0);-webkit-transform:matrix(0.273350,-0.004374,0.003999,0.249968,0,0);}
.m1e_c01306{transform:matrix(0.273365,-0.005467,0.004999,0.249950,0,0);-ms-transform:matrix(0.273365,-0.005467,0.004999,0.249950,0,0);-webkit-transform:matrix(0.273365,-0.005467,0.004999,0.249950,0,0);}
.m1c_c01306{transform:matrix(0.273720,-0.005474,0.004999,0.249950,0,0);-ms-transform:matrix(0.273720,-0.005474,0.004999,0.249950,0,0);-webkit-transform:matrix(0.273720,-0.005474,0.004999,0.249950,0,0);}
.m1_c01306{transform:matrix(0.274719,-0.005769,0.005249,0.249945,0,0);-ms-transform:matrix(0.274719,-0.005769,0.005249,0.249945,0,0);-webkit-transform:matrix(0.274719,-0.005769,0.005249,0.249945,0,0);}
.m36_c01306{transform:matrix(0.275070,-0.005501,0.004999,0.249950,0,0);-ms-transform:matrix(0.275070,-0.005501,0.004999,0.249950,0,0);-webkit-transform:matrix(0.275070,-0.005501,0.004999,0.249950,0,0);}
.m7f_c01306{transform:matrix(0.275163,-0.003852,0.003500,0.249976,0,0);-ms-transform:matrix(0.275163,-0.003852,0.003500,0.249976,0,0);-webkit-transform:matrix(0.275163,-0.003852,0.003500,0.249976,0,0);}
.m1a_c01306{transform:matrix(0.275275,-0.005505,0.004999,0.249950,0,0);-ms-transform:matrix(0.275275,-0.005505,0.004999,0.249950,0,0);-webkit-transform:matrix(0.275275,-0.005505,0.004999,0.249950,0,0);}
.m17_c01306{transform:matrix(0.275824,-0.005792,0.005249,0.249945,0,0);-ms-transform:matrix(0.275824,-0.005792,0.005249,0.249945,0,0);-webkit-transform:matrix(0.275824,-0.005792,0.005249,0.249945,0,0);}
.m5c_c01306{transform:matrix(0.276000,-0.004416,0.003999,0.249968,0,0);-ms-transform:matrix(0.276000,-0.004416,0.003999,0.249968,0,0);-webkit-transform:matrix(0.276000,-0.004416,0.003999,0.249968,0,0);}
.m34_c01306{transform:matrix(0.276270,-0.005525,0.004999,0.249950,0,0);-ms-transform:matrix(0.276270,-0.005525,0.004999,0.249950,0,0);-webkit-transform:matrix(0.276270,-0.005525,0.004999,0.249950,0,0);}
.m1b_c01306{transform:matrix(0.277525,-0.005550,0.004999,0.249950,0,0);-ms-transform:matrix(0.277525,-0.005550,0.004999,0.249950,0,0);-webkit-transform:matrix(0.277525,-0.005550,0.004999,0.249950,0,0);}
.m7d_c01306{transform:matrix(0.280278,-0.003924,0.003500,0.249976,0,0);-ms-transform:matrix(0.280278,-0.003924,0.003500,0.249976,0,0);-webkit-transform:matrix(0.280278,-0.003924,0.003500,0.249976,0,0);}
.m1f_c01306{transform:matrix(0.280644,-0.005613,0.004999,0.249950,0,0);-ms-transform:matrix(0.280644,-0.005613,0.004999,0.249950,0,0);-webkit-transform:matrix(0.280644,-0.005613,0.004999,0.249950,0,0);}
.m5_c01306{transform:matrix(0.281263,-0.005907,0.005249,0.249945,0,0);-ms-transform:matrix(0.281263,-0.005907,0.005249,0.249945,0,0);-webkit-transform:matrix(0.281263,-0.005907,0.005249,0.249945,0,0);}
.m7e_c01306{transform:matrix(0.281827,-0.003946,0.003500,0.249976,0,0);-ms-transform:matrix(0.281827,-0.003946,0.003500,0.249976,0,0);-webkit-transform:matrix(0.281827,-0.003946,0.003500,0.249976,0,0);}
.m15_c01306{transform:matrix(0.282873,-0.005940,0.005249,0.249945,0,0);-ms-transform:matrix(0.282873,-0.005940,0.005249,0.249945,0,0);-webkit-transform:matrix(0.282873,-0.005940,0.005249,0.249945,0,0);}
.m6_c01306{transform:matrix(0.284102,-0.005966,0.005249,0.249945,0,0);-ms-transform:matrix(0.284102,-0.005966,0.005249,0.249945,0,0);-webkit-transform:matrix(0.284102,-0.005966,0.005249,0.249945,0,0);}
.m59_c01306{transform:matrix(0.285068,-0.005701,0.004999,0.249950,0,0);-ms-transform:matrix(0.285068,-0.005701,0.004999,0.249950,0,0);-webkit-transform:matrix(0.285068,-0.005701,0.004999,0.249950,0,0);}
.m80_c01306{transform:matrix(0.285677,-0.003999,0.003500,0.249976,0,0);-ms-transform:matrix(0.285677,-0.003999,0.003500,0.249976,0,0);-webkit-transform:matrix(0.285677,-0.003999,0.003500,0.249976,0,0);}
.me_c01306{transform:matrix(0.287797,-0.006044,0.005249,0.249945,0,0);-ms-transform:matrix(0.287797,-0.006044,0.005249,0.249945,0,0);-webkit-transform:matrix(0.287797,-0.006044,0.005249,0.249945,0,0);}
.m39_c01306{transform:matrix(0.289097,-0.005782,0.004999,0.249950,0,0);-ms-transform:matrix(0.289097,-0.005782,0.004999,0.249950,0,0);-webkit-transform:matrix(0.289097,-0.005782,0.004999,0.249950,0,0);}
.m2_c01306{transform:matrix(0.291196,-0.006115,0.005249,0.249945,0,0);-ms-transform:matrix(0.291196,-0.006115,0.005249,0.249945,0,0);-webkit-transform:matrix(0.291196,-0.006115,0.005249,0.249945,0,0);}
.m7_c01306{transform:matrix(0.291781,-0.006127,0.005249,0.249945,0,0);-ms-transform:matrix(0.291781,-0.006127,0.005249,0.249945,0,0);-webkit-transform:matrix(0.291781,-0.006127,0.005249,0.249945,0,0);}
.m4_c01306{transform:matrix(0.296595,-0.006228,0.005249,0.249945,0,0);-ms-transform:matrix(0.296595,-0.006228,0.005249,0.249945,0,0);-webkit-transform:matrix(0.296595,-0.006228,0.005249,0.249945,0,0);}
.m9d_c01306{transform:matrix(0.302866,-0.005452,0.004499,0.249960,0,0);-ms-transform:matrix(0.302866,-0.005452,0.004499,0.249960,0,0);-webkit-transform:matrix(0.302866,-0.005452,0.004499,0.249960,0,0);}
.m90_c01306{transform:matrix(0.317759,-0.005720,0.004499,0.249960,0,0);-ms-transform:matrix(0.317759,-0.005720,0.004499,0.249960,0,0);-webkit-transform:matrix(0.317759,-0.005720,0.004499,0.249960,0,0);}
.m8_c01306{transform:matrix(0.350908,-0.007369,0.005249,0.249945,0,0);-ms-transform:matrix(0.350908,-0.007369,0.005249,0.249945,0,0);-webkit-transform:matrix(0.350908,-0.007369,0.005249,0.249945,0,0);}
.m95_c01306{transform:matrix(0.351743,-0.006331,0.004499,0.249960,0,0);-ms-transform:matrix(0.351743,-0.006331,0.004499,0.249960,0,0);-webkit-transform:matrix(0.351743,-0.006331,0.004499,0.249960,0,0);}
.ma_c01306{transform:matrix(0.356531,-0.007487,0.005249,0.249945,0,0);-ms-transform:matrix(0.356531,-0.007487,0.005249,0.249945,0,0);-webkit-transform:matrix(0.356531,-0.007487,0.005249,0.249945,0,0);}
.m94_c01306{transform:matrix(0.357207,-0.006430,0.004499,0.249960,0,0);-ms-transform:matrix(0.357207,-0.006430,0.004499,0.249960,0,0);-webkit-transform:matrix(0.357207,-0.006430,0.004499,0.249960,0,0);}
.m9b_c01306{transform:matrix(0.359787,-0.006476,0.004499,0.249960,0,0);-ms-transform:matrix(0.359787,-0.006476,0.004499,0.249960,0,0);-webkit-transform:matrix(0.359787,-0.006476,0.004499,0.249960,0,0);}
.m97_c01306{transform:matrix(0.361401,-0.006505,0.004499,0.249960,0,0);-ms-transform:matrix(0.361401,-0.006505,0.004499,0.249960,0,0);-webkit-transform:matrix(0.361401,-0.006505,0.004499,0.249960,0,0);}
.m93_c01306{transform:matrix(0.361486,-0.006507,0.004499,0.249960,0,0);-ms-transform:matrix(0.361486,-0.006507,0.004499,0.249960,0,0);-webkit-transform:matrix(0.361486,-0.006507,0.004499,0.249960,0,0);}
.m8f_c01306{transform:matrix(0.366216,-0.006592,0.004499,0.249960,0,0);-ms-transform:matrix(0.366216,-0.006592,0.004499,0.249960,0,0);-webkit-transform:matrix(0.366216,-0.006592,0.004499,0.249960,0,0);}
.m98_c01306{transform:matrix(0.367460,-0.006614,0.004499,0.249960,0,0);-ms-transform:matrix(0.367460,-0.006614,0.004499,0.249960,0,0);-webkit-transform:matrix(0.367460,-0.006614,0.004499,0.249960,0,0);}
.m92_c01306{transform:matrix(0.377484,-0.006795,0.004499,0.249960,0,0);-ms-transform:matrix(0.377484,-0.006795,0.004499,0.249960,0,0);-webkit-transform:matrix(0.377484,-0.006795,0.004499,0.249960,0,0);}
.m8e_c01306{transform:matrix(0.379579,-0.006832,0.004499,0.249960,0,0);-ms-transform:matrix(0.379579,-0.006832,0.004499,0.249960,0,0);-webkit-transform:matrix(0.379579,-0.006832,0.004499,0.249960,0,0);}
.m99_c01306{transform:matrix(0.383768,-0.006908,0.004499,0.249960,0,0);-ms-transform:matrix(0.383768,-0.006908,0.004499,0.249960,0,0);-webkit-transform:matrix(0.383768,-0.006908,0.004499,0.249960,0,0);}
.m96_c01306{transform:matrix(0.391332,-0.007044,0.004499,0.249960,0,0);-ms-transform:matrix(0.391332,-0.007044,0.004499,0.249960,0,0);-webkit-transform:matrix(0.391332,-0.007044,0.004499,0.249960,0,0);}
.m91_c01306{transform:matrix(0.404030,-0.007273,0.004499,0.249960,0,0);-ms-transform:matrix(0.404030,-0.007273,0.004499,0.249960,0,0);-webkit-transform:matrix(0.404030,-0.007273,0.004499,0.249960,0,0);}
.m9c_c01306{transform:matrix(0.421337,-0.007584,0.004499,0.249960,0,0);-ms-transform:matrix(0.421337,-0.007584,0.004499,0.249960,0,0);-webkit-transform:matrix(0.421337,-0.007584,0.004499,0.249960,0,0);}
.m0_c01306{transform:matrix(0.517035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517035,0.000000,0.000000,0.250000,0,0);}
.mb_c01306{transform:matrix(0.581127,-0.012204,0.005249,0.249945,0,0);-ms-transform:matrix(0.581127,-0.012204,0.005249,0.249945,0,0);-webkit-transform:matrix(0.581127,-0.012204,0.005249,0.249945,0,0);}
.m8b_c01306{transform:matrix(0.587033,-0.017024,0.007247,0.249895,0,0);-ms-transform:matrix(0.587033,-0.017024,0.007247,0.249895,0,0);-webkit-transform:matrix(0.587033,-0.017024,0.007247,0.249895,0,0);}
.m89_c01306{transform:matrix(0.636757,-0.018466,0.007247,0.249895,0,0);-ms-transform:matrix(0.636757,-0.018466,0.007247,0.249895,0,0);-webkit-transform:matrix(0.636757,-0.018466,0.007247,0.249895,0,0);}
.ma7_c01306{transform:matrix(0.738815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.738815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.738815,0.000000,0.000000,0.250000,0,0);}
.ma9_c01306{transform:matrix(0.857265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.857265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.857265,0.000000,0.000000,0.250000,0,0);}
.m8a_c01306{transform:matrix(0.907858,-0.026328,0.007247,0.249895,0,0);-ms-transform:matrix(0.907858,-0.026328,0.007247,0.249895,0,0);-webkit-transform:matrix(0.907858,-0.026328,0.007247,0.249895,0,0);}
.m9_c01306{transform:matrix(1.076088,-0.022598,0.005249,0.249945,0,0);-ms-transform:matrix(1.076088,-0.022598,0.005249,0.249945,0,0);-webkit-transform:matrix(1.076088,-0.022598,0.005249,0.249945,0,0);}
.ma8_c01306{transform:matrix(1.388130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.388130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.388130,0.000000,0.000000,0.250000,0,0);}
.m8c_c01306{transform:matrix(1.394694,-0.040446,0.007247,0.249895,0,0);-ms-transform:matrix(1.394694,-0.040446,0.007247,0.249895,0,0);-webkit-transform:matrix(1.394694,-0.040446,0.007247,0.249895,0,0);}
.maa_c01306{transform:matrix(1.401285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.401285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.401285,0.000000,0.000000,0.250000,0,0);}
.mab_c01306{transform:matrix(1.655515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.655515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.655515,0.000000,0.000000,0.250000,0,0);}
.m88_c01306{transform:matrix(2.792121,-0.080972,0.007247,0.249895,0,0);-ms-transform:matrix(2.792121,-0.080972,0.007247,0.249895,0,0);-webkit-transform:matrix(2.792121,-0.080972,0.007247,0.249895,0,0);}
.mac_c01306{transform:matrix(4.440720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.440720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.440720,0.000000,0.000000,0.250000,0,0);}
.mc_c01306{transform:matrix(7.125774,-0.149641,0.005249,0.249945,0,0);-ms-transform:matrix(7.125774,-0.149641,0.005249,0.249945,0,0);-webkit-transform:matrix(7.125774,-0.149641,0.005249,0.249945,0,0);}
.v0_c01306{vertical-align:0.000000px;}
.ls0_c01306{letter-spacing:0.000000px;}
.sc__c01306{text-shadow:none;}
.sc0_c01306{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__c01306{-webkit-text-stroke:0px transparent;}
.sc0_c01306{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01306{word-spacing:0.000000px;}
.fc0_c01306{color:transparent;}
.fs10_c01306{font-size:18.000000px;}
.fsd_c01306{font-size:18.007567px;}
.fs2_c01306{font-size:30.006614px;}
.fse_c01306{font-size:48.007775px;}
.fs7_c01306{font-size:66.013199px;}
.fs1_c01306{font-size:66.014551px;}
.fsb_c01306{font-size:72.007056px;}
.fs8_c01306{font-size:72.009215px;}
.fs4_c01306{font-size:72.014399px;}
.fs3_c01306{font-size:72.015874px;}
.fsa_c01306{font-size:78.009983px;}
.fs6_c01306{font-size:78.015598px;}
.fsc_c01306{font-size:84.008232px;}
.fs9_c01306{font-size:84.010751px;}
.fs5_c01306{font-size:84.016798px;}
.fsf_c01306{font-size:120.019438px;}
.fs0_c01306{font-size:162.000000px;}
.y0_c01306{bottom:0.000000px;}
.ya9_c01306{bottom:1.350000px;}
.y9f_c01306{bottom:508.093953px;}
.ya0_c01306{bottom:512.047086px;}
.ya1_c01306{bottom:512.785656px;}
.ya2_c01306{bottom:515.065248px;}
.ya3_c01306{bottom:517.598196px;}
.ya4_c01306{bottom:519.629037px;}
.ya5_c01306{bottom:521.684535px;}
.ya6_c01306{bottom:522.436608px;}
.ya7_c01306{bottom:523.499343px;}
.ya8_c01306{bottom:524.456634px;}
.y8f_c01306{bottom:548.368500px;}
.y90_c01306{bottom:551.043120px;}
.y91_c01306{bottom:551.625618px;}
.y92_c01306{bottom:552.000486px;}
.y93_c01306{bottom:553.011987px;}
.y94_c01306{bottom:554.435913px;}
.y95_c01306{bottom:554.795499px;}
.y96_c01306{bottom:555.636144px;}
.y97_c01306{bottom:556.000671px;}
.y98_c01306{bottom:556.608765px;}
.y99_c01306{bottom:557.614704px;}
.y9a_c01306{bottom:558.611544px;}
.y9b_c01306{bottom:559.185105px;}
.y9c_c01306{bottom:559.838397px;}
.y9d_c01306{bottom:560.245125px;}
.y9e_c01306{bottom:560.989731px;}
.y8a_c01306{bottom:581.287500px;}
.y8b_c01306{bottom:583.612053px;}
.y8c_c01306{bottom:584.003379px;}
.y8d_c01306{bottom:584.762585px;}
.y8e_c01306{bottom:585.122634px;}
.y84_c01306{bottom:657.179415px;}
.y85_c01306{bottom:657.835653px;}
.y86_c01306{bottom:658.516239px;}
.y87_c01306{bottom:660.476280px;}
.y88_c01306{bottom:660.977937px;}
.y89_c01306{bottom:661.812600px;}
.y7b_c01306{bottom:694.173000px;}
.y7c_c01306{bottom:694.634475px;}
.y7d_c01306{bottom:695.556123px;}
.y7e_c01306{bottom:696.025494px;}
.y7f_c01306{bottom:696.498372px;}
.y80_c01306{bottom:698.191959px;}
.y81_c01306{bottom:699.446961px;}
.y82_c01306{bottom:700.520754px;}
.y83_c01306{bottom:702.081054px;}
.y77_c01306{bottom:727.373268px;}
.y78_c01306{bottom:727.768896px;}
.y79_c01306{bottom:729.541236px;}
.y7a_c01306{bottom:730.139916px;}
.y68_c01306{bottom:761.400696px;}
.y69_c01306{bottom:763.743192px;}
.y6a_c01306{bottom:764.449464px;}
.y6b_c01306{bottom:766.033536px;}
.y6c_c01306{bottom:766.392336px;}
.y6d_c01306{bottom:766.915968px;}
.y6e_c01306{bottom:767.784240px;}
.y6f_c01306{bottom:769.032072px;}
.y70_c01306{bottom:769.555968px;}
.y71_c01306{bottom:770.453520px;}
.y72_c01306{bottom:770.800104px;}
.y73_c01306{bottom:772.047936px;}
.y74_c01306{bottom:772.770240px;}
.y75_c01306{bottom:773.447760px;}
.y76_c01306{bottom:774.006072px;}
.y5d_c01306{bottom:800.823000px;}
.y5e_c01306{bottom:801.372120px;}
.y5f_c01306{bottom:802.930680px;}
.y60_c01306{bottom:803.475888px;}
.y61_c01306{bottom:804.357192px;}
.y62_c01306{bottom:805.424568px;}
.y63_c01306{bottom:806.490840px;}
.y64_c01306{bottom:807.208080px;}
.y65_c01306{bottom:807.913128px;}
.y66_c01306{bottom:809.343072px;}
.y67_c01306{bottom:809.853048px;}
.y59_c01306{bottom:831.581790px;}
.y5a_c01306{bottom:833.084400px;}
.y5b_c01306{bottom:834.257700px;}
.y5c_c01306{bottom:836.571630px;}
.y4b_c01306{bottom:868.297020px;}
.y4c_c01306{bottom:869.228910px;}
.y4d_c01306{bottom:869.944920px;}
.y4e_c01306{bottom:871.314900px;}
.y4f_c01306{bottom:871.763550px;}
.y50_c01306{bottom:872.694960px;}
.y51_c01306{bottom:874.565760px;}
.y52_c01306{bottom:876.209970px;}
.y53_c01306{bottom:877.570410px;}
.y54_c01306{bottom:878.266560px;}
.y55_c01306{bottom:879.453390px;}
.y56_c01306{bottom:880.145490px;}
.y57_c01306{bottom:881.529360px;}
.y58_c01306{bottom:882.474720px;}
.y3d_c01306{bottom:905.022150px;}
.y3e_c01306{bottom:906.578220px;}
.y3f_c01306{bottom:907.351140px;}
.y40_c01306{bottom:907.762380px;}
.y41_c01306{bottom:908.404410px;}
.y42_c01306{bottom:908.809920px;}
.y43_c01306{bottom:909.472410px;}
.y44_c01306{bottom:910.687800px;}
.y45_c01306{bottom:911.533950px;}
.y46_c01306{bottom:912.811110px;}
.y47_c01306{bottom:913.648260px;}
.y48_c01306{bottom:914.909400px;}
.y49_c01306{bottom:915.351420px;}
.y4a_c01306{bottom:916.189800px;}
.y32_c01306{bottom:937.970280px;}
.y33_c01306{bottom:939.829710px;}
.y34_c01306{bottom:940.970670px;}
.y35_c01306{bottom:941.680920px;}
.y36_c01306{bottom:943.987740px;}
.y37_c01306{bottom:944.679720px;}
.y38_c01306{bottom:946.562790px;}
.y39_c01306{bottom:948.178170px;}
.y3a_c01306{bottom:948.860280px;}
.y3b_c01306{bottom:951.665970px;}
.y3c_c01306{bottom:952.378560px;}
.y24_c01306{bottom:973.885320px;}
.y25_c01306{bottom:974.473200px;}
.y26_c01306{bottom:975.073230px;}
.y27_c01306{bottom:975.666300px;}
.y28_c01306{bottom:976.647810px;}
.y29_c01306{bottom:977.250780px;}
.y2a_c01306{bottom:979.461480px;}
.y2b_c01306{bottom:981.030510px;}
.y2c_c01306{bottom:981.449100px;}
.y2d_c01306{bottom:982.041900px;}
.y2e_c01306{bottom:983.223450px;}
.y2f_c01306{bottom:983.846220px;}
.y30_c01306{bottom:985.824270px;}
.y31_c01306{bottom:986.437440px;}
.y19_c01306{bottom:1009.263000px;}
.y1a_c01306{bottom:1009.907310px;}
.y1b_c01306{bottom:1010.535300px;}
.y1c_c01306{bottom:1012.760640px;}
.y1d_c01306{bottom:1014.980670px;}
.y1e_c01306{bottom:1016.724420px;}
.y1f_c01306{bottom:1017.416250px;}
.y20_c01306{bottom:1019.409000px;}
.y21_c01306{bottom:1021.870050px;}
.y22_c01306{bottom:1023.085980px;}
.y23_c01306{bottom:1023.348360px;}
.ye_c01306{bottom:1047.317877px;}
.yf_c01306{bottom:1048.030620px;}
.y10_c01306{bottom:1049.801851px;}
.y11_c01306{bottom:1050.355363px;}
.y12_c01306{bottom:1050.873575px;}
.y13_c01306{bottom:1051.435710px;}
.y14_c01306{bottom:1052.463981px;}
.y15_c01306{bottom:1053.013796px;}
.y16_c01306{bottom:1053.890148px;}
.y17_c01306{bottom:1055.496762px;}
.y18_c01306{bottom:1056.373461px;}
.ya_c01306{bottom:1102.122190px;}
.yb_c01306{bottom:1103.738347px;}
.yc_c01306{bottom:1104.352459px;}
.yd_c01306{bottom:1105.242379px;}
.y2_c01306{bottom:1115.106000px;}
.y3_c01306{bottom:1116.257703px;}
.y4_c01306{bottom:1118.083159px;}
.y5_c01306{bottom:1118.786681px;}
.y6_c01306{bottom:1120.414223px;}
.y7_c01306{bottom:1120.879194px;}
.y8_c01306{bottom:1122.024754px;}
.y9_c01306{bottom:1123.709312px;}
.y1_c01306{bottom:1197.990000px;}
.h12_c01306{height:18.000000px;}
.hf_c01306{height:18.007567px;}
.h4_c01306{height:30.006614px;}
.h10_c01306{height:48.007775px;}
.h9_c01306{height:66.013199px;}
.h3_c01306{height:66.014551px;}
.hd_c01306{height:72.007056px;}
.ha_c01306{height:72.009215px;}
.h6_c01306{height:72.014399px;}
.h5_c01306{height:72.015874px;}
.hc_c01306{height:78.009983px;}
.h8_c01306{height:78.015598px;}
.he_c01306{height:84.008232px;}
.hb_c01306{height:84.010751px;}
.h7_c01306{height:84.016798px;}
.h11_c01306{height:120.019438px;}
.h2_c01306{height:162.000000px;}
.h1_c01306{height:1250.250000px;}
.h0_c01306{height:1250.370000px;}
.w1_c01306{width:912.000000px;}
.w0_c01306{width:912.300000px;}
.x0_c01306{left:0.000000px;}
.x5b_c01306{left:19.504392px;}
.x7b_c01306{left:21.262500px;}
.x19_c01306{left:161.358000px;}
.x41_c01306{left:162.502650px;}
.x4e_c01306{left:165.201240px;}
.x68_c01306{left:166.715868px;}
.x7c_c01306{left:169.852500px;}
.x88_c01306{left:172.442040px;}
.x69_c01306{left:188.723172px;}
.x1a_c01306{left:193.573500px;}
.x7d_c01306{left:202.213500px;}
.x89_c01306{left:204.554151px;}
.x42_c01306{left:206.846250px;}
.x4f_c01306{left:208.143870px;}
.x5c_c01306{left:210.052392px;}
.x73_c01306{left:211.334373px;}
.x7e_c01306{left:223.039500px;}
.x1b_c01306{left:224.973000px;}
.x24_c01306{left:227.079300px;}
.xa_c01306{left:233.070093px;}
.x2_c01306{left:235.218000px;}
.x43_c01306{left:240.921060px;}
.x38_c01306{left:243.054540px;}
.x78_c01306{left:246.489000px;}
.x2f_c01306{left:250.317180px;}
.x74_c01306{left:256.732743px;}
.x25_c01306{left:260.034120px;}
.xe_c01306{left:267.792282px;}
.x51_c01306{left:274.270500px;}
.x6c_c01306{left:276.399000px;}
.x7f_c01306{left:279.234000px;}
.x39_c01306{left:283.726350px;}
.x79_c01306{left:286.162500px;}
.x6a_c01306{left:287.210028px;}
.x3_c01306{left:290.061000px;}
.x7a_c01306{left:298.578000px;}
.x30_c01306{left:304.664100px;}
.x44_c01306{left:306.193770px;}
.x50_c01306{left:307.775490px;}
.x5d_c01306{left:309.056892px;}
.xf_c01306{left:312.379976px;}
.xb_c01306{left:313.888794px;}
.x6b_c01306{left:320.501472px;}
.x45_c01306{left:327.575850px;}
.x5e_c01306{left:331.481892px;}
.x1c_c01306{left:336.240000px;}
.x31_c01306{left:338.450910px;}
.xc_c01306{left:344.561424px;}
.x26_c01306{left:348.111660px;}
.x80_c01306{left:358.341000px;}
.x3a_c01306{left:360.491880px;}
.x5f_c01306{left:364.208892px;}
.x46_c01306{left:371.895450px;}
.x6d_c01306{left:375.193500px;}
.x4_c01306{left:376.987500px;}
.x81_c01306{left:378.318000px;}
.x75_c01306{left:387.412416px;}
.xd_c01306{left:389.082369px;}
.x3b_c01306{left:395.342070px;}
.x1_c01306{left:398.520000px;}
.x52_c01306{left:406.000500px;}
.x6e_c01306{left:408.720000px;}
.x5_c01306{left:410.488500px;}
.x8a_c01306{left:413.815332px;}
.x60_c01306{left:418.475892px;}
.x76_c01306{left:420.887454px;}
.x10_c01306{left:423.093099px;}
.x82_c01306{left:425.020500px;}
.x53_c01306{left:440.076000px;}
.x6f_c01306{left:442.497000px;}
.x83_c01306{left:445.272000px;}
.x1d_c01306{left:447.241500px;}
.x32_c01306{left:448.314720px;}
.x11_c01306{left:457.668722px;}
.x3c_c01306{left:459.337860px;}
.x47_c01306{left:461.008680px;}
.x27_c01306{left:470.951580px;}
.x77_c01306{left:476.541177px;}
.x84_c01306{left:479.055000px;}
.x33_c01306{left:481.263060px;}
.x6_c01306{left:487.990500px;}
.x12_c01306{left:490.063124px;}
.x54_c01306{left:495.157500px;}
.x61_c01306{left:496.465392px;}
.x8b_c01306{left:502.131894px;}
.x3d_c01306{left:503.896260px;}
.x7_c01306{left:510.132000px;}
.x8f_c01306{left:518.130000px;}
.x13_c01306{left:525.192309px;}
.x62_c01306{left:529.208892px;}
.x1e_c01306{left:534.429000px;}
.x48_c01306{left:539.317620px;}
.x90_c01306{left:547.290000px;}
.x28_c01306{left:558.106560px;}
.x55_c01306{left:561.868500px;}
.x70_c01306{left:563.467500px;}
.x8_c01306{left:564.682500px;}
.x1f_c01306{left:569.020500px;}
.x34_c01306{left:570.914760px;}
.x29_c01306{left:581.361990px;}
.x63_c01306{left:585.305892px;}
.x14_c01306{left:589.450050px;}
.x8c_c01306{left:591.484848px;}
.x49_c01306{left:604.113330px;}
.x64_c01306{left:606.967392px;}
.x2a_c01306{left:614.303310px;}
.x91_c01306{left:621.000000px;}
.x85_c01306{left:622.185000px;}
.x15_c01306{left:623.778141px;}
.x56_c01306{left:628.510500px;}
.x4a_c01306{left:637.270170px;}
.x9_c01306{left:644.899500px;}
.x35_c01306{left:647.857230px;}
.x71_c01306{left:653.110500px;}
.x86_c01306{left:658.479000px;}
.x20_c01306{left:668.658000px;}
.x8d_c01306{left:670.383747px;}
.x57_c01306{left:673.338000px;}
.x16_c01306{left:678.586406px;}
.x2b_c01306{left:679.983450px;}
.x3e_c01306{left:681.522300px;}
.x65_c01306{left:684.956892px;}
.x4b_c01306{left:693.760530px;}
.x3f_c01306{left:704.748750px;}
.x8e_c01306{left:711.979494px;}
.x2c_c01306{left:714.573330px;}
.x58_c01306{left:717.403500px;}
.x87_c01306{left:722.442000px;}
.x4c_c01306{left:726.714870px;}
.x66_c01306{left:730.100892px;}
.x40_c01306{left:748.843620px;}
.x67_c01306{left:772.445892px;}
.x17_c01306{left:779.030958px;}
.x21_c01306{left:791.710500px;}
.x59_c01306{left:806.775000px;}
.x36_c01306{left:813.918900px;}
.x2d_c01306{left:824.430210px;}
.x18_c01306{left:833.855723px;}
.x4d_c01306{left:837.624150px;}
.x5a_c01306{left:838.648500px;}
.x72_c01306{left:841.260000px;}
.x37_c01306{left:847.822710px;}
.x22_c01306{left:852.507000px;}
.x2e_c01306{left:858.465060px;}
.x23_c01306{left:865.626000px;}
@media print{
.v0_c01306{vertical-align:0.000000pt;}
.ls0_c01306{letter-spacing:0.000000pt;}
.ws0_c01306{word-spacing:0.000000pt;}
.fs10_c01306{font-size:16.000000pt;}
.fsd_c01306{font-size:16.006727pt;}
.fs2_c01306{font-size:26.672546pt;}
.fse_c01306{font-size:42.673578pt;}
.fs7_c01306{font-size:58.678399pt;}
.fs1_c01306{font-size:58.679601pt;}
.fsb_c01306{font-size:64.006272pt;}
.fs8_c01306{font-size:64.008191pt;}
.fs4_c01306{font-size:64.012799pt;}
.fs3_c01306{font-size:64.014110pt;}
.fsa_c01306{font-size:69.342207pt;}
.fs6_c01306{font-size:69.347199pt;}
.fsc_c01306{font-size:74.673984pt;}
.fs9_c01306{font-size:74.676223pt;}
.fs5_c01306{font-size:74.681599pt;}
.fsf_c01306{font-size:106.683945pt;}
.fs0_c01306{font-size:144.000000pt;}
.y0_c01306{bottom:0.000000pt;}
.ya9_c01306{bottom:1.200000pt;}
.y9f_c01306{bottom:451.639069pt;}
.ya0_c01306{bottom:455.152965pt;}
.ya1_c01306{bottom:455.809472pt;}
.ya2_c01306{bottom:457.835776pt;}
.ya3_c01306{bottom:460.087285pt;}
.ya4_c01306{bottom:461.892477pt;}
.ya5_c01306{bottom:463.719587pt;}
.ya6_c01306{bottom:464.388096pt;}
.ya7_c01306{bottom:465.332749pt;}
.ya8_c01306{bottom:466.183675pt;}
.y8f_c01306{bottom:487.438667pt;}
.y90_c01306{bottom:489.816107pt;}
.y91_c01306{bottom:490.333883pt;}
.y92_c01306{bottom:490.667099pt;}
.y93_c01306{bottom:491.566211pt;}
.y94_c01306{bottom:492.831923pt;}
.y95_c01306{bottom:493.151555pt;}
.y96_c01306{bottom:493.898795pt;}
.y97_c01306{bottom:494.222819pt;}
.y98_c01306{bottom:494.763347pt;}
.y99_c01306{bottom:495.657515pt;}
.y9a_c01306{bottom:496.543595pt;}
.y9b_c01306{bottom:497.053427pt;}
.y9c_c01306{bottom:497.634131pt;}
.y9d_c01306{bottom:497.995667pt;}
.y9e_c01306{bottom:498.657539pt;}
.y8a_c01306{bottom:516.700000pt;}
.y8b_c01306{bottom:518.766269pt;}
.y8c_c01306{bottom:519.114115pt;}
.y8d_c01306{bottom:519.788964pt;}
.y8e_c01306{bottom:520.109008pt;}
.y84_c01306{bottom:584.159480pt;}
.y85_c01306{bottom:584.742803pt;}
.y86_c01306{bottom:585.347768pt;}
.y87_c01306{bottom:587.090027pt;}
.y88_c01306{bottom:587.535944pt;}
.y89_c01306{bottom:588.277867pt;}
.y7b_c01306{bottom:617.042667pt;}
.y7c_c01306{bottom:617.452867pt;}
.y7d_c01306{bottom:618.272109pt;}
.y7e_c01306{bottom:618.689328pt;}
.y7f_c01306{bottom:619.109664pt;}
.y80_c01306{bottom:620.615075pt;}
.y81_c01306{bottom:621.730632pt;}
.y82_c01306{bottom:622.685115pt;}
.y83_c01306{bottom:624.072048pt;}
.y77_c01306{bottom:646.554016pt;}
.y78_c01306{bottom:646.905685pt;}
.y79_c01306{bottom:648.481099pt;}
.y7a_c01306{bottom:649.013259pt;}
.y68_c01306{bottom:676.800619pt;}
.y69_c01306{bottom:678.882837pt;}
.y6a_c01306{bottom:679.510635pt;}
.y6b_c01306{bottom:680.918699pt;}
.y6c_c01306{bottom:681.237632pt;}
.y6d_c01306{bottom:681.703083pt;}
.y6e_c01306{bottom:682.474880pt;}
.y6f_c01306{bottom:683.584064pt;}
.y70_c01306{bottom:684.049749pt;}
.y71_c01306{bottom:684.847573pt;}
.y72_c01306{bottom:685.155648pt;}
.y73_c01306{bottom:686.264832pt;}
.y74_c01306{bottom:686.906880pt;}
.y75_c01306{bottom:687.509120pt;}
.y76_c01306{bottom:688.005397pt;}
.y5d_c01306{bottom:711.842667pt;}
.y5e_c01306{bottom:712.330773pt;}
.y5f_c01306{bottom:713.716160pt;}
.y60_c01306{bottom:714.200789pt;}
.y61_c01306{bottom:714.984171pt;}
.y62_c01306{bottom:715.932949pt;}
.y63_c01306{bottom:716.880747pt;}
.y64_c01306{bottom:717.518293pt;}
.y65_c01306{bottom:718.145003pt;}
.y66_c01306{bottom:719.416064pt;}
.y67_c01306{bottom:719.869376pt;}
.y59_c01306{bottom:739.183813pt;}
.y5a_c01306{bottom:740.519467pt;}
.y5b_c01306{bottom:741.562400pt;}
.y5c_c01306{bottom:743.619227pt;}
.y4b_c01306{bottom:771.819573pt;}
.y4c_c01306{bottom:772.647920pt;}
.y4d_c01306{bottom:773.284373pt;}
.y4e_c01306{bottom:774.502133pt;}
.y4f_c01306{bottom:774.900933pt;}
.y50_c01306{bottom:775.728853pt;}
.y51_c01306{bottom:777.391787pt;}
.y52_c01306{bottom:778.853307pt;}
.y53_c01306{bottom:780.062587pt;}
.y54_c01306{bottom:780.681387pt;}
.y55_c01306{bottom:781.736347pt;}
.y56_c01306{bottom:782.351547pt;}
.y57_c01306{bottom:783.581653pt;}
.y58_c01306{bottom:784.421973pt;}
.y3d_c01306{bottom:804.464133pt;}
.y3e_c01306{bottom:805.847307pt;}
.y3f_c01306{bottom:806.534347pt;}
.y40_c01306{bottom:806.899893pt;}
.y41_c01306{bottom:807.470587pt;}
.y42_c01306{bottom:807.831040pt;}
.y43_c01306{bottom:808.419920pt;}
.y44_c01306{bottom:809.500267pt;}
.y45_c01306{bottom:810.252400pt;}
.y46_c01306{bottom:811.387653pt;}
.y47_c01306{bottom:812.131787pt;}
.y48_c01306{bottom:813.252800pt;}
.y49_c01306{bottom:813.645707pt;}
.y4a_c01306{bottom:814.390933pt;}
.y32_c01306{bottom:833.751360pt;}
.y33_c01306{bottom:835.404187pt;}
.y34_c01306{bottom:836.418373pt;}
.y35_c01306{bottom:837.049707pt;}
.y36_c01306{bottom:839.100213pt;}
.y37_c01306{bottom:839.715307pt;}
.y38_c01306{bottom:841.389147pt;}
.y39_c01306{bottom:842.825040pt;}
.y3a_c01306{bottom:843.431360pt;}
.y3b_c01306{bottom:845.925307pt;}
.y3c_c01306{bottom:846.558720pt;}
.y24_c01306{bottom:865.675840pt;}
.y25_c01306{bottom:866.198400pt;}
.y26_c01306{bottom:866.731760pt;}
.y27_c01306{bottom:867.258933pt;}
.y28_c01306{bottom:868.131387pt;}
.y29_c01306{bottom:868.667360pt;}
.y2a_c01306{bottom:870.632427pt;}
.y2b_c01306{bottom:872.027120pt;}
.y2c_c01306{bottom:872.399200pt;}
.y2d_c01306{bottom:872.926133pt;}
.y2e_c01306{bottom:873.976400pt;}
.y2f_c01306{bottom:874.529973pt;}
.y30_c01306{bottom:876.288240pt;}
.y31_c01306{bottom:876.833280pt;}
.y19_c01306{bottom:897.122667pt;}
.y1a_c01306{bottom:897.695387pt;}
.y1b_c01306{bottom:898.253600pt;}
.y1c_c01306{bottom:900.231680pt;}
.y1d_c01306{bottom:902.205040pt;}
.y1e_c01306{bottom:903.755040pt;}
.y1f_c01306{bottom:904.370000pt;}
.y20_c01306{bottom:906.141333pt;}
.y21_c01306{bottom:908.328933pt;}
.y22_c01306{bottom:909.409760pt;}
.y23_c01306{bottom:909.642987pt;}
.ye_c01306{bottom:930.949224pt;}
.yf_c01306{bottom:931.582773pt;}
.y10_c01306{bottom:933.157201pt;}
.y11_c01306{bottom:933.649212pt;}
.y12_c01306{bottom:934.109844pt;}
.y13_c01306{bottom:934.609520pt;}
.y14_c01306{bottom:935.523539pt;}
.y15_c01306{bottom:936.012263pt;}
.y16_c01306{bottom:936.791243pt;}
.y17_c01306{bottom:938.219344pt;}
.y18_c01306{bottom:938.998632pt;}
.ya_c01306{bottom:979.664169pt;}
.yb_c01306{bottom:981.100753pt;}
.yc_c01306{bottom:981.646631pt;}
.yd_c01306{bottom:982.437671pt;}
.y2_c01306{bottom:991.205333pt;}
.y3_c01306{bottom:992.229069pt;}
.y4_c01306{bottom:993.851697pt;}
.y5_c01306{bottom:994.477049pt;}
.y6_c01306{bottom:995.923753pt;}
.y7_c01306{bottom:996.337061pt;}
.y8_c01306{bottom:997.355337pt;}
.y9_c01306{bottom:998.852721pt;}
.y1_c01306{bottom:1064.880000pt;}
.h12_c01306{height:16.000000pt;}
.hf_c01306{height:16.006727pt;}
.h4_c01306{height:26.672546pt;}
.h10_c01306{height:42.673578pt;}
.h9_c01306{height:58.678399pt;}
.h3_c01306{height:58.679601pt;}
.hd_c01306{height:64.006272pt;}
.ha_c01306{height:64.008191pt;}
.h6_c01306{height:64.012799pt;}
.h5_c01306{height:64.014110pt;}
.hc_c01306{height:69.342207pt;}
.h8_c01306{height:69.347199pt;}
.he_c01306{height:74.673984pt;}
.hb_c01306{height:74.676223pt;}
.h7_c01306{height:74.681599pt;}
.h11_c01306{height:106.683945pt;}
.h2_c01306{height:144.000000pt;}
.h1_c01306{height:1111.333333pt;}
.h0_c01306{height:1111.440000pt;}
.w1_c01306{width:810.666667pt;}
.w0_c01306{width:810.933333pt;}
.x0_c01306{left:0.000000pt;}
.x5b_c01306{left:17.337237pt;}
.x7b_c01306{left:18.900000pt;}
.x19_c01306{left:143.429333pt;}
.x41_c01306{left:144.446800pt;}
.x4e_c01306{left:146.845547pt;}
.x68_c01306{left:148.191883pt;}
.x7c_c01306{left:150.980000pt;}
.x88_c01306{left:153.281813pt;}
.x69_c01306{left:167.753931pt;}
.x1a_c01306{left:172.065333pt;}
.x7d_c01306{left:179.745333pt;}
.x89_c01306{left:181.825912pt;}
.x42_c01306{left:183.863333pt;}
.x4f_c01306{left:185.016773pt;}
.x5c_c01306{left:186.713237pt;}
.x73_c01306{left:187.852776pt;}
.x7e_c01306{left:198.257333pt;}
.x1b_c01306{left:199.976000pt;}
.x24_c01306{left:201.848267pt;}
.xa_c01306{left:207.173416pt;}
.x2_c01306{left:209.082667pt;}
.x43_c01306{left:214.152053pt;}
.x38_c01306{left:216.048480pt;}
.x78_c01306{left:219.101333pt;}
.x2f_c01306{left:222.504160pt;}
.x74_c01306{left:228.206883pt;}
.x25_c01306{left:231.141440pt;}
.xe_c01306{left:238.037584pt;}
.x51_c01306{left:243.796000pt;}
.x6c_c01306{left:245.688000pt;}
.x7f_c01306{left:248.208000pt;}
.x39_c01306{left:252.201200pt;}
.x79_c01306{left:254.366667pt;}
.x6a_c01306{left:255.297803pt;}
.x3_c01306{left:257.832000pt;}
.x7a_c01306{left:265.402667pt;}
.x30_c01306{left:270.812533pt;}
.x44_c01306{left:272.172240pt;}
.x50_c01306{left:273.578213pt;}
.x5d_c01306{left:274.717237pt;}
.xf_c01306{left:277.671089pt;}
.xb_c01306{left:279.012261pt;}
.x6b_c01306{left:284.890197pt;}
.x45_c01306{left:291.178533pt;}
.x5e_c01306{left:294.650571pt;}
.x1c_c01306{left:298.880000pt;}
.x31_c01306{left:300.845253pt;}
.xc_c01306{left:306.276821pt;}
.x26_c01306{left:309.432587pt;}
.x80_c01306{left:318.525333pt;}
.x3a_c01306{left:320.437227pt;}
.x5f_c01306{left:323.741237pt;}
.x46_c01306{left:330.573733pt;}
.x6d_c01306{left:333.505333pt;}
.x4_c01306{left:335.100000pt;}
.x81_c01306{left:336.282667pt;}
.x75_c01306{left:344.366592pt;}
.xd_c01306{left:345.850995pt;}
.x3b_c01306{left:351.415173pt;}
.x1_c01306{left:354.240000pt;}
.x52_c01306{left:360.889333pt;}
.x6e_c01306{left:363.306667pt;}
.x5_c01306{left:364.878667pt;}
.x8a_c01306{left:367.835851pt;}
.x60_c01306{left:371.978571pt;}
.x76_c01306{left:374.122181pt;}
.x10_c01306{left:376.082755pt;}
.x82_c01306{left:377.796000pt;}
.x53_c01306{left:391.178667pt;}
.x6f_c01306{left:393.330667pt;}
.x83_c01306{left:395.797333pt;}
.x1d_c01306{left:397.548000pt;}
.x32_c01306{left:398.501973pt;}
.x11_c01306{left:406.816641pt;}
.x3c_c01306{left:408.300320pt;}
.x47_c01306{left:409.785493pt;}
.x27_c01306{left:418.623627pt;}
.x77_c01306{left:423.592157pt;}
.x84_c01306{left:425.826667pt;}
.x33_c01306{left:427.789387pt;}
.x6_c01306{left:433.769333pt;}
.x12_c01306{left:435.611665pt;}
.x54_c01306{left:440.140000pt;}
.x61_c01306{left:441.302571pt;}
.x8b_c01306{left:446.339461pt;}
.x3d_c01306{left:447.907787pt;}
.x7_c01306{left:453.450667pt;}
.x8f_c01306{left:460.560000pt;}
.x13_c01306{left:466.837608pt;}
.x62_c01306{left:470.407904pt;}
.x1e_c01306{left:475.048000pt;}
.x48_c01306{left:479.393440pt;}
.x90_c01306{left:486.480000pt;}
.x28_c01306{left:496.094720pt;}
.x55_c01306{left:499.438667pt;}
.x70_c01306{left:500.860000pt;}
.x8_c01306{left:501.940000pt;}
.x1f_c01306{left:505.796000pt;}
.x34_c01306{left:507.479787pt;}
.x29_c01306{left:516.766213pt;}
.x63_c01306{left:520.271904pt;}
.x14_c01306{left:523.955600pt;}
.x8c_c01306{left:525.764309pt;}
.x49_c01306{left:536.989627pt;}
.x64_c01306{left:539.526571pt;}
.x2a_c01306{left:546.047387pt;}
.x91_c01306{left:552.000000pt;}
.x85_c01306{left:553.053333pt;}
.x15_c01306{left:554.469459pt;}
.x56_c01306{left:558.676000pt;}
.x4a_c01306{left:566.462373pt;}
.x9_c01306{left:573.244000pt;}
.x35_c01306{left:575.873093pt;}
.x71_c01306{left:580.542667pt;}
.x86_c01306{left:585.314667pt;}
.x20_c01306{left:594.362667pt;}
.x8d_c01306{left:595.896664pt;}
.x57_c01306{left:598.522667pt;}
.x16_c01306{left:603.187916pt;}
.x2b_c01306{left:604.429733pt;}
.x3e_c01306{left:605.797600pt;}
.x65_c01306{left:608.850571pt;}
.x4b_c01306{left:616.676027pt;}
.x3f_c01306{left:626.443333pt;}
.x8e_c01306{left:632.870661pt;}
.x2c_c01306{left:635.176293pt;}
.x58_c01306{left:637.692000pt;}
.x87_c01306{left:642.170667pt;}
.x4c_c01306{left:645.968773pt;}
.x66_c01306{left:648.978571pt;}
.x40_c01306{left:665.638773pt;}
.x67_c01306{left:686.618571pt;}
.x17_c01306{left:692.471963pt;}
.x21_c01306{left:703.742667pt;}
.x59_c01306{left:717.133333pt;}
.x36_c01306{left:723.483467pt;}
.x2d_c01306{left:732.826853pt;}
.x18_c01306{left:741.205087pt;}
.x4d_c01306{left:744.554800pt;}
.x5a_c01306{left:745.465333pt;}
.x72_c01306{left:747.786667pt;}
.x37_c01306{left:753.620187pt;}
.x22_c01306{left:757.784000pt;}
.x2e_c01306{left:763.080053pt;}
.x23_c01306{left:769.445333pt;}
}





/* 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_c01307 {
    display:none;
  }
  .loading-indicator_c01307.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01307 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_c01307 { 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_c01307" -> "#page-container .classname_c01307")
 */
.pf_c01307 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01307 { /* 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_c01307.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01307 { /* 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_c01307 { /* 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_c01307 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01307 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01307 {overflow:visible;}
  }
}
.c_c01307 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01307 { /* 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_c01307:after { /* webkit #35443 */
  content: '';
}
.t_c01307:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01307 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 */
}
.__c01307 { /* 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_c01307 { /* info for Javascript */
  display:none;
}
.l_c01307 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01307 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01307 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01307: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_c01307 {
    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_c01307.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01307.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_c01307 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01307{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01307;src:url('chunks/assets/font_78f73daa2ee315112395a523.woff2')format("woff");}.ff1_c01307{font-family:ff1_c01307;line-height:1.000000;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;}
.m0_c01307{transform:matrix(0.087440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087440,0.000000,0.000000,0.250000,0,0);}
.m2_c01307{transform:matrix(0.306220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306220,0.000000,0.000000,0.250000,0,0);}
.m3_c01307{transform:matrix(0.467925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467925,0.000000,0.000000,0.250000,0,0);}
.m1_c01307{transform:matrix(0.561095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.561095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.561095,0.000000,0.000000,0.250000,0,0);}
.v0_c01307{vertical-align:0.000000px;}
.ls0_c01307{letter-spacing:0.000000px;}
.sc__c01307{text-shadow:none;}
.sc0_c01307{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__c01307{-webkit-text-stroke:0px transparent;}
.sc0_c01307{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01307{word-spacing:0.000000px;}
.fc0_c01307{color:transparent;}
.fs1_c01307{font-size:24.000000px;}
.fs0_c01307{font-size:42.000000px;}
.y0_c01307{bottom:0.000000px;}
.y3_c01307{bottom:51.030000px;}
.y2_c01307{bottom:61.560000px;}
.y1_c01307{bottom:65.880000px;}
.h3_c01307{height:24.000000px;}
.h2_c01307{height:42.000000px;}
.h1_c01307{height:1250.250000px;}
.h0_c01307{height:1250.370000px;}
.w1_c01307{width:912.000000px;}
.w0_c01307{width:912.300000px;}
.x0_c01307{left:0.000000px;}
.x1_c01307{left:5.400000px;}
@media print{
.v0_c01307{vertical-align:0.000000pt;}
.ls0_c01307{letter-spacing:0.000000pt;}
.ws0_c01307{word-spacing:0.000000pt;}
.fs1_c01307{font-size:21.333333pt;}
.fs0_c01307{font-size:37.333333pt;}
.y0_c01307{bottom:0.000000pt;}
.y3_c01307{bottom:45.360000pt;}
.y2_c01307{bottom:54.720000pt;}
.y1_c01307{bottom:58.560000pt;}
.h3_c01307{height:21.333333pt;}
.h2_c01307{height:37.333333pt;}
.h1_c01307{height:1111.333333pt;}
.h0_c01307{height:1111.440000pt;}
.w1_c01307{width:810.666667pt;}
.w0_c01307{width:810.933333pt;}
.x0_c01307{left:0.000000pt;}
.x1_c01307{left:4.800000pt;}
}





/* 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_c01308 {
    display:none;
  }
  .loading-indicator_c01308.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01308 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_c01308 { 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_c01308" -> "#page-container .classname_c01308")
 */
.pf_c01308 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01308 { /* 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_c01308.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01308 { /* 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_c01308 { /* 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_c01308 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01308 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01308 {overflow:visible;}
  }
}
.c_c01308 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01308 { /* 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_c01308:after { /* webkit #35443 */
  content: '';
}
.t_c01308:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01308 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 */
}
.__c01308 { /* 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_c01308 { /* info for Javascript */
  display:none;
}
.l_c01308 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01308 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01308 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01308: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_c01308 {
    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_c01308.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01308.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_c01308 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01308{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01308;src:url('chunks/assets/font_53ec0c54e60da7c2d414b553.woff2')format("woff");}.ff1_c01308{font-family:ff1_c01308;line-height:1.000000;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;}
.m9e_c01308{transform:matrix(0.017307,0.000329,-0.004749,0.249955,0,0);-ms-transform:matrix(0.017307,0.000329,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.017307,0.000329,-0.004749,0.249955,0,0);}
.m5f_c01308{transform:matrix(0.017492,0.000315,-0.004499,0.249960,0,0);-ms-transform:matrix(0.017492,0.000315,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.017492,0.000315,-0.004499,0.249960,0,0);}
.m0_c01308{transform:matrix(0.115435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115435,0.000000,0.000000,0.250000,0,0);}
.m11c_c01308{transform:matrix(0.159784,0.003835,-0.005998,0.249928,0,0);-ms-transform:matrix(0.159784,0.003835,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.159784,0.003835,-0.005998,0.249928,0,0);}
.m1_c01308{transform:matrix(0.162140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162140,0.000000,0.000000,0.250000,0,0);}
.mb8_c01308{transform:matrix(0.173915,0.004174,-0.005998,0.249928,0,0);-ms-transform:matrix(0.173915,0.004174,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.173915,0.004174,-0.005998,0.249928,0,0);}
.ma6_c01308{transform:matrix(0.178104,0.004274,-0.005998,0.249928,0,0);-ms-transform:matrix(0.178104,0.004274,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.178104,0.004274,-0.005998,0.249928,0,0);}
.m66_c01308{transform:matrix(0.180044,0.003601,-0.004999,0.249950,0,0);-ms-transform:matrix(0.180044,0.003601,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.180044,0.003601,-0.004999,0.249950,0,0);}
.m5c_c01308{transform:matrix(0.186045,0.003349,-0.004499,0.249960,0,0);-ms-transform:matrix(0.186045,0.003349,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.186045,0.003349,-0.004499,0.249960,0,0);}
.mca_c01308{transform:matrix(0.198143,0.004557,-0.005748,0.249934,0,0);-ms-transform:matrix(0.198143,0.004557,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.198143,0.004557,-0.005748,0.249934,0,0);}
.m111_c01308{transform:matrix(0.202347,0.004856,-0.005998,0.249928,0,0);-ms-transform:matrix(0.202347,0.004856,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.202347,0.004856,-0.005998,0.249928,0,0);}
.mb7_c01308{transform:matrix(0.202432,0.004858,-0.005998,0.249928,0,0);-ms-transform:matrix(0.202432,0.004858,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.202432,0.004858,-0.005998,0.249928,0,0);}
.m38_c01308{transform:matrix(0.204289,0.004086,-0.004999,0.249950,0,0);-ms-transform:matrix(0.204289,0.004086,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.204289,0.004086,-0.004999,0.249950,0,0);}
.mf3_c01308{transform:matrix(0.206350,0.004746,-0.005748,0.249934,0,0);-ms-transform:matrix(0.206350,0.004746,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.206350,0.004746,-0.005748,0.249934,0,0);}
.m5d_c01308{transform:matrix(0.206422,0.003716,-0.004499,0.249960,0,0);-ms-transform:matrix(0.206422,0.003716,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.206422,0.003716,-0.004499,0.249960,0,0);}
.md2_c01308{transform:matrix(0.207910,0.004782,-0.005748,0.249934,0,0);-ms-transform:matrix(0.207910,0.004782,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.207910,0.004782,-0.005748,0.249934,0,0);}
.m8f_c01308{transform:matrix(0.208437,0.003960,-0.004749,0.249955,0,0);-ms-transform:matrix(0.208437,0.003960,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.208437,0.003960,-0.004749,0.249955,0,0);}
.m5a_c01308{transform:matrix(0.209086,0.003764,-0.004499,0.249960,0,0);-ms-transform:matrix(0.209086,0.003764,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.209086,0.003764,-0.004499,0.249960,0,0);}
.m29_c01308{transform:matrix(0.209348,0.004187,-0.004999,0.249950,0,0);-ms-transform:matrix(0.209348,0.004187,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.209348,0.004187,-0.004999,0.249950,0,0);}
.m3f_c01308{transform:matrix(0.209866,0.003778,-0.004499,0.249960,0,0);-ms-transform:matrix(0.209866,0.003778,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.209866,0.003778,-0.004499,0.249960,0,0);}
.m100_c01308{transform:matrix(0.210239,0.004836,-0.005748,0.249934,0,0);-ms-transform:matrix(0.210239,0.004836,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.210239,0.004836,-0.005748,0.249934,0,0);}
.m50_c01308{transform:matrix(0.210261,0.003785,-0.004499,0.249960,0,0);-ms-transform:matrix(0.210261,0.003785,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.210261,0.003785,-0.004499,0.249960,0,0);}
.m3b_c01308{transform:matrix(0.210651,0.003792,-0.004499,0.249960,0,0);-ms-transform:matrix(0.210651,0.003792,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.210651,0.003792,-0.004499,0.249960,0,0);}
.m82_c01308{transform:matrix(0.211663,0.004233,-0.004999,0.249950,0,0);-ms-transform:matrix(0.211663,0.004233,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.211663,0.004233,-0.004999,0.249950,0,0);}
.mec_c01308{transform:matrix(0.212229,0.004881,-0.005748,0.249934,0,0);-ms-transform:matrix(0.212229,0.004881,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.212229,0.004881,-0.005748,0.249934,0,0);}
.mea_c01308{transform:matrix(0.212454,0.004886,-0.005748,0.249934,0,0);-ms-transform:matrix(0.212454,0.004886,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.212454,0.004886,-0.005748,0.249934,0,0);}
.mef_c01308{transform:matrix(0.212514,0.004888,-0.005748,0.249934,0,0);-ms-transform:matrix(0.212514,0.004888,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.212514,0.004888,-0.005748,0.249934,0,0);}
.m105_c01308{transform:matrix(0.212564,0.004889,-0.005748,0.249934,0,0);-ms-transform:matrix(0.212564,0.004889,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.212564,0.004889,-0.005748,0.249934,0,0);}
.m10b_c01308{transform:matrix(0.213264,0.004905,-0.005748,0.249934,0,0);-ms-transform:matrix(0.213264,0.004905,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.213264,0.004905,-0.005748,0.249934,0,0);}
.m118_c01308{transform:matrix(0.213658,0.005128,-0.005998,0.249928,0,0);-ms-transform:matrix(0.213658,0.005128,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.213658,0.005128,-0.005998,0.249928,0,0);}
.m113_c01308{transform:matrix(0.213743,0.005130,-0.005998,0.249928,0,0);-ms-transform:matrix(0.213743,0.005130,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.213743,0.005130,-0.005998,0.249928,0,0);}
.me9_c01308{transform:matrix(0.213748,0.004916,-0.005748,0.249934,0,0);-ms-transform:matrix(0.213748,0.004916,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.213748,0.004916,-0.005748,0.249934,0,0);}
.m110_c01308{transform:matrix(0.214603,0.005150,-0.005998,0.249928,0,0);-ms-transform:matrix(0.214603,0.005150,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.214603,0.005150,-0.005998,0.249928,0,0);}
.mb0_c01308{transform:matrix(0.214648,0.005152,-0.005998,0.249928,0,0);-ms-transform:matrix(0.214648,0.005152,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.214648,0.005152,-0.005998,0.249928,0,0);}
.mb5_c01308{transform:matrix(0.214893,0.005157,-0.005998,0.249928,0,0);-ms-transform:matrix(0.214893,0.005157,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.214893,0.005157,-0.005998,0.249928,0,0);}
.m108_c01308{transform:matrix(0.215698,0.004961,-0.005748,0.249934,0,0);-ms-transform:matrix(0.215698,0.004961,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.215698,0.004961,-0.005748,0.249934,0,0);}
.mcc_c01308{transform:matrix(0.217647,0.005006,-0.005748,0.249934,0,0);-ms-transform:matrix(0.217647,0.005006,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.217647,0.005006,-0.005748,0.249934,0,0);}
.m114_c01308{transform:matrix(0.219472,0.005267,-0.005998,0.249928,0,0);-ms-transform:matrix(0.219472,0.005267,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.219472,0.005267,-0.005998,0.249928,0,0);}
.mc7_c01308{transform:matrix(0.220132,0.005063,-0.005748,0.249934,0,0);-ms-transform:matrix(0.220132,0.005063,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.220132,0.005063,-0.005748,0.249934,0,0);}
.m5b_c01308{transform:matrix(0.220259,0.003965,-0.004499,0.249960,0,0);-ms-transform:matrix(0.220259,0.003965,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.220259,0.003965,-0.004499,0.249960,0,0);}
.mf1_c01308{transform:matrix(0.220832,0.005079,-0.005748,0.249934,0,0);-ms-transform:matrix(0.220832,0.005079,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.220832,0.005079,-0.005748,0.249934,0,0);}
.mf8_c01308{transform:matrix(0.221316,0.005090,-0.005748,0.249934,0,0);-ms-transform:matrix(0.221316,0.005090,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.221316,0.005090,-0.005748,0.249934,0,0);}
.m99_c01308{transform:matrix(0.221525,0.004209,-0.004749,0.249955,0,0);-ms-transform:matrix(0.221525,0.004209,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.221525,0.004209,-0.004749,0.249955,0,0);}
.mcd_c01308{transform:matrix(0.222066,0.005108,-0.005748,0.249934,0,0);-ms-transform:matrix(0.222066,0.005108,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.222066,0.005108,-0.005748,0.249934,0,0);}
.m70_c01308{transform:matrix(0.222456,0.004449,-0.004999,0.249950,0,0);-ms-transform:matrix(0.222456,0.004449,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.222456,0.004449,-0.004999,0.249950,0,0);}
.m10c_c01308{transform:matrix(0.222786,0.005124,-0.005748,0.249934,0,0);-ms-transform:matrix(0.222786,0.005124,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.222786,0.005124,-0.005748,0.249934,0,0);}
.mbb_c01308{transform:matrix(0.223546,0.005142,-0.005748,0.249934,0,0);-ms-transform:matrix(0.223546,0.005142,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.223546,0.005142,-0.005748,0.249934,0,0);}
.m4c_c01308{transform:matrix(0.223639,0.004025,-0.004499,0.249960,0,0);-ms-transform:matrix(0.223639,0.004025,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.223639,0.004025,-0.004499,0.249960,0,0);}
.md0_c01308{transform:matrix(0.224676,0.005168,-0.005748,0.249934,0,0);-ms-transform:matrix(0.224676,0.005168,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.224676,0.005168,-0.005748,0.249934,0,0);}
.m32_c01308{transform:matrix(0.224705,0.004494,-0.004999,0.249950,0,0);-ms-transform:matrix(0.224705,0.004494,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.224705,0.004494,-0.004999,0.249950,0,0);}
.m90_c01308{transform:matrix(0.225549,0.004285,-0.004749,0.249955,0,0);-ms-transform:matrix(0.225549,0.004285,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.225549,0.004285,-0.004749,0.249955,0,0);}
.m62_c01308{transform:matrix(0.226020,0.004520,-0.004999,0.249950,0,0);-ms-transform:matrix(0.226020,0.004520,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.226020,0.004520,-0.004999,0.249950,0,0);}
.m61_c01308{transform:matrix(0.226700,0.004534,-0.004999,0.249950,0,0);-ms-transform:matrix(0.226700,0.004534,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.226700,0.004534,-0.004999,0.249950,0,0);}
.m34_c01308{transform:matrix(0.226795,0.004536,-0.004999,0.249950,0,0);-ms-transform:matrix(0.226795,0.004536,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.226795,0.004536,-0.004999,0.249950,0,0);}
.m49_c01308{transform:matrix(0.226803,0.004082,-0.004499,0.249960,0,0);-ms-transform:matrix(0.226803,0.004082,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.226803,0.004082,-0.004499,0.249960,0,0);}
.mde_c01308{transform:matrix(0.226905,0.005219,-0.005748,0.249934,0,0);-ms-transform:matrix(0.226905,0.005219,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.226905,0.005219,-0.005748,0.249934,0,0);}
.mbd_c01308{transform:matrix(0.226945,0.005220,-0.005748,0.249934,0,0);-ms-transform:matrix(0.226945,0.005220,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.226945,0.005220,-0.005748,0.249934,0,0);}
.mc5_c01308{transform:matrix(0.227205,0.005226,-0.005748,0.249934,0,0);-ms-transform:matrix(0.227205,0.005226,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.227205,0.005226,-0.005748,0.249934,0,0);}
.mf0_c01308{transform:matrix(0.227625,0.005235,-0.005748,0.249934,0,0);-ms-transform:matrix(0.227625,0.005235,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.227625,0.005235,-0.005748,0.249934,0,0);}
.m95_c01308{transform:matrix(0.227644,0.004325,-0.004749,0.249955,0,0);-ms-transform:matrix(0.227644,0.004325,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.227644,0.004325,-0.004749,0.249955,0,0);}
.m97_c01308{transform:matrix(0.227684,0.004326,-0.004749,0.249955,0,0);-ms-transform:matrix(0.227684,0.004326,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.227684,0.004326,-0.004749,0.249955,0,0);}
.ma4_c01308{transform:matrix(0.228104,0.005475,-0.005998,0.249928,0,0);-ms-transform:matrix(0.228104,0.005475,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.228104,0.005475,-0.005998,0.249928,0,0);}
.m117_c01308{transform:matrix(0.228214,0.005477,-0.005998,0.249928,0,0);-ms-transform:matrix(0.228214,0.005477,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.228214,0.005477,-0.005998,0.249928,0,0);}
.m8e_c01308{transform:matrix(0.228239,0.004337,-0.004749,0.249955,0,0);-ms-transform:matrix(0.228239,0.004337,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.228239,0.004337,-0.004749,0.249955,0,0);}
.m10f_c01308{transform:matrix(0.228549,0.005485,-0.005998,0.249928,0,0);-ms-transform:matrix(0.228549,0.005485,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.228549,0.005485,-0.005998,0.249928,0,0);}
.mc6_c01308{transform:matrix(0.228635,0.005259,-0.005748,0.249934,0,0);-ms-transform:matrix(0.228635,0.005259,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.228635,0.005259,-0.005748,0.249934,0,0);}
.mcb_c01308{transform:matrix(0.228989,0.005267,-0.005748,0.249934,0,0);-ms-transform:matrix(0.228989,0.005267,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.228989,0.005267,-0.005748,0.249934,0,0);}
.m109_c01308{transform:matrix(0.229144,0.005270,-0.005748,0.249934,0,0);-ms-transform:matrix(0.229144,0.005270,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.229144,0.005270,-0.005748,0.249934,0,0);}
.mbf_c01308{transform:matrix(0.229204,0.005272,-0.005748,0.249934,0,0);-ms-transform:matrix(0.229204,0.005272,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.229204,0.005272,-0.005748,0.249934,0,0);}
.m47_c01308{transform:matrix(0.229228,0.004126,-0.004499,0.249960,0,0);-ms-transform:matrix(0.229228,0.004126,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.229228,0.004126,-0.004499,0.249960,0,0);}
.mad_c01308{transform:matrix(0.229459,0.005507,-0.005998,0.249928,0,0);-ms-transform:matrix(0.229459,0.005507,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.229459,0.005507,-0.005998,0.249928,0,0);}
.m119_c01308{transform:matrix(0.229709,0.005513,-0.005998,0.249928,0,0);-ms-transform:matrix(0.229709,0.005513,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.229709,0.005513,-0.005998,0.249928,0,0);}
.m5e_c01308{transform:matrix(0.229903,0.004138,-0.004499,0.249960,0,0);-ms-transform:matrix(0.229903,0.004138,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.229903,0.004138,-0.004499,0.249960,0,0);}
.m18_c01308{transform:matrix(0.230294,0.004606,-0.004999,0.249950,0,0);-ms-transform:matrix(0.230294,0.004606,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.230294,0.004606,-0.004999,0.249950,0,0);}
.m2e_c01308{transform:matrix(0.230849,0.004617,-0.004999,0.249950,0,0);-ms-transform:matrix(0.230849,0.004617,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.230849,0.004617,-0.004999,0.249950,0,0);}
.med_c01308{transform:matrix(0.230999,0.005313,-0.005748,0.249934,0,0);-ms-transform:matrix(0.230999,0.005313,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.230999,0.005313,-0.005748,0.249934,0,0);}
.m6e_c01308{transform:matrix(0.231054,0.004621,-0.004999,0.249950,0,0);-ms-transform:matrix(0.231054,0.004621,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.231054,0.004621,-0.004999,0.249950,0,0);}
.mf7_c01308{transform:matrix(0.231384,0.005322,-0.005748,0.249934,0,0);-ms-transform:matrix(0.231384,0.005322,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.231384,0.005322,-0.005748,0.249934,0,0);}
.m64_c01308{transform:matrix(0.231579,0.004632,-0.004999,0.249950,0,0);-ms-transform:matrix(0.231579,0.004632,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.231579,0.004632,-0.004999,0.249950,0,0);}
.m54_c01308{transform:matrix(0.231587,0.004169,-0.004499,0.249960,0,0);-ms-transform:matrix(0.231587,0.004169,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.231587,0.004169,-0.004499,0.249960,0,0);}
.m96_c01308{transform:matrix(0.231588,0.004400,-0.004749,0.249955,0,0);-ms-transform:matrix(0.231588,0.004400,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.231588,0.004400,-0.004749,0.249955,0,0);}
.m30_c01308{transform:matrix(0.232409,0.004648,-0.004999,0.249950,0,0);-ms-transform:matrix(0.232409,0.004648,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.232409,0.004648,-0.004999,0.249950,0,0);}
.me6_c01308{transform:matrix(0.232534,0.005348,-0.005748,0.249934,0,0);-ms-transform:matrix(0.232534,0.005348,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.232534,0.005348,-0.005748,0.249934,0,0);}
.m25_c01308{transform:matrix(0.232613,0.004652,-0.004999,0.249950,0,0);-ms-transform:matrix(0.232613,0.004652,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.232613,0.004652,-0.004999,0.249950,0,0);}
.m13_c01308{transform:matrix(0.232938,0.004659,-0.004999,0.249950,0,0);-ms-transform:matrix(0.232938,0.004659,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.232938,0.004659,-0.004999,0.249950,0,0);}
.md1_c01308{transform:matrix(0.233073,0.005361,-0.005748,0.249934,0,0);-ms-transform:matrix(0.233073,0.005361,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.233073,0.005361,-0.005748,0.249934,0,0);}
.md9_c01308{transform:matrix(0.233618,0.005373,-0.005748,0.249934,0,0);-ms-transform:matrix(0.233618,0.005373,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.233618,0.005373,-0.005748,0.249934,0,0);}
.m6c_c01308{transform:matrix(0.233688,0.004674,-0.004999,0.249950,0,0);-ms-transform:matrix(0.233688,0.004674,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.233688,0.004674,-0.004999,0.249950,0,0);}
.m3d_c01308{transform:matrix(0.233697,0.004207,-0.004499,0.249960,0,0);-ms-transform:matrix(0.233697,0.004207,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.233697,0.004207,-0.004499,0.249960,0,0);}
.m81_c01308{transform:matrix(0.233918,0.004678,-0.004999,0.249950,0,0);-ms-transform:matrix(0.233918,0.004678,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.233918,0.004678,-0.004999,0.249950,0,0);}
.m26_c01308{transform:matrix(0.234038,0.004681,-0.004999,0.249950,0,0);-ms-transform:matrix(0.234038,0.004681,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.234038,0.004681,-0.004999,0.249950,0,0);}
.m42_c01308{transform:matrix(0.234497,0.004221,-0.004499,0.249960,0,0);-ms-transform:matrix(0.234497,0.004221,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.234497,0.004221,-0.004499,0.249960,0,0);}
.mf6_c01308{transform:matrix(0.234873,0.005402,-0.005748,0.249934,0,0);-ms-transform:matrix(0.234873,0.005402,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.234873,0.005402,-0.005748,0.249934,0,0);}
.m55_c01308{transform:matrix(0.235087,0.004232,-0.004499,0.249960,0,0);-ms-transform:matrix(0.235087,0.004232,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.235087,0.004232,-0.004499,0.249960,0,0);}
.m36_c01308{transform:matrix(0.235803,0.004716,-0.004999,0.249950,0,0);-ms-transform:matrix(0.235803,0.004716,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.235803,0.004716,-0.004999,0.249950,0,0);}
.mff_c01308{transform:matrix(0.236048,0.005429,-0.005748,0.249934,0,0);-ms-transform:matrix(0.236048,0.005429,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.236048,0.005429,-0.005748,0.249934,0,0);}
.ma2_c01308{transform:matrix(0.236377,0.005673,-0.005998,0.249928,0,0);-ms-transform:matrix(0.236377,0.005673,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.236377,0.005673,-0.005998,0.249928,0,0);}
.md8_c01308{transform:matrix(0.236382,0.005437,-0.005748,0.249934,0,0);-ms-transform:matrix(0.236382,0.005437,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.236382,0.005437,-0.005748,0.249934,0,0);}
.m9b_c01308{transform:matrix(0.236437,0.004492,-0.004749,0.249955,0,0);-ms-transform:matrix(0.236437,0.004492,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.236437,0.004492,-0.004749,0.249955,0,0);}
.ma1_c01308{transform:matrix(0.236957,0.005687,-0.005998,0.249928,0,0);-ms-transform:matrix(0.236957,0.005687,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.236957,0.005687,-0.005998,0.249928,0,0);}
.ma9_c01308{transform:matrix(0.237117,0.005691,-0.005998,0.249928,0,0);-ms-transform:matrix(0.237117,0.005691,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.237117,0.005691,-0.005998,0.249928,0,0);}
.m2a_c01308{transform:matrix(0.237278,0.004746,-0.004999,0.249950,0,0);-ms-transform:matrix(0.237278,0.004746,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.237278,0.004746,-0.004999,0.249950,0,0);}
.m106_c01308{transform:matrix(0.237462,0.005462,-0.005748,0.249934,0,0);-ms-transform:matrix(0.237462,0.005462,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.237462,0.005462,-0.005748,0.249934,0,0);}
.m126_c01308{transform:matrix(0.237527,0.005701,-0.005998,0.249928,0,0);-ms-transform:matrix(0.237527,0.005701,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.237527,0.005701,-0.005998,0.249928,0,0);}
.mc4_c01308{transform:matrix(0.237557,0.005464,-0.005748,0.249934,0,0);-ms-transform:matrix(0.237557,0.005464,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.237557,0.005464,-0.005748,0.249934,0,0);}
.m9c_c01308{transform:matrix(0.237762,0.004517,-0.004749,0.249955,0,0);-ms-transform:matrix(0.237762,0.004517,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.237762,0.004517,-0.004749,0.249955,0,0);}
.m83_c01308{transform:matrix(0.237932,0.004521,-0.004749,0.249955,0,0);-ms-transform:matrix(0.237932,0.004521,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.237932,0.004521,-0.004749,0.249955,0,0);}
.m1a_c01308{transform:matrix(0.238137,0.004763,-0.004999,0.249950,0,0);-ms-transform:matrix(0.238137,0.004763,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.238137,0.004763,-0.004999,0.249950,0,0);}
.m89_c01308{transform:matrix(0.238327,0.004528,-0.004749,0.249955,0,0);-ms-transform:matrix(0.238327,0.004528,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.238327,0.004528,-0.004749,0.249955,0,0);}
.m102_c01308{transform:matrix(0.238472,0.005485,-0.005748,0.249934,0,0);-ms-transform:matrix(0.238472,0.005485,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.238472,0.005485,-0.005748,0.249934,0,0);}
.m59_c01308{transform:matrix(0.238531,0.004294,-0.004499,0.249960,0,0);-ms-transform:matrix(0.238531,0.004294,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.238531,0.004294,-0.004499,0.249960,0,0);}
.mf4_c01308{transform:matrix(0.238637,0.005489,-0.005748,0.249934,0,0);-ms-transform:matrix(0.238637,0.005489,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.238637,0.005489,-0.005748,0.249934,0,0);}
.mf2_c01308{transform:matrix(0.238972,0.005496,-0.005748,0.249934,0,0);-ms-transform:matrix(0.238972,0.005496,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.238972,0.005496,-0.005748,0.249934,0,0);}
.m57_c01308{transform:matrix(0.239256,0.004307,-0.004499,0.249960,0,0);-ms-transform:matrix(0.239256,0.004307,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.239256,0.004307,-0.004499,0.249960,0,0);}
.m15_c01308{transform:matrix(0.239542,0.004791,-0.004999,0.249950,0,0);-ms-transform:matrix(0.239542,0.004791,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.239542,0.004791,-0.004999,0.249950,0,0);}
.m4e_c01308{transform:matrix(0.239551,0.004312,-0.004499,0.249960,0,0);-ms-transform:matrix(0.239551,0.004312,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.239551,0.004312,-0.004499,0.249960,0,0);}
.mcf_c01308{transform:matrix(0.239617,0.005511,-0.005748,0.249934,0,0);-ms-transform:matrix(0.239617,0.005511,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.239617,0.005511,-0.005748,0.249934,0,0);}
.me0_c01308{transform:matrix(0.240311,0.005527,-0.005748,0.249934,0,0);-ms-transform:matrix(0.240311,0.005527,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.240311,0.005527,-0.005748,0.249934,0,0);}
.mc9_c01308{transform:matrix(0.240916,0.005541,-0.005748,0.249934,0,0);-ms-transform:matrix(0.240916,0.005541,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.240916,0.005541,-0.005748,0.249934,0,0);}
.mfc_c01308{transform:matrix(0.241351,0.005551,-0.005748,0.249934,0,0);-ms-transform:matrix(0.241351,0.005551,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.241351,0.005551,-0.005748,0.249934,0,0);}
.m51_c01308{transform:matrix(0.241376,0.004345,-0.004499,0.249960,0,0);-ms-transform:matrix(0.241376,0.004345,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.241376,0.004345,-0.004499,0.249960,0,0);}
.m115_c01308{transform:matrix(0.241725,0.005801,-0.005998,0.249928,0,0);-ms-transform:matrix(0.241725,0.005801,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.241725,0.005801,-0.005998,0.249928,0,0);}
.m11b_c01308{transform:matrix(0.242240,0.005814,-0.005998,0.249928,0,0);-ms-transform:matrix(0.242240,0.005814,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.242240,0.005814,-0.005998,0.249928,0,0);}
.m8d_c01308{transform:matrix(0.242306,0.004604,-0.004749,0.249955,0,0);-ms-transform:matrix(0.242306,0.004604,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.242306,0.004604,-0.004749,0.249955,0,0);}
.m3_c01308{transform:matrix(0.242636,0.005338,-0.005499,0.249940,0,0);-ms-transform:matrix(0.242636,0.005338,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.242636,0.005338,-0.005499,0.249940,0,0);}
.m80_c01308{transform:matrix(0.242861,0.004857,-0.004999,0.249950,0,0);-ms-transform:matrix(0.242861,0.004857,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.242861,0.004857,-0.004999,0.249950,0,0);}
.m116_c01308{transform:matrix(0.242950,0.005831,-0.005998,0.249928,0,0);-ms-transform:matrix(0.242950,0.005831,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.242950,0.005831,-0.005998,0.249928,0,0);}
.m86_c01308{transform:matrix(0.242991,0.004617,-0.004749,0.249955,0,0);-ms-transform:matrix(0.242991,0.004617,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.242991,0.004617,-0.004749,0.249955,0,0);}
.m129_c01308{transform:matrix(0.243140,0.005835,-0.005998,0.249928,0,0);-ms-transform:matrix(0.243140,0.005835,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.243140,0.005835,-0.005998,0.249928,0,0);}
.md4_c01308{transform:matrix(0.243431,0.005599,-0.005748,0.249934,0,0);-ms-transform:matrix(0.243431,0.005599,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.243431,0.005599,-0.005748,0.249934,0,0);}
.m12a_c01308{transform:matrix(0.243810,0.005851,-0.005998,0.249928,0,0);-ms-transform:matrix(0.243810,0.005851,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.243810,0.005851,-0.005998,0.249928,0,0);}
.meb_c01308{transform:matrix(0.244160,0.005616,-0.005748,0.249934,0,0);-ms-transform:matrix(0.244160,0.005616,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.244160,0.005616,-0.005748,0.249934,0,0);}
.m103_c01308{transform:matrix(0.245160,0.005639,-0.005748,0.249934,0,0);-ms-transform:matrix(0.245160,0.005639,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.245160,0.005639,-0.005748,0.249934,0,0);}
.mce_c01308{transform:matrix(0.245370,0.005644,-0.005748,0.249934,0,0);-ms-transform:matrix(0.245370,0.005644,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.245370,0.005644,-0.005748,0.249934,0,0);}
.m91_c01308{transform:matrix(0.245681,0.004668,-0.004749,0.249955,0,0);-ms-transform:matrix(0.245681,0.004668,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.245681,0.004668,-0.004749,0.249955,0,0);}
.m128_c01308{transform:matrix(0.245729,0.005898,-0.005998,0.249928,0,0);-ms-transform:matrix(0.245729,0.005898,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.245729,0.005898,-0.005998,0.249928,0,0);}
.m11_c01308{transform:matrix(0.245756,0.004915,-0.004999,0.249950,0,0);-ms-transform:matrix(0.245756,0.004915,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.245756,0.004915,-0.004999,0.249950,0,0);}
.m93_c01308{transform:matrix(0.245826,0.004671,-0.004749,0.249955,0,0);-ms-transform:matrix(0.245826,0.004671,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.245826,0.004671,-0.004749,0.249955,0,0);}
.m9a_c01308{transform:matrix(0.245901,0.004672,-0.004749,0.249955,0,0);-ms-transform:matrix(0.245901,0.004672,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.245901,0.004672,-0.004749,0.249955,0,0);}
.mee_c01308{transform:matrix(0.246255,0.005664,-0.005748,0.249934,0,0);-ms-transform:matrix(0.246255,0.005664,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.246255,0.005664,-0.005748,0.249934,0,0);}
.mc3_c01308{transform:matrix(0.246875,0.005678,-0.005748,0.249934,0,0);-ms-transform:matrix(0.246875,0.005678,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.246875,0.005678,-0.005748,0.249934,0,0);}
.m2c_c01308{transform:matrix(0.247216,0.004944,-0.004999,0.249950,0,0);-ms-transform:matrix(0.247216,0.004944,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.247216,0.004944,-0.004999,0.249950,0,0);}
.m8a_c01308{transform:matrix(0.247505,0.004703,-0.004749,0.249955,0,0);-ms-transform:matrix(0.247505,0.004703,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.247505,0.004703,-0.004749,0.249955,0,0);}
.m2_c01308{transform:matrix(0.247855,0.005453,-0.005499,0.249940,0,0);-ms-transform:matrix(0.247855,0.005453,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.247855,0.005453,-0.005499,0.249940,0,0);}
.m9d_c01308{transform:matrix(0.248470,0.004721,-0.004749,0.249955,0,0);-ms-transform:matrix(0.248470,0.004721,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.248470,0.004721,-0.004749,0.249955,0,0);}
.m112_c01308{transform:matrix(0.248553,0.005965,-0.005998,0.249928,0,0);-ms-transform:matrix(0.248553,0.005965,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.248553,0.005965,-0.005998,0.249928,0,0);}
.mfe_c01308{transform:matrix(0.248554,0.005717,-0.005748,0.249934,0,0);-ms-transform:matrix(0.248554,0.005717,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.248554,0.005717,-0.005748,0.249934,0,0);}
.m10d_c01308{transform:matrix(0.248789,0.005722,-0.005748,0.249934,0,0);-ms-transform:matrix(0.248789,0.005722,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.248789,0.005722,-0.005748,0.249934,0,0);}
.me4_c01308{transform:matrix(0.248974,0.005726,-0.005748,0.249934,0,0);-ms-transform:matrix(0.248974,0.005726,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.248974,0.005726,-0.005748,0.249934,0,0);}
.m10a_c01308{transform:matrix(0.249009,0.005727,-0.005748,0.249934,0,0);-ms-transform:matrix(0.249009,0.005727,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.249009,0.005727,-0.005748,0.249934,0,0);}
.m10e_c01308{transform:matrix(0.249764,0.005745,-0.005748,0.249934,0,0);-ms-transform:matrix(0.249764,0.005745,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.249764,0.005745,-0.005748,0.249934,0,0);}
.m7c_c01308{transform:matrix(0.250340,0.005007,-0.004999,0.249950,0,0);-ms-transform:matrix(0.250340,0.005007,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.250340,0.005007,-0.004999,0.249950,0,0);}
.mf5_c01308{transform:matrix(0.250374,0.005759,-0.005748,0.249934,0,0);-ms-transform:matrix(0.250374,0.005759,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.250374,0.005759,-0.005748,0.249934,0,0);}
.mc8_c01308{transform:matrix(0.250439,0.005760,-0.005748,0.249934,0,0);-ms-transform:matrix(0.250439,0.005760,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.250439,0.005760,-0.005748,0.249934,0,0);}
.m67_c01308{transform:matrix(0.251010,0.005020,-0.004999,0.249950,0,0);-ms-transform:matrix(0.251010,0.005020,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.251010,0.005020,-0.004999,0.249950,0,0);}
.m127_c01308{transform:matrix(0.251028,0.006025,-0.005998,0.249928,0,0);-ms-transform:matrix(0.251028,0.006025,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.251028,0.006025,-0.005998,0.249928,0,0);}
.m104_c01308{transform:matrix(0.251868,0.005793,-0.005748,0.249934,0,0);-ms-transform:matrix(0.251868,0.005793,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.251868,0.005793,-0.005748,0.249934,0,0);}
.m94_c01308{transform:matrix(0.251995,0.004788,-0.004749,0.249955,0,0);-ms-transform:matrix(0.251995,0.004788,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.251995,0.004788,-0.004749,0.249955,0,0);}
.m8b_c01308{transform:matrix(0.252070,0.004789,-0.004749,0.249955,0,0);-ms-transform:matrix(0.252070,0.004789,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.252070,0.004789,-0.004749,0.249955,0,0);}
.m12_c01308{transform:matrix(0.252305,0.005046,-0.004999,0.249950,0,0);-ms-transform:matrix(0.252305,0.005046,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.252305,0.005046,-0.004999,0.249950,0,0);}
.me8_c01308{transform:matrix(0.252333,0.005804,-0.005748,0.249934,0,0);-ms-transform:matrix(0.252333,0.005804,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.252333,0.005804,-0.005748,0.249934,0,0);}
.m6a_c01308{transform:matrix(0.252809,0.005056,-0.004999,0.249950,0,0);-ms-transform:matrix(0.252809,0.005056,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.252809,0.005056,-0.004999,0.249950,0,0);}
.m76_c01308{transform:matrix(0.252959,0.005059,-0.004999,0.249950,0,0);-ms-transform:matrix(0.252959,0.005059,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.252959,0.005059,-0.004999,0.249950,0,0);}
.mb9_c01308{transform:matrix(0.253258,0.005825,-0.005748,0.249934,0,0);-ms-transform:matrix(0.253258,0.005825,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.253258,0.005825,-0.005748,0.249934,0,0);}
.m28_c01308{transform:matrix(0.253419,0.005068,-0.004999,0.249950,0,0);-ms-transform:matrix(0.253419,0.005068,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.253419,0.005068,-0.004999,0.249950,0,0);}
.m43_c01308{transform:matrix(0.253804,0.004568,-0.004499,0.249960,0,0);-ms-transform:matrix(0.253804,0.004568,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.253804,0.004568,-0.004499,0.249960,0,0);}
.m1f_c01308{transform:matrix(0.254154,0.005083,-0.004999,0.249950,0,0);-ms-transform:matrix(0.254154,0.005083,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.254154,0.005083,-0.004999,0.249950,0,0);}
.m45_c01308{transform:matrix(0.254329,0.004578,-0.004499,0.249960,0,0);-ms-transform:matrix(0.254329,0.004578,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.254329,0.004578,-0.004499,0.249960,0,0);}
.me3_c01308{transform:matrix(0.254498,0.005853,-0.005748,0.249934,0,0);-ms-transform:matrix(0.254498,0.005853,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.254498,0.005853,-0.005748,0.249934,0,0);}
.m23_c01308{transform:matrix(0.254929,0.005099,-0.004999,0.249950,0,0);-ms-transform:matrix(0.254929,0.005099,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.254929,0.005099,-0.004999,0.249950,0,0);}
.m39_c01308{transform:matrix(0.254979,0.005100,-0.004999,0.249950,0,0);-ms-transform:matrix(0.254979,0.005100,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.254979,0.005100,-0.004999,0.249950,0,0);}
.mac_c01308{transform:matrix(0.254982,0.006120,-0.005998,0.249928,0,0);-ms-transform:matrix(0.254982,0.006120,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.254982,0.006120,-0.005998,0.249928,0,0);}
.m65_c01308{transform:matrix(0.255099,0.005102,-0.004999,0.249950,0,0);-ms-transform:matrix(0.255099,0.005102,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.255099,0.005102,-0.004999,0.249950,0,0);}
.m37_c01308{transform:matrix(0.255154,0.005103,-0.004999,0.249950,0,0);-ms-transform:matrix(0.255154,0.005103,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.255154,0.005103,-0.004999,0.249950,0,0);}
.ma3_c01308{transform:matrix(0.255326,0.006128,-0.005998,0.249928,0,0);-ms-transform:matrix(0.255326,0.006128,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.255326,0.006128,-0.005998,0.249928,0,0);}
.m2b_c01308{transform:matrix(0.255409,0.005108,-0.004999,0.249950,0,0);-ms-transform:matrix(0.255409,0.005108,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.255409,0.005108,-0.004999,0.249950,0,0);}
.m2d_c01308{transform:matrix(0.255504,0.005110,-0.004999,0.249950,0,0);-ms-transform:matrix(0.255504,0.005110,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.255504,0.005110,-0.004999,0.249950,0,0);}
.m1d_c01308{transform:matrix(0.255639,0.005113,-0.004999,0.249950,0,0);-ms-transform:matrix(0.255639,0.005113,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.255639,0.005113,-0.004999,0.249950,0,0);}
.mf9_c01308{transform:matrix(0.255717,0.005881,-0.005748,0.249934,0,0);-ms-transform:matrix(0.255717,0.005881,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.255717,0.005881,-0.005748,0.249934,0,0);}
.m107_c01308{transform:matrix(0.256097,0.005890,-0.005748,0.249934,0,0);-ms-transform:matrix(0.256097,0.005890,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.256097,0.005890,-0.005748,0.249934,0,0);}
.m4_c01308{transform:matrix(0.256133,0.005635,-0.005499,0.249940,0,0);-ms-transform:matrix(0.256133,0.005635,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.256133,0.005635,-0.005499,0.249940,0,0);}
.m63_c01308{transform:matrix(0.256174,0.005123,-0.004999,0.249950,0,0);-ms-transform:matrix(0.256174,0.005123,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.256174,0.005123,-0.004999,0.249950,0,0);}
.mfa_c01308{transform:matrix(0.256472,0.005899,-0.005748,0.249934,0,0);-ms-transform:matrix(0.256472,0.005899,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.256472,0.005899,-0.005748,0.249934,0,0);}
.m92_c01308{transform:matrix(0.256834,0.004880,-0.004749,0.249955,0,0);-ms-transform:matrix(0.256834,0.004880,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.256834,0.004880,-0.004749,0.249955,0,0);}
.m48_c01308{transform:matrix(0.256923,0.004625,-0.004499,0.249960,0,0);-ms-transform:matrix(0.256923,0.004625,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.256923,0.004625,-0.004499,0.249960,0,0);}
.mda_c01308{transform:matrix(0.257507,0.005923,-0.005748,0.249934,0,0);-ms-transform:matrix(0.257507,0.005923,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.257507,0.005923,-0.005748,0.249934,0,0);}
.mb1_c01308{transform:matrix(0.257571,0.006182,-0.005998,0.249928,0,0);-ms-transform:matrix(0.257571,0.006182,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.257571,0.006182,-0.005998,0.249928,0,0);}
.md7_c01308{transform:matrix(0.258007,0.005934,-0.005748,0.249934,0,0);-ms-transform:matrix(0.258007,0.005934,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.258007,0.005934,-0.005748,0.249934,0,0);}
.m4b_c01308{transform:matrix(0.258143,0.004647,-0.004499,0.249960,0,0);-ms-transform:matrix(0.258143,0.004647,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.258143,0.004647,-0.004499,0.249960,0,0);}
.ma5_c01308{transform:matrix(0.258181,0.006196,-0.005998,0.249928,0,0);-ms-transform:matrix(0.258181,0.006196,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.258181,0.006196,-0.005998,0.249928,0,0);}
.m14_c01308{transform:matrix(0.258203,0.005164,-0.004999,0.249950,0,0);-ms-transform:matrix(0.258203,0.005164,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.258203,0.005164,-0.004999,0.249950,0,0);}
.mae_c01308{transform:matrix(0.258276,0.006199,-0.005998,0.249928,0,0);-ms-transform:matrix(0.258276,0.006199,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.258276,0.006199,-0.005998,0.249928,0,0);}
.m27_c01308{transform:matrix(0.258818,0.005176,-0.004999,0.249950,0,0);-ms-transform:matrix(0.258818,0.005176,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.258818,0.005176,-0.004999,0.249950,0,0);}
.md3_c01308{transform:matrix(0.258882,0.005954,-0.005748,0.249934,0,0);-ms-transform:matrix(0.258882,0.005954,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.258882,0.005954,-0.005748,0.249934,0,0);}
.m3a_c01308{transform:matrix(0.259488,0.004671,-0.004499,0.249960,0,0);-ms-transform:matrix(0.259488,0.004671,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.259488,0.004671,-0.004499,0.249960,0,0);}
.m101_c01308{transform:matrix(0.259546,0.005970,-0.005748,0.249934,0,0);-ms-transform:matrix(0.259546,0.005970,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.259546,0.005970,-0.005748,0.249934,0,0);}
.me7_c01308{transform:matrix(0.259631,0.005972,-0.005748,0.249934,0,0);-ms-transform:matrix(0.259631,0.005972,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.259631,0.005972,-0.005748,0.249934,0,0);}
.m72_c01308{transform:matrix(0.259688,0.005194,-0.004999,0.249950,0,0);-ms-transform:matrix(0.259688,0.005194,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.259688,0.005194,-0.004999,0.249950,0,0);}
.m84_c01308{transform:matrix(0.259898,0.004938,-0.004749,0.249955,0,0);-ms-transform:matrix(0.259898,0.004938,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.259898,0.004938,-0.004749,0.249955,0,0);}
.mc2_c01308{transform:matrix(0.260031,0.005981,-0.005748,0.249934,0,0);-ms-transform:matrix(0.260031,0.005981,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.260031,0.005981,-0.005748,0.249934,0,0);}
.mdd_c01308{transform:matrix(0.260861,0.006000,-0.005748,0.249934,0,0);-ms-transform:matrix(0.260861,0.006000,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.260861,0.006000,-0.005748,0.249934,0,0);}
.mdb_c01308{transform:matrix(0.261521,0.006015,-0.005748,0.249934,0,0);-ms-transform:matrix(0.261521,0.006015,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.261521,0.006015,-0.005748,0.249934,0,0);}
.m44_c01308{transform:matrix(0.261903,0.004714,-0.004499,0.249960,0,0);-ms-transform:matrix(0.261903,0.004714,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.261903,0.004714,-0.004499,0.249960,0,0);}
.me1_c01308{transform:matrix(0.261956,0.006025,-0.005748,0.249934,0,0);-ms-transform:matrix(0.261956,0.006025,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.261956,0.006025,-0.005748,0.249934,0,0);}
.m78_c01308{transform:matrix(0.263307,0.005266,-0.004999,0.249950,0,0);-ms-transform:matrix(0.263307,0.005266,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.263307,0.005266,-0.004999,0.249950,0,0);}
.m11a_c01308{transform:matrix(0.263484,0.006324,-0.005998,0.249928,0,0);-ms-transform:matrix(0.263484,0.006324,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.263484,0.006324,-0.005998,0.249928,0,0);}
.m123_c01308{transform:matrix(0.263789,0.006331,-0.005998,0.249928,0,0);-ms-transform:matrix(0.263789,0.006331,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.263789,0.006331,-0.005998,0.249928,0,0);}
.m88_c01308{transform:matrix(0.264107,0.005018,-0.004749,0.249955,0,0);-ms-transform:matrix(0.264107,0.005018,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.264107,0.005018,-0.004749,0.249955,0,0);}
.m20_c01308{transform:matrix(0.264212,0.005284,-0.004999,0.249950,0,0);-ms-transform:matrix(0.264212,0.005284,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.264212,0.005284,-0.004999,0.249950,0,0);}
.m6f_c01308{transform:matrix(0.264437,0.005289,-0.004999,0.249950,0,0);-ms-transform:matrix(0.264437,0.005289,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.264437,0.005289,-0.004999,0.249950,0,0);}
.mbe_c01308{transform:matrix(0.264475,0.006083,-0.005748,0.249934,0,0);-ms-transform:matrix(0.264475,0.006083,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.264475,0.006083,-0.005748,0.249934,0,0);}
.mfd_c01308{transform:matrix(0.264555,0.006085,-0.005748,0.249934,0,0);-ms-transform:matrix(0.264555,0.006085,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.264555,0.006085,-0.005748,0.249934,0,0);}
.m4d_c01308{transform:matrix(0.264717,0.004765,-0.004499,0.249960,0,0);-ms-transform:matrix(0.264717,0.004765,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.264717,0.004765,-0.004499,0.249960,0,0);}
.m8c_c01308{transform:matrix(0.264877,0.005033,-0.004749,0.249955,0,0);-ms-transform:matrix(0.264877,0.005033,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.264877,0.005033,-0.004749,0.249955,0,0);}
.mb4_c01308{transform:matrix(0.265019,0.006360,-0.005998,0.249928,0,0);-ms-transform:matrix(0.265019,0.006360,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.265019,0.006360,-0.005998,0.249928,0,0);}
.m2f_c01308{transform:matrix(0.265267,0.005305,-0.004999,0.249950,0,0);-ms-transform:matrix(0.265267,0.005305,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.265267,0.005305,-0.004999,0.249950,0,0);}
.mc1_c01308{transform:matrix(0.265505,0.006107,-0.005748,0.249934,0,0);-ms-transform:matrix(0.265505,0.006107,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.265505,0.006107,-0.005748,0.249934,0,0);}
.m53_c01308{transform:matrix(0.265842,0.004785,-0.004499,0.249960,0,0);-ms-transform:matrix(0.265842,0.004785,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.265842,0.004785,-0.004499,0.249960,0,0);}
.m19_c01308{transform:matrix(0.266427,0.005329,-0.004999,0.249950,0,0);-ms-transform:matrix(0.266427,0.005329,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.266427,0.005329,-0.004999,0.249950,0,0);}
.m69_c01308{transform:matrix(0.266637,0.005333,-0.004999,0.249950,0,0);-ms-transform:matrix(0.266637,0.005333,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.266637,0.005333,-0.004999,0.249950,0,0);}
.m3c_c01308{transform:matrix(0.266667,0.004800,-0.004499,0.249960,0,0);-ms-transform:matrix(0.266667,0.004800,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.266667,0.004800,-0.004499,0.249960,0,0);}
.ma8_c01308{transform:matrix(0.266788,0.006403,-0.005998,0.249928,0,0);-ms-transform:matrix(0.266788,0.006403,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.266788,0.006403,-0.005998,0.249928,0,0);}
.m122_c01308{transform:matrix(0.266808,0.006403,-0.005998,0.249928,0,0);-ms-transform:matrix(0.266808,0.006403,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.266808,0.006403,-0.005998,0.249928,0,0);}
.m9f_c01308{transform:matrix(0.267587,0.005084,-0.004749,0.249955,0,0);-ms-transform:matrix(0.267587,0.005084,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.267587,0.005084,-0.004749,0.249955,0,0);}
.m68_c01308{transform:matrix(0.268256,0.005365,-0.004999,0.249950,0,0);-ms-transform:matrix(0.268256,0.005365,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.268256,0.005365,-0.004999,0.249950,0,0);}
.m46_c01308{transform:matrix(0.268916,0.004840,-0.004499,0.249960,0,0);-ms-transform:matrix(0.268916,0.004840,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.268916,0.004840,-0.004499,0.249960,0,0);}
.mdf_c01308{transform:matrix(0.268934,0.006185,-0.005748,0.249934,0,0);-ms-transform:matrix(0.268934,0.006185,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.268934,0.006185,-0.005748,0.249934,0,0);}
.m31_c01308{transform:matrix(0.269011,0.005380,-0.004999,0.249950,0,0);-ms-transform:matrix(0.269011,0.005380,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.269011,0.005380,-0.004999,0.249950,0,0);}
.mbc_c01308{transform:matrix(0.269349,0.006195,-0.005748,0.249934,0,0);-ms-transform:matrix(0.269349,0.006195,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.269349,0.006195,-0.005748,0.249934,0,0);}
.m124_c01308{transform:matrix(0.270442,0.006491,-0.005998,0.249928,0,0);-ms-transform:matrix(0.270442,0.006491,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.270442,0.006491,-0.005998,0.249928,0,0);}
.md5_c01308{transform:matrix(0.270483,0.006221,-0.005748,0.249934,0,0);-ms-transform:matrix(0.270483,0.006221,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.270483,0.006221,-0.005748,0.249934,0,0);}
.ma0_c01308{transform:matrix(0.270567,0.006494,-0.005998,0.249928,0,0);-ms-transform:matrix(0.270567,0.006494,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.270567,0.006494,-0.005998,0.249928,0,0);}
.m10_c01308{transform:matrix(0.270621,0.005412,-0.004999,0.249950,0,0);-ms-transform:matrix(0.270621,0.005412,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.270621,0.005412,-0.004999,0.249950,0,0);}
.m60_c01308{transform:matrix(0.271076,0.005422,-0.004999,0.249950,0,0);-ms-transform:matrix(0.271076,0.005422,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.271076,0.005422,-0.004999,0.249950,0,0);}
.mc0_c01308{transform:matrix(0.271303,0.006240,-0.005748,0.249934,0,0);-ms-transform:matrix(0.271303,0.006240,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.271303,0.006240,-0.005748,0.249934,0,0);}
.m3e_c01308{transform:matrix(0.271786,0.004892,-0.004499,0.249960,0,0);-ms-transform:matrix(0.271786,0.004892,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.271786,0.004892,-0.004499,0.249960,0,0);}
.m40_c01308{transform:matrix(0.272031,0.004897,-0.004499,0.249960,0,0);-ms-transform:matrix(0.272031,0.004897,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.272031,0.004897,-0.004499,0.249960,0,0);}
.md6_c01308{transform:matrix(0.272038,0.006257,-0.005748,0.249934,0,0);-ms-transform:matrix(0.272038,0.006257,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.272038,0.006257,-0.005748,0.249934,0,0);}
.m87_c01308{transform:matrix(0.272276,0.005173,-0.004749,0.249955,0,0);-ms-transform:matrix(0.272276,0.005173,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.272276,0.005173,-0.004749,0.249955,0,0);}
.m6b_c01308{transform:matrix(0.272985,0.005460,-0.004999,0.249950,0,0);-ms-transform:matrix(0.272985,0.005460,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.272985,0.005460,-0.004999,0.249950,0,0);}
.m35_c01308{transform:matrix(0.273390,0.005468,-0.004999,0.249950,0,0);-ms-transform:matrix(0.273390,0.005468,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.273390,0.005468,-0.004999,0.249950,0,0);}
.me2_c01308{transform:matrix(0.273398,0.006288,-0.005748,0.249934,0,0);-ms-transform:matrix(0.273398,0.006288,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.273398,0.006288,-0.005748,0.249934,0,0);}
.mb3_c01308{transform:matrix(0.273731,0.006570,-0.005998,0.249928,0,0);-ms-transform:matrix(0.273731,0.006570,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.273731,0.006570,-0.005998,0.249928,0,0);}
.mb6_c01308{transform:matrix(0.274331,0.006584,-0.005998,0.249928,0,0);-ms-transform:matrix(0.274331,0.006584,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.274331,0.006584,-0.005998,0.249928,0,0);}
.m56_c01308{transform:matrix(0.274421,0.004940,-0.004499,0.249960,0,0);-ms-transform:matrix(0.274421,0.004940,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.274421,0.004940,-0.004499,0.249960,0,0);}
.m58_c01308{transform:matrix(0.274800,0.004946,-0.004499,0.249960,0,0);-ms-transform:matrix(0.274800,0.004946,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.274800,0.004946,-0.004499,0.249960,0,0);}
.m33_c01308{transform:matrix(0.275025,0.005501,-0.004999,0.249950,0,0);-ms-transform:matrix(0.275025,0.005501,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.275025,0.005501,-0.004999,0.249950,0,0);}
.maf_c01308{transform:matrix(0.275386,0.006609,-0.005998,0.249928,0,0);-ms-transform:matrix(0.275386,0.006609,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.275386,0.006609,-0.005998,0.249928,0,0);}
.m41_c01308{transform:matrix(0.275830,0.004965,-0.004499,0.249960,0,0);-ms-transform:matrix(0.275830,0.004965,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.275830,0.004965,-0.004499,0.249960,0,0);}
.mb2_c01308{transform:matrix(0.275896,0.006621,-0.005998,0.249928,0,0);-ms-transform:matrix(0.275896,0.006621,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.275896,0.006621,-0.005998,0.249928,0,0);}
.maa_c01308{transform:matrix(0.276260,0.006630,-0.005998,0.249928,0,0);-ms-transform:matrix(0.276260,0.006630,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.276260,0.006630,-0.005998,0.249928,0,0);}
.m17_c01308{transform:matrix(0.276480,0.005530,-0.004999,0.249950,0,0);-ms-transform:matrix(0.276480,0.005530,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.276480,0.005530,-0.004999,0.249950,0,0);}
.mab_c01308{transform:matrix(0.277490,0.006660,-0.005998,0.249928,0,0);-ms-transform:matrix(0.277490,0.006660,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.277490,0.006660,-0.005998,0.249928,0,0);}
.m73_c01308{transform:matrix(0.277764,0.005555,-0.004999,0.249950,0,0);-ms-transform:matrix(0.277764,0.005555,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.277764,0.005555,-0.004999,0.249950,0,0);}
.m4a_c01308{transform:matrix(0.277785,0.005000,-0.004499,0.249960,0,0);-ms-transform:matrix(0.277785,0.005000,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.277785,0.005000,-0.004499,0.249960,0,0);}
.m6d_c01308{transform:matrix(0.277814,0.005556,-0.004999,0.249950,0,0);-ms-transform:matrix(0.277814,0.005556,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.277814,0.005556,-0.004999,0.249950,0,0);}
.me5_c01308{transform:matrix(0.278576,0.006407,-0.005748,0.249934,0,0);-ms-transform:matrix(0.278576,0.006407,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.278576,0.006407,-0.005748,0.249934,0,0);}
.m52_c01308{transform:matrix(0.278645,0.005016,-0.004499,0.249960,0,0);-ms-transform:matrix(0.278645,0.005016,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.278645,0.005016,-0.004499,0.249960,0,0);}
.ma7_c01308{transform:matrix(0.278850,0.006692,-0.005998,0.249928,0,0);-ms-transform:matrix(0.278850,0.006692,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.278850,0.006692,-0.005998,0.249928,0,0);}
.m125_c01308{transform:matrix(0.279944,0.006719,-0.005998,0.249928,0,0);-ms-transform:matrix(0.279944,0.006719,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.279944,0.006719,-0.005998,0.249928,0,0);}
.m16_c01308{transform:matrix(0.280889,0.005618,-0.004999,0.249950,0,0);-ms-transform:matrix(0.280889,0.005618,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.280889,0.005618,-0.004999,0.249950,0,0);}
.mfb_c01308{transform:matrix(0.282855,0.006506,-0.005748,0.249934,0,0);-ms-transform:matrix(0.282855,0.006506,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.282855,0.006506,-0.005748,0.249934,0,0);}
.m71_c01308{transform:matrix(0.283508,0.005670,-0.004999,0.249950,0,0);-ms-transform:matrix(0.283508,0.005670,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.283508,0.005670,-0.004999,0.249950,0,0);}
.mba_c01308{transform:matrix(0.285435,0.006565,-0.005748,0.249934,0,0);-ms-transform:matrix(0.285435,0.006565,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.285435,0.006565,-0.005748,0.249934,0,0);}
.m75_c01308{transform:matrix(0.286483,0.005730,-0.004999,0.249950,0,0);-ms-transform:matrix(0.286483,0.005730,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.286483,0.005730,-0.004999,0.249950,0,0);}
.m4f_c01308{transform:matrix(0.288213,0.005188,-0.004499,0.249960,0,0);-ms-transform:matrix(0.288213,0.005188,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.288213,0.005188,-0.004499,0.249960,0,0);}
.m7d_c01308{transform:matrix(0.289757,0.005795,-0.004999,0.249950,0,0);-ms-transform:matrix(0.289757,0.005795,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.289757,0.005795,-0.004999,0.249950,0,0);}
.m7e_c01308{transform:matrix(0.290657,0.005813,-0.004999,0.249950,0,0);-ms-transform:matrix(0.290657,0.005813,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.290657,0.005813,-0.004999,0.249950,0,0);}
.m79_c01308{transform:matrix(0.291332,0.005827,-0.004999,0.249950,0,0);-ms-transform:matrix(0.291332,0.005827,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.291332,0.005827,-0.004999,0.249950,0,0);}
.m7a_c01308{transform:matrix(0.292037,0.005841,-0.004999,0.249950,0,0);-ms-transform:matrix(0.292037,0.005841,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.292037,0.005841,-0.004999,0.249950,0,0);}
.m24_c01308{transform:matrix(0.292522,0.005850,-0.004999,0.249950,0,0);-ms-transform:matrix(0.292522,0.005850,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.292522,0.005850,-0.004999,0.249950,0,0);}
.m1e_c01308{transform:matrix(0.292541,0.005851,-0.004999,0.249950,0,0);-ms-transform:matrix(0.292541,0.005851,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.292541,0.005851,-0.004999,0.249950,0,0);}
.m1b_c01308{transform:matrix(0.292781,0.005856,-0.004999,0.249950,0,0);-ms-transform:matrix(0.292781,0.005856,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.292781,0.005856,-0.004999,0.249950,0,0);}
.m85_c01308{transform:matrix(0.293072,0.005568,-0.004749,0.249955,0,0);-ms-transform:matrix(0.293072,0.005568,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.293072,0.005568,-0.004749,0.249955,0,0);}
.m7b_c01308{transform:matrix(0.293306,0.005866,-0.004999,0.249950,0,0);-ms-transform:matrix(0.293306,0.005866,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.293306,0.005866,-0.004999,0.249950,0,0);}
.m74_c01308{transform:matrix(0.294496,0.005890,-0.004999,0.249950,0,0);-ms-transform:matrix(0.294496,0.005890,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.294496,0.005890,-0.004999,0.249950,0,0);}
.m1c_c01308{transform:matrix(0.294686,0.005894,-0.004999,0.249950,0,0);-ms-transform:matrix(0.294686,0.005894,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.294686,0.005894,-0.004999,0.249950,0,0);}
.m22_c01308{transform:matrix(0.298835,0.005977,-0.004999,0.249950,0,0);-ms-transform:matrix(0.298835,0.005977,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.298835,0.005977,-0.004999,0.249950,0,0);}
.m21_c01308{transform:matrix(0.300575,0.006011,-0.004999,0.249950,0,0);-ms-transform:matrix(0.300575,0.006011,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.300575,0.006011,-0.004999,0.249950,0,0);}
.m77_c01308{transform:matrix(0.303404,0.006068,-0.004999,0.249950,0,0);-ms-transform:matrix(0.303404,0.006068,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.303404,0.006068,-0.004999,0.249950,0,0);}
.m98_c01308{transform:matrix(0.305015,0.005795,-0.004749,0.249955,0,0);-ms-transform:matrix(0.305015,0.005795,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.305015,0.005795,-0.004749,0.249955,0,0);}
.mdc_c01308{transform:matrix(0.316541,0.007280,-0.005748,0.249934,0,0);-ms-transform:matrix(0.316541,0.007280,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.316541,0.007280,-0.005748,0.249934,0,0);}
.m7_c01308{transform:matrix(0.328909,0.006578,-0.004999,0.249950,0,0);-ms-transform:matrix(0.328909,0.006578,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.328909,0.006578,-0.004999,0.249950,0,0);}
.mb_c01308{transform:matrix(0.342641,0.006853,-0.004999,0.249950,0,0);-ms-transform:matrix(0.342641,0.006853,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.342641,0.006853,-0.004999,0.249950,0,0);}
.m7f_c01308{transform:matrix(0.347565,0.006951,-0.004999,0.249950,0,0);-ms-transform:matrix(0.347565,0.006951,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.347565,0.006951,-0.004999,0.249950,0,0);}
.mf_c01308{transform:matrix(0.348820,0.006976,-0.004999,0.249950,0,0);-ms-transform:matrix(0.348820,0.006976,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.348820,0.006976,-0.004999,0.249950,0,0);}
.mc_c01308{transform:matrix(0.350110,0.007002,-0.004999,0.249950,0,0);-ms-transform:matrix(0.350110,0.007002,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.350110,0.007002,-0.004999,0.249950,0,0);}
.m12e_c01308{transform:matrix(0.359631,0.008631,-0.005998,0.249928,0,0);-ms-transform:matrix(0.359631,0.008631,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.359631,0.008631,-0.005998,0.249928,0,0);}
.m130_c01308{transform:matrix(0.368049,0.008833,-0.005998,0.249928,0,0);-ms-transform:matrix(0.368049,0.008833,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.368049,0.008833,-0.005998,0.249928,0,0);}
.m120_c01308{transform:matrix(0.372483,0.008940,-0.005998,0.249928,0,0);-ms-transform:matrix(0.372483,0.008940,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.372483,0.008940,-0.005998,0.249928,0,0);}
.m132_c01308{transform:matrix(0.386029,0.009265,-0.005998,0.249928,0,0);-ms-transform:matrix(0.386029,0.009265,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.386029,0.009265,-0.005998,0.249928,0,0);}
.m131_c01308{transform:matrix(0.386429,0.009274,-0.005998,0.249928,0,0);-ms-transform:matrix(0.386429,0.009274,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.386429,0.009274,-0.005998,0.249928,0,0);}
.m9_c01308{transform:matrix(0.410408,0.008208,-0.004999,0.249950,0,0);-ms-transform:matrix(0.410408,0.008208,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.410408,0.008208,-0.004999,0.249950,0,0);}
.m12c_c01308{transform:matrix(0.410732,0.009858,-0.005998,0.249928,0,0);-ms-transform:matrix(0.410732,0.009858,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.410732,0.009858,-0.005998,0.249928,0,0);}
.m12b_c01308{transform:matrix(0.413536,0.009925,-0.005998,0.249928,0,0);-ms-transform:matrix(0.413536,0.009925,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.413536,0.009925,-0.005998,0.249928,0,0);}
.m12d_c01308{transform:matrix(0.415190,0.009965,-0.005998,0.249928,0,0);-ms-transform:matrix(0.415190,0.009965,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.415190,0.009965,-0.005998,0.249928,0,0);}
.m11f_c01308{transform:matrix(0.422883,0.010149,-0.005998,0.249928,0,0);-ms-transform:matrix(0.422883,0.010149,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.422883,0.010149,-0.005998,0.249928,0,0);}
.md_c01308{transform:matrix(0.446791,0.008936,-0.004999,0.249950,0,0);-ms-transform:matrix(0.446791,0.008936,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.446791,0.008936,-0.004999,0.249950,0,0);}
.ma_c01308{transform:matrix(0.487857,0.009757,-0.004999,0.249950,0,0);-ms-transform:matrix(0.487857,0.009757,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.487857,0.009757,-0.004999,0.249950,0,0);}
.m6_c01308{transform:matrix(0.527460,0.010549,-0.004999,0.249950,0,0);-ms-transform:matrix(0.527460,0.010549,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.527460,0.010549,-0.004999,0.249950,0,0);}
.m11e_c01308{transform:matrix(0.544508,0.013068,-0.005998,0.249928,0,0);-ms-transform:matrix(0.544508,0.013068,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.544508,0.013068,-0.005998,0.249928,0,0);}
.m5_c01308{transform:matrix(0.671066,0.013421,-0.004999,0.249950,0,0);-ms-transform:matrix(0.671066,0.013421,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.671066,0.013421,-0.004999,0.249950,0,0);}
.m12f_c01308{transform:matrix(0.729090,0.017498,-0.005998,0.249928,0,0);-ms-transform:matrix(0.729090,0.017498,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.729090,0.017498,-0.005998,0.249928,0,0);}
.m11d_c01308{transform:matrix(0.854884,0.020517,-0.005998,0.249928,0,0);-ms-transform:matrix(0.854884,0.020517,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.854884,0.020517,-0.005998,0.249928,0,0);}
.m121_c01308{transform:matrix(0.985731,0.023658,-0.005998,0.249928,0,0);-ms-transform:matrix(0.985731,0.023658,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.985731,0.023658,-0.005998,0.249928,0,0);}
.m8_c01308{transform:matrix(1.198355,0.023967,-0.004999,0.249950,0,0);-ms-transform:matrix(1.198355,0.023967,-0.004999,0.249950,0,0);-webkit-transform:matrix(1.198355,0.023967,-0.004999,0.249950,0,0);}
.me_c01308{transform:matrix(1.213182,0.024264,-0.004999,0.249950,0,0);-ms-transform:matrix(1.213182,0.024264,-0.004999,0.249950,0,0);-webkit-transform:matrix(1.213182,0.024264,-0.004999,0.249950,0,0);}
.v0_c01308{vertical-align:0.000000px;}
.ls0_c01308{letter-spacing:0.000000px;}
.sc__c01308{text-shadow:none;}
.sc0_c01308{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__c01308{-webkit-text-stroke:0px transparent;}
.sc0_c01308{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01308{word-spacing:0.000000px;}
._0_c01308{width:26.347543px;}
.fc0_c01308{color:transparent;}
.fs2_c01308{font-size:18.003600px;}
.fsf_c01308{font-size:36.010367px;}
.fs10_c01308{font-size:48.013822px;}
.fs4_c01308{font-size:66.013199px;}
.fs6_c01308{font-size:72.011663px;}
.fs8_c01308{font-size:72.012995px;}
.fs3_c01308{font-size:72.014399px;}
.fsc_c01308{font-size:72.019041px;}
.fsa_c01308{font-size:72.020733px;}
.fs9_c01308{font-size:78.014078px;}
.fs5_c01308{font-size:78.015598px;}
.fs1_c01308{font-size:78.018874px;}
.fsd_c01308{font-size:78.020628px;}
.fse_c01308{font-size:78.022461px;}
.fs7_c01308{font-size:90.014579px;}
.fsb_c01308{font-size:96.027644px;}
.fs0_c01308{font-size:108.000000px;}
.y0_c01308{bottom:0.000000px;}
.y13c_c01308{bottom:73.415076px;}
.y13b_c01308{bottom:74.180904px;}
.y13a_c01308{bottom:75.502428px;}
.y139_c01308{bottom:76.578720px;}
.y138_c01308{bottom:77.660880px;}
.y137_c01308{bottom:80.571912px;}
.y136_c01308{bottom:83.208660px;}
.y135_c01308{bottom:84.516000px;}
.y134_c01308{bottom:107.466912px;}
.y133_c01308{bottom:108.461292px;}
.y132_c01308{bottom:109.765776px;}
.y131_c01308{bottom:110.536692px;}
.y130_c01308{bottom:111.567372px;}
.y12f_c01308{bottom:114.376128px;}
.y12e_c01308{bottom:116.878860px;}
.y12d_c01308{bottom:119.139468px;}
.y12c_c01308{bottom:120.411288px;}
.y12b_c01308{bottom:147.670656px;}
.y12a_c01308{bottom:148.219848px;}
.y129_c01308{bottom:148.645464px;}
.y128_c01308{bottom:149.325384px;}
.y127_c01308{bottom:150.408276px;}
.y126_c01308{bottom:157.716516px;}
.y125_c01308{bottom:158.258712px;}
.y124_c01308{bottom:161.207976px;}
.y123_c01308{bottom:161.999400px;}
.y122_c01308{bottom:163.034652px;}
.y121_c01308{bottom:163.604892px;}
.y120_c01308{bottom:164.929080px;}
.y11f_c01308{bottom:165.726516px;}
.y11e_c01308{bottom:167.314584px;}
.y11d_c01308{bottom:168.099204px;}
.y11c_c01308{bottom:168.909132px;}
.y11b_c01308{bottom:171.254856px;}
.y11a_c01308{bottom:172.043940px;}
.y119_c01308{bottom:172.859556px;}
.y118_c01308{bottom:174.157500px;}
.y117_c01308{bottom:194.011452px;}
.y116_c01308{bottom:195.986553px;}
.y115_c01308{bottom:196.752420px;}
.y114_c01308{bottom:197.549181px;}
.y113_c01308{bottom:199.163730px;}
.y112_c01308{bottom:199.948520px;}
.y111_c01308{bottom:200.745280px;}
.y110_c01308{bottom:203.106169px;}
.y10f_c01308{bottom:203.935618px;}
.y10e_c01308{bottom:204.718165px;}
.y10d_c01308{bottom:207.079503px;}
.y10c_c01308{bottom:208.929475px;}
.y10b_c01308{bottom:229.125085px;}
.y10a_c01308{bottom:230.487072px;}
.y109_c01308{bottom:231.188404px;}
.y108_c01308{bottom:232.124968px;}
.y107_c01308{bottom:233.283016px;}
.y106_c01308{bottom:234.945150px;}
.y105_c01308{bottom:235.648035px;}
.y104_c01308{bottom:238.415653px;}
.y103_c01308{bottom:239.788422px;}
.y102_c01308{bottom:240.729040px;}
.y101_c01308{bottom:241.429717px;}
.y100_c01308{bottom:242.307922px;}
.yff_c01308{bottom:243.227115px;}
.yfe_c01308{bottom:266.364343px;}
.yfd_c01308{bottom:267.618157px;}
.yfc_c01308{bottom:268.145157px;}
.yfb_c01308{bottom:268.685010px;}
.yfa_c01308{bottom:269.739595px;}
.yf9_c01308{bottom:270.275808px;}
.yf8_c01308{bottom:271.139911px;}
.yf7_c01308{bottom:271.693360px;}
.yf6_c01308{bottom:272.756676px;}
.yf5_c01308{bottom:273.283779px;}
.yf4_c01308{bottom:273.974740px;}
.yf3_c01308{bottom:275.375677px;}
.yf2_c01308{bottom:275.915703px;}
.yf1_c01308{bottom:276.446412px;}
.yf0_c01308{bottom:301.157796px;}
.yef_c01308{bottom:302.108599px;}
.yee_c01308{bottom:302.631112px;}
.yed_c01308{bottom:304.217511px;}
.yec_c01308{bottom:305.103251px;}
.yeb_c01308{bottom:305.829375px;}
.yea_c01308{bottom:307.411874px;}
.ye9_c01308{bottom:308.475603px;}
.ye8_c01308{bottom:309.015456px;}
.ye7_c01308{bottom:310.402470px;}
.ye6_c01308{bottom:310.932282px;}
.ye5_c01308{bottom:311.826735px;}
.ye4_c01308{bottom:336.138573px;}
.ye3_c01308{bottom:337.164539px;}
.ye2_c01308{bottom:337.761885px;}
.ye1_c01308{bottom:339.158742px;}
.ye0_c01308{bottom:339.755278px;}
.ydf_c01308{bottom:340.354023px;}
.yde_c01308{bottom:341.164920px;}
.ydd_c01308{bottom:342.921300px;}
.ydc_c01308{bottom:344.345278px;}
.ydb_c01308{bottom:345.132333px;}
.yda_c01308{bottom:346.298905px;}
.yd9_c01308{bottom:346.896045px;}
.yd8_c01308{bottom:347.682892px;}
.yd7_c01308{bottom:348.285742px;}
.yd6_c01308{bottom:371.623059px;}
.yd5_c01308{bottom:372.685788px;}
.yd4_c01308{bottom:373.212684px;}
.yd3_c01308{bottom:373.753503px;}
.yd2_c01308{bottom:374.617503px;}
.yd1_c01308{bottom:375.152818px;}
.yd0_c01308{bottom:376.065233px;}
.ycf_c01308{bottom:377.975415px;}
.yce_c01308{bottom:378.515045px;}
.ycd_c01308{bottom:378.876615px;}
.ycc_c01308{bottom:379.580984px;}
.ycb_c01308{bottom:380.635896px;}
.yca_c01308{bottom:382.044735px;}
.yc9_c01308{bottom:405.811333px;}
.yc8_c01308{bottom:407.344928px;}
.yc7_c01308{bottom:409.364075px;}
.yc6_c01308{bottom:410.144913px;}
.yc5_c01308{bottom:411.922491px;}
.yc4_c01308{bottom:412.673142px;}
.yc3_c01308{bottom:414.716542px;}
.yc2_c01308{bottom:415.499382px;}
.yc1_c01308{bottom:417.761168px;}
.yc0_c01308{bottom:419.047500px;}
.ybe_c01308{bottom:452.092356px;}
.ybf_c01308{bottom:452.092800px;}
.ybd_c01308{bottom:476.620644px;}
.ybc_c01308{bottom:477.236208px;}
.ybb_c01308{bottom:478.704996px;}
.yba_c01308{bottom:480.202800px;}
.yb9_c01308{bottom:481.891404px;}
.yb8_c01308{bottom:483.336540px;}
.yb7_c01308{bottom:483.942540px;}
.yb6_c01308{bottom:485.442432px;}
.yb5_c01308{bottom:486.294144px;}
.yb4_c01308{bottom:486.905124px;}
.yb3_c01308{bottom:487.335468px;}
.yb2_c01308{bottom:489.234324px;}
.yb1_c01308{bottom:513.019128px;}
.yb0_c01308{bottom:513.797268px;}
.yaf_c01308{bottom:515.132868px;}
.yae_c01308{bottom:517.518048px;}
.yad_c01308{bottom:518.072664px;}
.yac_c01308{bottom:519.371724px;}
.yab_c01308{bottom:520.161600px;}
.yaa_c01308{bottom:521.730876px;}
.ya9_c01308{bottom:522.560388px;}
.ya8_c01308{bottom:523.325424px;}
.ya7_c01308{bottom:525.697500px;}
.ya6_c01308{bottom:551.781117px;}
.ya5_c01308{bottom:553.782394px;}
.ya4_c01308{bottom:559.791870px;}
.ya3_c01308{bottom:560.783374px;}
.ya2_c01308{bottom:561.769293px;}
.ya1_c01308{bottom:562.945009px;}
.ya0_c01308{bottom:563.750706px;}
.y9f_c01308{bottom:585.988218px;}
.y9e_c01308{bottom:586.853848px;}
.y9d_c01308{bottom:587.896321px;}
.y9c_c01308{bottom:588.917505px;}
.y9b_c01308{bottom:590.846613px;}
.y9a_c01308{bottom:592.293301px;}
.y99_c01308{bottom:594.392269px;}
.y98_c01308{bottom:595.680355px;}
.y97_c01308{bottom:596.306187px;}
.y96_c01308{bottom:596.915374px;}
.y95_c01308{bottom:597.340993px;}
.y94_c01308{bottom:598.588125px;}
.y93_c01308{bottom:621.540444px;}
.y92_c01308{bottom:622.397582px;}
.y91_c01308{bottom:624.280633px;}
.y90_c01308{bottom:625.120927px;}
.y8f_c01308{bottom:626.599650px;}
.y8e_c01308{bottom:628.087378px;}
.y8d_c01308{bottom:628.912767px;}
.y8c_c01308{bottom:630.478586px;}
.y8b_c01308{bottom:631.433364px;}
.y8a_c01308{bottom:632.074500px;}
.y89_c01308{bottom:665.258850px;}
.y87_c01308{bottom:665.258940px;}
.y88_c01308{bottom:665.259210px;}
.y86_c01308{bottom:689.961180px;}
.y85_c01308{bottom:690.967920px;}
.y84_c01308{bottom:692.120400px;}
.y83_c01308{bottom:692.625210px;}
.y82_c01308{bottom:693.633150px;}
.y81_c01308{bottom:694.787760px;}
.y80_c01308{bottom:695.630640px;}
.y7f_c01308{bottom:696.128580px;}
.y7e_c01308{bottom:697.449990px;}
.y7d_c01308{bottom:697.761180px;}
.y7c_c01308{bottom:698.924910px;}
.y7b_c01308{bottom:700.098810px;}
.y7a_c01308{bottom:725.860470px;}
.y79_c01308{bottom:727.091340px;}
.y78_c01308{bottom:728.686410px;}
.y77_c01308{bottom:729.195150px;}
.y76_c01308{bottom:730.609410px;}
.y75_c01308{bottom:731.166840px;}
.y74_c01308{bottom:732.748170px;}
.y73_c01308{bottom:733.284000px;}
.y72_c01308{bottom:733.629480px;}
.y71_c01308{bottom:735.207000px;}
.y70_c01308{bottom:735.746130px;}
.y6f_c01308{bottom:761.700990px;}
.y6e_c01308{bottom:762.354150px;}
.y6d_c01308{bottom:763.477890px;}
.y6c_c01308{bottom:764.817360px;}
.y6b_c01308{bottom:765.708060px;}
.y6a_c01308{bottom:766.165890px;}
.y69_c01308{bottom:767.469510px;}
.y68_c01308{bottom:768.133350px;}
.y67_c01308{bottom:769.429740px;}
.y66_c01308{bottom:770.115630px;}
.y65_c01308{bottom:770.753250px;}
.y64_c01308{bottom:772.746000px;}
.y63_c01308{bottom:799.085805px;}
.y62_c01308{bottom:804.237408px;}
.y61_c01308{bottom:804.895623px;}
.y60_c01308{bottom:805.293336px;}
.y5f_c01308{bottom:806.476533px;}
.y5e_c01308{bottom:832.696428px;}
.y5d_c01308{bottom:833.283210px;}
.y5c_c01308{bottom:834.716670px;}
.y5b_c01308{bottom:835.162944px;}
.y5a_c01308{bottom:835.601823px;}
.y59_c01308{bottom:836.035317px;}
.y58_c01308{bottom:836.594892px;}
.y57_c01308{bottom:837.036954px;}
.y56_c01308{bottom:837.892983px;}
.y55_c01308{bottom:839.188647px;}
.y54_c01308{bottom:839.623422px;}
.y53_c01308{bottom:840.882744px;}
.y52_c01308{bottom:841.310151px;}
.y51_c01308{bottom:869.625888px;}
.y50_c01308{bottom:869.912814px;}
.y4f_c01308{bottom:870.931470px;}
.y4e_c01308{bottom:871.345653px;}
.y4d_c01308{bottom:872.082915px;}
.y4c_c01308{bottom:872.798505px;}
.y4b_c01308{bottom:873.228585px;}
.y4a_c01308{bottom:874.071390px;}
.y49_c01308{bottom:874.523574px;}
.y48_c01308{bottom:875.532204px;}
.y47_c01308{bottom:876.381270px;}
.y46_c01308{bottom:877.226652px;}
.y45_c01308{bottom:904.121937px;}
.y44_c01308{bottom:904.734378px;}
.y43_c01308{bottom:906.499071px;}
.y42_c01308{bottom:907.913547px;}
.y41_c01308{bottom:908.311041px;}
.y40_c01308{bottom:910.100547px;}
.y3f_c01308{bottom:910.713339px;}
.y3e_c01308{bottom:912.098736px;}
.y3d_c01308{bottom:913.289760px;}
.y3c_c01308{bottom:914.494500px;}
.y3b_c01308{bottom:939.180960px;}
.y3a_c01308{bottom:939.439500px;}
.y39_c01308{bottom:940.111470px;}
.y38_c01308{bottom:940.516350px;}
.y37_c01308{bottom:941.575860px;}
.y36_c01308{bottom:941.970660px;}
.y35_c01308{bottom:942.909960px;}
.y34_c01308{bottom:943.295400px;}
.y33_c01308{bottom:944.339190px;}
.y32_c01308{bottom:944.873940px;}
.y31_c01308{bottom:945.915060px;}
.y30_c01308{bottom:946.329480px;}
.y2f_c01308{bottom:974.142660px;}
.y2e_c01308{bottom:975.586620px;}
.y2d_c01308{bottom:977.185950px;}
.y2c_c01308{bottom:978.080610px;}
.y2b_c01308{bottom:978.603510px;}
.y2a_c01308{bottom:980.202840px;}
.y29_c01308{bottom:982.474800px;}
.y28_c01308{bottom:982.833120px;}
.y27_c01308{bottom:983.867880px;}
.y26_c01308{bottom:1008.527340px;}
.y25_c01308{bottom:1008.908220px;}
.y24_c01308{bottom:1010.113860px;}
.y23_c01308{bottom:1011.332220px;}
.y22_c01308{bottom:1011.712980px;}
.y21_c01308{bottom:1012.179150px;}
.y20_c01308{bottom:1013.162730px;}
.y1f_c01308{bottom:1013.647080px;}
.y1e_c01308{bottom:1014.624660px;}
.y1d_c01308{bottom:1015.465710px;}
.y1c_c01308{bottom:1042.494480px;}
.y1b_c01308{bottom:1044.062010px;}
.y1a_c01308{bottom:1044.708810px;}
.y19_c01308{bottom:1046.692470px;}
.y18_c01308{bottom:1047.831090px;}
.y17_c01308{bottom:1048.268190px;}
.y16_c01308{bottom:1049.377140px;}
.y15_c01308{bottom:1050.041100px;}
.y14_c01308{bottom:1051.137390px;}
.y13_c01308{bottom:1052.018280px;}
.y12_c01308{bottom:1053.816000px;}
.y11_c01308{bottom:1108.036230px;}
.y10_c01308{bottom:1108.281240px;}
.yf_c01308{bottom:1108.754610px;}
.ye_c01308{bottom:1109.246130px;}
.yd_c01308{bottom:1109.857710px;}
.yc_c01308{bottom:1110.089850px;}
.yb_c01308{bottom:1110.239820px;}
.ya_c01308{bottom:1110.532560px;}
.y9_c01308{bottom:1110.699930px;}
.y8_c01308{bottom:1111.655100px;}
.y7_c01308{bottom:1112.232780px;}
.y6_c01308{bottom:1112.535330px;}
.y5_c01308{bottom:1113.211500px;}
.y4_c01308{bottom:1120.621383px;}
.y3_c01308{bottom:1122.563037px;}
.y2_c01308{bottom:1124.286000px;}
.y1_c01308{bottom:1177.458000px;}
.h4_c01308{height:18.003600px;}
.h11_c01308{height:36.010367px;}
.h12_c01308{height:48.013822px;}
.h6_c01308{height:66.013199px;}
.h8_c01308{height:72.011663px;}
.ha_c01308{height:72.012995px;}
.h5_c01308{height:72.014399px;}
.he_c01308{height:72.019041px;}
.hc_c01308{height:72.020733px;}
.hb_c01308{height:78.014078px;}
.h7_c01308{height:78.015598px;}
.h3_c01308{height:78.018874px;}
.hf_c01308{height:78.020628px;}
.h10_c01308{height:78.022461px;}
.h9_c01308{height:90.014579px;}
.hd_c01308{height:96.027644px;}
.h2_c01308{height:108.000000px;}
.h1_c01308{height:1250.250000px;}
.h0_c01308{height:1250.370000px;}
.w1_c01308{width:912.000000px;}
.w0_c01308{width:912.300000px;}
.x0_c01308{left:0.000000px;}
.xc6_c01308{left:121.115928px;}
.xc8_c01308{left:123.147084px;}
.xaa_c01308{left:124.752791px;}
.x8d_c01308{left:126.064968px;}
.x81_c01308{left:128.856581px;}
.x65_c01308{left:129.912810px;}
.x5e_c01308{left:131.535120px;}
.x50_c01308{left:133.193049px;}
.x3a_c01308{left:135.071247px;}
.x19_c01308{left:136.690320px;}
.xb1_c01308{left:158.228973px;}
.xa4_c01308{left:159.893126px;}
.x5f_c01308{left:165.244320px;}
.x45_c01308{left:168.033945px;}
.x28_c01308{left:170.420850px;}
.x82_c01308{left:173.630936px;}
.xce_c01308{left:176.260500px;}
.xc1_c01308{left:178.530000px;}
.xab_c01308{left:180.672795px;}
.xb2_c01308{left:191.952890px;}
.x78_c01308{left:195.556136px;}
.x6e_c01308{left:197.898480px;}
.x3b_c01308{left:200.126106px;}
.x20_c01308{left:201.993540px;}
.xa5_c01308{left:203.630663px;}
.xc7_c01308{left:205.072476px;}
.x66_c01308{left:208.190640px;}
.xba_c01308{left:211.702988px;}
.x1a_c01308{left:213.106560px;}
.x9b_c01308{left:214.374950px;}
.x79_c01308{left:217.957136px;}
.x21_c01308{left:224.411340px;}
.x8e_c01308{left:226.008456px;}
.x51_c01308{left:231.770187px;}
.x96_c01308{left:236.221500px;}
.x70_c01308{left:238.968000px;}
.x30_c01308{left:243.591000px;}
.x10_c01308{left:245.436000px;}
.x8f_c01308{left:248.629656px;}
.x7a_c01308{left:250.019636px;}
.x95_c01308{left:251.372220px;}
.x29_c01308{left:257.140710px;}
.x60_c01308{left:263.853210px;}
.x3c_c01308{left:265.468992px;}
.x71_c01308{left:272.712000px;}
.xc9_c01308{left:276.710256px;}
.xb3_c01308{left:279.485966px;}
.x90_c01308{left:280.778508px;}
.x7b_c01308{left:282.958136px;}
.x61_c01308{left:285.403920px;}
.xbb_c01308{left:289.915110px;}
.x97_c01308{left:292.149000px;}
.x83_c01308{left:293.798244px;}
.x46_c01308{left:298.412190px;}
.xbd_c01308{left:299.429451px;}
.xac_c01308{left:300.554115px;}
.x1b_c01308{left:301.976550px;}
.x67_c01308{left:306.471450px;}
.x31_c01308{left:310.521000px;}
.x52_c01308{left:319.775691px;}
.x72_c01308{left:322.963500px;}
.x9c_c01308{left:324.339648px;}
.x91_c01308{left:325.584372px;}
.x6f_c01308{left:331.845030px;}
.xad_c01308{left:334.270532px;}
.x11_c01308{left:335.322000px;}
.x86_c01308{left:338.542500px;}
.x3d_c01308{left:343.010958px;}
.x3_c01308{left:346.125000px;}
.x84_c01308{left:348.904799px;}
.x7c_c01308{left:350.752136px;}
.xb4_c01308{left:355.609713px;}
.x22_c01308{left:366.445710px;}
.x87_c01308{left:370.419000px;}
.x54_c01308{left:374.794500px;}
.x32_c01308{left:376.689000px;}
.x3e_c01308{left:377.802090px;}
.x6_c01308{left:379.581000px;}
.x9d_c01308{left:380.748756px;}
.xca_c01308{left:385.555884px;}
.x2a_c01308{left:388.663740px;}
.x98_c01308{left:390.487500px;}
.x7_c01308{left:394.708500px;}
.x47_c01308{left:398.069154px;}
.xae_c01308{left:400.747727px;}
.x1_c01308{left:403.110000px;}
.x73_c01308{left:405.375000px;}
.xcf_c01308{left:407.418000px;}
.x55_c01308{left:409.089000px;}
.x62_c01308{left:417.747510px;}
.x2b_c01308{left:420.765870px;}
.xb5_c01308{left:422.068908px;}
.x4_c01308{left:424.441500px;}
.x2_c01308{left:427.140000px;}
.x12_c01308{left:434.181000px;}
.x1c_c01308{left:435.397050px;}
.x92_c01308{left:436.405656px;}
.x3f_c01308{left:442.630422px;}
.x74_c01308{left:448.816500px;}
.x63_c01308{left:452.596800px;}
.x33_c01308{left:453.655500px;}
.xb6_c01308{left:456.637463px;}
.x7d_c01308{left:461.224135px;}
.x48_c01308{left:463.965594px;}
.x23_c01308{left:466.370190px;}
.x13_c01308{left:467.379000px;}
.x8_c01308{left:471.351000px;}
.x56_c01308{left:473.908500px;}
.x40_c01308{left:475.693392px;}
.x1d_c01308{left:477.763170px;}
.x9_c01308{left:479.719500px;}
.x68_c01308{left:483.925680px;}
.x34_c01308{left:487.699500px;}
.xa_c01308{left:494.356500px;}
.x49_c01308{left:498.027672px;}
.x24_c01308{left:499.042800px;}
.x9e_c01308{left:500.145473px;}
.xb_c01308{left:501.855000px;}
.x88_c01308{left:503.280000px;}
.x57_c01308{left:507.100500px;}
.xc2_c01308{left:508.966500px;}
.xb7_c01308{left:510.650657px;}
.x5_c01308{left:512.698500px;}
.xbc_c01308{left:520.589736px;}
.x14_c01308{left:522.826500px;}
.x75_c01308{left:527.118000px;}
.x41_c01308{left:530.703333px;}
.x2c_c01308{left:532.038690px;}
.x7e_c01308{left:537.365636px;}
.x4a_c01308{left:541.119060px;}
.xc_c01308{left:544.041000px;}
.x99_c01308{left:546.004500px;}
.xcb_c01308{left:552.473880px;}
.x25_c01308{left:554.955270px;}
.x89_c01308{left:557.407500px;}
.x69_c01308{left:560.938890px;}
.xc3_c01308{left:564.141000px;}
.xa6_c01308{left:567.086442px;}
.xd_c01308{left:568.617000px;}
.x58_c01308{left:572.281500px;}
.x4b_c01308{left:574.455057px;}
.x8a_c01308{left:580.516500px;}
.xd0_c01308{left:584.326500px;}
.xcc_c01308{left:585.971172px;}
.x35_c01308{left:587.116500px;}
.x9f_c01308{left:590.626532px;}
.xe_c01308{left:592.285500px;}
.x59_c01308{left:595.173000px;}
.xbe_c01308{left:598.074051px;}
.xa7_c01308{left:600.361772px;}
.x15_c01308{left:601.612500px;}
.xf_c01308{left:604.536000px;}
.x4c_c01308{left:608.173581px;}
.x36_c01308{left:609.199500px;}
.x42_c01308{left:619.263798px;}
.x2d_c01308{left:620.353320px;}
.x1e_c01308{left:623.070300px;}
.x6a_c01308{left:628.142610px;}
.xbf_c01308{left:631.280292px;}
.xa8_c01308{left:633.541101px;}
.x5a_c01308{left:639.708000px;}
.x4d_c01308{left:642.469659px;}
.xa0_c01308{left:644.635226px;}
.x76_c01308{left:649.171500px;}
.x26_c01308{left:654.879750px;}
.x9a_c01308{left:657.240000px;}
.x6b_c01308{left:661.786470px;}
.xc0_c01308{left:663.208568px;}
.x64_c01308{left:672.467880px;}
.xb8_c01308{left:676.770894px;}
.xa1_c01308{left:678.393642px;}
.x8b_c01308{left:679.899000px;}
.x85_c01308{left:682.725625px;}
.xcd_c01308{left:685.947084px;}
.x37_c01308{left:687.781500px;}
.x7f_c01308{left:692.644136px;}
.x43_c01308{left:697.612845px;}
.xaf_c01308{left:699.502785px;}
.x16_c01308{left:700.795500px;}
.x5b_c01308{left:706.681500px;}
.x2e_c01308{left:710.060160px;}
.xa2_c01308{left:711.350955px;}
.x44_c01308{left:719.721843px;}
.x2f_c01308{left:731.615610px;}
.x17_c01308{left:733.135500px;}
.x8c_c01308{left:735.549000px;}
.x6c_c01308{left:738.618150px;}
.x27_c01308{left:745.084950px;}
.x80_c01308{left:747.511136px;}
.x53_c01308{left:749.105550px;}
.x4e_c01308{left:752.699568px;}
.xb9_c01308{left:755.101487px;}
.x93_c01308{left:757.499676px;}
.x5c_c01308{left:762.868500px;}
.x1f_c01308{left:767.297250px;}
.xa3_c01308{left:777.784650px;}
.x38_c01308{left:785.820000px;}
.xc4_c01308{left:786.898500px;}
.x94_c01308{left:789.902064px;}
.xb0_c01308{left:791.553086px;}
.x77_c01308{left:793.392000px;}
.x5d_c01308{left:795.526500px;}
.x4f_c01308{left:797.802618px;}
.xa9_c01308{left:801.263352px;}
.x6d_c01308{left:805.761870px;}
.xc5_c01308{left:809.490000px;}
.x18_c01308{left:811.512000px;}
.x39_c01308{left:819.844500px;}
@media print{
.v0_c01308{vertical-align:0.000000pt;}
.ls0_c01308{letter-spacing:0.000000pt;}
.ws0_c01308{word-spacing:0.000000pt;}
._0_c01308{width:23.420038pt;}
.fs2_c01308{font-size:16.003200pt;}
.fsf_c01308{font-size:32.009215pt;}
.fs10_c01308{font-size:42.678953pt;}
.fs4_c01308{font-size:58.678399pt;}
.fs6_c01308{font-size:64.010367pt;}
.fs8_c01308{font-size:64.011551pt;}
.fs3_c01308{font-size:64.012799pt;}
.fsc_c01308{font-size:64.016926pt;}
.fsa_c01308{font-size:64.018429pt;}
.fs9_c01308{font-size:69.345847pt;}
.fs5_c01308{font-size:69.347199pt;}
.fs1_c01308{font-size:69.350110pt;}
.fsd_c01308{font-size:69.351670pt;}
.fse_c01308{font-size:69.353298pt;}
.fs7_c01308{font-size:80.012959pt;}
.fsb_c01308{font-size:85.357906pt;}
.fs0_c01308{font-size:96.000000pt;}
.y0_c01308{bottom:0.000000pt;}
.y13c_c01308{bottom:65.257845pt;}
.y13b_c01308{bottom:65.938581pt;}
.y13a_c01308{bottom:67.113269pt;}
.y139_c01308{bottom:68.069973pt;}
.y138_c01308{bottom:69.031893pt;}
.y137_c01308{bottom:71.619477pt;}
.y136_c01308{bottom:73.963253pt;}
.y135_c01308{bottom:75.125333pt;}
.y134_c01308{bottom:95.526144pt;}
.y133_c01308{bottom:96.410037pt;}
.y132_c01308{bottom:97.569579pt;}
.y131_c01308{bottom:98.254837pt;}
.y130_c01308{bottom:99.170997pt;}
.y12f_c01308{bottom:101.667669pt;}
.y12e_c01308{bottom:103.892320pt;}
.y12d_c01308{bottom:105.901749pt;}
.y12c_c01308{bottom:107.032256pt;}
.y12b_c01308{bottom:131.262805pt;}
.y12a_c01308{bottom:131.750976pt;}
.y129_c01308{bottom:132.129301pt;}
.y128_c01308{bottom:132.733675pt;}
.y127_c01308{bottom:133.696245pt;}
.y126_c01308{bottom:140.192459pt;}
.y125_c01308{bottom:140.674411pt;}
.y124_c01308{bottom:143.295979pt;}
.y123_c01308{bottom:143.999467pt;}
.y122_c01308{bottom:144.919691pt;}
.y121_c01308{bottom:145.426571pt;}
.y120_c01308{bottom:146.603627pt;}
.y11f_c01308{bottom:147.312459pt;}
.y11e_c01308{bottom:148.724075pt;}
.y11d_c01308{bottom:149.421515pt;}
.y11c_c01308{bottom:150.141451pt;}
.y11b_c01308{bottom:152.226539pt;}
.y11a_c01308{bottom:152.927947pt;}
.y119_c01308{bottom:153.652939pt;}
.y118_c01308{bottom:154.806667pt;}
.y117_c01308{bottom:172.454624pt;}
.y116_c01308{bottom:174.210269pt;}
.y115_c01308{bottom:174.891040pt;}
.y114_c01308{bottom:175.599272pt;}
.y113_c01308{bottom:177.034427pt;}
.y112_c01308{bottom:177.732017pt;}
.y111_c01308{bottom:178.440249pt;}
.y110_c01308{bottom:180.538817pt;}
.y10f_c01308{bottom:181.276105pt;}
.y10e_c01308{bottom:181.971703pt;}
.y10d_c01308{bottom:184.070669pt;}
.y10c_c01308{bottom:185.715089pt;}
.y10b_c01308{bottom:203.666743pt;}
.y10a_c01308{bottom:204.877397pt;}
.y109_c01308{bottom:205.500804pt;}
.y108_c01308{bottom:206.333305pt;}
.y107_c01308{bottom:207.362681pt;}
.y106_c01308{bottom:208.840133pt;}
.y105_c01308{bottom:209.464920pt;}
.y104_c01308{bottom:211.925025pt;}
.y103_c01308{bottom:213.145264pt;}
.y102_c01308{bottom:213.981369pt;}
.y101_c01308{bottom:214.604193pt;}
.y100_c01308{bottom:215.384820pt;}
.yff_c01308{bottom:216.201880pt;}
.yfe_c01308{bottom:236.768305pt;}
.yfd_c01308{bottom:237.882807pt;}
.yfc_c01308{bottom:238.351251pt;}
.yfb_c01308{bottom:238.831120pt;}
.yfa_c01308{bottom:239.768529pt;}
.yf9_c01308{bottom:240.245163pt;}
.yf8_c01308{bottom:241.013255pt;}
.yf7_c01308{bottom:241.505209pt;}
.yf6_c01308{bottom:242.450379pt;}
.yf5_c01308{bottom:242.918915pt;}
.yf4_c01308{bottom:243.533103pt;}
.yf3_c01308{bottom:244.778380pt;}
.yf2_c01308{bottom:245.258403pt;}
.yf1_c01308{bottom:245.730144pt;}
.yf0_c01308{bottom:267.695819pt;}
.yef_c01308{bottom:268.540977pt;}
.yee_c01308{bottom:269.005433pt;}
.yed_c01308{bottom:270.415565pt;}
.yec_c01308{bottom:271.202889pt;}
.yeb_c01308{bottom:271.848333pt;}
.yea_c01308{bottom:273.254999pt;}
.ye9_c01308{bottom:274.200536pt;}
.ye8_c01308{bottom:274.680405pt;}
.ye7_c01308{bottom:275.913307pt;}
.ye6_c01308{bottom:276.384251pt;}
.ye5_c01308{bottom:277.179320pt;}
.ye4_c01308{bottom:298.789843pt;}
.ye3_c01308{bottom:299.701812pt;}
.ye2_c01308{bottom:300.232787pt;}
.ye1_c01308{bottom:301.474437pt;}
.ye0_c01308{bottom:302.004692pt;}
.ydf_c01308{bottom:302.536909pt;}
.yde_c01308{bottom:303.257707pt;}
.ydd_c01308{bottom:304.818933pt;}
.ydc_c01308{bottom:306.084692pt;}
.ydb_c01308{bottom:306.784296pt;}
.yda_c01308{bottom:307.821249pt;}
.yd9_c01308{bottom:308.352040pt;}
.yd8_c01308{bottom:309.051460pt;}
.yd7_c01308{bottom:309.587327pt;}
.yd6_c01308{bottom:330.331608pt;}
.yd5_c01308{bottom:331.276256pt;}
.yd4_c01308{bottom:331.744608pt;}
.yd3_c01308{bottom:332.225336pt;}
.yd2_c01308{bottom:332.993336pt;}
.yd1_c01308{bottom:333.469172pt;}
.yd0_c01308{bottom:334.280207pt;}
.ycf_c01308{bottom:335.978147pt;}
.yce_c01308{bottom:336.457817pt;}
.ycd_c01308{bottom:336.779213pt;}
.ycc_c01308{bottom:337.405319pt;}
.ycb_c01308{bottom:338.343019pt;}
.yca_c01308{bottom:339.595320pt;}
.yc9_c01308{bottom:360.721185pt;}
.yc8_c01308{bottom:362.084380pt;}
.yc7_c01308{bottom:363.879177pt;}
.yc6_c01308{bottom:364.573256pt;}
.yc5_c01308{bottom:366.153325pt;}
.yc4_c01308{bottom:366.820571pt;}
.yc3_c01308{bottom:368.636927pt;}
.yc2_c01308{bottom:369.332784pt;}
.yc1_c01308{bottom:371.343260pt;}
.yc0_c01308{bottom:372.486667pt;}
.ybe_c01308{bottom:401.859872pt;}
.ybf_c01308{bottom:401.860267pt;}
.ybd_c01308{bottom:423.662795pt;}
.ybc_c01308{bottom:424.209963pt;}
.ybb_c01308{bottom:425.515552pt;}
.yba_c01308{bottom:426.846933pt;}
.yb9_c01308{bottom:428.347915pt;}
.yb8_c01308{bottom:429.632480pt;}
.yb7_c01308{bottom:430.171147pt;}
.yb6_c01308{bottom:431.504384pt;}
.yb5_c01308{bottom:432.261461pt;}
.yb4_c01308{bottom:432.804555pt;}
.yb3_c01308{bottom:433.187083pt;}
.yb2_c01308{bottom:434.874955pt;}
.yb1_c01308{bottom:456.017003pt;}
.yb0_c01308{bottom:456.708683pt;}
.yaf_c01308{bottom:457.895883pt;}
.yae_c01308{bottom:460.016043pt;}
.yad_c01308{bottom:460.509035pt;}
.yac_c01308{bottom:461.663755pt;}
.yab_c01308{bottom:462.365867pt;}
.yaa_c01308{bottom:463.760779pt;}
.ya9_c01308{bottom:464.498123pt;}
.ya8_c01308{bottom:465.178155pt;}
.ya7_c01308{bottom:467.286667pt;}
.ya6_c01308{bottom:490.472104pt;}
.ya5_c01308{bottom:492.251017pt;}
.ya4_c01308{bottom:497.592773pt;}
.ya3_c01308{bottom:498.474111pt;}
.ya2_c01308{bottom:499.350483pt;}
.ya1_c01308{bottom:500.395564pt;}
.ya0_c01308{bottom:501.111739pt;}
.y9f_c01308{bottom:520.878416pt;}
.y9e_c01308{bottom:521.647865pt;}
.y9d_c01308{bottom:522.574508pt;}
.y9c_c01308{bottom:523.482227pt;}
.y9b_c01308{bottom:525.196989pt;}
.y9a_c01308{bottom:526.482935pt;}
.y99_c01308{bottom:528.348684pt;}
.y98_c01308{bottom:529.493649pt;}
.y97_c01308{bottom:530.049944pt;}
.y96_c01308{bottom:530.591444pt;}
.y95_c01308{bottom:530.969772pt;}
.y94_c01308{bottom:532.078333pt;}
.y93_c01308{bottom:552.480395pt;}
.y92_c01308{bottom:553.242295pt;}
.y91_c01308{bottom:554.916119pt;}
.y90_c01308{bottom:555.663047pt;}
.y8f_c01308{bottom:556.977467pt;}
.y8e_c01308{bottom:558.299892pt;}
.y8d_c01308{bottom:559.033571pt;}
.y8c_c01308{bottom:560.425409pt;}
.y8b_c01308{bottom:561.274101pt;}
.y8a_c01308{bottom:561.844000pt;}
.y89_c01308{bottom:591.341200pt;}
.y87_c01308{bottom:591.341280pt;}
.y88_c01308{bottom:591.341520pt;}
.y86_c01308{bottom:613.298827pt;}
.y85_c01308{bottom:614.193707pt;}
.y84_c01308{bottom:615.218133pt;}
.y83_c01308{bottom:615.666853pt;}
.y82_c01308{bottom:616.562800pt;}
.y81_c01308{bottom:617.589120pt;}
.y80_c01308{bottom:618.338347pt;}
.y7f_c01308{bottom:618.780960pt;}
.y7e_c01308{bottom:619.955547pt;}
.y7d_c01308{bottom:620.232160pt;}
.y7c_c01308{bottom:621.266587pt;}
.y7b_c01308{bottom:622.310053pt;}
.y7a_c01308{bottom:645.209307pt;}
.y79_c01308{bottom:646.303413pt;}
.y78_c01308{bottom:647.721253pt;}
.y77_c01308{bottom:648.173467pt;}
.y76_c01308{bottom:649.430587pt;}
.y75_c01308{bottom:649.926080pt;}
.y74_c01308{bottom:651.331707pt;}
.y73_c01308{bottom:651.808000pt;}
.y72_c01308{bottom:652.115093pt;}
.y71_c01308{bottom:653.517333pt;}
.y70_c01308{bottom:653.996560pt;}
.y6f_c01308{bottom:677.067547pt;}
.y6e_c01308{bottom:677.648133pt;}
.y6d_c01308{bottom:678.647013pt;}
.y6c_c01308{bottom:679.837653pt;}
.y6b_c01308{bottom:680.629387pt;}
.y6a_c01308{bottom:681.036347pt;}
.y69_c01308{bottom:682.195120pt;}
.y68_c01308{bottom:682.785200pt;}
.y67_c01308{bottom:683.937547pt;}
.y66_c01308{bottom:684.547227pt;}
.y65_c01308{bottom:685.114000pt;}
.y64_c01308{bottom:686.885333pt;}
.y63_c01308{bottom:710.298493pt;}
.y62_c01308{bottom:714.877696pt;}
.y61_c01308{bottom:715.462776pt;}
.y60_c01308{bottom:715.816299pt;}
.y5f_c01308{bottom:716.868029pt;}
.y5e_c01308{bottom:740.174603pt;}
.y5d_c01308{bottom:740.696187pt;}
.y5c_c01308{bottom:741.970373pt;}
.y5b_c01308{bottom:742.367061pt;}
.y5a_c01308{bottom:742.757176pt;}
.y59_c01308{bottom:743.142504pt;}
.y58_c01308{bottom:743.639904pt;}
.y57_c01308{bottom:744.032848pt;}
.y56_c01308{bottom:744.793763pt;}
.y55_c01308{bottom:745.945464pt;}
.y54_c01308{bottom:746.331931pt;}
.y53_c01308{bottom:747.451328pt;}
.y52_c01308{bottom:747.831245pt;}
.y51_c01308{bottom:773.000789pt;}
.y50_c01308{bottom:773.255835pt;}
.y4f_c01308{bottom:774.161307pt;}
.y4e_c01308{bottom:774.529469pt;}
.y4d_c01308{bottom:775.184813pt;}
.y4c_c01308{bottom:775.820893pt;}
.y4b_c01308{bottom:776.203187pt;}
.y4a_c01308{bottom:776.952347pt;}
.y49_c01308{bottom:777.354288pt;}
.y48_c01308{bottom:778.250848pt;}
.y47_c01308{bottom:779.005573pt;}
.y46_c01308{bottom:779.757024pt;}
.y45_c01308{bottom:803.663944pt;}
.y44_c01308{bottom:804.208336pt;}
.y43_c01308{bottom:805.776952pt;}
.y42_c01308{bottom:807.034264pt;}
.y41_c01308{bottom:807.387592pt;}
.y40_c01308{bottom:808.978264pt;}
.y3f_c01308{bottom:809.522968pt;}
.y3e_c01308{bottom:810.754432pt;}
.y3d_c01308{bottom:811.813120pt;}
.y3c_c01308{bottom:812.884000pt;}
.y3b_c01308{bottom:834.827520pt;}
.y3a_c01308{bottom:835.057333pt;}
.y39_c01308{bottom:835.654640pt;}
.y38_c01308{bottom:836.014533pt;}
.y37_c01308{bottom:836.956320pt;}
.y36_c01308{bottom:837.307253pt;}
.y35_c01308{bottom:838.142187pt;}
.y34_c01308{bottom:838.484800pt;}
.y33_c01308{bottom:839.412613pt;}
.y32_c01308{bottom:839.887947pt;}
.y31_c01308{bottom:840.813387pt;}
.y30_c01308{bottom:841.181760pt;}
.y2f_c01308{bottom:865.904587pt;}
.y2e_c01308{bottom:867.188107pt;}
.y2d_c01308{bottom:868.609733pt;}
.y2c_c01308{bottom:869.404987pt;}
.y2b_c01308{bottom:869.869787pt;}
.y2a_c01308{bottom:871.291413pt;}
.y29_c01308{bottom:873.310933pt;}
.y28_c01308{bottom:873.629440pt;}
.y27_c01308{bottom:874.549227pt;}
.y26_c01308{bottom:896.468747pt;}
.y25_c01308{bottom:896.807307pt;}
.y24_c01308{bottom:897.878987pt;}
.y23_c01308{bottom:898.961973pt;}
.y22_c01308{bottom:899.300427pt;}
.y21_c01308{bottom:899.714800pt;}
.y20_c01308{bottom:900.589093pt;}
.y1f_c01308{bottom:901.019627pt;}
.y1e_c01308{bottom:901.888587pt;}
.y1d_c01308{bottom:902.636187pt;}
.y1c_c01308{bottom:926.661760pt;}
.y1b_c01308{bottom:928.055120pt;}
.y1a_c01308{bottom:928.630053pt;}
.y19_c01308{bottom:930.393307pt;}
.y18_c01308{bottom:931.405413pt;}
.y17_c01308{bottom:931.793947pt;}
.y16_c01308{bottom:932.779680pt;}
.y15_c01308{bottom:933.369867pt;}
.y14_c01308{bottom:934.344347pt;}
.y13_c01308{bottom:935.127360pt;}
.y12_c01308{bottom:936.725333pt;}
.y11_c01308{bottom:984.921093pt;}
.y10_c01308{bottom:985.138880pt;}
.yf_c01308{bottom:985.559653pt;}
.ye_c01308{bottom:985.996560pt;}
.yd_c01308{bottom:986.540187pt;}
.yc_c01308{bottom:986.746533pt;}
.yb_c01308{bottom:986.879840pt;}
.ya_c01308{bottom:987.140053pt;}
.y9_c01308{bottom:987.288827pt;}
.y8_c01308{bottom:988.137867pt;}
.y7_c01308{bottom:988.651360pt;}
.y6_c01308{bottom:988.920293pt;}
.y5_c01308{bottom:989.521333pt;}
.y4_c01308{bottom:996.107896pt;}
.y3_c01308{bottom:997.833811pt;}
.y2_c01308{bottom:999.365333pt;}
.y1_c01308{bottom:1046.629333pt;}
.h4_c01308{height:16.003200pt;}
.h11_c01308{height:32.009215pt;}
.h12_c01308{height:42.678953pt;}
.h6_c01308{height:58.678399pt;}
.h8_c01308{height:64.010367pt;}
.ha_c01308{height:64.011551pt;}
.h5_c01308{height:64.012799pt;}
.he_c01308{height:64.016926pt;}
.hc_c01308{height:64.018429pt;}
.hb_c01308{height:69.345847pt;}
.h7_c01308{height:69.347199pt;}
.h3_c01308{height:69.350110pt;}
.hf_c01308{height:69.351670pt;}
.h10_c01308{height:69.353298pt;}
.h9_c01308{height:80.012959pt;}
.hd_c01308{height:85.357906pt;}
.h2_c01308{height:96.000000pt;}
.h1_c01308{height:1111.333333pt;}
.h0_c01308{height:1111.440000pt;}
.w1_c01308{width:810.666667pt;}
.w0_c01308{width:810.933333pt;}
.x0_c01308{left:0.000000pt;}
.xc6_c01308{left:107.658603pt;}
.xc8_c01308{left:109.464075pt;}
.xaa_c01308{left:110.891369pt;}
.x8d_c01308{left:112.057749pt;}
.x81_c01308{left:114.539183pt;}
.x65_c01308{left:115.478053pt;}
.x5e_c01308{left:116.920107pt;}
.x50_c01308{left:118.393821pt;}
.x3a_c01308{left:120.063331pt;}
.x19_c01308{left:121.502507pt;}
.xb1_c01308{left:140.647976pt;}
.xa4_c01308{left:142.127223pt;}
.x5f_c01308{left:146.883840pt;}
.x45_c01308{left:149.363507pt;}
.x28_c01308{left:151.485200pt;}
.x82_c01308{left:154.338609pt;}
.xce_c01308{left:156.676000pt;}
.xc1_c01308{left:158.693333pt;}
.xab_c01308{left:160.598040pt;}
.xb2_c01308{left:170.624791pt;}
.x78_c01308{left:173.827676pt;}
.x6e_c01308{left:175.909760pt;}
.x3b_c01308{left:177.889872pt;}
.x20_c01308{left:179.549813pt;}
.xa5_c01308{left:181.005033pt;}
.xc7_c01308{left:182.286645pt;}
.x66_c01308{left:185.058347pt;}
.xba_c01308{left:188.180433pt;}
.x1a_c01308{left:189.428053pt;}
.x9b_c01308{left:190.555511pt;}
.x79_c01308{left:193.739676pt;}
.x21_c01308{left:199.476747pt;}
.x8e_c01308{left:200.896405pt;}
.x51_c01308{left:206.017944pt;}
.x96_c01308{left:209.974667pt;}
.x70_c01308{left:212.416000pt;}
.x30_c01308{left:216.525333pt;}
.x10_c01308{left:218.165333pt;}
.x8f_c01308{left:221.004139pt;}
.x7a_c01308{left:222.239676pt;}
.x95_c01308{left:223.441973pt;}
.x29_c01308{left:228.569520pt;}
.x60_c01308{left:234.536187pt;}
.x3c_c01308{left:235.972437pt;}
.x71_c01308{left:242.410667pt;}
.xc9_c01308{left:245.964672pt;}
.xb3_c01308{left:248.431969pt;}
.x90_c01308{left:249.580896pt;}
.x7b_c01308{left:251.518343pt;}
.x61_c01308{left:253.692373pt;}
.xbb_c01308{left:257.702320pt;}
.x97_c01308{left:259.688000pt;}
.x83_c01308{left:261.153995pt;}
.x46_c01308{left:265.255280pt;}
.xbd_c01308{left:266.159512pt;}
.xac_c01308{left:267.159213pt;}
.x1b_c01308{left:268.423600pt;}
.x67_c01308{left:272.419067pt;}
.x31_c01308{left:276.018667pt;}
.x52_c01308{left:284.245059pt;}
.x72_c01308{left:287.078667pt;}
.x9c_c01308{left:288.301909pt;}
.x91_c01308{left:289.408331pt;}
.x6f_c01308{left:294.973360pt;}
.xad_c01308{left:297.129361pt;}
.x11_c01308{left:298.064000pt;}
.x86_c01308{left:300.926667pt;}
.x3d_c01308{left:304.898629pt;}
.x3_c01308{left:307.666667pt;}
.x84_c01308{left:310.137599pt;}
.x7c_c01308{left:311.779676pt;}
.xb4_c01308{left:316.097523pt;}
.x22_c01308{left:325.729520pt;}
.x87_c01308{left:329.261333pt;}
.x54_c01308{left:333.150667pt;}
.x32_c01308{left:334.834667pt;}
.x3e_c01308{left:335.824080pt;}
.x6_c01308{left:337.405333pt;}
.x9d_c01308{left:338.443339pt;}
.xca_c01308{left:342.716341pt;}
.x2a_c01308{left:345.478880pt;}
.x98_c01308{left:347.100000pt;}
.x7_c01308{left:350.852000pt;}
.x47_c01308{left:353.839248pt;}
.xae_c01308{left:356.220201pt;}
.x1_c01308{left:358.320000pt;}
.x73_c01308{left:360.333333pt;}
.xcf_c01308{left:362.149333pt;}
.x55_c01308{left:363.634667pt;}
.x62_c01308{left:371.331120pt;}
.x2b_c01308{left:374.014107pt;}
.xb5_c01308{left:375.172363pt;}
.x4_c01308{left:377.281333pt;}
.x2_c01308{left:379.680000pt;}
.x12_c01308{left:385.938667pt;}
.x1c_c01308{left:387.019600pt;}
.x92_c01308{left:387.916139pt;}
.x3f_c01308{left:393.449264pt;}
.x74_c01308{left:398.948000pt;}
.x63_c01308{left:402.308267pt;}
.x33_c01308{left:403.249333pt;}
.xb6_c01308{left:405.899967pt;}
.x7d_c01308{left:409.977009pt;}
.x48_c01308{left:412.413861pt;}
.x23_c01308{left:414.551280pt;}
.x13_c01308{left:415.448000pt;}
.x8_c01308{left:418.978667pt;}
.x56_c01308{left:421.252000pt;}
.x40_c01308{left:422.838571pt;}
.x1d_c01308{left:424.678373pt;}
.x9_c01308{left:426.417333pt;}
.x68_c01308{left:430.156160pt;}
.x34_c01308{left:433.510667pt;}
.xa_c01308{left:439.428000pt;}
.x49_c01308{left:442.691264pt;}
.x24_c01308{left:443.593600pt;}
.x9e_c01308{left:444.573753pt;}
.xb_c01308{left:446.093333pt;}
.x88_c01308{left:447.360000pt;}
.x57_c01308{left:450.756000pt;}
.xc2_c01308{left:452.414667pt;}
.xb7_c01308{left:453.911695pt;}
.x5_c01308{left:455.732000pt;}
.xbc_c01308{left:462.746432pt;}
.x14_c01308{left:464.734667pt;}
.x75_c01308{left:468.549333pt;}
.x41_c01308{left:471.736296pt;}
.x2c_c01308{left:472.923280pt;}
.x7e_c01308{left:477.658343pt;}
.x4a_c01308{left:480.994720pt;}
.xc_c01308{left:483.592000pt;}
.x99_c01308{left:485.337333pt;}
.xcb_c01308{left:491.087893pt;}
.x25_c01308{left:493.293573pt;}
.x89_c01308{left:495.473333pt;}
.x69_c01308{left:498.612347pt;}
.xc3_c01308{left:501.458667pt;}
.xa6_c01308{left:504.076837pt;}
.xd_c01308{left:505.437333pt;}
.x58_c01308{left:508.694667pt;}
.x4b_c01308{left:510.626717pt;}
.x8a_c01308{left:516.014667pt;}
.xd0_c01308{left:519.401333pt;}
.xcc_c01308{left:520.863264pt;}
.x35_c01308{left:521.881333pt;}
.x9f_c01308{left:525.001361pt;}
.xe_c01308{left:526.476000pt;}
.x59_c01308{left:529.042667pt;}
.xbe_c01308{left:531.621379pt;}
.xa7_c01308{left:533.654908pt;}
.x15_c01308{left:534.766667pt;}
.xf_c01308{left:537.365333pt;}
.x4c_c01308{left:540.598739pt;}
.x36_c01308{left:541.510667pt;}
.x42_c01308{left:550.456709pt;}
.x2d_c01308{left:551.425173pt;}
.x1e_c01308{left:553.840267pt;}
.x6a_c01308{left:558.348987pt;}
.xbf_c01308{left:561.138037pt;}
.xa8_c01308{left:563.147645pt;}
.x5a_c01308{left:568.629333pt;}
.x4d_c01308{left:571.084141pt;}
.xa0_c01308{left:573.009089pt;}
.x76_c01308{left:577.041333pt;}
.x26_c01308{left:582.115333pt;}
.x9a_c01308{left:584.213333pt;}
.x6b_c01308{left:588.254640pt;}
.xc0_c01308{left:589.518727pt;}
.x64_c01308{left:597.749227pt;}
.xb8_c01308{left:601.574128pt;}
.xa1_c01308{left:603.016571pt;}
.x8b_c01308{left:604.354667pt;}
.x85_c01308{left:606.867223pt;}
.xcd_c01308{left:609.730741pt;}
.x37_c01308{left:611.361333pt;}
.x7f_c01308{left:615.683676pt;}
.x43_c01308{left:620.100307pt;}
.xaf_c01308{left:621.780253pt;}
.x16_c01308{left:622.929333pt;}
.x5b_c01308{left:628.161333pt;}
.x2e_c01308{left:631.164587pt;}
.xa2_c01308{left:632.311960pt;}
.x44_c01308{left:639.752749pt;}
.x2f_c01308{left:650.324987pt;}
.x17_c01308{left:651.676000pt;}
.x8c_c01308{left:653.821333pt;}
.x6c_c01308{left:656.549467pt;}
.x27_c01308{left:662.297733pt;}
.x80_c01308{left:664.454343pt;}
.x53_c01308{left:665.871600pt;}
.x4e_c01308{left:669.066283pt;}
.xb9_c01308{left:671.201321pt;}
.x93_c01308{left:673.333045pt;}
.x5c_c01308{left:678.105333pt;}
.x1f_c01308{left:682.042000pt;}
.xa3_c01308{left:691.364133pt;}
.x38_c01308{left:698.506667pt;}
.xc4_c01308{left:699.465333pt;}
.x94_c01308{left:702.135168pt;}
.xb0_c01308{left:703.602743pt;}
.x77_c01308{left:705.237333pt;}
.x5d_c01308{left:707.134667pt;}
.x4f_c01308{left:709.157883pt;}
.xa9_c01308{left:712.234091pt;}
.x6d_c01308{left:716.232773pt;}
.xc5_c01308{left:719.546667pt;}
.x18_c01308{left:721.344000pt;}
.x39_c01308{left:728.750667pt;}
}





/* 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_c01309 {
    display:none;
  }
  .loading-indicator_c01309.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01309 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_c01309 { 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_c01309" -> "#page-container .classname_c01309")
 */
.pf_c01309 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01309 { /* 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_c01309.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01309 { /* 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_c01309 { /* 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_c01309 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01309 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01309 {overflow:visible;}
  }
}
.c_c01309 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01309 { /* 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_c01309:after { /* webkit #35443 */
  content: '';
}
.t_c01309:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01309 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 */
}
.__c01309 { /* 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_c01309 { /* info for Javascript */
  display:none;
}
.l_c01309 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01309 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01309 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01309: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_c01309 {
    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_c01309.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01309.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_c01309 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01309{font-family:sans-serif;visibility:hidden;}
.sc__c01309{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01309{-webkit-text-stroke:0px transparent;}
}
.y0_c01309{bottom:0.000000px;}
.h1_c01309{height:1250.250000px;}
.h0_c01309{height:1250.370000px;}
.w1_c01309{width:912.000000px;}
.w0_c01309{width:912.300000px;}
.x0_c01309{left:0.000000px;}
@media print{
.y0_c01309{bottom:0.000000pt;}
.h1_c01309{height:1111.333333pt;}
.h0_c01309{height:1111.440000pt;}
.w1_c01309{width:810.666667pt;}
.w0_c01309{width:810.933333pt;}
.x0_c01309{left:0.000000pt;}
}





/* 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_c01310 {
    display:none;
  }
  .loading-indicator_c01310.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01310 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_c01310 { 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_c01310" -> "#page-container .classname_c01310")
 */
.pf_c01310 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01310 { /* 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_c01310.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01310 { /* 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_c01310 { /* 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_c01310 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01310 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01310 {overflow:visible;}
  }
}
.c_c01310 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01310 { /* 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_c01310:after { /* webkit #35443 */
  content: '';
}
.t_c01310:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01310 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 */
}
.__c01310 { /* 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_c01310 { /* info for Javascript */
  display:none;
}
.l_c01310 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01310 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01310 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01310: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_c01310 {
    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_c01310.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01310.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_c01310 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01310{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01310;src:url('chunks/assets/font_c605e72f209fc835e906f064.woff2')format("woff");}.ff1_c01310{font-family:ff1_c01310;line-height:1.000000;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;}
.m65_c01310{transform:matrix(0.032039,-0.000224,0.001750,0.249994,0,0);-ms-transform:matrix(0.032039,-0.000224,0.001750,0.249994,0,0);-webkit-transform:matrix(0.032039,-0.000224,0.001750,0.249994,0,0);}
.mce_c01310{transform:matrix(0.113019,-0.000565,0.001250,0.249997,0,0);-ms-transform:matrix(0.113019,-0.000565,0.001250,0.249997,0,0);-webkit-transform:matrix(0.113019,-0.000565,0.001250,0.249997,0,0);}
.m1_c01310{transform:matrix(0.123930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123930,0.000000,0.000000,0.250000,0,0);}
.mbd_c01310{transform:matrix(0.154063,-0.000770,0.001250,0.249997,0,0);-ms-transform:matrix(0.154063,-0.000770,0.001250,0.249997,0,0);-webkit-transform:matrix(0.154063,-0.000770,0.001250,0.249997,0,0);}
.m139_c01310{transform:matrix(0.157094,-0.001414,0.002250,0.249990,0,0);-ms-transform:matrix(0.157094,-0.001414,0.002250,0.249990,0,0);-webkit-transform:matrix(0.157094,-0.001414,0.002250,0.249990,0,0);}
.me0_c01310{transform:matrix(0.160505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160505,0.000000,0.000000,0.250000,0,0);}
.m99_c01310{transform:matrix(0.162013,-0.000810,0.001250,0.249997,0,0);-ms-transform:matrix(0.162013,-0.000810,0.001250,0.249997,0,0);-webkit-transform:matrix(0.162013,-0.000810,0.001250,0.249997,0,0);}
.m13c_c01310{transform:matrix(0.163493,-0.001471,0.002250,0.249990,0,0);-ms-transform:matrix(0.163493,-0.001471,0.002250,0.249990,0,0);-webkit-transform:matrix(0.163493,-0.001471,0.002250,0.249990,0,0);}
.m94_c01310{transform:matrix(0.165293,-0.000826,0.001250,0.249997,0,0);-ms-transform:matrix(0.165293,-0.000826,0.001250,0.249997,0,0);-webkit-transform:matrix(0.165293,-0.000826,0.001250,0.249997,0,0);}
.mb9_c01310{transform:matrix(0.166673,-0.000833,0.001250,0.249997,0,0);-ms-transform:matrix(0.166673,-0.000833,0.001250,0.249997,0,0);-webkit-transform:matrix(0.166673,-0.000833,0.001250,0.249997,0,0);}
.m13a_c01310{transform:matrix(0.168243,-0.001514,0.002250,0.249990,0,0);-ms-transform:matrix(0.168243,-0.001514,0.002250,0.249990,0,0);-webkit-transform:matrix(0.168243,-0.001514,0.002250,0.249990,0,0);}
.mba_c01310{transform:matrix(0.168363,-0.000842,0.001250,0.249997,0,0);-ms-transform:matrix(0.168363,-0.000842,0.001250,0.249997,0,0);-webkit-transform:matrix(0.168363,-0.000842,0.001250,0.249997,0,0);}
.m96_c01310{transform:matrix(0.169858,-0.000849,0.001250,0.249997,0,0);-ms-transform:matrix(0.169858,-0.000849,0.001250,0.249997,0,0);-webkit-transform:matrix(0.169858,-0.000849,0.001250,0.249997,0,0);}
.m9e_c01310{transform:matrix(0.170408,-0.000852,0.001250,0.249997,0,0);-ms-transform:matrix(0.170408,-0.000852,0.001250,0.249997,0,0);-webkit-transform:matrix(0.170408,-0.000852,0.001250,0.249997,0,0);}
.m13e_c01310{transform:matrix(0.171508,-0.001544,0.002250,0.249990,0,0);-ms-transform:matrix(0.171508,-0.001544,0.002250,0.249990,0,0);-webkit-transform:matrix(0.171508,-0.001544,0.002250,0.249990,0,0);}
.m9c_c01310{transform:matrix(0.174883,-0.000874,0.001250,0.249997,0,0);-ms-transform:matrix(0.174883,-0.000874,0.001250,0.249997,0,0);-webkit-transform:matrix(0.174883,-0.000874,0.001250,0.249997,0,0);}
.m98_c01310{transform:matrix(0.175113,-0.000876,0.001250,0.249997,0,0);-ms-transform:matrix(0.175113,-0.000876,0.001250,0.249997,0,0);-webkit-transform:matrix(0.175113,-0.000876,0.001250,0.249997,0,0);}
.mb6_c01310{transform:matrix(0.176038,-0.000880,0.001250,0.249997,0,0);-ms-transform:matrix(0.176038,-0.000880,0.001250,0.249997,0,0);-webkit-transform:matrix(0.176038,-0.000880,0.001250,0.249997,0,0);}
.m12c_c01310{transform:matrix(0.176300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176300,0.000000,0.000000,0.250000,0,0);}
.m93_c01310{transform:matrix(0.178138,-0.000891,0.001250,0.249997,0,0);-ms-transform:matrix(0.178138,-0.000891,0.001250,0.249997,0,0);-webkit-transform:matrix(0.178138,-0.000891,0.001250,0.249997,0,0);}
.m2_c01310{transform:matrix(0.179010,-0.002327,0.003250,0.249979,0,0);-ms-transform:matrix(0.179010,-0.002327,0.003250,0.249979,0,0);-webkit-transform:matrix(0.179010,-0.002327,0.003250,0.249979,0,0);}
.m13b_c01310{transform:matrix(0.181078,-0.001630,0.002250,0.249990,0,0);-ms-transform:matrix(0.181078,-0.001630,0.002250,0.249990,0,0);-webkit-transform:matrix(0.181078,-0.001630,0.002250,0.249990,0,0);}
.mb7_c01310{transform:matrix(0.182453,-0.000912,0.001250,0.249997,0,0);-ms-transform:matrix(0.182453,-0.000912,0.001250,0.249997,0,0);-webkit-transform:matrix(0.182453,-0.000912,0.001250,0.249997,0,0);}
.mbc_c01310{transform:matrix(0.182698,-0.000913,0.001250,0.249997,0,0);-ms-transform:matrix(0.182698,-0.000913,0.001250,0.249997,0,0);-webkit-transform:matrix(0.182698,-0.000913,0.001250,0.249997,0,0);}
.mbe_c01310{transform:matrix(0.182908,-0.000915,0.001250,0.249997,0,0);-ms-transform:matrix(0.182908,-0.000915,0.001250,0.249997,0,0);-webkit-transform:matrix(0.182908,-0.000915,0.001250,0.249997,0,0);}
.m13d_c01310{transform:matrix(0.183048,-0.001647,0.002250,0.249990,0,0);-ms-transform:matrix(0.183048,-0.001647,0.002250,0.249990,0,0);-webkit-transform:matrix(0.183048,-0.001647,0.002250,0.249990,0,0);}
.mbb_c01310{transform:matrix(0.183353,-0.000917,0.001250,0.249997,0,0);-ms-transform:matrix(0.183353,-0.000917,0.001250,0.249997,0,0);-webkit-transform:matrix(0.183353,-0.000917,0.001250,0.249997,0,0);}
.m137_c01310{transform:matrix(0.183438,-0.001651,0.002250,0.249990,0,0);-ms-transform:matrix(0.183438,-0.001651,0.002250,0.249990,0,0);-webkit-transform:matrix(0.183438,-0.001651,0.002250,0.249990,0,0);}
.m9b_c01310{transform:matrix(0.184683,-0.000923,0.001250,0.249997,0,0);-ms-transform:matrix(0.184683,-0.000923,0.001250,0.249997,0,0);-webkit-transform:matrix(0.184683,-0.000923,0.001250,0.249997,0,0);}
.mbf_c01310{transform:matrix(0.185368,-0.000927,0.001250,0.249997,0,0);-ms-transform:matrix(0.185368,-0.000927,0.001250,0.249997,0,0);-webkit-transform:matrix(0.185368,-0.000927,0.001250,0.249997,0,0);}
.mb8_c01310{transform:matrix(0.185808,-0.000929,0.001250,0.249997,0,0);-ms-transform:matrix(0.185808,-0.000929,0.001250,0.249997,0,0);-webkit-transform:matrix(0.185808,-0.000929,0.001250,0.249997,0,0);}
.m55_c01310{transform:matrix(0.186805,-0.001308,0.001750,0.249994,0,0);-ms-transform:matrix(0.186805,-0.001308,0.001750,0.249994,0,0);-webkit-transform:matrix(0.186805,-0.001308,0.001750,0.249994,0,0);}
.m123_c01310{transform:matrix(0.187625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187625,0.000000,0.000000,0.250000,0,0);}
.m130_c01310{transform:matrix(0.188485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188485,0.000000,0.000000,0.250000,0,0);}
.m13_c01310{transform:matrix(0.189731,-0.002656,0.003500,0.249976,0,0);-ms-transform:matrix(0.189731,-0.002656,0.003500,0.249976,0,0);-webkit-transform:matrix(0.189731,-0.002656,0.003500,0.249976,0,0);}
.m120_c01310{transform:matrix(0.189745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189745,0.000000,0.000000,0.250000,0,0);}
.m95_c01310{transform:matrix(0.189883,-0.000949,0.001250,0.249997,0,0);-ms-transform:matrix(0.189883,-0.000949,0.001250,0.249997,0,0);-webkit-transform:matrix(0.189883,-0.000949,0.001250,0.249997,0,0);}
.m124_c01310{transform:matrix(0.190215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190215,0.000000,0.000000,0.250000,0,0);}
.m97_c01310{transform:matrix(0.190473,-0.000952,0.001250,0.249997,0,0);-ms-transform:matrix(0.190473,-0.000952,0.001250,0.249997,0,0);-webkit-transform:matrix(0.190473,-0.000952,0.001250,0.249997,0,0);}
.m9a_c01310{transform:matrix(0.190578,-0.000953,0.001250,0.249997,0,0);-ms-transform:matrix(0.190578,-0.000953,0.001250,0.249997,0,0);-webkit-transform:matrix(0.190578,-0.000953,0.001250,0.249997,0,0);}
.m138_c01310{transform:matrix(0.191212,-0.001721,0.002250,0.249990,0,0);-ms-transform:matrix(0.191212,-0.001721,0.002250,0.249990,0,0);-webkit-transform:matrix(0.191212,-0.001721,0.002250,0.249990,0,0);}
.m121_c01310{transform:matrix(0.192510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192510,0.000000,0.000000,0.250000,0,0);}
.m69_c01310{transform:matrix(0.192640,-0.001348,0.001750,0.249994,0,0);-ms-transform:matrix(0.192640,-0.001348,0.001750,0.249994,0,0);-webkit-transform:matrix(0.192640,-0.001348,0.001750,0.249994,0,0);}
.m125_c01310{transform:matrix(0.195830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195830,0.000000,0.000000,0.250000,0,0);}
.m9d_c01310{transform:matrix(0.197093,-0.000985,0.001250,0.249997,0,0);-ms-transform:matrix(0.197093,-0.000985,0.001250,0.249997,0,0);-webkit-transform:matrix(0.197093,-0.000985,0.001250,0.249997,0,0);}
.m6c_c01310{transform:matrix(0.197380,-0.001382,0.001750,0.249994,0,0);-ms-transform:matrix(0.197380,-0.001382,0.001750,0.249994,0,0);-webkit-transform:matrix(0.197380,-0.001382,0.001750,0.249994,0,0);}
.m12_c01310{transform:matrix(0.197541,-0.002766,0.003500,0.249976,0,0);-ms-transform:matrix(0.197541,-0.002766,0.003500,0.249976,0,0);-webkit-transform:matrix(0.197541,-0.002766,0.003500,0.249976,0,0);}
.m128_c01310{transform:matrix(0.198205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198205,0.000000,0.000000,0.250000,0,0);}
.md1_c01310{transform:matrix(0.198353,-0.000992,0.001250,0.249997,0,0);-ms-transform:matrix(0.198353,-0.000992,0.001250,0.249997,0,0);-webkit-transform:matrix(0.198353,-0.000992,0.001250,0.249997,0,0);}
.m136_c01310{transform:matrix(0.201462,-0.001813,0.002250,0.249990,0,0);-ms-transform:matrix(0.201462,-0.001813,0.002250,0.249990,0,0);-webkit-transform:matrix(0.201462,-0.001813,0.002250,0.249990,0,0);}
.md7_c01310{transform:matrix(0.203242,-0.001016,0.001250,0.249997,0,0);-ms-transform:matrix(0.203242,-0.001016,0.001250,0.249997,0,0);-webkit-transform:matrix(0.203242,-0.001016,0.001250,0.249997,0,0);}
.m31_c01310{transform:matrix(0.203310,-0.001423,0.001750,0.249994,0,0);-ms-transform:matrix(0.203310,-0.001423,0.001750,0.249994,0,0);-webkit-transform:matrix(0.203310,-0.001423,0.001750,0.249994,0,0);}
.m11b_c01310{transform:matrix(0.204195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204195,0.000000,0.000000,0.250000,0,0);}
.m129_c01310{transform:matrix(0.204655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204655,0.000000,0.000000,0.250000,0,0);}
.m54_c01310{transform:matrix(0.207455,-0.001452,0.001750,0.249994,0,0);-ms-transform:matrix(0.207455,-0.001452,0.001750,0.249994,0,0);-webkit-transform:matrix(0.207455,-0.001452,0.001750,0.249994,0,0);}
.md9_c01310{transform:matrix(0.207987,-0.001040,0.001250,0.249997,0,0);-ms-transform:matrix(0.207987,-0.001040,0.001250,0.249997,0,0);-webkit-transform:matrix(0.207987,-0.001040,0.001250,0.249997,0,0);}
.md5_c01310{transform:matrix(0.208907,-0.001045,0.001250,0.249997,0,0);-ms-transform:matrix(0.208907,-0.001045,0.001250,0.249997,0,0);-webkit-transform:matrix(0.208907,-0.001045,0.001250,0.249997,0,0);}
.m126_c01310{transform:matrix(0.209065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209065,0.000000,0.000000,0.250000,0,0);}
.maf_c01310{transform:matrix(0.209117,-0.001046,0.001250,0.249997,0,0);-ms-transform:matrix(0.209117,-0.001046,0.001250,0.249997,0,0);-webkit-transform:matrix(0.209117,-0.001046,0.001250,0.249997,0,0);}
.m80_c01310{transform:matrix(0.209626,-0.001258,0.001500,0.249996,0,0);-ms-transform:matrix(0.209626,-0.001258,0.001500,0.249996,0,0);-webkit-transform:matrix(0.209626,-0.001258,0.001500,0.249996,0,0);}
.m27_c01310{transform:matrix(0.209879,-0.002938,0.003500,0.249976,0,0);-ms-transform:matrix(0.209879,-0.002938,0.003500,0.249976,0,0);-webkit-transform:matrix(0.209879,-0.002938,0.003500,0.249976,0,0);}
.m7c_c01310{transform:matrix(0.210381,-0.001262,0.001500,0.249996,0,0);-ms-transform:matrix(0.210381,-0.001262,0.001500,0.249996,0,0);-webkit-transform:matrix(0.210381,-0.001262,0.001500,0.249996,0,0);}
.m127_c01310{transform:matrix(0.210855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210855,0.000000,0.000000,0.250000,0,0);}
.m6a_c01310{transform:matrix(0.211695,-0.001482,0.001750,0.249994,0,0);-ms-transform:matrix(0.211695,-0.001482,0.001750,0.249994,0,0);-webkit-transform:matrix(0.211695,-0.001482,0.001750,0.249994,0,0);}
.mf5_c01310{transform:matrix(0.212395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212395,0.000000,0.000000,0.250000,0,0);}
.mc8_c01310{transform:matrix(0.212567,-0.001063,0.001250,0.249997,0,0);-ms-transform:matrix(0.212567,-0.001063,0.001250,0.249997,0,0);-webkit-transform:matrix(0.212567,-0.001063,0.001250,0.249997,0,0);}
.m10_c01310{transform:matrix(0.212789,-0.002979,0.003500,0.249976,0,0);-ms-transform:matrix(0.212789,-0.002979,0.003500,0.249976,0,0);-webkit-transform:matrix(0.212789,-0.002979,0.003500,0.249976,0,0);}
.m66_c01310{transform:matrix(0.212945,-0.001491,0.001750,0.249994,0,0);-ms-transform:matrix(0.212945,-0.001491,0.001750,0.249994,0,0);-webkit-transform:matrix(0.212945,-0.001491,0.001750,0.249994,0,0);}
.mc0_c01310{transform:matrix(0.213597,-0.001068,0.001250,0.249997,0,0);-ms-transform:matrix(0.213597,-0.001068,0.001250,0.249997,0,0);-webkit-transform:matrix(0.213597,-0.001068,0.001250,0.249997,0,0);}
.m6d_c01310{transform:matrix(0.214615,-0.001502,0.001750,0.249994,0,0);-ms-transform:matrix(0.214615,-0.001502,0.001750,0.249994,0,0);-webkit-transform:matrix(0.214615,-0.001502,0.001750,0.249994,0,0);}
.ma9_c01310{transform:matrix(0.215057,-0.001075,0.001250,0.249997,0,0);-ms-transform:matrix(0.215057,-0.001075,0.001250,0.249997,0,0);-webkit-transform:matrix(0.215057,-0.001075,0.001250,0.249997,0,0);}
.mc4_c01310{transform:matrix(0.215617,-0.001078,0.001250,0.249997,0,0);-ms-transform:matrix(0.215617,-0.001078,0.001250,0.249997,0,0);-webkit-transform:matrix(0.215617,-0.001078,0.001250,0.249997,0,0);}
.mf7_c01310{transform:matrix(0.216925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216925,0.000000,0.000000,0.250000,0,0);}
.mc1_c01310{transform:matrix(0.216992,-0.001085,0.001250,0.249997,0,0);-ms-transform:matrix(0.216992,-0.001085,0.001250,0.249997,0,0);-webkit-transform:matrix(0.216992,-0.001085,0.001250,0.249997,0,0);}
.md2_c01310{transform:matrix(0.217187,-0.001086,0.001250,0.249997,0,0);-ms-transform:matrix(0.217187,-0.001086,0.001250,0.249997,0,0);-webkit-transform:matrix(0.217187,-0.001086,0.001250,0.249997,0,0);}
.mcc_c01310{transform:matrix(0.217702,-0.001089,0.001250,0.249997,0,0);-ms-transform:matrix(0.217702,-0.001089,0.001250,0.249997,0,0);-webkit-transform:matrix(0.217702,-0.001089,0.001250,0.249997,0,0);}
.mfc_c01310{transform:matrix(0.217730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217730,0.000000,0.000000,0.250000,0,0);}
.me9_c01310{transform:matrix(0.217780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217780,0.000000,0.000000,0.250000,0,0);}
.mb_c01310{transform:matrix(0.218072,-0.002835,0.003250,0.249979,0,0);-ms-transform:matrix(0.218072,-0.002835,0.003250,0.249979,0,0);-webkit-transform:matrix(0.218072,-0.002835,0.003250,0.249979,0,0);}
.m56_c01310{transform:matrix(0.218620,-0.001530,0.001750,0.249994,0,0);-ms-transform:matrix(0.218620,-0.001530,0.001750,0.249994,0,0);-webkit-transform:matrix(0.218620,-0.001530,0.001750,0.249994,0,0);}
.m32_c01310{transform:matrix(0.218935,-0.001533,0.001750,0.249994,0,0);-ms-transform:matrix(0.218935,-0.001533,0.001750,0.249994,0,0);-webkit-transform:matrix(0.218935,-0.001533,0.001750,0.249994,0,0);}
.mca_c01310{transform:matrix(0.218937,-0.001095,0.001250,0.249997,0,0);-ms-transform:matrix(0.218937,-0.001095,0.001250,0.249997,0,0);-webkit-transform:matrix(0.218937,-0.001095,0.001250,0.249997,0,0);}
.mc5_c01310{transform:matrix(0.219262,-0.001096,0.001250,0.249997,0,0);-ms-transform:matrix(0.219262,-0.001096,0.001250,0.249997,0,0);-webkit-transform:matrix(0.219262,-0.001096,0.001250,0.249997,0,0);}
.m12e_c01310{transform:matrix(0.219315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219315,0.000000,0.000000,0.250000,0,0);}
.m36_c01310{transform:matrix(0.220025,-0.001540,0.001750,0.249994,0,0);-ms-transform:matrix(0.220025,-0.001540,0.001750,0.249994,0,0);-webkit-transform:matrix(0.220025,-0.001540,0.001750,0.249994,0,0);}
.m11f_c01310{transform:matrix(0.220295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220295,0.000000,0.000000,0.250000,0,0);}
.m51_c01310{transform:matrix(0.220435,-0.001543,0.001750,0.249994,0,0);-ms-transform:matrix(0.220435,-0.001543,0.001750,0.249994,0,0);-webkit-transform:matrix(0.220435,-0.001543,0.001750,0.249994,0,0);}
.m122_c01310{transform:matrix(0.220570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220570,0.000000,0.000000,0.250000,0,0);}
.md6_c01310{transform:matrix(0.221422,-0.001107,0.001250,0.249997,0,0);-ms-transform:matrix(0.221422,-0.001107,0.001250,0.249997,0,0);-webkit-transform:matrix(0.221422,-0.001107,0.001250,0.249997,0,0);}
.mdc_c01310{transform:matrix(0.221451,-0.002879,0.003250,0.249979,0,0);-ms-transform:matrix(0.221451,-0.002879,0.003250,0.249979,0,0);-webkit-transform:matrix(0.221451,-0.002879,0.003250,0.249979,0,0);}
.med_c01310{transform:matrix(0.221600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221600,0.000000,0.000000,0.250000,0,0);}
.m11e_c01310{transform:matrix(0.222135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222135,0.000000,0.000000,0.250000,0,0);}
.m131_c01310{transform:matrix(0.222215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222215,0.000000,0.000000,0.250000,0,0);}
.mc3_c01310{transform:matrix(0.222237,-0.001111,0.001250,0.249997,0,0);-ms-transform:matrix(0.222237,-0.001111,0.001250,0.249997,0,0);-webkit-transform:matrix(0.222237,-0.001111,0.001250,0.249997,0,0);}
.mc9_c01310{transform:matrix(0.223377,-0.001117,0.001250,0.249997,0,0);-ms-transform:matrix(0.223377,-0.001117,0.001250,0.249997,0,0);-webkit-transform:matrix(0.223377,-0.001117,0.001250,0.249997,0,0);}
.mee_c01310{transform:matrix(0.223405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223405,0.000000,0.000000,0.250000,0,0);}
.m6f_c01310{transform:matrix(0.224125,-0.001569,0.001750,0.249994,0,0);-ms-transform:matrix(0.224125,-0.001569,0.001750,0.249994,0,0);-webkit-transform:matrix(0.224125,-0.001569,0.001750,0.249994,0,0);}
.md8_c01310{transform:matrix(0.224217,-0.001121,0.001250,0.249997,0,0);-ms-transform:matrix(0.224217,-0.001121,0.001250,0.249997,0,0);-webkit-transform:matrix(0.224217,-0.001121,0.001250,0.249997,0,0);}
.m5_c01310{transform:matrix(0.224731,-0.002922,0.003250,0.249979,0,0);-ms-transform:matrix(0.224731,-0.002922,0.003250,0.249979,0,0);-webkit-transform:matrix(0.224731,-0.002922,0.003250,0.249979,0,0);}
.m13f_c01310{transform:matrix(0.224736,-0.002023,0.002250,0.249990,0,0);-ms-transform:matrix(0.224736,-0.002023,0.002250,0.249990,0,0);-webkit-transform:matrix(0.224736,-0.002023,0.002250,0.249990,0,0);}
.mcf_c01310{transform:matrix(0.225907,-0.001130,0.001250,0.249997,0,0);-ms-transform:matrix(0.225907,-0.001130,0.001250,0.249997,0,0);-webkit-transform:matrix(0.225907,-0.001130,0.001250,0.249997,0,0);}
.m7_c01310{transform:matrix(0.226046,-0.002939,0.003250,0.249979,0,0);-ms-transform:matrix(0.226046,-0.002939,0.003250,0.249979,0,0);-webkit-transform:matrix(0.226046,-0.002939,0.003250,0.249979,0,0);}
.md0_c01310{transform:matrix(0.226512,-0.001133,0.001250,0.249997,0,0);-ms-transform:matrix(0.226512,-0.001133,0.001250,0.249997,0,0);-webkit-transform:matrix(0.226512,-0.001133,0.001250,0.249997,0,0);}
.m2f_c01310{transform:matrix(0.226769,-0.001587,0.001750,0.249994,0,0);-ms-transform:matrix(0.226769,-0.001587,0.001750,0.249994,0,0);-webkit-transform:matrix(0.226769,-0.001587,0.001750,0.249994,0,0);}
.m0_c01310{transform:matrix(0.226780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226780,0.000000,0.000000,0.250000,0,0);}
.m38_c01310{transform:matrix(0.227544,-0.001593,0.001750,0.249994,0,0);-ms-transform:matrix(0.227544,-0.001593,0.001750,0.249994,0,0);-webkit-transform:matrix(0.227544,-0.001593,0.001750,0.249994,0,0);}
.m17_c01310{transform:matrix(0.227618,-0.003187,0.003500,0.249976,0,0);-ms-transform:matrix(0.227618,-0.003187,0.003500,0.249976,0,0);-webkit-transform:matrix(0.227618,-0.003187,0.003500,0.249976,0,0);}
.m41_c01310{transform:matrix(0.228164,-0.001597,0.001750,0.249994,0,0);-ms-transform:matrix(0.228164,-0.001597,0.001750,0.249994,0,0);-webkit-transform:matrix(0.228164,-0.001597,0.001750,0.249994,0,0);}
.m108_c01310{transform:matrix(0.228170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228170,0.000000,0.000000,0.250000,0,0);}
.m21_c01310{transform:matrix(0.229503,-0.003213,0.003500,0.249976,0,0);-ms-transform:matrix(0.229503,-0.003213,0.003500,0.249976,0,0);-webkit-transform:matrix(0.229503,-0.003213,0.003500,0.249976,0,0);}
.mec_c01310{transform:matrix(0.230915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230915,0.000000,0.000000,0.250000,0,0);}
.m2c_c01310{transform:matrix(0.231077,-0.003235,0.003500,0.249976,0,0);-ms-transform:matrix(0.231077,-0.003235,0.003500,0.249976,0,0);-webkit-transform:matrix(0.231077,-0.003235,0.003500,0.249976,0,0);}
.m53_c01310{transform:matrix(0.231194,-0.001618,0.001750,0.249994,0,0);-ms-transform:matrix(0.231194,-0.001618,0.001750,0.249994,0,0);-webkit-transform:matrix(0.231194,-0.001618,0.001750,0.249994,0,0);}
.m3a_c01310{transform:matrix(0.231619,-0.001621,0.001750,0.249994,0,0);-ms-transform:matrix(0.231619,-0.001621,0.001750,0.249994,0,0);-webkit-transform:matrix(0.231619,-0.001621,0.001750,0.249994,0,0);}
.m34_c01310{transform:matrix(0.232054,-0.001624,0.001750,0.249994,0,0);-ms-transform:matrix(0.232054,-0.001624,0.001750,0.249994,0,0);-webkit-transform:matrix(0.232054,-0.001624,0.001750,0.249994,0,0);}
.m48_c01310{transform:matrix(0.232399,-0.001627,0.001750,0.249994,0,0);-ms-transform:matrix(0.232399,-0.001627,0.001750,0.249994,0,0);-webkit-transform:matrix(0.232399,-0.001627,0.001750,0.249994,0,0);}
.m84_c01310{transform:matrix(0.232401,-0.001394,0.001500,0.249996,0,0);-ms-transform:matrix(0.232401,-0.001394,0.001500,0.249996,0,0);-webkit-transform:matrix(0.232401,-0.001394,0.001500,0.249996,0,0);}
.m10a_c01310{transform:matrix(0.232455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232455,0.000000,0.000000,0.250000,0,0);}
.m4b_c01310{transform:matrix(0.232589,-0.001628,0.001750,0.249994,0,0);-ms-transform:matrix(0.232589,-0.001628,0.001750,0.249994,0,0);-webkit-transform:matrix(0.232589,-0.001628,0.001750,0.249994,0,0);}
.m10f_c01310{transform:matrix(0.232595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232595,0.000000,0.000000,0.250000,0,0);}
.ma_c01310{transform:matrix(0.232640,-0.003024,0.003250,0.249979,0,0);-ms-transform:matrix(0.232640,-0.003024,0.003250,0.249979,0,0);-webkit-transform:matrix(0.232640,-0.003024,0.003250,0.249979,0,0);}
.ma2_c01310{transform:matrix(0.232982,-0.001165,0.001250,0.249997,0,0);-ms-transform:matrix(0.232982,-0.001165,0.001250,0.249997,0,0);-webkit-transform:matrix(0.232982,-0.001165,0.001250,0.249997,0,0);}
.m12b_c01310{transform:matrix(0.233225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233225,0.000000,0.000000,0.250000,0,0);}
.me2_c01310{transform:matrix(0.233230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233230,0.000000,0.000000,0.250000,0,0);}
.m22_c01310{transform:matrix(0.233382,-0.003267,0.003500,0.249976,0,0);-ms-transform:matrix(0.233382,-0.003267,0.003500,0.249976,0,0);-webkit-transform:matrix(0.233382,-0.003267,0.003500,0.249976,0,0);}
.m24_c01310{transform:matrix(0.233712,-0.003272,0.003500,0.249976,0,0);-ms-transform:matrix(0.233712,-0.003272,0.003500,0.249976,0,0);-webkit-transform:matrix(0.233712,-0.003272,0.003500,0.249976,0,0);}
.m3d_c01310{transform:matrix(0.233729,-0.001636,0.001750,0.249994,0,0);-ms-transform:matrix(0.233729,-0.001636,0.001750,0.249994,0,0);-webkit-transform:matrix(0.233729,-0.001636,0.001750,0.249994,0,0);}
.m7a_c01310{transform:matrix(0.233731,-0.001402,0.001500,0.249996,0,0);-ms-transform:matrix(0.233731,-0.001402,0.001500,0.249996,0,0);-webkit-transform:matrix(0.233731,-0.001402,0.001500,0.249996,0,0);}
.m104_c01310{transform:matrix(0.233735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233735,0.000000,0.000000,0.250000,0,0);}
.mef_c01310{transform:matrix(0.234320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234320,0.000000,0.000000,0.250000,0,0);}
.m78_c01310{transform:matrix(0.234531,-0.001407,0.001500,0.249996,0,0);-ms-transform:matrix(0.234531,-0.001407,0.001500,0.249996,0,0);-webkit-transform:matrix(0.234531,-0.001407,0.001500,0.249996,0,0);}
.m113_c01310{transform:matrix(0.234535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234535,0.000000,0.000000,0.250000,0,0);}
.m68_c01310{transform:matrix(0.234659,-0.001643,0.001750,0.249994,0,0);-ms-transform:matrix(0.234659,-0.001643,0.001750,0.249994,0,0);-webkit-transform:matrix(0.234659,-0.001643,0.001750,0.249994,0,0);}
.mda_c01310{transform:matrix(0.235212,-0.001176,0.001250,0.249997,0,0);-ms-transform:matrix(0.235212,-0.001176,0.001250,0.249997,0,0);-webkit-transform:matrix(0.235212,-0.001176,0.001250,0.249997,0,0);}
.md4_c01310{transform:matrix(0.236157,-0.001181,0.001250,0.249997,0,0);-ms-transform:matrix(0.236157,-0.001181,0.001250,0.249997,0,0);-webkit-transform:matrix(0.236157,-0.001181,0.001250,0.249997,0,0);}
.m4_c01310{transform:matrix(0.236595,-0.003076,0.003250,0.249979,0,0);-ms-transform:matrix(0.236595,-0.003076,0.003250,0.249979,0,0);-webkit-transform:matrix(0.236595,-0.003076,0.003250,0.249979,0,0);}
.m76_c01310{transform:matrix(0.236666,-0.001420,0.001500,0.249996,0,0);-ms-transform:matrix(0.236666,-0.001420,0.001500,0.249996,0,0);-webkit-transform:matrix(0.236666,-0.001420,0.001500,0.249996,0,0);}
.m61_c01310{transform:matrix(0.237589,-0.001663,0.001750,0.249994,0,0);-ms-transform:matrix(0.237589,-0.001663,0.001750,0.249994,0,0);-webkit-transform:matrix(0.237589,-0.001663,0.001750,0.249994,0,0);}
.md3_c01310{transform:matrix(0.237597,-0.001188,0.001250,0.249997,0,0);-ms-transform:matrix(0.237597,-0.001188,0.001250,0.249997,0,0);-webkit-transform:matrix(0.237597,-0.001188,0.001250,0.249997,0,0);}
.m6b_c01310{transform:matrix(0.237729,-0.001664,0.001750,0.249994,0,0);-ms-transform:matrix(0.237729,-0.001664,0.001750,0.249994,0,0);-webkit-transform:matrix(0.237729,-0.001664,0.001750,0.249994,0,0);}
.m11c_c01310{transform:matrix(0.237830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237830,0.000000,0.000000,0.250000,0,0);}
.m4a_c01310{transform:matrix(0.238349,-0.001668,0.001750,0.249994,0,0);-ms-transform:matrix(0.238349,-0.001668,0.001750,0.249994,0,0);-webkit-transform:matrix(0.238349,-0.001668,0.001750,0.249994,0,0);}
.ma6_c01310{transform:matrix(0.238567,-0.001193,0.001250,0.249997,0,0);-ms-transform:matrix(0.238567,-0.001193,0.001250,0.249997,0,0);-webkit-transform:matrix(0.238567,-0.001193,0.001250,0.249997,0,0);}
.m103_c01310{transform:matrix(0.238665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238665,0.000000,0.000000,0.250000,0,0);}
.m15_c01310{transform:matrix(0.238922,-0.003345,0.003500,0.249976,0,0);-ms-transform:matrix(0.238922,-0.003345,0.003500,0.249976,0,0);-webkit-transform:matrix(0.238922,-0.003345,0.003500,0.249976,0,0);}
.m87_c01310{transform:matrix(0.239291,-0.001436,0.001500,0.249996,0,0);-ms-transform:matrix(0.239291,-0.001436,0.001500,0.249996,0,0);-webkit-transform:matrix(0.239291,-0.001436,0.001500,0.249996,0,0);}
.m14_c01310{transform:matrix(0.239467,-0.003353,0.003500,0.249976,0,0);-ms-transform:matrix(0.239467,-0.003353,0.003500,0.249976,0,0);-webkit-transform:matrix(0.239467,-0.003353,0.003500,0.249976,0,0);}
.m4f_c01310{transform:matrix(0.239534,-0.001677,0.001750,0.249994,0,0);-ms-transform:matrix(0.239534,-0.001677,0.001750,0.249994,0,0);-webkit-transform:matrix(0.239534,-0.001677,0.001750,0.249994,0,0);}
.m114_c01310{transform:matrix(0.239545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239545,0.000000,0.000000,0.250000,0,0);}
.m10d_c01310{transform:matrix(0.240105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240105,0.000000,0.000000,0.250000,0,0);}
.mea_c01310{transform:matrix(0.240110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240110,0.000000,0.000000,0.250000,0,0);}
.mdb_c01310{transform:matrix(0.240135,-0.003122,0.003250,0.249979,0,0);-ms-transform:matrix(0.240135,-0.003122,0.003250,0.249979,0,0);-webkit-transform:matrix(0.240135,-0.003122,0.003250,0.249979,0,0);}
.m43_c01310{transform:matrix(0.240149,-0.001681,0.001750,0.249994,0,0);-ms-transform:matrix(0.240149,-0.001681,0.001750,0.249994,0,0);-webkit-transform:matrix(0.240149,-0.001681,0.001750,0.249994,0,0);}
.m70_c01310{transform:matrix(0.240989,-0.001687,0.001750,0.249994,0,0);-ms-transform:matrix(0.240989,-0.001687,0.001750,0.249994,0,0);-webkit-transform:matrix(0.240989,-0.001687,0.001750,0.249994,0,0);}
.mff_c01310{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.m77_c01310{transform:matrix(0.241311,-0.001448,0.001500,0.249996,0,0);-ms-transform:matrix(0.241311,-0.001448,0.001500,0.249996,0,0);-webkit-transform:matrix(0.241311,-0.001448,0.001500,0.249996,0,0);}
.m8e_c01310{transform:matrix(0.241409,-0.001690,0.001750,0.249994,0,0);-ms-transform:matrix(0.241409,-0.001690,0.001750,0.249994,0,0);-webkit-transform:matrix(0.241409,-0.001690,0.001750,0.249994,0,0);}
.m11_c01310{transform:matrix(0.241556,-0.003382,0.003500,0.249976,0,0);-ms-transform:matrix(0.241556,-0.003382,0.003500,0.249976,0,0);-webkit-transform:matrix(0.241556,-0.003382,0.003500,0.249976,0,0);}
.m116_c01310{transform:matrix(0.241570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241570,0.000000,0.000000,0.250000,0,0);}
.me_c01310{transform:matrix(0.241760,-0.003143,0.003250,0.249979,0,0);-ms-transform:matrix(0.241760,-0.003143,0.003250,0.249979,0,0);-webkit-transform:matrix(0.241760,-0.003143,0.003250,0.249979,0,0);}
.m59_c01310{transform:matrix(0.241769,-0.001692,0.001750,0.249994,0,0);-ms-transform:matrix(0.241769,-0.001692,0.001750,0.249994,0,0);-webkit-transform:matrix(0.241769,-0.001692,0.001750,0.249994,0,0);}
.mb5_c01310{transform:matrix(0.241992,-0.001210,0.001250,0.249997,0,0);-ms-transform:matrix(0.241992,-0.001210,0.001250,0.249997,0,0);-webkit-transform:matrix(0.241992,-0.001210,0.001250,0.249997,0,0);}
.m35_c01310{transform:matrix(0.242074,-0.001695,0.001750,0.249994,0,0);-ms-transform:matrix(0.242074,-0.001695,0.001750,0.249994,0,0);-webkit-transform:matrix(0.242074,-0.001695,0.001750,0.249994,0,0);}
.mab_c01310{transform:matrix(0.242472,-0.001212,0.001250,0.249997,0,0);-ms-transform:matrix(0.242472,-0.001212,0.001250,0.249997,0,0);-webkit-transform:matrix(0.242472,-0.001212,0.001250,0.249997,0,0);}
.m2a_c01310{transform:matrix(0.242631,-0.003397,0.003500,0.249976,0,0);-ms-transform:matrix(0.242631,-0.003397,0.003500,0.249976,0,0);-webkit-transform:matrix(0.242631,-0.003397,0.003500,0.249976,0,0);}
.m49_c01310{transform:matrix(0.242749,-0.001699,0.001750,0.249994,0,0);-ms-transform:matrix(0.242749,-0.001699,0.001750,0.249994,0,0);-webkit-transform:matrix(0.242749,-0.001699,0.001750,0.249994,0,0);}
.m6e_c01310{transform:matrix(0.243389,-0.001704,0.001750,0.249994,0,0);-ms-transform:matrix(0.243389,-0.001704,0.001750,0.249994,0,0);-webkit-transform:matrix(0.243389,-0.001704,0.001750,0.249994,0,0);}
.mf2_c01310{transform:matrix(0.243505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243505,0.000000,0.000000,0.250000,0,0);}
.m67_c01310{transform:matrix(0.243544,-0.001705,0.001750,0.249994,0,0);-ms-transform:matrix(0.243544,-0.001705,0.001750,0.249994,0,0);-webkit-transform:matrix(0.243544,-0.001705,0.001750,0.249994,0,0);}
.meb_c01310{transform:matrix(0.243740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243740,0.000000,0.000000,0.250000,0,0);}
.m71_c01310{transform:matrix(0.244006,-0.001464,0.001500,0.249996,0,0);-ms-transform:matrix(0.244006,-0.001464,0.001500,0.249996,0,0);-webkit-transform:matrix(0.244006,-0.001464,0.001500,0.249996,0,0);}
.m8b_c01310{transform:matrix(0.244464,-0.001711,0.001750,0.249994,0,0);-ms-transform:matrix(0.244464,-0.001711,0.001750,0.249994,0,0);-webkit-transform:matrix(0.244464,-0.001711,0.001750,0.249994,0,0);}
.ma0_c01310{transform:matrix(0.244867,-0.001224,0.001250,0.249997,0,0);-ms-transform:matrix(0.244867,-0.001224,0.001250,0.249997,0,0);-webkit-transform:matrix(0.244867,-0.001224,0.001250,0.249997,0,0);}
.mcd_c01310{transform:matrix(0.245232,-0.001226,0.001250,0.249997,0,0);-ms-transform:matrix(0.245232,-0.001226,0.001250,0.249997,0,0);-webkit-transform:matrix(0.245232,-0.001226,0.001250,0.249997,0,0);}
.m45_c01310{transform:matrix(0.245384,-0.001718,0.001750,0.249994,0,0);-ms-transform:matrix(0.245384,-0.001718,0.001750,0.249994,0,0);-webkit-transform:matrix(0.245384,-0.001718,0.001750,0.249994,0,0);}
.m110_c01310{transform:matrix(0.245675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245675,0.000000,0.000000,0.250000,0,0);}
.m5f_c01310{transform:matrix(0.245719,-0.001720,0.001750,0.249994,0,0);-ms-transform:matrix(0.245719,-0.001720,0.001750,0.249994,0,0);-webkit-transform:matrix(0.245719,-0.001720,0.001750,0.249994,0,0);}
.mcb_c01310{transform:matrix(0.245767,-0.001229,0.001250,0.249997,0,0);-ms-transform:matrix(0.245767,-0.001229,0.001250,0.249997,0,0);-webkit-transform:matrix(0.245767,-0.001229,0.001250,0.249997,0,0);}
.m16_c01310{transform:matrix(0.245796,-0.003441,0.003500,0.249976,0,0);-ms-transform:matrix(0.245796,-0.003441,0.003500,0.249976,0,0);-webkit-transform:matrix(0.245796,-0.003441,0.003500,0.249976,0,0);}
.m25_c01310{transform:matrix(0.246181,-0.003447,0.003500,0.249976,0,0);-ms-transform:matrix(0.246181,-0.003447,0.003500,0.249976,0,0);-webkit-transform:matrix(0.246181,-0.003447,0.003500,0.249976,0,0);}
.me3_c01310{transform:matrix(0.246205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246205,0.000000,0.000000,0.250000,0,0);}
.m30_c01310{transform:matrix(0.246329,-0.001724,0.001750,0.249994,0,0);-ms-transform:matrix(0.246329,-0.001724,0.001750,0.249994,0,0);-webkit-transform:matrix(0.246329,-0.001724,0.001750,0.249994,0,0);}
.mc_c01310{transform:matrix(0.246519,-0.003205,0.003250,0.249979,0,0);-ms-transform:matrix(0.246519,-0.003205,0.003250,0.249979,0,0);-webkit-transform:matrix(0.246519,-0.003205,0.003250,0.249979,0,0);}
.me5_c01310{transform:matrix(0.246660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246660,0.000000,0.000000,0.250000,0,0);}
.m119_c01310{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m3b_c01310{transform:matrix(0.247929,-0.001736,0.001750,0.249994,0,0);-ms-transform:matrix(0.247929,-0.001736,0.001750,0.249994,0,0);-webkit-transform:matrix(0.247929,-0.001736,0.001750,0.249994,0,0);}
.m3f_c01310{transform:matrix(0.248439,-0.001739,0.001750,0.249994,0,0);-ms-transform:matrix(0.248439,-0.001739,0.001750,0.249994,0,0);-webkit-transform:matrix(0.248439,-0.001739,0.001750,0.249994,0,0);}
.mad_c01310{transform:matrix(0.249107,-0.001246,0.001250,0.249997,0,0);-ms-transform:matrix(0.249107,-0.001246,0.001250,0.249997,0,0);-webkit-transform:matrix(0.249107,-0.001246,0.001250,0.249997,0,0);}
.m75_c01310{transform:matrix(0.249306,-0.001496,0.001500,0.249996,0,0);-ms-transform:matrix(0.249306,-0.001496,0.001500,0.249996,0,0);-webkit-transform:matrix(0.249306,-0.001496,0.001500,0.249996,0,0);}
.me6_c01310{transform:matrix(0.249580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249580,0.000000,0.000000,0.250000,0,0);}
.m5d_c01310{transform:matrix(0.249644,-0.001748,0.001750,0.249994,0,0);-ms-transform:matrix(0.249644,-0.001748,0.001750,0.249994,0,0);-webkit-transform:matrix(0.249644,-0.001748,0.001750,0.249994,0,0);}
.m57_c01310{transform:matrix(0.249694,-0.001748,0.001750,0.249994,0,0);-ms-transform:matrix(0.249694,-0.001748,0.001750,0.249994,0,0);-webkit-transform:matrix(0.249694,-0.001748,0.001750,0.249994,0,0);}
.mb4_c01310{transform:matrix(0.250152,-0.001251,0.001250,0.249997,0,0);-ms-transform:matrix(0.250152,-0.001251,0.001250,0.249997,0,0);-webkit-transform:matrix(0.250152,-0.001251,0.001250,0.249997,0,0);}
.m12d_c01310{transform:matrix(0.250920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250920,0.000000,0.000000,0.250000,0,0);}
.mc6_c01310{transform:matrix(0.251182,-0.001256,0.001250,0.249997,0,0);-ms-transform:matrix(0.251182,-0.001256,0.001250,0.249997,0,0);-webkit-transform:matrix(0.251182,-0.001256,0.001250,0.249997,0,0);}
.mb1_c01310{transform:matrix(0.251397,-0.001257,0.001250,0.249997,0,0);-ms-transform:matrix(0.251397,-0.001257,0.001250,0.249997,0,0);-webkit-transform:matrix(0.251397,-0.001257,0.001250,0.249997,0,0);}
.m82_c01310{transform:matrix(0.252110,-0.001513,0.001500,0.249996,0,0);-ms-transform:matrix(0.252110,-0.001513,0.001500,0.249996,0,0);-webkit-transform:matrix(0.252110,-0.001513,0.001500,0.249996,0,0);}
.mf0_c01310{transform:matrix(0.252410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252410,0.000000,0.000000,0.250000,0,0);}
.mc2_c01310{transform:matrix(0.252412,-0.001262,0.001250,0.249997,0,0);-ms-transform:matrix(0.252412,-0.001262,0.001250,0.249997,0,0);-webkit-transform:matrix(0.252412,-0.001262,0.001250,0.249997,0,0);}
.m7e_c01310{transform:matrix(0.252480,-0.001515,0.001500,0.249996,0,0);-ms-transform:matrix(0.252480,-0.001515,0.001500,0.249996,0,0);-webkit-transform:matrix(0.252480,-0.001515,0.001500,0.249996,0,0);}
.me8_c01310{transform:matrix(0.253360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253360,0.000000,0.000000,0.250000,0,0);}
.m79_c01310{transform:matrix(0.253720,-0.001522,0.001500,0.249996,0,0);-ms-transform:matrix(0.253720,-0.001522,0.001500,0.249996,0,0);-webkit-transform:matrix(0.253720,-0.001522,0.001500,0.249996,0,0);}
.m112_c01310{transform:matrix(0.253785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253785,0.000000,0.000000,0.250000,0,0);}
.me1_c01310{transform:matrix(0.253845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253845,0.000000,0.000000,0.250000,0,0);}
.m64_c01310{transform:matrix(0.253869,-0.001777,0.001750,0.249994,0,0);-ms-transform:matrix(0.253869,-0.001777,0.001750,0.249994,0,0);-webkit-transform:matrix(0.253869,-0.001777,0.001750,0.249994,0,0);}
.m50_c01310{transform:matrix(0.254324,-0.001780,0.001750,0.249994,0,0);-ms-transform:matrix(0.254324,-0.001780,0.001750,0.249994,0,0);-webkit-transform:matrix(0.254324,-0.001780,0.001750,0.249994,0,0);}
.m52_c01310{transform:matrix(0.254749,-0.001783,0.001750,0.249994,0,0);-ms-transform:matrix(0.254749,-0.001783,0.001750,0.249994,0,0);-webkit-transform:matrix(0.254749,-0.001783,0.001750,0.249994,0,0);}
.m12f_c01310{transform:matrix(0.254965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254965,0.000000,0.000000,0.250000,0,0);}
.ma8_c01310{transform:matrix(0.255202,-0.001276,0.001250,0.249997,0,0);-ms-transform:matrix(0.255202,-0.001276,0.001250,0.249997,0,0);-webkit-transform:matrix(0.255202,-0.001276,0.001250,0.249997,0,0);}
.m63_c01310{transform:matrix(0.255204,-0.001786,0.001750,0.249994,0,0);-ms-transform:matrix(0.255204,-0.001786,0.001750,0.249994,0,0);-webkit-transform:matrix(0.255204,-0.001786,0.001750,0.249994,0,0);}
.m73_c01310{transform:matrix(0.255575,-0.001533,0.001500,0.249996,0,0);-ms-transform:matrix(0.255575,-0.001533,0.001500,0.249996,0,0);-webkit-transform:matrix(0.255575,-0.001533,0.001500,0.249996,0,0);}
.m85_c01310{transform:matrix(0.255770,-0.001535,0.001500,0.249996,0,0);-ms-transform:matrix(0.255770,-0.001535,0.001500,0.249996,0,0);-webkit-transform:matrix(0.255770,-0.001535,0.001500,0.249996,0,0);}
.mf_c01310{transform:matrix(0.256618,-0.003336,0.003250,0.249979,0,0);-ms-transform:matrix(0.256618,-0.003336,0.003250,0.249979,0,0);-webkit-transform:matrix(0.256618,-0.003336,0.003250,0.249979,0,0);}
.m37_c01310{transform:matrix(0.257259,-0.001801,0.001750,0.249994,0,0);-ms-transform:matrix(0.257259,-0.001801,0.001750,0.249994,0,0);-webkit-transform:matrix(0.257259,-0.001801,0.001750,0.249994,0,0);}
.m111_c01310{transform:matrix(0.258350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258350,0.000000,0.000000,0.250000,0,0);}
.m86_c01310{transform:matrix(0.258785,-0.001553,0.001500,0.249996,0,0);-ms-transform:matrix(0.258785,-0.001553,0.001500,0.249996,0,0);-webkit-transform:matrix(0.258785,-0.001553,0.001500,0.249996,0,0);}
.m33_c01310{transform:matrix(0.259269,-0.001815,0.001750,0.249994,0,0);-ms-transform:matrix(0.259269,-0.001815,0.001750,0.249994,0,0);-webkit-transform:matrix(0.259269,-0.001815,0.001750,0.249994,0,0);}
.m58_c01310{transform:matrix(0.259834,-0.001819,0.001750,0.249994,0,0);-ms-transform:matrix(0.259834,-0.001819,0.001750,0.249994,0,0);-webkit-transform:matrix(0.259834,-0.001819,0.001750,0.249994,0,0);}
.m4c_c01310{transform:matrix(0.260019,-0.001820,0.001750,0.249994,0,0);-ms-transform:matrix(0.260019,-0.001820,0.001750,0.249994,0,0);-webkit-transform:matrix(0.260019,-0.001820,0.001750,0.249994,0,0);}
.m8f_c01310{transform:matrix(0.260344,-0.001822,0.001750,0.249994,0,0);-ms-transform:matrix(0.260344,-0.001822,0.001750,0.249994,0,0);-webkit-transform:matrix(0.260344,-0.001822,0.001750,0.249994,0,0);}
.m5c_c01310{transform:matrix(0.260479,-0.001823,0.001750,0.249994,0,0);-ms-transform:matrix(0.260479,-0.001823,0.001750,0.249994,0,0);-webkit-transform:matrix(0.260479,-0.001823,0.001750,0.249994,0,0);}
.me4_c01310{transform:matrix(0.260870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260870,0.000000,0.000000,0.250000,0,0);}
.mc7_c01310{transform:matrix(0.260937,-0.001305,0.001250,0.249997,0,0);-ms-transform:matrix(0.260937,-0.001305,0.001250,0.249997,0,0);-webkit-transform:matrix(0.260937,-0.001305,0.001250,0.249997,0,0);}
.m39_c01310{transform:matrix(0.261294,-0.001829,0.001750,0.249994,0,0);-ms-transform:matrix(0.261294,-0.001829,0.001750,0.249994,0,0);-webkit-transform:matrix(0.261294,-0.001829,0.001750,0.249994,0,0);}
.m132_c01310{transform:matrix(0.261320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261320,0.000000,0.000000,0.250000,0,0);}
.mf9_c01310{transform:matrix(0.261335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261335,0.000000,0.000000,0.250000,0,0);}
.mf1_c01310{transform:matrix(0.262120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262120,0.000000,0.000000,0.250000,0,0);}
.m6_c01310{transform:matrix(0.262288,-0.003410,0.003250,0.249979,0,0);-ms-transform:matrix(0.262288,-0.003410,0.003250,0.249979,0,0);-webkit-transform:matrix(0.262288,-0.003410,0.003250,0.249979,0,0);}
.m8d_c01310{transform:matrix(0.262494,-0.001837,0.001750,0.249994,0,0);-ms-transform:matrix(0.262494,-0.001837,0.001750,0.249994,0,0);-webkit-transform:matrix(0.262494,-0.001837,0.001750,0.249994,0,0);}
.m5e_c01310{transform:matrix(0.262659,-0.001839,0.001750,0.249994,0,0);-ms-transform:matrix(0.262659,-0.001839,0.001750,0.249994,0,0);-webkit-transform:matrix(0.262659,-0.001839,0.001750,0.249994,0,0);}
.m10c_c01310{transform:matrix(0.262765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262765,0.000000,0.000000,0.250000,0,0);}
.m100_c01310{transform:matrix(0.263795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263795,0.000000,0.000000,0.250000,0,0);}
.mf3_c01310{transform:matrix(0.263810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263810,0.000000,0.000000,0.250000,0,0);}
.m3e_c01310{transform:matrix(0.263874,-0.001847,0.001750,0.249994,0,0);-ms-transform:matrix(0.263874,-0.001847,0.001750,0.249994,0,0);-webkit-transform:matrix(0.263874,-0.001847,0.001750,0.249994,0,0);}
.md_c01310{transform:matrix(0.264343,-0.003436,0.003250,0.249979,0,0);-ms-transform:matrix(0.264343,-0.003436,0.003250,0.249979,0,0);-webkit-transform:matrix(0.264343,-0.003436,0.003250,0.249979,0,0);}
.m4d_c01310{transform:matrix(0.264359,-0.001851,0.001750,0.249994,0,0);-ms-transform:matrix(0.264359,-0.001851,0.001750,0.249994,0,0);-webkit-transform:matrix(0.264359,-0.001851,0.001750,0.249994,0,0);}
.ma1_c01310{transform:matrix(0.264362,-0.001322,0.001250,0.249997,0,0);-ms-transform:matrix(0.264362,-0.001322,0.001250,0.249997,0,0);-webkit-transform:matrix(0.264362,-0.001322,0.001250,0.249997,0,0);}
.m101_c01310{transform:matrix(0.264675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264675,0.000000,0.000000,0.250000,0,0);}
.ma7_c01310{transform:matrix(0.264972,-0.001325,0.001250,0.249997,0,0);-ms-transform:matrix(0.264972,-0.001325,0.001250,0.249997,0,0);-webkit-transform:matrix(0.264972,-0.001325,0.001250,0.249997,0,0);}
.m8c_c01310{transform:matrix(0.264974,-0.001855,0.001750,0.249994,0,0);-ms-transform:matrix(0.264974,-0.001855,0.001750,0.249994,0,0);-webkit-transform:matrix(0.264974,-0.001855,0.001750,0.249994,0,0);}
.m9_c01310{transform:matrix(0.265033,-0.003445,0.003250,0.249979,0,0);-ms-transform:matrix(0.265033,-0.003445,0.003250,0.249979,0,0);-webkit-transform:matrix(0.265033,-0.003445,0.003250,0.249979,0,0);}
.m90_c01310{transform:matrix(0.265269,-0.001857,0.001750,0.249994,0,0);-ms-transform:matrix(0.265269,-0.001857,0.001750,0.249994,0,0);-webkit-transform:matrix(0.265269,-0.001857,0.001750,0.249994,0,0);}
.m106_c01310{transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);}
.m28_c01310{transform:matrix(0.265614,-0.003719,0.003500,0.249976,0,0);-ms-transform:matrix(0.265614,-0.003719,0.003500,0.249976,0,0);-webkit-transform:matrix(0.265614,-0.003719,0.003500,0.249976,0,0);}
.m3_c01310{transform:matrix(0.265778,-0.003455,0.003250,0.249979,0,0);-ms-transform:matrix(0.265778,-0.003455,0.003250,0.249979,0,0);-webkit-transform:matrix(0.265778,-0.003455,0.003250,0.249979,0,0);}
.m89_c01310{transform:matrix(0.265853,-0.001861,0.001750,0.249994,0,0);-ms-transform:matrix(0.265853,-0.001861,0.001750,0.249994,0,0);-webkit-transform:matrix(0.265853,-0.001861,0.001750,0.249994,0,0);}
.mde_c01310{transform:matrix(0.265900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265900,0.000000,0.000000,0.250000,0,0);}
.m118_c01310{transform:matrix(0.266030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266030,0.000000,0.000000,0.250000,0,0);}
.mdd_c01310{transform:matrix(0.266168,-0.003460,0.003250,0.249979,0,0);-ms-transform:matrix(0.266168,-0.003460,0.003250,0.249979,0,0);-webkit-transform:matrix(0.266168,-0.003460,0.003250,0.249979,0,0);}
.m26_c01310{transform:matrix(0.266599,-0.003732,0.003500,0.249976,0,0);-ms-transform:matrix(0.266599,-0.003732,0.003500,0.249976,0,0);-webkit-transform:matrix(0.266599,-0.003732,0.003500,0.249976,0,0);}
.m7b_c01310{transform:matrix(0.266860,-0.001601,0.001500,0.249996,0,0);-ms-transform:matrix(0.266860,-0.001601,0.001500,0.249996,0,0);-webkit-transform:matrix(0.266860,-0.001601,0.001500,0.249996,0,0);}
.m83_c01310{transform:matrix(0.267215,-0.001603,0.001500,0.249996,0,0);-ms-transform:matrix(0.267215,-0.001603,0.001500,0.249996,0,0);-webkit-transform:matrix(0.267215,-0.001603,0.001500,0.249996,0,0);}
.mb3_c01310{transform:matrix(0.267297,-0.001336,0.001250,0.249997,0,0);-ms-transform:matrix(0.267297,-0.001336,0.001250,0.249997,0,0);-webkit-transform:matrix(0.267297,-0.001336,0.001250,0.249997,0,0);}
.m91_c01310{transform:matrix(0.267523,-0.001873,0.001750,0.249994,0,0);-ms-transform:matrix(0.267523,-0.001873,0.001750,0.249994,0,0);-webkit-transform:matrix(0.267523,-0.001873,0.001750,0.249994,0,0);}
.mfe_c01310{transform:matrix(0.267930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267930,0.000000,0.000000,0.250000,0,0);}
.me7_c01310{transform:matrix(0.268010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268010,0.000000,0.000000,0.250000,0,0);}
.m109_c01310{transform:matrix(0.268125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268125,0.000000,0.000000,0.250000,0,0);}
.mac_c01310{transform:matrix(0.268342,-0.001342,0.001250,0.249997,0,0);-ms-transform:matrix(0.268342,-0.001342,0.001250,0.249997,0,0);-webkit-transform:matrix(0.268342,-0.001342,0.001250,0.249997,0,0);}
.m23_c01310{transform:matrix(0.268964,-0.003765,0.003500,0.249976,0,0);-ms-transform:matrix(0.268964,-0.003765,0.003500,0.249976,0,0);-webkit-transform:matrix(0.268964,-0.003765,0.003500,0.249976,0,0);}
.m102_c01310{transform:matrix(0.269845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269845,0.000000,0.000000,0.250000,0,0);}
.m7d_c01310{transform:matrix(0.270005,-0.001620,0.001500,0.249996,0,0);-ms-transform:matrix(0.270005,-0.001620,0.001500,0.249996,0,0);-webkit-transform:matrix(0.270005,-0.001620,0.001500,0.249996,0,0);}
.m10b_c01310{transform:matrix(0.270130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270130,0.000000,0.000000,0.250000,0,0);}
.m2b_c01310{transform:matrix(0.270404,-0.003786,0.003500,0.249976,0,0);-ms-transform:matrix(0.270404,-0.003786,0.003500,0.249976,0,0);-webkit-transform:matrix(0.270404,-0.003786,0.003500,0.249976,0,0);}
.m8_c01310{transform:matrix(0.270422,-0.003515,0.003250,0.249979,0,0);-ms-transform:matrix(0.270422,-0.003515,0.003250,0.249979,0,0);-webkit-transform:matrix(0.270422,-0.003515,0.003250,0.249979,0,0);}
.m4e_c01310{transform:matrix(0.270483,-0.001893,0.001750,0.249994,0,0);-ms-transform:matrix(0.270483,-0.001893,0.001750,0.249994,0,0);-webkit-transform:matrix(0.270483,-0.001893,0.001750,0.249994,0,0);}
.m1d_c01310{transform:matrix(0.271103,-0.003795,0.003500,0.249976,0,0);-ms-transform:matrix(0.271103,-0.003795,0.003500,0.249976,0,0);-webkit-transform:matrix(0.271103,-0.003795,0.003500,0.249976,0,0);}
.m5b_c01310{transform:matrix(0.271293,-0.001899,0.001750,0.249994,0,0);-ms-transform:matrix(0.271293,-0.001899,0.001750,0.249994,0,0);-webkit-transform:matrix(0.271293,-0.001899,0.001750,0.249994,0,0);}
.mae_c01310{transform:matrix(0.271342,-0.001357,0.001250,0.249997,0,0);-ms-transform:matrix(0.271342,-0.001357,0.001250,0.249997,0,0);-webkit-transform:matrix(0.271342,-0.001357,0.001250,0.249997,0,0);}
.ma4_c01310{transform:matrix(0.271602,-0.001358,0.001250,0.249997,0,0);-ms-transform:matrix(0.271602,-0.001358,0.001250,0.249997,0,0);-webkit-transform:matrix(0.271602,-0.001358,0.001250,0.249997,0,0);}
.m115_c01310{transform:matrix(0.271815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271815,0.000000,0.000000,0.250000,0,0);}
.maa_c01310{transform:matrix(0.271932,-0.001360,0.001250,0.249997,0,0);-ms-transform:matrix(0.271932,-0.001360,0.001250,0.249997,0,0);-webkit-transform:matrix(0.271932,-0.001360,0.001250,0.249997,0,0);}
.m42_c01310{transform:matrix(0.271938,-0.001904,0.001750,0.249994,0,0);-ms-transform:matrix(0.271938,-0.001904,0.001750,0.249994,0,0);-webkit-transform:matrix(0.271938,-0.001904,0.001750,0.249994,0,0);}
.m46_c01310{transform:matrix(0.272118,-0.001905,0.001750,0.249994,0,0);-ms-transform:matrix(0.272118,-0.001905,0.001750,0.249994,0,0);-webkit-transform:matrix(0.272118,-0.001905,0.001750,0.249994,0,0);}
.m12a_c01310{transform:matrix(0.272270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272270,0.000000,0.000000,0.250000,0,0);}
.m3c_c01310{transform:matrix(0.272348,-0.001906,0.001750,0.249994,0,0);-ms-transform:matrix(0.272348,-0.001906,0.001750,0.249994,0,0);-webkit-transform:matrix(0.272348,-0.001906,0.001750,0.249994,0,0);}
.mb0_c01310{transform:matrix(0.272747,-0.001364,0.001250,0.249997,0,0);-ms-transform:matrix(0.272747,-0.001364,0.001250,0.249997,0,0);-webkit-transform:matrix(0.272747,-0.001364,0.001250,0.249997,0,0);}
.mb2_c01310{transform:matrix(0.273157,-0.001366,0.001250,0.249997,0,0);-ms-transform:matrix(0.273157,-0.001366,0.001250,0.249997,0,0);-webkit-transform:matrix(0.273157,-0.001366,0.001250,0.249997,0,0);}
.m11d_c01310{transform:matrix(0.273215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273215,0.000000,0.000000,0.250000,0,0);}
.m74_c01310{transform:matrix(0.273360,-0.001640,0.001500,0.249996,0,0);-ms-transform:matrix(0.273360,-0.001640,0.001500,0.249996,0,0);-webkit-transform:matrix(0.273360,-0.001640,0.001500,0.249996,0,0);}
.m81_c01310{transform:matrix(0.273450,-0.001641,0.001500,0.249996,0,0);-ms-transform:matrix(0.273450,-0.001641,0.001500,0.249996,0,0);-webkit-transform:matrix(0.273450,-0.001641,0.001500,0.249996,0,0);}
.m88_c01310{transform:matrix(0.274283,-0.001920,0.001750,0.249994,0,0);-ms-transform:matrix(0.274283,-0.001920,0.001750,0.249994,0,0);-webkit-transform:matrix(0.274283,-0.001920,0.001750,0.249994,0,0);}
.ma3_c01310{transform:matrix(0.274542,-0.001373,0.001250,0.249997,0,0);-ms-transform:matrix(0.274542,-0.001373,0.001250,0.249997,0,0);-webkit-transform:matrix(0.274542,-0.001373,0.001250,0.249997,0,0);}
.m11a_c01310{transform:matrix(0.274565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274565,0.000000,0.000000,0.250000,0,0);}
.m47_c01310{transform:matrix(0.275618,-0.001929,0.001750,0.249994,0,0);-ms-transform:matrix(0.275618,-0.001929,0.001750,0.249994,0,0);-webkit-transform:matrix(0.275618,-0.001929,0.001750,0.249994,0,0);}
.m8a_c01310{transform:matrix(0.275708,-0.001930,0.001750,0.249994,0,0);-ms-transform:matrix(0.275708,-0.001930,0.001750,0.249994,0,0);-webkit-transform:matrix(0.275708,-0.001930,0.001750,0.249994,0,0);}
.mfd_c01310{transform:matrix(0.275780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275780,0.000000,0.000000,0.250000,0,0);}
.mfa_c01310{transform:matrix(0.275800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275800,0.000000,0.000000,0.250000,0,0);}
.m7f_c01310{transform:matrix(0.276530,-0.001659,0.001500,0.249996,0,0);-ms-transform:matrix(0.276530,-0.001659,0.001500,0.249996,0,0);-webkit-transform:matrix(0.276530,-0.001659,0.001500,0.249996,0,0);}
.mf8_c01310{transform:matrix(0.276535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276535,0.000000,0.000000,0.250000,0,0);}
.m117_c01310{transform:matrix(0.276580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276580,0.000000,0.000000,0.250000,0,0);}
.m60_c01310{transform:matrix(0.276688,-0.001937,0.001750,0.249994,0,0);-ms-transform:matrix(0.276688,-0.001937,0.001750,0.249994,0,0);-webkit-transform:matrix(0.276688,-0.001937,0.001750,0.249994,0,0);}
.mf4_c01310{transform:matrix(0.277470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277470,0.000000,0.000000,0.250000,0,0);}
.m29_c01310{transform:matrix(0.277973,-0.003892,0.003500,0.249976,0,0);-ms-transform:matrix(0.277973,-0.003892,0.003500,0.249976,0,0);-webkit-transform:matrix(0.277973,-0.003892,0.003500,0.249976,0,0);}
.ma5_c01310{transform:matrix(0.278017,-0.001390,0.001250,0.249997,0,0);-ms-transform:matrix(0.278017,-0.001390,0.001250,0.249997,0,0);-webkit-transform:matrix(0.278017,-0.001390,0.001250,0.249997,0,0);}
.m107_c01310{transform:matrix(0.278740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278740,0.000000,0.000000,0.250000,0,0);}
.mfb_c01310{transform:matrix(0.279305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279305,0.000000,0.000000,0.250000,0,0);}
.m40_c01310{transform:matrix(0.279798,-0.001959,0.001750,0.249994,0,0);-ms-transform:matrix(0.279798,-0.001959,0.001750,0.249994,0,0);-webkit-transform:matrix(0.279798,-0.001959,0.001750,0.249994,0,0);}
.mdf_c01310{transform:matrix(0.279855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279855,0.000000,0.000000,0.250000,0,0);}
.m62_c01310{transform:matrix(0.279863,-0.001959,0.001750,0.249994,0,0);-ms-transform:matrix(0.279863,-0.001959,0.001750,0.249994,0,0);-webkit-transform:matrix(0.279863,-0.001959,0.001750,0.249994,0,0);}
.m9f_c01310{transform:matrix(0.280381,-0.001402,0.001250,0.249997,0,0);-ms-transform:matrix(0.280381,-0.001402,0.001250,0.249997,0,0);-webkit-transform:matrix(0.280381,-0.001402,0.001250,0.249997,0,0);}
.m72_c01310{transform:matrix(0.280905,-0.001685,0.001500,0.249996,0,0);-ms-transform:matrix(0.280905,-0.001685,0.001500,0.249996,0,0);-webkit-transform:matrix(0.280905,-0.001685,0.001500,0.249996,0,0);}
.m92_c01310{transform:matrix(0.282763,-0.001979,0.001750,0.249994,0,0);-ms-transform:matrix(0.282763,-0.001979,0.001750,0.249994,0,0);-webkit-transform:matrix(0.282763,-0.001979,0.001750,0.249994,0,0);}
.m105_c01310{transform:matrix(0.283120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283120,0.000000,0.000000,0.250000,0,0);}
.m44_c01310{transform:matrix(0.283603,-0.001985,0.001750,0.249994,0,0);-ms-transform:matrix(0.283603,-0.001985,0.001750,0.249994,0,0);-webkit-transform:matrix(0.283603,-0.001985,0.001750,0.249994,0,0);}
.m1b_c01310{transform:matrix(0.284762,-0.003987,0.003500,0.249976,0,0);-ms-transform:matrix(0.284762,-0.003987,0.003500,0.249976,0,0);-webkit-transform:matrix(0.284762,-0.003987,0.003500,0.249976,0,0);}
.m2e_c01310{transform:matrix(0.286592,-0.004012,0.003500,0.249976,0,0);-ms-transform:matrix(0.286592,-0.004012,0.003500,0.249976,0,0);-webkit-transform:matrix(0.286592,-0.004012,0.003500,0.249976,0,0);}
.mf6_c01310{transform:matrix(0.286765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286765,0.000000,0.000000,0.250000,0,0);}
.m1f_c01310{transform:matrix(0.287862,-0.004030,0.003500,0.249976,0,0);-ms-transform:matrix(0.287862,-0.004030,0.003500,0.249976,0,0);-webkit-transform:matrix(0.287862,-0.004030,0.003500,0.249976,0,0);}
.m2d_c01310{transform:matrix(0.294601,-0.004124,0.003500,0.249976,0,0);-ms-transform:matrix(0.294601,-0.004124,0.003500,0.249976,0,0);-webkit-transform:matrix(0.294601,-0.004124,0.003500,0.249976,0,0);}
.m5a_c01310{transform:matrix(0.301463,-0.002110,0.001750,0.249994,0,0);-ms-transform:matrix(0.301463,-0.002110,0.001750,0.249994,0,0);-webkit-transform:matrix(0.301463,-0.002110,0.001750,0.249994,0,0);}
.m10e_c01310{transform:matrix(0.310695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310695,0.000000,0.000000,0.250000,0,0);}
.m1a_c01310{transform:matrix(0.313204,-0.004385,0.003500,0.249976,0,0);-ms-transform:matrix(0.313204,-0.004385,0.003500,0.249976,0,0);-webkit-transform:matrix(0.313204,-0.004385,0.003500,0.249976,0,0);}
.m20_c01310{transform:matrix(0.319694,-0.004476,0.003500,0.249976,0,0);-ms-transform:matrix(0.319694,-0.004476,0.003500,0.249976,0,0);-webkit-transform:matrix(0.319694,-0.004476,0.003500,0.249976,0,0);}
.m19_c01310{transform:matrix(0.323573,-0.004530,0.003500,0.249976,0,0);-ms-transform:matrix(0.323573,-0.004530,0.003500,0.249976,0,0);-webkit-transform:matrix(0.323573,-0.004530,0.003500,0.249976,0,0);}
.m1e_c01310{transform:matrix(0.333607,-0.004671,0.003500,0.249976,0,0);-ms-transform:matrix(0.333607,-0.004671,0.003500,0.249976,0,0);-webkit-transform:matrix(0.333607,-0.004671,0.003500,0.249976,0,0);}
.m1c_c01310{transform:matrix(0.345281,-0.004834,0.003500,0.249976,0,0);-ms-transform:matrix(0.345281,-0.004834,0.003500,0.249976,0,0);-webkit-transform:matrix(0.345281,-0.004834,0.003500,0.249976,0,0);}
.m18_c01310{transform:matrix(0.414349,-0.005801,0.003500,0.249976,0,0);-ms-transform:matrix(0.414349,-0.005801,0.003500,0.249976,0,0);-webkit-transform:matrix(0.414349,-0.005801,0.003500,0.249976,0,0);}
.m134_c01310{transform:matrix(1.470545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.470545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.470545,0.000000,0.000000,0.250000,0,0);}
.m135_c01310{transform:matrix(1.610755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.610755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.610755,0.000000,0.000000,0.250000,0,0);}
.m133_c01310{transform:matrix(2.134535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.134535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.134535,0.000000,0.000000,0.250000,0,0);}
.v0_c01310{vertical-align:0.000000px;}
.ls0_c01310{letter-spacing:0.000000px;}
.sc__c01310{text-shadow:none;}
.sc0_c01310{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__c01310{-webkit-text-stroke:0px transparent;}
.sc0_c01310{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01310{word-spacing:0.000000px;}
.fc0_c01310{color:transparent;}
.fs12_c01310{font-size:18.000000px;}
.fs3_c01310{font-size:60.005880px;}
.fs5_c01310{font-size:66.006468px;}
.fsf_c01310{font-size:72.000000px;}
.fsb_c01310{font-size:72.000900px;}
.fs9_c01310{font-size:72.001296px;}
.fs7_c01310{font-size:72.001764px;}
.fs1_c01310{font-size:72.006084px;}
.fs4_c01310{font-size:72.007056px;}
.fs10_c01310{font-size:78.000000px;}
.fsd_c01310{font-size:78.000975px;}
.fs6_c01310{font-size:78.001911px;}
.fse_c01310{font-size:84.001050px;}
.fs8_c01310{font-size:84.002058px;}
.fs2_c01310{font-size:84.008232px;}
.fs11_c01310{font-size:90.000000px;}
.fs0_c01310{font-size:102.000000px;}
.fsa_c01310{font-size:102.001275px;}
.fs13_c01310{font-size:102.004131px;}
.fsc_c01310{font-size:108.001350px;}
.y0_c01310{bottom:0.000000px;}
.yfd_c01310{bottom:48.601500px;}
.yfe_c01310{bottom:49.089498px;}
.yff_c01310{bottom:49.774798px;}
.y100_c01310{bottom:50.489097px;}
.y101_c01310{bottom:50.770963px;}
.y102_c01310{bottom:51.179257px;}
.y103_c01310{bottom:51.378463px;}
.y104_c01310{bottom:51.677448px;}
.y105_c01310{bottom:52.277550px;}
.y106_c01310{bottom:52.783894px;}
.yfc_c01310{bottom:85.872000px;}
.yfb_c01310{bottom:105.840000px;}
.yfa_c01310{bottom:140.367000px;}
.yf9_c01310{bottom:178.587000px;}
.yed_c01310{bottom:213.301500px;}
.yee_c01310{bottom:213.682500px;}
.yef_c01310{bottom:214.231500px;}
.yf0_c01310{bottom:214.398000px;}
.yf1_c01310{bottom:214.786500px;}
.yf2_c01310{bottom:215.001000px;}
.yf3_c01310{bottom:215.341500px;}
.yf4_c01310{bottom:215.722500px;}
.yf5_c01310{bottom:215.899500px;}
.yf6_c01310{bottom:216.169500px;}
.yf7_c01310{bottom:216.336000px;}
.yf8_c01310{bottom:216.510000px;}
.yec_c01310{bottom:250.825500px;}
.yeb_c01310{bottom:286.018500px;}
.ye0_c01310{bottom:319.680000px;}
.ye1_c01310{bottom:320.116500px;}
.ye2_c01310{bottom:320.281500px;}
.ye3_c01310{bottom:320.622000px;}
.ye4_c01310{bottom:321.055500px;}
.ye5_c01310{bottom:321.169500px;}
.ye6_c01310{bottom:321.390000px;}
.ye7_c01310{bottom:321.609000px;}
.ye8_c01310{bottom:321.832500px;}
.ye9_c01310{bottom:322.275000px;}
.yea_c01310{bottom:322.939500px;}
.ydf_c01310{bottom:356.994000px;}
.ydc_c01310{bottom:388.261500px;}
.ydd_c01310{bottom:388.840825px;}
.yde_c01310{bottom:389.259256px;}
.yd0_c01310{bottom:424.977728px;}
.yd1_c01310{bottom:425.304435px;}
.yd2_c01310{bottom:425.543490px;}
.yd3_c01310{bottom:425.743245px;}
.yd4_c01310{bottom:425.914688px;}
.yd5_c01310{bottom:426.412875px;}
.yd6_c01310{bottom:426.796155px;}
.yd7_c01310{bottom:427.027103px;}
.yd8_c01310{bottom:427.405035px;}
.yd9_c01310{bottom:427.575255px;}
.yda_c01310{bottom:427.857270px;}
.ydb_c01310{bottom:428.131410px;}
.yc2_c01310{bottom:460.348725px;}
.yc3_c01310{bottom:460.508048px;}
.yc4_c01310{bottom:460.903575px;}
.yc5_c01310{bottom:461.019840px;}
.yc6_c01310{bottom:461.174993px;}
.yc7_c01310{bottom:461.339708px;}
.yc8_c01310{bottom:461.781158px;}
.yc9_c01310{bottom:462.500715px;}
.yca_c01310{bottom:462.668138px;}
.ycb_c01310{bottom:462.834180px;}
.ycc_c01310{bottom:463.006988px;}
.ycd_c01310{bottom:463.384973px;}
.yce_c01310{bottom:463.555080px;}
.ycf_c01310{bottom:464.075130px;}
.yb7_c01310{bottom:496.796985px;}
.yb8_c01310{bottom:497.193795px;}
.yb9_c01310{bottom:497.461568px;}
.yba_c01310{bottom:498.054638px;}
.ybb_c01310{bottom:498.384195px;}
.ybc_c01310{bottom:498.588795px;}
.ybd_c01310{bottom:499.247775px;}
.ybe_c01310{bottom:499.779068px;}
.ybf_c01310{bottom:499.983690px;}
.yc0_c01310{bottom:500.506725px;}
.yc1_c01310{bottom:501.260783px;}
.yab_c01310{bottom:532.167547px;}
.yac_c01310{bottom:532.603530px;}
.yad_c01310{bottom:532.714350px;}
.yae_c01310{bottom:533.093678px;}
.yaf_c01310{bottom:533.273205px;}
.yb0_c01310{bottom:533.767230px;}
.yb1_c01310{bottom:533.936070px;}
.yb2_c01310{bottom:534.372143px;}
.yb3_c01310{bottom:534.642143px;}
.yb4_c01310{bottom:535.034993px;}
.yb5_c01310{bottom:535.423702px;}
.yb6_c01310{bottom:535.538543px;}
.ya0_c01310{bottom:567.269527px;}
.ya1_c01310{bottom:568.040715px;}
.ya2_c01310{bottom:568.189485px;}
.ya3_c01310{bottom:568.657770px;}
.ya4_c01310{bottom:568.889835px;}
.ya5_c01310{bottom:569.588850px;}
.ya6_c01310{bottom:570.212858px;}
.ya7_c01310{bottom:570.904868px;}
.ya8_c01310{bottom:571.214873px;}
.ya9_c01310{bottom:571.686023px;}
.yaa_c01310{bottom:572.070878px;}
.y94_c01310{bottom:604.260000px;}
.y95_c01310{bottom:604.538138px;}
.y96_c01310{bottom:604.762335px;}
.y97_c01310{bottom:605.194328px;}
.y98_c01310{bottom:605.356320px;}
.y99_c01310{bottom:605.699220px;}
.y9a_c01310{bottom:605.969220px;}
.y9b_c01310{bottom:606.137985px;}
.y9c_c01310{bottom:606.632108px;}
.y9d_c01310{bottom:606.966825px;}
.y9e_c01310{bottom:607.077615px;}
.y9f_c01310{bottom:607.573043px;}
.y88_c01310{bottom:637.201500px;}
.y89_c01310{bottom:637.891361px;}
.y8a_c01310{bottom:638.208912px;}
.y8b_c01310{bottom:638.898573px;}
.y8c_c01310{bottom:639.055611px;}
.y8d_c01310{bottom:639.601884px;}
.y8e_c01310{bottom:639.753042px;}
.y8f_c01310{bottom:639.989166px;}
.y90_c01310{bottom:640.448594px;}
.y91_c01310{bottom:640.675425px;}
.y92_c01310{bottom:641.142244px;}
.y93_c01310{bottom:641.533443px;}
.y7c_c01310{bottom:673.109097px;}
.y7d_c01310{bottom:673.479108px;}
.y7e_c01310{bottom:674.025216px;}
.y7f_c01310{bottom:674.412942px;}
.y80_c01310{bottom:675.112671px;}
.y81_c01310{bottom:675.260211px;}
.y82_c01310{bottom:675.956991px;}
.y83_c01310{bottom:676.338132px;}
.y84_c01310{bottom:676.809129px;}
.y85_c01310{bottom:677.043027px;}
.y86_c01310{bottom:677.509167px;}
.y87_c01310{bottom:677.896740px;}
.y71_c01310{bottom:710.370000px;}
.y72_c01310{bottom:710.509383px;}
.y73_c01310{bottom:711.233523px;}
.y74_c01310{bottom:711.508941px;}
.y75_c01310{bottom:712.166643px;}
.y76_c01310{bottom:712.500390px;}
.y77_c01310{bottom:712.706130px;}
.y78_c01310{bottom:712.827639px;}
.y79_c01310{bottom:713.031669px;}
.y7a_c01310{bottom:713.427048px;}
.y7b_c01310{bottom:713.629584px;}
.y70_c01310{bottom:743.695739px;}
.y66_c01310{bottom:779.485209px;}
.y67_c01310{bottom:779.889222px;}
.y68_c01310{bottom:781.376144px;}
.y69_c01310{bottom:782.167269px;}
.y6a_c01310{bottom:782.458811px;}
.y6b_c01310{bottom:782.764472px;}
.y6c_c01310{bottom:783.656070px;}
.y6d_c01310{bottom:783.950802px;}
.y6e_c01310{bottom:784.351194px;}
.y6f_c01310{bottom:785.551802px;}
.y5b_c01310{bottom:815.395526px;}
.y5c_c01310{bottom:816.156453px;}
.y5d_c01310{bottom:816.707296px;}
.y5e_c01310{bottom:817.050837px;}
.y5f_c01310{bottom:817.930736px;}
.y60_c01310{bottom:818.486838px;}
.y61_c01310{bottom:819.480879px;}
.y62_c01310{bottom:819.920970px;}
.y63_c01310{bottom:821.341079px;}
.y64_c01310{bottom:821.689878px;}
.y65_c01310{bottom:822.895032px;}
.y4f_c01310{bottom:851.034156px;}
.y50_c01310{bottom:851.525594px;}
.y51_c01310{bottom:852.211584px;}
.y52_c01310{bottom:852.522546px;}
.y53_c01310{bottom:853.617768px;}
.y54_c01310{bottom:854.109027px;}
.y55_c01310{bottom:854.421858px;}
.y56_c01310{bottom:854.716569px;}
.y57_c01310{bottom:855.109970px;}
.y58_c01310{bottom:855.912212px;}
.y59_c01310{bottom:856.909059px;}
.y5a_c01310{bottom:857.798957px;}
.y44_c01310{bottom:886.407356px;}
.y45_c01310{bottom:887.618672px;}
.y46_c01310{bottom:887.845184px;}
.y47_c01310{bottom:888.716738px;}
.y48_c01310{bottom:889.596804px;}
.y49_c01310{bottom:889.936986px;}
.y4a_c01310{bottom:890.385558px;}
.y4b_c01310{bottom:890.816937px;}
.y4c_c01310{bottom:891.146790px;}
.y4d_c01310{bottom:891.705999px;}
.y4e_c01310{bottom:892.380978px;}
.y39_c01310{bottom:921.780543px;}
.y3a_c01310{bottom:922.422279px;}
.y3b_c01310{bottom:922.753833px;}
.y3c_c01310{bottom:923.193756px;}
.y3d_c01310{bottom:924.074106px;}
.y3e_c01310{bottom:924.410867px;}
.y3f_c01310{bottom:925.291070px;}
.y40_c01310{bottom:925.746959px;}
.y41_c01310{bottom:927.065289px;}
.y42_c01310{bottom:927.396801px;}
.y43_c01310{bottom:928.403030px;}
.y2f_c01310{bottom:958.770000px;}
.y30_c01310{bottom:959.010156px;}
.y31_c01310{bottom:959.397386px;}
.y32_c01310{bottom:959.631914px;}
.y33_c01310{bottom:959.864415px;}
.y34_c01310{bottom:960.633656px;}
.y35_c01310{bottom:960.943626px;}
.y36_c01310{bottom:961.410299px;}
.y37_c01310{bottom:961.731767px;}
.y38_c01310{bottom:962.653929px;}
.y2d_c01310{bottom:989.561916px;}
.y2e_c01310{bottom:992.042385px;}
.y21_c01310{bottom:1023.843000px;}
.y22_c01310{bottom:1024.300758px;}
.y23_c01310{bottom:1024.913580px;}
.y24_c01310{bottom:1026.134667px;}
.y25_c01310{bottom:1026.607167px;}
.y26_c01310{bottom:1027.378266px;}
.y27_c01310{bottom:1028.628732px;}
.y28_c01310{bottom:1028.939343px;}
.y29_c01310{bottom:1029.880794px;}
.y2a_c01310{bottom:1031.433639px;}
.y2b_c01310{bottom:1032.190206px;}
.y2c_c01310{bottom:1033.127562px;}
.y18_c01310{bottom:1058.671872px;}
.y19_c01310{bottom:1060.639005px;}
.y1a_c01310{bottom:1061.849487px;}
.y1b_c01310{bottom:1063.708701px;}
.y1c_c01310{bottom:1064.299179px;}
.y1d_c01310{bottom:1066.180800px;}
.y1e_c01310{bottom:1066.661721px;}
.y1f_c01310{bottom:1068.676272px;}
.y20_c01310{bottom:1069.156185px;}
.y10_c01310{bottom:1094.313000px;}
.y11_c01310{bottom:1095.081915px;}
.y12_c01310{bottom:1096.914291px;}
.y13_c01310{bottom:1097.390571px;}
.y14_c01310{bottom:1097.865087px;}
.y15_c01310{bottom:1099.409847px;}
.y16_c01310{bottom:1101.107004px;}
.y17_c01310{bottom:1103.280336px;}
.y2_c01310{bottom:1130.763000px;}
.y3_c01310{bottom:1131.033660px;}
.y4_c01310{bottom:1131.896905px;}
.y5_c01310{bottom:1132.455093px;}
.y6_c01310{bottom:1132.879861px;}
.y7_c01310{bottom:1133.750731px;}
.y8_c01310{bottom:1134.175597px;}
.y9_c01310{bottom:1135.168888px;}
.ya_c01310{bottom:1136.203831px;}
.yb_c01310{bottom:1136.768941px;}
.yc_c01310{bottom:1137.197727px;}
.yd_c01310{bottom:1137.625947px;}
.ye_c01310{bottom:1138.509882px;}
.yf_c01310{bottom:1139.096559px;}
.y1_c01310{bottom:1192.867500px;}
.h14_c01310{height:18.000000px;}
.h5_c01310{height:60.005880px;}
.h7_c01310{height:66.006468px;}
.h11_c01310{height:72.000000px;}
.hd_c01310{height:72.000900px;}
.hb_c01310{height:72.001296px;}
.h9_c01310{height:72.001764px;}
.h3_c01310{height:72.006084px;}
.h6_c01310{height:72.007056px;}
.h12_c01310{height:78.000000px;}
.hf_c01310{height:78.000975px;}
.h8_c01310{height:78.001911px;}
.h10_c01310{height:84.001050px;}
.ha_c01310{height:84.002058px;}
.h4_c01310{height:84.008232px;}
.h13_c01310{height:90.000000px;}
.h2_c01310{height:102.000000px;}
.hc_c01310{height:102.001275px;}
.h15_c01310{height:102.004131px;}
.he_c01310{height:108.001350px;}
.h1_c01310{height:1250.250000px;}
.h0_c01310{height:1250.370000px;}
.w1_c01310{width:912.000000px;}
.w0_c01310{width:912.300000px;}
.x0_c01310{left:0.000000px;}
.x18_c01310{left:11.133555px;}
.x3_c01310{left:151.113000px;}
.x29_c01310{left:152.967190px;}
.x4f_c01310{left:154.170282px;}
.x5a_c01310{left:155.355690px;}
.x7b_c01310{left:156.397987px;}
.xa1_c01310{left:158.371500px;}
.xb5_c01310{left:159.838500px;}
.xbe_c01310{left:161.188500px;}
.xd4_c01310{left:162.540000px;}
.x4_c01310{left:171.933000px;}
.x1d_c01310{left:183.541500px;}
.xd5_c01310{left:186.300000px;}
.x8d_c01310{left:188.257072px;}
.xbf_c01310{left:191.428500px;}
.x47_c01310{left:198.059591px;}
.xa2_c01310{left:202.935000px;}
.x11_c01310{left:205.486500px;}
.x37_c01310{left:206.683083px;}
.x5b_c01310{left:208.273875px;}
.x6a_c01310{left:210.655500px;}
.xc9_c01310{left:214.915500px;}
.x2a_c01310{left:217.213846px;}
.x84_c01310{left:222.023993px;}
.x1e_c01310{left:227.314500px;}
.x41_c01310{left:229.340265px;}
.xa3_c01310{left:235.122000px;}
.xb6_c01310{left:236.518500px;}
.x5_c01310{left:238.336500px;}
.x7c_c01310{left:243.594487px;}
.xab_c01310{left:245.761500px;}
.xca_c01310{left:249.205500px;}
.x2b_c01310{left:250.435153px;}
.x62_c01310{left:252.832500px;}
.x6b_c01310{left:255.495000px;}
.x23_c01310{left:259.564500px;}
.x50_c01310{left:262.786500px;}
.x73_c01310{left:264.954840px;}
.x85_c01310{left:266.578268px;}
.x98_c01310{left:269.822430px;}
.xcf_c01310{left:271.075500px;}
.x31_c01310{left:273.087697px;}
.xac_c01310{left:278.715000px;}
.x6_c01310{left:281.274000px;}
.x38_c01310{left:282.823512px;}
.x42_c01310{left:284.459610px;}
.x51_c01310{left:286.017000px;}
.x8e_c01310{left:290.615572px;}
.xcb_c01310{left:292.135500px;}
.x24_c01310{left:293.872500px;}
.x32_c01310{left:295.803225px;}
.x63_c01310{left:298.197000px;}
.xd6_c01310{left:304.290000px;}
.x99_c01310{left:309.773430px;}
.x7_c01310{left:313.948500px;}
.x39_c01310{left:317.389029px;}
.x43_c01310{left:318.750386px;}
.x8f_c01310{left:321.646073px;}
.xa4_c01310{left:333.180000px;}
.x12_c01310{left:336.370500px;}
.x5c_c01310{left:341.662074px;}
.x9a_c01310{left:344.061930px;}
.xb7_c01310{left:345.598500px;}
.xad_c01310{left:346.753500px;}
.x1f_c01310{left:348.285000px;}
.x74_c01310{left:353.264963px;}
.x90_c01310{left:354.589073px;}
.x48_c01310{left:363.331781px;}
.x86_c01310{left:365.391773px;}
.xd0_c01310{left:369.085500px;}
.x13_c01310{left:370.390500px;}
.xd9_c01310{left:371.949000px;}
.x6c_c01310{left:374.292000px;}
.x7d_c01310{left:377.529488px;}
.xb8_c01310{left:378.538500px;}
.x8_c01310{left:380.938500px;}
.x25_c01310{left:382.695000px;}
.x75_c01310{left:386.477633px;}
.xc0_c01310{left:390.958500px;}
.x64_c01310{left:396.720000px;}
.x1_c01310{left:401.760000px;}
.xda_c01310{left:403.267500px;}
.x14_c01310{left:404.284500px;}
.x44_c01310{left:406.734037px;}
.x9_c01310{left:413.620500px;}
.xd7_c01310{left:414.720000px;}
.x26_c01310{left:415.909500px;}
.x65_c01310{left:419.154000px;}
.x87_c01310{left:420.202995px;}
.xa5_c01310{left:424.170000px;}
.xcc_c01310{left:426.595500px;}
.xae_c01310{left:433.405500px;}
.xd1_c01310{left:437.395500px;}
.x3a_c01310{left:439.133328px;}
.x5d_c01310{left:441.532971px;}
.x6d_c01310{left:442.872000px;}
.xa6_c01310{left:444.690000px;}
.xdb_c01310{left:448.633500px;}
.x49_c01310{left:451.277052px;}
.x52_c01310{left:452.610000px;}
.x88_c01310{left:454.222823px;}
.xaf_c01310{left:456.103500px;}
.xb9_c01310{left:457.378500px;}
.x45_c01310{left:462.390372px;}
.x2_c01310{left:468.180000px;}
.x33_c01310{left:471.031050px;}
.x7e_c01310{left:476.334488px;}
.xc1_c01310{left:478.708500px;}
.x4a_c01310{left:483.711100px;}
.x76_c01310{left:486.379635px;}
.xa_c01310{left:490.027500px;}
.x20_c01310{left:492.682500px;}
.x66_c01310{left:497.193000px;}
.xb0_c01310{left:500.098500px;}
.x2c_c01310{left:504.249330px;}
.x7f_c01310{left:510.102488px;}
.x15_c01310{left:514.624500px;}
.x4b_c01310{left:517.733628px;}
.x67_c01310{left:518.787000px;}
.x9b_c01310{left:520.355430px;}
.x27_c01310{left:525.801000px;}
.x3b_c01310{left:528.502078px;}
.x6e_c01310{left:530.625000px;}
.xa7_c01310{left:532.980000px;}
.xc2_c01310{left:534.868500px;}
.xcd_c01310{left:535.945500px;}
.xb1_c01310{left:543.852000px;}
.x19_c01310{left:547.485555px;}
.x2d_c01310{left:549.875374px;}
.x68_c01310{left:552.519000px;}
.x3c_c01310{left:561.174616px;}
.x53_c01310{left:562.227000px;}
.x89_c01310{left:564.118275px;}
.x9c_c01310{left:566.544930px;}
.xb_c01310{left:569.638500px;}
.xdc_c01310{left:570.666000px;}
.x77_c01310{left:575.480243px;}
.xa8_c01310{left:578.880000px;}
.x1a_c01310{left:581.837055px;}
.x91_c01310{left:586.790573px;}
.xb2_c01310{left:588.675000px;}
.xba_c01310{left:590.218500px;}
.x34_c01310{left:593.047488px;}
.x80_c01310{left:597.316987px;}
.xc3_c01310{left:601.018500px;}
.x3d_c01310{left:604.945507px;}
.xc_c01310{left:613.108500px;}
.x4c_c01310{left:616.817742px;}
.x54_c01310{left:617.851500px;}
.x92_c01310{left:620.275072px;}
.x35_c01310{left:626.025795px;}
.x6f_c01310{left:629.449500px;}
.x16_c01310{left:635.850000px;}
.x9d_c01310{left:642.131430px;}
.xc6_c01310{left:644.826000px;}
.xd_c01310{left:646.092000px;}
.x4d_c01310{left:649.493280px;}
.x69_c01310{left:650.556000px;}
.x55_c01310{left:652.141500px;}
.x93_c01310{left:653.483573px;}
.xbb_c01310{left:655.558500px;}
.xd2_c01310{left:668.785500px;}
.x56_c01310{left:672.393000px;}
.x78_c01310{left:674.281253px;}
.x9e_c01310{left:676.175430px;}
.xb3_c01310{left:677.233500px;}
.xe_c01310{left:679.032000px;}
.xc7_c01310{left:680.197500px;}
.x2e_c01310{left:681.634102px;}
.x28_c01310{left:682.674000px;}
.x5e_c01310{left:684.024522px;}
.x8a_c01310{left:686.700660px;}
.x94_c01310{left:688.045072px;}
.x21_c01310{left:693.033000px;}
.x3e_c01310{left:694.050258px;}
.x70_c01310{left:696.393000px;}
.xa9_c01310{left:700.380000px;}
.xd8_c01310{left:702.000000px;}
.x57_c01310{left:706.398000px;}
.x2f_c01310{left:714.849409px;}
.x5f_c01310{left:717.507324px;}
.x71_c01310{left:718.551000px;}
.x1b_c01310{left:725.733555px;}
.x81_c01310{left:729.886988px;}
.x9f_c01310{left:732.578430px;}
.xc4_c01310{left:733.858500px;}
.xd3_c01310{left:736.285500px;}
.xbc_c01310{left:743.848500px;}
.xf_c01310{left:747.027000px;}
.x36_c01310{left:749.407201px;}
.xaa_c01310{left:755.460000px;}
.xce_c01310{left:757.345500px;}
.x1c_c01310{left:760.013055px;}
.x95_c01310{left:763.642073px;}
.xc5_c01310{left:767.338500px;}
.x58_c01310{left:772.294500px;}
.x8b_c01310{left:773.907225px;}
.x46_c01310{left:782.603642px;}
.x60_c01310{left:784.196928px;}
.x79_c01310{left:785.811135px;}
.xa0_c01310{left:787.406430px;}
.xbd_c01310{left:789.478500px;}
.x17_c01310{left:791.088000px;}
.x10_c01310{left:792.156000px;}
.x96_c01310{left:797.663572px;}
.xc8_c01310{left:802.227000px;}
.x3f_c01310{left:804.741204px;}
.x59_c01310{left:806.050500px;}
.x82_c01310{left:807.628987px;}
.xb4_c01310{left:810.069000px;}
.x22_c01310{left:814.027500px;}
.x30_c01310{left:815.522799px;}
.x72_c01310{left:817.636500px;}
.x4e_c01310{left:827.419292px;}
.x83_c01310{left:830.596987px;}
.x61_c01310{left:839.542095px;}
.x7a_c01310{left:840.881588px;}
.x8c_c01310{left:899.518095px;}
.x97_c01310{left:901.673573px;}
.x40_c01310{left:903.582318px;}
@media print{
.v0_c01310{vertical-align:0.000000pt;}
.ls0_c01310{letter-spacing:0.000000pt;}
.ws0_c01310{word-spacing:0.000000pt;}
.fs12_c01310{font-size:16.000000pt;}
.fs3_c01310{font-size:53.338560pt;}
.fs5_c01310{font-size:58.672416pt;}
.fsf_c01310{font-size:64.000000pt;}
.fsb_c01310{font-size:64.000800pt;}
.fs9_c01310{font-size:64.001152pt;}
.fs7_c01310{font-size:64.001568pt;}
.fs1_c01310{font-size:64.005408pt;}
.fs4_c01310{font-size:64.006272pt;}
.fs10_c01310{font-size:69.333333pt;}
.fsd_c01310{font-size:69.334200pt;}
.fs6_c01310{font-size:69.335032pt;}
.fse_c01310{font-size:74.667600pt;}
.fs8_c01310{font-size:74.668496pt;}
.fs2_c01310{font-size:74.673984pt;}
.fs11_c01310{font-size:80.000000pt;}
.fs0_c01310{font-size:90.666667pt;}
.fsa_c01310{font-size:90.667800pt;}
.fs13_c01310{font-size:90.670339pt;}
.fsc_c01310{font-size:96.001200pt;}
.y0_c01310{bottom:0.000000pt;}
.yfd_c01310{bottom:43.201333pt;}
.yfe_c01310{bottom:43.635109pt;}
.yff_c01310{bottom:44.244265pt;}
.y100_c01310{bottom:44.879197pt;}
.y101_c01310{bottom:45.129745pt;}
.y102_c01310{bottom:45.492673pt;}
.y103_c01310{bottom:45.669745pt;}
.y104_c01310{bottom:45.935509pt;}
.y105_c01310{bottom:46.468933pt;}
.y106_c01310{bottom:46.919017pt;}
.yfc_c01310{bottom:76.330667pt;}
.yfb_c01310{bottom:94.080000pt;}
.yfa_c01310{bottom:124.770667pt;}
.yf9_c01310{bottom:158.744000pt;}
.yed_c01310{bottom:189.601333pt;}
.yee_c01310{bottom:189.940000pt;}
.yef_c01310{bottom:190.428000pt;}
.yf0_c01310{bottom:190.576000pt;}
.yf1_c01310{bottom:190.921333pt;}
.yf2_c01310{bottom:191.112000pt;}
.yf3_c01310{bottom:191.414667pt;}
.yf4_c01310{bottom:191.753333pt;}
.yf5_c01310{bottom:191.910667pt;}
.yf6_c01310{bottom:192.150667pt;}
.yf7_c01310{bottom:192.298667pt;}
.yf8_c01310{bottom:192.453333pt;}
.yec_c01310{bottom:222.956000pt;}
.yeb_c01310{bottom:254.238667pt;}
.ye0_c01310{bottom:284.160000pt;}
.ye1_c01310{bottom:284.548000pt;}
.ye2_c01310{bottom:284.694667pt;}
.ye3_c01310{bottom:284.997333pt;}
.ye4_c01310{bottom:285.382667pt;}
.ye5_c01310{bottom:285.484000pt;}
.ye6_c01310{bottom:285.680000pt;}
.ye7_c01310{bottom:285.874667pt;}
.ye8_c01310{bottom:286.073333pt;}
.ye9_c01310{bottom:286.466667pt;}
.yea_c01310{bottom:287.057333pt;}
.ydf_c01310{bottom:317.328000pt;}
.ydc_c01310{bottom:345.121333pt;}
.ydd_c01310{bottom:345.636289pt;}
.yde_c01310{bottom:346.008228pt;}
.yd0_c01310{bottom:377.757980pt;}
.yd1_c01310{bottom:378.048387pt;}
.yd2_c01310{bottom:378.260880pt;}
.yd3_c01310{bottom:378.438440pt;}
.yd4_c01310{bottom:378.590833pt;}
.yd5_c01310{bottom:379.033667pt;}
.yd6_c01310{bottom:379.374360pt;}
.yd7_c01310{bottom:379.579647pt;}
.yd8_c01310{bottom:379.915587pt;}
.yd9_c01310{bottom:380.066893pt;}
.yda_c01310{bottom:380.317573pt;}
.ydb_c01310{bottom:380.561253pt;}
.yc2_c01310{bottom:409.198867pt;}
.yc3_c01310{bottom:409.340487pt;}
.yc4_c01310{bottom:409.692067pt;}
.yc5_c01310{bottom:409.795413pt;}
.yc6_c01310{bottom:409.933327pt;}
.yc7_c01310{bottom:410.079740pt;}
.yc8_c01310{bottom:410.472140pt;}
.yc9_c01310{bottom:411.111747pt;}
.yca_c01310{bottom:411.260567pt;}
.ycb_c01310{bottom:411.408160pt;}
.ycc_c01310{bottom:411.561767pt;}
.ycd_c01310{bottom:411.897753pt;}
.yce_c01310{bottom:412.048960pt;}
.ycf_c01310{bottom:412.511227pt;}
.yb7_c01310{bottom:441.597320pt;}
.yb8_c01310{bottom:441.950040pt;}
.yb9_c01310{bottom:442.188060pt;}
.yba_c01310{bottom:442.715233pt;}
.ybb_c01310{bottom:443.008173pt;}
.ybc_c01310{bottom:443.190040pt;}
.ybd_c01310{bottom:443.775800pt;}
.ybe_c01310{bottom:444.248060pt;}
.ybf_c01310{bottom:444.429947pt;}
.yc0_c01310{bottom:444.894867pt;}
.yc1_c01310{bottom:445.565140pt;}
.yab_c01310{bottom:473.037820pt;}
.yac_c01310{bottom:473.425360pt;}
.yad_c01310{bottom:473.523867pt;}
.yae_c01310{bottom:473.861047pt;}
.yaf_c01310{bottom:474.020627pt;}
.yb0_c01310{bottom:474.459760pt;}
.yb1_c01310{bottom:474.609840pt;}
.yb2_c01310{bottom:474.997460pt;}
.yb3_c01310{bottom:475.237460pt;}
.yb4_c01310{bottom:475.586660pt;}
.yb5_c01310{bottom:475.932180pt;}
.yb6_c01310{bottom:476.034260pt;}
.ya0_c01310{bottom:504.239580pt;}
.ya1_c01310{bottom:504.925080pt;}
.ya2_c01310{bottom:505.057320pt;}
.ya3_c01310{bottom:505.473573pt;}
.ya4_c01310{bottom:505.679853pt;}
.ya5_c01310{bottom:506.301200pt;}
.ya6_c01310{bottom:506.855873pt;}
.ya7_c01310{bottom:507.470993pt;}
.ya8_c01310{bottom:507.746553pt;}
.ya9_c01310{bottom:508.165353pt;}
.yaa_c01310{bottom:508.507447pt;}
.y94_c01310{bottom:537.120000pt;}
.y95_c01310{bottom:537.367233pt;}
.y96_c01310{bottom:537.566520pt;}
.y97_c01310{bottom:537.950513pt;}
.y98_c01310{bottom:538.094507pt;}
.y99_c01310{bottom:538.399307pt;}
.y9a_c01310{bottom:538.639307pt;}
.y9b_c01310{bottom:538.789320pt;}
.y9c_c01310{bottom:539.228540pt;}
.y9d_c01310{bottom:539.526067pt;}
.y9e_c01310{bottom:539.624547pt;}
.y9f_c01310{bottom:540.064927pt;}
.y88_c01310{bottom:566.401333pt;}
.y89_c01310{bottom:567.014543pt;}
.y8a_c01310{bottom:567.296811pt;}
.y8b_c01310{bottom:567.909843pt;}
.y8c_c01310{bottom:568.049432pt;}
.y8d_c01310{bottom:568.535008pt;}
.y8e_c01310{bottom:568.669371pt;}
.y8f_c01310{bottom:568.879259pt;}
.y90_c01310{bottom:569.287639pt;}
.y91_c01310{bottom:569.489267pt;}
.y92_c01310{bottom:569.904217pt;}
.y93_c01310{bottom:570.251949pt;}
.y7c_c01310{bottom:598.319197pt;}
.y7d_c01310{bottom:598.648096pt;}
.y7e_c01310{bottom:599.133525pt;}
.y7f_c01310{bottom:599.478171pt;}
.y80_c01310{bottom:600.100152pt;}
.y81_c01310{bottom:600.231299pt;}
.y82_c01310{bottom:600.850659pt;}
.y83_c01310{bottom:601.189451pt;}
.y84_c01310{bottom:601.608115pt;}
.y85_c01310{bottom:601.816024pt;}
.y86_c01310{bottom:602.230371pt;}
.y87_c01310{bottom:602.574880pt;}
.y71_c01310{bottom:631.440000pt;}
.y72_c01310{bottom:631.563896pt;}
.y73_c01310{bottom:632.207576pt;}
.y74_c01310{bottom:632.452392pt;}
.y75_c01310{bottom:633.037016pt;}
.y76_c01310{bottom:633.333680pt;}
.y77_c01310{bottom:633.516560pt;}
.y78_c01310{bottom:633.624568pt;}
.y79_c01310{bottom:633.805928pt;}
.y7a_c01310{bottom:634.157376pt;}
.y7b_c01310{bottom:634.337408pt;}
.y70_c01310{bottom:661.062879pt;}
.y66_c01310{bottom:692.875741pt;}
.y67_c01310{bottom:693.234864pt;}
.y68_c01310{bottom:694.556572pt;}
.y69_c01310{bottom:695.259795pt;}
.y6a_c01310{bottom:695.518943pt;}
.y6b_c01310{bottom:695.790641pt;}
.y6c_c01310{bottom:696.583173pt;}
.y6d_c01310{bottom:696.845157pt;}
.y6e_c01310{bottom:697.201061pt;}
.y6f_c01310{bottom:698.268268pt;}
.y5b_c01310{bottom:724.796023pt;}
.y5c_c01310{bottom:725.472403pt;}
.y5d_c01310{bottom:725.962041pt;}
.y5e_c01310{bottom:726.267411pt;}
.y5f_c01310{bottom:727.049543pt;}
.y60_c01310{bottom:727.543856pt;}
.y61_c01310{bottom:728.427448pt;}
.y62_c01310{bottom:728.818640pt;}
.y63_c01310{bottom:730.080959pt;}
.y64_c01310{bottom:730.391003pt;}
.y65_c01310{bottom:731.462251pt;}
.y4f_c01310{bottom:756.474805pt;}
.y50_c01310{bottom:756.911639pt;}
.y51_c01310{bottom:757.521408pt;}
.y52_c01310{bottom:757.797819pt;}
.y53_c01310{bottom:758.771349pt;}
.y54_c01310{bottom:759.208024pt;}
.y55_c01310{bottom:759.486096pt;}
.y56_c01310{bottom:759.748061pt;}
.y57_c01310{bottom:760.097751pt;}
.y58_c01310{bottom:760.810855pt;}
.y59_c01310{bottom:761.696941pt;}
.y5a_c01310{bottom:762.487961pt;}
.y44_c01310{bottom:787.917649pt;}
.y45_c01310{bottom:788.994375pt;}
.y46_c01310{bottom:789.195719pt;}
.y47_c01310{bottom:789.970433pt;}
.y48_c01310{bottom:790.752715pt;}
.y49_c01310{bottom:791.055099pt;}
.y4a_c01310{bottom:791.453829pt;}
.y4b_c01310{bottom:791.837277pt;}
.y4c_c01310{bottom:792.130480pt;}
.y4d_c01310{bottom:792.627555pt;}
.y4e_c01310{bottom:793.227536pt;}
.y39_c01310{bottom:819.360483pt;}
.y3a_c01310{bottom:819.930915pt;}
.y3b_c01310{bottom:820.225629pt;}
.y3c_c01310{bottom:820.616672pt;}
.y3d_c01310{bottom:821.399205pt;}
.y3e_c01310{bottom:821.698548pt;}
.y3f_c01310{bottom:822.480951pt;}
.y40_c01310{bottom:822.886185pt;}
.y41_c01310{bottom:824.058035pt;}
.y42_c01310{bottom:824.352712pt;}
.y43_c01310{bottom:825.247137pt;}
.y2f_c01310{bottom:852.240000pt;}
.y30_c01310{bottom:852.453472pt;}
.y31_c01310{bottom:852.797676pt;}
.y32_c01310{bottom:853.006145pt;}
.y33_c01310{bottom:853.212813pt;}
.y34_c01310{bottom:853.896583pt;}
.y35_c01310{bottom:854.172112pt;}
.y36_c01310{bottom:854.586932pt;}
.y37_c01310{bottom:854.872681pt;}
.y38_c01310{bottom:855.692381pt;}
.y2d_c01310{bottom:879.610592pt;}
.y2e_c01310{bottom:881.815453pt;}
.y21_c01310{bottom:910.082667pt;}
.y22_c01310{bottom:910.489563pt;}
.y23_c01310{bottom:911.034293pt;}
.y24_c01310{bottom:912.119704pt;}
.y25_c01310{bottom:912.539704pt;}
.y26_c01310{bottom:913.225125pt;}
.y27_c01310{bottom:914.336651pt;}
.y28_c01310{bottom:914.612749pt;}
.y29_c01310{bottom:915.449595pt;}
.y2a_c01310{bottom:916.829901pt;}
.y2b_c01310{bottom:917.502405pt;}
.y2c_c01310{bottom:918.335611pt;}
.y18_c01310{bottom:941.041664pt;}
.y19_c01310{bottom:942.790227pt;}
.y1a_c01310{bottom:943.866211pt;}
.y1b_c01310{bottom:945.518845pt;}
.y1c_c01310{bottom:946.043715pt;}
.y1d_c01310{bottom:947.716267pt;}
.y1e_c01310{bottom:948.143752pt;}
.y1f_c01310{bottom:949.934464pt;}
.y20_c01310{bottom:950.361053pt;}
.y10_c01310{bottom:972.722667pt;}
.y11_c01310{bottom:973.406147pt;}
.y12_c01310{bottom:975.034925pt;}
.y13_c01310{bottom:975.458285pt;}
.y14_c01310{bottom:975.880077pt;}
.y15_c01310{bottom:977.253197pt;}
.y16_c01310{bottom:978.761781pt;}
.y17_c01310{bottom:980.693632pt;}
.y2_c01310{bottom:1005.122667pt;}
.y3_c01310{bottom:1005.363253pt;}
.y4_c01310{bottom:1006.130583pt;}
.y5_c01310{bottom:1006.626749pt;}
.y6_c01310{bottom:1007.004321pt;}
.y7_c01310{bottom:1007.778428pt;}
.y8_c01310{bottom:1008.156087pt;}
.y9_c01310{bottom:1009.039012pt;}
.ya_c01310{bottom:1009.958961pt;}
.yb_c01310{bottom:1010.461281pt;}
.yc_c01310{bottom:1010.842424pt;}
.yd_c01310{bottom:1011.223064pt;}
.ye_c01310{bottom:1012.008784pt;}
.yf_c01310{bottom:1012.530275pt;}
.y1_c01310{bottom:1060.326667pt;}
.h14_c01310{height:16.000000pt;}
.h5_c01310{height:53.338560pt;}
.h7_c01310{height:58.672416pt;}
.h11_c01310{height:64.000000pt;}
.hd_c01310{height:64.000800pt;}
.hb_c01310{height:64.001152pt;}
.h9_c01310{height:64.001568pt;}
.h3_c01310{height:64.005408pt;}
.h6_c01310{height:64.006272pt;}
.h12_c01310{height:69.333333pt;}
.hf_c01310{height:69.334200pt;}
.h8_c01310{height:69.335032pt;}
.h10_c01310{height:74.667600pt;}
.ha_c01310{height:74.668496pt;}
.h4_c01310{height:74.673984pt;}
.h13_c01310{height:80.000000pt;}
.h2_c01310{height:90.666667pt;}
.hc_c01310{height:90.667800pt;}
.h15_c01310{height:90.670339pt;}
.he_c01310{height:96.001200pt;}
.h1_c01310{height:1111.333333pt;}
.h0_c01310{height:1111.440000pt;}
.w1_c01310{width:810.666667pt;}
.w0_c01310{width:810.933333pt;}
.x0_c01310{left:0.000000pt;}
.x18_c01310{left:9.896493pt;}
.x3_c01310{left:134.322667pt;}
.x29_c01310{left:135.970836pt;}
.x4f_c01310{left:137.040251pt;}
.x5a_c01310{left:138.093947pt;}
.x7b_c01310{left:139.020433pt;}
.xa1_c01310{left:140.774667pt;}
.xb5_c01310{left:142.078667pt;}
.xbe_c01310{left:143.278667pt;}
.xd4_c01310{left:144.480000pt;}
.x4_c01310{left:152.829333pt;}
.x1d_c01310{left:163.148000pt;}
.xd5_c01310{left:165.600000pt;}
.x8d_c01310{left:167.339620pt;}
.xbf_c01310{left:170.158667pt;}
.x47_c01310{left:176.052969pt;}
.xa2_c01310{left:180.386667pt;}
.x11_c01310{left:182.654667pt;}
.x37_c01310{left:183.718296pt;}
.x5b_c01310{left:185.132333pt;}
.x6a_c01310{left:187.249333pt;}
.xc9_c01310{left:191.036000pt;}
.x2a_c01310{left:193.078975pt;}
.x84_c01310{left:197.354660pt;}
.x1e_c01310{left:202.057333pt;}
.x41_c01310{left:203.858013pt;}
.xa3_c01310{left:208.997333pt;}
.xb6_c01310{left:210.238667pt;}
.x5_c01310{left:211.854667pt;}
.x7c_c01310{left:216.528433pt;}
.xab_c01310{left:218.454667pt;}
.xca_c01310{left:221.516000pt;}
.x2b_c01310{left:222.609025pt;}
.x62_c01310{left:224.740000pt;}
.x6b_c01310{left:227.106667pt;}
.x23_c01310{left:230.724000pt;}
.x50_c01310{left:233.588000pt;}
.x73_c01310{left:235.515413pt;}
.x85_c01310{left:236.958460pt;}
.x98_c01310{left:239.842160pt;}
.xcf_c01310{left:240.956000pt;}
.x31_c01310{left:242.744620pt;}
.xac_c01310{left:247.746667pt;}
.x6_c01310{left:250.021333pt;}
.x38_c01310{left:251.398677pt;}
.x42_c01310{left:252.852987pt;}
.x51_c01310{left:254.237333pt;}
.x8e_c01310{left:258.324953pt;}
.xcb_c01310{left:259.676000pt;}
.x24_c01310{left:261.220000pt;}
.x32_c01310{left:262.936200pt;}
.x63_c01310{left:265.064000pt;}
.xd6_c01310{left:270.480000pt;}
.x99_c01310{left:275.354160pt;}
.x7_c01310{left:279.065333pt;}
.x39_c01310{left:282.123581pt;}
.x43_c01310{left:283.333676pt;}
.x8f_c01310{left:285.907620pt;}
.xa4_c01310{left:296.160000pt;}
.x12_c01310{left:298.996000pt;}
.x5c_c01310{left:303.699621pt;}
.x9a_c01310{left:305.832827pt;}
.xb7_c01310{left:307.198667pt;}
.xad_c01310{left:308.225333pt;}
.x1f_c01310{left:309.586667pt;}
.x74_c01310{left:314.013300pt;}
.x90_c01310{left:315.190287pt;}
.x48_c01310{left:322.961583pt;}
.x86_c01310{left:324.792687pt;}
.xd0_c01310{left:328.076000pt;}
.x13_c01310{left:329.236000pt;}
.xd9_c01310{left:330.621333pt;}
.x6c_c01310{left:332.704000pt;}
.x7d_c01310{left:335.581767pt;}
.xb8_c01310{left:336.478667pt;}
.x8_c01310{left:338.612000pt;}
.x25_c01310{left:340.173333pt;}
.x75_c01310{left:343.535673pt;}
.xc0_c01310{left:347.518667pt;}
.x64_c01310{left:352.640000pt;}
.x1_c01310{left:357.120000pt;}
.xda_c01310{left:358.460000pt;}
.x14_c01310{left:359.364000pt;}
.x44_c01310{left:361.541367pt;}
.x9_c01310{left:367.662667pt;}
.xd7_c01310{left:368.640000pt;}
.x26_c01310{left:369.697333pt;}
.x65_c01310{left:372.581333pt;}
.x87_c01310{left:373.513773pt;}
.xa5_c01310{left:377.040000pt;}
.xcc_c01310{left:379.196000pt;}
.xae_c01310{left:385.249333pt;}
.xd1_c01310{left:388.796000pt;}
.x3a_c01310{left:390.340736pt;}
.x5d_c01310{left:392.473752pt;}
.x6d_c01310{left:393.664000pt;}
.xa6_c01310{left:395.280000pt;}
.xdb_c01310{left:398.785333pt;}
.x49_c01310{left:401.135157pt;}
.x52_c01310{left:402.320000pt;}
.x88_c01310{left:403.753620pt;}
.xaf_c01310{left:405.425333pt;}
.xb9_c01310{left:406.558667pt;}
.x45_c01310{left:411.013664pt;}
.x2_c01310{left:416.160000pt;}
.x33_c01310{left:418.694267pt;}
.x7e_c01310{left:423.408433pt;}
.xc1_c01310{left:425.518667pt;}
.x4a_c01310{left:429.965423pt;}
.x76_c01310{left:432.337453pt;}
.xa_c01310{left:435.580000pt;}
.x20_c01310{left:437.940000pt;}
.x66_c01310{left:441.949333pt;}
.xb0_c01310{left:444.532000pt;}
.x2c_c01310{left:448.221627pt;}
.x7f_c01310{left:453.424433pt;}
.x15_c01310{left:457.444000pt;}
.x4b_c01310{left:460.207669pt;}
.x67_c01310{left:461.144000pt;}
.x9b_c01310{left:462.538160pt;}
.x27_c01310{left:467.378667pt;}
.x3b_c01310{left:469.779625pt;}
.x6e_c01310{left:471.666667pt;}
.xa7_c01310{left:473.760000pt;}
.xc2_c01310{left:475.438667pt;}
.xcd_c01310{left:476.396000pt;}
.xb1_c01310{left:483.424000pt;}
.x19_c01310{left:486.653827pt;}
.x2d_c01310{left:488.778111pt;}
.x68_c01310{left:491.128000pt;}
.x3c_c01310{left:498.821881pt;}
.x53_c01310{left:499.757333pt;}
.x89_c01310{left:501.438467pt;}
.x9c_c01310{left:503.595493pt;}
.xb_c01310{left:506.345333pt;}
.xdc_c01310{left:507.258667pt;}
.x77_c01310{left:511.537993pt;}
.xa8_c01310{left:514.560000pt;}
.x1a_c01310{left:517.188493pt;}
.x91_c01310{left:521.591620pt;}
.xb2_c01310{left:523.266667pt;}
.xba_c01310{left:524.638667pt;}
.x34_c01310{left:527.153323pt;}
.x80_c01310{left:530.948433pt;}
.xc3_c01310{left:534.238667pt;}
.x3d_c01310{left:537.729340pt;}
.xc_c01310{left:544.985333pt;}
.x4c_c01310{left:548.282437pt;}
.x54_c01310{left:549.201333pt;}
.x92_c01310{left:551.355620pt;}
.x35_c01310{left:556.467373pt;}
.x6f_c01310{left:559.510667pt;}
.x16_c01310{left:565.200000pt;}
.x9d_c01310{left:570.783493pt;}
.xc6_c01310{left:573.178667pt;}
.xd_c01310{left:574.304000pt;}
.x4d_c01310{left:577.327360pt;}
.x69_c01310{left:578.272000pt;}
.x55_c01310{left:579.681333pt;}
.x93_c01310{left:580.874287pt;}
.xbb_c01310{left:582.718667pt;}
.xd2_c01310{left:594.476000pt;}
.x56_c01310{left:597.682667pt;}
.x78_c01310{left:599.361113pt;}
.x9e_c01310{left:601.044827pt;}
.xb3_c01310{left:601.985333pt;}
.xe_c01310{left:603.584000pt;}
.xc7_c01310{left:604.620000pt;}
.x2e_c01310{left:605.896980pt;}
.x28_c01310{left:606.821333pt;}
.x5e_c01310{left:608.021797pt;}
.x8a_c01310{left:610.400587pt;}
.x94_c01310{left:611.595620pt;}
.x21_c01310{left:616.029333pt;}
.x3e_c01310{left:616.933563pt;}
.x70_c01310{left:619.016000pt;}
.xa9_c01310{left:622.560000pt;}
.xd8_c01310{left:624.000000pt;}
.x57_c01310{left:627.909333pt;}
.x2f_c01310{left:635.421697pt;}
.x5f_c01310{left:637.784288pt;}
.x71_c01310{left:638.712000pt;}
.x1b_c01310{left:645.096493pt;}
.x81_c01310{left:648.788433pt;}
.x9f_c01310{left:651.180827pt;}
.xc4_c01310{left:652.318667pt;}
.xd3_c01310{left:654.476000pt;}
.xbc_c01310{left:661.198667pt;}
.xf_c01310{left:664.024000pt;}
.x36_c01310{left:666.139735pt;}
.xaa_c01310{left:671.520000pt;}
.xce_c01310{left:673.196000pt;}
.x1c_c01310{left:675.567160pt;}
.x95_c01310{left:678.792953pt;}
.xc5_c01310{left:682.078667pt;}
.x58_c01310{left:686.484000pt;}
.x8b_c01310{left:687.917533pt;}
.x46_c01310{left:695.647681pt;}
.x60_c01310{left:697.063936pt;}
.x79_c01310{left:698.498787pt;}
.xa0_c01310{left:699.916827pt;}
.xbd_c01310{left:701.758667pt;}
.x17_c01310{left:703.189333pt;}
.x10_c01310{left:704.138667pt;}
.x96_c01310{left:709.034287pt;}
.xc8_c01310{left:713.090667pt;}
.x3f_c01310{left:715.325515pt;}
.x59_c01310{left:716.489333pt;}
.x82_c01310{left:717.892433pt;}
.xb4_c01310{left:720.061333pt;}
.x22_c01310{left:723.580000pt;}
.x30_c01310{left:724.909155pt;}
.x72_c01310{left:726.788000pt;}
.x4e_c01310{left:735.483815pt;}
.x83_c01310{left:738.308433pt;}
.x61_c01310{left:746.259640pt;}
.x7a_c01310{left:747.450300pt;}
.x8c_c01310{left:799.571640pt;}
.x97_c01310{left:801.487620pt;}
.x40_c01310{left:803.184283pt;}
}





/* 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_c01311 {
    display:none;
  }
  .loading-indicator_c01311.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01311 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_c01311 { 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_c01311" -> "#page-container .classname_c01311")
 */
.pf_c01311 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01311 { /* 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_c01311.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01311 { /* 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_c01311 { /* 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_c01311 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01311 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01311 {overflow:visible;}
  }
}
.c_c01311 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01311 { /* 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_c01311:after { /* webkit #35443 */
  content: '';
}
.t_c01311:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01311 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 */
}
.__c01311 { /* 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_c01311 { /* info for Javascript */
  display:none;
}
.l_c01311 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01311 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01311 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01311: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_c01311 {
    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_c01311.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01311.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_c01311 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01311{font-family:sans-serif;visibility:hidden;}
.sc__c01311{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01311{-webkit-text-stroke:0px transparent;}
}
.y0_c01311{bottom:0.000000px;}
.h1_c01311{height:1250.250000px;}
.h0_c01311{height:1250.370000px;}
.w1_c01311{width:912.000000px;}
.w0_c01311{width:912.300000px;}
.x0_c01311{left:0.000000px;}
@media print{
.y0_c01311{bottom:0.000000pt;}
.h1_c01311{height:1111.333333pt;}
.h0_c01311{height:1111.440000pt;}
.w1_c01311{width:810.666667pt;}
.w0_c01311{width:810.933333pt;}
.x0_c01311{left:0.000000pt;}
}





/* 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_c01312 {
    display:none;
  }
  .loading-indicator_c01312.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01312 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_c01312 { 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_c01312" -> "#page-container .classname_c01312")
 */
.pf_c01312 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01312 { /* 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_c01312.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01312 { /* 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_c01312 { /* 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_c01312 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01312 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01312 {overflow:visible;}
  }
}
.c_c01312 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01312 { /* 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_c01312:after { /* webkit #35443 */
  content: '';
}
.t_c01312:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01312 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 */
}
.__c01312 { /* 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_c01312 { /* info for Javascript */
  display:none;
}
.l_c01312 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01312 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01312 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01312: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_c01312 {
    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_c01312.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01312.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_c01312 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01312{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01312;src:url('chunks/assets/font_53ec0c54e60da7c2d414b553.woff2')format("woff");}.ff1_c01312{font-family:ff1_c01312;line-height:1.000000;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;}
.m148_c01312{transform:matrix(0.010162,0.000254,-0.006248,0.249922,0,0);-ms-transform:matrix(0.010162,0.000254,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.010162,0.000254,-0.006248,0.249922,0,0);}
.mc9_c01312{transform:matrix(0.031339,0.000627,-0.004999,0.249950,0,0);-ms-transform:matrix(0.031339,0.000627,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.031339,0.000627,-0.004999,0.249950,0,0);}
.me9_c01312{transform:matrix(0.066572,0.001331,-0.004999,0.249950,0,0);-ms-transform:matrix(0.066572,0.001331,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.066572,0.001331,-0.004999,0.249950,0,0);}
.m166_c01312{transform:matrix(0.108604,0.002606,-0.005998,0.249928,0,0);-ms-transform:matrix(0.108604,0.002606,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.108604,0.002606,-0.005998,0.249928,0,0);}
.m160_c01312{transform:matrix(0.124215,0.003354,-0.006748,0.249909,0,0);-ms-transform:matrix(0.124215,0.003354,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.124215,0.003354,-0.006748,0.249909,0,0);}
.m110_c01312{transform:matrix(0.151280,0.003026,-0.004999,0.249950,0,0);-ms-transform:matrix(0.151280,0.003026,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.151280,0.003026,-0.004999,0.249950,0,0);}
.m130_c01312{transform:matrix(0.157291,0.003932,-0.006248,0.249922,0,0);-ms-transform:matrix(0.157291,0.003932,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.157291,0.003932,-0.006248,0.249922,0,0);}
.m10c_c01312{transform:matrix(0.158968,0.003179,-0.004999,0.249950,0,0);-ms-transform:matrix(0.158968,0.003179,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.158968,0.003179,-0.004999,0.249950,0,0);}
.m0_c01312{transform:matrix(0.175585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175585,0.000000,0.000000,0.250000,0,0);}
.md5_c01312{transform:matrix(0.177280,0.003546,-0.004999,0.249950,0,0);-ms-transform:matrix(0.177280,0.003546,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.177280,0.003546,-0.004999,0.249950,0,0);}
.m21_c01312{transform:matrix(0.179547,0.002873,-0.003999,0.249968,0,0);-ms-transform:matrix(0.179547,0.002873,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.179547,0.002873,-0.003999,0.249968,0,0);}
.mfc_c01312{transform:matrix(0.188787,0.003776,-0.004999,0.249950,0,0);-ms-transform:matrix(0.188787,0.003776,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.188787,0.003776,-0.004999,0.249950,0,0);}
.m124_c01312{transform:matrix(0.190740,0.004769,-0.006248,0.249922,0,0);-ms-transform:matrix(0.190740,0.004769,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.190740,0.004769,-0.006248,0.249922,0,0);}
.m67_c01312{transform:matrix(0.192352,0.001154,-0.001500,0.249996,0,0);-ms-transform:matrix(0.192352,0.001154,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.192352,0.001154,-0.001500,0.249996,0,0);}
.m126_c01312{transform:matrix(0.193540,0.004838,-0.006248,0.249922,0,0);-ms-transform:matrix(0.193540,0.004838,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.193540,0.004838,-0.006248,0.249922,0,0);}
.m104_c01312{transform:matrix(0.198000,0.003960,-0.004999,0.249950,0,0);-ms-transform:matrix(0.198000,0.003960,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.198000,0.003960,-0.004999,0.249950,0,0);}
.m116_c01312{transform:matrix(0.198583,0.004965,-0.006248,0.249922,0,0);-ms-transform:matrix(0.198583,0.004965,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.198583,0.004965,-0.006248,0.249922,0,0);}
.md7_c01312{transform:matrix(0.198750,0.003975,-0.004999,0.249950,0,0);-ms-transform:matrix(0.198750,0.003975,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.198750,0.003975,-0.004999,0.249950,0,0);}
.m119_c01312{transform:matrix(0.199308,0.004983,-0.006248,0.249922,0,0);-ms-transform:matrix(0.199308,0.004983,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.199308,0.004983,-0.006248,0.249922,0,0);}
.m72_c01312{transform:matrix(0.199716,0.001198,-0.001500,0.249996,0,0);-ms-transform:matrix(0.199716,0.001198,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.199716,0.001198,-0.001500,0.249996,0,0);}
.m120_c01312{transform:matrix(0.200957,0.005024,-0.006248,0.249922,0,0);-ms-transform:matrix(0.200957,0.005024,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.200957,0.005024,-0.006248,0.249922,0,0);}
.m107_c01312{transform:matrix(0.203704,0.004074,-0.004999,0.249950,0,0);-ms-transform:matrix(0.203704,0.004074,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.203704,0.004074,-0.004999,0.249950,0,0);}
.m5d_c01312{transform:matrix(0.204034,0.003265,-0.003999,0.249968,0,0);-ms-transform:matrix(0.204034,0.003265,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.204034,0.003265,-0.003999,0.249968,0,0);}
.m167_c01312{transform:matrix(0.204996,0.004920,-0.005998,0.249928,0,0);-ms-transform:matrix(0.204996,0.004920,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.204996,0.004920,-0.005998,0.249928,0,0);}
.mba_c01312{transform:matrix(0.205049,0.004101,-0.004999,0.249950,0,0);-ms-transform:matrix(0.205049,0.004101,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.205049,0.004101,-0.004999,0.249950,0,0);}
.m1f_c01312{transform:matrix(0.205074,0.003281,-0.003999,0.249968,0,0);-ms-transform:matrix(0.205074,0.003281,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.205074,0.003281,-0.003999,0.249968,0,0);}
.m14a_c01312{transform:matrix(0.206395,0.005573,-0.006748,0.249909,0,0);-ms-transform:matrix(0.206395,0.005573,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.206395,0.005573,-0.006748,0.249909,0,0);}
.m115_c01312{transform:matrix(0.206404,0.004128,-0.004999,0.249950,0,0);-ms-transform:matrix(0.206404,0.004128,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.206404,0.004128,-0.004999,0.249950,0,0);}
.m6a_c01312{transform:matrix(0.206646,0.001240,-0.001500,0.249996,0,0);-ms-transform:matrix(0.206646,0.001240,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.206646,0.001240,-0.001500,0.249996,0,0);}
.m11c_c01312{transform:matrix(0.208910,0.005223,-0.006248,0.249922,0,0);-ms-transform:matrix(0.208910,0.005223,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.208910,0.005223,-0.006248,0.249922,0,0);}
.m139_c01312{transform:matrix(0.209155,0.005229,-0.006248,0.249922,0,0);-ms-transform:matrix(0.209155,0.005229,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.209155,0.005229,-0.006248,0.249922,0,0);}
.m98_c01312{transform:matrix(0.209178,0.004184,-0.004999,0.249950,0,0);-ms-transform:matrix(0.209178,0.004184,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.209178,0.004184,-0.004999,0.249950,0,0);}
.mcd_c01312{transform:matrix(0.209258,0.004185,-0.004999,0.249950,0,0);-ms-transform:matrix(0.209258,0.004185,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.209258,0.004185,-0.004999,0.249950,0,0);}
.m13f_c01312{transform:matrix(0.210959,0.005274,-0.006248,0.249922,0,0);-ms-transform:matrix(0.210959,0.005274,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.210959,0.005274,-0.006248,0.249922,0,0);}
.m95_c01312{transform:matrix(0.212143,0.004243,-0.004999,0.249950,0,0);-ms-transform:matrix(0.212143,0.004243,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.212143,0.004243,-0.004999,0.249950,0,0);}
.m112_c01312{transform:matrix(0.212792,0.004256,-0.004999,0.249950,0,0);-ms-transform:matrix(0.212792,0.004256,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.212792,0.004256,-0.004999,0.249950,0,0);}
.m169_c01312{transform:matrix(0.213299,0.005119,-0.005998,0.249928,0,0);-ms-transform:matrix(0.213299,0.005119,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.213299,0.005119,-0.005998,0.249928,0,0);}
.m142_c01312{transform:matrix(0.213543,0.005339,-0.006248,0.249922,0,0);-ms-transform:matrix(0.213543,0.005339,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.213543,0.005339,-0.006248,0.249922,0,0);}
.mfb_c01312{transform:matrix(0.213652,0.004273,-0.004999,0.249950,0,0);-ms-transform:matrix(0.213652,0.004273,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.213652,0.004273,-0.004999,0.249950,0,0);}
.mb9_c01312{transform:matrix(0.213957,0.004279,-0.004999,0.249950,0,0);-ms-transform:matrix(0.213957,0.004279,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.213957,0.004279,-0.004999,0.249950,0,0);}
.m12c_c01312{transform:matrix(0.214598,0.005365,-0.006248,0.249922,0,0);-ms-transform:matrix(0.214598,0.005365,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.214598,0.005365,-0.006248,0.249922,0,0);}
.m16b_c01312{transform:matrix(0.215128,0.005163,-0.005998,0.249928,0,0);-ms-transform:matrix(0.215128,0.005163,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.215128,0.005163,-0.005998,0.249928,0,0);}
.m24_c01312{transform:matrix(0.216072,0.003457,-0.003999,0.249968,0,0);-ms-transform:matrix(0.216072,0.003457,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.216072,0.003457,-0.003999,0.249968,0,0);}
.m10e_c01312{transform:matrix(0.216272,0.004325,-0.004999,0.249950,0,0);-ms-transform:matrix(0.216272,0.004325,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.216272,0.004325,-0.004999,0.249950,0,0);}
.m10b_c01312{transform:matrix(0.216402,0.004328,-0.004999,0.249950,0,0);-ms-transform:matrix(0.216402,0.004328,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.216402,0.004328,-0.004999,0.249950,0,0);}
.m105_c01312{transform:matrix(0.216597,0.004332,-0.004999,0.249950,0,0);-ms-transform:matrix(0.216597,0.004332,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.216597,0.004332,-0.004999,0.249950,0,0);}
.me2_c01312{transform:matrix(0.216747,0.004335,-0.004999,0.249950,0,0);-ms-transform:matrix(0.216747,0.004335,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.216747,0.004335,-0.004999,0.249950,0,0);}
.m34_c01312{transform:matrix(0.216967,0.003471,-0.003999,0.249968,0,0);-ms-transform:matrix(0.216967,0.003471,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.216967,0.003471,-0.003999,0.249968,0,0);}
.m2c_c01312{transform:matrix(0.216982,0.003472,-0.003999,0.249968,0,0);-ms-transform:matrix(0.216982,0.003472,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.216982,0.003472,-0.003999,0.249968,0,0);}
.m16d_c01312{transform:matrix(0.217542,0.005221,-0.005998,0.249928,0,0);-ms-transform:matrix(0.217542,0.005221,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.217542,0.005221,-0.005998,0.249928,0,0);}
.m88_c01312{transform:matrix(0.217736,0.004355,-0.004999,0.249950,0,0);-ms-transform:matrix(0.217736,0.004355,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.217736,0.004355,-0.004999,0.249950,0,0);}
.m13d_c01312{transform:matrix(0.217882,0.005447,-0.006248,0.249922,0,0);-ms-transform:matrix(0.217882,0.005447,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.217882,0.005447,-0.006248,0.249922,0,0);}
.mfa_c01312{transform:matrix(0.218021,0.004360,-0.004999,0.249950,0,0);-ms-transform:matrix(0.218021,0.004360,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.218021,0.004360,-0.004999,0.249950,0,0);}
.m162_c01312{transform:matrix(0.218057,0.005233,-0.005998,0.249928,0,0);-ms-transform:matrix(0.218057,0.005233,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.218057,0.005233,-0.005998,0.249928,0,0);}
.m14b_c01312{transform:matrix(0.218175,0.005891,-0.006748,0.249909,0,0);-ms-transform:matrix(0.218175,0.005891,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.218175,0.005891,-0.006748,0.249909,0,0);}
.m163_c01312{transform:matrix(0.218317,0.005240,-0.005998,0.249928,0,0);-ms-transform:matrix(0.218317,0.005240,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.218317,0.005240,-0.005998,0.249928,0,0);}
.m117_c01312{transform:matrix(0.218692,0.005467,-0.006248,0.249922,0,0);-ms-transform:matrix(0.218692,0.005467,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.218692,0.005467,-0.006248,0.249922,0,0);}
.m109_c01312{transform:matrix(0.218711,0.004374,-0.004999,0.249950,0,0);-ms-transform:matrix(0.218711,0.004374,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.218711,0.004374,-0.004999,0.249950,0,0);}
.m103_c01312{transform:matrix(0.218866,0.004377,-0.004999,0.249950,0,0);-ms-transform:matrix(0.218866,0.004377,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.218866,0.004377,-0.004999,0.249950,0,0);}
.m25_c01312{transform:matrix(0.219037,0.003505,-0.003999,0.249968,0,0);-ms-transform:matrix(0.219037,0.003505,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.219037,0.003505,-0.003999,0.249968,0,0);}
.m108_c01312{transform:matrix(0.219526,0.004391,-0.004999,0.249950,0,0);-ms-transform:matrix(0.219526,0.004391,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.219526,0.004391,-0.004999,0.249950,0,0);}
.me4_c01312{transform:matrix(0.219816,0.004396,-0.004999,0.249950,0,0);-ms-transform:matrix(0.219816,0.004396,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.219816,0.004396,-0.004999,0.249950,0,0);}
.mf6_c01312{transform:matrix(0.220086,0.004402,-0.004999,0.249950,0,0);-ms-transform:matrix(0.220086,0.004402,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.220086,0.004402,-0.004999,0.249950,0,0);}
.m168_c01312{transform:matrix(0.220437,0.005290,-0.005998,0.249928,0,0);-ms-transform:matrix(0.220437,0.005290,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.220437,0.005290,-0.005998,0.249928,0,0);}
.m11b_c01312{transform:matrix(0.220936,0.005523,-0.006248,0.249922,0,0);-ms-transform:matrix(0.220936,0.005523,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.220936,0.005523,-0.006248,0.249922,0,0);}
.m30_c01312{transform:matrix(0.221052,0.003537,-0.003999,0.249968,0,0);-ms-transform:matrix(0.221052,0.003537,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.221052,0.003537,-0.003999,0.249968,0,0);}
.mc6_c01312{transform:matrix(0.221901,0.004438,-0.004999,0.249950,0,0);-ms-transform:matrix(0.221901,0.004438,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.221901,0.004438,-0.004999,0.249950,0,0);}
.m32_c01312{transform:matrix(0.222212,0.003555,-0.003999,0.249968,0,0);-ms-transform:matrix(0.222212,0.003555,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.222212,0.003555,-0.003999,0.249968,0,0);}
.m1a_c01312{transform:matrix(0.222397,0.003558,-0.003999,0.249968,0,0);-ms-transform:matrix(0.222397,0.003558,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.222397,0.003558,-0.003999,0.249968,0,0);}
.m157_c01312{transform:matrix(0.222434,0.006006,-0.006748,0.249909,0,0);-ms-transform:matrix(0.222434,0.006006,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.222434,0.006006,-0.006748,0.249909,0,0);}
.m125_c01312{transform:matrix(0.222470,0.005562,-0.006248,0.249922,0,0);-ms-transform:matrix(0.222470,0.005562,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.222470,0.005562,-0.006248,0.249922,0,0);}
.m12e_c01312{transform:matrix(0.222775,0.005569,-0.006248,0.249922,0,0);-ms-transform:matrix(0.222775,0.005569,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.222775,0.005569,-0.006248,0.249922,0,0);}
.med_c01312{transform:matrix(0.222895,0.004458,-0.004999,0.249950,0,0);-ms-transform:matrix(0.222895,0.004458,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.222895,0.004458,-0.004999,0.249950,0,0);}
.m26_c01312{transform:matrix(0.222896,0.003566,-0.003999,0.249968,0,0);-ms-transform:matrix(0.222896,0.003566,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.222896,0.003566,-0.003999,0.249968,0,0);}
.m11d_c01312{transform:matrix(0.223075,0.005577,-0.006248,0.249922,0,0);-ms-transform:matrix(0.223075,0.005577,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.223075,0.005577,-0.006248,0.249922,0,0);}
.mb4_c01312{transform:matrix(0.223110,0.004462,-0.004999,0.249950,0,0);-ms-transform:matrix(0.223110,0.004462,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.223110,0.004462,-0.004999,0.249950,0,0);}
.mec_c01312{transform:matrix(0.223335,0.004467,-0.004999,0.249950,0,0);-ms-transform:matrix(0.223335,0.004467,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.223335,0.004467,-0.004999,0.249950,0,0);}
.m151_c01312{transform:matrix(0.223988,0.006048,-0.006748,0.249909,0,0);-ms-transform:matrix(0.223988,0.006048,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.223988,0.006048,-0.006748,0.249909,0,0);}
.m7f_c01312{transform:matrix(0.224756,0.004945,-0.005499,0.249940,0,0);-ms-transform:matrix(0.224756,0.004945,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.224756,0.004945,-0.005499,0.249940,0,0);}
.mb5_c01312{transform:matrix(0.224980,0.004500,-0.004999,0.249950,0,0);-ms-transform:matrix(0.224980,0.004500,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.224980,0.004500,-0.004999,0.249950,0,0);}
.m11e_c01312{transform:matrix(0.225140,0.005628,-0.006248,0.249922,0,0);-ms-transform:matrix(0.225140,0.005628,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.225140,0.005628,-0.006248,0.249922,0,0);}
.mdc_c01312{transform:matrix(0.225380,0.004508,-0.004999,0.249950,0,0);-ms-transform:matrix(0.225380,0.004508,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.225380,0.004508,-0.004999,0.249950,0,0);}
.m145_c01312{transform:matrix(0.225555,0.005639,-0.006248,0.249922,0,0);-ms-transform:matrix(0.225555,0.005639,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.225555,0.005639,-0.006248,0.249922,0,0);}
.m69_c01312{transform:matrix(0.225596,0.001354,-0.001500,0.249996,0,0);-ms-transform:matrix(0.225596,0.001354,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.225596,0.001354,-0.001500,0.249996,0,0);}
.m68_c01312{transform:matrix(0.226031,0.001356,-0.001500,0.249996,0,0);-ms-transform:matrix(0.226031,0.001356,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.226031,0.001356,-0.001500,0.249996,0,0);}
.m122_c01312{transform:matrix(0.226669,0.005667,-0.006248,0.249922,0,0);-ms-transform:matrix(0.226669,0.005667,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.226669,0.005667,-0.006248,0.249922,0,0);}
.m118_c01312{transform:matrix(0.226719,0.005668,-0.006248,0.249922,0,0);-ms-transform:matrix(0.226719,0.005668,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.226719,0.005668,-0.006248,0.249922,0,0);}
.m57_c01312{transform:matrix(0.226976,0.003632,-0.003999,0.249968,0,0);-ms-transform:matrix(0.226976,0.003632,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.226976,0.003632,-0.003999,0.249968,0,0);}
.mf1_c01312{transform:matrix(0.227000,0.004540,-0.004999,0.249950,0,0);-ms-transform:matrix(0.227000,0.004540,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.227000,0.004540,-0.004999,0.249950,0,0);}
.m16c_c01312{transform:matrix(0.227120,0.005451,-0.005998,0.249928,0,0);-ms-transform:matrix(0.227120,0.005451,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.227120,0.005451,-0.005998,0.249928,0,0);}
.mf3_c01312{transform:matrix(0.227215,0.004544,-0.004999,0.249950,0,0);-ms-transform:matrix(0.227215,0.004544,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.227215,0.004544,-0.004999,0.249950,0,0);}
.mf8_c01312{transform:matrix(0.227649,0.004553,-0.004999,0.249950,0,0);-ms-transform:matrix(0.227649,0.004553,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.227649,0.004553,-0.004999,0.249950,0,0);}
.mbb_c01312{transform:matrix(0.227744,0.004555,-0.004999,0.249950,0,0);-ms-transform:matrix(0.227744,0.004555,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.227744,0.004555,-0.004999,0.249950,0,0);}
.m165_c01312{transform:matrix(0.227934,0.005470,-0.005998,0.249928,0,0);-ms-transform:matrix(0.227934,0.005470,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.227934,0.005470,-0.005998,0.249928,0,0);}
.m106_c01312{transform:matrix(0.228154,0.004563,-0.004999,0.249950,0,0);-ms-transform:matrix(0.228154,0.004563,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.228154,0.004563,-0.004999,0.249950,0,0);}
.m13b_c01312{transform:matrix(0.228374,0.005709,-0.006248,0.249922,0,0);-ms-transform:matrix(0.228374,0.005709,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.228374,0.005709,-0.006248,0.249922,0,0);}
.m1c_c01312{transform:matrix(0.228391,0.003654,-0.003999,0.249968,0,0);-ms-transform:matrix(0.228391,0.003654,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.228391,0.003654,-0.003999,0.249968,0,0);}
.ma8_c01312{transform:matrix(0.228549,0.004571,-0.004999,0.249950,0,0);-ms-transform:matrix(0.228549,0.004571,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.228549,0.004571,-0.004999,0.249950,0,0);}
.md3_c01312{transform:matrix(0.229174,0.004583,-0.004999,0.249950,0,0);-ms-transform:matrix(0.229174,0.004583,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.229174,0.004583,-0.004999,0.249950,0,0);}
.mea_c01312{transform:matrix(0.229354,0.004587,-0.004999,0.249950,0,0);-ms-transform:matrix(0.229354,0.004587,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.229354,0.004587,-0.004999,0.249950,0,0);}
.m123_c01312{transform:matrix(0.229363,0.005734,-0.006248,0.249922,0,0);-ms-transform:matrix(0.229363,0.005734,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.229363,0.005734,-0.006248,0.249922,0,0);}
.md8_c01312{transform:matrix(0.229799,0.004596,-0.004999,0.249950,0,0);-ms-transform:matrix(0.229799,0.004596,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.229799,0.004596,-0.004999,0.249950,0,0);}
.me1_c01312{transform:matrix(0.229904,0.004598,-0.004999,0.249950,0,0);-ms-transform:matrix(0.229904,0.004598,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.229904,0.004598,-0.004999,0.249950,0,0);}
.m133_c01312{transform:matrix(0.229973,0.005749,-0.006248,0.249922,0,0);-ms-transform:matrix(0.229973,0.005749,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.229973,0.005749,-0.006248,0.249922,0,0);}
.m6d_c01312{transform:matrix(0.230026,0.001380,-0.001500,0.249996,0,0);-ms-transform:matrix(0.230026,0.001380,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.230026,0.001380,-0.001500,0.249996,0,0);}
.mc8_c01312{transform:matrix(0.230099,0.004602,-0.004999,0.249950,0,0);-ms-transform:matrix(0.230099,0.004602,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.230099,0.004602,-0.004999,0.249950,0,0);}
.m8a_c01312{transform:matrix(0.230379,0.004608,-0.004999,0.249950,0,0);-ms-transform:matrix(0.230379,0.004608,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.230379,0.004608,-0.004999,0.249950,0,0);}
.m14c_c01312{transform:matrix(0.230976,0.006236,-0.006748,0.249909,0,0);-ms-transform:matrix(0.230976,0.006236,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.230976,0.006236,-0.006748,0.249909,0,0);}
.m16a_c01312{transform:matrix(0.231063,0.005546,-0.005998,0.249928,0,0);-ms-transform:matrix(0.231063,0.005546,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.231063,0.005546,-0.005998,0.249928,0,0);}
.m13_c01312{transform:matrix(0.231130,0.003698,-0.003999,0.249968,0,0);-ms-transform:matrix(0.231130,0.003698,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.231130,0.003698,-0.003999,0.249968,0,0);}
.m146_c01312{transform:matrix(0.231148,0.005779,-0.006248,0.249922,0,0);-ms-transform:matrix(0.231148,0.005779,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.231148,0.005779,-0.006248,0.249922,0,0);}
.m22_c01312{transform:matrix(0.231525,0.003704,-0.003999,0.249968,0,0);-ms-transform:matrix(0.231525,0.003704,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.231525,0.003704,-0.003999,0.249968,0,0);}
.m7e_c01312{transform:matrix(0.231564,0.005094,-0.005499,0.249940,0,0);-ms-transform:matrix(0.231564,0.005094,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.231564,0.005094,-0.005499,0.249940,0,0);}
.m94_c01312{transform:matrix(0.231774,0.004635,-0.004999,0.249950,0,0);-ms-transform:matrix(0.231774,0.004635,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.231774,0.004635,-0.004999,0.249950,0,0);}
.mb7_c01312{transform:matrix(0.231829,0.004637,-0.004999,0.249950,0,0);-ms-transform:matrix(0.231829,0.004637,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.231829,0.004637,-0.004999,0.249950,0,0);}
.mef_c01312{transform:matrix(0.232289,0.004646,-0.004999,0.249950,0,0);-ms-transform:matrix(0.232289,0.004646,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.232289,0.004646,-0.004999,0.249950,0,0);}
.m7a_c01312{transform:matrix(0.232334,0.005111,-0.005499,0.249940,0,0);-ms-transform:matrix(0.232334,0.005111,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.232334,0.005111,-0.005499,0.249940,0,0);}
.m113_c01312{transform:matrix(0.232409,0.004648,-0.004999,0.249950,0,0);-ms-transform:matrix(0.232409,0.004648,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.232409,0.004648,-0.004999,0.249950,0,0);}
.m13c_c01312{transform:matrix(0.232517,0.005813,-0.006248,0.249922,0,0);-ms-transform:matrix(0.232517,0.005813,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.232517,0.005813,-0.006248,0.249922,0,0);}
.m9f_c01312{transform:matrix(0.232938,0.004659,-0.004999,0.249950,0,0);-ms-transform:matrix(0.232938,0.004659,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.232938,0.004659,-0.004999,0.249950,0,0);}
.m14e_c01312{transform:matrix(0.233040,0.006292,-0.006748,0.249909,0,0);-ms-transform:matrix(0.233040,0.006292,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.233040,0.006292,-0.006748,0.249909,0,0);}
.mc0_c01312{transform:matrix(0.233078,0.004662,-0.004999,0.249950,0,0);-ms-transform:matrix(0.233078,0.004662,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.233078,0.004662,-0.004999,0.249950,0,0);}
.m13a_c01312{transform:matrix(0.233802,0.005845,-0.006248,0.249922,0,0);-ms-transform:matrix(0.233802,0.005845,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.233802,0.005845,-0.006248,0.249922,0,0);}
.m143_c01312{transform:matrix(0.234002,0.005850,-0.006248,0.249922,0,0);-ms-transform:matrix(0.234002,0.005850,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.234002,0.005850,-0.006248,0.249922,0,0);}
.m90_c01312{transform:matrix(0.234113,0.004682,-0.004999,0.249950,0,0);-ms-transform:matrix(0.234113,0.004682,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.234113,0.004682,-0.004999,0.249950,0,0);}
.m23_c01312{transform:matrix(0.234450,0.003751,-0.003999,0.249968,0,0);-ms-transform:matrix(0.234450,0.003751,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.234450,0.003751,-0.003999,0.249968,0,0);}
.m1e_c01312{transform:matrix(0.234480,0.003752,-0.003999,0.249968,0,0);-ms-transform:matrix(0.234480,0.003752,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.234480,0.003752,-0.003999,0.249968,0,0);}
.m20_c01312{transform:matrix(0.234570,0.003753,-0.003999,0.249968,0,0);-ms-transform:matrix(0.234570,0.003753,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.234570,0.003753,-0.003999,0.249968,0,0);}
.m136_c01312{transform:matrix(0.235057,0.005876,-0.006248,0.249922,0,0);-ms-transform:matrix(0.235057,0.005876,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.235057,0.005876,-0.006248,0.249922,0,0);}
.m83_c01312{transform:matrix(0.235388,0.004708,-0.004999,0.249950,0,0);-ms-transform:matrix(0.235388,0.004708,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.235388,0.004708,-0.004999,0.249950,0,0);}
.m152_c01312{transform:matrix(0.235399,0.006356,-0.006748,0.249909,0,0);-ms-transform:matrix(0.235399,0.006356,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.235399,0.006356,-0.006748,0.249909,0,0);}
.me5_c01312{transform:matrix(0.235528,0.004711,-0.004999,0.249950,0,0);-ms-transform:matrix(0.235528,0.004711,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.235528,0.004711,-0.004999,0.249950,0,0);}
.m164_c01312{transform:matrix(0.235832,0.005660,-0.005998,0.249928,0,0);-ms-transform:matrix(0.235832,0.005660,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.235832,0.005660,-0.005998,0.249928,0,0);}
.mff_c01312{transform:matrix(0.235913,0.004718,-0.004999,0.249950,0,0);-ms-transform:matrix(0.235913,0.004718,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.235913,0.004718,-0.004999,0.249950,0,0);}
.mdd_c01312{transform:matrix(0.236318,0.004726,-0.004999,0.249950,0,0);-ms-transform:matrix(0.236318,0.004726,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.236318,0.004726,-0.004999,0.249950,0,0);}
.m144_c01312{transform:matrix(0.236496,0.005912,-0.006248,0.249922,0,0);-ms-transform:matrix(0.236496,0.005912,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.236496,0.005912,-0.006248,0.249922,0,0);}
.me6_c01312{transform:matrix(0.236513,0.004730,-0.004999,0.249950,0,0);-ms-transform:matrix(0.236513,0.004730,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.236513,0.004730,-0.004999,0.249950,0,0);}
.mf7_c01312{transform:matrix(0.236808,0.004736,-0.004999,0.249950,0,0);-ms-transform:matrix(0.236808,0.004736,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.236808,0.004736,-0.004999,0.249950,0,0);}
.m28_c01312{transform:matrix(0.236975,0.003792,-0.003999,0.249968,0,0);-ms-transform:matrix(0.236975,0.003792,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.236975,0.003792,-0.003999,0.249968,0,0);}
.m4b_c01312{transform:matrix(0.236995,0.003792,-0.003999,0.249968,0,0);-ms-transform:matrix(0.236995,0.003792,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.236995,0.003792,-0.003999,0.249968,0,0);}
.m35_c01312{transform:matrix(0.237010,0.003792,-0.003999,0.249968,0,0);-ms-transform:matrix(0.237010,0.003792,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.237010,0.003792,-0.003999,0.249968,0,0);}
.mcc_c01312{transform:matrix(0.237043,0.004741,-0.004999,0.249950,0,0);-ms-transform:matrix(0.237043,0.004741,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.237043,0.004741,-0.004999,0.249950,0,0);}
.m4_c01312{transform:matrix(0.237170,0.003795,-0.003999,0.249968,0,0);-ms-transform:matrix(0.237170,0.003795,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.237170,0.003795,-0.003999,0.249968,0,0);}
.m6c_c01312{transform:matrix(0.237781,0.001427,-0.001500,0.249996,0,0);-ms-transform:matrix(0.237781,0.001427,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.237781,0.001427,-0.001500,0.249996,0,0);}
.m137_c01312{transform:matrix(0.237871,0.005947,-0.006248,0.249922,0,0);-ms-transform:matrix(0.237871,0.005947,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.237871,0.005947,-0.006248,0.249922,0,0);}
.mc2_c01312{transform:matrix(0.238172,0.004763,-0.004999,0.249950,0,0);-ms-transform:matrix(0.238172,0.004763,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.238172,0.004763,-0.004999,0.249950,0,0);}
.m75_c01312{transform:matrix(0.238452,0.005246,-0.005499,0.249940,0,0);-ms-transform:matrix(0.238452,0.005246,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.238452,0.005246,-0.005499,0.249940,0,0);}
.m111_c01312{transform:matrix(0.238532,0.004771,-0.004999,0.249950,0,0);-ms-transform:matrix(0.238532,0.004771,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.238532,0.004771,-0.004999,0.249950,0,0);}
.mbc_c01312{transform:matrix(0.238817,0.004776,-0.004999,0.249950,0,0);-ms-transform:matrix(0.238817,0.004776,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.238817,0.004776,-0.004999,0.249950,0,0);}
.m140_c01312{transform:matrix(0.238930,0.005973,-0.006248,0.249922,0,0);-ms-transform:matrix(0.238930,0.005973,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.238930,0.005973,-0.006248,0.249922,0,0);}
.m13e_c01312{transform:matrix(0.238995,0.005975,-0.006248,0.249922,0,0);-ms-transform:matrix(0.238995,0.005975,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.238995,0.005975,-0.006248,0.249922,0,0);}
.m53_c01312{transform:matrix(0.239239,0.003828,-0.003999,0.249968,0,0);-ms-transform:matrix(0.239239,0.003828,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.239239,0.003828,-0.003999,0.249968,0,0);}
.m37_c01312{transform:matrix(0.239264,0.003828,-0.003999,0.249968,0,0);-ms-transform:matrix(0.239264,0.003828,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.239264,0.003828,-0.003999,0.249968,0,0);}
.m114_c01312{transform:matrix(0.239392,0.004788,-0.004999,0.249950,0,0);-ms-transform:matrix(0.239392,0.004788,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.239392,0.004788,-0.004999,0.249950,0,0);}
.m12_c01312{transform:matrix(0.239509,0.003832,-0.003999,0.249968,0,0);-ms-transform:matrix(0.239509,0.003832,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.239509,0.003832,-0.003999,0.249968,0,0);}
.m80_c01312{transform:matrix(0.240172,0.005284,-0.005499,0.249940,0,0);-ms-transform:matrix(0.240172,0.005284,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.240172,0.005284,-0.005499,0.249940,0,0);}
.mfe_c01312{transform:matrix(0.240212,0.004804,-0.004999,0.249950,0,0);-ms-transform:matrix(0.240212,0.004804,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.240212,0.004804,-0.004999,0.249950,0,0);}
.m138_c01312{transform:matrix(0.240360,0.006009,-0.006248,0.249922,0,0);-ms-transform:matrix(0.240360,0.006009,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.240360,0.006009,-0.006248,0.249922,0,0);}
.m15_c01312{transform:matrix(0.240514,0.003848,-0.003999,0.249968,0,0);-ms-transform:matrix(0.240514,0.003848,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.240514,0.003848,-0.003999,0.249968,0,0);}
.m9b_c01312{transform:matrix(0.240602,0.004812,-0.004999,0.249950,0,0);-ms-transform:matrix(0.240602,0.004812,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.240602,0.004812,-0.004999,0.249950,0,0);}
.m81_c01312{transform:matrix(0.240622,0.004812,-0.004999,0.249950,0,0);-ms-transform:matrix(0.240622,0.004812,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.240622,0.004812,-0.004999,0.249950,0,0);}
.m14f_c01312{transform:matrix(0.240622,0.006497,-0.006748,0.249909,0,0);-ms-transform:matrix(0.240622,0.006497,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.240622,0.006497,-0.006748,0.249909,0,0);}
.m10f_c01312{transform:matrix(0.240872,0.004817,-0.004999,0.249950,0,0);-ms-transform:matrix(0.240872,0.004817,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.240872,0.004817,-0.004999,0.249950,0,0);}
.mb6_c01312{transform:matrix(0.241497,0.004830,-0.004999,0.249950,0,0);-ms-transform:matrix(0.241497,0.004830,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.241497,0.004830,-0.004999,0.249950,0,0);}
.m147_c01312{transform:matrix(0.241654,0.006041,-0.006248,0.249922,0,0);-ms-transform:matrix(0.241654,0.006041,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.241654,0.006041,-0.006248,0.249922,0,0);}
.m6f_c01312{transform:matrix(0.242031,0.001452,-0.001500,0.249996,0,0);-ms-transform:matrix(0.242031,0.001452,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.242031,0.001452,-0.001500,0.249996,0,0);}
.mc7_c01312{transform:matrix(0.242087,0.004842,-0.004999,0.249950,0,0);-ms-transform:matrix(0.242087,0.004842,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.242087,0.004842,-0.004999,0.249950,0,0);}
.m89_c01312{transform:matrix(0.242132,0.004843,-0.004999,0.249950,0,0);-ms-transform:matrix(0.242132,0.004843,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.242132,0.004843,-0.004999,0.249950,0,0);}
.mc5_c01312{transform:matrix(0.242611,0.004852,-0.004999,0.249950,0,0);-ms-transform:matrix(0.242611,0.004852,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.242611,0.004852,-0.004999,0.249950,0,0);}
.m10_c01312{transform:matrix(0.242644,0.003882,-0.003999,0.249968,0,0);-ms-transform:matrix(0.242644,0.003882,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.242644,0.003882,-0.003999,0.249968,0,0);}
.m155_c01312{transform:matrix(0.242657,0.006552,-0.006748,0.249909,0,0);-ms-transform:matrix(0.242657,0.006552,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.242657,0.006552,-0.006748,0.249909,0,0);}
.m4c_c01312{transform:matrix(0.242714,0.003883,-0.003999,0.249968,0,0);-ms-transform:matrix(0.242714,0.003883,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.242714,0.003883,-0.003999,0.249968,0,0);}
.m6_c01312{transform:matrix(0.243234,0.003892,-0.003999,0.249968,0,0);-ms-transform:matrix(0.243234,0.003892,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.243234,0.003892,-0.003999,0.249968,0,0);}
.m93_c01312{transform:matrix(0.243396,0.004868,-0.004999,0.249950,0,0);-ms-transform:matrix(0.243396,0.004868,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.243396,0.004868,-0.004999,0.249950,0,0);}
.m27_c01312{transform:matrix(0.243639,0.003898,-0.003999,0.249968,0,0);-ms-transform:matrix(0.243639,0.003898,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.243639,0.003898,-0.003999,0.249968,0,0);}
.m19_c01312{transform:matrix(0.243709,0.003899,-0.003999,0.249968,0,0);-ms-transform:matrix(0.243709,0.003899,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.243709,0.003899,-0.003999,0.249968,0,0);}
.mbe_c01312{transform:matrix(0.243846,0.004877,-0.004999,0.249950,0,0);-ms-transform:matrix(0.243846,0.004877,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.243846,0.004877,-0.004999,0.249950,0,0);}
.mb8_c01312{transform:matrix(0.244021,0.004880,-0.004999,0.249950,0,0);-ms-transform:matrix(0.244021,0.004880,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.244021,0.004880,-0.004999,0.249950,0,0);}
.m41_c01312{transform:matrix(0.244064,0.003905,-0.003999,0.249968,0,0);-ms-transform:matrix(0.244064,0.003905,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.244064,0.003905,-0.003999,0.249968,0,0);}
.m17_c01312{transform:matrix(0.244774,0.003916,-0.003999,0.249968,0,0);-ms-transform:matrix(0.244774,0.003916,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.244774,0.003916,-0.003999,0.249968,0,0);}
.maf_c01312{transform:matrix(0.244821,0.004896,-0.004999,0.249950,0,0);-ms-transform:matrix(0.244821,0.004896,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.244821,0.004896,-0.004999,0.249950,0,0);}
.m52_c01312{transform:matrix(0.245644,0.003930,-0.003999,0.249968,0,0);-ms-transform:matrix(0.245644,0.003930,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.245644,0.003930,-0.003999,0.249968,0,0);}
.m18_c01312{transform:matrix(0.245794,0.003933,-0.003999,0.249968,0,0);-ms-transform:matrix(0.245794,0.003933,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.245794,0.003933,-0.003999,0.249968,0,0);}
.m78_c01312{transform:matrix(0.245960,0.005411,-0.005499,0.249940,0,0);-ms-transform:matrix(0.245960,0.005411,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.245960,0.005411,-0.005499,0.249940,0,0);}
.m71_c01312{transform:matrix(0.246071,0.001476,-0.001500,0.249996,0,0);-ms-transform:matrix(0.246071,0.001476,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.246071,0.001476,-0.001500,0.249996,0,0);}
.me3_c01312{transform:matrix(0.246106,0.004922,-0.004999,0.249950,0,0);-ms-transform:matrix(0.246106,0.004922,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.246106,0.004922,-0.004999,0.249950,0,0);}
.m3d_c01312{transform:matrix(0.246163,0.003939,-0.003999,0.249968,0,0);-ms-transform:matrix(0.246163,0.003939,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.246163,0.003939,-0.003999,0.249968,0,0);}
.mc4_c01312{transform:matrix(0.246191,0.004924,-0.004999,0.249950,0,0);-ms-transform:matrix(0.246191,0.004924,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.246191,0.004924,-0.004999,0.249950,0,0);}
.m131_c01312{transform:matrix(0.246383,0.006160,-0.006248,0.249922,0,0);-ms-transform:matrix(0.246383,0.006160,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.246383,0.006160,-0.006248,0.249922,0,0);}
.m127_c01312{transform:matrix(0.246738,0.006168,-0.006248,0.249922,0,0);-ms-transform:matrix(0.246738,0.006168,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.246738,0.006168,-0.006248,0.249922,0,0);}
.ma4_c01312{transform:matrix(0.246891,0.004938,-0.004999,0.249950,0,0);-ms-transform:matrix(0.246891,0.004938,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.246891,0.004938,-0.004999,0.249950,0,0);}
.m14d_c01312{transform:matrix(0.247020,0.006670,-0.006748,0.249909,0,0);-ms-transform:matrix(0.247020,0.006670,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.247020,0.006670,-0.006748,0.249909,0,0);}
.m2d_c01312{transform:matrix(0.247183,0.003955,-0.003999,0.249968,0,0);-ms-transform:matrix(0.247183,0.003955,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.247183,0.003955,-0.003999,0.249968,0,0);}
.m10a_c01312{transform:matrix(0.247206,0.004944,-0.004999,0.249950,0,0);-ms-transform:matrix(0.247206,0.004944,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.247206,0.004944,-0.004999,0.249950,0,0);}
.m15b_c01312{transform:matrix(0.247245,0.006676,-0.006748,0.249909,0,0);-ms-transform:matrix(0.247245,0.006676,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.247245,0.006676,-0.006748,0.249909,0,0);}
.mde_c01312{transform:matrix(0.247346,0.004947,-0.004999,0.249950,0,0);-ms-transform:matrix(0.247346,0.004947,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.247346,0.004947,-0.004999,0.249950,0,0);}
.m16_c01312{transform:matrix(0.247363,0.003958,-0.003999,0.249968,0,0);-ms-transform:matrix(0.247363,0.003958,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.247363,0.003958,-0.003999,0.249968,0,0);}
.m8d_c01312{transform:matrix(0.247471,0.004949,-0.004999,0.249950,0,0);-ms-transform:matrix(0.247471,0.004949,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.247471,0.004949,-0.004999,0.249950,0,0);}
.m87_c01312{transform:matrix(0.247655,0.004953,-0.004999,0.249950,0,0);-ms-transform:matrix(0.247655,0.004953,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.247655,0.004953,-0.004999,0.249950,0,0);}
.mf9_c01312{transform:matrix(0.247670,0.004953,-0.004999,0.249950,0,0);-ms-transform:matrix(0.247670,0.004953,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.247670,0.004953,-0.004999,0.249950,0,0);}
.me7_c01312{transform:matrix(0.247760,0.004955,-0.004999,0.249950,0,0);-ms-transform:matrix(0.247760,0.004955,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.247760,0.004955,-0.004999,0.249950,0,0);}
.m1b_c01312{transform:matrix(0.247898,0.003966,-0.003999,0.249968,0,0);-ms-transform:matrix(0.247898,0.003966,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.247898,0.003966,-0.003999,0.249968,0,0);}
.m2a_c01312{transform:matrix(0.247983,0.003968,-0.003999,0.249968,0,0);-ms-transform:matrix(0.247983,0.003968,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.247983,0.003968,-0.003999,0.249968,0,0);}
.m65_c01312{transform:matrix(0.248113,0.003970,-0.003999,0.249968,0,0);-ms-transform:matrix(0.248113,0.003970,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.248113,0.003970,-0.003999,0.249968,0,0);}
.m101_c01312{transform:matrix(0.248420,0.004968,-0.004999,0.249950,0,0);-ms-transform:matrix(0.248420,0.004968,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.248420,0.004968,-0.004999,0.249950,0,0);}
.mc1_c01312{transform:matrix(0.249095,0.004982,-0.004999,0.249950,0,0);-ms-transform:matrix(0.249095,0.004982,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.249095,0.004982,-0.004999,0.249950,0,0);}
.m66_c01312{transform:matrix(0.249113,0.003986,-0.003999,0.249968,0,0);-ms-transform:matrix(0.249113,0.003986,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.249113,0.003986,-0.003999,0.249968,0,0);}
.mc3_c01312{transform:matrix(0.249300,0.004986,-0.004999,0.249950,0,0);-ms-transform:matrix(0.249300,0.004986,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.249300,0.004986,-0.004999,0.249950,0,0);}
.m7b_c01312{transform:matrix(0.249460,0.005488,-0.005499,0.249940,0,0);-ms-transform:matrix(0.249460,0.005488,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.249460,0.005488,-0.005499,0.249940,0,0);}
.m4e_c01312{transform:matrix(0.249618,0.003994,-0.003999,0.249968,0,0);-ms-transform:matrix(0.249618,0.003994,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.249618,0.003994,-0.003999,0.249968,0,0);}
.m8b_c01312{transform:matrix(0.249690,0.004994,-0.004999,0.249950,0,0);-ms-transform:matrix(0.249690,0.004994,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.249690,0.004994,-0.004999,0.249950,0,0);}
.m76_c01312{transform:matrix(0.250034,0.005501,-0.005499,0.249940,0,0);-ms-transform:matrix(0.250034,0.005501,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.250034,0.005501,-0.005499,0.249940,0,0);}
.m86_c01312{transform:matrix(0.250045,0.005001,-0.004999,0.249950,0,0);-ms-transform:matrix(0.250045,0.005001,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.250045,0.005001,-0.004999,0.249950,0,0);}
.m39_c01312{transform:matrix(0.250393,0.004006,-0.003999,0.249968,0,0);-ms-transform:matrix(0.250393,0.004006,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.250393,0.004006,-0.003999,0.249968,0,0);}
.m77_c01312{transform:matrix(0.250459,0.005510,-0.005499,0.249940,0,0);-ms-transform:matrix(0.250459,0.005510,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.250459,0.005510,-0.005499,0.249940,0,0);}
.m33_c01312{transform:matrix(0.250888,0.004014,-0.003999,0.249968,0,0);-ms-transform:matrix(0.250888,0.004014,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.250888,0.004014,-0.003999,0.249968,0,0);}
.m14_c01312{transform:matrix(0.250923,0.004015,-0.003999,0.249968,0,0);-ms-transform:matrix(0.250923,0.004015,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.250923,0.004015,-0.003999,0.249968,0,0);}
.m2f_c01312{transform:matrix(0.251078,0.004017,-0.003999,0.249968,0,0);-ms-transform:matrix(0.251078,0.004017,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.251078,0.004017,-0.003999,0.249968,0,0);}
.mf2_c01312{transform:matrix(0.251740,0.005035,-0.004999,0.249950,0,0);-ms-transform:matrix(0.251740,0.005035,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.251740,0.005035,-0.004999,0.249950,0,0);}
.m156_c01312{transform:matrix(0.251778,0.006798,-0.006748,0.249909,0,0);-ms-transform:matrix(0.251778,0.006798,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.251778,0.006798,-0.006748,0.249909,0,0);}
.m70_c01312{transform:matrix(0.251940,0.001512,-0.001500,0.249996,0,0);-ms-transform:matrix(0.251940,0.001512,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.251940,0.001512,-0.001500,0.249996,0,0);}
.md4_c01312{transform:matrix(0.251955,0.005039,-0.004999,0.249950,0,0);-ms-transform:matrix(0.251955,0.005039,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.251955,0.005039,-0.004999,0.249950,0,0);}
.m12d_c01312{transform:matrix(0.252161,0.006304,-0.006248,0.249922,0,0);-ms-transform:matrix(0.252161,0.006304,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.252161,0.006304,-0.006248,0.249922,0,0);}
.maa_c01312{transform:matrix(0.252500,0.005050,-0.004999,0.249950,0,0);-ms-transform:matrix(0.252500,0.005050,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.252500,0.005050,-0.004999,0.249950,0,0);}
.m6b_c01312{transform:matrix(0.252510,0.001515,-0.001500,0.249996,0,0);-ms-transform:matrix(0.252510,0.001515,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.252510,0.001515,-0.001500,0.249996,0,0);}
.m38_c01312{transform:matrix(0.252518,0.004040,-0.003999,0.249968,0,0);-ms-transform:matrix(0.252518,0.004040,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.252518,0.004040,-0.003999,0.249968,0,0);}
.m134_c01312{transform:matrix(0.252746,0.006319,-0.006248,0.249922,0,0);-ms-transform:matrix(0.252746,0.006319,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.252746,0.006319,-0.006248,0.249922,0,0);}
.m49_c01312{transform:matrix(0.253073,0.004049,-0.003999,0.249968,0,0);-ms-transform:matrix(0.253073,0.004049,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.253073,0.004049,-0.003999,0.249968,0,0);}
.meb_c01312{transform:matrix(0.253094,0.005062,-0.004999,0.249950,0,0);-ms-transform:matrix(0.253094,0.005062,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.253094,0.005062,-0.004999,0.249950,0,0);}
.m11a_c01312{transform:matrix(0.253141,0.006329,-0.006248,0.249922,0,0);-ms-transform:matrix(0.253141,0.006329,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.253141,0.006329,-0.006248,0.249922,0,0);}
.m42_c01312{transform:matrix(0.253558,0.004057,-0.003999,0.249968,0,0);-ms-transform:matrix(0.253558,0.004057,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.253558,0.004057,-0.003999,0.249968,0,0);}
.m96_c01312{transform:matrix(0.253744,0.005075,-0.004999,0.249950,0,0);-ms-transform:matrix(0.253744,0.005075,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.253744,0.005075,-0.004999,0.249950,0,0);}
.m121_c01312{transform:matrix(0.253931,0.006348,-0.006248,0.249922,0,0);-ms-transform:matrix(0.253931,0.006348,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.253931,0.006348,-0.006248,0.249922,0,0);}
.m92_c01312{transform:matrix(0.254024,0.005080,-0.004999,0.249950,0,0);-ms-transform:matrix(0.254024,0.005080,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.254024,0.005080,-0.004999,0.249950,0,0);}
.mf0_c01312{transform:matrix(0.254709,0.005094,-0.004999,0.249950,0,0);-ms-transform:matrix(0.254709,0.005094,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.254709,0.005094,-0.004999,0.249950,0,0);}
.m48_c01312{transform:matrix(0.254747,0.004076,-0.003999,0.249968,0,0);-ms-transform:matrix(0.254747,0.004076,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.254747,0.004076,-0.003999,0.249968,0,0);}
.m9a_c01312{transform:matrix(0.254844,0.005097,-0.004999,0.249950,0,0);-ms-transform:matrix(0.254844,0.005097,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.254844,0.005097,-0.004999,0.249950,0,0);}
.m7c_c01312{transform:matrix(0.254923,0.005608,-0.005499,0.249940,0,0);-ms-transform:matrix(0.254923,0.005608,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.254923,0.005608,-0.005499,0.249940,0,0);}
.mad_c01312{transform:matrix(0.255004,0.005100,-0.004999,0.249950,0,0);-ms-transform:matrix(0.255004,0.005100,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.255004,0.005100,-0.004999,0.249950,0,0);}
.m46_c01312{transform:matrix(0.255022,0.004080,-0.003999,0.249968,0,0);-ms-transform:matrix(0.255022,0.004080,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.255022,0.004080,-0.003999,0.249968,0,0);}
.mbd_c01312{transform:matrix(0.256159,0.005123,-0.004999,0.249950,0,0);-ms-transform:matrix(0.256159,0.005123,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.256159,0.005123,-0.004999,0.249950,0,0);}
.m4a_c01312{transform:matrix(0.256192,0.004099,-0.003999,0.249968,0,0);-ms-transform:matrix(0.256192,0.004099,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.256192,0.004099,-0.003999,0.249968,0,0);}
.mf5_c01312{transform:matrix(0.256484,0.005130,-0.004999,0.249950,0,0);-ms-transform:matrix(0.256484,0.005130,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.256484,0.005130,-0.004999,0.249950,0,0);}
.m99_c01312{transform:matrix(0.256754,0.005135,-0.004999,0.249950,0,0);-ms-transform:matrix(0.256754,0.005135,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.256754,0.005135,-0.004999,0.249950,0,0);}
.mfd_c01312{transform:matrix(0.257029,0.005141,-0.004999,0.249950,0,0);-ms-transform:matrix(0.257029,0.005141,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.257029,0.005141,-0.004999,0.249950,0,0);}
.m132_c01312{transform:matrix(0.257260,0.006431,-0.006248,0.249922,0,0);-ms-transform:matrix(0.257260,0.006431,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.257260,0.006431,-0.006248,0.249922,0,0);}
.m3a_c01312{transform:matrix(0.257742,0.004124,-0.003999,0.249968,0,0);-ms-transform:matrix(0.257742,0.004124,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.257742,0.004124,-0.003999,0.249968,0,0);}
.m158_c01312{transform:matrix(0.257841,0.006962,-0.006748,0.249909,0,0);-ms-transform:matrix(0.257841,0.006962,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.257841,0.006962,-0.006748,0.249909,0,0);}
.m150_c01312{transform:matrix(0.257876,0.006963,-0.006748,0.249909,0,0);-ms-transform:matrix(0.257876,0.006963,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.257876,0.006963,-0.006748,0.249909,0,0);}
.m11_c01312{transform:matrix(0.258922,0.004143,-0.003999,0.249968,0,0);-ms-transform:matrix(0.258922,0.004143,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.258922,0.004143,-0.003999,0.249968,0,0);}
.m59_c01312{transform:matrix(0.259377,0.004150,-0.003999,0.249968,0,0);-ms-transform:matrix(0.259377,0.004150,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.259377,0.004150,-0.003999,0.249968,0,0);}
.m2b_c01312{transform:matrix(0.259427,0.004151,-0.003999,0.249968,0,0);-ms-transform:matrix(0.259427,0.004151,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.259427,0.004151,-0.003999,0.249968,0,0);}
.mab_c01312{transform:matrix(0.259443,0.005189,-0.004999,0.249950,0,0);-ms-transform:matrix(0.259443,0.005189,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.259443,0.005189,-0.004999,0.249950,0,0);}
.m51_c01312{transform:matrix(0.260047,0.004161,-0.003999,0.249968,0,0);-ms-transform:matrix(0.260047,0.004161,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.260047,0.004161,-0.003999,0.249968,0,0);}
.mbf_c01312{transform:matrix(0.260068,0.005201,-0.004999,0.249950,0,0);-ms-transform:matrix(0.260068,0.005201,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.260068,0.005201,-0.004999,0.249950,0,0);}
.md1_c01312{transform:matrix(0.260333,0.005207,-0.004999,0.249950,0,0);-ms-transform:matrix(0.260333,0.005207,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.260333,0.005207,-0.004999,0.249950,0,0);}
.me_c01312{transform:matrix(0.260487,0.004168,-0.003999,0.249968,0,0);-ms-transform:matrix(0.260487,0.004168,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.260487,0.004168,-0.003999,0.249968,0,0);}
.m31_c01312{transform:matrix(0.260492,0.004168,-0.003999,0.249968,0,0);-ms-transform:matrix(0.260492,0.004168,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.260492,0.004168,-0.003999,0.249968,0,0);}
.m79_c01312{transform:matrix(0.260872,0.005739,-0.005499,0.249940,0,0);-ms-transform:matrix(0.260872,0.005739,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.260872,0.005739,-0.005499,0.249940,0,0);}
.m82_c01312{transform:matrix(0.261063,0.005221,-0.004999,0.249950,0,0);-ms-transform:matrix(0.261063,0.005221,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.261063,0.005221,-0.004999,0.249950,0,0);}
.md9_c01312{transform:matrix(0.261173,0.005223,-0.004999,0.249950,0,0);-ms-transform:matrix(0.261173,0.005223,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.261173,0.005223,-0.004999,0.249950,0,0);}
.m74_c01312{transform:matrix(0.261190,0.001567,-0.001500,0.249996,0,0);-ms-transform:matrix(0.261190,0.001567,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.261190,0.001567,-0.001500,0.249996,0,0);}
.m61_c01312{transform:matrix(0.261607,0.004186,-0.003999,0.249968,0,0);-ms-transform:matrix(0.261607,0.004186,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.261607,0.004186,-0.003999,0.249968,0,0);}
.mb0_c01312{transform:matrix(0.261638,0.005233,-0.004999,0.249950,0,0);-ms-transform:matrix(0.261638,0.005233,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.261638,0.005233,-0.004999,0.249950,0,0);}
.me0_c01312{transform:matrix(0.261693,0.005234,-0.004999,0.249950,0,0);-ms-transform:matrix(0.261693,0.005234,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.261693,0.005234,-0.004999,0.249950,0,0);}
.m15d_c01312{transform:matrix(0.261740,0.007067,-0.006748,0.249909,0,0);-ms-transform:matrix(0.261740,0.007067,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.261740,0.007067,-0.006748,0.249909,0,0);}
.mee_c01312{transform:matrix(0.261918,0.005238,-0.004999,0.249950,0,0);-ms-transform:matrix(0.261918,0.005238,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.261918,0.005238,-0.004999,0.249950,0,0);}
.m60_c01312{transform:matrix(0.262136,0.004194,-0.003999,0.249968,0,0);-ms-transform:matrix(0.262136,0.004194,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.262136,0.004194,-0.003999,0.249968,0,0);}
.md6_c01312{transform:matrix(0.262373,0.005247,-0.004999,0.249950,0,0);-ms-transform:matrix(0.262373,0.005247,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.262373,0.005247,-0.004999,0.249950,0,0);}
.m12f_c01312{transform:matrix(0.262418,0.006560,-0.006248,0.249922,0,0);-ms-transform:matrix(0.262418,0.006560,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.262418,0.006560,-0.006248,0.249922,0,0);}
.m55_c01312{transform:matrix(0.262816,0.004205,-0.003999,0.249968,0,0);-ms-transform:matrix(0.262816,0.004205,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.262816,0.004205,-0.003999,0.249968,0,0);}
.m97_c01312{transform:matrix(0.262987,0.005260,-0.004999,0.249950,0,0);-ms-transform:matrix(0.262987,0.005260,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.262987,0.005260,-0.004999,0.249950,0,0);}
.m8c_c01312{transform:matrix(0.263082,0.005262,-0.004999,0.249950,0,0);-ms-transform:matrix(0.263082,0.005262,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.263082,0.005262,-0.004999,0.249950,0,0);}
.m3f_c01312{transform:matrix(0.263136,0.004210,-0.003999,0.249968,0,0);-ms-transform:matrix(0.263136,0.004210,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.263136,0.004210,-0.003999,0.249968,0,0);}
.mdf_c01312{transform:matrix(0.263167,0.005263,-0.004999,0.249950,0,0);-ms-transform:matrix(0.263167,0.005263,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.263167,0.005263,-0.004999,0.249950,0,0);}
.ma7_c01312{transform:matrix(0.263217,0.005264,-0.004999,0.249950,0,0);-ms-transform:matrix(0.263217,0.005264,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.263217,0.005264,-0.004999,0.249950,0,0);}
.m4d_c01312{transform:matrix(0.264786,0.004237,-0.003999,0.249968,0,0);-ms-transform:matrix(0.264786,0.004237,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.264786,0.004237,-0.003999,0.249968,0,0);}
.m54_c01312{transform:matrix(0.265396,0.004246,-0.003999,0.249968,0,0);-ms-transform:matrix(0.265396,0.004246,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.265396,0.004246,-0.003999,0.249968,0,0);}
.mb2_c01312{transform:matrix(0.265587,0.005312,-0.004999,0.249950,0,0);-ms-transform:matrix(0.265587,0.005312,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.265587,0.005312,-0.004999,0.249950,0,0);}
.me8_c01312{transform:matrix(0.265642,0.005313,-0.004999,0.249950,0,0);-ms-transform:matrix(0.265642,0.005313,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.265642,0.005313,-0.004999,0.249950,0,0);}
.m2_c01312{transform:matrix(0.265646,0.004250,-0.003999,0.249968,0,0);-ms-transform:matrix(0.265646,0.004250,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.265646,0.004250,-0.003999,0.249968,0,0);}
.m43_c01312{transform:matrix(0.266076,0.004257,-0.003999,0.249968,0,0);-ms-transform:matrix(0.266076,0.004257,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.266076,0.004257,-0.003999,0.249968,0,0);}
.m4f_c01312{transform:matrix(0.266296,0.004261,-0.003999,0.249968,0,0);-ms-transform:matrix(0.266296,0.004261,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.266296,0.004261,-0.003999,0.249968,0,0);}
.m73_c01312{transform:matrix(0.266385,0.001598,-0.001500,0.249996,0,0);-ms-transform:matrix(0.266385,0.001598,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.266385,0.001598,-0.001500,0.249996,0,0);}
.m50_c01312{transform:matrix(0.266531,0.004264,-0.003999,0.249968,0,0);-ms-transform:matrix(0.266531,0.004264,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.266531,0.004264,-0.003999,0.249968,0,0);}
.mcf_c01312{transform:matrix(0.267007,0.005340,-0.004999,0.249950,0,0);-ms-transform:matrix(0.267007,0.005340,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.267007,0.005340,-0.004999,0.249950,0,0);}
.m15a_c01312{transform:matrix(0.267413,0.007220,-0.006748,0.249909,0,0);-ms-transform:matrix(0.267413,0.007220,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.267413,0.007220,-0.006748,0.249909,0,0);}
.m153_c01312{transform:matrix(0.267772,0.007230,-0.006748,0.249909,0,0);-ms-transform:matrix(0.267772,0.007230,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.267772,0.007230,-0.006748,0.249909,0,0);}
.m129_c01312{transform:matrix(0.268321,0.006708,-0.006248,0.249922,0,0);-ms-transform:matrix(0.268321,0.006708,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.268321,0.006708,-0.006248,0.249922,0,0);}
.m3b_c01312{transform:matrix(0.269141,0.004306,-0.003999,0.249968,0,0);-ms-transform:matrix(0.269141,0.004306,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.269141,0.004306,-0.003999,0.249968,0,0);}
.m11f_c01312{transform:matrix(0.269151,0.006729,-0.006248,0.249922,0,0);-ms-transform:matrix(0.269151,0.006729,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.269151,0.006729,-0.006248,0.249922,0,0);}
.md2_c01312{transform:matrix(0.269706,0.005394,-0.004999,0.249950,0,0);-ms-transform:matrix(0.269706,0.005394,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.269706,0.005394,-0.004999,0.249950,0,0);}
.m2e_c01312{transform:matrix(0.269835,0.004317,-0.003999,0.249968,0,0);-ms-transform:matrix(0.269835,0.004317,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.269835,0.004317,-0.003999,0.249968,0,0);}
.m3c_c01312{transform:matrix(0.269970,0.004320,-0.003999,0.249968,0,0);-ms-transform:matrix(0.269970,0.004320,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.269970,0.004320,-0.003999,0.249968,0,0);}
.m3e_c01312{transform:matrix(0.270510,0.004328,-0.003999,0.249968,0,0);-ms-transform:matrix(0.270510,0.004328,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.270510,0.004328,-0.003999,0.249968,0,0);}
.m15e_c01312{transform:matrix(0.270546,0.007305,-0.006748,0.249909,0,0);-ms-transform:matrix(0.270546,0.007305,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.270546,0.007305,-0.006748,0.249909,0,0);}
.mf4_c01312{transform:matrix(0.270946,0.005419,-0.004999,0.249950,0,0);-ms-transform:matrix(0.270946,0.005419,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.270946,0.005419,-0.004999,0.249950,0,0);}
.ma9_c01312{transform:matrix(0.271736,0.005435,-0.004999,0.249950,0,0);-ms-transform:matrix(0.271736,0.005435,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.271736,0.005435,-0.004999,0.249950,0,0);}
.m5a_c01312{transform:matrix(0.272045,0.004353,-0.003999,0.249968,0,0);-ms-transform:matrix(0.272045,0.004353,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.272045,0.004353,-0.003999,0.249968,0,0);}
.m56_c01312{transform:matrix(0.272125,0.004354,-0.003999,0.249968,0,0);-ms-transform:matrix(0.272125,0.004354,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.272125,0.004354,-0.003999,0.249968,0,0);}
.m100_c01312{transform:matrix(0.272740,0.005455,-0.004999,0.249950,0,0);-ms-transform:matrix(0.272740,0.005455,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.272740,0.005455,-0.004999,0.249950,0,0);}
.mae_c01312{transform:matrix(0.272805,0.005456,-0.004999,0.249950,0,0);-ms-transform:matrix(0.272805,0.005456,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.272805,0.005456,-0.004999,0.249950,0,0);}
.m84_c01312{transform:matrix(0.273085,0.005462,-0.004999,0.249950,0,0);-ms-transform:matrix(0.273085,0.005462,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.273085,0.005462,-0.004999,0.249950,0,0);}
.m44_c01312{transform:matrix(0.273620,0.004378,-0.003999,0.249968,0,0);-ms-transform:matrix(0.273620,0.004378,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.273620,0.004378,-0.003999,0.249968,0,0);}
.m58_c01312{transform:matrix(0.274165,0.004387,-0.003999,0.249968,0,0);-ms-transform:matrix(0.274165,0.004387,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.274165,0.004387,-0.003999,0.249968,0,0);}
.m62_c01312{transform:matrix(0.274280,0.004388,-0.003999,0.249968,0,0);-ms-transform:matrix(0.274280,0.004388,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.274280,0.004388,-0.003999,0.249968,0,0);}
.m29_c01312{transform:matrix(0.274590,0.004393,-0.003999,0.249968,0,0);-ms-transform:matrix(0.274590,0.004393,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.274590,0.004393,-0.003999,0.249968,0,0);}
.ma5_c01312{transform:matrix(0.275165,0.005503,-0.004999,0.249950,0,0);-ms-transform:matrix(0.275165,0.005503,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.275165,0.005503,-0.004999,0.249950,0,0);}
.mb1_c01312{transform:matrix(0.276300,0.005526,-0.004999,0.249950,0,0);-ms-transform:matrix(0.276300,0.005526,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.276300,0.005526,-0.004999,0.249950,0,0);}
.m159_c01312{transform:matrix(0.277664,0.007497,-0.006748,0.249909,0,0);-ms-transform:matrix(0.277664,0.007497,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.277664,0.007497,-0.006748,0.249909,0,0);}
.m15c_c01312{transform:matrix(0.279233,0.007539,-0.006748,0.249909,0,0);-ms-transform:matrix(0.279233,0.007539,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.279233,0.007539,-0.006748,0.249909,0,0);}
.m12a_c01312{transform:matrix(0.279548,0.006989,-0.006248,0.249922,0,0);-ms-transform:matrix(0.279548,0.006989,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.279548,0.006989,-0.006248,0.249922,0,0);}
.m6e_c01312{transform:matrix(0.279565,0.001677,-0.001500,0.249996,0,0);-ms-transform:matrix(0.279565,0.001677,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.279565,0.001677,-0.001500,0.249996,0,0);}
.m7_c01312{transform:matrix(0.280134,0.004482,-0.003999,0.249968,0,0);-ms-transform:matrix(0.280134,0.004482,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.280134,0.004482,-0.003999,0.249968,0,0);}
.ma2_c01312{transform:matrix(0.280419,0.005608,-0.004999,0.249950,0,0);-ms-transform:matrix(0.280419,0.005608,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.280419,0.005608,-0.004999,0.249950,0,0);}
.m3_c01312{transform:matrix(0.280669,0.004491,-0.003999,0.249968,0,0);-ms-transform:matrix(0.280669,0.004491,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.280669,0.004491,-0.003999,0.249968,0,0);}
.mac_c01312{transform:matrix(0.281809,0.005636,-0.004999,0.249950,0,0);-ms-transform:matrix(0.281809,0.005636,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.281809,0.005636,-0.004999,0.249950,0,0);}
.ma6_c01312{transform:matrix(0.282009,0.005640,-0.004999,0.249950,0,0);-ms-transform:matrix(0.282009,0.005640,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.282009,0.005640,-0.004999,0.249950,0,0);}
.mce_c01312{transform:matrix(0.282064,0.005641,-0.004999,0.249950,0,0);-ms-transform:matrix(0.282064,0.005641,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.282064,0.005641,-0.004999,0.249950,0,0);}
.m154_c01312{transform:matrix(0.283362,0.007651,-0.006748,0.249909,0,0);-ms-transform:matrix(0.283362,0.007651,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.283362,0.007651,-0.006748,0.249909,0,0);}
.m10d_c01312{transform:matrix(0.283923,0.005678,-0.004999,0.249950,0,0);-ms-transform:matrix(0.283923,0.005678,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.283923,0.005678,-0.004999,0.249950,0,0);}
.m36_c01312{transform:matrix(0.283949,0.004543,-0.003999,0.249968,0,0);-ms-transform:matrix(0.283949,0.004543,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.283949,0.004543,-0.003999,0.249968,0,0);}
.m5b_c01312{transform:matrix(0.284609,0.004554,-0.003999,0.249968,0,0);-ms-transform:matrix(0.284609,0.004554,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.284609,0.004554,-0.003999,0.249968,0,0);}
.ma0_c01312{transform:matrix(0.284858,0.005697,-0.004999,0.249950,0,0);-ms-transform:matrix(0.284858,0.005697,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.284858,0.005697,-0.004999,0.249950,0,0);}
.m12b_c01312{transform:matrix(0.285976,0.007149,-0.006248,0.249922,0,0);-ms-transform:matrix(0.285976,0.007149,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.285976,0.007149,-0.006248,0.249922,0,0);}
.m47_c01312{transform:matrix(0.287758,0.004604,-0.003999,0.249968,0,0);-ms-transform:matrix(0.287758,0.004604,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.287758,0.004604,-0.003999,0.249968,0,0);}
.ma1_c01312{transform:matrix(0.288472,0.005769,-0.004999,0.249950,0,0);-ms-transform:matrix(0.288472,0.005769,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.288472,0.005769,-0.004999,0.249950,0,0);}
.mb_c01312{transform:matrix(0.289753,0.004636,-0.003999,0.249968,0,0);-ms-transform:matrix(0.289753,0.004636,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.289753,0.004636,-0.003999,0.249968,0,0);}
.m45_c01312{transform:matrix(0.290583,0.004649,-0.003999,0.249968,0,0);-ms-transform:matrix(0.290583,0.004649,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.290583,0.004649,-0.003999,0.249968,0,0);}
.m15f_c01312{transform:matrix(0.290594,0.007846,-0.006748,0.249909,0,0);-ms-transform:matrix(0.290594,0.007846,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.290594,0.007846,-0.006748,0.249909,0,0);}
.ma3_c01312{transform:matrix(0.290687,0.005814,-0.004999,0.249950,0,0);-ms-transform:matrix(0.290687,0.005814,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.290687,0.005814,-0.004999,0.249950,0,0);}
.m9c_c01312{transform:matrix(0.291992,0.005840,-0.004999,0.249950,0,0);-ms-transform:matrix(0.291992,0.005840,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.291992,0.005840,-0.004999,0.249950,0,0);}
.m8e_c01312{transform:matrix(0.292182,0.005844,-0.004999,0.249950,0,0);-ms-transform:matrix(0.292182,0.005844,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.292182,0.005844,-0.004999,0.249950,0,0);}
.md0_c01312{transform:matrix(0.293056,0.005861,-0.004999,0.249950,0,0);-ms-transform:matrix(0.293056,0.005861,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.293056,0.005861,-0.004999,0.249950,0,0);}
.m1d_c01312{transform:matrix(0.293432,0.004695,-0.003999,0.249968,0,0);-ms-transform:matrix(0.293432,0.004695,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.293432,0.004695,-0.003999,0.249968,0,0);}
.m5_c01312{transform:matrix(0.293982,0.004704,-0.003999,0.249968,0,0);-ms-transform:matrix(0.293982,0.004704,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.293982,0.004704,-0.003999,0.249968,0,0);}
.m9e_c01312{transform:matrix(0.298490,0.005970,-0.004999,0.249950,0,0);-ms-transform:matrix(0.298490,0.005970,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.298490,0.005970,-0.004999,0.249950,0,0);}
.m161_c01312{transform:matrix(0.302643,0.007263,-0.005998,0.249928,0,0);-ms-transform:matrix(0.302643,0.007263,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.302643,0.007263,-0.005998,0.249928,0,0);}
.m8f_c01312{transform:matrix(0.303819,0.006076,-0.004999,0.249950,0,0);-ms-transform:matrix(0.303819,0.006076,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.303819,0.006076,-0.004999,0.249950,0,0);}
.m85_c01312{transform:matrix(0.304154,0.006083,-0.004999,0.249950,0,0);-ms-transform:matrix(0.304154,0.006083,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.304154,0.006083,-0.004999,0.249950,0,0);}
.m8_c01312{transform:matrix(0.305286,0.004885,-0.003999,0.249968,0,0);-ms-transform:matrix(0.305286,0.004885,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.305286,0.004885,-0.003999,0.249968,0,0);}
.m102_c01312{transform:matrix(0.305549,0.006111,-0.004999,0.249950,0,0);-ms-transform:matrix(0.305549,0.006111,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.305549,0.006111,-0.004999,0.249950,0,0);}
.ma_c01312{transform:matrix(0.305591,0.004889,-0.003999,0.249968,0,0);-ms-transform:matrix(0.305591,0.004889,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.305591,0.004889,-0.003999,0.249968,0,0);}
.m9_c01312{transform:matrix(0.309345,0.004950,-0.003999,0.249968,0,0);-ms-transform:matrix(0.309345,0.004950,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.309345,0.004950,-0.003999,0.249968,0,0);}
.mcb_c01312{transform:matrix(0.311113,0.006222,-0.004999,0.249950,0,0);-ms-transform:matrix(0.311113,0.006222,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.311113,0.006222,-0.004999,0.249950,0,0);}
.m135_c01312{transform:matrix(0.320970,0.008024,-0.006248,0.249922,0,0);-ms-transform:matrix(0.320970,0.008024,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.320970,0.008024,-0.006248,0.249922,0,0);}
.m64_c01312{transform:matrix(0.324034,0.005185,-0.003999,0.249968,0,0);-ms-transform:matrix(0.324034,0.005185,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.324034,0.005185,-0.003999,0.249968,0,0);}
.mda_c01312{transform:matrix(0.324990,0.006500,-0.004999,0.249950,0,0);-ms-transform:matrix(0.324990,0.006500,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.324990,0.006500,-0.004999,0.249950,0,0);}
.mdb_c01312{transform:matrix(0.330834,0.006617,-0.004999,0.249950,0,0);-ms-transform:matrix(0.330834,0.006617,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.330834,0.006617,-0.004999,0.249950,0,0);}
.m141_c01312{transform:matrix(0.331541,0.008289,-0.006248,0.249922,0,0);-ms-transform:matrix(0.331541,0.008289,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.331541,0.008289,-0.006248,0.249922,0,0);}
.m9d_c01312{transform:matrix(0.337433,0.006749,-0.004999,0.249950,0,0);-ms-transform:matrix(0.337433,0.006749,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.337433,0.006749,-0.004999,0.249950,0,0);}
.m5f_c01312{transform:matrix(0.339012,0.005424,-0.003999,0.249968,0,0);-ms-transform:matrix(0.339012,0.005424,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.339012,0.005424,-0.003999,0.249968,0,0);}
.m149_c01312{transform:matrix(0.347753,0.009389,-0.006748,0.249909,0,0);-ms-transform:matrix(0.347753,0.009389,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.347753,0.009389,-0.006748,0.249909,0,0);}
.m1_c01312{transform:matrix(0.352755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352755,0.000000,0.000000,0.250000,0,0);}
.m7d_c01312{transform:matrix(0.360318,0.007927,-0.005499,0.249940,0,0);-ms-transform:matrix(0.360318,0.007927,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.360318,0.007927,-0.005499,0.249940,0,0);}
.mf_c01312{transform:matrix(0.360669,0.005771,-0.003999,0.249968,0,0);-ms-transform:matrix(0.360669,0.005771,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.360669,0.005771,-0.003999,0.249968,0,0);}
.md_c01312{transform:matrix(0.369518,0.005912,-0.003999,0.249968,0,0);-ms-transform:matrix(0.369518,0.005912,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.369518,0.005912,-0.003999,0.249968,0,0);}
.mb3_c01312{transform:matrix(0.370361,0.007407,-0.004999,0.249950,0,0);-ms-transform:matrix(0.370361,0.007407,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.370361,0.007407,-0.004999,0.249950,0,0);}
.mc_c01312{transform:matrix(0.378362,0.006054,-0.003999,0.249968,0,0);-ms-transform:matrix(0.378362,0.006054,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.378362,0.006054,-0.003999,0.249968,0,0);}
.m128_c01312{transform:matrix(0.404449,0.010111,-0.006248,0.249922,0,0);-ms-transform:matrix(0.404449,0.010111,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.404449,0.010111,-0.006248,0.249922,0,0);}
.m5c_c01312{transform:matrix(0.409088,0.006545,-0.003999,0.249968,0,0);-ms-transform:matrix(0.409088,0.006545,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.409088,0.006545,-0.003999,0.249968,0,0);}
.m40_c01312{transform:matrix(0.452227,0.007236,-0.003999,0.249968,0,0);-ms-transform:matrix(0.452227,0.007236,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.452227,0.007236,-0.003999,0.249968,0,0);}
.m91_c01312{transform:matrix(0.535723,0.010714,-0.004999,0.249950,0,0);-ms-transform:matrix(0.535723,0.010714,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.535723,0.010714,-0.004999,0.249950,0,0);}
.mca_c01312{transform:matrix(0.635098,0.012702,-0.004999,0.249950,0,0);-ms-transform:matrix(0.635098,0.012702,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.635098,0.012702,-0.004999,0.249950,0,0);}
.m5e_c01312{transform:matrix(0.749164,0.011987,-0.003999,0.249968,0,0);-ms-transform:matrix(0.749164,0.011987,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.749164,0.011987,-0.003999,0.249968,0,0);}
.m63_c01312{transform:matrix(0.800348,0.012806,-0.003999,0.249968,0,0);-ms-transform:matrix(0.800348,0.012806,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.800348,0.012806,-0.003999,0.249968,0,0);}
.v0_c01312{vertical-align:0.000000px;}
.ls0_c01312{letter-spacing:0.000000px;}
.sc__c01312{text-shadow:none;}
.sc0_c01312{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__c01312{-webkit-text-stroke:0px transparent;}
.sc0_c01312{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01312{word-spacing:0.000000px;}
._0_c01312{width:4.043844px;}
.fc0_c01312{color:transparent;}
.fs1_c01312{font-size:66.008447px;}
.fs4_c01312{font-size:72.009215px;}
.fs9_c01312{font-size:72.014399px;}
.fsf_c01312{font-size:72.026239px;}
.fs2_c01312{font-size:78.009983px;}
.fs7_c01312{font-size:78.015598px;}
.fs6_c01312{font-size:78.018874px;}
.fsc_c01312{font-size:78.024371px;}
.fse_c01312{font-size:78.028426px;}
.fs0_c01312{font-size:84.000000px;}
.fs3_c01312{font-size:84.010751px;}
.fs8_c01312{font-size:84.016798px;}
.fs10_c01312{font-size:84.024189px;}
.fsd_c01312{font-size:84.026246px;}
.fs5_c01312{font-size:90.001620px;}
.fsa_c01312{font-size:90.017998px;}
.fsb_c01312{font-size:90.028121px;}
.y0_c01312{bottom:0.000000px;}
.y178_c01312{bottom:72.582384px;}
.y177_c01312{bottom:73.374744px;}
.y176_c01312{bottom:74.709408px;}
.y175_c01312{bottom:76.051920px;}
.y174_c01312{bottom:76.848744px;}
.y173_c01312{bottom:77.341548px;}
.y172_c01312{bottom:78.190788px;}
.y171_c01312{bottom:78.686328px;}
.y170_c01312{bottom:79.507236px;}
.y16f_c01312{bottom:81.379884px;}
.y16e_c01312{bottom:82.682292px;}
.y16d_c01312{bottom:83.478468px;}
.y16c_c01312{bottom:84.787500px;}
.y16b_c01312{bottom:120.479262px;}
.y16a_c01312{bottom:122.048895px;}
.y169_c01312{bottom:124.192717px;}
.y168_c01312{bottom:125.448384px;}
.y167_c01312{bottom:127.932378px;}
.y166_c01312{bottom:129.162447px;}
.y165_c01312{bottom:131.017048px;}
.y164_c01312{bottom:133.830805px;}
.y163_c01312{bottom:134.753429px;}
.y162_c01312{bottom:135.666332px;}
.y161_c01312{bottom:136.898263px;}
.y160_c01312{bottom:137.837330px;}
.y15f_c01312{bottom:140.935650px;}
.y15e_c01312{bottom:162.505962px;}
.y15d_c01312{bottom:163.680219px;}
.y15c_c01312{bottom:164.584422px;}
.y15b_c01312{bottom:167.254142px;}
.y15a_c01312{bottom:168.180417px;}
.y159_c01312{bottom:169.084255px;}
.y158_c01312{bottom:170.840700px;}
.y157_c01312{bottom:171.739395px;}
.y156_c01312{bottom:172.613871px;}
.y155_c01312{bottom:173.508638px;}
.y154_c01312{bottom:174.429000px;}
.y153_c01312{bottom:196.894837px;}
.y152_c01312{bottom:204.688763px;}
.y151_c01312{bottom:206.047388px;}
.y150_c01312{bottom:207.234412px;}
.y14f_c01312{bottom:207.648300px;}
.y14e_c01312{bottom:209.237250px;}
.y14d_c01312{bottom:210.018113px;}
.y14c_c01312{bottom:229.467975px;}
.y14b_c01312{bottom:230.949713px;}
.y14a_c01312{bottom:231.581063px;}
.y149_c01312{bottom:233.264662px;}
.y148_c01312{bottom:234.291150px;}
.y147_c01312{bottom:235.595213px;}
.y146_c01312{bottom:236.226300px;}
.y145_c01312{bottom:237.888900px;}
.y144_c01312{bottom:238.525238px;}
.y143_c01312{bottom:240.609600px;}
.y142_c01312{bottom:241.026000px;}
.y141_c01312{bottom:242.702175px;}
.y140_c01312{bottom:267.915113px;}
.y13f_c01312{bottom:269.530913px;}
.y13e_c01312{bottom:270.471825px;}
.y13d_c01312{bottom:273.234225px;}
.y13c_c01312{bottom:274.664325px;}
.y13b_c01312{bottom:275.085900px;}
.y13a_c01312{bottom:278.122988px;}
.y139_c01312{bottom:278.832413px;}
.y138_c01312{bottom:280.868250px;}
.y137_c01312{bottom:281.591625px;}
.y136_c01312{bottom:303.455363px;}
.y135_c01312{bottom:303.994875px;}
.y134_c01312{bottom:304.464263px;}
.y133_c01312{bottom:305.802713px;}
.y132_c01312{bottom:306.484950px;}
.y131_c01312{bottom:307.785450px;}
.y130_c01312{bottom:308.294062px;}
.y12f_c01312{bottom:309.592463px;}
.y12e_c01312{bottom:309.931350px;}
.y12d_c01312{bottom:311.456475px;}
.y12c_c01312{bottom:312.420713px;}
.y12b_c01312{bottom:312.899100px;}
.y12a_c01312{bottom:313.237500px;}
.y129_c01312{bottom:313.732875px;}
.y128_c01312{bottom:337.428488px;}
.y127_c01312{bottom:339.942600px;}
.y126_c01312{bottom:341.070675px;}
.y125_c01312{bottom:342.981675px;}
.y124_c01312{bottom:344.268488px;}
.y123_c01312{bottom:345.187200px;}
.y122_c01312{bottom:347.985713px;}
.y121_c01312{bottom:349.922513px;}
.y120_c01312{bottom:350.739000px;}
.y11f_c01312{bottom:374.072160px;}
.y11e_c01312{bottom:376.646490px;}
.y11d_c01312{bottom:378.862860px;}
.y11c_c01312{bottom:381.083820px;}
.y11b_c01312{bottom:381.900900px;}
.y11a_c01312{bottom:383.859120px;}
.y119_c01312{bottom:384.894360px;}
.y118_c01312{bottom:387.672090px;}
.y117_c01312{bottom:389.007660px;}
.y116_c01312{bottom:408.547440px;}
.y115_c01312{bottom:408.928260px;}
.y114_c01312{bottom:410.237970px;}
.y113_c01312{bottom:411.588750px;}
.y112_c01312{bottom:411.942150px;}
.y111_c01312{bottom:413.810160px;}
.y110_c01312{bottom:414.388560px;}
.y10f_c01312{bottom:416.444580px;}
.y10e_c01312{bottom:417.744240px;}
.y10d_c01312{bottom:418.317600px;}
.y10c_c01312{bottom:419.791800px;}
.y10b_c01312{bottom:443.138610px;}
.y10a_c01312{bottom:445.307880px;}
.y109_c01312{bottom:446.767950px;}
.y108_c01312{bottom:447.223620px;}
.y107_c01312{bottom:449.444760px;}
.y106_c01312{bottom:450.102660px;}
.y105_c01312{bottom:450.869220px;}
.y104_c01312{bottom:452.075250px;}
.y103_c01312{bottom:453.680880px;}
.y102_c01312{bottom:454.245930px;}
.y101_c01312{bottom:454.790100px;}
.y100_c01312{bottom:457.427460px;}
.yff_c01312{bottom:458.407920px;}
.yfe_c01312{bottom:477.788310px;}
.yfd_c01312{bottom:478.815810px;}
.yfc_c01312{bottom:479.570700px;}
.yfb_c01312{bottom:481.086930px;}
.yfa_c01312{bottom:481.868040px;}
.yf9_c01312{bottom:483.874770px;}
.yf8_c01312{bottom:484.898160px;}
.yf7_c01312{bottom:488.191110px;}
.yf6_c01312{bottom:488.972820px;}
.yf5_c01312{bottom:489.738840px;}
.yf4_c01312{bottom:491.986110px;}
.yf3_c01312{bottom:493.243770px;}
.yf2_c01312{bottom:512.914110px;}
.yf1_c01312{bottom:516.020550px;}
.yf0_c01312{bottom:516.468660px;}
.yef_c01312{bottom:517.566270px;}
.yee_c01312{bottom:518.236170px;}
.yed_c01312{bottom:518.899050px;}
.yec_c01312{bottom:519.571650px;}
.yeb_c01312{bottom:520.195650px;}
.yea_c01312{bottom:520.882380px;}
.ye9_c01312{bottom:522.876210px;}
.ye8_c01312{bottom:524.861400px;}
.ye7_c01312{bottom:525.981360px;}
.ye6_c01312{bottom:526.839690px;}
.ye5_c01312{bottom:527.270100px;}
.ye4_c01312{bottom:547.281930px;}
.ye3_c01312{bottom:548.267460px;}
.ye2_c01312{bottom:549.133110px;}
.ye1_c01312{bottom:550.239900px;}
.ye0_c01312{bottom:550.668150px;}
.ydf_c01312{bottom:551.096490px;}
.yde_c01312{bottom:552.248310px;}
.ydd_c01312{bottom:552.689400px;}
.ydc_c01312{bottom:553.826940px;}
.ydb_c01312{bottom:554.259840px;}
.yda_c01312{bottom:555.138900px;}
.yd9_c01312{bottom:555.792180px;}
.yd8_c01312{bottom:556.623600px;}
.yd7_c01312{bottom:557.320050px;}
.yd6_c01312{bottom:558.194670px;}
.yd5_c01312{bottom:559.128690px;}
.yd4_c01312{bottom:559.781730px;}
.yd3_c01312{bottom:561.050790px;}
.yd2_c01312{bottom:561.521580px;}
.yd1_c01312{bottom:562.648860px;}
.yd0_c01312{bottom:584.261190px;}
.ycf_c01312{bottom:586.605930px;}
.yce_c01312{bottom:587.693160px;}
.ycd_c01312{bottom:588.366960px;}
.ycc_c01312{bottom:589.680180px;}
.ycb_c01312{bottom:590.372310px;}
.yca_c01312{bottom:591.241860px;}
.yc9_c01312{bottom:593.018430px;}
.yc8_c01312{bottom:594.103830px;}
.yc7_c01312{bottom:595.854390px;}
.yc6_c01312{bottom:596.567580px;}
.yc5_c01312{bottom:598.981230px;}
.yc4_c01312{bottom:599.645400px;}
.yc3_c01312{bottom:622.103010px;}
.yc2_c01312{bottom:624.713520px;}
.yc1_c01312{bottom:626.312640px;}
.yc0_c01312{bottom:627.129600px;}
.ybf_c01312{bottom:628.173270px;}
.ybe_c01312{bottom:631.105200px;}
.ybd_c01312{bottom:631.661430px;}
.ybc_c01312{bottom:635.065050px;}
.ybb_c01312{bottom:636.146310px;}
.yba_c01312{bottom:636.643050px;}
.yb9_c01312{bottom:657.460920px;}
.yb8_c01312{bottom:657.946710px;}
.yb7_c01312{bottom:659.587020px;}
.yb6_c01312{bottom:660.953430px;}
.yb5_c01312{bottom:661.433580px;}
.yb4_c01312{bottom:663.271620px;}
.yb3_c01312{bottom:663.757620px;}
.yb2_c01312{bottom:666.079110px;}
.yb1_c01312{bottom:667.010070px;}
.yb0_c01312{bottom:667.725270px;}
.yaf_c01312{bottom:669.323340px;}
.yae_c01312{bottom:669.775890px;}
.yad_c01312{bottom:670.938270px;}
.yac_c01312{bottom:691.989210px;}
.yab_c01312{bottom:693.200040px;}
.yaa_c01312{bottom:694.184910px;}
.ya9_c01312{bottom:695.652660px;}
.ya8_c01312{bottom:697.577340px;}
.ya7_c01312{bottom:698.325060px;}
.ya6_c01312{bottom:699.767430px;}
.ya5_c01312{bottom:701.478240px;}
.ya4_c01312{bottom:702.706770px;}
.ya3_c01312{bottom:703.400460px;}
.ya2_c01312{bottom:704.363010px;}
.ya1_c01312{bottom:705.110730px;}
.ya0_c01312{bottom:706.339260px;}
.y9f_c01312{bottom:725.125890px;}
.y9e_c01312{bottom:726.576540px;}
.y9d_c01312{bottom:727.670070px;}
.y9c_c01312{bottom:728.502840px;}
.y9b_c01312{bottom:729.620160px;}
.y9a_c01312{bottom:730.995900px;}
.y99_c01312{bottom:731.823390px;}
.y98_c01312{bottom:734.009730px;}
.y97_c01312{bottom:735.120150px;}
.y96_c01312{bottom:736.246650px;}
.y95_c01312{bottom:738.195930px;}
.y94_c01312{bottom:739.518810px;}
.y93_c01312{bottom:740.058660px;}
.y92_c01312{bottom:742.229850px;}
.y91_c01312{bottom:762.465060px;}
.y90_c01312{bottom:765.118320px;}
.y8f_c01312{bottom:766.668660px;}
.y8e_c01312{bottom:767.569620px;}
.y8d_c01312{bottom:768.650580px;}
.y8c_c01312{bottom:769.319190px;}
.y8b_c01312{bottom:770.408700px;}
.y8a_c01312{bottom:770.880450px;}
.y89_c01312{bottom:771.485010px;}
.y88_c01312{bottom:772.203060px;}
.y87_c01312{bottom:772.657440px;}
.y86_c01312{bottom:775.266840px;}
.y85_c01312{bottom:775.713000px;}
.y84_c01312{bottom:797.868828px;}
.y83_c01312{bottom:798.605355px;}
.y82_c01312{bottom:799.574004px;}
.y81_c01312{bottom:801.296274px;}
.y80_c01312{bottom:802.753620px;}
.y7f_c01312{bottom:804.458103px;}
.y7e_c01312{bottom:805.188822px;}
.y7d_c01312{bottom:807.134766px;}
.y7c_c01312{bottom:808.599504px;}
.y7b_c01312{bottom:810.737904px;}
.y7a_c01312{bottom:811.252869px;}
.y79_c01312{bottom:812.434500px;}
.y78_c01312{bottom:840.313548px;}
.y77_c01312{bottom:840.640347px;}
.y76_c01312{bottom:840.852693px;}
.y75_c01312{bottom:841.047588px;}
.y74_c01312{bottom:841.313259px;}
.y73_c01312{bottom:841.658310px;}
.y72_c01312{bottom:841.987161px;}
.y71_c01312{bottom:842.175081px;}
.y70_c01312{bottom:842.644872px;}
.y6f_c01312{bottom:843.114663px;}
.y6e_c01312{bottom:843.373854px;}
.y6d_c01312{bottom:843.512931px;}
.y6c_c01312{bottom:844.225965px;}
.y6b_c01312{bottom:844.617996px;}
.y6a_c01312{bottom:844.830000px;}
.y69_c01312{bottom:869.395188px;}
.y68_c01312{bottom:870.567504px;}
.y67_c01312{bottom:870.951048px;}
.y66_c01312{bottom:871.801116px;}
.y65_c01312{bottom:872.600544px;}
.y64_c01312{bottom:873.761856px;}
.y63_c01312{bottom:875.768916px;}
.y62_c01312{bottom:876.547308px;}
.y61_c01312{bottom:876.969576px;}
.y60_c01312{bottom:879.166092px;}
.y5f_c01312{bottom:879.926364px;}
.y5e_c01312{bottom:881.524452px;}
.y5d_c01312{bottom:907.085172px;}
.y5c_c01312{bottom:907.543008px;}
.y5b_c01312{bottom:909.503724px;}
.y5a_c01312{bottom:910.420548px;}
.y59_c01312{bottom:911.323212px;}
.y58_c01312{bottom:911.969652px;}
.y57_c01312{bottom:913.948164px;}
.y56_c01312{bottom:914.411820px;}
.y55_c01312{bottom:915.925380px;}
.y54_c01312{bottom:916.588020px;}
.y53_c01312{bottom:917.269512px;}
.y52_c01312{bottom:917.711148px;}
.y51_c01312{bottom:918.786192px;}
.y50_c01312{bottom:940.882044px;}
.y4f_c01312{bottom:941.535336px;}
.y4e_c01312{bottom:943.085508px;}
.y4d_c01312{bottom:943.750872px;}
.y4c_c01312{bottom:944.419332px;}
.y4b_c01312{bottom:945.694668px;}
.y4a_c01312{bottom:946.419624px;}
.y49_c01312{bottom:946.855440px;}
.y48_c01312{bottom:949.508856px;}
.y47_c01312{bottom:949.945008px;}
.y46_c01312{bottom:952.429500px;}
.y45_c01312{bottom:953.892216px;}
.y44_c01312{bottom:975.219612px;}
.y43_c01312{bottom:976.193976px;}
.y42_c01312{bottom:976.924884px;}
.y41_c01312{bottom:978.872052px;}
.y40_c01312{bottom:979.365948px;}
.y3f_c01312{bottom:981.031344px;}
.y3e_c01312{bottom:981.803184px;}
.y3d_c01312{bottom:983.502084px;}
.y3c_c01312{bottom:985.195524px;}
.y3b_c01312{bottom:986.181528px;}
.y3a_c01312{bottom:986.906520px;}
.y39_c01312{bottom:987.622968px;}
.y38_c01312{bottom:988.585116px;}
.y37_c01312{bottom:989.268156px;}
.y36_c01312{bottom:1010.919756px;}
.y35_c01312{bottom:1011.843696px;}
.y34_c01312{bottom:1012.524984px;}
.y33_c01312{bottom:1013.899176px;}
.y32_c01312{bottom:1014.366480px;}
.y31_c01312{bottom:1016.018472px;}
.y30_c01312{bottom:1016.686752px;}
.y2f_c01312{bottom:1017.627564px;}
.y2e_c01312{bottom:1018.602936px;}
.y2d_c01312{bottom:1019.500056px;}
.y2c_c01312{bottom:1021.104828px;}
.y2b_c01312{bottom:1021.779288px;}
.y2a_c01312{bottom:1023.384060px;}
.y29_c01312{bottom:1024.103580px;}
.y28_c01312{bottom:1045.637088px;}
.y27_c01312{bottom:1048.312632px;}
.y26_c01312{bottom:1048.825020px;}
.y25_c01312{bottom:1049.794428px;}
.y24_c01312{bottom:1050.768600px;}
.y23_c01312{bottom:1052.959920px;}
.y22_c01312{bottom:1054.422024px;}
.y21_c01312{bottom:1054.895496px;}
.y20_c01312{bottom:1056.364284px;}
.y1f_c01312{bottom:1057.081020px;}
.y1e_c01312{bottom:1058.531676px;}
.y1d_c01312{bottom:1058.986608px;}
.y1c_c01312{bottom:1059.474780px;}
.y1b_c01312{bottom:1080.564288px;}
.y1a_c01312{bottom:1081.216572px;}
.y19_c01312{bottom:1082.669232px;}
.y18_c01312{bottom:1083.946440px;}
.y17_c01312{bottom:1085.422788px;}
.y16_c01312{bottom:1086.489924px;}
.y15_c01312{bottom:1087.095924px;}
.y14_c01312{bottom:1087.968852px;}
.y13_c01312{bottom:1088.594628px;}
.y12_c01312{bottom:1089.630120px;}
.y11_c01312{bottom:1091.719272px;}
.y10_c01312{bottom:1092.960276px;}
.yf_c01312{bottom:1115.215584px;}
.ye_c01312{bottom:1115.734752px;}
.yd_c01312{bottom:1116.158232px;}
.yc_c01312{bottom:1116.944088px;}
.yb_c01312{bottom:1117.354752px;}
.ya_c01312{bottom:1118.764272px;}
.y9_c01312{bottom:1120.691016px;}
.y8_c01312{bottom:1121.965872px;}
.y7_c01312{bottom:1122.657528px;}
.y6_c01312{bottom:1123.010952px;}
.y5_c01312{bottom:1124.064960px;}
.y4_c01312{bottom:1124.410440px;}
.y3_c01312{bottom:1125.106224px;}
.y2_c01312{bottom:1125.633000px;}
.y1_c01312{bottom:1187.872500px;}
.h3_c01312{height:66.008447px;}
.h6_c01312{height:72.009215px;}
.hb_c01312{height:72.014399px;}
.h11_c01312{height:72.026239px;}
.h4_c01312{height:78.009983px;}
.h9_c01312{height:78.015598px;}
.h8_c01312{height:78.018874px;}
.he_c01312{height:78.024371px;}
.h10_c01312{height:78.028426px;}
.h2_c01312{height:84.000000px;}
.h5_c01312{height:84.010751px;}
.ha_c01312{height:84.016798px;}
.h12_c01312{height:84.024189px;}
.hf_c01312{height:84.026246px;}
.h7_c01312{height:90.001620px;}
.hc_c01312{height:90.017998px;}
.hd_c01312{height:90.028121px;}
.h1_c01312{height:1250.250000px;}
.h0_c01312{height:1250.370000px;}
.w1_c01312{width:912.000000px;}
.w0_c01312{width:912.300000px;}
.x0_c01312{left:0.000000px;}
.xec_c01312{left:115.238526px;}
.xdd_c01312{left:117.946800px;}
.xda_c01312{left:119.141175px;}
.xc0_c01312{left:121.509420px;}
.xa2_c01312{left:123.109680px;}
.x86_c01312{left:125.525670px;}
.x5d_c01312{left:128.724000px;}
.x52_c01312{left:129.751476px;}
.x3c_c01312{left:131.267952px;}
.x1a_c01312{left:133.765980px;}
.x3_c01312{left:134.779500px;}
.x9a_c01312{left:145.527870px;}
.x73_c01312{left:150.109500px;}
.xd4_c01312{left:153.958575px;}
.x1b_c01312{left:155.930844px;}
.xe3_c01312{left:161.715038px;}
.x31_c01312{left:164.493900px;}
.xc1_c01312{left:166.105650px;}
.x4_c01312{left:167.703000px;}
.xef_c01312{left:169.252500px;}
.xcc_c01312{left:175.483350px;}
.x1c_c01312{left:176.580852px;}
.xac_c01312{left:178.910820px;}
.x87_c01312{left:181.399950px;}
.x6a_c01312{left:182.586000px;}
.x48_c01312{left:184.488324px;}
.xb8_c01312{left:187.614780px;}
.x9b_c01312{left:190.587270px;}
.x11_c01312{left:199.236516px;}
.x90_c01312{left:202.012230px;}
.x3d_c01312{left:204.401772px;}
.x49_c01312{left:206.557908px;}
.x32_c01312{left:208.217700px;}
.x5_c01312{left:211.189500px;}
.x7c_c01312{left:216.191040px;}
.x53_c01312{left:218.566644px;}
.xe5_c01312{left:226.173000px;}
.xde_c01312{left:228.066300px;}
.x5e_c01312{left:229.396500px;}
.x6_c01312{left:232.782000px;}
.x7d_c01312{left:237.781380px;}
.x33_c01312{left:240.805080px;}
.x1d_c01312{left:242.490516px;}
.x26_c01312{left:243.753156px;}
.xdb_c01312{left:250.522800px;}
.xf0_c01312{left:256.693500px;}
.x88_c01312{left:259.185360px;}
.x54_c01312{left:260.832300px;}
.xad_c01312{left:265.903320px;}
.xd5_c01312{left:272.689238px;}
.x34_c01312{left:273.738912px;}
.x1e_c01312{left:275.095896px;}
.xa3_c01312{left:277.000680px;}
.x91_c01312{left:278.089200px;}
.x74_c01312{left:280.579500px;}
.xdc_c01312{left:284.303175px;}
.xc2_c01312{left:285.968850px;}
.x7e_c01312{left:290.720100px;}
.xe6_c01312{left:293.400000px;}
.x7_c01312{left:298.657500px;}
.x6b_c01312{left:303.193500px;}
.x12_c01312{left:309.178236px;}
.xc3_c01312{left:310.701360px;}
.x92_c01312{left:312.123510px;}
.x35_c01312{left:318.578616px;}
.x8_c01312{left:320.746500px;}
.xe7_c01312{left:325.788000px;}
.x3e_c01312{left:328.643328px;}
.x9c_c01312{left:332.406930px;}
.xf1_c01312{left:334.720500px;}
.xc4_c01312{left:336.402840px;}
.xdf_c01312{left:337.737225px;}
.x75_c01312{left:339.201000px;}
.x1f_c01312{left:341.857488px;}
.xb9_c01312{left:342.872280px;}
.xae_c01312{left:345.256320px;}
.x89_c01312{left:346.592880px;}
.x5f_c01312{left:348.235500px;}
.x4a_c01312{left:349.435764px;}
.x3f_c01312{left:350.463936px;}
.x27_c01312{left:352.258968px;}
.x93_c01312{left:356.420610px;}
.xe8_c01312{left:359.073000px;}
.x9_c01312{left:363.975000px;}
.x7f_c01312{left:368.676300px;}
.x6c_c01312{left:369.772500px;}
.x60_c01312{left:371.415000px;}
.x4b_c01312{left:372.600276px;}
.xd6_c01312{left:374.339625px;}
.x55_c01312{left:382.829388px;}
.x1_c01312{left:385.830000px;}
.xaf_c01312{left:388.987320px;}
.x76_c01312{left:393.016500px;}
.x28_c01312{left:395.013060px;}
.x13_c01312{left:396.597036px;}
.xa4_c01312{left:400.188180px;}
.x56_c01312{left:406.314144px;}
.x2_c01312{left:410.130000px;}
.x61_c01312{left:414.613500px;}
.x8a_c01312{left:424.330260px;}
.x20_c01312{left:429.822540px;}
.xca_c01312{left:439.899690px;}
.x29_c01312{left:441.438840px;}
.x14_c01312{left:442.527828px;}
.xa_c01312{left:443.653500px;}
.xf2_c01312{left:445.491000px;}
.x77_c01312{left:447.492000px;}
.x57_c01312{left:449.524752px;}
.xd0_c01312{left:451.234500px;}
.xa5_c01312{left:454.458180px;}
.x6d_c01312{left:458.224500px;}
.xc5_c01312{left:464.230740px;}
.xb0_c01312{left:465.380820px;}
.x94_c01312{left:466.942890px;}
.xed_c01312{left:469.473468px;}
.x4c_c01312{left:471.500940px;}
.x36_c01312{left:472.741308px;}
.x15_c01312{left:474.401292px;}
.x9d_c01312{left:477.703290px;}
.x78_c01312{left:480.922500px;}
.x40_c01312{left:483.106440px;}
.x2a_c01312{left:486.267264px;}
.xd1_c01312{left:487.983000px;}
.x8b_c01312{left:489.921150px;}
.x6e_c01312{left:491.439000px;}
.x62_c01312{left:492.912000px;}
.xb1_c01312{left:498.044820px;}
.xc6_c01312{left:499.107360px;}
.x4d_c01312{left:503.838876px;}
.x41_c01312{left:504.906048px;}
.x37_c01312{left:507.852948px;}
.x2b_c01312{left:518.094720px;}
.x9e_c01312{left:521.183310px;}
.x8c_c01312{left:523.930800px;}
.xcd_c01312{left:527.859630px;}
.x21_c01312{left:529.457988px;}
.x16_c01312{left:530.594604px;}
.x79_c01312{left:534.970500px;}
.xd2_c01312{left:539.455500px;}
.x42_c01312{left:541.119720px;}
.xa6_c01312{left:543.286680px;}
.x80_c01312{left:545.646630px;}
.x4e_c01312{left:549.002496px;}
.x9f_c01312{left:555.203580px;}
.x58_c01312{left:560.993676px;}
.xb_c01312{left:564.075000px;}
.x6f_c01312{left:568.915500px;}
.x63_c01312{left:571.210500px;}
.x22_c01312{left:573.745740px;}
.xba_c01312{left:574.874280px;}
.x95_c01312{left:577.667700px;}
.x81_c01312{left:578.767830px;}
.x7a_c01312{left:580.018500px;}
.x38_c01312{left:583.526676px;}
.xa7_c01312{left:586.764180px;}
.xe9_c01312{left:590.787000px;}
.x4f_c01312{left:594.863568px;}
.x2c_c01312{left:596.775432px;}
.x96_c01312{left:600.549750px;}
.x64_c01312{left:602.530500px;}
.x43_c01312{left:604.886640px;}
.x39_c01312{left:605.955516px;}
.x17_c01312{left:608.331384px;}
.x8d_c01312{left:611.386290px;}
.xe0_c01312{left:614.621738px;}
.xce_c01312{left:616.544280px;}
.x23_c01312{left:617.829516px;}
.x2d_c01312{left:619.042656px;}
.xb2_c01312{left:620.519820px;}
.xa0_c01312{left:621.804240px;}
.xf3_c01312{left:623.256000px;}
.xea_c01312{left:624.276000px;}
.x59_c01312{left:625.511112px;}
.xc7_c01312{left:629.929110px;}
.x82_c01312{left:633.824340px;}
.x70_c01312{left:635.158500px;}
.x44_c01312{left:638.319504px;}
.x24_c01312{left:641.132784px;}
.xb3_c01312{left:642.574320px;}
.xd7_c01312{left:649.533863px;}
.xc8_c01312{left:650.611770px;}
.xc_c01312{left:652.170000px;}
.x65_c01312{left:657.339000px;}
.xd3_c01312{left:661.018500px;}
.xbb_c01312{left:663.249780px;}
.x97_c01312{left:665.643960px;}
.xeb_c01312{left:667.767000px;}
.x5a_c01312{left:669.942696px;}
.x45_c01312{left:671.558868px;}
.x18_c01312{left:675.591168px;}
.xd_c01312{left:677.836500px;}
.x2e_c01312{left:684.486924px;}
.xbc_c01312{left:685.655280px;}
.xa8_c01312{left:687.031680px;}
.x50_c01312{left:692.933304px;}
.x3a_c01312{left:694.457520px;}
.xb4_c01312{left:700.165320px;}
.xe1_c01312{left:703.219013px;}
.x83_c01312{left:711.821040px;}
.x71_c01312{left:713.443500px;}
.x51_c01312{left:715.827840px;}
.x2f_c01312{left:716.939832px;}
.xbd_c01312{left:718.232100px;}
.xcf_c01312{left:719.525490px;}
.xa9_c01312{left:720.721680px;}
.x8e_c01312{left:722.837820px;}
.xe_c01312{left:726.952500px;}
.xa1_c01312{left:730.571040px;}
.xe2_c01312{left:736.458000px;}
.x5b_c01312{left:738.510012px;}
.x98_c01312{left:743.757900px;}
.x46_c01312{left:749.033400px;}
.xbe_c01312{left:751.024620px;}
.x19_c01312{left:752.034996px;}
.xf_c01312{left:753.420000px;}
.x84_c01312{left:755.543160px;}
.x72_c01312{left:757.473000px;}
.x66_c01312{left:759.126000px;}
.x30_c01312{left:760.901304px;}
.x25_c01312{left:762.780120px;}
.x99_c01312{left:766.921950px;}
.xd8_c01312{left:770.117513px;}
.x3b_c01312{left:771.967080px;}
.xaa_c01312{left:775.083180px;}
.x8f_c01312{left:777.902130px;}
.x47_c01312{left:781.705812px;}
.xcb_c01312{left:783.501300px;}
.x10_c01312{left:785.868000px;}
.x7b_c01312{left:790.198500px;}
.x67_c01312{left:791.608500px;}
.xbf_c01312{left:795.721950px;}
.xb5_c01312{left:798.334320px;}
.x5c_c01312{left:803.621424px;}
.xd9_c01312{left:806.046975px;}
.x85_c01312{left:813.594870px;}
.xc9_c01312{left:815.647200px;}
.x68_c01312{left:826.999500px;}
.xb6_c01312{left:841.616820px;}
.xee_c01312{left:845.862843px;}
.xe4_c01312{left:847.411463px;}
.x69_c01312{left:881.466000px;}
.xb7_c01312{left:890.893320px;}
.xab_c01312{left:892.320180px;}
@media print{
.v0_c01312{vertical-align:0.000000pt;}
.ls0_c01312{letter-spacing:0.000000pt;}
.ws0_c01312{word-spacing:0.000000pt;}
._0_c01312{width:3.594528pt;}
.fs1_c01312{font-size:58.674176pt;}
.fs4_c01312{font-size:64.008191pt;}
.fs9_c01312{font-size:64.012799pt;}
.fsf_c01312{font-size:64.023324pt;}
.fs2_c01312{font-size:69.342207pt;}
.fs7_c01312{font-size:69.347199pt;}
.fs6_c01312{font-size:69.350110pt;}
.fsc_c01312{font-size:69.354997pt;}
.fse_c01312{font-size:69.358601pt;}
.fs0_c01312{font-size:74.666667pt;}
.fs3_c01312{font-size:74.676223pt;}
.fs8_c01312{font-size:74.681599pt;}
.fs10_c01312{font-size:74.688168pt;}
.fsd_c01312{font-size:74.689996pt;}
.fs5_c01312{font-size:80.001440pt;}
.fsa_c01312{font-size:80.015998pt;}
.fsb_c01312{font-size:80.024996pt;}
.y0_c01312{bottom:0.000000pt;}
.y178_c01312{bottom:64.517675pt;}
.y177_c01312{bottom:65.221995pt;}
.y176_c01312{bottom:66.408363pt;}
.y175_c01312{bottom:67.601707pt;}
.y174_c01312{bottom:68.309995pt;}
.y173_c01312{bottom:68.748043pt;}
.y172_c01312{bottom:69.502923pt;}
.y171_c01312{bottom:69.943403pt;}
.y170_c01312{bottom:70.673099pt;}
.y16f_c01312{bottom:72.337675pt;}
.y16e_c01312{bottom:73.495371pt;}
.y16d_c01312{bottom:74.203083pt;}
.y16c_c01312{bottom:75.366667pt;}
.y16b_c01312{bottom:107.092677pt;}
.y16a_c01312{bottom:108.487907pt;}
.y169_c01312{bottom:110.393527pt;}
.y168_c01312{bottom:111.509675pt;}
.y167_c01312{bottom:113.717669pt;}
.y166_c01312{bottom:114.811064pt;}
.y165_c01312{bottom:116.459599pt;}
.y164_c01312{bottom:118.960716pt;}
.y163_c01312{bottom:119.780825pt;}
.y162_c01312{bottom:120.592295pt;}
.y161_c01312{bottom:121.687345pt;}
.y160_c01312{bottom:122.522071pt;}
.y15f_c01312{bottom:125.276133pt;}
.y15e_c01312{bottom:144.449744pt;}
.y15d_c01312{bottom:145.493528pt;}
.y15c_c01312{bottom:146.297264pt;}
.y15b_c01312{bottom:148.670348pt;}
.y15a_c01312{bottom:149.493704pt;}
.y159_c01312{bottom:150.297116pt;}
.y158_c01312{bottom:151.858400pt;}
.y157_c01312{bottom:152.657240pt;}
.y156_c01312{bottom:153.434552pt;}
.y155_c01312{bottom:154.229900pt;}
.y154_c01312{bottom:155.048000pt;}
.y153_c01312{bottom:175.017633pt;}
.y152_c01312{bottom:181.945567pt;}
.y151_c01312{bottom:183.153233pt;}
.y150_c01312{bottom:184.208367pt;}
.y14f_c01312{bottom:184.576267pt;}
.y14e_c01312{bottom:185.988667pt;}
.y14d_c01312{bottom:186.682767pt;}
.y14c_c01312{bottom:203.971533pt;}
.y14b_c01312{bottom:205.288633pt;}
.y14a_c01312{bottom:205.849833pt;}
.y149_c01312{bottom:207.346367pt;}
.y148_c01312{bottom:208.258800pt;}
.y147_c01312{bottom:209.417967pt;}
.y146_c01312{bottom:209.978933pt;}
.y145_c01312{bottom:211.456800pt;}
.y144_c01312{bottom:212.022433pt;}
.y143_c01312{bottom:213.875200pt;}
.y142_c01312{bottom:214.245333pt;}
.y141_c01312{bottom:215.735267pt;}
.y140_c01312{bottom:238.146767pt;}
.y13f_c01312{bottom:239.583033pt;}
.y13e_c01312{bottom:240.419400pt;}
.y13d_c01312{bottom:242.874867pt;}
.y13c_c01312{bottom:244.146067pt;}
.y13b_c01312{bottom:244.520800pt;}
.y13a_c01312{bottom:247.220433pt;}
.y139_c01312{bottom:247.851033pt;}
.y138_c01312{bottom:249.660667pt;}
.y137_c01312{bottom:250.303667pt;}
.y136_c01312{bottom:269.738100pt;}
.y135_c01312{bottom:270.217667pt;}
.y134_c01312{bottom:270.634900pt;}
.y133_c01312{bottom:271.824633pt;}
.y132_c01312{bottom:272.431067pt;}
.y131_c01312{bottom:273.587067pt;}
.y130_c01312{bottom:274.039167pt;}
.y12f_c01312{bottom:275.193300pt;}
.y12e_c01312{bottom:275.494533pt;}
.y12d_c01312{bottom:276.850200pt;}
.y12c_c01312{bottom:277.707300pt;}
.y12b_c01312{bottom:278.132533pt;}
.y12a_c01312{bottom:278.433333pt;}
.y129_c01312{bottom:278.873667pt;}
.y128_c01312{bottom:299.936433pt;}
.y127_c01312{bottom:302.171200pt;}
.y126_c01312{bottom:303.173933pt;}
.y125_c01312{bottom:304.872600pt;}
.y124_c01312{bottom:306.016433pt;}
.y123_c01312{bottom:306.833067pt;}
.y122_c01312{bottom:309.320633pt;}
.y121_c01312{bottom:311.042233pt;}
.y120_c01312{bottom:311.768000pt;}
.y11f_c01312{bottom:332.508587pt;}
.y11e_c01312{bottom:334.796880pt;}
.y11d_c01312{bottom:336.766987pt;}
.y11c_c01312{bottom:338.741173pt;}
.y11b_c01312{bottom:339.467467pt;}
.y11a_c01312{bottom:341.208107pt;}
.y119_c01312{bottom:342.128320pt;}
.y118_c01312{bottom:344.597413pt;}
.y117_c01312{bottom:345.784587pt;}
.y116_c01312{bottom:363.153280pt;}
.y115_c01312{bottom:363.491787pt;}
.y114_c01312{bottom:364.655973pt;}
.y113_c01312{bottom:365.856667pt;}
.y112_c01312{bottom:366.170800pt;}
.y111_c01312{bottom:367.831253pt;}
.y110_c01312{bottom:368.345387pt;}
.y10f_c01312{bottom:370.172960pt;}
.y10e_c01312{bottom:371.328213pt;}
.y10d_c01312{bottom:371.837867pt;}
.y10c_c01312{bottom:373.148267pt;}
.y10b_c01312{bottom:393.900987pt;}
.y10a_c01312{bottom:395.829227pt;}
.y109_c01312{bottom:397.127067pt;}
.y108_c01312{bottom:397.532107pt;}
.y107_c01312{bottom:399.506453pt;}
.y106_c01312{bottom:400.091253pt;}
.y105_c01312{bottom:400.772640pt;}
.y104_c01312{bottom:401.844667pt;}
.y103_c01312{bottom:403.271893pt;}
.y102_c01312{bottom:403.774160pt;}
.y101_c01312{bottom:404.257867pt;}
.y100_c01312{bottom:406.602187pt;}
.yff_c01312{bottom:407.473707pt;}
.yfe_c01312{bottom:424.700720pt;}
.yfd_c01312{bottom:425.614053pt;}
.yfc_c01312{bottom:426.285067pt;}
.yfb_c01312{bottom:427.632827pt;}
.yfa_c01312{bottom:428.327147pt;}
.yf9_c01312{bottom:430.110907pt;}
.yf8_c01312{bottom:431.020587pt;}
.yf7_c01312{bottom:433.947653pt;}
.yf6_c01312{bottom:434.642507pt;}
.yf5_c01312{bottom:435.323413pt;}
.yf4_c01312{bottom:437.320987pt;}
.yf3_c01312{bottom:438.438907pt;}
.yf2_c01312{bottom:455.923653pt;}
.yf1_c01312{bottom:458.684933pt;}
.yf0_c01312{bottom:459.083253pt;}
.yef_c01312{bottom:460.058907pt;}
.yee_c01312{bottom:460.654373pt;}
.yed_c01312{bottom:461.243600pt;}
.yec_c01312{bottom:461.841467pt;}
.yeb_c01312{bottom:462.396133pt;}
.yea_c01312{bottom:463.006560pt;}
.ye9_c01312{bottom:464.778853pt;}
.ye8_c01312{bottom:466.543467pt;}
.ye7_c01312{bottom:467.538987pt;}
.ye6_c01312{bottom:468.301947pt;}
.ye5_c01312{bottom:468.684533pt;}
.ye4_c01312{bottom:486.472827pt;}
.ye3_c01312{bottom:487.348853pt;}
.ye2_c01312{bottom:488.118320pt;}
.ye1_c01312{bottom:489.102133pt;}
.ye0_c01312{bottom:489.482800pt;}
.ydf_c01312{bottom:489.863547pt;}
.yde_c01312{bottom:490.887387pt;}
.ydd_c01312{bottom:491.279467pt;}
.ydc_c01312{bottom:492.290613pt;}
.ydb_c01312{bottom:492.675413pt;}
.yda_c01312{bottom:493.456800pt;}
.yd9_c01312{bottom:494.037493pt;}
.yd8_c01312{bottom:494.776533pt;}
.yd7_c01312{bottom:495.395600pt;}
.yd6_c01312{bottom:496.173040pt;}
.yd5_c01312{bottom:497.003280pt;}
.yd4_c01312{bottom:497.583760pt;}
.yd3_c01312{bottom:498.711813pt;}
.yd2_c01312{bottom:499.130293pt;}
.yd1_c01312{bottom:500.132320pt;}
.yd0_c01312{bottom:519.343280pt;}
.ycf_c01312{bottom:521.427493pt;}
.yce_c01312{bottom:522.393920pt;}
.ycd_c01312{bottom:522.992853pt;}
.ycc_c01312{bottom:524.160160pt;}
.ycb_c01312{bottom:524.775387pt;}
.yca_c01312{bottom:525.548320pt;}
.yc9_c01312{bottom:527.127493pt;}
.yc8_c01312{bottom:528.092293pt;}
.yc7_c01312{bottom:529.648347pt;}
.yc6_c01312{bottom:530.282293pt;}
.yc5_c01312{bottom:532.427760pt;}
.yc4_c01312{bottom:533.018133pt;}
.yc3_c01312{bottom:552.980453pt;}
.yc2_c01312{bottom:555.300907pt;}
.yc1_c01312{bottom:556.722347pt;}
.yc0_c01312{bottom:557.448533pt;}
.ybf_c01312{bottom:558.376240pt;}
.ybe_c01312{bottom:560.982400pt;}
.ybd_c01312{bottom:561.476827pt;}
.ybc_c01312{bottom:564.502267pt;}
.ybb_c01312{bottom:565.463387pt;}
.yba_c01312{bottom:565.904933pt;}
.yb9_c01312{bottom:584.409707pt;}
.yb8_c01312{bottom:584.841520pt;}
.yb7_c01312{bottom:586.299573pt;}
.yb6_c01312{bottom:587.514160pt;}
.yb5_c01312{bottom:587.940960pt;}
.yb4_c01312{bottom:589.574773pt;}
.yb3_c01312{bottom:590.006773pt;}
.yb2_c01312{bottom:592.070320pt;}
.yb1_c01312{bottom:592.897840pt;}
.yb0_c01312{bottom:593.533573pt;}
.yaf_c01312{bottom:594.954080pt;}
.yae_c01312{bottom:595.356347pt;}
.yad_c01312{bottom:596.389573pt;}
.yac_c01312{bottom:615.101520pt;}
.yab_c01312{bottom:616.177813pt;}
.yaa_c01312{bottom:617.053253pt;}
.ya9_c01312{bottom:618.357920pt;}
.ya8_c01312{bottom:620.068747pt;}
.ya7_c01312{bottom:620.733387pt;}
.ya6_c01312{bottom:622.015493pt;}
.ya5_c01312{bottom:623.536213pt;}
.ya4_c01312{bottom:624.628240pt;}
.ya3_c01312{bottom:625.244853pt;}
.ya2_c01312{bottom:626.100453pt;}
.ya1_c01312{bottom:626.765093pt;}
.ya0_c01312{bottom:627.857120pt;}
.y9f_c01312{bottom:644.556347pt;}
.y9e_c01312{bottom:645.845813pt;}
.y9d_c01312{bottom:646.817840pt;}
.y9c_c01312{bottom:647.558080pt;}
.y9b_c01312{bottom:648.551253pt;}
.y9a_c01312{bottom:649.774133pt;}
.y99_c01312{bottom:650.509680pt;}
.y98_c01312{bottom:652.453093pt;}
.y97_c01312{bottom:653.440133pt;}
.y96_c01312{bottom:654.441467pt;}
.y95_c01312{bottom:656.174160pt;}
.y94_c01312{bottom:657.350053pt;}
.y93_c01312{bottom:657.829920pt;}
.y92_c01312{bottom:659.759867pt;}
.y91_c01312{bottom:677.746720pt;}
.y90_c01312{bottom:680.105173pt;}
.y8f_c01312{bottom:681.483253pt;}
.y8e_c01312{bottom:682.284107pt;}
.y8d_c01312{bottom:683.244960pt;}
.y8c_c01312{bottom:683.839280pt;}
.y8b_c01312{bottom:684.807733pt;}
.y8a_c01312{bottom:685.227067pt;}
.y89_c01312{bottom:685.764453pt;}
.y88_c01312{bottom:686.402720pt;}
.y87_c01312{bottom:686.806613pt;}
.y86_c01312{bottom:689.126080pt;}
.y85_c01312{bottom:689.522667pt;}
.y84_c01312{bottom:709.216736pt;}
.y83_c01312{bottom:709.871427pt;}
.y82_c01312{bottom:710.732448pt;}
.y81_c01312{bottom:712.263355pt;}
.y80_c01312{bottom:713.558773pt;}
.y7f_c01312{bottom:715.073869pt;}
.y7e_c01312{bottom:715.723397pt;}
.y7d_c01312{bottom:717.453125pt;}
.y7c_c01312{bottom:718.755115pt;}
.y7b_c01312{bottom:720.655915pt;}
.y7a_c01312{bottom:721.113661pt;}
.y79_c01312{bottom:722.164000pt;}
.y78_c01312{bottom:746.945376pt;}
.y77_c01312{bottom:747.235864pt;}
.y76_c01312{bottom:747.424616pt;}
.y75_c01312{bottom:747.597856pt;}
.y74_c01312{bottom:747.834008pt;}
.y73_c01312{bottom:748.140720pt;}
.y72_c01312{bottom:748.433032pt;}
.y71_c01312{bottom:748.600072pt;}
.y70_c01312{bottom:749.017664pt;}
.y6f_c01312{bottom:749.435256pt;}
.y6e_c01312{bottom:749.665648pt;}
.y6d_c01312{bottom:749.789272pt;}
.y6c_c01312{bottom:750.423080pt;}
.y6b_c01312{bottom:750.771552pt;}
.y6a_c01312{bottom:750.960000pt;}
.y69_c01312{bottom:772.795723pt;}
.y68_c01312{bottom:773.837781pt;}
.y67_c01312{bottom:774.178709pt;}
.y66_c01312{bottom:774.934325pt;}
.y65_c01312{bottom:775.644928pt;}
.y64_c01312{bottom:776.677205pt;}
.y63_c01312{bottom:778.461259pt;}
.y62_c01312{bottom:779.153163pt;}
.y61_c01312{bottom:779.528512pt;}
.y60_c01312{bottom:781.480971pt;}
.y5f_c01312{bottom:782.156768pt;}
.y5e_c01312{bottom:783.577291pt;}
.y5d_c01312{bottom:806.297931pt;}
.y5c_c01312{bottom:806.704896pt;}
.y5b_c01312{bottom:808.447755pt;}
.y5a_c01312{bottom:809.262709pt;}
.y59_c01312{bottom:810.065077pt;}
.y58_c01312{bottom:810.639691pt;}
.y57_c01312{bottom:812.398368pt;}
.y56_c01312{bottom:812.810507pt;}
.y55_c01312{bottom:814.155893pt;}
.y54_c01312{bottom:814.744907pt;}
.y53_c01312{bottom:815.350677pt;}
.y52_c01312{bottom:815.743243pt;}
.y51_c01312{bottom:816.698837pt;}
.y50_c01312{bottom:836.339595pt;}
.y4f_c01312{bottom:836.920299pt;}
.y4e_c01312{bottom:838.298229pt;}
.y4d_c01312{bottom:838.889664pt;}
.y4c_c01312{bottom:839.483851pt;}
.y4b_c01312{bottom:840.617483pt;}
.y4a_c01312{bottom:841.261888pt;}
.y49_c01312{bottom:841.649280pt;}
.y48_c01312{bottom:844.007872pt;}
.y47_c01312{bottom:844.395563pt;}
.y46_c01312{bottom:846.604000pt;}
.y45_c01312{bottom:847.904192pt;}
.y44_c01312{bottom:866.861877pt;}
.y43_c01312{bottom:867.727979pt;}
.y42_c01312{bottom:868.377675pt;}
.y41_c01312{bottom:870.108491pt;}
.y40_c01312{bottom:870.547509pt;}
.y3f_c01312{bottom:872.027861pt;}
.y3e_c01312{bottom:872.713941pt;}
.y3d_c01312{bottom:874.224075pt;}
.y3c_c01312{bottom:875.729355pt;}
.y3b_c01312{bottom:876.605803pt;}
.y3a_c01312{bottom:877.250240pt;}
.y39_c01312{bottom:877.887083pt;}
.y38_c01312{bottom:878.742325pt;}
.y37_c01312{bottom:879.349472pt;}
.y36_c01312{bottom:898.595339pt;}
.y35_c01312{bottom:899.416619pt;}
.y34_c01312{bottom:900.022208pt;}
.y33_c01312{bottom:901.243712pt;}
.y32_c01312{bottom:901.659093pt;}
.y31_c01312{bottom:903.127531pt;}
.y30_c01312{bottom:903.721557pt;}
.y2f_c01312{bottom:904.557835pt;}
.y2e_c01312{bottom:905.424832pt;}
.y2d_c01312{bottom:906.222272pt;}
.y2c_c01312{bottom:907.648736pt;}
.y2b_c01312{bottom:908.248256pt;}
.y2a_c01312{bottom:909.674720pt;}
.y29_c01312{bottom:910.314293pt;}
.y28_c01312{bottom:929.455189pt;}
.y27_c01312{bottom:931.833451pt;}
.y26_c01312{bottom:932.288907pt;}
.y25_c01312{bottom:933.150603pt;}
.y24_c01312{bottom:934.016533pt;}
.y23_c01312{bottom:935.964373pt;}
.y22_c01312{bottom:937.264021pt;}
.y21_c01312{bottom:937.684885pt;}
.y20_c01312{bottom:938.990475pt;}
.y1f_c01312{bottom:939.627573pt;}
.y1e_c01312{bottom:940.917045pt;}
.y1d_c01312{bottom:941.321429pt;}
.y1c_c01312{bottom:941.755360pt;}
.y1b_c01312{bottom:960.501589pt;}
.y1a_c01312{bottom:961.081397pt;}
.y19_c01312{bottom:962.372651pt;}
.y18_c01312{bottom:963.507947pt;}
.y17_c01312{bottom:964.820256pt;}
.y16_c01312{bottom:965.768821pt;}
.y15_c01312{bottom:966.307488pt;}
.y14_c01312{bottom:967.083424pt;}
.y13_c01312{bottom:967.639669pt;}
.y12_c01312{bottom:968.560107pt;}
.y11_c01312{bottom:970.417131pt;}
.y10_c01312{bottom:971.520245pt;}
.yf_c01312{bottom:991.302741pt;}
.ye_c01312{bottom:991.764224pt;}
.yd_c01312{bottom:992.140651pt;}
.yc_c01312{bottom:992.839189pt;}
.yb_c01312{bottom:993.204224pt;}
.ya_c01312{bottom:994.457131pt;}
.y9_c01312{bottom:996.169792pt;}
.y8_c01312{bottom:997.302997pt;}
.y7_c01312{bottom:997.917803pt;}
.y6_c01312{bottom:998.231957pt;}
.y5_c01312{bottom:999.168853pt;}
.y4_c01312{bottom:999.475947pt;}
.y3_c01312{bottom:1000.094421pt;}
.y2_c01312{bottom:1000.562667pt;}
.y1_c01312{bottom:1055.886667pt;}
.h3_c01312{height:58.674176pt;}
.h6_c01312{height:64.008191pt;}
.hb_c01312{height:64.012799pt;}
.h11_c01312{height:64.023324pt;}
.h4_c01312{height:69.342207pt;}
.h9_c01312{height:69.347199pt;}
.h8_c01312{height:69.350110pt;}
.he_c01312{height:69.354997pt;}
.h10_c01312{height:69.358601pt;}
.h2_c01312{height:74.666667pt;}
.h5_c01312{height:74.676223pt;}
.ha_c01312{height:74.681599pt;}
.h12_c01312{height:74.688168pt;}
.hf_c01312{height:74.689996pt;}
.h7_c01312{height:80.001440pt;}
.hc_c01312{height:80.015998pt;}
.hd_c01312{height:80.024996pt;}
.h1_c01312{height:1111.333333pt;}
.h0_c01312{height:1111.440000pt;}
.w1_c01312{width:810.666667pt;}
.w0_c01312{width:810.933333pt;}
.x0_c01312{left:0.000000pt;}
.xec_c01312{left:102.434245pt;}
.xdd_c01312{left:104.841600pt;}
.xda_c01312{left:105.903267pt;}
.xc0_c01312{left:108.008373pt;}
.xa2_c01312{left:109.430827pt;}
.x86_c01312{left:111.578373pt;}
.x5d_c01312{left:114.421333pt;}
.x52_c01312{left:115.334645pt;}
.x3c_c01312{left:116.682624pt;}
.x1a_c01312{left:118.903093pt;}
.x3_c01312{left:119.804000pt;}
.x9a_c01312{left:129.358107pt;}
.x73_c01312{left:133.430667pt;}
.xd4_c01312{left:136.852067pt;}
.x1b_c01312{left:138.605195pt;}
.xe3_c01312{left:143.746700pt;}
.x31_c01312{left:146.216800pt;}
.xc1_c01312{left:147.649467pt;}
.x4_c01312{left:149.069333pt;}
.xef_c01312{left:150.446667pt;}
.xcc_c01312{left:155.985200pt;}
.x1c_c01312{left:156.960757pt;}
.xac_c01312{left:159.031840pt;}
.x87_c01312{left:161.244400pt;}
.x6a_c01312{left:162.298667pt;}
.x48_c01312{left:163.989621pt;}
.xb8_c01312{left:166.768693pt;}
.x9b_c01312{left:169.410907pt;}
.x11_c01312{left:177.099125pt;}
.x90_c01312{left:179.566427pt;}
.x3d_c01312{left:181.690464pt;}
.x49_c01312{left:183.607029pt;}
.x32_c01312{left:185.082400pt;}
.x5_c01312{left:187.724000pt;}
.x7c_c01312{left:192.169813pt;}
.x53_c01312{left:194.281461pt;}
.xe5_c01312{left:201.042667pt;}
.xde_c01312{left:202.725600pt;}
.x5e_c01312{left:203.908000pt;}
.x6_c01312{left:206.917333pt;}
.x7d_c01312{left:211.361227pt;}
.x33_c01312{left:214.048960pt;}
.x1d_c01312{left:215.547125pt;}
.x26_c01312{left:216.669472pt;}
.xdb_c01312{left:222.686933pt;}
.xf0_c01312{left:228.172000pt;}
.x88_c01312{left:230.386987pt;}
.x54_c01312{left:231.850933pt;}
.xad_c01312{left:236.358507pt;}
.xd5_c01312{left:242.390433pt;}
.x34_c01312{left:243.323477pt;}
.x1e_c01312{left:244.529685pt;}
.xa3_c01312{left:246.222827pt;}
.x91_c01312{left:247.190400pt;}
.x74_c01312{left:249.404000pt;}
.xdc_c01312{left:252.713933pt;}
.xc2_c01312{left:254.194533pt;}
.x7e_c01312{left:258.417867pt;}
.xe6_c01312{left:260.800000pt;}
.x7_c01312{left:265.473333pt;}
.x6b_c01312{left:269.505333pt;}
.x12_c01312{left:274.825099pt;}
.xc3_c01312{left:276.178987pt;}
.x92_c01312{left:277.443120pt;}
.x35_c01312{left:283.180992pt;}
.x8_c01312{left:285.108000pt;}
.xe7_c01312{left:289.589333pt;}
.x3e_c01312{left:292.127403pt;}
.x9c_c01312{left:295.472827pt;}
.xf1_c01312{left:297.529333pt;}
.xc4_c01312{left:299.024747pt;}
.xdf_c01312{left:300.210867pt;}
.x75_c01312{left:301.512000pt;}
.x1f_c01312{left:303.873323pt;}
.xb9_c01312{left:304.775360pt;}
.xae_c01312{left:306.894507pt;}
.x89_c01312{left:308.082560pt;}
.x5f_c01312{left:309.542667pt;}
.x4a_c01312{left:310.609568pt;}
.x3f_c01312{left:311.523499pt;}
.x27_c01312{left:313.119083pt;}
.x93_c01312{left:316.818320pt;}
.xe8_c01312{left:319.176000pt;}
.x9_c01312{left:323.533333pt;}
.x7f_c01312{left:327.712267pt;}
.x6c_c01312{left:328.686667pt;}
.x60_c01312{left:330.146667pt;}
.x4b_c01312{left:331.200245pt;}
.xd6_c01312{left:332.746333pt;}
.x55_c01312{left:340.292789pt;}
.x1_c01312{left:342.960000pt;}
.xaf_c01312{left:345.766507pt;}
.x76_c01312{left:349.348000pt;}
.x28_c01312{left:351.122720pt;}
.x13_c01312{left:352.530699pt;}
.xa4_c01312{left:355.722827pt;}
.x56_c01312{left:361.168128pt;}
.x2_c01312{left:364.560000pt;}
.x61_c01312{left:368.545333pt;}
.x8a_c01312{left:377.182453pt;}
.x20_c01312{left:382.064480pt;}
.xca_c01312{left:391.021947pt;}
.x29_c01312{left:392.390080pt;}
.x14_c01312{left:393.358069pt;}
.xa_c01312{left:394.358667pt;}
.xf2_c01312{left:395.992000pt;}
.x77_c01312{left:397.770667pt;}
.x57_c01312{left:399.577557pt;}
.xd0_c01312{left:401.097333pt;}
.xa5_c01312{left:403.962827pt;}
.x6d_c01312{left:407.310667pt;}
.xc5_c01312{left:412.649547pt;}
.xb0_c01312{left:413.671840pt;}
.x94_c01312{left:415.060347pt;}
.xed_c01312{left:417.309749pt;}
.x4c_c01312{left:419.111947pt;}
.x36_c01312{left:420.214496pt;}
.x15_c01312{left:421.690037pt;}
.x9d_c01312{left:424.625147pt;}
.x78_c01312{left:427.486667pt;}
.x40_c01312{left:429.427947pt;}
.x2a_c01312{left:432.237568pt;}
.xd1_c01312{left:433.762667pt;}
.x8b_c01312{left:435.485467pt;}
.x6e_c01312{left:436.834667pt;}
.x62_c01312{left:438.144000pt;}
.xb1_c01312{left:442.706507pt;}
.xc6_c01312{left:443.650987pt;}
.x4d_c01312{left:447.856779pt;}
.x41_c01312{left:448.805376pt;}
.x37_c01312{left:451.424843pt;}
.x2b_c01312{left:460.528640pt;}
.x9e_c01312{left:463.274053pt;}
.x8c_c01312{left:465.716267pt;}
.xcd_c01312{left:469.208560pt;}
.x21_c01312{left:470.629323pt;}
.x16_c01312{left:471.639648pt;}
.x79_c01312{left:475.529333pt;}
.xd2_c01312{left:479.516000pt;}
.x42_c01312{left:480.995307pt;}
.xa6_c01312{left:482.921493pt;}
.x80_c01312{left:485.019227pt;}
.x4e_c01312{left:488.002219pt;}
.x9f_c01312{left:493.514293pt;}
.x58_c01312{left:498.661045pt;}
.xb_c01312{left:501.400000pt;}
.x6f_c01312{left:505.702667pt;}
.x63_c01312{left:507.742667pt;}
.x22_c01312{left:509.996213pt;}
.xba_c01312{left:510.999360pt;}
.x95_c01312{left:513.482400pt;}
.x81_c01312{left:514.460293pt;}
.x7a_c01312{left:515.572000pt;}
.x38_c01312{left:518.690379pt;}
.xa7_c01312{left:521.568160pt;}
.xe9_c01312{left:525.144000pt;}
.x4f_c01312{left:528.767616pt;}
.x2c_c01312{left:530.467051pt;}
.x96_c01312{left:533.822000pt;}
.x64_c01312{left:535.582667pt;}
.x43_c01312{left:537.677013pt;}
.x39_c01312{left:538.627125pt;}
.x17_c01312{left:540.739008pt;}
.x8d_c01312{left:543.454480pt;}
.xe0_c01312{left:546.330433pt;}
.xce_c01312{left:548.039360pt;}
.x23_c01312{left:549.181792pt;}
.x2d_c01312{left:550.260139pt;}
.xb2_c01312{left:551.573173pt;}
.xa0_c01312{left:552.714880pt;}
.xf3_c01312{left:554.005333pt;}
.xea_c01312{left:554.912000pt;}
.x59_c01312{left:556.009877pt;}
.xc7_c01312{left:559.936987pt;}
.x82_c01312{left:563.399413pt;}
.x70_c01312{left:564.585333pt;}
.x44_c01312{left:567.395115pt;}
.x24_c01312{left:569.895808pt;}
.xb3_c01312{left:571.177173pt;}
.xd7_c01312{left:577.363433pt;}
.xc8_c01312{left:578.321573pt;}
.xc_c01312{left:579.706667pt;}
.x65_c01312{left:584.301333pt;}
.xd3_c01312{left:587.572000pt;}
.xbb_c01312{left:589.555360pt;}
.x97_c01312{left:591.683520pt;}
.xeb_c01312{left:593.570667pt;}
.x5a_c01312{left:595.504619pt;}
.x45_c01312{left:596.941216pt;}
.x18_c01312{left:600.525483pt;}
.xd_c01312{left:602.521333pt;}
.x2e_c01312{left:608.432821pt;}
.xbc_c01312{left:609.471360pt;}
.xa8_c01312{left:610.694827pt;}
.x50_c01312{left:615.940715pt;}
.x3a_c01312{left:617.295573pt;}
.xb4_c01312{left:622.369173pt;}
.xe1_c01312{left:625.083567pt;}
.x83_c01312{left:632.729813pt;}
.x71_c01312{left:634.172000pt;}
.x51_c01312{left:636.291413pt;}
.x2f_c01312{left:637.279851pt;}
.xbd_c01312{left:638.428533pt;}
.xcf_c01312{left:639.578213pt;}
.xa9_c01312{left:640.641493pt;}
.x8e_c01312{left:642.522507pt;}
.xe_c01312{left:646.180000pt;}
.xa1_c01312{left:649.396480pt;}
.xe2_c01312{left:654.629333pt;}
.x5b_c01312{left:656.453344pt;}
.x98_c01312{left:661.118133pt;}
.x46_c01312{left:665.807467pt;}
.xbe_c01312{left:667.577440pt;}
.x19_c01312{left:668.475552pt;}
.xf_c01312{left:669.706667pt;}
.x84_c01312{left:671.593920pt;}
.x72_c01312{left:673.309333pt;}
.x66_c01312{left:674.778667pt;}
.x30_c01312{left:676.356715pt;}
.x25_c01312{left:678.026773pt;}
.x99_c01312{left:681.708400pt;}
.xd8_c01312{left:684.548900pt;}
.x3b_c01312{left:686.192960pt;}
.xaa_c01312{left:688.962827pt;}
.x8f_c01312{left:691.468560pt;}
.x47_c01312{left:694.849611pt;}
.xcb_c01312{left:696.445600pt;}
.x10_c01312{left:698.549333pt;}
.x7b_c01312{left:702.398667pt;}
.x67_c01312{left:703.652000pt;}
.xbf_c01312{left:707.308400pt;}
.xb5_c01312{left:709.630507pt;}
.x5c_c01312{left:714.330155pt;}
.xd9_c01312{left:716.486200pt;}
.x85_c01312{left:723.195440pt;}
.xc9_c01312{left:725.019733pt;}
.x68_c01312{left:735.110667pt;}
.xb6_c01312{left:748.103840pt;}
.xee_c01312{left:751.878083pt;}
.xe4_c01312{left:753.254633pt;}
.x69_c01312{left:783.525333pt;}
.xb7_c01312{left:791.905173pt;}
.xab_c01312{left:793.173493pt;}
}





/* 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_c01313 {
    display:none;
  }
  .loading-indicator_c01313.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01313 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_c01313 { 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_c01313" -> "#page-container .classname_c01313")
 */
.pf_c01313 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01313 { /* 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_c01313.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01313 { /* 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_c01313 { /* 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_c01313 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01313 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01313 {overflow:visible;}
  }
}
.c_c01313 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01313 { /* 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_c01313:after { /* webkit #35443 */
  content: '';
}
.t_c01313:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01313 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 */
}
.__c01313 { /* 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_c01313 { /* info for Javascript */
  display:none;
}
.l_c01313 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01313 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01313 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01313: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_c01313 {
    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_c01313.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01313.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_c01313 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01313{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01313;src:url('chunks/assets/font_b7b4774e48f67cd51473f593.woff2')format("woff");}.ff1_c01313{font-family:ff1_c01313;line-height:1.000000;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;}
.m0_c01313{transform:matrix(0.697430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697430,0.000000,0.000000,0.250000,0,0);}
.v0_c01313{vertical-align:0.000000px;}
.ls0_c01313{letter-spacing:0.000000px;}
.sc__c01313{text-shadow:none;}
.sc0_c01313{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__c01313{-webkit-text-stroke:0px transparent;}
.sc0_c01313{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01313{word-spacing:0.000000px;}
.fc0_c01313{color:transparent;}
.fs0_c01313{font-size:78.000000px;}
.y0_c01313{bottom:0.000000px;}
.y1_c01313{bottom:949.450500px;}
.h2_c01313{height:78.000000px;}
.h1_c01313{height:1250.250000px;}
.h0_c01313{height:1250.370000px;}
.w1_c01313{width:912.000000px;}
.w0_c01313{width:912.300000px;}
.x0_c01313{left:0.000000px;}
.x1_c01313{left:677.970000px;}
@media print{
.v0_c01313{vertical-align:0.000000pt;}
.ls0_c01313{letter-spacing:0.000000pt;}
.ws0_c01313{word-spacing:0.000000pt;}
.fs0_c01313{font-size:69.333333pt;}
.y0_c01313{bottom:0.000000pt;}
.y1_c01313{bottom:843.956000pt;}
.h2_c01313{height:69.333333pt;}
.h1_c01313{height:1111.333333pt;}
.h0_c01313{height:1111.440000pt;}
.w1_c01313{width:810.666667pt;}
.w0_c01313{width:810.933333pt;}
.x0_c01313{left:0.000000pt;}
.x1_c01313{left:602.640000pt;}
}





/* 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_c01314 {
    display:none;
  }
  .loading-indicator_c01314.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01314 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_c01314 { 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_c01314" -> "#page-container .classname_c01314")
 */
.pf_c01314 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01314 { /* 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_c01314.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01314 { /* 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_c01314 { /* 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_c01314 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01314 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01314 {overflow:visible;}
  }
}
.c_c01314 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01314 { /* 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_c01314:after { /* webkit #35443 */
  content: '';
}
.t_c01314:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01314 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 */
}
.__c01314 { /* 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_c01314 { /* info for Javascript */
  display:none;
}
.l_c01314 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01314 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01314 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01314: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_c01314 {
    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_c01314.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01314.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_c01314 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01314{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01314;src:url('chunks/assets/font_b11a17f404e7258299fdf971.woff2')format("woff");}.ff1_c01314{font-family:ff1_c01314;line-height:1.000000;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;}
.m26_c01314{transform:matrix(0.151144,0.009390,-0.015501,0.249519,0,0);-ms-transform:matrix(0.151144,0.009390,-0.015501,0.249519,0,0);-webkit-transform:matrix(0.151144,0.009390,-0.015501,0.249519,0,0);}
.m23_c01314{transform:matrix(0.157936,0.009812,-0.015501,0.249519,0,0);-ms-transform:matrix(0.157936,0.009812,-0.015501,0.249519,0,0);-webkit-transform:matrix(0.157936,0.009812,-0.015501,0.249519,0,0);}
.m29_c01314{transform:matrix(0.160017,0.009941,-0.015501,0.249519,0,0);-ms-transform:matrix(0.160017,0.009941,-0.015501,0.249519,0,0);-webkit-transform:matrix(0.160017,0.009941,-0.015501,0.249519,0,0);}
.m28_c01314{transform:matrix(0.166060,0.010316,-0.015501,0.249519,0,0);-ms-transform:matrix(0.166060,0.010316,-0.015501,0.249519,0,0);-webkit-transform:matrix(0.166060,0.010316,-0.015501,0.249519,0,0);}
.m10_c01314{transform:matrix(0.166873,0.006515,-0.009752,0.249810,0,0);-ms-transform:matrix(0.166873,0.006515,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.166873,0.006515,-0.009752,0.249810,0,0);}
.m27_c01314{transform:matrix(0.167307,0.010394,-0.015501,0.249519,0,0);-ms-transform:matrix(0.167307,0.010394,-0.015501,0.249519,0,0);-webkit-transform:matrix(0.167307,0.010394,-0.015501,0.249519,0,0);}
.m2a_c01314{transform:matrix(0.168735,0.010483,-0.015501,0.249519,0,0);-ms-transform:matrix(0.168735,0.010483,-0.015501,0.249519,0,0);-webkit-transform:matrix(0.168735,0.010483,-0.015501,0.249519,0,0);}
.m2b_c01314{transform:matrix(0.169488,0.010529,-0.015501,0.249519,0,0);-ms-transform:matrix(0.169488,0.010529,-0.015501,0.249519,0,0);-webkit-transform:matrix(0.169488,0.010529,-0.015501,0.249519,0,0);}
.m25_c01314{transform:matrix(0.170916,0.010618,-0.015501,0.249519,0,0);-ms-transform:matrix(0.170916,0.010618,-0.015501,0.249519,0,0);-webkit-transform:matrix(0.170916,0.010618,-0.015501,0.249519,0,0);}
.md_c01314{transform:matrix(0.180922,0.007063,-0.009752,0.249810,0,0);-ms-transform:matrix(0.180922,0.007063,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.180922,0.007063,-0.009752,0.249810,0,0);}
.mf_c01314{transform:matrix(0.183505,0.007164,-0.009752,0.249810,0,0);-ms-transform:matrix(0.183505,0.007164,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.183505,0.007164,-0.009752,0.249810,0,0);}
.m11_c01314{transform:matrix(0.184504,0.007203,-0.009752,0.249810,0,0);-ms-transform:matrix(0.184504,0.007203,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.184504,0.007203,-0.009752,0.249810,0,0);}
.m15_c01314{transform:matrix(0.184514,0.007203,-0.009752,0.249810,0,0);-ms-transform:matrix(0.184514,0.007203,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.184514,0.007203,-0.009752,0.249810,0,0);}
.m44_c01314{transform:matrix(0.186875,0.011609,-0.015501,0.249519,0,0);-ms-transform:matrix(0.186875,0.011609,-0.015501,0.249519,0,0);-webkit-transform:matrix(0.186875,0.011609,-0.015501,0.249519,0,0);}
.m4b_c01314{transform:matrix(0.187459,0.011646,-0.015501,0.249519,0,0);-ms-transform:matrix(0.187459,0.011646,-0.015501,0.249519,0,0);-webkit-transform:matrix(0.187459,0.011646,-0.015501,0.249519,0,0);}
.m49_c01314{transform:matrix(0.187888,0.011672,-0.015501,0.249519,0,0);-ms-transform:matrix(0.187888,0.011672,-0.015501,0.249519,0,0);-webkit-transform:matrix(0.187888,0.011672,-0.015501,0.249519,0,0);}
.me_c01314{transform:matrix(0.188202,0.007347,-0.009752,0.249810,0,0);-ms-transform:matrix(0.188202,0.007347,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.188202,0.007347,-0.009752,0.249810,0,0);}
.m2c_c01314{transform:matrix(0.193861,0.012043,-0.015501,0.249519,0,0);-ms-transform:matrix(0.193861,0.012043,-0.015501,0.249519,0,0);-webkit-transform:matrix(0.193861,0.012043,-0.015501,0.249519,0,0);}
.m47_c01314{transform:matrix(0.193871,0.012044,-0.015501,0.249519,0,0);-ms-transform:matrix(0.193871,0.012044,-0.015501,0.249519,0,0);-webkit-transform:matrix(0.193871,0.012044,-0.015501,0.249519,0,0);}
.m4d_c01314{transform:matrix(0.194610,0.012090,-0.015501,0.249519,0,0);-ms-transform:matrix(0.194610,0.012090,-0.015501,0.249519,0,0);-webkit-transform:matrix(0.194610,0.012090,-0.015501,0.249519,0,0);}
.m1e_c01314{transform:matrix(0.195298,0.012133,-0.015501,0.249519,0,0);-ms-transform:matrix(0.195298,0.012133,-0.015501,0.249519,0,0);-webkit-transform:matrix(0.195298,0.012133,-0.015501,0.249519,0,0);}
.m13_c01314{transform:matrix(0.195426,0.007629,-0.009752,0.249810,0,0);-ms-transform:matrix(0.195426,0.007629,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.195426,0.007629,-0.009752,0.249810,0,0);}
.m3d_c01314{transform:matrix(0.197389,0.012263,-0.015501,0.249519,0,0);-ms-transform:matrix(0.197389,0.012263,-0.015501,0.249519,0,0);-webkit-transform:matrix(0.197389,0.012263,-0.015501,0.249519,0,0);}
.m42_c01314{transform:matrix(0.200758,0.012472,-0.015501,0.249519,0,0);-ms-transform:matrix(0.200758,0.012472,-0.015501,0.249519,0,0);-webkit-transform:matrix(0.200758,0.012472,-0.015501,0.249519,0,0);}
.m45_c01314{transform:matrix(0.204107,0.012680,-0.015501,0.249519,0,0);-ms-transform:matrix(0.204107,0.012680,-0.015501,0.249519,0,0);-webkit-transform:matrix(0.204107,0.012680,-0.015501,0.249519,0,0);}
.m4c_c01314{transform:matrix(0.205145,0.012744,-0.015501,0.249519,0,0);-ms-transform:matrix(0.205145,0.012744,-0.015501,0.249519,0,0);-webkit-transform:matrix(0.205145,0.012744,-0.015501,0.249519,0,0);}
.m48_c01314{transform:matrix(0.205419,0.012761,-0.015501,0.249519,0,0);-ms-transform:matrix(0.205419,0.012761,-0.015501,0.249519,0,0);-webkit-transform:matrix(0.205419,0.012761,-0.015501,0.249519,0,0);}
.m12_c01314{transform:matrix(0.206538,0.008063,-0.009752,0.249810,0,0);-ms-transform:matrix(0.206538,0.008063,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.206538,0.008063,-0.009752,0.249810,0,0);}
.m18_c01314{transform:matrix(0.207635,0.012899,-0.015501,0.249519,0,0);-ms-transform:matrix(0.207635,0.012899,-0.015501,0.249519,0,0);-webkit-transform:matrix(0.207635,0.012899,-0.015501,0.249519,0,0);}
.m14_c01314{transform:matrix(0.209221,0.008168,-0.009752,0.249810,0,0);-ms-transform:matrix(0.209221,0.008168,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.209221,0.008168,-0.009752,0.249810,0,0);}
.m4a_c01314{transform:matrix(0.210434,0.013073,-0.015501,0.249519,0,0);-ms-transform:matrix(0.210434,0.013073,-0.015501,0.249519,0,0);-webkit-transform:matrix(0.210434,0.013073,-0.015501,0.249519,0,0);}
.mc_c01314{transform:matrix(0.212813,0.008308,-0.009752,0.249810,0,0);-ms-transform:matrix(0.212813,0.008308,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.212813,0.008308,-0.009752,0.249810,0,0);}
.m16_c01314{transform:matrix(0.212893,0.008311,-0.009752,0.249810,0,0);-ms-transform:matrix(0.212893,0.008311,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.212893,0.008311,-0.009752,0.249810,0,0);}
.m3e_c01314{transform:matrix(0.213743,0.013279,-0.015501,0.249519,0,0);-ms-transform:matrix(0.213743,0.013279,-0.015501,0.249519,0,0);-webkit-transform:matrix(0.213743,0.013279,-0.015501,0.249519,0,0);}
.m24_c01314{transform:matrix(0.213883,0.013287,-0.015501,0.249519,0,0);-ms-transform:matrix(0.213883,0.013287,-0.015501,0.249519,0,0);-webkit-transform:matrix(0.213883,0.013287,-0.015501,0.249519,0,0);}
.m46_c01314{transform:matrix(0.213918,0.013289,-0.015501,0.249519,0,0);-ms-transform:matrix(0.213918,0.013289,-0.015501,0.249519,0,0);-webkit-transform:matrix(0.213918,0.013289,-0.015501,0.249519,0,0);}
.m3a_c01314{transform:matrix(0.214167,0.013305,-0.015501,0.249519,0,0);-ms-transform:matrix(0.214167,0.013305,-0.015501,0.249519,0,0);-webkit-transform:matrix(0.214167,0.013305,-0.015501,0.249519,0,0);}
.m19_c01314{transform:matrix(0.215375,0.013380,-0.015501,0.249519,0,0);-ms-transform:matrix(0.215375,0.013380,-0.015501,0.249519,0,0);-webkit-transform:matrix(0.215375,0.013380,-0.015501,0.249519,0,0);}
.m22_c01314{transform:matrix(0.215929,0.013414,-0.015501,0.249519,0,0);-ms-transform:matrix(0.215929,0.013414,-0.015501,0.249519,0,0);-webkit-transform:matrix(0.215929,0.013414,-0.015501,0.249519,0,0);}
.m41_c01314{transform:matrix(0.216238,0.013434,-0.015501,0.249519,0,0);-ms-transform:matrix(0.216238,0.013434,-0.015501,0.249519,0,0);-webkit-transform:matrix(0.216238,0.013434,-0.015501,0.249519,0,0);}
.m1d_c01314{transform:matrix(0.218050,0.013546,-0.015501,0.249519,0,0);-ms-transform:matrix(0.218050,0.013546,-0.015501,0.249519,0,0);-webkit-transform:matrix(0.218050,0.013546,-0.015501,0.249519,0,0);}
.m3b_c01314{transform:matrix(0.220934,0.013725,-0.015501,0.249519,0,0);-ms-transform:matrix(0.220934,0.013725,-0.015501,0.249519,0,0);-webkit-transform:matrix(0.220934,0.013725,-0.015501,0.249519,0,0);}
.m3c_c01314{transform:matrix(0.221313,0.013749,-0.015501,0.249519,0,0);-ms-transform:matrix(0.221313,0.013749,-0.015501,0.249519,0,0);-webkit-transform:matrix(0.221313,0.013749,-0.015501,0.249519,0,0);}
.m6c_c01314{transform:matrix(0.221490,0.014204,-0.015999,0.249488,0,0);-ms-transform:matrix(0.221490,0.014204,-0.015999,0.249488,0,0);-webkit-transform:matrix(0.221490,0.014204,-0.015999,0.249488,0,0);}
.m1f_c01314{transform:matrix(0.222451,0.013820,-0.015501,0.249519,0,0);-ms-transform:matrix(0.222451,0.013820,-0.015501,0.249519,0,0);-webkit-transform:matrix(0.222451,0.013820,-0.015501,0.249519,0,0);}
.m4e_c01314{transform:matrix(0.222521,0.013824,-0.015501,0.249519,0,0);-ms-transform:matrix(0.222521,0.013824,-0.015501,0.249519,0,0);-webkit-transform:matrix(0.222521,0.013824,-0.015501,0.249519,0,0);}
.m4f_c01314{transform:matrix(0.222536,0.013825,-0.015501,0.249519,0,0);-ms-transform:matrix(0.222536,0.013825,-0.015501,0.249519,0,0);-webkit-transform:matrix(0.222536,0.013825,-0.015501,0.249519,0,0);}
.m5c_c01314{transform:matrix(0.223231,0.014092,-0.015750,0.249503,0,0);-ms-transform:matrix(0.223231,0.014092,-0.015750,0.249503,0,0);-webkit-transform:matrix(0.223231,0.014092,-0.015750,0.249503,0,0);}
.m3f_c01314{transform:matrix(0.224976,0.013976,-0.015501,0.249519,0,0);-ms-transform:matrix(0.224976,0.013976,-0.015501,0.249519,0,0);-webkit-transform:matrix(0.224976,0.013976,-0.015501,0.249519,0,0);}
.m1a_c01314{transform:matrix(0.225081,0.013983,-0.015501,0.249519,0,0);-ms-transform:matrix(0.225081,0.013983,-0.015501,0.249519,0,0);-webkit-transform:matrix(0.225081,0.013983,-0.015501,0.249519,0,0);}
.m1c_c01314{transform:matrix(0.226059,0.014044,-0.015501,0.249519,0,0);-ms-transform:matrix(0.226059,0.014044,-0.015501,0.249519,0,0);-webkit-transform:matrix(0.226059,0.014044,-0.015501,0.249519,0,0);}
.m40_c01314{transform:matrix(0.226433,0.014067,-0.015501,0.249519,0,0);-ms-transform:matrix(0.226433,0.014067,-0.015501,0.249519,0,0);-webkit-transform:matrix(0.226433,0.014067,-0.015501,0.249519,0,0);}
.m6e_c01314{transform:matrix(0.227388,0.014582,-0.015999,0.249488,0,0);-ms-transform:matrix(0.227388,0.014582,-0.015999,0.249488,0,0);-webkit-transform:matrix(0.227388,0.014582,-0.015999,0.249488,0,0);}
.m35_c01314{transform:matrix(0.228764,0.014212,-0.015501,0.249519,0,0);-ms-transform:matrix(0.228764,0.014212,-0.015501,0.249519,0,0);-webkit-transform:matrix(0.228764,0.014212,-0.015501,0.249519,0,0);}
.m51_c01314{transform:matrix(0.229763,0.014504,-0.015750,0.249503,0,0);-ms-transform:matrix(0.229763,0.014504,-0.015750,0.249503,0,0);-webkit-transform:matrix(0.229763,0.014504,-0.015750,0.249503,0,0);}
.m2f_c01314{transform:matrix(0.230002,0.014289,-0.015501,0.249519,0,0);-ms-transform:matrix(0.230002,0.014289,-0.015501,0.249519,0,0);-webkit-transform:matrix(0.230002,0.014289,-0.015501,0.249519,0,0);}
.m20_c01314{transform:matrix(0.230570,0.014324,-0.015501,0.249519,0,0);-ms-transform:matrix(0.230570,0.014324,-0.015501,0.249519,0,0);-webkit-transform:matrix(0.230570,0.014324,-0.015501,0.249519,0,0);}
.m39_c01314{transform:matrix(0.234588,0.014574,-0.015501,0.249519,0,0);-ms-transform:matrix(0.234588,0.014574,-0.015501,0.249519,0,0);-webkit-transform:matrix(0.234588,0.014574,-0.015501,0.249519,0,0);}
.m33_c01314{transform:matrix(0.234727,0.014582,-0.015501,0.249519,0,0);-ms-transform:matrix(0.234727,0.014582,-0.015501,0.249519,0,0);-webkit-transform:matrix(0.234727,0.014582,-0.015501,0.249519,0,0);}
.m54_c01314{transform:matrix(0.234917,0.014829,-0.015750,0.249503,0,0);-ms-transform:matrix(0.234917,0.014829,-0.015750,0.249503,0,0);-webkit-transform:matrix(0.234917,0.014829,-0.015750,0.249503,0,0);}
.m74_c01314{transform:matrix(0.236345,0.015156,-0.015999,0.249488,0,0);-ms-transform:matrix(0.236345,0.015156,-0.015999,0.249488,0,0);-webkit-transform:matrix(0.236345,0.015156,-0.015999,0.249488,0,0);}
.m38_c01314{transform:matrix(0.237372,0.014747,-0.015501,0.249519,0,0);-ms-transform:matrix(0.237372,0.014747,-0.015501,0.249519,0,0);-webkit-transform:matrix(0.237372,0.014747,-0.015501,0.249519,0,0);}
.m6b_c01314{transform:matrix(0.238545,0.015297,-0.015999,0.249488,0,0);-ms-transform:matrix(0.238545,0.015297,-0.015999,0.249488,0,0);-webkit-transform:matrix(0.238545,0.015297,-0.015999,0.249488,0,0);}
.m2d_c01314{transform:matrix(0.240461,0.014938,-0.015501,0.249519,0,0);-ms-transform:matrix(0.240461,0.014938,-0.015501,0.249519,0,0);-webkit-transform:matrix(0.240461,0.014938,-0.015501,0.249519,0,0);}
.m73_c01314{transform:matrix(0.241783,0.015505,-0.015999,0.249488,0,0);-ms-transform:matrix(0.241783,0.015505,-0.015999,0.249488,0,0);-webkit-transform:matrix(0.241783,0.015505,-0.015999,0.249488,0,0);}
.m59_c01314{transform:matrix(0.242178,0.015288,-0.015750,0.249503,0,0);-ms-transform:matrix(0.242178,0.015288,-0.015750,0.249503,0,0);-webkit-transform:matrix(0.242178,0.015288,-0.015750,0.249503,0,0);}
.m55_c01314{transform:matrix(0.243540,0.015374,-0.015750,0.249503,0,0);-ms-transform:matrix(0.243540,0.015374,-0.015750,0.249503,0,0);-webkit-transform:matrix(0.243540,0.015374,-0.015750,0.249503,0,0);}
.m1b_c01314{transform:matrix(0.243705,0.015140,-0.015501,0.249519,0,0);-ms-transform:matrix(0.243705,0.015140,-0.015501,0.249519,0,0);-webkit-transform:matrix(0.243705,0.015140,-0.015501,0.249519,0,0);}
.m21_c01314{transform:matrix(0.243795,0.015146,-0.015501,0.249519,0,0);-ms-transform:matrix(0.243795,0.015146,-0.015501,0.249519,0,0);-webkit-transform:matrix(0.243795,0.015146,-0.015501,0.249519,0,0);}
.m37_c01314{transform:matrix(0.244344,0.015180,-0.015501,0.249519,0,0);-ms-transform:matrix(0.244344,0.015180,-0.015501,0.249519,0,0);-webkit-transform:matrix(0.244344,0.015180,-0.015501,0.249519,0,0);}
.m53_c01314{transform:matrix(0.245212,0.015479,-0.015750,0.249503,0,0);-ms-transform:matrix(0.245212,0.015479,-0.015750,0.249503,0,0);-webkit-transform:matrix(0.245212,0.015479,-0.015750,0.249503,0,0);}
.m5f_c01314{transform:matrix(0.245541,0.015500,-0.015750,0.249503,0,0);-ms-transform:matrix(0.245541,0.015500,-0.015750,0.249503,0,0);-webkit-transform:matrix(0.245541,0.015500,-0.015750,0.249503,0,0);}
.m65_c01314{transform:matrix(0.247058,0.015596,-0.015750,0.249503,0,0);-ms-transform:matrix(0.247058,0.015596,-0.015750,0.249503,0,0);-webkit-transform:matrix(0.247058,0.015596,-0.015750,0.249503,0,0);}
.m30_c01314{transform:matrix(0.247064,0.015349,-0.015501,0.249519,0,0);-ms-transform:matrix(0.247064,0.015349,-0.015501,0.249519,0,0);-webkit-transform:matrix(0.247064,0.015349,-0.015501,0.249519,0,0);}
.m4_c01314{transform:matrix(0.247362,0.009657,-0.009752,0.249810,0,0);-ms-transform:matrix(0.247362,0.009657,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.247362,0.009657,-0.009752,0.249810,0,0);}
.m6_c01314{transform:matrix(0.247427,0.009659,-0.009752,0.249810,0,0);-ms-transform:matrix(0.247427,0.009659,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.247427,0.009659,-0.009752,0.249810,0,0);}
.m9_c01314{transform:matrix(0.248116,0.009686,-0.009752,0.249810,0,0);-ms-transform:matrix(0.248116,0.009686,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.248116,0.009686,-0.009752,0.249810,0,0);}
.m2_c01314{transform:matrix(0.248910,0.009717,-0.009752,0.249810,0,0);-ms-transform:matrix(0.248910,0.009717,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.248910,0.009717,-0.009752,0.249810,0,0);}
.m17_c01314{transform:matrix(0.248940,0.009718,-0.009752,0.249810,0,0);-ms-transform:matrix(0.248940,0.009718,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.248940,0.009718,-0.009752,0.249810,0,0);}
.m34_c01314{transform:matrix(0.249249,0.015484,-0.015501,0.249519,0,0);-ms-transform:matrix(0.249249,0.015484,-0.015501,0.249519,0,0);-webkit-transform:matrix(0.249249,0.015484,-0.015501,0.249519,0,0);}
.m58_c01314{transform:matrix(0.249853,0.015772,-0.015750,0.249503,0,0);-ms-transform:matrix(0.249853,0.015772,-0.015750,0.249503,0,0);-webkit-transform:matrix(0.249853,0.015772,-0.015750,0.249503,0,0);}
.m50_c01314{transform:matrix(0.249962,0.015779,-0.015750,0.249503,0,0);-ms-transform:matrix(0.249962,0.015779,-0.015750,0.249503,0,0);-webkit-transform:matrix(0.249962,0.015779,-0.015750,0.249503,0,0);}
.m62_c01314{transform:matrix(0.251255,0.015861,-0.015750,0.249503,0,0);-ms-transform:matrix(0.251255,0.015861,-0.015750,0.249503,0,0);-webkit-transform:matrix(0.251255,0.015861,-0.015750,0.249503,0,0);}
.m52_c01314{transform:matrix(0.251365,0.015868,-0.015750,0.249503,0,0);-ms-transform:matrix(0.251365,0.015868,-0.015750,0.249503,0,0);-webkit-transform:matrix(0.251365,0.015868,-0.015750,0.249503,0,0);}
.m72_c01314{transform:matrix(0.251628,0.016136,-0.015999,0.249488,0,0);-ms-transform:matrix(0.251628,0.016136,-0.015999,0.249488,0,0);-webkit-transform:matrix(0.251628,0.016136,-0.015999,0.249488,0,0);}
.m31_c01314{transform:matrix(0.252059,0.015659,-0.015501,0.249519,0,0);-ms-transform:matrix(0.252059,0.015659,-0.015501,0.249519,0,0);-webkit-transform:matrix(0.252059,0.015659,-0.015501,0.249519,0,0);}
.m7_c01314{transform:matrix(0.254276,0.009927,-0.009752,0.249810,0,0);-ms-transform:matrix(0.254276,0.009927,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.254276,0.009927,-0.009752,0.249810,0,0);}
.m32_c01314{transform:matrix(0.254948,0.015838,-0.015501,0.249519,0,0);-ms-transform:matrix(0.254948,0.015838,-0.015501,0.249519,0,0);-webkit-transform:matrix(0.254948,0.015838,-0.015501,0.249519,0,0);}
.m6f_c01314{transform:matrix(0.255166,0.016363,-0.015999,0.249488,0,0);-ms-transform:matrix(0.255166,0.016363,-0.015999,0.249488,0,0);-webkit-transform:matrix(0.255166,0.016363,-0.015999,0.249488,0,0);}
.m70_c01314{transform:matrix(0.255495,0.016384,-0.015999,0.249488,0,0);-ms-transform:matrix(0.255495,0.016384,-0.015999,0.249488,0,0);-webkit-transform:matrix(0.255495,0.016384,-0.015999,0.249488,0,0);}
.m60_c01314{transform:matrix(0.257333,0.016244,-0.015750,0.249503,0,0);-ms-transform:matrix(0.257333,0.016244,-0.015750,0.249503,0,0);-webkit-transform:matrix(0.257333,0.016244,-0.015750,0.249503,0,0);}
.m36_c01314{transform:matrix(0.258716,0.016073,-0.015501,0.249519,0,0);-ms-transform:matrix(0.258716,0.016073,-0.015501,0.249519,0,0);-webkit-transform:matrix(0.258716,0.016073,-0.015501,0.249519,0,0);}
.m71_c01314{transform:matrix(0.258793,0.016596,-0.015999,0.249488,0,0);-ms-transform:matrix(0.258793,0.016596,-0.015999,0.249488,0,0);-webkit-transform:matrix(0.258793,0.016596,-0.015999,0.249488,0,0);}
.m5_c01314{transform:matrix(0.259128,0.010116,-0.009752,0.249810,0,0);-ms-transform:matrix(0.259128,0.010116,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.259128,0.010116,-0.009752,0.249810,0,0);}
.m5d_c01314{transform:matrix(0.259508,0.016382,-0.015750,0.249503,0,0);-ms-transform:matrix(0.259508,0.016382,-0.015750,0.249503,0,0);-webkit-transform:matrix(0.259508,0.016382,-0.015750,0.249503,0,0);}
.m2e_c01314{transform:matrix(0.259944,0.016149,-0.015501,0.249519,0,0);-ms-transform:matrix(0.259944,0.016149,-0.015501,0.249519,0,0);-webkit-transform:matrix(0.259944,0.016149,-0.015501,0.249519,0,0);}
.m5e_c01314{transform:matrix(0.260976,0.016474,-0.015750,0.249503,0,0);-ms-transform:matrix(0.260976,0.016474,-0.015750,0.249503,0,0);-webkit-transform:matrix(0.260976,0.016474,-0.015750,0.249503,0,0);}
.ma_c01314{transform:matrix(0.261586,0.010212,-0.009752,0.249810,0,0);-ms-transform:matrix(0.261586,0.010212,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.261586,0.010212,-0.009752,0.249810,0,0);}
.m56_c01314{transform:matrix(0.261719,0.016521,-0.015750,0.249503,0,0);-ms-transform:matrix(0.261719,0.016521,-0.015750,0.249503,0,0);-webkit-transform:matrix(0.261719,0.016521,-0.015750,0.249503,0,0);}
.m61_c01314{transform:matrix(0.264793,0.016715,-0.015750,0.249503,0,0);-ms-transform:matrix(0.264793,0.016715,-0.015750,0.249503,0,0);-webkit-transform:matrix(0.264793,0.016715,-0.015750,0.249503,0,0);}
.m6d_c01314{transform:matrix(0.264801,0.016981,-0.015999,0.249488,0,0);-ms-transform:matrix(0.264801,0.016981,-0.015999,0.249488,0,0);-webkit-transform:matrix(0.264801,0.016981,-0.015999,0.249488,0,0);}
.m63_c01314{transform:matrix(0.265447,0.016757,-0.015750,0.249503,0,0);-ms-transform:matrix(0.265447,0.016757,-0.015750,0.249503,0,0);-webkit-transform:matrix(0.265447,0.016757,-0.015750,0.249503,0,0);}
.m43_c01314{transform:matrix(0.265598,0.016500,-0.015501,0.249519,0,0);-ms-transform:matrix(0.265598,0.016500,-0.015501,0.249519,0,0);-webkit-transform:matrix(0.265598,0.016500,-0.015501,0.249519,0,0);}
.m66_c01314{transform:matrix(0.272203,0.017183,-0.015750,0.249503,0,0);-ms-transform:matrix(0.272203,0.017183,-0.015750,0.249503,0,0);-webkit-transform:matrix(0.272203,0.017183,-0.015750,0.249503,0,0);}
.m75_c01314{transform:matrix(0.272296,0.017462,-0.015999,0.249488,0,0);-ms-transform:matrix(0.272296,0.017462,-0.015999,0.249488,0,0);-webkit-transform:matrix(0.272296,0.017462,-0.015999,0.249488,0,0);}
.m5b_c01314{transform:matrix(0.272343,0.017192,-0.015750,0.249503,0,0);-ms-transform:matrix(0.272343,0.017192,-0.015750,0.249503,0,0);-webkit-transform:matrix(0.272343,0.017192,-0.015750,0.249503,0,0);}
.m8_c01314{transform:matrix(0.273492,0.010677,-0.009752,0.249810,0,0);-ms-transform:matrix(0.273492,0.010677,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.273492,0.010677,-0.009752,0.249810,0,0);}
.m64_c01314{transform:matrix(0.274010,0.017297,-0.015750,0.249503,0,0);-ms-transform:matrix(0.274010,0.017297,-0.015750,0.249503,0,0);-webkit-transform:matrix(0.274010,0.017297,-0.015750,0.249503,0,0);}
.m0_c01314{transform:matrix(0.285318,0.011139,-0.009752,0.249810,0,0);-ms-transform:matrix(0.285318,0.011139,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.285318,0.011139,-0.009752,0.249810,0,0);}
.m3_c01314{transform:matrix(0.286881,0.011200,-0.009752,0.249810,0,0);-ms-transform:matrix(0.286881,0.011200,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.286881,0.011200,-0.009752,0.249810,0,0);}
.m67_c01314{transform:matrix(0.286884,0.018110,-0.015750,0.249503,0,0);-ms-transform:matrix(0.286884,0.018110,-0.015750,0.249503,0,0);-webkit-transform:matrix(0.286884,0.018110,-0.015750,0.249503,0,0);}
.m7a_c01314{transform:matrix(0.292349,0.018748,-0.015999,0.249488,0,0);-ms-transform:matrix(0.292349,0.018748,-0.015999,0.249488,0,0);-webkit-transform:matrix(0.292349,0.018748,-0.015999,0.249488,0,0);}
.mb_c01314{transform:matrix(0.293706,0.011466,-0.009752,0.249810,0,0);-ms-transform:matrix(0.293706,0.011466,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.293706,0.011466,-0.009752,0.249810,0,0);}
.m1_c01314{transform:matrix(0.299247,0.011682,-0.009752,0.249810,0,0);-ms-transform:matrix(0.299247,0.011682,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.299247,0.011682,-0.009752,0.249810,0,0);}
.m5a_c01314{transform:matrix(0.300242,0.018953,-0.015750,0.249503,0,0);-ms-transform:matrix(0.300242,0.018953,-0.015750,0.249503,0,0);-webkit-transform:matrix(0.300242,0.018953,-0.015750,0.249503,0,0);}
.m57_c01314{transform:matrix(0.303032,0.019129,-0.015750,0.249503,0,0);-ms-transform:matrix(0.303032,0.019129,-0.015750,0.249503,0,0);-webkit-transform:matrix(0.303032,0.019129,-0.015750,0.249503,0,0);}
.m76_c01314{transform:matrix(0.374251,0.024000,-0.015999,0.249488,0,0);-ms-transform:matrix(0.374251,0.024000,-0.015999,0.249488,0,0);-webkit-transform:matrix(0.374251,0.024000,-0.015999,0.249488,0,0);}
.m78_c01314{transform:matrix(0.376956,0.024174,-0.015999,0.249488,0,0);-ms-transform:matrix(0.376956,0.024174,-0.015999,0.249488,0,0);-webkit-transform:matrix(0.376956,0.024174,-0.015999,0.249488,0,0);}
.m79_c01314{transform:matrix(0.390263,0.025027,-0.015999,0.249488,0,0);-ms-transform:matrix(0.390263,0.025027,-0.015999,0.249488,0,0);-webkit-transform:matrix(0.390263,0.025027,-0.015999,0.249488,0,0);}
.m77_c01314{transform:matrix(0.394180,0.025278,-0.015999,0.249488,0,0);-ms-transform:matrix(0.394180,0.025278,-0.015999,0.249488,0,0);-webkit-transform:matrix(0.394180,0.025278,-0.015999,0.249488,0,0);}
.m7b_c01314{transform:matrix(0.398956,0.025584,-0.015999,0.249488,0,0);-ms-transform:matrix(0.398956,0.025584,-0.015999,0.249488,0,0);-webkit-transform:matrix(0.398956,0.025584,-0.015999,0.249488,0,0);}
.m6a_c01314{transform:matrix(0.684772,0.043227,-0.015750,0.249503,0,0);-ms-transform:matrix(0.684772,0.043227,-0.015750,0.249503,0,0);-webkit-transform:matrix(0.684772,0.043227,-0.015750,0.249503,0,0);}
.m68_c01314{transform:matrix(1.143354,0.072176,-0.015750,0.249503,0,0);-ms-transform:matrix(1.143354,0.072176,-0.015750,0.249503,0,0);-webkit-transform:matrix(1.143354,0.072176,-0.015750,0.249503,0,0);}
.m69_c01314{transform:matrix(1.219812,0.077002,-0.015750,0.249503,0,0);-ms-transform:matrix(1.219812,0.077002,-0.015750,0.249503,0,0);-webkit-transform:matrix(1.219812,0.077002,-0.015750,0.249503,0,0);}
.v0_c01314{vertical-align:0.000000px;}
.ls0_c01314{letter-spacing:0.000000px;}
.sc__c01314{text-shadow:none;}
.sc0_c01314{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__c01314{-webkit-text-stroke:0px transparent;}
.sc0_c01314{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01314{word-spacing:0.000000px;}
.fc0_c01314{color:transparent;}
.fs0_c01314{font-size:71.982790px;}
.fs8_c01314{font-size:71.999028px;}
.fsb_c01314{font-size:72.003600px;}
.fs4_c01314{font-size:77.994072px;}
.fs7_c01314{font-size:77.998947px;}
.fsa_c01314{font-size:78.003900px;}
.fs2_c01314{font-size:83.993616px;}
.fs5_c01314{font-size:89.993160px;}
.fs9_c01314{font-size:89.998785px;}
.fs1_c01314{font-size:95.977053px;}
.fs6_c01314{font-size:95.992704px;}
.fs3_c01314{font-size:119.990880px;}
.y0_c01314{bottom:0.000000px;}
.y7c_c01314{bottom:226.610982px;}
.y7b_c01314{bottom:229.855107px;}
.y7a_c01314{bottom:231.610509px;}
.y79_c01314{bottom:233.230728px;}
.y76_c01314{bottom:236.131608px;}
.y78_c01314{bottom:236.741436px;}
.y75_c01314{bottom:238.200984px;}
.y77_c01314{bottom:240.387327px;}
.y74_c01314{bottom:242.308920px;}
.y73_c01314{bottom:246.729048px;}
.y72_c01314{bottom:253.067544px;}
.y71_c01314{bottom:255.793080px;}
.y70_c01314{bottom:261.673560px;}
.y6f_c01314{bottom:263.729016px;}
.y6e_c01314{bottom:273.583896px;}
.y6d_c01314{bottom:275.689944px;}
.y6c_c01314{bottom:279.759000px;}
.y6b_c01314{bottom:285.814971px;}
.y6a_c01314{bottom:296.442882px;}
.y68_c01314{bottom:311.472925px;}
.y69_c01314{bottom:314.856930px;}
.y67_c01314{bottom:315.325262px;}
.y66_c01314{bottom:317.333035px;}
.y65_c01314{bottom:322.535369px;}
.y64_c01314{bottom:325.189957px;}
.y63_c01314{bottom:327.152814px;}
.y62_c01314{bottom:331.015560px;}
.y61_c01314{bottom:334.290489px;}
.y60_c01314{bottom:336.262811px;}
.y5f_c01314{bottom:338.881002px;}
.y5e_c01314{bottom:342.113485px;}
.y5d_c01314{bottom:344.015359px;}
.y5b_c01314{bottom:347.553313px;}
.y5c_c01314{bottom:348.612865px;}
.y5a_c01314{bottom:349.722183px;}
.y59_c01314{bottom:355.236447px;}
.y58_c01314{bottom:357.941037px;}
.y57_c01314{bottom:365.020410px;}
.y56_c01314{bottom:368.492151px;}
.y55_c01314{bottom:370.624921px;}
.y54_c01314{bottom:374.093544px;}
.y53_c01314{bottom:378.913894px;}
.y52_c01314{bottom:382.357947px;}
.y51_c01314{bottom:385.869000px;}
.y4f_c01314{bottom:593.982330px;}
.y50_c01314{bottom:595.092159px;}
.y4e_c01314{bottom:596.540172px;}
.y4d_c01314{bottom:598.522206px;}
.y4c_c01314{bottom:600.432192px;}
.y4b_c01314{bottom:606.176295px;}
.y4a_c01314{bottom:609.353637px;}
.y49_c01314{bottom:613.864227px;}
.y48_c01314{bottom:617.045931px;}
.y47_c01314{bottom:624.719643px;}
.y46_c01314{bottom:628.618089px;}
.y45_c01314{bottom:630.561918px;}
.y43_c01314{bottom:630.871647px;}
.y44_c01314{bottom:633.763422px;}
.y42_c01314{bottom:634.240083px;}
.y41_c01314{bottom:640.923033px;}
.y40_c01314{bottom:646.855161px;}
.y3f_c01314{bottom:650.150982px;}
.y3e_c01314{bottom:652.185045px;}
.y3d_c01314{bottom:657.408369px;}
.y3a_c01314{bottom:662.499666px;}
.y3c_c01314{bottom:663.364389px;}
.y39_c01314{bottom:664.715601px;}
.y38_c01314{bottom:666.016689px;}
.y3b_c01314{bottom:668.026668px;}
.y37_c01314{bottom:671.324076px;}
.y36_c01314{bottom:673.350420px;}
.y35_c01314{bottom:676.681200px;}
.y34_c01314{bottom:677.965092px;}
.y33_c01314{bottom:683.301393px;}
.y32_c01314{bottom:687.261936px;}
.y31_c01314{bottom:691.271109px;}
.y30_c01314{bottom:693.250869px;}
.y2d_c01314{bottom:697.276077px;}
.y2f_c01314{bottom:699.886212px;}
.y2c_c01314{bottom:701.354010px;}
.y2e_c01314{bottom:703.116858px;}
.y2b_c01314{bottom:708.730701px;}
.y2a_c01314{bottom:712.116963px;}
.y29_c01314{bottom:718.186386px;}
.y28_c01314{bottom:722.956818px;}
.y27_c01314{bottom:724.935102px;}
.y26_c01314{bottom:732.993411px;}
.y23_c01314{bottom:733.025670px;}
.y25_c01314{bottom:735.696381px;}
.y24_c01314{bottom:739.034013px;}
.y22_c01314{bottom:740.470878px;}
.y21_c01314{bottom:744.651972px;}
.y20_c01314{bottom:746.763258px;}
.y1f_c01314{bottom:748.071768px;}
.y1e_c01314{bottom:751.511373px;}
.y1d_c01314{bottom:754.966695px;}
.y1c_c01314{bottom:762.576792px;}
.y1b_c01314{bottom:770.723778px;}
.y1a_c01314{bottom:772.780938px;}
.y19_c01314{bottom:774.672000px;}
.y18_c01314{bottom:915.758457px;}
.y17_c01314{bottom:919.466038px;}
.y16_c01314{bottom:921.468066px;}
.y15_c01314{bottom:926.659347px;}
.y14_c01314{bottom:928.310397px;}
.y13_c01314{bottom:932.946585px;}
.y12_c01314{bottom:934.496970px;}
.y11_c01314{bottom:936.002364px;}
.y10_c01314{bottom:937.602829px;}
.yf_c01314{bottom:939.699906px;}
.ye_c01314{bottom:941.241773px;}
.yd_c01314{bottom:946.393129px;}
.yc_c01314{bottom:961.579950px;}
.yb_c01314{bottom:963.298972px;}
.ya_c01314{bottom:964.594806px;}
.y9_c01314{bottom:967.210399px;}
.y8_c01314{bottom:968.477158px;}
.y7_c01314{bottom:969.762871px;}
.y6_c01314{bottom:971.082631px;}
.y5_c01314{bottom:972.335584px;}
.y4_c01314{bottom:977.915256px;}
.y3_c01314{bottom:979.648903px;}
.y2_c01314{bottom:982.667913px;}
.y1_c01314{bottom:983.944500px;}
.h2_c01314{height:71.982790px;}
.ha_c01314{height:71.999028px;}
.hd_c01314{height:72.003600px;}
.h6_c01314{height:77.994072px;}
.h9_c01314{height:77.998947px;}
.hc_c01314{height:78.003900px;}
.h4_c01314{height:83.993616px;}
.h7_c01314{height:89.993160px;}
.hb_c01314{height:89.998785px;}
.h3_c01314{height:95.977053px;}
.h8_c01314{height:95.992704px;}
.h5_c01314{height:119.990880px;}
.h1_c01314{height:1250.250000px;}
.h0_c01314{height:1250.370000px;}
.w1_c01314{width:912.000000px;}
.w0_c01314{width:912.300000px;}
.x0_c01314{left:0.000000px;}
.x6a_c01314{left:117.557286px;}
.x5f_c01314{left:121.692745px;}
.x55_c01314{left:122.941390px;}
.x4c_c01314{left:124.669500px;}
.x40_c01314{left:126.917718px;}
.x4b_c01314{left:138.485115px;}
.x37_c01314{left:140.804028px;}
.x2b_c01314{left:143.096688px;}
.x21_c01314{left:144.850131px;}
.x19_c01314{left:148.896000px;}
.xd_c01314{left:156.673955px;}
.x1_c01314{left:159.243000px;}
.x1a_c01314{left:179.335998px;}
.x41_c01314{left:182.007516px;}
.x62_c01314{left:185.142342px;}
.x6b_c01314{left:190.279173px;}
.x2_c01314{left:191.943267px;}
.x2c_c01314{left:196.817148px;}
.x22_c01314{left:199.446075px;}
.x56_c01314{left:200.700162px;}
.x1b_c01314{left:212.449638px;}
.x42_c01314{left:215.449791px;}
.x38_c01314{left:218.343237px;}
.x57_c01314{left:232.875825px;}
.x4d_c01314{left:234.847203px;}
.x23_c01314{left:243.656679px;}
.x6c_c01314{left:260.307054px;}
.xe_c01314{left:266.177144px;}
.x3_c01314{left:269.276356px;}
.x43_c01314{left:282.507993px;}
.x58_c01314{left:287.558565px;}
.x6d_c01314{left:292.627737px;}
.xf_c01314{left:298.945095px;}
.x2d_c01314{left:307.180677px;}
.x4e_c01314{left:311.207676px;}
.x4_c01314{left:313.684404px;}
.x39_c01314{left:317.409009px;}
.x6e_c01314{left:327.642426px;}
.x59_c01314{left:331.843491px;}
.x2e_c01314{left:340.112781px;}
.x10_c01314{left:343.513046px;}
.x4f_c01314{left:366.155061px;}
.x63_c01314{left:371.658063px;}
.x24_c01314{left:375.498168px;}
.x11_c01314{left:377.551374px;}
.x6f_c01314{left:392.364726px;}
.x50_c01314{left:399.940854px;}
.x3a_c01314{left:404.293701px;}
.x2f_c01314{left:406.800432px;}
.x25_c01314{left:407.874336px;}
.x12_c01314{left:409.538841px;}
.x44_c01314{left:414.520647px;}
.x5a_c01314{left:420.585498px;}
.x60_c01314{left:422.942010px;}
.x3b_c01314{left:438.124098px;}
.x13_c01314{left:442.486554px;}
.x51_c01314{left:454.937640px;}
.x5_c01314{left:456.609835px;}
.x1c_c01314{left:466.087845px;}
.x45_c01314{left:469.267539px;}
.x30_c01314{left:472.681107px;}
.x26_c01314{left:485.920776px;}
.x6_c01314{left:488.704708px;}
.x3c_c01314{left:492.942045px;}
.x64_c01314{left:495.409065px;}
.x5b_c01314{left:519.108366px;}
.x7_c01314{left:522.510869px;}
.x65_c01314{left:537.910392px;}
.x14_c01314{left:541.061637px;}
.x46_c01314{left:546.880791px;}
.x8_c01314{left:555.444901px;}
.x31_c01314{left:561.432744px;}
.x5c_c01314{left:563.993683px;}
.x52_c01314{left:567.083898px;}
.x15_c01314{left:576.165048px;}
.x32_c01314{left:582.776580px;}
.x27_c01314{left:585.215439px;}
.x9_c01314{left:587.893421px;}
.x3d_c01314{left:591.599043px;}
.x61_c01314{left:596.801467px;}
.x1d_c01314{left:598.136718px;}
.x47_c01314{left:601.533279px;}
.x53_c01314{left:609.928038px;}
.x1e_c01314{left:632.121612px;}
.x66_c01314{left:636.751314px;}
.x33_c01314{left:638.181444px;}
.x28_c01314{left:640.618359px;}
.x5d_c01314{left:651.976522px;}
.xa_c01314{left:654.892854px;}
.x34_c01314{left:671.887590px;}
.x16_c01314{left:686.537133px;}
.xb_c01314{left:688.086127px;}
.x54_c01314{left:697.280982px;}
.x1f_c01314{left:699.423738px;}
.x3e_c01314{left:702.753081px;}
.x67_c01314{left:705.677685px;}
.x17_c01314{left:729.093242px;}
.xc_c01314{left:732.119550px;}
.x48_c01314{left:733.230066px;}
.x5e_c01314{left:751.069842px;}
.x3f_c01314{left:758.788275px;}
.x35_c01314{left:760.149615px;}
.x29_c01314{left:761.294478px;}
.x49_c01314{left:767.335698px;}
.x68_c01314{left:769.735812px;}
.x36_c01314{left:781.794441px;}
.x69_c01314{left:802.005144px;}
.x18_c01314{left:807.918243px;}
.x4a_c01314{left:811.338918px;}
.x20_c01314{left:819.267570px;}
.x2a_c01314{left:828.000399px;}
@media print{
.v0_c01314{vertical-align:0.000000pt;}
.ls0_c01314{letter-spacing:0.000000pt;}
.ws0_c01314{word-spacing:0.000000pt;}
.fs0_c01314{font-size:63.984702pt;}
.fs8_c01314{font-size:63.999136pt;}
.fsb_c01314{font-size:64.003200pt;}
.fs4_c01314{font-size:69.328064pt;}
.fs7_c01314{font-size:69.332397pt;}
.fsa_c01314{font-size:69.336800pt;}
.fs2_c01314{font-size:74.660992pt;}
.fs5_c01314{font-size:79.993920pt;}
.fs9_c01314{font-size:79.998920pt;}
.fs1_c01314{font-size:85.312936pt;}
.fs6_c01314{font-size:85.326848pt;}
.fs3_c01314{font-size:106.658560pt;}
.y0_c01314{bottom:0.000000pt;}
.y7c_c01314{bottom:201.431984pt;}
.y7b_c01314{bottom:204.315651pt;}
.y7a_c01314{bottom:205.876008pt;}
.y79_c01314{bottom:207.316203pt;}
.y76_c01314{bottom:209.894763pt;}
.y78_c01314{bottom:210.436832pt;}
.y75_c01314{bottom:211.734208pt;}
.y77_c01314{bottom:213.677624pt;}
.y74_c01314{bottom:215.385707pt;}
.y73_c01314{bottom:219.314709pt;}
.y72_c01314{bottom:224.948928pt;}
.y71_c01314{bottom:227.371627pt;}
.y70_c01314{bottom:232.598720pt;}
.y6f_c01314{bottom:234.425792pt;}
.y6e_c01314{bottom:243.185685pt;}
.y6d_c01314{bottom:245.057728pt;}
.y6c_c01314{bottom:248.674667pt;}
.y6b_c01314{bottom:254.057752pt;}
.y6a_c01314{bottom:263.504784pt;}
.y68_c01314{bottom:276.864823pt;}
.y69_c01314{bottom:279.872827pt;}
.y67_c01314{bottom:280.289121pt;}
.y66_c01314{bottom:282.073809pt;}
.y65_c01314{bottom:286.698105pt;}
.y64_c01314{bottom:289.057740pt;}
.y63_c01314{bottom:290.802501pt;}
.y62_c01314{bottom:294.236053pt;}
.y61_c01314{bottom:297.147101pt;}
.y60_c01314{bottom:298.900276pt;}
.y5f_c01314{bottom:301.227557pt;}
.y5e_c01314{bottom:304.100876pt;}
.y5d_c01314{bottom:305.791431pt;}
.y5b_c01314{bottom:308.936279pt;}
.y5c_c01314{bottom:309.878103pt;}
.y5a_c01314{bottom:310.864163pt;}
.y59_c01314{bottom:315.765731pt;}
.y58_c01314{bottom:318.169811pt;}
.y57_c01314{bottom:324.462587pt;}
.y56_c01314{bottom:327.548579pt;}
.y55_c01314{bottom:329.444375pt;}
.y54_c01314{bottom:332.527595pt;}
.y53_c01314{bottom:336.812351pt;}
.y52_c01314{bottom:339.873731pt;}
.y51_c01314{bottom:342.994667pt;}
.y4f_c01314{bottom:527.984293pt;}
.y50_c01314{bottom:528.970808pt;}
.y4e_c01314{bottom:530.257931pt;}
.y4d_c01314{bottom:532.019739pt;}
.y4c_c01314{bottom:533.717504pt;}
.y4b_c01314{bottom:538.823373pt;}
.y4a_c01314{bottom:541.647677pt;}
.y49_c01314{bottom:545.657091pt;}
.y48_c01314{bottom:548.485272pt;}
.y47_c01314{bottom:555.306349pt;}
.y46_c01314{bottom:558.771635pt;}
.y45_c01314{bottom:560.499483pt;}
.y43_c01314{bottom:560.774797pt;}
.y44_c01314{bottom:563.345264pt;}
.y42_c01314{bottom:563.768963pt;}
.y41_c01314{bottom:569.709363pt;}
.y40_c01314{bottom:574.982365pt;}
.y3f_c01314{bottom:577.911984pt;}
.y3e_c01314{bottom:579.720040pt;}
.y3d_c01314{bottom:584.362995pt;}
.y3a_c01314{bottom:588.888592pt;}
.y3c_c01314{bottom:589.657235pt;}
.y39_c01314{bottom:590.858312pt;}
.y38_c01314{bottom:592.014835pt;}
.y3b_c01314{bottom:593.801483pt;}
.y37_c01314{bottom:596.732512pt;}
.y36_c01314{bottom:598.533707pt;}
.y35_c01314{bottom:601.494400pt;}
.y34_c01314{bottom:602.635637pt;}
.y33_c01314{bottom:607.379016pt;}
.y32_c01314{bottom:610.899499pt;}
.y31_c01314{bottom:614.463208pt;}
.y30_c01314{bottom:616.222995pt;}
.y2d_c01314{bottom:619.800957pt;}
.y2f_c01314{bottom:622.121077pt;}
.y2c_c01314{bottom:623.425787pt;}
.y2e_c01314{bottom:624.992763pt;}
.y2b_c01314{bottom:629.982845pt;}
.y2a_c01314{bottom:632.992856pt;}
.y29_c01314{bottom:638.387899pt;}
.y28_c01314{bottom:642.628283pt;}
.y27_c01314{bottom:644.386757pt;}
.y26_c01314{bottom:651.549699pt;}
.y23_c01314{bottom:651.578373pt;}
.y25_c01314{bottom:653.952339pt;}
.y24_c01314{bottom:656.919123pt;}
.y22_c01314{bottom:658.196336pt;}
.y21_c01314{bottom:661.912864pt;}
.y20_c01314{bottom:663.789563pt;}
.y1f_c01314{bottom:664.952683pt;}
.y1e_c01314{bottom:668.010109pt;}
.y1d_c01314{bottom:671.081507pt;}
.y1c_c01314{bottom:677.846037pt;}
.y1b_c01314{bottom:685.087803pt;}
.y1a_c01314{bottom:686.916389pt;}
.y19_c01314{bottom:688.597333pt;}
.y18_c01314{bottom:814.007517pt;}
.y17_c01314{bottom:817.303145pt;}
.y16_c01314{bottom:819.082725pt;}
.y15_c01314{bottom:823.697197pt;}
.y14_c01314{bottom:825.164797pt;}
.y13_c01314{bottom:829.285853pt;}
.y12_c01314{bottom:830.663973pt;}
.y11_c01314{bottom:832.002101pt;}
.y10_c01314{bottom:833.424737pt;}
.yf_c01314{bottom:835.288805pt;}
.ye_c01314{bottom:836.659353pt;}
.yd_c01314{bottom:841.238337pt;}
.yc_c01314{bottom:854.737733pt;}
.yb_c01314{bottom:856.265753pt;}
.ya_c01314{bottom:857.417605pt;}
.y9_c01314{bottom:859.742577pt;}
.y8_c01314{bottom:860.868585pt;}
.y7_c01314{bottom:862.011441pt;}
.y6_c01314{bottom:863.184561pt;}
.y5_c01314{bottom:864.298297pt;}
.y4_c01314{bottom:869.258005pt;}
.y3_c01314{bottom:870.799025pt;}
.y2_c01314{bottom:873.482589pt;}
.y1_c01314{bottom:874.617333pt;}
.h2_c01314{height:63.984702pt;}
.ha_c01314{height:63.999136pt;}
.hd_c01314{height:64.003200pt;}
.h6_c01314{height:69.328064pt;}
.h9_c01314{height:69.332397pt;}
.hc_c01314{height:69.336800pt;}
.h4_c01314{height:74.660992pt;}
.h7_c01314{height:79.993920pt;}
.hb_c01314{height:79.998920pt;}
.h3_c01314{height:85.312936pt;}
.h8_c01314{height:85.326848pt;}
.h5_c01314{height:106.658560pt;}
.h1_c01314{height:1111.333333pt;}
.h0_c01314{height:1111.440000pt;}
.w1_c01314{width:810.666667pt;}
.w0_c01314{width:810.933333pt;}
.x0_c01314{left:0.000000pt;}
.x6a_c01314{left:104.495365pt;}
.x5f_c01314{left:108.171329pt;}
.x55_c01314{left:109.281236pt;}
.x4c_c01314{left:110.817333pt;}
.x40_c01314{left:112.815749pt;}
.x4b_c01314{left:123.097880pt;}
.x37_c01314{left:125.159136pt;}
.x2b_c01314{left:127.197056pt;}
.x21_c01314{left:128.755672pt;}
.x19_c01314{left:132.352000pt;}
.xd_c01314{left:139.265737pt;}
.x1_c01314{left:141.549333pt;}
.x1a_c01314{left:159.409776pt;}
.x41_c01314{left:161.784459pt;}
.x62_c01314{left:164.570971pt;}
.x6b_c01314{left:169.137043pt;}
.x2_c01314{left:170.616237pt;}
.x2c_c01314{left:174.948576pt;}
.x22_c01314{left:177.285400pt;}
.x56_c01314{left:178.400144pt;}
.x1b_c01314{left:188.844123pt;}
.x42_c01314{left:191.510925pt;}
.x38_c01314{left:194.082877pt;}
.x57_c01314{left:207.000733pt;}
.x4d_c01314{left:208.753069pt;}
.x23_c01314{left:216.583715pt;}
.x6c_c01314{left:231.384048pt;}
.xe_c01314{left:236.601905pt;}
.x3_c01314{left:239.356761pt;}
.x43_c01314{left:251.118216pt;}
.x58_c01314{left:255.607613pt;}
.x6d_c01314{left:260.113544pt;}
.xf_c01314{left:265.728973pt;}
.x2d_c01314{left:273.049491pt;}
.x4e_c01314{left:276.629045pt;}
.x4_c01314{left:278.830581pt;}
.x39_c01314{left:282.141341pt;}
.x6e_c01314{left:291.237712pt;}
.x59_c01314{left:294.971992pt;}
.x2e_c01314{left:302.322472pt;}
.x10_c01314{left:305.344929pt;}
.x4f_c01314{left:325.471165pt;}
.x63_c01314{left:330.362723pt;}
.x24_c01314{left:333.776149pt;}
.x11_c01314{left:335.601221pt;}
.x6f_c01314{left:348.768645pt;}
.x50_c01314{left:355.502981pt;}
.x3a_c01314{left:359.372179pt;}
.x2f_c01314{left:361.600384pt;}
.x25_c01314{left:362.554965pt;}
.x12_c01314{left:364.034525pt;}
.x44_c01314{left:368.462797pt;}
.x5a_c01314{left:373.853776pt;}
.x60_c01314{left:375.948453pt;}
.x3b_c01314{left:389.443643pt;}
.x13_c01314{left:393.321381pt;}
.x51_c01314{left:404.389013pt;}
.x5_c01314{left:405.875409pt;}
.x1c_c01314{left:414.300307pt;}
.x45_c01314{left:417.126701pt;}
.x30_c01314{left:420.160984pt;}
.x26_c01314{left:431.929579pt;}
.x6_c01314{left:434.404185pt;}
.x3c_c01314{left:438.170707pt;}
.x64_c01314{left:440.363613pt;}
.x5b_c01314{left:461.429659pt;}
.x7_c01314{left:464.454105pt;}
.x65_c01314{left:478.142571pt;}
.x14_c01314{left:480.943677pt;}
.x46_c01314{left:486.116259pt;}
.x8_c01314{left:493.728801pt;}
.x31_c01314{left:499.051328pt;}
.x5c_c01314{left:501.327719pt;}
.x52_c01314{left:504.074576pt;}
.x15_c01314{left:512.146709pt;}
.x32_c01314{left:518.023627pt;}
.x27_c01314{left:520.191501pt;}
.x9_c01314{left:522.571929pt;}
.x3d_c01314{left:525.865816pt;}
.x61_c01314{left:530.490193pt;}
.x1d_c01314{left:531.677083pt;}
.x47_c01314{left:534.696248pt;}
.x53_c01314{left:542.158256pt;}
.x1e_c01314{left:561.885877pt;}
.x66_c01314{left:566.001168pt;}
.x33_c01314{left:567.272395pt;}
.x28_c01314{left:569.438541pt;}
.x5d_c01314{left:579.534687pt;}
.xa_c01314{left:582.126981pt;}
.x34_c01314{left:597.233413pt;}
.x16_c01314{left:610.255229pt;}
.xb_c01314{left:611.632113pt;}
.x54_c01314{left:619.805317pt;}
.x1f_c01314{left:621.709989pt;}
.x3e_c01314{left:624.669405pt;}
.x67_c01314{left:627.269053pt;}
.x17_c01314{left:648.082881pt;}
.xc_c01314{left:650.772933pt;}
.x48_c01314{left:651.760059pt;}
.x5e_c01314{left:667.617637pt;}
.x3f_c01314{left:674.478467pt;}
.x35_c01314{left:675.688547pt;}
.x29_c01314{left:676.706203pt;}
.x49_c01314{left:682.076176pt;}
.x68_c01314{left:684.209611pt;}
.x36_c01314{left:694.928392pt;}
.x69_c01314{left:712.893461pt;}
.x18_c01314{left:718.149549pt;}
.x4a_c01314{left:721.190149pt;}
.x20_c01314{left:728.237840pt;}
.x2a_c01314{left:736.000355pt;}
}





/* 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_c01315 {
    display:none;
  }
  .loading-indicator_c01315.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01315 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_c01315 { 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_c01315" -> "#page-container .classname_c01315")
 */
.pf_c01315 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01315 { /* 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_c01315.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01315 { /* 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_c01315 { /* 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_c01315 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01315 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01315 {overflow:visible;}
  }
}
.c_c01315 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01315 { /* 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_c01315:after { /* webkit #35443 */
  content: '';
}
.t_c01315:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01315 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 */
}
.__c01315 { /* 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_c01315 { /* info for Javascript */
  display:none;
}
.l_c01315 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01315 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01315 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01315: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_c01315 {
    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_c01315.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01315.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_c01315 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01315{font-family:sans-serif;visibility:hidden;}
.sc__c01315{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01315{-webkit-text-stroke:0px transparent;}
}
.y0_c01315{bottom:0.000000px;}
.h1_c01315{height:1250.250000px;}
.h0_c01315{height:1250.370000px;}
.w1_c01315{width:912.000000px;}
.w0_c01315{width:912.300000px;}
.x0_c01315{left:0.000000px;}
@media print{
.y0_c01315{bottom:0.000000pt;}
.h1_c01315{height:1111.333333pt;}
.h0_c01315{height:1111.440000pt;}
.w1_c01315{width:810.666667pt;}
.w0_c01315{width:810.933333pt;}
.x0_c01315{left:0.000000pt;}
}





/* 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_c01316 {
    display:none;
  }
  .loading-indicator_c01316.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01316 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_c01316 { 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_c01316" -> "#page-container .classname_c01316")
 */
.pf_c01316 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01316 { /* 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_c01316.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01316 { /* 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_c01316 { /* 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_c01316 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01316 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01316 {overflow:visible;}
  }
}
.c_c01316 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01316 { /* 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_c01316:after { /* webkit #35443 */
  content: '';
}
.t_c01316:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01316 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 */
}
.__c01316 { /* 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_c01316 { /* info for Javascript */
  display:none;
}
.l_c01316 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01316 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01316 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01316: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_c01316 {
    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_c01316.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01316.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_c01316 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01316{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01316;src:url('chunks/assets/font_53ec0c54e60da7c2d414b553.woff2')format("woff");}.ff1_c01316{font-family:ff1_c01316;line-height:1.000000;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;}
.m13e_c01316{transform:matrix(0.010814,-0.000151,0.003500,0.249976,0,0);-ms-transform:matrix(0.010814,-0.000151,0.003500,0.249976,0,0);-webkit-transform:matrix(0.010814,-0.000151,0.003500,0.249976,0,0);}
.m11c_c01316{transform:matrix(0.014065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.014065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.014065,0.000000,0.000000,0.250000,0,0);}
.m14c_c01316{transform:matrix(0.114315,-0.001486,0.003250,0.249979,0,0);-ms-transform:matrix(0.114315,-0.001486,0.003250,0.249979,0,0);-webkit-transform:matrix(0.114315,-0.001486,0.003250,0.249979,0,0);}
.m96_c01316{transform:matrix(0.134708,-0.001347,0.002500,0.249988,0,0);-ms-transform:matrix(0.134708,-0.001347,0.002500,0.249988,0,0);-webkit-transform:matrix(0.134708,-0.001347,0.002500,0.249988,0,0);}
.m9a_c01316{transform:matrix(0.135093,-0.001351,0.002500,0.249988,0,0);-ms-transform:matrix(0.135093,-0.001351,0.002500,0.249988,0,0);-webkit-transform:matrix(0.135093,-0.001351,0.002500,0.249988,0,0);}
.m105_c01316{transform:matrix(0.140212,-0.000841,0.001500,0.249996,0,0);-ms-transform:matrix(0.140212,-0.000841,0.001500,0.249996,0,0);-webkit-transform:matrix(0.140212,-0.000841,0.001500,0.249996,0,0);}
.m108_c01316{transform:matrix(0.142907,-0.000857,0.001500,0.249996,0,0);-ms-transform:matrix(0.142907,-0.000857,0.001500,0.249996,0,0);-webkit-transform:matrix(0.142907,-0.000857,0.001500,0.249996,0,0);}
.m10d_c01316{transform:matrix(0.146912,-0.000881,0.001500,0.249996,0,0);-ms-transform:matrix(0.146912,-0.000881,0.001500,0.249996,0,0);-webkit-transform:matrix(0.146912,-0.000881,0.001500,0.249996,0,0);}
.m10f_c01316{transform:matrix(0.147577,-0.000885,0.001500,0.249996,0,0);-ms-transform:matrix(0.147577,-0.000885,0.001500,0.249996,0,0);-webkit-transform:matrix(0.147577,-0.000885,0.001500,0.249996,0,0);}
.m107_c01316{transform:matrix(0.149457,-0.000897,0.001500,0.249996,0,0);-ms-transform:matrix(0.149457,-0.000897,0.001500,0.249996,0,0);-webkit-transform:matrix(0.149457,-0.000897,0.001500,0.249996,0,0);}
.m98_c01316{transform:matrix(0.152312,-0.001523,0.002500,0.249988,0,0);-ms-transform:matrix(0.152312,-0.001523,0.002500,0.249988,0,0);-webkit-transform:matrix(0.152312,-0.001523,0.002500,0.249988,0,0);}
.m109_c01316{transform:matrix(0.153512,-0.000921,0.001500,0.249996,0,0);-ms-transform:matrix(0.153512,-0.000921,0.001500,0.249996,0,0);-webkit-transform:matrix(0.153512,-0.000921,0.001500,0.249996,0,0);}
.m10a_c01316{transform:matrix(0.154217,-0.000925,0.001500,0.249996,0,0);-ms-transform:matrix(0.154217,-0.000925,0.001500,0.249996,0,0);-webkit-transform:matrix(0.154217,-0.000925,0.001500,0.249996,0,0);}
.m130_c01316{transform:matrix(0.154560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154560,0.000000,0.000000,0.250000,0,0);}
.m149_c01316{transform:matrix(0.155377,-0.002020,0.003250,0.249979,0,0);-ms-transform:matrix(0.155377,-0.002020,0.003250,0.249979,0,0);-webkit-transform:matrix(0.155377,-0.002020,0.003250,0.249979,0,0);}
.m110_c01316{transform:matrix(0.156137,-0.000937,0.001500,0.249996,0,0);-ms-transform:matrix(0.156137,-0.000937,0.001500,0.249996,0,0);-webkit-transform:matrix(0.156137,-0.000937,0.001500,0.249996,0,0);}
.m99_c01316{transform:matrix(0.156382,-0.001564,0.002500,0.249988,0,0);-ms-transform:matrix(0.156382,-0.001564,0.002500,0.249988,0,0);-webkit-transform:matrix(0.156382,-0.001564,0.002500,0.249988,0,0);}
.m146_c01316{transform:matrix(0.158522,-0.002061,0.003250,0.249979,0,0);-ms-transform:matrix(0.158522,-0.002061,0.003250,0.249979,0,0);-webkit-transform:matrix(0.158522,-0.002061,0.003250,0.249979,0,0);}
.mc9_c01316{transform:matrix(0.161106,-0.001128,0.001750,0.249994,0,0);-ms-transform:matrix(0.161106,-0.001128,0.001750,0.249994,0,0);-webkit-transform:matrix(0.161106,-0.001128,0.001750,0.249994,0,0);}
.m140_c01316{transform:matrix(0.162696,-0.002115,0.003250,0.249979,0,0);-ms-transform:matrix(0.162696,-0.002115,0.003250,0.249979,0,0);-webkit-transform:matrix(0.162696,-0.002115,0.003250,0.249979,0,0);}
.m143_c01316{transform:matrix(0.163006,-0.002119,0.003250,0.249979,0,0);-ms-transform:matrix(0.163006,-0.002119,0.003250,0.249979,0,0);-webkit-transform:matrix(0.163006,-0.002119,0.003250,0.249979,0,0);}
.m10e_c01316{transform:matrix(0.163442,-0.000981,0.001500,0.249996,0,0);-ms-transform:matrix(0.163442,-0.000981,0.001500,0.249996,0,0);-webkit-transform:matrix(0.163442,-0.000981,0.001500,0.249996,0,0);}
.md7_c01316{transform:matrix(0.164402,-0.000986,0.001500,0.249996,0,0);-ms-transform:matrix(0.164402,-0.000986,0.001500,0.249996,0,0);-webkit-transform:matrix(0.164402,-0.000986,0.001500,0.249996,0,0);}
.m142_c01316{transform:matrix(0.165596,-0.002153,0.003250,0.249979,0,0);-ms-transform:matrix(0.165596,-0.002153,0.003250,0.249979,0,0);-webkit-transform:matrix(0.165596,-0.002153,0.003250,0.249979,0,0);}
.m106_c01316{transform:matrix(0.166627,-0.001000,0.001500,0.249996,0,0);-ms-transform:matrix(0.166627,-0.001000,0.001500,0.249996,0,0);-webkit-transform:matrix(0.166627,-0.001000,0.001500,0.249996,0,0);}
.m10c_c01316{transform:matrix(0.167762,-0.001007,0.001500,0.249996,0,0);-ms-transform:matrix(0.167762,-0.001007,0.001500,0.249996,0,0);-webkit-transform:matrix(0.167762,-0.001007,0.001500,0.249996,0,0);}
.mdf_c01316{transform:matrix(0.169722,-0.001018,0.001500,0.249996,0,0);-ms-transform:matrix(0.169722,-0.001018,0.001500,0.249996,0,0);-webkit-transform:matrix(0.169722,-0.001018,0.001500,0.249996,0,0);}
.m141_c01316{transform:matrix(0.170046,-0.002211,0.003250,0.249979,0,0);-ms-transform:matrix(0.170046,-0.002211,0.003250,0.249979,0,0);-webkit-transform:matrix(0.170046,-0.002211,0.003250,0.249979,0,0);}
.m144_c01316{transform:matrix(0.170296,-0.002214,0.003250,0.249979,0,0);-ms-transform:matrix(0.170296,-0.002214,0.003250,0.249979,0,0);-webkit-transform:matrix(0.170296,-0.002214,0.003250,0.249979,0,0);}
.m145_c01316{transform:matrix(0.170301,-0.002214,0.003250,0.249979,0,0);-ms-transform:matrix(0.170301,-0.002214,0.003250,0.249979,0,0);-webkit-transform:matrix(0.170301,-0.002214,0.003250,0.249979,0,0);}
.m148_c01316{transform:matrix(0.170416,-0.002215,0.003250,0.249979,0,0);-ms-transform:matrix(0.170416,-0.002215,0.003250,0.249979,0,0);-webkit-transform:matrix(0.170416,-0.002215,0.003250,0.249979,0,0);}
.m97_c01316{transform:matrix(0.174076,-0.001741,0.002500,0.249988,0,0);-ms-transform:matrix(0.174076,-0.001741,0.002500,0.249988,0,0);-webkit-transform:matrix(0.174076,-0.001741,0.002500,0.249988,0,0);}
.m10b_c01316{transform:matrix(0.174652,-0.001048,0.001500,0.249996,0,0);-ms-transform:matrix(0.174652,-0.001048,0.001500,0.249996,0,0);-webkit-transform:matrix(0.174652,-0.001048,0.001500,0.249996,0,0);}
.m147_c01316{transform:matrix(0.176595,-0.002296,0.003250,0.249979,0,0);-ms-transform:matrix(0.176595,-0.002296,0.003250,0.249979,0,0);-webkit-transform:matrix(0.176595,-0.002296,0.003250,0.249979,0,0);}
.md9_c01316{transform:matrix(0.177667,-0.001066,0.001500,0.249996,0,0);-ms-transform:matrix(0.177667,-0.001066,0.001500,0.249996,0,0);-webkit-transform:matrix(0.177667,-0.001066,0.001500,0.249996,0,0);}
.mdb_c01316{transform:matrix(0.177962,-0.001068,0.001500,0.249996,0,0);-ms-transform:matrix(0.177962,-0.001068,0.001500,0.249996,0,0);-webkit-transform:matrix(0.177962,-0.001068,0.001500,0.249996,0,0);}
.mfe_c01316{transform:matrix(0.178862,-0.001073,0.001500,0.249996,0,0);-ms-transform:matrix(0.178862,-0.001073,0.001500,0.249996,0,0);-webkit-transform:matrix(0.178862,-0.001073,0.001500,0.249996,0,0);}
.m129_c01316{transform:matrix(0.179520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179520,0.000000,0.000000,0.250000,0,0);}
.m124_c01316{transform:matrix(0.180330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180330,0.000000,0.000000,0.250000,0,0);}
.md8_c01316{transform:matrix(0.181622,-0.001090,0.001500,0.249996,0,0);-ms-transform:matrix(0.181622,-0.001090,0.001500,0.249996,0,0);-webkit-transform:matrix(0.181622,-0.001090,0.001500,0.249996,0,0);}
.m120_c01316{transform:matrix(0.182060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182060,0.000000,0.000000,0.250000,0,0);}
.me0_c01316{transform:matrix(0.182582,-0.001095,0.001500,0.249996,0,0);-ms-transform:matrix(0.182582,-0.001095,0.001500,0.249996,0,0);-webkit-transform:matrix(0.182582,-0.001095,0.001500,0.249996,0,0);}
.m0_c01316{transform:matrix(0.183205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183205,0.000000,0.000000,0.250000,0,0);}
.m11f_c01316{transform:matrix(0.183675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183675,0.000000,0.000000,0.250000,0,0);}
.m28_c01316{transform:matrix(0.184216,-0.001842,0.002500,0.249988,0,0);-ms-transform:matrix(0.184216,-0.001842,0.002500,0.249988,0,0);-webkit-transform:matrix(0.184216,-0.001842,0.002500,0.249988,0,0);}
.m103_c01316{transform:matrix(0.186522,-0.001119,0.001500,0.249996,0,0);-ms-transform:matrix(0.186522,-0.001119,0.001500,0.249996,0,0);-webkit-transform:matrix(0.186522,-0.001119,0.001500,0.249996,0,0);}
.mdd_c01316{transform:matrix(0.187502,-0.001125,0.001500,0.249996,0,0);-ms-transform:matrix(0.187502,-0.001125,0.001500,0.249996,0,0);-webkit-transform:matrix(0.187502,-0.001125,0.001500,0.249996,0,0);}
.m14a_c01316{transform:matrix(0.188609,-0.002452,0.003250,0.249979,0,0);-ms-transform:matrix(0.188609,-0.002452,0.003250,0.249979,0,0);-webkit-transform:matrix(0.188609,-0.002452,0.003250,0.249979,0,0);}
.mff_c01316{transform:matrix(0.189242,-0.001135,0.001500,0.249996,0,0);-ms-transform:matrix(0.189242,-0.001135,0.001500,0.249996,0,0);-webkit-transform:matrix(0.189242,-0.001135,0.001500,0.249996,0,0);}
.m100_c01316{transform:matrix(0.189552,-0.001137,0.001500,0.249996,0,0);-ms-transform:matrix(0.189552,-0.001137,0.001500,0.249996,0,0);-webkit-transform:matrix(0.189552,-0.001137,0.001500,0.249996,0,0);}
.m91_c01316{transform:matrix(0.189641,-0.001896,0.002500,0.249988,0,0);-ms-transform:matrix(0.189641,-0.001896,0.002500,0.249988,0,0);-webkit-transform:matrix(0.189641,-0.001896,0.002500,0.249988,0,0);}
.m49_c01316{transform:matrix(0.189656,-0.001897,0.002500,0.249988,0,0);-ms-transform:matrix(0.189656,-0.001897,0.002500,0.249988,0,0);-webkit-transform:matrix(0.189656,-0.001897,0.002500,0.249988,0,0);}
.m12e_c01316{transform:matrix(0.189795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189795,0.000000,0.000000,0.250000,0,0);}
.mda_c01316{transform:matrix(0.189847,-0.001139,0.001500,0.249996,0,0);-ms-transform:matrix(0.189847,-0.001139,0.001500,0.249996,0,0);-webkit-transform:matrix(0.189847,-0.001139,0.001500,0.249996,0,0);}
.mfc_c01316{transform:matrix(0.190017,-0.001140,0.001500,0.249996,0,0);-ms-transform:matrix(0.190017,-0.001140,0.001500,0.249996,0,0);-webkit-transform:matrix(0.190017,-0.001140,0.001500,0.249996,0,0);}
.m4a_c01316{transform:matrix(0.191395,-0.001914,0.002500,0.249988,0,0);-ms-transform:matrix(0.191395,-0.001914,0.002500,0.249988,0,0);-webkit-transform:matrix(0.191395,-0.001914,0.002500,0.249988,0,0);}
.m8d_c01316{transform:matrix(0.191660,-0.001917,0.002500,0.249988,0,0);-ms-transform:matrix(0.191660,-0.001917,0.002500,0.249988,0,0);-webkit-transform:matrix(0.191660,-0.001917,0.002500,0.249988,0,0);}
.m11d_c01316{transform:matrix(0.192045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192045,0.000000,0.000000,0.250000,0,0);}
.mde_c01316{transform:matrix(0.192127,-0.001153,0.001500,0.249996,0,0);-ms-transform:matrix(0.192127,-0.001153,0.001500,0.249996,0,0);-webkit-transform:matrix(0.192127,-0.001153,0.001500,0.249996,0,0);}
.m9b_c01316{transform:matrix(0.193585,-0.001355,0.001750,0.249994,0,0);-ms-transform:matrix(0.193585,-0.001355,0.001750,0.249994,0,0);-webkit-transform:matrix(0.193585,-0.001355,0.001750,0.249994,0,0);}
.mdc_c01316{transform:matrix(0.193742,-0.001162,0.001500,0.249996,0,0);-ms-transform:matrix(0.193742,-0.001162,0.001500,0.249996,0,0);-webkit-transform:matrix(0.193742,-0.001162,0.001500,0.249996,0,0);}
.m102_c01316{transform:matrix(0.198341,-0.001190,0.001500,0.249996,0,0);-ms-transform:matrix(0.198341,-0.001190,0.001500,0.249996,0,0);-webkit-transform:matrix(0.198341,-0.001190,0.001500,0.249996,0,0);}
.m104_c01316{transform:matrix(0.198401,-0.001190,0.001500,0.249996,0,0);-ms-transform:matrix(0.198401,-0.001190,0.001500,0.249996,0,0);-webkit-transform:matrix(0.198401,-0.001190,0.001500,0.249996,0,0);}
.m9e_c01316{transform:matrix(0.198510,-0.001390,0.001750,0.249994,0,0);-ms-transform:matrix(0.198510,-0.001390,0.001750,0.249994,0,0);-webkit-transform:matrix(0.198510,-0.001390,0.001750,0.249994,0,0);}
.m122_c01316{transform:matrix(0.198905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198905,0.000000,0.000000,0.250000,0,0);}
.mfd_c01316{transform:matrix(0.199091,-0.001195,0.001500,0.249996,0,0);-ms-transform:matrix(0.199091,-0.001195,0.001500,0.249996,0,0);-webkit-transform:matrix(0.199091,-0.001195,0.001500,0.249996,0,0);}
.m101_c01316{transform:matrix(0.199126,-0.001195,0.001500,0.249996,0,0);-ms-transform:matrix(0.199126,-0.001195,0.001500,0.249996,0,0);-webkit-transform:matrix(0.199126,-0.001195,0.001500,0.249996,0,0);}
.m131_c01316{transform:matrix(0.199370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199370,0.000000,0.000000,0.250000,0,0);}
.m8e_c01316{transform:matrix(0.200990,-0.002010,0.002500,0.249988,0,0);-ms-transform:matrix(0.200990,-0.002010,0.002500,0.249988,0,0);-webkit-transform:matrix(0.200990,-0.002010,0.002500,0.249988,0,0);}
.ma3_c01316{transform:matrix(0.201145,-0.001408,0.001750,0.249994,0,0);-ms-transform:matrix(0.201145,-0.001408,0.001750,0.249994,0,0);-webkit-transform:matrix(0.201145,-0.001408,0.001750,0.249994,0,0);}
.m4e_c01316{transform:matrix(0.201295,-0.002013,0.002500,0.249988,0,0);-ms-transform:matrix(0.201295,-0.002013,0.002500,0.249988,0,0);-webkit-transform:matrix(0.201295,-0.002013,0.002500,0.249988,0,0);}
.m9d_c01316{transform:matrix(0.201350,-0.001409,0.001750,0.249994,0,0);-ms-transform:matrix(0.201350,-0.001409,0.001750,0.249994,0,0);-webkit-transform:matrix(0.201350,-0.001409,0.001750,0.249994,0,0);}
.m134_c01316{transform:matrix(0.201970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201970,0.000000,0.000000,0.250000,0,0);}
.m123_c01316{transform:matrix(0.202660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202660,0.000000,0.000000,0.250000,0,0);}
.mec_c01316{transform:matrix(0.203166,-0.001219,0.001500,0.249996,0,0);-ms-transform:matrix(0.203166,-0.001219,0.001500,0.249996,0,0);-webkit-transform:matrix(0.203166,-0.001219,0.001500,0.249996,0,0);}
.ma0_c01316{transform:matrix(0.203480,-0.001424,0.001750,0.249994,0,0);-ms-transform:matrix(0.203480,-0.001424,0.001750,0.249994,0,0);-webkit-transform:matrix(0.203480,-0.001424,0.001750,0.249994,0,0);}
.m4c_c01316{transform:matrix(0.203965,-0.002040,0.002500,0.249988,0,0);-ms-transform:matrix(0.203965,-0.002040,0.002500,0.249988,0,0);-webkit-transform:matrix(0.203965,-0.002040,0.002500,0.249988,0,0);}
.m79_c01316{transform:matrix(0.204450,-0.002044,0.002500,0.249988,0,0);-ms-transform:matrix(0.204450,-0.002044,0.002500,0.249988,0,0);-webkit-transform:matrix(0.204450,-0.002044,0.002500,0.249988,0,0);}
.m4f_c01316{transform:matrix(0.205000,-0.002050,0.002500,0.249988,0,0);-ms-transform:matrix(0.205000,-0.002050,0.002500,0.249988,0,0);-webkit-transform:matrix(0.205000,-0.002050,0.002500,0.249988,0,0);}
.m121_c01316{transform:matrix(0.205195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205195,0.000000,0.000000,0.250000,0,0);}
.m9f_c01316{transform:matrix(0.205355,-0.001437,0.001750,0.249994,0,0);-ms-transform:matrix(0.205355,-0.001437,0.001750,0.249994,0,0);-webkit-transform:matrix(0.205355,-0.001437,0.001750,0.249994,0,0);}
.m42_c01316{transform:matrix(0.205625,-0.002056,0.002500,0.249988,0,0);-ms-transform:matrix(0.205625,-0.002056,0.002500,0.249988,0,0);-webkit-transform:matrix(0.205625,-0.002056,0.002500,0.249988,0,0);}
.m55_c01316{transform:matrix(0.205930,-0.002059,0.002500,0.249988,0,0);-ms-transform:matrix(0.205930,-0.002059,0.002500,0.249988,0,0);-webkit-transform:matrix(0.205930,-0.002059,0.002500,0.249988,0,0);}
.m125_c01316{transform:matrix(0.206430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206430,0.000000,0.000000,0.250000,0,0);}
.ma1_c01316{transform:matrix(0.206975,-0.001449,0.001750,0.249994,0,0);-ms-transform:matrix(0.206975,-0.001449,0.001750,0.249994,0,0);-webkit-transform:matrix(0.206975,-0.001449,0.001750,0.249994,0,0);}
.m74_c01316{transform:matrix(0.207005,-0.002070,0.002500,0.249988,0,0);-ms-transform:matrix(0.207005,-0.002070,0.002500,0.249988,0,0);-webkit-transform:matrix(0.207005,-0.002070,0.002500,0.249988,0,0);}
.m139_c01316{transform:matrix(0.207420,-0.002904,0.003500,0.249976,0,0);-ms-transform:matrix(0.207420,-0.002904,0.003500,0.249976,0,0);-webkit-transform:matrix(0.207420,-0.002904,0.003500,0.249976,0,0);}
.m95_c01316{transform:matrix(0.207540,-0.002075,0.002500,0.249988,0,0);-ms-transform:matrix(0.207540,-0.002075,0.002500,0.249988,0,0);-webkit-transform:matrix(0.207540,-0.002075,0.002500,0.249988,0,0);}
.m132_c01316{transform:matrix(0.207610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207610,0.000000,0.000000,0.250000,0,0);}
.m11e_c01316{transform:matrix(0.207760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207760,0.000000,0.000000,0.250000,0,0);}
.m39_c01316{transform:matrix(0.207765,-0.002078,0.002500,0.249988,0,0);-ms-transform:matrix(0.207765,-0.002078,0.002500,0.249988,0,0);-webkit-transform:matrix(0.207765,-0.002078,0.002500,0.249988,0,0);}
.m11a_c01316{transform:matrix(0.207891,-0.001247,0.001500,0.249996,0,0);-ms-transform:matrix(0.207891,-0.001247,0.001500,0.249996,0,0);-webkit-transform:matrix(0.207891,-0.001247,0.001500,0.249996,0,0);}
.m9c_c01316{transform:matrix(0.208860,-0.001462,0.001750,0.249994,0,0);-ms-transform:matrix(0.208860,-0.001462,0.001750,0.249994,0,0);-webkit-transform:matrix(0.208860,-0.001462,0.001750,0.249994,0,0);}
.mbc_c01316{transform:matrix(0.208880,-0.001462,0.001750,0.249994,0,0);-ms-transform:matrix(0.208880,-0.001462,0.001750,0.249994,0,0);-webkit-transform:matrix(0.208880,-0.001462,0.001750,0.249994,0,0);}
.ma2_c01316{transform:matrix(0.210090,-0.001471,0.001750,0.249994,0,0);-ms-transform:matrix(0.210090,-0.001471,0.001750,0.249994,0,0);-webkit-transform:matrix(0.210090,-0.001471,0.001750,0.249994,0,0);}
.me1_c01316{transform:matrix(0.210456,-0.001263,0.001500,0.249996,0,0);-ms-transform:matrix(0.210456,-0.001263,0.001500,0.249996,0,0);-webkit-transform:matrix(0.210456,-0.001263,0.001500,0.249996,0,0);}
.m57_c01316{transform:matrix(0.211474,-0.002115,0.002500,0.249988,0,0);-ms-transform:matrix(0.211474,-0.002115,0.002500,0.249988,0,0);-webkit-transform:matrix(0.211474,-0.002115,0.002500,0.249988,0,0);}
.mb3_c01316{transform:matrix(0.212235,-0.001486,0.001750,0.249994,0,0);-ms-transform:matrix(0.212235,-0.001486,0.001750,0.249994,0,0);-webkit-transform:matrix(0.212235,-0.001486,0.001750,0.249994,0,0);}
.m22_c01316{transform:matrix(0.212824,-0.002128,0.002500,0.249988,0,0);-ms-transform:matrix(0.212824,-0.002128,0.002500,0.249988,0,0);-webkit-transform:matrix(0.212824,-0.002128,0.002500,0.249988,0,0);}
.m94_c01316{transform:matrix(0.212889,-0.002129,0.002500,0.249988,0,0);-ms-transform:matrix(0.212889,-0.002129,0.002500,0.249988,0,0);-webkit-transform:matrix(0.212889,-0.002129,0.002500,0.249988,0,0);}
.mcc_c01316{transform:matrix(0.213135,-0.001492,0.001750,0.249994,0,0);-ms-transform:matrix(0.213135,-0.001492,0.001750,0.249994,0,0);-webkit-transform:matrix(0.213135,-0.001492,0.001750,0.249994,0,0);}
.m52_c01316{transform:matrix(0.213514,-0.002135,0.002500,0.249988,0,0);-ms-transform:matrix(0.213514,-0.002135,0.002500,0.249988,0,0);-webkit-transform:matrix(0.213514,-0.002135,0.002500,0.249988,0,0);}
.m135_c01316{transform:matrix(0.214330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214330,0.000000,0.000000,0.250000,0,0);}
.m25_c01316{transform:matrix(0.214639,-0.002146,0.002500,0.249988,0,0);-ms-transform:matrix(0.214639,-0.002146,0.002500,0.249988,0,0);-webkit-transform:matrix(0.214639,-0.002146,0.002500,0.249988,0,0);}
.m7c_c01316{transform:matrix(0.214969,-0.002150,0.002500,0.249988,0,0);-ms-transform:matrix(0.214969,-0.002150,0.002500,0.249988,0,0);-webkit-transform:matrix(0.214969,-0.002150,0.002500,0.249988,0,0);}
.m8c_c01316{transform:matrix(0.215029,-0.002150,0.002500,0.249988,0,0);-ms-transform:matrix(0.215029,-0.002150,0.002500,0.249988,0,0);-webkit-transform:matrix(0.215029,-0.002150,0.002500,0.249988,0,0);}
.m119_c01316{transform:matrix(0.215071,-0.001290,0.001500,0.249996,0,0);-ms-transform:matrix(0.215071,-0.001290,0.001500,0.249996,0,0);-webkit-transform:matrix(0.215071,-0.001290,0.001500,0.249996,0,0);}
.m7b_c01316{transform:matrix(0.215779,-0.002158,0.002500,0.249988,0,0);-ms-transform:matrix(0.215779,-0.002158,0.002500,0.249988,0,0);-webkit-transform:matrix(0.215779,-0.002158,0.002500,0.249988,0,0);}
.maa_c01316{transform:matrix(0.215802,-0.002374,0.002750,0.249985,0,0);-ms-transform:matrix(0.215802,-0.002374,0.002750,0.249985,0,0);-webkit-transform:matrix(0.215802,-0.002374,0.002750,0.249985,0,0);}
.m44_c01316{transform:matrix(0.215899,-0.002159,0.002500,0.249988,0,0);-ms-transform:matrix(0.215899,-0.002159,0.002500,0.249988,0,0);-webkit-transform:matrix(0.215899,-0.002159,0.002500,0.249988,0,0);}
.md2_c01316{transform:matrix(0.216000,-0.001512,0.001750,0.249994,0,0);-ms-transform:matrix(0.216000,-0.001512,0.001750,0.249994,0,0);-webkit-transform:matrix(0.216000,-0.001512,0.001750,0.249994,0,0);}
.mf3_c01316{transform:matrix(0.216721,-0.001300,0.001500,0.249996,0,0);-ms-transform:matrix(0.216721,-0.001300,0.001500,0.249996,0,0);-webkit-transform:matrix(0.216721,-0.001300,0.001500,0.249996,0,0);}
.m3d_c01316{transform:matrix(0.216939,-0.002169,0.002500,0.249988,0,0);-ms-transform:matrix(0.216939,-0.002169,0.002500,0.249988,0,0);-webkit-transform:matrix(0.216939,-0.002169,0.002500,0.249988,0,0);}
.m17_c01316{transform:matrix(0.216982,-0.002387,0.002750,0.249985,0,0);-ms-transform:matrix(0.216982,-0.002387,0.002750,0.249985,0,0);-webkit-transform:matrix(0.216982,-0.002387,0.002750,0.249985,0,0);}
.m90_c01316{transform:matrix(0.217074,-0.002171,0.002500,0.249988,0,0);-ms-transform:matrix(0.217074,-0.002171,0.002500,0.249988,0,0);-webkit-transform:matrix(0.217074,-0.002171,0.002500,0.249988,0,0);}
.m117_c01316{transform:matrix(0.217926,-0.001308,0.001500,0.249996,0,0);-ms-transform:matrix(0.217926,-0.001308,0.001500,0.249996,0,0);-webkit-transform:matrix(0.217926,-0.001308,0.001500,0.249996,0,0);}
.m12f_c01316{transform:matrix(0.218115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218115,0.000000,0.000000,0.250000,0,0);}
.m47_c01316{transform:matrix(0.218449,-0.002184,0.002500,0.249988,0,0);-ms-transform:matrix(0.218449,-0.002184,0.002500,0.249988,0,0);-webkit-transform:matrix(0.218449,-0.002184,0.002500,0.249988,0,0);}
.m133_c01316{transform:matrix(0.218645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218645,0.000000,0.000000,0.250000,0,0);}
.m13a_c01316{transform:matrix(0.219164,-0.003068,0.003500,0.249976,0,0);-ms-transform:matrix(0.219164,-0.003068,0.003500,0.249976,0,0);-webkit-transform:matrix(0.219164,-0.003068,0.003500,0.249976,0,0);}
.m86_c01316{transform:matrix(0.220179,-0.002202,0.002500,0.249988,0,0);-ms-transform:matrix(0.220179,-0.002202,0.002500,0.249988,0,0);-webkit-transform:matrix(0.220179,-0.002202,0.002500,0.249988,0,0);}
.m8b_c01316{transform:matrix(0.220789,-0.002208,0.002500,0.249988,0,0);-ms-transform:matrix(0.220789,-0.002208,0.002500,0.249988,0,0);-webkit-transform:matrix(0.220789,-0.002208,0.002500,0.249988,0,0);}
.m1c_c01316{transform:matrix(0.220877,-0.002430,0.002750,0.249985,0,0);-ms-transform:matrix(0.220877,-0.002430,0.002750,0.249985,0,0);-webkit-transform:matrix(0.220877,-0.002430,0.002750,0.249985,0,0);}
.m3a_c01316{transform:matrix(0.220939,-0.002209,0.002500,0.249988,0,0);-ms-transform:matrix(0.220939,-0.002209,0.002500,0.249988,0,0);-webkit-transform:matrix(0.220939,-0.002209,0.002500,0.249988,0,0);}
.m3c_c01316{transform:matrix(0.221169,-0.002212,0.002500,0.249988,0,0);-ms-transform:matrix(0.221169,-0.002212,0.002500,0.249988,0,0);-webkit-transform:matrix(0.221169,-0.002212,0.002500,0.249988,0,0);}
.m56_c01316{transform:matrix(0.221404,-0.002214,0.002500,0.249988,0,0);-ms-transform:matrix(0.221404,-0.002214,0.002500,0.249988,0,0);-webkit-transform:matrix(0.221404,-0.002214,0.002500,0.249988,0,0);}
.mef_c01316{transform:matrix(0.221941,-0.001332,0.001500,0.249996,0,0);-ms-transform:matrix(0.221941,-0.001332,0.001500,0.249996,0,0);-webkit-transform:matrix(0.221941,-0.001332,0.001500,0.249996,0,0);}
.m13b_c01316{transform:matrix(0.222158,-0.003110,0.003500,0.249976,0,0);-ms-transform:matrix(0.222158,-0.003110,0.003500,0.249976,0,0);-webkit-transform:matrix(0.222158,-0.003110,0.003500,0.249976,0,0);}
.m54_c01316{transform:matrix(0.222799,-0.002228,0.002500,0.249988,0,0);-ms-transform:matrix(0.222799,-0.002228,0.002500,0.249988,0,0);-webkit-transform:matrix(0.222799,-0.002228,0.002500,0.249988,0,0);}
.me8_c01316{transform:matrix(0.222936,-0.001338,0.001500,0.249996,0,0);-ms-transform:matrix(0.222936,-0.001338,0.001500,0.249996,0,0);-webkit-transform:matrix(0.222936,-0.001338,0.001500,0.249996,0,0);}
.m45_c01316{transform:matrix(0.223259,-0.002233,0.002500,0.249988,0,0);-ms-transform:matrix(0.223259,-0.002233,0.002500,0.249988,0,0);-webkit-transform:matrix(0.223259,-0.002233,0.002500,0.249988,0,0);}
.m93_c01316{transform:matrix(0.223439,-0.002234,0.002500,0.249988,0,0);-ms-transform:matrix(0.223439,-0.002234,0.002500,0.249988,0,0);-webkit-transform:matrix(0.223439,-0.002234,0.002500,0.249988,0,0);}
.m48_c01316{transform:matrix(0.223474,-0.002235,0.002500,0.249988,0,0);-ms-transform:matrix(0.223474,-0.002235,0.002500,0.249988,0,0);-webkit-transform:matrix(0.223474,-0.002235,0.002500,0.249988,0,0);}
.m63_c01316{transform:matrix(0.223944,-0.002239,0.002500,0.249988,0,0);-ms-transform:matrix(0.223944,-0.002239,0.002500,0.249988,0,0);-webkit-transform:matrix(0.223944,-0.002239,0.002500,0.249988,0,0);}
.md1_c01316{transform:matrix(0.223945,-0.001568,0.001750,0.249994,0,0);-ms-transform:matrix(0.223945,-0.001568,0.001750,0.249994,0,0);-webkit-transform:matrix(0.223945,-0.001568,0.001750,0.249994,0,0);}
.m6c_c01316{transform:matrix(0.224059,-0.002241,0.002500,0.249988,0,0);-ms-transform:matrix(0.224059,-0.002241,0.002500,0.249988,0,0);-webkit-transform:matrix(0.224059,-0.002241,0.002500,0.249988,0,0);}
.m12d_c01316{transform:matrix(0.224220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224220,0.000000,0.000000,0.250000,0,0);}
.m70_c01316{transform:matrix(0.224389,-0.002244,0.002500,0.249988,0,0);-ms-transform:matrix(0.224389,-0.002244,0.002500,0.249988,0,0);-webkit-transform:matrix(0.224389,-0.002244,0.002500,0.249988,0,0);}
.m50_c01316{transform:matrix(0.225314,-0.002253,0.002500,0.249988,0,0);-ms-transform:matrix(0.225314,-0.002253,0.002500,0.249988,0,0);-webkit-transform:matrix(0.225314,-0.002253,0.002500,0.249988,0,0);}
.mbf_c01316{transform:matrix(0.225934,-0.001582,0.001750,0.249994,0,0);-ms-transform:matrix(0.225934,-0.001582,0.001750,0.249994,0,0);-webkit-transform:matrix(0.225934,-0.001582,0.001750,0.249994,0,0);}
.m27_c01316{transform:matrix(0.226274,-0.002263,0.002500,0.249988,0,0);-ms-transform:matrix(0.226274,-0.002263,0.002500,0.249988,0,0);-webkit-transform:matrix(0.226274,-0.002263,0.002500,0.249988,0,0);}
.m59_c01316{transform:matrix(0.227019,-0.002270,0.002500,0.249988,0,0);-ms-transform:matrix(0.227019,-0.002270,0.002500,0.249988,0,0);-webkit-transform:matrix(0.227019,-0.002270,0.002500,0.249988,0,0);}
.m77_c01316{transform:matrix(0.227629,-0.002276,0.002500,0.249988,0,0);-ms-transform:matrix(0.227629,-0.002276,0.002500,0.249988,0,0);-webkit-transform:matrix(0.227629,-0.002276,0.002500,0.249988,0,0);}
.mcf_c01316{transform:matrix(0.227909,-0.001595,0.001750,0.249994,0,0);-ms-transform:matrix(0.227909,-0.001595,0.001750,0.249994,0,0);-webkit-transform:matrix(0.227909,-0.001595,0.001750,0.249994,0,0);}
.mcb_c01316{transform:matrix(0.227969,-0.001596,0.001750,0.249994,0,0);-ms-transform:matrix(0.227969,-0.001596,0.001750,0.249994,0,0);-webkit-transform:matrix(0.227969,-0.001596,0.001750,0.249994,0,0);}
.m6f_c01316{transform:matrix(0.227974,-0.002280,0.002500,0.249988,0,0);-ms-transform:matrix(0.227974,-0.002280,0.002500,0.249988,0,0);-webkit-transform:matrix(0.227974,-0.002280,0.002500,0.249988,0,0);}
.m13d_c01316{transform:matrix(0.228073,-0.003193,0.003500,0.249976,0,0);-ms-transform:matrix(0.228073,-0.003193,0.003500,0.249976,0,0);-webkit-transform:matrix(0.228073,-0.003193,0.003500,0.249976,0,0);}
.m68_c01316{transform:matrix(0.228219,-0.002282,0.002500,0.249988,0,0);-ms-transform:matrix(0.228219,-0.002282,0.002500,0.249988,0,0);-webkit-transform:matrix(0.228219,-0.002282,0.002500,0.249988,0,0);}
.m10_c01316{transform:matrix(0.228257,-0.003880,0.004249,0.249964,0,0);-ms-transform:matrix(0.228257,-0.003880,0.004249,0.249964,0,0);-webkit-transform:matrix(0.228257,-0.003880,0.004249,0.249964,0,0);}
.m5e_c01316{transform:matrix(0.229104,-0.002291,0.002500,0.249988,0,0);-ms-transform:matrix(0.229104,-0.002291,0.002500,0.249988,0,0);-webkit-transform:matrix(0.229104,-0.002291,0.002500,0.249988,0,0);}
.mf9_c01316{transform:matrix(0.229326,-0.001376,0.001500,0.249996,0,0);-ms-transform:matrix(0.229326,-0.001376,0.001500,0.249996,0,0);-webkit-transform:matrix(0.229326,-0.001376,0.001500,0.249996,0,0);}
.m51_c01316{transform:matrix(0.229579,-0.002296,0.002500,0.249988,0,0);-ms-transform:matrix(0.229579,-0.002296,0.002500,0.249988,0,0);-webkit-transform:matrix(0.229579,-0.002296,0.002500,0.249988,0,0);}
.mb7_c01316{transform:matrix(0.230104,-0.001611,0.001750,0.249994,0,0);-ms-transform:matrix(0.230104,-0.001611,0.001750,0.249994,0,0);-webkit-transform:matrix(0.230104,-0.001611,0.001750,0.249994,0,0);}
.m7d_c01316{transform:matrix(0.230433,-0.002304,0.002500,0.249988,0,0);-ms-transform:matrix(0.230433,-0.002304,0.002500,0.249988,0,0);-webkit-transform:matrix(0.230433,-0.002304,0.002500,0.249988,0,0);}
.m5a_c01316{transform:matrix(0.231418,-0.002314,0.002500,0.249988,0,0);-ms-transform:matrix(0.231418,-0.002314,0.002500,0.249988,0,0);-webkit-transform:matrix(0.231418,-0.002314,0.002500,0.249988,0,0);}
.m40_c01316{transform:matrix(0.231738,-0.002317,0.002500,0.249988,0,0);-ms-transform:matrix(0.231738,-0.002317,0.002500,0.249988,0,0);-webkit-transform:matrix(0.231738,-0.002317,0.002500,0.249988,0,0);}
.m20_c01316{transform:matrix(0.231768,-0.002318,0.002500,0.249988,0,0);-ms-transform:matrix(0.231768,-0.002318,0.002500,0.249988,0,0);-webkit-transform:matrix(0.231768,-0.002318,0.002500,0.249988,0,0);}
.m80_c01316{transform:matrix(0.231793,-0.002318,0.002500,0.249988,0,0);-ms-transform:matrix(0.231793,-0.002318,0.002500,0.249988,0,0);-webkit-transform:matrix(0.231793,-0.002318,0.002500,0.249988,0,0);}
.me3_c01316{transform:matrix(0.231916,-0.001391,0.001500,0.249996,0,0);-ms-transform:matrix(0.231916,-0.001391,0.001500,0.249996,0,0);-webkit-transform:matrix(0.231916,-0.001391,0.001500,0.249996,0,0);}
.m8f_c01316{transform:matrix(0.232233,-0.002322,0.002500,0.249988,0,0);-ms-transform:matrix(0.232233,-0.002322,0.002500,0.249988,0,0);-webkit-transform:matrix(0.232233,-0.002322,0.002500,0.249988,0,0);}
.m43_c01316{transform:matrix(0.232288,-0.002323,0.002500,0.249988,0,0);-ms-transform:matrix(0.232288,-0.002323,0.002500,0.249988,0,0);-webkit-transform:matrix(0.232288,-0.002323,0.002500,0.249988,0,0);}
.me4_c01316{transform:matrix(0.232371,-0.001394,0.001500,0.249996,0,0);-ms-transform:matrix(0.232371,-0.001394,0.001500,0.249996,0,0);-webkit-transform:matrix(0.232371,-0.001394,0.001500,0.249996,0,0);}
.mca_c01316{transform:matrix(0.232999,-0.001631,0.001750,0.249994,0,0);-ms-transform:matrix(0.232999,-0.001631,0.001750,0.249994,0,0);-webkit-transform:matrix(0.232999,-0.001631,0.001750,0.249994,0,0);}
.mb8_c01316{transform:matrix(0.233024,-0.001631,0.001750,0.249994,0,0);-ms-transform:matrix(0.233024,-0.001631,0.001750,0.249994,0,0);-webkit-transform:matrix(0.233024,-0.001631,0.001750,0.249994,0,0);}
.m6d_c01316{transform:matrix(0.233113,-0.002331,0.002500,0.249988,0,0);-ms-transform:matrix(0.233113,-0.002331,0.002500,0.249988,0,0);-webkit-transform:matrix(0.233113,-0.002331,0.002500,0.249988,0,0);}
.m11b_c01316{transform:matrix(0.233246,-0.001399,0.001500,0.249996,0,0);-ms-transform:matrix(0.233246,-0.001399,0.001500,0.249996,0,0);-webkit-transform:matrix(0.233246,-0.001399,0.001500,0.249996,0,0);}
.m113_c01316{transform:matrix(0.233361,-0.001400,0.001500,0.249996,0,0);-ms-transform:matrix(0.233361,-0.001400,0.001500,0.249996,0,0);-webkit-transform:matrix(0.233361,-0.001400,0.001500,0.249996,0,0);}
.mb5_c01316{transform:matrix(0.233784,-0.001636,0.001750,0.249994,0,0);-ms-transform:matrix(0.233784,-0.001636,0.001750,0.249994,0,0);-webkit-transform:matrix(0.233784,-0.001636,0.001750,0.249994,0,0);}
.m82_c01316{transform:matrix(0.233998,-0.002340,0.002500,0.249988,0,0);-ms-transform:matrix(0.233998,-0.002340,0.002500,0.249988,0,0);-webkit-transform:matrix(0.233998,-0.002340,0.002500,0.249988,0,0);}
.mf0_c01316{transform:matrix(0.234256,-0.001406,0.001500,0.249996,0,0);-ms-transform:matrix(0.234256,-0.001406,0.001500,0.249996,0,0);-webkit-transform:matrix(0.234256,-0.001406,0.001500,0.249996,0,0);}
.m137_c01316{transform:matrix(0.234542,-0.003284,0.003500,0.249976,0,0);-ms-transform:matrix(0.234542,-0.003284,0.003500,0.249976,0,0);-webkit-transform:matrix(0.234542,-0.003284,0.003500,0.249976,0,0);}
.m75_c01316{transform:matrix(0.234648,-0.002346,0.002500,0.249988,0,0);-ms-transform:matrix(0.234648,-0.002346,0.002500,0.249988,0,0);-webkit-transform:matrix(0.234648,-0.002346,0.002500,0.249988,0,0);}
.mf2_c01316{transform:matrix(0.235086,-0.001411,0.001500,0.249996,0,0);-ms-transform:matrix(0.235086,-0.001411,0.001500,0.249996,0,0);-webkit-transform:matrix(0.235086,-0.001411,0.001500,0.249996,0,0);}
.m58_c01316{transform:matrix(0.235303,-0.002353,0.002500,0.249988,0,0);-ms-transform:matrix(0.235303,-0.002353,0.002500,0.249988,0,0);-webkit-transform:matrix(0.235303,-0.002353,0.002500,0.249988,0,0);}
.m2_c01316{transform:matrix(0.235541,-0.004004,0.004249,0.249964,0,0);-ms-transform:matrix(0.235541,-0.004004,0.004249,0.249964,0,0);-webkit-transform:matrix(0.235541,-0.004004,0.004249,0.249964,0,0);}
.m8_c01316{transform:matrix(0.235991,-0.004012,0.004249,0.249964,0,0);-ms-transform:matrix(0.235991,-0.004012,0.004249,0.249964,0,0);-webkit-transform:matrix(0.235991,-0.004012,0.004249,0.249964,0,0);}
.m138_c01316{transform:matrix(0.236097,-0.003305,0.003500,0.249976,0,0);-ms-transform:matrix(0.236097,-0.003305,0.003500,0.249976,0,0);-webkit-transform:matrix(0.236097,-0.003305,0.003500,0.249976,0,0);}
.m7_c01316{transform:matrix(0.236406,-0.004019,0.004249,0.249964,0,0);-ms-transform:matrix(0.236406,-0.004019,0.004249,0.249964,0,0);-webkit-transform:matrix(0.236406,-0.004019,0.004249,0.249964,0,0);}
.ma4_c01316{transform:matrix(0.236526,-0.002602,0.002750,0.249985,0,0);-ms-transform:matrix(0.236526,-0.002602,0.002750,0.249985,0,0);-webkit-transform:matrix(0.236526,-0.002602,0.002750,0.249985,0,0);}
.m46_c01316{transform:matrix(0.236653,-0.002367,0.002500,0.249988,0,0);-ms-transform:matrix(0.236653,-0.002367,0.002500,0.249988,0,0);-webkit-transform:matrix(0.236653,-0.002367,0.002500,0.249988,0,0);}
.m8a_c01316{transform:matrix(0.237513,-0.002375,0.002500,0.249988,0,0);-ms-transform:matrix(0.237513,-0.002375,0.002500,0.249988,0,0);-webkit-transform:matrix(0.237513,-0.002375,0.002500,0.249988,0,0);}
.m6a_c01316{transform:matrix(0.237528,-0.002375,0.002500,0.249988,0,0);-ms-transform:matrix(0.237528,-0.002375,0.002500,0.249988,0,0);-webkit-transform:matrix(0.237528,-0.002375,0.002500,0.249988,0,0);}
.mae_c01316{transform:matrix(0.237706,-0.002615,0.002750,0.249985,0,0);-ms-transform:matrix(0.237706,-0.002615,0.002750,0.249985,0,0);-webkit-transform:matrix(0.237706,-0.002615,0.002750,0.249985,0,0);}
.m12a_c01316{transform:matrix(0.237950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237950,0.000000,0.000000,0.250000,0,0);}
.mc8_c01316{transform:matrix(0.238034,-0.001666,0.001750,0.249994,0,0);-ms-transform:matrix(0.238034,-0.001666,0.001750,0.249994,0,0);-webkit-transform:matrix(0.238034,-0.001666,0.001750,0.249994,0,0);}
.mea_c01316{transform:matrix(0.238846,-0.001433,0.001500,0.249996,0,0);-ms-transform:matrix(0.238846,-0.001433,0.001500,0.249996,0,0);-webkit-transform:matrix(0.238846,-0.001433,0.001500,0.249996,0,0);}
.m66_c01316{transform:matrix(0.238868,-0.002389,0.002500,0.249988,0,0);-ms-transform:matrix(0.238868,-0.002389,0.002500,0.249988,0,0);-webkit-transform:matrix(0.238868,-0.002389,0.002500,0.249988,0,0);}
.m7a_c01316{transform:matrix(0.239073,-0.002391,0.002500,0.249988,0,0);-ms-transform:matrix(0.239073,-0.002391,0.002500,0.249988,0,0);-webkit-transform:matrix(0.239073,-0.002391,0.002500,0.249988,0,0);}
.m73_c01316{transform:matrix(0.239243,-0.002392,0.002500,0.249988,0,0);-ms-transform:matrix(0.239243,-0.002392,0.002500,0.249988,0,0);-webkit-transform:matrix(0.239243,-0.002392,0.002500,0.249988,0,0);}
.m78_c01316{transform:matrix(0.239768,-0.002398,0.002500,0.249988,0,0);-ms-transform:matrix(0.239768,-0.002398,0.002500,0.249988,0,0);-webkit-transform:matrix(0.239768,-0.002398,0.002500,0.249988,0,0);}
.m4b_c01316{transform:matrix(0.239883,-0.002399,0.002500,0.249988,0,0);-ms-transform:matrix(0.239883,-0.002399,0.002500,0.249988,0,0);-webkit-transform:matrix(0.239883,-0.002399,0.002500,0.249988,0,0);}
.m53_c01316{transform:matrix(0.239918,-0.002399,0.002500,0.249988,0,0);-ms-transform:matrix(0.239918,-0.002399,0.002500,0.249988,0,0);-webkit-transform:matrix(0.239918,-0.002399,0.002500,0.249988,0,0);}
.m81_c01316{transform:matrix(0.240373,-0.002404,0.002500,0.249988,0,0);-ms-transform:matrix(0.240373,-0.002404,0.002500,0.249988,0,0);-webkit-transform:matrix(0.240373,-0.002404,0.002500,0.249988,0,0);}
.mf8_c01316{transform:matrix(0.240381,-0.001442,0.001500,0.249996,0,0);-ms-transform:matrix(0.240381,-0.001442,0.001500,0.249996,0,0);-webkit-transform:matrix(0.240381,-0.001442,0.001500,0.249996,0,0);}
.mfa_c01316{transform:matrix(0.240706,-0.001444,0.001500,0.249996,0,0);-ms-transform:matrix(0.240706,-0.001444,0.001500,0.249996,0,0);-webkit-transform:matrix(0.240706,-0.001444,0.001500,0.249996,0,0);}
.mac_c01316{transform:matrix(0.240710,-0.002648,0.002750,0.249985,0,0);-ms-transform:matrix(0.240710,-0.002648,0.002750,0.249985,0,0);-webkit-transform:matrix(0.240710,-0.002648,0.002750,0.249985,0,0);}
.m7f_c01316{transform:matrix(0.241263,-0.002413,0.002500,0.249988,0,0);-ms-transform:matrix(0.241263,-0.002413,0.002500,0.249988,0,0);-webkit-transform:matrix(0.241263,-0.002413,0.002500,0.249988,0,0);}
.me2_c01316{transform:matrix(0.241381,-0.001448,0.001500,0.249996,0,0);-ms-transform:matrix(0.241381,-0.001448,0.001500,0.249996,0,0);-webkit-transform:matrix(0.241381,-0.001448,0.001500,0.249996,0,0);}
.m33_c01316{transform:matrix(0.241403,-0.002414,0.002500,0.249988,0,0);-ms-transform:matrix(0.241403,-0.002414,0.002500,0.249988,0,0);-webkit-transform:matrix(0.241403,-0.002414,0.002500,0.249988,0,0);}
.m64_c01316{transform:matrix(0.241688,-0.002417,0.002500,0.249988,0,0);-ms-transform:matrix(0.241688,-0.002417,0.002500,0.249988,0,0);-webkit-transform:matrix(0.241688,-0.002417,0.002500,0.249988,0,0);}
.md4_c01316{transform:matrix(0.241954,-0.001694,0.001750,0.249994,0,0);-ms-transform:matrix(0.241954,-0.001694,0.001750,0.249994,0,0);-webkit-transform:matrix(0.241954,-0.001694,0.001750,0.249994,0,0);}
.m118_c01316{transform:matrix(0.242176,-0.001453,0.001500,0.249996,0,0);-ms-transform:matrix(0.242176,-0.001453,0.001500,0.249996,0,0);-webkit-transform:matrix(0.242176,-0.001453,0.001500,0.249996,0,0);}
.m2d_c01316{transform:matrix(0.242228,-0.002422,0.002500,0.249988,0,0);-ms-transform:matrix(0.242228,-0.002422,0.002500,0.249988,0,0);-webkit-transform:matrix(0.242228,-0.002422,0.002500,0.249988,0,0);}
.m116_c01316{transform:matrix(0.242541,-0.001455,0.001500,0.249996,0,0);-ms-transform:matrix(0.242541,-0.001455,0.001500,0.249996,0,0);-webkit-transform:matrix(0.242541,-0.001455,0.001500,0.249996,0,0);}
.m24_c01316{transform:matrix(0.242773,-0.002428,0.002500,0.249988,0,0);-ms-transform:matrix(0.242773,-0.002428,0.002500,0.249988,0,0);-webkit-transform:matrix(0.242773,-0.002428,0.002500,0.249988,0,0);}
.m72_c01316{transform:matrix(0.242998,-0.002430,0.002500,0.249988,0,0);-ms-transform:matrix(0.242998,-0.002430,0.002500,0.249988,0,0);-webkit-transform:matrix(0.242998,-0.002430,0.002500,0.249988,0,0);}
.m3e_c01316{transform:matrix(0.243143,-0.002431,0.002500,0.249988,0,0);-ms-transform:matrix(0.243143,-0.002431,0.002500,0.249988,0,0);-webkit-transform:matrix(0.243143,-0.002431,0.002500,0.249988,0,0);}
.mba_c01316{transform:matrix(0.243204,-0.001702,0.001750,0.249994,0,0);-ms-transform:matrix(0.243204,-0.001702,0.001750,0.249994,0,0);-webkit-transform:matrix(0.243204,-0.001702,0.001750,0.249994,0,0);}
.m3b_c01316{transform:matrix(0.243388,-0.002434,0.002500,0.249988,0,0);-ms-transform:matrix(0.243388,-0.002434,0.002500,0.249988,0,0);-webkit-transform:matrix(0.243388,-0.002434,0.002500,0.249988,0,0);}
.m35_c01316{transform:matrix(0.243528,-0.002435,0.002500,0.249988,0,0);-ms-transform:matrix(0.243528,-0.002435,0.002500,0.249988,0,0);-webkit-transform:matrix(0.243528,-0.002435,0.002500,0.249988,0,0);}
.m3_c01316{transform:matrix(0.243755,-0.004144,0.004249,0.249964,0,0);-ms-transform:matrix(0.243755,-0.004144,0.004249,0.249964,0,0);-webkit-transform:matrix(0.243755,-0.004144,0.004249,0.249964,0,0);}
.m31_c01316{transform:matrix(0.243758,-0.002438,0.002500,0.249988,0,0);-ms-transform:matrix(0.243758,-0.002438,0.002500,0.249988,0,0);-webkit-transform:matrix(0.243758,-0.002438,0.002500,0.249988,0,0);}
.m127_c01316{transform:matrix(0.243810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243810,0.000000,0.000000,0.250000,0,0);}
.mbb_c01316{transform:matrix(0.243919,-0.001707,0.001750,0.249994,0,0);-ms-transform:matrix(0.243919,-0.001707,0.001750,0.249994,0,0);-webkit-transform:matrix(0.243919,-0.001707,0.001750,0.249994,0,0);}
.m84_c01316{transform:matrix(0.243998,-0.002440,0.002500,0.249988,0,0);-ms-transform:matrix(0.243998,-0.002440,0.002500,0.249988,0,0);-webkit-transform:matrix(0.243998,-0.002440,0.002500,0.249988,0,0);}
.mf1_c01316{transform:matrix(0.244041,-0.001464,0.001500,0.249996,0,0);-ms-transform:matrix(0.244041,-0.001464,0.001500,0.249996,0,0);-webkit-transform:matrix(0.244041,-0.001464,0.001500,0.249996,0,0);}
.m3f_c01316{transform:matrix(0.244273,-0.002443,0.002500,0.249988,0,0);-ms-transform:matrix(0.244273,-0.002443,0.002500,0.249988,0,0);-webkit-transform:matrix(0.244273,-0.002443,0.002500,0.249988,0,0);}
.m32_c01316{transform:matrix(0.245003,-0.002450,0.002500,0.249988,0,0);-ms-transform:matrix(0.245003,-0.002450,0.002500,0.249988,0,0);-webkit-transform:matrix(0.245003,-0.002450,0.002500,0.249988,0,0);}
.m41_c01316{transform:matrix(0.245178,-0.002452,0.002500,0.249988,0,0);-ms-transform:matrix(0.245178,-0.002452,0.002500,0.249988,0,0);-webkit-transform:matrix(0.245178,-0.002452,0.002500,0.249988,0,0);}
.m67_c01316{transform:matrix(0.245188,-0.002452,0.002500,0.249988,0,0);-ms-transform:matrix(0.245188,-0.002452,0.002500,0.249988,0,0);-webkit-transform:matrix(0.245188,-0.002452,0.002500,0.249988,0,0);}
.m60_c01316{transform:matrix(0.245223,-0.002452,0.002500,0.249988,0,0);-ms-transform:matrix(0.245223,-0.002452,0.002500,0.249988,0,0);-webkit-transform:matrix(0.245223,-0.002452,0.002500,0.249988,0,0);}
.m88_c01316{transform:matrix(0.245228,-0.002452,0.002500,0.249988,0,0);-ms-transform:matrix(0.245228,-0.002452,0.002500,0.249988,0,0);-webkit-transform:matrix(0.245228,-0.002452,0.002500,0.249988,0,0);}
.m114_c01316{transform:matrix(0.245971,-0.001476,0.001500,0.249996,0,0);-ms-transform:matrix(0.245971,-0.001476,0.001500,0.249996,0,0);-webkit-transform:matrix(0.245971,-0.001476,0.001500,0.249996,0,0);}
.meb_c01316{transform:matrix(0.245986,-0.001476,0.001500,0.249996,0,0);-ms-transform:matrix(0.245986,-0.001476,0.001500,0.249996,0,0);-webkit-transform:matrix(0.245986,-0.001476,0.001500,0.249996,0,0);}
.m76_c01316{transform:matrix(0.246848,-0.002468,0.002500,0.249988,0,0);-ms-transform:matrix(0.246848,-0.002468,0.002500,0.249988,0,0);-webkit-transform:matrix(0.246848,-0.002468,0.002500,0.249988,0,0);}
.m26_c01316{transform:matrix(0.246913,-0.002469,0.002500,0.249988,0,0);-ms-transform:matrix(0.246913,-0.002469,0.002500,0.249988,0,0);-webkit-transform:matrix(0.246913,-0.002469,0.002500,0.249988,0,0);}
.m69_c01316{transform:matrix(0.247088,-0.002471,0.002500,0.249988,0,0);-ms-transform:matrix(0.247088,-0.002471,0.002500,0.249988,0,0);-webkit-transform:matrix(0.247088,-0.002471,0.002500,0.249988,0,0);}
.m38_c01316{transform:matrix(0.247098,-0.002471,0.002500,0.249988,0,0);-ms-transform:matrix(0.247098,-0.002471,0.002500,0.249988,0,0);-webkit-transform:matrix(0.247098,-0.002471,0.002500,0.249988,0,0);}
.m21_c01316{transform:matrix(0.247113,-0.002471,0.002500,0.249988,0,0);-ms-transform:matrix(0.247113,-0.002471,0.002500,0.249988,0,0);-webkit-transform:matrix(0.247113,-0.002471,0.002500,0.249988,0,0);}
.m128_c01316{transform:matrix(0.247385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247385,0.000000,0.000000,0.250000,0,0);}
.m18_c01316{transform:matrix(0.247675,-0.002724,0.002750,0.249985,0,0);-ms-transform:matrix(0.247675,-0.002724,0.002750,0.249985,0,0);-webkit-transform:matrix(0.247675,-0.002724,0.002750,0.249985,0,0);}
.m6_c01316{transform:matrix(0.248164,-0.004219,0.004249,0.249964,0,0);-ms-transform:matrix(0.248164,-0.004219,0.004249,0.249964,0,0);-webkit-transform:matrix(0.248164,-0.004219,0.004249,0.249964,0,0);}
.me9_c01316{transform:matrix(0.248246,-0.001489,0.001500,0.249996,0,0);-ms-transform:matrix(0.248246,-0.001489,0.001500,0.249996,0,0);-webkit-transform:matrix(0.248246,-0.001489,0.001500,0.249996,0,0);}
.m61_c01316{transform:matrix(0.248513,-0.002485,0.002500,0.249988,0,0);-ms-transform:matrix(0.248513,-0.002485,0.002500,0.249988,0,0);-webkit-transform:matrix(0.248513,-0.002485,0.002500,0.249988,0,0);}
.ma6_c01316{transform:matrix(0.248785,-0.002737,0.002750,0.249985,0,0);-ms-transform:matrix(0.248785,-0.002737,0.002750,0.249985,0,0);-webkit-transform:matrix(0.248785,-0.002737,0.002750,0.249985,0,0);}
.ma5_c01316{transform:matrix(0.249455,-0.002744,0.002750,0.249985,0,0);-ms-transform:matrix(0.249455,-0.002744,0.002750,0.249985,0,0);-webkit-transform:matrix(0.249455,-0.002744,0.002750,0.249985,0,0);}
.m92_c01316{transform:matrix(0.249678,-0.002497,0.002500,0.249988,0,0);-ms-transform:matrix(0.249678,-0.002497,0.002500,0.249988,0,0);-webkit-transform:matrix(0.249678,-0.002497,0.002500,0.249988,0,0);}
.mc7_c01316{transform:matrix(0.250394,-0.001753,0.001750,0.249994,0,0);-ms-transform:matrix(0.250394,-0.001753,0.001750,0.249994,0,0);-webkit-transform:matrix(0.250394,-0.001753,0.001750,0.249994,0,0);}
.mab_c01316{transform:matrix(0.251010,-0.002761,0.002750,0.249985,0,0);-ms-transform:matrix(0.251010,-0.002761,0.002750,0.249985,0,0);-webkit-transform:matrix(0.251010,-0.002761,0.002750,0.249985,0,0);}
.mb6_c01316{transform:matrix(0.251039,-0.001757,0.001750,0.249994,0,0);-ms-transform:matrix(0.251039,-0.001757,0.001750,0.249994,0,0);-webkit-transform:matrix(0.251039,-0.001757,0.001750,0.249994,0,0);}
.ma8_c01316{transform:matrix(0.251185,-0.002763,0.002750,0.249985,0,0);-ms-transform:matrix(0.251185,-0.002763,0.002750,0.249985,0,0);-webkit-transform:matrix(0.251185,-0.002763,0.002750,0.249985,0,0);}
.m6b_c01316{transform:matrix(0.251222,-0.002512,0.002500,0.249988,0,0);-ms-transform:matrix(0.251222,-0.002512,0.002500,0.249988,0,0);-webkit-transform:matrix(0.251222,-0.002512,0.002500,0.249988,0,0);}
.mf7_c01316{transform:matrix(0.251370,-0.001508,0.001500,0.249996,0,0);-ms-transform:matrix(0.251370,-0.001508,0.001500,0.249996,0,0);-webkit-transform:matrix(0.251370,-0.001508,0.001500,0.249996,0,0);}
.m30_c01316{transform:matrix(0.251392,-0.002514,0.002500,0.249988,0,0);-ms-transform:matrix(0.251392,-0.002514,0.002500,0.249988,0,0);-webkit-transform:matrix(0.251392,-0.002514,0.002500,0.249988,0,0);}
.mb2_c01316{transform:matrix(0.251469,-0.001760,0.001750,0.249994,0,0);-ms-transform:matrix(0.251469,-0.001760,0.001750,0.249994,0,0);-webkit-transform:matrix(0.251469,-0.001760,0.001750,0.249994,0,0);}
.m89_c01316{transform:matrix(0.251502,-0.002515,0.002500,0.249988,0,0);-ms-transform:matrix(0.251502,-0.002515,0.002500,0.249988,0,0);-webkit-transform:matrix(0.251502,-0.002515,0.002500,0.249988,0,0);}
.m5f_c01316{transform:matrix(0.251532,-0.002515,0.002500,0.249988,0,0);-ms-transform:matrix(0.251532,-0.002515,0.002500,0.249988,0,0);-webkit-transform:matrix(0.251532,-0.002515,0.002500,0.249988,0,0);}
.ma_c01316{transform:matrix(0.251624,-0.004278,0.004249,0.249964,0,0);-ms-transform:matrix(0.251624,-0.004278,0.004249,0.249964,0,0);-webkit-transform:matrix(0.251624,-0.004278,0.004249,0.249964,0,0);}
.m1f_c01316{transform:matrix(0.251637,-0.002516,0.002500,0.249988,0,0);-ms-transform:matrix(0.251637,-0.002516,0.002500,0.249988,0,0);-webkit-transform:matrix(0.251637,-0.002516,0.002500,0.249988,0,0);}
.m7e_c01316{transform:matrix(0.251992,-0.002520,0.002500,0.249988,0,0);-ms-transform:matrix(0.251992,-0.002520,0.002500,0.249988,0,0);-webkit-transform:matrix(0.251992,-0.002520,0.002500,0.249988,0,0);}
.m87_c01316{transform:matrix(0.252407,-0.002524,0.002500,0.249988,0,0);-ms-transform:matrix(0.252407,-0.002524,0.002500,0.249988,0,0);-webkit-transform:matrix(0.252407,-0.002524,0.002500,0.249988,0,0);}
.md_c01316{transform:matrix(0.252514,-0.004293,0.004249,0.249964,0,0);-ms-transform:matrix(0.252514,-0.004293,0.004249,0.249964,0,0);-webkit-transform:matrix(0.252514,-0.004293,0.004249,0.249964,0,0);}
.m29_c01316{transform:matrix(0.253037,-0.002530,0.002500,0.249988,0,0);-ms-transform:matrix(0.253037,-0.002530,0.002500,0.249988,0,0);-webkit-transform:matrix(0.253037,-0.002530,0.002500,0.249988,0,0);}
.med_c01316{transform:matrix(0.253210,-0.001519,0.001500,0.249996,0,0);-ms-transform:matrix(0.253210,-0.001519,0.001500,0.249996,0,0);-webkit-transform:matrix(0.253210,-0.001519,0.001500,0.249996,0,0);}
.m5d_c01316{transform:matrix(0.253362,-0.002534,0.002500,0.249988,0,0);-ms-transform:matrix(0.253362,-0.002534,0.002500,0.249988,0,0);-webkit-transform:matrix(0.253362,-0.002534,0.002500,0.249988,0,0);}
.m4d_c01316{transform:matrix(0.253477,-0.002535,0.002500,0.249988,0,0);-ms-transform:matrix(0.253477,-0.002535,0.002500,0.249988,0,0);-webkit-transform:matrix(0.253477,-0.002535,0.002500,0.249988,0,0);}
.m9_c01316{transform:matrix(0.254308,-0.004323,0.004249,0.249964,0,0);-ms-transform:matrix(0.254308,-0.004323,0.004249,0.249964,0,0);-webkit-transform:matrix(0.254308,-0.004323,0.004249,0.249964,0,0);}
.m85_c01316{transform:matrix(0.255107,-0.002551,0.002500,0.249988,0,0);-ms-transform:matrix(0.255107,-0.002551,0.002500,0.249988,0,0);-webkit-transform:matrix(0.255107,-0.002551,0.002500,0.249988,0,0);}
.m126_c01316{transform:matrix(0.255280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255280,0.000000,0.000000,0.250000,0,0);}
.m36_c01316{transform:matrix(0.255297,-0.002553,0.002500,0.249988,0,0);-ms-transform:matrix(0.255297,-0.002553,0.002500,0.249988,0,0);-webkit-transform:matrix(0.255297,-0.002553,0.002500,0.249988,0,0);}
.m37_c01316{transform:matrix(0.255567,-0.002556,0.002500,0.249988,0,0);-ms-transform:matrix(0.255567,-0.002556,0.002500,0.249988,0,0);-webkit-transform:matrix(0.255567,-0.002556,0.002500,0.249988,0,0);}
.mc0_c01316{transform:matrix(0.255594,-0.001789,0.001750,0.249994,0,0);-ms-transform:matrix(0.255594,-0.001789,0.001750,0.249994,0,0);-webkit-transform:matrix(0.255594,-0.001789,0.001750,0.249994,0,0);}
.m5c_c01316{transform:matrix(0.255842,-0.002558,0.002500,0.249988,0,0);-ms-transform:matrix(0.255842,-0.002558,0.002500,0.249988,0,0);-webkit-transform:matrix(0.255842,-0.002558,0.002500,0.249988,0,0);}
.m16_c01316{transform:matrix(0.255960,-0.002816,0.002750,0.249985,0,0);-ms-transform:matrix(0.255960,-0.002816,0.002750,0.249985,0,0);-webkit-transform:matrix(0.255960,-0.002816,0.002750,0.249985,0,0);}
.me5_c01316{transform:matrix(0.256155,-0.001537,0.001500,0.249996,0,0);-ms-transform:matrix(0.256155,-0.001537,0.001500,0.249996,0,0);-webkit-transform:matrix(0.256155,-0.001537,0.001500,0.249996,0,0);}
.ma9_c01316{transform:matrix(0.257204,-0.002829,0.002750,0.249985,0,0);-ms-transform:matrix(0.257204,-0.002829,0.002750,0.249985,0,0);-webkit-transform:matrix(0.257204,-0.002829,0.002750,0.249985,0,0);}
.m13c_c01316{transform:matrix(0.257375,-0.003603,0.003500,0.249976,0,0);-ms-transform:matrix(0.257375,-0.003603,0.003500,0.249976,0,0);-webkit-transform:matrix(0.257375,-0.003603,0.003500,0.249976,0,0);}
.mbd_c01316{transform:matrix(0.257404,-0.001802,0.001750,0.249994,0,0);-ms-transform:matrix(0.257404,-0.001802,0.001750,0.249994,0,0);-webkit-transform:matrix(0.257404,-0.001802,0.001750,0.249994,0,0);}
.m83_c01316{transform:matrix(0.257807,-0.002578,0.002500,0.249988,0,0);-ms-transform:matrix(0.257807,-0.002578,0.002500,0.249988,0,0);-webkit-transform:matrix(0.257807,-0.002578,0.002500,0.249988,0,0);}
.m12b_c01316{transform:matrix(0.257825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257825,0.000000,0.000000,0.250000,0,0);}
.ma7_c01316{transform:matrix(0.257829,-0.002836,0.002750,0.249985,0,0);-ms-transform:matrix(0.257829,-0.002836,0.002750,0.249985,0,0);-webkit-transform:matrix(0.257829,-0.002836,0.002750,0.249985,0,0);}
.m2c_c01316{transform:matrix(0.258242,-0.002582,0.002500,0.249988,0,0);-ms-transform:matrix(0.258242,-0.002582,0.002500,0.249988,0,0);-webkit-transform:matrix(0.258242,-0.002582,0.002500,0.249988,0,0);}
.m19_c01316{transform:matrix(0.258339,-0.002842,0.002750,0.249985,0,0);-ms-transform:matrix(0.258339,-0.002842,0.002750,0.249985,0,0);-webkit-transform:matrix(0.258339,-0.002842,0.002750,0.249985,0,0);}
.m71_c01316{transform:matrix(0.258852,-0.002589,0.002500,0.249988,0,0);-ms-transform:matrix(0.258852,-0.002589,0.002500,0.249988,0,0);-webkit-transform:matrix(0.258852,-0.002589,0.002500,0.249988,0,0);}
.m6e_c01316{transform:matrix(0.259057,-0.002591,0.002500,0.249988,0,0);-ms-transform:matrix(0.259057,-0.002591,0.002500,0.249988,0,0);-webkit-transform:matrix(0.259057,-0.002591,0.002500,0.249988,0,0);}
.mb4_c01316{transform:matrix(0.259459,-0.001816,0.001750,0.249994,0,0);-ms-transform:matrix(0.259459,-0.001816,0.001750,0.249994,0,0);-webkit-transform:matrix(0.259459,-0.001816,0.001750,0.249994,0,0);}
.m62_c01316{transform:matrix(0.260172,-0.002602,0.002500,0.249988,0,0);-ms-transform:matrix(0.260172,-0.002602,0.002500,0.249988,0,0);-webkit-transform:matrix(0.260172,-0.002602,0.002500,0.249988,0,0);}
.m5_c01316{transform:matrix(0.260687,-0.004432,0.004249,0.249964,0,0);-ms-transform:matrix(0.260687,-0.004432,0.004249,0.249964,0,0);-webkit-transform:matrix(0.260687,-0.004432,0.004249,0.249964,0,0);}
.m1_c01316{transform:matrix(0.260977,-0.004437,0.004249,0.249964,0,0);-ms-transform:matrix(0.260977,-0.004437,0.004249,0.249964,0,0);-webkit-transform:matrix(0.260977,-0.004437,0.004249,0.249964,0,0);}
.mc6_c01316{transform:matrix(0.261039,-0.001827,0.001750,0.249994,0,0);-ms-transform:matrix(0.261039,-0.001827,0.001750,0.249994,0,0);-webkit-transform:matrix(0.261039,-0.001827,0.001750,0.249994,0,0);}
.me6_c01316{transform:matrix(0.261855,-0.001571,0.001500,0.249996,0,0);-ms-transform:matrix(0.261855,-0.001571,0.001500,0.249996,0,0);-webkit-transform:matrix(0.261855,-0.001571,0.001500,0.249996,0,0);}
.m5b_c01316{transform:matrix(0.262262,-0.002623,0.002500,0.249988,0,0);-ms-transform:matrix(0.262262,-0.002623,0.002500,0.249988,0,0);-webkit-transform:matrix(0.262262,-0.002623,0.002500,0.249988,0,0);}
.m2b_c01316{transform:matrix(0.262337,-0.002623,0.002500,0.249988,0,0);-ms-transform:matrix(0.262337,-0.002623,0.002500,0.249988,0,0);-webkit-transform:matrix(0.262337,-0.002623,0.002500,0.249988,0,0);}
.mb9_c01316{transform:matrix(0.262344,-0.001836,0.001750,0.249994,0,0);-ms-transform:matrix(0.262344,-0.001836,0.001750,0.249994,0,0);-webkit-transform:matrix(0.262344,-0.001836,0.001750,0.249994,0,0);}
.mc5_c01316{transform:matrix(0.262774,-0.001839,0.001750,0.249994,0,0);-ms-transform:matrix(0.262774,-0.001839,0.001750,0.249994,0,0);-webkit-transform:matrix(0.262774,-0.001839,0.001750,0.249994,0,0);}
.mf_c01316{transform:matrix(0.263427,-0.004478,0.004249,0.249964,0,0);-ms-transform:matrix(0.263427,-0.004478,0.004249,0.249964,0,0);-webkit-transform:matrix(0.263427,-0.004478,0.004249,0.249964,0,0);}
.mf6_c01316{transform:matrix(0.264300,-0.001586,0.001500,0.249996,0,0);-ms-transform:matrix(0.264300,-0.001586,0.001500,0.249996,0,0);-webkit-transform:matrix(0.264300,-0.001586,0.001500,0.249996,0,0);}
.m1d_c01316{transform:matrix(0.264314,-0.002907,0.002750,0.249985,0,0);-ms-transform:matrix(0.264314,-0.002907,0.002750,0.249985,0,0);-webkit-transform:matrix(0.264314,-0.002907,0.002750,0.249985,0,0);}
.mc3_c01316{transform:matrix(0.264999,-0.001855,0.001750,0.249994,0,0);-ms-transform:matrix(0.264999,-0.001855,0.001750,0.249994,0,0);-webkit-transform:matrix(0.264999,-0.001855,0.001750,0.249994,0,0);}
.m1a_c01316{transform:matrix(0.265959,-0.002926,0.002750,0.249985,0,0);-ms-transform:matrix(0.265959,-0.002926,0.002750,0.249985,0,0);-webkit-transform:matrix(0.265959,-0.002926,0.002750,0.249985,0,0);}
.m115_c01316{transform:matrix(0.266130,-0.001597,0.001500,0.249996,0,0);-ms-transform:matrix(0.266130,-0.001597,0.001500,0.249996,0,0);-webkit-transform:matrix(0.266130,-0.001597,0.001500,0.249996,0,0);}
.mad_c01316{transform:matrix(0.266184,-0.002928,0.002750,0.249985,0,0);-ms-transform:matrix(0.266184,-0.002928,0.002750,0.249985,0,0);-webkit-transform:matrix(0.266184,-0.002928,0.002750,0.249985,0,0);}
.m65_c01316{transform:matrix(0.266392,-0.002664,0.002500,0.249988,0,0);-ms-transform:matrix(0.266392,-0.002664,0.002500,0.249988,0,0);-webkit-transform:matrix(0.266392,-0.002664,0.002500,0.249988,0,0);}
.m4_c01316{transform:matrix(0.266397,-0.004529,0.004249,0.249964,0,0);-ms-transform:matrix(0.266397,-0.004529,0.004249,0.249964,0,0);-webkit-transform:matrix(0.266397,-0.004529,0.004249,0.249964,0,0);}
.m1b_c01316{transform:matrix(0.267899,-0.002947,0.002750,0.249985,0,0);-ms-transform:matrix(0.267899,-0.002947,0.002750,0.249985,0,0);-webkit-transform:matrix(0.267899,-0.002947,0.002750,0.249985,0,0);}
.mb_c01316{transform:matrix(0.268501,-0.004565,0.004249,0.249964,0,0);-ms-transform:matrix(0.268501,-0.004565,0.004249,0.249964,0,0);-webkit-transform:matrix(0.268501,-0.004565,0.004249,0.249964,0,0);}
.m34_c01316{transform:matrix(0.270761,-0.002708,0.002500,0.249988,0,0);-ms-transform:matrix(0.270761,-0.002708,0.002500,0.249988,0,0);-webkit-transform:matrix(0.270761,-0.002708,0.002500,0.249988,0,0);}
.md3_c01316{transform:matrix(0.270848,-0.001896,0.001750,0.249994,0,0);-ms-transform:matrix(0.270848,-0.001896,0.001750,0.249994,0,0);-webkit-transform:matrix(0.270848,-0.001896,0.001750,0.249994,0,0);}
.md5_c01316{transform:matrix(0.271103,-0.001898,0.001750,0.249994,0,0);-ms-transform:matrix(0.271103,-0.001898,0.001750,0.249994,0,0);-webkit-transform:matrix(0.271103,-0.001898,0.001750,0.249994,0,0);}
.m111_c01316{transform:matrix(0.271735,-0.001630,0.001500,0.249996,0,0);-ms-transform:matrix(0.271735,-0.001630,0.001500,0.249996,0,0);-webkit-transform:matrix(0.271735,-0.001630,0.001500,0.249996,0,0);}
.md0_c01316{transform:matrix(0.272143,-0.001905,0.001750,0.249994,0,0);-ms-transform:matrix(0.272143,-0.001905,0.001750,0.249994,0,0);-webkit-transform:matrix(0.272143,-0.001905,0.001750,0.249994,0,0);}
.m23_c01316{transform:matrix(0.272161,-0.002722,0.002500,0.249988,0,0);-ms-transform:matrix(0.272161,-0.002722,0.002500,0.249988,0,0);-webkit-transform:matrix(0.272161,-0.002722,0.002500,0.249988,0,0);}
.m2e_c01316{transform:matrix(0.272311,-0.002723,0.002500,0.249988,0,0);-ms-transform:matrix(0.272311,-0.002723,0.002500,0.249988,0,0);-webkit-transform:matrix(0.272311,-0.002723,0.002500,0.249988,0,0);}
.me7_c01316{transform:matrix(0.275375,-0.001652,0.001500,0.249996,0,0);-ms-transform:matrix(0.275375,-0.001652,0.001500,0.249996,0,0);-webkit-transform:matrix(0.275375,-0.001652,0.001500,0.249996,0,0);}
.mc_c01316{transform:matrix(0.275750,-0.004688,0.004249,0.249964,0,0);-ms-transform:matrix(0.275750,-0.004688,0.004249,0.249964,0,0);-webkit-transform:matrix(0.275750,-0.004688,0.004249,0.249964,0,0);}
.m14_c01316{transform:matrix(0.276908,-0.003046,0.002750,0.249985,0,0);-ms-transform:matrix(0.276908,-0.003046,0.002750,0.249985,0,0);-webkit-transform:matrix(0.276908,-0.003046,0.002750,0.249985,0,0);}
.m112_c01316{transform:matrix(0.277485,-0.001665,0.001500,0.249996,0,0);-ms-transform:matrix(0.277485,-0.001665,0.001500,0.249996,0,0);-webkit-transform:matrix(0.277485,-0.001665,0.001500,0.249996,0,0);}
.m12_c01316{transform:matrix(0.281034,-0.004778,0.004249,0.249964,0,0);-ms-transform:matrix(0.281034,-0.004778,0.004249,0.249964,0,0);-webkit-transform:matrix(0.281034,-0.004778,0.004249,0.249964,0,0);}
.mc1_c01316{transform:matrix(0.281588,-0.001971,0.001750,0.249994,0,0);-ms-transform:matrix(0.281588,-0.001971,0.001750,0.249994,0,0);-webkit-transform:matrix(0.281588,-0.001971,0.001750,0.249994,0,0);}
.m2f_c01316{transform:matrix(0.282146,-0.002821,0.002500,0.249988,0,0);-ms-transform:matrix(0.282146,-0.002821,0.002500,0.249988,0,0);-webkit-transform:matrix(0.282146,-0.002821,0.002500,0.249988,0,0);}
.mce_c01316{transform:matrix(0.282868,-0.001980,0.001750,0.249994,0,0);-ms-transform:matrix(0.282868,-0.001980,0.001750,0.249994,0,0);-webkit-transform:matrix(0.282868,-0.001980,0.001750,0.249994,0,0);}
.m11_c01316{transform:matrix(0.285274,-0.004850,0.004249,0.249964,0,0);-ms-transform:matrix(0.285274,-0.004850,0.004249,0.249964,0,0);-webkit-transform:matrix(0.285274,-0.004850,0.004249,0.249964,0,0);}
.mbe_c01316{transform:matrix(0.286118,-0.002003,0.001750,0.249994,0,0);-ms-transform:matrix(0.286118,-0.002003,0.001750,0.249994,0,0);-webkit-transform:matrix(0.286118,-0.002003,0.001750,0.249994,0,0);}
.me_c01316{transform:matrix(0.286479,-0.004870,0.004249,0.249964,0,0);-ms-transform:matrix(0.286479,-0.004870,0.004249,0.249964,0,0);-webkit-transform:matrix(0.286479,-0.004870,0.004249,0.249964,0,0);}
.m15_c01316{transform:matrix(0.288363,-0.003172,0.002750,0.249985,0,0);-ms-transform:matrix(0.288363,-0.003172,0.002750,0.249985,0,0);-webkit-transform:matrix(0.288363,-0.003172,0.002750,0.249985,0,0);}
.maf_c01316{transform:matrix(0.288973,-0.003179,0.002750,0.249985,0,0);-ms-transform:matrix(0.288973,-0.003179,0.002750,0.249985,0,0);-webkit-transform:matrix(0.288973,-0.003179,0.002750,0.249985,0,0);}
.mc2_c01316{transform:matrix(0.290743,-0.002035,0.001750,0.249994,0,0);-ms-transform:matrix(0.290743,-0.002035,0.001750,0.249994,0,0);-webkit-transform:matrix(0.290743,-0.002035,0.001750,0.249994,0,0);}
.mc4_c01316{transform:matrix(0.292308,-0.002046,0.001750,0.249994,0,0);-ms-transform:matrix(0.292308,-0.002046,0.001750,0.249994,0,0);-webkit-transform:matrix(0.292308,-0.002046,0.001750,0.249994,0,0);}
.m1e_c01316{transform:matrix(0.305472,-0.003360,0.002750,0.249985,0,0);-ms-transform:matrix(0.305472,-0.003360,0.002750,0.249985,0,0);-webkit-transform:matrix(0.305472,-0.003360,0.002750,0.249985,0,0);}
.m13_c01316{transform:matrix(0.306826,-0.003375,0.002750,0.249985,0,0);-ms-transform:matrix(0.306826,-0.003375,0.002750,0.249985,0,0);-webkit-transform:matrix(0.306826,-0.003375,0.002750,0.249985,0,0);}
.m13f_c01316{transform:matrix(0.326323,-0.004569,0.003500,0.249976,0,0);-ms-transform:matrix(0.326323,-0.004569,0.003500,0.249976,0,0);-webkit-transform:matrix(0.326323,-0.004569,0.003500,0.249976,0,0);}
.md6_c01316{transform:matrix(0.326722,-0.002287,0.001750,0.249994,0,0);-ms-transform:matrix(0.326722,-0.002287,0.001750,0.249994,0,0);-webkit-transform:matrix(0.326722,-0.002287,0.001750,0.249994,0,0);}
.mf5_c01316{transform:matrix(0.331799,-0.001991,0.001500,0.249996,0,0);-ms-transform:matrix(0.331799,-0.001991,0.001500,0.249996,0,0);-webkit-transform:matrix(0.331799,-0.001991,0.001500,0.249996,0,0);}
.mf4_c01316{transform:matrix(0.336884,-0.002021,0.001500,0.249996,0,0);-ms-transform:matrix(0.336884,-0.002021,0.001500,0.249996,0,0);-webkit-transform:matrix(0.336884,-0.002021,0.001500,0.249996,0,0);}
.mb0_c01316{transform:matrix(0.354190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354190,0.000000,0.000000,0.250000,0,0);}
.mb1_c01316{transform:matrix(0.363430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363430,0.000000,0.000000,0.250000,0,0);}
.mee_c01316{transform:matrix(0.390128,-0.002341,0.001500,0.249996,0,0);-ms-transform:matrix(0.390128,-0.002341,0.001500,0.249996,0,0);-webkit-transform:matrix(0.390128,-0.002341,0.001500,0.249996,0,0);}
.m2a_c01316{transform:matrix(0.415944,-0.004159,0.002500,0.249988,0,0);-ms-transform:matrix(0.415944,-0.004159,0.002500,0.249988,0,0);-webkit-transform:matrix(0.415944,-0.004159,0.002500,0.249988,0,0);}
.m136_c01316{transform:matrix(0.424488,-0.005943,0.003500,0.249976,0,0);-ms-transform:matrix(0.424488,-0.005943,0.003500,0.249976,0,0);-webkit-transform:matrix(0.424488,-0.005943,0.003500,0.249976,0,0);}
.mfb_c01316{transform:matrix(0.429807,-0.002579,0.001500,0.249996,0,0);-ms-transform:matrix(0.429807,-0.002579,0.001500,0.249996,0,0);-webkit-transform:matrix(0.429807,-0.002579,0.001500,0.249996,0,0);}
.m14b_c01316{transform:matrix(0.644161,-0.008374,0.003250,0.249979,0,0);-ms-transform:matrix(0.644161,-0.008374,0.003250,0.249979,0,0);-webkit-transform:matrix(0.644161,-0.008374,0.003250,0.249979,0,0);}
.mcd_c01316{transform:matrix(0.752302,-0.005266,0.001750,0.249994,0,0);-ms-transform:matrix(0.752302,-0.005266,0.001750,0.249994,0,0);-webkit-transform:matrix(0.752302,-0.005266,0.001750,0.249994,0,0);}
.m12c_c01316{transform:matrix(0.973500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.973500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.973500,0.000000,0.000000,0.250000,0,0);}
.v0_c01316{vertical-align:0.000000px;}
.ls0_c01316{letter-spacing:0.000000px;}
.sc__c01316{text-shadow:none;}
.sc0_c01316{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__c01316{-webkit-text-stroke:0px transparent;}
.sc0_c01316{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01316{word-spacing:0.000000px;}
._0_c01316{width:14.608409px;}
.fc0_c01316{color:transparent;}
.fs13_c01316{font-size:24.000000px;}
.fsa_c01316{font-size:54.000000px;}
.fs5_c01316{font-size:72.003600px;}
.fs2_c01316{font-size:72.010403px;}
.fs12_c01316{font-size:78.000000px;}
.fse_c01316{font-size:78.001404px;}
.fsc_c01316{font-size:78.001911px;}
.fs6_c01316{font-size:78.003900px;}
.fs3_c01316{font-size:78.004719px;}
.fs1_c01316{font-size:78.011270px;}
.fs10_c01316{font-size:84.001512px;}
.fsb_c01316{font-size:84.002058px;}
.fs4_c01316{font-size:84.004200px;}
.fs14_c01316{font-size:90.000000px;}
.fs7_c01316{font-size:90.004500px;}
.fs15_c01316{font-size:90.008820px;}
.fs11_c01316{font-size:96.000000px;}
.fs9_c01316{font-size:96.002352px;}
.fs0_c01316{font-size:102.000000px;}
.fsd_c01316{font-size:102.001836px;}
.fs16_c01316{font-size:114.009633px;}
.fsf_c01316{font-size:120.002160px;}
.fs8_c01316{font-size:132.006600px;}
.y0_c01316{bottom:0.000000px;}
.y12d_c01316{bottom:41.323500px;}
.y12e_c01316{bottom:41.903205px;}
.y12f_c01316{bottom:44.204952px;}
.y130_c01316{bottom:45.932181px;}
.y131_c01316{bottom:46.559808px;}
.y132_c01316{bottom:47.183298px;}
.y133_c01316{bottom:47.943057px;}
.y134_c01316{bottom:48.422907px;}
.y135_c01316{bottom:50.032725px;}
.y136_c01316{bottom:50.742693px;}
.y12c_c01316{bottom:78.714000px;}
.y12b_c01316{bottom:107.328000px;}
.y125_c01316{bottom:134.464500px;}
.y126_c01316{bottom:135.724500px;}
.y127_c01316{bottom:136.066500px;}
.y128_c01316{bottom:137.137500px;}
.y129_c01316{bottom:137.829000px;}
.y12a_c01316{bottom:138.541500px;}
.y124_c01316{bottom:173.340000px;}
.y11c_c01316{bottom:208.745295px;}
.y11e_c01316{bottom:208.745586px;}
.y11b_c01316{bottom:208.745724px;}
.y120_c01316{bottom:208.745877px;}
.y11d_c01316{bottom:208.745955px;}
.y123_c01316{bottom:208.745979px;}
.y119_c01316{bottom:208.746093px;}
.y11f_c01316{bottom:208.746186px;}
.y121_c01316{bottom:208.746288px;}
.y11a_c01316{bottom:208.746333px;}
.y118_c01316{bottom:208.746453px;}
.y122_c01316{bottom:208.746699px;}
.y10c_c01316{bottom:241.648989px;}
.y10d_c01316{bottom:242.108229px;}
.y10e_c01316{bottom:243.192291px;}
.y10f_c01316{bottom:243.801057px;}
.y110_c01316{bottom:244.266132px;}
.y111_c01316{bottom:244.727682px;}
.y112_c01316{bottom:245.349330px;}
.y113_c01316{bottom:247.502199px;}
.y114_c01316{bottom:248.591151px;}
.y115_c01316{bottom:249.060549px;}
.y116_c01316{bottom:250.152351px;}
.y117_c01316{bottom:250.782882px;}
.y103_c01316{bottom:278.638131px;}
.y104_c01316{bottom:278.969103px;}
.y105_c01316{bottom:279.400530px;}
.y106_c01316{bottom:279.570012px;}
.y107_c01316{bottom:279.844992px;}
.y108_c01316{bottom:280.123248px;}
.y109_c01316{bottom:280.785057px;}
.y10a_c01316{bottom:281.451801px;}
.y10b_c01316{bottom:281.728437px;}
.yf5_c01316{bottom:311.580834px;}
.yf6_c01316{bottom:312.026952px;}
.yf7_c01316{bottom:312.743022px;}
.yf8_c01316{bottom:313.723038px;}
.yf9_c01316{bottom:314.149908px;}
.yfa_c01316{bottom:314.589660px;}
.yfb_c01316{bottom:315.631935px;}
.yfc_c01316{bottom:315.874080px;}
.yfd_c01316{bottom:317.183043px;}
.yfe_c01316{bottom:317.604087px;}
.yff_c01316{bottom:318.765834px;}
.y100_c01316{bottom:319.484664px;}
.y101_c01316{bottom:320.053329px;}
.y102_c01316{bottom:320.493063px;}
.ye8_c01316{bottom:348.300591px;}
.ye9_c01316{bottom:348.755556px;}
.yea_c01316{bottom:348.989445px;}
.yeb_c01316{bottom:349.293864px;}
.yec_c01316{bottom:350.137986px;}
.yed_c01316{bottom:350.608875px;}
.yee_c01316{bottom:351.071622px;}
.yef_c01316{bottom:351.299175px;}
.yf0_c01316{bottom:351.770037px;}
.yf1_c01316{bottom:352.077489px;}
.yf2_c01316{bottom:352.242402px;}
.yf3_c01316{bottom:352.397895px;}
.yf4_c01316{bottom:353.003655px;}
.ydd_c01316{bottom:385.290000px;}
.yde_c01316{bottom:386.301438px;}
.ydf_c01316{bottom:386.738838px;}
.ye0_c01316{bottom:387.002916px;}
.ye1_c01316{bottom:387.333369px;}
.ye2_c01316{bottom:387.531063px;}
.ye3_c01316{bottom:388.067292px;}
.ye4_c01316{bottom:388.407465px;}
.ye5_c01316{bottom:388.930599px;}
.ye6_c01316{bottom:389.129994px;}
.ye7_c01316{bottom:389.334267px;}
.ycf_c01316{bottom:418.770440px;}
.yd0_c01316{bottom:419.311084px;}
.yd1_c01316{bottom:419.775909px;}
.yd2_c01316{bottom:420.082593px;}
.yd3_c01316{bottom:420.551355px;}
.yd4_c01316{bottom:420.789432px;}
.yd5_c01316{bottom:421.250634px;}
.yd6_c01316{bottom:421.475208px;}
.yd7_c01316{bottom:421.871908px;}
.yd8_c01316{bottom:422.014173px;}
.yd9_c01316{bottom:422.254192px;}
.yda_c01316{bottom:422.480677px;}
.ydb_c01316{bottom:423.025753px;}
.ydc_c01316{bottom:423.657003px;}
.yc2_c01316{bottom:454.950091px;}
.yc3_c01316{bottom:455.420223px;}
.yc4_c01316{bottom:455.621341px;}
.yc5_c01316{bottom:455.822932px;}
.yc6_c01316{bottom:456.411882px;}
.yc7_c01316{bottom:456.603402px;}
.yc8_c01316{bottom:456.802872px;}
.yc9_c01316{bottom:457.204081px;}
.yca_c01316{bottom:457.405441px;}
.ycb_c01316{bottom:458.069331px;}
.ycc_c01316{bottom:458.409220px;}
.ycd_c01316{bottom:458.936187px;}
.yce_c01316{bottom:459.086467px;}
.yb6_c01316{bottom:490.584000px;}
.yb7_c01316{bottom:490.908649px;}
.yb8_c01316{bottom:491.065940px;}
.yb9_c01316{bottom:491.305959px;}
.yba_c01316{bottom:491.689618px;}
.ybb_c01316{bottom:491.916408px;}
.ybc_c01316{bottom:492.369998px;}
.ybd_c01316{bottom:492.836817px;}
.ybe_c01316{bottom:493.078727px;}
.ybf_c01316{bottom:493.449030px;}
.yc0_c01316{bottom:494.375182px;}
.yc1_c01316{bottom:495.238744px;}
.y137_c01316{bottom:528.393000px;}
.y138_c01316{bottom:529.112667px;}
.y139_c01316{bottom:529.972461px;}
.y13a_c01316{bottom:530.544552px;}
.y13b_c01316{bottom:530.980260px;}
.y13c_c01316{bottom:531.695930px;}
.y13d_c01316{bottom:532.419067px;}
.y13e_c01316{bottom:532.864896px;}
.y13f_c01316{bottom:534.145929px;}
.y140_c01316{bottom:535.149165px;}
.y141_c01316{bottom:535.599128px;}
.y142_c01316{bottom:536.172622px;}
.y143_c01316{bottom:536.981990px;}
.yb5_c01316{bottom:562.423500px;}
.ya9_c01316{bottom:596.161500px;}
.yaa_c01316{bottom:596.874448px;}
.yab_c01316{bottom:597.350077px;}
.yac_c01316{bottom:597.961930px;}
.yad_c01316{bottom:598.933120px;}
.yae_c01316{bottom:599.301318px;}
.yaf_c01316{bottom:600.396852px;}
.yb0_c01316{bottom:600.771600px;}
.yb1_c01316{bottom:601.718981px;}
.yb2_c01316{bottom:602.210053px;}
.yb3_c01316{bottom:603.596961px;}
.yb4_c01316{bottom:604.172448px;}
.ya0_c01316{bottom:634.500000px;}
.ya1_c01316{bottom:634.738171px;}
.ya2_c01316{bottom:635.429880px;}
.ya3_c01316{bottom:635.974231px;}
.ya4_c01316{bottom:636.361534px;}
.ya5_c01316{bottom:636.896604px;}
.ya6_c01316{bottom:637.216025px;}
.ya7_c01316{bottom:637.994988px;}
.ya8_c01316{bottom:638.308255px;}
.y9b_c01316{bottom:666.887550px;}
.y9c_c01316{bottom:667.328700px;}
.y9d_c01316{bottom:667.762740px;}
.y9e_c01316{bottom:668.898765px;}
.y9f_c01316{bottom:669.830250px;}
.y8f_c01316{bottom:700.638690px;}
.y90_c01316{bottom:701.494245px;}
.y91_c01316{bottom:702.342630px;}
.y92_c01316{bottom:702.577245px;}
.y93_c01316{bottom:702.940035px;}
.y94_c01316{bottom:704.039145px;}
.y95_c01316{bottom:704.778690px;}
.y96_c01316{bottom:705.135735px;}
.y97_c01316{bottom:705.979350px;}
.y98_c01316{bottom:706.963020px;}
.y99_c01316{bottom:707.693145px;}
.y9a_c01316{bottom:708.287205px;}
.y81_c01316{bottom:738.978975px;}
.y82_c01316{bottom:739.209255px;}
.y83_c01316{bottom:739.591260px;}
.y84_c01316{bottom:739.899600px;}
.y85_c01316{bottom:740.285520px;}
.y86_c01316{bottom:740.676330px;}
.y87_c01316{bottom:741.379215px;}
.y88_c01316{bottom:741.521730px;}
.y89_c01316{bottom:741.756045px;}
.y8a_c01316{bottom:742.380060px;}
.y8b_c01316{bottom:742.610640px;}
.y8c_c01316{bottom:743.148945px;}
.y8d_c01316{bottom:743.462205px;}
.y8e_c01316{bottom:743.849175px;}
.y76_c01316{bottom:775.697790px;}
.y77_c01316{bottom:776.482470px;}
.y78_c01316{bottom:776.677710px;}
.y79_c01316{bottom:777.081510px;}
.y7a_c01316{bottom:777.742125px;}
.y7b_c01316{bottom:777.944625px;}
.y7c_c01316{bottom:778.476180px;}
.y7d_c01316{bottom:778.672470px;}
.y7e_c01316{bottom:779.268540px;}
.y7f_c01316{bottom:779.474715px;}
.y80_c01316{bottom:779.739525px;}
.y69_c01316{bottom:809.449005px;}
.y6a_c01316{bottom:809.890245px;}
.y6b_c01316{bottom:810.328845px;}
.y6c_c01316{bottom:810.596625px;}
.y6d_c01316{bottom:811.032120px;}
.y6e_c01316{bottom:811.389390px;}
.y6f_c01316{bottom:812.013690px;}
.y70_c01316{bottom:812.279805px;}
.y71_c01316{bottom:812.549865px;}
.y72_c01316{bottom:813.424305px;}
.y73_c01316{bottom:813.703395px;}
.y74_c01316{bottom:814.055280px;}
.y75_c01316{bottom:814.847880px;}
.y5f_c01316{bottom:845.358030px;}
.y60_c01316{bottom:846.044295px;}
.y61_c01316{bottom:846.577485px;}
.y62_c01316{bottom:846.815955px;}
.y63_c01316{bottom:847.505895px;}
.y64_c01316{bottom:847.907355px;}
.y65_c01316{bottom:848.442090px;}
.y66_c01316{bottom:849.214575px;}
.y67_c01316{bottom:849.443985px;}
.y68_c01316{bottom:849.837795px;}
.y51_c01316{bottom:879.650640px;}
.y52_c01316{bottom:879.971955px;}
.y53_c01316{bottom:880.191135px;}
.y54_c01316{bottom:880.526190px;}
.y55_c01316{bottom:881.174055px;}
.y56_c01316{bottom:881.508975px;}
.y57_c01316{bottom:882.621375px;}
.y58_c01316{bottom:883.199445px;}
.y59_c01316{bottom:883.609290px;}
.y5a_c01316{bottom:883.838835px;}
.y5b_c01316{bottom:884.276505px;}
.y5c_c01316{bottom:885.156855px;}
.y5d_c01316{bottom:885.507735px;}
.y5e_c01316{bottom:886.282620px;}
.y46_c01316{bottom:915.295935px;}
.y47_c01316{bottom:916.994055px;}
.y48_c01316{bottom:918.013980px;}
.y49_c01316{bottom:918.862260px;}
.y4a_c01316{bottom:920.953005px;}
.y4b_c01316{bottom:921.815175px;}
.y4c_c01316{bottom:923.062185px;}
.y4d_c01316{bottom:924.322620px;}
.y4e_c01316{bottom:924.724590px;}
.y4f_c01316{bottom:926.212260px;}
.y50_c01316{bottom:926.827395px;}
.y3c_c01316{bottom:950.935230px;}
.y3d_c01316{bottom:951.321180px;}
.y3e_c01316{bottom:951.710130px;}
.y3f_c01316{bottom:952.708875px;}
.y40_c01316{bottom:953.201505px;}
.y41_c01316{bottom:953.503365px;}
.y42_c01316{bottom:954.591495px;}
.y43_c01316{bottom:955.590195px;}
.y44_c01316{bottom:956.090895px;}
.y45_c01316{bottom:957.089475px;}
.y2f_c01316{bottom:986.848920px;}
.y30_c01316{bottom:987.367965px;}
.y31_c01316{bottom:987.628740px;}
.y32_c01316{bottom:988.242795px;}
.y33_c01316{bottom:989.302665px;}
.y34_c01316{bottom:989.659665px;}
.y35_c01316{bottom:989.940435px;}
.y36_c01316{bottom:990.190605px;}
.y37_c01316{bottom:990.457935px;}
.y38_c01316{bottom:991.072935px;}
.y39_c01316{bottom:991.340160px;}
.y3a_c01316{bottom:991.786605px;}
.y3b_c01316{bottom:992.140680px;}
.y22_c01316{bottom:1021.671000px;}
.y23_c01316{bottom:1022.259570px;}
.y24_c01316{bottom:1023.002040px;}
.y25_c01316{bottom:1023.765885px;}
.y26_c01316{bottom:1024.114380px;}
.y27_c01316{bottom:1024.441065px;}
.y28_c01316{bottom:1025.531700px;}
.y29_c01316{bottom:1025.866860px;}
.y2a_c01316{bottom:1026.555330px;}
.y2b_c01316{bottom:1027.321470px;}
.y2c_c01316{bottom:1027.546185px;}
.y2d_c01316{bottom:1027.875465px;}
.y2e_c01316{bottom:1028.312955px;}
.y14_c01316{bottom:1055.973000px;}
.y15_c01316{bottom:1056.365024px;}
.y16_c01316{bottom:1056.697647px;}
.y17_c01316{bottom:1057.077790px;}
.y18_c01316{bottom:1057.790062px;}
.y19_c01316{bottom:1058.170684px;}
.y1a_c01316{bottom:1058.883435px;}
.y1b_c01316{bottom:1059.501162px;}
.y1c_c01316{bottom:1059.976329px;}
.y1d_c01316{bottom:1061.187825px;}
.y1e_c01316{bottom:1061.568150px;}
.y1f_c01316{bottom:1063.041187px;}
.y20_c01316{bottom:1063.658915px;}
.y21_c01316{bottom:1064.187838px;}
.yc_c01316{bottom:1093.766223px;}
.yd_c01316{bottom:1094.143806px;}
.ye_c01316{bottom:1095.218861px;}
.yf_c01316{bottom:1095.593353px;}
.y10_c01316{bottom:1097.304092px;}
.y11_c01316{bottom:1098.031953px;}
.y12_c01316{bottom:1098.267854px;}
.y13_c01316{bottom:1099.510076px;}
.y2_c01316{bottom:1125.364500px;}
.y3_c01316{bottom:1127.586366px;}
.y4_c01316{bottom:1128.146499px;}
.y5_c01316{bottom:1129.271967px;}
.y6_c01316{bottom:1130.052165px;}
.y7_c01316{bottom:1130.983808px;}
.y8_c01316{bottom:1131.735752px;}
.y9_c01316{bottom:1132.681317px;}
.ya_c01316{bottom:1133.645625px;}
.yb_c01316{bottom:1135.306976px;}
.y1_c01316{bottom:1205.698500px;}
.h15_c01316{height:24.000000px;}
.hc_c01316{height:54.000000px;}
.h7_c01316{height:72.003600px;}
.h4_c01316{height:72.010403px;}
.h14_c01316{height:78.000000px;}
.h10_c01316{height:78.001404px;}
.he_c01316{height:78.001911px;}
.h8_c01316{height:78.003900px;}
.h5_c01316{height:78.004719px;}
.h3_c01316{height:78.011270px;}
.h12_c01316{height:84.001512px;}
.hd_c01316{height:84.002058px;}
.h6_c01316{height:84.004200px;}
.h16_c01316{height:90.000000px;}
.h9_c01316{height:90.004500px;}
.h17_c01316{height:90.008820px;}
.h13_c01316{height:96.000000px;}
.hb_c01316{height:96.002352px;}
.h2_c01316{height:102.000000px;}
.hf_c01316{height:102.001836px;}
.h18_c01316{height:114.009633px;}
.h11_c01316{height:120.002160px;}
.ha_c01316{height:132.006600px;}
.h1_c01316{height:1250.250000px;}
.h0_c01316{height:1250.370000px;}
.w1_c01316{width:912.000000px;}
.w0_c01316{width:912.300000px;}
.x0_c01316{left:0.000000px;}
.xd8_c01316{left:98.122500px;}
.x2_c01316{left:131.514000px;}
.x2a_c01316{left:132.946920px;}
.x4d_c01316{left:134.022795px;}
.x7f_c01316{left:135.270000px;}
.x75_c01316{left:136.756500px;}
.xab_c01316{left:138.880053px;}
.xc3_c01316{left:140.002980px;}
.xa2_c01316{left:149.310000px;}
.x80_c01316{left:156.870000px;}
.x43_c01316{left:165.622350px;}
.x14_c01316{left:167.098500px;}
.xb5_c01316{left:172.742406px;}
.xca_c01316{left:173.885610px;}
.x33_c01316{left:175.882455px;}
.x81_c01316{left:181.791000px;}
.x44_c01316{left:187.540350px;}
.x20_c01316{left:189.463500px;}
.xd4_c01316{left:195.480000px;}
.x15_c01316{left:197.337000px;}
.x6d_c01316{left:201.376305px;}
.x82_c01316{left:204.261000px;}
.xbf_c01316{left:205.550427px;}
.xcb_c01316{left:208.176843px;}
.x66_c01316{left:211.340520px;}
.x8c_c01316{left:215.051537px;}
.xc_c01316{left:217.794943px;}
.x34_c01316{left:219.127890px;}
.x3b_c01316{left:221.417745px;}
.xd0_c01316{left:225.720000px;}
.xb6_c01316{left:227.835093px;}
.x2b_c01316{left:230.430870px;}
.x16_c01316{left:231.895500px;}
.xac_c01316{left:237.438468px;}
.x83_c01316{left:238.549500px;}
.x53_c01316{left:242.565405px;}
.x6e_c01316{left:243.912000px;}
.xdd_c01316{left:245.608500px;}
.x8d_c01316{left:248.497268px;}
.xc4_c01316{left:250.214688px;}
.xd_c01316{left:252.097437px;}
.x3_c01316{left:262.212000px;}
.x21_c01316{left:263.710500px;}
.x5a_c01316{left:265.218600px;}
.xd5_c01316{left:272.160000px;}
.x3c_c01316{left:275.105415px;}
.x6f_c01316{left:277.936500px;}
.x97_c01316{left:280.902261px;}
.x8e_c01316{left:282.010499px;}
.x45_c01316{left:285.832350px;}
.x67_c01316{left:288.528255px;}
.xc0_c01316{left:291.955449px;}
.x84_c01316{left:293.358000px;}
.x4_c01316{left:295.161000px;}
.x17_c01316{left:296.647500px;}
.x76_c01316{left:300.432000px;}
.xb7_c01316{left:303.167925px;}
.x2c_c01316{left:307.137900px;}
.x4e_c01316{left:308.173515px;}
.x68_c01316{left:309.889545px;}
.xa3_c01316{left:317.883000px;}
.x3d_c01316{left:319.729395px;}
.x60_c01316{left:320.891100px;}
.x98_c01316{left:324.714261px;}
.x85_c01316{left:325.756500px;}
.xc5_c01316{left:326.934507px;}
.x35_c01316{left:330.103500px;}
.x18_c01316{left:331.249500px;}
.xb8_c01316{left:336.061548px;}
.x22_c01316{left:340.095000px;}
.x4f_c01316{left:342.221535px;}
.xe_c01316{left:349.845907px;}
.xd6_c01316{left:351.540000px;}
.xc6_c01316{left:359.857923px;}
.x5_c01316{left:361.365000px;}
.x5b_c01316{left:364.876575px;}
.xde_c01316{left:367.105500px;}
.xb9_c01316{left:369.852126px;}
.x23_c01316{left:374.944500px;}
.x61_c01316{left:376.773780px;}
.x8f_c01316{left:380.289692px;}
.xf_c01316{left:383.878375px;}
.x36_c01316{left:384.917055px;}
.x1_c01316{left:387.450000px;}
.x77_c01316{left:388.722000px;}
.x86_c01316{left:390.555000px;}
.x99_c01316{left:391.680261px;}
.xd1_c01316{left:394.200000px;}
.x19_c01316{left:396.045000px;}
.xad_c01316{left:401.610987px;}
.xc7_c01316{left:404.213790px;}
.x6_c01316{left:407.259000px;}
.xdf_c01316{left:411.112500px;}
.x90_c01316{left:412.149912px;}
.x37_c01316{left:418.403385px;}
.x78_c01316{left:422.194500px;}
.x9a_c01316{left:425.691261px;}
.xd9_c01316{left:427.314000px;}
.x3e_c01316{left:429.793995px;}
.xa4_c01316{left:434.796000px;}
.xc1_c01316{left:436.409313px;}
.x2d_c01316{left:439.677555px;}
.x50_c01316{left:440.768490px;}
.x69_c01316{left:442.728210px;}
.x91_c01316{left:445.360143px;}
.xba_c01316{left:450.061260px;}
.x1a_c01316{left:452.202000px;}
.x54_c01316{left:453.204120px;}
.x70_c01316{left:454.516500px;}
.x87_c01316{left:457.243500px;}
.xd7_c01316{left:460.350000px;}
.x7_c01316{left:462.061500px;}
.xae_c01316{left:468.842082px;}
.xcc_c01316{left:471.161811px;}
.x3f_c01316{left:475.206915px;}
.x62_c01316{left:477.215295px;}
.x2e_c01316{left:484.228440px;}
.x55_c01316{left:486.416280px;}
.x46_c01316{left:488.371350px;}
.xa5_c01316{left:489.871500px;}
.x88_c01316{left:491.802000px;}
.x1b_c01316{left:495.399000px;}
.x51_c01316{left:498.016200px;}
.xe0_c01316{left:499.680000px;}
.x8_c01316{left:506.293500px;}
.x5c_c01316{left:508.793835px;}
.x6a_c01316{left:509.932035px;}
.x92_c01316{left:512.319116px;}
.x24_c01316{left:516.676500px;}
.x2f_c01316{left:519.356145px;}
.x79_c01316{left:521.788500px;}
.x9b_c01316{left:523.659261px;}
.x47_c01316{left:529.355850px;}
.x63_c01316{left:530.949900px;}
.xaf_c01316{left:534.966186px;}
.x10_c01316{left:539.408236px;}
.x40_c01316{left:540.802005px;}
.x6b_c01316{left:542.336205px;}
.x89_c01316{left:544.702500px;}
.x93_c01316{left:545.799347px;}
.xcd_c01316{left:548.113083px;}
.x25_c01316{left:550.192500px;}
.x48_c01316{left:552.310350px;}
.x7a_c01316{left:555.856500px;}
.xc8_c01316{left:558.017910px;}
.x9_c01316{left:561.915000px;}
.xb0_c01316{left:567.391488px;}
.xbb_c01316{left:569.324247px;}
.xda_c01316{left:570.948000px;}
.x52_c01316{left:574.441995px;}
.x9c_c01316{left:580.330761px;}
.x30_c01316{left:584.157450px;}
.x71_c01316{left:586.284000px;}
.xe1_c01316{left:589.600500px;}
.xce_c01316{left:592.933194px;}
.x49_c01316{left:596.077350px;}
.x5d_c01316{left:597.352875px;}
.x9d_c01316{left:600.654261px;}
.xbc_c01316{left:601.746888px;}
.x11_c01316{left:605.524468px;}
.x41_c01316{left:607.139535px;}
.xa6_c01316{left:612.192000px;}
.xa_c01316{left:618.639000px;}
.x64_c01316{left:620.054070px;}
.x12_c01316{left:626.903136px;}
.x42_c01316{left:628.284630px;}
.x56_c01316{left:629.519145px;}
.x72_c01316{left:631.915500px;}
.x9e_c01316{left:634.942761px;}
.xcf_c01316{left:637.753305px;}
.x1c_c01316{left:640.110000px;}
.x7b_c01316{left:641.982000px;}
.x38_c01316{left:650.338710px;}
.x65_c01316{left:653.013060px;}
.x94_c01316{left:656.498624px;}
.x31_c01316{left:661.108995px;}
.x57_c01316{left:664.328835px;}
.x9f_c01316{left:667.297761px;}
.xa7_c01316{left:668.887500px;}
.x8a_c01316{left:677.010000px;}
.xb1_c01316{left:678.609822px;}
.x4a_c01316{left:684.112350px;}
.x7c_c01316{left:686.625000px;}
.xe2_c01316{left:688.141500px;}
.xbd_c01316{left:691.117635px;}
.x32_c01316{left:694.582170px;}
.x26_c01316{left:695.653500px;}
.xb2_c01316{left:702.095178px;}
.x39_c01316{left:705.959265px;}
.x58_c01316{left:708.368220px;}
.x95_c01316{left:713.197523px;}
.xd2_c01316{left:714.690000px;}
.xb_c01316{left:716.365500px;}
.x27_c01316{left:718.125000px;}
.x4b_c01316{left:719.200350px;}
.xdb_c01316{left:720.210000px;}
.xb3_c01316{left:724.260543px;}
.x5e_c01316{left:729.394155px;}
.x13_c01316{left:739.780636px;}
.x73_c01316{left:743.196000px;}
.xa0_c01316{left:745.165761px;}
.xbe_c01316{left:746.420313px;}
.xd3_c01316{left:748.440000px;}
.x28_c01316{left:751.053000px;}
.xa8_c01316{left:756.076500px;}
.xc2_c01316{left:757.442739px;}
.x5f_c01316{left:763.663020px;}
.xe3_c01316{left:765.313500px;}
.xdc_c01316{left:770.922000px;}
.x1d_c01316{left:774.022500px;}
.x74_c01316{left:787.948500px;}
.xa9_c01316{left:789.309000px;}
.xc9_c01316{left:792.287160px;}
.x29_c01316{left:794.802000px;}
.x4c_c01316{left:796.688850px;}
.x8b_c01316{left:800.376000px;}
.x59_c01316{left:807.430200px;}
.xb4_c01316{left:810.720021px;}
.x7d_c01316{left:812.707500px;}
.x3a_c01316{left:816.918375px;}
.xaa_c01316{left:823.354500px;}
.x96_c01316{left:826.019310px;}
.x6c_c01316{left:828.830340px;}
.x1e_c01316{left:830.179500px;}
.xa1_c01316{left:835.344261px;}
.xe4_c01316{left:844.041000px;}
.x7e_c01316{left:865.024500px;}
.x1f_c01316{left:878.263500px;}
.xe5_c01316{left:906.300000px;}
@media print{
.v0_c01316{vertical-align:0.000000pt;}
.ls0_c01316{letter-spacing:0.000000pt;}
.ws0_c01316{word-spacing:0.000000pt;}
._0_c01316{width:12.985252pt;}
.fs13_c01316{font-size:21.333333pt;}
.fsa_c01316{font-size:48.000000pt;}
.fs5_c01316{font-size:64.003200pt;}
.fs2_c01316{font-size:64.009247pt;}
.fs12_c01316{font-size:69.333333pt;}
.fse_c01316{font-size:69.334581pt;}
.fsc_c01316{font-size:69.335032pt;}
.fs6_c01316{font-size:69.336800pt;}
.fs3_c01316{font-size:69.337528pt;}
.fs1_c01316{font-size:69.343351pt;}
.fs10_c01316{font-size:74.668011pt;}
.fsb_c01316{font-size:74.668496pt;}
.fs4_c01316{font-size:74.670400pt;}
.fs14_c01316{font-size:80.000000pt;}
.fs7_c01316{font-size:80.004000pt;}
.fs15_c01316{font-size:80.007840pt;}
.fs11_c01316{font-size:85.333333pt;}
.fs9_c01316{font-size:85.335424pt;}
.fs0_c01316{font-size:90.666667pt;}
.fsd_c01316{font-size:90.668299pt;}
.fs16_c01316{font-size:101.341896pt;}
.fsf_c01316{font-size:106.668587pt;}
.fs8_c01316{font-size:117.339200pt;}
.y0_c01316{bottom:0.000000pt;}
.y12d_c01316{bottom:36.732000pt;}
.y12e_c01316{bottom:37.247293pt;}
.y12f_c01316{bottom:39.293291pt;}
.y130_c01316{bottom:40.828605pt;}
.y131_c01316{bottom:41.386496pt;}
.y132_c01316{bottom:41.940709pt;}
.y133_c01316{bottom:42.616051pt;}
.y134_c01316{bottom:43.042584pt;}
.y135_c01316{bottom:44.473533pt;}
.y136_c01316{bottom:45.104616pt;}
.y12c_c01316{bottom:69.968000pt;}
.y12b_c01316{bottom:95.402667pt;}
.y125_c01316{bottom:119.524000pt;}
.y126_c01316{bottom:120.644000pt;}
.y127_c01316{bottom:120.948000pt;}
.y128_c01316{bottom:121.900000pt;}
.y129_c01316{bottom:122.514667pt;}
.y12a_c01316{bottom:123.148000pt;}
.y124_c01316{bottom:154.080000pt;}
.y11c_c01316{bottom:185.551373pt;}
.y11e_c01316{bottom:185.551632pt;}
.y11b_c01316{bottom:185.551755pt;}
.y120_c01316{bottom:185.551891pt;}
.y11d_c01316{bottom:185.551960pt;}
.y123_c01316{bottom:185.551981pt;}
.y119_c01316{bottom:185.552083pt;}
.y11f_c01316{bottom:185.552165pt;}
.y121_c01316{bottom:185.552256pt;}
.y11a_c01316{bottom:185.552296pt;}
.y118_c01316{bottom:185.552403pt;}
.y122_c01316{bottom:185.552621pt;}
.y10c_c01316{bottom:214.799101pt;}
.y10d_c01316{bottom:215.207315pt;}
.y10e_c01316{bottom:216.170925pt;}
.y10f_c01316{bottom:216.712051pt;}
.y110_c01316{bottom:217.125451pt;}
.y111_c01316{bottom:217.535717pt;}
.y112_c01316{bottom:218.088293pt;}
.y113_c01316{bottom:220.001955pt;}
.y114_c01316{bottom:220.969912pt;}
.y115_c01316{bottom:221.387155pt;}
.y116_c01316{bottom:222.357645pt;}
.y117_c01316{bottom:222.918117pt;}
.y103_c01316{bottom:247.678339pt;}
.y104_c01316{bottom:247.972536pt;}
.y105_c01316{bottom:248.356027pt;}
.y106_c01316{bottom:248.506677pt;}
.y107_c01316{bottom:248.751104pt;}
.y108_c01316{bottom:248.998443pt;}
.y109_c01316{bottom:249.586717pt;}
.y10a_c01316{bottom:250.179379pt;}
.y10b_c01316{bottom:250.425277pt;}
.yf5_c01316{bottom:276.960741pt;}
.yf6_c01316{bottom:277.357291pt;}
.yf7_c01316{bottom:277.993797pt;}
.yf8_c01316{bottom:278.864923pt;}
.yf9_c01316{bottom:279.244363pt;}
.yfa_c01316{bottom:279.635253pt;}
.yfb_c01316{bottom:280.561720pt;}
.yfc_c01316{bottom:280.776960pt;}
.yfd_c01316{bottom:281.940483pt;}
.yfe_c01316{bottom:282.314744pt;}
.yff_c01316{bottom:283.347408pt;}
.y100_c01316{bottom:283.986368pt;}
.y101_c01316{bottom:284.491848pt;}
.y102_c01316{bottom:284.882723pt;}
.ye8_c01316{bottom:309.600525pt;}
.ye9_c01316{bottom:310.004939pt;}
.yea_c01316{bottom:310.212840pt;}
.yeb_c01316{bottom:310.483435pt;}
.yec_c01316{bottom:311.233765pt;}
.yed_c01316{bottom:311.652333pt;}
.yee_c01316{bottom:312.063664pt;}
.yef_c01316{bottom:312.265933pt;}
.yf0_c01316{bottom:312.684477pt;}
.yf1_c01316{bottom:312.957768pt;}
.yf2_c01316{bottom:313.104357pt;}
.yf3_c01316{bottom:313.242573pt;}
.yf4_c01316{bottom:313.781027pt;}
.ydd_c01316{bottom:342.480000pt;}
.yde_c01316{bottom:343.379056pt;}
.ydf_c01316{bottom:343.767856pt;}
.ye0_c01316{bottom:344.002592pt;}
.ye1_c01316{bottom:344.296328pt;}
.ye2_c01316{bottom:344.472056pt;}
.ye3_c01316{bottom:344.948704pt;}
.ye4_c01316{bottom:345.251080pt;}
.ye5_c01316{bottom:345.716088pt;}
.ye6_c01316{bottom:345.893328pt;}
.ye7_c01316{bottom:346.074904pt;}
.ycf_c01316{bottom:372.240391pt;}
.yd0_c01316{bottom:372.720964pt;}
.yd1_c01316{bottom:373.134141pt;}
.yd2_c01316{bottom:373.406749pt;}
.yd3_c01316{bottom:373.823427pt;}
.yd4_c01316{bottom:374.035051pt;}
.yd5_c01316{bottom:374.445008pt;}
.yd6_c01316{bottom:374.644629pt;}
.yd7_c01316{bottom:374.997252pt;}
.yd8_c01316{bottom:375.123709pt;}
.yd9_c01316{bottom:375.337060pt;}
.yda_c01316{bottom:375.538380pt;}
.ydb_c01316{bottom:376.022892pt;}
.ydc_c01316{bottom:376.584003pt;}
.yc2_c01316{bottom:404.400081pt;}
.yc3_c01316{bottom:404.817976pt;}
.yc4_c01316{bottom:404.996748pt;}
.yc5_c01316{bottom:405.175940pt;}
.yc6_c01316{bottom:405.699451pt;}
.yc7_c01316{bottom:405.869691pt;}
.yc8_c01316{bottom:406.046997pt;}
.yc9_c01316{bottom:406.403628pt;}
.yca_c01316{bottom:406.582615pt;}
.ycb_c01316{bottom:407.172739pt;}
.ycc_c01316{bottom:407.474863pt;}
.ycd_c01316{bottom:407.943277pt;}
.yce_c01316{bottom:408.076860pt;}
.yb6_c01316{bottom:436.074667pt;}
.yb7_c01316{bottom:436.363244pt;}
.yb8_c01316{bottom:436.503057pt;}
.yb9_c01316{bottom:436.716408pt;}
.yba_c01316{bottom:437.057439pt;}
.ybb_c01316{bottom:437.259029pt;}
.ybc_c01316{bottom:437.662220pt;}
.ybd_c01316{bottom:438.077171pt;}
.ybe_c01316{bottom:438.292201pt;}
.ybf_c01316{bottom:438.621360pt;}
.yc0_c01316{bottom:439.444607pt;}
.yc1_c01316{bottom:440.212217pt;}
.y137_c01316{bottom:469.682667pt;}
.y138_c01316{bottom:470.322371pt;}
.y139_c01316{bottom:471.086632pt;}
.y13a_c01316{bottom:471.595157pt;}
.y13b_c01316{bottom:471.982453pt;}
.y13c_c01316{bottom:472.618604pt;}
.y13d_c01316{bottom:473.261393pt;}
.y13e_c01316{bottom:473.657685pt;}
.y13f_c01316{bottom:474.796381pt;}
.y140_c01316{bottom:475.688147pt;}
.y141_c01316{bottom:476.088113pt;}
.y142_c01316{bottom:476.597887pt;}
.y143_c01316{bottom:477.317324pt;}
.yb5_c01316{bottom:499.932000pt;}
.ya9_c01316{bottom:529.921333pt;}
.yaa_c01316{bottom:530.555065pt;}
.yab_c01316{bottom:530.977847pt;}
.yac_c01316{bottom:531.521716pt;}
.yad_c01316{bottom:532.384996pt;}
.yae_c01316{bottom:532.712283pt;}
.yaf_c01316{bottom:533.686091pt;}
.yb0_c01316{bottom:534.019200pt;}
.yb1_c01316{bottom:534.861316pt;}
.yb2_c01316{bottom:535.297825pt;}
.yb3_c01316{bottom:536.530632pt;}
.yb4_c01316{bottom:537.042176pt;}
.ya0_c01316{bottom:564.000000pt;}
.ya1_c01316{bottom:564.211708pt;}
.ya2_c01316{bottom:564.826560pt;}
.ya3_c01316{bottom:565.310428pt;}
.ya4_c01316{bottom:565.654697pt;}
.ya5_c01316{bottom:566.130315pt;}
.ya6_c01316{bottom:566.414244pt;}
.ya7_c01316{bottom:567.106656pt;}
.ya8_c01316{bottom:567.385116pt;}
.y9b_c01316{bottom:592.788933pt;}
.y9c_c01316{bottom:593.181067pt;}
.y9d_c01316{bottom:593.566880pt;}
.y9e_c01316{bottom:594.576680pt;}
.y9f_c01316{bottom:595.404667pt;}
.y8f_c01316{bottom:622.789947pt;}
.y90_c01316{bottom:623.550440pt;}
.y91_c01316{bottom:624.304560pt;}
.y92_c01316{bottom:624.513107pt;}
.y93_c01316{bottom:624.835587pt;}
.y94_c01316{bottom:625.812573pt;}
.y95_c01316{bottom:626.469947pt;}
.y96_c01316{bottom:626.787320pt;}
.y97_c01316{bottom:627.537200pt;}
.y98_c01316{bottom:628.411573pt;}
.y99_c01316{bottom:629.060573pt;}
.y9a_c01316{bottom:629.588627pt;}
.y81_c01316{bottom:656.870200pt;}
.y82_c01316{bottom:657.074893pt;}
.y83_c01316{bottom:657.414453pt;}
.y84_c01316{bottom:657.688533pt;}
.y85_c01316{bottom:658.031573pt;}
.y86_c01316{bottom:658.378960pt;}
.y87_c01316{bottom:659.003747pt;}
.y88_c01316{bottom:659.130427pt;}
.y89_c01316{bottom:659.338707pt;}
.y8a_c01316{bottom:659.893387pt;}
.y8b_c01316{bottom:660.098347pt;}
.y8c_c01316{bottom:660.576840pt;}
.y8d_c01316{bottom:660.855293pt;}
.y8e_c01316{bottom:661.199267pt;}
.y76_c01316{bottom:689.509147pt;}
.y77_c01316{bottom:690.206640pt;}
.y78_c01316{bottom:690.380187pt;}
.y79_c01316{bottom:690.739120pt;}
.y7a_c01316{bottom:691.326333pt;}
.y7b_c01316{bottom:691.506333pt;}
.y7c_c01316{bottom:691.978827pt;}
.y7d_c01316{bottom:692.153307pt;}
.y7e_c01316{bottom:692.683147pt;}
.y7f_c01316{bottom:692.866413pt;}
.y80_c01316{bottom:693.101800pt;}
.y69_c01316{bottom:719.510227pt;}
.y6a_c01316{bottom:719.902440pt;}
.y6b_c01316{bottom:720.292307pt;}
.y6c_c01316{bottom:720.530333pt;}
.y6d_c01316{bottom:720.917440pt;}
.y6e_c01316{bottom:721.235013pt;}
.y6f_c01316{bottom:721.789947pt;}
.y70_c01316{bottom:722.026493pt;}
.y71_c01316{bottom:722.266547pt;}
.y72_c01316{bottom:723.043827pt;}
.y73_c01316{bottom:723.291907pt;}
.y74_c01316{bottom:723.604693pt;}
.y75_c01316{bottom:724.309227pt;}
.y5f_c01316{bottom:751.429360pt;}
.y60_c01316{bottom:752.039373pt;}
.y61_c01316{bottom:752.513320pt;}
.y62_c01316{bottom:752.725293pt;}
.y63_c01316{bottom:753.338573pt;}
.y64_c01316{bottom:753.695427pt;}
.y65_c01316{bottom:754.170747pt;}
.y66_c01316{bottom:754.857400pt;}
.y67_c01316{bottom:755.061320pt;}
.y68_c01316{bottom:755.411373pt;}
.y51_c01316{bottom:781.911680pt;}
.y52_c01316{bottom:782.197293pt;}
.y53_c01316{bottom:782.392120pt;}
.y54_c01316{bottom:782.689947pt;}
.y55_c01316{bottom:783.265827pt;}
.y56_c01316{bottom:783.563533pt;}
.y57_c01316{bottom:784.552333pt;}
.y58_c01316{bottom:785.066173pt;}
.y59_c01316{bottom:785.430480pt;}
.y5a_c01316{bottom:785.634520pt;}
.y5b_c01316{bottom:786.023560pt;}
.y5c_c01316{bottom:786.806093pt;}
.y5d_c01316{bottom:787.117987pt;}
.y5e_c01316{bottom:787.806773pt;}
.y46_c01316{bottom:813.596387pt;}
.y47_c01316{bottom:815.105827pt;}
.y48_c01316{bottom:816.012427pt;}
.y49_c01316{bottom:816.766453pt;}
.y4a_c01316{bottom:818.624893pt;}
.y4b_c01316{bottom:819.391267pt;}
.y4c_c01316{bottom:820.499720pt;}
.y4d_c01316{bottom:821.620107pt;}
.y4e_c01316{bottom:821.977413pt;}
.y4f_c01316{bottom:823.299787pt;}
.y50_c01316{bottom:823.846573pt;}
.y3c_c01316{bottom:845.275760pt;}
.y3d_c01316{bottom:845.618827pt;}
.y3e_c01316{bottom:845.964560pt;}
.y3f_c01316{bottom:846.852333pt;}
.y40_c01316{bottom:847.290227pt;}
.y41_c01316{bottom:847.558547pt;}
.y42_c01316{bottom:848.525773pt;}
.y43_c01316{bottom:849.413507pt;}
.y44_c01316{bottom:849.858573pt;}
.y45_c01316{bottom:850.746200pt;}
.y2f_c01316{bottom:877.199040pt;}
.y30_c01316{bottom:877.660413pt;}
.y31_c01316{bottom:877.892213pt;}
.y32_c01316{bottom:878.438040pt;}
.y33_c01316{bottom:879.380147pt;}
.y34_c01316{bottom:879.697480pt;}
.y35_c01316{bottom:879.947053pt;}
.y36_c01316{bottom:880.169427pt;}
.y37_c01316{bottom:880.407053pt;}
.y38_c01316{bottom:880.953720pt;}
.y39_c01316{bottom:881.191253pt;}
.y3a_c01316{bottom:881.588093pt;}
.y3b_c01316{bottom:881.902827pt;}
.y22_c01316{bottom:908.152000pt;}
.y23_c01316{bottom:908.675173pt;}
.y24_c01316{bottom:909.335147pt;}
.y25_c01316{bottom:910.014120pt;}
.y26_c01316{bottom:910.323893pt;}
.y27_c01316{bottom:910.614280pt;}
.y28_c01316{bottom:911.583733pt;}
.y29_c01316{bottom:911.881653pt;}
.y2a_c01316{bottom:912.493627pt;}
.y2b_c01316{bottom:913.174640pt;}
.y2c_c01316{bottom:913.374387pt;}
.y2d_c01316{bottom:913.667080pt;}
.y2e_c01316{bottom:914.055960pt;}
.y14_c01316{bottom:938.642667pt;}
.y15_c01316{bottom:938.991132pt;}
.y16_c01316{bottom:939.286797pt;}
.y17_c01316{bottom:939.624703pt;}
.y18_c01316{bottom:940.257833pt;}
.y19_c01316{bottom:940.596164pt;}
.y1a_c01316{bottom:941.229720pt;}
.y1b_c01316{bottom:941.778811pt;}
.y1c_c01316{bottom:942.201181pt;}
.y1d_c01316{bottom:943.278067pt;}
.y1e_c01316{bottom:943.616133pt;}
.y1f_c01316{bottom:944.925500pt;}
.y20_c01316{bottom:945.474591pt;}
.y21_c01316{bottom:945.944745pt;}
.yc_c01316{bottom:972.236643pt;}
.yd_c01316{bottom:972.572272pt;}
.ye_c01316{bottom:973.527876pt;}
.yf_c01316{bottom:973.860759pt;}
.y10_c01316{bottom:975.381415pt;}
.y11_c01316{bottom:976.028403pt;}
.y12_c01316{bottom:976.238092pt;}
.y13_c01316{bottom:977.342289pt;}
.y2_c01316{bottom:1000.324000pt;}
.y3_c01316{bottom:1002.298992pt;}
.y4_c01316{bottom:1002.796888pt;}
.y5_c01316{bottom:1003.797304pt;}
.y6_c01316{bottom:1004.490813pt;}
.y7_c01316{bottom:1005.318940pt;}
.y8_c01316{bottom:1005.987335pt;}
.y9_c01316{bottom:1006.827837pt;}
.ya_c01316{bottom:1007.685000pt;}
.yb_c01316{bottom:1009.161756pt;}
.y1_c01316{bottom:1071.732000pt;}
.h15_c01316{height:21.333333pt;}
.hc_c01316{height:48.000000pt;}
.h7_c01316{height:64.003200pt;}
.h4_c01316{height:64.009247pt;}
.h14_c01316{height:69.333333pt;}
.h10_c01316{height:69.334581pt;}
.he_c01316{height:69.335032pt;}
.h8_c01316{height:69.336800pt;}
.h5_c01316{height:69.337528pt;}
.h3_c01316{height:69.343351pt;}
.h12_c01316{height:74.668011pt;}
.hd_c01316{height:74.668496pt;}
.h6_c01316{height:74.670400pt;}
.h16_c01316{height:80.000000pt;}
.h9_c01316{height:80.004000pt;}
.h17_c01316{height:80.007840pt;}
.h13_c01316{height:85.333333pt;}
.hb_c01316{height:85.335424pt;}
.h2_c01316{height:90.666667pt;}
.hf_c01316{height:90.668299pt;}
.h18_c01316{height:101.341896pt;}
.h11_c01316{height:106.668587pt;}
.ha_c01316{height:117.339200pt;}
.h1_c01316{height:1111.333333pt;}
.h0_c01316{height:1111.440000pt;}
.w1_c01316{width:810.666667pt;}
.w0_c01316{width:810.933333pt;}
.x0_c01316{left:0.000000pt;}
.xd8_c01316{left:87.220000pt;}
.x2_c01316{left:116.901333pt;}
.x2a_c01316{left:118.175040pt;}
.x4d_c01316{left:119.131373pt;}
.x7f_c01316{left:120.240000pt;}
.x75_c01316{left:121.561333pt;}
.xab_c01316{left:123.448936pt;}
.xc3_c01316{left:124.447093pt;}
.xa2_c01316{left:132.720000pt;}
.x80_c01316{left:139.440000pt;}
.x43_c01316{left:147.219867pt;}
.x14_c01316{left:148.532000pt;}
.xb5_c01316{left:153.548805pt;}
.xca_c01316{left:154.564987pt;}
.x33_c01316{left:156.339960pt;}
.x81_c01316{left:161.592000pt;}
.x44_c01316{left:166.702533pt;}
.x20_c01316{left:168.412000pt;}
.xd4_c01316{left:173.760000pt;}
.x15_c01316{left:175.410667pt;}
.x6d_c01316{left:179.001160pt;}
.x82_c01316{left:181.565333pt;}
.xbf_c01316{left:182.711491pt;}
.xcb_c01316{left:185.046083pt;}
.x66_c01316{left:187.858240pt;}
.x8c_c01316{left:191.156921pt;}
.xc_c01316{left:193.595505pt;}
.x34_c01316{left:194.780347pt;}
.x3b_c01316{left:196.815773pt;}
.xd0_c01316{left:200.640000pt;}
.xb6_c01316{left:202.520083pt;}
.x2b_c01316{left:204.827440pt;}
.x16_c01316{left:206.129333pt;}
.xac_c01316{left:211.056416pt;}
.x83_c01316{left:212.044000pt;}
.x53_c01316{left:215.613693pt;}
.x6e_c01316{left:216.810667pt;}
.xdd_c01316{left:218.318667pt;}
.x8d_c01316{left:220.886460pt;}
.xc4_c01316{left:222.413056pt;}
.xd_c01316{left:224.086611pt;}
.x3_c01316{left:233.077333pt;}
.x21_c01316{left:234.409333pt;}
.x5a_c01316{left:235.749867pt;}
.xd5_c01316{left:241.920000pt;}
.x3c_c01316{left:244.538147pt;}
.x6f_c01316{left:247.054667pt;}
.x97_c01316{left:249.690899pt;}
.x8e_c01316{left:250.675999pt;}
.x45_c01316{left:254.073200pt;}
.x67_c01316{left:256.469560pt;}
.xc0_c01316{left:259.515955pt;}
.x84_c01316{left:260.762667pt;}
.x4_c01316{left:262.365333pt;}
.x17_c01316{left:263.686667pt;}
.x76_c01316{left:267.050667pt;}
.xb7_c01316{left:269.482600pt;}
.x2c_c01316{left:273.011467pt;}
.x4e_c01316{left:273.932013pt;}
.x68_c01316{left:275.457373pt;}
.xa3_c01316{left:282.562667pt;}
.x3d_c01316{left:284.203907pt;}
.x60_c01316{left:285.236533pt;}
.x98_c01316{left:288.634899pt;}
.x85_c01316{left:289.561333pt;}
.xc5_c01316{left:290.608451pt;}
.x35_c01316{left:293.425333pt;}
.x18_c01316{left:294.444000pt;}
.xb8_c01316{left:298.721376pt;}
.x22_c01316{left:302.306667pt;}
.x4f_c01316{left:304.196920pt;}
.xe_c01316{left:310.974140pt;}
.xd6_c01316{left:312.480000pt;}
.xc6_c01316{left:319.873709pt;}
.x5_c01316{left:321.213333pt;}
.x5b_c01316{left:324.334733pt;}
.xde_c01316{left:326.316000pt;}
.xb9_c01316{left:328.757445pt;}
.x23_c01316{left:333.284000pt;}
.x61_c01316{left:334.910027pt;}
.x8f_c01316{left:338.035281pt;}
.xf_c01316{left:341.225223pt;}
.x36_c01316{left:342.148493pt;}
.x1_c01316{left:344.400000pt;}
.x77_c01316{left:345.530667pt;}
.x86_c01316{left:347.160000pt;}
.x99_c01316{left:348.160232pt;}
.xd1_c01316{left:350.400000pt;}
.x19_c01316{left:352.040000pt;}
.xad_c01316{left:356.987544pt;}
.xc7_c01316{left:359.301147pt;}
.x6_c01316{left:362.008000pt;}
.xdf_c01316{left:365.433333pt;}
.x90_c01316{left:366.355477pt;}
.x37_c01316{left:371.914120pt;}
.x78_c01316{left:375.284000pt;}
.x9a_c01316{left:378.392232pt;}
.xd9_c01316{left:379.834667pt;}
.x3e_c01316{left:382.039107pt;}
.xa4_c01316{left:386.485333pt;}
.xc1_c01316{left:387.919389pt;}
.x2d_c01316{left:390.824493pt;}
.x50_c01316{left:391.794213pt;}
.x69_c01316{left:393.536187pt;}
.x91_c01316{left:395.875683pt;}
.xba_c01316{left:400.054453pt;}
.x1a_c01316{left:401.957333pt;}
.x54_c01316{left:402.848107pt;}
.x70_c01316{left:404.014667pt;}
.x87_c01316{left:406.438667pt;}
.xd7_c01316{left:409.200000pt;}
.x7_c01316{left:410.721333pt;}
.xae_c01316{left:416.748517pt;}
.xcc_c01316{left:418.810499pt;}
.x3f_c01316{left:422.406147pt;}
.x62_c01316{left:424.191373pt;}
.x2e_c01316{left:430.425280pt;}
.x55_c01316{left:432.370027pt;}
.x46_c01316{left:434.107867pt;}
.xa5_c01316{left:435.441333pt;}
.x88_c01316{left:437.157333pt;}
.x1b_c01316{left:440.354667pt;}
.x51_c01316{left:442.681067pt;}
.xe0_c01316{left:444.160000pt;}
.x8_c01316{left:450.038667pt;}
.x5c_c01316{left:452.261187pt;}
.x6a_c01316{left:453.272920pt;}
.x92_c01316{left:455.394769pt;}
.x24_c01316{left:459.268000pt;}
.x2f_c01316{left:461.649907pt;}
.x79_c01316{left:463.812000pt;}
.x9b_c01316{left:465.474899pt;}
.x47_c01316{left:470.538533pt;}
.x63_c01316{left:471.955467pt;}
.xaf_c01316{left:475.525499pt;}
.x10_c01316{left:479.473988pt;}
.x40_c01316{left:480.712893pt;}
.x6b_c01316{left:482.076627pt;}
.x89_c01316{left:484.180000pt;}
.x93_c01316{left:485.154975pt;}
.xcd_c01316{left:487.211629pt;}
.x25_c01316{left:489.060000pt;}
.x48_c01316{left:490.942533pt;}
.x7a_c01316{left:494.094667pt;}
.xc8_c01316{left:496.015920pt;}
.x9_c01316{left:499.480000pt;}
.xb0_c01316{left:504.347989pt;}
.xbb_c01316{left:506.065997pt;}
.xda_c01316{left:507.509333pt;}
.x52_c01316{left:510.615107pt;}
.x9c_c01316{left:515.849565pt;}
.x30_c01316{left:519.251067pt;}
.x71_c01316{left:521.141333pt;}
.xe1_c01316{left:524.089333pt;}
.xce_c01316{left:527.051728pt;}
.x49_c01316{left:529.846533pt;}
.x5d_c01316{left:530.980333pt;}
.x9d_c01316{left:533.914899pt;}
.xbc_c01316{left:534.886123pt;}
.x11_c01316{left:538.243972pt;}
.x41_c01316{left:539.679587pt;}
.xa6_c01316{left:544.170667pt;}
.xa_c01316{left:549.901333pt;}
.x64_c01316{left:551.159173pt;}
.x12_c01316{left:557.247232pt;}
.x42_c01316{left:558.475227pt;}
.x56_c01316{left:559.572573pt;}
.x72_c01316{left:561.702667pt;}
.x9e_c01316{left:564.393565pt;}
.xcf_c01316{left:566.891827pt;}
.x1c_c01316{left:568.986667pt;}
.x7b_c01316{left:570.650667pt;}
.x38_c01316{left:578.078853pt;}
.x65_c01316{left:580.456053pt;}
.x94_c01316{left:583.554332pt;}
.x31_c01316{left:587.652440pt;}
.x57_c01316{left:590.514520pt;}
.x9f_c01316{left:593.153565pt;}
.xa7_c01316{left:594.566667pt;}
.x8a_c01316{left:601.786667pt;}
.xb1_c01316{left:603.208731pt;}
.x4a_c01316{left:608.099867pt;}
.x7c_c01316{left:610.333333pt;}
.xe2_c01316{left:611.681333pt;}
.xbd_c01316{left:614.326787pt;}
.x32_c01316{left:617.406373pt;}
.x26_c01316{left:618.358667pt;}
.xb2_c01316{left:624.084603pt;}
.x39_c01316{left:627.519347pt;}
.x58_c01316{left:629.660640pt;}
.x95_c01316{left:633.953353pt;}
.xd2_c01316{left:635.280000pt;}
.xb_c01316{left:636.769333pt;}
.x27_c01316{left:638.333333pt;}
.x4b_c01316{left:639.289200pt;}
.xdb_c01316{left:640.186667pt;}
.xb3_c01316{left:643.787149pt;}
.x5e_c01316{left:648.350360pt;}
.x13_c01316{left:657.582788pt;}
.x73_c01316{left:660.618667pt;}
.xa0_c01316{left:662.369565pt;}
.xbe_c01316{left:663.484723pt;}
.xd3_c01316{left:665.280000pt;}
.x28_c01316{left:667.602667pt;}
.xa8_c01316{left:672.068000pt;}
.xc2_c01316{left:673.282435pt;}
.x5f_c01316{left:678.811573pt;}
.xe3_c01316{left:680.278667pt;}
.xdc_c01316{left:685.264000pt;}
.x1d_c01316{left:688.020000pt;}
.x74_c01316{left:700.398667pt;}
.xa9_c01316{left:701.608000pt;}
.xc9_c01316{left:704.255253pt;}
.x29_c01316{left:706.490667pt;}
.x4c_c01316{left:708.167867pt;}
.x8b_c01316{left:711.445333pt;}
.x59_c01316{left:717.715733pt;}
.xb4_c01316{left:720.640019pt;}
.x7d_c01316{left:722.406667pt;}
.x3a_c01316{left:726.149667pt;}
.xaa_c01316{left:731.870667pt;}
.x96_c01316{left:734.239387pt;}
.x6c_c01316{left:736.738080pt;}
.x1e_c01316{left:737.937333pt;}
.xa1_c01316{left:742.528232pt;}
.xe4_c01316{left:750.258667pt;}
.x7e_c01316{left:768.910667pt;}
.x1f_c01316{left:780.678667pt;}
.xe5_c01316{left:805.600000pt;}
}





/* 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_c01317 {
    display:none;
  }
  .loading-indicator_c01317.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01317 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_c01317 { 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_c01317" -> "#page-container .classname_c01317")
 */
.pf_c01317 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01317 { /* 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_c01317.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01317 { /* 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_c01317 { /* 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_c01317 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01317 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01317 {overflow:visible;}
  }
}
.c_c01317 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01317 { /* 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_c01317:after { /* webkit #35443 */
  content: '';
}
.t_c01317:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01317 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 */
}
.__c01317 { /* 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_c01317 { /* info for Javascript */
  display:none;
}
.l_c01317 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01317 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01317 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01317: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_c01317 {
    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_c01317.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01317.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_c01317 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01317{font-family:sans-serif;visibility:hidden;}
.sc__c01317{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01317{-webkit-text-stroke:0px transparent;}
}
.y0_c01317{bottom:0.000000px;}
.h1_c01317{height:1250.250000px;}
.h0_c01317{height:1250.370000px;}
.w1_c01317{width:912.000000px;}
.w0_c01317{width:912.300000px;}
.x0_c01317{left:0.000000px;}
@media print{
.y0_c01317{bottom:0.000000pt;}
.h1_c01317{height:1111.333333pt;}
.h0_c01317{height:1111.440000pt;}
.w1_c01317{width:810.666667pt;}
.w0_c01317{width:810.933333pt;}
.x0_c01317{left:0.000000pt;}
}





/* 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_c01318 {
    display:none;
  }
  .loading-indicator_c01318.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01318 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_c01318 { 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_c01318" -> "#page-container .classname_c01318")
 */
.pf_c01318 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01318 { /* 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_c01318.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01318 { /* 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_c01318 { /* 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_c01318 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01318 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01318 {overflow:visible;}
  }
}
.c_c01318 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01318 { /* 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_c01318:after { /* webkit #35443 */
  content: '';
}
.t_c01318:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01318 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 */
}
.__c01318 { /* 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_c01318 { /* info for Javascript */
  display:none;
}
.l_c01318 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01318 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01318 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01318: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_c01318 {
    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_c01318.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01318.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_c01318 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01318{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01318;src:url('chunks/assets/font_c605e72f209fc835e906f064.woff2')format("woff");}.ff1_c01318{font-family:ff1_c01318;line-height:1.000000;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;}
.m27_c01318{transform:matrix(0.092638,-0.001482,0.003999,0.249968,0,0);-ms-transform:matrix(0.092638,-0.001482,0.003999,0.249968,0,0);-webkit-transform:matrix(0.092638,-0.001482,0.003999,0.249968,0,0);}
.m12_c01318{transform:matrix(0.100050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100050,0.000000,0.000000,0.250000,0,0);}
.m2c_c01318{transform:matrix(0.103566,-0.001346,0.003250,0.249979,0,0);-ms-transform:matrix(0.103566,-0.001346,0.003250,0.249979,0,0);-webkit-transform:matrix(0.103566,-0.001346,0.003250,0.249979,0,0);}
.m1c_c01318{transform:matrix(0.118515,-0.001896,0.003999,0.249968,0,0);-ms-transform:matrix(0.118515,-0.001896,0.003999,0.249968,0,0);-webkit-transform:matrix(0.118515,-0.001896,0.003999,0.249968,0,0);}
.m2a_c01318{transform:matrix(0.121669,-0.001947,0.003999,0.249968,0,0);-ms-transform:matrix(0.121669,-0.001947,0.003999,0.249968,0,0);-webkit-transform:matrix(0.121669,-0.001947,0.003999,0.249968,0,0);}
.m1b_c01318{transform:matrix(0.125404,-0.002006,0.003999,0.249968,0,0);-ms-transform:matrix(0.125404,-0.002006,0.003999,0.249968,0,0);-webkit-transform:matrix(0.125404,-0.002006,0.003999,0.249968,0,0);}
.m28_c01318{transform:matrix(0.128304,-0.002053,0.003999,0.249968,0,0);-ms-transform:matrix(0.128304,-0.002053,0.003999,0.249968,0,0);-webkit-transform:matrix(0.128304,-0.002053,0.003999,0.249968,0,0);}
.m34_c01318{transform:matrix(0.152676,-0.003664,0.005998,0.249928,0,0);-ms-transform:matrix(0.152676,-0.003664,0.005998,0.249928,0,0);-webkit-transform:matrix(0.152676,-0.003664,0.005998,0.249928,0,0);}
.m29_c01318{transform:matrix(0.157740,-0.002524,0.003999,0.249968,0,0);-ms-transform:matrix(0.157740,-0.002524,0.003999,0.249968,0,0);-webkit-transform:matrix(0.157740,-0.002524,0.003999,0.249968,0,0);}
.m38_c01318{transform:matrix(0.161798,-0.003883,0.005998,0.249928,0,0);-ms-transform:matrix(0.161798,-0.003883,0.005998,0.249928,0,0);-webkit-transform:matrix(0.161798,-0.003883,0.005998,0.249928,0,0);}
.m2d_c01318{transform:matrix(0.162366,-0.002111,0.003250,0.249979,0,0);-ms-transform:matrix(0.162366,-0.002111,0.003250,0.249979,0,0);-webkit-transform:matrix(0.162366,-0.002111,0.003250,0.249979,0,0);}
.m2f_c01318{transform:matrix(0.166016,-0.002158,0.003250,0.249979,0,0);-ms-transform:matrix(0.166016,-0.002158,0.003250,0.249979,0,0);-webkit-transform:matrix(0.166016,-0.002158,0.003250,0.249979,0,0);}
.m21_c01318{transform:matrix(0.170648,-0.002730,0.003999,0.249968,0,0);-ms-transform:matrix(0.170648,-0.002730,0.003999,0.249968,0,0);-webkit-transform:matrix(0.170648,-0.002730,0.003999,0.249968,0,0);}
.m1_c01318{transform:matrix(0.175671,-0.008968,0.012746,0.249675,0,0);-ms-transform:matrix(0.175671,-0.008968,0.012746,0.249675,0,0);-webkit-transform:matrix(0.175671,-0.008968,0.012746,0.249675,0,0);}
.m1e_c01318{transform:matrix(0.182317,-0.002917,0.003999,0.249968,0,0);-ms-transform:matrix(0.182317,-0.002917,0.003999,0.249968,0,0);-webkit-transform:matrix(0.182317,-0.002917,0.003999,0.249968,0,0);}
.m4_c01318{transform:matrix(0.183526,-0.009369,0.012746,0.249675,0,0);-ms-transform:matrix(0.183526,-0.009369,0.012746,0.249675,0,0);-webkit-transform:matrix(0.183526,-0.009369,0.012746,0.249675,0,0);}
.m3_c01318{transform:matrix(0.183731,-0.009380,0.012746,0.249675,0,0);-ms-transform:matrix(0.183731,-0.009380,0.012746,0.249675,0,0);-webkit-transform:matrix(0.183731,-0.009380,0.012746,0.249675,0,0);}
.m2b_c01318{transform:matrix(0.194209,-0.002525,0.003250,0.249979,0,0);-ms-transform:matrix(0.194209,-0.002525,0.003250,0.249979,0,0);-webkit-transform:matrix(0.194209,-0.002525,0.003250,0.249979,0,0);}
.m1d_c01318{transform:matrix(0.195860,-0.003134,0.003999,0.249968,0,0);-ms-transform:matrix(0.195860,-0.003134,0.003999,0.249968,0,0);-webkit-transform:matrix(0.195860,-0.003134,0.003999,0.249968,0,0);}
.m2e_c01318{transform:matrix(0.196103,-0.002549,0.003250,0.249979,0,0);-ms-transform:matrix(0.196103,-0.002549,0.003250,0.249979,0,0);-webkit-transform:matrix(0.196103,-0.002549,0.003250,0.249979,0,0);}
.m5_c01318{transform:matrix(0.196464,-0.010030,0.012746,0.249675,0,0);-ms-transform:matrix(0.196464,-0.010030,0.012746,0.249675,0,0);-webkit-transform:matrix(0.196464,-0.010030,0.012746,0.249675,0,0);}
.m1f_c01318{transform:matrix(0.196865,-0.003150,0.003999,0.249968,0,0);-ms-transform:matrix(0.196865,-0.003150,0.003999,0.249968,0,0);-webkit-transform:matrix(0.196865,-0.003150,0.003999,0.249968,0,0);}
.m19_c01318{transform:matrix(0.196940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196940,0.000000,0.000000,0.250000,0,0);}
.m2_c01318{transform:matrix(0.197343,-0.010075,0.012746,0.249675,0,0);-ms-transform:matrix(0.197343,-0.010075,0.012746,0.249675,0,0);-webkit-transform:matrix(0.197343,-0.010075,0.012746,0.249675,0,0);}
.m20_c01318{transform:matrix(0.199055,-0.003185,0.003999,0.249968,0,0);-ms-transform:matrix(0.199055,-0.003185,0.003999,0.249968,0,0);-webkit-transform:matrix(0.199055,-0.003185,0.003999,0.249968,0,0);}
.m0_c01318{transform:matrix(0.201378,-0.010281,0.012746,0.249675,0,0);-ms-transform:matrix(0.201378,-0.010281,0.012746,0.249675,0,0);-webkit-transform:matrix(0.201378,-0.010281,0.012746,0.249675,0,0);}
.m24_c01318{transform:matrix(0.204879,-0.003278,0.003999,0.249968,0,0);-ms-transform:matrix(0.204879,-0.003278,0.003999,0.249968,0,0);-webkit-transform:matrix(0.204879,-0.003278,0.003999,0.249968,0,0);}
.m17_c01318{transform:matrix(0.207095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207095,0.000000,0.000000,0.250000,0,0);}
.m26_c01318{transform:matrix(0.208133,-0.003330,0.003999,0.249968,0,0);-ms-transform:matrix(0.208133,-0.003330,0.003999,0.249968,0,0);-webkit-transform:matrix(0.208133,-0.003330,0.003999,0.249968,0,0);}
.m32_c01318{transform:matrix(0.208337,-0.002708,0.003250,0.249979,0,0);-ms-transform:matrix(0.208337,-0.002708,0.003250,0.249979,0,0);-webkit-transform:matrix(0.208337,-0.002708,0.003250,0.249979,0,0);}
.m10_c01318{transform:matrix(0.210275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210275,0.000000,0.000000,0.250000,0,0);}
.m15_c01318{transform:matrix(0.210830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210830,0.000000,0.000000,0.250000,0,0);}
.m31_c01318{transform:matrix(0.212812,-0.002767,0.003250,0.249979,0,0);-ms-transform:matrix(0.212812,-0.002767,0.003250,0.249979,0,0);-webkit-transform:matrix(0.212812,-0.002767,0.003250,0.249979,0,0);}
.m6_c01318{transform:matrix(0.216218,-0.011038,0.012746,0.249675,0,0);-ms-transform:matrix(0.216218,-0.011038,0.012746,0.249675,0,0);-webkit-transform:matrix(0.216218,-0.011038,0.012746,0.249675,0,0);}
.m11_c01318{transform:matrix(0.220630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220630,0.000000,0.000000,0.250000,0,0);}
.m23_c01318{transform:matrix(0.224116,-0.003586,0.003999,0.249968,0,0);-ms-transform:matrix(0.224116,-0.003586,0.003999,0.249968,0,0);-webkit-transform:matrix(0.224116,-0.003586,0.003999,0.249968,0,0);}
.m14_c01318{transform:matrix(0.225990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225990,0.000000,0.000000,0.250000,0,0);}
.m36_c01318{transform:matrix(0.227684,-0.005464,0.005998,0.249928,0,0);-ms-transform:matrix(0.227684,-0.005464,0.005998,0.249928,0,0);-webkit-transform:matrix(0.227684,-0.005464,0.005998,0.249928,0,0);}
.m16_c01318{transform:matrix(0.230100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230100,0.000000,0.000000,0.250000,0,0);}
.mf_c01318{transform:matrix(0.248925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248925,0.000000,0.000000,0.250000,0,0);}
.m37_c01318{transform:matrix(0.253407,-0.006082,0.005998,0.249928,0,0);-ms-transform:matrix(0.253407,-0.006082,0.005998,0.249928,0,0);-webkit-transform:matrix(0.253407,-0.006082,0.005998,0.249928,0,0);}
.m8_c01318{transform:matrix(0.257679,-0.013155,0.012746,0.249675,0,0);-ms-transform:matrix(0.257679,-0.013155,0.012746,0.249675,0,0);-webkit-transform:matrix(0.257679,-0.013155,0.012746,0.249675,0,0);}
.m35_c01318{transform:matrix(0.258411,-0.006202,0.005998,0.249928,0,0);-ms-transform:matrix(0.258411,-0.006202,0.005998,0.249928,0,0);-webkit-transform:matrix(0.258411,-0.006202,0.005998,0.249928,0,0);}
.m1a_c01318{transform:matrix(0.269440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269440,0.000000,0.000000,0.250000,0,0);}
.me_c01318{transform:matrix(0.270540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270540,0.000000,0.000000,0.250000,0,0);}
.m18_c01318{transform:matrix(0.279430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279430,0.000000,0.000000,0.250000,0,0);}
.m25_c01318{transform:matrix(0.279764,-0.004476,0.003999,0.249968,0,0);-ms-transform:matrix(0.279764,-0.004476,0.003999,0.249968,0,0);-webkit-transform:matrix(0.279764,-0.004476,0.003999,0.249968,0,0);}
.m30_c01318{transform:matrix(0.280091,-0.003641,0.003250,0.249979,0,0);-ms-transform:matrix(0.280091,-0.003641,0.003250,0.249979,0,0);-webkit-transform:matrix(0.280091,-0.003641,0.003250,0.249979,0,0);}
.ma_c01318{transform:matrix(0.288389,-0.014723,0.012746,0.249675,0,0);-ms-transform:matrix(0.288389,-0.014723,0.012746,0.249675,0,0);-webkit-transform:matrix(0.288389,-0.014723,0.012746,0.249675,0,0);}
.m33_c01318{transform:matrix(0.307831,-0.007388,0.005998,0.249928,0,0);-ms-transform:matrix(0.307831,-0.007388,0.005998,0.249928,0,0);-webkit-transform:matrix(0.307831,-0.007388,0.005998,0.249928,0,0);}
.mc_c01318{transform:matrix(0.317307,-0.016199,0.012746,0.249675,0,0);-ms-transform:matrix(0.317307,-0.016199,0.012746,0.249675,0,0);-webkit-transform:matrix(0.317307,-0.016199,0.012746,0.249675,0,0);}
.m7_c01318{transform:matrix(0.318470,-0.016258,0.012746,0.249675,0,0);-ms-transform:matrix(0.318470,-0.016258,0.012746,0.249675,0,0);-webkit-transform:matrix(0.318470,-0.016258,0.012746,0.249675,0,0);}
.m13_c01318{transform:matrix(0.322120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322120,0.000000,0.000000,0.250000,0,0);}
.md_c01318{transform:matrix(0.322210,-0.016449,0.012746,0.249675,0,0);-ms-transform:matrix(0.322210,-0.016449,0.012746,0.249675,0,0);-webkit-transform:matrix(0.322210,-0.016449,0.012746,0.249675,0,0);}
.m9_c01318{transform:matrix(0.323698,-0.016525,0.012746,0.249675,0,0);-ms-transform:matrix(0.323698,-0.016525,0.012746,0.249675,0,0);-webkit-transform:matrix(0.323698,-0.016525,0.012746,0.249675,0,0);}
.mb_c01318{transform:matrix(0.395850,-0.020209,0.012746,0.249675,0,0);-ms-transform:matrix(0.395850,-0.020209,0.012746,0.249675,0,0);-webkit-transform:matrix(0.395850,-0.020209,0.012746,0.249675,0,0);}
.m22_c01318{transform:matrix(0.611132,-0.009778,0.003999,0.249968,0,0);-ms-transform:matrix(0.611132,-0.009778,0.003999,0.249968,0,0);-webkit-transform:matrix(0.611132,-0.009778,0.003999,0.249968,0,0);}
.v0_c01318{vertical-align:0.000000px;}
.ls0_c01318{letter-spacing:0.000000px;}
.sc__c01318{text-shadow:none;}
.sc0_c01318{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__c01318{-webkit-text-stroke:0px transparent;}
.sc0_c01318{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01318{word-spacing:0.000000px;}
._0_c01318{margin-left:-7.267142px;}
.fc0_c01318{color:transparent;}
.fs1_c01318{font-size:60.018057px;}
.fs6_c01318{font-size:66.000000px;}
.fs2_c01318{font-size:72.000000px;}
.fs3_c01318{font-size:78.000000px;}
.fsa_c01318{font-size:78.022461px;}
.fs5_c01318{font-size:84.000000px;}
.fs0_c01318{font-size:96.028892px;}
.fs7_c01318{font-size:102.013055px;}
.fs9_c01318{font-size:114.009633px;}
.fs8_c01318{font-size:120.015359px;}
.fs4_c01318{font-size:132.000000px;}
.y0_c01318{bottom:0.000000px;}
.y34_c01318{bottom:526.786500px;}
.y35_c01318{bottom:527.858256px;}
.y36_c01318{bottom:528.602664px;}
.y37_c01318{bottom:531.770304px;}
.y38_c01318{bottom:532.832880px;}
.y39_c01318{bottom:534.976680px;}
.y2b_c01318{bottom:559.173000px;}
.y2c_c01318{bottom:559.663678px;}
.y2d_c01318{bottom:560.068518px;}
.y2e_c01318{bottom:560.939700px;}
.y2f_c01318{bottom:561.452121px;}
.y30_c01318{bottom:562.238303px;}
.y31_c01318{bottom:562.533123px;}
.y32_c01318{bottom:562.820728px;}
.y33_c01318{bottom:564.368697px;}
.y27_c01318{bottom:602.908740px;}
.y28_c01318{bottom:604.137888px;}
.y29_c01318{bottom:605.389116px;}
.y2a_c01318{bottom:611.198712px;}
.y1b_c01318{bottom:633.153000px;}
.y1c_c01318{bottom:633.860688px;}
.y1d_c01318{bottom:634.363824px;}
.y1e_c01318{bottom:635.780040px;}
.y1f_c01318{bottom:636.117864px;}
.y20_c01318{bottom:637.888776px;}
.y21_c01318{bottom:639.646872px;}
.y22_c01318{bottom:640.381800px;}
.y23_c01318{bottom:642.144552px;}
.y24_c01318{bottom:643.194168px;}
.y25_c01318{bottom:644.274024px;}
.y26_c01318{bottom:644.623896px;}
.y18_c01318{bottom:850.236000px;}
.y19_c01318{bottom:851.973000px;}
.y1a_c01318{bottom:853.425000px;}
.y12_c01318{bottom:883.443000px;}
.y13_c01318{bottom:884.056500px;}
.y14_c01318{bottom:885.108000px;}
.y15_c01318{bottom:886.026000px;}
.y16_c01318{bottom:886.642500px;}
.y17_c01318{bottom:887.572500px;}
.y11_c01318{bottom:917.749500px;}
.y10_c01318{bottom:946.756500px;}
.yf_c01318{bottom:1017.489000px;}
.y8_c01318{bottom:1051.417182px;}
.y9_c01318{bottom:1054.377314px;}
.ya_c01318{bottom:1056.003636px;}
.yb_c01318{bottom:1060.612473px;}
.yc_c01318{bottom:1062.400926px;}
.yd_c01318{bottom:1065.275594px;}
.ye_c01318{bottom:1068.703145px;}
.y1_c01318{bottom:1087.063500px;}
.y2_c01318{bottom:1089.957495px;}
.y3_c01318{bottom:1091.515953px;}
.y4_c01318{bottom:1094.809278px;}
.y5_c01318{bottom:1098.734646px;}
.y6_c01318{bottom:1100.976249px;}
.y7_c01318{bottom:1104.991887px;}
.h3_c01318{height:60.018057px;}
.h8_c01318{height:66.000000px;}
.h4_c01318{height:72.000000px;}
.h5_c01318{height:78.000000px;}
.hc_c01318{height:78.022461px;}
.h7_c01318{height:84.000000px;}
.h2_c01318{height:96.028892px;}
.h9_c01318{height:102.013055px;}
.hb_c01318{height:114.009633px;}
.ha_c01318{height:120.015359px;}
.h6_c01318{height:132.000000px;}
.h1_c01318{height:1250.250000px;}
.h0_c01318{height:1250.370000px;}
.w1_c01318{width:912.000000px;}
.w0_c01318{width:912.300000px;}
.x0_c01318{left:0.000000px;}
.x1_c01318{left:65.112000px;}
.xe_c01318{left:77.881500px;}
.x16_c01318{left:79.591500px;}
.x2d_c01318{left:80.857500px;}
.x26_c01318{left:87.168000px;}
.x2_c01318{left:121.800255px;}
.x17_c01318{left:123.822000px;}
.x27_c01318{left:124.912500px;}
.x3_c01318{left:152.327697px;}
.x18_c01318{left:155.268000px;}
.x2e_c01318{left:156.531000px;}
.xf_c01318{left:196.783500px;}
.xc_c01318{left:214.650000px;}
.xd_c01318{left:215.730000px;}
.x4_c01318{left:216.838122px;}
.x13_c01318{left:219.739500px;}
.x22_c01318{left:221.314056px;}
.x28_c01318{left:223.068000px;}
.x8_c01318{left:238.752195px;}
.x19_c01318{left:243.781500px;}
.x10_c01318{left:262.377000px;}
.x1a_c01318{left:264.895500px;}
.x9_c01318{left:272.460507px;}
.x2f_c01318{left:288.516000px;}
.x5_c01318{left:293.729154px;}
.x11_c01318{left:306.393000px;}
.x23_c01318{left:309.107364px;}
.x29_c01318{left:322.960500px;}
.xa_c01318{left:326.651248px;}
.x14_c01318{left:328.278000px;}
.x30_c01318{left:332.790000px;}
.x6_c01318{left:337.638201px;}
.x2a_c01318{left:345.639000px;}
.x2b_c01318{left:367.762500px;}
.x12_c01318{left:372.799500px;}
.x1b_c01318{left:375.577500px;}
.xb_c01318{left:391.259989px;}
.x24_c01318{left:398.468220px;}
.x7_c01318{left:416.297463px;}
.x15_c01318{left:418.983000px;}
.x31_c01318{left:422.115000px;}
.x1c_c01318{left:485.458500px;}
.x2c_c01318{left:486.837000px;}
.x1d_c01318{left:531.391500px;}
.x1e_c01318{left:641.563500px;}
.x1f_c01318{left:707.164500px;}
.x20_c01318{left:774.655500px;}
.x21_c01318{left:796.522500px;}
.x25_c01318{left:813.424992px;}
@media print{
.v0_c01318{vertical-align:0.000000pt;}
.ls0_c01318{letter-spacing:0.000000pt;}
.ws0_c01318{word-spacing:0.000000pt;}
._0_c01318{margin-left:-6.459681pt;}
.fs1_c01318{font-size:53.349384pt;}
.fs6_c01318{font-size:58.666667pt;}
.fs2_c01318{font-size:64.000000pt;}
.fs3_c01318{font-size:69.333333pt;}
.fsa_c01318{font-size:69.353298pt;}
.fs5_c01318{font-size:74.666667pt;}
.fs0_c01318{font-size:85.359015pt;}
.fs7_c01318{font-size:90.678271pt;}
.fs9_c01318{font-size:101.341896pt;}
.fs8_c01318{font-size:106.680319pt;}
.fs4_c01318{font-size:117.333333pt;}
.y0_c01318{bottom:0.000000pt;}
.y34_c01318{bottom:468.254667pt;}
.y35_c01318{bottom:469.207339pt;}
.y36_c01318{bottom:469.869035pt;}
.y37_c01318{bottom:472.684715pt;}
.y38_c01318{bottom:473.629227pt;}
.y39_c01318{bottom:475.534827pt;}
.y2b_c01318{bottom:497.042667pt;}
.y2c_c01318{bottom:497.478825pt;}
.y2d_c01318{bottom:497.838683pt;}
.y2e_c01318{bottom:498.613067pt;}
.y2f_c01318{bottom:499.068552pt;}
.y30_c01318{bottom:499.767380pt;}
.y31_c01318{bottom:500.029443pt;}
.y32_c01318{bottom:500.285092pt;}
.y33_c01318{bottom:501.661064pt;}
.y27_c01318{bottom:535.918880pt;}
.y28_c01318{bottom:537.011456pt;}
.y29_c01318{bottom:538.123659pt;}
.y2a_c01318{bottom:543.287744pt;}
.y1b_c01318{bottom:562.802667pt;}
.y1c_c01318{bottom:563.431723pt;}
.y1d_c01318{bottom:563.878955pt;}
.y1e_c01318{bottom:565.137813pt;}
.y1f_c01318{bottom:565.438101pt;}
.y20_c01318{bottom:567.012245pt;}
.y21_c01318{bottom:568.574997pt;}
.y22_c01318{bottom:569.228267pt;}
.y23_c01318{bottom:570.795157pt;}
.y24_c01318{bottom:571.728149pt;}
.y25_c01318{bottom:572.688021pt;}
.y26_c01318{bottom:572.999019pt;}
.y18_c01318{bottom:755.765333pt;}
.y19_c01318{bottom:757.309333pt;}
.y1a_c01318{bottom:758.600000pt;}
.y12_c01318{bottom:785.282667pt;}
.y13_c01318{bottom:785.828000pt;}
.y14_c01318{bottom:786.762667pt;}
.y15_c01318{bottom:787.578667pt;}
.y16_c01318{bottom:788.126667pt;}
.y17_c01318{bottom:788.953333pt;}
.y11_c01318{bottom:815.777333pt;}
.y10_c01318{bottom:841.561333pt;}
.yf_c01318{bottom:904.434667pt;}
.y8_c01318{bottom:934.593051pt;}
.y9_c01318{bottom:937.224279pt;}
.ya_c01318{bottom:938.669899pt;}
.yb_c01318{bottom:942.766643pt;}
.yc_c01318{bottom:944.356379pt;}
.yd_c01318{bottom:946.911639pt;}
.ye_c01318{bottom:949.958351pt;}
.y1_c01318{bottom:966.278667pt;}
.y2_c01318{bottom:968.851107pt;}
.y3_c01318{bottom:970.236403pt;}
.y4_c01318{bottom:973.163803pt;}
.y5_c01318{bottom:976.653019pt;}
.y6_c01318{bottom:978.645555pt;}
.y7_c01318{bottom:982.215011pt;}
.h3_c01318{height:53.349384pt;}
.h8_c01318{height:58.666667pt;}
.h4_c01318{height:64.000000pt;}
.h5_c01318{height:69.333333pt;}
.hc_c01318{height:69.353298pt;}
.h7_c01318{height:74.666667pt;}
.h2_c01318{height:85.359015pt;}
.h9_c01318{height:90.678271pt;}
.hb_c01318{height:101.341896pt;}
.ha_c01318{height:106.680319pt;}
.h6_c01318{height:117.333333pt;}
.h1_c01318{height:1111.333333pt;}
.h0_c01318{height:1111.440000pt;}
.w1_c01318{width:810.666667pt;}
.w0_c01318{width:810.933333pt;}
.x0_c01318{left:0.000000pt;}
.x1_c01318{left:57.877333pt;}
.xe_c01318{left:69.228000pt;}
.x16_c01318{left:70.748000pt;}
.x2d_c01318{left:71.873333pt;}
.x26_c01318{left:77.482667pt;}
.x2_c01318{left:108.266893pt;}
.x17_c01318{left:110.064000pt;}
.x27_c01318{left:111.033333pt;}
.x3_c01318{left:135.402397pt;}
.x18_c01318{left:138.016000pt;}
.x2e_c01318{left:139.138667pt;}
.xf_c01318{left:174.918667pt;}
.xc_c01318{left:190.800000pt;}
.xd_c01318{left:191.760000pt;}
.x4_c01318{left:192.744997pt;}
.x13_c01318{left:195.324000pt;}
.x22_c01318{left:196.723605pt;}
.x28_c01318{left:198.282667pt;}
.x8_c01318{left:212.224173pt;}
.x19_c01318{left:216.694667pt;}
.x10_c01318{left:233.224000pt;}
.x1a_c01318{left:235.462667pt;}
.x9_c01318{left:242.187117pt;}
.x2f_c01318{left:256.458667pt;}
.x5_c01318{left:261.092581pt;}
.x11_c01318{left:272.349333pt;}
.x23_c01318{left:274.762101pt;}
.x29_c01318{left:287.076000pt;}
.xa_c01318{left:290.356665pt;}
.x14_c01318{left:291.802667pt;}
.x30_c01318{left:295.813333pt;}
.x6_c01318{left:300.122845pt;}
.x2a_c01318{left:307.234667pt;}
.x2b_c01318{left:326.900000pt;}
.x12_c01318{left:331.377333pt;}
.x1b_c01318{left:333.846667pt;}
.xb_c01318{left:347.786657pt;}
.x24_c01318{left:354.193973pt;}
.x7_c01318{left:370.042189pt;}
.x15_c01318{left:372.429333pt;}
.x31_c01318{left:375.213333pt;}
.x1c_c01318{left:431.518667pt;}
.x2c_c01318{left:432.744000pt;}
.x1d_c01318{left:472.348000pt;}
.x1e_c01318{left:570.278667pt;}
.x1f_c01318{left:628.590667pt;}
.x20_c01318{left:688.582667pt;}
.x21_c01318{left:708.020000pt;}
.x25_c01318{left:723.044437pt;}
}





/* 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_c01319 {
    display:none;
  }
  .loading-indicator_c01319.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01319 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_c01319 { 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_c01319" -> "#page-container .classname_c01319")
 */
.pf_c01319 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01319 { /* 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_c01319.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01319 { /* 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_c01319 { /* 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_c01319 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01319 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01319 {overflow:visible;}
  }
}
.c_c01319 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01319 { /* 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_c01319:after { /* webkit #35443 */
  content: '';
}
.t_c01319:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01319 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 */
}
.__c01319 { /* 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_c01319 { /* info for Javascript */
  display:none;
}
.l_c01319 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01319 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01319 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01319: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_c01319 {
    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_c01319.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01319.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_c01319 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01319{font-family:sans-serif;visibility:hidden;}
.sc__c01319{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01319{-webkit-text-stroke:0px transparent;}
}
.y0_c01319{bottom:0.000000px;}
.h1_c01319{height:1250.250000px;}
.h0_c01319{height:1250.370000px;}
.w1_c01319{width:912.000000px;}
.w0_c01319{width:912.300000px;}
.x0_c01319{left:0.000000px;}
@media print{
.y0_c01319{bottom:0.000000pt;}
.h1_c01319{height:1111.333333pt;}
.h0_c01319{height:1111.440000pt;}
.w1_c01319{width:810.666667pt;}
.w0_c01319{width:810.933333pt;}
.x0_c01319{left:0.000000pt;}
}





/* 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_c01320 {
    display:none;
  }
  .loading-indicator_c01320.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01320 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_c01320 { 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_c01320" -> "#page-container .classname_c01320")
 */
.pf_c01320 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01320 { /* 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_c01320.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01320 { /* 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_c01320 { /* 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_c01320 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01320 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01320 {overflow:visible;}
  }
}
.c_c01320 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01320 { /* 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_c01320:after { /* webkit #35443 */
  content: '';
}
.t_c01320:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01320 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 */
}
.__c01320 { /* 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_c01320 { /* info for Javascript */
  display:none;
}
.l_c01320 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01320 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01320 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01320: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_c01320 {
    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_c01320.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01320.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_c01320 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01320{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01320;src:url('chunks/assets/font_7ef351174269f1343c6a59b1.woff2')format("woff");}.ff1_c01320{font-family:ff1_c01320;line-height:1.000000;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;}
.m1_c01320{transform:matrix(0.188551,0.005091,-0.006748,0.249909,0,0);-ms-transform:matrix(0.188551,0.005091,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.188551,0.005091,-0.006748,0.249909,0,0);}
.m4_c01320{transform:matrix(0.218810,0.005908,-0.006748,0.249909,0,0);-ms-transform:matrix(0.218810,0.005908,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.218810,0.005908,-0.006748,0.249909,0,0);}
.m0_c01320{transform:matrix(0.227747,0.006149,-0.006748,0.249909,0,0);-ms-transform:matrix(0.227747,0.006149,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.227747,0.006149,-0.006748,0.249909,0,0);}
.m3_c01320{transform:matrix(0.228427,0.006168,-0.006748,0.249909,0,0);-ms-transform:matrix(0.228427,0.006168,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.228427,0.006168,-0.006748,0.249909,0,0);}
.md_c01320{transform:matrix(0.241782,0.006528,-0.006748,0.249909,0,0);-ms-transform:matrix(0.241782,0.006528,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.241782,0.006528,-0.006748,0.249909,0,0);}
.m2_c01320{transform:matrix(0.248025,0.006697,-0.006748,0.249909,0,0);-ms-transform:matrix(0.248025,0.006697,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.248025,0.006697,-0.006748,0.249909,0,0);}
.m5_c01320{transform:matrix(0.250739,0.006770,-0.006748,0.249909,0,0);-ms-transform:matrix(0.250739,0.006770,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.250739,0.006770,-0.006748,0.249909,0,0);}
.mb_c01320{transform:matrix(0.322033,0.008695,-0.006748,0.249909,0,0);-ms-transform:matrix(0.322033,0.008695,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.322033,0.008695,-0.006748,0.249909,0,0);}
.m9_c01320{transform:matrix(0.333084,0.008993,-0.006748,0.249909,0,0);-ms-transform:matrix(0.333084,0.008993,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.333084,0.008993,-0.006748,0.249909,0,0);}
.mc_c01320{transform:matrix(0.346749,0.009362,-0.006748,0.249909,0,0);-ms-transform:matrix(0.346749,0.009362,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.346749,0.009362,-0.006748,0.249909,0,0);}
.m6_c01320{transform:matrix(0.354431,0.009570,-0.006748,0.249909,0,0);-ms-transform:matrix(0.354431,0.009570,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.354431,0.009570,-0.006748,0.249909,0,0);}
.m8_c01320{transform:matrix(0.371300,0.010025,-0.006748,0.249909,0,0);-ms-transform:matrix(0.371300,0.010025,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.371300,0.010025,-0.006748,0.249909,0,0);}
.ma_c01320{transform:matrix(0.380541,0.010275,-0.006748,0.249909,0,0);-ms-transform:matrix(0.380541,0.010275,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.380541,0.010275,-0.006748,0.249909,0,0);}
.m7_c01320{transform:matrix(0.422366,0.011404,-0.006748,0.249909,0,0);-ms-transform:matrix(0.422366,0.011404,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.422366,0.011404,-0.006748,0.249909,0,0);}
.v0_c01320{vertical-align:0.000000px;}
.ls0_c01320{letter-spacing:0.000000px;}
.sc__c01320{text-shadow:none;}
.sc0_c01320{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__c01320{-webkit-text-stroke:0px transparent;}
.sc0_c01320{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01320{word-spacing:0.000000px;}
.fc0_c01320{color:transparent;}
.fs1_c01320{font-size:54.019679px;}
.fs0_c01320{font-size:84.030612px;}
.y0_c01320{bottom:0.000000px;}
.ye_c01320{bottom:632.014233px;}
.yd_c01320{bottom:632.746300px;}
.yc_c01320{bottom:633.848451px;}
.yb_c01320{bottom:635.186404px;}
.ya_c01320{bottom:636.255754px;}
.y9_c01320{bottom:638.375137px;}
.y8_c01320{bottom:639.342804px;}
.y7_c01320{bottom:640.707159px;}
.y6_c01320{bottom:665.153153px;}
.y5_c01320{bottom:666.830055px;}
.y4_c01320{bottom:668.397810px;}
.y3_c01320{bottom:670.215126px;}
.y2_c01320{bottom:671.324016px;}
.y1_c01320{bottom:672.852000px;}
.h3_c01320{height:54.019679px;}
.h2_c01320{height:84.030612px;}
.h1_c01320{height:1250.250000px;}
.h0_c01320{height:1250.370000px;}
.w1_c01320{width:912.000000px;}
.w0_c01320{width:912.300000px;}
.x0_c01320{left:0.000000px;}
.x1_c01320{left:112.693500px;}
.x2_c01320{left:169.285500px;}
.x7_c01320{left:208.920902px;}
.x3_c01320{left:210.355500px;}
.x4_c01320{left:277.663500px;}
.x8_c01320{left:297.257070px;}
.x5_c01320{left:335.728500px;}
.x9_c01320{left:341.810675px;}
.x6_c01320{left:397.836000px;}
.xa_c01320{left:443.470896px;}
.xb_c01320{left:473.975867px;}
@media print{
.v0_c01320{vertical-align:0.000000pt;}
.ls0_c01320{letter-spacing:0.000000pt;}
.ws0_c01320{word-spacing:0.000000pt;}
.fs1_c01320{font-size:48.017493pt;}
.fs0_c01320{font-size:74.693878pt;}
.y0_c01320{bottom:0.000000pt;}
.ye_c01320{bottom:561.790429pt;}
.yd_c01320{bottom:562.441156pt;}
.yc_c01320{bottom:563.420845pt;}
.yb_c01320{bottom:564.610137pt;}
.ya_c01320{bottom:565.560671pt;}
.y9_c01320{bottom:567.444567pt;}
.y8_c01320{bottom:568.304715pt;}
.y7_c01320{bottom:569.517475pt;}
.y6_c01320{bottom:591.247247pt;}
.y5_c01320{bottom:592.737827pt;}
.y4_c01320{bottom:594.131387pt;}
.y3_c01320{bottom:595.746779pt;}
.y2_c01320{bottom:596.732459pt;}
.y1_c01320{bottom:598.090667pt;}
.h3_c01320{height:48.017493pt;}
.h2_c01320{height:74.693878pt;}
.h1_c01320{height:1111.333333pt;}
.h0_c01320{height:1111.440000pt;}
.w1_c01320{width:810.666667pt;}
.w0_c01320{width:810.933333pt;}
.x0_c01320{left:0.000000pt;}
.x1_c01320{left:100.172000pt;}
.x2_c01320{left:150.476000pt;}
.x7_c01320{left:185.707468pt;}
.x3_c01320{left:186.982667pt;}
.x4_c01320{left:246.812000pt;}
.x8_c01320{left:264.228507pt;}
.x5_c01320{left:298.425333pt;}
.x9_c01320{left:303.831711pt;}
.x6_c01320{left:353.632000pt;}
.xa_c01320{left:394.196352pt;}
.xb_c01320{left:421.311881pt;}
}





/* 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_c01321 {
    display:none;
  }
  .loading-indicator_c01321.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01321 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_c01321 { 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_c01321" -> "#page-container .classname_c01321")
 */
.pf_c01321 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01321 { /* 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_c01321.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01321 { /* 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_c01321 { /* 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_c01321 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01321 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01321 {overflow:visible;}
  }
}
.c_c01321 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01321 { /* 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_c01321:after { /* webkit #35443 */
  content: '';
}
.t_c01321:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01321 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 */
}
.__c01321 { /* 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_c01321 { /* info for Javascript */
  display:none;
}
.l_c01321 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01321 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01321 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01321: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_c01321 {
    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_c01321.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01321.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_c01321 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01321{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01321;src:url('chunks/assets/font_74d7e987f08e4505b74f4479.woff2')format("woff");}.ff1_c01321{font-family:ff1_c01321;line-height:1.000000;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;}
.m0_c01321{transform:matrix(0.031820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.031820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.031820,0.000000,0.000000,0.250000,0,0);}
.m1_c01321{transform:matrix(0.258290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258290,0.000000,0.000000,0.250000,0,0);}
.m4_c01321{transform:matrix(0.420475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420475,0.000000,0.000000,0.250000,0,0);}
.m2_c01321{transform:matrix(0.427390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427390,0.000000,0.000000,0.250000,0,0);}
.m3_c01321{transform:matrix(1.718680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.718680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.718680,0.000000,0.000000,0.250000,0,0);}
.v0_c01321{vertical-align:0.000000px;}
.ls0_c01321{letter-spacing:0.000000px;}
.sc__c01321{text-shadow:none;}
.sc0_c01321{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__c01321{-webkit-text-stroke:0px transparent;}
.sc0_c01321{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01321{word-spacing:0.000000px;}
.fc0_c01321{color:transparent;}
.fs2_c01321{font-size:18.000000px;}
.fs0_c01321{font-size:24.000000px;}
.fs1_c01321{font-size:42.000000px;}
.y0_c01321{bottom:0.000000px;}
.y3_c01321{bottom:1102.828500px;}
.y2_c01321{bottom:1107.118500px;}
.y1_c01321{bottom:1110.783000px;}
.h4_c01321{height:18.000000px;}
.h2_c01321{height:24.000000px;}
.h3_c01321{height:42.000000px;}
.h1_c01321{height:1250.250000px;}
.h0_c01321{height:1250.370000px;}
.w1_c01321{width:912.000000px;}
.w0_c01321{width:912.300000px;}
.x0_c01321{left:0.000000px;}
.x4_c01321{left:314.820000px;}
.x3_c01321{left:333.180000px;}
.x1_c01321{left:359.370000px;}
.x2_c01321{left:372.330000px;}
.x5_c01321{left:378.810000px;}
@media print{
.v0_c01321{vertical-align:0.000000pt;}
.ls0_c01321{letter-spacing:0.000000pt;}
.ws0_c01321{word-spacing:0.000000pt;}
.fs2_c01321{font-size:16.000000pt;}
.fs0_c01321{font-size:21.333333pt;}
.fs1_c01321{font-size:37.333333pt;}
.y0_c01321{bottom:0.000000pt;}
.y3_c01321{bottom:980.292000pt;}
.y2_c01321{bottom:984.105333pt;}
.y1_c01321{bottom:987.362667pt;}
.h4_c01321{height:16.000000pt;}
.h2_c01321{height:21.333333pt;}
.h3_c01321{height:37.333333pt;}
.h1_c01321{height:1111.333333pt;}
.h0_c01321{height:1111.440000pt;}
.w1_c01321{width:810.666667pt;}
.w0_c01321{width:810.933333pt;}
.x0_c01321{left:0.000000pt;}
.x4_c01321{left:279.840000pt;}
.x3_c01321{left:296.160000pt;}
.x1_c01321{left:319.440000pt;}
.x2_c01321{left:330.960000pt;}
.x5_c01321{left:336.720000pt;}
}





/* 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_c01322 {
    display:none;
  }
  .loading-indicator_c01322.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01322 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_c01322 { 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_c01322" -> "#page-container .classname_c01322")
 */
.pf_c01322 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01322 { /* 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_c01322.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01322 { /* 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_c01322 { /* 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_c01322 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01322 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01322 {overflow:visible;}
  }
}
.c_c01322 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01322 { /* 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_c01322:after { /* webkit #35443 */
  content: '';
}
.t_c01322:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01322 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 */
}
.__c01322 { /* 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_c01322 { /* info for Javascript */
  display:none;
}
.l_c01322 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01322 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01322 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01322: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_c01322 {
    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_c01322.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01322.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_c01322 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01322{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01322;src:url('chunks/assets/font_fabf4b590f7fb32aea93ffb2.woff2')format("woff");}.ff1_c01322{font-family:ff1_c01322;line-height:1.000000;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;}
.mff_c01322{transform:matrix(0.008894,0.000098,-0.002750,0.249985,0,0);-ms-transform:matrix(0.008894,0.000098,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.008894,0.000098,-0.002750,0.249985,0,0);}
.me5_c01322{transform:matrix(0.018139,0.000200,-0.002750,0.249985,0,0);-ms-transform:matrix(0.018139,0.000200,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.018139,0.000200,-0.002750,0.249985,0,0);}
.m114_c01322{transform:matrix(0.035572,0.000427,-0.003000,0.249982,0,0);-ms-transform:matrix(0.035572,0.000427,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.035572,0.000427,-0.003000,0.249982,0,0);}
.mf_c01322{transform:matrix(0.066882,0.000669,-0.002500,0.249988,0,0);-ms-transform:matrix(0.066882,0.000669,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.066882,0.000669,-0.002500,0.249988,0,0);}
.md1_c01322{transform:matrix(0.132397,0.001456,-0.002750,0.249985,0,0);-ms-transform:matrix(0.132397,0.001456,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.132397,0.001456,-0.002750,0.249985,0,0);}
.mcd_c01322{transform:matrix(0.135582,0.001491,-0.002750,0.249985,0,0);-ms-transform:matrix(0.135582,0.001491,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.135582,0.001491,-0.002750,0.249985,0,0);}
.mca_c01322{transform:matrix(0.136152,0.001498,-0.002750,0.249985,0,0);-ms-transform:matrix(0.136152,0.001498,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.136152,0.001498,-0.002750,0.249985,0,0);}
.md0_c01322{transform:matrix(0.137892,0.001517,-0.002750,0.249985,0,0);-ms-transform:matrix(0.137892,0.001517,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.137892,0.001517,-0.002750,0.249985,0,0);}
.mcb_c01322{transform:matrix(0.140347,0.001544,-0.002750,0.249985,0,0);-ms-transform:matrix(0.140347,0.001544,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.140347,0.001544,-0.002750,0.249985,0,0);}
.mce_c01322{transform:matrix(0.142206,0.001564,-0.002750,0.249985,0,0);-ms-transform:matrix(0.142206,0.001564,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.142206,0.001564,-0.002750,0.249985,0,0);}
.mcc_c01322{transform:matrix(0.145116,0.001596,-0.002750,0.249985,0,0);-ms-transform:matrix(0.145116,0.001596,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.145116,0.001596,-0.002750,0.249985,0,0);}
.m2c_c01322{transform:matrix(0.145645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145645,0.000000,0.000000,0.250000,0,0);}
.m29_c01322{transform:matrix(0.148985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148985,0.000000,0.000000,0.250000,0,0);}
.m2f_c01322{transform:matrix(0.149595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149595,0.000000,0.000000,0.250000,0,0);}
.mc9_c01322{transform:matrix(0.150691,0.001658,-0.002750,0.249985,0,0);-ms-transform:matrix(0.150691,0.001658,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.150691,0.001658,-0.002750,0.249985,0,0);}
.m2d_c01322{transform:matrix(0.151530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151530,0.000000,0.000000,0.250000,0,0);}
.md5_c01322{transform:matrix(0.151711,0.001669,-0.002750,0.249985,0,0);-ms-transform:matrix(0.151711,0.001669,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.151711,0.001669,-0.002750,0.249985,0,0);}
.m2b_c01322{transform:matrix(0.152155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152155,0.000000,0.000000,0.250000,0,0);}
.m11a_c01322{transform:matrix(0.153445,0.001228,-0.002000,0.249992,0,0);-ms-transform:matrix(0.153445,0.001228,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.153445,0.001228,-0.002000,0.249992,0,0);}
.m74_c01322{transform:matrix(0.153945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153945,0.000000,0.000000,0.250000,0,0);}
.m11c_c01322{transform:matrix(0.155185,0.001241,-0.002000,0.249992,0,0);-ms-transform:matrix(0.155185,0.001241,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.155185,0.001241,-0.002000,0.249992,0,0);}
.mf2_c01322{transform:matrix(0.155841,0.001714,-0.002750,0.249985,0,0);-ms-transform:matrix(0.155841,0.001714,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.155841,0.001714,-0.002750,0.249985,0,0);}
.m11d_c01322{transform:matrix(0.156285,0.001250,-0.002000,0.249992,0,0);-ms-transform:matrix(0.156285,0.001250,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.156285,0.001250,-0.002000,0.249992,0,0);}
.mf8_c01322{transform:matrix(0.158380,0.001742,-0.002750,0.249985,0,0);-ms-transform:matrix(0.158380,0.001742,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.158380,0.001742,-0.002750,0.249985,0,0);}
.m2e_c01322{transform:matrix(0.161400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161400,0.000000,0.000000,0.250000,0,0);}
.m75_c01322{transform:matrix(0.168425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168425,0.000000,0.000000,0.250000,0,0);}
.m118_c01322{transform:matrix(0.169210,0.001354,-0.002000,0.249992,0,0);-ms-transform:matrix(0.169210,0.001354,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.169210,0.001354,-0.002000,0.249992,0,0);}
.m31_c01322{transform:matrix(0.171075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171075,0.000000,0.000000,0.250000,0,0);}
.m119_c01322{transform:matrix(0.172229,0.001378,-0.002000,0.249992,0,0);-ms-transform:matrix(0.172229,0.001378,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.172229,0.001378,-0.002000,0.249992,0,0);}
.mbb_c01322{transform:matrix(0.173989,0.001914,-0.002750,0.249985,0,0);-ms-transform:matrix(0.173989,0.001914,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.173989,0.001914,-0.002750,0.249985,0,0);}
.m2a_c01322{transform:matrix(0.174160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174160,0.000000,0.000000,0.250000,0,0);}
.mab_c01322{transform:matrix(0.175849,0.001934,-0.002750,0.249985,0,0);-ms-transform:matrix(0.175849,0.001934,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.175849,0.001934,-0.002750,0.249985,0,0);}
.md4_c01322{transform:matrix(0.176414,0.001941,-0.002750,0.249985,0,0);-ms-transform:matrix(0.176414,0.001941,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.176414,0.001941,-0.002750,0.249985,0,0);}
.mf1_c01322{transform:matrix(0.177204,0.001949,-0.002750,0.249985,0,0);-ms-transform:matrix(0.177204,0.001949,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.177204,0.001949,-0.002750,0.249985,0,0);}
.mc1_c01322{transform:matrix(0.177794,0.001956,-0.002750,0.249985,0,0);-ms-transform:matrix(0.177794,0.001956,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.177794,0.001956,-0.002750,0.249985,0,0);}
.m72_c01322{transform:matrix(0.181435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181435,0.000000,0.000000,0.250000,0,0);}
.ma0_c01322{transform:matrix(0.183124,0.002014,-0.002750,0.249985,0,0);-ms-transform:matrix(0.183124,0.002014,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.183124,0.002014,-0.002750,0.249985,0,0);}
.m70_c01322{transform:matrix(0.184315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184315,0.000000,0.000000,0.250000,0,0);}
.mb8_c01322{transform:matrix(0.184824,0.002033,-0.002750,0.249985,0,0);-ms-transform:matrix(0.184824,0.002033,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.184824,0.002033,-0.002750,0.249985,0,0);}
.m4_c01322{transform:matrix(0.184979,0.001480,-0.002000,0.249992,0,0);-ms-transform:matrix(0.184979,0.001480,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.184979,0.001480,-0.002000,0.249992,0,0);}
.m11b_c01322{transform:matrix(0.185549,0.001484,-0.002000,0.249992,0,0);-ms-transform:matrix(0.185549,0.001484,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.185549,0.001484,-0.002000,0.249992,0,0);}
.m79_c01322{transform:matrix(0.186575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186575,0.000000,0.000000,0.250000,0,0);}
.m73_c01322{transform:matrix(0.187985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187985,0.000000,0.000000,0.250000,0,0);}
.m71_c01322{transform:matrix(0.188130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188130,0.000000,0.000000,0.250000,0,0);}
.m15_c01322{transform:matrix(0.188726,0.001887,-0.002500,0.249988,0,0);-ms-transform:matrix(0.188726,0.001887,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.188726,0.001887,-0.002500,0.249988,0,0);}
.m5_c01322{transform:matrix(0.189359,0.001515,-0.002000,0.249992,0,0);-ms-transform:matrix(0.189359,0.001515,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.189359,0.001515,-0.002000,0.249992,0,0);}
.m78_c01322{transform:matrix(0.189910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189910,0.000000,0.000000,0.250000,0,0);}
.m4a_c01322{transform:matrix(0.190515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190515,0.000000,0.000000,0.250000,0,0);}
.md8_c01322{transform:matrix(0.190848,0.002099,-0.002750,0.249985,0,0);-ms-transform:matrix(0.190848,0.002099,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.190848,0.002099,-0.002750,0.249985,0,0);}
.m30_c01322{transform:matrix(0.190930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190930,0.000000,0.000000,0.250000,0,0);}
.m11e_c01322{transform:matrix(0.192204,0.001538,-0.002000,0.249992,0,0);-ms-transform:matrix(0.192204,0.001538,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.192204,0.001538,-0.002000,0.249992,0,0);}
.ma4_c01322{transform:matrix(0.192413,0.002117,-0.002750,0.249985,0,0);-ms-transform:matrix(0.192413,0.002117,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.192413,0.002117,-0.002750,0.249985,0,0);}
.m76_c01322{transform:matrix(0.192710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192710,0.000000,0.000000,0.250000,0,0);}
.m33_c01322{transform:matrix(0.193215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193215,0.000000,0.000000,0.250000,0,0);}
.m36_c01322{transform:matrix(0.194095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194095,0.000000,0.000000,0.250000,0,0);}
.m6a_c01322{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m9f_c01322{transform:matrix(0.195303,0.002148,-0.002750,0.249985,0,0);-ms-transform:matrix(0.195303,0.002148,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.195303,0.002148,-0.002750,0.249985,0,0);}
.m14_c01322{transform:matrix(0.195880,0.001959,-0.002500,0.249988,0,0);-ms-transform:matrix(0.195880,0.001959,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.195880,0.001959,-0.002500,0.249988,0,0);}
.mf7_c01322{transform:matrix(0.195888,0.002155,-0.002750,0.249985,0,0);-ms-transform:matrix(0.195888,0.002155,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.195888,0.002155,-0.002750,0.249985,0,0);}
.m3a_c01322{transform:matrix(0.196540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196540,0.000000,0.000000,0.250000,0,0);}
.m3_c01322{transform:matrix(0.197014,0.001576,-0.002000,0.249992,0,0);-ms-transform:matrix(0.197014,0.001576,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.197014,0.001576,-0.002000,0.249992,0,0);}
.m4e_c01322{transform:matrix(0.198285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198285,0.000000,0.000000,0.250000,0,0);}
.m77_c01322{transform:matrix(0.199240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199240,0.000000,0.000000,0.250000,0,0);}
.m4d_c01322{transform:matrix(0.199290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199290,0.000000,0.000000,0.250000,0,0);}
.m2_c01322{transform:matrix(0.200609,0.001605,-0.002000,0.249992,0,0);-ms-transform:matrix(0.200609,0.001605,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.200609,0.001605,-0.002000,0.249992,0,0);}
.ma3_c01322{transform:matrix(0.201708,0.002219,-0.002750,0.249985,0,0);-ms-transform:matrix(0.201708,0.002219,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.201708,0.002219,-0.002750,0.249985,0,0);}
.m9e_c01322{transform:matrix(0.203153,0.002235,-0.002750,0.249985,0,0);-ms-transform:matrix(0.203153,0.002235,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.203153,0.002235,-0.002750,0.249985,0,0);}
.ma6_c01322{transform:matrix(0.203368,0.002237,-0.002750,0.249985,0,0);-ms-transform:matrix(0.203368,0.002237,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.203368,0.002237,-0.002750,0.249985,0,0);}
.m19_c01322{transform:matrix(0.204675,0.002047,-0.002500,0.249988,0,0);-ms-transform:matrix(0.204675,0.002047,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.204675,0.002047,-0.002500,0.249988,0,0);}
.ma1_c01322{transform:matrix(0.205618,0.002262,-0.002750,0.249985,0,0);-ms-transform:matrix(0.205618,0.002262,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.205618,0.002262,-0.002750,0.249985,0,0);}
.mfa_c01322{transform:matrix(0.206108,0.002267,-0.002750,0.249985,0,0);-ms-transform:matrix(0.206108,0.002267,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.206108,0.002267,-0.002750,0.249985,0,0);}
.m53_c01322{transform:matrix(0.206350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206350,0.000000,0.000000,0.250000,0,0);}
.m13_c01322{transform:matrix(0.206640,0.002066,-0.002500,0.249988,0,0);-ms-transform:matrix(0.206640,0.002066,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.206640,0.002066,-0.002500,0.249988,0,0);}
.m11_c01322{transform:matrix(0.206920,0.002069,-0.002500,0.249988,0,0);-ms-transform:matrix(0.206920,0.002069,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.206920,0.002069,-0.002500,0.249988,0,0);}
.mda_c01322{transform:matrix(0.207427,0.002282,-0.002750,0.249985,0,0);-ms-transform:matrix(0.207427,0.002282,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.207427,0.002282,-0.002750,0.249985,0,0);}
.m38_c01322{transform:matrix(0.207550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207550,0.000000,0.000000,0.250000,0,0);}
.ma2_c01322{transform:matrix(0.208747,0.002296,-0.002750,0.249985,0,0);-ms-transform:matrix(0.208747,0.002296,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.208747,0.002296,-0.002750,0.249985,0,0);}
.ma5_c01322{transform:matrix(0.208757,0.002296,-0.002750,0.249985,0,0);-ms-transform:matrix(0.208757,0.002296,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.208757,0.002296,-0.002750,0.249985,0,0);}
.m4b_c01322{transform:matrix(0.209245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209245,0.000000,0.000000,0.250000,0,0);}
.m55_c01322{transform:matrix(0.210790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210790,0.000000,0.000000,0.250000,0,0);}
.m12_c01322{transform:matrix(0.212119,0.002121,-0.002500,0.249988,0,0);-ms-transform:matrix(0.212119,0.002121,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.212119,0.002121,-0.002500,0.249988,0,0);}
.m37_c01322{transform:matrix(0.212410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212410,0.000000,0.000000,0.250000,0,0);}
.m88_c01322{transform:matrix(0.212822,0.002341,-0.002750,0.249985,0,0);-ms-transform:matrix(0.212822,0.002341,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.212822,0.002341,-0.002750,0.249985,0,0);}
.m9d_c01322{transform:matrix(0.213232,0.002346,-0.002750,0.249985,0,0);-ms-transform:matrix(0.213232,0.002346,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.213232,0.002346,-0.002750,0.249985,0,0);}
.mb0_c01322{transform:matrix(0.213257,0.002346,-0.002750,0.249985,0,0);-ms-transform:matrix(0.213257,0.002346,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.213257,0.002346,-0.002750,0.249985,0,0);}
.m10_c01322{transform:matrix(0.213309,0.002133,-0.002500,0.249988,0,0);-ms-transform:matrix(0.213309,0.002133,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.213309,0.002133,-0.002500,0.249988,0,0);}
.m7a_c01322{transform:matrix(0.213510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213510,0.000000,0.000000,0.250000,0,0);}
.m3c_c01322{transform:matrix(0.214560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214560,0.000000,0.000000,0.250000,0,0);}
.m4c_c01322{transform:matrix(0.214580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214580,0.000000,0.000000,0.250000,0,0);}
.m56_c01322{transform:matrix(0.215475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215475,0.000000,0.000000,0.250000,0,0);}
.md6_c01322{transform:matrix(0.215842,0.002374,-0.002750,0.249985,0,0);-ms-transform:matrix(0.215842,0.002374,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.215842,0.002374,-0.002750,0.249985,0,0);}
.m8c_c01322{transform:matrix(0.216457,0.002381,-0.002750,0.249985,0,0);-ms-transform:matrix(0.216457,0.002381,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.216457,0.002381,-0.002750,0.249985,0,0);}
.ma7_c01322{transform:matrix(0.216517,0.002382,-0.002750,0.249985,0,0);-ms-transform:matrix(0.216517,0.002382,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.216517,0.002382,-0.002750,0.249985,0,0);}
.m3b_c01322{transform:matrix(0.216945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216945,0.000000,0.000000,0.250000,0,0);}
.m17_c01322{transform:matrix(0.217589,0.002176,-0.002500,0.249988,0,0);-ms-transform:matrix(0.217589,0.002176,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.217589,0.002176,-0.002500,0.249988,0,0);}
.m57_c01322{transform:matrix(0.218905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218905,0.000000,0.000000,0.250000,0,0);}
.m52_c01322{transform:matrix(0.219720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219720,0.000000,0.000000,0.250000,0,0);}
.m93_c01322{transform:matrix(0.220852,0.002429,-0.002750,0.249985,0,0);-ms-transform:matrix(0.220852,0.002429,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.220852,0.002429,-0.002750,0.249985,0,0);}
.mcf_c01322{transform:matrix(0.221232,0.002434,-0.002750,0.249985,0,0);-ms-transform:matrix(0.221232,0.002434,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.221232,0.002434,-0.002750,0.249985,0,0);}
.m8a_c01322{transform:matrix(0.221402,0.002435,-0.002750,0.249985,0,0);-ms-transform:matrix(0.221402,0.002435,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.221402,0.002435,-0.002750,0.249985,0,0);}
.m8d_c01322{transform:matrix(0.221697,0.002439,-0.002750,0.249985,0,0);-ms-transform:matrix(0.221697,0.002439,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.221697,0.002439,-0.002750,0.249985,0,0);}
.md3_c01322{transform:matrix(0.221927,0.002441,-0.002750,0.249985,0,0);-ms-transform:matrix(0.221927,0.002441,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.221927,0.002441,-0.002750,0.249985,0,0);}
.m89_c01322{transform:matrix(0.224421,0.002469,-0.002750,0.249985,0,0);-ms-transform:matrix(0.224421,0.002469,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.224421,0.002469,-0.002750,0.249985,0,0);}
.m86_c01322{transform:matrix(0.224576,0.002470,-0.002750,0.249985,0,0);-ms-transform:matrix(0.224576,0.002470,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.224576,0.002470,-0.002750,0.249985,0,0);}
.m0_c01322{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m10f_c01322{transform:matrix(0.224984,0.002700,-0.003000,0.249982,0,0);-ms-transform:matrix(0.224984,0.002700,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.224984,0.002700,-0.003000,0.249982,0,0);}
.m35_c01322{transform:matrix(0.225040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225040,0.000000,0.000000,0.250000,0,0);}
.m8_c01322{transform:matrix(0.226004,0.002260,-0.002500,0.249988,0,0);-ms-transform:matrix(0.226004,0.002260,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.226004,0.002260,-0.002500,0.249988,0,0);}
.m6e_c01322{transform:matrix(0.227045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227045,0.000000,0.000000,0.250000,0,0);}
.m44_c01322{transform:matrix(0.227050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227050,0.000000,0.000000,0.250000,0,0);}
.m7_c01322{transform:matrix(0.227069,0.002271,-0.002500,0.249988,0,0);-ms-transform:matrix(0.227069,0.002271,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.227069,0.002271,-0.002500,0.249988,0,0);}
.m54_c01322{transform:matrix(0.227160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227160,0.000000,0.000000,0.250000,0,0);}
.m18_c01322{transform:matrix(0.227219,0.002272,-0.002500,0.249988,0,0);-ms-transform:matrix(0.227219,0.002272,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.227219,0.002272,-0.002500,0.249988,0,0);}
.ma8_c01322{transform:matrix(0.227246,0.002500,-0.002750,0.249985,0,0);-ms-transform:matrix(0.227246,0.002500,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.227246,0.002500,-0.002750,0.249985,0,0);}
.m5f_c01322{transform:matrix(0.227260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227260,0.000000,0.000000,0.250000,0,0);}
.m1a_c01322{transform:matrix(0.228534,0.002285,-0.002500,0.249988,0,0);-ms-transform:matrix(0.228534,0.002285,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.228534,0.002285,-0.002500,0.249988,0,0);}
.m84_c01322{transform:matrix(0.228705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228705,0.000000,0.000000,0.250000,0,0);}
.m95_c01322{transform:matrix(0.229136,0.002520,-0.002750,0.249985,0,0);-ms-transform:matrix(0.229136,0.002520,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.229136,0.002520,-0.002750,0.249985,0,0);}
.m3f_c01322{transform:matrix(0.229205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229205,0.000000,0.000000,0.250000,0,0);}
.mbc_c01322{transform:matrix(0.229356,0.002523,-0.002750,0.249985,0,0);-ms-transform:matrix(0.229356,0.002523,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.229356,0.002523,-0.002750,0.249985,0,0);}
.m102_c01322{transform:matrix(0.229536,0.003673,-0.003999,0.249968,0,0);-ms-transform:matrix(0.229536,0.003673,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.229536,0.003673,-0.003999,0.249968,0,0);}
.m50_c01322{transform:matrix(0.229855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229855,0.000000,0.000000,0.250000,0,0);}
.m87_c01322{transform:matrix(0.230231,0.002533,-0.002750,0.249985,0,0);-ms-transform:matrix(0.230231,0.002533,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.230231,0.002533,-0.002750,0.249985,0,0);}
.med_c01322{transform:matrix(0.230561,0.002536,-0.002750,0.249985,0,0);-ms-transform:matrix(0.230561,0.002536,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.230561,0.002536,-0.002750,0.249985,0,0);}
.mdb_c01322{transform:matrix(0.230741,0.002538,-0.002750,0.249985,0,0);-ms-transform:matrix(0.230741,0.002538,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.230741,0.002538,-0.002750,0.249985,0,0);}
.mb5_c01322{transform:matrix(0.231026,0.002541,-0.002750,0.249985,0,0);-ms-transform:matrix(0.231026,0.002541,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.231026,0.002541,-0.002750,0.249985,0,0);}
.m97_c01322{transform:matrix(0.231146,0.002543,-0.002750,0.249985,0,0);-ms-transform:matrix(0.231146,0.002543,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.231146,0.002543,-0.002750,0.249985,0,0);}
.mbe_c01322{transform:matrix(0.231226,0.002543,-0.002750,0.249985,0,0);-ms-transform:matrix(0.231226,0.002543,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.231226,0.002543,-0.002750,0.249985,0,0);}
.mdd_c01322{transform:matrix(0.231331,0.002545,-0.002750,0.249985,0,0);-ms-transform:matrix(0.231331,0.002545,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.231331,0.002545,-0.002750,0.249985,0,0);}
.m6c_c01322{transform:matrix(0.231570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231570,0.000000,0.000000,0.250000,0,0);}
.m94_c01322{transform:matrix(0.232146,0.002554,-0.002750,0.249985,0,0);-ms-transform:matrix(0.232146,0.002554,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.232146,0.002554,-0.002750,0.249985,0,0);}
.m5a_c01322{transform:matrix(0.232390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232390,0.000000,0.000000,0.250000,0,0);}
.m68_c01322{transform:matrix(0.232625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232625,0.000000,0.000000,0.250000,0,0);}
.m43_c01322{transform:matrix(0.232725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232725,0.000000,0.000000,0.250000,0,0);}
.mdf_c01322{transform:matrix(0.232956,0.002563,-0.002750,0.249985,0,0);-ms-transform:matrix(0.232956,0.002563,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.232956,0.002563,-0.002750,0.249985,0,0);}
.m8b_c01322{transform:matrix(0.233276,0.002566,-0.002750,0.249985,0,0);-ms-transform:matrix(0.233276,0.002566,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.233276,0.002566,-0.002750,0.249985,0,0);}
.m39_c01322{transform:matrix(0.233960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233960,0.000000,0.000000,0.250000,0,0);}
.m10c_c01322{transform:matrix(0.234323,0.002812,-0.003000,0.249982,0,0);-ms-transform:matrix(0.234323,0.002812,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.234323,0.002812,-0.003000,0.249982,0,0);}
.m85_c01322{transform:matrix(0.234576,0.002580,-0.002750,0.249985,0,0);-ms-transform:matrix(0.234576,0.002580,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.234576,0.002580,-0.002750,0.249985,0,0);}
.m51_c01322{transform:matrix(0.234580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234580,0.000000,0.000000,0.250000,0,0);}
.mb6_c01322{transform:matrix(0.236361,0.002600,-0.002750,0.249985,0,0);-ms-transform:matrix(0.236361,0.002600,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.236361,0.002600,-0.002750,0.249985,0,0);}
.md7_c01322{transform:matrix(0.237031,0.002607,-0.002750,0.249985,0,0);-ms-transform:matrix(0.237031,0.002607,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.237031,0.002607,-0.002750,0.249985,0,0);}
.mb7_c01322{transform:matrix(0.237046,0.002608,-0.002750,0.249985,0,0);-ms-transform:matrix(0.237046,0.002608,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.237046,0.002608,-0.002750,0.249985,0,0);}
.mde_c01322{transform:matrix(0.237466,0.002612,-0.002750,0.249985,0,0);-ms-transform:matrix(0.237466,0.002612,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.237466,0.002612,-0.002750,0.249985,0,0);}
.mb4_c01322{transform:matrix(0.237681,0.002614,-0.002750,0.249985,0,0);-ms-transform:matrix(0.237681,0.002614,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.237681,0.002614,-0.002750,0.249985,0,0);}
.m101_c01322{transform:matrix(0.237775,0.003804,-0.003999,0.249968,0,0);-ms-transform:matrix(0.237775,0.003804,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.237775,0.003804,-0.003999,0.249968,0,0);}
.mf5_c01322{transform:matrix(0.238716,0.002626,-0.002750,0.249985,0,0);-ms-transform:matrix(0.238716,0.002626,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.238716,0.002626,-0.002750,0.249985,0,0);}
.m6d_c01322{transform:matrix(0.238765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238765,0.000000,0.000000,0.250000,0,0);}
.m99_c01322{transform:matrix(0.239056,0.002630,-0.002750,0.249985,0,0);-ms-transform:matrix(0.239056,0.002630,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.239056,0.002630,-0.002750,0.249985,0,0);}
.md9_c01322{transform:matrix(0.239456,0.002634,-0.002750,0.249985,0,0);-ms-transform:matrix(0.239456,0.002634,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.239456,0.002634,-0.002750,0.249985,0,0);}
.mf9_c01322{transform:matrix(0.239985,0.002640,-0.002750,0.249985,0,0);-ms-transform:matrix(0.239985,0.002640,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.239985,0.002640,-0.002750,0.249985,0,0);}
.mb9_c01322{transform:matrix(0.240815,0.002649,-0.002750,0.249985,0,0);-ms-transform:matrix(0.240815,0.002649,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.240815,0.002649,-0.002750,0.249985,0,0);}
.m66_c01322{transform:matrix(0.240820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240820,0.000000,0.000000,0.250000,0,0);}
.ma_c01322{transform:matrix(0.241383,0.002414,-0.002500,0.249988,0,0);-ms-transform:matrix(0.241383,0.002414,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.241383,0.002414,-0.002500,0.249988,0,0);}
.m8e_c01322{transform:matrix(0.241585,0.002657,-0.002750,0.249985,0,0);-ms-transform:matrix(0.241585,0.002657,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.241585,0.002657,-0.002750,0.249985,0,0);}
.m9a_c01322{transform:matrix(0.241940,0.002661,-0.002750,0.249985,0,0);-ms-transform:matrix(0.241940,0.002661,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.241940,0.002661,-0.002750,0.249985,0,0);}
.m45_c01322{transform:matrix(0.242210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242210,0.000000,0.000000,0.250000,0,0);}
.m42_c01322{transform:matrix(0.242430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242430,0.000000,0.000000,0.250000,0,0);}
.mb_c01322{transform:matrix(0.242558,0.002426,-0.002500,0.249988,0,0);-ms-transform:matrix(0.242558,0.002426,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.242558,0.002426,-0.002500,0.249988,0,0);}
.m49_c01322{transform:matrix(0.243570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243570,0.000000,0.000000,0.250000,0,0);}
.m5c_c01322{transform:matrix(0.243915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243915,0.000000,0.000000,0.250000,0,0);}
.m6b_c01322{transform:matrix(0.244095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244095,0.000000,0.000000,0.250000,0,0);}
.m105_c01322{transform:matrix(0.244449,0.003911,-0.003999,0.249968,0,0);-ms-transform:matrix(0.244449,0.003911,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.244449,0.003911,-0.003999,0.249968,0,0);}
.m47_c01322{transform:matrix(0.244615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244615,0.000000,0.000000,0.250000,0,0);}
.mdc_c01322{transform:matrix(0.245555,0.002701,-0.002750,0.249985,0,0);-ms-transform:matrix(0.245555,0.002701,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.245555,0.002701,-0.002750,0.249985,0,0);}
.m61_c01322{transform:matrix(0.245840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245840,0.000000,0.000000,0.250000,0,0);}
.m1f_c01322{transform:matrix(0.246183,0.002462,-0.002500,0.249988,0,0);-ms-transform:matrix(0.246183,0.002462,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.246183,0.002462,-0.002500,0.249988,0,0);}
.m9_c01322{transform:matrix(0.247203,0.002472,-0.002500,0.249988,0,0);-ms-transform:matrix(0.247203,0.002472,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.247203,0.002472,-0.002500,0.249988,0,0);}
.m3e_c01322{transform:matrix(0.247815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247815,0.000000,0.000000,0.250000,0,0);}
.m41_c01322{transform:matrix(0.248610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248610,0.000000,0.000000,0.250000,0,0);}
.m100_c01322{transform:matrix(0.248753,0.003980,-0.003999,0.249968,0,0);-ms-transform:matrix(0.248753,0.003980,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.248753,0.003980,-0.003999,0.249968,0,0);}
.m96_c01322{transform:matrix(0.248885,0.002738,-0.002750,0.249985,0,0);-ms-transform:matrix(0.248885,0.002738,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.248885,0.002738,-0.002750,0.249985,0,0);}
.m98_c01322{transform:matrix(0.248910,0.002738,-0.002750,0.249985,0,0);-ms-transform:matrix(0.248910,0.002738,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.248910,0.002738,-0.002750,0.249985,0,0);}
.m5e_c01322{transform:matrix(0.249180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249180,0.000000,0.000000,0.250000,0,0);}
.m28_c01322{transform:matrix(0.249343,0.002493,-0.002500,0.249988,0,0);-ms-transform:matrix(0.249343,0.002493,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.249343,0.002493,-0.002500,0.249988,0,0);}
.md_c01322{transform:matrix(0.249483,0.002495,-0.002500,0.249988,0,0);-ms-transform:matrix(0.249483,0.002495,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.249483,0.002495,-0.002500,0.249988,0,0);}
.m34_c01322{transform:matrix(0.249755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249755,0.000000,0.000000,0.250000,0,0);}
.m63_c01322{transform:matrix(0.250580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250580,0.000000,0.000000,0.250000,0,0);}
.mc0_c01322{transform:matrix(0.250705,0.002758,-0.002750,0.249985,0,0);-ms-transform:matrix(0.250705,0.002758,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.250705,0.002758,-0.002750,0.249985,0,0);}
.mc_c01322{transform:matrix(0.251397,0.002514,-0.002500,0.249988,0,0);-ms-transform:matrix(0.251397,0.002514,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.251397,0.002514,-0.002500,0.249988,0,0);}
.m62_c01322{transform:matrix(0.251890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251890,0.000000,0.000000,0.250000,0,0);}
.m23_c01322{transform:matrix(0.255527,0.002555,-0.002500,0.249988,0,0);-ms-transform:matrix(0.255527,0.002555,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.255527,0.002555,-0.002500,0.249988,0,0);}
.m8f_c01322{transform:matrix(0.256814,0.002825,-0.002750,0.249985,0,0);-ms-transform:matrix(0.256814,0.002825,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.256814,0.002825,-0.002750,0.249985,0,0);}
.m48_c01322{transform:matrix(0.257030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257030,0.000000,0.000000,0.250000,0,0);}
.m91_c01322{transform:matrix(0.257174,0.002829,-0.002750,0.249985,0,0);-ms-transform:matrix(0.257174,0.002829,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.257174,0.002829,-0.002750,0.249985,0,0);}
.m104_c01322{transform:matrix(0.257317,0.004117,-0.003999,0.249968,0,0);-ms-transform:matrix(0.257317,0.004117,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.257317,0.004117,-0.003999,0.249968,0,0);}
.mf0_c01322{transform:matrix(0.257984,0.002838,-0.002750,0.249985,0,0);-ms-transform:matrix(0.257984,0.002838,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.257984,0.002838,-0.002750,0.249985,0,0);}
.m46_c01322{transform:matrix(0.258490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258490,0.000000,0.000000,0.250000,0,0);}
.m59_c01322{transform:matrix(0.259200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259200,0.000000,0.000000,0.250000,0,0);}
.m67_c01322{transform:matrix(0.260025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260025,0.000000,0.000000,0.250000,0,0);}
.m40_c01322{transform:matrix(0.260650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260650,0.000000,0.000000,0.250000,0,0);}
.m20_c01322{transform:matrix(0.260672,0.002607,-0.002500,0.249988,0,0);-ms-transform:matrix(0.260672,0.002607,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.260672,0.002607,-0.002500,0.249988,0,0);}
.m92_c01322{transform:matrix(0.260819,0.002869,-0.002750,0.249985,0,0);-ms-transform:matrix(0.260819,0.002869,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.260819,0.002869,-0.002750,0.249985,0,0);}
.mc3_c01322{transform:matrix(0.260839,0.002869,-0.002750,0.249985,0,0);-ms-transform:matrix(0.260839,0.002869,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.260839,0.002869,-0.002750,0.249985,0,0);}
.me8_c01322{transform:matrix(0.261359,0.002875,-0.002750,0.249985,0,0);-ms-transform:matrix(0.261359,0.002875,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.261359,0.002875,-0.002750,0.249985,0,0);}
.me1_c01322{transform:matrix(0.261969,0.002882,-0.002750,0.249985,0,0);-ms-transform:matrix(0.261969,0.002882,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.261969,0.002882,-0.002750,0.249985,0,0);}
.m5b_c01322{transform:matrix(0.262175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262175,0.000000,0.000000,0.250000,0,0);}
.m9b_c01322{transform:matrix(0.263014,0.002893,-0.002750,0.249985,0,0);-ms-transform:matrix(0.263014,0.002893,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.263014,0.002893,-0.002750,0.249985,0,0);}
.mec_c01322{transform:matrix(0.263759,0.002901,-0.002750,0.249985,0,0);-ms-transform:matrix(0.263759,0.002901,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.263759,0.002901,-0.002750,0.249985,0,0);}
.mbf_c01322{transform:matrix(0.264539,0.002910,-0.002750,0.249985,0,0);-ms-transform:matrix(0.264539,0.002910,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.264539,0.002910,-0.002750,0.249985,0,0);}
.m60_c01322{transform:matrix(0.264770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264770,0.000000,0.000000,0.250000,0,0);}
.m69_c01322{transform:matrix(0.264775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264775,0.000000,0.000000,0.250000,0,0);}
.m16_c01322{transform:matrix(0.265382,0.002654,-0.002500,0.249988,0,0);-ms-transform:matrix(0.265382,0.002654,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.265382,0.002654,-0.002500,0.249988,0,0);}
.m90_c01322{transform:matrix(0.265559,0.002921,-0.002750,0.249985,0,0);-ms-transform:matrix(0.265559,0.002921,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.265559,0.002921,-0.002750,0.249985,0,0);}
.m103_c01322{transform:matrix(0.266106,0.004258,-0.003999,0.249968,0,0);-ms-transform:matrix(0.266106,0.004258,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.266106,0.004258,-0.003999,0.249968,0,0);}
.me9_c01322{transform:matrix(0.266284,0.002929,-0.002750,0.249985,0,0);-ms-transform:matrix(0.266284,0.002929,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.266284,0.002929,-0.002750,0.249985,0,0);}
.mee_c01322{transform:matrix(0.267689,0.002945,-0.002750,0.249985,0,0);-ms-transform:matrix(0.267689,0.002945,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.267689,0.002945,-0.002750,0.249985,0,0);}
.m24_c01322{transform:matrix(0.268467,0.002685,-0.002500,0.249988,0,0);-ms-transform:matrix(0.268467,0.002685,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.268467,0.002685,-0.002500,0.249988,0,0);}
.mc4_c01322{transform:matrix(0.270254,0.002973,-0.002750,0.249985,0,0);-ms-transform:matrix(0.270254,0.002973,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.270254,0.002973,-0.002750,0.249985,0,0);}
.m25_c01322{transform:matrix(0.271286,0.002713,-0.002500,0.249988,0,0);-ms-transform:matrix(0.271286,0.002713,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.271286,0.002713,-0.002500,0.249988,0,0);}
.mb3_c01322{transform:matrix(0.271514,0.002987,-0.002750,0.249985,0,0);-ms-transform:matrix(0.271514,0.002987,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.271514,0.002987,-0.002750,0.249985,0,0);}
.m1d_c01322{transform:matrix(0.272281,0.002723,-0.002500,0.249988,0,0);-ms-transform:matrix(0.272281,0.002723,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.272281,0.002723,-0.002500,0.249988,0,0);}
.mc6_c01322{transform:matrix(0.272484,0.002997,-0.002750,0.249985,0,0);-ms-transform:matrix(0.272484,0.002997,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.272484,0.002997,-0.002750,0.249985,0,0);}
.maa_c01322{transform:matrix(0.272499,0.002997,-0.002750,0.249985,0,0);-ms-transform:matrix(0.272499,0.002997,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.272499,0.002997,-0.002750,0.249985,0,0);}
.mbd_c01322{transform:matrix(0.272574,0.002998,-0.002750,0.249985,0,0);-ms-transform:matrix(0.272574,0.002998,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.272574,0.002998,-0.002750,0.249985,0,0);}
.m22_c01322{transform:matrix(0.273141,0.002731,-0.002500,0.249988,0,0);-ms-transform:matrix(0.273141,0.002731,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.273141,0.002731,-0.002500,0.249988,0,0);}
.mf6_c01322{transform:matrix(0.273468,0.003008,-0.002750,0.249985,0,0);-ms-transform:matrix(0.273468,0.003008,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.273468,0.003008,-0.002750,0.249985,0,0);}
.m7b_c01322{transform:matrix(0.273725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273725,0.000000,0.000000,0.250000,0,0);}
.m26_c01322{transform:matrix(0.274356,0.002744,-0.002500,0.249988,0,0);-ms-transform:matrix(0.274356,0.002744,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.274356,0.002744,-0.002500,0.249988,0,0);}
.m21_c01322{transform:matrix(0.276761,0.002768,-0.002500,0.249988,0,0);-ms-transform:matrix(0.276761,0.002768,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.276761,0.002768,-0.002500,0.249988,0,0);}
.m1b_c01322{transform:matrix(0.278221,0.002782,-0.002500,0.249988,0,0);-ms-transform:matrix(0.278221,0.002782,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.278221,0.002782,-0.002500,0.249988,0,0);}
.me7_c01322{transform:matrix(0.278393,0.003062,-0.002750,0.249985,0,0);-ms-transform:matrix(0.278393,0.003062,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.278393,0.003062,-0.002750,0.249985,0,0);}
.m1e_c01322{transform:matrix(0.279161,0.002792,-0.002500,0.249988,0,0);-ms-transform:matrix(0.279161,0.002792,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.279161,0.002792,-0.002500,0.249988,0,0);}
.mc5_c01322{transform:matrix(0.281823,0.003100,-0.002750,0.249985,0,0);-ms-transform:matrix(0.281823,0.003100,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.281823,0.003100,-0.002750,0.249985,0,0);}
.me0_c01322{transform:matrix(0.282563,0.003108,-0.002750,0.249985,0,0);-ms-transform:matrix(0.282563,0.003108,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.282563,0.003108,-0.002750,0.249985,0,0);}
.m4f_c01322{transform:matrix(0.283650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283650,0.000000,0.000000,0.250000,0,0);}
.mb1_c01322{transform:matrix(0.284863,0.003133,-0.002750,0.249985,0,0);-ms-transform:matrix(0.284863,0.003133,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.284863,0.003133,-0.002750,0.249985,0,0);}
.m58_c01322{transform:matrix(0.288045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288045,0.000000,0.000000,0.250000,0,0);}
.m108_c01322{transform:matrix(0.288849,0.003466,-0.003000,0.249982,0,0);-ms-transform:matrix(0.288849,0.003466,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.288849,0.003466,-0.003000,0.249982,0,0);}
.meb_c01322{transform:matrix(0.289832,0.003188,-0.002750,0.249985,0,0);-ms-transform:matrix(0.289832,0.003188,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.289832,0.003188,-0.002750,0.249985,0,0);}
.m32_c01322{transform:matrix(0.296495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296495,0.000000,0.000000,0.250000,0,0);}
.mc2_c01322{transform:matrix(0.297737,0.003275,-0.002750,0.249985,0,0);-ms-transform:matrix(0.297737,0.003275,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.297737,0.003275,-0.002750,0.249985,0,0);}
.m10b_c01322{transform:matrix(0.298893,0.003587,-0.003000,0.249982,0,0);-ms-transform:matrix(0.298893,0.003587,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.298893,0.003587,-0.003000,0.249982,0,0);}
.m7f_c01322{transform:matrix(0.299690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299690,0.000000,0.000000,0.250000,0,0);}
.mb2_c01322{transform:matrix(0.300747,0.003308,-0.002750,0.249985,0,0);-ms-transform:matrix(0.300747,0.003308,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.300747,0.003308,-0.002750,0.249985,0,0);}
.mea_c01322{transform:matrix(0.301362,0.003315,-0.002750,0.249985,0,0);-ms-transform:matrix(0.301362,0.003315,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.301362,0.003315,-0.002750,0.249985,0,0);}
.m3d_c01322{transform:matrix(0.302365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302365,0.000000,0.000000,0.250000,0,0);}
.mef_c01322{transform:matrix(0.302852,0.003331,-0.002750,0.249985,0,0);-ms-transform:matrix(0.302852,0.003331,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.302852,0.003331,-0.002750,0.249985,0,0);}
.mad_c01322{transform:matrix(0.306151,0.003368,-0.002750,0.249985,0,0);-ms-transform:matrix(0.306151,0.003368,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.306151,0.003368,-0.002750,0.249985,0,0);}
.me6_c01322{transform:matrix(0.307381,0.003381,-0.002750,0.249985,0,0);-ms-transform:matrix(0.307381,0.003381,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.307381,0.003381,-0.002750,0.249985,0,0);}
.mba_c01322{transform:matrix(0.308396,0.003392,-0.002750,0.249985,0,0);-ms-transform:matrix(0.308396,0.003392,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.308396,0.003392,-0.002750,0.249985,0,0);}
.m10e_c01322{transform:matrix(0.309093,0.003709,-0.003000,0.249982,0,0);-ms-transform:matrix(0.309093,0.003709,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.309093,0.003709,-0.003000,0.249982,0,0);}
.ma9_c01322{transform:matrix(0.311506,0.003427,-0.002750,0.249985,0,0);-ms-transform:matrix(0.311506,0.003427,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.311506,0.003427,-0.002750,0.249985,0,0);}
.mfb_c01322{transform:matrix(0.319841,0.003518,-0.002750,0.249985,0,0);-ms-transform:matrix(0.319841,0.003518,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.319841,0.003518,-0.002750,0.249985,0,0);}
.mc8_c01322{transform:matrix(0.329270,0.003622,-0.002750,0.249985,0,0);-ms-transform:matrix(0.329270,0.003622,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.329270,0.003622,-0.002750,0.249985,0,0);}
.mae_c01322{transform:matrix(0.335105,0.003686,-0.002750,0.249985,0,0);-ms-transform:matrix(0.335105,0.003686,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.335105,0.003686,-0.002750,0.249985,0,0);}
.m117_c01322{transform:matrix(0.342019,0.002736,-0.002000,0.249992,0,0);-ms-transform:matrix(0.342019,0.002736,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.342019,0.002736,-0.002000,0.249992,0,0);}
.mfc_c01322{transform:matrix(0.352974,0.003883,-0.002750,0.249985,0,0);-ms-transform:matrix(0.352974,0.003883,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.352974,0.003883,-0.002750,0.249985,0,0);}
.mc7_c01322{transform:matrix(0.353519,0.003889,-0.002750,0.249985,0,0);-ms-transform:matrix(0.353519,0.003889,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.353519,0.003889,-0.002750,0.249985,0,0);}
.mf4_c01322{transform:matrix(0.354154,0.003896,-0.002750,0.249985,0,0);-ms-transform:matrix(0.354154,0.003896,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.354154,0.003896,-0.002750,0.249985,0,0);}
.m109_c01322{transform:matrix(0.364429,0.004373,-0.003000,0.249982,0,0);-ms-transform:matrix(0.364429,0.004373,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.364429,0.004373,-0.003000,0.249982,0,0);}
.maf_c01322{transform:matrix(0.370563,0.004076,-0.002750,0.249985,0,0);-ms-transform:matrix(0.370563,0.004076,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.370563,0.004076,-0.002750,0.249985,0,0);}
.mf3_c01322{transform:matrix(0.384997,0.004235,-0.002750,0.249985,0,0);-ms-transform:matrix(0.384997,0.004235,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.384997,0.004235,-0.002750,0.249985,0,0);}
.m9c_c01322{transform:matrix(0.388786,0.004277,-0.002750,0.249985,0,0);-ms-transform:matrix(0.388786,0.004277,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.388786,0.004277,-0.002750,0.249985,0,0);}
.m83_c01322{transform:matrix(0.398470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398470,0.000000,0.000000,0.250000,0,0);}
.m7e_c01322{transform:matrix(0.400125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400125,0.000000,0.000000,0.250000,0,0);}
.m1_c01322{transform:matrix(0.410900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410900,0.000000,0.000000,0.250000,0,0);}
.m110_c01322{transform:matrix(0.414850,0.004978,-0.003000,0.249982,0,0);-ms-transform:matrix(0.414850,0.004978,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.414850,0.004978,-0.003000,0.249982,0,0);}
.m5d_c01322{transform:matrix(0.416435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416435,0.000000,0.000000,0.250000,0,0);}
.m81_c01322{transform:matrix(0.426320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426320,0.000000,0.000000,0.250000,0,0);}
.mac_c01322{transform:matrix(0.445718,0.004903,-0.002750,0.249985,0,0);-ms-transform:matrix(0.445718,0.004903,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.445718,0.004903,-0.002750,0.249985,0,0);}
.m6_c01322{transform:matrix(0.450451,0.003604,-0.002000,0.249992,0,0);-ms-transform:matrix(0.450451,0.003604,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.450451,0.003604,-0.002000,0.249992,0,0);}
.m64_c01322{transform:matrix(0.454140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.454140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.454140,0.000000,0.000000,0.250000,0,0);}
.m112_c01322{transform:matrix(0.455622,0.005467,-0.003000,0.249982,0,0);-ms-transform:matrix(0.455622,0.005467,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.455622,0.005467,-0.003000,0.249982,0,0);}
.me_c01322{transform:matrix(0.499425,0.004994,-0.002500,0.249988,0,0);-ms-transform:matrix(0.499425,0.004994,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.499425,0.004994,-0.002500,0.249988,0,0);}
.md2_c01322{transform:matrix(0.511439,0.005626,-0.002750,0.249985,0,0);-ms-transform:matrix(0.511439,0.005626,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.511439,0.005626,-0.002750,0.249985,0,0);}
.me3_c01322{transform:matrix(0.511584,0.005627,-0.002750,0.249985,0,0);-ms-transform:matrix(0.511584,0.005627,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.511584,0.005627,-0.002750,0.249985,0,0);}
.mfe_c01322{transform:matrix(0.515729,0.005673,-0.002750,0.249985,0,0);-ms-transform:matrix(0.515729,0.005673,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.515729,0.005673,-0.002750,0.249985,0,0);}
.m111_c01322{transform:matrix(0.521012,0.006252,-0.003000,0.249982,0,0);-ms-transform:matrix(0.521012,0.006252,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.521012,0.006252,-0.003000,0.249982,0,0);}
.m10d_c01322{transform:matrix(0.531337,0.006376,-0.003000,0.249982,0,0);-ms-transform:matrix(0.531337,0.006376,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.531337,0.006376,-0.003000,0.249982,0,0);}
.m10a_c01322{transform:matrix(0.532192,0.006386,-0.003000,0.249982,0,0);-ms-transform:matrix(0.532192,0.006386,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.532192,0.006386,-0.003000,0.249982,0,0);}
.m7c_c01322{transform:matrix(0.541040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.541040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.541040,0.000000,0.000000,0.250000,0,0);}
.m27_c01322{transform:matrix(0.541198,0.005412,-0.002500,0.249988,0,0);-ms-transform:matrix(0.541198,0.005412,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.541198,0.005412,-0.002500,0.249988,0,0);}
.m7d_c01322{transform:matrix(0.552895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552895,0.000000,0.000000,0.250000,0,0);}
.m106_c01322{transform:matrix(0.553894,0.008862,-0.003999,0.249968,0,0);-ms-transform:matrix(0.553894,0.008862,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.553894,0.008862,-0.003999,0.249968,0,0);}
.m107_c01322{transform:matrix(0.577241,0.009236,-0.003999,0.249968,0,0);-ms-transform:matrix(0.577241,0.009236,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.577241,0.009236,-0.003999,0.249968,0,0);}
.m116_c01322{transform:matrix(0.671242,0.008055,-0.003000,0.249982,0,0);-ms-transform:matrix(0.671242,0.008055,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.671242,0.008055,-0.003000,0.249982,0,0);}
.m115_c01322{transform:matrix(0.700275,0.008403,-0.003000,0.249982,0,0);-ms-transform:matrix(0.700275,0.008403,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.700275,0.008403,-0.003000,0.249982,0,0);}
.m65_c01322{transform:matrix(0.753980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.753980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.753980,0.000000,0.000000,0.250000,0,0);}
.m82_c01322{transform:matrix(0.758080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.758080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.758080,0.000000,0.000000,0.250000,0,0);}
.mfd_c01322{transform:matrix(0.777733,0.008555,-0.002750,0.249985,0,0);-ms-transform:matrix(0.777733,0.008555,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.777733,0.008555,-0.002750,0.249985,0,0);}
.m80_c01322{transform:matrix(0.851265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.851265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.851265,0.000000,0.000000,0.250000,0,0);}
.m113_c01322{transform:matrix(0.882471,0.010590,-0.003000,0.249982,0,0);-ms-transform:matrix(0.882471,0.010590,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.882471,0.010590,-0.003000,0.249982,0,0);}
.me4_c01322{transform:matrix(0.883532,0.009719,-0.002750,0.249985,0,0);-ms-transform:matrix(0.883532,0.009719,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.883532,0.009719,-0.002750,0.249985,0,0);}
.m6f_c01322{transform:matrix(0.941215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.941215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.941215,0.000000,0.000000,0.250000,0,0);}
.m1c_c01322{transform:matrix(1.033068,0.010331,-0.002500,0.249988,0,0);-ms-transform:matrix(1.033068,0.010331,-0.002500,0.249988,0,0);-webkit-transform:matrix(1.033068,0.010331,-0.002500,0.249988,0,0);}
.me2_c01322{transform:matrix(1.830134,0.020131,-0.002750,0.249985,0,0);-ms-transform:matrix(1.830134,0.020131,-0.002750,0.249985,0,0);-webkit-transform:matrix(1.830134,0.020131,-0.002750,0.249985,0,0);}
.v0_c01322{vertical-align:0.000000px;}
.v1_c01322{vertical-align:2.178132px;}
.ls0_c01322{letter-spacing:0.000000px;}
.sc__c01322{text-shadow:none;}
.sc0_c01322{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__c01322{-webkit-text-stroke:0px transparent;}
.sc0_c01322{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01322{word-spacing:0.000000px;}
._3_c01322{margin-left:-53.597061px;}
._4_c01322{margin-left:-40.169398px;}
._0_c01322{margin-left:-8.660011px;}
._1_c01322{margin-left:-1.808450px;}
._2_c01322{width:15204.751170px;}
.fc0_c01322{color:transparent;}
.fs12_c01322{font-size:24.001728px;}
.fs0_c01322{font-size:72.000000px;}
.fs4_c01322{font-size:72.003600px;}
.fs7_c01322{font-size:78.000000px;}
.fsb_c01322{font-size:78.004719px;}
.fs11_c01322{font-size:78.005616px;}
.fs10_c01322{font-size:78.009983px;}
.fs9_c01322{font-size:84.000000px;}
.fs2_c01322{font-size:84.004200px;}
.fsa_c01322{font-size:84.005082px;}
.fs6_c01322{font-size:90.000000px;}
.fs3_c01322{font-size:90.004500px;}
.fsd_c01322{font-size:90.005445px;}
.fsc_c01322{font-size:96.005808px;}
.fs8_c01322{font-size:102.000000px;}
.fs1_c01322{font-size:102.003264px;}
.fs5_c01322{font-size:120.000000px;}
.fsf_c01322{font-size:120.007260px;}
.fs13_c01322{font-size:126.004032px;}
.fse_c01322{font-size:132.007986px;}
.y0_c01322{bottom:0.000000px;}
.y11a_c01322{bottom:109.955484px;}
.y119_c01322{bottom:110.222952px;}
.y118_c01322{bottom:110.384952px;}
.y117_c01322{bottom:110.935788px;}
.y116_c01322{bottom:111.188616px;}
.y115_c01322{bottom:111.815028px;}
.y114_c01322{bottom:112.424076px;}
.y113_c01322{bottom:112.869000px;}
.y10f_c01322{bottom:145.435020px;}
.y110_c01322{bottom:145.435494px;}
.y112_c01322{bottom:145.435806px;}
.y111_c01322{bottom:145.435932px;}
.y10e_c01322{bottom:160.877244px;}
.y10d_c01322{bottom:161.282208px;}
.y10c_c01322{bottom:162.380496px;}
.y10b_c01322{bottom:162.607764px;}
.y10a_c01322{bottom:163.708806px;}
.y109_c01322{bottom:164.113770px;}
.y108_c01322{bottom:164.516682px;}
.y107_c01322{bottom:165.847044px;}
.y106_c01322{bottom:166.644012px;}
.y105_c01322{bottom:167.739060px;}
.y104_c01322{bottom:168.483000px;}
.y103_c01322{bottom:196.311288px;}
.y102_c01322{bottom:198.185832px;}
.y101_c01322{bottom:199.398672px;}
.y100_c01322{bottom:201.212976px;}
.yff_c01322{bottom:202.043616px;}
.yfe_c01322{bottom:202.453968px;}
.yfd_c01322{bottom:203.317176px;}
.yfc_c01322{bottom:204.393000px;}
.yfb_c01322{bottom:235.288012px;}
.yfa_c01322{bottom:238.659834px;}
.yf9_c01322{bottom:266.831197px;}
.yf8_c01322{bottom:268.736574px;}
.yf7_c01322{bottom:270.188535px;}
.yf6_c01322{bottom:270.686413px;}
.yf5_c01322{bottom:271.503756px;}
.yf4_c01322{bottom:271.911667px;}
.yf3_c01322{bottom:272.563099px;}
.yf2_c01322{bottom:273.227697px;}
.yf1_c01322{bottom:273.771162px;}
.yf0_c01322{bottom:274.134247px;}
.yef_c01322{bottom:274.574134px;}
.yee_c01322{bottom:305.221231px;}
.yed_c01322{bottom:305.619547px;}
.yec_c01322{bottom:306.593775px;}
.yeb_c01322{bottom:306.900478px;}
.yea_c01322{bottom:307.284222px;}
.ye9_c01322{bottom:307.484874px;}
.ye8_c01322{bottom:308.396932px;}
.ye7_c01322{bottom:308.681406px;}
.ye6_c01322{bottom:308.985139px;}
.ye5_c01322{bottom:309.691876px;}
.ye4_c01322{bottom:310.484563px;}
.ye3_c01322{bottom:311.274280px;}
.ye2_c01322{bottom:311.566164px;}
.ye1_c01322{bottom:338.625712px;}
.ye0_c01322{bottom:341.761111px;}
.ydf_c01322{bottom:343.697505px;}
.yde_c01322{bottom:346.939254px;}
.ydd_c01322{bottom:375.160988px;}
.ydc_c01322{bottom:375.906441px;}
.ydb_c01322{bottom:376.506381px;}
.yda_c01322{bottom:377.352913px;}
.yd9_c01322{bottom:377.964700px;}
.yd8_c01322{bottom:378.199512px;}
.yd7_c01322{bottom:378.929670px;}
.yd6_c01322{bottom:379.176229px;}
.yd5_c01322{bottom:380.023191px;}
.yd4_c01322{bottom:380.376208px;}
.yd3_c01322{bottom:381.231882px;}
.yd2_c01322{bottom:409.094730px;}
.yd1_c01322{bottom:410.105811px;}
.yd0_c01322{bottom:411.781401px;}
.ycf_c01322{bottom:412.254841px;}
.yce_c01322{bottom:413.257742px;}
.ycd_c01322{bottom:413.758185px;}
.ycc_c01322{bottom:414.045621px;}
.ycb_c01322{bottom:414.567014px;}
.yca_c01322{bottom:414.895293px;}
.yc9_c01322{bottom:415.536527px;}
.yc8_c01322{bottom:416.548845px;}
.yc7_c01322{bottom:417.078964px;}
.yc6_c01322{bottom:417.721650px;}
.yc5_c01322{bottom:419.033843px;}
.yc4_c01322{bottom:445.662543px;}
.yc3_c01322{bottom:446.155662px;}
.yc2_c01322{bottom:446.541746px;}
.yc1_c01322{bottom:447.272316px;}
.yc0_c01322{bottom:447.878163px;}
.ybf_c01322{bottom:448.368180px;}
.ybe_c01322{bottom:448.968087px;}
.ybd_c01322{bottom:449.835277px;}
.ybc_c01322{bottom:450.301535px;}
.ybb_c01322{bottom:450.547220px;}
.yba_c01322{bottom:451.637969px;}
.yb9_c01322{bottom:452.374479px;}
.yb8_c01322{bottom:452.783927px;}
.yb7_c01322{bottom:481.207715px;}
.yb6_c01322{bottom:481.985025px;}
.yb5_c01322{bottom:482.732665px;}
.yb4_c01322{bottom:482.961296px;}
.yb3_c01322{bottom:483.308243px;}
.yb2_c01322{bottom:483.972829px;}
.yb1_c01322{bottom:484.287879px;}
.yb0_c01322{bottom:485.181824px;}
.yaf_c01322{bottom:486.073374px;}
.yae_c01322{bottom:486.391872px;}
.yad_c01322{bottom:487.169628px;}
.yac_c01322{bottom:487.627995px;}
.yab_c01322{bottom:518.097857px;}
.yaa_c01322{bottom:519.106857px;}
.ya9_c01322{bottom:519.393477px;}
.ya8_c01322{bottom:519.791364px;}
.ya7_c01322{bottom:520.296591px;}
.ya6_c01322{bottom:521.268541px;}
.ya5_c01322{bottom:521.557455px;}
.ya4_c01322{bottom:521.771508px;}
.ya3_c01322{bottom:522.095706px;}
.ya2_c01322{bottom:522.674605px;}
.ya1_c01322{bottom:522.986690px;}
.ya0_c01322{bottom:552.692389px;}
.y9f_c01322{bottom:553.035504px;}
.y9e_c01322{bottom:553.741111px;}
.y9d_c01322{bottom:554.014785px;}
.y9c_c01322{bottom:554.624325px;}
.y9b_c01322{bottom:555.250141px;}
.y9a_c01322{bottom:555.692591px;}
.y99_c01322{bottom:555.866863px;}
.y98_c01322{bottom:556.309544px;}
.y97_c01322{bottom:556.660002px;}
.y96_c01322{bottom:557.546515px;}
.y95_c01322{bottom:589.410168px;}
.y94_c01322{bottom:590.189016px;}
.y93_c01322{bottom:590.419406px;}
.y92_c01322{bottom:590.798809px;}
.y91_c01322{bottom:591.188712px;}
.y90_c01322{bottom:591.420423px;}
.y8f_c01322{bottom:591.879650px;}
.y8e_c01322{bottom:592.115932px;}
.y8d_c01322{bottom:592.344901px;}
.y8c_c01322{bottom:592.580904px;}
.y8b_c01322{bottom:593.120118px;}
.y8a_c01322{bottom:593.660620px;}
.y89_c01322{bottom:593.998569px;}
.y88_c01322{bottom:623.982951px;}
.y87_c01322{bottom:625.159203px;}
.y86_c01322{bottom:625.545352px;}
.y85_c01322{bottom:625.907643px;}
.y84_c01322{bottom:626.751140px;}
.y83_c01322{bottom:626.994300px;}
.y82_c01322{bottom:627.609420px;}
.y81_c01322{bottom:627.965803px;}
.y80_c01322{bottom:628.687299px;}
.y7f_c01322{bottom:629.073449px;}
.y7e_c01322{bottom:629.911500px;}
.y7d_c01322{bottom:663.529500px;}
.y7c_c01322{bottom:693.511500px;}
.y7b_c01322{bottom:694.221000px;}
.y7a_c01322{bottom:695.358000px;}
.y79_c01322{bottom:696.273000px;}
.y78_c01322{bottom:696.768000px;}
.y77_c01322{bottom:697.261500px;}
.y76_c01322{bottom:697.782000px;}
.y75_c01322{bottom:698.490000px;}
.y74_c01322{bottom:728.913000px;}
.y73_c01322{bottom:729.292500px;}
.y72_c01322{bottom:730.072500px;}
.y71_c01322{bottom:730.309500px;}
.y70_c01322{bottom:731.074500px;}
.y6f_c01322{bottom:731.539500px;}
.y6e_c01322{bottom:731.766000px;}
.y6d_c01322{bottom:731.991000px;}
.y6c_c01322{bottom:732.862500px;}
.y6b_c01322{bottom:733.162500px;}
.y6a_c01322{bottom:733.626000px;}
.y69_c01322{bottom:733.860000px;}
.y68_c01322{bottom:764.883000px;}
.y67_c01322{bottom:765.442500px;}
.y66_c01322{bottom:765.673500px;}
.y65_c01322{bottom:765.981000px;}
.y64_c01322{bottom:766.305000px;}
.y63_c01322{bottom:767.302500px;}
.y62_c01322{bottom:768.154500px;}
.y61_c01322{bottom:768.460500px;}
.y60_c01322{bottom:769.381500px;}
.y5f_c01322{bottom:769.771500px;}
.y5e_c01322{bottom:799.666500px;}
.y5d_c01322{bottom:800.032500px;}
.y5c_c01322{bottom:800.500500px;}
.y5b_c01322{bottom:800.967000px;}
.y5a_c01322{bottom:801.204000px;}
.y59_c01322{bottom:802.122000px;}
.y58_c01322{bottom:802.360500px;}
.y57_c01322{bottom:802.824000px;}
.y56_c01322{bottom:802.986000px;}
.y55_c01322{bottom:803.365500px;}
.y54_c01322{bottom:804.367500px;}
.y53_c01322{bottom:804.603000px;}
.y52_c01322{bottom:835.870500px;}
.y51_c01322{bottom:836.557500px;}
.y50_c01322{bottom:837.171000px;}
.y4f_c01322{bottom:837.706500px;}
.y4e_c01322{bottom:837.978000px;}
.y4d_c01322{bottom:838.500000px;}
.y4c_c01322{bottom:838.771500px;}
.y4b_c01322{bottom:838.942500px;}
.y4a_c01322{bottom:839.215500px;}
.y49_c01322{bottom:839.605500px;}
.y48_c01322{bottom:839.824500px;}
.y47_c01322{bottom:840.178500px;}
.y46_c01322{bottom:840.451500px;}
.y45_c01322{bottom:841.056000px;}
.y44_c01322{bottom:841.327500px;}
.y43_c01322{bottom:841.590000px;}
.y42_c01322{bottom:872.086500px;}
.y41_c01322{bottom:872.869500px;}
.y40_c01322{bottom:873.199500px;}
.y3f_c01322{bottom:874.285500px;}
.y3e_c01322{bottom:874.633500px;}
.y3d_c01322{bottom:875.068500px;}
.y3c_c01322{bottom:875.412000px;}
.y3b_c01322{bottom:875.635500px;}
.y3a_c01322{bottom:876.405000px;}
.y39_c01322{bottom:877.512000px;}
.y38_c01322{bottom:877.843500px;}
.y37_c01322{bottom:878.580000px;}
.y36_c01322{bottom:902.988000px;}
.y35_c01322{bottom:903.393000px;}
.y34_c01322{bottom:904.300500px;}
.y33_c01322{bottom:905.121000px;}
.y32_c01322{bottom:905.515500px;}
.y31_c01322{bottom:906.985500px;}
.y30_c01322{bottom:907.386000px;}
.y2f_c01322{bottom:907.632000px;}
.y2e_c01322{bottom:908.037000px;}
.y2d_c01322{bottom:909.240000px;}
.y2c_c01322{bottom:910.017000px;}
.y2b_c01322{bottom:910.411500px;}
.y2a_c01322{bottom:910.981500px;}
.y29_c01322{bottom:946.771500px;}
.y28_c01322{bottom:982.156590px;}
.y1d_c01322{bottom:1015.123875px;}
.y1f_c01322{bottom:1015.123980px;}
.y20_c01322{bottom:1015.124295px;}
.y1e_c01322{bottom:1015.124520px;}
.y26_c01322{bottom:1015.124790px;}
.y21_c01322{bottom:1015.124955px;}
.y25_c01322{bottom:1015.125075px;}
.y22_c01322{bottom:1015.125300px;}
.y27_c01322{bottom:1015.125420px;}
.y23_c01322{bottom:1015.125630px;}
.y24_c01322{bottom:1015.125645px;}
.y1c_c01322{bottom:1048.658880px;}
.y1b_c01322{bottom:1048.983600px;}
.y1a_c01322{bottom:1049.649870px;}
.y19_c01322{bottom:1049.817975px;}
.y18_c01322{bottom:1050.429090px;}
.y17_c01322{bottom:1050.757920px;}
.y16_c01322{bottom:1051.090620px;}
.y15_c01322{bottom:1051.252485px;}
.y14_c01322{bottom:1051.420605px;}
.y13_c01322{bottom:1051.530870px;}
.y12_c01322{bottom:1051.805805px;}
.y11_c01322{bottom:1051.968990px;}
.y10_c01322{bottom:1052.188410px;}
.yf_c01322{bottom:1082.988285px;}
.ye_c01322{bottom:1083.839475px;}
.yd_c01322{bottom:1084.040565px;}
.yc_c01322{bottom:1084.715535px;}
.yb_c01322{bottom:1085.817165px;}
.ya_c01322{bottom:1086.921525px;}
.y9_c01322{bottom:1087.917915px;}
.y8_c01322{bottom:1088.363400px;}
.y7_c01322{bottom:1088.911500px;}
.y6_c01322{bottom:1156.806636px;}
.y5_c01322{bottom:1158.876036px;}
.y4_c01322{bottom:1159.863108px;}
.y3_c01322{bottom:1160.390196px;}
.y2_c01322{bottom:1161.271500px;}
.y1_c01322{bottom:1216.485000px;}
.h16_c01322{height:24.001728px;}
.h2_c01322{height:72.000000px;}
.h6_c01322{height:72.003600px;}
.h9_c01322{height:78.000000px;}
.hd_c01322{height:78.004719px;}
.h15_c01322{height:78.005616px;}
.h14_c01322{height:78.009983px;}
.h12_c01322{height:78.346740px;}
.hb_c01322{height:84.000000px;}
.h4_c01322{height:84.004200px;}
.hc_c01322{height:84.005082px;}
.h8_c01322{height:90.000000px;}
.h5_c01322{height:90.004500px;}
.hf_c01322{height:90.005445px;}
.he_c01322{height:96.005808px;}
.h13_c01322{height:98.183940px;}
.ha_c01322{height:102.000000px;}
.h3_c01322{height:102.003264px;}
.h7_c01322{height:120.000000px;}
.h11_c01322{height:120.007260px;}
.h17_c01322{height:126.004032px;}
.h10_c01322{height:132.007986px;}
.h1_c01322{height:1250.250000px;}
.h0_c01322{height:1250.370000px;}
.w1_c01322{width:912.000000px;}
.w0_c01322{width:912.300000px;}
.x0_c01322{left:0.000000px;}
.x2c_c01322{left:154.255500px;}
.x5b_c01322{left:155.986500px;}
.x68_c01322{left:161.628630px;}
.x7b_c01322{left:163.692945px;}
.x71_c01322{left:165.096626px;}
.x49_c01322{left:167.032500px;}
.x24_c01322{left:168.476655px;}
.x10_c01322{left:169.495005px;}
.x36_c01322{left:170.509500px;}
.x80_c01322{left:198.265386px;}
.x54_c01322{left:199.695000px;}
.x3e_c01322{left:200.761500px;}
.x2d_c01322{left:201.798000px;}
.x69_c01322{left:209.944259px;}
.x11_c01322{left:213.489210px;}
.xb0_c01322{left:217.488000px;}
.x50_c01322{left:223.455000px;}
.xa8_c01322{left:224.871000px;}
.x9c_c01322{left:230.651906px;}
.x2e_c01322{left:234.694500px;}
.xaf_c01322{left:240.574662px;}
.x90_c01322{left:242.594364px;}
.x37_c01322{left:244.209000px;}
.x12_c01322{left:246.159345px;}
.x86_c01322{left:252.829853px;}
.x1c_c01322{left:256.772130px;}
.x79_c01322{left:264.383226px;}
.x55_c01322{left:265.840500px;}
.xa1_c01322{left:272.484000px;}
.x91_c01322{left:274.686864px;}
.x62_c01322{left:276.316500px;}
.x38_c01322{left:277.413000px;}
.x25_c01322{left:278.640000px;}
.x97_c01322{left:285.525843px;}
.x6a_c01322{left:287.175158px;}
.xb1_c01322{left:293.619000px;}
.x87_c01322{left:295.708472px;}
.x2f_c01322{left:299.491500px;}
.x13_c01322{left:301.255605px;}
.x56_c01322{left:308.772000px;}
.x3f_c01322{left:310.377000px;}
.x3_c01322{left:312.007500px;}
.xa9_c01322{left:316.125000px;}
.x72_c01322{left:319.553708px;}
.x14_c01322{left:323.383215px;}
.x5c_c01322{left:331.471500px;}
.xa2_c01322{left:339.723000px;}
.x40_c01322{left:344.421000px;}
.x63_c01322{left:352.503000px;}
.x51_c01322{left:354.964500px;}
.x15_c01322{left:357.146910px;}
.x6b_c01322{left:364.152540px;}
.x8_c01322{left:367.327500px;}
.xb2_c01322{left:371.920500px;}
.x98_c01322{left:373.544774px;}
.x73_c01322{left:374.935539px;}
.xaa_c01322{left:382.539000px;}
.x9d_c01322{left:385.649706px;}
.x81_c01322{left:386.714886px;}
.x39_c01322{left:388.116000px;}
.x1_c01322{left:389.340000px;}
.xa3_c01322{left:393.673500px;}
.x74_c01322{left:396.779265px;}
.x4a_c01322{left:398.064000px;}
.x1d_c01322{left:399.608910px;}
.x5d_c01322{left:401.925000px;}
.xb3_c01322{left:403.524000px;}
.x7c_c01322{left:408.302135px;}
.x9_c01322{left:411.876000px;}
.x2_c01322{left:414.180000px;}
.x41_c01322{left:415.954500px;}
.x9e_c01322{left:419.595827px;}
.x4b_c01322{left:421.114500px;}
.x4_c01322{left:422.170500px;}
.x82_c01322{left:429.101886px;}
.x6c_c01322{left:430.561961px;}
.x30_c01322{left:433.401000px;}
.x95_c01322{left:435.232754px;}
.x88_c01322{left:441.308570px;}
.x75_c01322{left:452.140097px;}
.x31_c01322{left:453.918000px;}
.x16_c01322{left:455.958345px;}
.x92_c01322{left:461.822364px;}
.x89_c01322{left:463.242113px;}
.x3a_c01322{left:465.102000px;}
.xa4_c01322{left:471.235500px;}
.x5e_c01322{left:472.671000px;}
.x26_c01322{left:477.090000px;}
.x64_c01322{left:485.596500px;}
.x5_c01322{left:488.056500px;}
.xab_c01322{left:493.402500px;}
.x57_c01322{left:497.775000px;}
.x42_c01322{left:498.826500px;}
.x83_c01322{left:507.937386px;}
.xa_c01322{left:511.515000px;}
.x8a_c01322{left:517.133237px;}
.x43_c01322{left:520.170000px;}
.x17_c01322{left:521.844645px;}
.xac_c01322{left:526.978500px;}
.x6d_c01322{left:529.930833px;}
.x65_c01322{left:541.516500px;}
.x8b_c01322{left:550.490268px;}
.x27_c01322{left:554.580000px;}
.xad_c01322{left:560.725500px;}
.x6e_c01322{left:563.133302px;}
.x58_c01322{left:564.199500px;}
.x3b_c01322{left:565.234500px;}
.xa5_c01322{left:584.629500px;}
.x28_c01322{left:589.950000px;}
.x93_c01322{left:594.396864px;}
.x7a_c01322{left:596.649552px;}
.x1e_c01322{left:598.878345px;}
.x3c_c01322{left:600.066000px;}
.x5f_c01322{left:603.346500px;}
.x76_c01322{left:606.586695px;}
.x32_c01322{left:609.705000px;}
.x6_c01322{left:611.440500px;}
.x8c_c01322{left:617.387331px;}
.x44_c01322{left:619.528500px;}
.xb_c01322{left:621.951000px;}
.x7d_c01322{left:630.352577px;}
.x66_c01322{left:640.303500px;}
.x33_c01322{left:642.627000px;}
.x18_c01322{left:644.162265px;}
.xa0_c01322{left:646.383440px;}
.x8d_c01322{left:648.971445px;}
.x9f_c01322{left:650.155286px;}
.x4c_c01322{left:652.482000px;}
.x45_c01322{left:653.538000px;}
.xa6_c01322{left:660.432000px;}
.x52_c01322{left:663.021000px;}
.x1f_c01322{left:665.301990px;}
.xae_c01322{left:671.418000px;}
.x59_c01322{left:673.542000px;}
.x29_c01322{left:676.350000px;}
.x19_c01322{left:677.924460px;}
.x99_c01322{left:683.769605px;}
.x4d_c01322{left:686.236500px;}
.x20_c01322{left:699.053865px;}
.x6f_c01322{left:705.975588px;}
.x5a_c01322{left:707.301000px;}
.x2a_c01322{left:709.020000px;}
.x34_c01322{left:710.943000px;}
.x94_c01322{left:716.705364px;}
.x9a_c01322{left:717.788847px;}
.x46_c01322{left:720.507000px;}
.x7e_c01322{left:727.969149px;}
.x77_c01322{left:729.161754px;}
.xc_c01322{left:732.114000px;}
.x3d_c01322{left:741.547500px;}
.x2b_c01322{left:744.120000px;}
.x4e_c01322{left:752.925000px;}
.x21_c01322{left:755.216475px;}
.x8e_c01322{left:760.656528px;}
.x84_c01322{left:763.612386px;}
.x60_c01322{left:765.880500px;}
.x78_c01322{left:772.082673px;}
.x22_c01322{left:776.547105px;}
.xa7_c01322{left:777.591000px;}
.x35_c01322{left:786.580500px;}
.x47_c01322{left:797.172000px;}
.xd_c01322{left:799.611000px;}
.x7f_c01322{left:805.725507px;}
.x85_c01322{left:808.441386px;}
.x1a_c01322{left:811.308135px;}
.x67_c01322{left:815.275500px;}
.x70_c01322{left:817.148472px;}
.xe_c01322{left:819.720000px;}
.x9b_c01322{left:825.993723px;}
.x8f_c01322{left:828.024558px;}
.x23_c01322{left:843.240780px;}
.x96_c01322{left:857.845601px;}
.x53_c01322{left:866.028000px;}
.x61_c01322{left:867.337500px;}
.x7_c01322{left:870.115500px;}
.x4f_c01322{left:872.082000px;}
.x1b_c01322{left:876.183375px;}
.x48_c01322{left:883.137000px;}
.xf_c01322{left:904.839000px;}
@media print{
.v0_c01322{vertical-align:0.000000pt;}
.v1_c01322{vertical-align:1.936117pt;}
.ls0_c01322{letter-spacing:0.000000pt;}
.ws0_c01322{word-spacing:0.000000pt;}
._3_c01322{margin-left:-47.641832pt;}
._4_c01322{margin-left:-35.706131pt;}
._0_c01322{margin-left:-7.697787pt;}
._1_c01322{margin-left:-1.607511pt;}
._2_c01322{width:13515.334373pt;}
.fs12_c01322{font-size:21.334869pt;}
.fs0_c01322{font-size:64.000000pt;}
.fs4_c01322{font-size:64.003200pt;}
.fs7_c01322{font-size:69.333333pt;}
.fsb_c01322{font-size:69.337528pt;}
.fs11_c01322{font-size:69.338325pt;}
.fs10_c01322{font-size:69.342207pt;}
.fs9_c01322{font-size:74.666667pt;}
.fs2_c01322{font-size:74.670400pt;}
.fsa_c01322{font-size:74.671184pt;}
.fs6_c01322{font-size:80.000000pt;}
.fs3_c01322{font-size:80.004000pt;}
.fsd_c01322{font-size:80.004840pt;}
.fsc_c01322{font-size:85.338496pt;}
.fs8_c01322{font-size:90.666667pt;}
.fs1_c01322{font-size:90.669568pt;}
.fs5_c01322{font-size:106.666667pt;}
.fsf_c01322{font-size:106.673120pt;}
.fs13_c01322{font-size:112.003584pt;}
.fse_c01322{font-size:117.340432pt;}
.y0_c01322{bottom:0.000000pt;}
.y11a_c01322{bottom:97.738208pt;}
.y119_c01322{bottom:97.975957pt;}
.y118_c01322{bottom:98.119957pt;}
.y117_c01322{bottom:98.609589pt;}
.y116_c01322{bottom:98.834325pt;}
.y115_c01322{bottom:99.391136pt;}
.y114_c01322{bottom:99.932512pt;}
.y113_c01322{bottom:100.328000pt;}
.y10f_c01322{bottom:129.275573pt;}
.y110_c01322{bottom:129.275995pt;}
.y112_c01322{bottom:129.276272pt;}
.y111_c01322{bottom:129.276384pt;}
.y10e_c01322{bottom:143.001995pt;}
.y10d_c01322{bottom:143.361963pt;}
.y10c_c01322{bottom:144.338219pt;}
.y10b_c01322{bottom:144.540235pt;}
.y10a_c01322{bottom:145.518939pt;}
.y109_c01322{bottom:145.878907pt;}
.y108_c01322{bottom:146.237051pt;}
.y107_c01322{bottom:147.419595pt;}
.y106_c01322{bottom:148.128011pt;}
.y105_c01322{bottom:149.101387pt;}
.y104_c01322{bottom:149.762667pt;}
.y103_c01322{bottom:174.498923pt;}
.y102_c01322{bottom:176.165184pt;}
.y101_c01322{bottom:177.243264pt;}
.y100_c01322{bottom:178.855979pt;}
.yff_c01322{bottom:179.594325pt;}
.yfe_c01322{bottom:179.959083pt;}
.yfd_c01322{bottom:180.726379pt;}
.yfc_c01322{bottom:181.682667pt;}
.yfb_c01322{bottom:209.144900pt;}
.yfa_c01322{bottom:212.142075pt;}
.yf9_c01322{bottom:237.183287pt;}
.yf8_c01322{bottom:238.876955pt;}
.yf7_c01322{bottom:240.167587pt;}
.yf6_c01322{bottom:240.610145pt;}
.yf5_c01322{bottom:241.336672pt;}
.yf4_c01322{bottom:241.699260pt;}
.yf3_c01322{bottom:242.278311pt;}
.yf2_c01322{bottom:242.869064pt;}
.yf1_c01322{bottom:243.352144pt;}
.yf0_c01322{bottom:243.674887pt;}
.yef_c01322{bottom:244.065897pt;}
.yee_c01322{bottom:271.307761pt;}
.yed_c01322{bottom:271.661820pt;}
.yec_c01322{bottom:272.527800pt;}
.yeb_c01322{bottom:272.800425pt;}
.yea_c01322{bottom:273.141531pt;}
.ye9_c01322{bottom:273.319888pt;}
.ye8_c01322{bottom:274.130607pt;}
.ye7_c01322{bottom:274.383472pt;}
.ye6_c01322{bottom:274.653457pt;}
.ye5_c01322{bottom:275.281668pt;}
.ye4_c01322{bottom:275.986279pt;}
.ye3_c01322{bottom:276.688249pt;}
.ye2_c01322{bottom:276.947701pt;}
.ye1_c01322{bottom:301.000633pt;}
.ye0_c01322{bottom:303.787655pt;}
.ydf_c01322{bottom:305.508893pt;}
.yde_c01322{bottom:308.390448pt;}
.ydd_c01322{bottom:333.476433pt;}
.ydc_c01322{bottom:334.139059pt;}
.ydb_c01322{bottom:334.672339pt;}
.yda_c01322{bottom:335.424812pt;}
.yd9_c01322{bottom:335.968623pt;}
.yd8_c01322{bottom:336.177344pt;}
.yd7_c01322{bottom:336.826373pt;}
.yd6_c01322{bottom:337.045537pt;}
.yd5_c01322{bottom:337.798392pt;}
.yd4_c01322{bottom:338.112185pt;}
.yd3_c01322{bottom:338.872784pt;}
.yd2_c01322{bottom:363.639760pt;}
.yd1_c01322{bottom:364.538499pt;}
.yd0_c01322{bottom:366.027912pt;}
.ycf_c01322{bottom:366.448748pt;}
.yce_c01322{bottom:367.340215pt;}
.ycd_c01322{bottom:367.785053pt;}
.ycc_c01322{bottom:368.040552pt;}
.ycb_c01322{bottom:368.504012pt;}
.yca_c01322{bottom:368.795816pt;}
.yc9_c01322{bottom:369.365801pt;}
.yc8_c01322{bottom:370.265640pt;}
.yc7_c01322{bottom:370.736857pt;}
.yc6_c01322{bottom:371.308133pt;}
.yc5_c01322{bottom:372.474527pt;}
.yc4_c01322{bottom:396.144483pt;}
.yc3_c01322{bottom:396.582811pt;}
.yc2_c01322{bottom:396.925996pt;}
.yc1_c01322{bottom:397.575392pt;}
.yc0_c01322{bottom:398.113923pt;}
.ybf_c01322{bottom:398.549493pt;}
.ybe_c01322{bottom:399.082744pt;}
.ybd_c01322{bottom:399.853580pt;}
.ybc_c01322{bottom:400.268031pt;}
.ybb_c01322{bottom:400.486417pt;}
.yba_c01322{bottom:401.455972pt;}
.yb9_c01322{bottom:402.110648pt;}
.yb8_c01322{bottom:402.474601pt;}
.yb7_c01322{bottom:427.740191pt;}
.yb6_c01322{bottom:428.431133pt;}
.yb5_c01322{bottom:429.095703pt;}
.yb4_c01322{bottom:429.298929pt;}
.yb3_c01322{bottom:429.607327pt;}
.yb2_c01322{bottom:430.198071pt;}
.yb1_c01322{bottom:430.478115pt;}
.yb0_c01322{bottom:431.272732pt;}
.yaf_c01322{bottom:432.065221pt;}
.yae_c01322{bottom:432.348331pt;}
.yad_c01322{bottom:433.039669pt;}
.yac_c01322{bottom:433.447107pt;}
.yab_c01322{bottom:460.531428pt;}
.yaa_c01322{bottom:461.428317pt;}
.ya9_c01322{bottom:461.683091pt;}
.ya8_c01322{bottom:462.036768pt;}
.ya7_c01322{bottom:462.485859pt;}
.ya6_c01322{bottom:463.349815pt;}
.ya5_c01322{bottom:463.606627pt;}
.ya4_c01322{bottom:463.796896pt;}
.ya3_c01322{bottom:464.085072pt;}
.ya2_c01322{bottom:464.599649pt;}
.ya1_c01322{bottom:464.877057pt;}
.ya0_c01322{bottom:491.282124pt;}
.y9f_c01322{bottom:491.587115pt;}
.y9e_c01322{bottom:492.214321pt;}
.y9d_c01322{bottom:492.457587pt;}
.y9c_c01322{bottom:492.999400pt;}
.y9b_c01322{bottom:493.555681pt;}
.y9a_c01322{bottom:493.948969pt;}
.y99_c01322{bottom:494.103879pt;}
.y98_c01322{bottom:494.497372pt;}
.y97_c01322{bottom:494.808891pt;}
.y96_c01322{bottom:495.596903pt;}
.y95_c01322{bottom:523.920149pt;}
.y94_c01322{bottom:524.612459pt;}
.y93_c01322{bottom:524.817249pt;}
.y92_c01322{bottom:525.154497pt;}
.y91_c01322{bottom:525.501077pt;}
.y90_c01322{bottom:525.707043pt;}
.y8f_c01322{bottom:526.115244pt;}
.y8e_c01322{bottom:526.325273pt;}
.y8d_c01322{bottom:526.528801pt;}
.y8c_c01322{bottom:526.738581pt;}
.y8b_c01322{bottom:527.217883pt;}
.y8a_c01322{bottom:527.698329pt;}
.y89_c01322{bottom:527.998728pt;}
.y88_c01322{bottom:554.651512pt;}
.y87_c01322{bottom:555.697069pt;}
.y86_c01322{bottom:556.040313pt;}
.y85_c01322{bottom:556.362349pt;}
.y84_c01322{bottom:557.112124pt;}
.y83_c01322{bottom:557.328267pt;}
.y82_c01322{bottom:557.875040pt;}
.y81_c01322{bottom:558.191825pt;}
.y80_c01322{bottom:558.833155pt;}
.y7f_c01322{bottom:559.176399pt;}
.y7e_c01322{bottom:559.921333pt;}
.y7d_c01322{bottom:589.804000pt;}
.y7c_c01322{bottom:616.454667pt;}
.y7b_c01322{bottom:617.085333pt;}
.y7a_c01322{bottom:618.096000pt;}
.y79_c01322{bottom:618.909333pt;}
.y78_c01322{bottom:619.349333pt;}
.y77_c01322{bottom:619.788000pt;}
.y76_c01322{bottom:620.250667pt;}
.y75_c01322{bottom:620.880000pt;}
.y74_c01322{bottom:647.922667pt;}
.y73_c01322{bottom:648.260000pt;}
.y72_c01322{bottom:648.953333pt;}
.y71_c01322{bottom:649.164000pt;}
.y70_c01322{bottom:649.844000pt;}
.y6f_c01322{bottom:650.257333pt;}
.y6e_c01322{bottom:650.458667pt;}
.y6d_c01322{bottom:650.658667pt;}
.y6c_c01322{bottom:651.433333pt;}
.y6b_c01322{bottom:651.700000pt;}
.y6a_c01322{bottom:652.112000pt;}
.y69_c01322{bottom:652.320000pt;}
.y68_c01322{bottom:679.896000pt;}
.y67_c01322{bottom:680.393333pt;}
.y66_c01322{bottom:680.598667pt;}
.y65_c01322{bottom:680.872000pt;}
.y64_c01322{bottom:681.160000pt;}
.y63_c01322{bottom:682.046667pt;}
.y62_c01322{bottom:682.804000pt;}
.y61_c01322{bottom:683.076000pt;}
.y60_c01322{bottom:683.894667pt;}
.y5f_c01322{bottom:684.241333pt;}
.y5e_c01322{bottom:710.814667pt;}
.y5d_c01322{bottom:711.140000pt;}
.y5c_c01322{bottom:711.556000pt;}
.y5b_c01322{bottom:711.970667pt;}
.y5a_c01322{bottom:712.181333pt;}
.y59_c01322{bottom:712.997333pt;}
.y58_c01322{bottom:713.209333pt;}
.y57_c01322{bottom:713.621333pt;}
.y56_c01322{bottom:713.765333pt;}
.y55_c01322{bottom:714.102667pt;}
.y54_c01322{bottom:714.993333pt;}
.y53_c01322{bottom:715.202667pt;}
.y52_c01322{bottom:742.996000pt;}
.y51_c01322{bottom:743.606667pt;}
.y50_c01322{bottom:744.152000pt;}
.y4f_c01322{bottom:744.628000pt;}
.y4e_c01322{bottom:744.869333pt;}
.y4d_c01322{bottom:745.333333pt;}
.y4c_c01322{bottom:745.574667pt;}
.y4b_c01322{bottom:745.726667pt;}
.y4a_c01322{bottom:745.969333pt;}
.y49_c01322{bottom:746.316000pt;}
.y48_c01322{bottom:746.510667pt;}
.y47_c01322{bottom:746.825333pt;}
.y46_c01322{bottom:747.068000pt;}
.y45_c01322{bottom:747.605333pt;}
.y44_c01322{bottom:747.846667pt;}
.y43_c01322{bottom:748.080000pt;}
.y42_c01322{bottom:775.188000pt;}
.y41_c01322{bottom:775.884000pt;}
.y40_c01322{bottom:776.177333pt;}
.y3f_c01322{bottom:777.142667pt;}
.y3e_c01322{bottom:777.452000pt;}
.y3d_c01322{bottom:777.838667pt;}
.y3c_c01322{bottom:778.144000pt;}
.y3b_c01322{bottom:778.342667pt;}
.y3a_c01322{bottom:779.026667pt;}
.y39_c01322{bottom:780.010667pt;}
.y38_c01322{bottom:780.305333pt;}
.y37_c01322{bottom:780.960000pt;}
.y36_c01322{bottom:802.656000pt;}
.y35_c01322{bottom:803.016000pt;}
.y34_c01322{bottom:803.822667pt;}
.y33_c01322{bottom:804.552000pt;}
.y32_c01322{bottom:804.902667pt;}
.y31_c01322{bottom:806.209333pt;}
.y30_c01322{bottom:806.565333pt;}
.y2f_c01322{bottom:806.784000pt;}
.y2e_c01322{bottom:807.144000pt;}
.y2d_c01322{bottom:808.213333pt;}
.y2c_c01322{bottom:808.904000pt;}
.y2b_c01322{bottom:809.254667pt;}
.y2a_c01322{bottom:809.761333pt;}
.y29_c01322{bottom:841.574667pt;}
.y28_c01322{bottom:873.028080pt;}
.y1d_c01322{bottom:902.332333pt;}
.y1f_c01322{bottom:902.332427pt;}
.y20_c01322{bottom:902.332707pt;}
.y1e_c01322{bottom:902.332907pt;}
.y26_c01322{bottom:902.333147pt;}
.y21_c01322{bottom:902.333293pt;}
.y25_c01322{bottom:902.333400pt;}
.y22_c01322{bottom:902.333600pt;}
.y27_c01322{bottom:902.333707pt;}
.y23_c01322{bottom:902.333893pt;}
.y24_c01322{bottom:902.333907pt;}
.y1c_c01322{bottom:932.141227pt;}
.y1b_c01322{bottom:932.429867pt;}
.y1a_c01322{bottom:933.022107pt;}
.y19_c01322{bottom:933.171533pt;}
.y18_c01322{bottom:933.714747pt;}
.y17_c01322{bottom:934.007040pt;}
.y16_c01322{bottom:934.302773pt;}
.y15_c01322{bottom:934.446653pt;}
.y14_c01322{bottom:934.596093pt;}
.y13_c01322{bottom:934.694107pt;}
.y12_c01322{bottom:934.938493pt;}
.y11_c01322{bottom:935.083547pt;}
.y10_c01322{bottom:935.278587pt;}
.yf_c01322{bottom:962.656253pt;}
.ye_c01322{bottom:963.412867pt;}
.yd_c01322{bottom:963.591613pt;}
.yc_c01322{bottom:964.191587pt;}
.yb_c01322{bottom:965.170813pt;}
.ya_c01322{bottom:966.152467pt;}
.y9_c01322{bottom:967.038147pt;}
.y8_c01322{bottom:967.434133pt;}
.y7_c01322{bottom:967.921333pt;}
.y6_c01322{bottom:1028.272565pt;}
.y5_c01322{bottom:1030.112032pt;}
.y4_c01322{bottom:1030.989429pt;}
.y3_c01322{bottom:1031.457952pt;}
.y2_c01322{bottom:1032.241333pt;}
.y1_c01322{bottom:1081.320000pt;}
.h16_c01322{height:21.334869pt;}
.h2_c01322{height:64.000000pt;}
.h6_c01322{height:64.003200pt;}
.h9_c01322{height:69.333333pt;}
.hd_c01322{height:69.337528pt;}
.h15_c01322{height:69.338325pt;}
.h14_c01322{height:69.342207pt;}
.h12_c01322{height:69.641546pt;}
.hb_c01322{height:74.666667pt;}
.h4_c01322{height:74.670400pt;}
.hc_c01322{height:74.671184pt;}
.h8_c01322{height:80.000000pt;}
.h5_c01322{height:80.004000pt;}
.hf_c01322{height:80.004840pt;}
.he_c01322{height:85.338496pt;}
.h13_c01322{height:87.274613pt;}
.ha_c01322{height:90.666667pt;}
.h3_c01322{height:90.669568pt;}
.h7_c01322{height:106.666667pt;}
.h11_c01322{height:106.673120pt;}
.h17_c01322{height:112.003584pt;}
.h10_c01322{height:117.340432pt;}
.h1_c01322{height:1111.333333pt;}
.h0_c01322{height:1111.440000pt;}
.w1_c01322{width:810.666667pt;}
.w0_c01322{width:810.933333pt;}
.x0_c01322{left:0.000000pt;}
.x2c_c01322{left:137.116000pt;}
.x5b_c01322{left:138.654667pt;}
.x68_c01322{left:143.669893pt;}
.x7b_c01322{left:145.504840pt;}
.x71_c01322{left:146.752556pt;}
.x49_c01322{left:148.473333pt;}
.x24_c01322{left:149.757027pt;}
.x10_c01322{left:150.662227pt;}
.x36_c01322{left:151.564000pt;}
.x80_c01322{left:176.235899pt;}
.x54_c01322{left:177.506667pt;}
.x3e_c01322{left:178.454667pt;}
.x2d_c01322{left:179.376000pt;}
.x69_c01322{left:186.617119pt;}
.x11_c01322{left:189.768187pt;}
.xb0_c01322{left:193.322667pt;}
.x50_c01322{left:198.626667pt;}
.xa8_c01322{left:199.885333pt;}
.x9c_c01322{left:205.023916pt;}
.x2e_c01322{left:208.617333pt;}
.xaf_c01322{left:213.844144pt;}
.x90_c01322{left:215.639435pt;}
.x37_c01322{left:217.074667pt;}
.x12_c01322{left:218.808307pt;}
.x86_c01322{left:224.737647pt;}
.x1c_c01322{left:228.241893pt;}
.x79_c01322{left:235.007312pt;}
.x55_c01322{left:236.302667pt;}
.xa1_c01322{left:242.208000pt;}
.x91_c01322{left:244.166101pt;}
.x62_c01322{left:245.614667pt;}
.x38_c01322{left:246.589333pt;}
.x25_c01322{left:247.680000pt;}
.x97_c01322{left:253.800749pt;}
.x6a_c01322{left:255.266807pt;}
.xb1_c01322{left:260.994667pt;}
.x87_c01322{left:262.851975pt;}
.x2f_c01322{left:266.214667pt;}
.x13_c01322{left:267.782760pt;}
.x56_c01322{left:274.464000pt;}
.x3f_c01322{left:275.890667pt;}
.x3_c01322{left:277.340000pt;}
.xa9_c01322{left:281.000000pt;}
.x72_c01322{left:284.047740pt;}
.x14_c01322{left:287.451747pt;}
.x5c_c01322{left:294.641333pt;}
.xa2_c01322{left:301.976000pt;}
.x40_c01322{left:306.152000pt;}
.x63_c01322{left:313.336000pt;}
.x51_c01322{left:315.524000pt;}
.x15_c01322{left:317.463920pt;}
.x6b_c01322{left:323.691147pt;}
.x8_c01322{left:326.513333pt;}
.xb2_c01322{left:330.596000pt;}
.x98_c01322{left:332.039799pt;}
.x73_c01322{left:333.276035pt;}
.xaa_c01322{left:340.034667pt;}
.x9d_c01322{left:342.799739pt;}
.x81_c01322{left:343.746565pt;}
.x39_c01322{left:344.992000pt;}
.x1_c01322{left:346.080000pt;}
.xa3_c01322{left:349.932000pt;}
.x74_c01322{left:352.692680pt;}
.x4a_c01322{left:353.834667pt;}
.x1d_c01322{left:355.207920pt;}
.x5d_c01322{left:357.266667pt;}
.xb3_c01322{left:358.688000pt;}
.x7c_c01322{left:362.935231pt;}
.x9_c01322{left:366.112000pt;}
.x2_c01322{left:368.160000pt;}
.x41_c01322{left:369.737333pt;}
.x9e_c01322{left:372.974068pt;}
.x4b_c01322{left:374.324000pt;}
.x4_c01322{left:375.262667pt;}
.x82_c01322{left:381.423899pt;}
.x6c_c01322{left:382.721743pt;}
.x30_c01322{left:385.245333pt;}
.x95_c01322{left:386.873559pt;}
.x88_c01322{left:392.274284pt;}
.x75_c01322{left:401.902308pt;}
.x31_c01322{left:403.482667pt;}
.x16_c01322{left:405.296307pt;}
.x92_c01322{left:410.508768pt;}
.x89_c01322{left:411.770767pt;}
.x3a_c01322{left:413.424000pt;}
.xa4_c01322{left:418.876000pt;}
.x5e_c01322{left:420.152000pt;}
.x26_c01322{left:424.080000pt;}
.x64_c01322{left:431.641333pt;}
.x5_c01322{left:433.828000pt;}
.xab_c01322{left:438.580000pt;}
.x57_c01322{left:442.466667pt;}
.x42_c01322{left:443.401333pt;}
.x83_c01322{left:451.499899pt;}
.xa_c01322{left:454.680000pt;}
.x8a_c01322{left:459.673988pt;}
.x43_c01322{left:462.373333pt;}
.x17_c01322{left:463.861907pt;}
.xac_c01322{left:468.425333pt;}
.x6d_c01322{left:471.049629pt;}
.x65_c01322{left:481.348000pt;}
.x8b_c01322{left:489.324683pt;}
.x27_c01322{left:492.960000pt;}
.xad_c01322{left:498.422667pt;}
.x6e_c01322{left:500.562935pt;}
.x58_c01322{left:501.510667pt;}
.x3b_c01322{left:502.430667pt;}
.xa5_c01322{left:519.670667pt;}
.x28_c01322{left:524.400000pt;}
.x93_c01322{left:528.352768pt;}
.x7a_c01322{left:530.355157pt;}
.x1e_c01322{left:532.336307pt;}
.x3c_c01322{left:533.392000pt;}
.x5f_c01322{left:536.308000pt;}
.x76_c01322{left:539.188173pt;}
.x32_c01322{left:541.960000pt;}
.x6_c01322{left:543.502667pt;}
.x8c_c01322{left:548.788739pt;}
.x44_c01322{left:550.692000pt;}
.xb_c01322{left:552.845333pt;}
.x7d_c01322{left:560.313401pt;}
.x66_c01322{left:569.158667pt;}
.x33_c01322{left:571.224000pt;}
.x18_c01322{left:572.588680pt;}
.xa0_c01322{left:574.563057pt;}
.x8d_c01322{left:576.863507pt;}
.x9f_c01322{left:577.915809pt;}
.x4c_c01322{left:579.984000pt;}
.x45_c01322{left:580.922667pt;}
.xa6_c01322{left:587.050667pt;}
.x52_c01322{left:589.352000pt;}
.x1f_c01322{left:591.379547pt;}
.xae_c01322{left:596.816000pt;}
.x59_c01322{left:598.704000pt;}
.x29_c01322{left:601.200000pt;}
.x19_c01322{left:602.599520pt;}
.x99_c01322{left:607.795204pt;}
.x4d_c01322{left:609.988000pt;}
.x20_c01322{left:621.381213pt;}
.x6f_c01322{left:627.533856pt;}
.x5a_c01322{left:628.712000pt;}
.x2a_c01322{left:630.240000pt;}
.x34_c01322{left:631.949333pt;}
.x94_c01322{left:637.071435pt;}
.x9a_c01322{left:638.034531pt;}
.x46_c01322{left:640.450667pt;}
.x7e_c01322{left:647.083688pt;}
.x77_c01322{left:648.143781pt;}
.xc_c01322{left:650.768000pt;}
.x3d_c01322{left:659.153333pt;}
.x2b_c01322{left:661.440000pt;}
.x4e_c01322{left:669.266667pt;}
.x21_c01322{left:671.303533pt;}
.x8e_c01322{left:676.139136pt;}
.x84_c01322{left:678.766565pt;}
.x60_c01322{left:680.782667pt;}
.x78_c01322{left:686.295709pt;}
.x22_c01322{left:690.264093pt;}
.xa7_c01322{left:691.192000pt;}
.x35_c01322{left:699.182667pt;}
.x47_c01322{left:708.597333pt;}
.xd_c01322{left:710.765333pt;}
.x7f_c01322{left:716.200451pt;}
.x85_c01322{left:718.614565pt;}
.x1a_c01322{left:721.162787pt;}
.x67_c01322{left:724.689333pt;}
.x70_c01322{left:726.354197pt;}
.xe_c01322{left:728.640000pt;}
.x9b_c01322{left:734.216643pt;}
.x8f_c01322{left:736.021829pt;}
.x23_c01322{left:749.547360pt;}
.x96_c01322{left:762.529423pt;}
.x53_c01322{left:769.802667pt;}
.x61_c01322{left:770.966667pt;}
.x7_c01322{left:773.436000pt;}
.x4f_c01322{left:775.184000pt;}
.x1b_c01322{left:778.829667pt;}
.x48_c01322{left:785.010667pt;}
.xf_c01322{left:804.301333pt;}
}





/* 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_c01323 {
    display:none;
  }
  .loading-indicator_c01323.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01323 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_c01323 { 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_c01323" -> "#page-container .classname_c01323")
 */
.pf_c01323 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01323 { /* 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_c01323.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01323 { /* 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_c01323 { /* 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_c01323 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01323 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01323 {overflow:visible;}
  }
}
.c_c01323 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01323 { /* 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_c01323:after { /* webkit #35443 */
  content: '';
}
.t_c01323:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01323 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 */
}
.__c01323 { /* 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_c01323 { /* info for Javascript */
  display:none;
}
.l_c01323 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01323 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01323 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01323: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_c01323 {
    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_c01323.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01323.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_c01323 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01323{font-family:sans-serif;visibility:hidden;}
.sc__c01323{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01323{-webkit-text-stroke:0px transparent;}
}
.y0_c01323{bottom:0.000000px;}
.h1_c01323{height:1250.250000px;}
.h0_c01323{height:1250.370000px;}
.w1_c01323{width:912.000000px;}
.w0_c01323{width:912.300000px;}
.x0_c01323{left:0.000000px;}
@media print{
.y0_c01323{bottom:0.000000pt;}
.h1_c01323{height:1111.333333pt;}
.h0_c01323{height:1111.440000pt;}
.w1_c01323{width:810.666667pt;}
.w0_c01323{width:810.933333pt;}
.x0_c01323{left:0.000000pt;}
}





/* 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_c01324 {
    display:none;
  }
  .loading-indicator_c01324.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01324 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_c01324 { 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_c01324" -> "#page-container .classname_c01324")
 */
.pf_c01324 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01324 { /* 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_c01324.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01324 { /* 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_c01324 { /* 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_c01324 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01324 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01324 {overflow:visible;}
  }
}
.c_c01324 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01324 { /* 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_c01324:after { /* webkit #35443 */
  content: '';
}
.t_c01324:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01324 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 */
}
.__c01324 { /* 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_c01324 { /* info for Javascript */
  display:none;
}
.l_c01324 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01324 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01324 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01324: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_c01324 {
    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_c01324.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01324.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_c01324 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01324{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01324;src:url('chunks/assets/font_7c6b9abe6ee2a268480c528b.woff2')format("woff");}.ff1_c01324{font-family:ff1_c01324;line-height:1.000000;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;}
.m52_c01324{transform:matrix(0.010605,-0.000042,0.001000,0.249998,0,0);-ms-transform:matrix(0.010605,-0.000042,0.001000,0.249998,0,0);-webkit-transform:matrix(0.010605,-0.000042,0.001000,0.249998,0,0);}
.m0_c01324{transform:matrix(0.027035,-0.000514,0.004749,0.249955,0,0);-ms-transform:matrix(0.027035,-0.000514,0.004749,0.249955,0,0);-webkit-transform:matrix(0.027035,-0.000514,0.004749,0.249955,0,0);}
.mc1_c01324{transform:matrix(0.032260,-0.000129,0.001000,0.249998,0,0);-ms-transform:matrix(0.032260,-0.000129,0.001000,0.249998,0,0);-webkit-transform:matrix(0.032260,-0.000129,0.001000,0.249998,0,0);}
.m3b_c01324{transform:matrix(0.053690,-0.000215,0.001000,0.249998,0,0);-ms-transform:matrix(0.053690,-0.000215,0.001000,0.249998,0,0);-webkit-transform:matrix(0.053690,-0.000215,0.001000,0.249998,0,0);}
.m11_c01324{transform:matrix(0.100918,-0.000606,0.001500,0.249996,0,0);-ms-transform:matrix(0.100918,-0.000606,0.001500,0.249996,0,0);-webkit-transform:matrix(0.100918,-0.000606,0.001500,0.249996,0,0);}
.m13e_c01324{transform:matrix(0.135298,0.000812,-0.001500,0.249996,0,0);-ms-transform:matrix(0.135298,0.000812,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.135298,0.000812,-0.001500,0.249996,0,0);}
.mf1_c01324{transform:matrix(0.161292,-0.000968,0.001500,0.249996,0,0);-ms-transform:matrix(0.161292,-0.000968,0.001500,0.249996,0,0);-webkit-transform:matrix(0.161292,-0.000968,0.001500,0.249996,0,0);}
.mfc_c01324{transform:matrix(0.161442,-0.000969,0.001500,0.249996,0,0);-ms-transform:matrix(0.161442,-0.000969,0.001500,0.249996,0,0);-webkit-transform:matrix(0.161442,-0.000969,0.001500,0.249996,0,0);}
.m116_c01324{transform:matrix(0.168248,-0.000841,0.001250,0.249997,0,0);-ms-transform:matrix(0.168248,-0.000841,0.001250,0.249997,0,0);-webkit-transform:matrix(0.168248,-0.000841,0.001250,0.249997,0,0);}
.m10b_c01324{transform:matrix(0.170478,-0.000852,0.001250,0.249997,0,0);-ms-transform:matrix(0.170478,-0.000852,0.001250,0.249997,0,0);-webkit-transform:matrix(0.170478,-0.000852,0.001250,0.249997,0,0);}
.m111_c01324{transform:matrix(0.170838,-0.000854,0.001250,0.249997,0,0);-ms-transform:matrix(0.170838,-0.000854,0.001250,0.249997,0,0);-webkit-transform:matrix(0.170838,-0.000854,0.001250,0.249997,0,0);}
.maa_c01324{transform:matrix(0.175024,-0.000700,0.001000,0.249998,0,0);-ms-transform:matrix(0.175024,-0.000700,0.001000,0.249998,0,0);-webkit-transform:matrix(0.175024,-0.000700,0.001000,0.249998,0,0);}
.m132_c01324{transform:matrix(0.178883,-0.000894,0.001250,0.249997,0,0);-ms-transform:matrix(0.178883,-0.000894,0.001250,0.249997,0,0);-webkit-transform:matrix(0.178883,-0.000894,0.001250,0.249997,0,0);}
.ma8_c01324{transform:matrix(0.179684,-0.000719,0.001000,0.249998,0,0);-ms-transform:matrix(0.179684,-0.000719,0.001000,0.249998,0,0);-webkit-transform:matrix(0.179684,-0.000719,0.001000,0.249998,0,0);}
.m84_c01324{transform:matrix(0.181129,-0.000725,0.001000,0.249998,0,0);-ms-transform:matrix(0.181129,-0.000725,0.001000,0.249998,0,0);-webkit-transform:matrix(0.181129,-0.000725,0.001000,0.249998,0,0);}
.mdb_c01324{transform:matrix(0.183724,-0.000735,0.001000,0.249998,0,0);-ms-transform:matrix(0.183724,-0.000735,0.001000,0.249998,0,0);-webkit-transform:matrix(0.183724,-0.000735,0.001000,0.249998,0,0);}
.mfa_c01324{transform:matrix(0.185222,-0.001111,0.001500,0.249996,0,0);-ms-transform:matrix(0.185222,-0.001111,0.001500,0.249996,0,0);-webkit-transform:matrix(0.185222,-0.001111,0.001500,0.249996,0,0);}
.m12d_c01324{transform:matrix(0.188063,-0.000940,0.001250,0.249997,0,0);-ms-transform:matrix(0.188063,-0.000940,0.001250,0.249997,0,0);-webkit-transform:matrix(0.188063,-0.000940,0.001250,0.249997,0,0);}
.mb5_c01324{transform:matrix(0.188483,-0.000754,0.001000,0.249998,0,0);-ms-transform:matrix(0.188483,-0.000754,0.001000,0.249998,0,0);-webkit-transform:matrix(0.188483,-0.000754,0.001000,0.249998,0,0);}
.m8b_c01324{transform:matrix(0.189743,-0.000759,0.001000,0.249998,0,0);-ms-transform:matrix(0.189743,-0.000759,0.001000,0.249998,0,0);-webkit-transform:matrix(0.189743,-0.000759,0.001000,0.249998,0,0);}
.m91_c01324{transform:matrix(0.190378,-0.000762,0.001000,0.249998,0,0);-ms-transform:matrix(0.190378,-0.000762,0.001000,0.249998,0,0);-webkit-transform:matrix(0.190378,-0.000762,0.001000,0.249998,0,0);}
.m8f_c01324{transform:matrix(0.190683,-0.000763,0.001000,0.249998,0,0);-ms-transform:matrix(0.190683,-0.000763,0.001000,0.249998,0,0);-webkit-transform:matrix(0.190683,-0.000763,0.001000,0.249998,0,0);}
.mf7_c01324{transform:matrix(0.190827,-0.001145,0.001500,0.249996,0,0);-ms-transform:matrix(0.190827,-0.001145,0.001500,0.249996,0,0);-webkit-transform:matrix(0.190827,-0.001145,0.001500,0.249996,0,0);}
.m2c_c01324{transform:matrix(0.193032,-0.001158,0.001500,0.249996,0,0);-ms-transform:matrix(0.193032,-0.001158,0.001500,0.249996,0,0);-webkit-transform:matrix(0.193032,-0.001158,0.001500,0.249996,0,0);}
.m35_c01324{transform:matrix(0.193577,-0.001161,0.001500,0.249996,0,0);-ms-transform:matrix(0.193577,-0.001161,0.001500,0.249996,0,0);-webkit-transform:matrix(0.193577,-0.001161,0.001500,0.249996,0,0);}
.m93_c01324{transform:matrix(0.193793,-0.000775,0.001000,0.249998,0,0);-ms-transform:matrix(0.193793,-0.000775,0.001000,0.249998,0,0);-webkit-transform:matrix(0.193793,-0.000775,0.001000,0.249998,0,0);}
.m12e_c01324{transform:matrix(0.194958,-0.000975,0.001250,0.249997,0,0);-ms-transform:matrix(0.194958,-0.000975,0.001250,0.249997,0,0);-webkit-transform:matrix(0.194958,-0.000975,0.001250,0.249997,0,0);}
.m13_c01324{transform:matrix(0.195076,-0.001170,0.001500,0.249996,0,0);-ms-transform:matrix(0.195076,-0.001170,0.001500,0.249996,0,0);-webkit-transform:matrix(0.195076,-0.001170,0.001500,0.249996,0,0);}
.m39_c01324{transform:matrix(0.195571,-0.001173,0.001500,0.249996,0,0);-ms-transform:matrix(0.195571,-0.001173,0.001500,0.249996,0,0);-webkit-transform:matrix(0.195571,-0.001173,0.001500,0.249996,0,0);}
.m10f_c01324{transform:matrix(0.195608,-0.000978,0.001250,0.249997,0,0);-ms-transform:matrix(0.195608,-0.000978,0.001250,0.249997,0,0);-webkit-transform:matrix(0.195608,-0.000978,0.001250,0.249997,0,0);}
.m94_c01324{transform:matrix(0.196378,-0.000786,0.001000,0.249998,0,0);-ms-transform:matrix(0.196378,-0.000786,0.001000,0.249998,0,0);-webkit-transform:matrix(0.196378,-0.000786,0.001000,0.249998,0,0);}
.m83_c01324{transform:matrix(0.197383,-0.000790,0.001000,0.249998,0,0);-ms-transform:matrix(0.197383,-0.000790,0.001000,0.249998,0,0);-webkit-transform:matrix(0.197383,-0.000790,0.001000,0.249998,0,0);}
.m15_c01324{transform:matrix(0.198396,-0.001190,0.001500,0.249996,0,0);-ms-transform:matrix(0.198396,-0.001190,0.001500,0.249996,0,0);-webkit-transform:matrix(0.198396,-0.001190,0.001500,0.249996,0,0);}
.mc7_c01324{transform:matrix(0.198888,-0.000796,0.001000,0.249998,0,0);-ms-transform:matrix(0.198888,-0.000796,0.001000,0.249998,0,0);-webkit-transform:matrix(0.198888,-0.000796,0.001000,0.249998,0,0);}
.m11c_c01324{transform:matrix(0.199363,-0.000997,0.001250,0.249997,0,0);-ms-transform:matrix(0.199363,-0.000997,0.001250,0.249997,0,0);-webkit-transform:matrix(0.199363,-0.000997,0.001250,0.249997,0,0);}
.m65_c01324{transform:matrix(0.199363,-0.000797,0.001000,0.249998,0,0);-ms-transform:matrix(0.199363,-0.000797,0.001000,0.249998,0,0);-webkit-transform:matrix(0.199363,-0.000797,0.001000,0.249998,0,0);}
.m37_c01324{transform:matrix(0.199696,-0.001198,0.001500,0.249996,0,0);-ms-transform:matrix(0.199696,-0.001198,0.001500,0.249996,0,0);-webkit-transform:matrix(0.199696,-0.001198,0.001500,0.249996,0,0);}
.m63_c01324{transform:matrix(0.201028,-0.000804,0.001000,0.249998,0,0);-ms-transform:matrix(0.201028,-0.000804,0.001000,0.249998,0,0);-webkit-transform:matrix(0.201028,-0.000804,0.001000,0.249998,0,0);}
.m85_c01324{transform:matrix(0.201443,-0.000806,0.001000,0.249998,0,0);-ms-transform:matrix(0.201443,-0.000806,0.001000,0.249998,0,0);-webkit-transform:matrix(0.201443,-0.000806,0.001000,0.249998,0,0);}
.m82_c01324{transform:matrix(0.202838,-0.000811,0.001000,0.249998,0,0);-ms-transform:matrix(0.202838,-0.000811,0.001000,0.249998,0,0);-webkit-transform:matrix(0.202838,-0.000811,0.001000,0.249998,0,0);}
.m6c_c01324{transform:matrix(0.203503,-0.000814,0.001000,0.249998,0,0);-ms-transform:matrix(0.203503,-0.000814,0.001000,0.249998,0,0);-webkit-transform:matrix(0.203503,-0.000814,0.001000,0.249998,0,0);}
.mc2_c01324{transform:matrix(0.204193,-0.000817,0.001000,0.249998,0,0);-ms-transform:matrix(0.204193,-0.000817,0.001000,0.249998,0,0);-webkit-transform:matrix(0.204193,-0.000817,0.001000,0.249998,0,0);}
.m87_c01324{transform:matrix(0.204313,-0.000817,0.001000,0.249998,0,0);-ms-transform:matrix(0.204313,-0.000817,0.001000,0.249998,0,0);-webkit-transform:matrix(0.204313,-0.000817,0.001000,0.249998,0,0);}
.mf5_c01324{transform:matrix(0.204536,-0.001227,0.001500,0.249996,0,0);-ms-transform:matrix(0.204536,-0.001227,0.001500,0.249996,0,0);-webkit-transform:matrix(0.204536,-0.001227,0.001500,0.249996,0,0);}
.m73_c01324{transform:matrix(0.205108,-0.000820,0.001000,0.249998,0,0);-ms-transform:matrix(0.205108,-0.000820,0.001000,0.249998,0,0);-webkit-transform:matrix(0.205108,-0.000820,0.001000,0.249998,0,0);}
.m69_c01324{transform:matrix(0.205323,-0.000821,0.001000,0.249998,0,0);-ms-transform:matrix(0.205323,-0.000821,0.001000,0.249998,0,0);-webkit-transform:matrix(0.205323,-0.000821,0.001000,0.249998,0,0);}
.m92_c01324{transform:matrix(0.205478,-0.000822,0.001000,0.249998,0,0);-ms-transform:matrix(0.205478,-0.000822,0.001000,0.249998,0,0);-webkit-transform:matrix(0.205478,-0.000822,0.001000,0.249998,0,0);}
.m117_c01324{transform:matrix(0.205842,-0.001029,0.001250,0.249997,0,0);-ms-transform:matrix(0.205842,-0.001029,0.001250,0.249997,0,0);-webkit-transform:matrix(0.205842,-0.001029,0.001250,0.249997,0,0);}
.m114_c01324{transform:matrix(0.206257,-0.001031,0.001250,0.249997,0,0);-ms-transform:matrix(0.206257,-0.001031,0.001250,0.249997,0,0);-webkit-transform:matrix(0.206257,-0.001031,0.001250,0.249997,0,0);}
.mcf_c01324{transform:matrix(0.206893,-0.000828,0.001000,0.249998,0,0);-ms-transform:matrix(0.206893,-0.000828,0.001000,0.249998,0,0);-webkit-transform:matrix(0.206893,-0.000828,0.001000,0.249998,0,0);}
.m88_c01324{transform:matrix(0.207868,-0.000831,0.001000,0.249998,0,0);-ms-transform:matrix(0.207868,-0.000831,0.001000,0.249998,0,0);-webkit-transform:matrix(0.207868,-0.000831,0.001000,0.249998,0,0);}
.m12f_c01324{transform:matrix(0.208057,-0.001040,0.001250,0.249997,0,0);-ms-transform:matrix(0.208057,-0.001040,0.001250,0.249997,0,0);-webkit-transform:matrix(0.208057,-0.001040,0.001250,0.249997,0,0);}
.m36_c01324{transform:matrix(0.209216,-0.001255,0.001500,0.249996,0,0);-ms-transform:matrix(0.209216,-0.001255,0.001500,0.249996,0,0);-webkit-transform:matrix(0.209216,-0.001255,0.001500,0.249996,0,0);}
.m68_c01324{transform:matrix(0.209218,-0.000837,0.001000,0.249998,0,0);-ms-transform:matrix(0.209218,-0.000837,0.001000,0.249998,0,0);-webkit-transform:matrix(0.209218,-0.000837,0.001000,0.249998,0,0);}
.m5f_c01324{transform:matrix(0.209358,-0.000837,0.001000,0.249998,0,0);-ms-transform:matrix(0.209358,-0.000837,0.001000,0.249998,0,0);-webkit-transform:matrix(0.209358,-0.000837,0.001000,0.249998,0,0);}
.md8_c01324{transform:matrix(0.209543,-0.000838,0.001000,0.249998,0,0);-ms-transform:matrix(0.209543,-0.000838,0.001000,0.249998,0,0);-webkit-transform:matrix(0.209543,-0.000838,0.001000,0.249998,0,0);}
.mfb_c01324{transform:matrix(0.209831,-0.001259,0.001500,0.249996,0,0);-ms-transform:matrix(0.209831,-0.001259,0.001500,0.249996,0,0);-webkit-transform:matrix(0.209831,-0.001259,0.001500,0.249996,0,0);}
.m71_c01324{transform:matrix(0.209888,-0.000840,0.001000,0.249998,0,0);-ms-transform:matrix(0.209888,-0.000840,0.001000,0.249998,0,0);-webkit-transform:matrix(0.209888,-0.000840,0.001000,0.249998,0,0);}
.m1_c01324{transform:matrix(0.210097,-0.003992,0.004749,0.249955,0,0);-ms-transform:matrix(0.210097,-0.003992,0.004749,0.249955,0,0);-webkit-transform:matrix(0.210097,-0.003992,0.004749,0.249955,0,0);}
.mf8_c01324{transform:matrix(0.210481,-0.001263,0.001500,0.249996,0,0);-ms-transform:matrix(0.210481,-0.001263,0.001500,0.249996,0,0);-webkit-transform:matrix(0.210481,-0.001263,0.001500,0.249996,0,0);}
.m11a_c01324{transform:matrix(0.211017,-0.001055,0.001250,0.249997,0,0);-ms-transform:matrix(0.211017,-0.001055,0.001250,0.249997,0,0);-webkit-transform:matrix(0.211017,-0.001055,0.001250,0.249997,0,0);}
.m12a_c01324{transform:matrix(0.211022,-0.001055,0.001250,0.249997,0,0);-ms-transform:matrix(0.211022,-0.001055,0.001250,0.249997,0,0);-webkit-transform:matrix(0.211022,-0.001055,0.001250,0.249997,0,0);}
.m12b_c01324{transform:matrix(0.211242,-0.001056,0.001250,0.249997,0,0);-ms-transform:matrix(0.211242,-0.001056,0.001250,0.249997,0,0);-webkit-transform:matrix(0.211242,-0.001056,0.001250,0.249997,0,0);}
.m8e_c01324{transform:matrix(0.211488,-0.000846,0.001000,0.249998,0,0);-ms-transform:matrix(0.211488,-0.000846,0.001000,0.249998,0,0);-webkit-transform:matrix(0.211488,-0.000846,0.001000,0.249998,0,0);}
.mee_c01324{transform:matrix(0.212126,-0.001273,0.001500,0.249996,0,0);-ms-transform:matrix(0.212126,-0.001273,0.001500,0.249996,0,0);-webkit-transform:matrix(0.212126,-0.001273,0.001500,0.249996,0,0);}
.m10c_c01324{transform:matrix(0.212457,-0.001062,0.001250,0.249997,0,0);-ms-transform:matrix(0.212457,-0.001062,0.001250,0.249997,0,0);-webkit-transform:matrix(0.212457,-0.001062,0.001250,0.249997,0,0);}
.m1a_c01324{transform:matrix(0.212566,-0.001275,0.001500,0.249996,0,0);-ms-transform:matrix(0.212566,-0.001275,0.001500,0.249996,0,0);-webkit-transform:matrix(0.212566,-0.001275,0.001500,0.249996,0,0);}
.m60_c01324{transform:matrix(0.213383,-0.000854,0.001000,0.249998,0,0);-ms-transform:matrix(0.213383,-0.000854,0.001000,0.249998,0,0);-webkit-transform:matrix(0.213383,-0.000854,0.001000,0.249998,0,0);}
.mb9_c01324{transform:matrix(0.213718,-0.000855,0.001000,0.249998,0,0);-ms-transform:matrix(0.213718,-0.000855,0.001000,0.249998,0,0);-webkit-transform:matrix(0.213718,-0.000855,0.001000,0.249998,0,0);}
.mf4_c01324{transform:matrix(0.214606,-0.001288,0.001500,0.249996,0,0);-ms-transform:matrix(0.214606,-0.001288,0.001500,0.249996,0,0);-webkit-transform:matrix(0.214606,-0.001288,0.001500,0.249996,0,0);}
.m5a_c01324{transform:matrix(0.214663,-0.000859,0.001000,0.249998,0,0);-ms-transform:matrix(0.214663,-0.000859,0.001000,0.249998,0,0);-webkit-transform:matrix(0.214663,-0.000859,0.001000,0.249998,0,0);}
.ma5_c01324{transform:matrix(0.214873,-0.000859,0.001000,0.249998,0,0);-ms-transform:matrix(0.214873,-0.000859,0.001000,0.249998,0,0);-webkit-transform:matrix(0.214873,-0.000859,0.001000,0.249998,0,0);}
.m66_c01324{transform:matrix(0.216468,-0.000866,0.001000,0.249998,0,0);-ms-transform:matrix(0.216468,-0.000866,0.001000,0.249998,0,0);-webkit-transform:matrix(0.216468,-0.000866,0.001000,0.249998,0,0);}
.m11b_c01324{transform:matrix(0.216702,-0.001084,0.001250,0.249997,0,0);-ms-transform:matrix(0.216702,-0.001084,0.001250,0.249997,0,0);-webkit-transform:matrix(0.216702,-0.001084,0.001250,0.249997,0,0);}
.mfe_c01324{transform:matrix(0.216896,-0.001301,0.001500,0.249996,0,0);-ms-transform:matrix(0.216896,-0.001301,0.001500,0.249996,0,0);-webkit-transform:matrix(0.216896,-0.001301,0.001500,0.249996,0,0);}
.m3a_c01324{transform:matrix(0.216946,-0.001302,0.001500,0.249996,0,0);-ms-transform:matrix(0.216946,-0.001302,0.001500,0.249996,0,0);-webkit-transform:matrix(0.216946,-0.001302,0.001500,0.249996,0,0);}
.m6d_c01324{transform:matrix(0.217273,-0.000869,0.001000,0.249998,0,0);-ms-transform:matrix(0.217273,-0.000869,0.001000,0.249998,0,0);-webkit-transform:matrix(0.217273,-0.000869,0.001000,0.249998,0,0);}
.mf6_c01324{transform:matrix(0.217441,-0.001305,0.001500,0.249996,0,0);-ms-transform:matrix(0.217441,-0.001305,0.001500,0.249996,0,0);-webkit-transform:matrix(0.217441,-0.001305,0.001500,0.249996,0,0);}
.ma3_c01324{transform:matrix(0.217858,-0.000871,0.001000,0.249998,0,0);-ms-transform:matrix(0.217858,-0.000871,0.001000,0.249998,0,0);-webkit-transform:matrix(0.217858,-0.000871,0.001000,0.249998,0,0);}
.m9d_c01324{transform:matrix(0.217913,-0.000872,0.001000,0.249998,0,0);-ms-transform:matrix(0.217913,-0.000872,0.001000,0.249998,0,0);-webkit-transform:matrix(0.217913,-0.000872,0.001000,0.249998,0,0);}
.mf9_c01324{transform:matrix(0.218211,-0.001309,0.001500,0.249996,0,0);-ms-transform:matrix(0.218211,-0.001309,0.001500,0.249996,0,0);-webkit-transform:matrix(0.218211,-0.001309,0.001500,0.249996,0,0);}
.mbd_c01324{transform:matrix(0.218383,-0.000874,0.001000,0.249998,0,0);-ms-transform:matrix(0.218383,-0.000874,0.001000,0.249998,0,0);-webkit-transform:matrix(0.218383,-0.000874,0.001000,0.249998,0,0);}
.mbe_c01324{transform:matrix(0.218923,-0.000876,0.001000,0.249998,0,0);-ms-transform:matrix(0.218923,-0.000876,0.001000,0.249998,0,0);-webkit-transform:matrix(0.218923,-0.000876,0.001000,0.249998,0,0);}
.m90_c01324{transform:matrix(0.219198,-0.000877,0.001000,0.249998,0,0);-ms-transform:matrix(0.219198,-0.000877,0.001000,0.249998,0,0);-webkit-transform:matrix(0.219198,-0.000877,0.001000,0.249998,0,0);}
.m2b_c01324{transform:matrix(0.219536,-0.001317,0.001500,0.249996,0,0);-ms-transform:matrix(0.219536,-0.001317,0.001500,0.249996,0,0);-webkit-transform:matrix(0.219536,-0.001317,0.001500,0.249996,0,0);}
.m12c_c01324{transform:matrix(0.220172,-0.001101,0.001250,0.249997,0,0);-ms-transform:matrix(0.220172,-0.001101,0.001250,0.249997,0,0);-webkit-transform:matrix(0.220172,-0.001101,0.001250,0.249997,0,0);}
.m30_c01324{transform:matrix(0.220186,-0.001321,0.001500,0.249996,0,0);-ms-transform:matrix(0.220186,-0.001321,0.001500,0.249996,0,0);-webkit-transform:matrix(0.220186,-0.001321,0.001500,0.249996,0,0);}
.m1c_c01324{transform:matrix(0.220211,-0.001321,0.001500,0.249996,0,0);-ms-transform:matrix(0.220211,-0.001321,0.001500,0.249996,0,0);-webkit-transform:matrix(0.220211,-0.001321,0.001500,0.249996,0,0);}
.m6f_c01324{transform:matrix(0.220438,-0.000882,0.001000,0.249998,0,0);-ms-transform:matrix(0.220438,-0.000882,0.001000,0.249998,0,0);-webkit-transform:matrix(0.220438,-0.000882,0.001000,0.249998,0,0);}
.me5_c01324{transform:matrix(0.220898,-0.000884,0.001000,0.249998,0,0);-ms-transform:matrix(0.220898,-0.000884,0.001000,0.249998,0,0);-webkit-transform:matrix(0.220898,-0.000884,0.001000,0.249998,0,0);}
.m131_c01324{transform:matrix(0.221432,-0.001107,0.001250,0.249997,0,0);-ms-transform:matrix(0.221432,-0.001107,0.001250,0.249997,0,0);-webkit-transform:matrix(0.221432,-0.001107,0.001250,0.249997,0,0);}
.md9_c01324{transform:matrix(0.221633,-0.000887,0.001000,0.249998,0,0);-ms-transform:matrix(0.221633,-0.000887,0.001000,0.249998,0,0);-webkit-transform:matrix(0.221633,-0.000887,0.001000,0.249998,0,0);}
.m80_c01324{transform:matrix(0.222043,-0.000888,0.001000,0.249998,0,0);-ms-transform:matrix(0.222043,-0.000888,0.001000,0.249998,0,0);-webkit-transform:matrix(0.222043,-0.000888,0.001000,0.249998,0,0);}
.m62_c01324{transform:matrix(0.222633,-0.000891,0.001000,0.249998,0,0);-ms-transform:matrix(0.222633,-0.000891,0.001000,0.249998,0,0);-webkit-transform:matrix(0.222633,-0.000891,0.001000,0.249998,0,0);}
.m8c_c01324{transform:matrix(0.222713,-0.000891,0.001000,0.249998,0,0);-ms-transform:matrix(0.222713,-0.000891,0.001000,0.249998,0,0);-webkit-transform:matrix(0.222713,-0.000891,0.001000,0.249998,0,0);}
.mb7_c01324{transform:matrix(0.223178,-0.000893,0.001000,0.249998,0,0);-ms-transform:matrix(0.223178,-0.000893,0.001000,0.249998,0,0);-webkit-transform:matrix(0.223178,-0.000893,0.001000,0.249998,0,0);}
.mb4_c01324{transform:matrix(0.223378,-0.000894,0.001000,0.249998,0,0);-ms-transform:matrix(0.223378,-0.000894,0.001000,0.249998,0,0);-webkit-transform:matrix(0.223378,-0.000894,0.001000,0.249998,0,0);}
.m79_c01324{transform:matrix(0.223603,-0.000894,0.001000,0.249998,0,0);-ms-transform:matrix(0.223603,-0.000894,0.001000,0.249998,0,0);-webkit-transform:matrix(0.223603,-0.000894,0.001000,0.249998,0,0);}
.m98_c01324{transform:matrix(0.224078,-0.000896,0.001000,0.249998,0,0);-ms-transform:matrix(0.224078,-0.000896,0.001000,0.249998,0,0);-webkit-transform:matrix(0.224078,-0.000896,0.001000,0.249998,0,0);}
.m8a_c01324{transform:matrix(0.224118,-0.000896,0.001000,0.249998,0,0);-ms-transform:matrix(0.224118,-0.000896,0.001000,0.249998,0,0);-webkit-transform:matrix(0.224118,-0.000896,0.001000,0.249998,0,0);}
.m110_c01324{transform:matrix(0.224517,-0.001123,0.001250,0.249997,0,0);-ms-transform:matrix(0.224517,-0.001123,0.001250,0.249997,0,0);-webkit-transform:matrix(0.224517,-0.001123,0.001250,0.249997,0,0);}
.m6b_c01324{transform:matrix(0.224678,-0.000899,0.001000,0.249998,0,0);-ms-transform:matrix(0.224678,-0.000899,0.001000,0.249998,0,0);-webkit-transform:matrix(0.224678,-0.000899,0.001000,0.249998,0,0);}
.m56_c01324{transform:matrix(0.224718,-0.000899,0.001000,0.249998,0,0);-ms-transform:matrix(0.224718,-0.000899,0.001000,0.249998,0,0);-webkit-transform:matrix(0.224718,-0.000899,0.001000,0.249998,0,0);}
.m38_c01324{transform:matrix(0.224786,-0.001349,0.001500,0.249996,0,0);-ms-transform:matrix(0.224786,-0.001349,0.001500,0.249996,0,0);-webkit-transform:matrix(0.224786,-0.001349,0.001500,0.249996,0,0);}
.ma4_c01324{transform:matrix(0.225418,-0.000902,0.001000,0.249998,0,0);-ms-transform:matrix(0.225418,-0.000902,0.001000,0.249998,0,0);-webkit-transform:matrix(0.225418,-0.000902,0.001000,0.249998,0,0);}
.me3_c01324{transform:matrix(0.226033,-0.000904,0.001000,0.249998,0,0);-ms-transform:matrix(0.226033,-0.000904,0.001000,0.249998,0,0);-webkit-transform:matrix(0.226033,-0.000904,0.001000,0.249998,0,0);}
.m112_c01324{transform:matrix(0.226077,-0.001130,0.001250,0.249997,0,0);-ms-transform:matrix(0.226077,-0.001130,0.001250,0.249997,0,0);-webkit-transform:matrix(0.226077,-0.001130,0.001250,0.249997,0,0);}
.ma9_c01324{transform:matrix(0.226653,-0.000907,0.001000,0.249998,0,0);-ms-transform:matrix(0.226653,-0.000907,0.001000,0.249998,0,0);-webkit-transform:matrix(0.226653,-0.000907,0.001000,0.249998,0,0);}
.m7f_c01324{transform:matrix(0.226943,-0.000908,0.001000,0.249998,0,0);-ms-transform:matrix(0.226943,-0.000908,0.001000,0.249998,0,0);-webkit-transform:matrix(0.226943,-0.000908,0.001000,0.249998,0,0);}
.m8d_c01324{transform:matrix(0.227158,-0.000909,0.001000,0.249998,0,0);-ms-transform:matrix(0.227158,-0.000909,0.001000,0.249998,0,0);-webkit-transform:matrix(0.227158,-0.000909,0.001000,0.249998,0,0);}
.mde_c01324{transform:matrix(0.227258,-0.000909,0.001000,0.249998,0,0);-ms-transform:matrix(0.227258,-0.000909,0.001000,0.249998,0,0);-webkit-transform:matrix(0.227258,-0.000909,0.001000,0.249998,0,0);}
.m130_c01324{transform:matrix(0.227332,-0.001137,0.001250,0.249997,0,0);-ms-transform:matrix(0.227332,-0.001137,0.001250,0.249997,0,0);-webkit-transform:matrix(0.227332,-0.001137,0.001250,0.249997,0,0);}
.md7_c01324{transform:matrix(0.227548,-0.000910,0.001000,0.249998,0,0);-ms-transform:matrix(0.227548,-0.000910,0.001000,0.249998,0,0);-webkit-transform:matrix(0.227548,-0.000910,0.001000,0.249998,0,0);}
.m61_c01324{transform:matrix(0.227638,-0.000911,0.001000,0.249998,0,0);-ms-transform:matrix(0.227638,-0.000911,0.001000,0.249998,0,0);-webkit-transform:matrix(0.227638,-0.000911,0.001000,0.249998,0,0);}
.m74_c01324{transform:matrix(0.227773,-0.000911,0.001000,0.249998,0,0);-ms-transform:matrix(0.227773,-0.000911,0.001000,0.249998,0,0);-webkit-transform:matrix(0.227773,-0.000911,0.001000,0.249998,0,0);}
.mbb_c01324{transform:matrix(0.228278,-0.000913,0.001000,0.249998,0,0);-ms-transform:matrix(0.228278,-0.000913,0.001000,0.249998,0,0);-webkit-transform:matrix(0.228278,-0.000913,0.001000,0.249998,0,0);}
.m106_c01324{transform:matrix(0.228291,-0.001370,0.001500,0.249996,0,0);-ms-transform:matrix(0.228291,-0.001370,0.001500,0.249996,0,0);-webkit-transform:matrix(0.228291,-0.001370,0.001500,0.249996,0,0);}
.ma7_c01324{transform:matrix(0.228303,-0.000913,0.001000,0.249998,0,0);-ms-transform:matrix(0.228303,-0.000913,0.001000,0.249998,0,0);-webkit-transform:matrix(0.228303,-0.000913,0.001000,0.249998,0,0);}
.m16_c01324{transform:matrix(0.228856,-0.001373,0.001500,0.249996,0,0);-ms-transform:matrix(0.228856,-0.001373,0.001500,0.249996,0,0);-webkit-transform:matrix(0.228856,-0.001373,0.001500,0.249996,0,0);}
.m6e_c01324{transform:matrix(0.229193,-0.000917,0.001000,0.249998,0,0);-ms-transform:matrix(0.229193,-0.000917,0.001000,0.249998,0,0);-webkit-transform:matrix(0.229193,-0.000917,0.001000,0.249998,0,0);}
.m8_c01324{transform:matrix(0.229261,-0.001376,0.001500,0.249996,0,0);-ms-transform:matrix(0.229261,-0.001376,0.001500,0.249996,0,0);-webkit-transform:matrix(0.229261,-0.001376,0.001500,0.249996,0,0);}
.m5e_c01324{transform:matrix(0.229303,-0.000917,0.001000,0.249998,0,0);-ms-transform:matrix(0.229303,-0.000917,0.001000,0.249998,0,0);-webkit-transform:matrix(0.229303,-0.000917,0.001000,0.249998,0,0);}
.m2f_c01324{transform:matrix(0.229881,-0.001379,0.001500,0.249996,0,0);-ms-transform:matrix(0.229881,-0.001379,0.001500,0.249996,0,0);-webkit-transform:matrix(0.229881,-0.001379,0.001500,0.249996,0,0);}
.m1b_c01324{transform:matrix(0.229961,-0.001380,0.001500,0.249996,0,0);-ms-transform:matrix(0.229961,-0.001380,0.001500,0.249996,0,0);-webkit-transform:matrix(0.229961,-0.001380,0.001500,0.249996,0,0);}
.m5d_c01324{transform:matrix(0.230018,-0.000920,0.001000,0.249998,0,0);-ms-transform:matrix(0.230018,-0.000920,0.001000,0.249998,0,0);-webkit-transform:matrix(0.230018,-0.000920,0.001000,0.249998,0,0);}
.m78_c01324{transform:matrix(0.230283,-0.000921,0.001000,0.249998,0,0);-ms-transform:matrix(0.230283,-0.000921,0.001000,0.249998,0,0);-webkit-transform:matrix(0.230283,-0.000921,0.001000,0.249998,0,0);}
.ma2_c01324{transform:matrix(0.230573,-0.000922,0.001000,0.249998,0,0);-ms-transform:matrix(0.230573,-0.000922,0.001000,0.249998,0,0);-webkit-transform:matrix(0.230573,-0.000922,0.001000,0.249998,0,0);}
.m10a_c01324{transform:matrix(0.230752,-0.001154,0.001250,0.249997,0,0);-ms-transform:matrix(0.230752,-0.001154,0.001250,0.249997,0,0);-webkit-transform:matrix(0.230752,-0.001154,0.001250,0.249997,0,0);}
.mbf_c01324{transform:matrix(0.231158,-0.000925,0.001000,0.249998,0,0);-ms-transform:matrix(0.231158,-0.000925,0.001000,0.249998,0,0);-webkit-transform:matrix(0.231158,-0.000925,0.001000,0.249998,0,0);}
.mf_c01324{transform:matrix(0.231621,-0.001390,0.001500,0.249996,0,0);-ms-transform:matrix(0.231621,-0.001390,0.001500,0.249996,0,0);-webkit-transform:matrix(0.231621,-0.001390,0.001500,0.249996,0,0);}
.m99_c01324{transform:matrix(0.231643,-0.000927,0.001000,0.249998,0,0);-ms-transform:matrix(0.231643,-0.000927,0.001000,0.249998,0,0);-webkit-transform:matrix(0.231643,-0.000927,0.001000,0.249998,0,0);}
.m72_c01324{transform:matrix(0.231803,-0.000927,0.001000,0.249998,0,0);-ms-transform:matrix(0.231803,-0.000927,0.001000,0.249998,0,0);-webkit-transform:matrix(0.231803,-0.000927,0.001000,0.249998,0,0);}
.me9_c01324{transform:matrix(0.232401,-0.001394,0.001500,0.249996,0,0);-ms-transform:matrix(0.232401,-0.001394,0.001500,0.249996,0,0);-webkit-transform:matrix(0.232401,-0.001394,0.001500,0.249996,0,0);}
.m49_c01324{transform:matrix(0.232403,-0.000930,0.001000,0.249998,0,0);-ms-transform:matrix(0.232403,-0.000930,0.001000,0.249998,0,0);-webkit-transform:matrix(0.232403,-0.000930,0.001000,0.249998,0,0);}
.m81_c01324{transform:matrix(0.232798,-0.000931,0.001000,0.249998,0,0);-ms-transform:matrix(0.232798,-0.000931,0.001000,0.249998,0,0);-webkit-transform:matrix(0.232798,-0.000931,0.001000,0.249998,0,0);}
.m64_c01324{transform:matrix(0.232943,-0.000932,0.001000,0.249998,0,0);-ms-transform:matrix(0.232943,-0.000932,0.001000,0.249998,0,0);-webkit-transform:matrix(0.232943,-0.000932,0.001000,0.249998,0,0);}
.m122_c01324{transform:matrix(0.232982,-0.001165,0.001250,0.249997,0,0);-ms-transform:matrix(0.232982,-0.001165,0.001250,0.249997,0,0);-webkit-transform:matrix(0.232982,-0.001165,0.001250,0.249997,0,0);}
.m21_c01324{transform:matrix(0.233676,-0.001402,0.001500,0.249996,0,0);-ms-transform:matrix(0.233676,-0.001402,0.001500,0.249996,0,0);-webkit-transform:matrix(0.233676,-0.001402,0.001500,0.249996,0,0);}
.m104_c01324{transform:matrix(0.233731,-0.001402,0.001500,0.249996,0,0);-ms-transform:matrix(0.233731,-0.001402,0.001500,0.249996,0,0);-webkit-transform:matrix(0.233731,-0.001402,0.001500,0.249996,0,0);}
.m10e_c01324{transform:matrix(0.233957,-0.001170,0.001250,0.249997,0,0);-ms-transform:matrix(0.233957,-0.001170,0.001250,0.249997,0,0);-webkit-transform:matrix(0.233957,-0.001170,0.001250,0.249997,0,0);}
.m115_c01324{transform:matrix(0.234002,-0.001170,0.001250,0.249997,0,0);-ms-transform:matrix(0.234002,-0.001170,0.001250,0.249997,0,0);-webkit-transform:matrix(0.234002,-0.001170,0.001250,0.249997,0,0);}
.m67_c01324{transform:matrix(0.234113,-0.000936,0.001000,0.249998,0,0);-ms-transform:matrix(0.234113,-0.000936,0.001000,0.249998,0,0);-webkit-transform:matrix(0.234113,-0.000936,0.001000,0.249998,0,0);}
.m119_c01324{transform:matrix(0.234317,-0.001172,0.001250,0.249997,0,0);-ms-transform:matrix(0.234317,-0.001172,0.001250,0.249997,0,0);-webkit-transform:matrix(0.234317,-0.001172,0.001250,0.249997,0,0);}
.m118_c01324{transform:matrix(0.234327,-0.001172,0.001250,0.249997,0,0);-ms-transform:matrix(0.234327,-0.001172,0.001250,0.249997,0,0);-webkit-transform:matrix(0.234327,-0.001172,0.001250,0.249997,0,0);}
.md_c01324{transform:matrix(0.234531,-0.001407,0.001500,0.249996,0,0);-ms-transform:matrix(0.234531,-0.001407,0.001500,0.249996,0,0);-webkit-transform:matrix(0.234531,-0.001407,0.001500,0.249996,0,0);}
.m6a_c01324{transform:matrix(0.234558,-0.000938,0.001000,0.249998,0,0);-ms-transform:matrix(0.234558,-0.000938,0.001000,0.249998,0,0);-webkit-transform:matrix(0.234558,-0.000938,0.001000,0.249998,0,0);}
.m18_c01324{transform:matrix(0.234616,-0.001408,0.001500,0.249996,0,0);-ms-transform:matrix(0.234616,-0.001408,0.001500,0.249996,0,0);-webkit-transform:matrix(0.234616,-0.001408,0.001500,0.249996,0,0);}
.m2d_c01324{transform:matrix(0.234646,-0.001408,0.001500,0.249996,0,0);-ms-transform:matrix(0.234646,-0.001408,0.001500,0.249996,0,0);-webkit-transform:matrix(0.234646,-0.001408,0.001500,0.249996,0,0);}
.me0_c01324{transform:matrix(0.234798,-0.000939,0.001000,0.249998,0,0);-ms-transform:matrix(0.234798,-0.000939,0.001000,0.249998,0,0);-webkit-transform:matrix(0.234798,-0.000939,0.001000,0.249998,0,0);}
.m126_c01324{transform:matrix(0.234852,-0.001174,0.001250,0.249997,0,0);-ms-transform:matrix(0.234852,-0.001174,0.001250,0.249997,0,0);-webkit-transform:matrix(0.234852,-0.001174,0.001250,0.249997,0,0);}
.m47_c01324{transform:matrix(0.234998,-0.000940,0.001000,0.249998,0,0);-ms-transform:matrix(0.234998,-0.000940,0.001000,0.249998,0,0);-webkit-transform:matrix(0.234998,-0.000940,0.001000,0.249998,0,0);}
.m10d_c01324{transform:matrix(0.235212,-0.001176,0.001250,0.249997,0,0);-ms-transform:matrix(0.235212,-0.001176,0.001250,0.249997,0,0);-webkit-transform:matrix(0.235212,-0.001176,0.001250,0.249997,0,0);}
.m4f_c01324{transform:matrix(0.235848,-0.000943,0.001000,0.249998,0,0);-ms-transform:matrix(0.235848,-0.000943,0.001000,0.249998,0,0);-webkit-transform:matrix(0.235848,-0.000943,0.001000,0.249998,0,0);}
.m33_c01324{transform:matrix(0.236226,-0.001417,0.001500,0.249996,0,0);-ms-transform:matrix(0.236226,-0.001417,0.001500,0.249996,0,0);-webkit-transform:matrix(0.236226,-0.001417,0.001500,0.249996,0,0);}
.m11d_c01324{transform:matrix(0.236462,-0.001182,0.001250,0.249997,0,0);-ms-transform:matrix(0.236462,-0.001182,0.001250,0.249997,0,0);-webkit-transform:matrix(0.236462,-0.001182,0.001250,0.249997,0,0);}
.m27_c01324{transform:matrix(0.236666,-0.001420,0.001500,0.249996,0,0);-ms-transform:matrix(0.236666,-0.001420,0.001500,0.249996,0,0);-webkit-transform:matrix(0.236666,-0.001420,0.001500,0.249996,0,0);}
.m9e_c01324{transform:matrix(0.236828,-0.000947,0.001000,0.249998,0,0);-ms-transform:matrix(0.236828,-0.000947,0.001000,0.249998,0,0);-webkit-transform:matrix(0.236828,-0.000947,0.001000,0.249998,0,0);}
.m124_c01324{transform:matrix(0.237182,-0.001186,0.001250,0.249997,0,0);-ms-transform:matrix(0.237182,-0.001186,0.001250,0.249997,0,0);-webkit-transform:matrix(0.237182,-0.001186,0.001250,0.249997,0,0);}
.me6_c01324{transform:matrix(0.237288,-0.000949,0.001000,0.249998,0,0);-ms-transform:matrix(0.237288,-0.000949,0.001000,0.249998,0,0);-webkit-transform:matrix(0.237288,-0.000949,0.001000,0.249998,0,0);}
.m133_c01324{transform:matrix(0.237542,-0.001188,0.001250,0.249997,0,0);-ms-transform:matrix(0.237542,-0.001188,0.001250,0.249997,0,0);-webkit-transform:matrix(0.237542,-0.001188,0.001250,0.249997,0,0);}
.m1f_c01324{transform:matrix(0.238351,-0.001430,0.001500,0.249996,0,0);-ms-transform:matrix(0.238351,-0.001430,0.001500,0.249996,0,0);-webkit-transform:matrix(0.238351,-0.001430,0.001500,0.249996,0,0);}
.mba_c01324{transform:matrix(0.238638,-0.000955,0.001000,0.249998,0,0);-ms-transform:matrix(0.238638,-0.000955,0.001000,0.249998,0,0);-webkit-transform:matrix(0.238638,-0.000955,0.001000,0.249998,0,0);}
.m48_c01324{transform:matrix(0.238663,-0.000955,0.001000,0.249998,0,0);-ms-transform:matrix(0.238663,-0.000955,0.001000,0.249998,0,0);-webkit-transform:matrix(0.238663,-0.000955,0.001000,0.249998,0,0);}
.m3f_c01324{transform:matrix(0.238808,-0.000955,0.001000,0.249998,0,0);-ms-transform:matrix(0.238808,-0.000955,0.001000,0.249998,0,0);-webkit-transform:matrix(0.238808,-0.000955,0.001000,0.249998,0,0);}
.m105_c01324{transform:matrix(0.238946,-0.001434,0.001500,0.249996,0,0);-ms-transform:matrix(0.238946,-0.001434,0.001500,0.249996,0,0);-webkit-transform:matrix(0.238946,-0.001434,0.001500,0.249996,0,0);}
.mcc_c01324{transform:matrix(0.239293,-0.000957,0.001000,0.249998,0,0);-ms-transform:matrix(0.239293,-0.000957,0.001000,0.249998,0,0);-webkit-transform:matrix(0.239293,-0.000957,0.001000,0.249998,0,0);}
.mec_c01324{transform:matrix(0.239381,-0.001436,0.001500,0.249996,0,0);-ms-transform:matrix(0.239381,-0.001436,0.001500,0.249996,0,0);-webkit-transform:matrix(0.239381,-0.001436,0.001500,0.249996,0,0);}
.m55_c01324{transform:matrix(0.239588,-0.000958,0.001000,0.249998,0,0);-ms-transform:matrix(0.239588,-0.000958,0.001000,0.249998,0,0);-webkit-transform:matrix(0.239588,-0.000958,0.001000,0.249998,0,0);}
.ma6_c01324{transform:matrix(0.239938,-0.000960,0.001000,0.249998,0,0);-ms-transform:matrix(0.239938,-0.000960,0.001000,0.249998,0,0);-webkit-transform:matrix(0.239938,-0.000960,0.001000,0.249998,0,0);}
.m109_c01324{transform:matrix(0.240397,-0.001202,0.001250,0.249997,0,0);-ms-transform:matrix(0.240397,-0.001202,0.001250,0.249997,0,0);-webkit-transform:matrix(0.240397,-0.001202,0.001250,0.249997,0,0);}
.m113_c01324{transform:matrix(0.240467,-0.001202,0.001250,0.249997,0,0);-ms-transform:matrix(0.240467,-0.001202,0.001250,0.249997,0,0);-webkit-transform:matrix(0.240467,-0.001202,0.001250,0.249997,0,0);}
.mc3_c01324{transform:matrix(0.240708,-0.000963,0.001000,0.249998,0,0);-ms-transform:matrix(0.240708,-0.000963,0.001000,0.249998,0,0);-webkit-transform:matrix(0.240708,-0.000963,0.001000,0.249998,0,0);}
.mb6_c01324{transform:matrix(0.240738,-0.000963,0.001000,0.249998,0,0);-ms-transform:matrix(0.240738,-0.000963,0.001000,0.249998,0,0);-webkit-transform:matrix(0.240738,-0.000963,0.001000,0.249998,0,0);}
.mae_c01324{transform:matrix(0.241298,-0.000965,0.001000,0.249998,0,0);-ms-transform:matrix(0.241298,-0.000965,0.001000,0.249998,0,0);-webkit-transform:matrix(0.241298,-0.000965,0.001000,0.249998,0,0);}
.m28_c01324{transform:matrix(0.241411,-0.001448,0.001500,0.249996,0,0);-ms-transform:matrix(0.241411,-0.001448,0.001500,0.249996,0,0);-webkit-transform:matrix(0.241411,-0.001448,0.001500,0.249996,0,0);}
.m3c_c01324{transform:matrix(0.241778,-0.000967,0.001000,0.249998,0,0);-ms-transform:matrix(0.241778,-0.000967,0.001000,0.249998,0,0);-webkit-transform:matrix(0.241778,-0.000967,0.001000,0.249998,0,0);}
.mda_c01324{transform:matrix(0.241793,-0.000967,0.001000,0.249998,0,0);-ms-transform:matrix(0.241793,-0.000967,0.001000,0.249998,0,0);-webkit-transform:matrix(0.241793,-0.000967,0.001000,0.249998,0,0);}
.m9c_c01324{transform:matrix(0.241903,-0.000968,0.001000,0.249998,0,0);-ms-transform:matrix(0.241903,-0.000968,0.001000,0.249998,0,0);-webkit-transform:matrix(0.241903,-0.000968,0.001000,0.249998,0,0);}
.m12_c01324{transform:matrix(0.242356,-0.001454,0.001500,0.249996,0,0);-ms-transform:matrix(0.242356,-0.001454,0.001500,0.249996,0,0);-webkit-transform:matrix(0.242356,-0.001454,0.001500,0.249996,0,0);}
.m77_c01324{transform:matrix(0.242473,-0.000970,0.001000,0.249998,0,0);-ms-transform:matrix(0.242473,-0.000970,0.001000,0.249998,0,0);-webkit-transform:matrix(0.242473,-0.000970,0.001000,0.249998,0,0);}
.m2a_c01324{transform:matrix(0.242491,-0.001455,0.001500,0.249996,0,0);-ms-transform:matrix(0.242491,-0.001455,0.001500,0.249996,0,0);-webkit-transform:matrix(0.242491,-0.001455,0.001500,0.249996,0,0);}
.m25_c01324{transform:matrix(0.242651,-0.001456,0.001500,0.249996,0,0);-ms-transform:matrix(0.242651,-0.001456,0.001500,0.249996,0,0);-webkit-transform:matrix(0.242651,-0.001456,0.001500,0.249996,0,0);}
.md2_c01324{transform:matrix(0.243118,-0.000972,0.001000,0.249998,0,0);-ms-transform:matrix(0.243118,-0.000972,0.001000,0.249998,0,0);-webkit-transform:matrix(0.243118,-0.000972,0.001000,0.249998,0,0);}
.mb1_c01324{transform:matrix(0.243493,-0.000974,0.001000,0.249998,0,0);-ms-transform:matrix(0.243493,-0.000974,0.001000,0.249998,0,0);-webkit-transform:matrix(0.243493,-0.000974,0.001000,0.249998,0,0);}
.m9b_c01324{transform:matrix(0.243638,-0.000975,0.001000,0.249998,0,0);-ms-transform:matrix(0.243638,-0.000975,0.001000,0.249998,0,0);-webkit-transform:matrix(0.243638,-0.000975,0.001000,0.249998,0,0);}
.m17_c01324{transform:matrix(0.243706,-0.001462,0.001500,0.249996,0,0);-ms-transform:matrix(0.243706,-0.001462,0.001500,0.249996,0,0);-webkit-transform:matrix(0.243706,-0.001462,0.001500,0.249996,0,0);}
.m9_c01324{transform:matrix(0.244091,-0.001465,0.001500,0.249996,0,0);-ms-transform:matrix(0.244091,-0.001465,0.001500,0.249996,0,0);-webkit-transform:matrix(0.244091,-0.001465,0.001500,0.249996,0,0);}
.mad_c01324{transform:matrix(0.244293,-0.000977,0.001000,0.249998,0,0);-ms-transform:matrix(0.244293,-0.000977,0.001000,0.249998,0,0);-webkit-transform:matrix(0.244293,-0.000977,0.001000,0.249998,0,0);}
.md1_c01324{transform:matrix(0.244473,-0.000978,0.001000,0.249998,0,0);-ms-transform:matrix(0.244473,-0.000978,0.001000,0.249998,0,0);-webkit-transform:matrix(0.244473,-0.000978,0.001000,0.249998,0,0);}
.m107_c01324{transform:matrix(0.244856,-0.001469,0.001500,0.249996,0,0);-ms-transform:matrix(0.244856,-0.001469,0.001500,0.249996,0,0);-webkit-transform:matrix(0.244856,-0.001469,0.001500,0.249996,0,0);}
.m32_c01324{transform:matrix(0.244866,-0.001469,0.001500,0.249996,0,0);-ms-transform:matrix(0.244866,-0.001469,0.001500,0.249996,0,0);-webkit-transform:matrix(0.244866,-0.001469,0.001500,0.249996,0,0);}
.m86_c01324{transform:matrix(0.245213,-0.000981,0.001000,0.249998,0,0);-ms-transform:matrix(0.245213,-0.000981,0.001000,0.249998,0,0);-webkit-transform:matrix(0.245213,-0.000981,0.001000,0.249998,0,0);}
.mc0_c01324{transform:matrix(0.245238,-0.000981,0.001000,0.249998,0,0);-ms-transform:matrix(0.245238,-0.000981,0.001000,0.249998,0,0);-webkit-transform:matrix(0.245238,-0.000981,0.001000,0.249998,0,0);}
.m120_c01324{transform:matrix(0.245267,-0.001226,0.001250,0.249997,0,0);-ms-transform:matrix(0.245267,-0.001226,0.001250,0.249997,0,0);-webkit-transform:matrix(0.245267,-0.001226,0.001250,0.249997,0,0);}
.m24_c01324{transform:matrix(0.246181,-0.001477,0.001500,0.249996,0,0);-ms-transform:matrix(0.246181,-0.001477,0.001500,0.249996,0,0);-webkit-transform:matrix(0.246181,-0.001477,0.001500,0.249996,0,0);}
.m3d_c01324{transform:matrix(0.246193,-0.000985,0.001000,0.249998,0,0);-ms-transform:matrix(0.246193,-0.000985,0.001000,0.249998,0,0);-webkit-transform:matrix(0.246193,-0.000985,0.001000,0.249998,0,0);}
.m9a_c01324{transform:matrix(0.246263,-0.000985,0.001000,0.249998,0,0);-ms-transform:matrix(0.246263,-0.000985,0.001000,0.249998,0,0);-webkit-transform:matrix(0.246263,-0.000985,0.001000,0.249998,0,0);}
.mdc_c01324{transform:matrix(0.246653,-0.000987,0.001000,0.249998,0,0);-ms-transform:matrix(0.246653,-0.000987,0.001000,0.249998,0,0);-webkit-transform:matrix(0.246653,-0.000987,0.001000,0.249998,0,0);}
.m7c_c01324{transform:matrix(0.246978,-0.000988,0.001000,0.249998,0,0);-ms-transform:matrix(0.246978,-0.000988,0.001000,0.249998,0,0);-webkit-transform:matrix(0.246978,-0.000988,0.001000,0.249998,0,0);}
.m125_c01324{transform:matrix(0.247682,-0.001238,0.001250,0.249997,0,0);-ms-transform:matrix(0.247682,-0.001238,0.001250,0.249997,0,0);-webkit-transform:matrix(0.247682,-0.001238,0.001250,0.249997,0,0);}
.mca_c01324{transform:matrix(0.249213,-0.000997,0.001000,0.249998,0,0);-ms-transform:matrix(0.249213,-0.000997,0.001000,0.249998,0,0);-webkit-transform:matrix(0.249213,-0.000997,0.001000,0.249998,0,0);}
.mb8_c01324{transform:matrix(0.249318,-0.000997,0.001000,0.249998,0,0);-ms-transform:matrix(0.249318,-0.000997,0.001000,0.249998,0,0);-webkit-transform:matrix(0.249318,-0.000997,0.001000,0.249998,0,0);}
.mdf_c01324{transform:matrix(0.249788,-0.000999,0.001000,0.249998,0,0);-ms-transform:matrix(0.249788,-0.000999,0.001000,0.249998,0,0);-webkit-transform:matrix(0.249788,-0.000999,0.001000,0.249998,0,0);}
.m34_c01324{transform:matrix(0.250660,-0.001504,0.001500,0.249996,0,0);-ms-transform:matrix(0.250660,-0.001504,0.001500,0.249996,0,0);-webkit-transform:matrix(0.250660,-0.001504,0.001500,0.249996,0,0);}
.m96_c01324{transform:matrix(0.251183,-0.001005,0.001000,0.249998,0,0);-ms-transform:matrix(0.251183,-0.001005,0.001000,0.249998,0,0);-webkit-transform:matrix(0.251183,-0.001005,0.001000,0.249998,0,0);}
.m97_c01324{transform:matrix(0.251778,-0.001007,0.001000,0.249998,0,0);-ms-transform:matrix(0.251778,-0.001007,0.001000,0.249998,0,0);-webkit-transform:matrix(0.251778,-0.001007,0.001000,0.249998,0,0);}
.md3_c01324{transform:matrix(0.252353,-0.001009,0.001000,0.249998,0,0);-ms-transform:matrix(0.252353,-0.001009,0.001000,0.249998,0,0);-webkit-transform:matrix(0.252353,-0.001009,0.001000,0.249998,0,0);}
.m53_c01324{transform:matrix(0.252923,-0.001012,0.001000,0.249998,0,0);-ms-transform:matrix(0.252923,-0.001012,0.001000,0.249998,0,0);-webkit-transform:matrix(0.252923,-0.001012,0.001000,0.249998,0,0);}
.maf_c01324{transform:matrix(0.253588,-0.001014,0.001000,0.249998,0,0);-ms-transform:matrix(0.253588,-0.001014,0.001000,0.249998,0,0);-webkit-transform:matrix(0.253588,-0.001014,0.001000,0.249998,0,0);}
.me1_c01324{transform:matrix(0.253873,-0.001015,0.001000,0.249998,0,0);-ms-transform:matrix(0.253873,-0.001015,0.001000,0.249998,0,0);-webkit-transform:matrix(0.253873,-0.001015,0.001000,0.249998,0,0);}
.m4d_c01324{transform:matrix(0.255143,-0.001021,0.001000,0.249998,0,0);-ms-transform:matrix(0.255143,-0.001021,0.001000,0.249998,0,0);-webkit-transform:matrix(0.255143,-0.001021,0.001000,0.249998,0,0);}
.m40_c01324{transform:matrix(0.255208,-0.001021,0.001000,0.249998,0,0);-ms-transform:matrix(0.255208,-0.001021,0.001000,0.249998,0,0);-webkit-transform:matrix(0.255208,-0.001021,0.001000,0.249998,0,0);}
.m31_c01324{transform:matrix(0.255240,-0.001531,0.001500,0.249996,0,0);-ms-transform:matrix(0.255240,-0.001531,0.001500,0.249996,0,0);-webkit-transform:matrix(0.255240,-0.001531,0.001500,0.249996,0,0);}
.m14_c01324{transform:matrix(0.255335,-0.001532,0.001500,0.249996,0,0);-ms-transform:matrix(0.255335,-0.001532,0.001500,0.249996,0,0);-webkit-transform:matrix(0.255335,-0.001532,0.001500,0.249996,0,0);}
.me4_c01324{transform:matrix(0.256028,-0.001024,0.001000,0.249998,0,0);-ms-transform:matrix(0.256028,-0.001024,0.001000,0.249998,0,0);-webkit-transform:matrix(0.256028,-0.001024,0.001000,0.249998,0,0);}
.mdd_c01324{transform:matrix(0.256058,-0.001024,0.001000,0.249998,0,0);-ms-transform:matrix(0.256058,-0.001024,0.001000,0.249998,0,0);-webkit-transform:matrix(0.256058,-0.001024,0.001000,0.249998,0,0);}
.me8_c01324{transform:matrix(0.256420,-0.001539,0.001500,0.249996,0,0);-ms-transform:matrix(0.256420,-0.001539,0.001500,0.249996,0,0);-webkit-transform:matrix(0.256420,-0.001539,0.001500,0.249996,0,0);}
.me2_c01324{transform:matrix(0.256438,-0.001026,0.001000,0.249998,0,0);-ms-transform:matrix(0.256438,-0.001026,0.001000,0.249998,0,0);-webkit-transform:matrix(0.256438,-0.001026,0.001000,0.249998,0,0);}
.mbc_c01324{transform:matrix(0.256443,-0.001026,0.001000,0.249998,0,0);-ms-transform:matrix(0.256443,-0.001026,0.001000,0.249998,0,0);-webkit-transform:matrix(0.256443,-0.001026,0.001000,0.249998,0,0);}
.m7_c01324{transform:matrix(0.256670,-0.001540,0.001500,0.249996,0,0);-ms-transform:matrix(0.256670,-0.001540,0.001500,0.249996,0,0);-webkit-transform:matrix(0.256670,-0.001540,0.001500,0.249996,0,0);}
.m2e_c01324{transform:matrix(0.257525,-0.001545,0.001500,0.249996,0,0);-ms-transform:matrix(0.257525,-0.001545,0.001500,0.249996,0,0);-webkit-transform:matrix(0.257525,-0.001545,0.001500,0.249996,0,0);}
.md4_c01324{transform:matrix(0.257648,-0.001031,0.001000,0.249998,0,0);-ms-transform:matrix(0.257648,-0.001031,0.001000,0.249998,0,0);-webkit-transform:matrix(0.257648,-0.001031,0.001000,0.249998,0,0);}
.m121_c01324{transform:matrix(0.258307,-0.001292,0.001250,0.249997,0,0);-ms-transform:matrix(0.258307,-0.001292,0.001250,0.249997,0,0);-webkit-transform:matrix(0.258307,-0.001292,0.001250,0.249997,0,0);}
.m76_c01324{transform:matrix(0.258608,-0.001034,0.001000,0.249998,0,0);-ms-transform:matrix(0.258608,-0.001034,0.001000,0.249998,0,0);-webkit-transform:matrix(0.258608,-0.001034,0.001000,0.249998,0,0);}
.m19_c01324{transform:matrix(0.258855,-0.001553,0.001500,0.249996,0,0);-ms-transform:matrix(0.258855,-0.001553,0.001500,0.249996,0,0);-webkit-transform:matrix(0.258855,-0.001553,0.001500,0.249996,0,0);}
.m23_c01324{transform:matrix(0.259820,-0.001559,0.001500,0.249996,0,0);-ms-transform:matrix(0.259820,-0.001559,0.001500,0.249996,0,0);-webkit-transform:matrix(0.259820,-0.001559,0.001500,0.249996,0,0);}
.m41_c01324{transform:matrix(0.260268,-0.001041,0.001000,0.249998,0,0);-ms-transform:matrix(0.260268,-0.001041,0.001000,0.249998,0,0);-webkit-transform:matrix(0.260268,-0.001041,0.001000,0.249998,0,0);}
.mb_c01324{transform:matrix(0.260925,-0.001566,0.001500,0.249996,0,0);-ms-transform:matrix(0.260925,-0.001566,0.001500,0.249996,0,0);-webkit-transform:matrix(0.260925,-0.001566,0.001500,0.249996,0,0);}
.m4b_c01324{transform:matrix(0.261943,-0.001048,0.001000,0.249998,0,0);-ms-transform:matrix(0.261943,-0.001048,0.001000,0.249998,0,0);-webkit-transform:matrix(0.261943,-0.001048,0.001000,0.249998,0,0);}
.m6_c01324{transform:matrix(0.261960,-0.001572,0.001500,0.249996,0,0);-ms-transform:matrix(0.261960,-0.001572,0.001500,0.249996,0,0);-webkit-transform:matrix(0.261960,-0.001572,0.001500,0.249996,0,0);}
.m22_c01324{transform:matrix(0.262200,-0.001573,0.001500,0.249996,0,0);-ms-transform:matrix(0.262200,-0.001573,0.001500,0.249996,0,0);-webkit-transform:matrix(0.262200,-0.001573,0.001500,0.249996,0,0);}
.m54_c01324{transform:matrix(0.262253,-0.001049,0.001000,0.249998,0,0);-ms-transform:matrix(0.262253,-0.001049,0.001000,0.249998,0,0);-webkit-transform:matrix(0.262253,-0.001049,0.001000,0.249998,0,0);}
.mab_c01324{transform:matrix(0.263143,-0.001053,0.001000,0.249998,0,0);-ms-transform:matrix(0.263143,-0.001053,0.001000,0.249998,0,0);-webkit-transform:matrix(0.263143,-0.001053,0.001000,0.249998,0,0);}
.mc_c01324{transform:matrix(0.263650,-0.001582,0.001500,0.249996,0,0);-ms-transform:matrix(0.263650,-0.001582,0.001500,0.249996,0,0);-webkit-transform:matrix(0.263650,-0.001582,0.001500,0.249996,0,0);}
.m100_c01324{transform:matrix(0.263780,-0.001583,0.001500,0.249996,0,0);-ms-transform:matrix(0.263780,-0.001583,0.001500,0.249996,0,0);-webkit-transform:matrix(0.263780,-0.001583,0.001500,0.249996,0,0);}
.md5_c01324{transform:matrix(0.263938,-0.001056,0.001000,0.249998,0,0);-ms-transform:matrix(0.263938,-0.001056,0.001000,0.249998,0,0);-webkit-transform:matrix(0.263938,-0.001056,0.001000,0.249998,0,0);}
.m11f_c01324{transform:matrix(0.264067,-0.001320,0.001250,0.249997,0,0);-ms-transform:matrix(0.264067,-0.001320,0.001250,0.249997,0,0);-webkit-transform:matrix(0.264067,-0.001320,0.001250,0.249997,0,0);}
.mc8_c01324{transform:matrix(0.264293,-0.001057,0.001000,0.249998,0,0);-ms-transform:matrix(0.264293,-0.001057,0.001000,0.249998,0,0);-webkit-transform:matrix(0.264293,-0.001057,0.001000,0.249998,0,0);}
.mce_c01324{transform:matrix(0.264978,-0.001060,0.001000,0.249998,0,0);-ms-transform:matrix(0.264978,-0.001060,0.001000,0.249998,0,0);-webkit-transform:matrix(0.264978,-0.001060,0.001000,0.249998,0,0);}
.m42_c01324{transform:matrix(0.265103,-0.001060,0.001000,0.249998,0,0);-ms-transform:matrix(0.265103,-0.001060,0.001000,0.249998,0,0);-webkit-transform:matrix(0.265103,-0.001060,0.001000,0.249998,0,0);}
.m57_c01324{transform:matrix(0.265883,-0.001064,0.001000,0.249998,0,0);-ms-transform:matrix(0.265883,-0.001064,0.001000,0.249998,0,0);-webkit-transform:matrix(0.265883,-0.001064,0.001000,0.249998,0,0);}
.m3e_c01324{transform:matrix(0.266648,-0.001067,0.001000,0.249998,0,0);-ms-transform:matrix(0.266648,-0.001067,0.001000,0.249998,0,0);-webkit-transform:matrix(0.266648,-0.001067,0.001000,0.249998,0,0);}
.m29_c01324{transform:matrix(0.267400,-0.001604,0.001500,0.249996,0,0);-ms-transform:matrix(0.267400,-0.001604,0.001500,0.249996,0,0);-webkit-transform:matrix(0.267400,-0.001604,0.001500,0.249996,0,0);}
.m7e_c01324{transform:matrix(0.267408,-0.001070,0.001000,0.249998,0,0);-ms-transform:matrix(0.267408,-0.001070,0.001000,0.249998,0,0);-webkit-transform:matrix(0.267408,-0.001070,0.001000,0.249998,0,0);}
.m9f_c01324{transform:matrix(0.267548,-0.001070,0.001000,0.249998,0,0);-ms-transform:matrix(0.267548,-0.001070,0.001000,0.249998,0,0);-webkit-transform:matrix(0.267548,-0.001070,0.001000,0.249998,0,0);}
.mac_c01324{transform:matrix(0.267583,-0.001070,0.001000,0.249998,0,0);-ms-transform:matrix(0.267583,-0.001070,0.001000,0.249998,0,0);-webkit-transform:matrix(0.267583,-0.001070,0.001000,0.249998,0,0);}
.m103_c01324{transform:matrix(0.267655,-0.001606,0.001500,0.249996,0,0);-ms-transform:matrix(0.267655,-0.001606,0.001500,0.249996,0,0);-webkit-transform:matrix(0.267655,-0.001606,0.001500,0.249996,0,0);}
.mcd_c01324{transform:matrix(0.268548,-0.001074,0.001000,0.249998,0,0);-ms-transform:matrix(0.268548,-0.001074,0.001000,0.249998,0,0);-webkit-transform:matrix(0.268548,-0.001074,0.001000,0.249998,0,0);}
.mff_c01324{transform:matrix(0.269460,-0.001617,0.001500,0.249996,0,0);-ms-transform:matrix(0.269460,-0.001617,0.001500,0.249996,0,0);-webkit-transform:matrix(0.269460,-0.001617,0.001500,0.249996,0,0);}
.mc6_c01324{transform:matrix(0.269728,-0.001079,0.001000,0.249998,0,0);-ms-transform:matrix(0.269728,-0.001079,0.001000,0.249998,0,0);-webkit-transform:matrix(0.269728,-0.001079,0.001000,0.249998,0,0);}
.mc9_c01324{transform:matrix(0.270298,-0.001081,0.001000,0.249998,0,0);-ms-transform:matrix(0.270298,-0.001081,0.001000,0.249998,0,0);-webkit-transform:matrix(0.270298,-0.001081,0.001000,0.249998,0,0);}
.mcb_c01324{transform:matrix(0.270313,-0.001081,0.001000,0.249998,0,0);-ms-transform:matrix(0.270313,-0.001081,0.001000,0.249998,0,0);-webkit-transform:matrix(0.270313,-0.001081,0.001000,0.249998,0,0);}
.m123_c01324{transform:matrix(0.270772,-0.001354,0.001250,0.249997,0,0);-ms-transform:matrix(0.270772,-0.001354,0.001250,0.249997,0,0);-webkit-transform:matrix(0.270772,-0.001354,0.001250,0.249997,0,0);}
.mea_c01324{transform:matrix(0.271015,-0.001626,0.001500,0.249996,0,0);-ms-transform:matrix(0.271015,-0.001626,0.001500,0.249996,0,0);-webkit-transform:matrix(0.271015,-0.001626,0.001500,0.249996,0,0);}
.md0_c01324{transform:matrix(0.271428,-0.001086,0.001000,0.249998,0,0);-ms-transform:matrix(0.271428,-0.001086,0.001000,0.249998,0,0);-webkit-transform:matrix(0.271428,-0.001086,0.001000,0.249998,0,0);}
.me7_c01324{transform:matrix(0.272850,-0.001637,0.001500,0.249996,0,0);-ms-transform:matrix(0.272850,-0.001637,0.001500,0.249996,0,0);-webkit-transform:matrix(0.272850,-0.001637,0.001500,0.249996,0,0);}
.m43_c01324{transform:matrix(0.273133,-0.001093,0.001000,0.249998,0,0);-ms-transform:matrix(0.273133,-0.001093,0.001000,0.249998,0,0);-webkit-transform:matrix(0.273133,-0.001093,0.001000,0.249998,0,0);}
.mc4_c01324{transform:matrix(0.273193,-0.001093,0.001000,0.249998,0,0);-ms-transform:matrix(0.273193,-0.001093,0.001000,0.249998,0,0);-webkit-transform:matrix(0.273193,-0.001093,0.001000,0.249998,0,0);}
.m108_c01324{transform:matrix(0.273375,-0.001640,0.001500,0.249996,0,0);-ms-transform:matrix(0.273375,-0.001640,0.001500,0.249996,0,0);-webkit-transform:matrix(0.273375,-0.001640,0.001500,0.249996,0,0);}
.mc5_c01324{transform:matrix(0.273638,-0.001095,0.001000,0.249998,0,0);-ms-transform:matrix(0.273638,-0.001095,0.001000,0.249998,0,0);-webkit-transform:matrix(0.273638,-0.001095,0.001000,0.249998,0,0);}
.m75_c01324{transform:matrix(0.274318,-0.001097,0.001000,0.249998,0,0);-ms-transform:matrix(0.274318,-0.001097,0.001000,0.249998,0,0);-webkit-transform:matrix(0.274318,-0.001097,0.001000,0.249998,0,0);}
.m59_c01324{transform:matrix(0.274363,-0.001097,0.001000,0.249998,0,0);-ms-transform:matrix(0.274363,-0.001097,0.001000,0.249998,0,0);-webkit-transform:matrix(0.274363,-0.001097,0.001000,0.249998,0,0);}
.m7d_c01324{transform:matrix(0.275188,-0.001101,0.001000,0.249998,0,0);-ms-transform:matrix(0.275188,-0.001101,0.001000,0.249998,0,0);-webkit-transform:matrix(0.275188,-0.001101,0.001000,0.249998,0,0);}
.m7b_c01324{transform:matrix(0.275288,-0.001101,0.001000,0.249998,0,0);-ms-transform:matrix(0.275288,-0.001101,0.001000,0.249998,0,0);-webkit-transform:matrix(0.275288,-0.001101,0.001000,0.249998,0,0);}
.m4a_c01324{transform:matrix(0.275878,-0.001104,0.001000,0.249998,0,0);-ms-transform:matrix(0.275878,-0.001104,0.001000,0.249998,0,0);-webkit-transform:matrix(0.275878,-0.001104,0.001000,0.249998,0,0);}
.m26_c01324{transform:matrix(0.276040,-0.001656,0.001500,0.249996,0,0);-ms-transform:matrix(0.276040,-0.001656,0.001500,0.249996,0,0);-webkit-transform:matrix(0.276040,-0.001656,0.001500,0.249996,0,0);}
.m44_c01324{transform:matrix(0.276298,-0.001105,0.001000,0.249998,0,0);-ms-transform:matrix(0.276298,-0.001105,0.001000,0.249998,0,0);-webkit-transform:matrix(0.276298,-0.001105,0.001000,0.249998,0,0);}
.m7a_c01324{transform:matrix(0.276378,-0.001106,0.001000,0.249998,0,0);-ms-transform:matrix(0.276378,-0.001106,0.001000,0.249998,0,0);-webkit-transform:matrix(0.276378,-0.001106,0.001000,0.249998,0,0);}
.ma_c01324{transform:matrix(0.276460,-0.001659,0.001500,0.249996,0,0);-ms-transform:matrix(0.276460,-0.001659,0.001500,0.249996,0,0);-webkit-transform:matrix(0.276460,-0.001659,0.001500,0.249996,0,0);}
.m89_c01324{transform:matrix(0.276473,-0.001106,0.001000,0.249998,0,0);-ms-transform:matrix(0.276473,-0.001106,0.001000,0.249998,0,0);-webkit-transform:matrix(0.276473,-0.001106,0.001000,0.249998,0,0);}
.mb3_c01324{transform:matrix(0.277308,-0.001109,0.001000,0.249998,0,0);-ms-transform:matrix(0.277308,-0.001109,0.001000,0.249998,0,0);-webkit-transform:matrix(0.277308,-0.001109,0.001000,0.249998,0,0);}
.m95_c01324{transform:matrix(0.277638,-0.001111,0.001000,0.249998,0,0);-ms-transform:matrix(0.277638,-0.001111,0.001000,0.249998,0,0);-webkit-transform:matrix(0.277638,-0.001111,0.001000,0.249998,0,0);}
.ma1_c01324{transform:matrix(0.277923,-0.001112,0.001000,0.249998,0,0);-ms-transform:matrix(0.277923,-0.001112,0.001000,0.249998,0,0);-webkit-transform:matrix(0.277923,-0.001112,0.001000,0.249998,0,0);}
.m70_c01324{transform:matrix(0.277978,-0.001112,0.001000,0.249998,0,0);-ms-transform:matrix(0.277978,-0.001112,0.001000,0.249998,0,0);-webkit-transform:matrix(0.277978,-0.001112,0.001000,0.249998,0,0);}
.m20_c01324{transform:matrix(0.277995,-0.001668,0.001500,0.249996,0,0);-ms-transform:matrix(0.277995,-0.001668,0.001500,0.249996,0,0);-webkit-transform:matrix(0.277995,-0.001668,0.001500,0.249996,0,0);}
.m4e_c01324{transform:matrix(0.278328,-0.001113,0.001000,0.249998,0,0);-ms-transform:matrix(0.278328,-0.001113,0.001000,0.249998,0,0);-webkit-transform:matrix(0.278328,-0.001113,0.001000,0.249998,0,0);}
.m58_c01324{transform:matrix(0.278533,-0.001114,0.001000,0.249998,0,0);-ms-transform:matrix(0.278533,-0.001114,0.001000,0.249998,0,0);-webkit-transform:matrix(0.278533,-0.001114,0.001000,0.249998,0,0);}
.ma0_c01324{transform:matrix(0.278643,-0.001115,0.001000,0.249998,0,0);-ms-transform:matrix(0.278643,-0.001115,0.001000,0.249998,0,0);-webkit-transform:matrix(0.278643,-0.001115,0.001000,0.249998,0,0);}
.m5b_c01324{transform:matrix(0.278793,-0.001115,0.001000,0.249998,0,0);-ms-transform:matrix(0.278793,-0.001115,0.001000,0.249998,0,0);-webkit-transform:matrix(0.278793,-0.001115,0.001000,0.249998,0,0);}
.m127_c01324{transform:matrix(0.278952,-0.001395,0.001250,0.249997,0,0);-ms-transform:matrix(0.278952,-0.001395,0.001250,0.249997,0,0);-webkit-transform:matrix(0.278952,-0.001395,0.001250,0.249997,0,0);}
.m4c_c01324{transform:matrix(0.280628,-0.001123,0.001000,0.249998,0,0);-ms-transform:matrix(0.280628,-0.001123,0.001000,0.249998,0,0);-webkit-transform:matrix(0.280628,-0.001123,0.001000,0.249998,0,0);}
.med_c01324{transform:matrix(0.280780,-0.001685,0.001500,0.249996,0,0);-ms-transform:matrix(0.280780,-0.001685,0.001500,0.249996,0,0);-webkit-transform:matrix(0.280780,-0.001685,0.001500,0.249996,0,0);}
.meb_c01324{transform:matrix(0.280800,-0.001685,0.001500,0.249996,0,0);-ms-transform:matrix(0.280800,-0.001685,0.001500,0.249996,0,0);-webkit-transform:matrix(0.280800,-0.001685,0.001500,0.249996,0,0);}
.md6_c01324{transform:matrix(0.281763,-0.001127,0.001000,0.249998,0,0);-ms-transform:matrix(0.281763,-0.001127,0.001000,0.249998,0,0);-webkit-transform:matrix(0.281763,-0.001127,0.001000,0.249998,0,0);}
.m102_c01324{transform:matrix(0.282220,-0.001693,0.001500,0.249996,0,0);-ms-transform:matrix(0.282220,-0.001693,0.001500,0.249996,0,0);-webkit-transform:matrix(0.282220,-0.001693,0.001500,0.249996,0,0);}
.m5c_c01324{transform:matrix(0.282973,-0.001132,0.001000,0.249998,0,0);-ms-transform:matrix(0.282973,-0.001132,0.001000,0.249998,0,0);-webkit-transform:matrix(0.282973,-0.001132,0.001000,0.249998,0,0);}
.mb2_c01324{transform:matrix(0.283368,-0.001133,0.001000,0.249998,0,0);-ms-transform:matrix(0.283368,-0.001133,0.001000,0.249998,0,0);-webkit-transform:matrix(0.283368,-0.001133,0.001000,0.249998,0,0);}
.me_c01324{transform:matrix(0.283495,-0.001701,0.001500,0.249996,0,0);-ms-transform:matrix(0.283495,-0.001701,0.001500,0.249996,0,0);-webkit-transform:matrix(0.283495,-0.001701,0.001500,0.249996,0,0);}
.m10_c01324{transform:matrix(0.285000,-0.001710,0.001500,0.249996,0,0);-ms-transform:matrix(0.285000,-0.001710,0.001500,0.249996,0,0);-webkit-transform:matrix(0.285000,-0.001710,0.001500,0.249996,0,0);}
.mfd_c01324{transform:matrix(0.285120,-0.001711,0.001500,0.249996,0,0);-ms-transform:matrix(0.285120,-0.001711,0.001500,0.249996,0,0);-webkit-transform:matrix(0.285120,-0.001711,0.001500,0.249996,0,0);}
.mb0_c01324{transform:matrix(0.285588,-0.001142,0.001000,0.249998,0,0);-ms-transform:matrix(0.285588,-0.001142,0.001000,0.249998,0,0);-webkit-transform:matrix(0.285588,-0.001142,0.001000,0.249998,0,0);}
.mf3_c01324{transform:matrix(0.287575,-0.001725,0.001500,0.249996,0,0);-ms-transform:matrix(0.287575,-0.001725,0.001500,0.249996,0,0);-webkit-transform:matrix(0.287575,-0.001725,0.001500,0.249996,0,0);}
.m46_c01324{transform:matrix(0.291078,-0.001164,0.001000,0.249998,0,0);-ms-transform:matrix(0.291078,-0.001164,0.001000,0.249998,0,0);-webkit-transform:matrix(0.291078,-0.001164,0.001000,0.249998,0,0);}
.m45_c01324{transform:matrix(0.292598,-0.001170,0.001000,0.249998,0,0);-ms-transform:matrix(0.292598,-0.001170,0.001000,0.249998,0,0);-webkit-transform:matrix(0.292598,-0.001170,0.001000,0.249998,0,0);}
.m50_c01324{transform:matrix(0.293238,-0.001173,0.001000,0.249998,0,0);-ms-transform:matrix(0.293238,-0.001173,0.001000,0.249998,0,0);-webkit-transform:matrix(0.293238,-0.001173,0.001000,0.249998,0,0);}
.m129_c01324{transform:matrix(0.298011,-0.001490,0.001250,0.249997,0,0);-ms-transform:matrix(0.298011,-0.001490,0.001250,0.249997,0,0);-webkit-transform:matrix(0.298011,-0.001490,0.001250,0.249997,0,0);}
.m11e_c01324{transform:matrix(0.313731,-0.001569,0.001250,0.249997,0,0);-ms-transform:matrix(0.313731,-0.001569,0.001250,0.249997,0,0);-webkit-transform:matrix(0.313731,-0.001569,0.001250,0.249997,0,0);}
.mef_c01324{transform:matrix(0.313869,-0.001883,0.001500,0.249996,0,0);-ms-transform:matrix(0.313869,-0.001883,0.001500,0.249996,0,0);-webkit-transform:matrix(0.313869,-0.001883,0.001500,0.249996,0,0);}
.m1e_c01324{transform:matrix(0.314249,-0.001885,0.001500,0.249996,0,0);-ms-transform:matrix(0.314249,-0.001885,0.001500,0.249996,0,0);-webkit-transform:matrix(0.314249,-0.001885,0.001500,0.249996,0,0);}
.m101_c01324{transform:matrix(0.319389,-0.001916,0.001500,0.249996,0,0);-ms-transform:matrix(0.319389,-0.001916,0.001500,0.249996,0,0);-webkit-transform:matrix(0.319389,-0.001916,0.001500,0.249996,0,0);}
.m13c_c01324{transform:matrix(0.330064,0.001980,-0.001500,0.249996,0,0);-ms-transform:matrix(0.330064,0.001980,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.330064,0.001980,-0.001500,0.249996,0,0);}
.m1d_c01324{transform:matrix(0.331694,-0.001990,0.001500,0.249996,0,0);-ms-transform:matrix(0.331694,-0.001990,0.001500,0.249996,0,0);-webkit-transform:matrix(0.331694,-0.001990,0.001500,0.249996,0,0);}
.m2_c01324{transform:matrix(0.332510,-0.006318,0.004749,0.249955,0,0);-ms-transform:matrix(0.332510,-0.006318,0.004749,0.249955,0,0);-webkit-transform:matrix(0.332510,-0.006318,0.004749,0.249955,0,0);}
.m128_c01324{transform:matrix(0.348966,-0.001745,0.001250,0.249997,0,0);-ms-transform:matrix(0.348966,-0.001745,0.001250,0.249997,0,0);-webkit-transform:matrix(0.348966,-0.001745,0.001250,0.249997,0,0);}
.m13a_c01324{transform:matrix(0.350994,0.002106,-0.001500,0.249996,0,0);-ms-transform:matrix(0.350994,0.002106,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.350994,0.002106,-0.001500,0.249996,0,0);}
.m139_c01324{transform:matrix(0.370308,0.002222,-0.001500,0.249996,0,0);-ms-transform:matrix(0.370308,0.002222,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.370308,0.002222,-0.001500,0.249996,0,0);}
.m136_c01324{transform:matrix(0.396093,0.002377,-0.001500,0.249996,0,0);-ms-transform:matrix(0.396093,0.002377,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.396093,0.002377,-0.001500,0.249996,0,0);}
.m51_c01324{transform:matrix(0.405622,-0.001622,0.001000,0.249998,0,0);-ms-transform:matrix(0.405622,-0.001622,0.001000,0.249998,0,0);-webkit-transform:matrix(0.405622,-0.001622,0.001000,0.249998,0,0);}
.m137_c01324{transform:matrix(0.414873,0.002489,-0.001500,0.249996,0,0);-ms-transform:matrix(0.414873,0.002489,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.414873,0.002489,-0.001500,0.249996,0,0);}
.m135_c01324{transform:matrix(0.473666,0.002842,-0.001500,0.249996,0,0);-ms-transform:matrix(0.473666,0.002842,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.473666,0.002842,-0.001500,0.249996,0,0);}
.m3_c01324{transform:matrix(0.482314,-0.010129,0.005249,0.249945,0,0);-ms-transform:matrix(0.482314,-0.010129,0.005249,0.249945,0,0);-webkit-transform:matrix(0.482314,-0.010129,0.005249,0.249945,0,0);}
.m4_c01324{transform:matrix(0.490847,-0.010308,0.005249,0.249945,0,0);-ms-transform:matrix(0.490847,-0.010308,0.005249,0.249945,0,0);-webkit-transform:matrix(0.490847,-0.010308,0.005249,0.249945,0,0);}
.m13b_c01324{transform:matrix(0.497556,0.002985,-0.001500,0.249996,0,0);-ms-transform:matrix(0.497556,0.002985,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.497556,0.002985,-0.001500,0.249996,0,0);}
.mf2_c01324{transform:matrix(0.699752,-0.004199,0.001500,0.249996,0,0);-ms-transform:matrix(0.699752,-0.004199,0.001500,0.249996,0,0);-webkit-transform:matrix(0.699752,-0.004199,0.001500,0.249996,0,0);}
.mf0_c01324{transform:matrix(0.709447,-0.004257,0.001500,0.249996,0,0);-ms-transform:matrix(0.709447,-0.004257,0.001500,0.249996,0,0);-webkit-transform:matrix(0.709447,-0.004257,0.001500,0.249996,0,0);}
.m5_c01324{transform:matrix(0.810210,-0.004861,0.001500,0.249996,0,0);-ms-transform:matrix(0.810210,-0.004861,0.001500,0.249996,0,0);-webkit-transform:matrix(0.810210,-0.004861,0.001500,0.249996,0,0);}
.m13d_c01324{transform:matrix(0.945668,0.005674,-0.001500,0.249996,0,0);-ms-transform:matrix(0.945668,0.005674,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.945668,0.005674,-0.001500,0.249996,0,0);}
.m138_c01324{transform:matrix(1.109865,0.006659,-0.001500,0.249996,0,0);-ms-transform:matrix(1.109865,0.006659,-0.001500,0.249996,0,0);-webkit-transform:matrix(1.109865,0.006659,-0.001500,0.249996,0,0);}
.m134_c01324{transform:matrix(2.211195,0.013267,-0.001500,0.249996,0,0);-ms-transform:matrix(2.211195,0.013267,-0.001500,0.249996,0,0);-webkit-transform:matrix(2.211195,0.013267,-0.001500,0.249996,0,0);}
.m13f_c01324{transform:matrix(3.205587,0.019234,-0.001500,0.249996,0,0);-ms-transform:matrix(3.205587,0.019234,-0.001500,0.249996,0,0);-webkit-transform:matrix(3.205587,0.019234,-0.001500,0.249996,0,0);}
.v0_c01324{vertical-align:0.000000px;}
.ls0_c01324{letter-spacing:0.000000px;}
.sc__c01324{text-shadow:none;}
.sc0_c01324{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__c01324{-webkit-text-stroke:0px transparent;}
.sc0_c01324{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01324{word-spacing:0.000000px;}
._0_c01324{width:26.923562px;}
._1_c01324{width:135.634370px;}
.fc0_c01324{color:transparent;}
.fsd_c01324{font-size:30.000540px;}
.fs0_c01324{font-size:36.006497px;}
.fs5_c01324{font-size:72.000576px;}
.fsb_c01324{font-size:72.000900px;}
.fs2_c01324{font-size:72.001296px;}
.fs8_c01324{font-size:78.000624px;}
.fs3_c01324{font-size:78.001404px;}
.fs6_c01324{font-size:84.000672px;}
.fsa_c01324{font-size:84.001050px;}
.fs4_c01324{font-size:84.001512px;}
.fs7_c01324{font-size:90.000720px;}
.fsc_c01324{font-size:90.001125px;}
.fs9_c01324{font-size:90.001620px;}
.fs1_c01324{font-size:132.029103px;}
.y0_c01324{bottom:0.000000px;}
.y144_c01324{bottom:33.001452px;}
.y143_c01324{bottom:33.443730px;}
.y142_c01324{bottom:33.800130px;}
.y141_c01324{bottom:34.184079px;}
.y140_c01324{bottom:34.323552px;}
.y13f_c01324{bottom:34.584192px;}
.y13e_c01324{bottom:34.715412px;}
.y13d_c01324{bottom:34.985943px;}
.y13c_c01324{bottom:35.376462px;}
.y13b_c01324{bottom:35.515656px;}
.y13a_c01324{bottom:35.646876px;}
.y139_c01324{bottom:36.180000px;}
.y130_c01324{bottom:65.038493px;}
.y132_c01324{bottom:65.038778px;}
.y131_c01324{bottom:65.039085px;}
.y12f_c01324{bottom:65.039093px;}
.y137_c01324{bottom:65.039513px;}
.y133_c01324{bottom:65.039528px;}
.y136_c01324{bottom:65.039670px;}
.y134_c01324{bottom:65.039678px;}
.y138_c01324{bottom:65.040113px;}
.y135_c01324{bottom:65.040278px;}
.y12c_c01324{bottom:101.927535px;}
.y12a_c01324{bottom:101.927693px;}
.y12d_c01324{bottom:101.927828px;}
.y12b_c01324{bottom:101.927835px;}
.y129_c01324{bottom:101.928143px;}
.y12e_c01324{bottom:101.928420px;}
.y128_c01324{bottom:101.928743px;}
.y127_c01324{bottom:101.929350px;}
.y126_c01324{bottom:101.929800px;}
.y123_c01324{bottom:101.929958px;}
.y125_c01324{bottom:101.930258px;}
.y124_c01324{bottom:101.930408px;}
.y122_c01324{bottom:137.499713px;}
.y120_c01324{bottom:137.500020px;}
.y121_c01324{bottom:137.500170px;}
.y11f_c01324{bottom:137.500470px;}
.y11e_c01324{bottom:137.500920px;}
.y11d_c01324{bottom:137.501377px;}
.y119_c01324{bottom:137.501843px;}
.y11c_c01324{bottom:137.501985px;}
.y11a_c01324{bottom:137.502285px;}
.y118_c01324{bottom:137.502293px;}
.y11b_c01324{bottom:137.502585px;}
.y10d_c01324{bottom:170.640000px;}
.y10e_c01324{bottom:171.239430px;}
.y10f_c01324{bottom:171.575498px;}
.y110_c01324{bottom:171.679455px;}
.y111_c01324{bottom:171.903630px;}
.y112_c01324{bottom:172.291072px;}
.y113_c01324{bottom:172.678448px;}
.y114_c01324{bottom:172.841880px;}
.y115_c01324{bottom:173.179290px;}
.y116_c01324{bottom:173.286068px;}
.y117_c01324{bottom:173.566830px;}
.y10a_c01324{bottom:207.761595px;}
.y10b_c01324{bottom:207.761637px;}
.y10c_c01324{bottom:207.761877px;}
.y109_c01324{bottom:207.762204px;}
.y103_c01324{bottom:207.762309px;}
.y104_c01324{bottom:207.762420px;}
.y108_c01324{bottom:207.762444px;}
.y106_c01324{bottom:207.762753px;}
.y107_c01324{bottom:207.762993px;}
.y105_c01324{bottom:207.763071px;}
.yf7_c01324{bottom:242.190231px;}
.yf8_c01324{bottom:242.576319px;}
.yf9_c01324{bottom:242.963946px;}
.yfa_c01324{bottom:243.572577px;}
.yfb_c01324{bottom:243.817659px;}
.yfc_c01324{bottom:244.355877px;}
.yfd_c01324{bottom:245.046033px;}
.yfe_c01324{bottom:245.288046px;}
.yff_c01324{bottom:245.822862px;}
.y100_c01324{bottom:245.978661px;}
.y101_c01324{bottom:246.286158px;}
.y102_c01324{bottom:246.825672px;}
.yf3_c01324{bottom:279.450000px;}
.yf4_c01324{bottom:280.242027px;}
.yf5_c01324{bottom:280.664829px;}
.yf6_c01324{bottom:283.425309px;}
.yea_c01324{bottom:383.130000px;}
.yeb_c01324{bottom:383.658048px;}
.yec_c01324{bottom:384.046947px;}
.yed_c01324{bottom:384.257565px;}
.yee_c01324{bottom:384.782427px;}
.yef_c01324{bottom:385.503228px;}
.yf0_c01324{bottom:385.713963px;}
.yf1_c01324{bottom:386.502768px;}
.yf2_c01324{bottom:386.637309px;}
.ye9_c01324{bottom:421.090500px;}
.ye7_c01324{bottom:421.090506px;}
.ye6_c01324{bottom:421.091046px;}
.ye8_c01324{bottom:421.091220px;}
.ye2_c01324{bottom:421.091358px;}
.ye5_c01324{bottom:421.091412px;}
.ye4_c01324{bottom:421.091598px;}
.ye3_c01324{bottom:421.091838px;}
.ydb_c01324{bottom:454.411152px;}
.ydc_c01324{bottom:455.256720px;}
.ydd_c01324{bottom:455.883726px;}
.yde_c01324{bottom:456.514590px;}
.ydf_c01324{bottom:457.764744px;}
.ye0_c01324{bottom:458.184822px;}
.ye1_c01324{bottom:459.663204px;}
.yd3_c01324{bottom:492.743406px;}
.yd4_c01324{bottom:492.743706px;}
.yd5_c01324{bottom:492.743766px;}
.yd2_c01324{bottom:492.743886px;}
.yd6_c01324{bottom:492.744066px;}
.yd7_c01324{bottom:492.744306px;}
.yd8_c01324{bottom:492.745026px;}
.yd9_c01324{bottom:492.745146px;}
.yda_c01324{bottom:492.745740px;}
.ycd_c01324{bottom:528.143238px;}
.yce_c01324{bottom:528.143538px;}
.ycf_c01324{bottom:528.143652px;}
.yca_c01324{bottom:528.143658px;}
.ycb_c01324{bottom:528.143718px;}
.yc9_c01324{bottom:528.143724px;}
.yd0_c01324{bottom:528.143772px;}
.ycc_c01324{bottom:528.143778px;}
.yc8_c01324{bottom:528.143904px;}
.yc7_c01324{bottom:528.144204px;}
.yd1_c01324{bottom:528.144312px;}
.yc6_c01324{bottom:528.144564px;}
.ybf_c01324{bottom:564.303048px;}
.ybe_c01324{bottom:564.303288px;}
.ybb_c01324{bottom:564.303408px;}
.yc0_c01324{bottom:564.303528px;}
.ybc_c01324{bottom:564.303588px;}
.ybd_c01324{bottom:564.303708px;}
.yb9_c01324{bottom:564.303768px;}
.yba_c01324{bottom:564.303948px;}
.yc1_c01324{bottom:564.304248px;}
.yc2_c01324{bottom:564.304482px;}
.yc3_c01324{bottom:564.304782px;}
.yc4_c01324{bottom:564.305322px;}
.yc5_c01324{bottom:564.305502px;}
.yaf_c01324{bottom:597.235494px;}
.yb0_c01324{bottom:597.915282px;}
.yb1_c01324{bottom:598.225914px;}
.yb2_c01324{bottom:598.534008px;}
.yb3_c01324{bottom:599.307240px;}
.yb4_c01324{bottom:599.615310px;}
.yb5_c01324{bottom:600.619302px;}
.yb6_c01324{bottom:600.934914px;}
.yb7_c01324{bottom:601.796418px;}
.yb8_c01324{bottom:602.297112px;}
.ya3_c01324{bottom:633.416298px;}
.ya4_c01324{bottom:633.628074px;}
.ya5_c01324{bottom:633.965304px;}
.ya6_c01324{bottom:634.490658px;}
.ya7_c01324{bottom:634.761084px;}
.ya8_c01324{bottom:635.086152px;}
.ya9_c01324{bottom:635.352888px;}
.yaa_c01324{bottom:636.080802px;}
.yab_c01324{bottom:636.548844px;}
.yac_c01324{bottom:636.679926px;}
.yad_c01324{bottom:637.080078px;}
.yae_c01324{bottom:637.210356px;}
.y98_c01324{bottom:667.976940px;}
.y99_c01324{bottom:668.243442px;}
.y9a_c01324{bottom:668.769960px;}
.y9b_c01324{bottom:669.237996px;}
.y9c_c01324{bottom:669.508434px;}
.y9d_c01324{bottom:669.827682px;}
.y9e_c01324{bottom:670.224300px;}
.y9f_c01324{bottom:670.499412px;}
.ya0_c01324{bottom:670.953228px;}
.ya1_c01324{bottom:671.154750px;}
.ya2_c01324{bottom:671.358348px;}
.y8d_c01324{bottom:701.725098px;}
.y8e_c01324{bottom:702.597924px;}
.y8f_c01324{bottom:702.867930px;}
.y90_c01324{bottom:703.660602px;}
.y91_c01324{bottom:704.191380px;}
.y92_c01324{bottom:704.727726px;}
.y93_c01324{bottom:705.081054px;}
.y94_c01324{bottom:705.782856px;}
.y95_c01324{bottom:706.061688px;}
.y96_c01324{bottom:706.490010px;}
.y97_c01324{bottom:706.762488px;}
.y82_c01324{bottom:738.175920px;}
.y83_c01324{bottom:738.566712px;}
.y84_c01324{bottom:738.896556px;}
.y85_c01324{bottom:739.433538px;}
.y86_c01324{bottom:739.693320px;}
.y87_c01324{bottom:739.892166px;}
.y88_c01324{bottom:740.099418px;}
.y89_c01324{bottom:740.424606px;}
.y8a_c01324{bottom:741.357096px;}
.y8b_c01324{bottom:741.616908px;}
.y8c_c01324{bottom:741.882702px;}
.y76_c01324{bottom:773.547084px;}
.y77_c01324{bottom:774.083088px;}
.y78_c01324{bottom:774.474882px;}
.y79_c01324{bottom:774.604854px;}
.y7a_c01324{bottom:774.812034px;}
.y7b_c01324{bottom:775.008780px;}
.y7c_c01324{bottom:775.604136px;}
.y7d_c01324{bottom:775.735212px;}
.y7e_c01324{bottom:776.265366px;}
.y7f_c01324{bottom:776.661978px;}
.y80_c01324{bottom:776.860848px;}
.y81_c01324{bottom:777.332604px;}
.y69_c01324{bottom:809.459172px;}
.y6a_c01324{bottom:809.699790px;}
.y6b_c01324{bottom:809.996994px;}
.y6c_c01324{bottom:810.536868px;}
.y6d_c01324{bottom:810.933066px;}
.y6e_c01324{bottom:811.231200px;}
.y6f_c01324{bottom:811.546656px;}
.y70_c01324{bottom:812.085378px;}
.y71_c01324{bottom:812.470788px;}
.y72_c01324{bottom:812.940618px;}
.y73_c01324{bottom:813.098958px;}
.y74_c01324{bottom:813.784974px;}
.y75_c01324{bottom:814.022082px;}
.y5e_c01324{bottom:845.910114px;}
.y5f_c01324{bottom:846.437766px;}
.y60_c01324{bottom:846.902160px;}
.y61_c01324{bottom:847.168836px;}
.y62_c01324{bottom:847.429806px;}
.y63_c01324{bottom:847.838466px;}
.y64_c01324{bottom:848.292360px;}
.y65_c01324{bottom:848.498550px;}
.y66_c01324{bottom:849.021312px;}
.y67_c01324{bottom:849.222816px;}
.y68_c01324{bottom:849.430062px;}
.y52_c01324{bottom:881.009844px;}
.y53_c01324{bottom:881.134620px;}
.y54_c01324{bottom:882.061578px;}
.y55_c01324{bottom:882.449760px;}
.y56_c01324{bottom:882.845274px;}
.y57_c01324{bottom:882.978912px;}
.y58_c01324{bottom:883.176690px;}
.y59_c01324{bottom:883.575864px;}
.y5a_c01324{bottom:884.237028px;}
.y5b_c01324{bottom:884.774010px;}
.y5c_c01324{bottom:884.967132px;}
.y5d_c01324{bottom:885.562560px;}
.y47_c01324{bottom:916.110900px;}
.y48_c01324{bottom:917.331864px;}
.y49_c01324{bottom:917.877960px;}
.y4a_c01324{bottom:918.252300px;}
.y4b_c01324{bottom:918.486828px;}
.y4c_c01324{bottom:919.257378px;}
.y4d_c01324{bottom:919.722666px;}
.y4e_c01324{bottom:920.496966px;}
.y4f_c01324{bottom:920.878632px;}
.y50_c01324{bottom:921.575628px;}
.y51_c01324{bottom:921.810114px;}
.y3c_c01324{bottom:951.480000px;}
.y3d_c01324{bottom:952.617546px;}
.y3e_c01324{bottom:952.787106px;}
.y3f_c01324{bottom:952.917774px;}
.y40_c01324{bottom:953.225574px;}
.y41_c01324{bottom:953.363832px;}
.y42_c01324{bottom:953.585328px;}
.y43_c01324{bottom:953.851992px;}
.y44_c01324{bottom:954.117696px;}
.y45_c01324{bottom:954.458970px;}
.y46_c01324{bottom:954.694404px;}
.y36_c01324{bottom:986.579874px;}
.y37_c01324{bottom:987.095586px;}
.y38_c01324{bottom:987.623271px;}
.y39_c01324{bottom:988.151028px;}
.y3a_c01324{bottom:989.204736px;}
.y3b_c01324{bottom:989.737167px;}
.y30_c01324{bottom:1025.475540px;}
.y32_c01324{bottom:1025.475771px;}
.y2c_c01324{bottom:1025.475807px;}
.y2e_c01324{bottom:1025.475858px;}
.y2d_c01324{bottom:1025.475978px;}
.y31_c01324{bottom:1025.476131px;}
.y34_c01324{bottom:1025.476233px;}
.y2f_c01324{bottom:1025.476269px;}
.y33_c01324{bottom:1025.476482px;}
.y35_c01324{bottom:1025.476524px;}
.y2b_c01324{bottom:1025.476536px;}
.y20_c01324{bottom:1055.702172px;}
.y21_c01324{bottom:1056.183846px;}
.y22_c01324{bottom:1057.620228px;}
.y23_c01324{bottom:1057.997184px;}
.y24_c01324{bottom:1058.713095px;}
.y25_c01324{bottom:1059.446028px;}
.y26_c01324{bottom:1060.072839px;}
.y27_c01324{bottom:1060.663926px;}
.y28_c01324{bottom:1061.634612px;}
.y29_c01324{bottom:1062.011370px;}
.y2a_c01324{bottom:1062.367716px;}
.y12_c01324{bottom:1092.961371px;}
.y13_c01324{bottom:1093.876185px;}
.y14_c01324{bottom:1094.337867px;}
.y15_c01324{bottom:1094.529198px;}
.y16_c01324{bottom:1095.196512px;}
.y17_c01324{bottom:1095.327876px;}
.y18_c01324{bottom:1095.598398px;}
.y19_c01324{bottom:1096.052007px;}
.y1a_c01324{bottom:1096.322574px;}
.y1b_c01324{bottom:1097.053167px;}
.y1c_c01324{bottom:1097.254020px;}
.y1d_c01324{bottom:1097.592519px;}
.y1e_c01324{bottom:1097.848587px;}
.y1f_c01324{bottom:1098.005763px;}
.y6_c01324{bottom:1128.871500px;}
.y7_c01324{bottom:1129.906221px;}
.y8_c01324{bottom:1130.359803px;}
.y9_c01324{bottom:1130.751843px;}
.ya_c01324{bottom:1130.952876px;}
.yb_c01324{bottom:1131.160245px;}
.yc_c01324{bottom:1131.879534px;}
.yd_c01324{bottom:1132.215018px;}
.ye_c01324{bottom:1132.610145px;}
.yf_c01324{bottom:1132.809414px;}
.y10_c01324{bottom:1133.480076px;}
.y11_c01324{bottom:1133.668014px;}
.y4_c01324{bottom:1193.140500px;}
.y5_c01324{bottom:1199.919646px;}
.y1_c01324{bottom:1225.261500px;}
.y2_c01324{bottom:1225.462111px;}
.y3_c01324{bottom:1227.298423px;}
.hf_c01324{height:30.000540px;}
.h2_c01324{height:36.006497px;}
.h7_c01324{height:72.000576px;}
.hd_c01324{height:72.000900px;}
.h4_c01324{height:72.001296px;}
.ha_c01324{height:78.000624px;}
.h5_c01324{height:78.001404px;}
.h8_c01324{height:84.000672px;}
.hc_c01324{height:84.001050px;}
.h6_c01324{height:84.001512px;}
.h9_c01324{height:90.000720px;}
.he_c01324{height:90.001125px;}
.hb_c01324{height:90.001620px;}
.h3_c01324{height:132.029103px;}
.h1_c01324{height:1250.250000px;}
.h0_c01324{height:1250.370000px;}
.w1_c01324{width:912.000000px;}
.w0_c01324{width:912.300000px;}
.x0_c01324{left:0.000000px;}
.x3b_c01324{left:1.761468px;}
.x6_c01324{left:2.850000px;}
.x12_c01324{left:22.294653px;}
.x4_c01324{left:65.551500px;}
.x71_c01324{left:163.744320px;}
.x7_c01324{left:175.303500px;}
.x43_c01324{left:177.194970px;}
.x81_c01324{left:179.013510px;}
.x78_c01324{left:180.188304px;}
.xa7_c01324{left:181.788000px;}
.xb9_c01324{left:182.866500px;}
.xcf_c01324{left:184.413030px;}
.x72_c01324{left:199.063038px;}
.x88_c01324{left:203.317536px;}
.x2d_c01324{left:208.389024px;}
.x50_c01324{left:210.412944px;}
.x82_c01324{left:211.684032px;}
.xc2_c01324{left:216.001515px;}
.x1e_c01324{left:219.434907px;}
.x6c_c01324{left:221.766942px;}
.x93_c01324{left:224.063412px;}
.x83_c01324{left:235.174410px;}
.xaa_c01324{left:236.897718px;}
.xc8_c01324{left:239.492955px;}
.x25_c01324{left:241.113429px;}
.x5e_c01324{left:242.553486px;}
.x89_c01324{left:244.898202px;}
.x99_c01324{left:245.984922px;}
.x8_c01324{left:250.900500px;}
.x51_c01324{left:252.838434px;}
.x3c_c01324{left:254.148438px;}
.x73_c01324{left:255.245088px;}
.x94_c01324{left:257.062932px;}
.x48_c01324{left:263.885850px;}
.x57_c01324{left:265.505790px;}
.xa1_c01324{left:268.998000px;}
.x2e_c01324{left:274.292064px;}
.x79_c01324{left:277.384140px;}
.xb3_c01324{left:282.150219px;}
.x13_c01324{left:283.599153px;}
.x26_c01324{left:285.393522px;}
.x31_c01324{left:286.531500px;}
.x95_c01324{left:290.276940px;}
.xab_c01324{left:292.251885px;}
.xc3_c01324{left:293.491950px;}
.xd4_c01324{left:295.365000px;}
.x5f_c01324{left:297.639048px;}
.xba_c01324{left:302.752500px;}
.x3d_c01324{left:307.607796px;}
.x6d_c01324{left:309.520740px;}
.xa8_c01324{left:313.792500px;}
.x9_c01324{left:316.240500px;}
.x27_c01324{left:318.874728px;}
.x66_c01324{left:320.627028px;}
.x7a_c01324{left:321.666606px;}
.x32_c01324{left:328.921500px;}
.x44_c01324{left:330.027246px;}
.xa2_c01324{left:333.814500px;}
.x9a_c01324{left:335.356350px;}
.x2f_c01324{left:340.156113px;}
.x49_c01324{left:341.358732px;}
.x74_c01324{left:342.707886px;}
.x8a_c01324{left:344.258292px;}
.xa_c01324{left:349.746000px;}
.x58_c01324{left:352.446594px;}
.x96_c01324{left:356.061492px;}
.xc4_c01324{left:358.833585px;}
.x33_c01324{left:361.588500px;}
.x45_c01324{left:362.971482px;}
.x7b_c01324{left:365.689578px;}
.xa3_c01324{left:368.917500px;}
.xbb_c01324{left:369.966000px;}
.x30_c01324{left:373.392615px;}
.x97_c01324{left:378.204666px;}
.xb_c01324{left:384.307500px;}
.x4a_c01324{left:385.902378px;}
.x59_c01324{left:386.991318px;}
.x5_c01324{left:388.368000px;}
.xbc_c01324{left:390.757500px;}
.xc9_c01324{left:392.585288px;}
.x14_c01324{left:394.818153px;}
.x9b_c01324{left:402.047418px;}
.xb4_c01324{left:413.101935px;}
.xac_c01324{left:414.286656px;}
.x15_c01324{left:416.712153px;}
.x5a_c01324{left:419.677554px;}
.x46_c01324{left:429.389448px;}
.x60_c01324{left:430.453986px;}
.x6e_c01324{left:432.638256px;}
.x8b_c01324{left:433.899726px;}
.x1_c01324{left:436.377000px;}
.x34_c01324{left:438.538500px;}
.x75_c01324{left:442.080594px;}
.x2_c01324{left:446.935500px;}
.xd0_c01324{left:448.206623px;}
.x1f_c01324{left:449.469513px;}
.x3e_c01324{left:451.250574px;}
.x84_c01324{left:454.147914px;}
.x98_c01324{left:456.045498px;}
.x16_c01324{left:461.799153px;}
.x61_c01324{left:463.665222px;}
.xca_c01324{left:469.265708px;}
.x35_c01324{left:473.103000px;}
.x52_c01324{left:474.501282px;}
.x7c_c01324{left:476.121252px;}
.x28_c01324{left:483.577659px;}
.x67_c01324{left:486.111882px;}
.xad_c01324{left:491.239197px;}
.xd1_c01324{left:493.837763px;}
.x4b_c01324{left:497.433984px;}
.xcb_c01324{left:502.746548px;}
.xc_c01324{left:504.189000px;}
.x8c_c01324{left:510.040944px;}
.x9c_c01324{left:511.127664px;}
.xbd_c01324{left:513.081000px;}
.xc5_c01324{left:514.624485px;}
.x20_c01324{left:516.123015px;}
.x3f_c01324{left:517.696776px;}
.x5b_c01324{left:519.015762px;}
.x7d_c01324{left:520.138224px;}
.xb5_c01324{left:523.804422px;}
.x36_c01324{left:528.477000px;}
.x8d_c01324{left:533.531322px;}
.xd2_c01324{left:535.958813px;}
.x17_c01324{left:537.400653px;}
.x29_c01324{left:538.928148px;}
.x5c_c01324{left:540.909588px;}
.x3_c01324{left:543.583500px;}
.xcc_c01324{left:546.757650px;}
.x53_c01324{left:551.430858px;}
.x62_c01324{left:552.524514px;}
.xb6_c01324{left:557.015619px;}
.xd_c01324{left:560.103000px;}
.x85_c01324{left:565.389690px;}
.x90_c01324{left:566.745444px;}
.xc6_c01324{left:569.435857px;}
.x2a_c01324{left:571.869336px;}
.x21_c01324{left:573.089805px;}
.xa4_c01324{left:576.528000px;}
.xd5_c01324{left:581.286000px;}
.x18_c01324{left:582.495153px;}
.xae_c01324{left:589.764603px;}
.x37_c01324{left:595.143000px;}
.x68_c01324{left:597.153600px;}
.xb7_c01324{left:602.915775px;}
.x4c_c01324{left:607.329102px;}
.x8e_c01324{left:610.482552px;}
.xa5_c01324{left:611.650500px;}
.x9d_c01324{left:621.287928px;}
.xbe_c01324{left:623.242500px;}
.xaf_c01324{left:624.349896px;}
.xe_c01324{left:625.957500px;}
.x40_c01324{left:628.395450px;}
.x91_c01324{left:631.276476px;}
.xd6_c01324{left:640.686000px;}
.x9e_c01324{left:644.778306px;}
.xcd_c01324{left:657.728925px;}
.xf_c01324{left:659.169000px;}
.x38_c01324{left:661.569000px;}
.x7e_c01324{left:663.509502px;}
.x54_c01324{left:673.739394px;}
.x2b_c01324{left:681.491778px;}
.x41_c01324{left:682.936296px;}
.x69_c01324{left:684.852696px;}
.x76_c01324{left:685.876644px;}
.x86_c01324{left:687.700146px;}
.xbf_c01324{left:690.724500px;}
.x4d_c01324{left:694.518906px;}
.x55_c01324{left:696.449124px;}
.xb0_c01324{left:700.735437px;}
.x19_c01324{left:704.260653px;}
.x6f_c01324{left:706.965060px;}
.x63_c01324{left:708.020772px;}
.xc0_c01324{left:712.080000px;}
.x22_c01324{left:715.131048px;}
.x6a_c01324{left:719.685138px;}
.xb1_c01324{left:722.951802px;}
.x4e_c01324{left:728.019636px;}
.x87_c01324{left:730.900836px;}
.x1a_c01324{left:737.736153px;}
.x70_c01324{left:740.989290px;}
.xa6_c01324{left:743.118000px;}
.x39_c01324{left:746.887500px;}
.xd3_c01324{left:747.911115px;}
.x23_c01324{left:749.423022px;}
.x64_c01324{left:751.223424px;}
.x8f_c01324{left:753.043332px;}
.x9f_c01324{left:755.208570px;}
.x47_c01324{left:760.685802px;}
.x4f_c01324{left:762.580860px;}
.x92_c01324{left:764.927112px;}
.xb2_c01324{left:766.951041px;}
.xc1_c01324{left:768.232500px;}
.x10_c01324{left:770.946000px;}
.x6b_c01324{left:773.139780px;}
.x77_c01324{left:774.434436px;}
.xc7_c01324{left:778.689593px;}
.x24_c01324{left:781.813050px;}
.xb8_c01324{left:789.219480px;}
.x2c_c01324{left:793.002792px;}
.x1b_c01324{left:794.152653px;}
.x65_c01324{left:795.546570px;}
.xa0_c01324{left:800.029290px;}
.x11_c01324{left:802.269000px;}
.x3a_c01324{left:805.746000px;}
.x5d_c01324{left:807.130458px;}
.x42_c01324{left:816.055200px;}
.x56_c01324{left:828.228540px;}
.x7f_c01324{left:831.786486px;}
.x1c_c01324{left:836.830653px;}
.xa9_c01324{left:844.339500px;}
.xce_c01324{left:847.810673px;}
.x1d_c01324{left:863.026653px;}
.x80_c01324{left:903.334128px;}
@media print{
.v0_c01324{vertical-align:0.000000pt;}
.ls0_c01324{letter-spacing:0.000000pt;}
.ws0_c01324{word-spacing:0.000000pt;}
._0_c01324{width:23.932055pt;}
._1_c01324{width:120.563885pt;}
.fsd_c01324{font-size:26.667147pt;}
.fs0_c01324{font-size:32.005775pt;}
.fs5_c01324{font-size:64.000512pt;}
.fsb_c01324{font-size:64.000800pt;}
.fs2_c01324{font-size:64.001152pt;}
.fs8_c01324{font-size:69.333888pt;}
.fs3_c01324{font-size:69.334581pt;}
.fs6_c01324{font-size:74.667264pt;}
.fsa_c01324{font-size:74.667600pt;}
.fs4_c01324{font-size:74.668011pt;}
.fs7_c01324{font-size:80.000640pt;}
.fsc_c01324{font-size:80.001000pt;}
.fs9_c01324{font-size:80.001440pt;}
.fs1_c01324{font-size:117.359202pt;}
.y0_c01324{bottom:0.000000pt;}
.y144_c01324{bottom:29.334624pt;}
.y143_c01324{bottom:29.727760pt;}
.y142_c01324{bottom:30.044560pt;}
.y141_c01324{bottom:30.385848pt;}
.y140_c01324{bottom:30.509824pt;}
.y13f_c01324{bottom:30.741504pt;}
.y13e_c01324{bottom:30.858144pt;}
.y13d_c01324{bottom:31.098616pt;}
.y13c_c01324{bottom:31.445744pt;}
.y13b_c01324{bottom:31.569472pt;}
.y13a_c01324{bottom:31.686112pt;}
.y139_c01324{bottom:32.160000pt;}
.y130_c01324{bottom:57.811993pt;}
.y132_c01324{bottom:57.812247pt;}
.y131_c01324{bottom:57.812520pt;}
.y12f_c01324{bottom:57.812527pt;}
.y137_c01324{bottom:57.812900pt;}
.y133_c01324{bottom:57.812913pt;}
.y136_c01324{bottom:57.813040pt;}
.y134_c01324{bottom:57.813047pt;}
.y138_c01324{bottom:57.813433pt;}
.y135_c01324{bottom:57.813580pt;}
.y12c_c01324{bottom:90.602253pt;}
.y12a_c01324{bottom:90.602393pt;}
.y12d_c01324{bottom:90.602513pt;}
.y12b_c01324{bottom:90.602520pt;}
.y129_c01324{bottom:90.602793pt;}
.y12e_c01324{bottom:90.603040pt;}
.y128_c01324{bottom:90.603327pt;}
.y127_c01324{bottom:90.603867pt;}
.y126_c01324{bottom:90.604267pt;}
.y123_c01324{bottom:90.604407pt;}
.y125_c01324{bottom:90.604673pt;}
.y124_c01324{bottom:90.604807pt;}
.y122_c01324{bottom:122.221967pt;}
.y120_c01324{bottom:122.222240pt;}
.y121_c01324{bottom:122.222373pt;}
.y11f_c01324{bottom:122.222640pt;}
.y11e_c01324{bottom:122.223040pt;}
.y11d_c01324{bottom:122.223447pt;}
.y119_c01324{bottom:122.223860pt;}
.y11c_c01324{bottom:122.223987pt;}
.y11a_c01324{bottom:122.224253pt;}
.y118_c01324{bottom:122.224260pt;}
.y11b_c01324{bottom:122.224520pt;}
.y10d_c01324{bottom:151.680000pt;}
.y10e_c01324{bottom:152.212827pt;}
.y10f_c01324{bottom:152.511553pt;}
.y110_c01324{bottom:152.603960pt;}
.y111_c01324{bottom:152.803227pt;}
.y112_c01324{bottom:153.147620pt;}
.y113_c01324{bottom:153.491953pt;}
.y114_c01324{bottom:153.637227pt;}
.y115_c01324{bottom:153.937147pt;}
.y116_c01324{bottom:154.032060pt;}
.y117_c01324{bottom:154.281627pt;}
.y10a_c01324{bottom:184.676973pt;}
.y10b_c01324{bottom:184.677011pt;}
.y10c_c01324{bottom:184.677224pt;}
.y109_c01324{bottom:184.677515pt;}
.y103_c01324{bottom:184.677608pt;}
.y104_c01324{bottom:184.677707pt;}
.y108_c01324{bottom:184.677728pt;}
.y106_c01324{bottom:184.678003pt;}
.y107_c01324{bottom:184.678216pt;}
.y105_c01324{bottom:184.678285pt;}
.yf7_c01324{bottom:215.280205pt;}
.yf8_c01324{bottom:215.623395pt;}
.yf9_c01324{bottom:215.967952pt;}
.yfa_c01324{bottom:216.508957pt;}
.yfb_c01324{bottom:216.726808pt;}
.yfc_c01324{bottom:217.205224pt;}
.yfd_c01324{bottom:217.818696pt;}
.yfe_c01324{bottom:218.033819pt;}
.yff_c01324{bottom:218.509211pt;}
.y100_c01324{bottom:218.647699pt;}
.y101_c01324{bottom:218.921029pt;}
.y102_c01324{bottom:219.400597pt;}
.yf3_c01324{bottom:248.400000pt;}
.yf4_c01324{bottom:249.104024pt;}
.yf5_c01324{bottom:249.479848pt;}
.yf6_c01324{bottom:251.933608pt;}
.yea_c01324{bottom:340.560000pt;}
.yeb_c01324{bottom:341.029376pt;}
.yec_c01324{bottom:341.375064pt;}
.yed_c01324{bottom:341.562280pt;}
.yee_c01324{bottom:342.028824pt;}
.yef_c01324{bottom:342.669536pt;}
.yf0_c01324{bottom:342.856856pt;}
.yf1_c01324{bottom:343.558016pt;}
.yf2_c01324{bottom:343.677608pt;}
.ye9_c01324{bottom:374.302667pt;}
.ye7_c01324{bottom:374.302672pt;}
.ye6_c01324{bottom:374.303152pt;}
.ye8_c01324{bottom:374.303307pt;}
.ye2_c01324{bottom:374.303429pt;}
.ye5_c01324{bottom:374.303477pt;}
.ye4_c01324{bottom:374.303643pt;}
.ye3_c01324{bottom:374.303856pt;}
.ydb_c01324{bottom:403.921024pt;}
.ydc_c01324{bottom:404.672640pt;}
.ydd_c01324{bottom:405.229979pt;}
.yde_c01324{bottom:405.790747pt;}
.ydf_c01324{bottom:406.901995pt;}
.ye0_c01324{bottom:407.275397pt;}
.ye1_c01324{bottom:408.589515pt;}
.yd3_c01324{bottom:437.994139pt;}
.yd4_c01324{bottom:437.994405pt;}
.yd5_c01324{bottom:437.994459pt;}
.yd2_c01324{bottom:437.994565pt;}
.yd6_c01324{bottom:437.994725pt;}
.yd7_c01324{bottom:437.994939pt;}
.yd8_c01324{bottom:437.995579pt;}
.yd9_c01324{bottom:437.995685pt;}
.yda_c01324{bottom:437.996213pt;}
.ycd_c01324{bottom:469.460656pt;}
.yce_c01324{bottom:469.460923pt;}
.ycf_c01324{bottom:469.461024pt;}
.yca_c01324{bottom:469.461029pt;}
.ycb_c01324{bottom:469.461083pt;}
.yc9_c01324{bottom:469.461088pt;}
.yd0_c01324{bottom:469.461131pt;}
.ycc_c01324{bottom:469.461136pt;}
.yc8_c01324{bottom:469.461248pt;}
.yc7_c01324{bottom:469.461515pt;}
.yd1_c01324{bottom:469.461611pt;}
.yc6_c01324{bottom:469.461835pt;}
.ybf_c01324{bottom:501.602709pt;}
.ybe_c01324{bottom:501.602923pt;}
.ybb_c01324{bottom:501.603029pt;}
.yc0_c01324{bottom:501.603136pt;}
.ybc_c01324{bottom:501.603189pt;}
.ybd_c01324{bottom:501.603296pt;}
.yb9_c01324{bottom:501.603349pt;}
.yba_c01324{bottom:501.603509pt;}
.yc1_c01324{bottom:501.603776pt;}
.yc2_c01324{bottom:501.603984pt;}
.yc3_c01324{bottom:501.604251pt;}
.yc4_c01324{bottom:501.604731pt;}
.yc5_c01324{bottom:501.604891pt;}
.yaf_c01324{bottom:530.875995pt;}
.yb0_c01324{bottom:531.480251pt;}
.yb1_c01324{bottom:531.756368pt;}
.yb2_c01324{bottom:532.030229pt;}
.yb3_c01324{bottom:532.717547pt;}
.yb4_c01324{bottom:532.991387pt;}
.yb5_c01324{bottom:533.883824pt;}
.yb6_c01324{bottom:534.164368pt;}
.yb7_c01324{bottom:534.930149pt;}
.yb8_c01324{bottom:535.375211pt;}
.ya3_c01324{bottom:563.036709pt;}
.ya4_c01324{bottom:563.224955pt;}
.ya5_c01324{bottom:563.524715pt;}
.ya6_c01324{bottom:563.991696pt;}
.ya7_c01324{bottom:564.232075pt;}
.ya8_c01324{bottom:564.521024pt;}
.ya9_c01324{bottom:564.758123pt;}
.yaa_c01324{bottom:565.405157pt;}
.yab_c01324{bottom:565.821195pt;}
.yac_c01324{bottom:565.937712pt;}
.yad_c01324{bottom:566.293403pt;}
.yae_c01324{bottom:566.409205pt;}
.y98_c01324{bottom:593.757280pt;}
.y99_c01324{bottom:593.994171pt;}
.y9a_c01324{bottom:594.462187pt;}
.y9b_c01324{bottom:594.878219pt;}
.y9c_c01324{bottom:595.118608pt;}
.y9d_c01324{bottom:595.402384pt;}
.y9e_c01324{bottom:595.754933pt;}
.y9f_c01324{bottom:595.999477pt;}
.ya0_c01324{bottom:596.402869pt;}
.ya1_c01324{bottom:596.582000pt;}
.ya2_c01324{bottom:596.762976pt;}
.y8d_c01324{bottom:623.755643pt;}
.y8e_c01324{bottom:624.531488pt;}
.y8f_c01324{bottom:624.771493pt;}
.y90_c01324{bottom:625.476091pt;}
.y91_c01324{bottom:625.947893pt;}
.y92_c01324{bottom:626.424645pt;}
.y93_c01324{bottom:626.738715pt;}
.y94_c01324{bottom:627.362539pt;}
.y95_c01324{bottom:627.610389pt;}
.y96_c01324{bottom:627.991120pt;}
.y97_c01324{bottom:628.233323pt;}
.y82_c01324{bottom:656.156373pt;}
.y83_c01324{bottom:656.503744pt;}
.y84_c01324{bottom:656.796939pt;}
.y85_c01324{bottom:657.274256pt;}
.y86_c01324{bottom:657.505173pt;}
.y87_c01324{bottom:657.681925pt;}
.y88_c01324{bottom:657.866149pt;}
.y89_c01324{bottom:658.155205pt;}
.y8a_c01324{bottom:658.984085pt;}
.y8b_c01324{bottom:659.215029pt;}
.y8c_c01324{bottom:659.451291pt;}
.y76_c01324{bottom:687.597408pt;}
.y77_c01324{bottom:688.073856pt;}
.y78_c01324{bottom:688.422117pt;}
.y79_c01324{bottom:688.537648pt;}
.y7a_c01324{bottom:688.721808pt;}
.y7b_c01324{bottom:688.896693pt;}
.y7c_c01324{bottom:689.425899pt;}
.y7d_c01324{bottom:689.542411pt;}
.y7e_c01324{bottom:690.013659pt;}
.y7f_c01324{bottom:690.366203pt;}
.y80_c01324{bottom:690.542976pt;}
.y81_c01324{bottom:690.962315pt;}
.y69_c01324{bottom:719.519264pt;}
.y6a_c01324{bottom:719.733147pt;}
.y6b_c01324{bottom:719.997328pt;}
.y6c_c01324{bottom:720.477216pt;}
.y6d_c01324{bottom:720.829392pt;}
.y6e_c01324{bottom:721.094400pt;}
.y6f_c01324{bottom:721.374805pt;}
.y70_c01324{bottom:721.853669pt;}
.y71_c01324{bottom:722.196256pt;}
.y72_c01324{bottom:722.613883pt;}
.y73_c01324{bottom:722.754629pt;}
.y74_c01324{bottom:723.364421pt;}
.y75_c01324{bottom:723.575184pt;}
.y5e_c01324{bottom:751.920101pt;}
.y5f_c01324{bottom:752.389125pt;}
.y60_c01324{bottom:752.801920pt;}
.y61_c01324{bottom:753.038965pt;}
.y62_c01324{bottom:753.270939pt;}
.y63_c01324{bottom:753.634192pt;}
.y64_c01324{bottom:754.037653pt;}
.y65_c01324{bottom:754.220933pt;}
.y66_c01324{bottom:754.685611pt;}
.y67_c01324{bottom:754.864725pt;}
.y68_c01324{bottom:755.048944pt;}
.y52_c01324{bottom:783.119861pt;}
.y53_c01324{bottom:783.230773pt;}
.y54_c01324{bottom:784.054736pt;}
.y55_c01324{bottom:784.399787pt;}
.y56_c01324{bottom:784.751355pt;}
.y57_c01324{bottom:784.870144pt;}
.y58_c01324{bottom:785.045947pt;}
.y59_c01324{bottom:785.400768pt;}
.y5a_c01324{bottom:785.988469pt;}
.y5b_c01324{bottom:786.465787pt;}
.y5c_c01324{bottom:786.637451pt;}
.y5d_c01324{bottom:787.166720pt;}
.y47_c01324{bottom:814.320800pt;}
.y48_c01324{bottom:815.406101pt;}
.y49_c01324{bottom:815.891520pt;}
.y4a_c01324{bottom:816.224267pt;}
.y4b_c01324{bottom:816.432736pt;}
.y4c_c01324{bottom:817.117669pt;}
.y4d_c01324{bottom:817.531259pt;}
.y4e_c01324{bottom:818.219525pt;}
.y4f_c01324{bottom:818.558784pt;}
.y50_c01324{bottom:819.178336pt;}
.y51_c01324{bottom:819.386768pt;}
.y3c_c01324{bottom:845.760000pt;}
.y3d_c01324{bottom:846.771152pt;}
.y3e_c01324{bottom:846.921872pt;}
.y3f_c01324{bottom:847.038021pt;}
.y40_c01324{bottom:847.311621pt;}
.y41_c01324{bottom:847.434517pt;}
.y42_c01324{bottom:847.631403pt;}
.y43_c01324{bottom:847.868437pt;}
.y44_c01324{bottom:848.104619pt;}
.y45_c01324{bottom:848.407973pt;}
.y46_c01324{bottom:848.617248pt;}
.y36_c01324{bottom:876.959888pt;}
.y37_c01324{bottom:877.418299pt;}
.y38_c01324{bottom:877.887352pt;}
.y39_c01324{bottom:878.356469pt;}
.y3a_c01324{bottom:879.293099pt;}
.y3b_c01324{bottom:879.766371pt;}
.y30_c01324{bottom:911.533813pt;}
.y32_c01324{bottom:911.534019pt;}
.y2c_c01324{bottom:911.534051pt;}
.y2e_c01324{bottom:911.534096pt;}
.y2d_c01324{bottom:911.534203pt;}
.y31_c01324{bottom:911.534339pt;}
.y34_c01324{bottom:911.534429pt;}
.y2f_c01324{bottom:911.534461pt;}
.y33_c01324{bottom:911.534651pt;}
.y35_c01324{bottom:911.534688pt;}
.y2b_c01324{bottom:911.534699pt;}
.y20_c01324{bottom:938.401931pt;}
.y21_c01324{bottom:938.830085pt;}
.y22_c01324{bottom:940.106869pt;}
.y23_c01324{bottom:940.441941pt;}
.y24_c01324{bottom:941.078307pt;}
.y25_c01324{bottom:941.729803pt;}
.y26_c01324{bottom:942.286968pt;}
.y27_c01324{bottom:942.812379pt;}
.y28_c01324{bottom:943.675211pt;}
.y29_c01324{bottom:944.010107pt;}
.y2a_c01324{bottom:944.326859pt;}
.y12_c01324{bottom:971.521219pt;}
.y13_c01324{bottom:972.334387pt;}
.y14_c01324{bottom:972.744771pt;}
.y15_c01324{bottom:972.914843pt;}
.y16_c01324{bottom:973.508011pt;}
.y17_c01324{bottom:973.624779pt;}
.y18_c01324{bottom:973.865243pt;}
.y19_c01324{bottom:974.268451pt;}
.y1a_c01324{bottom:974.508955pt;}
.y1b_c01324{bottom:975.158371pt;}
.y1c_c01324{bottom:975.336907pt;}
.y1d_c01324{bottom:975.637795pt;}
.y1e_c01324{bottom:975.865411pt;}
.y1f_c01324{bottom:976.005123pt;}
.y6_c01324{bottom:1003.441333pt;}
.y7_c01324{bottom:1004.361085pt;}
.y8_c01324{bottom:1004.764269pt;}
.y9_c01324{bottom:1005.112749pt;}
.ya_c01324{bottom:1005.291445pt;}
.yb_c01324{bottom:1005.475773pt;}
.yc_c01324{bottom:1006.115141pt;}
.yd_c01324{bottom:1006.413349pt;}
.ye_c01324{bottom:1006.764573pt;}
.yf_c01324{bottom:1006.941701pt;}
.y10_c01324{bottom:1007.537845pt;}
.y11_c01324{bottom:1007.704901pt;}
.y4_c01324{bottom:1060.569333pt;}
.y5_c01324{bottom:1066.595241pt;}
.y1_c01324{bottom:1089.121333pt;}
.y2_c01324{bottom:1089.299655pt;}
.y3_c01324{bottom:1090.931932pt;}
.hf_c01324{height:26.667147pt;}
.h2_c01324{height:32.005775pt;}
.h7_c01324{height:64.000512pt;}
.hd_c01324{height:64.000800pt;}
.h4_c01324{height:64.001152pt;}
.ha_c01324{height:69.333888pt;}
.h5_c01324{height:69.334581pt;}
.h8_c01324{height:74.667264pt;}
.hc_c01324{height:74.667600pt;}
.h6_c01324{height:74.668011pt;}
.h9_c01324{height:80.000640pt;}
.he_c01324{height:80.001000pt;}
.hb_c01324{height:80.001440pt;}
.h3_c01324{height:117.359202pt;}
.h1_c01324{height:1111.333333pt;}
.h0_c01324{height:1111.440000pt;}
.w1_c01324{width:810.666667pt;}
.w0_c01324{width:810.933333pt;}
.x0_c01324{left:0.000000pt;}
.x3b_c01324{left:1.565749pt;}
.x6_c01324{left:2.533333pt;}
.x12_c01324{left:19.817469pt;}
.x4_c01324{left:58.268000pt;}
.x71_c01324{left:145.550507pt;}
.x7_c01324{left:155.825333pt;}
.x43_c01324{left:157.506640pt;}
.x81_c01324{left:159.123120pt;}
.x78_c01324{left:160.167381pt;}
.xa7_c01324{left:161.589333pt;}
.xb9_c01324{left:162.548000pt;}
.xcf_c01324{left:163.922693pt;}
.x72_c01324{left:176.944923pt;}
.x88_c01324{left:180.726699pt;}
.x2d_c01324{left:185.234688pt;}
.x50_c01324{left:187.033728pt;}
.x82_c01324{left:188.163584pt;}
.xc2_c01324{left:192.001347pt;}
.x1e_c01324{left:195.053251pt;}
.x6c_c01324{left:197.126171pt;}
.x93_c01324{left:199.167477pt;}
.x83_c01324{left:209.043920pt;}
.xaa_c01324{left:210.575749pt;}
.xc8_c01324{left:212.882627pt;}
.x25_c01324{left:214.323048pt;}
.x5e_c01324{left:215.603099pt;}
.x89_c01324{left:217.687291pt;}
.x99_c01324{left:218.653264pt;}
.x8_c01324{left:223.022667pt;}
.x51_c01324{left:224.745275pt;}
.x3c_c01324{left:225.909723pt;}
.x73_c01324{left:226.884523pt;}
.x94_c01324{left:228.500384pt;}
.x48_c01324{left:234.565200pt;}
.x57_c01324{left:236.005147pt;}
.xa1_c01324{left:239.109333pt;}
.x2e_c01324{left:243.815168pt;}
.x79_c01324{left:246.563680pt;}
.xb3_c01324{left:250.800195pt;}
.x13_c01324{left:252.088136pt;}
.x26_c01324{left:253.683131pt;}
.x31_c01324{left:254.694667pt;}
.x95_c01324{left:258.023947pt;}
.xab_c01324{left:259.779453pt;}
.xc3_c01324{left:260.881733pt;}
.xd4_c01324{left:262.546667pt;}
.x5f_c01324{left:264.568043pt;}
.xba_c01324{left:269.113333pt;}
.x3d_c01324{left:273.429152pt;}
.x6d_c01324{left:275.129547pt;}
.xa8_c01324{left:278.926667pt;}
.x9_c01324{left:281.102667pt;}
.x27_c01324{left:283.444203pt;}
.x66_c01324{left:285.001803pt;}
.x7a_c01324{left:285.925872pt;}
.x32_c01324{left:292.374667pt;}
.x44_c01324{left:293.357552pt;}
.xa2_c01324{left:296.724000pt;}
.x9a_c01324{left:298.094533pt;}
.x2f_c01324{left:302.360989pt;}
.x49_c01324{left:303.429984pt;}
.x74_c01324{left:304.629232pt;}
.x8a_c01324{left:306.007371pt;}
.xa_c01324{left:310.885333pt;}
.x58_c01324{left:313.285861pt;}
.x96_c01324{left:316.499104pt;}
.xc4_c01324{left:318.963187pt;}
.x33_c01324{left:321.412000pt;}
.x45_c01324{left:322.641317pt;}
.x7b_c01324{left:325.057403pt;}
.xa3_c01324{left:327.926667pt;}
.xbb_c01324{left:328.858667pt;}
.x30_c01324{left:331.904547pt;}
.x97_c01324{left:336.181925pt;}
.xb_c01324{left:341.606667pt;}
.x4a_c01324{left:343.024336pt;}
.x59_c01324{left:343.992283pt;}
.x5_c01324{left:345.216000pt;}
.xbc_c01324{left:347.340000pt;}
.xc9_c01324{left:348.964700pt;}
.x14_c01324{left:350.949469pt;}
.x9b_c01324{left:357.375483pt;}
.xb4_c01324{left:367.201720pt;}
.xac_c01324{left:368.254805pt;}
.x15_c01324{left:370.410803pt;}
.x5a_c01324{left:373.046715pt;}
.x46_c01324{left:381.679509pt;}
.x60_c01324{left:382.625765pt;}
.x6e_c01324{left:384.567339pt;}
.x8b_c01324{left:385.688645pt;}
.x1_c01324{left:387.890667pt;}
.x34_c01324{left:389.812000pt;}
.x75_c01324{left:392.960528pt;}
.x2_c01324{left:397.276000pt;}
.xd0_c01324{left:398.405887pt;}
.x1f_c01324{left:399.528456pt;}
.x3e_c01324{left:401.111621pt;}
.x84_c01324{left:403.687035pt;}
.x98_c01324{left:405.373776pt;}
.x16_c01324{left:410.488136pt;}
.x61_c01324{left:412.146864pt;}
.xca_c01324{left:417.125073pt;}
.x35_c01324{left:420.536000pt;}
.x52_c01324{left:421.778917pt;}
.x7c_c01324{left:423.218891pt;}
.x28_c01324{left:429.846808pt;}
.x67_c01324{left:432.099451pt;}
.xad_c01324{left:436.657064pt;}
.xd1_c01324{left:438.966900pt;}
.x4b_c01324{left:442.163541pt;}
.xcb_c01324{left:446.885820pt;}
.xc_c01324{left:448.168000pt;}
.x8c_c01324{left:453.369728pt;}
.x9c_c01324{left:454.335701pt;}
.xbd_c01324{left:456.072000pt;}
.xc5_c01324{left:457.443987pt;}
.x20_c01324{left:458.776013pt;}
.x3f_c01324{left:460.174912pt;}
.x5b_c01324{left:461.347344pt;}
.x7d_c01324{left:462.345088pt;}
.xb5_c01324{left:465.603931pt;}
.x36_c01324{left:469.757333pt;}
.x8d_c01324{left:474.250064pt;}
.xd2_c01324{left:476.407833pt;}
.x17_c01324{left:477.689469pt;}
.x29_c01324{left:479.047243pt;}
.x5c_c01324{left:480.808523pt;}
.x3_c01324{left:483.185333pt;}
.xcc_c01324{left:486.006800pt;}
.x53_c01324{left:490.160763pt;}
.x62_c01324{left:491.132901pt;}
.xb6_c01324{left:495.124995pt;}
.xd_c01324{left:497.869333pt;}
.x85_c01324{left:502.568613pt;}
.x90_c01324{left:503.773728pt;}
.xc6_c01324{left:506.165207pt;}
.x2a_c01324{left:508.328299pt;}
.x21_c01324{left:509.413160pt;}
.xa4_c01324{left:512.469333pt;}
.xd5_c01324{left:516.698667pt;}
.x18_c01324{left:517.773469pt;}
.xae_c01324{left:524.235203pt;}
.x37_c01324{left:529.016000pt;}
.x68_c01324{left:530.803200pt;}
.xb7_c01324{left:535.925133pt;}
.x4c_c01324{left:539.848091pt;}
.x8e_c01324{left:542.651157pt;}
.xa5_c01324{left:543.689333pt;}
.x9d_c01324{left:552.255936pt;}
.xbe_c01324{left:553.993333pt;}
.xaf_c01324{left:554.977685pt;}
.xe_c01324{left:556.406667pt;}
.x40_c01324{left:558.573733pt;}
.x91_c01324{left:561.134645pt;}
.xd6_c01324{left:569.498667pt;}
.x9e_c01324{left:573.136272pt;}
.xcd_c01324{left:584.647933pt;}
.xf_c01324{left:585.928000pt;}
.x38_c01324{left:588.061333pt;}
.x7e_c01324{left:589.786224pt;}
.x54_c01324{left:598.879461pt;}
.x2b_c01324{left:605.770469pt;}
.x41_c01324{left:607.054485pt;}
.x69_c01324{left:608.757952pt;}
.x76_c01324{left:609.668128pt;}
.x86_c01324{left:611.289019pt;}
.xbf_c01324{left:613.977333pt;}
.x4d_c01324{left:617.350139pt;}
.x55_c01324{left:619.065888pt;}
.xb0_c01324{left:622.875944pt;}
.x19_c01324{left:626.009469pt;}
.x6f_c01324{left:628.413387pt;}
.x63_c01324{left:629.351797pt;}
.xc0_c01324{left:632.960000pt;}
.x22_c01324{left:635.672043pt;}
.x6a_c01324{left:639.720123pt;}
.xb1_c01324{left:642.623824pt;}
.x4e_c01324{left:647.128565pt;}
.x87_c01324{left:649.689632pt;}
.x1a_c01324{left:655.765469pt;}
.x70_c01324{left:658.657147pt;}
.xa6_c01324{left:660.549333pt;}
.x39_c01324{left:663.900000pt;}
.xd3_c01324{left:664.809880pt;}
.x23_c01324{left:666.153797pt;}
.x64_c01324{left:667.754155pt;}
.x8f_c01324{left:669.371851pt;}
.x9f_c01324{left:671.296507pt;}
.x47_c01324{left:676.165157pt;}
.x4f_c01324{left:677.849653pt;}
.x92_c01324{left:679.935211pt;}
.xb2_c01324{left:681.734259pt;}
.xc1_c01324{left:682.873333pt;}
.x10_c01324{left:685.285333pt;}
.x6b_c01324{left:687.235360pt;}
.x77_c01324{left:688.386165pt;}
.xc7_c01324{left:692.168527pt;}
.x24_c01324{left:694.944933pt;}
.xb8_c01324{left:701.528427pt;}
.x2c_c01324{left:704.891371pt;}
.x1b_c01324{left:705.913469pt;}
.x65_c01324{left:707.152507pt;}
.xa0_c01324{left:711.137147pt;}
.x11_c01324{left:713.128000pt;}
.x3a_c01324{left:716.218667pt;}
.x5d_c01324{left:717.449296pt;}
.x42_c01324{left:725.382400pt;}
.x56_c01324{left:736.203147pt;}
.x7f_c01324{left:739.365765pt;}
.x1c_c01324{left:743.849469pt;}
.xa9_c01324{left:750.524000pt;}
.xce_c01324{left:753.609487pt;}
.x1d_c01324{left:767.134803pt;}
.x80_c01324{left:802.963669pt;}
}





/* 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_c01325 {
    display:none;
  }
  .loading-indicator_c01325.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01325 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_c01325 { 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_c01325" -> "#page-container .classname_c01325")
 */
.pf_c01325 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01325 { /* 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_c01325.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01325 { /* 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_c01325 { /* 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_c01325 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01325 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01325 {overflow:visible;}
  }
}
.c_c01325 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01325 { /* 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_c01325:after { /* webkit #35443 */
  content: '';
}
.t_c01325:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01325 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 */
}
.__c01325 { /* 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_c01325 { /* info for Javascript */
  display:none;
}
.l_c01325 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01325 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01325 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01325: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_c01325 {
    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_c01325.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01325.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_c01325 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01325{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01325;src:url('chunks/assets/font_c605e72f209fc835e906f064.woff2')format("woff");}.ff1_c01325{font-family:ff1_c01325;line-height:1.000000;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;}
.m1a_c01325{transform:matrix(0.135340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135340,0.000000,0.000000,0.250000,0,0);}
.m15_c01325{transform:matrix(0.145441,0.002618,-0.004499,0.249960,0,0);-ms-transform:matrix(0.145441,0.002618,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.145441,0.002618,-0.004499,0.249960,0,0);}
.m16_c01325{transform:matrix(0.148861,0.002679,-0.004499,0.249960,0,0);-ms-transform:matrix(0.148861,0.002679,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.148861,0.002679,-0.004499,0.249960,0,0);}
.m10_c01325{transform:matrix(0.148956,0.002681,-0.004499,0.249960,0,0);-ms-transform:matrix(0.148956,0.002681,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.148956,0.002681,-0.004499,0.249960,0,0);}
.m17_c01325{transform:matrix(0.158579,0.002854,-0.004499,0.249960,0,0);-ms-transform:matrix(0.158579,0.002854,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.158579,0.002854,-0.004499,0.249960,0,0);}
.m18_c01325{transform:matrix(0.159459,0.002870,-0.004499,0.249960,0,0);-ms-transform:matrix(0.159459,0.002870,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.159459,0.002870,-0.004499,0.249960,0,0);}
.m14_c01325{transform:matrix(0.161324,0.002904,-0.004499,0.249960,0,0);-ms-transform:matrix(0.161324,0.002904,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.161324,0.002904,-0.004499,0.249960,0,0);}
.m19_c01325{transform:matrix(0.163539,0.002944,-0.004499,0.249960,0,0);-ms-transform:matrix(0.163539,0.002944,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.163539,0.002944,-0.004499,0.249960,0,0);}
.mc_c01325{transform:matrix(0.176113,0.001585,-0.002250,0.249990,0,0);-ms-transform:matrix(0.176113,0.001585,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.176113,0.001585,-0.002250,0.249990,0,0);}
.m0_c01325{transform:matrix(0.195600,0.009594,-0.012248,0.249700,0,0);-ms-transform:matrix(0.195600,0.009594,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.195600,0.009594,-0.012248,0.249700,0,0);}
.m1c_c01325{transform:matrix(0.196435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196435,0.000000,0.000000,0.250000,0,0);}
.ma_c01325{transform:matrix(0.200037,0.001800,-0.002250,0.249990,0,0);-ms-transform:matrix(0.200037,0.001800,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.200037,0.001800,-0.002250,0.249990,0,0);}
.m13_c01325{transform:matrix(0.206737,0.003721,-0.004499,0.249960,0,0);-ms-transform:matrix(0.206737,0.003721,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.206737,0.003721,-0.004499,0.249960,0,0);}
.m2_c01325{transform:matrix(0.208509,0.010227,-0.012248,0.249700,0,0);-ms-transform:matrix(0.208509,0.010227,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.208509,0.010227,-0.012248,0.249700,0,0);}
.m12_c01325{transform:matrix(0.212756,0.003830,-0.004499,0.249960,0,0);-ms-transform:matrix(0.212756,0.003830,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.212756,0.003830,-0.004499,0.249960,0,0);}
.m5_c01325{transform:matrix(0.223496,0.010962,-0.012248,0.249700,0,0);-ms-transform:matrix(0.223496,0.010962,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.223496,0.010962,-0.012248,0.249700,0,0);}
.m1_c01325{transform:matrix(0.229749,0.011269,-0.012248,0.249700,0,0);-ms-transform:matrix(0.229749,0.011269,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.229749,0.011269,-0.012248,0.249700,0,0);}
.m1b_c01325{transform:matrix(0.231240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231240,0.000000,0.000000,0.250000,0,0);}
.m8_c01325{transform:matrix(0.249910,0.012258,-0.012248,0.249700,0,0);-ms-transform:matrix(0.249910,0.012258,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.249910,0.012258,-0.012248,0.249700,0,0);}
.m6_c01325{transform:matrix(0.255877,0.012551,-0.012248,0.249700,0,0);-ms-transform:matrix(0.255877,0.012551,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.255877,0.012551,-0.012248,0.249700,0,0);}
.m7_c01325{transform:matrix(0.259019,0.012705,-0.012248,0.249700,0,0);-ms-transform:matrix(0.259019,0.012705,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.259019,0.012705,-0.012248,0.249700,0,0);}
.m1d_c01325{transform:matrix(0.260445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260445,0.000000,0.000000,0.250000,0,0);}
.m3_c01325{transform:matrix(0.281062,0.013786,-0.012248,0.249700,0,0);-ms-transform:matrix(0.281062,0.013786,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.281062,0.013786,-0.012248,0.249700,0,0);}
.m9_c01325{transform:matrix(0.289467,0.014198,-0.012248,0.249700,0,0);-ms-transform:matrix(0.289467,0.014198,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.289467,0.014198,-0.012248,0.249700,0,0);}
.mb_c01325{transform:matrix(0.317077,0.002854,-0.002250,0.249990,0,0);-ms-transform:matrix(0.317077,0.002854,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.317077,0.002854,-0.002250,0.249990,0,0);}
.m11_c01325{transform:matrix(0.378984,0.006822,-0.004499,0.249960,0,0);-ms-transform:matrix(0.378984,0.006822,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.378984,0.006822,-0.004499,0.249960,0,0);}
.m4_c01325{transform:matrix(0.515286,0.025274,-0.012248,0.249700,0,0);-ms-transform:matrix(0.515286,0.025274,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.515286,0.025274,-0.012248,0.249700,0,0);}
.me_c01325{transform:matrix(0.544248,0.004898,-0.002250,0.249990,0,0);-ms-transform:matrix(0.544248,0.004898,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.544248,0.004898,-0.002250,0.249990,0,0);}
.mf_c01325{transform:matrix(1.311830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.311830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.311830,0.000000,0.000000,0.250000,0,0);}
.md_c01325{transform:matrix(1.382349,0.012441,-0.002250,0.249990,0,0);-ms-transform:matrix(1.382349,0.012441,-0.002250,0.249990,0,0);-webkit-transform:matrix(1.382349,0.012441,-0.002250,0.249990,0,0);}
.v0_c01325{vertical-align:0.000000px;}
.ls0_c01325{letter-spacing:0.000000px;}
.sc__c01325{text-shadow:none;}
.sc0_c01325{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__c01325{-webkit-text-stroke:0px transparent;}
.sc0_c01325{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01325{word-spacing:0.000000px;}
.fc0_c01325{color:transparent;}
.fs2_c01325{font-size:18.000000px;}
.fs0_c01325{font-size:84.016882px;}
.fs1_c01325{font-size:114.004617px;}
.fs4_c01325{font-size:126.000000px;}
.fs3_c01325{font-size:132.021382px;}
.y0_c01325{bottom:0.000000px;}
.y1b_c01325{bottom:766.603500px;}
.y1a_c01325{bottom:806.891103px;}
.y19_c01325{bottom:807.657903px;}
.y18_c01325{bottom:808.985034px;}
.y17_c01325{bottom:810.011871px;}
.y10_c01325{bottom:810.810000px;}
.y16_c01325{bottom:810.911538px;}
.y15_c01325{bottom:811.701612px;}
.y14_c01325{bottom:813.090897px;}
.y13_c01325{bottom:813.905622px;}
.y12_c01325{bottom:815.236695px;}
.y11_c01325{bottom:815.674500px;}
.ya_c01325{bottom:949.700698px;}
.y9_c01325{bottom:951.328650px;}
.y8_c01325{bottom:955.166305px;}
.y7_c01325{bottom:956.661075px;}
.y6_c01325{bottom:959.426733px;}
.y5_c01325{bottom:963.802702px;}
.y4_c01325{bottom:966.489936px;}
.y3_c01325{bottom:970.274010px;}
.y2_c01325{bottom:973.033788px;}
.y1_c01325{bottom:973.900500px;}
.yf_c01325{bottom:986.749202px;}
.ye_c01325{bottom:988.232203px;}
.yd_c01325{bottom:988.845347px;}
.yc_c01325{bottom:989.408121px;}
.yb_c01325{bottom:989.826000px;}
.h4_c01325{height:18.000000px;}
.h2_c01325{height:84.016882px;}
.h3_c01325{height:114.004617px;}
.h6_c01325{height:126.000000px;}
.h5_c01325{height:132.021382px;}
.h1_c01325{height:1250.250000px;}
.h0_c01325{height:1250.370000px;}
.w1_c01325{width:912.000000px;}
.w0_c01325{width:912.300000px;}
.x0_c01325{left:0.000000px;}
.x1_c01325{left:116.955000px;}
.x2_c01325{left:134.625312px;}
.x3_c01325{left:190.890990px;}
.x11_c01325{left:241.402500px;}
.x10_c01325{left:247.050000px;}
.x12_c01325{left:265.725000px;}
.x4_c01325{left:268.039764px;}
.x5_c01325{left:322.826422px;}
.xb_c01325{left:325.597500px;}
.x13_c01325{left:339.673500px;}
.xc_c01325{left:372.028500px;}
.x14_c01325{left:384.936000px;}
.x6_c01325{left:412.042617px;}
.xd_c01325{left:434.559000px;}
.x15_c01325{left:462.118500px;}
.x7_c01325{left:468.428175px;}
.x8_c01325{left:498.903170px;}
.xe_c01325{left:502.686000px;}
.x16_c01325{left:506.011500px;}
.x17_c01325{left:555.993000px;}
.x1b_c01325{left:572.130000px;}
.x9_c01325{left:577.144350px;}
.x1c_c01325{left:581.850000px;}
.x1d_c01325{left:606.690000px;}
.xa_c01325{left:610.334627px;}
.x18_c01325{left:613.039500px;}
.xf_c01325{left:667.464000px;}
.x1e_c01325{left:677.970000px;}
.x19_c01325{left:686.769000px;}
.x1a_c01325{left:729.369000px;}
@media print{
.v0_c01325{vertical-align:0.000000pt;}
.ls0_c01325{letter-spacing:0.000000pt;}
.ws0_c01325{word-spacing:0.000000pt;}
.fs2_c01325{font-size:16.000000pt;}
.fs0_c01325{font-size:74.681673pt;}
.fs1_c01325{font-size:101.337437pt;}
.fs4_c01325{font-size:112.000000pt;}
.fs3_c01325{font-size:117.352340pt;}
.y0_c01325{bottom:0.000000pt;}
.y1b_c01325{bottom:681.425333pt;}
.y1a_c01325{bottom:717.236536pt;}
.y19_c01325{bottom:717.918136pt;}
.y18_c01325{bottom:719.097808pt;}
.y17_c01325{bottom:720.010552pt;}
.y10_c01325{bottom:720.720000pt;}
.y16_c01325{bottom:720.810256pt;}
.y15_c01325{bottom:721.512544pt;}
.y14_c01325{bottom:722.747464pt;}
.y13_c01325{bottom:723.471664pt;}
.y12_c01325{bottom:724.654840pt;}
.y11_c01325{bottom:725.044000pt;}
.ya_c01325{bottom:844.178399pt;}
.y9_c01325{bottom:845.625467pt;}
.y8_c01325{bottom:849.036716pt;}
.y7_c01325{bottom:850.365400pt;}
.y6_c01325{bottom:852.823763pt;}
.y5_c01325{bottom:856.713513pt;}
.y4_c01325{bottom:859.102165pt;}
.y3_c01325{bottom:862.465787pt;}
.y2_c01325{bottom:864.918923pt;}
.y1_c01325{bottom:865.689333pt;}
.yf_c01325{bottom:877.110401pt;}
.ye_c01325{bottom:878.428625pt;}
.yd_c01325{bottom:878.973641pt;}
.yc_c01325{bottom:879.473885pt;}
.yb_c01325{bottom:879.845333pt;}
.h4_c01325{height:16.000000pt;}
.h2_c01325{height:74.681673pt;}
.h3_c01325{height:101.337437pt;}
.h6_c01325{height:112.000000pt;}
.h5_c01325{height:117.352340pt;}
.h1_c01325{height:1111.333333pt;}
.h0_c01325{height:1111.440000pt;}
.w1_c01325{width:810.666667pt;}
.w0_c01325{width:810.933333pt;}
.x0_c01325{left:0.000000pt;}
.x1_c01325{left:103.960000pt;}
.x2_c01325{left:119.666944pt;}
.x3_c01325{left:169.680880pt;}
.x11_c01325{left:214.580000pt;}
.x10_c01325{left:219.600000pt;}
.x12_c01325{left:236.200000pt;}
.x4_c01325{left:238.257568pt;}
.x5_c01325{left:286.956820pt;}
.xb_c01325{left:289.420000pt;}
.x13_c01325{left:301.932000pt;}
.xc_c01325{left:330.692000pt;}
.x14_c01325{left:342.165333pt;}
.x6_c01325{left:366.260104pt;}
.xd_c01325{left:386.274667pt;}
.x15_c01325{left:410.772000pt;}
.x7_c01325{left:416.380600pt;}
.x8_c01325{left:443.469484pt;}
.xe_c01325{left:446.832000pt;}
.x16_c01325{left:449.788000pt;}
.x17_c01325{left:494.216000pt;}
.x1b_c01325{left:508.560000pt;}
.x9_c01325{left:513.017200pt;}
.x1c_c01325{left:517.200000pt;}
.x1d_c01325{left:539.280000pt;}
.xa_c01325{left:542.519668pt;}
.x18_c01325{left:544.924000pt;}
.xf_c01325{left:593.301333pt;}
.x1e_c01325{left:602.640000pt;}
.x19_c01325{left:610.461333pt;}
.x1a_c01325{left:648.328000pt;}
}





/* 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_c01326 {
    display:none;
  }
  .loading-indicator_c01326.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01326 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_c01326 { 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_c01326" -> "#page-container .classname_c01326")
 */
.pf_c01326 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01326 { /* 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_c01326.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01326 { /* 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_c01326 { /* 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_c01326 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01326 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01326 {overflow:visible;}
  }
}
.c_c01326 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01326 { /* 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_c01326:after { /* webkit #35443 */
  content: '';
}
.t_c01326:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01326 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 */
}
.__c01326 { /* 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_c01326 { /* info for Javascript */
  display:none;
}
.l_c01326 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01326 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01326 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01326: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_c01326 {
    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_c01326.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01326.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_c01326 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01326{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01326;src:url('chunks/assets/font_7c6b9abe6ee2a268480c528b.woff2')format("woff");}.ff1_c01326{font-family:ff1_c01326;line-height:1.000000;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;}
.m83_c01326{transform:matrix(0.046523,0.000791,-0.004249,0.249964,0,0);-ms-transform:matrix(0.046523,0.000791,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.046523,0.000791,-0.004249,0.249964,0,0);}
.md_c01326{transform:matrix(0.133275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133275,0.000000,0.000000,0.250000,0,0);}
.md0_c01326{transform:matrix(0.144196,0.002884,-0.004999,0.249950,0,0);-ms-transform:matrix(0.144196,0.002884,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.144196,0.002884,-0.004999,0.249950,0,0);}
.m3e_c01326{transform:matrix(0.147693,0.002806,-0.004749,0.249955,0,0);-ms-transform:matrix(0.147693,0.002806,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.147693,0.002806,-0.004749,0.249955,0,0);}
.m3c_c01326{transform:matrix(0.151838,0.002885,-0.004749,0.249955,0,0);-ms-transform:matrix(0.151838,0.002885,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.151838,0.002885,-0.004749,0.249955,0,0);}
.md3_c01326{transform:matrix(0.154359,0.003087,-0.004999,0.249950,0,0);-ms-transform:matrix(0.154359,0.003087,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.154359,0.003087,-0.004999,0.249950,0,0);}
.m3a_c01326{transform:matrix(0.155382,0.002952,-0.004749,0.249955,0,0);-ms-transform:matrix(0.155382,0.002952,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.155382,0.002952,-0.004749,0.249955,0,0);}
.md8_c01326{transform:matrix(0.156904,0.003138,-0.004999,0.249950,0,0);-ms-transform:matrix(0.156904,0.003138,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.156904,0.003138,-0.004999,0.249950,0,0);}
.md1_c01326{transform:matrix(0.158243,0.003165,-0.004999,0.249950,0,0);-ms-transform:matrix(0.158243,0.003165,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.158243,0.003165,-0.004999,0.249950,0,0);}
.m80_c01326{transform:matrix(0.158397,0.002693,-0.004249,0.249964,0,0);-ms-transform:matrix(0.158397,0.002693,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.158397,0.002693,-0.004249,0.249964,0,0);}
.md4_c01326{transform:matrix(0.159063,0.003181,-0.004999,0.249950,0,0);-ms-transform:matrix(0.159063,0.003181,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.159063,0.003181,-0.004999,0.249950,0,0);}
.m38_c01326{transform:matrix(0.161911,0.003076,-0.004749,0.249955,0,0);-ms-transform:matrix(0.161911,0.003076,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.161911,0.003076,-0.004749,0.249955,0,0);}
.mcf_c01326{transform:matrix(0.163847,0.003277,-0.004999,0.249950,0,0);-ms-transform:matrix(0.163847,0.003277,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.163847,0.003277,-0.004999,0.249950,0,0);}
.md6_c01326{transform:matrix(0.164612,0.003292,-0.004999,0.249950,0,0);-ms-transform:matrix(0.164612,0.003292,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.164612,0.003292,-0.004999,0.249950,0,0);}
.ma1_c01326{transform:matrix(0.164663,0.002964,-0.004499,0.249960,0,0);-ms-transform:matrix(0.164663,0.002964,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.164663,0.002964,-0.004499,0.249960,0,0);}
.ma3_c01326{transform:matrix(0.167813,0.003021,-0.004499,0.249960,0,0);-ms-transform:matrix(0.167813,0.003021,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.167813,0.003021,-0.004499,0.249960,0,0);}
.md9_c01326{transform:matrix(0.168046,0.003361,-0.004999,0.249950,0,0);-ms-transform:matrix(0.168046,0.003361,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.168046,0.003361,-0.004999,0.249950,0,0);}
.md2_c01326{transform:matrix(0.168946,0.003379,-0.004999,0.249950,0,0);-ms-transform:matrix(0.168946,0.003379,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.168946,0.003379,-0.004999,0.249950,0,0);}
.m3d_c01326{transform:matrix(0.169309,0.003217,-0.004749,0.249955,0,0);-ms-transform:matrix(0.169309,0.003217,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.169309,0.003217,-0.004749,0.249955,0,0);}
.m7b_c01326{transform:matrix(0.170035,0.002891,-0.004249,0.249964,0,0);-ms-transform:matrix(0.170035,0.002891,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.170035,0.002891,-0.004249,0.249964,0,0);}
.m40_c01326{transform:matrix(0.170849,0.003246,-0.004749,0.249955,0,0);-ms-transform:matrix(0.170849,0.003246,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.170849,0.003246,-0.004749,0.249955,0,0);}
.m3f_c01326{transform:matrix(0.170939,0.003248,-0.004749,0.249955,0,0);-ms-transform:matrix(0.170939,0.003248,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.170939,0.003248,-0.004749,0.249955,0,0);}
.m81_c01326{transform:matrix(0.171615,0.002917,-0.004249,0.249964,0,0);-ms-transform:matrix(0.171615,0.002917,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.171615,0.002917,-0.004249,0.249964,0,0);}
.m3b_c01326{transform:matrix(0.171684,0.003262,-0.004749,0.249955,0,0);-ms-transform:matrix(0.171684,0.003262,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.171684,0.003262,-0.004749,0.249955,0,0);}
.md7_c01326{transform:matrix(0.172850,0.003457,-0.004999,0.249950,0,0);-ms-transform:matrix(0.172850,0.003457,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.172850,0.003457,-0.004999,0.249950,0,0);}
.mab_c01326{transform:matrix(0.173640,0.002605,-0.003750,0.249972,0,0);-ms-transform:matrix(0.173640,0.002605,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.173640,0.002605,-0.003750,0.249972,0,0);}
.md5_c01326{transform:matrix(0.173915,0.003478,-0.004999,0.249950,0,0);-ms-transform:matrix(0.173915,0.003478,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.173915,0.003478,-0.004999,0.249950,0,0);}
.m7f_c01326{transform:matrix(0.174750,0.002971,-0.004249,0.249964,0,0);-ms-transform:matrix(0.174750,0.002971,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.174750,0.002971,-0.004249,0.249964,0,0);}
.m7c_c01326{transform:matrix(0.175345,0.002981,-0.004249,0.249964,0,0);-ms-transform:matrix(0.175345,0.002981,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.175345,0.002981,-0.004249,0.249964,0,0);}
.ma5_c01326{transform:matrix(0.175417,0.003157,-0.004499,0.249960,0,0);-ms-transform:matrix(0.175417,0.003157,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.175417,0.003157,-0.004499,0.249960,0,0);}
.m39_c01326{transform:matrix(0.175553,0.003336,-0.004749,0.249955,0,0);-ms-transform:matrix(0.175553,0.003336,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.175553,0.003336,-0.004749,0.249955,0,0);}
.ma2_c01326{transform:matrix(0.176436,0.003176,-0.004499,0.249960,0,0);-ms-transform:matrix(0.176436,0.003176,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.176436,0.003176,-0.004499,0.249960,0,0);}
.m7a_c01326{transform:matrix(0.178009,0.003026,-0.004249,0.249964,0,0);-ms-transform:matrix(0.178009,0.003026,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.178009,0.003026,-0.004249,0.249964,0,0);}
.m107_c01326{transform:matrix(0.178473,0.003391,-0.004749,0.249955,0,0);-ms-transform:matrix(0.178473,0.003391,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.178473,0.003391,-0.004749,0.249955,0,0);}
.maa_c01326{transform:matrix(0.180680,0.002710,-0.003750,0.249972,0,0);-ms-transform:matrix(0.180680,0.002710,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.180680,0.002710,-0.003750,0.249972,0,0);}
.mad_c01326{transform:matrix(0.181265,0.002719,-0.003750,0.249972,0,0);-ms-transform:matrix(0.181265,0.002719,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.181265,0.002719,-0.003750,0.249972,0,0);}
.mb1_c01326{transform:matrix(0.181460,0.002722,-0.003750,0.249972,0,0);-ms-transform:matrix(0.181460,0.002722,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.181460,0.002722,-0.003750,0.249972,0,0);}
.ma9_c01326{transform:matrix(0.183129,0.002747,-0.003750,0.249972,0,0);-ms-transform:matrix(0.183129,0.002747,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.183129,0.002747,-0.003750,0.249972,0,0);}
.ma4_c01326{transform:matrix(0.184140,0.003315,-0.004499,0.249960,0,0);-ms-transform:matrix(0.184140,0.003315,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.184140,0.003315,-0.004499,0.249960,0,0);}
.ma8_c01326{transform:matrix(0.185494,0.002782,-0.003750,0.249972,0,0);-ms-transform:matrix(0.185494,0.002782,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.185494,0.002782,-0.003750,0.249972,0,0);}
.ma6_c01326{transform:matrix(0.185985,0.003348,-0.004499,0.249960,0,0);-ms-transform:matrix(0.185985,0.003348,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.185985,0.003348,-0.004499,0.249960,0,0);}
.ma0_c01326{transform:matrix(0.186870,0.003364,-0.004499,0.249960,0,0);-ms-transform:matrix(0.186870,0.003364,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.186870,0.003364,-0.004499,0.249960,0,0);}
.maf_c01326{transform:matrix(0.189244,0.002839,-0.003750,0.249972,0,0);-ms-transform:matrix(0.189244,0.002839,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.189244,0.002839,-0.003750,0.249972,0,0);}
.m78_c01326{transform:matrix(0.192747,0.003277,-0.004249,0.249964,0,0);-ms-transform:matrix(0.192747,0.003277,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.192747,0.003277,-0.004249,0.249964,0,0);}
.m0_c01326{transform:matrix(0.194480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194480,0.000000,0.000000,0.250000,0,0);}
.mda_c01326{transform:matrix(0.197101,0.003942,-0.004999,0.249950,0,0);-ms-transform:matrix(0.197101,0.003942,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.197101,0.003942,-0.004999,0.249950,0,0);}
.mb0_c01326{transform:matrix(0.197383,0.002961,-0.003750,0.249972,0,0);-ms-transform:matrix(0.197383,0.002961,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.197383,0.002961,-0.003750,0.249972,0,0);}
.mac_c01326{transform:matrix(0.198168,0.002973,-0.003750,0.249972,0,0);-ms-transform:matrix(0.198168,0.002973,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.198168,0.002973,-0.003750,0.249972,0,0);}
.mae_c01326{transform:matrix(0.198578,0.002979,-0.003750,0.249972,0,0);-ms-transform:matrix(0.198578,0.002979,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.198578,0.002979,-0.003750,0.249972,0,0);}
.m4e_c01326{transform:matrix(0.204163,0.003879,-0.004749,0.249955,0,0);-ms-transform:matrix(0.204163,0.003879,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.204163,0.003879,-0.004749,0.249955,0,0);}
.me_c01326{transform:matrix(0.204850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204850,0.000000,0.000000,0.250000,0,0);}
.m6c_c01326{transform:matrix(0.205780,0.003498,-0.004249,0.249964,0,0);-ms-transform:matrix(0.205780,0.003498,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.205780,0.003498,-0.004249,0.249964,0,0);}
.m5d_c01326{transform:matrix(0.206968,0.003932,-0.004749,0.249955,0,0);-ms-transform:matrix(0.206968,0.003932,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.206968,0.003932,-0.004749,0.249955,0,0);}
.mf5_c01326{transform:matrix(0.207513,0.003943,-0.004749,0.249955,0,0);-ms-transform:matrix(0.207513,0.003943,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.207513,0.003943,-0.004749,0.249955,0,0);}
.m56_c01326{transform:matrix(0.207857,0.003949,-0.004749,0.249955,0,0);-ms-transform:matrix(0.207857,0.003949,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.207857,0.003949,-0.004749,0.249955,0,0);}
.mc1_c01326{transform:matrix(0.209178,0.004184,-0.004999,0.249950,0,0);-ms-transform:matrix(0.209178,0.004184,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.209178,0.004184,-0.004999,0.249950,0,0);}
.med_c01326{transform:matrix(0.209503,0.004190,-0.004999,0.249950,0,0);-ms-transform:matrix(0.209503,0.004190,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.209503,0.004190,-0.004999,0.249950,0,0);}
.mc_c01326{transform:matrix(0.209800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209800,0.000000,0.000000,0.250000,0,0);}
.m14_c01326{transform:matrix(0.209856,0.003777,-0.004499,0.249960,0,0);-ms-transform:matrix(0.209856,0.003777,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.209856,0.003777,-0.004499,0.249960,0,0);}
.m64_c01326{transform:matrix(0.210365,0.003576,-0.004249,0.249964,0,0);-ms-transform:matrix(0.210365,0.003576,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.210365,0.003576,-0.004249,0.249964,0,0);}
.m9d_c01326{transform:matrix(0.210461,0.003788,-0.004499,0.249960,0,0);-ms-transform:matrix(0.210461,0.003788,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.210461,0.003788,-0.004499,0.249960,0,0);}
.m4f_c01326{transform:matrix(0.212797,0.004043,-0.004749,0.249955,0,0);-ms-transform:matrix(0.212797,0.004043,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.212797,0.004043,-0.004749,0.249955,0,0);}
.mca_c01326{transform:matrix(0.213482,0.004270,-0.004999,0.249950,0,0);-ms-transform:matrix(0.213482,0.004270,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.213482,0.004270,-0.004999,0.249950,0,0);}
.mc7_c01326{transform:matrix(0.213942,0.004279,-0.004999,0.249950,0,0);-ms-transform:matrix(0.213942,0.004279,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.213942,0.004279,-0.004999,0.249950,0,0);}
.mef_c01326{transform:matrix(0.214267,0.004285,-0.004999,0.249950,0,0);-ms-transform:matrix(0.214267,0.004285,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.214267,0.004285,-0.004999,0.249950,0,0);}
.mdb_c01326{transform:matrix(0.215132,0.004303,-0.004999,0.249950,0,0);-ms-transform:matrix(0.215132,0.004303,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.215132,0.004303,-0.004999,0.249950,0,0);}
.mbe_c01326{transform:matrix(0.215747,0.004315,-0.004999,0.249950,0,0);-ms-transform:matrix(0.215747,0.004315,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.215747,0.004315,-0.004999,0.249950,0,0);}
.m17_c01326{transform:matrix(0.216300,0.003893,-0.004499,0.249960,0,0);-ms-transform:matrix(0.216300,0.003893,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.216300,0.003893,-0.004499,0.249960,0,0);}
.mbc_c01326{transform:matrix(0.216427,0.004329,-0.004999,0.249950,0,0);-ms-transform:matrix(0.216427,0.004329,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.216427,0.004329,-0.004999,0.249950,0,0);}
.m79_c01326{transform:matrix(0.217549,0.003698,-0.004249,0.249964,0,0);-ms-transform:matrix(0.217549,0.003698,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.217549,0.003698,-0.004249,0.249964,0,0);}
.m19_c01326{transform:matrix(0.218395,0.003931,-0.004499,0.249960,0,0);-ms-transform:matrix(0.218395,0.003931,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.218395,0.003931,-0.004499,0.249960,0,0);}
.mf7_c01326{transform:matrix(0.218786,0.004157,-0.004749,0.249955,0,0);-ms-transform:matrix(0.218786,0.004157,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.218786,0.004157,-0.004749,0.249955,0,0);}
.m69_c01326{transform:matrix(0.219143,0.003725,-0.004249,0.249964,0,0);-ms-transform:matrix(0.219143,0.003725,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.219143,0.003725,-0.004249,0.249964,0,0);}
.mc8_c01326{transform:matrix(0.220046,0.004401,-0.004999,0.249950,0,0);-ms-transform:matrix(0.220046,0.004401,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.220046,0.004401,-0.004999,0.249950,0,0);}
.mfa_c01326{transform:matrix(0.221320,0.004205,-0.004749,0.249955,0,0);-ms-transform:matrix(0.221320,0.004205,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.221320,0.004205,-0.004749,0.249955,0,0);}
.m66_c01326{transform:matrix(0.222778,0.003787,-0.004249,0.249964,0,0);-ms-transform:matrix(0.222778,0.003787,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.222778,0.003787,-0.004249,0.249964,0,0);}
.m101_c01326{transform:matrix(0.222995,0.004237,-0.004749,0.249955,0,0);-ms-transform:matrix(0.222995,0.004237,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.222995,0.004237,-0.004749,0.249955,0,0);}
.m55_c01326{transform:matrix(0.223115,0.004239,-0.004749,0.249955,0,0);-ms-transform:matrix(0.223115,0.004239,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.223115,0.004239,-0.004749,0.249955,0,0);}
.m5f_c01326{transform:matrix(0.223230,0.004241,-0.004749,0.249955,0,0);-ms-transform:matrix(0.223230,0.004241,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.223230,0.004241,-0.004749,0.249955,0,0);}
.m51_c01326{transform:matrix(0.223235,0.004241,-0.004749,0.249955,0,0);-ms-transform:matrix(0.223235,0.004241,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.223235,0.004241,-0.004749,0.249955,0,0);}
.m45_c01326{transform:matrix(0.223340,0.004243,-0.004749,0.249955,0,0);-ms-transform:matrix(0.223340,0.004243,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.223340,0.004243,-0.004749,0.249955,0,0);}
.mf8_c01326{transform:matrix(0.224439,0.004264,-0.004749,0.249955,0,0);-ms-transform:matrix(0.224439,0.004264,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.224439,0.004264,-0.004749,0.249955,0,0);}
.m12_c01326{transform:matrix(0.224639,0.004043,-0.004499,0.249960,0,0);-ms-transform:matrix(0.224639,0.004043,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.224639,0.004043,-0.004499,0.249960,0,0);}
.m88_c01326{transform:matrix(0.225282,0.003830,-0.004249,0.249964,0,0);-ms-transform:matrix(0.225282,0.003830,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.225282,0.003830,-0.004249,0.249964,0,0);}
.m62_c01326{transform:matrix(0.225982,0.003842,-0.004249,0.249964,0,0);-ms-transform:matrix(0.225982,0.003842,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.225982,0.003842,-0.004249,0.249964,0,0);}
.m1e_c01326{transform:matrix(0.225988,0.004068,-0.004499,0.249960,0,0);-ms-transform:matrix(0.225988,0.004068,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.225988,0.004068,-0.004499,0.249960,0,0);}
.m60_c01326{transform:matrix(0.226109,0.004296,-0.004749,0.249955,0,0);-ms-transform:matrix(0.226109,0.004296,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.226109,0.004296,-0.004749,0.249955,0,0);}
.m7e_c01326{transform:matrix(0.226392,0.003849,-0.004249,0.249964,0,0);-ms-transform:matrix(0.226392,0.003849,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.226392,0.003849,-0.004249,0.249964,0,0);}
.mf6_c01326{transform:matrix(0.226599,0.004305,-0.004749,0.249955,0,0);-ms-transform:matrix(0.226599,0.004305,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.226599,0.004305,-0.004749,0.249955,0,0);}
.m1_c01326{transform:matrix(0.227360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227360,0.000000,0.000000,0.250000,0,0);}
.m5b_c01326{transform:matrix(0.227369,0.004320,-0.004749,0.249955,0,0);-ms-transform:matrix(0.227369,0.004320,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.227369,0.004320,-0.004749,0.249955,0,0);}
.m8e_c01326{transform:matrix(0.227503,0.004095,-0.004499,0.249960,0,0);-ms-transform:matrix(0.227503,0.004095,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.227503,0.004095,-0.004499,0.249960,0,0);}
.m90_c01326{transform:matrix(0.227588,0.004097,-0.004499,0.249960,0,0);-ms-transform:matrix(0.227588,0.004097,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.227588,0.004097,-0.004499,0.249960,0,0);}
.mbb_c01326{transform:matrix(0.227649,0.004553,-0.004999,0.249950,0,0);-ms-transform:matrix(0.227649,0.004553,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.227649,0.004553,-0.004999,0.249950,0,0);}
.mcd_c01326{transform:matrix(0.228399,0.004568,-0.004999,0.249950,0,0);-ms-transform:matrix(0.228399,0.004568,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.228399,0.004568,-0.004999,0.249950,0,0);}
.mc2_c01326{transform:matrix(0.228434,0.004569,-0.004999,0.249950,0,0);-ms-transform:matrix(0.228434,0.004569,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.228434,0.004569,-0.004999,0.249950,0,0);}
.mc6_c01326{transform:matrix(0.228459,0.004569,-0.004999,0.249950,0,0);-ms-transform:matrix(0.228459,0.004569,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.228459,0.004569,-0.004999,0.249950,0,0);}
.m50_c01326{transform:matrix(0.228904,0.004349,-0.004749,0.249955,0,0);-ms-transform:matrix(0.228904,0.004349,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.228904,0.004349,-0.004749,0.249955,0,0);}
.mdd_c01326{transform:matrix(0.229904,0.004598,-0.004999,0.249950,0,0);-ms-transform:matrix(0.229904,0.004598,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.229904,0.004598,-0.004999,0.249950,0,0);}
.m59_c01326{transform:matrix(0.230363,0.004377,-0.004749,0.249955,0,0);-ms-transform:matrix(0.230363,0.004377,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.230363,0.004377,-0.004749,0.249955,0,0);}
.m54_c01326{transform:matrix(0.230368,0.004377,-0.004749,0.249955,0,0);-ms-transform:matrix(0.230368,0.004377,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.230368,0.004377,-0.004749,0.249955,0,0);}
.m8_c01326{transform:matrix(0.230830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230830,0.000000,0.000000,0.250000,0,0);}
.m52_c01326{transform:matrix(0.231058,0.004390,-0.004749,0.249955,0,0);-ms-transform:matrix(0.231058,0.004390,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.231058,0.004390,-0.004749,0.249955,0,0);}
.m8d_c01326{transform:matrix(0.231123,0.004160,-0.004499,0.249960,0,0);-ms-transform:matrix(0.231123,0.004160,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.231123,0.004160,-0.004499,0.249960,0,0);}
.m65_c01326{transform:matrix(0.231522,0.003936,-0.004249,0.249964,0,0);-ms-transform:matrix(0.231522,0.003936,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.231522,0.003936,-0.004249,0.249964,0,0);}
.m1c_c01326{transform:matrix(0.231687,0.004170,-0.004499,0.249960,0,0);-ms-transform:matrix(0.231687,0.004170,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.231687,0.004170,-0.004499,0.249960,0,0);}
.m23_c01326{transform:matrix(0.232457,0.004184,-0.004499,0.249960,0,0);-ms-transform:matrix(0.232457,0.004184,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.232457,0.004184,-0.004499,0.249960,0,0);}
.mcc_c01326{transform:matrix(0.232818,0.004656,-0.004999,0.249950,0,0);-ms-transform:matrix(0.232818,0.004656,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.232818,0.004656,-0.004999,0.249950,0,0);}
.m68_c01326{transform:matrix(0.232936,0.003960,-0.004249,0.249964,0,0);-ms-transform:matrix(0.232936,0.003960,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.232936,0.003960,-0.004249,0.249964,0,0);}
.mfd_c01326{transform:matrix(0.233083,0.004429,-0.004749,0.249955,0,0);-ms-transform:matrix(0.233083,0.004429,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.233083,0.004429,-0.004749,0.249955,0,0);}
.m34_c01326{transform:matrix(0.233158,0.004430,-0.004749,0.249955,0,0);-ms-transform:matrix(0.233158,0.004430,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.233158,0.004430,-0.004749,0.249955,0,0);}
.m4a_c01326{transform:matrix(0.233593,0.004438,-0.004749,0.249955,0,0);-ms-transform:matrix(0.233593,0.004438,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.233593,0.004438,-0.004749,0.249955,0,0);}
.m25_c01326{transform:matrix(0.233837,0.004209,-0.004499,0.249960,0,0);-ms-transform:matrix(0.233837,0.004209,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.233837,0.004209,-0.004499,0.249960,0,0);}
.m86_c01326{transform:matrix(0.234226,0.003982,-0.004249,0.249964,0,0);-ms-transform:matrix(0.234226,0.003982,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.234226,0.003982,-0.004249,0.249964,0,0);}
.me2_c01326{transform:matrix(0.234228,0.004685,-0.004999,0.249950,0,0);-ms-transform:matrix(0.234228,0.004685,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.234228,0.004685,-0.004999,0.249950,0,0);}
.m58_c01326{transform:matrix(0.234723,0.004460,-0.004749,0.249955,0,0);-ms-transform:matrix(0.234723,0.004460,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.234723,0.004460,-0.004749,0.249955,0,0);}
.m6d_c01326{transform:matrix(0.235541,0.004004,-0.004249,0.249964,0,0);-ms-transform:matrix(0.235541,0.004004,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.235541,0.004004,-0.004249,0.249964,0,0);}
.mf1_c01326{transform:matrix(0.235598,0.004712,-0.004999,0.249950,0,0);-ms-transform:matrix(0.235598,0.004712,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.235598,0.004712,-0.004999,0.249950,0,0);}
.m49_c01326{transform:matrix(0.235962,0.004483,-0.004749,0.249955,0,0);-ms-transform:matrix(0.235962,0.004483,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.235962,0.004483,-0.004749,0.249955,0,0);}
.mfe_c01326{transform:matrix(0.236132,0.004487,-0.004749,0.249955,0,0);-ms-transform:matrix(0.236132,0.004487,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.236132,0.004487,-0.004749,0.249955,0,0);}
.m5e_c01326{transform:matrix(0.236202,0.004488,-0.004749,0.249955,0,0);-ms-transform:matrix(0.236202,0.004488,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.236202,0.004488,-0.004749,0.249955,0,0);}
.m47_c01326{transform:matrix(0.236257,0.004489,-0.004749,0.249955,0,0);-ms-transform:matrix(0.236257,0.004489,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.236257,0.004489,-0.004749,0.249955,0,0);}
.m35_c01326{transform:matrix(0.236312,0.004490,-0.004749,0.249955,0,0);-ms-transform:matrix(0.236312,0.004490,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.236312,0.004490,-0.004749,0.249955,0,0);}
.mec_c01326{transform:matrix(0.236988,0.004740,-0.004999,0.249950,0,0);-ms-transform:matrix(0.236988,0.004740,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.236988,0.004740,-0.004999,0.249950,0,0);}
.m31_c01326{transform:matrix(0.237022,0.004503,-0.004749,0.249955,0,0);-ms-transform:matrix(0.237022,0.004503,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.237022,0.004503,-0.004749,0.249955,0,0);}
.m7d_c01326{transform:matrix(0.237116,0.004031,-0.004249,0.249964,0,0);-ms-transform:matrix(0.237116,0.004031,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.237116,0.004031,-0.004249,0.249964,0,0);}
.m15_c01326{transform:matrix(0.237811,0.004281,-0.004499,0.249960,0,0);-ms-transform:matrix(0.237811,0.004281,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.237811,0.004281,-0.004499,0.249960,0,0);}
.mdf_c01326{transform:matrix(0.237992,0.004760,-0.004999,0.249950,0,0);-ms-transform:matrix(0.237992,0.004760,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.237992,0.004760,-0.004999,0.249950,0,0);}
.m57_c01326{transform:matrix(0.238482,0.004531,-0.004749,0.249955,0,0);-ms-transform:matrix(0.238482,0.004531,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.238482,0.004531,-0.004749,0.249955,0,0);}
.mf9_c01326{transform:matrix(0.239212,0.004545,-0.004749,0.249955,0,0);-ms-transform:matrix(0.239212,0.004545,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.239212,0.004545,-0.004749,0.249955,0,0);}
.me0_c01326{transform:matrix(0.239487,0.004790,-0.004999,0.249950,0,0);-ms-transform:matrix(0.239487,0.004790,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.239487,0.004790,-0.004999,0.249950,0,0);}
.mff_c01326{transform:matrix(0.239907,0.004558,-0.004749,0.249955,0,0);-ms-transform:matrix(0.239907,0.004558,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.239907,0.004558,-0.004749,0.249955,0,0);}
.m7_c01326{transform:matrix(0.239930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239930,0.000000,0.000000,0.250000,0,0);}
.m87_c01326{transform:matrix(0.240350,0.004086,-0.004249,0.249964,0,0);-ms-transform:matrix(0.240350,0.004086,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.240350,0.004086,-0.004249,0.249964,0,0);}
.m11_c01326{transform:matrix(0.240461,0.004328,-0.004499,0.249960,0,0);-ms-transform:matrix(0.240461,0.004328,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.240461,0.004328,-0.004499,0.249960,0,0);}
.m1b_c01326{transform:matrix(0.240671,0.004332,-0.004499,0.249960,0,0);-ms-transform:matrix(0.240671,0.004332,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.240671,0.004332,-0.004499,0.249960,0,0);}
.m53_c01326{transform:matrix(0.240697,0.004573,-0.004749,0.249955,0,0);-ms-transform:matrix(0.240697,0.004573,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.240697,0.004573,-0.004749,0.249955,0,0);}
.mce_c01326{transform:matrix(0.240852,0.004817,-0.004999,0.249950,0,0);-ms-transform:matrix(0.240852,0.004817,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.240852,0.004817,-0.004999,0.249950,0,0);}
.m76_c01326{transform:matrix(0.241165,0.004100,-0.004249,0.249964,0,0);-ms-transform:matrix(0.241165,0.004100,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.241165,0.004100,-0.004249,0.249964,0,0);}
.m5c_c01326{transform:matrix(0.241361,0.004586,-0.004749,0.249955,0,0);-ms-transform:matrix(0.241361,0.004586,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.241361,0.004586,-0.004749,0.249955,0,0);}
.m2f_c01326{transform:matrix(0.241601,0.004590,-0.004749,0.249955,0,0);-ms-transform:matrix(0.241601,0.004590,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.241601,0.004590,-0.004749,0.249955,0,0);}
.m105_c01326{transform:matrix(0.241911,0.004596,-0.004749,0.249955,0,0);-ms-transform:matrix(0.241911,0.004596,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.241911,0.004596,-0.004749,0.249955,0,0);}
.m89_c01326{transform:matrix(0.242100,0.004116,-0.004249,0.249964,0,0);-ms-transform:matrix(0.242100,0.004116,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.242100,0.004116,-0.004249,0.249964,0,0);}
.m13_c01326{transform:matrix(0.242196,0.004360,-0.004499,0.249960,0,0);-ms-transform:matrix(0.242196,0.004360,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.242196,0.004360,-0.004499,0.249960,0,0);}
.m1a_c01326{transform:matrix(0.242331,0.004362,-0.004499,0.249960,0,0);-ms-transform:matrix(0.242331,0.004362,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.242331,0.004362,-0.004499,0.249960,0,0);}
.mcb_c01326{transform:matrix(0.242522,0.004850,-0.004999,0.249950,0,0);-ms-transform:matrix(0.242522,0.004850,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.242522,0.004850,-0.004999,0.249950,0,0);}
.m104_c01326{transform:matrix(0.242531,0.004608,-0.004749,0.249955,0,0);-ms-transform:matrix(0.242531,0.004608,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.242531,0.004608,-0.004749,0.249955,0,0);}
.m1d_c01326{transform:matrix(0.242591,0.004367,-0.004499,0.249960,0,0);-ms-transform:matrix(0.242591,0.004367,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.242591,0.004367,-0.004499,0.249960,0,0);}
.m48_c01326{transform:matrix(0.242716,0.004612,-0.004749,0.249955,0,0);-ms-transform:matrix(0.242716,0.004612,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.242716,0.004612,-0.004749,0.249955,0,0);}
.m67_c01326{transform:matrix(0.243445,0.004139,-0.004249,0.249964,0,0);-ms-transform:matrix(0.243445,0.004139,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.243445,0.004139,-0.004249,0.249964,0,0);}
.m102_c01326{transform:matrix(0.243841,0.004633,-0.004749,0.249955,0,0);-ms-transform:matrix(0.243841,0.004633,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.243841,0.004633,-0.004749,0.249955,0,0);}
.m22_c01326{transform:matrix(0.244140,0.004395,-0.004499,0.249960,0,0);-ms-transform:matrix(0.244140,0.004395,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.244140,0.004395,-0.004499,0.249960,0,0);}
.mdc_c01326{transform:matrix(0.244201,0.004884,-0.004999,0.249950,0,0);-ms-transform:matrix(0.244201,0.004884,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.244201,0.004884,-0.004999,0.249950,0,0);}
.m21_c01326{transform:matrix(0.244275,0.004397,-0.004499,0.249960,0,0);-ms-transform:matrix(0.244275,0.004397,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.244275,0.004397,-0.004499,0.249960,0,0);}
.m46_c01326{transform:matrix(0.244381,0.004643,-0.004749,0.249955,0,0);-ms-transform:matrix(0.244381,0.004643,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.244381,0.004643,-0.004749,0.249955,0,0);}
.m16_c01326{transform:matrix(0.244575,0.004402,-0.004499,0.249960,0,0);-ms-transform:matrix(0.244575,0.004402,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.244575,0.004402,-0.004499,0.249960,0,0);}
.mbd_c01326{transform:matrix(0.244766,0.004895,-0.004999,0.249950,0,0);-ms-transform:matrix(0.244766,0.004895,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.244766,0.004895,-0.004999,0.249950,0,0);}
.m20_c01326{transform:matrix(0.244925,0.004409,-0.004499,0.249960,0,0);-ms-transform:matrix(0.244925,0.004409,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.244925,0.004409,-0.004499,0.249960,0,0);}
.m100_c01326{transform:matrix(0.245166,0.004658,-0.004749,0.249955,0,0);-ms-transform:matrix(0.245166,0.004658,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.245166,0.004658,-0.004749,0.249955,0,0);}
.mc0_c01326{transform:matrix(0.245461,0.004909,-0.004999,0.249950,0,0);-ms-transform:matrix(0.245461,0.004909,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.245461,0.004909,-0.004999,0.249950,0,0);}
.m18_c01326{transform:matrix(0.246410,0.004435,-0.004499,0.249960,0,0);-ms-transform:matrix(0.246410,0.004435,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.246410,0.004435,-0.004499,0.249960,0,0);}
.m63_c01326{transform:matrix(0.247639,0.004210,-0.004249,0.249964,0,0);-ms-transform:matrix(0.247639,0.004210,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.247639,0.004210,-0.004249,0.249964,0,0);}
.m92_c01326{transform:matrix(0.247770,0.004460,-0.004499,0.249960,0,0);-ms-transform:matrix(0.247770,0.004460,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.247770,0.004460,-0.004499,0.249960,0,0);}
.m8b_c01326{transform:matrix(0.248675,0.004476,-0.004499,0.249960,0,0);-ms-transform:matrix(0.248675,0.004476,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.248675,0.004476,-0.004499,0.249960,0,0);}
.m26_c01326{transform:matrix(0.248870,0.004480,-0.004499,0.249960,0,0);-ms-transform:matrix(0.248870,0.004480,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.248870,0.004480,-0.004499,0.249960,0,0);}
.me1_c01326{transform:matrix(0.248995,0.004980,-0.004999,0.249950,0,0);-ms-transform:matrix(0.248995,0.004980,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.248995,0.004980,-0.004999,0.249950,0,0);}
.m42_c01326{transform:matrix(0.249165,0.004734,-0.004749,0.249955,0,0);-ms-transform:matrix(0.249165,0.004734,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.249165,0.004734,-0.004749,0.249955,0,0);}
.m106_c01326{transform:matrix(0.249685,0.004744,-0.004749,0.249955,0,0);-ms-transform:matrix(0.249685,0.004744,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.249685,0.004744,-0.004749,0.249955,0,0);}
.m2b_c01326{transform:matrix(0.250314,0.004506,-0.004499,0.249960,0,0);-ms-transform:matrix(0.250314,0.004506,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.250314,0.004506,-0.004499,0.249960,0,0);}
.ma_c01326{transform:matrix(0.250425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250425,0.000000,0.000000,0.250000,0,0);}
.mbf_c01326{transform:matrix(0.251350,0.005027,-0.004999,0.249950,0,0);-ms-transform:matrix(0.251350,0.005027,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.251350,0.005027,-0.004999,0.249950,0,0);}
.m1f_c01326{transform:matrix(0.252374,0.004543,-0.004499,0.249960,0,0);-ms-transform:matrix(0.252374,0.004543,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.252374,0.004543,-0.004499,0.249960,0,0);}
.m4_c01326{transform:matrix(0.253785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253785,0.000000,0.000000,0.250000,0,0);}
.mb3_c01326{transform:matrix(0.253819,0.005076,-0.004999,0.249950,0,0);-ms-transform:matrix(0.253819,0.005076,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.253819,0.005076,-0.004999,0.249950,0,0);}
.mb2_c01326{transform:matrix(0.254224,0.005084,-0.004999,0.249950,0,0);-ms-transform:matrix(0.254224,0.005084,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.254224,0.005084,-0.004999,0.249950,0,0);}
.mc9_c01326{transform:matrix(0.255524,0.005110,-0.004999,0.249950,0,0);-ms-transform:matrix(0.255524,0.005110,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.255524,0.005110,-0.004999,0.249950,0,0);}
.m93_c01326{transform:matrix(0.256114,0.004610,-0.004499,0.249960,0,0);-ms-transform:matrix(0.256114,0.004610,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.256114,0.004610,-0.004499,0.249960,0,0);}
.m8c_c01326{transform:matrix(0.256448,0.004616,-0.004499,0.249960,0,0);-ms-transform:matrix(0.256448,0.004616,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.256448,0.004616,-0.004499,0.249960,0,0);}
.mb5_c01326{transform:matrix(0.256514,0.005130,-0.004999,0.249950,0,0);-ms-transform:matrix(0.256514,0.005130,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.256514,0.005130,-0.004999,0.249950,0,0);}
.m6_c01326{transform:matrix(0.256565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256565,0.000000,0.000000,0.250000,0,0);}
.m8a_c01326{transform:matrix(0.257353,0.004375,-0.004249,0.249964,0,0);-ms-transform:matrix(0.257353,0.004375,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.257353,0.004375,-0.004249,0.249964,0,0);}
.m8f_c01326{transform:matrix(0.257758,0.004640,-0.004499,0.249960,0,0);-ms-transform:matrix(0.257758,0.004640,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.257758,0.004640,-0.004499,0.249960,0,0);}
.m2d_c01326{transform:matrix(0.258618,0.004655,-0.004499,0.249960,0,0);-ms-transform:matrix(0.258618,0.004655,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.258618,0.004655,-0.004499,0.249960,0,0);}
.mde_c01326{transform:matrix(0.259443,0.005189,-0.004999,0.249950,0,0);-ms-transform:matrix(0.259443,0.005189,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.259443,0.005189,-0.004999,0.249950,0,0);}
.m36_c01326{transform:matrix(0.259568,0.004932,-0.004749,0.249955,0,0);-ms-transform:matrix(0.259568,0.004932,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.259568,0.004932,-0.004749,0.249955,0,0);}
.m32_c01326{transform:matrix(0.259703,0.004934,-0.004749,0.249955,0,0);-ms-transform:matrix(0.259703,0.004934,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.259703,0.004934,-0.004749,0.249955,0,0);}
.m4c_c01326{transform:matrix(0.259793,0.004936,-0.004749,0.249955,0,0);-ms-transform:matrix(0.259793,0.004936,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.259793,0.004936,-0.004749,0.249955,0,0);}
.m2c_c01326{transform:matrix(0.259903,0.004678,-0.004499,0.249960,0,0);-ms-transform:matrix(0.259903,0.004678,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.259903,0.004678,-0.004499,0.249960,0,0);}
.m28_c01326{transform:matrix(0.259933,0.004679,-0.004499,0.249960,0,0);-ms-transform:matrix(0.259933,0.004679,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.259933,0.004679,-0.004499,0.249960,0,0);}
.m85_c01326{transform:matrix(0.261032,0.004438,-0.004249,0.249964,0,0);-ms-transform:matrix(0.261032,0.004438,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.261032,0.004438,-0.004249,0.249964,0,0);}
.m33_c01326{transform:matrix(0.261038,0.004960,-0.004749,0.249955,0,0);-ms-transform:matrix(0.261038,0.004960,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.261038,0.004960,-0.004749,0.249955,0,0);}
.m24_c01326{transform:matrix(0.261293,0.004703,-0.004499,0.249960,0,0);-ms-transform:matrix(0.261293,0.004703,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.261293,0.004703,-0.004499,0.249960,0,0);}
.m4b_c01326{transform:matrix(0.261503,0.004969,-0.004749,0.249955,0,0);-ms-transform:matrix(0.261503,0.004969,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.261503,0.004969,-0.004749,0.249955,0,0);}
.me3_c01326{transform:matrix(0.261808,0.005236,-0.004999,0.249950,0,0);-ms-transform:matrix(0.261808,0.005236,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.261808,0.005236,-0.004999,0.249950,0,0);}
.m94_c01326{transform:matrix(0.262358,0.004722,-0.004499,0.249960,0,0);-ms-transform:matrix(0.262358,0.004722,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.262358,0.004722,-0.004499,0.249960,0,0);}
.mfc_c01326{transform:matrix(0.262453,0.004987,-0.004749,0.249955,0,0);-ms-transform:matrix(0.262453,0.004987,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.262453,0.004987,-0.004749,0.249955,0,0);}
.m30_c01326{transform:matrix(0.264812,0.005031,-0.004749,0.249955,0,0);-ms-transform:matrix(0.264812,0.005031,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.264812,0.005031,-0.004749,0.249955,0,0);}
.m91_c01326{transform:matrix(0.266107,0.004790,-0.004499,0.249960,0,0);-ms-transform:matrix(0.266107,0.004790,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.266107,0.004790,-0.004499,0.249960,0,0);}
.m61_c01326{transform:matrix(0.266642,0.005066,-0.004749,0.249955,0,0);-ms-transform:matrix(0.266642,0.005066,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.266642,0.005066,-0.004749,0.249955,0,0);}
.m2a_c01326{transform:matrix(0.269576,0.004852,-0.004499,0.249960,0,0);-ms-transform:matrix(0.269576,0.004852,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.269576,0.004852,-0.004499,0.249960,0,0);}
.mb6_c01326{transform:matrix(0.269916,0.005398,-0.004999,0.249950,0,0);-ms-transform:matrix(0.269916,0.005398,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.269916,0.005398,-0.004999,0.249950,0,0);}
.m84_c01326{transform:matrix(0.270176,0.004593,-0.004249,0.249964,0,0);-ms-transform:matrix(0.270176,0.004593,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.270176,0.004593,-0.004249,0.249964,0,0);}
.m2_c01326{transform:matrix(0.273535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273535,0.000000,0.000000,0.250000,0,0);}
.mc3_c01326{transform:matrix(0.273765,0.005475,-0.004999,0.249950,0,0);-ms-transform:matrix(0.273765,0.005475,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.273765,0.005475,-0.004999,0.249950,0,0);}
.m72_c01326{transform:matrix(0.274060,0.004659,-0.004249,0.249964,0,0);-ms-transform:matrix(0.274060,0.004659,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.274060,0.004659,-0.004249,0.249964,0,0);}
.me4_c01326{transform:matrix(0.274405,0.005488,-0.004999,0.249950,0,0);-ms-transform:matrix(0.274405,0.005488,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.274405,0.005488,-0.004999,0.249950,0,0);}
.m5_c01326{transform:matrix(0.274525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274525,0.000000,0.000000,0.250000,0,0);}
.m3_c01326{transform:matrix(0.276355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276355,0.000000,0.000000,0.250000,0,0);}
.m96_c01326{transform:matrix(0.276880,0.004984,-0.004499,0.249960,0,0);-ms-transform:matrix(0.276880,0.004984,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.276880,0.004984,-0.004499,0.249960,0,0);}
.m29_c01326{transform:matrix(0.277080,0.004987,-0.004499,0.249960,0,0);-ms-transform:matrix(0.277080,0.004987,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.277080,0.004987,-0.004499,0.249960,0,0);}
.m2e_c01326{transform:matrix(0.277155,0.004989,-0.004499,0.249960,0,0);-ms-transform:matrix(0.277155,0.004989,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.277155,0.004989,-0.004499,0.249960,0,0);}
.m6e_c01326{transform:matrix(0.277265,0.004714,-0.004249,0.249964,0,0);-ms-transform:matrix(0.277265,0.004714,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.277265,0.004714,-0.004249,0.249964,0,0);}
.mb_c01326{transform:matrix(0.279475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279475,0.000000,0.000000,0.250000,0,0);}
.m74_c01326{transform:matrix(0.280394,0.004767,-0.004249,0.249964,0,0);-ms-transform:matrix(0.280394,0.004767,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.280394,0.004767,-0.004249,0.249964,0,0);}
.m98_c01326{transform:matrix(0.281439,0.005066,-0.004499,0.249960,0,0);-ms-transform:matrix(0.281439,0.005066,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.281439,0.005066,-0.004499,0.249960,0,0);}
.ma7_c01326{transform:matrix(0.281559,0.005068,-0.004499,0.249960,0,0);-ms-transform:matrix(0.281559,0.005068,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.281559,0.005068,-0.004499,0.249960,0,0);}
.m108_c01326{transform:matrix(0.282209,0.005362,-0.004749,0.249955,0,0);-ms-transform:matrix(0.282209,0.005362,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.282209,0.005362,-0.004749,0.249955,0,0);}
.mb7_c01326{transform:matrix(0.284028,0.005681,-0.004999,0.249950,0,0);-ms-transform:matrix(0.284028,0.005681,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.284028,0.005681,-0.004999,0.249950,0,0);}
.mc5_c01326{transform:matrix(0.284438,0.005689,-0.004999,0.249950,0,0);-ms-transform:matrix(0.284438,0.005689,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.284438,0.005689,-0.004999,0.249950,0,0);}
.me9_c01326{transform:matrix(0.284528,0.005691,-0.004999,0.249950,0,0);-ms-transform:matrix(0.284528,0.005691,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.284528,0.005691,-0.004999,0.249950,0,0);}
.mba_c01326{transform:matrix(0.284558,0.005691,-0.004999,0.249950,0,0);-ms-transform:matrix(0.284558,0.005691,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.284558,0.005691,-0.004999,0.249950,0,0);}
.me5_c01326{transform:matrix(0.285658,0.005713,-0.004999,0.249950,0,0);-ms-transform:matrix(0.285658,0.005713,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.285658,0.005713,-0.004999,0.249950,0,0);}
.mb4_c01326{transform:matrix(0.285758,0.005715,-0.004999,0.249950,0,0);-ms-transform:matrix(0.285758,0.005715,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.285758,0.005715,-0.004999,0.249950,0,0);}
.m9a_c01326{transform:matrix(0.286209,0.005152,-0.004499,0.249960,0,0);-ms-transform:matrix(0.286209,0.005152,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.286209,0.005152,-0.004499,0.249960,0,0);}
.mf0_c01326{transform:matrix(0.289257,0.005785,-0.004999,0.249950,0,0);-ms-transform:matrix(0.289257,0.005785,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.289257,0.005785,-0.004999,0.249950,0,0);}
.m71_c01326{transform:matrix(0.290958,0.004946,-0.004249,0.249964,0,0);-ms-transform:matrix(0.290958,0.004946,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.290958,0.004946,-0.004249,0.249964,0,0);}
.m97_c01326{transform:matrix(0.290993,0.005238,-0.004499,0.249960,0,0);-ms-transform:matrix(0.290993,0.005238,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.290993,0.005238,-0.004499,0.249960,0,0);}
.mb8_c01326{transform:matrix(0.291022,0.005820,-0.004999,0.249950,0,0);-ms-transform:matrix(0.291022,0.005820,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.291022,0.005820,-0.004999,0.249950,0,0);}
.m9c_c01326{transform:matrix(0.292783,0.005270,-0.004499,0.249960,0,0);-ms-transform:matrix(0.292783,0.005270,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.292783,0.005270,-0.004499,0.249960,0,0);}
.m6a_c01326{transform:matrix(0.294162,0.005001,-0.004249,0.249964,0,0);-ms-transform:matrix(0.294162,0.005001,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.294162,0.005001,-0.004249,0.249964,0,0);}
.mc4_c01326{transform:matrix(0.294706,0.005894,-0.004999,0.249950,0,0);-ms-transform:matrix(0.294706,0.005894,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.294706,0.005894,-0.004999,0.249950,0,0);}
.mb9_c01326{transform:matrix(0.298405,0.005968,-0.004999,0.249950,0,0);-ms-transform:matrix(0.298405,0.005968,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.298405,0.005968,-0.004999,0.249950,0,0);}
.m10_c01326{transform:matrix(0.302705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302705,0.000000,0.000000,0.250000,0,0);}
.m9e_c01326{transform:matrix(0.306075,0.005509,-0.004499,0.249960,0,0);-ms-transform:matrix(0.306075,0.005509,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.306075,0.005509,-0.004499,0.249960,0,0);}
.m4d_c01326{transform:matrix(0.306285,0.005819,-0.004749,0.249955,0,0);-ms-transform:matrix(0.306285,0.005819,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.306285,0.005819,-0.004749,0.249955,0,0);}
.m70_c01326{transform:matrix(0.308625,0.005247,-0.004249,0.249964,0,0);-ms-transform:matrix(0.308625,0.005247,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.308625,0.005247,-0.004249,0.249964,0,0);}
.mee_c01326{transform:matrix(0.312428,0.006249,-0.004999,0.249950,0,0);-ms-transform:matrix(0.312428,0.006249,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.312428,0.006249,-0.004999,0.249950,0,0);}
.mf2_c01326{transform:matrix(0.314482,0.006290,-0.004999,0.249950,0,0);-ms-transform:matrix(0.314482,0.006290,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.314482,0.006290,-0.004999,0.249950,0,0);}
.m103_c01326{transform:matrix(0.317508,0.006033,-0.004749,0.249955,0,0);-ms-transform:matrix(0.317508,0.006033,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.317508,0.006033,-0.004749,0.249955,0,0);}
.m9b_c01326{transform:matrix(0.319613,0.005753,-0.004499,0.249960,0,0);-ms-transform:matrix(0.319613,0.005753,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.319613,0.005753,-0.004499,0.249960,0,0);}
.m82_c01326{transform:matrix(0.321609,0.005467,-0.004249,0.249964,0,0);-ms-transform:matrix(0.321609,0.005467,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.321609,0.005467,-0.004249,0.249964,0,0);}
.me7_c01326{transform:matrix(0.324920,0.006498,-0.004999,0.249950,0,0);-ms-transform:matrix(0.324920,0.006498,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.324920,0.006498,-0.004999,0.249950,0,0);}
.meb_c01326{transform:matrix(0.325770,0.006515,-0.004999,0.249950,0,0);-ms-transform:matrix(0.325770,0.006515,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.325770,0.006515,-0.004999,0.249950,0,0);}
.m9_c01326{transform:matrix(0.336800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336800,0.000000,0.000000,0.250000,0,0);}
.m5a_c01326{transform:matrix(0.337759,0.006417,-0.004749,0.249955,0,0);-ms-transform:matrix(0.337759,0.006417,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.337759,0.006417,-0.004749,0.249955,0,0);}
.m6f_c01326{transform:matrix(0.341446,0.005805,-0.004249,0.249964,0,0);-ms-transform:matrix(0.341446,0.005805,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.341446,0.005805,-0.004249,0.249964,0,0);}
.me8_c01326{transform:matrix(0.344921,0.006898,-0.004999,0.249950,0,0);-ms-transform:matrix(0.344921,0.006898,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.344921,0.006898,-0.004999,0.249950,0,0);}
.me6_c01326{transform:matrix(0.345941,0.006919,-0.004999,0.249950,0,0);-ms-transform:matrix(0.345941,0.006919,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.345941,0.006919,-0.004999,0.249950,0,0);}
.m44_c01326{transform:matrix(0.346937,0.006592,-0.004749,0.249955,0,0);-ms-transform:matrix(0.346937,0.006592,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.346937,0.006592,-0.004749,0.249955,0,0);}
.mf4_c01326{transform:matrix(0.353319,0.007066,-0.004999,0.249950,0,0);-ms-transform:matrix(0.353319,0.007066,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.353319,0.007066,-0.004999,0.249950,0,0);}
.m41_c01326{transform:matrix(0.365944,0.006953,-0.004749,0.249955,0,0);-ms-transform:matrix(0.365944,0.006953,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.365944,0.006953,-0.004749,0.249955,0,0);}
.m9f_c01326{transform:matrix(0.366931,0.006605,-0.004499,0.249960,0,0);-ms-transform:matrix(0.366931,0.006605,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.366931,0.006605,-0.004499,0.249960,0,0);}
.m99_c01326{transform:matrix(0.373095,0.006716,-0.004499,0.249960,0,0);-ms-transform:matrix(0.373095,0.006716,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.373095,0.006716,-0.004499,0.249960,0,0);}
.m77_c01326{transform:matrix(0.388794,0.006609,-0.004249,0.249964,0,0);-ms-transform:matrix(0.388794,0.006609,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.388794,0.006609,-0.004249,0.249964,0,0);}
.m43_c01326{transform:matrix(0.392994,0.007467,-0.004749,0.249955,0,0);-ms-transform:matrix(0.392994,0.007467,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.392994,0.007467,-0.004749,0.249955,0,0);}
.m73_c01326{transform:matrix(0.396468,0.006740,-0.004249,0.249964,0,0);-ms-transform:matrix(0.396468,0.006740,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.396468,0.006740,-0.004249,0.249964,0,0);}
.m6b_c01326{transform:matrix(0.399817,0.006797,-0.004249,0.249964,0,0);-ms-transform:matrix(0.399817,0.006797,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.399817,0.006797,-0.004249,0.249964,0,0);}
.mf3_c01326{transform:matrix(0.403774,0.008075,-0.004999,0.249950,0,0);-ms-transform:matrix(0.403774,0.008075,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.403774,0.008075,-0.004999,0.249950,0,0);}
.m109_c01326{transform:matrix(0.405332,0.007701,-0.004749,0.249955,0,0);-ms-transform:matrix(0.405332,0.007701,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.405332,0.007701,-0.004749,0.249955,0,0);}
.m10a_c01326{transform:matrix(0.439676,0.008354,-0.004749,0.249955,0,0);-ms-transform:matrix(0.439676,0.008354,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.439676,0.008354,-0.004749,0.249955,0,0);}
.m95_c01326{transform:matrix(0.443703,0.007987,-0.004499,0.249960,0,0);-ms-transform:matrix(0.443703,0.007987,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.443703,0.007987,-0.004499,0.249960,0,0);}
.m37_c01326{transform:matrix(0.470010,0.008930,-0.004749,0.249955,0,0);-ms-transform:matrix(0.470010,0.008930,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.470010,0.008930,-0.004749,0.249955,0,0);}
.mea_c01326{transform:matrix(0.476010,0.009520,-0.004999,0.249950,0,0);-ms-transform:matrix(0.476010,0.009520,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.476010,0.009520,-0.004999,0.249950,0,0);}
.m75_c01326{transform:matrix(0.623335,0.010597,-0.004249,0.249964,0,0);-ms-transform:matrix(0.623335,0.010597,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.623335,0.010597,-0.004249,0.249964,0,0);}
.m27_c01326{transform:matrix(0.634982,0.011430,-0.004499,0.249960,0,0);-ms-transform:matrix(0.634982,0.011430,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.634982,0.011430,-0.004499,0.249960,0,0);}
.mfb_c01326{transform:matrix(0.698179,0.013265,-0.004749,0.249955,0,0);-ms-transform:matrix(0.698179,0.013265,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.698179,0.013265,-0.004749,0.249955,0,0);}
.mf_c01326{transform:matrix(0.944120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.944120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.944120,0.000000,0.000000,0.250000,0,0);}
.v0_c01326{vertical-align:0.000000px;}
.ls0_c01326{letter-spacing:0.000000px;}
.sc__c01326{text-shadow:none;}
.sc0_c01326{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__c01326{-webkit-text-stroke:0px transparent;}
.sc0_c01326{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01326{word-spacing:0.000000px;}
.fc0_c01326{color:transparent;}
.fs11_c01326{font-size:60.011999px;}
.fs1_c01326{font-size:72.000000px;}
.fs4_c01326{font-size:72.011663px;}
.fsd_c01326{font-size:72.014399px;}
.fs9_c01326{font-size:78.011270px;}
.fs3_c01326{font-size:78.012635px;}
.fs5_c01326{font-size:78.014078px;}
.fs10_c01326{font-size:78.015598px;}
.fs8_c01326{font-size:84.012137px;}
.fs2_c01326{font-size:84.013607px;}
.fs7_c01326{font-size:84.015161px;}
.fse_c01326{font-size:84.016798px;}
.fs12_c01326{font-size:90.016244px;}
.fsc_c01326{font-size:102.011474px;}
.fsb_c01326{font-size:108.017495px;}
.fsa_c01326{font-size:114.016472px;}
.fs6_c01326{font-size:120.021658px;}
.fsf_c01326{font-size:120.023998px;}
.fs0_c01326{font-size:132.000000px;}
.y0_c01326{bottom:0.000000px;}
.yff_c01326{bottom:264.861115px;}
.y100_c01326{bottom:266.270709px;}
.y101_c01326{bottom:266.610171px;}
.y102_c01326{bottom:266.938852px;}
.y103_c01326{bottom:267.489701px;}
.y104_c01326{bottom:267.713667px;}
.y105_c01326{bottom:268.040652px;}
.y106_c01326{bottom:268.366907px;}
.y107_c01326{bottom:268.700812px;}
.y108_c01326{bottom:269.243296px;}
.y109_c01326{bottom:269.586486px;}
.y10a_c01326{bottom:270.139191px;}
.y10b_c01326{bottom:271.143329px;}
.y10c_c01326{bottom:271.159807px;}
.y10d_c01326{bottom:271.541928px;}
.yfe_c01326{bottom:291.861960px;}
.yfd_c01326{bottom:292.482832px;}
.yfc_c01326{bottom:295.632909px;}
.yfb_c01326{bottom:297.906411px;}
.yfa_c01326{bottom:299.219834px;}
.yf9_c01326{bottom:301.498009px;}
.yf8_c01326{bottom:302.134500px;}
.yf6_c01326{bottom:336.644790px;}
.yf7_c01326{bottom:336.644940px;}
.yf5_c01326{bottom:360.270960px;}
.yf4_c01326{bottom:361.382280px;}
.yf3_c01326{bottom:363.366930px;}
.yf2_c01326{bottom:363.784920px;}
.yf1_c01326{bottom:365.083800px;}
.yf0_c01326{bottom:365.762880px;}
.yef_c01326{bottom:366.195450px;}
.yee_c01326{bottom:367.578120px;}
.yed_c01326{bottom:368.247600px;}
.yec_c01326{bottom:370.412580px;}
.yeb_c01326{bottom:371.530170px;}
.yea_c01326{bottom:372.901500px;}
.ye9_c01326{bottom:396.028740px;}
.ye8_c01326{bottom:396.666360px;}
.ye7_c01326{bottom:399.369810px;}
.ye6_c01326{bottom:401.770380px;}
.ye5_c01326{bottom:402.438990px;}
.ye4_c01326{bottom:403.974450px;}
.ye3_c01326{bottom:404.859990px;}
.ye2_c01326{bottom:405.307140px;}
.ye1_c01326{bottom:407.074650px;}
.ye0_c01326{bottom:407.733090px;}
.ydf_c01326{bottom:409.029270px;}
.yde_c01326{bottom:431.619840px;}
.ydd_c01326{bottom:432.759540px;}
.ydc_c01326{bottom:434.300820px;}
.ydb_c01326{bottom:434.959920px;}
.yda_c01326{bottom:435.397770px;}
.yd9_c01326{bottom:436.730970px;}
.yd8_c01326{bottom:437.377980px;}
.yd7_c01326{bottom:438.513060px;}
.yd6_c01326{bottom:439.177560px;}
.yd5_c01326{bottom:441.375780px;}
.yd4_c01326{bottom:442.461300px;}
.yd3_c01326{bottom:443.124600px;}
.yd2_c01326{bottom:444.674640px;}
.yd1_c01326{bottom:469.817550px;}
.yd0_c01326{bottom:470.329530px;}
.ycf_c01326{bottom:471.400560px;}
.yce_c01326{bottom:473.162880px;}
.ycd_c01326{bottom:473.685780px;}
.ycc_c01326{bottom:475.291410px;}
.ycb_c01326{bottom:477.233730px;}
.yca_c01326{bottom:477.760440px;}
.yc9_c01326{bottom:478.633770px;}
.yc8_c01326{bottom:478.969620px;}
.yc7_c01326{bottom:503.168070px;}
.yc6_c01326{bottom:504.576240px;}
.yc5_c01326{bottom:506.321790px;}
.yc4_c01326{bottom:506.995620px;}
.yc3_c01326{bottom:509.344140px;}
.yc2_c01326{bottom:510.501330px;}
.yc1_c01326{bottom:511.193220px;}
.yc0_c01326{bottom:514.167390px;}
.ybf_c01326{bottom:514.895730px;}
.ybe_c01326{bottom:516.239970px;}
.ybd_c01326{bottom:538.901610px;}
.ybc_c01326{bottom:540.051150px;}
.ybb_c01326{bottom:541.830630px;}
.yba_c01326{bottom:544.028100px;}
.yb9_c01326{bottom:545.145570px;}
.yb8_c01326{bottom:545.804670px;}
.yb7_c01326{bottom:548.667300px;}
.yb6_c01326{bottom:549.331920px;}
.yb5_c01326{bottom:549.996000px;}
.yb4_c01326{bottom:578.401590px;}
.yb3_c01326{bottom:579.778500px;}
.yb2_c01326{bottom:580.450957px;}
.yb1_c01326{bottom:581.423093px;}
.yb0_c01326{bottom:581.937263px;}
.yaf_c01326{bottom:583.257720px;}
.yae_c01326{bottom:583.735755px;}
.yad_c01326{bottom:584.250240px;}
.yac_c01326{bottom:585.076643px;}
.yab_c01326{bottom:585.903000px;}
.yaa_c01326{bottom:611.488143px;}
.ya9_c01326{bottom:616.755141px;}
.ya8_c01326{bottom:617.112330px;}
.ya7_c01326{bottom:618.435468px;}
.ya6_c01326{bottom:619.005108px;}
.ya5_c01326{bottom:619.936539px;}
.ya4_c01326{bottom:620.511039px;}
.ya3_c01326{bottom:622.342476px;}
.ya2_c01326{bottom:645.910722px;}
.ya1_c01326{bottom:647.096373px;}
.ya0_c01326{bottom:647.932158px;}
.y9f_c01326{bottom:648.481392px;}
.y9e_c01326{bottom:649.880721px;}
.y9d_c01326{bottom:650.857419px;}
.y9c_c01326{bottom:652.665042px;}
.y9b_c01326{bottom:653.500827px;}
.y9a_c01326{bottom:654.618438px;}
.y99_c01326{bottom:656.285148px;}
.y98_c01326{bottom:656.841510px;}
.y97_c01326{bottom:657.470799px;}
.y96_c01326{bottom:680.696856px;}
.y95_c01326{bottom:681.708006px;}
.y94_c01326{bottom:682.490871px;}
.y93_c01326{bottom:683.919657px;}
.y92_c01326{bottom:684.657567px;}
.y91_c01326{bottom:686.267442px;}
.y90_c01326{bottom:686.840733px;}
.y8f_c01326{bottom:687.462894px;}
.y8e_c01326{bottom:688.872591px;}
.y8d_c01326{bottom:689.854500px;}
.y8c_c01326{bottom:719.574391px;}
.y8b_c01326{bottom:720.483390px;}
.y8a_c01326{bottom:721.070833px;}
.y89_c01326{bottom:722.011962px;}
.y88_c01326{bottom:722.764212px;}
.y87_c01326{bottom:724.821552px;}
.y86_c01326{bottom:726.309426px;}
.y85_c01326{bottom:749.117560px;}
.y84_c01326{bottom:750.330189px;}
.y83_c01326{bottom:750.823303px;}
.y82_c01326{bottom:751.237330px;}
.y81_c01326{bottom:752.877063px;}
.y80_c01326{bottom:753.483099px;}
.y7f_c01326{bottom:755.462693px;}
.y7e_c01326{bottom:757.000698px;}
.y7d_c01326{bottom:757.668711px;}
.y7c_c01326{bottom:759.008562px;}
.y7b_c01326{bottom:759.630480px;}
.y7a_c01326{bottom:760.388393px;}
.y79_c01326{bottom:761.610481px;}
.y78_c01326{bottom:762.327496px;}
.y77_c01326{bottom:785.754001px;}
.y76_c01326{bottom:786.950941px;}
.y75_c01326{bottom:788.199273px;}
.y74_c01326{bottom:788.743036px;}
.y73_c01326{bottom:789.286800px;}
.y72_c01326{bottom:791.026840px;}
.y71_c01326{bottom:792.111277px;}
.y70_c01326{bottom:792.984330px;}
.y6f_c01326{bottom:793.688898px;}
.y6e_c01326{bottom:795.485583px;}
.y6d_c01326{bottom:796.015036px;}
.y6c_c01326{bottom:796.514956px;}
.y6b_c01326{bottom:797.040279px;}
.y6a_c01326{bottom:822.765478px;}
.y69_c01326{bottom:823.751742px;}
.y68_c01326{bottom:824.702127px;}
.y67_c01326{bottom:826.391629px;}
.y66_c01326{bottom:827.323425px;}
.y65_c01326{bottom:828.447898px;}
.y64_c01326{bottom:829.021802px;}
.y63_c01326{bottom:831.643099px;}
.y62_c01326{bottom:832.414500px;}
.y61_c01326{bottom:863.455678px;}
.y60_c01326{bottom:864.180955px;}
.y5f_c01326{bottom:864.671118px;}
.y5e_c01326{bottom:864.897698px;}
.y5d_c01326{bottom:865.279841px;}
.y5c_c01326{bottom:866.489417px;}
.y5b_c01326{bottom:867.212955px;}
.y5a_c01326{bottom:893.972855px;}
.y59_c01326{bottom:894.739990px;}
.y58_c01326{bottom:895.825500px;}
.y57_c01326{bottom:896.616838px;}
.y56_c01326{bottom:897.220327px;}
.y55_c01326{bottom:897.529874px;}
.y54_c01326{bottom:898.602908px;}
.y53_c01326{bottom:899.851134px;}
.y52_c01326{bottom:900.929298px;}
.y51_c01326{bottom:901.707951px;}
.y50_c01326{bottom:902.488058px;}
.y4f_c01326{bottom:902.945230px;}
.y4e_c01326{bottom:903.401520px;}
.y4d_c01326{bottom:929.639747px;}
.y4c_c01326{bottom:931.146356px;}
.y4b_c01326{bottom:933.015494px;}
.y4a_c01326{bottom:933.575610px;}
.y49_c01326{bottom:934.512573px;}
.y48_c01326{bottom:935.462610px;}
.y47_c01326{bottom:936.030974px;}
.y46_c01326{bottom:937.146180px;}
.y45_c01326{bottom:937.707180px;}
.y44_c01326{bottom:938.006615px;}
.y43_c01326{bottom:938.648304px;}
.y42_c01326{bottom:940.132006px;}
.y41_c01326{bottom:963.254463px;}
.y40_c01326{bottom:964.746299px;}
.y3f_c01326{bottom:966.628168px;}
.y3e_c01326{bottom:967.179098px;}
.y3d_c01326{bottom:968.497221px;}
.y3c_c01326{bottom:969.079988px;}
.y3b_c01326{bottom:970.952670px;}
.y3a_c01326{bottom:971.879629px;}
.y39_c01326{bottom:973.807672px;}
.y38_c01326{bottom:974.697494px;}
.y37_c01326{bottom:997.476099px;}
.y36_c01326{bottom:998.714424px;}
.y35_c01326{bottom:999.370351px;}
.y34_c01326{bottom:1000.185879px;}
.y33_c01326{bottom:1002.706590px;}
.y32_c01326{bottom:1004.625068px;}
.y31_c01326{bottom:1005.271533px;}
.y30_c01326{bottom:1007.354712px;}
.y2f_c01326{bottom:1008.186000px;}
.y2e_c01326{bottom:1040.804058px;}
.y2d_c01326{bottom:1041.209004px;}
.y2c_c01326{bottom:1041.877299px;}
.y2b_c01326{bottom:1042.521264px;}
.y2a_c01326{bottom:1043.458560px;}
.y29_c01326{bottom:1044.910110px;}
.y28_c01326{bottom:1045.434633px;}
.y27_c01326{bottom:1071.118242px;}
.y26_c01326{bottom:1071.811092px;}
.y25_c01326{bottom:1072.527627px;}
.y24_c01326{bottom:1073.693187px;}
.y23_c01326{bottom:1074.275745px;}
.y22_c01326{bottom:1075.143165px;}
.y21_c01326{bottom:1075.996428px;}
.y20_c01326{bottom:1076.304987px;}
.y1f_c01326{bottom:1077.295398px;}
.y1e_c01326{bottom:1077.730038px;}
.y1d_c01326{bottom:1078.020243px;}
.y1c_c01326{bottom:1078.712136px;}
.y1b_c01326{bottom:1079.169138px;}
.y1a_c01326{bottom:1079.726487px;}
.y19_c01326{bottom:1105.013415px;}
.y18_c01326{bottom:1106.688036px;}
.y17_c01326{bottom:1107.294213px;}
.y16_c01326{bottom:1109.467146px;}
.y15_c01326{bottom:1110.682308px;}
.y14_c01326{bottom:1111.279197px;}
.y13_c01326{bottom:1113.277737px;}
.y12_c01326{bottom:1113.870900px;}
.y11_c01326{bottom:1115.647500px;}
.y10_c01326{bottom:1140.028500px;}
.yf_c01326{bottom:1141.015500px;}
.ye_c01326{bottom:1141.386000px;}
.yd_c01326{bottom:1141.758000px;}
.yc_c01326{bottom:1142.130000px;}
.yb_c01326{bottom:1144.009500px;}
.ya_c01326{bottom:1144.593000px;}
.y9_c01326{bottom:1145.529000px;}
.y8_c01326{bottom:1145.913000px;}
.y7_c01326{bottom:1147.213500px;}
.y6_c01326{bottom:1147.801500px;}
.y5_c01326{bottom:1149.097500px;}
.y4_c01326{bottom:1149.675000px;}
.y3_c01326{bottom:1150.978500px;}
.y2_c01326{bottom:1152.093000px;}
.y1_c01326{bottom:1200.417000px;}
.h13_c01326{height:60.011999px;}
.h3_c01326{height:72.000000px;}
.h6_c01326{height:72.011663px;}
.hf_c01326{height:72.014399px;}
.hb_c01326{height:78.011270px;}
.h5_c01326{height:78.012635px;}
.h7_c01326{height:78.014078px;}
.h12_c01326{height:78.015598px;}
.ha_c01326{height:84.012137px;}
.h4_c01326{height:84.013607px;}
.h9_c01326{height:84.015161px;}
.h10_c01326{height:84.016798px;}
.h14_c01326{height:90.016244px;}
.he_c01326{height:102.011474px;}
.hd_c01326{height:108.017495px;}
.hc_c01326{height:114.016472px;}
.h8_c01326{height:120.021658px;}
.h11_c01326{height:120.023998px;}
.h2_c01326{height:132.000000px;}
.h1_c01326{height:1250.250000px;}
.h0_c01326{height:1250.370000px;}
.w1_c01326{width:912.000000px;}
.w0_c01326{width:912.300000px;}
.x0_c01326{left:0.000000px;}
.x5b_c01326{left:173.787710px;}
.x9b_c01326{left:175.527840px;}
.x96_c01326{left:176.940030px;}
.x75_c01326{left:178.618146px;}
.x67_c01326{left:180.063893px;}
.x2e_c01326{left:182.824923px;}
.x3_c01326{left:186.084000px;}
.x97_c01326{left:197.934210px;}
.xaf_c01326{left:209.801220px;}
.x5c_c01326{left:213.582021px;}
.x42_c01326{left:215.250824px;}
.x1a_c01326{left:228.222651px;}
.x2f_c01326{left:235.185918px;}
.xa3_c01326{left:241.093020px;}
.x91_c01326{left:242.428950px;}
.x76_c01326{left:244.487646px;}
.x53_c01326{left:246.261171px;}
.x43_c01326{left:247.920930px;}
.x4_c01326{left:251.670000px;}
.x9c_c01326{left:253.029840px;}
.x1b_c01326{left:263.364810px;}
.x68_c01326{left:267.585893px;}
.x38_c01326{left:270.892517px;}
.xa4_c01326{left:274.015020px;}
.x92_c01326{left:277.120260px;}
.x54_c01326{left:279.347232px;}
.x5d_c01326{left:281.497874px;}
.xb0_c01326{left:283.228500px;}
.x98_c01326{left:285.418200px;}
.x7f_c01326{left:287.308290px;}
.x6c_c01326{left:288.642000px;}
.x4d_c01326{left:290.277000px;}
.x27_c01326{left:293.737500px;}
.xa9_c01326{left:297.829500px;}
.x44_c01326{left:303.589703px;}
.x39_c01326{left:308.614442px;}
.x1c_c01326{left:316.558089px;}
.x80_c01326{left:321.058884px;}
.x5e_c01326{left:323.609660px;}
.x3a_c01326{left:326.190597px;}
.x5_c01326{left:328.327500px;}
.x4e_c01326{left:335.653500px;}
.x28_c01326{left:337.489500px;}
.x1d_c01326{left:338.932614px;}
.x9d_c01326{left:340.470840px;}
.x6d_c01326{left:343.192500px;}
.x30_c01326{left:348.587222px;}
.x12_c01326{left:349.927500px;}
.x8d_c01326{left:353.445000px;}
.x49_c01326{left:357.896916px;}
.x3b_c01326{left:359.191851px;}
.x6_c01326{left:362.292000px;}
.x1e_c01326{left:372.415638px;}
.x81_c01326{left:375.889383px;}
.x13_c01326{left:382.881000px;}
.xa5_c01326{left:384.748020px;}
.x69_c01326{left:388.605893px;}
.x55_c01326{left:391.654145px;}
.x4a_c01326{left:392.699217px;}
.x86_c01326{left:397.797000px;}
.x77_c01326{left:399.172146px;}
.x31_c01326{left:403.139802px;}
.xaa_c01326{left:406.078500px;}
.x1_c01326{left:407.700000px;}
.x82_c01326{left:409.369977px;}
.x4b_c01326{left:413.232824px;}
.x93_c01326{left:418.775940px;}
.x6e_c01326{left:421.509000px;}
.x3c_c01326{left:424.757831px;}
.x25_c01326{left:428.120949px;}
.x5f_c01326{left:432.564798px;}
.x45_c01326{left:436.145271px;}
.x7_c01326{left:438.483000px;}
.xab_c01326{left:439.552500px;}
.x2_c01326{left:440.910000px;}
.x78_c01326{left:445.604646px;}
.x29_c01326{left:447.130500px;}
.x1f_c01326{left:448.611996px;}
.x9e_c01326{left:450.381840px;}
.x94_c01326{left:451.719780px;}
.x6f_c01326{left:456.073500px;}
.x3d_c01326{left:458.225613px;}
.xb3_c01326{left:460.445692px;}
.x87_c01326{left:463.965000px;}
.x60_c01326{left:469.653161px;}
.x8_c01326{left:473.037000px;}
.x26_c01326{left:481.819254px;}
.x9f_c01326{left:483.606840px;}
.x83_c01326{left:487.212381px;}
.x6a_c01326{left:488.216393px;}
.x4f_c01326{left:489.847500px;}
.x14_c01326{left:493.911000px;}
.x8e_c01326{left:496.576500px;}
.xa6_c01326{left:505.798020px;}
.x95_c01326{left:506.803170px;}
.x84_c01326{left:508.223259px;}
.x32_c01326{left:513.311492px;}
.x4c_c01326{left:523.720110px;}
.x46_c01326{left:525.297236px;}
.x15_c01326{left:527.071500px;}
.x8f_c01326{left:529.531500px;}
.x20_c01326{left:537.999042px;}
.x99_c01326{left:539.831040px;}
.x79_c01326{left:546.028146px;}
.x33_c01326{left:547.616303px;}
.x9_c01326{left:549.511500px;}
.x88_c01326{left:551.995500px;}
.x61_c01326{left:555.093207px;}
.x56_c01326{left:557.954450px;}
.xb4_c01326{left:559.255599px;}
.xac_c01326{left:564.268500px;}
.x3e_c01326{left:569.229831px;}
.xa_c01326{left:572.143500px;}
.x6b_c01326{left:576.242393px;}
.x70_c01326{left:577.360500px;}
.x2a_c01326{left:582.127500px;}
.x89_c01326{left:586.273500px;}
.x50_c01326{left:589.752000px;}
.x16_c01326{left:594.580500px;}
.x7a_c01326{left:600.289146px;}
.x3f_c01326{left:602.184585px;}
.x21_c01326{left:604.695036px;}
.xb5_c01326{left:613.549495px;}
.x71_c01326{left:618.355500px;}
.x34_c01326{left:625.125738px;}
.xb_c01326{left:627.226500px;}
.xad_c01326{left:629.212500px;}
.xa0_c01326{left:639.371340px;}
.x51_c01326{left:644.563500px;}
.xb6_c01326{left:647.847891px;}
.x22_c01326{left:649.480059px;}
.x8a_c01326{left:651.082500px;}
.x35_c01326{left:657.517964px;}
.xa7_c01326{left:659.257020px;}
.xc_c01326{left:661.506000px;}
.x62_c01326{left:665.096846px;}
.x47_c01326{left:667.261745px;}
.x7b_c01326{left:678.029646px;}
.xa1_c01326{left:694.218840px;}
.x8b_c01326{left:695.913000px;}
.x72_c01326{left:697.732500px;}
.x63_c01326{left:698.804285px;}
.x57_c01326{left:700.768898px;}
.xb7_c01326{left:703.183358px;}
.x7c_c01326{left:708.542646px;}
.x40_c01326{left:712.090746px;}
.x17_c01326{left:715.299000px;}
.x9a_c01326{left:716.987730px;}
.x48_c01326{left:723.758603px;}
.x58_c01326{left:734.784984px;}
.x23_c01326{left:739.158132px;}
.x73_c01326{left:741.225000px;}
.x52_c01326{left:743.946000px;}
.x18_c01326{left:748.975500px;}
.x7d_c01326{left:754.975146px;}
.x2b_c01326{left:757.719000px;}
.x36_c01326{left:768.252182px;}
.xd_c01326{left:772.047000px;}
.x90_c01326{left:784.252500px;}
.x8c_c01326{left:787.707000px;}
.x64_c01326{left:789.875229px;}
.xb1_c01326{left:791.211000px;}
.x2c_c01326{left:792.241500px;}
.xe_c01326{left:793.924500px;}
.x74_c01326{left:797.400000px;}
.x41_c01326{left:800.705109px;}
.xb8_c01326{left:803.626176px;}
.xae_c01326{left:804.910500px;}
.x59_c01326{left:812.805810px;}
.xf_c01326{left:815.793000px;}
.x85_c01326{left:818.089848px;}
.x7e_c01326{left:820.844646px;}
.xb2_c01326{left:823.888500px;}
.xa8_c01326{left:826.310520px;}
.xa2_c01326{left:828.267840px;}
.x10_c01326{left:837.577500px;}
.x65_c01326{left:840.323888px;}
.x19_c01326{left:842.010000px;}
.xb9_c01326{left:843.537650px;}
.x24_c01326{left:847.550379px;}
.x37_c01326{left:856.010016px;}
.x2d_c01326{left:857.416500px;}
.x5a_c01326{left:887.627085px;}
.x11_c01326{left:895.620000px;}
.x66_c01326{left:907.683240px;}
@media print{
.v0_c01326{vertical-align:0.000000pt;}
.ls0_c01326{letter-spacing:0.000000pt;}
.ws0_c01326{word-spacing:0.000000pt;}
.fs11_c01326{font-size:53.343999pt;}
.fs1_c01326{font-size:64.000000pt;}
.fs4_c01326{font-size:64.010367pt;}
.fsd_c01326{font-size:64.012799pt;}
.fs9_c01326{font-size:69.343351pt;}
.fs3_c01326{font-size:69.344564pt;}
.fs5_c01326{font-size:69.345847pt;}
.fs10_c01326{font-size:69.347199pt;}
.fs8_c01326{font-size:74.677455pt;}
.fs2_c01326{font-size:74.678762pt;}
.fs7_c01326{font-size:74.680143pt;}
.fse_c01326{font-size:74.681599pt;}
.fs12_c01326{font-size:80.014439pt;}
.fsc_c01326{font-size:90.676866pt;}
.fsb_c01326{font-size:96.015551pt;}
.fsa_c01326{font-size:101.347975pt;}
.fs6_c01326{font-size:106.685918pt;}
.fsf_c01326{font-size:106.687998pt;}
.fs0_c01326{font-size:117.333333pt;}
.y0_c01326{bottom:0.000000pt;}
.yff_c01326{bottom:235.432103pt;}
.y100_c01326{bottom:236.685075pt;}
.y101_c01326{bottom:236.986819pt;}
.y102_c01326{bottom:237.278980pt;}
.y103_c01326{bottom:237.768623pt;}
.y104_c01326{bottom:237.967704pt;}
.y105_c01326{bottom:238.258357pt;}
.y106_c01326{bottom:238.548361pt;}
.y107_c01326{bottom:238.845167pt;}
.y108_c01326{bottom:239.327375pt;}
.y109_c01326{bottom:239.632432pt;}
.y10a_c01326{bottom:240.123725pt;}
.y10b_c01326{bottom:241.016292pt;}
.y10c_c01326{bottom:241.030940pt;}
.y10d_c01326{bottom:241.370603pt;}
.yfe_c01326{bottom:259.432853pt;}
.yfd_c01326{bottom:259.984740pt;}
.yfc_c01326{bottom:262.784808pt;}
.yfb_c01326{bottom:264.805699pt;}
.yfa_c01326{bottom:265.973185pt;}
.yf9_c01326{bottom:267.998231pt;}
.yf8_c01326{bottom:268.564000pt;}
.yf6_c01326{bottom:299.239813pt;}
.yf7_c01326{bottom:299.239947pt;}
.yf5_c01326{bottom:320.240853pt;}
.yf4_c01326{bottom:321.228693pt;}
.yf3_c01326{bottom:322.992827pt;}
.yf2_c01326{bottom:323.364373pt;}
.yf1_c01326{bottom:324.518933pt;}
.yf0_c01326{bottom:325.122560pt;}
.yef_c01326{bottom:325.507067pt;}
.yee_c01326{bottom:326.736107pt;}
.yed_c01326{bottom:327.331200pt;}
.yec_c01326{bottom:329.255627pt;}
.yeb_c01326{bottom:330.249040pt;}
.yea_c01326{bottom:331.468000pt;}
.ye9_c01326{bottom:352.025547pt;}
.ye8_c01326{bottom:352.592320pt;}
.ye7_c01326{bottom:354.995387pt;}
.ye6_c01326{bottom:357.129227pt;}
.ye5_c01326{bottom:357.723547pt;}
.ye4_c01326{bottom:359.088400pt;}
.ye3_c01326{bottom:359.875547pt;}
.ye2_c01326{bottom:360.273013pt;}
.ye1_c01326{bottom:361.844133pt;}
.ye0_c01326{bottom:362.429413pt;}
.ydf_c01326{bottom:363.581573pt;}
.yde_c01326{bottom:383.662080pt;}
.ydd_c01326{bottom:384.675147pt;}
.ydc_c01326{bottom:386.045173pt;}
.ydb_c01326{bottom:386.631040pt;}
.yda_c01326{bottom:387.020240pt;}
.yd9_c01326{bottom:388.205307pt;}
.yd8_c01326{bottom:388.780427pt;}
.yd7_c01326{bottom:389.789387pt;}
.yd6_c01326{bottom:390.380053pt;}
.yd5_c01326{bottom:392.334027pt;}
.yd4_c01326{bottom:393.298933pt;}
.yd3_c01326{bottom:393.888533pt;}
.yd2_c01326{bottom:395.266347pt;}
.yd1_c01326{bottom:417.615600pt;}
.yd0_c01326{bottom:418.070693pt;}
.ycf_c01326{bottom:419.022720pt;}
.yce_c01326{bottom:420.589227pt;}
.ycd_c01326{bottom:421.054027pt;}
.ycc_c01326{bottom:422.481253pt;}
.ycb_c01326{bottom:424.207760pt;}
.yca_c01326{bottom:424.675947pt;}
.yc9_c01326{bottom:425.452240pt;}
.yc8_c01326{bottom:425.750773pt;}
.yc7_c01326{bottom:447.260507pt;}
.yc6_c01326{bottom:448.512213pt;}
.yc5_c01326{bottom:450.063813pt;}
.yc4_c01326{bottom:450.662773pt;}
.yc3_c01326{bottom:452.750347pt;}
.yc2_c01326{bottom:453.778960pt;}
.yc1_c01326{bottom:454.393973pt;}
.yc0_c01326{bottom:457.037680pt;}
.ybf_c01326{bottom:457.685093pt;}
.ybe_c01326{bottom:458.879973pt;}
.ybd_c01326{bottom:479.023653pt;}
.ybc_c01326{bottom:480.045467pt;}
.ybb_c01326{bottom:481.627227pt;}
.yba_c01326{bottom:483.580533pt;}
.yb9_c01326{bottom:484.573840pt;}
.yb8_c01326{bottom:485.159707pt;}
.yb7_c01326{bottom:487.704267pt;}
.yb6_c01326{bottom:488.295040pt;}
.yb5_c01326{bottom:488.885333pt;}
.yb4_c01326{bottom:514.134747pt;}
.yb3_c01326{bottom:515.358667pt;}
.yb2_c01326{bottom:515.956407pt;}
.yb1_c01326{bottom:516.820527pt;}
.yb0_c01326{bottom:517.277567pt;}
.yaf_c01326{bottom:518.451307pt;}
.yae_c01326{bottom:518.876227pt;}
.yad_c01326{bottom:519.333547pt;}
.yac_c01326{bottom:520.068127pt;}
.yab_c01326{bottom:520.802667pt;}
.yaa_c01326{bottom:543.545016pt;}
.ya9_c01326{bottom:548.226792pt;}
.ya8_c01326{bottom:548.544293pt;}
.ya7_c01326{bottom:549.720416pt;}
.ya6_c01326{bottom:550.226763pt;}
.ya5_c01326{bottom:551.054701pt;}
.ya4_c01326{bottom:551.565368pt;}
.ya3_c01326{bottom:553.193312pt;}
.ya2_c01326{bottom:574.142864pt;}
.ya1_c01326{bottom:575.196776pt;}
.ya0_c01326{bottom:575.939696pt;}
.y9f_c01326{bottom:576.427904pt;}
.y9e_c01326{bottom:577.671752pt;}
.y9d_c01326{bottom:578.539928pt;}
.y9c_c01326{bottom:580.146704pt;}
.y9b_c01326{bottom:580.889624pt;}
.y9a_c01326{bottom:581.883056pt;}
.y99_c01326{bottom:583.364576pt;}
.y98_c01326{bottom:583.859120pt;}
.y97_c01326{bottom:584.418488pt;}
.y96_c01326{bottom:605.063872pt;}
.y95_c01326{bottom:605.962672pt;}
.y94_c01326{bottom:606.658552pt;}
.y93_c01326{bottom:607.928584pt;}
.y92_c01326{bottom:608.584504pt;}
.y91_c01326{bottom:610.015504pt;}
.y90_c01326{bottom:610.525096pt;}
.y8f_c01326{bottom:611.078128pt;}
.y8e_c01326{bottom:612.331192pt;}
.y8d_c01326{bottom:613.204000pt;}
.y8c_c01326{bottom:639.621681pt;}
.y8b_c01326{bottom:640.429680pt;}
.y8a_c01326{bottom:640.951852pt;}
.y89_c01326{bottom:641.788411pt;}
.y88_c01326{bottom:642.457077pt;}
.y87_c01326{bottom:644.285824pt;}
.y86_c01326{bottom:645.608379pt;}
.y85_c01326{bottom:665.882276pt;}
.y84_c01326{bottom:666.960168pt;}
.y83_c01326{bottom:667.398492pt;}
.y82_c01326{bottom:667.766516pt;}
.y81_c01326{bottom:669.224056pt;}
.y80_c01326{bottom:669.762755pt;}
.y7f_c01326{bottom:671.522393pt;}
.y7e_c01326{bottom:672.889509pt;}
.y7d_c01326{bottom:673.483299pt;}
.y7c_c01326{bottom:674.674277pt;}
.y7b_c01326{bottom:675.227093pt;}
.y7a_c01326{bottom:675.900793pt;}
.y79_c01326{bottom:676.987095pt;}
.y78_c01326{bottom:677.624441pt;}
.y77_c01326{bottom:698.448001pt;}
.y76_c01326{bottom:699.511948pt;}
.y75_c01326{bottom:700.621576pt;}
.y74_c01326{bottom:701.104921pt;}
.y73_c01326{bottom:701.588267pt;}
.y72_c01326{bottom:703.134969pt;}
.y71_c01326{bottom:704.098913pt;}
.y70_c01326{bottom:704.874960pt;}
.y6f_c01326{bottom:705.501243pt;}
.y6e_c01326{bottom:707.098296pt;}
.y6d_c01326{bottom:707.568921pt;}
.y6c_c01326{bottom:708.013295pt;}
.y6b_c01326{bottom:708.480248pt;}
.y6a_c01326{bottom:731.347092pt;}
.y69_c01326{bottom:732.223771pt;}
.y68_c01326{bottom:733.068557pt;}
.y67_c01326{bottom:734.570337pt;}
.y66_c01326{bottom:735.398600pt;}
.y65_c01326{bottom:736.398132pt;}
.y64_c01326{bottom:736.908268pt;}
.y63_c01326{bottom:739.238311pt;}
.y62_c01326{bottom:739.924000pt;}
.y61_c01326{bottom:767.516159pt;}
.y60_c01326{bottom:768.160849pt;}
.y5f_c01326{bottom:768.596549pt;}
.y5e_c01326{bottom:768.797953pt;}
.y5d_c01326{bottom:769.137636pt;}
.y5c_c01326{bottom:770.212815pt;}
.y5b_c01326{bottom:770.855960pt;}
.y5a_c01326{bottom:794.642537pt;}
.y59_c01326{bottom:795.324436pt;}
.y58_c01326{bottom:796.289333pt;}
.y57_c01326{bottom:796.992745pt;}
.y56_c01326{bottom:797.529180pt;}
.y55_c01326{bottom:797.804332pt;}
.y54_c01326{bottom:798.758140pt;}
.y53_c01326{bottom:799.867675pt;}
.y52_c01326{bottom:800.826043pt;}
.y51_c01326{bottom:801.518179pt;}
.y50_c01326{bottom:802.211607pt;}
.y4f_c01326{bottom:802.617983pt;}
.y4e_c01326{bottom:803.023573pt;}
.y4d_c01326{bottom:826.346441pt;}
.y4c_c01326{bottom:827.685649pt;}
.y4b_c01326{bottom:829.347105pt;}
.y4a_c01326{bottom:829.844987pt;}
.y49_c01326{bottom:830.677843pt;}
.y48_c01326{bottom:831.522320pt;}
.y47_c01326{bottom:832.027532pt;}
.y46_c01326{bottom:833.018827pt;}
.y45_c01326{bottom:833.517493pt;}
.y44_c01326{bottom:833.783657pt;}
.y43_c01326{bottom:834.354048pt;}
.y42_c01326{bottom:835.672895pt;}
.y41_c01326{bottom:856.226189pt;}
.y40_c01326{bottom:857.552265pt;}
.y3f_c01326{bottom:859.225039pt;}
.y3e_c01326{bottom:859.714753pt;}
.y3d_c01326{bottom:860.886419pt;}
.y3c_c01326{bottom:861.404433pt;}
.y3b_c01326{bottom:863.069040pt;}
.y3a_c01326{bottom:863.893004pt;}
.y39_c01326{bottom:865.606820pt;}
.y38_c01326{bottom:866.397772pt;}
.y37_c01326{bottom:886.645421pt;}
.y36_c01326{bottom:887.746155pt;}
.y35_c01326{bottom:888.329201pt;}
.y34_c01326{bottom:889.054115pt;}
.y33_c01326{bottom:891.294747pt;}
.y32_c01326{bottom:893.000060pt;}
.y31_c01326{bottom:893.574696pt;}
.y30_c01326{bottom:895.426411pt;}
.y2f_c01326{bottom:896.165333pt;}
.y2e_c01326{bottom:925.159163pt;}
.y2d_c01326{bottom:925.519115pt;}
.y2c_c01326{bottom:926.113155pt;}
.y2b_c01326{bottom:926.685568pt;}
.y2a_c01326{bottom:927.518720pt;}
.y29_c01326{bottom:928.808987pt;}
.y28_c01326{bottom:929.275229pt;}
.y27_c01326{bottom:952.105104pt;}
.y26_c01326{bottom:952.720971pt;}
.y25_c01326{bottom:953.357891pt;}
.y24_c01326{bottom:954.393944pt;}
.y23_c01326{bottom:954.911773pt;}
.y22_c01326{bottom:955.682813pt;}
.y21_c01326{bottom:956.441269pt;}
.y20_c01326{bottom:956.715544pt;}
.y1f_c01326{bottom:957.595909pt;}
.y1e_c01326{bottom:957.982256pt;}
.y1d_c01326{bottom:958.240216pt;}
.y1c_c01326{bottom:958.855232pt;}
.y1b_c01326{bottom:959.261456pt;}
.y1a_c01326{bottom:959.756877pt;}
.y19_c01326{bottom:982.234147pt;}
.y18_c01326{bottom:983.722699pt;}
.y17_c01326{bottom:984.261523pt;}
.y16_c01326{bottom:986.193019pt;}
.y15_c01326{bottom:987.273163pt;}
.y14_c01326{bottom:987.803731pt;}
.y13_c01326{bottom:989.580211pt;}
.y12_c01326{bottom:990.107467pt;}
.y11_c01326{bottom:991.686667pt;}
.y10_c01326{bottom:1013.358667pt;}
.yf_c01326{bottom:1014.236000pt;}
.ye_c01326{bottom:1014.565333pt;}
.yd_c01326{bottom:1014.896000pt;}
.yc_c01326{bottom:1015.226667pt;}
.yb_c01326{bottom:1016.897333pt;}
.ya_c01326{bottom:1017.416000pt;}
.y9_c01326{bottom:1018.248000pt;}
.y8_c01326{bottom:1018.589333pt;}
.y7_c01326{bottom:1019.745333pt;}
.y6_c01326{bottom:1020.268000pt;}
.y5_c01326{bottom:1021.420000pt;}
.y4_c01326{bottom:1021.933333pt;}
.y3_c01326{bottom:1023.092000pt;}
.y2_c01326{bottom:1024.082667pt;}
.y1_c01326{bottom:1067.037333pt;}
.h13_c01326{height:53.343999pt;}
.h3_c01326{height:64.000000pt;}
.h6_c01326{height:64.010367pt;}
.hf_c01326{height:64.012799pt;}
.hb_c01326{height:69.343351pt;}
.h5_c01326{height:69.344564pt;}
.h7_c01326{height:69.345847pt;}
.h12_c01326{height:69.347199pt;}
.ha_c01326{height:74.677455pt;}
.h4_c01326{height:74.678762pt;}
.h9_c01326{height:74.680143pt;}
.h10_c01326{height:74.681599pt;}
.h14_c01326{height:80.014439pt;}
.he_c01326{height:90.676866pt;}
.hd_c01326{height:96.015551pt;}
.hc_c01326{height:101.347975pt;}
.h8_c01326{height:106.685918pt;}
.h11_c01326{height:106.687998pt;}
.h2_c01326{height:117.333333pt;}
.h1_c01326{height:1111.333333pt;}
.h0_c01326{height:1111.440000pt;}
.w1_c01326{width:810.666667pt;}
.w0_c01326{width:810.933333pt;}
.x0_c01326{left:0.000000pt;}
.x5b_c01326{left:154.477964pt;}
.x9b_c01326{left:156.024747pt;}
.x96_c01326{left:157.280027pt;}
.x75_c01326{left:158.771685pt;}
.x67_c01326{left:160.056793pt;}
.x2e_c01326{left:162.511043pt;}
.x3_c01326{left:165.408000pt;}
.x97_c01326{left:175.941520pt;}
.xaf_c01326{left:186.489973pt;}
.x5c_c01326{left:189.850685pt;}
.x42_c01326{left:191.334065pt;}
.x1a_c01326{left:202.864579pt;}
.x2f_c01326{left:209.054149pt;}
.xa3_c01326{left:214.304907pt;}
.x91_c01326{left:215.492400pt;}
.x76_c01326{left:217.322352pt;}
.x53_c01326{left:218.898819pt;}
.x43_c01326{left:220.374160pt;}
.x4_c01326{left:223.706667pt;}
.x9c_c01326{left:224.915413pt;}
.x1b_c01326{left:234.102053pt;}
.x68_c01326{left:237.854127pt;}
.x38_c01326{left:240.793348pt;}
.xa4_c01326{left:243.568907pt;}
.x92_c01326{left:246.329120pt;}
.x54_c01326{left:248.308651pt;}
.x5d_c01326{left:250.220332pt;}
.xb0_c01326{left:251.758667pt;}
.x98_c01326{left:253.705067pt;}
.x7f_c01326{left:255.385147pt;}
.x6c_c01326{left:256.570667pt;}
.x4d_c01326{left:258.024000pt;}
.x27_c01326{left:261.100000pt;}
.xa9_c01326{left:264.737333pt;}
.x44_c01326{left:269.857513pt;}
.x39_c01326{left:274.323948pt;}
.x1c_c01326{left:281.384968pt;}
.x80_c01326{left:285.385675pt;}
.x5e_c01326{left:287.653031pt;}
.x3a_c01326{left:289.947197pt;}
.x5_c01326{left:291.846667pt;}
.x4e_c01326{left:298.358667pt;}
.x28_c01326{left:299.990667pt;}
.x1d_c01326{left:301.273435pt;}
.x9d_c01326{left:302.640747pt;}
.x6d_c01326{left:305.060000pt;}
.x30_c01326{left:309.855308pt;}
.x12_c01326{left:311.046667pt;}
.x8d_c01326{left:314.173333pt;}
.x49_c01326{left:318.130592pt;}
.x3b_c01326{left:319.281645pt;}
.x6_c01326{left:322.037333pt;}
.x1e_c01326{left:331.036123pt;}
.x81_c01326{left:334.123896pt;}
.x13_c01326{left:340.338667pt;}
.xa5_c01326{left:341.998240pt;}
.x69_c01326{left:345.427460pt;}
.x55_c01326{left:348.137017pt;}
.x4a_c01326{left:349.065971pt;}
.x86_c01326{left:353.597333pt;}
.x77_c01326{left:354.819685pt;}
.x31_c01326{left:358.346491pt;}
.xaa_c01326{left:360.958667pt;}
.x1_c01326{left:362.400000pt;}
.x82_c01326{left:363.884424pt;}
.x4b_c01326{left:367.318065pt;}
.x93_c01326{left:372.245280pt;}
.x6e_c01326{left:374.674667pt;}
.x3c_c01326{left:377.562516pt;}
.x25_c01326{left:380.551955pt;}
.x5f_c01326{left:384.502043pt;}
.x45_c01326{left:387.684685pt;}
.x7_c01326{left:389.762667pt;}
.xab_c01326{left:390.713333pt;}
.x2_c01326{left:391.920000pt;}
.x78_c01326{left:396.093019pt;}
.x29_c01326{left:397.449333pt;}
.x1f_c01326{left:398.766219pt;}
.x9e_c01326{left:400.339413pt;}
.x94_c01326{left:401.528693pt;}
.x6f_c01326{left:405.398667pt;}
.x3d_c01326{left:407.311656pt;}
.xb3_c01326{left:409.285060pt;}
.x87_c01326{left:412.413333pt;}
.x60_c01326{left:417.469476pt;}
.x8_c01326{left:420.477333pt;}
.x26_c01326{left:428.283781pt;}
.x9f_c01326{left:429.872747pt;}
.x83_c01326{left:433.077672pt;}
.x6a_c01326{left:433.970127pt;}
.x4f_c01326{left:435.420000pt;}
.x14_c01326{left:439.032000pt;}
.x8e_c01326{left:441.401333pt;}
.xa6_c01326{left:449.598240pt;}
.x95_c01326{left:450.491707pt;}
.x84_c01326{left:451.754008pt;}
.x32_c01326{left:456.276881pt;}
.x4c_c01326{left:465.528987pt;}
.x46_c01326{left:466.930876pt;}
.x15_c01326{left:468.508000pt;}
.x8f_c01326{left:470.694667pt;}
.x20_c01326{left:478.221371pt;}
.x99_c01326{left:479.849813pt;}
.x79_c01326{left:485.358352pt;}
.x33_c01326{left:486.770047pt;}
.x9_c01326{left:488.454667pt;}
.x88_c01326{left:490.662667pt;}
.x61_c01326{left:493.416184pt;}
.x56_c01326{left:495.959511pt;}
.xb4_c01326{left:497.116088pt;}
.xac_c01326{left:501.572000pt;}
.x3e_c01326{left:505.982072pt;}
.xa_c01326{left:508.572000pt;}
.x6b_c01326{left:512.215460pt;}
.x70_c01326{left:513.209333pt;}
.x2a_c01326{left:517.446667pt;}
.x89_c01326{left:521.132000pt;}
.x50_c01326{left:524.224000pt;}
.x16_c01326{left:528.516000pt;}
.x7a_c01326{left:533.590352pt;}
.x3f_c01326{left:535.275187pt;}
.x21_c01326{left:537.506699pt;}
.xb5_c01326{left:545.377329pt;}
.x71_c01326{left:549.649333pt;}
.x34_c01326{left:555.667323pt;}
.xb_c01326{left:557.534667pt;}
.xad_c01326{left:559.300000pt;}
.xa0_c01326{left:568.330080pt;}
.x51_c01326{left:572.945333pt;}
.xb6_c01326{left:575.864792pt;}
.x22_c01326{left:577.315608pt;}
.x8a_c01326{left:578.740000pt;}
.x35_c01326{left:584.460412pt;}
.xa7_c01326{left:586.006240pt;}
.xc_c01326{left:588.005333pt;}
.x62_c01326{left:591.197196pt;}
.x47_c01326{left:593.121551pt;}
.x7b_c01326{left:602.693019pt;}
.xa1_c01326{left:617.083413pt;}
.x8b_c01326{left:618.589333pt;}
.x72_c01326{left:620.206667pt;}
.x63_c01326{left:621.159364pt;}
.x57_c01326{left:622.905687pt;}
.xb7_c01326{left:625.051873pt;}
.x7c_c01326{left:629.815685pt;}
.x40_c01326{left:632.969552pt;}
.x17_c01326{left:635.821333pt;}
.x9a_c01326{left:637.322427pt;}
.x48_c01326{left:643.340980pt;}
.x58_c01326{left:653.142208pt;}
.x23_c01326{left:657.029451pt;}
.x73_c01326{left:658.866667pt;}
.x52_c01326{left:661.285333pt;}
.x18_c01326{left:665.756000pt;}
.x7d_c01326{left:671.089019pt;}
.x2b_c01326{left:673.528000pt;}
.x36_c01326{left:682.890828pt;}
.xd_c01326{left:686.264000pt;}
.x90_c01326{left:697.113333pt;}
.x8c_c01326{left:700.184000pt;}
.x64_c01326{left:702.111315pt;}
.xb1_c01326{left:703.298667pt;}
.x2c_c01326{left:704.214667pt;}
.xe_c01326{left:705.710667pt;}
.x74_c01326{left:708.800000pt;}
.x41_c01326{left:711.737875pt;}
.xb8_c01326{left:714.334379pt;}
.xae_c01326{left:715.476000pt;}
.x59_c01326{left:722.494053pt;}
.xf_c01326{left:725.149333pt;}
.x85_c01326{left:727.190976pt;}
.x7e_c01326{left:729.639685pt;}
.xb2_c01326{left:732.345333pt;}
.xa8_c01326{left:734.498240pt;}
.xa2_c01326{left:736.238080pt;}
.x10_c01326{left:744.513333pt;}
.x65_c01326{left:746.954567pt;}
.x19_c01326{left:748.453333pt;}
.xb9_c01326{left:749.811244pt;}
.x24_c01326{left:753.378115pt;}
.x37_c01326{left:760.897792pt;}
.x2d_c01326{left:762.148000pt;}
.x5a_c01326{left:789.001853pt;}
.x11_c01326{left:796.106667pt;}
.x66_c01326{left:806.829547pt;}
}





/* 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_c01327 {
    display:none;
  }
  .loading-indicator_c01327.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01327 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_c01327 { 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_c01327" -> "#page-container .classname_c01327")
 */
.pf_c01327 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01327 { /* 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_c01327.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01327 { /* 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_c01327 { /* 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_c01327 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01327 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01327 {overflow:visible;}
  }
}
.c_c01327 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01327 { /* 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_c01327:after { /* webkit #35443 */
  content: '';
}
.t_c01327:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01327 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 */
}
.__c01327 { /* 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_c01327 { /* info for Javascript */
  display:none;
}
.l_c01327 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01327 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01327 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01327: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_c01327 {
    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_c01327.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01327.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_c01327 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01327{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01327;src:url('chunks/assets/font_92c2ce697e81753e6fafbc78.woff2')format("woff");}.ff1_c01327{font-family:ff1_c01327;line-height:1.000000;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;}
.m1_c01327{transform:matrix(0.022684,0.708172,-0.249872,0.008004,0,0);-ms-transform:matrix(0.022684,0.708172,-0.249872,0.008004,0,0);-webkit-transform:matrix(0.022684,0.708172,-0.249872,0.008004,0,0);}
.m0_c01327{transform:matrix(0.161555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161555,0.000000,0.000000,0.250000,0,0);}
.m4_c01327{transform:matrix(0.233794,-0.015461,0.016497,0.249455,0,0);-ms-transform:matrix(0.233794,-0.015461,0.016497,0.249455,0,0);-webkit-transform:matrix(0.233794,-0.015461,0.016497,0.249455,0,0);}
.m2_c01327{transform:matrix(0.267555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267555,0.000000,0.000000,0.250000,0,0);}
.m5_c01327{transform:matrix(0.275855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275855,0.000000,0.000000,0.250000,0,0);}
.m3_c01327{transform:matrix(0.565799,-0.037418,0.016497,0.249455,0,0);-ms-transform:matrix(0.565799,-0.037418,0.016497,0.249455,0,0);-webkit-transform:matrix(0.565799,-0.037418,0.016497,0.249455,0,0);}
.v0_c01327{vertical-align:0.000000px;}
.ls0_c01327{letter-spacing:0.000000px;}
.sc__c01327{text-shadow:none;}
.sc0_c01327{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__c01327{-webkit-text-stroke:0px transparent;}
.sc0_c01327{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01327{word-spacing:0.000000px;}
.fc0_c01327{color:transparent;}
.fs0_c01327{font-size:18.000000px;}
.fs4_c01327{font-size:48.000000px;}
.fs2_c01327{font-size:60.000000px;}
.fs1_c01327{font-size:77.961966px;}
.fs3_c01327{font-size:84.015119px;}
.y0_c01327{bottom:0.000000px;}
.y4_c01327{bottom:652.936500px;}
.y6_c01327{bottom:654.343500px;}
.y5_c01327{bottom:656.586333px;}
.y3_c01327{bottom:657.990000px;}
.y2_c01327{bottom:672.054000px;}
.y1_c01327{bottom:680.400000px;}
.h2_c01327{height:18.000000px;}
.h6_c01327{height:48.000000px;}
.h4_c01327{height:60.000000px;}
.h3_c01327{height:77.961966px;}
.h5_c01327{height:84.015119px;}
.h1_c01327{height:1250.250000px;}
.h0_c01327{height:1250.370000px;}
.w1_c01327{width:912.000000px;}
.w0_c01327{width:912.300000px;}
.x0_c01327{left:0.000000px;}
.x1_c01327{left:539.460000px;}
.x2_c01327{left:576.937500px;}
.x6_c01327{left:582.660000px;}
.x4_c01327{left:625.123500px;}
.x5_c01327{left:680.313399px;}
.x3_c01327{left:711.990000px;}
@media print{
.v0_c01327{vertical-align:0.000000pt;}
.ls0_c01327{letter-spacing:0.000000pt;}
.ws0_c01327{word-spacing:0.000000pt;}
.fs0_c01327{font-size:16.000000pt;}
.fs4_c01327{font-size:42.666667pt;}
.fs2_c01327{font-size:53.333333pt;}
.fs1_c01327{font-size:69.299525pt;}
.fs3_c01327{font-size:74.680105pt;}
.y0_c01327{bottom:0.000000pt;}
.y4_c01327{bottom:580.388000pt;}
.y6_c01327{bottom:581.638667pt;}
.y5_c01327{bottom:583.632296pt;}
.y3_c01327{bottom:584.880000pt;}
.y2_c01327{bottom:597.381333pt;}
.y1_c01327{bottom:604.800000pt;}
.h2_c01327{height:16.000000pt;}
.h6_c01327{height:42.666667pt;}
.h4_c01327{height:53.333333pt;}
.h3_c01327{height:69.299525pt;}
.h5_c01327{height:74.680105pt;}
.h1_c01327{height:1111.333333pt;}
.h0_c01327{height:1111.440000pt;}
.w1_c01327{width:810.666667pt;}
.w0_c01327{width:810.933333pt;}
.x0_c01327{left:0.000000pt;}
.x1_c01327{left:479.520000pt;}
.x2_c01327{left:512.833333pt;}
.x6_c01327{left:517.920000pt;}
.x4_c01327{left:555.665333pt;}
.x5_c01327{left:604.723021pt;}
.x3_c01327{left:632.880000pt;}
}





/* 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_c01328 {
    display:none;
  }
  .loading-indicator_c01328.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01328 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_c01328 { 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_c01328" -> "#page-container .classname_c01328")
 */
.pf_c01328 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01328 { /* 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_c01328.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01328 { /* 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_c01328 { /* 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_c01328 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01328 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01328 {overflow:visible;}
  }
}
.c_c01328 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01328 { /* 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_c01328:after { /* webkit #35443 */
  content: '';
}
.t_c01328:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01328 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 */
}
.__c01328 { /* 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_c01328 { /* info for Javascript */
  display:none;
}
.l_c01328 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01328 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01328 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01328: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_c01328 {
    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_c01328.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01328.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_c01328 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01328{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01328;src:url('chunks/assets/font_7c6b9abe6ee2a268480c528b.woff2')format("woff");}.ff1_c01328{font-family:ff1_c01328;line-height:1.000000;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;}
.m132_c01328{transform:matrix(0.008894,-0.000142,0.003999,0.249968,0,0);-ms-transform:matrix(0.008894,-0.000142,0.003999,0.249968,0,0);-webkit-transform:matrix(0.008894,-0.000142,0.003999,0.249968,0,0);}
.m61_c01328{transform:matrix(0.012479,-0.000162,0.003250,0.249979,0,0);-ms-transform:matrix(0.012479,-0.000162,0.003250,0.249979,0,0);-webkit-transform:matrix(0.012479,-0.000162,0.003250,0.249979,0,0);}
.m13e_c01328{transform:matrix(0.013518,-0.000216,0.003999,0.249968,0,0);-ms-transform:matrix(0.013518,-0.000216,0.003999,0.249968,0,0);-webkit-transform:matrix(0.013518,-0.000216,0.003999,0.249968,0,0);}
.m124_c01328{transform:matrix(0.036135,-0.000578,0.003999,0.249968,0,0);-ms-transform:matrix(0.036135,-0.000578,0.003999,0.249968,0,0);-webkit-transform:matrix(0.036135,-0.000578,0.003999,0.249968,0,0);}
.m12_c01328{transform:matrix(0.063307,-0.001013,0.003999,0.249968,0,0);-ms-transform:matrix(0.063307,-0.001013,0.003999,0.249968,0,0);-webkit-transform:matrix(0.063307,-0.001013,0.003999,0.249968,0,0);}
.m174_c01328{transform:matrix(0.108540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108540,0.000000,0.000000,0.250000,0,0);}
.m173_c01328{transform:matrix(0.121679,-0.001217,0.002500,0.249988,0,0);-ms-transform:matrix(0.121679,-0.001217,0.002500,0.249988,0,0);-webkit-transform:matrix(0.121679,-0.001217,0.002500,0.249988,0,0);}
.m171_c01328{transform:matrix(0.124254,-0.001243,0.002500,0.249988,0,0);-ms-transform:matrix(0.124254,-0.001243,0.002500,0.249988,0,0);-webkit-transform:matrix(0.124254,-0.001243,0.002500,0.249988,0,0);}
.m3b_c01328{transform:matrix(0.129519,-0.001684,0.003250,0.249979,0,0);-ms-transform:matrix(0.129519,-0.001684,0.003250,0.249979,0,0);-webkit-transform:matrix(0.129519,-0.001684,0.003250,0.249979,0,0);}
.mf7_c01328{transform:matrix(0.132733,-0.002124,0.003999,0.249968,0,0);-ms-transform:matrix(0.132733,-0.002124,0.003999,0.249968,0,0);-webkit-transform:matrix(0.132733,-0.002124,0.003999,0.249968,0,0);}
.m115_c01328{transform:matrix(0.133328,-0.002133,0.003999,0.249968,0,0);-ms-transform:matrix(0.133328,-0.002133,0.003999,0.249968,0,0);-webkit-transform:matrix(0.133328,-0.002133,0.003999,0.249968,0,0);}
.md8_c01328{transform:matrix(0.133493,-0.002136,0.003999,0.249968,0,0);-ms-transform:matrix(0.133493,-0.002136,0.003999,0.249968,0,0);-webkit-transform:matrix(0.133493,-0.002136,0.003999,0.249968,0,0);}
.mf6_c01328{transform:matrix(0.134153,-0.002146,0.003999,0.249968,0,0);-ms-transform:matrix(0.134153,-0.002146,0.003999,0.249968,0,0);-webkit-transform:matrix(0.134153,-0.002146,0.003999,0.249968,0,0);}
.m10e_c01328{transform:matrix(0.134928,-0.002159,0.003999,0.249968,0,0);-ms-transform:matrix(0.134928,-0.002159,0.003999,0.249968,0,0);-webkit-transform:matrix(0.134928,-0.002159,0.003999,0.249968,0,0);}
.m10d_c01328{transform:matrix(0.135823,-0.002173,0.003999,0.249968,0,0);-ms-transform:matrix(0.135823,-0.002173,0.003999,0.249968,0,0);-webkit-transform:matrix(0.135823,-0.002173,0.003999,0.249968,0,0);}
.mfc_c01328{transform:matrix(0.139242,-0.002228,0.003999,0.249968,0,0);-ms-transform:matrix(0.139242,-0.002228,0.003999,0.249968,0,0);-webkit-transform:matrix(0.139242,-0.002228,0.003999,0.249968,0,0);}
.mfd_c01328{transform:matrix(0.141347,-0.002262,0.003999,0.249968,0,0);-ms-transform:matrix(0.141347,-0.002262,0.003999,0.249968,0,0);-webkit-transform:matrix(0.141347,-0.002262,0.003999,0.249968,0,0);}
.mfa_c01328{transform:matrix(0.142272,-0.002276,0.003999,0.249968,0,0);-ms-transform:matrix(0.142272,-0.002276,0.003999,0.249968,0,0);-webkit-transform:matrix(0.142272,-0.002276,0.003999,0.249968,0,0);}
.m114_c01328{transform:matrix(0.143282,-0.002293,0.003999,0.249968,0,0);-ms-transform:matrix(0.143282,-0.002293,0.003999,0.249968,0,0);-webkit-transform:matrix(0.143282,-0.002293,0.003999,0.249968,0,0);}
.m113_c01328{transform:matrix(0.144841,-0.002317,0.003999,0.249968,0,0);-ms-transform:matrix(0.144841,-0.002317,0.003999,0.249968,0,0);-webkit-transform:matrix(0.144841,-0.002317,0.003999,0.249968,0,0);}
.m10f_c01328{transform:matrix(0.145736,-0.002332,0.003999,0.249968,0,0);-ms-transform:matrix(0.145736,-0.002332,0.003999,0.249968,0,0);-webkit-transform:matrix(0.145736,-0.002332,0.003999,0.249968,0,0);}
.md2_c01328{transform:matrix(0.146106,-0.002338,0.003999,0.249968,0,0);-ms-transform:matrix(0.146106,-0.002338,0.003999,0.249968,0,0);-webkit-transform:matrix(0.146106,-0.002338,0.003999,0.249968,0,0);}
.m112_c01328{transform:matrix(0.146596,-0.002346,0.003999,0.249968,0,0);-ms-transform:matrix(0.146596,-0.002346,0.003999,0.249968,0,0);-webkit-transform:matrix(0.146596,-0.002346,0.003999,0.249968,0,0);}
.m110_c01328{transform:matrix(0.146851,-0.002350,0.003999,0.249968,0,0);-ms-transform:matrix(0.146851,-0.002350,0.003999,0.249968,0,0);-webkit-transform:matrix(0.146851,-0.002350,0.003999,0.249968,0,0);}
.mce_c01328{transform:matrix(0.148306,-0.002373,0.003999,0.249968,0,0);-ms-transform:matrix(0.148306,-0.002373,0.003999,0.249968,0,0);-webkit-transform:matrix(0.148306,-0.002373,0.003999,0.249968,0,0);}
.mf8_c01328{transform:matrix(0.148761,-0.002380,0.003999,0.249968,0,0);-ms-transform:matrix(0.148761,-0.002380,0.003999,0.249968,0,0);-webkit-transform:matrix(0.148761,-0.002380,0.003999,0.249968,0,0);}
.mf9_c01328{transform:matrix(0.148881,-0.002382,0.003999,0.249968,0,0);-ms-transform:matrix(0.148881,-0.002382,0.003999,0.249968,0,0);-webkit-transform:matrix(0.148881,-0.002382,0.003999,0.249968,0,0);}
.m3e_c01328{transform:matrix(0.151042,-0.001964,0.003250,0.249979,0,0);-ms-transform:matrix(0.151042,-0.001964,0.003250,0.249979,0,0);-webkit-transform:matrix(0.151042,-0.001964,0.003250,0.249979,0,0);}
.m3d_c01328{transform:matrix(0.151127,-0.001965,0.003250,0.249979,0,0);-ms-transform:matrix(0.151127,-0.001965,0.003250,0.249979,0,0);-webkit-transform:matrix(0.151127,-0.001965,0.003250,0.249979,0,0);}
.m111_c01328{transform:matrix(0.151526,-0.002424,0.003999,0.249968,0,0);-ms-transform:matrix(0.151526,-0.002424,0.003999,0.249968,0,0);-webkit-transform:matrix(0.151526,-0.002424,0.003999,0.249968,0,0);}
.m116_c01328{transform:matrix(0.153370,-0.002454,0.003999,0.249968,0,0);-ms-transform:matrix(0.153370,-0.002454,0.003999,0.249968,0,0);-webkit-transform:matrix(0.153370,-0.002454,0.003999,0.249968,0,0);}
.md5_c01328{transform:matrix(0.153575,-0.002457,0.003999,0.249968,0,0);-ms-transform:matrix(0.153575,-0.002457,0.003999,0.249968,0,0);-webkit-transform:matrix(0.153575,-0.002457,0.003999,0.249968,0,0);}
.mcf_c01328{transform:matrix(0.153905,-0.002462,0.003999,0.249968,0,0);-ms-transform:matrix(0.153905,-0.002462,0.003999,0.249968,0,0);-webkit-transform:matrix(0.153905,-0.002462,0.003999,0.249968,0,0);}
.md0_c01328{transform:matrix(0.153920,-0.002463,0.003999,0.249968,0,0);-ms-transform:matrix(0.153920,-0.002463,0.003999,0.249968,0,0);-webkit-transform:matrix(0.153920,-0.002463,0.003999,0.249968,0,0);}
.mf5_c01328{transform:matrix(0.153955,-0.002463,0.003999,0.249968,0,0);-ms-transform:matrix(0.153955,-0.002463,0.003999,0.249968,0,0);-webkit-transform:matrix(0.153955,-0.002463,0.003999,0.249968,0,0);}
.mfb_c01328{transform:matrix(0.154505,-0.002472,0.003999,0.249968,0,0);-ms-transform:matrix(0.154505,-0.002472,0.003999,0.249968,0,0);-webkit-transform:matrix(0.154505,-0.002472,0.003999,0.249968,0,0);}
.m40_c01328{transform:matrix(0.156597,-0.002036,0.003250,0.249979,0,0);-ms-transform:matrix(0.156597,-0.002036,0.003250,0.249979,0,0);-webkit-transform:matrix(0.156597,-0.002036,0.003250,0.249979,0,0);}
.mbd_c01328{transform:matrix(0.157250,-0.002516,0.003999,0.249968,0,0);-ms-transform:matrix(0.157250,-0.002516,0.003999,0.249968,0,0);-webkit-transform:matrix(0.157250,-0.002516,0.003999,0.249968,0,0);}
.md6_c01328{transform:matrix(0.158800,-0.002541,0.003999,0.249968,0,0);-ms-transform:matrix(0.158800,-0.002541,0.003999,0.249968,0,0);-webkit-transform:matrix(0.158800,-0.002541,0.003999,0.249968,0,0);}
.m160_c01328{transform:matrix(0.159430,-0.002551,0.003999,0.249968,0,0);-ms-transform:matrix(0.159430,-0.002551,0.003999,0.249968,0,0);-webkit-transform:matrix(0.159430,-0.002551,0.003999,0.249968,0,0);}
.m41_c01328{transform:matrix(0.161336,-0.002097,0.003250,0.249979,0,0);-ms-transform:matrix(0.161336,-0.002097,0.003250,0.249979,0,0);-webkit-transform:matrix(0.161336,-0.002097,0.003250,0.249979,0,0);}
.m42_c01328{transform:matrix(0.162481,-0.002112,0.003250,0.249979,0,0);-ms-transform:matrix(0.162481,-0.002112,0.003250,0.249979,0,0);-webkit-transform:matrix(0.162481,-0.002112,0.003250,0.249979,0,0);}
.m43_c01328{transform:matrix(0.162941,-0.002118,0.003250,0.249979,0,0);-ms-transform:matrix(0.162941,-0.002118,0.003250,0.249979,0,0);-webkit-transform:matrix(0.162941,-0.002118,0.003250,0.249979,0,0);}
.m3c_c01328{transform:matrix(0.163891,-0.002131,0.003250,0.249979,0,0);-ms-transform:matrix(0.163891,-0.002131,0.003250,0.249979,0,0);-webkit-transform:matrix(0.163891,-0.002131,0.003250,0.249979,0,0);}
.m6f_c01328{transform:matrix(0.165524,-0.002317,0.003500,0.249976,0,0);-ms-transform:matrix(0.165524,-0.002317,0.003500,0.249976,0,0);-webkit-transform:matrix(0.165524,-0.002317,0.003500,0.249976,0,0);}
.md1_c01328{transform:matrix(0.165704,-0.002651,0.003999,0.249968,0,0);-ms-transform:matrix(0.165704,-0.002651,0.003999,0.249968,0,0);-webkit-transform:matrix(0.165704,-0.002651,0.003999,0.249968,0,0);}
.md7_c01328{transform:matrix(0.165719,-0.002652,0.003999,0.249968,0,0);-ms-transform:matrix(0.165719,-0.002652,0.003999,0.249968,0,0);-webkit-transform:matrix(0.165719,-0.002652,0.003999,0.249968,0,0);}
.m3a_c01328{transform:matrix(0.165736,-0.002155,0.003250,0.249979,0,0);-ms-transform:matrix(0.165736,-0.002155,0.003250,0.249979,0,0);-webkit-transform:matrix(0.165736,-0.002155,0.003250,0.249979,0,0);}
.m3f_c01328{transform:matrix(0.167196,-0.002174,0.003250,0.249979,0,0);-ms-transform:matrix(0.167196,-0.002174,0.003250,0.249979,0,0);-webkit-transform:matrix(0.167196,-0.002174,0.003250,0.249979,0,0);}
.m158_c01328{transform:matrix(0.168358,-0.002694,0.003999,0.249968,0,0);-ms-transform:matrix(0.168358,-0.002694,0.003999,0.249968,0,0);-webkit-transform:matrix(0.168358,-0.002694,0.003999,0.249968,0,0);}
.m74_c01328{transform:matrix(0.168718,-0.002362,0.003500,0.249976,0,0);-ms-transform:matrix(0.168718,-0.002362,0.003500,0.249976,0,0);-webkit-transform:matrix(0.168718,-0.002362,0.003500,0.249976,0,0);}
.m15f_c01328{transform:matrix(0.169978,-0.002720,0.003999,0.249968,0,0);-ms-transform:matrix(0.169978,-0.002720,0.003999,0.249968,0,0);-webkit-transform:matrix(0.169978,-0.002720,0.003999,0.249968,0,0);}
.mb7_c01328{transform:matrix(0.170388,-0.002726,0.003999,0.249968,0,0);-ms-transform:matrix(0.170388,-0.002726,0.003999,0.249968,0,0);-webkit-transform:matrix(0.170388,-0.002726,0.003999,0.249968,0,0);}
.md4_c01328{transform:matrix(0.170503,-0.002728,0.003999,0.249968,0,0);-ms-transform:matrix(0.170503,-0.002728,0.003999,0.249968,0,0);-webkit-transform:matrix(0.170503,-0.002728,0.003999,0.249968,0,0);}
.md3_c01328{transform:matrix(0.171038,-0.002737,0.003999,0.249968,0,0);-ms-transform:matrix(0.171038,-0.002737,0.003999,0.249968,0,0);-webkit-transform:matrix(0.171038,-0.002737,0.003999,0.249968,0,0);}
.mbf_c01328{transform:matrix(0.172278,-0.002756,0.003999,0.249968,0,0);-ms-transform:matrix(0.172278,-0.002756,0.003999,0.249968,0,0);-webkit-transform:matrix(0.172278,-0.002756,0.003999,0.249968,0,0);}
.m6d_c01328{transform:matrix(0.172993,-0.002422,0.003500,0.249976,0,0);-ms-transform:matrix(0.172993,-0.002422,0.003500,0.249976,0,0);-webkit-transform:matrix(0.172993,-0.002422,0.003500,0.249976,0,0);}
.m15d_c01328{transform:matrix(0.173763,-0.002780,0.003999,0.249968,0,0);-ms-transform:matrix(0.173763,-0.002780,0.003999,0.249968,0,0);-webkit-transform:matrix(0.173763,-0.002780,0.003999,0.249968,0,0);}
.mb9_c01328{transform:matrix(0.175708,-0.002811,0.003999,0.249968,0,0);-ms-transform:matrix(0.175708,-0.002811,0.003999,0.249968,0,0);-webkit-transform:matrix(0.175708,-0.002811,0.003999,0.249968,0,0);}
.m71_c01328{transform:matrix(0.176903,-0.002477,0.003500,0.249976,0,0);-ms-transform:matrix(0.176903,-0.002477,0.003500,0.249976,0,0);-webkit-transform:matrix(0.176903,-0.002477,0.003500,0.249976,0,0);}
.med_c01328{transform:matrix(0.177157,-0.002835,0.003999,0.249968,0,0);-ms-transform:matrix(0.177157,-0.002835,0.003999,0.249968,0,0);-webkit-transform:matrix(0.177157,-0.002835,0.003999,0.249968,0,0);}
.m70_c01328{transform:matrix(0.178947,-0.002505,0.003500,0.249976,0,0);-ms-transform:matrix(0.178947,-0.002505,0.003500,0.249976,0,0);-webkit-transform:matrix(0.178947,-0.002505,0.003500,0.249976,0,0);}
.m15a_c01328{transform:matrix(0.179807,-0.002877,0.003999,0.249968,0,0);-ms-transform:matrix(0.179807,-0.002877,0.003999,0.249968,0,0);-webkit-transform:matrix(0.179807,-0.002877,0.003999,0.249968,0,0);}
.m15b_c01328{transform:matrix(0.180017,-0.002880,0.003999,0.249968,0,0);-ms-transform:matrix(0.180017,-0.002880,0.003999,0.249968,0,0);-webkit-transform:matrix(0.180017,-0.002880,0.003999,0.249968,0,0);}
.m130_c01328{transform:matrix(0.180377,-0.002886,0.003999,0.249968,0,0);-ms-transform:matrix(0.180377,-0.002886,0.003999,0.249968,0,0);-webkit-transform:matrix(0.180377,-0.002886,0.003999,0.249968,0,0);}
.m117_c01328{transform:matrix(0.180382,-0.002886,0.003999,0.249968,0,0);-ms-transform:matrix(0.180382,-0.002886,0.003999,0.249968,0,0);-webkit-transform:matrix(0.180382,-0.002886,0.003999,0.249968,0,0);}
.m12a_c01328{transform:matrix(0.181117,-0.002898,0.003999,0.249968,0,0);-ms-transform:matrix(0.181117,-0.002898,0.003999,0.249968,0,0);-webkit-transform:matrix(0.181117,-0.002898,0.003999,0.249968,0,0);}
.mbb_c01328{transform:matrix(0.182127,-0.002914,0.003999,0.249968,0,0);-ms-transform:matrix(0.182127,-0.002914,0.003999,0.249968,0,0);-webkit-transform:matrix(0.182127,-0.002914,0.003999,0.249968,0,0);}
.m125_c01328{transform:matrix(0.183047,-0.002929,0.003999,0.249968,0,0);-ms-transform:matrix(0.183047,-0.002929,0.003999,0.249968,0,0);-webkit-transform:matrix(0.183047,-0.002929,0.003999,0.249968,0,0);}
.mba_c01328{transform:matrix(0.184566,-0.002953,0.003999,0.249968,0,0);-ms-transform:matrix(0.184566,-0.002953,0.003999,0.249968,0,0);-webkit-transform:matrix(0.184566,-0.002953,0.003999,0.249968,0,0);}
.m87_c01328{transform:matrix(0.184647,-0.002585,0.003500,0.249976,0,0);-ms-transform:matrix(0.184647,-0.002585,0.003500,0.249976,0,0);-webkit-transform:matrix(0.184647,-0.002585,0.003500,0.249976,0,0);}
.m72_c01328{transform:matrix(0.185577,-0.002598,0.003500,0.249976,0,0);-ms-transform:matrix(0.185577,-0.002598,0.003500,0.249976,0,0);-webkit-transform:matrix(0.185577,-0.002598,0.003500,0.249976,0,0);}
.m73_c01328{transform:matrix(0.185682,-0.002600,0.003500,0.249976,0,0);-ms-transform:matrix(0.185682,-0.002600,0.003500,0.249976,0,0);-webkit-transform:matrix(0.185682,-0.002600,0.003500,0.249976,0,0);}
.m6e_c01328{transform:matrix(0.186827,-0.002616,0.003500,0.249976,0,0);-ms-transform:matrix(0.186827,-0.002616,0.003500,0.249976,0,0);-webkit-transform:matrix(0.186827,-0.002616,0.003500,0.249976,0,0);}
.m128_c01328{transform:matrix(0.187026,-0.002992,0.003999,0.249968,0,0);-ms-transform:matrix(0.187026,-0.002992,0.003999,0.249968,0,0);-webkit-transform:matrix(0.187026,-0.002992,0.003999,0.249968,0,0);}
.mbc_c01328{transform:matrix(0.187176,-0.002995,0.003999,0.249968,0,0);-ms-transform:matrix(0.187176,-0.002995,0.003999,0.249968,0,0);-webkit-transform:matrix(0.187176,-0.002995,0.003999,0.249968,0,0);}
.m126_c01328{transform:matrix(0.187211,-0.002995,0.003999,0.249968,0,0);-ms-transform:matrix(0.187211,-0.002995,0.003999,0.249968,0,0);-webkit-transform:matrix(0.187211,-0.002995,0.003999,0.249968,0,0);}
.mbe_c01328{transform:matrix(0.187456,-0.002999,0.003999,0.249968,0,0);-ms-transform:matrix(0.187456,-0.002999,0.003999,0.249968,0,0);-webkit-transform:matrix(0.187456,-0.002999,0.003999,0.249968,0,0);}
.m12e_c01328{transform:matrix(0.187991,-0.003008,0.003999,0.249968,0,0);-ms-transform:matrix(0.187991,-0.003008,0.003999,0.249968,0,0);-webkit-transform:matrix(0.187991,-0.003008,0.003999,0.249968,0,0);}
.m14d_c01328{transform:matrix(0.189726,-0.003036,0.003999,0.249968,0,0);-ms-transform:matrix(0.189726,-0.003036,0.003999,0.249968,0,0);-webkit-transform:matrix(0.189726,-0.003036,0.003999,0.249968,0,0);}
.mfe_c01328{transform:matrix(0.189911,-0.003039,0.003999,0.249968,0,0);-ms-transform:matrix(0.189911,-0.003039,0.003999,0.249968,0,0);-webkit-transform:matrix(0.189911,-0.003039,0.003999,0.249968,0,0);}
.m75_c01328{transform:matrix(0.190146,-0.002662,0.003500,0.249976,0,0);-ms-transform:matrix(0.190146,-0.002662,0.003500,0.249976,0,0);-webkit-transform:matrix(0.190146,-0.002662,0.003500,0.249976,0,0);}
.m141_c01328{transform:matrix(0.192715,-0.003083,0.003999,0.249968,0,0);-ms-transform:matrix(0.192715,-0.003083,0.003999,0.249968,0,0);-webkit-transform:matrix(0.192715,-0.003083,0.003999,0.249968,0,0);}
.md9_c01328{transform:matrix(0.193365,-0.003094,0.003999,0.249968,0,0);-ms-transform:matrix(0.193365,-0.003094,0.003999,0.249968,0,0);-webkit-transform:matrix(0.193365,-0.003094,0.003999,0.249968,0,0);}
.mb5_c01328{transform:matrix(0.194775,-0.003116,0.003999,0.249968,0,0);-ms-transform:matrix(0.194775,-0.003116,0.003999,0.249968,0,0);-webkit-transform:matrix(0.194775,-0.003116,0.003999,0.249968,0,0);}
.m162_c01328{transform:matrix(0.195400,-0.003126,0.003999,0.249968,0,0);-ms-transform:matrix(0.195400,-0.003126,0.003999,0.249968,0,0);-webkit-transform:matrix(0.195400,-0.003126,0.003999,0.249968,0,0);}
.m161_c01328{transform:matrix(0.195790,-0.003133,0.003999,0.249968,0,0);-ms-transform:matrix(0.195790,-0.003133,0.003999,0.249968,0,0);-webkit-transform:matrix(0.195790,-0.003133,0.003999,0.249968,0,0);}
.mc1_c01328{transform:matrix(0.196515,-0.003144,0.003999,0.249968,0,0);-ms-transform:matrix(0.196515,-0.003144,0.003999,0.249968,0,0);-webkit-transform:matrix(0.196515,-0.003144,0.003999,0.249968,0,0);}
.m15e_c01328{transform:matrix(0.197070,-0.003153,0.003999,0.249968,0,0);-ms-transform:matrix(0.197070,-0.003153,0.003999,0.249968,0,0);-webkit-transform:matrix(0.197070,-0.003153,0.003999,0.249968,0,0);}
.mb6_c01328{transform:matrix(0.197170,-0.003155,0.003999,0.249968,0,0);-ms-transform:matrix(0.197170,-0.003155,0.003999,0.249968,0,0);-webkit-transform:matrix(0.197170,-0.003155,0.003999,0.249968,0,0);}
.m4_c01328{transform:matrix(0.197518,-0.005333,0.006748,0.249909,0,0);-ms-transform:matrix(0.197518,-0.005333,0.006748,0.249909,0,0);-webkit-transform:matrix(0.197518,-0.005333,0.006748,0.249909,0,0);}
.m86_c01328{transform:matrix(0.197566,-0.002766,0.003500,0.249976,0,0);-ms-transform:matrix(0.197566,-0.002766,0.003500,0.249976,0,0);-webkit-transform:matrix(0.197566,-0.002766,0.003500,0.249976,0,0);}
.mc2_c01328{transform:matrix(0.198610,-0.003178,0.003999,0.249968,0,0);-ms-transform:matrix(0.198610,-0.003178,0.003999,0.249968,0,0);-webkit-transform:matrix(0.198610,-0.003178,0.003999,0.249968,0,0);}
.mae_c01328{transform:matrix(0.198650,-0.003178,0.003999,0.249968,0,0);-ms-transform:matrix(0.198650,-0.003178,0.003999,0.249968,0,0);-webkit-transform:matrix(0.198650,-0.003178,0.003999,0.249968,0,0);}
.mcb_c01328{transform:matrix(0.198985,-0.003184,0.003999,0.249968,0,0);-ms-transform:matrix(0.198985,-0.003184,0.003999,0.249968,0,0);-webkit-transform:matrix(0.198985,-0.003184,0.003999,0.249968,0,0);}
.m159_c01328{transform:matrix(0.199269,-0.003188,0.003999,0.249968,0,0);-ms-transform:matrix(0.199269,-0.003188,0.003999,0.249968,0,0);-webkit-transform:matrix(0.199269,-0.003188,0.003999,0.249968,0,0);}
.m157_c01328{transform:matrix(0.200299,-0.003205,0.003999,0.249968,0,0);-ms-transform:matrix(0.200299,-0.003205,0.003999,0.249968,0,0);-webkit-transform:matrix(0.200299,-0.003205,0.003999,0.249968,0,0);}
.m78_c01328{transform:matrix(0.200815,-0.002811,0.003500,0.249976,0,0);-ms-transform:matrix(0.200815,-0.002811,0.003500,0.249976,0,0);-webkit-transform:matrix(0.200815,-0.002811,0.003500,0.249976,0,0);}
.mc4_c01328{transform:matrix(0.201379,-0.003222,0.003999,0.249968,0,0);-ms-transform:matrix(0.201379,-0.003222,0.003999,0.249968,0,0);-webkit-transform:matrix(0.201379,-0.003222,0.003999,0.249968,0,0);}
.m14a_c01328{transform:matrix(0.202374,-0.003238,0.003999,0.249968,0,0);-ms-transform:matrix(0.202374,-0.003238,0.003999,0.249968,0,0);-webkit-transform:matrix(0.202374,-0.003238,0.003999,0.249968,0,0);}
.mc8_c01328{transform:matrix(0.205829,-0.003293,0.003999,0.249968,0,0);-ms-transform:matrix(0.205829,-0.003293,0.003999,0.249968,0,0);-webkit-transform:matrix(0.205829,-0.003293,0.003999,0.249968,0,0);}
.mcc_c01328{transform:matrix(0.206014,-0.003296,0.003999,0.249968,0,0);-ms-transform:matrix(0.206014,-0.003296,0.003999,0.249968,0,0);-webkit-transform:matrix(0.206014,-0.003296,0.003999,0.249968,0,0);}
.m81_c01328{transform:matrix(0.206285,-0.002888,0.003500,0.249976,0,0);-ms-transform:matrix(0.206285,-0.002888,0.003500,0.249976,0,0);-webkit-transform:matrix(0.206285,-0.002888,0.003500,0.249976,0,0);}
.me3_c01328{transform:matrix(0.206379,-0.003302,0.003999,0.249968,0,0);-ms-transform:matrix(0.206379,-0.003302,0.003999,0.249968,0,0);-webkit-transform:matrix(0.206379,-0.003302,0.003999,0.249968,0,0);}
.m127_c01328{transform:matrix(0.207413,-0.003319,0.003999,0.249968,0,0);-ms-transform:matrix(0.207413,-0.003319,0.003999,0.249968,0,0);-webkit-transform:matrix(0.207413,-0.003319,0.003999,0.249968,0,0);}
.mca_c01328{transform:matrix(0.209068,-0.003345,0.003999,0.249968,0,0);-ms-transform:matrix(0.209068,-0.003345,0.003999,0.249968,0,0);-webkit-transform:matrix(0.209068,-0.003345,0.003999,0.249968,0,0);}
.m7a_c01328{transform:matrix(0.209784,-0.002937,0.003500,0.249976,0,0);-ms-transform:matrix(0.209784,-0.002937,0.003500,0.249976,0,0);-webkit-transform:matrix(0.209784,-0.002937,0.003500,0.249976,0,0);}
.m14c_c01328{transform:matrix(0.209888,-0.003358,0.003999,0.249968,0,0);-ms-transform:matrix(0.209888,-0.003358,0.003999,0.249968,0,0);-webkit-transform:matrix(0.209888,-0.003358,0.003999,0.249968,0,0);}
.mc6_c01328{transform:matrix(0.210028,-0.003360,0.003999,0.249968,0,0);-ms-transform:matrix(0.210028,-0.003360,0.003999,0.249968,0,0);-webkit-transform:matrix(0.210028,-0.003360,0.003999,0.249968,0,0);}
.mc5_c01328{transform:matrix(0.212158,-0.003395,0.003999,0.249968,0,0);-ms-transform:matrix(0.212158,-0.003395,0.003999,0.249968,0,0);-webkit-transform:matrix(0.212158,-0.003395,0.003999,0.249968,0,0);}
.mc9_c01328{transform:matrix(0.212163,-0.003395,0.003999,0.249968,0,0);-ms-transform:matrix(0.212163,-0.003395,0.003999,0.249968,0,0);-webkit-transform:matrix(0.212163,-0.003395,0.003999,0.249968,0,0);}
.m89_c01328{transform:matrix(0.212279,-0.002972,0.003500,0.249976,0,0);-ms-transform:matrix(0.212279,-0.002972,0.003500,0.249976,0,0);-webkit-transform:matrix(0.212279,-0.002972,0.003500,0.249976,0,0);}
.mb8_c01328{transform:matrix(0.212778,-0.003404,0.003999,0.249968,0,0);-ms-transform:matrix(0.212778,-0.003404,0.003999,0.249968,0,0);-webkit-transform:matrix(0.212778,-0.003404,0.003999,0.249968,0,0);}
.m148_c01328{transform:matrix(0.213713,-0.003419,0.003999,0.249968,0,0);-ms-transform:matrix(0.213713,-0.003419,0.003999,0.249968,0,0);-webkit-transform:matrix(0.213713,-0.003419,0.003999,0.249968,0,0);}
.m11f_c01328{transform:matrix(0.214723,-0.003436,0.003999,0.249968,0,0);-ms-transform:matrix(0.214723,-0.003436,0.003999,0.249968,0,0);-webkit-transform:matrix(0.214723,-0.003436,0.003999,0.249968,0,0);}
.m8a_c01328{transform:matrix(0.215019,-0.003010,0.003500,0.249976,0,0);-ms-transform:matrix(0.215019,-0.003010,0.003500,0.249976,0,0);-webkit-transform:matrix(0.215019,-0.003010,0.003500,0.249976,0,0);}
.m155_c01328{transform:matrix(0.215047,-0.003441,0.003999,0.249968,0,0);-ms-transform:matrix(0.215047,-0.003441,0.003999,0.249968,0,0);-webkit-transform:matrix(0.215047,-0.003441,0.003999,0.249968,0,0);}
.m14b_c01328{transform:matrix(0.215122,-0.003442,0.003999,0.249968,0,0);-ms-transform:matrix(0.215122,-0.003442,0.003999,0.249968,0,0);-webkit-transform:matrix(0.215122,-0.003442,0.003999,0.249968,0,0);}
.mc7_c01328{transform:matrix(0.216312,-0.003461,0.003999,0.249968,0,0);-ms-transform:matrix(0.216312,-0.003461,0.003999,0.249968,0,0);-webkit-transform:matrix(0.216312,-0.003461,0.003999,0.249968,0,0);}
.m2_c01328{transform:matrix(0.216961,-0.005858,0.006748,0.249909,0,0);-ms-transform:matrix(0.216961,-0.005858,0.006748,0.249909,0,0);-webkit-transform:matrix(0.216961,-0.005858,0.006748,0.249909,0,0);}
.m88_c01328{transform:matrix(0.217964,-0.003051,0.003500,0.249976,0,0);-ms-transform:matrix(0.217964,-0.003051,0.003500,0.249976,0,0);-webkit-transform:matrix(0.217964,-0.003051,0.003500,0.249976,0,0);}
.m24_c01328{transform:matrix(0.218207,-0.004582,0.005249,0.249945,0,0);-ms-transform:matrix(0.218207,-0.004582,0.005249,0.249945,0,0);-webkit-transform:matrix(0.218207,-0.004582,0.005249,0.249945,0,0);}
.m151_c01328{transform:matrix(0.218722,-0.003500,0.003999,0.249968,0,0);-ms-transform:matrix(0.218722,-0.003500,0.003999,0.249968,0,0);-webkit-transform:matrix(0.218722,-0.003500,0.003999,0.249968,0,0);}
.m131_c01328{transform:matrix(0.219272,-0.003508,0.003999,0.249968,0,0);-ms-transform:matrix(0.219272,-0.003508,0.003999,0.249968,0,0);-webkit-transform:matrix(0.219272,-0.003508,0.003999,0.249968,0,0);}
.m145_c01328{transform:matrix(0.219347,-0.003510,0.003999,0.249968,0,0);-ms-transform:matrix(0.219347,-0.003510,0.003999,0.249968,0,0);-webkit-transform:matrix(0.219347,-0.003510,0.003999,0.249968,0,0);}
.m118_c01328{transform:matrix(0.219887,-0.003518,0.003999,0.249968,0,0);-ms-transform:matrix(0.219887,-0.003518,0.003999,0.249968,0,0);-webkit-transform:matrix(0.219887,-0.003518,0.003999,0.249968,0,0);}
.m29_c01328{transform:matrix(0.220841,-0.004638,0.005249,0.249945,0,0);-ms-transform:matrix(0.220841,-0.004638,0.005249,0.249945,0,0);-webkit-transform:matrix(0.220841,-0.004638,0.005249,0.249945,0,0);}
.m15c_c01328{transform:matrix(0.220957,-0.003535,0.003999,0.249968,0,0);-ms-transform:matrix(0.220957,-0.003535,0.003999,0.249968,0,0);-webkit-transform:matrix(0.220957,-0.003535,0.003999,0.249968,0,0);}
.m83_c01328{transform:matrix(0.222083,-0.003109,0.003500,0.249976,0,0);-ms-transform:matrix(0.222083,-0.003109,0.003500,0.249976,0,0);-webkit-transform:matrix(0.222083,-0.003109,0.003500,0.249976,0,0);}
.mc3_c01328{transform:matrix(0.222996,-0.003568,0.003999,0.249968,0,0);-ms-transform:matrix(0.222996,-0.003568,0.003999,0.249968,0,0);-webkit-transform:matrix(0.222996,-0.003568,0.003999,0.249968,0,0);}
.m11b_c01328{transform:matrix(0.223731,-0.003580,0.003999,0.249968,0,0);-ms-transform:matrix(0.223731,-0.003580,0.003999,0.249968,0,0);-webkit-transform:matrix(0.223731,-0.003580,0.003999,0.249968,0,0);}
.m11e_c01328{transform:matrix(0.223926,-0.003583,0.003999,0.249968,0,0);-ms-transform:matrix(0.223926,-0.003583,0.003999,0.249968,0,0);-webkit-transform:matrix(0.223926,-0.003583,0.003999,0.249968,0,0);}
.m129_c01328{transform:matrix(0.224226,-0.003588,0.003999,0.249968,0,0);-ms-transform:matrix(0.224226,-0.003588,0.003999,0.249968,0,0);-webkit-transform:matrix(0.224226,-0.003588,0.003999,0.249968,0,0);}
.m84_c01328{transform:matrix(0.224298,-0.003140,0.003500,0.249976,0,0);-ms-transform:matrix(0.224298,-0.003140,0.003500,0.249976,0,0);-webkit-transform:matrix(0.224298,-0.003140,0.003500,0.249976,0,0);}
.m12f_c01328{transform:matrix(0.224926,-0.003599,0.003999,0.249968,0,0);-ms-transform:matrix(0.224926,-0.003599,0.003999,0.249968,0,0);-webkit-transform:matrix(0.224926,-0.003599,0.003999,0.249968,0,0);}
.m82_c01328{transform:matrix(0.225263,-0.003154,0.003500,0.249976,0,0);-ms-transform:matrix(0.225263,-0.003154,0.003500,0.249976,0,0);-webkit-transform:matrix(0.225263,-0.003154,0.003500,0.249976,0,0);}
.m121_c01328{transform:matrix(0.225361,-0.003606,0.003999,0.249968,0,0);-ms-transform:matrix(0.225361,-0.003606,0.003999,0.249968,0,0);-webkit-transform:matrix(0.225361,-0.003606,0.003999,0.249968,0,0);}
.m143_c01328{transform:matrix(0.225546,-0.003609,0.003999,0.249968,0,0);-ms-transform:matrix(0.225546,-0.003609,0.003999,0.249968,0,0);-webkit-transform:matrix(0.225546,-0.003609,0.003999,0.249968,0,0);}
.m139_c01328{transform:matrix(0.226126,-0.003618,0.003999,0.249968,0,0);-ms-transform:matrix(0.226126,-0.003618,0.003999,0.249968,0,0);-webkit-transform:matrix(0.226126,-0.003618,0.003999,0.249968,0,0);}
.m154_c01328{transform:matrix(0.226316,-0.003621,0.003999,0.249968,0,0);-ms-transform:matrix(0.226316,-0.003621,0.003999,0.249968,0,0);-webkit-transform:matrix(0.226316,-0.003621,0.003999,0.249968,0,0);}
.m8b_c01328{transform:matrix(0.227153,-0.003180,0.003500,0.249976,0,0);-ms-transform:matrix(0.227153,-0.003180,0.003500,0.249976,0,0);-webkit-transform:matrix(0.227153,-0.003180,0.003500,0.249976,0,0);}
.m5a_c01328{transform:matrix(0.228011,-0.002964,0.003250,0.249979,0,0);-ms-transform:matrix(0.228011,-0.002964,0.003250,0.249979,0,0);-webkit-transform:matrix(0.228011,-0.002964,0.003250,0.249979,0,0);}
.m14e_c01328{transform:matrix(0.228221,-0.003652,0.003999,0.249968,0,0);-ms-transform:matrix(0.228221,-0.003652,0.003999,0.249968,0,0);-webkit-transform:matrix(0.228221,-0.003652,0.003999,0.249968,0,0);}
.me0_c01328{transform:matrix(0.228341,-0.003653,0.003999,0.249968,0,0);-ms-transform:matrix(0.228341,-0.003653,0.003999,0.249968,0,0);-webkit-transform:matrix(0.228341,-0.003653,0.003999,0.249968,0,0);}
.m17d_c01328{transform:matrix(0.228815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228815,0.000000,0.000000,0.250000,0,0);}
.m85_c01328{transform:matrix(0.229098,-0.003207,0.003500,0.249976,0,0);-ms-transform:matrix(0.229098,-0.003207,0.003500,0.249976,0,0);-webkit-transform:matrix(0.229098,-0.003207,0.003500,0.249976,0,0);}
.me1_c01328{transform:matrix(0.229176,-0.003667,0.003999,0.249968,0,0);-ms-transform:matrix(0.229176,-0.003667,0.003999,0.249968,0,0);-webkit-transform:matrix(0.229176,-0.003667,0.003999,0.249968,0,0);}
.m166_c01328{transform:matrix(0.229254,-0.002293,0.002500,0.249988,0,0);-ms-transform:matrix(0.229254,-0.002293,0.002500,0.249988,0,0);-webkit-transform:matrix(0.229254,-0.002293,0.002500,0.249988,0,0);}
.m44_c01328{transform:matrix(0.229516,-0.002984,0.003250,0.249979,0,0);-ms-transform:matrix(0.229516,-0.002984,0.003250,0.249979,0,0);-webkit-transform:matrix(0.229516,-0.002984,0.003250,0.249979,0,0);}
.mab_c01328{transform:matrix(0.230481,-0.003688,0.003999,0.249968,0,0);-ms-transform:matrix(0.230481,-0.003688,0.003999,0.249968,0,0);-webkit-transform:matrix(0.230481,-0.003688,0.003999,0.249968,0,0);}
.mdd_c01328{transform:matrix(0.230735,-0.003692,0.003999,0.249968,0,0);-ms-transform:matrix(0.230735,-0.003692,0.003999,0.249968,0,0);-webkit-transform:matrix(0.230735,-0.003692,0.003999,0.249968,0,0);}
.m57_c01328{transform:matrix(0.231140,-0.003005,0.003250,0.249979,0,0);-ms-transform:matrix(0.231140,-0.003005,0.003250,0.249979,0,0);-webkit-transform:matrix(0.231140,-0.003005,0.003250,0.249979,0,0);}
.m38_c01328{transform:matrix(0.231610,-0.003011,0.003250,0.249979,0,0);-ms-transform:matrix(0.231610,-0.003011,0.003250,0.249979,0,0);-webkit-transform:matrix(0.231610,-0.003011,0.003250,0.249979,0,0);}
.m39_c01328{transform:matrix(0.232045,-0.003017,0.003250,0.249979,0,0);-ms-transform:matrix(0.232045,-0.003017,0.003250,0.249979,0,0);-webkit-transform:matrix(0.232045,-0.003017,0.003250,0.249979,0,0);}
.m2d_c01328{transform:matrix(0.232154,-0.004875,0.005249,0.249945,0,0);-ms-transform:matrix(0.232154,-0.004875,0.005249,0.249945,0,0);-webkit-transform:matrix(0.232154,-0.004875,0.005249,0.249945,0,0);}
.m59_c01328{transform:matrix(0.232705,-0.003025,0.003250,0.249979,0,0);-ms-transform:matrix(0.232705,-0.003025,0.003250,0.249979,0,0);-webkit-transform:matrix(0.232705,-0.003025,0.003250,0.249979,0,0);}
.m12c_c01328{transform:matrix(0.233145,-0.003730,0.003999,0.249968,0,0);-ms-transform:matrix(0.233145,-0.003730,0.003999,0.249968,0,0);-webkit-transform:matrix(0.233145,-0.003730,0.003999,0.249968,0,0);}
.m2a_c01328{transform:matrix(0.233149,-0.004896,0.005249,0.249945,0,0);-ms-transform:matrix(0.233149,-0.004896,0.005249,0.249945,0,0);-webkit-transform:matrix(0.233149,-0.004896,0.005249,0.249945,0,0);}
.m79_c01328{transform:matrix(0.233332,-0.003267,0.003500,0.249976,0,0);-ms-transform:matrix(0.233332,-0.003267,0.003500,0.249976,0,0);-webkit-transform:matrix(0.233332,-0.003267,0.003500,0.249976,0,0);}
.m5f_c01328{transform:matrix(0.233375,-0.003034,0.003250,0.249979,0,0);-ms-transform:matrix(0.233375,-0.003034,0.003250,0.249979,0,0);-webkit-transform:matrix(0.233375,-0.003034,0.003250,0.249979,0,0);}
.m12d_c01328{transform:matrix(0.233785,-0.003741,0.003999,0.249968,0,0);-ms-transform:matrix(0.233785,-0.003741,0.003999,0.249968,0,0);-webkit-transform:matrix(0.233785,-0.003741,0.003999,0.249968,0,0);}
.mcd_c01328{transform:matrix(0.234620,-0.003754,0.003999,0.249968,0,0);-ms-transform:matrix(0.234620,-0.003754,0.003999,0.249968,0,0);-webkit-transform:matrix(0.234620,-0.003754,0.003999,0.249968,0,0);}
.m5b_c01328{transform:matrix(0.234695,-0.003051,0.003250,0.249979,0,0);-ms-transform:matrix(0.234695,-0.003051,0.003250,0.249979,0,0);-webkit-transform:matrix(0.234695,-0.003051,0.003250,0.249979,0,0);}
.m137_c01328{transform:matrix(0.234755,-0.003756,0.003999,0.249968,0,0);-ms-transform:matrix(0.234755,-0.003756,0.003999,0.249968,0,0);-webkit-transform:matrix(0.234755,-0.003756,0.003999,0.249968,0,0);}
.m15_c01328{transform:matrix(0.234793,-0.005400,0.005748,0.249934,0,0);-ms-transform:matrix(0.234793,-0.005400,0.005748,0.249934,0,0);-webkit-transform:matrix(0.234793,-0.005400,0.005748,0.249934,0,0);}
.m13f_c01328{transform:matrix(0.234885,-0.003758,0.003999,0.249968,0,0);-ms-transform:matrix(0.234885,-0.003758,0.003999,0.249968,0,0);-webkit-transform:matrix(0.234885,-0.003758,0.003999,0.249968,0,0);}
.m14f_c01328{transform:matrix(0.235285,-0.003765,0.003999,0.249968,0,0);-ms-transform:matrix(0.235285,-0.003765,0.003999,0.249968,0,0);-webkit-transform:matrix(0.235285,-0.003765,0.003999,0.249968,0,0);}
.m5d_c01328{transform:matrix(0.235860,-0.003066,0.003250,0.249979,0,0);-ms-transform:matrix(0.235860,-0.003066,0.003250,0.249979,0,0);-webkit-transform:matrix(0.235860,-0.003066,0.003250,0.249979,0,0);}
.m142_c01328{transform:matrix(0.235890,-0.003774,0.003999,0.249968,0,0);-ms-transform:matrix(0.235890,-0.003774,0.003999,0.249968,0,0);-webkit-transform:matrix(0.235890,-0.003774,0.003999,0.249968,0,0);}
.m55_c01328{transform:matrix(0.236345,-0.003072,0.003250,0.249979,0,0);-ms-transform:matrix(0.236345,-0.003072,0.003250,0.249979,0,0);-webkit-transform:matrix(0.236345,-0.003072,0.003250,0.249979,0,0);}
.ma7_c01328{transform:matrix(0.236347,-0.003309,0.003500,0.249976,0,0);-ms-transform:matrix(0.236347,-0.003309,0.003500,0.249976,0,0);-webkit-transform:matrix(0.236347,-0.003309,0.003500,0.249976,0,0);}
.m14_c01328{transform:matrix(0.236607,-0.005442,0.005748,0.249934,0,0);-ms-transform:matrix(0.236607,-0.005442,0.005748,0.249934,0,0);-webkit-transform:matrix(0.236607,-0.005442,0.005748,0.249934,0,0);}
.m146_c01328{transform:matrix(0.237310,-0.003797,0.003999,0.249968,0,0);-ms-transform:matrix(0.237310,-0.003797,0.003999,0.249968,0,0);-webkit-transform:matrix(0.237310,-0.003797,0.003999,0.249968,0,0);}
.m150_c01328{transform:matrix(0.237360,-0.003798,0.003999,0.249968,0,0);-ms-transform:matrix(0.237360,-0.003798,0.003999,0.249968,0,0);-webkit-transform:matrix(0.237360,-0.003798,0.003999,0.249968,0,0);}
.m7b_c01328{transform:matrix(0.237537,-0.003326,0.003500,0.249976,0,0);-ms-transform:matrix(0.237537,-0.003326,0.003500,0.249976,0,0);-webkit-transform:matrix(0.237537,-0.003326,0.003500,0.249976,0,0);}
.m144_c01328{transform:matrix(0.237550,-0.003801,0.003999,0.249968,0,0);-ms-transform:matrix(0.237550,-0.003801,0.003999,0.249968,0,0);-webkit-transform:matrix(0.237550,-0.003801,0.003999,0.249968,0,0);}
.m16a_c01328{transform:matrix(0.238173,-0.002382,0.002500,0.249988,0,0);-ms-transform:matrix(0.238173,-0.002382,0.002500,0.249988,0,0);-webkit-transform:matrix(0.238173,-0.002382,0.002500,0.249988,0,0);}
.m2c_c01328{transform:matrix(0.238392,-0.005006,0.005249,0.249945,0,0);-ms-transform:matrix(0.238392,-0.005006,0.005249,0.249945,0,0);-webkit-transform:matrix(0.238392,-0.005006,0.005249,0.249945,0,0);}
.m152_c01328{transform:matrix(0.238744,-0.003820,0.003999,0.249968,0,0);-ms-transform:matrix(0.238744,-0.003820,0.003999,0.249968,0,0);-webkit-transform:matrix(0.238744,-0.003820,0.003999,0.249968,0,0);}
.m60_c01328{transform:matrix(0.239050,-0.003108,0.003250,0.249979,0,0);-ms-transform:matrix(0.239050,-0.003108,0.003250,0.249979,0,0);-webkit-transform:matrix(0.239050,-0.003108,0.003250,0.249979,0,0);}
.mac_c01328{transform:matrix(0.239474,-0.003832,0.003999,0.249968,0,0);-ms-transform:matrix(0.239474,-0.003832,0.003999,0.249968,0,0);-webkit-transform:matrix(0.239474,-0.003832,0.003999,0.249968,0,0);}
.m147_c01328{transform:matrix(0.239759,-0.003836,0.003999,0.249968,0,0);-ms-transform:matrix(0.239759,-0.003836,0.003999,0.249968,0,0);-webkit-transform:matrix(0.239759,-0.003836,0.003999,0.249968,0,0);}
.mec_c01328{transform:matrix(0.239839,-0.003837,0.003999,0.249968,0,0);-ms-transform:matrix(0.239839,-0.003837,0.003999,0.249968,0,0);-webkit-transform:matrix(0.239839,-0.003837,0.003999,0.249968,0,0);}
.m140_c01328{transform:matrix(0.239914,-0.003839,0.003999,0.249968,0,0);-ms-transform:matrix(0.239914,-0.003839,0.003999,0.249968,0,0);-webkit-transform:matrix(0.239914,-0.003839,0.003999,0.249968,0,0);}
.m11a_c01328{transform:matrix(0.240639,-0.003850,0.003999,0.249968,0,0);-ms-transform:matrix(0.240639,-0.003850,0.003999,0.249968,0,0);-webkit-transform:matrix(0.240639,-0.003850,0.003999,0.249968,0,0);}
.mdb_c01328{transform:matrix(0.240739,-0.003852,0.003999,0.249968,0,0);-ms-transform:matrix(0.240739,-0.003852,0.003999,0.249968,0,0);-webkit-transform:matrix(0.240739,-0.003852,0.003999,0.249968,0,0);}
.m1a_c01328{transform:matrix(0.241441,-0.005553,0.005748,0.249934,0,0);-ms-transform:matrix(0.241441,-0.005553,0.005748,0.249934,0,0);-webkit-transform:matrix(0.241441,-0.005553,0.005748,0.249934,0,0);}
.m5c_c01328{transform:matrix(0.242794,-0.003156,0.003250,0.249979,0,0);-ms-transform:matrix(0.242794,-0.003156,0.003250,0.249979,0,0);-webkit-transform:matrix(0.242794,-0.003156,0.003250,0.249979,0,0);}
.mde_c01328{transform:matrix(0.242989,-0.003888,0.003999,0.249968,0,0);-ms-transform:matrix(0.242989,-0.003888,0.003999,0.249968,0,0);-webkit-transform:matrix(0.242989,-0.003888,0.003999,0.249968,0,0);}
.m153_c01328{transform:matrix(0.243274,-0.003892,0.003999,0.249968,0,0);-ms-transform:matrix(0.243274,-0.003892,0.003999,0.249968,0,0);-webkit-transform:matrix(0.243274,-0.003892,0.003999,0.249968,0,0);}
.m163_c01328{transform:matrix(0.243328,-0.002433,0.002500,0.249988,0,0);-ms-transform:matrix(0.243328,-0.002433,0.002500,0.249988,0,0);-webkit-transform:matrix(0.243328,-0.002433,0.002500,0.249988,0,0);}
.m7d_c01328{transform:matrix(0.243386,-0.003407,0.003500,0.249976,0,0);-ms-transform:matrix(0.243386,-0.003407,0.003500,0.249976,0,0);-webkit-transform:matrix(0.243386,-0.003407,0.003500,0.249976,0,0);}
.mc_c01328{transform:matrix(0.243509,-0.003896,0.003999,0.249968,0,0);-ms-transform:matrix(0.243509,-0.003896,0.003999,0.249968,0,0);-webkit-transform:matrix(0.243509,-0.003896,0.003999,0.249968,0,0);}
.m7f_c01328{transform:matrix(0.243651,-0.003411,0.003500,0.249976,0,0);-ms-transform:matrix(0.243651,-0.003411,0.003500,0.249976,0,0);-webkit-transform:matrix(0.243651,-0.003411,0.003500,0.249976,0,0);}
.me5_c01328{transform:matrix(0.243864,-0.003902,0.003999,0.249968,0,0);-ms-transform:matrix(0.243864,-0.003902,0.003999,0.249968,0,0);-webkit-transform:matrix(0.243864,-0.003902,0.003999,0.249968,0,0);}
.mf1_c01328{transform:matrix(0.243984,-0.003904,0.003999,0.249968,0,0);-ms-transform:matrix(0.243984,-0.003904,0.003999,0.249968,0,0);-webkit-transform:matrix(0.243984,-0.003904,0.003999,0.249968,0,0);}
.m8f_c01328{transform:matrix(0.244911,-0.003429,0.003500,0.249976,0,0);-ms-transform:matrix(0.244911,-0.003429,0.003500,0.249976,0,0);-webkit-transform:matrix(0.244911,-0.003429,0.003500,0.249976,0,0);}
.mb3_c01328{transform:matrix(0.245344,-0.003925,0.003999,0.249968,0,0);-ms-transform:matrix(0.245344,-0.003925,0.003999,0.249968,0,0);-webkit-transform:matrix(0.245344,-0.003925,0.003999,0.249968,0,0);}
.m45_c01328{transform:matrix(0.245389,-0.003190,0.003250,0.249979,0,0);-ms-transform:matrix(0.245389,-0.003190,0.003250,0.249979,0,0);-webkit-transform:matrix(0.245389,-0.003190,0.003250,0.249979,0,0);}
.m165_c01328{transform:matrix(0.245793,-0.002458,0.002500,0.249988,0,0);-ms-transform:matrix(0.245793,-0.002458,0.002500,0.249988,0,0);-webkit-transform:matrix(0.245793,-0.002458,0.002500,0.249988,0,0);}
.m34_c01328{transform:matrix(0.245904,-0.003197,0.003250,0.249979,0,0);-ms-transform:matrix(0.245904,-0.003197,0.003250,0.249979,0,0);-webkit-transform:matrix(0.245904,-0.003197,0.003250,0.249979,0,0);}
.m1d_c01328{transform:matrix(0.245965,-0.005657,0.005748,0.249934,0,0);-ms-transform:matrix(0.245965,-0.005657,0.005748,0.249934,0,0);-webkit-transform:matrix(0.245965,-0.005657,0.005748,0.249934,0,0);}
.mdf_c01328{transform:matrix(0.246233,-0.003940,0.003999,0.249968,0,0);-ms-transform:matrix(0.246233,-0.003940,0.003999,0.249968,0,0);-webkit-transform:matrix(0.246233,-0.003940,0.003999,0.249968,0,0);}
.m5e_c01328{transform:matrix(0.246489,-0.003204,0.003250,0.249979,0,0);-ms-transform:matrix(0.246489,-0.003204,0.003250,0.249979,0,0);-webkit-transform:matrix(0.246489,-0.003204,0.003250,0.249979,0,0);}
.m119_c01328{transform:matrix(0.246968,-0.003951,0.003999,0.249968,0,0);-ms-transform:matrix(0.246968,-0.003951,0.003999,0.249968,0,0);-webkit-transform:matrix(0.246968,-0.003951,0.003999,0.249968,0,0);}
.maf_c01328{transform:matrix(0.247073,-0.003953,0.003999,0.249968,0,0);-ms-transform:matrix(0.247073,-0.003953,0.003999,0.249968,0,0);-webkit-transform:matrix(0.247073,-0.003953,0.003999,0.249968,0,0);}
.m32_c01328{transform:matrix(0.247084,-0.003212,0.003250,0.249979,0,0);-ms-transform:matrix(0.247084,-0.003212,0.003250,0.249979,0,0);-webkit-transform:matrix(0.247084,-0.003212,0.003250,0.249979,0,0);}
.m25_c01328{transform:matrix(0.247755,-0.005203,0.005249,0.249945,0,0);-ms-transform:matrix(0.247755,-0.005203,0.005249,0.249945,0,0);-webkit-transform:matrix(0.247755,-0.005203,0.005249,0.249945,0,0);}
.m47_c01328{transform:matrix(0.247859,-0.003222,0.003250,0.249979,0,0);-ms-transform:matrix(0.247859,-0.003222,0.003250,0.249979,0,0);-webkit-transform:matrix(0.247859,-0.003222,0.003250,0.249979,0,0);}
.mad_c01328{transform:matrix(0.247883,-0.003966,0.003999,0.249968,0,0);-ms-transform:matrix(0.247883,-0.003966,0.003999,0.249968,0,0);-webkit-transform:matrix(0.247883,-0.003966,0.003999,0.249968,0,0);}
.meb_c01328{transform:matrix(0.247998,-0.003968,0.003999,0.249968,0,0);-ms-transform:matrix(0.247998,-0.003968,0.003999,0.249968,0,0);-webkit-transform:matrix(0.247998,-0.003968,0.003999,0.249968,0,0);}
.m27_c01328{transform:matrix(0.248210,-0.005212,0.005249,0.249945,0,0);-ms-transform:matrix(0.248210,-0.005212,0.005249,0.249945,0,0);-webkit-transform:matrix(0.248210,-0.005212,0.005249,0.249945,0,0);}
.m13a_c01328{transform:matrix(0.248273,-0.003972,0.003999,0.249968,0,0);-ms-transform:matrix(0.248273,-0.003972,0.003999,0.249968,0,0);-webkit-transform:matrix(0.248273,-0.003972,0.003999,0.249968,0,0);}
.m58_c01328{transform:matrix(0.248674,-0.003233,0.003250,0.249979,0,0);-ms-transform:matrix(0.248674,-0.003233,0.003250,0.249979,0,0);-webkit-transform:matrix(0.248674,-0.003233,0.003250,0.249979,0,0);}
.m9f_c01328{transform:matrix(0.248676,-0.003481,0.003500,0.249976,0,0);-ms-transform:matrix(0.248676,-0.003481,0.003500,0.249976,0,0);-webkit-transform:matrix(0.248676,-0.003481,0.003500,0.249976,0,0);}
.m46_c01328{transform:matrix(0.248729,-0.003233,0.003250,0.249979,0,0);-ms-transform:matrix(0.248729,-0.003233,0.003250,0.249979,0,0);-webkit-transform:matrix(0.248729,-0.003233,0.003250,0.249979,0,0);}
.mee_c01328{transform:matrix(0.249188,-0.003987,0.003999,0.249968,0,0);-ms-transform:matrix(0.249188,-0.003987,0.003999,0.249968,0,0);-webkit-transform:matrix(0.249188,-0.003987,0.003999,0.249968,0,0);}
.m98_c01328{transform:matrix(0.249191,-0.003489,0.003500,0.249976,0,0);-ms-transform:matrix(0.249191,-0.003489,0.003500,0.249976,0,0);-webkit-transform:matrix(0.249191,-0.003489,0.003500,0.249976,0,0);}
.m26_c01328{transform:matrix(0.249250,-0.005234,0.005249,0.249945,0,0);-ms-transform:matrix(0.249250,-0.005234,0.005249,0.249945,0,0);-webkit-transform:matrix(0.249250,-0.005234,0.005249,0.249945,0,0);}
.m9a_c01328{transform:matrix(0.249336,-0.003491,0.003500,0.249976,0,0);-ms-transform:matrix(0.249336,-0.003491,0.003500,0.249976,0,0);-webkit-transform:matrix(0.249336,-0.003491,0.003500,0.249976,0,0);}
.m48_c01328{transform:matrix(0.249384,-0.003242,0.003250,0.249979,0,0);-ms-transform:matrix(0.249384,-0.003242,0.003250,0.249979,0,0);-webkit-transform:matrix(0.249384,-0.003242,0.003250,0.249979,0,0);}
.m11d_c01328{transform:matrix(0.249438,-0.003991,0.003999,0.249968,0,0);-ms-transform:matrix(0.249438,-0.003991,0.003999,0.249968,0,0);-webkit-transform:matrix(0.249438,-0.003991,0.003999,0.249968,0,0);}
.mea_c01328{transform:matrix(0.249918,-0.003999,0.003999,0.249968,0,0);-ms-transform:matrix(0.249918,-0.003999,0.003999,0.249968,0,0);-webkit-transform:matrix(0.249918,-0.003999,0.003999,0.249968,0,0);}
.m4f_c01328{transform:matrix(0.249939,-0.003249,0.003250,0.249979,0,0);-ms-transform:matrix(0.249939,-0.003249,0.003250,0.249979,0,0);-webkit-transform:matrix(0.249939,-0.003249,0.003250,0.249979,0,0);}
.m178_c01328{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.mb0_c01328{transform:matrix(0.250013,-0.004000,0.003999,0.249968,0,0);-ms-transform:matrix(0.250013,-0.004000,0.003999,0.249968,0,0);-webkit-transform:matrix(0.250013,-0.004000,0.003999,0.249968,0,0);}
.m105_c01328{transform:matrix(0.250418,-0.004007,0.003999,0.249968,0,0);-ms-transform:matrix(0.250418,-0.004007,0.003999,0.249968,0,0);-webkit-transform:matrix(0.250418,-0.004007,0.003999,0.249968,0,0);}
.m102_c01328{transform:matrix(0.250888,-0.004014,0.003999,0.249968,0,0);-ms-transform:matrix(0.250888,-0.004014,0.003999,0.249968,0,0);-webkit-transform:matrix(0.250888,-0.004014,0.003999,0.249968,0,0);}
.me2_c01328{transform:matrix(0.251173,-0.004019,0.003999,0.249968,0,0);-ms-transform:matrix(0.251173,-0.004019,0.003999,0.249968,0,0);-webkit-transform:matrix(0.251173,-0.004019,0.003999,0.249968,0,0);}
.m8e_c01328{transform:matrix(0.251220,-0.003517,0.003500,0.249976,0,0);-ms-transform:matrix(0.251220,-0.003517,0.003500,0.249976,0,0);-webkit-transform:matrix(0.251220,-0.003517,0.003500,0.249976,0,0);}
.maa_c01328{transform:matrix(0.251373,-0.004022,0.003999,0.249968,0,0);-ms-transform:matrix(0.251373,-0.004022,0.003999,0.249968,0,0);-webkit-transform:matrix(0.251373,-0.004022,0.003999,0.249968,0,0);}
.m120_c01328{transform:matrix(0.251413,-0.004023,0.003999,0.249968,0,0);-ms-transform:matrix(0.251413,-0.004023,0.003999,0.249968,0,0);-webkit-transform:matrix(0.251413,-0.004023,0.003999,0.249968,0,0);}
.m107_c01328{transform:matrix(0.251723,-0.004028,0.003999,0.249968,0,0);-ms-transform:matrix(0.251723,-0.004028,0.003999,0.249968,0,0);-webkit-transform:matrix(0.251723,-0.004028,0.003999,0.249968,0,0);}
.m167_c01328{transform:matrix(0.251997,-0.002520,0.002500,0.249988,0,0);-ms-transform:matrix(0.251997,-0.002520,0.002500,0.249988,0,0);-webkit-transform:matrix(0.251997,-0.002520,0.002500,0.249988,0,0);}
.m6a_c01328{transform:matrix(0.252529,-0.003283,0.003250,0.249979,0,0);-ms-transform:matrix(0.252529,-0.003283,0.003250,0.249979,0,0);-webkit-transform:matrix(0.252529,-0.003283,0.003250,0.249979,0,0);}
.ma3_c01328{transform:matrix(0.252605,-0.003536,0.003500,0.249976,0,0);-ms-transform:matrix(0.252605,-0.003536,0.003500,0.249976,0,0);-webkit-transform:matrix(0.252605,-0.003536,0.003500,0.249976,0,0);}
.ma_c01328{transform:matrix(0.253358,-0.004054,0.003999,0.249968,0,0);-ms-transform:matrix(0.253358,-0.004054,0.003999,0.249968,0,0);-webkit-transform:matrix(0.253358,-0.004054,0.003999,0.249968,0,0);}
.m97_c01328{transform:matrix(0.253565,-0.003550,0.003500,0.249976,0,0);-ms-transform:matrix(0.253565,-0.003550,0.003500,0.249976,0,0);-webkit-transform:matrix(0.253565,-0.003550,0.003500,0.249976,0,0);}
.m4c_c01328{transform:matrix(0.253569,-0.003296,0.003250,0.249979,0,0);-ms-transform:matrix(0.253569,-0.003296,0.003250,0.249979,0,0);-webkit-transform:matrix(0.253569,-0.003296,0.003250,0.249979,0,0);}
.m96_c01328{transform:matrix(0.254445,-0.003562,0.003500,0.249976,0,0);-ms-transform:matrix(0.254445,-0.003562,0.003500,0.249976,0,0);-webkit-transform:matrix(0.254445,-0.003562,0.003500,0.249976,0,0);}
.m33_c01328{transform:matrix(0.254553,-0.003309,0.003250,0.249979,0,0);-ms-transform:matrix(0.254553,-0.003309,0.003250,0.249979,0,0);-webkit-transform:matrix(0.254553,-0.003309,0.003250,0.249979,0,0);}
.m16f_c01328{transform:matrix(0.255197,-0.002552,0.002500,0.249988,0,0);-ms-transform:matrix(0.255197,-0.002552,0.002500,0.249988,0,0);-webkit-transform:matrix(0.255197,-0.002552,0.002500,0.249988,0,0);}
.m92_c01328{transform:matrix(0.255415,-0.003576,0.003500,0.249976,0,0);-ms-transform:matrix(0.255415,-0.003576,0.003500,0.249976,0,0);-webkit-transform:matrix(0.255415,-0.003576,0.003500,0.249976,0,0);}
.m94_c01328{transform:matrix(0.255515,-0.003577,0.003500,0.249976,0,0);-ms-transform:matrix(0.255515,-0.003577,0.003500,0.249976,0,0);-webkit-transform:matrix(0.255515,-0.003577,0.003500,0.249976,0,0);}
.m4d_c01328{transform:matrix(0.255968,-0.003328,0.003250,0.249979,0,0);-ms-transform:matrix(0.255968,-0.003328,0.003250,0.249979,0,0);-webkit-transform:matrix(0.255968,-0.003328,0.003250,0.249979,0,0);}
.m7_c01328{transform:matrix(0.256007,-0.004096,0.003999,0.249968,0,0);-ms-transform:matrix(0.256007,-0.004096,0.003999,0.249968,0,0);-webkit-transform:matrix(0.256007,-0.004096,0.003999,0.249968,0,0);}
.m95_c01328{transform:matrix(0.256600,-0.003592,0.003500,0.249976,0,0);-ms-transform:matrix(0.256600,-0.003592,0.003500,0.249976,0,0);-webkit-transform:matrix(0.256600,-0.003592,0.003500,0.249976,0,0);}
.mb2_c01328{transform:matrix(0.256732,-0.004108,0.003999,0.249968,0,0);-ms-transform:matrix(0.256732,-0.004108,0.003999,0.249968,0,0);-webkit-transform:matrix(0.256732,-0.004108,0.003999,0.249968,0,0);}
.me4_c01328{transform:matrix(0.256782,-0.004109,0.003999,0.249968,0,0);-ms-transform:matrix(0.256782,-0.004109,0.003999,0.249968,0,0);-webkit-transform:matrix(0.256782,-0.004109,0.003999,0.249968,0,0);}
.ma1_c01328{transform:matrix(0.257005,-0.003598,0.003500,0.249976,0,0);-ms-transform:matrix(0.257005,-0.003598,0.003500,0.249976,0,0);-webkit-transform:matrix(0.257005,-0.003598,0.003500,0.249976,0,0);}
.m62_c01328{transform:matrix(0.257233,-0.003344,0.003250,0.249979,0,0);-ms-transform:matrix(0.257233,-0.003344,0.003250,0.249979,0,0);-webkit-transform:matrix(0.257233,-0.003344,0.003250,0.249979,0,0);}
.m18_c01328{transform:matrix(0.257382,-0.005920,0.005748,0.249934,0,0);-ms-transform:matrix(0.257382,-0.005920,0.005748,0.249934,0,0);-webkit-transform:matrix(0.257382,-0.005920,0.005748,0.249934,0,0);}
.mb1_c01328{transform:matrix(0.257417,-0.004119,0.003999,0.249968,0,0);-ms-transform:matrix(0.257417,-0.004119,0.003999,0.249968,0,0);-webkit-transform:matrix(0.257417,-0.004119,0.003999,0.249968,0,0);}
.m35_c01328{transform:matrix(0.257498,-0.003347,0.003250,0.249979,0,0);-ms-transform:matrix(0.257498,-0.003347,0.003250,0.249979,0,0);-webkit-transform:matrix(0.257498,-0.003347,0.003250,0.249979,0,0);}
.m17_c01328{transform:matrix(0.257812,-0.005930,0.005748,0.249934,0,0);-ms-transform:matrix(0.257812,-0.005930,0.005748,0.249934,0,0);-webkit-transform:matrix(0.257812,-0.005930,0.005748,0.249934,0,0);}
.m2b_c01328{transform:matrix(0.257833,-0.005414,0.005249,0.249945,0,0);-ms-transform:matrix(0.257833,-0.005414,0.005249,0.249945,0,0);-webkit-transform:matrix(0.257833,-0.005414,0.005249,0.249945,0,0);}
.m11c_c01328{transform:matrix(0.257972,-0.004128,0.003999,0.249968,0,0);-ms-transform:matrix(0.257972,-0.004128,0.003999,0.249968,0,0);-webkit-transform:matrix(0.257972,-0.004128,0.003999,0.249968,0,0);}
.mff_c01328{transform:matrix(0.258012,-0.004128,0.003999,0.249968,0,0);-ms-transform:matrix(0.258012,-0.004128,0.003999,0.249968,0,0);-webkit-transform:matrix(0.258012,-0.004128,0.003999,0.249968,0,0);}
.m1c_c01328{transform:matrix(0.258457,-0.005945,0.005748,0.249934,0,0);-ms-transform:matrix(0.258457,-0.005945,0.005748,0.249934,0,0);-webkit-transform:matrix(0.258457,-0.005945,0.005748,0.249934,0,0);}
.m100_c01328{transform:matrix(0.258457,-0.004135,0.003999,0.249968,0,0);-ms-transform:matrix(0.258457,-0.004135,0.003999,0.249968,0,0);-webkit-transform:matrix(0.258457,-0.004135,0.003999,0.249968,0,0);}
.ma4_c01328{transform:matrix(0.258500,-0.003619,0.003500,0.249976,0,0);-ms-transform:matrix(0.258500,-0.003619,0.003500,0.249976,0,0);-webkit-transform:matrix(0.258500,-0.003619,0.003500,0.249976,0,0);}
.m16b_c01328{transform:matrix(0.258647,-0.002586,0.002500,0.249988,0,0);-ms-transform:matrix(0.258647,-0.002586,0.002500,0.249988,0,0);-webkit-transform:matrix(0.258647,-0.002586,0.002500,0.249988,0,0);}
.m56_c01328{transform:matrix(0.259138,-0.003369,0.003250,0.249979,0,0);-ms-transform:matrix(0.259138,-0.003369,0.003250,0.249979,0,0);-webkit-transform:matrix(0.259138,-0.003369,0.003250,0.249979,0,0);}
.mdc_c01328{transform:matrix(0.259437,-0.004151,0.003999,0.249968,0,0);-ms-transform:matrix(0.259437,-0.004151,0.003999,0.249968,0,0);-webkit-transform:matrix(0.259437,-0.004151,0.003999,0.249968,0,0);}
.m66_c01328{transform:matrix(0.259473,-0.003373,0.003250,0.249979,0,0);-ms-transform:matrix(0.259473,-0.003373,0.003250,0.249979,0,0);-webkit-transform:matrix(0.259473,-0.003373,0.003250,0.249979,0,0);}
.m37_c01328{transform:matrix(0.259603,-0.003375,0.003250,0.249979,0,0);-ms-transform:matrix(0.259603,-0.003375,0.003250,0.249979,0,0);-webkit-transform:matrix(0.259603,-0.003375,0.003250,0.249979,0,0);}
.m164_c01328{transform:matrix(0.260012,-0.002600,0.002500,0.249988,0,0);-ms-transform:matrix(0.260012,-0.002600,0.002500,0.249988,0,0);-webkit-transform:matrix(0.260012,-0.002600,0.002500,0.249988,0,0);}
.m28_c01328{transform:matrix(0.260138,-0.005463,0.005249,0.249945,0,0);-ms-transform:matrix(0.260138,-0.005463,0.005249,0.249945,0,0);-webkit-transform:matrix(0.260138,-0.005463,0.005249,0.249945,0,0);}
.m16d_c01328{transform:matrix(0.260237,-0.002602,0.002500,0.249988,0,0);-ms-transform:matrix(0.260237,-0.002602,0.002500,0.249988,0,0);-webkit-transform:matrix(0.260237,-0.002602,0.002500,0.249988,0,0);}
.m6c_c01328{transform:matrix(0.260463,-0.003386,0.003250,0.249979,0,0);-ms-transform:matrix(0.260463,-0.003386,0.003250,0.249979,0,0);-webkit-transform:matrix(0.260463,-0.003386,0.003250,0.249979,0,0);}
.m2e_c01328{transform:matrix(0.260548,-0.005471,0.005249,0.249945,0,0);-ms-transform:matrix(0.260548,-0.005471,0.005249,0.249945,0,0);-webkit-transform:matrix(0.260548,-0.005471,0.005249,0.249945,0,0);}
.m51_c01328{transform:matrix(0.260868,-0.003391,0.003250,0.249979,0,0);-ms-transform:matrix(0.260868,-0.003391,0.003250,0.249979,0,0);-webkit-transform:matrix(0.260868,-0.003391,0.003250,0.249979,0,0);}
.m169_c01328{transform:matrix(0.261832,-0.002618,0.002500,0.249988,0,0);-ms-transform:matrix(0.261832,-0.002618,0.002500,0.249988,0,0);-webkit-transform:matrix(0.261832,-0.002618,0.002500,0.249988,0,0);}
.m4e_c01328{transform:matrix(0.261923,-0.003405,0.003250,0.249979,0,0);-ms-transform:matrix(0.261923,-0.003405,0.003250,0.249979,0,0);-webkit-transform:matrix(0.261923,-0.003405,0.003250,0.249979,0,0);}
.m63_c01328{transform:matrix(0.262233,-0.003409,0.003250,0.249979,0,0);-ms-transform:matrix(0.262233,-0.003409,0.003250,0.249979,0,0);-webkit-transform:matrix(0.262233,-0.003409,0.003250,0.249979,0,0);}
.m1e_c01328{transform:matrix(0.262456,-0.006036,0.005748,0.249934,0,0);-ms-transform:matrix(0.262456,-0.006036,0.005748,0.249934,0,0);-webkit-transform:matrix(0.262456,-0.006036,0.005748,0.249934,0,0);}
.m122_c01328{transform:matrix(0.262571,-0.004201,0.003999,0.249968,0,0);-ms-transform:matrix(0.262571,-0.004201,0.003999,0.249968,0,0);-webkit-transform:matrix(0.262571,-0.004201,0.003999,0.249968,0,0);}
.m4a_c01328{transform:matrix(0.262828,-0.003417,0.003250,0.249979,0,0);-ms-transform:matrix(0.262828,-0.003417,0.003250,0.249979,0,0);-webkit-transform:matrix(0.262828,-0.003417,0.003250,0.249979,0,0);}
.m50_c01328{transform:matrix(0.262858,-0.003417,0.003250,0.249979,0,0);-ms-transform:matrix(0.262858,-0.003417,0.003250,0.249979,0,0);-webkit-transform:matrix(0.262858,-0.003417,0.003250,0.249979,0,0);}
.m31_c01328{transform:matrix(0.263158,-0.003421,0.003250,0.249979,0,0);-ms-transform:matrix(0.263158,-0.003421,0.003250,0.249979,0,0);-webkit-transform:matrix(0.263158,-0.003421,0.003250,0.249979,0,0);}
.md_c01328{transform:matrix(0.263236,-0.004212,0.003999,0.249968,0,0);-ms-transform:matrix(0.263236,-0.004212,0.003999,0.249968,0,0);-webkit-transform:matrix(0.263236,-0.004212,0.003999,0.249968,0,0);}
.m93_c01328{transform:matrix(0.263734,-0.003692,0.003500,0.249976,0,0);-ms-transform:matrix(0.263734,-0.003692,0.003500,0.249976,0,0);-webkit-transform:matrix(0.263734,-0.003692,0.003500,0.249976,0,0);}
.mb4_c01328{transform:matrix(0.263791,-0.004221,0.003999,0.249968,0,0);-ms-transform:matrix(0.263791,-0.004221,0.003999,0.249968,0,0);-webkit-transform:matrix(0.263791,-0.004221,0.003999,0.249968,0,0);}
.mf2_c01328{transform:matrix(0.263861,-0.004222,0.003999,0.249968,0,0);-ms-transform:matrix(0.263861,-0.004222,0.003999,0.249968,0,0);-webkit-transform:matrix(0.263861,-0.004222,0.003999,0.249968,0,0);}
.m7e_c01328{transform:matrix(0.263869,-0.003694,0.003500,0.249976,0,0);-ms-transform:matrix(0.263869,-0.003694,0.003500,0.249976,0,0);-webkit-transform:matrix(0.263869,-0.003694,0.003500,0.249976,0,0);}
.m1b_c01328{transform:matrix(0.264315,-0.006079,0.005748,0.249934,0,0);-ms-transform:matrix(0.264315,-0.006079,0.005748,0.249934,0,0);-webkit-transform:matrix(0.264315,-0.006079,0.005748,0.249934,0,0);}
.m23_c01328{transform:matrix(0.264622,-0.005557,0.005249,0.249945,0,0);-ms-transform:matrix(0.264622,-0.005557,0.005249,0.249945,0,0);-webkit-transform:matrix(0.264622,-0.005557,0.005249,0.249945,0,0);}
.m6b_c01328{transform:matrix(0.265668,-0.003454,0.003250,0.249979,0,0);-ms-transform:matrix(0.265668,-0.003454,0.003250,0.249979,0,0);-webkit-transform:matrix(0.265668,-0.003454,0.003250,0.249979,0,0);}
.m30_c01328{transform:matrix(0.266243,-0.003461,0.003250,0.249979,0,0);-ms-transform:matrix(0.266243,-0.003461,0.003250,0.249979,0,0);-webkit-transform:matrix(0.266243,-0.003461,0.003250,0.249979,0,0);}
.m109_c01328{transform:matrix(0.266481,-0.004264,0.003999,0.249968,0,0);-ms-transform:matrix(0.266481,-0.004264,0.003999,0.249968,0,0);-webkit-transform:matrix(0.266481,-0.004264,0.003999,0.249968,0,0);}
.m168_c01328{transform:matrix(0.266697,-0.002667,0.002500,0.249988,0,0);-ms-transform:matrix(0.266697,-0.002667,0.002500,0.249988,0,0);-webkit-transform:matrix(0.266697,-0.002667,0.002500,0.249988,0,0);}
.m54_c01328{transform:matrix(0.266717,-0.003467,0.003250,0.249979,0,0);-ms-transform:matrix(0.266717,-0.003467,0.003250,0.249979,0,0);-webkit-transform:matrix(0.266717,-0.003467,0.003250,0.249979,0,0);}
.m20_c01328{transform:matrix(0.267034,-0.006142,0.005748,0.249934,0,0);-ms-transform:matrix(0.267034,-0.006142,0.005748,0.249934,0,0);-webkit-transform:matrix(0.267034,-0.006142,0.005748,0.249934,0,0);}
.m52_c01328{transform:matrix(0.267082,-0.003472,0.003250,0.249979,0,0);-ms-transform:matrix(0.267082,-0.003472,0.003250,0.249979,0,0);-webkit-transform:matrix(0.267082,-0.003472,0.003250,0.249979,0,0);}
.m1f_c01328{transform:matrix(0.267604,-0.006155,0.005748,0.249934,0,0);-ms-transform:matrix(0.267604,-0.006155,0.005748,0.249934,0,0);-webkit-transform:matrix(0.267604,-0.006155,0.005748,0.249934,0,0);}
.m77_c01328{transform:matrix(0.268174,-0.003754,0.003500,0.249976,0,0);-ms-transform:matrix(0.268174,-0.003754,0.003500,0.249976,0,0);-webkit-transform:matrix(0.268174,-0.003754,0.003500,0.249976,0,0);}
.m149_c01328{transform:matrix(0.268176,-0.004291,0.003999,0.249968,0,0);-ms-transform:matrix(0.268176,-0.004291,0.003999,0.249968,0,0);-webkit-transform:matrix(0.268176,-0.004291,0.003999,0.249968,0,0);}
.m101_c01328{transform:matrix(0.268401,-0.004294,0.003999,0.249968,0,0);-ms-transform:matrix(0.268401,-0.004294,0.003999,0.249968,0,0);-webkit-transform:matrix(0.268401,-0.004294,0.003999,0.249968,0,0);}
.ma0_c01328{transform:matrix(0.269189,-0.003769,0.003500,0.249976,0,0);-ms-transform:matrix(0.269189,-0.003769,0.003500,0.249976,0,0);-webkit-transform:matrix(0.269189,-0.003769,0.003500,0.249976,0,0);}
.m65_c01328{transform:matrix(0.269237,-0.003500,0.003250,0.249979,0,0);-ms-transform:matrix(0.269237,-0.003500,0.003250,0.249979,0,0);-webkit-transform:matrix(0.269237,-0.003500,0.003250,0.249979,0,0);}
.m8_c01328{transform:matrix(0.269875,-0.004318,0.003999,0.249968,0,0);-ms-transform:matrix(0.269875,-0.004318,0.003999,0.249968,0,0);-webkit-transform:matrix(0.269875,-0.004318,0.003999,0.249968,0,0);}
.mf3_c01328{transform:matrix(0.269880,-0.004318,0.003999,0.249968,0,0);-ms-transform:matrix(0.269880,-0.004318,0.003999,0.249968,0,0);-webkit-transform:matrix(0.269880,-0.004318,0.003999,0.249968,0,0);}
.mb_c01328{transform:matrix(0.269940,-0.004319,0.003999,0.249968,0,0);-ms-transform:matrix(0.269940,-0.004319,0.003999,0.249968,0,0);-webkit-transform:matrix(0.269940,-0.004319,0.003999,0.249968,0,0);}
.m91_c01328{transform:matrix(0.270289,-0.003784,0.003500,0.249976,0,0);-ms-transform:matrix(0.270289,-0.003784,0.003500,0.249976,0,0);-webkit-transform:matrix(0.270289,-0.003784,0.003500,0.249976,0,0);}
.m135_c01328{transform:matrix(0.270325,-0.004325,0.003999,0.249968,0,0);-ms-transform:matrix(0.270325,-0.004325,0.003999,0.249968,0,0);-webkit-transform:matrix(0.270325,-0.004325,0.003999,0.249968,0,0);}
.ma2_c01328{transform:matrix(0.270369,-0.003785,0.003500,0.249976,0,0);-ms-transform:matrix(0.270369,-0.003785,0.003500,0.249976,0,0);-webkit-transform:matrix(0.270369,-0.003785,0.003500,0.249976,0,0);}
.m17e_c01328{transform:matrix(0.270820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270820,0.000000,0.000000,0.250000,0,0);}
.ma5_c01328{transform:matrix(0.271098,-0.003795,0.003500,0.249976,0,0);-ms-transform:matrix(0.271098,-0.003795,0.003500,0.249976,0,0);-webkit-transform:matrix(0.271098,-0.003795,0.003500,0.249976,0,0);}
.m17b_c01328{transform:matrix(0.271355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271355,0.000000,0.000000,0.250000,0,0);}
.m8c_c01328{transform:matrix(0.271633,-0.003803,0.003500,0.249976,0,0);-ms-transform:matrix(0.271633,-0.003803,0.003500,0.249976,0,0);-webkit-transform:matrix(0.271633,-0.003803,0.003500,0.249976,0,0);}
.m179_c01328{transform:matrix(0.271765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271765,0.000000,0.000000,0.250000,0,0);}
.m106_c01328{transform:matrix(0.271940,-0.004351,0.003999,0.249968,0,0);-ms-transform:matrix(0.271940,-0.004351,0.003999,0.249968,0,0);-webkit-transform:matrix(0.271940,-0.004351,0.003999,0.249968,0,0);}
.m13b_c01328{transform:matrix(0.271945,-0.004351,0.003999,0.249968,0,0);-ms-transform:matrix(0.271945,-0.004351,0.003999,0.249968,0,0);-webkit-transform:matrix(0.271945,-0.004351,0.003999,0.249968,0,0);}
.m67_c01328{transform:matrix(0.272197,-0.003539,0.003250,0.249979,0,0);-ms-transform:matrix(0.272197,-0.003539,0.003250,0.249979,0,0);-webkit-transform:matrix(0.272197,-0.003539,0.003250,0.249979,0,0);}
.m36_c01328{transform:matrix(0.272212,-0.003539,0.003250,0.249979,0,0);-ms-transform:matrix(0.272212,-0.003539,0.003250,0.249979,0,0);-webkit-transform:matrix(0.272212,-0.003539,0.003250,0.249979,0,0);}
.m108_c01328{transform:matrix(0.272320,-0.004357,0.003999,0.249968,0,0);-ms-transform:matrix(0.272320,-0.004357,0.003999,0.249968,0,0);-webkit-transform:matrix(0.272320,-0.004357,0.003999,0.249968,0,0);}
.m136_c01328{transform:matrix(0.272395,-0.004358,0.003999,0.249968,0,0);-ms-transform:matrix(0.272395,-0.004358,0.003999,0.249968,0,0);-webkit-transform:matrix(0.272395,-0.004358,0.003999,0.249968,0,0);}
.m16e_c01328{transform:matrix(0.273201,-0.002732,0.002500,0.249988,0,0);-ms-transform:matrix(0.273201,-0.002732,0.002500,0.249988,0,0);-webkit-transform:matrix(0.273201,-0.002732,0.002500,0.249988,0,0);}
.ma8_c01328{transform:matrix(0.273253,-0.003826,0.003500,0.249976,0,0);-ms-transform:matrix(0.273253,-0.003826,0.003500,0.249976,0,0);-webkit-transform:matrix(0.273253,-0.003826,0.003500,0.249976,0,0);}
.m69_c01328{transform:matrix(0.274652,-0.003570,0.003250,0.249979,0,0);-ms-transform:matrix(0.274652,-0.003570,0.003250,0.249979,0,0);-webkit-transform:matrix(0.274652,-0.003570,0.003250,0.249979,0,0);}
.mef_c01328{transform:matrix(0.275145,-0.004402,0.003999,0.249968,0,0);-ms-transform:matrix(0.275145,-0.004402,0.003999,0.249968,0,0);-webkit-transform:matrix(0.275145,-0.004402,0.003999,0.249968,0,0);}
.m99_c01328{transform:matrix(0.275773,-0.003861,0.003500,0.249976,0,0);-ms-transform:matrix(0.275773,-0.003861,0.003500,0.249976,0,0);-webkit-transform:matrix(0.275773,-0.003861,0.003500,0.249976,0,0);}
.m9c_c01328{transform:matrix(0.276063,-0.003865,0.003500,0.249976,0,0);-ms-transform:matrix(0.276063,-0.003865,0.003500,0.249976,0,0);-webkit-transform:matrix(0.276063,-0.003865,0.003500,0.249976,0,0);}
.m16_c01328{transform:matrix(0.276107,-0.006350,0.005748,0.249934,0,0);-ms-transform:matrix(0.276107,-0.006350,0.005748,0.249934,0,0);-webkit-transform:matrix(0.276107,-0.006350,0.005748,0.249934,0,0);}
.m9b_c01328{transform:matrix(0.276483,-0.003871,0.003500,0.249976,0,0);-ms-transform:matrix(0.276483,-0.003871,0.003500,0.249976,0,0);-webkit-transform:matrix(0.276483,-0.003871,0.003500,0.249976,0,0);}
.m104_c01328{transform:matrix(0.276720,-0.004428,0.003999,0.249968,0,0);-ms-transform:matrix(0.276720,-0.004428,0.003999,0.249968,0,0);-webkit-transform:matrix(0.276720,-0.004428,0.003999,0.249968,0,0);}
.m4b_c01328{transform:matrix(0.277167,-0.003603,0.003250,0.249979,0,0);-ms-transform:matrix(0.277167,-0.003603,0.003250,0.249979,0,0);-webkit-transform:matrix(0.277167,-0.003603,0.003250,0.249979,0,0);}
.m49_c01328{transform:matrix(0.277422,-0.003606,0.003250,0.249979,0,0);-ms-transform:matrix(0.277422,-0.003606,0.003250,0.249979,0,0);-webkit-transform:matrix(0.277422,-0.003606,0.003250,0.249979,0,0);}
.me_c01328{transform:matrix(0.277634,-0.004442,0.003999,0.249968,0,0);-ms-transform:matrix(0.277634,-0.004442,0.003999,0.249968,0,0);-webkit-transform:matrix(0.277634,-0.004442,0.003999,0.249968,0,0);}
.m64_c01328{transform:matrix(0.277902,-0.003613,0.003250,0.249979,0,0);-ms-transform:matrix(0.277902,-0.003613,0.003250,0.249979,0,0);-webkit-transform:matrix(0.277902,-0.003613,0.003250,0.249979,0,0);}
.m19_c01328{transform:matrix(0.278361,-0.006402,0.005748,0.249934,0,0);-ms-transform:matrix(0.278361,-0.006402,0.005748,0.249934,0,0);-webkit-transform:matrix(0.278361,-0.006402,0.005748,0.249934,0,0);}
.m68_c01328{transform:matrix(0.278526,-0.003621,0.003250,0.249979,0,0);-ms-transform:matrix(0.278526,-0.003621,0.003250,0.249979,0,0);-webkit-transform:matrix(0.278526,-0.003621,0.003250,0.249979,0,0);}
.me9_c01328{transform:matrix(0.279949,-0.004479,0.003999,0.249968,0,0);-ms-transform:matrix(0.279949,-0.004479,0.003999,0.249968,0,0);-webkit-transform:matrix(0.279949,-0.004479,0.003999,0.249968,0,0);}
.m6_c01328{transform:matrix(0.280464,-0.004487,0.003999,0.249968,0,0);-ms-transform:matrix(0.280464,-0.004487,0.003999,0.249968,0,0);-webkit-transform:matrix(0.280464,-0.004487,0.003999,0.249968,0,0);}
.m9_c01328{transform:matrix(0.280739,-0.004492,0.003999,0.249968,0,0);-ms-transform:matrix(0.280739,-0.004492,0.003999,0.249968,0,0);-webkit-transform:matrix(0.280739,-0.004492,0.003999,0.249968,0,0);}
.m90_c01328{transform:matrix(0.281222,-0.003937,0.003500,0.249976,0,0);-ms-transform:matrix(0.281222,-0.003937,0.003500,0.249976,0,0);-webkit-transform:matrix(0.281222,-0.003937,0.003500,0.249976,0,0);}
.m13c_c01328{transform:matrix(0.281644,-0.004506,0.003999,0.249968,0,0);-ms-transform:matrix(0.281644,-0.004506,0.003999,0.249968,0,0);-webkit-transform:matrix(0.281644,-0.004506,0.003999,0.249968,0,0);}
.m176_c01328{transform:matrix(0.281725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281725,0.000000,0.000000,0.250000,0,0);}
.ma6_c01328{transform:matrix(0.281797,-0.003945,0.003500,0.249976,0,0);-ms-transform:matrix(0.281797,-0.003945,0.003500,0.249976,0,0);-webkit-transform:matrix(0.281797,-0.003945,0.003500,0.249976,0,0);}
.m16c_c01328{transform:matrix(0.281911,-0.002819,0.002500,0.249988,0,0);-ms-transform:matrix(0.281911,-0.002819,0.002500,0.249988,0,0);-webkit-transform:matrix(0.281911,-0.002819,0.002500,0.249988,0,0);}
.m138_c01328{transform:matrix(0.287108,-0.004594,0.003999,0.249968,0,0);-ms-transform:matrix(0.287108,-0.004594,0.003999,0.249968,0,0);-webkit-transform:matrix(0.287108,-0.004594,0.003999,0.249968,0,0);}
.m17c_c01328{transform:matrix(0.288545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288545,0.000000,0.000000,0.250000,0,0);}
.me6_c01328{transform:matrix(0.288953,-0.004623,0.003999,0.249968,0,0);-ms-transform:matrix(0.288953,-0.004623,0.003999,0.249968,0,0);-webkit-transform:matrix(0.288953,-0.004623,0.003999,0.249968,0,0);}
.m103_c01328{transform:matrix(0.291838,-0.004669,0.003999,0.249968,0,0);-ms-transform:matrix(0.291838,-0.004669,0.003999,0.249968,0,0);-webkit-transform:matrix(0.291838,-0.004669,0.003999,0.249968,0,0);}
.ma9_c01328{transform:matrix(0.292471,-0.004095,0.003500,0.249976,0,0);-ms-transform:matrix(0.292471,-0.004095,0.003500,0.249976,0,0);-webkit-transform:matrix(0.292471,-0.004095,0.003500,0.249976,0,0);}
.m5_c01328{transform:matrix(0.292948,-0.007910,0.006748,0.249909,0,0);-ms-transform:matrix(0.292948,-0.007910,0.006748,0.249909,0,0);-webkit-transform:matrix(0.292948,-0.007910,0.006748,0.249909,0,0);}
.m177_c01328{transform:matrix(0.294705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294705,0.000000,0.000000,0.250000,0,0);}
.me8_c01328{transform:matrix(0.294917,-0.004719,0.003999,0.249968,0,0);-ms-transform:matrix(0.294917,-0.004719,0.003999,0.249968,0,0);-webkit-transform:matrix(0.294917,-0.004719,0.003999,0.249968,0,0);}
.m76_c01328{transform:matrix(0.295236,-0.004133,0.003500,0.249976,0,0);-ms-transform:matrix(0.295236,-0.004133,0.003500,0.249976,0,0);-webkit-transform:matrix(0.295236,-0.004133,0.003500,0.249976,0,0);}
.m7c_c01328{transform:matrix(0.298261,-0.004176,0.003500,0.249976,0,0);-ms-transform:matrix(0.298261,-0.004176,0.003500,0.249976,0,0);-webkit-transform:matrix(0.298261,-0.004176,0.003500,0.249976,0,0);}
.m21_c01328{transform:matrix(0.306929,-0.007059,0.005748,0.249934,0,0);-ms-transform:matrix(0.306929,-0.007059,0.005748,0.249934,0,0);-webkit-transform:matrix(0.306929,-0.007059,0.005748,0.249934,0,0);}
.mc0_c01328{transform:matrix(0.307831,-0.004925,0.003999,0.249968,0,0);-ms-transform:matrix(0.307831,-0.004925,0.003999,0.249968,0,0);-webkit-transform:matrix(0.307831,-0.004925,0.003999,0.249968,0,0);}
.mf_c01328{transform:matrix(0.309195,-0.004947,0.003999,0.249968,0,0);-ms-transform:matrix(0.309195,-0.004947,0.003999,0.249968,0,0);-webkit-transform:matrix(0.309195,-0.004947,0.003999,0.249968,0,0);}
.m175_c01328{transform:matrix(0.316260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316260,0.000000,0.000000,0.250000,0,0);}
.m13d_c01328{transform:matrix(0.316834,-0.005069,0.003999,0.249968,0,0);-ms-transform:matrix(0.316834,-0.005069,0.003999,0.249968,0,0);-webkit-transform:matrix(0.316834,-0.005069,0.003999,0.249968,0,0);}
.m12b_c01328{transform:matrix(0.319754,-0.005116,0.003999,0.249968,0,0);-ms-transform:matrix(0.319754,-0.005116,0.003999,0.249968,0,0);-webkit-transform:matrix(0.319754,-0.005116,0.003999,0.249968,0,0);}
.m3_c01328{transform:matrix(0.325976,-0.008801,0.006748,0.249909,0,0);-ms-transform:matrix(0.325976,-0.008801,0.006748,0.249909,0,0);-webkit-transform:matrix(0.325976,-0.008801,0.006748,0.249909,0,0);}
.m10_c01328{transform:matrix(0.328773,-0.005260,0.003999,0.249968,0,0);-ms-transform:matrix(0.328773,-0.005260,0.003999,0.249968,0,0);-webkit-transform:matrix(0.328773,-0.005260,0.003999,0.249968,0,0);}
.m8d_c01328{transform:matrix(0.332627,-0.004657,0.003500,0.249976,0,0);-ms-transform:matrix(0.332627,-0.004657,0.003500,0.249976,0,0);-webkit-transform:matrix(0.332627,-0.004657,0.003500,0.249976,0,0);}
.mf0_c01328{transform:matrix(0.346996,-0.005552,0.003999,0.249968,0,0);-ms-transform:matrix(0.346996,-0.005552,0.003999,0.249968,0,0);-webkit-transform:matrix(0.346996,-0.005552,0.003999,0.249968,0,0);}
.m13_c01328{transform:matrix(0.355854,-0.005694,0.003999,0.249968,0,0);-ms-transform:matrix(0.355854,-0.005694,0.003999,0.249968,0,0);-webkit-transform:matrix(0.355854,-0.005694,0.003999,0.249968,0,0);}
.m80_c01328{transform:matrix(0.375043,-0.005251,0.003500,0.249976,0,0);-ms-transform:matrix(0.375043,-0.005251,0.003500,0.249976,0,0);-webkit-transform:matrix(0.375043,-0.005251,0.003500,0.249976,0,0);}
.m17a_c01328{transform:matrix(0.386540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386540,0.000000,0.000000,0.250000,0,0);}
.m22_c01328{transform:matrix(0.392736,-0.009033,0.005748,0.249934,0,0);-ms-transform:matrix(0.392736,-0.009033,0.005748,0.249934,0,0);-webkit-transform:matrix(0.392736,-0.009033,0.005748,0.249934,0,0);}
.m156_c01328{transform:matrix(0.398459,-0.006375,0.003999,0.249968,0,0);-ms-transform:matrix(0.398459,-0.006375,0.003999,0.249968,0,0);-webkit-transform:matrix(0.398459,-0.006375,0.003999,0.249968,0,0);}
.m2f_c01328{transform:matrix(0.399087,-0.008381,0.005249,0.249945,0,0);-ms-transform:matrix(0.399087,-0.008381,0.005249,0.249945,0,0);-webkit-transform:matrix(0.399087,-0.008381,0.005249,0.249945,0,0);}
.m9e_c01328{transform:matrix(0.419169,-0.005868,0.003500,0.249976,0,0);-ms-transform:matrix(0.419169,-0.005868,0.003500,0.249976,0,0);-webkit-transform:matrix(0.419169,-0.005868,0.003500,0.249976,0,0);}
.m10b_c01328{transform:matrix(0.419981,-0.006720,0.003999,0.249968,0,0);-ms-transform:matrix(0.419981,-0.006720,0.003999,0.249968,0,0);-webkit-transform:matrix(0.419981,-0.006720,0.003999,0.249968,0,0);}
.mda_c01328{transform:matrix(0.421701,-0.006747,0.003999,0.249968,0,0);-ms-transform:matrix(0.421701,-0.006747,0.003999,0.249968,0,0);-webkit-transform:matrix(0.421701,-0.006747,0.003999,0.249968,0,0);}
.m134_c01328{transform:matrix(0.431340,-0.006901,0.003999,0.249968,0,0);-ms-transform:matrix(0.431340,-0.006901,0.003999,0.249968,0,0);-webkit-transform:matrix(0.431340,-0.006901,0.003999,0.249968,0,0);}
.m10a_c01328{transform:matrix(0.442913,-0.007087,0.003999,0.249968,0,0);-ms-transform:matrix(0.442913,-0.007087,0.003999,0.249968,0,0);-webkit-transform:matrix(0.442913,-0.007087,0.003999,0.249968,0,0);}
.m123_c01328{transform:matrix(0.458186,-0.007331,0.003999,0.249968,0,0);-ms-transform:matrix(0.458186,-0.007331,0.003999,0.249968,0,0);-webkit-transform:matrix(0.458186,-0.007331,0.003999,0.249968,0,0);}
.mf4_c01328{transform:matrix(0.502691,-0.008043,0.003999,0.249968,0,0);-ms-transform:matrix(0.502691,-0.008043,0.003999,0.249968,0,0);-webkit-transform:matrix(0.502691,-0.008043,0.003999,0.249968,0,0);}
.m10c_c01328{transform:matrix(0.519454,-0.008311,0.003999,0.249968,0,0);-ms-transform:matrix(0.519454,-0.008311,0.003999,0.249968,0,0);-webkit-transform:matrix(0.519454,-0.008311,0.003999,0.249968,0,0);}
.me7_c01328{transform:matrix(0.540476,-0.008648,0.003999,0.249968,0,0);-ms-transform:matrix(0.540476,-0.008648,0.003999,0.249968,0,0);-webkit-transform:matrix(0.540476,-0.008648,0.003999,0.249968,0,0);}
.m53_c01328{transform:matrix(0.565692,-0.007354,0.003250,0.249979,0,0);-ms-transform:matrix(0.565692,-0.007354,0.003250,0.249979,0,0);-webkit-transform:matrix(0.565692,-0.007354,0.003250,0.249979,0,0);}
.m9d_c01328{transform:matrix(0.591977,-0.008288,0.003500,0.249976,0,0);-ms-transform:matrix(0.591977,-0.008288,0.003500,0.249976,0,0);-webkit-transform:matrix(0.591977,-0.008288,0.003500,0.249976,0,0);}
.m133_c01328{transform:matrix(0.655781,-0.010492,0.003999,0.249968,0,0);-ms-transform:matrix(0.655781,-0.010492,0.003999,0.249968,0,0);-webkit-transform:matrix(0.655781,-0.010492,0.003999,0.249968,0,0);}
.m11_c01328{transform:matrix(0.697856,-0.011166,0.003999,0.249968,0,0);-ms-transform:matrix(0.697856,-0.011166,0.003999,0.249968,0,0);-webkit-transform:matrix(0.697856,-0.011166,0.003999,0.249968,0,0);}
.m170_c01328{transform:matrix(0.763482,-0.007635,0.002500,0.249988,0,0);-ms-transform:matrix(0.763482,-0.007635,0.002500,0.249988,0,0);-webkit-transform:matrix(0.763482,-0.007635,0.002500,0.249988,0,0);}
.m0_c01328{transform:matrix(0.792005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.792005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.792005,0.000000,0.000000,0.250000,0,0);}
.m1_c01328{transform:matrix(1.487595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.487595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.487595,0.000000,0.000000,0.250000,0,0);}
.m172_c01328{transform:matrix(6.593065,-0.065931,0.002500,0.249988,0,0);-ms-transform:matrix(6.593065,-0.065931,0.002500,0.249988,0,0);-webkit-transform:matrix(6.593065,-0.065931,0.002500,0.249988,0,0);}
.v0_c01328{vertical-align:0.000000px;}
.ls0_c01328{letter-spacing:0.000000px;}
.sc__c01328{text-shadow:none;}
.sc0_c01328{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__c01328{-webkit-text-stroke:0px transparent;}
.sc0_c01328{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01328{word-spacing:0.000000px;}
._1_c01328{width:32.235723px;}
._0_c01328{width:44.600493px;}
.fc0_c01328{color:transparent;}
.fs0_c01328{font-size:24.000000px;}
.fs15_c01328{font-size:24.001200px;}
.fs3_c01328{font-size:42.005376px;}
.fs1_c01328{font-size:60.021866px;}
.fs16_c01328{font-size:72.000000px;}
.fs14_c01328{font-size:72.003600px;}
.fs8_c01328{font-size:72.006084px;}
.fsc_c01328{font-size:72.007056px;}
.fs2_c01328{font-size:72.009215px;}
.fs4_c01328{font-size:72.019041px;}
.fs6_c01328{font-size:78.006591px;}
.fsd_c01328{font-size:78.009983px;}
.fs5_c01328{font-size:78.017197px;}
.fsa_c01328{font-size:84.008232px;}
.fs13_c01328{font-size:84.010751px;}
.fsb_c01328{font-size:90.008820px;}
.fsf_c01328{font-size:90.011519px;}
.fs12_c01328{font-size:96.012287px;}
.fse_c01328{font-size:102.013055px;}
.fs9_c01328{font-size:108.010583px;}
.fs7_c01328{font-size:120.010140px;}
.fs10_c01328{font-size:120.015359px;}
.fs11_c01328{font-size:132.016895px;}
.y0_c01328{bottom:0.000000px;}
.y17b_c01328{bottom:48.606000px;}
.y179_c01328{bottom:77.221755px;}
.y17a_c01328{bottom:88.479720px;}
.y16a_c01328{bottom:100.441500px;}
.y16b_c01328{bottom:100.981980px;}
.y16c_c01328{bottom:101.319330px;}
.y16d_c01328{bottom:101.753985px;}
.y16e_c01328{bottom:102.075300px;}
.y16f_c01328{bottom:102.518460px;}
.y170_c01328{bottom:103.279545px;}
.y171_c01328{bottom:103.830375px;}
.y172_c01328{bottom:104.160135px;}
.y173_c01328{bottom:104.486820px;}
.y174_c01328{bottom:105.588015px;}
.y175_c01328{bottom:105.931305px;}
.y176_c01328{bottom:106.684590px;}
.y177_c01328{bottom:107.037000px;}
.y178_c01328{bottom:107.820885px;}
.y15e_c01328{bottom:135.473604px;}
.y15f_c01328{bottom:136.129320px;}
.y160_c01328{bottom:136.458792px;}
.y161_c01328{bottom:137.770548px;}
.y162_c01328{bottom:138.312888px;}
.y163_c01328{bottom:138.532896px;}
.y164_c01328{bottom:139.188240px;}
.y165_c01328{bottom:139.525836px;}
.y166_c01328{bottom:140.743008px;}
.y167_c01328{bottom:141.171840px;}
.y168_c01328{bottom:141.510996px;}
.y169_c01328{bottom:142.177800px;}
.y151_c01328{bottom:171.119436px;}
.y152_c01328{bottom:171.335376px;}
.y153_c01328{bottom:171.667116px;}
.y154_c01328{bottom:172.104456px;}
.y155_c01328{bottom:172.425612px;}
.y156_c01328{bottom:172.863000px;}
.y157_c01328{bottom:173.737752px;}
.y158_c01328{bottom:174.834648px;}
.y159_c01328{bottom:175.166556px;}
.y15a_c01328{bottom:175.715136px;}
.y15b_c01328{bottom:176.816196px;}
.y15c_c01328{bottom:177.369792px;}
.y15d_c01328{bottom:177.800616px;}
.y145_c01328{bottom:202.715544px;}
.y146_c01328{bottom:204.065136px;}
.y147_c01328{bottom:204.496908px;}
.y148_c01328{bottom:205.316820px;}
.y149_c01328{bottom:205.767144px;}
.y14a_c01328{bottom:206.828724px;}
.y14b_c01328{bottom:207.131688px;}
.y14c_c01328{bottom:208.068708px;}
.y14d_c01328{bottom:208.360284px;}
.y14e_c01328{bottom:209.604492px;}
.y14f_c01328{bottom:210.975336px;}
.y150_c01328{bottom:211.443324px;}
.y139_c01328{bottom:240.248808px;}
.y13a_c01328{bottom:241.295304px;}
.y13b_c01328{bottom:241.818600px;}
.y13c_c01328{bottom:242.752260px;}
.y13d_c01328{bottom:243.791736px;}
.y13e_c01328{bottom:244.182180px;}
.y13f_c01328{bottom:245.103408px;}
.y140_c01328{bottom:245.372664px;}
.y141_c01328{bottom:245.784852px;}
.y142_c01328{bottom:246.958152px;}
.y143_c01328{bottom:248.046552px;}
.y144_c01328{bottom:248.630808px;}
.y12b_c01328{bottom:274.274808px;}
.y12c_c01328{bottom:274.845816px;}
.y12d_c01328{bottom:275.710608px;}
.y12e_c01328{bottom:276.387720px;}
.y12f_c01328{bottom:277.083120px;}
.y130_c01328{bottom:278.508720px;}
.y131_c01328{bottom:278.832504px;}
.y132_c01328{bottom:279.368112px;}
.y133_c01328{bottom:280.603464px;}
.y134_c01328{bottom:281.671296px;}
.y135_c01328{bottom:281.998632px;}
.y136_c01328{bottom:283.227456px;}
.y137_c01328{bottom:283.769592px;}
.y138_c01328{bottom:285.332184px;}
.y11d_c01328{bottom:310.727364px;}
.y11e_c01328{bottom:311.420220px;}
.y11f_c01328{bottom:312.679740px;}
.y120_c01328{bottom:312.985224px;}
.y121_c01328{bottom:313.541292px;}
.y122_c01328{bottom:314.264472px;}
.y123_c01328{bottom:315.109776px;}
.y124_c01328{bottom:315.547944px;}
.y125_c01328{bottom:316.110768px;}
.y126_c01328{bottom:316.973340px;}
.y127_c01328{bottom:317.275932px;}
.y128_c01328{bottom:317.991852px;}
.y129_c01328{bottom:319.770684px;}
.y12a_c01328{bottom:320.270640px;}
.y112_c01328{bottom:342.055008px;}
.y113_c01328{bottom:342.779400px;}
.y114_c01328{bottom:343.519788px;}
.y115_c01328{bottom:344.616696px;}
.y116_c01328{bottom:345.755412px;}
.y117_c01328{bottom:347.426964px;}
.y118_c01328{bottom:348.532512px;}
.y119_c01328{bottom:349.652952px;}
.y11a_c01328{bottom:350.399628px;}
.y11b_c01328{bottom:350.775144px;}
.y11c_c01328{bottom:352.083180px;}
.y104_c01328{bottom:380.574264px;}
.y105_c01328{bottom:381.166380px;}
.y106_c01328{bottom:381.763272px;}
.y107_c01328{bottom:382.605960px;}
.y108_c01328{bottom:383.070216px;}
.y109_c01328{bottom:383.934192px;}
.y10a_c01328{bottom:385.008528px;}
.y10b_c01328{bottom:385.373388px;}
.y10c_c01328{bottom:386.216844px;}
.y10d_c01328{bottom:386.587440px;}
.y10e_c01328{bottom:387.305856px;}
.y10f_c01328{bottom:387.672156px;}
.y110_c01328{bottom:388.483284px;}
.y111_c01328{bottom:388.578120px;}
.yfa_c01328{bottom:413.348688px;}
.yfb_c01328{bottom:415.212300px;}
.yfc_c01328{bottom:416.698860px;}
.yfd_c01328{bottom:417.250260px;}
.yfe_c01328{bottom:418.926132px;}
.yff_c01328{bottom:420.244380px;}
.y100_c01328{bottom:420.991944px;}
.y101_c01328{bottom:423.042120px;}
.y102_c01328{bottom:423.796440px;}
.y103_c01328{bottom:424.542036px;}
.yed_c01328{bottom:450.884940px;}
.yee_c01328{bottom:451.548348px;}
.yef_c01328{bottom:452.171556px;}
.yf0_c01328{bottom:453.331320px;}
.yf1_c01328{bottom:453.848844px;}
.yf2_c01328{bottom:454.994928px;}
.yf3_c01328{bottom:455.472948px;}
.yf4_c01328{bottom:456.618864px;}
.yf5_c01328{bottom:457.457508px;}
.yf6_c01328{bottom:457.927080px;}
.yf7_c01328{bottom:459.604368px;}
.yf8_c01328{bottom:460.409952px;}
.yf9_c01328{bottom:461.555100px;}
.ye0_c01328{bottom:485.173908px;}
.ye1_c01328{bottom:486.591348px;}
.ye2_c01328{bottom:487.157376px;}
.ye3_c01328{bottom:487.866324px;}
.ye4_c01328{bottom:488.733384px;}
.ye5_c01328{bottom:489.288996px;}
.ye6_c01328{bottom:489.724344px;}
.ye7_c01328{bottom:490.723920px;}
.ye8_c01328{bottom:491.143248px;}
.ye9_c01328{bottom:492.290148px;}
.yea_c01328{bottom:492.715152px;}
.yeb_c01328{bottom:493.155864px;}
.yec_c01328{bottom:494.528676px;}
.yd2_c01328{bottom:521.899680px;}
.yd3_c01328{bottom:522.386112px;}
.yd4_c01328{bottom:523.205160px;}
.yd5_c01328{bottom:523.707984px;}
.yd6_c01328{bottom:525.339180px;}
.yd7_c01328{bottom:525.829284px;}
.yd8_c01328{bottom:527.474088px;}
.yd9_c01328{bottom:529.113996px;}
.yda_c01328{bottom:529.616676px;}
.ydb_c01328{bottom:530.426004px;}
.ydc_c01328{bottom:530.777748px;}
.ydd_c01328{bottom:531.277092px;}
.yde_c01328{bottom:532.239480px;}
.ydf_c01328{bottom:532.594680px;}
.yc5_c01328{bottom:558.084228px;}
.y2_c01328{bottom:558.090000px;}
.yc6_c01328{bottom:558.603180px;}
.yc7_c01328{bottom:559.287180px;}
.yc8_c01328{bottom:561.036684px;}
.yc9_c01328{bottom:561.563460px;}
.y1_c01328{bottom:561.870000px;}
.yca_c01328{bottom:562.488516px;}
.ycb_c01328{bottom:563.308932px;}
.ycc_c01328{bottom:564.367548px;}
.ycd_c01328{bottom:564.891036px;}
.yce_c01328{bottom:565.952580px;}
.ycf_c01328{bottom:566.881404px;}
.yd0_c01328{bottom:568.237860px;}
.yd1_c01328{bottom:568.605708px;}
.yb9_c01328{bottom:591.299124px;}
.yba_c01328{bottom:592.509120px;}
.ybb_c01328{bottom:593.891904px;}
.ybc_c01328{bottom:594.294240px;}
.ybd_c01328{bottom:595.892136px;}
.ybe_c01328{bottom:596.508036px;}
.ybf_c01328{bottom:597.429948px;}
.yc0_c01328{bottom:598.191156px;}
.yc1_c01328{bottom:598.810104px;}
.yc2_c01328{bottom:599.116668px;}
.yc3_c01328{bottom:600.198360px;}
.yc4_c01328{bottom:600.646356px;}
.yae_c01328{bottom:624.784500px;}
.yaf_c01328{bottom:625.841868px;}
.yb0_c01328{bottom:626.698164px;}
.yb1_c01328{bottom:627.583644px;}
.yb2_c01328{bottom:628.827084px;}
.yb3_c01328{bottom:629.332884px;}
.yb4_c01328{bottom:630.542388px;}
.yb5_c01328{bottom:631.265196px;}
.yb6_c01328{bottom:633.014580px;}
.yb7_c01328{bottom:633.874428px;}
.yb8_c01328{bottom:634.416300px;}
.ya2_c01328{bottom:660.421500px;}
.ya3_c01328{bottom:660.954963px;}
.ya4_c01328{bottom:661.715730px;}
.ya5_c01328{bottom:662.777385px;}
.ya6_c01328{bottom:663.397977px;}
.ya7_c01328{bottom:664.629711px;}
.ya8_c01328{bottom:665.234973px;}
.ya9_c01328{bottom:666.002670px;}
.yaa_c01328{bottom:666.929106px;}
.yab_c01328{bottom:668.466726px;}
.yac_c01328{bottom:668.758437px;}
.yad_c01328{bottom:669.537306px;}
.y92_c01328{bottom:696.321498px;}
.y93_c01328{bottom:696.823050px;}
.y94_c01328{bottom:697.483866px;}
.y95_c01328{bottom:697.816179px;}
.y96_c01328{bottom:698.954229px;}
.y97_c01328{bottom:699.287214px;}
.y98_c01328{bottom:700.255260px;}
.y99_c01328{bottom:700.765536px;}
.y9a_c01328{bottom:701.579967px;}
.y9b_c01328{bottom:702.087093px;}
.y9c_c01328{bottom:702.756066px;}
.y9d_c01328{bottom:703.395348px;}
.y9e_c01328{bottom:704.706480px;}
.y9f_c01328{bottom:705.209061px;}
.ya0_c01328{bottom:706.520592px;}
.ya1_c01328{bottom:707.215950px;}
.y85_c01328{bottom:731.694564px;}
.y86_c01328{bottom:731.998413px;}
.y87_c01328{bottom:733.809285px;}
.y88_c01328{bottom:734.895048px;}
.y89_c01328{bottom:735.366645px;}
.y8a_c01328{bottom:736.281426px;}
.y8b_c01328{bottom:736.749684px;}
.y8c_c01328{bottom:737.075625px;}
.y8d_c01328{bottom:738.276972px;}
.y8e_c01328{bottom:738.595206px;}
.y8f_c01328{bottom:739.661376px;}
.y90_c01328{bottom:741.205632px;}
.y91_c01328{bottom:741.964656px;}
.y78_c01328{bottom:764.894184px;}
.y79_c01328{bottom:765.503811px;}
.y7a_c01328{bottom:766.050597px;}
.y7b_c01328{bottom:768.628869px;}
.y7c_c01328{bottom:769.200903px;}
.y7d_c01328{bottom:770.664534px;}
.y7e_c01328{bottom:771.219351px;}
.y7f_c01328{bottom:771.811908px;}
.y80_c01328{bottom:773.680137px;}
.y81_c01328{bottom:774.231174px;}
.y82_c01328{bottom:774.997350px;}
.y83_c01328{bottom:776.314542px;}
.y84_c01328{bottom:777.445014px;}
.y6e_c01328{bottom:801.633000px;}
.y6f_c01328{bottom:802.393389px;}
.y70_c01328{bottom:803.916792px;}
.y71_c01328{bottom:804.378015px;}
.y72_c01328{bottom:805.303548px;}
.y73_c01328{bottom:805.602924px;}
.y74_c01328{bottom:806.865738px;}
.y75_c01328{bottom:809.598783px;}
.y76_c01328{bottom:810.067776px;}
.y77_c01328{bottom:811.894776px;}
.y24_c01328{bottom:835.117500px;}
.y25_c01328{bottom:836.988316px;}
.y26_c01328{bottom:837.663740px;}
.y27_c01328{bottom:839.501260px;}
.y28_c01328{bottom:841.100201px;}
.y29_c01328{bottom:842.269638px;}
.y2a_c01328{bottom:844.570430px;}
.y2b_c01328{bottom:845.261287px;}
.y2c_c01328{bottom:846.158848px;}
.y2d_c01328{bottom:847.784123px;}
.y2e_c01328{bottom:848.260907px;}
.y2f_c01328{bottom:848.959577px;}
.y30_c01328{bottom:850.903064px;}
.y63_c01328{bottom:870.741122px;}
.y64_c01328{bottom:871.319487px;}
.y65_c01328{bottom:872.491696px;}
.y66_c01328{bottom:874.450804px;}
.y67_c01328{bottom:875.650813px;}
.y68_c01328{bottom:876.428511px;}
.y69_c01328{bottom:878.012583px;}
.y6a_c01328{bottom:879.975006px;}
.y6b_c01328{bottom:881.164937px;}
.y6c_c01328{bottom:881.768293px;}
.y6d_c01328{bottom:882.983332px;}
.y55_c01328{bottom:906.907625px;}
.y56_c01328{bottom:908.216449px;}
.y57_c01328{bottom:908.957022px;}
.y58_c01328{bottom:910.811113px;}
.y59_c01328{bottom:911.366207px;}
.y5a_c01328{bottom:912.866593px;}
.y5b_c01328{bottom:913.450773px;}
.y5c_c01328{bottom:913.978748px;}
.y5d_c01328{bottom:914.542048px;}
.y5e_c01328{bottom:915.649544px;}
.y5f_c01328{bottom:916.228596px;}
.y60_c01328{bottom:917.177847px;}
.y61_c01328{bottom:917.922591px;}
.y62_c01328{bottom:919.036773px;}
.y49_c01328{bottom:945.534185px;}
.y4a_c01328{bottom:946.131154px;}
.y4b_c01328{bottom:947.363154px;}
.y4c_c01328{bottom:947.684765px;}
.y4d_c01328{bottom:949.219383px;}
.y4e_c01328{bottom:949.828129px;}
.y4f_c01328{bottom:950.304792px;}
.y50_c01328{bottom:951.208299px;}
.y51_c01328{bottom:951.669675px;}
.y52_c01328{bottom:952.130856px;}
.y53_c01328{bottom:952.912419px;}
.y54_c01328{bottom:954.080970px;}
.y45_c01328{bottom:973.350501px;}
.y46_c01328{bottom:974.259712px;}
.y47_c01328{bottom:975.166605px;}
.y48_c01328{bottom:988.595957px;}
.y3b_c01328{bottom:1009.805901px;}
.y3c_c01328{bottom:1012.447564px;}
.y3d_c01328{bottom:1013.209529px;}
.y3e_c01328{bottom:1015.055274px;}
.y3f_c01328{bottom:1016.357959px;}
.y40_c01328{bottom:1017.130001px;}
.y41_c01328{bottom:1020.089680px;}
.y42_c01328{bottom:1021.883190px;}
.y43_c01328{bottom:1023.492801px;}
.y44_c01328{bottom:1025.571445px;}
.y31_c01328{bottom:1048.399500px;}
.y32_c01328{bottom:1049.242095px;}
.y33_c01328{bottom:1050.098048px;}
.y34_c01328{bottom:1050.817071px;}
.y35_c01328{bottom:1052.087223px;}
.y36_c01328{bottom:1052.800377px;}
.y37_c01328{bottom:1054.076223px;}
.y38_c01328{bottom:1054.657284px;}
.y39_c01328{bottom:1055.973963px;}
.y3a_c01328{bottom:1056.650925px;}
.y15_c01328{bottom:1080.276000px;}
.y16_c01328{bottom:1080.996326px;}
.y17_c01328{bottom:1081.744596px;}
.y18_c01328{bottom:1083.482085px;}
.y19_c01328{bottom:1083.987096px;}
.y1a_c01328{bottom:1085.018405px;}
.y1b_c01328{bottom:1087.512893px;}
.y1c_c01328{bottom:1088.276964px;}
.y1d_c01328{bottom:1090.048332px;}
.y1e_c01328{bottom:1091.301131px;}
.y1f_c01328{bottom:1092.058992px;}
.y20_c01328{bottom:1093.079157px;}
.y21_c01328{bottom:1093.842366px;}
.y22_c01328{bottom:1095.113001px;}
.y23_c01328{bottom:1096.892960px;}
.y13_c01328{bottom:1117.129788px;}
.y14_c01328{bottom:1117.129836px;}
.y7_c01328{bottom:1117.263000px;}
.y8_c01328{bottom:1117.802856px;}
.y9_c01328{bottom:1118.343480px;}
.ya_c01328{bottom:1119.704808px;}
.yb_c01328{bottom:1121.454312px;}
.yc_c01328{bottom:1121.981568px;}
.yd_c01328{bottom:1123.389696px;}
.ye_c01328{bottom:1123.938552px;}
.yf_c01328{bottom:1124.789688px;}
.y10_c01328{bottom:1126.368840px;}
.y11_c01328{bottom:1127.118168px;}
.y12_c01328{bottom:1128.905256px;}
.y3_c01328{bottom:1193.139000px;}
.y4_c01328{bottom:1193.759784px;}
.y5_c01328{bottom:1194.916504px;}
.y6_c01328{bottom:1206.894136px;}
.h2_c01328{height:24.000000px;}
.h18_c01328{height:24.001200px;}
.h5_c01328{height:42.005376px;}
.h3_c01328{height:60.021866px;}
.h19_c01328{height:72.000000px;}
.h17_c01328{height:72.003600px;}
.ha_c01328{height:72.006084px;}
.hf_c01328{height:72.007056px;}
.h4_c01328{height:72.009215px;}
.h6_c01328{height:72.019041px;}
.h8_c01328{height:78.006591px;}
.h10_c01328{height:78.009983px;}
.h7_c01328{height:78.017197px;}
.hc_c01328{height:84.008232px;}
.h16_c01328{height:84.010751px;}
.hd_c01328{height:84.920321px;}
.he_c01328{height:90.008820px;}
.h12_c01328{height:90.011519px;}
.h15_c01328{height:96.012287px;}
.h11_c01328{height:102.013055px;}
.hb_c01328{height:108.010583px;}
.h9_c01328{height:120.010140px;}
.h13_c01328{height:120.015359px;}
.h14_c01328{height:132.016895px;}
.h1_c01328{height:1250.250000px;}
.h0_c01328{height:1250.370000px;}
.w1_c01328{width:912.000000px;}
.w0_c01328{width:912.300000px;}
.x0_c01328{left:0.000000px;}
.x1_c01328{left:10.530000px;}
.x21_c01328{left:145.341000px;}
.x6_c01328{left:152.782500px;}
.x2e_c01328{left:154.725000px;}
.x14_c01328{left:155.781000px;}
.x50_c01328{left:157.390119px;}
.x6a_c01328{left:159.416751px;}
.x89_c01328{left:161.218500px;}
.x99_c01328{left:162.956376px;}
.xb1_c01328{left:164.653560px;}
.xba_c01328{left:166.455204px;}
.xc1_c01328{left:167.680668px;}
.xda_c01328{left:169.818576px;}
.x6b_c01328{left:181.120251px;}
.x81_c01328{left:182.694000px;}
.x7_c01328{left:186.523500px;}
.x51_c01328{left:189.531533px;}
.xdf_c01328{left:190.752888px;}
.x77_c01328{left:192.410322px;}
.x5f_c01328{left:193.610715px;}
.x9a_c01328{left:195.390876px;}
.x3e_c01328{left:198.558561px;}
.xcf_c01328{left:202.502652px;}
.xb2_c01328{left:208.929780px;}
.xc2_c01328{left:210.329496px;}
.x58_c01328{left:212.175000px;}
.x8_c01328{left:220.312500px;}
.xc8_c01328{left:221.604000px;}
.xe0_c01328{left:223.958580px;}
.x60_c01328{left:225.808371px;}
.x8a_c01328{left:227.304000px;}
.x49_c01328{left:232.671743px;}
.x22_c01328{left:234.427500px;}
.x78_c01328{left:236.503713px;}
.x9b_c01328{left:238.140876px;}
.x3f_c01328{left:241.776576px;}
.x8f_c01328{left:248.389584px;}
.x9f_c01328{left:250.001076px;}
.x52_c01328{left:254.658801px;}
.xd0_c01328{left:256.552152px;}
.x79_c01328{left:258.632898px;}
.x36_c01328{left:265.177460px;}
.x23_c01328{left:266.590500px;}
.xe1_c01328{left:267.702780px;}
.xa9_c01328{left:272.885604px;}
.xbb_c01328{left:274.526844px;}
.x4a_c01328{left:276.251981px;}
.x8b_c01328{left:280.822500px;}
.xa0_c01328{left:283.490604px;}
.x2f_c01328{left:285.382500px;}
.x15_c01328{left:295.176000px;}
.x37_c01328{left:296.900916px;}
.xd1_c01328{left:298.871652px;}
.xe2_c01328{left:299.871876px;}
.xee_c01328{left:301.710000px;}
.x9_c01328{left:305.395500px;}
.x40_c01328{left:307.476575px;}
.x6c_c01328{left:310.468251px;}
.x82_c01328{left:312.867000px;}
.x16_c01328{left:317.133000px;}
.xc3_c01328{left:318.408768px;}
.x59_c01328{left:320.989500px;}
.xb3_c01328{left:327.773676px;}
.x7a_c01328{left:334.456827px;}
.x8c_c01328{left:336.165000px;}
.x30_c01328{left:340.692000px;}
.xc9_c01328{left:342.016284px;}
.xe3_c01328{left:343.619076px;}
.x90_c01328{left:347.191752px;}
.xbc_c01328{left:351.200988px;}
.x24_c01328{left:354.091500px;}
.xdb_c01328{left:355.560504px;}
.x7b_c01328{left:356.634012px;}
.x17_c01328{left:361.972500px;}
.x53_c01328{left:363.467723px;}
.xaa_c01328{left:370.951308px;}
.x38_c01328{left:373.793418px;}
.x91_c01328{left:375.901164px;}
.x61_c01328{left:377.500008px;}
.x9c_c01328{left:380.408376px;}
.x4b_c01328{left:385.291806px;}
.x6d_c01328{left:388.022751px;}
.xf2_c01328{left:389.340000px;}
.xa1_c01328{left:392.285856px;}
.xbd_c01328{left:393.345348px;}
.x2_c01328{left:394.549500px;}
.xe7_c01328{left:399.510216px;}
.x62_c01328{left:411.179601px;}
.xa_c01328{left:414.739500px;}
.x3_c01328{left:417.541500px;}
.x5a_c01328{left:420.043500px;}
.x6e_c01328{left:421.708251px;}
.xf3_c01328{left:422.820000px;}
.xa2_c01328{left:424.980384px;}
.x39_c01328{left:428.069157px;}
.x25_c01328{left:430.231500px;}
.xd2_c01328{left:431.434152px;}
.x31_c01328{left:438.396000px;}
.xca_c01328{left:440.348988px;}
.x5b_c01328{left:441.427500px;}
.xf4_c01328{left:442.800000px;}
.x83_c01328{left:445.176000px;}
.xb_c01328{left:447.693000px;}
.xd3_c01328{left:451.670652px;}
.xe8_c01328{left:453.755424px;}
.x7c_c01328{left:455.155626px;}
.x4_c01328{left:460.383000px;}
.xd5_c01328{left:463.248624px;}
.x18_c01328{left:470.428500px;}
.xbe_c01328{left:471.912636px;}
.x54_c01328{left:473.361086px;}
.xe9_c01328{left:475.758036px;}
.xf5_c01328{left:476.820000px;}
.xab_c01328{left:480.311040px;}
.xc4_c01328{left:483.641604px;}
.x26_c01328{left:485.919000px;}
.x6f_c01328{left:487.049751px;}
.x84_c01328{left:488.409000px;}
.x92_c01328{left:490.023312px;}
.x32_c01328{left:493.254000px;}
.xd6_c01328{left:495.809712px;}
.x63_c01328{left:497.292489px;}
.x19_c01328{left:503.649000px;}
.x4c_c01328{left:506.245527px;}
.x7d_c01328{left:509.471370px;}
.xac_c01328{left:513.803148px;}
.x70_c01328{left:520.496751px;}
.x41_c01328{left:528.068208px;}
.x64_c01328{left:529.956624px;}
.x5c_c01328{left:531.628500px;}
.x93_c01328{left:534.049728px;}
.xc_c01328{left:535.701000px;}
.xcb_c01328{left:539.133240px;}
.x4d_c01328{left:540.565233px;}
.xef_c01328{left:542.325000px;}
.x71_c01328{left:543.778251px;}
.xb4_c01328{left:546.936180px;}
.xc5_c01328{left:548.706072px;}
.xdc_c01328{left:552.122292px;}
.x9d_c01328{left:555.663876px;}
.x55_c01328{left:561.399372px;}
.x65_c01328{left:564.780654px;}
.x8d_c01328{left:566.262000px;}
.xd_c01328{left:570.004500px;}
.x42_c01328{left:571.548143px;}
.xd7_c01328{left:572.610132px;}
.xe4_c01328{left:573.957180px;}
.xea_c01328{left:575.045064px;}
.x1a_c01328{left:580.665000px;}
.xcc_c01328{left:582.374304px;}
.x3a_c01328{left:583.563927px;}
.x7e_c01328{left:587.798757px;}
.x33_c01328{left:591.396000px;}
.x27_c01328{left:595.480500px;}
.x94_c01328{left:599.921340px;}
.xb5_c01328{left:602.821068px;}
.x43_c01328{left:605.560194px;}
.x85_c01328{left:609.418500px;}
.xb7_c01328{left:613.778172px;}
.xe_c01328{left:623.200500px;}
.x28_c01328{left:628.378500px;}
.x72_c01328{left:629.588751px;}
.x1b_c01328{left:635.134500px;}
.xa3_c01328{left:643.965888px;}
.xcd_c01328{left:648.756996px;}
.x73_c01328{left:652.319751px;}
.x95_c01328{left:654.248568px;}
.x3b_c01328{left:658.284741px;}
.xdd_c01328{left:661.799796px;}
.x1c_c01328{left:668.085000px;}
.x44_c01328{left:670.098356px;}
.x29_c01328{left:671.119500px;}
.x66_c01328{left:674.649534px;}
.xa4_c01328{left:677.446416px;}
.xbf_c01328{left:679.563768px;}
.xc6_c01328{left:680.618460px;}
.xf0_c01328{left:685.113000px;}
.xeb_c01328{left:696.786252px;}
.x96_c01328{left:698.465484px;}
.x45_c01328{left:703.049927px;}
.x67_c01328{left:707.043669px;}
.xad_c01328{left:711.206628px;}
.x1d_c01328{left:712.440000px;}
.x7f_c01328{left:717.897951px;}
.x86_c01328{left:719.248500px;}
.x97_c01328{left:720.345180px;}
.xf_c01328{left:721.897500px;}
.x3c_c01328{left:725.322147px;}
.x5d_c01328{left:726.846000px;}
.x74_c01328{left:728.474751px;}
.xa5_c01328{left:731.405280px;}
.xb8_c01328{left:734.412252px;}
.x46_c01328{left:735.986498px;}
.x34_c01328{left:737.376000px;}
.xe5_c01328{left:738.950520px;}
.x87_c01328{left:740.085000px;}
.xae_c01328{left:743.864688px;}
.x1e_c01328{left:745.623000px;}
.x2a_c01328{left:748.513500px;}
.x68_c01328{left:752.125779px;}
.xa6_c01328{left:754.889664px;}
.xc7_c01328{left:757.588236px;}
.x4e_c01328{left:759.751826px;}
.x8e_c01328{left:763.206000px;}
.x10_c01328{left:768.730500px;}
.x56_c01328{left:770.094320px;}
.x2b_c01328{left:771.217500px;}
.xec_c01328{left:773.574120px;}
.xaf_c01328{left:777.785820px;}
.xa7_c01328{left:788.161692px;}
.x35_c01328{left:789.450000px;}
.x47_c01328{left:791.836776px;}
.xde_c01328{left:793.231020px;}
.xe6_c01328{left:794.274324px;}
.x88_c01328{left:795.718500px;}
.x98_c01328{left:797.609652px;}
.xb6_c01328{left:799.633212px;}
.x1f_c01328{left:800.868000px;}
.x2c_c01328{left:804.487500px;}
.x3d_c01328{left:811.936264px;}
.xd8_c01328{left:817.884828px;}
.x9e_c01328{left:820.548876px;}
.xb9_c01328{left:822.624336px;}
.x69_c01328{left:829.600524px;}
.x57_c01328{left:837.592932px;}
.x75_c01328{left:838.778751px;}
.xed_c01328{left:840.287028px;}
.xa8_c01328{left:852.343224px;}
.xd4_c01328{left:857.900652px;}
.xce_c01328{left:863.913816px;}
.xd9_c01328{left:866.591448px;}
.x4f_c01328{left:869.048132px;}
.x12_c01328{left:871.111476px;}
.x48_c01328{left:875.262684px;}
.x20_c01328{left:878.257500px;}
.x11_c01328{left:880.423500px;}
.xb0_c01328{left:883.372884px;}
.x80_c01328{left:885.250620px;}
.x5e_c01328{left:890.845500px;}
.x76_c01328{left:892.994751px;}
.xc0_c01328{left:894.379476px;}
.x2d_c01328{left:897.034500px;}
.x13_c01328{left:902.434992px;}
.x5_c01328{left:903.999000px;}
.xf1_c01328{left:908.400000px;}
@media print{
.v0_c01328{vertical-align:0.000000pt;}
.ls0_c01328{letter-spacing:0.000000pt;}
.ws0_c01328{word-spacing:0.000000pt;}
._1_c01328{width:28.653976pt;}
._0_c01328{width:39.644883pt;}
.fs0_c01328{font-size:21.333333pt;}
.fs15_c01328{font-size:21.334400pt;}
.fs3_c01328{font-size:37.338112pt;}
.fs1_c01328{font-size:53.352770pt;}
.fs16_c01328{font-size:64.000000pt;}
.fs14_c01328{font-size:64.003200pt;}
.fs8_c01328{font-size:64.005408pt;}
.fsc_c01328{font-size:64.006272pt;}
.fs2_c01328{font-size:64.008191pt;}
.fs4_c01328{font-size:64.016926pt;}
.fs6_c01328{font-size:69.339192pt;}
.fsd_c01328{font-size:69.342207pt;}
.fs5_c01328{font-size:69.348620pt;}
.fsa_c01328{font-size:74.673984pt;}
.fs13_c01328{font-size:74.676223pt;}
.fsb_c01328{font-size:80.007840pt;}
.fsf_c01328{font-size:80.010239pt;}
.fs12_c01328{font-size:85.344255pt;}
.fse_c01328{font-size:90.678271pt;}
.fs9_c01328{font-size:96.009408pt;}
.fs7_c01328{font-size:106.675680pt;}
.fs10_c01328{font-size:106.680319pt;}
.fs11_c01328{font-size:117.348351pt;}
.y0_c01328{bottom:0.000000pt;}
.y17b_c01328{bottom:43.205333pt;}
.y179_c01328{bottom:68.641560pt;}
.y17a_c01328{bottom:78.648640pt;}
.y16a_c01328{bottom:89.281333pt;}
.y16b_c01328{bottom:89.761760pt;}
.y16c_c01328{bottom:90.061627pt;}
.y16d_c01328{bottom:90.447987pt;}
.y16e_c01328{bottom:90.733600pt;}
.y16f_c01328{bottom:91.127520pt;}
.y170_c01328{bottom:91.804040pt;}
.y171_c01328{bottom:92.293667pt;}
.y172_c01328{bottom:92.586787pt;}
.y173_c01328{bottom:92.877173pt;}
.y174_c01328{bottom:93.856013pt;}
.y175_c01328{bottom:94.161160pt;}
.y176_c01328{bottom:94.830747pt;}
.y177_c01328{bottom:95.144000pt;}
.y178_c01328{bottom:95.840787pt;}
.y15e_c01328{bottom:120.420981pt;}
.y15f_c01328{bottom:121.003840pt;}
.y160_c01328{bottom:121.296704pt;}
.y161_c01328{bottom:122.462709pt;}
.y162_c01328{bottom:122.944789pt;}
.y163_c01328{bottom:123.140352pt;}
.y164_c01328{bottom:123.722880pt;}
.y165_c01328{bottom:124.022965pt;}
.y166_c01328{bottom:125.104896pt;}
.y167_c01328{bottom:125.486080pt;}
.y168_c01328{bottom:125.787552pt;}
.y169_c01328{bottom:126.380267pt;}
.y151_c01328{bottom:152.106165pt;}
.y152_c01328{bottom:152.298112pt;}
.y153_c01328{bottom:152.592992pt;}
.y154_c01328{bottom:152.981739pt;}
.y155_c01328{bottom:153.267211pt;}
.y156_c01328{bottom:153.656000pt;}
.y157_c01328{bottom:154.433557pt;}
.y158_c01328{bottom:155.408576pt;}
.y159_c01328{bottom:155.703605pt;}
.y15a_c01328{bottom:156.191232pt;}
.y15b_c01328{bottom:157.169952pt;}
.y15c_c01328{bottom:157.662037pt;}
.y15d_c01328{bottom:158.044992pt;}
.y145_c01328{bottom:180.191595pt;}
.y146_c01328{bottom:181.391232pt;}
.y147_c01328{bottom:181.775029pt;}
.y148_c01328{bottom:182.503840pt;}
.y149_c01328{bottom:182.904128pt;}
.y14a_c01328{bottom:183.847755pt;}
.y14b_c01328{bottom:184.117056pt;}
.y14c_c01328{bottom:184.949963pt;}
.y14d_c01328{bottom:185.209141pt;}
.y14e_c01328{bottom:186.315104pt;}
.y14f_c01328{bottom:187.533632pt;}
.y150_c01328{bottom:187.949621pt;}
.y139_c01328{bottom:213.554496pt;}
.y13a_c01328{bottom:214.484715pt;}
.y13b_c01328{bottom:214.949867pt;}
.y13c_c01328{bottom:215.779787pt;}
.y13d_c01328{bottom:216.703765pt;}
.y13e_c01328{bottom:217.050827pt;}
.y13f_c01328{bottom:217.869696pt;}
.y140_c01328{bottom:218.109035pt;}
.y141_c01328{bottom:218.475424pt;}
.y142_c01328{bottom:219.518357pt;}
.y143_c01328{bottom:220.485824pt;}
.y144_c01328{bottom:221.005163pt;}
.y12b_c01328{bottom:243.799829pt;}
.y12c_c01328{bottom:244.307392pt;}
.y12d_c01328{bottom:245.076096pt;}
.y12e_c01328{bottom:245.677973pt;}
.y12f_c01328{bottom:246.296107pt;}
.y130_c01328{bottom:247.563307pt;}
.y131_c01328{bottom:247.851115pt;}
.y132_c01328{bottom:248.327211pt;}
.y133_c01328{bottom:249.425301pt;}
.y134_c01328{bottom:250.374485pt;}
.y135_c01328{bottom:250.665451pt;}
.y136_c01328{bottom:251.757739pt;}
.y137_c01328{bottom:252.239637pt;}
.y138_c01328{bottom:253.628608pt;}
.y11d_c01328{bottom:276.202101pt;}
.y11e_c01328{bottom:276.817973pt;}
.y11f_c01328{bottom:277.937547pt;}
.y120_c01328{bottom:278.209088pt;}
.y121_c01328{bottom:278.703371pt;}
.y122_c01328{bottom:279.346197pt;}
.y123_c01328{bottom:280.097579pt;}
.y124_c01328{bottom:280.487061pt;}
.y125_c01328{bottom:280.987349pt;}
.y126_c01328{bottom:281.754080pt;}
.y127_c01328{bottom:282.023051pt;}
.y128_c01328{bottom:282.659424pt;}
.y129_c01328{bottom:284.240608pt;}
.y12a_c01328{bottom:284.685013pt;}
.y112_c01328{bottom:304.048896pt;}
.y113_c01328{bottom:304.692800pt;}
.y114_c01328{bottom:305.350923pt;}
.y115_c01328{bottom:306.325952pt;}
.y116_c01328{bottom:307.338144pt;}
.y117_c01328{bottom:308.823968pt;}
.y118_c01328{bottom:309.806677pt;}
.y119_c01328{bottom:310.802624pt;}
.y11a_c01328{bottom:311.466336pt;}
.y11b_c01328{bottom:311.800128pt;}
.y11c_c01328{bottom:312.962827pt;}
.y104_c01328{bottom:338.288235pt;}
.y105_c01328{bottom:338.814560pt;}
.y106_c01328{bottom:339.345131pt;}
.y107_c01328{bottom:340.094187pt;}
.y108_c01328{bottom:340.506859pt;}
.y109_c01328{bottom:341.274837pt;}
.y10a_c01328{bottom:342.229803pt;}
.y10b_c01328{bottom:342.554123pt;}
.y10c_c01328{bottom:343.303861pt;}
.y10d_c01328{bottom:343.633280pt;}
.y10e_c01328{bottom:344.271872pt;}
.y10f_c01328{bottom:344.597472pt;}
.y110_c01328{bottom:345.318475pt;}
.y111_c01328{bottom:345.402773pt;}
.yfa_c01328{bottom:367.421056pt;}
.yfb_c01328{bottom:369.077600pt;}
.yfc_c01328{bottom:370.398987pt;}
.yfd_c01328{bottom:370.889120pt;}
.yfe_c01328{bottom:372.378784pt;}
.yff_c01328{bottom:373.550560pt;}
.y100_c01328{bottom:374.215061pt;}
.y101_c01328{bottom:376.037440pt;}
.y102_c01328{bottom:376.707947pt;}
.y103_c01328{bottom:377.370699pt;}
.yed_c01328{bottom:400.786613pt;}
.yee_c01328{bottom:401.376309pt;}
.yef_c01328{bottom:401.930272pt;}
.yf0_c01328{bottom:402.961173pt;}
.yf1_c01328{bottom:403.421195pt;}
.yf2_c01328{bottom:404.439936pt;}
.yf3_c01328{bottom:404.864843pt;}
.yf4_c01328{bottom:405.883435pt;}
.yf5_c01328{bottom:406.628896pt;}
.yf6_c01328{bottom:407.046293pt;}
.yf7_c01328{bottom:408.537216pt;}
.yf8_c01328{bottom:409.253291pt;}
.yf9_c01328{bottom:410.271200pt;}
.ye0_c01328{bottom:431.265696pt;}
.ye1_c01328{bottom:432.525643pt;}
.ye2_c01328{bottom:433.028779pt;}
.ye3_c01328{bottom:433.658955pt;}
.ye4_c01328{bottom:434.429675pt;}
.ye5_c01328{bottom:434.923552pt;}
.ye6_c01328{bottom:435.310528pt;}
.ye7_c01328{bottom:436.199040pt;}
.ye8_c01328{bottom:436.571776pt;}
.ye9_c01328{bottom:437.591243pt;}
.yea_c01328{bottom:437.969024pt;}
.yeb_c01328{bottom:438.360768pt;}
.yec_c01328{bottom:439.581045pt;}
.yd2_c01328{bottom:463.910827pt;}
.yd3_c01328{bottom:464.343211pt;}
.yd4_c01328{bottom:465.071253pt;}
.yd5_c01328{bottom:465.518208pt;}
.yd6_c01328{bottom:466.968160pt;}
.yd7_c01328{bottom:467.403808pt;}
.yd8_c01328{bottom:468.865856pt;}
.yd9_c01328{bottom:470.323552pt;}
.yda_c01328{bottom:470.770379pt;}
.ydb_c01328{bottom:471.489781pt;}
.ydc_c01328{bottom:471.802443pt;}
.ydd_c01328{bottom:472.246304pt;}
.yde_c01328{bottom:473.101760pt;}
.ydf_c01328{bottom:473.417493pt;}
.yc5_c01328{bottom:496.074869pt;}
.y2_c01328{bottom:496.080000pt;}
.yc6_c01328{bottom:496.536160pt;}
.yc7_c01328{bottom:497.144160pt;}
.yc8_c01328{bottom:498.699275pt;}
.yc9_c01328{bottom:499.167520pt;}
.y1_c01328{bottom:499.440000pt;}
.yca_c01328{bottom:499.989792pt;}
.ycb_c01328{bottom:500.719051pt;}
.ycc_c01328{bottom:501.660043pt;}
.ycd_c01328{bottom:502.125365pt;}
.yce_c01328{bottom:503.068960pt;}
.ycf_c01328{bottom:503.894581pt;}
.yd0_c01328{bottom:505.100320pt;}
.yd1_c01328{bottom:505.427296pt;}
.yb9_c01328{bottom:525.599221pt;}
.yba_c01328{bottom:526.674773pt;}
.ybb_c01328{bottom:527.903915pt;}
.ybc_c01328{bottom:528.261547pt;}
.ybd_c01328{bottom:529.681899pt;}
.ybe_c01328{bottom:530.229365pt;}
.ybf_c01328{bottom:531.048843pt;}
.yc0_c01328{bottom:531.725472pt;}
.yc1_c01328{bottom:532.275648pt;}
.yc2_c01328{bottom:532.548149pt;}
.yc3_c01328{bottom:533.509653pt;}
.yc4_c01328{bottom:533.907872pt;}
.yae_c01328{bottom:555.364000pt;}
.yaf_c01328{bottom:556.303883pt;}
.yb0_c01328{bottom:557.065035pt;}
.yb1_c01328{bottom:557.852128pt;}
.yb2_c01328{bottom:558.957408pt;}
.yb3_c01328{bottom:559.407008pt;}
.yb4_c01328{bottom:560.482123pt;}
.yb5_c01328{bottom:561.124619pt;}
.yb6_c01328{bottom:562.679627pt;}
.yb7_c01328{bottom:563.443936pt;}
.yb8_c01328{bottom:563.925600pt;}
.ya2_c01328{bottom:587.041333pt;}
.ya3_c01328{bottom:587.515523pt;}
.ya4_c01328{bottom:588.191760pt;}
.ya5_c01328{bottom:589.135453pt;}
.ya6_c01328{bottom:589.687091pt;}
.ya7_c01328{bottom:590.781965pt;}
.ya8_c01328{bottom:591.319976pt;}
.ya9_c01328{bottom:592.002373pt;}
.yaa_c01328{bottom:592.825872pt;}
.yab_c01328{bottom:594.192645pt;}
.yac_c01328{bottom:594.451944pt;}
.yad_c01328{bottom:595.144272pt;}
.y92_c01328{bottom:618.952443pt;}
.y93_c01328{bottom:619.398267pt;}
.y94_c01328{bottom:619.985659pt;}
.y95_c01328{bottom:620.281048pt;}
.y96_c01328{bottom:621.292648pt;}
.y97_c01328{bottom:621.588635pt;}
.y98_c01328{bottom:622.449120pt;}
.y99_c01328{bottom:622.902699pt;}
.y9a_c01328{bottom:623.626637pt;}
.y9b_c01328{bottom:624.077416pt;}
.y9c_c01328{bottom:624.672059pt;}
.y9d_c01328{bottom:625.240309pt;}
.y9e_c01328{bottom:626.405760pt;}
.y9f_c01328{bottom:626.852499pt;}
.ya0_c01328{bottom:628.018304pt;}
.ya1_c01328{bottom:628.636400pt;}
.y85_c01328{bottom:650.395168pt;}
.y86_c01328{bottom:650.665256pt;}
.y87_c01328{bottom:652.274920pt;}
.y88_c01328{bottom:653.240043pt;}
.y89_c01328{bottom:653.659240pt;}
.y8a_c01328{bottom:654.472379pt;}
.y8b_c01328{bottom:654.888608pt;}
.y8c_c01328{bottom:655.178333pt;}
.y8d_c01328{bottom:656.246197pt;}
.y8e_c01328{bottom:656.529072pt;}
.y8f_c01328{bottom:657.476779pt;}
.y90_c01328{bottom:658.849451pt;}
.y91_c01328{bottom:659.524139pt;}
.y78_c01328{bottom:679.905941pt;}
.y79_c01328{bottom:680.447832pt;}
.y7a_c01328{bottom:680.933864pt;}
.y7b_c01328{bottom:683.225661pt;}
.y7c_c01328{bottom:683.734136pt;}
.y7d_c01328{bottom:685.035141pt;}
.y7e_c01328{bottom:685.528312pt;}
.y7f_c01328{bottom:686.055029pt;}
.y80_c01328{bottom:687.715677pt;}
.y81_c01328{bottom:688.205488pt;}
.y82_c01328{bottom:688.886533pt;}
.y83_c01328{bottom:690.057371pt;}
.y84_c01328{bottom:691.062235pt;}
.y6e_c01328{bottom:712.562667pt;}
.y6f_c01328{bottom:713.238568pt;}
.y70_c01328{bottom:714.592704pt;}
.y71_c01328{bottom:715.002680pt;}
.y72_c01328{bottom:715.825376pt;}
.y73_c01328{bottom:716.091488pt;}
.y74_c01328{bottom:717.213989pt;}
.y75_c01328{bottom:719.643363pt;}
.y76_c01328{bottom:720.060245pt;}
.y77_c01328{bottom:721.684245pt;}
.y24_c01328{bottom:742.326667pt;}
.y25_c01328{bottom:743.989615pt;}
.y26_c01328{bottom:744.589991pt;}
.y27_c01328{bottom:746.223343pt;}
.y28_c01328{bottom:747.644623pt;}
.y29_c01328{bottom:748.684123pt;}
.y2a_c01328{bottom:750.729271pt;}
.y2b_c01328{bottom:751.343367pt;}
.y2c_c01328{bottom:752.141199pt;}
.y2d_c01328{bottom:753.585887pt;}
.y2e_c01328{bottom:754.009695pt;}
.y2f_c01328{bottom:754.630735pt;}
.y30_c01328{bottom:756.358279pt;}
.y63_c01328{bottom:773.992108pt;}
.y64_c01328{bottom:774.506211pt;}
.y65_c01328{bottom:775.548175pt;}
.y66_c01328{bottom:777.289604pt;}
.y67_c01328{bottom:778.356279pt;}
.y68_c01328{bottom:779.047565pt;}
.y69_c01328{bottom:780.455629pt;}
.y6a_c01328{bottom:782.200005pt;}
.y6b_c01328{bottom:783.257721pt;}
.y6c_c01328{bottom:783.794039pt;}
.y6d_c01328{bottom:784.874073pt;}
.y55_c01328{bottom:806.140111pt;}
.y56_c01328{bottom:807.303511pt;}
.y57_c01328{bottom:807.961797pt;}
.y58_c01328{bottom:809.609879pt;}
.y59_c01328{bottom:810.103295pt;}
.y5a_c01328{bottom:811.436972pt;}
.y5b_c01328{bottom:811.956243pt;}
.y5c_c01328{bottom:812.425553pt;}
.y5d_c01328{bottom:812.926265pt;}
.y5e_c01328{bottom:813.910705pt;}
.y5f_c01328{bottom:814.425419pt;}
.y60_c01328{bottom:815.269197pt;}
.y61_c01328{bottom:815.931192pt;}
.y62_c01328{bottom:816.921576pt;}
.y49_c01328{bottom:840.474831pt;}
.y4a_c01328{bottom:841.005471pt;}
.y4b_c01328{bottom:842.100581pt;}
.y4c_c01328{bottom:842.386457pt;}
.y4d_c01328{bottom:843.750563pt;}
.y4e_c01328{bottom:844.291671pt;}
.y4f_c01328{bottom:844.715371pt;}
.y50_c01328{bottom:845.518488pt;}
.y51_c01328{bottom:845.928600pt;}
.y52_c01328{bottom:846.338539pt;}
.y53_c01328{bottom:847.033261pt;}
.y54_c01328{bottom:848.071973pt;}
.y45_c01328{bottom:865.200445pt;}
.y46_c01328{bottom:866.008633pt;}
.y47_c01328{bottom:866.814760pt;}
.y48_c01328{bottom:878.751961pt;}
.y3b_c01328{bottom:897.605245pt;}
.y3c_c01328{bottom:899.953391pt;}
.y3d_c01328{bottom:900.630692pt;}
.y3e_c01328{bottom:902.271355pt;}
.y3f_c01328{bottom:903.429297pt;}
.y40_c01328{bottom:904.115556pt;}
.y41_c01328{bottom:906.746383pt;}
.y42_c01328{bottom:908.340613pt;}
.y43_c01328{bottom:909.771379pt;}
.y44_c01328{bottom:911.619063pt;}
.y31_c01328{bottom:931.910667pt;}
.y32_c01328{bottom:932.659640pt;}
.y33_c01328{bottom:933.420487pt;}
.y34_c01328{bottom:934.059619pt;}
.y35_c01328{bottom:935.188643pt;}
.y36_c01328{bottom:935.822557pt;}
.y37_c01328{bottom:936.956643pt;}
.y38_c01328{bottom:937.473141pt;}
.y39_c01328{bottom:938.643523pt;}
.y3a_c01328{bottom:939.245267pt;}
.y15_c01328{bottom:960.245333pt;}
.y16_c01328{bottom:960.885623pt;}
.y17_c01328{bottom:961.550752pt;}
.y18_c01328{bottom:963.095187pt;}
.y19_c01328{bottom:963.544085pt;}
.y1a_c01328{bottom:964.460804pt;}
.y1b_c01328{bottom:966.678127pt;}
.y1c_c01328{bottom:967.357301pt;}
.y1d_c01328{bottom:968.931851pt;}
.y1e_c01328{bottom:970.045449pt;}
.y1f_c01328{bottom:970.719104pt;}
.y20_c01328{bottom:971.625917pt;}
.y21_c01328{bottom:972.304325pt;}
.y22_c01328{bottom:973.433779pt;}
.y23_c01328{bottom:975.015964pt;}
.y13_c01328{bottom:993.004256pt;}
.y14_c01328{bottom:993.004299pt;}
.y7_c01328{bottom:993.122667pt;}
.y8_c01328{bottom:993.602539pt;}
.y9_c01328{bottom:994.083093pt;}
.ya_c01328{bottom:995.293163pt;}
.yb_c01328{bottom:996.848277pt;}
.yc_c01328{bottom:997.316949pt;}
.yd_c01328{bottom:998.568619pt;}
.ye_c01328{bottom:999.056491pt;}
.yf_c01328{bottom:999.813056pt;}
.y10_c01328{bottom:1001.216747pt;}
.y11_c01328{bottom:1001.882816pt;}
.y12_c01328{bottom:1003.471339pt;}
.y3_c01328{bottom:1060.568000pt;}
.y4_c01328{bottom:1061.119808pt;}
.y5_c01328{bottom:1062.148004pt;}
.y6_c01328{bottom:1072.794788pt;}
.h2_c01328{height:21.333333pt;}
.h18_c01328{height:21.334400pt;}
.h5_c01328{height:37.338112pt;}
.h3_c01328{height:53.352770pt;}
.h19_c01328{height:64.000000pt;}
.h17_c01328{height:64.003200pt;}
.ha_c01328{height:64.005408pt;}
.hf_c01328{height:64.006272pt;}
.h4_c01328{height:64.008191pt;}
.h6_c01328{height:64.016926pt;}
.h8_c01328{height:69.339192pt;}
.h10_c01328{height:69.342207pt;}
.h7_c01328{height:69.348620pt;}
.hc_c01328{height:74.673984pt;}
.h16_c01328{height:74.676223pt;}
.hd_c01328{height:75.484730pt;}
.he_c01328{height:80.007840pt;}
.h12_c01328{height:80.010239pt;}
.h15_c01328{height:85.344255pt;}
.h11_c01328{height:90.678271pt;}
.hb_c01328{height:96.009408pt;}
.h9_c01328{height:106.675680pt;}
.h13_c01328{height:106.680319pt;}
.h14_c01328{height:117.348351pt;}
.h1_c01328{height:1111.333333pt;}
.h0_c01328{height:1111.440000pt;}
.w1_c01328{width:810.666667pt;}
.w0_c01328{width:810.933333pt;}
.x0_c01328{left:0.000000pt;}
.x1_c01328{left:9.360000pt;}
.x21_c01328{left:129.192000pt;}
.x6_c01328{left:135.806667pt;}
.x2e_c01328{left:137.533333pt;}
.x14_c01328{left:138.472000pt;}
.x50_c01328{left:139.902328pt;}
.x6a_c01328{left:141.703779pt;}
.x89_c01328{left:143.305333pt;}
.x99_c01328{left:144.850112pt;}
.xb1_c01328{left:146.358720pt;}
.xba_c01328{left:147.960181pt;}
.xc1_c01328{left:149.049483pt;}
.xda_c01328{left:150.949845pt;}
.x6b_c01328{left:160.995779pt;}
.x81_c01328{left:162.394667pt;}
.x7_c01328{left:165.798667pt;}
.x51_c01328{left:168.472473pt;}
.xdf_c01328{left:169.558123pt;}
.x77_c01328{left:171.031397pt;}
.x5f_c01328{left:172.098413pt;}
.x9a_c01328{left:173.680779pt;}
.x3e_c01328{left:176.496499pt;}
.xcf_c01328{left:180.002357pt;}
.xb2_c01328{left:185.715360pt;}
.xc2_c01328{left:186.959552pt;}
.x58_c01328{left:188.600000pt;}
.x8_c01328{left:195.833333pt;}
.xc8_c01328{left:196.981333pt;}
.xe0_c01328{left:199.074293pt;}
.x60_c01328{left:200.718552pt;}
.x8a_c01328{left:202.048000pt;}
.x49_c01328{left:206.819327pt;}
.x22_c01328{left:208.380000pt;}
.x78_c01328{left:210.225523pt;}
.x9b_c01328{left:211.680779pt;}
.x3f_c01328{left:214.912512pt;}
.x8f_c01328{left:220.790741pt;}
.x9f_c01328{left:222.223179pt;}
.x52_c01328{left:226.363379pt;}
.xd0_c01328{left:228.046357pt;}
.x79_c01328{left:229.895909pt;}
.x36_c01328{left:235.713297pt;}
.x23_c01328{left:236.969333pt;}
.xe1_c01328{left:237.958027pt;}
.xa9_c01328{left:242.564981pt;}
.xbb_c01328{left:244.023861pt;}
.x4a_c01328{left:245.557316pt;}
.x8b_c01328{left:249.620000pt;}
.xa0_c01328{left:251.991648pt;}
.x2f_c01328{left:253.673333pt;}
.x15_c01328{left:262.378667pt;}
.x37_c01328{left:263.911925pt;}
.xd1_c01328{left:265.663691pt;}
.xe2_c01328{left:266.552779pt;}
.xee_c01328{left:268.186667pt;}
.x9_c01328{left:271.462667pt;}
.x40_c01328{left:273.312511pt;}
.x6c_c01328{left:275.971779pt;}
.x82_c01328{left:278.104000pt;}
.x16_c01328{left:281.896000pt;}
.xc3_c01328{left:283.030016pt;}
.x59_c01328{left:285.324000pt;}
.xb3_c01328{left:291.354379pt;}
.x7a_c01328{left:297.294957pt;}
.x8c_c01328{left:298.813333pt;}
.x30_c01328{left:302.837333pt;}
.xc9_c01328{left:304.014475pt;}
.xe3_c01328{left:305.439179pt;}
.x90_c01328{left:308.614891pt;}
.xbc_c01328{left:312.178656pt;}
.x24_c01328{left:314.748000pt;}
.xdb_c01328{left:316.053781pt;}
.x7b_c01328{left:317.008011pt;}
.x17_c01328{left:321.753333pt;}
.x53_c01328{left:323.082420pt;}
.xaa_c01328{left:329.734496pt;}
.x38_c01328{left:332.260816pt;}
.x91_c01328{left:334.134368pt;}
.x61_c01328{left:335.555563pt;}
.x9c_c01328{left:338.140779pt;}
.x4b_c01328{left:342.481605pt;}
.x6d_c01328{left:344.909112pt;}
.xf2_c01328{left:346.080000pt;}
.xa1_c01328{left:348.698539pt;}
.xbd_c01328{left:349.640309pt;}
.x2_c01328{left:350.710667pt;}
.xe7_c01328{left:355.120192pt;}
.x62_c01328{left:365.492979pt;}
.xa_c01328{left:368.657333pt;}
.x3_c01328{left:371.148000pt;}
.x5a_c01328{left:373.372000pt;}
.x6e_c01328{left:374.851779pt;}
.xf3_c01328{left:375.840000pt;}
.xa2_c01328{left:377.760341pt;}
.x39_c01328{left:380.505917pt;}
.x25_c01328{left:382.428000pt;}
.xd2_c01328{left:383.497024pt;}
.x31_c01328{left:389.685333pt;}
.xca_c01328{left:391.421323pt;}
.x5b_c01328{left:392.380000pt;}
.xf4_c01328{left:393.600000pt;}
.x83_c01328{left:395.712000pt;}
.xb_c01328{left:397.949333pt;}
.xd3_c01328{left:401.485024pt;}
.xe8_c01328{left:403.338155pt;}
.x7c_c01328{left:404.582779pt;}
.x4_c01328{left:409.229333pt;}
.xd5_c01328{left:411.776555pt;}
.x18_c01328{left:418.158667pt;}
.xbe_c01328{left:419.477899pt;}
.x54_c01328{left:420.765409pt;}
.xe9_c01328{left:422.896032pt;}
.xf5_c01328{left:423.840000pt;}
.xab_c01328{left:426.943147pt;}
.xc4_c01328{left:429.903648pt;}
.x26_c01328{left:431.928000pt;}
.x6f_c01328{left:432.933112pt;}
.x84_c01328{left:434.141333pt;}
.x92_c01328{left:435.576277pt;}
.x32_c01328{left:438.448000pt;}
.xd6_c01328{left:440.719744pt;}
.x63_c01328{left:442.037768pt;}
.x19_c01328{left:447.688000pt;}
.x4c_c01328{left:449.996024pt;}
.x7d_c01328{left:452.863440pt;}
.xac_c01328{left:456.713909pt;}
.x70_c01328{left:462.663779pt;}
.x41_c01328{left:469.393963pt;}
.x64_c01328{left:471.072555pt;}
.x5c_c01328{left:472.558667pt;}
.x93_c01328{left:474.710869pt;}
.xc_c01328{left:476.178667pt;}
.xcb_c01328{left:479.229547pt;}
.x4d_c01328{left:480.502429pt;}
.xef_c01328{left:482.066667pt;}
.x71_c01328{left:483.358445pt;}
.xb4_c01328{left:486.165493pt;}
.xc5_c01328{left:487.738731pt;}
.xdc_c01328{left:490.775371pt;}
.x9d_c01328{left:493.923445pt;}
.x55_c01328{left:499.021664pt;}
.x65_c01328{left:502.027248pt;}
.x8d_c01328{left:503.344000pt;}
.xd_c01328{left:506.670667pt;}
.x42_c01328{left:508.042793pt;}
.xd7_c01328{left:508.986784pt;}
.xe4_c01328{left:510.184160pt;}
.xea_c01328{left:511.151168pt;}
.x1a_c01328{left:516.146667pt;}
.xcc_c01328{left:517.666048pt;}
.x3a_c01328{left:518.723491pt;}
.x7e_c01328{left:522.487784pt;}
.x33_c01328{left:525.685333pt;}
.x27_c01328{left:529.316000pt;}
.x94_c01328{left:533.263413pt;}
.xb5_c01328{left:535.840949pt;}
.x43_c01328{left:538.275728pt;}
.x85_c01328{left:541.705333pt;}
.xb7_c01328{left:545.580597pt;}
.xe_c01328{left:553.956000pt;}
.x28_c01328{left:558.558667pt;}
.x72_c01328{left:559.634445pt;}
.x1b_c01328{left:564.564000pt;}
.xa3_c01328{left:572.414123pt;}
.xcd_c01328{left:576.672885pt;}
.x73_c01328{left:579.839779pt;}
.x95_c01328{left:581.554283pt;}
.x3b_c01328{left:585.141992pt;}
.xdd_c01328{left:588.266485pt;}
.x1c_c01328{left:593.853333pt;}
.x44_c01328{left:595.642983pt;}
.x29_c01328{left:596.550667pt;}
.x66_c01328{left:599.688475pt;}
.xa4_c01328{left:602.174592pt;}
.xbf_c01328{left:604.056683pt;}
.xc6_c01328{left:604.994187pt;}
.xf0_c01328{left:608.989333pt;}
.xeb_c01328{left:619.365557pt;}
.x96_c01328{left:620.858208pt;}
.x45_c01328{left:624.933268pt;}
.x67_c01328{left:628.483261pt;}
.xad_c01328{left:632.183669pt;}
.x1d_c01328{left:633.280000pt;}
.x7f_c01328{left:638.131512pt;}
.x86_c01328{left:639.332000pt;}
.x97_c01328{left:640.306827pt;}
.xf_c01328{left:641.686667pt;}
.x3c_c01328{left:644.730797pt;}
.x5d_c01328{left:646.085333pt;}
.x74_c01328{left:647.533112pt;}
.xa5_c01328{left:650.138027pt;}
.xb8_c01328{left:652.810891pt;}
.x46_c01328{left:654.210220pt;}
.x34_c01328{left:655.445333pt;}
.xe5_c01328{left:656.844907pt;}
.x87_c01328{left:657.853333pt;}
.xae_c01328{left:661.213056pt;}
.x1e_c01328{left:662.776000pt;}
.x2a_c01328{left:665.345333pt;}
.x68_c01328{left:668.556248pt;}
.xa6_c01328{left:671.013035pt;}
.xc7_c01328{left:673.411765pt;}
.x4e_c01328{left:675.334956pt;}
.x8e_c01328{left:678.405333pt;}
.x10_c01328{left:683.316000pt;}
.x56_c01328{left:684.528284pt;}
.x2b_c01328{left:685.526667pt;}
.xec_c01328{left:687.621440pt;}
.xaf_c01328{left:691.365173pt;}
.xa7_c01328{left:700.588171pt;}
.x35_c01328{left:701.733333pt;}
.x47_c01328{left:703.854912pt;}
.xde_c01328{left:705.094240pt;}
.xe6_c01328{left:706.021621pt;}
.x88_c01328{left:707.305333pt;}
.x98_c01328{left:708.986357pt;}
.xb6_c01328{left:710.785077pt;}
.x1f_c01328{left:711.882667pt;}
.x2c_c01328{left:715.100000pt;}
.x3d_c01328{left:721.721124pt;}
.xd8_c01328{left:727.008736pt;}
.x9e_c01328{left:729.376779pt;}
.xb9_c01328{left:731.221632pt;}
.x69_c01328{left:737.422688pt;}
.x57_c01328{left:744.527051pt;}
.x75_c01328{left:745.581112pt;}
.xed_c01328{left:746.921803pt;}
.xa8_c01328{left:757.638421pt;}
.xd4_c01328{left:762.578357pt;}
.xce_c01328{left:767.923392pt;}
.xd9_c01328{left:770.303509pt;}
.x4f_c01328{left:772.487228pt;}
.x12_c01328{left:774.321312pt;}
.x48_c01328{left:778.011275pt;}
.x20_c01328{left:780.673333pt;}
.x11_c01328{left:782.598667pt;}
.xb0_c01328{left:785.220341pt;}
.x80_c01328{left:786.889440pt;}
.x5e_c01328{left:791.862667pt;}
.x76_c01328{left:793.773112pt;}
.xc0_c01328{left:795.003979pt;}
.x2d_c01328{left:797.364000pt;}
.x13_c01328{left:802.164437pt;}
.x5_c01328{left:803.554667pt;}
.xf1_c01328{left:807.466667pt;}
}





/* 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_c01329 {
    display:none;
  }
  .loading-indicator_c01329.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01329 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_c01329 { 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_c01329" -> "#page-container .classname_c01329")
 */
.pf_c01329 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01329 { /* 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_c01329.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01329 { /* 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_c01329 { /* 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_c01329 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01329 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01329 {overflow:visible;}
  }
}
.c_c01329 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01329 { /* 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_c01329:after { /* webkit #35443 */
  content: '';
}
.t_c01329:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01329 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 */
}
.__c01329 { /* 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_c01329 { /* info for Javascript */
  display:none;
}
.l_c01329 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01329 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01329 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01329: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_c01329 {
    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_c01329.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01329.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_c01329 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01329{font-family:sans-serif;visibility:hidden;}
.sc__c01329{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01329{-webkit-text-stroke:0px transparent;}
}
.y0_c01329{bottom:0.000000px;}
.h1_c01329{height:1250.250000px;}
.h0_c01329{height:1250.370000px;}
.w1_c01329{width:912.000000px;}
.w0_c01329{width:912.300000px;}
.x0_c01329{left:0.000000px;}
@media print{
.y0_c01329{bottom:0.000000pt;}
.h1_c01329{height:1111.333333pt;}
.h0_c01329{height:1111.440000pt;}
.w1_c01329{width:810.666667pt;}
.w0_c01329{width:810.933333pt;}
.x0_c01329{left:0.000000pt;}
}





/* 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_c01330 {
    display:none;
  }
  .loading-indicator_c01330.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01330 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_c01330 { 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_c01330" -> "#page-container .classname_c01330")
 */
.pf_c01330 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01330 { /* 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_c01330.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01330 { /* 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_c01330 { /* 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_c01330 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01330 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01330 {overflow:visible;}
  }
}
.c_c01330 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01330 { /* 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_c01330:after { /* webkit #35443 */
  content: '';
}
.t_c01330:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01330 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 */
}
.__c01330 { /* 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_c01330 { /* info for Javascript */
  display:none;
}
.l_c01330 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01330 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01330 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01330: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_c01330 {
    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_c01330.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01330.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_c01330 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01330{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01330;src:url('chunks/assets/font_c605e72f209fc835e906f064.woff2')format("woff");}.ff1_c01330{font-family:ff1_c01330;line-height:1.000000;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;}
.m155_c01330{transform:matrix(0.011243,0.000394,-0.008753,0.249847,0,0);-ms-transform:matrix(0.011243,0.000394,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.011243,0.000394,-0.008753,0.249847,0,0);}
.mbf_c01330{transform:matrix(0.013629,0.000395,-0.007247,0.249895,0,0);-ms-transform:matrix(0.013629,0.000395,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.013629,0.000395,-0.007247,0.249895,0,0);}
.m4f_c01330{transform:matrix(0.015453,0.000464,-0.007497,0.249888,0,0);-ms-transform:matrix(0.015453,0.000464,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.015453,0.000464,-0.007497,0.249888,0,0);}
.m84_c01330{transform:matrix(0.015903,0.000461,-0.007247,0.249895,0,0);-ms-transform:matrix(0.015903,0.000461,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.015903,0.000461,-0.007247,0.249895,0,0);}
.mc4_c01330{transform:matrix(0.130470,0.003784,-0.007247,0.249895,0,0);-ms-transform:matrix(0.130470,0.003784,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.130470,0.003784,-0.007247,0.249895,0,0);}
.mc8_c01330{transform:matrix(0.136118,0.003947,-0.007247,0.249895,0,0);-ms-transform:matrix(0.136118,0.003947,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.136118,0.003947,-0.007247,0.249895,0,0);}
.mc3_c01330{transform:matrix(0.140546,0.004076,-0.007247,0.249895,0,0);-ms-transform:matrix(0.140546,0.004076,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.140546,0.004076,-0.007247,0.249895,0,0);}
.m14f_c01330{transform:matrix(0.142213,0.004982,-0.008753,0.249847,0,0);-ms-transform:matrix(0.142213,0.004982,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.142213,0.004982,-0.008753,0.249847,0,0);}
.mc7_c01330{transform:matrix(0.144369,0.004187,-0.007247,0.249895,0,0);-ms-transform:matrix(0.144369,0.004187,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.144369,0.004187,-0.007247,0.249895,0,0);}
.mc6_c01330{transform:matrix(0.144689,0.004196,-0.007247,0.249895,0,0);-ms-transform:matrix(0.144689,0.004196,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.144689,0.004196,-0.007247,0.249895,0,0);}
.mc5_c01330{transform:matrix(0.144739,0.004197,-0.007247,0.249895,0,0);-ms-transform:matrix(0.144739,0.004197,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.144739,0.004197,-0.007247,0.249895,0,0);}
.m151_c01330{transform:matrix(0.144761,0.005072,-0.008753,0.249847,0,0);-ms-transform:matrix(0.144761,0.005072,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.144761,0.005072,-0.008753,0.249847,0,0);}
.mc9_c01330{transform:matrix(0.145014,0.004205,-0.007247,0.249895,0,0);-ms-transform:matrix(0.145014,0.004205,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.145014,0.004205,-0.007247,0.249895,0,0);}
.m154_c01330{transform:matrix(0.145990,0.005115,-0.008753,0.249847,0,0);-ms-transform:matrix(0.145990,0.005115,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.145990,0.005115,-0.008753,0.249847,0,0);}
.m14e_c01330{transform:matrix(0.146645,0.005138,-0.008753,0.249847,0,0);-ms-transform:matrix(0.146645,0.005138,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.146645,0.005138,-0.008753,0.249847,0,0);}
.m11c_c01330{transform:matrix(0.147818,0.004287,-0.007247,0.249895,0,0);-ms-transform:matrix(0.147818,0.004287,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.147818,0.004287,-0.007247,0.249895,0,0);}
.m15b_c01330{transform:matrix(0.151827,0.005319,-0.008753,0.249847,0,0);-ms-transform:matrix(0.151827,0.005319,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.151827,0.005319,-0.008753,0.249847,0,0);}
.mc2_c01330{transform:matrix(0.152291,0.004416,-0.007247,0.249895,0,0);-ms-transform:matrix(0.152291,0.004416,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.152291,0.004416,-0.007247,0.249895,0,0);}
.mca_c01330{transform:matrix(0.153615,0.004455,-0.007247,0.249895,0,0);-ms-transform:matrix(0.153615,0.004455,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.153615,0.004455,-0.007247,0.249895,0,0);}
.m153_c01330{transform:matrix(0.154230,0.005403,-0.008753,0.249847,0,0);-ms-transform:matrix(0.154230,0.005403,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.154230,0.005403,-0.008753,0.249847,0,0);}
.m158_c01330{transform:matrix(0.154435,0.005411,-0.008753,0.249847,0,0);-ms-transform:matrix(0.154435,0.005411,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.154435,0.005411,-0.008753,0.249847,0,0);}
.mf1_c01330{transform:matrix(0.155510,0.004510,-0.007247,0.249895,0,0);-ms-transform:matrix(0.155510,0.004510,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.155510,0.004510,-0.007247,0.249895,0,0);}
.m15c_c01330{transform:matrix(0.156414,0.005480,-0.008753,0.249847,0,0);-ms-transform:matrix(0.156414,0.005480,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.156414,0.005480,-0.008753,0.249847,0,0);}
.m159_c01330{transform:matrix(0.156984,0.005500,-0.008753,0.249847,0,0);-ms-transform:matrix(0.156984,0.005500,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.156984,0.005500,-0.008753,0.249847,0,0);}
.m15d_c01330{transform:matrix(0.157408,0.005515,-0.008753,0.249847,0,0);-ms-transform:matrix(0.157408,0.005515,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.157408,0.005515,-0.008753,0.249847,0,0);}
.md7_c01330{transform:matrix(0.159078,0.004613,-0.007247,0.249895,0,0);-ms-transform:matrix(0.159078,0.004613,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.159078,0.004613,-0.007247,0.249895,0,0);}
.m152_c01330{transform:matrix(0.159307,0.005581,-0.008753,0.249847,0,0);-ms-transform:matrix(0.159307,0.005581,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.159307,0.005581,-0.008753,0.249847,0,0);}
.m15a_c01330{transform:matrix(0.160861,0.005636,-0.008753,0.249847,0,0);-ms-transform:matrix(0.160861,0.005636,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.160861,0.005636,-0.008753,0.249847,0,0);}
.m60_c01330{transform:matrix(0.160907,0.004666,-0.007247,0.249895,0,0);-ms-transform:matrix(0.160907,0.004666,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.160907,0.004666,-0.007247,0.249895,0,0);}
.m150_c01330{transform:matrix(0.161226,0.005649,-0.008753,0.249847,0,0);-ms-transform:matrix(0.161226,0.005649,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.161226,0.005649,-0.008753,0.249847,0,0);}
.m157_c01330{transform:matrix(0.162210,0.005683,-0.008753,0.249847,0,0);-ms-transform:matrix(0.162210,0.005683,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.162210,0.005683,-0.008753,0.249847,0,0);}
.m14b_c01330{transform:matrix(0.163355,0.005723,-0.008753,0.249847,0,0);-ms-transform:matrix(0.163355,0.005723,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.163355,0.005723,-0.008753,0.249847,0,0);}
.m14d_c01330{transform:matrix(0.164079,0.005749,-0.008753,0.249847,0,0);-ms-transform:matrix(0.164079,0.005749,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.164079,0.005749,-0.008753,0.249847,0,0);}
.m5e_c01330{transform:matrix(0.165221,0.004791,-0.007247,0.249895,0,0);-ms-transform:matrix(0.165221,0.004791,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.165221,0.004791,-0.007247,0.249895,0,0);}
.m37_c01330{transform:matrix(0.165869,0.004313,-0.006498,0.249916,0,0);-ms-transform:matrix(0.165869,0.004313,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.165869,0.004313,-0.006498,0.249916,0,0);}
.m61_c01330{transform:matrix(0.167729,0.004864,-0.007247,0.249895,0,0);-ms-transform:matrix(0.167729,0.004864,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.167729,0.004864,-0.007247,0.249895,0,0);}
.m11b_c01330{transform:matrix(0.168309,0.004881,-0.007247,0.249895,0,0);-ms-transform:matrix(0.168309,0.004881,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.168309,0.004881,-0.007247,0.249895,0,0);}
.m14c_c01330{transform:matrix(0.168382,0.005899,-0.008753,0.249847,0,0);-ms-transform:matrix(0.168382,0.005899,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.168382,0.005899,-0.008753,0.249847,0,0);}
.m72_c01330{transform:matrix(0.169389,0.004912,-0.007247,0.249895,0,0);-ms-transform:matrix(0.169389,0.004912,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.169389,0.004912,-0.007247,0.249895,0,0);}
.m119_c01330{transform:matrix(0.169789,0.004924,-0.007247,0.249895,0,0);-ms-transform:matrix(0.169789,0.004924,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.169789,0.004924,-0.007247,0.249895,0,0);}
.m5a_c01330{transform:matrix(0.170523,0.004945,-0.007247,0.249895,0,0);-ms-transform:matrix(0.170523,0.004945,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.170523,0.004945,-0.007247,0.249895,0,0);}
.m65_c01330{transform:matrix(0.171008,0.004959,-0.007247,0.249895,0,0);-ms-transform:matrix(0.171008,0.004959,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.171008,0.004959,-0.007247,0.249895,0,0);}
.m5f_c01330{transform:matrix(0.171958,0.004987,-0.007247,0.249895,0,0);-ms-transform:matrix(0.171958,0.004987,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.171958,0.004987,-0.007247,0.249895,0,0);}
.m69_c01330{transform:matrix(0.172373,0.004999,-0.007247,0.249895,0,0);-ms-transform:matrix(0.172373,0.004999,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.172373,0.004999,-0.007247,0.249895,0,0);}
.m62_c01330{transform:matrix(0.172782,0.005011,-0.007247,0.249895,0,0);-ms-transform:matrix(0.172782,0.005011,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.172782,0.005011,-0.007247,0.249895,0,0);}
.m6a_c01330{transform:matrix(0.173192,0.005023,-0.007247,0.249895,0,0);-ms-transform:matrix(0.173192,0.005023,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.173192,0.005023,-0.007247,0.249895,0,0);}
.m5d_c01330{transform:matrix(0.173492,0.005031,-0.007247,0.249895,0,0);-ms-transform:matrix(0.173492,0.005031,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.173492,0.005031,-0.007247,0.249895,0,0);}
.m11d_c01330{transform:matrix(0.173587,0.005034,-0.007247,0.249895,0,0);-ms-transform:matrix(0.173587,0.005034,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.173587,0.005034,-0.007247,0.249895,0,0);}
.m74_c01330{transform:matrix(0.174667,0.005065,-0.007247,0.249895,0,0);-ms-transform:matrix(0.174667,0.005065,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.174667,0.005065,-0.007247,0.249895,0,0);}
.m5b_c01330{transform:matrix(0.174976,0.005074,-0.007247,0.249895,0,0);-ms-transform:matrix(0.174976,0.005074,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.174976,0.005074,-0.007247,0.249895,0,0);}
.m63_c01330{transform:matrix(0.175926,0.005102,-0.007247,0.249895,0,0);-ms-transform:matrix(0.175926,0.005102,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.175926,0.005102,-0.007247,0.249895,0,0);}
.m6c_c01330{transform:matrix(0.176151,0.005108,-0.007247,0.249895,0,0);-ms-transform:matrix(0.176151,0.005108,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.176151,0.005108,-0.007247,0.249895,0,0);}
.m57_c01330{transform:matrix(0.177026,0.005134,-0.007247,0.249895,0,0);-ms-transform:matrix(0.177026,0.005134,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.177026,0.005134,-0.007247,0.249895,0,0);}
.m75_c01330{transform:matrix(0.177111,0.005136,-0.007247,0.249895,0,0);-ms-transform:matrix(0.177111,0.005136,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.177111,0.005136,-0.007247,0.249895,0,0);}
.m64_c01330{transform:matrix(0.177265,0.005141,-0.007247,0.249895,0,0);-ms-transform:matrix(0.177265,0.005141,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.177265,0.005141,-0.007247,0.249895,0,0);}
.m66_c01330{transform:matrix(0.177330,0.005143,-0.007247,0.249895,0,0);-ms-transform:matrix(0.177330,0.005143,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.177330,0.005143,-0.007247,0.249895,0,0);}
.m118_c01330{transform:matrix(0.178255,0.005169,-0.007247,0.249895,0,0);-ms-transform:matrix(0.178255,0.005169,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.178255,0.005169,-0.007247,0.249895,0,0);}
.m70_c01330{transform:matrix(0.179964,0.005219,-0.007247,0.249895,0,0);-ms-transform:matrix(0.179964,0.005219,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.179964,0.005219,-0.007247,0.249895,0,0);}
.m68_c01330{transform:matrix(0.181109,0.005252,-0.007247,0.249895,0,0);-ms-transform:matrix(0.181109,0.005252,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.181109,0.005252,-0.007247,0.249895,0,0);}
.mba_c01330{transform:matrix(0.181219,0.005255,-0.007247,0.249895,0,0);-ms-transform:matrix(0.181219,0.005255,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.181219,0.005255,-0.007247,0.249895,0,0);}
.m156_c01330{transform:matrix(0.182283,0.006386,-0.008753,0.249847,0,0);-ms-transform:matrix(0.182283,0.006386,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.182283,0.006386,-0.008753,0.249847,0,0);}
.m71_c01330{transform:matrix(0.182413,0.005290,-0.007247,0.249895,0,0);-ms-transform:matrix(0.182413,0.005290,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.182413,0.005290,-0.007247,0.249895,0,0);}
.m6e_c01330{transform:matrix(0.183393,0.005318,-0.007247,0.249895,0,0);-ms-transform:matrix(0.183393,0.005318,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.183393,0.005318,-0.007247,0.249895,0,0);}
.mfb_c01330{transform:matrix(0.184283,0.005344,-0.007247,0.249895,0,0);-ms-transform:matrix(0.184283,0.005344,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.184283,0.005344,-0.007247,0.249895,0,0);}
.m73_c01330{transform:matrix(0.185427,0.005377,-0.007247,0.249895,0,0);-ms-transform:matrix(0.185427,0.005377,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.185427,0.005377,-0.007247,0.249895,0,0);}
.m79_c01330{transform:matrix(0.185547,0.005381,-0.007247,0.249895,0,0);-ms-transform:matrix(0.185547,0.005381,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.185547,0.005381,-0.007247,0.249895,0,0);}
.m50_c01330{transform:matrix(0.185752,0.005387,-0.007247,0.249895,0,0);-ms-transform:matrix(0.185752,0.005387,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.185752,0.005387,-0.007247,0.249895,0,0);}
.m5c_c01330{transform:matrix(0.186192,0.005400,-0.007247,0.249895,0,0);-ms-transform:matrix(0.186192,0.005400,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.186192,0.005400,-0.007247,0.249895,0,0);}
.m10d_c01330{transform:matrix(0.186387,0.005405,-0.007247,0.249895,0,0);-ms-transform:matrix(0.186387,0.005405,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.186387,0.005405,-0.007247,0.249895,0,0);}
.m6d_c01330{transform:matrix(0.186761,0.005416,-0.007247,0.249895,0,0);-ms-transform:matrix(0.186761,0.005416,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.186761,0.005416,-0.007247,0.249895,0,0);}
.m51_c01330{transform:matrix(0.187411,0.005435,-0.007247,0.249895,0,0);-ms-transform:matrix(0.187411,0.005435,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.187411,0.005435,-0.007247,0.249895,0,0);}
.m11a_c01330{transform:matrix(0.188571,0.005469,-0.007247,0.249895,0,0);-ms-transform:matrix(0.188571,0.005469,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.188571,0.005469,-0.007247,0.249895,0,0);}
.m6b_c01330{transform:matrix(0.188866,0.005477,-0.007247,0.249895,0,0);-ms-transform:matrix(0.188866,0.005477,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.188866,0.005477,-0.007247,0.249895,0,0);}
.maf_c01330{transform:matrix(0.191055,0.005541,-0.007247,0.249895,0,0);-ms-transform:matrix(0.191055,0.005541,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.191055,0.005541,-0.007247,0.249895,0,0);}
.m6f_c01330{transform:matrix(0.191819,0.005563,-0.007247,0.249895,0,0);-ms-transform:matrix(0.191819,0.005563,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.191819,0.005563,-0.007247,0.249895,0,0);}
.mf4_c01330{transform:matrix(0.194943,0.005653,-0.007247,0.249895,0,0);-ms-transform:matrix(0.194943,0.005653,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.194943,0.005653,-0.007247,0.249895,0,0);}
.m56_c01330{transform:matrix(0.195498,0.005669,-0.007247,0.249895,0,0);-ms-transform:matrix(0.195498,0.005669,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.195498,0.005669,-0.007247,0.249895,0,0);}
.mf8_c01330{transform:matrix(0.195808,0.005678,-0.007247,0.249895,0,0);-ms-transform:matrix(0.195808,0.005678,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.195808,0.005678,-0.007247,0.249895,0,0);}
.m10_c01330{transform:matrix(0.196288,0.005496,-0.006997,0.249902,0,0);-ms-transform:matrix(0.196288,0.005496,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.196288,0.005496,-0.006997,0.249902,0,0);}
.mc0_c01330{transform:matrix(0.197957,0.005741,-0.007247,0.249895,0,0);-ms-transform:matrix(0.197957,0.005741,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.197957,0.005741,-0.007247,0.249895,0,0);}
.mfa_c01330{transform:matrix(0.200026,0.005801,-0.007247,0.249895,0,0);-ms-transform:matrix(0.200026,0.005801,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.200026,0.005801,-0.007247,0.249895,0,0);}
.m54_c01330{transform:matrix(0.200106,0.005803,-0.007247,0.249895,0,0);-ms-transform:matrix(0.200106,0.005803,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.200106,0.005803,-0.007247,0.249895,0,0);}
.m11e_c01330{transform:matrix(0.201185,0.005834,-0.007247,0.249895,0,0);-ms-transform:matrix(0.201185,0.005834,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.201185,0.005834,-0.007247,0.249895,0,0);}
.m77_c01330{transform:matrix(0.202765,0.005880,-0.007247,0.249895,0,0);-ms-transform:matrix(0.202765,0.005880,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.202765,0.005880,-0.007247,0.249895,0,0);}
.m3d_c01330{transform:matrix(0.203154,0.006095,-0.007497,0.249888,0,0);-ms-transform:matrix(0.203154,0.006095,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.203154,0.006095,-0.007497,0.249888,0,0);}
.mb2_c01330{transform:matrix(0.204374,0.005927,-0.007247,0.249895,0,0);-ms-transform:matrix(0.204374,0.005927,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.204374,0.005927,-0.007247,0.249895,0,0);}
.m104_c01330{transform:matrix(0.205454,0.005958,-0.007247,0.249895,0,0);-ms-transform:matrix(0.205454,0.005958,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.205454,0.005958,-0.007247,0.249895,0,0);}
.m108_c01330{transform:matrix(0.205579,0.005962,-0.007247,0.249895,0,0);-ms-transform:matrix(0.205579,0.005962,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.205579,0.005962,-0.007247,0.249895,0,0);}
.mbc_c01330{transform:matrix(0.206173,0.005979,-0.007247,0.249895,0,0);-ms-transform:matrix(0.206173,0.005979,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.206173,0.005979,-0.007247,0.249895,0,0);}
.m5_c01330{transform:matrix(0.207369,0.005806,-0.006997,0.249902,0,0);-ms-transform:matrix(0.207369,0.005806,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.207369,0.005806,-0.006997,0.249902,0,0);}
.m2_c01330{transform:matrix(0.208385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208385,0.000000,0.000000,0.250000,0,0);}
.m22_c01330{transform:matrix(0.209548,0.005867,-0.006997,0.249902,0,0);-ms-transform:matrix(0.209548,0.005867,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.209548,0.005867,-0.006997,0.249902,0,0);}
.m55_c01330{transform:matrix(0.210252,0.006097,-0.007247,0.249895,0,0);-ms-transform:matrix(0.210252,0.006097,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.210252,0.006097,-0.007247,0.249895,0,0);}
.mb4_c01330{transform:matrix(0.210786,0.006113,-0.007247,0.249895,0,0);-ms-transform:matrix(0.210786,0.006113,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.210786,0.006113,-0.007247,0.249895,0,0);}
.mdc_c01330{transform:matrix(0.212481,0.006162,-0.007247,0.249895,0,0);-ms-transform:matrix(0.212481,0.006162,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.212481,0.006162,-0.007247,0.249895,0,0);}
.m106_c01330{transform:matrix(0.213210,0.006183,-0.007247,0.249895,0,0);-ms-transform:matrix(0.213210,0.006183,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.213210,0.006183,-0.007247,0.249895,0,0);}
.mc1_c01330{transform:matrix(0.213220,0.006183,-0.007247,0.249895,0,0);-ms-transform:matrix(0.213220,0.006183,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.213220,0.006183,-0.007247,0.249895,0,0);}
.m33_c01330{transform:matrix(0.213618,0.005554,-0.006498,0.249916,0,0);-ms-transform:matrix(0.213618,0.005554,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.213618,0.005554,-0.006498,0.249916,0,0);}
.mf3_c01330{transform:matrix(0.214340,0.006216,-0.007247,0.249895,0,0);-ms-transform:matrix(0.214340,0.006216,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.214340,0.006216,-0.007247,0.249895,0,0);}
.m8c_c01330{transform:matrix(0.214710,0.006227,-0.007247,0.249895,0,0);-ms-transform:matrix(0.214710,0.006227,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.214710,0.006227,-0.007247,0.249895,0,0);}
.m3b_c01330{transform:matrix(0.215053,0.006452,-0.007497,0.249888,0,0);-ms-transform:matrix(0.215053,0.006452,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.215053,0.006452,-0.007497,0.249888,0,0);}
.m3a_c01330{transform:matrix(0.215428,0.006463,-0.007497,0.249888,0,0);-ms-transform:matrix(0.215428,0.006463,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.215428,0.006463,-0.007497,0.249888,0,0);}
.m41_c01330{transform:matrix(0.215793,0.006474,-0.007497,0.249888,0,0);-ms-transform:matrix(0.215793,0.006474,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.215793,0.006474,-0.007497,0.249888,0,0);}
.mf9_c01330{transform:matrix(0.216549,0.006280,-0.007247,0.249895,0,0);-ms-transform:matrix(0.216549,0.006280,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.216549,0.006280,-0.007247,0.249895,0,0);}
.m137_c01330{transform:matrix(0.218848,0.006347,-0.007247,0.249895,0,0);-ms-transform:matrix(0.218848,0.006347,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.218848,0.006347,-0.007247,0.249895,0,0);}
.me2_c01330{transform:matrix(0.219443,0.006364,-0.007247,0.249895,0,0);-ms-transform:matrix(0.219443,0.006364,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.219443,0.006364,-0.007247,0.249895,0,0);}
.m0_c01330{transform:matrix(0.219965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219965,0.000000,0.000000,0.250000,0,0);}
.med_c01330{transform:matrix(0.220097,0.006383,-0.007247,0.249895,0,0);-ms-transform:matrix(0.220097,0.006383,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.220097,0.006383,-0.007247,0.249895,0,0);}
.mbe_c01330{transform:matrix(0.220372,0.006391,-0.007247,0.249895,0,0);-ms-transform:matrix(0.220372,0.006391,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.220372,0.006391,-0.007247,0.249895,0,0);}
.mf7_c01330{transform:matrix(0.220527,0.006395,-0.007247,0.249895,0,0);-ms-transform:matrix(0.220527,0.006395,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.220527,0.006395,-0.007247,0.249895,0,0);}
.mfc_c01330{transform:matrix(0.220682,0.006400,-0.007247,0.249895,0,0);-ms-transform:matrix(0.220682,0.006400,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.220682,0.006400,-0.007247,0.249895,0,0);}
.m39_c01330{transform:matrix(0.222300,0.006669,-0.007497,0.249888,0,0);-ms-transform:matrix(0.222300,0.006669,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.222300,0.006669,-0.007497,0.249888,0,0);}
.mdf_c01330{transform:matrix(0.222641,0.006457,-0.007247,0.249895,0,0);-ms-transform:matrix(0.222641,0.006457,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.222641,0.006457,-0.007247,0.249895,0,0);}
.maa_c01330{transform:matrix(0.222846,0.006463,-0.007247,0.249895,0,0);-ms-transform:matrix(0.222846,0.006463,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.222846,0.006463,-0.007247,0.249895,0,0);}
.m149_c01330{transform:matrix(0.223168,0.007819,-0.008753,0.249847,0,0);-ms-transform:matrix(0.223168,0.007819,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.223168,0.007819,-0.008753,0.249847,0,0);}
.m4_c01330{transform:matrix(0.223292,0.006252,-0.006997,0.249902,0,0);-ms-transform:matrix(0.223292,0.006252,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.223292,0.006252,-0.006997,0.249902,0,0);}
.ma0_c01330{transform:matrix(0.223416,0.006479,-0.007247,0.249895,0,0);-ms-transform:matrix(0.223416,0.006479,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.223416,0.006479,-0.007247,0.249895,0,0);}
.ma8_c01330{transform:matrix(0.223976,0.006495,-0.007247,0.249895,0,0);-ms-transform:matrix(0.223976,0.006495,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.223976,0.006495,-0.007247,0.249895,0,0);}
.m58_c01330{transform:matrix(0.224171,0.006501,-0.007247,0.249895,0,0);-ms-transform:matrix(0.224171,0.006501,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.224171,0.006501,-0.007247,0.249895,0,0);}
.m59_c01330{transform:matrix(0.224950,0.006524,-0.007247,0.249895,0,0);-ms-transform:matrix(0.224950,0.006524,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.224950,0.006524,-0.007247,0.249895,0,0);}
.mea_c01330{transform:matrix(0.225495,0.006539,-0.007247,0.249895,0,0);-ms-transform:matrix(0.225495,0.006539,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.225495,0.006539,-0.007247,0.249895,0,0);}
.m12f_c01330{transform:matrix(0.225685,0.006545,-0.007247,0.249895,0,0);-ms-transform:matrix(0.225685,0.006545,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.225685,0.006545,-0.007247,0.249895,0,0);}
.m111_c01330{transform:matrix(0.225930,0.006552,-0.007247,0.249895,0,0);-ms-transform:matrix(0.225930,0.006552,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.225930,0.006552,-0.007247,0.249895,0,0);}
.m126_c01330{transform:matrix(0.226480,0.006568,-0.007247,0.249895,0,0);-ms-transform:matrix(0.226480,0.006568,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.226480,0.006568,-0.007247,0.249895,0,0);}
.m133_c01330{transform:matrix(0.226870,0.006579,-0.007247,0.249895,0,0);-ms-transform:matrix(0.226870,0.006579,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.226870,0.006579,-0.007247,0.249895,0,0);}
.md_c01330{transform:matrix(0.227171,0.006361,-0.006997,0.249902,0,0);-ms-transform:matrix(0.227171,0.006361,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.227171,0.006361,-0.006997,0.249902,0,0);}
.m53_c01330{transform:matrix(0.227734,0.006604,-0.007247,0.249895,0,0);-ms-transform:matrix(0.227734,0.006604,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.227734,0.006604,-0.007247,0.249895,0,0);}
.mf5_c01330{transform:matrix(0.228104,0.006615,-0.007247,0.249895,0,0);-ms-transform:matrix(0.228104,0.006615,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.228104,0.006615,-0.007247,0.249895,0,0);}
.mef_c01330{transform:matrix(0.229678,0.006661,-0.007247,0.249895,0,0);-ms-transform:matrix(0.229678,0.006661,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.229678,0.006661,-0.007247,0.249895,0,0);}
.ma3_c01330{transform:matrix(0.229853,0.006666,-0.007247,0.249895,0,0);-ms-transform:matrix(0.229853,0.006666,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.229853,0.006666,-0.007247,0.249895,0,0);}
.md9_c01330{transform:matrix(0.229868,0.006666,-0.007247,0.249895,0,0);-ms-transform:matrix(0.229868,0.006666,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.229868,0.006666,-0.007247,0.249895,0,0);}
.m14_c01330{transform:matrix(0.230355,0.006450,-0.006997,0.249902,0,0);-ms-transform:matrix(0.230355,0.006450,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.230355,0.006450,-0.006997,0.249902,0,0);}
.m18_c01330{transform:matrix(0.230645,0.006458,-0.006997,0.249902,0,0);-ms-transform:matrix(0.230645,0.006458,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.230645,0.006458,-0.006997,0.249902,0,0);}
.mb6_c01330{transform:matrix(0.231048,0.006700,-0.007247,0.249895,0,0);-ms-transform:matrix(0.231048,0.006700,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.231048,0.006700,-0.007247,0.249895,0,0);}
.md2_c01330{transform:matrix(0.231313,0.006708,-0.007247,0.249895,0,0);-ms-transform:matrix(0.231313,0.006708,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.231313,0.006708,-0.007247,0.249895,0,0);}
.m1b_c01330{transform:matrix(0.231344,0.006478,-0.006997,0.249902,0,0);-ms-transform:matrix(0.231344,0.006478,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.231344,0.006478,-0.006997,0.249902,0,0);}
.mdd_c01330{transform:matrix(0.232237,0.006735,-0.007247,0.249895,0,0);-ms-transform:matrix(0.232237,0.006735,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.232237,0.006735,-0.007247,0.249895,0,0);}
.m52_c01330{transform:matrix(0.232697,0.006748,-0.007247,0.249895,0,0);-ms-transform:matrix(0.232697,0.006748,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.232697,0.006748,-0.007247,0.249895,0,0);}
.mbd_c01330{transform:matrix(0.233292,0.006765,-0.007247,0.249895,0,0);-ms-transform:matrix(0.233292,0.006765,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.233292,0.006765,-0.007247,0.249895,0,0);}
.m95_c01330{transform:matrix(0.233582,0.006774,-0.007247,0.249895,0,0);-ms-transform:matrix(0.233582,0.006774,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.233582,0.006774,-0.007247,0.249895,0,0);}
.m1e_c01330{transform:matrix(0.233643,0.006542,-0.006997,0.249902,0,0);-ms-transform:matrix(0.233643,0.006542,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.233643,0.006542,-0.006997,0.249902,0,0);}
.m100_c01330{transform:matrix(0.233987,0.006786,-0.007247,0.249895,0,0);-ms-transform:matrix(0.233987,0.006786,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.233987,0.006786,-0.007247,0.249895,0,0);}
.m123_c01330{transform:matrix(0.234247,0.006793,-0.007247,0.249895,0,0);-ms-transform:matrix(0.234247,0.006793,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.234247,0.006793,-0.007247,0.249895,0,0);}
.m6_c01330{transform:matrix(0.234598,0.006569,-0.006997,0.249902,0,0);-ms-transform:matrix(0.234598,0.006569,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.234598,0.006569,-0.006997,0.249902,0,0);}
.mee_c01330{transform:matrix(0.235476,0.006829,-0.007247,0.249895,0,0);-ms-transform:matrix(0.235476,0.006829,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.235476,0.006829,-0.007247,0.249895,0,0);}
.m122_c01330{transform:matrix(0.236131,0.006848,-0.007247,0.249895,0,0);-ms-transform:matrix(0.236131,0.006848,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.236131,0.006848,-0.007247,0.249895,0,0);}
.m135_c01330{transform:matrix(0.236785,0.006867,-0.007247,0.249895,0,0);-ms-transform:matrix(0.236785,0.006867,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.236785,0.006867,-0.007247,0.249895,0,0);}
.m103_c01330{transform:matrix(0.236965,0.006872,-0.007247,0.249895,0,0);-ms-transform:matrix(0.236965,0.006872,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.236965,0.006872,-0.007247,0.249895,0,0);}
.mfd_c01330{transform:matrix(0.237430,0.006885,-0.007247,0.249895,0,0);-ms-transform:matrix(0.237430,0.006885,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.237430,0.006885,-0.007247,0.249895,0,0);}
.m35_c01330{transform:matrix(0.237895,0.006185,-0.006498,0.249916,0,0);-ms-transform:matrix(0.237895,0.006185,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.237895,0.006185,-0.006498,0.249916,0,0);}
.m9d_c01330{transform:matrix(0.238045,0.006903,-0.007247,0.249895,0,0);-ms-transform:matrix(0.238045,0.006903,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.238045,0.006903,-0.007247,0.249895,0,0);}
.m102_c01330{transform:matrix(0.238375,0.006913,-0.007247,0.249895,0,0);-ms-transform:matrix(0.238375,0.006913,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.238375,0.006913,-0.007247,0.249895,0,0);}
.m81_c01330{transform:matrix(0.239169,0.006936,-0.007247,0.249895,0,0);-ms-transform:matrix(0.239169,0.006936,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.239169,0.006936,-0.007247,0.249895,0,0);}
.m27_c01330{transform:matrix(0.239189,0.006219,-0.006498,0.249916,0,0);-ms-transform:matrix(0.239189,0.006219,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.239189,0.006219,-0.006498,0.249916,0,0);}
.md0_c01330{transform:matrix(0.239224,0.006938,-0.007247,0.249895,0,0);-ms-transform:matrix(0.239224,0.006938,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.239224,0.006938,-0.007247,0.249895,0,0);}
.m115_c01330{transform:matrix(0.239529,0.006946,-0.007247,0.249895,0,0);-ms-transform:matrix(0.239529,0.006946,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.239529,0.006946,-0.007247,0.249895,0,0);}
.m3c_c01330{transform:matrix(0.239587,0.007188,-0.007497,0.249888,0,0);-ms-transform:matrix(0.239587,0.007188,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.239587,0.007188,-0.007497,0.249888,0,0);}
.m40_c01330{transform:matrix(0.239692,0.007191,-0.007497,0.249888,0,0);-ms-transform:matrix(0.239692,0.007191,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.239692,0.007191,-0.007497,0.249888,0,0);}
.m3f_c01330{transform:matrix(0.239802,0.007194,-0.007497,0.249888,0,0);-ms-transform:matrix(0.239802,0.007194,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.239802,0.007194,-0.007497,0.249888,0,0);}
.m9_c01330{transform:matrix(0.240226,0.006726,-0.006997,0.249902,0,0);-ms-transform:matrix(0.240226,0.006726,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.240226,0.006726,-0.006997,0.249902,0,0);}
.mab_c01330{transform:matrix(0.240299,0.006969,-0.007247,0.249895,0,0);-ms-transform:matrix(0.240299,0.006969,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.240299,0.006969,-0.007247,0.249895,0,0);}
.m12b_c01330{transform:matrix(0.240534,0.006975,-0.007247,0.249895,0,0);-ms-transform:matrix(0.240534,0.006975,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.240534,0.006975,-0.007247,0.249895,0,0);}
.m15_c01330{transform:matrix(0.240726,0.006740,-0.006997,0.249902,0,0);-ms-transform:matrix(0.240726,0.006740,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.240726,0.006740,-0.006997,0.249902,0,0);}
.m2d_c01330{transform:matrix(0.240789,0.006261,-0.006498,0.249916,0,0);-ms-transform:matrix(0.240789,0.006261,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.240789,0.006261,-0.006498,0.249916,0,0);}
.m7a_c01330{transform:matrix(0.240864,0.006985,-0.007247,0.249895,0,0);-ms-transform:matrix(0.240864,0.006985,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.240864,0.006985,-0.007247,0.249895,0,0);}
.m16_c01330{transform:matrix(0.241101,0.006751,-0.006997,0.249902,0,0);-ms-transform:matrix(0.241101,0.006751,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.241101,0.006751,-0.006997,0.249902,0,0);}
.mda_c01330{transform:matrix(0.241159,0.006994,-0.007247,0.249895,0,0);-ms-transform:matrix(0.241159,0.006994,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.241159,0.006994,-0.007247,0.249895,0,0);}
.m44_c01330{transform:matrix(0.241211,0.007236,-0.007497,0.249888,0,0);-ms-transform:matrix(0.241211,0.007236,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.241211,0.007236,-0.007497,0.249888,0,0);}
.m24_c01330{transform:matrix(0.241320,0.006757,-0.006997,0.249902,0,0);-ms-transform:matrix(0.241320,0.006757,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.241320,0.006757,-0.006997,0.249902,0,0);}
.ma4_c01330{transform:matrix(0.241399,0.007001,-0.007247,0.249895,0,0);-ms-transform:matrix(0.241399,0.007001,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.241399,0.007001,-0.007247,0.249895,0,0);}
.mb1_c01330{transform:matrix(0.241463,0.007002,-0.007247,0.249895,0,0);-ms-transform:matrix(0.241463,0.007002,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.241463,0.007002,-0.007247,0.249895,0,0);}
.m10c_c01330{transform:matrix(0.242108,0.007021,-0.007247,0.249895,0,0);-ms-transform:matrix(0.242108,0.007021,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.242108,0.007021,-0.007247,0.249895,0,0);}
.m110_c01330{transform:matrix(0.243638,0.007065,-0.007247,0.249895,0,0);-ms-transform:matrix(0.243638,0.007065,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.243638,0.007065,-0.007247,0.249895,0,0);}
.ma6_c01330{transform:matrix(0.243992,0.007076,-0.007247,0.249895,0,0);-ms-transform:matrix(0.243992,0.007076,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.243992,0.007076,-0.007247,0.249895,0,0);}
.m124_c01330{transform:matrix(0.244167,0.007081,-0.007247,0.249895,0,0);-ms-transform:matrix(0.244167,0.007081,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.244167,0.007081,-0.007247,0.249895,0,0);}
.mcf_c01330{transform:matrix(0.244757,0.007098,-0.007247,0.249895,0,0);-ms-transform:matrix(0.244757,0.007098,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.244757,0.007098,-0.007247,0.249895,0,0);}
.m114_c01330{transform:matrix(0.244862,0.007101,-0.007247,0.249895,0,0);-ms-transform:matrix(0.244862,0.007101,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.244862,0.007101,-0.007247,0.249895,0,0);}
.m13c_c01330{transform:matrix(0.244917,0.007103,-0.007247,0.249895,0,0);-ms-transform:matrix(0.244917,0.007103,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.244917,0.007103,-0.007247,0.249895,0,0);}
.m85_c01330{transform:matrix(0.245357,0.007115,-0.007247,0.249895,0,0);-ms-transform:matrix(0.245357,0.007115,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.245357,0.007115,-0.007247,0.249895,0,0);}
.m7_c01330{transform:matrix(0.245414,0.006872,-0.006997,0.249902,0,0);-ms-transform:matrix(0.245414,0.006872,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.245414,0.006872,-0.006997,0.249902,0,0);}
.m13a_c01330{transform:matrix(0.245552,0.007121,-0.007247,0.249895,0,0);-ms-transform:matrix(0.245552,0.007121,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.245552,0.007121,-0.007247,0.249895,0,0);}
.m113_c01330{transform:matrix(0.245557,0.007121,-0.007247,0.249895,0,0);-ms-transform:matrix(0.245557,0.007121,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.245557,0.007121,-0.007247,0.249895,0,0);}
.me1_c01330{transform:matrix(0.245622,0.007123,-0.007247,0.249895,0,0);-ms-transform:matrix(0.245622,0.007123,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.245622,0.007123,-0.007247,0.249895,0,0);}
.md5_c01330{transform:matrix(0.246092,0.007137,-0.007247,0.249895,0,0);-ms-transform:matrix(0.246092,0.007137,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.246092,0.007137,-0.007247,0.249895,0,0);}
.me5_c01330{transform:matrix(0.246251,0.007141,-0.007247,0.249895,0,0);-ms-transform:matrix(0.246251,0.007141,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.246251,0.007141,-0.007247,0.249895,0,0);}
.me8_c01330{transform:matrix(0.246876,0.007159,-0.007247,0.249895,0,0);-ms-transform:matrix(0.246876,0.007159,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.246876,0.007159,-0.007247,0.249895,0,0);}
.m2e_c01330{transform:matrix(0.246897,0.006419,-0.006498,0.249916,0,0);-ms-transform:matrix(0.246897,0.006419,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.246897,0.006419,-0.006498,0.249916,0,0);}
.mff_c01330{transform:matrix(0.247001,0.007163,-0.007247,0.249895,0,0);-ms-transform:matrix(0.247001,0.007163,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.247001,0.007163,-0.007247,0.249895,0,0);}
.m11_c01330{transform:matrix(0.247038,0.006917,-0.006997,0.249902,0,0);-ms-transform:matrix(0.247038,0.006917,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.247038,0.006917,-0.006997,0.249902,0,0);}
.m2b_c01330{transform:matrix(0.247421,0.006433,-0.006498,0.249916,0,0);-ms-transform:matrix(0.247421,0.006433,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.247421,0.006433,-0.006498,0.249916,0,0);}
.m136_c01330{transform:matrix(0.247711,0.007184,-0.007247,0.249895,0,0);-ms-transform:matrix(0.247711,0.007184,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.247711,0.007184,-0.007247,0.249895,0,0);}
.m1c_c01330{transform:matrix(0.248208,0.006950,-0.006997,0.249902,0,0);-ms-transform:matrix(0.248208,0.006950,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.248208,0.006950,-0.006997,0.249902,0,0);}
.ma2_c01330{transform:matrix(0.248236,0.007199,-0.007247,0.249895,0,0);-ms-transform:matrix(0.248236,0.007199,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.248236,0.007199,-0.007247,0.249895,0,0);}
.m8d_c01330{transform:matrix(0.248341,0.007202,-0.007247,0.249895,0,0);-ms-transform:matrix(0.248341,0.007202,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.248341,0.007202,-0.007247,0.249895,0,0);}
.m112_c01330{transform:matrix(0.248411,0.007204,-0.007247,0.249895,0,0);-ms-transform:matrix(0.248411,0.007204,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.248411,0.007204,-0.007247,0.249895,0,0);}
.mec_c01330{transform:matrix(0.248451,0.007205,-0.007247,0.249895,0,0);-ms-transform:matrix(0.248451,0.007205,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.248451,0.007205,-0.007247,0.249895,0,0);}
.mb3_c01330{transform:matrix(0.248675,0.007212,-0.007247,0.249895,0,0);-ms-transform:matrix(0.248675,0.007212,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.248675,0.007212,-0.007247,0.249895,0,0);}
.m13e_c01330{transform:matrix(0.248835,0.007216,-0.007247,0.249895,0,0);-ms-transform:matrix(0.248835,0.007216,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.248835,0.007216,-0.007247,0.249895,0,0);}
.m4d_c01330{transform:matrix(0.248998,0.007470,-0.007497,0.249888,0,0);-ms-transform:matrix(0.248998,0.007470,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.248998,0.007470,-0.007497,0.249888,0,0);}
.me0_c01330{transform:matrix(0.249225,0.007228,-0.007247,0.249895,0,0);-ms-transform:matrix(0.249225,0.007228,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.249225,0.007228,-0.007247,0.249895,0,0);}
.m3_c01330{transform:matrix(0.249312,0.006981,-0.006997,0.249902,0,0);-ms-transform:matrix(0.249312,0.006981,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.249312,0.006981,-0.006997,0.249902,0,0);}
.m2a_c01330{transform:matrix(0.249566,0.006489,-0.006498,0.249916,0,0);-ms-transform:matrix(0.249566,0.006489,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.249566,0.006489,-0.006498,0.249916,0,0);}
.m17_c01330{transform:matrix(0.249642,0.006990,-0.006997,0.249902,0,0);-ms-transform:matrix(0.249642,0.006990,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.249642,0.006990,-0.006997,0.249902,0,0);}
.m89_c01330{transform:matrix(0.249655,0.007240,-0.007247,0.249895,0,0);-ms-transform:matrix(0.249655,0.007240,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.249655,0.007240,-0.007247,0.249895,0,0);}
.meb_c01330{transform:matrix(0.249865,0.007246,-0.007247,0.249895,0,0);-ms-transform:matrix(0.249865,0.007246,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.249865,0.007246,-0.007247,0.249895,0,0);}
.m20_c01330{transform:matrix(0.250432,0.007012,-0.006997,0.249902,0,0);-ms-transform:matrix(0.250432,0.007012,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.250432,0.007012,-0.006997,0.249902,0,0);}
.m13_c01330{transform:matrix(0.250797,0.007022,-0.006997,0.249902,0,0);-ms-transform:matrix(0.250797,0.007022,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.250797,0.007022,-0.006997,0.249902,0,0);}
.m109_c01330{transform:matrix(0.250815,0.007274,-0.007247,0.249895,0,0);-ms-transform:matrix(0.250815,0.007274,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.250815,0.007274,-0.007247,0.249895,0,0);}
.m107_c01330{transform:matrix(0.250920,0.007277,-0.007247,0.249895,0,0);-ms-transform:matrix(0.250920,0.007277,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.250920,0.007277,-0.007247,0.249895,0,0);}
.m28_c01330{transform:matrix(0.250925,0.006524,-0.006498,0.249916,0,0);-ms-transform:matrix(0.250925,0.006524,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.250925,0.006524,-0.006498,0.249916,0,0);}
.mde_c01330{transform:matrix(0.251449,0.007292,-0.007247,0.249895,0,0);-ms-transform:matrix(0.251449,0.007292,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.251449,0.007292,-0.007247,0.249895,0,0);}
.m7e_c01330{transform:matrix(0.251649,0.007298,-0.007247,0.249895,0,0);-ms-transform:matrix(0.251649,0.007298,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.251649,0.007298,-0.007247,0.249895,0,0);}
.m139_c01330{transform:matrix(0.252309,0.007317,-0.007247,0.249895,0,0);-ms-transform:matrix(0.252309,0.007317,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.252309,0.007317,-0.007247,0.249895,0,0);}
.m1f_c01330{transform:matrix(0.252451,0.007069,-0.006997,0.249902,0,0);-ms-transform:matrix(0.252451,0.007069,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.252451,0.007069,-0.006997,0.249902,0,0);}
.m128_c01330{transform:matrix(0.252904,0.007334,-0.007247,0.249895,0,0);-ms-transform:matrix(0.252904,0.007334,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.252904,0.007334,-0.007247,0.249895,0,0);}
.m8_c01330{transform:matrix(0.252966,0.007083,-0.006997,0.249902,0,0);-ms-transform:matrix(0.252966,0.007083,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.252966,0.007083,-0.006997,0.249902,0,0);}
.m82_c01330{transform:matrix(0.253678,0.007357,-0.007247,0.249895,0,0);-ms-transform:matrix(0.253678,0.007357,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.253678,0.007357,-0.007247,0.249895,0,0);}
.m97_c01330{transform:matrix(0.253763,0.007359,-0.007247,0.249895,0,0);-ms-transform:matrix(0.253763,0.007359,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.253763,0.007359,-0.007247,0.249895,0,0);}
.m105_c01330{transform:matrix(0.253898,0.007363,-0.007247,0.249895,0,0);-ms-transform:matrix(0.253898,0.007363,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.253898,0.007363,-0.007247,0.249895,0,0);}
.mcc_c01330{transform:matrix(0.254078,0.007368,-0.007247,0.249895,0,0);-ms-transform:matrix(0.254078,0.007368,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.254078,0.007368,-0.007247,0.249895,0,0);}
.me3_c01330{transform:matrix(0.254438,0.007379,-0.007247,0.249895,0,0);-ms-transform:matrix(0.254438,0.007379,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.254438,0.007379,-0.007247,0.249895,0,0);}
.ma7_c01330{transform:matrix(0.255123,0.007399,-0.007247,0.249895,0,0);-ms-transform:matrix(0.255123,0.007399,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.255123,0.007399,-0.007247,0.249895,0,0);}
.m13d_c01330{transform:matrix(0.255358,0.007405,-0.007247,0.249895,0,0);-ms-transform:matrix(0.255358,0.007405,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.255358,0.007405,-0.007247,0.249895,0,0);}
.me7_c01330{transform:matrix(0.255543,0.007411,-0.007247,0.249895,0,0);-ms-transform:matrix(0.255543,0.007411,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.255543,0.007411,-0.007247,0.249895,0,0);}
.mcd_c01330{transform:matrix(0.255678,0.007415,-0.007247,0.249895,0,0);-ms-transform:matrix(0.255678,0.007415,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.255678,0.007415,-0.007247,0.249895,0,0);}
.m30_c01330{transform:matrix(0.255879,0.006653,-0.006498,0.249916,0,0);-ms-transform:matrix(0.255879,0.006653,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.255879,0.006653,-0.006498,0.249916,0,0);}
.m48_c01330{transform:matrix(0.255945,0.007678,-0.007497,0.249888,0,0);-ms-transform:matrix(0.255945,0.007678,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.255945,0.007678,-0.007497,0.249888,0,0);}
.mdb_c01330{transform:matrix(0.256087,0.007427,-0.007247,0.249895,0,0);-ms-transform:matrix(0.256087,0.007427,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.256087,0.007427,-0.007247,0.249895,0,0);}
.mc_c01330{transform:matrix(0.256225,0.007174,-0.006997,0.249902,0,0);-ms-transform:matrix(0.256225,0.007174,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.256225,0.007174,-0.006997,0.249902,0,0);}
.m45_c01330{transform:matrix(0.256525,0.007696,-0.007497,0.249888,0,0);-ms-transform:matrix(0.256525,0.007696,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.256525,0.007696,-0.007497,0.249888,0,0);}
.m12_c01330{transform:matrix(0.256539,0.007183,-0.006997,0.249902,0,0);-ms-transform:matrix(0.256539,0.007183,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.256539,0.007183,-0.006997,0.249902,0,0);}
.mf_c01330{transform:matrix(0.257219,0.007202,-0.006997,0.249902,0,0);-ms-transform:matrix(0.257219,0.007202,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.257219,0.007202,-0.006997,0.249902,0,0);}
.m13b_c01330{transform:matrix(0.257242,0.007460,-0.007247,0.249895,0,0);-ms-transform:matrix(0.257242,0.007460,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.257242,0.007460,-0.007247,0.249895,0,0);}
.me9_c01330{transform:matrix(0.257257,0.007460,-0.007247,0.249895,0,0);-ms-transform:matrix(0.257257,0.007460,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.257257,0.007460,-0.007247,0.249895,0,0);}
.m10f_c01330{transform:matrix(0.257497,0.007467,-0.007247,0.249895,0,0);-ms-transform:matrix(0.257497,0.007467,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.257497,0.007467,-0.007247,0.249895,0,0);}
.m21_c01330{transform:matrix(0.257779,0.007218,-0.006997,0.249902,0,0);-ms-transform:matrix(0.257779,0.007218,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.257779,0.007218,-0.006997,0.249902,0,0);}
.mb_c01330{transform:matrix(0.257854,0.007220,-0.006997,0.249902,0,0);-ms-transform:matrix(0.257854,0.007220,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.257854,0.007220,-0.006997,0.249902,0,0);}
.m99_c01330{transform:matrix(0.257922,0.007480,-0.007247,0.249895,0,0);-ms-transform:matrix(0.257922,0.007480,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.257922,0.007480,-0.007247,0.249895,0,0);}
.m10e_c01330{transform:matrix(0.257962,0.007481,-0.007247,0.249895,0,0);-ms-transform:matrix(0.257962,0.007481,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.257962,0.007481,-0.007247,0.249895,0,0);}
.m1d_c01330{transform:matrix(0.257969,0.007223,-0.006997,0.249902,0,0);-ms-transform:matrix(0.257969,0.007223,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.257969,0.007223,-0.006997,0.249902,0,0);}
.m12d_c01330{transform:matrix(0.257997,0.007482,-0.007247,0.249895,0,0);-ms-transform:matrix(0.257997,0.007482,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.257997,0.007482,-0.007247,0.249895,0,0);}
.m4a_c01330{transform:matrix(0.258069,0.007742,-0.007497,0.249888,0,0);-ms-transform:matrix(0.258069,0.007742,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.258069,0.007742,-0.007497,0.249888,0,0);}
.m121_c01330{transform:matrix(0.258176,0.007487,-0.007247,0.249895,0,0);-ms-transform:matrix(0.258176,0.007487,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.258176,0.007487,-0.007247,0.249895,0,0);}
.m8e_c01330{transform:matrix(0.258241,0.007489,-0.007247,0.249895,0,0);-ms-transform:matrix(0.258241,0.007489,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.258241,0.007489,-0.007247,0.249895,0,0);}
.mf6_c01330{transform:matrix(0.258536,0.007498,-0.007247,0.249895,0,0);-ms-transform:matrix(0.258536,0.007498,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.258536,0.007498,-0.007247,0.249895,0,0);}
.m101_c01330{transform:matrix(0.258811,0.007506,-0.007247,0.249895,0,0);-ms-transform:matrix(0.258811,0.007506,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.258811,0.007506,-0.007247,0.249895,0,0);}
.m49_c01330{transform:matrix(0.258939,0.007768,-0.007497,0.249888,0,0);-ms-transform:matrix(0.258939,0.007768,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.258939,0.007768,-0.007497,0.249888,0,0);}
.m138_c01330{transform:matrix(0.259036,0.007512,-0.007247,0.249895,0,0);-ms-transform:matrix(0.259036,0.007512,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.259036,0.007512,-0.007247,0.249895,0,0);}
.m8a_c01330{transform:matrix(0.259326,0.007520,-0.007247,0.249895,0,0);-ms-transform:matrix(0.259326,0.007520,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.259326,0.007520,-0.007247,0.249895,0,0);}
.ma_c01330{transform:matrix(0.259648,0.007270,-0.006997,0.249902,0,0);-ms-transform:matrix(0.259648,0.007270,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.259648,0.007270,-0.006997,0.249902,0,0);}
.m90_c01330{transform:matrix(0.259941,0.007538,-0.007247,0.249895,0,0);-ms-transform:matrix(0.259941,0.007538,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.259941,0.007538,-0.007247,0.249895,0,0);}
.m3e_c01330{transform:matrix(0.260503,0.007815,-0.007497,0.249888,0,0);-ms-transform:matrix(0.260503,0.007815,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.260503,0.007815,-0.007497,0.249888,0,0);}
.ma5_c01330{transform:matrix(0.260530,0.007555,-0.007247,0.249895,0,0);-ms-transform:matrix(0.260530,0.007555,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.260530,0.007555,-0.007247,0.249895,0,0);}
.m26_c01330{transform:matrix(0.260818,0.007303,-0.006997,0.249902,0,0);-ms-transform:matrix(0.260818,0.007303,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.260818,0.007303,-0.006997,0.249902,0,0);}
.m86_c01330{transform:matrix(0.261325,0.007578,-0.007247,0.249895,0,0);-ms-transform:matrix(0.261325,0.007578,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.261325,0.007578,-0.007247,0.249895,0,0);}
.m7d_c01330{transform:matrix(0.261465,0.007582,-0.007247,0.249895,0,0);-ms-transform:matrix(0.261465,0.007582,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.261465,0.007582,-0.007247,0.249895,0,0);}
.m125_c01330{transform:matrix(0.263029,0.007628,-0.007247,0.249895,0,0);-ms-transform:matrix(0.263029,0.007628,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.263029,0.007628,-0.007247,0.249895,0,0);}
.m36_c01330{transform:matrix(0.263141,0.006842,-0.006498,0.249916,0,0);-ms-transform:matrix(0.263141,0.006842,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.263141,0.006842,-0.006498,0.249916,0,0);}
.m132_c01330{transform:matrix(0.263484,0.007641,-0.007247,0.249895,0,0);-ms-transform:matrix(0.263484,0.007641,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.263484,0.007641,-0.007247,0.249895,0,0);}
.m87_c01330{transform:matrix(0.264384,0.007667,-0.007247,0.249895,0,0);-ms-transform:matrix(0.264384,0.007667,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.264384,0.007667,-0.007247,0.249895,0,0);}
.m9e_c01330{transform:matrix(0.264579,0.007673,-0.007247,0.249895,0,0);-ms-transform:matrix(0.264579,0.007673,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.264579,0.007673,-0.007247,0.249895,0,0);}
.m23_c01330{transform:matrix(0.265206,0.007426,-0.006997,0.249902,0,0);-ms-transform:matrix(0.265206,0.007426,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.265206,0.007426,-0.006997,0.249902,0,0);}
.m12c_c01330{transform:matrix(0.265773,0.007707,-0.007247,0.249895,0,0);-ms-transform:matrix(0.265773,0.007707,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.265773,0.007707,-0.007247,0.249895,0,0);}
.m34_c01330{transform:matrix(0.265795,0.006911,-0.006498,0.249916,0,0);-ms-transform:matrix(0.265795,0.006911,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.265795,0.006911,-0.006498,0.249916,0,0);}
.mac_c01330{transform:matrix(0.267108,0.007746,-0.007247,0.249895,0,0);-ms-transform:matrix(0.267108,0.007746,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.267108,0.007746,-0.007247,0.249895,0,0);}
.md1_c01330{transform:matrix(0.267153,0.007747,-0.007247,0.249895,0,0);-ms-transform:matrix(0.267153,0.007747,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.267153,0.007747,-0.007247,0.249895,0,0);}
.md3_c01330{transform:matrix(0.269472,0.007815,-0.007247,0.249895,0,0);-ms-transform:matrix(0.269472,0.007815,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.269472,0.007815,-0.007247,0.249895,0,0);}
.m47_c01330{transform:matrix(0.269499,0.008085,-0.007497,0.249888,0,0);-ms-transform:matrix(0.269499,0.008085,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.269499,0.008085,-0.007497,0.249888,0,0);}
.m46_c01330{transform:matrix(0.269779,0.008093,-0.007497,0.249888,0,0);-ms-transform:matrix(0.269779,0.008093,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.269779,0.008093,-0.007497,0.249888,0,0);}
.m2c_c01330{transform:matrix(0.269819,0.007015,-0.006498,0.249916,0,0);-ms-transform:matrix(0.269819,0.007015,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.269819,0.007015,-0.006498,0.249916,0,0);}
.m98_c01330{transform:matrix(0.270141,0.007834,-0.007247,0.249895,0,0);-ms-transform:matrix(0.270141,0.007834,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.270141,0.007834,-0.007247,0.249895,0,0);}
.m7f_c01330{transform:matrix(0.270331,0.007840,-0.007247,0.249895,0,0);-ms-transform:matrix(0.270331,0.007840,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.270331,0.007840,-0.007247,0.249895,0,0);}
.m1a_c01330{transform:matrix(0.271269,0.007596,-0.006997,0.249902,0,0);-ms-transform:matrix(0.271269,0.007596,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.271269,0.007596,-0.006997,0.249902,0,0);}
.m4b_c01330{transform:matrix(0.271438,0.008143,-0.007497,0.249888,0,0);-ms-transform:matrix(0.271438,0.008143,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.271438,0.008143,-0.007497,0.249888,0,0);}
.mce_c01330{transform:matrix(0.271466,0.007873,-0.007247,0.249895,0,0);-ms-transform:matrix(0.271466,0.007873,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.271466,0.007873,-0.007247,0.249895,0,0);}
.m96_c01330{transform:matrix(0.271656,0.007878,-0.007247,0.249895,0,0);-ms-transform:matrix(0.271656,0.007878,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.271656,0.007878,-0.007247,0.249895,0,0);}
.m10b_c01330{transform:matrix(0.271786,0.007882,-0.007247,0.249895,0,0);-ms-transform:matrix(0.271786,0.007882,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.271786,0.007882,-0.007247,0.249895,0,0);}
.mb5_c01330{transform:matrix(0.271826,0.007883,-0.007247,0.249895,0,0);-ms-transform:matrix(0.271826,0.007883,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.271826,0.007883,-0.007247,0.249895,0,0);}
.m127_c01330{transform:matrix(0.273240,0.007924,-0.007247,0.249895,0,0);-ms-transform:matrix(0.273240,0.007924,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.273240,0.007924,-0.007247,0.249895,0,0);}
.ma9_c01330{transform:matrix(0.274125,0.007950,-0.007247,0.249895,0,0);-ms-transform:matrix(0.274125,0.007950,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.274125,0.007950,-0.007247,0.249895,0,0);}
.mbb_c01330{transform:matrix(0.274515,0.007961,-0.007247,0.249895,0,0);-ms-transform:matrix(0.274515,0.007961,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.274515,0.007961,-0.007247,0.249895,0,0);}
.m8b_c01330{transform:matrix(0.274710,0.007967,-0.007247,0.249895,0,0);-ms-transform:matrix(0.274710,0.007967,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.274710,0.007967,-0.007247,0.249895,0,0);}
.m80_c01330{transform:matrix(0.275469,0.007989,-0.007247,0.249895,0,0);-ms-transform:matrix(0.275469,0.007989,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.275469,0.007989,-0.007247,0.249895,0,0);}
.m7b_c01330{transform:matrix(0.275659,0.007994,-0.007247,0.249895,0,0);-ms-transform:matrix(0.275659,0.007994,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.275659,0.007994,-0.007247,0.249895,0,0);}
.m8f_c01330{transform:matrix(0.275759,0.007997,-0.007247,0.249895,0,0);-ms-transform:matrix(0.275759,0.007997,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.275759,0.007997,-0.007247,0.249895,0,0);}
.m7c_c01330{transform:matrix(0.276224,0.008010,-0.007247,0.249895,0,0);-ms-transform:matrix(0.276224,0.008010,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.276224,0.008010,-0.007247,0.249895,0,0);}
.m88_c01330{transform:matrix(0.276954,0.008032,-0.007247,0.249895,0,0);-ms-transform:matrix(0.276954,0.008032,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.276954,0.008032,-0.007247,0.249895,0,0);}
.m2f_c01330{transform:matrix(0.277901,0.007225,-0.006498,0.249916,0,0);-ms-transform:matrix(0.277901,0.007225,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.277901,0.007225,-0.006498,0.249916,0,0);}
.md6_c01330{transform:matrix(0.278398,0.008074,-0.007247,0.249895,0,0);-ms-transform:matrix(0.278398,0.008074,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.278398,0.008074,-0.007247,0.249895,0,0);}
.m12e_c01330{transform:matrix(0.279058,0.008093,-0.007247,0.249895,0,0);-ms-transform:matrix(0.279058,0.008093,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.279058,0.008093,-0.007247,0.249895,0,0);}
.m134_c01330{transform:matrix(0.280112,0.008123,-0.007247,0.249895,0,0);-ms-transform:matrix(0.280112,0.008123,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.280112,0.008123,-0.007247,0.249895,0,0);}
.m131_c01330{transform:matrix(0.280177,0.008125,-0.007247,0.249895,0,0);-ms-transform:matrix(0.280177,0.008125,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.280177,0.008125,-0.007247,0.249895,0,0);}
.m12a_c01330{transform:matrix(0.280232,0.008127,-0.007247,0.249895,0,0);-ms-transform:matrix(0.280232,0.008127,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.280232,0.008127,-0.007247,0.249895,0,0);}
.md4_c01330{transform:matrix(0.280662,0.008139,-0.007247,0.249895,0,0);-ms-transform:matrix(0.280662,0.008139,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.280662,0.008139,-0.007247,0.249895,0,0);}
.m29_c01330{transform:matrix(0.280695,0.007298,-0.006498,0.249916,0,0);-ms-transform:matrix(0.280695,0.007298,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.280695,0.007298,-0.006498,0.249916,0,0);}
.m9c_c01330{transform:matrix(0.281002,0.008149,-0.007247,0.249895,0,0);-ms-transform:matrix(0.281002,0.008149,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.281002,0.008149,-0.007247,0.249895,0,0);}
.mae_c01330{transform:matrix(0.281382,0.008160,-0.007247,0.249895,0,0);-ms-transform:matrix(0.281382,0.008160,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.281382,0.008160,-0.007247,0.249895,0,0);}
.m4c_c01330{transform:matrix(0.281908,0.008457,-0.007497,0.249888,0,0);-ms-transform:matrix(0.281908,0.008457,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.281908,0.008457,-0.007497,0.249888,0,0);}
.m9a_c01330{transform:matrix(0.282231,0.008185,-0.007247,0.249895,0,0);-ms-transform:matrix(0.282231,0.008185,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.282231,0.008185,-0.007247,0.249895,0,0);}
.m31_c01330{transform:matrix(0.283144,0.007362,-0.006498,0.249916,0,0);-ms-transform:matrix(0.283144,0.007362,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.283144,0.007362,-0.006498,0.249916,0,0);}
.m94_c01330{transform:matrix(0.287774,0.008345,-0.007247,0.249895,0,0);-ms-transform:matrix(0.287774,0.008345,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.287774,0.008345,-0.007247,0.249895,0,0);}
.m91_c01330{transform:matrix(0.287804,0.008346,-0.007247,0.249895,0,0);-ms-transform:matrix(0.287804,0.008346,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.287804,0.008346,-0.007247,0.249895,0,0);}
.mb0_c01330{transform:matrix(0.288734,0.008373,-0.007247,0.249895,0,0);-ms-transform:matrix(0.288734,0.008373,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.288734,0.008373,-0.007247,0.249895,0,0);}
.m93_c01330{transform:matrix(0.290568,0.008426,-0.007247,0.249895,0,0);-ms-transform:matrix(0.290568,0.008426,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.290568,0.008426,-0.007247,0.249895,0,0);}
.m25_c01330{transform:matrix(0.291951,0.008175,-0.006997,0.249902,0,0);-ms-transform:matrix(0.291951,0.008175,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.291951,0.008175,-0.006997,0.249902,0,0);}
.m78_c01330{transform:matrix(0.293222,0.008503,-0.007247,0.249895,0,0);-ms-transform:matrix(0.293222,0.008503,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.293222,0.008503,-0.007247,0.249895,0,0);}
.m4e_c01330{transform:matrix(0.300245,0.009007,-0.007497,0.249888,0,0);-ms-transform:matrix(0.300245,0.009007,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.300245,0.009007,-0.007497,0.249888,0,0);}
.m130_c01330{transform:matrix(0.302578,0.008775,-0.007247,0.249895,0,0);-ms-transform:matrix(0.302578,0.008775,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.302578,0.008775,-0.007247,0.249895,0,0);}
.me_c01330{transform:matrix(0.307869,0.008620,-0.006997,0.249902,0,0);-ms-transform:matrix(0.307869,0.008620,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.307869,0.008620,-0.006997,0.249902,0,0);}
.m19_c01330{transform:matrix(0.308444,0.008636,-0.006997,0.249902,0,0);-ms-transform:matrix(0.308444,0.008636,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.308444,0.008636,-0.006997,0.249902,0,0);}
.m9f_c01330{transform:matrix(0.312264,0.009056,-0.007247,0.249895,0,0);-ms-transform:matrix(0.312264,0.009056,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.312264,0.009056,-0.007247,0.249895,0,0);}
.m67_c01330{transform:matrix(0.317996,0.009222,-0.007247,0.249895,0,0);-ms-transform:matrix(0.317996,0.009222,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.317996,0.009222,-0.007247,0.249895,0,0);}
.me4_c01330{transform:matrix(0.330526,0.009585,-0.007247,0.249895,0,0);-ms-transform:matrix(0.330526,0.009585,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.330526,0.009585,-0.007247,0.249895,0,0);}
.m143_c01330{transform:matrix(0.334305,0.011712,-0.008753,0.249847,0,0);-ms-transform:matrix(0.334305,0.011712,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.334305,0.011712,-0.008753,0.249847,0,0);}
.m42_c01330{transform:matrix(0.336244,0.010087,-0.007497,0.249888,0,0);-ms-transform:matrix(0.336244,0.010087,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.336244,0.010087,-0.007497,0.249888,0,0);}
.m1_c01330{transform:matrix(0.341965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341965,0.000000,0.000000,0.250000,0,0);}
.m117_c01330{transform:matrix(0.342281,0.009926,-0.007247,0.249895,0,0);-ms-transform:matrix(0.342281,0.009926,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.342281,0.009926,-0.007247,0.249895,0,0);}
.m83_c01330{transform:matrix(0.346414,0.010046,-0.007247,0.249895,0,0);-ms-transform:matrix(0.346414,0.010046,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.346414,0.010046,-0.007247,0.249895,0,0);}
.m11f_c01330{transform:matrix(0.357860,0.010378,-0.007247,0.249895,0,0);-ms-transform:matrix(0.357860,0.010378,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.357860,0.010378,-0.007247,0.249895,0,0);}
.m144_c01330{transform:matrix(0.358470,0.012559,-0.008753,0.249847,0,0);-ms-transform:matrix(0.358470,0.012559,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.358470,0.012559,-0.008753,0.249847,0,0);}
.m145_c01330{transform:matrix(0.381146,0.013353,-0.008753,0.249847,0,0);-ms-transform:matrix(0.381146,0.013353,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.381146,0.013353,-0.008753,0.249847,0,0);}
.m148_c01330{transform:matrix(0.384214,0.013461,-0.008753,0.249847,0,0);-ms-transform:matrix(0.384214,0.013461,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.384214,0.013461,-0.008753,0.249847,0,0);}
.m43_c01330{transform:matrix(0.396212,0.011886,-0.007497,0.249888,0,0);-ms-transform:matrix(0.396212,0.011886,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.396212,0.011886,-0.007497,0.249888,0,0);}
.m9b_c01330{transform:matrix(0.401236,0.011636,-0.007247,0.249895,0,0);-ms-transform:matrix(0.401236,0.011636,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.401236,0.011636,-0.007247,0.249895,0,0);}
.m120_c01330{transform:matrix(0.401506,0.011644,-0.007247,0.249895,0,0);-ms-transform:matrix(0.401506,0.011644,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.401506,0.011644,-0.007247,0.249895,0,0);}
.m14a_c01330{transform:matrix(0.405881,0.014220,-0.008753,0.249847,0,0);-ms-transform:matrix(0.405881,0.014220,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.405881,0.014220,-0.008753,0.249847,0,0);}
.m146_c01330{transform:matrix(0.412197,0.014441,-0.008753,0.249847,0,0);-ms-transform:matrix(0.412197,0.014441,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.412197,0.014441,-0.008753,0.249847,0,0);}
.m76_c01330{transform:matrix(0.419519,0.012166,-0.007247,0.249895,0,0);-ms-transform:matrix(0.419519,0.012166,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.419519,0.012166,-0.007247,0.249895,0,0);}
.md8_c01330{transform:matrix(0.424781,0.012319,-0.007247,0.249895,0,0);-ms-transform:matrix(0.424781,0.012319,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.424781,0.012319,-0.007247,0.249895,0,0);}
.mb9_c01330{transform:matrix(0.427225,0.012390,-0.007247,0.249895,0,0);-ms-transform:matrix(0.427225,0.012390,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.427225,0.012390,-0.007247,0.249895,0,0);}
.m147_c01330{transform:matrix(0.436562,0.015295,-0.008753,0.249847,0,0);-ms-transform:matrix(0.436562,0.015295,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.436562,0.015295,-0.008753,0.249847,0,0);}
.m142_c01330{transform:matrix(0.440315,0.015426,-0.008753,0.249847,0,0);-ms-transform:matrix(0.440315,0.015426,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.440315,0.015426,-0.008753,0.249847,0,0);}
.m141_c01330{transform:matrix(0.447480,0.015677,-0.008753,0.249847,0,0);-ms-transform:matrix(0.447480,0.015677,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.447480,0.015677,-0.008753,0.249847,0,0);}
.m32_c01330{transform:matrix(0.450238,0.011706,-0.006498,0.249916,0,0);-ms-transform:matrix(0.450238,0.011706,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.450238,0.011706,-0.006498,0.249916,0,0);}
.mcb_c01330{transform:matrix(0.452855,0.013133,-0.007247,0.249895,0,0);-ms-transform:matrix(0.452855,0.013133,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.452855,0.013133,-0.007247,0.249895,0,0);}
.m140_c01330{transform:matrix(0.453117,0.015875,-0.008753,0.249847,0,0);-ms-transform:matrix(0.453117,0.015875,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.453117,0.015875,-0.008753,0.249847,0,0);}
.mf0_c01330{transform:matrix(0.465824,0.013509,-0.007247,0.249895,0,0);-ms-transform:matrix(0.465824,0.013509,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.465824,0.013509,-0.007247,0.249895,0,0);}
.m92_c01330{transform:matrix(0.466404,0.013526,-0.007247,0.249895,0,0);-ms-transform:matrix(0.466404,0.013526,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.466404,0.013526,-0.007247,0.249895,0,0);}
.mad_c01330{transform:matrix(0.470622,0.013648,-0.007247,0.249895,0,0);-ms-transform:matrix(0.470622,0.013648,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.470622,0.013648,-0.007247,0.249895,0,0);}
.mf2_c01330{transform:matrix(0.484536,0.014052,-0.007247,0.249895,0,0);-ms-transform:matrix(0.484536,0.014052,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.484536,0.014052,-0.007247,0.249895,0,0);}
.m38_c01330{transform:matrix(0.499481,0.012987,-0.006498,0.249916,0,0);-ms-transform:matrix(0.499481,0.012987,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.499481,0.012987,-0.006498,0.249916,0,0);}
.ma1_c01330{transform:matrix(0.507687,0.014723,-0.007247,0.249895,0,0);-ms-transform:matrix(0.507687,0.014723,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.507687,0.014723,-0.007247,0.249895,0,0);}
.m13f_c01330{transform:matrix(0.512650,0.017961,-0.008753,0.249847,0,0);-ms-transform:matrix(0.512650,0.017961,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.512650,0.017961,-0.008753,0.249847,0,0);}
.m10a_c01330{transform:matrix(0.537544,0.015589,-0.007247,0.249895,0,0);-ms-transform:matrix(0.537544,0.015589,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.537544,0.015589,-0.007247,0.249895,0,0);}
.me6_c01330{transform:matrix(0.547450,0.015876,-0.007247,0.249895,0,0);-ms-transform:matrix(0.547450,0.015876,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.547450,0.015876,-0.007247,0.249895,0,0);}
.m116_c01330{transform:matrix(0.607480,0.017617,-0.007247,0.249895,0,0);-ms-transform:matrix(0.607480,0.017617,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.607480,0.017617,-0.007247,0.249895,0,0);}
.m129_c01330{transform:matrix(0.642685,0.018638,-0.007247,0.249895,0,0);-ms-transform:matrix(0.642685,0.018638,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.642685,0.018638,-0.007247,0.249895,0,0);}
.mb7_c01330{transform:matrix(0.690275,0.020018,-0.007247,0.249895,0,0);-ms-transform:matrix(0.690275,0.020018,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.690275,0.020018,-0.007247,0.249895,0,0);}
.mfe_c01330{transform:matrix(0.878406,0.025474,-0.007247,0.249895,0,0);-ms-transform:matrix(0.878406,0.025474,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.878406,0.025474,-0.007247,0.249895,0,0);}
.mb8_c01330{transform:matrix(1.499670,0.043490,-0.007247,0.249895,0,0);-ms-transform:matrix(1.499670,0.043490,-0.007247,0.249895,0,0);-webkit-transform:matrix(1.499670,0.043490,-0.007247,0.249895,0,0);}
.v0_c01330{vertical-align:0.000000px;}
.ls0_c01330{letter-spacing:0.000000px;}
.sc__c01330{text-shadow:none;}
.sc0_c01330{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__c01330{-webkit-text-stroke:0px transparent;}
.sc0_c01330{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01330{word-spacing:0.000000px;}
.fc0_c01330{color:transparent;}
.fsd_c01330{font-size:47.981420px;}
.fs3_c01330{font-size:72.024332px;}
.fs2_c01330{font-size:72.028218px;}
.fs9_c01330{font-size:72.030270px;}
.fs5_c01330{font-size:72.032393px;}
.fs1_c01330{font-size:78.030570px;}
.fsa_c01330{font-size:78.032792px;}
.fs0_c01330{font-size:84.000000px;}
.fsb_c01330{font-size:84.035315px;}
.fs4_c01330{font-size:84.037791px;}
.fs6_c01330{font-size:90.037837px;}
.fs8_c01330{font-size:102.042882px;}
.fs7_c01330{font-size:108.045404px;}
.fse_c01330{font-size:119.953551px;}
.fsc_c01330{font-size:132.055494px;}
.y0_c01330{bottom:0.000000px;}
.y164_c01330{bottom:80.777240px;}
.y163_c01330{bottom:81.668328px;}
.y162_c01330{bottom:83.381483px;}
.y161_c01330{bottom:85.530665px;}
.y160_c01330{bottom:87.699510px;}
.y15f_c01330{bottom:88.952459px;}
.y15e_c01330{bottom:89.775102px;}
.y15d_c01330{bottom:92.366191px;}
.y15c_c01330{bottom:95.379945px;}
.y15b_c01330{bottom:100.485962px;}
.y15a_c01330{bottom:118.256219px;}
.y159_c01330{bottom:120.696704px;}
.y158_c01330{bottom:122.719218px;}
.y157_c01330{bottom:124.703618px;}
.y156_c01330{bottom:125.888749px;}
.y155_c01330{bottom:126.687649px;}
.y154_c01330{bottom:127.865011px;}
.y153_c01330{bottom:128.613168px;}
.y152_c01330{bottom:131.424450px;}
.y151_c01330{bottom:134.191183px;}
.y150_c01330{bottom:136.108011px;}
.y14f_c01330{bottom:155.094795px;}
.y14e_c01330{bottom:155.802285px;}
.y14d_c01330{bottom:157.400805px;}
.y14c_c01330{bottom:159.326715px;}
.y14b_c01330{bottom:160.511587px;}
.y14a_c01330{bottom:161.229997px;}
.y149_c01330{bottom:162.789615px;}
.y148_c01330{bottom:163.896262px;}
.y147_c01330{bottom:166.640332px;}
.y146_c01330{bottom:168.301590px;}
.y145_c01330{bottom:169.307962px;}
.y144_c01330{bottom:171.193500px;}
.y143_c01330{bottom:200.529620px;}
.y142_c01330{bottom:203.172638px;}
.y141_c01330{bottom:204.357186px;}
.y140_c01330{bottom:207.977403px;}
.y13f_c01330{bottom:209.906117px;}
.y13e_c01330{bottom:212.477082px;}
.y13d_c01330{bottom:216.950903px;}
.y13c_c01330{bottom:218.052764px;}
.y13b_c01330{bottom:220.677905px;}
.y13a_c01330{bottom:222.483957px;}
.y139_c01330{bottom:235.865505px;}
.y138_c01330{bottom:236.901438px;}
.y137_c01330{bottom:237.659141px;}
.y136_c01330{bottom:241.657788px;}
.y135_c01330{bottom:243.479393px;}
.y134_c01330{bottom:244.175177px;}
.y133_c01330{bottom:247.804619px;}
.y132_c01330{bottom:249.608280px;}
.y131_c01330{bottom:250.686993px;}
.y130_c01330{bottom:252.841026px;}
.y12f_c01330{bottom:253.930853px;}
.y12e_c01330{bottom:256.791479px;}
.y12d_c01330{bottom:271.228086px;}
.y12c_c01330{bottom:272.756397px;}
.y12b_c01330{bottom:275.552784px;}
.y12a_c01330{bottom:276.750419px;}
.y129_c01330{bottom:280.708251px;}
.y128_c01330{bottom:283.390353px;}
.y127_c01330{bottom:285.439418px;}
.y126_c01330{bottom:286.993457px;}
.y125_c01330{bottom:290.555565px;}
.y124_c01330{bottom:305.197637px;}
.y123_c01330{bottom:306.111224px;}
.y122_c01330{bottom:319.818074px;}
.y121_c01330{bottom:320.758413px;}
.y120_c01330{bottom:321.382508px;}
.y11f_c01330{bottom:322.364259px;}
.y11e_c01330{bottom:324.259467px;}
.y11d_c01330{bottom:325.206288px;}
.y11c_c01330{bottom:326.474009px;}
.y11b_c01330{bottom:339.862215px;}
.y11a_c01330{bottom:340.631696px;}
.y119_c01330{bottom:343.208223px;}
.y118_c01330{bottom:343.859408px;}
.y117_c01330{bottom:345.840713px;}
.y116_c01330{bottom:348.465155px;}
.y115_c01330{bottom:349.469336px;}
.y114_c01330{bottom:351.721511px;}
.y113_c01330{bottom:355.384824px;}
.y112_c01330{bottom:356.373824px;}
.y111_c01330{bottom:360.247173px;}
.y110_c01330{bottom:361.134080px;}
.y10f_c01330{bottom:361.856516px;}
.y10e_c01330{bottom:375.155804px;}
.y10d_c01330{bottom:377.234808px;}
.y10c_c01330{bottom:378.223199px;}
.y10b_c01330{bottom:379.877628px;}
.y10a_c01330{bottom:380.481290px;}
.y109_c01330{bottom:382.482996px;}
.y108_c01330{bottom:383.148426px;}
.y107_c01330{bottom:385.759775px;}
.y106_c01330{bottom:386.738378px;}
.y105_c01330{bottom:388.075937px;}
.y104_c01330{bottom:389.408711px;}
.y103_c01330{bottom:390.710883px;}
.y102_c01330{bottom:394.319061px;}
.y101_c01330{bottom:395.638982px;}
.y100_c01330{bottom:397.245932px;}
.yff_c01330{bottom:408.480905px;}
.yfe_c01330{bottom:410.529191px;}
.yfd_c01330{bottom:413.150634px;}
.yfc_c01330{bottom:414.241295px;}
.yfb_c01330{bottom:416.115528px;}
.yfa_c01330{bottom:418.755240px;}
.yf9_c01330{bottom:419.892617px;}
.yf8_c01330{bottom:422.518019px;}
.yf7_c01330{bottom:423.240870px;}
.yf6_c01330{bottom:427.725891px;}
.yf5_c01330{bottom:429.522353px;}
.yf4_c01330{bottom:432.901250px;}
.yf3_c01330{bottom:443.448245px;}
.yf2_c01330{bottom:443.905157px;}
.yf1_c01330{bottom:445.429524px;}
.yf0_c01330{bottom:446.553960px;}
.yef_c01330{bottom:450.265934px;}
.yee_c01330{bottom:451.433171px;}
.yed_c01330{bottom:452.534205px;}
.yec_c01330{bottom:455.141252px;}
.yeb_c01330{bottom:457.767219px;}
.yea_c01330{bottom:458.877845px;}
.ye9_c01330{bottom:462.214028px;}
.ye8_c01330{bottom:464.849021px;}
.ye7_c01330{bottom:468.556058px;}
.ye6_c01330{bottom:479.159348px;}
.ye5_c01330{bottom:479.926001px;}
.ye4_c01330{bottom:481.274565px;}
.ye3_c01330{bottom:482.907789px;}
.ye2_c01330{bottom:483.911274px;}
.ye1_c01330{bottom:485.889056px;}
.ye0_c01330{bottom:487.858311px;}
.ydf_c01330{bottom:488.815230px;}
.yde_c01330{bottom:491.796236px;}
.ydd_c01330{bottom:493.101192px;}
.ydc_c01330{bottom:494.097326px;}
.ydb_c01330{bottom:497.364403px;}
.yda_c01330{bottom:499.374744px;}
.yd9_c01330{bottom:500.969276px;}
.yd8_c01330{bottom:514.204425px;}
.yd7_c01330{bottom:514.760076px;}
.yd6_c01330{bottom:518.561180px;}
.yd5_c01330{bottom:519.587616px;}
.yd4_c01330{bottom:522.611508px;}
.yd3_c01330{bottom:524.696439px;}
.yd2_c01330{bottom:526.714752px;}
.yd1_c01330{bottom:529.108763px;}
.yd0_c01330{bottom:530.123454px;}
.ycf_c01330{bottom:530.744288px;}
.yce_c01330{bottom:531.820704px;}
.ycd_c01330{bottom:534.193640px;}
.ycc_c01330{bottom:535.533570px;}
.ycb_c01330{bottom:536.897751px;}
.yca_c01330{bottom:551.500313px;}
.yc9_c01330{bottom:555.329486px;}
.yc8_c01330{bottom:557.626437px;}
.yc7_c01330{bottom:558.771411px;}
.yc6_c01330{bottom:560.707061px;}
.yc5_c01330{bottom:561.460155px;}
.yc4_c01330{bottom:563.383865px;}
.yc3_c01330{bottom:564.507069px;}
.yc2_c01330{bottom:566.067107px;}
.yc1_c01330{bottom:569.897498px;}
.yc0_c01330{bottom:571.098408px;}
.ybf_c01330{bottom:586.036635px;}
.ybe_c01330{bottom:593.778287px;}
.ybd_c01330{bottom:600.393810px;}
.ybc_c01330{bottom:603.335280px;}
.ybb_c01330{bottom:604.285494px;}
.yba_c01330{bottom:606.161997px;}
.yb9_c01330{bottom:607.387740px;}
.yb8_c01330{bottom:619.625523px;}
.yb7_c01330{bottom:624.175781px;}
.yb6_c01330{bottom:630.023798px;}
.yb5_c01330{bottom:631.637922px;}
.yb4_c01330{bottom:632.708684px;}
.yb3_c01330{bottom:633.368775px;}
.yb2_c01330{bottom:635.117136px;}
.yb1_c01330{bottom:636.118583px;}
.yb0_c01330{bottom:638.162364px;}
.yaf_c01330{bottom:640.440473px;}
.yae_c01330{bottom:641.198805px;}
.yad_c01330{bottom:642.239661px;}
.yac_c01330{bottom:656.117771px;}
.yab_c01330{bottom:659.771688px;}
.yaa_c01330{bottom:661.390992px;}
.ya9_c01330{bottom:662.392128px;}
.ya8_c01330{bottom:664.398075px;}
.ya7_c01330{bottom:665.345120px;}
.ya6_c01330{bottom:667.984329px;}
.ya5_c01330{bottom:669.324455px;}
.ya4_c01330{bottom:672.588423px;}
.ya3_c01330{bottom:674.872940px;}
.ya2_c01330{bottom:675.896847px;}
.ya1_c01330{bottom:678.163986px;}
.ya0_c01330{bottom:690.726919px;}
.y9f_c01330{bottom:691.365358px;}
.y9e_c01330{bottom:694.264890px;}
.y9d_c01330{bottom:695.972106px;}
.y9c_c01330{bottom:696.967978px;}
.y9b_c01330{bottom:699.613060px;}
.y9a_c01330{bottom:700.919365px;}
.y99_c01330{bottom:702.256750px;}
.y98_c01330{bottom:703.551789px;}
.y97_c01330{bottom:705.514128px;}
.y96_c01330{bottom:706.518091px;}
.y95_c01330{bottom:708.771919px;}
.y94_c01330{bottom:709.772838px;}
.y93_c01330{bottom:711.753882px;}
.y92_c01330{bottom:712.775919px;}
.y91_c01330{bottom:726.334182px;}
.y90_c01330{bottom:728.301393px;}
.y8f_c01330{bottom:729.958519px;}
.y8e_c01330{bottom:732.604080px;}
.y8d_c01330{bottom:733.929960px;}
.y8c_c01330{bottom:735.221170px;}
.y8b_c01330{bottom:735.883555px;}
.y8a_c01330{bottom:738.835633px;}
.y89_c01330{bottom:739.857670px;}
.y88_c01330{bottom:740.502199px;}
.y87_c01330{bottom:743.754031px;}
.y86_c01330{bottom:745.747908px;}
.y85_c01330{bottom:747.390441px;}
.y84_c01330{bottom:748.395318px;}
.y83_c01330{bottom:761.066701px;}
.y82_c01330{bottom:764.124456px;}
.y81_c01330{bottom:765.234198px;}
.y80_c01330{bottom:766.276126px;}
.y7f_c01330{bottom:769.769839px;}
.y7e_c01330{bottom:772.248636px;}
.y7d_c01330{bottom:773.323057px;}
.y7c_c01330{bottom:775.037595px;}
.y7b_c01330{bottom:777.876337px;}
.y7a_c01330{bottom:780.633760px;}
.y79_c01330{bottom:782.068192px;}
.y78_c01330{bottom:782.819032px;}
.y77_c01330{bottom:783.794887px;}
.y76_c01330{bottom:797.138371px;}
.y75_c01330{bottom:799.597303px;}
.y74_c01330{bottom:800.616649px;}
.y73_c01330{bottom:801.646000px;}
.y72_c01330{bottom:803.022840px;}
.y71_c01330{bottom:804.357616px;}
.y70_c01330{bottom:806.082771px;}
.y6f_c01330{bottom:806.732553px;}
.y6e_c01330{bottom:809.125519px;}
.y6d_c01330{bottom:809.815015px;}
.y6c_c01330{bottom:811.517834px;}
.y6b_c01330{bottom:812.539354px;}
.y6a_c01330{bottom:814.900045px;}
.y69_c01330{bottom:815.921827px;}
.y68_c01330{bottom:817.266412px;}
.y67_c01330{bottom:818.624656px;}
.y66_c01330{bottom:831.248329px;}
.y65_c01330{bottom:833.741380px;}
.y64_c01330{bottom:835.299556px;}
.y63_c01330{bottom:835.909720px;}
.y62_c01330{bottom:837.133810px;}
.y61_c01330{bottom:838.961256px;}
.y60_c01330{bottom:840.194872px;}
.y5f_c01330{bottom:841.744784px;}
.y5e_c01330{bottom:843.295129px;}
.y5d_c01330{bottom:844.518480px;}
.y5c_c01330{bottom:845.130166px;}
.y5b_c01330{bottom:848.202778px;}
.y5a_c01330{bottom:850.033291px;}
.y59_c01330{bottom:851.846599px;}
.y58_c01330{bottom:870.839155px;}
.y57_c01330{bottom:874.010349px;}
.y56_c01330{bottom:874.957823px;}
.y55_c01330{bottom:876.234721px;}
.y54_c01330{bottom:877.850442px;}
.y53_c01330{bottom:879.125731px;}
.y52_c01330{bottom:882.950382px;}
.y51_c01330{bottom:886.718439px;}
.y50_c01330{bottom:887.664999px;}
.y4f_c01330{bottom:888.580500px;}
.y4e_c01330{bottom:902.373885px;}
.y4d_c01330{bottom:904.755915px;}
.y4c_c01330{bottom:905.749920px;}
.y4b_c01330{bottom:909.038520px;}
.y4a_c01330{bottom:911.648700px;}
.y49_c01330{bottom:913.323915px;}
.y48_c01330{bottom:914.955165px;}
.y47_c01330{bottom:916.268490px;}
.y46_c01330{bottom:918.586215px;}
.y45_c01330{bottom:921.528090px;}
.y44_c01330{bottom:923.177340px;}
.y43_c01330{bottom:924.472260px;}
.y42_c01330{bottom:936.826005px;}
.y41_c01330{bottom:937.468605px;}
.y40_c01330{bottom:939.715995px;}
.y3f_c01330{bottom:943.029840px;}
.y3e_c01330{bottom:945.987420px;}
.y3d_c01330{bottom:946.985475px;}
.y3c_c01330{bottom:947.970795px;}
.y3b_c01330{bottom:951.270870px;}
.y3a_c01330{bottom:952.260330px;}
.y39_c01330{bottom:953.848425px;}
.y38_c01330{bottom:955.542000px;}
.y37_c01330{bottom:970.773330px;}
.y36_c01330{bottom:971.377515px;}
.y35_c01330{bottom:988.936173px;}
.y34_c01330{bottom:989.915898px;}
.y33_c01330{bottom:991.884102px;}
.y32_c01330{bottom:992.787261px;}
.y31_c01330{bottom:1006.320996px;}
.y30_c01330{bottom:1009.789266px;}
.y2f_c01330{bottom:1011.776706px;}
.y2e_c01330{bottom:1014.340527px;}
.y2d_c01330{bottom:1015.245990px;}
.y2c_c01330{bottom:1016.560836px;}
.y2b_c01330{bottom:1018.926342px;}
.y2a_c01330{bottom:1020.042678px;}
.y29_c01330{bottom:1020.941862px;}
.y28_c01330{bottom:1023.753294px;}
.y27_c01330{bottom:1024.613712px;}
.y26_c01330{bottom:1025.467500px;}
.y25_c01330{bottom:1044.062652px;}
.y24_c01330{bottom:1047.270096px;}
.y23_c01330{bottom:1048.324668px;}
.y22_c01330{bottom:1050.425466px;}
.y21_c01330{bottom:1051.122558px;}
.y20_c01330{bottom:1051.831398px;}
.y1f_c01330{bottom:1055.334684px;}
.y1e_c01330{bottom:1056.415650px;}
.y1d_c01330{bottom:1057.444080px;}
.y1c_c01330{bottom:1059.186936px;}
.y1b_c01330{bottom:1060.253466px;}
.y1a_c01330{bottom:1061.286768px;}
.y19_c01330{bottom:1064.053320px;}
.y18_c01330{bottom:1075.181244px;}
.y17_c01330{bottom:1077.182190px;}
.y16_c01330{bottom:1079.483742px;}
.y15_c01330{bottom:1082.849346px;}
.y14_c01330{bottom:1084.475310px;}
.y13_c01330{bottom:1085.456574px;}
.y12_c01330{bottom:1087.440858px;}
.y11_c01330{bottom:1091.056218px;}
.y10_c01330{bottom:1093.050234px;}
.yf_c01330{bottom:1093.661850px;}
.ye_c01330{bottom:1097.277882px;}
.yd_c01330{bottom:1112.042364px;}
.yc_c01330{bottom:1113.020376px;}
.yb_c01330{bottom:1115.766336px;}
.ya_c01330{bottom:1117.019532px;}
.y9_c01330{bottom:1119.796992px;}
.y8_c01330{bottom:1120.408470px;}
.y7_c01330{bottom:1122.869376px;}
.y6_c01330{bottom:1124.706792px;}
.y5_c01330{bottom:1126.257054px;}
.y4_c01330{bottom:1127.147496px;}
.y3_c01330{bottom:1128.094680px;}
.y2_c01330{bottom:1130.770500px;}
.y1_c01330{bottom:1183.393500px;}
.hf_c01330{height:47.981420px;}
.h5_c01330{height:72.024332px;}
.h4_c01330{height:72.028218px;}
.hb_c01330{height:72.030270px;}
.h7_c01330{height:72.032393px;}
.h3_c01330{height:78.030570px;}
.hc_c01330{height:78.032792px;}
.h2_c01330{height:84.000000px;}
.hd_c01330{height:84.035315px;}
.h6_c01330{height:84.037791px;}
.h8_c01330{height:90.037837px;}
.ha_c01330{height:102.042882px;}
.h9_c01330{height:108.045404px;}
.h10_c01330{height:119.953551px;}
.he_c01330{height:132.055494px;}
.h1_c01330{height:1250.250000px;}
.h0_c01330{height:1250.370000px;}
.w1_c01330{width:912.000000px;}
.w0_c01330{width:912.300000px;}
.x0_c01330{left:0.000000px;}
.xf0_c01330{left:138.576754px;}
.xe2_c01330{left:141.073500px;}
.xdd_c01330{left:143.512911px;}
.xd5_c01330{left:144.524343px;}
.xca_c01330{left:145.974657px;}
.xb0_c01330{left:149.713716px;}
.x9f_c01330{left:151.844250px;}
.x80_c01330{left:155.851799px;}
.x74_c01330{left:157.854576px;}
.x5d_c01330{left:160.535268px;}
.x51_c01330{left:162.432489px;}
.x3e_c01330{left:164.146035px;}
.x25_c01330{left:166.849500px;}
.x10_c01330{left:168.915918px;}
.x4_c01330{left:172.137000px;}
.xc4_c01330{left:173.603171px;}
.x8f_c01330{left:188.671385px;}
.x6a_c01330{left:190.579023px;}
.xe9_c01330{left:193.474267px;}
.xe3_c01330{left:194.892128px;}
.x48_c01330{left:195.933000px;}
.x2e_c01330{left:198.071013px;}
.x26_c01330{left:199.687500px;}
.xbc_c01330{left:202.389161px;}
.x5e_c01330{left:204.368745px;}
.x3f_c01330{left:207.310035px;}
.x6b_c01330{left:214.036979px;}
.xcb_c01330{left:222.338157px;}
.xe4_c01330{left:223.616874px;}
.x52_c01330{left:227.186360px;}
.x49_c01330{left:228.573000px;}
.xd6_c01330{left:231.208295px;}
.x27_c01330{left:232.780500px;}
.xa0_c01330{left:239.032661px;}
.x75_c01330{left:246.142053px;}
.x5f_c01330{left:247.731222px;}
.xcd_c01330{left:253.625856px;}
.x1b_c01330{left:255.677424px;}
.x6c_c01330{left:258.841064px;}
.x97_c01330{left:260.593617px;}
.x40_c01330{left:262.285035px;}
.x2f_c01330{left:263.668188px;}
.x89_c01330{left:265.931535px;}
.x5_c01330{left:267.702000px;}
.xf1_c01330{left:269.371488px;}
.xe5_c01330{left:271.033910px;}
.xa9_c01330{left:272.277446px;}
.x33_c01330{left:273.367500px;}
.x60_c01330{left:280.687308px;}
.x90_c01330{left:286.594686px;}
.x1c_c01330{left:287.970312px;}
.x11_c01330{left:289.428156px;}
.x53_c01330{left:292.585274px;}
.x98_c01330{left:294.912158px;}
.x30_c01330{left:296.327295px;}
.x6_c01330{left:301.530000px;}
.xde_c01330{left:306.249834px;}
.x12_c01330{left:309.824022px;}
.x76_c01330{left:312.618639px;}
.xa1_c01330{left:315.577724px;}
.x1d_c01330{left:321.289074px;}
.x34_c01330{left:329.820000px;}
.xc5_c01330{left:332.262560px;}
.x7_c01330{left:333.331500px;}
.xb1_c01330{left:336.256702px;}
.x28_c01330{left:340.912500px;}
.x8a_c01330{left:342.067817px;}
.x6d_c01330{left:345.020582px;}
.xf2_c01330{left:346.570886px;}
.xea_c01330{left:348.275898px;}
.xa2_c01330{left:350.314223px;}
.x91_c01330{left:352.514358px;}
.x61_c01330{left:356.861915px;}
.x4a_c01330{left:358.506000px;}
.x41_c01330{left:360.347535px;}
.xd7_c01330{left:362.195613px;}
.x81_c01330{left:364.443252px;}
.xbd_c01330{left:366.680919px;}
.xeb_c01330{left:369.030886px;}
.xa3_c01330{left:370.324548px;}
.x13_c01330{left:376.267284px;}
.xaa_c01330{left:381.156270px;}
.x35_c01330{left:382.756500px;}
.x92_c01330{left:384.820988px;}
.x8_c01330{left:388.698000px;}
.x62_c01330{left:389.809000px;}
.xce_c01330{left:395.774559px;}
.x82_c01330{left:397.923795px;}
.x54_c01330{left:402.316449px;}
.x99_c01330{left:404.372148px;}
.x1e_c01330{left:407.878872px;}
.xbe_c01330{left:410.082158px;}
.xf3_c01330{left:412.948140px;}
.xab_c01330{left:414.366813px;}
.x36_c01330{left:415.738500px;}
.xd8_c01330{left:416.832762px;}
.x29_c01330{left:418.432500px;}
.x77_c01330{left:421.023507px;}
.x1_c01330{left:423.360000px;}
.xe6_c01330{left:425.460329px;}
.x6e_c01330{left:433.745382px;}
.x42_c01330{left:437.605035px;}
.x1f_c01330{left:441.659592px;}
.x63_c01330{left:444.747825px;}
.x2_c01330{left:446.310000px;}
.x9a_c01330{left:448.951905px;}
.x8b_c01330{left:450.891185px;}
.xcf_c01330{left:452.713532px;}
.x9_c01330{left:454.320000px;}
.xec_c01330{left:456.739489px;}
.xac_c01330{left:457.864052px;}
.x83_c01330{left:463.312881px;}
.xf4_c01330{left:466.110462px;}
.x55_c01330{left:467.871363px;}
.x78_c01330{left:476.575898px;}
.xa4_c01330{left:480.256153px;}
.x43_c01330{left:481.382535px;}
.x6f_c01330{left:487.328228px;}
.x3_c01330{left:488.430000px;}
.x4b_c01330{left:490.390500px;}
.x8c_c01330{left:495.549380px;}
.x14_c01330{left:496.755522px;}
.xbf_c01330{left:499.056548px;}
.x84_c01330{left:506.468120px;}
.x2a_c01330{left:509.413500px;}
.xed_c01330{left:511.795434px;}
.xdf_c01330{left:513.453819px;}
.x70_c01330{left:520.908813px;}
.x56_c01330{left:523.246973px;}
.x37_c01330{left:525.741000px;}
.xd0_c01330{left:527.236437px;}
.xb7_c01330{left:531.553520px;}
.x4c_c01330{left:534.366000px;}
.x44_c01330{left:535.757535px;}
.xa_c01330{left:542.209500px;}
.x64_c01330{left:544.154540px;}
.xa5_c01330{left:545.349369px;}
.xd9_c01330{left:547.911581px;}
.x93_c01330{left:549.168005px;}
.x20_c01330{left:551.121828px;}
.x9b_c01330{left:557.519526px;}
.x38_c01330{left:558.585000px;}
.x2b_c01330{left:559.984500px;}
.x15_c01330{left:562.904826px;}
.xb_c01330{left:564.048000px;}
.x65_c01330{left:565.111321px;}
.xee_c01330{left:567.939289px;}
.xe0_c01330{left:570.177098px;}
.x21_c01330{left:573.274350px;}
.x79_c01330{left:574.955027px;}
.xf5_c01330{left:576.726232px;}
.x57_c01330{left:578.607582px;}
.xe7_c01330{left:580.382751px;}
.x8d_c01330{left:583.502313px;}
.x4d_c01330{left:590.080500px;}
.x39_c01330{left:591.853500px;}
.x85_c01330{left:594.575553px;}
.x16_c01330{left:595.590978px;}
.x7a_c01330{left:597.019374px;}
.x71_c01330{left:598.360570px;}
.xe8_c01330{left:600.576537px;}
.xda_c01330{left:603.115686px;}
.x9c_c01330{left:612.825413px;}
.x8e_c01330{left:615.071900px;}
.xc0_c01330{left:618.706568px;}
.x66_c01330{left:620.768603px;}
.x58_c01330{left:622.647344px;}
.x96_c01330{left:625.440860px;}
.x4e_c01330{left:634.111500px;}
.xef_c01330{left:635.670625px;}
.xd1_c01330{left:637.156622px;}
.x7b_c01330{left:640.042612px;}
.xb8_c01330{left:642.643925px;}
.x9d_c01330{left:645.525714px;}
.x17_c01330{left:649.800954px;}
.xb2_c01330{left:653.343767px;}
.xad_c01330{left:654.778353px;}
.x22_c01330{left:660.707064px;}
.xc_c01330{left:663.243000px;}
.x4f_c01330{left:666.783000px;}
.xd2_c01330{left:670.430379px;}
.xe1_c01330{left:676.634655px;}
.x45_c01330{left:678.604035px;}
.x86_c01330{left:682.730987px;}
.x7c_c01330{left:684.261351px;}
.x59_c01330{left:687.888714px;}
.x3a_c01330{left:690.439500px;}
.x23_c01330{left:693.652368px;}
.xb9_c01330{left:697.747421px;}
.xd_c01330{left:708.000000px;}
.xa6_c01330{left:710.126799px;}
.x9e_c01330{left:711.167817px;}
.x87_c01330{left:715.932530px;}
.xae_c01330{left:720.699939px;}
.xdb_c01330{left:724.279136px;}
.xc1_c01330{left:727.765435px;}
.xba_c01330{left:729.817266px;}
.x5a_c01330{left:731.599976px;}
.x94_c01330{left:737.830086px;}
.x72_c01330{left:740.111760px;}
.x67_c01330{left:741.484642px;}
.xa7_c01330{left:743.243385px;}
.xd3_c01330{left:748.117632px;}
.xc6_c01330{left:749.454510px;}
.x5b_c01330{left:753.416628px;}
.x18_c01330{left:762.012696px;}
.x2c_c01330{left:769.858500px;}
.xc7_c01330{left:771.184401px;}
.x7d_c01330{left:772.433285px;}
.x68_c01330{left:774.356728px;}
.x50_c01330{left:776.134500px;}
.xdc_c01330{left:778.622328px;}
.xc2_c01330{left:782.899326px;}
.x46_c01330{left:788.224035px;}
.xd4_c01330{left:790.568019px;}
.x24_c01330{left:793.889154px;}
.xb3_c01330{left:796.847474px;}
.x3b_c01330{left:800.901000px;}
.xe_c01330{left:806.070000px;}
.x5c_c01330{left:809.062238px;}
.xc3_c01330{left:815.842869px;}
.x47_c01330{left:821.357535px;}
.x7e_c01330{left:827.660175px;}
.xb4_c01330{left:829.926688px;}
.x19_c01330{left:838.742412px;}
.xf_c01330{left:840.999000px;}
.xcc_c01330{left:848.139657px;}
.x69_c01330{left:853.660118px;}
.xc8_c01330{left:857.079422px;}
.xa8_c01330{left:865.877795px;}
.xbb_c01330{left:867.132843px;}
.x73_c01330{left:870.358950px;}
.xb5_c01330{left:874.777707px;}
.x3c_c01330{left:875.814000px;}
.xaf_c01330{left:879.123871px;}
.x31_c01330{left:881.599455px;}
.xc9_c01330{left:882.733182px;}
.x95_c01330{left:884.589060px;}
.xb6_c01330{left:888.203749px;}
.x88_c01330{left:890.795984px;}
.x7f_c01330{left:893.217261px;}
.x3d_c01330{left:897.234000px;}
.x32_c01330{left:901.719849px;}
.x2d_c01330{left:903.253500px;}
.x1a_c01330{left:905.433174px;}
@media print{
.v0_c01330{vertical-align:0.000000pt;}
.ls0_c01330{letter-spacing:0.000000pt;}
.ws0_c01330{word-spacing:0.000000pt;}
.fsd_c01330{font-size:42.650151pt;}
.fs3_c01330{font-size:64.021628pt;}
.fs2_c01330{font-size:64.025083pt;}
.fs9_c01330{font-size:64.026906pt;}
.fs5_c01330{font-size:64.028794pt;}
.fs1_c01330{font-size:69.360507pt;}
.fsa_c01330{font-size:69.362482pt;}
.fs0_c01330{font-size:74.666667pt;}
.fsb_c01330{font-size:74.698057pt;}
.fs4_c01330{font-size:74.700259pt;}
.fs6_c01330{font-size:80.033633pt;}
.fs8_c01330{font-size:90.704784pt;}
.fs7_c01330{font-size:96.040360pt;}
.fse_c01330{font-size:106.625379pt;}
.fsc_c01330{font-size:117.382662pt;}
.y0_c01330{bottom:0.000000pt;}
.y164_c01330{bottom:71.801991pt;}
.y163_c01330{bottom:72.594069pt;}
.y162_c01330{bottom:74.116873pt;}
.y161_c01330{bottom:76.027257pt;}
.y160_c01330{bottom:77.955120pt;}
.y15f_c01330{bottom:79.068852pt;}
.y15e_c01330{bottom:79.800091pt;}
.y15d_c01330{bottom:82.103281pt;}
.y15c_c01330{bottom:84.782173pt;}
.y15b_c01330{bottom:89.320855pt;}
.y15a_c01330{bottom:105.116639pt;}
.y159_c01330{bottom:107.285959pt;}
.y158_c01330{bottom:109.083749pt;}
.y157_c01330{bottom:110.847660pt;}
.y156_c01330{bottom:111.901111pt;}
.y155_c01330{bottom:112.611244pt;}
.y154_c01330{bottom:113.657788pt;}
.y153_c01330{bottom:114.322816pt;}
.y152_c01330{bottom:116.821733pt;}
.y151_c01330{bottom:119.281052pt;}
.y150_c01330{bottom:120.984899pt;}
.y14f_c01330{bottom:137.862040pt;}
.y14e_c01330{bottom:138.490920pt;}
.y14d_c01330{bottom:139.911827pt;}
.y14c_c01330{bottom:141.623747pt;}
.y14b_c01330{bottom:142.676967pt;}
.y14a_c01330{bottom:143.315553pt;}
.y149_c01330{bottom:144.701880pt;}
.y148_c01330{bottom:145.685567pt;}
.y147_c01330{bottom:148.124740pt;}
.y146_c01330{bottom:149.601413pt;}
.y145_c01330{bottom:150.495967pt;}
.y144_c01330{bottom:152.172000pt;}
.y143_c01330{bottom:178.248551pt;}
.y142_c01330{bottom:180.597900pt;}
.y141_c01330{bottom:181.650832pt;}
.y140_c01330{bottom:184.868803pt;}
.y13f_c01330{bottom:186.583215pt;}
.y13e_c01330{bottom:188.868517pt;}
.y13d_c01330{bottom:192.845247pt;}
.y13c_c01330{bottom:193.824679pt;}
.y13b_c01330{bottom:196.158137pt;}
.y13a_c01330{bottom:197.763517pt;}
.y139_c01330{bottom:209.658227pt;}
.y138_c01330{bottom:210.579056pt;}
.y137_c01330{bottom:211.252569pt;}
.y136_c01330{bottom:214.806923pt;}
.y135_c01330{bottom:216.426127pt;}
.y134_c01330{bottom:217.044601pt;}
.y133_c01330{bottom:220.270772pt;}
.y132_c01330{bottom:221.874027pt;}
.y131_c01330{bottom:222.832883pt;}
.y130_c01330{bottom:224.747579pt;}
.y12f_c01330{bottom:225.716313pt;}
.y12e_c01330{bottom:228.259092pt;}
.y12d_c01330{bottom:241.091632pt;}
.y12c_c01330{bottom:242.450131pt;}
.y12b_c01330{bottom:244.935808pt;}
.y12a_c01330{bottom:246.000372pt;}
.y129_c01330{bottom:249.518445pt;}
.y128_c01330{bottom:251.902536pt;}
.y127_c01330{bottom:253.723927pt;}
.y126_c01330{bottom:255.105295pt;}
.y125_c01330{bottom:258.271613pt;}
.y124_c01330{bottom:271.286788pt;}
.y123_c01330{bottom:272.098865pt;}
.y122_c01330{bottom:284.282732pt;}
.y121_c01330{bottom:285.118589pt;}
.y120_c01330{bottom:285.673340pt;}
.y11f_c01330{bottom:286.546008pt;}
.y11e_c01330{bottom:288.230637pt;}
.y11d_c01330{bottom:289.072256pt;}
.y11c_c01330{bottom:290.199119pt;}
.y11b_c01330{bottom:302.099747pt;}
.y11a_c01330{bottom:302.783729pt;}
.y119_c01330{bottom:305.073976pt;}
.y118_c01330{bottom:305.652807pt;}
.y117_c01330{bottom:307.413967pt;}
.y116_c01330{bottom:309.746804pt;}
.y115_c01330{bottom:310.639409pt;}
.y114_c01330{bottom:312.641343pt;}
.y113_c01330{bottom:315.897621pt;}
.y112_c01330{bottom:316.776732pt;}
.y111_c01330{bottom:320.219709pt;}
.y110_c01330{bottom:321.008071pt;}
.y10f_c01330{bottom:321.650236pt;}
.y10e_c01330{bottom:333.471825pt;}
.y10d_c01330{bottom:335.319829pt;}
.y10c_c01330{bottom:336.198399pt;}
.y10b_c01330{bottom:337.669003pt;}
.y10a_c01330{bottom:338.205591pt;}
.y109_c01330{bottom:339.984885pt;}
.y108_c01330{bottom:340.576379pt;}
.y107_c01330{bottom:342.897577pt;}
.y106_c01330{bottom:343.767447pt;}
.y105_c01330{bottom:344.956388pt;}
.y104_c01330{bottom:346.141076pt;}
.y103_c01330{bottom:347.298563pt;}
.y102_c01330{bottom:350.505832pt;}
.y101_c01330{bottom:351.679095pt;}
.y100_c01330{bottom:353.107495pt;}
.yff_c01330{bottom:363.094137pt;}
.yfe_c01330{bottom:364.914836pt;}
.yfd_c01330{bottom:367.245008pt;}
.yfc_c01330{bottom:368.214484pt;}
.yfb_c01330{bottom:369.880469pt;}
.yfa_c01330{bottom:372.226880pt;}
.yf9_c01330{bottom:373.237881pt;}
.yf8_c01330{bottom:375.571572pt;}
.yf7_c01330{bottom:376.214107pt;}
.yf6_c01330{bottom:380.200792pt;}
.yf5_c01330{bottom:381.797647pt;}
.yf4_c01330{bottom:384.801111pt;}
.yf3_c01330{bottom:394.176217pt;}
.yf2_c01330{bottom:394.582361pt;}
.yf1_c01330{bottom:395.937355pt;}
.yf0_c01330{bottom:396.936853pt;}
.yef_c01330{bottom:400.236385pt;}
.yee_c01330{bottom:401.273929pt;}
.yed_c01330{bottom:402.252627pt;}
.yec_c01330{bottom:404.570001pt;}
.yeb_c01330{bottom:406.904195pt;}
.yea_c01330{bottom:407.891417pt;}
.ye9_c01330{bottom:410.856913pt;}
.ye8_c01330{bottom:413.199129pt;}
.ye7_c01330{bottom:416.494273pt;}
.ye6_c01330{bottom:425.919420pt;}
.ye5_c01330{bottom:426.600889pt;}
.ye4_c01330{bottom:427.799613pt;}
.ye3_c01330{bottom:429.251368pt;}
.ye2_c01330{bottom:430.143355pt;}
.ye1_c01330{bottom:431.901383pt;}
.ye0_c01330{bottom:433.651832pt;}
.ydf_c01330{bottom:434.502427pt;}
.yde_c01330{bottom:437.152209pt;}
.ydd_c01330{bottom:438.312171pt;}
.ydc_c01330{bottom:439.197623pt;}
.ydb_c01330{bottom:442.101692pt;}
.yda_c01330{bottom:443.888661pt;}
.yd9_c01330{bottom:445.306023pt;}
.yd8_c01330{bottom:457.070600pt;}
.yd7_c01330{bottom:457.564512pt;}
.yd6_c01330{bottom:460.943271pt;}
.yd5_c01330{bottom:461.855659pt;}
.yd4_c01330{bottom:464.543563pt;}
.yd3_c01330{bottom:466.396835pt;}
.yd2_c01330{bottom:468.190891pt;}
.yd1_c01330{bottom:470.318900pt;}
.yd0_c01330{bottom:471.220848pt;}
.ycf_c01330{bottom:471.772700pt;}
.yce_c01330{bottom:472.729515pt;}
.ycd_c01330{bottom:474.838791pt;}
.ycc_c01330{bottom:476.029840pt;}
.ycb_c01330{bottom:477.242445pt;}
.yca_c01330{bottom:490.222500pt;}
.yc9_c01330{bottom:493.626209pt;}
.yc8_c01330{bottom:495.667944pt;}
.yc7_c01330{bottom:496.685699pt;}
.yc6_c01330{bottom:498.406276pt;}
.yc5_c01330{bottom:499.075693pt;}
.yc4_c01330{bottom:500.785657pt;}
.yc3_c01330{bottom:501.784061pt;}
.yc2_c01330{bottom:503.170761pt;}
.yc1_c01330{bottom:506.575553pt;}
.yc0_c01330{bottom:507.643029pt;}
.ybf_c01330{bottom:520.921453pt;}
.ybe_c01330{bottom:527.802921pt;}
.ybd_c01330{bottom:533.683387pt;}
.ybc_c01330{bottom:536.298027pt;}
.ybb_c01330{bottom:537.142661pt;}
.yba_c01330{bottom:538.810664pt;}
.yb9_c01330{bottom:539.900213pt;}
.yb8_c01330{bottom:550.778243pt;}
.yb7_c01330{bottom:554.822916pt;}
.yb6_c01330{bottom:560.021153pt;}
.yb5_c01330{bottom:561.455931pt;}
.yb4_c01330{bottom:562.407719pt;}
.yb3_c01330{bottom:562.994467pt;}
.yb2_c01330{bottom:564.548565pt;}
.yb1_c01330{bottom:565.438740pt;}
.yb0_c01330{bottom:567.255435pt;}
.yaf_c01330{bottom:569.280420pt;}
.yae_c01330{bottom:569.954493pt;}
.yad_c01330{bottom:570.879699pt;}
.yac_c01330{bottom:583.215796pt;}
.yab_c01330{bottom:586.463723pt;}
.yaa_c01330{bottom:587.903104pt;}
.ya9_c01330{bottom:588.793003pt;}
.ya8_c01330{bottom:590.576067pt;}
.ya7_c01330{bottom:591.417884pt;}
.ya6_c01330{bottom:593.763848pt;}
.ya5_c01330{bottom:594.955071pt;}
.ya4_c01330{bottom:597.856376pt;}
.ya3_c01330{bottom:599.887057pt;}
.ya2_c01330{bottom:600.797197pt;}
.ya1_c01330{bottom:602.812432pt;}
.ya0_c01330{bottom:613.979484pt;}
.y9f_c01330{bottom:614.546985pt;}
.y9e_c01330{bottom:617.124347pt;}
.y9d_c01330{bottom:618.641872pt;}
.y9c_c01330{bottom:619.527092pt;}
.y9b_c01330{bottom:621.878276pt;}
.y9a_c01330{bottom:623.039436pt;}
.y99_c01330{bottom:624.228223pt;}
.y98_c01330{bottom:625.379368pt;}
.y97_c01330{bottom:627.123669pt;}
.y96_c01330{bottom:628.016081pt;}
.y95_c01330{bottom:630.019484pt;}
.y94_c01330{bottom:630.909189pt;}
.y93_c01330{bottom:632.670117pt;}
.y92_c01330{bottom:633.578595pt;}
.y91_c01330{bottom:645.630384pt;}
.y90_c01330{bottom:647.379016pt;}
.y8f_c01330{bottom:648.852017pt;}
.y8e_c01330{bottom:651.203627pt;}
.y8d_c01330{bottom:652.382187pt;}
.y8c_c01330{bottom:653.529929pt;}
.y8b_c01330{bottom:654.118716pt;}
.y8a_c01330{bottom:656.742785pt;}
.y89_c01330{bottom:657.651263pt;}
.y88_c01330{bottom:658.224177pt;}
.y87_c01330{bottom:661.114695pt;}
.y86_c01330{bottom:662.887029pt;}
.y85_c01330{bottom:664.347059pt;}
.y84_c01330{bottom:665.240283pt;}
.y83_c01330{bottom:676.503735pt;}
.y82_c01330{bottom:679.221739pt;}
.y81_c01330{bottom:680.208176pt;}
.y80_c01330{bottom:681.134335pt;}
.y7f_c01330{bottom:684.239857pt;}
.y7e_c01330{bottom:686.443232pt;}
.y7d_c01330{bottom:687.398273pt;}
.y7c_c01330{bottom:688.922307pt;}
.y7b_c01330{bottom:691.445633pt;}
.y7a_c01330{bottom:693.896676pt;}
.y79_c01330{bottom:695.171727pt;}
.y78_c01330{bottom:695.839140pt;}
.y77_c01330{bottom:696.706567pt;}
.y76_c01330{bottom:708.567441pt;}
.y75_c01330{bottom:710.753159pt;}
.y74_c01330{bottom:711.659244pt;}
.y73_c01330{bottom:712.574223pt;}
.y72_c01330{bottom:713.798080pt;}
.y71_c01330{bottom:714.984548pt;}
.y70_c01330{bottom:716.518019pt;}
.y6f_c01330{bottom:717.095603pt;}
.y6e_c01330{bottom:719.222684pt;}
.y6d_c01330{bottom:719.835569pt;}
.y6c_c01330{bottom:721.349185pt;}
.y6b_c01330{bottom:722.257204pt;}
.y6a_c01330{bottom:724.355596pt;}
.y69_c01330{bottom:725.263847pt;}
.y68_c01330{bottom:726.459033pt;}
.y67_c01330{bottom:727.666361pt;}
.y66_c01330{bottom:738.887404pt;}
.y65_c01330{bottom:741.103449pt;}
.y64_c01330{bottom:742.488495pt;}
.y63_c01330{bottom:743.030863pt;}
.y62_c01330{bottom:744.118943pt;}
.y61_c01330{bottom:745.743339pt;}
.y60_c01330{bottom:746.839887pt;}
.y5f_c01330{bottom:748.217585pt;}
.y5e_c01330{bottom:749.595671pt;}
.y5d_c01330{bottom:750.683093pt;}
.y5c_c01330{bottom:751.226815pt;}
.y5b_c01330{bottom:753.958025pt;}
.y5a_c01330{bottom:755.585148pt;}
.y59_c01330{bottom:757.196977pt;}
.y58_c01330{bottom:774.079249pt;}
.y57_c01330{bottom:776.898088pt;}
.y56_c01330{bottom:777.740287pt;}
.y55_c01330{bottom:778.875308pt;}
.y54_c01330{bottom:780.311504pt;}
.y53_c01330{bottom:781.445095pt;}
.y52_c01330{bottom:784.844784pt;}
.y51_c01330{bottom:788.194168pt;}
.y50_c01330{bottom:789.035555pt;}
.y4f_c01330{bottom:789.849333pt;}
.y4e_c01330{bottom:802.110120pt;}
.y4d_c01330{bottom:804.227480pt;}
.y4c_c01330{bottom:805.111040pt;}
.y4b_c01330{bottom:808.034240pt;}
.y4a_c01330{bottom:810.354400pt;}
.y49_c01330{bottom:811.843480pt;}
.y48_c01330{bottom:813.293480pt;}
.y47_c01330{bottom:814.460880pt;}
.y46_c01330{bottom:816.521080pt;}
.y45_c01330{bottom:819.136080pt;}
.y44_c01330{bottom:820.602080pt;}
.y43_c01330{bottom:821.753120pt;}
.y42_c01330{bottom:832.734227pt;}
.y41_c01330{bottom:833.305427pt;}
.y40_c01330{bottom:835.303107pt;}
.y3f_c01330{bottom:838.248747pt;}
.y3e_c01330{bottom:840.877707pt;}
.y3d_c01330{bottom:841.764867pt;}
.y3c_c01330{bottom:842.640707pt;}
.y3b_c01330{bottom:845.574107pt;}
.y3a_c01330{bottom:846.453627pt;}
.y39_c01330{bottom:847.865267pt;}
.y38_c01330{bottom:849.370667pt;}
.y37_c01330{bottom:862.909627pt;}
.y36_c01330{bottom:863.446680pt;}
.y35_c01330{bottom:879.054376pt;}
.y34_c01330{bottom:879.925243pt;}
.y33_c01330{bottom:881.674757pt;}
.y32_c01330{bottom:882.477565pt;}
.y31_c01330{bottom:894.507552pt;}
.y30_c01330{bottom:897.590459pt;}
.y2f_c01330{bottom:899.357072pt;}
.y2e_c01330{bottom:901.636024pt;}
.y2d_c01330{bottom:902.440880pt;}
.y2c_c01330{bottom:903.609632pt;}
.y2b_c01330{bottom:905.712304pt;}
.y2a_c01330{bottom:906.704603pt;}
.y29_c01330{bottom:907.503877pt;}
.y28_c01330{bottom:910.002928pt;}
.y27_c01330{bottom:910.767744pt;}
.y26_c01330{bottom:911.526667pt;}
.y25_c01330{bottom:928.055691pt;}
.y24_c01330{bottom:930.906752pt;}
.y23_c01330{bottom:931.844149pt;}
.y22_c01330{bottom:933.711525pt;}
.y21_c01330{bottom:934.331163pt;}
.y20_c01330{bottom:934.961243pt;}
.y1f_c01330{bottom:938.075275pt;}
.y1e_c01330{bottom:939.036133pt;}
.y1d_c01330{bottom:939.950293pt;}
.y1c_c01330{bottom:941.499499pt;}
.y1b_c01330{bottom:942.447525pt;}
.y1a_c01330{bottom:943.366016pt;}
.y19_c01330{bottom:945.825173pt;}
.y18_c01330{bottom:955.716661pt;}
.y17_c01330{bottom:957.495280pt;}
.y16_c01330{bottom:959.541104pt;}
.y15_c01330{bottom:962.532752pt;}
.y14_c01330{bottom:963.978053pt;}
.y13_c01330{bottom:964.850288pt;}
.y12_c01330{bottom:966.614096pt;}
.y11_c01330{bottom:969.827749pt;}
.y10_c01330{bottom:971.600208pt;}
.yf_c01330{bottom:972.143867pt;}
.ye_c01330{bottom:975.358117pt;}
.yd_c01330{bottom:988.482101pt;}
.yc_c01330{bottom:989.351445pt;}
.yb_c01330{bottom:991.792299pt;}
.ya_c01330{bottom:992.906251pt;}
.y9_c01330{bottom:995.375104pt;}
.y8_c01330{bottom:995.918640pt;}
.y7_c01330{bottom:998.106112pt;}
.y6_c01330{bottom:999.739371pt;}
.y5_c01330{bottom:1001.117381pt;}
.y4_c01330{bottom:1001.908885pt;}
.y3_c01330{bottom:1002.750827pt;}
.y2_c01330{bottom:1005.129333pt;}
.y1_c01330{bottom:1051.905333pt;}
.hf_c01330{height:42.650151pt;}
.h5_c01330{height:64.021628pt;}
.h4_c01330{height:64.025083pt;}
.hb_c01330{height:64.026906pt;}
.h7_c01330{height:64.028794pt;}
.h3_c01330{height:69.360507pt;}
.hc_c01330{height:69.362482pt;}
.h2_c01330{height:74.666667pt;}
.hd_c01330{height:74.698057pt;}
.h6_c01330{height:74.700259pt;}
.h8_c01330{height:80.033633pt;}
.ha_c01330{height:90.704784pt;}
.h9_c01330{height:96.040360pt;}
.h10_c01330{height:106.625379pt;}
.he_c01330{height:117.382662pt;}
.h1_c01330{height:1111.333333pt;}
.h0_c01330{height:1111.440000pt;}
.w1_c01330{width:810.666667pt;}
.w0_c01330{width:810.933333pt;}
.x0_c01330{left:0.000000pt;}
.xf0_c01330{left:123.179337pt;}
.xe2_c01330{left:125.398667pt;}
.xdd_c01330{left:127.567032pt;}
.xd5_c01330{left:128.466083pt;}
.xca_c01330{left:129.755251pt;}
.xb0_c01330{left:133.078859pt;}
.x9f_c01330{left:134.972667pt;}
.x80_c01330{left:138.534932pt;}
.x74_c01330{left:140.315179pt;}
.x5d_c01330{left:142.698016pt;}
.x51_c01330{left:144.384435pt;}
.x3e_c01330{left:145.907587pt;}
.x25_c01330{left:148.310667pt;}
.x10_c01330{left:150.147483pt;}
.x4_c01330{left:153.010667pt;}
.xc4_c01330{left:154.313929pt;}
.x8f_c01330{left:167.707897pt;}
.x6a_c01330{left:169.403576pt;}
.xe9_c01330{left:171.977127pt;}
.xe3_c01330{left:173.237447pt;}
.x48_c01330{left:174.162667pt;}
.x2e_c01330{left:176.063123pt;}
.x26_c01330{left:177.500000pt;}
.xbc_c01330{left:179.901476pt;}
.x5e_c01330{left:181.661107pt;}
.x3f_c01330{left:184.275587pt;}
.x6b_c01330{left:190.255092pt;}
.xcb_c01330{left:197.633917pt;}
.xe4_c01330{left:198.770555pt;}
.x52_c01330{left:201.943431pt;}
.x49_c01330{left:203.176000pt;}
.xd6_c01330{left:205.518484pt;}
.x27_c01330{left:206.916000pt;}
.xa0_c01330{left:212.473476pt;}
.x75_c01330{left:218.792936pt;}
.x5f_c01330{left:220.205531pt;}
.xcd_c01330{left:225.445205pt;}
.x1b_c01330{left:227.268821pt;}
.x6c_c01330{left:230.080945pt;}
.x97_c01330{left:231.638771pt;}
.x40_c01330{left:233.142253pt;}
.x2f_c01330{left:234.371723pt;}
.x89_c01330{left:236.383587pt;}
.x5_c01330{left:237.957333pt;}
.xf1_c01330{left:239.441323pt;}
.xe5_c01330{left:240.919031pt;}
.xa9_c01330{left:242.024396pt;}
.x33_c01330{left:242.993333pt;}
.x60_c01330{left:249.499829pt;}
.x90_c01330{left:254.750832pt;}
.x1c_c01330{left:255.973611pt;}
.x11_c01330{left:257.269472pt;}
.x53_c01330{left:260.075799pt;}
.x98_c01330{left:262.144140pt;}
.x30_c01330{left:263.402040pt;}
.x6_c01330{left:268.026667pt;}
.xde_c01330{left:272.222075pt;}
.x12_c01330{left:275.399131pt;}
.x76_c01330{left:277.883235pt;}
.xa1_c01330{left:280.513532pt;}
.x1d_c01330{left:285.590288pt;}
.x34_c01330{left:293.173333pt;}
.xc5_c01330{left:295.344497pt;}
.x7_c01330{left:296.294667pt;}
.xb1_c01330{left:298.894847pt;}
.x28_c01330{left:303.033333pt;}
.x8a_c01330{left:304.060281pt;}
.x6d_c01330{left:306.684961pt;}
.xf2_c01330{left:308.063009pt;}
.xea_c01330{left:309.578576pt;}
.xa2_c01330{left:311.390420pt;}
.x91_c01330{left:313.346096pt;}
.x61_c01330{left:317.210591pt;}
.x4a_c01330{left:318.672000pt;}
.x41_c01330{left:320.308920pt;}
.xd7_c01330{left:321.951656pt;}
.x81_c01330{left:323.949557pt;}
.xbd_c01330{left:325.938595pt;}
.xeb_c01330{left:328.027455pt;}
.xa3_c01330{left:329.177376pt;}
.x13_c01330{left:334.459808pt;}
.xaa_c01330{left:338.805573pt;}
.x35_c01330{left:340.228000pt;}
.x92_c01330{left:342.063100pt;}
.x8_c01330{left:345.509333pt;}
.x62_c01330{left:346.496889pt;}
.xce_c01330{left:351.799608pt;}
.x82_c01330{left:353.710040pt;}
.x54_c01330{left:357.614621pt;}
.x99_c01330{left:359.441909pt;}
.x1e_c01330{left:362.558997pt;}
.xbe_c01330{left:364.517473pt;}
.xf3_c01330{left:367.065013pt;}
.xab_c01330{left:368.326056pt;}
.x36_c01330{left:369.545333pt;}
.xd8_c01330{left:370.518011pt;}
.x29_c01330{left:371.940000pt;}
.x77_c01330{left:374.243117pt;}
.x1_c01330{left:376.320000pt;}
.xe6_c01330{left:378.186959pt;}
.x6e_c01330{left:385.551451pt;}
.x42_c01330{left:388.982253pt;}
.x1f_c01330{left:392.586304pt;}
.x63_c01330{left:395.331400pt;}
.x2_c01330{left:396.720000pt;}
.x9a_c01330{left:399.068360pt;}
.x8b_c01330{left:400.792164pt;}
.xcf_c01330{left:402.412028pt;}
.x9_c01330{left:403.840000pt;}
.xec_c01330{left:405.990657pt;}
.xac_c01330{left:406.990268pt;}
.x83_c01330{left:411.833672pt;}
.xf4_c01330{left:414.320411pt;}
.x55_c01330{left:415.885656pt;}
.x78_c01330{left:423.623020pt;}
.xa4_c01330{left:426.894359pt;}
.x43_c01330{left:427.895587pt;}
.x6f_c01330{left:433.180647pt;}
.x3_c01330{left:434.160000pt;}
.x4b_c01330{left:435.902667pt;}
.x8c_c01330{left:440.488337pt;}
.x14_c01330{left:441.560464pt;}
.xbf_c01330{left:443.605820pt;}
.x84_c01330{left:450.193884pt;}
.x2a_c01330{left:452.812000pt;}
.xed_c01330{left:454.929275pt;}
.xdf_c01330{left:456.403395pt;}
.x70_c01330{left:463.030056pt;}
.x56_c01330{left:465.108420pt;}
.x37_c01330{left:467.325333pt;}
.xd0_c01330{left:468.654611pt;}
.xb7_c01330{left:472.492017pt;}
.x4c_c01330{left:474.992000pt;}
.x44_c01330{left:476.228920pt;}
.xa_c01330{left:481.964000pt;}
.x64_c01330{left:483.692924pt;}
.xa5_c01330{left:484.754995pt;}
.xd9_c01330{left:487.032516pt;}
.x93_c01330{left:488.149337pt;}
.x20_c01330{left:489.886069pt;}
.x9b_c01330{left:495.572912pt;}
.x38_c01330{left:496.520000pt;}
.x2b_c01330{left:497.764000pt;}
.x15_c01330{left:500.359845pt;}
.xb_c01330{left:501.376000pt;}
.x65_c01330{left:502.321175pt;}
.xee_c01330{left:504.834924pt;}
.xe0_c01330{left:506.824087pt;}
.x21_c01330{left:509.577200pt;}
.x79_c01330{left:511.071135pt;}
.xf5_c01330{left:512.645540pt;}
.x57_c01330{left:514.317851pt;}
.xe7_c01330{left:515.895779pt;}
.x8d_c01330{left:518.668723pt;}
.x4d_c01330{left:524.516000pt;}
.x39_c01330{left:526.092000pt;}
.x85_c01330{left:528.511603pt;}
.x16_c01330{left:529.414203pt;}
.x7a_c01330{left:530.683888pt;}
.x71_c01330{left:531.876063pt;}
.xe8_c01330{left:533.845811pt;}
.xda_c01330{left:536.102832pt;}
.x9c_c01330{left:544.733700pt;}
.x8e_c01330{left:546.730577pt;}
.xc0_c01330{left:549.961393pt;}
.x66_c01330{left:551.794313pt;}
.x58_c01330{left:553.464305pt;}
.x96_c01330{left:555.947431pt;}
.x4e_c01330{left:563.654667pt;}
.xef_c01330{left:565.040556pt;}
.xd1_c01330{left:566.361441pt;}
.x7b_c01330{left:568.926767pt;}
.xb8_c01330{left:571.239044pt;}
.x9d_c01330{left:573.800635pt;}
.x17_c01330{left:577.600848pt;}
.xb2_c01330{left:580.750015pt;}
.xad_c01330{left:582.025203pt;}
.x22_c01330{left:587.295168pt;}
.xc_c01330{left:589.549333pt;}
.x4f_c01330{left:592.696000pt;}
.xd2_c01330{left:595.938115pt;}
.xe1_c01330{left:601.453027pt;}
.x45_c01330{left:603.203587pt;}
.x86_c01330{left:606.871988pt;}
.x7c_c01330{left:608.232312pt;}
.x59_c01330{left:611.456635pt;}
.x3a_c01330{left:613.724000pt;}
.x23_c01330{left:616.579883pt;}
.xb9_c01330{left:620.219929pt;}
.xd_c01330{left:629.333333pt;}
.xa6_c01330{left:631.223821pt;}
.x9e_c01330{left:632.149171pt;}
.x87_c01330{left:636.384471pt;}
.xae_c01330{left:640.622168pt;}
.xdb_c01330{left:643.803676pt;}
.xc1_c01330{left:646.902609pt;}
.xba_c01330{left:648.726459pt;}
.x5a_c01330{left:650.311089pt;}
.x94_c01330{left:655.848965pt;}
.x72_c01330{left:657.877120pt;}
.x67_c01330{left:659.097460pt;}
.xa7_c01330{left:660.660787pt;}
.xd3_c01330{left:664.993451pt;}
.xc6_c01330{left:666.181787pt;}
.x5b_c01330{left:669.703669pt;}
.x18_c01330{left:677.344619pt;}
.x2c_c01330{left:684.318667pt;}
.xc7_c01330{left:685.497245pt;}
.x7d_c01330{left:686.607364pt;}
.x68_c01330{left:688.317092pt;}
.x50_c01330{left:689.897333pt;}
.xdc_c01330{left:692.108736pt;}
.xc2_c01330{left:695.910512pt;}
.x46_c01330{left:700.643587pt;}
.xd4_c01330{left:702.727128pt;}
.x24_c01330{left:705.679248pt;}
.xb3_c01330{left:708.308865pt;}
.x3b_c01330{left:711.912000pt;}
.xe_c01330{left:716.506667pt;}
.x5c_c01330{left:719.166433pt;}
.xc3_c01330{left:725.193661pt;}
.x47_c01330{left:730.095587pt;}
.x7e_c01330{left:735.697933pt;}
.xb4_c01330{left:737.712612pt;}
.x19_c01330{left:745.548811pt;}
.xf_c01330{left:747.554667pt;}
.xcc_c01330{left:753.901917pt;}
.x69_c01330{left:758.808993pt;}
.xc8_c01330{left:761.848375pt;}
.xa8_c01330{left:769.669151pt;}
.xbb_c01330{left:770.784749pt;}
.x73_c01330{left:773.652400pt;}
.xb5_c01330{left:777.580184pt;}
.x3c_c01330{left:778.501333pt;}
.xaf_c01330{left:781.443441pt;}
.x31_c01330{left:783.643960pt;}
.xc9_c01330{left:784.651717pt;}
.x95_c01330{left:786.301387pt;}
.xb6_c01330{left:789.514444pt;}
.x88_c01330{left:791.818652pt;}
.x7f_c01330{left:793.970899pt;}
.x3d_c01330{left:797.541333pt;}
.x32_c01330{left:801.528755pt;}
.x2d_c01330{left:802.892000pt;}
.x1a_c01330{left:804.829488pt;}
}





/* 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_c01331 {
    display:none;
  }
  .loading-indicator_c01331.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01331 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_c01331 { 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_c01331" -> "#page-container .classname_c01331")
 */
.pf_c01331 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01331 { /* 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_c01331.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01331 { /* 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_c01331 { /* 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_c01331 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01331 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01331 {overflow:visible;}
  }
}
.c_c01331 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01331 { /* 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_c01331:after { /* webkit #35443 */
  content: '';
}
.t_c01331:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01331 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 */
}
.__c01331 { /* 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_c01331 { /* info for Javascript */
  display:none;
}
.l_c01331 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01331 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01331 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01331: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_c01331 {
    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_c01331.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01331.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_c01331 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01331{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01331;src:url('chunks/assets/font_ffdda91d43f5751d6c5cd797.woff2')format("woff");}.ff1_c01331{font-family:ff1_c01331;line-height:1.000000;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;}
.m5_c01331{transform:matrix(0.001991,-0.071122,0.249902,0.006997,0,0);-ms-transform:matrix(0.001991,-0.071122,0.249902,0.006997,0,0);-webkit-transform:matrix(0.001991,-0.071122,0.249902,0.006997,0,0);}
.ma_c01331{transform:matrix(0.004283,-0.152955,0.249902,0.006997,0,0);-ms-transform:matrix(0.004283,-0.152955,0.249902,0.006997,0,0);-webkit-transform:matrix(0.004283,-0.152955,0.249902,0.006997,0,0);}
.m8_c01331{transform:matrix(0.004386,-0.156634,0.249902,0.006997,0,0);-ms-transform:matrix(0.004386,-0.156634,0.249902,0.006997,0,0);-webkit-transform:matrix(0.004386,-0.156634,0.249902,0.006997,0,0);}
.m1_c01331{transform:matrix(0.007344,-0.262292,0.249902,0.006997,0,0);-ms-transform:matrix(0.007344,-0.262292,0.249902,0.006997,0,0);-webkit-transform:matrix(0.007344,-0.262292,0.249902,0.006997,0,0);}
.m2_c01331{transform:matrix(0.009217,-0.329186,0.249902,0.006997,0,0);-ms-transform:matrix(0.009217,-0.329186,0.249902,0.006997,0,0);-webkit-transform:matrix(0.009217,-0.329186,0.249902,0.006997,0,0);}
.m7_c01331{transform:matrix(0.011016,-0.393436,0.249902,0.006997,0,0);-ms-transform:matrix(0.011016,-0.393436,0.249902,0.006997,0,0);-webkit-transform:matrix(0.011016,-0.393436,0.249902,0.006997,0,0);}
.m6_c01331{transform:matrix(0.011141,-0.397909,0.249902,0.006997,0,0);-ms-transform:matrix(0.011141,-0.397909,0.249902,0.006997,0,0);-webkit-transform:matrix(0.011141,-0.397909,0.249902,0.006997,0,0);}
.m0_c01331{transform:matrix(0.011369,-0.147212,0.249258,0.019251,0,0);-ms-transform:matrix(0.011369,-0.147212,0.249258,0.019251,0,0);-webkit-transform:matrix(0.011369,-0.147212,0.249258,0.019251,0,0);}
.m9_c01331{transform:matrix(0.012052,-0.430426,0.249902,0.006997,0,0);-ms-transform:matrix(0.012052,-0.430426,0.249902,0.006997,0,0);-webkit-transform:matrix(0.012052,-0.430426,0.249902,0.006997,0,0);}
.m3_c01331{transform:matrix(0.016337,-0.583471,0.249902,0.006997,0,0);-ms-transform:matrix(0.016337,-0.583471,0.249902,0.006997,0,0);-webkit-transform:matrix(0.016337,-0.583471,0.249902,0.006997,0,0);}
.m4_c01331{transform:matrix(0.032370,-1.156057,0.249902,0.006997,0,0);-ms-transform:matrix(0.032370,-1.156057,0.249902,0.006997,0,0);-webkit-transform:matrix(0.032370,-1.156057,0.249902,0.006997,0,0);}
.v0_c01331{vertical-align:0.000000px;}
.ls0_c01331{letter-spacing:0.000000px;}
.sc__c01331{text-shadow:none;}
.sc0_c01331{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__c01331{-webkit-text-stroke:0px transparent;}
.sc0_c01331{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01331{word-spacing:0.000000px;}
.fc0_c01331{color:transparent;}
.fs1_c01331{font-size:12.004703px;}
.fs0_c01331{font-size:17.999442px;}
.fs2_c01331{font-size:24.009406px;}
.y0_c01331{bottom:0.000000px;}
.y9_c01331{bottom:132.823056px;}
.yb_c01331{bottom:132.823494px;}
.ya_c01331{bottom:132.823614px;}
.y7_c01331{bottom:132.823734px;}
.y8_c01331{bottom:132.824154px;}
.y6_c01331{bottom:134.702652px;}
.y5_c01331{bottom:162.571494px;}
.y3_c01331{bottom:168.469500px;}
.y4_c01331{bottom:171.476730px;}
.y1_c01331{bottom:176.289000px;}
.y2_c01331{bottom:179.797500px;}
.h3_c01331{height:12.004703px;}
.h2_c01331{height:17.999442px;}
.h4_c01331{height:24.009406px;}
.h1_c01331{height:1250.250000px;}
.h0_c01331{height:1250.370000px;}
.w1_c01331{width:912.000000px;}
.w0_c01331{width:912.300000px;}
.x0_c01331{left:0.000000px;}
.x3_c01331{left:856.965324px;}
.x2_c01331{left:858.856794px;}
.x5_c01331{left:859.937634px;}
.x4_c01331{left:862.097814px;}
.x1_c01331{left:868.858500px;}
@media print{
.v0_c01331{vertical-align:0.000000pt;}
.ls0_c01331{letter-spacing:0.000000pt;}
.ws0_c01331{word-spacing:0.000000pt;}
.fs1_c01331{font-size:10.670847pt;}
.fs0_c01331{font-size:15.999504pt;}
.fs2_c01331{font-size:21.341694pt;}
.y0_c01331{bottom:0.000000pt;}
.y9_c01331{bottom:118.064939pt;}
.yb_c01331{bottom:118.065328pt;}
.ya_c01331{bottom:118.065435pt;}
.y7_c01331{bottom:118.065541pt;}
.y8_c01331{bottom:118.065915pt;}
.y6_c01331{bottom:119.735691pt;}
.y5_c01331{bottom:144.507995pt;}
.y3_c01331{bottom:149.750667pt;}
.y4_c01331{bottom:152.423760pt;}
.y1_c01331{bottom:156.701333pt;}
.y2_c01331{bottom:159.820000pt;}
.h3_c01331{height:10.670847pt;}
.h2_c01331{height:15.999504pt;}
.h4_c01331{height:21.341694pt;}
.h1_c01331{height:1111.333333pt;}
.h0_c01331{height:1111.440000pt;}
.w1_c01331{width:810.666667pt;}
.w0_c01331{width:810.933333pt;}
.x0_c01331{left:0.000000pt;}
.x3_c01331{left:761.746955pt;}
.x2_c01331{left:763.428261pt;}
.x5_c01331{left:764.389008pt;}
.x4_c01331{left:766.309168pt;}
.x1_c01331{left:772.318667pt;}
}





/* 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_c01332 {
    display:none;
  }
  .loading-indicator_c01332.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01332 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_c01332 { 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_c01332" -> "#page-container .classname_c01332")
 */
.pf_c01332 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01332 { /* 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_c01332.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01332 { /* 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_c01332 { /* 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_c01332 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01332 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01332 {overflow:visible;}
  }
}
.c_c01332 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01332 { /* 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_c01332:after { /* webkit #35443 */
  content: '';
}
.t_c01332:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01332 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 */
}
.__c01332 { /* 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_c01332 { /* info for Javascript */
  display:none;
}
.l_c01332 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01332 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01332 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01332: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_c01332 {
    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_c01332.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01332.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_c01332 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01332{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01332;src:url('chunks/assets/font_fabf4b590f7fb32aea93ffb2.woff2')format("woff");}.ff1_c01332{font-family:ff1_c01332;line-height:1.000000;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;}
.me8_c01332{transform:matrix(0.009090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.009090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.009090,0.000000,0.000000,0.250000,0,0);}
.m13_c01332{transform:matrix(0.028460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.028460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.028460,0.000000,0.000000,0.250000,0,0);}
.md_c01332{transform:matrix(0.031820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.031820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.031820,0.000000,0.000000,0.250000,0,0);}
.m15_c01332{transform:matrix(0.048025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.048025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.048025,0.000000,0.000000,0.250000,0,0);}
.ma_c01332{transform:matrix(0.056250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.056250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.056250,0.000000,0.000000,0.250000,0,0);}
.m9_c01332{transform:matrix(0.065600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065600,0.000000,0.000000,0.250000,0,0);}
.mfb_c01332{transform:matrix(0.085010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.085010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.085010,0.000000,0.000000,0.250000,0,0);}
.m3_c01332{transform:matrix(0.100060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100060,0.000000,0.000000,0.250000,0,0);}
.mfd_c01332{transform:matrix(0.119955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119955,0.000000,0.000000,0.250000,0,0);}
.md4_c01332{transform:matrix(0.123128,-0.002586,0.005249,0.249945,0,0);-ms-transform:matrix(0.123128,-0.002586,0.005249,0.249945,0,0);-webkit-transform:matrix(0.123128,-0.002586,0.005249,0.249945,0,0);}
.mfc_c01332{transform:matrix(0.127170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127170,0.000000,0.000000,0.250000,0,0);}
.mdb_c01332{transform:matrix(0.128197,-0.002692,0.005249,0.249945,0,0);-ms-transform:matrix(0.128197,-0.002692,0.005249,0.249945,0,0);-webkit-transform:matrix(0.128197,-0.002692,0.005249,0.249945,0,0);}
.mdc_c01332{transform:matrix(0.128652,-0.002702,0.005249,0.249945,0,0);-ms-transform:matrix(0.128652,-0.002702,0.005249,0.249945,0,0);-webkit-transform:matrix(0.128652,-0.002702,0.005249,0.249945,0,0);}
.md7_c01332{transform:matrix(0.129346,-0.002716,0.005249,0.249945,0,0);-ms-transform:matrix(0.129346,-0.002716,0.005249,0.249945,0,0);-webkit-transform:matrix(0.129346,-0.002716,0.005249,0.249945,0,0);}
.mdf_c01332{transform:matrix(0.132306,-0.002778,0.005249,0.249945,0,0);-ms-transform:matrix(0.132306,-0.002778,0.005249,0.249945,0,0);-webkit-transform:matrix(0.132306,-0.002778,0.005249,0.249945,0,0);}
.md5_c01332{transform:matrix(0.135410,-0.002844,0.005249,0.249945,0,0);-ms-transform:matrix(0.135410,-0.002844,0.005249,0.249945,0,0);-webkit-transform:matrix(0.135410,-0.002844,0.005249,0.249945,0,0);}
.md8_c01332{transform:matrix(0.136710,-0.002871,0.005249,0.249945,0,0);-ms-transform:matrix(0.136710,-0.002871,0.005249,0.249945,0,0);-webkit-transform:matrix(0.136710,-0.002871,0.005249,0.249945,0,0);}
.ma2_c01332{transform:matrix(0.140310,-0.002385,0.004249,0.249964,0,0);-ms-transform:matrix(0.140310,-0.002385,0.004249,0.249964,0,0);-webkit-transform:matrix(0.140310,-0.002385,0.004249,0.249964,0,0);}
.me0_c01332{transform:matrix(0.142204,-0.002986,0.005249,0.249945,0,0);-ms-transform:matrix(0.142204,-0.002986,0.005249,0.249945,0,0);-webkit-transform:matrix(0.142204,-0.002986,0.005249,0.249945,0,0);}
.md6_c01332{transform:matrix(0.142404,-0.002990,0.005249,0.249945,0,0);-ms-transform:matrix(0.142404,-0.002990,0.005249,0.249945,0,0);-webkit-transform:matrix(0.142404,-0.002990,0.005249,0.249945,0,0);}
.mfe_c01332{transform:matrix(0.143605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143605,0.000000,0.000000,0.250000,0,0);}
.m13c_c01332{transform:matrix(0.145800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145800,0.000000,0.000000,0.250000,0,0);}
.mdd_c01332{transform:matrix(0.146103,-0.003068,0.005249,0.249945,0,0);-ms-transform:matrix(0.146103,-0.003068,0.005249,0.249945,0,0);-webkit-transform:matrix(0.146103,-0.003068,0.005249,0.249945,0,0);}
.mda_c01332{transform:matrix(0.147158,-0.003090,0.005249,0.249945,0,0);-ms-transform:matrix(0.147158,-0.003090,0.005249,0.249945,0,0);-webkit-transform:matrix(0.147158,-0.003090,0.005249,0.249945,0,0);}
.mde_c01332{transform:matrix(0.148347,-0.003115,0.005249,0.249945,0,0);-ms-transform:matrix(0.148347,-0.003115,0.005249,0.249945,0,0);-webkit-transform:matrix(0.148347,-0.003115,0.005249,0.249945,0,0);}
.md9_c01332{transform:matrix(0.148392,-0.003116,0.005249,0.249945,0,0);-ms-transform:matrix(0.148392,-0.003116,0.005249,0.249945,0,0);-webkit-transform:matrix(0.148392,-0.003116,0.005249,0.249945,0,0);}
.m13f_c01332{transform:matrix(0.149790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149790,0.000000,0.000000,0.250000,0,0);}
.m13d_c01332{transform:matrix(0.150555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150555,0.000000,0.000000,0.250000,0,0);}
.m11_c01332{transform:matrix(0.157180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157180,0.000000,0.000000,0.250000,0,0);}
.m142_c01332{transform:matrix(0.157540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157540,0.000000,0.000000,0.250000,0,0);}
.m141_c01332{transform:matrix(0.158255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158255,0.000000,0.000000,0.250000,0,0);}
.mea_c01332{transform:matrix(0.158775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158775,0.000000,0.000000,0.250000,0,0);}
.m3e_c01332{transform:matrix(0.162465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162465,0.000000,0.000000,0.250000,0,0);}
.m13b_c01332{transform:matrix(0.164655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164655,0.000000,0.000000,0.250000,0,0);}
.m101_c01332{transform:matrix(0.165935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165935,0.000000,0.000000,0.250000,0,0);}
.m140_c01332{transform:matrix(0.168800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168800,0.000000,0.000000,0.250000,0,0);}
.m13e_c01332{transform:matrix(0.169125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169125,0.000000,0.000000,0.250000,0,0);}
.m13a_c01332{transform:matrix(0.170010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170010,0.000000,0.000000,0.250000,0,0);}
.m143_c01332{transform:matrix(0.173490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173490,0.000000,0.000000,0.250000,0,0);}
.m31_c01332{transform:matrix(0.181140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181140,0.000000,0.000000,0.250000,0,0);}
.m2b_c01332{transform:matrix(0.182530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182530,0.000000,0.000000,0.250000,0,0);}
.m1d_c01332{transform:matrix(0.184360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184360,0.000000,0.000000,0.250000,0,0);}
.m27_c01332{transform:matrix(0.184905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184905,0.000000,0.000000,0.250000,0,0);}
.m106_c01332{transform:matrix(0.185935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185935,0.000000,0.000000,0.250000,0,0);}
.m148_c01332{transform:matrix(0.186595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186595,0.000000,0.000000,0.250000,0,0);}
.ma9_c01332{transform:matrix(0.189689,-0.001518,0.002000,0.249992,0,0);-ms-transform:matrix(0.189689,-0.001518,0.002000,0.249992,0,0);-webkit-transform:matrix(0.189689,-0.001518,0.002000,0.249992,0,0);}
.mff_c01332{transform:matrix(0.189690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189690,0.000000,0.000000,0.250000,0,0);}
.m23_c01332{transform:matrix(0.189695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189695,0.000000,0.000000,0.250000,0,0);}
.ma7_c01332{transform:matrix(0.189729,-0.001518,0.002000,0.249992,0,0);-ms-transform:matrix(0.189729,-0.001518,0.002000,0.249992,0,0);-webkit-transform:matrix(0.189729,-0.001518,0.002000,0.249992,0,0);}
.m20_c01332{transform:matrix(0.189745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189745,0.000000,0.000000,0.250000,0,0);}
.ma1_c01332{transform:matrix(0.189808,-0.003227,0.004249,0.249964,0,0);-ms-transform:matrix(0.189808,-0.003227,0.004249,0.249964,0,0);-webkit-transform:matrix(0.189808,-0.003227,0.004249,0.249964,0,0);}
.m125_c01332{transform:matrix(0.190105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190105,0.000000,0.000000,0.250000,0,0);}
.m2a_c01332{transform:matrix(0.190340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190340,0.000000,0.000000,0.250000,0,0);}
.m56_c01332{transform:matrix(0.190810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190810,0.000000,0.000000,0.250000,0,0);}
.m79_c01332{transform:matrix(0.190980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190980,0.000000,0.000000,0.250000,0,0);}
.m57_c01332{transform:matrix(0.191135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191135,0.000000,0.000000,0.250000,0,0);}
.m29_c01332{transform:matrix(0.192775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192775,0.000000,0.000000,0.250000,0,0);}
.m97_c01332{transform:matrix(0.194512,-0.003307,0.004249,0.249964,0,0);-ms-transform:matrix(0.194512,-0.003307,0.004249,0.249964,0,0);-webkit-transform:matrix(0.194512,-0.003307,0.004249,0.249964,0,0);}
.m2f_c01332{transform:matrix(0.194620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194620,0.000000,0.000000,0.250000,0,0);}
.m32_c01332{transform:matrix(0.195060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195060,0.000000,0.000000,0.250000,0,0);}
.m108_c01332{transform:matrix(0.195675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195675,0.000000,0.000000,0.250000,0,0);}
.m28_c01332{transform:matrix(0.196850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196850,0.000000,0.000000,0.250000,0,0);}
.m2e_c01332{transform:matrix(0.200320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200320,0.000000,0.000000,0.250000,0,0);}
.mab_c01332{transform:matrix(0.200334,-0.001603,0.002000,0.249992,0,0);-ms-transform:matrix(0.200334,-0.001603,0.002000,0.249992,0,0);-webkit-transform:matrix(0.200334,-0.001603,0.002000,0.249992,0,0);}
.me3_c01332{transform:matrix(0.201030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201030,0.000000,0.000000,0.250000,0,0);}
.m146_c01332{transform:matrix(0.201495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201495,0.000000,0.000000,0.250000,0,0);}
.m25_c01332{transform:matrix(0.202040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202040,0.000000,0.000000,0.250000,0,0);}
.ma6_c01332{transform:matrix(0.202064,-0.001617,0.002000,0.249992,0,0);-ms-transform:matrix(0.202064,-0.001617,0.002000,0.249992,0,0);-webkit-transform:matrix(0.202064,-0.001617,0.002000,0.249992,0,0);}
.m9d_c01332{transform:matrix(0.202196,-0.003437,0.004249,0.249964,0,0);-ms-transform:matrix(0.202196,-0.003437,0.004249,0.249964,0,0);-webkit-transform:matrix(0.202196,-0.003437,0.004249,0.249964,0,0);}
.mef_c01332{transform:matrix(0.202380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202380,0.000000,0.000000,0.250000,0,0);}
.mac_c01332{transform:matrix(0.202599,-0.001621,0.002000,0.249992,0,0);-ms-transform:matrix(0.202599,-0.001621,0.002000,0.249992,0,0);-webkit-transform:matrix(0.202599,-0.001621,0.002000,0.249992,0,0);}
.maa_c01332{transform:matrix(0.203468,-0.001628,0.002000,0.249992,0,0);-ms-transform:matrix(0.203468,-0.001628,0.002000,0.249992,0,0);-webkit-transform:matrix(0.203468,-0.001628,0.002000,0.249992,0,0);}
.m30_c01332{transform:matrix(0.204370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204370,0.000000,0.000000,0.250000,0,0);}
.mec_c01332{transform:matrix(0.204460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204460,0.000000,0.000000,0.250000,0,0);}
.m1b_c01332{transform:matrix(0.205010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205010,0.000000,0.000000,0.250000,0,0);}
.m5a_c01332{transform:matrix(0.205370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205370,0.000000,0.000000,0.250000,0,0);}
.m2d_c01332{transform:matrix(0.205495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205495,0.000000,0.000000,0.250000,0,0);}
.m14b_c01332{transform:matrix(0.206260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206260,0.000000,0.000000,0.250000,0,0);}
.m68_c01332{transform:matrix(0.206405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206405,0.000000,0.000000,0.250000,0,0);}
.m9a_c01332{transform:matrix(0.206815,-0.003516,0.004249,0.249964,0,0);-ms-transform:matrix(0.206815,-0.003516,0.004249,0.249964,0,0);-webkit-transform:matrix(0.206815,-0.003516,0.004249,0.249964,0,0);}
.m2c_c01332{transform:matrix(0.207075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207075,0.000000,0.000000,0.250000,0,0);}
.ma8_c01332{transform:matrix(0.207863,-0.001663,0.002000,0.249992,0,0);-ms-transform:matrix(0.207863,-0.001663,0.002000,0.249992,0,0);-webkit-transform:matrix(0.207863,-0.001663,0.002000,0.249992,0,0);}
.m24_c01332{transform:matrix(0.208020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208020,0.000000,0.000000,0.250000,0,0);}
.mf2_c01332{transform:matrix(0.208175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208175,0.000000,0.000000,0.250000,0,0);}
.me4_c01332{transform:matrix(0.208465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208465,0.000000,0.000000,0.250000,0,0);}
.m14e_c01332{transform:matrix(0.208605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208605,0.000000,0.000000,0.250000,0,0);}
.m99_c01332{transform:matrix(0.208720,-0.003548,0.004249,0.249964,0,0);-ms-transform:matrix(0.208720,-0.003548,0.004249,0.249964,0,0);-webkit-transform:matrix(0.208720,-0.003548,0.004249,0.249964,0,0);}
.m95_c01332{transform:matrix(0.209200,-0.003556,0.004249,0.249964,0,0);-ms-transform:matrix(0.209200,-0.003556,0.004249,0.249964,0,0);-webkit-transform:matrix(0.209200,-0.003556,0.004249,0.249964,0,0);}
.me6_c01332{transform:matrix(0.209220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209220,0.000000,0.000000,0.250000,0,0);}
.m6d_c01332{transform:matrix(0.209505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209505,0.000000,0.000000,0.250000,0,0);}
.m76_c01332{transform:matrix(0.211010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211010,0.000000,0.000000,0.250000,0,0);}
.m103_c01332{transform:matrix(0.211580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211580,0.000000,0.000000,0.250000,0,0);}
.mf5_c01332{transform:matrix(0.211930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211930,0.000000,0.000000,0.250000,0,0);}
.m5d_c01332{transform:matrix(0.212185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212185,0.000000,0.000000,0.250000,0,0);}
.m1f_c01332{transform:matrix(0.212460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212460,0.000000,0.000000,0.250000,0,0);}
.m131_c01332{transform:matrix(0.212605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212605,0.000000,0.000000,0.250000,0,0);}
.m1e_c01332{transform:matrix(0.212640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212640,0.000000,0.000000,0.250000,0,0);}
.mf8_c01332{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.ma0_c01332{transform:matrix(0.212804,-0.003618,0.004249,0.249964,0,0);-ms-transform:matrix(0.212804,-0.003618,0.004249,0.249964,0,0);-webkit-transform:matrix(0.212804,-0.003618,0.004249,0.249964,0,0);}
.mf9_c01332{transform:matrix(0.213015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213015,0.000000,0.000000,0.250000,0,0);}
.ma3_c01332{transform:matrix(0.213133,-0.001705,0.002000,0.249992,0,0);-ms-transform:matrix(0.213133,-0.001705,0.002000,0.249992,0,0);-webkit-transform:matrix(0.213133,-0.001705,0.002000,0.249992,0,0);}
.m1c_c01332{transform:matrix(0.213190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213190,0.000000,0.000000,0.250000,0,0);}
.m5e_c01332{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m21_c01332{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.mae_c01332{transform:matrix(0.215548,-0.001724,0.002000,0.249992,0,0);-ms-transform:matrix(0.215548,-0.001724,0.002000,0.249992,0,0);-webkit-transform:matrix(0.215548,-0.001724,0.002000,0.249992,0,0);}
.me7_c01332{transform:matrix(0.215790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215790,0.000000,0.000000,0.250000,0,0);}
.ma5_c01332{transform:matrix(0.215793,-0.001726,0.002000,0.249992,0,0);-ms-transform:matrix(0.215793,-0.001726,0.002000,0.249992,0,0);-webkit-transform:matrix(0.215793,-0.001726,0.002000,0.249992,0,0);}
.m81_c01332{transform:matrix(0.216495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216495,0.000000,0.000000,0.250000,0,0);}
.m7b_c01332{transform:matrix(0.216995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216995,0.000000,0.000000,0.250000,0,0);}
.m14c_c01332{transform:matrix(0.217200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217200,0.000000,0.000000,0.250000,0,0);}
.m18_c01332{transform:matrix(0.217275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217275,0.000000,0.000000,0.250000,0,0);}
.m5b_c01332{transform:matrix(0.217605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217605,0.000000,0.000000,0.250000,0,0);}
.m7d_c01332{transform:matrix(0.217705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217705,0.000000,0.000000,0.250000,0,0);}
.m7f_c01332{transform:matrix(0.217915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217915,0.000000,0.000000,0.250000,0,0);}
.m149_c01332{transform:matrix(0.218120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218120,0.000000,0.000000,0.250000,0,0);}
.m26_c01332{transform:matrix(0.218490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218490,0.000000,0.000000,0.250000,0,0);}
.me2_c01332{transform:matrix(0.219480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219480,0.000000,0.000000,0.250000,0,0);}
.m60_c01332{transform:matrix(0.219590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219590,0.000000,0.000000,0.250000,0,0);}
.m72_c01332{transform:matrix(0.219670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219670,0.000000,0.000000,0.250000,0,0);}
.ma4_c01332{transform:matrix(0.219778,-0.001758,0.002000,0.249992,0,0);-ms-transform:matrix(0.219778,-0.001758,0.002000,0.249992,0,0);-webkit-transform:matrix(0.219778,-0.001758,0.002000,0.249992,0,0);}
.med_c01332{transform:matrix(0.219935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219935,0.000000,0.000000,0.250000,0,0);}
.m89_c01332{transform:matrix(0.220020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220020,0.000000,0.000000,0.250000,0,0);}
.m65_c01332{transform:matrix(0.220890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220890,0.000000,0.000000,0.250000,0,0);}
.m84_c01332{transform:matrix(0.221455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221455,0.000000,0.000000,0.250000,0,0);}
.m73_c01332{transform:matrix(0.221680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221680,0.000000,0.000000,0.250000,0,0);}
.m5c_c01332{transform:matrix(0.221790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221790,0.000000,0.000000,0.250000,0,0);}
.m10c_c01332{transform:matrix(0.221995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221995,0.000000,0.000000,0.250000,0,0);}
.mad_c01332{transform:matrix(0.222048,-0.001776,0.002000,0.249992,0,0);-ms-transform:matrix(0.222048,-0.001776,0.002000,0.249992,0,0);-webkit-transform:matrix(0.222048,-0.001776,0.002000,0.249992,0,0);}
.m9e_c01332{transform:matrix(0.222338,-0.003780,0.004249,0.249964,0,0);-ms-transform:matrix(0.222338,-0.003780,0.004249,0.249964,0,0);-webkit-transform:matrix(0.222338,-0.003780,0.004249,0.249964,0,0);}
.m8c_c01332{transform:matrix(0.224160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224160,0.000000,0.000000,0.250000,0,0);}
.m96_c01332{transform:matrix(0.224393,-0.003815,0.004249,0.249964,0,0);-ms-transform:matrix(0.224393,-0.003815,0.004249,0.249964,0,0);-webkit-transform:matrix(0.224393,-0.003815,0.004249,0.249964,0,0);}
.m80_c01332{transform:matrix(0.225695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225695,0.000000,0.000000,0.250000,0,0);}
.m104_c01332{transform:matrix(0.225830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225830,0.000000,0.000000,0.250000,0,0);}
.m4e_c01332{transform:matrix(0.225845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225845,0.000000,0.000000,0.250000,0,0);}
.mf3_c01332{transform:matrix(0.226395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226395,0.000000,0.000000,0.250000,0,0);}
.me1_c01332{transform:matrix(0.226490,-0.004756,0.005249,0.249945,0,0);-ms-transform:matrix(0.226490,-0.004756,0.005249,0.249945,0,0);-webkit-transform:matrix(0.226490,-0.004756,0.005249,0.249945,0,0);}
.mf6_c01332{transform:matrix(0.226495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226495,0.000000,0.000000,0.250000,0,0);}
.m107_c01332{transform:matrix(0.226885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226885,0.000000,0.000000,0.250000,0,0);}
.m6b_c01332{transform:matrix(0.227260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227260,0.000000,0.000000,0.250000,0,0);}
.m61_c01332{transform:matrix(0.227900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227900,0.000000,0.000000,0.250000,0,0);}
.m22_c01332{transform:matrix(0.227980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227980,0.000000,0.000000,0.250000,0,0);}
.m19_c01332{transform:matrix(0.228130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228130,0.000000,0.000000,0.250000,0,0);}
.m102_c01332{transform:matrix(0.228925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228925,0.000000,0.000000,0.250000,0,0);}
.m98_c01332{transform:matrix(0.229082,-0.003894,0.004249,0.249964,0,0);-ms-transform:matrix(0.229082,-0.003894,0.004249,0.249964,0,0);-webkit-transform:matrix(0.229082,-0.003894,0.004249,0.249964,0,0);}
.mb4_c01332{transform:matrix(0.229140,-0.005041,0.005499,0.249940,0,0);-ms-transform:matrix(0.229140,-0.005041,0.005499,0.249940,0,0);-webkit-transform:matrix(0.229140,-0.005041,0.005499,0.249940,0,0);}
.me5_c01332{transform:matrix(0.229705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229705,0.000000,0.000000,0.250000,0,0);}
.mee_c01332{transform:matrix(0.230205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230205,0.000000,0.000000,0.250000,0,0);}
.m8a_c01332{transform:matrix(0.230220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230220,0.000000,0.000000,0.250000,0,0);}
.m105_c01332{transform:matrix(0.230400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230400,0.000000,0.000000,0.250000,0,0);}
.m147_c01332{transform:matrix(0.230600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230600,0.000000,0.000000,0.250000,0,0);}
.mf4_c01332{transform:matrix(0.230725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230725,0.000000,0.000000,0.250000,0,0);}
.meb_c01332{transform:matrix(0.230980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230980,0.000000,0.000000,0.250000,0,0);}
.m86_c01332{transform:matrix(0.231620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231620,0.000000,0.000000,0.250000,0,0);}
.m77_c01332{transform:matrix(0.232355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232355,0.000000,0.000000,0.250000,0,0);}
.m87_c01332{transform:matrix(0.233065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233065,0.000000,0.000000,0.250000,0,0);}
.mfa_c01332{transform:matrix(0.233125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233125,0.000000,0.000000,0.250000,0,0);}
.m67_c01332{transform:matrix(0.233160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233160,0.000000,0.000000,0.250000,0,0);}
.m14a_c01332{transform:matrix(0.233270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233270,0.000000,0.000000,0.250000,0,0);}
.m9c_c01332{transform:matrix(0.233296,-0.003966,0.004249,0.249964,0,0);-ms-transform:matrix(0.233296,-0.003966,0.004249,0.249964,0,0);-webkit-transform:matrix(0.233296,-0.003966,0.004249,0.249964,0,0);}
.m9b_c01332{transform:matrix(0.233521,-0.003970,0.004249,0.249964,0,0);-ms-transform:matrix(0.233521,-0.003970,0.004249,0.249964,0,0);-webkit-transform:matrix(0.233521,-0.003970,0.004249,0.249964,0,0);}
.m43_c01332{transform:matrix(0.233680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233680,0.000000,0.000000,0.250000,0,0);}
.m10e_c01332{transform:matrix(0.233735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233735,0.000000,0.000000,0.250000,0,0);}
.m58_c01332{transform:matrix(0.234105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234105,0.000000,0.000000,0.250000,0,0);}
.m3a_c01332{transform:matrix(0.235080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235080,0.000000,0.000000,0.250000,0,0);}
.m5f_c01332{transform:matrix(0.235470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235470,0.000000,0.000000,0.250000,0,0);}
.m10a_c01332{transform:matrix(0.235700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235700,0.000000,0.000000,0.250000,0,0);}
.m6e_c01332{transform:matrix(0.235790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235790,0.000000,0.000000,0.250000,0,0);}
.m54_c01332{transform:matrix(0.235850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235850,0.000000,0.000000,0.250000,0,0);}
.mf0_c01332{transform:matrix(0.236180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236180,0.000000,0.000000,0.250000,0,0);}
.mcb_c01332{transform:matrix(0.236445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236445,0.000000,0.000000,0.250000,0,0);}
.m109_c01332{transform:matrix(0.237095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237095,0.000000,0.000000,0.250000,0,0);}
.m9f_c01332{transform:matrix(0.237266,-0.004034,0.004249,0.249964,0,0);-ms-transform:matrix(0.237266,-0.004034,0.004249,0.249964,0,0);-webkit-transform:matrix(0.237266,-0.004034,0.004249,0.249964,0,0);}
.m112_c01332{transform:matrix(0.238185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238185,0.000000,0.000000,0.250000,0,0);}
.mcf_c01332{transform:matrix(0.238355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238355,0.000000,0.000000,0.250000,0,0);}
.m85_c01332{transform:matrix(0.239070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239070,0.000000,0.000000,0.250000,0,0);}
.m46_c01332{transform:matrix(0.239295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239295,0.000000,0.000000,0.250000,0,0);}
.m82_c01332{transform:matrix(0.239430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239430,0.000000,0.000000,0.250000,0,0);}
.m42_c01332{transform:matrix(0.240105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240105,0.000000,0.000000,0.250000,0,0);}
.m59_c01332{transform:matrix(0.240375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240375,0.000000,0.000000,0.250000,0,0);}
.mc2_c01332{transform:matrix(0.240432,-0.001923,0.002000,0.249992,0,0);-ms-transform:matrix(0.240432,-0.001923,0.002000,0.249992,0,0);-webkit-transform:matrix(0.240432,-0.001923,0.002000,0.249992,0,0);}
.mb7_c01332{transform:matrix(0.240777,-0.005297,0.005499,0.249940,0,0);-ms-transform:matrix(0.240777,-0.005297,0.005499,0.249940,0,0);-webkit-transform:matrix(0.240777,-0.005297,0.005499,0.249940,0,0);}
.m37_c01332{transform:matrix(0.241415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241415,0.000000,0.000000,0.250000,0,0);}
.m83_c01332{transform:matrix(0.241510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241510,0.000000,0.000000,0.250000,0,0);}
.mc1_c01332{transform:matrix(0.241772,-0.001934,0.002000,0.249992,0,0);-ms-transform:matrix(0.241772,-0.001934,0.002000,0.249992,0,0);-webkit-transform:matrix(0.241772,-0.001934,0.002000,0.249992,0,0);}
.m70_c01332{transform:matrix(0.242115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242115,0.000000,0.000000,0.250000,0,0);}
.m10d_c01332{transform:matrix(0.242715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242715,0.000000,0.000000,0.250000,0,0);}
.m7e_c01332{transform:matrix(0.242735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242735,0.000000,0.000000,0.250000,0,0);}
.m114_c01332{transform:matrix(0.242745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242745,0.000000,0.000000,0.250000,0,0);}
.m14d_c01332{transform:matrix(0.242845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242845,0.000000,0.000000,0.250000,0,0);}
.mf7_c01332{transform:matrix(0.243220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243220,0.000000,0.000000,0.250000,0,0);}
.mbe_c01332{transform:matrix(0.243487,-0.001948,0.002000,0.249992,0,0);-ms-transform:matrix(0.243487,-0.001948,0.002000,0.249992,0,0);-webkit-transform:matrix(0.243487,-0.001948,0.002000,0.249992,0,0);}
.mb6_c01332{transform:matrix(0.243721,-0.005362,0.005499,0.249940,0,0);-ms-transform:matrix(0.243721,-0.005362,0.005499,0.249940,0,0);-webkit-transform:matrix(0.243721,-0.005362,0.005499,0.249940,0,0);}
.m66_c01332{transform:matrix(0.243915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243915,0.000000,0.000000,0.250000,0,0);}
.mc9_c01332{transform:matrix(0.244385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244385,0.000000,0.000000,0.250000,0,0);}
.m34_c01332{transform:matrix(0.244860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244860,0.000000,0.000000,0.250000,0,0);}
.mb8_c01332{transform:matrix(0.244916,-0.005388,0.005499,0.249940,0,0);-ms-transform:matrix(0.244916,-0.005388,0.005499,0.249940,0,0);-webkit-transform:matrix(0.244916,-0.005388,0.005499,0.249940,0,0);}
.m7a_c01332{transform:matrix(0.245045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245045,0.000000,0.000000,0.250000,0,0);}
.m145_c01332{transform:matrix(0.245405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245405,0.000000,0.000000,0.250000,0,0);}
.mf1_c01332{transform:matrix(0.245970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245970,0.000000,0.000000,0.250000,0,0);}
.m64_c01332{transform:matrix(0.247110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247110,0.000000,0.000000,0.250000,0,0);}
.mb0_c01332{transform:matrix(0.247240,-0.005439,0.005499,0.249940,0,0);-ms-transform:matrix(0.247240,-0.005439,0.005499,0.249940,0,0);-webkit-transform:matrix(0.247240,-0.005439,0.005499,0.249940,0,0);}
.m33_c01332{transform:matrix(0.247335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247335,0.000000,0.000000,0.250000,0,0);}
.mba_c01332{transform:matrix(0.248145,-0.005459,0.005499,0.249940,0,0);-ms-transform:matrix(0.248145,-0.005459,0.005499,0.249940,0,0);-webkit-transform:matrix(0.248145,-0.005459,0.005499,0.249940,0,0);}
.m6f_c01332{transform:matrix(0.248650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248650,0.000000,0.000000,0.250000,0,0);}
.m88_c01332{transform:matrix(0.248850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248850,0.000000,0.000000,0.250000,0,0);}
.m121_c01332{transform:matrix(0.249210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249210,0.000000,0.000000,0.250000,0,0);}
.m71_c01332{transform:matrix(0.249855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249855,0.000000,0.000000,0.250000,0,0);}
.m41_c01332{transform:matrix(0.250155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250155,0.000000,0.000000,0.250000,0,0);}
.mb5_c01332{transform:matrix(0.250249,-0.005505,0.005499,0.249940,0,0);-ms-transform:matrix(0.250249,-0.005505,0.005499,0.249940,0,0);-webkit-transform:matrix(0.250249,-0.005505,0.005499,0.249940,0,0);}
.m3d_c01332{transform:matrix(0.250425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250425,0.000000,0.000000,0.250000,0,0);}
.m8b_c01332{transform:matrix(0.250610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250610,0.000000,0.000000,0.250000,0,0);}
.m50_c01332{transform:matrix(0.250660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250660,0.000000,0.000000,0.250000,0,0);}
.m11c_c01332{transform:matrix(0.250920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250920,0.000000,0.000000,0.250000,0,0);}
.m75_c01332{transform:matrix(0.251020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251020,0.000000,0.000000,0.250000,0,0);}
.m69_c01332{transform:matrix(0.251445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251445,0.000000,0.000000,0.250000,0,0);}
.m4d_c01332{transform:matrix(0.251740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251740,0.000000,0.000000,0.250000,0,0);}
.m113_c01332{transform:matrix(0.252115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252115,0.000000,0.000000,0.250000,0,0);}
.m6c_c01332{transform:matrix(0.252810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252810,0.000000,0.000000,0.250000,0,0);}
.m129_c01332{transform:matrix(0.253095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253095,0.000000,0.000000,0.250000,0,0);}
.m91_c01332{transform:matrix(0.254345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254345,0.000000,0.000000,0.250000,0,0);}
.m48_c01332{transform:matrix(0.254370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254370,0.000000,0.000000,0.250000,0,0);}
.m74_c01332{transform:matrix(0.254510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254510,0.000000,0.000000,0.250000,0,0);}
.m63_c01332{transform:matrix(0.254760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254760,0.000000,0.000000,0.250000,0,0);}
.m3f_c01332{transform:matrix(0.254870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254870,0.000000,0.000000,0.250000,0,0);}
.m78_c01332{transform:matrix(0.254950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254950,0.000000,0.000000,0.250000,0,0);}
.mb3_c01332{transform:matrix(0.255148,-0.005613,0.005499,0.249940,0,0);-ms-transform:matrix(0.255148,-0.005613,0.005499,0.249940,0,0);-webkit-transform:matrix(0.255148,-0.005613,0.005499,0.249940,0,0);}
.m62_c01332{transform:matrix(0.255970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255970,0.000000,0.000000,0.250000,0,0);}
.mca_c01332{transform:matrix(0.256895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256895,0.000000,0.000000,0.250000,0,0);}
.m7c_c01332{transform:matrix(0.257230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257230,0.000000,0.000000,0.250000,0,0);}
.m117_c01332{transform:matrix(0.258315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258315,0.000000,0.000000,0.250000,0,0);}
.m134_c01332{transform:matrix(0.258935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258935,0.000000,0.000000,0.250000,0,0);}
.m116_c01332{transform:matrix(0.259130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259130,0.000000,0.000000,0.250000,0,0);}
.m12c_c01332{transform:matrix(0.259450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259450,0.000000,0.000000,0.250000,0,0);}
.m122_c01332{transform:matrix(0.259495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259495,0.000000,0.000000,0.250000,0,0);}
.m8e_c01332{transform:matrix(0.259620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259620,0.000000,0.000000,0.250000,0,0);}
.m127_c01332{transform:matrix(0.260020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260020,0.000000,0.000000,0.250000,0,0);}
.m38_c01332{transform:matrix(0.260175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260175,0.000000,0.000000,0.250000,0,0);}
.m93_c01332{transform:matrix(0.260245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260245,0.000000,0.000000,0.250000,0,0);}
.mb9_c01332{transform:matrix(0.260997,-0.005742,0.005499,0.249940,0,0);-ms-transform:matrix(0.260997,-0.005742,0.005499,0.249940,0,0);-webkit-transform:matrix(0.260997,-0.005742,0.005499,0.249940,0,0);}
.m6a_c01332{transform:matrix(0.261230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261230,0.000000,0.000000,0.250000,0,0);}
.m11d_c01332{transform:matrix(0.261845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261845,0.000000,0.000000,0.250000,0,0);}
.mce_c01332{transform:matrix(0.261850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261850,0.000000,0.000000,0.250000,0,0);}
.m14f_c01332{transform:matrix(0.262210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262210,0.000000,0.000000,0.250000,0,0);}
.m11e_c01332{transform:matrix(0.262525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262525,0.000000,0.000000,0.250000,0,0);}
.m51_c01332{transform:matrix(0.262565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262565,0.000000,0.000000,0.250000,0,0);}
.m16_c01332{transform:matrix(0.262635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262635,0.000000,0.000000,0.250000,0,0);}
.mbf_c01332{transform:matrix(0.263332,-0.002107,0.002000,0.249992,0,0);-ms-transform:matrix(0.263332,-0.002107,0.002000,0.249992,0,0);-webkit-transform:matrix(0.263332,-0.002107,0.002000,0.249992,0,0);}
.m52_c01332{transform:matrix(0.263355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263355,0.000000,0.000000,0.250000,0,0);}
.mbb_c01332{transform:matrix(0.263726,-0.005802,0.005499,0.249940,0,0);-ms-transform:matrix(0.263726,-0.005802,0.005499,0.249940,0,0);-webkit-transform:matrix(0.263726,-0.005802,0.005499,0.249940,0,0);}
.m120_c01332{transform:matrix(0.265830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265830,0.000000,0.000000,0.250000,0,0);}
.mc3_c01332{transform:matrix(0.265876,-0.002127,0.002000,0.249992,0,0);-ms-transform:matrix(0.265876,-0.002127,0.002000,0.249992,0,0);-webkit-transform:matrix(0.265876,-0.002127,0.002000,0.249992,0,0);}
.m40_c01332{transform:matrix(0.266045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266045,0.000000,0.000000,0.250000,0,0);}
.m36_c01332{transform:matrix(0.266790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266790,0.000000,0.000000,0.250000,0,0);}
.m49_c01332{transform:matrix(0.267700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267700,0.000000,0.000000,0.250000,0,0);}
.mc4_c01332{transform:matrix(0.267721,-0.002142,0.002000,0.249992,0,0);-ms-transform:matrix(0.267721,-0.002142,0.002000,0.249992,0,0);-webkit-transform:matrix(0.267721,-0.002142,0.002000,0.249992,0,0);}
.mb1_c01332{transform:matrix(0.268485,-0.005907,0.005499,0.249940,0,0);-ms-transform:matrix(0.268485,-0.005907,0.005499,0.249940,0,0);-webkit-transform:matrix(0.268485,-0.005907,0.005499,0.249940,0,0);}
.m8f_c01332{transform:matrix(0.268935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268935,0.000000,0.000000,0.250000,0,0);}
.m4f_c01332{transform:matrix(0.269175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269175,0.000000,0.000000,0.250000,0,0);}
.m44_c01332{transform:matrix(0.269400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269400,0.000000,0.000000,0.250000,0,0);}
.m53_c01332{transform:matrix(0.269640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269640,0.000000,0.000000,0.250000,0,0);}
.m111_c01332{transform:matrix(0.269840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269840,0.000000,0.000000,0.250000,0,0);}
.m47_c01332{transform:matrix(0.270105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270105,0.000000,0.000000,0.250000,0,0);}
.mb2_c01332{transform:matrix(0.270480,-0.005951,0.005499,0.249940,0,0);-ms-transform:matrix(0.270480,-0.005951,0.005499,0.249940,0,0);-webkit-transform:matrix(0.270480,-0.005951,0.005499,0.249940,0,0);}
.m3c_c01332{transform:matrix(0.270515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270515,0.000000,0.000000,0.250000,0,0);}
.m11f_c01332{transform:matrix(0.270595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270595,0.000000,0.000000,0.250000,0,0);}
.m12f_c01332{transform:matrix(0.270845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270845,0.000000,0.000000,0.250000,0,0);}
.m3b_c01332{transform:matrix(0.270895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270895,0.000000,0.000000,0.250000,0,0);}
.m10f_c01332{transform:matrix(0.271490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271490,0.000000,0.000000,0.250000,0,0);}
.m94_c01332{transform:matrix(0.272285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272285,0.000000,0.000000,0.250000,0,0);}
.mc0_c01332{transform:matrix(0.272681,-0.002181,0.002000,0.249992,0,0);-ms-transform:matrix(0.272681,-0.002181,0.002000,0.249992,0,0);-webkit-transform:matrix(0.272681,-0.002181,0.002000,0.249992,0,0);}
.md1_c01332{transform:matrix(0.272710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272710,0.000000,0.000000,0.250000,0,0);}
.m12e_c01332{transform:matrix(0.272765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272765,0.000000,0.000000,0.250000,0,0);}
.m8d_c01332{transform:matrix(0.273375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273375,0.000000,0.000000,0.250000,0,0);}
.m4b_c01332{transform:matrix(0.273960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273960,0.000000,0.000000,0.250000,0,0);}
.me9_c01332{transform:matrix(0.274865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274865,0.000000,0.000000,0.250000,0,0);}
.m90_c01332{transform:matrix(0.274955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274955,0.000000,0.000000,0.250000,0,0);}
.m35_c01332{transform:matrix(0.275470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275470,0.000000,0.000000,0.250000,0,0);}
.m12a_c01332{transform:matrix(0.275600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275600,0.000000,0.000000,0.250000,0,0);}
.m92_c01332{transform:matrix(0.275790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275790,0.000000,0.000000,0.250000,0,0);}
.m39_c01332{transform:matrix(0.275875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275875,0.000000,0.000000,0.250000,0,0);}
.m110_c01332{transform:matrix(0.276815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276815,0.000000,0.000000,0.250000,0,0);}
.md0_c01332{transform:matrix(0.277365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277365,0.000000,0.000000,0.250000,0,0);}
.m4c_c01332{transform:matrix(0.277580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277580,0.000000,0.000000,0.250000,0,0);}
.m115_c01332{transform:matrix(0.278955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278955,0.000000,0.000000,0.250000,0,0);}
.md2_c01332{transform:matrix(0.280215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280215,0.000000,0.000000,0.250000,0,0);}
.m45_c01332{transform:matrix(0.280660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280660,0.000000,0.000000,0.250000,0,0);}
.m55_c01332{transform:matrix(0.280970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280970,0.000000,0.000000,0.250000,0,0);}
.maf_c01332{transform:matrix(0.282292,-0.006210,0.005499,0.249940,0,0);-ms-transform:matrix(0.282292,-0.006210,0.005499,0.249940,0,0);-webkit-transform:matrix(0.282292,-0.006210,0.005499,0.249940,0,0);}
.m119_c01332{transform:matrix(0.282325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282325,0.000000,0.000000,0.250000,0,0);}
.m10b_c01332{transform:matrix(0.285015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285015,0.000000,0.000000,0.250000,0,0);}
.m118_c01332{transform:matrix(0.286380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286380,0.000000,0.000000,0.250000,0,0);}
.m12d_c01332{transform:matrix(0.286835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286835,0.000000,0.000000,0.250000,0,0);}
.m123_c01332{transform:matrix(0.290015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290015,0.000000,0.000000,0.250000,0,0);}
.m144_c01332{transform:matrix(0.292560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292560,0.000000,0.000000,0.250000,0,0);}
.m128_c01332{transform:matrix(0.296915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296915,0.000000,0.000000,0.250000,0,0);}
.m12b_c01332{transform:matrix(0.298410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298410,0.000000,0.000000,0.250000,0,0);}
.m126_c01332{transform:matrix(0.305360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305360,0.000000,0.000000,0.250000,0,0);}
.mcd_c01332{transform:matrix(0.306075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306075,0.000000,0.000000,0.250000,0,0);}
.m133_c01332{transform:matrix(0.306685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306685,0.000000,0.000000,0.250000,0,0);}
.m136_c01332{transform:matrix(0.330065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330065,0.000000,0.000000,0.250000,0,0);}
.m4a_c01332{transform:matrix(0.330245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330245,0.000000,0.000000,0.250000,0,0);}
.m130_c01332{transform:matrix(0.335670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335670,0.000000,0.000000,0.250000,0,0);}
.m6_c01332{transform:matrix(0.338915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338915,0.000000,0.000000,0.250000,0,0);}
.m135_c01332{transform:matrix(0.342055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342055,0.000000,0.000000,0.250000,0,0);}
.m138_c01332{transform:matrix(0.344705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344705,0.000000,0.000000,0.250000,0,0);}
.mc8_c01332{transform:matrix(0.345325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345325,0.000000,0.000000,0.250000,0,0);}
.mbd_c01332{transform:matrix(0.346489,-0.002772,0.002000,0.249992,0,0);-ms-transform:matrix(0.346489,-0.002772,0.002000,0.249992,0,0);-webkit-transform:matrix(0.346489,-0.002772,0.002000,0.249992,0,0);}
.md3_c01332{transform:matrix(0.347455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347455,0.000000,0.000000,0.250000,0,0);}
.mc5_c01332{transform:matrix(0.349419,-0.002795,0.002000,0.249992,0,0);-ms-transform:matrix(0.349419,-0.002795,0.002000,0.249992,0,0);-webkit-transform:matrix(0.349419,-0.002795,0.002000,0.249992,0,0);}
.m139_c01332{transform:matrix(0.351150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351150,0.000000,0.000000,0.250000,0,0);}
.m10_c01332{transform:matrix(0.353080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353080,0.000000,0.000000,0.250000,0,0);}
.m137_c01332{transform:matrix(0.353705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353705,0.000000,0.000000,0.250000,0,0);}
.m132_c01332{transform:matrix(0.358710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358710,0.000000,0.000000,0.250000,0,0);}
.mcc_c01332{transform:matrix(0.367490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367490,0.000000,0.000000,0.250000,0,0);}
.mbc_c01332{transform:matrix(0.370555,-0.008152,0.005499,0.249940,0,0);-ms-transform:matrix(0.370555,-0.008152,0.005499,0.249940,0,0);-webkit-transform:matrix(0.370555,-0.008152,0.005499,0.249940,0,0);}
.m124_c01332{transform:matrix(0.377485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377485,0.000000,0.000000,0.250000,0,0);}
.m11b_c01332{transform:matrix(0.395905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395905,0.000000,0.000000,0.250000,0,0);}
.m14_c01332{transform:matrix(0.400565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400565,0.000000,0.000000,0.250000,0,0);}
.m11a_c01332{transform:matrix(0.406700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406700,0.000000,0.000000,0.250000,0,0);}
.m150_c01332{transform:matrix(0.435485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435485,0.000000,0.000000,0.250000,0,0);}
.m8_c01332{transform:matrix(0.440205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440205,0.000000,0.000000,0.250000,0,0);}
.mc_c01332{transform:matrix(0.455590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455590,0.000000,0.000000,0.250000,0,0);}
.mf_c01332{transform:matrix(0.456575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456575,0.000000,0.000000,0.250000,0,0);}
.m2_c01332{transform:matrix(0.462485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462485,0.000000,0.000000,0.250000,0,0);}
.m4_c01332{transform:matrix(0.465330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465330,0.000000,0.000000,0.250000,0,0);}
.m100_c01332{transform:matrix(0.484335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.484335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.484335,0.000000,0.000000,0.250000,0,0);}
.m7_c01332{transform:matrix(0.519455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.519455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.519455,0.000000,0.000000,0.250000,0,0);}
.mb_c01332{transform:matrix(0.555710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555710,0.000000,0.000000,0.250000,0,0);}
.m12_c01332{transform:matrix(0.577825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577825,0.000000,0.000000,0.250000,0,0);}
.m17_c01332{transform:matrix(0.578255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.578255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.578255,0.000000,0.000000,0.250000,0,0);}
.m1a_c01332{transform:matrix(0.648620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.648620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.648620,0.000000,0.000000,0.250000,0,0);}
.m1_c01332{transform:matrix(0.690365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.690365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.690365,0.000000,0.000000,0.250000,0,0);}
.mc7_c01332{transform:matrix(0.780730,-0.006246,0.002000,0.249992,0,0);-ms-transform:matrix(0.780730,-0.006246,0.002000,0.249992,0,0);-webkit-transform:matrix(0.780730,-0.006246,0.002000,0.249992,0,0);}
.me_c01332{transform:matrix(0.848610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.848610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.848610,0.000000,0.000000,0.250000,0,0);}
.mc6_c01332{transform:matrix(0.885762,-0.007086,0.002000,0.249992,0,0);-ms-transform:matrix(0.885762,-0.007086,0.002000,0.249992,0,0);-webkit-transform:matrix(0.885762,-0.007086,0.002000,0.249992,0,0);}
.m5_c01332{transform:matrix(1.026220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.026220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.026220,0.000000,0.000000,0.250000,0,0);}
.m0_c01332{transform:matrix(1.892420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.892420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.892420,0.000000,0.000000,0.250000,0,0);}
.v0_c01332{vertical-align:0.000000px;}
.ls0_c01332{letter-spacing:0.000000px;}
.sc__c01332{text-shadow:none;}
.sc0_c01332{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__c01332{-webkit-text-stroke:0px transparent;}
.sc0_c01332{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01332{word-spacing:0.000000px;}
.fc0_c01332{color:transparent;}
.fs0_c01332{font-size:24.000000px;}
.fs1_c01332{font-size:30.000000px;}
.fs2_c01332{font-size:36.000000px;}
.fsd_c01332{font-size:54.000000px;}
.fs3_c01332{font-size:60.000000px;}
.fs10_c01332{font-size:66.000000px;}
.fs6_c01332{font-size:72.000000px;}
.fsc_c01332{font-size:72.002304px;}
.fsb_c01332{font-size:72.017422px;}
.fs8_c01332{font-size:78.000000px;}
.fs7_c01332{font-size:84.000000px;}
.fs9_c01332{font-size:84.012137px;}
.fs4_c01332{font-size:90.000000px;}
.fsa_c01332{font-size:90.002880px;}
.fs5_c01332{font-size:96.000000px;}
.fs11_c01332{font-size:120.000000px;}
.fse_c01332{font-size:132.029103px;}
.fsf_c01332{font-size:144.000000px;}
.y0_c01332{bottom:0.000000px;}
.ybd_c01332{bottom:51.280500px;}
.ybc_c01332{bottom:87.177000px;}
.ybb_c01332{bottom:123.303000px;}
.y6_c01332{bottom:158.766000px;}
.y5_c01332{bottom:171.990000px;}
.y4_c01332{bottom:180.228000px;}
.y3_c01332{bottom:189.001500px;}
.ybe_c01332{bottom:190.962000px;}
.yba_c01332{bottom:210.870000px;}
.yb9_c01332{bottom:247.141500px;}
.yb8_c01332{bottom:282.919500px;}
.yb6_c01332{bottom:316.959000px;}
.yac_c01332{bottom:350.730000px;}
.yad_c01332{bottom:351.118500px;}
.yae_c01332{bottom:351.379500px;}
.yaf_c01332{bottom:351.583500px;}
.yb0_c01332{bottom:352.167000px;}
.yb1_c01332{bottom:352.371000px;}
.yb2_c01332{bottom:352.761000px;}
.yb3_c01332{bottom:353.224500px;}
.yb4_c01332{bottom:353.487000px;}
.yb5_c01332{bottom:354.073500px;}
.y1_c01332{bottom:376.110000px;}
.yab_c01332{bottom:386.772000px;}
.yb7_c01332{bottom:387.873000px;}
.y2_c01332{bottom:408.780000px;}
.y9d_c01332{bottom:411.757500px;}
.y9e_c01332{bottom:412.224488px;}
.y9f_c01332{bottom:412.921394px;}
.ya0_c01332{bottom:414.277658px;}
.ya1_c01332{bottom:414.991573px;}
.ya2_c01332{bottom:415.887717px;}
.ya3_c01332{bottom:417.973931px;}
.ya4_c01332{bottom:419.572398px;}
.ya5_c01332{bottom:420.274596px;}
.ya6_c01332{bottom:420.967376px;}
.ya7_c01332{bottom:422.781618px;}
.ya8_c01332{bottom:424.191842px;}
.ya9_c01332{bottom:424.867611px;}
.yaa_c01332{bottom:425.597372px;}
.y9c_c01332{bottom:458.272500px;}
.y9b_c01332{bottom:490.327500px;}
.y90_c01332{bottom:526.224000px;}
.y91_c01332{bottom:526.777524px;}
.y92_c01332{bottom:527.125320px;}
.y93_c01332{bottom:527.743248px;}
.y94_c01332{bottom:528.442896px;}
.y95_c01332{bottom:528.786312px;}
.y96_c01332{bottom:529.047936px;}
.y97_c01332{bottom:529.575024px;}
.y98_c01332{bottom:530.098836px;}
.y99_c01332{bottom:530.723148px;}
.y9a_c01332{bottom:531.510672px;}
.y82_c01332{bottom:664.747500px;}
.y83_c01332{bottom:667.169139px;}
.y84_c01332{bottom:667.640115px;}
.y85_c01332{bottom:669.071325px;}
.y86_c01332{bottom:670.791945px;}
.y87_c01332{bottom:671.997600px;}
.y88_c01332{bottom:672.724458px;}
.y89_c01332{bottom:673.465077px;}
.y8a_c01332{bottom:674.665188px;}
.y8b_c01332{bottom:675.603213px;}
.y8c_c01332{bottom:676.335879px;}
.y8d_c01332{bottom:677.527707px;}
.y8e_c01332{bottom:678.295221px;}
.y8f_c01332{bottom:680.324985px;}
.y76_c01332{bottom:701.461500px;}
.y77_c01332{bottom:701.988696px;}
.y78_c01332{bottom:702.857112px;}
.y79_c01332{bottom:703.392432px;}
.y7a_c01332{bottom:703.573848px;}
.y7b_c01332{bottom:703.924020px;}
.y7c_c01332{bottom:704.440092px;}
.y7d_c01332{bottom:704.703900px;}
.y7e_c01332{bottom:705.053796px;}
.y7f_c01332{bottom:705.328284px;}
.y80_c01332{bottom:705.669360px;}
.y81_c01332{bottom:706.455624px;}
.y68_c01332{bottom:734.943000px;}
.y69_c01332{bottom:735.673167px;}
.y6a_c01332{bottom:736.784023px;}
.y6b_c01332{bottom:737.343927px;}
.y6c_c01332{bottom:738.648226px;}
.y6d_c01332{bottom:739.230213px;}
.y6e_c01332{bottom:739.975017px;}
.y6f_c01332{bottom:741.448356px;}
.y70_c01332{bottom:742.943625px;}
.y71_c01332{bottom:743.495368px;}
.y72_c01332{bottom:744.073708px;}
.y73_c01332{bottom:745.744061px;}
.y74_c01332{bottom:746.307840px;}
.y75_c01332{bottom:746.943045px;}
.y67_c01332{bottom:774.153000px;}
.y60_c01332{bottom:804.057000px;}
.y61_c01332{bottom:804.661500px;}
.y62_c01332{bottom:805.285500px;}
.y63_c01332{bottom:806.514000px;}
.y64_c01332{bottom:807.123000px;}
.y65_c01332{bottom:807.727500px;}
.y66_c01332{bottom:808.846500px;}
.y52_c01332{bottom:840.775500px;}
.y53_c01332{bottom:840.973500px;}
.y54_c01332{bottom:841.462500px;}
.y55_c01332{bottom:841.756500px;}
.y56_c01332{bottom:842.745000px;}
.y57_c01332{bottom:843.048000px;}
.y58_c01332{bottom:843.828000px;}
.y59_c01332{bottom:844.140000px;}
.y5a_c01332{bottom:844.419000px;}
.y5b_c01332{bottom:844.720500px;}
.y5c_c01332{bottom:845.320500px;}
.y5d_c01332{bottom:845.904000px;}
.y5e_c01332{bottom:846.199500px;}
.y5f_c01332{bottom:846.693000px;}
.y46_c01332{bottom:877.227000px;}
.y47_c01332{bottom:877.450500px;}
.y48_c01332{bottom:877.600500px;}
.y49_c01332{bottom:878.299500px;}
.y4a_c01332{bottom:878.832000px;}
.y4b_c01332{bottom:879.444000px;}
.y4c_c01332{bottom:879.679500px;}
.y4d_c01332{bottom:879.976500px;}
.y4e_c01332{bottom:880.669500px;}
.y4f_c01332{bottom:881.208000px;}
.y50_c01332{bottom:881.361000px;}
.y51_c01332{bottom:881.589000px;}
.y3b_c01332{bottom:910.711500px;}
.y3c_c01332{bottom:911.802000px;}
.y3d_c01332{bottom:912.889500px;}
.y3e_c01332{bottom:913.558500px;}
.y3f_c01332{bottom:913.879500px;}
.y40_c01332{bottom:914.430000px;}
.y41_c01332{bottom:914.656500px;}
.y42_c01332{bottom:914.980500px;}
.y43_c01332{bottom:915.636000px;}
.y44_c01332{bottom:916.740000px;}
.y45_c01332{bottom:917.061000px;}
.y2e_c01332{bottom:946.083000px;}
.y2f_c01332{bottom:946.396500px;}
.y30_c01332{bottom:946.609500px;}
.y31_c01332{bottom:947.152500px;}
.y32_c01332{bottom:948.280500px;}
.y33_c01332{bottom:948.790500px;}
.y34_c01332{bottom:949.125000px;}
.y35_c01332{bottom:949.563000px;}
.y36_c01332{bottom:949.894500px;}
.y37_c01332{bottom:950.340000px;}
.y38_c01332{bottom:951.430500px;}
.y39_c01332{bottom:951.978000px;}
.y3a_c01332{bottom:952.309500px;}
.y23_c01332{bottom:980.373000px;}
.y24_c01332{bottom:981.157500px;}
.y25_c01332{bottom:982.144500px;}
.y26_c01332{bottom:982.543500px;}
.y27_c01332{bottom:982.830000px;}
.y28_c01332{bottom:983.523000px;}
.y29_c01332{bottom:983.722500px;}
.y2a_c01332{bottom:984.315000px;}
.y2b_c01332{bottom:984.813000px;}
.y2c_c01332{bottom:985.404000px;}
.y2d_c01332{bottom:985.710000px;}
.y16_c01332{bottom:1015.741500px;}
.y17_c01332{bottom:1016.088000px;}
.y18_c01332{bottom:1016.784000px;}
.y19_c01332{bottom:1016.956500px;}
.y1a_c01332{bottom:1017.223500px;}
.y1b_c01332{bottom:1017.487500px;}
.y1c_c01332{bottom:1018.012500px;}
.y1d_c01332{bottom:1018.887000px;}
.y1e_c01332{bottom:1019.151000px;}
.y1f_c01332{bottom:1019.676000px;}
.y20_c01332{bottom:1020.033000px;}
.y21_c01332{bottom:1020.558000px;}
.y22_c01332{bottom:1020.828000px;}
.ya_c01332{bottom:1050.031500px;}
.yb_c01332{bottom:1050.408000px;}
.yc_c01332{bottom:1050.706500px;}
.yd_c01332{bottom:1051.681500px;}
.ye_c01332{bottom:1052.280000px;}
.yf_c01332{bottom:1052.571000px;}
.y10_c01332{bottom:1053.178500px;}
.y11_c01332{bottom:1054.060500px;}
.y12_c01332{bottom:1054.357500px;}
.y13_c01332{bottom:1055.050500px;}
.y14_c01332{bottom:1055.737500px;}
.y15_c01332{bottom:1056.052500px;}
.y9_c01332{bottom:1088.314500px;}
.y8_c01332{bottom:1123.869000px;}
.y7_c01332{bottom:1198.918500px;}
.h2_c01332{height:24.000000px;}
.h3_c01332{height:30.000000px;}
.h4_c01332{height:36.000000px;}
.hf_c01332{height:54.000000px;}
.h5_c01332{height:60.000000px;}
.h12_c01332{height:66.000000px;}
.h8_c01332{height:72.000000px;}
.he_c01332{height:72.002304px;}
.hd_c01332{height:72.017422px;}
.ha_c01332{height:78.000000px;}
.h9_c01332{height:84.000000px;}
.hb_c01332{height:84.012137px;}
.h6_c01332{height:90.000000px;}
.hc_c01332{height:90.002880px;}
.h7_c01332{height:96.000000px;}
.h13_c01332{height:120.000000px;}
.h10_c01332{height:132.029103px;}
.h11_c01332{height:144.000000px;}
.h1_c01332{height:1250.250000px;}
.h0_c01332{height:1250.370000px;}
.w1_c01332{width:912.000000px;}
.w0_c01332{width:912.300000px;}
.x0_c01332{left:0.000000px;}
.x8_c01332{left:1.080000px;}
.xe_c01332{left:14.310000px;}
.xc_c01332{left:16.200000px;}
.x3_c01332{left:19.440000px;}
.x2_c01332{left:21.060000px;}
.x1_c01332{left:22.140000px;}
.x9_c01332{left:23.490000px;}
.xb_c01332{left:25.110000px;}
.x7_c01332{left:27.270000px;}
.x5_c01332{left:28.620000px;}
.x4_c01332{left:30.510000px;}
.x6_c01332{left:32.670000px;}
.xd_c01332{left:34.020000px;}
.xf_c01332{left:44.550000px;}
.xa_c01332{left:57.240000px;}
.x1e_c01332{left:167.400000px;}
.x12_c01332{left:168.480000px;}
.x3f_c01332{left:171.021000px;}
.x8e_c01332{left:173.340000px;}
.x98_c01332{left:174.793500px;}
.xa9_c01332{left:176.127000px;}
.xc4_c01332{left:177.390000px;}
.xb2_c01332{left:178.468500px;}
.x53_c01332{left:192.109500px;}
.x99_c01332{left:197.031000px;}
.x1f_c01332{left:200.070000px;}
.x40_c01332{left:202.327500px;}
.xd9_c01332{left:209.520000px;}
.x28_c01332{left:211.269000px;}
.x5e_c01332{left:213.801000px;}
.xa5_c01332{left:218.430000px;}
.xb3_c01332{left:219.778500px;}
.x41_c01332{left:223.701000px;}
.x9a_c01332{left:230.217000px;}
.x71_c01332{left:236.911500px;}
.x85_c01332{left:239.314500px;}
.xaa_c01332{left:240.913500px;}
.x13_c01332{left:243.000000px;}
.x29_c01332{left:244.498500px;}
.x54_c01332{left:246.378000px;}
.xa6_c01332{left:251.640000px;}
.x20_c01332{left:254.610000px;}
.x37_c01332{left:256.099500px;}
.x5f_c01332{left:258.349500px;}
.x14_c01332{left:266.220000px;}
.xce_c01332{left:275.400000px;}
.x42_c01332{left:277.987500px;}
.x55_c01332{left:279.067500px;}
.x79_c01332{left:281.065500px;}
.x86_c01332{left:282.789000px;}
.xab_c01332{left:284.401500px;}
.x9b_c01332{left:294.801000px;}
.x15_c01332{left:297.810000px;}
.x30_c01332{left:298.986000px;}
.x7a_c01332{left:302.473500px;}
.xcf_c01332{left:308.340000px;}
.x68_c01332{left:312.868500px;}
.x8f_c01332{left:316.440000px;}
.xac_c01332{left:318.421500px;}
.x31_c01332{left:320.608500px;}
.x4e_c01332{left:323.565000px;}
.x9c_c01332{left:328.797000px;}
.xc5_c01332{left:329.940000px;}
.x90_c01332{left:337.770000px;}
.x60_c01332{left:346.051500px;}
.xc6_c01332{left:351.000000px;}
.x16_c01332{left:352.620000px;}
.x32_c01332{left:354.070500px;}
.x63_c01332{left:356.130000px;}
.x87_c01332{left:360.030000px;}
.x38_c01332{left:365.683500px;}
.x7b_c01332{left:367.528500px;}
.x91_c01332{left:369.900000px;}
.x9d_c01332{left:371.470500px;}
.xd4_c01332{left:375.300000px;}
.xd0_c01332{left:384.480000px;}
.x21_c01332{left:386.100000px;}
.x56_c01332{left:388.936500px;}
.x43_c01332{left:390.858000px;}
.xbc_c01332{left:394.470000px;}
.x4f_c01332{left:399.702000px;}
.xa7_c01332{left:404.460000px;}
.x10_c01332{left:406.620000px;}
.x39_c01332{left:409.966500px;}
.x72_c01332{left:412.378500px;}
.xad_c01332{left:415.612500px;}
.x17_c01332{left:417.960000px;}
.x2a_c01332{left:419.182500px;}
.x57_c01332{left:422.683500px;}
.x69_c01332{left:423.826500px;}
.xb4_c01332{left:426.868500px;}
.x11_c01332{left:429.570000px;}
.x61_c01332{left:432.753000px;}
.x73_c01332{left:435.055500px;}
.x3a_c01332{left:441.829500px;}
.xa8_c01332{left:443.070000px;}
.x7c_c01332{left:445.738500px;}
.x88_c01332{left:447.486000px;}
.xae_c01332{left:449.646000px;}
.xda_c01332{left:450.900000px;}
.x18_c01332{left:452.250000px;}
.x4a_c01332{left:454.014000px;}
.x6a_c01332{left:467.638500px;}
.x9e_c01332{left:470.814000px;}
.xd5_c01332{left:473.040000px;}
.x44_c01332{left:475.351500px;}
.x64_c01332{left:476.820000px;}
.x74_c01332{left:478.827000px;}
.x92_c01332{left:480.330000px;}
.xdb_c01332{left:483.030000px;}
.x4b_c01332{left:486.151500px;}
.x50_c01332{left:487.182000px;}
.x89_c01332{left:490.413000px;}
.xbd_c01332{left:493.560000px;}
.x22_c01332{left:495.720000px;}
.x7d_c01332{left:500.541000px;}
.xd6_c01332{left:505.710000px;}
.x58_c01332{left:509.329500px;}
.x62_c01332{left:512.706000px;}
.xaf_c01332{left:514.705500px;}
.x2b_c01332{left:519.087000px;}
.x51_c01332{left:520.911000px;}
.x8a_c01332{left:523.116000px;}
.xc7_c01332{left:525.960000px;}
.x19_c01332{left:528.660000px;}
.x7e_c01332{left:533.580000px;}
.xb5_c01332{left:536.218500px;}
.xd1_c01332{left:538.380000px;}
.x3b_c01332{left:540.937500px;}
.x59_c01332{left:543.925500px;}
.x9f_c01332{left:546.931500px;}
.xdc_c01332{left:548.910000px;}
.x45_c01332{left:552.291000px;}
.x6b_c01332{left:554.305500px;}
.x33_c01332{left:561.988500px;}
.x4c_c01332{left:563.887500px;}
.x7f_c01332{left:567.244500px;}
.x93_c01332{left:568.620000px;}
.xb6_c01332{left:570.238500px;}
.xd7_c01332{left:571.860000px;}
.x5a_c01332{left:574.965000px;}
.x75_c01332{left:576.312000px;}
.xa0_c01332{left:580.369500px;}
.x23_c01332{left:582.660000px;}
.x8b_c01332{left:589.002000px;}
.xb0_c01332{left:591.906000px;}
.x34_c01332{left:594.930000px;}
.x46_c01332{left:596.850000px;}
.xbe_c01332{left:603.180000px;}
.x3c_c01332{left:606.798000px;}
.x5b_c01332{left:608.427000px;}
.x94_c01332{left:611.820000px;}
.xa1_c01332{left:613.359000px;}
.x2c_c01332{left:617.091000px;}
.x65_c01332{left:619.650000px;}
.x80_c01332{left:621.795000px;}
.xb7_c01332{left:623.968500px;}
.xb8_c01332{left:627.750000px;}
.xb1_c01332{left:635.667000px;}
.x6c_c01332{left:642.262500px;}
.x24_c01332{left:649.080000px;}
.x76_c01332{left:654.360000px;}
.xb9_c01332{left:656.640000px;}
.xbf_c01332{left:658.260000px;}
.xd8_c01332{left:659.340000px;}
.x35_c01332{left:660.516000px;}
.x3d_c01332{left:662.175000px;}
.x81_c01332{left:664.432500px;}
.xc8_c01332{left:669.600000px;}
.x1a_c01332{left:671.220000px;}
.x5c_c01332{left:675.133500px;}
.xc0_c01332{left:679.590000px;}
.x25_c01332{left:693.630000px;}
.x77_c01332{left:696.994500px;}
.xa2_c01332{left:699.751500px;}
.x1b_c01332{left:704.160000px;}
.x47_c01332{left:705.919500px;}
.x6d_c01332{left:708.738000px;}
.x66_c01332{left:718.200000px;}
.x95_c01332{left:720.630000px;}
.xc9_c01332{left:724.410000px;}
.x2d_c01332{left:726.978000px;}
.x8c_c01332{left:732.517500px;}
.x1c_c01332{left:737.100000px;}
.x52_c01332{left:739.345500px;}
.xca_c01332{left:746.010000px;}
.x82_c01332{left:751.909500px;}
.x48_c01332{left:760.729500px;}
.x3e_c01332{left:761.794500px;}
.x67_c01332{left:764.370000px;}
.xa3_c01332{left:766.905000px;}
.xdd_c01332{left:768.960000px;}
.x1d_c01332{left:770.040000px;}
.x4d_c01332{left:772.341000px;}
.xc1_c01332{left:777.870000px;}
.x26_c01332{left:781.920000px;}
.x83_c01332{left:786.796500px;}
.x49_c01332{left:793.933500px;}
.x78_c01332{left:795.277500px;}
.x96_c01332{left:799.200000px;}
.x2e_c01332{left:803.379000px;}
.x36_c01332{left:804.445500px;}
.x6e_c01332{left:806.994000px;}
.x27_c01332{left:815.670000px;}
.xba_c01332{left:820.530000px;}
.x5d_c01332{left:827.680500px;}
.x8d_c01332{left:830.958000px;}
.xa4_c01332{left:833.835000px;}
.x2f_c01332{left:838.417500px;}
.x6f_c01332{left:840.157500px;}
.xc2_c01332{left:842.940000px;}
.xcb_c01332{left:864.270000px;}
.xbb_c01332{left:869.400000px;}
.xcc_c01332{left:874.800000px;}
.x70_c01332{left:877.522500px;}
.x84_c01332{left:879.058500px;}
.x97_c01332{left:886.680000px;}
.xd2_c01332{left:888.030000px;}
.xcd_c01332{left:897.210000px;}
.xd3_c01332{left:902.340000px;}
.xc3_c01332{left:905.850000px;}
@media print{
.v0_c01332{vertical-align:0.000000pt;}
.ls0_c01332{letter-spacing:0.000000pt;}
.ws0_c01332{word-spacing:0.000000pt;}
.fs0_c01332{font-size:21.333333pt;}
.fs1_c01332{font-size:26.666667pt;}
.fs2_c01332{font-size:32.000000pt;}
.fsd_c01332{font-size:48.000000pt;}
.fs3_c01332{font-size:53.333333pt;}
.fs10_c01332{font-size:58.666667pt;}
.fs6_c01332{font-size:64.000000pt;}
.fsc_c01332{font-size:64.002048pt;}
.fsb_c01332{font-size:64.015486pt;}
.fs8_c01332{font-size:69.333333pt;}
.fs7_c01332{font-size:74.666667pt;}
.fs9_c01332{font-size:74.677455pt;}
.fs4_c01332{font-size:80.000000pt;}
.fsa_c01332{font-size:80.002560pt;}
.fs5_c01332{font-size:85.333333pt;}
.fs11_c01332{font-size:106.666667pt;}
.fse_c01332{font-size:117.359202pt;}
.fsf_c01332{font-size:128.000000pt;}
.y0_c01332{bottom:0.000000pt;}
.ybd_c01332{bottom:45.582667pt;}
.ybc_c01332{bottom:77.490667pt;}
.ybb_c01332{bottom:109.602667pt;}
.y6_c01332{bottom:141.125333pt;}
.y5_c01332{bottom:152.880000pt;}
.y4_c01332{bottom:160.202667pt;}
.y3_c01332{bottom:168.001333pt;}
.ybe_c01332{bottom:169.744000pt;}
.yba_c01332{bottom:187.440000pt;}
.yb9_c01332{bottom:219.681333pt;}
.yb8_c01332{bottom:251.484000pt;}
.yb6_c01332{bottom:281.741333pt;}
.yac_c01332{bottom:311.760000pt;}
.yad_c01332{bottom:312.105333pt;}
.yae_c01332{bottom:312.337333pt;}
.yaf_c01332{bottom:312.518667pt;}
.yb0_c01332{bottom:313.037333pt;}
.yb1_c01332{bottom:313.218667pt;}
.yb2_c01332{bottom:313.565333pt;}
.yb3_c01332{bottom:313.977333pt;}
.yb4_c01332{bottom:314.210667pt;}
.yb5_c01332{bottom:314.732000pt;}
.y1_c01332{bottom:334.320000pt;}
.yab_c01332{bottom:343.797333pt;}
.yb7_c01332{bottom:344.776000pt;}
.y2_c01332{bottom:363.360000pt;}
.y9d_c01332{bottom:366.006667pt;}
.y9e_c01332{bottom:366.421767pt;}
.y9f_c01332{bottom:367.041239pt;}
.ya0_c01332{bottom:368.246807pt;}
.ya1_c01332{bottom:368.881399pt;}
.ya2_c01332{bottom:369.677971pt;}
.ya3_c01332{bottom:371.532383pt;}
.ya4_c01332{bottom:372.953243pt;}
.ya5_c01332{bottom:373.577419pt;}
.ya6_c01332{bottom:374.193223pt;}
.ya7_c01332{bottom:375.805883pt;}
.ya8_c01332{bottom:377.059415pt;}
.ya9_c01332{bottom:377.660099pt;}
.yaa_c01332{bottom:378.308775pt;}
.y9c_c01332{bottom:407.353333pt;}
.y9b_c01332{bottom:435.846667pt;}
.y90_c01332{bottom:467.754667pt;}
.y91_c01332{bottom:468.246688pt;}
.y92_c01332{bottom:468.555840pt;}
.y93_c01332{bottom:469.105109pt;}
.y94_c01332{bottom:469.727019pt;}
.y95_c01332{bottom:470.032277pt;}
.y96_c01332{bottom:470.264832pt;}
.y97_c01332{bottom:470.733355pt;}
.y98_c01332{bottom:471.198965pt;}
.y99_c01332{bottom:471.753909pt;}
.y9a_c01332{bottom:472.453931pt;}
.y82_c01332{bottom:590.886667pt;}
.y83_c01332{bottom:593.039235pt;}
.y84_c01332{bottom:593.457880pt;}
.y85_c01332{bottom:594.730067pt;}
.y86_c01332{bottom:596.259507pt;}
.y87_c01332{bottom:597.331200pt;}
.y88_c01332{bottom:597.977296pt;}
.y89_c01332{bottom:598.635624pt;}
.y8a_c01332{bottom:599.702389pt;}
.y8b_c01332{bottom:600.536189pt;}
.y8c_c01332{bottom:601.187448pt;}
.y8d_c01332{bottom:602.246851pt;}
.y8e_c01332{bottom:602.929085pt;}
.y8f_c01332{bottom:604.733320pt;}
.y76_c01332{bottom:623.521333pt;}
.y77_c01332{bottom:623.989952pt;}
.y78_c01332{bottom:624.761877pt;}
.y79_c01332{bottom:625.237717pt;}
.y7a_c01332{bottom:625.398976pt;}
.y7b_c01332{bottom:625.710240pt;}
.y7c_c01332{bottom:626.168971pt;}
.y7d_c01332{bottom:626.403467pt;}
.y7e_c01332{bottom:626.714485pt;}
.y7f_c01332{bottom:626.958475pt;}
.y80_c01332{bottom:627.261653pt;}
.y81_c01332{bottom:627.960555pt;}
.y68_c01332{bottom:653.282667pt;}
.y69_c01332{bottom:653.931704pt;}
.y6a_c01332{bottom:654.919132pt;}
.y6b_c01332{bottom:655.416824pt;}
.y6c_c01332{bottom:656.576201pt;}
.y6d_c01332{bottom:657.093523pt;}
.y6e_c01332{bottom:657.755571pt;}
.y6f_c01332{bottom:659.065205pt;}
.y70_c01332{bottom:660.394333pt;}
.y71_c01332{bottom:660.884772pt;}
.y72_c01332{bottom:661.398852pt;}
.y73_c01332{bottom:662.883609pt;}
.y74_c01332{bottom:663.384747pt;}
.y75_c01332{bottom:663.949373pt;}
.y67_c01332{bottom:688.136000pt;}
.y60_c01332{bottom:714.717333pt;}
.y61_c01332{bottom:715.254667pt;}
.y62_c01332{bottom:715.809333pt;}
.y63_c01332{bottom:716.901333pt;}
.y64_c01332{bottom:717.442667pt;}
.y65_c01332{bottom:717.980000pt;}
.y66_c01332{bottom:718.974667pt;}
.y52_c01332{bottom:747.356000pt;}
.y53_c01332{bottom:747.532000pt;}
.y54_c01332{bottom:747.966667pt;}
.y55_c01332{bottom:748.228000pt;}
.y56_c01332{bottom:749.106667pt;}
.y57_c01332{bottom:749.376000pt;}
.y58_c01332{bottom:750.069333pt;}
.y59_c01332{bottom:750.346667pt;}
.y5a_c01332{bottom:750.594667pt;}
.y5b_c01332{bottom:750.862667pt;}
.y5c_c01332{bottom:751.396000pt;}
.y5d_c01332{bottom:751.914667pt;}
.y5e_c01332{bottom:752.177333pt;}
.y5f_c01332{bottom:752.616000pt;}
.y46_c01332{bottom:779.757333pt;}
.y47_c01332{bottom:779.956000pt;}
.y48_c01332{bottom:780.089333pt;}
.y49_c01332{bottom:780.710667pt;}
.y4a_c01332{bottom:781.184000pt;}
.y4b_c01332{bottom:781.728000pt;}
.y4c_c01332{bottom:781.937333pt;}
.y4d_c01332{bottom:782.201333pt;}
.y4e_c01332{bottom:782.817333pt;}
.y4f_c01332{bottom:783.296000pt;}
.y50_c01332{bottom:783.432000pt;}
.y51_c01332{bottom:783.634667pt;}
.y3b_c01332{bottom:809.521333pt;}
.y3c_c01332{bottom:810.490667pt;}
.y3d_c01332{bottom:811.457333pt;}
.y3e_c01332{bottom:812.052000pt;}
.y3f_c01332{bottom:812.337333pt;}
.y40_c01332{bottom:812.826667pt;}
.y41_c01332{bottom:813.028000pt;}
.y42_c01332{bottom:813.316000pt;}
.y43_c01332{bottom:813.898667pt;}
.y44_c01332{bottom:814.880000pt;}
.y45_c01332{bottom:815.165333pt;}
.y2e_c01332{bottom:840.962667pt;}
.y2f_c01332{bottom:841.241333pt;}
.y30_c01332{bottom:841.430667pt;}
.y31_c01332{bottom:841.913333pt;}
.y32_c01332{bottom:842.916000pt;}
.y33_c01332{bottom:843.369333pt;}
.y34_c01332{bottom:843.666667pt;}
.y35_c01332{bottom:844.056000pt;}
.y36_c01332{bottom:844.350667pt;}
.y37_c01332{bottom:844.746667pt;}
.y38_c01332{bottom:845.716000pt;}
.y39_c01332{bottom:846.202667pt;}
.y3a_c01332{bottom:846.497333pt;}
.y23_c01332{bottom:871.442667pt;}
.y24_c01332{bottom:872.140000pt;}
.y25_c01332{bottom:873.017333pt;}
.y26_c01332{bottom:873.372000pt;}
.y27_c01332{bottom:873.626667pt;}
.y28_c01332{bottom:874.242667pt;}
.y29_c01332{bottom:874.420000pt;}
.y2a_c01332{bottom:874.946667pt;}
.y2b_c01332{bottom:875.389333pt;}
.y2c_c01332{bottom:875.914667pt;}
.y2d_c01332{bottom:876.186667pt;}
.y16_c01332{bottom:902.881333pt;}
.y17_c01332{bottom:903.189333pt;}
.y18_c01332{bottom:903.808000pt;}
.y19_c01332{bottom:903.961333pt;}
.y1a_c01332{bottom:904.198667pt;}
.y1b_c01332{bottom:904.433333pt;}
.y1c_c01332{bottom:904.900000pt;}
.y1d_c01332{bottom:905.677333pt;}
.y1e_c01332{bottom:905.912000pt;}
.y1f_c01332{bottom:906.378667pt;}
.y20_c01332{bottom:906.696000pt;}
.y21_c01332{bottom:907.162667pt;}
.y22_c01332{bottom:907.402667pt;}
.ya_c01332{bottom:933.361333pt;}
.yb_c01332{bottom:933.696000pt;}
.yc_c01332{bottom:933.961333pt;}
.yd_c01332{bottom:934.828000pt;}
.ye_c01332{bottom:935.360000pt;}
.yf_c01332{bottom:935.618667pt;}
.y10_c01332{bottom:936.158667pt;}
.y11_c01332{bottom:936.942667pt;}
.y12_c01332{bottom:937.206667pt;}
.y13_c01332{bottom:937.822667pt;}
.y14_c01332{bottom:938.433333pt;}
.y15_c01332{bottom:938.713333pt;}
.y9_c01332{bottom:967.390667pt;}
.y8_c01332{bottom:998.994667pt;}
.y7_c01332{bottom:1065.705333pt;}
.h2_c01332{height:21.333333pt;}
.h3_c01332{height:26.666667pt;}
.h4_c01332{height:32.000000pt;}
.hf_c01332{height:48.000000pt;}
.h5_c01332{height:53.333333pt;}
.h12_c01332{height:58.666667pt;}
.h8_c01332{height:64.000000pt;}
.he_c01332{height:64.002048pt;}
.hd_c01332{height:64.015486pt;}
.ha_c01332{height:69.333333pt;}
.h9_c01332{height:74.666667pt;}
.hb_c01332{height:74.677455pt;}
.h6_c01332{height:80.000000pt;}
.hc_c01332{height:80.002560pt;}
.h7_c01332{height:85.333333pt;}
.h13_c01332{height:106.666667pt;}
.h10_c01332{height:117.359202pt;}
.h11_c01332{height:128.000000pt;}
.h1_c01332{height:1111.333333pt;}
.h0_c01332{height:1111.440000pt;}
.w1_c01332{width:810.666667pt;}
.w0_c01332{width:810.933333pt;}
.x0_c01332{left:0.000000pt;}
.x8_c01332{left:0.960000pt;}
.xe_c01332{left:12.720000pt;}
.xc_c01332{left:14.400000pt;}
.x3_c01332{left:17.280000pt;}
.x2_c01332{left:18.720000pt;}
.x1_c01332{left:19.680000pt;}
.x9_c01332{left:20.880000pt;}
.xb_c01332{left:22.320000pt;}
.x7_c01332{left:24.240000pt;}
.x5_c01332{left:25.440000pt;}
.x4_c01332{left:27.120000pt;}
.x6_c01332{left:29.040000pt;}
.xd_c01332{left:30.240000pt;}
.xf_c01332{left:39.600000pt;}
.xa_c01332{left:50.880000pt;}
.x1e_c01332{left:148.800000pt;}
.x12_c01332{left:149.760000pt;}
.x3f_c01332{left:152.018667pt;}
.x8e_c01332{left:154.080000pt;}
.x98_c01332{left:155.372000pt;}
.xa9_c01332{left:156.557333pt;}
.xc4_c01332{left:157.680000pt;}
.xb2_c01332{left:158.638667pt;}
.x53_c01332{left:170.764000pt;}
.x99_c01332{left:175.138667pt;}
.x1f_c01332{left:177.840000pt;}
.x40_c01332{left:179.846667pt;}
.xd9_c01332{left:186.240000pt;}
.x28_c01332{left:187.794667pt;}
.x5e_c01332{left:190.045333pt;}
.xa5_c01332{left:194.160000pt;}
.xb3_c01332{left:195.358667pt;}
.x41_c01332{left:198.845333pt;}
.x9a_c01332{left:204.637333pt;}
.x71_c01332{left:210.588000pt;}
.x85_c01332{left:212.724000pt;}
.xaa_c01332{left:214.145333pt;}
.x13_c01332{left:216.000000pt;}
.x29_c01332{left:217.332000pt;}
.x54_c01332{left:219.002667pt;}
.xa6_c01332{left:223.680000pt;}
.x20_c01332{left:226.320000pt;}
.x37_c01332{left:227.644000pt;}
.x5f_c01332{left:229.644000pt;}
.x14_c01332{left:236.640000pt;}
.xce_c01332{left:244.800000pt;}
.x42_c01332{left:247.100000pt;}
.x55_c01332{left:248.060000pt;}
.x79_c01332{left:249.836000pt;}
.x86_c01332{left:251.368000pt;}
.xab_c01332{left:252.801333pt;}
.x9b_c01332{left:262.045333pt;}
.x15_c01332{left:264.720000pt;}
.x30_c01332{left:265.765333pt;}
.x7a_c01332{left:268.865333pt;}
.xcf_c01332{left:274.080000pt;}
.x68_c01332{left:278.105333pt;}
.x8f_c01332{left:281.280000pt;}
.xac_c01332{left:283.041333pt;}
.x31_c01332{left:284.985333pt;}
.x4e_c01332{left:287.613333pt;}
.x9c_c01332{left:292.264000pt;}
.xc5_c01332{left:293.280000pt;}
.x90_c01332{left:300.240000pt;}
.x60_c01332{left:307.601333pt;}
.xc6_c01332{left:312.000000pt;}
.x16_c01332{left:313.440000pt;}
.x32_c01332{left:314.729333pt;}
.x63_c01332{left:316.560000pt;}
.x87_c01332{left:320.026667pt;}
.x38_c01332{left:325.052000pt;}
.x7b_c01332{left:326.692000pt;}
.x91_c01332{left:328.800000pt;}
.x9d_c01332{left:330.196000pt;}
.xd4_c01332{left:333.600000pt;}
.xd0_c01332{left:341.760000pt;}
.x21_c01332{left:343.200000pt;}
.x56_c01332{left:345.721333pt;}
.x43_c01332{left:347.429333pt;}
.xbc_c01332{left:350.640000pt;}
.x4f_c01332{left:355.290667pt;}
.xa7_c01332{left:359.520000pt;}
.x10_c01332{left:361.440000pt;}
.x39_c01332{left:364.414667pt;}
.x72_c01332{left:366.558667pt;}
.xad_c01332{left:369.433333pt;}
.x17_c01332{left:371.520000pt;}
.x2a_c01332{left:372.606667pt;}
.x57_c01332{left:375.718667pt;}
.x69_c01332{left:376.734667pt;}
.xb4_c01332{left:379.438667pt;}
.x11_c01332{left:381.840000pt;}
.x61_c01332{left:384.669333pt;}
.x73_c01332{left:386.716000pt;}
.x3a_c01332{left:392.737333pt;}
.xa8_c01332{left:393.840000pt;}
.x7c_c01332{left:396.212000pt;}
.x88_c01332{left:397.765333pt;}
.xae_c01332{left:399.685333pt;}
.xda_c01332{left:400.800000pt;}
.x18_c01332{left:402.000000pt;}
.x4a_c01332{left:403.568000pt;}
.x6a_c01332{left:415.678667pt;}
.x9e_c01332{left:418.501333pt;}
.xd5_c01332{left:420.480000pt;}
.x44_c01332{left:422.534667pt;}
.x64_c01332{left:423.840000pt;}
.x74_c01332{left:425.624000pt;}
.x92_c01332{left:426.960000pt;}
.xdb_c01332{left:429.360000pt;}
.x4b_c01332{left:432.134667pt;}
.x50_c01332{left:433.050667pt;}
.x89_c01332{left:435.922667pt;}
.xbd_c01332{left:438.720000pt;}
.x22_c01332{left:440.640000pt;}
.x7d_c01332{left:444.925333pt;}
.xd6_c01332{left:449.520000pt;}
.x58_c01332{left:452.737333pt;}
.x62_c01332{left:455.738667pt;}
.xaf_c01332{left:457.516000pt;}
.x2b_c01332{left:461.410667pt;}
.x51_c01332{left:463.032000pt;}
.x8a_c01332{left:464.992000pt;}
.xc7_c01332{left:467.520000pt;}
.x19_c01332{left:469.920000pt;}
.x7e_c01332{left:474.293333pt;}
.xb5_c01332{left:476.638667pt;}
.xd1_c01332{left:478.560000pt;}
.x3b_c01332{left:480.833333pt;}
.x59_c01332{left:483.489333pt;}
.x9f_c01332{left:486.161333pt;}
.xdc_c01332{left:487.920000pt;}
.x45_c01332{left:490.925333pt;}
.x6b_c01332{left:492.716000pt;}
.x33_c01332{left:499.545333pt;}
.x4c_c01332{left:501.233333pt;}
.x7f_c01332{left:504.217333pt;}
.x93_c01332{left:505.440000pt;}
.xb6_c01332{left:506.878667pt;}
.xd7_c01332{left:508.320000pt;}
.x5a_c01332{left:511.080000pt;}
.x75_c01332{left:512.277333pt;}
.xa0_c01332{left:515.884000pt;}
.x23_c01332{left:517.920000pt;}
.x8b_c01332{left:523.557333pt;}
.xb0_c01332{left:526.138667pt;}
.x34_c01332{left:528.826667pt;}
.x46_c01332{left:530.533333pt;}
.xbe_c01332{left:536.160000pt;}
.x3c_c01332{left:539.376000pt;}
.x5b_c01332{left:540.824000pt;}
.x94_c01332{left:543.840000pt;}
.xa1_c01332{left:545.208000pt;}
.x2c_c01332{left:548.525333pt;}
.x65_c01332{left:550.800000pt;}
.x80_c01332{left:552.706667pt;}
.xb7_c01332{left:554.638667pt;}
.xb8_c01332{left:558.000000pt;}
.xb1_c01332{left:565.037333pt;}
.x6c_c01332{left:570.900000pt;}
.x24_c01332{left:576.960000pt;}
.x76_c01332{left:581.653333pt;}
.xb9_c01332{left:583.680000pt;}
.xbf_c01332{left:585.120000pt;}
.xd8_c01332{left:586.080000pt;}
.x35_c01332{left:587.125333pt;}
.x3d_c01332{left:588.600000pt;}
.x81_c01332{left:590.606667pt;}
.xc8_c01332{left:595.200000pt;}
.x1a_c01332{left:596.640000pt;}
.x5c_c01332{left:600.118667pt;}
.xc0_c01332{left:604.080000pt;}
.x25_c01332{left:616.560000pt;}
.x77_c01332{left:619.550667pt;}
.xa2_c01332{left:622.001333pt;}
.x1b_c01332{left:625.920000pt;}
.x47_c01332{left:627.484000pt;}
.x6d_c01332{left:629.989333pt;}
.x66_c01332{left:638.400000pt;}
.x95_c01332{left:640.560000pt;}
.xc9_c01332{left:643.920000pt;}
.x2d_c01332{left:646.202667pt;}
.x8c_c01332{left:651.126667pt;}
.x1c_c01332{left:655.200000pt;}
.x52_c01332{left:657.196000pt;}
.xca_c01332{left:663.120000pt;}
.x82_c01332{left:668.364000pt;}
.x48_c01332{left:676.204000pt;}
.x3e_c01332{left:677.150667pt;}
.x67_c01332{left:679.440000pt;}
.xa3_c01332{left:681.693333pt;}
.xdd_c01332{left:683.520000pt;}
.x1d_c01332{left:684.480000pt;}
.x4d_c01332{left:686.525333pt;}
.xc1_c01332{left:691.440000pt;}
.x26_c01332{left:695.040000pt;}
.x83_c01332{left:699.374667pt;}
.x49_c01332{left:705.718667pt;}
.x78_c01332{left:706.913333pt;}
.x96_c01332{left:710.400000pt;}
.x2e_c01332{left:714.114667pt;}
.x36_c01332{left:715.062667pt;}
.x6e_c01332{left:717.328000pt;}
.x27_c01332{left:725.040000pt;}
.xba_c01332{left:729.360000pt;}
.x5d_c01332{left:735.716000pt;}
.x8d_c01332{left:738.629333pt;}
.xa4_c01332{left:741.186667pt;}
.x2f_c01332{left:745.260000pt;}
.x6f_c01332{left:746.806667pt;}
.xc2_c01332{left:749.280000pt;}
.xcb_c01332{left:768.240000pt;}
.xbb_c01332{left:772.800000pt;}
.xcc_c01332{left:777.600000pt;}
.x70_c01332{left:780.020000pt;}
.x84_c01332{left:781.385333pt;}
.x97_c01332{left:788.160000pt;}
.xd2_c01332{left:789.360000pt;}
.xcd_c01332{left:797.520000pt;}
.xd3_c01332{left:802.080000pt;}
.xc3_c01332{left:805.200000pt;}
}





/* 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_c01333 {
    display:none;
  }
  .loading-indicator_c01333.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01333 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_c01333 { 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_c01333" -> "#page-container .classname_c01333")
 */
.pf_c01333 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01333 { /* 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_c01333.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01333 { /* 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_c01333 { /* 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_c01333 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01333 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01333 {overflow:visible;}
  }
}
.c_c01333 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01333 { /* 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_c01333:after { /* webkit #35443 */
  content: '';
}
.t_c01333:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01333 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 */
}
.__c01333 { /* 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_c01333 { /* info for Javascript */
  display:none;
}
.l_c01333 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01333 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01333 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01333: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_c01333 {
    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_c01333.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01333.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_c01333 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01333{font-family:sans-serif;visibility:hidden;}
.sc__c01333{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01333{-webkit-text-stroke:0px transparent;}
}
.y0_c01333{bottom:0.000000px;}
.h1_c01333{height:1250.250000px;}
.h0_c01333{height:1250.370000px;}
.w1_c01333{width:912.000000px;}
.w0_c01333{width:912.300000px;}
.x0_c01333{left:0.000000px;}
@media print{
.y0_c01333{bottom:0.000000pt;}
.h1_c01333{height:1111.333333pt;}
.h0_c01333{height:1111.440000pt;}
.w1_c01333{width:810.666667pt;}
.w0_c01333{width:810.933333pt;}
.x0_c01333{left:0.000000pt;}
}





/* 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_c01334 {
    display:none;
  }
  .loading-indicator_c01334.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01334 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_c01334 { 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_c01334" -> "#page-container .classname_c01334")
 */
.pf_c01334 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01334 { /* 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_c01334.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01334 { /* 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_c01334 { /* 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_c01334 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01334 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01334 {overflow:visible;}
  }
}
.c_c01334 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01334 { /* 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_c01334:after { /* webkit #35443 */
  content: '';
}
.t_c01334:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01334 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 */
}
.__c01334 { /* 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_c01334 { /* info for Javascript */
  display:none;
}
.l_c01334 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01334 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01334 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01334: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_c01334 {
    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_c01334.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01334.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_c01334 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01334{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01334;src:url('chunks/assets/font_c605e72f209fc835e906f064.woff2')format("woff");}.ff1_c01334{font-family:ff1_c01334;line-height:1.000000;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;}
.me_c01334{transform:matrix(0.010604,0.000170,-0.003999,0.249968,0,0);-ms-transform:matrix(0.010604,0.000170,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.010604,0.000170,-0.003999,0.249968,0,0);}
.m31_c01334{transform:matrix(0.011589,0.000185,-0.003999,0.249968,0,0);-ms-transform:matrix(0.011589,0.000185,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.011589,0.000185,-0.003999,0.249968,0,0);}
.m93_c01334{transform:matrix(0.013518,0.000216,-0.003999,0.249968,0,0);-ms-transform:matrix(0.013518,0.000216,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.013518,0.000216,-0.003999,0.249968,0,0);}
.mbe_c01334{transform:matrix(0.021862,0.000350,-0.003999,0.249968,0,0);-ms-transform:matrix(0.021862,0.000350,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.021862,0.000350,-0.003999,0.249968,0,0);}
.m59_c01334{transform:matrix(0.122379,0.001958,-0.003999,0.249968,0,0);-ms-transform:matrix(0.122379,0.001958,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.122379,0.001958,-0.003999,0.249968,0,0);}
.md9_c01334{transform:matrix(0.162143,0.001946,-0.003000,0.249982,0,0);-ms-transform:matrix(0.162143,0.001946,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.162143,0.001946,-0.003000,0.249982,0,0);}
.m132_c01334{transform:matrix(0.165690,0.003645,-0.005499,0.249940,0,0);-ms-transform:matrix(0.165690,0.003645,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.165690,0.003645,-0.005499,0.249940,0,0);}
.ma2_c01334{transform:matrix(0.169838,0.002717,-0.003999,0.249968,0,0);-ms-transform:matrix(0.169838,0.002717,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.169838,0.002717,-0.003999,0.249968,0,0);}
.ma6_c01334{transform:matrix(0.170308,0.002725,-0.003999,0.249968,0,0);-ms-transform:matrix(0.170308,0.002725,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.170308,0.002725,-0.003999,0.249968,0,0);}
.ma5_c01334{transform:matrix(0.171533,0.002745,-0.003999,0.249968,0,0);-ms-transform:matrix(0.171533,0.002745,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.171533,0.002745,-0.003999,0.249968,0,0);}
.ma4_c01334{transform:matrix(0.171773,0.002748,-0.003999,0.249968,0,0);-ms-transform:matrix(0.171773,0.002748,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.171773,0.002748,-0.003999,0.249968,0,0);}
.m0_c01334{transform:matrix(0.173865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173865,0.000000,0.000000,0.250000,0,0);}
.mf5_c01334{transform:matrix(0.178632,0.002144,-0.003000,0.249982,0,0);-ms-transform:matrix(0.178632,0.002144,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.178632,0.002144,-0.003000,0.249982,0,0);}
.ma1_c01334{transform:matrix(0.178902,0.002862,-0.003999,0.249968,0,0);-ms-transform:matrix(0.178902,0.002862,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.178902,0.002862,-0.003999,0.249968,0,0);}
.m15_c01334{transform:matrix(0.186021,0.002976,-0.003999,0.249968,0,0);-ms-transform:matrix(0.186021,0.002976,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.186021,0.002976,-0.003999,0.249968,0,0);}
.m103_c01334{transform:matrix(0.187102,0.002245,-0.003000,0.249982,0,0);-ms-transform:matrix(0.187102,0.002245,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.187102,0.002245,-0.003000,0.249982,0,0);}
.mf7_c01334{transform:matrix(0.188331,0.002260,-0.003000,0.249982,0,0);-ms-transform:matrix(0.188331,0.002260,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.188331,0.002260,-0.003000,0.249982,0,0);}
.m146_c01334{transform:matrix(0.188969,0.002835,-0.003750,0.249972,0,0);-ms-transform:matrix(0.188969,0.002835,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.188969,0.002835,-0.003750,0.249972,0,0);}
.m39_c01334{transform:matrix(0.191111,0.003058,-0.003999,0.249968,0,0);-ms-transform:matrix(0.191111,0.003058,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.191111,0.003058,-0.003999,0.249968,0,0);}
.m17_c01334{transform:matrix(0.191735,0.003068,-0.003999,0.249968,0,0);-ms-transform:matrix(0.191735,0.003068,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.191735,0.003068,-0.003999,0.249968,0,0);}
.m1e_c01334{transform:matrix(0.192073,0.002113,-0.002750,0.249985,0,0);-ms-transform:matrix(0.192073,0.002113,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.192073,0.002113,-0.002750,0.249985,0,0);}
.mef_c01334{transform:matrix(0.192651,0.002312,-0.003000,0.249982,0,0);-ms-transform:matrix(0.192651,0.002312,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.192651,0.002312,-0.003000,0.249982,0,0);}
.m16_c01334{transform:matrix(0.192775,0.003084,-0.003999,0.249968,0,0);-ms-transform:matrix(0.192775,0.003084,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.192775,0.003084,-0.003999,0.249968,0,0);}
.mf3_c01334{transform:matrix(0.193201,0.002318,-0.003000,0.249982,0,0);-ms-transform:matrix(0.193201,0.002318,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.193201,0.002318,-0.003000,0.249982,0,0);}
.m110_c01334{transform:matrix(0.193556,0.002323,-0.003000,0.249982,0,0);-ms-transform:matrix(0.193556,0.002323,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.193556,0.002323,-0.003000,0.249982,0,0);}
.ma3_c01334{transform:matrix(0.193745,0.003100,-0.003999,0.249968,0,0);-ms-transform:matrix(0.193745,0.003100,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.193745,0.003100,-0.003999,0.249968,0,0);}
.ma7_c01334{transform:matrix(0.193965,0.003103,-0.003999,0.249968,0,0);-ms-transform:matrix(0.193965,0.003103,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.193965,0.003103,-0.003999,0.249968,0,0);}
.m10e_c01334{transform:matrix(0.194021,0.002328,-0.003000,0.249982,0,0);-ms-transform:matrix(0.194021,0.002328,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.194021,0.002328,-0.003000,0.249982,0,0);}
.mfb_c01334{transform:matrix(0.194141,0.002330,-0.003000,0.249982,0,0);-ms-transform:matrix(0.194141,0.002330,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.194141,0.002330,-0.003000,0.249982,0,0);}
.m44_c01334{transform:matrix(0.195555,0.003129,-0.003999,0.249968,0,0);-ms-transform:matrix(0.195555,0.003129,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.195555,0.003129,-0.003999,0.249968,0,0);}
.m3e_c01334{transform:matrix(0.196930,0.003151,-0.003999,0.249968,0,0);-ms-transform:matrix(0.196930,0.003151,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.196930,0.003151,-0.003999,0.249968,0,0);}
.md1_c01334{transform:matrix(0.197406,0.002369,-0.003000,0.249982,0,0);-ms-transform:matrix(0.197406,0.002369,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.197406,0.002369,-0.003000,0.249982,0,0);}
.m19_c01334{transform:matrix(0.197560,0.003161,-0.003999,0.249968,0,0);-ms-transform:matrix(0.197560,0.003161,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.197560,0.003161,-0.003999,0.249968,0,0);}
.m111_c01334{transform:matrix(0.197641,0.002372,-0.003000,0.249982,0,0);-ms-transform:matrix(0.197641,0.002372,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.197641,0.002372,-0.003000,0.249982,0,0);}
.m65_c01334{transform:matrix(0.198350,0.003174,-0.003999,0.249968,0,0);-ms-transform:matrix(0.198350,0.003174,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.198350,0.003174,-0.003999,0.249968,0,0);}
.mfa_c01334{transform:matrix(0.198491,0.002382,-0.003000,0.249982,0,0);-ms-transform:matrix(0.198491,0.002382,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.198491,0.002382,-0.003000,0.249982,0,0);}
.m101_c01334{transform:matrix(0.199216,0.002391,-0.003000,0.249982,0,0);-ms-transform:matrix(0.199216,0.002391,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.199216,0.002391,-0.003000,0.249982,0,0);}
.mf0_c01334{transform:matrix(0.199706,0.002396,-0.003000,0.249982,0,0);-ms-transform:matrix(0.199706,0.002396,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.199706,0.002396,-0.003000,0.249982,0,0);}
.m5c_c01334{transform:matrix(0.199894,0.003198,-0.003999,0.249968,0,0);-ms-transform:matrix(0.199894,0.003198,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.199894,0.003198,-0.003999,0.249968,0,0);}
.m12_c01334{transform:matrix(0.200099,0.003202,-0.003999,0.249968,0,0);-ms-transform:matrix(0.200099,0.003202,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.200099,0.003202,-0.003999,0.249968,0,0);}
.m10d_c01334{transform:matrix(0.200111,0.002401,-0.003000,0.249982,0,0);-ms-transform:matrix(0.200111,0.002401,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.200111,0.002401,-0.003000,0.249982,0,0);}
.m114_c01334{transform:matrix(0.200236,0.002403,-0.003000,0.249982,0,0);-ms-transform:matrix(0.200236,0.002403,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.200236,0.002403,-0.003000,0.249982,0,0);}
.md0_c01334{transform:matrix(0.200296,0.002404,-0.003000,0.249982,0,0);-ms-transform:matrix(0.200296,0.002404,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.200296,0.002404,-0.003000,0.249982,0,0);}
.mff_c01334{transform:matrix(0.200301,0.002404,-0.003000,0.249982,0,0);-ms-transform:matrix(0.200301,0.002404,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.200301,0.002404,-0.003000,0.249982,0,0);}
.m45_c01334{transform:matrix(0.200314,0.003205,-0.003999,0.249968,0,0);-ms-transform:matrix(0.200314,0.003205,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.200314,0.003205,-0.003999,0.249968,0,0);}
.m33_c01334{transform:matrix(0.202199,0.003235,-0.003999,0.249968,0,0);-ms-transform:matrix(0.202199,0.003235,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.202199,0.003235,-0.003999,0.249968,0,0);}
.m13_c01334{transform:matrix(0.203074,0.003249,-0.003999,0.249968,0,0);-ms-transform:matrix(0.203074,0.003249,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.203074,0.003249,-0.003999,0.249968,0,0);}
.me0_c01334{transform:matrix(0.203270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203270,0.000000,0.000000,0.250000,0,0);}
.m25_c01334{transform:matrix(0.203438,0.002238,-0.002750,0.249985,0,0);-ms-transform:matrix(0.203438,0.002238,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.203438,0.002238,-0.002750,0.249985,0,0);}
.m1c_c01334{transform:matrix(0.203719,0.003260,-0.003999,0.249968,0,0);-ms-transform:matrix(0.203719,0.003260,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.203719,0.003260,-0.003999,0.249968,0,0);}
.m1b_c01334{transform:matrix(0.203779,0.003260,-0.003999,0.249968,0,0);-ms-transform:matrix(0.203779,0.003260,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.203779,0.003260,-0.003999,0.249968,0,0);}
.m100_c01334{transform:matrix(0.204285,0.002451,-0.003000,0.249982,0,0);-ms-transform:matrix(0.204285,0.002451,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.204285,0.002451,-0.003000,0.249982,0,0);}
.m5b_c01334{transform:matrix(0.204459,0.003271,-0.003999,0.249968,0,0);-ms-transform:matrix(0.204459,0.003271,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.204459,0.003271,-0.003999,0.249968,0,0);}
.mfc_c01334{transform:matrix(0.204895,0.002459,-0.003000,0.249982,0,0);-ms-transform:matrix(0.204895,0.002459,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.204895,0.002459,-0.003000,0.249982,0,0);}
.mfe_c01334{transform:matrix(0.204930,0.002459,-0.003000,0.249982,0,0);-ms-transform:matrix(0.204930,0.002459,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.204930,0.002459,-0.003000,0.249982,0,0);}
.mcd_c01334{transform:matrix(0.205095,0.002461,-0.003000,0.249982,0,0);-ms-transform:matrix(0.205095,0.002461,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.205095,0.002461,-0.003000,0.249982,0,0);}
.m49_c01334{transform:matrix(0.205224,0.003284,-0.003999,0.249968,0,0);-ms-transform:matrix(0.205224,0.003284,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.205224,0.003284,-0.003999,0.249968,0,0);}
.mad_c01334{transform:matrix(0.205814,0.003293,-0.003999,0.249968,0,0);-ms-transform:matrix(0.205814,0.003293,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.205814,0.003293,-0.003999,0.249968,0,0);}
.m5e_c01334{transform:matrix(0.209193,0.003347,-0.003999,0.249968,0,0);-ms-transform:matrix(0.209193,0.003347,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.209193,0.003347,-0.003999,0.249968,0,0);}
.m105_c01334{transform:matrix(0.209535,0.002514,-0.003000,0.249982,0,0);-ms-transform:matrix(0.209535,0.002514,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.209535,0.002514,-0.003000,0.249982,0,0);}
.m113_c01334{transform:matrix(0.209605,0.002515,-0.003000,0.249982,0,0);-ms-transform:matrix(0.209605,0.002515,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.209605,0.002515,-0.003000,0.249982,0,0);}
.m1a_c01334{transform:matrix(0.209848,0.003358,-0.003999,0.249968,0,0);-ms-transform:matrix(0.209848,0.003358,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.209848,0.003358,-0.003999,0.249968,0,0);}
.m41_c01334{transform:matrix(0.210183,0.003363,-0.003999,0.249968,0,0);-ms-transform:matrix(0.210183,0.003363,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.210183,0.003363,-0.003999,0.249968,0,0);}
.m43_c01334{transform:matrix(0.210253,0.003364,-0.003999,0.249968,0,0);-ms-transform:matrix(0.210253,0.003364,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.210253,0.003364,-0.003999,0.249968,0,0);}
.m35_c01334{transform:matrix(0.210553,0.003369,-0.003999,0.249968,0,0);-ms-transform:matrix(0.210553,0.003369,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.210553,0.003369,-0.003999,0.249968,0,0);}
.m21_c01334{transform:matrix(0.210677,0.002317,-0.002750,0.249985,0,0);-ms-transform:matrix(0.210677,0.002317,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.210677,0.002317,-0.002750,0.249985,0,0);}
.m10c_c01334{transform:matrix(0.210680,0.002528,-0.003000,0.249982,0,0);-ms-transform:matrix(0.210680,0.002528,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.210680,0.002528,-0.003000,0.249982,0,0);}
.m112_c01334{transform:matrix(0.211110,0.002533,-0.003000,0.249982,0,0);-ms-transform:matrix(0.211110,0.002533,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.211110,0.002533,-0.003000,0.249982,0,0);}
.mee_c01334{transform:matrix(0.211235,0.002535,-0.003000,0.249982,0,0);-ms-transform:matrix(0.211235,0.002535,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.211235,0.002535,-0.003000,0.249982,0,0);}
.m116_c01334{transform:matrix(0.211360,0.002536,-0.003000,0.249982,0,0);-ms-transform:matrix(0.211360,0.002536,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.211360,0.002536,-0.003000,0.249982,0,0);}
.mf4_c01334{transform:matrix(0.211495,0.002538,-0.003000,0.249982,0,0);-ms-transform:matrix(0.211495,0.002538,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.211495,0.002538,-0.003000,0.249982,0,0);}
.m4a_c01334{transform:matrix(0.211608,0.003386,-0.003999,0.249968,0,0);-ms-transform:matrix(0.211608,0.003386,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.211608,0.003386,-0.003999,0.249968,0,0);}
.m10b_c01334{transform:matrix(0.212500,0.002550,-0.003000,0.249982,0,0);-ms-transform:matrix(0.212500,0.002550,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.212500,0.002550,-0.003000,0.249982,0,0);}
.m11_c01334{transform:matrix(0.212683,0.003403,-0.003999,0.249968,0,0);-ms-transform:matrix(0.212683,0.003403,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.212683,0.003403,-0.003999,0.249968,0,0);}
.m22_c01334{transform:matrix(0.212912,0.002342,-0.002750,0.249985,0,0);-ms-transform:matrix(0.212912,0.002342,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.212912,0.002342,-0.002750,0.249985,0,0);}
.m102_c01334{transform:matrix(0.213280,0.002559,-0.003000,0.249982,0,0);-ms-transform:matrix(0.213280,0.002559,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.213280,0.002559,-0.003000,0.249982,0,0);}
.md6_c01334{transform:matrix(0.213510,0.002562,-0.003000,0.249982,0,0);-ms-transform:matrix(0.213510,0.002562,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.213510,0.002562,-0.003000,0.249982,0,0);}
.m63_c01334{transform:matrix(0.213578,0.003417,-0.003999,0.249968,0,0);-ms-transform:matrix(0.213578,0.003417,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.213578,0.003417,-0.003999,0.249968,0,0);}
.mfd_c01334{transform:matrix(0.213720,0.002565,-0.003000,0.249982,0,0);-ms-transform:matrix(0.213720,0.002565,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.213720,0.002565,-0.003000,0.249982,0,0);}
.m3f_c01334{transform:matrix(0.213913,0.003423,-0.003999,0.249968,0,0);-ms-transform:matrix(0.213913,0.003423,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.213913,0.003423,-0.003999,0.249968,0,0);}
.m5d_c01334{transform:matrix(0.214593,0.003433,-0.003999,0.249968,0,0);-ms-transform:matrix(0.214593,0.003433,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.214593,0.003433,-0.003999,0.249968,0,0);}
.m46_c01334{transform:matrix(0.214618,0.003434,-0.003999,0.249968,0,0);-ms-transform:matrix(0.214618,0.003434,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.214618,0.003434,-0.003999,0.249968,0,0);}
.m23_c01334{transform:matrix(0.214882,0.002364,-0.002750,0.249985,0,0);-ms-transform:matrix(0.214882,0.002364,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.214882,0.002364,-0.002750,0.249985,0,0);}
.m64_c01334{transform:matrix(0.215327,0.003445,-0.003999,0.249968,0,0);-ms-transform:matrix(0.215327,0.003445,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.215327,0.003445,-0.003999,0.249968,0,0);}
.m10a_c01334{transform:matrix(0.215659,0.002588,-0.003000,0.249982,0,0);-ms-transform:matrix(0.215659,0.002588,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.215659,0.002588,-0.003000,0.249982,0,0);}
.m50_c01334{transform:matrix(0.215677,0.003451,-0.003999,0.249968,0,0);-ms-transform:matrix(0.215677,0.003451,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.215677,0.003451,-0.003999,0.249968,0,0);}
.m147_c01334{transform:matrix(0.215766,0.003236,-0.003750,0.249972,0,0);-ms-transform:matrix(0.215766,0.003236,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.215766,0.003236,-0.003750,0.249972,0,0);}
.mf6_c01334{transform:matrix(0.215789,0.002589,-0.003000,0.249982,0,0);-ms-transform:matrix(0.215789,0.002589,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.215789,0.002589,-0.003000,0.249982,0,0);}
.m42_c01334{transform:matrix(0.216057,0.003457,-0.003999,0.249968,0,0);-ms-transform:matrix(0.216057,0.003457,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.216057,0.003457,-0.003999,0.249968,0,0);}
.m131_c01334{transform:matrix(0.216738,0.004768,-0.005499,0.249940,0,0);-ms-transform:matrix(0.216738,0.004768,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.216738,0.004768,-0.005499,0.249940,0,0);}
.m62_c01334{transform:matrix(0.216857,0.003470,-0.003999,0.249968,0,0);-ms-transform:matrix(0.216857,0.003470,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.216857,0.003470,-0.003999,0.249968,0,0);}
.md2_c01334{transform:matrix(0.216934,0.002603,-0.003000,0.249982,0,0);-ms-transform:matrix(0.216934,0.002603,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.216934,0.002603,-0.003000,0.249982,0,0);}
.m47_c01334{transform:matrix(0.216992,0.003472,-0.003999,0.249968,0,0);-ms-transform:matrix(0.216992,0.003472,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.216992,0.003472,-0.003999,0.249968,0,0);}
.m1d_c01334{transform:matrix(0.217157,0.002389,-0.002750,0.249985,0,0);-ms-transform:matrix(0.217157,0.002389,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.217157,0.002389,-0.002750,0.249985,0,0);}
.m18_c01334{transform:matrix(0.217367,0.003478,-0.003999,0.249968,0,0);-ms-transform:matrix(0.217367,0.003478,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.217367,0.003478,-0.003999,0.249968,0,0);}
.m10f_c01334{transform:matrix(0.217379,0.002609,-0.003000,0.249982,0,0);-ms-transform:matrix(0.217379,0.002609,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.217379,0.002609,-0.003000,0.249982,0,0);}
.m53_c01334{transform:matrix(0.217677,0.003483,-0.003999,0.249968,0,0);-ms-transform:matrix(0.217677,0.003483,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.217677,0.003483,-0.003999,0.249968,0,0);}
.m85_c01334{transform:matrix(0.217742,0.003484,-0.003999,0.249968,0,0);-ms-transform:matrix(0.217742,0.003484,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.217742,0.003484,-0.003999,0.249968,0,0);}
.m14_c01334{transform:matrix(0.218477,0.003496,-0.003999,0.249968,0,0);-ms-transform:matrix(0.218477,0.003496,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.218477,0.003496,-0.003999,0.249968,0,0);}
.m77_c01334{transform:matrix(0.219132,0.003506,-0.003999,0.249968,0,0);-ms-transform:matrix(0.219132,0.003506,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.219132,0.003506,-0.003999,0.249968,0,0);}
.m67_c01334{transform:matrix(0.219522,0.003512,-0.003999,0.249968,0,0);-ms-transform:matrix(0.219522,0.003512,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.219522,0.003512,-0.003999,0.249968,0,0);}
.m134_c01334{transform:matrix(0.219617,0.004832,-0.005499,0.249940,0,0);-ms-transform:matrix(0.219617,0.004832,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.219617,0.004832,-0.005499,0.249940,0,0);}
.m141_c01334{transform:matrix(0.219730,0.003296,-0.003750,0.249972,0,0);-ms-transform:matrix(0.219730,0.003296,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.219730,0.003296,-0.003750,0.249972,0,0);}
.m4d_c01334{transform:matrix(0.219772,0.003516,-0.003999,0.249968,0,0);-ms-transform:matrix(0.219772,0.003516,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.219772,0.003516,-0.003999,0.249968,0,0);}
.m139_c01334{transform:matrix(0.220137,0.004843,-0.005499,0.249940,0,0);-ms-transform:matrix(0.220137,0.004843,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.220137,0.004843,-0.005499,0.249940,0,0);}
.mf2_c01334{transform:matrix(0.220194,0.002642,-0.003000,0.249982,0,0);-ms-transform:matrix(0.220194,0.002642,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.220194,0.002642,-0.003000,0.249982,0,0);}
.m2f_c01334{transform:matrix(0.220287,0.002423,-0.002750,0.249985,0,0);-ms-transform:matrix(0.220287,0.002423,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.220287,0.002423,-0.002750,0.249985,0,0);}
.m115_c01334{transform:matrix(0.220354,0.002644,-0.003000,0.249982,0,0);-ms-transform:matrix(0.220354,0.002644,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.220354,0.002644,-0.003000,0.249982,0,0);}
.mcf_c01334{transform:matrix(0.220744,0.002649,-0.003000,0.249982,0,0);-ms-transform:matrix(0.220744,0.002649,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.220744,0.002649,-0.003000,0.249982,0,0);}
.m20_c01334{transform:matrix(0.221272,0.002434,-0.002750,0.249985,0,0);-ms-transform:matrix(0.221272,0.002434,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.221272,0.002434,-0.002750,0.249985,0,0);}
.m10_c01334{transform:matrix(0.221317,0.003541,-0.003999,0.249968,0,0);-ms-transform:matrix(0.221317,0.003541,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.221317,0.003541,-0.003999,0.249968,0,0);}
.m7c_c01334{transform:matrix(0.221607,0.003546,-0.003999,0.249968,0,0);-ms-transform:matrix(0.221607,0.003546,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.221607,0.003546,-0.003999,0.249968,0,0);}
.m1f_c01334{transform:matrix(0.221962,0.002442,-0.002750,0.249985,0,0);-ms-transform:matrix(0.221962,0.002442,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.221962,0.002442,-0.002750,0.249985,0,0);}
.m40_c01334{transform:matrix(0.222052,0.003553,-0.003999,0.249968,0,0);-ms-transform:matrix(0.222052,0.003553,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.222052,0.003553,-0.003999,0.249968,0,0);}
.m9b_c01334{transform:matrix(0.222472,0.003560,-0.003999,0.249968,0,0);-ms-transform:matrix(0.222472,0.003560,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.222472,0.003560,-0.003999,0.249968,0,0);}
.m48_c01334{transform:matrix(0.222811,0.003565,-0.003999,0.249968,0,0);-ms-transform:matrix(0.222811,0.003565,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.222811,0.003565,-0.003999,0.249968,0,0);}
.ma_c01334{transform:matrix(0.222961,0.003567,-0.003999,0.249968,0,0);-ms-transform:matrix(0.222961,0.003567,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.222961,0.003567,-0.003999,0.249968,0,0);}
.m6b_c01334{transform:matrix(0.223276,0.003572,-0.003999,0.249968,0,0);-ms-transform:matrix(0.223276,0.003572,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.223276,0.003572,-0.003999,0.249968,0,0);}
.md7_c01334{transform:matrix(0.223704,0.002684,-0.003000,0.249982,0,0);-ms-transform:matrix(0.223704,0.002684,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.223704,0.002684,-0.003000,0.249982,0,0);}
.m32_c01334{transform:matrix(0.224281,0.003589,-0.003999,0.249968,0,0);-ms-transform:matrix(0.224281,0.003589,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.224281,0.003589,-0.003999,0.249968,0,0);}
.mf1_c01334{transform:matrix(0.224734,0.002697,-0.003000,0.249982,0,0);-ms-transform:matrix(0.224734,0.002697,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.224734,0.002697,-0.003000,0.249982,0,0);}
.m5_c01334{transform:matrix(0.225816,0.003613,-0.003999,0.249968,0,0);-ms-transform:matrix(0.225816,0.003613,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.225816,0.003613,-0.003999,0.249968,0,0);}
.m13a_c01334{transform:matrix(0.225970,0.004971,-0.005499,0.249940,0,0);-ms-transform:matrix(0.225970,0.004971,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.225970,0.004971,-0.005499,0.249940,0,0);}
.m104_c01334{transform:matrix(0.226324,0.002716,-0.003000,0.249982,0,0);-ms-transform:matrix(0.226324,0.002716,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.226324,0.002716,-0.003000,0.249982,0,0);}
.m34_c01334{transform:matrix(0.227106,0.003634,-0.003999,0.249968,0,0);-ms-transform:matrix(0.227106,0.003634,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.227106,0.003634,-0.003999,0.249968,0,0);}
.m3b_c01334{transform:matrix(0.227481,0.003640,-0.003999,0.249968,0,0);-ms-transform:matrix(0.227481,0.003640,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.227481,0.003640,-0.003999,0.249968,0,0);}
.m82_c01334{transform:matrix(0.227656,0.003642,-0.003999,0.249968,0,0);-ms-transform:matrix(0.227656,0.003642,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.227656,0.003642,-0.003999,0.249968,0,0);}
.md5_c01334{transform:matrix(0.227694,0.002732,-0.003000,0.249982,0,0);-ms-transform:matrix(0.227694,0.002732,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.227694,0.002732,-0.003000,0.249982,0,0);}
.m125_c01334{transform:matrix(0.228057,0.003877,-0.004249,0.249964,0,0);-ms-transform:matrix(0.228057,0.003877,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.228057,0.003877,-0.004249,0.249964,0,0);}
.m24_c01334{transform:matrix(0.228121,0.002509,-0.002750,0.249985,0,0);-ms-transform:matrix(0.228121,0.002509,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.228121,0.002509,-0.002750,0.249985,0,0);}
.m61_c01334{transform:matrix(0.228481,0.003656,-0.003999,0.249968,0,0);-ms-transform:matrix(0.228481,0.003656,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.228481,0.003656,-0.003999,0.249968,0,0);}
.m37_c01334{transform:matrix(0.228646,0.003658,-0.003999,0.249968,0,0);-ms-transform:matrix(0.228646,0.003658,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.228646,0.003658,-0.003999,0.249968,0,0);}
.mf_c01334{transform:matrix(0.228996,0.003664,-0.003999,0.249968,0,0);-ms-transform:matrix(0.228996,0.003664,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.228996,0.003664,-0.003999,0.249968,0,0);}
.m66_c01334{transform:matrix(0.229181,0.003667,-0.003999,0.249968,0,0);-ms-transform:matrix(0.229181,0.003667,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.229181,0.003667,-0.003999,0.249968,0,0);}
.m5a_c01334{transform:matrix(0.229191,0.003667,-0.003999,0.249968,0,0);-ms-transform:matrix(0.229191,0.003667,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.229191,0.003667,-0.003999,0.249968,0,0);}
.m7f_c01334{transform:matrix(0.229371,0.003670,-0.003999,0.249968,0,0);-ms-transform:matrix(0.229371,0.003670,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.229371,0.003670,-0.003999,0.249968,0,0);}
.mce_c01334{transform:matrix(0.229438,0.002753,-0.003000,0.249982,0,0);-ms-transform:matrix(0.229438,0.002753,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.229438,0.002753,-0.003000,0.249982,0,0);}
.m144_c01334{transform:matrix(0.229454,0.003442,-0.003750,0.249972,0,0);-ms-transform:matrix(0.229454,0.003442,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.229454,0.003442,-0.003750,0.249972,0,0);}
.m142_c01334{transform:matrix(0.229689,0.003445,-0.003750,0.249972,0,0);-ms-transform:matrix(0.229689,0.003445,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.229689,0.003445,-0.003750,0.249972,0,0);}
.md4_c01334{transform:matrix(0.230228,0.002763,-0.003000,0.249982,0,0);-ms-transform:matrix(0.230228,0.002763,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.230228,0.002763,-0.003000,0.249982,0,0);}
.m12b_c01334{transform:matrix(0.230762,0.003923,-0.004249,0.249964,0,0);-ms-transform:matrix(0.230762,0.003923,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.230762,0.003923,-0.004249,0.249964,0,0);}
.mf9_c01334{transform:matrix(0.231063,0.002773,-0.003000,0.249982,0,0);-ms-transform:matrix(0.231063,0.002773,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.231063,0.002773,-0.003000,0.249982,0,0);}
.m108_c01334{transform:matrix(0.231128,0.002774,-0.003000,0.249982,0,0);-ms-transform:matrix(0.231128,0.002774,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.231128,0.002774,-0.003000,0.249982,0,0);}
.m145_c01334{transform:matrix(0.231269,0.003469,-0.003750,0.249972,0,0);-ms-transform:matrix(0.231269,0.003469,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.231269,0.003469,-0.003750,0.249972,0,0);}
.mf8_c01334{transform:matrix(0.231273,0.002775,-0.003000,0.249982,0,0);-ms-transform:matrix(0.231273,0.002775,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.231273,0.002775,-0.003000,0.249982,0,0);}
.m38_c01334{transform:matrix(0.231800,0.003709,-0.003999,0.249968,0,0);-ms-transform:matrix(0.231800,0.003709,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.231800,0.003709,-0.003999,0.249968,0,0);}
.m83_c01334{transform:matrix(0.231890,0.003710,-0.003999,0.249968,0,0);-ms-transform:matrix(0.231890,0.003710,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.231890,0.003710,-0.003999,0.249968,0,0);}
.m80_c01334{transform:matrix(0.232360,0.003718,-0.003999,0.249968,0,0);-ms-transform:matrix(0.232360,0.003718,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.232360,0.003718,-0.003999,0.249968,0,0);}
.m6c_c01334{transform:matrix(0.232525,0.003720,-0.003999,0.249968,0,0);-ms-transform:matrix(0.232525,0.003720,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.232525,0.003720,-0.003999,0.249968,0,0);}
.mdf_c01334{transform:matrix(0.233370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233370,0.000000,0.000000,0.250000,0,0);}
.m3a_c01334{transform:matrix(0.233560,0.003737,-0.003999,0.249968,0,0);-ms-transform:matrix(0.233560,0.003737,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.233560,0.003737,-0.003999,0.249968,0,0);}
.m2a_c01334{transform:matrix(0.233681,0.002570,-0.002750,0.249985,0,0);-ms-transform:matrix(0.233681,0.002570,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.233681,0.002570,-0.002750,0.249985,0,0);}
.m106_c01334{transform:matrix(0.233783,0.002805,-0.003000,0.249982,0,0);-ms-transform:matrix(0.233783,0.002805,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.233783,0.002805,-0.003000,0.249982,0,0);}
.mcc_c01334{transform:matrix(0.234208,0.002810,-0.003000,0.249982,0,0);-ms-transform:matrix(0.234208,0.002810,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.234208,0.002810,-0.003000,0.249982,0,0);}
.mc9_c01334{transform:matrix(0.234825,0.003757,-0.003999,0.249968,0,0);-ms-transform:matrix(0.234825,0.003757,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.234825,0.003757,-0.003999,0.249968,0,0);}
.m51_c01334{transform:matrix(0.235545,0.003769,-0.003999,0.249968,0,0);-ms-transform:matrix(0.235545,0.003769,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.235545,0.003769,-0.003999,0.249968,0,0);}
.mb1_c01334{transform:matrix(0.235585,0.003769,-0.003999,0.249968,0,0);-ms-transform:matrix(0.235585,0.003769,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.235585,0.003769,-0.003999,0.249968,0,0);}
.m8e_c01334{transform:matrix(0.235760,0.003772,-0.003999,0.249968,0,0);-ms-transform:matrix(0.235760,0.003772,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.235760,0.003772,-0.003999,0.249968,0,0);}
.m137_c01334{transform:matrix(0.236243,0.005197,-0.005499,0.249940,0,0);-ms-transform:matrix(0.236243,0.005197,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.236243,0.005197,-0.005499,0.249940,0,0);}
.ma9_c01334{transform:matrix(0.236270,0.003780,-0.003999,0.249968,0,0);-ms-transform:matrix(0.236270,0.003780,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.236270,0.003780,-0.003999,0.249968,0,0);}
.m72_c01334{transform:matrix(0.236415,0.003783,-0.003999,0.249968,0,0);-ms-transform:matrix(0.236415,0.003783,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.236415,0.003783,-0.003999,0.249968,0,0);}
.meb_c01334{transform:matrix(0.236503,0.002838,-0.003000,0.249982,0,0);-ms-transform:matrix(0.236503,0.002838,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.236503,0.002838,-0.003000,0.249982,0,0);}
.m3c_c01334{transform:matrix(0.236610,0.003786,-0.003999,0.249968,0,0);-ms-transform:matrix(0.236610,0.003786,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.236610,0.003786,-0.003999,0.249968,0,0);}
.m6e_c01334{transform:matrix(0.237805,0.003805,-0.003999,0.249968,0,0);-ms-transform:matrix(0.237805,0.003805,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.237805,0.003805,-0.003999,0.249968,0,0);}
.m9a_c01334{transform:matrix(0.237945,0.003807,-0.003999,0.249968,0,0);-ms-transform:matrix(0.237945,0.003807,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.237945,0.003807,-0.003999,0.249968,0,0);}
.m11f_c01334{transform:matrix(0.237958,0.002855,-0.003000,0.249982,0,0);-ms-transform:matrix(0.237958,0.002855,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.237958,0.002855,-0.003000,0.249982,0,0);}
.md3_c01334{transform:matrix(0.238008,0.002856,-0.003000,0.249982,0,0);-ms-transform:matrix(0.238008,0.002856,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.238008,0.002856,-0.003000,0.249982,0,0);}
.m36_c01334{transform:matrix(0.238015,0.003808,-0.003999,0.249968,0,0);-ms-transform:matrix(0.238015,0.003808,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.238015,0.003808,-0.003999,0.249968,0,0);}
.m130_c01334{transform:matrix(0.238162,0.005240,-0.005499,0.249940,0,0);-ms-transform:matrix(0.238162,0.005240,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.238162,0.005240,-0.005499,0.249940,0,0);}
.m54_c01334{transform:matrix(0.238689,0.003819,-0.003999,0.249968,0,0);-ms-transform:matrix(0.238689,0.003819,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.238689,0.003819,-0.003999,0.249968,0,0);}
.m3_c01334{transform:matrix(0.239264,0.003828,-0.003999,0.249968,0,0);-ms-transform:matrix(0.239264,0.003828,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.239264,0.003828,-0.003999,0.249968,0,0);}
.m12a_c01334{transform:matrix(0.239530,0.004072,-0.004249,0.249964,0,0);-ms-transform:matrix(0.239530,0.004072,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.239530,0.004072,-0.004249,0.249964,0,0);}
.mb9_c01334{transform:matrix(0.240074,0.003841,-0.003999,0.249968,0,0);-ms-transform:matrix(0.240074,0.003841,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.240074,0.003841,-0.003999,0.249968,0,0);}
.m97_c01334{transform:matrix(0.240264,0.003844,-0.003999,0.249968,0,0);-ms-transform:matrix(0.240264,0.003844,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.240264,0.003844,-0.003999,0.249968,0,0);}
.m148_c01334{transform:matrix(0.240813,0.003612,-0.003750,0.249972,0,0);-ms-transform:matrix(0.240813,0.003612,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.240813,0.003612,-0.003750,0.249972,0,0);}
.m99_c01334{transform:matrix(0.241269,0.003860,-0.003999,0.249968,0,0);-ms-transform:matrix(0.241269,0.003860,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.241269,0.003860,-0.003999,0.249968,0,0);}
.m107_c01334{transform:matrix(0.241593,0.002899,-0.003000,0.249982,0,0);-ms-transform:matrix(0.241593,0.002899,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.241593,0.002899,-0.003000,0.249982,0,0);}
.m12d_c01334{transform:matrix(0.241630,0.004108,-0.004249,0.249964,0,0);-ms-transform:matrix(0.241630,0.004108,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.241630,0.004108,-0.004249,0.249964,0,0);}
.m143_c01334{transform:matrix(0.241908,0.003629,-0.003750,0.249972,0,0);-ms-transform:matrix(0.241908,0.003629,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.241908,0.003629,-0.003750,0.249972,0,0);}
.mb7_c01334{transform:matrix(0.241964,0.003871,-0.003999,0.249968,0,0);-ms-transform:matrix(0.241964,0.003871,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.241964,0.003871,-0.003999,0.249968,0,0);}
.mc_c01334{transform:matrix(0.242209,0.003875,-0.003999,0.249968,0,0);-ms-transform:matrix(0.242209,0.003875,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.242209,0.003875,-0.003999,0.249968,0,0);}
.mbc_c01334{transform:matrix(0.243344,0.003894,-0.003999,0.249968,0,0);-ms-transform:matrix(0.243344,0.003894,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.243344,0.003894,-0.003999,0.249968,0,0);}
.mc5_c01334{transform:matrix(0.243464,0.003895,-0.003999,0.249968,0,0);-ms-transform:matrix(0.243464,0.003895,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.243464,0.003895,-0.003999,0.249968,0,0);}
.m149_c01334{transform:matrix(0.243478,0.003652,-0.003750,0.249972,0,0);-ms-transform:matrix(0.243478,0.003652,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.243478,0.003652,-0.003750,0.249972,0,0);}
.m7d_c01334{transform:matrix(0.243759,0.003900,-0.003999,0.249968,0,0);-ms-transform:matrix(0.243759,0.003900,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.243759,0.003900,-0.003999,0.249968,0,0);}
.mc1_c01334{transform:matrix(0.244224,0.003908,-0.003999,0.249968,0,0);-ms-transform:matrix(0.244224,0.003908,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.244224,0.003908,-0.003999,0.249968,0,0);}
.m55_c01334{transform:matrix(0.244669,0.003915,-0.003999,0.249968,0,0);-ms-transform:matrix(0.244669,0.003915,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.244669,0.003915,-0.003999,0.249968,0,0);}
.m8_c01334{transform:matrix(0.244829,0.003917,-0.003999,0.249968,0,0);-ms-transform:matrix(0.244829,0.003917,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.244829,0.003917,-0.003999,0.249968,0,0);}
.m8a_c01334{transform:matrix(0.245774,0.003932,-0.003999,0.249968,0,0);-ms-transform:matrix(0.245774,0.003932,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.245774,0.003932,-0.003999,0.249968,0,0);}
.m9e_c01334{transform:matrix(0.245939,0.003935,-0.003999,0.249968,0,0);-ms-transform:matrix(0.245939,0.003935,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.245939,0.003935,-0.003999,0.249968,0,0);}
.m4f_c01334{transform:matrix(0.245949,0.003935,-0.003999,0.249968,0,0);-ms-transform:matrix(0.245949,0.003935,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.245949,0.003935,-0.003999,0.249968,0,0);}
.m109_c01334{transform:matrix(0.246157,0.002954,-0.003000,0.249982,0,0);-ms-transform:matrix(0.246157,0.002954,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.246157,0.002954,-0.003000,0.249982,0,0);}
.m2c_c01334{transform:matrix(0.246285,0.002709,-0.002750,0.249985,0,0);-ms-transform:matrix(0.246285,0.002709,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.246285,0.002709,-0.002750,0.249985,0,0);}
.m133_c01334{transform:matrix(0.246295,0.005418,-0.005499,0.249940,0,0);-ms-transform:matrix(0.246295,0.005418,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.246295,0.005418,-0.005499,0.249940,0,0);}
.mb3_c01334{transform:matrix(0.246948,0.003951,-0.003999,0.249968,0,0);-ms-transform:matrix(0.246948,0.003951,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.246948,0.003951,-0.003999,0.249968,0,0);}
.me2_c01334{transform:matrix(0.247532,0.002970,-0.003000,0.249982,0,0);-ms-transform:matrix(0.247532,0.002970,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.247532,0.002970,-0.003000,0.249982,0,0);}
.m8c_c01334{transform:matrix(0.247653,0.003962,-0.003999,0.249968,0,0);-ms-transform:matrix(0.247653,0.003962,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.247653,0.003962,-0.003999,0.249968,0,0);}
.m4e_c01334{transform:matrix(0.247708,0.003963,-0.003999,0.249968,0,0);-ms-transform:matrix(0.247708,0.003963,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.247708,0.003963,-0.003999,0.249968,0,0);}
.m6f_c01334{transform:matrix(0.248273,0.003972,-0.003999,0.249968,0,0);-ms-transform:matrix(0.248273,0.003972,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.248273,0.003972,-0.003999,0.249968,0,0);}
.mc0_c01334{transform:matrix(0.248893,0.003982,-0.003999,0.249968,0,0);-ms-transform:matrix(0.248893,0.003982,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.248893,0.003982,-0.003999,0.249968,0,0);}
.mc7_c01334{transform:matrix(0.249078,0.003985,-0.003999,0.249968,0,0);-ms-transform:matrix(0.249078,0.003985,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.249078,0.003985,-0.003999,0.249968,0,0);}
.m13b_c01334{transform:matrix(0.250519,0.005511,-0.005499,0.249940,0,0);-ms-transform:matrix(0.250519,0.005511,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.250519,0.005511,-0.005499,0.249940,0,0);}
.mc2_c01334{transform:matrix(0.250978,0.004016,-0.003999,0.249968,0,0);-ms-transform:matrix(0.250978,0.004016,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.250978,0.004016,-0.003999,0.249968,0,0);}
.mbb_c01334{transform:matrix(0.251838,0.004029,-0.003999,0.249968,0,0);-ms-transform:matrix(0.251838,0.004029,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.251838,0.004029,-0.003999,0.249968,0,0);}
.m128_c01334{transform:matrix(0.252219,0.004288,-0.004249,0.249964,0,0);-ms-transform:matrix(0.252219,0.004288,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.252219,0.004288,-0.004249,0.249964,0,0);}
.m78_c01334{transform:matrix(0.252398,0.004038,-0.003999,0.249968,0,0);-ms-transform:matrix(0.252398,0.004038,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.252398,0.004038,-0.003999,0.249968,0,0);}
.m120_c01334{transform:matrix(0.252412,0.003029,-0.003000,0.249982,0,0);-ms-transform:matrix(0.252412,0.003029,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.252412,0.003029,-0.003000,0.249982,0,0);}
.m52_c01334{transform:matrix(0.252458,0.004039,-0.003999,0.249968,0,0);-ms-transform:matrix(0.252458,0.004039,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.252458,0.004039,-0.003999,0.249968,0,0);}
.mac_c01334{transform:matrix(0.252853,0.004046,-0.003999,0.249968,0,0);-ms-transform:matrix(0.252853,0.004046,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.252853,0.004046,-0.003999,0.249968,0,0);}
.maa_c01334{transform:matrix(0.253028,0.004048,-0.003999,0.249968,0,0);-ms-transform:matrix(0.253028,0.004048,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.253028,0.004048,-0.003999,0.249968,0,0);}
.me5_c01334{transform:matrix(0.253307,0.003040,-0.003000,0.249982,0,0);-ms-transform:matrix(0.253307,0.003040,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.253307,0.003040,-0.003000,0.249982,0,0);}
.m136_c01334{transform:matrix(0.253534,0.005578,-0.005499,0.249940,0,0);-ms-transform:matrix(0.253534,0.005578,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.253534,0.005578,-0.005499,0.249940,0,0);}
.m95_c01334{transform:matrix(0.253748,0.004060,-0.003999,0.249968,0,0);-ms-transform:matrix(0.253748,0.004060,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.253748,0.004060,-0.003999,0.249968,0,0);}
.m92_c01334{transform:matrix(0.253763,0.004060,-0.003999,0.249968,0,0);-ms-transform:matrix(0.253763,0.004060,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.253763,0.004060,-0.003999,0.249968,0,0);}
.me8_c01334{transform:matrix(0.253852,0.003046,-0.003000,0.249982,0,0);-ms-transform:matrix(0.253852,0.003046,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.253852,0.003046,-0.003000,0.249982,0,0);}
.m126_c01334{transform:matrix(0.254643,0.004329,-0.004249,0.249964,0,0);-ms-transform:matrix(0.254643,0.004329,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.254643,0.004329,-0.004249,0.249964,0,0);}
.m8d_c01334{transform:matrix(0.255177,0.004083,-0.003999,0.249968,0,0);-ms-transform:matrix(0.255177,0.004083,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.255177,0.004083,-0.003999,0.249968,0,0);}
.m121_c01334{transform:matrix(0.255422,0.003065,-0.003000,0.249982,0,0);-ms-transform:matrix(0.255422,0.003065,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.255422,0.003065,-0.003000,0.249982,0,0);}
.m81_c01334{transform:matrix(0.255872,0.004094,-0.003999,0.249968,0,0);-ms-transform:matrix(0.255872,0.004094,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.255872,0.004094,-0.003999,0.249968,0,0);}
.m98_c01334{transform:matrix(0.256267,0.004100,-0.003999,0.249968,0,0);-ms-transform:matrix(0.256267,0.004100,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.256267,0.004100,-0.003999,0.249968,0,0);}
.mea_c01334{transform:matrix(0.256362,0.003076,-0.003000,0.249982,0,0);-ms-transform:matrix(0.256362,0.003076,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.256362,0.003076,-0.003000,0.249982,0,0);}
.m84_c01334{transform:matrix(0.256577,0.004105,-0.003999,0.249968,0,0);-ms-transform:matrix(0.256577,0.004105,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.256577,0.004105,-0.003999,0.249968,0,0);}
.m157_c01334{transform:matrix(0.256731,0.003851,-0.003750,0.249972,0,0);-ms-transform:matrix(0.256731,0.003851,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.256731,0.003851,-0.003750,0.249972,0,0);}
.m96_c01334{transform:matrix(0.257147,0.004114,-0.003999,0.249968,0,0);-ms-transform:matrix(0.257147,0.004114,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.257147,0.004114,-0.003999,0.249968,0,0);}
.m135_c01334{transform:matrix(0.257368,0.005662,-0.005499,0.249940,0,0);-ms-transform:matrix(0.257368,0.005662,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.257368,0.005662,-0.005499,0.249940,0,0);}
.m140_c01334{transform:matrix(0.257488,0.005665,-0.005499,0.249940,0,0);-ms-transform:matrix(0.257488,0.005665,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.257488,0.005665,-0.005499,0.249940,0,0);}
.m27_c01334{transform:matrix(0.257864,0.002837,-0.002750,0.249985,0,0);-ms-transform:matrix(0.257864,0.002837,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.257864,0.002837,-0.002750,0.249985,0,0);}
.m7e_c01334{transform:matrix(0.258352,0.004134,-0.003999,0.249968,0,0);-ms-transform:matrix(0.258352,0.004134,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.258352,0.004134,-0.003999,0.249968,0,0);}
.m117_c01334{transform:matrix(0.258506,0.003102,-0.003000,0.249982,0,0);-ms-transform:matrix(0.258506,0.003102,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.258506,0.003102,-0.003000,0.249982,0,0);}
.m138_c01334{transform:matrix(0.258892,0.005696,-0.005499,0.249940,0,0);-ms-transform:matrix(0.258892,0.005696,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.258892,0.005696,-0.005499,0.249940,0,0);}
.mab_c01334{transform:matrix(0.259037,0.004145,-0.003999,0.249968,0,0);-ms-transform:matrix(0.259037,0.004145,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.259037,0.004145,-0.003999,0.249968,0,0);}
.m7a_c01334{transform:matrix(0.259292,0.004149,-0.003999,0.249968,0,0);-ms-transform:matrix(0.259292,0.004149,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.259292,0.004149,-0.003999,0.249968,0,0);}
.m11d_c01334{transform:matrix(0.259391,0.003113,-0.003000,0.249982,0,0);-ms-transform:matrix(0.259391,0.003113,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.259391,0.003113,-0.003000,0.249982,0,0);}
.m123_c01334{transform:matrix(0.259458,0.004411,-0.004249,0.249964,0,0);-ms-transform:matrix(0.259458,0.004411,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.259458,0.004411,-0.004249,0.249964,0,0);}
.mae_c01334{transform:matrix(0.259512,0.004152,-0.003999,0.249968,0,0);-ms-transform:matrix(0.259512,0.004152,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.259512,0.004152,-0.003999,0.249968,0,0);}
.m12e_c01334{transform:matrix(0.260447,0.004428,-0.004249,0.249964,0,0);-ms-transform:matrix(0.260447,0.004428,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.260447,0.004428,-0.004249,0.249964,0,0);}
.m56_c01334{transform:matrix(0.260562,0.004169,-0.003999,0.249968,0,0);-ms-transform:matrix(0.260562,0.004169,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.260562,0.004169,-0.003999,0.249968,0,0);}
.m11c_c01334{transform:matrix(0.260901,0.003131,-0.003000,0.249982,0,0);-ms-transform:matrix(0.260901,0.003131,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.260901,0.003131,-0.003000,0.249982,0,0);}
.me7_c01334{transform:matrix(0.261466,0.003138,-0.003000,0.249982,0,0);-ms-transform:matrix(0.261466,0.003138,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.261466,0.003138,-0.003000,0.249982,0,0);}
.mba_c01334{transform:matrix(0.261791,0.004189,-0.003999,0.249968,0,0);-ms-transform:matrix(0.261791,0.004189,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.261791,0.004189,-0.003999,0.249968,0,0);}
.m11e_c01334{transform:matrix(0.261831,0.003142,-0.003000,0.249982,0,0);-ms-transform:matrix(0.261831,0.003142,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.261831,0.003142,-0.003000,0.249982,0,0);}
.me4_c01334{transform:matrix(0.262651,0.003152,-0.003000,0.249982,0,0);-ms-transform:matrix(0.262651,0.003152,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.262651,0.003152,-0.003000,0.249982,0,0);}
.m9d_c01334{transform:matrix(0.262816,0.004205,-0.003999,0.249968,0,0);-ms-transform:matrix(0.262816,0.004205,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.262816,0.004205,-0.003999,0.249968,0,0);}
.mb8_c01334{transform:matrix(0.263136,0.004210,-0.003999,0.249968,0,0);-ms-transform:matrix(0.263136,0.004210,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.263136,0.004210,-0.003999,0.249968,0,0);}
.m11a_c01334{transform:matrix(0.263256,0.003159,-0.003000,0.249982,0,0);-ms-transform:matrix(0.263256,0.003159,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.263256,0.003159,-0.003000,0.249982,0,0);}
.me6_c01334{transform:matrix(0.263916,0.003167,-0.003000,0.249982,0,0);-ms-transform:matrix(0.263916,0.003167,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.263916,0.003167,-0.003000,0.249982,0,0);}
.m11b_c01334{transform:matrix(0.264041,0.003168,-0.003000,0.249982,0,0);-ms-transform:matrix(0.264041,0.003168,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.264041,0.003168,-0.003000,0.249982,0,0);}
.m127_c01334{transform:matrix(0.264117,0.004490,-0.004249,0.249964,0,0);-ms-transform:matrix(0.264117,0.004490,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.264117,0.004490,-0.004249,0.249964,0,0);}
.m91_c01334{transform:matrix(0.264216,0.004227,-0.003999,0.249968,0,0);-ms-transform:matrix(0.264216,0.004227,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.264216,0.004227,-0.003999,0.249968,0,0);}
.mc6_c01334{transform:matrix(0.264956,0.004239,-0.003999,0.249968,0,0);-ms-transform:matrix(0.264956,0.004239,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.264956,0.004239,-0.003999,0.249968,0,0);}
.m87_c01334{transform:matrix(0.265151,0.004242,-0.003999,0.249968,0,0);-ms-transform:matrix(0.265151,0.004242,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.265151,0.004242,-0.003999,0.249968,0,0);}
.m68_c01334{transform:matrix(0.265276,0.004244,-0.003999,0.249968,0,0);-ms-transform:matrix(0.265276,0.004244,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.265276,0.004244,-0.003999,0.249968,0,0);}
.m89_c01334{transform:matrix(0.265286,0.004245,-0.003999,0.249968,0,0);-ms-transform:matrix(0.265286,0.004245,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.265286,0.004245,-0.003999,0.249968,0,0);}
.m73_c01334{transform:matrix(0.265991,0.004256,-0.003999,0.249968,0,0);-ms-transform:matrix(0.265991,0.004256,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.265991,0.004256,-0.003999,0.249968,0,0);}
.m2_c01334{transform:matrix(0.266061,0.004257,-0.003999,0.249968,0,0);-ms-transform:matrix(0.266061,0.004257,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.266061,0.004257,-0.003999,0.249968,0,0);}
.maf_c01334{transform:matrix(0.266216,0.004259,-0.003999,0.249968,0,0);-ms-transform:matrix(0.266216,0.004259,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.266216,0.004259,-0.003999,0.249968,0,0);}
.mb5_c01334{transform:matrix(0.266811,0.004269,-0.003999,0.249968,0,0);-ms-transform:matrix(0.266811,0.004269,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.266811,0.004269,-0.003999,0.249968,0,0);}
.m75_c01334{transform:matrix(0.267141,0.004274,-0.003999,0.249968,0,0);-ms-transform:matrix(0.267141,0.004274,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.267141,0.004274,-0.003999,0.249968,0,0);}
.m69_c01334{transform:matrix(0.267491,0.004280,-0.003999,0.249968,0,0);-ms-transform:matrix(0.267491,0.004280,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.267491,0.004280,-0.003999,0.249968,0,0);}
.m6_c01334{transform:matrix(0.267851,0.004286,-0.003999,0.249968,0,0);-ms-transform:matrix(0.267851,0.004286,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.267851,0.004286,-0.003999,0.249968,0,0);}
.m90_c01334{transform:matrix(0.267901,0.004286,-0.003999,0.249968,0,0);-ms-transform:matrix(0.267901,0.004286,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.267901,0.004286,-0.003999,0.249968,0,0);}
.mb6_c01334{transform:matrix(0.268901,0.004302,-0.003999,0.249968,0,0);-ms-transform:matrix(0.268901,0.004302,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.268901,0.004302,-0.003999,0.249968,0,0);}
.m29_c01334{transform:matrix(0.268919,0.002958,-0.002750,0.249985,0,0);-ms-transform:matrix(0.268919,0.002958,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.268919,0.002958,-0.002750,0.249985,0,0);}
.m7b_c01334{transform:matrix(0.269146,0.004306,-0.003999,0.249968,0,0);-ms-transform:matrix(0.269146,0.004306,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.269146,0.004306,-0.003999,0.249968,0,0);}
.m7_c01334{transform:matrix(0.269171,0.004307,-0.003999,0.249968,0,0);-ms-transform:matrix(0.269171,0.004307,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.269171,0.004307,-0.003999,0.249968,0,0);}
.mbf_c01334{transform:matrix(0.269346,0.004310,-0.003999,0.249968,0,0);-ms-transform:matrix(0.269346,0.004310,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.269346,0.004310,-0.003999,0.249968,0,0);}
.m8f_c01334{transform:matrix(0.269476,0.004312,-0.003999,0.249968,0,0);-ms-transform:matrix(0.269476,0.004312,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.269476,0.004312,-0.003999,0.249968,0,0);}
.m2d_c01334{transform:matrix(0.269729,0.002967,-0.002750,0.249985,0,0);-ms-transform:matrix(0.269729,0.002967,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.269729,0.002967,-0.002750,0.249985,0,0);}
.m30_c01334{transform:matrix(0.269814,0.002968,-0.002750,0.249985,0,0);-ms-transform:matrix(0.269814,0.002968,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.269814,0.002968,-0.002750,0.249985,0,0);}
.m60_c01334{transform:matrix(0.269830,0.004317,-0.003999,0.249968,0,0);-ms-transform:matrix(0.269830,0.004317,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.269830,0.004317,-0.003999,0.249968,0,0);}
.m129_c01334{transform:matrix(0.270781,0.004603,-0.004249,0.249964,0,0);-ms-transform:matrix(0.270781,0.004603,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.270781,0.004603,-0.004249,0.249964,0,0);}
.me3_c01334{transform:matrix(0.270806,0.003250,-0.003000,0.249982,0,0);-ms-transform:matrix(0.270806,0.003250,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.270806,0.003250,-0.003000,0.249982,0,0);}
.m2b_c01334{transform:matrix(0.270974,0.002981,-0.002750,0.249985,0,0);-ms-transform:matrix(0.270974,0.002981,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.270974,0.002981,-0.002750,0.249985,0,0);}
.m119_c01334{transform:matrix(0.271540,0.003258,-0.003000,0.249982,0,0);-ms-transform:matrix(0.271540,0.003258,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.271540,0.003258,-0.003000,0.249982,0,0);}
.mc4_c01334{transform:matrix(0.271640,0.004346,-0.003999,0.249968,0,0);-ms-transform:matrix(0.271640,0.004346,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.271640,0.004346,-0.003999,0.249968,0,0);}
.m6d_c01334{transform:matrix(0.271905,0.004350,-0.003999,0.249968,0,0);-ms-transform:matrix(0.271905,0.004350,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.271905,0.004350,-0.003999,0.249968,0,0);}
.mb_c01334{transform:matrix(0.272295,0.004357,-0.003999,0.249968,0,0);-ms-transform:matrix(0.272295,0.004357,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.272295,0.004357,-0.003999,0.249968,0,0);}
.mb2_c01334{transform:matrix(0.272470,0.004360,-0.003999,0.249968,0,0);-ms-transform:matrix(0.272470,0.004360,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.272470,0.004360,-0.003999,0.249968,0,0);}
.m150_c01334{transform:matrix(0.273119,0.004097,-0.003750,0.249972,0,0);-ms-transform:matrix(0.273119,0.004097,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.273119,0.004097,-0.003750,0.249972,0,0);}
.m2e_c01334{transform:matrix(0.273363,0.003007,-0.002750,0.249985,0,0);-ms-transform:matrix(0.273363,0.003007,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.273363,0.003007,-0.002750,0.249985,0,0);}
.m155_c01334{transform:matrix(0.273694,0.004105,-0.003750,0.249972,0,0);-ms-transform:matrix(0.273694,0.004105,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.273694,0.004105,-0.003750,0.249972,0,0);}
.md_c01334{transform:matrix(0.274450,0.004391,-0.003999,0.249968,0,0);-ms-transform:matrix(0.274450,0.004391,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.274450,0.004391,-0.003999,0.249968,0,0);}
.m118_c01334{transform:matrix(0.274830,0.003298,-0.003000,0.249982,0,0);-ms-transform:matrix(0.274830,0.003298,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.274830,0.003298,-0.003000,0.249982,0,0);}
.m6a_c01334{transform:matrix(0.275065,0.004401,-0.003999,0.249968,0,0);-ms-transform:matrix(0.275065,0.004401,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.275065,0.004401,-0.003999,0.249968,0,0);}
.m94_c01334{transform:matrix(0.275390,0.004406,-0.003999,0.249968,0,0);-ms-transform:matrix(0.275390,0.004406,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.275390,0.004406,-0.003999,0.249968,0,0);}
.m28_c01334{transform:matrix(0.276428,0.003041,-0.002750,0.249985,0,0);-ms-transform:matrix(0.276428,0.003041,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.276428,0.003041,-0.002750,0.249985,0,0);}
.mb4_c01334{transform:matrix(0.276430,0.004423,-0.003999,0.249968,0,0);-ms-transform:matrix(0.276430,0.004423,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.276430,0.004423,-0.003999,0.249968,0,0);}
.m74_c01334{transform:matrix(0.276490,0.004424,-0.003999,0.249968,0,0);-ms-transform:matrix(0.276490,0.004424,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.276490,0.004424,-0.003999,0.249968,0,0);}
.m88_c01334{transform:matrix(0.276575,0.004425,-0.003999,0.249968,0,0);-ms-transform:matrix(0.276575,0.004425,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.276575,0.004425,-0.003999,0.249968,0,0);}
.m8b_c01334{transform:matrix(0.277040,0.004433,-0.003999,0.249968,0,0);-ms-transform:matrix(0.277040,0.004433,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.277040,0.004433,-0.003999,0.249968,0,0);}
.m4b_c01334{transform:matrix(0.277170,0.004435,-0.003999,0.249968,0,0);-ms-transform:matrix(0.277170,0.004435,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.277170,0.004435,-0.003999,0.249968,0,0);}
.m9_c01334{transform:matrix(0.277225,0.004436,-0.003999,0.249968,0,0);-ms-transform:matrix(0.277225,0.004436,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.277225,0.004436,-0.003999,0.249968,0,0);}
.m124_c01334{transform:matrix(0.278325,0.004732,-0.004249,0.249964,0,0);-ms-transform:matrix(0.278325,0.004732,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.278325,0.004732,-0.004249,0.249964,0,0);}
.m26_c01334{transform:matrix(0.278448,0.003063,-0.002750,0.249985,0,0);-ms-transform:matrix(0.278448,0.003063,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.278448,0.003063,-0.002750,0.249985,0,0);}
.m76_c01334{transform:matrix(0.278734,0.004460,-0.003999,0.249968,0,0);-ms-transform:matrix(0.278734,0.004460,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.278734,0.004460,-0.003999,0.249968,0,0);}
.m4_c01334{transform:matrix(0.278804,0.004461,-0.003999,0.249968,0,0);-ms-transform:matrix(0.278804,0.004461,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.278804,0.004461,-0.003999,0.249968,0,0);}
.mca_c01334{transform:matrix(0.278914,0.004463,-0.003999,0.249968,0,0);-ms-transform:matrix(0.278914,0.004463,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.278914,0.004463,-0.003999,0.249968,0,0);}
.mc8_c01334{transform:matrix(0.279139,0.004466,-0.003999,0.249968,0,0);-ms-transform:matrix(0.279139,0.004466,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.279139,0.004466,-0.003999,0.249968,0,0);}
.m70_c01334{transform:matrix(0.279254,0.004468,-0.003999,0.249968,0,0);-ms-transform:matrix(0.279254,0.004468,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.279254,0.004468,-0.003999,0.249968,0,0);}
.mc3_c01334{transform:matrix(0.279489,0.004472,-0.003999,0.249968,0,0);-ms-transform:matrix(0.279489,0.004472,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.279489,0.004472,-0.003999,0.249968,0,0);}
.m9c_c01334{transform:matrix(0.279844,0.004478,-0.003999,0.249968,0,0);-ms-transform:matrix(0.279844,0.004478,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.279844,0.004478,-0.003999,0.249968,0,0);}
.me9_c01334{transform:matrix(0.280715,0.003369,-0.003000,0.249982,0,0);-ms-transform:matrix(0.280715,0.003369,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.280715,0.003369,-0.003000,0.249982,0,0);}
.mcb_c01334{transform:matrix(0.282455,0.003389,-0.003000,0.249982,0,0);-ms-transform:matrix(0.282455,0.003389,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.282455,0.003389,-0.003000,0.249982,0,0);}
.mbd_c01334{transform:matrix(0.284214,0.004547,-0.003999,0.249968,0,0);-ms-transform:matrix(0.284214,0.004547,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.284214,0.004547,-0.003999,0.249968,0,0);}
.m71_c01334{transform:matrix(0.284274,0.004548,-0.003999,0.249968,0,0);-ms-transform:matrix(0.284274,0.004548,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.284274,0.004548,-0.003999,0.249968,0,0);}
.m12c_c01334{transform:matrix(0.285294,0.004850,-0.004249,0.249964,0,0);-ms-transform:matrix(0.285294,0.004850,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.285294,0.004850,-0.004249,0.249964,0,0);}
.m9f_c01334{transform:matrix(0.285858,0.004574,-0.003999,0.249968,0,0);-ms-transform:matrix(0.285858,0.004574,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.285858,0.004574,-0.003999,0.249968,0,0);}
.m14c_c01334{transform:matrix(0.290362,0.004355,-0.003750,0.249972,0,0);-ms-transform:matrix(0.290362,0.004355,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.290362,0.004355,-0.003750,0.249972,0,0);}
.m153_c01334{transform:matrix(0.292017,0.004380,-0.003750,0.249972,0,0);-ms-transform:matrix(0.292017,0.004380,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.292017,0.004380,-0.003750,0.249972,0,0);}
.m13d_c01334{transform:matrix(0.297298,0.006541,-0.005499,0.249940,0,0);-ms-transform:matrix(0.297298,0.006541,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.297298,0.006541,-0.005499,0.249940,0,0);}
.m151_c01334{transform:matrix(0.303126,0.004547,-0.003750,0.249972,0,0);-ms-transform:matrix(0.303126,0.004547,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.303126,0.004547,-0.003750,0.249972,0,0);}
.m86_c01334{transform:matrix(0.308136,0.004930,-0.003999,0.249968,0,0);-ms-transform:matrix(0.308136,0.004930,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.308136,0.004930,-0.003999,0.249968,0,0);}
.m14b_c01334{transform:matrix(0.310320,0.004655,-0.003750,0.249972,0,0);-ms-transform:matrix(0.310320,0.004655,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.310320,0.004655,-0.003750,0.249972,0,0);}
.m4c_c01334{transform:matrix(0.312380,0.004998,-0.003999,0.249968,0,0);-ms-transform:matrix(0.312380,0.004998,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.312380,0.004998,-0.003999,0.249968,0,0);}
.m14d_c01334{transform:matrix(0.313065,0.004696,-0.003750,0.249972,0,0);-ms-transform:matrix(0.313065,0.004696,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.313065,0.004696,-0.003750,0.249972,0,0);}
.m14e_c01334{transform:matrix(0.315280,0.004729,-0.003750,0.249972,0,0);-ms-transform:matrix(0.315280,0.004729,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.315280,0.004729,-0.003750,0.249972,0,0);}
.m154_c01334{transform:matrix(0.318849,0.004783,-0.003750,0.249972,0,0);-ms-transform:matrix(0.318849,0.004783,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.318849,0.004783,-0.003750,0.249972,0,0);}
.m152_c01334{transform:matrix(0.324463,0.004867,-0.003750,0.249972,0,0);-ms-transform:matrix(0.324463,0.004867,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.324463,0.004867,-0.003750,0.249972,0,0);}
.m14f_c01334{transform:matrix(0.330253,0.004954,-0.003750,0.249972,0,0);-ms-transform:matrix(0.330253,0.004954,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.330253,0.004954,-0.003750,0.249972,0,0);}
.md8_c01334{transform:matrix(0.331436,0.003977,-0.003000,0.249982,0,0);-ms-transform:matrix(0.331436,0.003977,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.331436,0.003977,-0.003000,0.249982,0,0);}
.m3d_c01334{transform:matrix(0.331563,0.005305,-0.003999,0.249968,0,0);-ms-transform:matrix(0.331563,0.005305,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.331563,0.005305,-0.003999,0.249968,0,0);}
.m5f_c01334{transform:matrix(0.334572,0.005353,-0.003999,0.249968,0,0);-ms-transform:matrix(0.334572,0.005353,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.334572,0.005353,-0.003999,0.249968,0,0);}
.m58_c01334{transform:matrix(0.338497,0.005416,-0.003999,0.249968,0,0);-ms-transform:matrix(0.338497,0.005416,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.338497,0.005416,-0.003999,0.249968,0,0);}
.m13f_c01334{transform:matrix(0.348326,0.007663,-0.005499,0.249940,0,0);-ms-transform:matrix(0.348326,0.007663,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.348326,0.007663,-0.005499,0.249940,0,0);}
.m79_c01334{transform:matrix(0.361904,0.005790,-0.003999,0.249968,0,0);-ms-transform:matrix(0.361904,0.005790,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.361904,0.005790,-0.003999,0.249968,0,0);}
.me1_c01334{transform:matrix(0.363570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363570,0.000000,0.000000,0.250000,0,0);}
.mb0_c01334{transform:matrix(0.364223,0.005828,-0.003999,0.249968,0,0);-ms-transform:matrix(0.364223,0.005828,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.364223,0.005828,-0.003999,0.249968,0,0);}
.ma0_c01334{transform:matrix(0.367398,0.005878,-0.003999,0.249968,0,0);-ms-transform:matrix(0.367398,0.005878,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.367398,0.005878,-0.003999,0.249968,0,0);}
.m57_c01334{transform:matrix(0.388540,0.006217,-0.003999,0.249968,0,0);-ms-transform:matrix(0.388540,0.006217,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.388540,0.006217,-0.003999,0.249968,0,0);}
.m13c_c01334{transform:matrix(0.409101,0.009000,-0.005499,0.249940,0,0);-ms-transform:matrix(0.409101,0.009000,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.409101,0.009000,-0.005499,0.249940,0,0);}
.mdd_c01334{transform:matrix(0.455342,0.005464,-0.003000,0.249982,0,0);-ms-transform:matrix(0.455342,0.005464,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.455342,0.005464,-0.003000,0.249982,0,0);}
.mde_c01334{transform:matrix(0.455795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455795,0.000000,0.000000,0.250000,0,0);}
.mec_c01334{transform:matrix(0.500714,0.006009,-0.003000,0.249982,0,0);-ms-transform:matrix(0.500714,0.006009,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.500714,0.006009,-0.003000,0.249982,0,0);}
.m12f_c01334{transform:matrix(0.529419,0.009000,-0.004249,0.249964,0,0);-ms-transform:matrix(0.529419,0.009000,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.529419,0.009000,-0.004249,0.249964,0,0);}
.ma8_c01334{transform:matrix(0.564703,0.009035,-0.003999,0.249968,0,0);-ms-transform:matrix(0.564703,0.009035,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.564703,0.009035,-0.003999,0.249968,0,0);}
.m1_c01334{transform:matrix(0.585165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.585165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.585165,0.000000,0.000000,0.250000,0,0);}
.m14a_c01334{transform:matrix(0.618845,0.009283,-0.003750,0.249972,0,0);-ms-transform:matrix(0.618845,0.009283,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.618845,0.009283,-0.003750,0.249972,0,0);}
.med_c01334{transform:matrix(0.746036,0.008952,-0.003000,0.249982,0,0);-ms-transform:matrix(0.746036,0.008952,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.746036,0.008952,-0.003000,0.249982,0,0);}
.m122_c01334{transform:matrix(0.749816,0.008998,-0.003000,0.249982,0,0);-ms-transform:matrix(0.749816,0.008998,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.749816,0.008998,-0.003000,0.249982,0,0);}
.m13e_c01334{transform:matrix(0.755017,0.016610,-0.005499,0.249940,0,0);-ms-transform:matrix(0.755017,0.016610,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.755017,0.016610,-0.005499,0.249940,0,0);}
.m156_c01334{transform:matrix(0.917027,0.013755,-0.003750,0.249972,0,0);-ms-transform:matrix(0.917027,0.013755,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.917027,0.013755,-0.003750,0.249972,0,0);}
.mdc_c01334{transform:matrix(1.251115,0.015013,-0.003000,0.249982,0,0);-ms-transform:matrix(1.251115,0.015013,-0.003000,0.249982,0,0);-webkit-transform:matrix(1.251115,0.015013,-0.003000,0.249982,0,0);}
.mdb_c01334{transform:matrix(1.388255,0.016659,-0.003000,0.249982,0,0);-ms-transform:matrix(1.388255,0.016659,-0.003000,0.249982,0,0);-webkit-transform:matrix(1.388255,0.016659,-0.003000,0.249982,0,0);}
.mda_c01334{transform:matrix(1.928801,0.023146,-0.003000,0.249982,0,0);-ms-transform:matrix(1.928801,0.023146,-0.003000,0.249982,0,0);-webkit-transform:matrix(1.928801,0.023146,-0.003000,0.249982,0,0);}
.v0_c01334{vertical-align:0.000000px;}
.ls0_c01334{letter-spacing:0.000000px;}
.sc__c01334{text-shadow:none;}
.sc0_c01334{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__c01334{-webkit-text-stroke:0px transparent;}
.sc0_c01334{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01334{word-spacing:0.000000px;}
.fc0_c01334{color:transparent;}
.fs10_c01334{font-size:48.011615px;}
.fs12_c01334{font-size:60.006750px;}
.fs0_c01334{font-size:66.000000px;}
.fs4_c01334{font-size:72.004356px;}
.fs9_c01334{font-size:72.005184px;}
.fs1_c01334{font-size:72.009215px;}
.fse_c01334{font-size:72.010403px;}
.fsa_c01334{font-size:78.000000px;}
.fs6_c01334{font-size:78.009983px;}
.fsf_c01334{font-size:78.018874px;}
.fsb_c01334{font-size:84.000000px;}
.fs8_c01334{font-size:84.006048px;}
.fs11_c01334{font-size:84.009449px;}
.fs5_c01334{font-size:84.010751px;}
.fs3_c01334{font-size:90.005445px;}
.fsc_c01334{font-size:90.006480px;}
.fs2_c01334{font-size:90.011519px;}
.fsd_c01334{font-size:96.006912px;}
.fs7_c01334{font-size:102.013055px;}
.y0_c01334{bottom:0.000000px;}
.y160_c01334{bottom:110.025420px;}
.y15e_c01334{bottom:117.467917px;}
.y15f_c01334{bottom:117.473985px;}
.y15d_c01334{bottom:118.629532px;}
.y15c_c01334{bottom:119.327070px;}
.y15b_c01334{bottom:119.763510px;}
.y15a_c01334{bottom:120.710040px;}
.y159_c01334{bottom:121.362195px;}
.y158_c01334{bottom:123.017430px;}
.y157_c01334{bottom:124.628107px;}
.y156_c01334{bottom:125.989305px;}
.y155_c01334{bottom:126.686753px;}
.y154_c01334{bottom:128.063835px;}
.y153_c01334{bottom:129.895350px;}
.y152_c01334{bottom:136.524585px;}
.y151_c01334{bottom:138.327240px;}
.y150_c01334{bottom:138.813668px;}
.y14f_c01334{bottom:139.153102px;}
.y14e_c01334{bottom:140.304090px;}
.y14d_c01334{bottom:141.288443px;}
.y14c_c01334{bottom:143.265292px;}
.y14b_c01334{bottom:144.248903px;}
.y14a_c01334{bottom:144.723000px;}
.y149_c01334{bottom:160.766187px;}
.y148_c01334{bottom:169.902267px;}
.y147_c01334{bottom:172.275252px;}
.y146_c01334{bottom:184.395693px;}
.y145_c01334{bottom:185.943954px;}
.y144_c01334{bottom:187.391796px;}
.y143_c01334{bottom:188.111031px;}
.y142_c01334{bottom:188.835942px;}
.y141_c01334{bottom:191.248176px;}
.y140_c01334{bottom:191.979027px;}
.y13f_c01334{bottom:193.438749px;}
.y13e_c01334{bottom:195.834879px;}
.y13d_c01334{bottom:196.553718px;}
.y13c_c01334{bottom:198.002979px;}
.y13b_c01334{bottom:198.731982px;}
.y13a_c01334{bottom:199.432605px;}
.y139_c01334{bottom:200.614500px;}
.y138_c01334{bottom:222.118518px;}
.y137_c01334{bottom:223.084382px;}
.y136_c01334{bottom:223.459002px;}
.y135_c01334{bottom:225.342024px;}
.y134_c01334{bottom:226.458083px;}
.y133_c01334{bottom:227.187077px;}
.y132_c01334{bottom:228.680178px;}
.y131_c01334{bottom:229.059924px;}
.y130_c01334{bottom:230.355222px;}
.y12f_c01334{bottom:230.924994px;}
.y12e_c01334{bottom:231.474927px;}
.y12d_c01334{bottom:233.862696px;}
.y12c_c01334{bottom:234.633000px;}
.y12b_c01334{bottom:261.123252px;}
.y12a_c01334{bottom:261.304602px;}
.y129_c01334{bottom:261.660792px;}
.y128_c01334{bottom:261.922656px;}
.y127_c01334{bottom:262.356576px;}
.y126_c01334{bottom:262.712388px;}
.y125_c01334{bottom:263.239272px;}
.y124_c01334{bottom:263.850228px;}
.y123_c01334{bottom:264.133812px;}
.y122_c01334{bottom:264.815796px;}
.y121_c01334{bottom:265.777668px;}
.y120_c01334{bottom:266.211174px;}
.y11f_c01334{bottom:294.337584px;}
.y11e_c01334{bottom:295.020240px;}
.y11d_c01334{bottom:295.314852px;}
.y11c_c01334{bottom:295.912464px;}
.y11b_c01334{bottom:296.495028px;}
.y11a_c01334{bottom:296.985828px;}
.y119_c01334{bottom:297.478602px;}
.y118_c01334{bottom:298.276182px;}
.y117_c01334{bottom:298.672572px;}
.y116_c01334{bottom:298.871892px;}
.y115_c01334{bottom:299.644482px;}
.y114_c01334{bottom:300.231972px;}
.y113_c01334{bottom:327.830202px;}
.y112_c01334{bottom:330.802668px;}
.y111_c01334{bottom:332.202414px;}
.y110_c01334{bottom:332.568594px;}
.y10f_c01334{bottom:334.309962px;}
.y10e_c01334{bottom:335.877942px;}
.y10d_c01334{bottom:336.746016px;}
.y10c_c01334{bottom:337.813602px;}
.y10b_c01334{bottom:338.305134px;}
.y10a_c01334{bottom:364.730580px;}
.y109_c01334{bottom:364.924128px;}
.y108_c01334{bottom:365.525340px;}
.y107_c01334{bottom:366.197604px;}
.y106_c01334{bottom:367.081914px;}
.y105_c01334{bottom:368.277120px;}
.y104_c01334{bottom:369.064542px;}
.y103_c01334{bottom:369.836556px;}
.y102_c01334{bottom:370.434096px;}
.y101_c01334{bottom:398.150466px;}
.y100_c01334{bottom:399.184254px;}
.yff_c01334{bottom:399.762720px;}
.yfe_c01334{bottom:400.886268px;}
.yfd_c01334{bottom:401.329476px;}
.yfc_c01334{bottom:401.617134px;}
.yfb_c01334{bottom:402.596562px;}
.yfa_c01334{bottom:403.045404px;}
.yf9_c01334{bottom:404.324340px;}
.yf8_c01334{bottom:405.325932px;}
.yf7_c01334{bottom:405.752916px;}
.yf6_c01334{bottom:406.303092px;}
.yf5_c01334{bottom:407.159760px;}
.yf4_c01334{bottom:436.182828px;}
.yf3_c01334{bottom:436.763022px;}
.yf2_c01334{bottom:436.997310px;}
.yf1_c01334{bottom:437.691444px;}
.yf0_c01334{bottom:438.874890px;}
.yef_c01334{bottom:439.266156px;}
.yee_c01334{bottom:439.923444px;}
.yed_c01334{bottom:440.840724px;}
.yec_c01334{bottom:441.498552px;}
.yeb_c01334{bottom:442.153266px;}
.yea_c01334{bottom:443.193540px;}
.ye9_c01334{bottom:443.611500px;}
.ye8_c01334{bottom:477.090000px;}
.ye7_c01334{bottom:489.646500px;}
.ye6_c01334{bottom:502.652382px;}
.ye5_c01334{bottom:506.403924px;}
.ye4_c01334{bottom:508.419258px;}
.ye3_c01334{bottom:513.000012px;}
.ye2_c01334{bottom:538.703454px;}
.ye1_c01334{bottom:538.893498px;}
.ye0_c01334{bottom:539.873778px;}
.ydf_c01334{bottom:540.282180px;}
.yde_c01334{bottom:541.192746px;}
.ydd_c01334{bottom:541.996518px;}
.ydc_c01334{bottom:543.302292px;}
.ydb_c01334{bottom:543.697626px;}
.yda_c01334{bottom:544.085976px;}
.yd9_c01334{bottom:544.484514px;}
.yd8_c01334{bottom:544.750248px;}
.yd7_c01334{bottom:545.797470px;}
.yd6_c01334{bottom:546.195954px;}
.yd5_c01334{bottom:547.355784px;}
.yd4_c01334{bottom:547.833000px;}
.yd3_c01334{bottom:576.676836px;}
.yd2_c01334{bottom:577.056648px;}
.yd1_c01334{bottom:578.263788px;}
.yd0_c01334{bottom:578.628696px;}
.ycf_c01334{bottom:579.349980px;}
.yce_c01334{bottom:579.821832px;}
.ycd_c01334{bottom:580.565052px;}
.ycc_c01334{bottom:581.764644px;}
.ycb_c01334{bottom:582.118320px;}
.yca_c01334{bottom:582.590028px;}
.yc9_c01334{bottom:582.960960px;}
.yc8_c01334{bottom:583.431552px;}
.yc7_c01334{bottom:609.483660px;}
.yc6_c01334{bottom:611.127648px;}
.yc5_c01334{bottom:611.538876px;}
.yc4_c01334{bottom:612.113856px;}
.yc3_c01334{bottom:612.969384px;}
.yc2_c01334{bottom:613.398000px;}
.yc1_c01334{bottom:613.686384px;}
.yc0_c01334{bottom:614.100096px;}
.ybf_c01334{bottom:614.401968px;}
.ybe_c01334{bottom:615.258864px;}
.ybd_c01334{bottom:616.107996px;}
.ybc_c01334{bottom:617.392308px;}
.ybb_c01334{bottom:617.817528px;}
.yba_c01334{bottom:619.074396px;}
.yb9_c01334{bottom:644.753664px;}
.yb8_c01334{bottom:645.002868px;}
.yb7_c01334{bottom:646.372968px;}
.yb6_c01334{bottom:648.186876px;}
.yb5_c01334{bottom:648.685428px;}
.yb4_c01334{bottom:649.004772px;}
.yb3_c01334{bottom:650.325600px;}
.yb2_c01334{bottom:651.994440px;}
.yb1_c01334{bottom:652.464252px;}
.yb0_c01334{bottom:653.937996px;}
.yaf_c01334{bottom:654.447888px;}
.yae_c01334{bottom:679.966968px;}
.yad_c01334{bottom:684.437904px;}
.yac_c01334{bottom:684.921984px;}
.yab_c01334{bottom:685.525512px;}
.yaa_c01334{bottom:685.994556px;}
.ya9_c01334{bottom:687.518016px;}
.ya8_c01334{bottom:687.986508px;}
.ya7_c01334{bottom:688.885500px;}
.ya6_c01334{bottom:689.818992px;}
.ya5_c01334{bottom:713.706408px;}
.ya4_c01334{bottom:716.397072px;}
.ya3_c01334{bottom:717.053196px;}
.ya2_c01334{bottom:717.389208px;}
.ya1_c01334{bottom:719.666436px;}
.ya0_c01334{bottom:720.168396px;}
.y9f_c01334{bottom:720.671796px;}
.y9e_c01334{bottom:721.157460px;}
.y9d_c01334{bottom:721.834020px;}
.y9c_c01334{bottom:722.469612px;}
.y9b_c01334{bottom:723.304056px;}
.y9a_c01334{bottom:724.263996px;}
.y99_c01334{bottom:724.923744px;}
.y98_c01334{bottom:748.101444px;}
.y97_c01334{bottom:749.163480px;}
.y96_c01334{bottom:750.063696px;}
.y95_c01334{bottom:750.392340px;}
.y94_c01334{bottom:751.462860px;}
.y93_c01334{bottom:751.916040px;}
.y92_c01334{bottom:752.997780px;}
.y91_c01334{bottom:753.463380px;}
.y90_c01334{bottom:754.066836px;}
.y8f_c01334{bottom:755.303052px;}
.y8e_c01334{bottom:755.764524px;}
.y8d_c01334{bottom:756.366024px;}
.y8c_c01334{bottom:757.288128px;}
.y8b_c01334{bottom:758.679672px;}
.y8a_c01334{bottom:784.577640px;}
.y89_c01334{bottom:785.473980px;}
.y88_c01334{bottom:785.829348px;}
.y87_c01334{bottom:786.923352px;}
.y86_c01334{bottom:787.285440px;}
.y85_c01334{bottom:787.765848px;}
.y84_c01334{bottom:788.127888px;}
.y83_c01334{bottom:789.446544px;}
.y82_c01334{bottom:789.817188px;}
.y81_c01334{bottom:790.407936px;}
.y80_c01334{bottom:791.623536px;}
.y7f_c01334{bottom:792.341856px;}
.y7e_c01334{bottom:792.700716px;}
.y7d_c01334{bottom:821.296320px;}
.y7c_c01334{bottom:821.721780px;}
.y7b_c01334{bottom:822.149892px;}
.y7a_c01334{bottom:822.721380px;}
.y79_c01334{bottom:823.585512px;}
.y78_c01334{bottom:824.002752px;}
.y77_c01334{bottom:825.586032px;}
.y76_c01334{bottom:826.006884px;}
.y75_c01334{bottom:826.863204px;}
.y74_c01334{bottom:828.428544px;}
.y73_c01334{bottom:829.270296px;}
.y72_c01334{bottom:829.695012px;}
.y71_c01334{bottom:857.172120px;}
.y70_c01334{bottom:858.395484px;}
.y6f_c01334{bottom:858.752028px;}
.y6e_c01334{bottom:859.223880px;}
.y6d_c01334{bottom:860.198940px;}
.y6c_c01334{bottom:860.549340px;}
.y6b_c01334{bottom:860.798148px;}
.y6a_c01334{bottom:861.876408px;}
.y69_c01334{bottom:862.716612px;}
.y68_c01334{bottom:863.447568px;}
.y67_c01334{bottom:892.414656px;}
.y66_c01334{bottom:893.348340px;}
.y65_c01334{bottom:893.820240px;}
.y64_c01334{bottom:894.274884px;}
.y63_c01334{bottom:895.025940px;}
.y62_c01334{bottom:895.343916px;}
.y61_c01334{bottom:896.573184px;}
.y60_c01334{bottom:897.043068px;}
.y5f_c01334{bottom:898.108428px;}
.y5e_c01334{bottom:898.567956px;}
.y5d_c01334{bottom:899.175804px;}
.y5c_c01334{bottom:899.641596px;}
.y5b_c01334{bottom:900.242544px;}
.y5a_c01334{bottom:901.312536px;}
.y59_c01334{bottom:903.145704px;}
.y58_c01334{bottom:927.334164px;}
.y57_c01334{bottom:927.663936px;}
.y56_c01334{bottom:929.617956px;}
.y55_c01334{bottom:930.946512px;}
.y54_c01334{bottom:931.776372px;}
.y53_c01334{bottom:932.266164px;}
.y52_c01334{bottom:933.267612px;}
.y51_c01334{bottom:933.750264px;}
.y50_c01334{bottom:934.239216px;}
.y4f_c01334{bottom:935.394684px;}
.y4e_c01334{bottom:935.888604px;}
.y4d_c01334{bottom:937.168008px;}
.y4c_c01334{bottom:939.174156px;}
.y4b_c01334{bottom:939.329232px;}
.y4a_c01334{bottom:960.996444px;}
.y49_c01334{bottom:961.317720px;}
.y48_c01334{bottom:962.411868px;}
.y47_c01334{bottom:963.181068px;}
.y46_c01334{bottom:963.844932px;}
.y45_c01334{bottom:964.171200px;}
.y44_c01334{bottom:964.602516px;}
.y43_c01334{bottom:964.826052px;}
.y42_c01334{bottom:965.487576px;}
.y41_c01334{bottom:966.238632px;}
.y40_c01334{bottom:966.462384px;}
.y3f_c01334{bottom:967.228476px;}
.y3e_c01334{bottom:967.557132px;}
.y3d_c01334{bottom:969.026004px;}
.y3c_c01334{bottom:995.815500px;}
.y3b_c01334{bottom:997.033860px;}
.y3a_c01334{bottom:998.459772px;}
.y39_c01334{bottom:998.804556px;}
.y38_c01334{bottom:999.881340px;}
.y37_c01334{bottom:1000.926708px;}
.y36_c01334{bottom:1002.512436px;}
.y35_c01334{bottom:1003.039476px;}
.y34_c01334{bottom:1004.063388px;}
.y33_c01334{bottom:1004.589324px;}
.y32_c01334{bottom:1005.621612px;}
.y31_c01334{bottom:1007.368500px;}
.y30_c01334{bottom:1033.856592px;}
.y2f_c01334{bottom:1034.218618px;}
.y2e_c01334{bottom:1035.068583px;}
.y2d_c01334{bottom:1035.448429px;}
.y2c_c01334{bottom:1036.021606px;}
.y2b_c01334{bottom:1037.121067px;}
.y2a_c01334{bottom:1037.483094px;}
.y29_c01334{bottom:1038.220099px;}
.y28_c01334{bottom:1039.417108px;}
.y27_c01334{bottom:1039.660203px;}
.y26_c01334{bottom:1040.848516px;}
.y25_c01334{bottom:1066.564467px;}
.y24_c01334{bottom:1068.154077px;}
.y23_c01334{bottom:1068.884779px;}
.y22_c01334{bottom:1069.603569px;}
.y21_c01334{bottom:1070.085171px;}
.y20_c01334{bottom:1071.174897px;}
.y1f_c01334{bottom:1072.377829px;}
.y1e_c01334{bottom:1072.740087px;}
.y1d_c01334{bottom:1073.791500px;}
.y1c_c01334{bottom:1100.602992px;}
.y1b_c01334{bottom:1101.322068px;}
.y1a_c01334{bottom:1102.041696px;}
.y19_c01334{bottom:1102.473888px;}
.y18_c01334{bottom:1103.608584px;}
.y17_c01334{bottom:1104.050688px;}
.y16_c01334{bottom:1104.457932px;}
.y15_c01334{bottom:1104.889404px;}
.y14_c01334{bottom:1105.890564px;}
.y13_c01334{bottom:1106.616492px;}
.y12_c01334{bottom:1106.897112px;}
.y11_c01334{bottom:1107.753888px;}
.y10_c01334{bottom:1109.157624px;}
.yf_c01334{bottom:1134.381864px;}
.ye_c01334{bottom:1134.842496px;}
.yd_c01334{bottom:1135.743600px;}
.yc_c01334{bottom:1136.283264px;}
.yb_c01334{bottom:1137.346392px;}
.ya_c01334{bottom:1137.686880px;}
.y9_c01334{bottom:1139.104968px;}
.y8_c01334{bottom:1139.627832px;}
.y7_c01334{bottom:1140.695088px;}
.y6_c01334{bottom:1142.250216px;}
.y5_c01334{bottom:1142.781096px;}
.y4_c01334{bottom:1144.375944px;}
.y3_c01334{bottom:1144.898520px;}
.y2_c01334{bottom:1146.423000px;}
.y1_c01334{bottom:1199.866500px;}
.h12_c01334{height:48.011615px;}
.h14_c01334{height:60.006750px;}
.h2_c01334{height:66.000000px;}
.h6_c01334{height:72.004356px;}
.hb_c01334{height:72.005184px;}
.h3_c01334{height:72.009215px;}
.h10_c01334{height:72.010403px;}
.hc_c01334{height:78.000000px;}
.h8_c01334{height:78.009983px;}
.h11_c01334{height:78.018874px;}
.hd_c01334{height:84.000000px;}
.ha_c01334{height:84.006048px;}
.h13_c01334{height:84.009449px;}
.h7_c01334{height:84.010751px;}
.h5_c01334{height:90.005445px;}
.he_c01334{height:90.006480px;}
.h4_c01334{height:90.011519px;}
.hf_c01334{height:96.006912px;}
.h9_c01334{height:102.013055px;}
.h1_c01334{height:1250.250000px;}
.h0_c01334{height:1250.370000px;}
.w1_c01334{width:912.000000px;}
.w0_c01334{width:912.300000px;}
.x0_c01334{left:0.000000px;}
.x3a_c01334{left:3.735504px;}
.x3b_c01334{left:14.084172px;}
.x45_c01334{left:15.567744px;}
.x27_c01334{left:39.472500px;}
.xe8_c01334{left:132.384117px;}
.xa5_c01334{left:134.737500px;}
.xd5_c01334{left:137.033070px;}
.xbc_c01334{left:139.134012px;}
.xb0_c01334{left:140.194350px;}
.x9b_c01334{left:141.807936px;}
.x69_c01334{left:142.916472px;}
.x4d_c01334{left:144.849324px;}
.x30_c01334{left:146.761140px;}
.x3c_c01334{left:147.814308px;}
.x10_c01334{left:149.130216px;}
.x1b_c01334{left:150.229500px;}
.x3_c01334{left:151.828500px;}
.xea_c01334{left:167.194500px;}
.xc7_c01334{left:170.152944px;}
.xa6_c01334{left:174.505500px;}
.x5f_c01334{left:176.702076px;}
.x55_c01334{left:177.765552px;}
.x31_c01334{left:179.680308px;}
.xdc_c01334{left:181.749000px;}
.x9c_c01334{left:184.535844px;}
.x75_c01334{left:188.013504px;}
.xd6_c01334{left:191.286180px;}
.xcc_c01334{left:203.959848px;}
.xbd_c01334{left:205.022220px;}
.x7e_c01334{left:209.359056px;}
.x4e_c01334{left:211.258128px;}
.x28_c01334{left:213.171000px;}
.x9d_c01334{left:218.315556px;}
.x46_c01334{left:222.896868px;}
.x3d_c01334{left:233.122176px;}
.xc8_c01334{left:236.865240px;}
.x90_c01334{left:239.321928px;}
.x56_c01334{left:242.565672px;}
.x1c_c01334{left:245.812500px;}
.x4_c01334{left:247.108500px;}
.x86_c01334{left:250.388196px;}
.x76_c01334{left:252.042036px;}
.xe2_c01334{left:255.681000px;}
.x11_c01334{left:257.118900px;}
.x9e_c01334{left:261.206988px;}
.xb3_c01334{left:262.980000px;}
.x3e_c01334{left:266.055204px;}
.x91_c01334{left:271.993488px;}
.x7f_c01334{left:273.610620px;}
.x1d_c01334{left:278.745000px;}
.x5_c01334{left:279.769500px;}
.xb5_c01334{left:282.522000px;}
.x87_c01334{left:284.413248px;}
.x4f_c01334{left:287.683248px;}
.xcd_c01334{left:289.845444px;}
.xc4_c01334{left:291.175326px;}
.x9f_c01334{left:293.345556px;}
.x47_c01334{left:299.039292px;}
.xa7_c01334{left:304.365000px;}
.x80_c01334{left:307.111200px;}
.x6a_c01334{left:308.149752px;}
.x29_c01334{left:310.036500px;}
.xce_c01334{left:311.956236px;}
.xe3_c01334{left:321.556500px;}
.x12_c01334{left:323.045568px;}
.xed_c01334{left:331.278038px;}
.x2a_c01334{left:342.976500px;}
.x13_c01334{left:344.616600px;}
.x77_c01334{left:350.014596px;}
.x6b_c01334{left:351.088620px;}
.x60_c01334{left:352.523640px;}
.x32_c01334{left:353.847036px;}
.xcf_c01334{left:355.990320px;}
.xbe_c01334{left:357.291402px;}
.x57_c01334{left:362.998956px;}
.xeb_c01334{left:364.558500px;}
.xb6_c01334{left:369.211500px;}
.x92_c01334{left:370.830240px;}
.x3f_c01334{left:375.676956px;}
.x6_c01334{left:379.447500px;}
.x88_c01334{left:382.711332px;}
.x6c_c01334{left:384.056676px;}
.x50_c01334{left:385.738596px;}
.x21_c01334{left:387.312446px;}
.x1_c01334{left:388.800000px;}
.xa8_c01334{left:391.633500px;}
.x78_c01334{left:395.112816px;}
.xd7_c01334{left:396.784044px;}
.x14_c01334{left:400.489788px;}
.xa0_c01334{left:402.453792px;}
.x61_c01334{left:406.230936px;}
.x40_c01334{left:407.811960px;}
.x2_c01334{left:413.370000px;}
.x81_c01334{left:415.924680px;}
.x33_c01334{left:420.042396px;}
.xb7_c01334{left:423.771000px;}
.x79_c01334{left:427.529844px;}
.x58_c01334{left:428.897124px;}
.xec_c01334{left:430.182000px;}
.xd8_c01334{left:432.167736px;}
.x93_c01334{left:436.185384px;}
.x51_c01334{left:440.255964px;}
.x2b_c01334{left:442.084500px;}
.xd0_c01334{left:444.583506px;}
.xa9_c01334{left:446.989500px;}
.x82_c01334{left:449.459760px;}
.x48_c01334{left:451.465188px;}
.x22_c01334{left:454.312946px;}
.xbf_c01334{left:455.618214px;}
.x59_c01334{left:461.295684px;}
.xe4_c01334{left:463.146000px;}
.xdd_c01334{left:464.265000px;}
.xb1_c01334{left:467.416002px;}
.xa1_c01334{left:470.004192px;}
.x6d_c01334{left:472.385508px;}
.x41_c01334{left:474.528516px;}
.x15_c01334{left:477.503484px;}
.xaa_c01334{left:479.352000px;}
.x34_c01334{left:485.633208px;}
.x1e_c01334{left:487.168500px;}
.xc0_c01334{left:490.146300px;}
.x83_c01334{left:492.619152px;}
.x7a_c01334{left:494.490900px;}
.xc9_c01334{left:497.971212px;}
.xd1_c01334{left:499.399986px;}
.x94_c01334{left:502.119552px;}
.xee_c01334{left:505.983810px;}
.x2c_c01334{left:507.420000px;}
.xd9_c01334{left:508.584408px;}
.x7_c01334{left:509.823000px;}
.xc5_c01334{left:511.527264px;}
.xa2_c01334{left:512.904624px;}
.x6e_c01334{left:515.540400px;}
.x35_c01334{left:518.309352px;}
.xca_c01334{left:520.860114px;}
.x89_c01334{left:525.285612px;}
.x84_c01334{left:527.187756px;}
.x52_c01334{left:528.860544px;}
.x1f_c01334{left:530.950500px;}
.x16_c01334{left:542.020080px;}
.x6f_c01334{left:548.766456px;}
.xd2_c01334{left:553.926948px;}
.xb8_c01334{left:555.030000px;}
.x95_c01334{left:557.158692px;}
.x62_c01334{left:559.918248px;}
.x42_c01334{left:562.539432px;}
.xc1_c01334{left:565.514400px;}
.x53_c01334{left:571.760976px;}
.x49_c01334{left:572.853576px;}
.x2d_c01334{left:574.719000px;}
.x8_c01334{left:576.526500px;}
.x96_c01334{left:579.308748px;}
.x5a_c01334{left:583.131540px;}
.x36_c01334{left:584.744736px;}
.x23_c01334{left:587.175446px;}
.x63_c01334{left:592.860888px;}
.x20_c01334{left:596.295000px;}
.x54_c01334{left:604.172568px;}
.x9_c01334{left:609.205500px;}
.x97_c01334{left:612.286332px;}
.x8a_c01334{left:613.370028px;}
.x5b_c01334{left:615.210576px;}
.xde_c01334{left:617.314500px;}
.xd3_c01334{left:618.726288px;}
.xab_c01334{left:621.111000px;}
.x70_c01334{left:626.033928px;}
.x8b_c01334{left:634.641864px;}
.x64_c01334{left:636.577392px;}
.x24_c01334{left:639.282446px;}
.xb9_c01334{left:642.409500px;}
.x7b_c01334{left:646.288824px;}
.x4a_c01334{left:649.233024px;}
.x43_c01334{left:651.106848px;}
.x71_c01334{left:658.389960px;}
.x37_c01334{left:661.702128px;}
.x17_c01334{left:663.263388px;}
.x8c_c01334{left:667.864392px;}
.x65_c01334{left:669.523032px;}
.xe5_c01334{left:672.364500px;}
.x25_c01334{left:673.813946px;}
.x98_c01334{left:678.135000px;}
.x4b_c01334{left:681.680556px;}
.xdf_c01334{left:682.965000px;}
.x2e_c01334{left:685.387500px;}
.xac_c01334{left:688.092000px;}
.x18_c01334{left:696.464472px;}
.xa_c01334{left:697.836000px;}
.xda_c01334{left:706.008894px;}
.xc2_c01334{left:708.047172px;}
.x7c_c01334{left:712.423380px;}
.x4c_c01334{left:715.394136px;}
.xd4_c01334{left:717.831852px;}
.xb_c01334{left:719.116500px;}
.xa3_c01334{left:721.410804px;}
.x99_c01334{left:722.417136px;}
.x5c_c01334{left:725.660880px;}
.x72_c01334{left:734.862408px;}
.xe6_c01334{left:738.007500px;}
.xba_c01334{left:741.030000px;}
.xdb_c01334{left:750.568536px;}
.x19_c01334{left:751.850136px;}
.x9a_c01334{left:754.026648px;}
.xa4_c01334{left:755.933064px;}
.x5d_c01334{left:758.606964px;}
.x2f_c01334{left:761.535000px;}
.xad_c01334{left:763.972500px;}
.x66_c01334{left:768.937476px;}
.xef_c01334{left:770.023073px;}
.x38_c01334{left:771.065616px;}
.xc6_c01334{left:772.856178px;}
.x44_c01334{left:781.391436px;}
.x26_c01334{left:783.994946px;}
.xc_c01334{left:785.562000px;}
.x8d_c01334{left:788.829336px;}
.x5e_c01334{left:791.293524px;}
.xcb_c01334{left:794.198010px;}
.xae_c01334{left:798.006000px;}
.x67_c01334{left:801.275568px;}
.x39_c01334{left:803.242212px;}
.x1a_c01334{left:807.201300px;}
.xe9_c01334{left:809.416065px;}
.xe0_c01334{left:815.767500px;}
.xd_c01334{left:819.291000px;}
.x73_c01334{left:822.637716px;}
.xc3_c01334{left:832.025178px;}
.x85_c01334{left:846.568980px;}
.xb2_c01334{left:862.650000px;}
.xbb_c01334{left:866.748000px;}
.xe1_c01334{left:872.583000px;}
.xe7_c01334{left:874.194000px;}
.xe_c01334{left:875.610000px;}
.x8e_c01334{left:880.180800px;}
.x68_c01334{left:882.709572px;}
.x7d_c01334{left:891.842760px;}
.xb4_c01334{left:894.510000px;}
.xaf_c01334{left:895.533000px;}
.x8f_c01334{left:896.787564px;}
.x74_c01334{left:898.486140px;}
.xf_c01334{left:904.399500px;}
@media print{
.v0_c01334{vertical-align:0.000000pt;}
.ls0_c01334{letter-spacing:0.000000pt;}
.ws0_c01334{word-spacing:0.000000pt;}
.fs10_c01334{font-size:42.676991pt;}
.fs12_c01334{font-size:53.339333pt;}
.fs0_c01334{font-size:58.666667pt;}
.fs4_c01334{font-size:64.003872pt;}
.fs9_c01334{font-size:64.004608pt;}
.fs1_c01334{font-size:64.008191pt;}
.fse_c01334{font-size:64.009247pt;}
.fsa_c01334{font-size:69.333333pt;}
.fs6_c01334{font-size:69.342207pt;}
.fsf_c01334{font-size:69.350110pt;}
.fsb_c01334{font-size:74.666667pt;}
.fs8_c01334{font-size:74.672042pt;}
.fs11_c01334{font-size:74.675066pt;}
.fs5_c01334{font-size:74.676223pt;}
.fs3_c01334{font-size:80.004840pt;}
.fsc_c01334{font-size:80.005760pt;}
.fs2_c01334{font-size:80.010239pt;}
.fsd_c01334{font-size:85.339477pt;}
.fs7_c01334{font-size:90.678271pt;}
.y0_c01334{bottom:0.000000pt;}
.y160_c01334{bottom:97.800373pt;}
.y15e_c01334{bottom:104.415927pt;}
.y15f_c01334{bottom:104.421320pt;}
.y15d_c01334{bottom:105.448473pt;}
.y15c_c01334{bottom:106.068507pt;}
.y15b_c01334{bottom:106.456453pt;}
.y15a_c01334{bottom:107.297813pt;}
.y159_c01334{bottom:107.877507pt;}
.y158_c01334{bottom:109.348827pt;}
.y157_c01334{bottom:110.780540pt;}
.y156_c01334{bottom:111.990493pt;}
.y155_c01334{bottom:112.610447pt;}
.y154_c01334{bottom:113.834520pt;}
.y153_c01334{bottom:115.462533pt;}
.y152_c01334{bottom:121.355187pt;}
.y151_c01334{bottom:122.957547pt;}
.y150_c01334{bottom:123.389927pt;}
.y14f_c01334{bottom:123.691647pt;}
.y14e_c01334{bottom:124.714747pt;}
.y14d_c01334{bottom:125.589727pt;}
.y14c_c01334{bottom:127.346927pt;}
.y14b_c01334{bottom:128.221247pt;}
.y14a_c01334{bottom:128.642667pt;}
.y149_c01334{bottom:142.903277pt;}
.y148_c01334{bottom:151.024237pt;}
.y147_c01334{bottom:153.133557pt;}
.y146_c01334{bottom:163.907283pt;}
.y145_c01334{bottom:165.283515pt;}
.y144_c01334{bottom:166.570485pt;}
.y143_c01334{bottom:167.209805pt;}
.y142_c01334{bottom:167.854171pt;}
.y141_c01334{bottom:169.998379pt;}
.y140_c01334{bottom:170.648024pt;}
.y13f_c01334{bottom:171.945555pt;}
.y13e_c01334{bottom:174.075448pt;}
.y13d_c01334{bottom:174.714416pt;}
.y13c_c01334{bottom:176.002648pt;}
.y13b_c01334{bottom:176.650651pt;}
.y13a_c01334{bottom:177.273427pt;}
.y139_c01334{bottom:178.324000pt;}
.y138_c01334{bottom:197.438683pt;}
.y137_c01334{bottom:198.297228pt;}
.y136_c01334{bottom:198.630224pt;}
.y135_c01334{bottom:200.304021pt;}
.y134_c01334{bottom:201.296073pt;}
.y133_c01334{bottom:201.944068pt;}
.y132_c01334{bottom:203.271269pt;}
.y131_c01334{bottom:203.608821pt;}
.y130_c01334{bottom:204.760197pt;}
.y12f_c01334{bottom:205.266661pt;}
.y12e_c01334{bottom:205.755491pt;}
.y12d_c01334{bottom:207.877952pt;}
.y12c_c01334{bottom:208.562667pt;}
.y12b_c01334{bottom:232.109557pt;}
.y12a_c01334{bottom:232.270757pt;}
.y129_c01334{bottom:232.587371pt;}
.y128_c01334{bottom:232.820139pt;}
.y127_c01334{bottom:233.205845pt;}
.y126_c01334{bottom:233.522123pt;}
.y125_c01334{bottom:233.990464pt;}
.y124_c01334{bottom:234.533536pt;}
.y123_c01334{bottom:234.785611pt;}
.y122_c01334{bottom:235.391819pt;}
.y121_c01334{bottom:236.246816pt;}
.y120_c01334{bottom:236.632155pt;}
.y11f_c01334{bottom:261.633408pt;}
.y11e_c01334{bottom:262.240213pt;}
.y11d_c01334{bottom:262.502091pt;}
.y11c_c01334{bottom:263.033301pt;}
.y11b_c01334{bottom:263.551136pt;}
.y11a_c01334{bottom:263.987403pt;}
.y119_c01334{bottom:264.425424pt;}
.y118_c01334{bottom:265.134384pt;}
.y117_c01334{bottom:265.486731pt;}
.y116_c01334{bottom:265.663904pt;}
.y115_c01334{bottom:266.350651pt;}
.y114_c01334{bottom:266.872864pt;}
.y113_c01334{bottom:291.404624pt;}
.y112_c01334{bottom:294.046816pt;}
.y111_c01334{bottom:295.291035pt;}
.y110_c01334{bottom:295.616528pt;}
.y10f_c01334{bottom:297.164411pt;}
.y10e_c01334{bottom:298.558171pt;}
.y10d_c01334{bottom:299.329792pt;}
.y10c_c01334{bottom:300.278757pt;}
.y10b_c01334{bottom:300.715675pt;}
.y10a_c01334{bottom:324.204960pt;}
.y109_c01334{bottom:324.377003pt;}
.y108_c01334{bottom:324.911413pt;}
.y107_c01334{bottom:325.508981pt;}
.y106_c01334{bottom:326.295035pt;}
.y105_c01334{bottom:327.357440pt;}
.y104_c01334{bottom:328.057371pt;}
.y103_c01334{bottom:328.743605pt;}
.y102_c01334{bottom:329.274752pt;}
.y101_c01334{bottom:353.911525pt;}
.y100_c01334{bottom:354.830448pt;}
.yff_c01334{bottom:355.344640pt;}
.yfe_c01334{bottom:356.343349pt;}
.yfd_c01334{bottom:356.737312pt;}
.yfc_c01334{bottom:356.993008pt;}
.yfb_c01334{bottom:357.863611pt;}
.yfa_c01334{bottom:358.262581pt;}
.yf9_c01334{bottom:359.399413pt;}
.yf8_c01334{bottom:360.289717pt;}
.yf7_c01334{bottom:360.669259pt;}
.yf6_c01334{bottom:361.158304pt;}
.yf5_c01334{bottom:361.919787pt;}
.yf4_c01334{bottom:387.718069pt;}
.yf3_c01334{bottom:388.233797pt;}
.yf2_c01334{bottom:388.442053pt;}
.yf1_c01334{bottom:389.059061pt;}
.yf0_c01334{bottom:390.111013pt;}
.yef_c01334{bottom:390.458805pt;}
.yee_c01334{bottom:391.043061pt;}
.yed_c01334{bottom:391.858421pt;}
.yec_c01334{bottom:392.443157pt;}
.yeb_c01334{bottom:393.025125pt;}
.yea_c01334{bottom:393.949813pt;}
.ye9_c01334{bottom:394.321333pt;}
.ye8_c01334{bottom:424.080000pt;}
.ye7_c01334{bottom:435.241333pt;}
.ye6_c01334{bottom:446.802117pt;}
.ye5_c01334{bottom:450.136821pt;}
.ye4_c01334{bottom:451.928229pt;}
.ye3_c01334{bottom:456.000011pt;}
.ye2_c01334{bottom:478.847515pt;}
.ye1_c01334{bottom:479.016443pt;}
.ye0_c01334{bottom:479.887803pt;}
.ydf_c01334{bottom:480.250827pt;}
.yde_c01334{bottom:481.060219pt;}
.ydd_c01334{bottom:481.774683pt;}
.ydc_c01334{bottom:482.935371pt;}
.ydb_c01334{bottom:483.286779pt;}
.yda_c01334{bottom:483.631979pt;}
.yd9_c01334{bottom:483.986235pt;}
.yd8_c01334{bottom:484.222443pt;}
.yd7_c01334{bottom:485.153307pt;}
.yd6_c01334{bottom:485.507515pt;}
.yd5_c01334{bottom:486.538475pt;}
.yd4_c01334{bottom:486.962667pt;}
.yd3_c01334{bottom:512.601632pt;}
.yd2_c01334{bottom:512.939243pt;}
.yd1_c01334{bottom:514.012256pt;}
.yd0_c01334{bottom:514.336619pt;}
.ycf_c01334{bottom:514.977760pt;}
.yce_c01334{bottom:515.397184pt;}
.ycd_c01334{bottom:516.057824pt;}
.ycc_c01334{bottom:517.124128pt;}
.ycb_c01334{bottom:517.438507pt;}
.yca_c01334{bottom:517.857803pt;}
.yc9_c01334{bottom:518.187520pt;}
.yc8_c01334{bottom:518.605824pt;}
.yc7_c01334{bottom:541.763253pt;}
.yc6_c01334{bottom:543.224576pt;}
.yc5_c01334{bottom:543.590112pt;}
.yc4_c01334{bottom:544.101205pt;}
.yc3_c01334{bottom:544.861675pt;}
.yc2_c01334{bottom:545.242667pt;}
.yc1_c01334{bottom:545.499008pt;}
.yc0_c01334{bottom:545.866752pt;}
.ybf_c01334{bottom:546.135083pt;}
.ybe_c01334{bottom:546.896768pt;}
.ybd_c01334{bottom:547.651552pt;}
.ybc_c01334{bottom:548.793163pt;}
.ybb_c01334{bottom:549.171136pt;}
.yba_c01334{bottom:550.288352pt;}
.yb9_c01334{bottom:573.114368pt;}
.yb8_c01334{bottom:573.335883pt;}
.yb7_c01334{bottom:574.553749pt;}
.yb6_c01334{bottom:576.166112pt;}
.yb5_c01334{bottom:576.609269pt;}
.yb4_c01334{bottom:576.893131pt;}
.yb3_c01334{bottom:578.067200pt;}
.yb2_c01334{bottom:579.550613pt;}
.yb1_c01334{bottom:579.968224pt;}
.yb0_c01334{bottom:581.278219pt;}
.yaf_c01334{bottom:581.731456pt;}
.yae_c01334{bottom:604.415083pt;}
.yad_c01334{bottom:608.389248pt;}
.yac_c01334{bottom:608.819541pt;}
.yab_c01334{bottom:609.356011pt;}
.yaa_c01334{bottom:609.772939pt;}
.ya9_c01334{bottom:611.127125pt;}
.ya8_c01334{bottom:611.543563pt;}
.ya7_c01334{bottom:612.342667pt;}
.ya6_c01334{bottom:613.172437pt;}
.ya5_c01334{bottom:634.405696pt;}
.ya4_c01334{bottom:636.797397pt;}
.ya3_c01334{bottom:637.380619pt;}
.ya2_c01334{bottom:637.679296pt;}
.ya1_c01334{bottom:639.703499pt;}
.ya0_c01334{bottom:640.149685pt;}
.y9f_c01334{bottom:640.597152pt;}
.y9e_c01334{bottom:641.028853pt;}
.y9d_c01334{bottom:641.630240pt;}
.y9c_c01334{bottom:642.195211pt;}
.y9b_c01334{bottom:642.936939pt;}
.y9a_c01334{bottom:643.790219pt;}
.y99_c01334{bottom:644.376661pt;}
.y98_c01334{bottom:664.979061pt;}
.y97_c01334{bottom:665.923093pt;}
.y96_c01334{bottom:666.723285pt;}
.y95_c01334{bottom:667.015413pt;}
.y94_c01334{bottom:667.966987pt;}
.y93_c01334{bottom:668.369813pt;}
.y92_c01334{bottom:669.331360pt;}
.y91_c01334{bottom:669.745227pt;}
.y90_c01334{bottom:670.281632pt;}
.y8f_c01334{bottom:671.380491pt;}
.y8e_c01334{bottom:671.790688pt;}
.y8d_c01334{bottom:672.325355pt;}
.y8c_c01334{bottom:673.145003pt;}
.y8b_c01334{bottom:674.381931pt;}
.y8a_c01334{bottom:697.402347pt;}
.y89_c01334{bottom:698.199093pt;}
.y88_c01334{bottom:698.514976pt;}
.y87_c01334{bottom:699.487424pt;}
.y86_c01334{bottom:699.809280pt;}
.y85_c01334{bottom:700.236309pt;}
.y84_c01334{bottom:700.558123pt;}
.y83_c01334{bottom:701.730261pt;}
.y82_c01334{bottom:702.059723pt;}
.y81_c01334{bottom:702.584832pt;}
.y80_c01334{bottom:703.665365pt;}
.y7f_c01334{bottom:704.303872pt;}
.y7e_c01334{bottom:704.622859pt;}
.y7d_c01334{bottom:730.041173pt;}
.y7c_c01334{bottom:730.419360pt;}
.y7b_c01334{bottom:730.799904pt;}
.y7a_c01334{bottom:731.307893pt;}
.y79_c01334{bottom:732.076011pt;}
.y78_c01334{bottom:732.446891pt;}
.y77_c01334{bottom:733.854251pt;}
.y76_c01334{bottom:734.228341pt;}
.y75_c01334{bottom:734.989515pt;}
.y74_c01334{bottom:736.380928pt;}
.y73_c01334{bottom:737.129152pt;}
.y72_c01334{bottom:737.506677pt;}
.y71_c01334{bottom:761.930773pt;}
.y70_c01334{bottom:763.018208pt;}
.y6f_c01334{bottom:763.335136pt;}
.y6e_c01334{bottom:763.754560pt;}
.y6d_c01334{bottom:764.621280pt;}
.y6c_c01334{bottom:764.932747pt;}
.y6b_c01334{bottom:765.153909pt;}
.y6a_c01334{bottom:766.112363pt;}
.y69_c01334{bottom:766.859211pt;}
.y68_c01334{bottom:767.508949pt;}
.y67_c01334{bottom:793.257472pt;}
.y66_c01334{bottom:794.087413pt;}
.y65_c01334{bottom:794.506880pt;}
.y64_c01334{bottom:794.911008pt;}
.y63_c01334{bottom:795.578613pt;}
.y62_c01334{bottom:795.861259pt;}
.y61_c01334{bottom:796.953941pt;}
.y60_c01334{bottom:797.371616pt;}
.y5f_c01334{bottom:798.318603pt;}
.y5e_c01334{bottom:798.727072pt;}
.y5d_c01334{bottom:799.267381pt;}
.y5c_c01334{bottom:799.681419pt;}
.y5b_c01334{bottom:800.215595pt;}
.y5a_c01334{bottom:801.166699pt;}
.y59_c01334{bottom:802.796181pt;}
.y58_c01334{bottom:824.297035pt;}
.y57_c01334{bottom:824.590165pt;}
.y56_c01334{bottom:826.327072pt;}
.y55_c01334{bottom:827.508011pt;}
.y54_c01334{bottom:828.245664pt;}
.y53_c01334{bottom:828.681035pt;}
.y52_c01334{bottom:829.571211pt;}
.y51_c01334{bottom:830.000235pt;}
.y50_c01334{bottom:830.434859pt;}
.y4f_c01334{bottom:831.461941pt;}
.y4e_c01334{bottom:831.900981pt;}
.y4d_c01334{bottom:833.038229pt;}
.y4c_c01334{bottom:834.821472pt;}
.y4b_c01334{bottom:834.959317pt;}
.y4a_c01334{bottom:854.219061pt;}
.y49_c01334{bottom:854.504640pt;}
.y48_c01334{bottom:855.477216pt;}
.y47_c01334{bottom:856.160949pt;}
.y46_c01334{bottom:856.751051pt;}
.y45_c01334{bottom:857.041067pt;}
.y44_c01334{bottom:857.424459pt;}
.y43_c01334{bottom:857.623157pt;}
.y42_c01334{bottom:858.211179pt;}
.y41_c01334{bottom:858.878784pt;}
.y40_c01334{bottom:859.077675pt;}
.y3f_c01334{bottom:859.758645pt;}
.y3e_c01334{bottom:860.050784pt;}
.y3d_c01334{bottom:861.356448pt;}
.y3c_c01334{bottom:885.169333pt;}
.y3b_c01334{bottom:886.252320pt;}
.y3a_c01334{bottom:887.519797pt;}
.y39_c01334{bottom:887.826272pt;}
.y38_c01334{bottom:888.783413pt;}
.y37_c01334{bottom:889.712629pt;}
.y36_c01334{bottom:891.122165pt;}
.y35_c01334{bottom:891.590645pt;}
.y34_c01334{bottom:892.500789pt;}
.y33_c01334{bottom:892.968288pt;}
.y32_c01334{bottom:893.885877pt;}
.y31_c01334{bottom:895.438667pt;}
.y30_c01334{bottom:918.983637pt;}
.y2f_c01334{bottom:919.305439pt;}
.y2e_c01334{bottom:920.060963pt;}
.y2d_c01334{bottom:920.398604pt;}
.y2c_c01334{bottom:920.908095pt;}
.y2b_c01334{bottom:921.885393pt;}
.y2a_c01334{bottom:922.207195pt;}
.y29_c01334{bottom:922.862311pt;}
.y28_c01334{bottom:923.926319pt;}
.y27_c01334{bottom:924.142403pt;}
.y26_c01334{bottom:925.198681pt;}
.y25_c01334{bottom:948.057304pt;}
.y24_c01334{bottom:949.470291pt;}
.y23_c01334{bottom:950.119804pt;}
.y22_c01334{bottom:950.758728pt;}
.y21_c01334{bottom:951.186819pt;}
.y20_c01334{bottom:952.155464pt;}
.y1f_c01334{bottom:953.224737pt;}
.y1e_c01334{bottom:953.546744pt;}
.y1d_c01334{bottom:954.481333pt;}
.y1c_c01334{bottom:978.313771pt;}
.y1b_c01334{bottom:978.952949pt;}
.y1a_c01334{bottom:979.592619pt;}
.y19_c01334{bottom:979.976789pt;}
.y18_c01334{bottom:980.985408pt;}
.y17_c01334{bottom:981.378389pt;}
.y16_c01334{bottom:981.740384pt;}
.y15_c01334{bottom:982.123915pt;}
.y14_c01334{bottom:983.013835pt;}
.y13_c01334{bottom:983.659104pt;}
.y12_c01334{bottom:983.908544pt;}
.y11_c01334{bottom:984.670123pt;}
.y10_c01334{bottom:985.917888pt;}
.yf_c01334{bottom:1008.339435pt;}
.ye_c01334{bottom:1008.748885pt;}
.yd_c01334{bottom:1009.549867pt;}
.yc_c01334{bottom:1010.029568pt;}
.yb_c01334{bottom:1010.974571pt;}
.ya_c01334{bottom:1011.277227pt;}
.y9_c01334{bottom:1012.537749pt;}
.y8_c01334{bottom:1013.002517pt;}
.y7_c01334{bottom:1013.951189pt;}
.y6_c01334{bottom:1015.333525pt;}
.y5_c01334{bottom:1015.805419pt;}
.y4_c01334{bottom:1017.223061pt;}
.y3_c01334{bottom:1017.687573pt;}
.y2_c01334{bottom:1019.042667pt;}
.y1_c01334{bottom:1066.548000pt;}
.h12_c01334{height:42.676991pt;}
.h14_c01334{height:53.339333pt;}
.h2_c01334{height:58.666667pt;}
.h6_c01334{height:64.003872pt;}
.hb_c01334{height:64.004608pt;}
.h3_c01334{height:64.008191pt;}
.h10_c01334{height:64.009247pt;}
.hc_c01334{height:69.333333pt;}
.h8_c01334{height:69.342207pt;}
.h11_c01334{height:69.350110pt;}
.hd_c01334{height:74.666667pt;}
.ha_c01334{height:74.672042pt;}
.h13_c01334{height:74.675066pt;}
.h7_c01334{height:74.676223pt;}
.h5_c01334{height:80.004840pt;}
.he_c01334{height:80.005760pt;}
.h4_c01334{height:80.010239pt;}
.hf_c01334{height:85.339477pt;}
.h9_c01334{height:90.678271pt;}
.h1_c01334{height:1111.333333pt;}
.h0_c01334{height:1111.440000pt;}
.w1_c01334{width:810.666667pt;}
.w0_c01334{width:810.933333pt;}
.x0_c01334{left:0.000000pt;}
.x3a_c01334{left:3.320448pt;}
.x3b_c01334{left:12.519264pt;}
.x45_c01334{left:13.837995pt;}
.x27_c01334{left:35.086667pt;}
.xe8_c01334{left:117.674771pt;}
.xa5_c01334{left:119.766667pt;}
.xd5_c01334{left:121.807173pt;}
.xbc_c01334{left:123.674677pt;}
.xb0_c01334{left:124.617200pt;}
.x9b_c01334{left:126.051499pt;}
.x69_c01334{left:127.036864pt;}
.x4d_c01334{left:128.754955pt;}
.x30_c01334{left:130.454347pt;}
.x3c_c01334{left:131.390496pt;}
.x10_c01334{left:132.560192pt;}
.x1b_c01334{left:133.537333pt;}
.x3_c01334{left:134.958667pt;}
.xea_c01334{left:148.617333pt;}
.xc7_c01334{left:151.247061pt;}
.xa6_c01334{left:155.116000pt;}
.x5f_c01334{left:157.068512pt;}
.x55_c01334{left:158.013824pt;}
.x31_c01334{left:159.715829pt;}
.xdc_c01334{left:161.554667pt;}
.x9c_c01334{left:164.031861pt;}
.x75_c01334{left:167.123115pt;}
.xd6_c01334{left:170.032160pt;}
.xcc_c01334{left:181.297643pt;}
.xbd_c01334{left:182.241973pt;}
.x7e_c01334{left:186.096939pt;}
.x4e_c01334{left:187.785003pt;}
.x28_c01334{left:189.485333pt;}
.x9d_c01334{left:194.058272pt;}
.x46_c01334{left:198.130549pt;}
.x3d_c01334{left:207.219712pt;}
.xc8_c01334{left:210.546880pt;}
.x90_c01334{left:212.730603pt;}
.x56_c01334{left:215.613931pt;}
.x1c_c01334{left:218.500000pt;}
.x4_c01334{left:219.652000pt;}
.x86_c01334{left:222.567285pt;}
.x76_c01334{left:224.037365pt;}
.xe2_c01334{left:227.272000pt;}
.x11_c01334{left:228.550133pt;}
.x9e_c01334{left:232.183989pt;}
.xb3_c01334{left:233.760000pt;}
.x3e_c01334{left:236.493515pt;}
.x91_c01334{left:241.771989pt;}
.x7f_c01334{left:243.209440pt;}
.x1d_c01334{left:247.773333pt;}
.x5_c01334{left:248.684000pt;}
.xb5_c01334{left:251.130667pt;}
.x87_c01334{left:252.811776pt;}
.x4f_c01334{left:255.718443pt;}
.xcd_c01334{left:257.640395pt;}
.xc4_c01334{left:258.822512pt;}
.x9f_c01334{left:260.751605pt;}
.x47_c01334{left:265.812704pt;}
.xa7_c01334{left:270.546667pt;}
.x80_c01334{left:272.987733pt;}
.x6a_c01334{left:273.910891pt;}
.x29_c01334{left:275.588000pt;}
.xce_c01334{left:277.294432pt;}
.xe3_c01334{left:285.828000pt;}
.x12_c01334{left:287.151616pt;}
.xed_c01334{left:294.469367pt;}
.x2a_c01334{left:304.868000pt;}
.x13_c01334{left:306.325867pt;}
.x77_c01334{left:311.124085pt;}
.x6b_c01334{left:312.078773pt;}
.x60_c01334{left:313.354347pt;}
.x32_c01334{left:314.530699pt;}
.xcf_c01334{left:316.435840pt;}
.xbe_c01334{left:317.592357pt;}
.x57_c01334{left:322.665739pt;}
.xeb_c01334{left:324.052000pt;}
.xb6_c01334{left:328.188000pt;}
.x92_c01334{left:329.626880pt;}
.x3f_c01334{left:333.935072pt;}
.x6_c01334{left:337.286667pt;}
.x88_c01334{left:340.187851pt;}
.x6c_c01334{left:341.383712pt;}
.x50_c01334{left:342.878752pt;}
.x21_c01334{left:344.277729pt;}
.x1_c01334{left:345.600000pt;}
.xa8_c01334{left:348.118667pt;}
.x78_c01334{left:351.211392pt;}
.xd7_c01334{left:352.696928pt;}
.x14_c01334{left:355.990923pt;}
.xa0_c01334{left:357.736704pt;}
.x61_c01334{left:361.094165pt;}
.x40_c01334{left:362.499520pt;}
.x2_c01334{left:367.440000pt;}
.x81_c01334{left:369.710827pt;}
.x33_c01334{left:373.371019pt;}
.xb7_c01334{left:376.685333pt;}
.x79_c01334{left:380.026528pt;}
.x58_c01334{left:381.241888pt;}
.xec_c01334{left:382.384000pt;}
.xd8_c01334{left:384.149099pt;}
.x93_c01334{left:387.720341pt;}
.x51_c01334{left:391.338635pt;}
.x2b_c01334{left:392.964000pt;}
.xd0_c01334{left:395.185339pt;}
.xa9_c01334{left:397.324000pt;}
.x82_c01334{left:399.519787pt;}
.x48_c01334{left:401.302389pt;}
.x22_c01334{left:403.833729pt;}
.xbf_c01334{left:404.993968pt;}
.x59_c01334{left:410.040608pt;}
.xe4_c01334{left:411.685333pt;}
.xdd_c01334{left:412.680000pt;}
.xb1_c01334{left:415.480891pt;}
.xa1_c01334{left:417.781504pt;}
.x6d_c01334{left:419.898229pt;}
.x41_c01334{left:421.803125pt;}
.x15_c01334{left:424.447541pt;}
.xaa_c01334{left:426.090667pt;}
.x34_c01334{left:431.673963pt;}
.x1e_c01334{left:433.038667pt;}
.xc0_c01334{left:435.685600pt;}
.x83_c01334{left:437.883691pt;}
.x7a_c01334{left:439.547467pt;}
.xc9_c01334{left:442.641077pt;}
.xd1_c01334{left:443.911099pt;}
.x94_c01334{left:446.328491pt;}
.xee_c01334{left:449.763387pt;}
.x2c_c01334{left:451.040000pt;}
.xd9_c01334{left:452.075029pt;}
.x7_c01334{left:453.176000pt;}
.xc5_c01334{left:454.690901pt;}
.xa2_c01334{left:455.915221pt;}
.x6e_c01334{left:458.258133pt;}
.x35_c01334{left:460.719424pt;}
.xca_c01334{left:462.986768pt;}
.x89_c01334{left:466.920544pt;}
.x84_c01334{left:468.611339pt;}
.x52_c01334{left:470.098261pt;}
.x1f_c01334{left:471.956000pt;}
.x16_c01334{left:481.795627pt;}
.x6f_c01334{left:487.792405pt;}
.xd2_c01334{left:492.379509pt;}
.xb8_c01334{left:493.360000pt;}
.x95_c01334{left:495.252171pt;}
.x62_c01334{left:497.705109pt;}
.x42_c01334{left:500.035051pt;}
.xc1_c01334{left:502.679467pt;}
.x53_c01334{left:508.231979pt;}
.x49_c01334{left:509.203179pt;}
.x2d_c01334{left:510.861333pt;}
.x8_c01334{left:512.468000pt;}
.x96_c01334{left:514.941109pt;}
.x5a_c01334{left:518.339147pt;}
.x36_c01334{left:519.773099pt;}
.x23_c01334{left:521.933729pt;}
.x63_c01334{left:526.987456pt;}
.x20_c01334{left:530.040000pt;}
.x54_c01334{left:537.042283pt;}
.x9_c01334{left:541.516000pt;}
.x97_c01334{left:544.254517pt;}
.x8a_c01334{left:545.217803pt;}
.x5b_c01334{left:546.853845pt;}
.xde_c01334{left:548.724000pt;}
.xd3_c01334{left:549.978923pt;}
.xab_c01334{left:552.098667pt;}
.x70_c01334{left:556.474603pt;}
.x8b_c01334{left:564.126101pt;}
.x64_c01334{left:565.846571pt;}
.x24_c01334{left:568.251063pt;}
.xb9_c01334{left:571.030667pt;}
.x7b_c01334{left:574.478955pt;}
.x4a_c01334{left:577.096021pt;}
.x43_c01334{left:578.761643pt;}
.x71_c01334{left:585.235520pt;}
.x37_c01334{left:588.179669pt;}
.x17_c01334{left:589.567456pt;}
.x8c_c01334{left:593.657237pt;}
.x65_c01334{left:595.131584pt;}
.xe5_c01334{left:597.657333pt;}
.x25_c01334{left:598.945729pt;}
.x98_c01334{left:602.786667pt;}
.x4b_c01334{left:605.938272pt;}
.xdf_c01334{left:607.080000pt;}
.x2e_c01334{left:609.233333pt;}
.xac_c01334{left:611.637333pt;}
.x18_c01334{left:619.079531pt;}
.xa_c01334{left:620.298667pt;}
.xda_c01334{left:627.563461pt;}
.xc2_c01334{left:629.375264pt;}
.x7c_c01334{left:633.265227pt;}
.x4c_c01334{left:635.905899pt;}
.xd4_c01334{left:638.072757pt;}
.xb_c01334{left:639.214667pt;}
.xa3_c01334{left:641.254048pt;}
.x99_c01334{left:642.148565pt;}
.x5c_c01334{left:645.031893pt;}
.x72_c01334{left:653.211029pt;}
.xe6_c01334{left:656.006667pt;}
.xba_c01334{left:658.693333pt;}
.xdb_c01334{left:667.172032pt;}
.x19_c01334{left:668.311232pt;}
.x9a_c01334{left:670.245909pt;}
.xa4_c01334{left:671.940501pt;}
.x5d_c01334{left:674.317301pt;}
.x2f_c01334{left:676.920000pt;}
.xad_c01334{left:679.086667pt;}
.x66_c01334{left:683.499979pt;}
.xef_c01334{left:684.464953pt;}
.x38_c01334{left:685.391659pt;}
.xc6_c01334{left:686.983269pt;}
.x44_c01334{left:694.570165pt;}
.x26_c01334{left:696.884396pt;}
.xc_c01334{left:698.277333pt;}
.x8d_c01334{left:701.181632pt;}
.x5e_c01334{left:703.372021pt;}
.xcb_c01334{left:705.953787pt;}
.xae_c01334{left:709.338667pt;}
.x67_c01334{left:712.244949pt;}
.x39_c01334{left:713.993077pt;}
.x1a_c01334{left:717.512267pt;}
.xe9_c01334{left:719.480947pt;}
.xe0_c01334{left:725.126667pt;}
.xd_c01334{left:728.258667pt;}
.x73_c01334{left:731.233525pt;}
.xc3_c01334{left:739.577936pt;}
.x85_c01334{left:752.505760pt;}
.xb2_c01334{left:766.800000pt;}
.xbb_c01334{left:770.442667pt;}
.xe1_c01334{left:775.629333pt;}
.xe7_c01334{left:777.061333pt;}
.xe_c01334{left:778.320000pt;}
.x8e_c01334{left:782.382933pt;}
.x68_c01334{left:784.630731pt;}
.x7d_c01334{left:792.749120pt;}
.xb4_c01334{left:795.120000pt;}
.xaf_c01334{left:796.029333pt;}
.x8f_c01334{left:797.144501pt;}
.x74_c01334{left:798.654347pt;}
.xf_c01334{left:803.910667pt;}
}





/* 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_c01335 {
    display:none;
  }
  .loading-indicator_c01335.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01335 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_c01335 { 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_c01335" -> "#page-container .classname_c01335")
 */
.pf_c01335 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01335 { /* 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_c01335.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01335 { /* 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_c01335 { /* 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_c01335 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01335 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01335 {overflow:visible;}
  }
}
.c_c01335 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01335 { /* 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_c01335:after { /* webkit #35443 */
  content: '';
}
.t_c01335:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01335 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 */
}
.__c01335 { /* 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_c01335 { /* info for Javascript */
  display:none;
}
.l_c01335 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01335 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01335 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01335: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_c01335 {
    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_c01335.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01335.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_c01335 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01335{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01335;src:url('chunks/assets/font_a5f643f2e1cc12c3e063b97c.woff2')format("woff");}.ff1_c01335{font-family:ff1_c01335;line-height:1.000000;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;}
.m0_c01335{transform:matrix(0.008703,2.175873,-0.249998,0.001000,0,0);-ms-transform:matrix(0.008703,2.175873,-0.249998,0.001000,0,0);-webkit-transform:matrix(0.008703,2.175873,-0.249998,0.001000,0,0);}
.v0_c01335{vertical-align:0.000000px;}
.ls0_c01335{letter-spacing:0.000000px;}
.sc__c01335{text-shadow:none;}
.sc0_c01335{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__c01335{-webkit-text-stroke:0px transparent;}
.sc0_c01335{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01335{word-spacing:0.000000px;}
.fc0_c01335{color:transparent;}
.fs0_c01335{font-size:18.000144px;}
.y0_c01335{bottom:0.000000px;}
.y1_c01335{bottom:973.897500px;}
.h2_c01335{height:18.000144px;}
.h1_c01335{height:1250.250000px;}
.h0_c01335{height:1250.370000px;}
.w1_c01335{width:912.000000px;}
.w0_c01335{width:912.300000px;}
.x0_c01335{left:0.000000px;}
.x1_c01335{left:22.140000px;}
@media print{
.v0_c01335{vertical-align:0.000000pt;}
.ls0_c01335{letter-spacing:0.000000pt;}
.ws0_c01335{word-spacing:0.000000pt;}
.fs0_c01335{font-size:16.000128pt;}
.y0_c01335{bottom:0.000000pt;}
.y1_c01335{bottom:865.686667pt;}
.h2_c01335{height:16.000128pt;}
.h1_c01335{height:1111.333333pt;}
.h0_c01335{height:1111.440000pt;}
.w1_c01335{width:810.666667pt;}
.w0_c01335{width:810.933333pt;}
.x0_c01335{left:0.000000pt;}
.x1_c01335{left:19.680000pt;}
}





/* 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_c01336 {
    display:none;
  }
  .loading-indicator_c01336.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01336 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_c01336 { 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_c01336" -> "#page-container .classname_c01336")
 */
.pf_c01336 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01336 { /* 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_c01336.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01336 { /* 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_c01336 { /* 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_c01336 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01336 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01336 {overflow:visible;}
  }
}
.c_c01336 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01336 { /* 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_c01336:after { /* webkit #35443 */
  content: '';
}
.t_c01336:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01336 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 */
}
.__c01336 { /* 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_c01336 { /* info for Javascript */
  display:none;
}
.l_c01336 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01336 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01336 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01336: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_c01336 {
    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_c01336.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01336.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_c01336 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01336{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01336;src:url('chunks/assets/font_74d7e987f08e4505b74f4479.woff2')format("woff");}.ff1_c01336{font-family:ff1_c01336;line-height:1.000000;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;}
.m12_c01336{transform:matrix(0.003247,0.092683,-0.249847,0.008753,0,0);-ms-transform:matrix(0.003247,0.092683,-0.249847,0.008753,0,0);-webkit-transform:matrix(0.003247,0.092683,-0.249847,0.008753,0,0);}
.m13_c01336{transform:matrix(0.004575,0.130580,-0.249847,0.008753,0,0);-ms-transform:matrix(0.004575,0.130580,-0.249847,0.008753,0,0);-webkit-transform:matrix(0.004575,0.130580,-0.249847,0.008753,0,0);}
.m18_c01336{transform:matrix(0.004817,0.137491,-0.249847,0.008753,0,0);-ms-transform:matrix(0.004817,0.137491,-0.249847,0.008753,0,0);-webkit-transform:matrix(0.004817,0.137491,-0.249847,0.008753,0,0);}
.m1c_c01336{transform:matrix(0.005004,0.142817,-0.249847,0.008753,0,0);-ms-transform:matrix(0.005004,0.142817,-0.249847,0.008753,0,0);-webkit-transform:matrix(0.005004,0.142817,-0.249847,0.008753,0,0);}
.m15_c01336{transform:matrix(0.006368,0.181773,-0.249847,0.008753,0,0);-ms-transform:matrix(0.006368,0.181773,-0.249847,0.008753,0,0);-webkit-transform:matrix(0.006368,0.181773,-0.249847,0.008753,0,0);}
.m10_c01336{transform:matrix(0.007132,0.203565,-0.249847,0.008753,0,0);-ms-transform:matrix(0.007132,0.203565,-0.249847,0.008753,0,0);-webkit-transform:matrix(0.007132,0.203565,-0.249847,0.008753,0,0);}
.m11_c01336{transform:matrix(0.007788,0.222299,-0.249847,0.008753,0,0);-ms-transform:matrix(0.007788,0.222299,-0.249847,0.008753,0,0);-webkit-transform:matrix(0.007788,0.222299,-0.249847,0.008753,0,0);}
.md_c01336{transform:matrix(0.008097,0.231103,-0.249847,0.008753,0,0);-ms-transform:matrix(0.008097,0.231103,-0.249847,0.008753,0,0);-webkit-transform:matrix(0.008097,0.231103,-0.249847,0.008753,0,0);}
.m1a_c01336{transform:matrix(0.009209,0.262844,-0.249847,0.008753,0,0);-ms-transform:matrix(0.009209,0.262844,-0.249847,0.008753,0,0);-webkit-transform:matrix(0.009209,0.262844,-0.249847,0.008753,0,0);}
.m17_c01336{transform:matrix(0.009486,0.270769,-0.249847,0.008753,0,0);-ms-transform:matrix(0.009486,0.270769,-0.249847,0.008753,0,0);-webkit-transform:matrix(0.009486,0.270769,-0.249847,0.008753,0,0);}
.mf_c01336{transform:matrix(0.009827,0.280503,-0.249847,0.008753,0,0);-ms-transform:matrix(0.009827,0.280503,-0.249847,0.008753,0,0);-webkit-transform:matrix(0.009827,0.280503,-0.249847,0.008753,0,0);}
.m14_c01336{transform:matrix(0.010476,0.299022,-0.249847,0.008753,0,0);-ms-transform:matrix(0.010476,0.299022,-0.249847,0.008753,0,0);-webkit-transform:matrix(0.010476,0.299022,-0.249847,0.008753,0,0);}
.m19_c01336{transform:matrix(0.010776,0.307586,-0.249847,0.008753,0,0);-ms-transform:matrix(0.010776,0.307586,-0.249847,0.008753,0,0);-webkit-transform:matrix(0.010776,0.307586,-0.249847,0.008753,0,0);}
.m1b_c01336{transform:matrix(0.011879,0.339062,-0.249847,0.008753,0,0);-ms-transform:matrix(0.011879,0.339062,-0.249847,0.008753,0,0);-webkit-transform:matrix(0.011879,0.339062,-0.249847,0.008753,0,0);}
.m16_c01336{transform:matrix(0.012207,0.348431,-0.249847,0.008753,0,0);-ms-transform:matrix(0.012207,0.348431,-0.249847,0.008753,0,0);-webkit-transform:matrix(0.012207,0.348431,-0.249847,0.008753,0,0);}
.mc_c01336{transform:matrix(0.012908,0.368424,-0.249847,0.008753,0,0);-ms-transform:matrix(0.012908,0.368424,-0.249847,0.008753,0,0);-webkit-transform:matrix(0.012908,0.368424,-0.249847,0.008753,0,0);}
.me_c01336{transform:matrix(0.019798,0.565093,-0.249847,0.008753,0,0);-ms-transform:matrix(0.019798,0.565093,-0.249847,0.008753,0,0);-webkit-transform:matrix(0.019798,0.565093,-0.249847,0.008753,0,0);}
.m2_c01336{transform:matrix(0.166460,-0.004994,0.007497,0.249888,0,0);-ms-transform:matrix(0.166460,-0.004994,0.007497,0.249888,0,0);-webkit-transform:matrix(0.166460,-0.004994,0.007497,0.249888,0,0);}
.m1_c01336{transform:matrix(0.172382,-0.005171,0.007497,0.249888,0,0);-ms-transform:matrix(0.172382,-0.005171,0.007497,0.249888,0,0);-webkit-transform:matrix(0.172382,-0.005171,0.007497,0.249888,0,0);}
.m3_c01336{transform:matrix(0.194098,-0.005823,0.007497,0.249888,0,0);-ms-transform:matrix(0.194098,-0.005823,0.007497,0.249888,0,0);-webkit-transform:matrix(0.194098,-0.005823,0.007497,0.249888,0,0);}
.m9_c01336{transform:matrix(0.205430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205430,0.000000,0.000000,0.250000,0,0);}
.ma_c01336{transform:matrix(0.208970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208970,0.000000,0.000000,0.250000,0,0);}
.m6_c01336{transform:matrix(0.215488,-0.005387,0.006248,0.249922,0,0);-ms-transform:matrix(0.215488,-0.005387,0.006248,0.249922,0,0);-webkit-transform:matrix(0.215488,-0.005387,0.006248,0.249922,0,0);}
.mb_c01336{transform:matrix(0.216165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216165,0.000000,0.000000,0.250000,0,0);}
.m5_c01336{transform:matrix(0.224930,-0.005623,0.006248,0.249922,0,0);-ms-transform:matrix(0.224930,-0.005623,0.006248,0.249922,0,0);-webkit-transform:matrix(0.224930,-0.005623,0.006248,0.249922,0,0);}
.m4_c01336{transform:matrix(0.226544,-0.005664,0.006248,0.249922,0,0);-ms-transform:matrix(0.226544,-0.005664,0.006248,0.249922,0,0);-webkit-transform:matrix(0.226544,-0.005664,0.006248,0.249922,0,0);}
.m0_c01336{transform:matrix(0.239180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239180,0.000000,0.000000,0.250000,0,0);}
.m8_c01336{transform:matrix(0.244988,-0.006125,0.006248,0.249922,0,0);-ms-transform:matrix(0.244988,-0.006125,0.006248,0.249922,0,0);-webkit-transform:matrix(0.244988,-0.006125,0.006248,0.249922,0,0);}
.m7_c01336{transform:matrix(0.255895,-0.006397,0.006248,0.249922,0,0);-ms-transform:matrix(0.255895,-0.006397,0.006248,0.249922,0,0);-webkit-transform:matrix(0.255895,-0.006397,0.006248,0.249922,0,0);}
.v0_c01336{vertical-align:0.000000px;}
.ls0_c01336{letter-spacing:0.000000px;}
.sc__c01336{text-shadow:none;}
.sc0_c01336{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__c01336{-webkit-text-stroke:0px transparent;}
.sc0_c01336{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01336{word-spacing:0.000000px;}
.fc0_c01336{color:transparent;}
.fs0_c01336{font-size:24.000000px;}
.fs9_c01336{font-size:35.986065px;}
.fsb_c01336{font-size:71.972131px;}
.fs4_c01336{font-size:83.967486px;}
.fs3_c01336{font-size:90.000000px;}
.fs2_c01336{font-size:90.028121px;}
.fs7_c01336{font-size:95.962841px;}
.fsa_c01336{font-size:101.960518px;}
.fs5_c01336{font-size:113.955873px;}
.fs1_c01336{font-size:114.051288px;}
.fs8_c01336{font-size:131.948906px;}
.fs6_c01336{font-size:191.925682px;}
.y0_c01336{bottom:0.000000px;}
.y17_c01336{bottom:877.865592px;}
.y19_c01336{bottom:883.850466px;}
.y12_c01336{bottom:887.164166px;}
.y1c_c01336{bottom:887.713965px;}
.y1b_c01336{bottom:889.223550px;}
.y15_c01336{bottom:890.246766px;}
.y18_c01336{bottom:891.352890px;}
.y13_c01336{bottom:894.097488px;}
.y16_c01336{bottom:894.192525px;}
.y14_c01336{bottom:894.307344px;}
.y1a_c01336{bottom:894.820601px;}
.y11_c01336{bottom:895.083302px;}
.yf_c01336{bottom:895.941693px;}
.yd_c01336{bottom:896.940668px;}
.yc_c01336{bottom:897.867000px;}
.ye_c01336{bottom:898.993539px;}
.y10_c01336{bottom:912.333909px;}
.ya_c01336{bottom:1017.354000px;}
.yb_c01336{bottom:1017.765000px;}
.y5_c01336{bottom:1018.992000px;}
.y6_c01336{bottom:1021.726087px;}
.y7_c01336{bottom:1022.224575px;}
.y8_c01336{bottom:1023.603337px;}
.y9_c01336{bottom:1024.413262px;}
.y2_c01336{bottom:1089.735000px;}
.y3_c01336{bottom:1090.755870px;}
.y4_c01336{bottom:1092.075720px;}
.y1_c01336{bottom:1098.360000px;}
.h2_c01336{height:24.000000px;}
.hb_c01336{height:35.986065px;}
.hd_c01336{height:71.972131px;}
.h6_c01336{height:83.967486px;}
.h5_c01336{height:90.000000px;}
.h4_c01336{height:90.028121px;}
.h9_c01336{height:95.962841px;}
.hc_c01336{height:101.960518px;}
.h7_c01336{height:113.955873px;}
.h3_c01336{height:114.051288px;}
.ha_c01336{height:131.948906px;}
.h8_c01336{height:191.925682px;}
.h1_c01336{height:1250.250000px;}
.h0_c01336{height:1250.370000px;}
.w1_c01336{width:912.000000px;}
.w0_c01336{width:912.300000px;}
.x0_c01336{left:0.000000px;}
.x1d_c01336{left:142.183527px;}
.x1c_c01336{left:180.774879px;}
.x1b_c01336{left:192.659518px;}
.x1a_c01336{left:207.229566px;}
.x19_c01336{left:227.206296px;}
.x18_c01336{left:239.346963px;}
.x17_c01336{left:288.986805px;}
.x16_c01336{left:313.571574px;}
.x15_c01336{left:352.688691px;}
.x14_c01336{left:369.438330px;}
.xb_c01336{left:376.650000px;}
.x13_c01336{left:396.153226px;}
.xc_c01336{left:398.790000px;}
.x12_c01336{left:413.164189px;}
.x11_c01336{left:433.411530px;}
.xa_c01336{left:444.420000px;}
.x10_c01336{left:483.315489px;}
.x5_c01336{left:488.611500px;}
.xf_c01336{left:511.069869px;}
.xe_c01336{left:532.727173px;}
.xd_c01336{left:573.727500px;}
.x6_c01336{left:597.975000px;}
.x7_c01336{left:617.914500px;}
.x2_c01336{left:661.413000px;}
.x8_c01336{left:673.065000px;}
.x3_c01336{left:695.442000px;}
.x9_c01336{left:705.462000px;}
.x4_c01336{left:739.437000px;}
.x1_c01336{left:803.520000px;}
@media print{
.v0_c01336{vertical-align:0.000000pt;}
.ls0_c01336{letter-spacing:0.000000pt;}
.ws0_c01336{word-spacing:0.000000pt;}
.fs0_c01336{font-size:21.333333pt;}
.fs9_c01336{font-size:31.987614pt;}
.fsb_c01336{font-size:63.975227pt;}
.fs4_c01336{font-size:74.637765pt;}
.fs3_c01336{font-size:80.000000pt;}
.fs2_c01336{font-size:80.024996pt;}
.fs7_c01336{font-size:85.300303pt;}
.fsa_c01336{font-size:90.631572pt;}
.fs5_c01336{font-size:101.294110pt;}
.fs1_c01336{font-size:101.378923pt;}
.fs8_c01336{font-size:117.287917pt;}
.fs6_c01336{font-size:170.600606pt;}
.y0_c01336{bottom:0.000000pt;}
.y17_c01336{bottom:780.324971pt;}
.y19_c01336{bottom:785.644859pt;}
.y12_c01336{bottom:788.590369pt;}
.y1c_c01336{bottom:789.079080pt;}
.y1b_c01336{bottom:790.420933pt;}
.y15_c01336{bottom:791.330459pt;}
.y18_c01336{bottom:792.313680pt;}
.y13_c01336{bottom:794.753323pt;}
.y16_c01336{bottom:794.837800pt;}
.y14_c01336{bottom:794.939861pt;}
.y1a_c01336{bottom:795.396089pt;}
.y11_c01336{bottom:795.629601pt;}
.yf_c01336{bottom:796.392616pt;}
.yd_c01336{bottom:797.280593pt;}
.yc_c01336{bottom:798.104000pt;}
.ye_c01336{bottom:799.105368pt;}
.y10_c01336{bottom:810.963475pt;}
.ya_c01336{bottom:904.314667pt;}
.yb_c01336{bottom:904.680000pt;}
.y5_c01336{bottom:905.770667pt;}
.y6_c01336{bottom:908.200967pt;}
.y7_c01336{bottom:908.644067pt;}
.y8_c01336{bottom:909.869633pt;}
.y9_c01336{bottom:910.589567pt;}
.y2_c01336{bottom:968.653333pt;}
.y3_c01336{bottom:969.560773pt;}
.y4_c01336{bottom:970.733973pt;}
.y1_c01336{bottom:976.320000pt;}
.h2_c01336{height:21.333333pt;}
.hb_c01336{height:31.987614pt;}
.hd_c01336{height:63.975227pt;}
.h6_c01336{height:74.637765pt;}
.h5_c01336{height:80.000000pt;}
.h4_c01336{height:80.024996pt;}
.h9_c01336{height:85.300303pt;}
.hc_c01336{height:90.631572pt;}
.h7_c01336{height:101.294110pt;}
.h3_c01336{height:101.378923pt;}
.ha_c01336{height:117.287917pt;}
.h8_c01336{height:170.600606pt;}
.h1_c01336{height:1111.333333pt;}
.h0_c01336{height:1111.440000pt;}
.w1_c01336{width:810.666667pt;}
.w0_c01336{width:810.933333pt;}
.x0_c01336{left:0.000000pt;}
.x1d_c01336{left:126.385357pt;}
.x1c_c01336{left:160.688781pt;}
.x1b_c01336{left:171.252905pt;}
.x1a_c01336{left:184.204059pt;}
.x19_c01336{left:201.961152pt;}
.x18_c01336{left:212.752856pt;}
.x17_c01336{left:256.877160pt;}
.x16_c01336{left:278.730288pt;}
.x15_c01336{left:313.501059pt;}
.x14_c01336{left:328.389627pt;}
.xb_c01336{left:334.800000pt;}
.x13_c01336{left:352.136201pt;}
.xc_c01336{left:354.480000pt;}
.x12_c01336{left:367.257057pt;}
.x11_c01336{left:385.254693pt;}
.xa_c01336{left:395.040000pt;}
.x10_c01336{left:429.613768pt;}
.x5_c01336{left:434.321333pt;}
.xf_c01336{left:454.284328pt;}
.xe_c01336{left:473.535265pt;}
.xd_c01336{left:509.980000pt;}
.x6_c01336{left:531.533333pt;}
.x7_c01336{left:549.257333pt;}
.x2_c01336{left:587.922667pt;}
.x8_c01336{left:598.280000pt;}
.x3_c01336{left:618.170667pt;}
.x9_c01336{left:627.077333pt;}
.x4_c01336{left:657.277333pt;}
.x1_c01336{left:714.240000pt;}
}





/* 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_c01337 {
    display:none;
  }
  .loading-indicator_c01337.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01337 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_c01337 { 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_c01337" -> "#page-container .classname_c01337")
 */
.pf_c01337 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01337 { /* 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_c01337.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01337 { /* 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_c01337 { /* 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_c01337 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01337 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01337 {overflow:visible;}
  }
}
.c_c01337 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01337 { /* 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_c01337:after { /* webkit #35443 */
  content: '';
}
.t_c01337:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01337 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 */
}
.__c01337 { /* 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_c01337 { /* info for Javascript */
  display:none;
}
.l_c01337 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01337 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01337 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01337: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_c01337 {
    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_c01337.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01337.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_c01337 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01337{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01337;src:url('chunks/assets/font_bfe6362fd3009c591583128f.woff2')format("woff");}.ff1_c01337{font-family:ff1_c01337;line-height:1.000000;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;}
.m0_c01337{transform:matrix(0.120935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120935,0.000000,0.000000,0.250000,0,0);}
.m1_c01337{transform:matrix(0.171025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171025,0.000000,0.000000,0.250000,0,0);}
.m2_c01337{transform:matrix(0.575205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575205,0.000000,0.000000,0.250000,0,0);}
.v0_c01337{vertical-align:0.000000px;}
.ls0_c01337{letter-spacing:0.000000px;}
.sc__c01337{text-shadow:none;}
.sc0_c01337{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__c01337{-webkit-text-stroke:0px transparent;}
.sc0_c01337{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01337{word-spacing:0.000000px;}
.fc0_c01337{color:transparent;}
.fs0_c01337{font-size:18.000000px;}
.fs1_c01337{font-size:24.000000px;}
.y0_c01337{bottom:0.000000px;}
.y3_c01337{bottom:873.991500px;}
.y2_c01337{bottom:874.260000px;}
.y1_c01337{bottom:875.070000px;}
.h2_c01337{height:18.000000px;}
.h3_c01337{height:24.000000px;}
.h1_c01337{height:1250.250000px;}
.h0_c01337{height:1250.370000px;}
.w1_c01337{width:912.000000px;}
.w0_c01337{width:912.300000px;}
.x0_c01337{left:0.000000px;}
.x3_c01337{left:332.370000px;}
.x2_c01337{left:358.020000px;}
.x1_c01337{left:370.980000px;}
@media print{
.v0_c01337{vertical-align:0.000000pt;}
.ls0_c01337{letter-spacing:0.000000pt;}
.ws0_c01337{word-spacing:0.000000pt;}
.fs0_c01337{font-size:16.000000pt;}
.fs1_c01337{font-size:21.333333pt;}
.y0_c01337{bottom:0.000000pt;}
.y3_c01337{bottom:776.881333pt;}
.y2_c01337{bottom:777.120000pt;}
.y1_c01337{bottom:777.840000pt;}
.h2_c01337{height:16.000000pt;}
.h3_c01337{height:21.333333pt;}
.h1_c01337{height:1111.333333pt;}
.h0_c01337{height:1111.440000pt;}
.w1_c01337{width:810.666667pt;}
.w0_c01337{width:810.933333pt;}
.x0_c01337{left:0.000000pt;}
.x3_c01337{left:295.440000pt;}
.x2_c01337{left:318.240000pt;}
.x1_c01337{left:329.760000pt;}
}





/* 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_c01338 {
    display:none;
  }
  .loading-indicator_c01338.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01338 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_c01338 { 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_c01338" -> "#page-container .classname_c01338")
 */
.pf_c01338 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01338 { /* 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_c01338.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01338 { /* 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_c01338 { /* 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_c01338 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01338 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01338 {overflow:visible;}
  }
}
.c_c01338 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01338 { /* 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_c01338:after { /* webkit #35443 */
  content: '';
}
.t_c01338:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01338 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 */
}
.__c01338 { /* 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_c01338 { /* info for Javascript */
  display:none;
}
.l_c01338 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01338 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01338 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01338: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_c01338 {
    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_c01338.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01338.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_c01338 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01338{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01338;src:url('chunks/assets/font_b11a17f404e7258299fdf971.woff2')format("woff");}.ff1_c01338{font-family:ff1_c01338;line-height:1.000000;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;}
.m7_c01338{transform:matrix(0.148490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148490,0.000000,0.000000,0.250000,0,0);}
.m8_c01338{transform:matrix(0.153640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153640,0.000000,0.000000,0.250000,0,0);}
.ma_c01338{transform:matrix(0.162065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162065,0.000000,0.000000,0.250000,0,0);}
.mfe_c01338{transform:matrix(0.181162,0.003442,-0.004749,0.249955,0,0);-ms-transform:matrix(0.181162,0.003442,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.181162,0.003442,-0.004749,0.249955,0,0);}
.m130_c01338{transform:matrix(0.181362,0.003446,-0.004749,0.249955,0,0);-ms-transform:matrix(0.181362,0.003446,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.181362,0.003446,-0.004749,0.249955,0,0);}
.mb0_c01338{transform:matrix(0.181369,0.003083,-0.004249,0.249964,0,0);-ms-transform:matrix(0.181369,0.003083,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.181369,0.003083,-0.004249,0.249964,0,0);}
.m132_c01338{transform:matrix(0.182377,0.003465,-0.004749,0.249955,0,0);-ms-transform:matrix(0.182377,0.003465,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.182377,0.003465,-0.004749,0.249955,0,0);}
.m23_c01338{transform:matrix(0.183952,0.003495,-0.004749,0.249955,0,0);-ms-transform:matrix(0.183952,0.003495,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.183952,0.003495,-0.004749,0.249955,0,0);}
.m133_c01338{transform:matrix(0.185267,0.003520,-0.004749,0.249955,0,0);-ms-transform:matrix(0.185267,0.003520,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.185267,0.003520,-0.004749,0.249955,0,0);}
.m60_c01338{transform:matrix(0.185683,0.003157,-0.004249,0.249964,0,0);-ms-transform:matrix(0.185683,0.003157,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.185683,0.003157,-0.004249,0.249964,0,0);}
.m131_c01338{transform:matrix(0.186551,0.003544,-0.004749,0.249955,0,0);-ms-transform:matrix(0.186551,0.003544,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.186551,0.003544,-0.004749,0.249955,0,0);}
.m20_c01338{transform:matrix(0.188581,0.003583,-0.004749,0.249955,0,0);-ms-transform:matrix(0.188581,0.003583,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.188581,0.003583,-0.004749,0.249955,0,0);}
.maf_c01338{transform:matrix(0.189393,0.003220,-0.004249,0.249964,0,0);-ms-transform:matrix(0.189393,0.003220,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.189393,0.003220,-0.004249,0.249964,0,0);}
.m135_c01338{transform:matrix(0.190146,0.003613,-0.004749,0.249955,0,0);-ms-transform:matrix(0.190146,0.003613,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.190146,0.003613,-0.004749,0.249955,0,0);}
.m11e_c01338{transform:matrix(0.190786,0.003053,-0.003999,0.249968,0,0);-ms-transform:matrix(0.190786,0.003053,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.190786,0.003053,-0.003999,0.249968,0,0);}
.mfc_c01338{transform:matrix(0.193000,0.003667,-0.004749,0.249955,0,0);-ms-transform:matrix(0.193000,0.003667,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.193000,0.003667,-0.004749,0.249955,0,0);}
.m19_c01338{transform:matrix(0.193345,0.003674,-0.004749,0.249955,0,0);-ms-transform:matrix(0.193345,0.003674,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.193345,0.003674,-0.004749,0.249955,0,0);}
.mb2_c01338{transform:matrix(0.193770,0.003682,-0.004749,0.249955,0,0);-ms-transform:matrix(0.193770,0.003682,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.193770,0.003682,-0.004749,0.249955,0,0);}
.m24_c01338{transform:matrix(0.196120,0.003726,-0.004749,0.249955,0,0);-ms-transform:matrix(0.196120,0.003726,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.196120,0.003726,-0.004749,0.249955,0,0);}
.mb3_c01338{transform:matrix(0.196699,0.003737,-0.004749,0.249955,0,0);-ms-transform:matrix(0.196699,0.003737,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.196699,0.003737,-0.004749,0.249955,0,0);}
.mad_c01338{transform:matrix(0.198126,0.003368,-0.004249,0.249964,0,0);-ms-transform:matrix(0.198126,0.003368,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.198126,0.003368,-0.004249,0.249964,0,0);}
.mfb_c01338{transform:matrix(0.198364,0.003769,-0.004749,0.249955,0,0);-ms-transform:matrix(0.198364,0.003769,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.198364,0.003769,-0.004749,0.249955,0,0);}
.mb5_c01338{transform:matrix(0.199664,0.003794,-0.004749,0.249955,0,0);-ms-transform:matrix(0.199664,0.003794,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.199664,0.003794,-0.004749,0.249955,0,0);}
.m11a_c01338{transform:matrix(0.199674,0.003195,-0.003999,0.249968,0,0);-ms-transform:matrix(0.199674,0.003195,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.199674,0.003195,-0.003999,0.249968,0,0);}
.m134_c01338{transform:matrix(0.202044,0.003839,-0.004749,0.249955,0,0);-ms-transform:matrix(0.202044,0.003839,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.202044,0.003839,-0.004749,0.249955,0,0);}
.m11d_c01338{transform:matrix(0.204089,0.003265,-0.003999,0.249968,0,0);-ms-transform:matrix(0.204089,0.003265,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.204089,0.003265,-0.003999,0.249968,0,0);}
.m61_c01338{transform:matrix(0.204161,0.003471,-0.004249,0.249964,0,0);-ms-transform:matrix(0.204161,0.003471,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.204161,0.003471,-0.004249,0.249964,0,0);}
.m63_c01338{transform:matrix(0.204785,0.003481,-0.004249,0.249964,0,0);-ms-transform:matrix(0.204785,0.003481,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.204785,0.003481,-0.004249,0.249964,0,0);}
.mba_c01338{transform:matrix(0.205073,0.003896,-0.004749,0.249955,0,0);-ms-transform:matrix(0.205073,0.003896,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.205073,0.003896,-0.004749,0.249955,0,0);}
.m68_c01338{transform:matrix(0.205355,0.003491,-0.004249,0.249964,0,0);-ms-transform:matrix(0.205355,0.003491,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.205355,0.003491,-0.004249,0.249964,0,0);}
.m12e_c01338{transform:matrix(0.205428,0.003903,-0.004749,0.249955,0,0);-ms-transform:matrix(0.205428,0.003903,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.205428,0.003903,-0.004749,0.249955,0,0);}
.m38_c01338{transform:matrix(0.205463,0.003904,-0.004749,0.249955,0,0);-ms-transform:matrix(0.205463,0.003904,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.205463,0.003904,-0.004749,0.249955,0,0);}
.m136_c01338{transform:matrix(0.205873,0.003912,-0.004749,0.249955,0,0);-ms-transform:matrix(0.205873,0.003912,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.205873,0.003912,-0.004749,0.249955,0,0);}
.m5b_c01338{transform:matrix(0.207405,0.003526,-0.004249,0.249964,0,0);-ms-transform:matrix(0.207405,0.003526,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.207405,0.003526,-0.004249,0.249964,0,0);}
.mb1_c01338{transform:matrix(0.208347,0.003959,-0.004749,0.249955,0,0);-ms-transform:matrix(0.208347,0.003959,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.208347,0.003959,-0.004749,0.249955,0,0);}
.mb7_c01338{transform:matrix(0.208517,0.003962,-0.004749,0.249955,0,0);-ms-transform:matrix(0.208517,0.003962,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.208517,0.003962,-0.004749,0.249955,0,0);}
.m120_c01338{transform:matrix(0.208578,0.003337,-0.003999,0.249968,0,0);-ms-transform:matrix(0.208578,0.003337,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.208578,0.003337,-0.003999,0.249968,0,0);}
.m12d_c01338{transform:matrix(0.209057,0.003972,-0.004749,0.249955,0,0);-ms-transform:matrix(0.209057,0.003972,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.209057,0.003972,-0.004749,0.249955,0,0);}
.m65_c01338{transform:matrix(0.209360,0.003559,-0.004249,0.249964,0,0);-ms-transform:matrix(0.209360,0.003559,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.209360,0.003559,-0.004249,0.249964,0,0);}
.ma8_c01338{transform:matrix(0.210590,0.003580,-0.004249,0.249964,0,0);-ms-transform:matrix(0.210590,0.003580,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.210590,0.003580,-0.004249,0.249964,0,0);}
.ma4_c01338{transform:matrix(0.211839,0.003601,-0.004249,0.249964,0,0);-ms-transform:matrix(0.211839,0.003601,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.211839,0.003601,-0.004249,0.249964,0,0);}
.m50_c01338{transform:matrix(0.212364,0.003610,-0.004249,0.249964,0,0);-ms-transform:matrix(0.212364,0.003610,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.212364,0.003610,-0.004249,0.249964,0,0);}
.maa_c01338{transform:matrix(0.212539,0.003613,-0.004249,0.249964,0,0);-ms-transform:matrix(0.212539,0.003613,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.212539,0.003613,-0.004249,0.249964,0,0);}
.m75_c01338{transform:matrix(0.212589,0.003614,-0.004249,0.249964,0,0);-ms-transform:matrix(0.212589,0.003614,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.212589,0.003614,-0.004249,0.249964,0,0);}
.m62_c01338{transform:matrix(0.213104,0.003623,-0.004249,0.249964,0,0);-ms-transform:matrix(0.213104,0.003623,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.213104,0.003623,-0.004249,0.249964,0,0);}
.m121_c01338{transform:matrix(0.213438,0.003415,-0.003999,0.249968,0,0);-ms-transform:matrix(0.213438,0.003415,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.213438,0.003415,-0.003999,0.249968,0,0);}
.m52_c01338{transform:matrix(0.213524,0.003630,-0.004249,0.249964,0,0);-ms-transform:matrix(0.213524,0.003630,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.213524,0.003630,-0.004249,0.249964,0,0);}
.m1e_c01338{transform:matrix(0.213766,0.004062,-0.004749,0.249955,0,0);-ms-transform:matrix(0.213766,0.004062,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.213766,0.004062,-0.004749,0.249955,0,0);}
.mc3_c01338{transform:matrix(0.214491,0.004075,-0.004749,0.249955,0,0);-ms-transform:matrix(0.214491,0.004075,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.214491,0.004075,-0.004749,0.249955,0,0);}
.m103_c01338{transform:matrix(0.215021,0.004085,-0.004749,0.249955,0,0);-ms-transform:matrix(0.215021,0.004085,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.215021,0.004085,-0.004749,0.249955,0,0);}
.mc6_c01338{transform:matrix(0.215631,0.004097,-0.004749,0.249955,0,0);-ms-transform:matrix(0.215631,0.004097,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.215631,0.004097,-0.004749,0.249955,0,0);}
.m3b_c01338{transform:matrix(0.215716,0.004099,-0.004749,0.249955,0,0);-ms-transform:matrix(0.215716,0.004099,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.215716,0.004099,-0.004749,0.249955,0,0);}
.ma7_c01338{transform:matrix(0.215864,0.003670,-0.004249,0.249964,0,0);-ms-transform:matrix(0.215864,0.003670,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.215864,0.003670,-0.004249,0.249964,0,0);}
.m105_c01338{transform:matrix(0.216171,0.004107,-0.004749,0.249955,0,0);-ms-transform:matrix(0.216171,0.004107,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.216171,0.004107,-0.004749,0.249955,0,0);}
.mbe_c01338{transform:matrix(0.216956,0.004122,-0.004749,0.249955,0,0);-ms-transform:matrix(0.216956,0.004122,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.216956,0.004122,-0.004749,0.249955,0,0);}
.m11f_c01338{transform:matrix(0.216997,0.003472,-0.003999,0.249968,0,0);-ms-transform:matrix(0.216997,0.003472,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.216997,0.003472,-0.003999,0.249968,0,0);}
.m12a_c01338{transform:matrix(0.217290,0.001521,-0.001750,0.249994,0,0);-ms-transform:matrix(0.217290,0.001521,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.217290,0.001521,-0.001750,0.249994,0,0);}
.m112_c01338{transform:matrix(0.217555,0.003916,-0.004499,0.249960,0,0);-ms-transform:matrix(0.217555,0.003916,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.217555,0.003916,-0.004499,0.249960,0,0);}
.md4_c01338{transform:matrix(0.217691,0.004136,-0.004749,0.249955,0,0);-ms-transform:matrix(0.217691,0.004136,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.217691,0.004136,-0.004749,0.249955,0,0);}
.m12c_c01338{transform:matrix(0.218055,0.001526,-0.001750,0.249994,0,0);-ms-transform:matrix(0.218055,0.001526,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.218055,0.001526,-0.001750,0.249994,0,0);}
.m12f_c01338{transform:matrix(0.218161,0.004145,-0.004749,0.249955,0,0);-ms-transform:matrix(0.218161,0.004145,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.218161,0.004145,-0.004749,0.249955,0,0);}
.m8b_c01338{transform:matrix(0.218388,0.003713,-0.004249,0.249964,0,0);-ms-transform:matrix(0.218388,0.003713,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.218388,0.003713,-0.004249,0.249964,0,0);}
.m12b_c01338{transform:matrix(0.218435,0.001529,-0.001750,0.249994,0,0);-ms-transform:matrix(0.218435,0.001529,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.218435,0.001529,-0.001750,0.249994,0,0);}
.m124_c01338{transform:matrix(0.219022,0.003504,-0.003999,0.249968,0,0);-ms-transform:matrix(0.219022,0.003504,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.219022,0.003504,-0.003999,0.249968,0,0);}
.m115_c01338{transform:matrix(0.219194,0.003946,-0.004499,0.249960,0,0);-ms-transform:matrix(0.219194,0.003946,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.219194,0.003946,-0.004499,0.249960,0,0);}
.mab_c01338{transform:matrix(0.219638,0.003734,-0.004249,0.249964,0,0);-ms-transform:matrix(0.219638,0.003734,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.219638,0.003734,-0.004249,0.249964,0,0);}
.mb6_c01338{transform:matrix(0.220115,0.004182,-0.004749,0.249955,0,0);-ms-transform:matrix(0.220115,0.004182,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.220115,0.004182,-0.004749,0.249955,0,0);}
.m78_c01338{transform:matrix(0.220748,0.003753,-0.004249,0.249964,0,0);-ms-transform:matrix(0.220748,0.003753,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.220748,0.003753,-0.004249,0.249964,0,0);}
.m113_c01338{transform:matrix(0.221044,0.003979,-0.004499,0.249960,0,0);-ms-transform:matrix(0.221044,0.003979,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.221044,0.003979,-0.004499,0.249960,0,0);}
.m127_c01338{transform:matrix(0.221097,0.003538,-0.003999,0.249968,0,0);-ms-transform:matrix(0.221097,0.003538,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.221097,0.003538,-0.003999,0.249968,0,0);}
.m116_c01338{transform:matrix(0.221132,0.003538,-0.003999,0.249968,0,0);-ms-transform:matrix(0.221132,0.003538,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.221132,0.003538,-0.003999,0.249968,0,0);}
.m126_c01338{transform:matrix(0.222112,0.003554,-0.003999,0.249968,0,0);-ms-transform:matrix(0.222112,0.003554,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.222112,0.003554,-0.003999,0.249968,0,0);}
.meb_c01338{transform:matrix(0.222460,0.004227,-0.004749,0.249955,0,0);-ms-transform:matrix(0.222460,0.004227,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.222460,0.004227,-0.004749,0.249955,0,0);}
.mf2_c01338{transform:matrix(0.222570,0.004229,-0.004749,0.249955,0,0);-ms-transform:matrix(0.222570,0.004229,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.222570,0.004229,-0.004749,0.249955,0,0);}
.m9_c01338{transform:matrix(0.222920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222920,0.000000,0.000000,0.250000,0,0);}
.mb9_c01338{transform:matrix(0.223180,0.004240,-0.004749,0.249955,0,0);-ms-transform:matrix(0.223180,0.004240,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.223180,0.004240,-0.004749,0.249955,0,0);}
.m114_c01338{transform:matrix(0.223314,0.004020,-0.004499,0.249960,0,0);-ms-transform:matrix(0.223314,0.004020,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.223314,0.004020,-0.004499,0.249960,0,0);}
.m11b_c01338{transform:matrix(0.223591,0.003577,-0.003999,0.249968,0,0);-ms-transform:matrix(0.223591,0.003577,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.223591,0.003577,-0.003999,0.249968,0,0);}
.m89_c01338{transform:matrix(0.223643,0.003802,-0.004249,0.249964,0,0);-ms-transform:matrix(0.223643,0.003802,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.223643,0.003802,-0.004249,0.249964,0,0);}
.ma2_c01338{transform:matrix(0.224503,0.003817,-0.004249,0.249964,0,0);-ms-transform:matrix(0.224503,0.003817,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.224503,0.003817,-0.004249,0.249964,0,0);}
.m102_c01338{transform:matrix(0.224544,0.004266,-0.004749,0.249955,0,0);-ms-transform:matrix(0.224544,0.004266,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.224544,0.004266,-0.004749,0.249955,0,0);}
.m7c_c01338{transform:matrix(0.224588,0.003818,-0.004249,0.249964,0,0);-ms-transform:matrix(0.224588,0.003818,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.224588,0.003818,-0.004249,0.249964,0,0);}
.mde_c01338{transform:matrix(0.224679,0.004269,-0.004749,0.249955,0,0);-ms-transform:matrix(0.224679,0.004269,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.224679,0.004269,-0.004749,0.249955,0,0);}
.m34_c01338{transform:matrix(0.224724,0.004270,-0.004749,0.249955,0,0);-ms-transform:matrix(0.224724,0.004270,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.224724,0.004270,-0.004749,0.249955,0,0);}
.m26_c01338{transform:matrix(0.225804,0.004290,-0.004749,0.249955,0,0);-ms-transform:matrix(0.225804,0.004290,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.225804,0.004290,-0.004749,0.249955,0,0);}
.m2d_c01338{transform:matrix(0.225899,0.004292,-0.004749,0.249955,0,0);-ms-transform:matrix(0.225899,0.004292,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.225899,0.004292,-0.004749,0.249955,0,0);}
.me2_c01338{transform:matrix(0.226024,0.004294,-0.004749,0.249955,0,0);-ms-transform:matrix(0.226024,0.004294,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.226024,0.004294,-0.004749,0.249955,0,0);}
.m4a_c01338{transform:matrix(0.226032,0.003843,-0.004249,0.249964,0,0);-ms-transform:matrix(0.226032,0.003843,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.226032,0.003843,-0.004249,0.249964,0,0);}
.m8a_c01338{transform:matrix(0.226712,0.003854,-0.004249,0.249964,0,0);-ms-transform:matrix(0.226712,0.003854,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.226712,0.003854,-0.004249,0.249964,0,0);}
.m7a_c01338{transform:matrix(0.226742,0.003855,-0.004249,0.249964,0,0);-ms-transform:matrix(0.226742,0.003855,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.226742,0.003855,-0.004249,0.249964,0,0);}
.mb4_c01338{transform:matrix(0.226894,0.004311,-0.004749,0.249955,0,0);-ms-transform:matrix(0.226894,0.004311,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.226894,0.004311,-0.004749,0.249955,0,0);}
.m6c_c01338{transform:matrix(0.226972,0.003859,-0.004249,0.249964,0,0);-ms-transform:matrix(0.226972,0.003859,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.226972,0.003859,-0.004249,0.249964,0,0);}
.m76_c01338{transform:matrix(0.227912,0.003875,-0.004249,0.249964,0,0);-ms-transform:matrix(0.227912,0.003875,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.227912,0.003875,-0.004249,0.249964,0,0);}
.m54_c01338{transform:matrix(0.228182,0.003879,-0.004249,0.249964,0,0);-ms-transform:matrix(0.228182,0.003879,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.228182,0.003879,-0.004249,0.249964,0,0);}
.m100_c01338{transform:matrix(0.228479,0.004341,-0.004749,0.249955,0,0);-ms-transform:matrix(0.228479,0.004341,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.228479,0.004341,-0.004749,0.249955,0,0);}
.m72_c01338{transform:matrix(0.228757,0.003889,-0.004249,0.249964,0,0);-ms-transform:matrix(0.228757,0.003889,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.228757,0.003889,-0.004249,0.249964,0,0);}
.md1_c01338{transform:matrix(0.228924,0.004350,-0.004749,0.249955,0,0);-ms-transform:matrix(0.228924,0.004350,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.228924,0.004350,-0.004749,0.249955,0,0);}
.mfa_c01338{transform:matrix(0.228959,0.004350,-0.004749,0.249955,0,0);-ms-transform:matrix(0.228959,0.004350,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.228959,0.004350,-0.004749,0.249955,0,0);}
.m4d_c01338{transform:matrix(0.229232,0.003897,-0.004249,0.249964,0,0);-ms-transform:matrix(0.229232,0.003897,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.229232,0.003897,-0.004249,0.249964,0,0);}
.mbd_c01338{transform:matrix(0.229474,0.004360,-0.004749,0.249955,0,0);-ms-transform:matrix(0.229474,0.004360,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.229474,0.004360,-0.004749,0.249955,0,0);}
.m119_c01338{transform:matrix(0.229476,0.003672,-0.003999,0.249968,0,0);-ms-transform:matrix(0.229476,0.003672,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.229476,0.003672,-0.003999,0.249968,0,0);}
.m48_c01338{transform:matrix(0.229492,0.003901,-0.004249,0.249964,0,0);-ms-transform:matrix(0.229492,0.003901,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.229492,0.003901,-0.004249,0.249964,0,0);}
.m10f_c01338{transform:matrix(0.229818,0.004137,-0.004499,0.249960,0,0);-ms-transform:matrix(0.229818,0.004137,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.229818,0.004137,-0.004499,0.249960,0,0);}
.mae_c01338{transform:matrix(0.229907,0.003908,-0.004249,0.249964,0,0);-ms-transform:matrix(0.229907,0.003908,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.229907,0.003908,-0.004249,0.249964,0,0);}
.m3c_c01338{transform:matrix(0.229909,0.004368,-0.004749,0.249955,0,0);-ms-transform:matrix(0.229909,0.004368,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.229909,0.004368,-0.004749,0.249955,0,0);}
.mc1_c01338{transform:matrix(0.230708,0.004383,-0.004749,0.249955,0,0);-ms-transform:matrix(0.230708,0.004383,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.230708,0.004383,-0.004749,0.249955,0,0);}
.mc7_c01338{transform:matrix(0.231583,0.004400,-0.004749,0.249955,0,0);-ms-transform:matrix(0.231583,0.004400,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.231583,0.004400,-0.004749,0.249955,0,0);}
.m84_c01338{transform:matrix(0.231592,0.003937,-0.004249,0.249964,0,0);-ms-transform:matrix(0.231592,0.003937,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.231592,0.003937,-0.004249,0.249964,0,0);}
.m97_c01338{transform:matrix(0.231707,0.003939,-0.004249,0.249964,0,0);-ms-transform:matrix(0.231707,0.003939,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.231707,0.003939,-0.004249,0.249964,0,0);}
.m67_c01338{transform:matrix(0.231772,0.003940,-0.004249,0.249964,0,0);-ms-transform:matrix(0.231772,0.003940,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.231772,0.003940,-0.004249,0.249964,0,0);}
.mf5_c01338{transform:matrix(0.231883,0.004406,-0.004749,0.249955,0,0);-ms-transform:matrix(0.231883,0.004406,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.231883,0.004406,-0.004749,0.249955,0,0);}
.mb8_c01338{transform:matrix(0.232348,0.004415,-0.004749,0.249955,0,0);-ms-transform:matrix(0.232348,0.004415,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.232348,0.004415,-0.004749,0.249955,0,0);}
.m2e_c01338{transform:matrix(0.232363,0.004415,-0.004749,0.249955,0,0);-ms-transform:matrix(0.232363,0.004415,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.232363,0.004415,-0.004749,0.249955,0,0);}
.m66_c01338{transform:matrix(0.232401,0.003951,-0.004249,0.249964,0,0);-ms-transform:matrix(0.232401,0.003951,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.232401,0.003951,-0.004249,0.249964,0,0);}
.m31_c01338{transform:matrix(0.232553,0.004419,-0.004749,0.249955,0,0);-ms-transform:matrix(0.232553,0.004419,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.232553,0.004419,-0.004749,0.249955,0,0);}
.mef_c01338{transform:matrix(0.232943,0.004426,-0.004749,0.249955,0,0);-ms-transform:matrix(0.232943,0.004426,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.232943,0.004426,-0.004749,0.249955,0,0);}
.m10b_c01338{transform:matrix(0.232982,0.004194,-0.004499,0.249960,0,0);-ms-transform:matrix(0.232982,0.004194,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.232982,0.004194,-0.004499,0.249960,0,0);}
.m64_c01338{transform:matrix(0.233041,0.003962,-0.004249,0.249964,0,0);-ms-transform:matrix(0.233041,0.003962,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.233041,0.003962,-0.004249,0.249964,0,0);}
.m2b_c01338{transform:matrix(0.233188,0.004431,-0.004749,0.249955,0,0);-ms-transform:matrix(0.233188,0.004431,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.233188,0.004431,-0.004749,0.249955,0,0);}
.m3a_c01338{transform:matrix(0.233643,0.004439,-0.004749,0.249955,0,0);-ms-transform:matrix(0.233643,0.004439,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.233643,0.004439,-0.004749,0.249955,0,0);}
.mdd_c01338{transform:matrix(0.234263,0.004451,-0.004749,0.249955,0,0);-ms-transform:matrix(0.234263,0.004451,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.234263,0.004451,-0.004749,0.249955,0,0);}
.mda_c01338{transform:matrix(0.234318,0.004452,-0.004749,0.249955,0,0);-ms-transform:matrix(0.234318,0.004452,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.234318,0.004452,-0.004749,0.249955,0,0);}
.m27_c01338{transform:matrix(0.234493,0.004455,-0.004749,0.249955,0,0);-ms-transform:matrix(0.234493,0.004455,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.234493,0.004455,-0.004749,0.249955,0,0);}
.m11c_c01338{transform:matrix(0.234690,0.003755,-0.003999,0.249968,0,0);-ms-transform:matrix(0.234690,0.003755,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.234690,0.003755,-0.003999,0.249968,0,0);}
.m80_c01338{transform:matrix(0.234901,0.003993,-0.004249,0.249964,0,0);-ms-transform:matrix(0.234901,0.003993,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.234901,0.003993,-0.004249,0.249964,0,0);}
.m8d_c01338{transform:matrix(0.235046,0.003996,-0.004249,0.249964,0,0);-ms-transform:matrix(0.235046,0.003996,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.235046,0.003996,-0.004249,0.249964,0,0);}
.m4c_c01338{transform:matrix(0.235091,0.003997,-0.004249,0.249964,0,0);-ms-transform:matrix(0.235091,0.003997,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.235091,0.003997,-0.004249,0.249964,0,0);}
.m4e_c01338{transform:matrix(0.235351,0.004001,-0.004249,0.249964,0,0);-ms-transform:matrix(0.235351,0.004001,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.235351,0.004001,-0.004249,0.249964,0,0);}
.ma5_c01338{transform:matrix(0.235536,0.004004,-0.004249,0.249964,0,0);-ms-transform:matrix(0.235536,0.004004,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.235536,0.004004,-0.004249,0.249964,0,0);}
.mc2_c01338{transform:matrix(0.235542,0.004475,-0.004749,0.249955,0,0);-ms-transform:matrix(0.235542,0.004475,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.235542,0.004475,-0.004749,0.249955,0,0);}
.mbb_c01338{transform:matrix(0.235792,0.004480,-0.004749,0.249955,0,0);-ms-transform:matrix(0.235792,0.004480,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.235792,0.004480,-0.004749,0.249955,0,0);}
.mc9_c01338{transform:matrix(0.235807,0.004480,-0.004749,0.249955,0,0);-ms-transform:matrix(0.235807,0.004480,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.235807,0.004480,-0.004749,0.249955,0,0);}
.mf6_c01338{transform:matrix(0.235837,0.004481,-0.004749,0.249955,0,0);-ms-transform:matrix(0.235837,0.004481,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.235837,0.004481,-0.004749,0.249955,0,0);}
.m21_c01338{transform:matrix(0.236397,0.004492,-0.004749,0.249955,0,0);-ms-transform:matrix(0.236397,0.004492,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.236397,0.004492,-0.004749,0.249955,0,0);}
.me8_c01338{transform:matrix(0.236682,0.004497,-0.004749,0.249955,0,0);-ms-transform:matrix(0.236682,0.004497,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.236682,0.004497,-0.004749,0.249955,0,0);}
.m92_c01338{transform:matrix(0.236691,0.004024,-0.004249,0.249964,0,0);-ms-transform:matrix(0.236691,0.004024,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.236691,0.004024,-0.004249,0.249964,0,0);}
.md6_c01338{transform:matrix(0.237142,0.004506,-0.004749,0.249955,0,0);-ms-transform:matrix(0.237142,0.004506,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.237142,0.004506,-0.004749,0.249955,0,0);}
.md0_c01338{transform:matrix(0.237317,0.004509,-0.004749,0.249955,0,0);-ms-transform:matrix(0.237317,0.004509,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.237317,0.004509,-0.004749,0.249955,0,0);}
.m57_c01338{transform:matrix(0.237391,0.004036,-0.004249,0.249964,0,0);-ms-transform:matrix(0.237391,0.004036,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.237391,0.004036,-0.004249,0.249964,0,0);}
.m1c_c01338{transform:matrix(0.237577,0.004514,-0.004749,0.249955,0,0);-ms-transform:matrix(0.237577,0.004514,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.237577,0.004514,-0.004749,0.249955,0,0);}
.m1f_c01338{transform:matrix(0.238052,0.004523,-0.004749,0.249955,0,0);-ms-transform:matrix(0.238052,0.004523,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.238052,0.004523,-0.004749,0.249955,0,0);}
.mf4_c01338{transform:matrix(0.238527,0.004532,-0.004749,0.249955,0,0);-ms-transform:matrix(0.238527,0.004532,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.238527,0.004532,-0.004749,0.249955,0,0);}
.m125_c01338{transform:matrix(0.238594,0.003818,-0.003999,0.249968,0,0);-ms-transform:matrix(0.238594,0.003818,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.238594,0.003818,-0.003999,0.249968,0,0);}
.m5e_c01338{transform:matrix(0.238606,0.004056,-0.004249,0.249964,0,0);-ms-transform:matrix(0.238606,0.004056,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.238606,0.004056,-0.004249,0.249964,0,0);}
.m1b_c01338{transform:matrix(0.238672,0.004535,-0.004749,0.249955,0,0);-ms-transform:matrix(0.238672,0.004535,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.238672,0.004535,-0.004749,0.249955,0,0);}
.m7d_c01338{transform:matrix(0.238915,0.004062,-0.004249,0.249964,0,0);-ms-transform:matrix(0.238915,0.004062,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.238915,0.004062,-0.004249,0.249964,0,0);}
.m33_c01338{transform:matrix(0.238957,0.004540,-0.004749,0.249955,0,0);-ms-transform:matrix(0.238957,0.004540,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.238957,0.004540,-0.004749,0.249955,0,0);}
.m32_c01338{transform:matrix(0.239267,0.004546,-0.004749,0.249955,0,0);-ms-transform:matrix(0.239267,0.004546,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.239267,0.004546,-0.004749,0.249955,0,0);}
.m122_c01338{transform:matrix(0.239284,0.003829,-0.003999,0.249968,0,0);-ms-transform:matrix(0.239284,0.003829,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.239284,0.003829,-0.003999,0.249968,0,0);}
.m128_c01338{transform:matrix(0.239434,0.001676,-0.001750,0.249994,0,0);-ms-transform:matrix(0.239434,0.001676,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.239434,0.001676,-0.001750,0.249994,0,0);}
.m35_c01338{transform:matrix(0.239522,0.004551,-0.004749,0.249955,0,0);-ms-transform:matrix(0.239522,0.004551,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.239522,0.004551,-0.004749,0.249955,0,0);}
.med_c01338{transform:matrix(0.239867,0.004557,-0.004749,0.249955,0,0);-ms-transform:matrix(0.239867,0.004557,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.239867,0.004557,-0.004749,0.249955,0,0);}
.m25_c01338{transform:matrix(0.239917,0.004558,-0.004749,0.249955,0,0);-ms-transform:matrix(0.239917,0.004558,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.239917,0.004558,-0.004749,0.249955,0,0);}
.m93_c01338{transform:matrix(0.240070,0.004081,-0.004249,0.249964,0,0);-ms-transform:matrix(0.240070,0.004081,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.240070,0.004081,-0.004249,0.249964,0,0);}
.m1a_c01338{transform:matrix(0.240802,0.004575,-0.004749,0.249955,0,0);-ms-transform:matrix(0.240802,0.004575,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.240802,0.004575,-0.004749,0.249955,0,0);}
.mfd_c01338{transform:matrix(0.241181,0.004582,-0.004749,0.249955,0,0);-ms-transform:matrix(0.241181,0.004582,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.241181,0.004582,-0.004749,0.249955,0,0);}
.m47_c01338{transform:matrix(0.241380,0.004103,-0.004249,0.249964,0,0);-ms-transform:matrix(0.241380,0.004103,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.241380,0.004103,-0.004249,0.249964,0,0);}
.mff_c01338{transform:matrix(0.241651,0.004591,-0.004749,0.249955,0,0);-ms-transform:matrix(0.241651,0.004591,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.241651,0.004591,-0.004749,0.249955,0,0);}
.m6a_c01338{transform:matrix(0.241905,0.004112,-0.004249,0.249964,0,0);-ms-transform:matrix(0.241905,0.004112,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.241905,0.004112,-0.004249,0.249964,0,0);}
.m29_c01338{transform:matrix(0.242431,0.004606,-0.004749,0.249955,0,0);-ms-transform:matrix(0.242431,0.004606,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.242431,0.004606,-0.004749,0.249955,0,0);}
.mc0_c01338{transform:matrix(0.243061,0.004618,-0.004749,0.249955,0,0);-ms-transform:matrix(0.243061,0.004618,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.243061,0.004618,-0.004749,0.249955,0,0);}
.ma3_c01338{transform:matrix(0.243065,0.004132,-0.004249,0.249964,0,0);-ms-transform:matrix(0.243065,0.004132,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.243065,0.004132,-0.004249,0.249964,0,0);}
.m3d_c01338{transform:matrix(0.243426,0.004625,-0.004749,0.249955,0,0);-ms-transform:matrix(0.243426,0.004625,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.243426,0.004625,-0.004749,0.249955,0,0);}
.m36_c01338{transform:matrix(0.244001,0.004636,-0.004749,0.249955,0,0);-ms-transform:matrix(0.244001,0.004636,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.244001,0.004636,-0.004749,0.249955,0,0);}
.m45_c01338{transform:matrix(0.244005,0.004148,-0.004249,0.249964,0,0);-ms-transform:matrix(0.244005,0.004148,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.244005,0.004148,-0.004249,0.249964,0,0);}
.m5d_c01338{transform:matrix(0.244025,0.004148,-0.004249,0.249964,0,0);-ms-transform:matrix(0.244025,0.004148,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.244025,0.004148,-0.004249,0.249964,0,0);}
.mf8_c01338{transform:matrix(0.244051,0.004637,-0.004749,0.249955,0,0);-ms-transform:matrix(0.244051,0.004637,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.244051,0.004637,-0.004749,0.249955,0,0);}
.m10c_c01338{transform:matrix(0.244215,0.004396,-0.004499,0.249960,0,0);-ms-transform:matrix(0.244215,0.004396,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.244215,0.004396,-0.004499,0.249960,0,0);}
.m55_c01338{transform:matrix(0.244220,0.004152,-0.004249,0.249964,0,0);-ms-transform:matrix(0.244220,0.004152,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.244220,0.004152,-0.004249,0.249964,0,0);}
.m6b_c01338{transform:matrix(0.244440,0.004155,-0.004249,0.249964,0,0);-ms-transform:matrix(0.244440,0.004155,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.244440,0.004155,-0.004249,0.249964,0,0);}
.m22_c01338{transform:matrix(0.244546,0.004646,-0.004749,0.249955,0,0);-ms-transform:matrix(0.244546,0.004646,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.244546,0.004646,-0.004749,0.249955,0,0);}
.ma9_c01338{transform:matrix(0.244835,0.004162,-0.004249,0.249964,0,0);-ms-transform:matrix(0.244835,0.004162,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.244835,0.004162,-0.004249,0.249964,0,0);}
.m108_c01338{transform:matrix(0.244985,0.004410,-0.004499,0.249960,0,0);-ms-transform:matrix(0.244985,0.004410,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.244985,0.004410,-0.004499,0.249960,0,0);}
.m70_c01338{transform:matrix(0.244990,0.004165,-0.004249,0.249964,0,0);-ms-transform:matrix(0.244990,0.004165,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.244990,0.004165,-0.004249,0.249964,0,0);}
.m41_c01338{transform:matrix(0.245106,0.004657,-0.004749,0.249955,0,0);-ms-transform:matrix(0.245106,0.004657,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.245106,0.004657,-0.004749,0.249955,0,0);}
.m73_c01338{transform:matrix(0.246139,0.004184,-0.004249,0.249964,0,0);-ms-transform:matrix(0.246139,0.004184,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.246139,0.004184,-0.004249,0.249964,0,0);}
.m104_c01338{transform:matrix(0.246386,0.004681,-0.004749,0.249955,0,0);-ms-transform:matrix(0.246386,0.004681,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.246386,0.004681,-0.004749,0.249955,0,0);}
.m106_c01338{transform:matrix(0.246810,0.004689,-0.004749,0.249955,0,0);-ms-transform:matrix(0.246810,0.004689,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.246810,0.004689,-0.004749,0.249955,0,0);}
.ma6_c01338{transform:matrix(0.247069,0.004200,-0.004249,0.249964,0,0);-ms-transform:matrix(0.247069,0.004200,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.247069,0.004200,-0.004249,0.249964,0,0);}
.m101_c01338{transform:matrix(0.247100,0.004695,-0.004749,0.249955,0,0);-ms-transform:matrix(0.247100,0.004695,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.247100,0.004695,-0.004749,0.249955,0,0);}
.mcc_c01338{transform:matrix(0.247170,0.004696,-0.004749,0.249955,0,0);-ms-transform:matrix(0.247170,0.004696,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.247170,0.004696,-0.004749,0.249955,0,0);}
.m5c_c01338{transform:matrix(0.247349,0.004205,-0.004249,0.249964,0,0);-ms-transform:matrix(0.247349,0.004205,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.247349,0.004205,-0.004249,0.249964,0,0);}
.m6d_c01338{transform:matrix(0.247514,0.004208,-0.004249,0.249964,0,0);-ms-transform:matrix(0.247514,0.004208,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.247514,0.004208,-0.004249,0.249964,0,0);}
.m88_c01338{transform:matrix(0.247654,0.004210,-0.004249,0.249964,0,0);-ms-transform:matrix(0.247654,0.004210,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.247654,0.004210,-0.004249,0.249964,0,0);}
.m7b_c01338{transform:matrix(0.247674,0.004210,-0.004249,0.249964,0,0);-ms-transform:matrix(0.247674,0.004210,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.247674,0.004210,-0.004249,0.249964,0,0);}
.m59_c01338{transform:matrix(0.247899,0.004214,-0.004249,0.249964,0,0);-ms-transform:matrix(0.247899,0.004214,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.247899,0.004214,-0.004249,0.249964,0,0);}
.m49_c01338{transform:matrix(0.248099,0.004218,-0.004249,0.249964,0,0);-ms-transform:matrix(0.248099,0.004218,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.248099,0.004218,-0.004249,0.249964,0,0);}
.me5_c01338{transform:matrix(0.248275,0.004717,-0.004749,0.249955,0,0);-ms-transform:matrix(0.248275,0.004717,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.248275,0.004717,-0.004749,0.249955,0,0);}
.m81_c01338{transform:matrix(0.248914,0.004232,-0.004249,0.249964,0,0);-ms-transform:matrix(0.248914,0.004232,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.248914,0.004232,-0.004249,0.249964,0,0);}
.m5f_c01338{transform:matrix(0.249174,0.004236,-0.004249,0.249964,0,0);-ms-transform:matrix(0.249174,0.004236,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.249174,0.004236,-0.004249,0.249964,0,0);}
.m77_c01338{transform:matrix(0.249449,0.004241,-0.004249,0.249964,0,0);-ms-transform:matrix(0.249449,0.004241,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.249449,0.004241,-0.004249,0.249964,0,0);}
.mbc_c01338{transform:matrix(0.250475,0.004759,-0.004749,0.249955,0,0);-ms-transform:matrix(0.250475,0.004759,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.250475,0.004759,-0.004749,0.249955,0,0);}
.mea_c01338{transform:matrix(0.250645,0.004762,-0.004749,0.249955,0,0);-ms-transform:matrix(0.250645,0.004762,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.250645,0.004762,-0.004749,0.249955,0,0);}
.me4_c01338{transform:matrix(0.250885,0.004767,-0.004749,0.249955,0,0);-ms-transform:matrix(0.250885,0.004767,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.250885,0.004767,-0.004749,0.249955,0,0);}
.md_c01338{transform:matrix(0.251188,0.004019,-0.003999,0.249968,0,0);-ms-transform:matrix(0.251188,0.004019,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.251188,0.004019,-0.003999,0.249968,0,0);}
.me7_c01338{transform:matrix(0.251340,0.004775,-0.004749,0.249955,0,0);-ms-transform:matrix(0.251340,0.004775,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.251340,0.004775,-0.004749,0.249955,0,0);}
.mc5_c01338{transform:matrix(0.251820,0.004785,-0.004749,0.249955,0,0);-ms-transform:matrix(0.251820,0.004785,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.251820,0.004785,-0.004749,0.249955,0,0);}
.m9d_c01338{transform:matrix(0.251849,0.004281,-0.004249,0.249964,0,0);-ms-transform:matrix(0.251849,0.004281,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.251849,0.004281,-0.004249,0.249964,0,0);}
.m10a_c01338{transform:matrix(0.251854,0.004533,-0.004499,0.249960,0,0);-ms-transform:matrix(0.251854,0.004533,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.251854,0.004533,-0.004499,0.249960,0,0);}
.m1d_c01338{transform:matrix(0.252344,0.004795,-0.004749,0.249955,0,0);-ms-transform:matrix(0.252344,0.004795,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.252344,0.004795,-0.004749,0.249955,0,0);}
.mc4_c01338{transform:matrix(0.253304,0.004813,-0.004749,0.249955,0,0);-ms-transform:matrix(0.253304,0.004813,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.253304,0.004813,-0.004749,0.249955,0,0);}
.m79_c01338{transform:matrix(0.253313,0.004306,-0.004249,0.249964,0,0);-ms-transform:matrix(0.253313,0.004306,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.253313,0.004306,-0.004249,0.249964,0,0);}
.m7f_c01338{transform:matrix(0.253393,0.004308,-0.004249,0.249964,0,0);-ms-transform:matrix(0.253393,0.004308,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.253393,0.004308,-0.004249,0.249964,0,0);}
.m14_c01338{transform:matrix(0.253489,0.004816,-0.004749,0.249955,0,0);-ms-transform:matrix(0.253489,0.004816,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.253489,0.004816,-0.004749,0.249955,0,0);}
.m9e_c01338{transform:matrix(0.254128,0.004320,-0.004249,0.249964,0,0);-ms-transform:matrix(0.254128,0.004320,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.254128,0.004320,-0.004249,0.249964,0,0);}
.m17_c01338{transform:matrix(0.254394,0.004833,-0.004749,0.249955,0,0);-ms-transform:matrix(0.254394,0.004833,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.254394,0.004833,-0.004749,0.249955,0,0);}
.m99_c01338{transform:matrix(0.254668,0.004329,-0.004249,0.249964,0,0);-ms-transform:matrix(0.254668,0.004329,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.254668,0.004329,-0.004249,0.249964,0,0);}
.m82_c01338{transform:matrix(0.254673,0.004329,-0.004249,0.249964,0,0);-ms-transform:matrix(0.254673,0.004329,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.254673,0.004329,-0.004249,0.249964,0,0);}
.mdb_c01338{transform:matrix(0.254709,0.004839,-0.004749,0.249955,0,0);-ms-transform:matrix(0.254709,0.004839,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.254709,0.004839,-0.004749,0.249955,0,0);}
.mf9_c01338{transform:matrix(0.254959,0.004844,-0.004749,0.249955,0,0);-ms-transform:matrix(0.254959,0.004844,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.254959,0.004844,-0.004749,0.249955,0,0);}
.m7e_c01338{transform:matrix(0.255188,0.004338,-0.004249,0.249964,0,0);-ms-transform:matrix(0.255188,0.004338,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.255188,0.004338,-0.004249,0.249964,0,0);}
.m123_c01338{transform:matrix(0.255592,0.004089,-0.003999,0.249968,0,0);-ms-transform:matrix(0.255592,0.004089,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.255592,0.004089,-0.003999,0.249968,0,0);}
.m3e_c01338{transform:matrix(0.256404,0.004872,-0.004749,0.249955,0,0);-ms-transform:matrix(0.256404,0.004872,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.256404,0.004872,-0.004749,0.249955,0,0);}
.m110_c01338{transform:matrix(0.256413,0.004615,-0.004499,0.249960,0,0);-ms-transform:matrix(0.256413,0.004615,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.256413,0.004615,-0.004499,0.249960,0,0);}
.me9_c01338{transform:matrix(0.257054,0.004884,-0.004749,0.249955,0,0);-ms-transform:matrix(0.257054,0.004884,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.257054,0.004884,-0.004749,0.249955,0,0);}
.m37_c01338{transform:matrix(0.257134,0.004886,-0.004749,0.249955,0,0);-ms-transform:matrix(0.257134,0.004886,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.257134,0.004886,-0.004749,0.249955,0,0);}
.me0_c01338{transform:matrix(0.257299,0.004889,-0.004749,0.249955,0,0);-ms-transform:matrix(0.257299,0.004889,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.257299,0.004889,-0.004749,0.249955,0,0);}
.md7_c01338{transform:matrix(0.257524,0.004893,-0.004749,0.249955,0,0);-ms-transform:matrix(0.257524,0.004893,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.257524,0.004893,-0.004749,0.249955,0,0);}
.m4b_c01338{transform:matrix(0.257698,0.004381,-0.004249,0.249964,0,0);-ms-transform:matrix(0.257698,0.004381,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.257698,0.004381,-0.004249,0.249964,0,0);}
.m118_c01338{transform:matrix(0.257902,0.004126,-0.003999,0.249968,0,0);-ms-transform:matrix(0.257902,0.004126,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.257902,0.004126,-0.003999,0.249968,0,0);}
.md9_c01338{transform:matrix(0.258443,0.004910,-0.004749,0.249955,0,0);-ms-transform:matrix(0.258443,0.004910,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.258443,0.004910,-0.004749,0.249955,0,0);}
.mbf_c01338{transform:matrix(0.258563,0.004913,-0.004749,0.249955,0,0);-ms-transform:matrix(0.258563,0.004913,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.258563,0.004913,-0.004749,0.249955,0,0);}
.m129_c01338{transform:matrix(0.258724,0.001811,-0.001750,0.249994,0,0);-ms-transform:matrix(0.258724,0.001811,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.258724,0.001811,-0.001750,0.249994,0,0);}
.mac_c01338{transform:matrix(0.258813,0.004400,-0.004249,0.249964,0,0);-ms-transform:matrix(0.258813,0.004400,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.258813,0.004400,-0.004249,0.249964,0,0);}
.m109_c01338{transform:matrix(0.258878,0.004660,-0.004499,0.249960,0,0);-ms-transform:matrix(0.258878,0.004660,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.258878,0.004660,-0.004499,0.249960,0,0);}
.m11_c01338{transform:matrix(0.259143,0.004924,-0.004749,0.249955,0,0);-ms-transform:matrix(0.259143,0.004924,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.259143,0.004924,-0.004749,0.249955,0,0);}
.m74_c01338{transform:matrix(0.259438,0.004410,-0.004249,0.249964,0,0);-ms-transform:matrix(0.259438,0.004410,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.259438,0.004410,-0.004249,0.249964,0,0);}
.mf1_c01338{transform:matrix(0.259908,0.004938,-0.004749,0.249955,0,0);-ms-transform:matrix(0.259908,0.004938,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.259908,0.004938,-0.004749,0.249955,0,0);}
.m111_c01338{transform:matrix(0.260033,0.004681,-0.004499,0.249960,0,0);-ms-transform:matrix(0.260033,0.004681,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.260033,0.004681,-0.004499,0.249960,0,0);}
.m42_c01338{transform:matrix(0.261003,0.004959,-0.004749,0.249955,0,0);-ms-transform:matrix(0.261003,0.004959,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.261003,0.004959,-0.004749,0.249955,0,0);}
.m2f_c01338{transform:matrix(0.261318,0.004965,-0.004749,0.249955,0,0);-ms-transform:matrix(0.261318,0.004965,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.261318,0.004965,-0.004749,0.249955,0,0);}
.m53_c01338{transform:matrix(0.261577,0.004447,-0.004249,0.249964,0,0);-ms-transform:matrix(0.261577,0.004447,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.261577,0.004447,-0.004249,0.249964,0,0);}
.m8f_c01338{transform:matrix(0.261907,0.004452,-0.004249,0.249964,0,0);-ms-transform:matrix(0.261907,0.004452,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.261907,0.004452,-0.004249,0.249964,0,0);}
.me3_c01338{transform:matrix(0.262158,0.004981,-0.004749,0.249955,0,0);-ms-transform:matrix(0.262158,0.004981,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.262158,0.004981,-0.004749,0.249955,0,0);}
.md2_c01338{transform:matrix(0.263043,0.004998,-0.004749,0.249955,0,0);-ms-transform:matrix(0.263043,0.004998,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.263043,0.004998,-0.004749,0.249955,0,0);}
.mce_c01338{transform:matrix(0.264212,0.005020,-0.004749,0.249955,0,0);-ms-transform:matrix(0.264212,0.005020,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.264212,0.005020,-0.004749,0.249955,0,0);}
.m3f_c01338{transform:matrix(0.265172,0.005038,-0.004749,0.249955,0,0);-ms-transform:matrix(0.265172,0.005038,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.265172,0.005038,-0.004749,0.249955,0,0);}
.m71_c01338{transform:matrix(0.265192,0.004508,-0.004249,0.249964,0,0);-ms-transform:matrix(0.265192,0.004508,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.265192,0.004508,-0.004249,0.249964,0,0);}
.m87_c01338{transform:matrix(0.265242,0.004509,-0.004249,0.249964,0,0);-ms-transform:matrix(0.265242,0.004509,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.265242,0.004509,-0.004249,0.249964,0,0);}
.md5_c01338{transform:matrix(0.265527,0.005045,-0.004749,0.249955,0,0);-ms-transform:matrix(0.265527,0.005045,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.265527,0.005045,-0.004749,0.249955,0,0);}
.m8e_c01338{transform:matrix(0.266531,0.004531,-0.004249,0.249964,0,0);-ms-transform:matrix(0.266531,0.004531,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.266531,0.004531,-0.004249,0.249964,0,0);}
.m95_c01338{transform:matrix(0.266661,0.004533,-0.004249,0.249964,0,0);-ms-transform:matrix(0.266661,0.004533,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.266661,0.004533,-0.004249,0.249964,0,0);}
.m2c_c01338{transform:matrix(0.266772,0.005069,-0.004749,0.249955,0,0);-ms-transform:matrix(0.266772,0.005069,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.266772,0.005069,-0.004749,0.249955,0,0);}
.mec_c01338{transform:matrix(0.266897,0.005071,-0.004749,0.249955,0,0);-ms-transform:matrix(0.266897,0.005071,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.266897,0.005071,-0.004749,0.249955,0,0);}
.m30_c01338{transform:matrix(0.268402,0.005100,-0.004749,0.249955,0,0);-ms-transform:matrix(0.268402,0.005100,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.268402,0.005100,-0.004749,0.249955,0,0);}
.mcf_c01338{transform:matrix(0.268801,0.005107,-0.004749,0.249955,0,0);-ms-transform:matrix(0.268801,0.005107,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.268801,0.005107,-0.004749,0.249955,0,0);}
.mdf_c01338{transform:matrix(0.268886,0.005109,-0.004749,0.249955,0,0);-ms-transform:matrix(0.268886,0.005109,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.268886,0.005109,-0.004749,0.249955,0,0);}
.mf0_c01338{transform:matrix(0.269131,0.005113,-0.004749,0.249955,0,0);-ms-transform:matrix(0.269131,0.005113,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.269131,0.005113,-0.004749,0.249955,0,0);}
.m90_c01338{transform:matrix(0.270331,0.004596,-0.004249,0.249964,0,0);-ms-transform:matrix(0.270331,0.004596,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.270331,0.004596,-0.004249,0.249964,0,0);}
.m83_c01338{transform:matrix(0.270451,0.004598,-0.004249,0.249964,0,0);-ms-transform:matrix(0.270451,0.004598,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.270451,0.004598,-0.004249,0.249964,0,0);}
.m107_c01338{transform:matrix(0.270486,0.004869,-0.004499,0.249960,0,0);-ms-transform:matrix(0.270486,0.004869,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.270486,0.004869,-0.004499,0.249960,0,0);}
.md3_c01338{transform:matrix(0.270626,0.005142,-0.004749,0.249955,0,0);-ms-transform:matrix(0.270626,0.005142,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.270626,0.005142,-0.004749,0.249955,0,0);}
.me1_c01338{transform:matrix(0.270761,0.005144,-0.004749,0.249955,0,0);-ms-transform:matrix(0.270761,0.005144,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.270761,0.005144,-0.004749,0.249955,0,0);}
.mca_c01338{transform:matrix(0.270776,0.005145,-0.004749,0.249955,0,0);-ms-transform:matrix(0.270776,0.005145,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.270776,0.005145,-0.004749,0.249955,0,0);}
.m9a_c01338{transform:matrix(0.270841,0.004604,-0.004249,0.249964,0,0);-ms-transform:matrix(0.270841,0.004604,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.270841,0.004604,-0.004249,0.249964,0,0);}
.m46_c01338{transform:matrix(0.270851,0.004604,-0.004249,0.249964,0,0);-ms-transform:matrix(0.270851,0.004604,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.270851,0.004604,-0.004249,0.249964,0,0);}
.m58_c01338{transform:matrix(0.270976,0.004607,-0.004249,0.249964,0,0);-ms-transform:matrix(0.270976,0.004607,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.270976,0.004607,-0.004249,0.249964,0,0);}
.m91_c01338{transform:matrix(0.271906,0.004622,-0.004249,0.249964,0,0);-ms-transform:matrix(0.271906,0.004622,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.271906,0.004622,-0.004249,0.249964,0,0);}
.m51_c01338{transform:matrix(0.272086,0.004625,-0.004249,0.249964,0,0);-ms-transform:matrix(0.272086,0.004625,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.272086,0.004625,-0.004249,0.249964,0,0);}
.m28_c01338{transform:matrix(0.272396,0.005176,-0.004749,0.249955,0,0);-ms-transform:matrix(0.272396,0.005176,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.272396,0.005176,-0.004749,0.249955,0,0);}
.md8_c01338{transform:matrix(0.272796,0.005183,-0.004749,0.249955,0,0);-ms-transform:matrix(0.272796,0.005183,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.272796,0.005183,-0.004749,0.249955,0,0);}
.me6_c01338{transform:matrix(0.272811,0.005183,-0.004749,0.249955,0,0);-ms-transform:matrix(0.272811,0.005183,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.272811,0.005183,-0.004749,0.249955,0,0);}
.mdc_c01338{transform:matrix(0.273316,0.005193,-0.004749,0.249955,0,0);-ms-transform:matrix(0.273316,0.005193,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.273316,0.005193,-0.004749,0.249955,0,0);}
.mc8_c01338{transform:matrix(0.273496,0.005196,-0.004749,0.249955,0,0);-ms-transform:matrix(0.273496,0.005196,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.273496,0.005196,-0.004749,0.249955,0,0);}
.m4f_c01338{transform:matrix(0.273550,0.004650,-0.004249,0.249964,0,0);-ms-transform:matrix(0.273550,0.004650,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.273550,0.004650,-0.004249,0.249964,0,0);}
.m5a_c01338{transform:matrix(0.274785,0.004671,-0.004249,0.249964,0,0);-ms-transform:matrix(0.274785,0.004671,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.274785,0.004671,-0.004249,0.249964,0,0);}
.m44_c01338{transform:matrix(0.275310,0.005231,-0.004749,0.249955,0,0);-ms-transform:matrix(0.275310,0.005231,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.275310,0.005231,-0.004749,0.249955,0,0);}
.m2a_c01338{transform:matrix(0.275740,0.005239,-0.004749,0.249955,0,0);-ms-transform:matrix(0.275740,0.005239,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.275740,0.005239,-0.004749,0.249955,0,0);}
.m85_c01338{transform:matrix(0.275880,0.004690,-0.004249,0.249964,0,0);-ms-transform:matrix(0.275880,0.004690,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.275880,0.004690,-0.004249,0.249964,0,0);}
.mee_c01338{transform:matrix(0.276275,0.005249,-0.004749,0.249955,0,0);-ms-transform:matrix(0.276275,0.005249,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.276275,0.005249,-0.004749,0.249955,0,0);}
.mcd_c01338{transform:matrix(0.276530,0.005254,-0.004749,0.249955,0,0);-ms-transform:matrix(0.276530,0.005254,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.276530,0.005254,-0.004749,0.249955,0,0);}
.m86_c01338{transform:matrix(0.276650,0.004703,-0.004249,0.249964,0,0);-ms-transform:matrix(0.276650,0.004703,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.276650,0.004703,-0.004249,0.249964,0,0);}
.m10d_c01338{transform:matrix(0.277175,0.004989,-0.004499,0.249960,0,0);-ms-transform:matrix(0.277175,0.004989,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.277175,0.004989,-0.004499,0.249960,0,0);}
.m6e_c01338{transform:matrix(0.277855,0.004724,-0.004249,0.249964,0,0);-ms-transform:matrix(0.277855,0.004724,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.277855,0.004724,-0.004249,0.249964,0,0);}
.mf3_c01338{transform:matrix(0.277945,0.005281,-0.004749,0.249955,0,0);-ms-transform:matrix(0.277945,0.005281,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.277945,0.005281,-0.004749,0.249955,0,0);}
.m56_c01338{transform:matrix(0.278385,0.004733,-0.004249,0.249964,0,0);-ms-transform:matrix(0.278385,0.004733,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.278385,0.004733,-0.004249,0.249964,0,0);}
.mf7_c01338{transform:matrix(0.278905,0.005299,-0.004749,0.249955,0,0);-ms-transform:matrix(0.278905,0.005299,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.278905,0.005299,-0.004749,0.249955,0,0);}
.m6f_c01338{transform:matrix(0.279590,0.004753,-0.004249,0.249964,0,0);-ms-transform:matrix(0.279590,0.004753,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.279590,0.004753,-0.004249,0.249964,0,0);}
.m10_c01338{transform:matrix(0.280149,0.005323,-0.004749,0.249955,0,0);-ms-transform:matrix(0.280149,0.005323,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.280149,0.005323,-0.004749,0.249955,0,0);}
.m69_c01338{transform:matrix(0.280674,0.004771,-0.004249,0.249964,0,0);-ms-transform:matrix(0.280674,0.004771,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.280674,0.004771,-0.004249,0.249964,0,0);}
.mcb_c01338{transform:matrix(0.280929,0.005338,-0.004749,0.249955,0,0);-ms-transform:matrix(0.280929,0.005338,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.280929,0.005338,-0.004749,0.249955,0,0);}
.m12_c01338{transform:matrix(0.281979,0.005358,-0.004749,0.249955,0,0);-ms-transform:matrix(0.281979,0.005358,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.281979,0.005358,-0.004749,0.249955,0,0);}
.mc_c01338{transform:matrix(0.283729,0.004540,-0.003999,0.249968,0,0);-ms-transform:matrix(0.283729,0.004540,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.283729,0.004540,-0.003999,0.249968,0,0);}
.m10e_c01338{transform:matrix(0.284039,0.005113,-0.004499,0.249960,0,0);-ms-transform:matrix(0.284039,0.005113,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.284039,0.005113,-0.004499,0.249960,0,0);}
.m16_c01338{transform:matrix(0.285368,0.005422,-0.004749,0.249955,0,0);-ms-transform:matrix(0.285368,0.005422,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.285368,0.005422,-0.004749,0.249955,0,0);}
.m9f_c01338{transform:matrix(0.285614,0.004855,-0.004249,0.249964,0,0);-ms-transform:matrix(0.285614,0.004855,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.285614,0.004855,-0.004249,0.249964,0,0);}
.m9b_c01338{transform:matrix(0.285944,0.004861,-0.004249,0.249964,0,0);-ms-transform:matrix(0.285944,0.004861,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.285944,0.004861,-0.004249,0.249964,0,0);}
.mb_c01338{transform:matrix(0.287038,0.004593,-0.003999,0.249968,0,0);-ms-transform:matrix(0.287038,0.004593,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.287038,0.004593,-0.003999,0.249968,0,0);}
.m8c_c01338{transform:matrix(0.287124,0.004881,-0.004249,0.249964,0,0);-ms-transform:matrix(0.287124,0.004881,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.287124,0.004881,-0.004249,0.249964,0,0);}
.m98_c01338{transform:matrix(0.291788,0.004960,-0.004249,0.249964,0,0);-ms-transform:matrix(0.291788,0.004960,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.291788,0.004960,-0.004249,0.249964,0,0);}
.m43_c01338{transform:matrix(0.295882,0.005622,-0.004749,0.249955,0,0);-ms-transform:matrix(0.295882,0.005622,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.295882,0.005622,-0.004749,0.249955,0,0);}
.m13_c01338{transform:matrix(0.296471,0.005633,-0.004749,0.249955,0,0);-ms-transform:matrix(0.296471,0.005633,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.296471,0.005633,-0.004749,0.249955,0,0);}
.m40_c01338{transform:matrix(0.299371,0.005688,-0.004749,0.249955,0,0);-ms-transform:matrix(0.299371,0.005688,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.299371,0.005688,-0.004749,0.249955,0,0);}
.m96_c01338{transform:matrix(0.301121,0.005119,-0.004249,0.249964,0,0);-ms-transform:matrix(0.301121,0.005119,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.301121,0.005119,-0.004249,0.249964,0,0);}
.m39_c01338{transform:matrix(0.302040,0.005739,-0.004749,0.249955,0,0);-ms-transform:matrix(0.302040,0.005739,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.302040,0.005739,-0.004749,0.249955,0,0);}
.mf_c01338{transform:matrix(0.302066,0.004833,-0.003999,0.249968,0,0);-ms-transform:matrix(0.302066,0.004833,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.302066,0.004833,-0.003999,0.249968,0,0);}
.m18_c01338{transform:matrix(0.302265,0.005743,-0.004749,0.249955,0,0);-ms-transform:matrix(0.302265,0.005743,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.302265,0.005743,-0.004749,0.249955,0,0);}
.me_c01338{transform:matrix(0.305746,0.004892,-0.003999,0.249968,0,0);-ms-transform:matrix(0.305746,0.004892,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.305746,0.004892,-0.003999,0.249968,0,0);}
.m15_c01338{transform:matrix(0.305760,0.005809,-0.004749,0.249955,0,0);-ms-transform:matrix(0.305760,0.005809,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.305760,0.005809,-0.004749,0.249955,0,0);}
.m117_c01338{transform:matrix(0.309975,0.004960,-0.003999,0.249968,0,0);-ms-transform:matrix(0.309975,0.004960,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.309975,0.004960,-0.003999,0.249968,0,0);}
.ma0_c01338{transform:matrix(0.314775,0.005351,-0.004249,0.249964,0,0);-ms-transform:matrix(0.314775,0.005351,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.314775,0.005351,-0.004249,0.249964,0,0);}
.m94_c01338{transform:matrix(0.326203,0.005545,-0.004249,0.249964,0,0);-ms-transform:matrix(0.326203,0.005545,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.326203,0.005545,-0.004249,0.249964,0,0);}
.ma1_c01338{transform:matrix(0.326438,0.005549,-0.004249,0.249964,0,0);-ms-transform:matrix(0.326438,0.005549,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.326438,0.005549,-0.004249,0.249964,0,0);}
.m9c_c01338{transform:matrix(0.331737,0.005640,-0.004249,0.249964,0,0);-ms-transform:matrix(0.331737,0.005640,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.331737,0.005640,-0.004249,0.249964,0,0);}
.m4_c01338{transform:matrix(0.446610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446610,0.000000,0.000000,0.250000,0,0);}
.m6_c01338{transform:matrix(0.468195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468195,0.000000,0.000000,0.250000,0,0);}
.m3_c01338{transform:matrix(0.664415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.664415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.664415,0.000000,0.000000,0.250000,0,0);}
.m2_c01338{transform:matrix(0.737025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.737025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.737025,0.000000,0.000000,0.250000,0,0);}
.m5_c01338{transform:matrix(0.760430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.760430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.760430,0.000000,0.000000,0.250000,0,0);}
.m0_c01338{transform:matrix(1.168270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.168270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.168270,0.000000,0.000000,0.250000,0,0);}
.m1_c01338{transform:matrix(3.210490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.210490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.210490,0.000000,0.000000,0.250000,0,0);}
.v0_c01338{vertical-align:0.000000px;}
.ls0_c01338{letter-spacing:0.000000px;}
.sc__c01338{text-shadow:none;}
.sc0_c01338{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__c01338{-webkit-text-stroke:0px transparent;}
.sc0_c01338{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01338{word-spacing:0.000000px;}
.fc0_c01338{color:transparent;}
.fs0_c01338{font-size:12.000000px;}
.fs2_c01338{font-size:66.008447px;}
.fs8_c01338{font-size:66.009536px;}
.fs3_c01338{font-size:66.011912px;}
.fs6_c01338{font-size:72.010403px;}
.fsb_c01338{font-size:72.011663px;}
.fs5_c01338{font-size:72.012995px;}
.fs1_c01338{font-size:78.000000px;}
.fsf_c01338{font-size:78.001911px;}
.fse_c01338{font-size:78.009983px;}
.fs7_c01338{font-size:78.011270px;}
.fsc_c01338{font-size:78.012635px;}
.fs4_c01338{font-size:78.014078px;}
.fsd_c01338{font-size:84.010751px;}
.fsa_c01338{font-size:84.015161px;}
.fs9_c01338{font-size:90.013004px;}
.fs10_c01338{font-size:90.016244px;}
.y0_c01338{bottom:0.000000px;}
.y136_c01338{bottom:123.057835px;}
.y135_c01338{bottom:124.089165px;}
.y134_c01338{bottom:125.341141px;}
.y133_c01338{bottom:125.976948px;}
.y132_c01338{bottom:126.356796px;}
.y131_c01338{bottom:127.229238px;}
.y130_c01338{bottom:127.814343px;}
.y12f_c01338{bottom:129.315067px;}
.y12e_c01338{bottom:130.759020px;}
.y12d_c01338{bottom:131.764500px;}
.y12c_c01338{bottom:159.481665px;}
.y12b_c01338{bottom:159.780359px;}
.y12a_c01338{bottom:160.233990px;}
.y129_c01338{bottom:162.162063px;}
.y128_c01338{bottom:162.540000px;}
.y127_c01338{bottom:186.621528px;}
.y126_c01338{bottom:187.182072px;}
.y125_c01338{bottom:188.659848px;}
.y124_c01338{bottom:189.422232px;}
.y123_c01338{bottom:191.502648px;}
.y122_c01338{bottom:193.861104px;}
.y121_c01338{bottom:211.584060px;}
.y120_c01338{bottom:212.482500px;}
.y11f_c01338{bottom:213.359820px;}
.y11e_c01338{bottom:213.882324px;}
.y11d_c01338{bottom:214.763916px;}
.y11c_c01338{bottom:216.176796px;}
.y11b_c01338{bottom:217.049676px;}
.y11a_c01338{bottom:217.546548px;}
.y119_c01338{bottom:218.816940px;}
.y118_c01338{bottom:219.262260px;}
.y117_c01338{bottom:220.026468px;}
.y116_c01338{bottom:220.864500px;}
.y115_c01338{bottom:248.230830px;}
.y114_c01338{bottom:248.786652px;}
.y113_c01338{bottom:249.103218px;}
.y112_c01338{bottom:249.560193px;}
.y111_c01338{bottom:250.668171px;}
.y110_c01338{bottom:252.177330px;}
.y10f_c01338{bottom:269.110422px;}
.y10e_c01338{bottom:271.933893px;}
.y10d_c01338{bottom:274.286970px;}
.y10c_c01338{bottom:275.089167px;}
.y10b_c01338{bottom:275.860719px;}
.y10a_c01338{bottom:276.867900px;}
.y109_c01338{bottom:278.229105px;}
.y108_c01338{bottom:279.020556px;}
.y107_c01338{bottom:280.804500px;}
.y106_c01338{bottom:304.630354px;}
.y105_c01338{bottom:305.298735px;}
.y104_c01338{bottom:306.726145px;}
.y103_c01338{bottom:307.261851px;}
.y102_c01338{bottom:308.256577px;}
.y101_c01338{bottom:309.703000px;}
.y100_c01338{bottom:310.411551px;}
.yff_c01338{bottom:311.622562px;}
.yfe_c01338{bottom:311.989156px;}
.yfd_c01338{bottom:313.048177px;}
.yfc_c01338{bottom:313.539912px;}
.yfb_c01338{bottom:313.903018px;}
.yfa_c01338{bottom:314.775465px;}
.yf9_c01338{bottom:339.172684px;}
.yf8_c01338{bottom:339.756505px;}
.yf7_c01338{bottom:341.813701px;}
.yf6_c01338{bottom:342.547729px;}
.yf5_c01338{bottom:343.112634px;}
.yf4_c01338{bottom:343.845351px;}
.yf3_c01338{bottom:344.590522px;}
.yf2_c01338{bottom:344.970372px;}
.yf1_c01338{bottom:346.505473px;}
.yf0_c01338{bottom:347.207920px;}
.yef_c01338{bottom:348.153900px;}
.yee_c01338{bottom:349.613727px;}
.yed_c01338{bottom:374.054238px;}
.yec_c01338{bottom:375.703075px;}
.yeb_c01338{bottom:376.190217px;}
.yea_c01338{bottom:377.344966px;}
.ye9_c01338{bottom:377.830711px;}
.ye8_c01338{bottom:378.503763px;}
.ye7_c01338{bottom:379.488793px;}
.ye6_c01338{bottom:379.820070px;}
.y1_c01338{bottom:380.430000px;}
.ye5_c01338{bottom:380.785051px;}
.ye4_c01338{bottom:381.292384px;}
.ye3_c01338{bottom:382.928233px;}
.ye2_c01338{bottom:383.911867px;}
.ye1_c01338{bottom:410.201130px;}
.ye0_c01338{bottom:411.286659px;}
.ydf_c01338{bottom:412.825750px;}
.yde_c01338{bottom:413.484696px;}
.ydd_c01338{bottom:415.687521px;}
.ydc_c01338{bottom:417.015558px;}
.ydb_c01338{bottom:417.664129px;}
.yda_c01338{bottom:418.992679px;}
.yd9_c01338{bottom:419.624361px;}
.yd8_c01338{bottom:420.066523px;}
.yd7_c01338{bottom:422.238208px;}
.yd6_c01338{bottom:423.339288px;}
.yd5_c01338{bottom:444.771780px;}
.yd4_c01338{bottom:445.869382px;}
.yd3_c01338{bottom:448.277932px;}
.yd2_c01338{bottom:449.385396px;}
.yd1_c01338{bottom:450.044227px;}
.yd0_c01338{bottom:451.362004px;}
.ycf_c01338{bottom:451.993486px;}
.yce_c01338{bottom:453.747907px;}
.ycd_c01338{bottom:455.519845px;}
.ycc_c01338{bottom:456.178591px;}
.ycb_c01338{bottom:457.906764px;}
.yca_c01338{bottom:482.730503px;}
.yc9_c01338{bottom:483.453352px;}
.yc8_c01338{bottom:484.878345px;}
.yc7_c01338{bottom:485.453737px;}
.yc6_c01338{bottom:486.875784px;}
.yc5_c01338{bottom:487.295889px;}
.yc4_c01338{bottom:488.434092px;}
.yc3_c01338{bottom:488.880245px;}
.yc2_c01338{bottom:490.298878px;}
.yc1_c01338{bottom:490.719222px;}
.yc0_c01338{bottom:491.119285px;}
.ybf_c01338{bottom:518.502322px;}
.ybe_c01338{bottom:519.956156px;}
.ybd_c01338{bottom:520.380443px;}
.ybc_c01338{bottom:521.369773px;}
.ybb_c01338{bottom:522.071859px;}
.yba_c01338{bottom:522.649047px;}
.yb9_c01338{bottom:524.225003px;}
.yb8_c01338{bottom:524.646247px;}
.yb7_c01338{bottom:525.217554px;}
.yb6_c01338{bottom:526.495972px;}
.yb5_c01338{bottom:553.525940px;}
.yb4_c01338{bottom:554.157300px;}
.yb3_c01338{bottom:555.393801px;}
.yb2_c01338{bottom:556.655952px;}
.yb1_c01338{bottom:557.466635px;}
.yb0_c01338{bottom:558.503008px;}
.yaf_c01338{bottom:559.138929px;}
.yae_c01338{bottom:560.786058px;}
.yad_c01338{bottom:561.432723px;}
.yac_c01338{bottom:562.028088px;}
.yab_c01338{bottom:562.684500px;}
.yaa_c01338{bottom:596.525876px;}
.ya9_c01338{bottom:596.526558px;}
.ya8_c01338{bottom:624.651692px;}
.ya7_c01338{bottom:624.996836px;}
.ya6_c01338{bottom:626.592635px;}
.ya5_c01338{bottom:626.940766px;}
.ya4_c01338{bottom:627.305785px;}
.ya3_c01338{bottom:628.032836px;}
.ya2_c01338{bottom:628.388636px;}
.ya1_c01338{bottom:628.626249px;}
.ya0_c01338{bottom:629.586314px;}
.y9f_c01338{bottom:630.195993px;}
.y9e_c01338{bottom:630.554832px;}
.y9d_c01338{bottom:631.161167px;}
.y9c_c01338{bottom:631.755141px;}
.y9b_c01338{bottom:657.452689px;}
.y9a_c01338{bottom:657.938658px;}
.y99_c01338{bottom:659.071874px;}
.y98_c01338{bottom:659.593606px;}
.y97_c01338{bottom:660.060161px;}
.y96_c01338{bottom:660.596234px;}
.y95_c01338{bottom:662.028069px;}
.y94_c01338{bottom:662.546997px;}
.y93_c01338{bottom:663.320901px;}
.y92_c01338{bottom:664.352739px;}
.y91_c01338{bottom:664.826285px;}
.y90_c01338{bottom:666.487001px;}
.y8f_c01338{bottom:667.131030px;}
.y8e_c01338{bottom:694.189322px;}
.y8d_c01338{bottom:694.556763px;}
.y8c_c01338{bottom:694.794376px;}
.y8b_c01338{bottom:695.879645px;}
.y8a_c01338{bottom:696.486239px;}
.y89_c01338{bottom:696.851202px;}
.y88_c01338{bottom:697.448368px;}
.y87_c01338{bottom:698.523678px;}
.y86_c01338{bottom:698.901159px;}
.y85_c01338{bottom:699.688560px;}
.y84_c01338{bottom:699.973378px;}
.y83_c01338{bottom:700.324600px;}
.y82_c01338{bottom:700.707547px;}
.y81_c01338{bottom:701.426649px;}
.y80_c01338{bottom:726.504421px;}
.y7f_c01338{bottom:727.151707px;}
.y7e_c01338{bottom:729.272850px;}
.y7d_c01338{bottom:729.873607px;}
.y7c_c01338{bottom:731.452536px;}
.y7b_c01338{bottom:732.632809px;}
.y7a_c01338{bottom:733.431615px;}
.y79_c01338{bottom:734.199218px;}
.y78_c01338{bottom:735.399508px;}
.y77_c01338{bottom:735.991239px;}
.y76_c01338{bottom:737.347716px;}
.y75_c01338{bottom:738.153457px;}
.y74_c01338{bottom:762.606510px;}
.y73_c01338{bottom:763.224465px;}
.y72_c01338{bottom:763.957782px;}
.y71_c01338{bottom:765.525076px;}
.y70_c01338{bottom:765.837934px;}
.y6f_c01338{bottom:767.063665px;}
.y6e_c01338{bottom:767.679835px;}
.y6d_c01338{bottom:768.144717px;}
.y6c_c01338{bottom:769.986720px;}
.y6b_c01338{bottom:770.746422px;}
.y6a_c01338{bottom:771.637581px;}
.y69_c01338{bottom:797.228092px;}
.y68_c01338{bottom:797.928529px;}
.y67_c01338{bottom:800.209397px;}
.y66_c01338{bottom:802.322569px;}
.y65_c01338{bottom:803.018416px;}
.y64_c01338{bottom:803.544453px;}
.y63_c01338{bottom:804.404118px;}
.y62_c01338{bottom:805.130442px;}
.y61_c01338{bottom:807.554620px;}
.y60_c01338{bottom:834.473883px;}
.y5f_c01338{bottom:835.151433px;}
.y5e_c01338{bottom:835.957353px;}
.y5d_c01338{bottom:836.458732px;}
.y5c_c01338{bottom:837.430721px;}
.y5b_c01338{bottom:837.930183px;}
.y5a_c01338{bottom:838.412046px;}
.y59_c01338{bottom:838.885949px;}
.y58_c01338{bottom:839.461917px;}
.y57_c01338{bottom:840.883752px;}
.y56_c01338{bottom:841.721560px;}
.y55_c01338{bottom:842.544009px;}
.y54_c01338{bottom:843.536355px;}
.y53_c01338{bottom:844.009977px;}
.y52_c01338{bottom:870.959526px;}
.y51_c01338{bottom:871.616284px;}
.y50_c01338{bottom:872.940316px;}
.y4f_c01338{bottom:873.584958px;}
.y4e_c01338{bottom:875.545620px;}
.y4d_c01338{bottom:876.214597px;}
.y4c_c01338{bottom:876.724622px;}
.y4b_c01338{bottom:877.871407px;}
.y4a_c01338{bottom:878.340236px;}
.y49_c01338{bottom:879.656945px;}
.y48_c01338{bottom:904.156761px;}
.y47_c01338{bottom:905.828515px;}
.y46_c01338{bottom:906.580765px;}
.y45_c01338{bottom:907.150002px;}
.y44_c01338{bottom:907.885320px;}
.y43_c01338{bottom:909.024099px;}
.y42_c01338{bottom:909.574593px;}
.y41_c01338{bottom:910.500931px;}
.y40_c01338{bottom:911.071111px;}
.y3f_c01338{bottom:911.626578px;}
.y3e_c01338{bottom:913.118583px;}
.y3d_c01338{bottom:913.683000px;}
.y3c_c01338{bottom:944.413184px;}
.y3b_c01338{bottom:945.355685px;}
.y3a_c01338{bottom:945.732021px;}
.y39_c01338{bottom:946.134084px;}
.y38_c01338{bottom:947.180659px;}
.y37_c01338{bottom:947.575263px;}
.y36_c01338{bottom:947.947542px;}
.y35_c01338{bottom:974.407808px;}
.y34_c01338{bottom:974.861277px;}
.y33_c01338{bottom:975.289194px;}
.y32_c01338{bottom:976.128463px;}
.y31_c01338{bottom:976.565162px;}
.y30_c01338{bottom:976.990646px;}
.y2f_c01338{bottom:978.982325px;}
.y2e_c01338{bottom:979.989948px;}
.y2d_c01338{bottom:980.839993px;}
.y2c_c01338{bottom:981.401408px;}
.y2b_c01338{bottom:982.243794px;}
.y2a_c01338{bottom:1007.692784px;}
.y29_c01338{bottom:1008.271835px;}
.y28_c01338{bottom:1009.387735px;}
.y27_c01338{bottom:1010.521516px;}
.y26_c01338{bottom:1011.067572px;}
.y25_c01338{bottom:1011.626463px;}
.y24_c01338{bottom:1013.119268px;}
.y23_c01338{bottom:1013.857542px;}
.y22_c01338{bottom:1015.547165px;}
.y21_c01338{bottom:1015.923384px;}
.y20_c01338{bottom:1017.581340px;}
.y1f_c01338{bottom:1018.140658px;}
.y1e_c01338{bottom:1018.699378px;}
.y1d_c01338{bottom:1044.262882px;}
.y1c_c01338{bottom:1044.708652px;}
.y1b_c01338{bottom:1045.034276px;}
.y1a_c01338{bottom:1046.252247px;}
.y19_c01338{bottom:1047.035699px;}
.y18_c01338{bottom:1047.337044px;}
.y17_c01338{bottom:1048.108875px;}
.y16_c01338{bottom:1048.573080px;}
.y15_c01338{bottom:1049.945140px;}
.y14_c01338{bottom:1050.875706px;}
.y13_c01338{bottom:1051.793654px;}
.y12_c01338{bottom:1052.693451px;}
.y11_c01338{bottom:1052.994455px;}
.y10_c01338{bottom:1079.691026px;}
.yf_c01338{bottom:1080.306711px;}
.ye_c01338{bottom:1081.553672px;}
.yd_c01338{bottom:1083.652155px;}
.yc_c01338{bottom:1084.267841px;}
.yb_c01338{bottom:1085.730204px;}
.ya_c01338{bottom:1086.761334px;}
.y9_c01338{bottom:1087.572130px;}
.y8_c01338{bottom:1088.644500px;}
.y7_c01338{bottom:1156.773360px;}
.y6_c01338{bottom:1158.367440px;}
.y5_c01338{bottom:1158.885984px;}
.y4_c01338{bottom:1159.931496px;}
.y3_c01338{bottom:1161.003000px;}
.y2_c01338{bottom:1210.950000px;}
.h2_c01338{height:12.000000px;}
.h4_c01338{height:66.008447px;}
.ha_c01338{height:66.009536px;}
.h5_c01338{height:66.011912px;}
.h8_c01338{height:72.010403px;}
.hd_c01338{height:72.011663px;}
.h7_c01338{height:72.012995px;}
.h3_c01338{height:78.000000px;}
.h11_c01338{height:78.001911px;}
.h10_c01338{height:78.009983px;}
.h9_c01338{height:78.011270px;}
.he_c01338{height:78.012635px;}
.h6_c01338{height:78.014078px;}
.hf_c01338{height:84.010751px;}
.hc_c01338{height:84.015161px;}
.hb_c01338{height:90.013004px;}
.h12_c01338{height:90.016244px;}
.h1_c01338{height:1250.250000px;}
.h0_c01338{height:1250.370000px;}
.w1_c01338{width:912.000000px;}
.w0_c01338{width:912.300000px;}
.x0_c01338{left:0.000000px;}
.x2_c01338{left:6.210000px;}
.x1_c01338{left:7.290000px;}
.x3_c01338{left:8.370000px;}
.x4_c01338{left:9.450000px;}
.xca_c01338{left:150.694500px;}
.xbf_c01338{left:151.786500px;}
.xb9_c01338{left:153.180017px;}
.xa7_c01338{left:154.225362px;}
.x97_c01338{left:155.859722px;}
.x9d_c01338{left:156.961205px;}
.x84_c01338{left:158.045935px;}
.x66_c01338{left:159.129997px;}
.x4f_c01338{left:161.546236px;}
.x46_c01338{left:162.624871px;}
.x22_c01338{left:164.814000px;}
.x16_c01338{left:166.461966px;}
.x17_c01338{left:187.990518px;}
.x50_c01338{left:193.113307px;}
.x37_c01338{left:195.848829px;}
.x23_c01338{left:197.695254px;}
.x7b_c01338{left:201.745332px;}
.x67_c01338{left:203.878732px;}
.xc4_c01338{left:204.955500px;}
.xba_c01338{left:207.706623px;}
.xa8_c01338{left:209.254808px;}
.x85_c01338{left:212.049943px;}
.x8e_c01338{left:215.185219px;}
.x9e_c01338{left:220.121415px;}
.x70_c01338{left:224.242413px;}
.x61_c01338{left:225.734661px;}
.x38_c01338{left:228.779718px;}
.x24_c01338{left:230.608008px;}
.xb4_c01338{left:239.480121px;}
.xa4_c01338{left:241.654134px;}
.x47_c01338{left:250.404855px;}
.x18_c01338{left:252.249117px;}
.x98_c01338{left:254.182422px;}
.x51_c01338{left:259.253551px;}
.xbb_c01338{left:261.148673px;}
.x8f_c01338{left:265.164000px;}
.x86_c01338{left:267.134053px;}
.x3c_c01338{left:271.143000px;}
.x2e_c01338{left:273.048990px;}
.xd_c01338{left:274.333500px;}
.x62_c01338{left:280.043440px;}
.x48_c01338{left:281.689926px;}
.x71_c01338{left:290.906196px;}
.x8_c01338{left:292.203000px;}
.xb5_c01338{left:295.112730px;}
.x99_c01338{left:298.150938px;}
.x87_c01338{left:299.804394px;}
.xc2_c01338{left:302.533548px;}
.x3d_c01338{left:304.344000px;}
.x68_c01338{left:312.124396px;}
.x52_c01338{left:314.075913px;}
.x39_c01338{left:316.005818px;}
.x19_c01338{left:317.857859px;}
.x25_c01338{left:328.135713px;}
.x9f_c01338{left:329.219841px;}
.xe_c01338{left:330.774000px;}
.xb6_c01338{left:336.427298px;}
.x2f_c01338{left:338.400929px;}
.xa9_c01338{left:339.954828px;}
.x7c_c01338{left:344.059677px;}
.x26_c01338{left:350.227040px;}
.x88_c01338{left:355.173529px;}
.x49_c01338{left:358.150527px;}
.x9_c01338{left:359.172000px;}
.xaf_c01338{left:362.425757px;}
.xa0_c01338{left:363.521246px;}
.x90_c01338{left:365.082000px;}
.x53_c01338{left:369.978325px;}
.xaa_c01338{left:371.542730px;}
.xf_c01338{left:373.447500px;}
.x69_c01338{left:378.846274px;}
.x3a_c01338{left:380.824925px;}
.x1a_c01338{left:384.288657px;}
.x72_c01338{left:388.399641px;}
.xc5_c01338{left:391.005000px;}
.x3e_c01338{left:392.109000px;}
.x5_c01338{left:408.240000px;}
.x5b_c01338{left:412.402998px;}
.x30_c01338{left:415.916264px;}
.x6a_c01338{left:421.528060px;}
.x73_c01338{left:422.696134px;}
.xa_c01338{left:424.516500px;}
.xb7_c01338{left:426.699218px;}
.x10_c01338{left:427.717500px;}
.x6_c01338{left:431.190000px;}
.xcb_c01338{left:435.310500px;}
.x4a_c01338{left:436.682679px;}
.xab_c01338{left:437.991476px;}
.x89_c01338{left:442.450929px;}
.x5c_c01338{left:445.288059px;}
.x27_c01338{left:449.658330px;}
.x91_c01338{left:451.773000px;}
.xcc_c01338{left:455.302500px;}
.xb_c01338{left:456.925500px;}
.x3f_c01338{left:458.323500px;}
.x3b_c01338{left:459.414384px;}
.x54_c01338{left:464.736538px;}
.x6b_c01338{left:465.868795px;}
.xc0_c01338{left:469.305000px;}
.xac_c01338{left:470.389349px;}
.x7_c01338{left:473.580000px;}
.xc9_c01338{left:480.799500px;}
.x1b_c01338{left:482.327477px;}
.xa1_c01338{left:483.366897px;}
.x92_c01338{left:485.242500px;}
.x5d_c01338{left:488.779799px;}
.xc3_c01338{left:490.506075px;}
.x28_c01338{left:493.095483px;}
.x8a_c01338{left:496.421937px;}
.x7d_c01338{left:499.074955px;}
.x55_c01338{left:503.118339px;}
.x11_c01338{left:504.684000px;}
.x40_c01338{left:512.814000px;}
.xb0_c01338{left:514.478799px;}
.x1c_c01338{left:515.525640px;}
.x74_c01338{left:520.459605px;}
.x6c_c01338{left:531.413173px;}
.x56_c01338{left:534.701910px;}
.xb8_c01338{left:536.005379px;}
.x12_c01338{left:537.088500px;}
.x93_c01338{left:539.788500px;}
.x41_c01338{left:545.196000px;}
.xa5_c01338{left:548.404320px;}
.x9a_c01338{left:550.125638px;}
.xcd_c01338{left:554.659500px;}
.xc_c01338{left:556.555500px;}
.xb1_c01338{left:559.300691px;}
.xbc_c01338{left:560.565716px;}
.x8b_c01338{left:562.578694px;}
.x4b_c01338{left:567.373116px;}
.x31_c01338{left:569.074706px;}
.x1d_c01338{left:570.679884px;}
.x75_c01338{left:574.739638px;}
.x63_c01338{left:576.340036px;}
.xc8_c01338{left:577.356468px;}
.x29_c01338{left:580.904318px;}
.x94_c01338{left:582.456000px;}
.xc6_c01338{left:588.964500px;}
.x1e_c01338{left:592.226436px;}
.x7e_c01338{left:594.509694px;}
.x8c_c01338{left:595.789086px;}
.x64_c01338{left:598.715184px;}
.x57_c01338{left:600.105628px;}
.x32_c01338{left:601.814439px;}
.x76_c01338{left:607.858504px;}
.xce_c01338{left:608.940000px;}
.x4c_c01338{left:610.324069px;}
.x42_c01338{left:612.183000px;}
.x2a_c01338{left:613.794572px;}
.x6d_c01338{left:619.172194px;}
.x5e_c01338{left:620.851043px;}
.xbd_c01338{left:622.712750px;}
.x9b_c01338{left:626.283330px;}
.x8d_c01338{left:627.388299px;}
.x7f_c01338{left:630.279918px;}
.x33_c01338{left:635.460287px;}
.xa2_c01338{left:637.065425px;}
.xc1_c01338{left:644.598000px;}
.x2b_c01338{left:645.930297px;}
.x13_c01338{left:647.535000px;}
.x95_c01338{left:648.885000px;}
.x6e_c01338{left:652.569133px;}
.x43_c01338{left:655.437000px;}
.x9c_c01338{left:658.960064px;}
.x80_c01338{left:661.342963px;}
.x77_c01338{left:663.046140px;}
.x58_c01338{left:664.871821px;}
.xb2_c01338{left:668.624484px;}
.xc7_c01338{left:676.453500px;}
.xad_c01338{left:679.927887px;}
.x44_c01338{left:688.921500px;}
.x81_c01338{left:696.093136px;}
.x4d_c01338{left:698.623079px;}
.x34_c01338{left:700.008140px;}
.xb3_c01338{left:701.055435px;}
.x65_c01338{left:710.679396px;}
.x14_c01338{left:713.164500px;}
.x35_c01338{left:732.954902px;}
.x1f_c01338{left:735.157002px;}
.x4e_c01338{left:742.375057px;}
.x15_c01338{left:745.569000px;}
.x96_c01338{left:747.193500px;}
.x59_c01338{left:752.098305px;}
.xa6_c01338{left:757.155359px;}
.x20_c01338{left:758.376197px;}
.x78_c01338{left:761.660187px;}
.x5f_c01338{left:763.404465px;}
.x36_c01338{left:767.799363px;}
.x6f_c01338{left:770.369619px;}
.x82_c01338{left:771.667212px;}
.x2c_c01338{left:778.313342px;}
.x79_c01338{left:783.227880px;}
.xbe_c01338{left:787.195626px;}
.x21_c01338{left:790.209218px;}
.x5a_c01338{left:797.249835px;}
.xa3_c01338{left:802.391792px;}
.x83_c01338{left:804.048808px;}
.x60_c01338{left:807.166205px;}
.xae_c01338{left:811.194908px;}
.x2d_c01338{left:812.343624px;}
.x7a_c01338{left:816.580771px;}
.x45_c01338{left:831.510000px;}
@media print{
.v0_c01338{vertical-align:0.000000pt;}
.ls0_c01338{letter-spacing:0.000000pt;}
.ws0_c01338{word-spacing:0.000000pt;}
.fs0_c01338{font-size:10.666667pt;}
.fs2_c01338{font-size:58.674176pt;}
.fs8_c01338{font-size:58.675143pt;}
.fs3_c01338{font-size:58.677255pt;}
.fs6_c01338{font-size:64.009247pt;}
.fsb_c01338{font-size:64.010367pt;}
.fs5_c01338{font-size:64.011551pt;}
.fs1_c01338{font-size:69.333333pt;}
.fsf_c01338{font-size:69.335032pt;}
.fse_c01338{font-size:69.342207pt;}
.fs7_c01338{font-size:69.343351pt;}
.fsc_c01338{font-size:69.344564pt;}
.fs4_c01338{font-size:69.345847pt;}
.fsd_c01338{font-size:74.676223pt;}
.fsa_c01338{font-size:74.680143pt;}
.fs9_c01338{font-size:80.011559pt;}
.fs10_c01338{font-size:80.014439pt;}
.y0_c01338{bottom:0.000000pt;}
.y136_c01338{bottom:109.384743pt;}
.y135_c01338{bottom:110.301480pt;}
.y134_c01338{bottom:111.414348pt;}
.y133_c01338{bottom:111.979509pt;}
.y132_c01338{bottom:112.317152pt;}
.y131_c01338{bottom:113.092656pt;}
.y130_c01338{bottom:113.612749pt;}
.y12f_c01338{bottom:114.946727pt;}
.y12e_c01338{bottom:116.230240pt;}
.y12d_c01338{bottom:117.124000pt;}
.y12c_c01338{bottom:141.761480pt;}
.y12b_c01338{bottom:142.026985pt;}
.y12a_c01338{bottom:142.430213pt;}
.y129_c01338{bottom:144.144056pt;}
.y128_c01338{bottom:144.480000pt;}
.y127_c01338{bottom:165.885803pt;}
.y126_c01338{bottom:166.384064pt;}
.y125_c01338{bottom:167.697643pt;}
.y124_c01338{bottom:168.375317pt;}
.y123_c01338{bottom:170.224576pt;}
.y122_c01338{bottom:172.320981pt;}
.y121_c01338{bottom:188.074720pt;}
.y120_c01338{bottom:188.873333pt;}
.y11f_c01338{bottom:189.653173pt;}
.y11e_c01338{bottom:190.117621pt;}
.y11d_c01338{bottom:190.901259pt;}
.y11c_c01338{bottom:192.157152pt;}
.y11b_c01338{bottom:192.933045pt;}
.y11a_c01338{bottom:193.374709pt;}
.y119_c01338{bottom:194.503947pt;}
.y118_c01338{bottom:194.899787pt;}
.y117_c01338{bottom:195.579083pt;}
.y116_c01338{bottom:196.324000pt;}
.y115_c01338{bottom:220.649627pt;}
.y114_c01338{bottom:221.143691pt;}
.y113_c01338{bottom:221.425083pt;}
.y112_c01338{bottom:221.831283pt;}
.y111_c01338{bottom:222.816152pt;}
.y110_c01338{bottom:224.157627pt;}
.y10f_c01338{bottom:239.209264pt;}
.y10e_c01338{bottom:241.719016pt;}
.y10d_c01338{bottom:243.810640pt;}
.y10c_c01338{bottom:244.523704pt;}
.y10b_c01338{bottom:245.209528pt;}
.y10a_c01338{bottom:246.104800pt;}
.y109_c01338{bottom:247.314760pt;}
.y108_c01338{bottom:248.018272pt;}
.y107_c01338{bottom:249.604000pt;}
.y106_c01338{bottom:270.782537pt;}
.y105_c01338{bottom:271.376653pt;}
.y104_c01338{bottom:272.645463pt;}
.y103_c01338{bottom:273.121645pt;}
.y102_c01338{bottom:274.005847pt;}
.y101_c01338{bottom:275.291556pt;}
.y100_c01338{bottom:275.921379pt;}
.yff_c01338{bottom:276.997833pt;}
.yfe_c01338{bottom:277.323695pt;}
.yfd_c01338{bottom:278.265047pt;}
.yfc_c01338{bottom:278.702144pt;}
.yfb_c01338{bottom:279.024905pt;}
.yfa_c01338{bottom:279.800413pt;}
.yf9_c01338{bottom:301.486831pt;}
.yf8_c01338{bottom:302.005783pt;}
.yf7_c01338{bottom:303.834401pt;}
.yf6_c01338{bottom:304.486871pt;}
.yf5_c01338{bottom:304.989008pt;}
.yf4_c01338{bottom:305.640312pt;}
.yf3_c01338{bottom:306.302687pt;}
.yf2_c01338{bottom:306.640331pt;}
.yf1_c01338{bottom:308.004865pt;}
.yf0_c01338{bottom:308.629263pt;}
.yef_c01338{bottom:309.470133pt;}
.yee_c01338{bottom:310.767757pt;}
.yed_c01338{bottom:332.492656pt;}
.yec_c01338{bottom:333.958289pt;}
.yeb_c01338{bottom:334.391304pt;}
.yea_c01338{bottom:335.417748pt;}
.ye9_c01338{bottom:335.849521pt;}
.ye8_c01338{bottom:336.447789pt;}
.ye7_c01338{bottom:337.323372pt;}
.ye6_c01338{bottom:337.617840pt;}
.y1_c01338{bottom:338.160000pt;}
.ye5_c01338{bottom:338.475601pt;}
.ye4_c01338{bottom:338.926564pt;}
.ye3_c01338{bottom:340.380652pt;}
.ye2_c01338{bottom:341.254993pt;}
.ye1_c01338{bottom:364.623227pt;}
.ye0_c01338{bottom:365.588141pt;}
.ydf_c01338{bottom:366.956223pt;}
.yde_c01338{bottom:367.541952pt;}
.ydd_c01338{bottom:369.500019pt;}
.ydc_c01338{bottom:370.680496pt;}
.ydb_c01338{bottom:371.257004pt;}
.yda_c01338{bottom:372.437937pt;}
.yd9_c01338{bottom:372.999432pt;}
.yd8_c01338{bottom:373.392465pt;}
.yd7_c01338{bottom:375.322852pt;}
.yd6_c01338{bottom:376.301589pt;}
.yd5_c01338{bottom:395.352693pt;}
.yd4_c01338{bottom:396.328340pt;}
.yd3_c01338{bottom:398.469273pt;}
.yd2_c01338{bottom:399.453685pt;}
.yd1_c01338{bottom:400.039313pt;}
.yd0_c01338{bottom:401.210671pt;}
.ycf_c01338{bottom:401.771988pt;}
.yce_c01338{bottom:403.331473pt;}
.ycd_c01338{bottom:404.906529pt;}
.ycc_c01338{bottom:405.492081pt;}
.ycb_c01338{bottom:407.028235pt;}
.yca_c01338{bottom:429.093780pt;}
.yc9_c01338{bottom:429.736313pt;}
.yc8_c01338{bottom:431.002973pt;}
.yc7_c01338{bottom:431.514433pt;}
.yc6_c01338{bottom:432.778475pt;}
.yc5_c01338{bottom:433.151901pt;}
.yc4_c01338{bottom:434.163637pt;}
.yc3_c01338{bottom:434.560217pt;}
.yc2_c01338{bottom:435.821225pt;}
.yc1_c01338{bottom:436.194864pt;}
.yc0_c01338{bottom:436.550476pt;}
.ybf_c01338{bottom:460.890953pt;}
.ybe_c01338{bottom:462.183249pt;}
.ybd_c01338{bottom:462.560393pt;}
.ybc_c01338{bottom:463.439799pt;}
.ybb_c01338{bottom:464.063875pt;}
.yba_c01338{bottom:464.576931pt;}
.yb9_c01338{bottom:465.977780pt;}
.yb8_c01338{bottom:466.352220pt;}
.yb7_c01338{bottom:466.860048pt;}
.yb6_c01338{bottom:467.996420pt;}
.yb5_c01338{bottom:492.023057pt;}
.yb4_c01338{bottom:492.584267pt;}
.yb3_c01338{bottom:493.683379pt;}
.yb2_c01338{bottom:494.805291pt;}
.yb1_c01338{bottom:495.525897pt;}
.yb0_c01338{bottom:496.447119pt;}
.yaf_c01338{bottom:497.012381pt;}
.yae_c01338{bottom:498.476496pt;}
.yad_c01338{bottom:499.051309pt;}
.yac_c01338{bottom:499.580523pt;}
.yab_c01338{bottom:500.164000pt;}
.yaa_c01338{bottom:530.245223pt;}
.ya9_c01338{bottom:530.245829pt;}
.ya8_c01338{bottom:555.245948pt;}
.ya7_c01338{bottom:555.552743pt;}
.ya6_c01338{bottom:556.971231pt;}
.ya5_c01338{bottom:557.280681pt;}
.ya4_c01338{bottom:557.605143pt;}
.ya3_c01338{bottom:558.251409pt;}
.ya2_c01338{bottom:558.567676pt;}
.ya1_c01338{bottom:558.778888pt;}
.ya0_c01338{bottom:559.632279pt;}
.y9f_c01338{bottom:560.174216pt;}
.y9e_c01338{bottom:560.493184pt;}
.y9d_c01338{bottom:561.032148pt;}
.y9c_c01338{bottom:561.560125pt;}
.y9b_c01338{bottom:584.402391pt;}
.y9a_c01338{bottom:584.834363pt;}
.y99_c01338{bottom:585.841665pt;}
.y98_c01338{bottom:586.305428pt;}
.y97_c01338{bottom:586.720143pt;}
.y96_c01338{bottom:587.196652pt;}
.y95_c01338{bottom:588.469395pt;}
.y94_c01338{bottom:588.930664pt;}
.y93_c01338{bottom:589.618579pt;}
.y92_c01338{bottom:590.535768pt;}
.y91_c01338{bottom:590.956697pt;}
.y90_c01338{bottom:592.432889pt;}
.y8f_c01338{bottom:593.005360pt;}
.y8e_c01338{bottom:617.057175pt;}
.y8d_c01338{bottom:617.383789pt;}
.y8c_c01338{bottom:617.595001pt;}
.y8b_c01338{bottom:618.559684pt;}
.y8a_c01338{bottom:619.098879pt;}
.y89_c01338{bottom:619.423291pt;}
.y88_c01338{bottom:619.954105pt;}
.y87_c01338{bottom:620.909936pt;}
.y86_c01338{bottom:621.245475pt;}
.y85_c01338{bottom:621.945387pt;}
.y84_c01338{bottom:622.198559pt;}
.y83_c01338{bottom:622.510756pt;}
.y82_c01338{bottom:622.851153pt;}
.y81_c01338{bottom:623.490355pt;}
.y80_c01338{bottom:645.781708pt;}
.y7f_c01338{bottom:646.357073pt;}
.y7e_c01338{bottom:648.242533pt;}
.y7d_c01338{bottom:648.776540pt;}
.y7c_c01338{bottom:650.180032pt;}
.y7b_c01338{bottom:651.229164pt;}
.y7a_c01338{bottom:651.939213pt;}
.y79_c01338{bottom:652.621527pt;}
.y78_c01338{bottom:653.688452pt;}
.y77_c01338{bottom:654.214435pt;}
.y76_c01338{bottom:655.420192pt;}
.y75_c01338{bottom:656.136407pt;}
.y74_c01338{bottom:677.872453pt;}
.y73_c01338{bottom:678.421747pt;}
.y72_c01338{bottom:679.073584pt;}
.y71_c01338{bottom:680.466735pt;}
.y70_c01338{bottom:680.744831pt;}
.y6f_c01338{bottom:681.834369pt;}
.y6e_c01338{bottom:682.382076pt;}
.y6d_c01338{bottom:682.795304pt;}
.y6c_c01338{bottom:684.432640pt;}
.y6b_c01338{bottom:685.107931pt;}
.y6a_c01338{bottom:685.900072pt;}
.y69_c01338{bottom:708.647193pt;}
.y68_c01338{bottom:709.269804pt;}
.y67_c01338{bottom:711.297241pt;}
.y66_c01338{bottom:713.175617pt;}
.y65_c01338{bottom:713.794148pt;}
.y64_c01338{bottom:714.261736pt;}
.y63_c01338{bottom:715.025883pt;}
.y62_c01338{bottom:715.671504pt;}
.y61_c01338{bottom:717.826329pt;}
.y60_c01338{bottom:741.754563pt;}
.y5f_c01338{bottom:742.356829pt;}
.y5e_c01338{bottom:743.073203pt;}
.y5d_c01338{bottom:743.518873pt;}
.y5c_c01338{bottom:744.382863pt;}
.y5b_c01338{bottom:744.826829pt;}
.y5a_c01338{bottom:745.255152pt;}
.y59_c01338{bottom:745.676399pt;}
.y58_c01338{bottom:746.188371pt;}
.y57_c01338{bottom:747.452224pt;}
.y56_c01338{bottom:748.196943pt;}
.y55_c01338{bottom:748.928008pt;}
.y54_c01338{bottom:749.810093pt;}
.y53_c01338{bottom:750.231091pt;}
.y52_c01338{bottom:774.186245pt;}
.y51_c01338{bottom:774.770031pt;}
.y50_c01338{bottom:775.946948pt;}
.y4f_c01338{bottom:776.519963pt;}
.y4e_c01338{bottom:778.262773pt;}
.y4d_c01338{bottom:778.857420pt;}
.y4c_c01338{bottom:779.310775pt;}
.y4b_c01338{bottom:780.330140pt;}
.y4a_c01338{bottom:780.746876pt;}
.y49_c01338{bottom:781.917284pt;}
.y48_c01338{bottom:803.694899pt;}
.y47_c01338{bottom:805.180903pt;}
.y46_c01338{bottom:805.849569pt;}
.y45_c01338{bottom:806.355557pt;}
.y44_c01338{bottom:807.009173pt;}
.y43_c01338{bottom:808.021421pt;}
.y42_c01338{bottom:808.510749pt;}
.y41_c01338{bottom:809.334161pt;}
.y40_c01338{bottom:809.840988pt;}
.y3f_c01338{bottom:810.334736pt;}
.y3e_c01338{bottom:811.660963pt;}
.y3d_c01338{bottom:812.162667pt;}
.y3c_c01338{bottom:839.478385pt;}
.y3b_c01338{bottom:840.316164pt;}
.y3a_c01338{bottom:840.650685pt;}
.y39_c01338{bottom:841.008075pt;}
.y38_c01338{bottom:841.938364pt;}
.y37_c01338{bottom:842.289123pt;}
.y36_c01338{bottom:842.620037pt;}
.y35_c01338{bottom:866.140273pt;}
.y34_c01338{bottom:866.543357pt;}
.y33_c01338{bottom:866.923728pt;}
.y32_c01338{bottom:867.669745pt;}
.y31_c01338{bottom:868.057921pt;}
.y30_c01338{bottom:868.436129pt;}
.y2f_c01338{bottom:870.206511pt;}
.y2e_c01338{bottom:871.102176pt;}
.y2d_c01338{bottom:871.857772pt;}
.y2c_c01338{bottom:872.356807pt;}
.y2b_c01338{bottom:873.105595pt;}
.y2a_c01338{bottom:895.726919pt;}
.y29_c01338{bottom:896.241631pt;}
.y28_c01338{bottom:897.233543pt;}
.y27_c01338{bottom:898.241348pt;}
.y26_c01338{bottom:898.726731pt;}
.y25_c01338{bottom:899.223523pt;}
.y24_c01338{bottom:900.550460pt;}
.y23_c01338{bottom:901.206704pt;}
.y22_c01338{bottom:902.708591pt;}
.y21_c01338{bottom:903.043008pt;}
.y20_c01338{bottom:904.516747pt;}
.y1f_c01338{bottom:905.013919pt;}
.y1e_c01338{bottom:905.510559pt;}
.y1d_c01338{bottom:928.233673pt;}
.y1c_c01338{bottom:928.629913pt;}
.y1b_c01338{bottom:928.919356pt;}
.y1a_c01338{bottom:930.001997pt;}
.y19_c01338{bottom:930.698399pt;}
.y18_c01338{bottom:930.966261pt;}
.y17_c01338{bottom:931.652333pt;}
.y16_c01338{bottom:932.064960pt;}
.y15_c01338{bottom:933.284569pt;}
.y14_c01338{bottom:934.111739pt;}
.y13_c01338{bottom:934.927692pt;}
.y12_c01338{bottom:935.727512pt;}
.y11_c01338{bottom:935.995071pt;}
.y10_c01338{bottom:959.725356pt;}
.yf_c01338{bottom:960.272632pt;}
.ye_c01338{bottom:961.381041pt;}
.yd_c01338{bottom:963.246360pt;}
.yc_c01338{bottom:963.793636pt;}
.yb_c01338{bottom:965.093515pt;}
.ya_c01338{bottom:966.010075pt;}
.y9_c01338{bottom:966.730783pt;}
.y8_c01338{bottom:967.684000pt;}
.y7_c01338{bottom:1028.242987pt;}
.y6_c01338{bottom:1029.659947pt;}
.y5_c01338{bottom:1030.120875pt;}
.y4_c01338{bottom:1031.050219pt;}
.y3_c01338{bottom:1032.002667pt;}
.y2_c01338{bottom:1076.400000pt;}
.h2_c01338{height:10.666667pt;}
.h4_c01338{height:58.674176pt;}
.ha_c01338{height:58.675143pt;}
.h5_c01338{height:58.677255pt;}
.h8_c01338{height:64.009247pt;}
.hd_c01338{height:64.010367pt;}
.h7_c01338{height:64.011551pt;}
.h3_c01338{height:69.333333pt;}
.h11_c01338{height:69.335032pt;}
.h10_c01338{height:69.342207pt;}
.h9_c01338{height:69.343351pt;}
.he_c01338{height:69.344564pt;}
.h6_c01338{height:69.345847pt;}
.hf_c01338{height:74.676223pt;}
.hc_c01338{height:74.680143pt;}
.hb_c01338{height:80.011559pt;}
.h12_c01338{height:80.014439pt;}
.h1_c01338{height:1111.333333pt;}
.h0_c01338{height:1111.440000pt;}
.w1_c01338{width:810.666667pt;}
.w0_c01338{width:810.933333pt;}
.x0_c01338{left:0.000000pt;}
.x2_c01338{left:5.520000pt;}
.x1_c01338{left:6.480000pt;}
.x3_c01338{left:7.440000pt;}
.x4_c01338{left:8.400000pt;}
.xca_c01338{left:133.950667pt;}
.xbf_c01338{left:134.921333pt;}
.xb9_c01338{left:136.160015pt;}
.xa7_c01338{left:137.089211pt;}
.x97_c01338{left:138.541975pt;}
.x9d_c01338{left:139.521071pt;}
.x84_c01338{left:140.485276pt;}
.x66_c01338{left:141.448887pt;}
.x4f_c01338{left:143.596655pt;}
.x46_c01338{left:144.555441pt;}
.x22_c01338{left:146.501333pt;}
.x16_c01338{left:147.966192pt;}
.x17_c01338{left:167.102683pt;}
.x50_c01338{left:171.656273pt;}
.x37_c01338{left:174.087848pt;}
.x23_c01338{left:175.729115pt;}
.x7b_c01338{left:179.329184pt;}
.x67_c01338{left:181.225540pt;}
.xc4_c01338{left:182.182667pt;}
.xba_c01338{left:184.628109pt;}
.xa8_c01338{left:186.004273pt;}
.x85_c01338{left:188.488839pt;}
.x8e_c01338{left:191.275751pt;}
.x9e_c01338{left:195.663480pt;}
.x70_c01338{left:199.326589pt;}
.x61_c01338{left:200.653032pt;}
.x38_c01338{left:203.359749pt;}
.x24_c01338{left:204.984896pt;}
.xb4_c01338{left:212.871219pt;}
.xa4_c01338{left:214.803675pt;}
.x47_c01338{left:222.582093pt;}
.x18_c01338{left:224.221437pt;}
.x98_c01338{left:225.939931pt;}
.x51_c01338{left:230.447601pt;}
.xbb_c01338{left:232.132153pt;}
.x8f_c01338{left:235.701333pt;}
.x86_c01338{left:237.452492pt;}
.x3c_c01338{left:241.016000pt;}
.x2e_c01338{left:242.710213pt;}
.xd_c01338{left:243.852000pt;}
.x62_c01338{left:248.927503pt;}
.x48_c01338{left:250.391045pt;}
.x71_c01338{left:258.583285pt;}
.x8_c01338{left:259.736000pt;}
.xb5_c01338{left:262.322427pt;}
.x99_c01338{left:265.023056pt;}
.x87_c01338{left:266.492795pt;}
.xc2_c01338{left:268.918709pt;}
.x3d_c01338{left:270.528000pt;}
.x68_c01338{left:277.443908pt;}
.x52_c01338{left:279.178589pt;}
.x39_c01338{left:280.894060pt;}
.x19_c01338{left:282.540319pt;}
.x25_c01338{left:291.676189pt;}
.x9f_c01338{left:292.639859pt;}
.xe_c01338{left:294.021333pt;}
.xb6_c01338{left:299.046487pt;}
.x2f_c01338{left:300.800825pt;}
.xa9_c01338{left:302.182069pt;}
.x7c_c01338{left:305.830824pt;}
.x26_c01338{left:311.312924pt;}
.x88_c01338{left:315.709804pt;}
.x49_c01338{left:318.356024pt;}
.x9_c01338{left:319.264000pt;}
.xaf_c01338{left:322.156228pt;}
.xa0_c01338{left:323.129996pt;}
.x90_c01338{left:324.517333pt;}
.x53_c01338{left:328.869623pt;}
.xaa_c01338{left:330.260204pt;}
.xf_c01338{left:331.953333pt;}
.x69_c01338{left:336.752244pt;}
.x3a_c01338{left:338.511044pt;}
.x1a_c01338{left:341.589917pt;}
.x72_c01338{left:345.244125pt;}
.xc5_c01338{left:347.560000pt;}
.x3e_c01338{left:348.541333pt;}
.x5_c01338{left:362.880000pt;}
.x5b_c01338{left:366.580443pt;}
.x30_c01338{left:369.703345pt;}
.x6a_c01338{left:374.691609pt;}
.x73_c01338{left:375.729897pt;}
.xa_c01338{left:377.348000pt;}
.xb7_c01338{left:379.288193pt;}
.x10_c01338{left:380.193333pt;}
.x6_c01338{left:383.280000pt;}
.xcb_c01338{left:386.942667pt;}
.x4a_c01338{left:388.162381pt;}
.xab_c01338{left:389.325756pt;}
.x89_c01338{left:393.289715pt;}
.x5c_c01338{left:395.811608pt;}
.x27_c01338{left:399.696293pt;}
.x91_c01338{left:401.576000pt;}
.xcc_c01338{left:404.713333pt;}
.xb_c01338{left:406.156000pt;}
.x3f_c01338{left:407.398667pt;}
.x3b_c01338{left:408.368341pt;}
.x54_c01338{left:413.099145pt;}
.x6b_c01338{left:414.105596pt;}
.xc0_c01338{left:417.160000pt;}
.xac_c01338{left:418.123865pt;}
.x7_c01338{left:420.960000pt;}
.xc9_c01338{left:427.377333pt;}
.x1b_c01338{left:428.735535pt;}
.xa1_c01338{left:429.659464pt;}
.x92_c01338{left:431.326667pt;}
.x5d_c01338{left:434.470932pt;}
.xc3_c01338{left:436.005400pt;}
.x28_c01338{left:438.307096pt;}
.x8a_c01338{left:441.263944pt;}
.x7d_c01338{left:443.622183pt;}
.x55_c01338{left:447.216301pt;}
.x11_c01338{left:448.608000pt;}
.x40_c01338{left:455.834667pt;}
.xb0_c01338{left:457.314488pt;}
.x1c_c01338{left:458.245013pt;}
.x74_c01338{left:462.630760pt;}
.x6c_c01338{left:472.367265pt;}
.x56_c01338{left:475.290587pt;}
.xb8_c01338{left:476.449225pt;}
.x12_c01338{left:477.412000pt;}
.x93_c01338{left:479.812000pt;}
.x41_c01338{left:484.618667pt;}
.xa5_c01338{left:487.470507pt;}
.x9a_c01338{left:489.000567pt;}
.xcd_c01338{left:493.030667pt;}
.xc_c01338{left:494.716000pt;}
.xb1_c01338{left:497.156169pt;}
.xbc_c01338{left:498.280636pt;}
.x8b_c01338{left:500.069951pt;}
.x4b_c01338{left:504.331659pt;}
.x31_c01338{left:505.844183pt;}
.x1d_c01338{left:507.271008pt;}
.x75_c01338{left:510.879679pt;}
.x63_c01338{left:512.302255pt;}
.xc8_c01338{left:513.205749pt;}
.x29_c01338{left:516.359393pt;}
.x94_c01338{left:517.738667pt;}
.xc6_c01338{left:523.524000pt;}
.x1e_c01338{left:526.423499pt;}
.x7e_c01338{left:528.453061pt;}
.x8c_c01338{left:529.590299pt;}
.x64_c01338{left:532.191275pt;}
.x57_c01338{left:533.427225pt;}
.x32_c01338{left:534.946168pt;}
.x76_c01338{left:540.318671pt;}
.xce_c01338{left:541.280000pt;}
.x4c_c01338{left:542.510284pt;}
.x42_c01338{left:544.162667pt;}
.x2a_c01338{left:545.595175pt;}
.x6d_c01338{left:550.375284pt;}
.x5e_c01338{left:551.867593pt;}
.xbd_c01338{left:553.522444pt;}
.x9b_c01338{left:556.696293pt;}
.x8d_c01338{left:557.678488pt;}
.x7f_c01338{left:560.248816pt;}
.x33_c01338{left:564.853588pt;}
.xa2_c01338{left:566.280377pt;}
.xc1_c01338{left:572.976000pt;}
.x2b_c01338{left:574.160264pt;}
.x13_c01338{left:575.586667pt;}
.x95_c01338{left:576.786667pt;}
.x6e_c01338{left:580.061452pt;}
.x43_c01338{left:582.610667pt;}
.x9c_c01338{left:585.742279pt;}
.x80_c01338{left:587.860412pt;}
.x77_c01338{left:589.374347pt;}
.x58_c01338{left:590.997175pt;}
.xb2_c01338{left:594.332875pt;}
.xc7_c01338{left:601.292000pt;}
.xad_c01338{left:604.380344pt;}
.x44_c01338{left:612.374667pt;}
.x81_c01338{left:618.749455pt;}
.x4d_c01338{left:620.998292pt;}
.x34_c01338{left:622.229457pt;}
.xb3_c01338{left:623.160387pt;}
.x65_c01338{left:631.715019pt;}
.x14_c01338{left:633.924000pt;}
.x35_c01338{left:651.515468pt;}
.x1f_c01338{left:653.472891pt;}
.x4e_c01338{left:659.888940pt;}
.x15_c01338{left:662.728000pt;}
.x96_c01338{left:664.172000pt;}
.x59_c01338{left:668.531827pt;}
.xa6_c01338{left:673.026985pt;}
.x20_c01338{left:674.112175pt;}
.x78_c01338{left:677.031277pt;}
.x5f_c01338{left:678.581747pt;}
.x36_c01338{left:682.488323pt;}
.x6f_c01338{left:684.772995pt;}
.x82_c01338{left:685.926411pt;}
.x2c_c01338{left:691.834081pt;}
.x79_c01338{left:696.202560pt;}
.xbe_c01338{left:699.729445pt;}
.x21_c01338{left:702.408193pt;}
.x5a_c01338{left:708.666520pt;}
.xa3_c01338{left:713.237148pt;}
.x83_c01338{left:714.710052pt;}
.x60_c01338{left:717.481071pt;}
.xae_c01338{left:721.062140pt;}
.x2d_c01338{left:722.083221pt;}
.x7a_c01338{left:725.849575pt;}
.x45_c01338{left:739.120000pt;}
}





/* 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_c01339 {
    display:none;
  }
  .loading-indicator_c01339.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01339 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_c01339 { 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_c01339" -> "#page-container .classname_c01339")
 */
.pf_c01339 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01339 { /* 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_c01339.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01339 { /* 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_c01339 { /* 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_c01339 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01339 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01339 {overflow:visible;}
  }
}
.c_c01339 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01339 { /* 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_c01339:after { /* webkit #35443 */
  content: '';
}
.t_c01339:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01339 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 */
}
.__c01339 { /* 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_c01339 { /* info for Javascript */
  display:none;
}
.l_c01339 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01339 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01339 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01339: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_c01339 {
    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_c01339.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01339.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_c01339 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01339{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01339;src:url('chunks/assets/font_74d7e987f08e4505b74f4479.woff2')format("woff");}.ff1_c01339{font-family:ff1_c01339;line-height:1.000000;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;}
.m6_c01339{transform:matrix(0.211015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211015,0.000000,0.000000,0.250000,0,0);}
.m5_c01339{transform:matrix(0.238640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238640,0.000000,0.000000,0.250000,0,0);}
.m4_c01339{transform:matrix(0.241990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241990,0.000000,0.000000,0.250000,0,0);}
.m7_c01339{transform:matrix(0.278760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278760,0.000000,0.000000,0.250000,0,0);}
.m2_c01339{transform:matrix(0.292830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292830,0.000000,0.000000,0.250000,0,0);}
.m0_c01339{transform:matrix(0.319755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319755,0.000000,0.000000,0.250000,0,0);}
.m3_c01339{transform:matrix(0.376070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376070,0.000000,0.000000,0.250000,0,0);}
.m1_c01339{transform:matrix(0.780010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.780010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.780010,0.000000,0.000000,0.250000,0,0);}
.v0_c01339{vertical-align:0.000000px;}
.ls0_c01339{letter-spacing:0.000000px;}
.sc__c01339{text-shadow:none;}
.sc0_c01339{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__c01339{-webkit-text-stroke:0px transparent;}
.sc0_c01339{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01339{word-spacing:0.000000px;}
.fc0_c01339{color:transparent;}
.fs0_c01339{font-size:84.000000px;}
.y0_c01339{bottom:0.000000px;}
.y1_c01339{bottom:608.151000px;}
.h2_c01339{height:84.000000px;}
.h1_c01339{height:1250.250000px;}
.h0_c01339{height:1250.370000px;}
.w1_c01339{width:912.000000px;}
.w0_c01339{width:912.300000px;}
.x0_c01339{left:0.000000px;}
.x1_c01339{left:320.490000px;}
.x2_c01339{left:339.930000px;}
.x3_c01339{left:437.940000px;}
.x4_c01339{left:474.660000px;}
.x5_c01339{left:495.990000px;}
.x6_c01339{left:584.010000px;}
.x7_c01339{left:639.360000px;}
.x8_c01339{left:670.950000px;}
@media print{
.v0_c01339{vertical-align:0.000000pt;}
.ls0_c01339{letter-spacing:0.000000pt;}
.ws0_c01339{word-spacing:0.000000pt;}
.fs0_c01339{font-size:74.666667pt;}
.y0_c01339{bottom:0.000000pt;}
.y1_c01339{bottom:540.578667pt;}
.h2_c01339{height:74.666667pt;}
.h1_c01339{height:1111.333333pt;}
.h0_c01339{height:1111.440000pt;}
.w1_c01339{width:810.666667pt;}
.w0_c01339{width:810.933333pt;}
.x0_c01339{left:0.000000pt;}
.x1_c01339{left:284.880000pt;}
.x2_c01339{left:302.160000pt;}
.x3_c01339{left:389.280000pt;}
.x4_c01339{left:421.920000pt;}
.x5_c01339{left:440.880000pt;}
.x6_c01339{left:519.120000pt;}
.x7_c01339{left:568.320000pt;}
.x8_c01339{left:596.400000pt;}
}





/* 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_c01340 {
    display:none;
  }
  .loading-indicator_c01340.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01340 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_c01340 { 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_c01340" -> "#page-container .classname_c01340")
 */
.pf_c01340 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01340 { /* 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_c01340.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01340 { /* 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_c01340 { /* 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_c01340 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01340 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01340 {overflow:visible;}
  }
}
.c_c01340 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01340 { /* 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_c01340:after { /* webkit #35443 */
  content: '';
}
.t_c01340:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01340 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 */
}
.__c01340 { /* 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_c01340 { /* info for Javascript */
  display:none;
}
.l_c01340 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01340 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01340 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01340: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_c01340 {
    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_c01340.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01340.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_c01340 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01340{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01340;src:url('chunks/assets/font_dbd529e162d5851c7bfb6d27.woff2')format("woff");}.ff1_c01340{font-family:ff1_c01340;line-height:1.000000;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;}
.mbc_c01340{transform:matrix(0.011860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.011860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.011860,0.000000,0.000000,0.250000,0,0);}
.m119_c01340{transform:matrix(0.145700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145700,0.000000,0.000000,0.250000,0,0);}
.m116_c01340{transform:matrix(0.146095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146095,0.000000,0.000000,0.250000,0,0);}
.m10a_c01340{transform:matrix(0.147410,-0.001179,0.002000,0.249992,0,0);-ms-transform:matrix(0.147410,-0.001179,0.002000,0.249992,0,0);-webkit-transform:matrix(0.147410,-0.001179,0.002000,0.249992,0,0);}
.m117_c01340{transform:matrix(0.147470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147470,0.000000,0.000000,0.250000,0,0);}
.m10c_c01340{transform:matrix(0.151605,-0.001213,0.002000,0.249992,0,0);-ms-transform:matrix(0.151605,-0.001213,0.002000,0.249992,0,0);-webkit-transform:matrix(0.151605,-0.001213,0.002000,0.249992,0,0);}
.m10b_c01340{transform:matrix(0.153285,-0.001226,0.002000,0.249992,0,0);-ms-transform:matrix(0.153285,-0.001226,0.002000,0.249992,0,0);-webkit-transform:matrix(0.153285,-0.001226,0.002000,0.249992,0,0);}
.m10d_c01340{transform:matrix(0.154185,-0.001233,0.002000,0.249992,0,0);-ms-transform:matrix(0.154185,-0.001233,0.002000,0.249992,0,0);-webkit-transform:matrix(0.154185,-0.001233,0.002000,0.249992,0,0);}
.m88_c01340{transform:matrix(0.170600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170600,0.000000,0.000000,0.250000,0,0);}
.ma3_c01340{transform:matrix(0.173540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173540,0.000000,0.000000,0.250000,0,0);}
.m108_c01340{transform:matrix(0.177924,-0.001423,0.002000,0.249992,0,0);-ms-transform:matrix(0.177924,-0.001423,0.002000,0.249992,0,0);-webkit-transform:matrix(0.177924,-0.001423,0.002000,0.249992,0,0);}
.m109_c01340{transform:matrix(0.180894,-0.001447,0.002000,0.249992,0,0);-ms-transform:matrix(0.180894,-0.001447,0.002000,0.249992,0,0);-webkit-transform:matrix(0.180894,-0.001447,0.002000,0.249992,0,0);}
.maa_c01340{transform:matrix(0.181605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181605,0.000000,0.000000,0.250000,0,0);}
.ma2_c01340{transform:matrix(0.183170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183170,0.000000,0.000000,0.250000,0,0);}
.ma8_c01340{transform:matrix(0.185145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185145,0.000000,0.000000,0.250000,0,0);}
.mac_c01340{transform:matrix(0.185300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185300,0.000000,0.000000,0.250000,0,0);}
.ma0_c01340{transform:matrix(0.186180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186180,0.000000,0.000000,0.250000,0,0);}
.m104_c01340{transform:matrix(0.186719,-0.001494,0.002000,0.249992,0,0);-ms-transform:matrix(0.186719,-0.001494,0.002000,0.249992,0,0);-webkit-transform:matrix(0.186719,-0.001494,0.002000,0.249992,0,0);}
.ma6_c01340{transform:matrix(0.187625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187625,0.000000,0.000000,0.250000,0,0);}
.ma1_c01340{transform:matrix(0.189760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189760,0.000000,0.000000,0.250000,0,0);}
.mfb_c01340{transform:matrix(0.191189,-0.001530,0.002000,0.249992,0,0);-ms-transform:matrix(0.191189,-0.001530,0.002000,0.249992,0,0);-webkit-transform:matrix(0.191189,-0.001530,0.002000,0.249992,0,0);}
.ma9_c01340{transform:matrix(0.191670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191670,0.000000,0.000000,0.250000,0,0);}
.m90_c01340{transform:matrix(0.191725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191725,0.000000,0.000000,0.250000,0,0);}
.mfe_c01340{transform:matrix(0.193764,-0.001550,0.002000,0.249992,0,0);-ms-transform:matrix(0.193764,-0.001550,0.002000,0.249992,0,0);-webkit-transform:matrix(0.193764,-0.001550,0.002000,0.249992,0,0);}
.m86_c01340{transform:matrix(0.195575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195575,0.000000,0.000000,0.250000,0,0);}
.m9b_c01340{transform:matrix(0.195875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195875,0.000000,0.000000,0.250000,0,0);}
.mfd_c01340{transform:matrix(0.196169,-0.001569,0.002000,0.249992,0,0);-ms-transform:matrix(0.196169,-0.001569,0.002000,0.249992,0,0);-webkit-transform:matrix(0.196169,-0.001569,0.002000,0.249992,0,0);}
.m8c_c01340{transform:matrix(0.196475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196475,0.000000,0.000000,0.250000,0,0);}
.m112_c01340{transform:matrix(0.196735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196735,0.000000,0.000000,0.250000,0,0);}
.mab_c01340{transform:matrix(0.197205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197205,0.000000,0.000000,0.250000,0,0);}
.m8b_c01340{transform:matrix(0.199100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199100,0.000000,0.000000,0.250000,0,0);}
.mf5_c01340{transform:matrix(0.201240,-0.002817,0.003500,0.249976,0,0);-ms-transform:matrix(0.201240,-0.002817,0.003500,0.249976,0,0);-webkit-transform:matrix(0.201240,-0.002817,0.003500,0.249976,0,0);}
.m2a_c01340{transform:matrix(0.201595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201595,0.000000,0.000000,0.250000,0,0);}
.mfc_c01340{transform:matrix(0.202039,-0.001616,0.002000,0.249992,0,0);-ms-transform:matrix(0.202039,-0.001616,0.002000,0.249992,0,0);-webkit-transform:matrix(0.202039,-0.001616,0.002000,0.249992,0,0);}
.m8a_c01340{transform:matrix(0.202910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202910,0.000000,0.000000,0.250000,0,0);}
.m113_c01340{transform:matrix(0.203975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203975,0.000000,0.000000,0.250000,0,0);}
.m110_c01340{transform:matrix(0.204460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204460,0.000000,0.000000,0.250000,0,0);}
.m100_c01340{transform:matrix(0.206543,-0.001652,0.002000,0.249992,0,0);-ms-transform:matrix(0.206543,-0.001652,0.002000,0.249992,0,0);-webkit-transform:matrix(0.206543,-0.001652,0.002000,0.249992,0,0);}
.mf6_c01340{transform:matrix(0.208055,-0.002913,0.003500,0.249976,0,0);-ms-transform:matrix(0.208055,-0.002913,0.003500,0.249976,0,0);-webkit-transform:matrix(0.208055,-0.002913,0.003500,0.249976,0,0);}
.mf7_c01340{transform:matrix(0.208295,-0.002916,0.003500,0.249976,0,0);-ms-transform:matrix(0.208295,-0.002916,0.003500,0.249976,0,0);-webkit-transform:matrix(0.208295,-0.002916,0.003500,0.249976,0,0);}
.mae_c01340{transform:matrix(0.208850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208850,0.000000,0.000000,0.250000,0,0);}
.m97_c01340{transform:matrix(0.209390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209390,0.000000,0.000000,0.250000,0,0);}
.m95_c01340{transform:matrix(0.210660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210660,0.000000,0.000000,0.250000,0,0);}
.m94_c01340{transform:matrix(0.211785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211785,0.000000,0.000000,0.250000,0,0);}
.m9e_c01340{transform:matrix(0.212570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212570,0.000000,0.000000,0.250000,0,0);}
.ma4_c01340{transform:matrix(0.213600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213600,0.000000,0.000000,0.250000,0,0);}
.m118_c01340{transform:matrix(0.213615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213615,0.000000,0.000000,0.250000,0,0);}
.m79_c01340{transform:matrix(0.214930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214930,0.000000,0.000000,0.250000,0,0);}
.mf9_c01340{transform:matrix(0.214993,-0.001720,0.002000,0.249992,0,0);-ms-transform:matrix(0.214993,-0.001720,0.002000,0.249992,0,0);-webkit-transform:matrix(0.214993,-0.001720,0.002000,0.249992,0,0);}
.mad_c01340{transform:matrix(0.215205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215205,0.000000,0.000000,0.250000,0,0);}
.mb2_c01340{transform:matrix(0.215670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215670,0.000000,0.000000,0.250000,0,0);}
.mbb_c01340{transform:matrix(0.215745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215745,0.000000,0.000000,0.250000,0,0);}
.m99_c01340{transform:matrix(0.215755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215755,0.000000,0.000000,0.250000,0,0);}
.m111_c01340{transform:matrix(0.216230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216230,0.000000,0.000000,0.250000,0,0);}
.ma5_c01340{transform:matrix(0.216585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216585,0.000000,0.000000,0.250000,0,0);}
.m74_c01340{transform:matrix(0.216925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216925,0.000000,0.000000,0.250000,0,0);}
.mff_c01340{transform:matrix(0.217178,-0.001737,0.002000,0.249992,0,0);-ms-transform:matrix(0.217178,-0.001737,0.002000,0.249992,0,0);-webkit-transform:matrix(0.217178,-0.001737,0.002000,0.249992,0,0);}
.m54_c01340{transform:matrix(0.217830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217830,0.000000,0.000000,0.250000,0,0);}
.m89_c01340{transform:matrix(0.218200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218200,0.000000,0.000000,0.250000,0,0);}
.m92_c01340{transform:matrix(0.219065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219065,0.000000,0.000000,0.250000,0,0);}
.mc9_c01340{transform:matrix(0.219160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219160,0.000000,0.000000,0.250000,0,0);}
.ma7_c01340{transform:matrix(0.219325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219325,0.000000,0.000000,0.250000,0,0);}
.m87_c01340{transform:matrix(0.219890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219890,0.000000,0.000000,0.250000,0,0);}
.me7_c01340{transform:matrix(0.222475,-0.003337,0.003750,0.249972,0,0);-ms-transform:matrix(0.222475,-0.003337,0.003750,0.249972,0,0);-webkit-transform:matrix(0.222475,-0.003337,0.003750,0.249972,0,0);}
.mf8_c01340{transform:matrix(0.222588,-0.003116,0.003500,0.249976,0,0);-ms-transform:matrix(0.222588,-0.003116,0.003500,0.249976,0,0);-webkit-transform:matrix(0.222588,-0.003116,0.003500,0.249976,0,0);}
.m6e_c01340{transform:matrix(0.222625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222625,0.000000,0.000000,0.250000,0,0);}
.m85_c01340{transform:matrix(0.222835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222835,0.000000,0.000000,0.250000,0,0);}
.m101_c01340{transform:matrix(0.223223,-0.001786,0.002000,0.249992,0,0);-ms-transform:matrix(0.223223,-0.001786,0.002000,0.249992,0,0);-webkit-transform:matrix(0.223223,-0.001786,0.002000,0.249992,0,0);}
.me4_c01340{transform:matrix(0.223945,-0.003359,0.003750,0.249972,0,0);-ms-transform:matrix(0.223945,-0.003359,0.003750,0.249972,0,0);-webkit-transform:matrix(0.223945,-0.003359,0.003750,0.249972,0,0);}
.m8e_c01340{transform:matrix(0.224260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224260,0.000000,0.000000,0.250000,0,0);}
.maf_c01340{transform:matrix(0.224720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224720,0.000000,0.000000,0.250000,0,0);}
.m10f_c01340{transform:matrix(0.224820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224820,0.000000,0.000000,0.250000,0,0);}
.m5e_c01340{transform:matrix(0.225705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225705,0.000000,0.000000,0.250000,0,0);}
.m4a_c01340{transform:matrix(0.226065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226065,0.000000,0.000000,0.250000,0,0);}
.m24_c01340{transform:matrix(0.226840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226840,0.000000,0.000000,0.250000,0,0);}
.mcf_c01340{transform:matrix(0.227005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227005,0.000000,0.000000,0.250000,0,0);}
.m52_c01340{transform:matrix(0.227185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227185,0.000000,0.000000,0.250000,0,0);}
.m59_c01340{transform:matrix(0.227255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227255,0.000000,0.000000,0.250000,0,0);}
.mfa_c01340{transform:matrix(0.227503,-0.001820,0.002000,0.249992,0,0);-ms-transform:matrix(0.227503,-0.001820,0.002000,0.249992,0,0);-webkit-transform:matrix(0.227503,-0.001820,0.002000,0.249992,0,0);}
.m8f_c01340{transform:matrix(0.228135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228135,0.000000,0.000000,0.250000,0,0);}
.mc6_c01340{transform:matrix(0.228170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228170,0.000000,0.000000,0.250000,0,0);}
.m28_c01340{transform:matrix(0.228215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228215,0.000000,0.000000,0.250000,0,0);}
.m10e_c01340{transform:matrix(0.228925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228925,0.000000,0.000000,0.250000,0,0);}
.m76_c01340{transform:matrix(0.228965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228965,0.000000,0.000000,0.250000,0,0);}
.mb9_c01340{transform:matrix(0.229195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229195,0.000000,0.000000,0.250000,0,0);}
.m70_c01340{transform:matrix(0.229525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229525,0.000000,0.000000,0.250000,0,0);}
.m7d_c01340{transform:matrix(0.229810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229810,0.000000,0.000000,0.250000,0,0);}
.m55_c01340{transform:matrix(0.230015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230015,0.000000,0.000000,0.250000,0,0);}
.me5_c01340{transform:matrix(0.230179,-0.003453,0.003750,0.249972,0,0);-ms-transform:matrix(0.230179,-0.003453,0.003750,0.249972,0,0);-webkit-transform:matrix(0.230179,-0.003453,0.003750,0.249972,0,0);}
.m4f_c01340{transform:matrix(0.230285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230285,0.000000,0.000000,0.250000,0,0);}
.mba_c01340{transform:matrix(0.230495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230495,0.000000,0.000000,0.250000,0,0);}
.m81_c01340{transform:matrix(0.230745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230745,0.000000,0.000000,0.250000,0,0);}
.m6b_c01340{transform:matrix(0.231625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231625,0.000000,0.000000,0.250000,0,0);}
.m18_c01340{transform:matrix(0.231820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231820,0.000000,0.000000,0.250000,0,0);}
.mb7_c01340{transform:matrix(0.232405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232405,0.000000,0.000000,0.250000,0,0);}
.m58_c01340{transform:matrix(0.232440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232440,0.000000,0.000000,0.250000,0,0);}
.m6f_c01340{transform:matrix(0.232515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232515,0.000000,0.000000,0.250000,0,0);}
.m9d_c01340{transform:matrix(0.233525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233525,0.000000,0.000000,0.250000,0,0);}
.m98_c01340{transform:matrix(0.233550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233550,0.000000,0.000000,0.250000,0,0);}
.mc8_c01340{transform:matrix(0.234165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234165,0.000000,0.000000,0.250000,0,0);}
.m9a_c01340{transform:matrix(0.234345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234345,0.000000,0.000000,0.250000,0,0);}
.m114_c01340{transform:matrix(0.235140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235140,0.000000,0.000000,0.250000,0,0);}
.mbd_c01340{transform:matrix(0.235385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235385,0.000000,0.000000,0.250000,0,0);}
.m65_c01340{transform:matrix(0.235850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235850,0.000000,0.000000,0.250000,0,0);}
.m8d_c01340{transform:matrix(0.236285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236285,0.000000,0.000000,0.250000,0,0);}
.m106_c01340{transform:matrix(0.236712,-0.001894,0.002000,0.249992,0,0);-ms-transform:matrix(0.236712,-0.001894,0.002000,0.249992,0,0);-webkit-transform:matrix(0.236712,-0.001894,0.002000,0.249992,0,0);}
.m63_c01340{transform:matrix(0.237200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237200,0.000000,0.000000,0.250000,0,0);}
.m49_c01340{transform:matrix(0.237800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237800,0.000000,0.000000,0.250000,0,0);}
.md3_c01340{transform:matrix(0.237830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237830,0.000000,0.000000,0.250000,0,0);}
.m96_c01340{transform:matrix(0.238220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238220,0.000000,0.000000,0.250000,0,0);}
.m93_c01340{transform:matrix(0.238440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238440,0.000000,0.000000,0.250000,0,0);}
.mcd_c01340{transform:matrix(0.238535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238535,0.000000,0.000000,0.250000,0,0);}
.m82_c01340{transform:matrix(0.238570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238570,0.000000,0.000000,0.250000,0,0);}
.md2_c01340{transform:matrix(0.238595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238595,0.000000,0.000000,0.250000,0,0);}
.mc7_c01340{transform:matrix(0.238950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238950,0.000000,0.000000,0.250000,0,0);}
.mbf_c01340{transform:matrix(0.240495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240495,0.000000,0.000000,0.250000,0,0);}
.m107_c01340{transform:matrix(0.241952,-0.001936,0.002000,0.249992,0,0);-ms-transform:matrix(0.241952,-0.001936,0.002000,0.249992,0,0);-webkit-transform:matrix(0.241952,-0.001936,0.002000,0.249992,0,0);}
.m105_c01340{transform:matrix(0.242077,-0.001937,0.002000,0.249992,0,0);-ms-transform:matrix(0.242077,-0.001937,0.002000,0.249992,0,0);-webkit-transform:matrix(0.242077,-0.001937,0.002000,0.249992,0,0);}
.m9c_c01340{transform:matrix(0.242630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242630,0.000000,0.000000,0.250000,0,0);}
.m66_c01340{transform:matrix(0.242745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242745,0.000000,0.000000,0.250000,0,0);}
.m2e_c01340{transform:matrix(0.242850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242850,0.000000,0.000000,0.250000,0,0);}
.mc1_c01340{transform:matrix(0.243025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243025,0.000000,0.000000,0.250000,0,0);}
.m91_c01340{transform:matrix(0.243410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243410,0.000000,0.000000,0.250000,0,0);}
.md7_c01340{transform:matrix(0.244095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244095,0.000000,0.000000,0.250000,0,0);}
.mb5_c01340{transform:matrix(0.244470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244470,0.000000,0.000000,0.250000,0,0);}
.m45_c01340{transform:matrix(0.244475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244475,0.000000,0.000000,0.250000,0,0);}
.m14_c01340{transform:matrix(0.245150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245150,0.000000,0.000000,0.250000,0,0);}
.mf4_c01340{transform:matrix(0.245176,-0.003432,0.003500,0.249976,0,0);-ms-transform:matrix(0.245176,-0.003432,0.003500,0.249976,0,0);-webkit-transform:matrix(0.245176,-0.003432,0.003500,0.249976,0,0);}
.m3b_c01340{transform:matrix(0.245180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245180,0.000000,0.000000,0.250000,0,0);}
.m23_c01340{transform:matrix(0.246660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246660,0.000000,0.000000,0.250000,0,0);}
.m6c_c01340{transform:matrix(0.247550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247550,0.000000,0.000000,0.250000,0,0);}
.mc4_c01340{transform:matrix(0.248135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248135,0.000000,0.000000,0.250000,0,0);}
.m69_c01340{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m7_c01340{transform:matrix(0.248360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248360,0.000000,0.000000,0.250000,0,0);}
.m71_c01340{transform:matrix(0.249130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249130,0.000000,0.000000,0.250000,0,0);}
.m34_c01340{transform:matrix(0.249680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249680,0.000000,0.000000,0.250000,0,0);}
.m16_c01340{transform:matrix(0.250700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250700,0.000000,0.000000,0.250000,0,0);}
.m9f_c01340{transform:matrix(0.250705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250705,0.000000,0.000000,0.250000,0,0);}
.me0_c01340{transform:matrix(0.251220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251220,0.000000,0.000000,0.250000,0,0);}
.m77_c01340{transform:matrix(0.251445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251445,0.000000,0.000000,0.250000,0,0);}
.me8_c01340{transform:matrix(0.252242,-0.003784,0.003750,0.249972,0,0);-ms-transform:matrix(0.252242,-0.003784,0.003750,0.249972,0,0);-webkit-transform:matrix(0.252242,-0.003784,0.003750,0.249972,0,0);}
.m46_c01340{transform:matrix(0.252355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252355,0.000000,0.000000,0.250000,0,0);}
.mde_c01340{transform:matrix(0.252680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252680,0.000000,0.000000,0.250000,0,0);}
.m73_c01340{transform:matrix(0.252685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252685,0.000000,0.000000,0.250000,0,0);}
.m2_c01340{transform:matrix(0.252810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252810,0.000000,0.000000,0.250000,0,0);}
.m1e_c01340{transform:matrix(0.253050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253050,0.000000,0.000000,0.250000,0,0);}
.m7b_c01340{transform:matrix(0.253325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253325,0.000000,0.000000,0.250000,0,0);}
.m36_c01340{transform:matrix(0.253400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253400,0.000000,0.000000,0.250000,0,0);}
.m57_c01340{transform:matrix(0.253440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253440,0.000000,0.000000,0.250000,0,0);}
.m1b_c01340{transform:matrix(0.253535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253535,0.000000,0.000000,0.250000,0,0);}
.m4e_c01340{transform:matrix(0.253590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253590,0.000000,0.000000,0.250000,0,0);}
.m50_c01340{transform:matrix(0.253780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253780,0.000000,0.000000,0.250000,0,0);}
.m61_c01340{transform:matrix(0.253785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253785,0.000000,0.000000,0.250000,0,0);}
.m38_c01340{transform:matrix(0.254165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254165,0.000000,0.000000,0.250000,0,0);}
.m47_c01340{transform:matrix(0.254670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254670,0.000000,0.000000,0.250000,0,0);}
.m5_c01340{transform:matrix(0.254980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254980,0.000000,0.000000,0.250000,0,0);}
.m25_c01340{transform:matrix(0.255270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255270,0.000000,0.000000,0.250000,0,0);}
.m37_c01340{transform:matrix(0.255690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255690,0.000000,0.000000,0.250000,0,0);}
.md4_c01340{transform:matrix(0.256150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256150,0.000000,0.000000,0.250000,0,0);}
.m51_c01340{transform:matrix(0.256320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256320,0.000000,0.000000,0.250000,0,0);}
.m72_c01340{transform:matrix(0.256540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256540,0.000000,0.000000,0.250000,0,0);}
.mb_c01340{transform:matrix(0.256785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256785,0.000000,0.000000,0.250000,0,0);}
.mf2_c01340{transform:matrix(0.257282,0.002058,-0.002000,0.249992,0,0);-ms-transform:matrix(0.257282,0.002058,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.257282,0.002058,-0.002000,0.249992,0,0);}
.mca_c01340{transform:matrix(0.257725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257725,0.000000,0.000000,0.250000,0,0);}
.mda_c01340{transform:matrix(0.258030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258030,0.000000,0.000000,0.250000,0,0);}
.m7c_c01340{transform:matrix(0.258615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258615,0.000000,0.000000,0.250000,0,0);}
.mec_c01340{transform:matrix(0.258737,0.002070,-0.002000,0.249992,0,0);-ms-transform:matrix(0.258737,0.002070,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.258737,0.002070,-0.002000,0.249992,0,0);}
.m5b_c01340{transform:matrix(0.258745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258745,0.000000,0.000000,0.250000,0,0);}
.md9_c01340{transform:matrix(0.259055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259055,0.000000,0.000000,0.250000,0,0);}
.m41_c01340{transform:matrix(0.259190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259190,0.000000,0.000000,0.250000,0,0);}
.m6a_c01340{transform:matrix(0.259210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259210,0.000000,0.000000,0.250000,0,0);}
.m84_c01340{transform:matrix(0.259520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259520,0.000000,0.000000,0.250000,0,0);}
.m2d_c01340{transform:matrix(0.259785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259785,0.000000,0.000000,0.250000,0,0);}
.mee_c01340{transform:matrix(0.259797,0.002078,-0.002000,0.249992,0,0);-ms-transform:matrix(0.259797,0.002078,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.259797,0.002078,-0.002000,0.249992,0,0);}
.m27_c01340{transform:matrix(0.260050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260050,0.000000,0.000000,0.250000,0,0);}
.m78_c01340{transform:matrix(0.260540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260540,0.000000,0.000000,0.250000,0,0);}
.m40_c01340{transform:matrix(0.261050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261050,0.000000,0.000000,0.250000,0,0);}
.m32_c01340{transform:matrix(0.262355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262355,0.000000,0.000000,0.250000,0,0);}
.m10_c01340{transform:matrix(0.262515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262515,0.000000,0.000000,0.250000,0,0);}
.md1_c01340{transform:matrix(0.262940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262940,0.000000,0.000000,0.250000,0,0);}
.mb1_c01340{transform:matrix(0.263355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263355,0.000000,0.000000,0.250000,0,0);}
.m3c_c01340{transform:matrix(0.263360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263360,0.000000,0.000000,0.250000,0,0);}
.mb3_c01340{transform:matrix(0.263465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263465,0.000000,0.000000,0.250000,0,0);}
.m4d_c01340{transform:matrix(0.263470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263470,0.000000,0.000000,0.250000,0,0);}
.mcb_c01340{transform:matrix(0.263785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263785,0.000000,0.000000,0.250000,0,0);}
.md0_c01340{transform:matrix(0.264225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264225,0.000000,0.000000,0.250000,0,0);}
.mdb_c01340{transform:matrix(0.264265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264265,0.000000,0.000000,0.250000,0,0);}
.m35_c01340{transform:matrix(0.264450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264450,0.000000,0.000000,0.250000,0,0);}
.m6_c01340{transform:matrix(0.264520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264520,0.000000,0.000000,0.250000,0,0);}
.m26_c01340{transform:matrix(0.264675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264675,0.000000,0.000000,0.250000,0,0);}
.md5_c01340{transform:matrix(0.264765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264765,0.000000,0.000000,0.250000,0,0);}
.m62_c01340{transform:matrix(0.264975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264975,0.000000,0.000000,0.250000,0,0);}
.m56_c01340{transform:matrix(0.264980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264980,0.000000,0.000000,0.250000,0,0);}
.m31_c01340{transform:matrix(0.265280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265280,0.000000,0.000000,0.250000,0,0);}
.meb_c01340{transform:matrix(0.265507,0.002124,-0.002000,0.249992,0,0);-ms-transform:matrix(0.265507,0.002124,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.265507,0.002124,-0.002000,0.249992,0,0);}
.me6_c01340{transform:matrix(0.265865,-0.003988,0.003750,0.249972,0,0);-ms-transform:matrix(0.265865,-0.003988,0.003750,0.249972,0,0);-webkit-transform:matrix(0.265865,-0.003988,0.003750,0.249972,0,0);}
.m6d_c01340{transform:matrix(0.266205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266205,0.000000,0.000000,0.250000,0,0);}
.m68_c01340{transform:matrix(0.266490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266490,0.000000,0.000000,0.250000,0,0);}
.m42_c01340{transform:matrix(0.266605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266605,0.000000,0.000000,0.250000,0,0);}
.me9_c01340{transform:matrix(0.266691,0.002134,-0.002000,0.249992,0,0);-ms-transform:matrix(0.266691,0.002134,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.266691,0.002134,-0.002000,0.249992,0,0);}
.md_c01340{transform:matrix(0.267235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267235,0.000000,0.000000,0.250000,0,0);}
.mce_c01340{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.mf_c01340{transform:matrix(0.268065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268065,0.000000,0.000000,0.250000,0,0);}
.m9_c01340{transform:matrix(0.268165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268165,0.000000,0.000000,0.250000,0,0);}
.m53_c01340{transform:matrix(0.268175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268175,0.000000,0.000000,0.250000,0,0);}
.m64_c01340{transform:matrix(0.269215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269215,0.000000,0.000000,0.250000,0,0);}
.m48_c01340{transform:matrix(0.269575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269575,0.000000,0.000000,0.250000,0,0);}
.mb0_c01340{transform:matrix(0.269830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269830,0.000000,0.000000,0.250000,0,0);}
.md6_c01340{transform:matrix(0.270280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270280,0.000000,0.000000,0.250000,0,0);}
.mc_c01340{transform:matrix(0.270820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270820,0.000000,0.000000,0.250000,0,0);}
.m2b_c01340{transform:matrix(0.271060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271060,0.000000,0.000000,0.250000,0,0);}
.m4b_c01340{transform:matrix(0.271100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271100,0.000000,0.000000,0.250000,0,0);}
.m44_c01340{transform:matrix(0.271270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271270,0.000000,0.000000,0.250000,0,0);}
.m83_c01340{transform:matrix(0.272235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272235,0.000000,0.000000,0.250000,0,0);}
.m80_c01340{transform:matrix(0.272285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272285,0.000000,0.000000,0.250000,0,0);}
.m7e_c01340{transform:matrix(0.272860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272860,0.000000,0.000000,0.250000,0,0);}
.mbe_c01340{transform:matrix(0.273445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273445,0.000000,0.000000,0.250000,0,0);}
.mc0_c01340{transform:matrix(0.274080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274080,0.000000,0.000000,0.250000,0,0);}
.m7f_c01340{transform:matrix(0.274635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274635,0.000000,0.000000,0.250000,0,0);}
.m0_c01340{transform:matrix(0.274650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274650,0.000000,0.000000,0.250000,0,0);}
.mb8_c01340{transform:matrix(0.275290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275290,0.000000,0.000000,0.250000,0,0);}
.md8_c01340{transform:matrix(0.275880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275880,0.000000,0.000000,0.250000,0,0);}
.m2c_c01340{transform:matrix(0.276085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276085,0.000000,0.000000,0.250000,0,0);}
.mcc_c01340{transform:matrix(0.276580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276580,0.000000,0.000000,0.250000,0,0);}
.mef_c01340{transform:matrix(0.277271,0.002218,-0.002000,0.249992,0,0);-ms-transform:matrix(0.277271,0.002218,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.277271,0.002218,-0.002000,0.249992,0,0);}
.mc5_c01340{transform:matrix(0.277355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277355,0.000000,0.000000,0.250000,0,0);}
.m60_c01340{transform:matrix(0.278090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278090,0.000000,0.000000,0.250000,0,0);}
.m103_c01340{transform:matrix(0.278206,-0.002226,0.002000,0.249992,0,0);-ms-transform:matrix(0.278206,-0.002226,0.002000,0.249992,0,0);-webkit-transform:matrix(0.278206,-0.002226,0.002000,0.249992,0,0);}
.m4c_c01340{transform:matrix(0.278640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278640,0.000000,0.000000,0.250000,0,0);}
.mb4_c01340{transform:matrix(0.278905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278905,0.000000,0.000000,0.250000,0,0);}
.m1a_c01340{transform:matrix(0.279145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279145,0.000000,0.000000,0.250000,0,0);}
.mc2_c01340{transform:matrix(0.279305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279305,0.000000,0.000000,0.250000,0,0);}
.m102_c01340{transform:matrix(0.279926,-0.002239,0.002000,0.249992,0,0);-ms-transform:matrix(0.279926,-0.002239,0.002000,0.249992,0,0);-webkit-transform:matrix(0.279926,-0.002239,0.002000,0.249992,0,0);}
.mb6_c01340{transform:matrix(0.280345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280345,0.000000,0.000000,0.250000,0,0);}
.m67_c01340{transform:matrix(0.280440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280440,0.000000,0.000000,0.250000,0,0);}
.m21_c01340{transform:matrix(0.281040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281040,0.000000,0.000000,0.250000,0,0);}
.ma_c01340{transform:matrix(0.281795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281795,0.000000,0.000000,0.250000,0,0);}
.m29_c01340{transform:matrix(0.282095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282095,0.000000,0.000000,0.250000,0,0);}
.m3e_c01340{transform:matrix(0.282120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282120,0.000000,0.000000,0.250000,0,0);}
.m39_c01340{transform:matrix(0.282125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282125,0.000000,0.000000,0.250000,0,0);}
.m7a_c01340{transform:matrix(0.282520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282520,0.000000,0.000000,0.250000,0,0);}
.m5f_c01340{transform:matrix(0.283585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283585,0.000000,0.000000,0.250000,0,0);}
.m19_c01340{transform:matrix(0.284435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284435,0.000000,0.000000,0.250000,0,0);}
.m3_c01340{transform:matrix(0.284770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284770,0.000000,0.000000,0.250000,0,0);}
.m17_c01340{transform:matrix(0.285260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285260,0.000000,0.000000,0.250000,0,0);}
.m33_c01340{transform:matrix(0.286415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286415,0.000000,0.000000,0.250000,0,0);}
.me_c01340{transform:matrix(0.286820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286820,0.000000,0.000000,0.250000,0,0);}
.mc3_c01340{transform:matrix(0.286890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286890,0.000000,0.000000,0.250000,0,0);}
.m22_c01340{transform:matrix(0.287030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287030,0.000000,0.000000,0.250000,0,0);}
.m3a_c01340{transform:matrix(0.287230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287230,0.000000,0.000000,0.250000,0,0);}
.m3f_c01340{transform:matrix(0.287420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287420,0.000000,0.000000,0.250000,0,0);}
.m2f_c01340{transform:matrix(0.288115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288115,0.000000,0.000000,0.250000,0,0);}
.m20_c01340{transform:matrix(0.288170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288170,0.000000,0.000000,0.250000,0,0);}
.mea_c01340{transform:matrix(0.288411,0.002307,-0.002000,0.249992,0,0);-ms-transform:matrix(0.288411,0.002307,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.288411,0.002307,-0.002000,0.249992,0,0);}
.m1f_c01340{transform:matrix(0.289480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289480,0.000000,0.000000,0.250000,0,0);}
.me1_c01340{transform:matrix(0.289885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289885,0.000000,0.000000,0.250000,0,0);}
.me3_c01340{transform:matrix(0.290070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290070,0.000000,0.000000,0.250000,0,0);}
.mf3_c01340{transform:matrix(0.290706,0.002326,-0.002000,0.249992,0,0);-ms-transform:matrix(0.290706,0.002326,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.290706,0.002326,-0.002000,0.249992,0,0);}
.m4_c01340{transform:matrix(0.291860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291860,0.000000,0.000000,0.250000,0,0);}
.med_c01340{transform:matrix(0.292426,0.002339,-0.002000,0.249992,0,0);-ms-transform:matrix(0.292426,0.002339,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.292426,0.002339,-0.002000,0.249992,0,0);}
.mdd_c01340{transform:matrix(0.293645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293645,0.000000,0.000000,0.250000,0,0);}
.m30_c01340{transform:matrix(0.295245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295245,0.000000,0.000000,0.250000,0,0);}
.m75_c01340{transform:matrix(0.295475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295475,0.000000,0.000000,0.250000,0,0);}
.mdf_c01340{transform:matrix(0.295625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295625,0.000000,0.000000,0.250000,0,0);}
.me2_c01340{transform:matrix(0.295780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295780,0.000000,0.000000,0.250000,0,0);}
.mdc_c01340{transform:matrix(0.296095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296095,0.000000,0.000000,0.250000,0,0);}
.m1d_c01340{transform:matrix(0.296705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296705,0.000000,0.000000,0.250000,0,0);}
.m15_c01340{transform:matrix(0.298225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298225,0.000000,0.000000,0.250000,0,0);}
.m12_c01340{transform:matrix(0.298295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298295,0.000000,0.000000,0.250000,0,0);}
.m5a_c01340{transform:matrix(0.300665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300665,0.000000,0.000000,0.250000,0,0);}
.m8_c01340{transform:matrix(0.300840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300840,0.000000,0.000000,0.250000,0,0);}
.m43_c01340{transform:matrix(0.301505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301505,0.000000,0.000000,0.250000,0,0);}
.m3d_c01340{transform:matrix(0.301535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301535,0.000000,0.000000,0.250000,0,0);}
.m1c_c01340{transform:matrix(0.302665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302665,0.000000,0.000000,0.250000,0,0);}
.m13_c01340{transform:matrix(0.302780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302780,0.000000,0.000000,0.250000,0,0);}
.m11_c01340{transform:matrix(0.302880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302880,0.000000,0.000000,0.250000,0,0);}
.m5d_c01340{transform:matrix(0.302965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302965,0.000000,0.000000,0.250000,0,0);}
.m5c_c01340{transform:matrix(0.303135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303135,0.000000,0.000000,0.250000,0,0);}
.m115_c01340{transform:matrix(0.351080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351080,0.000000,0.000000,0.250000,0,0);}
.mf1_c01340{transform:matrix(0.366918,0.002935,-0.002000,0.249992,0,0);-ms-transform:matrix(0.366918,0.002935,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.366918,0.002935,-0.002000,0.249992,0,0);}
.mf0_c01340{transform:matrix(0.380818,0.003047,-0.002000,0.249992,0,0);-ms-transform:matrix(0.380818,0.003047,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.380818,0.003047,-0.002000,0.249992,0,0);}
.m1_c01340{transform:matrix(0.423485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423485,0.000000,0.000000,0.250000,0,0);}
.v0_c01340{vertical-align:0.000000px;}
.ls0_c01340{letter-spacing:0.000000px;}
.sc__c01340{text-shadow:none;}
.sc0_c01340{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__c01340{-webkit-text-stroke:0px transparent;}
.sc0_c01340{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01340{word-spacing:0.000000px;}
.fc0_c01340{color:transparent;}
.fs0_c01340{font-size:48.000000px;}
.fs1_c01340{font-size:66.000000px;}
.fs7_c01340{font-size:66.002112px;}
.fs2_c01340{font-size:72.000000px;}
.fsa_c01340{font-size:72.002304px;}
.fs6_c01340{font-size:72.008100px;}
.fs4_c01340{font-size:78.000000px;}
.fs3_c01340{font-size:84.000000px;}
.fs9_c01340{font-size:84.002688px;}
.fs8_c01340{font-size:84.008232px;}
.fs5_c01340{font-size:90.000000px;}
.fsc_c01340{font-size:108.000000px;}
.fsb_c01340{font-size:114.003648px;}
.y0_c01340{bottom:0.000000px;}
.y58_c01340{bottom:146.449500px;}
.y57_c01340{bottom:182.869500px;}
.y52_c01340{bottom:217.213056px;}
.y51_c01340{bottom:217.213452px;}
.y53_c01340{bottom:217.213752px;}
.y56_c01340{bottom:217.213776px;}
.y55_c01340{bottom:217.213968px;}
.y54_c01340{bottom:217.214100px;}
.y4e_c01340{bottom:253.080252px;}
.y50_c01340{bottom:253.080408px;}
.y4f_c01340{bottom:253.080420px;}
.y4d_c01340{bottom:253.080864px;}
.y4b_c01340{bottom:253.081404px;}
.y4c_c01340{bottom:253.081428px;}
.y42_c01340{bottom:285.121500px;}
.y43_c01340{bottom:286.076244px;}
.y44_c01340{bottom:286.706904px;}
.y45_c01340{bottom:287.043816px;}
.y46_c01340{bottom:287.410968px;}
.y47_c01340{bottom:287.570772px;}
.y48_c01340{bottom:287.836524px;}
.y49_c01340{bottom:288.363492px;}
.y4a_c01340{bottom:288.797640px;}
.y3d_c01340{bottom:355.323000px;}
.y3e_c01340{bottom:356.191518px;}
.y3f_c01340{bottom:356.781933px;}
.y40_c01340{bottom:357.389862px;}
.y41_c01340{bottom:358.021647px;}
.y3c_c01340{bottom:390.440784px;}
.y3b_c01340{bottom:390.706524px;}
.y3a_c01340{bottom:390.883920px;}
.y39_c01340{bottom:391.583568px;}
.y38_c01340{bottom:391.937784px;}
.y37_c01340{bottom:392.285376px;}
.y36_c01340{bottom:393.151704px;}
.y35_c01340{bottom:393.421692px;}
.y34_c01340{bottom:393.773556px;}
.y33_c01340{bottom:394.387272px;}
.y32_c01340{bottom:394.741500px;}
.y2d_c01340{bottom:426.603000px;}
.y2e_c01340{bottom:427.100902px;}
.y2f_c01340{bottom:427.753132px;}
.y30_c01340{bottom:429.057142px;}
.y31_c01340{bottom:429.547980px;}
.y2c_c01340{bottom:462.856500px;}
.y2b_c01340{bottom:497.748000px;}
.y2a_c01340{bottom:533.527500px;}
.y29_c01340{bottom:568.963500px;}
.y28_c01340{bottom:569.239500px;}
.y27_c01340{bottom:569.521500px;}
.y26_c01340{bottom:569.676000px;}
.y25_c01340{bottom:569.944500px;}
.y24_c01340{bottom:570.438000px;}
.y23_c01340{bottom:570.712500px;}
.y22_c01340{bottom:571.158000px;}
.y21_c01340{bottom:571.318500px;}
.y20_c01340{bottom:571.596000px;}
.y1f_c01340{bottom:605.332500px;}
.y1e_c01340{bottom:638.685000px;}
.y1d_c01340{bottom:674.067000px;}
.y1c_c01340{bottom:708.826500px;}
.y1b_c01340{bottom:709.321500px;}
.y1a_c01340{bottom:709.482000px;}
.y19_c01340{bottom:709.753500px;}
.y18_c01340{bottom:710.088000px;}
.y17_c01340{bottom:710.190000px;}
.y16_c01340{bottom:710.466000px;}
.y15_c01340{bottom:710.634000px;}
.y14_c01340{bottom:710.953500px;}
.y13_c01340{bottom:711.124500px;}
.y12_c01340{bottom:711.231000px;}
.y11_c01340{bottom:711.397500px;}
.y10_c01340{bottom:711.652500px;}
.yf_c01340{bottom:711.993000px;}
.ye_c01340{bottom:745.612500px;}
.yd_c01340{bottom:778.411500px;}
.yc_c01340{bottom:814.791000px;}
.yb_c01340{bottom:850.543500px;}
.ya_c01340{bottom:886.620000px;}
.y9_c01340{bottom:921.511500px;}
.y8_c01340{bottom:955.672500px;}
.y7_c01340{bottom:989.172000px;}
.y6_c01340{bottom:1024.012500px;}
.y5_c01340{bottom:1059.451500px;}
.y4_c01340{bottom:1093.230000px;}
.y3_c01340{bottom:1130.409000px;}
.y2_c01340{bottom:1167.070500px;}
.y1_c01340{bottom:1220.130000px;}
.h2_c01340{height:48.000000px;}
.h3_c01340{height:66.000000px;}
.h9_c01340{height:66.002112px;}
.h4_c01340{height:72.000000px;}
.hc_c01340{height:72.002304px;}
.h8_c01340{height:72.008100px;}
.h6_c01340{height:78.000000px;}
.h5_c01340{height:84.000000px;}
.hb_c01340{height:84.002688px;}
.ha_c01340{height:84.008232px;}
.h7_c01340{height:90.000000px;}
.he_c01340{height:108.000000px;}
.hd_c01340{height:114.003648px;}
.h1_c01340{height:1250.250000px;}
.h0_c01340{height:1250.370000px;}
.w1_c01340{width:912.000000px;}
.w0_c01340{width:912.300000px;}
.x0_c01340{left:0.000000px;}
.x8c_c01340{left:153.609000px;}
.x6f_c01340{left:160.381500px;}
.x39_c01340{left:161.730000px;}
.x16_c01340{left:162.810000px;}
.x2c_c01340{left:163.890000px;}
.xf_c01340{left:164.970000px;}
.x66_c01340{left:182.251500px;}
.x70_c01340{left:191.971500px;}
.x7b_c01340{left:193.053000px;}
.x17_c01340{left:194.400000px;}
.x3a_c01340{left:195.480000px;}
.x56_c01340{left:204.390000px;}
.x33_c01340{left:205.740000px;}
.x75_c01340{left:213.762000px;}
.x50_c01340{left:215.730000px;}
.x1f_c01340{left:216.810000px;}
.x5e_c01340{left:229.423500px;}
.x82_c01340{left:235.440000px;}
.x57_c01340{left:237.330000px;}
.x67_c01340{left:247.321500px;}
.x10_c01340{left:250.020000px;}
.x71_c01340{left:258.391500px;}
.x3b_c01340{left:259.470000px;}
.x18_c01340{left:260.550000px;}
.x51_c01340{left:269.190000px;}
.x4_c01340{left:270.810000px;}
.x8f_c01340{left:278.787000px;}
.x5f_c01340{left:280.479000px;}
.x2d_c01340{left:281.880000px;}
.x3c_c01340{left:292.680000px;}
.x95_c01340{left:297.003036px;}
.x8d_c01340{left:301.242000px;}
.x44_c01340{left:302.400000px;}
.x11_c01340{left:304.020000px;}
.x68_c01340{left:312.121500px;}
.x58_c01340{left:313.200000px;}
.x20_c01340{left:314.280000px;}
.x2e_c01340{left:315.360000px;}
.x7e_c01340{left:322.923000px;}
.x45_c01340{left:324.000000px;}
.x19_c01340{left:325.620000px;}
.x83_c01340{left:333.720000px;}
.x48_c01340{left:335.610000px;}
.x5_c01340{left:337.230000px;}
.x72_c01340{left:345.061500px;}
.x8e_c01340{left:346.369500px;}
.x27_c01340{left:347.490000px;}
.x87_c01340{left:356.640000px;}
.x1a_c01340{left:357.750000px;}
.x7f_c01340{left:366.663000px;}
.x49_c01340{left:368.550000px;}
.x69_c01340{left:378.271500px;}
.x21_c01340{left:379.890000px;}
.x1_c01340{left:384.750000px;}
.x88_c01340{left:389.265000px;}
.x3f_c01340{left:390.960000px;}
.x90_c01340{left:399.733500px;}
.x59_c01340{left:401.220000px;}
.x2_c01340{left:407.700000px;}
.x96_c01340{left:409.597236px;}
.x84_c01340{left:410.940000px;}
.x6a_c01340{left:412.021500px;}
.x34_c01340{left:413.910000px;}
.x97_c01340{left:421.200000px;}
.x2f_c01340{left:424.710000px;}
.x80_c01340{left:432.813000px;}
.x5a_c01340{left:434.160000px;}
.x6_c01340{left:436.320000px;}
.x85_c01340{left:443.610000px;}
.x52_c01340{left:444.960000px;}
.x3_c01340{left:451.440000px;}
.x98_c01340{left:454.140000px;}
.x46_c01340{left:455.490000px;}
.x35_c01340{left:456.840000px;}
.x12_c01340{left:457.920000px;}
.x91_c01340{left:465.603000px;}
.x60_c01340{left:467.031000px;}
.x22_c01340{left:468.720000px;}
.x7_c01340{left:470.070000px;}
.x5b_c01340{left:477.360000px;}
.x99_c01340{left:486.540000px;}
.x94_c01340{left:487.898832px;}
.x8_c01340{left:491.130000px;}
.x92_c01340{left:498.822000px;}
.x36_c01340{left:501.390000px;}
.x28_c01340{left:502.740000px;}
.x4a_c01340{left:514.080000px;}
.x61_c01340{left:522.130500px;}
.x9_c01340{left:523.530000px;}
.x37_c01340{left:534.600000px;}
.x62_c01340{left:542.632500px;}
.x76_c01340{left:544.267500px;}
.x6b_c01340{left:554.311500px;}
.x1b_c01340{left:555.660000px;}
.x93_c01340{left:564.693000px;}
.x13_c01340{left:567.270000px;}
.x73_c01340{left:575.911500px;}
.x4b_c01340{left:577.260000px;}
.x1c_c01340{left:589.680000px;}
.x77_c01340{left:597.940500px;}
.x3d_c01340{left:599.940000px;}
.x4c_c01340{left:609.660000px;}
.x89_c01340{left:618.736500px;}
.x38_c01340{left:621.540000px;}
.x23_c01340{left:622.890000px;}
.x78_c01340{left:628.974000px;}
.x6c_c01340{left:630.991500px;}
.xa_c01340{left:633.960000px;}
.x5c_c01340{left:641.520000px;}
.x24_c01340{left:643.410000px;}
.x30_c01340{left:655.020000px;}
.x86_c01340{left:662.040000px;}
.x63_c01340{left:663.861000px;}
.x53_c01340{left:665.550000px;}
.x29_c01340{left:667.170000px;}
.x7c_c01340{left:675.003000px;}
.xb_c01340{left:677.700000px;}
.x79_c01340{left:685.474500px;}
.x40_c01340{left:687.420000px;}
.x64_c01340{left:695.992500px;}
.x31_c01340{left:698.490000px;}
.x3e_c01340{left:701.460000px;}
.x7d_c01340{left:706.863000px;}
.x41_c01340{left:708.750000px;}
.x14_c01340{left:709.830000px;}
.x25_c01340{left:720.090000px;}
.x2a_c01340{left:721.440000px;}
.x74_c01340{left:729.271500px;}
.x32_c01340{left:731.160000px;}
.x7a_c01340{left:740.547000px;}
.x4d_c01340{left:741.960000px;}
.xc_c01340{left:744.660000px;}
.x8a_c01340{left:750.469500px;}
.x6d_c01340{left:751.681500px;}
.x54_c01340{left:752.760000px;}
.x1d_c01340{left:754.650000px;}
.x42_c01340{left:764.100000px;}
.x8b_c01340{left:772.644000px;}
.x4e_c01340{left:774.900000px;}
.x6e_c01340{left:785.161500px;}
.x55_c01340{left:787.050000px;}
.xd_c01340{left:788.400000px;}
.x65_c01340{left:795.084000px;}
.x47_c01340{left:796.770000px;}
.x2b_c01340{left:798.120000px;}
.x81_c01340{left:805.953000px;}
.x5d_c01340{left:807.570000px;}
.x1e_c01340{left:811.080000px;}
.x43_c01340{left:818.910000px;}
.x15_c01340{left:820.530000px;}
.x4f_c01340{left:830.250000px;}
.x26_c01340{left:831.330000px;}
.xe_c01340{left:832.680000px;}
@media print{
.v0_c01340{vertical-align:0.000000pt;}
.ls0_c01340{letter-spacing:0.000000pt;}
.ws0_c01340{word-spacing:0.000000pt;}
.fs0_c01340{font-size:42.666667pt;}
.fs1_c01340{font-size:58.666667pt;}
.fs7_c01340{font-size:58.668544pt;}
.fs2_c01340{font-size:64.000000pt;}
.fsa_c01340{font-size:64.002048pt;}
.fs6_c01340{font-size:64.007200pt;}
.fs4_c01340{font-size:69.333333pt;}
.fs3_c01340{font-size:74.666667pt;}
.fs9_c01340{font-size:74.669056pt;}
.fs8_c01340{font-size:74.673984pt;}
.fs5_c01340{font-size:80.000000pt;}
.fsc_c01340{font-size:96.000000pt;}
.fsb_c01340{font-size:101.336576pt;}
.y0_c01340{bottom:0.000000pt;}
.y58_c01340{bottom:130.177333pt;}
.y57_c01340{bottom:162.550667pt;}
.y52_c01340{bottom:193.078272pt;}
.y51_c01340{bottom:193.078624pt;}
.y53_c01340{bottom:193.078891pt;}
.y56_c01340{bottom:193.078912pt;}
.y55_c01340{bottom:193.079083pt;}
.y54_c01340{bottom:193.079200pt;}
.y4e_c01340{bottom:224.960224pt;}
.y50_c01340{bottom:224.960363pt;}
.y4f_c01340{bottom:224.960373pt;}
.y4d_c01340{bottom:224.960768pt;}
.y4b_c01340{bottom:224.961248pt;}
.y4c_c01340{bottom:224.961269pt;}
.y42_c01340{bottom:253.441333pt;}
.y43_c01340{bottom:254.289995pt;}
.y44_c01340{bottom:254.850581pt;}
.y45_c01340{bottom:255.150059pt;}
.y46_c01340{bottom:255.476416pt;}
.y47_c01340{bottom:255.618464pt;}
.y48_c01340{bottom:255.854688pt;}
.y49_c01340{bottom:256.323104pt;}
.y4a_c01340{bottom:256.709013pt;}
.y3d_c01340{bottom:315.842667pt;}
.y3e_c01340{bottom:316.614683pt;}
.y3f_c01340{bottom:317.139496pt;}
.y40_c01340{bottom:317.679877pt;}
.y41_c01340{bottom:318.241464pt;}
.y3c_c01340{bottom:347.058475pt;}
.y3b_c01340{bottom:347.294688pt;}
.y3a_c01340{bottom:347.452373pt;}
.y39_c01340{bottom:348.074283pt;}
.y38_c01340{bottom:348.389141pt;}
.y37_c01340{bottom:348.698112pt;}
.y36_c01340{bottom:349.468181pt;}
.y35_c01340{bottom:349.708171pt;}
.y34_c01340{bottom:350.020939pt;}
.y33_c01340{bottom:350.566464pt;}
.y32_c01340{bottom:350.881333pt;}
.y2d_c01340{bottom:379.202667pt;}
.y2e_c01340{bottom:379.645247pt;}
.y2f_c01340{bottom:380.225007pt;}
.y30_c01340{bottom:381.384127pt;}
.y31_c01340{bottom:381.820427pt;}
.y2c_c01340{bottom:411.428000pt;}
.y2b_c01340{bottom:442.442667pt;}
.y2a_c01340{bottom:474.246667pt;}
.y29_c01340{bottom:505.745333pt;}
.y28_c01340{bottom:505.990667pt;}
.y27_c01340{bottom:506.241333pt;}
.y26_c01340{bottom:506.378667pt;}
.y25_c01340{bottom:506.617333pt;}
.y24_c01340{bottom:507.056000pt;}
.y23_c01340{bottom:507.300000pt;}
.y22_c01340{bottom:507.696000pt;}
.y21_c01340{bottom:507.838667pt;}
.y20_c01340{bottom:508.085333pt;}
.y1f_c01340{bottom:538.073333pt;}
.y1e_c01340{bottom:567.720000pt;}
.y1d_c01340{bottom:599.170667pt;}
.y1c_c01340{bottom:630.068000pt;}
.y1b_c01340{bottom:630.508000pt;}
.y1a_c01340{bottom:630.650667pt;}
.y19_c01340{bottom:630.892000pt;}
.y18_c01340{bottom:631.189333pt;}
.y17_c01340{bottom:631.280000pt;}
.y16_c01340{bottom:631.525333pt;}
.y15_c01340{bottom:631.674667pt;}
.y14_c01340{bottom:631.958667pt;}
.y13_c01340{bottom:632.110667pt;}
.y12_c01340{bottom:632.205333pt;}
.y11_c01340{bottom:632.353333pt;}
.y10_c01340{bottom:632.580000pt;}
.yf_c01340{bottom:632.882667pt;}
.ye_c01340{bottom:662.766667pt;}
.yd_c01340{bottom:691.921333pt;}
.yc_c01340{bottom:724.258667pt;}
.yb_c01340{bottom:756.038667pt;}
.ya_c01340{bottom:788.106667pt;}
.y9_c01340{bottom:819.121333pt;}
.y8_c01340{bottom:849.486667pt;}
.y7_c01340{bottom:879.264000pt;}
.y6_c01340{bottom:910.233333pt;}
.y5_c01340{bottom:941.734667pt;}
.y4_c01340{bottom:971.760000pt;}
.y3_c01340{bottom:1004.808000pt;}
.y2_c01340{bottom:1037.396000pt;}
.y1_c01340{bottom:1084.560000pt;}
.h2_c01340{height:42.666667pt;}
.h3_c01340{height:58.666667pt;}
.h9_c01340{height:58.668544pt;}
.h4_c01340{height:64.000000pt;}
.hc_c01340{height:64.002048pt;}
.h8_c01340{height:64.007200pt;}
.h6_c01340{height:69.333333pt;}
.h5_c01340{height:74.666667pt;}
.hb_c01340{height:74.669056pt;}
.ha_c01340{height:74.673984pt;}
.h7_c01340{height:80.000000pt;}
.he_c01340{height:96.000000pt;}
.hd_c01340{height:101.336576pt;}
.h1_c01340{height:1111.333333pt;}
.h0_c01340{height:1111.440000pt;}
.w1_c01340{width:810.666667pt;}
.w0_c01340{width:810.933333pt;}
.x0_c01340{left:0.000000pt;}
.x8c_c01340{left:136.541333pt;}
.x6f_c01340{left:142.561333pt;}
.x39_c01340{left:143.760000pt;}
.x16_c01340{left:144.720000pt;}
.x2c_c01340{left:145.680000pt;}
.xf_c01340{left:146.640000pt;}
.x66_c01340{left:162.001333pt;}
.x70_c01340{left:170.641333pt;}
.x7b_c01340{left:171.602667pt;}
.x17_c01340{left:172.800000pt;}
.x3a_c01340{left:173.760000pt;}
.x56_c01340{left:181.680000pt;}
.x33_c01340{left:182.880000pt;}
.x75_c01340{left:190.010667pt;}
.x50_c01340{left:191.760000pt;}
.x1f_c01340{left:192.720000pt;}
.x5e_c01340{left:203.932000pt;}
.x82_c01340{left:209.280000pt;}
.x57_c01340{left:210.960000pt;}
.x67_c01340{left:219.841333pt;}
.x10_c01340{left:222.240000pt;}
.x71_c01340{left:229.681333pt;}
.x3b_c01340{left:230.640000pt;}
.x18_c01340{left:231.600000pt;}
.x51_c01340{left:239.280000pt;}
.x4_c01340{left:240.720000pt;}
.x8f_c01340{left:247.810667pt;}
.x5f_c01340{left:249.314667pt;}
.x2d_c01340{left:250.560000pt;}
.x3c_c01340{left:260.160000pt;}
.x95_c01340{left:264.002699pt;}
.x8d_c01340{left:267.770667pt;}
.x44_c01340{left:268.800000pt;}
.x11_c01340{left:270.240000pt;}
.x68_c01340{left:277.441333pt;}
.x58_c01340{left:278.400000pt;}
.x20_c01340{left:279.360000pt;}
.x2e_c01340{left:280.320000pt;}
.x7e_c01340{left:287.042667pt;}
.x45_c01340{left:288.000000pt;}
.x19_c01340{left:289.440000pt;}
.x83_c01340{left:296.640000pt;}
.x48_c01340{left:298.320000pt;}
.x5_c01340{left:299.760000pt;}
.x72_c01340{left:306.721333pt;}
.x8e_c01340{left:307.884000pt;}
.x27_c01340{left:308.880000pt;}
.x87_c01340{left:317.013333pt;}
.x1a_c01340{left:318.000000pt;}
.x7f_c01340{left:325.922667pt;}
.x49_c01340{left:327.600000pt;}
.x69_c01340{left:336.241333pt;}
.x21_c01340{left:337.680000pt;}
.x1_c01340{left:342.000000pt;}
.x88_c01340{left:346.013333pt;}
.x3f_c01340{left:347.520000pt;}
.x90_c01340{left:355.318667pt;}
.x59_c01340{left:356.640000pt;}
.x2_c01340{left:362.400000pt;}
.x96_c01340{left:364.086432pt;}
.x84_c01340{left:365.280000pt;}
.x6a_c01340{left:366.241333pt;}
.x34_c01340{left:367.920000pt;}
.x97_c01340{left:374.400000pt;}
.x2f_c01340{left:377.520000pt;}
.x80_c01340{left:384.722667pt;}
.x5a_c01340{left:385.920000pt;}
.x6_c01340{left:387.840000pt;}
.x85_c01340{left:394.320000pt;}
.x52_c01340{left:395.520000pt;}
.x3_c01340{left:401.280000pt;}
.x98_c01340{left:403.680000pt;}
.x46_c01340{left:404.880000pt;}
.x35_c01340{left:406.080000pt;}
.x12_c01340{left:407.040000pt;}
.x91_c01340{left:413.869333pt;}
.x60_c01340{left:415.138667pt;}
.x22_c01340{left:416.640000pt;}
.x7_c01340{left:417.840000pt;}
.x5b_c01340{left:424.320000pt;}
.x99_c01340{left:432.480000pt;}
.x94_c01340{left:433.687851pt;}
.x8_c01340{left:436.560000pt;}
.x92_c01340{left:443.397333pt;}
.x36_c01340{left:445.680000pt;}
.x28_c01340{left:446.880000pt;}
.x4a_c01340{left:456.960000pt;}
.x61_c01340{left:464.116000pt;}
.x9_c01340{left:465.360000pt;}
.x37_c01340{left:475.200000pt;}
.x62_c01340{left:482.340000pt;}
.x76_c01340{left:483.793333pt;}
.x6b_c01340{left:492.721333pt;}
.x1b_c01340{left:493.920000pt;}
.x93_c01340{left:501.949333pt;}
.x13_c01340{left:504.240000pt;}
.x73_c01340{left:511.921333pt;}
.x4b_c01340{left:513.120000pt;}
.x1c_c01340{left:524.160000pt;}
.x77_c01340{left:531.502667pt;}
.x3d_c01340{left:533.280000pt;}
.x4c_c01340{left:541.920000pt;}
.x89_c01340{left:549.988000pt;}
.x38_c01340{left:552.480000pt;}
.x23_c01340{left:553.680000pt;}
.x78_c01340{left:559.088000pt;}
.x6c_c01340{left:560.881333pt;}
.xa_c01340{left:563.520000pt;}
.x5c_c01340{left:570.240000pt;}
.x24_c01340{left:571.920000pt;}
.x30_c01340{left:582.240000pt;}
.x86_c01340{left:588.480000pt;}
.x63_c01340{left:590.098667pt;}
.x53_c01340{left:591.600000pt;}
.x29_c01340{left:593.040000pt;}
.x7c_c01340{left:600.002667pt;}
.xb_c01340{left:602.400000pt;}
.x79_c01340{left:609.310667pt;}
.x40_c01340{left:611.040000pt;}
.x64_c01340{left:618.660000pt;}
.x31_c01340{left:620.880000pt;}
.x3e_c01340{left:623.520000pt;}
.x7d_c01340{left:628.322667pt;}
.x41_c01340{left:630.000000pt;}
.x14_c01340{left:630.960000pt;}
.x25_c01340{left:640.080000pt;}
.x2a_c01340{left:641.280000pt;}
.x74_c01340{left:648.241333pt;}
.x32_c01340{left:649.920000pt;}
.x7a_c01340{left:658.264000pt;}
.x4d_c01340{left:659.520000pt;}
.xc_c01340{left:661.920000pt;}
.x8a_c01340{left:667.084000pt;}
.x6d_c01340{left:668.161333pt;}
.x54_c01340{left:669.120000pt;}
.x1d_c01340{left:670.800000pt;}
.x42_c01340{left:679.200000pt;}
.x8b_c01340{left:686.794667pt;}
.x4e_c01340{left:688.800000pt;}
.x6e_c01340{left:697.921333pt;}
.x55_c01340{left:699.600000pt;}
.xd_c01340{left:700.800000pt;}
.x65_c01340{left:706.741333pt;}
.x47_c01340{left:708.240000pt;}
.x2b_c01340{left:709.440000pt;}
.x81_c01340{left:716.402667pt;}
.x5d_c01340{left:717.840000pt;}
.x1e_c01340{left:720.960000pt;}
.x43_c01340{left:727.920000pt;}
.x15_c01340{left:729.360000pt;}
.x4f_c01340{left:738.000000pt;}
.x26_c01340{left:738.960000pt;}
.xe_c01340{left:740.160000pt;}
}





/* 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_c01341 {
    display:none;
  }
  .loading-indicator_c01341.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01341 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_c01341 { 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_c01341" -> "#page-container .classname_c01341")
 */
.pf_c01341 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01341 { /* 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_c01341.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01341 { /* 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_c01341 { /* 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_c01341 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01341 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01341 {overflow:visible;}
  }
}
.c_c01341 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01341 { /* 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_c01341:after { /* webkit #35443 */
  content: '';
}
.t_c01341:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01341 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 */
}
.__c01341 { /* 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_c01341 { /* info for Javascript */
  display:none;
}
.l_c01341 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01341 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01341 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01341: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_c01341 {
    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_c01341.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01341.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_c01341 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01341{font-family:sans-serif;visibility:hidden;}
.sc__c01341{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01341{-webkit-text-stroke:0px transparent;}
}
.y0_c01341{bottom:0.000000px;}
.h1_c01341{height:1250.250000px;}
.h0_c01341{height:1250.370000px;}
.w1_c01341{width:912.000000px;}
.w0_c01341{width:912.300000px;}
.x0_c01341{left:0.000000px;}
@media print{
.y0_c01341{bottom:0.000000pt;}
.h1_c01341{height:1111.333333pt;}
.h0_c01341{height:1111.440000pt;}
.w1_c01341{width:810.666667pt;}
.w0_c01341{width:810.933333pt;}
.x0_c01341{left:0.000000pt;}
}





/* 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_c01342 {
    display:none;
  }
  .loading-indicator_c01342.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01342 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_c01342 { 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_c01342" -> "#page-container .classname_c01342")
 */
.pf_c01342 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01342 { /* 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_c01342.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01342 { /* 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_c01342 { /* 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_c01342 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01342 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01342 {overflow:visible;}
  }
}
.c_c01342 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01342 { /* 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_c01342:after { /* webkit #35443 */
  content: '';
}
.t_c01342:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01342 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 */
}
.__c01342 { /* 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_c01342 { /* info for Javascript */
  display:none;
}
.l_c01342 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01342 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01342 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01342: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_c01342 {
    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_c01342.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01342.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_c01342 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01342{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01342;src:url('chunks/assets/font_c605e72f209fc835e906f064.woff2')format("woff");}.ff1_c01342{font-family:ff1_c01342;line-height:1.000000;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;}
.m67_c01342{transform:matrix(0.013520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.013520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.013520,0.000000,0.000000,0.250000,0,0);}
.mde_c01342{transform:matrix(0.015809,0.000174,-0.002750,0.249985,0,0);-ms-transform:matrix(0.015809,0.000174,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.015809,0.000174,-0.002750,0.249985,0,0);}
.m91_c01342{transform:matrix(0.015910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.015910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.015910,0.000000,0.000000,0.250000,0,0);}
.m33_c01342{transform:matrix(0.117155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117155,0.000000,0.000000,0.250000,0,0);}
.mb_c01342{transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);}
.m35_c01342{transform:matrix(0.155505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155505,0.000000,0.000000,0.250000,0,0);}
.m7a_c01342{transform:matrix(0.161231,0.001129,-0.001750,0.249994,0,0);-ms-transform:matrix(0.161231,0.001129,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.161231,0.001129,-0.001750,0.249994,0,0);}
.m9_c01342{transform:matrix(0.165320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165320,0.000000,0.000000,0.250000,0,0);}
.mbe_c01342{transform:matrix(0.190824,0.001527,-0.002000,0.249992,0,0);-ms-transform:matrix(0.190824,0.001527,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.190824,0.001527,-0.002000,0.249992,0,0);}
.m87_c01342{transform:matrix(0.195934,0.001567,-0.002000,0.249992,0,0);-ms-transform:matrix(0.195934,0.001567,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.195934,0.001567,-0.002000,0.249992,0,0);}
.m1a_c01342{transform:matrix(0.197100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197100,0.000000,0.000000,0.250000,0,0);}
.m3b_c01342{transform:matrix(0.201535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201535,0.000000,0.000000,0.250000,0,0);}
.m40_c01342{transform:matrix(0.203975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203975,0.000000,0.000000,0.250000,0,0);}
.m23_c01342{transform:matrix(0.209120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209120,0.000000,0.000000,0.250000,0,0);}
.m3e_c01342{transform:matrix(0.209880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209880,0.000000,0.000000,0.250000,0,0);}
.md6_c01342{transform:matrix(0.209987,0.002310,-0.002750,0.249985,0,0);-ms-transform:matrix(0.209987,0.002310,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.209987,0.002310,-0.002750,0.249985,0,0);}
.m6e_c01342{transform:matrix(0.210617,0.001053,-0.001250,0.249997,0,0);-ms-transform:matrix(0.210617,0.001053,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.210617,0.001053,-0.001250,0.249997,0,0);}
.mab_c01342{transform:matrix(0.211623,0.001693,-0.002000,0.249992,0,0);-ms-transform:matrix(0.211623,0.001693,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.211623,0.001693,-0.002000,0.249992,0,0);}
.mf_c01342{transform:matrix(0.212395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212395,0.000000,0.000000,0.250000,0,0);}
.m14_c01342{transform:matrix(0.213805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213805,0.000000,0.000000,0.250000,0,0);}
.md1_c01342{transform:matrix(0.218242,0.002401,-0.002750,0.249985,0,0);-ms-transform:matrix(0.218242,0.002401,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.218242,0.002401,-0.002750,0.249985,0,0);}
.mae_c01342{transform:matrix(0.220183,0.001761,-0.002000,0.249992,0,0);-ms-transform:matrix(0.220183,0.001761,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.220183,0.001761,-0.002000,0.249992,0,0);}
.m5_c01342{transform:matrix(0.220370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220370,0.000000,0.000000,0.250000,0,0);}
.m7_c01342{transform:matrix(0.220460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220460,0.000000,0.000000,0.250000,0,0);}
.m3d_c01342{transform:matrix(0.220775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220775,0.000000,0.000000,0.250000,0,0);}
.ma8_c01342{transform:matrix(0.220893,0.001767,-0.002000,0.249992,0,0);-ms-transform:matrix(0.220893,0.001767,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.220893,0.001767,-0.002000,0.249992,0,0);}
.m4_c01342{transform:matrix(0.220905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220905,0.000000,0.000000,0.250000,0,0);}
.m6_c01342{transform:matrix(0.221670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221670,0.000000,0.000000,0.250000,0,0);}
.m6c_c01342{transform:matrix(0.221777,0.001109,-0.001250,0.249997,0,0);-ms-transform:matrix(0.221777,0.001109,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.221777,0.001109,-0.001250,0.249997,0,0);}
.mdc_c01342{transform:matrix(0.222112,0.002443,-0.002750,0.249985,0,0);-ms-transform:matrix(0.222112,0.002443,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.222112,0.002443,-0.002750,0.249985,0,0);}
.mac_c01342{transform:matrix(0.223173,0.001785,-0.002000,0.249992,0,0);-ms-transform:matrix(0.223173,0.001785,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.223173,0.001785,-0.002000,0.249992,0,0);}
.m66_c01342{transform:matrix(0.225780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225780,0.000000,0.000000,0.250000,0,0);}
.mb1_c01342{transform:matrix(0.226058,0.001808,-0.002000,0.249992,0,0);-ms-transform:matrix(0.226058,0.001808,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.226058,0.001808,-0.002000,0.249992,0,0);}
.m4b_c01342{transform:matrix(0.227262,0.001136,-0.001250,0.249997,0,0);-ms-transform:matrix(0.227262,0.001136,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.227262,0.001136,-0.001250,0.249997,0,0);}
.m6b_c01342{transform:matrix(0.227682,0.001138,-0.001250,0.249997,0,0);-ms-transform:matrix(0.227682,0.001138,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.227682,0.001138,-0.001250,0.249997,0,0);}
.m4a_c01342{transform:matrix(0.228562,0.001143,-0.001250,0.249997,0,0);-ms-transform:matrix(0.228562,0.001143,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.228562,0.001143,-0.001250,0.249997,0,0);}
.maa_c01342{transform:matrix(0.228693,0.001830,-0.002000,0.249992,0,0);-ms-transform:matrix(0.228693,0.001830,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.228693,0.001830,-0.002000,0.249992,0,0);}
.m3a_c01342{transform:matrix(0.228740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228740,0.000000,0.000000,0.250000,0,0);}
.m32_c01342{transform:matrix(0.228965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228965,0.000000,0.000000,0.250000,0,0);}
.m76_c01342{transform:matrix(0.229214,0.001605,-0.001750,0.249994,0,0);-ms-transform:matrix(0.229214,0.001605,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.229214,0.001605,-0.001750,0.249994,0,0);}
.mdd_c01342{transform:matrix(0.229316,0.002522,-0.002750,0.249985,0,0);-ms-transform:matrix(0.229316,0.002522,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.229316,0.002522,-0.002750,0.249985,0,0);}
.mb3_c01342{transform:matrix(0.231093,0.001849,-0.002000,0.249992,0,0);-ms-transform:matrix(0.231093,0.001849,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.231093,0.001849,-0.002000,0.249992,0,0);}
.m1f_c01342{transform:matrix(0.231100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231100,0.000000,0.000000,0.250000,0,0);}
.m89_c01342{transform:matrix(0.231205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231205,0.000000,0.000000,0.250000,0,0);}
.m48_c01342{transform:matrix(0.233007,0.001165,-0.001250,0.249997,0,0);-ms-transform:matrix(0.233007,0.001165,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.233007,0.001165,-0.001250,0.249997,0,0);}
.mcd_c01342{transform:matrix(0.233826,0.002572,-0.002750,0.249985,0,0);-ms-transform:matrix(0.233826,0.002572,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.233826,0.002572,-0.002750,0.249985,0,0);}
.m45_c01342{transform:matrix(0.233977,0.001170,-0.001250,0.249997,0,0);-ms-transform:matrix(0.233977,0.001170,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.233977,0.001170,-0.001250,0.249997,0,0);}
.m39_c01342{transform:matrix(0.234200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234200,0.000000,0.000000,0.250000,0,0);}
.m38_c01342{transform:matrix(0.234520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234520,0.000000,0.000000,0.250000,0,0);}
.m77_c01342{transform:matrix(0.234929,0.001645,-0.001750,0.249994,0,0);-ms-transform:matrix(0.234929,0.001645,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.234929,0.001645,-0.001750,0.249994,0,0);}
.mc5_c01342{transform:matrix(0.235117,0.001881,-0.002000,0.249992,0,0);-ms-transform:matrix(0.235117,0.001881,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.235117,0.001881,-0.002000,0.249992,0,0);}
.m0_c01342{transform:matrix(0.235800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235800,0.000000,0.000000,0.250000,0,0);}
.m8f_c01342{transform:matrix(0.235850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235850,0.000000,0.000000,0.250000,0,0);}
.m98_c01342{transform:matrix(0.235865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235865,0.000000,0.000000,0.250000,0,0);}
.m68_c01342{transform:matrix(0.235892,0.001179,-0.001250,0.249997,0,0);-ms-transform:matrix(0.235892,0.001179,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.235892,0.001179,-0.001250,0.249997,0,0);}
.m1_c01342{transform:matrix(0.236035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236035,0.000000,0.000000,0.250000,0,0);}
.md5_c01342{transform:matrix(0.236426,0.002601,-0.002750,0.249985,0,0);-ms-transform:matrix(0.236426,0.002601,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.236426,0.002601,-0.002750,0.249985,0,0);}
.m53_c01342{transform:matrix(0.236752,0.001184,-0.001250,0.249997,0,0);-ms-transform:matrix(0.236752,0.001184,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.236752,0.001184,-0.001250,0.249997,0,0);}
.m17_c01342{transform:matrix(0.238155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238155,0.000000,0.000000,0.250000,0,0);}
.mda_c01342{transform:matrix(0.238206,0.002620,-0.002750,0.249985,0,0);-ms-transform:matrix(0.238206,0.002620,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.238206,0.002620,-0.002750,0.249985,0,0);}
.m3f_c01342{transform:matrix(0.238560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238560,0.000000,0.000000,0.250000,0,0);}
.mcc_c01342{transform:matrix(0.238706,0.002626,-0.002750,0.249985,0,0);-ms-transform:matrix(0.238706,0.002626,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.238706,0.002626,-0.002750,0.249985,0,0);}
.m2_c01342{transform:matrix(0.239095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239095,0.000000,0.000000,0.250000,0,0);}
.m3_c01342{transform:matrix(0.239200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239200,0.000000,0.000000,0.250000,0,0);}
.m41_c01342{transform:matrix(0.239385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239385,0.000000,0.000000,0.250000,0,0);}
.m44_c01342{transform:matrix(0.239957,0.001200,-0.001250,0.249997,0,0);-ms-transform:matrix(0.239957,0.001200,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.239957,0.001200,-0.001250,0.249997,0,0);}
.md8_c01342{transform:matrix(0.240455,0.002645,-0.002750,0.249985,0,0);-ms-transform:matrix(0.240455,0.002645,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.240455,0.002645,-0.002750,0.249985,0,0);}
.mc1_c01342{transform:matrix(0.240580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240580,0.000000,0.000000,0.250000,0,0);}
.mad_c01342{transform:matrix(0.241482,0.001932,-0.002000,0.249992,0,0);-ms-transform:matrix(0.241482,0.001932,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.241482,0.001932,-0.002000,0.249992,0,0);}
.m46_c01342{transform:matrix(0.241692,0.001208,-0.001250,0.249997,0,0);-ms-transform:matrix(0.241692,0.001208,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.241692,0.001208,-0.001250,0.249997,0,0);}
.m95_c01342{transform:matrix(0.241740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241740,0.000000,0.000000,0.250000,0,0);}
.maf_c01342{transform:matrix(0.242737,0.001942,-0.002000,0.249992,0,0);-ms-transform:matrix(0.242737,0.001942,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.242737,0.001942,-0.002000,0.249992,0,0);}
.m10_c01342{transform:matrix(0.242745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242745,0.000000,0.000000,0.250000,0,0);}
.m4c_c01342{transform:matrix(0.243487,0.001217,-0.001250,0.249997,0,0);-ms-transform:matrix(0.243487,0.001217,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.243487,0.001217,-0.001250,0.249997,0,0);}
.m71_c01342{transform:matrix(0.243937,0.001220,-0.001250,0.249997,0,0);-ms-transform:matrix(0.243937,0.001220,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.243937,0.001220,-0.001250,0.249997,0,0);}
.m6d_c01342{transform:matrix(0.244197,0.001221,-0.001250,0.249997,0,0);-ms-transform:matrix(0.244197,0.001221,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.244197,0.001221,-0.001250,0.249997,0,0);}
.m34_c01342{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m52_c01342{transform:matrix(0.245347,0.001227,-0.001250,0.249997,0,0);-ms-transform:matrix(0.245347,0.001227,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.245347,0.001227,-0.001250,0.249997,0,0);}
.mca_c01342{transform:matrix(0.245450,0.002700,-0.002750,0.249985,0,0);-ms-transform:matrix(0.245450,0.002700,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.245450,0.002700,-0.002750,0.249985,0,0);}
.m3c_c01342{transform:matrix(0.246015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246015,0.000000,0.000000,0.250000,0,0);}
.m43_c01342{transform:matrix(0.246607,0.001233,-0.001250,0.249997,0,0);-ms-transform:matrix(0.246607,0.001233,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.246607,0.001233,-0.001250,0.249997,0,0);}
.ma9_c01342{transform:matrix(0.246907,0.001975,-0.002000,0.249992,0,0);-ms-transform:matrix(0.246907,0.001975,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.246907,0.001975,-0.002000,0.249992,0,0);}
.mdb_c01342{transform:matrix(0.246930,0.002716,-0.002750,0.249985,0,0);-ms-transform:matrix(0.246930,0.002716,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.246930,0.002716,-0.002750,0.249985,0,0);}
.m99_c01342{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m49_c01342{transform:matrix(0.247387,0.001237,-0.001250,0.249997,0,0);-ms-transform:matrix(0.247387,0.001237,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.247387,0.001237,-0.001250,0.249997,0,0);}
.m7b_c01342{transform:matrix(0.247929,0.001736,-0.001750,0.249994,0,0);-ms-transform:matrix(0.247929,0.001736,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.247929,0.001736,-0.001750,0.249994,0,0);}
.m5f_c01342{transform:matrix(0.248185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248185,0.000000,0.000000,0.250000,0,0);}
.m25_c01342{transform:matrix(0.248950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248950,0.000000,0.000000,0.250000,0,0);}
.m4e_c01342{transform:matrix(0.249012,0.001245,-0.001250,0.249997,0,0);-ms-transform:matrix(0.249012,0.001245,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.249012,0.001245,-0.001250,0.249997,0,0);}
.m58_c01342{transform:matrix(0.249502,0.001248,-0.001250,0.249997,0,0);-ms-transform:matrix(0.249502,0.001248,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.249502,0.001248,-0.001250,0.249997,0,0);}
.md0_c01342{transform:matrix(0.250040,0.002750,-0.002750,0.249985,0,0);-ms-transform:matrix(0.250040,0.002750,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.250040,0.002750,-0.002750,0.249985,0,0);}
.mce_c01342{transform:matrix(0.250230,0.002753,-0.002750,0.249985,0,0);-ms-transform:matrix(0.250230,0.002753,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.250230,0.002753,-0.002750,0.249985,0,0);}
.m13_c01342{transform:matrix(0.250650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250650,0.000000,0.000000,0.250000,0,0);}
.mc7_c01342{transform:matrix(0.250922,0.002007,-0.002000,0.249992,0,0);-ms-transform:matrix(0.250922,0.002007,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.250922,0.002007,-0.002000,0.249992,0,0);}
.m15_c01342{transform:matrix(0.251340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251340,0.000000,0.000000,0.250000,0,0);}
.m5b_c01342{transform:matrix(0.251737,0.001259,-0.001250,0.249997,0,0);-ms-transform:matrix(0.251737,0.001259,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.251737,0.001259,-0.001250,0.249997,0,0);}
.m16_c01342{transform:matrix(0.251995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251995,0.000000,0.000000,0.250000,0,0);}
.m69_c01342{transform:matrix(0.252417,0.001262,-0.001250,0.249997,0,0);-ms-transform:matrix(0.252417,0.001262,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.252417,0.001262,-0.001250,0.249997,0,0);}
.m37_c01342{transform:matrix(0.252430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252430,0.000000,0.000000,0.250000,0,0);}
.m6a_c01342{transform:matrix(0.252747,0.001264,-0.001250,0.249997,0,0);-ms-transform:matrix(0.252747,0.001264,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.252747,0.001264,-0.001250,0.249997,0,0);}
.mcf_c01342{transform:matrix(0.252780,0.002781,-0.002750,0.249985,0,0);-ms-transform:matrix(0.252780,0.002781,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.252780,0.002781,-0.002750,0.249985,0,0);}
.m65_c01342{transform:matrix(0.252790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252790,0.000000,0.000000,0.250000,0,0);}
.mb5_c01342{transform:matrix(0.252832,0.002023,-0.002000,0.249992,0,0);-ms-transform:matrix(0.252832,0.002023,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.252832,0.002023,-0.002000,0.249992,0,0);}
.m57_c01342{transform:matrix(0.252837,0.001264,-0.001250,0.249997,0,0);-ms-transform:matrix(0.252837,0.001264,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.252837,0.001264,-0.001250,0.249997,0,0);}
.mc9_c01342{transform:matrix(0.252955,0.002783,-0.002750,0.249985,0,0);-ms-transform:matrix(0.252955,0.002783,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.252955,0.002783,-0.002750,0.249985,0,0);}
.md4_c01342{transform:matrix(0.252995,0.002783,-0.002750,0.249985,0,0);-ms-transform:matrix(0.252995,0.002783,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.252995,0.002783,-0.002750,0.249985,0,0);}
.ma5_c01342{transform:matrix(0.253502,0.002028,-0.002000,0.249992,0,0);-ms-transform:matrix(0.253502,0.002028,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.253502,0.002028,-0.002000,0.249992,0,0);}
.md_c01342{transform:matrix(0.254095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254095,0.000000,0.000000,0.250000,0,0);}
.mc6_c01342{transform:matrix(0.254677,0.002037,-0.002000,0.249992,0,0);-ms-transform:matrix(0.254677,0.002037,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.254677,0.002037,-0.002000,0.249992,0,0);}
.mcb_c01342{transform:matrix(0.254735,0.002802,-0.002750,0.249985,0,0);-ms-transform:matrix(0.254735,0.002802,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.254735,0.002802,-0.002750,0.249985,0,0);}
.m82_c01342{transform:matrix(0.254972,0.002040,-0.002000,0.249992,0,0);-ms-transform:matrix(0.254972,0.002040,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.254972,0.002040,-0.002000,0.249992,0,0);}
.m2d_c01342{transform:matrix(0.255855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255855,0.000000,0.000000,0.250000,0,0);}
.m18_c01342{transform:matrix(0.256680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256680,0.000000,0.000000,0.250000,0,0);}
.m8d_c01342{transform:matrix(0.256790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256790,0.000000,0.000000,0.250000,0,0);}
.m19_c01342{transform:matrix(0.257230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257230,0.000000,0.000000,0.250000,0,0);}
.m1d_c01342{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m1b_c01342{transform:matrix(0.257735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257735,0.000000,0.000000,0.250000,0,0);}
.m27_c01342{transform:matrix(0.258535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258535,0.000000,0.000000,0.250000,0,0);}
.mb4_c01342{transform:matrix(0.258897,0.002071,-0.002000,0.249992,0,0);-ms-transform:matrix(0.258897,0.002071,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.258897,0.002071,-0.002000,0.249992,0,0);}
.m56_c01342{transform:matrix(0.258917,0.001295,-0.001250,0.249997,0,0);-ms-transform:matrix(0.258917,0.001295,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.258917,0.001295,-0.001250,0.249997,0,0);}
.m8a_c01342{transform:matrix(0.259155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259155,0.000000,0.000000,0.250000,0,0);}
.mc4_c01342{transform:matrix(0.259322,0.002075,-0.002000,0.249992,0,0);-ms-transform:matrix(0.259322,0.002075,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.259322,0.002075,-0.002000,0.249992,0,0);}
.m6f_c01342{transform:matrix(0.259757,0.001299,-0.001250,0.249997,0,0);-ms-transform:matrix(0.259757,0.001299,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.259757,0.001299,-0.001250,0.249997,0,0);}
.me_c01342{transform:matrix(0.259970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259970,0.000000,0.000000,0.250000,0,0);}
.mb2_c01342{transform:matrix(0.260767,0.002086,-0.002000,0.249992,0,0);-ms-transform:matrix(0.260767,0.002086,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.260767,0.002086,-0.002000,0.249992,0,0);}
.m74_c01342{transform:matrix(0.261159,0.001828,-0.001750,0.249994,0,0);-ms-transform:matrix(0.261159,0.001828,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.261159,0.001828,-0.001750,0.249994,0,0);}
.m97_c01342{transform:matrix(0.261270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261270,0.000000,0.000000,0.250000,0,0);}
.mc2_c01342{transform:matrix(0.261427,0.002091,-0.002000,0.249992,0,0);-ms-transform:matrix(0.261427,0.002091,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.261427,0.002091,-0.002000,0.249992,0,0);}
.m22_c01342{transform:matrix(0.261440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261440,0.000000,0.000000,0.250000,0,0);}
.m21_c01342{transform:matrix(0.261525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261525,0.000000,0.000000,0.250000,0,0);}
.mc3_c01342{transform:matrix(0.261742,0.002094,-0.002000,0.249992,0,0);-ms-transform:matrix(0.261742,0.002094,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.261742,0.002094,-0.002000,0.249992,0,0);}
.md9_c01342{transform:matrix(0.261949,0.002881,-0.002750,0.249985,0,0);-ms-transform:matrix(0.261949,0.002881,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.261949,0.002881,-0.002750,0.249985,0,0);}
.m30_c01342{transform:matrix(0.262055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262055,0.000000,0.000000,0.250000,0,0);}
.m61_c01342{transform:matrix(0.262515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262515,0.000000,0.000000,0.250000,0,0);}
.mb7_c01342{transform:matrix(0.262652,0.002101,-0.002000,0.249992,0,0);-ms-transform:matrix(0.262652,0.002101,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.262652,0.002101,-0.002000,0.249992,0,0);}
.m5c_c01342{transform:matrix(0.262847,0.001314,-0.001250,0.249997,0,0);-ms-transform:matrix(0.262847,0.001314,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.262847,0.001314,-0.001250,0.249997,0,0);}
.m36_c01342{transform:matrix(0.262910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262910,0.000000,0.000000,0.250000,0,0);}
.m83_c01342{transform:matrix(0.262932,0.002103,-0.002000,0.249992,0,0);-ms-transform:matrix(0.262932,0.002103,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.262932,0.002103,-0.002000,0.249992,0,0);}
.m20_c01342{transform:matrix(0.263465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263465,0.000000,0.000000,0.250000,0,0);}
.m70_c01342{transform:matrix(0.263617,0.001318,-0.001250,0.249997,0,0);-ms-transform:matrix(0.263617,0.001318,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.263617,0.001318,-0.001250,0.249997,0,0);}
.m47_c01342{transform:matrix(0.264232,0.001321,-0.001250,0.249997,0,0);-ms-transform:matrix(0.264232,0.001321,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.264232,0.001321,-0.001250,0.249997,0,0);}
.m2e_c01342{transform:matrix(0.264265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264265,0.000000,0.000000,0.250000,0,0);}
.mc_c01342{transform:matrix(0.264430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264430,0.000000,0.000000,0.250000,0,0);}
.m2b_c01342{transform:matrix(0.264495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264495,0.000000,0.000000,0.250000,0,0);}
.mc8_c01342{transform:matrix(0.267196,0.002138,-0.002000,0.249992,0,0);-ms-transform:matrix(0.267196,0.002138,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.267196,0.002138,-0.002000,0.249992,0,0);}
.m75_c01342{transform:matrix(0.267293,0.001871,-0.001750,0.249994,0,0);-ms-transform:matrix(0.267293,0.001871,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.267293,0.001871,-0.001750,0.249994,0,0);}
.m42_c01342{transform:matrix(0.268200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268200,0.000000,0.000000,0.250000,0,0);}
.mb6_c01342{transform:matrix(0.268231,0.002146,-0.002000,0.249992,0,0);-ms-transform:matrix(0.268231,0.002146,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.268231,0.002146,-0.002000,0.249992,0,0);}
.m8e_c01342{transform:matrix(0.269790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269790,0.000000,0.000000,0.250000,0,0);}
.m31_c01342{transform:matrix(0.270030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270030,0.000000,0.000000,0.250000,0,0);}
.m80_c01342{transform:matrix(0.270116,0.002161,-0.002000,0.249992,0,0);-ms-transform:matrix(0.270116,0.002161,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.270116,0.002161,-0.002000,0.249992,0,0);}
.m90_c01342{transform:matrix(0.270130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270130,0.000000,0.000000,0.250000,0,0);}
.ma1_c01342{transform:matrix(0.270260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270260,0.000000,0.000000,0.250000,0,0);}
.m59_c01342{transform:matrix(0.270817,0.001354,-0.001250,0.249997,0,0);-ms-transform:matrix(0.270817,0.001354,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.270817,0.001354,-0.001250,0.249997,0,0);}
.m9b_c01342{transform:matrix(0.271280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271280,0.000000,0.000000,0.250000,0,0);}
.mb0_c01342{transform:matrix(0.271421,0.002171,-0.002000,0.249992,0,0);-ms-transform:matrix(0.271421,0.002171,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.271421,0.002171,-0.002000,0.249992,0,0);}
.mbc_c01342{transform:matrix(0.272351,0.002179,-0.002000,0.249992,0,0);-ms-transform:matrix(0.272351,0.002179,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.272351,0.002179,-0.002000,0.249992,0,0);}
.m79_c01342{transform:matrix(0.272368,0.001907,-0.001750,0.249994,0,0);-ms-transform:matrix(0.272368,0.001907,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.272368,0.001907,-0.001750,0.249994,0,0);}
.m7c_c01342{transform:matrix(0.274213,0.001919,-0.001750,0.249994,0,0);-ms-transform:matrix(0.274213,0.001919,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.274213,0.001919,-0.001750,0.249994,0,0);}
.m8c_c01342{transform:matrix(0.274575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274575,0.000000,0.000000,0.250000,0,0);}
.ma4_c01342{transform:matrix(0.275080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275080,0.000000,0.000000,0.250000,0,0);}
.m85_c01342{transform:matrix(0.276916,0.002215,-0.002000,0.249992,0,0);-ms-transform:matrix(0.276916,0.002215,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.276916,0.002215,-0.002000,0.249992,0,0);}
.m5a_c01342{transform:matrix(0.277177,0.001386,-0.001250,0.249997,0,0);-ms-transform:matrix(0.277177,0.001386,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.277177,0.001386,-0.001250,0.249997,0,0);}
.m26_c01342{transform:matrix(0.277315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277315,0.000000,0.000000,0.250000,0,0);}
.mbf_c01342{transform:matrix(0.278031,0.002224,-0.002000,0.249992,0,0);-ms-transform:matrix(0.278031,0.002224,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.278031,0.002224,-0.002000,0.249992,0,0);}
.m24_c01342{transform:matrix(0.278740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278740,0.000000,0.000000,0.250000,0,0);}
.ma3_c01342{transform:matrix(0.278885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278885,0.000000,0.000000,0.250000,0,0);}
.m1c_c01342{transform:matrix(0.279080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279080,0.000000,0.000000,0.250000,0,0);}
.m12_c01342{transform:matrix(0.279690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279690,0.000000,0.000000,0.250000,0,0);}
.m88_c01342{transform:matrix(0.280280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280280,0.000000,0.000000,0.250000,0,0);}
.m11_c01342{transform:matrix(0.280785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280785,0.000000,0.000000,0.250000,0,0);}
.m5e_c01342{transform:matrix(0.281730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281730,0.000000,0.000000,0.250000,0,0);}
.m7d_c01342{transform:matrix(0.282056,0.002256,-0.002000,0.249992,0,0);-ms-transform:matrix(0.282056,0.002256,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.282056,0.002256,-0.002000,0.249992,0,0);}
.m7e_c01342{transform:matrix(0.282346,0.002259,-0.002000,0.249992,0,0);-ms-transform:matrix(0.282346,0.002259,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.282346,0.002259,-0.002000,0.249992,0,0);}
.m1e_c01342{transform:matrix(0.282580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282580,0.000000,0.000000,0.250000,0,0);}
.m78_c01342{transform:matrix(0.282598,0.001978,-0.001750,0.249994,0,0);-ms-transform:matrix(0.282598,0.001978,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.282598,0.001978,-0.001750,0.249994,0,0);}
.m4f_c01342{transform:matrix(0.282711,0.001414,-0.001250,0.249997,0,0);-ms-transform:matrix(0.282711,0.001414,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.282711,0.001414,-0.001250,0.249997,0,0);}
.m96_c01342{transform:matrix(0.283200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283200,0.000000,0.000000,0.250000,0,0);}
.m28_c01342{transform:matrix(0.283365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283365,0.000000,0.000000,0.250000,0,0);}
.m9c_c01342{transform:matrix(0.284005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284005,0.000000,0.000000,0.250000,0,0);}
.m4d_c01342{transform:matrix(0.286016,0.001430,-0.001250,0.249997,0,0);-ms-transform:matrix(0.286016,0.001430,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.286016,0.001430,-0.001250,0.249997,0,0);}
.m55_c01342{transform:matrix(0.286046,0.001430,-0.001250,0.249997,0,0);-ms-transform:matrix(0.286046,0.001430,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.286046,0.001430,-0.001250,0.249997,0,0);}
.m64_c01342{transform:matrix(0.286495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286495,0.000000,0.000000,0.250000,0,0);}
.mb9_c01342{transform:matrix(0.287231,0.002298,-0.002000,0.249992,0,0);-ms-transform:matrix(0.287231,0.002298,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.287231,0.002298,-0.002000,0.249992,0,0);}
.mbb_c01342{transform:matrix(0.287916,0.002303,-0.002000,0.249992,0,0);-ms-transform:matrix(0.287916,0.002303,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.287916,0.002303,-0.002000,0.249992,0,0);}
.ma_c01342{transform:matrix(0.288295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288295,0.000000,0.000000,0.250000,0,0);}
.m2a_c01342{transform:matrix(0.289535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289535,0.000000,0.000000,0.250000,0,0);}
.m50_c01342{transform:matrix(0.290251,0.001451,-0.001250,0.249997,0,0);-ms-transform:matrix(0.290251,0.001451,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.290251,0.001451,-0.001250,0.249997,0,0);}
.m93_c01342{transform:matrix(0.290415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290415,0.000000,0.000000,0.250000,0,0);}
.m5d_c01342{transform:matrix(0.290830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290830,0.000000,0.000000,0.250000,0,0);}
.mc0_c01342{transform:matrix(0.291726,0.002334,-0.002000,0.249992,0,0);-ms-transform:matrix(0.291726,0.002334,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.291726,0.002334,-0.002000,0.249992,0,0);}
.m84_c01342{transform:matrix(0.293801,0.002350,-0.002000,0.249992,0,0);-ms-transform:matrix(0.293801,0.002350,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.293801,0.002350,-0.002000,0.249992,0,0);}
.m9f_c01342{transform:matrix(0.293880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293880,0.000000,0.000000,0.250000,0,0);}
.ma0_c01342{transform:matrix(0.294810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294810,0.000000,0.000000,0.250000,0,0);}
.m54_c01342{transform:matrix(0.295016,0.001475,-0.001250,0.249997,0,0);-ms-transform:matrix(0.295016,0.001475,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.295016,0.001475,-0.001250,0.249997,0,0);}
.md7_c01342{transform:matrix(0.295727,0.003253,-0.002750,0.249985,0,0);-ms-transform:matrix(0.295727,0.003253,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.295727,0.003253,-0.002750,0.249985,0,0);}
.mbd_c01342{transform:matrix(0.296006,0.002368,-0.002000,0.249992,0,0);-ms-transform:matrix(0.296006,0.002368,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.296006,0.002368,-0.002000,0.249992,0,0);}
.m2c_c01342{transform:matrix(0.296010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296010,0.000000,0.000000,0.250000,0,0);}
.mb8_c01342{transform:matrix(0.296211,0.002370,-0.002000,0.249992,0,0);-ms-transform:matrix(0.296211,0.002370,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.296211,0.002370,-0.002000,0.249992,0,0);}
.m62_c01342{transform:matrix(0.296375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296375,0.000000,0.000000,0.250000,0,0);}
.m72_c01342{transform:matrix(0.299616,0.001498,-0.001250,0.249997,0,0);-ms-transform:matrix(0.299616,0.001498,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.299616,0.001498,-0.001250,0.249997,0,0);}
.me0_c01342{transform:matrix(0.299617,0.003296,-0.002750,0.249985,0,0);-ms-transform:matrix(0.299617,0.003296,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.299617,0.003296,-0.002750,0.249985,0,0);}
.m29_c01342{transform:matrix(0.300705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300705,0.000000,0.000000,0.250000,0,0);}
.md3_c01342{transform:matrix(0.301197,0.003313,-0.002750,0.249985,0,0);-ms-transform:matrix(0.301197,0.003313,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.301197,0.003313,-0.002750,0.249985,0,0);}
.m51_c01342{transform:matrix(0.301356,0.001507,-0.001250,0.249997,0,0);-ms-transform:matrix(0.301356,0.001507,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.301356,0.001507,-0.001250,0.249997,0,0);}
.m2f_c01342{transform:matrix(0.303170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303170,0.000000,0.000000,0.250000,0,0);}
.md2_c01342{transform:matrix(0.303497,0.003338,-0.002750,0.249985,0,0);-ms-transform:matrix(0.303497,0.003338,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.303497,0.003338,-0.002750,0.249985,0,0);}
.m60_c01342{transform:matrix(0.303990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303990,0.000000,0.000000,0.250000,0,0);}
.m81_c01342{transform:matrix(0.306350,0.002451,-0.002000,0.249992,0,0);-ms-transform:matrix(0.306350,0.002451,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.306350,0.002451,-0.002000,0.249992,0,0);}
.m92_c01342{transform:matrix(0.307270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307270,0.000000,0.000000,0.250000,0,0);}
.m7f_c01342{transform:matrix(0.309840,0.002479,-0.002000,0.249992,0,0);-ms-transform:matrix(0.309840,0.002479,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.309840,0.002479,-0.002000,0.249992,0,0);}
.m63_c01342{transform:matrix(0.310970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310970,0.000000,0.000000,0.250000,0,0);}
.m73_c01342{transform:matrix(0.314146,0.001571,-0.001250,0.249997,0,0);-ms-transform:matrix(0.314146,0.001571,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.314146,0.001571,-0.001250,0.249997,0,0);}
.ma7_c01342{transform:matrix(0.319385,0.002555,-0.002000,0.249992,0,0);-ms-transform:matrix(0.319385,0.002555,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.319385,0.002555,-0.002000,0.249992,0,0);}
.m9e_c01342{transform:matrix(0.327320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327320,0.000000,0.000000,0.250000,0,0);}
.m94_c01342{transform:matrix(0.331570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331570,0.000000,0.000000,0.250000,0,0);}
.m9d_c01342{transform:matrix(0.332870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332870,0.000000,0.000000,0.250000,0,0);}
.m9a_c01342{transform:matrix(0.333240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333240,0.000000,0.000000,0.250000,0,0);}
.ma2_c01342{transform:matrix(0.333750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333750,0.000000,0.000000,0.250000,0,0);}
.mdf_c01342{transform:matrix(0.337700,0.003715,-0.002750,0.249985,0,0);-ms-transform:matrix(0.337700,0.003715,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.337700,0.003715,-0.002750,0.249985,0,0);}
.ma6_c01342{transform:matrix(0.338594,0.002709,-0.002000,0.249992,0,0);-ms-transform:matrix(0.338594,0.002709,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.338594,0.002709,-0.002000,0.249992,0,0);}
.mba_c01342{transform:matrix(0.371383,0.002971,-0.002000,0.249992,0,0);-ms-transform:matrix(0.371383,0.002971,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.371383,0.002971,-0.002000,0.249992,0,0);}
.m8b_c01342{transform:matrix(0.384300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384300,0.000000,0.000000,0.250000,0,0);}
.m8_c01342{transform:matrix(0.449155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449155,0.000000,0.000000,0.250000,0,0);}
.m86_c01342{transform:matrix(0.455420,0.003643,-0.002000,0.249992,0,0);-ms-transform:matrix(0.455420,0.003643,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.455420,0.003643,-0.002000,0.249992,0,0);}
.v0_c01342{vertical-align:0.000000px;}
.ls0_c01342{letter-spacing:0.000000px;}
.sc__c01342{text-shadow:none;}
.sc0_c01342{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__c01342{-webkit-text-stroke:0px transparent;}
.sc0_c01342{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01342{word-spacing:0.000000px;}
.fc0_c01342{color:transparent;}
.fs2_c01342{font-size:24.000000px;}
.fsa_c01342{font-size:42.001344px;}
.fs10_c01342{font-size:54.003267px;}
.fsb_c01342{font-size:60.000000px;}
.fs4_c01342{font-size:66.000000px;}
.fs6_c01342{font-size:66.000825px;}
.fs9_c01342{font-size:66.002112px;}
.fs3_c01342{font-size:72.000000px;}
.fs7_c01342{font-size:72.000900px;}
.fs8_c01342{font-size:72.001764px;}
.fsd_c01342{font-size:72.002304px;}
.fsf_c01342{font-size:72.004356px;}
.fs0_c01342{font-size:78.000000px;}
.fs5_c01342{font-size:78.000975px;}
.fsc_c01342{font-size:78.002496px;}
.fse_c01342{font-size:78.004719px;}
.fs1_c01342{font-size:84.000000px;}
.y0_c01342{bottom:0.000000px;}
.y9f_c01342{bottom:64.393236px;}
.y9d_c01342{bottom:64.393323px;}
.y9e_c01342{bottom:64.393609px;}
.y9c_c01342{bottom:93.266173px;}
.y9b_c01342{bottom:93.637440px;}
.y9a_c01342{bottom:94.495885px;}
.y99_c01342{bottom:94.715319px;}
.y98_c01342{bottom:96.183027px;}
.y97_c01342{bottom:96.901751px;}
.y96_c01342{bottom:97.365103px;}
.y95_c01342{bottom:97.861061px;}
.y94_c01342{bottom:98.464102px;}
.y9_c01342{bottom:99.630000px;}
.y93_c01342{bottom:99.901500px;}
.y92_c01342{bottom:134.477523px;}
.y91_c01342{bottom:134.478027px;}
.y8_c01342{bottom:163.750500px;}
.y90_c01342{bottom:164.062096px;}
.y8f_c01342{bottom:164.917539px;}
.y8e_c01342{bottom:165.998751px;}
.y8d_c01342{bottom:166.482894px;}
.y8c_c01342{bottom:167.076960px;}
.y8b_c01342{bottom:167.691750px;}
.y8a_c01342{bottom:169.114429px;}
.y89_c01342{bottom:170.222273px;}
.y88_c01342{bottom:171.181500px;}
.y87_c01342{bottom:203.655708px;}
.y86_c01342{bottom:204.094176px;}
.y85_c01342{bottom:204.614736px;}
.y84_c01342{bottom:204.986256px;}
.y83_c01342{bottom:205.418316px;}
.y82_c01342{bottom:206.111676px;}
.y81_c01342{bottom:206.550000px;}
.y80_c01342{bottom:241.110000px;}
.y7_c01342{bottom:270.547500px;}
.y7f_c01342{bottom:272.064972px;}
.y7e_c01342{bottom:272.328576px;}
.y7d_c01342{bottom:272.596500px;}
.y7c_c01342{bottom:272.996544px;}
.y7b_c01342{bottom:273.259500px;}
.y7a_c01342{bottom:273.709968px;}
.y79_c01342{bottom:273.838740px;}
.y78_c01342{bottom:274.357980px;}
.y77_c01342{bottom:275.028756px;}
.y76_c01342{bottom:275.668944px;}
.y70_c01342{bottom:310.248264px;}
.y6f_c01342{bottom:310.248600px;}
.y71_c01342{bottom:310.248936px;}
.y6e_c01342{bottom:310.248948px;}
.y72_c01342{bottom:310.249128px;}
.y73_c01342{bottom:310.249800px;}
.y74_c01342{bottom:310.250112px;}
.y75_c01342{bottom:310.250472px;}
.y6d_c01342{bottom:340.713216px;}
.y6_c01342{bottom:340.749000px;}
.y6c_c01342{bottom:341.318028px;}
.y6b_c01342{bottom:341.676720px;}
.y6a_c01342{bottom:341.940024px;}
.y69_c01342{bottom:342.896964px;}
.y68_c01342{bottom:343.523484px;}
.y67_c01342{bottom:343.869120px;}
.y66_c01342{bottom:344.128968px;}
.y65_c01342{bottom:345.010152px;}
.y64_c01342{bottom:345.871500px;}
.y63_c01342{bottom:381.099000px;}
.y62_c01342{bottom:412.320000px;}
.y61_c01342{bottom:412.857000px;}
.y60_c01342{bottom:413.508000px;}
.y5f_c01342{bottom:413.709000px;}
.y5e_c01342{bottom:413.971500px;}
.y5d_c01342{bottom:414.556500px;}
.y5c_c01342{bottom:415.020000px;}
.y5b_c01342{bottom:415.219500px;}
.y5a_c01342{bottom:415.417500px;}
.y59_c01342{bottom:416.070000px;}
.y58_c01342{bottom:450.382500px;}
.y57_c01342{bottom:486.264000px;}
.y5_c01342{bottom:517.987500px;}
.y56_c01342{bottom:521.794500px;}
.y55_c01342{bottom:558.233268px;}
.y54_c01342{bottom:558.233664px;}
.y53_c01342{bottom:588.551772px;}
.y52_c01342{bottom:589.165284px;}
.y51_c01342{bottom:589.515240px;}
.y50_c01342{bottom:589.783092px;}
.y4_c01342{bottom:590.218500px;}
.y4f_c01342{bottom:590.828520px;}
.y4e_c01342{bottom:590.998896px;}
.y4d_c01342{bottom:592.230384px;}
.y4c_c01342{bottom:592.856784px;}
.y4b_c01342{bottom:593.461500px;}
.y4a_c01342{bottom:623.950788px;}
.y49_c01342{bottom:624.253198px;}
.y48_c01342{bottom:624.545823px;}
.y3_c01342{bottom:624.780000px;}
.y47_c01342{bottom:625.249260px;}
.y46_c01342{bottom:626.322780px;}
.y45_c01342{bottom:626.623311px;}
.y44_c01342{bottom:626.944590px;}
.y43_c01342{bottom:627.481381px;}
.y42_c01342{bottom:628.020000px;}
.y41_c01342{bottom:662.848687px;}
.y40_c01342{bottom:662.848830px;}
.y3f_c01342{bottom:693.806812px;}
.y3e_c01342{bottom:694.575007px;}
.y3d_c01342{bottom:694.796707px;}
.y3c_c01342{bottom:694.958400px;}
.y3b_c01342{bottom:695.347185px;}
.y3a_c01342{bottom:695.447010px;}
.y39_c01342{bottom:695.718450px;}
.y38_c01342{bottom:696.000600px;}
.y37_c01342{bottom:696.489315px;}
.y36_c01342{bottom:696.870000px;}
.y35_c01342{bottom:731.920500px;}
.y34_c01342{bottom:765.795000px;}
.y2d_c01342{bottom:802.251742px;}
.y33_c01342{bottom:802.251915px;}
.y2e_c01342{bottom:802.252350px;}
.y32_c01342{bottom:802.252365px;}
.y2f_c01342{bottom:802.252800px;}
.y31_c01342{bottom:802.252957px;}
.y30_c01342{bottom:802.253100px;}
.y2c_c01342{bottom:834.579465px;}
.y2b_c01342{bottom:835.077615px;}
.y2a_c01342{bottom:835.337985px;}
.y29_c01342{bottom:835.516290px;}
.y28_c01342{bottom:836.061780px;}
.y27_c01342{bottom:836.493780px;}
.y26_c01342{bottom:836.890695px;}
.y25_c01342{bottom:837.103987px;}
.y24_c01342{bottom:837.540000px;}
.y23_c01342{bottom:870.060127px;}
.y22_c01342{bottom:870.276135px;}
.y21_c01342{bottom:870.384060px;}
.y20_c01342{bottom:870.770250px;}
.y1f_c01342{bottom:870.995715px;}
.y1e_c01342{bottom:871.765215px;}
.y1d_c01342{bottom:872.145908px;}
.y1c_c01342{bottom:872.473972px;}
.y1b_c01342{bottom:872.745330px;}
.y1a_c01342{bottom:873.180000px;}
.y19_c01342{bottom:908.793000px;}
.y18_c01342{bottom:941.599500px;}
.y17_c01342{bottom:975.676500px;}
.y16_c01342{bottom:975.901500px;}
.y15_c01342{bottom:976.612500px;}
.y14_c01342{bottom:976.828500px;}
.y13_c01342{bottom:977.604000px;}
.y12_c01342{bottom:977.826000px;}
.y11_c01342{bottom:977.988000px;}
.y10_c01342{bottom:978.480000px;}
.y2_c01342{bottom:1008.316500px;}
.yf_c01342{bottom:1010.766000px;}
.ye_c01342{bottom:1048.101000px;}
.yd_c01342{bottom:1082.982000px;}
.yc_c01342{bottom:1116.286500px;}
.y1_c01342{bottom:1147.086000px;}
.yb_c01342{bottom:1151.523000px;}
.ya_c01342{bottom:1208.248500px;}
.h4_c01342{height:24.000000px;}
.hc_c01342{height:42.001344px;}
.h12_c01342{height:54.003267px;}
.hd_c01342{height:60.000000px;}
.h6_c01342{height:66.000000px;}
.h8_c01342{height:66.000825px;}
.hb_c01342{height:66.002112px;}
.h5_c01342{height:72.000000px;}
.h9_c01342{height:72.000900px;}
.ha_c01342{height:72.001764px;}
.hf_c01342{height:72.002304px;}
.h11_c01342{height:72.004356px;}
.h2_c01342{height:78.000000px;}
.h7_c01342{height:78.000975px;}
.he_c01342{height:78.002496px;}
.h10_c01342{height:78.004719px;}
.h3_c01342{height:84.000000px;}
.h1_c01342{height:1250.250000px;}
.h0_c01342{height:1250.370000px;}
.w1_c01342{width:912.000000px;}
.w0_c01342{width:912.300000px;}
.x0_c01342{left:0.000000px;}
.x4_c01342{left:91.260000px;}
.x3_c01342{left:92.340000px;}
.x2_c01342{left:96.120000px;}
.x1_c01342{left:97.470000px;}
.x5_c01342{left:147.420000px;}
.x88_c01342{left:177.250500px;}
.x54_c01342{left:178.915500px;}
.x2f_c01342{left:180.630000px;}
.x22_c01342{left:181.710000px;}
.x9_c01342{left:183.600000px;}
.x1b_c01342{left:194.670000px;}
.x97_c01342{left:216.002581px;}
.x68_c01342{left:222.210000px;}
.x90_c01342{left:231.396362px;}
.x65_c01342{left:233.820000px;}
.x35_c01342{left:235.170000px;}
.x28_c01342{left:236.184000px;}
.x15_c01342{left:238.680000px;}
.x55_c01342{left:255.861000px;}
.x4b_c01342{left:257.509500px;}
.x1c_c01342{left:259.470000px;}
.x89_c01342{left:264.453000px;}
.x79_c01342{left:265.954020px;}
.x36_c01342{left:269.190000px;}
.x66_c01342{left:276.750000px;}
.xf_c01342{left:279.720000px;}
.x16_c01342{left:280.800000px;}
.xa_c01342{left:282.690000px;}
.x7e_c01342{left:286.654104px;}
.x6c_c01342{left:288.003000px;}
.x30_c01342{left:290.250000px;}
.x1d_c01342{left:292.140000px;}
.x53_c01342{left:299.967863px;}
.x91_c01342{left:308.454000px;}
.x5e_c01342{left:309.690000px;}
.x3e_c01342{left:310.965000px;}
.x10_c01342{left:312.930000px;}
.x85_c01342{left:319.572000px;}
.x6d_c01342{left:320.941500px;}
.x37_c01342{left:322.576500px;}
.x56_c01342{left:332.545500px;}
.x29_c01342{left:334.462500px;}
.x69_c01342{left:342.090000px;}
.x17_c01342{left:346.950000px;}
.x7a_c01342{left:352.626564px;}
.x6e_c01342{left:354.111000px;}
.x4c_c01342{left:355.252500px;}
.x92_c01342{left:363.276000px;}
.x8a_c01342{left:365.166000px;}
.x2a_c01342{left:366.861000px;}
.xb_c01342{left:369.900000px;}
.x86_c01342{left:373.579500px;}
.x47_c01342{left:377.730000px;}
.x6_c01342{left:379.350000px;}
.x7b_c01342{left:386.107212px;}
.x38_c01342{left:388.189500px;}
.x3f_c01342{left:390.348000px;}
.x7_c01342{left:392.310000px;}
.x73_c01342{left:398.062500px;}
.x1e_c01342{left:400.410000px;}
.x93_c01342{left:408.363000px;}
.x2b_c01342{left:411.141000px;}
.x31_c01342{left:412.560000px;}
.x87_c01342{left:420.019500px;}
.x57_c01342{left:421.375500px;}
.x11_c01342{left:422.550000px;}
.x5f_c01342{left:429.840000px;}
.x6f_c01342{left:431.371500px;}
.x23_c01342{left:434.970000px;}
.x4a_c01342{left:440.100000px;}
.x6a_c01342{left:441.990000px;}
.x1f_c01342{left:444.150000px;}
.x8_c01342{left:445.770000px;}
.x94_c01342{left:450.486000px;}
.x39_c01342{left:464.328000px;}
.x4d_c01342{left:465.970500px;}
.xc_c01342{left:467.100000px;}
.x74_c01342{left:473.748000px;}
.x44_c01342{left:475.743435px;}
.x40_c01342{left:476.748000px;}
.x4e_c01342{left:485.935500px;}
.x5b_c01342{left:487.278000px;}
.x18_c01342{left:488.700000px;}
.x8b_c01342{left:494.500500px;}
.xd_c01342{left:500.580000px;}
.x7f_c01342{left:506.443620px;}
.x5c_c01342{left:508.575000px;}
.x95_c01342{left:515.824500px;}
.x6b_c01342{left:529.470000px;}
.x24_c01342{left:531.630000px;}
.x7c_c01342{left:540.282588px;}
.x20_c01342{left:542.970000px;}
.x12_c01342{left:544.860000px;}
.x8c_c01342{left:550.390500px;}
.x75_c01342{left:552.063000px;}
.x7d_c01342{left:561.613956px;}
.x60_c01342{left:562.680000px;}
.x4f_c01342{left:563.692500px;}
.x25_c01342{left:564.840000px;}
.x2c_c01342{left:566.116500px;}
.x70_c01342{left:572.580000px;}
.x45_c01342{left:574.564403px;}
.x80_c01342{left:581.503320px;}
.x41_c01342{left:585.846000px;}
.x21_c01342{left:588.060000px;}
.x50_c01342{left:596.031000px;}
.x26_c01342{left:597.780000px;}
.x8d_c01342{left:604.396500px;}
.x61_c01342{left:606.150000px;}
.x13_c01342{left:609.120000px;}
.x3a_c01342{left:618.228000px;}
.x46_c01342{left:619.655527px;}
.xe_c01342{left:620.730000px;}
.x81_c01342{left:625.248516px;}
.x5d_c01342{left:639.253500px;}
.x51_c01342{left:640.371000px;}
.x19_c01342{left:643.140000px;}
.x8e_c01342{left:648.409500px;}
.x32_c01342{left:652.590000px;}
.x3b_c01342{left:663.321000px;}
.x96_c01342{left:669.201000px;}
.x48_c01342{left:672.300000px;}
.x42_c01342{left:673.581000px;}
.x58_c01342{left:675.226500px;}
.x62_c01342{left:682.560000px;}
.x33_c01342{left:686.610000px;}
.x82_c01342{left:691.942584px;}
.x76_c01342{left:704.593500px;}
.x1a_c01342{left:708.750000px;}
.x71_c01342{left:714.603000px;}
.x59_c01342{left:717.030000px;}
.x14_c01342{left:732.510000px;}
.x83_c01342{left:736.496292px;}
.x3c_c01342{left:740.559000px;}
.x27_c01342{left:741.690000px;}
.x8f_c01342{left:746.701500px;}
.x77_c01342{left:749.430000px;}
.x2d_c01342{left:751.608000px;}
.x5a_c01342{left:760.231500px;}
.x3d_c01342{left:762.144000px;}
.x43_c01342{left:773.211000px;}
.x84_c01342{left:780.510000px;}
.x49_c01342{left:784.080000px;}
.x63_c01342{left:792.450000px;}
.x52_c01342{left:794.010000px;}
.x2e_c01342{left:796.698000px;}
.x72_c01342{left:803.982000px;}
.x34_c01342{left:805.950000px;}
.x78_c01342{left:825.031500px;}
.x67_c01342{left:908.820000px;}
.x64_c01342{left:911.520000px;}
@media print{
.v0_c01342{vertical-align:0.000000pt;}
.ls0_c01342{letter-spacing:0.000000pt;}
.ws0_c01342{word-spacing:0.000000pt;}
.fs2_c01342{font-size:21.333333pt;}
.fsa_c01342{font-size:37.334528pt;}
.fs10_c01342{font-size:48.002904pt;}
.fsb_c01342{font-size:53.333333pt;}
.fs4_c01342{font-size:58.666667pt;}
.fs6_c01342{font-size:58.667400pt;}
.fs9_c01342{font-size:58.668544pt;}
.fs3_c01342{font-size:64.000000pt;}
.fs7_c01342{font-size:64.000800pt;}
.fs8_c01342{font-size:64.001568pt;}
.fsd_c01342{font-size:64.002048pt;}
.fsf_c01342{font-size:64.003872pt;}
.fs0_c01342{font-size:69.333333pt;}
.fs5_c01342{font-size:69.334200pt;}
.fsc_c01342{font-size:69.335552pt;}
.fse_c01342{font-size:69.337528pt;}
.fs1_c01342{font-size:74.666667pt;}
.y0_c01342{bottom:0.000000pt;}
.y9f_c01342{bottom:57.238432pt;}
.y9d_c01342{bottom:57.238509pt;}
.y9e_c01342{bottom:57.238764pt;}
.y9c_c01342{bottom:82.903265pt;}
.y9b_c01342{bottom:83.233280pt;}
.y9a_c01342{bottom:83.996343pt;}
.y99_c01342{bottom:84.191395pt;}
.y98_c01342{bottom:85.496024pt;}
.y97_c01342{bottom:86.134889pt;}
.y96_c01342{bottom:86.546759pt;}
.y95_c01342{bottom:86.987609pt;}
.y94_c01342{bottom:87.523647pt;}
.y9_c01342{bottom:88.560000pt;}
.y93_c01342{bottom:88.801333pt;}
.y92_c01342{bottom:119.535576pt;}
.y91_c01342{bottom:119.536024pt;}
.y8_c01342{bottom:145.556000pt;}
.y90_c01342{bottom:145.832975pt;}
.y8f_c01342{bottom:146.593368pt;}
.y8e_c01342{bottom:147.554445pt;}
.y8d_c01342{bottom:147.984795pt;}
.y8c_c01342{bottom:148.512853pt;}
.y8b_c01342{bottom:149.059333pt;}
.y8a_c01342{bottom:150.323937pt;}
.y89_c01342{bottom:151.308687pt;}
.y88_c01342{bottom:152.161333pt;}
.y87_c01342{bottom:181.027296pt;}
.y86_c01342{bottom:181.417045pt;}
.y85_c01342{bottom:181.879765pt;}
.y84_c01342{bottom:182.210005pt;}
.y83_c01342{bottom:182.594059pt;}
.y82_c01342{bottom:183.210379pt;}
.y81_c01342{bottom:183.600000pt;}
.y80_c01342{bottom:214.320000pt;}
.y7_c01342{bottom:240.486667pt;}
.y7f_c01342{bottom:241.835531pt;}
.y7e_c01342{bottom:242.069845pt;}
.y7d_c01342{bottom:242.308000pt;}
.y7c_c01342{bottom:242.663595pt;}
.y7b_c01342{bottom:242.897333pt;}
.y7a_c01342{bottom:243.297749pt;}
.y79_c01342{bottom:243.412213pt;}
.y78_c01342{bottom:243.873760pt;}
.y77_c01342{bottom:244.470005pt;}
.y76_c01342{bottom:245.039061pt;}
.y70_c01342{bottom:275.776235pt;}
.y6f_c01342{bottom:275.776533pt;}
.y71_c01342{bottom:275.776832pt;}
.y6e_c01342{bottom:275.776843pt;}
.y72_c01342{bottom:275.777003pt;}
.y73_c01342{bottom:275.777600pt;}
.y74_c01342{bottom:275.777877pt;}
.y75_c01342{bottom:275.778197pt;}
.y6d_c01342{bottom:302.856192pt;}
.y6_c01342{bottom:302.888000pt;}
.y6c_c01342{bottom:303.393803pt;}
.y6b_c01342{bottom:303.712640pt;}
.y6a_c01342{bottom:303.946688pt;}
.y69_c01342{bottom:304.797301pt;}
.y68_c01342{bottom:305.354208pt;}
.y67_c01342{bottom:305.661440pt;}
.y66_c01342{bottom:305.892416pt;}
.y65_c01342{bottom:306.675691pt;}
.y64_c01342{bottom:307.441333pt;}
.y63_c01342{bottom:338.754667pt;}
.y62_c01342{bottom:366.506667pt;}
.y61_c01342{bottom:366.984000pt;}
.y60_c01342{bottom:367.562667pt;}
.y5f_c01342{bottom:367.741333pt;}
.y5e_c01342{bottom:367.974667pt;}
.y5d_c01342{bottom:368.494667pt;}
.y5c_c01342{bottom:368.906667pt;}
.y5b_c01342{bottom:369.084000pt;}
.y5a_c01342{bottom:369.260000pt;}
.y59_c01342{bottom:369.840000pt;}
.y58_c01342{bottom:400.340000pt;}
.y57_c01342{bottom:432.234667pt;}
.y5_c01342{bottom:460.433333pt;}
.y56_c01342{bottom:463.817333pt;}
.y55_c01342{bottom:496.207349pt;}
.y54_c01342{bottom:496.207701pt;}
.y53_c01342{bottom:523.157131pt;}
.y52_c01342{bottom:523.702475pt;}
.y51_c01342{bottom:524.013547pt;}
.y50_c01342{bottom:524.251637pt;}
.y4_c01342{bottom:524.638667pt;}
.y4f_c01342{bottom:525.180907pt;}
.y4e_c01342{bottom:525.332352pt;}
.y4d_c01342{bottom:526.427008pt;}
.y4c_c01342{bottom:526.983808pt;}
.y4b_c01342{bottom:527.521333pt;}
.y4a_c01342{bottom:554.622923pt;}
.y49_c01342{bottom:554.891732pt;}
.y48_c01342{bottom:555.151843pt;}
.y3_c01342{bottom:555.360000pt;}
.y47_c01342{bottom:555.777120pt;}
.y46_c01342{bottom:556.731360pt;}
.y45_c01342{bottom:556.998499pt;}
.y44_c01342{bottom:557.284080pt;}
.y43_c01342{bottom:557.761228pt;}
.y42_c01342{bottom:558.240000pt;}
.y41_c01342{bottom:589.198833pt;}
.y40_c01342{bottom:589.198960pt;}
.y3f_c01342{bottom:616.717167pt;}
.y3e_c01342{bottom:617.400007pt;}
.y3d_c01342{bottom:617.597073pt;}
.y3c_c01342{bottom:617.740800pt;}
.y3b_c01342{bottom:618.086387pt;}
.y3a_c01342{bottom:618.175120pt;}
.y39_c01342{bottom:618.416400pt;}
.y38_c01342{bottom:618.667200pt;}
.y37_c01342{bottom:619.101613pt;}
.y36_c01342{bottom:619.440000pt;}
.y35_c01342{bottom:650.596000pt;}
.y34_c01342{bottom:680.706667pt;}
.y2d_c01342{bottom:713.112660pt;}
.y33_c01342{bottom:713.112813pt;}
.y2e_c01342{bottom:713.113200pt;}
.y32_c01342{bottom:713.113213pt;}
.y2f_c01342{bottom:713.113600pt;}
.y31_c01342{bottom:713.113740pt;}
.y30_c01342{bottom:713.113867pt;}
.y2c_c01342{bottom:741.848413pt;}
.y2b_c01342{bottom:742.291213pt;}
.y2a_c01342{bottom:742.522653pt;}
.y29_c01342{bottom:742.681147pt;}
.y28_c01342{bottom:743.166027pt;}
.y27_c01342{bottom:743.550027pt;}
.y26_c01342{bottom:743.902840pt;}
.y25_c01342{bottom:744.092433pt;}
.y24_c01342{bottom:744.480000pt;}
.y23_c01342{bottom:773.386780pt;}
.y22_c01342{bottom:773.578787pt;}
.y21_c01342{bottom:773.674720pt;}
.y20_c01342{bottom:774.018000pt;}
.y1f_c01342{bottom:774.218413pt;}
.y1e_c01342{bottom:774.902413pt;}
.y1d_c01342{bottom:775.240807pt;}
.y1c_c01342{bottom:775.532420pt;}
.y1b_c01342{bottom:775.773627pt;}
.y1a_c01342{bottom:776.160000pt;}
.y19_c01342{bottom:807.816000pt;}
.y18_c01342{bottom:836.977333pt;}
.y17_c01342{bottom:867.268000pt;}
.y16_c01342{bottom:867.468000pt;}
.y15_c01342{bottom:868.100000pt;}
.y14_c01342{bottom:868.292000pt;}
.y13_c01342{bottom:868.981333pt;}
.y12_c01342{bottom:869.178667pt;}
.y11_c01342{bottom:869.322667pt;}
.y10_c01342{bottom:869.760000pt;}
.y2_c01342{bottom:896.281333pt;}
.yf_c01342{bottom:898.458667pt;}
.ye_c01342{bottom:931.645333pt;}
.yd_c01342{bottom:962.650667pt;}
.yc_c01342{bottom:992.254667pt;}
.y1_c01342{bottom:1019.632000pt;}
.yb_c01342{bottom:1023.576000pt;}
.ya_c01342{bottom:1073.998667pt;}
.h4_c01342{height:21.333333pt;}
.hc_c01342{height:37.334528pt;}
.h12_c01342{height:48.002904pt;}
.hd_c01342{height:53.333333pt;}
.h6_c01342{height:58.666667pt;}
.h8_c01342{height:58.667400pt;}
.hb_c01342{height:58.668544pt;}
.h5_c01342{height:64.000000pt;}
.h9_c01342{height:64.000800pt;}
.ha_c01342{height:64.001568pt;}
.hf_c01342{height:64.002048pt;}
.h11_c01342{height:64.003872pt;}
.h2_c01342{height:69.333333pt;}
.h7_c01342{height:69.334200pt;}
.he_c01342{height:69.335552pt;}
.h10_c01342{height:69.337528pt;}
.h3_c01342{height:74.666667pt;}
.h1_c01342{height:1111.333333pt;}
.h0_c01342{height:1111.440000pt;}
.w1_c01342{width:810.666667pt;}
.w0_c01342{width:810.933333pt;}
.x0_c01342{left:0.000000pt;}
.x4_c01342{left:81.120000pt;}
.x3_c01342{left:82.080000pt;}
.x2_c01342{left:85.440000pt;}
.x1_c01342{left:86.640000pt;}
.x5_c01342{left:131.040000pt;}
.x88_c01342{left:157.556000pt;}
.x54_c01342{left:159.036000pt;}
.x2f_c01342{left:160.560000pt;}
.x22_c01342{left:161.520000pt;}
.x9_c01342{left:163.200000pt;}
.x1b_c01342{left:173.040000pt;}
.x97_c01342{left:192.002295pt;}
.x68_c01342{left:197.520000pt;}
.x90_c01342{left:205.685655pt;}
.x65_c01342{left:207.840000pt;}
.x35_c01342{left:209.040000pt;}
.x28_c01342{left:209.941333pt;}
.x15_c01342{left:212.160000pt;}
.x55_c01342{left:227.432000pt;}
.x4b_c01342{left:228.897333pt;}
.x1c_c01342{left:230.640000pt;}
.x89_c01342{left:235.069333pt;}
.x79_c01342{left:236.403573pt;}
.x36_c01342{left:239.280000pt;}
.x66_c01342{left:246.000000pt;}
.xf_c01342{left:248.640000pt;}
.x16_c01342{left:249.600000pt;}
.xa_c01342{left:251.280000pt;}
.x7e_c01342{left:254.803648pt;}
.x6c_c01342{left:256.002667pt;}
.x30_c01342{left:258.000000pt;}
.x1d_c01342{left:259.680000pt;}
.x53_c01342{left:266.638100pt;}
.x91_c01342{left:274.181333pt;}
.x5e_c01342{left:275.280000pt;}
.x3e_c01342{left:276.413333pt;}
.x10_c01342{left:278.160000pt;}
.x85_c01342{left:284.064000pt;}
.x6d_c01342{left:285.281333pt;}
.x37_c01342{left:286.734667pt;}
.x56_c01342{left:295.596000pt;}
.x29_c01342{left:297.300000pt;}
.x69_c01342{left:304.080000pt;}
.x17_c01342{left:308.400000pt;}
.x7a_c01342{left:313.445835pt;}
.x6e_c01342{left:314.765333pt;}
.x4c_c01342{left:315.780000pt;}
.x92_c01342{left:322.912000pt;}
.x8a_c01342{left:324.592000pt;}
.x2a_c01342{left:326.098667pt;}
.xb_c01342{left:328.800000pt;}
.x86_c01342{left:332.070667pt;}
.x47_c01342{left:335.760000pt;}
.x6_c01342{left:337.200000pt;}
.x7b_c01342{left:343.206411pt;}
.x38_c01342{left:345.057333pt;}
.x3f_c01342{left:346.976000pt;}
.x7_c01342{left:348.720000pt;}
.x73_c01342{left:353.833333pt;}
.x1e_c01342{left:355.920000pt;}
.x93_c01342{left:362.989333pt;}
.x2b_c01342{left:365.458667pt;}
.x31_c01342{left:366.720000pt;}
.x87_c01342{left:373.350667pt;}
.x57_c01342{left:374.556000pt;}
.x11_c01342{left:375.600000pt;}
.x5f_c01342{left:382.080000pt;}
.x6f_c01342{left:383.441333pt;}
.x23_c01342{left:386.640000pt;}
.x4a_c01342{left:391.200000pt;}
.x6a_c01342{left:392.880000pt;}
.x1f_c01342{left:394.800000pt;}
.x8_c01342{left:396.240000pt;}
.x94_c01342{left:400.432000pt;}
.x39_c01342{left:412.736000pt;}
.x4d_c01342{left:414.196000pt;}
.xc_c01342{left:415.200000pt;}
.x74_c01342{left:421.109333pt;}
.x44_c01342{left:422.883053pt;}
.x40_c01342{left:423.776000pt;}
.x4e_c01342{left:431.942667pt;}
.x5b_c01342{left:433.136000pt;}
.x18_c01342{left:434.400000pt;}
.x8b_c01342{left:439.556000pt;}
.xd_c01342{left:444.960000pt;}
.x7f_c01342{left:450.172107pt;}
.x5c_c01342{left:452.066667pt;}
.x95_c01342{left:458.510667pt;}
.x6b_c01342{left:470.640000pt;}
.x24_c01342{left:472.560000pt;}
.x7c_c01342{left:480.251189pt;}
.x20_c01342{left:482.640000pt;}
.x12_c01342{left:484.320000pt;}
.x8c_c01342{left:489.236000pt;}
.x75_c01342{left:490.722667pt;}
.x7d_c01342{left:499.212405pt;}
.x60_c01342{left:500.160000pt;}
.x4f_c01342{left:501.060000pt;}
.x25_c01342{left:502.080000pt;}
.x2c_c01342{left:503.214667pt;}
.x70_c01342{left:508.960000pt;}
.x45_c01342{left:510.723913pt;}
.x80_c01342{left:516.891840pt;}
.x41_c01342{left:520.752000pt;}
.x21_c01342{left:522.720000pt;}
.x50_c01342{left:529.805333pt;}
.x26_c01342{left:531.360000pt;}
.x8d_c01342{left:537.241333pt;}
.x61_c01342{left:538.800000pt;}
.x13_c01342{left:541.440000pt;}
.x3a_c01342{left:549.536000pt;}
.x46_c01342{left:550.804913pt;}
.xe_c01342{left:551.760000pt;}
.x81_c01342{left:555.776459pt;}
.x5d_c01342{left:568.225333pt;}
.x51_c01342{left:569.218667pt;}
.x19_c01342{left:571.680000pt;}
.x8e_c01342{left:576.364000pt;}
.x32_c01342{left:580.080000pt;}
.x3b_c01342{left:589.618667pt;}
.x96_c01342{left:594.845333pt;}
.x48_c01342{left:597.600000pt;}
.x42_c01342{left:598.738667pt;}
.x58_c01342{left:600.201333pt;}
.x62_c01342{left:606.720000pt;}
.x33_c01342{left:610.320000pt;}
.x82_c01342{left:615.060075pt;}
.x76_c01342{left:626.305333pt;}
.x1a_c01342{left:630.000000pt;}
.x71_c01342{left:635.202667pt;}
.x59_c01342{left:637.360000pt;}
.x14_c01342{left:651.120000pt;}
.x83_c01342{left:654.663371pt;}
.x3c_c01342{left:658.274667pt;}
.x27_c01342{left:659.280000pt;}
.x8f_c01342{left:663.734667pt;}
.x77_c01342{left:666.160000pt;}
.x2d_c01342{left:668.096000pt;}
.x5a_c01342{left:675.761333pt;}
.x3d_c01342{left:677.461333pt;}
.x43_c01342{left:687.298667pt;}
.x84_c01342{left:693.786667pt;}
.x49_c01342{left:696.960000pt;}
.x63_c01342{left:704.400000pt;}
.x52_c01342{left:705.786667pt;}
.x2e_c01342{left:708.176000pt;}
.x72_c01342{left:714.650667pt;}
.x34_c01342{left:716.400000pt;}
.x78_c01342{left:733.361333pt;}
.x67_c01342{left:807.840000pt;}
.x64_c01342{left:810.240000pt;}
}





/* 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_c01343 {
    display:none;
  }
  .loading-indicator_c01343.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01343 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_c01343 { 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_c01343" -> "#page-container .classname_c01343")
 */
.pf_c01343 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01343 { /* 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_c01343.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01343 { /* 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_c01343 { /* 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_c01343 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01343 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01343 {overflow:visible;}
  }
}
.c_c01343 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01343 { /* 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_c01343:after { /* webkit #35443 */
  content: '';
}
.t_c01343:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01343 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 */
}
.__c01343 { /* 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_c01343 { /* info for Javascript */
  display:none;
}
.l_c01343 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01343 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01343 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01343: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_c01343 {
    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_c01343.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01343.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_c01343 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01343{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01343;src:url('chunks/assets/font_74d7e987f08e4505b74f4479.woff2')format("woff");}.ff1_c01343{font-family:ff1_c01343;line-height:1.000000;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;}
.m14_c01343{transform:matrix(0.143160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143160,0.000000,0.000000,0.250000,0,0);}
.m15_c01343{transform:matrix(0.154385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154385,0.000000,0.000000,0.250000,0,0);}
.m2_c01343{transform:matrix(0.199945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199945,0.000000,0.000000,0.250000,0,0);}
.m13_c01343{transform:matrix(0.207255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207255,0.000000,0.000000,0.250000,0,0);}
.mb_c01343{transform:matrix(0.227920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227920,0.000000,0.000000,0.250000,0,0);}
.m11_c01343{transform:matrix(0.228010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228010,0.000000,0.000000,0.250000,0,0);}
.m1_c01343{transform:matrix(0.228115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228115,0.000000,0.000000,0.250000,0,0);}
.m0_c01343{transform:matrix(0.232620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232620,0.000000,0.000000,0.250000,0,0);}
.m10_c01343{transform:matrix(0.259850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259850,0.000000,0.000000,0.250000,0,0);}
.m4_c01343{transform:matrix(0.274120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274120,0.000000,0.000000,0.250000,0,0);}
.mf_c01343{transform:matrix(0.283770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283770,0.000000,0.000000,0.250000,0,0);}
.m8_c01343{transform:matrix(0.295395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295395,0.000000,0.000000,0.250000,0,0);}
.mc_c01343{transform:matrix(0.298240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298240,0.000000,0.000000,0.250000,0,0);}
.ma_c01343{transform:matrix(0.301425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301425,0.000000,0.000000,0.250000,0,0);}
.m12_c01343{transform:matrix(0.309235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309235,0.000000,0.000000,0.250000,0,0);}
.m9_c01343{transform:matrix(0.333960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333960,0.000000,0.000000,0.250000,0,0);}
.me_c01343{transform:matrix(0.360840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360840,0.000000,0.000000,0.250000,0,0);}
.md_c01343{transform:matrix(0.391215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391215,0.000000,0.000000,0.250000,0,0);}
.m5_c01343{transform:matrix(0.400280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400280,0.000000,0.000000,0.250000,0,0);}
.m3_c01343{transform:matrix(0.445930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445930,0.000000,0.000000,0.250000,0,0);}
.m6_c01343{transform:matrix(0.452305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452305,0.000000,0.000000,0.250000,0,0);}
.m7_c01343{transform:matrix(0.788320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.788320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.788320,0.000000,0.000000,0.250000,0,0);}
.v0_c01343{vertical-align:0.000000px;}
.ls0_c01343{letter-spacing:0.000000px;}
.sc__c01343{text-shadow:none;}
.sc0_c01343{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__c01343{-webkit-text-stroke:0px transparent;}
.sc0_c01343{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01343{word-spacing:0.000000px;}
.fc0_c01343{color:transparent;}
.fs6_c01343{font-size:18.000000px;}
.fs3_c01343{font-size:36.000000px;}
.fs5_c01343{font-size:54.000000px;}
.fs7_c01343{font-size:60.000000px;}
.fs2_c01343{font-size:66.000000px;}
.fs4_c01343{font-size:72.000000px;}
.fs0_c01343{font-size:78.000000px;}
.fs1_c01343{font-size:90.000000px;}
.fs8_c01343{font-size:132.000000px;}
.y0_c01343{bottom:0.000000px;}
.y3_c01343{bottom:137.557500px;}
.yb_c01343{bottom:137.700000px;}
.y1_c01343{bottom:138.510000px;}
.yd_c01343{bottom:158.220000px;}
.ye_c01343{bottom:171.450000px;}
.ya_c01343{bottom:174.819000px;}
.y6_c01343{bottom:176.850000px;}
.y9_c01343{bottom:181.440000px;}
.y2_c01343{bottom:245.829000px;}
.y5_c01343{bottom:247.050000px;}
.y7_c01343{bottom:565.102500px;}
.y4_c01343{bottom:568.624500px;}
.yc_c01343{bottom:601.560000px;}
.yf_c01343{bottom:604.501500px;}
.y8_c01343{bottom:604.690500px;}
.h8_c01343{height:18.000000px;}
.h5_c01343{height:36.000000px;}
.h7_c01343{height:54.000000px;}
.h9_c01343{height:60.000000px;}
.h4_c01343{height:66.000000px;}
.h6_c01343{height:72.000000px;}
.h2_c01343{height:78.000000px;}
.h3_c01343{height:90.000000px;}
.ha_c01343{height:132.000000px;}
.h1_c01343{height:1250.250000px;}
.h0_c01343{height:1250.370000px;}
.w1_c01343{width:912.000000px;}
.w0_c01343{width:912.300000px;}
.x0_c01343{left:0.000000px;}
.xd_c01343{left:551.070000px;}
.xe_c01343{left:595.350000px;}
.xc_c01343{left:609.120000px;}
.x9_c01343{left:623.970000px;}
.xb_c01343{left:658.530000px;}
.xa_c01343{left:660.960000px;}
.x7_c01343{left:672.300000px;}
.x5_c01343{left:674.460000px;}
.x6_c01343{left:683.370000px;}
.x8_c01343{left:694.440000px;}
.x3_c01343{left:748.170000px;}
.x4_c01343{left:749.250000px;}
.x2_c01343{left:782.190000px;}
.x1_c01343{left:815.940000px;}
@media print{
.v0_c01343{vertical-align:0.000000pt;}
.ls0_c01343{letter-spacing:0.000000pt;}
.ws0_c01343{word-spacing:0.000000pt;}
.fs6_c01343{font-size:16.000000pt;}
.fs3_c01343{font-size:32.000000pt;}
.fs5_c01343{font-size:48.000000pt;}
.fs7_c01343{font-size:53.333333pt;}
.fs2_c01343{font-size:58.666667pt;}
.fs4_c01343{font-size:64.000000pt;}
.fs0_c01343{font-size:69.333333pt;}
.fs1_c01343{font-size:80.000000pt;}
.fs8_c01343{font-size:117.333333pt;}
.y0_c01343{bottom:0.000000pt;}
.y3_c01343{bottom:122.273333pt;}
.yb_c01343{bottom:122.400000pt;}
.y1_c01343{bottom:123.120000pt;}
.yd_c01343{bottom:140.640000pt;}
.ye_c01343{bottom:152.400000pt;}
.ya_c01343{bottom:155.394667pt;}
.y6_c01343{bottom:157.200000pt;}
.y9_c01343{bottom:161.280000pt;}
.y2_c01343{bottom:218.514667pt;}
.y5_c01343{bottom:219.600000pt;}
.y7_c01343{bottom:502.313333pt;}
.y4_c01343{bottom:505.444000pt;}
.yc_c01343{bottom:534.720000pt;}
.yf_c01343{bottom:537.334667pt;}
.y8_c01343{bottom:537.502667pt;}
.h8_c01343{height:16.000000pt;}
.h5_c01343{height:32.000000pt;}
.h7_c01343{height:48.000000pt;}
.h9_c01343{height:53.333333pt;}
.h4_c01343{height:58.666667pt;}
.h6_c01343{height:64.000000pt;}
.h2_c01343{height:69.333333pt;}
.h3_c01343{height:80.000000pt;}
.ha_c01343{height:117.333333pt;}
.h1_c01343{height:1111.333333pt;}
.h0_c01343{height:1111.440000pt;}
.w1_c01343{width:810.666667pt;}
.w0_c01343{width:810.933333pt;}
.x0_c01343{left:0.000000pt;}
.xd_c01343{left:489.840000pt;}
.xe_c01343{left:529.200000pt;}
.xc_c01343{left:541.440000pt;}
.x9_c01343{left:554.640000pt;}
.xb_c01343{left:585.360000pt;}
.xa_c01343{left:587.520000pt;}
.x7_c01343{left:597.600000pt;}
.x5_c01343{left:599.520000pt;}
.x6_c01343{left:607.440000pt;}
.x8_c01343{left:617.280000pt;}
.x3_c01343{left:665.040000pt;}
.x4_c01343{left:666.000000pt;}
.x2_c01343{left:695.280000pt;}
.x1_c01343{left:725.280000pt;}
}





/* 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_c01344 {
    display:none;
  }
  .loading-indicator_c01344.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01344 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_c01344 { 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_c01344" -> "#page-container .classname_c01344")
 */
.pf_c01344 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01344 { /* 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_c01344.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01344 { /* 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_c01344 { /* 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_c01344 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01344 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01344 {overflow:visible;}
  }
}
.c_c01344 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01344 { /* 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_c01344:after { /* webkit #35443 */
  content: '';
}
.t_c01344:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01344 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 */
}
.__c01344 { /* 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_c01344 { /* info for Javascript */
  display:none;
}
.l_c01344 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01344 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01344 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01344: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_c01344 {
    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_c01344.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01344.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_c01344 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01344{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01344;src:url('chunks/assets/font_c605e72f209fc835e906f064.woff2')format("woff");}.ff1_c01344{font-family:ff1_c01344;line-height:1.000000;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;}
.md_c01344{transform:matrix(0.017294,-0.000744,0.010751,0.249769,0,0);-ms-transform:matrix(0.017294,-0.000744,0.010751,0.249769,0,0);-webkit-transform:matrix(0.017294,-0.000744,0.010751,0.249769,0,0);}
.m6_c01344{transform:matrix(0.147309,-0.006341,0.010751,0.249769,0,0);-ms-transform:matrix(0.147309,-0.006341,0.010751,0.249769,0,0);-webkit-transform:matrix(0.147309,-0.006341,0.010751,0.249769,0,0);}
.m7_c01344{transform:matrix(0.149192,-0.006422,0.010751,0.249769,0,0);-ms-transform:matrix(0.149192,-0.006422,0.010751,0.249769,0,0);-webkit-transform:matrix(0.149192,-0.006422,0.010751,0.249769,0,0);}
.mc_c01344{transform:matrix(0.156585,-0.006740,0.010751,0.249769,0,0);-ms-transform:matrix(0.156585,-0.006740,0.010751,0.249769,0,0);-webkit-transform:matrix(0.156585,-0.006740,0.010751,0.249769,0,0);}
.m10_c01344{transform:matrix(0.172064,-0.009482,0.013757,0.249621,0,0);-ms-transform:matrix(0.172064,-0.009482,0.013757,0.249621,0,0);-webkit-transform:matrix(0.172064,-0.009482,0.013757,0.249621,0,0);}
.m8_c01344{transform:matrix(0.191373,-0.008237,0.010751,0.249769,0,0);-ms-transform:matrix(0.191373,-0.008237,0.010751,0.249769,0,0);-webkit-transform:matrix(0.191373,-0.008237,0.010751,0.249769,0,0);}
.mf_c01344{transform:matrix(0.209817,-0.011563,0.013757,0.249621,0,0);-ms-transform:matrix(0.209817,-0.011563,0.013757,0.249621,0,0);-webkit-transform:matrix(0.209817,-0.011563,0.013757,0.249621,0,0);}
.m11_c01344{transform:matrix(0.210685,-0.011611,0.013757,0.249621,0,0);-ms-transform:matrix(0.210685,-0.011611,0.013757,0.249621,0,0);-webkit-transform:matrix(0.210685,-0.011611,0.013757,0.249621,0,0);}
.m12_c01344{transform:matrix(0.214350,-0.011813,0.013757,0.249621,0,0);-ms-transform:matrix(0.214350,-0.011813,0.013757,0.249621,0,0);-webkit-transform:matrix(0.214350,-0.011813,0.013757,0.249621,0,0);}
.m13_c01344{transform:matrix(0.214824,-0.011839,0.013757,0.249621,0,0);-ms-transform:matrix(0.214824,-0.011839,0.013757,0.249621,0,0);-webkit-transform:matrix(0.214824,-0.011839,0.013757,0.249621,0,0);}
.mb_c01344{transform:matrix(0.251732,-0.010835,0.010751,0.249769,0,0);-ms-transform:matrix(0.251732,-0.010835,0.010751,0.249769,0,0);-webkit-transform:matrix(0.251732,-0.010835,0.010751,0.249769,0,0);}
.m9_c01344{transform:matrix(0.255558,-0.011000,0.010751,0.249769,0,0);-ms-transform:matrix(0.255558,-0.011000,0.010751,0.249769,0,0);-webkit-transform:matrix(0.255558,-0.011000,0.010751,0.249769,0,0);}
.ma_c01344{transform:matrix(0.256193,-0.011027,0.010751,0.249769,0,0);-ms-transform:matrix(0.256193,-0.011027,0.010751,0.249769,0,0);-webkit-transform:matrix(0.256193,-0.011027,0.010751,0.249769,0,0);}
.m1_c01344{transform:matrix(0.262799,-0.013679,0.012995,0.249662,0,0);-ms-transform:matrix(0.262799,-0.013679,0.012995,0.249662,0,0);-webkit-transform:matrix(0.262799,-0.013679,0.012995,0.249662,0,0);}
.m0_c01344{transform:matrix(0.265106,-0.013799,0.012995,0.249662,0,0);-ms-transform:matrix(0.265106,-0.013799,0.012995,0.249662,0,0);-webkit-transform:matrix(0.265106,-0.013799,0.012995,0.249662,0,0);}
.m5_c01344{transform:matrix(0.277498,-0.011944,0.010751,0.249769,0,0);-ms-transform:matrix(0.277498,-0.011944,0.010751,0.249769,0,0);-webkit-transform:matrix(0.277498,-0.011944,0.010751,0.249769,0,0);}
.m4_c01344{transform:matrix(0.280480,-0.012073,0.010751,0.249769,0,0);-ms-transform:matrix(0.280480,-0.012073,0.010751,0.249769,0,0);-webkit-transform:matrix(0.280480,-0.012073,0.010751,0.249769,0,0);}
.me_c01344{transform:matrix(0.291827,-0.019007,0.016248,0.249471,0,0);-ms-transform:matrix(0.291827,-0.019007,0.016248,0.249471,0,0);-webkit-transform:matrix(0.291827,-0.019007,0.016248,0.249471,0,0);}
.m14_c01344{transform:matrix(0.304540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304540,0.000000,0.000000,0.250000,0,0);}
.m2_c01344{transform:matrix(0.306316,-0.013185,0.010751,0.249769,0,0);-ms-transform:matrix(0.306316,-0.013185,0.010751,0.249769,0,0);-webkit-transform:matrix(0.306316,-0.013185,0.010751,0.249769,0,0);}
.m3_c01344{transform:matrix(0.487913,-0.021001,0.010751,0.249769,0,0);-ms-transform:matrix(0.487913,-0.021001,0.010751,0.249769,0,0);-webkit-transform:matrix(0.487913,-0.021001,0.010751,0.249769,0,0);}
.v0_c01344{vertical-align:0.000000px;}
.ls0_c01344{letter-spacing:0.000000px;}
.sc__c01344{text-shadow:none;}
.sc0_c01344{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__c01344{-webkit-text-stroke:0px transparent;}
.sc0_c01344{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01344{word-spacing:0.000000px;}
.fc0_c01344{color:transparent;}
.fs5_c01344{font-size:60.000000px;}
.fs1_c01344{font-size:71.994600px;}
.fs0_c01344{font-size:72.025376px;}
.fs2_c01344{font-size:77.994150px;}
.fs3_c01344{font-size:78.008930px;}
.fs4_c01344{font-size:89.956294px;}
.y0_c01344{bottom:0.000000px;}
.y15_c01344{bottom:719.134500px;}
.y10_c01344{bottom:922.374000px;}
.y11_c01344{bottom:925.425345px;}
.y12_c01344{bottom:927.136065px;}
.y13_c01344{bottom:931.310812px;}
.y14_c01344{bottom:935.537452px;}
.yf_c01344{bottom:956.410500px;}
.yd_c01344{bottom:1010.871099px;}
.ye_c01344{bottom:1014.626540px;}
.y8_c01344{bottom:1032.759695px;}
.y9_c01344{bottom:1033.720704px;}
.ya_c01344{bottom:1034.931161px;}
.yb_c01344{bottom:1038.368963px;}
.yc_c01344{bottom:1040.625665px;}
.y3_c01344{bottom:1060.075500px;}
.y4_c01344{bottom:1062.471546px;}
.y5_c01344{bottom:1063.708656px;}
.y6_c01344{bottom:1068.417994px;}
.y7_c01344{bottom:1075.121738px;}
.y1_c01344{bottom:1128.648000px;}
.y2_c01344{bottom:1131.559116px;}
.h7_c01344{height:60.000000px;}
.h3_c01344{height:71.994600px;}
.h2_c01344{height:72.025376px;}
.h4_c01344{height:77.994150px;}
.h5_c01344{height:78.008930px;}
.h6_c01344{height:89.956294px;}
.h1_c01344{height:1250.250000px;}
.h0_c01344{height:1250.370000px;}
.w1_c01344{width:912.000000px;}
.w0_c01344{width:912.300000px;}
.x0_c01344{left:0.000000px;}
.xb_c01344{left:87.646500px;}
.x1_c01344{left:88.660500px;}
.x6_c01344{left:99.333239px;}
.x7_c01344{left:132.402522px;}
.xc_c01344{left:143.014542px;}
.x2_c01344{left:144.587517px;}
.xa_c01344{left:166.108349px;}
.x3_c01344{left:173.174508px;}
.xd_c01344{left:249.809025px;}
.x4_c01344{left:282.584489px;}
.x8_c01344{left:292.432163px;}
.xe_c01344{left:326.503329px;}
.xf_c01344{left:347.760000px;}
.x9_c01344{left:370.113149px;}
.x5_c01344{left:438.329588px;}
@media print{
.v0_c01344{vertical-align:0.000000pt;}
.ls0_c01344{letter-spacing:0.000000pt;}
.ws0_c01344{word-spacing:0.000000pt;}
.fs5_c01344{font-size:53.333333pt;}
.fs1_c01344{font-size:63.995200pt;}
.fs0_c01344{font-size:64.022556pt;}
.fs2_c01344{font-size:69.328133pt;}
.fs3_c01344{font-size:69.341272pt;}
.fs4_c01344{font-size:79.961151pt;}
.y0_c01344{bottom:0.000000pt;}
.y15_c01344{bottom:639.230667pt;}
.y10_c01344{bottom:819.888000pt;}
.y11_c01344{bottom:822.600307pt;}
.y12_c01344{bottom:824.120947pt;}
.y13_c01344{bottom:827.831833pt;}
.y14_c01344{bottom:831.588847pt;}
.yf_c01344{bottom:850.142667pt;}
.yd_c01344{bottom:898.552088pt;}
.ye_c01344{bottom:901.890257pt;}
.y8_c01344{bottom:918.008617pt;}
.y9_c01344{bottom:918.862848pt;}
.ya_c01344{bottom:919.938809pt;}
.yb_c01344{bottom:922.994633pt;}
.yc_c01344{bottom:925.000591pt;}
.y3_c01344{bottom:942.289333pt;}
.y4_c01344{bottom:944.419152pt;}
.y5_c01344{bottom:945.518805pt;}
.y6_c01344{bottom:949.704884pt;}
.y7_c01344{bottom:955.663767pt;}
.y1_c01344{bottom:1003.242667pt;}
.y2_c01344{bottom:1005.830325pt;}
.h7_c01344{height:53.333333pt;}
.h3_c01344{height:63.995200pt;}
.h2_c01344{height:64.022556pt;}
.h4_c01344{height:69.328133pt;}
.h5_c01344{height:69.341272pt;}
.h6_c01344{height:79.961151pt;}
.h1_c01344{height:1111.333333pt;}
.h0_c01344{height:1111.440000pt;}
.w1_c01344{width:810.666667pt;}
.w0_c01344{width:810.933333pt;}
.x0_c01344{left:0.000000pt;}
.xb_c01344{left:77.908000pt;}
.x1_c01344{left:78.809333pt;}
.x6_c01344{left:88.296212pt;}
.x7_c01344{left:117.691131pt;}
.xc_c01344{left:127.124037pt;}
.x2_c01344{left:128.522237pt;}
.xa_c01344{left:147.651865pt;}
.x3_c01344{left:153.932896pt;}
.xd_c01344{left:222.052467pt;}
.x4_c01344{left:251.186212pt;}
.x8_c01344{left:259.939700pt;}
.xe_c01344{left:290.225181pt;}
.xf_c01344{left:309.120000pt;}
.x9_c01344{left:328.989465pt;}
.x5_c01344{left:389.626300pt;}
}





/* 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_c01345 {
    display:none;
  }
  .loading-indicator_c01345.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01345 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_c01345 { 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_c01345" -> "#page-container .classname_c01345")
 */
.pf_c01345 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01345 { /* 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_c01345.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01345 { /* 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_c01345 { /* 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_c01345 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01345 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01345 {overflow:visible;}
  }
}
.c_c01345 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01345 { /* 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_c01345:after { /* webkit #35443 */
  content: '';
}
.t_c01345:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01345 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 */
}
.__c01345 { /* 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_c01345 { /* info for Javascript */
  display:none;
}
.l_c01345 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01345 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01345 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01345: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_c01345 {
    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_c01345.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01345.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_c01345 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01345{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01345;src:url('chunks/assets/font_6bbd15de30fdc229d5d5ff82.woff2')format("woff");}.ff1_c01345{font-family:ff1_c01345;line-height:1.000000;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;}
.m4_c01345{transform:matrix(0.000464,-0.013627,0.249855,0.008504,0,0);-ms-transform:matrix(0.000464,-0.013627,0.249855,0.008504,0,0);-webkit-transform:matrix(0.000464,-0.013627,0.249855,0.008504,0,0);}
.m1_c01345{transform:matrix(0.000806,-0.021200,0.249819,0.009503,0,0);-ms-transform:matrix(0.000806,-0.021200,0.249819,0.009503,0,0);-webkit-transform:matrix(0.000806,-0.021200,0.249819,0.009503,0,0);}
.m5_c01345{transform:matrix(0.005777,-0.169742,0.249855,0.008504,0,0);-ms-transform:matrix(0.005777,-0.169742,0.249855,0.008504,0,0);-webkit-transform:matrix(0.005777,-0.169742,0.249855,0.008504,0,0);}
.m2_c01345{transform:matrix(0.006295,-0.165485,0.249819,0.009503,0,0);-ms-transform:matrix(0.006295,-0.165485,0.249819,0.009503,0,0);-webkit-transform:matrix(0.006295,-0.165485,0.249819,0.009503,0,0);}
.m3_c01345{transform:matrix(0.007437,-0.195524,0.249819,0.009503,0,0);-ms-transform:matrix(0.007437,-0.195524,0.249819,0.009503,0,0);-webkit-transform:matrix(0.007437,-0.195524,0.249819,0.009503,0,0);}
.m0_c01345{transform:matrix(0.008647,-0.227336,0.249819,0.009503,0,0);-ms-transform:matrix(0.008647,-0.227336,0.249819,0.009503,0,0);-webkit-transform:matrix(0.008647,-0.227336,0.249819,0.009503,0,0);}
.v0_c01345{vertical-align:0.000000px;}
.ls0_c01345{letter-spacing:0.000000px;}
.sc__c01345{text-shadow:none;}
.sc0_c01345{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__c01345{-webkit-text-stroke:0px transparent;}
.sc0_c01345{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01345{word-spacing:0.000000px;}
.fc0_c01345{color:transparent;}
.fs2_c01345{font-size:41.982293px;}
.fs1_c01345{font-size:47.986678px;}
.fs0_c01345{font-size:53.985013px;}
.y0_c01345{bottom:0.000000px;}
.y6_c01345{bottom:988.206841px;}
.y4_c01345{bottom:988.210440px;}
.y3_c01345{bottom:989.378136px;}
.y1_c01345{bottom:999.748500px;}
.y2_c01345{bottom:1000.084218px;}
.y5_c01345{bottom:1000.350000px;}
.h4_c01345{height:41.982293px;}
.h3_c01345{height:47.986678px;}
.h2_c01345{height:53.985013px;}
.h1_c01345{height:1250.250000px;}
.h0_c01345{height:1250.370000px;}
.w1_c01345{width:912.000000px;}
.w0_c01345{width:912.300000px;}
.x0_c01345{left:0.000000px;}
.x5_c01345{left:502.202130px;}
.x4_c01345{left:512.730000px;}
.x3_c01345{left:533.791695px;}
.x2_c01345{left:541.353516px;}
.x1_c01345{left:555.387000px;}
@media print{
.v0_c01345{vertical-align:0.000000pt;}
.ls0_c01345{letter-spacing:0.000000pt;}
.ws0_c01345{word-spacing:0.000000pt;}
.fs2_c01345{font-size:37.317594pt;}
.fs1_c01345{font-size:42.654825pt;}
.fs0_c01345{font-size:47.986678pt;}
.y0_c01345{bottom:0.000000pt;}
.y6_c01345{bottom:878.406081pt;}
.y4_c01345{bottom:878.409280pt;}
.y3_c01345{bottom:879.447232pt;}
.y1_c01345{bottom:888.665333pt;}
.y2_c01345{bottom:888.963749pt;}
.y5_c01345{bottom:889.200000pt;}
.h4_c01345{height:37.317594pt;}
.h3_c01345{height:42.654825pt;}
.h2_c01345{height:47.986678pt;}
.h1_c01345{height:1111.333333pt;}
.h0_c01345{height:1111.440000pt;}
.w1_c01345{width:810.666667pt;}
.w0_c01345{width:810.933333pt;}
.x0_c01345{left:0.000000pt;}
.x5_c01345{left:446.401893pt;}
.x4_c01345{left:455.760000pt;}
.x3_c01345{left:474.481507pt;}
.x2_c01345{left:481.203125pt;}
.x1_c01345{left:493.677333pt;}
}





/* 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_c01346 {
    display:none;
  }
  .loading-indicator_c01346.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01346 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_c01346 { 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_c01346" -> "#page-container .classname_c01346")
 */
.pf_c01346 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01346 { /* 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_c01346.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01346 { /* 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_c01346 { /* 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_c01346 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01346 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01346 {overflow:visible;}
  }
}
.c_c01346 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01346 { /* 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_c01346:after { /* webkit #35443 */
  content: '';
}
.t_c01346:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01346 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 */
}
.__c01346 { /* 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_c01346 { /* info for Javascript */
  display:none;
}
.l_c01346 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01346 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01346 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01346: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_c01346 {
    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_c01346.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01346.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_c01346 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01346{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01346;src:url('chunks/assets/font_fabf4b590f7fb32aea93ffb2.woff2')format("woff");}.ff1_c01346{font-family:ff1_c01346;line-height:1.000000;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;}
.me_c01346{transform:matrix(0.171661,0.004120,-0.005998,0.249928,0,0);-ms-transform:matrix(0.171661,0.004120,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.171661,0.004120,-0.005998,0.249928,0,0);}
.m0_c01346{transform:matrix(0.171876,0.007742,-0.011250,0.249747,0,0);-ms-transform:matrix(0.171876,0.007742,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.171876,0.007742,-0.011250,0.249747,0,0);}
.mc_c01346{transform:matrix(0.194519,0.004668,-0.005998,0.249928,0,0);-ms-transform:matrix(0.194519,0.004668,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.194519,0.004668,-0.005998,0.249928,0,0);}
.m10_c01346{transform:matrix(0.202802,0.004867,-0.005998,0.249928,0,0);-ms-transform:matrix(0.202802,0.004867,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.202802,0.004867,-0.005998,0.249928,0,0);}
.m37_c01346{transform:matrix(0.205746,0.004938,-0.005998,0.249928,0,0);-ms-transform:matrix(0.205746,0.004938,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.205746,0.004938,-0.005998,0.249928,0,0);}
.m6d_c01346{transform:matrix(0.207905,0.004990,-0.005998,0.249928,0,0);-ms-transform:matrix(0.207905,0.004990,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.207905,0.004990,-0.005998,0.249928,0,0);}
.m3c_c01346{transform:matrix(0.208005,0.004992,-0.005998,0.249928,0,0);-ms-transform:matrix(0.208005,0.004992,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.208005,0.004992,-0.005998,0.249928,0,0);}
.m3b_c01346{transform:matrix(0.208945,0.005015,-0.005998,0.249928,0,0);-ms-transform:matrix(0.208945,0.005015,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.208945,0.005015,-0.005998,0.249928,0,0);}
.m35_c01346{transform:matrix(0.209485,0.005028,-0.005998,0.249928,0,0);-ms-transform:matrix(0.209485,0.005028,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.209485,0.005028,-0.005998,0.249928,0,0);}
.m38_c01346{transform:matrix(0.210769,0.005058,-0.005998,0.249928,0,0);-ms-transform:matrix(0.210769,0.005058,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.210769,0.005058,-0.005998,0.249928,0,0);}
.m4c_c01346{transform:matrix(0.211274,0.005071,-0.005998,0.249928,0,0);-ms-transform:matrix(0.211274,0.005071,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.211274,0.005071,-0.005998,0.249928,0,0);}
.m8c_c01346{transform:matrix(0.212439,0.005099,-0.005998,0.249928,0,0);-ms-transform:matrix(0.212439,0.005099,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.212439,0.005099,-0.005998,0.249928,0,0);}
.md_c01346{transform:matrix(0.214253,0.005142,-0.005998,0.249928,0,0);-ms-transform:matrix(0.214253,0.005142,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.214253,0.005142,-0.005998,0.249928,0,0);}
.m36_c01346{transform:matrix(0.215023,0.005161,-0.005998,0.249928,0,0);-ms-transform:matrix(0.215023,0.005161,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.215023,0.005161,-0.005998,0.249928,0,0);}
.m22_c01346{transform:matrix(0.216148,0.005188,-0.005998,0.249928,0,0);-ms-transform:matrix(0.216148,0.005188,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.216148,0.005188,-0.005998,0.249928,0,0);}
.m12_c01346{transform:matrix(0.218397,0.005242,-0.005998,0.249928,0,0);-ms-transform:matrix(0.218397,0.005242,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.218397,0.005242,-0.005998,0.249928,0,0);}
.m20_c01346{transform:matrix(0.218402,0.005242,-0.005998,0.249928,0,0);-ms-transform:matrix(0.218402,0.005242,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.218402,0.005242,-0.005998,0.249928,0,0);}
.m77_c01346{transform:matrix(0.221746,0.005322,-0.005998,0.249928,0,0);-ms-transform:matrix(0.221746,0.005322,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.221746,0.005322,-0.005998,0.249928,0,0);}
.m3e_c01346{transform:matrix(0.222436,0.005338,-0.005998,0.249928,0,0);-ms-transform:matrix(0.222436,0.005338,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.222436,0.005338,-0.005998,0.249928,0,0);}
.m74_c01346{transform:matrix(0.223401,0.005362,-0.005998,0.249928,0,0);-ms-transform:matrix(0.223401,0.005362,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.223401,0.005362,-0.005998,0.249928,0,0);}
.m92_c01346{transform:matrix(0.224685,0.005392,-0.005998,0.249928,0,0);-ms-transform:matrix(0.224685,0.005392,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.224685,0.005392,-0.005998,0.249928,0,0);}
.m7b_c01346{transform:matrix(0.224965,0.005399,-0.005998,0.249928,0,0);-ms-transform:matrix(0.224965,0.005399,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.224965,0.005399,-0.005998,0.249928,0,0);}
.m31_c01346{transform:matrix(0.226000,0.005424,-0.005998,0.249928,0,0);-ms-transform:matrix(0.226000,0.005424,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.226000,0.005424,-0.005998,0.249928,0,0);}
.m91_c01346{transform:matrix(0.226680,0.005440,-0.005998,0.249928,0,0);-ms-transform:matrix(0.226680,0.005440,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.226680,0.005440,-0.005998,0.249928,0,0);}
.m67_c01346{transform:matrix(0.226900,0.005446,-0.005998,0.249928,0,0);-ms-transform:matrix(0.226900,0.005446,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.226900,0.005446,-0.005998,0.249928,0,0);}
.m89_c01346{transform:matrix(0.226940,0.005447,-0.005998,0.249928,0,0);-ms-transform:matrix(0.226940,0.005447,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.226940,0.005447,-0.005998,0.249928,0,0);}
.mf_c01346{transform:matrix(0.227639,0.005463,-0.005998,0.249928,0,0);-ms-transform:matrix(0.227639,0.005463,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.227639,0.005463,-0.005998,0.249928,0,0);}
.mb_c01346{transform:matrix(0.227644,0.005463,-0.005998,0.249928,0,0);-ms-transform:matrix(0.227644,0.005463,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.227644,0.005463,-0.005998,0.249928,0,0);}
.m70_c01346{transform:matrix(0.228024,0.005473,-0.005998,0.249928,0,0);-ms-transform:matrix(0.228024,0.005473,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.228024,0.005473,-0.005998,0.249928,0,0);}
.m23_c01346{transform:matrix(0.228564,0.005486,-0.005998,0.249928,0,0);-ms-transform:matrix(0.228564,0.005486,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.228564,0.005486,-0.005998,0.249928,0,0);}
.m14_c01346{transform:matrix(0.228749,0.005490,-0.005998,0.249928,0,0);-ms-transform:matrix(0.228749,0.005490,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.228749,0.005490,-0.005998,0.249928,0,0);}
.m39_c01346{transform:matrix(0.228934,0.005494,-0.005998,0.249928,0,0);-ms-transform:matrix(0.228934,0.005494,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.228934,0.005494,-0.005998,0.249928,0,0);}
.m90_c01346{transform:matrix(0.229154,0.005500,-0.005998,0.249928,0,0);-ms-transform:matrix(0.229154,0.005500,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.229154,0.005500,-0.005998,0.249928,0,0);}
.m28_c01346{transform:matrix(0.230484,0.005532,-0.005998,0.249928,0,0);-ms-transform:matrix(0.230484,0.005532,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.230484,0.005532,-0.005998,0.249928,0,0);}
.m9a_c01346{transform:matrix(0.230829,0.005540,-0.005998,0.249928,0,0);-ms-transform:matrix(0.230829,0.005540,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.230829,0.005540,-0.005998,0.249928,0,0);}
.m49_c01346{transform:matrix(0.231558,0.005557,-0.005998,0.249928,0,0);-ms-transform:matrix(0.231558,0.005557,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.231558,0.005557,-0.005998,0.249928,0,0);}
.m41_c01346{transform:matrix(0.232918,0.005590,-0.005998,0.249928,0,0);-ms-transform:matrix(0.232918,0.005590,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.232918,0.005590,-0.005998,0.249928,0,0);}
.m88_c01346{transform:matrix(0.233338,0.005600,-0.005998,0.249928,0,0);-ms-transform:matrix(0.233338,0.005600,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.233338,0.005600,-0.005998,0.249928,0,0);}
.m11_c01346{transform:matrix(0.234442,0.005627,-0.005998,0.249928,0,0);-ms-transform:matrix(0.234442,0.005627,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.234442,0.005627,-0.005998,0.249928,0,0);}
.m34_c01346{transform:matrix(0.234637,0.005631,-0.005998,0.249928,0,0);-ms-transform:matrix(0.234637,0.005631,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.234637,0.005631,-0.005998,0.249928,0,0);}
.m7a_c01346{transform:matrix(0.234922,0.005638,-0.005998,0.249928,0,0);-ms-transform:matrix(0.234922,0.005638,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.234922,0.005638,-0.005998,0.249928,0,0);}
.m47_c01346{transform:matrix(0.235687,0.005656,-0.005998,0.249928,0,0);-ms-transform:matrix(0.235687,0.005656,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.235687,0.005656,-0.005998,0.249928,0,0);}
.m17_c01346{transform:matrix(0.235782,0.005659,-0.005998,0.249928,0,0);-ms-transform:matrix(0.235782,0.005659,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.235782,0.005659,-0.005998,0.249928,0,0);}
.m2f_c01346{transform:matrix(0.237527,0.005701,-0.005998,0.249928,0,0);-ms-transform:matrix(0.237527,0.005701,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.237527,0.005701,-0.005998,0.249928,0,0);}
.m1b_c01346{transform:matrix(0.237906,0.005710,-0.005998,0.249928,0,0);-ms-transform:matrix(0.237906,0.005710,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.237906,0.005710,-0.005998,0.249928,0,0);}
.m2e_c01346{transform:matrix(0.237956,0.005711,-0.005998,0.249928,0,0);-ms-transform:matrix(0.237956,0.005711,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.237956,0.005711,-0.005998,0.249928,0,0);}
.m51_c01346{transform:matrix(0.238286,0.005719,-0.005998,0.249928,0,0);-ms-transform:matrix(0.238286,0.005719,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.238286,0.005719,-0.005998,0.249928,0,0);}
.m26_c01346{transform:matrix(0.239001,0.005736,-0.005998,0.249928,0,0);-ms-transform:matrix(0.239001,0.005736,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.239001,0.005736,-0.005998,0.249928,0,0);}
.m4f_c01346{transform:matrix(0.239226,0.005741,-0.005998,0.249928,0,0);-ms-transform:matrix(0.239226,0.005741,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.239226,0.005741,-0.005998,0.249928,0,0);}
.m44_c01346{transform:matrix(0.239241,0.005742,-0.005998,0.249928,0,0);-ms-transform:matrix(0.239241,0.005742,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.239241,0.005742,-0.005998,0.249928,0,0);}
.m3d_c01346{transform:matrix(0.239456,0.005747,-0.005998,0.249928,0,0);-ms-transform:matrix(0.239456,0.005747,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.239456,0.005747,-0.005998,0.249928,0,0);}
.m3a_c01346{transform:matrix(0.239861,0.005757,-0.005998,0.249928,0,0);-ms-transform:matrix(0.239861,0.005757,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.239861,0.005757,-0.005998,0.249928,0,0);}
.m78_c01346{transform:matrix(0.240076,0.005762,-0.005998,0.249928,0,0);-ms-transform:matrix(0.240076,0.005762,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.240076,0.005762,-0.005998,0.249928,0,0);}
.m13_c01346{transform:matrix(0.240851,0.005780,-0.005998,0.249928,0,0);-ms-transform:matrix(0.240851,0.005780,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.240851,0.005780,-0.005998,0.249928,0,0);}
.m82_c01346{transform:matrix(0.241231,0.005790,-0.005998,0.249928,0,0);-ms-transform:matrix(0.241231,0.005790,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.241231,0.005790,-0.005998,0.249928,0,0);}
.m33_c01346{transform:matrix(0.242475,0.005819,-0.005998,0.249928,0,0);-ms-transform:matrix(0.242475,0.005819,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.242475,0.005819,-0.005998,0.249928,0,0);}
.m96_c01346{transform:matrix(0.243270,0.005838,-0.005998,0.249928,0,0);-ms-transform:matrix(0.243270,0.005838,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.243270,0.005838,-0.005998,0.249928,0,0);}
.m1f_c01346{transform:matrix(0.243740,0.005850,-0.005998,0.249928,0,0);-ms-transform:matrix(0.243740,0.005850,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.243740,0.005850,-0.005998,0.249928,0,0);}
.m6b_c01346{transform:matrix(0.245604,0.005895,-0.005998,0.249928,0,0);-ms-transform:matrix(0.245604,0.005895,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.245604,0.005895,-0.005998,0.249928,0,0);}
.m93_c01346{transform:matrix(0.245644,0.005895,-0.005998,0.249928,0,0);-ms-transform:matrix(0.245644,0.005895,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.245644,0.005895,-0.005998,0.249928,0,0);}
.m75_c01346{transform:matrix(0.245654,0.005896,-0.005998,0.249928,0,0);-ms-transform:matrix(0.245654,0.005896,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.245654,0.005896,-0.005998,0.249928,0,0);}
.m72_c01346{transform:matrix(0.246014,0.005904,-0.005998,0.249928,0,0);-ms-transform:matrix(0.246014,0.005904,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.246014,0.005904,-0.005998,0.249928,0,0);}
.m2c_c01346{transform:matrix(0.246124,0.005907,-0.005998,0.249928,0,0);-ms-transform:matrix(0.246124,0.005907,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.246124,0.005907,-0.005998,0.249928,0,0);}
.m68_c01346{transform:matrix(0.246494,0.005916,-0.005998,0.249928,0,0);-ms-transform:matrix(0.246494,0.005916,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.246494,0.005916,-0.005998,0.249928,0,0);}
.m7e_c01346{transform:matrix(0.246889,0.005925,-0.005998,0.249928,0,0);-ms-transform:matrix(0.246889,0.005925,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.246889,0.005925,-0.005998,0.249928,0,0);}
.m52_c01346{transform:matrix(0.246909,0.005926,-0.005998,0.249928,0,0);-ms-transform:matrix(0.246909,0.005926,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.246909,0.005926,-0.005998,0.249928,0,0);}
.m21_c01346{transform:matrix(0.247844,0.005948,-0.005998,0.249928,0,0);-ms-transform:matrix(0.247844,0.005948,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.247844,0.005948,-0.005998,0.249928,0,0);}
.m24_c01346{transform:matrix(0.247919,0.005950,-0.005998,0.249928,0,0);-ms-transform:matrix(0.247919,0.005950,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.247919,0.005950,-0.005998,0.249928,0,0);}
.m7f_c01346{transform:matrix(0.249143,0.005979,-0.005998,0.249928,0,0);-ms-transform:matrix(0.249143,0.005979,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.249143,0.005979,-0.005998,0.249928,0,0);}
.m18_c01346{transform:matrix(0.249593,0.005990,-0.005998,0.249928,0,0);-ms-transform:matrix(0.249593,0.005990,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.249593,0.005990,-0.005998,0.249928,0,0);}
.m8f_c01346{transform:matrix(0.250083,0.006002,-0.005998,0.249928,0,0);-ms-transform:matrix(0.250083,0.006002,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.250083,0.006002,-0.005998,0.249928,0,0);}
.m73_c01346{transform:matrix(0.251143,0.006027,-0.005998,0.249928,0,0);-ms-transform:matrix(0.251143,0.006027,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.251143,0.006027,-0.005998,0.249928,0,0);}
.m86_c01346{transform:matrix(0.252362,0.006057,-0.005998,0.249928,0,0);-ms-transform:matrix(0.252362,0.006057,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.252362,0.006057,-0.005998,0.249928,0,0);}
.m5e_c01346{transform:matrix(0.253462,0.006083,-0.005998,0.249928,0,0);-ms-transform:matrix(0.253462,0.006083,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.253462,0.006083,-0.005998,0.249928,0,0);}
.m76_c01346{transform:matrix(0.253992,0.006096,-0.005998,0.249928,0,0);-ms-transform:matrix(0.253992,0.006096,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.253992,0.006096,-0.005998,0.249928,0,0);}
.m5c_c01346{transform:matrix(0.254552,0.006109,-0.005998,0.249928,0,0);-ms-transform:matrix(0.254552,0.006109,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.254552,0.006109,-0.005998,0.249928,0,0);}
.m60_c01346{transform:matrix(0.254852,0.006116,-0.005998,0.249928,0,0);-ms-transform:matrix(0.254852,0.006116,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.254852,0.006116,-0.005998,0.249928,0,0);}
.m6a_c01346{transform:matrix(0.254927,0.006118,-0.005998,0.249928,0,0);-ms-transform:matrix(0.254927,0.006118,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.254927,0.006118,-0.005998,0.249928,0,0);}
.m15_c01346{transform:matrix(0.255506,0.006132,-0.005998,0.249928,0,0);-ms-transform:matrix(0.255506,0.006132,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.255506,0.006132,-0.005998,0.249928,0,0);}
.m79_c01346{transform:matrix(0.255701,0.006137,-0.005998,0.249928,0,0);-ms-transform:matrix(0.255701,0.006137,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.255701,0.006137,-0.005998,0.249928,0,0);}
.m1e_c01346{transform:matrix(0.256956,0.006167,-0.005998,0.249928,0,0);-ms-transform:matrix(0.256956,0.006167,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.256956,0.006167,-0.005998,0.249928,0,0);}
.m25_c01346{transform:matrix(0.257876,0.006189,-0.005998,0.249928,0,0);-ms-transform:matrix(0.257876,0.006189,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.257876,0.006189,-0.005998,0.249928,0,0);}
.m32_c01346{transform:matrix(0.258256,0.006198,-0.005998,0.249928,0,0);-ms-transform:matrix(0.258256,0.006198,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.258256,0.006198,-0.005998,0.249928,0,0);}
.m1d_c01346{transform:matrix(0.258681,0.006208,-0.005998,0.249928,0,0);-ms-transform:matrix(0.258681,0.006208,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.258681,0.006208,-0.005998,0.249928,0,0);}
.m4a_c01346{transform:matrix(0.259880,0.006237,-0.005998,0.249928,0,0);-ms-transform:matrix(0.259880,0.006237,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.259880,0.006237,-0.005998,0.249928,0,0);}
.m2b_c01346{transform:matrix(0.260565,0.006254,-0.005998,0.249928,0,0);-ms-transform:matrix(0.260565,0.006254,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.260565,0.006254,-0.005998,0.249928,0,0);}
.m59_c01346{transform:matrix(0.261245,0.006270,-0.005998,0.249928,0,0);-ms-transform:matrix(0.261245,0.006270,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.261245,0.006270,-0.005998,0.249928,0,0);}
.m27_c01346{transform:matrix(0.262045,0.006289,-0.005998,0.249928,0,0);-ms-transform:matrix(0.262045,0.006289,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.262045,0.006289,-0.005998,0.249928,0,0);}
.m8a_c01346{transform:matrix(0.262489,0.006300,-0.005998,0.249928,0,0);-ms-transform:matrix(0.262489,0.006300,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.262489,0.006300,-0.005998,0.249928,0,0);}
.m6e_c01346{transform:matrix(0.262774,0.006307,-0.005998,0.249928,0,0);-ms-transform:matrix(0.262774,0.006307,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.262774,0.006307,-0.005998,0.249928,0,0);}
.m30_c01346{transform:matrix(0.263264,0.006318,-0.005998,0.249928,0,0);-ms-transform:matrix(0.263264,0.006318,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.263264,0.006318,-0.005998,0.249928,0,0);}
.m1c_c01346{transform:matrix(0.264224,0.006341,-0.005998,0.249928,0,0);-ms-transform:matrix(0.264224,0.006341,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.264224,0.006341,-0.005998,0.249928,0,0);}
.m2a_c01346{transform:matrix(0.264264,0.006342,-0.005998,0.249928,0,0);-ms-transform:matrix(0.264264,0.006342,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.264264,0.006342,-0.005998,0.249928,0,0);}
.m29_c01346{transform:matrix(0.264884,0.006357,-0.005998,0.249928,0,0);-ms-transform:matrix(0.264884,0.006357,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.264884,0.006357,-0.005998,0.249928,0,0);}
.m69_c01346{transform:matrix(0.265019,0.006360,-0.005998,0.249928,0,0);-ms-transform:matrix(0.265019,0.006360,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.265019,0.006360,-0.005998,0.249928,0,0);}
.m83_c01346{transform:matrix(0.265584,0.006374,-0.005998,0.249928,0,0);-ms-transform:matrix(0.265584,0.006374,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.265584,0.006374,-0.005998,0.249928,0,0);}
.m45_c01346{transform:matrix(0.265723,0.006377,-0.005998,0.249928,0,0);-ms-transform:matrix(0.265723,0.006377,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.265723,0.006377,-0.005998,0.249928,0,0);}
.m16_c01346{transform:matrix(0.266443,0.006395,-0.005998,0.249928,0,0);-ms-transform:matrix(0.266443,0.006395,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.266443,0.006395,-0.005998,0.249928,0,0);}
.m95_c01346{transform:matrix(0.266663,0.006400,-0.005998,0.249928,0,0);-ms-transform:matrix(0.266663,0.006400,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.266663,0.006400,-0.005998,0.249928,0,0);}
.m80_c01346{transform:matrix(0.267333,0.006416,-0.005998,0.249928,0,0);-ms-transform:matrix(0.267333,0.006416,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.267333,0.006416,-0.005998,0.249928,0,0);}
.m19_c01346{transform:matrix(0.267793,0.006427,-0.005998,0.249928,0,0);-ms-transform:matrix(0.267793,0.006427,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.267793,0.006427,-0.005998,0.249928,0,0);}
.m61_c01346{transform:matrix(0.267933,0.006430,-0.005998,0.249928,0,0);-ms-transform:matrix(0.267933,0.006430,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.267933,0.006430,-0.005998,0.249928,0,0);}
.m64_c01346{transform:matrix(0.268508,0.006444,-0.005998,0.249928,0,0);-ms-transform:matrix(0.268508,0.006444,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.268508,0.006444,-0.005998,0.249928,0,0);}
.m6f_c01346{transform:matrix(0.268858,0.006453,-0.005998,0.249928,0,0);-ms-transform:matrix(0.268858,0.006453,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.268858,0.006453,-0.005998,0.249928,0,0);}
.m48_c01346{transform:matrix(0.269317,0.006464,-0.005998,0.249928,0,0);-ms-transform:matrix(0.269317,0.006464,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.269317,0.006464,-0.005998,0.249928,0,0);}
.m50_c01346{transform:matrix(0.269397,0.006466,-0.005998,0.249928,0,0);-ms-transform:matrix(0.269397,0.006466,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.269397,0.006466,-0.005998,0.249928,0,0);}
.m7d_c01346{transform:matrix(0.269722,0.006473,-0.005998,0.249928,0,0);-ms-transform:matrix(0.269722,0.006473,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.269722,0.006473,-0.005998,0.249928,0,0);}
.m9b_c01346{transform:matrix(0.269727,0.006473,-0.005998,0.249928,0,0);-ms-transform:matrix(0.269727,0.006473,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.269727,0.006473,-0.005998,0.249928,0,0);}
.m71_c01346{transform:matrix(0.269762,0.006474,-0.005998,0.249928,0,0);-ms-transform:matrix(0.269762,0.006474,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.269762,0.006474,-0.005998,0.249928,0,0);}
.m85_c01346{transform:matrix(0.270002,0.006480,-0.005998,0.249928,0,0);-ms-transform:matrix(0.270002,0.006480,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.270002,0.006480,-0.005998,0.249928,0,0);}
.m3f_c01346{transform:matrix(0.271022,0.006505,-0.005998,0.249928,0,0);-ms-transform:matrix(0.271022,0.006505,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.271022,0.006505,-0.005998,0.249928,0,0);}
.m40_c01346{transform:matrix(0.271522,0.006517,-0.005998,0.249928,0,0);-ms-transform:matrix(0.271522,0.006517,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.271522,0.006517,-0.005998,0.249928,0,0);}
.m42_c01346{transform:matrix(0.271727,0.006521,-0.005998,0.249928,0,0);-ms-transform:matrix(0.271727,0.006521,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.271727,0.006521,-0.005998,0.249928,0,0);}
.m7c_c01346{transform:matrix(0.273011,0.006552,-0.005998,0.249928,0,0);-ms-transform:matrix(0.273011,0.006552,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.273011,0.006552,-0.005998,0.249928,0,0);}
.m94_c01346{transform:matrix(0.273341,0.006560,-0.005998,0.249928,0,0);-ms-transform:matrix(0.273341,0.006560,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.273341,0.006560,-0.005998,0.249928,0,0);}
.m97_c01346{transform:matrix(0.273881,0.006573,-0.005998,0.249928,0,0);-ms-transform:matrix(0.273881,0.006573,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.273881,0.006573,-0.005998,0.249928,0,0);}
.m1a_c01346{transform:matrix(0.274476,0.006587,-0.005998,0.249928,0,0);-ms-transform:matrix(0.274476,0.006587,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.274476,0.006587,-0.005998,0.249928,0,0);}
.m81_c01346{transform:matrix(0.274511,0.006588,-0.005998,0.249928,0,0);-ms-transform:matrix(0.274511,0.006588,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.274511,0.006588,-0.005998,0.249928,0,0);}
.m62_c01346{transform:matrix(0.274636,0.006591,-0.005998,0.249928,0,0);-ms-transform:matrix(0.274636,0.006591,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.274636,0.006591,-0.005998,0.249928,0,0);}
.m84_c01346{transform:matrix(0.277140,0.006651,-0.005998,0.249928,0,0);-ms-transform:matrix(0.277140,0.006651,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.277140,0.006651,-0.005998,0.249928,0,0);}
.m2_c01346{transform:matrix(0.277449,0.012498,-0.011250,0.249747,0,0);-ms-transform:matrix(0.277449,0.012498,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.277449,0.012498,-0.011250,0.249747,0,0);}
.m87_c01346{transform:matrix(0.277500,0.006660,-0.005998,0.249928,0,0);-ms-transform:matrix(0.277500,0.006660,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.277500,0.006660,-0.005998,0.249928,0,0);}
.m2d_c01346{transform:matrix(0.277720,0.006665,-0.005998,0.249928,0,0);-ms-transform:matrix(0.277720,0.006665,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.277720,0.006665,-0.005998,0.249928,0,0);}
.m6c_c01346{transform:matrix(0.277845,0.006668,-0.005998,0.249928,0,0);-ms-transform:matrix(0.277845,0.006668,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.277845,0.006668,-0.005998,0.249928,0,0);}
.m4b_c01346{transform:matrix(0.278020,0.006672,-0.005998,0.249928,0,0);-ms-transform:matrix(0.278020,0.006672,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.278020,0.006672,-0.005998,0.249928,0,0);}
.m98_c01346{transform:matrix(0.278335,0.006680,-0.005998,0.249928,0,0);-ms-transform:matrix(0.278335,0.006680,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.278335,0.006680,-0.005998,0.249928,0,0);}
.m43_c01346{transform:matrix(0.278660,0.006688,-0.005998,0.249928,0,0);-ms-transform:matrix(0.278660,0.006688,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.278660,0.006688,-0.005998,0.249928,0,0);}
.m99_c01346{transform:matrix(0.279265,0.006702,-0.005998,0.249928,0,0);-ms-transform:matrix(0.279265,0.006702,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.279265,0.006702,-0.005998,0.249928,0,0);}
.m46_c01346{transform:matrix(0.279325,0.006704,-0.005998,0.249928,0,0);-ms-transform:matrix(0.279325,0.006704,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.279325,0.006704,-0.005998,0.249928,0,0);}
.m8e_c01346{transform:matrix(0.280054,0.006721,-0.005998,0.249928,0,0);-ms-transform:matrix(0.280054,0.006721,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.280054,0.006721,-0.005998,0.249928,0,0);}
.m8b_c01346{transform:matrix(0.282069,0.006770,-0.005998,0.249928,0,0);-ms-transform:matrix(0.282069,0.006770,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.282069,0.006770,-0.005998,0.249928,0,0);}
.m1_c01346{transform:matrix(0.282638,0.012731,-0.011250,0.249747,0,0);-ms-transform:matrix(0.282638,0.012731,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.282638,0.012731,-0.011250,0.249747,0,0);}
.m55_c01346{transform:matrix(0.284448,0.006827,-0.005998,0.249928,0,0);-ms-transform:matrix(0.284448,0.006827,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.284448,0.006827,-0.005998,0.249928,0,0);}
.m58_c01346{transform:matrix(0.286882,0.006885,-0.005998,0.249928,0,0);-ms-transform:matrix(0.286882,0.006885,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.286882,0.006885,-0.005998,0.249928,0,0);}
.m4e_c01346{transform:matrix(0.288067,0.006914,-0.005998,0.249928,0,0);-ms-transform:matrix(0.288067,0.006914,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.288067,0.006914,-0.005998,0.249928,0,0);}
.m5b_c01346{transform:matrix(0.288452,0.006923,-0.005998,0.249928,0,0);-ms-transform:matrix(0.288452,0.006923,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.288452,0.006923,-0.005998,0.249928,0,0);}
.m5d_c01346{transform:matrix(0.289347,0.006944,-0.005998,0.249928,0,0);-ms-transform:matrix(0.289347,0.006944,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.289347,0.006944,-0.005998,0.249928,0,0);}
.m5a_c01346{transform:matrix(0.291021,0.006985,-0.005998,0.249928,0,0);-ms-transform:matrix(0.291021,0.006985,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.291021,0.006985,-0.005998,0.249928,0,0);}
.m54_c01346{transform:matrix(0.291981,0.007008,-0.005998,0.249928,0,0);-ms-transform:matrix(0.291981,0.007008,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.291981,0.007008,-0.005998,0.249928,0,0);}
.m63_c01346{transform:matrix(0.299724,0.007193,-0.005998,0.249928,0,0);-ms-transform:matrix(0.299724,0.007193,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.299724,0.007193,-0.005998,0.249928,0,0);}
.m66_c01346{transform:matrix(0.301288,0.007231,-0.005998,0.249928,0,0);-ms-transform:matrix(0.301288,0.007231,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.301288,0.007231,-0.005998,0.249928,0,0);}
.m65_c01346{transform:matrix(0.302188,0.007253,-0.005998,0.249928,0,0);-ms-transform:matrix(0.302188,0.007253,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.302188,0.007253,-0.005998,0.249928,0,0);}
.m5f_c01346{transform:matrix(0.302858,0.007269,-0.005998,0.249928,0,0);-ms-transform:matrix(0.302858,0.007269,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.302858,0.007269,-0.005998,0.249928,0,0);}
.m53_c01346{transform:matrix(0.303703,0.007289,-0.005998,0.249928,0,0);-ms-transform:matrix(0.303703,0.007289,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.303703,0.007289,-0.005998,0.249928,0,0);}
.m3_c01346{transform:matrix(0.316425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316425,0.000000,0.000000,0.250000,0,0);}
.m57_c01346{transform:matrix(0.318113,0.007635,-0.005998,0.249928,0,0);-ms-transform:matrix(0.318113,0.007635,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.318113,0.007635,-0.005998,0.249928,0,0);}
.m8d_c01346{transform:matrix(0.342326,0.008216,-0.005998,0.249928,0,0);-ms-transform:matrix(0.342326,0.008216,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.342326,0.008216,-0.005998,0.249928,0,0);}
.m4d_c01346{transform:matrix(0.375132,0.009003,-0.005998,0.249928,0,0);-ms-transform:matrix(0.375132,0.009003,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.375132,0.009003,-0.005998,0.249928,0,0);}
.m9_c01346{transform:matrix(0.378485,0.008705,-0.005748,0.249934,0,0);-ms-transform:matrix(0.378485,0.008705,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.378485,0.008705,-0.005748,0.249934,0,0);}
.ma_c01346{transform:matrix(0.395875,0.009105,-0.005748,0.249934,0,0);-ms-transform:matrix(0.395875,0.009105,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.395875,0.009105,-0.005748,0.249934,0,0);}
.m56_c01346{transform:matrix(0.427052,0.010249,-0.005998,0.249928,0,0);-ms-transform:matrix(0.427052,0.010249,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.427052,0.010249,-0.005998,0.249928,0,0);}
.m6_c01346{transform:matrix(0.626254,0.014404,-0.005748,0.249934,0,0);-ms-transform:matrix(0.626254,0.014404,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.626254,0.014404,-0.005748,0.249934,0,0);}
.m7_c01346{transform:matrix(0.632863,0.014556,-0.005748,0.249934,0,0);-ms-transform:matrix(0.632863,0.014556,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.632863,0.014556,-0.005748,0.249934,0,0);}
.m8_c01346{transform:matrix(1.185771,0.027273,-0.005748,0.249934,0,0);-ms-transform:matrix(1.185771,0.027273,-0.005748,0.249934,0,0);-webkit-transform:matrix(1.185771,0.027273,-0.005748,0.249934,0,0);}
.m4_c01346{transform:matrix(2.392902,0.055037,-0.005748,0.249934,0,0);-ms-transform:matrix(2.392902,0.055037,-0.005748,0.249934,0,0);-webkit-transform:matrix(2.392902,0.055037,-0.005748,0.249934,0,0);}
.m5_c01346{transform:matrix(4.635204,0.106610,-0.005748,0.249934,0,0);-ms-transform:matrix(4.635204,0.106610,-0.005748,0.249934,0,0);-webkit-transform:matrix(4.635204,0.106610,-0.005748,0.249934,0,0);}
.v0_c01346{vertical-align:0.000000px;}
.ls0_c01346{letter-spacing:0.000000px;}
.sc__c01346{text-shadow:none;}
.sc0_c01346{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__c01346{-webkit-text-stroke:0px transparent;}
.sc0_c01346{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01346{word-spacing:0.000000px;}
.fc0_c01346{color:transparent;}
.fs1_c01346{font-size:18.000000px;}
.fs2_c01346{font-size:18.004760px;}
.fs6_c01346{font-size:66.019005px;}
.fs0_c01346{font-size:72.000936px;}
.fs4_c01346{font-size:72.020733px;}
.fs5_c01346{font-size:78.022461px;}
.fs3_c01346{font-size:84.024189px;}
.y0_c01346{bottom:0.000000px;}
.y9f_c01346{bottom:580.456560px;}
.y9e_c01346{bottom:581.227332px;}
.y9d_c01346{bottom:583.997556px;}
.y9c_c01346{bottom:606.369276px;}
.y9b_c01346{bottom:608.223204px;}
.y9a_c01346{bottom:609.330096px;}
.y99_c01346{bottom:611.201820px;}
.y98_c01346{bottom:613.255656px;}
.y97_c01346{bottom:614.394888px;}
.y96_c01346{bottom:615.119568px;}
.y95_c01346{bottom:615.778764px;}
.y94_c01346{bottom:616.701816px;}
.y93_c01346{bottom:617.167176px;}
.y92_c01346{bottom:618.835416px;}
.y91_c01346{bottom:638.309496px;}
.y90_c01346{bottom:639.091956px;}
.y8f_c01346{bottom:642.037080px;}
.y8e_c01346{bottom:643.585980px;}
.y8d_c01346{bottom:644.381400px;}
.y8c_c01346{bottom:645.412044px;}
.y8b_c01346{bottom:648.070572px;}
.y8a_c01346{bottom:649.392744px;}
.y89_c01346{bottom:651.247500px;}
.y88_c01346{bottom:678.631944px;}
.y87_c01346{bottom:680.214444px;}
.y86_c01346{bottom:681.143580px;}
.y85_c01346{bottom:683.214648px;}
.y84_c01346{bottom:684.628428px;}
.y83_c01346{bottom:685.525200px;}
.y82_c01346{bottom:685.988940px;}
.y81_c01346{bottom:687.588444px;}
.y80_c01346{bottom:708.862548px;}
.y7f_c01346{bottom:710.102424px;}
.y7e_c01346{bottom:711.135660px;}
.y7d_c01346{bottom:713.930448px;}
.y7c_c01346{bottom:715.421940px;}
.y7b_c01346{bottom:716.432772px;}
.y7a_c01346{bottom:718.458120px;}
.y79_c01346{bottom:719.974896px;}
.y78_c01346{bottom:720.709008px;}
.y77_c01346{bottom:723.242484px;}
.y76_c01346{bottom:745.449276px;}
.y75_c01346{bottom:746.126328px;}
.y74_c01346{bottom:746.778828px;}
.y73_c01346{bottom:748.125972px;}
.y72_c01346{bottom:748.768452px;}
.y71_c01346{bottom:750.092376px;}
.y70_c01346{bottom:750.723204px;}
.y6f_c01346{bottom:752.917992px;}
.y6e_c01346{bottom:753.592956px;}
.y6d_c01346{bottom:754.467648px;}
.y6c_c01346{bottom:756.006840px;}
.y6b_c01346{bottom:757.287024px;}
.y6a_c01346{bottom:757.950924px;}
.y69_c01346{bottom:758.622060px;}
.y68_c01346{bottom:779.350896px;}
.y67_c01346{bottom:782.096244px;}
.y66_c01346{bottom:783.140208px;}
.y65_c01346{bottom:785.406660px;}
.y64_c01346{bottom:786.890628px;}
.y63_c01346{bottom:787.679628px;}
.y62_c01346{bottom:788.429160px;}
.y61_c01346{bottom:791.201904px;}
.y60_c01346{bottom:791.959536px;}
.y5f_c01346{bottom:793.461876px;}
.y5e_c01346{bottom:815.417448px;}
.y5d_c01346{bottom:817.279080px;}
.y5c_c01346{bottom:818.686524px;}
.y5b_c01346{bottom:819.598116px;}
.y5a_c01346{bottom:820.999212px;}
.y59_c01346{bottom:821.701008px;}
.y58_c01346{bottom:823.269192px;}
.y57_c01346{bottom:824.663952px;}
.y56_c01346{bottom:826.059252px;}
.y55_c01346{bottom:828.571428px;}
.y54_c01346{bottom:849.385860px;}
.y53_c01346{bottom:850.366692px;}
.y52_c01346{bottom:852.628320px;}
.y51_c01346{bottom:853.417752px;}
.y50_c01346{bottom:854.158812px;}
.y4f_c01346{bottom:856.436748px;}
.y4e_c01346{bottom:857.192904px;}
.y4d_c01346{bottom:860.002560px;}
.y4c_c01346{bottom:861.263184px;}
.y4b_c01346{bottom:861.996432px;}
.y4a_c01346{bottom:863.766840px;}
.y49_c01346{bottom:864.493464px;}
.y48_c01346{bottom:888.100872px;}
.y47_c01346{bottom:889.468020px;}
.y46_c01346{bottom:890.391612px;}
.y45_c01346{bottom:892.723188px;}
.y44_c01346{bottom:894.798696px;}
.y43_c01346{bottom:895.467444px;}
.y42_c01346{bottom:897.100476px;}
.y41_c01346{bottom:898.910100px;}
.y40_c01346{bottom:899.599428px;}
.y3f_c01346{bottom:921.718800px;}
.y3e_c01346{bottom:922.411008px;}
.y3d_c01346{bottom:923.551452px;}
.y3c_c01346{bottom:925.882488px;}
.y3b_c01346{bottom:926.788956px;}
.y3a_c01346{bottom:928.422960px;}
.y39_c01346{bottom:929.313288px;}
.y38_c01346{bottom:930.016272px;}
.y37_c01346{bottom:931.162128px;}
.y36_c01346{bottom:931.614840px;}
.y35_c01346{bottom:933.900864px;}
.y34_c01346{bottom:956.189676px;}
.y33_c01346{bottom:957.627336px;}
.y32_c01346{bottom:958.268556px;}
.y31_c01346{bottom:959.720400px;}
.y30_c01346{bottom:960.531276px;}
.y2f_c01346{bottom:961.173240px;}
.y2e_c01346{bottom:963.262428px;}
.y2d_c01346{bottom:963.888312px;}
.y2c_c01346{bottom:964.944432px;}
.y2b_c01346{bottom:966.412440px;}
.y2a_c01346{bottom:967.658292px;}
.y29_c01346{bottom:990.461460px;}
.y28_c01346{bottom:992.577024px;}
.y27_c01346{bottom:993.613596px;}
.y26_c01346{bottom:995.892120px;}
.y25_c01346{bottom:997.738092px;}
.y24_c01346{bottom:998.610732px;}
.y23_c01346{bottom:999.415296px;}
.y22_c01346{bottom:1000.899996px;}
.y21_c01346{bottom:1001.520540px;}
.y20_c01346{bottom:1002.766860px;}
.y1f_c01346{bottom:1025.472708px;}
.y1e_c01346{bottom:1026.915096px;}
.y1d_c01346{bottom:1028.777124px;}
.y1c_c01346{bottom:1029.444096px;}
.y1b_c01346{bottom:1031.095980px;}
.y1a_c01346{bottom:1032.769284px;}
.y19_c01346{bottom:1033.600332px;}
.y18_c01346{bottom:1034.231088px;}
.y17_c01346{bottom:1035.472680px;}
.y16_c01346{bottom:1036.688760px;}
.y15_c01346{bottom:1037.335596px;}
.y14_c01346{bottom:1062.461424px;}
.y13_c01346{bottom:1063.524468px;}
.y12_c01346{bottom:1065.114408px;}
.y11_c01346{bottom:1065.877428px;}
.y10_c01346{bottom:1068.203388px;}
.yf_c01346{bottom:1069.005900px;}
.ye_c01346{bottom:1070.337180px;}
.yd_c01346{bottom:1071.131808px;}
.yc_c01346{bottom:1072.987500px;}
.yb_c01346{bottom:1140.577728px;}
.ya_c01346{bottom:1140.894369px;}
.y9_c01346{bottom:1142.899682px;}
.y8_c01346{bottom:1143.284874px;}
.y7_c01346{bottom:1143.775913px;}
.y6_c01346{bottom:1146.112529px;}
.y5_c01346{bottom:1150.471500px;}
.y4_c01346{bottom:1191.510000px;}
.y3_c01346{bottom:1209.337088px;}
.y2_c01346{bottom:1211.273933px;}
.y1_c01346{bottom:1212.313500px;}
.h3_c01346{height:18.000000px;}
.h4_c01346{height:18.004760px;}
.h8_c01346{height:66.019005px;}
.h2_c01346{height:72.000936px;}
.h6_c01346{height:72.020733px;}
.h7_c01346{height:78.022461px;}
.h5_c01346{height:84.024189px;}
.h1_c01346{height:1250.250000px;}
.h0_c01346{height:1250.370000px;}
.w1_c01346{width:912.000000px;}
.w0_c01346{width:912.300000px;}
.x0_c01346{left:0.000000px;}
.x7d_c01346{left:172.227036px;}
.x83_c01346{left:173.282016px;}
.x69_c01346{left:176.250636px;}
.x5f_c01346{left:177.638556px;}
.x4c_c01346{left:178.697484px;}
.x28_c01346{left:180.873900px;}
.x1f_c01346{left:182.484948px;}
.x15_c01346{left:183.575748px;}
.x41_c01346{left:211.897800px;}
.x39_c01346{left:213.251532px;}
.x16_c01346{left:217.593816px;}
.x56_c01346{left:243.477096px;}
.x29_c01346{left:246.479784px;}
.x20_c01346{left:248.110332px;}
.x71_c01346{left:251.944140px;}
.x5_c01346{left:261.850500px;}
.x72_c01346{left:274.018224px;}
.x57_c01346{left:276.420888px;}
.x17_c01346{left:281.583984px;}
.x76_c01346{left:283.440000px;}
.x6a_c01346{left:286.377264px;}
.x4_c01346{left:287.550000px;}
.x42_c01346{left:288.854136px;}
.x31_c01346{left:290.820648px;}
.xc_c01346{left:293.185500px;}
.x4d_c01346{left:298.317588px;}
.x3a_c01346{left:299.408724px;}
.x60_c01346{left:308.368584px;}
.x32_c01346{left:312.372696px;}
.x73_c01346{left:316.699284px;}
.x6b_c01346{left:318.278520px;}
.x43_c01346{left:320.719392px;}
.x2a_c01346{left:323.781072px;}
.x84_c01346{left:327.202188px;}
.x18_c01346{left:346.949832px;}
.x7e_c01346{left:349.191780px;}
.x21_c01346{left:358.904616px;}
.x77_c01346{left:360.721500px;}
.x4e_c01346{left:364.772376px;}
.x33_c01346{left:366.933120px;}
.xd_c01346{left:370.506000px;}
.x44_c01346{left:375.559224px;}
.x3b_c01346{left:377.207340px;}
.x19_c01346{left:380.172828px;}
.x6c_c01346{left:384.229104px;}
.x61_c01346{left:385.321464px;}
.x58_c01346{left:396.954768px;}
.x22_c01346{left:401.245692px;}
.xe_c01346{left:403.615500px;}
.x3c_c01346{left:409.074144px;}
.x2b_c01346{left:412.312692px;}
.x78_c01346{left:415.812000px;}
.x1_c01346{left:416.835000px;}
.x1a_c01346{left:423.930084px;}
.x59_c01346{left:429.561060px;}
.x4f_c01346{left:431.204664px;}
.x7f_c01346{left:437.986188px;}
.x2_c01346{left:439.913398px;}
.x34_c01346{left:442.826592px;}
.x23_c01346{left:447.173700px;}
.x6_c01346{left:451.371000px;}
.xf_c01346{left:459.085500px;}
.x62_c01346{left:462.835416px;}
.x5a_c01346{left:463.874388px;}
.x6d_c01346{left:472.308228px;}
.x3_c01346{left:482.911358px;}
.x10_c01346{left:492.523500px;}
.x45_c01346{left:497.693640px;}
.x50_c01346{left:505.863528px;}
.x3d_c01346{left:507.935772px;}
.x1b_c01346{left:511.974132px;}
.x6e_c01346{left:516.239772px;}
.x35_c01346{left:520.665708px;}
.x2c_c01346{left:522.250368px;}
.x74_c01346{left:526.817868px;}
.x5b_c01346{left:528.395436px;}
.x46_c01346{left:530.575932px;}
.x80_c01346{left:535.757208px;}
.x51_c01346{left:539.294940px;}
.x24_c01346{left:544.350864px;}
.x7_c01346{left:552.963000px;}
.x2d_c01346{left:556.002900px;}
.x36_c01346{left:563.813304px;}
.x79_c01346{left:569.527500px;}
.x63_c01346{left:572.545428px;}
.x8_c01346{left:574.312500px;}
.x6f_c01346{left:581.074320px;}
.x11_c01346{left:589.438500px;}
.x9_c01346{left:591.060000px;}
.x1c_c01346{left:598.938072px;}
.x75_c01346{left:602.198304px;}
.x64_c01346{left:604.082952px;}
.x52_c01346{left:605.991228px;}
.x3e_c01346{left:618.967764px;}
.x12_c01346{left:621.231000px;}
.x81_c01346{left:624.877116px;}
.x5c_c01346{left:626.958312px;}
.x47_c01346{left:629.617308px;}
.x1d_c01346{left:634.045284px;}
.x53_c01346{left:649.414860px;}
.x48_c01346{left:661.808064px;}
.x3f_c01346{left:662.953932px;}
.x25_c01346{left:664.303764px;}
.x7a_c01346{left:667.207500px;}
.x65_c01346{left:670.252788px;}
.x5d_c01346{left:672.332892px;}
.x2e_c01346{left:675.109692px;}
.xa_c01346{left:678.247500px;}
.x13_c01346{left:687.478500px;}
.xb_c01346{left:692.014500px;}
.x49_c01346{left:696.139392px;}
.x66_c01346{left:702.400884px;}
.x2f_c01346{left:708.893760px;}
.x54_c01346{left:716.438184px;}
.x26_c01346{left:718.875816px;}
.x40_c01346{left:728.048112px;}
.x37_c01346{left:729.095184px;}
.x14_c01346{left:731.772000px;}
.x70_c01346{left:747.516816px;}
.x38_c01346{left:762.064560px;}
.x82_c01346{left:765.879768px;}
.x67_c01346{left:769.725828px;}
.x30_c01346{left:784.555332px;}
.x7b_c01346{left:789.921000px;}
.x5e_c01346{left:791.725272px;}
.x4a_c01346{left:794.501268px;}
.x68_c01346{left:802.353960px;}
.x55_c01346{left:805.075056px;}
.x1e_c01346{left:808.000164px;}
.x7c_c01346{left:822.523500px;}
.x27_c01346{left:830.225172px;}
.x4b_c01346{left:837.120276px;}
@media print{
.v0_c01346{vertical-align:0.000000pt;}
.ls0_c01346{letter-spacing:0.000000pt;}
.ws0_c01346{word-spacing:0.000000pt;}
.fs1_c01346{font-size:16.000000pt;}
.fs2_c01346{font-size:16.004231pt;}
.fs6_c01346{font-size:58.683560pt;}
.fs0_c01346{font-size:64.000832pt;}
.fs4_c01346{font-size:64.018429pt;}
.fs5_c01346{font-size:69.353298pt;}
.fs3_c01346{font-size:74.688168pt;}
.y0_c01346{bottom:0.000000pt;}
.y9f_c01346{bottom:515.961387pt;}
.y9e_c01346{bottom:516.646517pt;}
.y9d_c01346{bottom:519.108939pt;}
.y9c_c01346{bottom:538.994912pt;}
.y9b_c01346{bottom:540.642848pt;}
.y9a_c01346{bottom:541.626752pt;}
.y99_c01346{bottom:543.290507pt;}
.y98_c01346{bottom:545.116139pt;}
.y97_c01346{bottom:546.128789pt;}
.y96_c01346{bottom:546.772949pt;}
.y95_c01346{bottom:547.358901pt;}
.y94_c01346{bottom:548.179392pt;}
.y93_c01346{bottom:548.593045pt;}
.y92_c01346{bottom:550.075925pt;}
.y91_c01346{bottom:567.386219pt;}
.y90_c01346{bottom:568.081739pt;}
.y8f_c01346{bottom:570.699627pt;}
.y8e_c01346{bottom:572.076427pt;}
.y8d_c01346{bottom:572.783467pt;}
.y8c_c01346{bottom:573.699595pt;}
.y8b_c01346{bottom:576.062731pt;}
.y8a_c01346{bottom:577.237995pt;}
.y89_c01346{bottom:578.886667pt;}
.y88_c01346{bottom:603.228395pt;}
.y87_c01346{bottom:604.635061pt;}
.y86_c01346{bottom:605.460960pt;}
.y85_c01346{bottom:607.301909pt;}
.y84_c01346{bottom:608.558603pt;}
.y83_c01346{bottom:609.355733pt;}
.y82_c01346{bottom:609.767947pt;}
.y81_c01346{bottom:611.189728pt;}
.y80_c01346{bottom:630.100043pt;}
.y7f_c01346{bottom:631.202155pt;}
.y7e_c01346{bottom:632.120587pt;}
.y7d_c01346{bottom:634.604843pt;}
.y7c_c01346{bottom:635.930613pt;}
.y7b_c01346{bottom:636.829131pt;}
.y7a_c01346{bottom:638.629440pt;}
.y79_c01346{bottom:639.977685pt;}
.y78_c01346{bottom:640.630229pt;}
.y77_c01346{bottom:642.882208pt;}
.y76_c01346{bottom:662.621579pt;}
.y75_c01346{bottom:663.223403pt;}
.y74_c01346{bottom:663.803403pt;}
.y73_c01346{bottom:665.000864pt;}
.y72_c01346{bottom:665.571957pt;}
.y71_c01346{bottom:666.748779pt;}
.y70_c01346{bottom:667.309515pt;}
.y6f_c01346{bottom:669.260437pt;}
.y6e_c01346{bottom:669.860405pt;}
.y6d_c01346{bottom:670.637909pt;}
.y6c_c01346{bottom:672.006080pt;}
.y6b_c01346{bottom:673.144021pt;}
.y6a_c01346{bottom:673.734155pt;}
.y69_c01346{bottom:674.330720pt;}
.y68_c01346{bottom:692.756352pt;}
.y67_c01346{bottom:695.196661pt;}
.y66_c01346{bottom:696.124629pt;}
.y65_c01346{bottom:698.139253pt;}
.y64_c01346{bottom:699.458336pt;}
.y63_c01346{bottom:700.159669pt;}
.y62_c01346{bottom:700.825920pt;}
.y61_c01346{bottom:703.290581pt;}
.y60_c01346{bottom:703.964032pt;}
.y5f_c01346{bottom:705.299445pt;}
.y5e_c01346{bottom:724.815509pt;}
.y5d_c01346{bottom:726.470293pt;}
.y5c_c01346{bottom:727.721355pt;}
.y5b_c01346{bottom:728.531659pt;}
.y5a_c01346{bottom:729.777077pt;}
.y59_c01346{bottom:730.400896pt;}
.y58_c01346{bottom:731.794837pt;}
.y57_c01346{bottom:733.034624pt;}
.y56_c01346{bottom:734.274891pt;}
.y55_c01346{bottom:736.507936pt;}
.y54_c01346{bottom:755.009653pt;}
.y53_c01346{bottom:755.881504pt;}
.y52_c01346{bottom:757.891840pt;}
.y51_c01346{bottom:758.593557pt;}
.y50_c01346{bottom:759.252277pt;}
.y4f_c01346{bottom:761.277109pt;}
.y4e_c01346{bottom:761.949248pt;}
.y4d_c01346{bottom:764.446720pt;}
.y4c_c01346{bottom:765.567275pt;}
.y4b_c01346{bottom:766.219051pt;}
.y4a_c01346{bottom:767.792747pt;}
.y49_c01346{bottom:768.438635pt;}
.y48_c01346{bottom:789.422997pt;}
.y47_c01346{bottom:790.638240pt;}
.y46_c01346{bottom:791.459211pt;}
.y45_c01346{bottom:793.531723pt;}
.y44_c01346{bottom:795.376619pt;}
.y43_c01346{bottom:795.971061pt;}
.y42_c01346{bottom:797.422645pt;}
.y41_c01346{bottom:799.031200pt;}
.y40_c01346{bottom:799.643936pt;}
.y3f_c01346{bottom:819.305600pt;}
.y3e_c01346{bottom:819.920896pt;}
.y3d_c01346{bottom:820.934624pt;}
.y3c_c01346{bottom:823.006656pt;}
.y3b_c01346{bottom:823.812405pt;}
.y3a_c01346{bottom:825.264853pt;}
.y39_c01346{bottom:826.056256pt;}
.y38_c01346{bottom:826.681131pt;}
.y37_c01346{bottom:827.699669pt;}
.y36_c01346{bottom:828.102080pt;}
.y35_c01346{bottom:830.134101pt;}
.y34_c01346{bottom:849.946379pt;}
.y33_c01346{bottom:851.224299pt;}
.y32_c01346{bottom:851.794272pt;}
.y31_c01346{bottom:853.084800pt;}
.y30_c01346{bottom:853.805579pt;}
.y2f_c01346{bottom:854.376213pt;}
.y2e_c01346{bottom:856.233269pt;}
.y2d_c01346{bottom:856.789611pt;}
.y2c_c01346{bottom:857.728384pt;}
.y2b_c01346{bottom:859.033280pt;}
.y2a_c01346{bottom:860.140704pt;}
.y29_c01346{bottom:880.410187pt;}
.y28_c01346{bottom:882.290688pt;}
.y27_c01346{bottom:883.212085pt;}
.y26_c01346{bottom:885.237440pt;}
.y25_c01346{bottom:886.878304pt;}
.y24_c01346{bottom:887.653984pt;}
.y23_c01346{bottom:888.369152pt;}
.y22_c01346{bottom:889.688885pt;}
.y21_c01346{bottom:890.240480pt;}
.y20_c01346{bottom:891.348320pt;}
.y1f_c01346{bottom:911.531296pt;}
.y1e_c01346{bottom:912.813419pt;}
.y1d_c01346{bottom:914.468555pt;}
.y1c_c01346{bottom:915.061419pt;}
.y1b_c01346{bottom:916.529760pt;}
.y1a_c01346{bottom:918.017141pt;}
.y19_c01346{bottom:918.755851pt;}
.y18_c01346{bottom:919.316523pt;}
.y17_c01346{bottom:920.420160pt;}
.y16_c01346{bottom:921.501120pt;}
.y15_c01346{bottom:922.076085pt;}
.y14_c01346{bottom:944.410155pt;}
.y13_c01346{bottom:945.355083pt;}
.y12_c01346{bottom:946.768363pt;}
.y11_c01346{bottom:947.446603pt;}
.y10_c01346{bottom:949.514123pt;}
.yf_c01346{bottom:950.227467pt;}
.ye_c01346{bottom:951.410827pt;}
.yd_c01346{bottom:952.117163pt;}
.yc_c01346{bottom:953.766667pt;}
.yb_c01346{bottom:1013.846869pt;}
.ya_c01346{bottom:1014.128328pt;}
.y9_c01346{bottom:1015.910828pt;}
.y8_c01346{bottom:1016.253221pt;}
.y7_c01346{bottom:1016.689700pt;}
.y6_c01346{bottom:1018.766692pt;}
.y5_c01346{bottom:1022.641333pt;}
.y4_c01346{bottom:1059.120000pt;}
.y3_c01346{bottom:1074.966300pt;}
.y2_c01346{bottom:1076.687940pt;}
.y1_c01346{bottom:1077.612000pt;}
.h3_c01346{height:16.000000pt;}
.h4_c01346{height:16.004231pt;}
.h8_c01346{height:58.683560pt;}
.h2_c01346{height:64.000832pt;}
.h6_c01346{height:64.018429pt;}
.h7_c01346{height:69.353298pt;}
.h5_c01346{height:74.688168pt;}
.h1_c01346{height:1111.333333pt;}
.h0_c01346{height:1111.440000pt;}
.w1_c01346{width:810.666667pt;}
.w0_c01346{width:810.933333pt;}
.x0_c01346{left:0.000000pt;}
.x7d_c01346{left:153.090699pt;}
.x83_c01346{left:154.028459pt;}
.x69_c01346{left:156.667232pt;}
.x5f_c01346{left:157.900939pt;}
.x4c_c01346{left:158.842208pt;}
.x28_c01346{left:160.776800pt;}
.x1f_c01346{left:162.208843pt;}
.x15_c01346{left:163.178443pt;}
.x41_c01346{left:188.353600pt;}
.x39_c01346{left:189.556917pt;}
.x16_c01346{left:193.416725pt;}
.x56_c01346{left:216.424085pt;}
.x29_c01346{left:219.093141pt;}
.x20_c01346{left:220.542517pt;}
.x71_c01346{left:223.950347pt;}
.x5_c01346{left:232.756000pt;}
.x72_c01346{left:243.571755pt;}
.x57_c01346{left:245.707456pt;}
.x17_c01346{left:250.296875pt;}
.x76_c01346{left:251.946667pt;}
.x6a_c01346{left:254.557568pt;}
.x4_c01346{left:255.600000pt;}
.x42_c01346{left:256.759232pt;}
.x31_c01346{left:258.507243pt;}
.xc_c01346{left:260.609333pt;}
.x4d_c01346{left:265.171189pt;}
.x3a_c01346{left:266.141088pt;}
.x60_c01346{left:274.105408pt;}
.x32_c01346{left:277.664619pt;}
.x73_c01346{left:281.510475pt;}
.x6b_c01346{left:282.914240pt;}
.x43_c01346{left:285.083904pt;}
.x2a_c01346{left:287.805397pt;}
.x84_c01346{left:290.846389pt;}
.x18_c01346{left:308.399851pt;}
.x7e_c01346{left:310.392693pt;}
.x21_c01346{left:319.026325pt;}
.x77_c01346{left:320.641333pt;}
.x4e_c01346{left:324.242112pt;}
.x33_c01346{left:326.162773pt;}
.xd_c01346{left:329.338667pt;}
.x44_c01346{left:333.830421pt;}
.x3b_c01346{left:335.295413pt;}
.x19_c01346{left:337.931403pt;}
.x6c_c01346{left:341.536981pt;}
.x61_c01346{left:342.507968pt;}
.x58_c01346{left:352.848683pt;}
.x22_c01346{left:356.662837pt;}
.xe_c01346{left:358.769333pt;}
.x3c_c01346{left:363.621461pt;}
.x2b_c01346{left:366.500171pt;}
.x78_c01346{left:369.610667pt;}
.x1_c01346{left:370.520000pt;}
.x1a_c01346{left:376.826741pt;}
.x59_c01346{left:381.832053pt;}
.x4f_c01346{left:383.293035pt;}
.x7f_c01346{left:389.321056pt;}
.x2_c01346{left:391.034132pt;}
.x34_c01346{left:393.623637pt;}
.x23_c01346{left:397.487733pt;}
.x6_c01346{left:401.218667pt;}
.xf_c01346{left:408.076000pt;}
.x62_c01346{left:411.409259pt;}
.x5a_c01346{left:412.332789pt;}
.x6d_c01346{left:419.829536pt;}
.x3_c01346{left:429.254540pt;}
.x10_c01346{left:437.798667pt;}
.x45_c01346{left:442.394347pt;}
.x50_c01346{left:449.656469pt;}
.x3d_c01346{left:451.498464pt;}
.x1b_c01346{left:455.088117pt;}
.x6e_c01346{left:458.879797pt;}
.x35_c01346{left:462.813963pt;}
.x2c_c01346{left:464.222549pt;}
.x74_c01346{left:468.282549pt;}
.x5b_c01346{left:469.684832pt;}
.x46_c01346{left:471.623051pt;}
.x80_c01346{left:476.228629pt;}
.x51_c01346{left:479.373280pt;}
.x24_c01346{left:483.867435pt;}
.x7_c01346{left:491.522667pt;}
.x2d_c01346{left:494.224800pt;}
.x36_c01346{left:501.167381pt;}
.x79_c01346{left:506.246667pt;}
.x63_c01346{left:508.929269pt;}
.x8_c01346{left:510.500000pt;}
.x6f_c01346{left:516.510507pt;}
.x11_c01346{left:523.945333pt;}
.x9_c01346{left:525.386667pt;}
.x1c_c01346{left:532.389397pt;}
.x75_c01346{left:535.287381pt;}
.x64_c01346{left:536.962624pt;}
.x52_c01346{left:538.658869pt;}
.x3e_c01346{left:550.193568pt;}
.x12_c01346{left:552.205333pt;}
.x81_c01346{left:555.446325pt;}
.x5c_c01346{left:557.296277pt;}
.x47_c01346{left:559.659829pt;}
.x1d_c01346{left:563.595808pt;}
.x53_c01346{left:577.257653pt;}
.x48_c01346{left:588.273835pt;}
.x3f_c01346{left:589.292384pt;}
.x25_c01346{left:590.492235pt;}
.x7a_c01346{left:593.073333pt;}
.x65_c01346{left:595.780256pt;}
.x5d_c01346{left:597.629237pt;}
.x2e_c01346{left:600.097504pt;}
.xa_c01346{left:602.886667pt;}
.x13_c01346{left:611.092000pt;}
.xb_c01346{left:615.124000pt;}
.x49_c01346{left:618.790571pt;}
.x66_c01346{left:624.356341pt;}
.x2f_c01346{left:630.127787pt;}
.x54_c01346{left:636.833941pt;}
.x26_c01346{left:639.000725pt;}
.x40_c01346{left:647.153877pt;}
.x37_c01346{left:648.084608pt;}
.x14_c01346{left:650.464000pt;}
.x70_c01346{left:664.459392pt;}
.x38_c01346{left:677.390720pt;}
.x82_c01346{left:680.782016pt;}
.x67_c01346{left:684.200736pt;}
.x30_c01346{left:697.382517pt;}
.x7b_c01346{left:702.152000pt;}
.x5e_c01346{left:703.755797pt;}
.x4a_c01346{left:706.223349pt;}
.x68_c01346{left:713.203520pt;}
.x55_c01346{left:715.622272pt;}
.x1e_c01346{left:718.222368pt;}
.x7c_c01346{left:731.132000pt;}
.x27_c01346{left:737.977931pt;}
.x4b_c01346{left:744.106912pt;}
}





/* 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_c01347 {
    display:none;
  }
  .loading-indicator_c01347.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01347 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_c01347 { 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_c01347" -> "#page-container .classname_c01347")
 */
.pf_c01347 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01347 { /* 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_c01347.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01347 { /* 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_c01347 { /* 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_c01347 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01347 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01347 {overflow:visible;}
  }
}
.c_c01347 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01347 { /* 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_c01347:after { /* webkit #35443 */
  content: '';
}
.t_c01347:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01347 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 */
}
.__c01347 { /* 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_c01347 { /* info for Javascript */
  display:none;
}
.l_c01347 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01347 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01347 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01347: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_c01347 {
    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_c01347.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01347.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_c01347 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01347{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01347;src:url('chunks/assets/font_e3fbdd6f747043a19966a9dc.woff2')format("woff");}.ff1_c01347{font-family:ff1_c01347;line-height:1.000000;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;}
.m0_c01347{transform:matrix(0.003148,-0.629502,0.249997,0.001250,0,0);-ms-transform:matrix(0.003148,-0.629502,0.249997,0.001250,0,0);-webkit-transform:matrix(0.003148,-0.629502,0.249997,0.001250,0,0);}
.m1_c01347{transform:matrix(0.003773,-0.754666,0.249997,0.001250,0,0);-ms-transform:matrix(0.003773,-0.754666,0.249997,0.001250,0,0);-webkit-transform:matrix(0.003773,-0.754666,0.249997,0.001250,0,0);}
.m2_c01347{transform:matrix(0.010633,0.149317,-0.249368,0.017758,0,0);-ms-transform:matrix(0.010633,0.149317,-0.249368,0.017758,0,0);-webkit-transform:matrix(0.010633,0.149317,-0.249368,0.017758,0,0);}
.m3_c01347{transform:matrix(0.013569,0.190542,-0.249368,0.017758,0,0);-ms-transform:matrix(0.013569,0.190542,-0.249368,0.017758,0,0);-webkit-transform:matrix(0.013569,0.190542,-0.249368,0.017758,0,0);}
.m4_c01347{transform:matrix(0.261725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261725,0.000000,0.000000,0.250000,0,0);}
.m5_c01347{transform:matrix(1.190800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.190800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.190800,0.000000,0.000000,0.250000,0,0);}
.v0_c01347{vertical-align:0.000000px;}
.ls0_c01347{letter-spacing:0.000000px;}
.sc__c01347{text-shadow:none;}
.sc0_c01347{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__c01347{-webkit-text-stroke:0px transparent;}
.sc0_c01347{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01347{word-spacing:0.000000px;}
.fc0_c01347{color:transparent;}
.fs3_c01347{font-size:18.000000px;}
.fs0_c01347{font-size:18.000225px;}
.fs1_c01347{font-size:41.980045px;}
.fs2_c01347{font-size:59.971493px;}
.y0_c01347{bottom:0.000000px;}
.y2_c01347{bottom:31.311000px;}
.y1_c01347{bottom:55.321500px;}
.y6_c01347{bottom:807.429000px;}
.y4_c01347{bottom:915.304329px;}
.y5_c01347{bottom:915.840000px;}
.y3_c01347{bottom:918.000000px;}
.h5_c01347{height:18.000000px;}
.h2_c01347{height:18.000225px;}
.h3_c01347{height:41.980045px;}
.h4_c01347{height:59.971493px;}
.h1_c01347{height:1250.250000px;}
.h0_c01347{height:1250.370000px;}
.w1_c01347{width:912.000000px;}
.w0_c01347{width:912.300000px;}
.x0_c01347{left:0.000000px;}
.x5_c01347{left:156.330000px;}
.x4_c01347{left:412.290000px;}
.x3_c01347{left:419.044653px;}
.x2_c01347{left:431.190000px;}
.x1_c01347{left:902.610000px;}
@media print{
.v0_c01347{vertical-align:0.000000pt;}
.ls0_c01347{letter-spacing:0.000000pt;}
.ws0_c01347{word-spacing:0.000000pt;}
.fs3_c01347{font-size:16.000000pt;}
.fs0_c01347{font-size:16.000200pt;}
.fs1_c01347{font-size:37.315596pt;}
.fs2_c01347{font-size:53.307994pt;}
.y0_c01347{bottom:0.000000pt;}
.y2_c01347{bottom:27.832000pt;}
.y1_c01347{bottom:49.174667pt;}
.y6_c01347{bottom:717.714667pt;}
.y4_c01347{bottom:813.603848pt;}
.y5_c01347{bottom:814.080000pt;}
.y3_c01347{bottom:816.000000pt;}
.h5_c01347{height:16.000000pt;}
.h2_c01347{height:16.000200pt;}
.h3_c01347{height:37.315596pt;}
.h4_c01347{height:53.307994pt;}
.h1_c01347{height:1111.333333pt;}
.h0_c01347{height:1111.440000pt;}
.w1_c01347{width:810.666667pt;}
.w0_c01347{width:810.933333pt;}
.x0_c01347{left:0.000000pt;}
.x5_c01347{left:138.960000pt;}
.x4_c01347{left:366.480000pt;}
.x3_c01347{left:372.484136pt;}
.x2_c01347{left:383.280000pt;}
.x1_c01347{left:802.320000pt;}
}





/* 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_c01348 {
    display:none;
  }
  .loading-indicator_c01348.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01348 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_c01348 { 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_c01348" -> "#page-container .classname_c01348")
 */
.pf_c01348 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01348 { /* 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_c01348.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01348 { /* 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_c01348 { /* 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_c01348 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01348 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01348 {overflow:visible;}
  }
}
.c_c01348 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01348 { /* 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_c01348:after { /* webkit #35443 */
  content: '';
}
.t_c01348:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01348 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 */
}
.__c01348 { /* 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_c01348 { /* info for Javascript */
  display:none;
}
.l_c01348 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01348 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01348 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01348: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_c01348 {
    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_c01348.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01348.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_c01348 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01348{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01348;src:url('chunks/assets/font_fabf4b590f7fb32aea93ffb2.woff2')format("woff");}.ff1_c01348{font-family:ff1_c01348;line-height:1.000000;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;}
.m5d_c01348{transform:matrix(0.013520,0.000068,-0.001250,0.249997,0,0);-ms-transform:matrix(0.013520,0.000068,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.013520,0.000068,-0.001250,0.249997,0,0);}
.m7a_c01348{transform:matrix(0.144435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144435,0.000000,0.000000,0.250000,0,0);}
.m6f_c01348{transform:matrix(0.162690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162690,0.000000,0.000000,0.250000,0,0);}
.m77_c01348{transform:matrix(0.182540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182540,0.000000,0.000000,0.250000,0,0);}
.m7b_c01348{transform:matrix(0.185565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185565,0.000000,0.000000,0.250000,0,0);}
.m71_c01348{transform:matrix(0.185925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185925,0.000000,0.000000,0.250000,0,0);}
.m74_c01348{transform:matrix(0.186385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186385,0.000000,0.000000,0.250000,0,0);}
.m87_c01348{transform:matrix(0.188200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188200,0.000000,0.000000,0.250000,0,0);}
.m78_c01348{transform:matrix(0.195275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195275,0.000000,0.000000,0.250000,0,0);}
.m75_c01348{transform:matrix(0.196955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196955,0.000000,0.000000,0.250000,0,0);}
.m72_c01348{transform:matrix(0.202955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202955,0.000000,0.000000,0.250000,0,0);}
.m43_c01348{transform:matrix(0.203350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203350,0.000000,0.000000,0.250000,0,0);}
.m61_c01348{transform:matrix(0.203527,0.001018,-0.001250,0.249997,0,0);-ms-transform:matrix(0.203527,0.001018,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.203527,0.001018,-0.001250,0.249997,0,0);}
.m6e_c01348{transform:matrix(0.206180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206180,0.000000,0.000000,0.250000,0,0);}
.m4c_c01348{transform:matrix(0.208715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208715,0.000000,0.000000,0.250000,0,0);}
.m14_c01348{transform:matrix(0.210195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210195,0.000000,0.000000,0.250000,0,0);}
.m49_c01348{transform:matrix(0.211565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211565,0.000000,0.000000,0.250000,0,0);}
.m7f_c01348{transform:matrix(0.211870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211870,0.000000,0.000000,0.250000,0,0);}
.m63_c01348{transform:matrix(0.212197,0.001061,-0.001250,0.249997,0,0);-ms-transform:matrix(0.212197,0.001061,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.212197,0.001061,-0.001250,0.249997,0,0);}
.m84_c01348{transform:matrix(0.213135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213135,0.000000,0.000000,0.250000,0,0);}
.m52_c01348{transform:matrix(0.214710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214710,0.000000,0.000000,0.250000,0,0);}
.m70_c01348{transform:matrix(0.215010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215010,0.000000,0.000000,0.250000,0,0);}
.m7d_c01348{transform:matrix(0.215755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215755,0.000000,0.000000,0.250000,0,0);}
.m46_c01348{transform:matrix(0.216335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216335,0.000000,0.000000,0.250000,0,0);}
.m73_c01348{transform:matrix(0.217120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217120,0.000000,0.000000,0.250000,0,0);}
.m76_c01348{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m37_c01348{transform:matrix(0.217705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217705,0.000000,0.000000,0.250000,0,0);}
.m3f_c01348{transform:matrix(0.218795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218795,0.000000,0.000000,0.250000,0,0);}
.m3c_c01348{transform:matrix(0.218940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218940,0.000000,0.000000,0.250000,0,0);}
.m79_c01348{transform:matrix(0.220635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220635,0.000000,0.000000,0.250000,0,0);}
.m85_c01348{transform:matrix(0.222735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222735,0.000000,0.000000,0.250000,0,0);}
.m3a_c01348{transform:matrix(0.227260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227260,0.000000,0.000000,0.250000,0,0);}
.m59_c01348{transform:matrix(0.227430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227430,0.000000,0.000000,0.250000,0,0);}
.m80_c01348{transform:matrix(0.227945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227945,0.000000,0.000000,0.250000,0,0);}
.m31_c01348{transform:matrix(0.228090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228090,0.000000,0.000000,0.250000,0,0);}
.m3b_c01348{transform:matrix(0.228470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228470,0.000000,0.000000,0.250000,0,0);}
.m24_c01348{transform:matrix(0.228540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228540,0.000000,0.000000,0.250000,0,0);}
.m19_c01348{transform:matrix(0.229525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229525,0.000000,0.000000,0.250000,0,0);}
.m1b_c01348{transform:matrix(0.230285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230285,0.000000,0.000000,0.250000,0,0);}
.m6d_c01348{transform:matrix(0.230762,0.001154,-0.001250,0.249997,0,0);-ms-transform:matrix(0.230762,0.001154,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.230762,0.001154,-0.001250,0.249997,0,0);}
.m6c_c01348{transform:matrix(0.231237,0.001156,-0.001250,0.249997,0,0);-ms-transform:matrix(0.231237,0.001156,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.231237,0.001156,-0.001250,0.249997,0,0);}
.m2_c01348{transform:matrix(0.231840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231840,0.000000,0.000000,0.250000,0,0);}
.m4a_c01348{transform:matrix(0.232335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232335,0.000000,0.000000,0.250000,0,0);}
.m57_c01348{transform:matrix(0.234360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234360,0.000000,0.000000,0.250000,0,0);}
.m7e_c01348{transform:matrix(0.234800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234800,0.000000,0.000000,0.250000,0,0);}
.m8_c01348{transform:matrix(0.235385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235385,0.000000,0.000000,0.250000,0,0);}
.m5b_c01348{transform:matrix(0.235395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235395,0.000000,0.000000,0.250000,0,0);}
.m82_c01348{transform:matrix(0.237325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237325,0.000000,0.000000,0.250000,0,0);}
.m6a_c01348{transform:matrix(0.237972,0.001190,-0.001250,0.249997,0,0);-ms-transform:matrix(0.237972,0.001190,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.237972,0.001190,-0.001250,0.249997,0,0);}
.m48_c01348{transform:matrix(0.238220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238220,0.000000,0.000000,0.250000,0,0);}
.m60_c01348{transform:matrix(0.239307,0.001197,-0.001250,0.249997,0,0);-ms-transform:matrix(0.239307,0.001197,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.239307,0.001197,-0.001250,0.249997,0,0);}
.m68_c01348{transform:matrix(0.240677,0.001203,-0.001250,0.249997,0,0);-ms-transform:matrix(0.240677,0.001203,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.240677,0.001203,-0.001250,0.249997,0,0);}
.m9_c01348{transform:matrix(0.241570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241570,0.000000,0.000000,0.250000,0,0);}
.m42_c01348{transform:matrix(0.242215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242215,0.000000,0.000000,0.250000,0,0);}
.m44_c01348{transform:matrix(0.242705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242705,0.000000,0.000000,0.250000,0,0);}
.m17_c01348{transform:matrix(0.243100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243100,0.000000,0.000000,0.250000,0,0);}
.m67_c01348{transform:matrix(0.243372,0.001217,-0.001250,0.249997,0,0);-ms-transform:matrix(0.243372,0.001217,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.243372,0.001217,-0.001250,0.249997,0,0);}
.m36_c01348{transform:matrix(0.243490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243490,0.000000,0.000000,0.250000,0,0);}
.m38_c01348{transform:matrix(0.244260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244260,0.000000,0.000000,0.250000,0,0);}
.m81_c01348{transform:matrix(0.244450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244450,0.000000,0.000000,0.250000,0,0);}
.m39_c01348{transform:matrix(0.244740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244740,0.000000,0.000000,0.250000,0,0);}
.m3e_c01348{transform:matrix(0.245600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245600,0.000000,0.000000,0.250000,0,0);}
.m5a_c01348{transform:matrix(0.245725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245725,0.000000,0.000000,0.250000,0,0);}
.m47_c01348{transform:matrix(0.245980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245980,0.000000,0.000000,0.250000,0,0);}
.m1a_c01348{transform:matrix(0.247030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247030,0.000000,0.000000,0.250000,0,0);}
.m34_c01348{transform:matrix(0.247310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247310,0.000000,0.000000,0.250000,0,0);}
.m7c_c01348{transform:matrix(0.247460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247460,0.000000,0.000000,0.250000,0,0);}
.m1f_c01348{transform:matrix(0.247550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247550,0.000000,0.000000,0.250000,0,0);}
.m1e_c01348{transform:matrix(0.247615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247615,0.000000,0.000000,0.250000,0,0);}
.m5e_c01348{transform:matrix(0.247682,0.001238,-0.001250,0.249997,0,0);-ms-transform:matrix(0.247682,0.001238,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.247682,0.001238,-0.001250,0.249997,0,0);}
.m53_c01348{transform:matrix(0.247815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247815,0.000000,0.000000,0.250000,0,0);}
.m83_c01348{transform:matrix(0.248230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248230,0.000000,0.000000,0.250000,0,0);}
.m28_c01348{transform:matrix(0.248915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248915,0.000000,0.000000,0.250000,0,0);}
.m41_c01348{transform:matrix(0.249035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249035,0.000000,0.000000,0.250000,0,0);}
.m3d_c01348{transform:matrix(0.249160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249160,0.000000,0.000000,0.250000,0,0);}
.m10_c01348{transform:matrix(0.249405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249405,0.000000,0.000000,0.250000,0,0);}
.m16_c01348{transform:matrix(0.249995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249995,0.000000,0.000000,0.250000,0,0);}
.m22_c01348{transform:matrix(0.251220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251220,0.000000,0.000000,0.250000,0,0);}
.m6b_c01348{transform:matrix(0.252877,0.001264,-0.001250,0.249997,0,0);-ms-transform:matrix(0.252877,0.001264,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.252877,0.001264,-0.001250,0.249997,0,0);}
.m30_c01348{transform:matrix(0.252880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252880,0.000000,0.000000,0.250000,0,0);}
.m45_c01348{transform:matrix(0.253060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253060,0.000000,0.000000,0.250000,0,0);}
.m4b_c01348{transform:matrix(0.253260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253260,0.000000,0.000000,0.250000,0,0);}
.m86_c01348{transform:matrix(0.253820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253820,0.000000,0.000000,0.250000,0,0);}
.m40_c01348{transform:matrix(0.254585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254585,0.000000,0.000000,0.250000,0,0);}
.mc_c01348{transform:matrix(0.256480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256480,0.000000,0.000000,0.250000,0,0);}
.m0_c01348{transform:matrix(0.258070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258070,0.000000,0.000000,0.250000,0,0);}
.m1d_c01348{transform:matrix(0.258255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258255,0.000000,0.000000,0.250000,0,0);}
.m4d_c01348{transform:matrix(0.258610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258610,0.000000,0.000000,0.250000,0,0);}
.me_c01348{transform:matrix(0.259520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259520,0.000000,0.000000,0.250000,0,0);}
.m2d_c01348{transform:matrix(0.259955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259955,0.000000,0.000000,0.250000,0,0);}
.m56_c01348{transform:matrix(0.261285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261285,0.000000,0.000000,0.250000,0,0);}
.md_c01348{transform:matrix(0.261920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261920,0.000000,0.000000,0.250000,0,0);}
.mb_c01348{transform:matrix(0.261945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261945,0.000000,0.000000,0.250000,0,0);}
.ma_c01348{transform:matrix(0.262700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262700,0.000000,0.000000,0.250000,0,0);}
.m1c_c01348{transform:matrix(0.262850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262850,0.000000,0.000000,0.250000,0,0);}
.mf_c01348{transform:matrix(0.262930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262930,0.000000,0.000000,0.250000,0,0);}
.m58_c01348{transform:matrix(0.264155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264155,0.000000,0.000000,0.250000,0,0);}
.m66_c01348{transform:matrix(0.264782,0.001324,-0.001250,0.249997,0,0);-ms-transform:matrix(0.264782,0.001324,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.264782,0.001324,-0.001250,0.249997,0,0);}
.m6_c01348{transform:matrix(0.265275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265275,0.000000,0.000000,0.250000,0,0);}
.m2f_c01348{transform:matrix(0.265650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265650,0.000000,0.000000,0.250000,0,0);}
.m5f_c01348{transform:matrix(0.265897,0.001329,-0.001250,0.249997,0,0);-ms-transform:matrix(0.265897,0.001329,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.265897,0.001329,-0.001250,0.249997,0,0);}
.m13_c01348{transform:matrix(0.266130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266130,0.000000,0.000000,0.250000,0,0);}
.m2b_c01348{transform:matrix(0.266285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266285,0.000000,0.000000,0.250000,0,0);}
.m33_c01348{transform:matrix(0.267065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267065,0.000000,0.000000,0.250000,0,0);}
.m18_c01348{transform:matrix(0.268260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268260,0.000000,0.000000,0.250000,0,0);}
.m21_c01348{transform:matrix(0.269620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269620,0.000000,0.000000,0.250000,0,0);}
.m1_c01348{transform:matrix(0.270470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270470,0.000000,0.000000,0.250000,0,0);}
.m54_c01348{transform:matrix(0.271020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271020,0.000000,0.000000,0.250000,0,0);}
.m4e_c01348{transform:matrix(0.271530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271530,0.000000,0.000000,0.250000,0,0);}
.m26_c01348{transform:matrix(0.271585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271585,0.000000,0.000000,0.250000,0,0);}
.m55_c01348{transform:matrix(0.271715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271715,0.000000,0.000000,0.250000,0,0);}
.m2e_c01348{transform:matrix(0.271935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271935,0.000000,0.000000,0.250000,0,0);}
.m65_c01348{transform:matrix(0.272542,0.001363,-0.001250,0.249997,0,0);-ms-transform:matrix(0.272542,0.001363,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.272542,0.001363,-0.001250,0.249997,0,0);}
.m20_c01348{transform:matrix(0.272645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272645,0.000000,0.000000,0.250000,0,0);}
.m64_c01348{transform:matrix(0.273022,0.001365,-0.001250,0.249997,0,0);-ms-transform:matrix(0.273022,0.001365,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.273022,0.001365,-0.001250,0.249997,0,0);}
.m5c_c01348{transform:matrix(0.273125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273125,0.000000,0.000000,0.250000,0,0);}
.m32_c01348{transform:matrix(0.273650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273650,0.000000,0.000000,0.250000,0,0);}
.m12_c01348{transform:matrix(0.274395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274395,0.000000,0.000000,0.250000,0,0);}
.m51_c01348{transform:matrix(0.274545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274545,0.000000,0.000000,0.250000,0,0);}
.m7_c01348{transform:matrix(0.274850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274850,0.000000,0.000000,0.250000,0,0);}
.m62_c01348{transform:matrix(0.276447,0.001382,-0.001250,0.249997,0,0);-ms-transform:matrix(0.276447,0.001382,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.276447,0.001382,-0.001250,0.249997,0,0);}
.m5_c01348{transform:matrix(0.276595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276595,0.000000,0.000000,0.250000,0,0);}
.m29_c01348{transform:matrix(0.277490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277490,0.000000,0.000000,0.250000,0,0);}
.m11_c01348{transform:matrix(0.277830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277830,0.000000,0.000000,0.250000,0,0);}
.m69_c01348{transform:matrix(0.278212,0.001391,-0.001250,0.249997,0,0);-ms-transform:matrix(0.278212,0.001391,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.278212,0.001391,-0.001250,0.249997,0,0);}
.m35_c01348{transform:matrix(0.278490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278490,0.000000,0.000000,0.250000,0,0);}
.m50_c01348{transform:matrix(0.278850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278850,0.000000,0.000000,0.250000,0,0);}
.m15_c01348{transform:matrix(0.279150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279150,0.000000,0.000000,0.250000,0,0);}
.m4f_c01348{transform:matrix(0.279510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279510,0.000000,0.000000,0.250000,0,0);}
.m2a_c01348{transform:matrix(0.280560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280560,0.000000,0.000000,0.250000,0,0);}
.m27_c01348{transform:matrix(0.288170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288170,0.000000,0.000000,0.250000,0,0);}
.m23_c01348{transform:matrix(0.298315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298315,0.000000,0.000000,0.250000,0,0);}
.m25_c01348{transform:matrix(0.300060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300060,0.000000,0.000000,0.250000,0,0);}
.m2c_c01348{transform:matrix(0.308430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308430,0.000000,0.000000,0.250000,0,0);}
.m4_c01348{transform:matrix(1.288790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.288790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.288790,0.000000,0.000000,0.250000,0,0);}
.m3_c01348{transform:matrix(1.840805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.840805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.840805,0.000000,0.000000,0.250000,0,0);}
.v0_c01348{vertical-align:0.000000px;}
.ls0_c01348{letter-spacing:0.000000px;}
.sc__c01348{text-shadow:none;}
.sc0_c01348{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__c01348{-webkit-text-stroke:0px transparent;}
.sc0_c01348{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01348{word-spacing:0.000000px;}
.fc0_c01348{color:transparent;}
.fs1_c01348{font-size:30.000000px;}
.fs2_c01348{font-size:66.000000px;}
.fs0_c01348{font-size:72.000000px;}
.fs4_c01348{font-size:72.000900px;}
.fs3_c01348{font-size:78.000000px;}
.fs5_c01348{font-size:90.000000px;}
.fs6_c01348{font-size:96.000000px;}
.y0_c01348{bottom:0.000000px;}
.y28_c01348{bottom:555.120000px;}
.y27_c01348{bottom:592.585500px;}
.y26_c01348{bottom:626.791500px;}
.y21_c01348{bottom:680.064390px;}
.y20_c01348{bottom:680.064540px;}
.y23_c01348{bottom:680.064548px;}
.y24_c01348{bottom:680.064698px;}
.y22_c01348{bottom:680.064848px;}
.y25_c01348{bottom:680.065148px;}
.y1f_c01348{bottom:711.871733px;}
.y1e_c01348{bottom:712.259138px;}
.y1d_c01348{bottom:712.419788px;}
.y1c_c01348{bottom:712.967985px;}
.y1b_c01348{bottom:713.079923px;}
.y1a_c01348{bottom:713.621363px;}
.y19_c01348{bottom:713.784608px;}
.y18_c01348{bottom:714.004673px;}
.y17_c01348{bottom:714.389513px;}
.y16_c01348{bottom:714.610920px;}
.y15_c01348{bottom:714.960000px;}
.y14_c01348{bottom:750.322500px;}
.y13_c01348{bottom:782.313000px;}
.y12_c01348{bottom:782.755500px;}
.y11_c01348{bottom:782.919000px;}
.y10_c01348{bottom:783.078000px;}
.yf_c01348{bottom:783.571500px;}
.ye_c01348{bottom:784.122000px;}
.yd_c01348{bottom:784.284000px;}
.yc_c01348{bottom:784.452000px;}
.yb_c01348{bottom:785.095500px;}
.ya_c01348{bottom:785.428500px;}
.y9_c01348{bottom:819.987000px;}
.y8_c01348{bottom:855.294000px;}
.y7_c01348{bottom:890.821500px;}
.y6_c01348{bottom:925.701000px;}
.y5_c01348{bottom:960.241500px;}
.y4_c01348{bottom:995.145000px;}
.y3_c01348{bottom:1031.565000px;}
.y2_c01348{bottom:1105.609500px;}
.y1_c01348{bottom:1120.138500px;}
.h3_c01348{height:30.000000px;}
.h4_c01348{height:66.000000px;}
.h2_c01348{height:72.000000px;}
.h6_c01348{height:72.000900px;}
.h5_c01348{height:78.000000px;}
.h7_c01348{height:90.000000px;}
.h8_c01348{height:96.000000px;}
.h1_c01348{height:1250.250000px;}
.h0_c01348{height:1250.370000px;}
.w1_c01348{width:912.000000px;}
.w0_c01348{width:912.300000px;}
.x0_c01348{left:0.000000px;}
.x48_c01348{left:180.900000px;}
.xf_c01348{left:182.250000px;}
.x17_c01348{left:183.870000px;}
.x52_c01348{left:204.120000px;}
.x1e_c01348{left:214.110000px;}
.x41_c01348{left:220.363500px;}
.x47_c01348{left:224.911140px;}
.x27_c01348{left:237.060000px;}
.x49_c01348{left:238.140000px;}
.x39_c01348{left:248.598000px;}
.x10_c01348{left:258.930000px;}
.x18_c01348{left:269.730000px;}
.x4a_c01348{left:280.260000px;}
.x42_c01348{left:290.179500px;}
.x6_c01348{left:292.140000px;}
.x4_c01348{left:301.050000px;}
.x1_c01348{left:302.130000px;}
.x3d_c01348{left:303.207000px;}
.x1f_c01348{left:313.200000px;}
.x11_c01348{left:324.540000px;}
.x19_c01348{left:334.800000px;}
.x20_c01348{left:336.150000px;}
.x32_c01348{left:345.330000px;}
.x2_c01348{left:356.130000px;}
.x28_c01348{left:357.480000px;}
.x53_c01348{left:366.390000px;}
.x7_c01348{left:367.470000px;}
.x12_c01348{left:368.820000px;}
.x33_c01348{left:378.270000px;}
.x5_c01348{left:393.390000px;}
.x4b_c01348{left:400.950000px;}
.x3a_c01348{left:411.138000px;}
.x3e_c01348{left:413.097000px;}
.x21_c01348{left:433.080000px;}
.x1a_c01348{left:434.160000px;}
.x8_c01348{left:435.780000px;}
.x34_c01348{left:444.420000px;}
.x29_c01348{left:455.220000px;}
.x3f_c01348{left:465.747000px;}
.x13_c01348{left:466.830000px;}
.x4c_c01348{left:476.280000px;}
.x22_c01348{left:477.360000px;}
.x2e_c01348{left:488.160000px;}
.x54_c01348{left:497.880000px;}
.x2a_c01348{left:509.220000px;}
.x3_c01348{left:511.110000px;}
.x1b_c01348{left:521.910000px;}
.x2f_c01348{left:531.360000px;}
.x55_c01348{left:540.270000px;}
.x2b_c01348{left:542.700000px;}
.x23_c01348{left:554.040000px;}
.x9_c01348{left:555.120000px;}
.x30_c01348{left:564.300000px;}
.x4d_c01348{left:574.290000px;}
.x14_c01348{left:575.370000px;}
.x24_c01348{left:587.520000px;}
.x43_c01348{left:596.379000px;}
.xa_c01348{left:599.130000px;}
.x4e_c01348{left:607.500000px;}
.x1c_c01348{left:608.580000px;}
.x44_c01348{left:618.766500px;}
.x40_c01348{left:619.917000px;}
.x4f_c01348{left:639.360000px;}
.x35_c01348{left:652.320000px;}
.xb_c01348{left:653.400000px;}
.x56_c01348{left:671.760000px;}
.x36_c01348{left:673.110000px;}
.x3b_c01348{left:684.102000px;}
.x2c_c01348{left:685.260000px;}
.x15_c01348{left:686.340000px;}
.x50_c01348{left:705.780000px;}
.x25_c01348{left:707.400000px;}
.x3c_c01348{left:716.770500px;}
.xc_c01348{left:718.200000px;}
.x45_c01348{left:728.406000px;}
.x26_c01348{left:738.990000px;}
.x37_c01348{left:750.060000px;}
.x2d_c01348{left:751.140000px;}
.x46_c01348{left:760.536000px;}
.x51_c01348{left:771.660000px;}
.x31_c01348{left:773.010000px;}
.xd_c01348{left:784.890000px;}
.x16_c01348{left:795.690000px;}
.x57_c01348{left:804.330000px;}
.x1d_c01348{left:805.410000px;}
.x38_c01348{left:838.080000px;}
.xe_c01348{left:839.700000px;}
@media print{
.v0_c01348{vertical-align:0.000000pt;}
.ls0_c01348{letter-spacing:0.000000pt;}
.ws0_c01348{word-spacing:0.000000pt;}
.fs1_c01348{font-size:26.666667pt;}
.fs2_c01348{font-size:58.666667pt;}
.fs0_c01348{font-size:64.000000pt;}
.fs4_c01348{font-size:64.000800pt;}
.fs3_c01348{font-size:69.333333pt;}
.fs5_c01348{font-size:80.000000pt;}
.fs6_c01348{font-size:85.333333pt;}
.y0_c01348{bottom:0.000000pt;}
.y28_c01348{bottom:493.440000pt;}
.y27_c01348{bottom:526.742667pt;}
.y26_c01348{bottom:557.148000pt;}
.y21_c01348{bottom:604.501680pt;}
.y20_c01348{bottom:604.501813pt;}
.y23_c01348{bottom:604.501820pt;}
.y24_c01348{bottom:604.501953pt;}
.y22_c01348{bottom:604.502087pt;}
.y25_c01348{bottom:604.502353pt;}
.y1f_c01348{bottom:632.774873pt;}
.y1e_c01348{bottom:633.119233pt;}
.y1d_c01348{bottom:633.262033pt;}
.y1c_c01348{bottom:633.749320pt;}
.y1b_c01348{bottom:633.848820pt;}
.y1a_c01348{bottom:634.330100pt;}
.y19_c01348{bottom:634.475207pt;}
.y18_c01348{bottom:634.670820pt;}
.y17_c01348{bottom:635.012900pt;}
.y16_c01348{bottom:635.209707pt;}
.y15_c01348{bottom:635.520000pt;}
.y14_c01348{bottom:666.953333pt;}
.y13_c01348{bottom:695.389333pt;}
.y12_c01348{bottom:695.782667pt;}
.y11_c01348{bottom:695.928000pt;}
.y10_c01348{bottom:696.069333pt;}
.yf_c01348{bottom:696.508000pt;}
.ye_c01348{bottom:696.997333pt;}
.yd_c01348{bottom:697.141333pt;}
.yc_c01348{bottom:697.290667pt;}
.yb_c01348{bottom:697.862667pt;}
.ya_c01348{bottom:698.158667pt;}
.y9_c01348{bottom:728.877333pt;}
.y8_c01348{bottom:760.261333pt;}
.y7_c01348{bottom:791.841333pt;}
.y6_c01348{bottom:822.845333pt;}
.y5_c01348{bottom:853.548000pt;}
.y4_c01348{bottom:884.573333pt;}
.y3_c01348{bottom:916.946667pt;}
.y2_c01348{bottom:982.764000pt;}
.y1_c01348{bottom:995.678667pt;}
.h3_c01348{height:26.666667pt;}
.h4_c01348{height:58.666667pt;}
.h2_c01348{height:64.000000pt;}
.h6_c01348{height:64.000800pt;}
.h5_c01348{height:69.333333pt;}
.h7_c01348{height:80.000000pt;}
.h8_c01348{height:85.333333pt;}
.h1_c01348{height:1111.333333pt;}
.h0_c01348{height:1111.440000pt;}
.w1_c01348{width:810.666667pt;}
.w0_c01348{width:810.933333pt;}
.x0_c01348{left:0.000000pt;}
.x48_c01348{left:160.800000pt;}
.xf_c01348{left:162.000000pt;}
.x17_c01348{left:163.440000pt;}
.x52_c01348{left:181.440000pt;}
.x1e_c01348{left:190.320000pt;}
.x41_c01348{left:195.878667pt;}
.x47_c01348{left:199.921013pt;}
.x27_c01348{left:210.720000pt;}
.x49_c01348{left:211.680000pt;}
.x39_c01348{left:220.976000pt;}
.x10_c01348{left:230.160000pt;}
.x18_c01348{left:239.760000pt;}
.x4a_c01348{left:249.120000pt;}
.x42_c01348{left:257.937333pt;}
.x6_c01348{left:259.680000pt;}
.x4_c01348{left:267.600000pt;}
.x1_c01348{left:268.560000pt;}
.x3d_c01348{left:269.517333pt;}
.x1f_c01348{left:278.400000pt;}
.x11_c01348{left:288.480000pt;}
.x19_c01348{left:297.600000pt;}
.x20_c01348{left:298.800000pt;}
.x32_c01348{left:306.960000pt;}
.x2_c01348{left:316.560000pt;}
.x28_c01348{left:317.760000pt;}
.x53_c01348{left:325.680000pt;}
.x7_c01348{left:326.640000pt;}
.x12_c01348{left:327.840000pt;}
.x33_c01348{left:336.240000pt;}
.x5_c01348{left:349.680000pt;}
.x4b_c01348{left:356.400000pt;}
.x3a_c01348{left:365.456000pt;}
.x3e_c01348{left:367.197333pt;}
.x21_c01348{left:384.960000pt;}
.x1a_c01348{left:385.920000pt;}
.x8_c01348{left:387.360000pt;}
.x34_c01348{left:395.040000pt;}
.x29_c01348{left:404.640000pt;}
.x3f_c01348{left:413.997333pt;}
.x13_c01348{left:414.960000pt;}
.x4c_c01348{left:423.360000pt;}
.x22_c01348{left:424.320000pt;}
.x2e_c01348{left:433.920000pt;}
.x54_c01348{left:442.560000pt;}
.x2a_c01348{left:452.640000pt;}
.x3_c01348{left:454.320000pt;}
.x1b_c01348{left:463.920000pt;}
.x2f_c01348{left:472.320000pt;}
.x55_c01348{left:480.240000pt;}
.x2b_c01348{left:482.400000pt;}
.x23_c01348{left:492.480000pt;}
.x9_c01348{left:493.440000pt;}
.x30_c01348{left:501.600000pt;}
.x4d_c01348{left:510.480000pt;}
.x14_c01348{left:511.440000pt;}
.x24_c01348{left:522.240000pt;}
.x43_c01348{left:530.114667pt;}
.xa_c01348{left:532.560000pt;}
.x4e_c01348{left:540.000000pt;}
.x1c_c01348{left:540.960000pt;}
.x44_c01348{left:550.014667pt;}
.x40_c01348{left:551.037333pt;}
.x4f_c01348{left:568.320000pt;}
.x35_c01348{left:579.840000pt;}
.xb_c01348{left:580.800000pt;}
.x56_c01348{left:597.120000pt;}
.x36_c01348{left:598.320000pt;}
.x3b_c01348{left:608.090667pt;}
.x2c_c01348{left:609.120000pt;}
.x15_c01348{left:610.080000pt;}
.x50_c01348{left:627.360000pt;}
.x25_c01348{left:628.800000pt;}
.x3c_c01348{left:637.129333pt;}
.xc_c01348{left:638.400000pt;}
.x45_c01348{left:647.472000pt;}
.x26_c01348{left:656.880000pt;}
.x37_c01348{left:666.720000pt;}
.x2d_c01348{left:667.680000pt;}
.x46_c01348{left:676.032000pt;}
.x51_c01348{left:685.920000pt;}
.x31_c01348{left:687.120000pt;}
.xd_c01348{left:697.680000pt;}
.x16_c01348{left:707.280000pt;}
.x57_c01348{left:714.960000pt;}
.x1d_c01348{left:715.920000pt;}
.x38_c01348{left:744.960000pt;}
.xe_c01348{left:746.400000pt;}
}





/* 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_c01349 {
    display:none;
  }
  .loading-indicator_c01349.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01349 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_c01349 { 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_c01349" -> "#page-container .classname_c01349")
 */
.pf_c01349 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01349 { /* 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_c01349.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01349 { /* 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_c01349 { /* 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_c01349 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01349 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01349 {overflow:visible;}
  }
}
.c_c01349 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01349 { /* 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_c01349:after { /* webkit #35443 */
  content: '';
}
.t_c01349:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01349 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 */
}
.__c01349 { /* 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_c01349 { /* info for Javascript */
  display:none;
}
.l_c01349 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01349 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01349 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01349: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_c01349 {
    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_c01349.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01349.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_c01349 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01349{font-family:sans-serif;visibility:hidden;}
.sc__c01349{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01349{-webkit-text-stroke:0px transparent;}
}
.y0_c01349{bottom:0.000000px;}
.h1_c01349{height:1250.250000px;}
.h0_c01349{height:1250.370000px;}
.w1_c01349{width:912.000000px;}
.w0_c01349{width:912.300000px;}
.x0_c01349{left:0.000000px;}
@media print{
.y0_c01349{bottom:0.000000pt;}
.h1_c01349{height:1111.333333pt;}
.h0_c01349{height:1111.440000pt;}
.w1_c01349{width:810.666667pt;}
.w0_c01349{width:810.933333pt;}
.x0_c01349{left:0.000000pt;}
}





/* 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_c01350 {
    display:none;
  }
  .loading-indicator_c01350.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01350 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_c01350 { 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_c01350" -> "#page-container .classname_c01350")
 */
.pf_c01350 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01350 { /* 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_c01350.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01350 { /* 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_c01350 { /* 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_c01350 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01350 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01350 {overflow:visible;}
  }
}
.c_c01350 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01350 { /* 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_c01350:after { /* webkit #35443 */
  content: '';
}
.t_c01350:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01350 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 */
}
.__c01350 { /* 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_c01350 { /* info for Javascript */
  display:none;
}
.l_c01350 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01350 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01350 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01350: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_c01350 {
    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_c01350.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01350.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_c01350 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01350{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01350;src:url('chunks/assets/font_fabf4b590f7fb32aea93ffb2.woff2')format("woff");}.ff1_c01350{font-family:ff1_c01350;line-height:1.000000;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;}
.m46_c01350{transform:matrix(0.025912,0.000415,-0.003999,0.249968,0,0);-ms-transform:matrix(0.025912,0.000415,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.025912,0.000415,-0.003999,0.249968,0,0);}
.m7a_c01350{transform:matrix(0.034571,0.000553,-0.003999,0.249968,0,0);-ms-transform:matrix(0.034571,0.000553,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.034571,0.000553,-0.003999,0.249968,0,0);}
.mb8_c01350{transform:matrix(0.035569,0.000676,-0.004749,0.249955,0,0);-ms-transform:matrix(0.035569,0.000676,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.035569,0.000676,-0.004749,0.249955,0,0);}
.ma6_c01350{transform:matrix(0.055678,0.000891,-0.003999,0.249968,0,0);-ms-transform:matrix(0.055678,0.000891,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.055678,0.000891,-0.003999,0.249968,0,0);}
.m79_c01350{transform:matrix(0.079095,0.001266,-0.003999,0.249968,0,0);-ms-transform:matrix(0.079095,0.001266,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.079095,0.001266,-0.003999,0.249968,0,0);}
.m9a_c01350{transform:matrix(0.079905,0.001278,-0.003999,0.249968,0,0);-ms-transform:matrix(0.079905,0.001278,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.079905,0.001278,-0.003999,0.249968,0,0);}
.m11e_c01350{transform:matrix(0.142428,0.001852,-0.003250,0.249979,0,0);-ms-transform:matrix(0.142428,0.001852,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.142428,0.001852,-0.003250,0.249979,0,0);}
.m52_c01350{transform:matrix(0.143512,0.002296,-0.003999,0.249968,0,0);-ms-transform:matrix(0.143512,0.002296,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.143512,0.002296,-0.003999,0.249968,0,0);}
.m11c_c01350{transform:matrix(0.151112,0.001964,-0.003250,0.249979,0,0);-ms-transform:matrix(0.151112,0.001964,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.151112,0.001964,-0.003250,0.249979,0,0);}
.mcb_c01350{transform:matrix(0.157986,0.003002,-0.004749,0.249955,0,0);-ms-transform:matrix(0.157986,0.003002,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.157986,0.003002,-0.004749,0.249955,0,0);}
.mc5_c01350{transform:matrix(0.158996,0.003021,-0.004749,0.249955,0,0);-ms-transform:matrix(0.158996,0.003021,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.158996,0.003021,-0.004749,0.249955,0,0);}
.m0_c01350{transform:matrix(0.161230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161230,0.000000,0.000000,0.250000,0,0);}
.m119_c01350{transform:matrix(0.161706,0.002102,-0.003250,0.249979,0,0);-ms-transform:matrix(0.161706,0.002102,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.161706,0.002102,-0.003250,0.249979,0,0);}
.ma7_c01350{transform:matrix(0.162804,0.002605,-0.003999,0.249968,0,0);-ms-transform:matrix(0.162804,0.002605,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.162804,0.002605,-0.003999,0.249968,0,0);}
.m11a_c01350{transform:matrix(0.163131,0.002121,-0.003250,0.249979,0,0);-ms-transform:matrix(0.163131,0.002121,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.163131,0.002121,-0.003250,0.249979,0,0);}
.m123_c01350{transform:matrix(0.163956,0.002131,-0.003250,0.249979,0,0);-ms-transform:matrix(0.163956,0.002131,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.163956,0.002131,-0.003250,0.249979,0,0);}
.m11d_c01350{transform:matrix(0.165351,0.002150,-0.003250,0.249979,0,0);-ms-transform:matrix(0.165351,0.002150,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.165351,0.002150,-0.003250,0.249979,0,0);}
.m120_c01350{transform:matrix(0.165821,0.002156,-0.003250,0.249979,0,0);-ms-transform:matrix(0.165821,0.002156,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.165821,0.002156,-0.003250,0.249979,0,0);}
.m122_c01350{transform:matrix(0.167916,0.002183,-0.003250,0.249979,0,0);-ms-transform:matrix(0.167916,0.002183,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.167916,0.002183,-0.003250,0.249979,0,0);}
.ma9_c01350{transform:matrix(0.169393,0.002710,-0.003999,0.249968,0,0);-ms-transform:matrix(0.169393,0.002710,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.169393,0.002710,-0.003999,0.249968,0,0);}
.mcd_c01350{transform:matrix(0.170264,0.003235,-0.004749,0.249955,0,0);-ms-transform:matrix(0.170264,0.003235,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.170264,0.003235,-0.004749,0.249955,0,0);}
.m11b_c01350{transform:matrix(0.171076,0.002224,-0.003250,0.249979,0,0);-ms-transform:matrix(0.171076,0.002224,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.171076,0.002224,-0.003250,0.249979,0,0);}
.mce_c01350{transform:matrix(0.171534,0.003259,-0.004749,0.249955,0,0);-ms-transform:matrix(0.171534,0.003259,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.171534,0.003259,-0.004749,0.249955,0,0);}
.m124_c01350{transform:matrix(0.171625,0.002231,-0.003250,0.249979,0,0);-ms-transform:matrix(0.171625,0.002231,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.171625,0.002231,-0.003250,0.249979,0,0);}
.m125_c01350{transform:matrix(0.172320,0.002240,-0.003250,0.249979,0,0);-ms-transform:matrix(0.172320,0.002240,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.172320,0.002240,-0.003250,0.249979,0,0);}
.mc8_c01350{transform:matrix(0.172669,0.003281,-0.004749,0.249955,0,0);-ms-transform:matrix(0.172669,0.003281,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.172669,0.003281,-0.004749,0.249955,0,0);}
.m11f_c01350{transform:matrix(0.173125,0.002251,-0.003250,0.249979,0,0);-ms-transform:matrix(0.173125,0.002251,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.173125,0.002251,-0.003250,0.249979,0,0);}
.mc9_c01350{transform:matrix(0.173784,0.003302,-0.004749,0.249955,0,0);-ms-transform:matrix(0.173784,0.003302,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.173784,0.003302,-0.004749,0.249955,0,0);}
.mcc_c01350{transform:matrix(0.174009,0.003306,-0.004749,0.249955,0,0);-ms-transform:matrix(0.174009,0.003306,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.174009,0.003306,-0.004749,0.249955,0,0);}
.m121_c01350{transform:matrix(0.175560,0.002282,-0.003250,0.249979,0,0);-ms-transform:matrix(0.175560,0.002282,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.175560,0.002282,-0.003250,0.249979,0,0);}
.mc6_c01350{transform:matrix(0.175653,0.003337,-0.004749,0.249955,0,0);-ms-transform:matrix(0.175653,0.003337,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.175653,0.003337,-0.004749,0.249955,0,0);}
.mca_c01350{transform:matrix(0.175808,0.003340,-0.004749,0.249955,0,0);-ms-transform:matrix(0.175808,0.003340,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.175808,0.003340,-0.004749,0.249955,0,0);}
.m33_c01350{transform:matrix(0.182032,0.002913,-0.003999,0.249968,0,0);-ms-transform:matrix(0.182032,0.002913,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.182032,0.002913,-0.003999,0.249968,0,0);}
.ma8_c01350{transform:matrix(0.184081,0.002945,-0.003999,0.249968,0,0);-ms-transform:matrix(0.184081,0.002945,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.184081,0.002945,-0.003999,0.249968,0,0);}
.md8_c01350{transform:matrix(0.184179,0.002763,-0.003750,0.249972,0,0);-ms-transform:matrix(0.184179,0.002763,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.184179,0.002763,-0.003750,0.249972,0,0);}
.mc4_c01350{transform:matrix(0.184547,0.003506,-0.004749,0.249955,0,0);-ms-transform:matrix(0.184547,0.003506,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.184547,0.003506,-0.004749,0.249955,0,0);}
.md2_c01350{transform:matrix(0.188584,0.002829,-0.003750,0.249972,0,0);-ms-transform:matrix(0.188584,0.002829,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.188584,0.002829,-0.003750,0.249972,0,0);}
.md6_c01350{transform:matrix(0.189714,0.002846,-0.003750,0.249972,0,0);-ms-transform:matrix(0.189714,0.002846,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.189714,0.002846,-0.003750,0.249972,0,0);}
.m38_c01350{transform:matrix(0.197500,0.003160,-0.003999,0.249968,0,0);-ms-transform:matrix(0.197500,0.003160,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.197500,0.003160,-0.003999,0.249968,0,0);}
.mc1_c01350{transform:matrix(0.198239,0.003767,-0.004749,0.249955,0,0);-ms-transform:matrix(0.198239,0.003767,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.198239,0.003767,-0.004749,0.249955,0,0);}
.mab_c01350{transform:matrix(0.198570,0.003177,-0.003999,0.249968,0,0);-ms-transform:matrix(0.198570,0.003177,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.198570,0.003177,-0.003999,0.249968,0,0);}
.mde_c01350{transform:matrix(0.201222,0.003018,-0.003750,0.249972,0,0);-ms-transform:matrix(0.201222,0.003018,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.201222,0.003018,-0.003750,0.249972,0,0);}
.me8_c01350{transform:matrix(0.201877,0.003634,-0.004499,0.249960,0,0);-ms-transform:matrix(0.201877,0.003634,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.201877,0.003634,-0.004499,0.249960,0,0);}
.m107_c01350{transform:matrix(0.203241,0.004471,-0.005499,0.249940,0,0);-ms-transform:matrix(0.203241,0.004471,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.203241,0.004471,-0.005499,0.249940,0,0);}
.mcf_c01350{transform:matrix(0.204772,0.003072,-0.003750,0.249972,0,0);-ms-transform:matrix(0.204772,0.003072,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.204772,0.003072,-0.003750,0.249972,0,0);}
.md9_c01350{transform:matrix(0.205617,0.003084,-0.003750,0.249972,0,0);-ms-transform:matrix(0.205617,0.003084,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.205617,0.003084,-0.003750,0.249972,0,0);}
.m22_c01350{transform:matrix(0.206447,0.003097,-0.003750,0.249972,0,0);-ms-transform:matrix(0.206447,0.003097,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.206447,0.003097,-0.003750,0.249972,0,0);}
.me7_c01350{transform:matrix(0.206452,0.003716,-0.004499,0.249960,0,0);-ms-transform:matrix(0.206452,0.003716,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.206452,0.003716,-0.004499,0.249960,0,0);}
.m37_c01350{transform:matrix(0.207213,0.003315,-0.003999,0.249968,0,0);-ms-transform:matrix(0.207213,0.003315,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.207213,0.003315,-0.003999,0.249968,0,0);}
.me6_c01350{transform:matrix(0.207391,0.003733,-0.004499,0.249960,0,0);-ms-transform:matrix(0.207391,0.003733,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.207391,0.003733,-0.004499,0.249960,0,0);}
.mf8_c01350{transform:matrix(0.207515,0.004565,-0.005499,0.249940,0,0);-ms-transform:matrix(0.207515,0.004565,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.207515,0.004565,-0.005499,0.249940,0,0);}
.meb_c01350{transform:matrix(0.207536,0.003736,-0.004499,0.249960,0,0);-ms-transform:matrix(0.207536,0.003736,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.207536,0.003736,-0.004499,0.249960,0,0);}
.m4a_c01350{transform:matrix(0.207868,0.003326,-0.003999,0.249968,0,0);-ms-transform:matrix(0.207868,0.003326,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.207868,0.003326,-0.003999,0.249968,0,0);}
.maa_c01350{transform:matrix(0.208263,0.003332,-0.003999,0.249968,0,0);-ms-transform:matrix(0.208263,0.003332,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.208263,0.003332,-0.003999,0.249968,0,0);}
.mea_c01350{transform:matrix(0.208301,0.003749,-0.004499,0.249960,0,0);-ms-transform:matrix(0.208301,0.003749,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.208301,0.003749,-0.004499,0.249960,0,0);}
.me4_c01350{transform:matrix(0.208771,0.003758,-0.004499,0.249960,0,0);-ms-transform:matrix(0.208771,0.003758,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.208771,0.003758,-0.004499,0.249960,0,0);}
.me3_c01350{transform:matrix(0.209771,0.003776,-0.004499,0.249960,0,0);-ms-transform:matrix(0.209771,0.003776,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.209771,0.003776,-0.004499,0.249960,0,0);}
.m85_c01350{transform:matrix(0.210108,0.003362,-0.003999,0.249968,0,0);-ms-transform:matrix(0.210108,0.003362,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.210108,0.003362,-0.003999,0.249968,0,0);}
.md4_c01350{transform:matrix(0.210501,0.003158,-0.003750,0.249972,0,0);-ms-transform:matrix(0.210501,0.003158,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.210501,0.003158,-0.003750,0.249972,0,0);}
.m36_c01350{transform:matrix(0.214643,0.003434,-0.003999,0.249968,0,0);-ms-transform:matrix(0.214643,0.003434,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.214643,0.003434,-0.003999,0.249968,0,0);}
.m43_c01350{transform:matrix(0.215032,0.003441,-0.003999,0.249968,0,0);-ms-transform:matrix(0.215032,0.003441,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.215032,0.003441,-0.003999,0.249968,0,0);}
.md5_c01350{transform:matrix(0.215391,0.003231,-0.003750,0.249972,0,0);-ms-transform:matrix(0.215391,0.003231,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.215391,0.003231,-0.003750,0.249972,0,0);}
.m68_c01350{transform:matrix(0.215727,0.003452,-0.003999,0.249968,0,0);-ms-transform:matrix(0.215727,0.003452,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.215727,0.003452,-0.003999,0.249968,0,0);}
.m2e_c01350{transform:matrix(0.215762,0.003452,-0.003999,0.249968,0,0);-ms-transform:matrix(0.215762,0.003452,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.215762,0.003452,-0.003999,0.249968,0,0);}
.m4c_c01350{transform:matrix(0.215977,0.003456,-0.003999,0.249968,0,0);-ms-transform:matrix(0.215977,0.003456,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.215977,0.003456,-0.003999,0.249968,0,0);}
.m6f_c01350{transform:matrix(0.217742,0.003484,-0.003999,0.249968,0,0);-ms-transform:matrix(0.217742,0.003484,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.217742,0.003484,-0.003999,0.249968,0,0);}
.m106_c01350{transform:matrix(0.218202,0.004800,-0.005499,0.249940,0,0);-ms-transform:matrix(0.218202,0.004800,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.218202,0.004800,-0.005499,0.249940,0,0);}
.m34_c01350{transform:matrix(0.218637,0.003498,-0.003999,0.249968,0,0);-ms-transform:matrix(0.218637,0.003498,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.218637,0.003498,-0.003999,0.249968,0,0);}
.md3_c01350{transform:matrix(0.219570,0.003294,-0.003750,0.249972,0,0);-ms-transform:matrix(0.219570,0.003294,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.219570,0.003294,-0.003750,0.249972,0,0);}
.m27_c01350{transform:matrix(0.219835,0.003298,-0.003750,0.249972,0,0);-ms-transform:matrix(0.219835,0.003298,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.219835,0.003298,-0.003750,0.249972,0,0);}
.m2c_c01350{transform:matrix(0.219932,0.003519,-0.003999,0.249968,0,0);-ms-transform:matrix(0.219932,0.003519,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.219932,0.003519,-0.003999,0.249968,0,0);}
.mfd_c01350{transform:matrix(0.219992,0.004840,-0.005499,0.249940,0,0);-ms-transform:matrix(0.219992,0.004840,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.219992,0.004840,-0.005499,0.249940,0,0);}
.m25_c01350{transform:matrix(0.219995,0.003300,-0.003750,0.249972,0,0);-ms-transform:matrix(0.219995,0.003300,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.219995,0.003300,-0.003750,0.249972,0,0);}
.me5_c01350{transform:matrix(0.220109,0.003962,-0.004499,0.249960,0,0);-ms-transform:matrix(0.220109,0.003962,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.220109,0.003962,-0.004499,0.249960,0,0);}
.me9_c01350{transform:matrix(0.220794,0.003974,-0.004499,0.249960,0,0);-ms-transform:matrix(0.220794,0.003974,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.220794,0.003974,-0.004499,0.249960,0,0);}
.mf1_c01350{transform:matrix(0.220822,0.004858,-0.005499,0.249940,0,0);-ms-transform:matrix(0.220822,0.004858,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.220822,0.004858,-0.005499,0.249940,0,0);}
.m70_c01350{transform:matrix(0.221187,0.003539,-0.003999,0.249968,0,0);-ms-transform:matrix(0.221187,0.003539,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.221187,0.003539,-0.003999,0.249968,0,0);}
.mfa_c01350{transform:matrix(0.221401,0.004871,-0.005499,0.249940,0,0);-ms-transform:matrix(0.221401,0.004871,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.221401,0.004871,-0.005499,0.249940,0,0);}
.md0_c01350{transform:matrix(0.221820,0.003327,-0.003750,0.249972,0,0);-ms-transform:matrix(0.221820,0.003327,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.221820,0.003327,-0.003750,0.249972,0,0);}
.mbc_c01350{transform:matrix(0.221845,0.004215,-0.004749,0.249955,0,0);-ms-transform:matrix(0.221845,0.004215,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.221845,0.004215,-0.004749,0.249955,0,0);}
.m3e_c01350{transform:matrix(0.221857,0.003550,-0.003999,0.249968,0,0);-ms-transform:matrix(0.221857,0.003550,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.221857,0.003550,-0.003999,0.249968,0,0);}
.m2f_c01350{transform:matrix(0.222227,0.003556,-0.003999,0.249968,0,0);-ms-transform:matrix(0.222227,0.003556,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.222227,0.003556,-0.003999,0.249968,0,0);}
.ma4_c01350{transform:matrix(0.222462,0.003559,-0.003999,0.249968,0,0);-ms-transform:matrix(0.222462,0.003559,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.222462,0.003559,-0.003999,0.249968,0,0);}
.m94_c01350{transform:matrix(0.222811,0.003565,-0.003999,0.249968,0,0);-ms-transform:matrix(0.222811,0.003565,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.222811,0.003565,-0.003999,0.249968,0,0);}
.m6a_c01350{transform:matrix(0.222816,0.003565,-0.003999,0.249968,0,0);-ms-transform:matrix(0.222816,0.003565,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.222816,0.003565,-0.003999,0.249968,0,0);}
.m72_c01350{transform:matrix(0.223151,0.003570,-0.003999,0.249968,0,0);-ms-transform:matrix(0.223151,0.003570,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.223151,0.003570,-0.003999,0.249968,0,0);}
.m60_c01350{transform:matrix(0.223351,0.003574,-0.003999,0.249968,0,0);-ms-transform:matrix(0.223351,0.003574,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.223351,0.003574,-0.003999,0.249968,0,0);}
.m6c_c01350{transform:matrix(0.223786,0.003581,-0.003999,0.249968,0,0);-ms-transform:matrix(0.223786,0.003581,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.223786,0.003581,-0.003999,0.249968,0,0);}
.md7_c01350{transform:matrix(0.224355,0.003365,-0.003750,0.249972,0,0);-ms-transform:matrix(0.224355,0.003365,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.224355,0.003365,-0.003750,0.249972,0,0);}
.mf2_c01350{transform:matrix(0.224546,0.004940,-0.005499,0.249940,0,0);-ms-transform:matrix(0.224546,0.004940,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.224546,0.004940,-0.005499,0.249940,0,0);}
.m73_c01350{transform:matrix(0.224626,0.003594,-0.003999,0.249968,0,0);-ms-transform:matrix(0.224626,0.003594,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.224626,0.003594,-0.003999,0.249968,0,0);}
.m9c_c01350{transform:matrix(0.224956,0.003599,-0.003999,0.249968,0,0);-ms-transform:matrix(0.224956,0.003599,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.224956,0.003599,-0.003999,0.249968,0,0);}
.m5a_c01350{transform:matrix(0.225286,0.003605,-0.003999,0.249968,0,0);-ms-transform:matrix(0.225286,0.003605,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.225286,0.003605,-0.003999,0.249968,0,0);}
.md1_c01350{transform:matrix(0.225545,0.003383,-0.003750,0.249972,0,0);-ms-transform:matrix(0.225545,0.003383,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.225545,0.003383,-0.003750,0.249972,0,0);}
.m30_c01350{transform:matrix(0.226301,0.003621,-0.003999,0.249968,0,0);-ms-transform:matrix(0.226301,0.003621,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.226301,0.003621,-0.003999,0.249968,0,0);}
.mec_c01350{transform:matrix(0.226418,0.004076,-0.004499,0.249960,0,0);-ms-transform:matrix(0.226418,0.004076,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.226418,0.004076,-0.004499,0.249960,0,0);}
.m62_c01350{transform:matrix(0.227076,0.003633,-0.003999,0.249968,0,0);-ms-transform:matrix(0.227076,0.003633,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.227076,0.003633,-0.003999,0.249968,0,0);}
.mef_c01350{transform:matrix(0.227100,0.004996,-0.005499,0.249940,0,0);-ms-transform:matrix(0.227100,0.004996,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.227100,0.004996,-0.005499,0.249940,0,0);}
.m40_c01350{transform:matrix(0.227231,0.003636,-0.003999,0.249968,0,0);-ms-transform:matrix(0.227231,0.003636,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.227231,0.003636,-0.003999,0.249968,0,0);}
.m32_c01350{transform:matrix(0.227291,0.003637,-0.003999,0.249968,0,0);-ms-transform:matrix(0.227291,0.003637,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.227291,0.003637,-0.003999,0.249968,0,0);}
.mf6_c01350{transform:matrix(0.227520,0.005005,-0.005499,0.249940,0,0);-ms-transform:matrix(0.227520,0.005005,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.227520,0.005005,-0.005499,0.249940,0,0);}
.m3c_c01350{transform:matrix(0.227821,0.003645,-0.003999,0.249968,0,0);-ms-transform:matrix(0.227821,0.003645,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.227821,0.003645,-0.003999,0.249968,0,0);}
.m58_c01350{transform:matrix(0.227826,0.003645,-0.003999,0.249968,0,0);-ms-transform:matrix(0.227826,0.003645,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.227826,0.003645,-0.003999,0.249968,0,0);}
.mb6_c01350{transform:matrix(0.228249,0.004337,-0.004749,0.249955,0,0);-ms-transform:matrix(0.228249,0.004337,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.228249,0.004337,-0.004749,0.249955,0,0);}
.m53_c01350{transform:matrix(0.228601,0.003658,-0.003999,0.249968,0,0);-ms-transform:matrix(0.228601,0.003658,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.228601,0.003658,-0.003999,0.249968,0,0);}
.m2d_c01350{transform:matrix(0.228736,0.003660,-0.003999,0.249968,0,0);-ms-transform:matrix(0.228736,0.003660,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.228736,0.003660,-0.003999,0.249968,0,0);}
.mdb_c01350{transform:matrix(0.229884,0.003448,-0.003750,0.249972,0,0);-ms-transform:matrix(0.229884,0.003448,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.229884,0.003448,-0.003750,0.249972,0,0);}
.mc7_c01350{transform:matrix(0.230408,0.004378,-0.004749,0.249955,0,0);-ms-transform:matrix(0.230408,0.004378,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.230408,0.004378,-0.004749,0.249955,0,0);}
.m56_c01350{transform:matrix(0.230416,0.003687,-0.003999,0.249968,0,0);-ms-transform:matrix(0.230416,0.003687,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.230416,0.003687,-0.003999,0.249968,0,0);}
.m23_c01350{transform:matrix(0.230419,0.003456,-0.003750,0.249972,0,0);-ms-transform:matrix(0.230419,0.003456,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.230419,0.003456,-0.003750,0.249972,0,0);}
.me2_c01350{transform:matrix(0.230769,0.003462,-0.003750,0.249972,0,0);-ms-transform:matrix(0.230769,0.003462,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.230769,0.003462,-0.003750,0.249972,0,0);}
.m35_c01350{transform:matrix(0.231190,0.003699,-0.003999,0.249968,0,0);-ms-transform:matrix(0.231190,0.003699,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.231190,0.003699,-0.003999,0.249968,0,0);}
.med_c01350{transform:matrix(0.231864,0.005101,-0.005499,0.249940,0,0);-ms-transform:matrix(0.231864,0.005101,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.231864,0.005101,-0.005499,0.249940,0,0);}
.m77_c01350{transform:matrix(0.232075,0.003713,-0.003999,0.249968,0,0);-ms-transform:matrix(0.232075,0.003713,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.232075,0.003713,-0.003999,0.249968,0,0);}
.mf9_c01350{transform:matrix(0.232299,0.005111,-0.005499,0.249940,0,0);-ms-transform:matrix(0.232299,0.005111,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.232299,0.005111,-0.005499,0.249940,0,0);}
.m41_c01350{transform:matrix(0.232360,0.003718,-0.003999,0.249968,0,0);-ms-transform:matrix(0.232360,0.003718,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.232360,0.003718,-0.003999,0.249968,0,0);}
.m5e_c01350{transform:matrix(0.232475,0.003720,-0.003999,0.249968,0,0);-ms-transform:matrix(0.232475,0.003720,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.232475,0.003720,-0.003999,0.249968,0,0);}
.m5c_c01350{transform:matrix(0.232915,0.003727,-0.003999,0.249968,0,0);-ms-transform:matrix(0.232915,0.003727,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.232915,0.003727,-0.003999,0.249968,0,0);}
.m92_c01350{transform:matrix(0.233345,0.003734,-0.003999,0.249968,0,0);-ms-transform:matrix(0.233345,0.003734,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.233345,0.003734,-0.003999,0.249968,0,0);}
.m31_c01350{transform:matrix(0.233460,0.003735,-0.003999,0.249968,0,0);-ms-transform:matrix(0.233460,0.003735,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.233460,0.003735,-0.003999,0.249968,0,0);}
.m21_c01350{transform:matrix(0.233609,0.003504,-0.003750,0.249972,0,0);-ms-transform:matrix(0.233609,0.003504,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.233609,0.003504,-0.003750,0.249972,0,0);}
.mdd_c01350{transform:matrix(0.234534,0.003518,-0.003750,0.249972,0,0);-ms-transform:matrix(0.234534,0.003518,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.234534,0.003518,-0.003750,0.249972,0,0);}
.mbf_c01350{transform:matrix(0.234648,0.004458,-0.004749,0.249955,0,0);-ms-transform:matrix(0.234648,0.004458,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.234648,0.004458,-0.004749,0.249955,0,0);}
.m95_c01350{transform:matrix(0.234870,0.003758,-0.003999,0.249968,0,0);-ms-transform:matrix(0.234870,0.003758,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.234870,0.003758,-0.003999,0.249968,0,0);}
.mdf_c01350{transform:matrix(0.234899,0.003523,-0.003750,0.249972,0,0);-ms-transform:matrix(0.234899,0.003523,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.234899,0.003523,-0.003750,0.249972,0,0);}
.me0_c01350{transform:matrix(0.234964,0.003524,-0.003750,0.249972,0,0);-ms-transform:matrix(0.234964,0.003524,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.234964,0.003524,-0.003750,0.249972,0,0);}
.ma1_c01350{transform:matrix(0.235100,0.003762,-0.003999,0.249968,0,0);-ms-transform:matrix(0.235100,0.003762,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.235100,0.003762,-0.003999,0.249968,0,0);}
.mae_c01350{transform:matrix(0.235587,0.004476,-0.004749,0.249955,0,0);-ms-transform:matrix(0.235587,0.004476,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.235587,0.004476,-0.004749,0.249955,0,0);}
.m3f_c01350{transform:matrix(0.235870,0.003774,-0.003999,0.249968,0,0);-ms-transform:matrix(0.235870,0.003774,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.235870,0.003774,-0.003999,0.249968,0,0);}
.m2b_c01350{transform:matrix(0.236148,0.003542,-0.003750,0.249972,0,0);-ms-transform:matrix(0.236148,0.003542,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.236148,0.003542,-0.003750,0.249972,0,0);}
.m10c_c01350{transform:matrix(0.236490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236490,0.000000,0.000000,0.250000,0,0);}
.m12_c01350{transform:matrix(0.236998,0.003555,-0.003750,0.249972,0,0);-ms-transform:matrix(0.236998,0.003555,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.236998,0.003555,-0.003750,0.249972,0,0);}
.mda_c01350{transform:matrix(0.237173,0.003558,-0.003750,0.249972,0,0);-ms-transform:matrix(0.237173,0.003558,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.237173,0.003558,-0.003750,0.249972,0,0);}
.m5_c01350{transform:matrix(0.237512,0.004275,-0.004499,0.249960,0,0);-ms-transform:matrix(0.237512,0.004275,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.237512,0.004275,-0.004499,0.249960,0,0);}
.mb2_c01350{transform:matrix(0.237552,0.004513,-0.004749,0.249955,0,0);-ms-transform:matrix(0.237552,0.004513,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.237552,0.004513,-0.004749,0.249955,0,0);}
.m91_c01350{transform:matrix(0.238235,0.003812,-0.003999,0.249968,0,0);-ms-transform:matrix(0.238235,0.003812,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.238235,0.003812,-0.003999,0.249968,0,0);}
.mb0_c01350{transform:matrix(0.238492,0.004531,-0.004749,0.249955,0,0);-ms-transform:matrix(0.238492,0.004531,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.238492,0.004531,-0.004749,0.249955,0,0);}
.m64_c01350{transform:matrix(0.238819,0.003821,-0.003999,0.249968,0,0);-ms-transform:matrix(0.238819,0.003821,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.238819,0.003821,-0.003999,0.249968,0,0);}
.m108_c01350{transform:matrix(0.238942,0.005257,-0.005499,0.249940,0,0);-ms-transform:matrix(0.238942,0.005257,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.238942,0.005257,-0.005499,0.249940,0,0);}
.m100_c01350{transform:matrix(0.239002,0.005258,-0.005499,0.249940,0,0);-ms-transform:matrix(0.239002,0.005258,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.239002,0.005258,-0.005499,0.249940,0,0);}
.m61_c01350{transform:matrix(0.239039,0.003825,-0.003999,0.249968,0,0);-ms-transform:matrix(0.239039,0.003825,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.239039,0.003825,-0.003999,0.249968,0,0);}
.mb4_c01350{transform:matrix(0.239252,0.004546,-0.004749,0.249955,0,0);-ms-transform:matrix(0.239252,0.004546,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.239252,0.004546,-0.004749,0.249955,0,0);}
.me1_c01350{transform:matrix(0.239863,0.003598,-0.003750,0.249972,0,0);-ms-transform:matrix(0.239863,0.003598,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.239863,0.003598,-0.003750,0.249972,0,0);}
.m8f_c01350{transform:matrix(0.240344,0.003846,-0.003999,0.249968,0,0);-ms-transform:matrix(0.240344,0.003846,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.240344,0.003846,-0.003999,0.249968,0,0);}
.m16_c01350{transform:matrix(0.240348,0.003605,-0.003750,0.249972,0,0);-ms-transform:matrix(0.240348,0.003605,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.240348,0.003605,-0.003750,0.249972,0,0);}
.m71_c01350{transform:matrix(0.240419,0.003847,-0.003999,0.249968,0,0);-ms-transform:matrix(0.240419,0.003847,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.240419,0.003847,-0.003999,0.249968,0,0);}
.mdc_c01350{transform:matrix(0.240513,0.003608,-0.003750,0.249972,0,0);-ms-transform:matrix(0.240513,0.003608,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.240513,0.003608,-0.003750,0.249972,0,0);}
.m5d_c01350{transform:matrix(0.240789,0.003853,-0.003999,0.249968,0,0);-ms-transform:matrix(0.240789,0.003853,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.240789,0.003853,-0.003999,0.249968,0,0);}
.m74_c01350{transform:matrix(0.240814,0.003853,-0.003999,0.249968,0,0);-ms-transform:matrix(0.240814,0.003853,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.240814,0.003853,-0.003999,0.249968,0,0);}
.m14_c01350{transform:matrix(0.240938,0.003614,-0.003750,0.249972,0,0);-ms-transform:matrix(0.240938,0.003614,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.240938,0.003614,-0.003750,0.249972,0,0);}
.m1f_c01350{transform:matrix(0.240973,0.003615,-0.003750,0.249972,0,0);-ms-transform:matrix(0.240973,0.003615,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.240973,0.003615,-0.003750,0.249972,0,0);}
.m48_c01350{transform:matrix(0.241174,0.003859,-0.003999,0.249968,0,0);-ms-transform:matrix(0.241174,0.003859,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.241174,0.003859,-0.003999,0.249968,0,0);}
.m19_c01350{transform:matrix(0.241388,0.003621,-0.003750,0.249972,0,0);-ms-transform:matrix(0.241388,0.003621,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.241388,0.003621,-0.003750,0.249972,0,0);}
.m17_c01350{transform:matrix(0.241478,0.003622,-0.003750,0.249972,0,0);-ms-transform:matrix(0.241478,0.003622,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.241478,0.003622,-0.003750,0.249972,0,0);}
.m97_c01350{transform:matrix(0.241669,0.003867,-0.003999,0.249968,0,0);-ms-transform:matrix(0.241669,0.003867,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.241669,0.003867,-0.003999,0.249968,0,0);}
.mba_c01350{transform:matrix(0.242036,0.004599,-0.004749,0.249955,0,0);-ms-transform:matrix(0.242036,0.004599,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.242036,0.004599,-0.004749,0.249955,0,0);}
.mfb_c01350{transform:matrix(0.242351,0.005332,-0.005499,0.249940,0,0);-ms-transform:matrix(0.242351,0.005332,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.242351,0.005332,-0.005499,0.249940,0,0);}
.mf3_c01350{transform:matrix(0.242616,0.005338,-0.005499,0.249940,0,0);-ms-transform:matrix(0.242616,0.005338,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.242616,0.005338,-0.005499,0.249940,0,0);}
.m4_c01350{transform:matrix(0.243011,0.004374,-0.004499,0.249960,0,0);-ms-transform:matrix(0.243011,0.004374,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.243011,0.004374,-0.004499,0.249960,0,0);}
.m24_c01350{transform:matrix(0.243578,0.003654,-0.003750,0.249972,0,0);-ms-transform:matrix(0.243578,0.003654,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.243578,0.003654,-0.003750,0.249972,0,0);}
.m6d_c01350{transform:matrix(0.244239,0.003908,-0.003999,0.249968,0,0);-ms-transform:matrix(0.244239,0.003908,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.244239,0.003908,-0.003999,0.249968,0,0);}
.mee_c01350{transform:matrix(0.244341,0.005375,-0.005499,0.249940,0,0);-ms-transform:matrix(0.244341,0.005375,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.244341,0.005375,-0.005499,0.249940,0,0);}
.m63_c01350{transform:matrix(0.244464,0.003911,-0.003999,0.249968,0,0);-ms-transform:matrix(0.244464,0.003911,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.244464,0.003911,-0.003999,0.249968,0,0);}
.mb9_c01350{transform:matrix(0.245161,0.004658,-0.004749,0.249955,0,0);-ms-transform:matrix(0.245161,0.004658,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.245161,0.004658,-0.004749,0.249955,0,0);}
.m5b_c01350{transform:matrix(0.245329,0.003925,-0.003999,0.249968,0,0);-ms-transform:matrix(0.245329,0.003925,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.245329,0.003925,-0.003999,0.249968,0,0);}
.m9f_c01350{transform:matrix(0.245454,0.003927,-0.003999,0.249968,0,0);-ms-transform:matrix(0.245454,0.003927,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.245454,0.003927,-0.003999,0.249968,0,0);}
.m49_c01350{transform:matrix(0.245564,0.003929,-0.003999,0.249968,0,0);-ms-transform:matrix(0.245564,0.003929,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.245564,0.003929,-0.003999,0.249968,0,0);}
.mc3_c01350{transform:matrix(0.245781,0.004670,-0.004749,0.249955,0,0);-ms-transform:matrix(0.245781,0.004670,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.245781,0.004670,-0.004749,0.249955,0,0);}
.m55_c01350{transform:matrix(0.245794,0.003933,-0.003999,0.249968,0,0);-ms-transform:matrix(0.245794,0.003933,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.245794,0.003933,-0.003999,0.249968,0,0);}
.m59_c01350{transform:matrix(0.245989,0.003936,-0.003999,0.249968,0,0);-ms-transform:matrix(0.245989,0.003936,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.245989,0.003936,-0.003999,0.249968,0,0);}
.m7d_c01350{transform:matrix(0.246908,0.003951,-0.003999,0.249968,0,0);-ms-transform:matrix(0.246908,0.003951,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.246908,0.003951,-0.003999,0.249968,0,0);}
.mbb_c01350{transform:matrix(0.247000,0.004693,-0.004749,0.249955,0,0);-ms-transform:matrix(0.247000,0.004693,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.247000,0.004693,-0.004749,0.249955,0,0);}
.mff_c01350{transform:matrix(0.247075,0.005436,-0.005499,0.249940,0,0);-ms-transform:matrix(0.247075,0.005436,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.247075,0.005436,-0.005499,0.249940,0,0);}
.m9b_c01350{transform:matrix(0.247128,0.003954,-0.003999,0.249968,0,0);-ms-transform:matrix(0.247128,0.003954,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.247128,0.003954,-0.003999,0.249968,0,0);}
.m65_c01350{transform:matrix(0.247363,0.003958,-0.003999,0.249968,0,0);-ms-transform:matrix(0.247363,0.003958,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.247363,0.003958,-0.003999,0.249968,0,0);}
.mbd_c01350{transform:matrix(0.247430,0.004701,-0.004749,0.249955,0,0);-ms-transform:matrix(0.247430,0.004701,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.247430,0.004701,-0.004749,0.249955,0,0);}
.m89_c01350{transform:matrix(0.247653,0.003962,-0.003999,0.249968,0,0);-ms-transform:matrix(0.247653,0.003962,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.247653,0.003962,-0.003999,0.249968,0,0);}
.ma2_c01350{transform:matrix(0.247883,0.003966,-0.003999,0.249968,0,0);-ms-transform:matrix(0.247883,0.003966,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.247883,0.003966,-0.003999,0.249968,0,0);}
.m4b_c01350{transform:matrix(0.248053,0.003969,-0.003999,0.249968,0,0);-ms-transform:matrix(0.248053,0.003969,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.248053,0.003969,-0.003999,0.249968,0,0);}
.m57_c01350{transform:matrix(0.248308,0.003973,-0.003999,0.249968,0,0);-ms-transform:matrix(0.248308,0.003973,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.248308,0.003973,-0.003999,0.249968,0,0);}
.m83_c01350{transform:matrix(0.248413,0.003975,-0.003999,0.249968,0,0);-ms-transform:matrix(0.248413,0.003975,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.248413,0.003975,-0.003999,0.249968,0,0);}
.m78_c01350{transform:matrix(0.248733,0.003980,-0.003999,0.249968,0,0);-ms-transform:matrix(0.248733,0.003980,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.248733,0.003980,-0.003999,0.249968,0,0);}
.m29_c01350{transform:matrix(0.248852,0.003733,-0.003750,0.249972,0,0);-ms-transform:matrix(0.248852,0.003733,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.248852,0.003733,-0.003750,0.249972,0,0);}
.md_c01350{transform:matrix(0.249002,0.003735,-0.003750,0.249972,0,0);-ms-transform:matrix(0.249002,0.003735,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.249002,0.003735,-0.003750,0.249972,0,0);}
.m9e_c01350{transform:matrix(0.249178,0.003987,-0.003999,0.249968,0,0);-ms-transform:matrix(0.249178,0.003987,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.249178,0.003987,-0.003999,0.249968,0,0);}
.m54_c01350{transform:matrix(0.249203,0.003987,-0.003999,0.249968,0,0);-ms-transform:matrix(0.249203,0.003987,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.249203,0.003987,-0.003999,0.249968,0,0);}
.m10b_c01350{transform:matrix(0.249535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249535,0.000000,0.000000,0.250000,0,0);}
.mf7_c01350{transform:matrix(0.249595,0.005491,-0.005499,0.249940,0,0);-ms-transform:matrix(0.249595,0.005491,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.249595,0.005491,-0.005499,0.249940,0,0);}
.m67_c01350{transform:matrix(0.249978,0.004000,-0.003999,0.249968,0,0);-ms-transform:matrix(0.249978,0.004000,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.249978,0.004000,-0.003999,0.249968,0,0);}
.m20_c01350{transform:matrix(0.250002,0.003750,-0.003750,0.249972,0,0);-ms-transform:matrix(0.250002,0.003750,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.250002,0.003750,-0.003750,0.249972,0,0);}
.mbe_c01350{transform:matrix(0.250125,0.004752,-0.004749,0.249955,0,0);-ms-transform:matrix(0.250125,0.004752,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.250125,0.004752,-0.004749,0.249955,0,0);}
.m26_c01350{transform:matrix(0.250172,0.003753,-0.003750,0.249972,0,0);-ms-transform:matrix(0.250172,0.003753,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.250172,0.003753,-0.003750,0.249972,0,0);}
.mb1_c01350{transform:matrix(0.250380,0.004757,-0.004749,0.249955,0,0);-ms-transform:matrix(0.250380,0.004757,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.250380,0.004757,-0.004749,0.249955,0,0);}
.m6b_c01350{transform:matrix(0.250433,0.004007,-0.003999,0.249968,0,0);-ms-transform:matrix(0.250433,0.004007,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.250433,0.004007,-0.003999,0.249968,0,0);}
.m115_c01350{transform:matrix(0.250950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250950,0.000000,0.000000,0.250000,0,0);}
.m5f_c01350{transform:matrix(0.251043,0.004017,-0.003999,0.249968,0,0);-ms-transform:matrix(0.251043,0.004017,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.251043,0.004017,-0.003999,0.249968,0,0);}
.m116_c01350{transform:matrix(0.251320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251320,0.000000,0.000000,0.250000,0,0);}
.m28_c01350{transform:matrix(0.251322,0.003770,-0.003750,0.249972,0,0);-ms-transform:matrix(0.251322,0.003770,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.251322,0.003770,-0.003750,0.249972,0,0);}
.mfc_c01350{transform:matrix(0.251979,0.005544,-0.005499,0.249940,0,0);-ms-transform:matrix(0.251979,0.005544,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.251979,0.005544,-0.005499,0.249940,0,0);}
.m112_c01350{transform:matrix(0.252060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252060,0.000000,0.000000,0.250000,0,0);}
.ma3_c01350{transform:matrix(0.252248,0.004036,-0.003999,0.249968,0,0);-ms-transform:matrix(0.252248,0.004036,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.252248,0.004036,-0.003999,0.249968,0,0);}
.mb3_c01350{transform:matrix(0.252319,0.004794,-0.004749,0.249955,0,0);-ms-transform:matrix(0.252319,0.004794,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.252319,0.004794,-0.004749,0.249955,0,0);}
.mc0_c01350{transform:matrix(0.252544,0.004798,-0.004749,0.249955,0,0);-ms-transform:matrix(0.252544,0.004798,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.252544,0.004798,-0.004749,0.249955,0,0);}
.m98_c01350{transform:matrix(0.252658,0.004043,-0.003999,0.249968,0,0);-ms-transform:matrix(0.252658,0.004043,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.252658,0.004043,-0.003999,0.249968,0,0);}
.mc2_c01350{transform:matrix(0.253004,0.004807,-0.004749,0.249955,0,0);-ms-transform:matrix(0.253004,0.004807,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.253004,0.004807,-0.004749,0.249955,0,0);}
.m2a_c01350{transform:matrix(0.253531,0.003803,-0.003750,0.249972,0,0);-ms-transform:matrix(0.253531,0.003803,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.253531,0.003803,-0.003750,0.249972,0,0);}
.m10d_c01350{transform:matrix(0.253785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253785,0.000000,0.000000,0.250000,0,0);}
.m7b_c01350{transform:matrix(0.253838,0.004061,-0.003999,0.249968,0,0);-ms-transform:matrix(0.253838,0.004061,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.253838,0.004061,-0.003999,0.249968,0,0);}
.m113_c01350{transform:matrix(0.253875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253875,0.000000,0.000000,0.250000,0,0);}
.ma0_c01350{transform:matrix(0.254077,0.004065,-0.003999,0.249968,0,0);-ms-transform:matrix(0.254077,0.004065,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.254077,0.004065,-0.003999,0.249968,0,0);}
.m44_c01350{transform:matrix(0.254097,0.004066,-0.003999,0.249968,0,0);-ms-transform:matrix(0.254097,0.004066,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.254097,0.004066,-0.003999,0.249968,0,0);}
.m3b_c01350{transform:matrix(0.254142,0.004066,-0.003999,0.249968,0,0);-ms-transform:matrix(0.254142,0.004066,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.254142,0.004066,-0.003999,0.249968,0,0);}
.m10_c01350{transform:matrix(0.254221,0.003813,-0.003750,0.249972,0,0);-ms-transform:matrix(0.254221,0.003813,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.254221,0.003813,-0.003750,0.249972,0,0);}
.m10e_c01350{transform:matrix(0.254240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254240,0.000000,0.000000,0.250000,0,0);}
.m42_c01350{transform:matrix(0.254352,0.004070,-0.003999,0.249968,0,0);-ms-transform:matrix(0.254352,0.004070,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.254352,0.004070,-0.003999,0.249968,0,0);}
.m4d_c01350{transform:matrix(0.254542,0.004073,-0.003999,0.249968,0,0);-ms-transform:matrix(0.254542,0.004073,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.254542,0.004073,-0.003999,0.249968,0,0);}
.mfe_c01350{transform:matrix(0.254593,0.005601,-0.005499,0.249940,0,0);-ms-transform:matrix(0.254593,0.005601,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.254593,0.005601,-0.005499,0.249940,0,0);}
.m69_c01350{transform:matrix(0.254672,0.004075,-0.003999,0.249968,0,0);-ms-transform:matrix(0.254672,0.004075,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.254672,0.004075,-0.003999,0.249968,0,0);}
.m45_c01350{transform:matrix(0.254882,0.004078,-0.003999,0.249968,0,0);-ms-transform:matrix(0.254882,0.004078,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.254882,0.004078,-0.003999,0.249968,0,0);}
.mc_c01350{transform:matrix(0.255176,0.003828,-0.003750,0.249972,0,0);-ms-transform:matrix(0.255176,0.003828,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.255176,0.003828,-0.003750,0.249972,0,0);}
.m105_c01350{transform:matrix(0.255228,0.005615,-0.005499,0.249940,0,0);-ms-transform:matrix(0.255228,0.005615,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.255228,0.005615,-0.005499,0.249940,0,0);}
.m3d_c01350{transform:matrix(0.255397,0.004086,-0.003999,0.249968,0,0);-ms-transform:matrix(0.255397,0.004086,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.255397,0.004086,-0.003999,0.249968,0,0);}
.m47_c01350{transform:matrix(0.255577,0.004089,-0.003999,0.249968,0,0);-ms-transform:matrix(0.255577,0.004089,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.255577,0.004089,-0.003999,0.249968,0,0);}
.mf5_c01350{transform:matrix(0.255818,0.005628,-0.005499,0.249940,0,0);-ms-transform:matrix(0.255818,0.005628,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.255818,0.005628,-0.005499,0.249940,0,0);}
.mf0_c01350{transform:matrix(0.255998,0.005632,-0.005499,0.249940,0,0);-ms-transform:matrix(0.255998,0.005632,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.255998,0.005632,-0.005499,0.249940,0,0);}
.m51_c01350{transform:matrix(0.256187,0.004099,-0.003999,0.249968,0,0);-ms-transform:matrix(0.256187,0.004099,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.256187,0.004099,-0.003999,0.249968,0,0);}
.m75_c01350{transform:matrix(0.256732,0.004108,-0.003999,0.249968,0,0);-ms-transform:matrix(0.256732,0.004108,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.256732,0.004108,-0.003999,0.249968,0,0);}
.m96_c01350{transform:matrix(0.256947,0.004111,-0.003999,0.249968,0,0);-ms-transform:matrix(0.256947,0.004111,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.256947,0.004111,-0.003999,0.249968,0,0);}
.maf_c01350{transform:matrix(0.257064,0.004884,-0.004749,0.249955,0,0);-ms-transform:matrix(0.257064,0.004884,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.257064,0.004884,-0.004749,0.249955,0,0);}
.m66_c01350{transform:matrix(0.257637,0.004122,-0.003999,0.249968,0,0);-ms-transform:matrix(0.257637,0.004122,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.257637,0.004122,-0.003999,0.249968,0,0);}
.mb7_c01350{transform:matrix(0.257728,0.004897,-0.004749,0.249955,0,0);-ms-transform:matrix(0.257728,0.004897,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.257728,0.004897,-0.004749,0.249955,0,0);}
.mf4_c01350{transform:matrix(0.257883,0.005673,-0.005499,0.249940,0,0);-ms-transform:matrix(0.257883,0.005673,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.257883,0.005673,-0.005499,0.249940,0,0);}
.m3_c01350{transform:matrix(0.257983,0.004644,-0.004499,0.249960,0,0);-ms-transform:matrix(0.257983,0.004644,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.257983,0.004644,-0.004499,0.249960,0,0);}
.m99_c01350{transform:matrix(0.258112,0.004130,-0.003999,0.249968,0,0);-ms-transform:matrix(0.258112,0.004130,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.258112,0.004130,-0.003999,0.249968,0,0);}
.m82_c01350{transform:matrix(0.259022,0.004144,-0.003999,0.249968,0,0);-ms-transform:matrix(0.259022,0.004144,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.259022,0.004144,-0.003999,0.249968,0,0);}
.m102_c01350{transform:matrix(0.259162,0.005702,-0.005499,0.249940,0,0);-ms-transform:matrix(0.259162,0.005702,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.259162,0.005702,-0.005499,0.249940,0,0);}
.m6e_c01350{transform:matrix(0.261157,0.004179,-0.003999,0.249968,0,0);-ms-transform:matrix(0.261157,0.004179,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.261157,0.004179,-0.003999,0.249968,0,0);}
.mac_c01350{transform:matrix(0.261318,0.004965,-0.004749,0.249955,0,0);-ms-transform:matrix(0.261318,0.004965,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.261318,0.004965,-0.004749,0.249955,0,0);}
.m114_c01350{transform:matrix(0.261435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261435,0.000000,0.000000,0.250000,0,0);}
.m109_c01350{transform:matrix(0.261725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261725,0.000000,0.000000,0.250000,0,0);}
.m1a_c01350{transform:matrix(0.262031,0.003930,-0.003750,0.249972,0,0);-ms-transform:matrix(0.262031,0.003930,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.262031,0.003930,-0.003750,0.249972,0,0);}
.m81_c01350{transform:matrix(0.262076,0.004193,-0.003999,0.249968,0,0);-ms-transform:matrix(0.262076,0.004193,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.262076,0.004193,-0.003999,0.249968,0,0);}
.me_c01350{transform:matrix(0.262330,0.003935,-0.003750,0.249972,0,0);-ms-transform:matrix(0.262330,0.003935,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.262330,0.003935,-0.003750,0.249972,0,0);}
.m93_c01350{transform:matrix(0.262471,0.004200,-0.003999,0.249968,0,0);-ms-transform:matrix(0.262471,0.004200,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.262471,0.004200,-0.003999,0.249968,0,0);}
.m8b_c01350{transform:matrix(0.263761,0.004220,-0.003999,0.249968,0,0);-ms-transform:matrix(0.263761,0.004220,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.263761,0.004220,-0.003999,0.249968,0,0);}
.m8d_c01350{transform:matrix(0.264401,0.004230,-0.003999,0.249968,0,0);-ms-transform:matrix(0.264401,0.004230,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.264401,0.004230,-0.003999,0.249968,0,0);}
.m8c_c01350{transform:matrix(0.265276,0.004244,-0.003999,0.249968,0,0);-ms-transform:matrix(0.265276,0.004244,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.265276,0.004244,-0.003999,0.249968,0,0);}
.mb_c01350{transform:matrix(0.266120,0.003992,-0.003750,0.249972,0,0);-ms-transform:matrix(0.266120,0.003992,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.266120,0.003992,-0.003750,0.249972,0,0);}
.m1b_c01350{transform:matrix(0.266410,0.003996,-0.003750,0.249972,0,0);-ms-transform:matrix(0.266410,0.003996,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.266410,0.003996,-0.003750,0.249972,0,0);}
.m86_c01350{transform:matrix(0.266891,0.004270,-0.003999,0.249968,0,0);-ms-transform:matrix(0.266891,0.004270,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.266891,0.004270,-0.003999,0.249968,0,0);}
.m7c_c01350{transform:matrix(0.266911,0.004271,-0.003999,0.249968,0,0);-ms-transform:matrix(0.266911,0.004271,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.266911,0.004271,-0.003999,0.249968,0,0);}
.m11_c01350{transform:matrix(0.267050,0.004006,-0.003750,0.249972,0,0);-ms-transform:matrix(0.267050,0.004006,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.267050,0.004006,-0.003750,0.249972,0,0);}
.m18_c01350{transform:matrix(0.268775,0.004032,-0.003750,0.249972,0,0);-ms-transform:matrix(0.268775,0.004032,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.268775,0.004032,-0.003750,0.249972,0,0);}
.m84_c01350{transform:matrix(0.269136,0.004306,-0.003999,0.249968,0,0);-ms-transform:matrix(0.269136,0.004306,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.269136,0.004306,-0.003999,0.249968,0,0);}
.m1d_c01350{transform:matrix(0.271100,0.004066,-0.003750,0.249972,0,0);-ms-transform:matrix(0.271100,0.004066,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.271100,0.004066,-0.003750,0.249972,0,0);}
.m80_c01350{transform:matrix(0.273560,0.004377,-0.003999,0.249968,0,0);-ms-transform:matrix(0.273560,0.004377,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.273560,0.004377,-0.003999,0.249968,0,0);}
.m9d_c01350{transform:matrix(0.273565,0.004377,-0.003999,0.249968,0,0);-ms-transform:matrix(0.273565,0.004377,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.273565,0.004377,-0.003999,0.249968,0,0);}
.m88_c01350{transform:matrix(0.274170,0.004387,-0.003999,0.249968,0,0);-ms-transform:matrix(0.274170,0.004387,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.274170,0.004387,-0.003999,0.249968,0,0);}
.m50_c01350{transform:matrix(0.275065,0.004401,-0.003999,0.249968,0,0);-ms-transform:matrix(0.275065,0.004401,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.275065,0.004401,-0.003999,0.249968,0,0);}
.m1c_c01350{transform:matrix(0.275254,0.004129,-0.003750,0.249972,0,0);-ms-transform:matrix(0.275254,0.004129,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.275254,0.004129,-0.003750,0.249972,0,0);}
.m90_c01350{transform:matrix(0.275430,0.004407,-0.003999,0.249968,0,0);-ms-transform:matrix(0.275430,0.004407,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.275430,0.004407,-0.003999,0.249968,0,0);}
.m8a_c01350{transform:matrix(0.275565,0.004409,-0.003999,0.249968,0,0);-ms-transform:matrix(0.275565,0.004409,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.275565,0.004409,-0.003999,0.249968,0,0);}
.m15_c01350{transform:matrix(0.276999,0.004155,-0.003750,0.249972,0,0);-ms-transform:matrix(0.276999,0.004155,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.276999,0.004155,-0.003750,0.249972,0,0);}
.m8e_c01350{transform:matrix(0.277310,0.004437,-0.003999,0.249968,0,0);-ms-transform:matrix(0.277310,0.004437,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.277310,0.004437,-0.003999,0.249968,0,0);}
.mb5_c01350{transform:matrix(0.277775,0.005278,-0.004749,0.249955,0,0);-ms-transform:matrix(0.277775,0.005278,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.277775,0.005278,-0.004749,0.249955,0,0);}
.mf_c01350{transform:matrix(0.277964,0.004169,-0.003750,0.249972,0,0);-ms-transform:matrix(0.277964,0.004169,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.277964,0.004169,-0.003750,0.249972,0,0);}
.m7f_c01350{transform:matrix(0.278629,0.004458,-0.003999,0.249968,0,0);-ms-transform:matrix(0.278629,0.004458,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.278629,0.004458,-0.003999,0.249968,0,0);}
.m10a_c01350{transform:matrix(0.283540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283540,0.000000,0.000000,0.250000,0,0);}
.m104_c01350{transform:matrix(0.284466,0.006258,-0.005499,0.249940,0,0);-ms-transform:matrix(0.284466,0.006258,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.284466,0.006258,-0.005499,0.249940,0,0);}
.m13_c01350{transform:matrix(0.284653,0.004270,-0.003750,0.249972,0,0);-ms-transform:matrix(0.284653,0.004270,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.284653,0.004270,-0.003750,0.249972,0,0);}
.m39_c01350{transform:matrix(0.285953,0.004575,-0.003999,0.249968,0,0);-ms-transform:matrix(0.285953,0.004575,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.285953,0.004575,-0.003999,0.249968,0,0);}
.m110_c01350{transform:matrix(0.287455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287455,0.000000,0.000000,0.250000,0,0);}
.m87_c01350{transform:matrix(0.288188,0.004611,-0.003999,0.249968,0,0);-ms-transform:matrix(0.288188,0.004611,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.288188,0.004611,-0.003999,0.249968,0,0);}
.m2_c01350{transform:matrix(0.300465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300465,0.000000,0.000000,0.250000,0,0);}
.m7e_c01350{transform:matrix(0.303021,0.004848,-0.003999,0.249968,0,0);-ms-transform:matrix(0.303021,0.004848,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.303021,0.004848,-0.003999,0.249968,0,0);}
.m4f_c01350{transform:matrix(0.305451,0.004887,-0.003999,0.249968,0,0);-ms-transform:matrix(0.305451,0.004887,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.305451,0.004887,-0.003999,0.249968,0,0);}
.mad_c01350{transform:matrix(0.312379,0.005935,-0.004749,0.249955,0,0);-ms-transform:matrix(0.312379,0.005935,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.312379,0.005935,-0.004749,0.249955,0,0);}
.m111_c01350{transform:matrix(0.313300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313300,0.000000,0.000000,0.250000,0,0);}
.m4e_c01350{transform:matrix(0.317969,0.005088,-0.003999,0.249968,0,0);-ms-transform:matrix(0.317969,0.005088,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.317969,0.005088,-0.003999,0.249968,0,0);}
.m76_c01350{transform:matrix(0.324808,0.005197,-0.003999,0.249968,0,0);-ms-transform:matrix(0.324808,0.005197,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.324808,0.005197,-0.003999,0.249968,0,0);}
.m10f_c01350{transform:matrix(0.328025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328025,0.000000,0.000000,0.250000,0,0);}
.m103_c01350{transform:matrix(0.336364,0.007400,-0.005499,0.249940,0,0);-ms-transform:matrix(0.336364,0.007400,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.336364,0.007400,-0.005499,0.249940,0,0);}
.m1_c01350{transform:matrix(0.338435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338435,0.000000,0.000000,0.250000,0,0);}
.m3a_c01350{transform:matrix(0.373942,0.005983,-0.003999,0.249968,0,0);-ms-transform:matrix(0.373942,0.005983,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.373942,0.005983,-0.003999,0.249968,0,0);}
.m9_c01350{transform:matrix(0.399405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399405,0.000000,0.000000,0.250000,0,0);}
.m128_c01350{transform:matrix(0.447495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447495,0.000000,0.000000,0.250000,0,0);}
.ma5_c01350{transform:matrix(0.489242,0.007828,-0.003999,0.249968,0,0);-ms-transform:matrix(0.489242,0.007828,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.489242,0.007828,-0.003999,0.249968,0,0);}
.m12b_c01350{transform:matrix(0.582615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582615,0.000000,0.000000,0.250000,0,0);}
.m12a_c01350{transform:matrix(0.588880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.588880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.588880,0.000000,0.000000,0.250000,0,0);}
.ma_c01350{transform:matrix(0.597015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.597015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.597015,0.000000,0.000000,0.250000,0,0);}
.m8_c01350{transform:matrix(0.620100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620100,0.000000,0.000000,0.250000,0,0);}
.m6_c01350{transform:matrix(0.642451,0.011564,-0.004499,0.249960,0,0);-ms-transform:matrix(0.642451,0.011564,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.642451,0.011564,-0.004499,0.249960,0,0);}
.m101_c01350{transform:matrix(0.673647,0.014820,-0.005499,0.249940,0,0);-ms-transform:matrix(0.673647,0.014820,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.673647,0.014820,-0.005499,0.249940,0,0);}
.m117_c01350{transform:matrix(0.815364,-0.039177,0.011998,0.249712,0,0);-ms-transform:matrix(0.815364,-0.039177,0.011998,0.249712,0,0);-webkit-transform:matrix(0.815364,-0.039177,0.011998,0.249712,0,0);}
.m1e_c01350{transform:matrix(0.891265,0.013369,-0.003750,0.249972,0,0);-ms-transform:matrix(0.891265,0.013369,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.891265,0.013369,-0.003750,0.249972,0,0);}
.m126_c01350{transform:matrix(0.942605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.942605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.942605,0.000000,0.000000,0.250000,0,0);}
.m127_c01350{transform:matrix(1.311870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.311870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.311870,0.000000,0.000000,0.250000,0,0);}
.m129_c01350{transform:matrix(1.427510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.427510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.427510,0.000000,0.000000,0.250000,0,0);}
.m118_c01350{transform:matrix(3.361352,-0.161506,0.011998,0.249712,0,0);-ms-transform:matrix(3.361352,-0.161506,0.011998,0.249712,0,0);-webkit-transform:matrix(3.361352,-0.161506,0.011998,0.249712,0,0);}
.m7_c01350{transform:matrix(4.266340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.266340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.266340,0.000000,0.000000,0.250000,0,0);}
.v0_c01350{vertical-align:0.000000px;}
.ls0_c01350{letter-spacing:0.000000px;}
.sc__c01350{text-shadow:none;}
.sc0_c01350{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__c01350{-webkit-text-stroke:0px transparent;}
.sc0_c01350{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01350{word-spacing:0.000000px;}
.fc0_c01350{color:transparent;}
.fs14_c01350{font-size:18.000000px;}
.fs15_c01350{font-size:24.000000px;}
.fs12_c01350{font-size:24.003660px;}
.fs2_c01350{font-size:30.004860px;}
.fs3_c01350{font-size:36.000000px;}
.fs11_c01350{font-size:72.000000px;}
.fs4_c01350{font-size:72.008100px;}
.fs8_c01350{font-size:72.009215px;}
.fsa_c01350{font-size:72.012995px;}
.fs5_c01350{font-size:78.008775px;}
.fs7_c01350{font-size:78.009983px;}
.fs1_c01350{font-size:78.012635px;}
.fsb_c01350{font-size:78.014078px;}
.fs10_c01350{font-size:78.018874px;}
.fs0_c01350{font-size:84.000000px;}
.fse_c01350{font-size:84.009449px;}
.fs6_c01350{font-size:84.010751px;}
.fsd_c01350{font-size:90.010124px;}
.fsf_c01350{font-size:90.014579px;}
.fs9_c01350{font-size:96.012287px;}
.fsc_c01350{font-size:108.019492px;}
.fs13_c01350{font-size:114.009633px;}
.y0_c01350{bottom:0.000000px;}
.y124_c01350{bottom:10.530000px;}
.y114_c01350{bottom:14.587500px;}
.y115_c01350{bottom:15.842028px;}
.y113_c01350{bottom:50.805000px;}
.y112_c01350{bottom:51.306000px;}
.y111_c01350{bottom:51.705000px;}
.y110_c01350{bottom:52.182000px;}
.y10f_c01350{bottom:53.184000px;}
.y10e_c01350{bottom:53.496000px;}
.y10d_c01350{bottom:54.276000px;}
.y10c_c01350{bottom:54.541500px;}
.y10b_c01350{bottom:89.005500px;}
.y10a_c01350{bottom:137.239629px;}
.y109_c01350{bottom:137.712486px;}
.y108_c01350{bottom:138.938436px;}
.y107_c01350{bottom:139.644603px;}
.y106_c01350{bottom:142.033209px;}
.y105_c01350{bottom:144.451251px;}
.y104_c01350{bottom:145.873056px;}
.y103_c01350{bottom:146.871273px;}
.y102_c01350{bottom:169.672356px;}
.y101_c01350{bottom:170.806998px;}
.y100_c01350{bottom:171.936507px;}
.yff_c01350{bottom:173.593512px;}
.yfe_c01350{bottom:174.322515px;}
.yfd_c01350{bottom:175.834491px;}
.yfc_c01350{bottom:176.954643px;}
.yfb_c01350{bottom:177.509553px;}
.yfa_c01350{bottom:178.060848px;}
.yf9_c01350{bottom:178.601250px;}
.yf8_c01350{bottom:180.084195px;}
.yf7_c01350{bottom:202.982154px;}
.yf6_c01350{bottom:205.157118px;}
.yf5_c01350{bottom:207.812298px;}
.yf4_c01350{bottom:209.256675px;}
.yf3_c01350{bottom:210.193908px;}
.yf2_c01350{bottom:210.936474px;}
.yf1_c01350{bottom:212.863443px;}
.yf0_c01350{bottom:213.835920px;}
.yef_c01350{bottom:215.269605px;}
.yee_c01350{bottom:216.006000px;}
.yed_c01350{bottom:238.869153px;}
.yec_c01350{bottom:239.850900px;}
.yeb_c01350{bottom:240.842529px;}
.yea_c01350{bottom:242.607033px;}
.ye9_c01350{bottom:243.200034px;}
.ye8_c01350{bottom:244.186992px;}
.ye7_c01350{bottom:245.367864px;}
.ye6_c01350{bottom:247.108257px;}
.ye5_c01350{bottom:248.314131px;}
.ye4_c01350{bottom:249.484500px;}
.y122_c01350{bottom:275.779702px;}
.y121_c01350{bottom:276.070135px;}
.y120_c01350{bottom:276.783426px;}
.y11f_c01350{bottom:277.636239px;}
.y11e_c01350{bottom:278.910681px;}
.y11d_c01350{bottom:279.774063px;}
.y11c_c01350{bottom:280.911518px;}
.y11b_c01350{bottom:281.188281px;}
.y11a_c01350{bottom:281.905257px;}
.y119_c01350{bottom:282.329421px;}
.y118_c01350{bottom:283.460148px;}
.y117_c01350{bottom:283.747442px;}
.y116_c01350{bottom:284.313000px;}
.ye3_c01350{bottom:309.526148px;}
.ye2_c01350{bottom:309.903878px;}
.ye1_c01350{bottom:311.404755px;}
.ye0_c01350{bottom:313.098840px;}
.ydf_c01350{bottom:313.631010px;}
.yde_c01350{bottom:314.935133px;}
.ydd_c01350{bottom:316.812600px;}
.ydc_c01350{bottom:318.107813px;}
.ydb_c01350{bottom:319.208948px;}
.yda_c01350{bottom:319.943160px;}
.yd9_c01350{bottom:320.489340px;}
.y123_c01350{bottom:339.660000px;}
.yd8_c01350{bottom:346.232010px;}
.yd7_c01350{bottom:346.836068px;}
.yd6_c01350{bottom:348.042653px;}
.yd5_c01350{bottom:349.018770px;}
.yd4_c01350{bottom:350.181300px;}
.yd3_c01350{bottom:350.679405px;}
.yd2_c01350{bottom:352.631955px;}
.yd1_c01350{bottom:354.276615px;}
.yd0_c01350{bottom:354.783000px;}
.ycf_c01350{bottom:382.705218px;}
.yce_c01350{bottom:383.096794px;}
.ycd_c01350{bottom:384.084280px;}
.ycc_c01350{bottom:384.670699px;}
.ycb_c01350{bottom:385.847157px;}
.yca_c01350{bottom:386.259994px;}
.yc9_c01350{bottom:387.228631px;}
.yc8_c01350{bottom:387.629043px;}
.yc7_c01350{bottom:388.609393px;}
.yc6_c01350{bottom:389.201883px;}
.yc5_c01350{bottom:390.951439px;}
.yc4_c01350{bottom:414.578961px;}
.yc3_c01350{bottom:416.154537px;}
.yc2_c01350{bottom:416.542854px;}
.yc1_c01350{bottom:418.122630px;}
.yc0_c01350{bottom:419.104177px;}
.ybf_c01350{bottom:420.683754px;}
.ybe_c01350{bottom:421.675999px;}
.ybd_c01350{bottom:422.262333px;}
.ybc_c01350{bottom:423.430600px;}
.ybb_c01350{bottom:424.621165px;}
.yba_c01350{bottom:425.787951px;}
.yb9_c01350{bottom:448.596235px;}
.yb8_c01350{bottom:449.458275px;}
.yb7_c01350{bottom:449.888226px;}
.yb6_c01350{bottom:451.567474px;}
.yb5_c01350{bottom:452.182960px;}
.yb4_c01350{bottom:453.214404px;}
.yb3_c01350{bottom:454.039108px;}
.yb2_c01350{bottom:454.681612px;}
.yb1_c01350{bottom:455.302143px;}
.yb0_c01350{bottom:456.338802px;}
.yaf_c01350{bottom:457.109242px;}
.yae_c01350{bottom:459.063430px;}
.yad_c01350{bottom:460.084500px;}
.yac_c01350{bottom:492.598776px;}
.yab_c01350{bottom:494.458284px;}
.yaa_c01350{bottom:494.998728px;}
.ya9_c01350{bottom:495.760752px;}
.ya8_c01350{bottom:496.279512px;}
.ya7_c01350{bottom:497.837844px;}
.ya6_c01350{bottom:520.068000px;}
.ya5_c01350{bottom:520.826112px;}
.ya4_c01350{bottom:522.810276px;}
.ya3_c01350{bottom:524.200416px;}
.ya2_c01350{bottom:525.172584px;}
.ya1_c01350{bottom:525.572304px;}
.ya0_c01350{bottom:526.933212px;}
.y9f_c01350{bottom:528.124068px;}
.y9e_c01350{bottom:529.317636px;}
.y9d_c01350{bottom:530.291004px;}
.y9c_c01350{bottom:530.893392px;}
.y9b_c01350{bottom:532.263012px;}
.y9a_c01350{bottom:534.826188px;}
.y99_c01350{bottom:557.236644px;}
.y98_c01350{bottom:557.771772px;}
.y97_c01350{bottom:559.336644px;}
.y96_c01350{bottom:560.226516px;}
.y95_c01350{bottom:561.807780px;}
.y94_c01350{bottom:562.330716px;}
.y93_c01350{bottom:563.008188px;}
.y92_c01350{bottom:565.130628px;}
.y91_c01350{bottom:565.829748px;}
.y90_c01350{bottom:566.698092px;}
.y8f_c01350{bottom:567.234396px;}
.y8e_c01350{bottom:592.285236px;}
.y8d_c01350{bottom:592.787412px;}
.y8c_c01350{bottom:594.254808px;}
.y8b_c01350{bottom:595.242888px;}
.y8a_c01350{bottom:596.235288px;}
.y89_c01350{bottom:597.065292px;}
.y88_c01350{bottom:597.716904px;}
.y87_c01350{bottom:598.369236px;}
.y86_c01350{bottom:599.516256px;}
.y85_c01350{bottom:601.154892px;}
.y84_c01350{bottom:601.795728px;}
.y83_c01350{bottom:603.958152px;}
.y82_c01350{bottom:625.527924px;}
.y81_c01350{bottom:626.325264px;}
.y80_c01350{bottom:627.322584px;}
.y7f_c01350{bottom:628.474068px;}
.y7e_c01350{bottom:629.699424px;}
.y7d_c01350{bottom:631.657908px;}
.y7c_c01350{bottom:632.648352px;}
.y7b_c01350{bottom:633.426480px;}
.y7a_c01350{bottom:634.981620px;}
.y79_c01350{bottom:635.604492px;}
.y78_c01350{bottom:636.021720px;}
.y77_c01350{bottom:640.138668px;}
.y76_c01350{bottom:670.909104px;}
.y75_c01350{bottom:670.909524px;}
.y74_c01350{bottom:695.830560px;}
.y73_c01350{bottom:697.395024px;}
.y72_c01350{bottom:698.462208px;}
.y71_c01350{bottom:698.989104px;}
.y70_c01350{bottom:699.671448px;}
.y6f_c01350{bottom:700.734456px;}
.y6e_c01350{bottom:701.429256px;}
.y6d_c01350{bottom:701.960616px;}
.y6c_c01350{bottom:704.238480px;}
.y6b_c01350{bottom:705.465408px;}
.y6a_c01350{bottom:706.303440px;}
.y69_c01350{bottom:731.661360px;}
.y68_c01350{bottom:732.126600px;}
.y67_c01350{bottom:733.507236px;}
.y66_c01350{bottom:733.963908px;}
.y65_c01350{bottom:734.588376px;}
.y64_c01350{bottom:736.568820px;}
.y63_c01350{bottom:737.343564px;}
.y62_c01350{bottom:738.240048px;}
.y61_c01350{bottom:738.724320px;}
.y60_c01350{bottom:739.177452px;}
.y5f_c01350{bottom:739.944936px;}
.y5e_c01350{bottom:740.399388px;}
.y5d_c01350{bottom:740.866800px;}
.y5c_c01350{bottom:768.020436px;}
.y5b_c01350{bottom:768.780780px;}
.y5a_c01350{bottom:769.562784px;}
.y59_c01350{bottom:770.322480px;}
.y58_c01350{bottom:771.536040px;}
.y57_c01350{bottom:772.015680px;}
.y56_c01350{bottom:772.937904px;}
.y55_c01350{bottom:773.394744px;}
.y54_c01350{bottom:774.471444px;}
.y53_c01350{bottom:774.925656px;}
.y52_c01350{bottom:775.833528px;}
.y51_c01350{bottom:776.453244px;}
.y50_c01350{bottom:777.049680px;}
.y4f_c01350{bottom:802.458552px;}
.y4e_c01350{bottom:803.495568px;}
.y4d_c01350{bottom:804.151836px;}
.y4c_c01350{bottom:804.650124px;}
.y4b_c01350{bottom:805.128336px;}
.y4a_c01350{bottom:805.646724px;}
.y49_c01350{bottom:806.445168px;}
.y48_c01350{bottom:806.758824px;}
.y47_c01350{bottom:807.940080px;}
.y46_c01350{bottom:808.590852px;}
.y45_c01350{bottom:810.543528px;}
.y44_c01350{bottom:811.818684px;}
.y43_c01350{bottom:812.693208px;}
.y42_c01350{bottom:814.857768px;}
.y41_c01350{bottom:838.530864px;}
.y40_c01350{bottom:839.612052px;}
.y3f_c01350{bottom:840.061584px;}
.y3e_c01350{bottom:841.581036px;}
.y3d_c01350{bottom:842.065068px;}
.y3c_c01350{bottom:842.530380px;}
.y3b_c01350{bottom:843.142668px;}
.y3a_c01350{bottom:843.596568px;}
.y39_c01350{bottom:844.810296px;}
.y38_c01350{bottom:845.561352px;}
.y37_c01350{bottom:847.092384px;}
.y36_c01350{bottom:849.151200px;}
.y35_c01350{bottom:873.754512px;}
.y34_c01350{bottom:874.294728px;}
.y33_c01350{bottom:874.981656px;}
.y32_c01350{bottom:875.543400px;}
.y31_c01350{bottom:876.740928px;}
.y30_c01350{bottom:877.453776px;}
.y2f_c01350{bottom:877.798512px;}
.y2e_c01350{bottom:879.030384px;}
.y2d_c01350{bottom:880.257600px;}
.y2c_c01350{bottom:881.454432px;}
.y2b_c01350{bottom:882.189072px;}
.y2a_c01350{bottom:882.716112px;}
.y29_c01350{bottom:883.912656px;}
.y28_c01350{bottom:884.793000px;}
.y27_c01350{bottom:908.712728px;}
.y26_c01350{bottom:910.033298px;}
.y25_c01350{bottom:911.179313px;}
.y24_c01350{bottom:912.483638px;}
.y23_c01350{bottom:912.989213px;}
.y22_c01350{bottom:913.808010px;}
.y21_c01350{bottom:914.447347px;}
.y20_c01350{bottom:915.452603px;}
.y1f_c01350{bottom:915.938670px;}
.y1e_c01350{bottom:916.420012px;}
.y1d_c01350{bottom:916.923000px;}
.y1c_c01350{bottom:1013.280915px;}
.y1b_c01350{bottom:1013.660512px;}
.y1a_c01350{bottom:1014.457290px;}
.y19_c01350{bottom:1015.127955px;}
.y18_c01350{bottom:1015.383337px;}
.y17_c01350{bottom:1016.173515px;}
.y16_c01350{bottom:1017.080880px;}
.y15_c01350{bottom:1017.495892px;}
.y14_c01350{bottom:1018.530090px;}
.y13_c01350{bottom:1018.935367px;}
.y12_c01350{bottom:1019.330535px;}
.y11_c01350{bottom:1020.899865px;}
.y10_c01350{bottom:1021.407495px;}
.yf_c01350{bottom:1049.096775px;}
.ye_c01350{bottom:1049.598075px;}
.yd_c01350{bottom:1050.744832px;}
.yc_c01350{bottom:1051.567252px;}
.yb_c01350{bottom:1053.373642px;}
.ya_c01350{bottom:1054.358107px;}
.y9_c01350{bottom:1055.029777px;}
.y8_c01350{bottom:1055.828392px;}
.y7_c01350{bottom:1056.513000px;}
.y6_c01350{bottom:1109.397000px;}
.y5_c01350{bottom:1110.895194px;}
.y4_c01350{bottom:1123.081218px;}
.y3_c01350{bottom:1124.466102px;}
.y2_c01350{bottom:1126.444500px;}
.y1_c01350{bottom:1196.635500px;}
.h16_c01350{height:18.000000px;}
.h17_c01350{height:24.000000px;}
.h14_c01350{height:24.003660px;}
.h4_c01350{height:30.004860px;}
.h5_c01350{height:36.000000px;}
.h13_c01350{height:72.000000px;}
.h6_c01350{height:72.008100px;}
.ha_c01350{height:72.009215px;}
.hc_c01350{height:72.012995px;}
.h7_c01350{height:78.008775px;}
.h9_c01350{height:78.009983px;}
.h3_c01350{height:78.012635px;}
.hd_c01350{height:78.014078px;}
.h12_c01350{height:78.018874px;}
.h2_c01350{height:84.000000px;}
.h10_c01350{height:84.009449px;}
.h8_c01350{height:84.010751px;}
.hf_c01350{height:90.010124px;}
.h11_c01350{height:90.014579px;}
.hb_c01350{height:96.012287px;}
.he_c01350{height:108.019492px;}
.h15_c01350{height:114.009633px;}
.h1_c01350{height:1250.250000px;}
.h0_c01350{height:1250.370000px;}
.w1_c01350{width:912.000000px;}
.w0_c01350{width:912.300000px;}
.x0_c01350{left:0.000000px;}
.x33_c01350{left:1.790868px;}
.x81_c01350{left:53.362992px;}
.xc8_c01350{left:104.104500px;}
.xc9_c01350{left:130.214364px;}
.xbf_c01350{left:137.568060px;}
.xb1_c01350{left:140.148000px;}
.xaa_c01350{left:141.835665px;}
.x71_c01350{left:143.149032px;}
.x6b_c01350{left:145.025352px;}
.x3a_c01350{left:146.119128px;}
.x44_c01350{left:147.269772px;}
.x27_c01350{left:148.348500px;}
.x13_c01350{left:151.320090px;}
.xc5_c01350{left:167.505000px;}
.xc3_c01350{left:169.290000px;}
.xab_c01350{left:173.946698px;}
.x82_c01350{left:175.585548px;}
.x72_c01350{left:176.668032px;}
.x51_c01350{left:178.803588px;}
.xc0_c01350{left:182.941560px;}
.x6c_c01350{left:187.797048px;}
.x45_c01350{left:189.892140px;}
.x14_c01350{left:193.664002px;}
.x5c_c01350{left:199.842672px;}
.x28_c01350{left:203.370000px;}
.x3b_c01350{left:204.434064px;}
.xca_c01350{left:205.815000px;}
.x91_c01350{left:207.095057px;}
.x52_c01350{left:211.239120px;}
.xac_c01350{left:217.092893px;}
.x7a_c01350{left:219.306216px;}
.x83_c01350{left:220.398828px;}
.xbb_c01350{left:226.855476px;}
.x61_c01350{left:229.845036px;}
.x73_c01350{left:230.939532px;}
.x46_c01350{left:234.157056px;}
.x9b_c01350{left:239.501528px;}
.xb5_c01350{left:247.563000px;}
.xa3_c01350{left:248.730000px;}
.x85_c01350{left:251.109000px;}
.x62_c01350{left:253.014792px;}
.xc6_c01350{left:254.127000px;}
.x34_c01350{left:258.227076px;}
.x53_c01350{left:266.052372px;}
.xb2_c01350{left:272.161500px;}
.x92_c01350{left:273.231311px;}
.x74_c01350{left:274.634532px;}
.x5d_c01350{left:276.525672px;}
.x29_c01350{left:278.154000px;}
.xb6_c01350{left:281.035500px;}
.xa4_c01350{left:282.489000px;}
.x63_c01350{left:287.630688px;}
.x3c_c01350{left:289.476432px;}
.xb_c01350{left:291.111000px;}
.xcb_c01350{left:292.794000px;}
.x6d_c01350{left:297.057300px;}
.x47_c01350{left:298.963620px;}
.x86_c01350{left:304.849500px;}
.x7b_c01350{left:306.819408px;}
.x2a_c01350{left:311.094000px;}
.x4_c01350{left:314.292000px;}
.x15_c01350{left:324.391875px;}
.xcc_c01350{left:325.422000px;}
.x9c_c01350{left:326.863181px;}
.x48_c01350{left:331.384152px;}
.x54_c01350{left:332.986008px;}
.xc_c01350{left:336.751500px;}
.x93_c01350{left:338.115036px;}
.xb7_c01350{left:346.203000px;}
.x9d_c01350{left:349.122108px;}
.x1f_c01350{left:356.190000px;}
.x16_c01350{left:357.337860px;}
.x84_c01350{left:361.581072px;}
.xb3_c01350{left:368.850000px;}
.x94_c01350{left:370.712163px;}
.x64_c01350{left:374.042928px;}
.xcd_c01350{left:380.574000px;}
.x20_c01350{left:388.594500px;}
.xd_c01350{left:389.992500px;}
.x7_c01350{left:391.230000px;}
.x1_c01350{left:392.850000px;}
.x55_c01350{left:396.987048px;}
.x35_c01350{left:398.655588px;}
.xc7_c01350{left:400.009500px;}
.xce_c01350{left:401.863500px;}
.x9e_c01350{left:402.946134px;}
.x75_c01350{left:407.287032px;}
.x49_c01350{left:408.336624px;}
.xc4_c01350{left:409.860000px;}
.x2_c01350{left:416.340000px;}
.x3d_c01350{left:419.677020px;}
.x5_c01350{left:424.203000px;}
.x95_c01350{left:425.857718px;}
.x2b_c01350{left:431.811000px;}
.xe_c01350{left:434.770500px;}
.x7c_c01350{left:439.341684px;}
.x4a_c01350{left:441.015180px;}
.x87_c01350{left:448.251000px;}
.x76_c01350{left:449.629032px;}
.x56_c01350{left:452.347824px;}
.x21_c01350{left:455.611500px;}
.x8_c01350{left:458.460000px;}
.x3_c01350{left:460.620000px;}
.x3e_c01350{left:463.069716px;}
.xc1_c01350{left:466.053060px;}
.xad_c01350{left:468.506355px;}
.x65_c01350{left:472.294284px;}
.x36_c01350{left:474.763512px;}
.x17_c01350{left:477.208237px;}
.xbc_c01350{left:478.575663px;}
.x77_c01350{left:482.312532px;}
.xb4_c01350{left:489.285000px;}
.x9f_c01350{left:491.252816px;}
.x5e_c01350{left:495.527172px;}
.x9_c01350{left:497.070000px;}
.x22_c01350{left:498.234000px;}
.x6_c01350{left:501.141000px;}
.x88_c01350{left:502.812000px;}
.x4b_c01350{left:506.906292px;}
.x2c_c01350{left:508.512000px;}
.x18_c01350{left:511.777290px;}
.x96_c01350{left:513.652899px;}
.xa_c01350{left:515.700000px;}
.xa5_c01350{left:522.303000px;}
.xa0_c01350{left:523.854443px;}
.x89_c01350{left:535.471500px;}
.x7d_c01350{left:537.096540px;}
.x4c_c01350{left:541.197396px;}
.x37_c01350{left:542.537172px;}
.xae_c01350{left:545.245560px;}
.x23_c01350{left:552.820500px;}
.xb8_c01350{left:554.350500px;}
.xa6_c01350{left:555.510000px;}
.x3f_c01350{left:562.690800px;}
.x97_c01350{left:568.156425px;}
.x8a_c01350{left:569.287500px;}
.xc2_c01350{left:575.370060px;}
.xaf_c01350{left:576.522615px;}
.xa1_c01350{left:578.749497px;}
.x66_c01350{left:581.102304px;}
.x2d_c01350{left:585.504000px;}
.x19_c01350{left:587.371687px;}
.x7e_c01350{left:591.105312px;}
.x57_c01350{left:593.848860px;}
.xa2_c01350{left:600.543425px;}
.x5f_c01350{left:604.611672px;}
.x2e_c01350{left:607.050000px;}
.x8b_c01350{left:612.693000px;}
.x40_c01350{left:615.875640px;}
.xbd_c01350{left:618.955107px;}
.xf_c01350{left:620.827500px;}
.x4d_c01350{left:627.922680px;}
.xa7_c01350{left:633.012000px;}
.x78_c01350{left:636.758532px;}
.x58_c01350{left:638.410776px;}
.x6e_c01350{left:647.840916px;}
.x67_c01350{left:649.153620px;}
.x41_c01350{left:650.431692px;}
.x2f_c01350{left:651.603000px;}
.x1a_c01350{left:653.253157px;}
.x98_c01350{left:655.962107px;}
.x8c_c01350{left:666.979500px;}
.x7f_c01350{left:668.330340px;}
.x59_c01350{left:671.078832px;}
.x24_c01350{left:673.480500px;}
.x1b_c01350{left:674.579625px;}
.x10_c01350{left:675.655500px;}
.x99_c01350{left:677.505506px;}
.x4e_c01350{left:682.155408px;}
.x38_c01350{left:683.228184px;}
.xbe_c01350{left:685.371900px;}
.xa8_c01350{left:698.086500px;}
.x8d_c01350{left:699.373500px;}
.x60_c01350{left:704.241672px;}
.x68_c01350{left:713.150580px;}
.x42_c01350{left:715.495224px;}
.xcf_c01350{left:719.409000px;}
.x30_c01350{left:726.448500px;}
.x1c_c01350{left:730.493145px;}
.x79_c01350{left:734.563032px;}
.x4f_c01350{left:738.063708px;}
.xb9_c01350{left:740.694000px;}
.x6f_c01350{left:745.648476px;}
.x25_c01350{left:749.881500px;}
.x11_c01350{left:752.106000px;}
.x43_c01350{left:759.231420px;}
.x39_c01350{left:760.461156px;}
.x31_c01350{left:761.557500px;}
.x9a_c01350{left:765.011159px;}
.x69_c01350{left:768.543804px;}
.x5a_c01350{left:769.652976px;}
.xd0_c01350{left:774.277500px;}
.x70_c01350{left:779.097504px;}
.x12_c01350{left:785.526000px;}
.xb0_c01350{left:786.595793px;}
.x8e_c01350{left:787.755000px;}
.x50_c01350{left:792.336936px;}
.x1d_c01350{left:796.914637px;}
.x5b_c01350{left:802.856532px;}
.x32_c01350{left:804.490500px;}
.x8f_c01350{left:810.384000px;}
.x6a_c01350{left:812.844888px;}
.xa9_c01350{left:818.796000px;}
.x80_c01350{left:820.686468px;}
.x1e_c01350{left:828.522555px;}
.x26_c01350{left:837.919500px;}
.xba_c01350{left:839.556000px;}
.x90_c01350{left:855.754500px;}
.xd2_c01350{left:879.390000px;}
.xd3_c01350{left:886.140000px;}
.xd1_c01350{left:887.220000px;}
@media print{
.v0_c01350{vertical-align:0.000000pt;}
.ls0_c01350{letter-spacing:0.000000pt;}
.ws0_c01350{word-spacing:0.000000pt;}
.fs14_c01350{font-size:16.000000pt;}
.fs15_c01350{font-size:21.333333pt;}
.fs12_c01350{font-size:21.336586pt;}
.fs2_c01350{font-size:26.670986pt;}
.fs3_c01350{font-size:32.000000pt;}
.fs11_c01350{font-size:64.000000pt;}
.fs4_c01350{font-size:64.007200pt;}
.fs8_c01350{font-size:64.008191pt;}
.fsa_c01350{font-size:64.011551pt;}
.fs5_c01350{font-size:69.341133pt;}
.fs7_c01350{font-size:69.342207pt;}
.fs1_c01350{font-size:69.344564pt;}
.fsb_c01350{font-size:69.345847pt;}
.fs10_c01350{font-size:69.350110pt;}
.fs0_c01350{font-size:74.666667pt;}
.fse_c01350{font-size:74.675066pt;}
.fs6_c01350{font-size:74.676223pt;}
.fsd_c01350{font-size:80.008999pt;}
.fsf_c01350{font-size:80.012959pt;}
.fs9_c01350{font-size:85.344255pt;}
.fsc_c01350{font-size:96.017326pt;}
.fs13_c01350{font-size:101.341896pt;}
.y0_c01350{bottom:0.000000pt;}
.y124_c01350{bottom:9.360000pt;}
.y114_c01350{bottom:12.966667pt;}
.y115_c01350{bottom:14.081803pt;}
.y113_c01350{bottom:45.160000pt;}
.y112_c01350{bottom:45.605333pt;}
.y111_c01350{bottom:45.960000pt;}
.y110_c01350{bottom:46.384000pt;}
.y10f_c01350{bottom:47.274667pt;}
.y10e_c01350{bottom:47.552000pt;}
.y10d_c01350{bottom:48.245333pt;}
.y10c_c01350{bottom:48.481333pt;}
.y10b_c01350{bottom:79.116000pt;}
.y10a_c01350{bottom:121.990781pt;}
.y109_c01350{bottom:122.411099pt;}
.y108_c01350{bottom:123.500832pt;}
.y107_c01350{bottom:124.128536pt;}
.y106_c01350{bottom:126.251741pt;}
.y105_c01350{bottom:128.401112pt;}
.y104_c01350{bottom:129.664939pt;}
.y103_c01350{bottom:130.552243pt;}
.y102_c01350{bottom:150.819872pt;}
.y101_c01350{bottom:151.828443pt;}
.y100_c01350{bottom:152.832451pt;}
.yff_c01350{bottom:154.305344pt;}
.yfe_c01350{bottom:154.953347pt;}
.yfd_c01350{bottom:156.297325pt;}
.yfc_c01350{bottom:157.293016pt;}
.yfb_c01350{bottom:157.786269pt;}
.yfa_c01350{bottom:158.276309pt;}
.yf9_c01350{bottom:158.756667pt;}
.yf8_c01350{bottom:160.074840pt;}
.yf7_c01350{bottom:180.428581pt;}
.yf6_c01350{bottom:182.361883pt;}
.yf5_c01350{bottom:184.722043pt;}
.yf4_c01350{bottom:186.005933pt;}
.yf3_c01350{bottom:186.839029pt;}
.yf2_c01350{bottom:187.499088pt;}
.yf1_c01350{bottom:189.211949pt;}
.yf0_c01350{bottom:190.076373pt;}
.yef_c01350{bottom:191.350760pt;}
.yee_c01350{bottom:192.005333pt;}
.yed_c01350{bottom:212.328136pt;}
.yec_c01350{bottom:213.200800pt;}
.yeb_c01350{bottom:214.082248pt;}
.yea_c01350{bottom:215.650696pt;}
.ye9_c01350{bottom:216.177808pt;}
.ye8_c01350{bottom:217.055104pt;}
.ye7_c01350{bottom:218.104768pt;}
.ye6_c01350{bottom:219.651784pt;}
.ye5_c01350{bottom:220.723672pt;}
.ye4_c01350{bottom:221.764000pt;}
.y122_c01350{bottom:245.137513pt;}
.y121_c01350{bottom:245.395676pt;}
.y120_c01350{bottom:246.029712pt;}
.y11f_c01350{bottom:246.787768pt;}
.y11e_c01350{bottom:247.920605pt;}
.y11d_c01350{bottom:248.688056pt;}
.y11c_c01350{bottom:249.699127pt;}
.y11b_c01350{bottom:249.945139pt;}
.y11a_c01350{bottom:250.582451pt;}
.y119_c01350{bottom:250.959485pt;}
.y118_c01350{bottom:251.964576pt;}
.y117_c01350{bottom:252.219948pt;}
.y116_c01350{bottom:252.722667pt;}
.ye3_c01350{bottom:275.134353pt;}
.ye2_c01350{bottom:275.470113pt;}
.ye1_c01350{bottom:276.804227pt;}
.ye0_c01350{bottom:278.310080pt;}
.ydf_c01350{bottom:278.783120pt;}
.yde_c01350{bottom:279.942340pt;}
.ydd_c01350{bottom:281.611200pt;}
.ydc_c01350{bottom:282.762500pt;}
.ydb_c01350{bottom:283.741287pt;}
.yda_c01350{bottom:284.393920pt;}
.yd9_c01350{bottom:284.879413pt;}
.y123_c01350{bottom:301.920000pt;}
.yd8_c01350{bottom:307.761787pt;}
.yd7_c01350{bottom:308.298727pt;}
.yd6_c01350{bottom:309.371247pt;}
.yd5_c01350{bottom:310.238907pt;}
.yd4_c01350{bottom:311.272267pt;}
.yd3_c01350{bottom:311.715027pt;}
.yd2_c01350{bottom:313.450627pt;}
.yd1_c01350{bottom:314.912547pt;}
.yd0_c01350{bottom:315.362667pt;}
.ycf_c01350{bottom:340.182416pt;}
.yce_c01350{bottom:340.530484pt;}
.ycd_c01350{bottom:341.408249pt;}
.ycc_c01350{bottom:341.929511pt;}
.ycb_c01350{bottom:342.975251pt;}
.yca_c01350{bottom:343.342217pt;}
.yc9_c01350{bottom:344.203228pt;}
.yc8_c01350{bottom:344.559149pt;}
.yc7_c01350{bottom:345.430572pt;}
.yc6_c01350{bottom:345.957229pt;}
.yc5_c01350{bottom:347.512391pt;}
.yc4_c01350{bottom:368.514632pt;}
.yc3_c01350{bottom:369.915144pt;}
.yc2_c01350{bottom:370.260315pt;}
.yc1_c01350{bottom:371.664560pt;}
.yc0_c01350{bottom:372.537047pt;}
.ybf_c01350{bottom:373.941115pt;}
.ybe_c01350{bottom:374.823111pt;}
.ybd_c01350{bottom:375.344296pt;}
.ybc_c01350{bottom:376.382756pt;}
.ybb_c01350{bottom:377.441036pt;}
.yba_c01350{bottom:378.478179pt;}
.yb9_c01350{bottom:398.752209pt;}
.yb8_c01350{bottom:399.518467pt;}
.yb7_c01350{bottom:399.900645pt;}
.yb6_c01350{bottom:401.393311pt;}
.yb5_c01350{bottom:401.940409pt;}
.yb4_c01350{bottom:402.857248pt;}
.yb3_c01350{bottom:403.590319pt;}
.yb2_c01350{bottom:404.161433pt;}
.yb1_c01350{bottom:404.713016pt;}
.yb0_c01350{bottom:405.634491pt;}
.yaf_c01350{bottom:406.319327pt;}
.yae_c01350{bottom:408.056383pt;}
.yad_c01350{bottom:408.964000pt;}
.yac_c01350{bottom:437.865579pt;}
.yab_c01350{bottom:439.518475pt;}
.yaa_c01350{bottom:439.998869pt;}
.ya9_c01350{bottom:440.676224pt;}
.ya8_c01350{bottom:441.137344pt;}
.ya7_c01350{bottom:442.522528pt;}
.ya6_c01350{bottom:462.282667pt;}
.ya5_c01350{bottom:462.956544pt;}
.ya4_c01350{bottom:464.720245pt;}
.ya3_c01350{bottom:465.955925pt;}
.ya2_c01350{bottom:466.820075pt;}
.ya1_c01350{bottom:467.175381pt;}
.ya0_c01350{bottom:468.385077pt;}
.y9f_c01350{bottom:469.443616pt;}
.y9e_c01350{bottom:470.504565pt;}
.y9d_c01350{bottom:471.369781pt;}
.y9c_c01350{bottom:471.905237pt;}
.y9b_c01350{bottom:473.122677pt;}
.y9a_c01350{bottom:475.401056pt;}
.y99_c01350{bottom:495.321461pt;}
.y98_c01350{bottom:495.797131pt;}
.y97_c01350{bottom:497.188128pt;}
.y96_c01350{bottom:497.979125pt;}
.y95_c01350{bottom:499.384693pt;}
.y94_c01350{bottom:499.849525pt;}
.y93_c01350{bottom:500.451723pt;}
.y92_c01350{bottom:502.338336pt;}
.y91_c01350{bottom:502.959776pt;}
.y90_c01350{bottom:503.731637pt;}
.y8f_c01350{bottom:504.208352pt;}
.y8e_c01350{bottom:526.475765pt;}
.y8d_c01350{bottom:526.922144pt;}
.y8c_c01350{bottom:528.226496pt;}
.y8b_c01350{bottom:529.104789pt;}
.y8a_c01350{bottom:529.986923pt;}
.y89_c01350{bottom:530.724704pt;}
.y88_c01350{bottom:531.303915pt;}
.y87_c01350{bottom:531.883765pt;}
.y86_c01350{bottom:532.903339pt;}
.y85_c01350{bottom:534.359904pt;}
.y84_c01350{bottom:534.929536pt;}
.y83_c01350{bottom:536.851691pt;}
.y82_c01350{bottom:556.024821pt;}
.y81_c01350{bottom:556.733568pt;}
.y80_c01350{bottom:557.620075pt;}
.y7f_c01350{bottom:558.643616pt;}
.y7e_c01350{bottom:559.732821pt;}
.y7d_c01350{bottom:561.473696pt;}
.y7c_c01350{bottom:562.354091pt;}
.y7b_c01350{bottom:563.045760pt;}
.y7a_c01350{bottom:564.428107pt;}
.y79_c01350{bottom:564.981771pt;}
.y78_c01350{bottom:565.352640pt;}
.y77_c01350{bottom:569.012149pt;}
.y76_c01350{bottom:596.363648pt;}
.y75_c01350{bottom:596.364021pt;}
.y74_c01350{bottom:618.516053pt;}
.y73_c01350{bottom:619.906688pt;}
.y72_c01350{bottom:620.855296pt;}
.y71_c01350{bottom:621.323648pt;}
.y70_c01350{bottom:621.930176pt;}
.y6f_c01350{bottom:622.875072pt;}
.y6e_c01350{bottom:623.492672pt;}
.y6d_c01350{bottom:623.964992pt;}
.y6c_c01350{bottom:625.989760pt;}
.y6b_c01350{bottom:627.080363pt;}
.y6a_c01350{bottom:627.825280pt;}
.y69_c01350{bottom:650.365653pt;}
.y68_c01350{bottom:650.779200pt;}
.y67_c01350{bottom:652.006432pt;}
.y66_c01350{bottom:652.412363pt;}
.y65_c01350{bottom:652.967445pt;}
.y64_c01350{bottom:654.727840pt;}
.y63_c01350{bottom:655.416501pt;}
.y62_c01350{bottom:656.213376pt;}
.y61_c01350{bottom:656.643840pt;}
.y60_c01350{bottom:657.046624pt;}
.y5f_c01350{bottom:657.728832pt;}
.y5e_c01350{bottom:658.132789pt;}
.y5d_c01350{bottom:658.548267pt;}
.y5c_c01350{bottom:682.684832pt;}
.y5b_c01350{bottom:683.360693pt;}
.y5a_c01350{bottom:684.055808pt;}
.y59_c01350{bottom:684.731093pt;}
.y58_c01350{bottom:685.809813pt;}
.y57_c01350{bottom:686.236160pt;}
.y56_c01350{bottom:687.055915pt;}
.y55_c01350{bottom:687.461995pt;}
.y54_c01350{bottom:688.419061pt;}
.y53_c01350{bottom:688.822805pt;}
.y52_c01350{bottom:689.629803pt;}
.y51_c01350{bottom:690.180661pt;}
.y50_c01350{bottom:690.710827pt;}
.y4f_c01350{bottom:713.296491pt;}
.y4e_c01350{bottom:714.218283pt;}
.y4d_c01350{bottom:714.801632pt;}
.y4c_c01350{bottom:715.244555pt;}
.y4b_c01350{bottom:715.669632pt;}
.y4a_c01350{bottom:716.130421pt;}
.y49_c01350{bottom:716.840149pt;}
.y48_c01350{bottom:717.118955pt;}
.y47_c01350{bottom:718.168960pt;}
.y46_c01350{bottom:718.747424pt;}
.y45_c01350{bottom:720.483136pt;}
.y44_c01350{bottom:721.616608pt;}
.y43_c01350{bottom:722.393963pt;}
.y42_c01350{bottom:724.318016pt;}
.y41_c01350{bottom:745.360768pt;}
.y40_c01350{bottom:746.321824pt;}
.y3f_c01350{bottom:746.721408pt;}
.y3e_c01350{bottom:748.072032pt;}
.y3d_c01350{bottom:748.502283pt;}
.y3c_c01350{bottom:748.915893pt;}
.y3b_c01350{bottom:749.460149pt;}
.y3a_c01350{bottom:749.863616pt;}
.y39_c01350{bottom:750.942485pt;}
.y38_c01350{bottom:751.610091pt;}
.y37_c01350{bottom:752.971008pt;}
.y36_c01350{bottom:754.801067pt;}
.y35_c01350{bottom:776.670677pt;}
.y34_c01350{bottom:777.150869pt;}
.y33_c01350{bottom:777.761472pt;}
.y32_c01350{bottom:778.260800pt;}
.y31_c01350{bottom:779.325269pt;}
.y30_c01350{bottom:779.958912pt;}
.y2f_c01350{bottom:780.265344pt;}
.y2e_c01350{bottom:781.360341pt;}
.y2d_c01350{bottom:782.451200pt;}
.y2c_c01350{bottom:783.515051pt;}
.y2b_c01350{bottom:784.168064pt;}
.y2a_c01350{bottom:784.636544pt;}
.y29_c01350{bottom:785.700139pt;}
.y28_c01350{bottom:786.482667pt;}
.y27_c01350{bottom:807.744647pt;}
.y26_c01350{bottom:808.918487pt;}
.y25_c01350{bottom:809.937167pt;}
.y24_c01350{bottom:811.096567pt;}
.y23_c01350{bottom:811.545967pt;}
.y22_c01350{bottom:812.273787pt;}
.y21_c01350{bottom:812.842087pt;}
.y20_c01350{bottom:813.735647pt;}
.y1f_c01350{bottom:814.167707pt;}
.y1e_c01350{bottom:814.595567pt;}
.y1d_c01350{bottom:815.042667pt;}
.y1c_c01350{bottom:900.694147pt;}
.y1b_c01350{bottom:901.031567pt;}
.y1a_c01350{bottom:901.739813pt;}
.y19_c01350{bottom:902.335960pt;}
.y18_c01350{bottom:902.562967pt;}
.y17_c01350{bottom:903.265347pt;}
.y16_c01350{bottom:904.071893pt;}
.y15_c01350{bottom:904.440793pt;}
.y14_c01350{bottom:905.360080pt;}
.y13_c01350{bottom:905.720327pt;}
.y12_c01350{bottom:906.071587pt;}
.y11_c01350{bottom:907.466547pt;}
.y10_c01350{bottom:907.917773pt;}
.yf_c01350{bottom:932.530467pt;}
.ye_c01350{bottom:932.976067pt;}
.yd_c01350{bottom:933.995407pt;}
.yc_c01350{bottom:934.726447pt;}
.yb_c01350{bottom:936.332127pt;}
.ya_c01350{bottom:937.207207pt;}
.y9_c01350{bottom:937.804247pt;}
.y8_c01350{bottom:938.514127pt;}
.y7_c01350{bottom:939.122667pt;}
.y6_c01350{bottom:986.130667pt;}
.y5_c01350{bottom:987.462395pt;}
.y4_c01350{bottom:998.294416pt;}
.y3_c01350{bottom:999.525424pt;}
.y2_c01350{bottom:1001.284000pt;}
.y1_c01350{bottom:1063.676000pt;}
.h16_c01350{height:16.000000pt;}
.h17_c01350{height:21.333333pt;}
.h14_c01350{height:21.336586pt;}
.h4_c01350{height:26.670986pt;}
.h5_c01350{height:32.000000pt;}
.h13_c01350{height:64.000000pt;}
.h6_c01350{height:64.007200pt;}
.ha_c01350{height:64.008191pt;}
.hc_c01350{height:64.011551pt;}
.h7_c01350{height:69.341133pt;}
.h9_c01350{height:69.342207pt;}
.h3_c01350{height:69.344564pt;}
.hd_c01350{height:69.345847pt;}
.h12_c01350{height:69.350110pt;}
.h2_c01350{height:74.666667pt;}
.h10_c01350{height:74.675066pt;}
.h8_c01350{height:74.676223pt;}
.hf_c01350{height:80.008999pt;}
.h11_c01350{height:80.012959pt;}
.hb_c01350{height:85.344255pt;}
.he_c01350{height:96.017326pt;}
.h15_c01350{height:101.341896pt;}
.h1_c01350{height:1111.333333pt;}
.h0_c01350{height:1111.440000pt;}
.w1_c01350{width:810.666667pt;}
.w0_c01350{width:810.933333pt;}
.x0_c01350{left:0.000000pt;}
.x33_c01350{left:1.591883pt;}
.x81_c01350{left:47.433771pt;}
.xc8_c01350{left:92.537333pt;}
.xc9_c01350{left:115.746101pt;}
.xbf_c01350{left:122.282720pt;}
.xb1_c01350{left:124.576000pt;}
.xaa_c01350{left:126.076147pt;}
.x71_c01350{left:127.243584pt;}
.x6b_c01350{left:128.911424pt;}
.x3a_c01350{left:129.883669pt;}
.x44_c01350{left:130.906464pt;}
.x27_c01350{left:131.865333pt;}
.x13_c01350{left:134.506747pt;}
.xc5_c01350{left:148.893333pt;}
.xc3_c01350{left:150.480000pt;}
.xab_c01350{left:154.619287pt;}
.x82_c01350{left:156.076043pt;}
.x72_c01350{left:157.038251pt;}
.x51_c01350{left:158.936523pt;}
.xc0_c01350{left:162.614720pt;}
.x6c_c01350{left:166.930709pt;}
.x45_c01350{left:168.793013pt;}
.x14_c01350{left:172.145780pt;}
.x5c_c01350{left:177.637931pt;}
.x28_c01350{left:180.773333pt;}
.x3b_c01350{left:181.719168pt;}
.xca_c01350{left:182.946667pt;}
.x91_c01350{left:184.084495pt;}
.x52_c01350{left:187.768107pt;}
.xac_c01350{left:192.971460pt;}
.x7a_c01350{left:194.938859pt;}
.x83_c01350{left:195.910069pt;}
.xbb_c01350{left:201.649312pt;}
.x61_c01350{left:204.306699pt;}
.x73_c01350{left:205.279584pt;}
.x46_c01350{left:208.139605pt;}
.x9b_c01350{left:212.890247pt;}
.xb5_c01350{left:220.056000pt;}
.xa3_c01350{left:221.093333pt;}
.x85_c01350{left:223.208000pt;}
.x62_c01350{left:224.902037pt;}
.xc6_c01350{left:225.890667pt;}
.x34_c01350{left:229.535179pt;}
.x53_c01350{left:236.490997pt;}
.xb2_c01350{left:241.921333pt;}
.x92_c01350{left:242.872276pt;}
.x74_c01350{left:244.119584pt;}
.x5d_c01350{left:245.800597pt;}
.x29_c01350{left:247.248000pt;}
.xb6_c01350{left:249.809333pt;}
.xa4_c01350{left:251.101333pt;}
.x63_c01350{left:255.671723pt;}
.x3c_c01350{left:257.312384pt;}
.xb_c01350{left:258.765333pt;}
.xcb_c01350{left:260.261333pt;}
.x6d_c01350{left:264.050933pt;}
.x47_c01350{left:265.745440pt;}
.x86_c01350{left:270.977333pt;}
.x7b_c01350{left:272.728363pt;}
.x2a_c01350{left:276.528000pt;}
.x4_c01350{left:279.370667pt;}
.x15_c01350{left:288.348333pt;}
.xcc_c01350{left:289.264000pt;}
.x9c_c01350{left:290.545049pt;}
.x48_c01350{left:294.563691pt;}
.x54_c01350{left:295.987563pt;}
.xc_c01350{left:299.334667pt;}
.x93_c01350{left:300.546699pt;}
.xb7_c01350{left:307.736000pt;}
.x9d_c01350{left:310.330763pt;}
.x1f_c01350{left:316.613333pt;}
.x16_c01350{left:317.633653pt;}
.x84_c01350{left:321.405397pt;}
.xb3_c01350{left:327.866667pt;}
.x94_c01350{left:329.521923pt;}
.x64_c01350{left:332.482603pt;}
.xcd_c01350{left:338.288000pt;}
.x20_c01350{left:345.417333pt;}
.xd_c01350{left:346.660000pt;}
.x7_c01350{left:347.760000pt;}
.x1_c01350{left:349.200000pt;}
.x55_c01350{left:352.877376pt;}
.x35_c01350{left:354.360523pt;}
.xc7_c01350{left:355.564000pt;}
.xce_c01350{left:357.212000pt;}
.x9e_c01350{left:358.174341pt;}
.x75_c01350{left:362.032917pt;}
.x49_c01350{left:362.965888pt;}
.xc4_c01350{left:364.320000pt;}
.x2_c01350{left:370.080000pt;}
.x3d_c01350{left:373.046240pt;}
.x5_c01350{left:377.069333pt;}
.x95_c01350{left:378.540193pt;}
.x2b_c01350{left:383.832000pt;}
.xe_c01350{left:386.462667pt;}
.x7c_c01350{left:390.525941pt;}
.x4a_c01350{left:392.013493pt;}
.x87_c01350{left:398.445333pt;}
.x76_c01350{left:399.670251pt;}
.x56_c01350{left:402.086955pt;}
.x21_c01350{left:404.988000pt;}
.x8_c01350{left:407.520000pt;}
.x3_c01350{left:409.440000pt;}
.x3e_c01350{left:411.617525pt;}
.xc1_c01350{left:414.269387pt;}
.xad_c01350{left:416.450093pt;}
.x65_c01350{left:419.817141pt;}
.x36_c01350{left:422.012011pt;}
.x17_c01350{left:424.185100pt;}
.xbc_c01350{left:425.400589pt;}
.x77_c01350{left:428.722251pt;}
.xb4_c01350{left:434.920000pt;}
.x9f_c01350{left:436.669169pt;}
.x5e_c01350{left:440.468597pt;}
.x9_c01350{left:441.840000pt;}
.x22_c01350{left:442.874667pt;}
.x6_c01350{left:445.458667pt;}
.x88_c01350{left:446.944000pt;}
.x4b_c01350{left:450.583371pt;}
.x2c_c01350{left:452.010667pt;}
.x18_c01350{left:454.913147pt;}
.x96_c01350{left:456.580355pt;}
.xa_c01350{left:458.400000pt;}
.xa5_c01350{left:464.269333pt;}
.xa0_c01350{left:465.648393pt;}
.x89_c01350{left:475.974667pt;}
.x7d_c01350{left:477.419147pt;}
.x4c_c01350{left:481.064352pt;}
.x37_c01350{left:482.255264pt;}
.xae_c01350{left:484.662720pt;}
.x23_c01350{left:491.396000pt;}
.xb8_c01350{left:492.756000pt;}
.xa6_c01350{left:493.786667pt;}
.x3f_c01350{left:500.169600pt;}
.x97_c01350{left:505.027933pt;}
.x8a_c01350{left:506.033333pt;}
.xc2_c01350{left:511.440053pt;}
.xaf_c01350{left:512.464547pt;}
.xa1_c01350{left:514.443997pt;}
.x66_c01350{left:516.535381pt;}
.x2d_c01350{left:520.448000pt;}
.x19_c01350{left:522.108167pt;}
.x7e_c01350{left:525.426944pt;}
.x57_c01350{left:527.865653pt;}
.xa2_c01350{left:533.816377pt;}
.x5f_c01350{left:537.432597pt;}
.x2e_c01350{left:539.600000pt;}
.x8b_c01350{left:544.616000pt;}
.x40_c01350{left:547.445013pt;}
.xbd_c01350{left:550.182317pt;}
.xf_c01350{left:551.846667pt;}
.x4d_c01350{left:558.153493pt;}
.xa7_c01350{left:562.677333pt;}
.x78_c01350{left:566.007584pt;}
.x58_c01350{left:567.476245pt;}
.x6e_c01350{left:575.858592pt;}
.x67_c01350{left:577.025440pt;}
.x41_c01350{left:578.161504pt;}
.x2f_c01350{left:579.202667pt;}
.x1a_c01350{left:580.669473pt;}
.x98_c01350{left:583.077428pt;}
.x8c_c01350{left:592.870667pt;}
.x7f_c01350{left:594.071413pt;}
.x59_c01350{left:596.514517pt;}
.x24_c01350{left:598.649333pt;}
.x1b_c01350{left:599.626333pt;}
.x10_c01350{left:600.582667pt;}
.x99_c01350{left:602.227116pt;}
.x4e_c01350{left:606.360363pt;}
.x38_c01350{left:607.313941pt;}
.xbe_c01350{left:609.219467pt;}
.xa8_c01350{left:620.521333pt;}
.x8d_c01350{left:621.665333pt;}
.x60_c01350{left:625.992597pt;}
.x68_c01350{left:633.911627pt;}
.x42_c01350{left:635.995755pt;}
.xcf_c01350{left:639.474667pt;}
.x30_c01350{left:645.732000pt;}
.x1c_c01350{left:649.327240pt;}
.x79_c01350{left:652.944917pt;}
.x4f_c01350{left:656.056629pt;}
.xb9_c01350{left:658.394667pt;}
.x6f_c01350{left:662.798645pt;}
.x25_c01350{left:666.561333pt;}
.x11_c01350{left:668.538667pt;}
.x43_c01350{left:674.872373pt;}
.x39_c01350{left:675.965472pt;}
.x31_c01350{left:676.940000pt;}
.x9a_c01350{left:680.009919pt;}
.x69_c01350{left:683.150048pt;}
.x5a_c01350{left:684.135979pt;}
.xd0_c01350{left:688.246667pt;}
.x70_c01350{left:692.531115pt;}
.x12_c01350{left:698.245333pt;}
.xb0_c01350{left:699.196260pt;}
.x8e_c01350{left:700.226667pt;}
.x50_c01350{left:704.299499pt;}
.x1d_c01350{left:708.368567pt;}
.x5b_c01350{left:713.650251pt;}
.x32_c01350{left:715.102667pt;}
.x8f_c01350{left:720.341333pt;}
.x6a_c01350{left:722.528789pt;}
.xa9_c01350{left:727.818667pt;}
.x80_c01350{left:729.499083pt;}
.x1e_c01350{left:736.464493pt;}
.x26_c01350{left:744.817333pt;}
.xba_c01350{left:746.272000pt;}
.x90_c01350{left:760.670667pt;}
.xd2_c01350{left:781.680000pt;}
.xd3_c01350{left:787.680000pt;}
.xd1_c01350{left:788.640000pt;}
}





/* 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_c01351 {
    display:none;
  }
  .loading-indicator_c01351.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01351 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_c01351 { 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_c01351" -> "#page-container .classname_c01351")
 */
.pf_c01351 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01351 { /* 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_c01351.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01351 { /* 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_c01351 { /* 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_c01351 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01351 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01351 {overflow:visible;}
  }
}
.c_c01351 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01351 { /* 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_c01351:after { /* webkit #35443 */
  content: '';
}
.t_c01351:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01351 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 */
}
.__c01351 { /* 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_c01351 { /* info for Javascript */
  display:none;
}
.l_c01351 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01351 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01351 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01351: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_c01351 {
    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_c01351.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01351.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_c01351 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01351{font-family:sans-serif;visibility:hidden;}
.sc__c01351{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01351{-webkit-text-stroke:0px transparent;}
}
.y0_c01351{bottom:0.000000px;}
.h1_c01351{height:1250.250000px;}
.h0_c01351{height:1250.370000px;}
.w1_c01351{width:912.000000px;}
.w0_c01351{width:912.300000px;}
.x0_c01351{left:0.000000px;}
@media print{
.y0_c01351{bottom:0.000000pt;}
.h1_c01351{height:1111.333333pt;}
.h0_c01351{height:1111.440000pt;}
.w1_c01351{width:810.666667pt;}
.w0_c01351{width:810.933333pt;}
.x0_c01351{left:0.000000pt;}
}





/* 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_c01352 {
    display:none;
  }
  .loading-indicator_c01352.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01352 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_c01352 { 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_c01352" -> "#page-container .classname_c01352")
 */
.pf_c01352 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01352 { /* 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_c01352.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01352 { /* 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_c01352 { /* 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_c01352 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01352 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01352 {overflow:visible;}
  }
}
.c_c01352 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01352 { /* 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_c01352:after { /* webkit #35443 */
  content: '';
}
.t_c01352:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01352 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 */
}
.__c01352 { /* 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_c01352 { /* info for Javascript */
  display:none;
}
.l_c01352 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01352 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01352 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01352: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_c01352 {
    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_c01352.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01352.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_c01352 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01352{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01352;src:url('chunks/assets/font_c605e72f209fc835e906f064.woff2')format("woff");}.ff1_c01352{font-family:ff1_c01352;line-height:1.000000;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;}
.m6a_c01352{transform:matrix(0.101240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.101240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.101240,0.000000,0.000000,0.250000,0,0);}
.m67_c01352{transform:matrix(0.129470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129470,0.000000,0.000000,0.250000,0,0);}
.m6b_c01352{transform:matrix(0.152645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152645,0.000000,0.000000,0.250000,0,0);}
.m0_c01352{transform:matrix(0.157630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157630,0.000000,0.000000,0.250000,0,0);}
.m6c_c01352{transform:matrix(0.161245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161245,0.000000,0.000000,0.250000,0,0);}
.m3d_c01352{transform:matrix(0.163352,-0.000980,0.001500,0.249996,0,0);-ms-transform:matrix(0.163352,-0.000980,0.001500,0.249996,0,0);-webkit-transform:matrix(0.163352,-0.000980,0.001500,0.249996,0,0);}
.m35_c01352{transform:matrix(0.175417,-0.001053,0.001500,0.249996,0,0);-ms-transform:matrix(0.175417,-0.001053,0.001500,0.249996,0,0);-webkit-transform:matrix(0.175417,-0.001053,0.001500,0.249996,0,0);}
.m3f_c01352{transform:matrix(0.176407,-0.001058,0.001500,0.249996,0,0);-ms-transform:matrix(0.176407,-0.001058,0.001500,0.249996,0,0);-webkit-transform:matrix(0.176407,-0.001058,0.001500,0.249996,0,0);}
.m3e_c01352{transform:matrix(0.184267,-0.001106,0.001500,0.249996,0,0);-ms-transform:matrix(0.184267,-0.001106,0.001500,0.249996,0,0);-webkit-transform:matrix(0.184267,-0.001106,0.001500,0.249996,0,0);}
.m66_c01352{transform:matrix(0.187435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187435,0.000000,0.000000,0.250000,0,0);}
.m38_c01352{transform:matrix(0.191432,-0.001149,0.001500,0.249996,0,0);-ms-transform:matrix(0.191432,-0.001149,0.001500,0.249996,0,0);-webkit-transform:matrix(0.191432,-0.001149,0.001500,0.249996,0,0);}
.m5f_c01352{transform:matrix(0.195503,-0.000978,0.001250,0.249997,0,0);-ms-transform:matrix(0.195503,-0.000978,0.001250,0.249997,0,0);-webkit-transform:matrix(0.195503,-0.000978,0.001250,0.249997,0,0);}
.m39_c01352{transform:matrix(0.197566,-0.001185,0.001500,0.249996,0,0);-ms-transform:matrix(0.197566,-0.001185,0.001500,0.249996,0,0);-webkit-transform:matrix(0.197566,-0.001185,0.001500,0.249996,0,0);}
.m40_c01352{transform:matrix(0.198951,-0.001194,0.001500,0.249996,0,0);-ms-transform:matrix(0.198951,-0.001194,0.001500,0.249996,0,0);-webkit-transform:matrix(0.198951,-0.001194,0.001500,0.249996,0,0);}
.mc_c01352{transform:matrix(0.199035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199035,0.000000,0.000000,0.250000,0,0);}
.m3c_c01352{transform:matrix(0.201401,-0.001208,0.001500,0.249996,0,0);-ms-transform:matrix(0.201401,-0.001208,0.001500,0.249996,0,0);-webkit-transform:matrix(0.201401,-0.001208,0.001500,0.249996,0,0);}
.m3a_c01352{transform:matrix(0.202066,-0.001212,0.001500,0.249996,0,0);-ms-transform:matrix(0.202066,-0.001212,0.001500,0.249996,0,0);-webkit-transform:matrix(0.202066,-0.001212,0.001500,0.249996,0,0);}
.m5c_c01352{transform:matrix(0.204127,-0.001021,0.001250,0.249997,0,0);-ms-transform:matrix(0.204127,-0.001021,0.001250,0.249997,0,0);-webkit-transform:matrix(0.204127,-0.001021,0.001250,0.249997,0,0);}
.m68_c01352{transform:matrix(0.210685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210685,0.000000,0.000000,0.250000,0,0);}
.m69_c01352{transform:matrix(0.211200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211200,0.000000,0.000000,0.250000,0,0);}
.m51_c01352{transform:matrix(0.212157,-0.001061,0.001250,0.249997,0,0);-ms-transform:matrix(0.212157,-0.001061,0.001250,0.249997,0,0);-webkit-transform:matrix(0.212157,-0.001061,0.001250,0.249997,0,0);}
.m59_c01352{transform:matrix(0.215192,-0.001076,0.001250,0.249997,0,0);-ms-transform:matrix(0.215192,-0.001076,0.001250,0.249997,0,0);-webkit-transform:matrix(0.215192,-0.001076,0.001250,0.249997,0,0);}
.m36_c01352{transform:matrix(0.216381,-0.001298,0.001500,0.249996,0,0);-ms-transform:matrix(0.216381,-0.001298,0.001500,0.249996,0,0);-webkit-transform:matrix(0.216381,-0.001298,0.001500,0.249996,0,0);}
.m3b_c01352{transform:matrix(0.217406,-0.001304,0.001500,0.249996,0,0);-ms-transform:matrix(0.217406,-0.001304,0.001500,0.249996,0,0);-webkit-transform:matrix(0.217406,-0.001304,0.001500,0.249996,0,0);}
.m17_c01352{transform:matrix(0.220251,-0.001322,0.001500,0.249996,0,0);-ms-transform:matrix(0.220251,-0.001322,0.001500,0.249996,0,0);-webkit-transform:matrix(0.220251,-0.001322,0.001500,0.249996,0,0);}
.m23_c01352{transform:matrix(0.221371,-0.001328,0.001500,0.249996,0,0);-ms-transform:matrix(0.221371,-0.001328,0.001500,0.249996,0,0);-webkit-transform:matrix(0.221371,-0.001328,0.001500,0.249996,0,0);}
.m37_c01352{transform:matrix(0.221746,-0.001330,0.001500,0.249996,0,0);-ms-transform:matrix(0.221746,-0.001330,0.001500,0.249996,0,0);-webkit-transform:matrix(0.221746,-0.001330,0.001500,0.249996,0,0);}
.m4f_c01352{transform:matrix(0.223626,-0.001342,0.001500,0.249996,0,0);-ms-transform:matrix(0.223626,-0.001342,0.001500,0.249996,0,0);-webkit-transform:matrix(0.223626,-0.001342,0.001500,0.249996,0,0);}
.m1b_c01352{transform:matrix(0.224746,-0.001348,0.001500,0.249996,0,0);-ms-transform:matrix(0.224746,-0.001348,0.001500,0.249996,0,0);-webkit-transform:matrix(0.224746,-0.001348,0.001500,0.249996,0,0);}
.m5e_c01352{transform:matrix(0.226077,-0.001130,0.001250,0.249997,0,0);-ms-transform:matrix(0.226077,-0.001130,0.001250,0.249997,0,0);-webkit-transform:matrix(0.226077,-0.001130,0.001250,0.249997,0,0);}
.m41_c01352{transform:matrix(0.228076,-0.001368,0.001500,0.249996,0,0);-ms-transform:matrix(0.228076,-0.001368,0.001500,0.249996,0,0);-webkit-transform:matrix(0.228076,-0.001368,0.001500,0.249996,0,0);}
.me_c01352{transform:matrix(0.228170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228170,0.000000,0.000000,0.250000,0,0);}
.m60_c01352{transform:matrix(0.228392,-0.001142,0.001250,0.249997,0,0);-ms-transform:matrix(0.228392,-0.001142,0.001250,0.249997,0,0);-webkit-transform:matrix(0.228392,-0.001142,0.001250,0.249997,0,0);}
.m32_c01352{transform:matrix(0.228961,-0.001374,0.001500,0.249996,0,0);-ms-transform:matrix(0.228961,-0.001374,0.001500,0.249996,0,0);-webkit-transform:matrix(0.228961,-0.001374,0.001500,0.249996,0,0);}
.m27_c01352{transform:matrix(0.229521,-0.001377,0.001500,0.249996,0,0);-ms-transform:matrix(0.229521,-0.001377,0.001500,0.249996,0,0);-webkit-transform:matrix(0.229521,-0.001377,0.001500,0.249996,0,0);}
.m5b_c01352{transform:matrix(0.229587,-0.001148,0.001250,0.249997,0,0);-ms-transform:matrix(0.229587,-0.001148,0.001250,0.249997,0,0);-webkit-transform:matrix(0.229587,-0.001148,0.001250,0.249997,0,0);}
.m5d_c01352{transform:matrix(0.229717,-0.001149,0.001250,0.249997,0,0);-ms-transform:matrix(0.229717,-0.001149,0.001250,0.249997,0,0);-webkit-transform:matrix(0.229717,-0.001149,0.001250,0.249997,0,0);}
.m1f_c01352{transform:matrix(0.233796,-0.001403,0.001500,0.249996,0,0);-ms-transform:matrix(0.233796,-0.001403,0.001500,0.249996,0,0);-webkit-transform:matrix(0.233796,-0.001403,0.001500,0.249996,0,0);}
.m15_c01352{transform:matrix(0.236325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236325,0.000000,0.000000,0.250000,0,0);}
.m8_c01352{transform:matrix(0.236585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236585,0.000000,0.000000,0.250000,0,0);}
.m21_c01352{transform:matrix(0.237116,-0.001423,0.001500,0.249996,0,0);-ms-transform:matrix(0.237116,-0.001423,0.001500,0.249996,0,0);-webkit-transform:matrix(0.237116,-0.001423,0.001500,0.249996,0,0);}
.m31_c01352{transform:matrix(0.237591,-0.001426,0.001500,0.249996,0,0);-ms-transform:matrix(0.237591,-0.001426,0.001500,0.249996,0,0);-webkit-transform:matrix(0.237591,-0.001426,0.001500,0.249996,0,0);}
.m19_c01352{transform:matrix(0.239121,-0.001435,0.001500,0.249996,0,0);-ms-transform:matrix(0.239121,-0.001435,0.001500,0.249996,0,0);-webkit-transform:matrix(0.239121,-0.001435,0.001500,0.249996,0,0);}
.m16_c01352{transform:matrix(0.239291,-0.001436,0.001500,0.249996,0,0);-ms-transform:matrix(0.239291,-0.001436,0.001500,0.249996,0,0);-webkit-transform:matrix(0.239291,-0.001436,0.001500,0.249996,0,0);}
.m5a_c01352{transform:matrix(0.239907,-0.001200,0.001250,0.249997,0,0);-ms-transform:matrix(0.239907,-0.001200,0.001250,0.249997,0,0);-webkit-transform:matrix(0.239907,-0.001200,0.001250,0.249997,0,0);}
.m30_c01352{transform:matrix(0.242511,-0.001455,0.001500,0.249996,0,0);-ms-transform:matrix(0.242511,-0.001455,0.001500,0.249996,0,0);-webkit-transform:matrix(0.242511,-0.001455,0.001500,0.249996,0,0);}
.m2a_c01352{transform:matrix(0.242741,-0.001456,0.001500,0.249996,0,0);-ms-transform:matrix(0.242741,-0.001456,0.001500,0.249996,0,0);-webkit-transform:matrix(0.242741,-0.001456,0.001500,0.249996,0,0);}
.m56_c01352{transform:matrix(0.242752,-0.001214,0.001250,0.249997,0,0);-ms-transform:matrix(0.242752,-0.001214,0.001250,0.249997,0,0);-webkit-transform:matrix(0.242752,-0.001214,0.001250,0.249997,0,0);}
.ma_c01352{transform:matrix(0.242980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242980,0.000000,0.000000,0.250000,0,0);}
.m14_c01352{transform:matrix(0.244295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244295,0.000000,0.000000,0.250000,0,0);}
.m2e_c01352{transform:matrix(0.245386,-0.001472,0.001500,0.249996,0,0);-ms-transform:matrix(0.245386,-0.001472,0.001500,0.249996,0,0);-webkit-transform:matrix(0.245386,-0.001472,0.001500,0.249996,0,0);}
.m46_c01352{transform:matrix(0.246191,-0.001477,0.001500,0.249996,0,0);-ms-transform:matrix(0.246191,-0.001477,0.001500,0.249996,0,0);-webkit-transform:matrix(0.246191,-0.001477,0.001500,0.249996,0,0);}
.m4b_c01352{transform:matrix(0.247066,-0.001482,0.001500,0.249996,0,0);-ms-transform:matrix(0.247066,-0.001482,0.001500,0.249996,0,0);-webkit-transform:matrix(0.247066,-0.001482,0.001500,0.249996,0,0);}
.m42_c01352{transform:matrix(0.248076,-0.001488,0.001500,0.249996,0,0);-ms-transform:matrix(0.248076,-0.001488,0.001500,0.249996,0,0);-webkit-transform:matrix(0.248076,-0.001488,0.001500,0.249996,0,0);}
.m11_c01352{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m12_c01352{transform:matrix(0.249570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249570,0.000000,0.000000,0.250000,0,0);}
.m2c_c01352{transform:matrix(0.252545,-0.001515,0.001500,0.249996,0,0);-ms-transform:matrix(0.252545,-0.001515,0.001500,0.249996,0,0);-webkit-transform:matrix(0.252545,-0.001515,0.001500,0.249996,0,0);}
.m4c_c01352{transform:matrix(0.252820,-0.001517,0.001500,0.249996,0,0);-ms-transform:matrix(0.252820,-0.001517,0.001500,0.249996,0,0);-webkit-transform:matrix(0.252820,-0.001517,0.001500,0.249996,0,0);}
.mf_c01352{transform:matrix(0.255200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255200,0.000000,0.000000,0.250000,0,0);}
.m45_c01352{transform:matrix(0.255330,-0.001532,0.001500,0.249996,0,0);-ms-transform:matrix(0.255330,-0.001532,0.001500,0.249996,0,0);-webkit-transform:matrix(0.255330,-0.001532,0.001500,0.249996,0,0);}
.m1c_c01352{transform:matrix(0.255745,-0.001534,0.001500,0.249996,0,0);-ms-transform:matrix(0.255745,-0.001534,0.001500,0.249996,0,0);-webkit-transform:matrix(0.255745,-0.001534,0.001500,0.249996,0,0);}
.m1d_c01352{transform:matrix(0.256370,-0.001538,0.001500,0.249996,0,0);-ms-transform:matrix(0.256370,-0.001538,0.001500,0.249996,0,0);-webkit-transform:matrix(0.256370,-0.001538,0.001500,0.249996,0,0);}
.m4e_c01352{transform:matrix(0.256635,-0.001540,0.001500,0.249996,0,0);-ms-transform:matrix(0.256635,-0.001540,0.001500,0.249996,0,0);-webkit-transform:matrix(0.256635,-0.001540,0.001500,0.249996,0,0);}
.m1e_c01352{transform:matrix(0.258625,-0.001552,0.001500,0.249996,0,0);-ms-transform:matrix(0.258625,-0.001552,0.001500,0.249996,0,0);-webkit-transform:matrix(0.258625,-0.001552,0.001500,0.249996,0,0);}
.m2f_c01352{transform:matrix(0.258870,-0.001553,0.001500,0.249996,0,0);-ms-transform:matrix(0.258870,-0.001553,0.001500,0.249996,0,0);-webkit-transform:matrix(0.258870,-0.001553,0.001500,0.249996,0,0);}
.m50_c01352{transform:matrix(0.260022,-0.001300,0.001250,0.249997,0,0);-ms-transform:matrix(0.260022,-0.001300,0.001250,0.249997,0,0);-webkit-transform:matrix(0.260022,-0.001300,0.001250,0.249997,0,0);}
.m5_c01352{transform:matrix(0.262290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262290,0.000000,0.000000,0.250000,0,0);}
.m26_c01352{transform:matrix(0.263125,-0.001579,0.001500,0.249996,0,0);-ms-transform:matrix(0.263125,-0.001579,0.001500,0.249996,0,0);-webkit-transform:matrix(0.263125,-0.001579,0.001500,0.249996,0,0);}
.m28_c01352{transform:matrix(0.263755,-0.001583,0.001500,0.249996,0,0);-ms-transform:matrix(0.263755,-0.001583,0.001500,0.249996,0,0);-webkit-transform:matrix(0.263755,-0.001583,0.001500,0.249996,0,0);}
.m4d_c01352{transform:matrix(0.263780,-0.001583,0.001500,0.249996,0,0);-ms-transform:matrix(0.263780,-0.001583,0.001500,0.249996,0,0);-webkit-transform:matrix(0.263780,-0.001583,0.001500,0.249996,0,0);}
.m55_c01352{transform:matrix(0.264052,-0.001320,0.001250,0.249997,0,0);-ms-transform:matrix(0.264052,-0.001320,0.001250,0.249997,0,0);-webkit-transform:matrix(0.264052,-0.001320,0.001250,0.249997,0,0);}
.m4_c01352{transform:matrix(0.264760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264760,0.000000,0.000000,0.250000,0,0);}
.m44_c01352{transform:matrix(0.265315,-0.001592,0.001500,0.249996,0,0);-ms-transform:matrix(0.265315,-0.001592,0.001500,0.249996,0,0);-webkit-transform:matrix(0.265315,-0.001592,0.001500,0.249996,0,0);}
.m18_c01352{transform:matrix(0.265490,-0.001593,0.001500,0.249996,0,0);-ms-transform:matrix(0.265490,-0.001593,0.001500,0.249996,0,0);-webkit-transform:matrix(0.265490,-0.001593,0.001500,0.249996,0,0);}
.m29_c01352{transform:matrix(0.266025,-0.001596,0.001500,0.249996,0,0);-ms-transform:matrix(0.266025,-0.001596,0.001500,0.249996,0,0);-webkit-transform:matrix(0.266025,-0.001596,0.001500,0.249996,0,0);}
.m53_c01352{transform:matrix(0.266237,-0.001331,0.001250,0.249997,0,0);-ms-transform:matrix(0.266237,-0.001331,0.001250,0.249997,0,0);-webkit-transform:matrix(0.266237,-0.001331,0.001250,0.249997,0,0);}
.m4a_c01352{transform:matrix(0.266755,-0.001601,0.001500,0.249996,0,0);-ms-transform:matrix(0.266755,-0.001601,0.001500,0.249996,0,0);-webkit-transform:matrix(0.266755,-0.001601,0.001500,0.249996,0,0);}
.m20_c01352{transform:matrix(0.267200,-0.001603,0.001500,0.249996,0,0);-ms-transform:matrix(0.267200,-0.001603,0.001500,0.249996,0,0);-webkit-transform:matrix(0.267200,-0.001603,0.001500,0.249996,0,0);}
.m52_c01352{transform:matrix(0.268842,-0.001344,0.001250,0.249997,0,0);-ms-transform:matrix(0.268842,-0.001344,0.001250,0.249997,0,0);-webkit-transform:matrix(0.268842,-0.001344,0.001250,0.249997,0,0);}
.m33_c01352{transform:matrix(0.269000,-0.001614,0.001500,0.249996,0,0);-ms-transform:matrix(0.269000,-0.001614,0.001500,0.249996,0,0);-webkit-transform:matrix(0.269000,-0.001614,0.001500,0.249996,0,0);}
.md_c01352{transform:matrix(0.269585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269585,0.000000,0.000000,0.250000,0,0);}
.m2d_c01352{transform:matrix(0.269920,-0.001620,0.001500,0.249996,0,0);-ms-transform:matrix(0.269920,-0.001620,0.001500,0.249996,0,0);-webkit-transform:matrix(0.269920,-0.001620,0.001500,0.249996,0,0);}
.m1a_c01352{transform:matrix(0.271035,-0.001626,0.001500,0.249996,0,0);-ms-transform:matrix(0.271035,-0.001626,0.001500,0.249996,0,0);-webkit-transform:matrix(0.271035,-0.001626,0.001500,0.249996,0,0);}
.mb_c01352{transform:matrix(0.271260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271260,0.000000,0.000000,0.250000,0,0);}
.m57_c01352{transform:matrix(0.271597,-0.001358,0.001250,0.249997,0,0);-ms-transform:matrix(0.271597,-0.001358,0.001250,0.249997,0,0);-webkit-transform:matrix(0.271597,-0.001358,0.001250,0.249997,0,0);}
.m64_c01352{transform:matrix(0.271660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271660,0.000000,0.000000,0.250000,0,0);}
.m48_c01352{transform:matrix(0.272275,-0.001634,0.001500,0.249996,0,0);-ms-transform:matrix(0.272275,-0.001634,0.001500,0.249996,0,0);-webkit-transform:matrix(0.272275,-0.001634,0.001500,0.249996,0,0);}
.m58_c01352{transform:matrix(0.272977,-0.001365,0.001250,0.249997,0,0);-ms-transform:matrix(0.272977,-0.001365,0.001250,0.249997,0,0);-webkit-transform:matrix(0.272977,-0.001365,0.001250,0.249997,0,0);}
.m22_c01352{transform:matrix(0.273240,-0.001639,0.001500,0.249996,0,0);-ms-transform:matrix(0.273240,-0.001639,0.001500,0.249996,0,0);-webkit-transform:matrix(0.273240,-0.001639,0.001500,0.249996,0,0);}
.m9_c01352{transform:matrix(0.273890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273890,0.000000,0.000000,0.250000,0,0);}
.m47_c01352{transform:matrix(0.274235,-0.001645,0.001500,0.249996,0,0);-ms-transform:matrix(0.274235,-0.001645,0.001500,0.249996,0,0);-webkit-transform:matrix(0.274235,-0.001645,0.001500,0.249996,0,0);}
.m6_c01352{transform:matrix(0.274525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274525,0.000000,0.000000,0.250000,0,0);}
.m3_c01352{transform:matrix(0.274535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274535,0.000000,0.000000,0.250000,0,0);}
.m24_c01352{transform:matrix(0.274895,-0.001649,0.001500,0.249996,0,0);-ms-transform:matrix(0.274895,-0.001649,0.001500,0.249996,0,0);-webkit-transform:matrix(0.274895,-0.001649,0.001500,0.249996,0,0);}
.m13_c01352{transform:matrix(0.274925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274925,0.000000,0.000000,0.250000,0,0);}
.m25_c01352{transform:matrix(0.275970,-0.001656,0.001500,0.249996,0,0);-ms-transform:matrix(0.275970,-0.001656,0.001500,0.249996,0,0);-webkit-transform:matrix(0.275970,-0.001656,0.001500,0.249996,0,0);}
.m54_c01352{transform:matrix(0.276547,-0.001383,0.001250,0.249997,0,0);-ms-transform:matrix(0.276547,-0.001383,0.001250,0.249997,0,0);-webkit-transform:matrix(0.276547,-0.001383,0.001250,0.249997,0,0);}
.m10_c01352{transform:matrix(0.276895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276895,0.000000,0.000000,0.250000,0,0);}
.m43_c01352{transform:matrix(0.278105,-0.001669,0.001500,0.249996,0,0);-ms-transform:matrix(0.278105,-0.001669,0.001500,0.249996,0,0);-webkit-transform:matrix(0.278105,-0.001669,0.001500,0.249996,0,0);}
.m34_c01352{transform:matrix(0.279720,-0.001678,0.001500,0.249996,0,0);-ms-transform:matrix(0.279720,-0.001678,0.001500,0.249996,0,0);-webkit-transform:matrix(0.279720,-0.001678,0.001500,0.249996,0,0);}
.m7_c01352{transform:matrix(0.279755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279755,0.000000,0.000000,0.250000,0,0);}
.m49_c01352{transform:matrix(0.280400,-0.001682,0.001500,0.249996,0,0);-ms-transform:matrix(0.280400,-0.001682,0.001500,0.249996,0,0);-webkit-transform:matrix(0.280400,-0.001682,0.001500,0.249996,0,0);}
.m2b_c01352{transform:matrix(0.284980,-0.001710,0.001500,0.249996,0,0);-ms-transform:matrix(0.284980,-0.001710,0.001500,0.249996,0,0);-webkit-transform:matrix(0.284980,-0.001710,0.001500,0.249996,0,0);}
.m2_c01352{transform:matrix(0.313370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313370,0.000000,0.000000,0.250000,0,0);}
.m63_c01352{transform:matrix(0.318200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318200,0.000000,0.000000,0.250000,0,0);}
.m1_c01352{transform:matrix(0.336520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336520,0.000000,0.000000,0.250000,0,0);}
.m6d_c01352{transform:matrix(0.493465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493465,0.000000,0.000000,0.250000,0,0);}
.m62_c01352{transform:matrix(0.583460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583460,0.000000,0.000000,0.250000,0,0);}
.m65_c01352{transform:matrix(0.585435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.585435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.585435,0.000000,0.000000,0.250000,0,0);}
.m61_c01352{transform:matrix(3.956035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.956035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.956035,0.000000,0.000000,0.250000,0,0);}
.v0_c01352{vertical-align:0.000000px;}
.ls0_c01352{letter-spacing:0.000000px;}
.sc__c01352{text-shadow:none;}
.sc0_c01352{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__c01352{-webkit-text-stroke:0px transparent;}
.sc0_c01352{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01352{word-spacing:0.000000px;}
.fc0_c01352{color:transparent;}
.fs7_c01352{font-size:12.000000px;}
.fs9_c01352{font-size:30.000000px;}
.fs8_c01352{font-size:36.000000px;}
.fs1_c01352{font-size:72.000000px;}
.fs5_c01352{font-size:72.000900px;}
.fs3_c01352{font-size:72.001296px;}
.fs2_c01352{font-size:78.000000px;}
.fs0_c01352{font-size:84.000000px;}
.fs6_c01352{font-size:84.001050px;}
.fs4_c01352{font-size:90.001620px;}
.y0_c01352{bottom:0.000000px;}
.y63_c01352{bottom:546.210000px;}
.y62_c01352{bottom:549.180000px;}
.y61_c01352{bottom:556.200000px;}
.y60_c01352{bottom:564.030000px;}
.y5f_c01352{bottom:569.700000px;}
.y5e_c01352{bottom:576.720000px;}
.y5d_c01352{bottom:597.510000px;}
.y5c_c01352{bottom:602.640000px;}
.y5b_c01352{bottom:625.050000px;}
.y5a_c01352{bottom:747.442785px;}
.y59_c01352{bottom:747.443385px;}
.y55_c01352{bottom:747.443700px;}
.y58_c01352{bottom:747.443835px;}
.y56_c01352{bottom:747.443993px;}
.y57_c01352{bottom:747.444293px;}
.y4a_c01352{bottom:780.300000px;}
.y4b_c01352{bottom:780.583365px;}
.y4c_c01352{bottom:780.738773px;}
.y4d_c01352{bottom:781.224765px;}
.y4e_c01352{bottom:781.662165px;}
.y4f_c01352{bottom:782.103637px;}
.y50_c01352{bottom:782.433053px;}
.y51_c01352{bottom:782.650418px;}
.y52_c01352{bottom:783.090435px;}
.y53_c01352{bottom:783.583147px;}
.y54_c01352{bottom:783.695287px;}
.y45_c01352{bottom:814.316160px;}
.y46_c01352{bottom:815.158449px;}
.y47_c01352{bottom:815.960979px;}
.y48_c01352{bottom:816.940911px;}
.y49_c01352{bottom:817.753788px;}
.y3c_c01352{bottom:850.765695px;}
.y3d_c01352{bottom:851.205738px;}
.y3e_c01352{bottom:852.160278px;}
.y3f_c01352{bottom:852.682818px;}
.y40_c01352{bottom:853.205358px;}
.y41_c01352{bottom:853.473756px;}
.y42_c01352{bottom:854.259990px;}
.y43_c01352{bottom:855.125610px;}
.y44_c01352{bottom:856.002240px;}
.y2f_c01352{bottom:886.136829px;}
.y30_c01352{bottom:886.395927px;}
.y31_c01352{bottom:887.182125px;}
.y32_c01352{bottom:888.230289px;}
.y33_c01352{bottom:888.484458px;}
.y34_c01352{bottom:888.660654px;}
.y35_c01352{bottom:888.846699px;}
.y36_c01352{bottom:889.709079px;}
.y37_c01352{bottom:889.977288px;}
.y38_c01352{bottom:890.152017px;}
.y39_c01352{bottom:890.407803px;}
.y3a_c01352{bottom:890.666739px;}
.y3b_c01352{bottom:890.932197px;}
.y25_c01352{bottom:921.777513px;}
.y26_c01352{bottom:922.997889px;}
.y27_c01352{bottom:923.236644px;}
.y28_c01352{bottom:923.848371px;}
.y29_c01352{bottom:923.994156px;}
.y2a_c01352{bottom:924.458676px;}
.y2b_c01352{bottom:924.761412px;}
.y2c_c01352{bottom:925.067451px;}
.y2d_c01352{bottom:925.296507px;}
.y2e_c01352{bottom:925.914711px;}
.y1a_c01352{bottom:956.609745px;}
.y1b_c01352{bottom:956.843868px;}
.y1c_c01352{bottom:957.614211px;}
.y1d_c01352{bottom:957.838626px;}
.y1e_c01352{bottom:958.527324px;}
.y1f_c01352{bottom:959.297793px;}
.y20_c01352{bottom:959.903202px;}
.y21_c01352{bottom:960.133851px;}
.y22_c01352{bottom:960.588663px;}
.y23_c01352{bottom:960.822534px;}
.y24_c01352{bottom:961.360851px;}
.yf_c01352{bottom:993.330000px;}
.y10_c01352{bottom:993.532392px;}
.y11_c01352{bottom:993.731787px;}
.y12_c01352{bottom:994.258170px;}
.y13_c01352{bottom:994.515885px;}
.y14_c01352{bottom:994.975857px;}
.y15_c01352{bottom:995.172039px;}
.y16_c01352{bottom:995.575392px;}
.y17_c01352{bottom:996.035490px;}
.y18_c01352{bottom:996.419295px;}
.y19_c01352{bottom:996.618681px;}
.ye_c01352{bottom:1026.544500px;}
.y3_c01352{bottom:1061.100000px;}
.y4_c01352{bottom:1061.590500px;}
.y5_c01352{bottom:1062.472500px;}
.y6_c01352{bottom:1062.669000px;}
.y7_c01352{bottom:1063.456500px;}
.y8_c01352{bottom:1063.750500px;}
.y9_c01352{bottom:1064.343000px;}
.ya_c01352{bottom:1065.225000px;}
.yb_c01352{bottom:1065.621000px;}
.yc_c01352{bottom:1066.116000px;}
.yd_c01352{bottom:1067.109000px;}
.y2_c01352{bottom:1100.358000px;}
.y1_c01352{bottom:1172.488500px;}
.h9_c01352{height:12.000000px;}
.hb_c01352{height:30.000000px;}
.ha_c01352{height:36.000000px;}
.h3_c01352{height:72.000000px;}
.h7_c01352{height:72.000900px;}
.h5_c01352{height:72.001296px;}
.h4_c01352{height:78.000000px;}
.h2_c01352{height:84.000000px;}
.h8_c01352{height:84.001050px;}
.h6_c01352{height:90.001620px;}
.h1_c01352{height:1250.250000px;}
.h0_c01352{height:1250.370000px;}
.w1_c01352{width:912.000000px;}
.w0_c01352{width:912.300000px;}
.x0_c01352{left:0.000000px;}
.xb_c01352{left:167.787000px;}
.x2b_c01352{left:169.651797px;}
.x21_c01352{left:200.985198px;}
.x2c_c01352{left:202.084410px;}
.xc_c01352{left:222.351000px;}
.x32_c01352{left:224.764860px;}
.x38_c01352{left:225.766500px;}
.x39_c01352{left:256.848000px;}
.x4_c01352{left:274.860000px;}
.x16_c01352{left:276.291000px;}
.x36_c01352{left:278.601759px;}
.x2d_c01352{left:300.366231px;}
.x17_c01352{left:310.023000px;}
.x22_c01352{left:311.125041px;}
.xd_c01352{left:320.326500px;}
.x40_c01352{left:334.260405px;}
.xe_c01352{left:342.226500px;}
.x18_c01352{left:343.255500px;}
.x3a_c01352{left:354.046500px;}
.x5_c01352{left:363.150000px;}
.x27_c01352{left:376.489152px;}
.x37_c01352{left:398.146806px;}
.x33_c01352{left:409.442646px;}
.x1_c01352{left:427.950000px;}
.xf_c01352{left:429.699000px;}
.x19_c01352{left:430.986000px;}
.x6_c01352{left:440.640000px;}
.x41_c01352{left:442.531612px;}
.x2_c01352{left:451.710000px;}
.x10_c01352{left:462.346500px;}
.x28_c01352{left:463.943130px;}
.x1a_c01352{left:473.938500px;}
.x29_c01352{left:484.740504px;}
.x3_c01352{left:493.290000px;}
.x42_c01352{left:497.342985px;}
.x2e_c01352{left:508.542738px;}
.x7_c01352{left:517.590000px;}
.x11_c01352{left:528.259500px;}
.x3b_c01352{left:529.821000px;}
.x43_c01352{left:530.823825px;}
.x1b_c01352{left:550.600500px;}
.x23_c01352{left:551.720601px;}
.x1c_c01352{left:583.297500px;}
.x2a_c01352{left:594.365847px;}
.x3c_c01352{left:595.704000px;}
.x34_c01352{left:606.552279px;}
.x2f_c01352{left:616.271442px;}
.x12_c01352{left:626.232000px;}
.x8_c01352{left:637.200000px;}
.x3d_c01352{left:639.177000px;}
.x1d_c01352{left:650.523000px;}
.x13_c01352{left:670.267500px;}
.x30_c01352{left:671.593776px;}
.x31_c01352{left:703.474389px;}
.x35_c01352{left:714.820983px;}
.x14_c01352{left:725.347500px;}
.x1e_c01352{left:727.206000px;}
.x24_c01352{left:736.114494px;}
.x9_c01352{left:759.240000px;}
.x25_c01352{left:769.592796px;}
.x1f_c01352{left:791.173500px;}
.xa_c01352{left:802.170000px;}
.x20_c01352{left:824.404500px;}
.x3e_c01352{left:825.723000px;}
.x15_c01352{left:835.741500px;}
.x26_c01352{left:846.561837px;}
.x3f_c01352{left:848.151000px;}
.x45_c01352{left:899.910000px;}
.x44_c01352{left:902.340000px;}
.x48_c01352{left:904.230000px;}
.x47_c01352{left:905.580000px;}
.x46_c01352{left:906.660000px;}
@media print{
.v0_c01352{vertical-align:0.000000pt;}
.ls0_c01352{letter-spacing:0.000000pt;}
.ws0_c01352{word-spacing:0.000000pt;}
.fs7_c01352{font-size:10.666667pt;}
.fs9_c01352{font-size:26.666667pt;}
.fs8_c01352{font-size:32.000000pt;}
.fs1_c01352{font-size:64.000000pt;}
.fs5_c01352{font-size:64.000800pt;}
.fs3_c01352{font-size:64.001152pt;}
.fs2_c01352{font-size:69.333333pt;}
.fs0_c01352{font-size:74.666667pt;}
.fs6_c01352{font-size:74.667600pt;}
.fs4_c01352{font-size:80.001440pt;}
.y0_c01352{bottom:0.000000pt;}
.y63_c01352{bottom:485.520000pt;}
.y62_c01352{bottom:488.160000pt;}
.y61_c01352{bottom:494.400000pt;}
.y60_c01352{bottom:501.360000pt;}
.y5f_c01352{bottom:506.400000pt;}
.y5e_c01352{bottom:512.640000pt;}
.y5d_c01352{bottom:531.120000pt;}
.y5c_c01352{bottom:535.680000pt;}
.y5b_c01352{bottom:555.600000pt;}
.y5a_c01352{bottom:664.393587pt;}
.y59_c01352{bottom:664.394120pt;}
.y55_c01352{bottom:664.394400pt;}
.y58_c01352{bottom:664.394520pt;}
.y56_c01352{bottom:664.394660pt;}
.y57_c01352{bottom:664.394927pt;}
.y4a_c01352{bottom:693.600000pt;}
.y4b_c01352{bottom:693.851880pt;}
.y4c_c01352{bottom:693.990020pt;}
.y4d_c01352{bottom:694.422013pt;}
.y4e_c01352{bottom:694.810813pt;}
.y4f_c01352{bottom:695.203233pt;}
.y50_c01352{bottom:695.496047pt;}
.y51_c01352{bottom:695.689260pt;}
.y52_c01352{bottom:696.080387pt;}
.y53_c01352{bottom:696.518353pt;}
.y54_c01352{bottom:696.618033pt;}
.y45_c01352{bottom:723.836587pt;}
.y46_c01352{bottom:724.585288pt;}
.y47_c01352{bottom:725.298648pt;}
.y48_c01352{bottom:726.169699pt;}
.y49_c01352{bottom:726.892256pt;}
.y3c_c01352{bottom:756.236173pt;}
.y3d_c01352{bottom:756.627323pt;}
.y3e_c01352{bottom:757.475803pt;}
.y3f_c01352{bottom:757.940283pt;}
.y40_c01352{bottom:758.404763pt;}
.y41_c01352{bottom:758.643339pt;}
.y42_c01352{bottom:759.342213pt;}
.y43_c01352{bottom:760.111653pt;}
.y44_c01352{bottom:760.890880pt;}
.y2f_c01352{bottom:787.677181pt;}
.y30_c01352{bottom:787.907491pt;}
.y31_c01352{bottom:788.606333pt;}
.y32_c01352{bottom:789.538035pt;}
.y33_c01352{bottom:789.763963pt;}
.y34_c01352{bottom:789.920581pt;}
.y35_c01352{bottom:790.085955pt;}
.y36_c01352{bottom:790.852515pt;}
.y37_c01352{bottom:791.090923pt;}
.y38_c01352{bottom:791.246237pt;}
.y39_c01352{bottom:791.473603pt;}
.y3a_c01352{bottom:791.703768pt;}
.y3b_c01352{bottom:791.939731pt;}
.y25_c01352{bottom:819.357789pt;}
.y26_c01352{bottom:820.442568pt;}
.y27_c01352{bottom:820.654795pt;}
.y28_c01352{bottom:821.198552pt;}
.y29_c01352{bottom:821.328139pt;}
.y2a_c01352{bottom:821.741045pt;}
.y2b_c01352{bottom:822.010144pt;}
.y2c_c01352{bottom:822.282179pt;}
.y2d_c01352{bottom:822.485784pt;}
.y2e_c01352{bottom:823.035299pt;}
.y1a_c01352{bottom:850.319773pt;}
.y1b_c01352{bottom:850.527883pt;}
.y1c_c01352{bottom:851.212632pt;}
.y1d_c01352{bottom:851.412112pt;}
.y1e_c01352{bottom:852.024288pt;}
.y1f_c01352{bottom:852.709149pt;}
.y20_c01352{bottom:853.247291pt;}
.y21_c01352{bottom:853.452312pt;}
.y22_c01352{bottom:853.856589pt;}
.y23_c01352{bottom:854.064475pt;}
.y24_c01352{bottom:854.542979pt;}
.yf_c01352{bottom:882.960000pt;}
.y10_c01352{bottom:883.139904pt;}
.y11_c01352{bottom:883.317144pt;}
.y12_c01352{bottom:883.785040pt;}
.y13_c01352{bottom:884.014120pt;}
.y14_c01352{bottom:884.422984pt;}
.y15_c01352{bottom:884.597368pt;}
.y16_c01352{bottom:884.955904pt;}
.y17_c01352{bottom:885.364880pt;}
.y18_c01352{bottom:885.706040pt;}
.y19_c01352{bottom:885.883272pt;}
.ye_c01352{bottom:912.484000pt;}
.y3_c01352{bottom:943.200000pt;}
.y4_c01352{bottom:943.636000pt;}
.y5_c01352{bottom:944.420000pt;}
.y6_c01352{bottom:944.594667pt;}
.y7_c01352{bottom:945.294667pt;}
.y8_c01352{bottom:945.556000pt;}
.y9_c01352{bottom:946.082667pt;}
.ya_c01352{bottom:946.866667pt;}
.yb_c01352{bottom:947.218667pt;}
.yc_c01352{bottom:947.658667pt;}
.yd_c01352{bottom:948.541333pt;}
.y2_c01352{bottom:978.096000pt;}
.y1_c01352{bottom:1042.212000pt;}
.h9_c01352{height:10.666667pt;}
.hb_c01352{height:26.666667pt;}
.ha_c01352{height:32.000000pt;}
.h3_c01352{height:64.000000pt;}
.h7_c01352{height:64.000800pt;}
.h5_c01352{height:64.001152pt;}
.h4_c01352{height:69.333333pt;}
.h2_c01352{height:74.666667pt;}
.h8_c01352{height:74.667600pt;}
.h6_c01352{height:80.001440pt;}
.h1_c01352{height:1111.333333pt;}
.h0_c01352{height:1111.440000pt;}
.w1_c01352{width:810.666667pt;}
.w0_c01352{width:810.933333pt;}
.x0_c01352{left:0.000000pt;}
.xb_c01352{left:149.144000pt;}
.x2b_c01352{left:150.801597pt;}
.x21_c01352{left:178.653509pt;}
.x2c_c01352{left:179.630587pt;}
.xc_c01352{left:197.645333pt;}
.x32_c01352{left:199.790987pt;}
.x38_c01352{left:200.681333pt;}
.x39_c01352{left:228.309333pt;}
.x4_c01352{left:244.320000pt;}
.x16_c01352{left:245.592000pt;}
.x36_c01352{left:247.646008pt;}
.x2d_c01352{left:266.992205pt;}
.x17_c01352{left:275.576000pt;}
.x22_c01352{left:276.555592pt;}
.xd_c01352{left:284.734667pt;}
.x40_c01352{left:297.120360pt;}
.xe_c01352{left:304.201333pt;}
.x18_c01352{left:305.116000pt;}
.x3a_c01352{left:314.708000pt;}
.x5_c01352{left:322.800000pt;}
.x27_c01352{left:334.657024pt;}
.x37_c01352{left:353.908272pt;}
.x33_c01352{left:363.949019pt;}
.x1_c01352{left:380.400000pt;}
.xf_c01352{left:381.954667pt;}
.x19_c01352{left:383.098667pt;}
.x6_c01352{left:391.680000pt;}
.x41_c01352{left:393.361433pt;}
.x2_c01352{left:401.520000pt;}
.x10_c01352{left:410.974667pt;}
.x28_c01352{left:412.393893pt;}
.x1a_c01352{left:421.278667pt;}
.x29_c01352{left:430.880448pt;}
.x3_c01352{left:438.480000pt;}
.x42_c01352{left:442.082653pt;}
.x2e_c01352{left:452.037989pt;}
.x7_c01352{left:460.080000pt;}
.x11_c01352{left:469.564000pt;}
.x3b_c01352{left:470.952000pt;}
.x43_c01352{left:471.843400pt;}
.x1b_c01352{left:489.422667pt;}
.x23_c01352{left:490.418312pt;}
.x1c_c01352{left:518.486667pt;}
.x2a_c01352{left:528.325197pt;}
.x3c_c01352{left:529.514667pt;}
.x34_c01352{left:539.157581pt;}
.x2f_c01352{left:547.796837pt;}
.x12_c01352{left:556.650667pt;}
.x8_c01352{left:566.400000pt;}
.x3d_c01352{left:568.157333pt;}
.x1d_c01352{left:578.242667pt;}
.x13_c01352{left:595.793333pt;}
.x30_c01352{left:596.972245pt;}
.x31_c01352{left:625.310568pt;}
.x35_c01352{left:635.396429pt;}
.x14_c01352{left:644.753333pt;}
.x1e_c01352{left:646.405333pt;}
.x24_c01352{left:654.323995pt;}
.x9_c01352{left:674.880000pt;}
.x25_c01352{left:684.082485pt;}
.x1f_c01352{left:703.265333pt;}
.xa_c01352{left:713.040000pt;}
.x20_c01352{left:732.804000pt;}
.x3e_c01352{left:733.976000pt;}
.x15_c01352{left:742.881333pt;}
.x26_c01352{left:752.499411pt;}
.x3f_c01352{left:753.912000pt;}
.x45_c01352{left:799.920000pt;}
.x44_c01352{left:802.080000pt;}
.x48_c01352{left:803.760000pt;}
.x47_c01352{left:804.960000pt;}
.x46_c01352{left:805.920000pt;}
}





/* 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_c01353 {
    display:none;
  }
  .loading-indicator_c01353.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01353 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_c01353 { 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_c01353" -> "#page-container .classname_c01353")
 */
.pf_c01353 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01353 { /* 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_c01353.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01353 { /* 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_c01353 { /* 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_c01353 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01353 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01353 {overflow:visible;}
  }
}
.c_c01353 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01353 { /* 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_c01353:after { /* webkit #35443 */
  content: '';
}
.t_c01353:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01353 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 */
}
.__c01353 { /* 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_c01353 { /* info for Javascript */
  display:none;
}
.l_c01353 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01353 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01353 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01353: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_c01353 {
    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_c01353.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01353.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_c01353 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01353{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01353;src:url('chunks/assets/font_92d6bb63cbc780ceff7db400.woff2')format("woff");}.ff1_c01353{font-family:ff1_c01353;line-height:1.000000;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;}
.m3_c01353{transform:matrix(0.001163,0.145395,-0.249992,0.002000,0,0);-ms-transform:matrix(0.001163,0.145395,-0.249992,0.002000,0,0);-webkit-transform:matrix(0.001163,0.145395,-0.249992,0.002000,0,0);}
.m5_c01353{transform:matrix(0.001246,0.155765,-0.249992,0.002000,0,0);-ms-transform:matrix(0.001246,0.155765,-0.249992,0.002000,0,0);-webkit-transform:matrix(0.001246,0.155765,-0.249992,0.002000,0,0);}
.m7_c01353{transform:matrix(0.001599,0.199849,-0.249992,0.002000,0,0);-ms-transform:matrix(0.001599,0.199849,-0.249992,0.002000,0,0);-webkit-transform:matrix(0.001599,0.199849,-0.249992,0.002000,0,0);}
.ma_c01353{transform:matrix(0.001749,0.218563,-0.249992,0.002000,0,0);-ms-transform:matrix(0.001749,0.218563,-0.249992,0.002000,0,0);-webkit-transform:matrix(0.001749,0.218563,-0.249992,0.002000,0,0);}
.m6_c01353{transform:matrix(0.002010,0.251202,-0.249992,0.002000,0,0);-ms-transform:matrix(0.002010,0.251202,-0.249992,0.002000,0,0);-webkit-transform:matrix(0.002010,0.251202,-0.249992,0.002000,0,0);}
.m1_c01353{transform:matrix(0.002141,0.267581,-0.249992,0.002000,0,0);-ms-transform:matrix(0.002141,0.267581,-0.249992,0.002000,0,0);-webkit-transform:matrix(0.002141,0.267581,-0.249992,0.002000,0,0);}
.m8_c01353{transform:matrix(0.002303,0.287921,-0.249992,0.002000,0,0);-ms-transform:matrix(0.002303,0.287921,-0.249992,0.002000,0,0);-webkit-transform:matrix(0.002303,0.287921,-0.249992,0.002000,0,0);}
.m4_c01353{transform:matrix(0.002385,0.298080,-0.249992,0.002000,0,0);-ms-transform:matrix(0.002385,0.298080,-0.249992,0.002000,0,0);-webkit-transform:matrix(0.002385,0.298080,-0.249992,0.002000,0,0);}
.m9_c01353{transform:matrix(0.003126,0.390762,-0.249992,0.002000,0,0);-ms-transform:matrix(0.003126,0.390762,-0.249992,0.002000,0,0);-webkit-transform:matrix(0.003126,0.390762,-0.249992,0.002000,0,0);}
.m2_c01353{transform:matrix(0.004094,0.511719,-0.249992,0.002000,0,0);-ms-transform:matrix(0.004094,0.511719,-0.249992,0.002000,0,0);-webkit-transform:matrix(0.004094,0.511719,-0.249992,0.002000,0,0);}
.m0_c01353{transform:matrix(0.015964,0.498369,-0.249872,0.008004,0,0);-ms-transform:matrix(0.015964,0.498369,-0.249872,0.008004,0,0);-webkit-transform:matrix(0.015964,0.498369,-0.249872,0.008004,0,0);}
.v0_c01353{vertical-align:0.000000px;}
.ls0_c01353{letter-spacing:0.000000px;}
.sc__c01353{text-shadow:none;}
.sc0_c01353{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__c01353{-webkit-text-stroke:0px transparent;}
.sc0_c01353{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01353{word-spacing:0.000000px;}
.fc0_c01353{color:transparent;}
.fs0_c01353{font-size:17.991223px;}
.fs1_c01353{font-size:30.000960px;}
.fs2_c01353{font-size:42.001344px;}
.y0_c01353{bottom:0.000000px;}
.yb_c01353{bottom:96.114264px;}
.y6_c01353{bottom:106.927500px;}
.y5_c01353{bottom:116.901000px;}
.y4_c01353{bottom:123.933000px;}
.ya_c01353{bottom:133.101816px;}
.y3_c01353{bottom:152.014500px;}
.y9_c01353{bottom:167.933664px;}
.y8_c01353{bottom:180.342852px;}
.y2_c01353{bottom:190.350000px;}
.y1_c01353{bottom:197.979000px;}
.y7_c01353{bottom:200.068248px;}
.h2_c01353{height:17.991223px;}
.h3_c01353{height:30.000960px;}
.h4_c01353{height:42.001344px;}
.h1_c01353{height:1250.250000px;}
.h0_c01353{height:1250.370000px;}
.w1_c01353{width:912.000000px;}
.w0_c01353{width:912.300000px;}
.x0_c01353{left:0.000000px;}
.x3_c01353{left:17.545344px;}
.x2_c01353{left:24.030000px;}
.x1_c01353{left:30.778500px;}
@media print{
.v0_c01353{vertical-align:0.000000pt;}
.ls0_c01353{letter-spacing:0.000000pt;}
.ws0_c01353{word-spacing:0.000000pt;}
.fs0_c01353{font-size:15.992198pt;}
.fs1_c01353{font-size:26.667520pt;}
.fs2_c01353{font-size:37.334528pt;}
.y0_c01353{bottom:0.000000pt;}
.yb_c01353{bottom:85.434901pt;}
.y6_c01353{bottom:95.046667pt;}
.y5_c01353{bottom:103.912000pt;}
.y4_c01353{bottom:110.162667pt;}
.ya_c01353{bottom:118.312725pt;}
.y3_c01353{bottom:135.124000pt;}
.y9_c01353{bottom:149.274368pt;}
.y8_c01353{bottom:160.304757pt;}
.y2_c01353{bottom:169.200000pt;}
.y1_c01353{bottom:175.981333pt;}
.y7_c01353{bottom:177.838443pt;}
.h2_c01353{height:15.992198pt;}
.h3_c01353{height:26.667520pt;}
.h4_c01353{height:37.334528pt;}
.h1_c01353{height:1111.333333pt;}
.h0_c01353{height:1111.440000pt;}
.w1_c01353{width:810.666667pt;}
.w0_c01353{width:810.933333pt;}
.x0_c01353{left:0.000000pt;}
.x3_c01353{left:15.595861pt;}
.x2_c01353{left:21.360000pt;}
.x1_c01353{left:27.358667pt;}
}





/* 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_c01354 {
    display:none;
  }
  .loading-indicator_c01354.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01354 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_c01354 { 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_c01354" -> "#page-container .classname_c01354")
 */
.pf_c01354 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01354 { /* 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_c01354.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01354 { /* 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_c01354 { /* 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_c01354 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01354 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01354 {overflow:visible;}
  }
}
.c_c01354 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01354 { /* 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_c01354:after { /* webkit #35443 */
  content: '';
}
.t_c01354:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01354 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 */
}
.__c01354 { /* 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_c01354 { /* info for Javascript */
  display:none;
}
.l_c01354 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01354 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01354 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01354: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_c01354 {
    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_c01354.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01354.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_c01354 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01354{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01354;src:url('chunks/assets/font_c605e72f209fc835e906f064.woff2')format("woff");}.ff1_c01354{font-family:ff1_c01354;line-height:1.000000;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;}
.mbe_c01354{transform:matrix(0.027700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.027700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.027700,0.000000,0.000000,0.250000,0,0);}
.m8_c01354{transform:matrix(0.043220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.043220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.043220,0.000000,0.000000,0.250000,0,0);}
.mfb_c01354{transform:matrix(0.119885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119885,0.000000,0.000000,0.250000,0,0);}
.mfe_c01354{transform:matrix(0.135615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135615,0.000000,0.000000,0.250000,0,0);}
.mf5_c01354{transform:matrix(0.136645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136645,0.000000,0.000000,0.250000,0,0);}
.mf3_c01354{transform:matrix(0.137505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137505,0.000000,0.000000,0.250000,0,0);}
.mfa_c01354{transform:matrix(0.139505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139505,0.000000,0.000000,0.250000,0,0);}
.m0_c01354{transform:matrix(0.139975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139975,0.000000,0.000000,0.250000,0,0);}
.m5_c01354{transform:matrix(0.142440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142440,0.000000,0.000000,0.250000,0,0);}
.mf9_c01354{transform:matrix(0.143570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143570,0.000000,0.000000,0.250000,0,0);}
.me2_c01354{transform:matrix(0.144065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144065,0.000000,0.000000,0.250000,0,0);}
.m100_c01354{transform:matrix(0.145415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145415,0.000000,0.000000,0.250000,0,0);}
.mf8_c01354{transform:matrix(0.147100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147100,0.000000,0.000000,0.250000,0,0);}
.md9_c01354{transform:matrix(0.147595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147595,0.000000,0.000000,0.250000,0,0);}
.mf4_c01354{transform:matrix(0.148545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148545,0.000000,0.000000,0.250000,0,0);}
.mf2_c01354{transform:matrix(0.150785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150785,0.000000,0.000000,0.250000,0,0);}
.me3_c01354{transform:matrix(0.150960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150960,0.000000,0.000000,0.250000,0,0);}
.m11c_c01354{transform:matrix(0.152040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152040,0.000000,0.000000,0.250000,0,0);}
.mf6_c01354{transform:matrix(0.154550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154550,0.000000,0.000000,0.250000,0,0);}
.m3_c01354{transform:matrix(0.156350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156350,0.000000,0.000000,0.250000,0,0);}
.mff_c01354{transform:matrix(0.158600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158600,0.000000,0.000000,0.250000,0,0);}
.mda_c01354{transform:matrix(0.161040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161040,0.000000,0.000000,0.250000,0,0);}
.mfd_c01354{transform:matrix(0.162555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162555,0.000000,0.000000,0.250000,0,0);}
.m6_c01354{transform:matrix(0.163635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163635,0.000000,0.000000,0.250000,0,0);}
.m112_c01354{transform:matrix(0.164130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164130,0.000000,0.000000,0.250000,0,0);}
.m110_c01354{transform:matrix(0.165035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165035,0.000000,0.000000,0.250000,0,0);}
.m4_c01354{transform:matrix(0.166010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166010,0.000000,0.000000,0.250000,0,0);}
.m14_c01354{transform:matrix(0.166390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166390,0.000000,0.000000,0.250000,0,0);}
.me4_c01354{transform:matrix(0.167125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167125,0.000000,0.000000,0.250000,0,0);}
.mdc_c01354{transform:matrix(0.167365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167365,0.000000,0.000000,0.250000,0,0);}
.mdd_c01354{transform:matrix(0.167930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167930,0.000000,0.000000,0.250000,0,0);}
.m10d_c01354{transform:matrix(0.168075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168075,0.000000,0.000000,0.250000,0,0);}
.mdb_c01354{transform:matrix(0.169135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169135,0.000000,0.000000,0.250000,0,0);}
.m16_c01354{transform:matrix(0.169345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169345,0.000000,0.000000,0.250000,0,0);}
.m1a_c01354{transform:matrix(0.170770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170770,0.000000,0.000000,0.250000,0,0);}
.m102_c01354{transform:matrix(0.170945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170945,0.000000,0.000000,0.250000,0,0);}
.mef_c01354{transform:matrix(0.171190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171190,0.000000,0.000000,0.250000,0,0);}
.me0_c01354{transform:matrix(0.171865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171865,0.000000,0.000000,0.250000,0,0);}
.m1d_c01354{transform:matrix(0.172300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172300,0.000000,0.000000,0.250000,0,0);}
.m2_c01354{transform:matrix(0.173220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173220,0.000000,0.000000,0.250000,0,0);}
.m10f_c01354{transform:matrix(0.174030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174030,0.000000,0.000000,0.250000,0,0);}
.m114_c01354{transform:matrix(0.174140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174140,0.000000,0.000000,0.250000,0,0);}
.m3d_c01354{transform:matrix(0.174590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174590,0.000000,0.000000,0.250000,0,0);}
.m7_c01354{transform:matrix(0.174720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174720,0.000000,0.000000,0.250000,0,0);}
.m113_c01354{transform:matrix(0.174875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174875,0.000000,0.000000,0.250000,0,0);}
.m111_c01354{transform:matrix(0.175485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175485,0.000000,0.000000,0.250000,0,0);}
.m65_c01354{transform:matrix(0.175845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175845,0.000000,0.000000,0.250000,0,0);}
.m133_c01354{transform:matrix(0.176345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176345,0.000000,0.000000,0.250000,0,0);}
.me6_c01354{transform:matrix(0.177710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177710,0.000000,0.000000,0.250000,0,0);}
.m136_c01354{transform:matrix(0.177880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177880,0.000000,0.000000,0.250000,0,0);}
.m18_c01354{transform:matrix(0.178480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178480,0.000000,0.000000,0.250000,0,0);}
.m60_c01354{transform:matrix(0.178665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178665,0.000000,0.000000,0.250000,0,0);}
.m5f_c01354{transform:matrix(0.178800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178800,0.000000,0.000000,0.250000,0,0);}
.m52_c01354{transform:matrix(0.179030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179030,0.000000,0.000000,0.250000,0,0);}
.m66_c01354{transform:matrix(0.180625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180625,0.000000,0.000000,0.250000,0,0);}
.m63_c01354{transform:matrix(0.180700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180700,0.000000,0.000000,0.250000,0,0);}
.m41_c01354{transform:matrix(0.181400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181400,0.000000,0.000000,0.250000,0,0);}
.me1_c01354{transform:matrix(0.181635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181635,0.000000,0.000000,0.250000,0,0);}
.m115_c01354{transform:matrix(0.181650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181650,0.000000,0.000000,0.250000,0,0);}
.m54_c01354{transform:matrix(0.182030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182030,0.000000,0.000000,0.250000,0,0);}
.m3b_c01354{transform:matrix(0.182075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182075,0.000000,0.000000,0.250000,0,0);}
.mf7_c01354{transform:matrix(0.183700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183700,0.000000,0.000000,0.250000,0,0);}
.m1c_c01354{transform:matrix(0.183775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183775,0.000000,0.000000,0.250000,0,0);}
.m119_c01354{transform:matrix(0.184095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184095,0.000000,0.000000,0.250000,0,0);}
.m10e_c01354{transform:matrix(0.184390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184390,0.000000,0.000000,0.250000,0,0);}
.m132_c01354{transform:matrix(0.184905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184905,0.000000,0.000000,0.250000,0,0);}
.m120_c01354{transform:matrix(0.185235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185235,0.000000,0.000000,0.250000,0,0);}
.m5d_c01354{transform:matrix(0.185840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185840,0.000000,0.000000,0.250000,0,0);}
.m116_c01354{transform:matrix(0.186030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186030,0.000000,0.000000,0.250000,0,0);}
.m1_c01354{transform:matrix(0.186865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186865,0.000000,0.000000,0.250000,0,0);}
.m1e_c01354{transform:matrix(0.188635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188635,0.000000,0.000000,0.250000,0,0);}
.m56_c01354{transform:matrix(0.188815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188815,0.000000,0.000000,0.250000,0,0);}
.m134_c01354{transform:matrix(0.189085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189085,0.000000,0.000000,0.250000,0,0);}
.m11d_c01354{transform:matrix(0.189475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189475,0.000000,0.000000,0.250000,0,0);}
.m101_c01354{transform:matrix(0.189575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189575,0.000000,0.000000,0.250000,0,0);}
.m61_c01354{transform:matrix(0.190190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190190,0.000000,0.000000,0.250000,0,0);}
.m53_c01354{transform:matrix(0.190635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190635,0.000000,0.000000,0.250000,0,0);}
.m121_c01354{transform:matrix(0.191025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191025,0.000000,0.000000,0.250000,0,0);}
.m11a_c01354{transform:matrix(0.191405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191405,0.000000,0.000000,0.250000,0,0);}
.m1b_c01354{transform:matrix(0.191720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191720,0.000000,0.000000,0.250000,0,0);}
.m58_c01354{transform:matrix(0.192030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192030,0.000000,0.000000,0.250000,0,0);}
.m55_c01354{transform:matrix(0.192110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192110,0.000000,0.000000,0.250000,0,0);}
.m17_c01354{transform:matrix(0.192370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192370,0.000000,0.000000,0.250000,0,0);}
.m15_c01354{transform:matrix(0.192720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192720,0.000000,0.000000,0.250000,0,0);}
.m3e_c01354{transform:matrix(0.192895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192895,0.000000,0.000000,0.250000,0,0);}
.m118_c01354{transform:matrix(0.193175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193175,0.000000,0.000000,0.250000,0,0);}
.m19_c01354{transform:matrix(0.193245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193245,0.000000,0.000000,0.250000,0,0);}
.m39_c01354{transform:matrix(0.193310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193310,0.000000,0.000000,0.250000,0,0);}
.m122_c01354{transform:matrix(0.193335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193335,0.000000,0.000000,0.250000,0,0);}
.m3f_c01354{transform:matrix(0.193405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193405,0.000000,0.000000,0.250000,0,0);}
.m40_c01354{transform:matrix(0.194825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194825,0.000000,0.000000,0.250000,0,0);}
.m62_c01354{transform:matrix(0.195235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195235,0.000000,0.000000,0.250000,0,0);}
.m67_c01354{transform:matrix(0.195735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195735,0.000000,0.000000,0.250000,0,0);}
.m3c_c01354{transform:matrix(0.196020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196020,0.000000,0.000000,0.250000,0,0);}
.m64_c01354{transform:matrix(0.196410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196410,0.000000,0.000000,0.250000,0,0);}
.m12f_c01354{transform:matrix(0.196575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196575,0.000000,0.000000,0.250000,0,0);}
.m5e_c01354{transform:matrix(0.197455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197455,0.000000,0.000000,0.250000,0,0);}
.m1f_c01354{transform:matrix(0.197975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197975,0.000000,0.000000,0.250000,0,0);}
.m106_c01354{transform:matrix(0.198195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198195,0.000000,0.000000,0.250000,0,0);}
.m43_c01354{transform:matrix(0.198270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198270,0.000000,0.000000,0.250000,0,0);}
.m129_c01354{transform:matrix(0.198545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198545,0.000000,0.000000,0.250000,0,0);}
.m117_c01354{transform:matrix(0.200120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200120,0.000000,0.000000,0.250000,0,0);}
.m50_c01354{transform:matrix(0.200165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200165,0.000000,0.000000,0.250000,0,0);}
.m57_c01354{transform:matrix(0.200315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200315,0.000000,0.000000,0.250000,0,0);}
.m51_c01354{transform:matrix(0.200635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200635,0.000000,0.000000,0.250000,0,0);}
.med_c01354{transform:matrix(0.201245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201245,0.000000,0.000000,0.250000,0,0);}
.m11f_c01354{transform:matrix(0.201700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201700,0.000000,0.000000,0.250000,0,0);}
.m31_c01354{transform:matrix(0.202290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202290,0.000000,0.000000,0.250000,0,0);}
.m130_c01354{transform:matrix(0.202765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202765,0.000000,0.000000,0.250000,0,0);}
.m59_c01354{transform:matrix(0.203120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203120,0.000000,0.000000,0.250000,0,0);}
.m5a_c01354{transform:matrix(0.203405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203405,0.000000,0.000000,0.250000,0,0);}
.mbc_c01354{transform:matrix(0.204320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204320,0.000000,0.000000,0.250000,0,0);}
.m11b_c01354{transform:matrix(0.204415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204415,0.000000,0.000000,0.250000,0,0);}
.m5c_c01354{transform:matrix(0.204850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204850,0.000000,0.000000,0.250000,0,0);}
.m82_c01354{transform:matrix(0.205860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205860,0.000000,0.000000,0.250000,0,0);}
.m11e_c01354{transform:matrix(0.205915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205915,0.000000,0.000000,0.250000,0,0);}
.mbd_c01354{transform:matrix(0.205965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205965,0.000000,0.000000,0.250000,0,0);}
.mea_c01354{transform:matrix(0.206970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206970,0.000000,0.000000,0.250000,0,0);}
.m42_c01354{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m10c_c01354{transform:matrix(0.207430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207430,0.000000,0.000000,0.250000,0,0);}
.mee_c01354{transform:matrix(0.207440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207440,0.000000,0.000000,0.250000,0,0);}
.m25_c01354{transform:matrix(0.207895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207895,0.000000,0.000000,0.250000,0,0);}
.m5b_c01354{transform:matrix(0.208445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208445,0.000000,0.000000,0.250000,0,0);}
.m28_c01354{transform:matrix(0.209220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209220,0.000000,0.000000,0.250000,0,0);}
.m12b_c01354{transform:matrix(0.209805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209805,0.000000,0.000000,0.250000,0,0);}
.mec_c01354{transform:matrix(0.209915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209915,0.000000,0.000000,0.250000,0,0);}
.m123_c01354{transform:matrix(0.209950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209950,0.000000,0.000000,0.250000,0,0);}
.m81_c01354{transform:matrix(0.210405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210405,0.000000,0.000000,0.250000,0,0);}
.m35_c01354{transform:matrix(0.210555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210555,0.000000,0.000000,0.250000,0,0);}
.ma0_c01354{transform:matrix(0.210875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210875,0.000000,0.000000,0.250000,0,0);}
.m76_c01354{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m37_c01354{transform:matrix(0.211700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211700,0.000000,0.000000,0.250000,0,0);}
.m12e_c01354{transform:matrix(0.212740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212740,0.000000,0.000000,0.250000,0,0);}
.m84_c01354{transform:matrix(0.214555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214555,0.000000,0.000000,0.250000,0,0);}
.m88_c01354{transform:matrix(0.215790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215790,0.000000,0.000000,0.250000,0,0);}
.mfc_c01354{transform:matrix(0.217160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217160,0.000000,0.000000,0.250000,0,0);}
.m83_c01354{transform:matrix(0.217605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217605,0.000000,0.000000,0.250000,0,0);}
.ma4_c01354{transform:matrix(0.217965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217965,0.000000,0.000000,0.250000,0,0);}
.m87_c01354{transform:matrix(0.218335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218335,0.000000,0.000000,0.250000,0,0);}
.m10_c01354{transform:matrix(0.218795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218795,0.000000,0.000000,0.250000,0,0);}
.mc_c01354{transform:matrix(0.219860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219860,0.000000,0.000000,0.250000,0,0);}
.m9c_c01354{transform:matrix(0.219965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219965,0.000000,0.000000,0.250000,0,0);}
.m9e_c01354{transform:matrix(0.220130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220130,0.000000,0.000000,0.250000,0,0);}
.m8c_c01354{transform:matrix(0.220480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220480,0.000000,0.000000,0.250000,0,0);}
.m128_c01354{transform:matrix(0.220725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220725,0.000000,0.000000,0.250000,0,0);}
.ma5_c01354{transform:matrix(0.220875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220875,0.000000,0.000000,0.250000,0,0);}
.m4e_c01354{transform:matrix(0.221945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221945,0.000000,0.000000,0.250000,0,0);}
.m12_c01354{transform:matrix(0.222125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222125,0.000000,0.000000,0.250000,0,0);}
.m3a_c01354{transform:matrix(0.222265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222265,0.000000,0.000000,0.250000,0,0);}
.m68_c01354{transform:matrix(0.222760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222760,0.000000,0.000000,0.250000,0,0);}
.m20_c01354{transform:matrix(0.222820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222820,0.000000,0.000000,0.250000,0,0);}
.m2a_c01354{transform:matrix(0.223275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223275,0.000000,0.000000,0.250000,0,0);}
.m6b_c01354{transform:matrix(0.223380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223380,0.000000,0.000000,0.250000,0,0);}
.me5_c01354{transform:matrix(0.223475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223475,0.000000,0.000000,0.250000,0,0);}
.m22_c01354{transform:matrix(0.223480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223480,0.000000,0.000000,0.250000,0,0);}
.m26_c01354{transform:matrix(0.224880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224880,0.000000,0.000000,0.250000,0,0);}
.m44_c01354{transform:matrix(0.224985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224985,0.000000,0.000000,0.250000,0,0);}
.mf1_c01354{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m38_c01354{transform:matrix(0.225420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225420,0.000000,0.000000,0.250000,0,0);}
.m99_c01354{transform:matrix(0.225940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225940,0.000000,0.000000,0.250000,0,0);}
.m108_c01354{transform:matrix(0.226035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226035,0.000000,0.000000,0.250000,0,0);}
.ma8_c01354{transform:matrix(0.226575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226575,0.000000,0.000000,0.250000,0,0);}
.m12c_c01354{transform:matrix(0.226625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226625,0.000000,0.000000,0.250000,0,0);}
.m46_c01354{transform:matrix(0.226895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226895,0.000000,0.000000,0.250000,0,0);}
.m126_c01354{transform:matrix(0.227435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227435,0.000000,0.000000,0.250000,0,0);}
.m131_c01354{transform:matrix(0.228385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228385,0.000000,0.000000,0.250000,0,0);}
.ma_c01354{transform:matrix(0.228630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228630,0.000000,0.000000,0.250000,0,0);}
.m2d_c01354{transform:matrix(0.228790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228790,0.000000,0.000000,0.250000,0,0);}
.m9f_c01354{transform:matrix(0.229145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229145,0.000000,0.000000,0.250000,0,0);}
.m49_c01354{transform:matrix(0.229205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229205,0.000000,0.000000,0.250000,0,0);}
.mdf_c01354{transform:matrix(0.229910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229910,0.000000,0.000000,0.250000,0,0);}
.m24_c01354{transform:matrix(0.230205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230205,0.000000,0.000000,0.250000,0,0);}
.m4b_c01354{transform:matrix(0.230445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230445,0.000000,0.000000,0.250000,0,0);}
.m29_c01354{transform:matrix(0.230565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230565,0.000000,0.000000,0.250000,0,0);}
.m23_c01354{transform:matrix(0.230720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230720,0.000000,0.000000,0.250000,0,0);}
.m125_c01354{transform:matrix(0.230905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230905,0.000000,0.000000,0.250000,0,0);}
.m70_c01354{transform:matrix(0.231405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231405,0.000000,0.000000,0.250000,0,0);}
.m47_c01354{transform:matrix(0.231495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231495,0.000000,0.000000,0.250000,0,0);}
.m127_c01354{transform:matrix(0.232800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232800,0.000000,0.000000,0.250000,0,0);}
.maf_c01354{transform:matrix(0.232975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232975,0.000000,0.000000,0.250000,0,0);}
.m6c_c01354{transform:matrix(0.233065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233065,0.000000,0.000000,0.250000,0,0);}
.m12d_c01354{transform:matrix(0.233315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233315,0.000000,0.000000,0.250000,0,0);}
.ma1_c01354{transform:matrix(0.233490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233490,0.000000,0.000000,0.250000,0,0);}
.m30_c01354{transform:matrix(0.233570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233570,0.000000,0.000000,0.250000,0,0);}
.m27_c01354{transform:matrix(0.233900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233900,0.000000,0.000000,0.250000,0,0);}
.me9_c01354{transform:matrix(0.234305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234305,0.000000,0.000000,0.250000,0,0);}
.ma2_c01354{transform:matrix(0.234985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234985,0.000000,0.000000,0.250000,0,0);}
.m86_c01354{transform:matrix(0.235060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235060,0.000000,0.000000,0.250000,0,0);}
.m8b_c01354{transform:matrix(0.235210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235210,0.000000,0.000000,0.250000,0,0);}
.m12a_c01354{transform:matrix(0.235435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235435,0.000000,0.000000,0.250000,0,0);}
.m11_c01354{transform:matrix(0.235575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235575,0.000000,0.000000,0.250000,0,0);}
.m8a_c01354{transform:matrix(0.235860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235860,0.000000,0.000000,0.250000,0,0);}
.m9d_c01354{transform:matrix(0.235920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235920,0.000000,0.000000,0.250000,0,0);}
.m69_c01354{transform:matrix(0.236365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236365,0.000000,0.000000,0.250000,0,0);}
.m6e_c01354{transform:matrix(0.237325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237325,0.000000,0.000000,0.250000,0,0);}
.m89_c01354{transform:matrix(0.237390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237390,0.000000,0.000000,0.250000,0,0);}
.m10a_c01354{transform:matrix(0.237780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237780,0.000000,0.000000,0.250000,0,0);}
.maa_c01354{transform:matrix(0.238535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238535,0.000000,0.000000,0.250000,0,0);}
.m7c_c01354{transform:matrix(0.239285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239285,0.000000,0.000000,0.250000,0,0);}
.m21_c01354{transform:matrix(0.239360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239360,0.000000,0.000000,0.250000,0,0);}
.ma3_c01354{transform:matrix(0.239400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239400,0.000000,0.000000,0.250000,0,0);}
.m6a_c01354{transform:matrix(0.239660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239660,0.000000,0.000000,0.250000,0,0);}
.m104_c01354{transform:matrix(0.239950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239950,0.000000,0.000000,0.250000,0,0);}
.m85_c01354{transform:matrix(0.240565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240565,0.000000,0.000000,0.250000,0,0);}
.ma6_c01354{transform:matrix(0.240755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240755,0.000000,0.000000,0.250000,0,0);}
.m109_c01354{transform:matrix(0.241180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241180,0.000000,0.000000,0.250000,0,0);}
.mc8_c01354{transform:matrix(0.241300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241300,0.000000,0.000000,0.250000,0,0);}
.md4_c01354{transform:matrix(0.241615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241615,0.000000,0.000000,0.250000,0,0);}
.m4f_c01354{transform:matrix(0.241645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241645,0.000000,0.000000,0.250000,0,0);}
.m8d_c01354{transform:matrix(0.241995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241995,0.000000,0.000000,0.250000,0,0);}
.mf_c01354{transform:matrix(0.242675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242675,0.000000,0.000000,0.250000,0,0);}
.m7b_c01354{transform:matrix(0.242745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242745,0.000000,0.000000,0.250000,0,0);}
.mae_c01354{transform:matrix(0.243140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243140,0.000000,0.000000,0.250000,0,0);}
.m75_c01354{transform:matrix(0.243495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243495,0.000000,0.000000,0.250000,0,0);}
.mde_c01354{transform:matrix(0.243745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243745,0.000000,0.000000,0.250000,0,0);}
.m91_c01354{transform:matrix(0.244095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244095,0.000000,0.000000,0.250000,0,0);}
.meb_c01354{transform:matrix(0.244180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244180,0.000000,0.000000,0.250000,0,0);}
.me_c01354{transform:matrix(0.244605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244605,0.000000,0.000000,0.250000,0,0);}
.md6_c01354{transform:matrix(0.244860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244860,0.000000,0.000000,0.250000,0,0);}
.m2b_c01354{transform:matrix(0.245120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245120,0.000000,0.000000,0.250000,0,0);}
.mb4_c01354{transform:matrix(0.245475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245475,0.000000,0.000000,0.250000,0,0);}
.m34_c01354{transform:matrix(0.245865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245865,0.000000,0.000000,0.250000,0,0);}
.m97_c01354{transform:matrix(0.246020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246020,0.000000,0.000000,0.250000,0,0);}
.m2c_c01354{transform:matrix(0.246030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246030,0.000000,0.000000,0.250000,0,0);}
.md0_c01354{transform:matrix(0.246195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246195,0.000000,0.000000,0.250000,0,0);}
.mb9_c01354{transform:matrix(0.246845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246845,0.000000,0.000000,0.250000,0,0);}
.m6f_c01354{transform:matrix(0.247160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247160,0.000000,0.000000,0.250000,0,0);}
.mc7_c01354{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m71_c01354{transform:matrix(0.247705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247705,0.000000,0.000000,0.250000,0,0);}
.mcc_c01354{transform:matrix(0.247955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247955,0.000000,0.000000,0.250000,0,0);}
.m7e_c01354{transform:matrix(0.248305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248305,0.000000,0.000000,0.250000,0,0);}
.m4a_c01354{transform:matrix(0.248555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248555,0.000000,0.000000,0.250000,0,0);}
.m72_c01354{transform:matrix(0.248560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248560,0.000000,0.000000,0.250000,0,0);}
.m36_c01354{transform:matrix(0.248675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248675,0.000000,0.000000,0.250000,0,0);}
.m6d_c01354{transform:matrix(0.248780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248780,0.000000,0.000000,0.250000,0,0);}
.md_c01354{transform:matrix(0.248920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248920,0.000000,0.000000,0.250000,0,0);}
.ma9_c01354{transform:matrix(0.249140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249140,0.000000,0.000000,0.250000,0,0);}
.m98_c01354{transform:matrix(0.249305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249305,0.000000,0.000000,0.250000,0,0);}
.mb_c01354{transform:matrix(0.249485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249485,0.000000,0.000000,0.250000,0,0);}
.mab_c01354{transform:matrix(0.249935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249935,0.000000,0.000000,0.250000,0,0);}
.mb7_c01354{transform:matrix(0.251010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251010,0.000000,0.000000,0.250000,0,0);}
.m103_c01354{transform:matrix(0.251040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251040,0.000000,0.000000,0.250000,0,0);}
.mad_c01354{transform:matrix(0.251450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251450,0.000000,0.000000,0.250000,0,0);}
.m45_c01354{transform:matrix(0.251790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251790,0.000000,0.000000,0.250000,0,0);}
.m10b_c01354{transform:matrix(0.252280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252280,0.000000,0.000000,0.250000,0,0);}
.mc6_c01354{transform:matrix(0.252630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252630,0.000000,0.000000,0.250000,0,0);}
.m13_c01354{transform:matrix(0.252715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252715,0.000000,0.000000,0.250000,0,0);}
.m2e_c01354{transform:matrix(0.252995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252995,0.000000,0.000000,0.250000,0,0);}
.mb5_c01354{transform:matrix(0.253260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253260,0.000000,0.000000,0.250000,0,0);}
.m4c_c01354{transform:matrix(0.253385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253385,0.000000,0.000000,0.250000,0,0);}
.m95_c01354{transform:matrix(0.253870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253870,0.000000,0.000000,0.250000,0,0);}
.mb2_c01354{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.m105_c01354{transform:matrix(0.254465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254465,0.000000,0.000000,0.250000,0,0);}
.m79_c01354{transform:matrix(0.254470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254470,0.000000,0.000000,0.250000,0,0);}
.mbb_c01354{transform:matrix(0.255195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255195,0.000000,0.000000,0.250000,0,0);}
.m2f_c01354{transform:matrix(0.255225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255225,0.000000,0.000000,0.250000,0,0);}
.mcd_c01354{transform:matrix(0.255440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255440,0.000000,0.000000,0.250000,0,0);}
.m9a_c01354{transform:matrix(0.255650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255650,0.000000,0.000000,0.250000,0,0);}
.ma7_c01354{transform:matrix(0.256440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256440,0.000000,0.000000,0.250000,0,0);}
.mb1_c01354{transform:matrix(0.257880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257880,0.000000,0.000000,0.250000,0,0);}
.m7f_c01354{transform:matrix(0.258045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258045,0.000000,0.000000,0.250000,0,0);}
.mc3_c01354{transform:matrix(0.258315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258315,0.000000,0.000000,0.250000,0,0);}
.md1_c01354{transform:matrix(0.258660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258660,0.000000,0.000000,0.250000,0,0);}
.mcb_c01354{transform:matrix(0.258860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258860,0.000000,0.000000,0.250000,0,0);}
.m107_c01354{transform:matrix(0.259070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259070,0.000000,0.000000,0.250000,0,0);}
.m48_c01354{transform:matrix(0.259105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259105,0.000000,0.000000,0.250000,0,0);}
.md3_c01354{transform:matrix(0.259760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259760,0.000000,0.000000,0.250000,0,0);}
.m7a_c01354{transform:matrix(0.259955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259955,0.000000,0.000000,0.250000,0,0);}
.m33_c01354{transform:matrix(0.260025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260025,0.000000,0.000000,0.250000,0,0);}
.mc9_c01354{transform:matrix(0.260435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260435,0.000000,0.000000,0.250000,0,0);}
.m74_c01354{transform:matrix(0.260485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260485,0.000000,0.000000,0.250000,0,0);}
.m32_c01354{transform:matrix(0.260895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260895,0.000000,0.000000,0.250000,0,0);}
.mcf_c01354{transform:matrix(0.260930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260930,0.000000,0.000000,0.250000,0,0);}
.m93_c01354{transform:matrix(0.261210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261210,0.000000,0.000000,0.250000,0,0);}
.m4d_c01354{transform:matrix(0.261320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261320,0.000000,0.000000,0.250000,0,0);}
.mb3_c01354{transform:matrix(0.262310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262310,0.000000,0.000000,0.250000,0,0);}
.m78_c01354{transform:matrix(0.262365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262365,0.000000,0.000000,0.250000,0,0);}
.mc0_c01354{transform:matrix(0.262395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262395,0.000000,0.000000,0.250000,0,0);}
.mc2_c01354{transform:matrix(0.262785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262785,0.000000,0.000000,0.250000,0,0);}
.m9b_c01354{transform:matrix(0.264725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264725,0.000000,0.000000,0.250000,0,0);}
.mb8_c01354{transform:matrix(0.264980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264980,0.000000,0.000000,0.250000,0,0);}
.m92_c01354{transform:matrix(0.265105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265105,0.000000,0.000000,0.250000,0,0);}
.md8_c01354{transform:matrix(0.265675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265675,0.000000,0.000000,0.250000,0,0);}
.mc4_c01354{transform:matrix(0.266520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266520,0.000000,0.000000,0.250000,0,0);}
.mc5_c01354{transform:matrix(0.267055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267055,0.000000,0.000000,0.250000,0,0);}
.mca_c01354{transform:matrix(0.267090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267090,0.000000,0.000000,0.250000,0,0);}
.mba_c01354{transform:matrix(0.268050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268050,0.000000,0.000000,0.250000,0,0);}
.mb0_c01354{transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);}
.mbf_c01354{transform:matrix(0.270080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270080,0.000000,0.000000,0.250000,0,0);}
.m96_c01354{transform:matrix(0.270145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270145,0.000000,0.000000,0.250000,0,0);}
.m7d_c01354{transform:matrix(0.270300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270300,0.000000,0.000000,0.250000,0,0);}
.mce_c01354{transform:matrix(0.271745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271745,0.000000,0.000000,0.250000,0,0);}
.mc1_c01354{transform:matrix(0.273135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273135,0.000000,0.000000,0.250000,0,0);}
.md5_c01354{transform:matrix(0.273215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273215,0.000000,0.000000,0.250000,0,0);}
.md2_c01354{transform:matrix(0.273545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273545,0.000000,0.000000,0.250000,0,0);}
.m8f_c01354{transform:matrix(0.273560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273560,0.000000,0.000000,0.250000,0,0);}
.m8e_c01354{transform:matrix(0.274880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274880,0.000000,0.000000,0.250000,0,0);}
.mb6_c01354{transform:matrix(0.275990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275990,0.000000,0.000000,0.250000,0,0);}
.m80_c01354{transform:matrix(0.277865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277865,0.000000,0.000000,0.250000,0,0);}
.m94_c01354{transform:matrix(0.278215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278215,0.000000,0.000000,0.250000,0,0);}
.m77_c01354{transform:matrix(0.281125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281125,0.000000,0.000000,0.250000,0,0);}
.md7_c01354{transform:matrix(0.291875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291875,0.000000,0.000000,0.250000,0,0);}
.me8_c01354{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.mac_c01354{transform:matrix(0.303600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303600,0.000000,0.000000,0.250000,0,0);}
.m73_c01354{transform:matrix(0.312845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312845,0.000000,0.000000,0.250000,0,0);}
.mf0_c01354{transform:matrix(0.323170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323170,0.000000,0.000000,0.250000,0,0);}
.m90_c01354{transform:matrix(0.325395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325395,0.000000,0.000000,0.250000,0,0);}
.me7_c01354{transform:matrix(0.328845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328845,0.000000,0.000000,0.250000,0,0);}
.m137_c01354{transform:matrix(0.357695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357695,0.000000,0.000000,0.250000,0,0);}
.m135_c01354{transform:matrix(0.921890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.921890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.921890,0.000000,0.000000,0.250000,0,0);}
.m9_c01354{transform:matrix(1.207570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.207570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.207570,0.000000,0.000000,0.250000,0,0);}
.m124_c01354{transform:matrix(3.466891,-0.072805,0.005249,0.249945,0,0);-ms-transform:matrix(3.466891,-0.072805,0.005249,0.249945,0,0);-webkit-transform:matrix(3.466891,-0.072805,0.005249,0.249945,0,0);}
.v0_c01354{vertical-align:0.000000px;}
.ls0_c01354{letter-spacing:0.000000px;}
.sc__c01354{text-shadow:none;}
.sc0_c01354{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__c01354{-webkit-text-stroke:0px transparent;}
.sc0_c01354{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01354{word-spacing:0.000000px;}
.fc0_c01354{color:transparent;}
.fsa_c01354{font-size:18.000000px;}
.fsb_c01354{font-size:24.000000px;}
.fsc_c01354{font-size:30.000000px;}
.fs9_c01354{font-size:30.006614px;}
.fs2_c01354{font-size:36.000000px;}
.fs6_c01354{font-size:72.000000px;}
.fs3_c01354{font-size:78.000000px;}
.fs5_c01354{font-size:84.000000px;}
.fs0_c01354{font-size:96.000000px;}
.fs4_c01354{font-size:102.000000px;}
.fs8_c01354{font-size:108.000000px;}
.fs1_c01354{font-size:114.000000px;}
.fs7_c01354{font-size:126.000000px;}
.y0_c01354{bottom:0.000000px;}
.y28_c01354{bottom:35.640000px;}
.y27_c01354{bottom:36.093000px;}
.y26_c01354{bottom:36.534000px;}
.y25_c01354{bottom:36.874500px;}
.y24_c01354{bottom:37.237500px;}
.y23_c01354{bottom:38.200500px;}
.y22_c01354{bottom:39.064500px;}
.y21_c01354{bottom:39.421500px;}
.y20_c01354{bottom:73.078500px;}
.y1f_c01354{bottom:100.984500px;}
.y1e_c01354{bottom:124.285500px;}
.y1d_c01354{bottom:161.110500px;}
.y1c_c01354{bottom:196.210500px;}
.y1b_c01354{bottom:230.710500px;}
.y1a_c01354{bottom:266.490000px;}
.y19_c01354{bottom:301.860000px;}
.y18_c01354{bottom:336.690000px;}
.y17_c01354{bottom:372.870000px;}
.y16_c01354{bottom:409.539000px;}
.y15_c01354{bottom:445.176000px;}
.y14_c01354{bottom:480.249000px;}
.y13_c01354{bottom:515.619000px;}
.y12_c01354{bottom:552.171000px;}
.y11_c01354{bottom:587.190000px;}
.y10_c01354{bottom:621.540000px;}
.yf_c01354{bottom:657.820500px;}
.ye_c01354{bottom:691.200000px;}
.yd_c01354{bottom:728.289000px;}
.yc_c01354{bottom:763.830000px;}
.yb_c01354{bottom:798.820500px;}
.ya_c01354{bottom:835.110000px;}
.y9_c01354{bottom:871.252500px;}
.y8_c01354{bottom:905.694000px;}
.y7_c01354{bottom:940.650000px;}
.y6_c01354{bottom:975.517500px;}
.y5_c01354{bottom:1012.144500px;}
.y4_c01354{bottom:1047.832500px;}
.y3_c01354{bottom:1105.099500px;}
.y2_c01354{bottom:1119.118500px;}
.y1_c01354{bottom:1176.660000px;}
.hc_c01354{height:18.000000px;}
.hd_c01354{height:24.000000px;}
.he_c01354{height:30.000000px;}
.hb_c01354{height:30.006614px;}
.h4_c01354{height:36.000000px;}
.h8_c01354{height:72.000000px;}
.h5_c01354{height:78.000000px;}
.h7_c01354{height:84.000000px;}
.h2_c01354{height:96.000000px;}
.h6_c01354{height:102.000000px;}
.ha_c01354{height:108.000000px;}
.h3_c01354{height:114.000000px;}
.h9_c01354{height:126.000000px;}
.h1_c01354{height:1250.250000px;}
.h0_c01354{height:1250.370000px;}
.w1_c01354{width:912.000000px;}
.w0_c01354{width:912.300000px;}
.x0_c01354{left:0.000000px;}
.x13_c01354{left:144.990000px;}
.x27_c01354{left:146.070000px;}
.x61_c01354{left:147.150000px;}
.x83_c01354{left:148.500000px;}
.x59_c01354{left:167.400000px;}
.x30_c01354{left:177.660000px;}
.x68_c01354{left:179.010000px;}
.x14_c01354{left:189.000000px;}
.x4e_c01354{left:191.970000px;}
.x28_c01354{left:199.260000px;}
.x5a_c01354{left:201.150000px;}
.x1f_c01354{left:209.520000px;}
.x4a_c01354{left:211.410000px;}
.x54_c01354{left:221.400000px;}
.x65_c01354{left:223.560000px;}
.x15_c01354{left:232.200000px;}
.x42_c01354{left:233.820000px;}
.x7e_c01354{left:236.790000px;}
.x29_c01354{left:244.080000px;}
.xa_c01354{left:253.260000px;}
.x38_c01354{left:254.340000px;}
.x4b_c01354{left:255.690000px;}
.x16_c01354{left:264.600000px;}
.x87_c01354{left:265.950000px;}
.x31_c01354{left:286.470000px;}
.x4c_c01354{left:287.550000px;}
.x56_c01354{left:288.630000px;}
.xb_c01354{left:297.540000px;}
.x50_c01354{left:299.160000px;}
.x3_c01354{left:306.720000px;}
.x43_c01354{left:308.880000px;}
.x66_c01354{left:310.770000px;}
.x39_c01354{left:319.950000px;}
.x70_c01354{left:323.460000px;}
.x20_c01354{left:329.940000px;}
.x2a_c01354{left:341.010000px;}
.x44_c01354{left:342.090000px;}
.x88_c01354{left:343.170000px;}
.x71_c01354{left:345.060000px;}
.x17_c01354{left:352.080000px;}
.x84_c01354{left:353.160000px;}
.x55_c01354{left:363.420000px;}
.x69_c01354{left:365.040000px;}
.x3a_c01354{left:373.950000px;}
.x5b_c01354{left:375.030000px;}
.x72_c01354{left:377.460000px;}
.x4_c01354{left:383.940000px;}
.x45_c01354{left:385.020000px;}
.x18_c01354{left:395.550000px;}
.x57_c01354{left:396.900000px;}
.x1_c01354{left:406.620000px;}
.x5e_c01354{left:409.590000px;}
.x5_c01354{left:417.690000px;}
.x6a_c01354{left:419.310000px;}
.x21_c01354{left:428.490000px;}
.x2_c01354{left:429.840000px;}
.x32_c01354{left:439.560000px;}
.x2b_c01354{left:440.910000px;}
.x35_c01354{left:450.090000px;}
.x62_c01354{left:451.440000px;}
.x73_c01354{left:453.060000px;}
.x3b_c01354{left:462.240000px;}
.x5c_c01354{left:463.320000px;}
.x8a_c01354{left:464.824500px;}
.x2c_c01354{left:472.230000px;}
.x5f_c01354{left:473.580000px;}
.x36_c01354{left:483.840000px;}
.x74_c01354{left:485.460000px;}
.x6_c01354{left:494.100000px;}
.x3c_c01354{left:495.720000px;}
.x19_c01354{left:504.900000px;}
.x22_c01354{left:505.980000px;}
.x6b_c01354{left:507.330000px;}
.xc_c01354{left:515.430000px;}
.x7_c01354{left:516.780000px;}
.x89_c01354{left:518.400000px;}
.x75_c01354{left:520.020000px;}
.x3d_c01354{left:525.960000px;}
.x63_c01354{left:527.040000px;}
.x4f_c01354{left:528.120000px;}
.x5d_c01354{left:529.200000px;}
.x33_c01354{left:538.650000px;}
.x6c_c01354{left:540.270000px;}
.x1a_c01354{left:549.450000px;}
.x37_c01354{left:559.440000px;}
.x51_c01354{left:560.520000px;}
.x7c_c01354{left:561.870000px;}
.x76_c01354{left:574.020000px;}
.xd_c01354{left:582.120000px;}
.x81_c01354{left:583.740000px;}
.x8_c01354{left:592.650000px;}
.x2d_c01354{left:593.730000px;}
.x23_c01354{left:603.180000px;}
.x67_c01354{left:604.530000px;}
.x77_c01354{left:608.580000px;}
.x46_c01354{left:615.060000px;}
.x6d_c01354{left:626.400000px;}
.x1b_c01354{left:636.930000px;}
.x7f_c01354{left:638.280000px;}
.xe_c01354{left:647.730000px;}
.x64_c01354{left:648.810000px;}
.x3e_c01354{left:657.720000px;}
.x47_c01354{left:659.070000px;}
.x24_c01354{left:669.060000px;}
.x85_c01354{left:670.680000px;}
.x78_c01354{left:673.380000px;}
.xf_c01354{left:680.670000px;}
.x82_c01354{left:681.750000px;}
.x3f_c01354{left:691.470000px;}
.x80_c01354{left:692.820000px;}
.x1c_c01354{left:703.080000px;}
.x7d_c01354{left:704.160000px;}
.x10_c01354{left:713.340000px;}
.x6e_c01354{left:714.960000px;}
.x79_c01354{left:716.580000px;}
.x52_c01354{left:724.140000px;}
.x2e_c01354{left:725.220000px;}
.x40_c01354{left:735.210000px;}
.x1d_c01354{left:736.830000px;}
.x2f_c01354{left:746.820000px;}
.x7a_c01354{left:747.900000px;}
.x34_c01354{left:757.890000px;}
.x58_c01354{left:758.970000px;}
.x48_c01354{left:768.690000px;}
.x11_c01354{left:779.490000px;}
.x6f_c01354{left:780.570000px;}
.x25_c01354{left:790.290000px;}
.x53_c01354{left:792.450000px;}
.x4d_c01354{left:801.360000px;}
.x86_c01354{left:802.980000px;}
.x12_c01354{left:811.890000px;}
.x1e_c01354{left:823.500000px;}
.x60_c01354{left:824.850000px;}
.x41_c01354{left:834.300000px;}
.x49_c01354{left:835.920000px;}
.x7b_c01354{left:837.540000px;}
.x26_c01354{left:843.210000px;}
.x8c_c01354{left:900.180000px;}
.x8b_c01354{left:903.420000px;}
.x8d_c01354{left:906.120000px;}
.x9_c01354{left:909.630000px;}
@media print{
.v0_c01354{vertical-align:0.000000pt;}
.ls0_c01354{letter-spacing:0.000000pt;}
.ws0_c01354{word-spacing:0.000000pt;}
.fsa_c01354{font-size:16.000000pt;}
.fsb_c01354{font-size:21.333333pt;}
.fsc_c01354{font-size:26.666667pt;}
.fs9_c01354{font-size:26.672546pt;}
.fs2_c01354{font-size:32.000000pt;}
.fs6_c01354{font-size:64.000000pt;}
.fs3_c01354{font-size:69.333333pt;}
.fs5_c01354{font-size:74.666667pt;}
.fs0_c01354{font-size:85.333333pt;}
.fs4_c01354{font-size:90.666667pt;}
.fs8_c01354{font-size:96.000000pt;}
.fs1_c01354{font-size:101.333333pt;}
.fs7_c01354{font-size:112.000000pt;}
.y0_c01354{bottom:0.000000pt;}
.y28_c01354{bottom:31.680000pt;}
.y27_c01354{bottom:32.082667pt;}
.y26_c01354{bottom:32.474667pt;}
.y25_c01354{bottom:32.777333pt;}
.y24_c01354{bottom:33.100000pt;}
.y23_c01354{bottom:33.956000pt;}
.y22_c01354{bottom:34.724000pt;}
.y21_c01354{bottom:35.041333pt;}
.y20_c01354{bottom:64.958667pt;}
.y1f_c01354{bottom:89.764000pt;}
.y1e_c01354{bottom:110.476000pt;}
.y1d_c01354{bottom:143.209333pt;}
.y1c_c01354{bottom:174.409333pt;}
.y1b_c01354{bottom:205.076000pt;}
.y1a_c01354{bottom:236.880000pt;}
.y19_c01354{bottom:268.320000pt;}
.y18_c01354{bottom:299.280000pt;}
.y17_c01354{bottom:331.440000pt;}
.y16_c01354{bottom:364.034667pt;}
.y15_c01354{bottom:395.712000pt;}
.y14_c01354{bottom:426.888000pt;}
.y13_c01354{bottom:458.328000pt;}
.y12_c01354{bottom:490.818667pt;}
.y11_c01354{bottom:521.946667pt;}
.y10_c01354{bottom:552.480000pt;}
.yf_c01354{bottom:584.729333pt;}
.ye_c01354{bottom:614.400000pt;}
.yd_c01354{bottom:647.368000pt;}
.yc_c01354{bottom:678.960000pt;}
.yb_c01354{bottom:710.062667pt;}
.ya_c01354{bottom:742.320000pt;}
.y9_c01354{bottom:774.446667pt;}
.y8_c01354{bottom:805.061333pt;}
.y7_c01354{bottom:836.133333pt;}
.y6_c01354{bottom:867.126667pt;}
.y5_c01354{bottom:899.684000pt;}
.y4_c01354{bottom:931.406667pt;}
.y3_c01354{bottom:982.310667pt;}
.y2_c01354{bottom:994.772000pt;}
.y1_c01354{bottom:1045.920000pt;}
.hc_c01354{height:16.000000pt;}
.hd_c01354{height:21.333333pt;}
.he_c01354{height:26.666667pt;}
.hb_c01354{height:26.672546pt;}
.h4_c01354{height:32.000000pt;}
.h8_c01354{height:64.000000pt;}
.h5_c01354{height:69.333333pt;}
.h7_c01354{height:74.666667pt;}
.h2_c01354{height:85.333333pt;}
.h6_c01354{height:90.666667pt;}
.ha_c01354{height:96.000000pt;}
.h3_c01354{height:101.333333pt;}
.h9_c01354{height:112.000000pt;}
.h1_c01354{height:1111.333333pt;}
.h0_c01354{height:1111.440000pt;}
.w1_c01354{width:810.666667pt;}
.w0_c01354{width:810.933333pt;}
.x0_c01354{left:0.000000pt;}
.x13_c01354{left:128.880000pt;}
.x27_c01354{left:129.840000pt;}
.x61_c01354{left:130.800000pt;}
.x83_c01354{left:132.000000pt;}
.x59_c01354{left:148.800000pt;}
.x30_c01354{left:157.920000pt;}
.x68_c01354{left:159.120000pt;}
.x14_c01354{left:168.000000pt;}
.x4e_c01354{left:170.640000pt;}
.x28_c01354{left:177.120000pt;}
.x5a_c01354{left:178.800000pt;}
.x1f_c01354{left:186.240000pt;}
.x4a_c01354{left:187.920000pt;}
.x54_c01354{left:196.800000pt;}
.x65_c01354{left:198.720000pt;}
.x15_c01354{left:206.400000pt;}
.x42_c01354{left:207.840000pt;}
.x7e_c01354{left:210.480000pt;}
.x29_c01354{left:216.960000pt;}
.xa_c01354{left:225.120000pt;}
.x38_c01354{left:226.080000pt;}
.x4b_c01354{left:227.280000pt;}
.x16_c01354{left:235.200000pt;}
.x87_c01354{left:236.400000pt;}
.x31_c01354{left:254.640000pt;}
.x4c_c01354{left:255.600000pt;}
.x56_c01354{left:256.560000pt;}
.xb_c01354{left:264.480000pt;}
.x50_c01354{left:265.920000pt;}
.x3_c01354{left:272.640000pt;}
.x43_c01354{left:274.560000pt;}
.x66_c01354{left:276.240000pt;}
.x39_c01354{left:284.400000pt;}
.x70_c01354{left:287.520000pt;}
.x20_c01354{left:293.280000pt;}
.x2a_c01354{left:303.120000pt;}
.x44_c01354{left:304.080000pt;}
.x88_c01354{left:305.040000pt;}
.x71_c01354{left:306.720000pt;}
.x17_c01354{left:312.960000pt;}
.x84_c01354{left:313.920000pt;}
.x55_c01354{left:323.040000pt;}
.x69_c01354{left:324.480000pt;}
.x3a_c01354{left:332.400000pt;}
.x5b_c01354{left:333.360000pt;}
.x72_c01354{left:335.520000pt;}
.x4_c01354{left:341.280000pt;}
.x45_c01354{left:342.240000pt;}
.x18_c01354{left:351.600000pt;}
.x57_c01354{left:352.800000pt;}
.x1_c01354{left:361.440000pt;}
.x5e_c01354{left:364.080000pt;}
.x5_c01354{left:371.280000pt;}
.x6a_c01354{left:372.720000pt;}
.x21_c01354{left:380.880000pt;}
.x2_c01354{left:382.080000pt;}
.x32_c01354{left:390.720000pt;}
.x2b_c01354{left:391.920000pt;}
.x35_c01354{left:400.080000pt;}
.x62_c01354{left:401.280000pt;}
.x73_c01354{left:402.720000pt;}
.x3b_c01354{left:410.880000pt;}
.x5c_c01354{left:411.840000pt;}
.x8a_c01354{left:413.177333pt;}
.x2c_c01354{left:419.760000pt;}
.x5f_c01354{left:420.960000pt;}
.x36_c01354{left:430.080000pt;}
.x74_c01354{left:431.520000pt;}
.x6_c01354{left:439.200000pt;}
.x3c_c01354{left:440.640000pt;}
.x19_c01354{left:448.800000pt;}
.x22_c01354{left:449.760000pt;}
.x6b_c01354{left:450.960000pt;}
.xc_c01354{left:458.160000pt;}
.x7_c01354{left:459.360000pt;}
.x89_c01354{left:460.800000pt;}
.x75_c01354{left:462.240000pt;}
.x3d_c01354{left:467.520000pt;}
.x63_c01354{left:468.480000pt;}
.x4f_c01354{left:469.440000pt;}
.x5d_c01354{left:470.400000pt;}
.x33_c01354{left:478.800000pt;}
.x6c_c01354{left:480.240000pt;}
.x1a_c01354{left:488.400000pt;}
.x37_c01354{left:497.280000pt;}
.x51_c01354{left:498.240000pt;}
.x7c_c01354{left:499.440000pt;}
.x76_c01354{left:510.240000pt;}
.xd_c01354{left:517.440000pt;}
.x81_c01354{left:518.880000pt;}
.x8_c01354{left:526.800000pt;}
.x2d_c01354{left:527.760000pt;}
.x23_c01354{left:536.160000pt;}
.x67_c01354{left:537.360000pt;}
.x77_c01354{left:540.960000pt;}
.x46_c01354{left:546.720000pt;}
.x6d_c01354{left:556.800000pt;}
.x1b_c01354{left:566.160000pt;}
.x7f_c01354{left:567.360000pt;}
.xe_c01354{left:575.760000pt;}
.x64_c01354{left:576.720000pt;}
.x3e_c01354{left:584.640000pt;}
.x47_c01354{left:585.840000pt;}
.x24_c01354{left:594.720000pt;}
.x85_c01354{left:596.160000pt;}
.x78_c01354{left:598.560000pt;}
.xf_c01354{left:605.040000pt;}
.x82_c01354{left:606.000000pt;}
.x3f_c01354{left:614.640000pt;}
.x80_c01354{left:615.840000pt;}
.x1c_c01354{left:624.960000pt;}
.x7d_c01354{left:625.920000pt;}
.x10_c01354{left:634.080000pt;}
.x6e_c01354{left:635.520000pt;}
.x79_c01354{left:636.960000pt;}
.x52_c01354{left:643.680000pt;}
.x2e_c01354{left:644.640000pt;}
.x40_c01354{left:653.520000pt;}
.x1d_c01354{left:654.960000pt;}
.x2f_c01354{left:663.840000pt;}
.x7a_c01354{left:664.800000pt;}
.x34_c01354{left:673.680000pt;}
.x58_c01354{left:674.640000pt;}
.x48_c01354{left:683.280000pt;}
.x11_c01354{left:692.880000pt;}
.x6f_c01354{left:693.840000pt;}
.x25_c01354{left:702.480000pt;}
.x53_c01354{left:704.400000pt;}
.x4d_c01354{left:712.320000pt;}
.x86_c01354{left:713.760000pt;}
.x12_c01354{left:721.680000pt;}
.x1e_c01354{left:732.000000pt;}
.x60_c01354{left:733.200000pt;}
.x41_c01354{left:741.600000pt;}
.x49_c01354{left:743.040000pt;}
.x7b_c01354{left:744.480000pt;}
.x26_c01354{left:749.520000pt;}
.x8c_c01354{left:800.160000pt;}
.x8b_c01354{left:803.040000pt;}
.x8d_c01354{left:805.440000pt;}
.x9_c01354{left:808.560000pt;}
}





/* 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_c01355 {
    display:none;
  }
  .loading-indicator_c01355.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01355 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_c01355 { 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_c01355" -> "#page-container .classname_c01355")
 */
.pf_c01355 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01355 { /* 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_c01355.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01355 { /* 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_c01355 { /* 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_c01355 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01355 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01355 {overflow:visible;}
  }
}
.c_c01355 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01355 { /* 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_c01355:after { /* webkit #35443 */
  content: '';
}
.t_c01355:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01355 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 */
}
.__c01355 { /* 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_c01355 { /* info for Javascript */
  display:none;
}
.l_c01355 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01355 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01355 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01355: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_c01355 {
    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_c01355.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01355.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_c01355 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01355{font-family:sans-serif;visibility:hidden;}
.sc__c01355{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01355{-webkit-text-stroke:0px transparent;}
}
.y0_c01355{bottom:0.000000px;}
.h1_c01355{height:1250.250000px;}
.h0_c01355{height:1250.370000px;}
.w0_c01355{width:878.850000px;}
.w1_c01355{width:879.000000px;}
.x0_c01355{left:0.000000px;}
@media print{
.y0_c01355{bottom:0.000000pt;}
.h1_c01355{height:1111.333333pt;}
.h0_c01355{height:1111.440000pt;}
.w0_c01355{width:781.200000pt;}
.w1_c01355{width:781.333333pt;}
.x0_c01355{left:0.000000pt;}
}





/* 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_c01356 {
    display:none;
  }
  .loading-indicator_c01356.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01356 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_c01356 { 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_c01356" -> "#page-container .classname_c01356")
 */
.pf_c01356 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01356 { /* 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_c01356.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01356 { /* 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_c01356 { /* 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_c01356 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01356 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01356 {overflow:visible;}
  }
}
.c_c01356 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01356 { /* 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_c01356:after { /* webkit #35443 */
  content: '';
}
.t_c01356:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01356 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 */
}
.__c01356 { /* 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_c01356 { /* info for Javascript */
  display:none;
}
.l_c01356 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01356 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01356 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01356: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_c01356 {
    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_c01356.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01356.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_c01356 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01356{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01356;src:url('chunks/assets/font_c605e72f209fc835e906f064.woff2')format("woff");}.ff1_c01356{font-family:ff1_c01356;line-height:1.000000;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;}
.mbc_c01356{transform:matrix(0.116101,0.006631,-0.014255,0.249593,0,0);-ms-transform:matrix(0.116101,0.006631,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.116101,0.006631,-0.014255,0.249593,0,0);}
.m25_c01356{transform:matrix(0.147851,0.008148,-0.013757,0.249621,0,0);-ms-transform:matrix(0.147851,0.008148,-0.013757,0.249621,0,0);-webkit-transform:matrix(0.147851,0.008148,-0.013757,0.249621,0,0);}
.m7a_c01356{transform:matrix(0.150174,0.008427,-0.014006,0.249607,0,0);-ms-transform:matrix(0.150174,0.008427,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.150174,0.008427,-0.014006,0.249607,0,0);}
.m99_c01356{transform:matrix(0.150410,0.008591,-0.014255,0.249593,0,0);-ms-transform:matrix(0.150410,0.008591,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.150410,0.008591,-0.014255,0.249593,0,0);}
.m9b_c01356{transform:matrix(0.150520,0.008597,-0.014255,0.249593,0,0);-ms-transform:matrix(0.150520,0.008597,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.150520,0.008597,-0.014255,0.249593,0,0);}
.m92_c01356{transform:matrix(0.151568,0.008657,-0.014255,0.249593,0,0);-ms-transform:matrix(0.151568,0.008657,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.151568,0.008657,-0.014255,0.249593,0,0);}
.m72_c01356{transform:matrix(0.152815,0.008575,-0.014006,0.249607,0,0);-ms-transform:matrix(0.152815,0.008575,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.152815,0.008575,-0.014006,0.249607,0,0);}
.md9_c01356{transform:matrix(0.154157,0.009268,-0.015003,0.249549,0,0);-ms-transform:matrix(0.154157,0.009268,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.154157,0.009268,-0.015003,0.249549,0,0);}
.m73_c01356{transform:matrix(0.155655,0.008734,-0.014006,0.249607,0,0);-ms-transform:matrix(0.155655,0.008734,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.155655,0.008734,-0.014006,0.249607,0,0);}
.mde_c01356{transform:matrix(0.156897,0.009433,-0.015003,0.249549,0,0);-ms-transform:matrix(0.156897,0.009433,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.156897,0.009433,-0.015003,0.249549,0,0);}
.m53_c01356{transform:matrix(0.157797,0.008854,-0.014006,0.249607,0,0);-ms-transform:matrix(0.157797,0.008854,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.157797,0.008854,-0.014006,0.249607,0,0);}
.m6f_c01356{transform:matrix(0.157842,0.008857,-0.014006,0.249607,0,0);-ms-transform:matrix(0.157842,0.008857,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.157842,0.008857,-0.014006,0.249607,0,0);}
.m5c_c01356{transform:matrix(0.160622,0.009013,-0.014006,0.249607,0,0);-ms-transform:matrix(0.160622,0.009013,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.160622,0.009013,-0.014006,0.249607,0,0);}
.m94_c01356{transform:matrix(0.160778,0.009183,-0.014255,0.249593,0,0);-ms-transform:matrix(0.160778,0.009183,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.160778,0.009183,-0.014255,0.249593,0,0);}
.m95_c01356{transform:matrix(0.160808,0.009184,-0.014255,0.249593,0,0);-ms-transform:matrix(0.160808,0.009184,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.160808,0.009184,-0.014255,0.249593,0,0);}
.m7b_c01356{transform:matrix(0.161786,0.009078,-0.014006,0.249607,0,0);-ms-transform:matrix(0.161786,0.009078,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.161786,0.009078,-0.014006,0.249607,0,0);}
.m59_c01356{transform:matrix(0.164816,0.009248,-0.014006,0.249607,0,0);-ms-transform:matrix(0.164816,0.009248,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.164816,0.009248,-0.014006,0.249607,0,0);}
.m7_c01356{transform:matrix(0.164925,0.009089,-0.013757,0.249621,0,0);-ms-transform:matrix(0.164925,0.009089,-0.013757,0.249621,0,0);-webkit-transform:matrix(0.164925,0.009089,-0.013757,0.249621,0,0);}
.m93_c01356{transform:matrix(0.165171,0.009434,-0.014255,0.249593,0,0);-ms-transform:matrix(0.165171,0.009434,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.165171,0.009434,-0.014255,0.249593,0,0);}
.m3b_c01356{transform:matrix(0.166534,0.009511,-0.014255,0.249593,0,0);-ms-transform:matrix(0.166534,0.009511,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.166534,0.009511,-0.014255,0.249593,0,0);}
.m21_c01356{transform:matrix(0.166662,0.009185,-0.013757,0.249621,0,0);-ms-transform:matrix(0.166662,0.009185,-0.013757,0.249621,0,0);-webkit-transform:matrix(0.166662,0.009185,-0.013757,0.249621,0,0);}
.m87_c01356{transform:matrix(0.166848,0.009529,-0.014255,0.249593,0,0);-ms-transform:matrix(0.166848,0.009529,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.166848,0.009529,-0.014255,0.249593,0,0);}
.m71_c01356{transform:matrix(0.167142,0.009379,-0.014006,0.249607,0,0);-ms-transform:matrix(0.167142,0.009379,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.167142,0.009379,-0.014006,0.249607,0,0);}
.m0_c01356{transform:matrix(0.167935,0.009255,-0.013757,0.249621,0,0);-ms-transform:matrix(0.167935,0.009255,-0.013757,0.249621,0,0);-webkit-transform:matrix(0.167935,0.009255,-0.013757,0.249621,0,0);}
.m5e_c01356{transform:matrix(0.168470,0.009453,-0.014006,0.249607,0,0);-ms-transform:matrix(0.168470,0.009453,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.168470,0.009453,-0.014006,0.249607,0,0);}
.m9d_c01356{transform:matrix(0.168785,0.009640,-0.014255,0.249593,0,0);-ms-transform:matrix(0.168785,0.009640,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.168785,0.009640,-0.014255,0.249593,0,0);}
.mbd_c01356{transform:matrix(0.169429,0.009677,-0.014255,0.249593,0,0);-ms-transform:matrix(0.169429,0.009677,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.169429,0.009677,-0.014255,0.249593,0,0);}
.m85_c01356{transform:matrix(0.169853,0.009701,-0.014255,0.249593,0,0);-ms-transform:matrix(0.169853,0.009701,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.169853,0.009701,-0.014255,0.249593,0,0);}
.m7e_c01356{transform:matrix(0.169863,0.009702,-0.014255,0.249593,0,0);-ms-transform:matrix(0.169863,0.009702,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.169863,0.009702,-0.014255,0.249593,0,0);}
.m55_c01356{transform:matrix(0.169968,0.009537,-0.014006,0.249607,0,0);-ms-transform:matrix(0.169968,0.009537,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.169968,0.009537,-0.014006,0.249607,0,0);}
.m74_c01356{transform:matrix(0.170307,0.009556,-0.014006,0.249607,0,0);-ms-transform:matrix(0.170307,0.009556,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.170307,0.009556,-0.014006,0.249607,0,0);}
.m83_c01356{transform:matrix(0.170807,0.009755,-0.014255,0.249593,0,0);-ms-transform:matrix(0.170807,0.009755,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.170807,0.009755,-0.014255,0.249593,0,0);}
.m54_c01356{transform:matrix(0.170851,0.009587,-0.014006,0.249607,0,0);-ms-transform:matrix(0.170851,0.009587,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.170851,0.009587,-0.014006,0.249607,0,0);}
.m90_c01356{transform:matrix(0.171041,0.009769,-0.014255,0.249593,0,0);-ms-transform:matrix(0.171041,0.009769,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.171041,0.009769,-0.014255,0.249593,0,0);}
.m1e_c01356{transform:matrix(0.171535,0.009453,-0.013757,0.249621,0,0);-ms-transform:matrix(0.171535,0.009453,-0.013757,0.249621,0,0);-webkit-transform:matrix(0.171535,0.009453,-0.013757,0.249621,0,0);}
.m96_c01356{transform:matrix(0.171760,0.009810,-0.014255,0.249593,0,0);-ms-transform:matrix(0.171760,0.009810,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.171760,0.009810,-0.014255,0.249593,0,0);}
.m6d_c01356{transform:matrix(0.172758,0.009694,-0.014006,0.249607,0,0);-ms-transform:matrix(0.172758,0.009694,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.172758,0.009694,-0.014006,0.249607,0,0);}
.m9_c01356{transform:matrix(0.172768,0.009521,-0.013757,0.249621,0,0);-ms-transform:matrix(0.172768,0.009521,-0.013757,0.249621,0,0);-webkit-transform:matrix(0.172768,0.009521,-0.013757,0.249621,0,0);}
.mba_c01356{transform:matrix(0.173957,0.009935,-0.014255,0.249593,0,0);-ms-transform:matrix(0.173957,0.009935,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.173957,0.009935,-0.014255,0.249593,0,0);}
.m97_c01356{transform:matrix(0.174466,0.009964,-0.014255,0.249593,0,0);-ms-transform:matrix(0.174466,0.009964,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.174466,0.009964,-0.014255,0.249593,0,0);}
.mc0_c01356{transform:matrix(0.174510,0.009792,-0.014006,0.249607,0,0);-ms-transform:matrix(0.174510,0.009792,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.174510,0.009792,-0.014006,0.249607,0,0);}
.m98_c01356{transform:matrix(0.175609,0.010030,-0.014255,0.249593,0,0);-ms-transform:matrix(0.175609,0.010030,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.175609,0.010030,-0.014255,0.249593,0,0);}
.m77_c01356{transform:matrix(0.176422,0.009899,-0.014006,0.249607,0,0);-ms-transform:matrix(0.176422,0.009899,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.176422,0.009899,-0.014006,0.249607,0,0);}
.m8b_c01356{transform:matrix(0.176652,0.010089,-0.014255,0.249593,0,0);-ms-transform:matrix(0.176652,0.010089,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.176652,0.010089,-0.014255,0.249593,0,0);}
.m81_c01356{transform:matrix(0.177051,0.010112,-0.014255,0.249593,0,0);-ms-transform:matrix(0.177051,0.010112,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.177051,0.010112,-0.014255,0.249593,0,0);}
.m5a_c01356{transform:matrix(0.177071,0.009936,-0.014006,0.249607,0,0);-ms-transform:matrix(0.177071,0.009936,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.177071,0.009936,-0.014006,0.249607,0,0);}
.m9c_c01356{transform:matrix(0.177211,0.010121,-0.014255,0.249593,0,0);-ms-transform:matrix(0.177211,0.010121,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.177211,0.010121,-0.014255,0.249593,0,0);}
.m56_c01356{transform:matrix(0.177890,0.009982,-0.014006,0.249607,0,0);-ms-transform:matrix(0.177890,0.009982,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.177890,0.009982,-0.014006,0.249607,0,0);}
.m9a_c01356{transform:matrix(0.178170,0.010176,-0.014255,0.249593,0,0);-ms-transform:matrix(0.178170,0.010176,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.178170,0.010176,-0.014255,0.249593,0,0);}
.m82_c01356{transform:matrix(0.178324,0.010185,-0.014255,0.249593,0,0);-ms-transform:matrix(0.178324,0.010185,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.178324,0.010185,-0.014255,0.249593,0,0);}
.m76_c01356{transform:matrix(0.178869,0.010037,-0.014006,0.249607,0,0);-ms-transform:matrix(0.178869,0.010037,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.178869,0.010037,-0.014006,0.249607,0,0);}
.m61_c01356{transform:matrix(0.178949,0.010041,-0.014006,0.249607,0,0);-ms-transform:matrix(0.178949,0.010041,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.178949,0.010041,-0.014006,0.249607,0,0);}
.m5b_c01356{transform:matrix(0.179652,0.010081,-0.014006,0.249607,0,0);-ms-transform:matrix(0.179652,0.010081,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.179652,0.010081,-0.014006,0.249607,0,0);}
.m75_c01356{transform:matrix(0.180636,0.010136,-0.014006,0.249607,0,0);-ms-transform:matrix(0.180636,0.010136,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.180636,0.010136,-0.014006,0.249607,0,0);}
.m7f_c01356{transform:matrix(0.180815,0.010327,-0.014255,0.249593,0,0);-ms-transform:matrix(0.180815,0.010327,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.180815,0.010327,-0.014255,0.249593,0,0);}
.m24_c01356{transform:matrix(0.180831,0.009966,-0.013757,0.249621,0,0);-ms-transform:matrix(0.180831,0.009966,-0.013757,0.249621,0,0);-webkit-transform:matrix(0.180831,0.009966,-0.013757,0.249621,0,0);}
.md3_c01356{transform:matrix(0.181073,0.010886,-0.015003,0.249549,0,0);-ms-transform:matrix(0.181073,0.010886,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.181073,0.010886,-0.015003,0.249549,0,0);}
.m5d_c01356{transform:matrix(0.181275,0.010172,-0.014006,0.249607,0,0);-ms-transform:matrix(0.181275,0.010172,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.181275,0.010172,-0.014006,0.249607,0,0);}
.m57_c01356{transform:matrix(0.181929,0.010208,-0.014006,0.249607,0,0);-ms-transform:matrix(0.181929,0.010208,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.181929,0.010208,-0.014006,0.249607,0,0);}
.m62_c01356{transform:matrix(0.182243,0.010226,-0.014006,0.249607,0,0);-ms-transform:matrix(0.182243,0.010226,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.182243,0.010226,-0.014006,0.249607,0,0);}
.m84_c01356{transform:matrix(0.182647,0.010432,-0.014255,0.249593,0,0);-ms-transform:matrix(0.182647,0.010432,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.182647,0.010432,-0.014255,0.249593,0,0);}
.m80_c01356{transform:matrix(0.182897,0.010446,-0.014255,0.249593,0,0);-ms-transform:matrix(0.182897,0.010446,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.182897,0.010446,-0.014255,0.249593,0,0);}
.mc_c01356{transform:matrix(0.183302,0.010102,-0.013757,0.249621,0,0);-ms-transform:matrix(0.183302,0.010102,-0.013757,0.249621,0,0);-webkit-transform:matrix(0.183302,0.010102,-0.013757,0.249621,0,0);}
.m58_c01356{transform:matrix(0.183631,0.010304,-0.014006,0.249607,0,0);-ms-transform:matrix(0.183631,0.010304,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.183631,0.010304,-0.014006,0.249607,0,0);}
.m6a_c01356{transform:matrix(0.184185,0.010335,-0.014006,0.249607,0,0);-ms-transform:matrix(0.184185,0.010335,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.184185,0.010335,-0.014006,0.249607,0,0);}
.m65_c01356{transform:matrix(0.184350,0.010344,-0.014006,0.249607,0,0);-ms-transform:matrix(0.184350,0.010344,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.184350,0.010344,-0.014006,0.249607,0,0);}
.m2_c01356{transform:matrix(0.184360,0.010160,-0.013757,0.249621,0,0);-ms-transform:matrix(0.184360,0.010160,-0.013757,0.249621,0,0);-webkit-transform:matrix(0.184360,0.010160,-0.013757,0.249621,0,0);}
.m1d_c01356{transform:matrix(0.184810,0.010185,-0.013757,0.249621,0,0);-ms-transform:matrix(0.184810,0.010185,-0.013757,0.249621,0,0);-webkit-transform:matrix(0.184810,0.010185,-0.013757,0.249621,0,0);}
.m68_c01356{transform:matrix(0.184839,0.010372,-0.014006,0.249607,0,0);-ms-transform:matrix(0.184839,0.010372,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.184839,0.010372,-0.014006,0.249607,0,0);}
.m1f_c01356{transform:matrix(0.187221,0.010318,-0.013757,0.249621,0,0);-ms-transform:matrix(0.187221,0.010318,-0.013757,0.249621,0,0);-webkit-transform:matrix(0.187221,0.010318,-0.013757,0.249621,0,0);}
.m6_c01356{transform:matrix(0.187451,0.010330,-0.013757,0.249621,0,0);-ms-transform:matrix(0.187451,0.010330,-0.013757,0.249621,0,0);-webkit-transform:matrix(0.187451,0.010330,-0.013757,0.249621,0,0);}
.m6c_c01356{transform:matrix(0.188374,0.010570,-0.014006,0.249607,0,0);-ms-transform:matrix(0.188374,0.010570,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.188374,0.010570,-0.014006,0.249607,0,0);}
.me4_c01356{transform:matrix(0.188453,0.011519,-0.015252,0.249534,0,0);-ms-transform:matrix(0.188453,0.011519,-0.015252,0.249534,0,0);-webkit-transform:matrix(0.188453,0.011519,-0.015252,0.249534,0,0);}
.m66_c01356{transform:matrix(0.188518,0.010578,-0.014006,0.249607,0,0);-ms-transform:matrix(0.188518,0.010578,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.188518,0.010578,-0.014006,0.249607,0,0);}
.m60_c01356{transform:matrix(0.188993,0.010605,-0.014006,0.249607,0,0);-ms-transform:matrix(0.188993,0.010605,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.188993,0.010605,-0.014006,0.249607,0,0);}
.m23_c01356{transform:matrix(0.189458,0.010441,-0.013757,0.249621,0,0);-ms-transform:matrix(0.189458,0.010441,-0.013757,0.249621,0,0);-webkit-transform:matrix(0.189458,0.010441,-0.013757,0.249621,0,0);}
.m7c_c01356{transform:matrix(0.189561,0.010827,-0.014255,0.249593,0,0);-ms-transform:matrix(0.189561,0.010827,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.189561,0.010827,-0.014255,0.249593,0,0);}
.mbb_c01356{transform:matrix(0.189826,0.010842,-0.014255,0.249593,0,0);-ms-transform:matrix(0.189826,0.010842,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.189826,0.010842,-0.014255,0.249593,0,0);}
.me_c01356{transform:matrix(0.190566,0.010502,-0.013757,0.249621,0,0);-ms-transform:matrix(0.190566,0.010502,-0.013757,0.249621,0,0);-webkit-transform:matrix(0.190566,0.010502,-0.013757,0.249621,0,0);}
.mb9_c01356{transform:matrix(0.192057,0.010969,-0.014255,0.249593,0,0);-ms-transform:matrix(0.192057,0.010969,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.192057,0.010969,-0.014255,0.249593,0,0);}
.m1c_c01356{transform:matrix(0.193596,0.010669,-0.013757,0.249621,0,0);-ms-transform:matrix(0.193596,0.010669,-0.013757,0.249621,0,0);-webkit-transform:matrix(0.193596,0.010669,-0.013757,0.249621,0,0);}
.m3_c01356{transform:matrix(0.193951,0.010689,-0.013757,0.249621,0,0);-ms-transform:matrix(0.193951,0.010689,-0.013757,0.249621,0,0);-webkit-transform:matrix(0.193951,0.010689,-0.013757,0.249621,0,0);}
.m91_c01356{transform:matrix(0.195516,0.011167,-0.014255,0.249593,0,0);-ms-transform:matrix(0.195516,0.011167,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.195516,0.011167,-0.014255,0.249593,0,0);}
.m20_c01356{transform:matrix(0.196881,0.010850,-0.013757,0.249621,0,0);-ms-transform:matrix(0.196881,0.010850,-0.013757,0.249621,0,0);-webkit-transform:matrix(0.196881,0.010850,-0.013757,0.249621,0,0);}
.m63_c01356{transform:matrix(0.197449,0.011079,-0.014006,0.249607,0,0);-ms-transform:matrix(0.197449,0.011079,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.197449,0.011079,-0.014006,0.249607,0,0);}
.m79_c01356{transform:matrix(0.197454,0.011080,-0.014006,0.249607,0,0);-ms-transform:matrix(0.197454,0.011080,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.197454,0.011080,-0.014006,0.249607,0,0);}
.m44_c01356{transform:matrix(0.198294,0.010928,-0.013757,0.249621,0,0);-ms-transform:matrix(0.198294,0.010928,-0.013757,0.249621,0,0);-webkit-transform:matrix(0.198294,0.010928,-0.013757,0.249621,0,0);}
.m67_c01356{transform:matrix(0.198588,0.011143,-0.014006,0.249607,0,0);-ms-transform:matrix(0.198588,0.011143,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.198588,0.011143,-0.014006,0.249607,0,0);}
.mb8_c01356{transform:matrix(0.199315,0.011384,-0.014255,0.249593,0,0);-ms-transform:matrix(0.199315,0.011384,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.199315,0.011384,-0.014255,0.249593,0,0);}
.m22_c01356{transform:matrix(0.199422,0.010990,-0.013757,0.249621,0,0);-ms-transform:matrix(0.199422,0.010990,-0.013757,0.249621,0,0);-webkit-transform:matrix(0.199422,0.010990,-0.013757,0.249621,0,0);}
.mb_c01356{transform:matrix(0.200041,0.011024,-0.013757,0.249621,0,0);-ms-transform:matrix(0.200041,0.011024,-0.013757,0.249621,0,0);-webkit-transform:matrix(0.200041,0.011024,-0.013757,0.249621,0,0);}
.m5f_c01356{transform:matrix(0.200165,0.011232,-0.014006,0.249607,0,0);-ms-transform:matrix(0.200165,0.011232,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.200165,0.011232,-0.014006,0.249607,0,0);}
.m4d_c01356{transform:matrix(0.200506,0.011050,-0.013757,0.249621,0,0);-ms-transform:matrix(0.200506,0.011050,-0.013757,0.249621,0,0);-webkit-transform:matrix(0.200506,0.011050,-0.013757,0.249621,0,0);}
.m6e_c01356{transform:matrix(0.201268,0.011294,-0.014006,0.249607,0,0);-ms-transform:matrix(0.201268,0.011294,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.201268,0.011294,-0.014006,0.249607,0,0);}
.mdf_c01356{transform:matrix(0.202444,0.012171,-0.015003,0.249549,0,0);-ms-transform:matrix(0.202444,0.012171,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.202444,0.012171,-0.015003,0.249549,0,0);}
.m64_c01356{transform:matrix(0.202881,0.011384,-0.014006,0.249607,0,0);-ms-transform:matrix(0.202881,0.011384,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.202881,0.011384,-0.014006,0.249607,0,0);}
.m4b_c01356{transform:matrix(0.203042,0.011190,-0.013757,0.249621,0,0);-ms-transform:matrix(0.203042,0.011190,-0.013757,0.249621,0,0);-webkit-transform:matrix(0.203042,0.011190,-0.013757,0.249621,0,0);}
.m27_c01356{transform:matrix(0.203127,0.011194,-0.013757,0.249621,0,0);-ms-transform:matrix(0.203127,0.011194,-0.013757,0.249621,0,0);-webkit-transform:matrix(0.203127,0.011194,-0.013757,0.249621,0,0);}
.m47_c01356{transform:matrix(0.203137,0.011195,-0.013757,0.249621,0,0);-ms-transform:matrix(0.203137,0.011195,-0.013757,0.249621,0,0);-webkit-transform:matrix(0.203137,0.011195,-0.013757,0.249621,0,0);}
.md_c01356{transform:matrix(0.203571,0.011219,-0.013757,0.249621,0,0);-ms-transform:matrix(0.203571,0.011219,-0.013757,0.249621,0,0);-webkit-transform:matrix(0.203571,0.011219,-0.013757,0.249621,0,0);}
.m4e_c01356{transform:matrix(0.203846,0.011234,-0.013757,0.249621,0,0);-ms-transform:matrix(0.203846,0.011234,-0.013757,0.249621,0,0);-webkit-transform:matrix(0.203846,0.011234,-0.013757,0.249621,0,0);}
.me6_c01356{transform:matrix(0.203989,0.012468,-0.015252,0.249534,0,0);-ms-transform:matrix(0.203989,0.012468,-0.015252,0.249534,0,0);-webkit-transform:matrix(0.203989,0.012468,-0.015252,0.249534,0,0);}
.ma_c01356{transform:matrix(0.203995,0.011242,-0.013757,0.249621,0,0);-ms-transform:matrix(0.203995,0.011242,-0.013757,0.249621,0,0);-webkit-transform:matrix(0.203995,0.011242,-0.013757,0.249621,0,0);}
.m34_c01356{transform:matrix(0.204114,0.011453,-0.014006,0.249607,0,0);-ms-transform:matrix(0.204114,0.011453,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.204114,0.011453,-0.014006,0.249607,0,0);}
.m5_c01356{transform:matrix(0.204505,0.011270,-0.013757,0.249621,0,0);-ms-transform:matrix(0.204505,0.011270,-0.013757,0.249621,0,0);-webkit-transform:matrix(0.204505,0.011270,-0.013757,0.249621,0,0);}
.mad_c01356{transform:matrix(0.204891,0.011702,-0.014255,0.249593,0,0);-ms-transform:matrix(0.204891,0.011702,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.204891,0.011702,-0.014255,0.249593,0,0);}
.m19_c01356{transform:matrix(0.205089,0.011302,-0.013757,0.249621,0,0);-ms-transform:matrix(0.205089,0.011302,-0.013757,0.249621,0,0);-webkit-transform:matrix(0.205089,0.011302,-0.013757,0.249621,0,0);}
.mda_c01356{transform:matrix(0.205394,0.012348,-0.015003,0.249549,0,0);-ms-transform:matrix(0.205394,0.012348,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.205394,0.012348,-0.015003,0.249549,0,0);}
.mb2_c01356{transform:matrix(0.205395,0.011731,-0.014255,0.249593,0,0);-ms-transform:matrix(0.205395,0.011731,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.205395,0.011731,-0.014255,0.249593,0,0);}
.m69_c01356{transform:matrix(0.205681,0.011541,-0.014006,0.249607,0,0);-ms-transform:matrix(0.205681,0.011541,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.205681,0.011541,-0.014006,0.249607,0,0);}
.mdd_c01356{transform:matrix(0.205783,0.012372,-0.015003,0.249549,0,0);-ms-transform:matrix(0.205783,0.012372,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.205783,0.012372,-0.015003,0.249549,0,0);}
.mc5_c01356{transform:matrix(0.206355,0.011579,-0.014006,0.249607,0,0);-ms-transform:matrix(0.206355,0.011579,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.206355,0.011579,-0.014006,0.249607,0,0);}
.mbf_c01356{transform:matrix(0.206770,0.011602,-0.014006,0.249607,0,0);-ms-transform:matrix(0.206770,0.011602,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.206770,0.011602,-0.014006,0.249607,0,0);}
.maa_c01356{transform:matrix(0.206978,0.011821,-0.014255,0.249593,0,0);-ms-transform:matrix(0.206978,0.011821,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.206978,0.011821,-0.014255,0.249593,0,0);}
.m4c_c01356{transform:matrix(0.207300,0.011424,-0.013757,0.249621,0,0);-ms-transform:matrix(0.207300,0.011424,-0.013757,0.249621,0,0);-webkit-transform:matrix(0.207300,0.011424,-0.013757,0.249621,0,0);}
.me0_c01356{transform:matrix(0.208029,0.012507,-0.015003,0.249549,0,0);-ms-transform:matrix(0.208029,0.012507,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.208029,0.012507,-0.015003,0.249549,0,0);}
.m8_c01356{transform:matrix(0.208958,0.011516,-0.013757,0.249621,0,0);-ms-transform:matrix(0.208958,0.011516,-0.013757,0.249621,0,0);-webkit-transform:matrix(0.208958,0.011516,-0.013757,0.249621,0,0);}
.m7d_c01356{transform:matrix(0.208964,0.011935,-0.014255,0.249593,0,0);-ms-transform:matrix(0.208964,0.011935,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.208964,0.011935,-0.014255,0.249593,0,0);}
.me7_c01356{transform:matrix(0.209334,0.012795,-0.015252,0.249534,0,0);-ms-transform:matrix(0.209334,0.012795,-0.015252,0.249534,0,0);-webkit-transform:matrix(0.209334,0.012795,-0.015252,0.249534,0,0);}
.m52_c01356{transform:matrix(0.210036,0.011575,-0.013757,0.249621,0,0);-ms-transform:matrix(0.210036,0.011575,-0.013757,0.249621,0,0);-webkit-transform:matrix(0.210036,0.011575,-0.013757,0.249621,0,0);}
.ma0_c01356{transform:matrix(0.210053,0.011997,-0.014255,0.249593,0,0);-ms-transform:matrix(0.210053,0.011997,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.210053,0.011997,-0.014255,0.249593,0,0);}
.m32_c01356{transform:matrix(0.210169,0.011793,-0.014006,0.249607,0,0);-ms-transform:matrix(0.210169,0.011793,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.210169,0.011793,-0.014006,0.249607,0,0);}
.m16_c01356{transform:matrix(0.210236,0.011586,-0.013757,0.249621,0,0);-ms-transform:matrix(0.210236,0.011586,-0.013757,0.249621,0,0);-webkit-transform:matrix(0.210236,0.011586,-0.013757,0.249621,0,0);}
.m4a_c01356{transform:matrix(0.210555,0.011604,-0.013757,0.249621,0,0);-ms-transform:matrix(0.210555,0.011604,-0.013757,0.249621,0,0);-webkit-transform:matrix(0.210555,0.011604,-0.013757,0.249621,0,0);}
.ma8_c01356{transform:matrix(0.211236,0.012065,-0.014255,0.249593,0,0);-ms-transform:matrix(0.211236,0.012065,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.211236,0.012065,-0.014255,0.249593,0,0);}
.mb4_c01356{transform:matrix(0.211465,0.012078,-0.014255,0.249593,0,0);-ms-transform:matrix(0.211465,0.012078,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.211465,0.012078,-0.014255,0.249593,0,0);}
.m45_c01356{transform:matrix(0.211903,0.011678,-0.013757,0.249621,0,0);-ms-transform:matrix(0.211903,0.011678,-0.013757,0.249621,0,0);-webkit-transform:matrix(0.211903,0.011678,-0.013757,0.249621,0,0);}
.m46_c01356{transform:matrix(0.212193,0.011694,-0.013757,0.249621,0,0);-ms-transform:matrix(0.212193,0.011694,-0.013757,0.249621,0,0);-webkit-transform:matrix(0.212193,0.011694,-0.013757,0.249621,0,0);}
.ma2_c01356{transform:matrix(0.212434,0.012133,-0.014255,0.249593,0,0);-ms-transform:matrix(0.212434,0.012133,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.212434,0.012133,-0.014255,0.249593,0,0);}
.mb6_c01356{transform:matrix(0.212489,0.012136,-0.014255,0.249593,0,0);-ms-transform:matrix(0.212489,0.012136,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.212489,0.012136,-0.014255,0.249593,0,0);}
.mbe_c01356{transform:matrix(0.212501,0.011924,-0.014006,0.249607,0,0);-ms-transform:matrix(0.212501,0.011924,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.212501,0.011924,-0.014006,0.249607,0,0);}
.me5_c01356{transform:matrix(0.212938,0.013015,-0.015252,0.249534,0,0);-ms-transform:matrix(0.212938,0.013015,-0.015252,0.249534,0,0);-webkit-transform:matrix(0.212938,0.013015,-0.015252,0.249534,0,0);}
.md8_c01356{transform:matrix(0.213390,0.012829,-0.015003,0.249549,0,0);-ms-transform:matrix(0.213390,0.012829,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.213390,0.012829,-0.015003,0.249549,0,0);}
.ma6_c01356{transform:matrix(0.213906,0.012217,-0.014255,0.249593,0,0);-ms-transform:matrix(0.213906,0.012217,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.213906,0.012217,-0.014255,0.249593,0,0);}
.maf_c01356{transform:matrix(0.215299,0.012297,-0.014255,0.249593,0,0);-ms-transform:matrix(0.215299,0.012297,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.215299,0.012297,-0.014255,0.249593,0,0);}
.m3a_c01356{transform:matrix(0.215409,0.012303,-0.014255,0.249593,0,0);-ms-transform:matrix(0.215409,0.012303,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.215409,0.012303,-0.014255,0.249593,0,0);}
.mb3_c01356{transform:matrix(0.215983,0.012336,-0.014255,0.249593,0,0);-ms-transform:matrix(0.215983,0.012336,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.215983,0.012336,-0.014255,0.249593,0,0);}
.mac_c01356{transform:matrix(0.215998,0.012337,-0.014255,0.249593,0,0);-ms-transform:matrix(0.215998,0.012337,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.215998,0.012337,-0.014255,0.249593,0,0);}
.mdb_c01356{transform:matrix(0.216130,0.012994,-0.015003,0.249549,0,0);-ms-transform:matrix(0.216130,0.012994,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.216130,0.012994,-0.015003,0.249549,0,0);}
.m51_c01356{transform:matrix(0.216771,0.011946,-0.013757,0.249621,0,0);-ms-transform:matrix(0.216771,0.011946,-0.013757,0.249621,0,0);-webkit-transform:matrix(0.216771,0.011946,-0.013757,0.249621,0,0);}
.m41_c01356{transform:matrix(0.217281,0.012410,-0.014255,0.249593,0,0);-ms-transform:matrix(0.217281,0.012410,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.217281,0.012410,-0.014255,0.249593,0,0);}
.me2_c01356{transform:matrix(0.217419,0.013289,-0.015252,0.249534,0,0);-ms-transform:matrix(0.217419,0.013289,-0.015252,0.249534,0,0);-webkit-transform:matrix(0.217419,0.013289,-0.015252,0.249534,0,0);}
.m4_c01356{transform:matrix(0.217979,0.012013,-0.013757,0.249621,0,0);-ms-transform:matrix(0.217979,0.012013,-0.013757,0.249621,0,0);-webkit-transform:matrix(0.217979,0.012013,-0.013757,0.249621,0,0);}
.m3c_c01356{transform:matrix(0.218394,0.012473,-0.014255,0.249593,0,0);-ms-transform:matrix(0.218394,0.012473,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.218394,0.012473,-0.014255,0.249593,0,0);}
.m50_c01356{transform:matrix(0.218898,0.012064,-0.013757,0.249621,0,0);-ms-transform:matrix(0.218898,0.012064,-0.013757,0.249621,0,0);-webkit-transform:matrix(0.218898,0.012064,-0.013757,0.249621,0,0);}
.mb0_c01356{transform:matrix(0.218948,0.012505,-0.014255,0.249593,0,0);-ms-transform:matrix(0.218948,0.012505,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.218948,0.012505,-0.014255,0.249593,0,0);}
.m48_c01356{transform:matrix(0.218998,0.012069,-0.013757,0.249621,0,0);-ms-transform:matrix(0.218998,0.012069,-0.013757,0.249621,0,0);-webkit-transform:matrix(0.218998,0.012069,-0.013757,0.249621,0,0);}
.m49_c01356{transform:matrix(0.219043,0.012071,-0.013757,0.249621,0,0);-ms-transform:matrix(0.219043,0.012071,-0.013757,0.249621,0,0);-webkit-transform:matrix(0.219043,0.012071,-0.013757,0.249621,0,0);}
.me1_c01356{transform:matrix(0.219271,0.013402,-0.015252,0.249534,0,0);-ms-transform:matrix(0.219271,0.013402,-0.015252,0.249534,0,0);-webkit-transform:matrix(0.219271,0.013402,-0.015252,0.249534,0,0);}
.m42_c01356{transform:matrix(0.219607,0.012543,-0.014255,0.249593,0,0);-ms-transform:matrix(0.219607,0.012543,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.219607,0.012543,-0.014255,0.249593,0,0);}
.m1_c01356{transform:matrix(0.219767,0.012111,-0.013757,0.249621,0,0);-ms-transform:matrix(0.219767,0.012111,-0.013757,0.249621,0,0);-webkit-transform:matrix(0.219767,0.012111,-0.013757,0.249621,0,0);}
.m3e_c01356{transform:matrix(0.220021,0.012566,-0.014255,0.249593,0,0);-ms-transform:matrix(0.220021,0.012566,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.220021,0.012566,-0.014255,0.249593,0,0);}
.m3f_c01356{transform:matrix(0.220441,0.012590,-0.014255,0.249593,0,0);-ms-transform:matrix(0.220441,0.012590,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.220441,0.012590,-0.014255,0.249593,0,0);}
.ma7_c01356{transform:matrix(0.221739,0.012664,-0.014255,0.249593,0,0);-ms-transform:matrix(0.221739,0.012664,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.221739,0.012664,-0.014255,0.249593,0,0);}
.m18_c01356{transform:matrix(0.221858,0.012227,-0.013757,0.249621,0,0);-ms-transform:matrix(0.221858,0.012227,-0.013757,0.249621,0,0);-webkit-transform:matrix(0.221858,0.012227,-0.013757,0.249621,0,0);}
.m9e_c01356{transform:matrix(0.223945,0.012790,-0.014255,0.249593,0,0);-ms-transform:matrix(0.223945,0.012790,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.223945,0.012790,-0.014255,0.249593,0,0);}
.ma3_c01356{transform:matrix(0.223980,0.012792,-0.014255,0.249593,0,0);-ms-transform:matrix(0.223980,0.012792,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.223980,0.012792,-0.014255,0.249593,0,0);}
.m40_c01356{transform:matrix(0.224020,0.012795,-0.014255,0.249593,0,0);-ms-transform:matrix(0.224020,0.012795,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.224020,0.012795,-0.014255,0.249593,0,0);}
.m33_c01356{transform:matrix(0.224412,0.012592,-0.014006,0.249607,0,0);-ms-transform:matrix(0.224412,0.012592,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.224412,0.012592,-0.014006,0.249607,0,0);}
.me3_c01356{transform:matrix(0.225389,0.013776,-0.015252,0.249534,0,0);-ms-transform:matrix(0.225389,0.013776,-0.015252,0.249534,0,0);-webkit-transform:matrix(0.225389,0.013776,-0.015252,0.249534,0,0);}
.m70_c01356{transform:matrix(0.226364,0.012702,-0.014006,0.249607,0,0);-ms-transform:matrix(0.226364,0.012702,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.226364,0.012702,-0.014006,0.249607,0,0);}
.m14_c01356{transform:matrix(0.227510,0.012538,-0.013757,0.249621,0,0);-ms-transform:matrix(0.227510,0.012538,-0.013757,0.249621,0,0);-webkit-transform:matrix(0.227510,0.012538,-0.013757,0.249621,0,0);}
.ma5_c01356{transform:matrix(0.227639,0.013001,-0.014255,0.249593,0,0);-ms-transform:matrix(0.227639,0.013001,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.227639,0.013001,-0.014255,0.249593,0,0);}
.m11_c01356{transform:matrix(0.228164,0.012574,-0.013757,0.249621,0,0);-ms-transform:matrix(0.228164,0.012574,-0.013757,0.249621,0,0);-webkit-transform:matrix(0.228164,0.012574,-0.013757,0.249621,0,0);}
.m43_c01356{transform:matrix(0.228453,0.013048,-0.014255,0.249593,0,0);-ms-transform:matrix(0.228453,0.013048,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.228453,0.013048,-0.014255,0.249593,0,0);}
.ma1_c01356{transform:matrix(0.229741,0.013121,-0.014255,0.249593,0,0);-ms-transform:matrix(0.229741,0.013121,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.229741,0.013121,-0.014255,0.249593,0,0);}
.m2c_c01356{transform:matrix(0.230093,0.012911,-0.014006,0.249607,0,0);-ms-transform:matrix(0.230093,0.012911,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.230093,0.012911,-0.014006,0.249607,0,0);}
.m9f_c01356{transform:matrix(0.230499,0.013165,-0.014255,0.249593,0,0);-ms-transform:matrix(0.230499,0.013165,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.230499,0.013165,-0.014255,0.249593,0,0);}
.m13_c01356{transform:matrix(0.231144,0.012738,-0.013757,0.249621,0,0);-ms-transform:matrix(0.231144,0.012738,-0.013757,0.249621,0,0);-webkit-transform:matrix(0.231144,0.012738,-0.013757,0.249621,0,0);}
.mc4_c01356{transform:matrix(0.231865,0.013010,-0.014006,0.249607,0,0);-ms-transform:matrix(0.231865,0.013010,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.231865,0.013010,-0.014006,0.249607,0,0);}
.mae_c01356{transform:matrix(0.232172,0.013260,-0.014255,0.249593,0,0);-ms-transform:matrix(0.232172,0.013260,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.232172,0.013260,-0.014255,0.249593,0,0);}
.m26_c01356{transform:matrix(0.232597,0.012818,-0.013757,0.249621,0,0);-ms-transform:matrix(0.232597,0.012818,-0.013757,0.249621,0,0);-webkit-transform:matrix(0.232597,0.012818,-0.013757,0.249621,0,0);}
.mb1_c01356{transform:matrix(0.233045,0.013310,-0.014255,0.249593,0,0);-ms-transform:matrix(0.233045,0.013310,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.233045,0.013310,-0.014255,0.249593,0,0);}
.mc3_c01356{transform:matrix(0.233088,0.013079,-0.014006,0.249607,0,0);-ms-transform:matrix(0.233088,0.013079,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.233088,0.013079,-0.014006,0.249607,0,0);}
.m39_c01356{transform:matrix(0.233694,0.013347,-0.014255,0.249593,0,0);-ms-transform:matrix(0.233694,0.013347,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.233694,0.013347,-0.014255,0.249593,0,0);}
.mab_c01356{transform:matrix(0.234074,0.013369,-0.014255,0.249593,0,0);-ms-transform:matrix(0.234074,0.013369,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.234074,0.013369,-0.014255,0.249593,0,0);}
.m29_c01356{transform:matrix(0.234806,0.013175,-0.014006,0.249607,0,0);-ms-transform:matrix(0.234806,0.013175,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.234806,0.013175,-0.014006,0.249607,0,0);}
.m88_c01356{transform:matrix(0.235022,0.013423,-0.014255,0.249593,0,0);-ms-transform:matrix(0.235022,0.013423,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.235022,0.013423,-0.014255,0.249593,0,0);}
.ma9_c01356{transform:matrix(0.235950,0.013476,-0.014255,0.249593,0,0);-ms-transform:matrix(0.235950,0.013476,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.235950,0.013476,-0.014255,0.249593,0,0);}
.mc1_c01356{transform:matrix(0.235959,0.013240,-0.014006,0.249607,0,0);-ms-transform:matrix(0.235959,0.013240,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.235959,0.013240,-0.014006,0.249607,0,0);}
.mc2_c01356{transform:matrix(0.236034,0.013244,-0.014006,0.249607,0,0);-ms-transform:matrix(0.236034,0.013244,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.236034,0.013244,-0.014006,0.249607,0,0);}
.m2e_c01356{transform:matrix(0.236493,0.013270,-0.014006,0.249607,0,0);-ms-transform:matrix(0.236493,0.013270,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.236493,0.013270,-0.014006,0.249607,0,0);}
.m31_c01356{transform:matrix(0.237352,0.013318,-0.014006,0.249607,0,0);-ms-transform:matrix(0.237352,0.013318,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.237352,0.013318,-0.014006,0.249607,0,0);}
.ma4_c01356{transform:matrix(0.238082,0.013598,-0.014255,0.249593,0,0);-ms-transform:matrix(0.238082,0.013598,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.238082,0.013598,-0.014255,0.249593,0,0);}
.m28_c01356{transform:matrix(0.239104,0.013417,-0.014006,0.249607,0,0);-ms-transform:matrix(0.239104,0.013417,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.239104,0.013417,-0.014006,0.249607,0,0);}
.m2f_c01356{transform:matrix(0.239304,0.013428,-0.014006,0.249607,0,0);-ms-transform:matrix(0.239304,0.013428,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.239304,0.013428,-0.014006,0.249607,0,0);}
.m3d_c01356{transform:matrix(0.239555,0.013682,-0.014255,0.249593,0,0);-ms-transform:matrix(0.239555,0.013682,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.239555,0.013682,-0.014255,0.249593,0,0);}
.mf_c01356{transform:matrix(0.240705,0.013265,-0.013757,0.249621,0,0);-ms-transform:matrix(0.240705,0.013265,-0.013757,0.249621,0,0);-webkit-transform:matrix(0.240705,0.013265,-0.013757,0.249621,0,0);}
.m36_c01356{transform:matrix(0.241161,0.013532,-0.014006,0.249607,0,0);-ms-transform:matrix(0.241161,0.013532,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.241161,0.013532,-0.014006,0.249607,0,0);}
.m78_c01356{transform:matrix(0.242384,0.013601,-0.014006,0.249607,0,0);-ms-transform:matrix(0.242384,0.013601,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.242384,0.013601,-0.014006,0.249607,0,0);}
.m10_c01356{transform:matrix(0.242557,0.013367,-0.013757,0.249621,0,0);-ms-transform:matrix(0.242557,0.013367,-0.013757,0.249621,0,0);-webkit-transform:matrix(0.242557,0.013367,-0.013757,0.249621,0,0);}
.mb7_c01356{transform:matrix(0.242699,0.013862,-0.014255,0.249593,0,0);-ms-transform:matrix(0.242699,0.013862,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.242699,0.013862,-0.014255,0.249593,0,0);}
.m12_c01356{transform:matrix(0.243206,0.013403,-0.013757,0.249621,0,0);-ms-transform:matrix(0.243206,0.013403,-0.013757,0.249621,0,0);-webkit-transform:matrix(0.243206,0.013403,-0.013757,0.249621,0,0);}
.m30_c01356{transform:matrix(0.246877,0.013853,-0.014006,0.249607,0,0);-ms-transform:matrix(0.246877,0.013853,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.246877,0.013853,-0.014006,0.249607,0,0);}
.m1a_c01356{transform:matrix(0.250150,0.013786,-0.013757,0.249621,0,0);-ms-transform:matrix(0.250150,0.013786,-0.013757,0.249621,0,0);-webkit-transform:matrix(0.250150,0.013786,-0.013757,0.249621,0,0);}
.m2d_c01356{transform:matrix(0.251335,0.014103,-0.014006,0.249607,0,0);-ms-transform:matrix(0.251335,0.014103,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.251335,0.014103,-0.014006,0.249607,0,0);}
.m15_c01356{transform:matrix(0.251483,0.013859,-0.013757,0.249621,0,0);-ms-transform:matrix(0.251483,0.013859,-0.013757,0.249621,0,0);-webkit-transform:matrix(0.251483,0.013859,-0.013757,0.249621,0,0);}
.m1b_c01356{transform:matrix(0.252926,0.013939,-0.013757,0.249621,0,0);-ms-transform:matrix(0.252926,0.013939,-0.013757,0.249621,0,0);-webkit-transform:matrix(0.252926,0.013939,-0.013757,0.249621,0,0);}
.m17_c01356{transform:matrix(0.254639,0.014033,-0.013757,0.249621,0,0);-ms-transform:matrix(0.254639,0.014033,-0.013757,0.249621,0,0);-webkit-transform:matrix(0.254639,0.014033,-0.013757,0.249621,0,0);}
.m35_c01356{transform:matrix(0.256362,0.014385,-0.014006,0.249607,0,0);-ms-transform:matrix(0.256362,0.014385,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.256362,0.014385,-0.014006,0.249607,0,0);}
.m8c_c01356{transform:matrix(0.256442,0.014646,-0.014255,0.249593,0,0);-ms-transform:matrix(0.256442,0.014646,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.256442,0.014646,-0.014255,0.249593,0,0);}
.m2a_c01356{transform:matrix(0.257390,0.014443,-0.014006,0.249607,0,0);-ms-transform:matrix(0.257390,0.014443,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.257390,0.014443,-0.014006,0.249607,0,0);}
.m2b_c01356{transform:matrix(0.258573,0.014509,-0.014006,0.249607,0,0);-ms-transform:matrix(0.258573,0.014509,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.258573,0.014509,-0.014006,0.249607,0,0);}
.m37_c01356{transform:matrix(0.258673,0.014515,-0.014006,0.249607,0,0);-ms-transform:matrix(0.258673,0.014515,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.258673,0.014515,-0.014006,0.249607,0,0);}
.m38_c01356{transform:matrix(0.259157,0.014542,-0.014006,0.249607,0,0);-ms-transform:matrix(0.259157,0.014542,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.259157,0.014542,-0.014006,0.249607,0,0);}
.m89_c01356{transform:matrix(0.262417,0.014988,-0.014255,0.249593,0,0);-ms-transform:matrix(0.262417,0.014988,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.262417,0.014988,-0.014255,0.249593,0,0);}
.mdc_c01356{transform:matrix(0.270661,0.016272,-0.015003,0.249549,0,0);-ms-transform:matrix(0.270661,0.016272,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.270661,0.016272,-0.015003,0.249549,0,0);}
.mb5_c01356{transform:matrix(0.270824,0.015468,-0.014255,0.249593,0,0);-ms-transform:matrix(0.270824,0.015468,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.270824,0.015468,-0.014255,0.249593,0,0);}
.m6b_c01356{transform:matrix(0.286070,0.016052,-0.014006,0.249607,0,0);-ms-transform:matrix(0.286070,0.016052,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.286070,0.016052,-0.014006,0.249607,0,0);}
.mce_c01356{transform:matrix(0.289482,0.017404,-0.015003,0.249549,0,0);-ms-transform:matrix(0.289482,0.017404,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.289482,0.017404,-0.015003,0.249549,0,0);}
.md2_c01356{transform:matrix(0.292492,0.017585,-0.015003,0.249549,0,0);-ms-transform:matrix(0.292492,0.017585,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.292492,0.017585,-0.015003,0.249549,0,0);}
.m8f_c01356{transform:matrix(0.294675,0.016830,-0.014255,0.249593,0,0);-ms-transform:matrix(0.294675,0.016830,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.294675,0.016830,-0.014255,0.249593,0,0);}
.md4_c01356{transform:matrix(0.303093,0.018222,-0.015003,0.249549,0,0);-ms-transform:matrix(0.303093,0.018222,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.303093,0.018222,-0.015003,0.249549,0,0);}
.md5_c01356{transform:matrix(0.304630,0.018314,-0.015003,0.249549,0,0);-ms-transform:matrix(0.304630,0.018314,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.304630,0.018314,-0.015003,0.249549,0,0);}
.md1_c01356{transform:matrix(0.312860,0.018809,-0.015003,0.249549,0,0);-ms-transform:matrix(0.312860,0.018809,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.312860,0.018809,-0.015003,0.249549,0,0);}
.md7_c01356{transform:matrix(0.315246,0.018953,-0.015003,0.249549,0,0);-ms-transform:matrix(0.315246,0.018953,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.315246,0.018953,-0.015003,0.249549,0,0);}
.mcc_c01356{transform:matrix(0.316638,0.019036,-0.015003,0.249549,0,0);-ms-transform:matrix(0.316638,0.019036,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.316638,0.019036,-0.015003,0.249549,0,0);}
.mcd_c01356{transform:matrix(0.316643,0.019037,-0.015003,0.249549,0,0);-ms-transform:matrix(0.316643,0.019037,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.316643,0.019037,-0.015003,0.249549,0,0);}
.m8a_c01356{transform:matrix(0.320303,0.018294,-0.014255,0.249593,0,0);-ms-transform:matrix(0.320303,0.018294,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.320303,0.018294,-0.014255,0.249593,0,0);}
.mcb_c01356{transform:matrix(0.323985,0.019478,-0.015003,0.249549,0,0);-ms-transform:matrix(0.323985,0.019478,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.323985,0.019478,-0.015003,0.249549,0,0);}
.mc9_c01356{transform:matrix(0.329665,0.019820,-0.015003,0.249549,0,0);-ms-transform:matrix(0.329665,0.019820,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.329665,0.019820,-0.015003,0.249549,0,0);}
.mc8_c01356{transform:matrix(0.330768,0.019886,-0.015003,0.249549,0,0);-ms-transform:matrix(0.330768,0.019886,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.330768,0.019886,-0.015003,0.249549,0,0);}
.mea_c01356{transform:matrix(0.332055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332055,0.000000,0.000000,0.250000,0,0);}
.md0_c01356{transform:matrix(0.333747,0.020065,-0.015003,0.249549,0,0);-ms-transform:matrix(0.333747,0.020065,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.333747,0.020065,-0.015003,0.249549,0,0);}
.mcf_c01356{transform:matrix(0.339602,0.020417,-0.015003,0.249549,0,0);-ms-transform:matrix(0.339602,0.020417,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.339602,0.020417,-0.015003,0.249549,0,0);}
.mca_c01356{transform:matrix(0.340081,0.020446,-0.015003,0.249549,0,0);-ms-transform:matrix(0.340081,0.020446,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.340081,0.020446,-0.015003,0.249549,0,0);}
.md6_c01356{transform:matrix(0.341239,0.020515,-0.015003,0.249549,0,0);-ms-transform:matrix(0.341239,0.020515,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.341239,0.020515,-0.015003,0.249549,0,0);}
.m8e_c01356{transform:matrix(0.342547,0.019564,-0.014255,0.249593,0,0);-ms-transform:matrix(0.342547,0.019564,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.342547,0.019564,-0.014255,0.249593,0,0);}
.m8d_c01356{transform:matrix(0.399938,0.022842,-0.014255,0.249593,0,0);-ms-transform:matrix(0.399938,0.022842,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.399938,0.022842,-0.014255,0.249593,0,0);}
.m4f_c01356{transform:matrix(0.442119,0.024365,-0.013757,0.249621,0,0);-ms-transform:matrix(0.442119,0.024365,-0.013757,0.249621,0,0);-webkit-transform:matrix(0.442119,0.024365,-0.013757,0.249621,0,0);}
.m86_c01356{transform:matrix(0.454739,0.025972,-0.014255,0.249593,0,0);-ms-transform:matrix(0.454739,0.025972,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.454739,0.025972,-0.014255,0.249593,0,0);}
.me8_c01356{transform:matrix(0.481770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.481770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.481770,0.000000,0.000000,0.250000,0,0);}
.me9_c01356{transform:matrix(0.535440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535440,0.000000,0.000000,0.250000,0,0);}
.mc7_c01356{transform:matrix(1.432821,0.080399,-0.014006,0.249607,0,0);-ms-transform:matrix(1.432821,0.080399,-0.014006,0.249607,0,0);-webkit-transform:matrix(1.432821,0.080399,-0.014006,0.249607,0,0);}
.mc6_c01356{transform:matrix(1.858536,0.104287,-0.014006,0.249607,0,0);-ms-transform:matrix(1.858536,0.104287,-0.014006,0.249607,0,0);-webkit-transform:matrix(1.858536,0.104287,-0.014006,0.249607,0,0);}
.v0_c01356{vertical-align:0.000000px;}
.ls0_c01356{letter-spacing:0.000000px;}
.sc__c01356{text-shadow:none;}
.sc0_c01356{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__c01356{-webkit-text-stroke:0px transparent;}
.sc0_c01356{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01356{word-spacing:0.000000px;}
.fc0_c01356{color:transparent;}
.fs12_c01356{font-size:18.000000px;}
.fse_c01356{font-size:23.989678px;}
.fs13_c01356{font-size:24.000000px;}
.fsf_c01356{font-size:59.988119px;}
.fs14_c01356{font-size:66.000000px;}
.fs2_c01356{font-size:77.962122px;}
.fs4_c01356{font-size:77.966453px;}
.fs0_c01356{font-size:83.959208px;}
.fsd_c01356{font-size:83.963872px;}
.fs5_c01356{font-size:83.968620px;}
.fs6_c01356{font-size:89.956294px;}
.fs10_c01356{font-size:89.982178px;}
.fs11_c01356{font-size:89.987624px;}
.fs1_c01356{font-size:95.953381px;}
.fs8_c01356{font-size:95.958711px;}
.fs3_c01356{font-size:101.950467px;}
.fsb_c01356{font-size:101.961896px;}
.fs7_c01356{font-size:107.953550px;}
.fsa_c01356{font-size:107.959654px;}
.fs9_c01356{font-size:113.950969px;}
.fsc_c01356{font-size:113.957413px;}
.y0_c01356{bottom:0.000000px;}
.yec_c01356{bottom:67.770000px;}
.yea_c01356{bottom:75.882177px;}
.ye9_c01356{bottom:79.196490px;}
.ye8_c01356{bottom:81.179295px;}
.ye7_c01356{bottom:83.224777px;}
.ye6_c01356{bottom:89.921296px;}
.yeb_c01356{bottom:93.690000px;}
.ye5_c01356{bottom:95.801178px;}
.ye4_c01356{bottom:99.138000px;}
.ye3_c01356{bottom:108.416793px;}
.ye2_c01356{bottom:111.753813px;}
.ye1_c01356{bottom:113.062323px;}
.ye0_c01356{bottom:115.016763px;}
.ydf_c01356{bottom:118.356663px;}
.yde_c01356{bottom:122.927853px;}
.ydd_c01356{bottom:130.087983px;}
.ydc_c01356{bottom:132.185973px;}
.ydb_c01356{bottom:133.983543px;}
.yda_c01356{bottom:141.965961px;}
.yd9_c01356{bottom:143.760036px;}
.yd8_c01356{bottom:146.797338px;}
.yd7_c01356{bottom:149.826630px;}
.yd6_c01356{bottom:151.001538px;}
.yd5_c01356{bottom:152.405769px;}
.yd4_c01356{bottom:157.034979px;}
.yd3_c01356{bottom:159.149679px;}
.yd2_c01356{bottom:168.266265px;}
.yd1_c01356{bottom:179.609580px;}
.yd0_c01356{bottom:182.957310px;}
.ycf_c01356{bottom:185.585760px;}
.yce_c01356{bottom:188.327340px;}
.ycd_c01356{bottom:195.519150px;}
.ycc_c01356{bottom:201.985920px;}
.ycb_c01356{bottom:205.245000px;}
.yca_c01356{bottom:230.557128px;}
.yc9_c01356{bottom:235.780500px;}
.yc8_c01356{bottom:250.043892px;}
.yc7_c01356{bottom:256.320708px;}
.yc6_c01356{bottom:260.063916px;}
.yc5_c01356{bottom:264.318684px;}
.yc4_c01356{bottom:268.648044px;}
.yc3_c01356{bottom:269.876628px;}
.yc2_c01356{bottom:272.187300px;}
.yc1_c01356{bottom:274.092000px;}
.yc0_c01356{bottom:505.892782px;}
.ybf_c01356{bottom:507.267891px;}
.ybe_c01356{bottom:513.018670px;}
.ybd_c01356{bottom:514.953894px;}
.ybc_c01356{bottom:519.997753px;}
.yba_c01356{bottom:521.511696px;}
.ybb_c01356{bottom:522.592701px;}
.yb9_c01356{bottom:523.482873px;}
.yb8_c01356{bottom:525.966583px;}
.yb7_c01356{bottom:532.300777px;}
.yb6_c01356{bottom:534.293586px;}
.yb5_c01356{bottom:537.375417px;}
.yb4_c01356{bottom:541.312597px;}
.yb3_c01356{bottom:543.184849px;}
.yb2_c01356{bottom:545.698101px;}
.yb1_c01356{bottom:550.743756px;}
.yb0_c01356{bottom:552.621267px;}
.yad_c01356{bottom:554.944605px;}
.yaf_c01356{bottom:555.155209px;}
.yae_c01356{bottom:558.997954px;}
.yac_c01356{bottom:559.471356px;}
.yab_c01356{bottom:561.390334px;}
.yaa_c01356{bottom:563.922567px;}
.ya9_c01356{bottom:565.892889px;}
.ya8_c01356{bottom:567.726409px;}
.ya7_c01356{bottom:569.004261px;}
.ya6_c01356{bottom:575.944356px;}
.ya5_c01356{bottom:579.742641px;}
.ya4_c01356{bottom:581.687868px;}
.ya3_c01356{bottom:586.104964px;}
.ya2_c01356{bottom:588.040188px;}
.y9f_c01356{bottom:590.758501px;}
.ya1_c01356{bottom:591.192942px;}
.ya0_c01356{bottom:594.900681px;}
.y9e_c01356{bottom:595.858278px;}
.y9d_c01356{bottom:597.120183px;}
.y9c_c01356{bottom:605.328424px;}
.y9b_c01356{bottom:607.273651px;}
.y9a_c01356{bottom:612.981295px;}
.y99_c01356{bottom:615.487023px;}
.y98_c01356{bottom:619.385643px;}
.y97_c01356{bottom:623.095819px;}
.y96_c01356{bottom:625.690938px;}
.y93_c01356{bottom:628.047112px;}
.y95_c01356{bottom:628.825651px;}
.y92_c01356{bottom:629.989936px;}
.y94_c01356{bottom:630.788235px;}
.y91_c01356{bottom:638.962614px;}
.y90_c01356{bottom:640.757611px;}
.y8f_c01356{bottom:643.886256px;}
.y8e_c01356{bottom:647.920800px;}
.y8d_c01356{bottom:649.199899px;}
.y8c_c01356{bottom:653.733454px;}
.y8b_c01356{bottom:655.284781px;}
.y8a_c01356{bottom:659.324583px;}
.y87_c01356{bottom:659.375433px;}
.y89_c01356{bottom:660.641088px;}
.y86_c01356{bottom:663.169239px;}
.y88_c01356{bottom:663.724974px;}
.y85_c01356{bottom:665.039808px;}
.y84_c01356{bottom:669.332763px;}
.y83_c01356{bottom:670.669555px;}
.y82_c01356{bottom:675.023899px;}
.y81_c01356{bottom:678.755889px;}
.y80_c01356{bottom:680.632186px;}
.y7f_c01356{bottom:686.831706px;}
.y7e_c01356{bottom:693.144000px;}
.y7d_c01356{bottom:768.277860px;}
.y7c_c01356{bottom:770.661627px;}
.y7b_c01356{bottom:772.931292px;}
.y7a_c01356{bottom:775.555596px;}
.y79_c01356{bottom:777.887436px;}
.y78_c01356{bottom:781.743321px;}
.y77_c01356{bottom:789.951186px;}
.y76_c01356{bottom:794.137251px;}
.y75_c01356{bottom:795.992133px;}
.y74_c01356{bottom:798.358344px;}
.y73_c01356{bottom:800.811090px;}
.y72_c01356{bottom:803.140914px;}
.y71_c01356{bottom:804.942372px;}
.y70_c01356{bottom:805.399785px;}
.y6f_c01356{bottom:807.153936px;}
.y6e_c01356{bottom:809.587935px;}
.y6d_c01356{bottom:813.885483px;}
.y6c_c01356{bottom:815.661726px;}
.y6b_c01356{bottom:819.860223px;}
.y6a_c01356{bottom:821.662353px;}
.y69_c01356{bottom:824.133579px;}
.y68_c01356{bottom:825.872694px;}
.y67_c01356{bottom:827.657268px;}
.y66_c01356{bottom:828.883725px;}
.y65_c01356{bottom:832.449162px;}
.y64_c01356{bottom:834.276492px;}
.y63_c01356{bottom:838.515309px;}
.y61_c01356{bottom:839.761728px;}
.y62_c01356{bottom:840.297363px;}
.y60_c01356{bottom:841.604184px;}
.y5f_c01356{bottom:845.869788px;}
.y5e_c01356{bottom:847.093416px;}
.y5d_c01356{bottom:851.919384px;}
.y5c_c01356{bottom:855.607992px;}
.y5b_c01356{bottom:857.504376px;}
.y5a_c01356{bottom:862.408296px;}
.y59_c01356{bottom:864.808008px;}
.y58_c01356{bottom:868.531728px;}
.y57_c01356{bottom:872.131380px;}
.y54_c01356{bottom:873.961477px;}
.y56_c01356{bottom:874.644996px;}
.y55_c01356{bottom:876.451500px;}
.y53_c01356{bottom:878.774610px;}
.y52_c01356{bottom:882.479602px;}
.y51_c01356{bottom:885.469732px;}
.y50_c01356{bottom:887.263035px;}
.y4f_c01356{bottom:889.051470px;}
.y4e_c01356{bottom:892.047292px;}
.y4d_c01356{bottom:894.472380px;}
.y4c_c01356{bottom:895.652872px;}
.y4b_c01356{bottom:900.438615px;}
.y4a_c01356{bottom:901.695667px;}
.y49_c01356{bottom:905.270640px;}
.y48_c01356{bottom:906.525300px;}
.y47_c01356{bottom:909.522772px;}
.y46_c01356{bottom:911.290500px;}
.y45_c01356{bottom:912.215387px;}
.y44_c01356{bottom:914.193942px;}
.y43_c01356{bottom:916.664208px;}
.y42_c01356{bottom:919.171752px;}
.y41_c01356{bottom:922.252659px;}
.y40_c01356{bottom:925.348015px;}
.y3f_c01356{bottom:931.621749px;}
.y3e_c01356{bottom:933.502407px;}
.y3d_c01356{bottom:934.704024px;}
.y3c_c01356{bottom:936.619309px;}
.y3b_c01356{bottom:941.536500px;}
.y3a_c01356{bottom:960.415347px;}
.y39_c01356{bottom:966.748737px;}
.y38_c01356{bottom:969.115596px;}
.y37_c01356{bottom:974.330904px;}
.y36_c01356{bottom:976.015881px;}
.y35_c01356{bottom:978.337266px;}
.y34_c01356{bottom:979.496790px;}
.y32_c01356{bottom:980.718036px;}
.y33_c01356{bottom:981.783972px;}
.y31_c01356{bottom:983.716416px;}
.y30_c01356{bottom:986.248512px;}
.y2f_c01356{bottom:992.243592px;}
.y2e_c01356{bottom:994.196088px;}
.y2d_c01356{bottom:1000.960188px;}
.y2c_c01356{bottom:1007.043300px;}
.y2b_c01356{bottom:1010.095440px;}
.y2a_c01356{bottom:1012.003500px;}
.y29_c01356{bottom:1052.564320px;}
.y28_c01356{bottom:1055.120808px;}
.y27_c01356{bottom:1057.622491px;}
.y26_c01356{bottom:1059.513260px;}
.y25_c01356{bottom:1064.391367px;}
.y24_c01356{bottom:1066.570804px;}
.y23_c01356{bottom:1068.808581px;}
.y22_c01356{bottom:1075.029666px;}
.y21_c01356{bottom:1078.235031px;}
.y20_c01356{bottom:1080.073812px;}
.y1f_c01356{bottom:1084.336372px;}
.y1d_c01356{bottom:1085.993294px;}
.y1e_c01356{bottom:1088.772231px;}
.y1c_c01356{bottom:1090.306098px;}
.y1b_c01356{bottom:1095.210924px;}
.y1a_c01356{bottom:1096.993588px;}
.y19_c01356{bottom:1099.441546px;}
.y18_c01356{bottom:1103.204911px;}
.y17_c01356{bottom:1104.959608px;}
.y16_c01356{bottom:1109.312685px;}
.y15_c01356{bottom:1111.164414px;}
.y14_c01356{bottom:1113.590097px;}
.y13_c01356{bottom:1116.678433px;}
.y12_c01356{bottom:1118.507887px;}
.y11_c01356{bottom:1119.677823px;}
.yf_c01356{bottom:1120.144986px;}
.y10_c01356{bottom:1123.315599px;}
.ye_c01356{bottom:1124.287936px;}
.yd_c01356{bottom:1126.060432px;}
.yc_c01356{bottom:1129.041208px;}
.yb_c01356{bottom:1133.212209px;}
.ya_c01356{bottom:1134.364319px;}
.y9_c01356{bottom:1139.105887px;}
.y8_c01356{bottom:1142.639660px;}
.y7_c01356{bottom:1144.451838px;}
.y6_c01356{bottom:1149.112817px;}
.y5_c01356{bottom:1152.059862px;}
.y4_c01356{bottom:1155.019365px;}
.y3_c01356{bottom:1156.786251px;}
.y2_c01356{bottom:1222.140682px;}
.y1_c01356{bottom:1223.388000px;}
.h14_c01356{height:18.000000px;}
.h10_c01356{height:23.989678px;}
.h15_c01356{height:24.000000px;}
.h11_c01356{height:59.988119px;}
.h16_c01356{height:66.000000px;}
.h4_c01356{height:77.962122px;}
.h6_c01356{height:77.966453px;}
.h2_c01356{height:83.959208px;}
.hf_c01356{height:83.963872px;}
.h7_c01356{height:83.968620px;}
.h8_c01356{height:89.956294px;}
.h12_c01356{height:89.982178px;}
.h13_c01356{height:89.987624px;}
.h3_c01356{height:95.953381px;}
.ha_c01356{height:95.958711px;}
.h5_c01356{height:101.950467px;}
.hd_c01356{height:101.961896px;}
.h9_c01356{height:107.953550px;}
.hc_c01356{height:107.959654px;}
.hb_c01356{height:113.950969px;}
.he_c01356{height:113.957413px;}
.h1_c01356{height:1250.250000px;}
.h0_c01356{height:1250.370000px;}
.w0_c01356{width:878.850000px;}
.w1_c01356{width:879.000000px;}
.x0_c01356{left:0.000000px;}
.xb1_c01356{left:62.392500px;}
.xa7_c01356{left:64.746804px;}
.xa3_c01356{left:66.513000px;}
.xa0_c01356{left:71.082000px;}
.x9c_c01356{left:83.153168px;}
.x93_c01356{left:85.579361px;}
.x7d_c01356{left:88.888115px;}
.x75_c01356{left:90.826342px;}
.xab_c01356{left:94.708206px;}
.x64_c01356{left:99.693339px;}
.x57_c01356{left:100.761141px;}
.x4c_c01356{left:103.377000px;}
.x43_c01356{left:104.829000px;}
.x32_c01356{left:110.017389px;}
.x1d_c01356{left:114.467873px;}
.x10_c01356{left:117.704939px;}
.x3_c01356{left:118.936883px;}
.xa5_c01356{left:121.506864px;}
.x7e_c01356{left:122.672027px;}
.x9d_c01356{left:127.798628px;}
.xac_c01356{left:129.604773px;}
.x58_c01356{left:133.108668px;}
.x4d_c01356{left:135.571482px;}
.x44_c01356{left:136.905219px;}
.x76_c01356{left:146.793609px;}
.x4_c01356{left:151.597250px;}
.x33_c01356{left:153.079830px;}
.xa4_c01356{left:159.600951px;}
.xa1_c01356{left:168.101073px;}
.x77_c01356{left:170.685471px;}
.x34_c01356{left:174.921762px;}
.x7f_c01356{left:176.610350px;}
.x4e_c01356{left:180.367710px;}
.x11_c01356{left:182.542449px;}
.x1e_c01356{left:192.152178px;}
.x94_c01356{left:195.307710px;}
.x6e_c01356{left:201.294000px;}
.x12_c01356{left:203.390013px;}
.x5_c01356{left:206.279642px;}
.x89_c01356{left:207.351200px;}
.x59_c01356{left:210.015339px;}
.x45_c01356{left:214.062096px;}
.x39_c01356{left:216.537000px;}
.x29_c01356{left:219.012000px;}
.x80_c01356{left:221.258804px;}
.x95_c01356{left:227.602107px;}
.xa6_c01356{left:229.070805px;}
.x13_c01356{left:235.986870px;}
.x8a_c01356{left:240.656072px;}
.x5a_c01356{left:243.169749px;}
.x4f_c01356{left:244.518651px;}
.x9e_c01356{left:247.890110px;}
.x35_c01356{left:250.335258px;}
.x2a_c01356{left:253.016355px;}
.x6_c01356{left:260.735987px;}
.x65_c01356{left:262.116516px;}
.xa8_c01356{left:264.855261px;}
.x1f_c01356{left:266.800898px;}
.x78_c01356{left:272.129242px;}
.x46_c01356{left:278.931597px;}
.x81_c01356{left:285.088704px;}
.x14_c01356{left:291.018029px;}
.x66_c01356{left:295.761942px;}
.x20_c01356{left:298.994826px;}
.x3a_c01356{left:302.630967px;}
.x2b_c01356{left:307.409850px;}
.x50_c01356{left:310.880661px;}
.x96_c01356{left:314.420154px;}
.x8b_c01356{left:316.652904px;}
.xa2_c01356{left:321.082497px;}
.xb2_c01356{left:322.743255px;}
.xad_c01356{left:324.735729px;}
.x5b_c01356{left:330.120381px;}
.x15_c01356{left:334.243008px;}
.x3b_c01356{left:336.165264px;}
.x7_c01356{left:346.864596px;}
.x36_c01356{left:348.524982px;}
.x8c_c01356{left:350.132925px;}
.x82_c01356{left:352.165426px;}
.x51_c01356{left:353.646957px;}
.x21_c01356{left:355.114163px;}
.x3c_c01356{left:357.204102px;}
.x5c_c01356{left:362.512818px;}
.x16_c01356{left:367.244055px;}
.x9f_c01356{left:370.499375px;}
.x67_c01356{left:371.728497px;}
.x79_c01356{left:377.609439px;}
.x8_c01356{left:380.346816px;}
.x47_c01356{left:388.580859px;}
.x3d_c01356{left:390.132114px;}
.x1_c01356{left:391.714500px;}
.x37_c01356{left:393.087669px;}
.x83_c01356{left:395.275050px;}
.x48_c01356{left:410.001432px;}
.xae_c01356{left:412.798251px;}
.x2_c01356{left:414.347643px;}
.x2c_c01356{left:415.819596px;}
.x6f_c01356{left:420.360489px;}
.xaf_c01356{left:434.563134px;}
.x5d_c01356{left:438.912006px;}
.x52_c01356{left:441.041817px;}
.xb3_c01356{left:442.873014px;}
.x9_c01356{left:445.667550px;}
.xa9_c01356{left:447.311535px;}
.x7a_c01356{left:450.800074px;}
.x49_c01356{left:454.005747px;}
.x97_c01356{left:457.641997px;}
.x22_c01356{left:464.047872px;}
.x5e_c01356{left:471.617316px;}
.x53_c01356{left:474.838089px;}
.x17_c01356{left:476.083406px;}
.xb0_c01356{left:490.068900px;}
.x84_c01356{left:493.499639px;}
.x3e_c01356{left:499.977483px;}
.xaa_c01356{left:501.430566px;}
.x23_c01356{left:503.236539px;}
.x4a_c01356{left:508.366308px;}
.x98_c01356{left:510.680709px;}
.x38_c01356{left:512.327244px;}
.x70_c01356{left:518.554707px;}
.x68_c01356{left:520.653882px;}
.x85_c01356{left:526.979660px;}
.xa_c01356{left:533.285757px;}
.x8d_c01356{left:534.888051px;}
.x2d_c01356{left:536.365521px;}
.x7b_c01356{left:540.136239px;}
.x24_c01356{left:541.393856px;}
.x18_c01356{left:543.145293px;}
.x99_c01356{left:544.967527px;}
.x5f_c01356{left:547.805427px;}
.xb_c01356{left:554.572755px;}
.x8e_c01356{left:556.867220px;}
.x2e_c01356{left:571.161789px;}
.x4b_c01356{left:573.358563px;}
.x60_c01356{left:580.022631px;}
.x19_c01356{left:586.774462px;}
.x8f_c01356{left:588.417693px;}
.x69_c01356{left:590.629107px;}
.x71_c01356{left:594.793923px;}
.x3f_c01356{left:608.116272px;}
.x1a_c01356{left:618.549549px;}
.x90_c01356{left:622.310801px;}
.x25_c01356{left:626.803271px;}
.xc_c01356{left:631.647014px;}
.x6a_c01356{left:632.935182px;}
.x54_c01356{left:648.386796px;}
.x40_c01356{left:652.020288px;}
.x9a_c01356{left:653.951868px;}
.x61_c01356{left:658.002735px;}
.x26_c01356{left:659.913281px;}
.x91_c01356{left:665.884494px;}
.x86_c01356{left:668.224052px;}
.x2f_c01356{left:678.002679px;}
.x6b_c01356{left:680.560434px;}
.xd_c01356{left:686.742660px;}
.x87_c01356{left:689.950313px;}
.x72_c01356{left:693.363888px;}
.x41_c01356{left:695.271612px;}
.x9b_c01356{left:696.702297px;}
.x92_c01356{left:698.904936px;}
.x62_c01356{left:702.156192px;}
.x27_c01356{left:703.727183px;}
.x1b_c01356{left:705.969564px;}
.xe_c01356{left:719.504823px;}
.x6c_c01356{left:721.731699px;}
.x30_c01356{left:723.128247px;}
.x55_c01356{left:724.405953px;}
.x73_c01356{left:726.115254px;}
.x42_c01356{left:729.913689px;}
.x63_c01356{left:733.979685px;}
.x7c_c01356{left:738.195444px;}
.x28_c01356{left:748.481036px;}
.x56_c01356{left:757.241151px;}
.x6d_c01356{left:764.989950px;}
.x31_c01356{left:776.563662px;}
.x88_c01356{left:777.715960px;}
.x1c_c01356{left:782.837804px;}
.x74_c01356{left:792.540138px;}
.xf_c01356{left:796.070101px;}
.xb5_c01356{left:870.750000px;}
.xb4_c01356{left:874.530000px;}
@media print{
.v0_c01356{vertical-align:0.000000pt;}
.ls0_c01356{letter-spacing:0.000000pt;}
.ws0_c01356{word-spacing:0.000000pt;}
.fs12_c01356{font-size:16.000000pt;}
.fse_c01356{font-size:21.324158pt;}
.fs13_c01356{font-size:21.333333pt;}
.fsf_c01356{font-size:53.322772pt;}
.fs14_c01356{font-size:58.666667pt;}
.fs2_c01356{font-size:69.299664pt;}
.fs4_c01356{font-size:69.303514pt;}
.fs0_c01356{font-size:74.630407pt;}
.fsd_c01356{font-size:74.634553pt;}
.fs5_c01356{font-size:74.638773pt;}
.fs6_c01356{font-size:79.961151pt;}
.fs10_c01356{font-size:79.984158pt;}
.fs11_c01356{font-size:79.988999pt;}
.fs1_c01356{font-size:85.291894pt;}
.fs8_c01356{font-size:85.296632pt;}
.fs3_c01356{font-size:90.622637pt;}
.fsb_c01356{font-size:90.632796pt;}
.fs7_c01356{font-size:95.958711pt;}
.fsa_c01356{font-size:95.964137pt;}
.fs9_c01356{font-size:101.289751pt;}
.fsc_c01356{font-size:101.295478pt;}
.y0_c01356{bottom:0.000000pt;}
.yec_c01356{bottom:60.240000pt;}
.yea_c01356{bottom:67.450824pt;}
.ye9_c01356{bottom:70.396880pt;}
.ye8_c01356{bottom:72.159373pt;}
.ye7_c01356{bottom:73.977580pt;}
.ye6_c01356{bottom:79.930041pt;}
.yeb_c01356{bottom:83.280000pt;}
.ye5_c01356{bottom:85.156603pt;}
.ye4_c01356{bottom:88.122667pt;}
.ye3_c01356{bottom:96.370483pt;}
.ye2_c01356{bottom:99.336723pt;}
.ye1_c01356{bottom:100.499843pt;}
.ye0_c01356{bottom:102.237123pt;}
.ydf_c01356{bottom:105.205923pt;}
.yde_c01356{bottom:109.269203pt;}
.ydd_c01356{bottom:115.633763pt;}
.ydc_c01356{bottom:117.498643pt;}
.ydb_c01356{bottom:119.096483pt;}
.yda_c01356{bottom:126.191965pt;}
.yd9_c01356{bottom:127.786699pt;}
.yd8_c01356{bottom:130.486523pt;}
.yd7_c01356{bottom:133.179227pt;}
.yd6_c01356{bottom:134.223589pt;}
.yd5_c01356{bottom:135.471795pt;}
.yd4_c01356{bottom:139.586648pt;}
.yd3_c01356{bottom:141.466381pt;}
.yd2_c01356{bottom:149.570013pt;}
.yd1_c01356{bottom:159.652960pt;}
.yd0_c01356{bottom:162.628720pt;}
.ycf_c01356{bottom:164.965120pt;}
.yce_c01356{bottom:167.402080pt;}
.ycd_c01356{bottom:173.794800pt;}
.ycc_c01356{bottom:179.543040pt;}
.ycb_c01356{bottom:182.440000pt;}
.yca_c01356{bottom:204.939669pt;}
.yc9_c01356{bottom:209.582667pt;}
.yc8_c01356{bottom:222.261237pt;}
.yc7_c01356{bottom:227.840629pt;}
.yc6_c01356{bottom:231.167925pt;}
.yc5_c01356{bottom:234.949941pt;}
.yc4_c01356{bottom:238.798261pt;}
.yc3_c01356{bottom:239.890336pt;}
.yc2_c01356{bottom:241.944267pt;}
.yc1_c01356{bottom:243.637333pt;}
.yc0_c01356{bottom:449.682473pt;}
.ybf_c01356{bottom:450.904792pt;}
.ybe_c01356{bottom:456.016596pt;}
.ybd_c01356{bottom:457.736795pt;}
.ybc_c01356{bottom:462.220225pt;}
.yba_c01356{bottom:463.565952pt;}
.ybb_c01356{bottom:464.526845pt;}
.yb9_c01356{bottom:465.318109pt;}
.yb8_c01356{bottom:467.525852pt;}
.yb7_c01356{bottom:473.156247pt;}
.yb6_c01356{bottom:474.927632pt;}
.yb5_c01356{bottom:477.667037pt;}
.yb4_c01356{bottom:481.166753pt;}
.yb3_c01356{bottom:482.830977pt;}
.yb2_c01356{bottom:485.064979pt;}
.yb1_c01356{bottom:489.550005pt;}
.yb0_c01356{bottom:491.218904pt;}
.yad_c01356{bottom:493.284093pt;}
.yaf_c01356{bottom:493.471297pt;}
.yae_c01356{bottom:496.887071pt;}
.yac_c01356{bottom:497.307872pt;}
.yab_c01356{bottom:499.013631pt;}
.yaa_c01356{bottom:501.264504pt;}
.ya9_c01356{bottom:503.015901pt;}
.ya8_c01356{bottom:504.645697pt;}
.ya7_c01356{bottom:505.781565pt;}
.ya6_c01356{bottom:511.950539pt;}
.ya5_c01356{bottom:515.326792pt;}
.ya4_c01356{bottom:517.055883pt;}
.ya3_c01356{bottom:520.982191pt;}
.ya2_c01356{bottom:522.702389pt;}
.y9f_c01356{bottom:525.118668pt;}
.ya1_c01356{bottom:525.504837pt;}
.ya0_c01356{bottom:528.800605pt;}
.y9e_c01356{bottom:529.651803pt;}
.y9d_c01356{bottom:530.773496pt;}
.y9c_c01356{bottom:538.069711pt;}
.y9b_c01356{bottom:539.798801pt;}
.y9a_c01356{bottom:544.872263pt;}
.y99_c01356{bottom:547.099576pt;}
.y98_c01356{bottom:550.565016pt;}
.y97_c01356{bottom:553.862951pt;}
.y96_c01356{bottom:556.169723pt;}
.y93_c01356{bottom:558.264100pt;}
.y95_c01356{bottom:558.956135pt;}
.y92_c01356{bottom:559.991055pt;}
.y94_c01356{bottom:560.700653pt;}
.y91_c01356{bottom:567.966768pt;}
.y90_c01356{bottom:569.562321pt;}
.y8f_c01356{bottom:572.343339pt;}
.y8e_c01356{bottom:575.929600pt;}
.y8d_c01356{bottom:577.066577pt;}
.y8c_c01356{bottom:581.096404pt;}
.y8b_c01356{bottom:582.475361pt;}
.y8a_c01356{bottom:586.066296pt;}
.y87_c01356{bottom:586.111496pt;}
.y89_c01356{bottom:587.236523pt;}
.y86_c01356{bottom:589.483768pt;}
.y88_c01356{bottom:589.977755pt;}
.y85_c01356{bottom:591.146496pt;}
.y84_c01356{bottom:594.962456pt;}
.y83_c01356{bottom:596.150716pt;}
.y82_c01356{bottom:600.021244pt;}
.y81_c01356{bottom:603.338568pt;}
.y80_c01356{bottom:605.006388pt;}
.y7f_c01356{bottom:610.517072pt;}
.y7e_c01356{bottom:616.128000pt;}
.y7d_c01356{bottom:682.913653pt;}
.y7c_c01356{bottom:685.032557pt;}
.y7b_c01356{bottom:687.050037pt;}
.y7a_c01356{bottom:689.382752pt;}
.y79_c01356{bottom:691.455499pt;}
.y78_c01356{bottom:694.882952pt;}
.y77_c01356{bottom:702.178832pt;}
.y76_c01356{bottom:705.899779pt;}
.y75_c01356{bottom:707.548563pt;}
.y74_c01356{bottom:709.651861pt;}
.y73_c01356{bottom:711.832080pt;}
.y72_c01356{bottom:713.903035pt;}
.y71_c01356{bottom:715.504331pt;}
.y70_c01356{bottom:715.910920pt;}
.y6f_c01356{bottom:717.470165pt;}
.y6e_c01356{bottom:719.633720pt;}
.y6d_c01356{bottom:723.453763pt;}
.y6c_c01356{bottom:725.032645pt;}
.y6b_c01356{bottom:728.764643pt;}
.y6a_c01356{bottom:730.366536pt;}
.y69_c01356{bottom:732.563181pt;}
.y68_c01356{bottom:734.109061pt;}
.y67_c01356{bottom:735.695349pt;}
.y66_c01356{bottom:736.785533pt;}
.y65_c01356{bottom:739.954811pt;}
.y64_c01356{bottom:741.579104pt;}
.y63_c01356{bottom:745.346941pt;}
.y61_c01356{bottom:746.454869pt;}
.y62_c01356{bottom:746.930989pt;}
.y60_c01356{bottom:748.092608pt;}
.y5f_c01356{bottom:751.884256pt;}
.y5e_c01356{bottom:752.971925pt;}
.y5d_c01356{bottom:757.261675pt;}
.y5c_c01356{bottom:760.540437pt;}
.y5b_c01356{bottom:762.226112pt;}
.y5a_c01356{bottom:766.585152pt;}
.y59_c01356{bottom:768.718229pt;}
.y58_c01356{bottom:772.028203pt;}
.y57_c01356{bottom:775.227893pt;}
.y54_c01356{bottom:776.854647pt;}
.y56_c01356{bottom:777.462219pt;}
.y55_c01356{bottom:779.068000pt;}
.y53_c01356{bottom:781.132987pt;}
.y52_c01356{bottom:784.426313pt;}
.y51_c01356{bottom:787.084207pt;}
.y50_c01356{bottom:788.678253pt;}
.y4f_c01356{bottom:790.267973pt;}
.y4e_c01356{bottom:792.930927pt;}
.y4d_c01356{bottom:795.086560pt;}
.y4c_c01356{bottom:796.135887pt;}
.y4b_c01356{bottom:800.389880pt;}
.y4a_c01356{bottom:801.507260pt;}
.y49_c01356{bottom:804.685013pt;}
.y48_c01356{bottom:805.800267pt;}
.y47_c01356{bottom:808.464687pt;}
.y46_c01356{bottom:810.036000pt;}
.y45_c01356{bottom:810.858121pt;}
.y44_c01356{bottom:812.616837pt;}
.y43_c01356{bottom:814.812629pt;}
.y42_c01356{bottom:817.041557pt;}
.y41_c01356{bottom:819.780141pt;}
.y40_c01356{bottom:822.531569pt;}
.y3f_c01356{bottom:828.108221pt;}
.y3e_c01356{bottom:829.779917pt;}
.y3d_c01356{bottom:830.848021pt;}
.y3c_c01356{bottom:832.550497pt;}
.y3b_c01356{bottom:836.921333pt;}
.y3a_c01356{bottom:853.702531pt;}
.y39_c01356{bottom:859.332211pt;}
.y38_c01356{bottom:861.436085pt;}
.y37_c01356{bottom:866.071915pt;}
.y36_c01356{bottom:867.569672pt;}
.y35_c01356{bottom:869.633125pt;}
.y34_c01356{bottom:870.663813pt;}
.y32_c01356{bottom:871.749365pt;}
.y33_c01356{bottom:872.696864pt;}
.y31_c01356{bottom:874.414592pt;}
.y30_c01356{bottom:876.665344pt;}
.y2f_c01356{bottom:881.994304pt;}
.y2e_c01356{bottom:883.729856pt;}
.y2d_c01356{bottom:889.742389pt;}
.y2c_c01356{bottom:895.149600pt;}
.y2b_c01356{bottom:897.862613pt;}
.y2a_c01356{bottom:899.558667pt;}
.y29_c01356{bottom:935.612729pt;}
.y28_c01356{bottom:937.885163pt;}
.y27_c01356{bottom:940.108881pt;}
.y26_c01356{bottom:941.789564pt;}
.y25_c01356{bottom:946.125660pt;}
.y24_c01356{bottom:948.062937pt;}
.y23_c01356{bottom:950.052072pt;}
.y22_c01356{bottom:955.581925pt;}
.y21_c01356{bottom:958.431139pt;}
.y20_c01356{bottom:960.065611pt;}
.y1f_c01356{bottom:963.854553pt;}
.y1d_c01356{bottom:965.327372pt;}
.y1e_c01356{bottom:967.797539pt;}
.y1c_c01356{bottom:969.160976pt;}
.y1b_c01356{bottom:973.520821pt;}
.y1a_c01356{bottom:975.105412pt;}
.y19_c01356{bottom:977.281375pt;}
.y18_c01356{bottom:980.626588pt;}
.y17_c01356{bottom:982.186319pt;}
.y16_c01356{bottom:986.055720pt;}
.y15_c01356{bottom:987.701701pt;}
.y14_c01356{bottom:989.857864pt;}
.y13_c01356{bottom:992.603052pt;}
.y12_c01356{bottom:994.229233pt;}
.y11_c01356{bottom:995.269176pt;}
.yf_c01356{bottom:995.684432pt;}
.y10_c01356{bottom:998.502755pt;}
.ye_c01356{bottom:999.367055pt;}
.yd_c01356{bottom:1000.942607pt;}
.yc_c01356{bottom:1003.592185pt;}
.yb_c01356{bottom:1007.299741pt;}
.ya_c01356{bottom:1008.323839pt;}
.y9_c01356{bottom:1012.538567pt;}
.y8_c01356{bottom:1015.679697pt;}
.y7_c01356{bottom:1017.290523pt;}
.y6_c01356{bottom:1021.433615pt;}
.y5_c01356{bottom:1024.053211pt;}
.y4_c01356{bottom:1026.683880pt;}
.y3_c01356{bottom:1028.254445pt;}
.y2_c01356{bottom:1086.347273pt;}
.y1_c01356{bottom:1087.456000pt;}
.h14_c01356{height:16.000000pt;}
.h10_c01356{height:21.324158pt;}
.h15_c01356{height:21.333333pt;}
.h11_c01356{height:53.322772pt;}
.h16_c01356{height:58.666667pt;}
.h4_c01356{height:69.299664pt;}
.h6_c01356{height:69.303514pt;}
.h2_c01356{height:74.630407pt;}
.hf_c01356{height:74.634553pt;}
.h7_c01356{height:74.638773pt;}
.h8_c01356{height:79.961151pt;}
.h12_c01356{height:79.984158pt;}
.h13_c01356{height:79.988999pt;}
.h3_c01356{height:85.291894pt;}
.ha_c01356{height:85.296632pt;}
.h5_c01356{height:90.622637pt;}
.hd_c01356{height:90.632796pt;}
.h9_c01356{height:95.958711pt;}
.hc_c01356{height:95.964137pt;}
.hb_c01356{height:101.289751pt;}
.he_c01356{height:101.295478pt;}
.h1_c01356{height:1111.333333pt;}
.h0_c01356{height:1111.440000pt;}
.w0_c01356{width:781.200000pt;}
.w1_c01356{width:781.333333pt;}
.x0_c01356{left:0.000000pt;}
.xb1_c01356{left:55.460000pt;}
.xa7_c01356{left:57.552715pt;}
.xa3_c01356{left:59.122667pt;}
.xa0_c01356{left:63.184000pt;}
.x9c_c01356{left:73.913927pt;}
.x93_c01356{left:76.070543pt;}
.x7d_c01356{left:79.011657pt;}
.x75_c01356{left:80.734527pt;}
.xab_c01356{left:84.185072pt;}
.x64_c01356{left:88.616301pt;}
.x57_c01356{left:89.565459pt;}
.x4c_c01356{left:91.890667pt;}
.x43_c01356{left:93.181333pt;}
.x32_c01356{left:97.793235pt;}
.x1d_c01356{left:101.749220pt;}
.x10_c01356{left:104.626612pt;}
.x3_c01356{left:105.721673pt;}
.xa5_c01356{left:108.006101pt;}
.x7e_c01356{left:109.041801pt;}
.x9d_c01356{left:113.598780pt;}
.xac_c01356{left:115.204243pt;}
.x58_c01356{left:118.318816pt;}
.x4d_c01356{left:120.507984pt;}
.x44_c01356{left:121.693528pt;}
.x76_c01356{left:130.483208pt;}
.x4_c01356{left:134.753111pt;}
.x33_c01356{left:136.070960pt;}
.xa4_c01356{left:141.867512pt;}
.xa1_c01356{left:149.423176pt;}
.x77_c01356{left:151.720419pt;}
.x34_c01356{left:155.486011pt;}
.x7f_c01356{left:156.986977pt;}
.x4e_c01356{left:160.326853pt;}
.x11_c01356{left:162.259955pt;}
.x1e_c01356{left:170.801936pt;}
.x94_c01356{left:173.606853pt;}
.x6e_c01356{left:178.928000pt;}
.x12_c01356{left:180.791123pt;}
.x5_c01356{left:183.359681pt;}
.x89_c01356{left:184.312177pt;}
.x59_c01356{left:186.680301pt;}
.x45_c01356{left:190.277419pt;}
.x39_c01356{left:192.477333pt;}
.x29_c01356{left:194.677333pt;}
.x80_c01356{left:196.674492pt;}
.x95_c01356{left:202.312984pt;}
.xa6_c01356{left:203.618493pt;}
.x13_c01356{left:209.766107pt;}
.x8a_c01356{left:213.916508pt;}
.x5a_c01356{left:216.150888pt;}
.x4f_c01356{left:217.349912pt;}
.x9e_c01356{left:220.346764pt;}
.x35_c01356{left:222.520229pt;}
.x2a_c01356{left:224.903427pt;}
.x6_c01356{left:231.765321pt;}
.x65_c01356{left:232.992459pt;}
.xa8_c01356{left:235.426899pt;}
.x1f_c01356{left:237.156353pt;}
.x78_c01356{left:241.892660pt;}
.x46_c01356{left:247.939197pt;}
.x81_c01356{left:253.412181pt;}
.x14_c01356{left:258.682692pt;}
.x66_c01356{left:262.899504pt;}
.x20_c01356{left:265.773179pt;}
.x3a_c01356{left:269.005304pt;}
.x2b_c01356{left:273.253200pt;}
.x50_c01356{left:276.338365pt;}
.x96_c01356{left:279.484581pt;}
.x8b_c01356{left:281.469248pt;}
.xa2_c01356{left:285.406664pt;}
.xb2_c01356{left:286.882893pt;}
.xad_c01356{left:288.653981pt;}
.x5b_c01356{left:293.440339pt;}
.x15_c01356{left:297.104896pt;}
.x3b_c01356{left:298.813568pt;}
.x7_c01356{left:308.324085pt;}
.x36_c01356{left:309.799984pt;}
.x8c_c01356{left:311.229267pt;}
.x82_c01356{left:313.035935pt;}
.x51_c01356{left:314.352851pt;}
.x21_c01356{left:315.657033pt;}
.x3c_c01356{left:317.514757pt;}
.x5c_c01356{left:322.233616pt;}
.x16_c01356{left:326.439160pt;}
.x9f_c01356{left:329.332777pt;}
.x67_c01356{left:330.425331pt;}
.x79_c01356{left:335.652835pt;}
.x8_c01356{left:338.086059pt;}
.x47_c01356{left:345.405208pt;}
.x3d_c01356{left:346.784101pt;}
.x1_c01356{left:348.190667pt;}
.x37_c01356{left:349.411261pt;}
.x83_c01356{left:351.355600pt;}
.x48_c01356{left:364.445717pt;}
.xae_c01356{left:366.931779pt;}
.x2_c01356{left:368.309016pt;}
.x2c_c01356{left:369.617419pt;}
.x6f_c01356{left:373.653768pt;}
.xaf_c01356{left:386.278341pt;}
.x5d_c01356{left:390.144005pt;}
.x52_c01356{left:392.037171pt;}
.xb3_c01356{left:393.664901pt;}
.x9_c01356{left:396.148933pt;}
.xa9_c01356{left:397.610253pt;}
.x7a_c01356{left:400.711177pt;}
.x49_c01356{left:403.560664pt;}
.x97_c01356{left:406.792887pt;}
.x22_c01356{left:412.486997pt;}
.x5e_c01356{left:419.215392pt;}
.x53_c01356{left:422.078301pt;}
.x17_c01356{left:423.185249pt;}
.xb0_c01356{left:435.616800pt;}
.x84_c01356{left:438.666345pt;}
.x3e_c01356{left:444.424429pt;}
.xaa_c01356{left:445.716059pt;}
.x23_c01356{left:447.321368pt;}
.x4a_c01356{left:451.881163pt;}
.x98_c01356{left:453.938408pt;}
.x38_c01356{left:455.401995pt;}
.x70_c01356{left:460.937517pt;}
.x68_c01356{left:462.803451pt;}
.x85_c01356{left:468.426364pt;}
.xa_c01356{left:474.031784pt;}
.x8d_c01356{left:475.456045pt;}
.x2d_c01356{left:476.769352pt;}
.x7b_c01356{left:480.121101pt;}
.x24_c01356{left:481.238983pt;}
.x18_c01356{left:482.795816pt;}
.x99_c01356{left:484.415580pt;}
.x5f_c01356{left:486.938157pt;}
.xb_c01356{left:492.953560pt;}
.x8e_c01356{left:494.993084pt;}
.x2e_c01356{left:507.699368pt;}
.x4b_c01356{left:509.652056pt;}
.x60_c01356{left:515.575672pt;}
.x19_c01356{left:521.577300pt;}
.x8f_c01356{left:523.037949pt;}
.x69_c01356{left:525.003651pt;}
.x71_c01356{left:528.705709pt;}
.x3f_c01356{left:540.547797pt;}
.x1a_c01356{left:549.821821pt;}
.x90_c01356{left:553.165156pt;}
.x25_c01356{left:557.158463pt;}
.xc_c01356{left:561.464012pt;}
.x6a_c01356{left:562.609051pt;}
.x54_c01356{left:576.343819pt;}
.x40_c01356{left:579.573589pt;}
.x9a_c01356{left:581.290549pt;}
.x61_c01356{left:584.891320pt;}
.x26_c01356{left:586.589583pt;}
.x91_c01356{left:591.897328pt;}
.x86_c01356{left:593.976935pt;}
.x2f_c01356{left:602.669048pt;}
.x6b_c01356{left:604.942608pt;}
.xd_c01356{left:610.437920pt;}
.x87_c01356{left:613.289167pt;}
.x72_c01356{left:616.323456pt;}
.x41_c01356{left:618.019211pt;}
.x9b_c01356{left:619.290931pt;}
.x92_c01356{left:621.248832pt;}
.x62_c01356{left:624.138837pt;}
.x27_c01356{left:625.535273pt;}
.x1b_c01356{left:627.528501pt;}
.xe_c01356{left:639.559843pt;}
.x6c_c01356{left:641.539288pt;}
.x30_c01356{left:642.780664pt;}
.x55_c01356{left:643.916403pt;}
.x73_c01356{left:645.435781pt;}
.x42_c01356{left:648.812168pt;}
.x63_c01356{left:652.426387pt;}
.x7c_c01356{left:656.173728pt;}
.x28_c01356{left:665.316476pt;}
.x56_c01356{left:673.103245pt;}
.x6d_c01356{left:679.991067pt;}
.x31_c01356{left:690.278811pt;}
.x88_c01356{left:691.303076pt;}
.x1c_c01356{left:695.855825pt;}
.x74_c01356{left:704.480123pt;}
.xf_c01356{left:707.617868pt;}
.xb5_c01356{left:774.000000pt;}
.xb4_c01356{left:777.360000pt;}
}





/* 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_c01357 {
    display:none;
  }
  .loading-indicator_c01357.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01357 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_c01357 { 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_c01357" -> "#page-container .classname_c01357")
 */
.pf_c01357 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01357 { /* 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_c01357.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01357 { /* 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_c01357 { /* 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_c01357 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01357 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01357 {overflow:visible;}
  }
}
.c_c01357 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01357 { /* 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_c01357:after { /* webkit #35443 */
  content: '';
}
.t_c01357:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01357 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 */
}
.__c01357 { /* 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_c01357 { /* info for Javascript */
  display:none;
}
.l_c01357 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01357 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01357 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01357: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_c01357 {
    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_c01357.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01357.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_c01357 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01357{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01357;src:url('chunks/assets/font_53ec0c54e60da7c2d414b553.woff2')format("woff");}.ff1_c01357{font-family:ff1_c01357;line-height:1.000000;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;}
.me_c01357{transform:matrix(0.004475,0.000027,-0.001500,0.249996,0,0);-ms-transform:matrix(0.004475,0.000027,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.004475,0.000027,-0.001500,0.249996,0,0);}
.mf_c01357{transform:matrix(0.004915,0.000029,-0.001500,0.249996,0,0);-ms-transform:matrix(0.004915,0.000029,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.004915,0.000029,-0.001500,0.249996,0,0);}
.m11_c01357{transform:matrix(0.145827,0.000875,-0.001500,0.249996,0,0);-ms-transform:matrix(0.145827,0.000875,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.145827,0.000875,-0.001500,0.249996,0,0);}
.m10_c01357{transform:matrix(0.153372,0.000920,-0.001500,0.249996,0,0);-ms-transform:matrix(0.153372,0.000920,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.153372,0.000920,-0.001500,0.249996,0,0);}
.m7_c01357{transform:matrix(0.183017,0.001098,-0.001500,0.249996,0,0);-ms-transform:matrix(0.183017,0.001098,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.183017,0.001098,-0.001500,0.249996,0,0);}
.ma_c01357{transform:matrix(0.192362,0.001154,-0.001500,0.249996,0,0);-ms-transform:matrix(0.192362,0.001154,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.192362,0.001154,-0.001500,0.249996,0,0);}
.m3_c01357{transform:matrix(0.204826,0.001229,-0.001500,0.249996,0,0);-ms-transform:matrix(0.204826,0.001229,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.204826,0.001229,-0.001500,0.249996,0,0);}
.md_c01357{transform:matrix(0.207901,0.001247,-0.001500,0.249996,0,0);-ms-transform:matrix(0.207901,0.001247,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.207901,0.001247,-0.001500,0.249996,0,0);}
.m6_c01357{transform:matrix(0.213901,0.001283,-0.001500,0.249996,0,0);-ms-transform:matrix(0.213901,0.001283,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.213901,0.001283,-0.001500,0.249996,0,0);}
.m2_c01357{transform:matrix(0.223196,0.001339,-0.001500,0.249996,0,0);-ms-transform:matrix(0.223196,0.001339,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.223196,0.001339,-0.001500,0.249996,0,0);}
.m4_c01357{transform:matrix(0.232616,0.001396,-0.001500,0.249996,0,0);-ms-transform:matrix(0.232616,0.001396,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.232616,0.001396,-0.001500,0.249996,0,0);}
.m5_c01357{transform:matrix(0.255180,0.001531,-0.001500,0.249996,0,0);-ms-transform:matrix(0.255180,0.001531,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.255180,0.001531,-0.001500,0.249996,0,0);}
.m8_c01357{transform:matrix(0.294800,0.001769,-0.001500,0.249996,0,0);-ms-transform:matrix(0.294800,0.001769,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.294800,0.001769,-0.001500,0.249996,0,0);}
.m9_c01357{transform:matrix(0.300540,0.001803,-0.001500,0.249996,0,0);-ms-transform:matrix(0.300540,0.001803,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.300540,0.001803,-0.001500,0.249996,0,0);}
.m0_c01357{transform:matrix(0.308099,0.001849,-0.001500,0.249996,0,0);-ms-transform:matrix(0.308099,0.001849,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.308099,0.001849,-0.001500,0.249996,0,0);}
.m1_c01357{transform:matrix(0.310149,0.001861,-0.001500,0.249996,0,0);-ms-transform:matrix(0.310149,0.001861,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.310149,0.001861,-0.001500,0.249996,0,0);}
.mc_c01357{transform:matrix(0.558340,0.003350,-0.001500,0.249996,0,0);-ms-transform:matrix(0.558340,0.003350,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.558340,0.003350,-0.001500,0.249996,0,0);}
.mb_c01357{transform:matrix(0.618999,0.003714,-0.001500,0.249996,0,0);-ms-transform:matrix(0.618999,0.003714,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.618999,0.003714,-0.001500,0.249996,0,0);}
.v0_c01357{vertical-align:0.000000px;}
.ls0_c01357{letter-spacing:0.000000px;}
.sc__c01357{text-shadow:none;}
.sc0_c01357{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__c01357{-webkit-text-stroke:0px transparent;}
.sc0_c01357{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01357{word-spacing:0.000000px;}
.fc0_c01357{color:transparent;}
.fs0_c01357{font-size:102.001836px;}
.fs1_c01357{font-size:132.002376px;}
.y0_c01357{bottom:0.000000px;}
.yd_c01357{bottom:1062.176364px;}
.ye_c01357{bottom:1062.176973px;}
.y10_c01357{bottom:1062.177471px;}
.yf_c01357{bottom:1062.177702px;}
.y11_c01357{bottom:1062.177831px;}
.yc_c01357{bottom:1095.727851px;}
.yb_c01357{bottom:1095.876720px;}
.ya_c01357{bottom:1096.066683px;}
.y9_c01357{bottom:1096.406874px;}
.y8_c01357{bottom:1096.639929px;}
.y7_c01357{bottom:1096.850511px;}
.y6_c01357{bottom:1097.296128px;}
.y5_c01357{bottom:1097.508447px;}
.y4_c01357{bottom:1097.868078px;}
.y3_c01357{bottom:1098.166113px;}
.y2_c01357{bottom:1098.376749px;}
.y1_c01357{bottom:1098.900000px;}
.h2_c01357{height:102.001836px;}
.h3_c01357{height:132.002376px;}
.h1_c01357{height:1250.250000px;}
.h0_c01357{height:1250.370000px;}
.w0_c01357{width:878.850000px;}
.w1_c01357{width:879.000000px;}
.x0_c01357{left:0.000000px;}
.x1_c01357{left:165.121500px;}
.xd_c01357{left:211.407336px;}
.x2_c01357{left:252.330000px;}
.x3_c01357{left:287.436000px;}
.xe_c01357{left:297.538941px;}
.x4_c01357{left:337.108500px;}
.xf_c01357{left:345.329160px;}
.x10_c01357{left:364.769862px;}
.x5_c01357{left:397.047000px;}
.x11_c01357{left:406.081347px;}
.x6_c01357{left:432.433500px;}
.x7_c01357{left:506.703000px;}
.x8_c01357{left:541.800000px;}
.x9_c01357{left:580.642500px;}
.xa_c01357{left:637.341000px;}
.xb_c01357{left:669.001500px;}
.xc_c01357{left:693.813000px;}
@media print{
.v0_c01357{vertical-align:0.000000pt;}
.ls0_c01357{letter-spacing:0.000000pt;}
.ws0_c01357{word-spacing:0.000000pt;}
.fs0_c01357{font-size:90.668299pt;}
.fs1_c01357{font-size:117.335445pt;}
.y0_c01357{bottom:0.000000pt;}
.yd_c01357{bottom:944.156768pt;}
.ye_c01357{bottom:944.157309pt;}
.y10_c01357{bottom:944.157752pt;}
.yf_c01357{bottom:944.157957pt;}
.y11_c01357{bottom:944.158072pt;}
.yc_c01357{bottom:973.980312pt;}
.yb_c01357{bottom:974.112640pt;}
.ya_c01357{bottom:974.281496pt;}
.y9_c01357{bottom:974.583888pt;}
.y8_c01357{bottom:974.791048pt;}
.y7_c01357{bottom:974.978232pt;}
.y6_c01357{bottom:975.374336pt;}
.y5_c01357{bottom:975.563064pt;}
.y4_c01357{bottom:975.882736pt;}
.y3_c01357{bottom:976.147656pt;}
.y2_c01357{bottom:976.334888pt;}
.y1_c01357{bottom:976.800000pt;}
.h2_c01357{height:90.668299pt;}
.h3_c01357{height:117.335445pt;}
.h1_c01357{height:1111.333333pt;}
.h0_c01357{height:1111.440000pt;}
.w0_c01357{width:781.200000pt;}
.w1_c01357{width:781.333333pt;}
.x0_c01357{left:0.000000pt;}
.x1_c01357{left:146.774667pt;}
.xd_c01357{left:187.917632pt;}
.x2_c01357{left:224.293333pt;}
.x3_c01357{left:255.498667pt;}
.xe_c01357{left:264.479059pt;}
.x4_c01357{left:299.652000pt;}
.xf_c01357{left:306.959253pt;}
.x10_c01357{left:324.239877pt;}
.x5_c01357{left:352.930667pt;}
.x11_c01357{left:360.961197pt;}
.x6_c01357{left:384.385333pt;}
.x7_c01357{left:450.402667pt;}
.x8_c01357{left:481.600000pt;}
.x9_c01357{left:516.126667pt;}
.xa_c01357{left:566.525333pt;}
.xb_c01357{left:594.668000pt;}
.xc_c01357{left:616.722667pt;}
}





/* 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_c01358 {
    display:none;
  }
  .loading-indicator_c01358.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01358 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_c01358 { 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_c01358" -> "#page-container .classname_c01358")
 */
.pf_c01358 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01358 { /* 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_c01358.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01358 { /* 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_c01358 { /* 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_c01358 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01358 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01358 {overflow:visible;}
  }
}
.c_c01358 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01358 { /* 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_c01358:after { /* webkit #35443 */
  content: '';
}
.t_c01358:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01358 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 */
}
.__c01358 { /* 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_c01358 { /* info for Javascript */
  display:none;
}
.l_c01358 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01358 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01358 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01358: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_c01358 {
    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_c01358.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01358.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_c01358 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01358{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01358;src:url('chunks/assets/font_cfe63ee56e9e10a97d33a3db.woff2')format("woff");}.ff1_c01358{font-family:ff1_c01358;line-height:1.000000;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;}
.mcd_c01358{transform:matrix(0.011576,0.000579,-0.012497,0.249687,0,0);-ms-transform:matrix(0.011576,0.000579,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.011576,0.000579,-0.012497,0.249687,0,0);}
.mf7_c01358{transform:matrix(0.079442,0.004135,-0.012995,0.249662,0,0);-ms-transform:matrix(0.079442,0.004135,-0.012995,0.249662,0,0);-webkit-transform:matrix(0.079442,0.004135,-0.012995,0.249662,0,0);}
.m110_c01358{transform:matrix(0.124659,0.006995,-0.014006,0.249607,0,0);-ms-transform:matrix(0.124659,0.006995,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.124659,0.006995,-0.014006,0.249607,0,0);}
.mf6_c01358{transform:matrix(0.131502,0.006845,-0.012995,0.249662,0,0);-ms-transform:matrix(0.131502,0.006845,-0.012995,0.249662,0,0);-webkit-transform:matrix(0.131502,0.006845,-0.012995,0.249662,0,0);}
.m5c_c01358{transform:matrix(0.140339,0.007875,-0.014006,0.249607,0,0);-ms-transform:matrix(0.140339,0.007875,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.140339,0.007875,-0.014006,0.249607,0,0);}
.m107_c01358{transform:matrix(0.149211,0.008971,-0.015003,0.249549,0,0);-ms-transform:matrix(0.149211,0.008971,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.149211,0.008971,-0.015003,0.249549,0,0);}
.m72_c01358{transform:matrix(0.150751,0.007243,-0.011998,0.249712,0,0);-ms-transform:matrix(0.150751,0.007243,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.150751,0.007243,-0.011998,0.249712,0,0);}
.m106_c01358{transform:matrix(0.153318,0.009218,-0.015003,0.249549,0,0);-ms-transform:matrix(0.153318,0.009218,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.153318,0.009218,-0.015003,0.249549,0,0);}
.m105_c01358{transform:matrix(0.158913,0.009554,-0.015003,0.249549,0,0);-ms-transform:matrix(0.158913,0.009554,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.158913,0.009554,-0.015003,0.249549,0,0);}
.mfc_c01358{transform:matrix(0.163289,0.008500,-0.012995,0.249662,0,0);-ms-transform:matrix(0.163289,0.008500,-0.012995,0.249662,0,0);-webkit-transform:matrix(0.163289,0.008500,-0.012995,0.249662,0,0);}
.m103_c01358{transform:matrix(0.164204,0.009872,-0.015003,0.249549,0,0);-ms-transform:matrix(0.164204,0.009872,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.164204,0.009872,-0.015003,0.249549,0,0);}
.mfb_c01358{transform:matrix(0.170894,0.008895,-0.012995,0.249662,0,0);-ms-transform:matrix(0.170894,0.008895,-0.012995,0.249662,0,0);-webkit-transform:matrix(0.170894,0.008895,-0.012995,0.249662,0,0);}
.m102_c01358{transform:matrix(0.177335,0.010661,-0.015003,0.249549,0,0);-ms-transform:matrix(0.177335,0.010661,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.177335,0.010661,-0.015003,0.249549,0,0);}
.mfe_c01358{transform:matrix(0.177445,0.009236,-0.012995,0.249662,0,0);-ms-transform:matrix(0.177445,0.009236,-0.012995,0.249662,0,0);-webkit-transform:matrix(0.177445,0.009236,-0.012995,0.249662,0,0);}
.m100_c01358{transform:matrix(0.178294,0.009281,-0.012995,0.249662,0,0);-ms-transform:matrix(0.178294,0.009281,-0.012995,0.249662,0,0);-webkit-transform:matrix(0.178294,0.009281,-0.012995,0.249662,0,0);}
.m104_c01358{transform:matrix(0.183589,0.011037,-0.015003,0.249549,0,0);-ms-transform:matrix(0.183589,0.011037,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.183589,0.011037,-0.015003,0.249549,0,0);}
.mda_c01358{transform:matrix(0.184000,0.009209,-0.012497,0.249687,0,0);-ms-transform:matrix(0.184000,0.009209,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.184000,0.009209,-0.012497,0.249687,0,0);}
.mf9_c01358{transform:matrix(0.184286,0.009592,-0.012995,0.249662,0,0);-ms-transform:matrix(0.184286,0.009592,-0.012995,0.249662,0,0);-webkit-transform:matrix(0.184286,0.009592,-0.012995,0.249662,0,0);}
.m78_c01358{transform:matrix(0.184874,0.010374,-0.014006,0.249607,0,0);-ms-transform:matrix(0.184874,0.010374,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.184874,0.010374,-0.014006,0.249607,0,0);}
.mff_c01358{transform:matrix(0.187726,0.009772,-0.012995,0.249662,0,0);-ms-transform:matrix(0.187726,0.009772,-0.012995,0.249662,0,0);-webkit-transform:matrix(0.187726,0.009772,-0.012995,0.249662,0,0);}
.mc1_c01358{transform:matrix(0.188268,0.010753,-0.014255,0.249593,0,0);-ms-transform:matrix(0.188268,0.010753,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.188268,0.010753,-0.014255,0.249593,0,0);}
.m11e_c01358{transform:matrix(0.188395,0.011326,-0.015003,0.249549,0,0);-ms-transform:matrix(0.188395,0.011326,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.188395,0.011326,-0.015003,0.249549,0,0);}
.m101_c01358{transform:matrix(0.189109,0.009844,-0.012995,0.249662,0,0);-ms-transform:matrix(0.189109,0.009844,-0.012995,0.249662,0,0);-webkit-transform:matrix(0.189109,0.009844,-0.012995,0.249662,0,0);}
.m7b_c01358{transform:matrix(0.189532,0.010635,-0.014006,0.249607,0,0);-ms-transform:matrix(0.189532,0.010635,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.189532,0.010635,-0.014006,0.249607,0,0);}
.m21_c01358{transform:matrix(0.190187,0.009519,-0.012497,0.249687,0,0);-ms-transform:matrix(0.190187,0.009519,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.190187,0.009519,-0.012497,0.249687,0,0);}
.mfa_c01358{transform:matrix(0.190717,0.009927,-0.012995,0.249662,0,0);-ms-transform:matrix(0.190717,0.009927,-0.012995,0.249662,0,0);-webkit-transform:matrix(0.190717,0.009927,-0.012995,0.249662,0,0);}
.m76_c01358{transform:matrix(0.191938,0.010770,-0.014006,0.249607,0,0);-ms-transform:matrix(0.191938,0.010770,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.191938,0.010770,-0.014006,0.249607,0,0);}
.me4_c01358{transform:matrix(0.192115,0.009615,-0.012497,0.249687,0,0);-ms-transform:matrix(0.192115,0.009615,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.192115,0.009615,-0.012497,0.249687,0,0);}
.mfd_c01358{transform:matrix(0.192449,0.010017,-0.012995,0.249662,0,0);-ms-transform:matrix(0.192449,0.010017,-0.012995,0.249662,0,0);-webkit-transform:matrix(0.192449,0.010017,-0.012995,0.249662,0,0);}
.mc2_c01358{transform:matrix(0.194668,0.011118,-0.014255,0.249593,0,0);-ms-transform:matrix(0.194668,0.011118,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.194668,0.011118,-0.014255,0.249593,0,0);}
.m10a_c01358{transform:matrix(0.198787,0.011154,-0.014006,0.249607,0,0);-ms-transform:matrix(0.198787,0.011154,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.198787,0.011154,-0.014006,0.249607,0,0);}
.m5d_c01358{transform:matrix(0.198975,0.009560,-0.011998,0.249712,0,0);-ms-transform:matrix(0.198975,0.009560,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.198975,0.009560,-0.011998,0.249712,0,0);}
.me7_c01358{transform:matrix(0.199276,0.009974,-0.012497,0.249687,0,0);-ms-transform:matrix(0.199276,0.009974,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.199276,0.009974,-0.012497,0.249687,0,0);}
.m121_c01358{transform:matrix(0.199370,0.011986,-0.015003,0.249549,0,0);-ms-transform:matrix(0.199370,0.011986,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.199370,0.011986,-0.015003,0.249549,0,0);}
.me0_c01358{transform:matrix(0.199405,0.009980,-0.012497,0.249687,0,0);-ms-transform:matrix(0.199405,0.009980,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.199405,0.009980,-0.012497,0.249687,0,0);}
.mdf_c01358{transform:matrix(0.199875,0.010004,-0.012497,0.249687,0,0);-ms-transform:matrix(0.199875,0.010004,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.199875,0.010004,-0.012497,0.249687,0,0);}
.m116_c01358{transform:matrix(0.199935,0.011219,-0.014006,0.249607,0,0);-ms-transform:matrix(0.199935,0.011219,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.199935,0.011219,-0.014006,0.249607,0,0);}
.m11f_c01358{transform:matrix(0.200403,0.012048,-0.015003,0.249549,0,0);-ms-transform:matrix(0.200403,0.012048,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.200403,0.012048,-0.015003,0.249549,0,0);}
.mc_c01358{transform:matrix(0.201962,0.010108,-0.012497,0.249687,0,0);-ms-transform:matrix(0.201962,0.010108,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.201962,0.010108,-0.012497,0.249687,0,0);}
.m20_c01358{transform:matrix(0.202062,0.010113,-0.012497,0.249687,0,0);-ms-transform:matrix(0.202062,0.010113,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.202062,0.010113,-0.012497,0.249687,0,0);}
.mc4_c01358{transform:matrix(0.202695,0.011577,-0.014255,0.249593,0,0);-ms-transform:matrix(0.202695,0.011577,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.202695,0.011577,-0.014255,0.249593,0,0);}
.m115_c01358{transform:matrix(0.202931,0.011387,-0.014006,0.249607,0,0);-ms-transform:matrix(0.202931,0.011387,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.202931,0.011387,-0.014006,0.249607,0,0);}
.md5_c01358{transform:matrix(0.203350,0.010178,-0.012497,0.249687,0,0);-ms-transform:matrix(0.203350,0.010178,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.203350,0.010178,-0.012497,0.249687,0,0);}
.m77_c01358{transform:matrix(0.203430,0.011415,-0.014006,0.249607,0,0);-ms-transform:matrix(0.203430,0.011415,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.203430,0.011415,-0.014006,0.249607,0,0);}
.me9_c01358{transform:matrix(0.203604,0.010598,-0.012995,0.249662,0,0);-ms-transform:matrix(0.203604,0.010598,-0.012995,0.249662,0,0);-webkit-transform:matrix(0.203604,0.010598,-0.012995,0.249662,0,0);}
.m108_c01358{transform:matrix(0.204151,0.012274,-0.015003,0.249549,0,0);-ms-transform:matrix(0.204151,0.012274,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.204151,0.012274,-0.015003,0.249549,0,0);}
.m38_c01358{transform:matrix(0.204398,0.009207,-0.011250,0.249747,0,0);-ms-transform:matrix(0.204398,0.009207,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.204398,0.009207,-0.011250,0.249747,0,0);}
.mf_c01358{transform:matrix(0.205503,0.010285,-0.012497,0.249687,0,0);-ms-transform:matrix(0.205503,0.010285,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.205503,0.010285,-0.012497,0.249687,0,0);}
.m19_c01358{transform:matrix(0.205583,0.010289,-0.012497,0.249687,0,0);-ms-transform:matrix(0.205583,0.010289,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.205583,0.010289,-0.012497,0.249687,0,0);}
.m124_c01358{transform:matrix(0.205963,0.012383,-0.015003,0.249549,0,0);-ms-transform:matrix(0.205963,0.012383,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.205963,0.012383,-0.015003,0.249549,0,0);}
.m42_c01358{transform:matrix(0.206340,0.011578,-0.014006,0.249607,0,0);-ms-transform:matrix(0.206340,0.011578,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.206340,0.011578,-0.014006,0.249607,0,0);}
.m9f_c01358{transform:matrix(0.206364,0.011155,-0.013494,0.249636,0,0);-ms-transform:matrix(0.206364,0.011155,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.206364,0.011155,-0.013494,0.249636,0,0);}
.mdd_c01358{transform:matrix(0.206442,0.010332,-0.012497,0.249687,0,0);-ms-transform:matrix(0.206442,0.010332,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.206442,0.010332,-0.012497,0.249687,0,0);}
.m11c_c01358{transform:matrix(0.206502,0.012415,-0.015003,0.249549,0,0);-ms-transform:matrix(0.206502,0.012415,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.206502,0.012415,-0.015003,0.249549,0,0);}
.m7d_c01358{transform:matrix(0.206805,0.011604,-0.014006,0.249607,0,0);-ms-transform:matrix(0.206805,0.011604,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.206805,0.011604,-0.014006,0.249607,0,0);}
.m122_c01358{transform:matrix(0.207351,0.012466,-0.015003,0.249549,0,0);-ms-transform:matrix(0.207351,0.012466,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.207351,0.012466,-0.015003,0.249549,0,0);}
.me2_c01358{transform:matrix(0.207590,0.010390,-0.012497,0.249687,0,0);-ms-transform:matrix(0.207590,0.010390,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.207590,0.010390,-0.012497,0.249687,0,0);}
.m123_c01358{transform:matrix(0.207615,0.012482,-0.015003,0.249549,0,0);-ms-transform:matrix(0.207615,0.012482,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.207615,0.012482,-0.015003,0.249549,0,0);}
.mcc_c01358{transform:matrix(0.207900,0.010405,-0.012497,0.249687,0,0);-ms-transform:matrix(0.207900,0.010405,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.207900,0.010405,-0.012497,0.249687,0,0);}
.m7c_c01358{transform:matrix(0.208432,0.011696,-0.014006,0.249607,0,0);-ms-transform:matrix(0.208432,0.011696,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.208432,0.011696,-0.014006,0.249607,0,0);}
.m61_c01358{transform:matrix(0.208445,0.010015,-0.011998,0.249712,0,0);-ms-transform:matrix(0.208445,0.010015,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.208445,0.010015,-0.011998,0.249712,0,0);}
.m7a_c01358{transform:matrix(0.208727,0.011712,-0.014006,0.249607,0,0);-ms-transform:matrix(0.208727,0.011712,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.208727,0.011712,-0.014006,0.249607,0,0);}
.m62_c01358{transform:matrix(0.208749,0.010030,-0.011998,0.249712,0,0);-ms-transform:matrix(0.208749,0.010030,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.208749,0.010030,-0.011998,0.249712,0,0);}
.mc0_c01358{transform:matrix(0.208860,0.011929,-0.014255,0.249593,0,0);-ms-transform:matrix(0.208860,0.011929,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.208860,0.011929,-0.014255,0.249593,0,0);}
.m75_c01358{transform:matrix(0.208886,0.011721,-0.014006,0.249607,0,0);-ms-transform:matrix(0.208886,0.011721,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.208886,0.011721,-0.014006,0.249607,0,0);}
.mdc_c01358{transform:matrix(0.209203,0.010471,-0.012497,0.249687,0,0);-ms-transform:matrix(0.209203,0.010471,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.209203,0.010471,-0.012497,0.249687,0,0);}
.mf8_c01358{transform:matrix(0.209207,0.010890,-0.012995,0.249662,0,0);-ms-transform:matrix(0.209207,0.010890,-0.012995,0.249662,0,0);-webkit-transform:matrix(0.209207,0.010890,-0.012995,0.249662,0,0);}
.me5_c01358{transform:matrix(0.209463,0.010484,-0.012497,0.249687,0,0);-ms-transform:matrix(0.209463,0.010484,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.209463,0.010484,-0.012497,0.249687,0,0);}
.mc3_c01358{transform:matrix(0.210502,0.012023,-0.014255,0.249593,0,0);-ms-transform:matrix(0.210502,0.012023,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.210502,0.012023,-0.014255,0.249593,0,0);}
.ma6_c01358{transform:matrix(0.210737,0.011391,-0.013494,0.249636,0,0);-ms-transform:matrix(0.210737,0.011391,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.210737,0.011391,-0.013494,0.249636,0,0);}
.ma5_c01358{transform:matrix(0.211312,0.011422,-0.013494,0.249636,0,0);-ms-transform:matrix(0.211312,0.011422,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.211312,0.011422,-0.013494,0.249636,0,0);}
.me1_c01358{transform:matrix(0.211415,0.010581,-0.012497,0.249687,0,0);-ms-transform:matrix(0.211415,0.010581,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.211415,0.010581,-0.012497,0.249687,0,0);}
.mbc_c01358{transform:matrix(0.211620,0.012087,-0.014255,0.249593,0,0);-ms-transform:matrix(0.211620,0.012087,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.211620,0.012087,-0.014255,0.249593,0,0);}
.me6_c01358{transform:matrix(0.212249,0.010623,-0.012497,0.249687,0,0);-ms-transform:matrix(0.212249,0.010623,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.212249,0.010623,-0.012497,0.249687,0,0);}
.m8b_c01358{transform:matrix(0.212460,0.011484,-0.013494,0.249636,0,0);-ms-transform:matrix(0.212460,0.011484,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.212460,0.011484,-0.013494,0.249636,0,0);}
.m36_c01358{transform:matrix(0.212924,0.010231,-0.011998,0.249712,0,0);-ms-transform:matrix(0.212924,0.010231,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.212924,0.010231,-0.011998,0.249712,0,0);}
.m26_c01358{transform:matrix(0.213093,0.010665,-0.012497,0.249687,0,0);-ms-transform:matrix(0.213093,0.010665,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.213093,0.010665,-0.012497,0.249687,0,0);}
.mf4_c01358{transform:matrix(0.213676,0.011122,-0.012995,0.249662,0,0);-ms-transform:matrix(0.213676,0.011122,-0.012995,0.249662,0,0);-webkit-transform:matrix(0.213676,0.011122,-0.012995,0.249662,0,0);}
.m79_c01358{transform:matrix(0.214043,0.012010,-0.014006,0.249607,0,0);-ms-transform:matrix(0.214043,0.012010,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.214043,0.012010,-0.014006,0.249607,0,0);}
.mba_c01358{transform:matrix(0.214381,0.012244,-0.014255,0.249593,0,0);-ms-transform:matrix(0.214381,0.012244,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.214381,0.012244,-0.014255,0.249593,0,0);}
.m29_c01358{transform:matrix(0.214432,0.010732,-0.012497,0.249687,0,0);-ms-transform:matrix(0.214432,0.010732,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.214432,0.010732,-0.012497,0.249687,0,0);}
.m9_c01358{transform:matrix(0.214881,0.010755,-0.012497,0.249687,0,0);-ms-transform:matrix(0.214881,0.010755,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.214881,0.010755,-0.012497,0.249687,0,0);}
.m74_c01358{transform:matrix(0.214912,0.010326,-0.011998,0.249712,0,0);-ms-transform:matrix(0.214912,0.010326,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.214912,0.010326,-0.011998,0.249712,0,0);}
.m10d_c01358{transform:matrix(0.215421,0.012088,-0.014006,0.249607,0,0);-ms-transform:matrix(0.215421,0.012088,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.215421,0.012088,-0.014006,0.249607,0,0);}
.m17_c01358{transform:matrix(0.215445,0.010783,-0.012497,0.249687,0,0);-ms-transform:matrix(0.215445,0.010783,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.215445,0.010783,-0.012497,0.249687,0,0);}
.mcf_c01358{transform:matrix(0.215520,0.010787,-0.012497,0.249687,0,0);-ms-transform:matrix(0.215520,0.010787,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.215520,0.010787,-0.012497,0.249687,0,0);}
.m90_c01358{transform:matrix(0.215540,0.011651,-0.013494,0.249636,0,0);-ms-transform:matrix(0.215540,0.011651,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.215540,0.011651,-0.013494,0.249636,0,0);}
.mdb_c01358{transform:matrix(0.215825,0.010802,-0.012497,0.249687,0,0);-ms-transform:matrix(0.215825,0.010802,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.215825,0.010802,-0.012497,0.249687,0,0);}
.m16_c01358{transform:matrix(0.216454,0.010834,-0.012497,0.249687,0,0);-ms-transform:matrix(0.216454,0.010834,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.216454,0.010834,-0.012497,0.249687,0,0);}
.m11d_c01358{transform:matrix(0.216494,0.013016,-0.015003,0.249549,0,0);-ms-transform:matrix(0.216494,0.013016,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.216494,0.013016,-0.015003,0.249549,0,0);}
.mbe_c01358{transform:matrix(0.216657,0.012374,-0.014255,0.249593,0,0);-ms-transform:matrix(0.216657,0.012374,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.216657,0.012374,-0.014255,0.249593,0,0);}
.m40_c01358{transform:matrix(0.217623,0.012211,-0.014006,0.249607,0,0);-ms-transform:matrix(0.217623,0.012211,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.217623,0.012211,-0.014006,0.249607,0,0);}
.m11b_c01358{transform:matrix(0.217702,0.013088,-0.015003,0.249549,0,0);-ms-transform:matrix(0.217702,0.013088,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.217702,0.013088,-0.015003,0.249549,0,0);}
.mac_c01358{transform:matrix(0.217802,0.011773,-0.013494,0.249636,0,0);-ms-transform:matrix(0.217802,0.011773,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.217802,0.011773,-0.013494,0.249636,0,0);}
.m32_c01358{transform:matrix(0.218303,0.010489,-0.011998,0.249712,0,0);-ms-transform:matrix(0.218303,0.010489,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.218303,0.010489,-0.011998,0.249712,0,0);}
.m114_c01358{transform:matrix(0.218566,0.012264,-0.014006,0.249607,0,0);-ms-transform:matrix(0.218566,0.012264,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.218566,0.012264,-0.014006,0.249607,0,0);}
.m10e_c01358{transform:matrix(0.218806,0.012278,-0.014006,0.249607,0,0);-ms-transform:matrix(0.218806,0.012278,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.218806,0.012278,-0.014006,0.249607,0,0);}
.m57_c01358{transform:matrix(0.218931,0.012285,-0.014006,0.249607,0,0);-ms-transform:matrix(0.218931,0.012285,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.218931,0.012285,-0.014006,0.249607,0,0);}
.m117_c01358{transform:matrix(0.219040,0.012291,-0.014006,0.249607,0,0);-ms-transform:matrix(0.219040,0.012291,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.219040,0.012291,-0.014006,0.249607,0,0);}
.me3_c01358{transform:matrix(0.219091,0.010966,-0.012497,0.249687,0,0);-ms-transform:matrix(0.219091,0.010966,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.219091,0.010966,-0.012497,0.249687,0,0);}
.m125_c01358{transform:matrix(0.219688,0.013208,-0.015003,0.249549,0,0);-ms-transform:matrix(0.219688,0.013208,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.219688,0.013208,-0.015003,0.249549,0,0);}
.m22_c01358{transform:matrix(0.220284,0.011025,-0.012497,0.249687,0,0);-ms-transform:matrix(0.220284,0.011025,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.220284,0.011025,-0.012497,0.249687,0,0);}
.mad_c01358{transform:matrix(0.220333,0.011910,-0.013494,0.249636,0,0);-ms-transform:matrix(0.220333,0.011910,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.220333,0.011910,-0.013494,0.249636,0,0);}
.m111_c01358{transform:matrix(0.220348,0.012364,-0.014006,0.249607,0,0);-ms-transform:matrix(0.220348,0.012364,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.220348,0.012364,-0.014006,0.249607,0,0);}
.m95_c01358{transform:matrix(0.220408,0.011914,-0.013494,0.249636,0,0);-ms-transform:matrix(0.220408,0.011914,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.220408,0.011914,-0.013494,0.249636,0,0);}
.m25_c01358{transform:matrix(0.220484,0.011035,-0.012497,0.249687,0,0);-ms-transform:matrix(0.220484,0.011035,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.220484,0.011035,-0.012497,0.249687,0,0);}
.m87_c01358{transform:matrix(0.220663,0.012382,-0.014006,0.249607,0,0);-ms-transform:matrix(0.220663,0.012382,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.220663,0.012382,-0.014006,0.249607,0,0);}
.m1e_c01358{transform:matrix(0.220734,0.011048,-0.012497,0.249687,0,0);-ms-transform:matrix(0.220734,0.011048,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.220734,0.011048,-0.012497,0.249687,0,0);}
.ma9_c01358{transform:matrix(0.220768,0.011933,-0.013494,0.249636,0,0);-ms-transform:matrix(0.220768,0.011933,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.220768,0.011933,-0.013494,0.249636,0,0);}
.m6e_c01358{transform:matrix(0.221200,0.010628,-0.011998,0.249712,0,0);-ms-transform:matrix(0.221200,0.010628,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.221200,0.010628,-0.011998,0.249712,0,0);}
.mbd_c01358{transform:matrix(0.221434,0.012647,-0.014255,0.249593,0,0);-ms-transform:matrix(0.221434,0.012647,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.221434,0.012647,-0.014255,0.249593,0,0);}
.mef_c01358{transform:matrix(0.221645,0.011537,-0.012995,0.249662,0,0);-ms-transform:matrix(0.221645,0.011537,-0.012995,0.249662,0,0);-webkit-transform:matrix(0.221645,0.011537,-0.012995,0.249662,0,0);}
.mbf_c01358{transform:matrix(0.221789,0.012667,-0.014255,0.249593,0,0);-ms-transform:matrix(0.221789,0.012667,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.221789,0.012667,-0.014255,0.249593,0,0);}
.m1c_c01358{transform:matrix(0.222457,0.011134,-0.012497,0.249687,0,0);-ms-transform:matrix(0.222457,0.011134,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.222457,0.011134,-0.012497,0.249687,0,0);}
.ma4_c01358{transform:matrix(0.222490,0.012026,-0.013494,0.249636,0,0);-ms-transform:matrix(0.222490,0.012026,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.222490,0.012026,-0.013494,0.249636,0,0);}
.m80_c01358{transform:matrix(0.222495,0.012485,-0.014006,0.249607,0,0);-ms-transform:matrix(0.222495,0.012485,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.222495,0.012485,-0.014006,0.249607,0,0);}
.mc9_c01358{transform:matrix(0.222876,0.011155,-0.012497,0.249687,0,0);-ms-transform:matrix(0.222876,0.011155,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.222876,0.011155,-0.012497,0.249687,0,0);}
.m118_c01358{transform:matrix(0.223219,0.012525,-0.014006,0.249607,0,0);-ms-transform:matrix(0.223219,0.012525,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.223219,0.012525,-0.014006,0.249607,0,0);}
.md3_c01358{transform:matrix(0.223256,0.011174,-0.012497,0.249687,0,0);-ms-transform:matrix(0.223256,0.011174,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.223256,0.011174,-0.012497,0.249687,0,0);}
.mc7_c01358{transform:matrix(0.223395,0.011181,-0.012497,0.249687,0,0);-ms-transform:matrix(0.223395,0.011181,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.223395,0.011181,-0.012497,0.249687,0,0);}
.md1_c01358{transform:matrix(0.223440,0.011183,-0.012497,0.249687,0,0);-ms-transform:matrix(0.223440,0.011183,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.223440,0.011183,-0.012497,0.249687,0,0);}
.m2b_c01358{transform:matrix(0.223475,0.011185,-0.012497,0.249687,0,0);-ms-transform:matrix(0.223475,0.011185,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.223475,0.011185,-0.012497,0.249687,0,0);}
.m2_c01358{transform:matrix(0.223732,0.011646,-0.012995,0.249662,0,0);-ms-transform:matrix(0.223732,0.011646,-0.012995,0.249662,0,0);-webkit-transform:matrix(0.223732,0.011646,-0.012995,0.249662,0,0);}
.md0_c01358{transform:matrix(0.223930,0.011208,-0.012497,0.249687,0,0);-ms-transform:matrix(0.223930,0.011208,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.223930,0.011208,-0.012497,0.249687,0,0);}
.me_c01358{transform:matrix(0.224045,0.011213,-0.012497,0.249687,0,0);-ms-transform:matrix(0.224045,0.011213,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.224045,0.011213,-0.012497,0.249687,0,0);}
.m10f_c01358{transform:matrix(0.224702,0.012609,-0.014006,0.249607,0,0);-ms-transform:matrix(0.224702,0.012609,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.224702,0.012609,-0.014006,0.249607,0,0);}
.m126_c01358{transform:matrix(0.224889,0.013520,-0.015003,0.249549,0,0);-ms-transform:matrix(0.224889,0.013520,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.224889,0.013520,-0.015003,0.249549,0,0);}
.m2d_c01358{transform:matrix(0.224908,0.011257,-0.012497,0.249687,0,0);-ms-transform:matrix(0.224908,0.011257,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.224908,0.011257,-0.012497,0.249687,0,0);}
.mde_c01358{transform:matrix(0.224978,0.011260,-0.012497,0.249687,0,0);-ms-transform:matrix(0.224978,0.011260,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.224978,0.011260,-0.012497,0.249687,0,0);}
.m13_c01358{transform:matrix(0.225033,0.011263,-0.012497,0.249687,0,0);-ms-transform:matrix(0.225033,0.011263,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.225033,0.011263,-0.012497,0.249687,0,0);}
.m86_c01358{transform:matrix(0.225111,0.012631,-0.014006,0.249607,0,0);-ms-transform:matrix(0.225111,0.012631,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.225111,0.012631,-0.014006,0.249607,0,0);}
.mc5_c01358{transform:matrix(0.225458,0.012877,-0.014255,0.249593,0,0);-ms-transform:matrix(0.225458,0.012877,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.225458,0.012877,-0.014255,0.249593,0,0);}
.md9_c01358{transform:matrix(0.225543,0.011288,-0.012497,0.249687,0,0);-ms-transform:matrix(0.225543,0.011288,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.225543,0.011288,-0.012497,0.249687,0,0);}
.m93_c01358{transform:matrix(0.225611,0.012195,-0.013494,0.249636,0,0);-ms-transform:matrix(0.225611,0.012195,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.225611,0.012195,-0.013494,0.249636,0,0);}
.m6_c01358{transform:matrix(0.226369,0.011783,-0.012995,0.249662,0,0);-ms-transform:matrix(0.226369,0.011783,-0.012995,0.249662,0,0);-webkit-transform:matrix(0.226369,0.011783,-0.012995,0.249662,0,0);}
.m23_c01358{transform:matrix(0.226746,0.011349,-0.012497,0.249687,0,0);-ms-transform:matrix(0.226746,0.011349,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.226746,0.011349,-0.012497,0.249687,0,0);}
.m96_c01358{transform:matrix(0.226774,0.012258,-0.013494,0.249636,0,0);-ms-transform:matrix(0.226774,0.012258,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.226774,0.012258,-0.013494,0.249636,0,0);}
.m1_c01358{transform:matrix(0.226978,0.011815,-0.012995,0.249662,0,0);-ms-transform:matrix(0.226978,0.011815,-0.012995,0.249662,0,0);-webkit-transform:matrix(0.226978,0.011815,-0.012995,0.249662,0,0);}
.ma8_c01358{transform:matrix(0.227578,0.012302,-0.013494,0.249636,0,0);-ms-transform:matrix(0.227578,0.012302,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.227578,0.012302,-0.013494,0.249636,0,0);}
.m24_c01358{transform:matrix(0.227980,0.011410,-0.012497,0.249687,0,0);-ms-transform:matrix(0.227980,0.011410,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.227980,0.011410,-0.012497,0.249687,0,0);}
.mab_c01358{transform:matrix(0.228422,0.012347,-0.013494,0.249636,0,0);-ms-transform:matrix(0.228422,0.012347,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.228422,0.012347,-0.013494,0.249636,0,0);}
.m27_c01358{transform:matrix(0.228569,0.011440,-0.012497,0.249687,0,0);-ms-transform:matrix(0.228569,0.011440,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.228569,0.011440,-0.012497,0.249687,0,0);}
.md_c01358{transform:matrix(0.228874,0.011455,-0.012497,0.249687,0,0);-ms-transform:matrix(0.228874,0.011455,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.228874,0.011455,-0.012497,0.249687,0,0);}
.mca_c01358{transform:matrix(0.229113,0.011467,-0.012497,0.249687,0,0);-ms-transform:matrix(0.229113,0.011467,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.229113,0.011467,-0.012497,0.249687,0,0);}
.ma7_c01358{transform:matrix(0.229365,0.012398,-0.013494,0.249636,0,0);-ms-transform:matrix(0.229365,0.012398,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.229365,0.012398,-0.013494,0.249636,0,0);}
.m5f_c01358{transform:matrix(0.229420,0.011023,-0.011998,0.249712,0,0);-ms-transform:matrix(0.229420,0.011023,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.229420,0.011023,-0.011998,0.249712,0,0);}
.m2a_c01358{transform:matrix(0.229822,0.011503,-0.012497,0.249687,0,0);-ms-transform:matrix(0.229822,0.011503,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.229822,0.011503,-0.012497,0.249687,0,0);}
.mc8_c01358{transform:matrix(0.229902,0.011507,-0.012497,0.249687,0,0);-ms-transform:matrix(0.229902,0.011507,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.229902,0.011507,-0.012497,0.249687,0,0);}
.m67_c01358{transform:matrix(0.230354,0.011068,-0.011998,0.249712,0,0);-ms-transform:matrix(0.230354,0.011068,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.230354,0.011068,-0.011998,0.249712,0,0);}
.m69_c01358{transform:matrix(0.230534,0.011077,-0.011998,0.249712,0,0);-ms-transform:matrix(0.230534,0.011077,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.230534,0.011077,-0.011998,0.249712,0,0);}
.md7_c01358{transform:matrix(0.230621,0.011543,-0.012497,0.249687,0,0);-ms-transform:matrix(0.230621,0.011543,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.230621,0.011543,-0.012497,0.249687,0,0);}
.m9b_c01358{transform:matrix(0.230723,0.012472,-0.013494,0.249636,0,0);-ms-transform:matrix(0.230723,0.012472,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.230723,0.012472,-0.013494,0.249636,0,0);}
.mb_c01358{transform:matrix(0.231390,0.011581,-0.012497,0.249687,0,0);-ms-transform:matrix(0.231390,0.011581,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.231390,0.011581,-0.012497,0.249687,0,0);}
.m0_c01358{transform:matrix(0.231650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231650,0.000000,0.000000,0.250000,0,0);}
.m30_c01358{transform:matrix(0.232282,0.011161,-0.011998,0.249712,0,0);-ms-transform:matrix(0.232282,0.011161,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.232282,0.011161,-0.011998,0.249712,0,0);}
.md2_c01358{transform:matrix(0.232694,0.011646,-0.012497,0.249687,0,0);-ms-transform:matrix(0.232694,0.011646,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.232694,0.011646,-0.012497,0.249687,0,0);}
.m63_c01358{transform:matrix(0.232707,0.011181,-0.011998,0.249712,0,0);-ms-transform:matrix(0.232707,0.011181,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.232707,0.011181,-0.011998,0.249712,0,0);}
.m109_c01358{transform:matrix(0.232998,0.013074,-0.014006,0.249607,0,0);-ms-transform:matrix(0.232998,0.013074,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.232998,0.013074,-0.014006,0.249607,0,0);}
.m37_c01358{transform:matrix(0.233610,0.011225,-0.011998,0.249712,0,0);-ms-transform:matrix(0.233610,0.011225,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.233610,0.011225,-0.011998,0.249712,0,0);}
.m12_c01358{transform:matrix(0.233678,0.011696,-0.012497,0.249687,0,0);-ms-transform:matrix(0.233678,0.011696,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.233678,0.011696,-0.012497,0.249687,0,0);}
.m7_c01358{transform:matrix(0.233752,0.011699,-0.012497,0.249687,0,0);-ms-transform:matrix(0.233752,0.011699,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.233752,0.011699,-0.012497,0.249687,0,0);}
.m112_c01358{transform:matrix(0.233792,0.013119,-0.014006,0.249607,0,0);-ms-transform:matrix(0.233792,0.013119,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.233792,0.013119,-0.014006,0.249607,0,0);}
.ma_c01358{transform:matrix(0.233842,0.011704,-0.012497,0.249687,0,0);-ms-transform:matrix(0.233842,0.011704,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.233842,0.011704,-0.012497,0.249687,0,0);}
.m2e_c01358{transform:matrix(0.234040,0.011245,-0.011998,0.249712,0,0);-ms-transform:matrix(0.234040,0.011245,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.234040,0.011245,-0.011998,0.249712,0,0);}
.md6_c01358{transform:matrix(0.234097,0.011717,-0.012497,0.249687,0,0);-ms-transform:matrix(0.234097,0.011717,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.234097,0.011717,-0.012497,0.249687,0,0);}
.m3b_c01358{transform:matrix(0.234266,0.013145,-0.014006,0.249607,0,0);-ms-transform:matrix(0.234266,0.013145,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.234266,0.013145,-0.014006,0.249607,0,0);}
.m92_c01358{transform:matrix(0.234732,0.012688,-0.013494,0.249636,0,0);-ms-transform:matrix(0.234732,0.012688,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.234732,0.012688,-0.013494,0.249636,0,0);}
.m3e_c01358{transform:matrix(0.235065,0.013190,-0.014006,0.249607,0,0);-ms-transform:matrix(0.235065,0.013190,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.235065,0.013190,-0.014006,0.249607,0,0);}
.m65_c01358{transform:matrix(0.235164,0.011299,-0.011998,0.249712,0,0);-ms-transform:matrix(0.235164,0.011299,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.235164,0.011299,-0.011998,0.249712,0,0);}
.m3a_c01358{transform:matrix(0.235205,0.013198,-0.014006,0.249607,0,0);-ms-transform:matrix(0.235205,0.013198,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.235205,0.013198,-0.014006,0.249607,0,0);}
.m98_c01358{transform:matrix(0.235446,0.012727,-0.013494,0.249636,0,0);-ms-transform:matrix(0.235446,0.012727,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.235446,0.012727,-0.013494,0.249636,0,0);}
.m4f_c01358{transform:matrix(0.235544,0.013217,-0.014006,0.249607,0,0);-ms-transform:matrix(0.235544,0.013217,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.235544,0.013217,-0.014006,0.249607,0,0);}
.m10_c01358{transform:matrix(0.235775,0.011801,-0.012497,0.249687,0,0);-ms-transform:matrix(0.235775,0.011801,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.235775,0.011801,-0.012497,0.249687,0,0);}
.m66_c01358{transform:matrix(0.236497,0.011363,-0.011998,0.249712,0,0);-ms-transform:matrix(0.236497,0.011363,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.236497,0.011363,-0.011998,0.249712,0,0);}
.m55_c01358{transform:matrix(0.236872,0.013291,-0.014006,0.249607,0,0);-ms-transform:matrix(0.236872,0.013291,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.236872,0.013291,-0.014006,0.249607,0,0);}
.m89_c01358{transform:matrix(0.237152,0.013307,-0.014006,0.249607,0,0);-ms-transform:matrix(0.237152,0.013307,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.237152,0.013307,-0.014006,0.249607,0,0);}
.m8d_c01358{transform:matrix(0.237179,0.012820,-0.013494,0.249636,0,0);-ms-transform:matrix(0.237179,0.012820,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.237179,0.012820,-0.013494,0.249636,0,0);}
.mf2_c01358{transform:matrix(0.237419,0.012358,-0.012995,0.249662,0,0);-ms-transform:matrix(0.237419,0.012358,-0.012995,0.249662,0,0);-webkit-transform:matrix(0.237419,0.012358,-0.012995,0.249662,0,0);}
.m10b_c01358{transform:matrix(0.237486,0.013326,-0.014006,0.249607,0,0);-ms-transform:matrix(0.237486,0.013326,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.237486,0.013326,-0.014006,0.249607,0,0);}
.m28_c01358{transform:matrix(0.237573,0.011891,-0.012497,0.249687,0,0);-ms-transform:matrix(0.237573,0.011891,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.237573,0.011891,-0.012497,0.249687,0,0);}
.m31_c01358{transform:matrix(0.237671,0.011420,-0.011998,0.249712,0,0);-ms-transform:matrix(0.237671,0.011420,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.237671,0.011420,-0.011998,0.249712,0,0);}
.md4_c01358{transform:matrix(0.237707,0.011897,-0.012497,0.249687,0,0);-ms-transform:matrix(0.237707,0.011897,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.237707,0.011897,-0.012497,0.249687,0,0);}
.m2c_c01358{transform:matrix(0.237977,0.011911,-0.012497,0.249687,0,0);-ms-transform:matrix(0.237977,0.011911,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.237977,0.011911,-0.012497,0.249687,0,0);}
.m9d_c01358{transform:matrix(0.238097,0.012870,-0.013494,0.249636,0,0);-ms-transform:matrix(0.238097,0.012870,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.238097,0.012870,-0.013494,0.249636,0,0);}
.m33_c01358{transform:matrix(0.238195,0.011445,-0.011998,0.249712,0,0);-ms-transform:matrix(0.238195,0.011445,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.238195,0.011445,-0.011998,0.249712,0,0);}
.m8_c01358{transform:matrix(0.238327,0.011928,-0.012497,0.249687,0,0);-ms-transform:matrix(0.238327,0.011928,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.238327,0.011928,-0.012497,0.249687,0,0);}
.m88_c01358{transform:matrix(0.238390,0.013377,-0.014006,0.249607,0,0);-ms-transform:matrix(0.238390,0.013377,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.238390,0.013377,-0.014006,0.249607,0,0);}
.med_c01358{transform:matrix(0.238442,0.012411,-0.012995,0.249662,0,0);-ms-transform:matrix(0.238442,0.012411,-0.012995,0.249662,0,0);-webkit-transform:matrix(0.238442,0.012411,-0.012995,0.249662,0,0);}
.mb6_c01358{transform:matrix(0.239035,0.013652,-0.014255,0.249593,0,0);-ms-transform:matrix(0.239035,0.013652,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.239035,0.013652,-0.014255,0.249593,0,0);}
.m64_c01358{transform:matrix(0.239049,0.011486,-0.011998,0.249712,0,0);-ms-transform:matrix(0.239049,0.011486,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.239049,0.011486,-0.011998,0.249712,0,0);}
.m34_c01358{transform:matrix(0.239154,0.011491,-0.011998,0.249712,0,0);-ms-transform:matrix(0.239154,0.011491,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.239154,0.011491,-0.011998,0.249712,0,0);}
.mf1_c01358{transform:matrix(0.239656,0.012475,-0.012995,0.249662,0,0);-ms-transform:matrix(0.239656,0.012475,-0.012995,0.249662,0,0);-webkit-transform:matrix(0.239656,0.012475,-0.012995,0.249662,0,0);}
.m5e_c01358{transform:matrix(0.239813,0.011523,-0.011998,0.249712,0,0);-ms-transform:matrix(0.239813,0.011523,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.239813,0.011523,-0.011998,0.249712,0,0);}
.mb1_c01358{transform:matrix(0.241227,0.013777,-0.014255,0.249593,0,0);-ms-transform:matrix(0.241227,0.013777,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.241227,0.013777,-0.014255,0.249593,0,0);}
.meb_c01358{transform:matrix(0.241233,0.012557,-0.012995,0.249662,0,0);-ms-transform:matrix(0.241233,0.012557,-0.012995,0.249662,0,0);-webkit-transform:matrix(0.241233,0.012557,-0.012995,0.249662,0,0);}
.m58_c01358{transform:matrix(0.241705,0.013563,-0.014006,0.249607,0,0);-ms-transform:matrix(0.241705,0.013563,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.241705,0.013563,-0.014006,0.249607,0,0);}
.mf3_c01358{transform:matrix(0.241962,0.012595,-0.012995,0.249662,0,0);-ms-transform:matrix(0.241962,0.012595,-0.012995,0.249662,0,0);-webkit-transform:matrix(0.241962,0.012595,-0.012995,0.249662,0,0);}
.ma0_c01358{transform:matrix(0.242206,0.013092,-0.013494,0.249636,0,0);-ms-transform:matrix(0.242206,0.013092,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.242206,0.013092,-0.013494,0.249636,0,0);}
.mb8_c01358{transform:matrix(0.242240,0.013835,-0.014255,0.249593,0,0);-ms-transform:matrix(0.242240,0.013835,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.242240,0.013835,-0.014255,0.249593,0,0);}
.m3_c01358{transform:matrix(0.242252,0.012610,-0.012995,0.249662,0,0);-ms-transform:matrix(0.242252,0.012610,-0.012995,0.249662,0,0);-webkit-transform:matrix(0.242252,0.012610,-0.012995,0.249662,0,0);}
.m1d_c01358{transform:matrix(0.242307,0.012127,-0.012497,0.249687,0,0);-ms-transform:matrix(0.242307,0.012127,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.242307,0.012127,-0.012497,0.249687,0,0);}
.m60_c01358{transform:matrix(0.242310,0.011643,-0.011998,0.249712,0,0);-ms-transform:matrix(0.242310,0.011643,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.242310,0.011643,-0.011998,0.249712,0,0);}
.m6c_c01358{transform:matrix(0.242420,0.011648,-0.011998,0.249712,0,0);-ms-transform:matrix(0.242420,0.011648,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.242420,0.011648,-0.011998,0.249712,0,0);}
.m91_c01358{transform:matrix(0.242436,0.013105,-0.013494,0.249636,0,0);-ms-transform:matrix(0.242436,0.013105,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.242436,0.013105,-0.013494,0.249636,0,0);}
.m10c_c01358{transform:matrix(0.242533,0.013609,-0.014006,0.249607,0,0);-ms-transform:matrix(0.242533,0.013609,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.242533,0.013609,-0.014006,0.249607,0,0);}
.m35_c01358{transform:matrix(0.242950,0.011673,-0.011998,0.249712,0,0);-ms-transform:matrix(0.242950,0.011673,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.242950,0.011673,-0.011998,0.249712,0,0);}
.mae_c01358{transform:matrix(0.243150,0.013143,-0.013494,0.249636,0,0);-ms-transform:matrix(0.243150,0.013143,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.243150,0.013143,-0.013494,0.249636,0,0);}
.m14_c01358{transform:matrix(0.243186,0.012171,-0.012497,0.249687,0,0);-ms-transform:matrix(0.243186,0.012171,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.243186,0.012171,-0.012497,0.249687,0,0);}
.mcb_c01358{transform:matrix(0.243300,0.012177,-0.012497,0.249687,0,0);-ms-transform:matrix(0.243300,0.012177,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.243300,0.012177,-0.012497,0.249687,0,0);}
.maa_c01358{transform:matrix(0.243639,0.013170,-0.013494,0.249636,0,0);-ms-transform:matrix(0.243639,0.013170,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.243639,0.013170,-0.013494,0.249636,0,0);}
.m81_c01358{transform:matrix(0.243767,0.013678,-0.014006,0.249607,0,0);-ms-transform:matrix(0.243767,0.013678,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.243767,0.013678,-0.014006,0.249607,0,0);}
.m83_c01358{transform:matrix(0.244046,0.013694,-0.014006,0.249607,0,0);-ms-transform:matrix(0.244046,0.013694,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.244046,0.013694,-0.014006,0.249607,0,0);}
.m7f_c01358{transform:matrix(0.244191,0.013702,-0.014006,0.249607,0,0);-ms-transform:matrix(0.244191,0.013702,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.244191,0.013702,-0.014006,0.249607,0,0);}
.mce_c01358{transform:matrix(0.244739,0.012249,-0.012497,0.249687,0,0);-ms-transform:matrix(0.244739,0.012249,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.244739,0.012249,-0.012497,0.249687,0,0);}
.m2f_c01358{transform:matrix(0.245402,0.011791,-0.011998,0.249712,0,0);-ms-transform:matrix(0.245402,0.011791,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.245402,0.011791,-0.011998,0.249712,0,0);}
.m8c_c01358{transform:matrix(0.245656,0.013279,-0.013494,0.249636,0,0);-ms-transform:matrix(0.245656,0.013279,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.245656,0.013279,-0.013494,0.249636,0,0);}
.mf0_c01358{transform:matrix(0.246711,0.012842,-0.012995,0.249662,0,0);-ms-transform:matrix(0.246711,0.012842,-0.012995,0.249662,0,0);-webkit-transform:matrix(0.246711,0.012842,-0.012995,0.249662,0,0);}
.m54_c01358{transform:matrix(0.247161,0.013869,-0.014006,0.249607,0,0);-ms-transform:matrix(0.247161,0.013869,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.247161,0.013869,-0.014006,0.249607,0,0);}
.m8a_c01358{transform:matrix(0.247331,0.013878,-0.014006,0.249607,0,0);-ms-transform:matrix(0.247331,0.013878,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.247331,0.013878,-0.014006,0.249607,0,0);}
.m1b_c01358{transform:matrix(0.247550,0.012390,-0.012497,0.249687,0,0);-ms-transform:matrix(0.247550,0.012390,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.247550,0.012390,-0.012497,0.249687,0,0);}
.ma2_c01358{transform:matrix(0.247983,0.013404,-0.013494,0.249636,0,0);-ms-transform:matrix(0.247983,0.013404,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.247983,0.013404,-0.013494,0.249636,0,0);}
.m6d_c01358{transform:matrix(0.247989,0.011915,-0.011998,0.249712,0,0);-ms-transform:matrix(0.247989,0.011915,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.247989,0.011915,-0.011998,0.249712,0,0);}
.m73_c01358{transform:matrix(0.248698,0.011949,-0.011998,0.249712,0,0);-ms-transform:matrix(0.248698,0.011949,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.248698,0.011949,-0.011998,0.249712,0,0);}
.m53_c01358{transform:matrix(0.248709,0.013956,-0.014006,0.249607,0,0);-ms-transform:matrix(0.248709,0.013956,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.248709,0.013956,-0.014006,0.249607,0,0);}
.m1a_c01358{transform:matrix(0.249158,0.012470,-0.012497,0.249687,0,0);-ms-transform:matrix(0.249158,0.012470,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.249158,0.012470,-0.012497,0.249687,0,0);}
.m4_c01358{transform:matrix(0.249447,0.012984,-0.012995,0.249662,0,0);-ms-transform:matrix(0.249447,0.012984,-0.012995,0.249662,0,0);-webkit-transform:matrix(0.249447,0.012984,-0.012995,0.249662,0,0);}
.m84_c01358{transform:matrix(0.250306,0.014045,-0.014006,0.249607,0,0);-ms-transform:matrix(0.250306,0.014045,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.250306,0.014045,-0.014006,0.249607,0,0);}
.me8_c01358{transform:matrix(0.250391,0.013033,-0.012995,0.249662,0,0);-ms-transform:matrix(0.250391,0.013033,-0.012995,0.249662,0,0);-webkit-transform:matrix(0.250391,0.013033,-0.012995,0.249662,0,0);}
.m94_c01358{transform:matrix(0.250579,0.013545,-0.013494,0.249636,0,0);-ms-transform:matrix(0.250579,0.013545,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.250579,0.013545,-0.013494,0.249636,0,0);}
.m6f_c01358{transform:matrix(0.251335,0.012076,-0.011998,0.249712,0,0);-ms-transform:matrix(0.251335,0.012076,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.251335,0.012076,-0.011998,0.249712,0,0);}
.m85_c01358{transform:matrix(0.251385,0.014106,-0.014006,0.249607,0,0);-ms-transform:matrix(0.251385,0.014106,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.251385,0.014106,-0.014006,0.249607,0,0);}
.m70_c01358{transform:matrix(0.251715,0.012094,-0.011998,0.249712,0,0);-ms-transform:matrix(0.251715,0.012094,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.251715,0.012094,-0.011998,0.249712,0,0);}
.m71_c01358{transform:matrix(0.253268,0.012169,-0.011998,0.249712,0,0);-ms-transform:matrix(0.253268,0.012169,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.253268,0.012169,-0.011998,0.249712,0,0);}
.m6b_c01358{transform:matrix(0.253518,0.012181,-0.011998,0.249712,0,0);-ms-transform:matrix(0.253518,0.012181,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.253518,0.012181,-0.011998,0.249712,0,0);}
.m9e_c01358{transform:matrix(0.253874,0.013723,-0.013494,0.249636,0,0);-ms-transform:matrix(0.253874,0.013723,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.253874,0.013723,-0.013494,0.249636,0,0);}
.m18_c01358{transform:matrix(0.253877,0.012707,-0.012497,0.249687,0,0);-ms-transform:matrix(0.253877,0.012707,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.253877,0.012707,-0.012497,0.249687,0,0);}
.m8e_c01358{transform:matrix(0.254229,0.013742,-0.013494,0.249636,0,0);-ms-transform:matrix(0.254229,0.013742,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.254229,0.013742,-0.013494,0.249636,0,0);}
.m44_c01358{transform:matrix(0.254345,0.014272,-0.014006,0.249607,0,0);-ms-transform:matrix(0.254345,0.014272,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.254345,0.014272,-0.014006,0.249607,0,0);}
.m99_c01358{transform:matrix(0.254743,0.013770,-0.013494,0.249636,0,0);-ms-transform:matrix(0.254743,0.013770,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.254743,0.013770,-0.013494,0.249636,0,0);}
.mb4_c01358{transform:matrix(0.254865,0.014556,-0.014255,0.249593,0,0);-ms-transform:matrix(0.254865,0.014556,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.254865,0.014556,-0.014255,0.249593,0,0);}
.m41_c01358{transform:matrix(0.255493,0.014336,-0.014006,0.249607,0,0);-ms-transform:matrix(0.255493,0.014336,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.255493,0.014336,-0.014006,0.249607,0,0);}
.m52_c01358{transform:matrix(0.256222,0.014377,-0.014006,0.249607,0,0);-ms-transform:matrix(0.256222,0.014377,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.256222,0.014377,-0.014006,0.249607,0,0);}
.m6a_c01358{transform:matrix(0.256814,0.012339,-0.011998,0.249712,0,0);-ms-transform:matrix(0.256814,0.012339,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.256814,0.012339,-0.011998,0.249712,0,0);}
.m50_c01358{transform:matrix(0.256851,0.014412,-0.014006,0.249607,0,0);-ms-transform:matrix(0.256851,0.014412,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.256851,0.014412,-0.014006,0.249607,0,0);}
.m82_c01358{transform:matrix(0.257141,0.014429,-0.014006,0.249607,0,0);-ms-transform:matrix(0.257141,0.014429,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.257141,0.014429,-0.014006,0.249607,0,0);}
.mee_c01358{transform:matrix(0.257227,0.013389,-0.012995,0.249662,0,0);-ms-transform:matrix(0.257227,0.013389,-0.012995,0.249662,0,0);-webkit-transform:matrix(0.257227,0.013389,-0.012995,0.249662,0,0);}
.m46_c01358{transform:matrix(0.257665,0.014458,-0.014006,0.249607,0,0);-ms-transform:matrix(0.257665,0.014458,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.257665,0.014458,-0.014006,0.249607,0,0);}
.m3d_c01358{transform:matrix(0.258379,0.014498,-0.014006,0.249607,0,0);-ms-transform:matrix(0.258379,0.014498,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.258379,0.014498,-0.014006,0.249607,0,0);}
.m8f_c01358{transform:matrix(0.259022,0.014001,-0.013494,0.249636,0,0);-ms-transform:matrix(0.259022,0.014001,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.259022,0.014001,-0.013494,0.249636,0,0);}
.m97_c01358{transform:matrix(0.259112,0.014006,-0.013494,0.249636,0,0);-ms-transform:matrix(0.259112,0.014006,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.259112,0.014006,-0.013494,0.249636,0,0);}
.m4b_c01358{transform:matrix(0.260316,0.014607,-0.014006,0.249607,0,0);-ms-transform:matrix(0.260316,0.014607,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.260316,0.014607,-0.014006,0.249607,0,0);}
.m15_c01358{transform:matrix(0.260519,0.013039,-0.012497,0.249687,0,0);-ms-transform:matrix(0.260519,0.013039,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.260519,0.013039,-0.012497,0.249687,0,0);}
.m9a_c01358{transform:matrix(0.261164,0.014117,-0.013494,0.249636,0,0);-ms-transform:matrix(0.261164,0.014117,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.261164,0.014117,-0.013494,0.249636,0,0);}
.m3c_c01358{transform:matrix(0.261688,0.014684,-0.014006,0.249607,0,0);-ms-transform:matrix(0.261688,0.014684,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.261688,0.014684,-0.014006,0.249607,0,0);}
.m4a_c01358{transform:matrix(0.262153,0.014710,-0.014006,0.249607,0,0);-ms-transform:matrix(0.262153,0.014710,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.262153,0.014710,-0.014006,0.249607,0,0);}
.m4e_c01358{transform:matrix(0.262757,0.014744,-0.014006,0.249607,0,0);-ms-transform:matrix(0.262757,0.014744,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.262757,0.014744,-0.014006,0.249607,0,0);}
.mea_c01358{transform:matrix(0.263618,0.013722,-0.012995,0.249662,0,0);-ms-transform:matrix(0.263618,0.013722,-0.012995,0.249662,0,0);-webkit-transform:matrix(0.263618,0.013722,-0.012995,0.249662,0,0);}
.m43_c01358{transform:matrix(0.263935,0.014810,-0.014006,0.249607,0,0);-ms-transform:matrix(0.263935,0.014810,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.263935,0.014810,-0.014006,0.249607,0,0);}
.mb0_c01358{transform:matrix(0.263965,0.015076,-0.014255,0.249593,0,0);-ms-transform:matrix(0.263965,0.015076,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.263965,0.015076,-0.014255,0.249593,0,0);}
.m4c_c01358{transform:matrix(0.264020,0.014815,-0.014006,0.249607,0,0);-ms-transform:matrix(0.264020,0.014815,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.264020,0.014815,-0.014006,0.249607,0,0);}
.m48_c01358{transform:matrix(0.264374,0.014835,-0.014006,0.249607,0,0);-ms-transform:matrix(0.264374,0.014835,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.264374,0.014835,-0.014006,0.249607,0,0);}
.mb7_c01358{transform:matrix(0.264439,0.015103,-0.014255,0.249593,0,0);-ms-transform:matrix(0.264439,0.015103,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.264439,0.015103,-0.014255,0.249593,0,0);}
.m45_c01358{transform:matrix(0.264454,0.014839,-0.014006,0.249607,0,0);-ms-transform:matrix(0.264454,0.014839,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.264454,0.014839,-0.014006,0.249607,0,0);}
.m4d_c01358{transform:matrix(0.264903,0.014864,-0.014006,0.249607,0,0);-ms-transform:matrix(0.264903,0.014864,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.264903,0.014864,-0.014006,0.249607,0,0);}
.mbb_c01358{transform:matrix(0.265437,0.015160,-0.014255,0.249593,0,0);-ms-transform:matrix(0.265437,0.015160,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.265437,0.015160,-0.014255,0.249593,0,0);}
.m5_c01358{transform:matrix(0.265905,0.013841,-0.012995,0.249662,0,0);-ms-transform:matrix(0.265905,0.013841,-0.012995,0.249662,0,0);-webkit-transform:matrix(0.265905,0.013841,-0.012995,0.249662,0,0);}
.m56_c01358{transform:matrix(0.266022,0.014927,-0.014006,0.249607,0,0);-ms-transform:matrix(0.266022,0.014927,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.266022,0.014927,-0.014006,0.249607,0,0);}
.m7e_c01358{transform:matrix(0.266141,0.014934,-0.014006,0.249607,0,0);-ms-transform:matrix(0.266141,0.014934,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.266141,0.014934,-0.014006,0.249607,0,0);}
.mec_c01358{transform:matrix(0.266429,0.013868,-0.012995,0.249662,0,0);-ms-transform:matrix(0.266429,0.013868,-0.012995,0.249662,0,0);-webkit-transform:matrix(0.266429,0.013868,-0.012995,0.249662,0,0);}
.mb2_c01358{transform:matrix(0.266820,0.015239,-0.014255,0.249593,0,0);-ms-transform:matrix(0.266820,0.015239,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.266820,0.015239,-0.014255,0.249593,0,0);}
.m59_c01358{transform:matrix(0.266935,0.014978,-0.014006,0.249607,0,0);-ms-transform:matrix(0.266935,0.014978,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.266935,0.014978,-0.014006,0.249607,0,0);}
.m9c_c01358{transform:matrix(0.267504,0.014460,-0.013494,0.249636,0,0);-ms-transform:matrix(0.267504,0.014460,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.267504,0.014460,-0.013494,0.249636,0,0);}
.m49_c01358{transform:matrix(0.267889,0.015032,-0.014006,0.249607,0,0);-ms-transform:matrix(0.267889,0.015032,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.267889,0.015032,-0.014006,0.249607,0,0);}
.ma3_c01358{transform:matrix(0.268858,0.014533,-0.013494,0.249636,0,0);-ms-transform:matrix(0.268858,0.014533,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.268858,0.014533,-0.013494,0.249636,0,0);}
.m5a_c01358{transform:matrix(0.269236,0.015107,-0.014006,0.249607,0,0);-ms-transform:matrix(0.269236,0.015107,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.269236,0.015107,-0.014006,0.249607,0,0);}
.m5b_c01358{transform:matrix(0.270250,0.015164,-0.014006,0.249607,0,0);-ms-transform:matrix(0.270250,0.015164,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.270250,0.015164,-0.014006,0.249607,0,0);}
.maf_c01358{transform:matrix(0.272481,0.015563,-0.014255,0.249593,0,0);-ms-transform:matrix(0.272481,0.015563,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.272481,0.015563,-0.014255,0.249593,0,0);}
.m47_c01358{transform:matrix(0.272711,0.015302,-0.014006,0.249607,0,0);-ms-transform:matrix(0.272711,0.015302,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.272711,0.015302,-0.014006,0.249607,0,0);}
.mb5_c01358{transform:matrix(0.273774,0.015636,-0.014255,0.249593,0,0);-ms-transform:matrix(0.273774,0.015636,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.273774,0.015636,-0.014255,0.249593,0,0);}
.mb3_c01358{transform:matrix(0.277722,0.015862,-0.014255,0.249593,0,0);-ms-transform:matrix(0.277722,0.015862,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.277722,0.015862,-0.014255,0.249593,0,0);}
.m51_c01358{transform:matrix(0.281437,0.015792,-0.014006,0.249607,0,0);-ms-transform:matrix(0.281437,0.015792,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.281437,0.015792,-0.014006,0.249607,0,0);}
.mc6_c01358{transform:matrix(0.283523,0.016193,-0.014255,0.249593,0,0);-ms-transform:matrix(0.283523,0.016193,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.283523,0.016193,-0.014255,0.249593,0,0);}
.ma1_c01358{transform:matrix(0.283985,0.015351,-0.013494,0.249636,0,0);-ms-transform:matrix(0.283985,0.015351,-0.013494,0.249636,0,0);-webkit-transform:matrix(0.283985,0.015351,-0.013494,0.249636,0,0);}
.m11_c01358{transform:matrix(0.292928,0.014661,-0.012497,0.249687,0,0);-ms-transform:matrix(0.292928,0.014661,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.292928,0.014661,-0.012497,0.249687,0,0);}
.m120_c01358{transform:matrix(0.297673,0.017896,-0.015003,0.249549,0,0);-ms-transform:matrix(0.297673,0.017896,-0.015003,0.249549,0,0);-webkit-transform:matrix(0.297673,0.017896,-0.015003,0.249549,0,0);}
.md8_c01358{transform:matrix(0.308858,0.015458,-0.012497,0.249687,0,0);-ms-transform:matrix(0.308858,0.015458,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.308858,0.015458,-0.012497,0.249687,0,0);}
.m113_c01358{transform:matrix(0.314365,0.017640,-0.014006,0.249607,0,0);-ms-transform:matrix(0.314365,0.017640,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.314365,0.017640,-0.014006,0.249607,0,0);}
.m68_c01358{transform:matrix(0.320985,0.015423,-0.011998,0.249712,0,0);-ms-transform:matrix(0.320985,0.015423,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.320985,0.015423,-0.011998,0.249712,0,0);}
.m3f_c01358{transform:matrix(0.330795,0.018562,-0.014006,0.249607,0,0);-ms-transform:matrix(0.330795,0.018562,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.330795,0.018562,-0.014006,0.249607,0,0);}
.mb9_c01358{transform:matrix(0.339022,0.019363,-0.014255,0.249593,0,0);-ms-transform:matrix(0.339022,0.019363,-0.014255,0.249593,0,0);-webkit-transform:matrix(0.339022,0.019363,-0.014255,0.249593,0,0);}
.m119_c01358{transform:matrix(0.393017,0.022053,-0.014006,0.249607,0,0);-ms-transform:matrix(0.393017,0.022053,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.393017,0.022053,-0.014006,0.249607,0,0);}
.m39_c01358{transform:matrix(0.397772,0.017918,-0.011250,0.249747,0,0);-ms-transform:matrix(0.397772,0.017918,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.397772,0.017918,-0.011250,0.249747,0,0);}
.m11a_c01358{transform:matrix(0.511540,0.028704,-0.014006,0.249607,0,0);-ms-transform:matrix(0.511540,0.028704,-0.014006,0.249607,0,0);-webkit-transform:matrix(0.511540,0.028704,-0.014006,0.249607,0,0);}
.m1f_c01358{transform:matrix(0.648983,0.032482,-0.012497,0.249687,0,0);-ms-transform:matrix(0.648983,0.032482,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.648983,0.032482,-0.012497,0.249687,0,0);}
.mf5_c01358{transform:matrix(4.969173,0.258656,-0.012995,0.249662,0,0);-ms-transform:matrix(4.969173,0.258656,-0.012995,0.249662,0,0);-webkit-transform:matrix(4.969173,0.258656,-0.012995,0.249662,0,0);}
.v0_c01358{vertical-align:0.000000px;}
.ls0_c01358{letter-spacing:0.000000px;}
.sc__c01358{text-shadow:none;}
.sc0_c01358{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__c01358{-webkit-text-stroke:0px transparent;}
.sc0_c01358{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01358{word-spacing:0.000000px;}
.fc0_c01358{color:transparent;}
.fs0_c01358{font-size:24.000000px;}
.fsf_c01358{font-size:24.008459px;}
.fs7_c01358{font-size:71.969033px;}
.fsc_c01358{font-size:71.973103px;}
.fs5_c01358{font-size:72.000936px;}
.fs6_c01358{font-size:77.966453px;}
.fs8_c01358{font-size:78.011894px;}
.fs3_c01358{font-size:78.019537px;}
.fs1_c01358{font-size:78.027490px;}
.fsa_c01358{font-size:78.035755px;}
.fs12_c01358{font-size:83.963872px;}
.fs4_c01358{font-size:84.012809px;}
.fs2_c01358{font-size:84.021039px;}
.fsb_c01358{font-size:84.038505px;}
.fs13_c01358{font-size:89.961292px;}
.fsd_c01358{font-size:89.966379px;}
.fs14_c01358{font-size:89.982178px;}
.fse_c01358{font-size:90.022542px;}
.fs9_c01358{font-size:95.958711px;}
.fs10_c01358{font-size:102.035949px;}
.fs11_c01358{font-size:119.976238px;}
.y0_c01358{bottom:0.000000px;}
.y129_c01358{bottom:36.134730px;}
.y128_c01358{bottom:41.919750px;}
.y127_c01358{bottom:44.638380px;}
.y126_c01358{bottom:48.013560px;}
.y125_c01358{bottom:51.272640px;}
.y124_c01358{bottom:53.266500px;}
.y123_c01358{bottom:54.562770px;}
.y122_c01358{bottom:57.213540px;}
.y121_c01358{bottom:59.110380px;}
.y120_c01358{bottom:63.800280px;}
.y11f_c01358{bottom:68.176440px;}
.y11e_c01358{bottom:71.595000px;}
.y11d_c01358{bottom:72.082542px;}
.y11c_c01358{bottom:77.018016px;}
.y11b_c01358{bottom:86.498187px;}
.y115_c01358{bottom:89.706456px;}
.y11a_c01358{bottom:91.488009px;}
.y119_c01358{bottom:93.340971px;}
.y114_c01358{bottom:93.964500px;}
.y113_c01358{bottom:98.175672px;}
.y118_c01358{bottom:99.552027px;}
.y112_c01358{bottom:100.068612px;}
.y111_c01358{bottom:103.747140px;}
.y117_c01358{bottom:104.557809px;}
.y110_c01358{bottom:106.845312px;}
.y116_c01358{bottom:107.573892px;}
.y10f_c01358{bottom:108.683820px;}
.y10e_c01358{bottom:116.648196px;}
.y10d_c01358{bottom:121.524396px;}
.y10c_c01358{bottom:123.307464px;}
.y10b_c01358{bottom:125.065500px;}
.y10a_c01358{bottom:137.269470px;}
.y109_c01358{bottom:140.548260px;}
.y108_c01358{bottom:143.139810px;}
.y107_c01358{bottom:145.847460px;}
.y106_c01358{bottom:153.089400px;}
.y105_c01358{bottom:159.533850px;}
.y104_c01358{bottom:162.867000px;}
.y103_c01358{bottom:174.162305px;}
.y102_c01358{bottom:176.877155px;}
.y101_c01358{bottom:179.636058px;}
.y100_c01358{bottom:181.271165px;}
.yff_c01358{bottom:182.369160px;}
.yfe_c01358{bottom:184.018836px;}
.yfd_c01358{bottom:186.183237px;}
.yfc_c01358{bottom:190.036626px;}
.yfb_c01358{bottom:193.857021px;}
.yfa_c01358{bottom:196.577487px;}
.yf9_c01358{bottom:204.187421px;}
.yf6_c01358{bottom:209.532510px;}
.yf5_c01358{bottom:211.834680px;}
.yf4_c01358{bottom:213.004446px;}
.yf8_c01358{bottom:213.151877px;}
.yf3_c01358{bottom:215.263092px;}
.yf2_c01358{bottom:218.681910px;}
.yf7_c01358{bottom:220.049709px;}
.yf1_c01358{bottom:220.387380px;}
.yf0_c01358{bottom:221.526024px;}
.yef_c01358{bottom:224.906388px;}
.yee_c01358{bottom:232.335030px;}
.yed_c01358{bottom:235.689732px;}
.yec_c01358{bottom:237.637782px;}
.yeb_c01358{bottom:238.513800px;}
.yea_c01358{bottom:243.576000px;}
.ye9_c01358{bottom:245.694795px;}
.ye8_c01358{bottom:246.833918px;}
.ye7_c01358{bottom:249.521522px;}
.ye6_c01358{bottom:251.089353px;}
.ye5_c01358{bottom:254.367595px;}
.ye4_c01358{bottom:257.535735px;}
.ye3_c01358{bottom:260.724874px;}
.ye2_c01358{bottom:263.397329px;}
.ye1_c01358{bottom:265.584449px;}
.ye0_c01358{bottom:270.419422px;}
.ydf_c01358{bottom:272.563641px;}
.ydb_c01358{bottom:273.294652px;}
.yde_c01358{bottom:275.236695px;}
.ydd_c01358{bottom:276.811802px;}
.ydc_c01358{bottom:278.382258px;}
.yda_c01358{bottom:279.762630px;}
.yd9_c01358{bottom:283.252922px;}
.yd8_c01358{bottom:285.021129px;}
.yd7_c01358{bottom:288.986977px;}
.yd6_c01358{bottom:290.652213px;}
.yd5_c01358{bottom:295.744218px;}
.yd4_c01358{bottom:298.080528px;}
.yd3_c01358{bottom:302.055750px;}
.yd2_c01358{bottom:304.335138px;}
.yd1_c01358{bottom:307.179029px;}
.yd0_c01358{bottom:308.904638px;}
.ycf_c01358{bottom:310.943400px;}
.yce_c01358{bottom:314.316900px;}
.ycd_c01358{bottom:333.926775px;}
.ycc_c01358{bottom:340.117575px;}
.ycb_c01358{bottom:343.415550px;}
.yca_c01358{bottom:344.500275px;}
.yc9_c01358{bottom:347.791500px;}
.yc8_c01358{bottom:350.491500px;}
.y38_c01358{bottom:351.472608px;}
.y37_c01358{bottom:353.104344px;}
.y36_c01358{bottom:359.932752px;}
.y35_c01358{bottom:365.152824px;}
.y34_c01358{bottom:369.930312px;}
.y33_c01358{bottom:372.019464px;}
.y32_c01358{bottom:373.047120px;}
.y31_c01358{bottom:376.757496px;}
.y30_c01358{bottom:380.553480px;}
.y2f_c01358{bottom:383.454000px;}
.yc7_c01358{bottom:385.154787px;}
.yc6_c01358{bottom:389.523282px;}
.yc5_c01358{bottom:391.239508px;}
.yc4_c01358{bottom:392.897043px;}
.yc3_c01358{bottom:394.570564px;}
.yc2_c01358{bottom:396.708324px;}
.yc1_c01358{bottom:400.094481px;}
.yc0_c01358{bottom:405.199686px;}
.ybf_c01358{bottom:409.631062px;}
.ybe_c01358{bottom:413.021152px;}
.ybd_c01358{bottom:416.307451px;}
.yba_c01358{bottom:417.625329px;}
.ybc_c01358{bottom:418.006707px;}
.yb9_c01358{bottom:420.192124px;}
.ybb_c01358{bottom:420.718009px;}
.yb8_c01358{bottom:422.216850px;}
.yb7_c01358{bottom:424.072542px;}
.yb6_c01358{bottom:429.080619px;}
.yb5_c01358{bottom:432.156225px;}
.yb4_c01358{bottom:437.761348px;}
.yb3_c01358{bottom:441.513431px;}
.yb2_c01358{bottom:443.398962px;}
.yb1_c01358{bottom:446.553570px;}
.yb0_c01358{bottom:451.483500px;}
.y7_c01358{bottom:474.088956px;}
.y6_c01358{bottom:481.650510px;}
.y5_c01358{bottom:485.078922px;}
.y4_c01358{bottom:486.751788px;}
.y3_c01358{bottom:488.435808px;}
.y2_c01358{bottom:490.675500px;}
.yaf_c01358{bottom:493.119654px;}
.yae_c01358{bottom:495.461728px;}
.yad_c01358{bottom:497.265639px;}
.yac_c01358{bottom:500.706317px;}
.yab_c01358{bottom:508.794207px;}
.yaa_c01358{bottom:510.550611px;}
.ya9_c01358{bottom:514.526334px;}
.ya8_c01358{bottom:519.207526px;}
.ya7_c01358{bottom:520.977620px;}
.ya6_c01358{bottom:523.240679px;}
.ya4_c01358{bottom:525.890756px;}
.ya5_c01358{bottom:527.314614px;}
.ya3_c01358{bottom:529.370273px;}
.ya2_c01358{bottom:531.291997px;}
.ya1_c01358{bottom:534.863206px;}
.ya0_c01358{bottom:536.591746px;}
.y9f_c01358{bottom:543.594116px;}
.y9e_c01358{bottom:544.896191px;}
.y9d_c01358{bottom:548.485868px;}
.y9c_c01358{bottom:550.236034px;}
.y9b_c01358{bottom:556.166531px;}
.y9a_c01358{bottom:562.519280px;}
.y99_c01358{bottom:563.773322px;}
.y98_c01358{bottom:564.950049px;}
.y97_c01358{bottom:566.703051px;}
.y96_c01358{bottom:568.982877px;}
.y95_c01358{bottom:573.181674px;}
.y94_c01358{bottom:574.962540px;}
.y93_c01358{bottom:578.420025px;}
.y92_c01358{bottom:580.277679px;}
.y91_c01358{bottom:582.018450px;}
.y90_c01358{bottom:588.546645px;}
.y8f_c01358{bottom:593.315601px;}
.y8e_c01358{bottom:595.038228px;}
.y2e_c01358{bottom:597.738829px;}
.y8d_c01358{bottom:598.583841px;}
.y8c_c01358{bottom:600.247500px;}
.y2d_c01358{bottom:601.181947px;}
.y2c_c01358{bottom:604.589817px;}
.y2b_c01358{bottom:605.742298px;}
.y2a_c01358{bottom:609.017647px;}
.y29_c01358{bottom:614.252746px;}
.y28_c01358{bottom:617.682589px;}
.y27_c01358{bottom:619.397473px;}
.y26_c01358{bottom:620.514555px;}
.y25_c01358{bottom:623.939298px;}
.y24_c01358{bottom:625.686880px;}
.y23_c01358{bottom:627.400414px;}
.y22_c01358{bottom:631.924465px;}
.y21_c01358{bottom:633.617376px;}
.y1f_c01358{bottom:633.852075px;}
.y20_c01358{bottom:636.993447px;}
.y1e_c01358{bottom:638.328450px;}
.y1d_c01358{bottom:639.961950px;}
.y1c_c01358{bottom:642.680850px;}
.y1b_c01358{bottom:645.976800px;}
.y1a_c01358{bottom:647.051400px;}
.y19_c01358{bottom:651.977475px;}
.y18_c01358{bottom:653.579250px;}
.y17_c01358{bottom:655.254525px;}
.y16_c01358{bottom:661.288875px;}
.y15_c01358{bottom:663.985500px;}
.y14_c01358{bottom:665.658750px;}
.y8b_c01358{bottom:666.962133px;}
.y13_c01358{bottom:668.792925px;}
.y8a_c01358{bottom:668.816451px;}
.y89_c01358{bottom:670.556904px;}
.y12_c01358{bottom:671.232000px;}
.y88_c01358{bottom:672.315333px;}
.y87_c01358{bottom:674.652327px;}
.y86_c01358{bottom:680.572065px;}
.y85_c01358{bottom:682.950402px;}
.y84_c01358{bottom:687.050697px;}
.y83_c01358{bottom:694.188885px;}
.y82_c01358{bottom:697.744749px;}
.y81_c01358{bottom:699.471999px;}
.y80_c01358{bottom:703.010964px;}
.y7f_c01358{bottom:704.228154px;}
.y7e_c01358{bottom:706.879764px;}
.y7d_c01358{bottom:711.319080px;}
.y7c_c01358{bottom:713.124744px;}
.y7b_c01358{bottom:719.210376px;}
.y7a_c01358{bottom:721.115160px;}
.y79_c01358{bottom:723.407184px;}
.y78_c01358{bottom:727.186428px;}
.y77_c01358{bottom:730.207404px;}
.y76_c01358{bottom:735.795000px;}
.y1_c01358{bottom:807.300000px;}
.y11_c01358{bottom:850.447200px;}
.y10_c01358{bottom:852.052350px;}
.yf_c01358{bottom:855.864075px;}
.ye_c01358{bottom:859.217325px;}
.yd_c01358{bottom:860.844075px;}
.yc_c01358{bottom:865.213950px;}
.yb_c01358{bottom:869.625675px;}
.ya_c01358{bottom:871.287450px;}
.y9_c01358{bottom:876.133950px;}
.y8_c01358{bottom:881.044500px;}
.y75_c01358{bottom:882.014925px;}
.y74_c01358{bottom:885.850284px;}
.y73_c01358{bottom:886.834173px;}
.y72_c01358{bottom:892.465572px;}
.y71_c01358{bottom:895.749037px;}
.y70_c01358{bottom:899.570140px;}
.y6f_c01358{bottom:901.206179px;}
.y6e_c01358{bottom:904.948613px;}
.y6d_c01358{bottom:907.769496px;}
.y6c_c01358{bottom:911.589951px;}
.y6b_c01358{bottom:913.437961px;}
.y6a_c01358{bottom:915.869748px;}
.y69_c01358{bottom:918.880428px;}
.y68_c01358{bottom:921.650700px;}
.y67_c01358{bottom:926.373180px;}
.y66_c01358{bottom:927.413724px;}
.y65_c01358{bottom:932.167092px;}
.y64_c01358{bottom:935.309748px;}
.y63_c01358{bottom:936.875460px;}
.y62_c01358{bottom:938.821044px;}
.y61_c01358{bottom:944.798052px;}
.y60_c01358{bottom:946.316964px;}
.y5f_c01358{bottom:949.439460px;}
.y5e_c01358{bottom:950.965500px;}
.y5d_c01358{bottom:1067.755665px;}
.y5c_c01358{bottom:1073.404023px;}
.y5b_c01358{bottom:1076.689665px;}
.y5a_c01358{bottom:1079.961684px;}
.y59_c01358{bottom:1081.598778px;}
.y58_c01358{bottom:1083.185259px;}
.y57_c01358{bottom:1086.520773px;}
.y56_c01358{bottom:1088.635572px;}
.y55_c01358{bottom:1090.346004px;}
.y53_c01358{bottom:1091.655228px;}
.y54_c01358{bottom:1092.486537px;}
.y52_c01358{bottom:1096.438866px;}
.y51_c01358{bottom:1098.183351px;}
.y50_c01358{bottom:1099.940100px;}
.y4f_c01358{bottom:1101.168294px;}
.y4e_c01358{bottom:1104.697011px;}
.y4d_c01358{bottom:1108.242108px;}
.y4c_c01358{bottom:1109.492493px;}
.y4b_c01358{bottom:1112.991711px;}
.y4a_c01358{bottom:1116.577311px;}
.y49_c01358{bottom:1119.541086px;}
.y48_c01358{bottom:1125.287121px;}
.y45_c01358{bottom:1126.635192px;}
.y47_c01358{bottom:1127.154039px;}
.y44_c01358{bottom:1128.159960px;}
.y46_c01358{bottom:1128.932559px;}
.y43_c01358{bottom:1129.855668px;}
.y42_c01358{bottom:1135.409664px;}
.y41_c01358{bottom:1137.851880px;}
.y40_c01358{bottom:1139.744820px;}
.y3f_c01358{bottom:1140.985248px;}
.y3e_c01358{bottom:1148.267880px;}
.y3d_c01358{bottom:1155.169572px;}
.y3c_c01358{bottom:1157.562396px;}
.y3b_c01358{bottom:1159.423500px;}
.y3a_c01358{bottom:1206.700658px;}
.y39_c01358{bottom:1207.722000px;}
.h2_c01358{height:24.000000px;}
.h11_c01358{height:24.008459px;}
.h9_c01358{height:71.969033px;}
.he_c01358{height:71.973103px;}
.h7_c01358{height:72.000936px;}
.h8_c01358{height:77.966453px;}
.ha_c01358{height:78.011894px;}
.h5_c01358{height:78.019537px;}
.h3_c01358{height:78.027490px;}
.hc_c01358{height:78.035755px;}
.h14_c01358{height:83.963872px;}
.h6_c01358{height:84.012809px;}
.h4_c01358{height:84.021039px;}
.hd_c01358{height:84.038505px;}
.h15_c01358{height:89.961292px;}
.hf_c01358{height:89.966379px;}
.h16_c01358{height:89.982178px;}
.h10_c01358{height:90.022542px;}
.hb_c01358{height:95.958711px;}
.h12_c01358{height:102.035949px;}
.h13_c01358{height:119.976238px;}
.h1_c01358{height:1250.250000px;}
.h0_c01358{height:1250.370000px;}
.w0_c01358{width:878.850000px;}
.w1_c01358{width:879.000000px;}
.x0_c01358{left:0.000000px;}
.x1f_c01358{left:32.820114px;}
.x12_c01358{left:54.027000px;}
.xd2_c01358{left:69.997500px;}
.xce_c01358{left:72.704004px;}
.xc2_c01358{left:74.107500px;}
.x2e_c01358{left:76.351500px;}
.xaf_c01358{left:81.480633px;}
.x9f_c01358{left:83.620500px;}
.x1_c01358{left:84.780000px;}
.x96_c01358{left:88.749444px;}
.x2_c01358{left:91.498500px;}
.x8d_c01358{left:93.264903px;}
.x83_c01358{left:95.037264px;}
.xc6_c01358{left:96.475500px;}
.x20_c01358{left:97.692720px;}
.x72_c01358{left:101.588628px;}
.x13_c01358{left:102.759718px;}
.x8_c01358{left:111.363000px;}
.x65_c01358{left:114.047578px;}
.x59_c01358{left:115.840500px;}
.x84_c01358{left:118.237041px;}
.x53_c01358{left:122.388114px;}
.x45_c01358{left:123.575703px;}
.xcf_c01358{left:125.518218px;}
.xc7_c01358{left:127.806213px;}
.x79_c01358{left:128.913692px;}
.x21_c01358{left:130.226426px;}
.x3_c01358{left:134.526429px;}
.x2f_c01358{left:136.718572px;}
.x97_c01358{left:141.795801px;}
.xb0_c01358{left:145.589613px;}
.x5a_c01358{left:147.601208px;}
.x46_c01358{left:156.449028px;}
.xc8_c01358{left:159.583032px;}
.x66_c01358{left:162.627265px;}
.x14_c01358{left:165.380535px;}
.x4_c01358{left:166.879044px;}
.x8e_c01358{left:170.050676px;}
.x98_c01358{left:175.045064px;}
.xb7_c01358{left:177.837150px;}
.x73_c01358{left:189.481338px;}
.x47_c01358{left:190.951257px;}
.x7a_c01358{left:194.507532px;}
.x5_c01358{left:199.017373px;}
.xb1_c01358{left:200.077773px;}
.xa0_c01358{left:203.325176px;}
.xbd_c01358{left:206.445356px;}
.x9_c01358{left:209.475789px;}
.x5b_c01358{left:212.588155px;}
.x30_c01358{left:215.722490px;}
.x22_c01358{left:217.135221px;}
.x74_c01358{left:221.387433px;}
.xa6_c01358{left:223.570420px;}
.xa1_c01358{left:224.997981px;}
.x7b_c01358{left:226.376132px;}
.xb8_c01358{left:232.091841px;}
.x3a_c01358{left:233.862000px;}
.x85_c01358{left:235.762898px;}
.x99_c01358{left:239.342229px;}
.x54_c01358{left:241.445586px;}
.x5c_c01358{left:244.200512px;}
.x8f_c01358{left:246.054150px;}
.x23_c01358{left:250.050969px;}
.x15_c01358{left:252.690637px;}
.xbc_c01358{left:262.131380px;}
.x6_c01358{left:264.882442px;}
.x3b_c01358{left:267.029532px;}
.x67_c01358{left:275.882014px;}
.xa7_c01358{left:278.200256px;}
.x24_c01358{left:283.616991px;}
.x93_c01358{left:284.810520px;}
.x75_c01358{left:287.113125px;}
.xa2_c01358{left:290.891522px;}
.x31_c01358{left:292.944690px;}
.x48_c01358{left:297.127347px;}
.xa_c01358{left:306.308859px;}
.x55_c01358{left:308.008083px;}
.x3c_c01358{left:309.673074px;}
.x6d_c01358{left:311.254443px;}
.x32_c01358{left:314.332781px;}
.xa8_c01358{left:322.001556px;}
.xbe_c01358{left:326.674998px;}
.x68_c01358{left:332.247187px;}
.x90_c01358{left:334.296603px;}
.xb_c01358{left:339.511124px;}
.xb2_c01358{left:342.373467px;}
.x86_c01358{left:345.477074px;}
.x25_c01358{left:349.402034px;}
.x49_c01358{left:351.899727px;}
.xd3_c01358{left:353.300259px;}
.xd0_c01358{left:354.372798px;}
.x33_c01358{left:357.813256px;}
.xbf_c01358{left:359.637938px;}
.x6e_c01358{left:365.092551px;}
.x5d_c01358{left:368.596991px;}
.x26_c01358{left:370.850886px;}
.x16_c01358{left:373.256951px;}
.xd4_c01358{left:374.861550px;}
.x87_c01358{left:377.855163px;}
.xc0_c01358{left:381.569249px;}
.xb3_c01358{left:386.972576px;}
.xc9_c01358{left:388.420440px;}
.x38_c01358{left:390.411000px;}
.x9a_c01358{left:392.353439px;}
.xa9_c01358{left:398.364959px;}
.xc3_c01358{left:402.236427px;}
.x27_c01358{left:403.793607px;}
.x17_c01358{left:406.728945px;}
.xd5_c01358{left:408.026088px;}
.x5e_c01358{left:409.089458px;}
.x7_c01358{left:410.151528px;}
.x39_c01358{left:413.084803px;}
.xa3_c01358{left:414.583706px;}
.x4a_c01358{left:418.155357px;}
.xca_c01358{left:421.185279px;}
.xc_c01358{left:427.657389px;}
.x3d_c01358{left:432.671085px;}
.x7c_c01358{left:435.373425px;}
.x56_c01358{left:437.631915px;}
.x18_c01358{left:438.732410px;}
.x5f_c01358{left:441.675838px;}
.xaa_c01358{left:443.243531px;}
.x88_c01358{left:444.264188px;}
.xc4_c01358{left:445.342542px;}
.x34_c01358{left:457.244725px;}
.xd6_c01358{left:462.235452px;}
.x7d_c01358{left:467.577689px;}
.x28_c01358{left:469.680547px;}
.x6f_c01358{left:473.291220px;}
.xcb_c01358{left:476.399130px;}
.x4b_c01358{left:482.818011px;}
.x9b_c01358{left:492.231465px;}
.x76_c01358{left:494.812209px;}
.xc5_c01358{left:499.879749px;}
.x7e_c01358{left:501.944288px;}
.x57_c01358{left:503.198571px;}
.x4c_c01358{left:505.931301px;}
.x60_c01358{left:507.082366px;}
.xd_c01358{left:514.967492px;}
.x69_c01358{left:516.023497px;}
.xd7_c01358{left:518.375946px;}
.xc1_c01358{left:523.568286px;}
.xb9_c01358{left:526.073565px;}
.x19_c01358{left:537.155388px;}
.x77_c01358{left:538.776570px;}
.xab_c01358{left:541.079837px;}
.xe_c01358{left:547.469957px;}
.x1a_c01358{left:558.625896px;}
.x3e_c01358{left:562.457991px;}
.xd8_c01358{left:563.595825px;}
.x35_c01358{left:565.887474px;}
.x29_c01358{left:570.255811px;}
.x4d_c01358{left:571.438347px;}
.xac_c01358{left:573.060596px;}
.xcc_c01358{left:575.690649px;}
.x6a_c01358{left:581.641044px;}
.x3f_c01358{left:584.564190px;}
.x94_c01358{left:590.740434px;}
.x91_c01358{left:594.776889px;}
.x7f_c01358{left:598.853781px;}
.x9c_c01358{left:600.308388px;}
.x61_c01358{left:606.011838px;}
.xd1_c01358{left:607.725852px;}
.xf_c01358{left:614.467891px;}
.x58_c01358{left:615.903585px;}
.x40_c01358{left:618.299085px;}
.x1b_c01358{left:624.478977px;}
.x62_c01358{left:627.668160px;}
.x89_c01358{left:629.874392px;}
.x2a_c01358{left:633.176022px;}
.x4e_c01358{left:636.653478px;}
.xb4_c01358{left:637.898436px;}
.x70_c01358{left:647.871360px;}
.xad_c01358{left:649.266730px;}
.xcd_c01358{left:650.739750px;}
.x2b_c01358{left:655.332166px;}
.x4f_c01358{left:659.344530px;}
.x41_c01358{left:661.822863px;}
.x9d_c01358{left:665.468082px;}
.xba_c01358{left:667.911086px;}
.xb5_c01358{left:669.854025px;}
.x80_c01358{left:676.531526px;}
.x1c_c01358{left:678.802599px;}
.xae_c01358{left:683.244840px;}
.x10_c01358{left:690.626157px;}
.x50_c01358{left:691.803102px;}
.x6b_c01358{left:694.155606px;}
.x8a_c01358{left:695.941758px;}
.x9e_c01358{left:699.040782px;}
.x36_c01358{left:708.003715px;}
.x1d_c01358{left:711.439929px;}
.x6c_c01358{left:713.820048px;}
.x81_c01358{left:718.708306px;}
.x2c_c01358{left:720.810091px;}
.x11_c01358{left:722.697054px;}
.x51_c01358{left:724.043112px;}
.x63_c01358{left:725.954775px;}
.x71_c01358{left:726.986313px;}
.x8b_c01358{left:731.493671px;}
.xbb_c01358{left:734.612318px;}
.x92_c01358{left:737.771454px;}
.x37_c01358{left:741.964221px;}
.x95_c01358{left:746.367057px;}
.xb6_c01358{left:747.842787px;}
.x82_c01358{left:751.138844px;}
.x78_c01358{left:756.039582px;}
.x42_c01358{left:760.803006px;}
.x64_c01358{left:783.611061px;}
.x2d_c01358{left:786.962266px;}
.x43_c01358{left:791.022945px;}
.x8c_c01358{left:795.864735px;}
.x1e_c01358{left:800.877902px;}
.xa4_c01358{left:806.389008px;}
.x52_c01358{left:812.452371px;}
.x44_c01358{left:818.196489px;}
.xa5_c01358{left:873.791538px;}
@media print{
.v0_c01358{vertical-align:0.000000pt;}
.ls0_c01358{letter-spacing:0.000000pt;}
.ws0_c01358{word-spacing:0.000000pt;}
.fs0_c01358{font-size:21.333333pt;}
.fsf_c01358{font-size:21.340852pt;}
.fs7_c01358{font-size:63.972474pt;}
.fsc_c01358{font-size:63.976092pt;}
.fs5_c01358{font-size:64.000832pt;}
.fs6_c01358{font-size:69.303514pt;}
.fs8_c01358{font-size:69.343906pt;}
.fs3_c01358{font-size:69.350699pt;}
.fs1_c01358{font-size:69.357769pt;}
.fsa_c01358{font-size:69.365115pt;}
.fs12_c01358{font-size:74.634553pt;}
.fs4_c01358{font-size:74.678052pt;}
.fs2_c01358{font-size:74.685368pt;}
.fsb_c01358{font-size:74.700893pt;}
.fs13_c01358{font-size:79.965593pt;}
.fsd_c01358{font-size:79.970114pt;}
.fs14_c01358{font-size:79.984158pt;}
.fse_c01358{font-size:80.020037pt;}
.fs9_c01358{font-size:85.296632pt;}
.fs10_c01358{font-size:90.698621pt;}
.fs11_c01358{font-size:106.645545pt;}
.y0_c01358{bottom:0.000000pt;}
.y129_c01358{bottom:32.119760pt;}
.y128_c01358{bottom:37.262000pt;}
.y127_c01358{bottom:39.678560pt;}
.y126_c01358{bottom:42.678720pt;}
.y125_c01358{bottom:45.575680pt;}
.y124_c01358{bottom:47.348000pt;}
.y123_c01358{bottom:48.500240pt;}
.y122_c01358{bottom:50.856480pt;}
.y121_c01358{bottom:52.542560pt;}
.y120_c01358{bottom:56.711360pt;}
.y11f_c01358{bottom:60.601280pt;}
.y11e_c01358{bottom:63.640000pt;}
.y11d_c01358{bottom:64.073371pt;}
.y11c_c01358{bottom:68.460459pt;}
.y11b_c01358{bottom:76.887277pt;}
.y115_c01358{bottom:79.739072pt;}
.y11a_c01358{bottom:81.322675pt;}
.y119_c01358{bottom:82.969752pt;}
.y114_c01358{bottom:83.524000pt;}
.y113_c01358{bottom:87.267264pt;}
.y118_c01358{bottom:88.490691pt;}
.y112_c01358{bottom:88.949877pt;}
.y111_c01358{bottom:92.219680pt;}
.y117_c01358{bottom:92.940275pt;}
.y110_c01358{bottom:94.973611pt;}
.y116_c01358{bottom:95.621237pt;}
.y10f_c01358{bottom:96.607840pt;}
.y10e_c01358{bottom:103.687285pt;}
.y10d_c01358{bottom:108.021685pt;}
.y10c_c01358{bottom:109.606635pt;}
.y10b_c01358{bottom:111.169333pt;}
.y10a_c01358{bottom:122.017307pt;}
.y109_c01358{bottom:124.931787pt;}
.y108_c01358{bottom:127.235387pt;}
.y107_c01358{bottom:129.642187pt;}
.y106_c01358{bottom:136.079467pt;}
.y105_c01358{bottom:141.807867pt;}
.y104_c01358{bottom:144.770667pt;}
.y103_c01358{bottom:154.810937pt;}
.y102_c01358{bottom:157.224137pt;}
.y101_c01358{bottom:159.676496pt;}
.y100_c01358{bottom:161.129924pt;}
.yff_c01358{bottom:162.105920pt;}
.yfe_c01358{bottom:163.572299pt;}
.yfd_c01358{bottom:165.496211pt;}
.yfc_c01358{bottom:168.921445pt;}
.yfb_c01358{bottom:172.317352pt;}
.yfa_c01358{bottom:174.735544pt;}
.yf9_c01358{bottom:181.499929pt;}
.yf6_c01358{bottom:186.251120pt;}
.yf5_c01358{bottom:188.297493pt;}
.yf4_c01358{bottom:189.337285pt;}
.yf8_c01358{bottom:189.468335pt;}
.yf3_c01358{bottom:191.344971pt;}
.yf2_c01358{bottom:194.383920pt;}
.yf7_c01358{bottom:195.599741pt;}
.yf1_c01358{bottom:195.899893pt;}
.yf0_c01358{bottom:196.912021pt;}
.yef_c01358{bottom:199.916789pt;}
.yee_c01358{bottom:206.520027pt;}
.yed_c01358{bottom:209.501984pt;}
.yec_c01358{bottom:211.233584pt;}
.yeb_c01358{bottom:212.012267pt;}
.yea_c01358{bottom:216.512000pt;}
.ye9_c01358{bottom:218.395373pt;}
.ye8_c01358{bottom:219.407927pt;}
.ye7_c01358{bottom:221.796908pt;}
.ye6_c01358{bottom:223.190536pt;}
.ye5_c01358{bottom:226.104529pt;}
.ye4_c01358{bottom:228.920653pt;}
.ye3_c01358{bottom:231.755444pt;}
.ye2_c01358{bottom:234.130959pt;}
.ye1_c01358{bottom:236.075065pt;}
.ye0_c01358{bottom:240.372820pt;}
.ydf_c01358{bottom:242.278792pt;}
.ydb_c01358{bottom:242.928580pt;}
.yde_c01358{bottom:244.654840pt;}
.ydd_c01358{bottom:246.054935pt;}
.ydc_c01358{bottom:247.450896pt;}
.yda_c01358{bottom:248.677893pt;}
.yd9_c01358{bottom:251.780375pt;}
.yd8_c01358{bottom:253.352115pt;}
.yd7_c01358{bottom:256.877313pt;}
.yd6_c01358{bottom:258.357523pt;}
.yd5_c01358{bottom:262.883749pt;}
.yd4_c01358{bottom:264.960469pt;}
.yd3_c01358{bottom:268.494000pt;}
.yd2_c01358{bottom:270.520123pt;}
.yd1_c01358{bottom:273.048025pt;}
.yd0_c01358{bottom:274.581900pt;}
.ycf_c01358{bottom:276.394133pt;}
.yce_c01358{bottom:279.392800pt;}
.ycd_c01358{bottom:296.823800pt;}
.ycc_c01358{bottom:302.326733pt;}
.ycb_c01358{bottom:305.258267pt;}
.yca_c01358{bottom:306.222467pt;}
.yc9_c01358{bottom:309.148000pt;}
.yc8_c01358{bottom:311.548000pt;}
.y38_c01358{bottom:312.420096pt;}
.y37_c01358{bottom:313.870528pt;}
.y36_c01358{bottom:319.940224pt;}
.y35_c01358{bottom:324.580288pt;}
.y34_c01358{bottom:328.826944pt;}
.y33_c01358{bottom:330.683968pt;}
.y32_c01358{bottom:331.597440pt;}
.y31_c01358{bottom:334.895552pt;}
.y30_c01358{bottom:338.269760pt;}
.y2f_c01358{bottom:340.848000pt;}
.yc7_c01358{bottom:342.359811pt;}
.yc6_c01358{bottom:346.242917pt;}
.yc5_c01358{bottom:347.768452pt;}
.yc4_c01358{bottom:349.241816pt;}
.yc3_c01358{bottom:350.729391pt;}
.yc2_c01358{bottom:352.629621pt;}
.yc1_c01358{bottom:355.639539pt;}
.yc0_c01358{bottom:360.177499pt;}
.ybf_c01358{bottom:364.116500pt;}
.ybe_c01358{bottom:367.129913pt;}
.ybd_c01358{bottom:370.051068pt;}
.yba_c01358{bottom:371.222515pt;}
.ybc_c01358{bottom:371.561517pt;}
.yb9_c01358{bottom:373.504111pt;}
.ybb_c01358{bottom:373.971564pt;}
.yb8_c01358{bottom:375.303867pt;}
.yb7_c01358{bottom:376.953371pt;}
.yb6_c01358{bottom:381.404995pt;}
.yb5_c01358{bottom:384.138867pt;}
.yb4_c01358{bottom:389.121199pt;}
.yb3_c01358{bottom:392.456383pt;}
.yb2_c01358{bottom:394.132411pt;}
.yb1_c01358{bottom:396.936507pt;}
.yb0_c01358{bottom:401.318667pt;}
.y7_c01358{bottom:421.412405pt;}
.y6_c01358{bottom:428.133787pt;}
.y5_c01358{bottom:431.181264pt;}
.y4_c01358{bottom:432.668256pt;}
.y3_c01358{bottom:434.165163pt;}
.y2_c01358{bottom:436.156000pt;}
.yaf_c01358{bottom:438.328581pt;}
.yae_c01358{bottom:440.410425pt;}
.yad_c01358{bottom:442.013901pt;}
.yac_c01358{bottom:445.072281pt;}
.yab_c01358{bottom:452.261517pt;}
.yaa_c01358{bottom:453.822765pt;}
.ya9_c01358{bottom:457.356741pt;}
.ya8_c01358{bottom:461.517801pt;}
.ya7_c01358{bottom:463.091217pt;}
.ya6_c01358{bottom:465.102825pt;}
.ya4_c01358{bottom:467.458449pt;}
.ya5_c01358{bottom:468.724101pt;}
.ya3_c01358{bottom:470.551353pt;}
.ya2_c01358{bottom:472.259553pt;}
.ya1_c01358{bottom:475.433961pt;}
.ya0_c01358{bottom:476.970441pt;}
.y9f_c01358{bottom:483.194769pt;}
.y9e_c01358{bottom:484.352169pt;}
.y9d_c01358{bottom:487.542993pt;}
.y9c_c01358{bottom:489.098697pt;}
.y9b_c01358{bottom:494.370249pt;}
.y9a_c01358{bottom:500.017137pt;}
.y99_c01358{bottom:501.131841pt;}
.y98_c01358{bottom:502.177821pt;}
.y97_c01358{bottom:503.736045pt;}
.y96_c01358{bottom:505.762557pt;}
.y95_c01358{bottom:509.494821pt;}
.y94_c01358{bottom:511.077813pt;}
.y93_c01358{bottom:514.151133pt;}
.y92_c01358{bottom:515.802381pt;}
.y91_c01358{bottom:517.349733pt;}
.y90_c01358{bottom:523.152573pt;}
.y8f_c01358{bottom:527.391645pt;}
.y8e_c01358{bottom:528.922869pt;}
.y2e_c01358{bottom:531.323404pt;}
.y8d_c01358{bottom:532.074525pt;}
.y8c_c01358{bottom:533.553333pt;}
.y2d_c01358{bottom:534.383953pt;}
.y2c_c01358{bottom:537.413171pt;}
.y2b_c01358{bottom:538.437599pt;}
.y2a_c01358{bottom:541.349020pt;}
.y29_c01358{bottom:546.002441pt;}
.y28_c01358{bottom:549.051191pt;}
.y27_c01358{bottom:550.575532pt;}
.y26_c01358{bottom:551.568493pt;}
.y25_c01358{bottom:554.612709pt;}
.y24_c01358{bottom:556.166116pt;}
.y23_c01358{bottom:557.689257pt;}
.y22_c01358{bottom:561.710636pt;}
.y21_c01358{bottom:563.215445pt;}
.y1f_c01358{bottom:563.424067pt;}
.y20_c01358{bottom:566.216397pt;}
.y1e_c01358{bottom:567.403067pt;}
.y1d_c01358{bottom:568.855067pt;}
.y1c_c01358{bottom:571.271867pt;}
.y1b_c01358{bottom:574.201600pt;}
.y1a_c01358{bottom:575.156800pt;}
.y19_c01358{bottom:579.535533pt;}
.y18_c01358{bottom:580.959333pt;}
.y17_c01358{bottom:582.448467pt;}
.y16_c01358{bottom:587.812333pt;}
.y15_c01358{bottom:590.209333pt;}
.y14_c01358{bottom:591.696667pt;}
.y8b_c01358{bottom:592.855229pt;}
.y13_c01358{bottom:594.482600pt;}
.y8a_c01358{bottom:594.503512pt;}
.y89_c01358{bottom:596.050581pt;}
.y12_c01358{bottom:596.650667pt;}
.y88_c01358{bottom:597.613629pt;}
.y87_c01358{bottom:599.690957pt;}
.y86_c01358{bottom:604.952947pt;}
.y85_c01358{bottom:607.067024pt;}
.y84_c01358{bottom:610.711731pt;}
.y83_c01358{bottom:617.056787pt;}
.y82_c01358{bottom:620.217555pt;}
.y81_c01358{bottom:621.752888pt;}
.y80_c01358{bottom:624.898635pt;}
.y7f_c01358{bottom:625.980581pt;}
.y7e_c01358{bottom:628.337568pt;}
.y7d_c01358{bottom:632.283627pt;}
.y7c_c01358{bottom:633.888661pt;}
.y7b_c01358{bottom:639.298112pt;}
.y7a_c01358{bottom:640.991253pt;}
.y79_c01358{bottom:643.028608pt;}
.y78_c01358{bottom:646.387936pt;}
.y77_c01358{bottom:649.073248pt;}
.y76_c01358{bottom:654.040000pt;}
.y1_c01358{bottom:717.600000pt;}
.y11_c01358{bottom:755.953067pt;}
.y10_c01358{bottom:757.379867pt;}
.yf_c01358{bottom:760.768067pt;}
.ye_c01358{bottom:763.748733pt;}
.yd_c01358{bottom:765.194733pt;}
.yc_c01358{bottom:769.079067pt;}
.yb_c01358{bottom:773.000600pt;}
.ya_c01358{bottom:774.477733pt;}
.y9_c01358{bottom:778.785733pt;}
.y8_c01358{bottom:783.150667pt;}
.y75_c01358{bottom:784.013267pt;}
.y74_c01358{bottom:787.422475pt;}
.y73_c01358{bottom:788.297043pt;}
.y72_c01358{bottom:793.302731pt;}
.y71_c01358{bottom:796.221367pt;}
.y70_c01358{bottom:799.617903pt;}
.y6f_c01358{bottom:801.072159pt;}
.y6e_c01358{bottom:804.398767pt;}
.y6d_c01358{bottom:806.906219pt;}
.y6c_c01358{bottom:810.302179pt;}
.y6b_c01358{bottom:811.944855pt;}
.y6a_c01358{bottom:814.106443pt;}
.y69_c01358{bottom:816.782603pt;}
.y68_c01358{bottom:819.245067pt;}
.y67_c01358{bottom:823.442827pt;}
.y66_c01358{bottom:824.367755pt;}
.y65_c01358{bottom:828.592971pt;}
.y64_c01358{bottom:831.386443pt;}
.y63_c01358{bottom:832.778187pt;}
.y62_c01358{bottom:834.507595pt;}
.y61_c01358{bottom:839.820491pt;}
.y60_c01358{bottom:841.170635pt;}
.y5f_c01358{bottom:843.946187pt;}
.y5e_c01358{bottom:845.302667pt;}
.y5d_c01358{bottom:949.116147pt;}
.y5c_c01358{bottom:954.136909pt;}
.y5b_c01358{bottom:957.057480pt;}
.y5a_c01358{bottom:959.965941pt;}
.y59_c01358{bottom:961.421136pt;}
.y58_c01358{bottom:962.831341pt;}
.y57_c01358{bottom:965.796243pt;}
.y56_c01358{bottom:967.676064pt;}
.y55_c01358{bottom:969.196448pt;}
.y53_c01358{bottom:970.360203pt;}
.y54_c01358{bottom:971.099144pt;}
.y52_c01358{bottom:974.612325pt;}
.y51_c01358{bottom:976.162979pt;}
.y50_c01358{bottom:977.724533pt;}
.y4f_c01358{bottom:978.816261pt;}
.y4e_c01358{bottom:981.952899pt;}
.y4d_c01358{bottom:985.104096pt;}
.y4c_c01358{bottom:986.215549pt;}
.y4b_c01358{bottom:989.325965pt;}
.y4a_c01358{bottom:992.513165pt;}
.y49_c01358{bottom:995.147632pt;}
.y48_c01358{bottom:1000.255219pt;}
.y45_c01358{bottom:1001.453504pt;}
.y47_c01358{bottom:1001.914701pt;}
.y44_c01358{bottom:1002.808853pt;}
.y46_c01358{bottom:1003.495608pt;}
.y43_c01358{bottom:1004.316149pt;}
.y42_c01358{bottom:1009.253035pt;}
.y41_c01358{bottom:1011.423893pt;}
.y40_c01358{bottom:1013.106507pt;}
.y3f_c01358{bottom:1014.209109pt;}
.y3e_c01358{bottom:1020.682560pt;}
.y3d_c01358{bottom:1026.817397pt;}
.y3c_c01358{bottom:1028.944352pt;}
.y3b_c01358{bottom:1030.598667pt;}
.y3a_c01358{bottom:1072.622807pt;}
.y39_c01358{bottom:1073.530667pt;}
.h2_c01358{height:21.333333pt;}
.h11_c01358{height:21.340852pt;}
.h9_c01358{height:63.972474pt;}
.he_c01358{height:63.976092pt;}
.h7_c01358{height:64.000832pt;}
.h8_c01358{height:69.303514pt;}
.ha_c01358{height:69.343906pt;}
.h5_c01358{height:69.350699pt;}
.h3_c01358{height:69.357769pt;}
.hc_c01358{height:69.365115pt;}
.h14_c01358{height:74.634553pt;}
.h6_c01358{height:74.678052pt;}
.h4_c01358{height:74.685368pt;}
.hd_c01358{height:74.700893pt;}
.h15_c01358{height:79.965593pt;}
.hf_c01358{height:79.970114pt;}
.h16_c01358{height:79.984158pt;}
.h10_c01358{height:80.020037pt;}
.hb_c01358{height:85.296632pt;}
.h12_c01358{height:90.698621pt;}
.h13_c01358{height:106.645545pt;}
.h1_c01358{height:1111.333333pt;}
.h0_c01358{height:1111.440000pt;}
.w0_c01358{width:781.200000pt;}
.w1_c01358{width:781.333333pt;}
.x0_c01358{left:0.000000pt;}
.x1f_c01358{left:29.173435pt;}
.x12_c01358{left:48.024000pt;}
.xd2_c01358{left:62.220000pt;}
.xce_c01358{left:64.625781pt;}
.xc2_c01358{left:65.873333pt;}
.x2e_c01358{left:67.868000pt;}
.xaf_c01358{left:72.427229pt;}
.x9f_c01358{left:74.329333pt;}
.x1_c01358{left:75.360000pt;}
.x96_c01358{left:78.888395pt;}
.x2_c01358{left:81.332000pt;}
.x8d_c01358{left:82.902136pt;}
.x83_c01358{left:84.477568pt;}
.xc6_c01358{left:85.756000pt;}
.x20_c01358{left:86.837973pt;}
.x72_c01358{left:90.301003pt;}
.x13_c01358{left:91.341972pt;}
.x8_c01358{left:98.989333pt;}
.x65_c01358{left:101.375625pt;}
.x59_c01358{left:102.969333pt;}
.x84_c01358{left:105.099592pt;}
.x53_c01358{left:108.789435pt;}
.x45_c01358{left:109.845069pt;}
.xcf_c01358{left:111.571749pt;}
.xc7_c01358{left:113.605523pt;}
.x79_c01358{left:114.589948pt;}
.x21_c01358{left:115.756823pt;}
.x3_c01358{left:119.579048pt;}
.x2f_c01358{left:121.527620pt;}
.x97_c01358{left:126.040712pt;}
.xb0_c01358{left:129.412989pt;}
.x5a_c01358{left:131.201073pt;}
.x46_c01358{left:139.065803pt;}
.xc8_c01358{left:141.851584pt;}
.x66_c01358{left:144.557569pt;}
.x14_c01358{left:147.004920pt;}
.x4_c01358{left:148.336928pt;}
.x8e_c01358{left:151.156156pt;}
.x98_c01358{left:155.595612pt;}
.xb7_c01358{left:158.077467pt;}
.x73_c01358{left:168.427856pt;}
.x47_c01358{left:169.734451pt;}
.x7a_c01358{left:172.895584pt;}
.x5_c01358{left:176.904332pt;}
.xb1_c01358{left:177.846909pt;}
.xa0_c01358{left:180.733489pt;}
.xbd_c01358{left:183.506983pt;}
.x9_c01358{left:186.200701pt;}
.x5b_c01358{left:188.967249pt;}
.x30_c01358{left:191.753324pt;}
.x22_c01358{left:193.009085pt;}
.x74_c01358{left:196.788829pt;}
.xa6_c01358{left:198.729263pt;}
.xa1_c01358{left:199.998205pt;}
.x7b_c01358{left:201.223228pt;}
.xb8_c01358{left:206.303859pt;}
.x3a_c01358{left:207.877333pt;}
.x85_c01358{left:209.567020pt;}
.x99_c01358{left:212.748648pt;}
.x54_c01358{left:214.618299pt;}
.x5c_c01358{left:217.067121pt;}
.x8f_c01358{left:218.714800pt;}
.x23_c01358{left:222.267528pt;}
.x15_c01358{left:224.613900pt;}
.xbc_c01358{left:233.005671pt;}
.x6_c01358{left:235.451060pt;}
.x3b_c01358{left:237.359584pt;}
.x67_c01358{left:245.228457pt;}
.xa7_c01358{left:247.289116pt;}
.x24_c01358{left:252.103992pt;}
.x93_c01358{left:253.164907pt;}
.x75_c01358{left:255.211667pt;}
.xa2_c01358{left:258.570241pt;}
.x31_c01358{left:260.395280pt;}
.x48_c01358{left:264.113197pt;}
.xa_c01358{left:272.274541pt;}
.x55_c01358{left:273.784963pt;}
.x3c_c01358{left:275.264955pt;}
.x6d_c01358{left:276.670616pt;}
.x32_c01358{left:279.406916pt;}
.xa8_c01358{left:286.223605pt;}
.xbe_c01358{left:290.377776pt;}
.x68_c01358{left:295.330833pt;}
.x90_c01358{left:297.152536pt;}
.xb_c01358{left:301.787665pt;}
.xb2_c01358{left:304.331971pt;}
.x86_c01358{left:307.090732pt;}
.x25_c01358{left:310.579585pt;}
.x49_c01358{left:312.799757pt;}
.xd3_c01358{left:314.044675pt;}
.xd0_c01358{left:314.998043pt;}
.x33_c01358{left:318.056228pt;}
.xbf_c01358{left:319.678167pt;}
.x6e_c01358{left:324.526712pt;}
.x5d_c01358{left:327.641769pt;}
.x26_c01358{left:329.645232pt;}
.x16_c01358{left:331.783956pt;}
.xd4_c01358{left:333.210267pt;}
.x87_c01358{left:335.871256pt;}
.xc0_c01358{left:339.172665pt;}
.xb3_c01358{left:343.975623pt;}
.xc9_c01358{left:345.262613pt;}
.x38_c01358{left:347.032000pt;}
.x9a_c01358{left:348.758612pt;}
.xa9_c01358{left:354.102185pt;}
.xc3_c01358{left:357.543491pt;}
.x27_c01358{left:358.927651pt;}
.x17_c01358{left:361.536840pt;}
.xd5_c01358{left:362.689856pt;}
.x5e_c01358{left:363.635073pt;}
.x7_c01358{left:364.579136pt;}
.x39_c01358{left:367.186492pt;}
.xa3_c01358{left:368.518849pt;}
.x4a_c01358{left:371.693651pt;}
.xca_c01358{left:374.386915pt;}
.xc_c01358{left:380.139901pt;}
.x3d_c01358{left:384.596520pt;}
.x7c_c01358{left:386.998600pt;}
.x56_c01358{left:389.006147pt;}
.x18_c01358{left:389.984364pt;}
.x5f_c01358{left:392.600745pt;}
.xaa_c01358{left:393.994249pt;}
.x88_c01358{left:394.901500pt;}
.xc4_c01358{left:395.860037pt;}
.x34_c01358{left:406.439756pt;}
.xd6_c01358{left:410.875957pt;}
.x7d_c01358{left:415.624612pt;}
.x28_c01358{left:417.493820pt;}
.x6f_c01358{left:420.703307pt;}
.xcb_c01358{left:423.465893pt;}
.x4b_c01358{left:429.171565pt;}
.x9b_c01358{left:437.539080pt;}
.x76_c01358{left:439.833075pt;}
.xc5_c01358{left:444.337555pt;}
.x7e_c01358{left:446.172700pt;}
.x57_c01358{left:447.287619pt;}
.x4c_c01358{left:449.716712pt;}
.x60_c01358{left:450.739881pt;}
.xd_c01358{left:457.748881pt;}
.x69_c01358{left:458.687553pt;}
.xd7_c01358{left:460.778619pt;}
.xc1_c01358{left:465.394032pt;}
.xb9_c01358{left:467.620947pt;}
.x19_c01358{left:477.471456pt;}
.x77_c01358{left:478.912507pt;}
.xab_c01358{left:480.959855pt;}
.xe_c01358{left:486.639961pt;}
.x1a_c01358{left:496.556352pt;}
.x3e_c01358{left:499.962659pt;}
.xd8_c01358{left:500.974067pt;}
.x35_c01358{left:503.011088pt;}
.x29_c01358{left:506.894055pt;}
.x4d_c01358{left:507.945197pt;}
.xac_c01358{left:509.387196pt;}
.xcc_c01358{left:511.725021pt;}
.x6a_c01358{left:517.014261pt;}
.x3f_c01358{left:519.612613pt;}
.x94_c01358{left:525.102608pt;}
.x91_c01358{left:528.690568pt;}
.x7f_c01358{left:532.314472pt;}
.x9c_c01358{left:533.607456pt;}
.x61_c01358{left:538.677189pt;}
.xd1_c01358{left:540.200757pt;}
.xf_c01358{left:546.193681pt;}
.x58_c01358{left:547.469853pt;}
.x40_c01358{left:549.599187pt;}
.x1b_c01358{left:555.092424pt;}
.x62_c01358{left:557.927253pt;}
.x89_c01358{left:559.888348pt;}
.x2a_c01358{left:562.823131pt;}
.x4e_c01358{left:565.914203pt;}
.xb4_c01358{left:567.020832pt;}
.x70_c01358{left:575.885653pt;}
.xad_c01358{left:577.125983pt;}
.xcd_c01358{left:578.435333pt;}
.x2b_c01358{left:582.517481pt;}
.x4f_c01358{left:586.084027pt;}
.x41_c01358{left:588.286989pt;}
.x9d_c01358{left:591.527184pt;}
.xba_c01358{left:593.698743pt;}
.xb5_c01358{left:595.425800pt;}
.x80_c01358{left:601.361356pt;}
.x1c_c01358{left:603.380088pt;}
.xae_c01358{left:607.328747pt;}
.x10_c01358{left:613.889917pt;}
.x50_c01358{left:614.936091pt;}
.x6b_c01358{left:617.027205pt;}
.x8a_c01358{left:618.614896pt;}
.x9e_c01358{left:621.369584pt;}
.x36_c01358{left:629.336636pt;}
.x1d_c01358{left:632.391048pt;}
.x6c_c01358{left:634.506709pt;}
.x81_c01358{left:638.851828pt;}
.x2c_c01358{left:640.720081pt;}
.x11_c01358{left:642.397381pt;}
.x51_c01358{left:643.593877pt;}
.x63_c01358{left:645.293133pt;}
.x71_c01358{left:646.210056pt;}
.x8b_c01358{left:650.216596pt;}
.xbb_c01358{left:652.988727pt;}
.x92_c01358{left:655.796848pt;}
.x37_c01358{left:659.523752pt;}
.x95_c01358{left:663.437384pt;}
.xb6_c01358{left:664.749144pt;}
.x82_c01358{left:667.678972pt;}
.x78_c01358{left:672.035184pt;}
.x42_c01358{left:676.269339pt;}
.x64_c01358{left:696.543165pt;}
.x2d_c01358{left:699.522015pt;}
.x43_c01358{left:703.131507pt;}
.x8c_c01358{left:707.435320pt;}
.x1e_c01358{left:711.891468pt;}
.xa4_c01358{left:716.790229pt;}
.x52_c01358{left:722.179885pt;}
.x44_c01358{left:727.285768pt;}
.xa5_c01358{left:776.703589pt;}
}





/* 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_c01359 {
    display:none;
  }
  .loading-indicator_c01359.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01359 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_c01359 { 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_c01359" -> "#page-container .classname_c01359")
 */
.pf_c01359 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01359 { /* 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_c01359.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01359 { /* 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_c01359 { /* 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_c01359 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01359 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01359 {overflow:visible;}
  }
}
.c_c01359 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01359 { /* 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_c01359:after { /* webkit #35443 */
  content: '';
}
.t_c01359:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01359 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 */
}
.__c01359 { /* 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_c01359 { /* info for Javascript */
  display:none;
}
.l_c01359 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01359 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01359 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01359: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_c01359 {
    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_c01359.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01359.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_c01359 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01359{font-family:sans-serif;visibility:hidden;}
.sc__c01359{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01359{-webkit-text-stroke:0px transparent;}
}
.y0_c01359{bottom:0.000000px;}
.h1_c01359{height:1250.250000px;}
.h0_c01359{height:1250.370000px;}
.w0_c01359{width:878.850000px;}
.w1_c01359{width:879.000000px;}
.x0_c01359{left:0.000000px;}
@media print{
.y0_c01359{bottom:0.000000pt;}
.h1_c01359{height:1111.333333pt;}
.h0_c01359{height:1111.440000pt;}
.w0_c01359{width:781.200000pt;}
.w1_c01359{width:781.333333pt;}
.x0_c01359{left:0.000000pt;}
}





/* 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_c01360 {
    display:none;
  }
  .loading-indicator_c01360.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01360 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_c01360 { 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_c01360" -> "#page-container .classname_c01360")
 */
.pf_c01360 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01360 { /* 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_c01360.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01360 { /* 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_c01360 { /* 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_c01360 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01360 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01360 {overflow:visible;}
  }
}
.c_c01360 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01360 { /* 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_c01360:after { /* webkit #35443 */
  content: '';
}
.t_c01360:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01360 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 */
}
.__c01360 { /* 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_c01360 { /* info for Javascript */
  display:none;
}
.l_c01360 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01360 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01360 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01360: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_c01360 {
    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_c01360.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01360.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_c01360 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01360{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01360;src:url('chunks/assets/font_c605e72f209fc835e906f064.woff2')format("woff");}.ff1_c01360{font-family:ff1_c01360;line-height:1.000000;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;}
.me3_c01360{transform:matrix(0.108560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108560,0.000000,0.000000,0.250000,0,0);}
.med_c01360{transform:matrix(0.141390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141390,0.000000,0.000000,0.250000,0,0);}
.mbc_c01360{transform:matrix(0.144376,-0.001011,0.001750,0.249994,0,0);-ms-transform:matrix(0.144376,-0.001011,0.001750,0.249994,0,0);-webkit-transform:matrix(0.144376,-0.001011,0.001750,0.249994,0,0);}
.mba_c01360{transform:matrix(0.148101,-0.001037,0.001750,0.249994,0,0);-ms-transform:matrix(0.148101,-0.001037,0.001750,0.249994,0,0);-webkit-transform:matrix(0.148101,-0.001037,0.001750,0.249994,0,0);}
.m30_c01360{transform:matrix(0.148465,-0.001188,0.002000,0.249992,0,0);-ms-transform:matrix(0.148465,-0.001188,0.002000,0.249992,0,0);-webkit-transform:matrix(0.148465,-0.001188,0.002000,0.249992,0,0);}
.mbe_c01360{transform:matrix(0.149351,-0.001045,0.001750,0.249994,0,0);-ms-transform:matrix(0.149351,-0.001045,0.001750,0.249994,0,0);-webkit-transform:matrix(0.149351,-0.001045,0.001750,0.249994,0,0);}
.m2f_c01360{transform:matrix(0.152395,-0.001219,0.002000,0.249992,0,0);-ms-transform:matrix(0.152395,-0.001219,0.002000,0.249992,0,0);-webkit-transform:matrix(0.152395,-0.001219,0.002000,0.249992,0,0);}
.mb8_c01360{transform:matrix(0.152831,-0.001070,0.001750,0.249994,0,0);-ms-transform:matrix(0.152831,-0.001070,0.001750,0.249994,0,0);-webkit-transform:matrix(0.152831,-0.001070,0.001750,0.249994,0,0);}
.mbf_c01360{transform:matrix(0.152861,-0.001070,0.001750,0.249994,0,0);-ms-transform:matrix(0.152861,-0.001070,0.001750,0.249994,0,0);-webkit-transform:matrix(0.152861,-0.001070,0.001750,0.249994,0,0);}
.mb7_c01360{transform:matrix(0.154001,-0.001078,0.001750,0.249994,0,0);-ms-transform:matrix(0.154001,-0.001078,0.001750,0.249994,0,0);-webkit-transform:matrix(0.154001,-0.001078,0.001750,0.249994,0,0);}
.mbd_c01360{transform:matrix(0.155851,-0.001091,0.001750,0.249994,0,0);-ms-transform:matrix(0.155851,-0.001091,0.001750,0.249994,0,0);-webkit-transform:matrix(0.155851,-0.001091,0.001750,0.249994,0,0);}
.mbb_c01360{transform:matrix(0.162331,-0.001136,0.001750,0.249994,0,0);-ms-transform:matrix(0.162331,-0.001136,0.001750,0.249994,0,0);-webkit-transform:matrix(0.162331,-0.001136,0.001750,0.249994,0,0);}
.m2e_c01360{transform:matrix(0.162995,-0.001304,0.002000,0.249992,0,0);-ms-transform:matrix(0.162995,-0.001304,0.002000,0.249992,0,0);-webkit-transform:matrix(0.162995,-0.001304,0.002000,0.249992,0,0);}
.m35_c01360{transform:matrix(0.163370,-0.001307,0.002000,0.249992,0,0);-ms-transform:matrix(0.163370,-0.001307,0.002000,0.249992,0,0);-webkit-transform:matrix(0.163370,-0.001307,0.002000,0.249992,0,0);}
.me8_c01360{transform:matrix(0.164460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164460,0.000000,0.000000,0.250000,0,0);}
.m33_c01360{transform:matrix(0.165070,-0.001321,0.002000,0.249992,0,0);-ms-transform:matrix(0.165070,-0.001321,0.002000,0.249992,0,0);-webkit-transform:matrix(0.165070,-0.001321,0.002000,0.249992,0,0);}
.mcc_c01360{transform:matrix(0.165445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165445,0.000000,0.000000,0.250000,0,0);}
.m37_c01360{transform:matrix(0.165970,-0.001328,0.002000,0.249992,0,0);-ms-transform:matrix(0.165970,-0.001328,0.002000,0.249992,0,0);-webkit-transform:matrix(0.165970,-0.001328,0.002000,0.249992,0,0);}
.m36_c01360{transform:matrix(0.166205,-0.001330,0.002000,0.249992,0,0);-ms-transform:matrix(0.166205,-0.001330,0.002000,0.249992,0,0);-webkit-transform:matrix(0.166205,-0.001330,0.002000,0.249992,0,0);}
.mb9_c01360{transform:matrix(0.168586,-0.001180,0.001750,0.249994,0,0);-ms-transform:matrix(0.168586,-0.001180,0.001750,0.249994,0,0);-webkit-transform:matrix(0.168586,-0.001180,0.001750,0.249994,0,0);}
.me5_c01360{transform:matrix(0.168915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168915,0.000000,0.000000,0.250000,0,0);}
.mcf_c01360{transform:matrix(0.170255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170255,0.000000,0.000000,0.250000,0,0);}
.m31_c01360{transform:matrix(0.170720,-0.001366,0.002000,0.249992,0,0);-ms-transform:matrix(0.170720,-0.001366,0.002000,0.249992,0,0);-webkit-transform:matrix(0.170720,-0.001366,0.002000,0.249992,0,0);}
.m8c_c01360{transform:matrix(0.173659,-0.001389,0.002000,0.249992,0,0);-ms-transform:matrix(0.173659,-0.001389,0.002000,0.249992,0,0);-webkit-transform:matrix(0.173659,-0.001389,0.002000,0.249992,0,0);}
.mfd_c01360{transform:matrix(0.174145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174145,0.000000,0.000000,0.250000,0,0);}
.m3a_c01360{transform:matrix(0.174819,-0.001399,0.002000,0.249992,0,0);-ms-transform:matrix(0.174819,-0.001399,0.002000,0.249992,0,0);-webkit-transform:matrix(0.174819,-0.001399,0.002000,0.249992,0,0);}
.mb4_c01360{transform:matrix(0.176185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176185,0.000000,0.000000,0.250000,0,0);}
.mfc_c01360{transform:matrix(0.176940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176940,0.000000,0.000000,0.250000,0,0);}
.m34_c01360{transform:matrix(0.177454,-0.001420,0.002000,0.249992,0,0);-ms-transform:matrix(0.177454,-0.001420,0.002000,0.249992,0,0);-webkit-transform:matrix(0.177454,-0.001420,0.002000,0.249992,0,0);}
.mef_c01360{transform:matrix(0.177635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177635,0.000000,0.000000,0.250000,0,0);}
.m39_c01360{transform:matrix(0.178899,-0.001431,0.002000,0.249992,0,0);-ms-transform:matrix(0.178899,-0.001431,0.002000,0.249992,0,0);-webkit-transform:matrix(0.178899,-0.001431,0.002000,0.249992,0,0);}
.mfe_c01360{transform:matrix(0.181900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181900,0.000000,0.000000,0.250000,0,0);}
.mf9_c01360{transform:matrix(0.182820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182820,0.000000,0.000000,0.250000,0,0);}
.m105_c01360{transform:matrix(0.186725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186725,0.000000,0.000000,0.250000,0,0);}
.m69_c01360{transform:matrix(0.186929,-0.001495,0.002000,0.249992,0,0);-ms-transform:matrix(0.186929,-0.001495,0.002000,0.249992,0,0);-webkit-transform:matrix(0.186929,-0.001495,0.002000,0.249992,0,0);}
.m43_c01360{transform:matrix(0.188174,-0.001505,0.002000,0.249992,0,0);-ms-transform:matrix(0.188174,-0.001505,0.002000,0.249992,0,0);-webkit-transform:matrix(0.188174,-0.001505,0.002000,0.249992,0,0);}
.mee_c01360{transform:matrix(0.189415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189415,0.000000,0.000000,0.250000,0,0);}
.me_c01360{transform:matrix(0.189729,-0.001518,0.002000,0.249992,0,0);-ms-transform:matrix(0.189729,-0.001518,0.002000,0.249992,0,0);-webkit-transform:matrix(0.189729,-0.001518,0.002000,0.249992,0,0);}
.m89_c01360{transform:matrix(0.189739,-0.001518,0.002000,0.249992,0,0);-ms-transform:matrix(0.189739,-0.001518,0.002000,0.249992,0,0);-webkit-transform:matrix(0.189739,-0.001518,0.002000,0.249992,0,0);}
.mea_c01360{transform:matrix(0.191180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191180,0.000000,0.000000,0.250000,0,0);}
.m86_c01360{transform:matrix(0.191544,-0.001532,0.002000,0.249992,0,0);-ms-transform:matrix(0.191544,-0.001532,0.002000,0.249992,0,0);-webkit-transform:matrix(0.191544,-0.001532,0.002000,0.249992,0,0);}
.m5f_c01360{transform:matrix(0.191719,-0.001534,0.002000,0.249992,0,0);-ms-transform:matrix(0.191719,-0.001534,0.002000,0.249992,0,0);-webkit-transform:matrix(0.191719,-0.001534,0.002000,0.249992,0,0);}
.m38_c01360{transform:matrix(0.192069,-0.001537,0.002000,0.249992,0,0);-ms-transform:matrix(0.192069,-0.001537,0.002000,0.249992,0,0);-webkit-transform:matrix(0.192069,-0.001537,0.002000,0.249992,0,0);}
.me7_c01360{transform:matrix(0.192070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192070,0.000000,0.000000,0.250000,0,0);}
.mf2_c01360{transform:matrix(0.193045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193045,0.000000,0.000000,0.250000,0,0);}
.mb6_c01360{transform:matrix(0.193060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193060,0.000000,0.000000,0.250000,0,0);}
.m87_c01360{transform:matrix(0.193124,-0.001545,0.002000,0.249992,0,0);-ms-transform:matrix(0.193124,-0.001545,0.002000,0.249992,0,0);-webkit-transform:matrix(0.193124,-0.001545,0.002000,0.249992,0,0);}
.m32_c01360{transform:matrix(0.193149,-0.001545,0.002000,0.249992,0,0);-ms-transform:matrix(0.193149,-0.001545,0.002000,0.249992,0,0);-webkit-transform:matrix(0.193149,-0.001545,0.002000,0.249992,0,0);}
.m8d_c01360{transform:matrix(0.194159,-0.001553,0.002000,0.249992,0,0);-ms-transform:matrix(0.194159,-0.001553,0.002000,0.249992,0,0);-webkit-transform:matrix(0.194159,-0.001553,0.002000,0.249992,0,0);}
.mb2_c01360{transform:matrix(0.194195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194195,0.000000,0.000000,0.250000,0,0);}
.md_c01360{transform:matrix(0.194534,-0.001556,0.002000,0.249992,0,0);-ms-transform:matrix(0.194534,-0.001556,0.002000,0.249992,0,0);-webkit-transform:matrix(0.194534,-0.001556,0.002000,0.249992,0,0);}
.m45_c01360{transform:matrix(0.195509,-0.001564,0.002000,0.249992,0,0);-ms-transform:matrix(0.195509,-0.001564,0.002000,0.249992,0,0);-webkit-transform:matrix(0.195509,-0.001564,0.002000,0.249992,0,0);}
.m6c_c01360{transform:matrix(0.195669,-0.001565,0.002000,0.249992,0,0);-ms-transform:matrix(0.195669,-0.001565,0.002000,0.249992,0,0);-webkit-transform:matrix(0.195669,-0.001565,0.002000,0.249992,0,0);}
.m85_c01360{transform:matrix(0.195809,-0.001566,0.002000,0.249992,0,0);-ms-transform:matrix(0.195809,-0.001566,0.002000,0.249992,0,0);-webkit-transform:matrix(0.195809,-0.001566,0.002000,0.249992,0,0);}
.m110_c01360{transform:matrix(0.196550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196550,0.000000,0.000000,0.250000,0,0);}
.m103_c01360{transform:matrix(0.196955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196955,0.000000,0.000000,0.250000,0,0);}
.m90_c01360{transform:matrix(0.197484,-0.001580,0.002000,0.249992,0,0);-ms-transform:matrix(0.197484,-0.001580,0.002000,0.249992,0,0);-webkit-transform:matrix(0.197484,-0.001580,0.002000,0.249992,0,0);}
.md1_c01360{transform:matrix(0.198475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198475,0.000000,0.000000,0.250000,0,0);}
.m107_c01360{transform:matrix(0.198895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198895,0.000000,0.000000,0.250000,0,0);}
.m108_c01360{transform:matrix(0.199215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199215,0.000000,0.000000,0.250000,0,0);}
.m10c_c01360{transform:matrix(0.199295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199295,0.000000,0.000000,0.250000,0,0);}
.me9_c01360{transform:matrix(0.199835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199835,0.000000,0.000000,0.250000,0,0);}
.m9c_c01360{transform:matrix(0.201305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201305,0.000000,0.000000,0.250000,0,0);}
.m2a_c01360{transform:matrix(0.202399,-0.001619,0.002000,0.249992,0,0);-ms-transform:matrix(0.202399,-0.001619,0.002000,0.249992,0,0);-webkit-transform:matrix(0.202399,-0.001619,0.002000,0.249992,0,0);}
.m96_c01360{transform:matrix(0.203520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203520,0.000000,0.000000,0.250000,0,0);}
.m4a_c01360{transform:matrix(0.204453,-0.001636,0.002000,0.249992,0,0);-ms-transform:matrix(0.204453,-0.001636,0.002000,0.249992,0,0);-webkit-transform:matrix(0.204453,-0.001636,0.002000,0.249992,0,0);}
.m62_c01360{transform:matrix(0.204608,-0.001637,0.002000,0.249992,0,0);-ms-transform:matrix(0.204608,-0.001637,0.002000,0.249992,0,0);-webkit-transform:matrix(0.204608,-0.001637,0.002000,0.249992,0,0);}
.mb5_c01360{transform:matrix(0.204620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204620,0.000000,0.000000,0.250000,0,0);}
.m74_c01360{transform:matrix(0.205048,-0.001640,0.002000,0.249992,0,0);-ms-transform:matrix(0.205048,-0.001640,0.002000,0.249992,0,0);-webkit-transform:matrix(0.205048,-0.001640,0.002000,0.249992,0,0);}
.m64_c01360{transform:matrix(0.205083,-0.001641,0.002000,0.249992,0,0);-ms-transform:matrix(0.205083,-0.001641,0.002000,0.249992,0,0);-webkit-transform:matrix(0.205083,-0.001641,0.002000,0.249992,0,0);}
.mc7_c01360{transform:matrix(0.205770,-0.005556,0.006748,0.249909,0,0);-ms-transform:matrix(0.205770,-0.005556,0.006748,0.249909,0,0);-webkit-transform:matrix(0.205770,-0.005556,0.006748,0.249909,0,0);}
.m7b_c01360{transform:matrix(0.206033,-0.001648,0.002000,0.249992,0,0);-ms-transform:matrix(0.206033,-0.001648,0.002000,0.249992,0,0);-webkit-transform:matrix(0.206033,-0.001648,0.002000,0.249992,0,0);}
.mb1_c01360{transform:matrix(0.206060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206060,0.000000,0.000000,0.250000,0,0);}
.m3f_c01360{transform:matrix(0.206253,-0.001650,0.002000,0.249992,0,0);-ms-transform:matrix(0.206253,-0.001650,0.002000,0.249992,0,0);-webkit-transform:matrix(0.206253,-0.001650,0.002000,0.249992,0,0);}
.mfa_c01360{transform:matrix(0.206470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206470,0.000000,0.000000,0.250000,0,0);}
.m7e_c01360{transform:matrix(0.206593,-0.001653,0.002000,0.249992,0,0);-ms-transform:matrix(0.206593,-0.001653,0.002000,0.249992,0,0);-webkit-transform:matrix(0.206593,-0.001653,0.002000,0.249992,0,0);}
.m81_c01360{transform:matrix(0.206998,-0.001656,0.002000,0.249992,0,0);-ms-transform:matrix(0.206998,-0.001656,0.002000,0.249992,0,0);-webkit-transform:matrix(0.206998,-0.001656,0.002000,0.249992,0,0);}
.m9b_c01360{transform:matrix(0.207425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207425,0.000000,0.000000,0.250000,0,0);}
.m100_c01360{transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207965,0.000000,0.000000,0.250000,0,0);}
.m3c_c01360{transform:matrix(0.208138,-0.001665,0.002000,0.249992,0,0);-ms-transform:matrix(0.208138,-0.001665,0.002000,0.249992,0,0);-webkit-transform:matrix(0.208138,-0.001665,0.002000,0.249992,0,0);}
.m88_c01360{transform:matrix(0.208273,-0.001666,0.002000,0.249992,0,0);-ms-transform:matrix(0.208273,-0.001666,0.002000,0.249992,0,0);-webkit-transform:matrix(0.208273,-0.001666,0.002000,0.249992,0,0);}
.m10d_c01360{transform:matrix(0.208285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208285,0.000000,0.000000,0.250000,0,0);}
.m8a_c01360{transform:matrix(0.208343,-0.001667,0.002000,0.249992,0,0);-ms-transform:matrix(0.208343,-0.001667,0.002000,0.249992,0,0);-webkit-transform:matrix(0.208343,-0.001667,0.002000,0.249992,0,0);}
.m104_c01360{transform:matrix(0.208585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208585,0.000000,0.000000,0.250000,0,0);}
.m78_c01360{transform:matrix(0.208713,-0.001670,0.002000,0.249992,0,0);-ms-transform:matrix(0.208713,-0.001670,0.002000,0.249992,0,0);-webkit-transform:matrix(0.208713,-0.001670,0.002000,0.249992,0,0);}
.m50_c01360{transform:matrix(0.208743,-0.001670,0.002000,0.249992,0,0);-ms-transform:matrix(0.208743,-0.001670,0.002000,0.249992,0,0);-webkit-transform:matrix(0.208743,-0.001670,0.002000,0.249992,0,0);}
.mb3_c01360{transform:matrix(0.208850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208850,0.000000,0.000000,0.250000,0,0);}
.m60_c01360{transform:matrix(0.209213,-0.001674,0.002000,0.249992,0,0);-ms-transform:matrix(0.209213,-0.001674,0.002000,0.249992,0,0);-webkit-transform:matrix(0.209213,-0.001674,0.002000,0.249992,0,0);}
.m106_c01360{transform:matrix(0.209700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209700,0.000000,0.000000,0.250000,0,0);}
.m41_c01360{transform:matrix(0.209798,-0.001678,0.002000,0.249992,0,0);-ms-transform:matrix(0.209798,-0.001678,0.002000,0.249992,0,0);-webkit-transform:matrix(0.209798,-0.001678,0.002000,0.249992,0,0);}
.m4c_c01360{transform:matrix(0.209873,-0.001679,0.002000,0.249992,0,0);-ms-transform:matrix(0.209873,-0.001679,0.002000,0.249992,0,0);-webkit-transform:matrix(0.209873,-0.001679,0.002000,0.249992,0,0);}
.ma4_c01360{transform:matrix(0.209945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209945,0.000000,0.000000,0.250000,0,0);}
.mff_c01360{transform:matrix(0.209970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209970,0.000000,0.000000,0.250000,0,0);}
.me6_c01360{transform:matrix(0.210010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210010,0.000000,0.000000,0.250000,0,0);}
.m111_c01360{transform:matrix(0.210615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210615,0.000000,0.000000,0.250000,0,0);}
.m3b_c01360{transform:matrix(0.210683,-0.001685,0.002000,0.249992,0,0);-ms-transform:matrix(0.210683,-0.001685,0.002000,0.249992,0,0);-webkit-transform:matrix(0.210683,-0.001685,0.002000,0.249992,0,0);}
.m68_c01360{transform:matrix(0.211453,-0.001692,0.002000,0.249992,0,0);-ms-transform:matrix(0.211453,-0.001692,0.002000,0.249992,0,0);-webkit-transform:matrix(0.211453,-0.001692,0.002000,0.249992,0,0);}
.m76_c01360{transform:matrix(0.211573,-0.001693,0.002000,0.249992,0,0);-ms-transform:matrix(0.211573,-0.001693,0.002000,0.249992,0,0);-webkit-transform:matrix(0.211573,-0.001693,0.002000,0.249992,0,0);}
.m55_c01360{transform:matrix(0.211623,-0.001693,0.002000,0.249992,0,0);-ms-transform:matrix(0.211623,-0.001693,0.002000,0.249992,0,0);-webkit-transform:matrix(0.211623,-0.001693,0.002000,0.249992,0,0);}
.ma1_c01360{transform:matrix(0.211770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211770,0.000000,0.000000,0.250000,0,0);}
.m10e_c01360{transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);}
.m65_c01360{transform:matrix(0.212568,-0.001701,0.002000,0.249992,0,0);-ms-transform:matrix(0.212568,-0.001701,0.002000,0.249992,0,0);-webkit-transform:matrix(0.212568,-0.001701,0.002000,0.249992,0,0);}
.m114_c01360{transform:matrix(0.213105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213105,0.000000,0.000000,0.250000,0,0);}
.meb_c01360{transform:matrix(0.213120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213120,0.000000,0.000000,0.250000,0,0);}
.m59_c01360{transform:matrix(0.213663,-0.001709,0.002000,0.249992,0,0);-ms-transform:matrix(0.213663,-0.001709,0.002000,0.249992,0,0);-webkit-transform:matrix(0.213663,-0.001709,0.002000,0.249992,0,0);}
.mc3_c01360{transform:matrix(0.213917,-0.005776,0.006748,0.249909,0,0);-ms-transform:matrix(0.213917,-0.005776,0.006748,0.249909,0,0);-webkit-transform:matrix(0.213917,-0.005776,0.006748,0.249909,0,0);}
.m8b_c01360{transform:matrix(0.214153,-0.001713,0.002000,0.249992,0,0);-ms-transform:matrix(0.214153,-0.001713,0.002000,0.249992,0,0);-webkit-transform:matrix(0.214153,-0.001713,0.002000,0.249992,0,0);}
.m8e_c01360{transform:matrix(0.214173,-0.001713,0.002000,0.249992,0,0);-ms-transform:matrix(0.214173,-0.001713,0.002000,0.249992,0,0);-webkit-transform:matrix(0.214173,-0.001713,0.002000,0.249992,0,0);}
.m9d_c01360{transform:matrix(0.214555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214555,0.000000,0.000000,0.250000,0,0);}
.m92_c01360{transform:matrix(0.214665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214665,0.000000,0.000000,0.250000,0,0);}
.m102_c01360{transform:matrix(0.214705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214705,0.000000,0.000000,0.250000,0,0);}
.m7c_c01360{transform:matrix(0.215078,-0.001721,0.002000,0.249992,0,0);-ms-transform:matrix(0.215078,-0.001721,0.002000,0.249992,0,0);-webkit-transform:matrix(0.215078,-0.001721,0.002000,0.249992,0,0);}
.m113_c01360{transform:matrix(0.215105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215105,0.000000,0.000000,0.250000,0,0);}
.m80_c01360{transform:matrix(0.216698,-0.001734,0.002000,0.249992,0,0);-ms-transform:matrix(0.216698,-0.001734,0.002000,0.249992,0,0);-webkit-transform:matrix(0.216698,-0.001734,0.002000,0.249992,0,0);}
.mc8_c01360{transform:matrix(0.217121,-0.005862,0.006748,0.249909,0,0);-ms-transform:matrix(0.217121,-0.005862,0.006748,0.249909,0,0);-webkit-transform:matrix(0.217121,-0.005862,0.006748,0.249909,0,0);}
.m10a_c01360{transform:matrix(0.217375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217375,0.000000,0.000000,0.250000,0,0);}
.m112_c01360{transform:matrix(0.217530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217530,0.000000,0.000000,0.250000,0,0);}
.m82_c01360{transform:matrix(0.217598,-0.001741,0.002000,0.249992,0,0);-ms-transform:matrix(0.217598,-0.001741,0.002000,0.249992,0,0);-webkit-transform:matrix(0.217598,-0.001741,0.002000,0.249992,0,0);}
.m5_c01360{transform:matrix(0.217773,-0.001742,0.002000,0.249992,0,0);-ms-transform:matrix(0.217773,-0.001742,0.002000,0.249992,0,0);-webkit-transform:matrix(0.217773,-0.001742,0.002000,0.249992,0,0);}
.m3d_c01360{transform:matrix(0.219028,-0.001752,0.002000,0.249992,0,0);-ms-transform:matrix(0.219028,-0.001752,0.002000,0.249992,0,0);-webkit-transform:matrix(0.219028,-0.001752,0.002000,0.249992,0,0);}
.me4_c01360{transform:matrix(0.219180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219180,0.000000,0.000000,0.250000,0,0);}
.m84_c01360{transform:matrix(0.219188,-0.001754,0.002000,0.249992,0,0);-ms-transform:matrix(0.219188,-0.001754,0.002000,0.249992,0,0);-webkit-transform:matrix(0.219188,-0.001754,0.002000,0.249992,0,0);}
.m46_c01360{transform:matrix(0.219698,-0.001758,0.002000,0.249992,0,0);-ms-transform:matrix(0.219698,-0.001758,0.002000,0.249992,0,0);-webkit-transform:matrix(0.219698,-0.001758,0.002000,0.249992,0,0);}
.m1e_c01360{transform:matrix(0.220223,-0.001762,0.002000,0.249992,0,0);-ms-transform:matrix(0.220223,-0.001762,0.002000,0.249992,0,0);-webkit-transform:matrix(0.220223,-0.001762,0.002000,0.249992,0,0);}
.m10f_c01360{transform:matrix(0.220370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220370,0.000000,0.000000,0.250000,0,0);}
.ma_c01360{transform:matrix(0.220868,-0.001767,0.002000,0.249992,0,0);-ms-transform:matrix(0.220868,-0.001767,0.002000,0.249992,0,0);-webkit-transform:matrix(0.220868,-0.001767,0.002000,0.249992,0,0);}
.m9f_c01360{transform:matrix(0.221600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221600,0.000000,0.000000,0.250000,0,0);}
.m67_c01360{transform:matrix(0.221673,-0.001773,0.002000,0.249992,0,0);-ms-transform:matrix(0.221673,-0.001773,0.002000,0.249992,0,0);-webkit-transform:matrix(0.221673,-0.001773,0.002000,0.249992,0,0);}
.ma3_c01360{transform:matrix(0.221900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221900,0.000000,0.000000,0.250000,0,0);}
.ma5_c01360{transform:matrix(0.222255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222255,0.000000,0.000000,0.250000,0,0);}
.m72_c01360{transform:matrix(0.222418,-0.001779,0.002000,0.249992,0,0);-ms-transform:matrix(0.222418,-0.001779,0.002000,0.249992,0,0);-webkit-transform:matrix(0.222418,-0.001779,0.002000,0.249992,0,0);}
.m42_c01360{transform:matrix(0.222748,-0.001782,0.002000,0.249992,0,0);-ms-transform:matrix(0.222748,-0.001782,0.002000,0.249992,0,0);-webkit-transform:matrix(0.222748,-0.001782,0.002000,0.249992,0,0);}
.m79_c01360{transform:matrix(0.223523,-0.001788,0.002000,0.249992,0,0);-ms-transform:matrix(0.223523,-0.001788,0.002000,0.249992,0,0);-webkit-transform:matrix(0.223523,-0.001788,0.002000,0.249992,0,0);}
.m1a_c01360{transform:matrix(0.223668,-0.001789,0.002000,0.249992,0,0);-ms-transform:matrix(0.223668,-0.001789,0.002000,0.249992,0,0);-webkit-transform:matrix(0.223668,-0.001789,0.002000,0.249992,0,0);}
.m66_c01360{transform:matrix(0.223713,-0.001790,0.002000,0.249992,0,0);-ms-transform:matrix(0.223713,-0.001790,0.002000,0.249992,0,0);-webkit-transform:matrix(0.223713,-0.001790,0.002000,0.249992,0,0);}
.m63_c01360{transform:matrix(0.223888,-0.001791,0.002000,0.249992,0,0);-ms-transform:matrix(0.223888,-0.001791,0.002000,0.249992,0,0);-webkit-transform:matrix(0.223888,-0.001791,0.002000,0.249992,0,0);}
.m8f_c01360{transform:matrix(0.223953,-0.001792,0.002000,0.249992,0,0);-ms-transform:matrix(0.223953,-0.001792,0.002000,0.249992,0,0);-webkit-transform:matrix(0.223953,-0.001792,0.002000,0.249992,0,0);}
.m8_c01360{transform:matrix(0.224048,-0.001792,0.002000,0.249992,0,0);-ms-transform:matrix(0.224048,-0.001792,0.002000,0.249992,0,0);-webkit-transform:matrix(0.224048,-0.001792,0.002000,0.249992,0,0);}
.m4d_c01360{transform:matrix(0.224873,-0.001799,0.002000,0.249992,0,0);-ms-transform:matrix(0.224873,-0.001799,0.002000,0.249992,0,0);-webkit-transform:matrix(0.224873,-0.001799,0.002000,0.249992,0,0);}
.mc5_c01360{transform:matrix(0.225458,-0.006087,0.006748,0.249909,0,0);-ms-transform:matrix(0.225458,-0.006087,0.006748,0.249909,0,0);-webkit-transform:matrix(0.225458,-0.006087,0.006748,0.249909,0,0);}
.m6a_c01360{transform:matrix(0.225653,-0.001805,0.002000,0.249992,0,0);-ms-transform:matrix(0.225653,-0.001805,0.002000,0.249992,0,0);-webkit-transform:matrix(0.225653,-0.001805,0.002000,0.249992,0,0);}
.ma9_c01360{transform:matrix(0.226575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226575,0.000000,0.000000,0.250000,0,0);}
.m24_c01360{transform:matrix(0.227098,-0.001817,0.002000,0.249992,0,0);-ms-transform:matrix(0.227098,-0.001817,0.002000,0.249992,0,0);-webkit-transform:matrix(0.227098,-0.001817,0.002000,0.249992,0,0);}
.ma2_c01360{transform:matrix(0.227690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227690,0.000000,0.000000,0.250000,0,0);}
.mec_c01360{transform:matrix(0.227980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227980,0.000000,0.000000,0.250000,0,0);}
.m4f_c01360{transform:matrix(0.228003,-0.001824,0.002000,0.249992,0,0);-ms-transform:matrix(0.228003,-0.001824,0.002000,0.249992,0,0);-webkit-transform:matrix(0.228003,-0.001824,0.002000,0.249992,0,0);}
.m101_c01360{transform:matrix(0.228220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228220,0.000000,0.000000,0.250000,0,0);}
.m77_c01360{transform:matrix(0.228438,-0.001828,0.002000,0.249992,0,0);-ms-transform:matrix(0.228438,-0.001828,0.002000,0.249992,0,0);-webkit-transform:matrix(0.228438,-0.001828,0.002000,0.249992,0,0);}
.m3e_c01360{transform:matrix(0.228908,-0.001831,0.002000,0.249992,0,0);-ms-transform:matrix(0.228908,-0.001831,0.002000,0.249992,0,0);-webkit-transform:matrix(0.228908,-0.001831,0.002000,0.249992,0,0);}
.m6e_c01360{transform:matrix(0.229583,-0.001837,0.002000,0.249992,0,0);-ms-transform:matrix(0.229583,-0.001837,0.002000,0.249992,0,0);-webkit-transform:matrix(0.229583,-0.001837,0.002000,0.249992,0,0);}
.m4b_c01360{transform:matrix(0.229638,-0.001837,0.002000,0.249992,0,0);-ms-transform:matrix(0.229638,-0.001837,0.002000,0.249992,0,0);-webkit-transform:matrix(0.229638,-0.001837,0.002000,0.249992,0,0);}
.m26_c01360{transform:matrix(0.229768,-0.001838,0.002000,0.249992,0,0);-ms-transform:matrix(0.229768,-0.001838,0.002000,0.249992,0,0);-webkit-transform:matrix(0.229768,-0.001838,0.002000,0.249992,0,0);}
.m83_c01360{transform:matrix(0.230238,-0.001842,0.002000,0.249992,0,0);-ms-transform:matrix(0.230238,-0.001842,0.002000,0.249992,0,0);-webkit-transform:matrix(0.230238,-0.001842,0.002000,0.249992,0,0);}
.m10b_c01360{transform:matrix(0.230305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230305,0.000000,0.000000,0.250000,0,0);}
.m40_c01360{transform:matrix(0.230308,-0.001842,0.002000,0.249992,0,0);-ms-transform:matrix(0.230308,-0.001842,0.002000,0.249992,0,0);-webkit-transform:matrix(0.230308,-0.001842,0.002000,0.249992,0,0);}
.m7a_c01360{transform:matrix(0.230318,-0.001843,0.002000,0.249992,0,0);-ms-transform:matrix(0.230318,-0.001843,0.002000,0.249992,0,0);-webkit-transform:matrix(0.230318,-0.001843,0.002000,0.249992,0,0);}
.m47_c01360{transform:matrix(0.230788,-0.001846,0.002000,0.249992,0,0);-ms-transform:matrix(0.230788,-0.001846,0.002000,0.249992,0,0);-webkit-transform:matrix(0.230788,-0.001846,0.002000,0.249992,0,0);}
.m6d_c01360{transform:matrix(0.231778,-0.001854,0.002000,0.249992,0,0);-ms-transform:matrix(0.231778,-0.001854,0.002000,0.249992,0,0);-webkit-transform:matrix(0.231778,-0.001854,0.002000,0.249992,0,0);}
.m70_c01360{transform:matrix(0.231943,-0.001856,0.002000,0.249992,0,0);-ms-transform:matrix(0.231943,-0.001856,0.002000,0.249992,0,0);-webkit-transform:matrix(0.231943,-0.001856,0.002000,0.249992,0,0);}
.m49_c01360{transform:matrix(0.232208,-0.001858,0.002000,0.249992,0,0);-ms-transform:matrix(0.232208,-0.001858,0.002000,0.249992,0,0);-webkit-transform:matrix(0.232208,-0.001858,0.002000,0.249992,0,0);}
.m93_c01360{transform:matrix(0.232355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232355,0.000000,0.000000,0.250000,0,0);}
.m51_c01360{transform:matrix(0.232628,-0.001861,0.002000,0.249992,0,0);-ms-transform:matrix(0.232628,-0.001861,0.002000,0.249992,0,0);-webkit-transform:matrix(0.232628,-0.001861,0.002000,0.249992,0,0);}
.m71_c01360{transform:matrix(0.232673,-0.001861,0.002000,0.249992,0,0);-ms-transform:matrix(0.232673,-0.001861,0.002000,0.249992,0,0);-webkit-transform:matrix(0.232673,-0.001861,0.002000,0.249992,0,0);}
.m98_c01360{transform:matrix(0.232975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232975,0.000000,0.000000,0.250000,0,0);}
.mad_c01360{transform:matrix(0.233160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233160,0.000000,0.000000,0.250000,0,0);}
.m115_c01360{transform:matrix(0.233430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233430,0.000000,0.000000,0.250000,0,0);}
.m44_c01360{transform:matrix(0.233728,-0.001870,0.002000,0.249992,0,0);-ms-transform:matrix(0.233728,-0.001870,0.002000,0.249992,0,0);-webkit-transform:matrix(0.233728,-0.001870,0.002000,0.249992,0,0);}
.m75_c01360{transform:matrix(0.234378,-0.001875,0.002000,0.249992,0,0);-ms-transform:matrix(0.234378,-0.001875,0.002000,0.249992,0,0);-webkit-transform:matrix(0.234378,-0.001875,0.002000,0.249992,0,0);}
.m7d_c01360{transform:matrix(0.234852,-0.001879,0.002000,0.249992,0,0);-ms-transform:matrix(0.234852,-0.001879,0.002000,0.249992,0,0);-webkit-transform:matrix(0.234852,-0.001879,0.002000,0.249992,0,0);}
.m52_c01360{transform:matrix(0.234927,-0.001879,0.002000,0.249992,0,0);-ms-transform:matrix(0.234927,-0.001879,0.002000,0.249992,0,0);-webkit-transform:matrix(0.234927,-0.001879,0.002000,0.249992,0,0);}
.mb0_c01360{transform:matrix(0.235090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235090,0.000000,0.000000,0.250000,0,0);}
.m58_c01360{transform:matrix(0.235662,-0.001885,0.002000,0.249992,0,0);-ms-transform:matrix(0.235662,-0.001885,0.002000,0.249992,0,0);-webkit-transform:matrix(0.235662,-0.001885,0.002000,0.249992,0,0);}
.m28_c01360{transform:matrix(0.236292,-0.001890,0.002000,0.249992,0,0);-ms-transform:matrix(0.236292,-0.001890,0.002000,0.249992,0,0);-webkit-transform:matrix(0.236292,-0.001890,0.002000,0.249992,0,0);}
.ma0_c01360{transform:matrix(0.236640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236640,0.000000,0.000000,0.250000,0,0);}
.mc2_c01360{transform:matrix(0.236684,-0.006390,0.006748,0.249909,0,0);-ms-transform:matrix(0.236684,-0.006390,0.006748,0.249909,0,0);-webkit-transform:matrix(0.236684,-0.006390,0.006748,0.249909,0,0);}
.m6f_c01360{transform:matrix(0.237012,-0.001896,0.002000,0.249992,0,0);-ms-transform:matrix(0.237012,-0.001896,0.002000,0.249992,0,0);-webkit-transform:matrix(0.237012,-0.001896,0.002000,0.249992,0,0);}
.m21_c01360{transform:matrix(0.237057,-0.001896,0.002000,0.249992,0,0);-ms-transform:matrix(0.237057,-0.001896,0.002000,0.249992,0,0);-webkit-transform:matrix(0.237057,-0.001896,0.002000,0.249992,0,0);}
.mc6_c01360{transform:matrix(0.237588,-0.006415,0.006748,0.249909,0,0);-ms-transform:matrix(0.237588,-0.006415,0.006748,0.249909,0,0);-webkit-transform:matrix(0.237588,-0.006415,0.006748,0.249909,0,0);}
.mc4_c01360{transform:matrix(0.237683,-0.006417,0.006748,0.249909,0,0);-ms-transform:matrix(0.237683,-0.006417,0.006748,0.249909,0,0);-webkit-transform:matrix(0.237683,-0.006417,0.006748,0.249909,0,0);}
.m25_c01360{transform:matrix(0.237697,-0.001902,0.002000,0.249992,0,0);-ms-transform:matrix(0.237697,-0.001902,0.002000,0.249992,0,0);-webkit-transform:matrix(0.237697,-0.001902,0.002000,0.249992,0,0);}
.mf8_c01360{transform:matrix(0.237770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237770,0.000000,0.000000,0.250000,0,0);}
.m54_c01360{transform:matrix(0.237877,-0.001903,0.002000,0.249992,0,0);-ms-transform:matrix(0.237877,-0.001903,0.002000,0.249992,0,0);-webkit-transform:matrix(0.237877,-0.001903,0.002000,0.249992,0,0);}
.m7f_c01360{transform:matrix(0.238007,-0.001904,0.002000,0.249992,0,0);-ms-transform:matrix(0.238007,-0.001904,0.002000,0.249992,0,0);-webkit-transform:matrix(0.238007,-0.001904,0.002000,0.249992,0,0);}
.mc9_c01360{transform:matrix(0.238263,-0.006433,0.006748,0.249909,0,0);-ms-transform:matrix(0.238263,-0.006433,0.006748,0.249909,0,0);-webkit-transform:matrix(0.238263,-0.006433,0.006748,0.249909,0,0);}
.m48_c01360{transform:matrix(0.238382,-0.001907,0.002000,0.249992,0,0);-ms-transform:matrix(0.238382,-0.001907,0.002000,0.249992,0,0);-webkit-transform:matrix(0.238382,-0.001907,0.002000,0.249992,0,0);}
.mfb_c01360{transform:matrix(0.238400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238400,0.000000,0.000000,0.250000,0,0);}
.m27_c01360{transform:matrix(0.239037,-0.001912,0.002000,0.249992,0,0);-ms-transform:matrix(0.239037,-0.001912,0.002000,0.249992,0,0);-webkit-transform:matrix(0.239037,-0.001912,0.002000,0.249992,0,0);}
.m61_c01360{transform:matrix(0.239192,-0.001914,0.002000,0.249992,0,0);-ms-transform:matrix(0.239192,-0.001914,0.002000,0.249992,0,0);-webkit-transform:matrix(0.239192,-0.001914,0.002000,0.249992,0,0);}
.m4e_c01360{transform:matrix(0.239352,-0.001915,0.002000,0.249992,0,0);-ms-transform:matrix(0.239352,-0.001915,0.002000,0.249992,0,0);-webkit-transform:matrix(0.239352,-0.001915,0.002000,0.249992,0,0);}
.m5b_c01360{transform:matrix(0.240077,-0.001921,0.002000,0.249992,0,0);-ms-transform:matrix(0.240077,-0.001921,0.002000,0.249992,0,0);-webkit-transform:matrix(0.240077,-0.001921,0.002000,0.249992,0,0);}
.m53_c01360{transform:matrix(0.240207,-0.001922,0.002000,0.249992,0,0);-ms-transform:matrix(0.240207,-0.001922,0.002000,0.249992,0,0);-webkit-transform:matrix(0.240207,-0.001922,0.002000,0.249992,0,0);}
.m9e_c01360{transform:matrix(0.240235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240235,0.000000,0.000000,0.250000,0,0);}
.m3_c01360{transform:matrix(0.241062,-0.001928,0.002000,0.249992,0,0);-ms-transform:matrix(0.241062,-0.001928,0.002000,0.249992,0,0);-webkit-transform:matrix(0.241062,-0.001928,0.002000,0.249992,0,0);}
.mf_c01360{transform:matrix(0.241117,-0.001929,0.002000,0.249992,0,0);-ms-transform:matrix(0.241117,-0.001929,0.002000,0.249992,0,0);-webkit-transform:matrix(0.241117,-0.001929,0.002000,0.249992,0,0);}
.m1c_c01360{transform:matrix(0.241917,-0.001935,0.002000,0.249992,0,0);-ms-transform:matrix(0.241917,-0.001935,0.002000,0.249992,0,0);-webkit-transform:matrix(0.241917,-0.001935,0.002000,0.249992,0,0);}
.m6b_c01360{transform:matrix(0.242017,-0.001936,0.002000,0.249992,0,0);-ms-transform:matrix(0.242017,-0.001936,0.002000,0.249992,0,0);-webkit-transform:matrix(0.242017,-0.001936,0.002000,0.249992,0,0);}
.mac_c01360{transform:matrix(0.242080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242080,0.000000,0.000000,0.250000,0,0);}
.m56_c01360{transform:matrix(0.242782,-0.001942,0.002000,0.249992,0,0);-ms-transform:matrix(0.242782,-0.001942,0.002000,0.249992,0,0);-webkit-transform:matrix(0.242782,-0.001942,0.002000,0.249992,0,0);}
.md4_c01360{transform:matrix(0.243120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243120,0.000000,0.000000,0.250000,0,0);}
.ma7_c01360{transform:matrix(0.243290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243290,0.000000,0.000000,0.250000,0,0);}
.maa_c01360{transform:matrix(0.243885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243885,0.000000,0.000000,0.250000,0,0);}
.m18_c01360{transform:matrix(0.244097,-0.001953,0.002000,0.249992,0,0);-ms-transform:matrix(0.244097,-0.001953,0.002000,0.249992,0,0);-webkit-transform:matrix(0.244097,-0.001953,0.002000,0.249992,0,0);}
.mf4_c01360{transform:matrix(0.244105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244105,0.000000,0.000000,0.250000,0,0);}
.m9a_c01360{transform:matrix(0.244335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244335,0.000000,0.000000,0.250000,0,0);}
.m95_c01360{transform:matrix(0.244605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244605,0.000000,0.000000,0.250000,0,0);}
.m12_c01360{transform:matrix(0.245227,-0.001962,0.002000,0.249992,0,0);-ms-transform:matrix(0.245227,-0.001962,0.002000,0.249992,0,0);-webkit-transform:matrix(0.245227,-0.001962,0.002000,0.249992,0,0);}
.m23_c01360{transform:matrix(0.245402,-0.001963,0.002000,0.249992,0,0);-ms-transform:matrix(0.245402,-0.001963,0.002000,0.249992,0,0);-webkit-transform:matrix(0.245402,-0.001963,0.002000,0.249992,0,0);}
.m29_c01360{transform:matrix(0.245832,-0.001967,0.002000,0.249992,0,0);-ms-transform:matrix(0.245832,-0.001967,0.002000,0.249992,0,0);-webkit-transform:matrix(0.245832,-0.001967,0.002000,0.249992,0,0);}
.m2d_c01360{transform:matrix(0.245897,-0.001967,0.002000,0.249992,0,0);-ms-transform:matrix(0.245897,-0.001967,0.002000,0.249992,0,0);-webkit-transform:matrix(0.245897,-0.001967,0.002000,0.249992,0,0);}
.mf7_c01360{transform:matrix(0.246315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246315,0.000000,0.000000,0.250000,0,0);}
.md0_c01360{transform:matrix(0.246335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246335,0.000000,0.000000,0.250000,0,0);}
.m5a_c01360{transform:matrix(0.247537,-0.001980,0.002000,0.249992,0,0);-ms-transform:matrix(0.247537,-0.001980,0.002000,0.249992,0,0);-webkit-transform:matrix(0.247537,-0.001980,0.002000,0.249992,0,0);}
.m5d_c01360{transform:matrix(0.247707,-0.001982,0.002000,0.249992,0,0);-ms-transform:matrix(0.247707,-0.001982,0.002000,0.249992,0,0);-webkit-transform:matrix(0.247707,-0.001982,0.002000,0.249992,0,0);}
.ma8_c01360{transform:matrix(0.248225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248225,0.000000,0.000000,0.250000,0,0);}
.m73_c01360{transform:matrix(0.248302,-0.001986,0.002000,0.249992,0,0);-ms-transform:matrix(0.248302,-0.001986,0.002000,0.249992,0,0);-webkit-transform:matrix(0.248302,-0.001986,0.002000,0.249992,0,0);}
.m6_c01360{transform:matrix(0.248842,-0.001991,0.002000,0.249992,0,0);-ms-transform:matrix(0.248842,-0.001991,0.002000,0.249992,0,0);-webkit-transform:matrix(0.248842,-0.001991,0.002000,0.249992,0,0);}
.m13_c01360{transform:matrix(0.249952,-0.002000,0.002000,0.249992,0,0);-ms-transform:matrix(0.249952,-0.002000,0.002000,0.249992,0,0);-webkit-transform:matrix(0.249952,-0.002000,0.002000,0.249992,0,0);}
.m4_c01360{transform:matrix(0.250242,-0.002002,0.002000,0.249992,0,0);-ms-transform:matrix(0.250242,-0.002002,0.002000,0.249992,0,0);-webkit-transform:matrix(0.250242,-0.002002,0.002000,0.249992,0,0);}
.md2_c01360{transform:matrix(0.251030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251030,0.000000,0.000000,0.250000,0,0);}
.mf5_c01360{transform:matrix(0.251100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251100,0.000000,0.000000,0.250000,0,0);}
.mf6_c01360{transform:matrix(0.251445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251445,0.000000,0.000000,0.250000,0,0);}
.mb_c01360{transform:matrix(0.251567,-0.002013,0.002000,0.249992,0,0);-ms-transform:matrix(0.251567,-0.002013,0.002000,0.249992,0,0);-webkit-transform:matrix(0.251567,-0.002013,0.002000,0.249992,0,0);}
.maf_c01360{transform:matrix(0.251670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251670,0.000000,0.000000,0.250000,0,0);}
.m16_c01360{transform:matrix(0.252707,-0.002022,0.002000,0.249992,0,0);-ms-transform:matrix(0.252707,-0.002022,0.002000,0.249992,0,0);-webkit-transform:matrix(0.252707,-0.002022,0.002000,0.249992,0,0);}
.md3_c01360{transform:matrix(0.252810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252810,0.000000,0.000000,0.250000,0,0);}
.m10_c01360{transform:matrix(0.252847,-0.002023,0.002000,0.249992,0,0);-ms-transform:matrix(0.252847,-0.002023,0.002000,0.249992,0,0);-webkit-transform:matrix(0.252847,-0.002023,0.002000,0.249992,0,0);}
.m9_c01360{transform:matrix(0.253552,-0.002028,0.002000,0.249992,0,0);-ms-transform:matrix(0.253552,-0.002028,0.002000,0.249992,0,0);-webkit-transform:matrix(0.253552,-0.002028,0.002000,0.249992,0,0);}
.m91_c01360{transform:matrix(0.253735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253735,0.000000,0.000000,0.250000,0,0);}
.m1f_c01360{transform:matrix(0.253862,-0.002031,0.002000,0.249992,0,0);-ms-transform:matrix(0.253862,-0.002031,0.002000,0.249992,0,0);-webkit-transform:matrix(0.253862,-0.002031,0.002000,0.249992,0,0);}
.m99_c01360{transform:matrix(0.254045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254045,0.000000,0.000000,0.250000,0,0);}
.mab_c01360{transform:matrix(0.254065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254065,0.000000,0.000000,0.250000,0,0);}
.m15_c01360{transform:matrix(0.254407,-0.002035,0.002000,0.249992,0,0);-ms-transform:matrix(0.254407,-0.002035,0.002000,0.249992,0,0);-webkit-transform:matrix(0.254407,-0.002035,0.002000,0.249992,0,0);}
.m11_c01360{transform:matrix(0.255192,-0.002042,0.002000,0.249992,0,0);-ms-transform:matrix(0.255192,-0.002042,0.002000,0.249992,0,0);-webkit-transform:matrix(0.255192,-0.002042,0.002000,0.249992,0,0);}
.m97_c01360{transform:matrix(0.255450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255450,0.000000,0.000000,0.250000,0,0);}
.m2c_c01360{transform:matrix(0.255592,-0.002045,0.002000,0.249992,0,0);-ms-transform:matrix(0.255592,-0.002045,0.002000,0.249992,0,0);-webkit-transform:matrix(0.255592,-0.002045,0.002000,0.249992,0,0);}
.m5c_c01360{transform:matrix(0.255857,-0.002047,0.002000,0.249992,0,0);-ms-transform:matrix(0.255857,-0.002047,0.002000,0.249992,0,0);-webkit-transform:matrix(0.255857,-0.002047,0.002000,0.249992,0,0);}
.m2b_c01360{transform:matrix(0.256277,-0.002050,0.002000,0.249992,0,0);-ms-transform:matrix(0.256277,-0.002050,0.002000,0.249992,0,0);-webkit-transform:matrix(0.256277,-0.002050,0.002000,0.249992,0,0);}
.mae_c01360{transform:matrix(0.256430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256430,0.000000,0.000000,0.250000,0,0);}
.mce_c01360{transform:matrix(0.257210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257210,0.000000,0.000000,0.250000,0,0);}
.m0_c01360{transform:matrix(0.257225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257225,0.000000,0.000000,0.250000,0,0);}
.m5e_c01360{transform:matrix(0.257862,-0.002063,0.002000,0.249992,0,0);-ms-transform:matrix(0.257862,-0.002063,0.002000,0.249992,0,0);-webkit-transform:matrix(0.257862,-0.002063,0.002000,0.249992,0,0);}
.m94_c01360{transform:matrix(0.258020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258020,0.000000,0.000000,0.250000,0,0);}
.me2_c01360{transform:matrix(0.258288,-0.003358,0.003250,0.249979,0,0);-ms-transform:matrix(0.258288,-0.003358,0.003250,0.249979,0,0);-webkit-transform:matrix(0.258288,-0.003358,0.003250,0.249979,0,0);}
.mdc_c01360{transform:matrix(0.258543,-0.003361,0.003250,0.249979,0,0);-ms-transform:matrix(0.258543,-0.003361,0.003250,0.249979,0,0);-webkit-transform:matrix(0.258543,-0.003361,0.003250,0.249979,0,0);}
.m22_c01360{transform:matrix(0.258612,-0.002069,0.002000,0.249992,0,0);-ms-transform:matrix(0.258612,-0.002069,0.002000,0.249992,0,0);-webkit-transform:matrix(0.258612,-0.002069,0.002000,0.249992,0,0);}
.m57_c01360{transform:matrix(0.259077,-0.002073,0.002000,0.249992,0,0);-ms-transform:matrix(0.259077,-0.002073,0.002000,0.249992,0,0);-webkit-transform:matrix(0.259077,-0.002073,0.002000,0.249992,0,0);}
.mc_c01360{transform:matrix(0.259872,-0.002079,0.002000,0.249992,0,0);-ms-transform:matrix(0.259872,-0.002079,0.002000,0.249992,0,0);-webkit-transform:matrix(0.259872,-0.002079,0.002000,0.249992,0,0);}
.m7_c01360{transform:matrix(0.260012,-0.002080,0.002000,0.249992,0,0);-ms-transform:matrix(0.260012,-0.002080,0.002000,0.249992,0,0);-webkit-transform:matrix(0.260012,-0.002080,0.002000,0.249992,0,0);}
.mf0_c01360{transform:matrix(0.261760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261760,0.000000,0.000000,0.250000,0,0);}
.ma6_c01360{transform:matrix(0.261805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261805,0.000000,0.000000,0.250000,0,0);}
.m14_c01360{transform:matrix(0.262602,-0.002101,0.002000,0.249992,0,0);-ms-transform:matrix(0.262602,-0.002101,0.002000,0.249992,0,0);-webkit-transform:matrix(0.262602,-0.002101,0.002000,0.249992,0,0);}
.m17_c01360{transform:matrix(0.269261,-0.002154,0.002000,0.249992,0,0);-ms-transform:matrix(0.269261,-0.002154,0.002000,0.249992,0,0);-webkit-transform:matrix(0.269261,-0.002154,0.002000,0.249992,0,0);}
.mcd_c01360{transform:matrix(0.269495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269495,0.000000,0.000000,0.250000,0,0);}
.mcb_c01360{transform:matrix(0.269665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269665,0.000000,0.000000,0.250000,0,0);}
.m20_c01360{transform:matrix(0.275226,-0.002202,0.002000,0.249992,0,0);-ms-transform:matrix(0.275226,-0.002202,0.002000,0.249992,0,0);-webkit-transform:matrix(0.275226,-0.002202,0.002000,0.249992,0,0);}
.mf3_c01360{transform:matrix(0.278955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278955,0.000000,0.000000,0.250000,0,0);}
.m1d_c01360{transform:matrix(0.283076,-0.002265,0.002000,0.249992,0,0);-ms-transform:matrix(0.283076,-0.002265,0.002000,0.249992,0,0);-webkit-transform:matrix(0.283076,-0.002265,0.002000,0.249992,0,0);}
.m19_c01360{transform:matrix(0.290366,-0.002323,0.002000,0.249992,0,0);-ms-transform:matrix(0.290366,-0.002323,0.002000,0.249992,0,0);-webkit-transform:matrix(0.290366,-0.002323,0.002000,0.249992,0,0);}
.m1b_c01360{transform:matrix(0.293051,-0.002344,0.002000,0.249992,0,0);-ms-transform:matrix(0.293051,-0.002344,0.002000,0.249992,0,0);-webkit-transform:matrix(0.293051,-0.002344,0.002000,0.249992,0,0);}
.m109_c01360{transform:matrix(0.295285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295285,0.000000,0.000000,0.250000,0,0);}
.md9_c01360{transform:matrix(0.314653,-0.004090,0.003250,0.249979,0,0);-ms-transform:matrix(0.314653,-0.004090,0.003250,0.249979,0,0);-webkit-transform:matrix(0.314653,-0.004090,0.003250,0.249979,0,0);}
.md8_c01360{transform:matrix(0.323363,-0.004204,0.003250,0.249979,0,0);-ms-transform:matrix(0.323363,-0.004204,0.003250,0.249979,0,0);-webkit-transform:matrix(0.323363,-0.004204,0.003250,0.249979,0,0);}
.m116_c01360{transform:matrix(0.324425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324425,0.000000,0.000000,0.250000,0,0);}
.mdd_c01360{transform:matrix(0.324693,-0.004221,0.003250,0.249979,0,0);-ms-transform:matrix(0.324693,-0.004221,0.003250,0.249979,0,0);-webkit-transform:matrix(0.324693,-0.004221,0.003250,0.249979,0,0);}
.mda_c01360{transform:matrix(0.327702,-0.004260,0.003250,0.249979,0,0);-ms-transform:matrix(0.327702,-0.004260,0.003250,0.249979,0,0);-webkit-transform:matrix(0.327702,-0.004260,0.003250,0.249979,0,0);}
.m118_c01360{transform:matrix(0.332415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332415,0.000000,0.000000,0.250000,0,0);}
.mdb_c01360{transform:matrix(0.334282,-0.004346,0.003250,0.249979,0,0);-ms-transform:matrix(0.334282,-0.004346,0.003250,0.249979,0,0);-webkit-transform:matrix(0.334282,-0.004346,0.003250,0.249979,0,0);}
.me1_c01360{transform:matrix(0.334702,-0.004351,0.003250,0.249979,0,0);-ms-transform:matrix(0.334702,-0.004351,0.003250,0.249979,0,0);-webkit-transform:matrix(0.334702,-0.004351,0.003250,0.249979,0,0);}
.md7_c01360{transform:matrix(0.339146,-0.004409,0.003250,0.249979,0,0);-ms-transform:matrix(0.339146,-0.004409,0.003250,0.249979,0,0);-webkit-transform:matrix(0.339146,-0.004409,0.003250,0.249979,0,0);}
.m119_c01360{transform:matrix(0.341045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341045,0.000000,0.000000,0.250000,0,0);}
.me0_c01360{transform:matrix(0.351430,-0.004569,0.003250,0.249979,0,0);-ms-transform:matrix(0.351430,-0.004569,0.003250,0.249979,0,0);-webkit-transform:matrix(0.351430,-0.004569,0.003250,0.249979,0,0);}
.m2_c01360{transform:matrix(0.352180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352180,0.000000,0.000000,0.250000,0,0);}
.md5_c01360{transform:matrix(0.353650,-0.004597,0.003250,0.249979,0,0);-ms-transform:matrix(0.353650,-0.004597,0.003250,0.249979,0,0);-webkit-transform:matrix(0.353650,-0.004597,0.003250,0.249979,0,0);}
.mdf_c01360{transform:matrix(0.354555,-0.004609,0.003250,0.249979,0,0);-ms-transform:matrix(0.354555,-0.004609,0.003250,0.249979,0,0);-webkit-transform:matrix(0.354555,-0.004609,0.003250,0.249979,0,0);}
.mc1_c01360{transform:matrix(0.382956,-0.002681,0.001750,0.249994,0,0);-ms-transform:matrix(0.382956,-0.002681,0.001750,0.249994,0,0);-webkit-transform:matrix(0.382956,-0.002681,0.001750,0.249994,0,0);}
.md6_c01360{transform:matrix(0.392767,-0.005106,0.003250,0.249979,0,0);-ms-transform:matrix(0.392767,-0.005106,0.003250,0.249979,0,0);-webkit-transform:matrix(0.392767,-0.005106,0.003250,0.249979,0,0);}
.m1_c01360{transform:matrix(0.400235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400235,0.000000,0.000000,0.250000,0,0);}
.mc0_c01360{transform:matrix(0.403120,-0.002822,0.001750,0.249994,0,0);-ms-transform:matrix(0.403120,-0.002822,0.001750,0.249994,0,0);-webkit-transform:matrix(0.403120,-0.002822,0.001750,0.249994,0,0);}
.m117_c01360{transform:matrix(0.418000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418000,0.000000,0.000000,0.250000,0,0);}
.mca_c01360{transform:matrix(0.473977,-0.012797,0.006748,0.249909,0,0);-ms-transform:matrix(0.473977,-0.012797,0.006748,0.249909,0,0);-webkit-transform:matrix(0.473977,-0.012797,0.006748,0.249909,0,0);}
.mde_c01360{transform:matrix(0.676618,-0.008796,0.003250,0.249979,0,0);-ms-transform:matrix(0.676618,-0.008796,0.003250,0.249979,0,0);-webkit-transform:matrix(0.676618,-0.008796,0.003250,0.249979,0,0);}
.mf1_c01360{transform:matrix(0.901255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.901255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.901255,0.000000,0.000000,0.250000,0,0);}
.v0_c01360{vertical-align:0.000000px;}
.ls0_c01360{letter-spacing:0.000000px;}
.sc__c01360{text-shadow:none;}
.sc0_c01360{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__c01360{-webkit-text-stroke:0px transparent;}
.sc0_c01360{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01360{word-spacing:0.000000px;}
.fc0_c01360{color:transparent;}
.fsd_c01360{font-size:54.000000px;}
.fsb_c01360{font-size:54.004563px;}
.fs0_c01360{font-size:72.000000px;}
.fs3_c01360{font-size:72.002304px;}
.fs6_c01360{font-size:78.000000px;}
.fs1_c01360{font-size:78.002496px;}
.fs7_c01360{font-size:84.000000px;}
.fs5_c01360{font-size:84.002688px;}
.fsa_c01360{font-size:84.030612px;}
.fs8_c01360{font-size:90.000000px;}
.fs2_c01360{font-size:90.002880px;}
.fsc_c01360{font-size:102.000000px;}
.fs4_c01360{font-size:114.003648px;}
.fs9_c01360{font-size:120.002940px;}
.y0_c01360{bottom:0.000000px;}
.yd7_c01360{bottom:70.200000px;}
.yd6_c01360{bottom:87.975000px;}
.yd5_c01360{bottom:117.859500px;}
.yd4_c01360{bottom:146.817000px;}
.yd3_c01360{bottom:175.794000px;}
.yd2_c01360{bottom:203.092500px;}
.yc4_c01360{bottom:214.653000px;}
.yc5_c01360{bottom:215.093817px;}
.yc6_c01360{bottom:216.492279px;}
.yc7_c01360{bottom:218.057466px;}
.yc8_c01360{bottom:218.650793px;}
.yc9_c01360{bottom:219.071954px;}
.yca_c01360{bottom:219.777814px;}
.ycb_c01360{bottom:220.479483px;}
.ycc_c01360{bottom:221.069299px;}
.ycd_c01360{bottom:221.487009px;}
.yce_c01360{bottom:222.192734px;}
.ycf_c01360{bottom:222.756888px;}
.yd0_c01360{bottom:223.059586px;}
.yd1_c01360{bottom:223.393017px;}
.ybf_c01360{bottom:338.583000px;}
.yc0_c01360{bottom:339.322500px;}
.yc1_c01360{bottom:339.717000px;}
.yc2_c01360{bottom:340.999500px;}
.yc3_c01360{bottom:342.433500px;}
.ybe_c01360{bottom:376.827000px;}
.yb5_c01360{bottom:475.216500px;}
.yb6_c01360{bottom:477.899220px;}
.yb7_c01360{bottom:478.770942px;}
.yb8_c01360{bottom:482.074082px;}
.yb9_c01360{bottom:484.371160px;}
.yba_c01360{bottom:487.065504px;}
.ybb_c01360{bottom:488.212747px;}
.ybc_c01360{bottom:489.415962px;}
.ybd_c01360{bottom:493.795470px;}
.yaa_c01360{bottom:518.671500px;}
.yab_c01360{bottom:518.983360px;}
.yac_c01360{bottom:519.368920px;}
.yad_c01360{bottom:520.279869px;}
.yae_c01360{bottom:520.506732px;}
.yaf_c01360{bottom:521.043492px;}
.yb0_c01360{bottom:521.283585px;}
.yb1_c01360{bottom:521.808994px;}
.yb2_c01360{bottom:522.035647px;}
.yb3_c01360{bottom:522.438343px;}
.yb4_c01360{bottom:522.879175px;}
.ya9_c01360{bottom:553.641000px;}
.y9e_c01360{bottom:589.410000px;}
.y9f_c01360{bottom:590.061000px;}
.ya0_c01360{bottom:590.451000px;}
.ya1_c01360{bottom:590.847000px;}
.ya2_c01360{bottom:591.045000px;}
.ya3_c01360{bottom:591.370500px;}
.ya4_c01360{bottom:591.897000px;}
.ya5_c01360{bottom:592.290000px;}
.ya6_c01360{bottom:592.422000px;}
.ya7_c01360{bottom:592.882500px;}
.ya8_c01360{bottom:593.341500px;}
.y93_c01360{bottom:623.971500px;}
.y94_c01360{bottom:624.238500px;}
.y95_c01360{bottom:624.504000px;}
.y96_c01360{bottom:624.763500px;}
.y97_c01360{bottom:625.633500px;}
.y98_c01360{bottom:625.987500px;}
.y99_c01360{bottom:626.779500px;}
.y9a_c01360{bottom:627.210000px;}
.y9b_c01360{bottom:627.739500px;}
.y9c_c01360{bottom:628.794000px;}
.y9d_c01360{bottom:629.137500px;}
.y92_c01360{bottom:662.730000px;}
.y85_c01360{bottom:693.892152px;}
.y86_c01360{bottom:694.415868px;}
.y87_c01360{bottom:694.616232px;}
.y88_c01360{bottom:694.798764px;}
.y89_c01360{bottom:694.996140px;}
.y8a_c01360{bottom:695.391300px;}
.y8b_c01360{bottom:695.591736px;}
.y8c_c01360{bottom:695.928480px;}
.y8d_c01360{bottom:696.447048px;}
.y8e_c01360{bottom:696.639768px;}
.y8f_c01360{bottom:696.835152px;}
.y90_c01360{bottom:697.225272px;}
.y91_c01360{bottom:697.772388px;}
.y79_c01360{bottom:729.803532px;}
.y7a_c01360{bottom:730.211640px;}
.y7b_c01360{bottom:730.566024px;}
.y7c_c01360{bottom:731.174904px;}
.y7d_c01360{bottom:731.442876px;}
.y7e_c01360{bottom:731.881428px;}
.y7f_c01360{bottom:732.667488px;}
.y80_c01360{bottom:733.015560px;}
.y81_c01360{bottom:733.803888px;}
.y82_c01360{bottom:734.237880px;}
.y83_c01360{bottom:734.503740px;}
.y84_c01360{bottom:734.767248px;}
.y6e_c01360{bottom:764.363892px;}
.y6f_c01360{bottom:764.806872px;}
.y70_c01360{bottom:765.327432px;}
.y71_c01360{bottom:766.022892px;}
.y72_c01360{bottom:766.724832px;}
.y73_c01360{bottom:767.247636px;}
.y74_c01360{bottom:767.584668px;}
.y75_c01360{bottom:768.297444px;}
.y76_c01360{bottom:768.558852px;}
.y77_c01360{bottom:769.178748px;}
.y78_c01360{bottom:769.446576px;}
.y5f_c01360{bottom:800.815080px;}
.y60_c01360{bottom:801.134772px;}
.y61_c01360{bottom:801.470208px;}
.y62_c01360{bottom:802.586028px;}
.y63_c01360{bottom:802.998516px;}
.y64_c01360{bottom:803.211144px;}
.y65_c01360{bottom:803.556912px;}
.y66_c01360{bottom:803.870460px;}
.y67_c01360{bottom:804.311016px;}
.y68_c01360{bottom:804.961944px;}
.y69_c01360{bottom:805.406808px;}
.y6a_c01360{bottom:805.722816px;}
.y6b_c01360{bottom:806.284620px;}
.y6c_c01360{bottom:807.380232px;}
.y6d_c01360{bottom:807.593184px;}
.y55_c01360{bottom:835.375740px;}
.y56_c01360{bottom:835.628724px;}
.y57_c01360{bottom:836.244420px;}
.y58_c01360{bottom:837.203208px;}
.y59_c01360{bottom:837.561768px;}
.y5a_c01360{bottom:837.821220px;}
.y5b_c01360{bottom:838.423788px;}
.y5c_c01360{bottom:838.778184px;}
.y5d_c01360{bottom:839.650764px;}
.y5e_c01360{bottom:840.361488px;}
.y49_c01360{bottom:871.557264px;}
.y4a_c01360{bottom:872.000100px;}
.y4b_c01360{bottom:872.261628px;}
.y4c_c01360{bottom:872.864184px;}
.y4d_c01360{bottom:873.136404px;}
.y4e_c01360{bottom:873.656928px;}
.y4f_c01360{bottom:874.613640px;}
.y50_c01360{bottom:874.790940px;}
.y51_c01360{bottom:875.048028px;}
.y52_c01360{bottom:875.488740px;}
.y53_c01360{bottom:876.020220px;}
.y54_c01360{bottom:876.724200px;}
.y3b_c01360{bottom:906.657708px;}
.y3c_c01360{bottom:907.112388px;}
.y3d_c01360{bottom:907.620276px;}
.y3e_c01360{bottom:907.955688px;}
.y3f_c01360{bottom:908.168292px;}
.y40_c01360{bottom:908.503644px;}
.y41_c01360{bottom:909.262116px;}
.y42_c01360{bottom:909.599748px;}
.y43_c01360{bottom:910.149540px;}
.y44_c01360{bottom:910.473504px;}
.y45_c01360{bottom:911.348616px;}
.y46_c01360{bottom:911.559240px;}
.y47_c01360{bottom:912.000000px;}
.y48_c01360{bottom:912.667032px;}
.y2e_c01360{bottom:941.219244px;}
.y2f_c01360{bottom:941.532900px;}
.y30_c01360{bottom:941.850768px;}
.y31_c01360{bottom:942.182604px;}
.y32_c01360{bottom:942.933048px;}
.y33_c01360{bottom:943.284360px;}
.y34_c01360{bottom:943.929684px;}
.y35_c01360{bottom:945.158676px;}
.y36_c01360{bottom:945.906552px;}
.y37_c01360{bottom:946.111596px;}
.y38_c01360{bottom:946.449192px;}
.y39_c01360{bottom:947.002968px;}
.y3a_c01360{bottom:947.640012px;}
.y21_c01360{bottom:977.939112px;}
.y22_c01360{bottom:978.339228px;}
.y23_c01360{bottom:979.314972px;}
.y24_c01360{bottom:979.703712px;}
.y25_c01360{bottom:980.010612px;}
.y26_c01360{bottom:980.296980px;}
.y27_c01360{bottom:980.599812px;}
.y28_c01360{bottom:981.178584px;}
.y29_c01360{bottom:981.483192px;}
.y2a_c01360{bottom:981.983376px;}
.y2b_c01360{bottom:982.267860px;}
.y2c_c01360{bottom:983.062692px;}
.y2d_c01360{bottom:983.847348px;}
.y16_c01360{bottom:1013.039856px;}
.y17_c01360{bottom:1013.731872px;}
.y18_c01360{bottom:1014.124344px;}
.y19_c01360{bottom:1014.817452px;}
.y1a_c01360{bottom:1015.206540px;}
.y1b_c01360{bottom:1015.487400px;}
.y1c_c01360{bottom:1016.386176px;}
.y1d_c01360{bottom:1016.775528px;}
.y1e_c01360{bottom:1018.062588px;}
.y1f_c01360{bottom:1018.256652px;}
.y20_c01360{bottom:1018.563324px;}
.ye_c01360{bottom:1049.761500px;}
.yf_c01360{bottom:1050.120156px;}
.y10_c01360{bottom:1050.908340px;}
.y11_c01360{bottom:1051.692684px;}
.y12_c01360{bottom:1052.131188px;}
.y13_c01360{bottom:1052.658240px;}
.y14_c01360{bottom:1053.526476px;}
.y15_c01360{bottom:1054.059996px;}
.yc_c01360{bottom:1082.974536px;}
.yd_c01360{bottom:1082.974704px;}
.y2_c01360{bottom:1118.341500px;}
.y3_c01360{bottom:1118.866572px;}
.y4_c01360{bottom:1119.466848px;}
.y5_c01360{bottom:1119.726312px;}
.y6_c01360{bottom:1120.255560px;}
.y7_c01360{bottom:1121.138748px;}
.y8_c01360{bottom:1121.566692px;}
.y9_c01360{bottom:1122.268464px;}
.ya_c01360{bottom:1122.529968px;}
.yb_c01360{bottom:1123.147800px;}
.y1_c01360{bottom:1196.247000px;}
.hf_c01360{height:54.000000px;}
.hd_c01360{height:54.004563px;}
.h2_c01360{height:72.000000px;}
.h5_c01360{height:72.002304px;}
.h8_c01360{height:78.000000px;}
.h3_c01360{height:78.002496px;}
.h9_c01360{height:84.000000px;}
.h7_c01360{height:84.002688px;}
.hc_c01360{height:84.030612px;}
.ha_c01360{height:90.000000px;}
.h4_c01360{height:90.002880px;}
.he_c01360{height:102.000000px;}
.h6_c01360{height:114.003648px;}
.hb_c01360{height:120.002940px;}
.h1_c01360{height:1250.250000px;}
.h0_c01360{height:1250.370000px;}
.w0_c01360{width:878.850000px;}
.w1_c01360{width:879.000000px;}
.x0_c01360{left:0.000000px;}
.x4_c01360{left:101.359500px;}
.x2a_c01360{left:103.283028px;}
.x5e_c01360{left:105.125136px;}
.x54_c01360{left:106.510452px;}
.x93_c01360{left:108.246000px;}
.xad_c01360{left:110.160000px;}
.x2b_c01360{left:134.614524px;}
.x70_c01360{left:137.526000px;}
.x94_c01360{left:142.155000px;}
.x1f_c01360{left:145.486788px;}
.xe_c01360{left:147.420864px;}
.x32_c01360{left:148.951788px;}
.xa7_c01360{left:153.360000px;}
.x3a_c01360{left:157.259700px;}
.x8f_c01360{left:163.080000px;}
.x5_c01360{left:166.993500px;}
.x47_c01360{left:168.900648px;}
.x71_c01360{left:170.766000px;}
.x15_c01360{left:178.036248px;}
.x7e_c01360{left:181.165500px;}
.x3b_c01360{left:189.950700px;}
.x5f_c01360{left:192.341028px;}
.x90_c01360{left:194.400000px;}
.x2c_c01360{left:199.701492px;}
.x55_c01360{left:201.821952px;}
.x72_c01360{left:203.167500px;}
.x8a_c01360{left:205.264500px;}
.xbc_c01360{left:207.630000px;}
.xf_c01360{left:208.828500px;}
.x42_c01360{left:212.089236px;}
.x69_c01360{left:213.570000px;}
.x9f_c01360{left:219.510000px;}
.x16_c01360{left:221.657400px;}
.x50_c01360{left:223.158744px;}
.x60_c01360{left:225.824568px;}
.x33_c01360{left:233.175432px;}
.x8b_c01360{left:237.550500px;}
.x6_c01360{left:242.028000px;}
.x95_c01360{left:249.729000px;}
.xa8_c01360{left:251.100000px;}
.x10_c01360{left:253.660500px;}
.x61_c01360{left:256.329060px;}
.x82_c01360{left:259.041000px;}
.x3c_c01360{left:265.270200px;}
.x7f_c01360{left:269.185500px;}
.xa9_c01360{left:271.350000px;}
.x7_c01360{left:274.461000px;}
.x56_c01360{left:277.931952px;}
.x79_c01360{left:278.997000px;}
.x48_c01360{left:280.438860px;}
.x34_c01360{left:287.981556px;}
.x62_c01360{left:289.251588px;}
.x80_c01360{left:291.055500px;}
.x91_c01360{left:292.956000px;}
.xae_c01360{left:294.300000px;}
.xb5_c01360{left:295.920000px;}
.x20_c01360{left:297.108576px;}
.x17_c01360{left:298.732788px;}
.x6a_c01360{left:300.780000px;}
.x2d_c01360{left:309.856728px;}
.x57_c01360{left:311.428452px;}
.x83_c01360{left:314.121000px;}
.x49_c01360{left:321.686700px;}
.xa0_c01360{left:327.510000px;}
.x21_c01360{left:331.158300px;}
.x6b_c01360{left:333.720000px;}
.x8_c01360{left:340.617000px;}
.x18_c01360{left:341.930940px;}
.x4a_c01360{left:343.014864px;}
.x7a_c01360{left:344.874000px;}
.x11_c01360{left:352.183500px;}
.x63_c01360{left:355.147644px;}
.x73_c01360{left:356.256000px;}
.x81_c01360{left:359.365500px;}
.x22_c01360{left:363.016548px;}
.x3d_c01360{left:364.363200px;}
.x58_c01360{left:366.247452px;}
.x1_c01360{left:370.980000px;}
.xa1_c01360{left:372.060000px;}
.x19_c01360{left:373.100688px;}
.x2e_c01360{left:374.396196px;}
.x43_c01360{left:376.757736px;}
.x7b_c01360{left:377.814000px;}
.x64_c01360{left:388.640184px;}
.xaa_c01360{left:392.310000px;}
.xb6_c01360{left:393.390000px;}
.x2_c01360{left:394.740000px;}
.x23_c01360{left:396.745284px;}
.x51_c01360{left:397.833744px;}
.x92_c01360{left:403.300500px;}
.x44_c01360{left:409.189236px;}
.x96_c01360{left:415.768500px;}
.xa2_c01360{left:427.680000px;}
.x6c_c01360{left:431.190000px;}
.x3_c01360{left:437.940000px;}
.x65_c01360{left:444.796584px;}
.x97_c01360{left:448.165500px;}
.x9_c01360{left:451.015500px;}
.x35_c01360{left:452.653428px;}
.x74_c01360{left:455.311500px;}
.xaf_c01360{left:459.270000px;}
.x24_c01360{left:461.028768px;}
.x52_c01360{left:463.184244px;}
.x59_c01360{left:464.504952px;}
.xab_c01360{left:469.530000px;}
.x1a_c01360{left:472.884384px;}
.x84_c01360{left:476.665500px;}
.x3e_c01360{left:483.952200px;}
.x36_c01360{left:485.085912px;}
.xa3_c01360{left:492.210000px;}
.x25_c01360{left:494.791992px;}
.x2f_c01360{left:497.268228px;}
.x6d_c01360{left:498.690000px;}
.x98_c01360{left:502.462500px;}
.xa_c01360{left:504.508500px;}
.x3f_c01360{left:506.114700px;}
.x5a_c01360{left:508.013952px;}
.x75_c01360{left:509.070000px;}
.xb0_c01360{left:514.620000px;}
.x1b_c01360{left:516.115536px;}
.x4b_c01360{left:517.987056px;}
.x7c_c01360{left:519.837000px;}
.xac_c01360{left:524.610000px;}
.x45_c01360{left:528.809736px;}
.x66_c01360{left:531.181464px;}
.x40_c01360{left:538.250700px;}
.x8c_c01360{left:544.756500px;}
.xb1_c01360{left:547.020000px;}
.xa4_c01360{left:548.100000px;}
.x26_c01360{left:550.377048px;}
.x85_c01360{left:553.345500px;}
.x99_c01360{left:556.437000px;}
.x4c_c01360{left:562.531848px;}
.xb2_c01360{left:568.350000px;}
.x12_c01360{left:570.921000px;}
.x30_c01360{left:572.001528px;}
.x76_c01360{left:575.229000px;}
.x27_c01360{left:581.999796px;}
.x7d_c01360{left:585.429000px;}
.x86_c01360{left:587.644500px;}
.xb_c01360{left:592.230000px;}
.x37_c01360{left:593.613672px;}
.x67_c01360{left:596.008008px;}
.x9a_c01360{left:601.807500px;}
.x5b_c01360{left:606.554952px;}
.xb7_c01360{left:612.900000px;}
.xb3_c01360{left:623.430000px;}
.xc_c01360{left:624.918000px;}
.x31_c01360{left:626.330664px;}
.x8d_c01360{left:631.810500px;}
.x9b_c01360{left:633.939000px;}
.x38_c01360{left:637.645464px;}
.xa5_c01360{left:646.110000px;}
.x4d_c01360{left:650.319444px;}
.x1c_c01360{left:659.184396px;}
.x5c_c01360{left:660.803952px;}
.x87_c01360{left:662.703000px;}
.xb8_c01360{left:667.170000px;}
.x28_c01360{left:670.290588px;}
.xb4_c01360{left:678.240000px;}
.x13_c01360{left:679.450500px;}
.x1d_c01360{left:680.817228px;}
.x6e_c01360{left:683.910000px;}
.x9c_c01360{left:688.225500px;}
.xb9_c01360{left:691.200000px;}
.x5d_c01360{left:694.036452px;}
.x88_c01360{left:695.082000px;}
.xa6_c01360{left:700.110000px;}
.xd_c01360{left:702.147000px;}
.x39_c01360{left:704.335896px;}
.x77_c01360{left:706.954500px;}
.x1e_c01360{left:714.838452px;}
.x46_c01360{left:726.722736px;}
.x9d_c01360{left:731.622000px;}
.xba_c01360{left:733.320000px;}
.x53_c01360{left:738.051744px;}
.x14_c01360{left:746.140500px;}
.x41_c01360{left:747.772200px;}
.x78_c01360{left:749.905500px;}
.x68_c01360{left:752.352516px;}
.x9e_c01360{left:754.906500px;}
.x29_c01360{left:757.496892px;}
.x4e_c01360{left:759.894192px;}
.x4f_c01360{left:781.262856px;}
.x6f_c01360{left:783.270000px;}
.xbb_c01360{left:787.590000px;}
.x8e_c01360{left:794.014500px;}
.x89_c01360{left:815.586000px;}
@media print{
.v0_c01360{vertical-align:0.000000pt;}
.ls0_c01360{letter-spacing:0.000000pt;}
.ws0_c01360{word-spacing:0.000000pt;}
.fsd_c01360{font-size:48.000000pt;}
.fsb_c01360{font-size:48.004056pt;}
.fs0_c01360{font-size:64.000000pt;}
.fs3_c01360{font-size:64.002048pt;}
.fs6_c01360{font-size:69.333333pt;}
.fs1_c01360{font-size:69.335552pt;}
.fs7_c01360{font-size:74.666667pt;}
.fs5_c01360{font-size:74.669056pt;}
.fsa_c01360{font-size:74.693878pt;}
.fs8_c01360{font-size:80.000000pt;}
.fs2_c01360{font-size:80.002560pt;}
.fsc_c01360{font-size:90.666667pt;}
.fs4_c01360{font-size:101.336576pt;}
.fs9_c01360{font-size:106.669280pt;}
.y0_c01360{bottom:0.000000pt;}
.yd7_c01360{bottom:62.400000pt;}
.yd6_c01360{bottom:78.200000pt;}
.yd5_c01360{bottom:104.764000pt;}
.yd4_c01360{bottom:130.504000pt;}
.yd3_c01360{bottom:156.261333pt;}
.yd2_c01360{bottom:180.526667pt;}
.yc4_c01360{bottom:190.802667pt;}
.yc5_c01360{bottom:191.194504pt;}
.yc6_c01360{bottom:192.437581pt;}
.yc7_c01360{bottom:193.828859pt;}
.yc8_c01360{bottom:194.356260pt;}
.yc9_c01360{bottom:194.730625pt;}
.yca_c01360{bottom:195.358057pt;}
.ycb_c01360{bottom:195.981763pt;}
.ycc_c01360{bottom:196.506044pt;}
.ycd_c01360{bottom:196.877341pt;}
.yce_c01360{bottom:197.504652pt;}
.ycf_c01360{bottom:198.006123pt;}
.yd0_c01360{bottom:198.275188pt;}
.yd1_c01360{bottom:198.571571pt;}
.ybf_c01360{bottom:300.962667pt;}
.yc0_c01360{bottom:301.620000pt;}
.yc1_c01360{bottom:301.970667pt;}
.yc2_c01360{bottom:303.110667pt;}
.yc3_c01360{bottom:304.385333pt;}
.ybe_c01360{bottom:334.957333pt;}
.yb5_c01360{bottom:422.414667pt;}
.yb6_c01360{bottom:424.799307pt;}
.yb7_c01360{bottom:425.574171pt;}
.yb8_c01360{bottom:428.510295pt;}
.yb9_c01360{bottom:430.552143pt;}
.yba_c01360{bottom:432.947115pt;}
.ybb_c01360{bottom:433.966887pt;}
.ybc_c01360{bottom:435.036411pt;}
.ybd_c01360{bottom:438.929307pt;}
.yaa_c01360{bottom:461.041333pt;}
.yab_c01360{bottom:461.318543pt;}
.yac_c01360{bottom:461.661263pt;}
.yad_c01360{bottom:462.470995pt;}
.yae_c01360{bottom:462.672651pt;}
.yaf_c01360{bottom:463.149771pt;}
.yb0_c01360{bottom:463.363187pt;}
.yb1_c01360{bottom:463.830217pt;}
.yb2_c01360{bottom:464.031687pt;}
.yb3_c01360{bottom:464.389639pt;}
.yb4_c01360{bottom:464.781489pt;}
.ya9_c01360{bottom:492.125333pt;}
.y9e_c01360{bottom:523.920000pt;}
.y9f_c01360{bottom:524.498667pt;}
.ya0_c01360{bottom:524.845333pt;}
.ya1_c01360{bottom:525.197333pt;}
.ya2_c01360{bottom:525.373333pt;}
.ya3_c01360{bottom:525.662667pt;}
.ya4_c01360{bottom:526.130667pt;}
.ya5_c01360{bottom:526.480000pt;}
.ya6_c01360{bottom:526.597333pt;}
.ya7_c01360{bottom:527.006667pt;}
.ya8_c01360{bottom:527.414667pt;}
.y93_c01360{bottom:554.641333pt;}
.y94_c01360{bottom:554.878667pt;}
.y95_c01360{bottom:555.114667pt;}
.y96_c01360{bottom:555.345333pt;}
.y97_c01360{bottom:556.118667pt;}
.y98_c01360{bottom:556.433333pt;}
.y99_c01360{bottom:557.137333pt;}
.y9a_c01360{bottom:557.520000pt;}
.y9b_c01360{bottom:557.990667pt;}
.y9c_c01360{bottom:558.928000pt;}
.y9d_c01360{bottom:559.233333pt;}
.y92_c01360{bottom:589.093333pt;}
.y85_c01360{bottom:616.793024pt;}
.y86_c01360{bottom:617.258549pt;}
.y87_c01360{bottom:617.436651pt;}
.y88_c01360{bottom:617.598901pt;}
.y89_c01360{bottom:617.774347pt;}
.y8a_c01360{bottom:618.125600pt;}
.y8b_c01360{bottom:618.303765pt;}
.y8c_c01360{bottom:618.603093pt;}
.y8d_c01360{bottom:619.064043pt;}
.y8e_c01360{bottom:619.235349pt;}
.y8f_c01360{bottom:619.409024pt;}
.y90_c01360{bottom:619.755797pt;}
.y91_c01360{bottom:620.242123pt;}
.y79_c01360{bottom:648.714251pt;}
.y7a_c01360{bottom:649.077013pt;}
.y7b_c01360{bottom:649.392021pt;}
.y7c_c01360{bottom:649.933248pt;}
.y7d_c01360{bottom:650.171445pt;}
.y7e_c01360{bottom:650.561269pt;}
.y7f_c01360{bottom:651.259989pt;}
.y80_c01360{bottom:651.569387pt;}
.y81_c01360{bottom:652.270123pt;}
.y82_c01360{bottom:652.655893pt;}
.y83_c01360{bottom:652.892213pt;}
.y84_c01360{bottom:653.126443pt;}
.y6e_c01360{bottom:679.434571pt;}
.y6f_c01360{bottom:679.828331pt;}
.y70_c01360{bottom:680.291051pt;}
.y71_c01360{bottom:680.909237pt;}
.y72_c01360{bottom:681.533184pt;}
.y73_c01360{bottom:681.997899pt;}
.y74_c01360{bottom:682.297483pt;}
.y75_c01360{bottom:682.931061pt;}
.y76_c01360{bottom:683.163424pt;}
.y77_c01360{bottom:683.714443pt;}
.y78_c01360{bottom:683.952512pt;}
.y5f_c01360{bottom:711.835627pt;}
.y60_c01360{bottom:712.119797pt;}
.y61_c01360{bottom:712.417963pt;}
.y62_c01360{bottom:713.409803pt;}
.y63_c01360{bottom:713.776459pt;}
.y64_c01360{bottom:713.965461pt;}
.y65_c01360{bottom:714.272811pt;}
.y66_c01360{bottom:714.551520pt;}
.y67_c01360{bottom:714.943125pt;}
.y68_c01360{bottom:715.521728pt;}
.y69_c01360{bottom:715.917163pt;}
.y6a_c01360{bottom:716.198059pt;}
.y6b_c01360{bottom:716.697440pt;}
.y6c_c01360{bottom:717.671317pt;}
.y6d_c01360{bottom:717.860608pt;}
.y55_c01360{bottom:742.556213pt;}
.y56_c01360{bottom:742.781088pt;}
.y57_c01360{bottom:743.328373pt;}
.y58_c01360{bottom:744.180629pt;}
.y59_c01360{bottom:744.499349pt;}
.y5a_c01360{bottom:744.729973pt;}
.y5b_c01360{bottom:745.265589pt;}
.y5c_c01360{bottom:745.580608pt;}
.y5d_c01360{bottom:746.356235pt;}
.y5e_c01360{bottom:746.987989pt;}
.y49_c01360{bottom:774.717568pt;}
.y4a_c01360{bottom:775.111200pt;}
.y4b_c01360{bottom:775.343669pt;}
.y4c_c01360{bottom:775.879275pt;}
.y4d_c01360{bottom:776.121248pt;}
.y4e_c01360{bottom:776.583936pt;}
.y4f_c01360{bottom:777.434347pt;}
.y50_c01360{bottom:777.591947pt;}
.y51_c01360{bottom:777.820469pt;}
.y52_c01360{bottom:778.212213pt;}
.y53_c01360{bottom:778.684640pt;}
.y54_c01360{bottom:779.310400pt;}
.y3b_c01360{bottom:805.917963pt;}
.y3c_c01360{bottom:806.322123pt;}
.y3d_c01360{bottom:806.773579pt;}
.y3e_c01360{bottom:807.071723pt;}
.y3f_c01360{bottom:807.260704pt;}
.y40_c01360{bottom:807.558795pt;}
.y41_c01360{bottom:808.232992pt;}
.y42_c01360{bottom:808.533109pt;}
.y43_c01360{bottom:809.021813pt;}
.y44_c01360{bottom:809.309781pt;}
.y45_c01360{bottom:810.087659pt;}
.y46_c01360{bottom:810.274880pt;}
.y47_c01360{bottom:810.666667pt;}
.y48_c01360{bottom:811.259584pt;}
.y2e_c01360{bottom:836.639328pt;}
.y2f_c01360{bottom:836.918133pt;}
.y30_c01360{bottom:837.200683pt;}
.y31_c01360{bottom:837.495648pt;}
.y32_c01360{bottom:838.162709pt;}
.y33_c01360{bottom:838.474987pt;}
.y34_c01360{bottom:839.048608pt;}
.y35_c01360{bottom:840.141045pt;}
.y36_c01360{bottom:840.805824pt;}
.y37_c01360{bottom:840.988085pt;}
.y38_c01360{bottom:841.288171pt;}
.y39_c01360{bottom:841.780416pt;}
.y3a_c01360{bottom:842.346677pt;}
.y21_c01360{bottom:869.279211pt;}
.y22_c01360{bottom:869.634869pt;}
.y23_c01360{bottom:870.502197pt;}
.y24_c01360{bottom:870.847744pt;}
.y25_c01360{bottom:871.120544pt;}
.y26_c01360{bottom:871.375093pt;}
.y27_c01360{bottom:871.644277pt;}
.y28_c01360{bottom:872.158741pt;}
.y29_c01360{bottom:872.429504pt;}
.y2a_c01360{bottom:872.874112pt;}
.y2b_c01360{bottom:873.126987pt;}
.y2c_c01360{bottom:873.833504pt;}
.y2d_c01360{bottom:874.530976pt;}
.y16_c01360{bottom:900.479872pt;}
.y17_c01360{bottom:901.094997pt;}
.y18_c01360{bottom:901.443861pt;}
.y19_c01360{bottom:902.059957pt;}
.y1a_c01360{bottom:902.405813pt;}
.y1b_c01360{bottom:902.655467pt;}
.y1c_c01360{bottom:903.454379pt;}
.y1d_c01360{bottom:903.800469pt;}
.y1e_c01360{bottom:904.944523pt;}
.y1f_c01360{bottom:905.117024pt;}
.y20_c01360{bottom:905.389621pt;}
.ye_c01360{bottom:933.121333pt;}
.yf_c01360{bottom:933.440139pt;}
.y10_c01360{bottom:934.140747pt;}
.y11_c01360{bottom:934.837941pt;}
.y12_c01360{bottom:935.227723pt;}
.y13_c01360{bottom:935.696213pt;}
.y14_c01360{bottom:936.467979pt;}
.y15_c01360{bottom:936.942219pt;}
.yc_c01360{bottom:962.644032pt;}
.yd_c01360{bottom:962.644181pt;}
.y2_c01360{bottom:994.081333pt;}
.y3_c01360{bottom:994.548064pt;}
.y4_c01360{bottom:995.081643pt;}
.y5_c01360{bottom:995.312277pt;}
.y6_c01360{bottom:995.782720pt;}
.y7_c01360{bottom:996.567776pt;}
.y8_c01360{bottom:996.948171pt;}
.y9_c01360{bottom:997.571968pt;}
.ya_c01360{bottom:997.804416pt;}
.yb_c01360{bottom:998.353600pt;}
.y1_c01360{bottom:1063.330667pt;}
.hf_c01360{height:48.000000pt;}
.hd_c01360{height:48.004056pt;}
.h2_c01360{height:64.000000pt;}
.h5_c01360{height:64.002048pt;}
.h8_c01360{height:69.333333pt;}
.h3_c01360{height:69.335552pt;}
.h9_c01360{height:74.666667pt;}
.h7_c01360{height:74.669056pt;}
.hc_c01360{height:74.693878pt;}
.ha_c01360{height:80.000000pt;}
.h4_c01360{height:80.002560pt;}
.he_c01360{height:90.666667pt;}
.h6_c01360{height:101.336576pt;}
.hb_c01360{height:106.669280pt;}
.h1_c01360{height:1111.333333pt;}
.h0_c01360{height:1111.440000pt;}
.w0_c01360{width:781.200000pt;}
.w1_c01360{width:781.333333pt;}
.x0_c01360{left:0.000000pt;}
.x4_c01360{left:90.097333pt;}
.x2a_c01360{left:91.807136pt;}
.x5e_c01360{left:93.444565pt;}
.x54_c01360{left:94.675957pt;}
.x93_c01360{left:96.218667pt;}
.xad_c01360{left:97.920000pt;}
.x2b_c01360{left:119.657355pt;}
.x70_c01360{left:122.245333pt;}
.x94_c01360{left:126.360000pt;}
.x1f_c01360{left:129.321589pt;}
.xe_c01360{left:131.040768pt;}
.x32_c01360{left:132.401589pt;}
.xa7_c01360{left:136.320000pt;}
.x3a_c01360{left:139.786400pt;}
.x8f_c01360{left:144.960000pt;}
.x5_c01360{left:148.438667pt;}
.x47_c01360{left:150.133909pt;}
.x71_c01360{left:151.792000pt;}
.x15_c01360{left:158.254443pt;}
.x7e_c01360{left:161.036000pt;}
.x3b_c01360{left:168.845067pt;}
.x5f_c01360{left:170.969803pt;}
.x90_c01360{left:172.800000pt;}
.x2c_c01360{left:177.512437pt;}
.x55_c01360{left:179.397291pt;}
.x72_c01360{left:180.593333pt;}
.x8a_c01360{left:182.457333pt;}
.xbc_c01360{left:184.560000pt;}
.xf_c01360{left:185.625333pt;}
.x42_c01360{left:188.523765pt;}
.x69_c01360{left:189.840000pt;}
.x9f_c01360{left:195.120000pt;}
.x16_c01360{left:197.028800pt;}
.x50_c01360{left:198.363328pt;}
.x60_c01360{left:200.732949pt;}
.x33_c01360{left:207.267051pt;}
.x8b_c01360{left:211.156000pt;}
.x6_c01360{left:215.136000pt;}
.x95_c01360{left:221.981333pt;}
.xa8_c01360{left:223.200000pt;}
.x10_c01360{left:225.476000pt;}
.x61_c01360{left:227.848053pt;}
.x82_c01360{left:230.258667pt;}
.x3c_c01360{left:235.795733pt;}
.x7f_c01360{left:239.276000pt;}
.xa9_c01360{left:241.200000pt;}
.x7_c01360{left:243.965333pt;}
.x56_c01360{left:247.050624pt;}
.x79_c01360{left:247.997333pt;}
.x48_c01360{left:249.278987pt;}
.x34_c01360{left:255.983605pt;}
.x62_c01360{left:257.112523pt;}
.x80_c01360{left:258.716000pt;}
.x91_c01360{left:260.405333pt;}
.xae_c01360{left:261.600000pt;}
.xb5_c01360{left:263.040000pt;}
.x20_c01360{left:264.096512pt;}
.x17_c01360{left:265.540256pt;}
.x6a_c01360{left:267.360000pt;}
.x2d_c01360{left:275.428203pt;}
.x57_c01360{left:276.825291pt;}
.x83_c01360{left:279.218667pt;}
.x49_c01360{left:285.943733pt;}
.xa0_c01360{left:291.120000pt;}
.x21_c01360{left:294.362933pt;}
.x6b_c01360{left:296.640000pt;}
.x8_c01360{left:302.770667pt;}
.x18_c01360{left:303.938613pt;}
.x4a_c01360{left:304.902101pt;}
.x7a_c01360{left:306.554667pt;}
.x11_c01360{left:313.052000pt;}
.x63_c01360{left:315.686795pt;}
.x73_c01360{left:316.672000pt;}
.x81_c01360{left:319.436000pt;}
.x22_c01360{left:322.681376pt;}
.x3d_c01360{left:323.878400pt;}
.x58_c01360{left:325.553291pt;}
.x1_c01360{left:329.760000pt;}
.xa1_c01360{left:330.720000pt;}
.x19_c01360{left:331.645056pt;}
.x2e_c01360{left:332.796619pt;}
.x43_c01360{left:334.895765pt;}
.x7b_c01360{left:335.834667pt;}
.x64_c01360{left:345.457941pt;}
.xaa_c01360{left:348.720000pt;}
.xb6_c01360{left:349.680000pt;}
.x2_c01360{left:350.880000pt;}
.x23_c01360{left:352.662475pt;}
.x51_c01360{left:353.629995pt;}
.x92_c01360{left:358.489333pt;}
.x44_c01360{left:363.723765pt;}
.x96_c01360{left:369.572000pt;}
.xa2_c01360{left:380.160000pt;}
.x6c_c01360{left:383.280000pt;}
.x3_c01360{left:389.280000pt;}
.x65_c01360{left:395.374741pt;}
.x97_c01360{left:398.369333pt;}
.x9_c01360{left:400.902667pt;}
.x35_c01360{left:402.358603pt;}
.x74_c01360{left:404.721333pt;}
.xaf_c01360{left:408.240000pt;}
.x24_c01360{left:409.803349pt;}
.x52_c01360{left:411.719328pt;}
.x59_c01360{left:412.893291pt;}
.xab_c01360{left:417.360000pt;}
.x1a_c01360{left:420.341675pt;}
.x84_c01360{left:423.702667pt;}
.x3e_c01360{left:430.179733pt;}
.x36_c01360{left:431.187477pt;}
.xa3_c01360{left:437.520000pt;}
.x25_c01360{left:439.815104pt;}
.x2f_c01360{left:442.016203pt;}
.x6d_c01360{left:443.280000pt;}
.x98_c01360{left:446.633333pt;}
.xa_c01360{left:448.452000pt;}
.x3f_c01360{left:449.879733pt;}
.x5a_c01360{left:451.567957pt;}
.x75_c01360{left:452.506667pt;}
.xb0_c01360{left:457.440000pt;}
.x1b_c01360{left:458.769365pt;}
.x4b_c01360{left:460.432939pt;}
.x7c_c01360{left:462.077333pt;}
.xac_c01360{left:466.320000pt;}
.x45_c01360{left:470.053099pt;}
.x66_c01360{left:472.161301pt;}
.x40_c01360{left:478.445067pt;}
.x8c_c01360{left:484.228000pt;}
.xb1_c01360{left:486.240000pt;}
.xa4_c01360{left:487.200000pt;}
.x26_c01360{left:489.224043pt;}
.x85_c01360{left:491.862667pt;}
.x99_c01360{left:494.610667pt;}
.x4c_c01360{left:500.028309pt;}
.xb2_c01360{left:505.200000pt;}
.x12_c01360{left:507.485333pt;}
.x30_c01360{left:508.445803pt;}
.x76_c01360{left:511.314667pt;}
.x27_c01360{left:517.333152pt;}
.x7d_c01360{left:520.381333pt;}
.x86_c01360{left:522.350667pt;}
.xb_c01360{left:526.426667pt;}
.x37_c01360{left:527.656597pt;}
.x67_c01360{left:529.784896pt;}
.x9a_c01360{left:534.940000pt;}
.x5b_c01360{left:539.159957pt;}
.xb7_c01360{left:544.800000pt;}
.xb3_c01360{left:554.160000pt;}
.xc_c01360{left:555.482667pt;}
.x31_c01360{left:556.738368pt;}
.x8d_c01360{left:561.609333pt;}
.x9b_c01360{left:563.501333pt;}
.x38_c01360{left:566.795968pt;}
.xa5_c01360{left:574.320000pt;}
.x4d_c01360{left:578.061728pt;}
.x1c_c01360{left:585.941685pt;}
.x5c_c01360{left:587.381291pt;}
.x87_c01360{left:589.069333pt;}
.xb8_c01360{left:593.040000pt;}
.x28_c01360{left:595.813856pt;}
.xb4_c01360{left:602.880000pt;}
.x13_c01360{left:603.956000pt;}
.x1d_c01360{left:605.170869pt;}
.x6e_c01360{left:607.920000pt;}
.x9c_c01360{left:611.756000pt;}
.xb9_c01360{left:614.400000pt;}
.x5d_c01360{left:616.921291pt;}
.x88_c01360{left:617.850667pt;}
.xa6_c01360{left:622.320000pt;}
.xd_c01360{left:624.130667pt;}
.x39_c01360{left:626.076352pt;}
.x77_c01360{left:628.404000pt;}
.x1e_c01360{left:635.411957pt;}
.x46_c01360{left:645.975765pt;}
.x9d_c01360{left:650.330667pt;}
.xba_c01360{left:651.840000pt;}
.x53_c01360{left:656.045995pt;}
.x14_c01360{left:663.236000pt;}
.x41_c01360{left:664.686400pt;}
.x78_c01360{left:666.582667pt;}
.x68_c01360{left:668.757792pt;}
.x9e_c01360{left:671.028000pt;}
.x29_c01360{left:673.330571pt;}
.x4e_c01360{left:675.461504pt;}
.x4f_c01360{left:694.455872pt;}
.x6f_c01360{left:696.240000pt;}
.xbb_c01360{left:700.080000pt;}
.x8e_c01360{left:705.790667pt;}
.x89_c01360{left:724.965333pt;}
}





/* 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_c01361 {
    display:none;
  }
  .loading-indicator_c01361.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01361 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_c01361 { 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_c01361" -> "#page-container .classname_c01361")
 */
.pf_c01361 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01361 { /* 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_c01361.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01361 { /* 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_c01361 { /* 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_c01361 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01361 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01361 {overflow:visible;}
  }
}
.c_c01361 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01361 { /* 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_c01361:after { /* webkit #35443 */
  content: '';
}
.t_c01361:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01361 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 */
}
.__c01361 { /* 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_c01361 { /* info for Javascript */
  display:none;
}
.l_c01361 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01361 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01361 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01361: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_c01361 {
    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_c01361.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01361.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_c01361 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01361{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01361;src:url('chunks/assets/font_dbd529e162d5851c7bfb6d27.woff2')format("woff");}.ff1_c01361{font-family:ff1_c01361;line-height:1.000000;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;}
.mb_c01361{transform:matrix(0.135505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135505,0.000000,0.000000,0.250000,0,0);}
.m1e_c01361{transform:matrix(0.137900,-0.002896,0.005249,0.249945,0,0);-ms-transform:matrix(0.137900,-0.002896,0.005249,0.249945,0,0);-webkit-transform:matrix(0.137900,-0.002896,0.005249,0.249945,0,0);}
.m1c_c01361{transform:matrix(0.161259,-0.003386,0.005249,0.249945,0,0);-ms-transform:matrix(0.161259,-0.003386,0.005249,0.249945,0,0);-webkit-transform:matrix(0.161259,-0.003386,0.005249,0.249945,0,0);}
.m7_c01361{transform:matrix(0.163260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163260,0.000000,0.000000,0.250000,0,0);}
.mc_c01361{transform:matrix(0.165160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165160,0.000000,0.000000,0.250000,0,0);}
.ma_c01361{transform:matrix(0.166410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166410,0.000000,0.000000,0.250000,0,0);}
.m14_c01361{transform:matrix(0.167705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167705,0.000000,0.000000,0.250000,0,0);}
.m9_c01361{transform:matrix(0.168990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168990,0.000000,0.000000,0.250000,0,0);}
.m1f_c01361{transform:matrix(0.174711,-0.003669,0.005249,0.249945,0,0);-ms-transform:matrix(0.174711,-0.003669,0.005249,0.249945,0,0);-webkit-transform:matrix(0.174711,-0.003669,0.005249,0.249945,0,0);}
.m8_c01361{transform:matrix(0.178780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178780,0.000000,0.000000,0.250000,0,0);}
.m12_c01361{transform:matrix(0.181555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181555,0.000000,0.000000,0.250000,0,0);}
.me_c01361{transform:matrix(0.184475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184475,0.000000,0.000000,0.250000,0,0);}
.m21_c01361{transform:matrix(0.186064,-0.003907,0.005249,0.249945,0,0);-ms-transform:matrix(0.186064,-0.003907,0.005249,0.249945,0,0);-webkit-transform:matrix(0.186064,-0.003907,0.005249,0.249945,0,0);}
.m20_c01361{transform:matrix(0.187374,-0.003935,0.005249,0.249945,0,0);-ms-transform:matrix(0.187374,-0.003935,0.005249,0.249945,0,0);-webkit-transform:matrix(0.187374,-0.003935,0.005249,0.249945,0,0);}
.m10_c01361{transform:matrix(0.188260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188260,0.000000,0.000000,0.250000,0,0);}
.m11_c01361{transform:matrix(0.201545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201545,0.000000,0.000000,0.250000,0,0);}
.m1d_c01361{transform:matrix(0.207139,-0.004350,0.005249,0.249945,0,0);-ms-transform:matrix(0.207139,-0.004350,0.005249,0.249945,0,0);-webkit-transform:matrix(0.207139,-0.004350,0.005249,0.249945,0,0);}
.mf_c01361{transform:matrix(0.209165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209165,0.000000,0.000000,0.250000,0,0);}
.md_c01361{transform:matrix(0.215655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215655,0.000000,0.000000,0.250000,0,0);}
.m1b_c01361{transform:matrix(0.249595,-0.005241,0.005249,0.249945,0,0);-ms-transform:matrix(0.249595,-0.005241,0.005249,0.249945,0,0);-webkit-transform:matrix(0.249595,-0.005241,0.005249,0.249945,0,0);}
.m16_c01361{transform:matrix(0.250255,-0.005255,0.005249,0.249945,0,0);-ms-transform:matrix(0.250255,-0.005255,0.005249,0.249945,0,0);-webkit-transform:matrix(0.250255,-0.005255,0.005249,0.249945,0,0);}
.m1a_c01361{transform:matrix(0.257153,-0.005400,0.005249,0.249945,0,0);-ms-transform:matrix(0.257153,-0.005400,0.005249,0.249945,0,0);-webkit-transform:matrix(0.257153,-0.005400,0.005249,0.249945,0,0);}
.m18_c01361{transform:matrix(0.267951,-0.005627,0.005249,0.249945,0,0);-ms-transform:matrix(0.267951,-0.005627,0.005249,0.249945,0,0);-webkit-transform:matrix(0.267951,-0.005627,0.005249,0.249945,0,0);}
.m4_c01361{transform:matrix(0.300705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300705,0.000000,0.000000,0.250000,0,0);}
.m3_c01361{transform:matrix(0.302540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302540,0.000000,0.000000,0.250000,0,0);}
.m17_c01361{transform:matrix(0.317920,-0.006676,0.005249,0.249945,0,0);-ms-transform:matrix(0.317920,-0.006676,0.005249,0.249945,0,0);-webkit-transform:matrix(0.317920,-0.006676,0.005249,0.249945,0,0);}
.m19_c01361{transform:matrix(0.342824,-0.007199,0.005249,0.249945,0,0);-ms-transform:matrix(0.342824,-0.007199,0.005249,0.249945,0,0);-webkit-transform:matrix(0.342824,-0.007199,0.005249,0.249945,0,0);}
.m15_c01361{transform:matrix(0.355877,-0.007473,0.005249,0.249945,0,0);-ms-transform:matrix(0.355877,-0.007473,0.005249,0.249945,0,0);-webkit-transform:matrix(0.355877,-0.007473,0.005249,0.249945,0,0);}
.m2_c01361{transform:matrix(0.396650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396650,0.000000,0.000000,0.250000,0,0);}
.m0_c01361{transform:matrix(0.419265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419265,0.000000,0.000000,0.250000,0,0);}
.m5_c01361{transform:matrix(0.425095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425095,0.000000,0.000000,0.250000,0,0);}
.m6_c01361{transform:matrix(0.431170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431170,0.000000,0.000000,0.250000,0,0);}
.m1_c01361{transform:matrix(0.449455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.449455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.449455,0.000000,0.000000,0.250000,0,0);}
.m13_c01361{transform:matrix(0.730820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.730820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.730820,0.000000,0.000000,0.250000,0,0);}
.v0_c01361{vertical-align:0.000000px;}
.ls0_c01361{letter-spacing:0.000000px;}
.sc__c01361{text-shadow:none;}
.sc0_c01361{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__c01361{-webkit-text-stroke:0px transparent;}
.sc0_c01361{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01361{word-spacing:0.000000px;}
.fc0_c01361{color:transparent;}
.fs3_c01361{font-size:18.000000px;}
.fs0_c01361{font-size:72.000000px;}
.fs4_c01361{font-size:72.015874px;}
.fs2_c01361{font-size:96.000000px;}
.fs5_c01361{font-size:108.023811px;}
.fs1_c01361{font-size:120.000000px;}
.y0_c01361{bottom:0.000000px;}
.y17_c01361{bottom:557.304137px;}
.y18_c01361{bottom:559.117444px;}
.y19_c01361{bottom:561.609423px;}
.y1a_c01361{bottom:562.481338px;}
.y1b_c01361{bottom:564.689920px;}
.y1c_c01361{bottom:566.006719px;}
.y10_c01361{bottom:595.357500px;}
.y11_c01361{bottom:596.586315px;}
.y12_c01361{bottom:597.278244px;}
.y13_c01361{bottom:598.656463px;}
.y14_c01361{bottom:600.004852px;}
.y15_c01361{bottom:601.024759px;}
.y16_c01361{bottom:601.451521px;}
.y8_c01361{bottom:630.184500px;}
.y9_c01361{bottom:631.605000px;}
.ya_c01361{bottom:632.215500px;}
.yb_c01361{bottom:633.733500px;}
.yc_c01361{bottom:634.224000px;}
.yd_c01361{bottom:634.693500px;}
.y2_c01361{bottom:663.415500px;}
.y3_c01361{bottom:663.685500px;}
.y4_c01361{bottom:665.140500px;}
.y5_c01361{bottom:666.610500px;}
.y6_c01361{bottom:667.345500px;}
.y7_c01361{bottom:668.037000px;}
.yf_c01361{bottom:709.642500px;}
.ye_c01361{bottom:720.496500px;}
.y1_c01361{bottom:722.587500px;}
.h5_c01361{height:18.000000px;}
.h2_c01361{height:72.000000px;}
.h6_c01361{height:72.015874px;}
.h4_c01361{height:96.000000px;}
.h7_c01361{height:108.023811px;}
.h3_c01361{height:120.000000px;}
.h1_c01361{height:1250.250000px;}
.h0_c01361{height:1250.370000px;}
.w0_c01361{width:878.850000px;}
.w1_c01361{width:879.000000px;}
.x0_c01361{left:0.000000px;}
.x8_c01361{left:323.815500px;}
.x9_c01361{left:336.120000px;}
.xe_c01361{left:380.172000px;}
.x14_c01361{left:389.070000px;}
.xa_c01361{left:402.267000px;}
.x1b_c01361{left:440.928102px;}
.x1_c01361{left:445.770000px;}
.x15_c01361{left:460.120500px;}
.xb_c01361{left:469.069500px;}
.xf_c01361{left:481.623000px;}
.x2_c01361{left:485.730000px;}
.x16_c01361{left:493.069500px;}
.xc_c01361{left:502.450500px;}
.x10_c01361{left:525.178500px;}
.x3_c01361{left:528.660000px;}
.xd_c01361{left:533.874000px;}
.x4_c01361{left:545.130000px;}
.x1c_c01361{left:548.541667px;}
.x17_c01361{left:558.699000px;}
.x1d_c01361{left:570.338473px;}
.x5_c01361{left:574.290000px;}
.x6_c01361{left:606.690000px;}
.x18_c01361{left:622.908000px;}
.x1e_c01361{left:625.558455px;}
.x11_c01361{left:633.633000px;}
.x7_c01361{left:643.140000px;}
.x1f_c01361{left:658.464319px;}
.x12_c01361{left:668.707500px;}
.x19_c01361{left:671.475000px;}
.x1a_c01361{left:691.797000px;}
.x13_c01361{left:702.226500px;}
@media print{
.v0_c01361{vertical-align:0.000000pt;}
.ls0_c01361{letter-spacing:0.000000pt;}
.ws0_c01361{word-spacing:0.000000pt;}
.fs3_c01361{font-size:16.000000pt;}
.fs0_c01361{font-size:64.000000pt;}
.fs4_c01361{font-size:64.014110pt;}
.fs2_c01361{font-size:85.333333pt;}
.fs5_c01361{font-size:96.021166pt;}
.fs1_c01361{font-size:106.666667pt;}
.y0_c01361{bottom:0.000000pt;}
.y17_c01361{bottom:495.381455pt;}
.y18_c01361{bottom:496.993284pt;}
.y19_c01361{bottom:499.208376pt;}
.y1a_c01361{bottom:499.983412pt;}
.y1b_c01361{bottom:501.946596pt;}
.y1c_c01361{bottom:503.117084pt;}
.y10_c01361{bottom:529.206667pt;}
.y11_c01361{bottom:530.298947pt;}
.y12_c01361{bottom:530.913995pt;}
.y13_c01361{bottom:532.139079pt;}
.y14_c01361{bottom:533.337647pt;}
.y15_c01361{bottom:534.244231pt;}
.y16_c01361{bottom:534.623575pt;}
.y8_c01361{bottom:560.164000pt;}
.y9_c01361{bottom:561.426667pt;}
.ya_c01361{bottom:561.969333pt;}
.yb_c01361{bottom:563.318667pt;}
.yc_c01361{bottom:563.754667pt;}
.yd_c01361{bottom:564.172000pt;}
.y2_c01361{bottom:589.702667pt;}
.y3_c01361{bottom:589.942667pt;}
.y4_c01361{bottom:591.236000pt;}
.y5_c01361{bottom:592.542667pt;}
.y6_c01361{bottom:593.196000pt;}
.y7_c01361{bottom:593.810667pt;}
.yf_c01361{bottom:630.793333pt;}
.ye_c01361{bottom:640.441333pt;}
.y1_c01361{bottom:642.300000pt;}
.h5_c01361{height:16.000000pt;}
.h2_c01361{height:64.000000pt;}
.h6_c01361{height:64.014110pt;}
.h4_c01361{height:85.333333pt;}
.h7_c01361{height:96.021166pt;}
.h3_c01361{height:106.666667pt;}
.h1_c01361{height:1111.333333pt;}
.h0_c01361{height:1111.440000pt;}
.w0_c01361{width:781.200000pt;}
.w1_c01361{width:781.333333pt;}
.x0_c01361{left:0.000000pt;}
.x8_c01361{left:287.836000pt;}
.x9_c01361{left:298.773333pt;}
.xe_c01361{left:337.930667pt;}
.x14_c01361{left:345.840000pt;}
.xa_c01361{left:357.570667pt;}
.x1b_c01361{left:391.936091pt;}
.x1_c01361{left:396.240000pt;}
.x15_c01361{left:408.996000pt;}
.xb_c01361{left:416.950667pt;}
.xf_c01361{left:428.109333pt;}
.x2_c01361{left:431.760000pt;}
.x16_c01361{left:438.284000pt;}
.xc_c01361{left:446.622667pt;}
.x10_c01361{left:466.825333pt;}
.x3_c01361{left:469.920000pt;}
.xd_c01361{left:474.554667pt;}
.x4_c01361{left:484.560000pt;}
.x1c_c01361{left:487.592593pt;}
.x17_c01361{left:496.621333pt;}
.x1d_c01361{left:506.967532pt;}
.x5_c01361{left:510.480000pt;}
.x6_c01361{left:539.280000pt;}
.x18_c01361{left:553.696000pt;}
.x1e_c01361{left:556.051960pt;}
.x11_c01361{left:563.229333pt;}
.x7_c01361{left:571.680000pt;}
.x1f_c01361{left:585.301617pt;}
.x12_c01361{left:594.406667pt;}
.x19_c01361{left:596.866667pt;}
.x1a_c01361{left:614.930667pt;}
.x13_c01361{left:624.201333pt;}
}





/* 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_c01362 {
    display:none;
  }
  .loading-indicator_c01362.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01362 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_c01362 { 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_c01362" -> "#page-container .classname_c01362")
 */
.pf_c01362 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01362 { /* 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_c01362.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01362 { /* 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_c01362 { /* 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_c01362 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01362 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01362 {overflow:visible;}
  }
}
.c_c01362 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01362 { /* 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_c01362:after { /* webkit #35443 */
  content: '';
}
.t_c01362:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01362 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 */
}
.__c01362 { /* 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_c01362 { /* info for Javascript */
  display:none;
}
.l_c01362 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01362 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01362 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01362: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_c01362 {
    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_c01362.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01362.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_c01362 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01362{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01362;src:url('chunks/assets/font_dbd529e162d5851c7bfb6d27.woff2')format("woff");}.ff1_c01362{font-family:ff1_c01362;line-height:1.000000;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;}
.mf_c01362{transform:matrix(0.153795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153795,0.000000,0.000000,0.250000,0,0);}
.m0_c01362{transform:matrix(0.155785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155785,0.000000,0.000000,0.250000,0,0);}
.m10_c01362{transform:matrix(0.157075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157075,0.000000,0.000000,0.250000,0,0);}
.m4_c01362{transform:matrix(0.212717,0.001064,-0.001250,0.249997,0,0);-ms-transform:matrix(0.212717,0.001064,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.212717,0.001064,-0.001250,0.249997,0,0);}
.m13_c01362{transform:matrix(0.220485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220485,0.000000,0.000000,0.250000,0,0);}
.m1a_c01362{transform:matrix(0.222185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222185,0.000000,0.000000,0.250000,0,0);}
.m17_c01362{transform:matrix(0.228445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228445,0.000000,0.000000,0.250000,0,0);}
.m2e_c01362{transform:matrix(0.233677,0.001168,-0.001250,0.249997,0,0);-ms-transform:matrix(0.233677,0.001168,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.233677,0.001168,-0.001250,0.249997,0,0);}
.m29_c01362{transform:matrix(0.237182,0.001186,-0.001250,0.249997,0,0);-ms-transform:matrix(0.237182,0.001186,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.237182,0.001186,-0.001250,0.249997,0,0);}
.m1c_c01362{transform:matrix(0.237217,0.001186,-0.001250,0.249997,0,0);-ms-transform:matrix(0.237217,0.001186,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.237217,0.001186,-0.001250,0.249997,0,0);}
.m6_c01362{transform:matrix(0.238212,0.001191,-0.001250,0.249997,0,0);-ms-transform:matrix(0.238212,0.001191,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.238212,0.001191,-0.001250,0.249997,0,0);}
.m23_c01362{transform:matrix(0.240632,0.001203,-0.001250,0.249997,0,0);-ms-transform:matrix(0.240632,0.001203,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.240632,0.001203,-0.001250,0.249997,0,0);}
.m2c_c01362{transform:matrix(0.240677,0.001203,-0.001250,0.249997,0,0);-ms-transform:matrix(0.240677,0.001203,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.240677,0.001203,-0.001250,0.249997,0,0);}
.m8_c01362{transform:matrix(0.241027,0.001205,-0.001250,0.249997,0,0);-ms-transform:matrix(0.241027,0.001205,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.241027,0.001205,-0.001250,0.249997,0,0);}
.m1f_c01362{transform:matrix(0.247362,0.001237,-0.001250,0.249997,0,0);-ms-transform:matrix(0.247362,0.001237,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.247362,0.001237,-0.001250,0.249997,0,0);}
.ma_c01362{transform:matrix(0.250387,0.001252,-0.001250,0.249997,0,0);-ms-transform:matrix(0.250387,0.001252,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.250387,0.001252,-0.001250,0.249997,0,0);}
.m14_c01362{transform:matrix(0.250920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250920,0.000000,0.000000,0.250000,0,0);}
.m11_c01362{transform:matrix(0.251060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251060,0.000000,0.000000,0.250000,0,0);}
.m2f_c01362{transform:matrix(0.251692,0.001258,-0.001250,0.249997,0,0);-ms-transform:matrix(0.251692,0.001258,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.251692,0.001258,-0.001250,0.249997,0,0);}
.m21_c01362{transform:matrix(0.252627,0.001263,-0.001250,0.249997,0,0);-ms-transform:matrix(0.252627,0.001263,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.252627,0.001263,-0.001250,0.249997,0,0);}
.m1b_c01362{transform:matrix(0.252842,0.001264,-0.001250,0.249997,0,0);-ms-transform:matrix(0.252842,0.001264,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.252842,0.001264,-0.001250,0.249997,0,0);}
.m24_c01362{transform:matrix(0.253867,0.001269,-0.001250,0.249997,0,0);-ms-transform:matrix(0.253867,0.001269,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.253867,0.001269,-0.001250,0.249997,0,0);}
.m2b_c01362{transform:matrix(0.257097,0.001285,-0.001250,0.249997,0,0);-ms-transform:matrix(0.257097,0.001285,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.257097,0.001285,-0.001250,0.249997,0,0);}
.m18_c01362{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.mb_c01362{transform:matrix(0.258627,0.001293,-0.001250,0.249997,0,0);-ms-transform:matrix(0.258627,0.001293,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.258627,0.001293,-0.001250,0.249997,0,0);}
.m3_c01362{transform:matrix(0.258787,0.001294,-0.001250,0.249997,0,0);-ms-transform:matrix(0.258787,0.001294,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.258787,0.001294,-0.001250,0.249997,0,0);}
.m1e_c01362{transform:matrix(0.258987,0.001295,-0.001250,0.249997,0,0);-ms-transform:matrix(0.258987,0.001295,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.258987,0.001295,-0.001250,0.249997,0,0);}
.m2a_c01362{transform:matrix(0.260162,0.001301,-0.001250,0.249997,0,0);-ms-transform:matrix(0.260162,0.001301,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.260162,0.001301,-0.001250,0.249997,0,0);}
.m5_c01362{transform:matrix(0.261237,0.001306,-0.001250,0.249997,0,0);-ms-transform:matrix(0.261237,0.001306,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.261237,0.001306,-0.001250,0.249997,0,0);}
.m27_c01362{transform:matrix(0.261397,0.001307,-0.001250,0.249997,0,0);-ms-transform:matrix(0.261397,0.001307,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.261397,0.001307,-0.001250,0.249997,0,0);}
.m28_c01362{transform:matrix(0.262447,0.001312,-0.001250,0.249997,0,0);-ms-transform:matrix(0.262447,0.001312,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.262447,0.001312,-0.001250,0.249997,0,0);}
.m15_c01362{transform:matrix(0.264155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264155,0.000000,0.000000,0.250000,0,0);}
.m2d_c01362{transform:matrix(0.264432,0.001322,-0.001250,0.249997,0,0);-ms-transform:matrix(0.264432,0.001322,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.264432,0.001322,-0.001250,0.249997,0,0);}
.md_c01362{transform:matrix(0.264962,0.001325,-0.001250,0.249997,0,0);-ms-transform:matrix(0.264962,0.001325,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.264962,0.001325,-0.001250,0.249997,0,0);}
.m25_c01362{transform:matrix(0.266227,0.001331,-0.001250,0.249997,0,0);-ms-transform:matrix(0.266227,0.001331,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.266227,0.001331,-0.001250,0.249997,0,0);}
.mc_c01362{transform:matrix(0.270257,0.001351,-0.001250,0.249997,0,0);-ms-transform:matrix(0.270257,0.001351,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.270257,0.001351,-0.001250,0.249997,0,0);}
.m7_c01362{transform:matrix(0.270892,0.001354,-0.001250,0.249997,0,0);-ms-transform:matrix(0.270892,0.001354,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.270892,0.001354,-0.001250,0.249997,0,0);}
.m20_c01362{transform:matrix(0.273587,0.001368,-0.001250,0.249997,0,0);-ms-transform:matrix(0.273587,0.001368,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.273587,0.001368,-0.001250,0.249997,0,0);}
.m19_c01362{transform:matrix(0.273775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273775,0.000000,0.000000,0.250000,0,0);}
.m26_c01362{transform:matrix(0.275512,0.001378,-0.001250,0.249997,0,0);-ms-transform:matrix(0.275512,0.001378,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.275512,0.001378,-0.001250,0.249997,0,0);}
.m30_c01362{transform:matrix(0.277427,0.001387,-0.001250,0.249997,0,0);-ms-transform:matrix(0.277427,0.001387,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.277427,0.001387,-0.001250,0.249997,0,0);}
.m16_c01362{transform:matrix(0.279490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279490,0.000000,0.000000,0.250000,0,0);}
.m9_c01362{transform:matrix(0.280676,0.001403,-0.001250,0.249997,0,0);-ms-transform:matrix(0.280676,0.001403,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.280676,0.001403,-0.001250,0.249997,0,0);}
.m12_c01362{transform:matrix(0.282360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282360,0.000000,0.000000,0.250000,0,0);}
.m22_c01362{transform:matrix(0.283701,0.001419,-0.001250,0.249997,0,0);-ms-transform:matrix(0.283701,0.001419,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.283701,0.001419,-0.001250,0.249997,0,0);}
.m1d_c01362{transform:matrix(0.288406,0.001442,-0.001250,0.249997,0,0);-ms-transform:matrix(0.288406,0.001442,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.288406,0.001442,-0.001250,0.249997,0,0);}
.m31_c01362{transform:matrix(0.294570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294570,0.000000,0.000000,0.250000,0,0);}
.me_c01362{transform:matrix(0.300420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300420,0.000000,0.000000,0.250000,0,0);}
.m2_c01362{transform:matrix(0.300465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300465,0.000000,0.000000,0.250000,0,0);}
.m32_c01362{transform:matrix(0.307560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307560,0.000000,0.000000,0.250000,0,0);}
.m33_c01362{transform:matrix(0.325780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325780,0.000000,0.000000,0.250000,0,0);}
.m1_c01362{transform:matrix(0.338435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338435,0.000000,0.000000,0.250000,0,0);}
.v0_c01362{vertical-align:0.000000px;}
.ls0_c01362{letter-spacing:0.000000px;}
.sc__c01362{text-shadow:none;}
.sc0_c01362{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__c01362{-webkit-text-stroke:0px transparent;}
.sc0_c01362{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01362{word-spacing:0.000000px;}
.fc0_c01362{color:transparent;}
.fs5_c01362{font-size:60.000000px;}
.fs2_c01362{font-size:66.000000px;}
.fs3_c01362{font-size:72.000000px;}
.fs1_c01362{font-size:72.000900px;}
.fs0_c01362{font-size:84.000000px;}
.fs4_c01362{font-size:90.000000px;}
.y0_c01362{bottom:0.000000px;}
.y25_c01362{bottom:919.350000px;}
.y22_c01362{bottom:954.719070px;}
.y21_c01362{bottom:954.719220px;}
.y20_c01362{bottom:954.719520px;}
.y23_c01362{bottom:954.719528px;}
.y1f_c01362{bottom:954.719820px;}
.y24_c01362{bottom:954.719978px;}
.y1e_c01362{bottom:954.720420px;}
.y1b_c01362{bottom:954.720855px;}
.y1d_c01362{bottom:954.720863px;}
.y1c_c01362{bottom:954.721162px;}
.y1a_c01362{bottom:987.133440px;}
.y19_c01362{bottom:987.298162px;}
.y18_c01362{bottom:987.462870px;}
.y17_c01362{bottom:988.064993px;}
.y16_c01362{bottom:988.287757px;}
.y15_c01362{bottom:988.773735px;}
.y14_c01362{bottom:988.993710px;}
.y13_c01362{bottom:989.271892px;}
.y12_c01362{bottom:989.890215px;}
.y11_c01362{bottom:990.138592px;}
.y10_c01362{bottom:990.360000px;}
.yf_c01362{bottom:1020.192000px;}
.ye_c01362{bottom:1059.304500px;}
.yd_c01362{bottom:1096.200000px;}
.yc_c01362{bottom:1128.936105px;}
.yb_c01362{bottom:1129.153462px;}
.ya_c01362{bottom:1129.478820px;}
.y9_c01362{bottom:1129.702927px;}
.y8_c01362{bottom:1130.407650px;}
.y7_c01362{bottom:1130.637150px;}
.y6_c01362{bottom:1131.024608px;}
.y5_c01362{bottom:1131.239265px;}
.y4_c01362{bottom:1131.619965px;}
.y3_c01362{bottom:1131.827708px;}
.y2_c01362{bottom:1132.110000px;}
.y1_c01362{bottom:1205.280000px;}
.h7_c01362{height:60.000000px;}
.h4_c01362{height:66.000000px;}
.h5_c01362{height:72.000000px;}
.h3_c01362{height:72.000900px;}
.h2_c01362{height:84.000000px;}
.h6_c01362{height:90.000000px;}
.h1_c01362{height:1250.250000px;}
.h0_c01362{height:1250.370000px;}
.w0_c01362{width:878.850000px;}
.w1_c01362{width:879.000000px;}
.x0_c01362{left:0.000000px;}
.x4_c01362{left:147.346500px;}
.x10_c01362{left:170.640000px;}
.x19_c01362{left:191.629500px;}
.x5_c01362{left:203.805000px;}
.x1a_c01362{left:241.305000px;}
.x6_c01362{left:245.353500px;}
.x11_c01362{left:256.770000px;}
.x18_c01362{left:309.150000px;}
.xf_c01362{left:310.770000px;}
.x7_c01362{left:321.493500px;}
.x28_c01362{left:353.160000px;}
.x8_c01362{left:364.425000px;}
.x21_c01362{left:375.843023px;}
.x1_c01362{left:382.320000px;}
.x29_c01362{left:398.790000px;}
.x2_c01362{left:405.540000px;}
.x22_c01362{left:410.403885px;}
.x1b_c01362{left:420.606000px;}
.x9_c01362{left:441.916500px;}
.x3_c01362{left:450.090000px;}
.x12_c01362{left:464.670000px;}
.x23_c01362{left:485.194253px;}
.xa_c01362{left:487.816500px;}
.x13_c01362{left:508.950000px;}
.x24_c01362{left:519.215100px;}
.x1c_c01362{left:561.796500px;}
.x14_c01362{left:584.010000px;}
.x1d_c01362{left:606.349500px;}
.x25_c01362{left:618.037568px;}
.xb_c01362{left:628.761000px;}
.x26_c01362{left:660.968640px;}
.xc_c01362{left:673.582500px;}
.x15_c01362{left:684.180000px;}
.x1e_c01362{left:726.774000px;}
.xd_c01362{left:738.654000px;}
.x16_c01362{left:749.790000px;}
.x1f_c01362{left:759.715500px;}
.x17_c01362{left:770.850000px;}
.xe_c01362{left:782.125500px;}
.x20_c01362{left:792.660000px;}
.x27_c01362{left:802.990695px;}
@media print{
.v0_c01362{vertical-align:0.000000pt;}
.ls0_c01362{letter-spacing:0.000000pt;}
.ws0_c01362{word-spacing:0.000000pt;}
.fs5_c01362{font-size:53.333333pt;}
.fs2_c01362{font-size:58.666667pt;}
.fs3_c01362{font-size:64.000000pt;}
.fs1_c01362{font-size:64.000800pt;}
.fs0_c01362{font-size:74.666667pt;}
.fs4_c01362{font-size:80.000000pt;}
.y0_c01362{bottom:0.000000pt;}
.y25_c01362{bottom:817.200000pt;}
.y22_c01362{bottom:848.639173pt;}
.y21_c01362{bottom:848.639307pt;}
.y20_c01362{bottom:848.639573pt;}
.y23_c01362{bottom:848.639580pt;}
.y1f_c01362{bottom:848.639840pt;}
.y24_c01362{bottom:848.639980pt;}
.y1e_c01362{bottom:848.640373pt;}
.y1b_c01362{bottom:848.640760pt;}
.y1d_c01362{bottom:848.640767pt;}
.y1c_c01362{bottom:848.641033pt;}
.y1a_c01362{bottom:877.451947pt;}
.y19_c01362{bottom:877.598367pt;}
.y18_c01362{bottom:877.744773pt;}
.y17_c01362{bottom:878.279993pt;}
.y16_c01362{bottom:878.478007pt;}
.y15_c01362{bottom:878.909987pt;}
.y14_c01362{bottom:879.105520pt;}
.y13_c01362{bottom:879.352793pt;}
.y12_c01362{bottom:879.902413pt;}
.y11_c01362{bottom:880.123193pt;}
.y10_c01362{bottom:880.320000pt;}
.yf_c01362{bottom:906.837333pt;}
.ye_c01362{bottom:941.604000pt;}
.yd_c01362{bottom:974.400000pt;}
.yc_c01362{bottom:1003.498760pt;}
.yb_c01362{bottom:1003.691967pt;}
.ya_c01362{bottom:1003.981173pt;}
.y9_c01362{bottom:1004.180380pt;}
.y8_c01362{bottom:1004.806800pt;}
.y7_c01362{bottom:1005.010800pt;}
.y6_c01362{bottom:1005.355207pt;}
.y5_c01362{bottom:1005.546013pt;}
.y4_c01362{bottom:1005.884413pt;}
.y3_c01362{bottom:1006.069073pt;}
.y2_c01362{bottom:1006.320000pt;}
.y1_c01362{bottom:1071.360000pt;}
.h7_c01362{height:53.333333pt;}
.h4_c01362{height:58.666667pt;}
.h5_c01362{height:64.000000pt;}
.h3_c01362{height:64.000800pt;}
.h2_c01362{height:74.666667pt;}
.h6_c01362{height:80.000000pt;}
.h1_c01362{height:1111.333333pt;}
.h0_c01362{height:1111.440000pt;}
.w0_c01362{width:781.200000pt;}
.w1_c01362{width:781.333333pt;}
.x0_c01362{left:0.000000pt;}
.x4_c01362{left:130.974667pt;}
.x10_c01362{left:151.680000pt;}
.x19_c01362{left:170.337333pt;}
.x5_c01362{left:181.160000pt;}
.x1a_c01362{left:214.493333pt;}
.x6_c01362{left:218.092000pt;}
.x11_c01362{left:228.240000pt;}
.x18_c01362{left:274.800000pt;}
.xf_c01362{left:276.240000pt;}
.x7_c01362{left:285.772000pt;}
.x28_c01362{left:313.920000pt;}
.x8_c01362{left:323.933333pt;}
.x21_c01362{left:334.082687pt;}
.x1_c01362{left:339.840000pt;}
.x29_c01362{left:354.480000pt;}
.x2_c01362{left:360.480000pt;}
.x22_c01362{left:364.803453pt;}
.x1b_c01362{left:373.872000pt;}
.x9_c01362{left:392.814667pt;}
.x3_c01362{left:400.080000pt;}
.x12_c01362{left:413.040000pt;}
.x23_c01362{left:431.283780pt;}
.xa_c01362{left:433.614667pt;}
.x13_c01362{left:452.400000pt;}
.x24_c01362{left:461.524533pt;}
.x1c_c01362{left:499.374667pt;}
.x14_c01362{left:519.120000pt;}
.x1d_c01362{left:538.977333pt;}
.x25_c01362{left:549.366727pt;}
.xb_c01362{left:558.898667pt;}
.x26_c01362{left:587.527680pt;}
.xc_c01362{left:598.740000pt;}
.x15_c01362{left:608.160000pt;}
.x1e_c01362{left:646.021333pt;}
.xd_c01362{left:656.581333pt;}
.x16_c01362{left:666.480000pt;}
.x1f_c01362{left:675.302667pt;}
.x17_c01362{left:685.200000pt;}
.xe_c01362{left:695.222667pt;}
.x20_c01362{left:704.586667pt;}
.x27_c01362{left:713.769507pt;}
}





/* 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_c01363 {
    display:none;
  }
  .loading-indicator_c01363.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01363 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_c01363 { 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_c01363" -> "#page-container .classname_c01363")
 */
.pf_c01363 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01363 { /* 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_c01363.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01363 { /* 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_c01363 { /* 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_c01363 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01363 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01363 {overflow:visible;}
  }
}
.c_c01363 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01363 { /* 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_c01363:after { /* webkit #35443 */
  content: '';
}
.t_c01363:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01363 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 */
}
.__c01363 { /* 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_c01363 { /* info for Javascript */
  display:none;
}
.l_c01363 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01363 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01363 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01363: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_c01363 {
    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_c01363.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01363.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_c01363 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01363{font-family:sans-serif;visibility:hidden;}
.sc__c01363{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01363{-webkit-text-stroke:0px transparent;}
}
.y0_c01363{bottom:0.000000px;}
.h1_c01363{height:1250.250000px;}
.h0_c01363{height:1250.370000px;}
.w0_c01363{width:878.850000px;}
.w1_c01363{width:879.000000px;}
.x0_c01363{left:0.000000px;}
@media print{
.y0_c01363{bottom:0.000000pt;}
.h1_c01363{height:1111.333333pt;}
.h0_c01363{height:1111.440000pt;}
.w0_c01363{width:781.200000pt;}
.w1_c01363{width:781.333333pt;}
.x0_c01363{left:0.000000pt;}
}





/* 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_c01364 {
    display:none;
  }
  .loading-indicator_c01364.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01364 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_c01364 { 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_c01364" -> "#page-container .classname_c01364")
 */
.pf_c01364 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01364 { /* 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_c01364.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01364 { /* 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_c01364 { /* 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_c01364 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01364 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01364 {overflow:visible;}
  }
}
.c_c01364 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01364 { /* 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_c01364:after { /* webkit #35443 */
  content: '';
}
.t_c01364:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01364 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 */
}
.__c01364 { /* 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_c01364 { /* info for Javascript */
  display:none;
}
.l_c01364 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01364 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01364 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01364: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_c01364 {
    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_c01364.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01364.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_c01364 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01364{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01364;src:url('chunks/assets/font_7c6b9abe6ee2a268480c528b.woff2')format("woff");}.ff1_c01364{font-family:ff1_c01364;line-height:1.000000;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;}
.m42_c01364{transform:matrix(0.164770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164770,0.000000,0.000000,0.250000,0,0);}
.mb0_c01364{transform:matrix(0.178395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178395,0.000000,0.000000,0.250000,0,0);}
.m57_c01364{transform:matrix(0.185300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185300,0.000000,0.000000,0.250000,0,0);}
.mbe_c01364{transform:matrix(0.185960,-0.001302,0.001750,0.249994,0,0);-ms-transform:matrix(0.185960,-0.001302,0.001750,0.249994,0,0);-webkit-transform:matrix(0.185960,-0.001302,0.001750,0.249994,0,0);}
.m54_c01364{transform:matrix(0.190075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190075,0.000000,0.000000,0.250000,0,0);}
.m59_c01364{transform:matrix(0.190685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190685,0.000000,0.000000,0.250000,0,0);}
.m5c_c01364{transform:matrix(0.191635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191635,0.000000,0.000000,0.250000,0,0);}
.m88_c01364{transform:matrix(0.193580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193580,0.000000,0.000000,0.250000,0,0);}
.m20_c01364{transform:matrix(0.196455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196455,0.000000,0.000000,0.250000,0,0);}
.m19_c01364{transform:matrix(0.197435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197435,0.000000,0.000000,0.250000,0,0);}
.ma1_c01364{transform:matrix(0.198475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198475,0.000000,0.000000,0.250000,0,0);}
.m91_c01364{transform:matrix(0.202665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202665,0.000000,0.000000,0.250000,0,0);}
.m9b_c01364{transform:matrix(0.203530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203530,0.000000,0.000000,0.250000,0,0);}
.m34_c01364{transform:matrix(0.204345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204345,0.000000,0.000000,0.250000,0,0);}
.m8f_c01364{transform:matrix(0.205110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205110,0.000000,0.000000,0.250000,0,0);}
.m8b_c01364{transform:matrix(0.205965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205965,0.000000,0.000000,0.250000,0,0);}
.m23_c01364{transform:matrix(0.206600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206600,0.000000,0.000000,0.250000,0,0);}
.m52_c01364{transform:matrix(0.207240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207240,0.000000,0.000000,0.250000,0,0);}
.m10_c01364{transform:matrix(0.208100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208100,0.000000,0.000000,0.250000,0,0);}
.m60_c01364{transform:matrix(0.208560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208560,0.000000,0.000000,0.250000,0,0);}
.m87_c01364{transform:matrix(0.208605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208605,0.000000,0.000000,0.250000,0,0);}
.m8e_c01364{transform:matrix(0.209545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209545,0.000000,0.000000,0.250000,0,0);}
.m56_c01364{transform:matrix(0.210925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210925,0.000000,0.000000,0.250000,0,0);}
.m93_c01364{transform:matrix(0.211125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211125,0.000000,0.000000,0.250000,0,0);}
.m89_c01364{transform:matrix(0.212185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212185,0.000000,0.000000,0.250000,0,0);}
.m6b_c01364{transform:matrix(0.213720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213720,0.000000,0.000000,0.250000,0,0);}
.m2_c01364{transform:matrix(0.213930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213930,0.000000,0.000000,0.250000,0,0);}
.m53_c01364{transform:matrix(0.214160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214160,0.000000,0.000000,0.250000,0,0);}
.m5e_c01364{transform:matrix(0.214530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214530,0.000000,0.000000,0.250000,0,0);}
.m1d_c01364{transform:matrix(0.215910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215910,0.000000,0.000000,0.250000,0,0);}
.m24_c01364{transform:matrix(0.216100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216100,0.000000,0.000000,0.250000,0,0);}
.m6d_c01364{transform:matrix(0.216995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216995,0.000000,0.000000,0.250000,0,0);}
.m21_c01364{transform:matrix(0.217025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217025,0.000000,0.000000,0.250000,0,0);}
.m69_c01364{transform:matrix(0.217705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217705,0.000000,0.000000,0.250000,0,0);}
.m22_c01364{transform:matrix(0.218620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218620,0.000000,0.000000,0.250000,0,0);}
.m6f_c01364{transform:matrix(0.218940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218940,0.000000,0.000000,0.250000,0,0);}
.m71_c01364{transform:matrix(0.219380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219380,0.000000,0.000000,0.250000,0,0);}
.m1a_c01364{transform:matrix(0.219610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219610,0.000000,0.000000,0.250000,0,0);}
.ma9_c01364{transform:matrix(0.219860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219860,0.000000,0.000000,0.250000,0,0);}
.m5a_c01364{transform:matrix(0.220050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220050,0.000000,0.000000,0.250000,0,0);}
.ma7_c01364{transform:matrix(0.220865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220865,0.000000,0.000000,0.250000,0,0);}
.mab_c01364{transform:matrix(0.220890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220890,0.000000,0.000000,0.250000,0,0);}
.ma5_c01364{transform:matrix(0.221375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221375,0.000000,0.000000,0.250000,0,0);}
.m55_c01364{transform:matrix(0.221710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221710,0.000000,0.000000,0.250000,0,0);}
.m33_c01364{transform:matrix(0.221810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221810,0.000000,0.000000,0.250000,0,0);}
.m6c_c01364{transform:matrix(0.222460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222460,0.000000,0.000000,0.250000,0,0);}
.m9f_c01364{transform:matrix(0.222525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222525,0.000000,0.000000,0.250000,0,0);}
.m99_c01364{transform:matrix(0.222800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222800,0.000000,0.000000,0.250000,0,0);}
.m92_c01364{transform:matrix(0.223090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223090,0.000000,0.000000,0.250000,0,0);}
.m3e_c01364{transform:matrix(0.223380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223380,0.000000,0.000000,0.250000,0,0);}
.m36_c01364{transform:matrix(0.223610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223610,0.000000,0.000000,0.250000,0,0);}
.m50_c01364{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m1c_c01364{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m77_c01364{transform:matrix(0.225845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225845,0.000000,0.000000,0.250000,0,0);}
.m8d_c01364{transform:matrix(0.225935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225935,0.000000,0.000000,0.250000,0,0);}
.m5b_c01364{transform:matrix(0.226345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226345,0.000000,0.000000,0.250000,0,0);}
.m58_c01364{transform:matrix(0.226480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226480,0.000000,0.000000,0.250000,0,0);}
.m45_c01364{transform:matrix(0.226515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226515,0.000000,0.000000,0.250000,0,0);}
.m46_c01364{transform:matrix(0.226590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226590,0.000000,0.000000,0.250000,0,0);}
.m18_c01364{transform:matrix(0.226940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226940,0.000000,0.000000,0.250000,0,0);}
.m61_c01364{transform:matrix(0.227155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227155,0.000000,0.000000,0.250000,0,0);}
.m37_c01364{transform:matrix(0.227280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227280,0.000000,0.000000,0.250000,0,0);}
.m90_c01364{transform:matrix(0.229350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229350,0.000000,0.000000,0.250000,0,0);}
.m48_c01364{transform:matrix(0.229525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229525,0.000000,0.000000,0.250000,0,0);}
.m96_c01364{transform:matrix(0.229720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229720,0.000000,0.000000,0.250000,0,0);}
.m1f_c01364{transform:matrix(0.229785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229785,0.000000,0.000000,0.250000,0,0);}
.mc1_c01364{transform:matrix(0.229849,-0.001609,0.001750,0.249994,0,0);-ms-transform:matrix(0.229849,-0.001609,0.001750,0.249994,0,0);-webkit-transform:matrix(0.229849,-0.001609,0.001750,0.249994,0,0);}
.m70_c01364{transform:matrix(0.229990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229990,0.000000,0.000000,0.250000,0,0);}
.m16_c01364{transform:matrix(0.230340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230340,0.000000,0.000000,0.250000,0,0);}
.m74_c01364{transform:matrix(0.230745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230745,0.000000,0.000000,0.250000,0,0);}
.m1e_c01364{transform:matrix(0.231035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231035,0.000000,0.000000,0.250000,0,0);}
.m65_c01364{transform:matrix(0.231060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231060,0.000000,0.000000,0.250000,0,0);}
.m1b_c01364{transform:matrix(0.231410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231410,0.000000,0.000000,0.250000,0,0);}
.m8c_c01364{transform:matrix(0.231670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231670,0.000000,0.000000,0.250000,0,0);}
.m39_c01364{transform:matrix(0.232725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232725,0.000000,0.000000,0.250000,0,0);}
.m7e_c01364{transform:matrix(0.232985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232985,0.000000,0.000000,0.250000,0,0);}
.m2c_c01364{transform:matrix(0.233680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233680,0.000000,0.000000,0.250000,0,0);}
.m64_c01364{transform:matrix(0.233815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233815,0.000000,0.000000,0.250000,0,0);}
.m5f_c01364{transform:matrix(0.234260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234260,0.000000,0.000000,0.250000,0,0);}
.ma0_c01364{transform:matrix(0.234505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234505,0.000000,0.000000,0.250000,0,0);}
.m80_c01364{transform:matrix(0.235080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235080,0.000000,0.000000,0.250000,0,0);}
.m3d_c01364{transform:matrix(0.235520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235520,0.000000,0.000000,0.250000,0,0);}
.m32_c01364{transform:matrix(0.236480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236480,0.000000,0.000000,0.250000,0,0);}
.maa_c01364{transform:matrix(0.237200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237200,0.000000,0.000000,0.250000,0,0);}
.m9a_c01364{transform:matrix(0.237595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237595,0.000000,0.000000,0.250000,0,0);}
.mbf_c01364{transform:matrix(0.238229,-0.001668,0.001750,0.249994,0,0);-ms-transform:matrix(0.238229,-0.001668,0.001750,0.249994,0,0);-webkit-transform:matrix(0.238229,-0.001668,0.001750,0.249994,0,0);}
.m4f_c01364{transform:matrix(0.238355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238355,0.000000,0.000000,0.250000,0,0);}
.ma8_c01364{transform:matrix(0.239070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239070,0.000000,0.000000,0.250000,0,0);}
.m12_c01364{transform:matrix(0.239295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239295,0.000000,0.000000,0.250000,0,0);}
.m8a_c01364{transform:matrix(0.239600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239600,0.000000,0.000000,0.250000,0,0);}
.m9c_c01364{transform:matrix(0.239700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239700,0.000000,0.000000,0.250000,0,0);}
.m35_c01364{transform:matrix(0.240390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240390,0.000000,0.000000,0.250000,0,0);}
.m2f_c01364{transform:matrix(0.240635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240635,0.000000,0.000000,0.250000,0,0);}
.m6e_c01364{transform:matrix(0.241260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241260,0.000000,0.000000,0.250000,0,0);}
.ma2_c01364{transform:matrix(0.241325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241325,0.000000,0.000000,0.250000,0,0);}
.m78_c01364{transform:matrix(0.241415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241415,0.000000,0.000000,0.250000,0,0);}
.m3c_c01364{transform:matrix(0.241790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241790,0.000000,0.000000,0.250000,0,0);}
.m28_c01364{transform:matrix(0.241995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241995,0.000000,0.000000,0.250000,0,0);}
.m38_c01364{transform:matrix(0.242375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242375,0.000000,0.000000,0.250000,0,0);}
.m85_c01364{transform:matrix(0.242545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242545,0.000000,0.000000,0.250000,0,0);}
.ma3_c01364{transform:matrix(0.242630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242630,0.000000,0.000000,0.250000,0,0);}
.m82_c01364{transform:matrix(0.242880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242880,0.000000,0.000000,0.250000,0,0);}
.ma6_c01364{transform:matrix(0.243265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243265,0.000000,0.000000,0.250000,0,0);}
.m95_c01364{transform:matrix(0.243490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243490,0.000000,0.000000,0.250000,0,0);}
.mc2_c01364{transform:matrix(0.243809,-0.001707,0.001750,0.249994,0,0);-ms-transform:matrix(0.243809,-0.001707,0.001750,0.249994,0,0);-webkit-transform:matrix(0.243809,-0.001707,0.001750,0.249994,0,0);}
.m51_c01364{transform:matrix(0.244095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244095,0.000000,0.000000,0.250000,0,0);}
.m2a_c01364{transform:matrix(0.245715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245715,0.000000,0.000000,0.250000,0,0);}
.m97_c01364{transform:matrix(0.246195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246195,0.000000,0.000000,0.250000,0,0);}
.m40_c01364{transform:matrix(0.246550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246550,0.000000,0.000000,0.250000,0,0);}
.m75_c01364{transform:matrix(0.246705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246705,0.000000,0.000000,0.250000,0,0);}
.mc0_c01364{transform:matrix(0.247129,-0.001730,0.001750,0.249994,0,0);-ms-transform:matrix(0.247129,-0.001730,0.001750,0.249994,0,0);-webkit-transform:matrix(0.247129,-0.001730,0.001750,0.249994,0,0);}
.m15_c01364{transform:matrix(0.247755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247755,0.000000,0.000000,0.250000,0,0);}
.m68_c01364{transform:matrix(0.247915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247915,0.000000,0.000000,0.250000,0,0);}
.m43_c01364{transform:matrix(0.248560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248560,0.000000,0.000000,0.250000,0,0);}
.m26_c01364{transform:matrix(0.249110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249110,0.000000,0.000000,0.250000,0,0);}
.m67_c01364{transform:matrix(0.249790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249790,0.000000,0.000000,0.250000,0,0);}
.m13_c01364{transform:matrix(0.251445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251445,0.000000,0.000000,0.250000,0,0);}
.ma4_c01364{transform:matrix(0.251560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251560,0.000000,0.000000,0.250000,0,0);}
.m44_c01364{transform:matrix(0.251595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251595,0.000000,0.000000,0.250000,0,0);}
.m11_c01364{transform:matrix(0.251895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251895,0.000000,0.000000,0.250000,0,0);}
.m25_c01364{transform:matrix(0.252595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252595,0.000000,0.000000,0.250000,0,0);}
.me_c01364{transform:matrix(0.252825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252825,0.000000,0.000000,0.250000,0,0);}
.m63_c01364{transform:matrix(0.252855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252855,0.000000,0.000000,0.250000,0,0);}
.m3a_c01364{transform:matrix(0.252995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252995,0.000000,0.000000,0.250000,0,0);}
.m4e_c01364{transform:matrix(0.253035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253035,0.000000,0.000000,0.250000,0,0);}
.m30_c01364{transform:matrix(0.253390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253390,0.000000,0.000000,0.250000,0,0);}
.m4b_c01364{transform:matrix(0.253475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253475,0.000000,0.000000,0.250000,0,0);}
.m6a_c01364{transform:matrix(0.254060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254060,0.000000,0.000000,0.250000,0,0);}
.m3f_c01364{transform:matrix(0.254760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254760,0.000000,0.000000,0.250000,0,0);}
.m66_c01364{transform:matrix(0.256440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256440,0.000000,0.000000,0.250000,0,0);}
.m5_c01364{transform:matrix(0.256485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256485,0.000000,0.000000,0.250000,0,0);}
.m3b_c01364{transform:matrix(0.256715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256715,0.000000,0.000000,0.250000,0,0);}
.m17_c01364{transform:matrix(0.256740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256740,0.000000,0.000000,0.250000,0,0);}
.m94_c01364{transform:matrix(0.256995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256995,0.000000,0.000000,0.250000,0,0);}
.m47_c01364{transform:matrix(0.257210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257210,0.000000,0.000000,0.250000,0,0);}
.m9d_c01364{transform:matrix(0.257420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257420,0.000000,0.000000,0.250000,0,0);}
.md_c01364{transform:matrix(0.258030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258030,0.000000,0.000000,0.250000,0,0);}
.m62_c01364{transform:matrix(0.258085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258085,0.000000,0.000000,0.250000,0,0);}
.m5d_c01364{transform:matrix(0.258120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258120,0.000000,0.000000,0.250000,0,0);}
.m84_c01364{transform:matrix(0.258525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258525,0.000000,0.000000,0.250000,0,0);}
.mac_c01364{transform:matrix(0.259085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259085,0.000000,0.000000,0.250000,0,0);}
.m83_c01364{transform:matrix(0.259130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259130,0.000000,0.000000,0.250000,0,0);}
.mae_c01364{transform:matrix(0.259510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259510,0.000000,0.000000,0.250000,0,0);}
.m79_c01364{transform:matrix(0.260435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260435,0.000000,0.000000,0.250000,0,0);}
.mad_c01364{transform:matrix(0.260605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260605,0.000000,0.000000,0.250000,0,0);}
.m41_c01364{transform:matrix(0.260760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260760,0.000000,0.000000,0.250000,0,0);}
.m2e_c01364{transform:matrix(0.262100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262100,0.000000,0.000000,0.250000,0,0);}
.m4c_c01364{transform:matrix(0.262575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262575,0.000000,0.000000,0.250000,0,0);}
.m49_c01364{transform:matrix(0.264350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264350,0.000000,0.000000,0.250000,0,0);}
.m2b_c01364{transform:matrix(0.264975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264975,0.000000,0.000000,0.250000,0,0);}
.m7d_c01364{transform:matrix(0.266480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266480,0.000000,0.000000,0.250000,0,0);}
.m29_c01364{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m7a_c01364{transform:matrix(0.268620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268620,0.000000,0.000000,0.250000,0,0);}
.maf_c01364{transform:matrix(0.268905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268905,0.000000,0.000000,0.250000,0,0);}
.m76_c01364{transform:matrix(0.271415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271415,0.000000,0.000000,0.250000,0,0);}
.m31_c01364{transform:matrix(0.271545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271545,0.000000,0.000000,0.250000,0,0);}
.m2d_c01364{transform:matrix(0.273700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273700,0.000000,0.000000,0.250000,0,0);}
.m4d_c01364{transform:matrix(0.273940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273940,0.000000,0.000000,0.250000,0,0);}
.m14_c01364{transform:matrix(0.274105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274105,0.000000,0.000000,0.250000,0,0);}
.mbd_c01364{transform:matrix(0.275193,-0.001926,0.001750,0.249994,0,0);-ms-transform:matrix(0.275193,-0.001926,0.001750,0.249994,0,0);-webkit-transform:matrix(0.275193,-0.001926,0.001750,0.249994,0,0);}
.m4_c01364{transform:matrix(0.275220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275220,0.000000,0.000000,0.250000,0,0);}
.m81_c01364{transform:matrix(0.275565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275565,0.000000,0.000000,0.250000,0,0);}
.m7f_c01364{transform:matrix(0.275975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275975,0.000000,0.000000,0.250000,0,0);}
.m4a_c01364{transform:matrix(0.276085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276085,0.000000,0.000000,0.250000,0,0);}
.m7b_c01364{transform:matrix(0.276195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276195,0.000000,0.000000,0.250000,0,0);}
.m72_c01364{transform:matrix(0.276285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276285,0.000000,0.000000,0.250000,0,0);}
.m27_c01364{transform:matrix(0.276465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276465,0.000000,0.000000,0.250000,0,0);}
.mbc_c01364{transform:matrix(0.277563,-0.001943,0.001750,0.249994,0,0);-ms-transform:matrix(0.277563,-0.001943,0.001750,0.249994,0,0);-webkit-transform:matrix(0.277563,-0.001943,0.001750,0.249994,0,0);}
.mf_c01364{transform:matrix(0.277670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277670,0.000000,0.000000,0.250000,0,0);}
.m98_c01364{transform:matrix(0.278055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278055,0.000000,0.000000,0.250000,0,0);}
.m9e_c01364{transform:matrix(0.278765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278765,0.000000,0.000000,0.250000,0,0);}
.m7c_c01364{transform:matrix(0.281345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281345,0.000000,0.000000,0.250000,0,0);}
.m86_c01364{transform:matrix(0.281680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281680,0.000000,0.000000,0.250000,0,0);}
.m73_c01364{transform:matrix(0.287925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287925,0.000000,0.000000,0.250000,0,0);}
.m3_c01364{transform:matrix(0.300880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300880,0.000000,0.000000,0.250000,0,0);}
.mb5_c01364{transform:matrix(0.330887,-0.002316,0.001750,0.249994,0,0);-ms-transform:matrix(0.330887,-0.002316,0.001750,0.249994,0,0);-webkit-transform:matrix(0.330887,-0.002316,0.001750,0.249994,0,0);}
.mb8_c01364{transform:matrix(0.347426,-0.002432,0.001750,0.249994,0,0);-ms-transform:matrix(0.347426,-0.002432,0.001750,0.249994,0,0);-webkit-transform:matrix(0.347426,-0.002432,0.001750,0.249994,0,0);}
.mb7_c01364{transform:matrix(0.349871,-0.002449,0.001750,0.249994,0,0);-ms-transform:matrix(0.349871,-0.002449,0.001750,0.249994,0,0);-webkit-transform:matrix(0.349871,-0.002449,0.001750,0.249994,0,0);}
.mb3_c01364{transform:matrix(0.350001,-0.002450,0.001750,0.249994,0,0);-ms-transform:matrix(0.350001,-0.002450,0.001750,0.249994,0,0);-webkit-transform:matrix(0.350001,-0.002450,0.001750,0.249994,0,0);}
.mb6_c01364{transform:matrix(0.355256,-0.002487,0.001750,0.249994,0,0);-ms-transform:matrix(0.355256,-0.002487,0.001750,0.249994,0,0);-webkit-transform:matrix(0.355256,-0.002487,0.001750,0.249994,0,0);}
.mba_c01364{transform:matrix(0.362931,-0.002541,0.001750,0.249994,0,0);-ms-transform:matrix(0.362931,-0.002541,0.001750,0.249994,0,0);-webkit-transform:matrix(0.362931,-0.002541,0.001750,0.249994,0,0);}
.mbb_c01364{transform:matrix(0.381416,-0.002670,0.001750,0.249994,0,0);-ms-transform:matrix(0.381416,-0.002670,0.001750,0.249994,0,0);-webkit-transform:matrix(0.381416,-0.002670,0.001750,0.249994,0,0);}
.mb2_c01364{transform:matrix(0.381866,-0.002673,0.001750,0.249994,0,0);-ms-transform:matrix(0.381866,-0.002673,0.001750,0.249994,0,0);-webkit-transform:matrix(0.381866,-0.002673,0.001750,0.249994,0,0);}
.mb9_c01364{transform:matrix(0.382366,-0.002677,0.001750,0.249994,0,0);-ms-transform:matrix(0.382366,-0.002677,0.001750,0.249994,0,0);-webkit-transform:matrix(0.382366,-0.002677,0.001750,0.249994,0,0);}
.mb_c01364{transform:matrix(0.382895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382895,0.000000,0.000000,0.250000,0,0);}
.mb4_c01364{transform:matrix(0.398485,-0.002789,0.001750,0.249994,0,0);-ms-transform:matrix(0.398485,-0.002789,0.001750,0.249994,0,0);-webkit-transform:matrix(0.398485,-0.002789,0.001750,0.249994,0,0);}
.m9_c01364{transform:matrix(0.415270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415270,0.000000,0.000000,0.250000,0,0);}
.mc_c01364{transform:matrix(0.421850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421850,0.000000,0.000000,0.250000,0,0);}
.m6_c01364{transform:matrix(0.457645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457645,0.000000,0.000000,0.250000,0,0);}
.ma_c01364{transform:matrix(0.483830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483830,0.000000,0.000000,0.250000,0,0);}
.m8_c01364{transform:matrix(0.523625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523625,0.000000,0.000000,0.250000,0,0);}
.m1_c01364{transform:matrix(0.534135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.534135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.534135,0.000000,0.000000,0.250000,0,0);}
.m0_c01364{transform:matrix(0.963330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.963330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.963330,0.000000,0.000000,0.250000,0,0);}
.m7_c01364{transform:matrix(1.157890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.157890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.157890,0.000000,0.000000,0.250000,0,0);}
.mb1_c01364{transform:matrix(2.415060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.415060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.415060,0.000000,0.000000,0.250000,0,0);}
.v0_c01364{vertical-align:0.000000px;}
.ls0_c01364{letter-spacing:0.000000px;}
.sc__c01364{text-shadow:none;}
.sc0_c01364{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__c01364{-webkit-text-stroke:0px transparent;}
.sc0_c01364{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01364{word-spacing:0.000000px;}
.fc0_c01364{color:transparent;}
.fs0_c01364{font-size:18.000000px;}
.fs3_c01364{font-size:30.000000px;}
.fs7_c01364{font-size:48.001176px;}
.fs1_c01364{font-size:60.000000px;}
.fs2_c01364{font-size:72.000000px;}
.fs8_c01364{font-size:72.001764px;}
.fs5_c01364{font-size:78.000000px;}
.fs4_c01364{font-size:84.000000px;}
.fs6_c01364{font-size:90.000000px;}
.y0_c01364{bottom:0.000000px;}
.y73_c01364{bottom:286.612822px;}
.y72_c01364{bottom:286.613103px;}
.y71_c01364{bottom:286.613383px;}
.y70_c01364{bottom:286.613604px;}
.y6f_c01364{bottom:286.613765px;}
.y6d_c01364{bottom:286.613897px;}
.y6e_c01364{bottom:286.614175px;}
.y63_c01364{bottom:319.951500px;}
.y64_c01364{bottom:320.178562px;}
.y65_c01364{bottom:320.711322px;}
.y66_c01364{bottom:321.257490px;}
.y67_c01364{bottom:321.474808px;}
.y68_c01364{bottom:321.796119px;}
.y69_c01364{bottom:321.939728px;}
.y6a_c01364{bottom:322.174214px;}
.y6b_c01364{bottom:322.555920px;}
.y6c_c01364{bottom:322.937826px;}
.y62_c01364{bottom:350.193000px;}
.y61_c01364{bottom:358.830000px;}
.y60_c01364{bottom:482.109000px;}
.y5f_c01364{bottom:517.741500px;}
.y5e_c01364{bottom:554.427000px;}
.y5d_c01364{bottom:588.123000px;}
.y50_c01364{bottom:622.080000px;}
.y51_c01364{bottom:622.318500px;}
.y52_c01364{bottom:622.545000px;}
.y53_c01364{bottom:622.773000px;}
.y54_c01364{bottom:623.542500px;}
.y55_c01364{bottom:623.847000px;}
.y56_c01364{bottom:624.607500px;}
.y57_c01364{bottom:624.847500px;}
.y58_c01364{bottom:624.990000px;}
.y59_c01364{bottom:625.224000px;}
.y5a_c01364{bottom:625.833000px;}
.y5b_c01364{bottom:626.070000px;}
.y5c_c01364{bottom:626.533500px;}
.y4f_c01364{bottom:659.043000px;}
.y4e_c01364{bottom:694.170000px;}
.y4d_c01364{bottom:729.364500px;}
.y43_c01364{bottom:762.481500px;}
.y44_c01364{bottom:763.084500px;}
.y45_c01364{bottom:763.245000px;}
.y46_c01364{bottom:763.522500px;}
.y47_c01364{bottom:763.683000px;}
.y48_c01364{bottom:763.899000px;}
.y49_c01364{bottom:764.455500px;}
.y4a_c01364{bottom:764.943000px;}
.y4b_c01364{bottom:765.217500px;}
.y4c_c01364{bottom:765.381000px;}
.y38_c01364{bottom:798.663000px;}
.y39_c01364{bottom:799.090500px;}
.y3a_c01364{bottom:799.627500px;}
.y3b_c01364{bottom:799.974000px;}
.y3c_c01364{bottom:800.944500px;}
.y3d_c01364{bottom:801.633000px;}
.y3e_c01364{bottom:801.888000px;}
.y3f_c01364{bottom:802.776000px;}
.y40_c01364{bottom:803.130000px;}
.y41_c01364{bottom:803.829000px;}
.y42_c01364{bottom:804.100500px;}
.y2d_c01364{bottom:834.301500px;}
.y2e_c01364{bottom:834.627000px;}
.y2f_c01364{bottom:834.786000px;}
.y30_c01364{bottom:835.057500px;}
.y31_c01364{bottom:835.671000px;}
.y32_c01364{bottom:835.989000px;}
.y33_c01364{bottom:836.326500px;}
.y34_c01364{bottom:836.976000px;}
.y35_c01364{bottom:837.090000px;}
.y36_c01364{bottom:837.304500px;}
.y37_c01364{bottom:837.469500px;}
.y21_c01364{bottom:869.401500px;}
.y22_c01364{bottom:869.866500px;}
.y23_c01364{bottom:870.189000px;}
.y24_c01364{bottom:870.385500px;}
.y25_c01364{bottom:871.038000px;}
.y26_c01364{bottom:871.431000px;}
.y27_c01364{bottom:872.095500px;}
.y28_c01364{bottom:872.224500px;}
.y29_c01364{bottom:872.418000px;}
.y2a_c01364{bottom:872.808000px;}
.y2b_c01364{bottom:873.213000px;}
.y2c_c01364{bottom:873.348000px;}
.y20_c01364{bottom:908.595000px;}
.y13_c01364{bottom:975.241500px;}
.y14_c01364{bottom:975.748500px;}
.y15_c01364{bottom:976.020000px;}
.y16_c01364{bottom:976.968000px;}
.y17_c01364{bottom:977.232000px;}
.y18_c01364{bottom:977.770500px;}
.y19_c01364{bottom:978.196500px;}
.y1a_c01364{bottom:978.721500px;}
.y1b_c01364{bottom:978.985500px;}
.y1c_c01364{bottom:979.257000px;}
.y1d_c01364{bottom:979.771500px;}
.y1e_c01364{bottom:980.032500px;}
.y1f_c01364{bottom:980.307000px;}
.y6_c01364{bottom:1009.801500px;}
.y7_c01364{bottom:1010.401500px;}
.y8_c01364{bottom:1010.773500px;}
.y9_c01364{bottom:1011.492000px;}
.ya_c01364{bottom:1012.449000px;}
.yb_c01364{bottom:1012.698000px;}
.yc_c01364{bottom:1013.292000px;}
.yd_c01364{bottom:1014.498000px;}
.ye_c01364{bottom:1015.447500px;}
.yf_c01364{bottom:1015.825500px;}
.y10_c01364{bottom:1016.413500px;}
.y11_c01364{bottom:1016.662500px;}
.y12_c01364{bottom:1017.153000px;}
.y5_c01364{bottom:1049.511000px;}
.y4_c01364{bottom:1105.954500px;}
.y3_c01364{bottom:1121.580000px;}
.y2_c01364{bottom:1196.100000px;}
.y1_c01364{bottom:1231.599000px;}
.h2_c01364{height:18.000000px;}
.h5_c01364{height:30.000000px;}
.h9_c01364{height:48.001176px;}
.h3_c01364{height:60.000000px;}
.h4_c01364{height:72.000000px;}
.ha_c01364{height:72.001764px;}
.h7_c01364{height:78.000000px;}
.h6_c01364{height:84.000000px;}
.h8_c01364{height:90.000000px;}
.h1_c01364{height:1250.250000px;}
.h0_c01364{height:1250.370000px;}
.w0_c01364{width:878.850000px;}
.w1_c01364{width:879.000000px;}
.x0_c01364{left:0.000000px;}
.x18_c01364{left:101.677500px;}
.x21_c01364{left:103.522500px;}
.x6f_c01364{left:105.949500px;}
.x56_c01364{left:136.968000px;}
.x70_c01364{left:138.387000px;}
.x19_c01364{left:156.193500px;}
.x5e_c01364{left:158.220000px;}
.x64_c01364{left:160.650000px;}
.x22_c01364{left:166.981500px;}
.x36_c01364{left:168.280500px;}
.x57_c01364{left:169.395000px;}
.x31_c01364{left:178.836000px;}
.x1a_c01364{left:189.990000px;}
.x65_c01364{left:192.780000px;}
.x23_c01364{left:201.010500px;}
.x58_c01364{left:202.066500px;}
.x6c_c01364{left:203.580000px;}
.xe_c01364{left:209.520000px;}
.x2b_c01364{left:210.600000px;}
.x49_c01364{left:212.490000px;}
.x71_c01364{left:214.495500px;}
.x3b_c01364{left:223.113000px;}
.x6d_c01364{left:224.640000px;}
.x32_c01364{left:232.567500px;}
.x66_c01364{left:234.900000px;}
.x60_c01364{left:246.780000px;}
.x6e_c01364{left:250.560000px;}
.xf_c01364{left:254.880000px;}
.x4f_c01364{left:256.230000px;}
.x2c_c01364{left:265.680000px;}
.x8_c01364{left:272.970000px;}
.x5_c01364{left:275.130000px;}
.x50_c01364{left:288.360000px;}
.x72_c01364{left:292.519500px;}
.x43_c01364{left:298.348500px;}
.x4a_c01364{left:300.780000px;}
.x10_c01364{left:309.420000px;}
.x40_c01364{left:310.557000px;}
.x59_c01364{left:311.947500px;}
.x24_c01364{left:319.533000px;}
.x73_c01364{left:323.565000px;}
.x6_c01364{left:332.100000px;}
.x1b_c01364{left:342.267000px;}
.x25_c01364{left:352.468500px;}
.x4b_c01364{left:355.590000px;}
.x1c_c01364{left:364.932000px;}
.x76_c01364{left:368.019193px;}
.x9_c01364{left:369.360000px;}
.x3_c01364{left:373.140000px;}
.x51_c01364{left:375.840000px;}
.x37_c01364{left:376.990500px;}
.x61_c01364{left:378.000000px;}
.x5f_c01364{left:379.620000px;}
.x41_c01364{left:385.903500px;}
.x3c_c01364{left:387.558000px;}
.x67_c01364{left:389.610000px;}
.x4_c01364{left:396.360000px;}
.x1_c01364{left:398.250000px;}
.xa_c01364{left:404.460000px;}
.x7_c01364{left:406.080000px;}
.x2d_c01364{left:407.430000px;}
.x52_c01364{left:409.050000px;}
.x77_c01364{left:412.569877px;}
.x2_c01364{left:419.040000px;}
.x62_c01364{left:422.550000px;}
.xb_c01364{left:426.330000px;}
.x44_c01364{left:430.918500px;}
.x2e_c01364{left:440.100000px;}
.xc_c01364{left:441.450000px;}
.x11_c01364{left:451.710000px;}
.x4c_c01364{left:454.140000px;}
.x78_c01364{left:456.040509px;}
.xd_c01364{left:459.000000px;}
.x45_c01364{left:463.318500px;}
.x26_c01364{left:472.887000px;}
.x74_c01364{left:478.009500px;}
.x63_c01364{left:486.540000px;}
.x42_c01364{left:497.145000px;}
.x5a_c01364{left:498.243000px;}
.x12_c01364{left:505.170000px;}
.x38_c01364{left:508.219500px;}
.x53_c01364{left:509.220000px;}
.x79_c01364{left:511.931749px;}
.x5b_c01364{left:518.496000px;}
.x68_c01364{left:520.020000px;}
.x1d_c01364{left:528.550500px;}
.x75_c01364{left:532.567500px;}
.x13_c01364{left:538.110000px;}
.x33_c01364{left:550.359000px;}
.x5c_c01364{left:551.974500px;}
.x7a_c01364{left:554.322328px;}
.x46_c01364{left:561.598500px;}
.x27_c01364{left:571.440000px;}
.x69_c01364{left:574.020000px;}
.x2f_c01364{left:584.280000px;}
.x14_c01364{left:594.270000px;}
.x47_c01364{left:595.348500px;}
.x34_c01364{left:604.081500px;}
.x28_c01364{left:605.458500px;}
.x6a_c01364{left:608.580000px;}
.x1e_c01364{left:614.907000px;}
.x3d_c01364{left:616.521000px;}
.x4d_c01364{left:628.020000px;}
.x39_c01364{left:638.068500px;}
.x1f_c01364{left:649.237500px;}
.x48_c01364{left:652.318500px;}
.x3a_c01364{left:660.750000px;}
.x29_c01364{left:669.717000px;}
.x54_c01364{left:671.760000px;}
.x30_c01364{left:681.210000px;}
.x15_c01364{left:703.350000px;}
.x6b_c01364{left:705.240000px;}
.x55_c01364{left:715.230000px;}
.x16_c01364{left:724.950000px;}
.x2a_c01364{left:736.675500px;}
.x5d_c01364{left:738.808500px;}
.x4e_c01364{left:746.820000px;}
.x3e_c01364{left:748.261500px;}
.x17_c01364{left:757.350000px;}
.x35_c01364{left:759.034500px;}
.x20_c01364{left:769.864500px;}
.x3f_c01364{left:782.253000px;}
@media print{
.v0_c01364{vertical-align:0.000000pt;}
.ls0_c01364{letter-spacing:0.000000pt;}
.ws0_c01364{word-spacing:0.000000pt;}
.fs0_c01364{font-size:16.000000pt;}
.fs3_c01364{font-size:26.666667pt;}
.fs7_c01364{font-size:42.667712pt;}
.fs1_c01364{font-size:53.333333pt;}
.fs2_c01364{font-size:64.000000pt;}
.fs8_c01364{font-size:64.001568pt;}
.fs5_c01364{font-size:69.333333pt;}
.fs4_c01364{font-size:74.666667pt;}
.fs6_c01364{font-size:80.000000pt;}
.y0_c01364{bottom:0.000000pt;}
.y73_c01364{bottom:254.766953pt;}
.y72_c01364{bottom:254.767203pt;}
.y71_c01364{bottom:254.767452pt;}
.y70_c01364{bottom:254.767648pt;}
.y6f_c01364{bottom:254.767791pt;}
.y6d_c01364{bottom:254.767908pt;}
.y6e_c01364{bottom:254.768156pt;}
.y63_c01364{bottom:284.401333pt;}
.y64_c01364{bottom:284.603167pt;}
.y65_c01364{bottom:285.076731pt;}
.y66_c01364{bottom:285.562213pt;}
.y67_c01364{bottom:285.755385pt;}
.y68_c01364{bottom:286.040995pt;}
.y69_c01364{bottom:286.168647pt;}
.y6a_c01364{bottom:286.377079pt;}
.y6b_c01364{bottom:286.716373pt;}
.y6c_c01364{bottom:287.055845pt;}
.y62_c01364{bottom:311.282667pt;}
.y61_c01364{bottom:318.960000pt;}
.y60_c01364{bottom:428.541333pt;}
.y5f_c01364{bottom:460.214667pt;}
.y5e_c01364{bottom:492.824000pt;}
.y5d_c01364{bottom:522.776000pt;}
.y50_c01364{bottom:552.960000pt;}
.y51_c01364{bottom:553.172000pt;}
.y52_c01364{bottom:553.373333pt;}
.y53_c01364{bottom:553.576000pt;}
.y54_c01364{bottom:554.260000pt;}
.y55_c01364{bottom:554.530667pt;}
.y56_c01364{bottom:555.206667pt;}
.y57_c01364{bottom:555.420000pt;}
.y58_c01364{bottom:555.546667pt;}
.y59_c01364{bottom:555.754667pt;}
.y5a_c01364{bottom:556.296000pt;}
.y5b_c01364{bottom:556.506667pt;}
.y5c_c01364{bottom:556.918667pt;}
.y4f_c01364{bottom:585.816000pt;}
.y4e_c01364{bottom:617.040000pt;}
.y4d_c01364{bottom:648.324000pt;}
.y43_c01364{bottom:677.761333pt;}
.y44_c01364{bottom:678.297333pt;}
.y45_c01364{bottom:678.440000pt;}
.y46_c01364{bottom:678.686667pt;}
.y47_c01364{bottom:678.829333pt;}
.y48_c01364{bottom:679.021333pt;}
.y49_c01364{bottom:679.516000pt;}
.y4a_c01364{bottom:679.949333pt;}
.y4b_c01364{bottom:680.193333pt;}
.y4c_c01364{bottom:680.338667pt;}
.y38_c01364{bottom:709.922667pt;}
.y39_c01364{bottom:710.302667pt;}
.y3a_c01364{bottom:710.780000pt;}
.y3b_c01364{bottom:711.088000pt;}
.y3c_c01364{bottom:711.950667pt;}
.y3d_c01364{bottom:712.562667pt;}
.y3e_c01364{bottom:712.789333pt;}
.y3f_c01364{bottom:713.578667pt;}
.y40_c01364{bottom:713.893333pt;}
.y41_c01364{bottom:714.514667pt;}
.y42_c01364{bottom:714.756000pt;}
.y2d_c01364{bottom:741.601333pt;}
.y2e_c01364{bottom:741.890667pt;}
.y2f_c01364{bottom:742.032000pt;}
.y30_c01364{bottom:742.273333pt;}
.y31_c01364{bottom:742.818667pt;}
.y32_c01364{bottom:743.101333pt;}
.y33_c01364{bottom:743.401333pt;}
.y34_c01364{bottom:743.978667pt;}
.y35_c01364{bottom:744.080000pt;}
.y36_c01364{bottom:744.270667pt;}
.y37_c01364{bottom:744.417333pt;}
.y21_c01364{bottom:772.801333pt;}
.y22_c01364{bottom:773.214667pt;}
.y23_c01364{bottom:773.501333pt;}
.y24_c01364{bottom:773.676000pt;}
.y25_c01364{bottom:774.256000pt;}
.y26_c01364{bottom:774.605333pt;}
.y27_c01364{bottom:775.196000pt;}
.y28_c01364{bottom:775.310667pt;}
.y29_c01364{bottom:775.482667pt;}
.y2a_c01364{bottom:775.829333pt;}
.y2b_c01364{bottom:776.189333pt;}
.y2c_c01364{bottom:776.309333pt;}
.y20_c01364{bottom:807.640000pt;}
.y13_c01364{bottom:866.881333pt;}
.y14_c01364{bottom:867.332000pt;}
.y15_c01364{bottom:867.573333pt;}
.y16_c01364{bottom:868.416000pt;}
.y17_c01364{bottom:868.650667pt;}
.y18_c01364{bottom:869.129333pt;}
.y19_c01364{bottom:869.508000pt;}
.y1a_c01364{bottom:869.974667pt;}
.y1b_c01364{bottom:870.209333pt;}
.y1c_c01364{bottom:870.450667pt;}
.y1d_c01364{bottom:870.908000pt;}
.y1e_c01364{bottom:871.140000pt;}
.y1f_c01364{bottom:871.384000pt;}
.y6_c01364{bottom:897.601333pt;}
.y7_c01364{bottom:898.134667pt;}
.y8_c01364{bottom:898.465333pt;}
.y9_c01364{bottom:899.104000pt;}
.ya_c01364{bottom:899.954667pt;}
.yb_c01364{bottom:900.176000pt;}
.yc_c01364{bottom:900.704000pt;}
.yd_c01364{bottom:901.776000pt;}
.ye_c01364{bottom:902.620000pt;}
.yf_c01364{bottom:902.956000pt;}
.y10_c01364{bottom:903.478667pt;}
.y11_c01364{bottom:903.700000pt;}
.y12_c01364{bottom:904.136000pt;}
.y5_c01364{bottom:932.898667pt;}
.y4_c01364{bottom:983.070667pt;}
.y3_c01364{bottom:996.960000pt;}
.y2_c01364{bottom:1063.200000pt;}
.y1_c01364{bottom:1094.754667pt;}
.h2_c01364{height:16.000000pt;}
.h5_c01364{height:26.666667pt;}
.h9_c01364{height:42.667712pt;}
.h3_c01364{height:53.333333pt;}
.h4_c01364{height:64.000000pt;}
.ha_c01364{height:64.001568pt;}
.h7_c01364{height:69.333333pt;}
.h6_c01364{height:74.666667pt;}
.h8_c01364{height:80.000000pt;}
.h1_c01364{height:1111.333333pt;}
.h0_c01364{height:1111.440000pt;}
.w0_c01364{width:781.200000pt;}
.w1_c01364{width:781.333333pt;}
.x0_c01364{left:0.000000pt;}
.x18_c01364{left:90.380000pt;}
.x21_c01364{left:92.020000pt;}
.x6f_c01364{left:94.177333pt;}
.x56_c01364{left:121.749333pt;}
.x70_c01364{left:123.010667pt;}
.x19_c01364{left:138.838667pt;}
.x5e_c01364{left:140.640000pt;}
.x64_c01364{left:142.800000pt;}
.x22_c01364{left:148.428000pt;}
.x36_c01364{left:149.582667pt;}
.x57_c01364{left:150.573333pt;}
.x31_c01364{left:158.965333pt;}
.x1a_c01364{left:168.880000pt;}
.x65_c01364{left:171.360000pt;}
.x23_c01364{left:178.676000pt;}
.x58_c01364{left:179.614667pt;}
.x6c_c01364{left:180.960000pt;}
.xe_c01364{left:186.240000pt;}
.x2b_c01364{left:187.200000pt;}
.x49_c01364{left:188.880000pt;}
.x71_c01364{left:190.662667pt;}
.x3b_c01364{left:198.322667pt;}
.x6d_c01364{left:199.680000pt;}
.x32_c01364{left:206.726667pt;}
.x66_c01364{left:208.800000pt;}
.x60_c01364{left:219.360000pt;}
.x6e_c01364{left:222.720000pt;}
.xf_c01364{left:226.560000pt;}
.x4f_c01364{left:227.760000pt;}
.x2c_c01364{left:236.160000pt;}
.x8_c01364{left:242.640000pt;}
.x5_c01364{left:244.560000pt;}
.x50_c01364{left:256.320000pt;}
.x72_c01364{left:260.017333pt;}
.x43_c01364{left:265.198667pt;}
.x4a_c01364{left:267.360000pt;}
.x10_c01364{left:275.040000pt;}
.x40_c01364{left:276.050667pt;}
.x59_c01364{left:277.286667pt;}
.x24_c01364{left:284.029333pt;}
.x73_c01364{left:287.613333pt;}
.x6_c01364{left:295.200000pt;}
.x1b_c01364{left:304.237333pt;}
.x25_c01364{left:313.305333pt;}
.x4b_c01364{left:316.080000pt;}
.x1c_c01364{left:324.384000pt;}
.x76_c01364{left:327.128172pt;}
.x9_c01364{left:328.320000pt;}
.x3_c01364{left:331.680000pt;}
.x51_c01364{left:334.080000pt;}
.x37_c01364{left:335.102667pt;}
.x61_c01364{left:336.000000pt;}
.x5f_c01364{left:337.440000pt;}
.x41_c01364{left:343.025333pt;}
.x3c_c01364{left:344.496000pt;}
.x67_c01364{left:346.320000pt;}
.x4_c01364{left:352.320000pt;}
.x1_c01364{left:354.000000pt;}
.xa_c01364{left:359.520000pt;}
.x7_c01364{left:360.960000pt;}
.x2d_c01364{left:362.160000pt;}
.x52_c01364{left:363.600000pt;}
.x77_c01364{left:366.728780pt;}
.x2_c01364{left:372.480000pt;}
.x62_c01364{left:375.600000pt;}
.xb_c01364{left:378.960000pt;}
.x44_c01364{left:383.038667pt;}
.x2e_c01364{left:391.200000pt;}
.xc_c01364{left:392.400000pt;}
.x11_c01364{left:401.520000pt;}
.x4c_c01364{left:403.680000pt;}
.x78_c01364{left:405.369341pt;}
.xd_c01364{left:408.000000pt;}
.x45_c01364{left:411.838667pt;}
.x26_c01364{left:420.344000pt;}
.x74_c01364{left:424.897333pt;}
.x63_c01364{left:432.480000pt;}
.x42_c01364{left:441.906667pt;}
.x5a_c01364{left:442.882667pt;}
.x12_c01364{left:449.040000pt;}
.x38_c01364{left:451.750667pt;}
.x53_c01364{left:452.640000pt;}
.x79_c01364{left:455.050444pt;}
.x5b_c01364{left:460.885333pt;}
.x68_c01364{left:462.240000pt;}
.x1d_c01364{left:469.822667pt;}
.x75_c01364{left:473.393333pt;}
.x13_c01364{left:478.320000pt;}
.x33_c01364{left:489.208000pt;}
.x5c_c01364{left:490.644000pt;}
.x7a_c01364{left:492.730959pt;}
.x46_c01364{left:499.198667pt;}
.x27_c01364{left:507.946667pt;}
.x69_c01364{left:510.240000pt;}
.x2f_c01364{left:519.360000pt;}
.x14_c01364{left:528.240000pt;}
.x47_c01364{left:529.198667pt;}
.x34_c01364{left:536.961333pt;}
.x28_c01364{left:538.185333pt;}
.x6a_c01364{left:540.960000pt;}
.x1e_c01364{left:546.584000pt;}
.x3d_c01364{left:548.018667pt;}
.x4d_c01364{left:558.240000pt;}
.x39_c01364{left:567.172000pt;}
.x1f_c01364{left:577.100000pt;}
.x48_c01364{left:579.838667pt;}
.x3a_c01364{left:587.333333pt;}
.x29_c01364{left:595.304000pt;}
.x54_c01364{left:597.120000pt;}
.x30_c01364{left:605.520000pt;}
.x15_c01364{left:625.200000pt;}
.x6b_c01364{left:626.880000pt;}
.x55_c01364{left:635.760000pt;}
.x16_c01364{left:644.400000pt;}
.x2a_c01364{left:654.822667pt;}
.x5d_c01364{left:656.718667pt;}
.x4e_c01364{left:663.840000pt;}
.x3e_c01364{left:665.121333pt;}
.x17_c01364{left:673.200000pt;}
.x35_c01364{left:674.697333pt;}
.x20_c01364{left:684.324000pt;}
.x3f_c01364{left:695.336000pt;}
}





/* 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_c01365 {
    display:none;
  }
  .loading-indicator_c01365.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01365 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_c01365 { 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_c01365" -> "#page-container .classname_c01365")
 */
.pf_c01365 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01365 { /* 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_c01365.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01365 { /* 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_c01365 { /* 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_c01365 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01365 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01365 {overflow:visible;}
  }
}
.c_c01365 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01365 { /* 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_c01365:after { /* webkit #35443 */
  content: '';
}
.t_c01365:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01365 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 */
}
.__c01365 { /* 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_c01365 { /* info for Javascript */
  display:none;
}
.l_c01365 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01365 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01365 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01365: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_c01365 {
    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_c01365.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01365.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_c01365 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01365{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01365;src:url('chunks/assets/font_59dc3ab2e04ed21d4ac9992b.woff2')format("woff");}.ff1_c01365{font-family:ff1_c01365;line-height:1.000000;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;}
.m9_c01365{transform:matrix(0.153935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153935,0.000000,0.000000,0.250000,0,0);}
.mb_c01365{transform:matrix(0.159450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159450,0.000000,0.000000,0.250000,0,0);}
.m8_c01365{transform:matrix(0.203290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203290,0.000000,0.000000,0.250000,0,0);}
.m6_c01365{transform:matrix(0.205415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205415,0.000000,0.000000,0.250000,0,0);}
.m0_c01365{transform:matrix(0.212130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212130,0.000000,0.000000,0.250000,0,0);}
.m3_c01365{transform:matrix(0.217530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217530,0.000000,0.000000,0.250000,0,0);}
.m5_c01365{transform:matrix(0.218405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218405,0.000000,0.000000,0.250000,0,0);}
.m4_c01365{transform:matrix(0.233355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233355,0.000000,0.000000,0.250000,0,0);}
.ma_c01365{transform:matrix(0.236520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236520,0.000000,0.000000,0.250000,0,0);}
.m7_c01365{transform:matrix(0.241495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241495,0.000000,0.000000,0.250000,0,0);}
.md_c01365{transform:matrix(0.292115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292115,0.000000,0.000000,0.250000,0,0);}
.m2_c01365{transform:matrix(0.341715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341715,0.000000,0.000000,0.250000,0,0);}
.m1_c01365{transform:matrix(0.555710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555710,0.000000,0.000000,0.250000,0,0);}
.mc_c01365{transform:matrix(1.088405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.088405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.088405,0.000000,0.000000,0.250000,0,0);}
.v0_c01365{vertical-align:0.000000px;}
.ls0_c01365{letter-spacing:0.000000px;}
.sc__c01365{text-shadow:none;}
.sc0_c01365{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__c01365{-webkit-text-stroke:0px transparent;}
.sc0_c01365{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01365{word-spacing:0.000000px;}
.fc0_c01365{color:transparent;}
.fs1_c01365{font-size:12.000000px;}
.fs0_c01365{font-size:18.000000px;}
.fs7_c01365{font-size:24.000000px;}
.fs6_c01365{font-size:30.000000px;}
.fs5_c01365{font-size:36.000000px;}
.fs3_c01365{font-size:42.000000px;}
.fs4_c01365{font-size:48.000000px;}
.fs2_c01365{font-size:96.000000px;}
.y0_c01365{bottom:0.000000px;}
.yd_c01365{bottom:343.710000px;}
.yc_c01365{bottom:604.260000px;}
.yb_c01365{bottom:948.240000px;}
.ya_c01365{bottom:976.590000px;}
.y9_c01365{bottom:997.650000px;}
.y8_c01365{bottom:1007.100000px;}
.y7_c01365{bottom:1014.120000px;}
.y6_c01365{bottom:1022.760000px;}
.y5_c01365{bottom:1031.400000px;}
.y4_c01365{bottom:1046.790000px;}
.y3_c01365{bottom:1105.920000px;}
.y2_c01365{bottom:1136.160000px;}
.y1_c01365{bottom:1182.330000px;}
.h3_c01365{height:12.000000px;}
.h2_c01365{height:18.000000px;}
.h9_c01365{height:24.000000px;}
.h8_c01365{height:30.000000px;}
.h7_c01365{height:36.000000px;}
.h5_c01365{height:42.000000px;}
.h6_c01365{height:48.000000px;}
.h4_c01365{height:96.000000px;}
.h1_c01365{height:1250.250000px;}
.h0_c01365{height:1250.370000px;}
.w0_c01365{width:878.850000px;}
.w1_c01365{width:879.000000px;}
.x0_c01365{left:0.000000px;}
.x5_c01365{left:320.490000px;}
.x6_c01365{left:343.440000px;}
.x7_c01365{left:583.740000px;}
.x4_c01365{left:860.490000px;}
.x2_c01365{left:873.990000px;}
.x1_c01365{left:875.070000px;}
.x3_c01365{left:876.690000px;}
@media print{
.v0_c01365{vertical-align:0.000000pt;}
.ls0_c01365{letter-spacing:0.000000pt;}
.ws0_c01365{word-spacing:0.000000pt;}
.fs1_c01365{font-size:10.666667pt;}
.fs0_c01365{font-size:16.000000pt;}
.fs7_c01365{font-size:21.333333pt;}
.fs6_c01365{font-size:26.666667pt;}
.fs5_c01365{font-size:32.000000pt;}
.fs3_c01365{font-size:37.333333pt;}
.fs4_c01365{font-size:42.666667pt;}
.fs2_c01365{font-size:85.333333pt;}
.y0_c01365{bottom:0.000000pt;}
.yd_c01365{bottom:305.520000pt;}
.yc_c01365{bottom:537.120000pt;}
.yb_c01365{bottom:842.880000pt;}
.ya_c01365{bottom:868.080000pt;}
.y9_c01365{bottom:886.800000pt;}
.y8_c01365{bottom:895.200000pt;}
.y7_c01365{bottom:901.440000pt;}
.y6_c01365{bottom:909.120000pt;}
.y5_c01365{bottom:916.800000pt;}
.y4_c01365{bottom:930.480000pt;}
.y3_c01365{bottom:983.040000pt;}
.y2_c01365{bottom:1009.920000pt;}
.y1_c01365{bottom:1050.960000pt;}
.h3_c01365{height:10.666667pt;}
.h2_c01365{height:16.000000pt;}
.h9_c01365{height:21.333333pt;}
.h8_c01365{height:26.666667pt;}
.h7_c01365{height:32.000000pt;}
.h5_c01365{height:37.333333pt;}
.h6_c01365{height:42.666667pt;}
.h4_c01365{height:85.333333pt;}
.h1_c01365{height:1111.333333pt;}
.h0_c01365{height:1111.440000pt;}
.w0_c01365{width:781.200000pt;}
.w1_c01365{width:781.333333pt;}
.x0_c01365{left:0.000000pt;}
.x5_c01365{left:284.880000pt;}
.x6_c01365{left:305.280000pt;}
.x7_c01365{left:518.880000pt;}
.x4_c01365{left:764.880000pt;}
.x2_c01365{left:776.880000pt;}
.x1_c01365{left:777.840000pt;}
.x3_c01365{left:779.280000pt;}
}





/* 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_c01366 {
    display:none;
  }
  .loading-indicator_c01366.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01366 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_c01366 { 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_c01366" -> "#page-container .classname_c01366")
 */
.pf_c01366 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01366 { /* 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_c01366.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01366 { /* 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_c01366 { /* 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_c01366 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01366 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01366 {overflow:visible;}
  }
}
.c_c01366 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01366 { /* 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_c01366:after { /* webkit #35443 */
  content: '';
}
.t_c01366:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01366 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 */
}
.__c01366 { /* 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_c01366 { /* info for Javascript */
  display:none;
}
.l_c01366 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01366 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01366 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01366: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_c01366 {
    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_c01366.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01366.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_c01366 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01366{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01366;src:url('chunks/assets/font_dbd529e162d5851c7bfb6d27.woff2')format("woff");}.ff1_c01366{font-family:ff1_c01366;line-height:1.000000;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;}
.m34_c01366{transform:matrix(0.010943,0.000208,-0.004749,0.249955,0,0);-ms-transform:matrix(0.010943,0.000208,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.010943,0.000208,-0.004749,0.249955,0,0);}
.m2b_c01366{transform:matrix(0.170987,0.003591,-0.005249,0.249945,0,0);-ms-transform:matrix(0.170987,0.003591,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.170987,0.003591,-0.005249,0.249945,0,0);}
.m29_c01366{transform:matrix(0.193692,0.004068,-0.005249,0.249945,0,0);-ms-transform:matrix(0.193692,0.004068,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.193692,0.004068,-0.005249,0.249945,0,0);}
.m10_c01366{transform:matrix(0.199566,0.004191,-0.005249,0.249945,0,0);-ms-transform:matrix(0.199566,0.004191,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.199566,0.004191,-0.005249,0.249945,0,0);}
.mc_c01366{transform:matrix(0.205590,0.004317,-0.005249,0.249945,0,0);-ms-transform:matrix(0.205590,0.004317,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.205590,0.004317,-0.005249,0.249945,0,0);}
.me_c01366{transform:matrix(0.205815,0.004322,-0.005249,0.249945,0,0);-ms-transform:matrix(0.205815,0.004322,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.205815,0.004322,-0.005249,0.249945,0,0);}
.m1e_c01366{transform:matrix(0.210649,0.004424,-0.005249,0.249945,0,0);-ms-transform:matrix(0.210649,0.004424,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.210649,0.004424,-0.005249,0.249945,0,0);}
.ma_c01366{transform:matrix(0.211533,0.004442,-0.005249,0.249945,0,0);-ms-transform:matrix(0.211533,0.004442,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.211533,0.004442,-0.005249,0.249945,0,0);}
.mf_c01366{transform:matrix(0.212413,0.004461,-0.005249,0.249945,0,0);-ms-transform:matrix(0.212413,0.004461,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.212413,0.004461,-0.005249,0.249945,0,0);}
.m16_c01366{transform:matrix(0.216677,0.004550,-0.005249,0.249945,0,0);-ms-transform:matrix(0.216677,0.004550,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.216677,0.004550,-0.005249,0.249945,0,0);}
.m3a_c01366{transform:matrix(0.216956,0.004122,-0.004749,0.249955,0,0);-ms-transform:matrix(0.216956,0.004122,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.216956,0.004122,-0.004749,0.249955,0,0);}
.m7_c01366{transform:matrix(0.217317,0.004564,-0.005249,0.249945,0,0);-ms-transform:matrix(0.217317,0.004564,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.217317,0.004564,-0.005249,0.249945,0,0);}
.m3e_c01366{transform:matrix(0.221950,0.004217,-0.004749,0.249955,0,0);-ms-transform:matrix(0.221950,0.004217,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.221950,0.004217,-0.004749,0.249955,0,0);}
.m2f_c01366{transform:matrix(0.223711,0.004698,-0.005249,0.249945,0,0);-ms-transform:matrix(0.223711,0.004698,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.223711,0.004698,-0.005249,0.249945,0,0);}
.m13_c01366{transform:matrix(0.224021,0.004704,-0.005249,0.249945,0,0);-ms-transform:matrix(0.224021,0.004704,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.224021,0.004704,-0.005249,0.249945,0,0);}
.m2d_c01366{transform:matrix(0.225265,0.004731,-0.005249,0.249945,0,0);-ms-transform:matrix(0.225265,0.004731,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.225265,0.004731,-0.005249,0.249945,0,0);}
.mb_c01366{transform:matrix(0.226030,0.004747,-0.005249,0.249945,0,0);-ms-transform:matrix(0.226030,0.004747,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.226030,0.004747,-0.005249,0.249945,0,0);}
.m3b_c01366{transform:matrix(0.228589,0.004343,-0.004749,0.249955,0,0);-ms-transform:matrix(0.228589,0.004343,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.228589,0.004343,-0.004749,0.249955,0,0);}
.m1d_c01366{transform:matrix(0.229099,0.004811,-0.005249,0.249945,0,0);-ms-transform:matrix(0.229099,0.004811,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.229099,0.004811,-0.005249,0.249945,0,0);}
.m37_c01366{transform:matrix(0.231658,0.004402,-0.004749,0.249955,0,0);-ms-transform:matrix(0.231658,0.004402,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.231658,0.004402,-0.004749,0.249955,0,0);}
.m22_c01366{transform:matrix(0.232504,0.004883,-0.005249,0.249945,0,0);-ms-transform:matrix(0.232504,0.004883,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.232504,0.004883,-0.005249,0.249945,0,0);}
.m18_c01366{transform:matrix(0.234728,0.004929,-0.005249,0.249945,0,0);-ms-transform:matrix(0.234728,0.004929,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.234728,0.004929,-0.005249,0.249945,0,0);}
.m26_c01366{transform:matrix(0.234803,0.004931,-0.005249,0.249945,0,0);-ms-transform:matrix(0.234803,0.004931,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.234803,0.004931,-0.005249,0.249945,0,0);}
.m11_c01366{transform:matrix(0.235038,0.004936,-0.005249,0.249945,0,0);-ms-transform:matrix(0.235038,0.004936,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.235038,0.004936,-0.005249,0.249945,0,0);}
.m35_c01366{transform:matrix(0.235443,0.004473,-0.004749,0.249955,0,0);-ms-transform:matrix(0.235443,0.004473,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.235443,0.004473,-0.004749,0.249955,0,0);}
.m2c_c01366{transform:matrix(0.235738,0.004950,-0.005249,0.249945,0,0);-ms-transform:matrix(0.235738,0.004950,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.235738,0.004950,-0.005249,0.249945,0,0);}
.m8_c01366{transform:matrix(0.236063,0.004957,-0.005249,0.249945,0,0);-ms-transform:matrix(0.236063,0.004957,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.236063,0.004957,-0.005249,0.249945,0,0);}
.m15_c01366{transform:matrix(0.237988,0.004998,-0.005249,0.249945,0,0);-ms-transform:matrix(0.237988,0.004998,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.237988,0.004998,-0.005249,0.249945,0,0);}
.m14_c01366{transform:matrix(0.239837,0.005037,-0.005249,0.249945,0,0);-ms-transform:matrix(0.239837,0.005037,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.239837,0.005037,-0.005249,0.249945,0,0);}
.m3_c01366{transform:matrix(0.239847,0.005516,-0.005748,0.249934,0,0);-ms-transform:matrix(0.239847,0.005516,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.239847,0.005516,-0.005748,0.249934,0,0);}
.md_c01366{transform:matrix(0.240057,0.005041,-0.005249,0.249945,0,0);-ms-transform:matrix(0.240057,0.005041,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.240057,0.005041,-0.005249,0.249945,0,0);}
.m2e_c01366{transform:matrix(0.240657,0.005054,-0.005249,0.249945,0,0);-ms-transform:matrix(0.240657,0.005054,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.240657,0.005054,-0.005249,0.249945,0,0);}
.m31_c01366{transform:matrix(0.240767,0.005056,-0.005249,0.249945,0,0);-ms-transform:matrix(0.240767,0.005056,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.240767,0.005056,-0.005249,0.249945,0,0);}
.m9_c01366{transform:matrix(0.241107,0.005063,-0.005249,0.249945,0,0);-ms-transform:matrix(0.241107,0.005063,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.241107,0.005063,-0.005249,0.249945,0,0);}
.m1a_c01366{transform:matrix(0.242856,0.005100,-0.005249,0.249945,0,0);-ms-transform:matrix(0.242856,0.005100,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.242856,0.005100,-0.005249,0.249945,0,0);}
.m3c_c01366{transform:matrix(0.245711,0.004669,-0.004749,0.249955,0,0);-ms-transform:matrix(0.245711,0.004669,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.245711,0.004669,-0.004749,0.249955,0,0);}
.m33_c01366{transform:matrix(0.247510,0.005198,-0.005249,0.249945,0,0);-ms-transform:matrix(0.247510,0.005198,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.247510,0.005198,-0.005249,0.249945,0,0);}
.m1c_c01366{transform:matrix(0.248285,0.005214,-0.005249,0.249945,0,0);-ms-transform:matrix(0.248285,0.005214,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.248285,0.005214,-0.005249,0.249945,0,0);}
.m12_c01366{transform:matrix(0.248980,0.005229,-0.005249,0.249945,0,0);-ms-transform:matrix(0.248980,0.005229,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.248980,0.005229,-0.005249,0.249945,0,0);}
.m20_c01366{transform:matrix(0.249480,0.005239,-0.005249,0.249945,0,0);-ms-transform:matrix(0.249480,0.005239,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.249480,0.005239,-0.005249,0.249945,0,0);}
.m17_c01366{transform:matrix(0.252244,0.005297,-0.005249,0.249945,0,0);-ms-transform:matrix(0.252244,0.005297,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.252244,0.005297,-0.005249,0.249945,0,0);}
.m1b_c01366{transform:matrix(0.252659,0.005306,-0.005249,0.249945,0,0);-ms-transform:matrix(0.252659,0.005306,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.252659,0.005306,-0.005249,0.249945,0,0);}
.m30_c01366{transform:matrix(0.254224,0.005339,-0.005249,0.249945,0,0);-ms-transform:matrix(0.254224,0.005339,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.254224,0.005339,-0.005249,0.249945,0,0);}
.m19_c01366{transform:matrix(0.254644,0.005348,-0.005249,0.249945,0,0);-ms-transform:matrix(0.254644,0.005348,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.254644,0.005348,-0.005249,0.249945,0,0);}
.m3d_c01366{transform:matrix(0.256589,0.004875,-0.004749,0.249955,0,0);-ms-transform:matrix(0.256589,0.004875,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.256589,0.004875,-0.004749,0.249955,0,0);}
.m36_c01366{transform:matrix(0.258268,0.004907,-0.004749,0.249955,0,0);-ms-transform:matrix(0.258268,0.004907,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.258268,0.004907,-0.004749,0.249955,0,0);}
.m27_c01366{transform:matrix(0.261342,0.005488,-0.005249,0.249945,0,0);-ms-transform:matrix(0.261342,0.005488,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.261342,0.005488,-0.005249,0.249945,0,0);}
.m23_c01366{transform:matrix(0.261662,0.005495,-0.005249,0.249945,0,0);-ms-transform:matrix(0.261662,0.005495,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.261662,0.005495,-0.005249,0.249945,0,0);}
.m1f_c01366{transform:matrix(0.261762,0.005497,-0.005249,0.249945,0,0);-ms-transform:matrix(0.261762,0.005497,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.261762,0.005497,-0.005249,0.249945,0,0);}
.m25_c01366{transform:matrix(0.262992,0.005523,-0.005249,0.249945,0,0);-ms-transform:matrix(0.262992,0.005523,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.262992,0.005523,-0.005249,0.249945,0,0);}
.m5_c01366{transform:matrix(0.264380,0.006081,-0.005748,0.249934,0,0);-ms-transform:matrix(0.264380,0.006081,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.264380,0.006081,-0.005748,0.249934,0,0);}
.m39_c01366{transform:matrix(0.265332,0.005041,-0.004749,0.249955,0,0);-ms-transform:matrix(0.265332,0.005041,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.265332,0.005041,-0.004749,0.249955,0,0);}
.m2_c01366{transform:matrix(0.265605,0.006109,-0.005748,0.249934,0,0);-ms-transform:matrix(0.265605,0.006109,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.265605,0.006109,-0.005748,0.249934,0,0);}
.m21_c01366{transform:matrix(0.265971,0.005585,-0.005249,0.249945,0,0);-ms-transform:matrix(0.265971,0.005585,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.265971,0.005585,-0.005249,0.249945,0,0);}
.m32_c01366{transform:matrix(0.269756,0.005665,-0.005249,0.249945,0,0);-ms-transform:matrix(0.269756,0.005665,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.269756,0.005665,-0.005249,0.249945,0,0);}
.m4_c01366{transform:matrix(0.270738,0.006227,-0.005748,0.249934,0,0);-ms-transform:matrix(0.270738,0.006227,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.270738,0.006227,-0.005748,0.249934,0,0);}
.m2a_c01366{transform:matrix(0.277764,0.005833,-0.005249,0.249945,0,0);-ms-transform:matrix(0.277764,0.005833,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.277764,0.005833,-0.005249,0.249945,0,0);}
.m0_c01366{transform:matrix(0.279086,0.006419,-0.005748,0.249934,0,0);-ms-transform:matrix(0.279086,0.006419,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.279086,0.006419,-0.005748,0.249934,0,0);}
.m28_c01366{transform:matrix(0.279608,0.005872,-0.005249,0.249945,0,0);-ms-transform:matrix(0.279608,0.005872,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.279608,0.005872,-0.005249,0.249945,0,0);}
.m1_c01366{transform:matrix(0.322890,0.007426,-0.005748,0.249934,0,0);-ms-transform:matrix(0.322890,0.007426,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.322890,0.007426,-0.005748,0.249934,0,0);}
.m24_c01366{transform:matrix(0.330652,0.006944,-0.005249,0.249945,0,0);-ms-transform:matrix(0.330652,0.006944,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.330652,0.006944,-0.005249,0.249945,0,0);}
.m38_c01366{transform:matrix(0.332760,0.006322,-0.004749,0.249955,0,0);-ms-transform:matrix(0.332760,0.006322,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.332760,0.006322,-0.004749,0.249955,0,0);}
.m6_c01366{transform:matrix(5.753214,0.097805,-0.004249,0.249964,0,0);-ms-transform:matrix(5.753214,0.097805,-0.004249,0.249964,0,0);-webkit-transform:matrix(5.753214,0.097805,-0.004249,0.249964,0,0);}
.v0_c01366{vertical-align:0.000000px;}
.ls0_c01366{letter-spacing:0.000000px;}
.sc__c01366{text-shadow:none;}
.sc0_c01366{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__c01366{-webkit-text-stroke:0px transparent;}
.sc0_c01366{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01366{word-spacing:0.000000px;}
.fc0_c01366{color:transparent;}
.fs1_c01366{font-size:36.005202px;}
.fs4_c01366{font-size:72.015874px;}
.fs0_c01366{font-size:72.019041px;}
.fs5_c01366{font-size:78.014078px;}
.fs3_c01366{font-size:78.017197px;}
.fs2_c01366{font-size:84.018520px;}
.y0_c01366{bottom:0.000000px;}
.y40_c01366{bottom:880.979314px;}
.y3f_c01366{bottom:882.002094px;}
.y3e_c01366{bottom:883.911850px;}
.y3d_c01366{bottom:885.533415px;}
.y3c_c01366{bottom:886.404688px;}
.y3b_c01366{bottom:887.031603px;}
.y3a_c01366{bottom:888.514030px;}
.y39_c01366{bottom:889.129516px;}
.y38_c01366{bottom:889.745743px;}
.y37_c01366{bottom:892.208770px;}
.y36_c01366{bottom:893.065509px;}
.y35_c01366{bottom:894.249000px;}
.y34_c01366{bottom:923.180635px;}
.y33_c01366{bottom:924.694818px;}
.y32_c01366{bottom:925.610286px;}
.y31_c01366{bottom:927.106584px;}
.y30_c01366{bottom:927.826549px;}
.y2f_c01366{bottom:928.405415px;}
.y2e_c01366{bottom:928.956626px;}
.y2d_c01366{bottom:929.317733px;}
.y2c_c01366{bottom:952.050132px;}
.y2b_c01366{bottom:953.671802px;}
.y2a_c01366{bottom:954.049959px;}
.y29_c01366{bottom:956.219106px;}
.y28_c01366{bottom:956.841744px;}
.y27_c01366{bottom:957.433350px;}
.y26_c01366{bottom:958.594665px;}
.y25_c01366{bottom:959.001587px;}
.y24_c01366{bottom:960.374397px;}
.y23_c01366{bottom:960.985998px;}
.y22_c01366{bottom:962.357883px;}
.y21_c01366{bottom:963.315495px;}
.y20_c01366{bottom:964.697126px;}
.y1f_c01366{bottom:986.399444px;}
.y1e_c01366{bottom:987.061854px;}
.y1d_c01366{bottom:988.523335px;}
.y1c_c01366{bottom:988.924698px;}
.y1b_c01366{bottom:990.181061px;}
.y1a_c01366{bottom:992.053638px;}
.y19_c01366{bottom:992.890703px;}
.y18_c01366{bottom:994.763910px;}
.y17_c01366{bottom:995.378708px;}
.y16_c01366{bottom:995.798774px;}
.y15_c01366{bottom:996.832491px;}
.y14_c01366{bottom:997.463460px;}
.y13_c01366{bottom:998.946121px;}
.y12_c01366{bottom:999.536136px;}
.y11_c01366{bottom:1021.889324px;}
.y10_c01366{bottom:1023.034663px;}
.yf_c01366{bottom:1024.185894px;}
.ye_c01366{bottom:1026.064743px;}
.yd_c01366{bottom:1026.750655px;}
.yc_c01366{bottom:1027.902233px;}
.yb_c01366{bottom:1028.605281px;}
.ya_c01366{bottom:1031.333149px;}
.y9_c01366{bottom:1033.204911px;}
.y8_c01366{bottom:1034.106000px;}
.y7_c01366{bottom:1107.001500px;}
.y6_c01366{bottom:1116.109308px;}
.y5_c01366{bottom:1118.363503px;}
.y4_c01366{bottom:1119.121054px;}
.y3_c01366{bottom:1120.382340px;}
.y2_c01366{bottom:1121.158590px;}
.y1_c01366{bottom:1122.669000px;}
.h3_c01366{height:36.005202px;}
.h6_c01366{height:72.015874px;}
.h2_c01366{height:72.019041px;}
.h7_c01366{height:78.014078px;}
.h5_c01366{height:78.017197px;}
.h4_c01366{height:84.018520px;}
.h1_c01366{height:1250.250000px;}
.h0_c01366{height:1250.370000px;}
.w0_c01366{width:878.850000px;}
.w1_c01366{width:879.000000px;}
.x0_c01366{left:0.000000px;}
.x11_c01366{left:126.096045px;}
.x28_c01366{left:146.624077px;}
.x12_c01366{left:157.121837px;}
.x2e_c01366{left:170.724000px;}
.x29_c01366{left:179.017786px;}
.x1c_c01366{left:203.090687px;}
.x2a_c01366{left:213.085653px;}
.x2f_c01366{left:233.013000px;}
.x7_c01366{left:235.686000px;}
.x1_c01366{left:246.948000px;}
.x1d_c01366{left:256.266025px;}
.x13_c01366{left:268.346999px;}
.x8_c01366{left:278.595000px;}
.x2_c01366{left:312.618000px;}
.x14_c01366{left:322.716767px;}
.x1e_c01366{left:332.455813px;}
.x2b_c01366{left:343.490115px;}
.x15_c01366{left:344.863712px;}
.x3_c01366{left:346.368000px;}
.x1f_c01366{left:366.438956px;}
.x9_c01366{left:367.726500px;}
.x16_c01366{left:377.212566px;}
.x2c_c01366{left:397.302619px;}
.x4_c01366{left:401.206500px;}
.x30_c01366{left:407.737500px;}
.x5_c01366{left:434.143500px;}
.x31_c01366{left:440.170500px;}
.x20_c01366{left:442.744275px;}
.x21_c01366{left:465.337192px;}
.x32_c01366{left:472.564500px;}
.x17_c01366{left:475.774193px;}
.x2d_c01366{left:486.342585px;}
.xa_c01366{left:497.625000px;}
.x18_c01366{left:519.850551px;}
.x22_c01366{left:529.856256px;}
.xb_c01366{left:531.103500px;}
.x6_c01366{left:532.152000px;}
.x33_c01366{left:550.587000px;}
.x23_c01366{left:562.744335px;}
.x34_c01366{left:583.582500px;}
.xc_c01366{left:585.940500px;}
.x24_c01366{left:597.324508px;}
.xd_c01366{left:618.603000px;}
.x35_c01366{left:629.439000px;}
.x19_c01366{left:684.497450px;}
.x1a_c01366{left:705.610831px;}
.xe_c01366{left:708.072000px;}
.x36_c01366{left:714.784500px;}
.x25_c01366{left:717.839100px;}
.x26_c01366{left:738.847923px;}
.xf_c01366{left:762.892500px;}
.x1b_c01366{left:782.565576px;}
.x37_c01366{left:815.298000px;}
.x10_c01366{left:817.432500px;}
.x27_c01366{left:828.933093px;}
.x38_c01366{left:869.128500px;}
@media print{
.v0_c01366{vertical-align:0.000000pt;}
.ls0_c01366{letter-spacing:0.000000pt;}
.ws0_c01366{word-spacing:0.000000pt;}
.fs1_c01366{font-size:32.004624pt;}
.fs4_c01366{font-size:64.014110pt;}
.fs0_c01366{font-size:64.016926pt;}
.fs5_c01366{font-size:69.345847pt;}
.fs3_c01366{font-size:69.348620pt;}
.fs2_c01366{font-size:74.683129pt;}
.y0_c01366{bottom:0.000000pt;}
.y40_c01366{bottom:783.092724pt;}
.y3f_c01366{bottom:784.001861pt;}
.y3e_c01366{bottom:785.699423pt;}
.y3d_c01366{bottom:787.140813pt;}
.y3c_c01366{bottom:787.915279pt;}
.y3b_c01366{bottom:788.472536pt;}
.y3a_c01366{bottom:789.790249pt;}
.y39_c01366{bottom:790.337348pt;}
.y38_c01366{bottom:790.885105pt;}
.y37_c01366{bottom:793.074463pt;}
.y36_c01366{bottom:793.836008pt;}
.y35_c01366{bottom:794.888000pt;}
.y34_c01366{bottom:820.605009pt;}
.y33_c01366{bottom:821.950949pt;}
.y32_c01366{bottom:822.764699pt;}
.y31_c01366{bottom:824.094741pt;}
.y30_c01366{bottom:824.734711pt;}
.y2f_c01366{bottom:825.249257pt;}
.y2e_c01366{bottom:825.739223pt;}
.y2d_c01366{bottom:826.060207pt;}
.y2c_c01366{bottom:846.266784pt;}
.y2b_c01366{bottom:847.708268pt;}
.y2a_c01366{bottom:848.044408pt;}
.y29_c01366{bottom:849.972539pt;}
.y28_c01366{bottom:850.525995pt;}
.y27_c01366{bottom:851.051867pt;}
.y26_c01366{bottom:852.084147pt;}
.y25_c01366{bottom:852.445855pt;}
.y24_c01366{bottom:853.666131pt;}
.y23_c01366{bottom:854.209776pt;}
.y22_c01366{bottom:855.429229pt;}
.y21_c01366{bottom:856.280440pt;}
.y20_c01366{bottom:857.508556pt;}
.y1f_c01366{bottom:876.799505pt;}
.y1e_c01366{bottom:877.388315pt;}
.y1d_c01366{bottom:878.687409pt;}
.y1c_c01366{bottom:879.044176pt;}
.y1b_c01366{bottom:880.160943pt;}
.y1a_c01366{bottom:881.825456pt;}
.y19_c01366{bottom:882.569513pt;}
.y18_c01366{bottom:884.234587pt;}
.y17_c01366{bottom:884.781073pt;}
.y16_c01366{bottom:885.154465pt;}
.y15_c01366{bottom:886.073325pt;}
.y14_c01366{bottom:886.634187pt;}
.y13_c01366{bottom:887.952108pt;}
.y12_c01366{bottom:888.476565pt;}
.y11_c01366{bottom:908.346065pt;}
.y10_c01366{bottom:909.364145pt;}
.yf_c01366{bottom:910.387461pt;}
.ye_c01366{bottom:912.057549pt;}
.yd_c01366{bottom:912.667249pt;}
.yc_c01366{bottom:913.690873pt;}
.yb_c01366{bottom:914.315805pt;}
.ya_c01366{bottom:916.740577pt;}
.y9_c01366{bottom:918.404365pt;}
.y8_c01366{bottom:919.205333pt;}
.y7_c01366{bottom:984.001333pt;}
.y6_c01366{bottom:992.097163pt;}
.y5_c01366{bottom:994.100892pt;}
.y4_c01366{bottom:994.774271pt;}
.y3_c01366{bottom:995.895413pt;}
.y2_c01366{bottom:996.585413pt;}
.y1_c01366{bottom:997.928000pt;}
.h3_c01366{height:32.004624pt;}
.h6_c01366{height:64.014110pt;}
.h2_c01366{height:64.016926pt;}
.h7_c01366{height:69.345847pt;}
.h5_c01366{height:69.348620pt;}
.h4_c01366{height:74.683129pt;}
.h1_c01366{height:1111.333333pt;}
.h0_c01366{height:1111.440000pt;}
.w0_c01366{width:781.200000pt;}
.w1_c01366{width:781.333333pt;}
.x0_c01366{left:0.000000pt;}
.x11_c01366{left:112.085373pt;}
.x28_c01366{left:130.332513pt;}
.x12_c01366{left:139.663855pt;}
.x2e_c01366{left:151.754667pt;}
.x29_c01366{left:159.126921pt;}
.x1c_c01366{left:180.525055pt;}
.x2a_c01366{left:189.409469pt;}
.x2f_c01366{left:207.122667pt;}
.x7_c01366{left:209.498667pt;}
.x1_c01366{left:219.509333pt;}
.x1d_c01366{left:227.792023pt;}
.x13_c01366{left:238.530665pt;}
.x8_c01366{left:247.640000pt;}
.x2_c01366{left:277.882667pt;}
.x14_c01366{left:286.859348pt;}
.x1e_c01366{left:295.516279pt;}
.x2b_c01366{left:305.324547pt;}
.x15_c01366{left:306.545521pt;}
.x3_c01366{left:307.882667pt;}
.x1f_c01366{left:325.723516pt;}
.x9_c01366{left:326.868000pt;}
.x16_c01366{left:335.300059pt;}
.x2c_c01366{left:353.157884pt;}
.x4_c01366{left:356.628000pt;}
.x30_c01366{left:362.433333pt;}
.x5_c01366{left:385.905333pt;}
.x31_c01366{left:391.262667pt;}
.x20_c01366{left:393.550467pt;}
.x21_c01366{left:413.633060pt;}
.x32_c01366{left:420.057333pt;}
.x17_c01366{left:422.910393pt;}
.x2d_c01366{left:432.304520pt;}
.xa_c01366{left:442.333333pt;}
.x18_c01366{left:462.089379pt;}
.x22_c01366{left:470.983339pt;}
.xb_c01366{left:472.092000pt;}
.x6_c01366{left:473.024000pt;}
.x33_c01366{left:489.410667pt;}
.x23_c01366{left:500.217187pt;}
.x34_c01366{left:518.740000pt;}
.xc_c01366{left:520.836000pt;}
.x24_c01366{left:530.955119pt;}
.xd_c01366{left:549.869333pt;}
.x35_c01366{left:559.501333pt;}
.x19_c01366{left:608.442177pt;}
.x1a_c01366{left:627.209628pt;}
.xe_c01366{left:629.397333pt;}
.x36_c01366{left:635.364000pt;}
.x25_c01366{left:638.079200pt;}
.x26_c01366{left:656.753709pt;}
.xf_c01366{left:678.126667pt;}
.x1b_c01366{left:695.613845pt;}
.x37_c01366{left:724.709333pt;}
.x10_c01366{left:726.606667pt;}
.x27_c01366{left:736.829416pt;}
.x38_c01366{left:772.558667pt;}
}





/* 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_c01367 {
    display:none;
  }
  .loading-indicator_c01367.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01367 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_c01367 { 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_c01367" -> "#page-container .classname_c01367")
 */
.pf_c01367 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01367 { /* 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_c01367.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01367 { /* 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_c01367 { /* 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_c01367 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01367 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01367 {overflow:visible;}
  }
}
.c_c01367 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01367 { /* 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_c01367:after { /* webkit #35443 */
  content: '';
}
.t_c01367:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01367 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 */
}
.__c01367 { /* 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_c01367 { /* info for Javascript */
  display:none;
}
.l_c01367 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01367 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01367 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01367: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_c01367 {
    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_c01367.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01367.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_c01367 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01367{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01367;src:url('chunks/assets/font_97998a297af8da24a717a89b.woff2')format("woff");}.ff1_c01367{font-family:ff1_c01367;line-height:1.000000;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;}
.m3_c01367{transform:matrix(0.042425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.042425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.042425,0.000000,0.000000,0.250000,0,0);}
.mc_c01367{transform:matrix(0.054085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054085,0.000000,0.000000,0.250000,0,0);}
.m5_c01367{transform:matrix(0.087465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087465,0.000000,0.000000,0.250000,0,0);}
.m1_c01367{transform:matrix(0.100625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100625,0.000000,0.000000,0.250000,0,0);}
.m8_c01367{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m6_c01367{transform:matrix(0.159450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159450,0.000000,0.000000,0.250000,0,0);}
.m4_c01367{transform:matrix(0.162250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162250,0.000000,0.000000,0.250000,0,0);}
.m9_c01367{transform:matrix(0.192095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192095,0.000000,0.000000,0.250000,0,0);}
.md_c01367{transform:matrix(0.195575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195575,0.000000,0.000000,0.250000,0,0);}
.mb_c01367{transform:matrix(0.244180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244180,0.000000,0.000000,0.250000,0,0);}
.ma_c01367{transform:matrix(0.264195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264195,0.000000,0.000000,0.250000,0,0);}
.m7_c01367{transform:matrix(0.267065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267065,0.000000,0.000000,0.250000,0,0);}
.m2_c01367{transform:matrix(0.297320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297320,0.000000,0.000000,0.250000,0,0);}
.m10_c01367{transform:matrix(0.538540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538540,0.000000,0.000000,0.250000,0,0);}
.m0_c01367{transform:matrix(0.645175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.645175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.645175,0.000000,0.000000,0.250000,0,0);}
.mf_c01367{transform:matrix(0.791595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.791595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.791595,0.000000,0.000000,0.250000,0,0);}
.me_c01367{transform:matrix(0.842910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.842910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.842910,0.000000,0.000000,0.250000,0,0);}
.m11_c01367{transform:matrix(0.902000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.902000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.902000,0.000000,0.000000,0.250000,0,0);}
.v0_c01367{vertical-align:0.000000px;}
.ls0_c01367{letter-spacing:0.000000px;}
.sc__c01367{text-shadow:none;}
.sc0_c01367{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__c01367{-webkit-text-stroke:0px transparent;}
.sc0_c01367{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01367{word-spacing:0.000000px;}
.fc0_c01367{color:transparent;}
.fs0_c01367{font-size:18.000000px;}
.y0_c01367{bottom:0.000000px;}
.ya_c01367{bottom:45.630000px;}
.y9_c01367{bottom:161.190000px;}
.y7_c01367{bottom:206.979000px;}
.y8_c01367{bottom:232.470000px;}
.y6_c01367{bottom:260.815500px;}
.y5_c01367{bottom:268.113000px;}
.y4_c01367{bottom:304.828500px;}
.yb_c01367{bottom:324.270000px;}
.y3_c01367{bottom:377.997000px;}
.y2_c01367{bottom:386.350500px;}
.y1_c01367{bottom:390.544500px;}
.h2_c01367{height:18.000000px;}
.h1_c01367{height:1250.250000px;}
.h0_c01367{height:1250.370000px;}
.w0_c01367{width:878.850000px;}
.w1_c01367{width:879.000000px;}
.x0_c01367{left:0.000000px;}
.xd_c01367{left:23.490000px;}
.xb_c01367{left:30.240000px;}
.xc_c01367{left:48.600000px;}
.x3_c01367{left:61.830000px;}
.x7_c01367{left:75.870000px;}
.x1_c01367{left:81.540000px;}
.x4_c01367{left:89.640000px;}
.x2_c01367{left:129.060000px;}
.x9_c01367{left:196.020000px;}
.x5_c01367{left:206.010000px;}
.x6_c01367{left:248.670000px;}
.x8_c01367{left:255.150000px;}
.xa_c01367{left:261.630000px;}
.xf_c01367{left:864.540000px;}
.xe_c01367{left:865.620000px;}
@media print{
.v0_c01367{vertical-align:0.000000pt;}
.ls0_c01367{letter-spacing:0.000000pt;}
.ws0_c01367{word-spacing:0.000000pt;}
.fs0_c01367{font-size:16.000000pt;}
.y0_c01367{bottom:0.000000pt;}
.ya_c01367{bottom:40.560000pt;}
.y9_c01367{bottom:143.280000pt;}
.y7_c01367{bottom:183.981333pt;}
.y8_c01367{bottom:206.640000pt;}
.y6_c01367{bottom:231.836000pt;}
.y5_c01367{bottom:238.322667pt;}
.y4_c01367{bottom:270.958667pt;}
.yb_c01367{bottom:288.240000pt;}
.y3_c01367{bottom:335.997333pt;}
.y2_c01367{bottom:343.422667pt;}
.y1_c01367{bottom:347.150667pt;}
.h2_c01367{height:16.000000pt;}
.h1_c01367{height:1111.333333pt;}
.h0_c01367{height:1111.440000pt;}
.w0_c01367{width:781.200000pt;}
.w1_c01367{width:781.333333pt;}
.x0_c01367{left:0.000000pt;}
.xd_c01367{left:20.880000pt;}
.xb_c01367{left:26.880000pt;}
.xc_c01367{left:43.200000pt;}
.x3_c01367{left:54.960000pt;}
.x7_c01367{left:67.440000pt;}
.x1_c01367{left:72.480000pt;}
.x4_c01367{left:79.680000pt;}
.x2_c01367{left:114.720000pt;}
.x9_c01367{left:174.240000pt;}
.x5_c01367{left:183.120000pt;}
.x6_c01367{left:221.040000pt;}
.x8_c01367{left:226.800000pt;}
.xa_c01367{left:232.560000pt;}
.xf_c01367{left:768.480000pt;}
.xe_c01367{left:769.440000pt;}
}





/* 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_c01368 {
    display:none;
  }
  .loading-indicator_c01368.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01368 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_c01368 { 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_c01368" -> "#page-container .classname_c01368")
 */
.pf_c01368 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01368 { /* 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_c01368.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01368 { /* 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_c01368 { /* 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_c01368 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01368 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01368 {overflow:visible;}
  }
}
.c_c01368 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01368 { /* 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_c01368:after { /* webkit #35443 */
  content: '';
}
.t_c01368:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01368 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 */
}
.__c01368 { /* 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_c01368 { /* info for Javascript */
  display:none;
}
.l_c01368 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01368 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01368 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01368: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_c01368 {
    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_c01368.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01368.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_c01368 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01368{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01368;src:url('chunks/assets/font_7c6b9abe6ee2a268480c528b.woff2')format("woff");}.ff1_c01368{font-family:ff1_c01368;line-height:1.000000;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;}
.m5_c01368{transform:matrix(0.013516,0.000324,-0.005998,0.249928,0,0);-ms-transform:matrix(0.013516,0.000324,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.013516,0.000324,-0.005998,0.249928,0,0);}
.md5_c01368{transform:matrix(0.016068,0.000257,-0.003999,0.249968,0,0);-ms-transform:matrix(0.016068,0.000257,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.016068,0.000257,-0.003999,0.249968,0,0);}
.mf9_c01368{transform:matrix(0.035361,0.000990,-0.006997,0.249902,0,0);-ms-transform:matrix(0.035361,0.000990,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.035361,0.000990,-0.006997,0.249902,0,0);}
.m142_c01368{transform:matrix(0.107229,0.001180,-0.002750,0.249985,0,0);-ms-transform:matrix(0.107229,0.001180,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.107229,0.001180,-0.002750,0.249985,0,0);}
.m138_c01368{transform:matrix(0.109043,0.001199,-0.002750,0.249985,0,0);-ms-transform:matrix(0.109043,0.001199,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.109043,0.001199,-0.002750,0.249985,0,0);}
.m113_c01368{transform:matrix(0.112115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112115,0.000000,0.000000,0.250000,0,0);}
.m4d_c01368{transform:matrix(0.130814,0.002616,-0.004999,0.249950,0,0);-ms-transform:matrix(0.130814,0.002616,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.130814,0.002616,-0.004999,0.249950,0,0);}
.m8e_c01368{transform:matrix(0.131589,0.002632,-0.004999,0.249950,0,0);-ms-transform:matrix(0.131589,0.002632,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.131589,0.002632,-0.004999,0.249950,0,0);}
.m10_c01368{transform:matrix(0.133553,0.002671,-0.004999,0.249950,0,0);-ms-transform:matrix(0.133553,0.002671,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.133553,0.002671,-0.004999,0.249950,0,0);}
.m14_c01368{transform:matrix(0.135748,0.002715,-0.004999,0.249950,0,0);-ms-transform:matrix(0.135748,0.002715,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.135748,0.002715,-0.004999,0.249950,0,0);}
.m18_c01368{transform:matrix(0.136148,0.002723,-0.004999,0.249950,0,0);-ms-transform:matrix(0.136148,0.002723,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.136148,0.002723,-0.004999,0.249950,0,0);}
.m132_c01368{transform:matrix(0.136567,0.001502,-0.002750,0.249985,0,0);-ms-transform:matrix(0.136567,0.001502,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.136567,0.001502,-0.002750,0.249985,0,0);}
.m12_c01368{transform:matrix(0.137273,0.002745,-0.004999,0.249950,0,0);-ms-transform:matrix(0.137273,0.002745,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.137273,0.002745,-0.004999,0.249950,0,0);}
.mf_c01368{transform:matrix(0.140422,0.002808,-0.004999,0.249950,0,0);-ms-transform:matrix(0.140422,0.002808,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.140422,0.002808,-0.004999,0.249950,0,0);}
.m19_c01368{transform:matrix(0.145556,0.002911,-0.004999,0.249950,0,0);-ms-transform:matrix(0.145556,0.002911,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.145556,0.002911,-0.004999,0.249950,0,0);}
.m11_c01368{transform:matrix(0.147810,0.002956,-0.004999,0.249950,0,0);-ms-transform:matrix(0.147810,0.002956,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.147810,0.002956,-0.004999,0.249950,0,0);}
.m16_c01368{transform:matrix(0.148480,0.002970,-0.004999,0.249950,0,0);-ms-transform:matrix(0.148480,0.002970,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.148480,0.002970,-0.004999,0.249950,0,0);}
.m133_c01368{transform:matrix(0.149416,0.001644,-0.002750,0.249985,0,0);-ms-transform:matrix(0.149416,0.001644,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.149416,0.001644,-0.002750,0.249985,0,0);}
.m17_c01368{transform:matrix(0.150910,0.003018,-0.004999,0.249950,0,0);-ms-transform:matrix(0.150910,0.003018,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.150910,0.003018,-0.004999,0.249950,0,0);}
.m5a_c01368{transform:matrix(0.151005,0.003020,-0.004999,0.249950,0,0);-ms-transform:matrix(0.151005,0.003020,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.151005,0.003020,-0.004999,0.249950,0,0);}
.m8d_c01368{transform:matrix(0.151920,0.003038,-0.004999,0.249950,0,0);-ms-transform:matrix(0.151920,0.003038,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.151920,0.003038,-0.004999,0.249950,0,0);}
.m13_c01368{transform:matrix(0.153679,0.003074,-0.004999,0.249950,0,0);-ms-transform:matrix(0.153679,0.003074,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.153679,0.003074,-0.004999,0.249950,0,0);}
.m137_c01368{transform:matrix(0.153966,0.001694,-0.002750,0.249985,0,0);-ms-transform:matrix(0.153966,0.001694,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.153966,0.001694,-0.002750,0.249985,0,0);}
.m13d_c01368{transform:matrix(0.156761,0.001724,-0.002750,0.249985,0,0);-ms-transform:matrix(0.156761,0.001724,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.156761,0.001724,-0.002750,0.249985,0,0);}
.m134_c01368{transform:matrix(0.157890,0.001737,-0.002750,0.249985,0,0);-ms-transform:matrix(0.157890,0.001737,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.157890,0.001737,-0.002750,0.249985,0,0);}
.m130_c01368{transform:matrix(0.158245,0.001741,-0.002750,0.249985,0,0);-ms-transform:matrix(0.158245,0.001741,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.158245,0.001741,-0.002750,0.249985,0,0);}
.m15_c01368{transform:matrix(0.159158,0.003183,-0.004999,0.249950,0,0);-ms-transform:matrix(0.159158,0.003183,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.159158,0.003183,-0.004999,0.249950,0,0);}
.m93_c01368{transform:matrix(0.159613,0.003192,-0.004999,0.249950,0,0);-ms-transform:matrix(0.159613,0.003192,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.159613,0.003192,-0.004999,0.249950,0,0);}
.m131_c01368{transform:matrix(0.161520,0.001777,-0.002750,0.249985,0,0);-ms-transform:matrix(0.161520,0.001777,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.161520,0.001777,-0.002750,0.249985,0,0);}
.m12d_c01368{transform:matrix(0.162595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162595,0.000000,0.000000,0.250000,0,0);}
.m140_c01368{transform:matrix(0.163085,0.001794,-0.002750,0.249985,0,0);-ms-transform:matrix(0.163085,0.001794,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.163085,0.001794,-0.002750,0.249985,0,0);}
.m91_c01368{transform:matrix(0.163602,0.003272,-0.004999,0.249950,0,0);-ms-transform:matrix(0.163602,0.003272,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.163602,0.003272,-0.004999,0.249950,0,0);}
.m8f_c01368{transform:matrix(0.164622,0.003292,-0.004999,0.249950,0,0);-ms-transform:matrix(0.164622,0.003292,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.164622,0.003292,-0.004999,0.249950,0,0);}
.m12f_c01368{transform:matrix(0.165210,0.001817,-0.002750,0.249985,0,0);-ms-transform:matrix(0.165210,0.001817,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.165210,0.001817,-0.002750,0.249985,0,0);}
.m96_c01368{transform:matrix(0.165312,0.003306,-0.004999,0.249950,0,0);-ms-transform:matrix(0.165312,0.003306,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.165312,0.003306,-0.004999,0.249950,0,0);}
.m136_c01368{transform:matrix(0.166735,0.001834,-0.002750,0.249985,0,0);-ms-transform:matrix(0.166735,0.001834,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.166735,0.001834,-0.002750,0.249985,0,0);}
.m135_c01368{transform:matrix(0.167710,0.001845,-0.002750,0.249985,0,0);-ms-transform:matrix(0.167710,0.001845,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.167710,0.001845,-0.002750,0.249985,0,0);}
.m141_c01368{transform:matrix(0.169645,0.001866,-0.002750,0.249985,0,0);-ms-transform:matrix(0.169645,0.001866,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.169645,0.001866,-0.002750,0.249985,0,0);}
.m52_c01368{transform:matrix(0.170296,0.003406,-0.004999,0.249950,0,0);-ms-transform:matrix(0.170296,0.003406,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.170296,0.003406,-0.004999,0.249950,0,0);}
.m4e_c01368{transform:matrix(0.170601,0.003412,-0.004999,0.249950,0,0);-ms-transform:matrix(0.170601,0.003412,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.170601,0.003412,-0.004999,0.249950,0,0);}
.m54_c01368{transform:matrix(0.170786,0.003416,-0.004999,0.249950,0,0);-ms-transform:matrix(0.170786,0.003416,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.170786,0.003416,-0.004999,0.249950,0,0);}
.m13b_c01368{transform:matrix(0.170880,0.001880,-0.002750,0.249985,0,0);-ms-transform:matrix(0.170880,0.001880,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.170880,0.001880,-0.002750,0.249985,0,0);}
.m59_c01368{transform:matrix(0.171721,0.003434,-0.004999,0.249950,0,0);-ms-transform:matrix(0.171721,0.003434,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.171721,0.003434,-0.004999,0.249950,0,0);}
.m13a_c01368{transform:matrix(0.172485,0.001897,-0.002750,0.249985,0,0);-ms-transform:matrix(0.172485,0.001897,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.172485,0.001897,-0.002750,0.249985,0,0);}
.m13f_c01368{transform:matrix(0.173824,0.001912,-0.002750,0.249985,0,0);-ms-transform:matrix(0.173824,0.001912,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.173824,0.001912,-0.002750,0.249985,0,0);}
.mba_c01368{transform:matrix(0.174505,0.003490,-0.004999,0.249950,0,0);-ms-transform:matrix(0.174505,0.003490,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.174505,0.003490,-0.004999,0.249950,0,0);}
.m57_c01368{transform:matrix(0.175960,0.003519,-0.004999,0.249950,0,0);-ms-transform:matrix(0.175960,0.003519,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.175960,0.003519,-0.004999,0.249950,0,0);}
.m13e_c01368{transform:matrix(0.176224,0.001938,-0.002750,0.249985,0,0);-ms-transform:matrix(0.176224,0.001938,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.176224,0.001938,-0.002750,0.249985,0,0);}
.mbc_c01368{transform:matrix(0.176945,0.003539,-0.004999,0.249950,0,0);-ms-transform:matrix(0.176945,0.003539,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.176945,0.003539,-0.004999,0.249950,0,0);}
.m58_c01368{transform:matrix(0.177989,0.003560,-0.004999,0.249950,0,0);-ms-transform:matrix(0.177989,0.003560,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.177989,0.003560,-0.004999,0.249950,0,0);}
.mc0_c01368{transform:matrix(0.178629,0.003573,-0.004999,0.249950,0,0);-ms-transform:matrix(0.178629,0.003573,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.178629,0.003573,-0.004999,0.249950,0,0);}
.m51_c01368{transform:matrix(0.179669,0.003593,-0.004999,0.249950,0,0);-ms-transform:matrix(0.179669,0.003593,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.179669,0.003593,-0.004999,0.249950,0,0);}
.m56_c01368{transform:matrix(0.180229,0.003605,-0.004999,0.249950,0,0);-ms-transform:matrix(0.180229,0.003605,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.180229,0.003605,-0.004999,0.249950,0,0);}
.mde_c01368{transform:matrix(0.181004,0.005068,-0.006997,0.249902,0,0);-ms-transform:matrix(0.181004,0.005068,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.181004,0.005068,-0.006997,0.249902,0,0);}
.mbf_c01368{transform:matrix(0.181444,0.003629,-0.004999,0.249950,0,0);-ms-transform:matrix(0.181444,0.003629,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.181444,0.003629,-0.004999,0.249950,0,0);}
.m102_c01368{transform:matrix(0.181464,0.003629,-0.004999,0.249950,0,0);-ms-transform:matrix(0.181464,0.003629,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.181464,0.003629,-0.004999,0.249950,0,0);}
.mfc_c01368{transform:matrix(0.181529,0.003631,-0.004999,0.249950,0,0);-ms-transform:matrix(0.181529,0.003631,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.181529,0.003631,-0.004999,0.249950,0,0);}
.m95_c01368{transform:matrix(0.182204,0.003644,-0.004999,0.249950,0,0);-ms-transform:matrix(0.182204,0.003644,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.182204,0.003644,-0.004999,0.249950,0,0);}
.m50_c01368{transform:matrix(0.183163,0.003663,-0.004999,0.249950,0,0);-ms-transform:matrix(0.183163,0.003663,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.183163,0.003663,-0.004999,0.249950,0,0);}
.mfe_c01368{transform:matrix(0.184058,0.003681,-0.004999,0.249950,0,0);-ms-transform:matrix(0.184058,0.003681,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.184058,0.003681,-0.004999,0.249950,0,0);}
.m100_c01368{transform:matrix(0.184608,0.003692,-0.004999,0.249950,0,0);-ms-transform:matrix(0.184608,0.003692,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.184608,0.003692,-0.004999,0.249950,0,0);}
.m5b_c01368{transform:matrix(0.187143,0.003743,-0.004999,0.249950,0,0);-ms-transform:matrix(0.187143,0.003743,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.187143,0.003743,-0.004999,0.249950,0,0);}
.m55_c01368{transform:matrix(0.187542,0.003751,-0.004999,0.249950,0,0);-ms-transform:matrix(0.187542,0.003751,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.187542,0.003751,-0.004999,0.249950,0,0);}
.mbb_c01368{transform:matrix(0.189357,0.003787,-0.004999,0.249950,0,0);-ms-transform:matrix(0.189357,0.003787,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.189357,0.003787,-0.004999,0.249950,0,0);}
.m6b_c01368{transform:matrix(0.189892,0.003798,-0.004999,0.249950,0,0);-ms-transform:matrix(0.189892,0.003798,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.189892,0.003798,-0.004999,0.249950,0,0);}
.m2e_c01368{transform:matrix(0.190477,0.003810,-0.004999,0.249950,0,0);-ms-transform:matrix(0.190477,0.003810,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.190477,0.003810,-0.004999,0.249950,0,0);}
.m4f_c01368{transform:matrix(0.191717,0.003834,-0.004999,0.249950,0,0);-ms-transform:matrix(0.191717,0.003834,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.191717,0.003834,-0.004999,0.249950,0,0);}
.mfb_c01368{transform:matrix(0.191912,0.003838,-0.004999,0.249950,0,0);-ms-transform:matrix(0.191912,0.003838,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.191912,0.003838,-0.004999,0.249950,0,0);}
.m5c_c01368{transform:matrix(0.192671,0.003853,-0.004999,0.249950,0,0);-ms-transform:matrix(0.192671,0.003853,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.192671,0.003853,-0.004999,0.249950,0,0);}
.md8_c01368{transform:matrix(0.193374,0.005414,-0.006997,0.249902,0,0);-ms-transform:matrix(0.193374,0.005414,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.193374,0.005414,-0.006997,0.249902,0,0);}
.m129_c01368{transform:matrix(0.196515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196515,0.000000,0.000000,0.250000,0,0);}
.m53_c01368{transform:matrix(0.196556,0.003931,-0.004999,0.249950,0,0);-ms-transform:matrix(0.196556,0.003931,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.196556,0.003931,-0.004999,0.249950,0,0);}
.mbe_c01368{transform:matrix(0.197186,0.003944,-0.004999,0.249950,0,0);-ms-transform:matrix(0.197186,0.003944,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.197186,0.003944,-0.004999,0.249950,0,0);}
.mc1_c01368{transform:matrix(0.197530,0.003951,-0.004999,0.249950,0,0);-ms-transform:matrix(0.197530,0.003951,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.197530,0.003951,-0.004999,0.249950,0,0);}
.md6_c01368{transform:matrix(0.198102,0.005547,-0.006997,0.249902,0,0);-ms-transform:matrix(0.198102,0.005547,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.198102,0.005547,-0.006997,0.249902,0,0);}
.m30_c01368{transform:matrix(0.198605,0.003972,-0.004999,0.249950,0,0);-ms-transform:matrix(0.198605,0.003972,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.198605,0.003972,-0.004999,0.249950,0,0);}
.m28_c01368{transform:matrix(0.199100,0.003982,-0.004999,0.249950,0,0);-ms-transform:matrix(0.199100,0.003982,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.199100,0.003982,-0.004999,0.249950,0,0);}
.m105_c01368{transform:matrix(0.199145,0.003983,-0.004999,0.249950,0,0);-ms-transform:matrix(0.199145,0.003983,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.199145,0.003983,-0.004999,0.249950,0,0);}
.mbd_c01368{transform:matrix(0.200480,0.004010,-0.004999,0.249950,0,0);-ms-transform:matrix(0.200480,0.004010,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.200480,0.004010,-0.004999,0.249950,0,0);}
.mff_c01368{transform:matrix(0.200900,0.004018,-0.004999,0.249950,0,0);-ms-transform:matrix(0.200900,0.004018,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.200900,0.004018,-0.004999,0.249950,0,0);}
.m94_c01368{transform:matrix(0.201205,0.004024,-0.004999,0.249950,0,0);-ms-transform:matrix(0.201205,0.004024,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.201205,0.004024,-0.004999,0.249950,0,0);}
.m127_c01368{transform:matrix(0.201245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201245,0.000000,0.000000,0.250000,0,0);}
.m66_c01368{transform:matrix(0.201265,0.004025,-0.004999,0.249950,0,0);-ms-transform:matrix(0.201265,0.004025,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.201265,0.004025,-0.004999,0.249950,0,0);}
.m121_c01368{transform:matrix(0.201305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201305,0.000000,0.000000,0.250000,0,0);}
.m103_c01368{transform:matrix(0.202055,0.004041,-0.004999,0.249950,0,0);-ms-transform:matrix(0.202055,0.004041,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.202055,0.004041,-0.004999,0.249950,0,0);}
.mc2_c01368{transform:matrix(0.202844,0.004057,-0.004999,0.249950,0,0);-ms-transform:matrix(0.202844,0.004057,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.202844,0.004057,-0.004999,0.249950,0,0);}
.md7_c01368{transform:matrix(0.202935,0.005682,-0.006997,0.249902,0,0);-ms-transform:matrix(0.202935,0.005682,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.202935,0.005682,-0.006997,0.249902,0,0);}
.mdb_c01368{transform:matrix(0.203550,0.005699,-0.006997,0.249902,0,0);-ms-transform:matrix(0.203550,0.005699,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.203550,0.005699,-0.006997,0.249902,0,0);}
.m12c_c01368{transform:matrix(0.203705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203705,0.000000,0.000000,0.250000,0,0);}
.m4c_c01368{transform:matrix(0.204824,0.004096,-0.004999,0.249950,0,0);-ms-transform:matrix(0.204824,0.004096,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.204824,0.004096,-0.004999,0.249950,0,0);}
.mfd_c01368{transform:matrix(0.205354,0.004107,-0.004999,0.249950,0,0);-ms-transform:matrix(0.205354,0.004107,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.205354,0.004107,-0.004999,0.249950,0,0);}
.m104_c01368{transform:matrix(0.205574,0.004111,-0.004999,0.249950,0,0);-ms-transform:matrix(0.205574,0.004111,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.205574,0.004111,-0.004999,0.249950,0,0);}
.md9_c01368{transform:matrix(0.205619,0.005757,-0.006997,0.249902,0,0);-ms-transform:matrix(0.205619,0.005757,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.205619,0.005757,-0.006997,0.249902,0,0);}
.m25_c01368{transform:matrix(0.206564,0.004131,-0.004999,0.249950,0,0);-ms-transform:matrix(0.206564,0.004131,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.206564,0.004131,-0.004999,0.249950,0,0);}
.m2f_c01368{transform:matrix(0.206889,0.004138,-0.004999,0.249950,0,0);-ms-transform:matrix(0.206889,0.004138,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.206889,0.004138,-0.004999,0.249950,0,0);}
.m2a_c01368{transform:matrix(0.207464,0.004149,-0.004999,0.249950,0,0);-ms-transform:matrix(0.207464,0.004149,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.207464,0.004149,-0.004999,0.249950,0,0);}
.m101_c01368{transform:matrix(0.208753,0.004175,-0.004999,0.249950,0,0);-ms-transform:matrix(0.208753,0.004175,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.208753,0.004175,-0.004999,0.249950,0,0);}
.m13c_c01368{transform:matrix(0.208972,0.002299,-0.002750,0.249985,0,0);-ms-transform:matrix(0.208972,0.002299,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.208972,0.002299,-0.002750,0.249985,0,0);}
.m45_c01368{transform:matrix(0.209763,0.004195,-0.004999,0.249950,0,0);-ms-transform:matrix(0.209763,0.004195,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.209763,0.004195,-0.004999,0.249950,0,0);}
.mdd_c01368{transform:matrix(0.210522,0.005895,-0.006997,0.249902,0,0);-ms-transform:matrix(0.210522,0.005895,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.210522,0.005895,-0.006997,0.249902,0,0);}
.m72_c01368{transform:matrix(0.210983,0.004220,-0.004999,0.249950,0,0);-ms-transform:matrix(0.210983,0.004220,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.210983,0.004220,-0.004999,0.249950,0,0);}
.m5d_c01368{transform:matrix(0.211963,0.004239,-0.004999,0.249950,0,0);-ms-transform:matrix(0.211963,0.004239,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.211963,0.004239,-0.004999,0.249950,0,0);}
.mda_c01368{transform:matrix(0.212342,0.005946,-0.006997,0.249902,0,0);-ms-transform:matrix(0.212342,0.005946,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.212342,0.005946,-0.006997,0.249902,0,0);}
.m2c_c01368{transform:matrix(0.212468,0.004249,-0.004999,0.249950,0,0);-ms-transform:matrix(0.212468,0.004249,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.212468,0.004249,-0.004999,0.249950,0,0);}
.mdf_c01368{transform:matrix(0.212742,0.005957,-0.006997,0.249902,0,0);-ms-transform:matrix(0.212742,0.005957,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.212742,0.005957,-0.006997,0.249902,0,0);}
.mfa_c01368{transform:matrix(0.212902,0.004258,-0.004999,0.249950,0,0);-ms-transform:matrix(0.212902,0.004258,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.212902,0.004258,-0.004999,0.249950,0,0);}
.m62_c01368{transform:matrix(0.213942,0.004279,-0.004999,0.249950,0,0);-ms-transform:matrix(0.213942,0.004279,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.213942,0.004279,-0.004999,0.249950,0,0);}
.m2d_c01368{transform:matrix(0.214142,0.004283,-0.004999,0.249950,0,0);-ms-transform:matrix(0.214142,0.004283,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.214142,0.004283,-0.004999,0.249950,0,0);}
.m48_c01368{transform:matrix(0.214512,0.004290,-0.004999,0.249950,0,0);-ms-transform:matrix(0.214512,0.004290,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.214512,0.004290,-0.004999,0.249950,0,0);}
.md0_c01368{transform:matrix(0.214528,0.003432,-0.003999,0.249968,0,0);-ms-transform:matrix(0.214528,0.003432,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.214528,0.003432,-0.003999,0.249968,0,0);}
.mb2_c01368{transform:matrix(0.214622,0.004292,-0.004999,0.249950,0,0);-ms-transform:matrix(0.214622,0.004292,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.214622,0.004292,-0.004999,0.249950,0,0);}
.m11b_c01368{transform:matrix(0.214665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214665,0.000000,0.000000,0.250000,0,0);}
.m29_c01368{transform:matrix(0.215087,0.004302,-0.004999,0.249950,0,0);-ms-transform:matrix(0.215087,0.004302,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.215087,0.004302,-0.004999,0.249950,0,0);}
.m6e_c01368{transform:matrix(0.215107,0.004302,-0.004999,0.249950,0,0);-ms-transform:matrix(0.215107,0.004302,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.215107,0.004302,-0.004999,0.249950,0,0);}
.m27_c01368{transform:matrix(0.215157,0.004303,-0.004999,0.249950,0,0);-ms-transform:matrix(0.215157,0.004303,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.215157,0.004303,-0.004999,0.249950,0,0);}
.m123_c01368{transform:matrix(0.215740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215740,0.000000,0.000000,0.250000,0,0);}
.me4_c01368{transform:matrix(0.217415,0.006088,-0.006997,0.249902,0,0);-ms-transform:matrix(0.217415,0.006088,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.217415,0.006088,-0.006997,0.249902,0,0);}
.m1d_c01368{transform:matrix(0.217726,0.004355,-0.004999,0.249950,0,0);-ms-transform:matrix(0.217726,0.004355,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.217726,0.004355,-0.004999,0.249950,0,0);}
.m122_c01368{transform:matrix(0.218010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218010,0.000000,0.000000,0.250000,0,0);}
.m2b_c01368{transform:matrix(0.218661,0.004373,-0.004999,0.249950,0,0);-ms-transform:matrix(0.218661,0.004373,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.218661,0.004373,-0.004999,0.249950,0,0);}
.m60_c01368{transform:matrix(0.218906,0.004378,-0.004999,0.249950,0,0);-ms-transform:matrix(0.218906,0.004378,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.218906,0.004378,-0.004999,0.249950,0,0);}
.m63_c01368{transform:matrix(0.219121,0.004382,-0.004999,0.249950,0,0);-ms-transform:matrix(0.219121,0.004382,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.219121,0.004382,-0.004999,0.249950,0,0);}
.m68_c01368{transform:matrix(0.219261,0.004385,-0.004999,0.249950,0,0);-ms-transform:matrix(0.219261,0.004385,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.219261,0.004385,-0.004999,0.249950,0,0);}
.mcf_c01368{transform:matrix(0.219657,0.003515,-0.003999,0.249968,0,0);-ms-transform:matrix(0.219657,0.003515,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.219657,0.003515,-0.003999,0.249968,0,0);}
.m3d_c01368{transform:matrix(0.219916,0.004398,-0.004999,0.249950,0,0);-ms-transform:matrix(0.219916,0.004398,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.219916,0.004398,-0.004999,0.249950,0,0);}
.md3_c01368{transform:matrix(0.220287,0.003525,-0.003999,0.249968,0,0);-ms-transform:matrix(0.220287,0.003525,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.220287,0.003525,-0.003999,0.249968,0,0);}
.m12a_c01368{transform:matrix(0.220775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220775,0.000000,0.000000,0.250000,0,0);}
.m1c_c01368{transform:matrix(0.221036,0.004421,-0.004999,0.249950,0,0);-ms-transform:matrix(0.221036,0.004421,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.221036,0.004421,-0.004999,0.249950,0,0);}
.m65_c01368{transform:matrix(0.221126,0.004423,-0.004999,0.249950,0,0);-ms-transform:matrix(0.221126,0.004423,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.221126,0.004423,-0.004999,0.249950,0,0);}
.m120_c01368{transform:matrix(0.221415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221415,0.000000,0.000000,0.250000,0,0);}
.m47_c01368{transform:matrix(0.221836,0.004437,-0.004999,0.249950,0,0);-ms-transform:matrix(0.221836,0.004437,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.221836,0.004437,-0.004999,0.249950,0,0);}
.m3a_c01368{transform:matrix(0.221951,0.004439,-0.004999,0.249950,0,0);-ms-transform:matrix(0.221951,0.004439,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.221951,0.004439,-0.004999,0.249950,0,0);}
.mb7_c01368{transform:matrix(0.222151,0.004443,-0.004999,0.249950,0,0);-ms-transform:matrix(0.222151,0.004443,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.222151,0.004443,-0.004999,0.249950,0,0);}
.ma7_c01368{transform:matrix(0.222755,0.004455,-0.004999,0.249950,0,0);-ms-transform:matrix(0.222755,0.004455,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.222755,0.004455,-0.004999,0.249950,0,0);}
.m43_c01368{transform:matrix(0.222775,0.004456,-0.004999,0.249950,0,0);-ms-transform:matrix(0.222775,0.004456,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.222775,0.004456,-0.004999,0.249950,0,0);}
.md4_c01368{transform:matrix(0.223151,0.003570,-0.003999,0.249968,0,0);-ms-transform:matrix(0.223151,0.003570,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.223151,0.003570,-0.003999,0.249968,0,0);}
.m3b_c01368{transform:matrix(0.223170,0.004463,-0.004999,0.249950,0,0);-ms-transform:matrix(0.223170,0.004463,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.223170,0.004463,-0.004999,0.249950,0,0);}
.mb3_c01368{transform:matrix(0.223335,0.004467,-0.004999,0.249950,0,0);-ms-transform:matrix(0.223335,0.004467,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.223335,0.004467,-0.004999,0.249950,0,0);}
.m40_c01368{transform:matrix(0.223440,0.004469,-0.004999,0.249950,0,0);-ms-transform:matrix(0.223440,0.004469,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.223440,0.004469,-0.004999,0.249950,0,0);}
.m11a_c01368{transform:matrix(0.223885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223885,0.000000,0.000000,0.250000,0,0);}
.m69_c01368{transform:matrix(0.223990,0.004480,-0.004999,0.249950,0,0);-ms-transform:matrix(0.223990,0.004480,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.223990,0.004480,-0.004999,0.249950,0,0);}
.m3e_c01368{transform:matrix(0.224015,0.004480,-0.004999,0.249950,0,0);-ms-transform:matrix(0.224015,0.004480,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.224015,0.004480,-0.004999,0.249950,0,0);}
.m9e_c01368{transform:matrix(0.224025,0.004481,-0.004999,0.249950,0,0);-ms-transform:matrix(0.224025,0.004481,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.224025,0.004481,-0.004999,0.249950,0,0);}
.m107_c01368{transform:matrix(0.224195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224195,0.000000,0.000000,0.250000,0,0);}
.m6c_c01368{transform:matrix(0.224380,0.004488,-0.004999,0.249950,0,0);-ms-transform:matrix(0.224380,0.004488,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.224380,0.004488,-0.004999,0.249950,0,0);}
.m110_c01368{transform:matrix(0.225070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225070,0.000000,0.000000,0.250000,0,0);}
.m71_c01368{transform:matrix(0.225530,0.004511,-0.004999,0.249950,0,0);-ms-transform:matrix(0.225530,0.004511,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.225530,0.004511,-0.004999,0.249950,0,0);}
.mb9_c01368{transform:matrix(0.226445,0.004529,-0.004999,0.249950,0,0);-ms-transform:matrix(0.226445,0.004529,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.226445,0.004529,-0.004999,0.249950,0,0);}
.m90_c01368{transform:matrix(0.226600,0.004532,-0.004999,0.249950,0,0);-ms-transform:matrix(0.226600,0.004532,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.226600,0.004532,-0.004999,0.249950,0,0);}
.m21_c01368{transform:matrix(0.227240,0.004545,-0.004999,0.249950,0,0);-ms-transform:matrix(0.227240,0.004545,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.227240,0.004545,-0.004999,0.249950,0,0);}
.m92_c01368{transform:matrix(0.227285,0.004546,-0.004999,0.249950,0,0);-ms-transform:matrix(0.227285,0.004546,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.227285,0.004546,-0.004999,0.249950,0,0);}
.m4a_c01368{transform:matrix(0.227674,0.004553,-0.004999,0.249950,0,0);-ms-transform:matrix(0.227674,0.004553,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.227674,0.004553,-0.004999,0.249950,0,0);}
.m9c_c01368{transform:matrix(0.227679,0.004554,-0.004999,0.249950,0,0);-ms-transform:matrix(0.227679,0.004554,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.227679,0.004554,-0.004999,0.249950,0,0);}
.m74_c01368{transform:matrix(0.227774,0.004555,-0.004999,0.249950,0,0);-ms-transform:matrix(0.227774,0.004555,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.227774,0.004555,-0.004999,0.249950,0,0);}
.m67_c01368{transform:matrix(0.227814,0.004556,-0.004999,0.249950,0,0);-ms-transform:matrix(0.227814,0.004556,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.227814,0.004556,-0.004999,0.249950,0,0);}
.m61_c01368{transform:matrix(0.228444,0.004569,-0.004999,0.249950,0,0);-ms-transform:matrix(0.228444,0.004569,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.228444,0.004569,-0.004999,0.249950,0,0);}
.mc_c01368{transform:matrix(0.228464,0.004569,-0.004999,0.249950,0,0);-ms-transform:matrix(0.228464,0.004569,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.228464,0.004569,-0.004999,0.249950,0,0);}
.m44_c01368{transform:matrix(0.228679,0.004574,-0.004999,0.249950,0,0);-ms-transform:matrix(0.228679,0.004574,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.228679,0.004574,-0.004999,0.249950,0,0);}
.md_c01368{transform:matrix(0.228859,0.004577,-0.004999,0.249950,0,0);-ms-transform:matrix(0.228859,0.004577,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.228859,0.004577,-0.004999,0.249950,0,0);}
.m10e_c01368{transform:matrix(0.229045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229045,0.000000,0.000000,0.250000,0,0);}
.m9a_c01368{transform:matrix(0.229109,0.004582,-0.004999,0.249950,0,0);-ms-transform:matrix(0.229109,0.004582,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.229109,0.004582,-0.004999,0.249950,0,0);}
.mcb_c01368{transform:matrix(0.229149,0.004583,-0.004999,0.249950,0,0);-ms-transform:matrix(0.229149,0.004583,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.229149,0.004583,-0.004999,0.249950,0,0);}
.m1b_c01368{transform:matrix(0.229159,0.004583,-0.004999,0.249950,0,0);-ms-transform:matrix(0.229159,0.004583,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.229159,0.004583,-0.004999,0.249950,0,0);}
.mf5_c01368{transform:matrix(0.229175,0.006417,-0.006997,0.249902,0,0);-ms-transform:matrix(0.229175,0.006417,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.229175,0.006417,-0.006997,0.249902,0,0);}
.m111_c01368{transform:matrix(0.229330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229330,0.000000,0.000000,0.250000,0,0);}
.m46_c01368{transform:matrix(0.229839,0.004597,-0.004999,0.249950,0,0);-ms-transform:matrix(0.229839,0.004597,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.229839,0.004597,-0.004999,0.249950,0,0);}
.maf_c01368{transform:matrix(0.230399,0.004608,-0.004999,0.249950,0,0);-ms-transform:matrix(0.230399,0.004608,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.230399,0.004608,-0.004999,0.249950,0,0);}
.m124_c01368{transform:matrix(0.231150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231150,0.000000,0.000000,0.250000,0,0);}
.m73_c01368{transform:matrix(0.231604,0.004632,-0.004999,0.249950,0,0);-ms-transform:matrix(0.231604,0.004632,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.231604,0.004632,-0.004999,0.249950,0,0);}
.m5e_c01368{transform:matrix(0.231654,0.004633,-0.004999,0.249950,0,0);-ms-transform:matrix(0.231654,0.004633,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.231654,0.004633,-0.004999,0.249950,0,0);}
.m32_c01368{transform:matrix(0.231954,0.004639,-0.004999,0.249950,0,0);-ms-transform:matrix(0.231954,0.004639,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.231954,0.004639,-0.004999,0.249950,0,0);}
.m70_c01368{transform:matrix(0.232234,0.004645,-0.004999,0.249950,0,0);-ms-transform:matrix(0.232234,0.004645,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.232234,0.004645,-0.004999,0.249950,0,0);}
.m118_c01368{transform:matrix(0.232335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232335,0.000000,0.000000,0.250000,0,0);}
.mb1_c01368{transform:matrix(0.232474,0.004649,-0.004999,0.249950,0,0);-ms-transform:matrix(0.232474,0.004649,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.232474,0.004649,-0.004999,0.249950,0,0);}
.m64_c01368{transform:matrix(0.232893,0.004658,-0.004999,0.249950,0,0);-ms-transform:matrix(0.232893,0.004658,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.232893,0.004658,-0.004999,0.249950,0,0);}
.me0_c01368{transform:matrix(0.233149,0.006528,-0.006997,0.249902,0,0);-ms-transform:matrix(0.233149,0.006528,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.233149,0.006528,-0.006997,0.249902,0,0);}
.m23_c01368{transform:matrix(0.233753,0.004675,-0.004999,0.249950,0,0);-ms-transform:matrix(0.233753,0.004675,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.233753,0.004675,-0.004999,0.249950,0,0);}
.m126_c01368{transform:matrix(0.234035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234035,0.000000,0.000000,0.250000,0,0);}
.m5f_c01368{transform:matrix(0.234138,0.004683,-0.004999,0.249950,0,0);-ms-transform:matrix(0.234138,0.004683,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.234138,0.004683,-0.004999,0.249950,0,0);}
.md1_c01368{transform:matrix(0.234495,0.003752,-0.003999,0.249968,0,0);-ms-transform:matrix(0.234495,0.003752,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.234495,0.003752,-0.003999,0.249968,0,0);}
.m10f_c01368{transform:matrix(0.234505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234505,0.000000,0.000000,0.250000,0,0);}
.mf4_c01368{transform:matrix(0.234693,0.006571,-0.006997,0.249902,0,0);-ms-transform:matrix(0.234693,0.006571,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.234693,0.006571,-0.006997,0.249902,0,0);}
.m6f_c01368{transform:matrix(0.234813,0.004696,-0.004999,0.249950,0,0);-ms-transform:matrix(0.234813,0.004696,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.234813,0.004696,-0.004999,0.249950,0,0);}
.m128_c01368{transform:matrix(0.234825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234825,0.000000,0.000000,0.250000,0,0);}
.m99_c01368{transform:matrix(0.234853,0.004697,-0.004999,0.249950,0,0);-ms-transform:matrix(0.234853,0.004697,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.234853,0.004697,-0.004999,0.249950,0,0);}
.m1e_c01368{transform:matrix(0.235363,0.004707,-0.004999,0.249950,0,0);-ms-transform:matrix(0.235363,0.004707,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.235363,0.004707,-0.004999,0.249950,0,0);}
.m115_c01368{transform:matrix(0.235790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235790,0.000000,0.000000,0.250000,0,0);}
.m10c_c01368{transform:matrix(0.236005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236005,0.000000,0.000000,0.250000,0,0);}
.m3f_c01368{transform:matrix(0.236148,0.004723,-0.004999,0.249950,0,0);-ms-transform:matrix(0.236148,0.004723,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.236148,0.004723,-0.004999,0.249950,0,0);}
.m49_c01368{transform:matrix(0.236168,0.004723,-0.004999,0.249950,0,0);-ms-transform:matrix(0.236168,0.004723,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.236168,0.004723,-0.004999,0.249950,0,0);}
.m26_c01368{transform:matrix(0.236188,0.004724,-0.004999,0.249950,0,0);-ms-transform:matrix(0.236188,0.004724,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.236188,0.004724,-0.004999,0.249950,0,0);}
.m9f_c01368{transform:matrix(0.236433,0.004729,-0.004999,0.249950,0,0);-ms-transform:matrix(0.236433,0.004729,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.236433,0.004729,-0.004999,0.249950,0,0);}
.m3c_c01368{transform:matrix(0.236598,0.004732,-0.004999,0.249950,0,0);-ms-transform:matrix(0.236598,0.004732,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.236598,0.004732,-0.004999,0.249950,0,0);}
.m11d_c01368{transform:matrix(0.237065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237065,0.000000,0.000000,0.250000,0,0);}
.m6d_c01368{transform:matrix(0.237123,0.004742,-0.004999,0.249950,0,0);-ms-transform:matrix(0.237123,0.004742,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.237123,0.004742,-0.004999,0.249950,0,0);}
.md2_c01368{transform:matrix(0.237160,0.003795,-0.003999,0.249968,0,0);-ms-transform:matrix(0.237160,0.003795,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.237160,0.003795,-0.003999,0.249968,0,0);}
.m7_c01368{transform:matrix(0.237478,0.004750,-0.004999,0.249950,0,0);-ms-transform:matrix(0.237478,0.004750,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.237478,0.004750,-0.004999,0.249950,0,0);}
.mf2_c01368{transform:matrix(0.237737,0.006657,-0.006997,0.249902,0,0);-ms-transform:matrix(0.237737,0.006657,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.237737,0.006657,-0.006997,0.249902,0,0);}
.m3_c01368{transform:matrix(0.237956,0.005711,-0.005998,0.249928,0,0);-ms-transform:matrix(0.237956,0.005711,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.237956,0.005711,-0.005998,0.249928,0,0);}
.m7a_c01368{transform:matrix(0.238097,0.004762,-0.004999,0.249950,0,0);-ms-transform:matrix(0.238097,0.004762,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.238097,0.004762,-0.004999,0.249950,0,0);}
.m10b_c01368{transform:matrix(0.238445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238445,0.000000,0.000000,0.250000,0,0);}
.m125_c01368{transform:matrix(0.238530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238530,0.000000,0.000000,0.250000,0,0);}
.m108_c01368{transform:matrix(0.238715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238715,0.000000,0.000000,0.250000,0,0);}
.m6a_c01368{transform:matrix(0.238772,0.004775,-0.004999,0.249950,0,0);-ms-transform:matrix(0.238772,0.004775,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.238772,0.004775,-0.004999,0.249950,0,0);}
.mb4_c01368{transform:matrix(0.239187,0.004784,-0.004999,0.249950,0,0);-ms-transform:matrix(0.239187,0.004784,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.239187,0.004784,-0.004999,0.249950,0,0);}
.m22_c01368{transform:matrix(0.239332,0.004787,-0.004999,0.249950,0,0);-ms-transform:matrix(0.239332,0.004787,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.239332,0.004787,-0.004999,0.249950,0,0);}
.m97_c01368{transform:matrix(0.240142,0.004803,-0.004999,0.249950,0,0);-ms-transform:matrix(0.240142,0.004803,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.240142,0.004803,-0.004999,0.249950,0,0);}
.m4b_c01368{transform:matrix(0.240187,0.004804,-0.004999,0.249950,0,0);-ms-transform:matrix(0.240187,0.004804,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.240187,0.004804,-0.004999,0.249950,0,0);}
.mf0_c01368{transform:matrix(0.240201,0.006726,-0.006997,0.249902,0,0);-ms-transform:matrix(0.240201,0.006726,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.240201,0.006726,-0.006997,0.249902,0,0);}
.m41_c01368{transform:matrix(0.240707,0.004814,-0.004999,0.249950,0,0);-ms-transform:matrix(0.240707,0.004814,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.240707,0.004814,-0.004999,0.249950,0,0);}
.mb5_c01368{transform:matrix(0.240882,0.004818,-0.004999,0.249950,0,0);-ms-transform:matrix(0.240882,0.004818,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.240882,0.004818,-0.004999,0.249950,0,0);}
.m10a_c01368{transform:matrix(0.242655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242655,0.000000,0.000000,0.250000,0,0);}
.m139_c01368{transform:matrix(0.242785,0.002671,-0.002750,0.249985,0,0);-ms-transform:matrix(0.242785,0.002671,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.242785,0.002671,-0.002750,0.249985,0,0);}
.m98_c01368{transform:matrix(0.243051,0.004861,-0.004999,0.249950,0,0);-ms-transform:matrix(0.243051,0.004861,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.243051,0.004861,-0.004999,0.249950,0,0);}
.m84_c01368{transform:matrix(0.243121,0.004862,-0.004999,0.249950,0,0);-ms-transform:matrix(0.243121,0.004862,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.243121,0.004862,-0.004999,0.249950,0,0);}
.m1a_c01368{transform:matrix(0.243531,0.004871,-0.004999,0.249950,0,0);-ms-transform:matrix(0.243531,0.004871,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.243531,0.004871,-0.004999,0.249950,0,0);}
.m37_c01368{transform:matrix(0.244046,0.004881,-0.004999,0.249950,0,0);-ms-transform:matrix(0.244046,0.004881,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.244046,0.004881,-0.004999,0.249950,0,0);}
.m39_c01368{transform:matrix(0.244136,0.004883,-0.004999,0.249950,0,0);-ms-transform:matrix(0.244136,0.004883,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.244136,0.004883,-0.004999,0.249950,0,0);}
.mce_c01368{transform:matrix(0.244159,0.003907,-0.003999,0.249968,0,0);-ms-transform:matrix(0.244159,0.003907,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.244159,0.003907,-0.003999,0.249968,0,0);}
.mec_c01368{transform:matrix(0.244674,0.006851,-0.006997,0.249902,0,0);-ms-transform:matrix(0.244674,0.006851,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.244674,0.006851,-0.006997,0.249902,0,0);}
.m8b_c01368{transform:matrix(0.245411,0.004908,-0.004999,0.249950,0,0);-ms-transform:matrix(0.245411,0.004908,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.245411,0.004908,-0.004999,0.249950,0,0);}
.m8_c01368{transform:matrix(0.245736,0.004915,-0.004999,0.249950,0,0);-ms-transform:matrix(0.245736,0.004915,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.245736,0.004915,-0.004999,0.249950,0,0);}
.me6_c01368{transform:matrix(0.246099,0.006891,-0.006997,0.249902,0,0);-ms-transform:matrix(0.246099,0.006891,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.246099,0.006891,-0.006997,0.249902,0,0);}
.me1_c01368{transform:matrix(0.246498,0.006902,-0.006997,0.249902,0,0);-ms-transform:matrix(0.246498,0.006902,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.246498,0.006902,-0.006997,0.249902,0,0);}
.mb0_c01368{transform:matrix(0.246611,0.004932,-0.004999,0.249950,0,0);-ms-transform:matrix(0.246611,0.004932,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.246611,0.004932,-0.004999,0.249950,0,0);}
.mc3_c01368{transform:matrix(0.246796,0.004936,-0.004999,0.249950,0,0);-ms-transform:matrix(0.246796,0.004936,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.246796,0.004936,-0.004999,0.249950,0,0);}
.ma_c01368{transform:matrix(0.246901,0.004938,-0.004999,0.249950,0,0);-ms-transform:matrix(0.246901,0.004938,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.246901,0.004938,-0.004999,0.249950,0,0);}
.ma2_c01368{transform:matrix(0.247166,0.004943,-0.004999,0.249950,0,0);-ms-transform:matrix(0.247166,0.004943,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.247166,0.004943,-0.004999,0.249950,0,0);}
.m10d_c01368{transform:matrix(0.247245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247245,0.000000,0.000000,0.250000,0,0);}
.m89_c01368{transform:matrix(0.247501,0.004950,-0.004999,0.249950,0,0);-ms-transform:matrix(0.247501,0.004950,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.247501,0.004950,-0.004999,0.249950,0,0);}
.m9_c01368{transform:matrix(0.247765,0.004955,-0.004999,0.249950,0,0);-ms-transform:matrix(0.247765,0.004955,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.247765,0.004955,-0.004999,0.249950,0,0);}
.m35_c01368{transform:matrix(0.248030,0.004961,-0.004999,0.249950,0,0);-ms-transform:matrix(0.248030,0.004961,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.248030,0.004961,-0.004999,0.249950,0,0);}
.m11c_c01368{transform:matrix(0.248505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248505,0.000000,0.000000,0.250000,0,0);}
.mb6_c01368{transform:matrix(0.248605,0.004972,-0.004999,0.249950,0,0);-ms-transform:matrix(0.248605,0.004972,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.248605,0.004972,-0.004999,0.249950,0,0);}
.m117_c01368{transform:matrix(0.248700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248700,0.000000,0.000000,0.250000,0,0);}
.m11e_c01368{transform:matrix(0.248780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248780,0.000000,0.000000,0.250000,0,0);}
.m109_c01368{transform:matrix(0.249090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249090,0.000000,0.000000,0.250000,0,0);}
.m33_c01368{transform:matrix(0.249600,0.004992,-0.004999,0.249950,0,0);-ms-transform:matrix(0.249600,0.004992,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.249600,0.004992,-0.004999,0.249950,0,0);}
.m116_c01368{transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);}
.mf6_c01368{transform:matrix(0.250257,0.007007,-0.006997,0.249902,0,0);-ms-transform:matrix(0.250257,0.007007,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.250257,0.007007,-0.006997,0.249902,0,0);}
.mc5_c01368{transform:matrix(0.250260,0.005005,-0.004999,0.249950,0,0);-ms-transform:matrix(0.250260,0.005005,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.250260,0.005005,-0.004999,0.249950,0,0);}
.mdc_c01368{transform:matrix(0.250297,0.007008,-0.006997,0.249902,0,0);-ms-transform:matrix(0.250297,0.007008,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.250297,0.007008,-0.006997,0.249902,0,0);}
.mf1_c01368{transform:matrix(0.250372,0.007010,-0.006997,0.249902,0,0);-ms-transform:matrix(0.250372,0.007010,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.250372,0.007010,-0.006997,0.249902,0,0);}
.m86_c01368{transform:matrix(0.250375,0.005007,-0.004999,0.249950,0,0);-ms-transform:matrix(0.250375,0.005007,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.250375,0.005007,-0.004999,0.249950,0,0);}
.mad_c01368{transform:matrix(0.250410,0.005008,-0.004999,0.249950,0,0);-ms-transform:matrix(0.250410,0.005008,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.250410,0.005008,-0.004999,0.249950,0,0);}
.m42_c01368{transform:matrix(0.250595,0.005012,-0.004999,0.249950,0,0);-ms-transform:matrix(0.250595,0.005012,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.250595,0.005012,-0.004999,0.249950,0,0);}
.m7d_c01368{transform:matrix(0.250960,0.005019,-0.004999,0.249950,0,0);-ms-transform:matrix(0.250960,0.005019,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.250960,0.005019,-0.004999,0.249950,0,0);}
.m11f_c01368{transform:matrix(0.251190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251190,0.000000,0.000000,0.250000,0,0);}
.mca_c01368{transform:matrix(0.251545,0.005031,-0.004999,0.249950,0,0);-ms-transform:matrix(0.251545,0.005031,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.251545,0.005031,-0.004999,0.249950,0,0);}
.ma9_c01368{transform:matrix(0.252340,0.005047,-0.004999,0.249950,0,0);-ms-transform:matrix(0.252340,0.005047,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.252340,0.005047,-0.004999,0.249950,0,0);}
.ma6_c01368{transform:matrix(0.252435,0.005049,-0.004999,0.249950,0,0);-ms-transform:matrix(0.252435,0.005049,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.252435,0.005049,-0.004999,0.249950,0,0);}
.mc9_c01368{transform:matrix(0.252579,0.005052,-0.004999,0.249950,0,0);-ms-transform:matrix(0.252579,0.005052,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.252579,0.005052,-0.004999,0.249950,0,0);}
.mc7_c01368{transform:matrix(0.253079,0.005062,-0.004999,0.249950,0,0);-ms-transform:matrix(0.253079,0.005062,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.253079,0.005062,-0.004999,0.249950,0,0);}
.m24_c01368{transform:matrix(0.254489,0.005090,-0.004999,0.249950,0,0);-ms-transform:matrix(0.254489,0.005090,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.254489,0.005090,-0.004999,0.249950,0,0);}
.mea_c01368{transform:matrix(0.254770,0.007134,-0.006997,0.249902,0,0);-ms-transform:matrix(0.254770,0.007134,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.254770,0.007134,-0.006997,0.249902,0,0);}
.mac_c01368{transform:matrix(0.254979,0.005100,-0.004999,0.249950,0,0);-ms-transform:matrix(0.254979,0.005100,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.254979,0.005100,-0.004999,0.249950,0,0);}
.m6_c01368{transform:matrix(0.255804,0.005116,-0.004999,0.249950,0,0);-ms-transform:matrix(0.255804,0.005116,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.255804,0.005116,-0.004999,0.249950,0,0);}
.m20_c01368{transform:matrix(0.256559,0.005131,-0.004999,0.249950,0,0);-ms-transform:matrix(0.256559,0.005131,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.256559,0.005131,-0.004999,0.249950,0,0);}
.mab_c01368{transform:matrix(0.256769,0.005135,-0.004999,0.249950,0,0);-ms-transform:matrix(0.256769,0.005135,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.256769,0.005135,-0.004999,0.249950,0,0);}
.ma0_c01368{transform:matrix(0.256899,0.005138,-0.004999,0.249950,0,0);-ms-transform:matrix(0.256899,0.005138,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.256899,0.005138,-0.004999,0.249950,0,0);}
.m9d_c01368{transform:matrix(0.257059,0.005141,-0.004999,0.249950,0,0);-ms-transform:matrix(0.257059,0.005141,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.257059,0.005141,-0.004999,0.249950,0,0);}
.m78_c01368{transform:matrix(0.257499,0.005150,-0.004999,0.249950,0,0);-ms-transform:matrix(0.257499,0.005150,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.257499,0.005150,-0.004999,0.249950,0,0);}
.m1f_c01368{transform:matrix(0.258233,0.005165,-0.004999,0.249950,0,0);-ms-transform:matrix(0.258233,0.005165,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.258233,0.005165,-0.004999,0.249950,0,0);}
.mb_c01368{transform:matrix(0.258878,0.005178,-0.004999,0.249950,0,0);-ms-transform:matrix(0.258878,0.005178,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.258878,0.005178,-0.004999,0.249950,0,0);}
.m7b_c01368{transform:matrix(0.258898,0.005178,-0.004999,0.249950,0,0);-ms-transform:matrix(0.258898,0.005178,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.258898,0.005178,-0.004999,0.249950,0,0);}
.ma5_c01368{transform:matrix(0.259778,0.005196,-0.004999,0.249950,0,0);-ms-transform:matrix(0.259778,0.005196,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.259778,0.005196,-0.004999,0.249950,0,0);}
.me8_c01368{transform:matrix(0.260008,0.007280,-0.006997,0.249902,0,0);-ms-transform:matrix(0.260008,0.007280,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.260008,0.007280,-0.006997,0.249902,0,0);}
.mc6_c01368{transform:matrix(0.260433,0.005209,-0.004999,0.249950,0,0);-ms-transform:matrix(0.260433,0.005209,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.260433,0.005209,-0.004999,0.249950,0,0);}
.m80_c01368{transform:matrix(0.260588,0.005212,-0.004999,0.249950,0,0);-ms-transform:matrix(0.260588,0.005212,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.260588,0.005212,-0.004999,0.249950,0,0);}
.m9b_c01368{transform:matrix(0.261273,0.005225,-0.004999,0.249950,0,0);-ms-transform:matrix(0.261273,0.005225,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.261273,0.005225,-0.004999,0.249950,0,0);}
.me2_c01368{transform:matrix(0.261702,0.007328,-0.006997,0.249902,0,0);-ms-transform:matrix(0.261702,0.007328,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.261702,0.007328,-0.006997,0.249902,0,0);}
.mef_c01368{transform:matrix(0.261817,0.007331,-0.006997,0.249902,0,0);-ms-transform:matrix(0.261817,0.007331,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.261817,0.007331,-0.006997,0.249902,0,0);}
.m119_c01368{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m79_c01368{transform:matrix(0.263172,0.005263,-0.004999,0.249950,0,0);-ms-transform:matrix(0.263172,0.005263,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.263172,0.005263,-0.004999,0.249950,0,0);}
.mb8_c01368{transform:matrix(0.263572,0.005271,-0.004999,0.249950,0,0);-ms-transform:matrix(0.263572,0.005271,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.263572,0.005271,-0.004999,0.249950,0,0);}
.m34_c01368{transform:matrix(0.263732,0.005275,-0.004999,0.249950,0,0);-ms-transform:matrix(0.263732,0.005275,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.263732,0.005275,-0.004999,0.249950,0,0);}
.me3_c01368{transform:matrix(0.266546,0.007463,-0.006997,0.249902,0,0);-ms-transform:matrix(0.266546,0.007463,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.266546,0.007463,-0.006997,0.249902,0,0);}
.mf7_c01368{transform:matrix(0.268445,0.007516,-0.006997,0.249902,0,0);-ms-transform:matrix(0.268445,0.007516,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.268445,0.007516,-0.006997,0.249902,0,0);}
.m87_c01368{transform:matrix(0.269181,0.005384,-0.004999,0.249950,0,0);-ms-transform:matrix(0.269181,0.005384,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.269181,0.005384,-0.004999,0.249950,0,0);}
.mc4_c01368{transform:matrix(0.269731,0.005395,-0.004999,0.249950,0,0);-ms-transform:matrix(0.269731,0.005395,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.269731,0.005395,-0.004999,0.249950,0,0);}
.ma8_c01368{transform:matrix(0.269866,0.005397,-0.004999,0.249950,0,0);-ms-transform:matrix(0.269866,0.005397,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.269866,0.005397,-0.004999,0.249950,0,0);}
.mf3_c01368{transform:matrix(0.270189,0.007565,-0.006997,0.249902,0,0);-ms-transform:matrix(0.270189,0.007565,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.270189,0.007565,-0.006997,0.249902,0,0);}
.m8c_c01368{transform:matrix(0.271111,0.005422,-0.004999,0.249950,0,0);-ms-transform:matrix(0.271111,0.005422,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.271111,0.005422,-0.004999,0.249950,0,0);}
.m75_c01368{transform:matrix(0.271666,0.005433,-0.004999,0.249950,0,0);-ms-transform:matrix(0.271666,0.005433,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.271666,0.005433,-0.004999,0.249950,0,0);}
.me5_c01368{transform:matrix(0.271983,0.007616,-0.006997,0.249902,0,0);-ms-transform:matrix(0.271983,0.007616,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.271983,0.007616,-0.006997,0.249902,0,0);}
.m83_c01368{transform:matrix(0.272710,0.005454,-0.004999,0.249950,0,0);-ms-transform:matrix(0.272710,0.005454,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.272710,0.005454,-0.004999,0.249950,0,0);}
.mcc_c01368{transform:matrix(0.272755,0.005455,-0.004999,0.249950,0,0);-ms-transform:matrix(0.272755,0.005455,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.272755,0.005455,-0.004999,0.249950,0,0);}
.me7_c01368{transform:matrix(0.273328,0.007653,-0.006997,0.249902,0,0);-ms-transform:matrix(0.273328,0.007653,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.273328,0.007653,-0.006997,0.249902,0,0);}
.m7c_c01368{transform:matrix(0.273415,0.005468,-0.004999,0.249950,0,0);-ms-transform:matrix(0.273415,0.005468,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.273415,0.005468,-0.004999,0.249950,0,0);}
.mc8_c01368{transform:matrix(0.274195,0.005484,-0.004999,0.249950,0,0);-ms-transform:matrix(0.274195,0.005484,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.274195,0.005484,-0.004999,0.249950,0,0);}
.m38_c01368{transform:matrix(0.274635,0.005493,-0.004999,0.249950,0,0);-ms-transform:matrix(0.274635,0.005493,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.274635,0.005493,-0.004999,0.249950,0,0);}
.m77_c01368{transform:matrix(0.276325,0.005526,-0.004999,0.249950,0,0);-ms-transform:matrix(0.276325,0.005526,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.276325,0.005526,-0.004999,0.249950,0,0);}
.m36_c01368{transform:matrix(0.276710,0.005534,-0.004999,0.249950,0,0);-ms-transform:matrix(0.276710,0.005534,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.276710,0.005534,-0.004999,0.249950,0,0);}
.m12b_c01368{transform:matrix(0.276950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276950,0.000000,0.000000,0.250000,0,0);}
.m7e_c01368{transform:matrix(0.278049,0.005561,-0.004999,0.249950,0,0);-ms-transform:matrix(0.278049,0.005561,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.278049,0.005561,-0.004999,0.249950,0,0);}
.m112_c01368{transform:matrix(0.278130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278130,0.000000,0.000000,0.250000,0,0);}
.m88_c01368{transform:matrix(0.278594,0.005572,-0.004999,0.249950,0,0);-ms-transform:matrix(0.278594,0.005572,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.278594,0.005572,-0.004999,0.249950,0,0);}
.ma4_c01368{transform:matrix(0.278939,0.005579,-0.004999,0.249950,0,0);-ms-transform:matrix(0.278939,0.005579,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.278939,0.005579,-0.004999,0.249950,0,0);}
.med_c01368{transform:matrix(0.279356,0.007822,-0.006997,0.249902,0,0);-ms-transform:matrix(0.279356,0.007822,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.279356,0.007822,-0.006997,0.249902,0,0);}
.m31_c01368{transform:matrix(0.279639,0.005593,-0.004999,0.249950,0,0);-ms-transform:matrix(0.279639,0.005593,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.279639,0.005593,-0.004999,0.249950,0,0);}
.m81_c01368{transform:matrix(0.280419,0.005608,-0.004999,0.249950,0,0);-ms-transform:matrix(0.280419,0.005608,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.280419,0.005608,-0.004999,0.249950,0,0);}
.m4_c01368{transform:matrix(0.280554,0.006733,-0.005998,0.249928,0,0);-ms-transform:matrix(0.280554,0.006733,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.280554,0.006733,-0.005998,0.249928,0,0);}
.m1_c01368{transform:matrix(0.280999,0.006744,-0.005998,0.249928,0,0);-ms-transform:matrix(0.280999,0.006744,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.280999,0.006744,-0.005998,0.249928,0,0);}
.ma1_c01368{transform:matrix(0.281539,0.005631,-0.004999,0.249950,0,0);-ms-transform:matrix(0.281539,0.005631,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.281539,0.005631,-0.004999,0.249950,0,0);}
.m0_c01368{transform:matrix(0.283743,0.006810,-0.005998,0.249928,0,0);-ms-transform:matrix(0.283743,0.006810,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.283743,0.006810,-0.005998,0.249928,0,0);}
.meb_c01368{transform:matrix(0.284269,0.007960,-0.006997,0.249902,0,0);-ms-transform:matrix(0.284269,0.007960,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.284269,0.007960,-0.006997,0.249902,0,0);}
.m85_c01368{transform:matrix(0.284978,0.005700,-0.004999,0.249950,0,0);-ms-transform:matrix(0.284978,0.005700,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.284978,0.005700,-0.004999,0.249950,0,0);}
.m76_c01368{transform:matrix(0.285043,0.005701,-0.004999,0.249950,0,0);-ms-transform:matrix(0.285043,0.005701,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.285043,0.005701,-0.004999,0.249950,0,0);}
.mae_c01368{transform:matrix(0.285388,0.005708,-0.004999,0.249950,0,0);-ms-transform:matrix(0.285388,0.005708,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.285388,0.005708,-0.004999,0.249950,0,0);}
.maa_c01368{transform:matrix(0.286013,0.005720,-0.004999,0.249950,0,0);-ms-transform:matrix(0.286013,0.005720,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.286013,0.005720,-0.004999,0.249950,0,0);}
.me9_c01368{transform:matrix(0.287033,0.008037,-0.006997,0.249902,0,0);-ms-transform:matrix(0.287033,0.008037,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.287033,0.008037,-0.006997,0.249902,0,0);}
.m7f_c01368{transform:matrix(0.287228,0.005745,-0.004999,0.249950,0,0);-ms-transform:matrix(0.287228,0.005745,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.287228,0.005745,-0.004999,0.249950,0,0);}
.m8a_c01368{transform:matrix(0.288652,0.005773,-0.004999,0.249950,0,0);-ms-transform:matrix(0.288652,0.005773,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.288652,0.005773,-0.004999,0.249950,0,0);}
.m2_c01368{transform:matrix(0.295505,0.007092,-0.005998,0.249928,0,0);-ms-transform:matrix(0.295505,0.007092,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.295505,0.007092,-0.005998,0.249928,0,0);}
.mee_c01368{transform:matrix(0.296899,0.008313,-0.006997,0.249902,0,0);-ms-transform:matrix(0.296899,0.008313,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.296899,0.008313,-0.006997,0.249902,0,0);}
.ma3_c01368{transform:matrix(0.304549,0.006091,-0.004999,0.249950,0,0);-ms-transform:matrix(0.304549,0.006091,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.304549,0.006091,-0.004999,0.249950,0,0);}
.m82_c01368{transform:matrix(0.305189,0.006104,-0.004999,0.249950,0,0);-ms-transform:matrix(0.305189,0.006104,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.305189,0.006104,-0.004999,0.249950,0,0);}
.mcd_c01368{transform:matrix(0.317806,0.006356,-0.004999,0.249950,0,0);-ms-transform:matrix(0.317806,0.006356,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.317806,0.006356,-0.004999,0.249950,0,0);}
.mf8_c01368{transform:matrix(0.327891,0.009181,-0.006997,0.249902,0,0);-ms-transform:matrix(0.327891,0.009181,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.327891,0.009181,-0.006997,0.249902,0,0);}
.me_c01368{transform:matrix(0.334198,0.006684,-0.004999,0.249950,0,0);-ms-transform:matrix(0.334198,0.006684,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.334198,0.006684,-0.004999,0.249950,0,0);}
.m106_c01368{transform:matrix(0.356889,0.007138,-0.004999,0.249950,0,0);-ms-transform:matrix(0.356889,0.007138,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.356889,0.007138,-0.004999,0.249950,0,0);}
.m114_c01368{transform:matrix(0.367070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367070,0.000000,0.000000,0.250000,0,0);}
.m12e_c01368{transform:matrix(6.122160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(6.122160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(6.122160,0.000000,0.000000,0.250000,0,0);}
.v0_c01368{vertical-align:0.000000px;}
.ls0_c01368{letter-spacing:0.000000px;}
.sc__c01368{text-shadow:none;}
.sc0_c01368{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__c01368{-webkit-text-stroke:0px transparent;}
.sc0_c01368{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01368{word-spacing:0.000000px;}
.fc0_c01368{color:transparent;}
.fse_c01368{font-size:24.000000px;}
.fs4_c01368{font-size:72.014399px;}
.fs0_c01368{font-size:72.020733px;}
.fs9_c01368{font-size:72.028218px;}
.fsb_c01368{font-size:78.000000px;}
.fs1_c01368{font-size:78.015598px;}
.fsc_c01368{font-size:84.000000px;}
.fs7_c01368{font-size:84.010751px;}
.fs5_c01368{font-size:84.016798px;}
.fs3_c01368{font-size:90.017998px;}
.fsa_c01368{font-size:96.019198px;}
.fs8_c01368{font-size:96.037625px;}
.fsd_c01368{font-size:102.000000px;}
.fs6_c01368{font-size:102.020398px;}
.fs10_c01368{font-size:114.006897px;}
.fsf_c01368{font-size:120.007260px;}
.fs2_c01368{font-size:132.026397px;}
.y0_c01368{bottom:0.000000px;}
.y13c_c01368{bottom:68.573205px;}
.y13b_c01368{bottom:69.247908px;}
.y13a_c01368{bottom:70.078775px;}
.y139_c01368{bottom:71.244849px;}
.y138_c01368{bottom:71.569466px;}
.y137_c01368{bottom:72.226139px;}
.y136_c01368{bottom:72.568241px;}
.y135_c01368{bottom:73.033499px;}
.y134_c01368{bottom:74.196636px;}
.y133_c01368{bottom:75.776304px;}
.y132_c01368{bottom:76.141599px;}
.y131_c01368{bottom:104.957736px;}
.y130_c01368{bottom:105.565184px;}
.y12f_c01368{bottom:106.538106px;}
.y12e_c01368{bottom:106.754867px;}
.y12d_c01368{bottom:107.259899px;}
.y12c_c01368{bottom:107.601531px;}
.y12b_c01368{bottom:108.460142px;}
.y12a_c01368{bottom:109.300602px;}
.y129_c01368{bottom:109.891500px;}
.y128_c01368{bottom:143.274000px;}
.y127_c01368{bottom:161.178000px;}
.y126_c01368{bottom:186.894000px;}
.y125_c01368{bottom:188.160000px;}
.y124_c01368{bottom:188.935500px;}
.y123_c01368{bottom:189.444000px;}
.y122_c01368{bottom:191.451000px;}
.y121_c01368{bottom:192.207000px;}
.y120_c01368{bottom:194.220000px;}
.y11f_c01368{bottom:196.741500px;}
.y11e_c01368{bottom:198.978000px;}
.y11d_c01368{bottom:199.990500px;}
.y11c_c01368{bottom:200.995500px;}
.y11b_c01368{bottom:201.738000px;}
.y11a_c01368{bottom:202.234500px;}
.y119_c01368{bottom:225.141000px;}
.y118_c01368{bottom:226.354500px;}
.y117_c01368{bottom:226.920000px;}
.y116_c01368{bottom:227.943000px;}
.y115_c01368{bottom:228.469500px;}
.y114_c01368{bottom:229.147500px;}
.y113_c01368{bottom:231.429000px;}
.y112_c01368{bottom:232.129500px;}
.y111_c01368{bottom:233.857500px;}
.y110_c01368{bottom:235.096500px;}
.y10f_c01368{bottom:235.441500px;}
.y10e_c01368{bottom:270.333000px;}
.y10d_c01368{bottom:293.344020px;}
.y10c_c01368{bottom:294.050190px;}
.y10b_c01368{bottom:295.784100px;}
.y10a_c01368{bottom:297.534120px;}
.y109_c01368{bottom:298.182000px;}
.y108_c01368{bottom:300.131880px;}
.y107_c01368{bottom:300.822840px;}
.y106_c01368{bottom:302.335500px;}
.y105_c01368{bottom:302.994720px;}
.y104_c01368{bottom:304.960350px;}
.y103_c01368{bottom:305.613930px;}
.y102_c01368{bottom:306.033210px;}
.y101_c01368{bottom:306.726000px;}
.y100_c01368{bottom:328.654956px;}
.yff_c01368{bottom:329.959854px;}
.yfe_c01368{bottom:331.175694px;}
.yfd_c01368{bottom:332.137188px;}
.yfc_c01368{bottom:332.725284px;}
.yfb_c01368{bottom:333.327888px;}
.yfa_c01368{bottom:334.874148px;}
.yf9_c01368{bottom:335.481438px;}
.yf8_c01368{bottom:336.482382px;}
.yf7_c01368{bottom:337.259058px;}
.yf6_c01368{bottom:338.256114px;}
.yf5_c01368{bottom:339.381498px;}
.yf4_c01368{bottom:341.222310px;}
.yf3_c01368{bottom:341.795382px;}
.yf2_c01368{bottom:367.132332px;}
.yf1_c01368{bottom:367.941552px;}
.yf0_c01368{bottom:369.809946px;}
.yef_c01368{bottom:371.047242px;}
.yee_c01368{bottom:371.698152px;}
.yed_c01368{bottom:373.351434px;}
.yec_c01368{bottom:373.987584px;}
.yeb_c01368{bottom:375.440610px;}
.yea_c01368{bottom:375.840282px;}
.ye9_c01368{bottom:377.303856px;}
.ye8_c01368{bottom:377.708328px;}
.ye7_c01368{bottom:378.530016px;}
.ye6_c01368{bottom:396.919008px;}
.ye5_c01368{bottom:399.080328px;}
.ye4_c01368{bottom:399.701004px;}
.ye3_c01368{bottom:401.846196px;}
.ye2_c01368{bottom:402.760578px;}
.ye1_c01368{bottom:403.371846px;}
.ye0_c01368{bottom:404.941218px;}
.ydf_c01368{bottom:407.329254px;}
.yde_c01368{bottom:408.293364px;}
.ydd_c01368{bottom:410.720040px;}
.ydc_c01368{bottom:412.300500px;}
.ydb_c01368{bottom:436.808676px;}
.yda_c01368{bottom:440.843844px;}
.yd9_c01368{bottom:441.548820px;}
.yd8_c01368{bottom:442.939812px;}
.yd7_c01368{bottom:444.508884px;}
.yd6_c01368{bottom:445.040388px;}
.yd5_c01368{bottom:445.739436px;}
.yd4_c01368{bottom:447.310500px;}
.yd3_c01368{bottom:471.261030px;}
.yd2_c01368{bottom:473.175960px;}
.yd1_c01368{bottom:473.892150px;}
.yd0_c01368{bottom:474.875070px;}
.ycf_c01368{bottom:475.822920px;}
.yce_c01368{bottom:478.009170px;}
.ycd_c01368{bottom:478.952100px;}
.ycc_c01368{bottom:480.372090px;}
.ycb_c01368{bottom:481.121850px;}
.yca_c01368{bottom:483.301770px;}
.yc9_c01368{bottom:485.211720px;}
.yc8_c01368{bottom:485.926500px;}
.yc7_c01368{bottom:509.866290px;}
.yc6_c01368{bottom:511.277430px;}
.yc5_c01368{bottom:511.702980px;}
.yc4_c01368{bottom:512.412720px;}
.yc3_c01368{bottom:513.830790px;}
.yc2_c01368{bottom:515.407110px;}
.yc1_c01368{bottom:515.962410px;}
.yc0_c01368{bottom:517.081830px;}
.ybf_c01368{bottom:517.790610px;}
.ybe_c01368{bottom:544.903620px;}
.ybd_c01368{bottom:547.322310px;}
.ybc_c01368{bottom:548.056530px;}
.ybb_c01368{bottom:549.575520px;}
.yba_c01368{bottom:550.311570px;}
.yb9_c01368{bottom:551.054970px;}
.yb8_c01368{bottom:551.614590px;}
.yb7_c01368{bottom:552.173550px;}
.yb6_c01368{bottom:553.095660px;}
.yb5_c01368{bottom:554.749740px;}
.yb4_c01368{bottom:555.327750px;}
.yb3_c01368{bottom:579.590520px;}
.yb2_c01368{bottom:580.216290px;}
.yb1_c01368{bottom:581.053140px;}
.yb0_c01368{bottom:581.864490px;}
.yaf_c01368{bottom:583.773180px;}
.yae_c01368{bottom:584.379660px;}
.yad_c01368{bottom:585.420570px;}
.yac_c01368{bottom:585.813870px;}
.yab_c01368{bottom:586.630770px;}
.yaa_c01368{bottom:587.661270px;}
.ya9_c01368{bottom:589.971180px;}
.ya8_c01368{bottom:590.976570px;}
.ya7_c01368{bottom:614.535450px;}
.ya6_c01368{bottom:615.177630px;}
.ya5_c01368{bottom:616.785840px;}
.ya4_c01368{bottom:617.407920px;}
.ya3_c01368{bottom:617.986500px;}
.ya2_c01368{bottom:619.950720px;}
.ya1_c01368{bottom:620.726790px;}
.ya0_c01368{bottom:622.905930px;}
.y9f_c01368{bottom:623.702400px;}
.y9e_c01368{bottom:624.291150px;}
.y9d_c01368{bottom:625.267200px;}
.y9c_c01368{bottom:626.624730px;}
.y9b_c01368{bottom:650.102430px;}
.y9a_c01368{bottom:650.872980px;}
.y99_c01368{bottom:651.458760px;}
.y98_c01368{bottom:653.282220px;}
.y97_c01368{bottom:654.782760px;}
.y96_c01368{bottom:655.370370px;}
.y95_c01368{bottom:655.916130px;}
.y94_c01368{bottom:656.967300px;}
.y93_c01368{bottom:657.573480px;}
.y92_c01368{bottom:658.123890px;}
.y91_c01368{bottom:659.610720px;}
.y90_c01368{bottom:660.171330px;}
.y8f_c01368{bottom:661.464630px;}
.y8e_c01368{bottom:684.760110px;}
.y8d_c01368{bottom:685.391280px;}
.y8c_c01368{bottom:686.878200px;}
.y8b_c01368{bottom:687.495390px;}
.y8a_c01368{bottom:689.347560px;}
.y89_c01368{bottom:690.819270px;}
.y88_c01368{bottom:691.444950px;}
.y87_c01368{bottom:693.312720px;}
.y86_c01368{bottom:694.117140px;}
.y85_c01368{bottom:695.985120px;}
.y84_c01368{bottom:696.848070px;}
.y83_c01368{bottom:697.668810px;}
.y82_c01368{bottom:720.585720px;}
.y81_c01368{bottom:720.996390px;}
.y80_c01368{bottom:722.400630px;}
.y7f_c01368{bottom:722.993820px;}
.y7e_c01368{bottom:724.753890px;}
.y7d_c01368{bottom:725.906070px;}
.y7c_c01368{bottom:726.696960px;}
.y7b_c01368{bottom:727.708830px;}
.y7a_c01368{bottom:728.120280px;}
.y79_c01368{bottom:729.871200px;}
.y78_c01368{bottom:731.464680px;}
.y77_c01368{bottom:732.233640px;}
.y76_c01368{bottom:753.228690px;}
.y75_c01368{bottom:754.424160px;}
.y74_c01368{bottom:755.017140px;}
.y73_c01368{bottom:755.415600px;}
.y72_c01368{bottom:757.180830px;}
.y71_c01368{bottom:758.949900px;}
.y70_c01368{bottom:759.557490px;}
.y6f_c01368{bottom:761.317950px;}
.y6e_c01368{bottom:762.299370px;}
.y6d_c01368{bottom:763.484940px;}
.y6c_c01368{bottom:765.429060px;}
.y6b_c01368{bottom:792.876180px;}
.y6a_c01368{bottom:793.422780px;}
.y69_c01368{bottom:794.707950px;}
.y68_c01368{bottom:795.257880px;}
.y67_c01368{bottom:796.024740px;}
.y66_c01368{bottom:796.576530px;}
.y65_c01368{bottom:797.507460px;}
.y64_c01368{bottom:798.076830px;}
.y63_c01368{bottom:798.783060px;}
.y62_c01368{bottom:799.186380px;}
.y61_c01368{bottom:800.678760px;}
.y60_c01368{bottom:801.973410px;}
.y5f_c01368{bottom:802.692390px;}
.y5e_c01368{bottom:827.533560px;}
.y5d_c01368{bottom:828.514770px;}
.y5c_c01368{bottom:829.092000px;}
.y5b_c01368{bottom:829.889340px;}
.y5a_c01368{bottom:830.890650px;}
.y59_c01368{bottom:831.489120px;}
.y58_c01368{bottom:832.651590px;}
.y57_c01368{bottom:833.648280px;}
.y56_c01368{bottom:834.240690px;}
.y55_c01368{bottom:835.623270px;}
.y54_c01368{bottom:836.205510px;}
.y53_c01368{bottom:836.793390px;}
.y52_c01368{bottom:837.380880px;}
.y51_c01368{bottom:839.149950px;}
.y50_c01368{bottom:863.607600px;}
.y4f_c01368{bottom:863.781870px;}
.y4e_c01368{bottom:864.700710px;}
.y4d_c01368{bottom:865.128090px;}
.y4c_c01368{bottom:866.550270px;}
.y4b_c01368{bottom:867.266730px;}
.y4a_c01368{bottom:868.684650px;}
.y49_c01368{bottom:869.110320px;}
.y48_c01368{bottom:869.401770px;}
.y47_c01368{bottom:870.248430px;}
.y46_c01368{bottom:870.679980px;}
.y45_c01368{bottom:871.537080px;}
.y44_c01368{bottom:872.365830px;}
.y43_c01368{bottom:898.068090px;}
.y42_c01368{bottom:900.260580px;}
.y41_c01368{bottom:900.919680px;}
.y40_c01368{bottom:902.858310px;}
.y3f_c01368{bottom:903.539010px;}
.y3e_c01368{bottom:904.607880px;}
.y3d_c01368{bottom:906.368790px;}
.y3c_c01368{bottom:907.459590px;}
.y3b_c01368{bottom:908.556000px;}
.y3a_c01368{bottom:938.293770px;}
.y39_c01368{bottom:939.179460px;}
.y38_c01368{bottom:939.536580px;}
.y37_c01368{bottom:940.382850px;}
.y36_c01368{bottom:940.968090px;}
.y35_c01368{bottom:941.571210px;}
.y34_c01368{bottom:941.938830px;}
.y33_c01368{bottom:942.274350px;}
.y32_c01368{bottom:968.032290px;}
.y31_c01368{bottom:968.615190px;}
.y30_c01368{bottom:969.203070px;}
.y2f_c01368{bottom:969.794700px;}
.y2e_c01368{bottom:971.565420px;}
.y2d_c01368{bottom:972.751110px;}
.y2c_c01368{bottom:974.150430px;}
.y2b_c01368{bottom:975.316350px;}
.y2a_c01368{bottom:976.488780px;}
.y29_c01368{bottom:977.102040px;}
.y28_c01368{bottom:978.074250px;}
.y27_c01368{bottom:978.769530px;}
.y26_c01368{bottom:979.814850px;}
.y25_c01368{bottom:1003.069080px;}
.y24_c01368{bottom:1004.726430px;}
.y23_c01368{bottom:1005.305100px;}
.y22_c01368{bottom:1006.033740px;}
.y21_c01368{bottom:1007.714310px;}
.y20_c01368{bottom:1009.591530px;}
.y1f_c01368{bottom:1010.344530px;}
.y1e_c01368{bottom:1010.885730px;}
.y1d_c01368{bottom:1012.378020px;}
.y1c_c01368{bottom:1012.937730px;}
.y1b_c01368{bottom:1014.379680px;}
.y1a_c01368{bottom:1038.830940px;}
.y19_c01368{bottom:1039.433130px;}
.y18_c01368{bottom:1041.018030px;}
.y17_c01368{bottom:1042.408650px;}
.y16_c01368{bottom:1043.589210px;}
.y15_c01368{bottom:1044.174120px;}
.y14_c01368{bottom:1046.720340px;}
.y13_c01368{bottom:1047.328590px;}
.y12_c01368{bottom:1048.874790px;}
.y11_c01368{bottom:1049.662650px;}
.y10_c01368{bottom:1050.838650px;}
.yf_c01368{bottom:1074.155880px;}
.ye_c01368{bottom:1074.997140px;}
.yd_c01368{bottom:1075.684410px;}
.yc_c01368{bottom:1077.861030px;}
.yb_c01368{bottom:1078.984650px;}
.ya_c01368{bottom:1080.502170px;}
.y9_c01368{bottom:1082.241390px;}
.y8_c01368{bottom:1082.948850px;}
.y7_c01368{bottom:1084.866000px;}
.y6_c01368{bottom:1147.370004px;}
.y5_c01368{bottom:1149.026544px;}
.y4_c01368{bottom:1149.590124px;}
.y3_c01368{bottom:1150.886844px;}
.y2_c01368{bottom:1152.992844px;}
.y1_c01368{bottom:1155.339000px;}
.h10_c01368{height:24.000000px;}
.h6_c01368{height:72.014399px;}
.h2_c01368{height:72.020733px;}
.hb_c01368{height:72.028218px;}
.hd_c01368{height:78.000000px;}
.h3_c01368{height:78.015598px;}
.he_c01368{height:84.000000px;}
.h9_c01368{height:84.010751px;}
.h7_c01368{height:84.016798px;}
.h5_c01368{height:90.017998px;}
.hc_c01368{height:96.019198px;}
.ha_c01368{height:96.037625px;}
.hf_c01368{height:102.000000px;}
.h8_c01368{height:102.020398px;}
.h12_c01368{height:114.006897px;}
.h11_c01368{height:120.007260px;}
.h4_c01368{height:132.026397px;}
.h1_c01368{height:1250.250000px;}
.h0_c01368{height:1250.370000px;}
.w0_c01368{width:878.850000px;}
.w1_c01368{width:879.000000px;}
.x0_c01368{left:0.000000px;}
.xd7_c01368{left:122.580000px;}
.xb9_c01368{left:124.729500px;}
.xb3_c01368{left:126.097542px;}
.xa2_c01368{left:127.869000px;}
.x8e_c01368{left:129.074280px;}
.x97_c01368{left:130.481400px;}
.x61_c01368{left:131.992650px;}
.x45_c01368{left:134.165490px;}
.x3a_c01368{left:135.586110px;}
.xf_c01368{left:138.512010px;}
.xca_c01368{left:146.671500px;}
.xb4_c01368{left:157.930446px;}
.xba_c01368{left:159.369000px;}
.x9d_c01368{left:160.761690px;}
.xd6_c01368{left:161.998500px;}
.x8f_c01368{left:163.076820px;}
.x2c_c01368{left:168.287790px;}
.xad_c01368{left:170.692752px;}
.x62_c01368{left:174.717360px;}
.x4f_c01368{left:176.591220px;}
.xcf_c01368{left:178.953000px;}
.xbb_c01368{left:180.333000px;}
.x85_c01368{left:184.642590px;}
.xae_c01368{left:191.947086px;}
.x20_c01368{left:195.750090px;}
.x3b_c01368{left:199.307520px;}
.x2d_c01368{left:201.749820px;}
.x10_c01368{left:203.839620px;}
.x7c_c01368{left:206.606010px;}
.x73_c01368{left:207.647730px;}
.xbc_c01368{left:213.012000px;}
.x6b_c01368{left:219.779070px;}
.xd0_c01368{left:222.670500px;}
.x18_c01368{left:223.834410px;}
.xa3_c01368{left:226.060500px;}
.x46_c01368{left:232.447920px;}
.x21_c01368{left:234.340620px;}
.x58_c01368{left:241.621260px;}
.x31_c01368{left:244.069500px;}
.x7_c01368{left:247.843500px;}
.x50_c01368{left:252.728280px;}
.x19_c01368{left:256.771890px;}
.x7d_c01368{left:260.810670px;}
.x63_c01368{left:263.244900px;}
.x3c_c01368{left:265.196730px;}
.xd1_c01368{left:266.694000px;}
.xa4_c01368{left:269.751000px;}
.x98_c01368{left:271.111080px;}
.x22_c01368{left:288.353280px;}
.xaf_c01368{left:290.016282px;}
.xa5_c01368{left:291.507000px;}
.x7e_c01368{left:293.549490px;}
.x47_c01368{left:297.819060px;}
.x32_c01368{left:298.890000px;}
.x1_c01368{left:302.557500px;}
.x86_c01368{left:306.215520px;}
.x59_c01368{left:307.502400px;}
.x2e_c01368{left:309.787260px;}
.xbd_c01368{left:311.293500px;}
.x90_c01368{left:314.620410px;}
.x6c_c01368{left:318.130050px;}
.x23_c01368{left:322.392630px;}
.x74_c01368{left:328.101960px;}
.x48_c01368{left:330.157350px;}
.xcb_c01368{left:332.122500px;}
.x11_c01368{left:333.447780px;}
.x7f_c01368{left:337.799760px;}
.x51_c01368{left:340.552560px;}
.x8_c01368{left:343.701000px;}
.x91_c01368{left:347.520390px;}
.x33_c01368{left:353.430000px;}
.x64_c01368{left:360.544800px;}
.x5a_c01368{left:362.050590px;}
.x3d_c01368{left:363.546000px;}
.x12_c01368{left:367.236630px;}
.x1a_c01368{left:376.453590px;}
.x9_c01368{left:379.074000px;}
.x92_c01368{left:380.453370px;}
.x65_c01368{left:383.443230px;}
.x3e_c01368{left:385.921620px;}
.x24_c01368{left:387.541740px;}
.x75_c01368{left:396.135540px;}
.x2_c01368{left:400.314000px;}
.x87_c01368{left:403.462470px;}
.x52_c01368{left:405.858990px;}
.x49_c01368{left:406.939410px;}
.xd8_c01368{left:408.354000px;}
.xa6_c01368{left:412.606500px;}
.x2f_c01368{left:419.176440px;}
.x1b_c01368{left:420.706230px;}
.x88_c01368{left:424.177890px;}
.xd9_c01368{left:428.059500px;}
.x99_c01368{left:435.090030px;}
.x4a_c01368{left:439.861230px;}
.x34_c01368{left:441.475500px;}
.xc4_c01368{left:443.070000px;}
.x9e_c01368{left:445.306320px;}
.xdb_c01368{left:449.060862px;}
.x25_c01368{left:452.290320px;}
.xbe_c01368{left:454.435500px;}
.x6d_c01368{left:458.792370px;}
.x5b_c01368{left:459.827490px;}
.xa_c01368{left:466.035000px;}
.x93_c01368{left:467.481090px;}
.xd2_c01368{left:473.529000px;}
.xb5_c01368{left:476.943738px;}
.x89_c01368{left:478.999500px;}
.x66_c01368{left:483.635250px;}
.xb0_c01368{left:486.939342px;}
.x3_c01368{left:488.064000px;}
.x76_c01368{left:490.087680px;}
.x6e_c01368{left:491.727030px;}
.x5c_c01368{left:493.583340px;}
.x35_c01368{left:494.919000px;}
.xc5_c01368{left:496.800000px;}
.xa7_c01368{left:497.893500px;}
.x30_c01368{left:499.625400px;}
.x80_c01368{left:501.991830px;}
.x13_c01368{left:508.728300px;}
.x8a_c01368{left:510.899130px;}
.xda_c01368{left:516.507000px;}
.xcc_c01368{left:518.496000px;}
.xb1_c01368{left:521.230494px;}
.x77_c01368{left:524.645250px;}
.x53_c01368{left:526.620750px;}
.x3f_c01368{left:527.695950px;}
.x36_c01368{left:528.954000px;}
.x26_c01368{left:530.059440px;}
.x1c_c01368{left:531.148860px;}
.x4_c01368{left:542.094000px;}
.x9a_c01368{left:544.183800px;}
.x67_c01368{left:547.621800px;}
.xbf_c01368{left:551.929500px;}
.xa8_c01368{left:553.942500px;}
.x94_c01368{left:556.860960px;}
.x4b_c01368{left:559.824030px;}
.xcd_c01368{left:560.896500px;}
.x5_c01368{left:565.576500px;}
.x6f_c01368{left:569.214090px;}
.x54_c01368{left:571.716450px;}
.xa9_c01368{left:575.773500px;}
.x40_c01368{left:582.801660px;}
.xc0_c01368{left:584.323500px;}
.xb2_c01368{left:586.328874px;}
.x9f_c01368{left:587.584650px;}
.x5d_c01368{left:591.865770px;}
.x4c_c01368{left:593.048850px;}
.x27_c01368{left:595.946580px;}
.xb_c01368{left:598.092000px;}
.x95_c01368{left:600.024540px;}
.x55_c01368{left:604.089900px;}
.x14_c01368{left:606.755700px;}
.xaa_c01368{left:608.430000px;}
.x81_c01368{left:611.082180px;}
.x78_c01368{left:612.877530px;}
.x37_c01368{left:625.885500px;}
.xdc_c01368{left:627.157025px;}
.x1d_c01368{left:630.033300px;}
.x9b_c01368{left:631.410480px;}
.x6_c01368{left:634.599000px;}
.xc6_c01368{left:638.820000px;}
.x82_c01368{left:643.237470px;}
.x68_c01368{left:645.379200px;}
.x4d_c01368{left:648.666570px;}
.x8b_c01368{left:654.028980px;}
.xce_c01368{left:657.775500px;}
.x38_c01368{left:658.840500px;}
.xb6_c01368{left:662.808276px;}
.x70_c01368{left:666.699540px;}
.xc1_c01368{left:671.824500px;}
.x1e_c01368{left:672.917880px;}
.xa0_c01368{left:675.344640px;}
.x69_c01368{left:678.340020px;}
.x56_c01368{left:679.677930px;}
.xd3_c01368{left:681.204000px;}
.x15_c01368{left:684.014790px;}
.xab_c01368{left:685.044000px;}
.x5e_c01368{left:689.956200px;}
.x41_c01368{left:692.175960px;}
.x28_c01368{left:694.311510px;}
.x8c_c01368{left:698.047350px;}
.x71_c01368{left:699.209700px;}
.xd4_c01368{left:703.344000px;}
.xc_c01368{left:706.923000px;}
.xa1_c01368{left:707.927850px;}
.x57_c01368{left:711.809850px;}
.xb7_c01368{left:716.233728px;}
.x79_c01368{left:720.106950px;}
.x42_c01368{left:725.099580px;}
.x29_c01368{left:727.194330px;}
.x8d_c01368{left:730.986510px;}
.xd5_c01368{left:737.032500px;}
.x9c_c01368{left:739.932660px;}
.xd_c01368{left:741.286500px;}
.x96_c01368{left:742.342590px;}
.x5f_c01368{left:745.005390px;}
.xc7_c01368{left:748.980000px;}
.x7a_c01368{left:754.573020px;}
.x6a_c01368{left:756.355140px;}
.xc2_c01368{left:758.520000px;}
.x2a_c01368{left:759.889650px;}
.x83_c01368{left:767.131920px;}
.x39_c01368{left:768.465000px;}
.x16_c01368{left:772.038300px;}
.x72_c01368{left:777.457260px;}
.x4e_c01368{left:779.585820px;}
.xe_c01368{left:783.349500px;}
.xac_c01368{left:784.401000px;}
.x2b_c01368{left:792.260940px;}
.xc3_c01368{left:793.828500px;}
.x43_c01368{left:795.726450px;}
.x7b_c01368{left:799.928250px;}
.x84_c01368{left:802.767330px;}
.x1f_c01368{left:804.451770px;}
.x17_c01368{left:805.524150px;}
.x44_c01368{left:809.166840px;}
.x60_c01368{left:811.456560px;}
.xc8_c01368{left:848.340000px;}
.xb8_c01368{left:856.281414px;}
.xc9_c01368{left:871.290000px;}
@media print{
.v0_c01368{vertical-align:0.000000pt;}
.ls0_c01368{letter-spacing:0.000000pt;}
.ws0_c01368{word-spacing:0.000000pt;}
.fse_c01368{font-size:21.333333pt;}
.fs4_c01368{font-size:64.012799pt;}
.fs0_c01368{font-size:64.018429pt;}
.fs9_c01368{font-size:64.025083pt;}
.fsb_c01368{font-size:69.333333pt;}
.fs1_c01368{font-size:69.347199pt;}
.fsc_c01368{font-size:74.666667pt;}
.fs7_c01368{font-size:74.676223pt;}
.fs5_c01368{font-size:74.681599pt;}
.fs3_c01368{font-size:80.015998pt;}
.fsa_c01368{font-size:85.350398pt;}
.fs8_c01368{font-size:85.366777pt;}
.fsd_c01368{font-size:90.666667pt;}
.fs6_c01368{font-size:90.684798pt;}
.fs10_c01368{font-size:101.339464pt;}
.fsf_c01368{font-size:106.673120pt;}
.fs2_c01368{font-size:117.356798pt;}
.y0_c01368{bottom:0.000000pt;}
.y13c_c01368{bottom:60.953960pt;}
.y13b_c01368{bottom:61.553696pt;}
.y13a_c01368{bottom:62.292244pt;}
.y139_c01368{bottom:63.328755pt;}
.y138_c01368{bottom:63.617303pt;}
.y137_c01368{bottom:64.201012pt;}
.y136_c01368{bottom:64.505103pt;}
.y135_c01368{bottom:64.918665pt;}
.y134_c01368{bottom:65.952565pt;}
.y133_c01368{bottom:67.356715pt;}
.y132_c01368{bottom:67.681421pt;}
.y131_c01368{bottom:93.295765pt;}
.y130_c01368{bottom:93.835719pt;}
.y12f_c01368{bottom:94.700539pt;}
.y12e_c01368{bottom:94.893215pt;}
.y12d_c01368{bottom:95.342132pt;}
.y12c_c01368{bottom:95.645805pt;}
.y12b_c01368{bottom:96.409015pt;}
.y12a_c01368{bottom:97.156091pt;}
.y129_c01368{bottom:97.681333pt;}
.y128_c01368{bottom:127.354667pt;}
.y127_c01368{bottom:143.269333pt;}
.y126_c01368{bottom:166.128000pt;}
.y125_c01368{bottom:167.253333pt;}
.y124_c01368{bottom:167.942667pt;}
.y123_c01368{bottom:168.394667pt;}
.y122_c01368{bottom:170.178667pt;}
.y121_c01368{bottom:170.850667pt;}
.y120_c01368{bottom:172.640000pt;}
.y11f_c01368{bottom:174.881333pt;}
.y11e_c01368{bottom:176.869333pt;}
.y11d_c01368{bottom:177.769333pt;}
.y11c_c01368{bottom:178.662667pt;}
.y11b_c01368{bottom:179.322667pt;}
.y11a_c01368{bottom:179.764000pt;}
.y119_c01368{bottom:200.125333pt;}
.y118_c01368{bottom:201.204000pt;}
.y117_c01368{bottom:201.706667pt;}
.y116_c01368{bottom:202.616000pt;}
.y115_c01368{bottom:203.084000pt;}
.y114_c01368{bottom:203.686667pt;}
.y113_c01368{bottom:205.714667pt;}
.y112_c01368{bottom:206.337333pt;}
.y111_c01368{bottom:207.873333pt;}
.y110_c01368{bottom:208.974667pt;}
.y10f_c01368{bottom:209.281333pt;}
.y10e_c01368{bottom:240.296000pt;}
.y10d_c01368{bottom:260.750240pt;}
.y10c_c01368{bottom:261.377947pt;}
.y10b_c01368{bottom:262.919200pt;}
.y10a_c01368{bottom:264.474773pt;}
.y109_c01368{bottom:265.050667pt;}
.y108_c01368{bottom:266.783893pt;}
.y107_c01368{bottom:267.398080pt;}
.y106_c01368{bottom:268.742667pt;}
.y105_c01368{bottom:269.328640pt;}
.y104_c01368{bottom:271.075867pt;}
.y103_c01368{bottom:271.656827pt;}
.y102_c01368{bottom:272.029520pt;}
.y101_c01368{bottom:272.645333pt;}
.y100_c01368{bottom:292.137739pt;}
.yff_c01368{bottom:293.297648pt;}
.yfe_c01368{bottom:294.378395pt;}
.yfd_c01368{bottom:295.233056pt;}
.yfc_c01368{bottom:295.755808pt;}
.yfb_c01368{bottom:296.291456pt;}
.yfa_c01368{bottom:297.665909pt;}
.yf9_c01368{bottom:298.205723pt;}
.yf8_c01368{bottom:299.095451pt;}
.yf7_c01368{bottom:299.785829pt;}
.yf6_c01368{bottom:300.672101pt;}
.yf5_c01368{bottom:301.672443pt;}
.yf4_c01368{bottom:303.308720pt;}
.yf3_c01368{bottom:303.818117pt;}
.yf2_c01368{bottom:326.339851pt;}
.yf1_c01368{bottom:327.059157pt;}
.yf0_c01368{bottom:328.719952pt;}
.yef_c01368{bottom:329.819771pt;}
.yee_c01368{bottom:330.398357pt;}
.yed_c01368{bottom:331.867941pt;}
.yec_c01368{bottom:332.433408pt;}
.yeb_c01368{bottom:333.724987pt;}
.yea_c01368{bottom:334.080251pt;}
.ye9_c01368{bottom:335.381205pt;}
.ye8_c01368{bottom:335.740736pt;}
.ye7_c01368{bottom:336.471125pt;}
.ye6_c01368{bottom:352.816896pt;}
.ye5_c01368{bottom:354.738069pt;}
.ye4_c01368{bottom:355.289781pt;}
.ye3_c01368{bottom:357.196619pt;}
.ye2_c01368{bottom:358.009403pt;}
.ye1_c01368{bottom:358.552752pt;}
.ye0_c01368{bottom:359.947749pt;}
.ydf_c01368{bottom:362.070448pt;}
.yde_c01368{bottom:362.927435pt;}
.ydd_c01368{bottom:365.084480pt;}
.ydc_c01368{bottom:366.489333pt;}
.ydb_c01368{bottom:388.274379pt;}
.yda_c01368{bottom:391.861195pt;}
.yd9_c01368{bottom:392.487840pt;}
.yd8_c01368{bottom:393.724277pt;}
.yd7_c01368{bottom:395.119008pt;}
.yd6_c01368{bottom:395.591456pt;}
.yd5_c01368{bottom:396.212832pt;}
.yd4_c01368{bottom:397.609333pt;}
.yd3_c01368{bottom:418.898693pt;}
.yd2_c01368{bottom:420.600853pt;}
.yd1_c01368{bottom:421.237467pt;}
.yd0_c01368{bottom:422.111173pt;}
.ycf_c01368{bottom:422.953707pt;}
.yce_c01368{bottom:424.897040pt;}
.ycd_c01368{bottom:425.735200pt;}
.ycc_c01368{bottom:426.997413pt;}
.ycb_c01368{bottom:427.663867pt;}
.yca_c01368{bottom:429.601573pt;}
.yc9_c01368{bottom:431.299307pt;}
.yc8_c01368{bottom:431.934667pt;}
.yc7_c01368{bottom:453.214480pt;}
.yc6_c01368{bottom:454.468827pt;}
.yc5_c01368{bottom:454.847093pt;}
.yc4_c01368{bottom:455.477973pt;}
.yc3_c01368{bottom:456.738480pt;}
.yc2_c01368{bottom:458.139653pt;}
.yc1_c01368{bottom:458.633253pt;}
.yc0_c01368{bottom:459.628293pt;}
.ybf_c01368{bottom:460.258320pt;}
.ybe_c01368{bottom:484.358773pt;}
.ybd_c01368{bottom:486.508720pt;}
.ybc_c01368{bottom:487.161360pt;}
.ybb_c01368{bottom:488.511573pt;}
.yba_c01368{bottom:489.165840pt;}
.yb9_c01368{bottom:489.826640pt;}
.yb8_c01368{bottom:490.324080pt;}
.yb7_c01368{bottom:490.820933pt;}
.yb6_c01368{bottom:491.640587pt;}
.yb5_c01368{bottom:493.110880pt;}
.yb4_c01368{bottom:493.624667pt;}
.yb3_c01368{bottom:515.191573pt;}
.yb2_c01368{bottom:515.747813pt;}
.yb1_c01368{bottom:516.491680pt;}
.yb0_c01368{bottom:517.212880pt;}
.yaf_c01368{bottom:518.909493pt;}
.yae_c01368{bottom:519.448587pt;}
.yad_c01368{bottom:520.373840pt;}
.yac_c01368{bottom:520.723440pt;}
.yab_c01368{bottom:521.449573pt;}
.yaa_c01368{bottom:522.365573pt;}
.ya9_c01368{bottom:524.418827pt;}
.ya8_c01368{bottom:525.312507pt;}
.ya7_c01368{bottom:546.253733pt;}
.ya6_c01368{bottom:546.824560pt;}
.ya5_c01368{bottom:548.254080pt;}
.ya4_c01368{bottom:548.807040pt;}
.ya3_c01368{bottom:549.321333pt;}
.ya2_c01368{bottom:551.067307pt;}
.ya1_c01368{bottom:551.757147pt;}
.ya0_c01368{bottom:553.694160pt;}
.y9f_c01368{bottom:554.402133pt;}
.y9e_c01368{bottom:554.925467pt;}
.y9d_c01368{bottom:555.793067pt;}
.y9c_c01368{bottom:556.999760pt;}
.y9b_c01368{bottom:577.868827pt;}
.y9a_c01368{bottom:578.553760pt;}
.y99_c01368{bottom:579.074453pt;}
.y98_c01368{bottom:580.695307pt;}
.y97_c01368{bottom:582.029120pt;}
.y96_c01368{bottom:582.551440pt;}
.y95_c01368{bottom:583.036560pt;}
.y94_c01368{bottom:583.970933pt;}
.y93_c01368{bottom:584.509760pt;}
.y92_c01368{bottom:584.999013pt;}
.y91_c01368{bottom:586.320640pt;}
.y90_c01368{bottom:586.818960pt;}
.y8f_c01368{bottom:587.968560pt;}
.y8e_c01368{bottom:608.675653pt;}
.y8d_c01368{bottom:609.236693pt;}
.y8c_c01368{bottom:610.558400pt;}
.y8b_c01368{bottom:611.107013pt;}
.y8a_c01368{bottom:612.753387pt;}
.y89_c01368{bottom:614.061573pt;}
.y88_c01368{bottom:614.617733pt;}
.y87_c01368{bottom:616.277973pt;}
.y86_c01368{bottom:616.993013pt;}
.y85_c01368{bottom:618.653440pt;}
.y84_c01368{bottom:619.420507pt;}
.y83_c01368{bottom:620.150053pt;}
.y82_c01368{bottom:640.520640pt;}
.y81_c01368{bottom:640.885680pt;}
.y80_c01368{bottom:642.133893pt;}
.y7f_c01368{bottom:642.661173pt;}
.y7e_c01368{bottom:644.225680pt;}
.y7d_c01368{bottom:645.249840pt;}
.y7c_c01368{bottom:645.952853pt;}
.y7b_c01368{bottom:646.852293pt;}
.y7a_c01368{bottom:647.218027pt;}
.y79_c01368{bottom:648.774400pt;}
.y78_c01368{bottom:650.190827pt;}
.y77_c01368{bottom:650.874347pt;}
.y76_c01368{bottom:669.536613pt;}
.y75_c01368{bottom:670.599253pt;}
.y74_c01368{bottom:671.126347pt;}
.y73_c01368{bottom:671.480533pt;}
.y72_c01368{bottom:673.049627pt;}
.y71_c01368{bottom:674.622133pt;}
.y70_c01368{bottom:675.162213pt;}
.y6f_c01368{bottom:676.727067pt;}
.y6e_c01368{bottom:677.599440pt;}
.y6d_c01368{bottom:678.653280pt;}
.y6c_c01368{bottom:680.381387pt;}
.y6b_c01368{bottom:704.778827pt;}
.y6a_c01368{bottom:705.264693pt;}
.y69_c01368{bottom:706.407067pt;}
.y68_c01368{bottom:706.895893pt;}
.y67_c01368{bottom:707.577547pt;}
.y66_c01368{bottom:708.068027pt;}
.y65_c01368{bottom:708.895520pt;}
.y64_c01368{bottom:709.401627pt;}
.y63_c01368{bottom:710.029387pt;}
.y62_c01368{bottom:710.387893pt;}
.y61_c01368{bottom:711.714453pt;}
.y60_c01368{bottom:712.865253pt;}
.y5f_c01368{bottom:713.504347pt;}
.y5e_c01368{bottom:735.585387pt;}
.y5d_c01368{bottom:736.457573pt;}
.y5c_c01368{bottom:736.970667pt;}
.y5b_c01368{bottom:737.679413pt;}
.y5a_c01368{bottom:738.569467pt;}
.y59_c01368{bottom:739.101440pt;}
.y58_c01368{bottom:740.134747pt;}
.y57_c01368{bottom:741.020693pt;}
.y56_c01368{bottom:741.547280pt;}
.y55_c01368{bottom:742.776240pt;}
.y54_c01368{bottom:743.293787pt;}
.y53_c01368{bottom:743.816347pt;}
.y52_c01368{bottom:744.338560pt;}
.y51_c01368{bottom:745.911067pt;}
.y50_c01368{bottom:767.651200pt;}
.y4f_c01368{bottom:767.806107pt;}
.y4e_c01368{bottom:768.622853pt;}
.y4d_c01368{bottom:769.002747pt;}
.y4c_c01368{bottom:770.266907pt;}
.y4b_c01368{bottom:770.903760pt;}
.y4a_c01368{bottom:772.164133pt;}
.y49_c01368{bottom:772.542507pt;}
.y48_c01368{bottom:772.801573pt;}
.y47_c01368{bottom:773.554160pt;}
.y46_c01368{bottom:773.937760pt;}
.y45_c01368{bottom:774.699627pt;}
.y44_c01368{bottom:775.436293pt;}
.y43_c01368{bottom:798.282747pt;}
.y42_c01368{bottom:800.231627pt;}
.y41_c01368{bottom:800.817493pt;}
.y40_c01368{bottom:802.540720pt;}
.y3f_c01368{bottom:803.145787pt;}
.y3e_c01368{bottom:804.095893pt;}
.y3d_c01368{bottom:805.661147pt;}
.y3c_c01368{bottom:806.630747pt;}
.y3b_c01368{bottom:807.605333pt;}
.y3a_c01368{bottom:834.038907pt;}
.y39_c01368{bottom:834.826187pt;}
.y38_c01368{bottom:835.143627pt;}
.y37_c01368{bottom:835.895867pt;}
.y36_c01368{bottom:836.416080pt;}
.y35_c01368{bottom:836.952187pt;}
.y34_c01368{bottom:837.278960pt;}
.y33_c01368{bottom:837.577200pt;}
.y32_c01368{bottom:860.473147pt;}
.y31_c01368{bottom:860.991280pt;}
.y30_c01368{bottom:861.513840pt;}
.y2f_c01368{bottom:862.039733pt;}
.y2e_c01368{bottom:863.613707pt;}
.y2d_c01368{bottom:864.667653pt;}
.y2c_c01368{bottom:865.911493pt;}
.y2b_c01368{bottom:866.947867pt;}
.y2a_c01368{bottom:867.990027pt;}
.y29_c01368{bottom:868.535147pt;}
.y28_c01368{bottom:869.399333pt;}
.y27_c01368{bottom:870.017360pt;}
.y26_c01368{bottom:870.946533pt;}
.y25_c01368{bottom:891.616960pt;}
.y24_c01368{bottom:893.090160pt;}
.y23_c01368{bottom:893.604533pt;}
.y22_c01368{bottom:894.252213pt;}
.y21_c01368{bottom:895.746053pt;}
.y20_c01368{bottom:897.414693pt;}
.y1f_c01368{bottom:898.084027pt;}
.y1e_c01368{bottom:898.565093pt;}
.y1d_c01368{bottom:899.891573pt;}
.y1c_c01368{bottom:900.389093pt;}
.y1b_c01368{bottom:901.670827pt;}
.y1a_c01368{bottom:923.405280pt;}
.y19_c01368{bottom:923.940560pt;}
.y18_c01368{bottom:925.349360pt;}
.y17_c01368{bottom:926.585467pt;}
.y16_c01368{bottom:927.634853pt;}
.y15_c01368{bottom:928.154773pt;}
.y14_c01368{bottom:930.418080pt;}
.y13_c01368{bottom:930.958747pt;}
.y12_c01368{bottom:932.333147pt;}
.y11_c01368{bottom:933.033467pt;}
.y10_c01368{bottom:934.078800pt;}
.yf_c01368{bottom:954.805227pt;}
.ye_c01368{bottom:955.553013pt;}
.yd_c01368{bottom:956.163920pt;}
.yc_c01368{bottom:958.098693pt;}
.yb_c01368{bottom:959.097467pt;}
.ya_c01368{bottom:960.446373pt;}
.y9_c01368{bottom:961.992347pt;}
.y8_c01368{bottom:962.621200pt;}
.y7_c01368{bottom:964.325333pt;}
.y6_c01368{bottom:1019.884448pt;}
.y5_c01368{bottom:1021.356928pt;}
.y4_c01368{bottom:1021.857888pt;}
.y3_c01368{bottom:1023.010528pt;}
.y2_c01368{bottom:1024.882528pt;}
.y1_c01368{bottom:1026.968000pt;}
.h10_c01368{height:21.333333pt;}
.h6_c01368{height:64.012799pt;}
.h2_c01368{height:64.018429pt;}
.hb_c01368{height:64.025083pt;}
.hd_c01368{height:69.333333pt;}
.h3_c01368{height:69.347199pt;}
.he_c01368{height:74.666667pt;}
.h9_c01368{height:74.676223pt;}
.h7_c01368{height:74.681599pt;}
.h5_c01368{height:80.015998pt;}
.hc_c01368{height:85.350398pt;}
.ha_c01368{height:85.366777pt;}
.hf_c01368{height:90.666667pt;}
.h8_c01368{height:90.684798pt;}
.h12_c01368{height:101.339464pt;}
.h11_c01368{height:106.673120pt;}
.h4_c01368{height:117.356798pt;}
.h1_c01368{height:1111.333333pt;}
.h0_c01368{height:1111.440000pt;}
.w0_c01368{width:781.200000pt;}
.w1_c01368{width:781.333333pt;}
.x0_c01368{left:0.000000pt;}
.xd7_c01368{left:108.960000pt;}
.xb9_c01368{left:110.870667pt;}
.xb3_c01368{left:112.086704pt;}
.xa2_c01368{left:113.661333pt;}
.x8e_c01368{left:114.732693pt;}
.x97_c01368{left:115.983467pt;}
.x61_c01368{left:117.326800pt;}
.x45_c01368{left:119.258213pt;}
.x3a_c01368{left:120.520987pt;}
.xf_c01368{left:123.121787pt;}
.xca_c01368{left:130.374667pt;}
.xb4_c01368{left:140.382619pt;}
.xba_c01368{left:141.661333pt;}
.x9d_c01368{left:142.899280pt;}
.xd6_c01368{left:143.998667pt;}
.x8f_c01368{left:144.957173pt;}
.x2c_c01368{left:149.589147pt;}
.xad_c01368{left:151.726891pt;}
.x62_c01368{left:155.304320pt;}
.x4f_c01368{left:156.969973pt;}
.xcf_c01368{left:159.069333pt;}
.xbb_c01368{left:160.296000pt;}
.x85_c01368{left:164.126747pt;}
.xae_c01368{left:170.619632pt;}
.x20_c01368{left:174.000080pt;}
.x3b_c01368{left:177.162240pt;}
.x2d_c01368{left:179.333173pt;}
.x10_c01368{left:181.190773pt;}
.x7c_c01368{left:183.649787pt;}
.x73_c01368{left:184.575760pt;}
.xbc_c01368{left:189.344000pt;}
.x6b_c01368{left:195.359173pt;}
.xd0_c01368{left:197.929333pt;}
.x18_c01368{left:198.963920pt;}
.xa3_c01368{left:200.942667pt;}
.x46_c01368{left:206.620373pt;}
.x21_c01368{left:208.302773pt;}
.x58_c01368{left:214.774453pt;}
.x31_c01368{left:216.950667pt;}
.x7_c01368{left:220.305333pt;}
.x50_c01368{left:224.647360pt;}
.x19_c01368{left:228.241680pt;}
.x7d_c01368{left:231.831707pt;}
.x63_c01368{left:233.995467pt;}
.x3c_c01368{left:235.730427pt;}
.xd1_c01368{left:237.061333pt;}
.xa4_c01368{left:239.778667pt;}
.x98_c01368{left:240.987627pt;}
.x22_c01368{left:256.314027pt;}
.xaf_c01368{left:257.792251pt;}
.xa5_c01368{left:259.117333pt;}
.x7e_c01368{left:260.932880pt;}
.x47_c01368{left:264.728053pt;}
.x32_c01368{left:265.680000pt;}
.x1_c01368{left:268.940000pt;}
.x86_c01368{left:272.191573pt;}
.x59_c01368{left:273.335467pt;}
.x2e_c01368{left:275.366453pt;}
.xbd_c01368{left:276.705333pt;}
.x90_c01368{left:279.662587pt;}
.x6c_c01368{left:282.782267pt;}
.x23_c01368{left:286.571227pt;}
.x74_c01368{left:291.646187pt;}
.x48_c01368{left:293.473200pt;}
.xcb_c01368{left:295.220000pt;}
.x11_c01368{left:296.398027pt;}
.x7f_c01368{left:300.266453pt;}
.x51_c01368{left:302.713387pt;}
.x8_c01368{left:305.512000pt;}
.x91_c01368{left:308.907013pt;}
.x33_c01368{left:314.160000pt;}
.x64_c01368{left:320.484267pt;}
.x5a_c01368{left:321.822747pt;}
.x3d_c01368{left:323.152000pt;}
.x12_c01368{left:326.432560pt;}
.x1a_c01368{left:334.625413pt;}
.x9_c01368{left:336.954667pt;}
.x92_c01368{left:338.180773pt;}
.x65_c01368{left:340.838427pt;}
.x3e_c01368{left:343.041440pt;}
.x24_c01368{left:344.481547pt;}
.x75_c01368{left:352.120480pt;}
.x2_c01368{left:355.834667pt;}
.x87_c01368{left:358.633307pt;}
.x52_c01368{left:360.763547pt;}
.x49_c01368{left:361.723920pt;}
.xd8_c01368{left:362.981333pt;}
.xa6_c01368{left:366.761333pt;}
.x2f_c01368{left:372.601280pt;}
.x1b_c01368{left:373.961093pt;}
.x88_c01368{left:377.047013pt;}
.xd9_c01368{left:380.497333pt;}
.x99_c01368{left:386.746693pt;}
.x4a_c01368{left:390.987760pt;}
.x34_c01368{left:392.422667pt;}
.xc4_c01368{left:393.840000pt;}
.x9e_c01368{left:395.827840pt;}
.xdb_c01368{left:399.165211pt;}
.x25_c01368{left:402.035840pt;}
.xbe_c01368{left:403.942667pt;}
.x6d_c01368{left:407.815440pt;}
.x5b_c01368{left:408.735547pt;}
.xa_c01368{left:414.253333pt;}
.x93_c01368{left:415.538747pt;}
.xd2_c01368{left:420.914667pt;}
.xb5_c01368{left:423.949989pt;}
.x89_c01368{left:425.777333pt;}
.x66_c01368{left:429.898000pt;}
.xb0_c01368{left:432.834971pt;}
.x3_c01368{left:433.834667pt;}
.x76_c01368{left:435.633493pt;}
.x6e_c01368{left:437.090693pt;}
.x5c_c01368{left:438.740747pt;}
.x35_c01368{left:439.928000pt;}
.xc5_c01368{left:441.600000pt;}
.xa7_c01368{left:442.572000pt;}
.x30_c01368{left:444.111467pt;}
.x80_c01368{left:446.214960pt;}
.x13_c01368{left:452.202933pt;}
.x8a_c01368{left:454.132560pt;}
.xda_c01368{left:459.117333pt;}
.xcc_c01368{left:460.885333pt;}
.xb1_c01368{left:463.315995pt;}
.x77_c01368{left:466.351333pt;}
.x53_c01368{left:468.107333pt;}
.x3f_c01368{left:469.063067pt;}
.x36_c01368{left:470.181333pt;}
.x26_c01368{left:471.163947pt;}
.x1c_c01368{left:472.132320pt;}
.x4_c01368{left:481.861333pt;}
.x9a_c01368{left:483.718933pt;}
.x67_c01368{left:486.774933pt;}
.xbf_c01368{left:490.604000pt;}
.xa8_c01368{left:492.393333pt;}
.x94_c01368{left:494.987520pt;}
.x4b_c01368{left:497.621360pt;}
.xcd_c01368{left:498.574667pt;}
.x5_c01368{left:502.734667pt;}
.x6f_c01368{left:505.968080pt;}
.x54_c01368{left:508.192400pt;}
.xa9_c01368{left:511.798667pt;}
.x40_c01368{left:518.045920pt;}
.xc0_c01368{left:519.398667pt;}
.xb2_c01368{left:521.181221pt;}
.x9f_c01368{left:522.297467pt;}
.x5d_c01368{left:526.102907pt;}
.x4c_c01368{left:527.154533pt;}
.x27_c01368{left:529.730293pt;}
.xb_c01368{left:531.637333pt;}
.x95_c01368{left:533.355147pt;}
.x55_c01368{left:536.968800pt;}
.x14_c01368{left:539.338400pt;}
.xaa_c01368{left:540.826667pt;}
.x81_c01368{left:543.184160pt;}
.x78_c01368{left:544.780027pt;}
.x37_c01368{left:556.342667pt;}
.xdc_c01368{left:557.472911pt;}
.x1d_c01368{left:560.029600pt;}
.x9b_c01368{left:561.253760pt;}
.x6_c01368{left:564.088000pt;}
.xc6_c01368{left:567.840000pt;}
.x82_c01368{left:571.766640pt;}
.x68_c01368{left:573.670400pt;}
.x4d_c01368{left:576.592507pt;}
.x8b_c01368{left:581.359093pt;}
.xce_c01368{left:584.689333pt;}
.x38_c01368{left:585.636000pt;}
.xb6_c01368{left:589.162912pt;}
.x70_c01368{left:592.621813pt;}
.xc1_c01368{left:597.177333pt;}
.x1e_c01368{left:598.149227pt;}
.xa0_c01368{left:600.306347pt;}
.x69_c01368{left:602.968907pt;}
.x56_c01368{left:604.158160pt;}
.xd3_c01368{left:605.514667pt;}
.x15_c01368{left:608.013147pt;}
.xab_c01368{left:608.928000pt;}
.x5e_c01368{left:613.294400pt;}
.x41_c01368{left:615.267520pt;}
.x28_c01368{left:617.165787pt;}
.x8c_c01368{left:620.486533pt;}
.x71_c01368{left:621.519733pt;}
.xd4_c01368{left:625.194667pt;}
.xc_c01368{left:628.376000pt;}
.xa1_c01368{left:629.269200pt;}
.x57_c01368{left:632.719867pt;}
.xb7_c01368{left:636.652203pt;}
.x79_c01368{left:640.095067pt;}
.x42_c01368{left:644.532960pt;}
.x29_c01368{left:646.394960pt;}
.x8d_c01368{left:649.765787pt;}
.xd5_c01368{left:655.140000pt;}
.x9c_c01368{left:657.717920pt;}
.xd_c01368{left:658.921333pt;}
.x96_c01368{left:659.860080pt;}
.x5f_c01368{left:662.227013pt;}
.xc7_c01368{left:665.760000pt;}
.x7a_c01368{left:670.731573pt;}
.x6a_c01368{left:672.315680pt;}
.xc2_c01368{left:674.240000pt;}
.x2a_c01368{left:675.457467pt;}
.x83_c01368{left:681.895040pt;}
.x39_c01368{left:683.080000pt;}
.x16_c01368{left:686.256267pt;}
.x72_c01368{left:691.073120pt;}
.x4e_c01368{left:692.965173pt;}
.xe_c01368{left:696.310667pt;}
.xac_c01368{left:697.245333pt;}
.x2b_c01368{left:704.231947pt;}
.xc3_c01368{left:705.625333pt;}
.x43_c01368{left:707.312400pt;}
.x7b_c01368{left:711.047333pt;}
.x84_c01368{left:713.570960pt;}
.x1f_c01368{left:715.068240pt;}
.x17_c01368{left:716.021467pt;}
.x44_c01368{left:719.259413pt;}
.x60_c01368{left:721.294720pt;}
.xc8_c01368{left:754.080000pt;}
.xb8_c01368{left:761.139035pt;}
.xc9_c01368{left:774.480000pt;}
}





/* 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_c01369 {
    display:none;
  }
  .loading-indicator_c01369.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01369 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_c01369 { 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_c01369" -> "#page-container .classname_c01369")
 */
.pf_c01369 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01369 { /* 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_c01369.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01369 { /* 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_c01369 { /* 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_c01369 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01369 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01369 {overflow:visible;}
  }
}
.c_c01369 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01369 { /* 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_c01369:after { /* webkit #35443 */
  content: '';
}
.t_c01369:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01369 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 */
}
.__c01369 { /* 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_c01369 { /* info for Javascript */
  display:none;
}
.l_c01369 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01369 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01369 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01369: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_c01369 {
    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_c01369.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01369.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_c01369 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01369{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01369;src:url('chunks/assets/font_b11a17f404e7258299fdf971.woff2')format("woff");}.ff1_c01369{font-family:ff1_c01369;line-height:1.000000;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;}
.m1a_c01369{transform:matrix(0.133535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133535,0.000000,0.000000,0.250000,0,0);}
.m1b_c01369{transform:matrix(0.165950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165950,0.000000,0.000000,0.250000,0,0);}
.m19_c01369{transform:matrix(0.167340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167340,0.000000,0.000000,0.250000,0,0);}
.m17_c01369{transform:matrix(0.177215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177215,0.000000,0.000000,0.250000,0,0);}
.m16_c01369{transform:matrix(0.180870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180870,0.000000,0.000000,0.250000,0,0);}
.m12_c01369{transform:matrix(0.181323,-0.001632,0.002250,0.249990,0,0);-ms-transform:matrix(0.181323,-0.001632,0.002250,0.249990,0,0);-webkit-transform:matrix(0.181323,-0.001632,0.002250,0.249990,0,0);}
.m18_c01369{transform:matrix(0.185790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185790,0.000000,0.000000,0.250000,0,0);}
.m7_c01369{transform:matrix(0.191477,-0.001723,0.002250,0.249990,0,0);-ms-transform:matrix(0.191477,-0.001723,0.002250,0.249990,0,0);-webkit-transform:matrix(0.191477,-0.001723,0.002250,0.249990,0,0);}
.m14_c01369{transform:matrix(0.192862,-0.001736,0.002250,0.249990,0,0);-ms-transform:matrix(0.192862,-0.001736,0.002250,0.249990,0,0);-webkit-transform:matrix(0.192862,-0.001736,0.002250,0.249990,0,0);}
.m13_c01369{transform:matrix(0.197377,-0.001776,0.002250,0.249990,0,0);-ms-transform:matrix(0.197377,-0.001776,0.002250,0.249990,0,0);-webkit-transform:matrix(0.197377,-0.001776,0.002250,0.249990,0,0);}
.mf_c01369{transform:matrix(0.197572,-0.001778,0.002250,0.249990,0,0);-ms-transform:matrix(0.197572,-0.001778,0.002250,0.249990,0,0);-webkit-transform:matrix(0.197572,-0.001778,0.002250,0.249990,0,0);}
.mc_c01369{transform:matrix(0.205867,-0.001853,0.002250,0.249990,0,0);-ms-transform:matrix(0.205867,-0.001853,0.002250,0.249990,0,0);-webkit-transform:matrix(0.205867,-0.001853,0.002250,0.249990,0,0);}
.m10_c01369{transform:matrix(0.227301,-0.002046,0.002250,0.249990,0,0);-ms-transform:matrix(0.227301,-0.002046,0.002250,0.249990,0,0);-webkit-transform:matrix(0.227301,-0.002046,0.002250,0.249990,0,0);}
.m9_c01369{transform:matrix(0.228556,-0.002057,0.002250,0.249990,0,0);-ms-transform:matrix(0.228556,-0.002057,0.002250,0.249990,0,0);-webkit-transform:matrix(0.228556,-0.002057,0.002250,0.249990,0,0);}
.ma_c01369{transform:matrix(0.230036,-0.002070,0.002250,0.249990,0,0);-ms-transform:matrix(0.230036,-0.002070,0.002250,0.249990,0,0);-webkit-transform:matrix(0.230036,-0.002070,0.002250,0.249990,0,0);}
.m5_c01369{transform:matrix(0.239035,-0.002151,0.002250,0.249990,0,0);-ms-transform:matrix(0.239035,-0.002151,0.002250,0.249990,0,0);-webkit-transform:matrix(0.239035,-0.002151,0.002250,0.249990,0,0);}
.m15_c01369{transform:matrix(0.247530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247530,0.000000,0.000000,0.250000,0,0);}
.m8_c01369{transform:matrix(0.249285,-0.002244,0.002250,0.249990,0,0);-ms-transform:matrix(0.249285,-0.002244,0.002250,0.249990,0,0);-webkit-transform:matrix(0.249285,-0.002244,0.002250,0.249990,0,0);}
.m1_c01369{transform:matrix(0.264179,-0.002378,0.002250,0.249990,0,0);-ms-transform:matrix(0.264179,-0.002378,0.002250,0.249990,0,0);-webkit-transform:matrix(0.264179,-0.002378,0.002250,0.249990,0,0);}
.me_c01369{transform:matrix(0.264294,-0.002379,0.002250,0.249990,0,0);-ms-transform:matrix(0.264294,-0.002379,0.002250,0.249990,0,0);-webkit-transform:matrix(0.264294,-0.002379,0.002250,0.249990,0,0);}
.m3_c01369{transform:matrix(0.264934,-0.002384,0.002250,0.249990,0,0);-ms-transform:matrix(0.264934,-0.002384,0.002250,0.249990,0,0);-webkit-transform:matrix(0.264934,-0.002384,0.002250,0.249990,0,0);}
.mb_c01369{transform:matrix(0.267599,-0.002408,0.002250,0.249990,0,0);-ms-transform:matrix(0.267599,-0.002408,0.002250,0.249990,0,0);-webkit-transform:matrix(0.267599,-0.002408,0.002250,0.249990,0,0);}
.m4_c01369{transform:matrix(0.272024,-0.002448,0.002250,0.249990,0,0);-ms-transform:matrix(0.272024,-0.002448,0.002250,0.249990,0,0);-webkit-transform:matrix(0.272024,-0.002448,0.002250,0.249990,0,0);}
.m0_c01369{transform:matrix(0.295478,-0.002659,0.002250,0.249990,0,0);-ms-transform:matrix(0.295478,-0.002659,0.002250,0.249990,0,0);-webkit-transform:matrix(0.295478,-0.002659,0.002250,0.249990,0,0);}
.m11_c01369{transform:matrix(0.312492,-0.002812,0.002250,0.249990,0,0);-ms-transform:matrix(0.312492,-0.002812,0.002250,0.249990,0,0);-webkit-transform:matrix(0.312492,-0.002812,0.002250,0.249990,0,0);}
.m2_c01369{transform:matrix(0.316332,-0.002847,0.002250,0.249990,0,0);-ms-transform:matrix(0.316332,-0.002847,0.002250,0.249990,0,0);-webkit-transform:matrix(0.316332,-0.002847,0.002250,0.249990,0,0);}
.md_c01369{transform:matrix(0.343551,-0.003092,0.002250,0.249990,0,0);-ms-transform:matrix(0.343551,-0.003092,0.002250,0.249990,0,0);-webkit-transform:matrix(0.343551,-0.003092,0.002250,0.249990,0,0);}
.m6_c01369{transform:matrix(0.598421,-0.005386,0.002250,0.249990,0,0);-ms-transform:matrix(0.598421,-0.005386,0.002250,0.249990,0,0);-webkit-transform:matrix(0.598421,-0.005386,0.002250,0.249990,0,0);}
.v0_c01369{vertical-align:0.000000px;}
.ls0_c01369{letter-spacing:0.000000px;}
.sc__c01369{text-shadow:none;}
.sc0_c01369{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__c01369{-webkit-text-stroke:0px transparent;}
.sc0_c01369{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01369{word-spacing:0.000000px;}
.fc0_c01369{color:transparent;}
.fs0_c01369{font-size:78.003159px;}
.fs1_c01369{font-size:102.004131px;}
.fs2_c01369{font-size:108.000000px;}
.y0_c01369{bottom:0.000000px;}
.y16_c01369{bottom:284.310000px;}
.yc_c01369{bottom:313.469559px;}
.yd_c01369{bottom:313.957732px;}
.ye_c01369{bottom:314.216903px;}
.yf_c01369{bottom:315.396976px;}
.y10_c01369{bottom:315.779285px;}
.y11_c01369{bottom:316.456263px;}
.y12_c01369{bottom:316.948448px;}
.y13_c01369{bottom:317.628706px;}
.y14_c01369{bottom:318.406690px;}
.y15_c01369{bottom:319.595581px;}
.y1_c01369{bottom:351.775500px;}
.y2_c01369{bottom:352.411012px;}
.y3_c01369{bottom:352.581585px;}
.y4_c01369{bottom:353.169294px;}
.y5_c01369{bottom:353.453982px;}
.y6_c01369{bottom:354.252845px;}
.y7_c01369{bottom:354.547279px;}
.y8_c01369{bottom:355.236536px;}
.y9_c01369{bottom:355.443490px;}
.ya_c01369{bottom:356.140657px;}
.yb_c01369{bottom:356.337784px;}
.h2_c01369{height:78.003159px;}
.h3_c01369{height:102.004131px;}
.h4_c01369{height:108.000000px;}
.h1_c01369{height:1250.250000px;}
.h0_c01369{height:1250.370000px;}
.w0_c01369{width:878.850000px;}
.w1_c01369{width:879.000000px;}
.x0_c01369{left:0.000000px;}
.x1_c01369{left:208.728000px;}
.xc_c01369{left:216.024316px;}
.xd_c01369{left:256.764723px;}
.x2_c01369{left:279.340500px;}
.x3_c01369{left:298.293000px;}
.x4_c01369{left:363.594000px;}
.xe_c01369{left:376.677483px;}
.x5_c01369{left:395.226000px;}
.xf_c01369{left:408.488619px;}
.x15_c01369{left:419.310000px;}
.x16_c01369{left:463.590000px;}
.x10_c01369{left:464.873593px;}
.x6_c01369{left:483.988500px;}
.x11_c01369{left:505.892986px;}
.x7_c01369{left:516.703500px;}
.x17_c01369{left:538.650000px;}
.x12_c01369{left:562.642461px;}
.x18_c01369{left:571.590000px;}
.x8_c01369{left:593.287500px;}
.x9_c01369{left:616.282500px;}
.x13_c01369{left:627.416706px;}
.x19_c01369{left:671.490000px;}
.xa_c01369{left:693.745500px;}
.x1a_c01369{left:706.320000px;}
.xb_c01369{left:715.648500px;}
.x14_c01369{left:726.513033px;}
@media print{
.v0_c01369{vertical-align:0.000000pt;}
.ls0_c01369{letter-spacing:0.000000pt;}
.ws0_c01369{word-spacing:0.000000pt;}
.fs0_c01369{font-size:69.336141pt;}
.fs1_c01369{font-size:90.670339pt;}
.fs2_c01369{font-size:96.000000pt;}
.y0_c01369{bottom:0.000000pt;}
.y16_c01369{bottom:252.720000pt;}
.yc_c01369{bottom:278.639608pt;}
.yd_c01369{bottom:279.073540pt;}
.ye_c01369{bottom:279.303913pt;}
.yf_c01369{bottom:280.352868pt;}
.y10_c01369{bottom:280.692697pt;}
.y11_c01369{bottom:281.294456pt;}
.y12_c01369{bottom:281.731953pt;}
.y13_c01369{bottom:282.336628pt;}
.y14_c01369{bottom:283.028169pt;}
.y15_c01369{bottom:284.084961pt;}
.y1_c01369{bottom:312.689333pt;}
.y2_c01369{bottom:313.254233pt;}
.y3_c01369{bottom:313.405853pt;}
.y4_c01369{bottom:313.928261pt;}
.y5_c01369{bottom:314.181317pt;}
.y6_c01369{bottom:314.891417pt;}
.y7_c01369{bottom:315.153137pt;}
.y8_c01369{bottom:315.765809pt;}
.y9_c01369{bottom:315.949769pt;}
.ya_c01369{bottom:316.569473pt;}
.yb_c01369{bottom:316.744697pt;}
.h2_c01369{height:69.336141pt;}
.h3_c01369{height:90.670339pt;}
.h4_c01369{height:96.000000pt;}
.h1_c01369{height:1111.333333pt;}
.h0_c01369{height:1111.440000pt;}
.w0_c01369{width:781.200000pt;}
.w1_c01369{width:781.333333pt;}
.x0_c01369{left:0.000000pt;}
.x1_c01369{left:185.536000pt;}
.xc_c01369{left:192.021615pt;}
.xd_c01369{left:228.235309pt;}
.x2_c01369{left:248.302667pt;}
.x3_c01369{left:265.149333pt;}
.x4_c01369{left:323.194667pt;}
.xe_c01369{left:334.824429pt;}
.x5_c01369{left:351.312000pt;}
.xf_c01369{left:363.100995pt;}
.x15_c01369{left:372.720000pt;}
.x16_c01369{left:412.080000pt;}
.x10_c01369{left:413.220972pt;}
.x6_c01369{left:430.212000pt;}
.x11_c01369{left:449.682655pt;}
.x7_c01369{left:459.292000pt;}
.x17_c01369{left:478.800000pt;}
.x12_c01369{left:500.126632pt;}
.x18_c01369{left:508.080000pt;}
.x8_c01369{left:527.366667pt;}
.x9_c01369{left:547.806667pt;}
.x13_c01369{left:557.703739pt;}
.x19_c01369{left:596.880000pt;}
.xa_c01369{left:616.662667pt;}
.x1a_c01369{left:627.840000pt;}
.xb_c01369{left:636.132000pt;}
.x14_c01369{left:645.789363pt;}
}





/* 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_c01370 {
    display:none;
  }
  .loading-indicator_c01370.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01370 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_c01370 { 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_c01370" -> "#page-container .classname_c01370")
 */
.pf_c01370 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01370 { /* 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_c01370.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01370 { /* 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_c01370 { /* 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_c01370 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01370 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01370 {overflow:visible;}
  }
}
.c_c01370 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01370 { /* 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_c01370:after { /* webkit #35443 */
  content: '';
}
.t_c01370:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01370 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 */
}
.__c01370 { /* 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_c01370 { /* info for Javascript */
  display:none;
}
.l_c01370 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01370 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01370 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01370: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_c01370 {
    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_c01370.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01370.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_c01370 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01370{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01370;src:url('chunks/assets/font_cfe63ee56e9e10a97d33a3db.woff2')format("woff");}.ff1_c01370{font-family:ff1_c01370;line-height:1.000000;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;}
.m32_c01370{transform:matrix(0.017308,-0.000277,0.003999,0.249968,0,0);-ms-transform:matrix(0.017308,-0.000277,0.003999,0.249968,0,0);-webkit-transform:matrix(0.017308,-0.000277,0.003999,0.249968,0,0);}
.m27_c01370{transform:matrix(0.169998,-0.003570,0.005249,0.249945,0,0);-ms-transform:matrix(0.169998,-0.003570,0.005249,0.249945,0,0);-webkit-transform:matrix(0.169998,-0.003570,0.005249,0.249945,0,0);}
.m0_c01370{transform:matrix(0.177335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177335,0.000000,0.000000,0.250000,0,0);}
.m22_c01370{transform:matrix(0.181245,-0.003806,0.005249,0.249945,0,0);-ms-transform:matrix(0.181245,-0.003806,0.005249,0.249945,0,0);-webkit-transform:matrix(0.181245,-0.003806,0.005249,0.249945,0,0);}
.m14_c01370{transform:matrix(0.193573,-0.004259,0.005499,0.249940,0,0);-ms-transform:matrix(0.193573,-0.004259,0.005499,0.249940,0,0);-webkit-transform:matrix(0.193573,-0.004259,0.005499,0.249940,0,0);}
.me_c01370{transform:matrix(0.208015,-0.004576,0.005499,0.249940,0,0);-ms-transform:matrix(0.208015,-0.004576,0.005499,0.249940,0,0);-webkit-transform:matrix(0.208015,-0.004576,0.005499,0.249940,0,0);}
.m1e_c01370{transform:matrix(0.209964,-0.004409,0.005249,0.249945,0,0);-ms-transform:matrix(0.209964,-0.004409,0.005249,0.249945,0,0);-webkit-transform:matrix(0.209964,-0.004409,0.005249,0.249945,0,0);}
.m23_c01370{transform:matrix(0.210349,-0.004417,0.005249,0.249945,0,0);-ms-transform:matrix(0.210349,-0.004417,0.005249,0.249945,0,0);-webkit-transform:matrix(0.210349,-0.004417,0.005249,0.249945,0,0);}
.m26_c01370{transform:matrix(0.212823,-0.004469,0.005249,0.249945,0,0);-ms-transform:matrix(0.212823,-0.004469,0.005249,0.249945,0,0);-webkit-transform:matrix(0.212823,-0.004469,0.005249,0.249945,0,0);}
.m11_c01370{transform:matrix(0.213688,-0.004701,0.005499,0.249940,0,0);-ms-transform:matrix(0.213688,-0.004701,0.005499,0.249940,0,0);-webkit-transform:matrix(0.213688,-0.004701,0.005499,0.249940,0,0);}
.mf_c01370{transform:matrix(0.213933,-0.004707,0.005499,0.249940,0,0);-ms-transform:matrix(0.213933,-0.004707,0.005499,0.249940,0,0);-webkit-transform:matrix(0.213933,-0.004707,0.005499,0.249940,0,0);}
.m4_c01370{transform:matrix(0.220077,-0.004842,0.005499,0.249940,0,0);-ms-transform:matrix(0.220077,-0.004842,0.005499,0.249940,0,0);-webkit-transform:matrix(0.220077,-0.004842,0.005499,0.249940,0,0);}
.mb_c01370{transform:matrix(0.220107,-0.004842,0.005499,0.249940,0,0);-ms-transform:matrix(0.220107,-0.004842,0.005499,0.249940,0,0);-webkit-transform:matrix(0.220107,-0.004842,0.005499,0.249940,0,0);}
.m3_c01370{transform:matrix(0.220317,-0.004847,0.005499,0.249940,0,0);-ms-transform:matrix(0.220317,-0.004847,0.005499,0.249940,0,0);-webkit-transform:matrix(0.220317,-0.004847,0.005499,0.249940,0,0);}
.m20_c01370{transform:matrix(0.220746,-0.004636,0.005249,0.249945,0,0);-ms-transform:matrix(0.220746,-0.004636,0.005249,0.249945,0,0);-webkit-transform:matrix(0.220746,-0.004636,0.005249,0.249945,0,0);}
.m12_c01370{transform:matrix(0.221037,-0.004863,0.005499,0.249940,0,0);-ms-transform:matrix(0.221037,-0.004863,0.005499,0.249940,0,0);-webkit-transform:matrix(0.221037,-0.004863,0.005499,0.249940,0,0);}
.mc_c01370{transform:matrix(0.221151,-0.004865,0.005499,0.249940,0,0);-ms-transform:matrix(0.221151,-0.004865,0.005499,0.249940,0,0);-webkit-transform:matrix(0.221151,-0.004865,0.005499,0.249940,0,0);}
.md_c01370{transform:matrix(0.221616,-0.004876,0.005499,0.249940,0,0);-ms-transform:matrix(0.221616,-0.004876,0.005499,0.249940,0,0);-webkit-transform:matrix(0.221616,-0.004876,0.005499,0.249940,0,0);}
.m16_c01370{transform:matrix(0.222226,-0.004889,0.005499,0.249940,0,0);-ms-transform:matrix(0.222226,-0.004889,0.005499,0.249940,0,0);-webkit-transform:matrix(0.222226,-0.004889,0.005499,0.249940,0,0);}
.m9_c01370{transform:matrix(0.224006,-0.004928,0.005499,0.249940,0,0);-ms-transform:matrix(0.224006,-0.004928,0.005499,0.249940,0,0);-webkit-transform:matrix(0.224006,-0.004928,0.005499,0.249940,0,0);}
.m1f_c01370{transform:matrix(0.224076,-0.004706,0.005249,0.249945,0,0);-ms-transform:matrix(0.224076,-0.004706,0.005249,0.249945,0,0);-webkit-transform:matrix(0.224076,-0.004706,0.005249,0.249945,0,0);}
.m33_c01370{transform:matrix(0.225996,-0.003616,0.003999,0.249968,0,0);-ms-transform:matrix(0.225996,-0.003616,0.003999,0.249968,0,0);-webkit-transform:matrix(0.225996,-0.003616,0.003999,0.249968,0,0);}
.m48_c01370{transform:matrix(0.226916,-0.003631,0.003999,0.249968,0,0);-ms-transform:matrix(0.226916,-0.003631,0.003999,0.249968,0,0);-webkit-transform:matrix(0.226916,-0.003631,0.003999,0.249968,0,0);}
.m1c_c01370{transform:matrix(0.228865,-0.004806,0.005249,0.249945,0,0);-ms-transform:matrix(0.228865,-0.004806,0.005249,0.249945,0,0);-webkit-transform:matrix(0.228865,-0.004806,0.005249,0.249945,0,0);}
.m2b_c01370{transform:matrix(0.229144,-0.004812,0.005249,0.249945,0,0);-ms-transform:matrix(0.229144,-0.004812,0.005249,0.249945,0,0);-webkit-transform:matrix(0.229144,-0.004812,0.005249,0.249945,0,0);}
.m10_c01370{transform:matrix(0.229180,-0.005042,0.005499,0.249940,0,0);-ms-transform:matrix(0.229180,-0.005042,0.005499,0.249940,0,0);-webkit-transform:matrix(0.229180,-0.005042,0.005499,0.249940,0,0);}
.m7_c01370{transform:matrix(0.230349,-0.005068,0.005499,0.249940,0,0);-ms-transform:matrix(0.230349,-0.005068,0.005499,0.249940,0,0);-webkit-transform:matrix(0.230349,-0.005068,0.005499,0.249940,0,0);}
.m17_c01370{transform:matrix(0.231434,-0.005092,0.005499,0.249940,0,0);-ms-transform:matrix(0.231434,-0.005092,0.005499,0.249940,0,0);-webkit-transform:matrix(0.231434,-0.005092,0.005499,0.249940,0,0);}
.m15_c01370{transform:matrix(0.233084,-0.005128,0.005499,0.249940,0,0);-ms-transform:matrix(0.233084,-0.005128,0.005499,0.249940,0,0);-webkit-transform:matrix(0.233084,-0.005128,0.005499,0.249940,0,0);}
.m19_c01370{transform:matrix(0.237118,-0.004979,0.005249,0.249945,0,0);-ms-transform:matrix(0.237118,-0.004979,0.005249,0.249945,0,0);-webkit-transform:matrix(0.237118,-0.004979,0.005249,0.249945,0,0);}
.m8_c01370{transform:matrix(0.238552,-0.005248,0.005499,0.249940,0,0);-ms-transform:matrix(0.238552,-0.005248,0.005499,0.249940,0,0);-webkit-transform:matrix(0.238552,-0.005248,0.005499,0.249940,0,0);}
.m6_c01370{transform:matrix(0.238647,-0.005250,0.005499,0.249940,0,0);-ms-transform:matrix(0.238647,-0.005250,0.005499,0.249940,0,0);-webkit-transform:matrix(0.238647,-0.005250,0.005499,0.249940,0,0);}
.m1b_c01370{transform:matrix(0.238742,-0.005014,0.005249,0.249945,0,0);-ms-transform:matrix(0.238742,-0.005014,0.005249,0.249945,0,0);-webkit-transform:matrix(0.238742,-0.005014,0.005249,0.249945,0,0);}
.m5_c01370{transform:matrix(0.239002,-0.005258,0.005499,0.249940,0,0);-ms-transform:matrix(0.239002,-0.005258,0.005499,0.249940,0,0);-webkit-transform:matrix(0.239002,-0.005258,0.005499,0.249940,0,0);}
.ma_c01370{transform:matrix(0.240907,-0.005300,0.005499,0.249940,0,0);-ms-transform:matrix(0.240907,-0.005300,0.005499,0.249940,0,0);-webkit-transform:matrix(0.240907,-0.005300,0.005499,0.249940,0,0);}
.m42_c01370{transform:matrix(0.241584,-0.003865,0.003999,0.249968,0,0);-ms-transform:matrix(0.241584,-0.003865,0.003999,0.249968,0,0);-webkit-transform:matrix(0.241584,-0.003865,0.003999,0.249968,0,0);}
.m24_c01370{transform:matrix(0.242277,-0.005088,0.005249,0.249945,0,0);-ms-transform:matrix(0.242277,-0.005088,0.005249,0.249945,0,0);-webkit-transform:matrix(0.242277,-0.005088,0.005249,0.249945,0,0);}
.m21_c01370{transform:matrix(0.243971,-0.005123,0.005249,0.249945,0,0);-ms-transform:matrix(0.243971,-0.005123,0.005249,0.249945,0,0);-webkit-transform:matrix(0.243971,-0.005123,0.005249,0.249945,0,0);}
.m2a_c01370{transform:matrix(0.244971,-0.005144,0.005249,0.249945,0,0);-ms-transform:matrix(0.244971,-0.005144,0.005249,0.249945,0,0);-webkit-transform:matrix(0.244971,-0.005144,0.005249,0.249945,0,0);}
.m13_c01370{transform:matrix(0.245241,-0.005395,0.005499,0.249940,0,0);-ms-transform:matrix(0.245241,-0.005395,0.005499,0.249940,0,0);-webkit-transform:matrix(0.245241,-0.005395,0.005499,0.249940,0,0);}
.m47_c01370{transform:matrix(0.246328,-0.003941,0.003999,0.249968,0,0);-ms-transform:matrix(0.246328,-0.003941,0.003999,0.249968,0,0);-webkit-transform:matrix(0.246328,-0.003941,0.003999,0.249968,0,0);}
.m1_c01370{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m43_c01370{transform:matrix(0.249983,-0.004000,0.003999,0.249968,0,0);-ms-transform:matrix(0.249983,-0.004000,0.003999,0.249968,0,0);-webkit-transform:matrix(0.249983,-0.004000,0.003999,0.249968,0,0);}
.m3f_c01370{transform:matrix(0.251723,-0.004028,0.003999,0.249968,0,0);-ms-transform:matrix(0.251723,-0.004028,0.003999,0.249968,0,0);-webkit-transform:matrix(0.251723,-0.004028,0.003999,0.249968,0,0);}
.m30_c01370{transform:matrix(0.253179,-0.005317,0.005249,0.249945,0,0);-ms-transform:matrix(0.253179,-0.005317,0.005249,0.249945,0,0);-webkit-transform:matrix(0.253179,-0.005317,0.005249,0.249945,0,0);}
.m28_c01370{transform:matrix(0.253814,-0.005330,0.005249,0.249945,0,0);-ms-transform:matrix(0.253814,-0.005330,0.005249,0.249945,0,0);-webkit-transform:matrix(0.253814,-0.005330,0.005249,0.249945,0,0);}
.m36_c01370{transform:matrix(0.254147,-0.004066,0.003999,0.249968,0,0);-ms-transform:matrix(0.254147,-0.004066,0.003999,0.249968,0,0);-webkit-transform:matrix(0.254147,-0.004066,0.003999,0.249968,0,0);}
.m39_c01370{transform:matrix(0.254397,-0.004070,0.003999,0.249968,0,0);-ms-transform:matrix(0.254397,-0.004070,0.003999,0.249968,0,0);-webkit-transform:matrix(0.254397,-0.004070,0.003999,0.249968,0,0);}
.m41_c01370{transform:matrix(0.254637,-0.004074,0.003999,0.249968,0,0);-ms-transform:matrix(0.254637,-0.004074,0.003999,0.249968,0,0);-webkit-transform:matrix(0.254637,-0.004074,0.003999,0.249968,0,0);}
.m40_c01370{transform:matrix(0.258012,-0.004128,0.003999,0.249968,0,0);-ms-transform:matrix(0.258012,-0.004128,0.003999,0.249968,0,0);-webkit-transform:matrix(0.258012,-0.004128,0.003999,0.249968,0,0);}
.m49_c01370{transform:matrix(0.258897,-0.004142,0.003999,0.249968,0,0);-ms-transform:matrix(0.258897,-0.004142,0.003999,0.249968,0,0);-webkit-transform:matrix(0.258897,-0.004142,0.003999,0.249968,0,0);}
.m35_c01370{transform:matrix(0.260072,-0.004161,0.003999,0.249968,0,0);-ms-transform:matrix(0.260072,-0.004161,0.003999,0.249968,0,0);-webkit-transform:matrix(0.260072,-0.004161,0.003999,0.249968,0,0);}
.m29_c01370{transform:matrix(0.260897,-0.005479,0.005249,0.249945,0,0);-ms-transform:matrix(0.260897,-0.005479,0.005249,0.249945,0,0);-webkit-transform:matrix(0.260897,-0.005479,0.005249,0.249945,0,0);}
.m3b_c01370{transform:matrix(0.261097,-0.004178,0.003999,0.249968,0,0);-ms-transform:matrix(0.261097,-0.004178,0.003999,0.249968,0,0);-webkit-transform:matrix(0.261097,-0.004178,0.003999,0.249968,0,0);}
.m2e_c01370{transform:matrix(0.261307,-0.005487,0.005249,0.249945,0,0);-ms-transform:matrix(0.261307,-0.005487,0.005249,0.249945,0,0);-webkit-transform:matrix(0.261307,-0.005487,0.005249,0.249945,0,0);}
.m38_c01370{transform:matrix(0.261382,-0.004182,0.003999,0.249968,0,0);-ms-transform:matrix(0.261382,-0.004182,0.003999,0.249968,0,0);-webkit-transform:matrix(0.261382,-0.004182,0.003999,0.249968,0,0);}
.m3d_c01370{transform:matrix(0.263231,-0.004212,0.003999,0.249968,0,0);-ms-transform:matrix(0.263231,-0.004212,0.003999,0.249968,0,0);-webkit-transform:matrix(0.263231,-0.004212,0.003999,0.249968,0,0);}
.m2d_c01370{transform:matrix(0.263507,-0.005534,0.005249,0.249945,0,0);-ms-transform:matrix(0.263507,-0.005534,0.005249,0.249945,0,0);-webkit-transform:matrix(0.263507,-0.005534,0.005249,0.249945,0,0);}
.m25_c01370{transform:matrix(0.265317,-0.005572,0.005249,0.249945,0,0);-ms-transform:matrix(0.265317,-0.005572,0.005249,0.249945,0,0);-webkit-transform:matrix(0.265317,-0.005572,0.005249,0.249945,0,0);}
.m1d_c01370{transform:matrix(0.266076,-0.005588,0.005249,0.249945,0,0);-ms-transform:matrix(0.266076,-0.005588,0.005249,0.249945,0,0);-webkit-transform:matrix(0.266076,-0.005588,0.005249,0.249945,0,0);}
.m3a_c01370{transform:matrix(0.267041,-0.004273,0.003999,0.249968,0,0);-ms-transform:matrix(0.267041,-0.004273,0.003999,0.249968,0,0);-webkit-transform:matrix(0.267041,-0.004273,0.003999,0.249968,0,0);}
.m18_c01370{transform:matrix(0.267261,-0.005612,0.005249,0.249945,0,0);-ms-transform:matrix(0.267261,-0.005612,0.005249,0.249945,0,0);-webkit-transform:matrix(0.267261,-0.005612,0.005249,0.249945,0,0);}
.m3e_c01370{transform:matrix(0.269720,-0.004316,0.003999,0.249968,0,0);-ms-transform:matrix(0.269720,-0.004316,0.003999,0.249968,0,0);-webkit-transform:matrix(0.269720,-0.004316,0.003999,0.249968,0,0);}
.m45_c01370{transform:matrix(0.272850,-0.004366,0.003999,0.249968,0,0);-ms-transform:matrix(0.272850,-0.004366,0.003999,0.249968,0,0);-webkit-transform:matrix(0.272850,-0.004366,0.003999,0.249968,0,0);}
.m37_c01370{transform:matrix(0.277429,-0.004439,0.003999,0.249968,0,0);-ms-transform:matrix(0.277429,-0.004439,0.003999,0.249968,0,0);-webkit-transform:matrix(0.277429,-0.004439,0.003999,0.249968,0,0);}
.m46_c01370{transform:matrix(0.281864,-0.004510,0.003999,0.249968,0,0);-ms-transform:matrix(0.281864,-0.004510,0.003999,0.249968,0,0);-webkit-transform:matrix(0.281864,-0.004510,0.003999,0.249968,0,0);}
.m1a_c01370{transform:matrix(0.282803,-0.005939,0.005249,0.249945,0,0);-ms-transform:matrix(0.282803,-0.005939,0.005249,0.249945,0,0);-webkit-transform:matrix(0.282803,-0.005939,0.005249,0.249945,0,0);}
.m44_c01370{transform:matrix(0.283664,-0.004539,0.003999,0.249968,0,0);-ms-transform:matrix(0.283664,-0.004539,0.003999,0.249968,0,0);-webkit-transform:matrix(0.283664,-0.004539,0.003999,0.249968,0,0);}
.m2f_c01370{transform:matrix(0.286027,-0.006007,0.005249,0.249945,0,0);-ms-transform:matrix(0.286027,-0.006007,0.005249,0.249945,0,0);-webkit-transform:matrix(0.286027,-0.006007,0.005249,0.249945,0,0);}
.m2_c01370{transform:matrix(0.289235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289235,0.000000,0.000000,0.250000,0,0);}
.m31_c01370{transform:matrix(0.297365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297365,0.000000,0.000000,0.250000,0,0);}
.m3c_c01370{transform:matrix(0.301351,-0.004822,0.003999,0.249968,0,0);-ms-transform:matrix(0.301351,-0.004822,0.003999,0.249968,0,0);-webkit-transform:matrix(0.301351,-0.004822,0.003999,0.249968,0,0);}
.m34_c01370{transform:matrix(0.312865,-0.005006,0.003999,0.249968,0,0);-ms-transform:matrix(0.312865,-0.005006,0.003999,0.249968,0,0);-webkit-transform:matrix(0.312865,-0.005006,0.003999,0.249968,0,0);}
.m2c_c01370{transform:matrix(0.333466,-0.007003,0.005249,0.249945,0,0);-ms-transform:matrix(0.333466,-0.007003,0.005249,0.249945,0,0);-webkit-transform:matrix(0.333466,-0.007003,0.005249,0.249945,0,0);}
.v0_c01370{vertical-align:0.000000px;}
.ls0_c01370{letter-spacing:0.000000px;}
.sc__c01370{text-shadow:none;}
.sc0_c01370{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__c01370{-webkit-text-stroke:0px transparent;}
.sc0_c01370{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01370{word-spacing:0.000000px;}
.fc0_c01370{color:transparent;}
.fs4_c01370{font-size:66.000000px;}
.fs6_c01370{font-size:72.009215px;}
.fs3_c01370{font-size:72.015874px;}
.fs5_c01370{font-size:78.009983px;}
.fs2_c01370{font-size:84.018520px;}
.fs1_c01370{font-size:84.020326px;}
.fs0_c01370{font-size:120.000000px;}
.y0_c01370{bottom:0.000000px;}
.y47_c01370{bottom:853.470144px;}
.y48_c01370{bottom:854.999400px;}
.y49_c01370{bottom:856.732860px;}
.y3e_c01370{bottom:889.382820px;}
.y3f_c01370{bottom:890.982420px;}
.y40_c01370{bottom:891.686340px;}
.y41_c01370{bottom:892.858044px;}
.y42_c01370{bottom:895.382904px;}
.y43_c01370{bottom:896.296764px;}
.y44_c01370{bottom:897.437832px;}
.y45_c01370{bottom:900.873372px;}
.y46_c01370{bottom:902.491512px;}
.y31_c01370{bottom:926.908500px;}
.y32_c01370{bottom:928.737396px;}
.y33_c01370{bottom:929.284692px;}
.y34_c01370{bottom:929.807340px;}
.y35_c01370{bottom:931.226700px;}
.y36_c01370{bottom:931.565340px;}
.y37_c01370{bottom:932.278044px;}
.y38_c01370{bottom:933.513396px;}
.y39_c01370{bottom:934.895628px;}
.y3a_c01370{bottom:935.569452px;}
.y3b_c01370{bottom:936.619068px;}
.y3c_c01370{bottom:937.154676px;}
.y3d_c01370{bottom:937.815540px;}
.y30_c01370{bottom:961.192500px;}
.y25_c01370{bottom:1033.015653px;}
.y26_c01370{bottom:1033.861075px;}
.y27_c01370{bottom:1034.207949px;}
.y28_c01370{bottom:1034.810907px;}
.y29_c01370{bottom:1036.185040px;}
.y2a_c01370{bottom:1036.967253px;}
.y2b_c01370{bottom:1037.560402px;}
.y2c_c01370{bottom:1038.363933px;}
.y2d_c01370{bottom:1039.521676px;}
.y2e_c01370{bottom:1040.514396px;}
.y2f_c01370{bottom:1043.887021px;}
.y17_c01370{bottom:1065.676500px;}
.y18_c01370{bottom:1066.668529px;}
.y19_c01370{bottom:1068.697948px;}
.y1a_c01370{bottom:1069.344171px;}
.y1b_c01370{bottom:1071.185094px;}
.y1c_c01370{bottom:1071.659641px;}
.y1d_c01370{bottom:1072.332072px;}
.y1e_c01370{bottom:1073.045515px;}
.y1f_c01370{bottom:1074.634659px;}
.y20_c01370{bottom:1075.559751px;}
.y21_c01370{bottom:1076.963706px;}
.y22_c01370{bottom:1077.628387px;}
.y23_c01370{bottom:1078.304504px;}
.y24_c01370{bottom:1079.733028px;}
.ya_c01370{bottom:1100.521908px;}
.yb_c01370{bottom:1101.859188px;}
.yc_c01370{bottom:1102.683231px;}
.yd_c01370{bottom:1103.756691px;}
.ye_c01370{bottom:1104.580734px;}
.yf_c01370{bottom:1105.383825px;}
.y10_c01370{bottom:1107.306141px;}
.y11_c01370{bottom:1108.131966px;}
.y12_c01370{bottom:1108.956603px;}
.y13_c01370{bottom:1113.084408px;}
.y14_c01370{bottom:1113.902661px;}
.y15_c01370{bottom:1115.536641px;}
.y16_c01370{bottom:1116.394719px;}
.y2_c01370{bottom:1138.329000px;}
.y3_c01370{bottom:1139.523171px;}
.y4_c01370{bottom:1140.236829px;}
.y5_c01370{bottom:1141.923657px;}
.y6_c01370{bottom:1144.097697px;}
.y7_c01370{bottom:1145.352027px;}
.y8_c01370{bottom:1147.971468px;}
.y9_c01370{bottom:1148.702418px;}
.y1_c01370{bottom:1196.233500px;}
.h6_c01370{height:66.000000px;}
.h8_c01370{height:72.009215px;}
.h5_c01370{height:72.015874px;}
.h7_c01370{height:78.009983px;}
.h4_c01370{height:84.018520px;}
.h3_c01370{height:84.020326px;}
.h2_c01370{height:120.000000px;}
.h1_c01370{height:1250.250000px;}
.h0_c01370{height:1250.370000px;}
.w0_c01370{width:878.850000px;}
.w1_c01370{width:879.000000px;}
.x0_c01370{left:0.000000px;}
.x2a_c01370{left:120.565500px;}
.xc_c01370{left:124.585257px;}
.x29_c01370{left:126.900000px;}
.x3c_c01370{left:128.313696px;}
.x17_c01370{left:170.830500px;}
.xd_c01370{left:178.071726px;}
.x36_c01370{left:202.843728px;}
.x3d_c01370{left:204.762300px;}
.xe_c01370{left:211.026048px;}
.x22_c01370{left:225.069062px;}
.x4_c01370{left:231.241500px;}
.x2b_c01370{left:234.871500px;}
.x37_c01370{left:236.336040px;}
.x23_c01370{left:244.373790px;}
.xf_c01370{left:253.953210px;}
.x18_c01370{left:267.469500px;}
.x2c_c01370{left:269.077500px;}
.x24_c01370{left:277.873901px;}
.x5_c01370{left:285.522000px;}
.x10_c01370{left:286.907532px;}
.x38_c01370{left:292.125576px;}
.x19_c01370{left:298.242000px;}
.x2d_c01370{left:301.743000px;}
.x6_c01370{left:317.961000px;}
.x11_c01370{left:319.045920px;}
.x25_c01370{left:354.242220px;}
.x1a_c01370{left:385.905000px;}
.x2e_c01370{left:390.453000px;}
.x7_c01370{left:394.635000px;}
.x1_c01370{left:396.900000px;}
.x1b_c01370{left:408.502500px;}
.x2f_c01370{left:411.618000px;}
.x2_c01370{left:420.390000px;}
.x12_c01370{left:428.954160px;}
.x26_c01370{left:430.669040px;}
.x1c_c01370{left:440.523000px;}
.x30_c01370{left:456.162000px;}
.x3_c01370{left:461.970000px;}
.x1d_c01370{left:474.496500px;}
.x8_c01370{left:493.455000px;}
.x39_c01370{left:510.188628px;}
.x31_c01370{left:533.371500px;}
.x27_c01370{left:539.569875px;}
.x9_c01370{left:550.470000px;}
.x1e_c01370{left:594.222000px;}
.x32_c01370{left:619.761000px;}
.x13_c01370{left:627.052092px;}
.x14_c01370{left:659.811447px;}
.x1f_c01370{left:661.077000px;}
.xa_c01370{left:669.535500px;}
.x3a_c01370{left:673.803048px;}
.x20_c01370{left:692.728500px;}
.xb_c01370{left:702.760500px;}
.x15_c01370{left:725.147124px;}
.x33_c01370{left:727.476000px;}
.x3b_c01370{left:750.836880px;}
.x16_c01370{left:759.443847px;}
.x34_c01370{left:760.951500px;}
.x28_c01370{left:782.030121px;}
.x21_c01370{left:792.949500px;}
.x35_c01370{left:802.255500px;}
@media print{
.v0_c01370{vertical-align:0.000000pt;}
.ls0_c01370{letter-spacing:0.000000pt;}
.ws0_c01370{word-spacing:0.000000pt;}
.fs4_c01370{font-size:58.666667pt;}
.fs6_c01370{font-size:64.008191pt;}
.fs3_c01370{font-size:64.014110pt;}
.fs5_c01370{font-size:69.342207pt;}
.fs2_c01370{font-size:74.683129pt;}
.fs1_c01370{font-size:74.684734pt;}
.fs0_c01370{font-size:106.666667pt;}
.y0_c01370{bottom:0.000000pt;}
.y47_c01370{bottom:758.640128pt;}
.y48_c01370{bottom:759.999467pt;}
.y49_c01370{bottom:761.540320pt;}
.y3e_c01370{bottom:790.562507pt;}
.y3f_c01370{bottom:791.984373pt;}
.y40_c01370{bottom:792.610080pt;}
.y41_c01370{bottom:793.651595pt;}
.y42_c01370{bottom:795.895915pt;}
.y43_c01370{bottom:796.708235pt;}
.y44_c01370{bottom:797.722517pt;}
.y45_c01370{bottom:800.776331pt;}
.y46_c01370{bottom:802.214677pt;}
.y31_c01370{bottom:823.918667pt;}
.y32_c01370{bottom:825.544352pt;}
.y33_c01370{bottom:826.030837pt;}
.y34_c01370{bottom:826.495413pt;}
.y35_c01370{bottom:827.757067pt;}
.y36_c01370{bottom:828.058080pt;}
.y37_c01370{bottom:828.691595pt;}
.y38_c01370{bottom:829.789685pt;}
.y39_c01370{bottom:831.018336pt;}
.y3a_c01370{bottom:831.617291pt;}
.y3b_c01370{bottom:832.550283pt;}
.y3c_c01370{bottom:833.026379pt;}
.y3d_c01370{bottom:833.613813pt;}
.y30_c01370{bottom:854.393333pt;}
.y25_c01370{bottom:918.236136pt;}
.y26_c01370{bottom:918.987623pt;}
.y27_c01370{bottom:919.295955pt;}
.y28_c01370{bottom:919.831917pt;}
.y29_c01370{bottom:921.053369pt;}
.y2a_c01370{bottom:921.748669pt;}
.y2b_c01370{bottom:922.275913pt;}
.y2c_c01370{bottom:922.990163pt;}
.y2d_c01370{bottom:924.019268pt;}
.y2e_c01370{bottom:924.901685pt;}
.y2f_c01370{bottom:927.899575pt;}
.y17_c01370{bottom:947.268000pt;}
.y18_c01370{bottom:948.149804pt;}
.y19_c01370{bottom:949.953732pt;}
.y1a_c01370{bottom:950.528152pt;}
.y1b_c01370{bottom:952.164528pt;}
.y1c_c01370{bottom:952.586348pt;}
.y1d_c01370{bottom:953.184064pt;}
.y1e_c01370{bottom:953.818236pt;}
.y1f_c01370{bottom:955.230808pt;}
.y20_c01370{bottom:956.053112pt;}
.y21_c01370{bottom:957.301072pt;}
.y22_c01370{bottom:957.891900pt;}
.y23_c01370{bottom:958.492892pt;}
.y24_c01370{bottom:959.762692pt;}
.ya_c01370{bottom:978.241696pt;}
.yb_c01370{bottom:979.430389pt;}
.yc_c01370{bottom:980.162872pt;}
.yd_c01370{bottom:981.117059pt;}
.ye_c01370{bottom:981.849541pt;}
.yf_c01370{bottom:982.563400pt;}
.y10_c01370{bottom:984.272125pt;}
.y11_c01370{bottom:985.006192pt;}
.y12_c01370{bottom:985.739203pt;}
.y13_c01370{bottom:989.408363pt;}
.y14_c01370{bottom:990.135699pt;}
.y15_c01370{bottom:991.588125pt;}
.y16_c01370{bottom:992.350861pt;}
.y2_c01370{bottom:1011.848000pt;}
.y3_c01370{bottom:1012.909485pt;}
.y4_c01370{bottom:1013.543848pt;}
.y5_c01370{bottom:1015.043251pt;}
.y6_c01370{bottom:1016.975731pt;}
.y7_c01370{bottom:1018.090691pt;}
.y8_c01370{bottom:1020.419083pt;}
.y9_c01370{bottom:1021.068816pt;}
.y1_c01370{bottom:1063.318667pt;}
.h6_c01370{height:58.666667pt;}
.h8_c01370{height:64.008191pt;}
.h5_c01370{height:64.014110pt;}
.h7_c01370{height:69.342207pt;}
.h4_c01370{height:74.683129pt;}
.h3_c01370{height:74.684734pt;}
.h2_c01370{height:106.666667pt;}
.h1_c01370{height:1111.333333pt;}
.h0_c01370{height:1111.440000pt;}
.w0_c01370{width:781.200000pt;}
.w1_c01370{width:781.333333pt;}
.x0_c01370{left:0.000000pt;}
.x2a_c01370{left:107.169333pt;}
.xc_c01370{left:110.742451pt;}
.x29_c01370{left:112.800000pt;}
.x3c_c01370{left:114.056619pt;}
.x17_c01370{left:151.849333pt;}
.xd_c01370{left:158.285979pt;}
.x36_c01370{left:180.305536pt;}
.x3d_c01370{left:182.010933pt;}
.xe_c01370{left:187.578709pt;}
.x22_c01370{left:200.061388pt;}
.x4_c01370{left:205.548000pt;}
.x2b_c01370{left:208.774667pt;}
.x37_c01370{left:210.076480pt;}
.x23_c01370{left:217.221147pt;}
.xf_c01370{left:225.736187pt;}
.x18_c01370{left:237.750667pt;}
.x2c_c01370{left:239.180000pt;}
.x24_c01370{left:246.999023pt;}
.x5_c01370{left:253.797333pt;}
.x10_c01370{left:255.028917pt;}
.x38_c01370{left:259.667179pt;}
.x19_c01370{left:265.104000pt;}
.x2d_c01370{left:268.216000pt;}
.x6_c01370{left:282.632000pt;}
.x11_c01370{left:283.596373pt;}
.x25_c01370{left:314.881973pt;}
.x1a_c01370{left:343.026667pt;}
.x2e_c01370{left:347.069333pt;}
.x7_c01370{left:350.786667pt;}
.x1_c01370{left:352.800000pt;}
.x1b_c01370{left:363.113333pt;}
.x2f_c01370{left:365.882667pt;}
.x2_c01370{left:373.680000pt;}
.x12_c01370{left:381.292587pt;}
.x26_c01370{left:382.816924pt;}
.x1c_c01370{left:391.576000pt;}
.x30_c01370{left:405.477333pt;}
.x3_c01370{left:410.640000pt;}
.x1d_c01370{left:421.774667pt;}
.x8_c01370{left:438.626667pt;}
.x39_c01370{left:453.501003pt;}
.x31_c01370{left:474.108000pt;}
.x27_c01370{left:479.617667pt;}
.x9_c01370{left:489.306667pt;}
.x1e_c01370{left:528.197333pt;}
.x32_c01370{left:550.898667pt;}
.x13_c01370{left:557.379637pt;}
.x14_c01370{left:586.499064pt;}
.x1f_c01370{left:587.624000pt;}
.xa_c01370{left:595.142667pt;}
.x3a_c01370{left:598.936043pt;}
.x20_c01370{left:615.758667pt;}
.xb_c01370{left:624.676000pt;}
.x15_c01370{left:644.575221pt;}
.x33_c01370{left:646.645333pt;}
.x3b_c01370{left:667.410560pt;}
.x16_c01370{left:675.061197pt;}
.x34_c01370{left:676.401333pt;}
.x28_c01370{left:695.137885pt;}
.x21_c01370{left:704.844000pt;}
.x35_c01370{left:713.116000pt;}
}





/* 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_c01371 {
    display:none;
  }
  .loading-indicator_c01371.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01371 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_c01371 { 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_c01371" -> "#page-container .classname_c01371")
 */
.pf_c01371 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01371 { /* 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_c01371.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01371 { /* 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_c01371 { /* 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_c01371 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01371 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01371 {overflow:visible;}
  }
}
.c_c01371 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01371 { /* 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_c01371:after { /* webkit #35443 */
  content: '';
}
.t_c01371:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01371 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 */
}
.__c01371 { /* 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_c01371 { /* info for Javascript */
  display:none;
}
.l_c01371 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01371 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01371 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01371: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_c01371 {
    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_c01371.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01371.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_c01371 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01371{font-family:sans-serif;visibility:hidden;}
.sc__c01371{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01371{-webkit-text-stroke:0px transparent;}
}
.y0_c01371{bottom:0.000000px;}
.h1_c01371{height:1250.250000px;}
.h0_c01371{height:1250.370000px;}
.w0_c01371{width:878.850000px;}
.w1_c01371{width:879.000000px;}
.x0_c01371{left:0.000000px;}
@media print{
.y0_c01371{bottom:0.000000pt;}
.h1_c01371{height:1111.333333pt;}
.h0_c01371{height:1111.440000pt;}
.w0_c01371{width:781.200000pt;}
.w1_c01371{width:781.333333pt;}
.x0_c01371{left:0.000000pt;}
}





/* 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_c01372 {
    display:none;
  }
  .loading-indicator_c01372.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01372 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_c01372 { 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_c01372" -> "#page-container .classname_c01372")
 */
.pf_c01372 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01372 { /* 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_c01372.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01372 { /* 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_c01372 { /* 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_c01372 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01372 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01372 {overflow:visible;}
  }
}
.c_c01372 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01372 { /* 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_c01372:after { /* webkit #35443 */
  content: '';
}
.t_c01372:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01372 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 */
}
.__c01372 { /* 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_c01372 { /* info for Javascript */
  display:none;
}
.l_c01372 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01372 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01372 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01372: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_c01372 {
    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_c01372.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01372.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_c01372 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01372{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01372;src:url('chunks/assets/font_dbd529e162d5851c7bfb6d27.woff2')format("woff");}.ff1_c01372{font-family:ff1_c01372;line-height:1.000000;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;}
.md_c01372{transform:matrix(0.146912,-0.000881,0.001500,0.249996,0,0);-ms-transform:matrix(0.146912,-0.000881,0.001500,0.249996,0,0);-webkit-transform:matrix(0.146912,-0.000881,0.001500,0.249996,0,0);}
.mf_c01372{transform:matrix(0.148527,-0.000891,0.001500,0.249996,0,0);-ms-transform:matrix(0.148527,-0.000891,0.001500,0.249996,0,0);-webkit-transform:matrix(0.148527,-0.000891,0.001500,0.249996,0,0);}
.ma_c01372{transform:matrix(0.151202,-0.000907,0.001500,0.249996,0,0);-ms-transform:matrix(0.151202,-0.000907,0.001500,0.249996,0,0);-webkit-transform:matrix(0.151202,-0.000907,0.001500,0.249996,0,0);}
.me_c01372{transform:matrix(0.151432,-0.000909,0.001500,0.249996,0,0);-ms-transform:matrix(0.151432,-0.000909,0.001500,0.249996,0,0);-webkit-transform:matrix(0.151432,-0.000909,0.001500,0.249996,0,0);}
.m13_c01372{transform:matrix(0.156532,-0.000939,0.001500,0.249996,0,0);-ms-transform:matrix(0.156532,-0.000939,0.001500,0.249996,0,0);-webkit-transform:matrix(0.156532,-0.000939,0.001500,0.249996,0,0);}
.mc_c01372{transform:matrix(0.165617,-0.000994,0.001500,0.249996,0,0);-ms-transform:matrix(0.165617,-0.000994,0.001500,0.249996,0,0);-webkit-transform:matrix(0.165617,-0.000994,0.001500,0.249996,0,0);}
.mb_c01372{transform:matrix(0.167947,-0.001008,0.001500,0.249996,0,0);-ms-transform:matrix(0.167947,-0.001008,0.001500,0.249996,0,0);-webkit-transform:matrix(0.167947,-0.001008,0.001500,0.249996,0,0);}
.m10_c01372{transform:matrix(0.168922,-0.001014,0.001500,0.249996,0,0);-ms-transform:matrix(0.168922,-0.001014,0.001500,0.249996,0,0);-webkit-transform:matrix(0.168922,-0.001014,0.001500,0.249996,0,0);}
.m24_c01372{transform:matrix(0.169342,-0.001016,0.001500,0.249996,0,0);-ms-transform:matrix(0.169342,-0.001016,0.001500,0.249996,0,0);-webkit-transform:matrix(0.169342,-0.001016,0.001500,0.249996,0,0);}
.m19_c01372{transform:matrix(0.170817,-0.001025,0.001500,0.249996,0,0);-ms-transform:matrix(0.170817,-0.001025,0.001500,0.249996,0,0);-webkit-transform:matrix(0.170817,-0.001025,0.001500,0.249996,0,0);}
.m22_c01372{transform:matrix(0.174237,-0.001045,0.001500,0.249996,0,0);-ms-transform:matrix(0.174237,-0.001045,0.001500,0.249996,0,0);-webkit-transform:matrix(0.174237,-0.001045,0.001500,0.249996,0,0);}
.m1e_c01372{transform:matrix(0.174272,-0.001046,0.001500,0.249996,0,0);-ms-transform:matrix(0.174272,-0.001046,0.001500,0.249996,0,0);-webkit-transform:matrix(0.174272,-0.001046,0.001500,0.249996,0,0);}
.m11_c01372{transform:matrix(0.179252,-0.001076,0.001500,0.249996,0,0);-ms-transform:matrix(0.179252,-0.001076,0.001500,0.249996,0,0);-webkit-transform:matrix(0.179252,-0.001076,0.001500,0.249996,0,0);}
.m12_c01372{transform:matrix(0.179912,-0.001079,0.001500,0.249996,0,0);-ms-transform:matrix(0.179912,-0.001079,0.001500,0.249996,0,0);-webkit-transform:matrix(0.179912,-0.001079,0.001500,0.249996,0,0);}
.m1b_c01372{transform:matrix(0.180137,-0.001081,0.001500,0.249996,0,0);-ms-transform:matrix(0.180137,-0.001081,0.001500,0.249996,0,0);-webkit-transform:matrix(0.180137,-0.001081,0.001500,0.249996,0,0);}
.m28_c01372{transform:matrix(0.182582,-0.001095,0.001500,0.249996,0,0);-ms-transform:matrix(0.182582,-0.001095,0.001500,0.249996,0,0);-webkit-transform:matrix(0.182582,-0.001095,0.001500,0.249996,0,0);}
.m20_c01372{transform:matrix(0.190587,-0.001144,0.001500,0.249996,0,0);-ms-transform:matrix(0.190587,-0.001144,0.001500,0.249996,0,0);-webkit-transform:matrix(0.190587,-0.001144,0.001500,0.249996,0,0);}
.m27_c01372{transform:matrix(0.192617,-0.001156,0.001500,0.249996,0,0);-ms-transform:matrix(0.192617,-0.001156,0.001500,0.249996,0,0);-webkit-transform:matrix(0.192617,-0.001156,0.001500,0.249996,0,0);}
.m26_c01372{transform:matrix(0.192667,-0.001156,0.001500,0.249996,0,0);-ms-transform:matrix(0.192667,-0.001156,0.001500,0.249996,0,0);-webkit-transform:matrix(0.192667,-0.001156,0.001500,0.249996,0,0);}
.m21_c01372{transform:matrix(0.192897,-0.001157,0.001500,0.249996,0,0);-ms-transform:matrix(0.192897,-0.001157,0.001500,0.249996,0,0);-webkit-transform:matrix(0.192897,-0.001157,0.001500,0.249996,0,0);}
.m23_c01372{transform:matrix(0.193482,-0.001161,0.001500,0.249996,0,0);-ms-transform:matrix(0.193482,-0.001161,0.001500,0.249996,0,0);-webkit-transform:matrix(0.193482,-0.001161,0.001500,0.249996,0,0);}
.m25_c01372{transform:matrix(0.194327,-0.001166,0.001500,0.249996,0,0);-ms-transform:matrix(0.194327,-0.001166,0.001500,0.249996,0,0);-webkit-transform:matrix(0.194327,-0.001166,0.001500,0.249996,0,0);}
.m15_c01372{transform:matrix(0.194357,-0.001166,0.001500,0.249996,0,0);-ms-transform:matrix(0.194357,-0.001166,0.001500,0.249996,0,0);-webkit-transform:matrix(0.194357,-0.001166,0.001500,0.249996,0,0);}
.m1f_c01372{transform:matrix(0.197441,-0.001185,0.001500,0.249996,0,0);-ms-transform:matrix(0.197441,-0.001185,0.001500,0.249996,0,0);-webkit-transform:matrix(0.197441,-0.001185,0.001500,0.249996,0,0);}
.m18_c01372{transform:matrix(0.198796,-0.001193,0.001500,0.249996,0,0);-ms-transform:matrix(0.198796,-0.001193,0.001500,0.249996,0,0);-webkit-transform:matrix(0.198796,-0.001193,0.001500,0.249996,0,0);}
.m1c_c01372{transform:matrix(0.199041,-0.001194,0.001500,0.249996,0,0);-ms-transform:matrix(0.199041,-0.001194,0.001500,0.249996,0,0);-webkit-transform:matrix(0.199041,-0.001194,0.001500,0.249996,0,0);}
.m1a_c01372{transform:matrix(0.199396,-0.001196,0.001500,0.249996,0,0);-ms-transform:matrix(0.199396,-0.001196,0.001500,0.249996,0,0);-webkit-transform:matrix(0.199396,-0.001196,0.001500,0.249996,0,0);}
.m1d_c01372{transform:matrix(0.200921,-0.001206,0.001500,0.249996,0,0);-ms-transform:matrix(0.200921,-0.001206,0.001500,0.249996,0,0);-webkit-transform:matrix(0.200921,-0.001206,0.001500,0.249996,0,0);}
.m2e_c01372{transform:matrix(0.212181,-0.001273,0.001500,0.249996,0,0);-ms-transform:matrix(0.212181,-0.001273,0.001500,0.249996,0,0);-webkit-transform:matrix(0.212181,-0.001273,0.001500,0.249996,0,0);}
.m17_c01372{transform:matrix(0.213181,-0.001279,0.001500,0.249996,0,0);-ms-transform:matrix(0.213181,-0.001279,0.001500,0.249996,0,0);-webkit-transform:matrix(0.213181,-0.001279,0.001500,0.249996,0,0);}
.m2f_c01372{transform:matrix(0.217081,-0.001302,0.001500,0.249996,0,0);-ms-transform:matrix(0.217081,-0.001302,0.001500,0.249996,0,0);-webkit-transform:matrix(0.217081,-0.001302,0.001500,0.249996,0,0);}
.m31_c01372{transform:matrix(0.218106,-0.001309,0.001500,0.249996,0,0);-ms-transform:matrix(0.218106,-0.001309,0.001500,0.249996,0,0);-webkit-transform:matrix(0.218106,-0.001309,0.001500,0.249996,0,0);}
.m39_c01372{transform:matrix(0.223026,-0.001338,0.001500,0.249996,0,0);-ms-transform:matrix(0.223026,-0.001338,0.001500,0.249996,0,0);-webkit-transform:matrix(0.223026,-0.001338,0.001500,0.249996,0,0);}
.m3d_c01372{transform:matrix(0.223211,-0.001339,0.001500,0.249996,0,0);-ms-transform:matrix(0.223211,-0.001339,0.001500,0.249996,0,0);-webkit-transform:matrix(0.223211,-0.001339,0.001500,0.249996,0,0);}
.m36_c01372{transform:matrix(0.224651,-0.001348,0.001500,0.249996,0,0);-ms-transform:matrix(0.224651,-0.001348,0.001500,0.249996,0,0);-webkit-transform:matrix(0.224651,-0.001348,0.001500,0.249996,0,0);}
.m42_c01372{transform:matrix(0.224991,-0.002025,0.002250,0.249990,0,0);-ms-transform:matrix(0.224991,-0.002025,0.002250,0.249990,0,0);-webkit-transform:matrix(0.224991,-0.002025,0.002250,0.249990,0,0);}
.m9_c01372{transform:matrix(0.226476,-0.001359,0.001500,0.249996,0,0);-ms-transform:matrix(0.226476,-0.001359,0.001500,0.249996,0,0);-webkit-transform:matrix(0.226476,-0.001359,0.001500,0.249996,0,0);}
.m1_c01372{transform:matrix(0.226575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226575,0.000000,0.000000,0.250000,0,0);}
.m2c_c01372{transform:matrix(0.226871,-0.001361,0.001500,0.249996,0,0);-ms-transform:matrix(0.226871,-0.001361,0.001500,0.249996,0,0);-webkit-transform:matrix(0.226871,-0.001361,0.001500,0.249996,0,0);}
.m34_c01372{transform:matrix(0.227256,-0.001364,0.001500,0.249996,0,0);-ms-transform:matrix(0.227256,-0.001364,0.001500,0.249996,0,0);-webkit-transform:matrix(0.227256,-0.001364,0.001500,0.249996,0,0);}
.m5_c01372{transform:matrix(0.229900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229900,0.000000,0.000000,0.250000,0,0);}
.m16_c01372{transform:matrix(0.230471,-0.001383,0.001500,0.249996,0,0);-ms-transform:matrix(0.230471,-0.001383,0.001500,0.249996,0,0);-webkit-transform:matrix(0.230471,-0.001383,0.001500,0.249996,0,0);}
.m2b_c01372{transform:matrix(0.232756,-0.001397,0.001500,0.249996,0,0);-ms-transform:matrix(0.232756,-0.001397,0.001500,0.249996,0,0);-webkit-transform:matrix(0.232756,-0.001397,0.001500,0.249996,0,0);}
.m2a_c01372{transform:matrix(0.234136,-0.001405,0.001500,0.249996,0,0);-ms-transform:matrix(0.234136,-0.001405,0.001500,0.249996,0,0);-webkit-transform:matrix(0.234136,-0.001405,0.001500,0.249996,0,0);}
.m14_c01372{transform:matrix(0.234806,-0.001409,0.001500,0.249996,0,0);-ms-transform:matrix(0.234806,-0.001409,0.001500,0.249996,0,0);-webkit-transform:matrix(0.234806,-0.001409,0.001500,0.249996,0,0);}
.m29_c01372{transform:matrix(0.236391,-0.001418,0.001500,0.249996,0,0);-ms-transform:matrix(0.236391,-0.001418,0.001500,0.249996,0,0);-webkit-transform:matrix(0.236391,-0.001418,0.001500,0.249996,0,0);}
.m33_c01372{transform:matrix(0.238361,-0.001430,0.001500,0.249996,0,0);-ms-transform:matrix(0.238361,-0.001430,0.001500,0.249996,0,0);-webkit-transform:matrix(0.238361,-0.001430,0.001500,0.249996,0,0);}
.m2d_c01372{transform:matrix(0.238421,-0.001431,0.001500,0.249996,0,0);-ms-transform:matrix(0.238421,-0.001431,0.001500,0.249996,0,0);-webkit-transform:matrix(0.238421,-0.001431,0.001500,0.249996,0,0);}
.m44_c01372{transform:matrix(0.239000,-0.002151,0.002250,0.249990,0,0);-ms-transform:matrix(0.239000,-0.002151,0.002250,0.249990,0,0);-webkit-transform:matrix(0.239000,-0.002151,0.002250,0.249990,0,0);}
.m30_c01372{transform:matrix(0.240776,-0.001445,0.001500,0.249996,0,0);-ms-transform:matrix(0.240776,-0.001445,0.001500,0.249996,0,0);-webkit-transform:matrix(0.240776,-0.001445,0.001500,0.249996,0,0);}
.m37_c01372{transform:matrix(0.242786,-0.001457,0.001500,0.249996,0,0);-ms-transform:matrix(0.242786,-0.001457,0.001500,0.249996,0,0);-webkit-transform:matrix(0.242786,-0.001457,0.001500,0.249996,0,0);}
.m49_c01372{transform:matrix(0.243200,-0.002189,0.002250,0.249990,0,0);-ms-transform:matrix(0.243200,-0.002189,0.002250,0.249990,0,0);-webkit-transform:matrix(0.243200,-0.002189,0.002250,0.249990,0,0);}
.m38_c01372{transform:matrix(0.244866,-0.001469,0.001500,0.249996,0,0);-ms-transform:matrix(0.244866,-0.001469,0.001500,0.249996,0,0);-webkit-transform:matrix(0.244866,-0.001469,0.001500,0.249996,0,0);}
.m45_c01372{transform:matrix(0.247390,-0.002227,0.002250,0.249990,0,0);-ms-transform:matrix(0.247390,-0.002227,0.002250,0.249990,0,0);-webkit-transform:matrix(0.247390,-0.002227,0.002250,0.249990,0,0);}
.m3c_c01372{transform:matrix(0.247391,-0.001484,0.001500,0.249996,0,0);-ms-transform:matrix(0.247391,-0.001484,0.001500,0.249996,0,0);-webkit-transform:matrix(0.247391,-0.001484,0.001500,0.249996,0,0);}
.m41_c01372{transform:matrix(0.251435,-0.002263,0.002250,0.249990,0,0);-ms-transform:matrix(0.251435,-0.002263,0.002250,0.249990,0,0);-webkit-transform:matrix(0.251435,-0.002263,0.002250,0.249990,0,0);}
.m4_c01372{transform:matrix(0.254415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254415,0.000000,0.000000,0.250000,0,0);}
.m2_c01372{transform:matrix(0.255305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255305,0.000000,0.000000,0.250000,0,0);}
.m35_c01372{transform:matrix(0.257410,-0.001544,0.001500,0.249996,0,0);-ms-transform:matrix(0.257410,-0.001544,0.001500,0.249996,0,0);-webkit-transform:matrix(0.257410,-0.001544,0.001500,0.249996,0,0);}
.m3b_c01372{transform:matrix(0.257640,-0.001546,0.001500,0.249996,0,0);-ms-transform:matrix(0.257640,-0.001546,0.001500,0.249996,0,0);-webkit-transform:matrix(0.257640,-0.001546,0.001500,0.249996,0,0);}
.m3a_c01372{transform:matrix(0.257795,-0.001547,0.001500,0.249996,0,0);-ms-transform:matrix(0.257795,-0.001547,0.001500,0.249996,0,0);-webkit-transform:matrix(0.257795,-0.001547,0.001500,0.249996,0,0);}
.m43_c01372{transform:matrix(0.270304,-0.002433,0.002250,0.249990,0,0);-ms-transform:matrix(0.270304,-0.002433,0.002250,0.249990,0,0);-webkit-transform:matrix(0.270304,-0.002433,0.002250,0.249990,0,0);}
.m47_c01372{transform:matrix(0.271479,-0.002443,0.002250,0.249990,0,0);-ms-transform:matrix(0.271479,-0.002443,0.002250,0.249990,0,0);-webkit-transform:matrix(0.271479,-0.002443,0.002250,0.249990,0,0);}
.m46_c01372{transform:matrix(0.271574,-0.002444,0.002250,0.249990,0,0);-ms-transform:matrix(0.271574,-0.002444,0.002250,0.249990,0,0);-webkit-transform:matrix(0.271574,-0.002444,0.002250,0.249990,0,0);}
.m32_c01372{transform:matrix(0.279520,-0.001677,0.001500,0.249996,0,0);-ms-transform:matrix(0.279520,-0.001677,0.001500,0.249996,0,0);-webkit-transform:matrix(0.279520,-0.001677,0.001500,0.249996,0,0);}
.m0_c01372{transform:matrix(0.295580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295580,0.000000,0.000000,0.250000,0,0);}
.m48_c01372{transform:matrix(0.310952,-0.002799,0.002250,0.249990,0,0);-ms-transform:matrix(0.310952,-0.002799,0.002250,0.249990,0,0);-webkit-transform:matrix(0.310952,-0.002799,0.002250,0.249990,0,0);}
.m3_c01372{transform:matrix(0.323160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323160,0.000000,0.000000,0.250000,0,0);}
.m40_c01372{transform:matrix(0.345421,-0.003109,0.002250,0.249990,0,0);-ms-transform:matrix(0.345421,-0.003109,0.002250,0.249990,0,0);-webkit-transform:matrix(0.345421,-0.003109,0.002250,0.249990,0,0);}
.m6_c01372{transform:matrix(1.025280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.025280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.025280,0.000000,0.000000,0.250000,0,0);}
.m3f_c01372{transform:matrix(1.067030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.067030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.067030,0.000000,0.000000,0.250000,0,0);}
.m7_c01372{transform:matrix(1.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.372500,0.000000,0.000000,0.250000,0,0);}
.m8_c01372{transform:matrix(2.246440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.246440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.246440,0.000000,0.000000,0.250000,0,0);}
.m3e_c01372{transform:matrix(2.606850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.606850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.606850,0.000000,0.000000,0.250000,0,0);}
.v0_c01372{vertical-align:0.000000px;}
.ls0_c01372{letter-spacing:0.000000px;}
.sc__c01372{text-shadow:none;}
.sc0_c01372{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__c01372{-webkit-text-stroke:0px transparent;}
.sc0_c01372{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01372{word-spacing:0.000000px;}
.fc0_c01372{color:transparent;}
.fs6_c01372{font-size:24.000000px;}
.fs1_c01372{font-size:36.000000px;}
.fs7_c01372{font-size:72.002916px;}
.fs0_c01372{font-size:78.000000px;}
.fs5_c01372{font-size:78.001404px;}
.fs4_c01372{font-size:84.001512px;}
.fs3_c01372{font-size:102.001836px;}
.fs2_c01372{font-size:120.002160px;}
.y0_c01372{bottom:0.000000px;}
.y3a_c01372{bottom:819.181500px;}
.y3b_c01372{bottom:819.664989px;}
.y3c_c01372{bottom:820.175289px;}
.y3d_c01372{bottom:820.454833px;}
.y3e_c01372{bottom:821.152190px;}
.y3f_c01372{bottom:821.436486px;}
.y40_c01372{bottom:821.844726px;}
.y41_c01372{bottom:822.027097px;}
.y42_c01372{bottom:822.824151px;}
.y43_c01372{bottom:823.319898px;}
.y39_c01372{bottom:851.367000px;}
.y2e_c01372{bottom:909.624669px;}
.y2f_c01372{bottom:909.996327px;}
.y30_c01372{bottom:910.236630px;}
.y31_c01372{bottom:911.223234px;}
.y32_c01372{bottom:911.452272px;}
.y33_c01372{bottom:911.980836px;}
.y34_c01372{bottom:912.453390px;}
.y35_c01372{bottom:912.746562px;}
.y36_c01372{bottom:913.335966px;}
.y37_c01372{bottom:913.592304px;}
.y38_c01372{bottom:913.999167px;}
.y24_c01372{bottom:944.188182px;}
.y25_c01372{bottom:945.291825px;}
.y26_c01372{bottom:946.376574px;}
.y27_c01372{bottom:947.141007px;}
.y28_c01372{bottom:947.696790px;}
.y29_c01372{bottom:948.784596px;}
.y2a_c01372{bottom:949.110972px;}
.y2b_c01372{bottom:949.541214px;}
.y2c_c01372{bottom:950.325945px;}
.y2d_c01372{bottom:950.884893px;}
.y19_c01372{bottom:979.289685px;}
.y1a_c01372{bottom:979.584828px;}
.y1b_c01372{bottom:980.037903px;}
.y1c_c01372{bottom:980.577723px;}
.y1d_c01372{bottom:981.194361px;}
.y1e_c01372{bottom:981.426639px;}
.y1f_c01372{bottom:982.190637px;}
.y20_c01372{bottom:982.429500px;}
.y21_c01372{bottom:982.978911px;}
.y22_c01372{bottom:983.483244px;}
.y23_c01372{bottom:983.949375px;}
.ye_c01372{bottom:1014.390108px;}
.yf_c01372{bottom:1014.579648px;}
.y10_c01372{bottom:1015.042959px;}
.y11_c01372{bottom:1015.238979px;}
.y12_c01372{bottom:1015.687710px;}
.y13_c01372{bottom:1015.949988px;}
.y14_c01372{bottom:1016.605998px;}
.y15_c01372{bottom:1016.811972px;}
.y16_c01372{bottom:1017.134190px;}
.y17_c01372{bottom:1017.344943px;}
.y18_c01372{bottom:1017.934614px;}
.y3_c01372{bottom:1051.650000px;}
.y4_c01372{bottom:1051.935039px;}
.y5_c01372{bottom:1052.194338px;}
.y6_c01372{bottom:1052.860176px;}
.y7_c01372{bottom:1053.440037px;}
.y8_c01372{bottom:1053.642672px;}
.y9_c01372{bottom:1053.838683px;}
.ya_c01372{bottom:1054.038303px;}
.yb_c01372{bottom:1054.495080px;}
.yc_c01372{bottom:1054.694313px;}
.yd_c01372{bottom:1055.024397px;}
.y2_c01372{bottom:1127.440500px;}
.y1_c01372{bottom:1141.978500px;}
.h8_c01372{height:24.000000px;}
.h3_c01372{height:36.000000px;}
.h9_c01372{height:72.002916px;}
.h2_c01372{height:78.000000px;}
.h7_c01372{height:78.001404px;}
.h6_c01372{height:84.001512px;}
.h5_c01372{height:102.001836px;}
.h4_c01372{height:120.002160px;}
.h1_c01372{height:1250.250000px;}
.h0_c01372{height:1250.370000px;}
.w0_c01372{width:878.850000px;}
.w1_c01372{width:879.000000px;}
.x0_c01372{left:0.000000px;}
.x34_c01372{left:112.590000px;}
.x26_c01372{left:114.636858px;}
.x14_c01372{left:116.786739px;}
.x15_c01372{left:148.376739px;}
.x1e_c01372{left:158.367060px;}
.x2b_c01372{left:170.201502px;}
.x2c_c01372{left:204.501795px;}
.x9_c01372{left:208.798500px;}
.x1f_c01372{left:223.129173px;}
.x16_c01372{left:225.595239px;}
.x36_c01372{left:226.944000px;}
.xa_c01372{left:256.305000px;}
.x17_c01372{left:258.265239px;}
.x1_c01372{left:265.410000px;}
.x35_c01372{left:270.810000px;}
.xb_c01372{left:299.521500px;}
.x7_c01372{left:309.960000px;}
.x2_c01372{left:331.830000px;}
.x18_c01372{left:333.053739px;}
.x37_c01372{left:335.488500px;}
.x2d_c01372{left:345.434949px;}
.x3_c01372{left:364.500000px;}
.x38_c01372{left:367.077000px;}
.x19_c01372{left:376.766739px;}
.x2e_c01372{left:378.107751px;}
.x20_c01372{left:388.371183px;}
.xc_c01372{left:410.494500px;}
.x39_c01372{left:412.437000px;}
.x21_c01372{left:421.583985px;}
.x8_c01372{left:430.380000px;}
.x3a_c01372{left:432.700500px;}
.x2f_c01372{left:453.701301px;}
.x27_c01372{left:465.646443px;}
.x4_c01372{left:474.120000px;}
.x1a_c01372{left:486.101739px;}
.xd_c01372{left:507.138000px;}
.x5_c01372{left:519.210000px;}
.x1b_c01372{left:520.430739px;}
.x22_c01372{left:530.666328px;}
.x6_c01372{left:539.460000px;}
.xe_c01372{left:540.910500px;}
.x30_c01372{left:563.071644px;}
.x23_c01372{left:564.726621px;}
.xf_c01372{left:573.579000px;}
.x3b_c01372{left:576.345000px;}
.x10_c01372{left:606.849000px;}
.x1c_c01372{left:609.259239px;}
.x24_c01372{left:643.294653px;}
.x31_c01372{left:647.305140px;}
.x28_c01372{left:650.046015px;}
.x11_c01372{left:682.978500px;}
.x32_c01372{left:684.027924px;}
.x1d_c01372{left:707.537739px;}
.x12_c01372{left:716.184000px;}
.x29_c01372{left:728.582634px;}
.x33_c01372{left:742.088073px;}
.x13_c01372{left:771.198000px;}
.x25_c01372{left:782.037825px;}
.x2a_c01372{left:784.489293px;}
@media print{
.v0_c01372{vertical-align:0.000000pt;}
.ls0_c01372{letter-spacing:0.000000pt;}
.ws0_c01372{word-spacing:0.000000pt;}
.fs6_c01372{font-size:21.333333pt;}
.fs1_c01372{font-size:32.000000pt;}
.fs7_c01372{font-size:64.002592pt;}
.fs0_c01372{font-size:69.333333pt;}
.fs5_c01372{font-size:69.334581pt;}
.fs4_c01372{font-size:74.668011pt;}
.fs3_c01372{font-size:90.668299pt;}
.fs2_c01372{font-size:106.668587pt;}
.y0_c01372{bottom:0.000000pt;}
.y3a_c01372{bottom:728.161333pt;}
.y3b_c01372{bottom:728.591101pt;}
.y3c_c01372{bottom:729.044701pt;}
.y3d_c01372{bottom:729.293185pt;}
.y3e_c01372{bottom:729.913057pt;}
.y3f_c01372{bottom:730.165765pt;}
.y40_c01372{bottom:730.528645pt;}
.y41_c01372{bottom:730.690753pt;}
.y42_c01372{bottom:731.399245pt;}
.y43_c01372{bottom:731.839909pt;}
.y39_c01372{bottom:756.770667pt;}
.y2e_c01372{bottom:808.555261pt;}
.y2f_c01372{bottom:808.885624pt;}
.y30_c01372{bottom:809.099227pt;}
.y31_c01372{bottom:809.976208pt;}
.y32_c01372{bottom:810.179797pt;}
.y33_c01372{bottom:810.649632pt;}
.y34_c01372{bottom:811.069680pt;}
.y35_c01372{bottom:811.330277pt;}
.y36_c01372{bottom:811.854192pt;}
.y37_c01372{bottom:812.082048pt;}
.y38_c01372{bottom:812.443704pt;}
.y24_c01372{bottom:839.278384pt;}
.y25_c01372{bottom:840.259400pt;}
.y26_c01372{bottom:841.223621pt;}
.y27_c01372{bottom:841.903117pt;}
.y28_c01372{bottom:842.397147pt;}
.y29_c01372{bottom:843.364085pt;}
.y2a_c01372{bottom:843.654197pt;}
.y2b_c01372{bottom:844.036635pt;}
.y2c_c01372{bottom:844.734173pt;}
.y2d_c01372{bottom:845.231016pt;}
.y19_c01372{bottom:870.479720pt;}
.y1a_c01372{bottom:870.742069pt;}
.y1b_c01372{bottom:871.144803pt;}
.y1c_c01372{bottom:871.624643pt;}
.y1d_c01372{bottom:872.172765pt;}
.y1e_c01372{bottom:872.379235pt;}
.y1f_c01372{bottom:873.058344pt;}
.y20_c01372{bottom:873.270667pt;}
.y21_c01372{bottom:873.759032pt;}
.y22_c01372{bottom:874.207328pt;}
.y23_c01372{bottom:874.621667pt;}
.ye_c01372{bottom:901.680096pt;}
.yf_c01372{bottom:901.848576pt;}
.y10_c01372{bottom:902.260408pt;}
.y11_c01372{bottom:902.434648pt;}
.y12_c01372{bottom:902.833520pt;}
.y13_c01372{bottom:903.066656pt;}
.y14_c01372{bottom:903.649776pt;}
.y15_c01372{bottom:903.832864pt;}
.y16_c01372{bottom:904.119280pt;}
.y17_c01372{bottom:904.306616pt;}
.y18_c01372{bottom:904.830768pt;}
.y3_c01372{bottom:934.800000pt;}
.y4_c01372{bottom:935.053368pt;}
.y5_c01372{bottom:935.283856pt;}
.y6_c01372{bottom:935.875712pt;}
.y7_c01372{bottom:936.391144pt;}
.y8_c01372{bottom:936.571264pt;}
.y9_c01372{bottom:936.745496pt;}
.ya_c01372{bottom:936.922936pt;}
.yb_c01372{bottom:937.328960pt;}
.yc_c01372{bottom:937.506056pt;}
.yd_c01372{bottom:937.799464pt;}
.y2_c01372{bottom:1002.169333pt;}
.y1_c01372{bottom:1015.092000pt;}
.h8_c01372{height:21.333333pt;}
.h3_c01372{height:32.000000pt;}
.h9_c01372{height:64.002592pt;}
.h2_c01372{height:69.333333pt;}
.h7_c01372{height:69.334581pt;}
.h6_c01372{height:74.668011pt;}
.h5_c01372{height:90.668299pt;}
.h4_c01372{height:106.668587pt;}
.h1_c01372{height:1111.333333pt;}
.h0_c01372{height:1111.440000pt;}
.w0_c01372{width:781.200000pt;}
.w1_c01372{width:781.333333pt;}
.x0_c01372{left:0.000000pt;}
.x34_c01372{left:100.080000pt;}
.x26_c01372{left:101.899429pt;}
.x14_c01372{left:103.810435pt;}
.x15_c01372{left:131.890435pt;}
.x1e_c01372{left:140.770720pt;}
.x2b_c01372{left:151.290224pt;}
.x2c_c01372{left:181.779373pt;}
.x9_c01372{left:185.598667pt;}
.x1f_c01372{left:198.337043pt;}
.x16_c01372{left:200.529101pt;}
.x36_c01372{left:201.728000pt;}
.xa_c01372{left:227.826667pt;}
.x17_c01372{left:229.569101pt;}
.x1_c01372{left:235.920000pt;}
.x35_c01372{left:240.720000pt;}
.xb_c01372{left:266.241333pt;}
.x7_c01372{left:275.520000pt;}
.x2_c01372{left:294.960000pt;}
.x18_c01372{left:296.047768pt;}
.x37_c01372{left:298.212000pt;}
.x2d_c01372{left:307.053288pt;}
.x3_c01372{left:324.000000pt;}
.x38_c01372{left:326.290667pt;}
.x19_c01372{left:334.903768pt;}
.x2e_c01372{left:336.095779pt;}
.x20_c01372{left:345.218829pt;}
.xc_c01372{left:364.884000pt;}
.x39_c01372{left:366.610667pt;}
.x21_c01372{left:374.741320pt;}
.x8_c01372{left:382.560000pt;}
.x3a_c01372{left:384.622667pt;}
.x2f_c01372{left:403.290045pt;}
.x27_c01372{left:413.907949pt;}
.x4_c01372{left:421.440000pt;}
.x1a_c01372{left:432.090435pt;}
.xd_c01372{left:450.789333pt;}
.x5_c01372{left:461.520000pt;}
.x1b_c01372{left:462.605101pt;}
.x22_c01372{left:471.703403pt;}
.x6_c01372{left:479.520000pt;}
.xe_c01372{left:480.809333pt;}
.x30_c01372{left:500.508128pt;}
.x23_c01372{left:501.979219pt;}
.xf_c01372{left:509.848000pt;}
.x3b_c01372{left:512.306667pt;}
.x10_c01372{left:539.421333pt;}
.x1c_c01372{left:541.563768pt;}
.x24_c01372{left:571.817469pt;}
.x31_c01372{left:575.382347pt;}
.x28_c01372{left:577.818680pt;}
.x11_c01372{left:607.092000pt;}
.x32_c01372{left:608.024821pt;}
.x1d_c01372{left:628.922435pt;}
.x12_c01372{left:636.608000pt;}
.x29_c01372{left:647.629008pt;}
.x33_c01372{left:659.633843pt;}
.x13_c01372{left:685.509333pt;}
.x25_c01372{left:695.144733pt;}
.x2a_c01372{left:697.323816pt;}
}





/* 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_c01373 {
    display:none;
  }
  .loading-indicator_c01373.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01373 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_c01373 { 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_c01373" -> "#page-container .classname_c01373")
 */
.pf_c01373 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01373 { /* 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_c01373.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01373 { /* 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_c01373 { /* 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_c01373 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01373 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01373 {overflow:visible;}
  }
}
.c_c01373 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01373 { /* 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_c01373:after { /* webkit #35443 */
  content: '';
}
.t_c01373:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01373 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 */
}
.__c01373 { /* 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_c01373 { /* info for Javascript */
  display:none;
}
.l_c01373 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01373 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01373 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01373: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_c01373 {
    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_c01373.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01373.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_c01373 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01373{font-family:sans-serif;visibility:hidden;}
.sc__c01373{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01373{-webkit-text-stroke:0px transparent;}
}
.y0_c01373{bottom:0.000000px;}
.h1_c01373{height:1250.250000px;}
.h0_c01373{height:1250.370000px;}
.w0_c01373{width:878.850000px;}
.w1_c01373{width:879.000000px;}
.x0_c01373{left:0.000000px;}
@media print{
.y0_c01373{bottom:0.000000pt;}
.h1_c01373{height:1111.333333pt;}
.h0_c01373{height:1111.440000pt;}
.w0_c01373{width:781.200000pt;}
.w1_c01373{width:781.333333pt;}
.x0_c01373{left:0.000000pt;}
}





/* 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_c01374 {
    display:none;
  }
  .loading-indicator_c01374.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01374 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_c01374 { 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_c01374" -> "#page-container .classname_c01374")
 */
.pf_c01374 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01374 { /* 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_c01374.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01374 { /* 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_c01374 { /* 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_c01374 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01374 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01374 {overflow:visible;}
  }
}
.c_c01374 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01374 { /* 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_c01374:after { /* webkit #35443 */
  content: '';
}
.t_c01374:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01374 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 */
}
.__c01374 { /* 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_c01374 { /* info for Javascript */
  display:none;
}
.l_c01374 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01374 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01374 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01374: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_c01374 {
    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_c01374.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01374.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_c01374 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01374{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01374;src:url('chunks/assets/font_cfe63ee56e9e10a97d33a3db.woff2')format("woff");}.ff1_c01374{font-family:ff1_c01374;line-height:1.000000;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;}
.m1_c01374{transform:matrix(0.141115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141115,0.000000,0.000000,0.250000,0,0);}
.m1e_c01374{transform:matrix(0.197425,0.001974,-0.002500,0.249988,0,0);-ms-transform:matrix(0.197425,0.001974,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.197425,0.001974,-0.002500,0.249988,0,0);}
.m5_c01374{transform:matrix(0.203561,0.005089,-0.006248,0.249922,0,0);-ms-transform:matrix(0.203561,0.005089,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.203561,0.005089,-0.006248,0.249922,0,0);}
.m27_c01374{transform:matrix(0.208497,0.002293,-0.002750,0.249985,0,0);-ms-transform:matrix(0.208497,0.002293,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.208497,0.002293,-0.002750,0.249985,0,0);}
.m3d_c01374{transform:matrix(0.208700,0.002504,-0.003000,0.249982,0,0);-ms-transform:matrix(0.208700,0.002504,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.208700,0.002504,-0.003000,0.249982,0,0);}
.m16_c01374{transform:matrix(0.209273,0.003348,-0.003999,0.249968,0,0);-ms-transform:matrix(0.209273,0.003348,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.209273,0.003348,-0.003999,0.249968,0,0);}
.m23_c01374{transform:matrix(0.210384,0.002104,-0.002500,0.249988,0,0);-ms-transform:matrix(0.210384,0.002104,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.210384,0.002104,-0.002500,0.249988,0,0);}
.m1f_c01374{transform:matrix(0.212174,0.002122,-0.002500,0.249988,0,0);-ms-transform:matrix(0.212174,0.002122,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.212174,0.002122,-0.002500,0.249988,0,0);}
.m3a_c01374{transform:matrix(0.214715,0.002577,-0.003000,0.249982,0,0);-ms-transform:matrix(0.214715,0.002577,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.214715,0.002577,-0.003000,0.249982,0,0);}
.m14_c01374{transform:matrix(0.216307,0.003461,-0.003999,0.249968,0,0);-ms-transform:matrix(0.216307,0.003461,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.216307,0.003461,-0.003999,0.249968,0,0);}
.m22_c01374{transform:matrix(0.217124,0.002171,-0.002500,0.249988,0,0);-ms-transform:matrix(0.217124,0.002171,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.217124,0.002171,-0.002500,0.249988,0,0);}
.m2c_c01374{transform:matrix(0.217577,0.002393,-0.002750,0.249985,0,0);-ms-transform:matrix(0.217577,0.002393,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.217577,0.002393,-0.002750,0.249985,0,0);}
.m3f_c01374{transform:matrix(0.218239,0.002619,-0.003000,0.249982,0,0);-ms-transform:matrix(0.218239,0.002619,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.218239,0.002619,-0.003000,0.249982,0,0);}
.m38_c01374{transform:matrix(0.221682,0.002438,-0.002750,0.249985,0,0);-ms-transform:matrix(0.221682,0.002438,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.221682,0.002438,-0.002750,0.249985,0,0);}
.m43_c01374{transform:matrix(0.222029,0.002664,-0.003000,0.249982,0,0);-ms-transform:matrix(0.222029,0.002664,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.222029,0.002664,-0.003000,0.249982,0,0);}
.m31_c01374{transform:matrix(0.222832,0.002451,-0.002750,0.249985,0,0);-ms-transform:matrix(0.222832,0.002451,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.222832,0.002451,-0.002750,0.249985,0,0);}
.m28_c01374{transform:matrix(0.223366,0.002457,-0.002750,0.249985,0,0);-ms-transform:matrix(0.223366,0.002457,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.223366,0.002457,-0.002750,0.249985,0,0);}
.m2b_c01374{transform:matrix(0.226561,0.002492,-0.002750,0.249985,0,0);-ms-transform:matrix(0.226561,0.002492,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.226561,0.002492,-0.002750,0.249985,0,0);}
.m41_c01374{transform:matrix(0.227709,0.002733,-0.003000,0.249982,0,0);-ms-transform:matrix(0.227709,0.002733,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.227709,0.002733,-0.003000,0.249982,0,0);}
.m3e_c01374{transform:matrix(0.227764,0.002733,-0.003000,0.249982,0,0);-ms-transform:matrix(0.227764,0.002733,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.227764,0.002733,-0.003000,0.249982,0,0);}
.m39_c01374{transform:matrix(0.228579,0.002743,-0.003000,0.249982,0,0);-ms-transform:matrix(0.228579,0.002743,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.228579,0.002743,-0.003000,0.249982,0,0);}
.md_c01374{transform:matrix(0.229166,0.003667,-0.003999,0.249968,0,0);-ms-transform:matrix(0.229166,0.003667,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.229166,0.003667,-0.003999,0.249968,0,0);}
.m2f_c01374{transform:matrix(0.230431,0.002535,-0.002750,0.249985,0,0);-ms-transform:matrix(0.230431,0.002535,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.230431,0.002535,-0.002750,0.249985,0,0);}
.ma_c01374{transform:matrix(0.232955,0.003727,-0.003999,0.249968,0,0);-ms-transform:matrix(0.232955,0.003727,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.232955,0.003727,-0.003999,0.249968,0,0);}
.m17_c01374{transform:matrix(0.233880,0.003742,-0.003999,0.249968,0,0);-ms-transform:matrix(0.233880,0.003742,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.233880,0.003742,-0.003999,0.249968,0,0);}
.m42_c01374{transform:matrix(0.234463,0.002814,-0.003000,0.249982,0,0);-ms-transform:matrix(0.234463,0.002814,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.234463,0.002814,-0.003000,0.249982,0,0);}
.m1b_c01374{transform:matrix(0.235405,0.003766,-0.003999,0.249968,0,0);-ms-transform:matrix(0.235405,0.003766,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.235405,0.003766,-0.003999,0.249968,0,0);}
.m32_c01374{transform:matrix(0.236191,0.002598,-0.002750,0.249985,0,0);-ms-transform:matrix(0.236191,0.002598,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.236191,0.002598,-0.002750,0.249985,0,0);}
.m2a_c01374{transform:matrix(0.236216,0.002598,-0.002750,0.249985,0,0);-ms-transform:matrix(0.236216,0.002598,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.236216,0.002598,-0.002750,0.249985,0,0);}
.m21_c01374{transform:matrix(0.236453,0.002365,-0.002500,0.249988,0,0);-ms-transform:matrix(0.236453,0.002365,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.236453,0.002365,-0.002500,0.249988,0,0);}
.m25_c01374{transform:matrix(0.236633,0.002366,-0.002500,0.249988,0,0);-ms-transform:matrix(0.236633,0.002366,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.236633,0.002366,-0.002500,0.249988,0,0);}
.m1d_c01374{transform:matrix(0.237108,0.002371,-0.002500,0.249988,0,0);-ms-transform:matrix(0.237108,0.002371,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.237108,0.002371,-0.002500,0.249988,0,0);}
.m24_c01374{transform:matrix(0.239188,0.002392,-0.002500,0.249988,0,0);-ms-transform:matrix(0.239188,0.002392,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.239188,0.002392,-0.002500,0.249988,0,0);}
.m6_c01374{transform:matrix(0.240020,0.006001,-0.006248,0.249922,0,0);-ms-transform:matrix(0.240020,0.006001,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.240020,0.006001,-0.006248,0.249922,0,0);}
.m26_c01374{transform:matrix(0.240033,0.002400,-0.002500,0.249988,0,0);-ms-transform:matrix(0.240033,0.002400,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.240033,0.002400,-0.002500,0.249988,0,0);}
.m20_c01374{transform:matrix(0.240213,0.002402,-0.002500,0.249988,0,0);-ms-transform:matrix(0.240213,0.002402,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.240213,0.002402,-0.002500,0.249988,0,0);}
.m3c_c01374{transform:matrix(0.241523,0.002898,-0.003000,0.249982,0,0);-ms-transform:matrix(0.241523,0.002898,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.241523,0.002898,-0.003000,0.249982,0,0);}
.m2d_c01374{transform:matrix(0.242315,0.002665,-0.002750,0.249985,0,0);-ms-transform:matrix(0.242315,0.002665,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.242315,0.002665,-0.002750,0.249985,0,0);}
.mf_c01374{transform:matrix(0.242714,0.003883,-0.003999,0.249968,0,0);-ms-transform:matrix(0.242714,0.003883,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.242714,0.003883,-0.003999,0.249968,0,0);}
.m40_c01374{transform:matrix(0.242743,0.002913,-0.003000,0.249982,0,0);-ms-transform:matrix(0.242743,0.002913,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.242743,0.002913,-0.003000,0.249982,0,0);}
.m2_c01374{transform:matrix(0.242935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242935,0.000000,0.000000,0.250000,0,0);}
.m11_c01374{transform:matrix(0.244829,0.003917,-0.003999,0.249968,0,0);-ms-transform:matrix(0.244829,0.003917,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.244829,0.003917,-0.003999,0.249968,0,0);}
.m13_c01374{transform:matrix(0.245154,0.003922,-0.003999,0.249968,0,0);-ms-transform:matrix(0.245154,0.003922,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.245154,0.003922,-0.003999,0.249968,0,0);}
.m37_c01374{transform:matrix(0.245470,0.002700,-0.002750,0.249985,0,0);-ms-transform:matrix(0.245470,0.002700,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.245470,0.002700,-0.002750,0.249985,0,0);}
.m1a_c01374{transform:matrix(0.247343,0.003957,-0.003999,0.249968,0,0);-ms-transform:matrix(0.247343,0.003957,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.247343,0.003957,-0.003999,0.249968,0,0);}
.m3_c01374{transform:matrix(0.247968,0.006199,-0.006248,0.249922,0,0);-ms-transform:matrix(0.247968,0.006199,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.247968,0.006199,-0.006248,0.249922,0,0);}
.m2e_c01374{transform:matrix(0.248065,0.002729,-0.002750,0.249985,0,0);-ms-transform:matrix(0.248065,0.002729,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.248065,0.002729,-0.002750,0.249985,0,0);}
.m3b_c01374{transform:matrix(0.248537,0.002982,-0.003000,0.249982,0,0);-ms-transform:matrix(0.248537,0.002982,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.248537,0.002982,-0.003000,0.249982,0,0);}
.m35_c01374{transform:matrix(0.249505,0.002745,-0.002750,0.249985,0,0);-ms-transform:matrix(0.249505,0.002745,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.249505,0.002745,-0.002750,0.249985,0,0);}
.m29_c01374{transform:matrix(0.250130,0.002751,-0.002750,0.249985,0,0);-ms-transform:matrix(0.250130,0.002751,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.250130,0.002751,-0.002750,0.249985,0,0);}
.me_c01374{transform:matrix(0.250978,0.004016,-0.003999,0.249968,0,0);-ms-transform:matrix(0.250978,0.004016,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.250978,0.004016,-0.003999,0.249968,0,0);}
.mc_c01374{transform:matrix(0.251883,0.004030,-0.003999,0.249968,0,0);-ms-transform:matrix(0.251883,0.004030,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.251883,0.004030,-0.003999,0.249968,0,0);}
.m19_c01374{transform:matrix(0.253568,0.004057,-0.003999,0.249968,0,0);-ms-transform:matrix(0.253568,0.004057,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.253568,0.004057,-0.003999,0.249968,0,0);}
.m1c_c01374{transform:matrix(0.256242,0.004100,-0.003999,0.249968,0,0);-ms-transform:matrix(0.256242,0.004100,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.256242,0.004100,-0.003999,0.249968,0,0);}
.m30_c01374{transform:matrix(0.256294,0.002819,-0.002750,0.249985,0,0);-ms-transform:matrix(0.256294,0.002819,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.256294,0.002819,-0.002750,0.249985,0,0);}
.m15_c01374{transform:matrix(0.257322,0.004117,-0.003999,0.249968,0,0);-ms-transform:matrix(0.257322,0.004117,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.257322,0.004117,-0.003999,0.249968,0,0);}
.m4_c01374{transform:matrix(0.257909,0.006448,-0.006248,0.249922,0,0);-ms-transform:matrix(0.257909,0.006448,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.257909,0.006448,-0.006248,0.249922,0,0);}
.m18_c01374{transform:matrix(0.258432,0.004135,-0.003999,0.249968,0,0);-ms-transform:matrix(0.258432,0.004135,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.258432,0.004135,-0.003999,0.249968,0,0);}
.m36_c01374{transform:matrix(0.258854,0.002847,-0.002750,0.249985,0,0);-ms-transform:matrix(0.258854,0.002847,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.258854,0.002847,-0.002750,0.249985,0,0);}
.m10_c01374{transform:matrix(0.259607,0.004154,-0.003999,0.249968,0,0);-ms-transform:matrix(0.259607,0.004154,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.259607,0.004154,-0.003999,0.249968,0,0);}
.m9_c01374{transform:matrix(0.261687,0.004187,-0.003999,0.249968,0,0);-ms-transform:matrix(0.261687,0.004187,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.261687,0.004187,-0.003999,0.249968,0,0);}
.mb_c01374{transform:matrix(0.268691,0.004299,-0.003999,0.249968,0,0);-ms-transform:matrix(0.268691,0.004299,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.268691,0.004299,-0.003999,0.249968,0,0);}
.m8_c01374{transform:matrix(0.269281,0.004308,-0.003999,0.249968,0,0);-ms-transform:matrix(0.269281,0.004308,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.269281,0.004308,-0.003999,0.249968,0,0);}
.m12_c01374{transform:matrix(0.278499,0.004456,-0.003999,0.249968,0,0);-ms-transform:matrix(0.278499,0.004456,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.278499,0.004456,-0.003999,0.249968,0,0);}
.m0_c01374{transform:matrix(0.295845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295845,0.000000,0.000000,0.250000,0,0);}
.m33_c01374{transform:matrix(0.296467,0.003261,-0.002750,0.249985,0,0);-ms-transform:matrix(0.296467,0.003261,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.296467,0.003261,-0.002750,0.249985,0,0);}
.m34_c01374{transform:matrix(0.298757,0.003286,-0.002750,0.249985,0,0);-ms-transform:matrix(0.298757,0.003286,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.298757,0.003286,-0.002750,0.249985,0,0);}
.m7_c01374{transform:matrix(7.002705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(7.002705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(7.002705,0.000000,0.000000,0.250000,0,0);}
.v0_c01374{vertical-align:0.000000px;}
.ls0_c01374{letter-spacing:0.000000px;}
.sc__c01374{text-shadow:none;}
.sc0_c01374{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__c01374{-webkit-text-stroke:0px transparent;}
.sc0_c01374{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01374{word-spacing:0.000000px;}
.fc0_c01374{color:transparent;}
.fs0_c01374{font-size:18.000000px;}
.fs3_c01374{font-size:36.000000px;}
.fs4_c01374{font-size:72.009215px;}
.fs7_c01374{font-size:78.004719px;}
.fs8_c01374{font-size:78.005616px;}
.fs5_c01374{font-size:78.009983px;}
.fs2_c01374{font-size:78.024371px;}
.fs6_c01374{font-size:84.004200px;}
.fs1_c01374{font-size:102.000000px;}
.y0_c01374{bottom:0.000000px;}
.y44_c01374{bottom:841.335312px;}
.y43_c01374{bottom:841.737396px;}
.y42_c01374{bottom:842.398194px;}
.y41_c01374{bottom:843.062466px;}
.y40_c01374{bottom:843.451194px;}
.y3f_c01374{bottom:843.700728px;}
.y3e_c01374{bottom:844.112298px;}
.y3d_c01374{bottom:844.634010px;}
.y3c_c01374{bottom:845.567220px;}
.y3b_c01374{bottom:846.474402px;}
.y3a_c01374{bottom:846.993000px;}
.y39_c01374{bottom:933.838383px;}
.y38_c01374{bottom:933.839067px;}
.y36_c01374{bottom:933.839524px;}
.y37_c01374{bottom:933.839800px;}
.y35_c01374{bottom:933.840045px;}
.y34_c01374{bottom:962.383659px;}
.y33_c01374{bottom:963.019041px;}
.y32_c01374{bottom:963.500346px;}
.y31_c01374{bottom:963.862636px;}
.y30_c01374{bottom:964.940912px;}
.y2f_c01374{bottom:965.306238px;}
.y2e_c01374{bottom:966.137953px;}
.y2d_c01374{bottom:966.990327px;}
.y2c_c01374{bottom:967.468233px;}
.y2b_c01374{bottom:967.831002px;}
.y2a_c01374{bottom:968.320656px;}
.y29_c01374{bottom:969.405201px;}
.y28_c01374{bottom:969.758482px;}
.y27_c01374{bottom:970.111500px;}
.y26_c01374{bottom:999.070605px;}
.y25_c01374{bottom:999.942795px;}
.y24_c01374{bottom:1001.044335px;}
.y23_c01374{bottom:1001.368455px;}
.y22_c01374{bottom:1001.916585px;}
.y21_c01374{bottom:1002.891375px;}
.y20_c01374{bottom:1003.998510px;}
.y1f_c01374{bottom:1004.319870px;}
.y1e_c01374{bottom:1004.646225px;}
.y1d_c01374{bottom:1005.853500px;}
.y1c_c01374{bottom:1033.257552px;}
.y1b_c01374{bottom:1033.519920px;}
.y1a_c01374{bottom:1034.431632px;}
.y19_c01374{bottom:1035.374064px;}
.y18_c01374{bottom:1036.796760px;}
.y17_c01374{bottom:1037.331060px;}
.y16_c01374{bottom:1037.715996px;}
.y15_c01374{bottom:1039.417188px;}
.y14_c01374{bottom:1039.819440px;}
.y13_c01374{bottom:1040.846832px;}
.y12_c01374{bottom:1067.927784px;}
.y11_c01374{bottom:1068.465288px;}
.y10_c01374{bottom:1069.514496px;}
.yf_c01374{bottom:1070.051064px;}
.ye_c01374{bottom:1070.582760px;}
.yd_c01374{bottom:1071.082920px;}
.yc_c01374{bottom:1071.965256px;}
.yb_c01374{bottom:1073.542128px;}
.ya_c01374{bottom:1074.073488px;}
.y9_c01374{bottom:1075.296168px;}
.y8_c01374{bottom:1077.033000px;}
.y7_c01374{bottom:1149.066000px;}
.y6_c01374{bottom:1161.487912px;}
.y5_c01374{bottom:1162.260037px;}
.y4_c01374{bottom:1164.775162px;}
.y3_c01374{bottom:1166.409000px;}
.y2_c01374{bottom:1221.745500px;}
.y1_c01374{bottom:1239.030000px;}
.h2_c01374{height:18.000000px;}
.h5_c01374{height:36.000000px;}
.h6_c01374{height:72.009215px;}
.h9_c01374{height:78.004719px;}
.ha_c01374{height:78.005616px;}
.h7_c01374{height:78.009983px;}
.h4_c01374{height:78.024371px;}
.h8_c01374{height:84.004200px;}
.h3_c01374{height:102.000000px;}
.h1_c01374{height:1250.250000px;}
.h0_c01374{height:1250.370000px;}
.w0_c01374{width:878.850000px;}
.w1_c01374{width:879.000000px;}
.x0_c01374{left:0.000000px;}
.x33_c01374{left:120.769500px;}
.x1c_c01374{left:122.157000px;}
.x13_c01374{left:124.811328px;}
.x25_c01374{left:154.818000px;}
.x34_c01374{left:163.986000px;}
.x26_c01374{left:186.934500px;}
.x30_c01374{left:197.106055px;}
.x14_c01374{left:210.403800px;}
.x8_c01374{left:233.595000px;}
.x35_c01374{left:239.584500px;}
.x1d_c01374{left:242.884500px;}
.x15_c01374{left:243.890436px;}
.x1e_c01374{left:275.520000px;}
.x27_c01374{left:285.529500px;}
.x4_c01374{left:298.533000px;}
.x1f_c01374{left:307.656000px;}
.x36_c01374{left:317.352000px;}
.x28_c01374{left:330.043500px;}
.x31_c01374{left:340.755930px;}
.x9_c01374{left:342.147000px;}
.x37_c01374{left:360.828000px;}
.x5_c01374{left:363.886500px;}
.x2_c01374{left:375.840000px;}
.x16_c01374{left:385.661508px;}
.x38_c01374{left:395.125500px;}
.x3_c01374{left:399.330000px;}
.x29_c01374{left:406.468500px;}
.x39_c01374{left:415.920000px;}
.xa_c01374{left:418.564500px;}
.x32_c01374{left:442.012173px;}
.x3a_c01374{left:448.314000px;}
.xb_c01374{left:451.774500px;}
.x17_c01374{left:462.337428px;}
.x6_c01374{left:464.491500px;}
.x1_c01374{left:483.570000px;}
.x7_c01374{left:495.376500px;}
.x3b_c01374{left:503.670000px;}
.x20_c01374{left:515.848500px;}
.xc_c01374{left:550.329000px;}
.x2a_c01374{left:559.567500px;}
.x21_c01374{left:570.661500px;}
.x18_c01374{left:580.888512px;}
.x2b_c01374{left:592.779000px;}
.x22_c01374{left:603.073500px;}
.xd_c01374{left:605.475000px;}
.xe_c01374{left:636.735000px;}
.x19_c01374{left:659.483052px;}
.xf_c01374{left:669.966000px;}
.x2c_c01374{left:690.804000px;}
.x10_c01374{left:703.501500px;}
.x23_c01374{left:713.227500px;}
.x2d_c01374{left:723.739500px;}
.x1a_c01374{left:735.407400px;}
.x1b_c01374{left:757.244292px;}
.x2e_c01374{left:767.494500px;}
.x11_c01374{left:769.077000px;}
.x24_c01374{left:800.446500px;}
.x12_c01374{left:802.671000px;}
.x2f_c01374{left:825.256500px;}
@media print{
.v0_c01374{vertical-align:0.000000pt;}
.ls0_c01374{letter-spacing:0.000000pt;}
.ws0_c01374{word-spacing:0.000000pt;}
.fs0_c01374{font-size:16.000000pt;}
.fs3_c01374{font-size:32.000000pt;}
.fs4_c01374{font-size:64.008191pt;}
.fs7_c01374{font-size:69.337528pt;}
.fs8_c01374{font-size:69.338325pt;}
.fs5_c01374{font-size:69.342207pt;}
.fs2_c01374{font-size:69.354997pt;}
.fs6_c01374{font-size:74.670400pt;}
.fs1_c01374{font-size:90.666667pt;}
.y0_c01374{bottom:0.000000pt;}
.y44_c01374{bottom:747.853611pt;}
.y43_c01374{bottom:748.211019pt;}
.y42_c01374{bottom:748.798395pt;}
.y41_c01374{bottom:749.388859pt;}
.y40_c01374{bottom:749.734395pt;}
.y3f_c01374{bottom:749.956203pt;}
.y3e_c01374{bottom:750.322043pt;}
.y3d_c01374{bottom:750.785787pt;}
.y3c_c01374{bottom:751.615307pt;}
.y3b_c01374{bottom:752.421691pt;}
.y3a_c01374{bottom:752.882667pt;}
.y39_c01374{bottom:830.078563pt;}
.y38_c01374{bottom:830.079171pt;}
.y36_c01374{bottom:830.079577pt;}
.y37_c01374{bottom:830.079823pt;}
.y35_c01374{bottom:830.080040pt;}
.y34_c01374{bottom:855.452141pt;}
.y33_c01374{bottom:856.016925pt;}
.y32_c01374{bottom:856.444752pt;}
.y31_c01374{bottom:856.766788pt;}
.y30_c01374{bottom:857.725255pt;}
.y2f_c01374{bottom:858.049989pt;}
.y2e_c01374{bottom:858.789292pt;}
.y2d_c01374{bottom:859.546957pt;}
.y2c_c01374{bottom:859.971763pt;}
.y2b_c01374{bottom:860.294224pt;}
.y2a_c01374{bottom:860.729472pt;}
.y29_c01374{bottom:861.693512pt;}
.y28_c01374{bottom:862.007540pt;}
.y27_c01374{bottom:862.321333pt;}
.y26_c01374{bottom:888.062760pt;}
.y25_c01374{bottom:888.838040pt;}
.y24_c01374{bottom:889.817187pt;}
.y23_c01374{bottom:890.105293pt;}
.y22_c01374{bottom:890.592520pt;}
.y21_c01374{bottom:891.459000pt;}
.y20_c01374{bottom:892.443120pt;}
.y1f_c01374{bottom:892.728773pt;}
.y1e_c01374{bottom:893.018867pt;}
.y1d_c01374{bottom:894.092000pt;}
.y1c_c01374{bottom:918.451157pt;}
.y1b_c01374{bottom:918.684373pt;}
.y1a_c01374{bottom:919.494784pt;}
.y19_c01374{bottom:920.332501pt;}
.y18_c01374{bottom:921.597120pt;}
.y17_c01374{bottom:922.072053pt;}
.y16_c01374{bottom:922.414219pt;}
.y15_c01374{bottom:923.926389pt;}
.y14_c01374{bottom:924.283947pt;}
.y13_c01374{bottom:925.197184pt;}
.y12_c01374{bottom:949.269141pt;}
.y11_c01374{bottom:949.746923pt;}
.y10_c01374{bottom:950.679552pt;}
.yf_c01374{bottom:951.156501pt;}
.ye_c01374{bottom:951.629120pt;}
.yd_c01374{bottom:952.073707pt;}
.yc_c01374{bottom:952.858005pt;}
.yb_c01374{bottom:954.259669pt;}
.ya_c01374{bottom:954.731989pt;}
.y9_c01374{bottom:955.818816pt;}
.y8_c01374{bottom:957.362667pt;}
.y7_c01374{bottom:1021.392000pt;}
.y6_c01374{bottom:1032.433700pt;}
.y5_c01374{bottom:1033.120033pt;}
.y4_c01374{bottom:1035.355700pt;}
.y3_c01374{bottom:1036.808000pt;}
.y2_c01374{bottom:1085.996000pt;}
.y1_c01374{bottom:1101.360000pt;}
.h2_c01374{height:16.000000pt;}
.h5_c01374{height:32.000000pt;}
.h6_c01374{height:64.008191pt;}
.h9_c01374{height:69.337528pt;}
.ha_c01374{height:69.338325pt;}
.h7_c01374{height:69.342207pt;}
.h4_c01374{height:69.354997pt;}
.h8_c01374{height:74.670400pt;}
.h3_c01374{height:90.666667pt;}
.h1_c01374{height:1111.333333pt;}
.h0_c01374{height:1111.440000pt;}
.w0_c01374{width:781.200000pt;}
.w1_c01374{width:781.333333pt;}
.x0_c01374{left:0.000000pt;}
.x33_c01374{left:107.350667pt;}
.x1c_c01374{left:108.584000pt;}
.x13_c01374{left:110.943403pt;}
.x25_c01374{left:137.616000pt;}
.x34_c01374{left:145.765333pt;}
.x26_c01374{left:166.164000pt;}
.x30_c01374{left:175.205383pt;}
.x14_c01374{left:187.025600pt;}
.x8_c01374{left:207.640000pt;}
.x35_c01374{left:212.964000pt;}
.x1d_c01374{left:215.897333pt;}
.x15_c01374{left:216.791499pt;}
.x1e_c01374{left:244.906667pt;}
.x27_c01374{left:253.804000pt;}
.x4_c01374{left:265.362667pt;}
.x1f_c01374{left:273.472000pt;}
.x36_c01374{left:282.090667pt;}
.x28_c01374{left:293.372000pt;}
.x31_c01374{left:302.894160pt;}
.x9_c01374{left:304.130667pt;}
.x37_c01374{left:320.736000pt;}
.x5_c01374{left:323.454667pt;}
.x2_c01374{left:334.080000pt;}
.x16_c01374{left:342.810229pt;}
.x38_c01374{left:351.222667pt;}
.x3_c01374{left:354.960000pt;}
.x29_c01374{left:361.305333pt;}
.x39_c01374{left:369.706667pt;}
.xa_c01374{left:372.057333pt;}
.x32_c01374{left:392.899709pt;}
.x3a_c01374{left:398.501333pt;}
.xb_c01374{left:401.577333pt;}
.x17_c01374{left:410.966603pt;}
.x6_c01374{left:412.881333pt;}
.x1_c01374{left:429.840000pt;}
.x7_c01374{left:440.334667pt;}
.x3b_c01374{left:447.706667pt;}
.x20_c01374{left:458.532000pt;}
.xc_c01374{left:489.181333pt;}
.x2a_c01374{left:497.393333pt;}
.x21_c01374{left:507.254667pt;}
.x18_c01374{left:516.345344pt;}
.x2b_c01374{left:526.914667pt;}
.x22_c01374{left:536.065333pt;}
.xd_c01374{left:538.200000pt;}
.xe_c01374{left:565.986667pt;}
.x19_c01374{left:586.207157pt;}
.xf_c01374{left:595.525333pt;}
.x2c_c01374{left:614.048000pt;}
.x10_c01374{left:625.334667pt;}
.x23_c01374{left:633.980000pt;}
.x2d_c01374{left:643.324000pt;}
.x1a_c01374{left:653.695467pt;}
.x1b_c01374{left:673.106037pt;}
.x2e_c01374{left:682.217333pt;}
.x11_c01374{left:683.624000pt;}
.x24_c01374{left:711.508000pt;}
.x12_c01374{left:713.485333pt;}
.x2f_c01374{left:733.561333pt;}
}





/* 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_c01375 {
    display:none;
  }
  .loading-indicator_c01375.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01375 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_c01375 { 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_c01375" -> "#page-container .classname_c01375")
 */
.pf_c01375 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01375 { /* 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_c01375.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01375 { /* 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_c01375 { /* 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_c01375 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01375 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01375 {overflow:visible;}
  }
}
.c_c01375 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01375 { /* 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_c01375:after { /* webkit #35443 */
  content: '';
}
.t_c01375:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01375 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 */
}
.__c01375 { /* 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_c01375 { /* info for Javascript */
  display:none;
}
.l_c01375 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01375 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01375 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01375: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_c01375 {
    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_c01375.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01375.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_c01375 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01375{font-family:sans-serif;visibility:hidden;}
.sc__c01375{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01375{-webkit-text-stroke:0px transparent;}
}
.y0_c01375{bottom:0.000000px;}
.h1_c01375{height:1250.250000px;}
.h0_c01375{height:1250.370000px;}
.w0_c01375{width:878.850000px;}
.w1_c01375{width:879.000000px;}
.x0_c01375{left:0.000000px;}
@media print{
.y0_c01375{bottom:0.000000pt;}
.h1_c01375{height:1111.333333pt;}
.h0_c01375{height:1111.440000pt;}
.w0_c01375{width:781.200000pt;}
.w1_c01375{width:781.333333pt;}
.x0_c01375{left:0.000000pt;}
}





/* 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_c01376 {
    display:none;
  }
  .loading-indicator_c01376.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01376 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_c01376 { 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_c01376" -> "#page-container .classname_c01376")
 */
.pf_c01376 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01376 { /* 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_c01376.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01376 { /* 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_c01376 { /* 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_c01376 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01376 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01376 {overflow:visible;}
  }
}
.c_c01376 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01376 { /* 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_c01376:after { /* webkit #35443 */
  content: '';
}
.t_c01376:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01376 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 */
}
.__c01376 { /* 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_c01376 { /* info for Javascript */
  display:none;
}
.l_c01376 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01376 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01376 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01376: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_c01376 {
    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_c01376.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01376.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_c01376 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01376{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01376;src:url('chunks/assets/font_c605e72f209fc835e906f064.woff2')format("woff");}.ff1_c01376{font-family:ff1_c01376;line-height:1.000000;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;}
.m52_c01376{transform:matrix(0.040560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.040560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.040560,0.000000,0.000000,0.250000,0,0);}
.m50_c01376{transform:matrix(0.047730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.047730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.047730,0.000000,0.000000,0.250000,0,0);}
.m46_c01376{transform:matrix(0.081125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.081125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.081125,0.000000,0.000000,0.250000,0,0);}
.m51_c01376{transform:matrix(0.085515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.085515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.085515,0.000000,0.000000,0.250000,0,0);}
.m3e_c01376{transform:matrix(0.147595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147595,0.000000,0.000000,0.250000,0,0);}
.m40_c01376{transform:matrix(0.149800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149800,0.000000,0.000000,0.250000,0,0);}
.m42_c01376{transform:matrix(0.153400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153400,0.000000,0.000000,0.250000,0,0);}
.m3f_c01376{transform:matrix(0.153945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153945,0.000000,0.000000,0.250000,0,0);}
.m44_c01376{transform:matrix(0.159080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159080,0.000000,0.000000,0.250000,0,0);}
.m3d_c01376{transform:matrix(0.160430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160430,0.000000,0.000000,0.250000,0,0);}
.m43_c01376{transform:matrix(0.161370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161370,0.000000,0.000000,0.250000,0,0);}
.m41_c01376{transform:matrix(0.164880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164880,0.000000,0.000000,0.250000,0,0);}
.m3c_c01376{transform:matrix(0.169255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169255,0.000000,0.000000,0.250000,0,0);}
.m3b_c01376{transform:matrix(0.169270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169270,0.000000,0.000000,0.250000,0,0);}
.m4f_c01376{transform:matrix(0.180350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180350,0.000000,0.000000,0.250000,0,0);}
.m30_c01376{transform:matrix(0.202665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202665,0.000000,0.000000,0.250000,0,0);}
.m32_c01376{transform:matrix(0.203290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203290,0.000000,0.000000,0.250000,0,0);}
.m2e_c01376{transform:matrix(0.207425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207425,0.000000,0.000000,0.250000,0,0);}
.m3a_c01376{transform:matrix(0.214275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214275,0.000000,0.000000,0.250000,0,0);}
.m2d_c01376{transform:matrix(0.215225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215225,0.000000,0.000000,0.250000,0,0);}
.m2f_c01376{transform:matrix(0.219180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219180,0.000000,0.000000,0.250000,0,0);}
.m16_c01376{transform:matrix(0.219860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219860,0.000000,0.000000,0.250000,0,0);}
.m31_c01376{transform:matrix(0.221600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221600,0.000000,0.000000,0.250000,0,0);}
.m2a_c01376{transform:matrix(0.222845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222845,0.000000,0.000000,0.250000,0,0);}
.m2c_c01376{transform:matrix(0.224035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224035,0.000000,0.000000,0.250000,0,0);}
.m10_c01376{transform:matrix(0.224600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224600,0.000000,0.000000,0.250000,0,0);}
.m26_c01376{transform:matrix(0.226575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226575,0.000000,0.000000,0.250000,0,0);}
.m17_c01376{transform:matrix(0.229205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229205,0.000000,0.000000,0.250000,0,0);}
.m25_c01376{transform:matrix(0.229885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229885,0.000000,0.000000,0.250000,0,0);}
.ma_c01376{transform:matrix(0.232595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232595,0.000000,0.000000,0.250000,0,0);}
.m12_c01376{transform:matrix(0.234780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234780,0.000000,0.000000,0.250000,0,0);}
.m1e_c01376{transform:matrix(0.237975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237975,0.000000,0.000000,0.250000,0,0);}
.m1c_c01376{transform:matrix(0.238535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238535,0.000000,0.000000,0.250000,0,0);}
.m8_c01376{transform:matrix(0.239910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239910,0.000000,0.000000,0.250000,0,0);}
.me_c01376{transform:matrix(0.244935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244935,0.000000,0.000000,0.250000,0,0);}
.m15_c01376{transform:matrix(0.245015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245015,0.000000,0.000000,0.250000,0,0);}
.md_c01376{transform:matrix(0.245460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245460,0.000000,0.000000,0.250000,0,0);}
.m29_c01376{transform:matrix(0.246190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246190,0.000000,0.000000,0.250000,0,0);}
.m24_c01376{transform:matrix(0.247385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247385,0.000000,0.000000,0.250000,0,0);}
.m11_c01376{transform:matrix(0.248045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248045,0.000000,0.000000,0.250000,0,0);}
.m1f_c01376{transform:matrix(0.248445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248445,0.000000,0.000000,0.250000,0,0);}
.mf_c01376{transform:matrix(0.249545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249545,0.000000,0.000000,0.250000,0,0);}
.m18_c01376{transform:matrix(0.250055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250055,0.000000,0.000000,0.250000,0,0);}
.m14_c01376{transform:matrix(0.250485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250485,0.000000,0.000000,0.250000,0,0);}
.m1a_c01376{transform:matrix(0.252115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252115,0.000000,0.000000,0.250000,0,0);}
.m1_c01376{transform:matrix(0.252635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252635,0.000000,0.000000,0.250000,0,0);}
.m13_c01376{transform:matrix(0.252690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252690,0.000000,0.000000,0.250000,0,0);}
.m28_c01376{transform:matrix(0.252920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252920,0.000000,0.000000,0.250000,0,0);}
.m1b_c01376{transform:matrix(0.253300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253300,0.000000,0.000000,0.250000,0,0);}
.m27_c01376{transform:matrix(0.253595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253595,0.000000,0.000000,0.250000,0,0);}
.mb_c01376{transform:matrix(0.254470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254470,0.000000,0.000000,0.250000,0,0);}
.m2b_c01376{transform:matrix(0.255765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255765,0.000000,0.000000,0.250000,0,0);}
.m2_c01376{transform:matrix(0.255875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255875,0.000000,0.000000,0.250000,0,0);}
.m23_c01376{transform:matrix(0.265415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265415,0.000000,0.000000,0.250000,0,0);}
.m7_c01376{transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);}
.m19_c01376{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m22_c01376{transform:matrix(0.268015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268015,0.000000,0.000000,0.250000,0,0);}
.m9_c01376{transform:matrix(0.271195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271195,0.000000,0.000000,0.250000,0,0);}
.m20_c01376{transform:matrix(0.271600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271600,0.000000,0.000000,0.250000,0,0);}
.m3_c01376{transform:matrix(0.272435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272435,0.000000,0.000000,0.250000,0,0);}
.m1d_c01376{transform:matrix(0.273580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273580,0.000000,0.000000,0.250000,0,0);}
.m6_c01376{transform:matrix(0.276195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276195,0.000000,0.000000,0.250000,0,0);}
.mc_c01376{transform:matrix(0.280030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280030,0.000000,0.000000,0.250000,0,0);}
.m21_c01376{transform:matrix(0.282575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282575,0.000000,0.000000,0.250000,0,0);}
.m33_c01376{transform:matrix(0.314755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314755,0.000000,0.000000,0.250000,0,0);}
.m45_c01376{transform:matrix(0.332040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332040,0.000000,0.000000,0.250000,0,0);}
.m47_c01376{transform:matrix(0.336340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336340,0.000000,0.000000,0.250000,0,0);}
.m48_c01376{transform:matrix(0.362845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362845,0.000000,0.000000,0.250000,0,0);}
.m35_c01376{transform:matrix(0.369355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369355,0.000000,0.000000,0.250000,0,0);}
.m37_c01376{transform:matrix(0.420370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420370,0.000000,0.000000,0.250000,0,0);}
.m0_c01376{transform:matrix(0.448580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.448580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.448580,0.000000,0.000000,0.250000,0,0);}
.m4c_c01376{transform:matrix(0.477430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477430,0.000000,0.000000,0.250000,0,0);}
.m34_c01376{transform:matrix(0.514220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514220,0.000000,0.000000,0.250000,0,0);}
.m38_c01376{transform:matrix(0.530125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530125,0.000000,0.000000,0.250000,0,0);}
.m36_c01376{transform:matrix(0.546090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.546090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.546090,0.000000,0.000000,0.250000,0,0);}
.m4_c01376{transform:matrix(0.660945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.660945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.660945,0.000000,0.000000,0.250000,0,0);}
.m39_c01376{transform:matrix(0.840745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.840745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.840745,0.000000,0.000000,0.250000,0,0);}
.m4a_c01376{transform:matrix(0.948475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.948475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.948475,0.000000,0.000000,0.250000,0,0);}
.m4b_c01376{transform:matrix(1.053425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.053425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.053425,0.000000,0.000000,0.250000,0,0);}
.m4d_c01376{transform:matrix(1.572830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.572830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.572830,0.000000,0.000000,0.250000,0,0);}
.m5_c01376{transform:matrix(1.834975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.834975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.834975,0.000000,0.000000,0.250000,0,0);}
.m4e_c01376{transform:matrix(3.871045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.871045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.871045,0.000000,0.000000,0.250000,0,0);}
.m49_c01376{transform:matrix(9.241620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(9.241620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(9.241620,0.000000,0.000000,0.250000,0,0);}
.v0_c01376{vertical-align:0.000000px;}
.ls0_c01376{letter-spacing:0.000000px;}
.sc__c01376{text-shadow:none;}
.sc0_c01376{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__c01376{-webkit-text-stroke:0px transparent;}
.sc0_c01376{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01376{word-spacing:0.000000px;}
._0_c01376{width:9.445385px;}
.fc0_c01376{color:transparent;}
.fs7_c01376{font-size:12.000000px;}
.fs5_c01376{font-size:24.000000px;}
.fs2_c01376{font-size:36.000000px;}
.fs8_c01376{font-size:54.000000px;}
.fs3_c01376{font-size:72.000000px;}
.fs1_c01376{font-size:78.000000px;}
.fs4_c01376{font-size:84.000000px;}
.fs6_c01376{font-size:114.000000px;}
.fs0_c01376{font-size:150.000000px;}
.y0_c01376{bottom:0.000000px;}
.yb_c01376{bottom:14.313000px;}
.ya_c01376{bottom:806.733000px;}
.y9_c01376{bottom:836.821500px;}
.y8_c01376{bottom:912.870000px;}
.y7_c01376{bottom:948.993000px;}
.y6_c01376{bottom:982.530000px;}
.y5_c01376{bottom:1018.224000px;}
.y4_c01376{bottom:1054.896000px;}
.y3_c01376{bottom:1128.870000px;}
.y2_c01376{bottom:1143.693000px;}
.y1_c01376{bottom:1191.669000px;}
.h9_c01376{height:12.000000px;}
.h7_c01376{height:24.000000px;}
.h4_c01376{height:36.000000px;}
.ha_c01376{height:54.000000px;}
.h5_c01376{height:72.000000px;}
.h3_c01376{height:78.000000px;}
.h6_c01376{height:84.000000px;}
.h8_c01376{height:114.000000px;}
.h2_c01376{height:150.000000px;}
.h1_c01376{height:1250.250000px;}
.h0_c01376{height:1250.370000px;}
.w0_c01376{width:878.850000px;}
.w1_c01376{width:879.000000px;}
.x0_c01376{left:0.000000px;}
.x37_c01376{left:21.060000px;}
.x29_c01376{left:150.930000px;}
.xf_c01376{left:153.360000px;}
.x38_c01376{left:170.370000px;}
.x2a_c01376{left:175.230000px;}
.x26_c01376{left:186.300000px;}
.x2b_c01376{left:206.010000px;}
.x2f_c01376{left:208.170000px;}
.x18_c01376{left:219.510000px;}
.x20_c01376{left:229.770000px;}
.x35_c01376{left:242.730000px;}
.x39_c01376{left:246.240000px;}
.x10_c01376{left:252.450000px;}
.x19_c01376{left:262.440000px;}
.x6_c01376{left:263.520000px;}
.x2c_c01376{left:282.690000px;}
.x27_c01376{left:284.580000px;}
.x11_c01376{left:296.730000px;}
.x2d_c01376{left:310.500000px;}
.x2_c01376{left:316.170000px;}
.x1a_c01376{left:317.250000px;}
.x2e_c01376{left:345.330000px;}
.x1b_c01376{left:350.460000px;}
.x7_c01376{left:361.260000px;}
.x12_c01376{left:371.520000px;}
.x1_c01376{left:376.920000px;}
.x1c_c01376{left:384.210000px;}
.x28_c01376{left:386.100000px;}
.x3_c01376{left:393.660000px;}
.x3a_c01376{left:397.440000px;}
.x13_c01376{left:417.150000px;}
.x30_c01376{left:428.220000px;}
.x8_c01376{left:437.400000px;}
.x31_c01376{left:448.470000px;}
.x5_c01376{left:459.270000px;}
.x9_c01376{left:471.690000px;}
.x1d_c01376{left:480.870000px;}
.x21_c01376{left:492.480000px;}
.x4_c01376{left:508.680000px;}
.x14_c01376{left:513.270000px;}
.x32_c01376{left:536.760000px;}
.xa_c01376{left:558.090000px;}
.x3b_c01376{left:566.190000px;}
.x22_c01376{left:579.150000px;}
.xb_c01376{left:590.760000px;}
.xc_c01376{left:624.240000px;}
.x1e_c01376{left:645.300000px;}
.x23_c01376{left:655.830000px;}
.x15_c01376{left:667.170000px;}
.x3c_c01376{left:684.990000px;}
.x24_c01376{left:688.770000px;}
.x16_c01376{left:700.380000px;}
.xd_c01376{left:733.320000px;}
.x17_c01376{left:734.400000px;}
.xe_c01376{left:767.070000px;}
.x1f_c01376{left:776.790000px;}
.x25_c01376{left:788.130000px;}
.x3d_c01376{left:795.150000px;}
.x36_c01376{left:851.850000px;}
.x33_c01376{left:856.440000px;}
.x3e_c01376{left:862.920000px;}
.x34_c01376{left:871.830000px;}
@media print{
.v0_c01376{vertical-align:0.000000pt;}
.ls0_c01376{letter-spacing:0.000000pt;}
.ws0_c01376{word-spacing:0.000000pt;}
._0_c01376{width:8.395897pt;}
.fs7_c01376{font-size:10.666667pt;}
.fs5_c01376{font-size:21.333333pt;}
.fs2_c01376{font-size:32.000000pt;}
.fs8_c01376{font-size:48.000000pt;}
.fs3_c01376{font-size:64.000000pt;}
.fs1_c01376{font-size:69.333333pt;}
.fs4_c01376{font-size:74.666667pt;}
.fs6_c01376{font-size:101.333333pt;}
.fs0_c01376{font-size:133.333333pt;}
.y0_c01376{bottom:0.000000pt;}
.yb_c01376{bottom:12.722667pt;}
.ya_c01376{bottom:717.096000pt;}
.y9_c01376{bottom:743.841333pt;}
.y8_c01376{bottom:811.440000pt;}
.y7_c01376{bottom:843.549333pt;}
.y6_c01376{bottom:873.360000pt;}
.y5_c01376{bottom:905.088000pt;}
.y4_c01376{bottom:937.685333pt;}
.y3_c01376{bottom:1003.440000pt;}
.y2_c01376{bottom:1016.616000pt;}
.y1_c01376{bottom:1059.261333pt;}
.h9_c01376{height:10.666667pt;}
.h7_c01376{height:21.333333pt;}
.h4_c01376{height:32.000000pt;}
.ha_c01376{height:48.000000pt;}
.h5_c01376{height:64.000000pt;}
.h3_c01376{height:69.333333pt;}
.h6_c01376{height:74.666667pt;}
.h8_c01376{height:101.333333pt;}
.h2_c01376{height:133.333333pt;}
.h1_c01376{height:1111.333333pt;}
.h0_c01376{height:1111.440000pt;}
.w0_c01376{width:781.200000pt;}
.w1_c01376{width:781.333333pt;}
.x0_c01376{left:0.000000pt;}
.x37_c01376{left:18.720000pt;}
.x29_c01376{left:134.160000pt;}
.xf_c01376{left:136.320000pt;}
.x38_c01376{left:151.440000pt;}
.x2a_c01376{left:155.760000pt;}
.x26_c01376{left:165.600000pt;}
.x2b_c01376{left:183.120000pt;}
.x2f_c01376{left:185.040000pt;}
.x18_c01376{left:195.120000pt;}
.x20_c01376{left:204.240000pt;}
.x35_c01376{left:215.760000pt;}
.x39_c01376{left:218.880000pt;}
.x10_c01376{left:224.400000pt;}
.x19_c01376{left:233.280000pt;}
.x6_c01376{left:234.240000pt;}
.x2c_c01376{left:251.280000pt;}
.x27_c01376{left:252.960000pt;}
.x11_c01376{left:263.760000pt;}
.x2d_c01376{left:276.000000pt;}
.x2_c01376{left:281.040000pt;}
.x1a_c01376{left:282.000000pt;}
.x2e_c01376{left:306.960000pt;}
.x1b_c01376{left:311.520000pt;}
.x7_c01376{left:321.120000pt;}
.x12_c01376{left:330.240000pt;}
.x1_c01376{left:335.040000pt;}
.x1c_c01376{left:341.520000pt;}
.x28_c01376{left:343.200000pt;}
.x3_c01376{left:349.920000pt;}
.x3a_c01376{left:353.280000pt;}
.x13_c01376{left:370.800000pt;}
.x30_c01376{left:380.640000pt;}
.x8_c01376{left:388.800000pt;}
.x31_c01376{left:398.640000pt;}
.x5_c01376{left:408.240000pt;}
.x9_c01376{left:419.280000pt;}
.x1d_c01376{left:427.440000pt;}
.x21_c01376{left:437.760000pt;}
.x4_c01376{left:452.160000pt;}
.x14_c01376{left:456.240000pt;}
.x32_c01376{left:477.120000pt;}
.xa_c01376{left:496.080000pt;}
.x3b_c01376{left:503.280000pt;}
.x22_c01376{left:514.800000pt;}
.xb_c01376{left:525.120000pt;}
.xc_c01376{left:554.880000pt;}
.x1e_c01376{left:573.600000pt;}
.x23_c01376{left:582.960000pt;}
.x15_c01376{left:593.040000pt;}
.x3c_c01376{left:608.880000pt;}
.x24_c01376{left:612.240000pt;}
.x16_c01376{left:622.560000pt;}
.xd_c01376{left:651.840000pt;}
.x17_c01376{left:652.800000pt;}
.xe_c01376{left:681.840000pt;}
.x1f_c01376{left:690.480000pt;}
.x25_c01376{left:700.560000pt;}
.x3d_c01376{left:706.800000pt;}
.x36_c01376{left:757.200000pt;}
.x33_c01376{left:761.280000pt;}
.x3e_c01376{left:767.040000pt;}
.x34_c01376{left:774.960000pt;}
}





/* 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_c01377 {
    display:none;
  }
  .loading-indicator_c01377.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01377 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_c01377 { 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_c01377" -> "#page-container .classname_c01377")
 */
.pf_c01377 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01377 { /* 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_c01377.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01377 { /* 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_c01377 { /* 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_c01377 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01377 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01377 {overflow:visible;}
  }
}
.c_c01377 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01377 { /* 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_c01377:after { /* webkit #35443 */
  content: '';
}
.t_c01377:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01377 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 */
}
.__c01377 { /* 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_c01377 { /* info for Javascript */
  display:none;
}
.l_c01377 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01377 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01377 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01377: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_c01377 {
    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_c01377.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01377.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_c01377 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01377{font-family:sans-serif;visibility:hidden;}
.sc__c01377{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01377{-webkit-text-stroke:0px transparent;}
}
.y0_c01377{bottom:0.000000px;}
.h1_c01377{height:1250.250000px;}
.h0_c01377{height:1250.370000px;}
.w0_c01377{width:878.850000px;}
.w1_c01377{width:879.000000px;}
.x0_c01377{left:0.000000px;}
@media print{
.y0_c01377{bottom:0.000000pt;}
.h1_c01377{height:1111.333333pt;}
.h0_c01377{height:1111.440000pt;}
.w0_c01377{width:781.200000pt;}
.w1_c01377{width:781.333333pt;}
.x0_c01377{left:0.000000pt;}
}





/* 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_c01378 {
    display:none;
  }
  .loading-indicator_c01378.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01378 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_c01378 { 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_c01378" -> "#page-container .classname_c01378")
 */
.pf_c01378 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01378 { /* 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_c01378.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01378 { /* 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_c01378 { /* 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_c01378 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01378 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01378 {overflow:visible;}
  }
}
.c_c01378 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01378 { /* 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_c01378:after { /* webkit #35443 */
  content: '';
}
.t_c01378:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01378 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 */
}
.__c01378 { /* 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_c01378 { /* info for Javascript */
  display:none;
}
.l_c01378 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01378 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01378 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01378: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_c01378 {
    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_c01378.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01378.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_c01378 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01378{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01378;src:url('chunks/assets/font_fabf4b590f7fb32aea93ffb2.woff2')format("woff");}.ff1_c01378{font-family:ff1_c01378;line-height:1.000000;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;}
.md_c01378{transform:matrix(0.035570,-0.000605,0.004249,0.249964,0,0);-ms-transform:matrix(0.035570,-0.000605,0.004249,0.249964,0,0);-webkit-transform:matrix(0.035570,-0.000605,0.004249,0.249964,0,0);}
.m8_c01378{transform:matrix(0.081113,-0.001379,0.004249,0.249964,0,0);-ms-transform:matrix(0.081113,-0.001379,0.004249,0.249964,0,0);-webkit-transform:matrix(0.081113,-0.001379,0.004249,0.249964,0,0);}
.ma_c01378{transform:matrix(0.100046,-0.001701,0.004249,0.249964,0,0);-ms-transform:matrix(0.100046,-0.001701,0.004249,0.249964,0,0);-webkit-transform:matrix(0.100046,-0.001701,0.004249,0.249964,0,0);}
.m7_c01378{transform:matrix(0.114713,-0.001950,0.004249,0.249964,0,0);-ms-transform:matrix(0.114713,-0.001950,0.004249,0.249964,0,0);-webkit-transform:matrix(0.114713,-0.001950,0.004249,0.249964,0,0);}
.m9_c01378{transform:matrix(0.121147,-0.002060,0.004249,0.249964,0,0);-ms-transform:matrix(0.121147,-0.002060,0.004249,0.249964,0,0);-webkit-transform:matrix(0.121147,-0.002060,0.004249,0.249964,0,0);}
.me_c01378{transform:matrix(0.128251,-0.002180,0.004249,0.249964,0,0);-ms-transform:matrix(0.128251,-0.002180,0.004249,0.249964,0,0);-webkit-transform:matrix(0.128251,-0.002180,0.004249,0.249964,0,0);}
.m5_c01378{transform:matrix(0.131661,-0.002238,0.004249,0.249964,0,0);-ms-transform:matrix(0.131661,-0.002238,0.004249,0.249964,0,0);-webkit-transform:matrix(0.131661,-0.002238,0.004249,0.249964,0,0);}
.m6_c01378{transform:matrix(0.139490,-0.002371,0.004249,0.249964,0,0);-ms-transform:matrix(0.139490,-0.002371,0.004249,0.249964,0,0);-webkit-transform:matrix(0.139490,-0.002371,0.004249,0.249964,0,0);}
.m64_c01378{transform:matrix(0.181862,-0.002910,0.003999,0.249968,0,0);-ms-transform:matrix(0.181862,-0.002910,0.003999,0.249968,0,0);-webkit-transform:matrix(0.181862,-0.002910,0.003999,0.249968,0,0);}
.m59_c01378{transform:matrix(0.184426,-0.002951,0.003999,0.249968,0,0);-ms-transform:matrix(0.184426,-0.002951,0.003999,0.249968,0,0);-webkit-transform:matrix(0.184426,-0.002951,0.003999,0.249968,0,0);}
.m53_c01378{transform:matrix(0.188746,-0.003020,0.003999,0.249968,0,0);-ms-transform:matrix(0.188746,-0.003020,0.003999,0.249968,0,0);-webkit-transform:matrix(0.188746,-0.003020,0.003999,0.249968,0,0);}
.m5d_c01378{transform:matrix(0.189581,-0.003033,0.003999,0.249968,0,0);-ms-transform:matrix(0.189581,-0.003033,0.003999,0.249968,0,0);-webkit-transform:matrix(0.189581,-0.003033,0.003999,0.249968,0,0);}
.mb_c01378{transform:matrix(0.194682,-0.003310,0.004249,0.249964,0,0);-ms-transform:matrix(0.194682,-0.003310,0.004249,0.249964,0,0);-webkit-transform:matrix(0.194682,-0.003310,0.004249,0.249964,0,0);}
.m5a_c01378{transform:matrix(0.197395,-0.003158,0.003999,0.249968,0,0);-ms-transform:matrix(0.197395,-0.003158,0.003999,0.249968,0,0);-webkit-transform:matrix(0.197395,-0.003158,0.003999,0.249968,0,0);}
.m2e_c01378{transform:matrix(0.199180,-0.003187,0.003999,0.249968,0,0);-ms-transform:matrix(0.199180,-0.003187,0.003999,0.249968,0,0);-webkit-transform:matrix(0.199180,-0.003187,0.003999,0.249968,0,0);}
.m67_c01378{transform:matrix(0.199339,-0.003189,0.003999,0.249968,0,0);-ms-transform:matrix(0.199339,-0.003189,0.003999,0.249968,0,0);-webkit-transform:matrix(0.199339,-0.003189,0.003999,0.249968,0,0);}
.m5f_c01378{transform:matrix(0.201349,-0.003222,0.003999,0.249968,0,0);-ms-transform:matrix(0.201349,-0.003222,0.003999,0.249968,0,0);-webkit-transform:matrix(0.201349,-0.003222,0.003999,0.249968,0,0);}
.m2b_c01378{transform:matrix(0.202834,-0.003245,0.003999,0.249968,0,0);-ms-transform:matrix(0.202834,-0.003245,0.003999,0.249968,0,0);-webkit-transform:matrix(0.202834,-0.003245,0.003999,0.249968,0,0);}
.m61_c01378{transform:matrix(0.203264,-0.003252,0.003999,0.249968,0,0);-ms-transform:matrix(0.203264,-0.003252,0.003999,0.249968,0,0);-webkit-transform:matrix(0.203264,-0.003252,0.003999,0.249968,0,0);}
.m57_c01378{transform:matrix(0.203779,-0.003260,0.003999,0.249968,0,0);-ms-transform:matrix(0.203779,-0.003260,0.003999,0.249968,0,0);-webkit-transform:matrix(0.203779,-0.003260,0.003999,0.249968,0,0);}
.m50_c01378{transform:matrix(0.204279,-0.003268,0.003999,0.249968,0,0);-ms-transform:matrix(0.204279,-0.003268,0.003999,0.249968,0,0);-webkit-transform:matrix(0.204279,-0.003268,0.003999,0.249968,0,0);}
.m27_c01378{transform:matrix(0.206234,-0.003300,0.003999,0.249968,0,0);-ms-transform:matrix(0.206234,-0.003300,0.003999,0.249968,0,0);-webkit-transform:matrix(0.206234,-0.003300,0.003999,0.249968,0,0);}
.m29_c01378{transform:matrix(0.206514,-0.003304,0.003999,0.249968,0,0);-ms-transform:matrix(0.206514,-0.003304,0.003999,0.249968,0,0);-webkit-transform:matrix(0.206514,-0.003304,0.003999,0.249968,0,0);}
.m30_c01378{transform:matrix(0.206899,-0.003310,0.003999,0.249968,0,0);-ms-transform:matrix(0.206899,-0.003310,0.003999,0.249968,0,0);-webkit-transform:matrix(0.206899,-0.003310,0.003999,0.249968,0,0);}
.m26_c01378{transform:matrix(0.207068,-0.003313,0.003999,0.249968,0,0);-ms-transform:matrix(0.207068,-0.003313,0.003999,0.249968,0,0);-webkit-transform:matrix(0.207068,-0.003313,0.003999,0.249968,0,0);}
.m69_c01378{transform:matrix(0.209843,-0.003357,0.003999,0.249968,0,0);-ms-transform:matrix(0.209843,-0.003357,0.003999,0.249968,0,0);-webkit-transform:matrix(0.209843,-0.003357,0.003999,0.249968,0,0);}
.m62_c01378{transform:matrix(0.210998,-0.003376,0.003999,0.249968,0,0);-ms-transform:matrix(0.210998,-0.003376,0.003999,0.249968,0,0);-webkit-transform:matrix(0.210998,-0.003376,0.003999,0.249968,0,0);}
.m55_c01378{transform:matrix(0.216342,-0.003461,0.003999,0.249968,0,0);-ms-transform:matrix(0.216342,-0.003461,0.003999,0.249968,0,0);-webkit-transform:matrix(0.216342,-0.003461,0.003999,0.249968,0,0);}
.m25_c01378{transform:matrix(0.216512,-0.003464,0.003999,0.249968,0,0);-ms-transform:matrix(0.216512,-0.003464,0.003999,0.249968,0,0);-webkit-transform:matrix(0.216512,-0.003464,0.003999,0.249968,0,0);}
.m28_c01378{transform:matrix(0.216667,-0.003467,0.003999,0.249968,0,0);-ms-transform:matrix(0.216667,-0.003467,0.003999,0.249968,0,0);-webkit-transform:matrix(0.216667,-0.003467,0.003999,0.249968,0,0);}
.m39_c01378{transform:matrix(0.217667,-0.003483,0.003999,0.249968,0,0);-ms-transform:matrix(0.217667,-0.003483,0.003999,0.249968,0,0);-webkit-transform:matrix(0.217667,-0.003483,0.003999,0.249968,0,0);}
.m52_c01378{transform:matrix(0.219932,-0.003519,0.003999,0.249968,0,0);-ms-transform:matrix(0.219932,-0.003519,0.003999,0.249968,0,0);-webkit-transform:matrix(0.219932,-0.003519,0.003999,0.249968,0,0);}
.m51_c01378{transform:matrix(0.220667,-0.003531,0.003999,0.249968,0,0);-ms-transform:matrix(0.220667,-0.003531,0.003999,0.249968,0,0);-webkit-transform:matrix(0.220667,-0.003531,0.003999,0.249968,0,0);}
.m5e_c01378{transform:matrix(0.222227,-0.003556,0.003999,0.249968,0,0);-ms-transform:matrix(0.222227,-0.003556,0.003999,0.249968,0,0);-webkit-transform:matrix(0.222227,-0.003556,0.003999,0.249968,0,0);}
.m2c_c01378{transform:matrix(0.223291,-0.003573,0.003999,0.249968,0,0);-ms-transform:matrix(0.223291,-0.003573,0.003999,0.249968,0,0);-webkit-transform:matrix(0.223291,-0.003573,0.003999,0.249968,0,0);}
.m5b_c01378{transform:matrix(0.223451,-0.003575,0.003999,0.249968,0,0);-ms-transform:matrix(0.223451,-0.003575,0.003999,0.249968,0,0);-webkit-transform:matrix(0.223451,-0.003575,0.003999,0.249968,0,0);}
.m65_c01378{transform:matrix(0.223971,-0.003584,0.003999,0.249968,0,0);-ms-transform:matrix(0.223971,-0.003584,0.003999,0.249968,0,0);-webkit-transform:matrix(0.223971,-0.003584,0.003999,0.249968,0,0);}
.m2a_c01378{transform:matrix(0.224806,-0.003597,0.003999,0.249968,0,0);-ms-transform:matrix(0.224806,-0.003597,0.003999,0.249968,0,0);-webkit-transform:matrix(0.224806,-0.003597,0.003999,0.249968,0,0);}
.m54_c01378{transform:matrix(0.225231,-0.003604,0.003999,0.249968,0,0);-ms-transform:matrix(0.225231,-0.003604,0.003999,0.249968,0,0);-webkit-transform:matrix(0.225231,-0.003604,0.003999,0.249968,0,0);}
.m63_c01378{transform:matrix(0.226271,-0.003620,0.003999,0.249968,0,0);-ms-transform:matrix(0.226271,-0.003620,0.003999,0.249968,0,0);-webkit-transform:matrix(0.226271,-0.003620,0.003999,0.249968,0,0);}
.m58_c01378{transform:matrix(0.226586,-0.003625,0.003999,0.249968,0,0);-ms-transform:matrix(0.226586,-0.003625,0.003999,0.249968,0,0);-webkit-transform:matrix(0.226586,-0.003625,0.003999,0.249968,0,0);}
.m60_c01378{transform:matrix(0.227661,-0.003643,0.003999,0.249968,0,0);-ms-transform:matrix(0.227661,-0.003643,0.003999,0.249968,0,0);-webkit-transform:matrix(0.227661,-0.003643,0.003999,0.249968,0,0);}
.m2d_c01378{transform:matrix(0.228506,-0.003656,0.003999,0.249968,0,0);-ms-transform:matrix(0.228506,-0.003656,0.003999,0.249968,0,0);-webkit-transform:matrix(0.228506,-0.003656,0.003999,0.249968,0,0);}
.m20_c01378{transform:matrix(0.232375,-0.003718,0.003999,0.249968,0,0);-ms-transform:matrix(0.232375,-0.003718,0.003999,0.249968,0,0);-webkit-transform:matrix(0.232375,-0.003718,0.003999,0.249968,0,0);}
.m68_c01378{transform:matrix(0.235430,-0.003767,0.003999,0.249968,0,0);-ms-transform:matrix(0.235430,-0.003767,0.003999,0.249968,0,0);-webkit-transform:matrix(0.235430,-0.003767,0.003999,0.249968,0,0);}
.m4a_c01378{transform:matrix(0.235820,-0.003773,0.003999,0.249968,0,0);-ms-transform:matrix(0.235820,-0.003773,0.003999,0.249968,0,0);-webkit-transform:matrix(0.235820,-0.003773,0.003999,0.249968,0,0);}
.m66_c01378{transform:matrix(0.236300,-0.003781,0.003999,0.249968,0,0);-ms-transform:matrix(0.236300,-0.003781,0.003999,0.249968,0,0);-webkit-transform:matrix(0.236300,-0.003781,0.003999,0.249968,0,0);}
.m44_c01378{transform:matrix(0.236640,-0.003786,0.003999,0.249968,0,0);-ms-transform:matrix(0.236640,-0.003786,0.003999,0.249968,0,0);-webkit-transform:matrix(0.236640,-0.003786,0.003999,0.249968,0,0);}
.m32_c01378{transform:matrix(0.237945,-0.003807,0.003999,0.249968,0,0);-ms-transform:matrix(0.237945,-0.003807,0.003999,0.249968,0,0);-webkit-transform:matrix(0.237945,-0.003807,0.003999,0.249968,0,0);}
.m43_c01378{transform:matrix(0.238155,-0.003810,0.003999,0.249968,0,0);-ms-transform:matrix(0.238155,-0.003810,0.003999,0.249968,0,0);-webkit-transform:matrix(0.238155,-0.003810,0.003999,0.249968,0,0);}
.m56_c01378{transform:matrix(0.238349,-0.003814,0.003999,0.249968,0,0);-ms-transform:matrix(0.238349,-0.003814,0.003999,0.249968,0,0);-webkit-transform:matrix(0.238349,-0.003814,0.003999,0.249968,0,0);}
.m5c_c01378{transform:matrix(0.238589,-0.003817,0.003999,0.249968,0,0);-ms-transform:matrix(0.238589,-0.003817,0.003999,0.249968,0,0);-webkit-transform:matrix(0.238589,-0.003817,0.003999,0.249968,0,0);}
.m38_c01378{transform:matrix(0.240084,-0.003841,0.003999,0.249968,0,0);-ms-transform:matrix(0.240084,-0.003841,0.003999,0.249968,0,0);-webkit-transform:matrix(0.240084,-0.003841,0.003999,0.249968,0,0);}
.m2f_c01378{transform:matrix(0.240589,-0.003849,0.003999,0.249968,0,0);-ms-transform:matrix(0.240589,-0.003849,0.003999,0.249968,0,0);-webkit-transform:matrix(0.240589,-0.003849,0.003999,0.249968,0,0);}
.m35_c01378{transform:matrix(0.241474,-0.003864,0.003999,0.249968,0,0);-ms-transform:matrix(0.241474,-0.003864,0.003999,0.249968,0,0);-webkit-transform:matrix(0.241474,-0.003864,0.003999,0.249968,0,0);}
.m31_c01378{transform:matrix(0.243224,-0.003892,0.003999,0.249968,0,0);-ms-transform:matrix(0.243224,-0.003892,0.003999,0.249968,0,0);-webkit-transform:matrix(0.243224,-0.003892,0.003999,0.249968,0,0);}
.m3a_c01378{transform:matrix(0.243509,-0.003896,0.003999,0.249968,0,0);-ms-transform:matrix(0.243509,-0.003896,0.003999,0.249968,0,0);-webkit-transform:matrix(0.243509,-0.003896,0.003999,0.249968,0,0);}
.m40_c01378{transform:matrix(0.250123,-0.004002,0.003999,0.249968,0,0);-ms-transform:matrix(0.250123,-0.004002,0.003999,0.249968,0,0);-webkit-transform:matrix(0.250123,-0.004002,0.003999,0.249968,0,0);}
.m48_c01378{transform:matrix(0.250438,-0.004007,0.003999,0.249968,0,0);-ms-transform:matrix(0.250438,-0.004007,0.003999,0.249968,0,0);-webkit-transform:matrix(0.250438,-0.004007,0.003999,0.249968,0,0);}
.m3e_c01378{transform:matrix(0.252518,-0.004040,0.003999,0.249968,0,0);-ms-transform:matrix(0.252518,-0.004040,0.003999,0.249968,0,0);-webkit-transform:matrix(0.252518,-0.004040,0.003999,0.249968,0,0);}
.m46_c01378{transform:matrix(0.252848,-0.004046,0.003999,0.249968,0,0);-ms-transform:matrix(0.252848,-0.004046,0.003999,0.249968,0,0);-webkit-transform:matrix(0.252848,-0.004046,0.003999,0.249968,0,0);}
.m4e_c01378{transform:matrix(0.253813,-0.004061,0.003999,0.249968,0,0);-ms-transform:matrix(0.253813,-0.004061,0.003999,0.249968,0,0);-webkit-transform:matrix(0.253813,-0.004061,0.003999,0.249968,0,0);}
.m33_c01378{transform:matrix(0.255077,-0.004081,0.003999,0.249968,0,0);-ms-transform:matrix(0.255077,-0.004081,0.003999,0.249968,0,0);-webkit-transform:matrix(0.255077,-0.004081,0.003999,0.249968,0,0);}
.m23_c01378{transform:matrix(0.255957,-0.004095,0.003999,0.249968,0,0);-ms-transform:matrix(0.255957,-0.004095,0.003999,0.249968,0,0);-webkit-transform:matrix(0.255957,-0.004095,0.003999,0.249968,0,0);}
.m3d_c01378{transform:matrix(0.258317,-0.004133,0.003999,0.249968,0,0);-ms-transform:matrix(0.258317,-0.004133,0.003999,0.249968,0,0);-webkit-transform:matrix(0.258317,-0.004133,0.003999,0.249968,0,0);}
.m1e_c01378{transform:matrix(0.260382,-0.004166,0.003999,0.249968,0,0);-ms-transform:matrix(0.260382,-0.004166,0.003999,0.249968,0,0);-webkit-transform:matrix(0.260382,-0.004166,0.003999,0.249968,0,0);}
.m3b_c01378{transform:matrix(0.260572,-0.004169,0.003999,0.249968,0,0);-ms-transform:matrix(0.260572,-0.004169,0.003999,0.249968,0,0);-webkit-transform:matrix(0.260572,-0.004169,0.003999,0.249968,0,0);}
.m21_c01378{transform:matrix(0.262816,-0.004205,0.003999,0.249968,0,0);-ms-transform:matrix(0.262816,-0.004205,0.003999,0.249968,0,0);-webkit-transform:matrix(0.262816,-0.004205,0.003999,0.249968,0,0);}
.m19_c01378{transform:matrix(0.264577,-0.004498,0.004249,0.249964,0,0);-ms-transform:matrix(0.264577,-0.004498,0.004249,0.249964,0,0);-webkit-transform:matrix(0.264577,-0.004498,0.004249,0.249964,0,0);}
.m36_c01378{transform:matrix(0.265021,-0.004240,0.003999,0.249968,0,0);-ms-transform:matrix(0.265021,-0.004240,0.003999,0.249968,0,0);-webkit-transform:matrix(0.265021,-0.004240,0.003999,0.249968,0,0);}
.m41_c01378{transform:matrix(0.265171,-0.004243,0.003999,0.249968,0,0);-ms-transform:matrix(0.265171,-0.004243,0.003999,0.249968,0,0);-webkit-transform:matrix(0.265171,-0.004243,0.003999,0.249968,0,0);}
.m3c_c01378{transform:matrix(0.265241,-0.004244,0.003999,0.249968,0,0);-ms-transform:matrix(0.265241,-0.004244,0.003999,0.249968,0,0);-webkit-transform:matrix(0.265241,-0.004244,0.003999,0.249968,0,0);}
.m4b_c01378{transform:matrix(0.265676,-0.004251,0.003999,0.249968,0,0);-ms-transform:matrix(0.265676,-0.004251,0.003999,0.249968,0,0);-webkit-transform:matrix(0.265676,-0.004251,0.003999,0.249968,0,0);}
.m1d_c01378{transform:matrix(0.268311,-0.004293,0.003999,0.249968,0,0);-ms-transform:matrix(0.268311,-0.004293,0.003999,0.249968,0,0);-webkit-transform:matrix(0.268311,-0.004293,0.003999,0.249968,0,0);}
.m24_c01378{transform:matrix(0.268796,-0.004301,0.003999,0.249968,0,0);-ms-transform:matrix(0.268796,-0.004301,0.003999,0.249968,0,0);-webkit-transform:matrix(0.268796,-0.004301,0.003999,0.249968,0,0);}
.m1c_c01378{transform:matrix(0.271115,-0.004338,0.003999,0.249968,0,0);-ms-transform:matrix(0.271115,-0.004338,0.003999,0.249968,0,0);-webkit-transform:matrix(0.271115,-0.004338,0.003999,0.249968,0,0);}
.m4d_c01378{transform:matrix(0.272245,-0.004356,0.003999,0.249968,0,0);-ms-transform:matrix(0.272245,-0.004356,0.003999,0.249968,0,0);-webkit-transform:matrix(0.272245,-0.004356,0.003999,0.249968,0,0);}
.m34_c01378{transform:matrix(0.273735,-0.004380,0.003999,0.249968,0,0);-ms-transform:matrix(0.273735,-0.004380,0.003999,0.249968,0,0);-webkit-transform:matrix(0.273735,-0.004380,0.003999,0.249968,0,0);}
.m37_c01378{transform:matrix(0.273750,-0.004380,0.003999,0.249968,0,0);-ms-transform:matrix(0.273750,-0.004380,0.003999,0.249968,0,0);-webkit-transform:matrix(0.273750,-0.004380,0.003999,0.249968,0,0);}
.m42_c01378{transform:matrix(0.273840,-0.004381,0.003999,0.249968,0,0);-ms-transform:matrix(0.273840,-0.004381,0.003999,0.249968,0,0);-webkit-transform:matrix(0.273840,-0.004381,0.003999,0.249968,0,0);}
.m18_c01378{transform:matrix(0.275015,-0.004675,0.004249,0.249964,0,0);-ms-transform:matrix(0.275015,-0.004675,0.004249,0.249964,0,0);-webkit-transform:matrix(0.275015,-0.004675,0.004249,0.249964,0,0);}
.m47_c01378{transform:matrix(0.275020,-0.004400,0.003999,0.249968,0,0);-ms-transform:matrix(0.275020,-0.004400,0.003999,0.249968,0,0);-webkit-transform:matrix(0.275020,-0.004400,0.003999,0.249968,0,0);}
.m4c_c01378{transform:matrix(0.275435,-0.004407,0.003999,0.249968,0,0);-ms-transform:matrix(0.275435,-0.004407,0.003999,0.249968,0,0);-webkit-transform:matrix(0.275435,-0.004407,0.003999,0.249968,0,0);}
.m1f_c01378{transform:matrix(0.276650,-0.004426,0.003999,0.249968,0,0);-ms-transform:matrix(0.276650,-0.004426,0.003999,0.249968,0,0);-webkit-transform:matrix(0.276650,-0.004426,0.003999,0.249968,0,0);}
.m17_c01378{transform:matrix(0.277430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277430,0.000000,0.000000,0.250000,0,0);}
.m3f_c01378{transform:matrix(0.278074,-0.004449,0.003999,0.249968,0,0);-ms-transform:matrix(0.278074,-0.004449,0.003999,0.249968,0,0);-webkit-transform:matrix(0.278074,-0.004449,0.003999,0.249968,0,0);}
.m22_c01378{transform:matrix(0.280424,-0.004487,0.003999,0.249968,0,0);-ms-transform:matrix(0.280424,-0.004487,0.003999,0.249968,0,0);-webkit-transform:matrix(0.280424,-0.004487,0.003999,0.249968,0,0);}
.m45_c01378{transform:matrix(0.281334,-0.004501,0.003999,0.249968,0,0);-ms-transform:matrix(0.281334,-0.004501,0.003999,0.249968,0,0);-webkit-transform:matrix(0.281334,-0.004501,0.003999,0.249968,0,0);}
.m74_c01378{transform:matrix(0.281878,-0.005919,0.005249,0.249945,0,0);-ms-transform:matrix(0.281878,-0.005919,0.005249,0.249945,0,0);-webkit-transform:matrix(0.281878,-0.005919,0.005249,0.249945,0,0);}
.mc_c01378{transform:matrix(0.282109,-0.004796,0.004249,0.249964,0,0);-ms-transform:matrix(0.282109,-0.004796,0.004249,0.249964,0,0);-webkit-transform:matrix(0.282109,-0.004796,0.004249,0.249964,0,0);}
.m6d_c01378{transform:matrix(0.284757,-0.005980,0.005249,0.249945,0,0);-ms-transform:matrix(0.284757,-0.005980,0.005249,0.249945,0,0);-webkit-transform:matrix(0.284757,-0.005980,0.005249,0.249945,0,0);}
.m6f_c01378{transform:matrix(0.293570,-0.006165,0.005249,0.249945,0,0);-ms-transform:matrix(0.293570,-0.006165,0.005249,0.249945,0,0);-webkit-transform:matrix(0.293570,-0.006165,0.005249,0.249945,0,0);}
.m4f_c01378{transform:matrix(0.296707,-0.004747,0.003999,0.249968,0,0);-ms-transform:matrix(0.296707,-0.004747,0.003999,0.249968,0,0);-webkit-transform:matrix(0.296707,-0.004747,0.003999,0.249968,0,0);}
.m49_c01378{transform:matrix(0.297127,-0.004754,0.003999,0.249968,0,0);-ms-transform:matrix(0.297127,-0.004754,0.003999,0.249968,0,0);-webkit-transform:matrix(0.297127,-0.004754,0.003999,0.249968,0,0);}
.m70_c01378{transform:matrix(0.305528,-0.006416,0.005249,0.249945,0,0);-ms-transform:matrix(0.305528,-0.006416,0.005249,0.249945,0,0);-webkit-transform:matrix(0.305528,-0.006416,0.005249,0.249945,0,0);}
.m15_c01378{transform:matrix(0.311115,-0.005289,0.004249,0.249964,0,0);-ms-transform:matrix(0.311115,-0.005289,0.004249,0.249964,0,0);-webkit-transform:matrix(0.311115,-0.005289,0.004249,0.249964,0,0);}
.m72_c01378{transform:matrix(0.312411,-0.006561,0.005249,0.249945,0,0);-ms-transform:matrix(0.312411,-0.006561,0.005249,0.249945,0,0);-webkit-transform:matrix(0.312411,-0.006561,0.005249,0.249945,0,0);}
.m1a_c01378{transform:matrix(0.319494,-0.005431,0.004249,0.249964,0,0);-ms-transform:matrix(0.319494,-0.005431,0.004249,0.249964,0,0);-webkit-transform:matrix(0.319494,-0.005431,0.004249,0.249964,0,0);}
.m71_c01378{transform:matrix(0.323234,-0.006788,0.005249,0.249945,0,0);-ms-transform:matrix(0.323234,-0.006788,0.005249,0.249945,0,0);-webkit-transform:matrix(0.323234,-0.006788,0.005249,0.249945,0,0);}
.m16_c01378{transform:matrix(0.329020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329020,0.000000,0.000000,0.250000,0,0);}
.m6c_c01378{transform:matrix(0.329537,-0.006920,0.005249,0.249945,0,0);-ms-transform:matrix(0.329537,-0.006920,0.005249,0.249945,0,0);-webkit-transform:matrix(0.329537,-0.006920,0.005249,0.249945,0,0);}
.m75_c01378{transform:matrix(0.338970,-0.007118,0.005249,0.249945,0,0);-ms-transform:matrix(0.338970,-0.007118,0.005249,0.249945,0,0);-webkit-transform:matrix(0.338970,-0.007118,0.005249,0.249945,0,0);}
.m73_c01378{transform:matrix(0.345434,-0.007254,0.005249,0.249945,0,0);-ms-transform:matrix(0.345434,-0.007254,0.005249,0.249945,0,0);-webkit-transform:matrix(0.345434,-0.007254,0.005249,0.249945,0,0);}
.m6e_c01378{transform:matrix(0.359411,-0.007548,0.005249,0.249945,0,0);-ms-transform:matrix(0.359411,-0.007548,0.005249,0.249945,0,0);-webkit-transform:matrix(0.359411,-0.007548,0.005249,0.249945,0,0);}
.m1_c01378{transform:matrix(0.427503,-0.007268,0.004249,0.249964,0,0);-ms-transform:matrix(0.427503,-0.007268,0.004249,0.249964,0,0);-webkit-transform:matrix(0.427503,-0.007268,0.004249,0.249964,0,0);}
.m4_c01378{transform:matrix(0.436357,-0.007418,0.004249,0.249964,0,0);-ms-transform:matrix(0.436357,-0.007418,0.004249,0.249964,0,0);-webkit-transform:matrix(0.436357,-0.007418,0.004249,0.249964,0,0);}
.m6b_c01378{transform:matrix(0.442987,-0.009303,0.005249,0.249945,0,0);-ms-transform:matrix(0.442987,-0.009303,0.005249,0.249945,0,0);-webkit-transform:matrix(0.442987,-0.009303,0.005249,0.249945,0,0);}
.m14_c01378{transform:matrix(0.443706,-0.007543,0.004249,0.249964,0,0);-ms-transform:matrix(0.443706,-0.007543,0.004249,0.249964,0,0);-webkit-transform:matrix(0.443706,-0.007543,0.004249,0.249964,0,0);}
.mf_c01378{transform:matrix(0.551630,-0.009378,0.004249,0.249964,0,0);-ms-transform:matrix(0.551630,-0.009378,0.004249,0.249964,0,0);-webkit-transform:matrix(0.551630,-0.009378,0.004249,0.249964,0,0);}
.m3_c01378{transform:matrix(0.684766,-0.011641,0.004249,0.249964,0,0);-ms-transform:matrix(0.684766,-0.011641,0.004249,0.249964,0,0);-webkit-transform:matrix(0.684766,-0.011641,0.004249,0.249964,0,0);}
.m13_c01378{transform:matrix(0.767694,-0.013051,0.004249,0.249964,0,0);-ms-transform:matrix(0.767694,-0.013051,0.004249,0.249964,0,0);-webkit-transform:matrix(0.767694,-0.013051,0.004249,0.249964,0,0);}
.m10_c01378{transform:matrix(0.832150,-0.014147,0.004249,0.249964,0,0);-ms-transform:matrix(0.832150,-0.014147,0.004249,0.249964,0,0);-webkit-transform:matrix(0.832150,-0.014147,0.004249,0.249964,0,0);}
.m2_c01378{transform:matrix(0.892101,-0.015166,0.004249,0.249964,0,0);-ms-transform:matrix(0.892101,-0.015166,0.004249,0.249964,0,0);-webkit-transform:matrix(0.892101,-0.015166,0.004249,0.249964,0,0);}
.m12_c01378{transform:matrix(0.899940,-0.015299,0.004249,0.249964,0,0);-ms-transform:matrix(0.899940,-0.015299,0.004249,0.249964,0,0);-webkit-transform:matrix(0.899940,-0.015299,0.004249,0.249964,0,0);}
.m11_c01378{transform:matrix(0.985823,-0.016759,0.004249,0.249964,0,0);-ms-transform:matrix(0.985823,-0.016759,0.004249,0.249964,0,0);-webkit-transform:matrix(0.985823,-0.016759,0.004249,0.249964,0,0);}
.m6a_c01378{transform:matrix(1.113645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.113645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.113645,0.000000,0.000000,0.250000,0,0);}
.m0_c01378{transform:matrix(3.315956,-0.056371,0.004249,0.249964,0,0);-ms-transform:matrix(3.315956,-0.056371,0.004249,0.249964,0,0);-webkit-transform:matrix(3.315956,-0.056371,0.004249,0.249964,0,0);}
.m1b_c01378{transform:matrix(5.134042,-0.071877,0.003500,0.249976,0,0);-ms-transform:matrix(5.134042,-0.071877,0.003500,0.249976,0,0);-webkit-transform:matrix(5.134042,-0.071877,0.003500,0.249976,0,0);}
.v0_c01378{vertical-align:0.000000px;}
.ls0_c01378{letter-spacing:0.000000px;}
.sc__c01378{text-shadow:none;}
.sc0_c01378{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__c01378{-webkit-text-stroke:0px transparent;}
.sc0_c01378{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01378{word-spacing:0.000000px;}
.fc0_c01378{color:transparent;}
.fs6_c01378{font-size:18.000000px;}
.fs0_c01378{font-size:24.003468px;}
.fs3_c01378{font-size:30.002940px;}
.fs7_c01378{font-size:54.011906px;}
.fs4_c01378{font-size:72.009215px;}
.fs2_c01378{font-size:72.010403px;}
.fs5_c01378{font-size:84.010751px;}
.fs1_c01378{font-size:126.000000px;}
.y0_c01378{bottom:0.000000px;}
.y70_c01378{bottom:704.167500px;}
.y71_c01378{bottom:705.074385px;}
.y72_c01378{bottom:706.236956px;}
.y73_c01378{bottom:706.889572px;}
.y74_c01378{bottom:708.550630px;}
.y75_c01378{bottom:709.226746px;}
.y76_c01378{bottom:709.899901px;}
.y77_c01378{bottom:710.359424px;}
.y78_c01378{bottom:711.046061px;}
.y79_c01378{bottom:712.203308px;}
.y7a_c01378{bottom:713.366224px;}
.y6f_c01378{bottom:735.414000px;}
.y62_c01378{bottom:809.976288px;}
.y63_c01378{bottom:810.566232px;}
.y64_c01378{bottom:811.418136px;}
.y65_c01378{bottom:812.241348px;}
.y66_c01378{bottom:813.506616px;}
.y67_c01378{bottom:814.317612px;}
.y68_c01378{bottom:814.958016px;}
.y69_c01378{bottom:816.409116px;}
.y6a_c01378{bottom:816.826212px;}
.y6b_c01378{bottom:818.078988px;}
.y6c_c01378{bottom:819.934464px;}
.y6d_c01378{bottom:820.561632px;}
.y6e_c01378{bottom:822.280956px;}
.y55_c01378{bottom:846.697728px;}
.y56_c01378{bottom:847.429044px;}
.y57_c01378{bottom:848.172216px;}
.y58_c01378{bottom:849.104628px;}
.y59_c01378{bottom:849.490176px;}
.y5a_c01378{bottom:850.780500px;}
.y5b_c01378{bottom:851.526096px;}
.y5c_c01378{bottom:853.223220px;}
.y5d_c01378{bottom:853.940364px;}
.y5e_c01378{bottom:855.247224px;}
.y5f_c01378{bottom:855.632844px;}
.y60_c01378{bottom:856.175064px;}
.y61_c01378{bottom:857.107476px;}
.y4b_c01378{bottom:883.152876px;}
.y4c_c01378{bottom:884.017812px;}
.y4d_c01378{bottom:885.577404px;}
.y4e_c01378{bottom:886.440564px;}
.y4f_c01378{bottom:887.681172px;}
.y50_c01378{bottom:888.204036px;}
.y51_c01378{bottom:889.613076px;}
.y52_c01378{bottom:891.358692px;}
.y53_c01378{bottom:892.943316px;}
.y54_c01378{bottom:893.631204px;}
.y40_c01378{bottom:916.371432px;}
.y41_c01378{bottom:917.052432px;}
.y42_c01378{bottom:919.120416px;}
.y43_c01378{bottom:919.575120px;}
.y44_c01378{bottom:920.267208px;}
.y45_c01378{bottom:921.888300px;}
.y46_c01378{bottom:923.515116px;}
.y47_c01378{bottom:925.580412px;}
.y48_c01378{bottom:927.857424px;}
.y49_c01378{bottom:928.562064px;}
.y4a_c01378{bottom:929.215296px;}
.y32_c01378{bottom:952.014456px;}
.y33_c01378{bottom:952.640736px;}
.y34_c01378{bottom:953.713692px;}
.y35_c01378{bottom:955.544976px;}
.y36_c01378{bottom:956.202156px;}
.y37_c01378{bottom:957.638112px;}
.y38_c01378{bottom:958.268856px;}
.y39_c01378{bottom:959.934444px;}
.y3a_c01378{bottom:960.350388px;}
.y3b_c01378{bottom:960.761664px;}
.y3c_c01378{bottom:961.401660px;}
.y3d_c01378{bottom:962.624112px;}
.y3e_c01378{bottom:963.250296px;}
.y3f_c01378{bottom:964.502352px;}
.y25_c01378{bottom:987.118008px;}
.y26_c01378{bottom:987.951120px;}
.y27_c01378{bottom:988.777428px;}
.y28_c01378{bottom:989.419668px;}
.y29_c01378{bottom:989.799204px;}
.y2a_c01378{bottom:990.418680px;}
.y2b_c01378{bottom:991.675872px;}
.y2c_c01378{bottom:992.312436px;}
.y2d_c01378{bottom:993.374748px;}
.y2e_c01378{bottom:995.010828px;}
.y2f_c01378{bottom:995.658036px;}
.y30_c01378{bottom:998.335740px;}
.y31_c01378{bottom:998.966076px;}
.y1c_c01378{bottom:1025.733000px;}
.y1d_c01378{bottom:1027.465512px;}
.y1e_c01378{bottom:1028.701152px;}
.y1f_c01378{bottom:1029.600360px;}
.y20_c01378{bottom:1031.332320px;}
.y21_c01378{bottom:1031.868288px;}
.y22_c01378{bottom:1032.902016px;}
.y23_c01378{bottom:1033.972344px;}
.y24_c01378{bottom:1034.469000px;}
.y1b_c01378{bottom:1101.061500px;}
.y18_c01378{bottom:1115.104500px;}
.y19_c01378{bottom:1116.582429px;}
.y1a_c01378{bottom:1117.904783px;}
.y17_c01378{bottom:1193.251500px;}
.ye_c01378{bottom:1240.109799px;}
.yf_c01378{bottom:1241.111936px;}
.y10_c01378{bottom:1241.525758px;}
.y11_c01378{bottom:1242.340833px;}
.y12_c01378{bottom:1244.441376px;}
.y13_c01378{bottom:1244.912106px;}
.y1_c01378{bottom:1244.971500px;}
.y14_c01378{bottom:1245.417890px;}
.y15_c01378{bottom:1245.888543px;}
.y16_c01378{bottom:1246.204842px;}
.y2_c01378{bottom:1247.343561px;}
.y3_c01378{bottom:1248.005516px;}
.y4_c01378{bottom:1248.648013px;}
.y5_c01378{bottom:1249.184967px;}
.y6_c01378{bottom:1250.001859px;}
.y7_c01378{bottom:1250.038579px;}
.y8_c01378{bottom:1250.332289px;}
.y9_c01378{bottom:1250.373599px;}
.ya_c01378{bottom:1250.456218px;}
.yb_c01378{bottom:1250.791238px;}
.yc_c01378{bottom:1250.873857px;}
.yd_c01378{bottom:1250.997762px;}
.h8_c01378{height:18.000000px;}
.h2_c01378{height:24.003468px;}
.h5_c01378{height:30.002940px;}
.h9_c01378{height:54.011906px;}
.h6_c01378{height:72.009215px;}
.h4_c01378{height:72.010403px;}
.h7_c01378{height:84.010751px;}
.h3_c01378{height:126.000000px;}
.h1_c01378{height:1250.250000px;}
.h0_c01378{height:1250.370000px;}
.w0_c01378{width:878.850000px;}
.w1_c01378{width:879.000000px;}
.x0_c01378{left:0.000000px;}
.x23_c01378{left:126.015324px;}
.x41_c01378{left:128.702028px;}
.x52_c01378{left:130.117416px;}
.x2f_c01378{left:158.745696px;}
.x53_c01378{left:161.174928px;}
.x24_c01378{left:169.832712px;}
.x49_c01378{left:171.669960px;}
.x5e_c01378{left:174.199500px;}
.x42_c01378{left:182.760528px;}
.x54_c01378{left:205.979268px;}
.x25_c01378{left:213.318624px;}
.x30_c01378{left:215.208984px;}
.x5f_c01378{left:229.560000px;}
.x1_c01378{left:230.644500px;}
.x1b_c01378{left:234.862500px;}
.x26_c01378{left:247.081992px;}
.x55_c01378{left:249.271680px;}
.x3a_c01378{left:257.849748px;}
.x60_c01378{left:260.637000px;}
.xe_c01378{left:263.283555px;}
.x27_c01378{left:267.052032px;}
.x4a_c01378{left:270.204876px;}
.x3b_c01378{left:279.517020px;}
.x4b_c01378{left:292.895016px;}
.x28_c01378{left:299.673972px;}
.x18_c01378{left:308.866500px;}
.x31_c01378{left:311.565852px;}
.x56_c01378{left:315.878988px;}
.xf_c01378{left:318.967111px;}
.x43_c01378{left:334.182528px;}
.x61_c01378{left:339.735000px;}
.x10_c01378{left:341.985729px;}
.x1c_c01378{left:343.144500px;}
.x32_c01378{left:346.169196px;}
.x57_c01378{left:358.595448px;}
.x29_c01378{left:365.870304px;}
.x4c_c01378{left:368.757792px;}
.x2_c01378{left:370.177500px;}
.x62_c01378{left:371.931000px;}
.x16_c01378{left:373.680000px;}
.x11_c01378{left:387.283464px;}
.x3c_c01378{left:389.675712px;}
.x58_c01378{left:392.337840px;}
.x19_c01378{left:395.803500px;}
.x2a_c01378{left:399.372696px;}
.x63_c01378{left:403.986000px;}
.x3_c01378{left:409.116000px;}
.x44_c01378{left:411.720528px;}
.x1d_c01378{left:420.372000px;}
.x33_c01378{left:421.756572px;}
.x64_c01378{left:425.868000px;}
.x17_c01378{left:439.290000px;}
.x45_c01378{left:444.399528px;}
.x4_c01378{left:446.910000px;}
.x2b_c01378{left:455.264508px;}
.x65_c01378{left:458.565000px;}
.x3d_c01378{left:467.158020px;}
.x59_c01378{left:468.684168px;}
.x1a_c01378{left:473.589000px;}
.x1e_c01378{left:476.572500px;}
.x5_c01378{left:478.495500px;}
.x5a_c01378{left:490.626612px;}
.x12_c01378{left:503.960475px;}
.x4d_c01378{left:512.425488px;}
.x66_c01378{left:513.672000px;}
.x6_c01378{left:526.548000px;}
.x7_c01378{left:528.708000px;}
.x13_c01378{left:530.150042px;}
.x46_c01378{left:532.464528px;}
.x2c_c01378{left:541.390380px;}
.x34_c01378{left:542.677788px;}
.x8_c01378{left:545.985000px;}
.x9_c01378{left:548.415000px;}
.xa_c01378{left:553.275000px;}
.x4e_c01378{left:554.621316px;}
.x5b_c01378{left:556.546944px;}
.x14_c01378{left:558.225057px;}
.x35_c01378{left:564.548232px;}
.x67_c01378{left:569.049000px;}
.xb_c01378{left:572.982000px;}
.x2d_c01378{left:575.464248px;}
.xc_c01378{left:577.842000px;}
.xd_c01378{left:585.130500px;}
.x36_c01378{left:586.220700px;}
.x15_c01378{left:601.956818px;}
.x1f_c01378{left:618.318000px;}
.x37_c01378{left:619.937592px;}
.x4f_c01378{left:631.517592px;}
.x47_c01378{left:641.565528px;}
.x50_c01378{left:654.212232px;}
.x3e_c01378{left:673.941984px;}
.x20_c01378{left:682.926000px;}
.x38_c01378{left:684.243996px;}
.x51_c01378{left:686.131728px;}
.x5c_c01378{left:687.237180px;}
.x3f_c01378{left:707.479296px;}
.x2e_c01378{left:716.376480px;}
.x40_c01378{left:738.553800px;}
.x48_c01378{left:740.604528px;}
.x21_c01378{left:749.821500px;}
.x5d_c01378{left:777.721836px;}
.x22_c01378{left:780.862500px;}
.x39_c01378{left:783.066744px;}
@media print{
.v0_c01378{vertical-align:0.000000pt;}
.ls0_c01378{letter-spacing:0.000000pt;}
.ws0_c01378{word-spacing:0.000000pt;}
.fs6_c01378{font-size:16.000000pt;}
.fs0_c01378{font-size:21.336416pt;}
.fs3_c01378{font-size:26.669280pt;}
.fs7_c01378{font-size:48.010583pt;}
.fs4_c01378{font-size:64.008191pt;}
.fs2_c01378{font-size:64.009247pt;}
.fs5_c01378{font-size:74.676223pt;}
.fs1_c01378{font-size:112.000000pt;}
.y0_c01378{bottom:0.000000pt;}
.y70_c01378{bottom:625.926667pt;}
.y71_c01378{bottom:626.732787pt;}
.y72_c01378{bottom:627.766183pt;}
.y73_c01378{bottom:628.346287pt;}
.y74_c01378{bottom:629.822783pt;}
.y75_c01378{bottom:630.423775pt;}
.y76_c01378{bottom:631.022135pt;}
.y77_c01378{bottom:631.430599pt;}
.y78_c01378{bottom:632.040943pt;}
.y79_c01378{bottom:633.069607pt;}
.y7a_c01378{bottom:634.103311pt;}
.y6f_c01378{bottom:653.701333pt;}
.y62_c01378{bottom:719.978923pt;}
.y63_c01378{bottom:720.503317pt;}
.y64_c01378{bottom:721.260565pt;}
.y65_c01378{bottom:721.992309pt;}
.y66_c01378{bottom:723.116992pt;}
.y67_c01378{bottom:723.837877pt;}
.y68_c01378{bottom:724.407125pt;}
.y69_c01378{bottom:725.696992pt;}
.y6a_c01378{bottom:726.067744pt;}
.y6b_c01378{bottom:727.181323pt;}
.y6c_c01378{bottom:728.830635pt;}
.y6d_c01378{bottom:729.388117pt;}
.y6e_c01378{bottom:730.916405pt;}
.y55_c01378{bottom:752.620203pt;}
.y56_c01378{bottom:753.270261pt;}
.y57_c01378{bottom:753.930859pt;}
.y58_c01378{bottom:754.759669pt;}
.y59_c01378{bottom:755.102379pt;}
.y5a_c01378{bottom:756.249333pt;}
.y5b_c01378{bottom:756.912085pt;}
.y5c_c01378{bottom:758.420640pt;}
.y5d_c01378{bottom:759.058101pt;}
.y5e_c01378{bottom:760.219755pt;}
.y5f_c01378{bottom:760.562528pt;}
.y60_c01378{bottom:761.044501pt;}
.y61_c01378{bottom:761.873312pt;}
.y4b_c01378{bottom:785.024779pt;}
.y4c_c01378{bottom:785.793611pt;}
.y4d_c01378{bottom:787.179915pt;}
.y4e_c01378{bottom:787.947168pt;}
.y4f_c01378{bottom:789.049931pt;}
.y50_c01378{bottom:789.514699pt;}
.y51_c01378{bottom:790.767179pt;}
.y52_c01378{bottom:792.318837pt;}
.y53_c01378{bottom:793.727392pt;}
.y54_c01378{bottom:794.338848pt;}
.y40_c01378{bottom:814.552384pt;}
.y41_c01378{bottom:815.157717pt;}
.y42_c01378{bottom:816.995925pt;}
.y43_c01378{bottom:817.400107pt;}
.y44_c01378{bottom:818.015296pt;}
.y45_c01378{bottom:819.456267pt;}
.y46_c01378{bottom:820.902325pt;}
.y47_c01378{bottom:822.738144pt;}
.y48_c01378{bottom:824.762155pt;}
.y49_c01378{bottom:825.388501pt;}
.y4a_c01378{bottom:825.969152pt;}
.y32_c01378{bottom:846.235072pt;}
.y33_c01378{bottom:846.791765pt;}
.y34_c01378{bottom:847.745504pt;}
.y35_c01378{bottom:849.373312pt;}
.y36_c01378{bottom:849.957472pt;}
.y37_c01378{bottom:851.233877pt;}
.y38_c01378{bottom:851.794539pt;}
.y39_c01378{bottom:853.275061pt;}
.y3a_c01378{bottom:853.644789pt;}
.y3b_c01378{bottom:854.010368pt;}
.y3c_c01378{bottom:854.579253pt;}
.y3d_c01378{bottom:855.665877pt;}
.y3e_c01378{bottom:856.222485pt;}
.y3f_c01378{bottom:857.335424pt;}
.y25_c01378{bottom:877.438229pt;}
.y26_c01378{bottom:878.178773pt;}
.y27_c01378{bottom:878.913269pt;}
.y28_c01378{bottom:879.484149pt;}
.y29_c01378{bottom:879.821515pt;}
.y2a_c01378{bottom:880.372160pt;}
.y2b_c01378{bottom:881.489664pt;}
.y2c_c01378{bottom:882.055499pt;}
.y2d_c01378{bottom:882.999776pt;}
.y2e_c01378{bottom:884.454069pt;}
.y2f_c01378{bottom:885.029365pt;}
.y30_c01378{bottom:887.409547pt;}
.y31_c01378{bottom:887.969845pt;}
.y1c_c01378{bottom:911.762667pt;}
.y1d_c01378{bottom:913.302677pt;}
.y1e_c01378{bottom:914.401024pt;}
.y1f_c01378{bottom:915.200320pt;}
.y20_c01378{bottom:916.739840pt;}
.y21_c01378{bottom:917.216256pt;}
.y22_c01378{bottom:918.135125pt;}
.y23_c01378{bottom:919.086528pt;}
.y24_c01378{bottom:919.528000pt;}
.y1b_c01378{bottom:978.721333pt;}
.y18_c01378{bottom:991.204000pt;}
.y19_c01378{bottom:992.517715pt;}
.y1a_c01378{bottom:993.693140pt;}
.y17_c01378{bottom:1060.668000pt;}
.ye_c01378{bottom:1102.319821pt;}
.yf_c01378{bottom:1103.210609pt;}
.y10_c01378{bottom:1103.578452pt;}
.y11_c01378{bottom:1104.302963pt;}
.y12_c01378{bottom:1106.170112pt;}
.y13_c01378{bottom:1106.588539pt;}
.y1_c01378{bottom:1106.641333pt;}
.y14_c01378{bottom:1107.038124pt;}
.y15_c01378{bottom:1107.456483pt;}
.y16_c01378{bottom:1107.737637pt;}
.y2_c01378{bottom:1108.749832pt;}
.y3_c01378{bottom:1109.338236pt;}
.y4_c01378{bottom:1109.909345pt;}
.y5_c01378{bottom:1110.386637pt;}
.y6_c01378{bottom:1111.112764pt;}
.y7_c01378{bottom:1111.145404pt;}
.y8_c01378{bottom:1111.406479pt;}
.y9_c01378{bottom:1111.443199pt;}
.ya_c01378{bottom:1111.516639pt;}
.yb_c01378{bottom:1111.814433pt;}
.yc_c01378{bottom:1111.887873pt;}
.yd_c01378{bottom:1111.998011pt;}
.h8_c01378{height:16.000000pt;}
.h2_c01378{height:21.336416pt;}
.h5_c01378{height:26.669280pt;}
.h9_c01378{height:48.010583pt;}
.h6_c01378{height:64.008191pt;}
.h4_c01378{height:64.009247pt;}
.h7_c01378{height:74.676223pt;}
.h3_c01378{height:112.000000pt;}
.h1_c01378{height:1111.333333pt;}
.h0_c01378{height:1111.440000pt;}
.w0_c01378{width:781.200000pt;}
.w1_c01378{width:781.333333pt;}
.x0_c01378{left:0.000000pt;}
.x23_c01378{left:112.013621pt;}
.x41_c01378{left:114.401803pt;}
.x52_c01378{left:115.659925pt;}
.x2f_c01378{left:141.107285pt;}
.x53_c01378{left:143.266603pt;}
.x24_c01378{left:150.962411pt;}
.x49_c01378{left:152.595520pt;}
.x5e_c01378{left:154.844000pt;}
.x42_c01378{left:162.453803pt;}
.x54_c01378{left:183.092683pt;}
.x25_c01378{left:189.616555pt;}
.x30_c01378{left:191.296875pt;}
.x5f_c01378{left:204.053333pt;}
.x1_c01378{left:205.017333pt;}
.x1b_c01378{left:208.766667pt;}
.x26_c01378{left:219.628437pt;}
.x55_c01378{left:221.574827pt;}
.x3a_c01378{left:229.199776pt;}
.x60_c01378{left:231.677333pt;}
.xe_c01378{left:234.029827pt;}
.x27_c01378{left:237.379584pt;}
.x4a_c01378{left:240.182112pt;}
.x3b_c01378{left:248.459573pt;}
.x4b_c01378{left:260.351125pt;}
.x28_c01378{left:266.376864pt;}
.x18_c01378{left:274.548000pt;}
.x31_c01378{left:276.947424pt;}
.x56_c01378{left:280.781323pt;}
.xf_c01378{left:283.526321pt;}
.x43_c01378{left:297.051136pt;}
.x61_c01378{left:301.986667pt;}
.x10_c01378{left:303.987315pt;}
.x1c_c01378{left:305.017333pt;}
.x32_c01378{left:307.705952pt;}
.x57_c01378{left:318.751509pt;}
.x29_c01378{left:325.218048pt;}
.x4c_c01378{left:327.784704pt;}
.x2_c01378{left:329.046667pt;}
.x62_c01378{left:330.605333pt;}
.x16_c01378{left:332.160000pt;}
.x11_c01378{left:344.251968pt;}
.x3c_c01378{left:346.378411pt;}
.x58_c01378{left:348.744747pt;}
.x19_c01378{left:351.825333pt;}
.x2a_c01378{left:354.997952pt;}
.x63_c01378{left:359.098667pt;}
.x3_c01378{left:363.658667pt;}
.x44_c01378{left:365.973803pt;}
.x1d_c01378{left:373.664000pt;}
.x33_c01378{left:374.894731pt;}
.x64_c01378{left:378.549333pt;}
.x17_c01378{left:390.480000pt;}
.x45_c01378{left:395.021803pt;}
.x4_c01378{left:397.253333pt;}
.x2b_c01378{left:404.679563pt;}
.x65_c01378{left:407.613333pt;}
.x3d_c01378{left:415.251573pt;}
.x59_c01378{left:416.608149pt;}
.x1a_c01378{left:420.968000pt;}
.x1e_c01378{left:423.620000pt;}
.x5_c01378{left:425.329333pt;}
.x5a_c01378{left:436.112544pt;}
.x12_c01378{left:447.964867pt;}
.x4d_c01378{left:455.489323pt;}
.x66_c01378{left:456.597333pt;}
.x6_c01378{left:468.042667pt;}
.x7_c01378{left:469.962667pt;}
.x13_c01378{left:471.244481pt;}
.x46_c01378{left:473.301803pt;}
.x2c_c01378{left:481.235893pt;}
.x34_c01378{left:482.380256pt;}
.x8_c01378{left:485.320000pt;}
.x9_c01378{left:487.480000pt;}
.xa_c01378{left:491.800000pt;}
.x4e_c01378{left:492.996725pt;}
.x5b_c01378{left:494.708395pt;}
.x14_c01378{left:496.200051pt;}
.x35_c01378{left:501.820651pt;}
.x67_c01378{left:505.821333pt;}
.xb_c01378{left:509.317333pt;}
.x2d_c01378{left:511.523776pt;}
.xc_c01378{left:513.637333pt;}
.xd_c01378{left:520.116000pt;}
.x36_c01378{left:521.085067pt;}
.x15_c01378{left:535.072727pt;}
.x1f_c01378{left:549.616000pt;}
.x37_c01378{left:551.055637pt;}
.x4f_c01378{left:561.348971pt;}
.x47_c01378{left:570.280469pt;}
.x50_c01378{left:581.521984pt;}
.x3e_c01378{left:599.059541pt;}
.x20_c01378{left:607.045333pt;}
.x38_c01378{left:608.216885pt;}
.x51_c01378{left:609.894869pt;}
.x5c_c01378{left:610.877493pt;}
.x3f_c01378{left:628.870485pt;}
.x2e_c01378{left:636.779093pt;}
.x40_c01378{left:656.492267pt;}
.x48_c01378{left:658.315136pt;}
.x21_c01378{left:666.508000pt;}
.x5d_c01378{left:691.308299pt;}
.x22_c01378{left:694.100000pt;}
.x39_c01378{left:696.059328pt;}
}





/* 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_c01379 {
    display:none;
  }
  .loading-indicator_c01379.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01379 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_c01379 { 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_c01379" -> "#page-container .classname_c01379")
 */
.pf_c01379 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01379 { /* 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_c01379.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01379 { /* 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_c01379 { /* 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_c01379 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01379 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01379 {overflow:visible;}
  }
}
.c_c01379 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01379 { /* 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_c01379:after { /* webkit #35443 */
  content: '';
}
.t_c01379:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01379 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 */
}
.__c01379 { /* 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_c01379 { /* info for Javascript */
  display:none;
}
.l_c01379 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01379 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01379 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01379: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_c01379 {
    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_c01379.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01379.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_c01379 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01379{font-family:sans-serif;visibility:hidden;}
.sc__c01379{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01379{-webkit-text-stroke:0px transparent;}
}
.y0_c01379{bottom:0.000000px;}
.h1_c01379{height:1250.250000px;}
.h0_c01379{height:1250.370000px;}
.w0_c01379{width:878.850000px;}
.w1_c01379{width:879.000000px;}
.x0_c01379{left:0.000000px;}
@media print{
.y0_c01379{bottom:0.000000pt;}
.h1_c01379{height:1111.333333pt;}
.h0_c01379{height:1111.440000pt;}
.w0_c01379{width:781.200000pt;}
.w1_c01379{width:781.333333pt;}
.x0_c01379{left:0.000000pt;}
}





/* 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_c01380 {
    display:none;
  }
  .loading-indicator_c01380.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01380 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_c01380 { 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_c01380" -> "#page-container .classname_c01380")
 */
.pf_c01380 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01380 { /* 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_c01380.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01380 { /* 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_c01380 { /* 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_c01380 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01380 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01380 {overflow:visible;}
  }
}
.c_c01380 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01380 { /* 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_c01380:after { /* webkit #35443 */
  content: '';
}
.t_c01380:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01380 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 */
}
.__c01380 { /* 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_c01380 { /* info for Javascript */
  display:none;
}
.l_c01380 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01380 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01380 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01380: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_c01380 {
    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_c01380.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01380.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_c01380 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01380{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01380;src:url('chunks/assets/font_53ec0c54e60da7c2d414b553.woff2')format("woff");}.ff1_c01380{font-family:ff1_c01380;line-height:1.000000;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;}
.m31_c01380{transform:matrix(0.015910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.015910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.015910,0.000000,0.000000,0.250000,0,0);}
.m1_c01380{transform:matrix(0.148470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148470,0.000000,0.000000,0.250000,0,0);}
.m6_c01380{transform:matrix(0.163130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163130,0.000000,0.000000,0.250000,0,0);}
.mb_c01380{transform:matrix(0.164050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164050,0.000000,0.000000,0.250000,0,0);}
.m8_c01380{transform:matrix(0.165940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165940,0.000000,0.000000,0.250000,0,0);}
.m5_c01380{transform:matrix(0.168710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168710,0.000000,0.000000,0.250000,0,0);}
.m0_c01380{transform:matrix(0.174770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174770,0.000000,0.000000,0.250000,0,0);}
.m4_c01380{transform:matrix(0.177080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177080,0.000000,0.000000,0.250000,0,0);}
.mf_c01380{transform:matrix(0.181630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181630,0.000000,0.000000,0.250000,0,0);}
.m9_c01380{transform:matrix(0.183285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183285,0.000000,0.000000,0.250000,0,0);}
.mb1_c01380{transform:matrix(0.184600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184600,0.000000,0.000000,0.250000,0,0);}
.m7_c01380{transform:matrix(0.187835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187835,0.000000,0.000000,0.250000,0,0);}
.md_c01380{transform:matrix(0.190320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190320,0.000000,0.000000,0.250000,0,0);}
.ma_c01380{transform:matrix(0.191060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191060,0.000000,0.000000,0.250000,0,0);}
.me_c01380{transform:matrix(0.193900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193900,0.000000,0.000000,0.250000,0,0);}
.m2_c01380{transform:matrix(0.194215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194215,0.000000,0.000000,0.250000,0,0);}
.m11_c01380{transform:matrix(0.194575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194575,0.000000,0.000000,0.250000,0,0);}
.m7e_c01380{transform:matrix(0.197495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197495,0.000000,0.000000,0.250000,0,0);}
.mc_c01380{transform:matrix(0.200175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200175,0.000000,0.000000,0.250000,0,0);}
.m14_c01380{transform:matrix(0.202155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202155,0.000000,0.000000,0.250000,0,0);}
.mb5_c01380{transform:matrix(0.202300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202300,0.000000,0.000000,0.250000,0,0);}
.m12_c01380{transform:matrix(0.205805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205805,0.000000,0.000000,0.250000,0,0);}
.m75_c01380{transform:matrix(0.206405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206405,0.000000,0.000000,0.250000,0,0);}
.m18_c01380{transform:matrix(0.206540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206540,0.000000,0.000000,0.250000,0,0);}
.m7c_c01380{transform:matrix(0.208490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208490,0.000000,0.000000,0.250000,0,0);}
.m29_c01380{transform:matrix(0.210195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210195,0.000000,0.000000,0.250000,0,0);}
.m4f_c01380{transform:matrix(0.210610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210610,0.000000,0.000000,0.250000,0,0);}
.m1a_c01380{transform:matrix(0.210615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210615,0.000000,0.000000,0.250000,0,0);}
.m78_c01380{transform:matrix(0.210620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210620,0.000000,0.000000,0.250000,0,0);}
.maf_c01380{transform:matrix(0.211335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211335,0.000000,0.000000,0.250000,0,0);}
.mb6_c01380{transform:matrix(0.211350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211350,0.000000,0.000000,0.250000,0,0);}
.m3a_c01380{transform:matrix(0.212570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212570,0.000000,0.000000,0.250000,0,0);}
.m4b_c01380{transform:matrix(0.213455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213455,0.000000,0.000000,0.250000,0,0);}
.m7d_c01380{transform:matrix(0.213465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213465,0.000000,0.000000,0.250000,0,0);}
.m33_c01380{transform:matrix(0.213805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213805,0.000000,0.000000,0.250000,0,0);}
.m76_c01380{transform:matrix(0.213820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213820,0.000000,0.000000,0.250000,0,0);}
.m37_c01380{transform:matrix(0.214530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214530,0.000000,0.000000,0.250000,0,0);}
.m71_c01380{transform:matrix(0.215755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215755,0.000000,0.000000,0.250000,0,0);}
.mb2_c01380{transform:matrix(0.216110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216110,0.000000,0.000000,0.250000,0,0);}
.m3_c01380{transform:matrix(0.216220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216220,0.000000,0.000000,0.250000,0,0);}
.m4e_c01380{transform:matrix(0.219315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219315,0.000000,0.000000,0.250000,0,0);}
.m4c_c01380{transform:matrix(0.222125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222125,0.000000,0.000000,0.250000,0,0);}
.ma3_c01380{transform:matrix(0.222215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222215,0.000000,0.000000,0.250000,0,0);}
.m7b_c01380{transform:matrix(0.222490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222490,0.000000,0.000000,0.250000,0,0);}
.m15_c01380{transform:matrix(0.222960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222960,0.000000,0.000000,0.250000,0,0);}
.m9d_c01380{transform:matrix(0.223380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223380,0.000000,0.000000,0.250000,0,0);}
.m10_c01380{transform:matrix(0.223485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223485,0.000000,0.000000,0.250000,0,0);}
.m53_c01380{transform:matrix(0.224070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224070,0.000000,0.000000,0.250000,0,0);}
.m4a_c01380{transform:matrix(0.224620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224620,0.000000,0.000000,0.250000,0,0);}
.ma7_c01380{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m74_c01380{transform:matrix(0.226035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226035,0.000000,0.000000,0.250000,0,0);}
.m52_c01380{transform:matrix(0.226415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226415,0.000000,0.000000,0.250000,0,0);}
.ma4_c01380{transform:matrix(0.228510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228510,0.000000,0.000000,0.250000,0,0);}
.m16_c01380{transform:matrix(0.228535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228535,0.000000,0.000000,0.250000,0,0);}
.m32_c01380{transform:matrix(0.228630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228630,0.000000,0.000000,0.250000,0,0);}
.m9a_c01380{transform:matrix(0.229020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229020,0.000000,0.000000,0.250000,0,0);}
.m17_c01380{transform:matrix(0.229460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229460,0.000000,0.000000,0.250000,0,0);}
.m8d_c01380{transform:matrix(0.229525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229525,0.000000,0.000000,0.250000,0,0);}
.m7a_c01380{transform:matrix(0.229535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229535,0.000000,0.000000,0.250000,0,0);}
.m77_c01380{transform:matrix(0.229800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229800,0.000000,0.000000,0.250000,0,0);}
.m9f_c01380{transform:matrix(0.229875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229875,0.000000,0.000000,0.250000,0,0);}
.ma6_c01380{transform:matrix(0.230455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230455,0.000000,0.000000,0.250000,0,0);}
.ma2_c01380{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m6f_c01380{transform:matrix(0.230785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230785,0.000000,0.000000,0.250000,0,0);}
.m3b_c01380{transform:matrix(0.231160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231160,0.000000,0.000000,0.250000,0,0);}
.ma1_c01380{transform:matrix(0.231255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231255,0.000000,0.000000,0.250000,0,0);}
.m54_c01380{transform:matrix(0.231380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231380,0.000000,0.000000,0.250000,0,0);}
.m67_c01380{transform:matrix(0.231625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231625,0.000000,0.000000,0.250000,0,0);}
.m6c_c01380{transform:matrix(0.232595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232595,0.000000,0.000000,0.250000,0,0);}
.m72_c01380{transform:matrix(0.233525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233525,0.000000,0.000000,0.250000,0,0);}
.ma9_c01380{transform:matrix(0.234165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234165,0.000000,0.000000,0.250000,0,0);}
.m27_c01380{transform:matrix(0.234535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234535,0.000000,0.000000,0.250000,0,0);}
.m13_c01380{transform:matrix(0.235690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235690,0.000000,0.000000,0.250000,0,0);}
.m1d_c01380{transform:matrix(0.235850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235850,0.000000,0.000000,0.250000,0,0);}
.m89_c01380{transform:matrix(0.236645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236645,0.000000,0.000000,0.250000,0,0);}
.m2f_c01380{transform:matrix(0.237170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237170,0.000000,0.000000,0.250000,0,0);}
.m80_c01380{transform:matrix(0.237185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237185,0.000000,0.000000,0.250000,0,0);}
.mae_c01380{transform:matrix(0.237215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237215,0.000000,0.000000,0.250000,0,0);}
.m34_c01380{transform:matrix(0.237805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237805,0.000000,0.000000,0.250000,0,0);}
.m98_c01380{transform:matrix(0.237975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237975,0.000000,0.000000,0.250000,0,0);}
.m3d_c01380{transform:matrix(0.239295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239295,0.000000,0.000000,0.250000,0,0);}
.m46_c01380{transform:matrix(0.240635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240635,0.000000,0.000000,0.250000,0,0);}
.m19_c01380{transform:matrix(0.240770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240770,0.000000,0.000000,0.250000,0,0);}
.mb4_c01380{transform:matrix(0.241370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241370,0.000000,0.000000,0.250000,0,0);}
.m62_c01380{transform:matrix(0.241415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241415,0.000000,0.000000,0.250000,0,0);}
.m91_c01380{transform:matrix(0.242015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242015,0.000000,0.000000,0.250000,0,0);}
.m6d_c01380{transform:matrix(0.242515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242515,0.000000,0.000000,0.250000,0,0);}
.mb7_c01380{transform:matrix(0.242675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242675,0.000000,0.000000,0.250000,0,0);}
.m92_c01380{transform:matrix(0.242745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242745,0.000000,0.000000,0.250000,0,0);}
.m40_c01380{transform:matrix(0.242755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242755,0.000000,0.000000,0.250000,0,0);}
.m87_c01380{transform:matrix(0.243495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243495,0.000000,0.000000,0.250000,0,0);}
.m85_c01380{transform:matrix(0.243540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243540,0.000000,0.000000,0.250000,0,0);}
.mad_c01380{transform:matrix(0.244010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244010,0.000000,0.000000,0.250000,0,0);}
.m21_c01380{transform:matrix(0.244825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244825,0.000000,0.000000,0.250000,0,0);}
.m6b_c01380{transform:matrix(0.244870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244870,0.000000,0.000000,0.250000,0,0);}
.m38_c01380{transform:matrix(0.245600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245600,0.000000,0.000000,0.250000,0,0);}
.m22_c01380{transform:matrix(0.246540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246540,0.000000,0.000000,0.250000,0,0);}
.m49_c01380{transform:matrix(0.246660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246660,0.000000,0.000000,0.250000,0,0);}
.m1b_c01380{transform:matrix(0.246960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246960,0.000000,0.000000,0.250000,0,0);}
.m35_c01380{transform:matrix(0.246980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246980,0.000000,0.000000,0.250000,0,0);}
.m1f_c01380{transform:matrix(0.247215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247215,0.000000,0.000000,0.250000,0,0);}
.m41_c01380{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m39_c01380{transform:matrix(0.247815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247815,0.000000,0.000000,0.250000,0,0);}
.m9e_c01380{transform:matrix(0.247900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247900,0.000000,0.000000,0.250000,0,0);}
.m64_c01380{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m70_c01380{transform:matrix(0.248555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248555,0.000000,0.000000,0.250000,0,0);}
.m8b_c01380{transform:matrix(0.249100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249100,0.000000,0.000000,0.250000,0,0);}
.m51_c01380{transform:matrix(0.249320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249320,0.000000,0.000000,0.250000,0,0);}
.m96_c01380{transform:matrix(0.249625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249625,0.000000,0.000000,0.250000,0,0);}
.m73_c01380{transform:matrix(0.250245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250245,0.000000,0.000000,0.250000,0,0);}
.ma0_c01380{transform:matrix(0.250650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250650,0.000000,0.000000,0.250000,0,0);}
.m2d_c01380{transform:matrix(0.250690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250690,0.000000,0.000000,0.250000,0,0);}
.m9b_c01380{transform:matrix(0.250790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250790,0.000000,0.000000,0.250000,0,0);}
.m50_c01380{transform:matrix(0.251335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251335,0.000000,0.000000,0.250000,0,0);}
.m9c_c01380{transform:matrix(0.251990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251990,0.000000,0.000000,0.250000,0,0);}
.m36_c01380{transform:matrix(0.252240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252240,0.000000,0.000000,0.250000,0,0);}
.ma5_c01380{transform:matrix(0.252255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252255,0.000000,0.000000,0.250000,0,0);}
.m2a_c01380{transform:matrix(0.252435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252435,0.000000,0.000000,0.250000,0,0);}
.m5b_c01380{transform:matrix(0.252680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252680,0.000000,0.000000,0.250000,0,0);}
.m65_c01380{transform:matrix(0.252880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252880,0.000000,0.000000,0.250000,0,0);}
.mb3_c01380{transform:matrix(0.253415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253415,0.000000,0.000000,0.250000,0,0);}
.ma8_c01380{transform:matrix(0.253475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253475,0.000000,0.000000,0.250000,0,0);}
.mb8_c01380{transform:matrix(0.253515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253515,0.000000,0.000000,0.250000,0,0);}
.m4d_c01380{transform:matrix(0.254655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254655,0.000000,0.000000,0.250000,0,0);}
.m94_c01380{transform:matrix(0.255910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255910,0.000000,0.000000,0.250000,0,0);}
.m3c_c01380{transform:matrix(0.256030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256030,0.000000,0.000000,0.250000,0,0);}
.m6e_c01380{transform:matrix(0.256260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256260,0.000000,0.000000,0.250000,0,0);}
.m2b_c01380{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m47_c01380{transform:matrix(0.258535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258535,0.000000,0.000000,0.250000,0,0);}
.m79_c01380{transform:matrix(0.258670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258670,0.000000,0.000000,0.250000,0,0);}
.m69_c01380{transform:matrix(0.258695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258695,0.000000,0.000000,0.250000,0,0);}
.m42_c01380{transform:matrix(0.259520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259520,0.000000,0.000000,0.250000,0,0);}
.m90_c01380{transform:matrix(0.259715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259715,0.000000,0.000000,0.250000,0,0);}
.m43_c01380{transform:matrix(0.260265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260265,0.000000,0.000000,0.250000,0,0);}
.m25_c01380{transform:matrix(0.260930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260930,0.000000,0.000000,0.250000,0,0);}
.m66_c01380{transform:matrix(0.261495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261495,0.000000,0.000000,0.250000,0,0);}
.m1c_c01380{transform:matrix(0.261575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261575,0.000000,0.000000,0.250000,0,0);}
.m48_c01380{transform:matrix(0.262025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262025,0.000000,0.000000,0.250000,0,0);}
.m45_c01380{transform:matrix(0.262255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262255,0.000000,0.000000,0.250000,0,0);}
.m56_c01380{transform:matrix(0.263260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263260,0.000000,0.000000,0.250000,0,0);}
.m59_c01380{transform:matrix(0.263760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263760,0.000000,0.000000,0.250000,0,0);}
.m2c_c01380{transform:matrix(0.263935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263935,0.000000,0.000000,0.250000,0,0);}
.m8f_c01380{transform:matrix(0.265510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265510,0.000000,0.000000,0.250000,0,0);}
.m95_c01380{transform:matrix(0.265900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265900,0.000000,0.000000,0.250000,0,0);}
.m6a_c01380{transform:matrix(0.266480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266480,0.000000,0.000000,0.250000,0,0);}
.m97_c01380{transform:matrix(0.267010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267010,0.000000,0.000000,0.250000,0,0);}
.m7f_c01380{transform:matrix(0.267030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267030,0.000000,0.000000,0.250000,0,0);}
.m68_c01380{transform:matrix(0.267235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267235,0.000000,0.000000,0.250000,0,0);}
.mb9_c01380{transform:matrix(0.267285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267285,0.000000,0.000000,0.250000,0,0);}
.m83_c01380{transform:matrix(0.267740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267740,0.000000,0.000000,0.250000,0,0);}
.m5e_c01380{transform:matrix(0.268010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268010,0.000000,0.000000,0.250000,0,0);}
.m55_c01380{transform:matrix(0.268585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268585,0.000000,0.000000,0.250000,0,0);}
.m63_c01380{transform:matrix(0.268805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268805,0.000000,0.000000,0.250000,0,0);}
.m57_c01380{transform:matrix(0.269385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269385,0.000000,0.000000,0.250000,0,0);}
.mac_c01380{transform:matrix(0.269475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269475,0.000000,0.000000,0.250000,0,0);}
.m5d_c01380{transform:matrix(0.269690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269690,0.000000,0.000000,0.250000,0,0);}
.m8e_c01380{transform:matrix(0.269925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269925,0.000000,0.000000,0.250000,0,0);}
.m84_c01380{transform:matrix(0.270080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270080,0.000000,0.000000,0.250000,0,0);}
.m60_c01380{transform:matrix(0.270280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270280,0.000000,0.000000,0.250000,0,0);}
.mab_c01380{transform:matrix(0.270410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270410,0.000000,0.000000,0.250000,0,0);}
.m28_c01380{transform:matrix(0.270775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270775,0.000000,0.000000,0.250000,0,0);}
.m86_c01380{transform:matrix(0.272400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272400,0.000000,0.000000,0.250000,0,0);}
.m2e_c01380{transform:matrix(0.273420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273420,0.000000,0.000000,0.250000,0,0);}
.m30_c01380{transform:matrix(0.274675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274675,0.000000,0.000000,0.250000,0,0);}
.mc1_c01380{transform:matrix(0.274751,-0.002748,0.002500,0.249988,0,0);-ms-transform:matrix(0.274751,-0.002748,0.002500,0.249988,0,0);-webkit-transform:matrix(0.274751,-0.002748,0.002500,0.249988,0,0);}
.m23_c01380{transform:matrix(0.274925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274925,0.000000,0.000000,0.250000,0,0);}
.m8c_c01380{transform:matrix(0.275380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275380,0.000000,0.000000,0.250000,0,0);}
.m24_c01380{transform:matrix(0.275670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275670,0.000000,0.000000,0.250000,0,0);}
.m88_c01380{transform:matrix(0.276330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276330,0.000000,0.000000,0.250000,0,0);}
.m58_c01380{transform:matrix(0.276855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276855,0.000000,0.000000,0.250000,0,0);}
.m93_c01380{transform:matrix(0.277435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277435,0.000000,0.000000,0.250000,0,0);}
.m1e_c01380{transform:matrix(0.277580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277580,0.000000,0.000000,0.250000,0,0);}
.maa_c01380{transform:matrix(0.277815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277815,0.000000,0.000000,0.250000,0,0);}
.m20_c01380{transform:matrix(0.278105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278105,0.000000,0.000000,0.250000,0,0);}
.m8a_c01380{transform:matrix(0.278740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278740,0.000000,0.000000,0.250000,0,0);}
.m26_c01380{transform:matrix(0.279150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279150,0.000000,0.000000,0.250000,0,0);}
.m3e_c01380{transform:matrix(0.281010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281010,0.000000,0.000000,0.250000,0,0);}
.m99_c01380{transform:matrix(0.281165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281165,0.000000,0.000000,0.250000,0,0);}
.m61_c01380{transform:matrix(0.283020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283020,0.000000,0.000000,0.250000,0,0);}
.m44_c01380{transform:matrix(0.286875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286875,0.000000,0.000000,0.250000,0,0);}
.m5c_c01380{transform:matrix(0.288085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288085,0.000000,0.000000,0.250000,0,0);}
.m3f_c01380{transform:matrix(0.294325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294325,0.000000,0.000000,0.250000,0,0);}
.mb0_c01380{transform:matrix(0.298800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298800,0.000000,0.000000,0.250000,0,0);}
.m5a_c01380{transform:matrix(0.299720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299720,0.000000,0.000000,0.250000,0,0);}
.m5f_c01380{transform:matrix(0.304795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304795,0.000000,0.000000,0.250000,0,0);}
.m82_c01380{transform:matrix(0.314150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314150,0.000000,0.000000,0.250000,0,0);}
.m81_c01380{transform:matrix(0.336110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336110,0.000000,0.000000,0.250000,0,0);}
.mbe_c01380{transform:matrix(0.342488,-0.003425,0.002500,0.249988,0,0);-ms-transform:matrix(0.342488,-0.003425,0.002500,0.249988,0,0);-webkit-transform:matrix(0.342488,-0.003425,0.002500,0.249988,0,0);}
.mc4_c01380{transform:matrix(0.349458,-0.003495,0.002500,0.249988,0,0);-ms-transform:matrix(0.349458,-0.003495,0.002500,0.249988,0,0);-webkit-transform:matrix(0.349458,-0.003495,0.002500,0.249988,0,0);}
.mc3_c01380{transform:matrix(0.351127,-0.003511,0.002500,0.249988,0,0);-ms-transform:matrix(0.351127,-0.003511,0.002500,0.249988,0,0);-webkit-transform:matrix(0.351127,-0.003511,0.002500,0.249988,0,0);}
.mc0_c01380{transform:matrix(0.353617,-0.003536,0.002500,0.249988,0,0);-ms-transform:matrix(0.353617,-0.003536,0.002500,0.249988,0,0);-webkit-transform:matrix(0.353617,-0.003536,0.002500,0.249988,0,0);}
.mc2_c01380{transform:matrix(0.357512,-0.003575,0.002500,0.249988,0,0);-ms-transform:matrix(0.357512,-0.003575,0.002500,0.249988,0,0);-webkit-transform:matrix(0.357512,-0.003575,0.002500,0.249988,0,0);}
.mc6_c01380{transform:matrix(0.359312,-0.003593,0.002500,0.249988,0,0);-ms-transform:matrix(0.359312,-0.003593,0.002500,0.249988,0,0);-webkit-transform:matrix(0.359312,-0.003593,0.002500,0.249988,0,0);}
.mc7_c01380{transform:matrix(0.368707,-0.003687,0.002500,0.249988,0,0);-ms-transform:matrix(0.368707,-0.003687,0.002500,0.249988,0,0);-webkit-transform:matrix(0.368707,-0.003687,0.002500,0.249988,0,0);}
.mbd_c01380{transform:matrix(0.376666,-0.003767,0.002500,0.249988,0,0);-ms-transform:matrix(0.376666,-0.003767,0.002500,0.249988,0,0);-webkit-transform:matrix(0.376666,-0.003767,0.002500,0.249988,0,0);}
.mc5_c01380{transform:matrix(0.392365,-0.003924,0.002500,0.249988,0,0);-ms-transform:matrix(0.392365,-0.003924,0.002500,0.249988,0,0);-webkit-transform:matrix(0.392365,-0.003924,0.002500,0.249988,0,0);}
.mbf_c01380{transform:matrix(0.403530,-0.004035,0.002500,0.249988,0,0);-ms-transform:matrix(0.403530,-0.004035,0.002500,0.249988,0,0);-webkit-transform:matrix(0.403530,-0.004035,0.002500,0.249988,0,0);}
.mbb_c01380{transform:matrix(0.688955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.688955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.688955,0.000000,0.000000,0.250000,0,0);}
.mbc_c01380{transform:matrix(0.998240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.998240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.998240,0.000000,0.000000,0.250000,0,0);}
.mba_c01380{transform:matrix(3.711805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.711805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.711805,0.000000,0.000000,0.250000,0,0);}
.v0_c01380{vertical-align:0.000000px;}
.ls0_c01380{letter-spacing:0.000000px;}
.sc__c01380{text-shadow:none;}
.sc0_c01380{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__c01380{-webkit-text-stroke:0px transparent;}
.sc0_c01380{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01380{word-spacing:0.000000px;}
._0_c01380{width:33.039303px;}
.fc0_c01380{color:transparent;}
.fs6_c01380{font-size:30.000000px;}
.fs7_c01380{font-size:48.002400px;}
.fs5_c01380{font-size:66.000000px;}
.fs3_c01380{font-size:72.000000px;}
.fs4_c01380{font-size:78.000000px;}
.fs2_c01380{font-size:84.000000px;}
.fs1_c01380{font-size:102.000000px;}
.fs0_c01380{font-size:114.000000px;}
.y0_c01380{bottom:0.000000px;}
.y25_c01380{bottom:324.001500px;}
.y26_c01380{bottom:324.325455px;}
.y27_c01380{bottom:325.084230px;}
.y28_c01380{bottom:325.872585px;}
.y29_c01380{bottom:326.190570px;}
.y2a_c01380{bottom:326.399025px;}
.y2b_c01380{bottom:326.863395px;}
.y2c_c01380{bottom:327.060510px;}
.y2d_c01380{bottom:327.395460px;}
.y2e_c01380{bottom:327.943530px;}
.y2f_c01380{bottom:328.497135px;}
.y22_c01380{bottom:354.241500px;}
.y23_c01380{bottom:355.782000px;}
.y24_c01380{bottom:356.446500px;}
.y21_c01380{bottom:361.530000px;}
.y20_c01380{bottom:425.266500px;}
.y1f_c01380{bottom:459.406500px;}
.y1e_c01380{bottom:495.546000px;}
.y1d_c01380{bottom:530.641500px;}
.y1c_c01380{bottom:567.270000px;}
.y1b_c01380{bottom:602.091000px;}
.y1a_c01380{bottom:638.317500px;}
.y19_c01380{bottom:671.754000px;}
.yb_c01380{bottom:706.320000px;}
.yc_c01380{bottom:706.704000px;}
.yd_c01380{bottom:707.307000px;}
.ye_c01380{bottom:707.533500px;}
.yf_c01380{bottom:707.919000px;}
.y10_c01380{bottom:708.537000px;}
.y11_c01380{bottom:708.682500px;}
.y12_c01380{bottom:708.916500px;}
.y13_c01380{bottom:709.147500px;}
.y14_c01380{bottom:709.452000px;}
.y15_c01380{bottom:709.677000px;}
.y16_c01380{bottom:710.446500px;}
.y17_c01380{bottom:710.758500px;}
.y18_c01380{bottom:711.069000px;}
.ya_c01380{bottom:743.119500px;}
.y9_c01380{bottom:779.251500px;}
.y8_c01380{bottom:813.607500px;}
.y7_c01380{bottom:849.451500px;}
.y6_c01380{bottom:885.630000px;}
.y5_c01380{bottom:921.247500px;}
.y4_c01380{bottom:956.320500px;}
.y3_c01380{bottom:990.946500px;}
.y2_c01380{bottom:1027.653000px;}
.y1_c01380{bottom:1099.761000px;}
.h8_c01380{height:30.000000px;}
.h9_c01380{height:48.002400px;}
.h7_c01380{height:66.000000px;}
.h5_c01380{height:72.000000px;}
.h6_c01380{height:78.000000px;}
.h4_c01380{height:84.000000px;}
.h3_c01380{height:102.000000px;}
.h2_c01380{height:114.000000px;}
.h1_c01380{height:1250.250000px;}
.h0_c01380{height:1250.370000px;}
.w0_c01380{width:878.850000px;}
.w1_c01380{width:879.000000px;}
.x0_c01380{left:0.000000px;}
.x33_c01380{left:108.000000px;}
.x10_c01380{left:109.080000px;}
.x48_c01380{left:110.254500px;}
.x6d_c01380{left:123.012000px;}
.x1a_c01380{left:130.140000px;}
.x6b_c01380{left:131.881500px;}
.x43_c01380{left:142.830000px;}
.x2b_c01380{left:152.010000px;}
.x53_c01380{left:153.090000px;}
.x6e_c01380{left:155.407500px;}
.x22_c01380{left:162.540000px;}
.x57_c01380{left:163.620000px;}
.x49_c01380{left:165.076500px;}
.x11_c01380{left:174.420000px;}
.x4d_c01380{left:177.930000px;}
.x2c_c01380{left:184.950000px;}
.x54_c01380{left:186.840000px;}
.x1b_c01380{left:195.480000px;}
.x58_c01380{left:198.180000px;}
.x12_c01380{left:207.090000px;}
.x63_c01380{left:208.710000px;}
.x5_c01380{left:216.540000px;}
.x4e_c01380{left:217.620000px;}
.x68_c01380{left:218.700000px;}
.x5b_c01380{left:220.320000px;}
.x1c_c01380{left:228.960000px;}
.x3a_c01380{left:230.580000px;}
.x3e_c01380{left:239.490000px;}
.x13_c01380{left:240.570000px;}
.x6_c01380{left:251.640000px;}
.x6c_c01380{left:254.421000px;}
.x23_c01380{left:271.890000px;}
.x7_c01380{left:282.690000px;}
.x1_c01380{left:292.410000px;}
.x3f_c01380{left:294.840000px;}
.x6a_c01380{left:299.970000px;}
.x24_c01380{left:305.100000px;}
.x3b_c01380{left:306.450000px;}
.x6f_c01380{left:310.120500px;}
.x8_c01380{left:316.170000px;}
.x59_c01380{left:317.790000px;}
.x5c_c01380{left:323.460000px;}
.x44_c01380{left:326.160000px;}
.x34_c01380{left:327.510000px;}
.x40_c01380{left:337.770000px;}
.x2d_c01380{left:339.120000px;}
.x70_c01380{left:341.919000px;}
.x14_c01380{left:348.570000px;}
.x5d_c01380{left:360.720000px;}
.x71_c01380{left:362.764500px;}
.x1d_c01380{left:370.980000px;}
.x2_c01380{left:380.970000px;}
.x15_c01380{left:382.590000px;}
.x9_c01380{left:392.310000px;}
.x64_c01380{left:394.470000px;}
.x45_c01380{left:405.000000px;}
.x72_c01380{left:409.201500px;}
.x3_c01380{left:413.640000px;}
.x25_c01380{left:414.990000px;}
.xa_c01380{left:425.520000px;}
.x4a_c01380{left:426.937500px;}
.x73_c01380{left:428.913000px;}
.x2e_c01380{left:436.320000px;}
.x16_c01380{left:446.310000px;}
.x4b_c01380{left:447.730500px;}
.x3c_c01380{left:448.740000px;}
.x35_c01380{left:459.540000px;}
.x74_c01380{left:462.408000px;}
.x2f_c01380{left:469.260000px;}
.x26_c01380{left:470.610000px;}
.x4_c01380{left:479.790000px;}
.x36_c01380{left:480.870000px;}
.x27_c01380{left:492.480000px;}
.x4f_c01380{left:503.010000px;}
.x65_c01380{left:504.360000px;}
.x4c_c01380{left:514.171500px;}
.x75_c01380{left:517.215000px;}
.x17_c01380{left:523.530000px;}
.x1e_c01380{left:524.880000px;}
.x5a_c01380{left:526.500000px;}
.x50_c01380{left:537.840000px;}
.x5e_c01380{left:547.020000px;}
.xb_c01380{left:556.740000px;}
.x28_c01380{left:568.080000px;}
.x76_c01380{left:572.575500px;}
.x1f_c01380{left:578.610000px;}
.x69_c01380{left:580.770000px;}
.xc_c01380{left:588.870000px;}
.x41_c01380{left:601.020000px;}
.x5f_c01380{left:602.370000px;}
.x20_c01380{left:611.820000px;}
.x55_c01380{left:613.440000px;}
.x18_c01380{left:622.890000px;}
.x66_c01380{left:625.320000px;}
.x30_c01380{left:633.960000px;}
.x46_c01380{left:645.300000px;}
.x37_c01380{left:656.100000px;}
.x31_c01380{left:666.360000px;}
.xd_c01380{left:676.620000px;}
.x60_c01380{left:677.970000px;}
.x67_c01380{left:679.320000px;}
.x32_c01380{left:700.110000px;}
.x29_c01380{left:711.990000px;}
.x21_c01380{left:721.170000px;}
.x56_c01380{left:722.250000px;}
.x38_c01380{left:732.510000px;}
.x51_c01380{left:743.580000px;}
.x47_c01380{left:744.660000px;}
.xe_c01380{left:753.570000px;}
.x42_c01380{left:754.650000px;}
.x19_c01380{left:765.720000px;}
.x61_c01380{left:766.800000px;}
.x39_c01380{left:776.250000px;}
.x52_c01380{left:777.330000px;}
.xf_c01380{left:787.860000px;}
.x3d_c01380{left:789.210000px;}
.x62_c01380{left:800.550000px;}
.x2a_c01380{left:832.950000px;}
@media print{
.v0_c01380{vertical-align:0.000000pt;}
.ls0_c01380{letter-spacing:0.000000pt;}
.ws0_c01380{word-spacing:0.000000pt;}
._0_c01380{width:29.368269pt;}
.fs6_c01380{font-size:26.666667pt;}
.fs7_c01380{font-size:42.668800pt;}
.fs5_c01380{font-size:58.666667pt;}
.fs3_c01380{font-size:64.000000pt;}
.fs4_c01380{font-size:69.333333pt;}
.fs2_c01380{font-size:74.666667pt;}
.fs1_c01380{font-size:90.666667pt;}
.fs0_c01380{font-size:101.333333pt;}
.y0_c01380{bottom:0.000000pt;}
.y25_c01380{bottom:288.001333pt;}
.y26_c01380{bottom:288.289293pt;}
.y27_c01380{bottom:288.963760pt;}
.y28_c01380{bottom:289.664520pt;}
.y29_c01380{bottom:289.947173pt;}
.y2a_c01380{bottom:290.132467pt;}
.y2b_c01380{bottom:290.545240pt;}
.y2c_c01380{bottom:290.720453pt;}
.y2d_c01380{bottom:291.018187pt;}
.y2e_c01380{bottom:291.505360pt;}
.y2f_c01380{bottom:291.997453pt;}
.y22_c01380{bottom:314.881333pt;}
.y23_c01380{bottom:316.250667pt;}
.y24_c01380{bottom:316.841333pt;}
.y21_c01380{bottom:321.360000pt;}
.y20_c01380{bottom:378.014667pt;}
.y1f_c01380{bottom:408.361333pt;}
.y1e_c01380{bottom:440.485333pt;}
.y1d_c01380{bottom:471.681333pt;}
.y1c_c01380{bottom:504.240000pt;}
.y1b_c01380{bottom:535.192000pt;}
.y1a_c01380{bottom:567.393333pt;}
.y19_c01380{bottom:597.114667pt;}
.yb_c01380{bottom:627.840000pt;}
.yc_c01380{bottom:628.181333pt;}
.yd_c01380{bottom:628.717333pt;}
.ye_c01380{bottom:628.918667pt;}
.yf_c01380{bottom:629.261333pt;}
.y10_c01380{bottom:629.810667pt;}
.y11_c01380{bottom:629.940000pt;}
.y12_c01380{bottom:630.148000pt;}
.y13_c01380{bottom:630.353333pt;}
.y14_c01380{bottom:630.624000pt;}
.y15_c01380{bottom:630.824000pt;}
.y16_c01380{bottom:631.508000pt;}
.y17_c01380{bottom:631.785333pt;}
.y18_c01380{bottom:632.061333pt;}
.ya_c01380{bottom:660.550667pt;}
.y9_c01380{bottom:692.668000pt;}
.y8_c01380{bottom:723.206667pt;}
.y7_c01380{bottom:755.068000pt;}
.y6_c01380{bottom:787.226667pt;}
.y5_c01380{bottom:818.886667pt;}
.y4_c01380{bottom:850.062667pt;}
.y3_c01380{bottom:880.841333pt;}
.y2_c01380{bottom:913.469333pt;}
.y1_c01380{bottom:977.565333pt;}
.h8_c01380{height:26.666667pt;}
.h9_c01380{height:42.668800pt;}
.h7_c01380{height:58.666667pt;}
.h5_c01380{height:64.000000pt;}
.h6_c01380{height:69.333333pt;}
.h4_c01380{height:74.666667pt;}
.h3_c01380{height:90.666667pt;}
.h2_c01380{height:101.333333pt;}
.h1_c01380{height:1111.333333pt;}
.h0_c01380{height:1111.440000pt;}
.w0_c01380{width:781.200000pt;}
.w1_c01380{width:781.333333pt;}
.x0_c01380{left:0.000000pt;}
.x33_c01380{left:96.000000pt;}
.x10_c01380{left:96.960000pt;}
.x48_c01380{left:98.004000pt;}
.x6d_c01380{left:109.344000pt;}
.x1a_c01380{left:115.680000pt;}
.x6b_c01380{left:117.228000pt;}
.x43_c01380{left:126.960000pt;}
.x2b_c01380{left:135.120000pt;}
.x53_c01380{left:136.080000pt;}
.x6e_c01380{left:138.140000pt;}
.x22_c01380{left:144.480000pt;}
.x57_c01380{left:145.440000pt;}
.x49_c01380{left:146.734667pt;}
.x11_c01380{left:155.040000pt;}
.x4d_c01380{left:158.160000pt;}
.x2c_c01380{left:164.400000pt;}
.x54_c01380{left:166.080000pt;}
.x1b_c01380{left:173.760000pt;}
.x58_c01380{left:176.160000pt;}
.x12_c01380{left:184.080000pt;}
.x63_c01380{left:185.520000pt;}
.x5_c01380{left:192.480000pt;}
.x4e_c01380{left:193.440000pt;}
.x68_c01380{left:194.400000pt;}
.x5b_c01380{left:195.840000pt;}
.x1c_c01380{left:203.520000pt;}
.x3a_c01380{left:204.960000pt;}
.x3e_c01380{left:212.880000pt;}
.x13_c01380{left:213.840000pt;}
.x6_c01380{left:223.680000pt;}
.x6c_c01380{left:226.152000pt;}
.x23_c01380{left:241.680000pt;}
.x7_c01380{left:251.280000pt;}
.x1_c01380{left:259.920000pt;}
.x3f_c01380{left:262.080000pt;}
.x6a_c01380{left:266.640000pt;}
.x24_c01380{left:271.200000pt;}
.x3b_c01380{left:272.400000pt;}
.x6f_c01380{left:275.662667pt;}
.x8_c01380{left:281.040000pt;}
.x59_c01380{left:282.480000pt;}
.x5c_c01380{left:287.520000pt;}
.x44_c01380{left:289.920000pt;}
.x34_c01380{left:291.120000pt;}
.x40_c01380{left:300.240000pt;}
.x2d_c01380{left:301.440000pt;}
.x70_c01380{left:303.928000pt;}
.x14_c01380{left:309.840000pt;}
.x5d_c01380{left:320.640000pt;}
.x71_c01380{left:322.457333pt;}
.x1d_c01380{left:329.760000pt;}
.x2_c01380{left:338.640000pt;}
.x15_c01380{left:340.080000pt;}
.x9_c01380{left:348.720000pt;}
.x64_c01380{left:350.640000pt;}
.x45_c01380{left:360.000000pt;}
.x72_c01380{left:363.734667pt;}
.x3_c01380{left:367.680000pt;}
.x25_c01380{left:368.880000pt;}
.xa_c01380{left:378.240000pt;}
.x4a_c01380{left:379.500000pt;}
.x73_c01380{left:381.256000pt;}
.x2e_c01380{left:387.840000pt;}
.x16_c01380{left:396.720000pt;}
.x4b_c01380{left:397.982667pt;}
.x3c_c01380{left:398.880000pt;}
.x35_c01380{left:408.480000pt;}
.x74_c01380{left:411.029333pt;}
.x2f_c01380{left:417.120000pt;}
.x26_c01380{left:418.320000pt;}
.x4_c01380{left:426.480000pt;}
.x36_c01380{left:427.440000pt;}
.x27_c01380{left:437.760000pt;}
.x4f_c01380{left:447.120000pt;}
.x65_c01380{left:448.320000pt;}
.x4c_c01380{left:457.041333pt;}
.x75_c01380{left:459.746667pt;}
.x17_c01380{left:465.360000pt;}
.x1e_c01380{left:466.560000pt;}
.x5a_c01380{left:468.000000pt;}
.x50_c01380{left:478.080000pt;}
.x5e_c01380{left:486.240000pt;}
.xb_c01380{left:494.880000pt;}
.x28_c01380{left:504.960000pt;}
.x76_c01380{left:508.956000pt;}
.x1f_c01380{left:514.320000pt;}
.x69_c01380{left:516.240000pt;}
.xc_c01380{left:523.440000pt;}
.x41_c01380{left:534.240000pt;}
.x5f_c01380{left:535.440000pt;}
.x20_c01380{left:543.840000pt;}
.x55_c01380{left:545.280000pt;}
.x18_c01380{left:553.680000pt;}
.x66_c01380{left:555.840000pt;}
.x30_c01380{left:563.520000pt;}
.x46_c01380{left:573.600000pt;}
.x37_c01380{left:583.200000pt;}
.x31_c01380{left:592.320000pt;}
.xd_c01380{left:601.440000pt;}
.x60_c01380{left:602.640000pt;}
.x67_c01380{left:603.840000pt;}
.x32_c01380{left:622.320000pt;}
.x29_c01380{left:632.880000pt;}
.x21_c01380{left:641.040000pt;}
.x56_c01380{left:642.000000pt;}
.x38_c01380{left:651.120000pt;}
.x51_c01380{left:660.960000pt;}
.x47_c01380{left:661.920000pt;}
.xe_c01380{left:669.840000pt;}
.x42_c01380{left:670.800000pt;}
.x19_c01380{left:680.640000pt;}
.x61_c01380{left:681.600000pt;}
.x39_c01380{left:690.000000pt;}
.x52_c01380{left:690.960000pt;}
.xf_c01380{left:700.320000pt;}
.x3d_c01380{left:701.520000pt;}
.x62_c01380{left:711.600000pt;}
.x2a_c01380{left:740.400000pt;}
}





/* 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_c01381 {
    display:none;
  }
  .loading-indicator_c01381.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01381 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_c01381 { 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_c01381" -> "#page-container .classname_c01381")
 */
.pf_c01381 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01381 { /* 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_c01381.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01381 { /* 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_c01381 { /* 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_c01381 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01381 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01381 {overflow:visible;}
  }
}
.c_c01381 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01381 { /* 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_c01381:after { /* webkit #35443 */
  content: '';
}
.t_c01381:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01381 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 */
}
.__c01381 { /* 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_c01381 { /* info for Javascript */
  display:none;
}
.l_c01381 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01381 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01381 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01381: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_c01381 {
    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_c01381.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01381.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_c01381 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01381{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01381;src:url('chunks/assets/font_bfe6362fd3009c591583128f.woff2')format("woff");}.ff1_c01381{font-family:ff1_c01381;line-height:1.000000;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;}
.m1_c01381{transform:matrix(0.074569,-0.211166,0.235734,0.083244,0,0);-ms-transform:matrix(0.074569,-0.211166,0.235734,0.083244,0,0);-webkit-transform:matrix(0.074569,-0.211166,0.235734,0.083244,0,0);}
.m0_c01381{transform:matrix(0.098490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098490,0.000000,0.000000,0.250000,0,0);}
.m3_c01381{transform:matrix(0.291245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291245,0.000000,0.000000,0.250000,0,0);}
.m2_c01381{transform:matrix(0.302915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302915,0.000000,0.000000,0.250000,0,0);}
.v0_c01381{vertical-align:0.000000px;}
.ls0_c01381{letter-spacing:0.000000px;}
.sc__c01381{text-shadow:none;}
.sc0_c01381{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__c01381{-webkit-text-stroke:0px transparent;}
.sc0_c01381{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01381{word-spacing:0.000000px;}
.fc0_c01381{color:transparent;}
.fs0_c01381{font-size:18.000000px;}
.fs2_c01381{font-size:24.000000px;}
.fs1_c01381{font-size:48.003312px;}
.y0_c01381{bottom:0.000000px;}
.y1_c01381{bottom:568.620000px;}
.y3_c01381{bottom:570.513000px;}
.y4_c01381{bottom:570.646500px;}
.y2_c01381{bottom:572.245500px;}
.h2_c01381{height:18.000000px;}
.h4_c01381{height:24.000000px;}
.h3_c01381{height:48.003312px;}
.h1_c01381{height:1250.250000px;}
.h0_c01381{height:1250.370000px;}
.w0_c01381{width:878.850000px;}
.w1_c01381{width:879.000000px;}
.x0_c01381{left:0.000000px;}
.x4_c01381{left:75.060000px;}
.x3_c01381{left:85.590000px;}
.x2_c01381{left:101.910000px;}
.x1_c01381{left:110.160000px;}
@media print{
.v0_c01381{vertical-align:0.000000pt;}
.ls0_c01381{letter-spacing:0.000000pt;}
.ws0_c01381{word-spacing:0.000000pt;}
.fs0_c01381{font-size:16.000000pt;}
.fs2_c01381{font-size:21.333333pt;}
.fs1_c01381{font-size:42.669611pt;}
.y0_c01381{bottom:0.000000pt;}
.y1_c01381{bottom:505.440000pt;}
.y3_c01381{bottom:507.122667pt;}
.y4_c01381{bottom:507.241333pt;}
.y2_c01381{bottom:508.662667pt;}
.h2_c01381{height:16.000000pt;}
.h4_c01381{height:21.333333pt;}
.h3_c01381{height:42.669611pt;}
.h1_c01381{height:1111.333333pt;}
.h0_c01381{height:1111.440000pt;}
.w0_c01381{width:781.200000pt;}
.w1_c01381{width:781.333333pt;}
.x0_c01381{left:0.000000pt;}
.x4_c01381{left:66.720000pt;}
.x3_c01381{left:76.080000pt;}
.x2_c01381{left:90.586667pt;}
.x1_c01381{left:97.920000pt;}
}





/* 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_c01382 {
    display:none;
  }
  .loading-indicator_c01382.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01382 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_c01382 { 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_c01382" -> "#page-container .classname_c01382")
 */
.pf_c01382 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01382 { /* 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_c01382.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01382 { /* 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_c01382 { /* 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_c01382 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01382 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01382 {overflow:visible;}
  }
}
.c_c01382 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01382 { /* 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_c01382:after { /* webkit #35443 */
  content: '';
}
.t_c01382:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01382 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 */
}
.__c01382 { /* 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_c01382 { /* info for Javascript */
  display:none;
}
.l_c01382 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01382 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01382 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01382: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_c01382 {
    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_c01382.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01382.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_c01382 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01382{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01382;src:url('chunks/assets/font_b11a17f404e7258299fdf971.woff2')format("woff");}.ff1_c01382{font-family:ff1_c01382;line-height:1.000000;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;}
.me5_c01382{transform:matrix(0.088444,0.001415,-0.003999,0.249968,0,0);-ms-transform:matrix(0.088444,0.001415,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.088444,0.001415,-0.003999,0.249968,0,0);}
.m110_c01382{transform:matrix(0.138112,0.002210,-0.003999,0.249968,0,0);-ms-transform:matrix(0.138112,0.002210,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.138112,0.002210,-0.003999,0.249968,0,0);}
.m83_c01382{transform:matrix(0.139397,0.002230,-0.003999,0.249968,0,0);-ms-transform:matrix(0.139397,0.002230,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.139397,0.002230,-0.003999,0.249968,0,0);}
.m10a_c01382{transform:matrix(0.143927,0.002303,-0.003999,0.249968,0,0);-ms-transform:matrix(0.143927,0.002303,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.143927,0.002303,-0.003999,0.249968,0,0);}
.m13b_c01382{transform:matrix(0.144612,0.003326,-0.005748,0.249934,0,0);-ms-transform:matrix(0.144612,0.003326,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.144612,0.003326,-0.005748,0.249934,0,0);}
.m10e_c01382{transform:matrix(0.146006,0.002336,-0.003999,0.249968,0,0);-ms-transform:matrix(0.146006,0.002336,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.146006,0.002336,-0.003999,0.249968,0,0);}
.m67_c01382{transform:matrix(0.146436,0.002343,-0.003999,0.249968,0,0);-ms-transform:matrix(0.146436,0.002343,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.146436,0.002343,-0.003999,0.249968,0,0);}
.m64_c01382{transform:matrix(0.147256,0.002356,-0.003999,0.249968,0,0);-ms-transform:matrix(0.147256,0.002356,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.147256,0.002356,-0.003999,0.249968,0,0);}
.m69_c01382{transform:matrix(0.149336,0.002389,-0.003999,0.249968,0,0);-ms-transform:matrix(0.149336,0.002389,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.149336,0.002389,-0.003999,0.249968,0,0);}
.m10d_c01382{transform:matrix(0.150076,0.002401,-0.003999,0.249968,0,0);-ms-transform:matrix(0.150076,0.002401,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.150076,0.002401,-0.003999,0.249968,0,0);}
.m6d_c01382{transform:matrix(0.150386,0.002406,-0.003999,0.249968,0,0);-ms-transform:matrix(0.150386,0.002406,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.150386,0.002406,-0.003999,0.249968,0,0);}
.m73_c01382{transform:matrix(0.150636,0.002410,-0.003999,0.249968,0,0);-ms-transform:matrix(0.150636,0.002410,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.150636,0.002410,-0.003999,0.249968,0,0);}
.m109_c01382{transform:matrix(0.151996,0.002432,-0.003999,0.249968,0,0);-ms-transform:matrix(0.151996,0.002432,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.151996,0.002432,-0.003999,0.249968,0,0);}
.m115_c01382{transform:matrix(0.152730,0.002444,-0.003999,0.249968,0,0);-ms-transform:matrix(0.152730,0.002444,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.152730,0.002444,-0.003999,0.249968,0,0);}
.m62_c01382{transform:matrix(0.155100,0.002482,-0.003999,0.249968,0,0);-ms-transform:matrix(0.155100,0.002482,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.155100,0.002482,-0.003999,0.249968,0,0);}
.m112_c01382{transform:matrix(0.155640,0.002490,-0.003999,0.249968,0,0);-ms-transform:matrix(0.155640,0.002490,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.155640,0.002490,-0.003999,0.249968,0,0);}
.m10b_c01382{transform:matrix(0.155680,0.002491,-0.003999,0.249968,0,0);-ms-transform:matrix(0.155680,0.002491,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.155680,0.002491,-0.003999,0.249968,0,0);}
.m10c_c01382{transform:matrix(0.155740,0.002492,-0.003999,0.249968,0,0);-ms-transform:matrix(0.155740,0.002492,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.155740,0.002492,-0.003999,0.249968,0,0);}
.m63_c01382{transform:matrix(0.155950,0.002495,-0.003999,0.249968,0,0);-ms-transform:matrix(0.155950,0.002495,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.155950,0.002495,-0.003999,0.249968,0,0);}
.m70_c01382{transform:matrix(0.156330,0.002501,-0.003999,0.249968,0,0);-ms-transform:matrix(0.156330,0.002501,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.156330,0.002501,-0.003999,0.249968,0,0);}
.m114_c01382{transform:matrix(0.156415,0.002503,-0.003999,0.249968,0,0);-ms-transform:matrix(0.156415,0.002503,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.156415,0.002503,-0.003999,0.249968,0,0);}
.m6c_c01382{transform:matrix(0.157725,0.002524,-0.003999,0.249968,0,0);-ms-transform:matrix(0.157725,0.002524,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.157725,0.002524,-0.003999,0.249968,0,0);}
.m113_c01382{transform:matrix(0.157915,0.002527,-0.003999,0.249968,0,0);-ms-transform:matrix(0.157915,0.002527,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.157915,0.002527,-0.003999,0.249968,0,0);}
.m89_c01382{transform:matrix(0.159005,0.002544,-0.003999,0.249968,0,0);-ms-transform:matrix(0.159005,0.002544,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.159005,0.002544,-0.003999,0.249968,0,0);}
.m65_c01382{transform:matrix(0.159035,0.002545,-0.003999,0.249968,0,0);-ms-transform:matrix(0.159035,0.002545,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.159035,0.002545,-0.003999,0.249968,0,0);}
.m116_c01382{transform:matrix(0.159495,0.002552,-0.003999,0.249968,0,0);-ms-transform:matrix(0.159495,0.002552,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.159495,0.002552,-0.003999,0.249968,0,0);}
.m82_c01382{transform:matrix(0.160534,0.002569,-0.003999,0.249968,0,0);-ms-transform:matrix(0.160534,0.002569,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.160534,0.002569,-0.003999,0.249968,0,0);}
.m60_c01382{transform:matrix(0.162679,0.002603,-0.003999,0.249968,0,0);-ms-transform:matrix(0.162679,0.002603,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.162679,0.002603,-0.003999,0.249968,0,0);}
.m66_c01382{transform:matrix(0.162819,0.002605,-0.003999,0.249968,0,0);-ms-transform:matrix(0.162819,0.002605,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.162819,0.002605,-0.003999,0.249968,0,0);}
.m6a_c01382{transform:matrix(0.163259,0.002612,-0.003999,0.249968,0,0);-ms-transform:matrix(0.163259,0.002612,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.163259,0.002612,-0.003999,0.249968,0,0);}
.m10f_c01382{transform:matrix(0.163484,0.002616,-0.003999,0.249968,0,0);-ms-transform:matrix(0.163484,0.002616,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.163484,0.002616,-0.003999,0.249968,0,0);}
.m8c_c01382{transform:matrix(0.163619,0.002618,-0.003999,0.249968,0,0);-ms-transform:matrix(0.163619,0.002618,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.163619,0.002618,-0.003999,0.249968,0,0);}
.m8a_c01382{transform:matrix(0.164539,0.002633,-0.003999,0.249968,0,0);-ms-transform:matrix(0.164539,0.002633,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.164539,0.002633,-0.003999,0.249968,0,0);}
.m6b_c01382{transform:matrix(0.165429,0.002647,-0.003999,0.249968,0,0);-ms-transform:matrix(0.165429,0.002647,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.165429,0.002647,-0.003999,0.249968,0,0);}
.m111_c01382{transform:matrix(0.166139,0.002658,-0.003999,0.249968,0,0);-ms-transform:matrix(0.166139,0.002658,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.166139,0.002658,-0.003999,0.249968,0,0);}
.m61_c01382{transform:matrix(0.166439,0.002663,-0.003999,0.249968,0,0);-ms-transform:matrix(0.166439,0.002663,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.166439,0.002663,-0.003999,0.249968,0,0);}
.m72_c01382{transform:matrix(0.166564,0.002665,-0.003999,0.249968,0,0);-ms-transform:matrix(0.166564,0.002665,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.166564,0.002665,-0.003999,0.249968,0,0);}
.m68_c01382{transform:matrix(0.169468,0.002711,-0.003999,0.249968,0,0);-ms-transform:matrix(0.169468,0.002711,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.169468,0.002711,-0.003999,0.249968,0,0);}
.m71_c01382{transform:matrix(0.173588,0.002777,-0.003999,0.249968,0,0);-ms-transform:matrix(0.173588,0.002777,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.173588,0.002777,-0.003999,0.249968,0,0);}
.md6_c01382{transform:matrix(0.173713,0.002779,-0.003999,0.249968,0,0);-ms-transform:matrix(0.173713,0.002779,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.173713,0.002779,-0.003999,0.249968,0,0);}
.m6f_c01382{transform:matrix(0.174848,0.002798,-0.003999,0.249968,0,0);-ms-transform:matrix(0.174848,0.002798,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.174848,0.002798,-0.003999,0.249968,0,0);}
.m74_c01382{transform:matrix(0.175338,0.002805,-0.003999,0.249968,0,0);-ms-transform:matrix(0.175338,0.002805,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.175338,0.002805,-0.003999,0.249968,0,0);}
.m87_c01382{transform:matrix(0.175413,0.002807,-0.003999,0.249968,0,0);-ms-transform:matrix(0.175413,0.002807,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.175413,0.002807,-0.003999,0.249968,0,0);}
.m6e_c01382{transform:matrix(0.176302,0.002821,-0.003999,0.249968,0,0);-ms-transform:matrix(0.176302,0.002821,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.176302,0.002821,-0.003999,0.249968,0,0);}
.m75_c01382{transform:matrix(0.177092,0.002833,-0.003999,0.249968,0,0);-ms-transform:matrix(0.177092,0.002833,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.177092,0.002833,-0.003999,0.249968,0,0);}
.m8b_c01382{transform:matrix(0.177292,0.002837,-0.003999,0.249968,0,0);-ms-transform:matrix(0.177292,0.002837,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.177292,0.002837,-0.003999,0.249968,0,0);}
.m108_c01382{transform:matrix(0.177607,0.002842,-0.003999,0.249968,0,0);-ms-transform:matrix(0.177607,0.002842,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.177607,0.002842,-0.003999,0.249968,0,0);}
.m85_c01382{transform:matrix(0.177707,0.002843,-0.003999,0.249968,0,0);-ms-transform:matrix(0.177707,0.002843,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.177707,0.002843,-0.003999,0.249968,0,0);}
.m103_c01382{transform:matrix(0.178217,0.002851,-0.003999,0.249968,0,0);-ms-transform:matrix(0.178217,0.002851,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.178217,0.002851,-0.003999,0.249968,0,0);}
.m8d_c01382{transform:matrix(0.178422,0.002855,-0.003999,0.249968,0,0);-ms-transform:matrix(0.178422,0.002855,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.178422,0.002855,-0.003999,0.249968,0,0);}
.m53_c01382{transform:matrix(0.179612,0.002874,-0.003999,0.249968,0,0);-ms-transform:matrix(0.179612,0.002874,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.179612,0.002874,-0.003999,0.249968,0,0);}
.me8_c01382{transform:matrix(0.180652,0.002890,-0.003999,0.249968,0,0);-ms-transform:matrix(0.180652,0.002890,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.180652,0.002890,-0.003999,0.249968,0,0);}
.m84_c01382{transform:matrix(0.180672,0.002891,-0.003999,0.249968,0,0);-ms-transform:matrix(0.180672,0.002891,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.180672,0.002891,-0.003999,0.249968,0,0);}
.m101_c01382{transform:matrix(0.180687,0.002891,-0.003999,0.249968,0,0);-ms-transform:matrix(0.180687,0.002891,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.180687,0.002891,-0.003999,0.249968,0,0);}
.m88_c01382{transform:matrix(0.183716,0.002939,-0.003999,0.249968,0,0);-ms-transform:matrix(0.183716,0.002939,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.183716,0.002939,-0.003999,0.249968,0,0);}
.m86_c01382{transform:matrix(0.185036,0.002961,-0.003999,0.249968,0,0);-ms-transform:matrix(0.185036,0.002961,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.185036,0.002961,-0.003999,0.249968,0,0);}
.m0_c01382{transform:matrix(0.186635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186635,0.000000,0.000000,0.250000,0,0);}
.m31_c01382{transform:matrix(0.187479,0.002062,-0.002750,0.249985,0,0);-ms-transform:matrix(0.187479,0.002062,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.187479,0.002062,-0.002750,0.249985,0,0);}
.m33_c01382{transform:matrix(0.189724,0.002087,-0.002750,0.249985,0,0);-ms-transform:matrix(0.189724,0.002087,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.189724,0.002087,-0.002750,0.249985,0,0);}
.me7_c01382{transform:matrix(0.190496,0.003048,-0.003999,0.249968,0,0);-ms-transform:matrix(0.190496,0.003048,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.190496,0.003048,-0.003999,0.249968,0,0);}
.m126_c01382{transform:matrix(0.192520,0.003080,-0.003999,0.249968,0,0);-ms-transform:matrix(0.192520,0.003080,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.192520,0.003080,-0.003999,0.249968,0,0);}
.m2c_c01382{transform:matrix(0.193068,0.002124,-0.002750,0.249985,0,0);-ms-transform:matrix(0.193068,0.002124,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.193068,0.002124,-0.002750,0.249985,0,0);}
.m2d_c01382{transform:matrix(0.193193,0.002125,-0.002750,0.249985,0,0);-ms-transform:matrix(0.193193,0.002125,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.193193,0.002125,-0.002750,0.249985,0,0);}
.m12c_c01382{transform:matrix(0.193285,0.003093,-0.003999,0.249968,0,0);-ms-transform:matrix(0.193285,0.003093,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.193285,0.003093,-0.003999,0.249968,0,0);}
.med_c01382{transform:matrix(0.193400,0.003094,-0.003999,0.249968,0,0);-ms-transform:matrix(0.193400,0.003094,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.193400,0.003094,-0.003999,0.249968,0,0);}
.m131_c01382{transform:matrix(0.194515,0.003112,-0.003999,0.249968,0,0);-ms-transform:matrix(0.194515,0.003112,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.194515,0.003112,-0.003999,0.249968,0,0);}
.mb9_c01382{transform:matrix(0.195425,0.003127,-0.003999,0.249968,0,0);-ms-transform:matrix(0.195425,0.003127,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.195425,0.003127,-0.003999,0.249968,0,0);}
.mbf_c01382{transform:matrix(0.195540,0.003129,-0.003999,0.249968,0,0);-ms-transform:matrix(0.195540,0.003129,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.195540,0.003129,-0.003999,0.249968,0,0);}
.m81_c01382{transform:matrix(0.195575,0.003129,-0.003999,0.249968,0,0);-ms-transform:matrix(0.195575,0.003129,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.195575,0.003129,-0.003999,0.249968,0,0);}
.m137_c01382{transform:matrix(0.195895,0.003134,-0.003999,0.249968,0,0);-ms-transform:matrix(0.195895,0.003134,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.195895,0.003134,-0.003999,0.249968,0,0);}
.m132_c01382{transform:matrix(0.196340,0.003141,-0.003999,0.249968,0,0);-ms-transform:matrix(0.196340,0.003141,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.196340,0.003141,-0.003999,0.249968,0,0);}
.m2f_c01382{transform:matrix(0.196943,0.002166,-0.002750,0.249985,0,0);-ms-transform:matrix(0.196943,0.002166,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.196943,0.002166,-0.002750,0.249985,0,0);}
.m13a_c01382{transform:matrix(0.197808,0.004550,-0.005748,0.249934,0,0);-ms-transform:matrix(0.197808,0.004550,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.197808,0.004550,-0.005748,0.249934,0,0);}
.mee_c01382{transform:matrix(0.200224,0.003204,-0.003999,0.249968,0,0);-ms-transform:matrix(0.200224,0.003204,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.200224,0.003204,-0.003999,0.249968,0,0);}
.mfd_c01382{transform:matrix(0.200784,0.003213,-0.003999,0.249968,0,0);-ms-transform:matrix(0.200784,0.003213,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.200784,0.003213,-0.003999,0.249968,0,0);}
.m4d_c01382{transform:matrix(0.201219,0.003220,-0.003999,0.249968,0,0);-ms-transform:matrix(0.201219,0.003220,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.201219,0.003220,-0.003999,0.249968,0,0);}
.m2a_c01382{transform:matrix(0.201263,0.002214,-0.002750,0.249985,0,0);-ms-transform:matrix(0.201263,0.002214,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.201263,0.002214,-0.002750,0.249985,0,0);}
.m100_c01382{transform:matrix(0.201669,0.003227,-0.003999,0.249968,0,0);-ms-transform:matrix(0.201669,0.003227,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.201669,0.003227,-0.003999,0.249968,0,0);}
.mb6_c01382{transform:matrix(0.202479,0.003240,-0.003999,0.249968,0,0);-ms-transform:matrix(0.202479,0.003240,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.202479,0.003240,-0.003999,0.249968,0,0);}
.mf7_c01382{transform:matrix(0.202869,0.003246,-0.003999,0.249968,0,0);-ms-transform:matrix(0.202869,0.003246,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.202869,0.003246,-0.003999,0.249968,0,0);}
.m12e_c01382{transform:matrix(0.202999,0.003248,-0.003999,0.249968,0,0);-ms-transform:matrix(0.202999,0.003248,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.202999,0.003248,-0.003999,0.249968,0,0);}
.m3c_c01382{transform:matrix(0.203129,0.004063,-0.004999,0.249950,0,0);-ms-transform:matrix(0.203129,0.004063,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.203129,0.004063,-0.004999,0.249950,0,0);}
.mbb_c01382{transform:matrix(0.204139,0.003266,-0.003999,0.249968,0,0);-ms-transform:matrix(0.204139,0.003266,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.204139,0.003266,-0.003999,0.249968,0,0);}
.m41_c01382{transform:matrix(0.204354,0.004087,-0.004999,0.249950,0,0);-ms-transform:matrix(0.204354,0.004087,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.204354,0.004087,-0.004999,0.249950,0,0);}
.m104_c01382{transform:matrix(0.204514,0.003272,-0.003999,0.249968,0,0);-ms-transform:matrix(0.204514,0.003272,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.204514,0.003272,-0.003999,0.249968,0,0);}
.m107_c01382{transform:matrix(0.205029,0.003280,-0.003999,0.249968,0,0);-ms-transform:matrix(0.205029,0.003280,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.205029,0.003280,-0.003999,0.249968,0,0);}
.m105_c01382{transform:matrix(0.205429,0.003287,-0.003999,0.249968,0,0);-ms-transform:matrix(0.205429,0.003287,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.205429,0.003287,-0.003999,0.249968,0,0);}
.m32_c01382{transform:matrix(0.205538,0.002261,-0.002750,0.249985,0,0);-ms-transform:matrix(0.205538,0.002261,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.205538,0.002261,-0.002750,0.249985,0,0);}
.m2e_c01382{transform:matrix(0.205793,0.002264,-0.002750,0.249985,0,0);-ms-transform:matrix(0.205793,0.002264,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.205793,0.002264,-0.002750,0.249985,0,0);}
.mfe_c01382{transform:matrix(0.206434,0.003303,-0.003999,0.249968,0,0);-ms-transform:matrix(0.206434,0.003303,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.206434,0.003303,-0.003999,0.249968,0,0);}
.mb2_c01382{transform:matrix(0.206624,0.003306,-0.003999,0.249968,0,0);-ms-transform:matrix(0.206624,0.003306,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.206624,0.003306,-0.003999,0.249968,0,0);}
.m30_c01382{transform:matrix(0.206722,0.002274,-0.002750,0.249985,0,0);-ms-transform:matrix(0.206722,0.002274,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.206722,0.002274,-0.002750,0.249985,0,0);}
.m12f_c01382{transform:matrix(0.206974,0.003312,-0.003999,0.249968,0,0);-ms-transform:matrix(0.206974,0.003312,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.206974,0.003312,-0.003999,0.249968,0,0);}
.m121_c01382{transform:matrix(0.207213,0.003315,-0.003999,0.249968,0,0);-ms-transform:matrix(0.207213,0.003315,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.207213,0.003315,-0.003999,0.249968,0,0);}
.m78_c01382{transform:matrix(0.208038,0.003329,-0.003999,0.249968,0,0);-ms-transform:matrix(0.208038,0.003329,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.208038,0.003329,-0.003999,0.249968,0,0);}
.mf4_c01382{transform:matrix(0.208153,0.003330,-0.003999,0.249968,0,0);-ms-transform:matrix(0.208153,0.003330,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.208153,0.003330,-0.003999,0.249968,0,0);}
.mb8_c01382{transform:matrix(0.208173,0.003331,-0.003999,0.249968,0,0);-ms-transform:matrix(0.208173,0.003331,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.208173,0.003331,-0.003999,0.249968,0,0);}
.mec_c01382{transform:matrix(0.208943,0.003343,-0.003999,0.249968,0,0);-ms-transform:matrix(0.208943,0.003343,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.208943,0.003343,-0.003999,0.249968,0,0);}
.ma9_c01382{transform:matrix(0.209203,0.003347,-0.003999,0.249968,0,0);-ms-transform:matrix(0.209203,0.003347,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.209203,0.003347,-0.003999,0.249968,0,0);}
.mae_c01382{transform:matrix(0.210368,0.003366,-0.003999,0.249968,0,0);-ms-transform:matrix(0.210368,0.003366,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.210368,0.003366,-0.003999,0.249968,0,0);}
.mf0_c01382{transform:matrix(0.210508,0.003368,-0.003999,0.249968,0,0);-ms-transform:matrix(0.210508,0.003368,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.210508,0.003368,-0.003999,0.249968,0,0);}
.mc2_c01382{transform:matrix(0.210998,0.003376,-0.003999,0.249968,0,0);-ms-transform:matrix(0.210998,0.003376,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.210998,0.003376,-0.003999,0.249968,0,0);}
.mc4_c01382{transform:matrix(0.211768,0.003388,-0.003999,0.249968,0,0);-ms-transform:matrix(0.211768,0.003388,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.211768,0.003388,-0.003999,0.249968,0,0);}
.m44_c01382{transform:matrix(0.212108,0.004242,-0.004999,0.249950,0,0);-ms-transform:matrix(0.212108,0.004242,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.212108,0.004242,-0.004999,0.249950,0,0);}
.mea_c01382{transform:matrix(0.212748,0.003404,-0.003999,0.249968,0,0);-ms-transform:matrix(0.212748,0.003404,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.212748,0.003404,-0.003999,0.249968,0,0);}
.m40_c01382{transform:matrix(0.212907,0.004258,-0.004999,0.249950,0,0);-ms-transform:matrix(0.212907,0.004258,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.212907,0.004258,-0.004999,0.249950,0,0);}
.mb1_c01382{transform:matrix(0.213278,0.003412,-0.003999,0.249968,0,0);-ms-transform:matrix(0.213278,0.003412,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.213278,0.003412,-0.003999,0.249968,0,0);}
.m123_c01382{transform:matrix(0.213483,0.003416,-0.003999,0.249968,0,0);-ms-transform:matrix(0.213483,0.003416,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.213483,0.003416,-0.003999,0.249968,0,0);}
.m3e_c01382{transform:matrix(0.213627,0.004273,-0.004999,0.249950,0,0);-ms-transform:matrix(0.213627,0.004273,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.213627,0.004273,-0.004999,0.249950,0,0);}
.m135_c01382{transform:matrix(0.213673,0.003419,-0.003999,0.249968,0,0);-ms-transform:matrix(0.213673,0.003419,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.213673,0.003419,-0.003999,0.249968,0,0);}
.m133_c01382{transform:matrix(0.213983,0.003424,-0.003999,0.249968,0,0);-ms-transform:matrix(0.213983,0.003424,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.213983,0.003424,-0.003999,0.249968,0,0);}
.m14c_c01382{transform:matrix(0.214048,0.004923,-0.005748,0.249934,0,0);-ms-transform:matrix(0.214048,0.004923,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.214048,0.004923,-0.005748,0.249934,0,0);}
.m14b_c01382{transform:matrix(0.214433,0.004932,-0.005748,0.249934,0,0);-ms-transform:matrix(0.214433,0.004932,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.214433,0.004932,-0.005748,0.249934,0,0);}
.m42_c01382{transform:matrix(0.214512,0.004290,-0.004999,0.249950,0,0);-ms-transform:matrix(0.214512,0.004290,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.214512,0.004290,-0.004999,0.249950,0,0);}
.me6_c01382{transform:matrix(0.214723,0.003436,-0.003999,0.249968,0,0);-ms-transform:matrix(0.214723,0.003436,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.214723,0.003436,-0.003999,0.249968,0,0);}
.me9_c01382{transform:matrix(0.214808,0.003437,-0.003999,0.249968,0,0);-ms-transform:matrix(0.214808,0.003437,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.214808,0.003437,-0.003999,0.249968,0,0);}
.m136_c01382{transform:matrix(0.215487,0.003448,-0.003999,0.249968,0,0);-ms-transform:matrix(0.215487,0.003448,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.215487,0.003448,-0.003999,0.249968,0,0);}
.mb5_c01382{transform:matrix(0.215582,0.003449,-0.003999,0.249968,0,0);-ms-transform:matrix(0.215582,0.003449,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.215582,0.003449,-0.003999,0.249968,0,0);}
.m7f_c01382{transform:matrix(0.215647,0.003450,-0.003999,0.249968,0,0);-ms-transform:matrix(0.215647,0.003450,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.215647,0.003450,-0.003999,0.249968,0,0);}
.mda_c01382{transform:matrix(0.215687,0.003451,-0.003999,0.249968,0,0);-ms-transform:matrix(0.215687,0.003451,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.215687,0.003451,-0.003999,0.249968,0,0);}
.m14e_c01382{transform:matrix(0.215773,0.004963,-0.005748,0.249934,0,0);-ms-transform:matrix(0.215773,0.004963,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.215773,0.004963,-0.005748,0.249934,0,0);}
.mb3_c01382{transform:matrix(0.216222,0.003460,-0.003999,0.249968,0,0);-ms-transform:matrix(0.216222,0.003460,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.216222,0.003460,-0.003999,0.249968,0,0);}
.meb_c01382{transform:matrix(0.216322,0.003461,-0.003999,0.249968,0,0);-ms-transform:matrix(0.216322,0.003461,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.216322,0.003461,-0.003999,0.249968,0,0);}
.m150_c01382{transform:matrix(0.216503,0.004980,-0.005748,0.249934,0,0);-ms-transform:matrix(0.216503,0.004980,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.216503,0.004980,-0.005748,0.249934,0,0);}
.m139_c01382{transform:matrix(0.216667,0.003467,-0.003999,0.249968,0,0);-ms-transform:matrix(0.216667,0.003467,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.216667,0.003467,-0.003999,0.249968,0,0);}
.m76_c01382{transform:matrix(0.216677,0.003467,-0.003999,0.249968,0,0);-ms-transform:matrix(0.216677,0.003467,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.216677,0.003467,-0.003999,0.249968,0,0);}
.m94_c01382{transform:matrix(0.216697,0.003467,-0.003999,0.249968,0,0);-ms-transform:matrix(0.216697,0.003467,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.216697,0.003467,-0.003999,0.249968,0,0);}
.m130_c01382{transform:matrix(0.216902,0.003470,-0.003999,0.249968,0,0);-ms-transform:matrix(0.216902,0.003470,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.216902,0.003470,-0.003999,0.249968,0,0);}
.mfc_c01382{transform:matrix(0.217552,0.003481,-0.003999,0.249968,0,0);-ms-transform:matrix(0.217552,0.003481,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.217552,0.003481,-0.003999,0.249968,0,0);}
.m102_c01382{transform:matrix(0.217642,0.003482,-0.003999,0.249968,0,0);-ms-transform:matrix(0.217642,0.003482,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.217642,0.003482,-0.003999,0.249968,0,0);}
.mba_c01382{transform:matrix(0.217672,0.003483,-0.003999,0.249968,0,0);-ms-transform:matrix(0.217672,0.003483,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.217672,0.003483,-0.003999,0.249968,0,0);}
.m11a_c01382{transform:matrix(0.217742,0.003484,-0.003999,0.249968,0,0);-ms-transform:matrix(0.217742,0.003484,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.217742,0.003484,-0.003999,0.249968,0,0);}
.mb7_c01382{transform:matrix(0.218457,0.003495,-0.003999,0.249968,0,0);-ms-transform:matrix(0.218457,0.003495,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.218457,0.003495,-0.003999,0.249968,0,0);}
.m7a_c01382{transform:matrix(0.218922,0.003503,-0.003999,0.249968,0,0);-ms-transform:matrix(0.218922,0.003503,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.218922,0.003503,-0.003999,0.249968,0,0);}
.m5f_c01382{transform:matrix(0.218932,0.003503,-0.003999,0.249968,0,0);-ms-transform:matrix(0.218932,0.003503,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.218932,0.003503,-0.003999,0.249968,0,0);}
.m134_c01382{transform:matrix(0.219217,0.003507,-0.003999,0.249968,0,0);-ms-transform:matrix(0.219217,0.003507,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.219217,0.003507,-0.003999,0.249968,0,0);}
.mc5_c01382{transform:matrix(0.219277,0.003508,-0.003999,0.249968,0,0);-ms-transform:matrix(0.219277,0.003508,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.219277,0.003508,-0.003999,0.249968,0,0);}
.m7c_c01382{transform:matrix(0.219522,0.003512,-0.003999,0.249968,0,0);-ms-transform:matrix(0.219522,0.003512,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.219522,0.003512,-0.003999,0.249968,0,0);}
.mce_c01382{transform:matrix(0.219797,0.003517,-0.003999,0.249968,0,0);-ms-transform:matrix(0.219797,0.003517,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.219797,0.003517,-0.003999,0.249968,0,0);}
.maa_c01382{transform:matrix(0.219882,0.003518,-0.003999,0.249968,0,0);-ms-transform:matrix(0.219882,0.003518,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.219882,0.003518,-0.003999,0.249968,0,0);}
.mef_c01382{transform:matrix(0.219947,0.003519,-0.003999,0.249968,0,0);-ms-transform:matrix(0.219947,0.003519,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.219947,0.003519,-0.003999,0.249968,0,0);}
.ma7_c01382{transform:matrix(0.221012,0.003536,-0.003999,0.249968,0,0);-ms-transform:matrix(0.221012,0.003536,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.221012,0.003536,-0.003999,0.249968,0,0);}
.m2b_c01382{transform:matrix(0.221642,0.002438,-0.002750,0.249985,0,0);-ms-transform:matrix(0.221642,0.002438,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.221642,0.002438,-0.002750,0.249985,0,0);}
.md8_c01382{transform:matrix(0.221917,0.003551,-0.003999,0.249968,0,0);-ms-transform:matrix(0.221917,0.003551,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.221917,0.003551,-0.003999,0.249968,0,0);}
.ma6_c01382{transform:matrix(0.222077,0.003553,-0.003999,0.249968,0,0);-ms-transform:matrix(0.222077,0.003553,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.222077,0.003553,-0.003999,0.249968,0,0);}
.m4b_c01382{transform:matrix(0.222097,0.003554,-0.003999,0.249968,0,0);-ms-transform:matrix(0.222097,0.003554,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.222097,0.003554,-0.003999,0.249968,0,0);}
.m45_c01382{transform:matrix(0.222221,0.004444,-0.004999,0.249950,0,0);-ms-transform:matrix(0.222221,0.004444,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.222221,0.004444,-0.004999,0.249950,0,0);}
.m106_c01382{transform:matrix(0.222637,0.003562,-0.003999,0.249968,0,0);-ms-transform:matrix(0.222637,0.003562,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.222637,0.003562,-0.003999,0.249968,0,0);}
.mdc_c01382{transform:matrix(0.223001,0.003568,-0.003999,0.249968,0,0);-ms-transform:matrix(0.223001,0.003568,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.223001,0.003568,-0.003999,0.249968,0,0);}
.m9b_c01382{transform:matrix(0.223446,0.003575,-0.003999,0.249968,0,0);-ms-transform:matrix(0.223446,0.003575,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.223446,0.003575,-0.003999,0.249968,0,0);}
.m13c_c01382{transform:matrix(0.223646,0.005144,-0.005748,0.249934,0,0);-ms-transform:matrix(0.223646,0.005144,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.223646,0.005144,-0.005748,0.249934,0,0);}
.mf1_c01382{transform:matrix(0.223921,0.003583,-0.003999,0.249968,0,0);-ms-transform:matrix(0.223921,0.003583,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.223921,0.003583,-0.003999,0.249968,0,0);}
.m9d_c01382{transform:matrix(0.223961,0.003583,-0.003999,0.249968,0,0);-ms-transform:matrix(0.223961,0.003583,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.223961,0.003583,-0.003999,0.249968,0,0);}
.m55_c01382{transform:matrix(0.224041,0.003585,-0.003999,0.249968,0,0);-ms-transform:matrix(0.224041,0.003585,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.224041,0.003585,-0.003999,0.249968,0,0);}
.m138_c01382{transform:matrix(0.224381,0.003590,-0.003999,0.249968,0,0);-ms-transform:matrix(0.224381,0.003590,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.224381,0.003590,-0.003999,0.249968,0,0);}
.mff_c01382{transform:matrix(0.224786,0.003597,-0.003999,0.249968,0,0);-ms-transform:matrix(0.224786,0.003597,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.224786,0.003597,-0.003999,0.249968,0,0);}
.mbc_c01382{transform:matrix(0.224851,0.003598,-0.003999,0.249968,0,0);-ms-transform:matrix(0.224851,0.003598,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.224851,0.003598,-0.003999,0.249968,0,0);}
.mb4_c01382{transform:matrix(0.224971,0.003600,-0.003999,0.249968,0,0);-ms-transform:matrix(0.224971,0.003600,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.224971,0.003600,-0.003999,0.249968,0,0);}
.mcd_c01382{transform:matrix(0.225436,0.003607,-0.003999,0.249968,0,0);-ms-transform:matrix(0.225436,0.003607,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.225436,0.003607,-0.003999,0.249968,0,0);}
.m118_c01382{transform:matrix(0.225636,0.003610,-0.003999,0.249968,0,0);-ms-transform:matrix(0.225636,0.003610,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.225636,0.003610,-0.003999,0.249968,0,0);}
.mad_c01382{transform:matrix(0.225831,0.003613,-0.003999,0.249968,0,0);-ms-transform:matrix(0.225831,0.003613,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.225831,0.003613,-0.003999,0.249968,0,0);}
.m97_c01382{transform:matrix(0.225911,0.003615,-0.003999,0.249968,0,0);-ms-transform:matrix(0.225911,0.003615,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.225911,0.003615,-0.003999,0.249968,0,0);}
.ma8_c01382{transform:matrix(0.226846,0.003630,-0.003999,0.249968,0,0);-ms-transform:matrix(0.226846,0.003630,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.226846,0.003630,-0.003999,0.249968,0,0);}
.mc1_c01382{transform:matrix(0.227116,0.003634,-0.003999,0.249968,0,0);-ms-transform:matrix(0.227116,0.003634,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.227116,0.003634,-0.003999,0.249968,0,0);}
.m14f_c01382{transform:matrix(0.227535,0.005233,-0.005748,0.249934,0,0);-ms-transform:matrix(0.227535,0.005233,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.227535,0.005233,-0.005748,0.249934,0,0);}
.m122_c01382{transform:matrix(0.227551,0.003641,-0.003999,0.249968,0,0);-ms-transform:matrix(0.227551,0.003641,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.227551,0.003641,-0.003999,0.249968,0,0);}
.m3a_c01382{transform:matrix(0.227939,0.004559,-0.004999,0.249950,0,0);-ms-transform:matrix(0.227939,0.004559,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.227939,0.004559,-0.004999,0.249950,0,0);}
.ma0_c01382{transform:matrix(0.228481,0.003656,-0.003999,0.249968,0,0);-ms-transform:matrix(0.228481,0.003656,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.228481,0.003656,-0.003999,0.249968,0,0);}
.m140_c01382{transform:matrix(0.229054,0.005268,-0.005748,0.249934,0,0);-ms-transform:matrix(0.229054,0.005268,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.229054,0.005268,-0.005748,0.249934,0,0);}
.mdd_c01382{transform:matrix(0.229121,0.003666,-0.003999,0.249968,0,0);-ms-transform:matrix(0.229121,0.003666,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.229121,0.003666,-0.003999,0.249968,0,0);}
.m48_c01382{transform:matrix(0.229166,0.003667,-0.003999,0.249968,0,0);-ms-transform:matrix(0.229166,0.003667,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.229166,0.003667,-0.003999,0.249968,0,0);}
.m9c_c01382{transform:matrix(0.229301,0.003669,-0.003999,0.249968,0,0);-ms-transform:matrix(0.229301,0.003669,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.229301,0.003669,-0.003999,0.249968,0,0);}
.m57_c01382{transform:matrix(0.229746,0.003676,-0.003999,0.249968,0,0);-ms-transform:matrix(0.229746,0.003676,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.229746,0.003676,-0.003999,0.249968,0,0);}
.m54_c01382{transform:matrix(0.229846,0.003678,-0.003999,0.249968,0,0);-ms-transform:matrix(0.229846,0.003678,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.229846,0.003678,-0.003999,0.249968,0,0);}
.md3_c01382{transform:matrix(0.230396,0.003686,-0.003999,0.249968,0,0);-ms-transform:matrix(0.230396,0.003686,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.230396,0.003686,-0.003999,0.249968,0,0);}
.mfa_c01382{transform:matrix(0.230605,0.003690,-0.003999,0.249968,0,0);-ms-transform:matrix(0.230605,0.003690,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.230605,0.003690,-0.003999,0.249968,0,0);}
.mab_c01382{transform:matrix(0.231400,0.003702,-0.003999,0.249968,0,0);-ms-transform:matrix(0.231400,0.003702,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.231400,0.003702,-0.003999,0.249968,0,0);}
.md2_c01382{transform:matrix(0.232360,0.003718,-0.003999,0.249968,0,0);-ms-transform:matrix(0.232360,0.003718,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.232360,0.003718,-0.003999,0.249968,0,0);}
.m7b_c01382{transform:matrix(0.232370,0.003718,-0.003999,0.249968,0,0);-ms-transform:matrix(0.232370,0.003718,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.232370,0.003718,-0.003999,0.249968,0,0);}
.mc3_c01382{transform:matrix(0.232895,0.003726,-0.003999,0.249968,0,0);-ms-transform:matrix(0.232895,0.003726,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.232895,0.003726,-0.003999,0.249968,0,0);}
.mbd_c01382{transform:matrix(0.232915,0.003727,-0.003999,0.249968,0,0);-ms-transform:matrix(0.232915,0.003727,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.232915,0.003727,-0.003999,0.249968,0,0);}
.mdf_c01382{transform:matrix(0.232945,0.003727,-0.003999,0.249968,0,0);-ms-transform:matrix(0.232945,0.003727,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.232945,0.003727,-0.003999,0.249968,0,0);}
.mf2_c01382{transform:matrix(0.233365,0.003734,-0.003999,0.249968,0,0);-ms-transform:matrix(0.233365,0.003734,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.233365,0.003734,-0.003999,0.249968,0,0);}
.m14d_c01382{transform:matrix(0.233648,0.005374,-0.005748,0.249934,0,0);-ms-transform:matrix(0.233648,0.005374,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.233648,0.005374,-0.005748,0.249934,0,0);}
.m35_c01382{transform:matrix(0.233753,0.004675,-0.004999,0.249950,0,0);-ms-transform:matrix(0.233753,0.004675,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.233753,0.004675,-0.004999,0.249950,0,0);}
.mc9_c01382{transform:matrix(0.234810,0.003757,-0.003999,0.249968,0,0);-ms-transform:matrix(0.234810,0.003757,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.234810,0.003757,-0.003999,0.249968,0,0);}
.m5d_c01382{transform:matrix(0.234860,0.003758,-0.003999,0.249968,0,0);-ms-transform:matrix(0.234860,0.003758,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.234860,0.003758,-0.003999,0.249968,0,0);}
.mc0_c01382{transform:matrix(0.235005,0.003760,-0.003999,0.249968,0,0);-ms-transform:matrix(0.235005,0.003760,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.235005,0.003760,-0.003999,0.249968,0,0);}
.m77_c01382{transform:matrix(0.236045,0.003777,-0.003999,0.249968,0,0);-ms-transform:matrix(0.236045,0.003777,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.236045,0.003777,-0.003999,0.249968,0,0);}
.m59_c01382{transform:matrix(0.236220,0.003780,-0.003999,0.249968,0,0);-ms-transform:matrix(0.236220,0.003780,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.236220,0.003780,-0.003999,0.249968,0,0);}
.m7d_c01382{transform:matrix(0.236240,0.003780,-0.003999,0.249968,0,0);-ms-transform:matrix(0.236240,0.003780,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.236240,0.003780,-0.003999,0.249968,0,0);}
.m79_c01382{transform:matrix(0.236535,0.003785,-0.003999,0.249968,0,0);-ms-transform:matrix(0.236535,0.003785,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.236535,0.003785,-0.003999,0.249968,0,0);}
.mbe_c01382{transform:matrix(0.236590,0.003785,-0.003999,0.249968,0,0);-ms-transform:matrix(0.236590,0.003785,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.236590,0.003785,-0.003999,0.249968,0,0);}
.md0_c01382{transform:matrix(0.236600,0.003786,-0.003999,0.249968,0,0);-ms-transform:matrix(0.236600,0.003786,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.236600,0.003786,-0.003999,0.249968,0,0);}
.mcc_c01382{transform:matrix(0.236840,0.003789,-0.003999,0.249968,0,0);-ms-transform:matrix(0.236840,0.003789,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.236840,0.003789,-0.003999,0.249968,0,0);}
.m47_c01382{transform:matrix(0.237118,0.004742,-0.004999,0.249950,0,0);-ms-transform:matrix(0.237118,0.004742,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.237118,0.004742,-0.004999,0.249950,0,0);}
.m43_c01382{transform:matrix(0.237218,0.004744,-0.004999,0.249950,0,0);-ms-transform:matrix(0.237218,0.004744,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.237218,0.004744,-0.004999,0.249950,0,0);}
.m125_c01382{transform:matrix(0.237620,0.003802,-0.003999,0.249968,0,0);-ms-transform:matrix(0.237620,0.003802,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.237620,0.003802,-0.003999,0.249968,0,0);}
.m5b_c01382{transform:matrix(0.238010,0.003808,-0.003999,0.249968,0,0);-ms-transform:matrix(0.238010,0.003808,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.238010,0.003808,-0.003999,0.249968,0,0);}
.m49_c01382{transform:matrix(0.238065,0.003809,-0.003999,0.249968,0,0);-ms-transform:matrix(0.238065,0.003809,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.238065,0.003809,-0.003999,0.249968,0,0);}
.m13_c01382{transform:matrix(0.238131,0.002619,-0.002750,0.249985,0,0);-ms-transform:matrix(0.238131,0.002619,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.238131,0.002619,-0.002750,0.249985,0,0);}
.m39_c01382{transform:matrix(0.238147,0.004763,-0.004999,0.249950,0,0);-ms-transform:matrix(0.238147,0.004763,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.238147,0.004763,-0.004999,0.249950,0,0);}
.m58_c01382{transform:matrix(0.238614,0.003818,-0.003999,0.249968,0,0);-ms-transform:matrix(0.238614,0.003818,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.238614,0.003818,-0.003999,0.249968,0,0);}
.me3_c01382{transform:matrix(0.238744,0.003820,-0.003999,0.249968,0,0);-ms-transform:matrix(0.238744,0.003820,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.238744,0.003820,-0.003999,0.249968,0,0);}
.mac_c01382{transform:matrix(0.239459,0.003831,-0.003999,0.249968,0,0);-ms-transform:matrix(0.239459,0.003831,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.239459,0.003831,-0.003999,0.249968,0,0);}
.ma2_c01382{transform:matrix(0.239794,0.003837,-0.003999,0.249968,0,0);-ms-transform:matrix(0.239794,0.003837,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.239794,0.003837,-0.003999,0.249968,0,0);}
.m46_c01382{transform:matrix(0.239842,0.004797,-0.004999,0.249950,0,0);-ms-transform:matrix(0.239842,0.004797,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.239842,0.004797,-0.004999,0.249950,0,0);}
.m9a_c01382{transform:matrix(0.239919,0.003839,-0.003999,0.249968,0,0);-ms-transform:matrix(0.239919,0.003839,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.239919,0.003839,-0.003999,0.249968,0,0);}
.me0_c01382{transform:matrix(0.240419,0.003847,-0.003999,0.249968,0,0);-ms-transform:matrix(0.240419,0.003847,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.240419,0.003847,-0.003999,0.249968,0,0);}
.ma_c01382{transform:matrix(0.240635,0.002647,-0.002750,0.249985,0,0);-ms-transform:matrix(0.240635,0.002647,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.240635,0.002647,-0.002750,0.249985,0,0);}
.m4f_c01382{transform:matrix(0.240639,0.003850,-0.003999,0.249968,0,0);-ms-transform:matrix(0.240639,0.003850,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.240639,0.003850,-0.003999,0.249968,0,0);}
.m37_c01382{transform:matrix(0.240812,0.004816,-0.004999,0.249950,0,0);-ms-transform:matrix(0.240812,0.004816,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.240812,0.004816,-0.004999,0.249950,0,0);}
.mcb_c01382{transform:matrix(0.241089,0.003857,-0.003999,0.249968,0,0);-ms-transform:matrix(0.241089,0.003857,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.241089,0.003857,-0.003999,0.249968,0,0);}
.m51_c01382{transform:matrix(0.241229,0.003860,-0.003999,0.249968,0,0);-ms-transform:matrix(0.241229,0.003860,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.241229,0.003860,-0.003999,0.249968,0,0);}
.m143_c01382{transform:matrix(0.241476,0.005554,-0.005748,0.249934,0,0);-ms-transform:matrix(0.241476,0.005554,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.241476,0.005554,-0.005748,0.249934,0,0);}
.mc6_c01382{transform:matrix(0.241479,0.003864,-0.003999,0.249968,0,0);-ms-transform:matrix(0.241479,0.003864,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.241479,0.003864,-0.003999,0.249968,0,0);}
.m6_c01382{transform:matrix(0.241980,0.002662,-0.002750,0.249985,0,0);-ms-transform:matrix(0.241980,0.002662,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.241980,0.002662,-0.002750,0.249985,0,0);}
.m36_c01382{transform:matrix(0.242117,0.004842,-0.004999,0.249950,0,0);-ms-transform:matrix(0.242117,0.004842,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.242117,0.004842,-0.004999,0.249950,0,0);}
.m5e_c01382{transform:matrix(0.242134,0.003874,-0.003999,0.249968,0,0);-ms-transform:matrix(0.242134,0.003874,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.242134,0.003874,-0.003999,0.249968,0,0);}
.m4e_c01382{transform:matrix(0.242299,0.003877,-0.003999,0.249968,0,0);-ms-transform:matrix(0.242299,0.003877,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.242299,0.003877,-0.003999,0.249968,0,0);}
.m3b_c01382{transform:matrix(0.242726,0.004855,-0.004999,0.249950,0,0);-ms-transform:matrix(0.242726,0.004855,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.242726,0.004855,-0.004999,0.249950,0,0);}
.m98_c01382{transform:matrix(0.243069,0.003889,-0.003999,0.249968,0,0);-ms-transform:matrix(0.243069,0.003889,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.243069,0.003889,-0.003999,0.249968,0,0);}
.m90_c01382{transform:matrix(0.243169,0.003891,-0.003999,0.249968,0,0);-ms-transform:matrix(0.243169,0.003891,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.243169,0.003891,-0.003999,0.249968,0,0);}
.mcf_c01382{transform:matrix(0.243264,0.003892,-0.003999,0.249968,0,0);-ms-transform:matrix(0.243264,0.003892,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.243264,0.003892,-0.003999,0.249968,0,0);}
.ma1_c01382{transform:matrix(0.243289,0.003893,-0.003999,0.249968,0,0);-ms-transform:matrix(0.243289,0.003893,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.243289,0.003893,-0.003999,0.249968,0,0);}
.m1b_c01382{transform:matrix(0.243360,0.002677,-0.002750,0.249985,0,0);-ms-transform:matrix(0.243360,0.002677,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.243360,0.002677,-0.002750,0.249985,0,0);}
.maf_c01382{transform:matrix(0.243544,0.003897,-0.003999,0.249968,0,0);-ms-transform:matrix(0.243544,0.003897,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.243544,0.003897,-0.003999,0.249968,0,0);}
.ma5_c01382{transform:matrix(0.243619,0.003898,-0.003999,0.249968,0,0);-ms-transform:matrix(0.243619,0.003898,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.243619,0.003898,-0.003999,0.249968,0,0);}
.m38_c01382{transform:matrix(0.243651,0.004873,-0.004999,0.249950,0,0);-ms-transform:matrix(0.243651,0.004873,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.243651,0.004873,-0.004999,0.249950,0,0);}
.md5_c01382{transform:matrix(0.243669,0.003899,-0.003999,0.249968,0,0);-ms-transform:matrix(0.243669,0.003899,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.243669,0.003899,-0.003999,0.249968,0,0);}
.m3f_c01382{transform:matrix(0.243801,0.004876,-0.004999,0.249950,0,0);-ms-transform:matrix(0.243801,0.004876,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.243801,0.004876,-0.004999,0.249950,0,0);}
.m22_c01382{transform:matrix(0.244080,0.002685,-0.002750,0.249985,0,0);-ms-transform:matrix(0.244080,0.002685,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.244080,0.002685,-0.002750,0.249985,0,0);}
.m1c_c01382{transform:matrix(0.244090,0.002685,-0.002750,0.249985,0,0);-ms-transform:matrix(0.244090,0.002685,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.244090,0.002685,-0.002750,0.249985,0,0);}
.m16_c01382{transform:matrix(0.244240,0.002687,-0.002750,0.249985,0,0);-ms-transform:matrix(0.244240,0.002687,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.244240,0.002687,-0.002750,0.249985,0,0);}
.m7e_c01382{transform:matrix(0.244389,0.003910,-0.003999,0.249968,0,0);-ms-transform:matrix(0.244389,0.003910,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.244389,0.003910,-0.003999,0.249968,0,0);}
.m11d_c01382{transform:matrix(0.244749,0.003916,-0.003999,0.249968,0,0);-ms-transform:matrix(0.244749,0.003916,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.244749,0.003916,-0.003999,0.249968,0,0);}
.m144_c01382{transform:matrix(0.244810,0.005631,-0.005748,0.249934,0,0);-ms-transform:matrix(0.244810,0.005631,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.244810,0.005631,-0.005748,0.249934,0,0);}
.m11c_c01382{transform:matrix(0.244874,0.003918,-0.003999,0.249968,0,0);-ms-transform:matrix(0.244874,0.003918,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.244874,0.003918,-0.003999,0.249968,0,0);}
.m4a_c01382{transform:matrix(0.245359,0.003926,-0.003999,0.249968,0,0);-ms-transform:matrix(0.245359,0.003926,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.245359,0.003926,-0.003999,0.249968,0,0);}
.mde_c01382{transform:matrix(0.245404,0.003926,-0.003999,0.249968,0,0);-ms-transform:matrix(0.245404,0.003926,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.245404,0.003926,-0.003999,0.249968,0,0);}
.m52_c01382{transform:matrix(0.245484,0.003928,-0.003999,0.249968,0,0);-ms-transform:matrix(0.245484,0.003928,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.245484,0.003928,-0.003999,0.249968,0,0);}
.me1_c01382{transform:matrix(0.246089,0.003937,-0.003999,0.249968,0,0);-ms-transform:matrix(0.246089,0.003937,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.246089,0.003937,-0.003999,0.249968,0,0);}
.mf5_c01382{transform:matrix(0.246143,0.003938,-0.003999,0.249968,0,0);-ms-transform:matrix(0.246143,0.003938,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.246143,0.003938,-0.003999,0.249968,0,0);}
.m8f_c01382{transform:matrix(0.246583,0.003945,-0.003999,0.249968,0,0);-ms-transform:matrix(0.246583,0.003945,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.246583,0.003945,-0.003999,0.249968,0,0);}
.m50_c01382{transform:matrix(0.246793,0.003949,-0.003999,0.249968,0,0);-ms-transform:matrix(0.246793,0.003949,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.246793,0.003949,-0.003999,0.249968,0,0);}
.mf8_c01382{transform:matrix(0.246808,0.003949,-0.003999,0.249968,0,0);-ms-transform:matrix(0.246808,0.003949,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.246808,0.003949,-0.003999,0.249968,0,0);}
.m1f_c01382{transform:matrix(0.247535,0.002723,-0.002750,0.249985,0,0);-ms-transform:matrix(0.247535,0.002723,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.247535,0.002723,-0.002750,0.249985,0,0);}
.mdb_c01382{transform:matrix(0.247538,0.003961,-0.003999,0.249968,0,0);-ms-transform:matrix(0.247538,0.003961,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.247538,0.003961,-0.003999,0.249968,0,0);}
.m119_c01382{transform:matrix(0.247723,0.003964,-0.003999,0.249968,0,0);-ms-transform:matrix(0.247723,0.003964,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.247723,0.003964,-0.003999,0.249968,0,0);}
.m4c_c01382{transform:matrix(0.247923,0.003967,-0.003999,0.249968,0,0);-ms-transform:matrix(0.247923,0.003967,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.247923,0.003967,-0.003999,0.249968,0,0);}
.m9e_c01382{transform:matrix(0.248013,0.003968,-0.003999,0.249968,0,0);-ms-transform:matrix(0.248013,0.003968,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.248013,0.003968,-0.003999,0.249968,0,0);}
.m92_c01382{transform:matrix(0.248218,0.003971,-0.003999,0.249968,0,0);-ms-transform:matrix(0.248218,0.003971,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.248218,0.003971,-0.003999,0.249968,0,0);}
.m11f_c01382{transform:matrix(0.248383,0.003974,-0.003999,0.249968,0,0);-ms-transform:matrix(0.248383,0.003974,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.248383,0.003974,-0.003999,0.249968,0,0);}
.mf3_c01382{transform:matrix(0.248438,0.003975,-0.003999,0.249968,0,0);-ms-transform:matrix(0.248438,0.003975,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.248438,0.003975,-0.003999,0.249968,0,0);}
.m27_c01382{transform:matrix(0.248540,0.002734,-0.002750,0.249985,0,0);-ms-transform:matrix(0.248540,0.002734,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.248540,0.002734,-0.002750,0.249985,0,0);}
.m95_c01382{transform:matrix(0.249043,0.003985,-0.003999,0.249968,0,0);-ms-transform:matrix(0.249043,0.003985,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.249043,0.003985,-0.003999,0.249968,0,0);}
.m93_c01382{transform:matrix(0.249113,0.003986,-0.003999,0.249968,0,0);-ms-transform:matrix(0.249113,0.003986,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.249113,0.003986,-0.003999,0.249968,0,0);}
.mf9_c01382{transform:matrix(0.249268,0.003988,-0.003999,0.249968,0,0);-ms-transform:matrix(0.249268,0.003988,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.249268,0.003988,-0.003999,0.249968,0,0);}
.m8_c01382{transform:matrix(0.249980,0.002750,-0.002750,0.249985,0,0);-ms-transform:matrix(0.249980,0.002750,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.249980,0.002750,-0.002750,0.249985,0,0);}
.m91_c01382{transform:matrix(0.250063,0.004001,-0.003999,0.249968,0,0);-ms-transform:matrix(0.250063,0.004001,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.250063,0.004001,-0.003999,0.249968,0,0);}
.m17_c01382{transform:matrix(0.250295,0.002753,-0.002750,0.249985,0,0);-ms-transform:matrix(0.250295,0.002753,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.250295,0.002753,-0.002750,0.249985,0,0);}
.m142_c01382{transform:matrix(0.250514,0.005762,-0.005748,0.249934,0,0);-ms-transform:matrix(0.250514,0.005762,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.250514,0.005762,-0.005748,0.249934,0,0);}
.ma3_c01382{transform:matrix(0.250778,0.004012,-0.003999,0.249968,0,0);-ms-transform:matrix(0.250778,0.004012,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.250778,0.004012,-0.003999,0.249968,0,0);}
.m56_c01382{transform:matrix(0.251158,0.004019,-0.003999,0.249968,0,0);-ms-transform:matrix(0.251158,0.004019,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.251158,0.004019,-0.003999,0.249968,0,0);}
.mc_c01382{transform:matrix(0.251680,0.002768,-0.002750,0.249985,0,0);-ms-transform:matrix(0.251680,0.002768,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.251680,0.002768,-0.002750,0.249985,0,0);}
.me2_c01382{transform:matrix(0.252093,0.004033,-0.003999,0.249968,0,0);-ms-transform:matrix(0.252093,0.004033,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.252093,0.004033,-0.003999,0.249968,0,0);}
.m23_c01382{transform:matrix(0.252375,0.002776,-0.002750,0.249985,0,0);-ms-transform:matrix(0.252375,0.002776,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.252375,0.002776,-0.002750,0.249985,0,0);}
.m5c_c01382{transform:matrix(0.252513,0.004040,-0.003999,0.249968,0,0);-ms-transform:matrix(0.252513,0.004040,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.252513,0.004040,-0.003999,0.249968,0,0);}
.m120_c01382{transform:matrix(0.252563,0.004041,-0.003999,0.249968,0,0);-ms-transform:matrix(0.252563,0.004041,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.252563,0.004041,-0.003999,0.249968,0,0);}
.md9_c01382{transform:matrix(0.252693,0.004043,-0.003999,0.249968,0,0);-ms-transform:matrix(0.252693,0.004043,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.252693,0.004043,-0.003999,0.249968,0,0);}
.m11b_c01382{transform:matrix(0.252923,0.004047,-0.003999,0.249968,0,0);-ms-transform:matrix(0.252923,0.004047,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.252923,0.004047,-0.003999,0.249968,0,0);}
.m13d_c01382{transform:matrix(0.252938,0.005818,-0.005748,0.249934,0,0);-ms-transform:matrix(0.252938,0.005818,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.252938,0.005818,-0.005748,0.249934,0,0);}
.m1a_c01382{transform:matrix(0.253090,0.002784,-0.002750,0.249985,0,0);-ms-transform:matrix(0.253090,0.002784,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.253090,0.002784,-0.002750,0.249985,0,0);}
.m141_c01382{transform:matrix(0.253403,0.005828,-0.005748,0.249934,0,0);-ms-transform:matrix(0.253403,0.005828,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.253403,0.005828,-0.005748,0.249934,0,0);}
.m117_c01382{transform:matrix(0.253608,0.004058,-0.003999,0.249968,0,0);-ms-transform:matrix(0.253608,0.004058,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.253608,0.004058,-0.003999,0.249968,0,0);}
.m13f_c01382{transform:matrix(0.254158,0.005846,-0.005748,0.249934,0,0);-ms-transform:matrix(0.254158,0.005846,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.254158,0.005846,-0.005748,0.249934,0,0);}
.mfb_c01382{transform:matrix(0.255227,0.004084,-0.003999,0.249968,0,0);-ms-transform:matrix(0.255227,0.004084,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.255227,0.004084,-0.003999,0.249968,0,0);}
.md1_c01382{transform:matrix(0.255512,0.004088,-0.003999,0.249968,0,0);-ms-transform:matrix(0.255512,0.004088,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.255512,0.004088,-0.003999,0.249968,0,0);}
.m25_c01382{transform:matrix(0.255565,0.002811,-0.002750,0.249985,0,0);-ms-transform:matrix(0.255565,0.002811,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.255565,0.002811,-0.002750,0.249985,0,0);}
.m148_c01382{transform:matrix(0.255827,0.005884,-0.005748,0.249934,0,0);-ms-transform:matrix(0.255827,0.005884,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.255827,0.005884,-0.005748,0.249934,0,0);}
.m12b_c01382{transform:matrix(0.256307,0.004101,-0.003999,0.249968,0,0);-ms-transform:matrix(0.256307,0.004101,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.256307,0.004101,-0.003999,0.249968,0,0);}
.mf6_c01382{transform:matrix(0.256512,0.004104,-0.003999,0.249968,0,0);-ms-transform:matrix(0.256512,0.004104,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.256512,0.004104,-0.003999,0.249968,0,0);}
.mca_c01382{transform:matrix(0.256602,0.004106,-0.003999,0.249968,0,0);-ms-transform:matrix(0.256602,0.004106,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.256602,0.004106,-0.003999,0.249968,0,0);}
.m9f_c01382{transform:matrix(0.256737,0.004108,-0.003999,0.249968,0,0);-ms-transform:matrix(0.256737,0.004108,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.256737,0.004108,-0.003999,0.249968,0,0);}
.m5a_c01382{transform:matrix(0.256812,0.004109,-0.003999,0.249968,0,0);-ms-transform:matrix(0.256812,0.004109,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.256812,0.004109,-0.003999,0.249968,0,0);}
.m96_c01382{transform:matrix(0.257032,0.004113,-0.003999,0.249968,0,0);-ms-transform:matrix(0.257032,0.004113,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.257032,0.004113,-0.003999,0.249968,0,0);}
.md4_c01382{transform:matrix(0.257497,0.004120,-0.003999,0.249968,0,0);-ms-transform:matrix(0.257497,0.004120,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.257497,0.004120,-0.003999,0.249968,0,0);}
.m10_c01382{transform:matrix(0.257864,0.002837,-0.002750,0.249985,0,0);-ms-transform:matrix(0.257864,0.002837,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.257864,0.002837,-0.002750,0.249985,0,0);}
.m128_c01382{transform:matrix(0.257987,0.004128,-0.003999,0.249968,0,0);-ms-transform:matrix(0.257987,0.004128,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.257987,0.004128,-0.003999,0.249968,0,0);}
.m11e_c01382{transform:matrix(0.258847,0.004142,-0.003999,0.249968,0,0);-ms-transform:matrix(0.258847,0.004142,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.258847,0.004142,-0.003999,0.249968,0,0);}
.m3d_c01382{transform:matrix(0.259713,0.005194,-0.004999,0.249950,0,0);-ms-transform:matrix(0.259713,0.005194,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.259713,0.005194,-0.004999,0.249950,0,0);}
.m14_c01382{transform:matrix(0.260754,0.002868,-0.002750,0.249985,0,0);-ms-transform:matrix(0.260754,0.002868,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.260754,0.002868,-0.002750,0.249985,0,0);}
.m127_c01382{transform:matrix(0.260892,0.004174,-0.003999,0.249968,0,0);-ms-transform:matrix(0.260892,0.004174,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.260892,0.004174,-0.003999,0.249968,0,0);}
.m19_c01382{transform:matrix(0.261834,0.002880,-0.002750,0.249985,0,0);-ms-transform:matrix(0.261834,0.002880,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.261834,0.002880,-0.002750,0.249985,0,0);}
.mf_c01382{transform:matrix(0.262509,0.002888,-0.002750,0.249985,0,0);-ms-transform:matrix(0.262509,0.002888,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.262509,0.002888,-0.002750,0.249985,0,0);}
.m5_c01382{transform:matrix(0.263554,0.002899,-0.002750,0.249985,0,0);-ms-transform:matrix(0.263554,0.002899,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.263554,0.002899,-0.002750,0.249985,0,0);}
.ma4_c01382{transform:matrix(0.265721,0.004252,-0.003999,0.249968,0,0);-ms-transform:matrix(0.265721,0.004252,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.265721,0.004252,-0.003999,0.249968,0,0);}
.m147_c01382{transform:matrix(0.265830,0.006114,-0.005748,0.249934,0,0);-ms-transform:matrix(0.265830,0.006114,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.265830,0.006114,-0.005748,0.249934,0,0);}
.m24_c01382{transform:matrix(0.267974,0.002948,-0.002750,0.249985,0,0);-ms-transform:matrix(0.267974,0.002948,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.267974,0.002948,-0.002750,0.249985,0,0);}
.m21_c01382{transform:matrix(0.268209,0.002950,-0.002750,0.249985,0,0);-ms-transform:matrix(0.268209,0.002950,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.268209,0.002950,-0.002750,0.249985,0,0);}
.m29_c01382{transform:matrix(0.268934,0.002958,-0.002750,0.249985,0,0);-ms-transform:matrix(0.268934,0.002958,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.268934,0.002958,-0.002750,0.249985,0,0);}
.m11_c01382{transform:matrix(0.269019,0.002959,-0.002750,0.249985,0,0);-ms-transform:matrix(0.269019,0.002959,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.269019,0.002959,-0.002750,0.249985,0,0);}
.m12d_c01382{transform:matrix(0.269196,0.004307,-0.003999,0.249968,0,0);-ms-transform:matrix(0.269196,0.004307,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.269196,0.004307,-0.003999,0.249968,0,0);}
.m7_c01382{transform:matrix(0.269909,0.002969,-0.002750,0.249985,0,0);-ms-transform:matrix(0.269909,0.002969,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.269909,0.002969,-0.002750,0.249985,0,0);}
.m9_c01382{transform:matrix(0.270589,0.002976,-0.002750,0.249985,0,0);-ms-transform:matrix(0.270589,0.002976,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.270589,0.002976,-0.002750,0.249985,0,0);}
.m18_c01382{transform:matrix(0.270874,0.002980,-0.002750,0.249985,0,0);-ms-transform:matrix(0.270874,0.002980,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.270874,0.002980,-0.002750,0.249985,0,0);}
.m28_c01382{transform:matrix(0.271029,0.002981,-0.002750,0.249985,0,0);-ms-transform:matrix(0.271029,0.002981,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.271029,0.002981,-0.002750,0.249985,0,0);}
.mc8_c01382{transform:matrix(0.273125,0.004370,-0.003999,0.249968,0,0);-ms-transform:matrix(0.273125,0.004370,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.273125,0.004370,-0.003999,0.249968,0,0);}
.me_c01382{transform:matrix(0.274018,0.003014,-0.002750,0.249985,0,0);-ms-transform:matrix(0.274018,0.003014,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.274018,0.003014,-0.002750,0.249985,0,0);}
.m1d_c01382{transform:matrix(0.274673,0.003021,-0.002750,0.249985,0,0);-ms-transform:matrix(0.274673,0.003021,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.274673,0.003021,-0.002750,0.249985,0,0);}
.m20_c01382{transform:matrix(0.275783,0.003034,-0.002750,0.249985,0,0);-ms-transform:matrix(0.275783,0.003034,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.275783,0.003034,-0.002750,0.249985,0,0);}
.m13e_c01382{transform:matrix(0.275937,0.006347,-0.005748,0.249934,0,0);-ms-transform:matrix(0.275937,0.006347,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.275937,0.006347,-0.005748,0.249934,0,0);}
.m4_c01382{transform:matrix(0.277163,0.003049,-0.002750,0.249985,0,0);-ms-transform:matrix(0.277163,0.003049,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.277163,0.003049,-0.002750,0.249985,0,0);}
.m8e_c01382{transform:matrix(0.278359,0.004454,-0.003999,0.249968,0,0);-ms-transform:matrix(0.278359,0.004454,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.278359,0.004454,-0.003999,0.249968,0,0);}
.m26_c01382{transform:matrix(0.278418,0.003063,-0.002750,0.249985,0,0);-ms-transform:matrix(0.278418,0.003063,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.278418,0.003063,-0.002750,0.249985,0,0);}
.m12_c01382{transform:matrix(0.278648,0.003065,-0.002750,0.249985,0,0);-ms-transform:matrix(0.278648,0.003065,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.278648,0.003065,-0.002750,0.249985,0,0);}
.m1e_c01382{transform:matrix(0.281108,0.003092,-0.002750,0.249985,0,0);-ms-transform:matrix(0.281108,0.003092,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.281108,0.003092,-0.002750,0.249985,0,0);}
.m129_c01382{transform:matrix(0.281804,0.004509,-0.003999,0.249968,0,0);-ms-transform:matrix(0.281804,0.004509,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.281804,0.004509,-0.003999,0.249968,0,0);}
.m15_c01382{transform:matrix(0.282713,0.003110,-0.002750,0.249985,0,0);-ms-transform:matrix(0.282713,0.003110,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.282713,0.003110,-0.002750,0.249985,0,0);}
.mc7_c01382{transform:matrix(0.283639,0.004538,-0.003999,0.249968,0,0);-ms-transform:matrix(0.283639,0.004538,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.283639,0.004538,-0.003999,0.249968,0,0);}
.md_c01382{transform:matrix(0.286848,0.003155,-0.002750,0.249985,0,0);-ms-transform:matrix(0.286848,0.003155,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.286848,0.003155,-0.002750,0.249985,0,0);}
.m80_c01382{transform:matrix(0.287833,0.004605,-0.003999,0.249968,0,0);-ms-transform:matrix(0.287833,0.004605,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.287833,0.004605,-0.003999,0.249968,0,0);}
.mb_c01382{transform:matrix(0.294732,0.003242,-0.002750,0.249985,0,0);-ms-transform:matrix(0.294732,0.003242,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.294732,0.003242,-0.002750,0.249985,0,0);}
.mb0_c01382{transform:matrix(0.296547,0.004745,-0.003999,0.249968,0,0);-ms-transform:matrix(0.296547,0.004745,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.296547,0.004745,-0.003999,0.249968,0,0);}
.m12a_c01382{transform:matrix(0.311235,0.004980,-0.003999,0.249968,0,0);-ms-transform:matrix(0.311235,0.004980,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.311235,0.004980,-0.003999,0.249968,0,0);}
.m99_c01382{transform:matrix(0.317614,0.005082,-0.003999,0.249968,0,0);-ms-transform:matrix(0.317614,0.005082,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.317614,0.005082,-0.003999,0.249968,0,0);}
.me4_c01382{transform:matrix(0.318864,0.005102,-0.003999,0.249968,0,0);-ms-transform:matrix(0.318864,0.005102,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.318864,0.005102,-0.003999,0.249968,0,0);}
.m1_c01382{transform:matrix(0.342075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342075,0.000000,0.000000,0.250000,0,0);}
.m14a_c01382{transform:matrix(0.349573,0.008040,-0.005748,0.249934,0,0);-ms-transform:matrix(0.349573,0.008040,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.349573,0.008040,-0.005748,0.249934,0,0);}
.m145_c01382{transform:matrix(0.349767,0.008045,-0.005748,0.249934,0,0);-ms-transform:matrix(0.349767,0.008045,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.349767,0.008045,-0.005748,0.249934,0,0);}
.m146_c01382{transform:matrix(0.356131,0.008191,-0.005748,0.249934,0,0);-ms-transform:matrix(0.356131,0.008191,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.356131,0.008191,-0.005748,0.249934,0,0);}
.m149_c01382{transform:matrix(0.388392,0.008933,-0.005748,0.249934,0,0);-ms-transform:matrix(0.388392,0.008933,-0.005748,0.249934,0,0);-webkit-transform:matrix(0.388392,0.008933,-0.005748,0.249934,0,0);}
.md7_c01382{transform:matrix(0.498556,0.007977,-0.003999,0.249968,0,0);-ms-transform:matrix(0.498556,0.007977,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.498556,0.007977,-0.003999,0.249968,0,0);}
.m154_c01382{transform:matrix(0.526925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526925,0.000000,0.000000,0.250000,0,0);}
.m152_c01382{transform:matrix(0.537210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537210,0.000000,0.000000,0.250000,0,0);}
.m124_c01382{transform:matrix(0.549725,0.008796,-0.003999,0.249968,0,0);-ms-transform:matrix(0.549725,0.008796,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.549725,0.008796,-0.003999,0.249968,0,0);}
.m34_c01382{transform:matrix(0.654694,0.013094,-0.004999,0.249950,0,0);-ms-transform:matrix(0.654694,0.013094,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.654694,0.013094,-0.004999,0.249950,0,0);}
.m151_c01382{transform:matrix(0.868060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.868060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.868060,0.000000,0.000000,0.250000,0,0);}
.m153_c01382{transform:matrix(1.035380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.035380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.035380,0.000000,0.000000,0.250000,0,0);}
.m3_c01382{transform:matrix(2.165140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.165140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.165140,0.000000,0.000000,0.250000,0,0);}
.m2_c01382{transform:matrix(2.422625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.422625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.422625,0.000000,0.000000,0.250000,0,0);}
.v0_c01382{vertical-align:0.000000px;}
.ls0_c01382{letter-spacing:0.000000px;}
.sc__c01382{text-shadow:none;}
.sc0_c01382{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__c01382{-webkit-text-stroke:0px transparent;}
.sc0_c01382{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01382{word-spacing:0.000000px;}
.fc0_c01382{color:transparent;}
.fse_c01382{font-size:18.000000px;}
.fs10_c01382{font-size:24.000000px;}
.fs1_c01382{font-size:42.000000px;}
.fs0_c01382{font-size:72.000000px;}
.fs2_c01382{font-size:72.004356px;}
.fs6_c01382{font-size:78.009983px;}
.fs4_c01382{font-size:78.015598px;}
.fsc_c01382{font-size:78.020628px;}
.fs9_c01382{font-size:84.010751px;}
.fs5_c01382{font-size:84.016798px;}
.fsd_c01382{font-size:84.022215px;}
.fsf_c01382{font-size:90.000000px;}
.fs3_c01382{font-size:90.005445px;}
.fsb_c01382{font-size:90.011519px;}
.fsa_c01382{font-size:108.013823px;}
.fs8_c01382{font-size:114.014591px;}
.fs7_c01382{font-size:120.015359px;}
.y0_c01382{bottom:0.000000px;}
.y15f_c01382{bottom:0.949500px;}
.y15e_c01382{bottom:0.993000px;}
.y15d_c01382{bottom:45.498000px;}
.y15c_c01382{bottom:47.638564px;}
.y15b_c01382{bottom:48.457906px;}
.y15a_c01382{bottom:49.833694px;}
.y159_c01382{bottom:52.034413px;}
.y158_c01382{bottom:52.534453px;}
.y157_c01382{bottom:53.668182px;}
.y156_c01382{bottom:54.135586px;}
.y155_c01382{bottom:55.032619px;}
.y154_c01382{bottom:56.990520px;}
.y153_c01382{bottom:58.872248px;}
.y152_c01382{bottom:60.222006px;}
.y151_c01382{bottom:81.141832px;}
.y150_c01382{bottom:82.407258px;}
.y14f_c01382{bottom:83.426560px;}
.y14e_c01382{bottom:84.935763px;}
.y14d_c01382{bottom:87.196755px;}
.y14c_c01382{bottom:87.959377px;}
.y14b_c01382{bottom:89.495559px;}
.y14a_c01382{bottom:90.212503px;}
.y149_c01382{bottom:90.987960px;}
.y148_c01382{bottom:91.912008px;}
.y147_c01382{bottom:92.623122px;}
.y146_c01382{bottom:93.966000px;}
.y145_c01382{bottom:115.528104px;}
.y144_c01382{bottom:117.287604px;}
.y143_c01382{bottom:118.273980px;}
.y142_c01382{bottom:120.049740px;}
.y141_c01382{bottom:120.822048px;}
.y140_c01382{bottom:122.828196px;}
.y13f_c01382{bottom:124.342968px;}
.y13e_c01382{bottom:125.082000px;}
.y13d_c01382{bottom:126.068088px;}
.y13c_c01382{bottom:128.324784px;}
.y13b_c01382{bottom:129.839364px;}
.y13a_c01382{bottom:130.602960px;}
.y139_c01382{bottom:152.690604px;}
.y138_c01382{bottom:153.156900px;}
.y137_c01382{bottom:154.549728px;}
.y136_c01382{bottom:155.230008px;}
.y135_c01382{bottom:156.160320px;}
.y134_c01382{bottom:157.294128px;}
.y133_c01382{bottom:158.711388px;}
.y132_c01382{bottom:160.051344px;}
.y131_c01382{bottom:160.971024px;}
.y130_c01382{bottom:162.784104px;}
.y12f_c01382{bottom:163.709244px;}
.y12e_c01382{bottom:164.853876px;}
.y12d_c01382{bottom:165.307404px;}
.y12c_c01382{bottom:166.248576px;}
.y12b_c01382{bottom:188.893296px;}
.y12a_c01382{bottom:189.521136px;}
.y129_c01382{bottom:191.803344px;}
.y128_c01382{bottom:192.845880px;}
.y127_c01382{bottom:194.098008px;}
.y126_c01382{bottom:194.714052px;}
.y125_c01382{bottom:196.965936px;}
.y124_c01382{bottom:197.611824px;}
.y123_c01382{bottom:198.865344px;}
.y122_c01382{bottom:199.275204px;}
.y121_c01382{bottom:201.353472px;}
.y120_c01382{bottom:223.847688px;}
.y11f_c01382{bottom:224.517048px;}
.y11e_c01382{bottom:224.981016px;}
.y11d_c01382{bottom:226.353936px;}
.y11c_c01382{bottom:227.064660px;}
.y11b_c01382{bottom:229.344540px;}
.y11a_c01382{bottom:230.007264px;}
.y119_c01382{bottom:232.099704px;}
.y118_c01382{bottom:232.774428px;}
.y117_c01382{bottom:233.238588px;}
.y116_c01382{bottom:234.827892px;}
.y115_c01382{bottom:236.006928px;}
.y114_c01382{bottom:236.687400px;}
.y113_c01382{bottom:237.809640px;}
.y112_c01382{bottom:258.317376px;}
.y111_c01382{bottom:259.859832px;}
.y110_c01382{bottom:261.838944px;}
.y10f_c01382{bottom:262.539588px;}
.y10e_c01382{bottom:263.592156px;}
.y10d_c01382{bottom:264.012084px;}
.y10c_c01382{bottom:265.548024px;}
.y10b_c01382{bottom:266.188548px;}
.y10a_c01382{bottom:267.073884px;}
.y109_c01382{bottom:269.705256px;}
.y108_c01382{bottom:271.001508px;}
.y107_c01382{bottom:271.671792px;}
.y106_c01382{bottom:273.184584px;}
.y105_c01382{bottom:297.627912px;}
.y104_c01382{bottom:298.438896px;}
.y103_c01382{bottom:300.674088px;}
.y102_c01382{bottom:302.008176px;}
.y101_c01382{bottom:302.651064px;}
.y100_c01382{bottom:304.832988px;}
.yff_c01382{bottom:305.935632px;}
.yfe_c01382{bottom:306.361308px;}
.yfd_c01382{bottom:308.085396px;}
.yfc_c01382{bottom:308.748036px;}
.yfb_c01382{bottom:309.639024px;}
.yfa_c01382{bottom:328.230336px;}
.yf9_c01382{bottom:328.766556px;}
.yf8_c01382{bottom:331.107348px;}
.yf7_c01382{bottom:331.899060px;}
.yf6_c01382{bottom:332.926572px;}
.yf5_c01382{bottom:333.463632px;}
.yf4_c01382{bottom:335.802960px;}
.yf3_c01382{bottom:337.405536px;}
.yf2_c01382{bottom:339.232080px;}
.yf1_c01382{bottom:340.010028px;}
.yf0_c01382{bottom:341.040816px;}
.yef_c01382{bottom:343.128456px;}
.yee_c01382{bottom:365.043924px;}
.yed_c01382{bottom:366.169188px;}
.yec_c01382{bottom:366.726228px;}
.yeb_c01382{bottom:368.208540px;}
.yea_c01382{bottom:368.589192px;}
.ye9_c01382{bottom:369.875088px;}
.ye8_c01382{bottom:371.003736px;}
.ye7_c01382{bottom:371.555208px;}
.ye6_c01382{bottom:372.665760px;}
.ye5_c01382{bottom:373.231152px;}
.ye4_c01382{bottom:373.960908px;}
.ye3_c01382{bottom:375.091020px;}
.ye2_c01382{bottom:375.642276px;}
.ye1_c01382{bottom:377.120268px;}
.ye0_c01382{bottom:377.688276px;}
.ydf_c01382{bottom:399.231420px;}
.yde_c01382{bottom:400.228524px;}
.ydd_c01382{bottom:400.934700px;}
.ydc_c01382{bottom:403.003860px;}
.ydb_c01382{bottom:403.904352px;}
.yda_c01382{bottom:404.620896px;}
.yd9_c01382{bottom:406.906308px;}
.yd8_c01382{bottom:408.244140px;}
.yd7_c01382{bottom:409.649016px;}
.yd6_c01382{bottom:410.353032px;}
.yd5_c01382{bottom:411.243156px;}
.yd4_c01382{bottom:412.173660px;}
.yd3_c01382{bottom:412.621536px;}
.yd2_c01382{bottom:414.687192px;}
.yd1_c01382{bottom:434.565924px;}
.yd0_c01382{bottom:435.858660px;}
.ycf_c01382{bottom:436.498032px;}
.yce_c01382{bottom:438.529752px;}
.ycd_c01382{bottom:439.167612px;}
.ycc_c01382{bottom:439.797060px;}
.ycb_c01382{bottom:441.429804px;}
.yca_c01382{bottom:442.081848px;}
.yc9_c01382{bottom:443.296224px;}
.yc8_c01382{bottom:444.576396px;}
.yc7_c01382{bottom:445.192272px;}
.yc6_c01382{bottom:447.038112px;}
.yc5_c01382{bottom:448.711080px;}
.yc4_c01382{bottom:472.882524px;}
.yc3_c01382{bottom:473.503932px;}
.yc2_c01382{bottom:475.034856px;}
.yc1_c01382{bottom:475.816488px;}
.yc0_c01382{bottom:476.628984px;}
.ybf_c01382{bottom:478.373100px;}
.ybe_c01382{bottom:479.169504px;}
.ybd_c01382{bottom:480.541944px;}
.ybc_c01382{bottom:480.946224px;}
.ybb_c01382{bottom:482.315676px;}
.yba_c01382{bottom:482.708424px;}
.yb9_c01382{bottom:484.084944px;}
.yb8_c01382{bottom:507.395928px;}
.yb7_c01382{bottom:509.269476px;}
.yb6_c01382{bottom:509.895420px;}
.yb5_c01382{bottom:511.331784px;}
.yb4_c01382{bottom:513.414132px;}
.yb3_c01382{bottom:514.860396px;}
.yb2_c01382{bottom:515.502780px;}
.yb1_c01382{bottom:516.312216px;}
.yb0_c01382{bottom:517.380000px;}
.yaf_c01382{bottom:517.779000px;}
.yae_c01382{bottom:519.015168px;}
.yad_c01382{bottom:519.426756px;}
.yac_c01382{bottom:520.341780px;}
.yab_c01382{bottom:543.414024px;}
.yaa_c01382{bottom:544.571184px;}
.ya9_c01382{bottom:545.938476px;}
.ya8_c01382{bottom:546.412680px;}
.ya7_c01382{bottom:547.553652px;}
.ya6_c01382{bottom:548.251488px;}
.ya5_c01382{bottom:550.067280px;}
.ya4_c01382{bottom:551.466168px;}
.ya3_c01382{bottom:552.145824px;}
.ya2_c01382{bottom:553.054224px;}
.ya1_c01382{bottom:553.522896px;}
.ya0_c01382{bottom:554.633784px;}
.y9f_c01382{bottom:555.813996px;}
.y9e_c01382{bottom:556.823604px;}
.y9d_c01382{bottom:580.104684px;}
.y9c_c01382{bottom:580.785684px;}
.y9b_c01382{bottom:582.860832px;}
.y9a_c01382{bottom:584.226300px;}
.y99_c01382{bottom:584.895036px;}
.y98_c01382{bottom:586.722108px;}
.y97_c01382{bottom:588.127992px;}
.y96_c01382{bottom:588.580872px;}
.y95_c01382{bottom:590.181288px;}
.y94_c01382{bottom:591.752148px;}
.y93_c01382{bottom:592.483116px;}
.y92_c01382{bottom:593.717868px;}
.y91_c01382{bottom:615.101244px;}
.y90_c01382{bottom:615.760596px;}
.y8f_c01382{bottom:617.067420px;}
.y8e_c01382{bottom:617.720712px;}
.y8d_c01382{bottom:618.373740px;}
.y8c_c01382{bottom:620.122800px;}
.y8b_c01382{bottom:621.429360px;}
.y8a_c01382{bottom:622.080492px;}
.y89_c01382{bottom:623.185104px;}
.y88_c01382{bottom:624.708108px;}
.y87_c01382{bottom:625.338588px;}
.y86_c01382{bottom:626.224356px;}
.y85_c01382{bottom:627.467604px;}
.y84_c01382{bottom:650.636688px;}
.y83_c01382{bottom:651.197160px;}
.y82_c01382{bottom:652.681224px;}
.y81_c01382{bottom:654.342108px;}
.y80_c01382{bottom:655.268028px;}
.y7f_c01382{bottom:656.911380px;}
.y7e_c01382{bottom:657.310500px;}
.y7d_c01382{bottom:658.794204px;}
.y7c_c01382{bottom:659.358708px;}
.y7b_c01382{bottom:660.860160px;}
.y7a_c01382{bottom:661.759188px;}
.y79_c01382{bottom:687.182676px;}
.y78_c01382{bottom:688.558668px;}
.y77_c01382{bottom:689.097012px;}
.y76_c01382{bottom:689.965500px;}
.y75_c01382{bottom:691.360812px;}
.y74_c01382{bottom:691.887852px;}
.y73_c01382{bottom:692.424780px;}
.y72_c01382{bottom:694.151652px;}
.y71_c01382{bottom:694.682868px;}
.y70_c01382{bottom:695.032740px;}
.y6f_c01382{bottom:696.243420px;}
.y6e_c01382{bottom:697.133220px;}
.y6d_c01382{bottom:720.045408px;}
.y6c_c01382{bottom:722.134152px;}
.y6b_c01382{bottom:722.744544px;}
.y6a_c01382{bottom:724.596612px;}
.y69_c01382{bottom:726.048600px;}
.y68_c01382{bottom:726.695064px;}
.y67_c01382{bottom:727.715412px;}
.y66_c01382{bottom:728.545872px;}
.y65_c01382{bottom:730.818852px;}
.y64_c01382{bottom:731.470968px;}
.y63_c01382{bottom:732.782640px;}
.y62_c01382{bottom:756.735564px;}
.y61_c01382{bottom:757.901748px;}
.y60_c01382{bottom:758.333460px;}
.y5f_c01382{bottom:760.074432px;}
.y5e_c01382{bottom:760.491780px;}
.y5d_c01382{bottom:762.815868px;}
.y5c_c01382{bottom:763.237224px;}
.y5b_c01382{bottom:764.035404px;}
.y5a_c01382{bottom:764.822508px;}
.y59_c01382{bottom:766.752312px;}
.y58_c01382{bottom:767.364132px;}
.y57_c01382{bottom:768.150084px;}
.y56_c01382{bottom:792.833268px;}
.y55_c01382{bottom:793.548060px;}
.y54_c01382{bottom:794.420940px;}
.y53_c01382{bottom:795.630588px;}
.y52_c01382{bottom:795.988692px;}
.y51_c01382{bottom:797.199108px;}
.y50_c01382{bottom:797.561052px;}
.y4f_c01382{bottom:798.940068px;}
.y4e_c01382{bottom:799.488708px;}
.y4d_c01382{bottom:800.698764px;}
.y4c_c01382{bottom:801.234780px;}
.y4b_c01382{bottom:801.904500px;}
.y4a_c01382{bottom:834.248940px;}
.y49_c01382{bottom:834.558630px;}
.y48_c01382{bottom:835.469490px;}
.y47_c01382{bottom:836.097060px;}
.y46_c01382{bottom:837.629670px;}
.y45_c01382{bottom:838.090710px;}
.y44_c01382{bottom:838.546920px;}
.y43_c01382{bottom:839.155830px;}
.y42_c01382{bottom:862.603980px;}
.y41_c01382{bottom:863.252490px;}
.y40_c01382{bottom:865.466790px;}
.y3f_c01382{bottom:865.887900px;}
.y3e_c01382{bottom:867.406710px;}
.y3d_c01382{bottom:868.081680px;}
.y3c_c01382{bottom:869.166960px;}
.y3b_c01382{bottom:869.832330px;}
.y3a_c01382{bottom:870.916980px;}
.y39_c01382{bottom:872.019120px;}
.y38_c01382{bottom:872.888880px;}
.y37_c01382{bottom:873.999000px;}
.y36_c01382{bottom:901.484836px;}
.y35_c01382{bottom:902.441631px;}
.y34_c01382{bottom:902.898336px;}
.y33_c01382{bottom:903.816133px;}
.y32_c01382{bottom:904.285375px;}
.y31_c01382{bottom:904.742460px;}
.y30_c01382{bottom:905.195832px;}
.y2f_c01382{bottom:906.418549px;}
.y2e_c01382{bottom:907.952787px;}
.y2d_c01382{bottom:908.542272px;}
.y2c_c01382{bottom:936.542964px;}
.y2b_c01382{bottom:937.004436px;}
.y2a_c01382{bottom:938.082051px;}
.y29_c01382{bottom:938.830627px;}
.y28_c01382{bottom:940.362027px;}
.y27_c01382{bottom:940.973287px;}
.y26_c01382{bottom:942.055785px;}
.y25_c01382{bottom:942.505347px;}
.y24_c01382{bottom:942.974209px;}
.y23_c01382{bottom:944.021982px;}
.y22_c01382{bottom:945.266178px;}
.y21_c01382{bottom:967.443825px;}
.y20_c01382{bottom:969.748366px;}
.y1f_c01382{bottom:971.411394px;}
.y1e_c01382{bottom:972.227074px;}
.y1d_c01382{bottom:972.863887px;}
.y1c_c01382{bottom:974.716107px;}
.y1b_c01382{bottom:975.342430px;}
.y1a_c01382{bottom:975.973273px;}
.y19_c01382{bottom:977.020368px;}
.y18_c01382{bottom:978.662351px;}
.y17_c01382{bottom:979.282819px;}
.y16_c01382{bottom:980.106714px;}
.y15_c01382{bottom:1003.780935px;}
.y14_c01382{bottom:1004.363658px;}
.y13_c01382{bottom:1004.917467px;}
.y12_c01382{bottom:1006.782546px;}
.y11_c01382{bottom:1008.077652px;}
.y10_c01382{bottom:1008.461538px;}
.yf_c01382{bottom:1009.737825px;}
.ye_c01382{bottom:1011.068642px;}
.yd_c01382{bottom:1013.091999px;}
.yc_c01382{bottom:1013.823103px;}
.yb_c01382{bottom:1014.392218px;}
.ya_c01382{bottom:1043.895603px;}
.y9_c01382{bottom:1044.270054px;}
.y8_c01382{bottom:1045.223556px;}
.y7_c01382{bottom:1045.710768px;}
.y6_c01382{bottom:1046.667042px;}
.y5_c01382{bottom:1047.041377px;}
.y4_c01382{bottom:1047.867054px;}
.y3_c01382{bottom:1048.951500px;}
.y2_c01382{bottom:1120.822500px;}
.y1_c01382{bottom:1190.599500px;}
.h10_c01382{height:18.000000px;}
.h12_c01382{height:24.000000px;}
.h3_c01382{height:42.000000px;}
.h2_c01382{height:72.000000px;}
.h4_c01382{height:72.004356px;}
.h8_c01382{height:78.009983px;}
.h6_c01382{height:78.015598px;}
.he_c01382{height:78.020628px;}
.hb_c01382{height:84.010751px;}
.h7_c01382{height:84.016798px;}
.hf_c01382{height:84.022215px;}
.h11_c01382{height:90.000000px;}
.h5_c01382{height:90.005445px;}
.hd_c01382{height:90.011519px;}
.hc_c01382{height:108.013823px;}
.ha_c01382{height:114.014591px;}
.h9_c01382{height:120.015359px;}
.h1_c01382{height:1250.250000px;}
.h0_c01382{height:1250.370000px;}
.w0_c01382{width:878.850000px;}
.w1_c01382{width:879.000000px;}
.x0_c01382{left:0.000000px;}
.x50_c01382{left:81.334656px;}
.xe3_c01382{left:84.158144px;}
.xcc_c01382{left:86.908392px;}
.x6f_c01382{left:87.997752px;}
.x79_c01382{left:89.691828px;}
.x9d_c01382{left:91.515780px;}
.x94_c01382{left:92.590392px;}
.x5b_c01382{left:95.888136px;}
.x47_c01382{left:97.533036px;}
.x38_c01382{left:99.149280px;}
.x21_c01382{left:100.238507px;}
.xd_c01382{left:101.813492px;}
.xda_c01382{left:119.248236px;}
.xb0_c01382{left:123.398280px;}
.xd4_c01382{left:131.503716px;}
.xb8_c01382{left:133.696740px;}
.xe_c01382{left:135.276281px;}
.x82_c01382{left:136.839588px;}
.xe4_c01382{left:138.145160px;}
.x48_c01382{left:141.216144px;}
.xc4_c01382{left:142.242252px;}
.x27_c01382{left:143.414333px;}
.x18_c01382{left:145.241589px;}
.x66_c01382{left:149.044020px;}
.x51_c01382{left:150.373344px;}
.x5c_c01382{left:151.500636px;}
.xd5_c01382{left:153.097488px;}
.x8c_c01382{left:158.527008px;}
.xdd_c01382{left:161.997000px;}
.xbb_c01382{left:164.658096px;}
.xb9_c01382{left:166.859628px;}
.x95_c01382{left:169.057944px;}
.x2e_c01382{left:174.517500px;}
.xf_c01382{left:178.282943px;}
.x9e_c01382{left:179.572056px;}
.x7a_c01382{left:183.291840px;}
.x52_c01382{left:184.660188px;}
.x22_c01382{left:189.071570px;}
.x96_c01382{left:190.885248px;}
.x83_c01382{left:193.067100px;}
.x70_c01382{left:194.429436px;}
.xcd_c01382{left:196.263636px;}
.xbc_c01382{left:198.204960px;}
.x39_c01382{left:208.245390px;}
.xa8_c01382{left:210.894384px;}
.x5_c01382{left:212.590500px;}
.xce_c01382{left:217.847604px;}
.xb4_c01382{left:221.094672px;}
.x8d_c01382{left:223.596888px;}
.x71_c01382{left:225.957420px;}
.x5d_c01382{left:227.168136px;}
.x2f_c01382{left:230.023500px;}
.x67_c01382{left:237.352104px;}
.xb1_c01382{left:242.724360px;}
.x8e_c01382{left:244.595880px;}
.x84_c01382{left:245.993376px;}
.x5e_c01382{left:249.035136px;}
.x3_c01382{left:250.830000px;}
.x28_c01382{left:253.023219px;}
.xa9_c01382{left:255.172332px;}
.x7b_c01382{left:258.120864px;}
.xbd_c01382{left:262.997808px;}
.x19_c01382{left:264.317612px;}
.x97_c01382{left:267.004824px;}
.x85_c01382{left:268.346100px;}
.x68_c01382{left:270.570576px;}
.x30_c01382{left:273.511500px;}
.x9f_c01382{left:276.744900px;}
.x49_c01382{left:282.438132px;}
.x3e_c01382{left:284.371500px;}
.x98_c01382{left:289.459104px;}
.xde_c01382{left:291.477000px;}
.x10_c01382{left:297.307589px;}
.x8f_c01382{left:300.829692px;}
.x72_c01382{left:302.109048px;}
.x53_c01382{left:304.309452px;}
.xc5_c01382{left:306.498624px;}
.xa0_c01382{left:309.141840px;}
.x6_c01382{left:311.176500px;}
.x3a_c01382{left:317.664000px;}
.x1a_c01382{left:319.412261px;}
.xdf_c01382{left:325.192500px;}
.x4a_c01382{left:326.193240px;}
.xe5_c01382{left:327.643466px;}
.x23_c01382{left:329.493933px;}
.xaa_c01382{left:331.081260px;}
.x7c_c01382{left:334.328268px;}
.xd6_c01382{left:337.917180px;}
.x29_c01382{left:340.312832px;}
.x86_c01382{left:343.968552px;}
.xe6_c01382{left:346.334103px;}
.x54_c01382{left:348.054864px;}
.x1b_c01382{left:352.622340px;}
.x7d_c01382{left:355.881540px;}
.x69_c01382{left:357.863184px;}
.x3f_c01382{left:360.000000px;}
.x3b_c01382{left:362.472870px;}
.x99_c01382{left:365.671656px;}
.x4b_c01382{left:370.546824px;}
.x1_c01382{left:372.330000px;}
.x11_c01382{left:375.603924px;}
.x90_c01382{left:377.221020px;}
.x6a_c01382{left:381.307800px;}
.x31_c01382{left:382.851000px;}
.x7_c01382{left:386.238000px;}
.x5f_c01382{left:390.165636px;}
.xe7_c01382{left:391.711533px;}
.x40_c01382{left:394.290000px;}
.xb5_c01382{left:396.357732px;}
.x4_c01382{left:398.790000px;}
.x55_c01382{left:401.792796px;}
.x2_c01382{left:406.350000px;}
.x87_c01382{left:410.581224px;}
.xe8_c01382{left:411.690602px;}
.x32_c01382{left:416.119500px;}
.x8_c01382{left:420.268500px;}
.x60_c01382{left:423.723636px;}
.x3c_c01382{left:427.523670px;}
.x56_c01382{left:435.820164px;}
.x2a_c01382{left:438.873081px;}
.xa1_c01382{left:440.388528px;}
.xd7_c01382{left:445.479564px;}
.x3d_c01382{left:449.685840px;}
.x12_c01382{left:450.715974px;}
.x91_c01382{left:453.358872px;}
.x73_c01382{left:455.243256px;}
.x61_c01382{left:456.663636px;}
.xc6_c01382{left:460.350312px;}
.xab_c01382{left:461.708820px;}
.xcf_c01382{left:468.731556px;}
.x33_c01382{left:470.383500px;}
.x13_c01382{left:473.340489px;}
.xa2_c01382{left:474.670872px;}
.x6b_c01382{left:478.015764px;}
.x41_c01382{left:480.478500px;}
.x1c_c01382{left:483.023856px;}
.xc7_c01382{left:491.924292px;}
.xb6_c01382{left:493.803252px;}
.x88_c01382{left:497.061312px;}
.xe9_c01382{left:499.739565px;}
.x42_c01382{left:503.100000px;}
.x2b_c01382{left:504.443420px;}
.x9_c01382{left:507.202500px;}
.x7e_c01382{left:509.835228px;}
.x57_c01382{left:512.221992px;}
.x1d_c01382{left:516.503903px;}
.x4c_c01382{left:523.100952px;}
.x89_c01382{left:530.267148px;}
.x6c_c01382{left:532.509900px;}
.xd0_c01382{left:534.611388px;}
.x2c_c01382{left:537.097347px;}
.x7f_c01382{left:541.691184px;}
.x74_c01382{left:542.710164px;}
.x62_c01382{left:543.870636px;}
.x4d_c01382{left:546.278208px;}
.xbe_c01382{left:547.646592px;}
.x14_c01382{left:549.481456px;}
.xa_c01382{left:551.494500px;}
.xe0_c01382{left:554.616000px;}
.x1e_c01382{left:559.425624px;}
.xa3_c01382{left:560.588244px;}
.x92_c01382{left:562.969116px;}
.xd8_c01382{left:566.942844px;}
.xbf_c01382{left:568.640748px;}
.xac_c01382{left:570.507108px;}
.x75_c01382{left:575.366076px;}
.x43_c01382{left:578.751000px;}
.x34_c01382{left:580.072500px;}
.x8a_c01382{left:584.604804px;}
.xea_c01382{left:587.545529px;}
.xd1_c01382{left:589.454748px;}
.xb7_c01382{left:592.027200px;}
.xa4_c01382{left:593.739660px;}
.x9a_c01382{left:595.392312px;}
.x63_c01382{left:598.151136px;}
.x35_c01382{left:601.128000px;}
.x2d_c01382{left:605.394587px;}
.x80_c01382{left:606.683976px;}
.x76_c01382{left:608.038488px;}
.x58_c01382{left:609.690312px;}
.xd9_c01382{left:611.208792px;}
.x24_c01382{left:613.278561px;}
.xe1_c01382{left:620.233500px;}
.xc0_c01382{left:621.297888px;}
.xb2_c01382{left:625.176240px;}
.xa5_c01382{left:627.323052px;}
.x6d_c01382{left:630.219840px;}
.x64_c01382{left:631.797636px;}
.xc8_c01382{left:634.294392px;}
.xb_c01382{left:638.176500px;}
.x59_c01382{left:641.838276px;}
.x4e_c01382{left:642.992112px;}
.x1f_c01382{left:646.920419px;}
.xba_c01382{left:649.078740px;}
.xc1_c01382{left:656.367156px;}
.x15_c01382{left:659.163213px;}
.xdb_c01382{left:664.984632px;}
.x4f_c01382{left:666.973344px;}
.xc_c01382{left:672.217500px;}
.x77_c01382{left:673.398312px;}
.x44_c01382{left:676.735500px;}
.x9b_c01382{left:680.478600px;}
.x25_c01382{left:690.241020px;}
.x16_c01382{left:691.780068px;}
.xc9_c01382{left:699.659160px;}
.x78_c01382{left:706.355700px;}
.xd2_c01382{left:709.586988px;}
.x36_c01382{left:711.843000px;}
.x9c_c01382{left:715.002996px;}
.x65_c01382{left:717.797136px;}
.xe2_c01382{left:719.569500px;}
.xca_c01382{left:721.717884px;}
.x26_c01382{left:723.191931px;}
.x17_c01382{left:726.070808px;}
.x8b_c01382{left:727.384380px;}
.x45_c01382{left:731.290500px;}
.xa6_c01382{left:734.237916px;}
.x81_c01382{left:737.963988px;}
.xdc_c01382{left:741.476064px;}
.xd3_c01382{left:742.637904px;}
.x37_c01382{left:744.268500px;}
.xad_c01382{left:746.036568px;}
.x6e_c01382{left:750.501420px;}
.x5a_c01382{left:751.754496px;}
.xcb_c01382{left:753.612840px;}
.xc2_c01382{left:755.305320px;}
.x20_c01382{left:768.186243px;}
.x93_c01382{left:770.137680px;}
.x46_c01382{left:775.965000px;}
.xae_c01382{left:779.669880px;}
.xed_c01382{left:784.350000px;}
.xec_c01382{left:817.020000px;}
.xaf_c01382{left:827.172588px;}
.xc3_c01382{left:832.391376px;}
.xb3_c01382{left:833.720904px;}
.xa7_c01382{left:835.958544px;}
.xeb_c01382{left:863.460000px;}
@media print{
.v0_c01382{vertical-align:0.000000pt;}
.ls0_c01382{letter-spacing:0.000000pt;}
.ws0_c01382{word-spacing:0.000000pt;}
.fse_c01382{font-size:16.000000pt;}
.fs10_c01382{font-size:21.333333pt;}
.fs1_c01382{font-size:37.333333pt;}
.fs0_c01382{font-size:64.000000pt;}
.fs2_c01382{font-size:64.003872pt;}
.fs6_c01382{font-size:69.342207pt;}
.fs4_c01382{font-size:69.347199pt;}
.fsc_c01382{font-size:69.351670pt;}
.fs9_c01382{font-size:74.676223pt;}
.fs5_c01382{font-size:74.681599pt;}
.fsd_c01382{font-size:74.686413pt;}
.fsf_c01382{font-size:80.000000pt;}
.fs3_c01382{font-size:80.004840pt;}
.fsb_c01382{font-size:80.010239pt;}
.fsa_c01382{font-size:96.012287pt;}
.fs8_c01382{font-size:101.346303pt;}
.fs7_c01382{font-size:106.680319pt;}
.y0_c01382{bottom:0.000000pt;}
.y15f_c01382{bottom:0.844000pt;}
.y15e_c01382{bottom:0.882667pt;}
.y15d_c01382{bottom:40.442667pt;}
.y15c_c01382{bottom:42.345391pt;}
.y15b_c01382{bottom:43.073695pt;}
.y15a_c01382{bottom:44.296617pt;}
.y159_c01382{bottom:46.252812pt;}
.y158_c01382{bottom:46.697292pt;}
.y157_c01382{bottom:47.705051pt;}
.y156_c01382{bottom:48.120521pt;}
.y155_c01382{bottom:48.917884pt;}
.y154_c01382{bottom:50.658240pt;}
.y153_c01382{bottom:52.330887pt;}
.y152_c01382{bottom:53.530672pt;}
.y151_c01382{bottom:72.126073pt;}
.y150_c01382{bottom:73.250896pt;}
.y14f_c01382{bottom:74.156943pt;}
.y14e_c01382{bottom:75.498456pt;}
.y14d_c01382{bottom:77.508227pt;}
.y14c_c01382{bottom:78.186113pt;}
.y14b_c01382{bottom:79.551608pt;}
.y14a_c01382{bottom:80.188892pt;}
.y149_c01382{bottom:80.878187pt;}
.y148_c01382{bottom:81.699563pt;}
.y147_c01382{bottom:82.331664pt;}
.y146_c01382{bottom:83.525333pt;}
.y145_c01382{bottom:102.691648pt;}
.y144_c01382{bottom:104.255648pt;}
.y143_c01382{bottom:105.132427pt;}
.y142_c01382{bottom:106.710880pt;}
.y141_c01382{bottom:107.397376pt;}
.y140_c01382{bottom:109.180619pt;}
.y13f_c01382{bottom:110.527083pt;}
.y13e_c01382{bottom:111.184000pt;}
.y13d_c01382{bottom:112.060523pt;}
.y13c_c01382{bottom:114.066475pt;}
.y13b_c01382{bottom:115.412768pt;}
.y13a_c01382{bottom:116.091520pt;}
.y139_c01382{bottom:135.724981pt;}
.y138_c01382{bottom:136.139467pt;}
.y137_c01382{bottom:137.377536pt;}
.y136_c01382{bottom:137.982229pt;}
.y135_c01382{bottom:138.809173pt;}
.y134_c01382{bottom:139.817003pt;}
.y133_c01382{bottom:141.076789pt;}
.y132_c01382{bottom:142.267861pt;}
.y131_c01382{bottom:143.085355pt;}
.y130_c01382{bottom:144.696981pt;}
.y12f_c01382{bottom:145.519328pt;}
.y12e_c01382{bottom:146.536779pt;}
.y12d_c01382{bottom:146.939915pt;}
.y12c_c01382{bottom:147.776512pt;}
.y12b_c01382{bottom:167.905152pt;}
.y12a_c01382{bottom:168.463232pt;}
.y129_c01382{bottom:170.491861pt;}
.y128_c01382{bottom:171.418560pt;}
.y127_c01382{bottom:172.531563pt;}
.y126_c01382{bottom:173.079157pt;}
.y125_c01382{bottom:175.080832pt;}
.y124_c01382{bottom:175.654955pt;}
.y123_c01382{bottom:176.769195pt;}
.y122_c01382{bottom:177.133515pt;}
.y121_c01382{bottom:178.980864pt;}
.y120_c01382{bottom:198.975723pt;}
.y11f_c01382{bottom:199.570709pt;}
.y11e_c01382{bottom:199.983125pt;}
.y11d_c01382{bottom:201.203499pt;}
.y11c_c01382{bottom:201.835253pt;}
.y11b_c01382{bottom:203.861813pt;}
.y11a_c01382{bottom:204.450901pt;}
.y119_c01382{bottom:206.310848pt;}
.y118_c01382{bottom:206.910603pt;}
.y117_c01382{bottom:207.323189pt;}
.y116_c01382{bottom:208.735904pt;}
.y115_c01382{bottom:209.783936pt;}
.y114_c01382{bottom:210.388800pt;}
.y113_c01382{bottom:211.386347pt;}
.y112_c01382{bottom:229.615445pt;}
.y111_c01382{bottom:230.986517pt;}
.y110_c01382{bottom:232.745728pt;}
.y10f_c01382{bottom:233.368523pt;}
.y10e_c01382{bottom:234.304139pt;}
.y10d_c01382{bottom:234.677408pt;}
.y10c_c01382{bottom:236.042688pt;}
.y10b_c01382{bottom:236.612043pt;}
.y10a_c01382{bottom:237.399008pt;}
.y109_c01382{bottom:239.738005pt;}
.y108_c01382{bottom:240.890229pt;}
.y107_c01382{bottom:241.486037pt;}
.y106_c01382{bottom:242.830741pt;}
.y105_c01382{bottom:264.558144pt;}
.y104_c01382{bottom:265.279019pt;}
.y103_c01382{bottom:267.265856pt;}
.y102_c01382{bottom:268.451712pt;}
.y101_c01382{bottom:269.023168pt;}
.y100_c01382{bottom:270.962656pt;}
.yff_c01382{bottom:271.942784pt;}
.yfe_c01382{bottom:272.321163pt;}
.yfd_c01382{bottom:273.853685pt;}
.yfc_c01382{bottom:274.442699pt;}
.yfb_c01382{bottom:275.234688pt;}
.yfa_c01382{bottom:291.760299pt;}
.yf9_c01382{bottom:292.236939pt;}
.yf8_c01382{bottom:294.317643pt;}
.yf7_c01382{bottom:295.021387pt;}
.yf6_c01382{bottom:295.934731pt;}
.yf5_c01382{bottom:296.412117pt;}
.yf4_c01382{bottom:298.491520pt;}
.yf3_c01382{bottom:299.916032pt;}
.yf2_c01382{bottom:301.539627pt;}
.yf1_c01382{bottom:302.231136pt;}
.yf0_c01382{bottom:303.147392pt;}
.yef_c01382{bottom:305.003072pt;}
.yee_c01382{bottom:324.483488pt;}
.yed_c01382{bottom:325.483723pt;}
.yec_c01382{bottom:325.978869pt;}
.yeb_c01382{bottom:327.296480pt;}
.yea_c01382{bottom:327.634837pt;}
.ye9_c01382{bottom:328.777856pt;}
.ye8_c01382{bottom:329.781099pt;}
.ye7_c01382{bottom:330.271296pt;}
.ye6_c01382{bottom:331.258453pt;}
.ye5_c01382{bottom:331.761024pt;}
.ye4_c01382{bottom:332.409696pt;}
.ye3_c01382{bottom:333.414240pt;}
.ye2_c01382{bottom:333.904245pt;}
.ye1_c01382{bottom:335.218016pt;}
.ye0_c01382{bottom:335.722912pt;}
.ydf_c01382{bottom:354.872373pt;}
.yde_c01382{bottom:355.758688pt;}
.ydd_c01382{bottom:356.386400pt;}
.ydc_c01382{bottom:358.225653pt;}
.ydb_c01382{bottom:359.026091pt;}
.yda_c01382{bottom:359.663019pt;}
.yd9_c01382{bottom:361.694496pt;}
.yd8_c01382{bottom:362.883680pt;}
.yd7_c01382{bottom:364.132459pt;}
.yd6_c01382{bottom:364.758251pt;}
.yd5_c01382{bottom:365.549472pt;}
.yd4_c01382{bottom:366.376587pt;}
.yd3_c01382{bottom:366.774699pt;}
.yd2_c01382{bottom:368.610837pt;}
.yd1_c01382{bottom:386.280821pt;}
.yd0_c01382{bottom:387.429920pt;}
.ycf_c01382{bottom:387.998251pt;}
.yce_c01382{bottom:389.804224pt;}
.ycd_c01382{bottom:390.371211pt;}
.ycc_c01382{bottom:390.930720pt;}
.ycb_c01382{bottom:392.382048pt;}
.yca_c01382{bottom:392.961643pt;}
.yc9_c01382{bottom:394.041088pt;}
.yc8_c01382{bottom:395.179019pt;}
.yc7_c01382{bottom:395.726464pt;}
.yc6_c01382{bottom:397.367211pt;}
.yc5_c01382{bottom:398.854293pt;}
.yc4_c01382{bottom:420.340021pt;}
.yc3_c01382{bottom:420.892384pt;}
.yc2_c01382{bottom:422.253205pt;}
.yc1_c01382{bottom:422.947989pt;}
.yc0_c01382{bottom:423.670208pt;}
.ybf_c01382{bottom:425.220533pt;}
.ybe_c01382{bottom:425.928448pt;}
.ybd_c01382{bottom:427.148395pt;}
.ybc_c01382{bottom:427.507755pt;}
.ybb_c01382{bottom:428.725045pt;}
.yba_c01382{bottom:429.074155pt;}
.yb9_c01382{bottom:430.297728pt;}
.yb8_c01382{bottom:451.018603pt;}
.yb7_c01382{bottom:452.683979pt;}
.yb6_c01382{bottom:453.240373pt;}
.yb5_c01382{bottom:454.517141pt;}
.yb4_c01382{bottom:456.368117pt;}
.yb3_c01382{bottom:457.653685pt;}
.yb2_c01382{bottom:458.224693pt;}
.yb1_c01382{bottom:458.944192pt;}
.yb0_c01382{bottom:459.893333pt;}
.yaf_c01382{bottom:460.248000pt;}
.yae_c01382{bottom:461.346816pt;}
.yad_c01382{bottom:461.712672pt;}
.yac_c01382{bottom:462.526027pt;}
.yab_c01382{bottom:483.034688pt;}
.yaa_c01382{bottom:484.063275pt;}
.ya9_c01382{bottom:485.278645pt;}
.ya8_c01382{bottom:485.700160pt;}
.ya7_c01382{bottom:486.714357pt;}
.ya6_c01382{bottom:487.334656pt;}
.ya5_c01382{bottom:488.948693pt;}
.ya4_c01382{bottom:490.192149pt;}
.ya3_c01382{bottom:490.796288pt;}
.ya2_c01382{bottom:491.603755pt;}
.ya1_c01382{bottom:492.020352pt;}
.ya0_c01382{bottom:493.007808pt;}
.y9f_c01382{bottom:494.056885pt;}
.y9e_c01382{bottom:494.954315pt;}
.y9d_c01382{bottom:515.648608pt;}
.y9c_c01382{bottom:516.253941pt;}
.y9b_c01382{bottom:518.098517pt;}
.y9a_c01382{bottom:519.312267pt;}
.y99_c01382{bottom:519.906699pt;}
.y98_c01382{bottom:521.530763pt;}
.y97_c01382{bottom:522.780437pt;}
.y96_c01382{bottom:523.182997pt;}
.y95_c01382{bottom:524.605589pt;}
.y94_c01382{bottom:526.001909pt;}
.y93_c01382{bottom:526.651659pt;}
.y92_c01382{bottom:527.749216pt;}
.y91_c01382{bottom:546.756661pt;}
.y90_c01382{bottom:547.342752pt;}
.y8f_c01382{bottom:548.504373pt;}
.y8e_c01382{bottom:549.085077pt;}
.y8d_c01382{bottom:549.665547pt;}
.y8c_c01382{bottom:551.220267pt;}
.y8b_c01382{bottom:552.381653pt;}
.y8a_c01382{bottom:552.960437pt;}
.y89_c01382{bottom:553.942315pt;}
.y88_c01382{bottom:555.296096pt;}
.y87_c01382{bottom:555.856523pt;}
.y86_c01382{bottom:556.643872pt;}
.y85_c01382{bottom:557.748981pt;}
.y84_c01382{bottom:578.343723pt;}
.y83_c01382{bottom:578.841920pt;}
.y82_c01382{bottom:580.161088pt;}
.y81_c01382{bottom:581.637429pt;}
.y80_c01382{bottom:582.460469pt;}
.y7f_c01382{bottom:583.921227pt;}
.y7e_c01382{bottom:584.276000pt;}
.y7d_c01382{bottom:585.594848pt;}
.y7c_c01382{bottom:586.096629pt;}
.y7b_c01382{bottom:587.431253pt;}
.y7a_c01382{bottom:588.230389pt;}
.y79_c01382{bottom:610.829045pt;}
.y78_c01382{bottom:612.052149pt;}
.y77_c01382{bottom:612.530677pt;}
.y76_c01382{bottom:613.302667pt;}
.y75_c01382{bottom:614.542944pt;}
.y74_c01382{bottom:615.011424pt;}
.y73_c01382{bottom:615.488693pt;}
.y72_c01382{bottom:617.023691pt;}
.y71_c01382{bottom:617.495883pt;}
.y70_c01382{bottom:617.806880pt;}
.y6f_c01382{bottom:618.883040pt;}
.y6e_c01382{bottom:619.673973pt;}
.y6d_c01382{bottom:640.040363pt;}
.y6c_c01382{bottom:641.897024pt;}
.y6b_c01382{bottom:642.439595pt;}
.y6a_c01382{bottom:644.085877pt;}
.y69_c01382{bottom:645.376533pt;}
.y68_c01382{bottom:645.951168pt;}
.y67_c01382{bottom:646.858144pt;}
.y66_c01382{bottom:647.596331pt;}
.y65_c01382{bottom:649.616757pt;}
.y64_c01382{bottom:650.196416pt;}
.y63_c01382{bottom:651.362347pt;}
.y62_c01382{bottom:672.653835pt;}
.y61_c01382{bottom:673.690443pt;}
.y60_c01382{bottom:674.074187pt;}
.y5f_c01382{bottom:675.621717pt;}
.y5e_c01382{bottom:675.992693pt;}
.y5d_c01382{bottom:678.058549pt;}
.y5c_c01382{bottom:678.433088pt;}
.y5b_c01382{bottom:679.142581pt;}
.y5a_c01382{bottom:679.842229pt;}
.y59_c01382{bottom:681.557611pt;}
.y58_c01382{bottom:682.101451pt;}
.y57_c01382{bottom:682.800075pt;}
.y56_c01382{bottom:704.740683pt;}
.y55_c01382{bottom:705.376053pt;}
.y54_c01382{bottom:706.151947pt;}
.y53_c01382{bottom:707.227189pt;}
.y52_c01382{bottom:707.545504pt;}
.y51_c01382{bottom:708.621429pt;}
.y50_c01382{bottom:708.943157pt;}
.y4f_c01382{bottom:710.168949pt;}
.y4e_c01382{bottom:710.656629pt;}
.y4d_c01382{bottom:711.732235pt;}
.y4c_c01382{bottom:712.208693pt;}
.y4b_c01382{bottom:712.804000pt;}
.y4a_c01382{bottom:741.554613pt;}
.y49_c01382{bottom:741.829893pt;}
.y48_c01382{bottom:742.639547pt;}
.y47_c01382{bottom:743.197387pt;}
.y46_c01382{bottom:744.559707pt;}
.y45_c01382{bottom:744.969520pt;}
.y44_c01382{bottom:745.375040pt;}
.y43_c01382{bottom:745.916293pt;}
.y42_c01382{bottom:766.759093pt;}
.y41_c01382{bottom:767.335547pt;}
.y40_c01382{bottom:769.303813pt;}
.y3f_c01382{bottom:769.678133pt;}
.y3e_c01382{bottom:771.028187pt;}
.y3d_c01382{bottom:771.628160pt;}
.y3c_c01382{bottom:772.592853pt;}
.y3b_c01382{bottom:773.184293pt;}
.y3a_c01382{bottom:774.148427pt;}
.y39_c01382{bottom:775.128107pt;}
.y38_c01382{bottom:775.901227pt;}
.y37_c01382{bottom:776.888000pt;}
.y36_c01382{bottom:801.319855pt;}
.y35_c01382{bottom:802.170339pt;}
.y34_c01382{bottom:802.576299pt;}
.y33_c01382{bottom:803.392119pt;}
.y32_c01382{bottom:803.809223pt;}
.y31_c01382{bottom:804.215520pt;}
.y30_c01382{bottom:804.618517pt;}
.y2f_c01382{bottom:805.705377pt;}
.y2e_c01382{bottom:807.069144pt;}
.y2d_c01382{bottom:807.593131pt;}
.y2c_c01382{bottom:832.482635pt;}
.y2b_c01382{bottom:832.892832pt;}
.y2a_c01382{bottom:833.850712pt;}
.y29_c01382{bottom:834.516113pt;}
.y28_c01382{bottom:835.877357pt;}
.y27_c01382{bottom:836.420700pt;}
.y26_c01382{bottom:837.382920pt;}
.y25_c01382{bottom:837.782531pt;}
.y24_c01382{bottom:838.199297pt;}
.y23_c01382{bottom:839.130651pt;}
.y22_c01382{bottom:840.236603pt;}
.y21_c01382{bottom:859.950067pt;}
.y20_c01382{bottom:861.998548pt;}
.y1f_c01382{bottom:863.476795pt;}
.y1e_c01382{bottom:864.201844pt;}
.y1d_c01382{bottom:864.767900pt;}
.y1c_c01382{bottom:866.414317pt;}
.y1b_c01382{bottom:866.971049pt;}
.y1a_c01382{bottom:867.531799pt;}
.y19_c01382{bottom:868.462549pt;}
.y18_c01382{bottom:869.922089pt;}
.y17_c01382{bottom:870.473617pt;}
.y16_c01382{bottom:871.205968pt;}
.y15_c01382{bottom:892.249720pt;}
.y14_c01382{bottom:892.767696pt;}
.y13_c01382{bottom:893.259971pt;}
.y12_c01382{bottom:894.917819pt;}
.y11_c01382{bottom:896.069024pt;}
.y10_c01382{bottom:896.410256pt;}
.yf_c01382{bottom:897.544733pt;}
.ye_c01382{bottom:898.727681pt;}
.yd_c01382{bottom:900.526221pt;}
.yc_c01382{bottom:901.176092pt;}
.yb_c01382{bottom:901.681972pt;}
.ya_c01382{bottom:927.907203pt;}
.y9_c01382{bottom:928.240048pt;}
.y8_c01382{bottom:929.087605pt;}
.y7_c01382{bottom:929.520683pt;}
.y6_c01382{bottom:930.370704pt;}
.y5_c01382{bottom:930.703447pt;}
.y4_c01382{bottom:931.437381pt;}
.y3_c01382{bottom:932.401333pt;}
.y2_c01382{bottom:996.286667pt;}
.y1_c01382{bottom:1058.310667pt;}
.h10_c01382{height:16.000000pt;}
.h12_c01382{height:21.333333pt;}
.h3_c01382{height:37.333333pt;}
.h2_c01382{height:64.000000pt;}
.h4_c01382{height:64.003872pt;}
.h8_c01382{height:69.342207pt;}
.h6_c01382{height:69.347199pt;}
.he_c01382{height:69.351670pt;}
.hb_c01382{height:74.676223pt;}
.h7_c01382{height:74.681599pt;}
.hf_c01382{height:74.686413pt;}
.h11_c01382{height:80.000000pt;}
.h5_c01382{height:80.004840pt;}
.hd_c01382{height:80.010239pt;}
.hc_c01382{height:96.012287pt;}
.ha_c01382{height:101.346303pt;}
.h9_c01382{height:106.680319pt;}
.h1_c01382{height:1111.333333pt;}
.h0_c01382{height:1111.440000pt;}
.w0_c01382{width:781.200000pt;}
.w1_c01382{width:781.333333pt;}
.x0_c01382{left:0.000000pt;}
.x50_c01382{left:72.297472pt;}
.xe3_c01382{left:74.807239pt;}
.xcc_c01382{left:77.251904pt;}
.x6f_c01382{left:78.220224pt;}
.x79_c01382{left:79.726069pt;}
.x9d_c01382{left:81.347360pt;}
.x94_c01382{left:82.302571pt;}
.x5b_c01382{left:85.233899pt;}
.x47_c01382{left:86.696032pt;}
.x38_c01382{left:88.132693pt;}
.x21_c01382{left:89.100895pt;}
.xd_c01382{left:90.500881pt;}
.xda_c01382{left:105.998432pt;}
.xb0_c01382{left:109.687360pt;}
.xd4_c01382{left:116.892192pt;}
.xb8_c01382{left:118.841547pt;}
.xe_c01382{left:120.245583pt;}
.x82_c01382{left:121.635189pt;}
.xe4_c01382{left:122.795697pt;}
.x48_c01382{left:125.525461pt;}
.xc4_c01382{left:126.437557pt;}
.x27_c01382{left:127.479407pt;}
.x18_c01382{left:129.103635pt;}
.x66_c01382{left:132.483573pt;}
.x51_c01382{left:133.665195pt;}
.x5c_c01382{left:134.667232pt;}
.xd5_c01382{left:136.086656pt;}
.x8c_c01382{left:140.912896pt;}
.xdd_c01382{left:143.997333pt;}
.xbb_c01382{left:146.362752pt;}
.xb9_c01382{left:148.319669pt;}
.x95_c01382{left:150.273728pt;}
.x2e_c01382{left:155.126667pt;}
.xf_c01382{left:158.473727pt;}
.x9e_c01382{left:159.619605pt;}
.x7a_c01382{left:162.926080pt;}
.x52_c01382{left:164.142389pt;}
.x22_c01382{left:168.063617pt;}
.x96_c01382{left:169.675776pt;}
.x83_c01382{left:171.615200pt;}
.x70_c01382{left:172.826165pt;}
.xcd_c01382{left:174.456565pt;}
.xbc_c01382{left:176.182187pt;}
.x39_c01382{left:185.107013pt;}
.xa8_c01382{left:187.461675pt;}
.x5_c01382{left:188.969333pt;}
.xce_c01382{left:193.642315pt;}
.xb4_c01382{left:196.528597pt;}
.x8d_c01382{left:198.752789pt;}
.x71_c01382{left:200.851040pt;}
.x5d_c01382{left:201.927232pt;}
.x2f_c01382{left:204.465333pt;}
.x67_c01382{left:210.979648pt;}
.xb1_c01382{left:215.754987pt;}
.x8e_c01382{left:217.418560pt;}
.x84_c01382{left:218.660779pt;}
.x5e_c01382{left:221.364565pt;}
.x3_c01382{left:222.960000pt;}
.x28_c01382{left:224.909528pt;}
.xa9_c01382{left:226.819851pt;}
.x7b_c01382{left:229.440768pt;}
.xbd_c01382{left:233.775829pt;}
.x19_c01382{left:234.948988pt;}
.x97_c01382{left:237.337621pt;}
.x85_c01382{left:238.529867pt;}
.x68_c01382{left:240.507179pt;}
.x30_c01382{left:243.121333pt;}
.x9f_c01382{left:245.995467pt;}
.x49_c01382{left:251.056117pt;}
.x3e_c01382{left:252.774667pt;}
.x98_c01382{left:257.296981pt;}
.xde_c01382{left:259.090667pt;}
.x10_c01382{left:264.273412pt;}
.x8f_c01382{left:267.404171pt;}
.x72_c01382{left:268.541376pt;}
.x53_c01382{left:270.497291pt;}
.xc5_c01382{left:272.443221pt;}
.xa0_c01382{left:274.792747pt;}
.x6_c01382{left:276.601333pt;}
.x3a_c01382{left:282.368000pt;}
.x1a_c01382{left:283.922009pt;}
.xdf_c01382{left:289.060000pt;}
.x4a_c01382{left:289.949547pt;}
.xe5_c01382{left:291.238636pt;}
.x23_c01382{left:292.883496pt;}
.xaa_c01382{left:294.294453pt;}
.x7c_c01382{left:297.180683pt;}
.xd6_c01382{left:300.370827pt;}
.x29_c01382{left:302.500295pt;}
.x86_c01382{left:305.749824pt;}
.xe6_c01382{left:307.852536pt;}
.x54_c01382{left:309.382101pt;}
.x1b_c01382{left:313.442080pt;}
.x7d_c01382{left:316.339147pt;}
.x69_c01382{left:318.100608pt;}
.x3f_c01382{left:320.000000pt;}
.x3b_c01382{left:322.198107pt;}
.x99_c01382{left:325.041472pt;}
.x4b_c01382{left:329.374955pt;}
.x1_c01382{left:330.960000pt;}
.x11_c01382{left:333.870155pt;}
.x90_c01382{left:335.307573pt;}
.x6a_c01382{left:338.940267pt;}
.x31_c01382{left:340.312000pt;}
.x7_c01382{left:343.322667pt;}
.x5f_c01382{left:346.813899pt;}
.xe7_c01382{left:348.188029pt;}
.x40_c01382{left:350.480000pt;}
.xb5_c01382{left:352.317984pt;}
.x4_c01382{left:354.480000pt;}
.x55_c01382{left:357.149152pt;}
.x2_c01382{left:361.200000pt;}
.x87_c01382{left:364.961088pt;}
.xe8_c01382{left:365.947201pt;}
.x32_c01382{left:369.884000pt;}
.x8_c01382{left:373.572000pt;}
.x60_c01382{left:376.643232pt;}
.x3c_c01382{left:380.021040pt;}
.x56_c01382{left:387.395701pt;}
.x2a_c01382{left:390.109405pt;}
.xa1_c01382{left:391.456469pt;}
.xd7_c01382{left:395.981835pt;}
.x3d_c01382{left:399.720747pt;}
.x12_c01382{left:400.636421pt;}
.x91_c01382{left:402.985664pt;}
.x73_c01382{left:404.660672pt;}
.x61_c01382{left:405.923232pt;}
.xc6_c01382{left:409.200277pt;}
.xab_c01382{left:410.407840pt;}
.xcf_c01382{left:416.650272pt;}
.x33_c01382{left:418.118667pt;}
.x13_c01382{left:420.747101pt;}
.xa2_c01382{left:421.929664pt;}
.x6b_c01382{left:424.902901pt;}
.x41_c01382{left:427.092000pt;}
.x1c_c01382{left:429.354539pt;}
.xc7_c01382{left:437.266037pt;}
.xb6_c01382{left:438.936224pt;}
.x88_c01382{left:441.832277pt;}
.xe9_c01382{left:444.212947pt;}
.x42_c01382{left:447.200000pt;}
.x2b_c01382{left:448.394151pt;}
.x9_c01382{left:450.846667pt;}
.x7e_c01382{left:453.186869pt;}
.x57_c01382{left:455.308437pt;}
.x1d_c01382{left:459.114580pt;}
.x4c_c01382{left:464.978624pt;}
.x89_c01382{left:471.348576pt;}
.x6c_c01382{left:473.342133pt;}
.xd0_c01382{left:475.210123pt;}
.x2c_c01382{left:477.419864pt;}
.x7f_c01382{left:481.503275pt;}
.x74_c01382{left:482.409035pt;}
.x62_c01382{left:483.440565pt;}
.x4d_c01382{left:485.580629pt;}
.xbe_c01382{left:486.796971pt;}
.x14_c01382{left:488.427961pt;}
.xa_c01382{left:490.217333pt;}
.xe0_c01382{left:492.992000pt;}
.x1e_c01382{left:497.267221pt;}
.xa3_c01382{left:498.300661pt;}
.x92_c01382{left:500.416992pt;}
.xd8_c01382{left:503.949195pt;}
.xbf_c01382{left:505.458443pt;}
.xac_c01382{left:507.117429pt;}
.x75_c01382{left:511.436512pt;}
.x43_c01382{left:514.445333pt;}
.x34_c01382{left:515.620000pt;}
.x8a_c01382{left:519.648715pt;}
.xea_c01382{left:522.262692pt;}
.xd1_c01382{left:523.959776pt;}
.xb7_c01382{left:526.246400pt;}
.xa4_c01382{left:527.768587pt;}
.x9a_c01382{left:529.237611pt;}
.x63_c01382{left:531.689899pt;}
.x35_c01382{left:534.336000pt;}
.x2d_c01382{left:538.128521pt;}
.x80_c01382{left:539.274645pt;}
.x76_c01382{left:540.478656pt;}
.x58_c01382{left:541.946944pt;}
.xd9_c01382{left:543.296704pt;}
.x24_c01382{left:545.136499pt;}
.xe1_c01382{left:551.318667pt;}
.xc0_c01382{left:552.264789pt;}
.xb2_c01382{left:555.712213pt;}
.xa5_c01382{left:557.620491pt;}
.x6d_c01382{left:560.195413pt;}
.x64_c01382{left:561.597899pt;}
.xc8_c01382{left:563.817237pt;}
.xb_c01382{left:567.268000pt;}
.x59_c01382{left:570.522912pt;}
.x4e_c01382{left:571.548544pt;}
.x1f_c01382{left:575.040372pt;}
.xba_c01382{left:576.958880pt;}
.xc1_c01382{left:583.437472pt;}
.x15_c01382{left:585.922856pt;}
.xdb_c01382{left:591.097451pt;}
.x4f_c01382{left:592.865195pt;}
.xc_c01382{left:597.526667pt;}
.x77_c01382{left:598.576277pt;}
.x44_c01382{left:601.542667pt;}
.x9b_c01382{left:604.869867pt;}
.x25_c01382{left:613.547573pt;}
.x16_c01382{left:614.915616pt;}
.xc9_c01382{left:621.919253pt;}
.x78_c01382{left:627.871733pt;}
.xd2_c01382{left:630.743989pt;}
.x36_c01382{left:632.749333pt;}
.x9c_c01382{left:635.558219pt;}
.x65_c01382{left:638.041899pt;}
.xe2_c01382{left:639.617333pt;}
.xca_c01382{left:641.527008pt;}
.x26_c01382{left:642.837272pt;}
.x17_c01382{left:645.396273pt;}
.x8b_c01382{left:646.563893pt;}
.x45_c01382{left:650.036000pt;}
.xa6_c01382{left:652.655925pt;}
.x81_c01382{left:655.967989pt;}
.xdc_c01382{left:659.089835pt;}
.xd3_c01382{left:660.122581pt;}
.x37_c01382{left:661.572000pt;}
.xad_c01382{left:663.143616pt;}
.x6e_c01382{left:667.112373pt;}
.x5a_c01382{left:668.226219pt;}
.xcb_c01382{left:669.878080pt;}
.xc2_c01382{left:671.382507pt;}
.x20_c01382{left:682.832216pt;}
.x93_c01382{left:684.566827pt;}
.x46_c01382{left:689.746667pt;}
.xae_c01382{left:693.039893pt;}
.xed_c01382{left:697.200000pt;}
.xec_c01382{left:726.240000pt;}
.xaf_c01382{left:735.264523pt;}
.xc3_c01382{left:739.903445pt;}
.xb3_c01382{left:741.085248pt;}
.xa7_c01382{left:743.074261pt;}
.xeb_c01382{left:767.520000pt;}
}





/* 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_c01383 {
    display:none;
  }
  .loading-indicator_c01383.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01383 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_c01383 { 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_c01383" -> "#page-container .classname_c01383")
 */
.pf_c01383 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01383 { /* 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_c01383.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01383 { /* 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_c01383 { /* 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_c01383 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01383 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01383 {overflow:visible;}
  }
}
.c_c01383 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01383 { /* 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_c01383:after { /* webkit #35443 */
  content: '';
}
.t_c01383:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01383 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 */
}
.__c01383 { /* 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_c01383 { /* info for Javascript */
  display:none;
}
.l_c01383 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01383 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01383 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01383: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_c01383 {
    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_c01383.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01383.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_c01383 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01383{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01383;src:url('chunks/assets/font_53ec0c54e60da7c2d414b553.woff2')format("woff");}.ff1_c01383{font-family:ff1_c01383;line-height:1.000000;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;}
.m3_c01383{transform:matrix(0.031820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.031820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.031820,0.000000,0.000000,0.250000,0,0);}
.m2_c01383{transform:matrix(0.042425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.042425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.042425,0.000000,0.000000,0.250000,0,0);}
.m1_c01383{transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);}
.m6_c01383{transform:matrix(0.237320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237320,0.000000,0.000000,0.250000,0,0);}
.m5_c01383{transform:matrix(0.347295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347295,0.000000,0.000000,0.250000,0,0);}
.m0_c01383{transform:matrix(0.417850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417850,0.000000,0.000000,0.250000,0,0);}
.m7_c01383{transform:matrix(0.685260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.685260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.685260,0.000000,0.000000,0.250000,0,0);}
.m4_c01383{transform:matrix(0.837645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.837645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.837645,0.000000,0.000000,0.250000,0,0);}
.v0_c01383{vertical-align:0.000000px;}
.ls0_c01383{letter-spacing:0.000000px;}
.sc__c01383{text-shadow:none;}
.sc0_c01383{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__c01383{-webkit-text-stroke:0px transparent;}
.sc0_c01383{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01383{word-spacing:0.000000px;}
.fc0_c01383{color:transparent;}
.fs0_c01383{font-size:18.000000px;}
.fs2_c01383{font-size:24.000000px;}
.fs1_c01383{font-size:36.000000px;}
.y0_c01383{bottom:0.000000px;}
.y3_c01383{bottom:174.816000px;}
.y2_c01383{bottom:179.418000px;}
.y1_c01383{bottom:187.443000px;}
.h2_c01383{height:18.000000px;}
.h4_c01383{height:24.000000px;}
.h3_c01383{height:36.000000px;}
.h1_c01383{height:1250.250000px;}
.h0_c01383{height:1250.370000px;}
.w0_c01383{width:878.850000px;}
.w1_c01383{width:879.000000px;}
.x0_c01383{left:0.000000px;}
.x6_c01383{left:667.980000px;}
.x3_c01383{left:681.210000px;}
.x4_c01383{left:692.010000px;}
.x5_c01383{left:699.570000px;}
.x1_c01383{left:703.080000px;}
.x2_c01383{left:739.530000px;}
@media print{
.v0_c01383{vertical-align:0.000000pt;}
.ls0_c01383{letter-spacing:0.000000pt;}
.ws0_c01383{word-spacing:0.000000pt;}
.fs0_c01383{font-size:16.000000pt;}
.fs2_c01383{font-size:21.333333pt;}
.fs1_c01383{font-size:32.000000pt;}
.y0_c01383{bottom:0.000000pt;}
.y3_c01383{bottom:155.392000pt;}
.y2_c01383{bottom:159.482667pt;}
.y1_c01383{bottom:166.616000pt;}
.h2_c01383{height:16.000000pt;}
.h4_c01383{height:21.333333pt;}
.h3_c01383{height:32.000000pt;}
.h1_c01383{height:1111.333333pt;}
.h0_c01383{height:1111.440000pt;}
.w0_c01383{width:781.200000pt;}
.w1_c01383{width:781.333333pt;}
.x0_c01383{left:0.000000pt;}
.x6_c01383{left:593.760000pt;}
.x3_c01383{left:605.520000pt;}
.x4_c01383{left:615.120000pt;}
.x5_c01383{left:621.840000pt;}
.x1_c01383{left:624.960000pt;}
.x2_c01383{left:657.360000pt;}
}





/* 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_c01384 {
    display:none;
  }
  .loading-indicator_c01384.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01384 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_c01384 { 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_c01384" -> "#page-container .classname_c01384")
 */
.pf_c01384 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01384 { /* 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_c01384.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01384 { /* 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_c01384 { /* 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_c01384 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01384 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01384 {overflow:visible;}
  }
}
.c_c01384 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01384 { /* 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_c01384:after { /* webkit #35443 */
  content: '';
}
.t_c01384:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01384 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 */
}
.__c01384 { /* 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_c01384 { /* info for Javascript */
  display:none;
}
.l_c01384 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01384 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01384 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01384: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_c01384 {
    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_c01384.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01384.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_c01384 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01384{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01384;src:url('chunks/assets/font_bfe6362fd3009c591583128f.woff2')format("woff");}.ff1_c01384{font-family:ff1_c01384;line-height:1.000000;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;}
.m1a_c01384{transform:matrix(0.151897,0.005018,-0.008254,0.249864,0,0);-ms-transform:matrix(0.151897,0.005018,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.151897,0.005018,-0.008254,0.249864,0,0);}
.m11_c01384{transform:matrix(0.154635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154635,0.000000,0.000000,0.250000,0,0);}
.m1e_c01384{transform:matrix(0.166718,0.011873,-0.017758,0.249368,0,0);-ms-transform:matrix(0.166718,0.011873,-0.017758,0.249368,0,0);-webkit-transform:matrix(0.166718,0.011873,-0.017758,0.249368,0,0);}
.m18_c01384{transform:matrix(0.166989,0.005516,-0.008254,0.249864,0,0);-ms-transform:matrix(0.166989,0.005516,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.166989,0.005516,-0.008254,0.249864,0,0);}
.m1f_c01384{transform:matrix(0.169067,0.012040,-0.017758,0.249368,0,0);-ms-transform:matrix(0.169067,0.012040,-0.017758,0.249368,0,0);-webkit-transform:matrix(0.169067,0.012040,-0.017758,0.249368,0,0);}
.md_c01384{transform:matrix(0.171761,0.011187,-0.016248,0.249471,0,0);-ms-transform:matrix(0.171761,0.011187,-0.016248,0.249471,0,0);-webkit-transform:matrix(0.171761,0.011187,-0.016248,0.249471,0,0);}
.m1b_c01384{transform:matrix(0.172281,0.005691,-0.008254,0.249864,0,0);-ms-transform:matrix(0.172281,0.005691,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.172281,0.005691,-0.008254,0.249864,0,0);}
.me_c01384{transform:matrix(0.175458,0.011428,-0.016248,0.249471,0,0);-ms-transform:matrix(0.175458,0.011428,-0.016248,0.249471,0,0);-webkit-transform:matrix(0.175458,0.011428,-0.016248,0.249471,0,0);}
.m16_c01384{transform:matrix(0.182940,0.006043,-0.008254,0.249864,0,0);-ms-transform:matrix(0.182940,0.006043,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.182940,0.006043,-0.008254,0.249864,0,0);}
.m21_c01384{transform:matrix(0.183100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183100,0.000000,0.000000,0.250000,0,0);}
.mf_c01384{transform:matrix(0.187817,0.012233,-0.016248,0.249471,0,0);-ms-transform:matrix(0.187817,0.012233,-0.016248,0.249471,0,0);-webkit-transform:matrix(0.187817,0.012233,-0.016248,0.249471,0,0);}
.m10_c01384{transform:matrix(0.193570,0.012607,-0.016248,0.249471,0,0);-ms-transform:matrix(0.193570,0.012607,-0.016248,0.249471,0,0);-webkit-transform:matrix(0.193570,0.012607,-0.016248,0.249471,0,0);}
.mc_c01384{transform:matrix(0.194084,0.012641,-0.016248,0.249471,0,0);-ms-transform:matrix(0.194084,0.012641,-0.016248,0.249471,0,0);-webkit-transform:matrix(0.194084,0.012641,-0.016248,0.249471,0,0);}
.m1d_c01384{transform:matrix(0.198836,0.014160,-0.017758,0.249368,0,0);-ms-transform:matrix(0.198836,0.014160,-0.017758,0.249368,0,0);-webkit-transform:matrix(0.198836,0.014160,-0.017758,0.249368,0,0);}
.m2_c01384{transform:matrix(0.205063,0.010263,-0.012497,0.249687,0,0);-ms-transform:matrix(0.205063,0.010263,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.205063,0.010263,-0.012497,0.249687,0,0);}
.m1_c01384{transform:matrix(0.211320,0.010577,-0.012497,0.249687,0,0);-ms-transform:matrix(0.211320,0.010577,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.211320,0.010577,-0.012497,0.249687,0,0);}
.m3_c01384{transform:matrix(0.213228,0.010672,-0.012497,0.249687,0,0);-ms-transform:matrix(0.213228,0.010672,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.213228,0.010672,-0.012497,0.249687,0,0);}
.mb_c01384{transform:matrix(0.213253,0.013889,-0.016248,0.249471,0,0);-ms-transform:matrix(0.213253,0.013889,-0.016248,0.249471,0,0);-webkit-transform:matrix(0.213253,0.013889,-0.016248,0.249471,0,0);}
.m8_c01384{transform:matrix(0.216704,0.010846,-0.012497,0.249687,0,0);-ms-transform:matrix(0.216704,0.010846,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.216704,0.010846,-0.012497,0.249687,0,0);}
.m0_c01384{transform:matrix(0.219460,0.010984,-0.012497,0.249687,0,0);-ms-transform:matrix(0.219460,0.010984,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.219460,0.010984,-0.012497,0.249687,0,0);}
.m4_c01384{transform:matrix(0.222462,0.011134,-0.012497,0.249687,0,0);-ms-transform:matrix(0.222462,0.011134,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.222462,0.011134,-0.012497,0.249687,0,0);}
.m9_c01384{transform:matrix(0.235156,0.011770,-0.012497,0.249687,0,0);-ms-transform:matrix(0.235156,0.011770,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.235156,0.011770,-0.012497,0.249687,0,0);}
.m20_c01384{transform:matrix(0.235259,0.016754,-0.017758,0.249368,0,0);-ms-transform:matrix(0.235259,0.016754,-0.017758,0.249368,0,0);-webkit-transform:matrix(0.235259,0.016754,-0.017758,0.249368,0,0);}
.ma_c01384{transform:matrix(0.240349,0.012029,-0.012497,0.249687,0,0);-ms-transform:matrix(0.240349,0.012029,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.240349,0.012029,-0.012497,0.249687,0,0);}
.m1c_c01384{transform:matrix(0.249977,0.017802,-0.017758,0.249368,0,0);-ms-transform:matrix(0.249977,0.017802,-0.017758,0.249368,0,0);-webkit-transform:matrix(0.249977,0.017802,-0.017758,0.249368,0,0);}
.m7_c01384{transform:matrix(0.254831,0.012754,-0.012497,0.249687,0,0);-ms-transform:matrix(0.254831,0.012754,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.254831,0.012754,-0.012497,0.249687,0,0);}
.m6_c01384{transform:matrix(0.275510,0.013789,-0.012497,0.249687,0,0);-ms-transform:matrix(0.275510,0.013789,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.275510,0.013789,-0.012497,0.249687,0,0);}
.m19_c01384{transform:matrix(0.296773,0.009803,-0.008254,0.249864,0,0);-ms-transform:matrix(0.296773,0.009803,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.296773,0.009803,-0.008254,0.249864,0,0);}
.m12_c01384{transform:matrix(0.312580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312580,0.000000,0.000000,0.250000,0,0);}
.m5_c01384{transform:matrix(0.376770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376770,0.000000,0.000000,0.250000,0,0);}
.m13_c01384{transform:matrix(0.616645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.616645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.616645,0.000000,0.000000,0.250000,0,0);}
.m15_c01384{transform:matrix(0.818354,0.032767,-0.010002,0.249800,0,0);-ms-transform:matrix(0.818354,0.032767,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.818354,0.032767,-0.010002,0.249800,0,0);}
.m17_c01384{transform:matrix(0.826679,0.027308,-0.008254,0.249864,0,0);-ms-transform:matrix(0.826679,0.027308,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.826679,0.027308,-0.008254,0.249864,0,0);}
.m14_c01384{transform:matrix(4.493345,0.179914,-0.010002,0.249800,0,0);-ms-transform:matrix(4.493345,0.179914,-0.010002,0.249800,0,0);-webkit-transform:matrix(4.493345,0.179914,-0.010002,0.249800,0,0);}
.v0_c01384{vertical-align:0.000000px;}
.ls0_c01384{letter-spacing:0.000000px;}
.sc__c01384{text-shadow:none;}
.sc0_c01384{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__c01384{-webkit-text-stroke:0px transparent;}
.sc0_c01384{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01384{word-spacing:0.000000px;}
.fc0_c01384{color:transparent;}
.fs5_c01384{font-size:12.000000px;}
.fs7_c01384{font-size:17.996409px;}
.fs6_c01384{font-size:18.000000px;}
.fs1_c01384{font-size:54.000000px;}
.fs2_c01384{font-size:66.016531px;}
.fs4_c01384{font-size:72.000000px;}
.fs8_c01384{font-size:95.956310px;}
.fs0_c01384{font-size:96.024045px;}
.fs9_c01384{font-size:107.948688px;}
.fs3_c01384{font-size:108.012365px;}
.y0_c01384{bottom:0.000000px;}
.y22_c01384{bottom:445.500000px;}
.y21_c01384{bottom:476.387477px;}
.y20_c01384{bottom:480.312854px;}
.y1f_c01384{bottom:484.189028px;}
.y1e_c01384{bottom:486.697741px;}
.y1d_c01384{bottom:487.998000px;}
.y1c_c01384{bottom:492.222652px;}
.y1b_c01384{bottom:493.240472px;}
.y1a_c01384{bottom:495.441440px;}
.y19_c01384{bottom:495.808086px;}
.y18_c01384{bottom:498.757345px;}
.y17_c01384{bottom:499.786500px;}
.y16_c01384{bottom:526.024080px;}
.y15_c01384{bottom:531.096000px;}
.y14_c01384{bottom:541.351500px;}
.y13_c01384{bottom:563.490000px;}
.y12_c01384{bottom:1068.522000px;}
.y11_c01384{bottom:1087.479345px;}
.y10_c01384{bottom:1089.430515px;}
.yf_c01384{bottom:1092.235590px;}
.ye_c01384{bottom:1094.411790px;}
.yd_c01384{bottom:1098.139312px;}
.yc_c01384{bottom:1100.569500px;}
.yb_c01384{bottom:1107.998850px;}
.ya_c01384{bottom:1109.676150px;}
.y9_c01384{bottom:1110.783825px;}
.y8_c01384{bottom:1111.946775px;}
.y7_c01384{bottom:1115.671500px;}
.y6_c01384{bottom:1128.075000px;}
.y5_c01384{bottom:1136.470200px;}
.y4_c01384{bottom:1138.576950px;}
.y3_c01384{bottom:1141.330200px;}
.y2_c01384{bottom:1147.816950px;}
.y1_c01384{bottom:1151.334000px;}
.h7_c01384{height:12.000000px;}
.h9_c01384{height:17.996409px;}
.h8_c01384{height:18.000000px;}
.h3_c01384{height:54.000000px;}
.h4_c01384{height:66.016531px;}
.h6_c01384{height:72.000000px;}
.ha_c01384{height:95.956310px;}
.h2_c01384{height:96.024045px;}
.hb_c01384{height:107.948688px;}
.h5_c01384{height:108.012365px;}
.h1_c01384{height:1250.250000px;}
.h0_c01384{height:1250.370000px;}
.w0_c01384{width:878.850000px;}
.w1_c01384{width:879.000000px;}
.x0_c01384{left:0.000000px;}
.x15_c01384{left:45.468000px;}
.x17_c01384{left:75.756314px;}
.x13_c01384{left:85.050000px;}
.x1_c01384{left:148.989000px;}
.x7_c01384{left:153.537000px;}
.x18_c01384{left:165.038442px;}
.x16_c01384{left:172.139202px;}
.x19_c01384{left:176.137832px;}
.x2_c01384{left:219.259659px;}
.x8_c01384{left:227.957006px;}
.x1a_c01384{left:242.767136px;}
.x9_c01384{left:251.192747px;}
.xa_c01384{left:273.324093px;}
.xb_c01384{left:306.836547px;}
.x1b_c01384{left:318.694500px;}
.x1c_c01384{left:336.953059px;}
.x3_c01384{left:348.864924px;}
.x1d_c01384{left:372.181057px;}
.x4_c01384{left:403.874859px;}
.x1e_c01384{left:426.611275px;}
.x6_c01384{left:433.620000px;}
.x5_c01384{left:445.967724px;}
.xc_c01384{left:461.200500px;}
.x14_c01384{left:467.100000px;}
.x1f_c01384{left:481.732415px;}
.xd_c01384{left:498.513225px;}
.xe_c01384{left:555.745032px;}
.xf_c01384{left:589.158072px;}
.x10_c01384{left:632.226762px;}
.x11_c01384{left:662.184726px;}
.x12_c01384{left:673.920000px;}
@media print{
.v0_c01384{vertical-align:0.000000pt;}
.ls0_c01384{letter-spacing:0.000000pt;}
.ws0_c01384{word-spacing:0.000000pt;}
.fs5_c01384{font-size:10.666667pt;}
.fs7_c01384{font-size:15.996808pt;}
.fs6_c01384{font-size:16.000000pt;}
.fs1_c01384{font-size:48.000000pt;}
.fs2_c01384{font-size:58.681361pt;}
.fs4_c01384{font-size:64.000000pt;}
.fs8_c01384{font-size:85.294498pt;}
.fs0_c01384{font-size:85.354707pt;}
.fs9_c01384{font-size:95.954389pt;}
.fs3_c01384{font-size:96.010991pt;}
.y0_c01384{bottom:0.000000pt;}
.y22_c01384{bottom:396.000000pt;}
.y21_c01384{bottom:423.455535pt;}
.y20_c01384{bottom:426.944759pt;}
.y1f_c01384{bottom:430.390247pt;}
.y1e_c01384{bottom:432.620215pt;}
.y1d_c01384{bottom:433.776000pt;}
.y1c_c01384{bottom:437.531247pt;}
.y1b_c01384{bottom:438.435975pt;}
.y1a_c01384{bottom:440.392391pt;}
.y19_c01384{bottom:440.718299pt;}
.y18_c01384{bottom:443.339863pt;}
.y17_c01384{bottom:444.254667pt;}
.y16_c01384{bottom:467.576960pt;}
.y15_c01384{bottom:472.085333pt;}
.y14_c01384{bottom:481.201333pt;}
.y13_c01384{bottom:500.880000pt;}
.y12_c01384{bottom:949.797333pt;}
.y11_c01384{bottom:966.648307pt;}
.y10_c01384{bottom:968.382680pt;}
.yf_c01384{bottom:970.876080pt;}
.ye_c01384{bottom:972.810480pt;}
.yd_c01384{bottom:976.123833pt;}
.yc_c01384{bottom:978.284000pt;}
.yb_c01384{bottom:984.887867pt;}
.ya_c01384{bottom:986.378800pt;}
.y9_c01384{bottom:987.363400pt;}
.y8_c01384{bottom:988.397133pt;}
.y7_c01384{bottom:991.708000pt;}
.y6_c01384{bottom:1002.733333pt;}
.y5_c01384{bottom:1010.195733pt;}
.y4_c01384{bottom:1012.068400pt;}
.y3_c01384{bottom:1014.515733pt;}
.y2_c01384{bottom:1020.281733pt;}
.y1_c01384{bottom:1023.408000pt;}
.h7_c01384{height:10.666667pt;}
.h9_c01384{height:15.996808pt;}
.h8_c01384{height:16.000000pt;}
.h3_c01384{height:48.000000pt;}
.h4_c01384{height:58.681361pt;}
.h6_c01384{height:64.000000pt;}
.ha_c01384{height:85.294498pt;}
.h2_c01384{height:85.354707pt;}
.hb_c01384{height:95.954389pt;}
.h5_c01384{height:96.010991pt;}
.h1_c01384{height:1111.333333pt;}
.h0_c01384{height:1111.440000pt;}
.w0_c01384{width:781.200000pt;}
.w1_c01384{width:781.333333pt;}
.x0_c01384{left:0.000000pt;}
.x15_c01384{left:40.416000pt;}
.x17_c01384{left:67.338945pt;}
.x13_c01384{left:75.600000pt;}
.x1_c01384{left:132.434667pt;}
.x7_c01384{left:136.477333pt;}
.x18_c01384{left:146.700837pt;}
.x16_c01384{left:153.012624pt;}
.x19_c01384{left:156.566961pt;}
.x2_c01384{left:194.897475pt;}
.x8_c01384{left:202.628449pt;}
.x1a_c01384{left:215.793009pt;}
.x9_c01384{left:223.282441pt;}
.xa_c01384{left:242.954749pt;}
.xb_c01384{left:272.743597pt;}
.x1b_c01384{left:283.284000pt;}
.x1c_c01384{left:299.513831pt;}
.x3_c01384{left:310.102155pt;}
.x1d_c01384{left:330.827607pt;}
.x4_c01384{left:358.999875pt;}
.x1e_c01384{left:379.210023pt;}
.x6_c01384{left:385.440000pt;}
.x5_c01384{left:396.415755pt;}
.xc_c01384{left:409.956000pt;}
.x14_c01384{left:415.200000pt;}
.x1f_c01384{left:428.206591pt;}
.xd_c01384{left:443.122867pt;}
.xe_c01384{left:493.995584pt;}
.xf_c01384{left:523.696064pt;}
.x10_c01384{left:561.979344pt;}
.x11_c01384{left:588.608645pt;}
.x12_c01384{left:599.040000pt;}
}





/* 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_c01385 {
    display:none;
  }
  .loading-indicator_c01385.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01385 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_c01385 { 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_c01385" -> "#page-container .classname_c01385")
 */
.pf_c01385 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01385 { /* 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_c01385.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01385 { /* 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_c01385 { /* 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_c01385 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01385 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01385 {overflow:visible;}
  }
}
.c_c01385 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01385 { /* 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_c01385:after { /* webkit #35443 */
  content: '';
}
.t_c01385:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01385 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 */
}
.__c01385 { /* 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_c01385 { /* info for Javascript */
  display:none;
}
.l_c01385 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01385 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01385 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01385: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_c01385 {
    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_c01385.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01385.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_c01385 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01385{font-family:sans-serif;visibility:hidden;}
.sc__c01385{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01385{-webkit-text-stroke:0px transparent;}
}
.y0_c01385{bottom:0.000000px;}
.h1_c01385{height:1250.250000px;}
.h0_c01385{height:1250.370000px;}
.w0_c01385{width:878.850000px;}
.w1_c01385{width:879.000000px;}
.x0_c01385{left:0.000000px;}
@media print{
.y0_c01385{bottom:0.000000pt;}
.h1_c01385{height:1111.333333pt;}
.h0_c01385{height:1111.440000pt;}
.w0_c01385{width:781.200000pt;}
.w1_c01385{width:781.333333pt;}
.x0_c01385{left:0.000000pt;}
}





/* 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_c01386 {
    display:none;
  }
  .loading-indicator_c01386.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01386 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_c01386 { 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_c01386" -> "#page-container .classname_c01386")
 */
.pf_c01386 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01386 { /* 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_c01386.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01386 { /* 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_c01386 { /* 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_c01386 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01386 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01386 {overflow:visible;}
  }
}
.c_c01386 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01386 { /* 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_c01386:after { /* webkit #35443 */
  content: '';
}
.t_c01386:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01386 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 */
}
.__c01386 { /* 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_c01386 { /* info for Javascript */
  display:none;
}
.l_c01386 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01386 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01386 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01386: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_c01386 {
    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_c01386.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01386.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_c01386 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01386{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01386;src:url('chunks/assets/font_cfe63ee56e9e10a97d33a3db.woff2')format("woff");}.ff1_c01386{font-family:ff1_c01386;line-height:1.000000;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;}
.m103_c01386{transform:matrix(0.013514,0.000419,-0.007746,0.249880,0,0);-ms-transform:matrix(0.013514,0.000419,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.013514,0.000419,-0.007746,0.249880,0,0);}
.md9_c01386{transform:matrix(0.054085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054085,0.000000,0.000000,0.250000,0,0);}
.m4c_c01386{transform:matrix(0.064016,0.001920,-0.007497,0.249888,0,0);-ms-transform:matrix(0.064016,0.001920,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.064016,0.001920,-0.007497,0.249888,0,0);}
.m40_c01386{transform:matrix(0.074047,0.002221,-0.007497,0.249888,0,0);-ms-transform:matrix(0.074047,0.002221,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.074047,0.002221,-0.007497,0.249888,0,0);}
.m9f_c01386{transform:matrix(0.087126,0.002440,-0.006997,0.249902,0,0);-ms-transform:matrix(0.087126,0.002440,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.087126,0.002440,-0.006997,0.249902,0,0);}
.m10e_c01386{transform:matrix(0.088732,0.002751,-0.007746,0.249880,0,0);-ms-transform:matrix(0.088732,0.002751,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.088732,0.002751,-0.007746,0.249880,0,0);}
.m110_c01386{transform:matrix(0.114270,0.003542,-0.007746,0.249880,0,0);-ms-transform:matrix(0.114270,0.003542,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.114270,0.003542,-0.007746,0.249880,0,0);}
.mb1_c01386{transform:matrix(0.114730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114730,0.000000,0.000000,0.250000,0,0);}
.mb0_c01386{transform:matrix(0.119325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119325,0.000000,0.000000,0.250000,0,0);}
.m8d_c01386{transform:matrix(0.130469,0.003653,-0.006997,0.249902,0,0);-ms-transform:matrix(0.130469,0.003653,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.130469,0.003653,-0.006997,0.249902,0,0);}
.m87_c01386{transform:matrix(0.131563,0.003684,-0.006997,0.249902,0,0);-ms-transform:matrix(0.131563,0.003684,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.131563,0.003684,-0.006997,0.249902,0,0);}
.m8e_c01386{transform:matrix(0.132228,0.003702,-0.006997,0.249902,0,0);-ms-transform:matrix(0.132228,0.003702,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.132228,0.003702,-0.006997,0.249902,0,0);}
.m0_c01386{transform:matrix(0.133705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133705,0.000000,0.000000,0.250000,0,0);}
.m4a_c01386{transform:matrix(0.133950,0.004018,-0.007497,0.249888,0,0);-ms-transform:matrix(0.133950,0.004018,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.133950,0.004018,-0.007497,0.249888,0,0);}
.m8f_c01386{transform:matrix(0.134237,0.003759,-0.006997,0.249902,0,0);-ms-transform:matrix(0.134237,0.003759,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.134237,0.003759,-0.006997,0.249902,0,0);}
.m89_c01386{transform:matrix(0.134977,0.003779,-0.006997,0.249902,0,0);-ms-transform:matrix(0.134977,0.003779,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.134977,0.003779,-0.006997,0.249902,0,0);}
.m8a_c01386{transform:matrix(0.136122,0.003811,-0.006997,0.249902,0,0);-ms-transform:matrix(0.136122,0.003811,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.136122,0.003811,-0.006997,0.249902,0,0);}
.m8c_c01386{transform:matrix(0.140960,0.003947,-0.006997,0.249902,0,0);-ms-transform:matrix(0.140960,0.003947,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.140960,0.003947,-0.006997,0.249902,0,0);}
.m91_c01386{transform:matrix(0.141035,0.003949,-0.006997,0.249902,0,0);-ms-transform:matrix(0.141035,0.003949,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.141035,0.003949,-0.006997,0.249902,0,0);}
.m90_c01386{transform:matrix(0.147397,0.004127,-0.006997,0.249902,0,0);-ms-transform:matrix(0.147397,0.004127,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.147397,0.004127,-0.006997,0.249902,0,0);}
.m92_c01386{transform:matrix(0.147987,0.004144,-0.006997,0.249902,0,0);-ms-transform:matrix(0.147987,0.004144,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.147987,0.004144,-0.006997,0.249902,0,0);}
.m88_c01386{transform:matrix(0.150686,0.004219,-0.006997,0.249902,0,0);-ms-transform:matrix(0.150686,0.004219,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.150686,0.004219,-0.006997,0.249902,0,0);}
.me0_c01386{transform:matrix(0.151680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151680,0.000000,0.000000,0.250000,0,0);}
.m8b_c01386{transform:matrix(0.155324,0.004349,-0.006997,0.249902,0,0);-ms-transform:matrix(0.155324,0.004349,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.155324,0.004349,-0.006997,0.249902,0,0);}
.m4d_c01386{transform:matrix(0.163272,0.004898,-0.007497,0.249888,0,0);-ms-transform:matrix(0.163272,0.004898,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.163272,0.004898,-0.007497,0.249888,0,0);}
.mb8_c01386{transform:matrix(0.179372,0.005925,-0.008254,0.249864,0,0);-ms-transform:matrix(0.179372,0.005925,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.179372,0.005925,-0.008254,0.249864,0,0);}
.m10f_c01386{transform:matrix(0.180218,0.005587,-0.007746,0.249880,0,0);-ms-transform:matrix(0.180218,0.005587,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.180218,0.005587,-0.007746,0.249880,0,0);}
.mbc_c01386{transform:matrix(0.183995,0.006078,-0.008254,0.249864,0,0);-ms-transform:matrix(0.183995,0.006078,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.183995,0.006078,-0.008254,0.249864,0,0);}
.mba_c01386{transform:matrix(0.184539,0.006096,-0.008254,0.249864,0,0);-ms-transform:matrix(0.184539,0.006096,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.184539,0.006096,-0.008254,0.249864,0,0);}
.m65_c01386{transform:matrix(0.191345,0.005166,-0.006748,0.249909,0,0);-ms-transform:matrix(0.191345,0.005166,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.191345,0.005166,-0.006748,0.249909,0,0);}
.m4b_c01386{transform:matrix(0.191999,0.005760,-0.007497,0.249888,0,0);-ms-transform:matrix(0.191999,0.005760,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.191999,0.005760,-0.007497,0.249888,0,0);}
.m66_c01386{transform:matrix(0.192595,0.005200,-0.006748,0.249909,0,0);-ms-transform:matrix(0.192595,0.005200,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.192595,0.005200,-0.006748,0.249909,0,0);}
.m6b_c01386{transform:matrix(0.194124,0.005241,-0.006748,0.249909,0,0);-ms-transform:matrix(0.194124,0.005241,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.194124,0.005241,-0.006748,0.249909,0,0);}
.mc0_c01386{transform:matrix(0.194544,0.006426,-0.008254,0.249864,0,0);-ms-transform:matrix(0.194544,0.006426,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.194544,0.006426,-0.008254,0.249864,0,0);}
.m71_c01386{transform:matrix(0.194569,0.004670,-0.005998,0.249928,0,0);-ms-transform:matrix(0.194569,0.004670,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.194569,0.004670,-0.005998,0.249928,0,0);}
.m61_c01386{transform:matrix(0.194629,0.005255,-0.006748,0.249909,0,0);-ms-transform:matrix(0.194629,0.005255,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.194629,0.005255,-0.006748,0.249909,0,0);}
.mb7_c01386{transform:matrix(0.195014,0.006442,-0.008254,0.249864,0,0);-ms-transform:matrix(0.195014,0.006442,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.195014,0.006442,-0.008254,0.249864,0,0);}
.m4f_c01386{transform:matrix(0.197766,0.005933,-0.007497,0.249888,0,0);-ms-transform:matrix(0.197766,0.005933,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.197766,0.005933,-0.007497,0.249888,0,0);}
.m73_c01386{transform:matrix(0.198318,0.004760,-0.005998,0.249928,0,0);-ms-transform:matrix(0.198318,0.004760,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.198318,0.004760,-0.005998,0.249928,0,0);}
.mb9_c01386{transform:matrix(0.199461,0.006589,-0.008254,0.249864,0,0);-ms-transform:matrix(0.199461,0.006589,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.199461,0.006589,-0.008254,0.249864,0,0);}
.mb3_c01386{transform:matrix(0.199945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199945,0.000000,0.000000,0.250000,0,0);}
.m6f_c01386{transform:matrix(0.200002,0.004800,-0.005998,0.249928,0,0);-ms-transform:matrix(0.200002,0.004800,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.200002,0.004800,-0.005998,0.249928,0,0);}
.m67_c01386{transform:matrix(0.200177,0.005405,-0.006748,0.249909,0,0);-ms-transform:matrix(0.200177,0.005405,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.200177,0.005405,-0.006748,0.249909,0,0);}
.m11a_c01386{transform:matrix(0.202205,0.006679,-0.008254,0.249864,0,0);-ms-transform:matrix(0.202205,0.006679,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.202205,0.006679,-0.008254,0.249864,0,0);}
.m120_c01386{transform:matrix(0.203089,0.006709,-0.008254,0.249864,0,0);-ms-transform:matrix(0.203089,0.006709,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.203089,0.006709,-0.008254,0.249864,0,0);}
.mbf_c01386{transform:matrix(0.203714,0.006729,-0.008254,0.249864,0,0);-ms-transform:matrix(0.203714,0.006729,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.203714,0.006729,-0.008254,0.249864,0,0);}
.m11f_c01386{transform:matrix(0.203909,0.006736,-0.008254,0.249864,0,0);-ms-transform:matrix(0.203909,0.006736,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.203909,0.006736,-0.008254,0.249864,0,0);}
.m6d_c01386{transform:matrix(0.204401,0.004906,-0.005998,0.249928,0,0);-ms-transform:matrix(0.204401,0.004906,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.204401,0.004906,-0.005998,0.249928,0,0);}
.m46_c01386{transform:matrix(0.205308,0.006159,-0.007497,0.249888,0,0);-ms-transform:matrix(0.205308,0.006159,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.205308,0.006159,-0.007497,0.249888,0,0);}
.m7e_c01386{transform:matrix(0.205320,0.005749,-0.006997,0.249902,0,0);-ms-transform:matrix(0.205320,0.005749,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.205320,0.005749,-0.006997,0.249902,0,0);}
.mbd_c01386{transform:matrix(0.205583,0.006791,-0.008254,0.249864,0,0);-ms-transform:matrix(0.205583,0.006791,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.205583,0.006791,-0.008254,0.249864,0,0);}
.m117_c01386{transform:matrix(0.206902,0.006835,-0.008254,0.249864,0,0);-ms-transform:matrix(0.206902,0.006835,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.206902,0.006835,-0.008254,0.249864,0,0);}
.mbb_c01386{transform:matrix(0.206927,0.006835,-0.008254,0.249864,0,0);-ms-transform:matrix(0.206927,0.006835,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.206927,0.006835,-0.008254,0.249864,0,0);}
.m49_c01386{transform:matrix(0.208091,0.006243,-0.007497,0.249888,0,0);-ms-transform:matrix(0.208091,0.006243,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.208091,0.006243,-0.007497,0.249888,0,0);}
.mbe_c01386{transform:matrix(0.208371,0.006883,-0.008254,0.249864,0,0);-ms-transform:matrix(0.208371,0.006883,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.208371,0.006883,-0.008254,0.249864,0,0);}
.m3e_c01386{transform:matrix(0.209411,0.006282,-0.007497,0.249888,0,0);-ms-transform:matrix(0.209411,0.006282,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.209411,0.006282,-0.007497,0.249888,0,0);}
.mc9_c01386{transform:matrix(0.210467,0.006104,-0.007247,0.249895,0,0);-ms-transform:matrix(0.210467,0.006104,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.210467,0.006104,-0.007247,0.249895,0,0);}
.m6a_c01386{transform:matrix(0.210608,0.005686,-0.006748,0.249909,0,0);-ms-transform:matrix(0.210608,0.005686,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.210608,0.005686,-0.006748,0.249909,0,0);}
.m101_c01386{transform:matrix(0.211485,0.006345,-0.007497,0.249888,0,0);-ms-transform:matrix(0.211485,0.006345,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.211485,0.006345,-0.007497,0.249888,0,0);}
.m69_c01386{transform:matrix(0.211558,0.005712,-0.006748,0.249909,0,0);-ms-transform:matrix(0.211558,0.005712,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.211558,0.005712,-0.006748,0.249909,0,0);}
.m62_c01386{transform:matrix(0.212433,0.005736,-0.006748,0.249909,0,0);-ms-transform:matrix(0.212433,0.005736,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.212433,0.005736,-0.006748,0.249909,0,0);}
.m76_c01386{transform:matrix(0.213668,0.005128,-0.005998,0.249928,0,0);-ms-transform:matrix(0.213668,0.005128,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.213668,0.005128,-0.005998,0.249928,0,0);}
.m25_c01386{transform:matrix(0.214816,0.006015,-0.006997,0.249902,0,0);-ms-transform:matrix(0.214816,0.006015,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.214816,0.006015,-0.006997,0.249902,0,0);}
.m4e_c01386{transform:matrix(0.214863,0.006446,-0.007497,0.249888,0,0);-ms-transform:matrix(0.214863,0.006446,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.214863,0.006446,-0.007497,0.249888,0,0);}
.m118_c01386{transform:matrix(0.214958,0.007101,-0.008254,0.249864,0,0);-ms-transform:matrix(0.214958,0.007101,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.214958,0.007101,-0.008254,0.249864,0,0);}
.ma0_c01386{transform:matrix(0.214976,0.006019,-0.006997,0.249902,0,0);-ms-transform:matrix(0.214976,0.006019,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.214976,0.006019,-0.006997,0.249902,0,0);}
.m11c_c01386{transform:matrix(0.215033,0.007103,-0.008254,0.249864,0,0);-ms-transform:matrix(0.215033,0.007103,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.215033,0.007103,-0.008254,0.249864,0,0);}
.m68_c01386{transform:matrix(0.215591,0.005821,-0.006748,0.249909,0,0);-ms-transform:matrix(0.215591,0.005821,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.215591,0.005821,-0.006748,0.249909,0,0);}
.m42_c01386{transform:matrix(0.215618,0.006469,-0.007497,0.249888,0,0);-ms-transform:matrix(0.215618,0.006469,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.215618,0.006469,-0.007497,0.249888,0,0);}
.mc2_c01386{transform:matrix(0.217981,0.007201,-0.008254,0.249864,0,0);-ms-transform:matrix(0.217981,0.007201,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.217981,0.007201,-0.008254,0.249864,0,0);}
.mff_c01386{transform:matrix(0.218522,0.006556,-0.007497,0.249888,0,0);-ms-transform:matrix(0.218522,0.006556,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.218522,0.006556,-0.007497,0.249888,0,0);}
.md1_c01386{transform:matrix(0.218703,0.006342,-0.007247,0.249895,0,0);-ms-transform:matrix(0.218703,0.006342,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.218703,0.006342,-0.007247,0.249895,0,0);}
.m74_c01386{transform:matrix(0.219087,0.005258,-0.005998,0.249928,0,0);-ms-transform:matrix(0.219087,0.005258,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.219087,0.005258,-0.005998,0.249928,0,0);}
.m38_c01386{transform:matrix(0.219455,0.005925,-0.006748,0.249909,0,0);-ms-transform:matrix(0.219455,0.005925,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.219455,0.005925,-0.006748,0.249909,0,0);}
.m121_c01386{transform:matrix(0.219845,0.007262,-0.008254,0.249864,0,0);-ms-transform:matrix(0.219845,0.007262,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.219845,0.007262,-0.008254,0.249864,0,0);}
.m5e_c01386{transform:matrix(0.219866,0.006596,-0.007497,0.249888,0,0);-ms-transform:matrix(0.219866,0.006596,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.219866,0.006596,-0.007497,0.249888,0,0);}
.mfd_c01386{transform:matrix(0.219931,0.006598,-0.007497,0.249888,0,0);-ms-transform:matrix(0.219931,0.006598,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.219931,0.006598,-0.007497,0.249888,0,0);}
.m127_c01386{transform:matrix(0.220695,0.007290,-0.008254,0.249864,0,0);-ms-transform:matrix(0.220695,0.007290,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.220695,0.007290,-0.008254,0.249864,0,0);}
.mca_c01386{transform:matrix(0.220737,0.006401,-0.007247,0.249895,0,0);-ms-transform:matrix(0.220737,0.006401,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.220737,0.006401,-0.007247,0.249895,0,0);}
.m70_c01386{transform:matrix(0.221351,0.005312,-0.005998,0.249928,0,0);-ms-transform:matrix(0.221351,0.005312,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.221351,0.005312,-0.005998,0.249928,0,0);}
.m12_c01386{transform:matrix(0.222125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222125,0.000000,0.000000,0.250000,0,0);}
.m116_c01386{transform:matrix(0.222309,0.007344,-0.008254,0.249864,0,0);-ms-transform:matrix(0.222309,0.007344,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.222309,0.007344,-0.008254,0.249864,0,0);}
.me9_c01386{transform:matrix(0.222641,0.006457,-0.007247,0.249895,0,0);-ms-transform:matrix(0.222641,0.006457,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.222641,0.006457,-0.007247,0.249895,0,0);}
.m114_c01386{transform:matrix(0.222699,0.007356,-0.008254,0.249864,0,0);-ms-transform:matrix(0.222699,0.007356,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.222699,0.007356,-0.008254,0.249864,0,0);}
.mee_c01386{transform:matrix(0.223791,0.006490,-0.007247,0.249895,0,0);-ms-transform:matrix(0.223791,0.006490,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.223791,0.006490,-0.007247,0.249895,0,0);}
.m3b_c01386{transform:matrix(0.223953,0.006047,-0.006748,0.249909,0,0);-ms-transform:matrix(0.223953,0.006047,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.223953,0.006047,-0.006748,0.249909,0,0);}
.md4_c01386{transform:matrix(0.224506,0.006511,-0.007247,0.249895,0,0);-ms-transform:matrix(0.224506,0.006511,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.224506,0.006511,-0.007247,0.249895,0,0);}
.m64_c01386{transform:matrix(0.225318,0.006084,-0.006748,0.249909,0,0);-ms-transform:matrix(0.225318,0.006084,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.225318,0.006084,-0.006748,0.249909,0,0);}
.m11b_c01386{transform:matrix(0.225787,0.007458,-0.008254,0.249864,0,0);-ms-transform:matrix(0.225787,0.007458,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.225787,0.007458,-0.008254,0.249864,0,0);}
.me6_c01386{transform:matrix(0.225845,0.006550,-0.007247,0.249895,0,0);-ms-transform:matrix(0.225845,0.006550,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.225845,0.006550,-0.007247,0.249895,0,0);}
.m95_c01386{transform:matrix(0.225851,0.006324,-0.006997,0.249902,0,0);-ms-transform:matrix(0.225851,0.006324,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.225851,0.006324,-0.006997,0.249902,0,0);}
.m6c_c01386{transform:matrix(0.226063,0.006104,-0.006748,0.249909,0,0);-ms-transform:matrix(0.226063,0.006104,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.226063,0.006104,-0.006748,0.249909,0,0);}
.m122_c01386{transform:matrix(0.226177,0.007471,-0.008254,0.249864,0,0);-ms-transform:matrix(0.226177,0.007471,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.226177,0.007471,-0.008254,0.249864,0,0);}
.m6e_c01386{transform:matrix(0.227709,0.005465,-0.005998,0.249928,0,0);-ms-transform:matrix(0.227709,0.005465,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.227709,0.005465,-0.005998,0.249928,0,0);}
.mef_c01386{transform:matrix(0.227759,0.006605,-0.007247,0.249895,0,0);-ms-transform:matrix(0.227759,0.006605,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.227759,0.006605,-0.007247,0.249895,0,0);}
.md7_c01386{transform:matrix(0.227849,0.006608,-0.007247,0.249895,0,0);-ms-transform:matrix(0.227849,0.006608,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.227849,0.006608,-0.007247,0.249895,0,0);}
.m100_c01386{transform:matrix(0.228067,0.006842,-0.007497,0.249888,0,0);-ms-transform:matrix(0.228067,0.006842,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.228067,0.006842,-0.007497,0.249888,0,0);}
.mcf_c01386{transform:matrix(0.228134,0.006616,-0.007247,0.249895,0,0);-ms-transform:matrix(0.228134,0.006616,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.228134,0.006616,-0.007247,0.249895,0,0);}
.m99_c01386{transform:matrix(0.228420,0.006396,-0.006997,0.249902,0,0);-ms-transform:matrix(0.228420,0.006396,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.228420,0.006396,-0.006997,0.249902,0,0);}
.m11d_c01386{transform:matrix(0.228875,0.007560,-0.008254,0.249864,0,0);-ms-transform:matrix(0.228875,0.007560,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.228875,0.007560,-0.008254,0.249864,0,0);}
.m72_c01386{transform:matrix(0.229094,0.005498,-0.005998,0.249928,0,0);-ms-transform:matrix(0.229094,0.005498,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.229094,0.005498,-0.005998,0.249928,0,0);}
.mc8_c01386{transform:matrix(0.229234,0.006648,-0.007247,0.249895,0,0);-ms-transform:matrix(0.229234,0.006648,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.229234,0.006648,-0.007247,0.249895,0,0);}
.m75_c01386{transform:matrix(0.229359,0.005505,-0.005998,0.249928,0,0);-ms-transform:matrix(0.229359,0.005505,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.229359,0.005505,-0.005998,0.249928,0,0);}
.m84_c01386{transform:matrix(0.229840,0.006436,-0.006997,0.249902,0,0);-ms-transform:matrix(0.229840,0.006436,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.229840,0.006436,-0.006997,0.249902,0,0);}
.md2_c01386{transform:matrix(0.230038,0.006671,-0.007247,0.249895,0,0);-ms-transform:matrix(0.230038,0.006671,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.230038,0.006671,-0.007247,0.249895,0,0);}
.mf5_c01386{transform:matrix(0.230358,0.006680,-0.007247,0.249895,0,0);-ms-transform:matrix(0.230358,0.006680,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.230358,0.006680,-0.007247,0.249895,0,0);}
.mab_c01386{transform:matrix(0.230365,0.006450,-0.006997,0.249902,0,0);-ms-transform:matrix(0.230365,0.006450,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.230365,0.006450,-0.006997,0.249902,0,0);}
.m115_c01386{transform:matrix(0.230494,0.007614,-0.008254,0.249864,0,0);-ms-transform:matrix(0.230494,0.007614,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.230494,0.007614,-0.008254,0.249864,0,0);}
.m128_c01386{transform:matrix(0.230934,0.007628,-0.008254,0.249864,0,0);-ms-transform:matrix(0.230934,0.007628,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.230934,0.007628,-0.008254,0.249864,0,0);}
.mc1_c01386{transform:matrix(0.231114,0.007634,-0.008254,0.249864,0,0);-ms-transform:matrix(0.231114,0.007634,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.231114,0.007634,-0.008254,0.249864,0,0);}
.mfe_c01386{transform:matrix(0.231116,0.006933,-0.007497,0.249888,0,0);-ms-transform:matrix(0.231116,0.006933,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.231116,0.006933,-0.007497,0.249888,0,0);}
.mc4_c01386{transform:matrix(0.231603,0.006716,-0.007247,0.249895,0,0);-ms-transform:matrix(0.231603,0.006716,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.231603,0.006716,-0.007247,0.249895,0,0);}
.m13_c01386{transform:matrix(0.232065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232065,0.000000,0.000000,0.250000,0,0);}
.me_c01386{transform:matrix(0.232335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232335,0.000000,0.000000,0.250000,0,0);}
.m126_c01386{transform:matrix(0.232938,0.007695,-0.008254,0.249864,0,0);-ms-transform:matrix(0.232938,0.007695,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.232938,0.007695,-0.008254,0.249864,0,0);}
.mf_c01386{transform:matrix(0.233375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233375,0.000000,0.000000,0.250000,0,0);}
.m119_c01386{transform:matrix(0.233907,0.007727,-0.008254,0.249864,0,0);-ms-transform:matrix(0.233907,0.007727,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.233907,0.007727,-0.008254,0.249864,0,0);}
.m48_c01386{transform:matrix(0.234105,0.007023,-0.007497,0.249888,0,0);-ms-transform:matrix(0.234105,0.007023,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.234105,0.007023,-0.007497,0.249888,0,0);}
.m93_c01386{transform:matrix(0.234228,0.006558,-0.006997,0.249902,0,0);-ms-transform:matrix(0.234228,0.006558,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.234228,0.006558,-0.006997,0.249902,0,0);}
.ma8_c01386{transform:matrix(0.234268,0.006560,-0.006997,0.249902,0,0);-ms-transform:matrix(0.234268,0.006560,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.234268,0.006560,-0.006997,0.249902,0,0);}
.m12e_c01386{transform:matrix(0.234507,0.007746,-0.008254,0.249864,0,0);-ms-transform:matrix(0.234507,0.007746,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.234507,0.007746,-0.008254,0.249864,0,0);}
.m125_c01386{transform:matrix(0.234622,0.007750,-0.008254,0.249864,0,0);-ms-transform:matrix(0.234622,0.007750,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.234622,0.007750,-0.008254,0.249864,0,0);}
.mea_c01386{transform:matrix(0.234801,0.006809,-0.007247,0.249895,0,0);-ms-transform:matrix(0.234801,0.006809,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.234801,0.006809,-0.007247,0.249895,0,0);}
.m56_c01386{transform:matrix(0.234819,0.007045,-0.007497,0.249888,0,0);-ms-transform:matrix(0.234819,0.007045,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.234819,0.007045,-0.007497,0.249888,0,0);}
.mf1_c01386{transform:matrix(0.234891,0.006812,-0.007247,0.249895,0,0);-ms-transform:matrix(0.234891,0.006812,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.234891,0.006812,-0.007247,0.249895,0,0);}
.m77_c01386{transform:matrix(0.236292,0.008515,-0.009003,0.249838,0,0);-ms-transform:matrix(0.236292,0.008515,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.236292,0.008515,-0.009003,0.249838,0,0);}
.m82_c01386{transform:matrix(0.236387,0.006619,-0.006997,0.249902,0,0);-ms-transform:matrix(0.236387,0.006619,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.236387,0.006619,-0.006997,0.249902,0,0);}
.m81_c01386{transform:matrix(0.237167,0.006641,-0.006997,0.249902,0,0);-ms-transform:matrix(0.237167,0.006641,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.237167,0.006641,-0.006997,0.249902,0,0);}
.m2f_c01386{transform:matrix(0.237647,0.006654,-0.006997,0.249902,0,0);-ms-transform:matrix(0.237647,0.006654,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.237647,0.006654,-0.006997,0.249902,0,0);}
.mb5_c01386{transform:matrix(0.237710,0.007852,-0.008254,0.249864,0,0);-ms-transform:matrix(0.237710,0.007852,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.237710,0.007852,-0.008254,0.249864,0,0);}
.m5_c01386{transform:matrix(0.237737,0.006657,-0.006997,0.249902,0,0);-ms-transform:matrix(0.237737,0.006657,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.237737,0.006657,-0.006997,0.249902,0,0);}
.mf3_c01386{transform:matrix(0.237850,0.006898,-0.007247,0.249895,0,0);-ms-transform:matrix(0.237850,0.006898,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.237850,0.006898,-0.007247,0.249895,0,0);}
.mcb_c01386{transform:matrix(0.238080,0.006904,-0.007247,0.249895,0,0);-ms-transform:matrix(0.238080,0.006904,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.238080,0.006904,-0.007247,0.249895,0,0);}
.m27_c01386{transform:matrix(0.238142,0.006668,-0.006997,0.249902,0,0);-ms-transform:matrix(0.238142,0.006668,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.238142,0.006668,-0.006997,0.249902,0,0);}
.m129_c01386{transform:matrix(0.238370,0.007874,-0.008254,0.249864,0,0);-ms-transform:matrix(0.238370,0.007874,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.238370,0.007874,-0.008254,0.249864,0,0);}
.m102_c01386{transform:matrix(0.238758,0.007163,-0.007497,0.249888,0,0);-ms-transform:matrix(0.238758,0.007163,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.238758,0.007163,-0.007497,0.249888,0,0);}
.mcc_c01386{transform:matrix(0.239134,0.006935,-0.007247,0.249895,0,0);-ms-transform:matrix(0.239134,0.006935,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.239134,0.006935,-0.007247,0.249895,0,0);}
.m23_c01386{transform:matrix(0.240296,0.008178,-0.008504,0.249855,0,0);-ms-transform:matrix(0.240296,0.008178,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.240296,0.008178,-0.008504,0.249855,0,0);}
.m16_c01386{transform:matrix(0.240547,0.006495,-0.006748,0.249909,0,0);-ms-transform:matrix(0.240547,0.006495,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.240547,0.006495,-0.006748,0.249909,0,0);}
.mac_c01386{transform:matrix(0.240706,0.006740,-0.006997,0.249902,0,0);-ms-transform:matrix(0.240706,0.006740,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.240706,0.006740,-0.006997,0.249902,0,0);}
.m130_c01386{transform:matrix(0.240714,0.007952,-0.008254,0.249864,0,0);-ms-transform:matrix(0.240714,0.007952,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.240714,0.007952,-0.008254,0.249864,0,0);}
.md8_c01386{transform:matrix(0.240759,0.006982,-0.007247,0.249895,0,0);-ms-transform:matrix(0.240759,0.006982,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.240759,0.006982,-0.007247,0.249895,0,0);}
.ma9_c01386{transform:matrix(0.240766,0.006741,-0.006997,0.249902,0,0);-ms-transform:matrix(0.240766,0.006741,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.240766,0.006741,-0.006997,0.249902,0,0);}
.m39_c01386{transform:matrix(0.240772,0.006501,-0.006748,0.249909,0,0);-ms-transform:matrix(0.240772,0.006501,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.240772,0.006501,-0.006748,0.249909,0,0);}
.m1a_c01386{transform:matrix(0.240942,0.006505,-0.006748,0.249909,0,0);-ms-transform:matrix(0.240942,0.006505,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.240942,0.006505,-0.006748,0.249909,0,0);}
.m2e_c01386{transform:matrix(0.241026,0.006749,-0.006997,0.249902,0,0);-ms-transform:matrix(0.241026,0.006749,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.241026,0.006749,-0.006997,0.249902,0,0);}
.mb4_c01386{transform:matrix(0.241243,0.007969,-0.008254,0.249864,0,0);-ms-transform:matrix(0.241243,0.007969,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.241243,0.007969,-0.008254,0.249864,0,0);}
.m24_c01386{transform:matrix(0.241520,0.006763,-0.006997,0.249902,0,0);-ms-transform:matrix(0.241520,0.006763,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.241520,0.006763,-0.006997,0.249902,0,0);}
.m12d_c01386{transform:matrix(0.241643,0.007982,-0.008254,0.249864,0,0);-ms-transform:matrix(0.241643,0.007982,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.241643,0.007982,-0.008254,0.249864,0,0);}
.m123_c01386{transform:matrix(0.241903,0.007991,-0.008254,0.249864,0,0);-ms-transform:matrix(0.241903,0.007991,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.241903,0.007991,-0.008254,0.249864,0,0);}
.m1e_c01386{transform:matrix(0.241907,0.006531,-0.006748,0.249909,0,0);-ms-transform:matrix(0.241907,0.006531,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.241907,0.006531,-0.006748,0.249909,0,0);}
.m41_c01386{transform:matrix(0.241926,0.007258,-0.007497,0.249888,0,0);-ms-transform:matrix(0.241926,0.007258,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.241926,0.007258,-0.007497,0.249888,0,0);}
.m94_c01386{transform:matrix(0.242025,0.006777,-0.006997,0.249902,0,0);-ms-transform:matrix(0.242025,0.006777,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.242025,0.006777,-0.006997,0.249902,0,0);}
.ma4_c01386{transform:matrix(0.242070,0.006778,-0.006997,0.249902,0,0);-ms-transform:matrix(0.242070,0.006778,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.242070,0.006778,-0.006997,0.249902,0,0);}
.me4_c01386{transform:matrix(0.242393,0.007029,-0.007247,0.249895,0,0);-ms-transform:matrix(0.242393,0.007029,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.242393,0.007029,-0.007247,0.249895,0,0);}
.m124_c01386{transform:matrix(0.243067,0.008029,-0.008254,0.249864,0,0);-ms-transform:matrix(0.243067,0.008029,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.243067,0.008029,-0.008254,0.249864,0,0);}
.md6_c01386{transform:matrix(0.243218,0.007053,-0.007247,0.249895,0,0);-ms-transform:matrix(0.243218,0.007053,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.243218,0.007053,-0.007247,0.249895,0,0);}
.m34_c01386{transform:matrix(0.243300,0.006812,-0.006997,0.249902,0,0);-ms-transform:matrix(0.243300,0.006812,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.243300,0.006812,-0.006997,0.249902,0,0);}
.m20_c01386{transform:matrix(0.243744,0.008296,-0.008504,0.249855,0,0);-ms-transform:matrix(0.243744,0.008296,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.243744,0.008296,-0.008504,0.249855,0,0);}
.mf4_c01386{transform:matrix(0.244297,0.007085,-0.007247,0.249895,0,0);-ms-transform:matrix(0.244297,0.007085,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.244297,0.007085,-0.007247,0.249895,0,0);}
.m106_c01386{transform:matrix(0.244652,0.007584,-0.007746,0.249880,0,0);-ms-transform:matrix(0.244652,0.007584,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.244652,0.007584,-0.007746,0.249880,0,0);}
.m33_c01386{transform:matrix(0.244809,0.006855,-0.006997,0.249902,0,0);-ms-transform:matrix(0.244809,0.006855,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.244809,0.006855,-0.006997,0.249902,0,0);}
.m3a_c01386{transform:matrix(0.245116,0.006618,-0.006748,0.249909,0,0);-ms-transform:matrix(0.245116,0.006618,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.245116,0.006618,-0.006748,0.249909,0,0);}
.m22_c01386{transform:matrix(0.245318,0.008349,-0.008504,0.249855,0,0);-ms-transform:matrix(0.245318,0.008349,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.245318,0.008349,-0.008504,0.249855,0,0);}
.m7d_c01386{transform:matrix(0.245414,0.006872,-0.006997,0.249902,0,0);-ms-transform:matrix(0.245414,0.006872,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.245414,0.006872,-0.006997,0.249902,0,0);}
.m80_c01386{transform:matrix(0.245769,0.006882,-0.006997,0.249902,0,0);-ms-transform:matrix(0.245769,0.006882,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.245769,0.006882,-0.006997,0.249902,0,0);}
.m3c_c01386{transform:matrix(0.246455,0.006654,-0.006748,0.249909,0,0);-ms-transform:matrix(0.246455,0.006654,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.246455,0.006654,-0.006748,0.249909,0,0);}
.m32_c01386{transform:matrix(0.246743,0.006909,-0.006997,0.249902,0,0);-ms-transform:matrix(0.246743,0.006909,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.246743,0.006909,-0.006997,0.249902,0,0);}
.m12c_c01386{transform:matrix(0.246800,0.008153,-0.008254,0.249864,0,0);-ms-transform:matrix(0.246800,0.008153,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.246800,0.008153,-0.008254,0.249864,0,0);}
.m45_c01386{transform:matrix(0.246824,0.007405,-0.007497,0.249888,0,0);-ms-transform:matrix(0.246824,0.007405,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.246824,0.007405,-0.007497,0.249888,0,0);}
.m12b_c01386{transform:matrix(0.247385,0.008172,-0.008254,0.249864,0,0);-ms-transform:matrix(0.247385,0.008172,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.247385,0.008172,-0.008254,0.249864,0,0);}
.mc5_c01386{transform:matrix(0.248146,0.007196,-0.007247,0.249895,0,0);-ms-transform:matrix(0.248146,0.007196,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.248146,0.007196,-0.007247,0.249895,0,0);}
.mc3_c01386{transform:matrix(0.248171,0.007197,-0.007247,0.249895,0,0);-ms-transform:matrix(0.248171,0.007197,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.248171,0.007197,-0.007247,0.249895,0,0);}
.m9b_c01386{transform:matrix(0.248683,0.006963,-0.006997,0.249902,0,0);-ms-transform:matrix(0.248683,0.006963,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.248683,0.006963,-0.006997,0.249902,0,0);}
.m10b_c01386{transform:matrix(0.248805,0.007713,-0.007746,0.249880,0,0);-ms-transform:matrix(0.248805,0.007713,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.248805,0.007713,-0.007746,0.249880,0,0);}
.mc6_c01386{transform:matrix(0.249040,0.007222,-0.007247,0.249895,0,0);-ms-transform:matrix(0.249040,0.007222,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.249040,0.007222,-0.007247,0.249895,0,0);}
.m47_c01386{transform:matrix(0.249358,0.007481,-0.007497,0.249888,0,0);-ms-transform:matrix(0.249358,0.007481,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.249358,0.007481,-0.007497,0.249888,0,0);}
.m1c_c01386{transform:matrix(0.249559,0.006738,-0.006748,0.249909,0,0);-ms-transform:matrix(0.249559,0.006738,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.249559,0.006738,-0.006748,0.249909,0,0);}
.maa_c01386{transform:matrix(0.249872,0.006996,-0.006997,0.249902,0,0);-ms-transform:matrix(0.249872,0.006996,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.249872,0.006996,-0.006997,0.249902,0,0);}
.m44_c01386{transform:matrix(0.250082,0.007502,-0.007497,0.249888,0,0);-ms-transform:matrix(0.250082,0.007502,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.250082,0.007502,-0.007497,0.249888,0,0);}
.m53_c01386{transform:matrix(0.250522,0.007516,-0.007497,0.249888,0,0);-ms-transform:matrix(0.250522,0.007516,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.250522,0.007516,-0.007497,0.249888,0,0);}
.m9a_c01386{transform:matrix(0.250592,0.007017,-0.006997,0.249902,0,0);-ms-transform:matrix(0.250592,0.007017,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.250592,0.007017,-0.006997,0.249902,0,0);}
.m55_c01386{transform:matrix(0.250737,0.007522,-0.007497,0.249888,0,0);-ms-transform:matrix(0.250737,0.007522,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.250737,0.007522,-0.007497,0.249888,0,0);}
.mf6_c01386{transform:matrix(0.250805,0.007273,-0.007247,0.249895,0,0);-ms-transform:matrix(0.250805,0.007273,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.250805,0.007273,-0.007247,0.249895,0,0);}
.mc7_c01386{transform:matrix(0.250825,0.007274,-0.007247,0.249895,0,0);-ms-transform:matrix(0.250825,0.007274,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.250825,0.007274,-0.007247,0.249895,0,0);}
.m28_c01386{transform:matrix(0.250912,0.007026,-0.006997,0.249902,0,0);-ms-transform:matrix(0.250912,0.007026,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.250912,0.007026,-0.006997,0.249902,0,0);}
.mf2_c01386{transform:matrix(0.251244,0.007286,-0.007247,0.249895,0,0);-ms-transform:matrix(0.251244,0.007286,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.251244,0.007286,-0.007247,0.249895,0,0);}
.ma1_c01386{transform:matrix(0.251461,0.007041,-0.006997,0.249902,0,0);-ms-transform:matrix(0.251461,0.007041,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.251461,0.007041,-0.006997,0.249902,0,0);}
.m19_c01386{transform:matrix(0.251603,0.006793,-0.006748,0.249909,0,0);-ms-transform:matrix(0.251603,0.006793,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.251603,0.006793,-0.006748,0.249909,0,0);}
.mfb_c01386{transform:matrix(0.251607,0.007548,-0.007497,0.249888,0,0);-ms-transform:matrix(0.251607,0.007548,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.251607,0.007548,-0.007497,0.249888,0,0);}
.m9e_c01386{transform:matrix(0.251676,0.007047,-0.006997,0.249902,0,0);-ms-transform:matrix(0.251676,0.007047,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.251676,0.007047,-0.006997,0.249902,0,0);}
.me5_c01386{transform:matrix(0.252084,0.007310,-0.007247,0.249895,0,0);-ms-transform:matrix(0.252084,0.007310,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.252084,0.007310,-0.007247,0.249895,0,0);}
.m12a_c01386{transform:matrix(0.252127,0.008329,-0.008254,0.249864,0,0);-ms-transform:matrix(0.252127,0.008329,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.252127,0.008329,-0.008254,0.249864,0,0);}
.m109_c01386{transform:matrix(0.252364,0.007823,-0.007746,0.249880,0,0);-ms-transform:matrix(0.252364,0.007823,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.252364,0.007823,-0.007746,0.249880,0,0);}
.m9c_c01386{transform:matrix(0.252551,0.007071,-0.006997,0.249902,0,0);-ms-transform:matrix(0.252551,0.007071,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.252551,0.007071,-0.006997,0.249902,0,0);}
.ma5_c01386{transform:matrix(0.252896,0.007081,-0.006997,0.249902,0,0);-ms-transform:matrix(0.252896,0.007081,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.252896,0.007081,-0.006997,0.249902,0,0);}
.mad_c01386{transform:matrix(0.253276,0.007092,-0.006997,0.249902,0,0);-ms-transform:matrix(0.253276,0.007092,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.253276,0.007092,-0.006997,0.249902,0,0);}
.md5_c01386{transform:matrix(0.253363,0.007348,-0.007247,0.249895,0,0);-ms-transform:matrix(0.253363,0.007348,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.253363,0.007348,-0.007247,0.249895,0,0);}
.m1f_c01386{transform:matrix(0.253448,0.008626,-0.008504,0.249855,0,0);-ms-transform:matrix(0.253448,0.008626,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.253448,0.008626,-0.008504,0.249855,0,0);}
.m98_c01386{transform:matrix(0.253461,0.007097,-0.006997,0.249902,0,0);-ms-transform:matrix(0.253461,0.007097,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.253461,0.007097,-0.006997,0.249902,0,0);}
.mf0_c01386{transform:matrix(0.253698,0.007357,-0.007247,0.249895,0,0);-ms-transform:matrix(0.253698,0.007357,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.253698,0.007357,-0.007247,0.249895,0,0);}
.m10_c01386{transform:matrix(0.253900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253900,0.000000,0.000000,0.250000,0,0);}
.m97_c01386{transform:matrix(0.253905,0.007109,-0.006997,0.249902,0,0);-ms-transform:matrix(0.253905,0.007109,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.253905,0.007109,-0.006997,0.249902,0,0);}
.m83_c01386{transform:matrix(0.254100,0.007115,-0.006997,0.249902,0,0);-ms-transform:matrix(0.254100,0.007115,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.254100,0.007115,-0.006997,0.249902,0,0);}
.meb_c01386{transform:matrix(0.254553,0.007382,-0.007247,0.249895,0,0);-ms-transform:matrix(0.254553,0.007382,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.254553,0.007382,-0.007247,0.249895,0,0);}
.ma2_c01386{transform:matrix(0.254660,0.007130,-0.006997,0.249902,0,0);-ms-transform:matrix(0.254660,0.007130,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.254660,0.007130,-0.006997,0.249902,0,0);}
.m21_c01386{transform:matrix(0.254723,0.008669,-0.008504,0.249855,0,0);-ms-transform:matrix(0.254723,0.008669,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.254723,0.008669,-0.008504,0.249855,0,0);}
.m104_c01386{transform:matrix(0.255027,0.007906,-0.007746,0.249880,0,0);-ms-transform:matrix(0.255027,0.007906,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.255027,0.007906,-0.007746,0.249880,0,0);}
.mae_c01386{transform:matrix(0.255075,0.007142,-0.006997,0.249902,0,0);-ms-transform:matrix(0.255075,0.007142,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.255075,0.007142,-0.006997,0.249902,0,0);}
.md0_c01386{transform:matrix(0.255518,0.007410,-0.007247,0.249895,0,0);-ms-transform:matrix(0.255518,0.007410,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.255518,0.007410,-0.007247,0.249895,0,0);}
.m36_c01386{transform:matrix(0.255927,0.006910,-0.006748,0.249909,0,0);-ms-transform:matrix(0.255927,0.006910,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.255927,0.006910,-0.006748,0.249909,0,0);}
.me8_c01386{transform:matrix(0.256057,0.007426,-0.007247,0.249895,0,0);-ms-transform:matrix(0.256057,0.007426,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.256057,0.007426,-0.007247,0.249895,0,0);}
.m108_c01386{transform:matrix(0.256417,0.007949,-0.007746,0.249880,0,0);-ms-transform:matrix(0.256417,0.007949,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.256417,0.007949,-0.007746,0.249880,0,0);}
.m14_c01386{transform:matrix(0.256655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256655,0.000000,0.000000,0.250000,0,0);}
.m96_c01386{transform:matrix(0.256664,0.007187,-0.006997,0.249902,0,0);-ms-transform:matrix(0.256664,0.007187,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.256664,0.007187,-0.006997,0.249902,0,0);}
.m11_c01386{transform:matrix(0.256775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256775,0.000000,0.000000,0.250000,0,0);}
.ma3_c01386{transform:matrix(0.256914,0.007194,-0.006997,0.249902,0,0);-ms-transform:matrix(0.256914,0.007194,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.256914,0.007194,-0.006997,0.249902,0,0);}
.m18_c01386{transform:matrix(0.257456,0.006951,-0.006748,0.249909,0,0);-ms-transform:matrix(0.257456,0.006951,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.257456,0.006951,-0.006748,0.249909,0,0);}
.m52_c01386{transform:matrix(0.257529,0.007726,-0.007497,0.249888,0,0);-ms-transform:matrix(0.257529,0.007726,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.257529,0.007726,-0.007497,0.249888,0,0);}
.m35_c01386{transform:matrix(0.257701,0.006958,-0.006748,0.249909,0,0);-ms-transform:matrix(0.257701,0.006958,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.257701,0.006958,-0.006748,0.249909,0,0);}
.m30_c01386{transform:matrix(0.258114,0.007227,-0.006997,0.249902,0,0);-ms-transform:matrix(0.258114,0.007227,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.258114,0.007227,-0.006997,0.249902,0,0);}
.mf7_c01386{transform:matrix(0.258444,0.007753,-0.007497,0.249888,0,0);-ms-transform:matrix(0.258444,0.007753,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.258444,0.007753,-0.007497,0.249888,0,0);}
.m79_c01386{transform:matrix(0.258522,0.009316,-0.009003,0.249838,0,0);-ms-transform:matrix(0.258522,0.009316,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.258522,0.009316,-0.009003,0.249838,0,0);}
.m85_c01386{transform:matrix(0.258719,0.007244,-0.006997,0.249902,0,0);-ms-transform:matrix(0.258719,0.007244,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.258719,0.007244,-0.006997,0.249902,0,0);}
.m37_c01386{transform:matrix(0.258876,0.006990,-0.006748,0.249909,0,0);-ms-transform:matrix(0.258876,0.006990,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.258876,0.006990,-0.006748,0.249909,0,0);}
.m10c_c01386{transform:matrix(0.259046,0.008030,-0.007746,0.249880,0,0);-ms-transform:matrix(0.259046,0.008030,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.259046,0.008030,-0.007746,0.249880,0,0);}
.m6_c01386{transform:matrix(0.259248,0.007259,-0.006997,0.249902,0,0);-ms-transform:matrix(0.259248,0.007259,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.259248,0.007259,-0.006997,0.249902,0,0);}
.mec_c01386{transform:matrix(0.260051,0.007541,-0.007247,0.249895,0,0);-ms-transform:matrix(0.260051,0.007541,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.260051,0.007541,-0.007247,0.249895,0,0);}
.m1d_c01386{transform:matrix(0.260285,0.007028,-0.006748,0.249909,0,0);-ms-transform:matrix(0.260285,0.007028,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.260285,0.007028,-0.006748,0.249909,0,0);}
.m105_c01386{transform:matrix(0.260620,0.008079,-0.007746,0.249880,0,0);-ms-transform:matrix(0.260620,0.008079,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.260620,0.008079,-0.007746,0.249880,0,0);}
.m131_c01386{transform:matrix(0.260923,0.008619,-0.008254,0.249864,0,0);-ms-transform:matrix(0.260923,0.008619,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.260923,0.008619,-0.008254,0.249864,0,0);}
.m63_c01386{transform:matrix(0.262124,0.007077,-0.006748,0.249909,0,0);-ms-transform:matrix(0.262124,0.007077,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.262124,0.007077,-0.006748,0.249909,0,0);}
.m107_c01386{transform:matrix(0.262144,0.008126,-0.007746,0.249880,0,0);-ms-transform:matrix(0.262144,0.008126,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.262144,0.008126,-0.007746,0.249880,0,0);}
.m2d_c01386{transform:matrix(0.262162,0.007341,-0.006997,0.249902,0,0);-ms-transform:matrix(0.262162,0.007341,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.262162,0.007341,-0.006997,0.249902,0,0);}
.m15_c01386{transform:matrix(0.262340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262340,0.000000,0.000000,0.250000,0,0);}
.m9d_c01386{transform:matrix(0.262722,0.007356,-0.006997,0.249902,0,0);-ms-transform:matrix(0.262722,0.007356,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.262722,0.007356,-0.006997,0.249902,0,0);}
.m12f_c01386{transform:matrix(0.263022,0.008688,-0.008254,0.249864,0,0);-ms-transform:matrix(0.263022,0.008688,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.263022,0.008688,-0.008254,0.249864,0,0);}
.m4_c01386{transform:matrix(0.263462,0.007377,-0.006997,0.249902,0,0);-ms-transform:matrix(0.263462,0.007377,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.263462,0.007377,-0.006997,0.249902,0,0);}
.m3d_c01386{transform:matrix(0.263739,0.007121,-0.006748,0.249909,0,0);-ms-transform:matrix(0.263739,0.007121,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.263739,0.007121,-0.006748,0.249909,0,0);}
.mf8_c01386{transform:matrix(0.264426,0.007933,-0.007497,0.249888,0,0);-ms-transform:matrix(0.264426,0.007933,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.264426,0.007933,-0.007497,0.249888,0,0);}
.m7f_c01386{transform:matrix(0.265041,0.007421,-0.006997,0.249902,0,0);-ms-transform:matrix(0.265041,0.007421,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.265041,0.007421,-0.006997,0.249902,0,0);}
.md3_c01386{transform:matrix(0.265853,0.007710,-0.007247,0.249895,0,0);-ms-transform:matrix(0.265853,0.007710,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.265853,0.007710,-0.007247,0.249895,0,0);}
.m10a_c01386{transform:matrix(0.266277,0.008255,-0.007746,0.249880,0,0);-ms-transform:matrix(0.266277,0.008255,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.266277,0.008255,-0.007746,0.249880,0,0);}
.mfa_c01386{transform:matrix(0.266310,0.007989,-0.007497,0.249888,0,0);-ms-transform:matrix(0.266310,0.007989,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.266310,0.007989,-0.007497,0.249888,0,0);}
.m31_c01386{transform:matrix(0.268275,0.007512,-0.006997,0.249902,0,0);-ms-transform:matrix(0.268275,0.007512,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.268275,0.007512,-0.006997,0.249902,0,0);}
.me7_c01386{transform:matrix(0.269657,0.007820,-0.007247,0.249895,0,0);-ms-transform:matrix(0.269657,0.007820,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.269657,0.007820,-0.007247,0.249895,0,0);}
.m2a_c01386{transform:matrix(0.269804,0.007555,-0.006997,0.249902,0,0);-ms-transform:matrix(0.269804,0.007555,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.269804,0.007555,-0.006997,0.249902,0,0);}
.mfc_c01386{transform:matrix(0.271713,0.008151,-0.007497,0.249888,0,0);-ms-transform:matrix(0.271713,0.008151,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.271713,0.008151,-0.007497,0.249888,0,0);}
.m78_c01386{transform:matrix(0.272543,0.009821,-0.009003,0.249838,0,0);-ms-transform:matrix(0.272543,0.009821,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.272543,0.009821,-0.009003,0.249838,0,0);}
.m29_c01386{transform:matrix(0.273478,0.007657,-0.006997,0.249902,0,0);-ms-transform:matrix(0.273478,0.007657,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.273478,0.007657,-0.006997,0.249902,0,0);}
.m26_c01386{transform:matrix(0.276427,0.007740,-0.006997,0.249902,0,0);-ms-transform:matrix(0.276427,0.007740,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.276427,0.007740,-0.006997,0.249902,0,0);}
.m1b_c01386{transform:matrix(0.276924,0.007477,-0.006748,0.249909,0,0);-ms-transform:matrix(0.276924,0.007477,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.276924,0.007477,-0.006748,0.249909,0,0);}
.m17_c01386{transform:matrix(0.277739,0.007499,-0.006748,0.249909,0,0);-ms-transform:matrix(0.277739,0.007499,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.277739,0.007499,-0.006748,0.249909,0,0);}
.m51_c01386{transform:matrix(0.279729,0.008392,-0.007497,0.249888,0,0);-ms-transform:matrix(0.279729,0.008392,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.279729,0.008392,-0.007497,0.249888,0,0);}
.ma6_c01386{transform:matrix(0.280210,0.007846,-0.006997,0.249902,0,0);-ms-transform:matrix(0.280210,0.007846,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.280210,0.007846,-0.006997,0.249902,0,0);}
.m7a_c01386{transform:matrix(0.280293,0.010101,-0.009003,0.249838,0,0);-ms-transform:matrix(0.280293,0.010101,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.280293,0.010101,-0.009003,0.249838,0,0);}
.mf9_c01386{transform:matrix(0.280989,0.008430,-0.007497,0.249888,0,0);-ms-transform:matrix(0.280989,0.008430,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.280989,0.008430,-0.007497,0.249888,0,0);}
.m2b_c01386{transform:matrix(0.282019,0.007897,-0.006997,0.249902,0,0);-ms-transform:matrix(0.282019,0.007897,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.282019,0.007897,-0.006997,0.249902,0,0);}
.m2c_c01386{transform:matrix(0.282619,0.007913,-0.006997,0.249902,0,0);-ms-transform:matrix(0.282619,0.007913,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.282619,0.007913,-0.006997,0.249902,0,0);}
.m54_c01386{transform:matrix(0.282748,0.008482,-0.007497,0.249888,0,0);-ms-transform:matrix(0.282748,0.008482,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.282748,0.008482,-0.007497,0.249888,0,0);}
.mda_c01386{transform:matrix(0.284255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284255,0.000000,0.000000,0.250000,0,0);}
.mb6_c01386{transform:matrix(0.285429,0.009429,-0.008254,0.249864,0,0);-ms-transform:matrix(0.285429,0.009429,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.285429,0.009429,-0.008254,0.249864,0,0);}
.ma7_c01386{transform:matrix(0.285568,0.007996,-0.006997,0.249902,0,0);-ms-transform:matrix(0.285568,0.007996,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.285568,0.007996,-0.006997,0.249902,0,0);}
.m7_c01386{transform:matrix(0.285688,0.007999,-0.006997,0.249902,0,0);-ms-transform:matrix(0.285688,0.007999,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.285688,0.007999,-0.006997,0.249902,0,0);}
.m2_c01386{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m11e_c01386{transform:matrix(0.300796,0.009936,-0.008254,0.249864,0,0);-ms-transform:matrix(0.300796,0.009936,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.300796,0.009936,-0.008254,0.249864,0,0);}
.m1_c01386{transform:matrix(0.302930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302930,0.000000,0.000000,0.250000,0,0);}
.m3_c01386{transform:matrix(0.303181,0.008489,-0.006997,0.249902,0,0);-ms-transform:matrix(0.303181,0.008489,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.303181,0.008489,-0.006997,0.249902,0,0);}
.m57_c01386{transform:matrix(0.307832,0.009235,-0.007497,0.249888,0,0);-ms-transform:matrix(0.307832,0.009235,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.307832,0.009235,-0.007497,0.249888,0,0);}
.mb_c01386{transform:matrix(0.322685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322685,0.000000,0.000000,0.250000,0,0);}
.m60_c01386{transform:matrix(0.324949,0.009748,-0.007497,0.249888,0,0);-ms-transform:matrix(0.324949,0.009748,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.324949,0.009748,-0.007497,0.249888,0,0);}
.mcd_c01386{transform:matrix(0.328447,0.009525,-0.007247,0.249895,0,0);-ms-transform:matrix(0.328447,0.009525,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.328447,0.009525,-0.007247,0.249895,0,0);}
.m5c_c01386{transform:matrix(0.328602,0.009858,-0.007497,0.249888,0,0);-ms-transform:matrix(0.328602,0.009858,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.328602,0.009858,-0.007497,0.249888,0,0);}
.m3f_c01386{transform:matrix(0.333060,0.009992,-0.007497,0.249888,0,0);-ms-transform:matrix(0.333060,0.009992,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.333060,0.009992,-0.007497,0.249888,0,0);}
.m5a_c01386{transform:matrix(0.339887,0.010197,-0.007497,0.249888,0,0);-ms-transform:matrix(0.339887,0.010197,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.339887,0.010197,-0.007497,0.249888,0,0);}
.m10d_c01386{transform:matrix(0.354250,0.010982,-0.007746,0.249880,0,0);-ms-transform:matrix(0.354250,0.010982,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.354250,0.010982,-0.007746,0.249880,0,0);}
.md_c01386{transform:matrix(0.373270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373270,0.000000,0.000000,0.250000,0,0);}
.m7b_c01386{transform:matrix(0.373593,0.013463,-0.009003,0.249838,0,0);-ms-transform:matrix(0.373593,0.013463,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.373593,0.013463,-0.009003,0.249838,0,0);}
.m7c_c01386{transform:matrix(0.399086,0.014381,-0.009003,0.249838,0,0);-ms-transform:matrix(0.399086,0.014381,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.399086,0.014381,-0.009003,0.249838,0,0);}
.m5b_c01386{transform:matrix(0.435634,0.013069,-0.007497,0.249888,0,0);-ms-transform:matrix(0.435634,0.013069,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.435634,0.013069,-0.007497,0.249888,0,0);}
.m58_c01386{transform:matrix(0.443166,0.013295,-0.007497,0.249888,0,0);-ms-transform:matrix(0.443166,0.013295,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.443166,0.013295,-0.007497,0.249888,0,0);}
.mde_c01386{transform:matrix(0.446185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.446185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.446185,0.000000,0.000000,0.250000,0,0);}
.m112_c01386{transform:matrix(0.452215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452215,0.000000,0.000000,0.250000,0,0);}
.mce_c01386{transform:matrix(0.457843,0.013277,-0.007247,0.249895,0,0);-ms-transform:matrix(0.457843,0.013277,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.457843,0.013277,-0.007247,0.249895,0,0);}
.m86_c01386{transform:matrix(0.459685,0.012871,-0.006997,0.249902,0,0);-ms-transform:matrix(0.459685,0.012871,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.459685,0.012871,-0.006997,0.249902,0,0);}
.m5f_c01386{transform:matrix(0.470069,0.014102,-0.007497,0.249888,0,0);-ms-transform:matrix(0.470069,0.014102,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.470069,0.014102,-0.007497,0.249888,0,0);}
.m5d_c01386{transform:matrix(0.470753,0.014123,-0.007497,0.249888,0,0);-ms-transform:matrix(0.470753,0.014123,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.470753,0.014123,-0.007497,0.249888,0,0);}
.med_c01386{transform:matrix(0.480933,0.013947,-0.007247,0.249895,0,0);-ms-transform:matrix(0.480933,0.013947,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.480933,0.013947,-0.007247,0.249895,0,0);}
.mc_c01386{transform:matrix(0.483035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.483035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.483035,0.000000,0.000000,0.250000,0,0);}
.m59_c01386{transform:matrix(0.483747,0.014512,-0.007497,0.249888,0,0);-ms-transform:matrix(0.483747,0.014512,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.483747,0.014512,-0.007497,0.249888,0,0);}
.m50_c01386{transform:matrix(0.494083,0.014822,-0.007497,0.249888,0,0);-ms-transform:matrix(0.494083,0.014822,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.494083,0.014822,-0.007497,0.249888,0,0);}
.me3_c01386{transform:matrix(0.496305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.496305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.496305,0.000000,0.000000,0.250000,0,0);}
.mdf_c01386{transform:matrix(0.557755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557755,0.000000,0.000000,0.250000,0,0);}
.m43_c01386{transform:matrix(0.602884,0.018087,-0.007497,0.249888,0,0);-ms-transform:matrix(0.602884,0.018087,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.602884,0.018087,-0.007497,0.249888,0,0);}
.maf_c01386{transform:matrix(0.649390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.649390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.649390,0.000000,0.000000,0.250000,0,0);}
.m113_c01386{transform:matrix(0.715890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.715890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.715890,0.000000,0.000000,0.250000,0,0);}
.mdb_c01386{transform:matrix(0.983275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.983275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.983275,0.000000,0.000000,0.250000,0,0);}
.mdc_c01386{transform:matrix(1.135350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.135350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.135350,0.000000,0.000000,0.250000,0,0);}
.me1_c01386{transform:matrix(1.267210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.267210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.267210,0.000000,0.000000,0.250000,0,0);}
.mb2_c01386{transform:matrix(1.294700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.294700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.294700,0.000000,0.000000,0.250000,0,0);}
.m111_c01386{transform:matrix(1.746455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.746455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.746455,0.000000,0.000000,0.250000,0,0);}
.m9_c01386{transform:matrix(1.838509,0.051478,-0.006997,0.249902,0,0);-ms-transform:matrix(1.838509,0.051478,-0.006997,0.249902,0,0);-webkit-transform:matrix(1.838509,0.051478,-0.006997,0.249902,0,0);}
.mdd_c01386{transform:matrix(2.450590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.450590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.450590,0.000000,0.000000,0.250000,0,0);}
.ma_c01386{transform:matrix(2.656649,0.074386,-0.006997,0.249902,0,0);-ms-transform:matrix(2.656649,0.074386,-0.006997,0.249902,0,0);-webkit-transform:matrix(2.656649,0.074386,-0.006997,0.249902,0,0);}
.me2_c01386{transform:matrix(2.717370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.717370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.717370,0.000000,0.000000,0.250000,0,0);}
.m8_c01386{transform:matrix(2.904981,0.081339,-0.006997,0.249902,0,0);-ms-transform:matrix(2.904981,0.081339,-0.006997,0.249902,0,0);-webkit-transform:matrix(2.904981,0.081339,-0.006997,0.249902,0,0);}
.v0_c01386{vertical-align:0.000000px;}
.ls0_c01386{letter-spacing:0.000000px;}
.sc__c01386{text-shadow:none;}
.sc0_c01386{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__c01386{-webkit-text-stroke:0px transparent;}
.sc0_c01386{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01386{word-spacing:0.000000px;}
.fc0_c01386{color:transparent;}
.fs13_c01386{font-size:18.000000px;}
.fs12_c01386{font-size:24.000000px;}
.fs2_c01386{font-size:30.011758px;}
.fs4_c01386{font-size:36.000000px;}
.fs3_c01386{font-size:36.014109px;}
.fs10_c01386{font-size:47.983125px;}
.fs8_c01386{font-size:71.969646px;}
.fsf_c01386{font-size:71.974688px;}
.fs6_c01386{font-size:72.026239px;}
.fs1_c01386{font-size:72.028218px;}
.fs18_c01386{font-size:72.032393px;}
.fs19_c01386{font-size:72.034588px;}
.fs1b_c01386{font-size:77.964502px;}
.fs7_c01386{font-size:77.967116px;}
.fs5_c01386{font-size:78.000000px;}
.fsa_c01386{font-size:78.028426px;}
.fs9_c01386{font-size:78.030570px;}
.fs17_c01386{font-size:78.032792px;}
.fsb_c01386{font-size:78.035092px;}
.fs15_c01386{font-size:83.961771px;}
.fs14_c01386{font-size:84.000000px;}
.fse_c01386{font-size:84.024189px;}
.fsc_c01386{font-size:84.037791px;}
.fsd_c01386{font-size:90.032799px;}
.fs16_c01386{font-size:95.956310px;}
.fs0_c01386{font-size:96.000000px;}
.fs1a_c01386{font-size:114.054764px;}
.fs11_c01386{font-size:132.051734px;}
.y0_c01386{bottom:0.000000px;}
.y128_c01386{bottom:72.070019px;}
.y127_c01386{bottom:74.298567px;}
.y126_c01386{bottom:79.298751px;}
.y125_c01386{bottom:80.830668px;}
.y124_c01386{bottom:82.745819px;}
.y123_c01386{bottom:85.048361px;}
.y122_c01386{bottom:88.054896px;}
.y121_c01386{bottom:111.434457px;}
.y120_c01386{bottom:112.907627px;}
.y11f_c01386{bottom:114.003854px;}
.y11e_c01386{bottom:115.786744px;}
.y11d_c01386{bottom:117.221552px;}
.y11c_c01386{bottom:119.018352px;}
.y11b_c01386{bottom:121.203332px;}
.y11a_c01386{bottom:123.676500px;}
.y119_c01386{bottom:153.297879px;}
.y118_c01386{bottom:154.598613px;}
.y117_c01386{bottom:155.931612px;}
.y116_c01386{bottom:157.189956px;}
.y115_c01386{bottom:176.253346px;}
.y114_c01386{bottom:178.731316px;}
.y113_c01386{bottom:179.854224px;}
.y112_c01386{bottom:182.010741px;}
.y111_c01386{bottom:183.113799px;}
.y110_c01386{bottom:185.992224px;}
.y10f_c01386{bottom:187.421437px;}
.y10e_c01386{bottom:188.835306px;}
.y10d_c01386{bottom:190.672102px;}
.y10c_c01386{bottom:192.849657px;}
.y10b_c01386{bottom:194.964000px;}
.y109_c01386{bottom:213.756025px;}
.y108_c01386{bottom:228.314541px;}
.y107_c01386{bottom:233.821988px;}
.y106_c01386{bottom:247.781577px;}
.y105_c01386{bottom:249.137982px;}
.y104_c01386{bottom:250.167538px;}
.y103_c01386{bottom:252.487005px;}
.y102_c01386{bottom:253.877820px;}
.y101_c01386{bottom:255.877553px;}
.y100_c01386{bottom:260.297378px;}
.yff_c01386{bottom:261.329259px;}
.y10a_c01386{bottom:262.710000px;}
.yfe_c01386{bottom:263.361914px;}
.yfd_c01386{bottom:265.340674px;}
.yfc_c01386{bottom:269.991000px;}
.yfb_c01386{bottom:293.273295px;}
.yfa_c01386{bottom:294.265455px;}
.yf9_c01386{bottom:296.282100px;}
.yf8_c01386{bottom:296.958630px;}
.yf7_c01386{bottom:299.331840px;}
.yf6_c01386{bottom:301.317615px;}
.yf5_c01386{bottom:327.257940px;}
.yf4_c01386{bottom:328.303830px;}
.ydb_c01386{bottom:328.860000px;}
.yf3_c01386{bottom:330.854655px;}
.yf2_c01386{bottom:331.969665px;}
.yf1_c01386{bottom:334.159905px;}
.yf0_c01386{bottom:336.432000px;}
.yda_c01386{bottom:339.660000px;}
.yef_c01386{bottom:358.680288px;}
.yee_c01386{bottom:359.599846px;}
.yed_c01386{bottom:361.378279px;}
.yec_c01386{bottom:362.560131px;}
.yeb_c01386{bottom:364.915134px;}
.yea_c01386{bottom:366.088111px;}
.ye9_c01386{bottom:368.441853px;}
.ye8_c01386{bottom:369.329286px;}
.ye7_c01386{bottom:370.216284px;}
.ye6_c01386{bottom:371.375710px;}
.ye5_c01386{bottom:372.865923px;}
.ye4_c01386{bottom:392.206365px;}
.ye3_c01386{bottom:395.047480px;}
.ye2_c01386{bottom:395.986906px;}
.ye1_c01386{bottom:396.942210px;}
.ye0_c01386{bottom:399.770145px;}
.ydf_c01386{bottom:401.383125px;}
.yde_c01386{bottom:402.331294px;}
.ydd_c01386{bottom:404.240683px;}
.ydc_c01386{bottom:406.092000px;}
.yd7_c01386{bottom:427.579430px;}
.yd9_c01386{bottom:428.490000px;}
.yd6_c01386{bottom:429.129776px;}
.yd5_c01386{bottom:430.322697px;}
.yd4_c01386{bottom:430.950261px;}
.yd3_c01386{bottom:433.681131px;}
.yd8_c01386{bottom:434.700000px;}
.yd2_c01386{bottom:434.897348px;}
.yd1_c01386{bottom:437.646270px;}
.yd0_c01386{bottom:438.908141px;}
.ycf_c01386{bottom:439.830009px;}
.yce_c01386{bottom:443.144094px;}
.ycd_c01386{bottom:444.412272px;}
.ycc_c01386{bottom:459.521148px;}
.ycb_c01386{bottom:461.754612px;}
.yca_c01386{bottom:463.023899px;}
.yc9_c01386{bottom:464.297840px;}
.yc8_c01386{bottom:466.500984px;}
.yc7_c01386{bottom:467.456505px;}
.yc6_c01386{bottom:468.417159px;}
.yc5_c01386{bottom:469.670350px;}
.yc4_c01386{bottom:471.896768px;}
.yc3_c01386{bottom:473.488998px;}
.yc2_c01386{bottom:476.591114px;}
.yc1_c01386{bottom:477.624456px;}
.yc0_c01386{bottom:479.800500px;}
.ybf_c01386{bottom:496.413028px;}
.ybe_c01386{bottom:497.751023px;}
.ybd_c01386{bottom:498.790162px;}
.ybc_c01386{bottom:499.448976px;}
.ybb_c01386{bottom:502.854189px;}
.yba_c01386{bottom:505.521677px;}
.yb9_c01386{bottom:506.552266px;}
.yb8_c01386{bottom:509.560521px;}
.yb7_c01386{bottom:510.632911px;}
.yb6_c01386{bottom:512.959943px;}
.yb5_c01386{bottom:513.997944px;}
.yb4_c01386{bottom:516.007523px;}
.yb3_c01386{bottom:531.367035px;}
.yb2_c01386{bottom:533.532462px;}
.yb1_c01386{bottom:537.855000px;}
.yad_c01386{bottom:540.341712px;}
.yac_c01386{bottom:542.628144px;}
.yab_c01386{bottom:543.957744px;}
.yaa_c01386{bottom:544.930158px;}
.ya9_c01386{bottom:547.174446px;}
.ya8_c01386{bottom:548.864928px;}
.ya7_c01386{bottom:550.488078px;}
.yb0_c01386{bottom:565.372500px;}
.ya6_c01386{bottom:569.168898px;}
.ya5_c01386{bottom:572.842218px;}
.ya4_c01386{bottom:575.482110px;}
.ya3_c01386{bottom:577.063692px;}
.ya2_c01386{bottom:580.526640px;}
.ya1_c01386{bottom:584.028060px;}
.ya0_c01386{bottom:586.565676px;}
.y9f_c01386{bottom:587.485392px;}
.yaf_c01386{bottom:598.050000px;}
.y9e_c01386{bottom:600.470832px;}
.y9d_c01386{bottom:602.576628px;}
.y9c_c01386{bottom:603.190668px;}
.y9b_c01386{bottom:605.019894px;}
.y9a_c01386{bottom:607.130016px;}
.y99_c01386{bottom:609.308136px;}
.y98_c01386{bottom:610.223190px;}
.y97_c01386{bottom:612.370860px;}
.y96_c01386{bottom:614.791866px;}
.y95_c01386{bottom:617.876850px;}
.y94_c01386{bottom:618.770274px;}
.y93_c01386{bottom:620.273916px;}
.yae_c01386{bottom:621.270000px;}
.y92_c01386{bottom:621.519342px;}
.y91_c01386{bottom:638.112246px;}
.y90_c01386{bottom:639.024120px;}
.y8f_c01386{bottom:640.731546px;}
.y8e_c01386{bottom:641.671740px;}
.y8d_c01386{bottom:642.503592px;}
.y8c_c01386{bottom:643.405050px;}
.y8b_c01386{bottom:644.892252px;}
.y8a_c01386{bottom:648.150732px;}
.y89_c01386{bottom:650.809326px;}
.y88_c01386{bottom:651.677970px;}
.y87_c01386{bottom:652.582662px;}
.y86_c01386{bottom:655.193982px;}
.y85_c01386{bottom:656.097876px;}
.y84_c01386{bottom:670.866522px;}
.y83_c01386{bottom:674.070870px;}
.y82_c01386{bottom:675.282528px;}
.y81_c01386{bottom:677.747592px;}
.y80_c01386{bottom:679.257534px;}
.y7f_c01386{bottom:680.482632px;}
.y7e_c01386{bottom:681.075672px;}
.y7d_c01386{bottom:685.997400px;}
.y7c_c01386{bottom:686.880954px;}
.y7b_c01386{bottom:688.782000px;}
.y7a_c01386{bottom:725.941863px;}
.y79_c01386{bottom:740.543328px;}
.y78_c01386{bottom:742.598784px;}
.y77_c01386{bottom:744.936660px;}
.y76_c01386{bottom:748.082214px;}
.y75_c01386{bottom:749.268000px;}
.y74_c01386{bottom:750.108420px;}
.y73_c01386{bottom:751.950216px;}
.y72_c01386{bottom:753.264648px;}
.y71_c01386{bottom:754.041096px;}
.y70_c01386{bottom:755.618868px;}
.y6f_c01386{bottom:756.388692px;}
.y6e_c01386{bottom:756.952452px;}
.y6d_c01386{bottom:758.245032px;}
.y6c_c01386{bottom:758.761416px;}
.y6b_c01386{bottom:760.072968px;}
.y6a_c01386{bottom:760.869000px;}
.y69_c01386{bottom:781.616949px;}
.y68_c01386{bottom:782.516859px;}
.y67_c01386{bottom:783.983769px;}
.y66_c01386{bottom:786.010429px;}
.y65_c01386{bottom:787.818876px;}
.y64_c01386{bottom:788.701250px;}
.y63_c01386{bottom:789.850882px;}
.y62_c01386{bottom:790.762213px;}
.y61_c01386{bottom:793.726003px;}
.y60_c01386{bottom:795.478722px;}
.y5f_c01386{bottom:797.226095px;}
.y5e_c01386{bottom:798.130500px;}
.y5d_c01386{bottom:816.313650px;}
.y5c_c01386{bottom:817.326645px;}
.y5b_c01386{bottom:818.186985px;}
.y5a_c01386{bottom:819.097725px;}
.y59_c01386{bottom:819.850770px;}
.y58_c01386{bottom:821.618790px;}
.y57_c01386{bottom:822.628050px;}
.y56_c01386{bottom:823.520580px;}
.y55_c01386{bottom:824.271210px;}
.y54_c01386{bottom:825.881505px;}
.y53_c01386{bottom:828.496665px;}
.y52_c01386{bottom:829.663170px;}
.y51_c01386{bottom:830.581410px;}
.y50_c01386{bottom:832.417845px;}
.y4f_c01386{bottom:850.772520px;}
.y4e_c01386{bottom:851.627115px;}
.y4d_c01386{bottom:853.651350px;}
.y4c_c01386{bottom:854.268420px;}
.y4b_c01386{bottom:856.486530px;}
.y4a_c01386{bottom:858.269250px;}
.y49_c01386{bottom:859.614345px;}
.y48_c01386{bottom:863.024625px;}
.y47_c01386{bottom:865.063110px;}
.y46_c01386{bottom:885.560355px;}
.y45_c01386{bottom:888.598125px;}
.y44_c01386{bottom:890.891100px;}
.y43_c01386{bottom:891.868590px;}
.y42_c01386{bottom:893.864430px;}
.y41_c01386{bottom:896.149080px;}
.y40_c01386{bottom:899.073810px;}
.y3f_c01386{bottom:900.077040px;}
.y3e_c01386{bottom:902.049300px;}
.y3d_c01386{bottom:902.507130px;}
.y3c_c01386{bottom:904.350600px;}
.y3b_c01386{bottom:905.319000px;}
.y3a_c01386{bottom:922.222851px;}
.y39_c01386{bottom:923.739616px;}
.y38_c01386{bottom:924.599715px;}
.y37_c01386{bottom:926.371711px;}
.y36_c01386{bottom:927.830562px;}
.y35_c01386{bottom:928.719820px;}
.y34_c01386{bottom:932.234694px;}
.y33_c01386{bottom:934.925676px;}
.y32_c01386{bottom:936.100500px;}
.y31_c01386{bottom:964.023438px;}
.y30_c01386{bottom:965.886252px;}
.y2f_c01386{bottom:967.461366px;}
.y2e_c01386{bottom:969.435372px;}
.y2d_c01386{bottom:971.291382px;}
.y2c_c01386{bottom:973.124094px;}
.y2b_c01386{bottom:973.803546px;}
.y2a_c01386{bottom:974.699364px;}
.y29_c01386{bottom:991.194882px;}
.y28_c01386{bottom:993.328314px;}
.y27_c01386{bottom:995.784978px;}
.y26_c01386{bottom:998.235594px;}
.y25_c01386{bottom:999.150648px;}
.y24_c01386{bottom:1000.063350px;}
.y23_c01386{bottom:1002.779490px;}
.y22_c01386{bottom:1003.708572px;}
.y21_c01386{bottom:1004.949000px;}
.y20_c01386{bottom:1007.545521px;}
.y1f_c01386{bottom:1008.451071px;}
.y1e_c01386{bottom:1009.566330px;}
.y1d_c01386{bottom:1026.494658px;}
.y1c_c01386{bottom:1029.796500px;}
.y1b_c01386{bottom:1030.448138px;}
.y1a_c01386{bottom:1032.453941px;}
.y19_c01386{bottom:1033.372926px;}
.y18_c01386{bottom:1036.595309px;}
.y17_c01386{bottom:1037.796943px;}
.y16_c01386{bottom:1038.988130px;}
.y15_c01386{bottom:1040.724081px;}
.y14_c01386{bottom:1044.268276px;}
.y13_c01386{bottom:1045.179000px;}
.y12_c01386{bottom:1063.677000px;}
.y11_c01386{bottom:1067.065500px;}
.y10_c01386{bottom:1068.444000px;}
.yf_c01386{bottom:1069.441500px;}
.ye_c01386{bottom:1072.471500px;}
.yd_c01386{bottom:1075.828500px;}
.yc_c01386{bottom:1077.568500px;}
.yb_c01386{bottom:1078.933500px;}
.ya_c01386{bottom:1103.478000px;}
.y9_c01386{bottom:1129.096410px;}
.y7_c01386{bottom:1131.302172px;}
.y8_c01386{bottom:1134.006000px;}
.y6_c01386{bottom:1142.766888px;}
.y5_c01386{bottom:1144.603254px;}
.y4_c01386{bottom:1145.502978px;}
.y3_c01386{bottom:1147.341234px;}
.y2_c01386{bottom:1148.871000px;}
.y1_c01386{bottom:1202.293500px;}
.h15_c01386{height:18.000000px;}
.h14_c01386{height:24.000000px;}
.h4_c01386{height:30.011758px;}
.h6_c01386{height:36.000000px;}
.h5_c01386{height:36.014109px;}
.h12_c01386{height:47.983125px;}
.ha_c01386{height:71.969646px;}
.h11_c01386{height:71.974688px;}
.h8_c01386{height:72.026239px;}
.h3_c01386{height:72.028218px;}
.h1a_c01386{height:72.032393px;}
.h1b_c01386{height:72.034588px;}
.h1d_c01386{height:77.964502px;}
.h9_c01386{height:77.967116px;}
.h7_c01386{height:78.000000px;}
.hc_c01386{height:78.028426px;}
.hb_c01386{height:78.030570px;}
.h19_c01386{height:78.032792px;}
.hd_c01386{height:78.035092px;}
.h17_c01386{height:83.961771px;}
.h16_c01386{height:84.000000px;}
.h10_c01386{height:84.024189px;}
.he_c01386{height:84.037791px;}
.hf_c01386{height:90.032799px;}
.h18_c01386{height:95.956310px;}
.h2_c01386{height:96.000000px;}
.h1c_c01386{height:114.054764px;}
.h13_c01386{height:132.051734px;}
.h1_c01386{height:1250.250000px;}
.h0_c01386{height:1250.370000px;}
.w0_c01386{width:878.850000px;}
.w1_c01386{width:879.000000px;}
.x0_c01386{left:0.000000px;}
.xad_c01386{left:24.300000px;}
.x8f_c01386{left:26.460000px;}
.xae_c01386{left:27.810000px;}
.xaf_c01386{left:29.160000px;}
.xb1_c01386{left:31.320000px;}
.xb0_c01386{left:32.670000px;}
.xce_c01386{left:34.020000px;}
.xb2_c01386{left:35.370000px;}
.xcb_c01386{left:37.373153px;}
.xc5_c01386{left:38.607000px;}
.xb8_c01386{left:80.852776px;}
.xa4_c01386{left:82.340096px;}
.x9b_c01386{left:84.135000px;}
.x89_c01386{left:85.381470px;}
.x7a_c01386{left:87.682590px;}
.x71_c01386{left:88.685316px;}
.x47_c01386{left:90.538440px;}
.x55_c01386{left:92.515500px;}
.x36_c01386{left:96.090000px;}
.x13_c01386{left:99.543000px;}
.x84_c01386{left:119.163816px;}
.x72_c01386{left:122.146740px;}
.x5e_c01386{left:124.612500px;}
.x56_c01386{left:126.012000px;}
.x37_c01386{left:128.370000px;}
.x27_c01386{left:130.034718px;}
.x7b_c01386{left:132.162090px;}
.x14_c01386{left:133.273500px;}
.xb9_c01386{left:136.018452px;}
.x8a_c01386{left:139.490946px;}
.x1c_c01386{left:141.873641px;}
.x92_c01386{left:150.415533px;}
.x28_c01386{left:153.443046px;}
.x48_c01386{left:158.559060px;}
.x1d_c01386{left:176.679795px;}
.x5f_c01386{left:179.260500px;}
.x93_c01386{left:183.882263px;}
.x7c_c01386{left:185.863590px;}
.xc6_c01386{left:188.617500px;}
.x38_c01386{left:189.819000px;}
.x49_c01386{left:192.570120px;}
.x9c_c01386{left:194.803500px;}
.x8b_c01386{left:195.844296px;}
.x6b_c01386{left:197.502000px;}
.x60_c01386{left:200.776500px;}
.x2e_c01386{left:205.332000px;}
.x85_c01386{left:206.683380px;}
.xc_c01386{left:209.085000px;}
.xba_c01386{left:211.813345px;}
.x29_c01386{left:216.645282px;}
.x7d_c01386{left:217.771590px;}
.x73_c01386{left:218.839428px;}
.xcc_c01386{left:227.286417px;}
.xd5_c01386{left:228.625152px;}
.x4a_c01386{left:235.757490px;}
.x3f_c01386{left:240.876600px;}
.xa_c01386{left:243.336000px;}
.x4_c01386{left:244.428000px;}
.xa5_c01386{left:245.991837px;}
.x2f_c01386{left:248.844000px;}
.xcf_c01386{left:250.105929px;}
.xd_c01386{left:253.119000px;}
.x61_c01386{left:254.634000px;}
.x57_c01386{left:255.645000px;}
.x94_c01386{left:258.869156px;}
.xd6_c01386{left:260.042919px;}
.x1e_c01386{left:262.654500px;}
.x15_c01386{left:264.540000px;}
.xbd_c01386{left:265.935000px;}
.xd9_c01386{left:268.928218px;}
.x39_c01386{left:270.822000px;}
.x62_c01386{left:278.124000px;}
.x2a_c01386{left:280.625976px;}
.x74_c01386{left:284.478234px;}
.x95_c01386{left:293.422347px;}
.x6c_c01386{left:296.952000px;}
.x5_c01386{left:299.062500px;}
.x9d_c01386{left:301.773000px;}
.x8c_c01386{left:303.059790px;}
.x3a_c01386{left:304.263000px;}
.x1f_c01386{left:306.955500px;}
.xe_c01386{left:309.258000px;}
.x40_c01386{left:316.382895px;}
.xc7_c01386{left:318.018000px;}
.xb3_c01386{left:321.775500px;}
.xa6_c01386{left:323.985099px;}
.xd7_c01386{left:325.831353px;}
.x86_c01386{left:327.445020px;}
.x16_c01386{left:328.834500px;}
.xc1_c01386{left:329.970045px;}
.x9_c01386{left:331.355556px;}
.x4b_c01386{left:332.588175px;}
.xda_c01386{left:334.636084px;}
.xbe_c01386{left:338.943000px;}
.x20_c01386{left:340.137000px;}
.x8d_c01386{left:347.382312px;}
.x2b_c01386{left:348.713586px;}
.x1_c01386{left:350.190000px;}
.xc2_c01386{left:351.770370px;}
.xb4_c01386{left:354.471000px;}
.x9e_c01386{left:356.677500px;}
.x6_c01386{left:364.714500px;}
.xd0_c01386{left:371.631282px;}
.x2_c01386{left:372.870000px;}
.xb_c01386{left:374.760000px;}
.x63_c01386{left:375.940500px;}
.xd8_c01386{left:379.878896px;}
.x75_c01386{left:382.966506px;}
.xdb_c01386{left:389.297751px;}
.x96_c01386{left:390.348716px;}
.x4c_c01386{left:392.220030px;}
.x7_c01386{left:396.847500px;}
.x58_c01386{left:399.168000px;}
.x3b_c01386{left:401.754000px;}
.x2c_c01386{left:403.037574px;}
.x64_c01386{left:408.292500px;}
.xb5_c01386{left:410.091000px;}
.x7e_c01386{left:414.414090px;}
.xc3_c01386{left:416.839935px;}
.x3_c01386{left:418.230000px;}
.x4d_c01386{left:419.993505px;}
.xa7_c01386{left:422.140427px;}
.x8e_c01386{left:423.572028px;}
.x9f_c01386{left:433.450500px;}
.x21_c01386{left:437.142000px;}
.x41_c01386{left:442.670235px;}
.x87_c01386{left:446.832660px;}
.xc4_c01386{left:448.860990px;}
.x4e_c01386{left:453.047475px;}
.xd1_c01386{left:457.699128px;}
.xbf_c01386{left:461.137500px;}
.x8_c01386{left:462.432000px;}
.xa8_c01386{left:465.580188px;}
.x2d_c01386{left:467.261268px;}
.x22_c01386{left:469.738500px;}
.x6d_c01386{left:472.728000px;}
.x59_c01386{left:474.427500px;}
.xa0_c01386{left:476.664000px;}
.x30_c01386{left:478.690500px;}
.x4f_c01386{left:490.442850px;}
.x42_c01386{left:492.461190px;}
.x6e_c01386{left:493.908000px;}
.xc0_c01386{left:496.000500px;}
.x88_c01386{left:501.387648px;}
.x23_c01386{left:502.419000px;}
.x76_c01386{left:503.629866px;}
.xbb_c01386{left:506.278898px;}
.xb6_c01386{left:507.606000px;}
.x97_c01386{left:509.520303px;}
.x31_c01386{left:511.626000px;}
.xf_c01386{left:515.280000px;}
.x7f_c01386{left:523.797090px;}
.x17_c01386{left:536.805000px;}
.x65_c01386{left:539.802000px;}
.x5a_c01386{left:541.407000px;}
.xa1_c01386{left:542.739000px;}
.x3c_c01386{left:544.437000px;}
.x10_c01386{left:547.479000px;}
.x50_c01386{left:555.932745px;}
.x43_c01386{left:558.491130px;}
.xa9_c01386{left:563.113016px;}
.x32_c01386{left:565.657500px;}
.x18_c01386{left:570.841500px;}
.xb7_c01386{left:572.941500px;}
.xdc_c01386{left:575.779794px;}
.x3d_c01386{left:577.020000px;}
.xd2_c01386{left:578.229477px;}
.x51_c01386{left:583.836765px;}
.xaa_c01386{left:585.529668px;}
.x24_c01386{left:589.941000px;}
.x11_c01386{left:591.952500px;}
.x66_c01386{left:593.784000px;}
.x80_c01386{left:601.587090px;}
.xc8_c01386{left:603.252000px;}
.xbc_c01386{left:606.198183px;}
.x5b_c01386{left:616.468500px;}
.x52_c01386{left:617.547780px;}
.x98_c01386{left:619.235712px;}
.x77_c01386{left:622.937226px;}
.x67_c01386{left:626.689562px;}
.xab_c01386{left:628.114386px;}
.x33_c01386{left:631.287000px;}
.xdd_c01386{left:639.383914px;}
.x44_c01386{left:640.635510px;}
.xd3_c01386{left:643.513128px;}
.x19_c01386{left:645.130500px;}
.x53_c01386{left:649.428660px;}
.x3e_c01386{left:653.452500px;}
.x78_c01386{left:657.748692px;}
.x34_c01386{left:663.142500px;}
.x5c_c01386{left:670.798500px;}
.x99_c01386{left:673.952558px;}
.x90_c01386{left:674.990514px;}
.x25_c01386{left:677.679000px;}
.x1a_c01386{left:679.653000px;}
.xac_c01386{left:683.489996px;}
.x54_c01386{left:686.948535px;}
.x12_c01386{left:701.247000px;}
.x5d_c01386{left:704.128500px;}
.xa2_c01386{left:706.407000px;}
.xc9_c01386{left:711.285000px;}
.x68_c01386{left:713.978685px;}
.x9a_c01386{left:717.091250px;}
.x35_c01386{left:719.319000px;}
.x79_c01386{left:720.979956px;}
.x6f_c01386{left:722.899500px;}
.xcd_c01386{left:729.318026px;}
.x45_c01386{left:738.487830px;}
.x91_c01386{left:740.543895px;}
.x81_c01386{left:742.278090px;}
.xd4_c01386{left:752.521510px;}
.x26_c01386{left:753.873000px;}
.xca_c01386{left:755.040000px;}
.x82_c01386{left:764.208090px;}
.x46_c01386{left:770.127165px;}
.x1b_c01386{left:776.668887px;}
.x69_c01386{left:778.854744px;}
.xa3_c01386{left:783.423000px;}
.x6a_c01386{left:835.893648px;}
.x70_c01386{left:837.340500px;}
.x83_c01386{left:839.415090px;}
@media print{
.v0_c01386{vertical-align:0.000000pt;}
.ls0_c01386{letter-spacing:0.000000pt;}
.ws0_c01386{word-spacing:0.000000pt;}
.fs13_c01386{font-size:16.000000pt;}
.fs12_c01386{font-size:21.333333pt;}
.fs2_c01386{font-size:26.677118pt;}
.fs4_c01386{font-size:32.000000pt;}
.fs3_c01386{font-size:32.012542pt;}
.fs10_c01386{font-size:42.651667pt;}
.fs8_c01386{font-size:63.973018pt;}
.fsf_c01386{font-size:63.977500pt;}
.fs6_c01386{font-size:64.023324pt;}
.fs1_c01386{font-size:64.025083pt;}
.fs18_c01386{font-size:64.028794pt;}
.fs19_c01386{font-size:64.030745pt;}
.fs1b_c01386{font-size:69.301779pt;}
.fs7_c01386{font-size:69.304103pt;}
.fs5_c01386{font-size:69.333333pt;}
.fsa_c01386{font-size:69.358601pt;}
.fs9_c01386{font-size:69.360507pt;}
.fs17_c01386{font-size:69.362482pt;}
.fsb_c01386{font-size:69.364526pt;}
.fs15_c01386{font-size:74.632686pt;}
.fs14_c01386{font-size:74.666667pt;}
.fse_c01386{font-size:74.688168pt;}
.fsc_c01386{font-size:74.700259pt;}
.fsd_c01386{font-size:80.029155pt;}
.fs16_c01386{font-size:85.294498pt;}
.fs0_c01386{font-size:85.333333pt;}
.fs1a_c01386{font-size:101.382012pt;}
.fs11_c01386{font-size:117.379319pt;}
.y0_c01386{bottom:0.000000pt;}
.y128_c01386{bottom:64.062239pt;}
.y127_c01386{bottom:66.043171pt;}
.y126_c01386{bottom:70.487779pt;}
.y125_c01386{bottom:71.849483pt;}
.y124_c01386{bottom:73.551839pt;}
.y123_c01386{bottom:75.598543pt;}
.y122_c01386{bottom:78.271019pt;}
.y121_c01386{bottom:99.052851pt;}
.y120_c01386{bottom:100.362335pt;}
.y11f_c01386{bottom:101.336759pt;}
.y11e_c01386{bottom:102.921551pt;}
.y11d_c01386{bottom:104.196935pt;}
.y11c_c01386{bottom:105.794091pt;}
.y11b_c01386{bottom:107.736295pt;}
.y11a_c01386{bottom:109.934667pt;}
.y119_c01386{bottom:136.264781pt;}
.y118_c01386{bottom:137.420989pt;}
.y117_c01386{bottom:138.605877pt;}
.y116_c01386{bottom:139.724405pt;}
.y115_c01386{bottom:156.669641pt;}
.y114_c01386{bottom:158.872281pt;}
.y113_c01386{bottom:159.870421pt;}
.y112_c01386{bottom:161.787325pt;}
.y111_c01386{bottom:162.767821pt;}
.y110_c01386{bottom:165.326421pt;}
.y10f_c01386{bottom:166.596833pt;}
.y10e_c01386{bottom:167.853605pt;}
.y10d_c01386{bottom:169.486313pt;}
.y10c_c01386{bottom:171.421917pt;}
.y10b_c01386{bottom:173.301333pt;}
.y109_c01386{bottom:190.005356pt;}
.y108_c01386{bottom:202.946259pt;}
.y107_c01386{bottom:207.841767pt;}
.y106_c01386{bottom:220.250291pt;}
.y105_c01386{bottom:221.455984pt;}
.y104_c01386{bottom:222.371145pt;}
.y103_c01386{bottom:224.432893pt;}
.y102_c01386{bottom:225.669173pt;}
.y101_c01386{bottom:227.446713pt;}
.y100_c01386{bottom:231.375447pt;}
.yff_c01386{bottom:232.292675pt;}
.y10a_c01386{bottom:233.520000pt;}
.yfe_c01386{bottom:234.099479pt;}
.yfd_c01386{bottom:235.858377pt;}
.yfc_c01386{bottom:239.992000pt;}
.yfb_c01386{bottom:260.687373pt;}
.yfa_c01386{bottom:261.569293pt;}
.yf9_c01386{bottom:263.361867pt;}
.yf8_c01386{bottom:263.963227pt;}
.yf7_c01386{bottom:266.072747pt;}
.yf6_c01386{bottom:267.837880pt;}
.yf5_c01386{bottom:290.895947pt;}
.yf4_c01386{bottom:291.825627pt;}
.ydb_c01386{bottom:292.320000pt;}
.yf3_c01386{bottom:294.093027pt;}
.yf2_c01386{bottom:295.084147pt;}
.yf1_c01386{bottom:297.031027pt;}
.yf0_c01386{bottom:299.050667pt;}
.yda_c01386{bottom:301.920000pt;}
.yef_c01386{bottom:318.826923pt;}
.yee_c01386{bottom:319.644308pt;}
.yed_c01386{bottom:321.225137pt;}
.yec_c01386{bottom:322.275672pt;}
.yeb_c01386{bottom:324.369008pt;}
.yea_c01386{bottom:325.411655pt;}
.ye9_c01386{bottom:327.503869pt;}
.ye8_c01386{bottom:328.292699pt;}
.ye7_c01386{bottom:329.081141pt;}
.ye6_c01386{bottom:330.111743pt;}
.ye5_c01386{bottom:331.436376pt;}
.ye4_c01386{bottom:348.627880pt;}
.ye3_c01386{bottom:351.153316pt;}
.ye2_c01386{bottom:351.988361pt;}
.ye1_c01386{bottom:352.837520pt;}
.ye0_c01386{bottom:355.351240pt;}
.ydf_c01386{bottom:356.785000pt;}
.yde_c01386{bottom:357.627817pt;}
.ydd_c01386{bottom:359.325052pt;}
.ydc_c01386{bottom:360.970667pt;}
.yd7_c01386{bottom:380.070604pt;}
.yd9_c01386{bottom:380.880000pt;}
.yd6_c01386{bottom:381.448689pt;}
.yd5_c01386{bottom:382.509064pt;}
.yd4_c01386{bottom:383.066899pt;}
.yd3_c01386{bottom:385.494339pt;}
.yd8_c01386{bottom:386.400000pt;}
.yd2_c01386{bottom:386.575420pt;}
.yd1_c01386{bottom:389.018907pt;}
.yd0_c01386{bottom:390.140569pt;}
.ycf_c01386{bottom:390.960008pt;}
.yce_c01386{bottom:393.905861pt;}
.ycd_c01386{bottom:395.033131pt;}
.ycc_c01386{bottom:408.463243pt;}
.ycb_c01386{bottom:410.448544pt;}
.yca_c01386{bottom:411.576799pt;}
.yc9_c01386{bottom:412.709191pt;}
.yc8_c01386{bottom:414.667541pt;}
.yc7_c01386{bottom:415.516893pt;}
.yc6_c01386{bottom:416.370808pt;}
.yc5_c01386{bottom:417.484756pt;}
.yc4_c01386{bottom:419.463793pt;}
.yc3_c01386{bottom:420.879109pt;}
.yc2_c01386{bottom:423.636545pt;}
.yc1_c01386{bottom:424.555072pt;}
.yc0_c01386{bottom:426.489333pt;}
.ybf_c01386{bottom:441.256025pt;}
.ybe_c01386{bottom:442.445353pt;}
.ybd_c01386{bottom:443.369033pt;}
.ybc_c01386{bottom:443.954645pt;}
.ybb_c01386{bottom:446.981501pt;}
.yba_c01386{bottom:449.352601pt;}
.yb9_c01386{bottom:450.268681pt;}
.yb8_c01386{bottom:452.942685pt;}
.yb7_c01386{bottom:453.895921pt;}
.yb6_c01386{bottom:455.964393pt;}
.yb5_c01386{bottom:456.887061pt;}
.yb4_c01386{bottom:458.673353pt;}
.yb3_c01386{bottom:472.326253pt;}
.yb2_c01386{bottom:474.251077pt;}
.yb1_c01386{bottom:478.093333pt;}
.yad_c01386{bottom:480.303744pt;}
.yac_c01386{bottom:482.336128pt;}
.yab_c01386{bottom:483.517995pt;}
.yaa_c01386{bottom:484.382363pt;}
.ya9_c01386{bottom:486.377285pt;}
.ya8_c01386{bottom:487.879936pt;}
.ya7_c01386{bottom:489.322736pt;}
.yb0_c01386{bottom:502.553333pt;}
.ya6_c01386{bottom:505.927909pt;}
.ya5_c01386{bottom:509.193083pt;}
.ya4_c01386{bottom:511.539653pt;}
.ya3_c01386{bottom:512.945504pt;}
.ya2_c01386{bottom:516.023680pt;}
.ya1_c01386{bottom:519.136053pt;}
.ya0_c01386{bottom:521.391712pt;}
.y9f_c01386{bottom:522.209237pt;}
.yaf_c01386{bottom:531.600000pt;}
.y9e_c01386{bottom:533.751851pt;}
.y9d_c01386{bottom:535.623669pt;}
.y9c_c01386{bottom:536.169483pt;}
.y9b_c01386{bottom:537.795461pt;}
.y9a_c01386{bottom:539.671125pt;}
.y99_c01386{bottom:541.607232pt;}
.y98_c01386{bottom:542.420613pt;}
.y97_c01386{bottom:544.329653pt;}
.y96_c01386{bottom:546.481659pt;}
.y95_c01386{bottom:549.223867pt;}
.y94_c01386{bottom:550.018021pt;}
.y93_c01386{bottom:551.354592pt;}
.yae_c01386{bottom:552.240000pt;}
.y92_c01386{bottom:552.461637pt;}
.y91_c01386{bottom:567.210885pt;}
.y90_c01386{bottom:568.021440pt;}
.y8f_c01386{bottom:569.539152pt;}
.y8e_c01386{bottom:570.374880pt;}
.y8d_c01386{bottom:571.114304pt;}
.y8c_c01386{bottom:571.915600pt;}
.y8b_c01386{bottom:573.237557pt;}
.y8a_c01386{bottom:576.133984pt;}
.y89_c01386{bottom:578.497179pt;}
.y88_c01386{bottom:579.269307pt;}
.y87_c01386{bottom:580.073477pt;}
.y86_c01386{bottom:582.394651pt;}
.y85_c01386{bottom:583.198112pt;}
.y84_c01386{bottom:596.325797pt;}
.y83_c01386{bottom:599.174107pt;}
.y82_c01386{bottom:600.251136pt;}
.y81_c01386{bottom:602.442304pt;}
.y80_c01386{bottom:603.784475pt;}
.y7f_c01386{bottom:604.873451pt;}
.y7e_c01386{bottom:605.400597pt;}
.y7d_c01386{bottom:609.775467pt;}
.y7c_c01386{bottom:610.560848pt;}
.y7b_c01386{bottom:612.250667pt;}
.y7a_c01386{bottom:645.281656pt;}
.y79_c01386{bottom:658.260736pt;}
.y78_c01386{bottom:660.087808pt;}
.y77_c01386{bottom:662.165920pt;}
.y76_c01386{bottom:664.961968pt;}
.y75_c01386{bottom:666.016000pt;}
.y74_c01386{bottom:666.763040pt;}
.y73_c01386{bottom:668.400192pt;}
.y72_c01386{bottom:669.568576pt;}
.y71_c01386{bottom:670.258752pt;}
.y70_c01386{bottom:671.661216pt;}
.y6f_c01386{bottom:672.345504pt;}
.y6e_c01386{bottom:672.846624pt;}
.y6d_c01386{bottom:673.995584pt;}
.y6c_c01386{bottom:674.454592pt;}
.y6b_c01386{bottom:675.620416pt;}
.y6a_c01386{bottom:676.328000pt;}
.y69_c01386{bottom:694.770621pt;}
.y68_c01386{bottom:695.570541pt;}
.y67_c01386{bottom:696.874461pt;}
.y66_c01386{bottom:698.675937pt;}
.y65_c01386{bottom:700.283445pt;}
.y64_c01386{bottom:701.067777pt;}
.y63_c01386{bottom:702.089673pt;}
.y62_c01386{bottom:702.899745pt;}
.y61_c01386{bottom:705.534225pt;}
.y60_c01386{bottom:707.092197pt;}
.y5f_c01386{bottom:708.645417pt;}
.y5e_c01386{bottom:709.449333pt;}
.y5d_c01386{bottom:725.612133pt;}
.y5c_c01386{bottom:726.512573pt;}
.y5b_c01386{bottom:727.277320pt;}
.y5a_c01386{bottom:728.086867pt;}
.y59_c01386{bottom:728.756240pt;}
.y58_c01386{bottom:730.327813pt;}
.y57_c01386{bottom:731.224933pt;}
.y56_c01386{bottom:732.018293pt;}
.y55_c01386{bottom:732.685520pt;}
.y54_c01386{bottom:734.116893pt;}
.y53_c01386{bottom:736.441480pt;}
.y52_c01386{bottom:737.478373pt;}
.y51_c01386{bottom:738.294587pt;}
.y50_c01386{bottom:739.926973pt;}
.y4f_c01386{bottom:756.242240pt;}
.y4e_c01386{bottom:757.001880pt;}
.y4d_c01386{bottom:758.801200pt;}
.y4c_c01386{bottom:759.349707pt;}
.y4b_c01386{bottom:761.321360pt;}
.y4a_c01386{bottom:762.906000pt;}
.y49_c01386{bottom:764.101640pt;}
.y48_c01386{bottom:767.133000pt;}
.y47_c01386{bottom:768.944987pt;}
.y46_c01386{bottom:787.164760pt;}
.y45_c01386{bottom:789.865000pt;}
.y44_c01386{bottom:791.903200pt;}
.y43_c01386{bottom:792.772080pt;}
.y42_c01386{bottom:794.546160pt;}
.y41_c01386{bottom:796.576960pt;}
.y40_c01386{bottom:799.176720pt;}
.y3f_c01386{bottom:800.068480pt;}
.y3e_c01386{bottom:801.821600pt;}
.y3d_c01386{bottom:802.228560pt;}
.y3c_c01386{bottom:803.867200pt;}
.y3b_c01386{bottom:804.728000pt;}
.y3a_c01386{bottom:819.753645pt;}
.y39_c01386{bottom:821.101881pt;}
.y38_c01386{bottom:821.866413pt;}
.y37_c01386{bottom:823.441521pt;}
.y36_c01386{bottom:824.738277pt;}
.y35_c01386{bottom:825.528729pt;}
.y34_c01386{bottom:828.653061pt;}
.y33_c01386{bottom:831.045045pt;}
.y32_c01386{bottom:832.089333pt;}
.y31_c01386{bottom:856.909723pt;}
.y30_c01386{bottom:858.565557pt;}
.y2f_c01386{bottom:859.965659pt;}
.y2e_c01386{bottom:861.720331pt;}
.y2d_c01386{bottom:863.370117pt;}
.y2c_c01386{bottom:864.999195pt;}
.y2b_c01386{bottom:865.603152pt;}
.y2a_c01386{bottom:866.399435pt;}
.y29_c01386{bottom:881.062117pt;}
.y28_c01386{bottom:882.958501pt;}
.y27_c01386{bottom:885.142203pt;}
.y26_c01386{bottom:887.320528pt;}
.y25_c01386{bottom:888.133909pt;}
.y24_c01386{bottom:888.945200pt;}
.y23_c01386{bottom:891.359547pt;}
.y22_c01386{bottom:892.185397pt;}
.y21_c01386{bottom:893.288000pt;}
.y20_c01386{bottom:895.596019pt;}
.y1f_c01386{bottom:896.400952pt;}
.y1e_c01386{bottom:897.392293pt;}
.y1d_c01386{bottom:912.439696pt;}
.y1c_c01386{bottom:915.374667pt;}
.y1b_c01386{bottom:915.953900pt;}
.y1a_c01386{bottom:917.736836pt;}
.y19_c01386{bottom:918.553712pt;}
.y18_c01386{bottom:921.418052pt;}
.y17_c01386{bottom:922.486172pt;}
.y16_c01386{bottom:923.545004pt;}
.y15_c01386{bottom:925.088072pt;}
.y14_c01386{bottom:928.238468pt;}
.y13_c01386{bottom:929.048000pt;}
.y12_c01386{bottom:945.490667pt;}
.y11_c01386{bottom:948.502667pt;}
.y10_c01386{bottom:949.728000pt;}
.yf_c01386{bottom:950.614667pt;}
.ye_c01386{bottom:953.308000pt;}
.yd_c01386{bottom:956.292000pt;}
.yc_c01386{bottom:957.838667pt;}
.yb_c01386{bottom:959.052000pt;}
.ya_c01386{bottom:980.869333pt;}
.y9_c01386{bottom:1003.641253pt;}
.y7_c01386{bottom:1005.601931pt;}
.y8_c01386{bottom:1008.005333pt;}
.y6_c01386{bottom:1015.792789pt;}
.y5_c01386{bottom:1017.425115pt;}
.y4_c01386{bottom:1018.224869pt;}
.y3_c01386{bottom:1019.858875pt;}
.y2_c01386{bottom:1021.218667pt;}
.y1_c01386{bottom:1068.705333pt;}
.h15_c01386{height:16.000000pt;}
.h14_c01386{height:21.333333pt;}
.h4_c01386{height:26.677118pt;}
.h6_c01386{height:32.000000pt;}
.h5_c01386{height:32.012542pt;}
.h12_c01386{height:42.651667pt;}
.ha_c01386{height:63.973018pt;}
.h11_c01386{height:63.977500pt;}
.h8_c01386{height:64.023324pt;}
.h3_c01386{height:64.025083pt;}
.h1a_c01386{height:64.028794pt;}
.h1b_c01386{height:64.030745pt;}
.h1d_c01386{height:69.301779pt;}
.h9_c01386{height:69.304103pt;}
.h7_c01386{height:69.333333pt;}
.hc_c01386{height:69.358601pt;}
.hb_c01386{height:69.360507pt;}
.h19_c01386{height:69.362482pt;}
.hd_c01386{height:69.364526pt;}
.h17_c01386{height:74.632686pt;}
.h16_c01386{height:74.666667pt;}
.h10_c01386{height:74.688168pt;}
.he_c01386{height:74.700259pt;}
.hf_c01386{height:80.029155pt;}
.h18_c01386{height:85.294498pt;}
.h2_c01386{height:85.333333pt;}
.h1c_c01386{height:101.382012pt;}
.h13_c01386{height:117.379319pt;}
.h1_c01386{height:1111.333333pt;}
.h0_c01386{height:1111.440000pt;}
.w0_c01386{width:781.200000pt;}
.w1_c01386{width:781.333333pt;}
.x0_c01386{left:0.000000pt;}
.xad_c01386{left:21.600000pt;}
.x8f_c01386{left:23.520000pt;}
.xae_c01386{left:24.720000pt;}
.xaf_c01386{left:25.920000pt;}
.xb1_c01386{left:27.840000pt;}
.xb0_c01386{left:29.040000pt;}
.xce_c01386{left:30.240000pt;}
.xb2_c01386{left:31.440000pt;}
.xcb_c01386{left:33.220580pt;}
.xc5_c01386{left:34.317333pt;}
.xb8_c01386{left:71.869135pt;}
.xa4_c01386{left:73.191196pt;}
.x9b_c01386{left:74.786667pt;}
.x89_c01386{left:75.894640pt;}
.x7a_c01386{left:77.940080pt;}
.x71_c01386{left:78.831392pt;}
.x47_c01386{left:80.478613pt;}
.x55_c01386{left:82.236000pt;}
.x36_c01386{left:85.413333pt;}
.x13_c01386{left:88.482667pt;}
.x84_c01386{left:105.923392pt;}
.x72_c01386{left:108.574880pt;}
.x5e_c01386{left:110.766667pt;}
.x56_c01386{left:112.010667pt;}
.x37_c01386{left:114.106667pt;}
.x27_c01386{left:115.586416pt;}
.x7b_c01386{left:117.477413pt;}
.x14_c01386{left:118.465333pt;}
.xb9_c01386{left:120.905291pt;}
.x8a_c01386{left:123.991952pt;}
.x1c_c01386{left:126.109903pt;}
.x92_c01386{left:133.702696pt;}
.x28_c01386{left:136.393819pt;}
.x48_c01386{left:140.941387pt;}
.x1d_c01386{left:157.048707pt;}
.x5f_c01386{left:159.342667pt;}
.x93_c01386{left:163.450900pt;}
.x7c_c01386{left:165.212080pt;}
.xc6_c01386{left:167.660000pt;}
.x38_c01386{left:168.728000pt;}
.x49_c01386{left:171.173440pt;}
.x9c_c01386{left:173.158667pt;}
.x8b_c01386{left:174.083819pt;}
.x6b_c01386{left:175.557333pt;}
.x60_c01386{left:178.468000pt;}
.x2e_c01386{left:182.517333pt;}
.x85_c01386{left:183.718560pt;}
.xc_c01386{left:185.853333pt;}
.xba_c01386{left:188.278529pt;}
.x29_c01386{left:192.573584pt;}
.x7d_c01386{left:193.574747pt;}
.x73_c01386{left:194.523936pt;}
.xcc_c01386{left:202.032371pt;}
.xd5_c01386{left:203.222357pt;}
.x4a_c01386{left:209.562213pt;}
.x3f_c01386{left:214.112533pt;}
.xa_c01386{left:216.298667pt;}
.x4_c01386{left:217.269333pt;}
.xa5_c01386{left:218.659411pt;}
.x2f_c01386{left:221.194667pt;}
.xcf_c01386{left:222.316381pt;}
.xd_c01386{left:224.994667pt;}
.x61_c01386{left:226.341333pt;}
.x57_c01386{left:227.240000pt;}
.x94_c01386{left:230.105916pt;}
.xd6_c01386{left:231.149261pt;}
.x1e_c01386{left:233.470667pt;}
.x15_c01386{left:235.146667pt;}
.xbd_c01386{left:236.386667pt;}
.xd9_c01386{left:239.047305pt;}
.x39_c01386{left:240.730667pt;}
.x62_c01386{left:247.221333pt;}
.x2a_c01386{left:249.445312pt;}
.x74_c01386{left:252.869541pt;}
.x95_c01386{left:260.819864pt;}
.x6c_c01386{left:263.957333pt;}
.x5_c01386{left:265.833333pt;}
.x9d_c01386{left:268.242667pt;}
.x8c_c01386{left:269.386480pt;}
.x3a_c01386{left:270.456000pt;}
.x1f_c01386{left:272.849333pt;}
.xe_c01386{left:274.896000pt;}
.x40_c01386{left:281.229240pt;}
.xc7_c01386{left:282.682667pt;}
.xb3_c01386{left:286.022667pt;}
.xa6_c01386{left:287.986755pt;}
.xd7_c01386{left:289.627869pt;}
.x86_c01386{left:291.062240pt;}
.x16_c01386{left:292.297333pt;}
.xc1_c01386{left:293.306707pt;}
.x9_c01386{left:294.538272pt;}
.x4b_c01386{left:295.633933pt;}
.xda_c01386{left:297.454297pt;}
.xbe_c01386{left:301.282667pt;}
.x20_c01386{left:302.344000pt;}
.x8d_c01386{left:308.784277pt;}
.x2b_c01386{left:309.967632pt;}
.x1_c01386{left:311.280000pt;}
.xc2_c01386{left:312.684773pt;}
.xb4_c01386{left:315.085333pt;}
.x9e_c01386{left:317.046667pt;}
.x6_c01386{left:324.190667pt;}
.xd0_c01386{left:330.338917pt;}
.x2_c01386{left:331.440000pt;}
.xb_c01386{left:333.120000pt;}
.x63_c01386{left:334.169333pt;}
.xd8_c01386{left:337.670129pt;}
.x75_c01386{left:340.414672pt;}
.xdb_c01386{left:346.042445pt;}
.x96_c01386{left:346.976636pt;}
.x4c_c01386{left:348.640027pt;}
.x7_c01386{left:352.753333pt;}
.x58_c01386{left:354.816000pt;}
.x3b_c01386{left:357.114667pt;}
.x2c_c01386{left:358.255621pt;}
.x64_c01386{left:362.926667pt;}
.xb5_c01386{left:364.525333pt;}
.x7e_c01386{left:368.368080pt;}
.xc3_c01386{left:370.524387pt;}
.x3_c01386{left:371.760000pt;}
.x4d_c01386{left:373.327560pt;}
.xa7_c01386{left:375.235935pt;}
.x8e_c01386{left:376.508469pt;}
.x9f_c01386{left:385.289333pt;}
.x21_c01386{left:388.570667pt;}
.x41_c01386{left:393.484653pt;}
.x87_c01386{left:397.184587pt;}
.xc4_c01386{left:398.987547pt;}
.x4e_c01386{left:402.708867pt;}
.xd1_c01386{left:406.843669pt;}
.xbf_c01386{left:409.900000pt;}
.x8_c01386{left:411.050667pt;}
.xa8_c01386{left:413.849056pt;}
.x2d_c01386{left:415.343349pt;}
.x22_c01386{left:417.545333pt;}
.x6d_c01386{left:420.202667pt;}
.x59_c01386{left:421.713333pt;}
.xa0_c01386{left:423.701333pt;}
.x30_c01386{left:425.502667pt;}
.x4f_c01386{left:435.949200pt;}
.x42_c01386{left:437.743280pt;}
.x6e_c01386{left:439.029333pt;}
.xc0_c01386{left:440.889333pt;}
.x88_c01386{left:445.677909pt;}
.x23_c01386{left:446.594667pt;}
.x76_c01386{left:447.670992pt;}
.xbb_c01386{left:450.025687pt;}
.xb6_c01386{left:451.205333pt;}
.x97_c01386{left:452.906936pt;}
.x31_c01386{left:454.778667pt;}
.xf_c01386{left:458.026667pt;}
.x7f_c01386{left:465.597413pt;}
.x17_c01386{left:477.160000pt;}
.x65_c01386{left:479.824000pt;}
.x5a_c01386{left:481.250667pt;}
.xa1_c01386{left:482.434667pt;}
.x3c_c01386{left:483.944000pt;}
.x10_c01386{left:486.648000pt;}
.x50_c01386{left:494.162440pt;}
.x43_c01386{left:496.436560pt;}
.xa9_c01386{left:500.544903pt;}
.x32_c01386{left:502.806667pt;}
.x18_c01386{left:507.414667pt;}
.xb7_c01386{left:509.281333pt;}
.xdc_c01386{left:511.804261pt;}
.x3d_c01386{left:512.906667pt;}
.xd2_c01386{left:513.981757pt;}
.x51_c01386{left:518.966013pt;}
.xaa_c01386{left:520.470816pt;}
.x24_c01386{left:524.392000pt;}
.x11_c01386{left:526.180000pt;}
.x66_c01386{left:527.808000pt;}
.x80_c01386{left:534.744080pt;}
.xc8_c01386{left:536.224000pt;}
.xbc_c01386{left:538.842829pt;}
.x5b_c01386{left:547.972000pt;}
.x52_c01386{left:548.931360pt;}
.x98_c01386{left:550.431744pt;}
.x77_c01386{left:553.721979pt;}
.x67_c01386{left:557.057388pt;}
.xab_c01386{left:558.323899pt;}
.x33_c01386{left:561.144000pt;}
.xdd_c01386{left:568.341257pt;}
.x44_c01386{left:569.453787pt;}
.xd3_c01386{left:572.011669pt;}
.x19_c01386{left:573.449333pt;}
.x53_c01386{left:577.269920pt;}
.x3e_c01386{left:580.846667pt;}
.x78_c01386{left:584.665504pt;}
.x34_c01386{left:589.460000pt;}
.x5c_c01386{left:596.265333pt;}
.x99_c01386{left:599.068940pt;}
.x90_c01386{left:599.991568pt;}
.x25_c01386{left:602.381333pt;}
.x1a_c01386{left:604.136000pt;}
.xac_c01386{left:607.546663pt;}
.x54_c01386{left:610.620920pt;}
.x12_c01386{left:623.330667pt;}
.x5d_c01386{left:625.892000pt;}
.xa2_c01386{left:627.917333pt;}
.xc9_c01386{left:632.253333pt;}
.x68_c01386{left:634.647720pt;}
.x9a_c01386{left:637.414444pt;}
.x35_c01386{left:639.394667pt;}
.x79_c01386{left:640.871072pt;}
.x6f_c01386{left:642.577333pt;}
.xcd_c01386{left:648.282689pt;}
.x45_c01386{left:656.433627pt;}
.x91_c01386{left:658.261240pt;}
.x81_c01386{left:659.802747pt;}
.xd4_c01386{left:668.908009pt;}
.x26_c01386{left:670.109333pt;}
.xca_c01386{left:671.146667pt;}
.x82_c01386{left:679.296080pt;}
.x46_c01386{left:684.557480pt;}
.x1b_c01386{left:690.372344pt;}
.x69_c01386{left:692.315328pt;}
.xa3_c01386{left:696.376000pt;}
.x6a_c01386{left:743.016576pt;}
.x70_c01386{left:744.302667pt;}
.x83_c01386{left:746.146747pt;}
}





/* 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_c01387 {
    display:none;
  }
  .loading-indicator_c01387.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01387 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_c01387 { 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_c01387" -> "#page-container .classname_c01387")
 */
.pf_c01387 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01387 { /* 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_c01387.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01387 { /* 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_c01387 { /* 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_c01387 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01387 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01387 {overflow:visible;}
  }
}
.c_c01387 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01387 { /* 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_c01387:after { /* webkit #35443 */
  content: '';
}
.t_c01387:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01387 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 */
}
.__c01387 { /* 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_c01387 { /* info for Javascript */
  display:none;
}
.l_c01387 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01387 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01387 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01387: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_c01387 {
    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_c01387.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01387.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_c01387 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01387{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01387;src:url('chunks/assets/font_6b78c10203a447bee2208e8d.woff2')format("woff");}.ff1_c01387{font-family:ff1_c01387;line-height:1.000000;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;}
.m6_c01387{transform:matrix(0.109200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109200,0.000000,0.000000,0.250000,0,0);}
.m4_c01387{transform:matrix(0.147735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147735,0.000000,0.000000,0.250000,0,0);}
.m3_c01387{transform:matrix(0.162250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162250,0.000000,0.000000,0.250000,0,0);}
.m5_c01387{transform:matrix(0.229455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229455,0.000000,0.000000,0.250000,0,0);}
.m1_c01387{transform:matrix(0.261725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261725,0.000000,0.000000,0.250000,0,0);}
.m2_c01387{transform:matrix(0.337085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337085,0.000000,0.000000,0.250000,0,0);}
.m0_c01387{transform:matrix(0.785175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.785175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.785175,0.000000,0.000000,0.250000,0,0);}
.v0_c01387{vertical-align:0.000000px;}
.ls0_c01387{letter-spacing:0.000000px;}
.sc__c01387{text-shadow:none;}
.sc0_c01387{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__c01387{-webkit-text-stroke:0px transparent;}
.sc0_c01387{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01387{word-spacing:0.000000px;}
.fc0_c01387{color:transparent;}
.fs0_c01387{font-size:18.000000px;}
.fs1_c01387{font-size:24.000000px;}
.y0_c01387{bottom:0.000000px;}
.y4_c01387{bottom:217.080000px;}
.y3_c01387{bottom:219.240000px;}
.y2_c01387{bottom:228.420000px;}
.y1_c01387{bottom:340.200000px;}
.h2_c01387{height:18.000000px;}
.h3_c01387{height:24.000000px;}
.h1_c01387{height:1250.250000px;}
.h0_c01387{height:1250.370000px;}
.w0_c01387{width:878.850000px;}
.w1_c01387{width:879.000000px;}
.x0_c01387{left:0.000000px;}
.x1_c01387{left:698.760000px;}
.x2_c01387{left:710.910000px;}
.x3_c01387{left:717.660000px;}
.x4_c01387{left:875.340000px;}
.x5_c01387{left:877.500000px;}
@media print{
.v0_c01387{vertical-align:0.000000pt;}
.ls0_c01387{letter-spacing:0.000000pt;}
.ws0_c01387{word-spacing:0.000000pt;}
.fs0_c01387{font-size:16.000000pt;}
.fs1_c01387{font-size:21.333333pt;}
.y0_c01387{bottom:0.000000pt;}
.y4_c01387{bottom:192.960000pt;}
.y3_c01387{bottom:194.880000pt;}
.y2_c01387{bottom:203.040000pt;}
.y1_c01387{bottom:302.400000pt;}
.h2_c01387{height:16.000000pt;}
.h3_c01387{height:21.333333pt;}
.h1_c01387{height:1111.333333pt;}
.h0_c01387{height:1111.440000pt;}
.w0_c01387{width:781.200000pt;}
.w1_c01387{width:781.333333pt;}
.x0_c01387{left:0.000000pt;}
.x1_c01387{left:621.120000pt;}
.x2_c01387{left:631.920000pt;}
.x3_c01387{left:637.920000pt;}
.x4_c01387{left:778.080000pt;}
.x5_c01387{left:780.000000pt;}
}





/* 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_c01388 {
    display:none;
  }
  .loading-indicator_c01388.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01388 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_c01388 { 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_c01388" -> "#page-container .classname_c01388")
 */
.pf_c01388 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01388 { /* 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_c01388.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01388 { /* 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_c01388 { /* 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_c01388 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01388 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01388 {overflow:visible;}
  }
}
.c_c01388 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01388 { /* 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_c01388:after { /* webkit #35443 */
  content: '';
}
.t_c01388:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01388 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 */
}
.__c01388 { /* 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_c01388 { /* info for Javascript */
  display:none;
}
.l_c01388 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01388 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01388 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01388: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_c01388 {
    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_c01388.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01388.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_c01388 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01388{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01388;src:url('chunks/assets/font_c605e72f209fc835e906f064.woff2')format("woff");}.ff1_c01388{font-family:ff1_c01388;line-height:1.000000;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;}
.m106_c01388{transform:matrix(0.006525,0.000078,-0.003000,0.249982,0,0);-ms-transform:matrix(0.006525,0.000078,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.006525,0.000078,-0.003000,0.249982,0,0);}
.m88_c01388{transform:matrix(0.115327,0.001384,-0.003000,0.249982,0,0);-ms-transform:matrix(0.115327,0.001384,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.115327,0.001384,-0.003000,0.249982,0,0);}
.m120_c01388{transform:matrix(0.127351,0.001528,-0.003000,0.249982,0,0);-ms-transform:matrix(0.127351,0.001528,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.127351,0.001528,-0.003000,0.249982,0,0);}
.m107_c01388{transform:matrix(0.136980,0.001644,-0.003000,0.249982,0,0);-ms-transform:matrix(0.136980,0.001644,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.136980,0.001644,-0.003000,0.249982,0,0);}
.md0_c01388{transform:matrix(0.142189,0.002986,-0.005249,0.249945,0,0);-ms-transform:matrix(0.142189,0.002986,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.142189,0.002986,-0.005249,0.249945,0,0);}
.m61_c01388{transform:matrix(0.148163,0.001482,-0.002500,0.249988,0,0);-ms-transform:matrix(0.148163,0.001482,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.148163,0.001482,-0.002500,0.249988,0,0);}
.m86_c01388{transform:matrix(0.151784,0.001821,-0.003000,0.249982,0,0);-ms-transform:matrix(0.151784,0.001821,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.151784,0.001821,-0.003000,0.249982,0,0);}
.m84_c01388{transform:matrix(0.151874,0.001822,-0.003000,0.249982,0,0);-ms-transform:matrix(0.151874,0.001822,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.151874,0.001822,-0.003000,0.249982,0,0);}
.m87_c01388{transform:matrix(0.152694,0.001832,-0.003000,0.249982,0,0);-ms-transform:matrix(0.152694,0.001832,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.152694,0.001832,-0.003000,0.249982,0,0);}
.mf5_c01388{transform:matrix(0.153196,0.003217,-0.005249,0.249945,0,0);-ms-transform:matrix(0.153196,0.003217,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.153196,0.003217,-0.005249,0.249945,0,0);}
.m94_c01388{transform:matrix(0.153224,0.001839,-0.003000,0.249982,0,0);-ms-transform:matrix(0.153224,0.001839,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.153224,0.001839,-0.003000,0.249982,0,0);}
.m89_c01388{transform:matrix(0.154429,0.001853,-0.003000,0.249982,0,0);-ms-transform:matrix(0.154429,0.001853,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.154429,0.001853,-0.003000,0.249982,0,0);}
.mf3_c01388{transform:matrix(0.155096,0.003257,-0.005249,0.249945,0,0);-ms-transform:matrix(0.155096,0.003257,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.155096,0.003257,-0.005249,0.249945,0,0);}
.m85_c01388{transform:matrix(0.155614,0.001867,-0.003000,0.249982,0,0);-ms-transform:matrix(0.155614,0.001867,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.155614,0.001867,-0.003000,0.249982,0,0);}
.mf8_c01388{transform:matrix(0.157180,0.003301,-0.005249,0.249945,0,0);-ms-transform:matrix(0.157180,0.003301,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.157180,0.003301,-0.005249,0.249945,0,0);}
.m8a_c01388{transform:matrix(0.161108,0.001933,-0.003000,0.249982,0,0);-ms-transform:matrix(0.161108,0.001933,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.161108,0.001933,-0.003000,0.249982,0,0);}
.mf2_c01388{transform:matrix(0.165933,0.003485,-0.005249,0.249945,0,0);-ms-transform:matrix(0.165933,0.003485,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.165933,0.003485,-0.005249,0.249945,0,0);}
.mf6_c01388{transform:matrix(0.167698,0.003522,-0.005249,0.249945,0,0);-ms-transform:matrix(0.167698,0.003522,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.167698,0.003522,-0.005249,0.249945,0,0);}
.mfa_c01388{transform:matrix(0.169678,0.003563,-0.005249,0.249945,0,0);-ms-transform:matrix(0.169678,0.003563,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.169678,0.003563,-0.005249,0.249945,0,0);}
.m8b_c01388{transform:matrix(0.169843,0.002038,-0.003000,0.249982,0,0);-ms-transform:matrix(0.169843,0.002038,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.169843,0.002038,-0.003000,0.249982,0,0);}
.m90_c01388{transform:matrix(0.171343,0.002056,-0.003000,0.249982,0,0);-ms-transform:matrix(0.171343,0.002056,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.171343,0.002056,-0.003000,0.249982,0,0);}
.m8e_c01388{transform:matrix(0.171493,0.002058,-0.003000,0.249982,0,0);-ms-transform:matrix(0.171493,0.002058,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.171493,0.002058,-0.003000,0.249982,0,0);}
.mf4_c01388{transform:matrix(0.171957,0.003611,-0.005249,0.249945,0,0);-ms-transform:matrix(0.171957,0.003611,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.171957,0.003611,-0.005249,0.249945,0,0);}
.m93_c01388{transform:matrix(0.172238,0.002067,-0.003000,0.249982,0,0);-ms-transform:matrix(0.172238,0.002067,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.172238,0.002067,-0.003000,0.249982,0,0);}
.m96_c01388{transform:matrix(0.172768,0.002073,-0.003000,0.249982,0,0);-ms-transform:matrix(0.172768,0.002073,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.172768,0.002073,-0.003000,0.249982,0,0);}
.m98_c01388{transform:matrix(0.173772,0.002085,-0.003000,0.249982,0,0);-ms-transform:matrix(0.173772,0.002085,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.173772,0.002085,-0.003000,0.249982,0,0);}
.mf7_c01388{transform:matrix(0.175226,0.003680,-0.005249,0.249945,0,0);-ms-transform:matrix(0.175226,0.003680,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.175226,0.003680,-0.005249,0.249945,0,0);}
.mf1_c01388{transform:matrix(0.176006,0.003696,-0.005249,0.249945,0,0);-ms-transform:matrix(0.176006,0.003696,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.176006,0.003696,-0.005249,0.249945,0,0);}
.m8d_c01388{transform:matrix(0.177612,0.002131,-0.003000,0.249982,0,0);-ms-transform:matrix(0.177612,0.002131,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.177612,0.002131,-0.003000,0.249982,0,0);}
.m97_c01388{transform:matrix(0.180132,0.002162,-0.003000,0.249982,0,0);-ms-transform:matrix(0.180132,0.002162,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.180132,0.002162,-0.003000,0.249982,0,0);}
.mfb_c01388{transform:matrix(0.182435,0.003831,-0.005249,0.249945,0,0);-ms-transform:matrix(0.182435,0.003831,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.182435,0.003831,-0.005249,0.249945,0,0);}
.m81_c01388{transform:matrix(0.182612,0.002191,-0.003000,0.249982,0,0);-ms-transform:matrix(0.182612,0.002191,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.182612,0.002191,-0.003000,0.249982,0,0);}
.m8f_c01388{transform:matrix(0.186812,0.002242,-0.003000,0.249982,0,0);-ms-transform:matrix(0.186812,0.002242,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.186812,0.002242,-0.003000,0.249982,0,0);}
.m95_c01388{transform:matrix(0.186997,0.002244,-0.003000,0.249982,0,0);-ms-transform:matrix(0.186997,0.002244,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.186997,0.002244,-0.003000,0.249982,0,0);}
.m7f_c01388{transform:matrix(0.187806,0.002254,-0.003000,0.249982,0,0);-ms-transform:matrix(0.187806,0.002254,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.187806,0.002254,-0.003000,0.249982,0,0);}
.m11a_c01388{transform:matrix(0.187976,0.002256,-0.003000,0.249982,0,0);-ms-transform:matrix(0.187976,0.002256,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.187976,0.002256,-0.003000,0.249982,0,0);}
.m91_c01388{transform:matrix(0.188226,0.002259,-0.003000,0.249982,0,0);-ms-transform:matrix(0.188226,0.002259,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.188226,0.002259,-0.003000,0.249982,0,0);}
.m8c_c01388{transform:matrix(0.188906,0.002267,-0.003000,0.249982,0,0);-ms-transform:matrix(0.188906,0.002267,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.188906,0.002267,-0.003000,0.249982,0,0);}
.m7a_c01388{transform:matrix(0.190746,0.002289,-0.003000,0.249982,0,0);-ms-transform:matrix(0.190746,0.002289,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.190746,0.002289,-0.003000,0.249982,0,0);}
.mc8_c01388{transform:matrix(0.190923,0.004009,-0.005249,0.249945,0,0);-ms-transform:matrix(0.190923,0.004009,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.190923,0.004009,-0.005249,0.249945,0,0);}
.mce_c01388{transform:matrix(0.191048,0.004012,-0.005249,0.249945,0,0);-ms-transform:matrix(0.191048,0.004012,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.191048,0.004012,-0.005249,0.249945,0,0);}
.m7d_c01388{transform:matrix(0.191176,0.002294,-0.003000,0.249982,0,0);-ms-transform:matrix(0.191176,0.002294,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.191176,0.002294,-0.003000,0.249982,0,0);}
.m55_c01388{transform:matrix(0.191715,0.001917,-0.002500,0.249988,0,0);-ms-transform:matrix(0.191715,0.001917,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.191715,0.001917,-0.002500,0.249988,0,0);}
.mc5_c01388{transform:matrix(0.193557,0.004065,-0.005249,0.249945,0,0);-ms-transform:matrix(0.193557,0.004065,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.193557,0.004065,-0.005249,0.249945,0,0);}
.m56_c01388{transform:matrix(0.193610,0.001936,-0.002500,0.249988,0,0);-ms-transform:matrix(0.193610,0.001936,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.193610,0.001936,-0.002500,0.249988,0,0);}
.ma6_c01388{transform:matrix(0.193827,0.004070,-0.005249,0.249945,0,0);-ms-transform:matrix(0.193827,0.004070,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.193827,0.004070,-0.005249,0.249945,0,0);}
.mfd_c01388{transform:matrix(0.194387,0.004082,-0.005249,0.249945,0,0);-ms-transform:matrix(0.194387,0.004082,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.194387,0.004082,-0.005249,0.249945,0,0);}
.m127_c01388{transform:matrix(0.195251,0.002343,-0.003000,0.249982,0,0);-ms-transform:matrix(0.195251,0.002343,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.195251,0.002343,-0.003000,0.249982,0,0);}
.m83_c01388{transform:matrix(0.195941,0.002351,-0.003000,0.249982,0,0);-ms-transform:matrix(0.195941,0.002351,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.195941,0.002351,-0.003000,0.249982,0,0);}
.mf9_c01388{transform:matrix(0.196472,0.004126,-0.005249,0.249945,0,0);-ms-transform:matrix(0.196472,0.004126,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.196472,0.004126,-0.005249,0.249945,0,0);}
.mab_c01388{transform:matrix(0.197157,0.004140,-0.005249,0.249945,0,0);-ms-transform:matrix(0.197157,0.004140,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.197157,0.004140,-0.005249,0.249945,0,0);}
.m6f_c01388{transform:matrix(0.197836,0.002770,-0.003500,0.249976,0,0);-ms-transform:matrix(0.197836,0.002770,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.197836,0.002770,-0.003500,0.249976,0,0);}
.m105_c01388{transform:matrix(0.198226,0.002379,-0.003000,0.249982,0,0);-ms-transform:matrix(0.198226,0.002379,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.198226,0.002379,-0.003000,0.249982,0,0);}
.m82_c01388{transform:matrix(0.198491,0.002382,-0.003000,0.249982,0,0);-ms-transform:matrix(0.198491,0.002382,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.198491,0.002382,-0.003000,0.249982,0,0);}
.mcf_c01388{transform:matrix(0.198776,0.004174,-0.005249,0.249945,0,0);-ms-transform:matrix(0.198776,0.004174,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.198776,0.004174,-0.005249,0.249945,0,0);}
.ma7_c01388{transform:matrix(0.199416,0.004188,-0.005249,0.249945,0,0);-ms-transform:matrix(0.199416,0.004188,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.199416,0.004188,-0.005249,0.249945,0,0);}
.mee_c01388{transform:matrix(0.200016,0.004200,-0.005249,0.249945,0,0);-ms-transform:matrix(0.200016,0.004200,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.200016,0.004200,-0.005249,0.249945,0,0);}
.mdf_c01388{transform:matrix(0.200171,0.004204,-0.005249,0.249945,0,0);-ms-transform:matrix(0.200171,0.004204,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.200171,0.004204,-0.005249,0.249945,0,0);}
.mac_c01388{transform:matrix(0.201361,0.004229,-0.005249,0.249945,0,0);-ms-transform:matrix(0.201361,0.004229,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.201361,0.004229,-0.005249,0.249945,0,0);}
.mbd_c01388{transform:matrix(0.201561,0.004233,-0.005249,0.249945,0,0);-ms-transform:matrix(0.201561,0.004233,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.201561,0.004233,-0.005249,0.249945,0,0);}
.m125_c01388{transform:matrix(0.201745,0.002421,-0.003000,0.249982,0,0);-ms-transform:matrix(0.201745,0.002421,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.201745,0.002421,-0.003000,0.249982,0,0);}
.m7b_c01388{transform:matrix(0.201930,0.002423,-0.003000,0.249982,0,0);-ms-transform:matrix(0.201930,0.002423,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.201930,0.002423,-0.003000,0.249982,0,0);}
.m4a_c01388{transform:matrix(0.202755,0.002028,-0.002500,0.249988,0,0);-ms-transform:matrix(0.202755,0.002028,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.202755,0.002028,-0.002500,0.249988,0,0);}
.m7e_c01388{transform:matrix(0.202900,0.002435,-0.003000,0.249982,0,0);-ms-transform:matrix(0.202900,0.002435,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.202900,0.002435,-0.003000,0.249982,0,0);}
.m1_c01388{transform:matrix(0.203065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203065,0.000000,0.000000,0.250000,0,0);}
.m27_c01388{transform:matrix(0.203158,0.002235,-0.002750,0.249985,0,0);-ms-transform:matrix(0.203158,0.002235,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.203158,0.002235,-0.002750,0.249985,0,0);}
.md1_c01388{transform:matrix(0.204295,0.004290,-0.005249,0.249945,0,0);-ms-transform:matrix(0.204295,0.004290,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.204295,0.004290,-0.005249,0.249945,0,0);}
.me5_c01388{transform:matrix(0.204560,0.004296,-0.005249,0.249945,0,0);-ms-transform:matrix(0.204560,0.004296,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.204560,0.004296,-0.005249,0.249945,0,0);}
.mda_c01388{transform:matrix(0.205065,0.004306,-0.005249,0.249945,0,0);-ms-transform:matrix(0.205065,0.004306,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.205065,0.004306,-0.005249,0.249945,0,0);}
.mc7_c01388{transform:matrix(0.205240,0.004310,-0.005249,0.249945,0,0);-ms-transform:matrix(0.205240,0.004310,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.205240,0.004310,-0.005249,0.249945,0,0);}
.mf_c01388{transform:matrix(0.205748,0.002263,-0.002750,0.249985,0,0);-ms-transform:matrix(0.205748,0.002263,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.205748,0.002263,-0.002750,0.249985,0,0);}
.mae_c01388{transform:matrix(0.205965,0.004325,-0.005249,0.249945,0,0);-ms-transform:matrix(0.205965,0.004325,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.205965,0.004325,-0.005249,0.249945,0,0);}
.m59_c01388{transform:matrix(0.206030,0.002060,-0.002500,0.249988,0,0);-ms-transform:matrix(0.206030,0.002060,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.206030,0.002060,-0.002500,0.249988,0,0);}
.mff_c01388{transform:matrix(0.206884,0.004345,-0.005249,0.249945,0,0);-ms-transform:matrix(0.206884,0.004345,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.206884,0.004345,-0.005249,0.249945,0,0);}
.mc6_c01388{transform:matrix(0.207139,0.004350,-0.005249,0.249945,0,0);-ms-transform:matrix(0.207139,0.004350,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.207139,0.004350,-0.005249,0.249945,0,0);}
.m8_c01388{transform:matrix(0.207257,0.002280,-0.002750,0.249985,0,0);-ms-transform:matrix(0.207257,0.002280,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.207257,0.002280,-0.002750,0.249985,0,0);}
.m126_c01388{transform:matrix(0.207450,0.002489,-0.003000,0.249982,0,0);-ms-transform:matrix(0.207450,0.002489,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.207450,0.002489,-0.003000,0.249982,0,0);}
.m9a_c01388{transform:matrix(0.208029,0.004369,-0.005249,0.249945,0,0);-ms-transform:matrix(0.208029,0.004369,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.208029,0.004369,-0.005249,0.249945,0,0);}
.ma3_c01388{transform:matrix(0.208194,0.004372,-0.005249,0.249945,0,0);-ms-transform:matrix(0.208194,0.004372,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.208194,0.004372,-0.005249,0.249945,0,0);}
.mcd_c01388{transform:matrix(0.208559,0.004380,-0.005249,0.249945,0,0);-ms-transform:matrix(0.208559,0.004380,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.208559,0.004380,-0.005249,0.249945,0,0);}
.mcb_c01388{transform:matrix(0.208939,0.004388,-0.005249,0.249945,0,0);-ms-transform:matrix(0.208939,0.004388,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.208939,0.004388,-0.005249,0.249945,0,0);}
.mad_c01388{transform:matrix(0.209019,0.004389,-0.005249,0.249945,0,0);-ms-transform:matrix(0.209019,0.004389,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.209019,0.004389,-0.005249,0.249945,0,0);}
.m74_c01388{transform:matrix(0.209190,0.003556,-0.004249,0.249964,0,0);-ms-transform:matrix(0.209190,0.003556,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.209190,0.003556,-0.004249,0.249964,0,0);}
.m123_c01388{transform:matrix(0.209310,0.002512,-0.003000,0.249982,0,0);-ms-transform:matrix(0.209310,0.002512,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.209310,0.002512,-0.003000,0.249982,0,0);}
.maa_c01388{transform:matrix(0.209649,0.004403,-0.005249,0.249945,0,0);-ms-transform:matrix(0.209649,0.004403,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.209649,0.004403,-0.005249,0.249945,0,0);}
.m80_c01388{transform:matrix(0.209770,0.002517,-0.003000,0.249982,0,0);-ms-transform:matrix(0.209770,0.002517,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.209770,0.002517,-0.003000,0.249982,0,0);}
.m124_c01388{transform:matrix(0.209835,0.002518,-0.003000,0.249982,0,0);-ms-transform:matrix(0.209835,0.002518,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.209835,0.002518,-0.003000,0.249982,0,0);}
.ma_c01388{transform:matrix(0.210382,0.002314,-0.002750,0.249985,0,0);-ms-transform:matrix(0.210382,0.002314,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.210382,0.002314,-0.002750,0.249985,0,0);}
.mfe_c01388{transform:matrix(0.210559,0.004422,-0.005249,0.249945,0,0);-ms-transform:matrix(0.210559,0.004422,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.210559,0.004422,-0.005249,0.249945,0,0);}
.m58_c01388{transform:matrix(0.210679,0.002107,-0.002500,0.249988,0,0);-ms-transform:matrix(0.210679,0.002107,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.210679,0.002107,-0.002500,0.249988,0,0);}
.mfc_c01388{transform:matrix(0.210744,0.004426,-0.005249,0.249945,0,0);-ms-transform:matrix(0.210744,0.004426,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.210744,0.004426,-0.005249,0.249945,0,0);}
.m100_c01388{transform:matrix(0.211238,0.004436,-0.005249,0.249945,0,0);-ms-transform:matrix(0.211238,0.004436,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.211238,0.004436,-0.005249,0.249945,0,0);}
.m11_c01388{transform:matrix(0.211299,0.002113,-0.002500,0.249988,0,0);-ms-transform:matrix(0.211299,0.002113,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.211299,0.002113,-0.002500,0.249988,0,0);}
.m7c_c01388{transform:matrix(0.211395,0.002537,-0.003000,0.249982,0,0);-ms-transform:matrix(0.211395,0.002537,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.211395,0.002537,-0.003000,0.249982,0,0);}
.ma4_c01388{transform:matrix(0.211768,0.004447,-0.005249,0.249945,0,0);-ms-transform:matrix(0.211768,0.004447,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.211768,0.004447,-0.005249,0.249945,0,0);}
.m9f_c01388{transform:matrix(0.212658,0.004466,-0.005249,0.249945,0,0);-ms-transform:matrix(0.212658,0.004466,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.212658,0.004466,-0.005249,0.249945,0,0);}
.mc4_c01388{transform:matrix(0.212663,0.004466,-0.005249,0.249945,0,0);-ms-transform:matrix(0.212663,0.004466,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.212663,0.004466,-0.005249,0.249945,0,0);}
.md6_c01388{transform:matrix(0.212788,0.004469,-0.005249,0.249945,0,0);-ms-transform:matrix(0.212788,0.004469,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.212788,0.004469,-0.005249,0.249945,0,0);}
.me0_c01388{transform:matrix(0.212968,0.004472,-0.005249,0.249945,0,0);-ms-transform:matrix(0.212968,0.004472,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.212968,0.004472,-0.005249,0.249945,0,0);}
.ma8_c01388{transform:matrix(0.213303,0.004479,-0.005249,0.249945,0,0);-ms-transform:matrix(0.213303,0.004479,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.213303,0.004479,-0.005249,0.249945,0,0);}
.me6_c01388{transform:matrix(0.213728,0.004488,-0.005249,0.249945,0,0);-ms-transform:matrix(0.213728,0.004488,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.213728,0.004488,-0.005249,0.249945,0,0);}
.m11b_c01388{transform:matrix(0.213970,0.002568,-0.003000,0.249982,0,0);-ms-transform:matrix(0.213970,0.002568,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.213970,0.002568,-0.003000,0.249982,0,0);}
.m103_c01388{transform:matrix(0.214238,0.004499,-0.005249,0.249945,0,0);-ms-transform:matrix(0.214238,0.004499,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.214238,0.004499,-0.005249,0.249945,0,0);}
.m121_c01388{transform:matrix(0.214420,0.002573,-0.003000,0.249982,0,0);-ms-transform:matrix(0.214420,0.002573,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.214420,0.002573,-0.003000,0.249982,0,0);}
.mc_c01388{transform:matrix(0.214542,0.002360,-0.002750,0.249985,0,0);-ms-transform:matrix(0.214542,0.002360,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.214542,0.002360,-0.002750,0.249985,0,0);}
.m6b_c01388{transform:matrix(0.214629,0.003005,-0.003500,0.249976,0,0);-ms-transform:matrix(0.214629,0.003005,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.214629,0.003005,-0.003500,0.249976,0,0);}
.m16_c01388{transform:matrix(0.215064,0.002151,-0.002500,0.249988,0,0);-ms-transform:matrix(0.215064,0.002151,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.215064,0.002151,-0.002500,0.249988,0,0);}
.m73_c01388{transform:matrix(0.215069,0.003656,-0.004249,0.249964,0,0);-ms-transform:matrix(0.215069,0.003656,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.215069,0.003656,-0.004249,0.249964,0,0);}
.m11d_c01388{transform:matrix(0.215135,0.002582,-0.003000,0.249982,0,0);-ms-transform:matrix(0.215135,0.002582,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.215135,0.002582,-0.003000,0.249982,0,0);}
.m64_c01388{transform:matrix(0.215139,0.002151,-0.002500,0.249988,0,0);-ms-transform:matrix(0.215139,0.002151,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.215139,0.002151,-0.002500,0.249988,0,0);}
.m6d_c01388{transform:matrix(0.215269,0.003014,-0.003500,0.249976,0,0);-ms-transform:matrix(0.215269,0.003014,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.215269,0.003014,-0.003500,0.249976,0,0);}
.mb2_c01388{transform:matrix(0.215667,0.004529,-0.005249,0.249945,0,0);-ms-transform:matrix(0.215667,0.004529,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.215667,0.004529,-0.005249,0.249945,0,0);}
.m9c_c01388{transform:matrix(0.215872,0.004533,-0.005249,0.249945,0,0);-ms-transform:matrix(0.215872,0.004533,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.215872,0.004533,-0.005249,0.249945,0,0);}
.m69_c01388{transform:matrix(0.216379,0.003029,-0.003500,0.249976,0,0);-ms-transform:matrix(0.216379,0.003029,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.216379,0.003029,-0.003500,0.249976,0,0);}
.mcc_c01388{transform:matrix(0.216492,0.004546,-0.005249,0.249945,0,0);-ms-transform:matrix(0.216492,0.004546,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.216492,0.004546,-0.005249,0.249945,0,0);}
.md3_c01388{transform:matrix(0.216692,0.004551,-0.005249,0.249945,0,0);-ms-transform:matrix(0.216692,0.004551,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.216692,0.004551,-0.005249,0.249945,0,0);}
.m71_c01388{transform:matrix(0.216929,0.003037,-0.003500,0.249976,0,0);-ms-transform:matrix(0.216929,0.003037,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.216929,0.003037,-0.003500,0.249976,0,0);}
.me4_c01388{transform:matrix(0.218157,0.004581,-0.005249,0.249945,0,0);-ms-transform:matrix(0.218157,0.004581,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.218157,0.004581,-0.005249,0.249945,0,0);}
.m5e_c01388{transform:matrix(0.218369,0.002184,-0.002500,0.249988,0,0);-ms-transform:matrix(0.218369,0.002184,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.218369,0.002184,-0.002500,0.249988,0,0);}
.m38_c01388{transform:matrix(0.218604,0.002186,-0.002500,0.249988,0,0);-ms-transform:matrix(0.218604,0.002186,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.218604,0.002186,-0.002500,0.249988,0,0);}
.m99_c01388{transform:matrix(0.218812,0.004595,-0.005249,0.249945,0,0);-ms-transform:matrix(0.218812,0.004595,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.218812,0.004595,-0.005249,0.249945,0,0);}
.maf_c01388{transform:matrix(0.219277,0.004605,-0.005249,0.249945,0,0);-ms-transform:matrix(0.219277,0.004605,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.219277,0.004605,-0.005249,0.249945,0,0);}
.mc1_c01388{transform:matrix(0.219642,0.004612,-0.005249,0.249945,0,0);-ms-transform:matrix(0.219642,0.004612,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.219642,0.004612,-0.005249,0.249945,0,0);}
.mdb_c01388{transform:matrix(0.219862,0.004617,-0.005249,0.249945,0,0);-ms-transform:matrix(0.219862,0.004617,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.219862,0.004617,-0.005249,0.249945,0,0);}
.m6_c01388{transform:matrix(0.219897,0.002419,-0.002750,0.249985,0,0);-ms-transform:matrix(0.219897,0.002419,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.219897,0.002419,-0.002750,0.249985,0,0);}
.m5c_c01388{transform:matrix(0.219954,0.002200,-0.002500,0.249988,0,0);-ms-transform:matrix(0.219954,0.002200,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.219954,0.002200,-0.002500,0.249988,0,0);}
.mdd_c01388{transform:matrix(0.219962,0.004619,-0.005249,0.249945,0,0);-ms-transform:matrix(0.219962,0.004619,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.219962,0.004619,-0.005249,0.249945,0,0);}
.md5_c01388{transform:matrix(0.220126,0.004623,-0.005249,0.249945,0,0);-ms-transform:matrix(0.220126,0.004623,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.220126,0.004623,-0.005249,0.249945,0,0);}
.m114_c01388{transform:matrix(0.220194,0.002642,-0.003000,0.249982,0,0);-ms-transform:matrix(0.220194,0.002642,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.220194,0.002642,-0.003000,0.249982,0,0);}
.m122_c01388{transform:matrix(0.220269,0.002643,-0.003000,0.249982,0,0);-ms-transform:matrix(0.220269,0.002643,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.220269,0.002643,-0.003000,0.249982,0,0);}
.m101_c01388{transform:matrix(0.220326,0.004627,-0.005249,0.249945,0,0);-ms-transform:matrix(0.220326,0.004627,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.220326,0.004627,-0.005249,0.249945,0,0);}
.mef_c01388{transform:matrix(0.220511,0.004631,-0.005249,0.249945,0,0);-ms-transform:matrix(0.220511,0.004631,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.220511,0.004631,-0.005249,0.249945,0,0);}
.md2_c01388{transform:matrix(0.220521,0.004631,-0.005249,0.249945,0,0);-ms-transform:matrix(0.220521,0.004631,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.220521,0.004631,-0.005249,0.249945,0,0);}
.m13_c01388{transform:matrix(0.220549,0.002205,-0.002500,0.249988,0,0);-ms-transform:matrix(0.220549,0.002205,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.220549,0.002205,-0.002500,0.249988,0,0);}
.m51_c01388{transform:matrix(0.220684,0.002207,-0.002500,0.249988,0,0);-ms-transform:matrix(0.220684,0.002207,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.220684,0.002207,-0.002500,0.249988,0,0);}
.ma9_c01388{transform:matrix(0.221171,0.004645,-0.005249,0.249945,0,0);-ms-transform:matrix(0.221171,0.004645,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.221171,0.004645,-0.005249,0.249945,0,0);}
.ma5_c01388{transform:matrix(0.221331,0.004648,-0.005249,0.249945,0,0);-ms-transform:matrix(0.221331,0.004648,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.221331,0.004648,-0.005249,0.249945,0,0);}
.mea_c01388{transform:matrix(0.221741,0.004657,-0.005249,0.249945,0,0);-ms-transform:matrix(0.221741,0.004657,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.221741,0.004657,-0.005249,0.249945,0,0);}
.md_c01388{transform:matrix(0.222132,0.002443,-0.002750,0.249985,0,0);-ms-transform:matrix(0.222132,0.002443,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.222132,0.002443,-0.002750,0.249985,0,0);}
.meb_c01388{transform:matrix(0.222351,0.004669,-0.005249,0.249945,0,0);-ms-transform:matrix(0.222351,0.004669,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.222351,0.004669,-0.005249,0.249945,0,0);}
.m72_c01388{transform:matrix(0.222423,0.003114,-0.003500,0.249976,0,0);-ms-transform:matrix(0.222423,0.003114,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.222423,0.003114,-0.003500,0.249976,0,0);}
.m76_c01388{transform:matrix(0.222803,0.003788,-0.004249,0.249964,0,0);-ms-transform:matrix(0.222803,0.003788,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.222803,0.003788,-0.004249,0.249964,0,0);}
.m9_c01388{transform:matrix(0.222807,0.002451,-0.002750,0.249985,0,0);-ms-transform:matrix(0.222807,0.002451,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.222807,0.002451,-0.002750,0.249985,0,0);}
.m11f_c01388{transform:matrix(0.222864,0.002674,-0.003000,0.249982,0,0);-ms-transform:matrix(0.222864,0.002674,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.222864,0.002674,-0.003000,0.249982,0,0);}
.m65_c01388{transform:matrix(0.223104,0.002231,-0.002500,0.249988,0,0);-ms-transform:matrix(0.223104,0.002231,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.223104,0.002231,-0.002500,0.249988,0,0);}
.m4f_c01388{transform:matrix(0.223169,0.002232,-0.002500,0.249988,0,0);-ms-transform:matrix(0.223169,0.002232,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.223169,0.002232,-0.002500,0.249988,0,0);}
.m102_c01388{transform:matrix(0.223231,0.004688,-0.005249,0.249945,0,0);-ms-transform:matrix(0.223231,0.004688,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.223231,0.004688,-0.005249,0.249945,0,0);}
.m5_c01388{transform:matrix(0.223586,0.002459,-0.002750,0.249985,0,0);-ms-transform:matrix(0.223586,0.002459,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.223586,0.002459,-0.002750,0.249985,0,0);}
.m15_c01388{transform:matrix(0.223644,0.002236,-0.002500,0.249988,0,0);-ms-transform:matrix(0.223644,0.002236,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.223644,0.002236,-0.002500,0.249988,0,0);}
.m4d_c01388{transform:matrix(0.223734,0.002237,-0.002500,0.249988,0,0);-ms-transform:matrix(0.223734,0.002237,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.223734,0.002237,-0.002500,0.249988,0,0);}
.m10_c01388{transform:matrix(0.224134,0.002241,-0.002500,0.249988,0,0);-ms-transform:matrix(0.224134,0.002241,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.224134,0.002241,-0.002500,0.249988,0,0);}
.m78_c01388{transform:matrix(0.224288,0.003813,-0.004249,0.249964,0,0);-ms-transform:matrix(0.224288,0.003813,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.224288,0.003813,-0.004249,0.249964,0,0);}
.m4_c01388{transform:matrix(0.224431,0.002469,-0.002750,0.249985,0,0);-ms-transform:matrix(0.224431,0.002469,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.224431,0.002469,-0.002750,0.249985,0,0);}
.m77_c01388{transform:matrix(0.225267,0.003830,-0.004249,0.249964,0,0);-ms-transform:matrix(0.225267,0.003830,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.225267,0.003830,-0.004249,0.249964,0,0);}
.m25_c01388{transform:matrix(0.225301,0.002478,-0.002750,0.249985,0,0);-ms-transform:matrix(0.225301,0.002478,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.225301,0.002478,-0.002750,0.249985,0,0);}
.me9_c01388{transform:matrix(0.225525,0.004736,-0.005249,0.249945,0,0);-ms-transform:matrix(0.225525,0.004736,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.225525,0.004736,-0.005249,0.249945,0,0);}
.mc3_c01388{transform:matrix(0.225705,0.004740,-0.005249,0.249945,0,0);-ms-transform:matrix(0.225705,0.004740,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.225705,0.004740,-0.005249,0.249945,0,0);}
.m12_c01388{transform:matrix(0.225909,0.002259,-0.002500,0.249988,0,0);-ms-transform:matrix(0.225909,0.002259,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.225909,0.002259,-0.002500,0.249988,0,0);}
.m10c_c01388{transform:matrix(0.226009,0.002712,-0.003000,0.249982,0,0);-ms-transform:matrix(0.226009,0.002712,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.226009,0.002712,-0.003000,0.249982,0,0);}
.md4_c01388{transform:matrix(0.226415,0.004755,-0.005249,0.249945,0,0);-ms-transform:matrix(0.226415,0.004755,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.226415,0.004755,-0.005249,0.249945,0,0);}
.m5d_c01388{transform:matrix(0.226604,0.002266,-0.002500,0.249988,0,0);-ms-transform:matrix(0.226604,0.002266,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.226604,0.002266,-0.002500,0.249988,0,0);}
.m5a_c01388{transform:matrix(0.226929,0.002269,-0.002500,0.249988,0,0);-ms-transform:matrix(0.226929,0.002269,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.226929,0.002269,-0.002500,0.249988,0,0);}
.m21_c01388{transform:matrix(0.227141,0.002499,-0.002750,0.249985,0,0);-ms-transform:matrix(0.227141,0.002499,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.227141,0.002499,-0.002750,0.249985,0,0);}
.mb5_c01388{transform:matrix(0.227210,0.004771,-0.005249,0.249945,0,0);-ms-transform:matrix(0.227210,0.004771,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.227210,0.004771,-0.005249,0.249945,0,0);}
.m37_c01388{transform:matrix(0.227249,0.002272,-0.002500,0.249988,0,0);-ms-transform:matrix(0.227249,0.002272,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.227249,0.002272,-0.002500,0.249988,0,0);}
.m18_c01388{transform:matrix(0.227499,0.002275,-0.002500,0.249988,0,0);-ms-transform:matrix(0.227499,0.002275,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.227499,0.002275,-0.002500,0.249988,0,0);}
.md8_c01388{transform:matrix(0.227590,0.004779,-0.005249,0.249945,0,0);-ms-transform:matrix(0.227590,0.004779,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.227590,0.004779,-0.005249,0.249945,0,0);}
.me3_c01388{transform:matrix(0.228060,0.004789,-0.005249,0.249945,0,0);-ms-transform:matrix(0.228060,0.004789,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.228060,0.004789,-0.005249,0.249945,0,0);}
.m17_c01388{transform:matrix(0.228159,0.002282,-0.002500,0.249988,0,0);-ms-transform:matrix(0.228159,0.002282,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.228159,0.002282,-0.002500,0.249988,0,0);}
.m115_c01388{transform:matrix(0.228354,0.002740,-0.003000,0.249982,0,0);-ms-transform:matrix(0.228354,0.002740,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.228354,0.002740,-0.003000,0.249982,0,0);}
.m52_c01388{transform:matrix(0.229874,0.002299,-0.002500,0.249988,0,0);-ms-transform:matrix(0.229874,0.002299,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.229874,0.002299,-0.002500,0.249988,0,0);}
.md7_c01388{transform:matrix(0.229929,0.004829,-0.005249,0.249945,0,0);-ms-transform:matrix(0.229929,0.004829,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.229929,0.004829,-0.005249,0.249945,0,0);}
.mb6_c01388{transform:matrix(0.230094,0.004832,-0.005249,0.249945,0,0);-ms-transform:matrix(0.230094,0.004832,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.230094,0.004832,-0.005249,0.249945,0,0);}
.m118_c01388{transform:matrix(0.230118,0.002761,-0.003000,0.249982,0,0);-ms-transform:matrix(0.230118,0.002761,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.230118,0.002761,-0.003000,0.249982,0,0);}
.me_c01388{transform:matrix(0.230311,0.002533,-0.002750,0.249985,0,0);-ms-transform:matrix(0.230311,0.002533,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.230311,0.002533,-0.002750,0.249985,0,0);}
.m108_c01388{transform:matrix(0.230458,0.002766,-0.003000,0.249982,0,0);-ms-transform:matrix(0.230458,0.002766,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.230458,0.002766,-0.003000,0.249982,0,0);}
.md9_c01388{transform:matrix(0.230519,0.004841,-0.005249,0.249945,0,0);-ms-transform:matrix(0.230519,0.004841,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.230519,0.004841,-0.005249,0.249945,0,0);}
.m35_c01388{transform:matrix(0.231148,0.002311,-0.002500,0.249988,0,0);-ms-transform:matrix(0.231148,0.002311,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.231148,0.002311,-0.002500,0.249988,0,0);}
.mde_c01388{transform:matrix(0.231379,0.004859,-0.005249,0.249945,0,0);-ms-transform:matrix(0.231379,0.004859,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.231379,0.004859,-0.005249,0.249945,0,0);}
.m46_c01388{transform:matrix(0.231393,0.002314,-0.002500,0.249988,0,0);-ms-transform:matrix(0.231393,0.002314,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.231393,0.002314,-0.002500,0.249988,0,0);}
.m6a_c01388{transform:matrix(0.231642,0.003243,-0.003500,0.249976,0,0);-ms-transform:matrix(0.231642,0.003243,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.231642,0.003243,-0.003500,0.249976,0,0);}
.m62_c01388{transform:matrix(0.231733,0.002317,-0.002500,0.249988,0,0);-ms-transform:matrix(0.231733,0.002317,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.231733,0.002317,-0.002500,0.249988,0,0);}
.mc2_c01388{transform:matrix(0.231884,0.004870,-0.005249,0.249945,0,0);-ms-transform:matrix(0.231884,0.004870,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.231884,0.004870,-0.005249,0.249945,0,0);}
.m11e_c01388{transform:matrix(0.232103,0.002785,-0.003000,0.249982,0,0);-ms-transform:matrix(0.232103,0.002785,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.232103,0.002785,-0.003000,0.249982,0,0);}
.mf0_c01388{transform:matrix(0.232339,0.004879,-0.005249,0.249945,0,0);-ms-transform:matrix(0.232339,0.004879,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.232339,0.004879,-0.005249,0.249945,0,0);}
.me2_c01388{transform:matrix(0.232414,0.004881,-0.005249,0.249945,0,0);-ms-transform:matrix(0.232414,0.004881,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.232414,0.004881,-0.005249,0.249945,0,0);}
.m6e_c01388{transform:matrix(0.232572,0.003256,-0.003500,0.249976,0,0);-ms-transform:matrix(0.232572,0.003256,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.232572,0.003256,-0.003500,0.249976,0,0);}
.m19_c01388{transform:matrix(0.232988,0.002330,-0.002500,0.249988,0,0);-ms-transform:matrix(0.232988,0.002330,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.232988,0.002330,-0.002500,0.249988,0,0);}
.m57_c01388{transform:matrix(0.233078,0.002331,-0.002500,0.249988,0,0);-ms-transform:matrix(0.233078,0.002331,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.233078,0.002331,-0.002500,0.249988,0,0);}
.m39_c01388{transform:matrix(0.233788,0.002338,-0.002500,0.249988,0,0);-ms-transform:matrix(0.233788,0.002338,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.233788,0.002338,-0.002500,0.249988,0,0);}
.m60_c01388{transform:matrix(0.234018,0.002340,-0.002500,0.249988,0,0);-ms-transform:matrix(0.234018,0.002340,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.234018,0.002340,-0.002500,0.249988,0,0);}
.m116_c01388{transform:matrix(0.234323,0.002812,-0.003000,0.249982,0,0);-ms-transform:matrix(0.234323,0.002812,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.234323,0.002812,-0.003000,0.249982,0,0);}
.me1_c01388{transform:matrix(0.234728,0.004929,-0.005249,0.249945,0,0);-ms-transform:matrix(0.234728,0.004929,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.234728,0.004929,-0.005249,0.249945,0,0);}
.m10e_c01388{transform:matrix(0.234763,0.002817,-0.003000,0.249982,0,0);-ms-transform:matrix(0.234763,0.002817,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.234763,0.002817,-0.003000,0.249982,0,0);}
.m54_c01388{transform:matrix(0.234983,0.002350,-0.002500,0.249988,0,0);-ms-transform:matrix(0.234983,0.002350,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.234983,0.002350,-0.002500,0.249988,0,0);}
.m22_c01388{transform:matrix(0.235076,0.002586,-0.002750,0.249985,0,0);-ms-transform:matrix(0.235076,0.002586,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.235076,0.002586,-0.002750,0.249985,0,0);}
.m104_c01388{transform:matrix(0.235158,0.004938,-0.005249,0.249945,0,0);-ms-transform:matrix(0.235158,0.004938,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.235158,0.004938,-0.005249,0.249945,0,0);}
.m70_c01388{transform:matrix(0.235557,0.003298,-0.003500,0.249976,0,0);-ms-transform:matrix(0.235557,0.003298,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.235557,0.003298,-0.003500,0.249976,0,0);}
.mb_c01388{transform:matrix(0.235611,0.002592,-0.002750,0.249985,0,0);-ms-transform:matrix(0.235611,0.002592,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.235611,0.002592,-0.002750,0.249985,0,0);}
.mca_c01388{transform:matrix(0.235748,0.004951,-0.005249,0.249945,0,0);-ms-transform:matrix(0.235748,0.004951,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.235748,0.004951,-0.005249,0.249945,0,0);}
.med_c01388{transform:matrix(0.236238,0.004961,-0.005249,0.249945,0,0);-ms-transform:matrix(0.236238,0.004961,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.236238,0.004961,-0.005249,0.249945,0,0);}
.m75_c01388{transform:matrix(0.236481,0.004020,-0.004249,0.249964,0,0);-ms-transform:matrix(0.236481,0.004020,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.236481,0.004020,-0.004249,0.249964,0,0);}
.mec_c01388{transform:matrix(0.237023,0.004977,-0.005249,0.249945,0,0);-ms-transform:matrix(0.237023,0.004977,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.237023,0.004977,-0.005249,0.249945,0,0);}
.m32_c01388{transform:matrix(0.237053,0.002371,-0.002500,0.249988,0,0);-ms-transform:matrix(0.237053,0.002371,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.237053,0.002371,-0.002500,0.249988,0,0);}
.mb1_c01388{transform:matrix(0.237208,0.004981,-0.005249,0.249945,0,0);-ms-transform:matrix(0.237208,0.004981,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.237208,0.004981,-0.005249,0.249945,0,0);}
.me7_c01388{transform:matrix(0.237738,0.004992,-0.005249,0.249945,0,0);-ms-transform:matrix(0.237738,0.004992,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.237738,0.004992,-0.005249,0.249945,0,0);}
.mdc_c01388{transform:matrix(0.238337,0.005005,-0.005249,0.249945,0,0);-ms-transform:matrix(0.238337,0.005005,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.238337,0.005005,-0.005249,0.249945,0,0);}
.mba_c01388{transform:matrix(0.238592,0.005010,-0.005249,0.249945,0,0);-ms-transform:matrix(0.238592,0.005010,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.238592,0.005010,-0.005249,0.249945,0,0);}
.m24_c01388{transform:matrix(0.238626,0.002625,-0.002750,0.249985,0,0);-ms-transform:matrix(0.238626,0.002625,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.238626,0.002625,-0.002750,0.249985,0,0);}
.m10a_c01388{transform:matrix(0.238748,0.002865,-0.003000,0.249982,0,0);-ms-transform:matrix(0.238748,0.002865,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.238748,0.002865,-0.003000,0.249982,0,0);}
.m6c_c01388{transform:matrix(0.239777,0.003357,-0.003500,0.249976,0,0);-ms-transform:matrix(0.239777,0.003357,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.239777,0.003357,-0.003500,0.249976,0,0);}
.ma0_c01388{transform:matrix(0.240212,0.005044,-0.005249,0.249945,0,0);-ms-transform:matrix(0.240212,0.005044,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.240212,0.005044,-0.005249,0.249945,0,0);}
.m11c_c01388{transform:matrix(0.240523,0.002886,-0.003000,0.249982,0,0);-ms-transform:matrix(0.240523,0.002886,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.240523,0.002886,-0.003000,0.249982,0,0);}
.m7_c01388{transform:matrix(0.240675,0.002647,-0.002750,0.249985,0,0);-ms-transform:matrix(0.240675,0.002647,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.240675,0.002647,-0.002750,0.249985,0,0);}
.m34_c01388{transform:matrix(0.240848,0.002408,-0.002500,0.249988,0,0);-ms-transform:matrix(0.240848,0.002408,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.240848,0.002408,-0.002500,0.249988,0,0);}
.m109_c01388{transform:matrix(0.241013,0.002892,-0.003000,0.249982,0,0);-ms-transform:matrix(0.241013,0.002892,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.241013,0.002892,-0.003000,0.249982,0,0);}
.mb4_c01388{transform:matrix(0.241242,0.005066,-0.005249,0.249945,0,0);-ms-transform:matrix(0.241242,0.005066,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.241242,0.005066,-0.005249,0.249945,0,0);}
.m111_c01388{transform:matrix(0.241508,0.002898,-0.003000,0.249982,0,0);-ms-transform:matrix(0.241508,0.002898,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.241508,0.002898,-0.003000,0.249982,0,0);}
.m10f_c01388{transform:matrix(0.241533,0.002898,-0.003000,0.249982,0,0);-ms-transform:matrix(0.241533,0.002898,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.241533,0.002898,-0.003000,0.249982,0,0);}
.m5b_c01388{transform:matrix(0.241893,0.002419,-0.002500,0.249988,0,0);-ms-transform:matrix(0.241893,0.002419,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.241893,0.002419,-0.002500,0.249988,0,0);}
.m119_c01388{transform:matrix(0.242353,0.002908,-0.003000,0.249982,0,0);-ms-transform:matrix(0.242353,0.002908,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.242353,0.002908,-0.003000,0.249982,0,0);}
.m53_c01388{transform:matrix(0.242373,0.002424,-0.002500,0.249988,0,0);-ms-transform:matrix(0.242373,0.002424,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.242373,0.002424,-0.002500,0.249988,0,0);}
.m14_c01388{transform:matrix(0.243123,0.002431,-0.002500,0.249988,0,0);-ms-transform:matrix(0.243123,0.002431,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.243123,0.002431,-0.002500,0.249988,0,0);}
.m28_c01388{transform:matrix(0.243785,0.002682,-0.002750,0.249985,0,0);-ms-transform:matrix(0.243785,0.002682,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.243785,0.002682,-0.002750,0.249985,0,0);}
.m2a_c01388{transform:matrix(0.243825,0.002682,-0.002750,0.249985,0,0);-ms-transform:matrix(0.243825,0.002682,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.243825,0.002682,-0.002750,0.249985,0,0);}
.m20_c01388{transform:matrix(0.244410,0.002689,-0.002750,0.249985,0,0);-ms-transform:matrix(0.244410,0.002689,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.244410,0.002689,-0.002750,0.249985,0,0);}
.m1f_c01388{transform:matrix(0.244890,0.002694,-0.002750,0.249985,0,0);-ms-transform:matrix(0.244890,0.002694,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.244890,0.002694,-0.002750,0.249985,0,0);}
.m110_c01388{transform:matrix(0.244972,0.002940,-0.003000,0.249982,0,0);-ms-transform:matrix(0.244972,0.002940,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.244972,0.002940,-0.003000,0.249982,0,0);}
.m29_c01388{transform:matrix(0.245340,0.002699,-0.002750,0.249985,0,0);-ms-transform:matrix(0.245340,0.002699,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.245340,0.002699,-0.002750,0.249985,0,0);}
.m10d_c01388{transform:matrix(0.245417,0.002945,-0.003000,0.249982,0,0);-ms-transform:matrix(0.245417,0.002945,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.245417,0.002945,-0.003000,0.249982,0,0);}
.m1e_c01388{transform:matrix(0.245430,0.002700,-0.002750,0.249985,0,0);-ms-transform:matrix(0.245430,0.002700,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.245430,0.002700,-0.002750,0.249985,0,0);}
.m112_c01388{transform:matrix(0.246097,0.002953,-0.003000,0.249982,0,0);-ms-transform:matrix(0.246097,0.002953,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.246097,0.002953,-0.003000,0.249982,0,0);}
.mb3_c01388{transform:matrix(0.246491,0.005176,-0.005249,0.249945,0,0);-ms-transform:matrix(0.246491,0.005176,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.246491,0.005176,-0.005249,0.249945,0,0);}
.m117_c01388{transform:matrix(0.246562,0.002959,-0.003000,0.249982,0,0);-ms-transform:matrix(0.246562,0.002959,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.246562,0.002959,-0.003000,0.249982,0,0);}
.m44_c01388{transform:matrix(0.246718,0.002467,-0.002500,0.249988,0,0);-ms-transform:matrix(0.246718,0.002467,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.246718,0.002467,-0.002500,0.249988,0,0);}
.mb8_c01388{transform:matrix(0.246921,0.005185,-0.005249,0.249945,0,0);-ms-transform:matrix(0.246921,0.005185,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.246921,0.005185,-0.005249,0.249945,0,0);}
.m26_c01388{transform:matrix(0.246930,0.002716,-0.002750,0.249985,0,0);-ms-transform:matrix(0.246930,0.002716,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.246930,0.002716,-0.002750,0.249985,0,0);}
.mbc_c01388{transform:matrix(0.247445,0.005196,-0.005249,0.249945,0,0);-ms-transform:matrix(0.247445,0.005196,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.247445,0.005196,-0.005249,0.249945,0,0);}
.mbf_c01388{transform:matrix(0.248350,0.005215,-0.005249,0.249945,0,0);-ms-transform:matrix(0.248350,0.005215,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.248350,0.005215,-0.005249,0.249945,0,0);}
.m23_c01388{transform:matrix(0.248885,0.002738,-0.002750,0.249985,0,0);-ms-transform:matrix(0.248885,0.002738,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.248885,0.002738,-0.002750,0.249985,0,0);}
.m9d_c01388{transform:matrix(0.248945,0.005228,-0.005249,0.249945,0,0);-ms-transform:matrix(0.248945,0.005228,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.248945,0.005228,-0.005249,0.249945,0,0);}
.m4e_c01388{transform:matrix(0.249138,0.002491,-0.002500,0.249988,0,0);-ms-transform:matrix(0.249138,0.002491,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.249138,0.002491,-0.002500,0.249988,0,0);}
.m33_c01388{transform:matrix(0.249653,0.002497,-0.002500,0.249988,0,0);-ms-transform:matrix(0.249653,0.002497,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.249653,0.002497,-0.002500,0.249988,0,0);}
.m4b_c01388{transform:matrix(0.250017,0.002500,-0.002500,0.249988,0,0);-ms-transform:matrix(0.250017,0.002500,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.250017,0.002500,-0.002500,0.249988,0,0);}
.m9b_c01388{transform:matrix(0.250080,0.005252,-0.005249,0.249945,0,0);-ms-transform:matrix(0.250080,0.005252,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.250080,0.005252,-0.005249,0.249945,0,0);}
.m42_c01388{transform:matrix(0.250297,0.002503,-0.002500,0.249988,0,0);-ms-transform:matrix(0.250297,0.002503,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.250297,0.002503,-0.002500,0.249988,0,0);}
.m92_c01388{transform:matrix(0.250872,0.003010,-0.003000,0.249982,0,0);-ms-transform:matrix(0.250872,0.003010,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.250872,0.003010,-0.003000,0.249982,0,0);}
.mb7_c01388{transform:matrix(0.251050,0.005272,-0.005249,0.249945,0,0);-ms-transform:matrix(0.251050,0.005272,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.251050,0.005272,-0.005249,0.249945,0,0);}
.m4c_c01388{transform:matrix(0.251757,0.002518,-0.002500,0.249988,0,0);-ms-transform:matrix(0.251757,0.002518,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.251757,0.002518,-0.002500,0.249988,0,0);}
.m113_c01388{transform:matrix(0.251877,0.003023,-0.003000,0.249982,0,0);-ms-transform:matrix(0.251877,0.003023,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.251877,0.003023,-0.003000,0.249982,0,0);}
.m31_c01388{transform:matrix(0.252552,0.002526,-0.002500,0.249988,0,0);-ms-transform:matrix(0.252552,0.002526,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.252552,0.002526,-0.002500,0.249988,0,0);}
.m2e_c01388{transform:matrix(0.253845,0.002792,-0.002750,0.249985,0,0);-ms-transform:matrix(0.253845,0.002792,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.253845,0.002792,-0.002750,0.249985,0,0);}
.m5f_c01388{transform:matrix(0.253952,0.002540,-0.002500,0.249988,0,0);-ms-transform:matrix(0.253952,0.002540,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.253952,0.002540,-0.002500,0.249988,0,0);}
.m2d_c01388{transform:matrix(0.254790,0.002803,-0.002750,0.249985,0,0);-ms-transform:matrix(0.254790,0.002803,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.254790,0.002803,-0.002750,0.249985,0,0);}
.mb0_c01388{transform:matrix(0.254814,0.005351,-0.005249,0.249945,0,0);-ms-transform:matrix(0.254814,0.005351,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.254814,0.005351,-0.005249,0.249945,0,0);}
.m2f_c01388{transform:matrix(0.254972,0.002550,-0.002500,0.249988,0,0);-ms-transform:matrix(0.254972,0.002550,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.254972,0.002550,-0.002500,0.249988,0,0);}
.m45_c01388{transform:matrix(0.255377,0.002554,-0.002500,0.249988,0,0);-ms-transform:matrix(0.255377,0.002554,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.255377,0.002554,-0.002500,0.249988,0,0);}
.mc9_c01388{transform:matrix(0.256109,0.005378,-0.005249,0.249945,0,0);-ms-transform:matrix(0.256109,0.005378,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.256109,0.005378,-0.005249,0.249945,0,0);}
.m1a_c01388{transform:matrix(0.256202,0.002562,-0.002500,0.249988,0,0);-ms-transform:matrix(0.256202,0.002562,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.256202,0.002562,-0.002500,0.249988,0,0);}
.m63_c01388{transform:matrix(0.257247,0.002572,-0.002500,0.249988,0,0);-ms-transform:matrix(0.257247,0.002572,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.257247,0.002572,-0.002500,0.249988,0,0);}
.m2c_c01388{transform:matrix(0.257864,0.002837,-0.002750,0.249985,0,0);-ms-transform:matrix(0.257864,0.002837,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.257864,0.002837,-0.002750,0.249985,0,0);}
.mbe_c01388{transform:matrix(0.258323,0.005425,-0.005249,0.249945,0,0);-ms-transform:matrix(0.258323,0.005425,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.258323,0.005425,-0.005249,0.249945,0,0);}
.m36_c01388{transform:matrix(0.258462,0.002585,-0.002500,0.249988,0,0);-ms-transform:matrix(0.258462,0.002585,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.258462,0.002585,-0.002500,0.249988,0,0);}
.m9e_c01388{transform:matrix(0.259458,0.005449,-0.005249,0.249945,0,0);-ms-transform:matrix(0.259458,0.005449,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.259458,0.005449,-0.005249,0.249945,0,0);}
.mc0_c01388{transform:matrix(0.259613,0.005452,-0.005249,0.249945,0,0);-ms-transform:matrix(0.259613,0.005452,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.259613,0.005452,-0.005249,0.249945,0,0);}
.ma1_c01388{transform:matrix(0.260263,0.005466,-0.005249,0.249945,0,0);-ms-transform:matrix(0.260263,0.005466,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.260263,0.005466,-0.005249,0.249945,0,0);}
.m67_c01388{transform:matrix(0.263765,0.003956,-0.003750,0.249972,0,0);-ms-transform:matrix(0.263765,0.003956,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.263765,0.003956,-0.003750,0.249972,0,0);}
.me8_c01388{transform:matrix(0.264472,0.005554,-0.005249,0.249945,0,0);-ms-transform:matrix(0.264472,0.005554,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.264472,0.005554,-0.005249,0.249945,0,0);}
.m50_c01388{transform:matrix(0.264672,0.002647,-0.002500,0.249988,0,0);-ms-transform:matrix(0.264672,0.002647,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.264672,0.002647,-0.002500,0.249988,0,0);}
.mb9_c01388{transform:matrix(0.265032,0.005566,-0.005249,0.249945,0,0);-ms-transform:matrix(0.265032,0.005566,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.265032,0.005566,-0.005249,0.249945,0,0);}
.m66_c01388{transform:matrix(0.265870,0.003988,-0.003750,0.249972,0,0);-ms-transform:matrix(0.265870,0.003988,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.265870,0.003988,-0.003750,0.249972,0,0);}
.m1b_c01388{transform:matrix(0.268937,0.002689,-0.002500,0.249988,0,0);-ms-transform:matrix(0.268937,0.002689,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.268937,0.002689,-0.002500,0.249988,0,0);}
.mbb_c01388{transform:matrix(0.270100,0.005672,-0.005249,0.249945,0,0);-ms-transform:matrix(0.270100,0.005672,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.270100,0.005672,-0.005249,0.249945,0,0);}
.m3c_c01388{transform:matrix(0.272376,0.002724,-0.002500,0.249988,0,0);-ms-transform:matrix(0.272376,0.002724,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.272376,0.002724,-0.002500,0.249988,0,0);}
.m68_c01388{transform:matrix(0.272954,0.004094,-0.003750,0.249972,0,0);-ms-transform:matrix(0.272954,0.004094,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.272954,0.004094,-0.003750,0.249972,0,0);}
.m3b_c01388{transform:matrix(0.273511,0.002735,-0.002500,0.249988,0,0);-ms-transform:matrix(0.273511,0.002735,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.273511,0.002735,-0.002500,0.249988,0,0);}
.m3e_c01388{transform:matrix(0.276086,0.002761,-0.002500,0.249988,0,0);-ms-transform:matrix(0.276086,0.002761,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.276086,0.002761,-0.002500,0.249988,0,0);}
.m10b_c01388{transform:matrix(0.276115,0.003313,-0.003000,0.249982,0,0);-ms-transform:matrix(0.276115,0.003313,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.276115,0.003313,-0.003000,0.249982,0,0);}
.m1c_c01388{transform:matrix(0.276371,0.002764,-0.002500,0.249988,0,0);-ms-transform:matrix(0.276371,0.002764,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.276371,0.002764,-0.002500,0.249988,0,0);}
.m3f_c01388{transform:matrix(0.276891,0.002769,-0.002500,0.249988,0,0);-ms-transform:matrix(0.276891,0.002769,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.276891,0.002769,-0.002500,0.249988,0,0);}
.m41_c01388{transform:matrix(0.276996,0.002770,-0.002500,0.249988,0,0);-ms-transform:matrix(0.276996,0.002770,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.276996,0.002770,-0.002500,0.249988,0,0);}
.m2b_c01388{transform:matrix(0.277683,0.003055,-0.002750,0.249985,0,0);-ms-transform:matrix(0.277683,0.003055,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.277683,0.003055,-0.002750,0.249985,0,0);}
.m43_c01388{transform:matrix(0.278066,0.002781,-0.002500,0.249988,0,0);-ms-transform:matrix(0.278066,0.002781,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.278066,0.002781,-0.002500,0.249988,0,0);}
.m1d_c01388{transform:matrix(0.278591,0.002786,-0.002500,0.249988,0,0);-ms-transform:matrix(0.278591,0.002786,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.278591,0.002786,-0.002500,0.249988,0,0);}
.m49_c01388{transform:matrix(0.282516,0.002825,-0.002500,0.249988,0,0);-ms-transform:matrix(0.282516,0.002825,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.282516,0.002825,-0.002500,0.249988,0,0);}
.m30_c01388{transform:matrix(0.295560,0.002956,-0.002500,0.249988,0,0);-ms-transform:matrix(0.295560,0.002956,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.295560,0.002956,-0.002500,0.249988,0,0);}
.m3_c01388{transform:matrix(0.299355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299355,0.000000,0.000000,0.250000,0,0);}
.m2_c01388{transform:matrix(0.309265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309265,0.000000,0.000000,0.250000,0,0);}
.m3d_c01388{transform:matrix(0.309590,0.003096,-0.002500,0.249988,0,0);-ms-transform:matrix(0.309590,0.003096,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.309590,0.003096,-0.002500,0.249988,0,0);}
.m40_c01388{transform:matrix(0.311294,0.003113,-0.002500,0.249988,0,0);-ms-transform:matrix(0.311294,0.003113,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.311294,0.003113,-0.002500,0.249988,0,0);}
.m3a_c01388{transform:matrix(0.314724,0.003147,-0.002500,0.249988,0,0);-ms-transform:matrix(0.314724,0.003147,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.314724,0.003147,-0.002500,0.249988,0,0);}
.m79_c01388{transform:matrix(0.318642,0.003824,-0.003000,0.249982,0,0);-ms-transform:matrix(0.318642,0.003824,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.318642,0.003824,-0.003000,0.249982,0,0);}
.ma2_c01388{transform:matrix(0.333242,0.006998,-0.005249,0.249945,0,0);-ms-transform:matrix(0.333242,0.006998,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.333242,0.006998,-0.005249,0.249945,0,0);}
.m48_c01388{transform:matrix(0.338153,0.003382,-0.002500,0.249988,0,0);-ms-transform:matrix(0.338153,0.003382,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.338153,0.003382,-0.002500,0.249988,0,0);}
.m47_c01388{transform:matrix(0.522174,0.005222,-0.002500,0.249988,0,0);-ms-transform:matrix(0.522174,0.005222,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.522174,0.005222,-0.002500,0.249988,0,0);}
.m0_c01388{transform:matrix(0.669105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.669105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.669105,0.000000,0.000000,0.250000,0,0);}
.v0_c01388{vertical-align:0.000000px;}
.ls0_c01388{letter-spacing:0.000000px;}
.sc__c01388{text-shadow:none;}
.sc0_c01388{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__c01388{-webkit-text-stroke:0px transparent;}
.sc0_c01388{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01388{word-spacing:0.000000px;}
.fc0_c01388{color:transparent;}
.fs0_c01388{font-size:18.000000px;}
.fs5_c01388{font-size:72.003600px;}
.fs7_c01388{font-size:72.004356px;}
.fs9_c01388{font-size:72.008100px;}
.fs8_c01388{font-size:78.003900px;}
.fs6_c01388{font-size:78.004719px;}
.fs15_c01388{font-size:78.005616px;}
.fs12_c01388{font-size:78.017197px;}
.fs4_c01388{font-size:84.004200px;}
.fs2_c01388{font-size:84.005082px;}
.fs16_c01388{font-size:84.006048px;}
.fsa_c01388{font-size:84.008232px;}
.fsb_c01388{font-size:84.012137px;}
.fs13_c01388{font-size:84.018520px;}
.fs3_c01388{font-size:90.005445px;}
.fs17_c01388{font-size:90.006480px;}
.fs11_c01388{font-size:90.019843px;}
.fs1_c01388{font-size:96.000000px;}
.fsc_c01388{font-size:96.006912px;}
.fs10_c01388{font-size:96.021166px;}
.fsf_c01388{font-size:102.007344px;}
.fse_c01388{font-size:108.007776px;}
.fs14_c01388{font-size:114.025134px;}
.fsd_c01388{font-size:126.009072px;}
.y0_c01388{bottom:0.000000px;}
.y129_c01388{bottom:82.387596px;}
.y128_c01388{bottom:83.429550px;}
.y127_c01388{bottom:84.655626px;}
.y126_c01388{bottom:86.321730px;}
.y125_c01388{bottom:86.937390px;}
.y124_c01388{bottom:113.874690px;}
.y123_c01388{bottom:114.806910px;}
.y122_c01388{bottom:115.144140px;}
.y121_c01388{bottom:115.541616px;}
.y120_c01388{bottom:117.235050px;}
.y11f_c01388{bottom:117.795546px;}
.y11e_c01388{bottom:119.658828px;}
.y11d_c01388{bottom:121.499532px;}
.y11c_c01388{bottom:150.671556px;}
.y11b_c01388{bottom:151.209468px;}
.y11a_c01388{bottom:151.857576px;}
.y119_c01388{bottom:152.525196px;}
.y118_c01388{bottom:152.923608px;}
.y117_c01388{bottom:153.445410px;}
.y116_c01388{bottom:153.824616px;}
.y115_c01388{bottom:154.761174px;}
.y114_c01388{bottom:155.671470px;}
.y113_c01388{bottom:156.060468px;}
.y112_c01388{bottom:184.825428px;}
.y111_c01388{bottom:185.605818px;}
.y110_c01388{bottom:186.134406px;}
.y10f_c01388{bottom:186.927990px;}
.y10e_c01388{bottom:187.320156px;}
.y10d_c01388{bottom:188.418588px;}
.y10c_c01388{bottom:188.762154px;}
.y10b_c01388{bottom:189.163878px;}
.y10a_c01388{bottom:190.573602px;}
.y109_c01388{bottom:190.945482px;}
.y108_c01388{bottom:191.327766px;}
.y107_c01388{bottom:192.241500px;}
.y106_c01388{bottom:220.640450px;}
.y105_c01388{bottom:221.532515px;}
.y104_c01388{bottom:222.588809px;}
.y103_c01388{bottom:223.875047px;}
.y102_c01388{bottom:224.668886px;}
.y101_c01388{bottom:225.080291px;}
.y100_c01388{bottom:225.982181px;}
.yff_c01388{bottom:226.895495px;}
.yfe_c01388{bottom:227.394179px;}
.yfd_c01388{bottom:227.820705px;}
.yfb_c01388{bottom:259.263495px;}
.yfc_c01388{bottom:259.263660px;}
.yf8_c01388{bottom:259.263821px;}
.yf7_c01388{bottom:259.263903px;}
.yfa_c01388{bottom:259.263908px;}
.yf6_c01388{bottom:259.263986px;}
.yf9_c01388{bottom:259.263990px;}
.yf2_c01388{bottom:259.264008px;}
.yf5_c01388{bottom:259.264476px;}
.yf4_c01388{bottom:259.264554px;}
.yf3_c01388{bottom:259.264662px;}
.y1_c01388{bottom:290.250000px;}
.yf1_c01388{bottom:291.993203px;}
.yf0_c01388{bottom:292.359176px;}
.yef_c01388{bottom:292.595925px;}
.yee_c01388{bottom:293.552579px;}
.yed_c01388{bottom:294.517388px;}
.yec_c01388{bottom:295.111387px;}
.yeb_c01388{bottom:295.601469px;}
.yea_c01388{bottom:295.835801px;}
.ye9_c01388{bottom:296.409560px;}
.ye8_c01388{bottom:297.641920px;}
.ye7_c01388{bottom:298.111623px;}
.ye6_c01388{bottom:298.357945px;}
.ye5_c01388{bottom:298.845798px;}
.ye4_c01388{bottom:328.352260px;}
.ye3_c01388{bottom:328.623011px;}
.ye2_c01388{bottom:329.143417px;}
.ye1_c01388{bottom:329.934449px;}
.ye0_c01388{bottom:330.358170px;}
.ydf_c01388{bottom:330.538950px;}
.yde_c01388{bottom:331.145756px;}
.ydd_c01388{bottom:331.493252px;}
.ydc_c01388{bottom:332.199999px;}
.ydb_c01388{bottom:332.468142px;}
.yda_c01388{bottom:332.725652px;}
.yd9_c01388{bottom:333.412995px;}
.yd8_c01388{bottom:361.198460px;}
.yd7_c01388{bottom:362.155637px;}
.yd6_c01388{bottom:362.532258px;}
.yd5_c01388{bottom:363.227507px;}
.yd4_c01388{bottom:363.843134px;}
.yd3_c01388{bottom:364.430974px;}
.yd2_c01388{bottom:364.935906px;}
.yd1_c01388{bottom:365.606858px;}
.yd0_c01388{bottom:365.989709px;}
.ycf_c01388{bottom:366.602406px;}
.yce_c01388{bottom:367.179012px;}
.ycd_c01388{bottom:367.570925px;}
.ycc_c01388{bottom:368.049507px;}
.ycb_c01388{bottom:368.521816px;}
.yca_c01388{bottom:396.132960px;}
.yc9_c01388{bottom:396.567146px;}
.yc8_c01388{bottom:396.818862px;}
.yc7_c01388{bottom:397.337656px;}
.yc6_c01388{bottom:398.125254px;}
.yc5_c01388{bottom:398.516915px;}
.yc4_c01388{bottom:399.310533px;}
.yc3_c01388{bottom:400.598661px;}
.yc2_c01388{bottom:401.269725px;}
.yc1_c01388{bottom:401.910759px;}
.yc0_c01388{bottom:402.338105px;}
.ybf_c01388{bottom:402.711092px;}
.ybe_c01388{bottom:403.112577px;}
.ybd_c01388{bottom:403.352303px;}
.ybc_c01388{bottom:403.912909px;}
.ybb_c01388{bottom:433.091520px;}
.yba_c01388{bottom:433.573150px;}
.yb9_c01388{bottom:434.767927px;}
.yb8_c01388{bottom:435.376525px;}
.yb7_c01388{bottom:436.092027px;}
.yb6_c01388{bottom:436.462773px;}
.yb5_c01388{bottom:436.817039px;}
.yb4_c01388{bottom:437.176455px;}
.yb3_c01388{bottom:437.782761px;}
.yb2_c01388{bottom:438.130647px;}
.yb1_c01388{bottom:438.617996px;}
.yb0_c01388{bottom:439.818617px;}
.yaf_c01388{bottom:467.408385px;}
.yae_c01388{bottom:467.635848px;}
.yad_c01388{bottom:468.096419px;}
.yac_c01388{bottom:468.330187px;}
.yab_c01388{bottom:468.549876px;}
.yaa_c01388{bottom:468.786094px;}
.ya9_c01388{bottom:469.399080px;}
.ya8_c01388{bottom:469.781014px;}
.ya7_c01388{bottom:470.016698px;}
.ya6_c01388{bottom:470.301525px;}
.ya5_c01388{bottom:470.759295px;}
.ya4_c01388{bottom:471.237958px;}
.ya3_c01388{bottom:471.683390px;}
.ya2_c01388{bottom:499.962873px;}
.ya1_c01388{bottom:502.244639px;}
.ya0_c01388{bottom:503.222399px;}
.y9f_c01388{bottom:505.670831px;}
.y9e_c01388{bottom:506.374226px;}
.y9d_c01388{bottom:507.026118px;}
.y9c_c01388{bottom:508.176876px;}
.y9b_c01388{bottom:508.879798px;}
.y9a_c01388{bottom:510.228975px;}
.y99_c01388{bottom:511.657500px;}
.y94_c01388{bottom:544.778946px;}
.y93_c01388{bottom:544.779030px;}
.y95_c01388{bottom:544.779642px;}
.y97_c01388{bottom:544.779972px;}
.y98_c01388{bottom:544.780146px;}
.y96_c01388{bottom:544.780236px;}
.y92_c01388{bottom:576.229254px;}
.y91_c01388{bottom:577.422168px;}
.y90_c01388{bottom:577.940532px;}
.y8f_c01388{bottom:579.505416px;}
.y8e_c01388{bottom:579.900786px;}
.y8d_c01388{bottom:580.684884px;}
.y8c_c01388{bottom:582.382914px;}
.y8b_c01388{bottom:582.661500px;}
.y8a_c01388{bottom:613.350852px;}
.y89_c01388{bottom:614.428698px;}
.y88_c01388{bottom:614.750112px;}
.y87_c01388{bottom:615.359796px;}
.y86_c01388{bottom:615.668220px;}
.y85_c01388{bottom:616.730844px;}
.y84_c01388{bottom:617.490156px;}
.y83_c01388{bottom:645.689748px;}
.y82_c01388{bottom:646.479984px;}
.y81_c01388{bottom:647.007834px;}
.y80_c01388{bottom:647.799978px;}
.y7f_c01388{bottom:648.203790px;}
.y7e_c01388{bottom:649.111008px;}
.y7d_c01388{bottom:649.622928px;}
.y7c_c01388{bottom:651.204408px;}
.y7b_c01388{bottom:652.004706px;}
.y7a_c01388{bottom:652.519902px;}
.y79_c01388{bottom:653.133000px;}
.y78_c01388{bottom:683.723544px;}
.y77_c01388{bottom:684.098394px;}
.y76_c01388{bottom:684.815888px;}
.y75_c01388{bottom:686.491085px;}
.y74_c01388{bottom:687.060321px;}
.y73_c01388{bottom:687.964500px;}
.y72_c01388{bottom:715.394034px;}
.y71_c01388{bottom:715.863405px;}
.y70_c01388{bottom:717.375363px;}
.y6f_c01388{bottom:717.684651px;}
.y6e_c01388{bottom:718.766361px;}
.y6d_c01388{bottom:719.356293px;}
.y6c_c01388{bottom:720.898386px;}
.y6b_c01388{bottom:721.378614px;}
.y6a_c01388{bottom:722.576916px;}
.y69_c01388{bottom:723.333000px;}
.y68_c01388{bottom:756.484860px;}
.y67_c01388{bottom:757.323233px;}
.y66_c01388{bottom:758.433000px;}
.y65_c01388{bottom:788.962035px;}
.y64_c01388{bottom:789.357480px;}
.y63_c01388{bottom:790.229295px;}
.y62_c01388{bottom:790.751160px;}
.y61_c01388{bottom:791.041140px;}
.y60_c01388{bottom:791.699700px;}
.y5f_c01388{bottom:792.494475px;}
.y5e_c01388{bottom:792.767235px;}
.y5d_c01388{bottom:793.668240px;}
.y5c_c01388{bottom:794.061240px;}
.y5b_c01388{bottom:823.545825px;}
.y5a_c01388{bottom:824.152215px;}
.y59_c01388{bottom:824.514240px;}
.y58_c01388{bottom:824.987070px;}
.y57_c01388{bottom:825.830355px;}
.y56_c01388{bottom:826.187310px;}
.y55_c01388{bottom:826.544295px;}
.y54_c01388{bottom:826.793610px;}
.y53_c01388{bottom:828.231450px;}
.y52_c01388{bottom:828.959055px;}
.y51_c01388{bottom:829.434585px;}
.y50_c01388{bottom:859.458060px;}
.y4f_c01388{bottom:859.815045px;}
.y4e_c01388{bottom:860.300340px;}
.y4d_c01388{bottom:861.257100px;}
.y4c_c01388{bottom:861.482895px;}
.y4b_c01388{bottom:862.087410px;}
.y4a_c01388{bottom:862.553280px;}
.y49_c01388{bottom:862.910265px;}
.y48_c01388{bottom:863.290350px;}
.y47_c01388{bottom:863.534235px;}
.y46_c01388{bottom:864.502770px;}
.y45_c01388{bottom:864.736605px;}
.y44_c01388{bottom:865.348830px;}
.y43_c01388{bottom:895.239660px;}
.y42_c01388{bottom:895.980165px;}
.y41_c01388{bottom:896.341950px;}
.y40_c01388{bottom:897.173505px;}
.y3f_c01388{bottom:897.535890px;}
.y3e_c01388{bottom:898.479945px;}
.y3d_c01388{bottom:899.088915px;}
.y3c_c01388{bottom:899.448600px;}
.y3b_c01388{bottom:900.170655px;}
.y3a_c01388{bottom:900.892710px;}
.y39_c01388{bottom:901.260495px;}
.y38_c01388{bottom:930.364230px;}
.y37_c01388{bottom:931.130940px;}
.y36_c01388{bottom:931.468740px;}
.y35_c01388{bottom:932.554170px;}
.y34_c01388{bottom:932.891655px;}
.y33_c01388{bottom:933.428985px;}
.y32_c01388{bottom:934.085025px;}
.y31_c01388{bottom:934.425285px;}
.y30_c01388{bottom:935.383980px;}
.y2f_c01388{bottom:935.718930px;}
.y2e_c01388{bottom:936.361500px;}
.y2d_c01388{bottom:967.348954px;}
.y2c_c01388{bottom:968.134140px;}
.y2b_c01388{bottom:968.419054px;}
.y2a_c01388{bottom:969.592074px;}
.y29_c01388{bottom:970.649124px;}
.y28_c01388{bottom:999.682920px;}
.y27_c01388{bottom:1000.404349px;}
.y26_c01388{bottom:1000.653813px;}
.y25_c01388{bottom:1001.491402px;}
.y24_c01388{bottom:1001.860045px;}
.y23_c01388{bottom:1002.451141px;}
.y22_c01388{bottom:1003.178676px;}
.y21_c01388{bottom:1003.549909px;}
.y20_c01388{bottom:1004.012899px;}
.y1f_c01388{bottom:1004.740665px;}
.y1e_c01388{bottom:1005.462820px;}
.y1d_c01388{bottom:1006.291500px;}
.y1c_c01388{bottom:1038.712695px;}
.y1b_c01388{bottom:1039.850055px;}
.y1a_c01388{bottom:1040.572845px;}
.y19_c01388{bottom:1041.390885px;}
.y18_c01388{bottom:1070.648310px;}
.y17_c01388{bottom:1071.412125px;}
.y16_c01388{bottom:1072.073940px;}
.y15_c01388{bottom:1072.511430px;}
.y14_c01388{bottom:1073.053785px;}
.y13_c01388{bottom:1074.471705px;}
.y12_c01388{bottom:1074.817260px;}
.y11_c01388{bottom:1075.465065px;}
.y10_c01388{bottom:1076.083935px;}
.yf_c01388{bottom:1076.761500px;}
.ye_c01388{bottom:1111.461112px;}
.yd_c01388{bottom:1140.480515px;}
.yc_c01388{bottom:1140.964723px;}
.yb_c01388{bottom:1141.333020px;}
.ya_c01388{bottom:1142.396313px;}
.y9_c01388{bottom:1142.761640px;}
.y8_c01388{bottom:1143.367123px;}
.y7_c01388{bottom:1143.822226px;}
.y6_c01388{bottom:1145.170359px;}
.y5_c01388{bottom:1145.544727px;}
.y4_c01388{bottom:1146.254194px;}
.y3_c01388{bottom:1146.961500px;}
.y2_c01388{bottom:1207.042500px;}
.h2_c01388{height:18.000000px;}
.h7_c01388{height:72.003600px;}
.h9_c01388{height:72.004356px;}
.hb_c01388{height:72.008100px;}
.ha_c01388{height:78.003900px;}
.h8_c01388{height:78.004719px;}
.h17_c01388{height:78.005616px;}
.h14_c01388{height:78.017197px;}
.h6_c01388{height:84.004200px;}
.h4_c01388{height:84.005082px;}
.h18_c01388{height:84.006048px;}
.hc_c01388{height:84.008232px;}
.hd_c01388{height:84.012137px;}
.h15_c01388{height:84.018520px;}
.h5_c01388{height:90.005445px;}
.h19_c01388{height:90.006480px;}
.h13_c01388{height:90.019843px;}
.h3_c01388{height:96.000000px;}
.he_c01388{height:96.006912px;}
.h12_c01388{height:96.021166px;}
.h11_c01388{height:102.007344px;}
.h10_c01388{height:108.007776px;}
.h16_c01388{height:114.025134px;}
.hf_c01388{height:126.009072px;}
.h1_c01388{height:1250.250000px;}
.h0_c01388{height:1250.370000px;}
.w0_c01388{width:878.850000px;}
.w1_c01388{width:879.000000px;}
.x0_c01388{left:0.000000px;}
.xba_c01388{left:139.103988px;}
.x8f_c01388{left:140.441727px;}
.x87_c01388{left:141.829026px;}
.x71_c01388{left:144.173448px;}
.xb7_c01388{left:166.206000px;}
.x5c_c01388{left:169.593000px;}
.xbb_c01388{left:171.520488px;}
.xb3_c01388{left:175.262817px;}
.x95_c01388{left:185.061096px;}
.x72_c01388{left:188.186784px;}
.x4e_c01388{left:190.135500px;}
.x10_c01388{left:193.165500px;}
.x4_c01388{left:194.227500px;}
.x7d_c01388{left:207.215364px;}
.xb4_c01388{left:216.874692px;}
.x73_c01388{left:219.508302px;}
.x5d_c01388{left:220.684500px;}
.x96_c01388{left:228.502700px;}
.x63_c01388{left:230.911176px;}
.x26_c01388{left:234.181542px;}
.xf_c01388{left:237.604791px;}
.x90_c01388{left:240.618659px;}
.x58_c01388{left:242.754000px;}
.x51_c01388{left:243.889500px;}
.xbc_c01388{left:247.378488px;}
.xa5_c01388{left:249.568124px;}
.x75_c01388{left:250.771500px;}
.x6a_c01388{left:252.021000px;}
.x29_c01388{left:256.612500px;}
.x5_c01388{left:258.528000px;}
.x11_c01388{left:260.922000px;}
.x4f_c01388{left:264.120000px;}
.x47_c01388{left:266.062080px;}
.x1c_c01388{left:267.687000px;}
.x91_c01388{left:271.671518px;}
.xb8_c01388{left:274.207500px;}
.x6b_c01388{left:275.236500px;}
.x3e_c01388{left:276.584505px;}
.x64_c01388{left:285.185880px;}
.x2a_c01388{left:290.107500px;}
.x9f_c01388{left:293.904567px;}
.x88_c01388{left:295.240719px;}
.x19_c01388{left:300.329865px;}
.xad_c01388{left:305.923896px;}
.x74_c01388{left:306.993402px;}
.x36_c01388{left:310.871835px;}
.x97_c01388{left:316.569690px;}
.x76_c01388{left:318.796500px;}
.x50_c01388{left:320.011500px;}
.x6_c01388{left:323.025000px;}
.xbd_c01388{left:325.424988px;}
.x89_c01388{left:326.813334px;}
.x52_c01388{left:329.482500px;}
.x1d_c01388{left:333.337500px;}
.x48_c01388{left:341.161080px;}
.x3f_c01388{left:342.744345px;}
.x1a_c01388{left:355.957200px;}
.x7_c01388{left:357.058500px;}
.xae_c01388{left:359.665584px;}
.x65_c01388{left:361.111062px;}
.x49_c01388{left:363.936630px;}
.x1_c01388{left:369.090000px;}
.x98_c01388{left:372.328908px;}
.x59_c01388{left:374.779500px;}
.xc5_c01388{left:378.785550px;}
.x7e_c01388{left:381.707646px;}
.x66_c01388{left:383.187540px;}
.x2b_c01388{left:385.977000px;}
.x12_c01388{left:387.589500px;}
.xc3_c01388{left:389.625720px;}
.x2_c01388{left:391.500000px;}
.x1e_c01388{left:399.498000px;}
.xbe_c01388{left:400.508988px;}
.xb5_c01388{left:402.438752px;}
.x99_c01388{left:407.067185px;}
.xa6_c01388{left:413.822616px;}
.x7f_c01388{left:415.440569px;}
.x5a_c01388{left:416.985000px;}
.x27_c01388{left:420.003996px;}
.x37_c01388{left:421.012725px;}
.x13_c01388{left:422.145000px;}
.xa0_c01388{left:425.714040px;}
.x67_c01388{left:426.743496px;}
.x4a_c01388{left:430.212810px;}
.x32_c01388{left:432.365310px;}
.xbf_c01388{left:433.709988px;}
.xa7_c01388{left:435.128589px;}
.x3_c01388{left:436.320000px;}
.x5b_c01388{left:439.035000px;}
.x1f_c01388{left:441.588000px;}
.x1b_c01388{left:443.440575px;}
.x8a_c01388{left:446.766503px;}
.x68_c01388{left:449.652438px;}
.x38_c01388{left:455.570880px;}
.x5e_c01388{left:462.099000px;}
.x9a_c01388{left:468.101505px;}
.x80_c01388{left:470.001102px;}
.x77_c01388{left:471.313500px;}
.x40_c01388{left:473.477040px;}
.x20_c01388{left:475.336500px;}
.x8_c01388{left:479.616000px;}
.x6c_c01388{left:482.080500px;}
.x2c_c01388{left:485.607000px;}
.x33_c01388{left:487.711755px;}
.xc0_c01388{left:489.344988px;}
.x41_c01388{left:496.158315px;}
.x78_c01388{left:502.356000px;}
.x5f_c01388{left:504.759000px;}
.x28_c01388{left:509.103006px;}
.xaf_c01388{left:511.978211px;}
.x9b_c01388{left:514.012644px;}
.x6d_c01388{left:515.028000px;}
.x53_c01388{left:516.072000px;}
.x9_c01388{left:520.989000px;}
.x92_c01388{left:523.960677px;}
.x69_c01388{left:526.596084px;}
.x42_c01388{left:528.556485px;}
.x39_c01388{left:530.355630px;}
.xc4_c01388{left:532.462152px;}
.xa8_c01388{left:533.700785px;}
.x79_c01388{left:535.851000px;}
.x2d_c01388{left:539.340000px;}
.x21_c01388{left:541.476000px;}
.xc1_c01388{left:543.353988px;}
.x8b_c01388{left:545.584761px;}
.x4b_c01388{left:552.800865px;}
.x81_c01388{left:557.502306px;}
.x43_c01388{left:560.951655px;}
.x14_c01388{left:563.937000px;}
.x9c_c01388{left:567.444858px;}
.x2e_c01388{left:573.088500px;}
.xa_c01388{left:576.033000px;}
.xa1_c01388{left:577.222400px;}
.x60_c01388{left:580.360500px;}
.x3a_c01388{left:585.256575px;}
.xc2_c01388{left:588.179988px;}
.x93_c01388{left:590.121683px;}
.x82_c01388{left:591.260729px;}
.x54_c01388{left:593.337000px;}
.x22_c01388{left:595.212000px;}
.xb0_c01388{left:598.937046px;}
.x8c_c01388{left:600.934385px;}
.x34_c01388{left:606.504570px;}
.xb_c01388{left:609.244500px;}
.x61_c01388{left:614.011500px;}
.x55_c01388{left:615.429000px;}
.x15_c01388{left:618.172500px;}
.xa9_c01388{left:621.448212px;}
.x83_c01388{left:622.588427px;}
.x4c_c01388{left:625.430910px;}
.x23_c01388{left:628.725000px;}
.xb1_c01388{left:631.884068px;}
.x44_c01388{left:637.629390px;}
.x6e_c01388{left:645.435000px;}
.x7a_c01388{left:652.443000px;}
.x84_c01388{left:656.087286px;}
.x4d_c01388{left:658.374750px;}
.x16_c01388{left:661.921500px;}
.xb2_c01388{left:664.560963px;}
.xa2_c01388{left:676.060364px;}
.x45_c01388{left:680.561955px;}
.x2f_c01388{left:681.631500px;}
.x9d_c01388{left:686.535338px;}
.x6f_c01388{left:688.632000px;}
.x3b_c01388{left:692.710995px;}
.x7b_c01388{left:699.003000px;}
.x24_c01388{left:704.869500px;}
.xc_c01388{left:705.907500px;}
.xaa_c01388{left:708.449982px;}
.x8d_c01388{left:709.494159px;}
.x46_c01388{left:713.464125px;}
.x30_c01388{left:715.411500px;}
.xb9_c01388{left:719.179500px;}
.x9e_c01388{left:720.834051px;}
.x85_c01388{left:721.967159px;}
.x56_c01388{left:723.426000px;}
.x17_c01388{left:728.103000px;}
.xab_c01388{left:730.014018px;}
.x94_c01388{left:731.650926px;}
.x3c_c01388{left:736.890060px;}
.xb6_c01388{left:738.118161px;}
.xd_c01388{left:739.389000px;}
.xa3_c01388{left:741.145130px;}
.x8e_c01388{left:753.223826px;}
.x86_c01388{left:754.379672px;}
.x57_c01388{left:756.952500px;}
.xac_c01388{left:763.233980px;}
.x3d_c01388{left:769.288230px;}
.xa4_c01388{left:774.904328px;}
.x35_c01388{left:782.337315px;}
.xe_c01388{left:783.408000px;}
.x70_c01388{left:788.041500px;}
.x62_c01388{left:789.864000px;}
.x31_c01388{left:792.082500px;}
.x25_c01388{left:793.132500px;}
.x18_c01388{left:804.484500px;}
.x7c_c01388{left:807.658500px;}
@media print{
.v0_c01388{vertical-align:0.000000pt;}
.ls0_c01388{letter-spacing:0.000000pt;}
.ws0_c01388{word-spacing:0.000000pt;}
.fs0_c01388{font-size:16.000000pt;}
.fs5_c01388{font-size:64.003200pt;}
.fs7_c01388{font-size:64.003872pt;}
.fs9_c01388{font-size:64.007200pt;}
.fs8_c01388{font-size:69.336800pt;}
.fs6_c01388{font-size:69.337528pt;}
.fs15_c01388{font-size:69.338325pt;}
.fs12_c01388{font-size:69.348620pt;}
.fs4_c01388{font-size:74.670400pt;}
.fs2_c01388{font-size:74.671184pt;}
.fs16_c01388{font-size:74.672042pt;}
.fsa_c01388{font-size:74.673984pt;}
.fsb_c01388{font-size:74.677455pt;}
.fs13_c01388{font-size:74.683129pt;}
.fs3_c01388{font-size:80.004840pt;}
.fs17_c01388{font-size:80.005760pt;}
.fs11_c01388{font-size:80.017638pt;}
.fs1_c01388{font-size:85.333333pt;}
.fsc_c01388{font-size:85.339477pt;}
.fs10_c01388{font-size:85.352147pt;}
.fsf_c01388{font-size:90.673194pt;}
.fse_c01388{font-size:96.006912pt;}
.fs14_c01388{font-size:101.355675pt;}
.fsd_c01388{font-size:112.008064pt;}
.y0_c01388{bottom:0.000000pt;}
.y129_c01388{bottom:73.233419pt;}
.y128_c01388{bottom:74.159600pt;}
.y127_c01388{bottom:75.249445pt;}
.y126_c01388{bottom:76.730427pt;}
.y125_c01388{bottom:77.277680pt;}
.y124_c01388{bottom:101.221947pt;}
.y123_c01388{bottom:102.050587pt;}
.y122_c01388{bottom:102.350347pt;}
.y121_c01388{bottom:102.703659pt;}
.y120_c01388{bottom:104.208933pt;}
.y11f_c01388{bottom:104.707152pt;}
.y11e_c01388{bottom:106.363403pt;}
.y11d_c01388{bottom:107.999584pt;}
.y11c_c01388{bottom:133.930272pt;}
.y11b_c01388{bottom:134.408416pt;}
.y11a_c01388{bottom:134.984512pt;}
.y119_c01388{bottom:135.577952pt;}
.y118_c01388{bottom:135.932096pt;}
.y117_c01388{bottom:136.395920pt;}
.y116_c01388{bottom:136.732992pt;}
.y115_c01388{bottom:137.565488pt;}
.y114_c01388{bottom:138.374640pt;}
.y113_c01388{bottom:138.720416pt;}
.y112_c01388{bottom:164.289269pt;}
.y111_c01388{bottom:164.982949pt;}
.y110_c01388{bottom:165.452805pt;}
.y10f_c01388{bottom:166.158213pt;}
.y10e_c01388{bottom:166.506805pt;}
.y10d_c01388{bottom:167.483189pt;}
.y10c_c01388{bottom:167.788581pt;}
.y10b_c01388{bottom:168.145669pt;}
.y10a_c01388{bottom:169.398757pt;}
.y109_c01388{bottom:169.729317pt;}
.y108_c01388{bottom:170.069125pt;}
.y107_c01388{bottom:170.881333pt;}
.y106_c01388{bottom:196.124844pt;}
.y105_c01388{bottom:196.917791pt;}
.y104_c01388{bottom:197.856719pt;}
.y103_c01388{bottom:199.000041pt;}
.y102_c01388{bottom:199.705676pt;}
.y101_c01388{bottom:200.071369pt;}
.y100_c01388{bottom:200.873049pt;}
.yff_c01388{bottom:201.684884pt;}
.yfe_c01388{bottom:202.128159pt;}
.yfd_c01388{bottom:202.507293pt;}
.yfb_c01388{bottom:230.456440pt;}
.yfc_c01388{bottom:230.456587pt;}
.yf8_c01388{bottom:230.456729pt;}
.yf7_c01388{bottom:230.456803pt;}
.yfa_c01388{bottom:230.456807pt;}
.yf6_c01388{bottom:230.456876pt;}
.yf9_c01388{bottom:230.456880pt;}
.yf2_c01388{bottom:230.456896pt;}
.yf5_c01388{bottom:230.457312pt;}
.yf4_c01388{bottom:230.457381pt;}
.yf3_c01388{bottom:230.457477pt;}
.y1_c01388{bottom:258.000000pt;}
.yf1_c01388{bottom:259.549513pt;}
.yf0_c01388{bottom:259.874823pt;}
.yef_c01388{bottom:260.085267pt;}
.yee_c01388{bottom:260.935625pt;}
.yed_c01388{bottom:261.793233pt;}
.yec_c01388{bottom:262.321233pt;}
.yeb_c01388{bottom:262.756861pt;}
.yea_c01388{bottom:262.965156pt;}
.ye9_c01388{bottom:263.475164pt;}
.ye8_c01388{bottom:264.570596pt;}
.ye7_c01388{bottom:264.988109pt;}
.ye6_c01388{bottom:265.207063pt;}
.ye5_c01388{bottom:265.640709pt;}
.ye4_c01388{bottom:291.868676pt;}
.ye3_c01388{bottom:292.109343pt;}
.ye2_c01388{bottom:292.571927pt;}
.ye1_c01388{bottom:293.275065pt;}
.ye0_c01388{bottom:293.651707pt;}
.ydf_c01388{bottom:293.812400pt;}
.yde_c01388{bottom:294.351783pt;}
.ydd_c01388{bottom:294.660668pt;}
.ydc_c01388{bottom:295.288888pt;}
.ydb_c01388{bottom:295.527237pt;}
.yda_c01388{bottom:295.756135pt;}
.yd9_c01388{bottom:296.367107pt;}
.yd8_c01388{bottom:321.065297pt;}
.yd7_c01388{bottom:321.916121pt;}
.yd6_c01388{bottom:322.250896pt;}
.yd5_c01388{bottom:322.868895pt;}
.yd4_c01388{bottom:323.416119pt;}
.yd3_c01388{bottom:323.938644pt;}
.yd2_c01388{bottom:324.387472pt;}
.yd1_c01388{bottom:324.983873pt;}
.yd0_c01388{bottom:325.324185pt;}
.ycf_c01388{bottom:325.868805pt;}
.yce_c01388{bottom:326.381344pt;}
.ycd_c01388{bottom:326.729711pt;}
.ycc_c01388{bottom:327.155117pt;}
.ycb_c01388{bottom:327.574948pt;}
.yca_c01388{bottom:352.118187pt;}
.yc9_c01388{bottom:352.504129pt;}
.yc8_c01388{bottom:352.727877pt;}
.yc7_c01388{bottom:353.189028pt;}
.yc6_c01388{bottom:353.889115pt;}
.yc5_c01388{bottom:354.237257pt;}
.yc4_c01388{bottom:354.942696pt;}
.yc3_c01388{bottom:356.087699pt;}
.yc2_c01388{bottom:356.684200pt;}
.yc1_c01388{bottom:357.254008pt;}
.yc0_c01388{bottom:357.633871pt;}
.ybf_c01388{bottom:357.965415pt;}
.ybe_c01388{bottom:358.322291pt;}
.ybd_c01388{bottom:358.535380pt;}
.ybc_c01388{bottom:359.033697pt;}
.ybb_c01388{bottom:384.970240pt;}
.yba_c01388{bottom:385.398356pt;}
.yb9_c01388{bottom:386.460380pt;}
.yb8_c01388{bottom:387.001356pt;}
.yb7_c01388{bottom:387.637357pt;}
.yb6_c01388{bottom:387.966909pt;}
.yb5_c01388{bottom:388.281812pt;}
.yb4_c01388{bottom:388.601293pt;}
.yb3_c01388{bottom:389.140232pt;}
.yb2_c01388{bottom:389.449464pt;}
.yb1_c01388{bottom:389.882663pt;}
.yb0_c01388{bottom:390.949881pt;}
.yaf_c01388{bottom:415.474120pt;}
.yae_c01388{bottom:415.676309pt;}
.yad_c01388{bottom:416.085705pt;}
.yac_c01388{bottom:416.293500pt;}
.yab_c01388{bottom:416.488779pt;}
.yaa_c01388{bottom:416.698751pt;}
.ya9_c01388{bottom:417.243627pt;}
.ya8_c01388{bottom:417.583124pt;}
.ya7_c01388{bottom:417.792620pt;}
.ya6_c01388{bottom:418.045800pt;}
.ya5_c01388{bottom:418.452707pt;}
.ya4_c01388{bottom:418.878185pt;}
.ya3_c01388{bottom:419.274124pt;}
.ya2_c01388{bottom:444.411443pt;}
.ya1_c01388{bottom:446.439679pt;}
.ya0_c01388{bottom:447.308799pt;}
.y9f_c01388{bottom:449.485183pt;}
.y9e_c01388{bottom:450.110423pt;}
.y9d_c01388{bottom:450.689883pt;}
.y9c_c01388{bottom:451.712779pt;}
.y9b_c01388{bottom:452.337599pt;}
.y9a_c01388{bottom:453.536867pt;}
.y99_c01388{bottom:454.806667pt;}
.y94_c01388{bottom:484.247952pt;}
.y93_c01388{bottom:484.248027pt;}
.y95_c01388{bottom:484.248571pt;}
.y97_c01388{bottom:484.248864pt;}
.y98_c01388{bottom:484.249019pt;}
.y96_c01388{bottom:484.249099pt;}
.y92_c01388{bottom:512.203781pt;}
.y91_c01388{bottom:513.264149pt;}
.y90_c01388{bottom:513.724917pt;}
.y8f_c01388{bottom:515.115925pt;}
.y8e_c01388{bottom:515.467365pt;}
.y8d_c01388{bottom:516.164341pt;}
.y8c_c01388{bottom:517.673701pt;}
.y8b_c01388{bottom:517.921333pt;}
.y8a_c01388{bottom:545.200757pt;}
.y89_c01388{bottom:546.158843pt;}
.y88_c01388{bottom:546.444544pt;}
.y87_c01388{bottom:546.986485pt;}
.y86_c01388{bottom:547.260640pt;}
.y85_c01388{bottom:548.205195pt;}
.y84_c01388{bottom:548.880139pt;}
.y83_c01388{bottom:573.946443pt;}
.y82_c01388{bottom:574.648875pt;}
.y81_c01388{bottom:575.118075pt;}
.y80_c01388{bottom:575.822203pt;}
.y7f_c01388{bottom:576.181147pt;}
.y7e_c01388{bottom:576.987563pt;}
.y7d_c01388{bottom:577.442603pt;}
.y7c_c01388{bottom:578.848363pt;}
.y7b_c01388{bottom:579.559739pt;}
.y7a_c01388{bottom:580.017691pt;}
.y79_c01388{bottom:580.562667pt;}
.y78_c01388{bottom:607.754261pt;}
.y77_c01388{bottom:608.087461pt;}
.y76_c01388{bottom:608.725233pt;}
.y75_c01388{bottom:610.214297pt;}
.y74_c01388{bottom:610.720285pt;}
.y73_c01388{bottom:611.524000pt;}
.y72_c01388{bottom:635.905808pt;}
.y71_c01388{bottom:636.323027pt;}
.y70_c01388{bottom:637.666989pt;}
.y6f_c01388{bottom:637.941912pt;}
.y6e_c01388{bottom:638.903432pt;}
.y6d_c01388{bottom:639.427816pt;}
.y6c_c01388{bottom:640.798565pt;}
.y6b_c01388{bottom:641.225435pt;}
.y6a_c01388{bottom:642.290592pt;}
.y69_c01388{bottom:642.962667pt;}
.y68_c01388{bottom:672.430987pt;}
.y67_c01388{bottom:673.176207pt;}
.y66_c01388{bottom:674.162667pt;}
.y65_c01388{bottom:701.299587pt;}
.y64_c01388{bottom:701.651093pt;}
.y63_c01388{bottom:702.426040pt;}
.y62_c01388{bottom:702.889920pt;}
.y61_c01388{bottom:703.147680pt;}
.y60_c01388{bottom:703.733067pt;}
.y5f_c01388{bottom:704.439533pt;}
.y5e_c01388{bottom:704.681987pt;}
.y5d_c01388{bottom:705.482880pt;}
.y5c_c01388{bottom:705.832213pt;}
.y5b_c01388{bottom:732.040733pt;}
.y5a_c01388{bottom:732.579747pt;}
.y59_c01388{bottom:732.901547pt;}
.y58_c01388{bottom:733.321840pt;}
.y57_c01388{bottom:734.071427pt;}
.y56_c01388{bottom:734.388720pt;}
.y55_c01388{bottom:734.706040pt;}
.y54_c01388{bottom:734.927653pt;}
.y53_c01388{bottom:736.205733pt;}
.y52_c01388{bottom:736.852493pt;}
.y51_c01388{bottom:737.275187pt;}
.y50_c01388{bottom:763.962720pt;}
.y4f_c01388{bottom:764.280040pt;}
.y4e_c01388{bottom:764.711413pt;}
.y4d_c01388{bottom:765.561867pt;}
.y4c_c01388{bottom:765.762573pt;}
.y4b_c01388{bottom:766.299920pt;}
.y4a_c01388{bottom:766.714027pt;}
.y49_c01388{bottom:767.031347pt;}
.y48_c01388{bottom:767.369200pt;}
.y47_c01388{bottom:767.585987pt;}
.y46_c01388{bottom:768.446907pt;}
.y45_c01388{bottom:768.654760pt;}
.y44_c01388{bottom:769.198960pt;}
.y43_c01388{bottom:795.768587pt;}
.y42_c01388{bottom:796.426813pt;}
.y41_c01388{bottom:796.748400pt;}
.y40_c01388{bottom:797.487560pt;}
.y3f_c01388{bottom:797.809680pt;}
.y3e_c01388{bottom:798.648840pt;}
.y3d_c01388{bottom:799.190147pt;}
.y3c_c01388{bottom:799.509867pt;}
.y3b_c01388{bottom:800.151693pt;}
.y3a_c01388{bottom:800.793520pt;}
.y39_c01388{bottom:801.120440pt;}
.y38_c01388{bottom:826.990427pt;}
.y37_c01388{bottom:827.671947pt;}
.y36_c01388{bottom:827.972213pt;}
.y35_c01388{bottom:828.937040pt;}
.y34_c01388{bottom:829.237027pt;}
.y33_c01388{bottom:829.714653pt;}
.y32_c01388{bottom:830.297800pt;}
.y31_c01388{bottom:830.600253pt;}
.y30_c01388{bottom:831.452427pt;}
.y2f_c01388{bottom:831.750160pt;}
.y2e_c01388{bottom:832.321333pt;}
.y2d_c01388{bottom:859.865737pt;}
.y2c_c01388{bottom:860.563680pt;}
.y2b_c01388{bottom:860.816937pt;}
.y2a_c01388{bottom:861.859621pt;}
.y29_c01388{bottom:862.799221pt;}
.y28_c01388{bottom:888.607040pt;}
.y27_c01388{bottom:889.248311pt;}
.y26_c01388{bottom:889.470056pt;}
.y25_c01388{bottom:890.214580pt;}
.y24_c01388{bottom:890.542263pt;}
.y23_c01388{bottom:891.067681pt;}
.y22_c01388{bottom:891.714379pt;}
.y21_c01388{bottom:892.044364pt;}
.y20_c01388{bottom:892.455911pt;}
.y1f_c01388{bottom:893.102813pt;}
.y1e_c01388{bottom:893.744729pt;}
.y1d_c01388{bottom:894.481333pt;}
.y1c_c01388{bottom:923.300173pt;}
.y1b_c01388{bottom:924.311160pt;}
.y1a_c01388{bottom:924.953640pt;}
.y19_c01388{bottom:925.680787pt;}
.y18_c01388{bottom:951.687387pt;}
.y17_c01388{bottom:952.366333pt;}
.y16_c01388{bottom:952.954613pt;}
.y15_c01388{bottom:953.343493pt;}
.y14_c01388{bottom:953.825587pt;}
.y13_c01388{bottom:955.085960pt;}
.y12_c01388{bottom:955.393120pt;}
.y11_c01388{bottom:955.968947pt;}
.y10_c01388{bottom:956.519053pt;}
.yf_c01388{bottom:957.121333pt;}
.ye_c01388{bottom:987.965433pt;}
.yd_c01388{bottom:1013.760457pt;}
.yc_c01388{bottom:1014.190865pt;}
.yb_c01388{bottom:1014.518240pt;}
.ya_c01388{bottom:1015.463389pt;}
.y9_c01388{bottom:1015.788124pt;}
.y8_c01388{bottom:1016.326332pt;}
.y7_c01388{bottom:1016.730868pt;}
.y6_c01388{bottom:1017.929208pt;}
.y5_c01388{bottom:1018.261980pt;}
.y4_c01388{bottom:1018.892617pt;}
.y3_c01388{bottom:1019.521333pt;}
.y2_c01388{bottom:1072.926667pt;}
.h2_c01388{height:16.000000pt;}
.h7_c01388{height:64.003200pt;}
.h9_c01388{height:64.003872pt;}
.hb_c01388{height:64.007200pt;}
.ha_c01388{height:69.336800pt;}
.h8_c01388{height:69.337528pt;}
.h17_c01388{height:69.338325pt;}
.h14_c01388{height:69.348620pt;}
.h6_c01388{height:74.670400pt;}
.h4_c01388{height:74.671184pt;}
.h18_c01388{height:74.672042pt;}
.hc_c01388{height:74.673984pt;}
.hd_c01388{height:74.677455pt;}
.h15_c01388{height:74.683129pt;}
.h5_c01388{height:80.004840pt;}
.h19_c01388{height:80.005760pt;}
.h13_c01388{height:80.017638pt;}
.h3_c01388{height:85.333333pt;}
.he_c01388{height:85.339477pt;}
.h12_c01388{height:85.352147pt;}
.h11_c01388{height:90.673194pt;}
.h10_c01388{height:96.006912pt;}
.h16_c01388{height:101.355675pt;}
.hf_c01388{height:112.008064pt;}
.h1_c01388{height:1111.333333pt;}
.h0_c01388{height:1111.440000pt;}
.w0_c01388{width:781.200000pt;}
.w1_c01388{width:781.333333pt;}
.x0_c01388{left:0.000000pt;}
.xba_c01388{left:123.647989pt;}
.x8f_c01388{left:124.837091pt;}
.x87_c01388{left:126.070245pt;}
.x71_c01388{left:128.154176pt;}
.xb7_c01388{left:147.738667pt;}
.x5c_c01388{left:150.749333pt;}
.xbb_c01388{left:152.462656pt;}
.xb3_c01388{left:155.789171pt;}
.x95_c01388{left:164.498752pt;}
.x72_c01388{left:167.277141pt;}
.x4e_c01388{left:169.009333pt;}
.x10_c01388{left:171.702667pt;}
.x4_c01388{left:172.646667pt;}
.x7d_c01388{left:184.191435pt;}
.xb4_c01388{left:192.777504pt;}
.x73_c01388{left:195.118491pt;}
.x5d_c01388{left:196.164000pt;}
.x96_c01388{left:203.113511pt;}
.x63_c01388{left:205.254379pt;}
.x26_c01388{left:208.161371pt;}
.xf_c01388{left:211.204259pt;}
.x90_c01388{left:213.883252pt;}
.x58_c01388{left:215.781333pt;}
.x51_c01388{left:216.790667pt;}
.xbc_c01388{left:219.891989pt;}
.xa5_c01388{left:221.838332pt;}
.x75_c01388{left:222.908000pt;}
.x6a_c01388{left:224.018667pt;}
.x29_c01388{left:228.100000pt;}
.x5_c01388{left:229.802667pt;}
.x11_c01388{left:231.930667pt;}
.x4f_c01388{left:234.773333pt;}
.x47_c01388{left:236.499627pt;}
.x1c_c01388{left:237.944000pt;}
.x91_c01388{left:241.485793pt;}
.xb8_c01388{left:243.740000pt;}
.x6b_c01388{left:244.654667pt;}
.x3e_c01388{left:245.852893pt;}
.x64_c01388{left:253.498560pt;}
.x2a_c01388{left:257.873333pt;}
.x9f_c01388{left:261.248504pt;}
.x88_c01388{left:262.436195pt;}
.x19_c01388{left:266.959880pt;}
.xad_c01388{left:271.932352pt;}
.x74_c01388{left:272.883024pt;}
.x36_c01388{left:276.330520pt;}
.x97_c01388{left:281.395280pt;}
.x76_c01388{left:283.374667pt;}
.x50_c01388{left:284.454667pt;}
.x6_c01388{left:287.133333pt;}
.xbd_c01388{left:289.266656pt;}
.x89_c01388{left:290.500741pt;}
.x52_c01388{left:292.873333pt;}
.x1d_c01388{left:296.300000pt;}
.x48_c01388{left:303.254293pt;}
.x3f_c01388{left:304.661640pt;}
.x1a_c01388{left:316.406400pt;}
.x7_c01388{left:317.385333pt;}
.xae_c01388{left:319.702741pt;}
.x65_c01388{left:320.987611pt;}
.x49_c01388{left:323.499227pt;}
.x1_c01388{left:328.080000pt;}
.x98_c01388{left:330.959029pt;}
.x59_c01388{left:333.137333pt;}
.xc5_c01388{left:336.698267pt;}
.x7e_c01388{left:339.295685pt;}
.x66_c01388{left:340.611147pt;}
.x2b_c01388{left:343.090667pt;}
.x12_c01388{left:344.524000pt;}
.xc3_c01388{left:346.333973pt;}
.x2_c01388{left:348.000000pt;}
.x1e_c01388{left:355.109333pt;}
.xbe_c01388{left:356.007989pt;}
.xb5_c01388{left:357.723335pt;}
.x99_c01388{left:361.837497pt;}
.xa6_c01388{left:367.842325pt;}
.x7f_c01388{left:369.280505pt;}
.x5a_c01388{left:370.653333pt;}
.x27_c01388{left:373.336885pt;}
.x37_c01388{left:374.233533pt;}
.x13_c01388{left:375.240000pt;}
.xa0_c01388{left:378.412480pt;}
.x67_c01388{left:379.327552pt;}
.x4a_c01388{left:382.411387pt;}
.x32_c01388{left:384.324720pt;}
.xbf_c01388{left:385.519989pt;}
.xa7_c01388{left:386.780968pt;}
.x3_c01388{left:387.840000pt;}
.x5b_c01388{left:390.253333pt;}
.x1f_c01388{left:392.522667pt;}
.x1b_c01388{left:394.169400pt;}
.x8a_c01388{left:397.125780pt;}
.x68_c01388{left:399.691056pt;}
.x38_c01388{left:404.951893pt;}
.x5e_c01388{left:410.754667pt;}
.x9a_c01388{left:416.090227pt;}
.x80_c01388{left:417.778757pt;}
.x77_c01388{left:418.945333pt;}
.x40_c01388{left:420.868480pt;}
.x20_c01388{left:422.521333pt;}
.x8_c01388{left:426.325333pt;}
.x6c_c01388{left:428.516000pt;}
.x2c_c01388{left:431.650667pt;}
.x33_c01388{left:433.521560pt;}
.xc0_c01388{left:434.973323pt;}
.x41_c01388{left:441.029613pt;}
.x78_c01388{left:446.538667pt;}
.x5f_c01388{left:448.674667pt;}
.x28_c01388{left:452.536005pt;}
.xaf_c01388{left:455.091743pt;}
.x9b_c01388{left:456.900128pt;}
.x6d_c01388{left:457.802667pt;}
.x53_c01388{left:458.730667pt;}
.x9_c01388{left:463.101333pt;}
.x92_c01388{left:465.742824pt;}
.x69_c01388{left:468.085408pt;}
.x42_c01388{left:469.827987pt;}
.x39_c01388{left:471.427227pt;}
.xc4_c01388{left:473.299691pt;}
.xa8_c01388{left:474.400697pt;}
.x79_c01388{left:476.312000pt;}
.x2d_c01388{left:479.413333pt;}
.x21_c01388{left:481.312000pt;}
.xc1_c01388{left:482.981323pt;}
.x8b_c01388{left:484.964232pt;}
.x4b_c01388{left:491.378547pt;}
.x81_c01388{left:495.557605pt;}
.x43_c01388{left:498.623693pt;}
.x14_c01388{left:501.277333pt;}
.x9c_c01388{left:504.395429pt;}
.x2e_c01388{left:509.412000pt;}
.xa_c01388{left:512.029333pt;}
.xa1_c01388{left:513.086577pt;}
.x60_c01388{left:515.876000pt;}
.x3a_c01388{left:520.228067pt;}
.xc2_c01388{left:522.826656pt;}
.x93_c01388{left:524.552607pt;}
.x82_c01388{left:525.565092pt;}
.x54_c01388{left:527.410667pt;}
.x22_c01388{left:529.077333pt;}
.xb0_c01388{left:532.388485pt;}
.x8c_c01388{left:534.163897pt;}
.x34_c01388{left:539.115173pt;}
.xb_c01388{left:541.550667pt;}
.x61_c01388{left:545.788000pt;}
.x55_c01388{left:547.048000pt;}
.x15_c01388{left:549.486667pt;}
.xa9_c01388{left:552.398411pt;}
.x83_c01388{left:553.411935pt;}
.x4c_c01388{left:555.938587pt;}
.x23_c01388{left:558.866667pt;}
.xb1_c01388{left:561.674727pt;}
.x44_c01388{left:566.781680pt;}
.x6e_c01388{left:573.720000pt;}
.x7a_c01388{left:579.949333pt;}
.x84_c01388{left:583.188699pt;}
.x4d_c01388{left:585.222000pt;}
.x16_c01388{left:588.374667pt;}
.xb2_c01388{left:590.720856pt;}
.xa2_c01388{left:600.942545pt;}
.x45_c01388{left:604.943960pt;}
.x2f_c01388{left:605.894667pt;}
.x9d_c01388{left:610.253633pt;}
.x6f_c01388{left:612.117333pt;}
.x3b_c01388{left:615.743107pt;}
.x7b_c01388{left:621.336000pt;}
.x24_c01388{left:626.550667pt;}
.xc_c01388{left:627.473333pt;}
.xaa_c01388{left:629.733317pt;}
.x8d_c01388{left:630.661475pt;}
.x46_c01388{left:634.190333pt;}
.x30_c01388{left:635.921333pt;}
.xb9_c01388{left:639.270667pt;}
.x9e_c01388{left:640.741379pt;}
.x85_c01388{left:641.748585pt;}
.x56_c01388{left:643.045333pt;}
.x17_c01388{left:647.202667pt;}
.xab_c01388{left:648.901349pt;}
.x94_c01388{left:650.356379pt;}
.x3c_c01388{left:655.013387pt;}
.xb6_c01388{left:656.105032pt;}
.xd_c01388{left:657.234667pt;}
.xa3_c01388{left:658.795671pt;}
.x8e_c01388{left:669.532289pt;}
.x86_c01388{left:670.559708pt;}
.x57_c01388{left:672.846667pt;}
.xac_c01388{left:678.430204pt;}
.x3d_c01388{left:683.811760pt;}
.xa4_c01388{left:688.803847pt;}
.x35_c01388{left:695.410947pt;}
.xe_c01388{left:696.362667pt;}
.x70_c01388{left:700.481333pt;}
.x62_c01388{left:702.101333pt;}
.x31_c01388{left:704.073333pt;}
.x25_c01388{left:705.006667pt;}
.x18_c01388{left:715.097333pt;}
.x7c_c01388{left:717.918667pt;}
}





/* 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_c01389 {
    display:none;
  }
  .loading-indicator_c01389.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01389 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_c01389 { 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_c01389" -> "#page-container .classname_c01389")
 */
.pf_c01389 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01389 { /* 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_c01389.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01389 { /* 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_c01389 { /* 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_c01389 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01389 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01389 {overflow:visible;}
  }
}
.c_c01389 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01389 { /* 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_c01389:after { /* webkit #35443 */
  content: '';
}
.t_c01389:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01389 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 */
}
.__c01389 { /* 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_c01389 { /* info for Javascript */
  display:none;
}
.l_c01389 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01389 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01389 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01389: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_c01389 {
    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_c01389.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01389.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_c01389 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01389{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01389;src:url('chunks/assets/font_92d6bb63cbc780ceff7db400.woff2')format("woff");}.ff1_c01389{font-family:ff1_c01389;line-height:1.000000;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;}
.m8_c01389{transform:matrix(0.177230,0.002304,-0.003250,0.249979,0,0);-ms-transform:matrix(0.177230,0.002304,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.177230,0.002304,-0.003250,0.249979,0,0);}
.m7_c01389{transform:matrix(0.182960,0.002378,-0.003250,0.249979,0,0);-ms-transform:matrix(0.182960,0.002378,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.182960,0.002378,-0.003250,0.249979,0,0);}
.m5_c01389{transform:matrix(0.221115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221115,0.000000,0.000000,0.250000,0,0);}
.m3_c01389{transform:matrix(0.223960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223960,0.000000,0.000000,0.250000,0,0);}
.m6_c01389{transform:matrix(0.225391,0.002930,-0.003250,0.249979,0,0);-ms-transform:matrix(0.225391,0.002930,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.225391,0.002930,-0.003250,0.249979,0,0);}
.ma_c01389{transform:matrix(0.231505,0.003010,-0.003250,0.249979,0,0);-ms-transform:matrix(0.231505,0.003010,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.231505,0.003010,-0.003250,0.249979,0,0);}
.m9_c01389{transform:matrix(0.234250,0.003045,-0.003250,0.249979,0,0);-ms-transform:matrix(0.234250,0.003045,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.234250,0.003045,-0.003250,0.249979,0,0);}
.mb_c01389{transform:matrix(0.239110,0.003108,-0.003250,0.249979,0,0);-ms-transform:matrix(0.239110,0.003108,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.239110,0.003108,-0.003250,0.249979,0,0);}
.m4_c01389{transform:matrix(0.252880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252880,0.000000,0.000000,0.250000,0,0);}
.m1_c01389{transform:matrix(0.321505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321505,0.000000,0.000000,0.250000,0,0);}
.m2_c01389{transform:matrix(0.374215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374215,0.000000,0.000000,0.250000,0,0);}
.m0_c01389{transform:matrix(0.695910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.695910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.695910,0.000000,0.000000,0.250000,0,0);}
.v0_c01389{vertical-align:0.000000px;}
.ls0_c01389{letter-spacing:0.000000px;}
.sc__c01389{text-shadow:none;}
.sc0_c01389{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__c01389{-webkit-text-stroke:0px transparent;}
.sc0_c01389{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01389{word-spacing:0.000000px;}
.fc0_c01389{color:transparent;}
.fs0_c01389{font-size:90.000000px;}
.fs1_c01389{font-size:102.008619px;}
.y0_c01389{bottom:0.000000px;}
.y7_c01389{bottom:533.511626px;}
.y6_c01389{bottom:533.939807px;}
.y5_c01389{bottom:534.660078px;}
.y4_c01389{bottom:535.091672px;}
.y3_c01389{bottom:535.793789px;}
.y2_c01389{bottom:536.493000px;}
.y1_c01389{bottom:607.417500px;}
.h2_c01389{height:90.000000px;}
.h3_c01389{height:102.008619px;}
.h1_c01389{height:1250.250000px;}
.h0_c01389{height:1250.370000px;}
.w0_c01389{width:878.850000px;}
.w1_c01389{width:879.000000px;}
.x0_c01389{left:0.000000px;}
.x1_c01389{left:336.960000px;}
.x2_c01389{left:409.320000px;}
.x3_c01389{left:432.810000px;}
.x7_c01389{left:452.544000px;}
.x4_c01389{left:484.380000px;}
.x5_c01389{left:506.790000px;}
.x8_c01389{left:560.338500px;}
.x6_c01389{left:583.470000px;}
.x9_c01389{left:593.538000px;}
.xa_c01389{left:648.943500px;}
.xb_c01389{left:681.880500px;}
@media print{
.v0_c01389{vertical-align:0.000000pt;}
.ls0_c01389{letter-spacing:0.000000pt;}
.ws0_c01389{word-spacing:0.000000pt;}
.fs0_c01389{font-size:80.000000pt;}
.fs1_c01389{font-size:90.674328pt;}
.y0_c01389{bottom:0.000000pt;}
.y7_c01389{bottom:474.232556pt;}
.y6_c01389{bottom:474.613161pt;}
.y5_c01389{bottom:475.253403pt;}
.y4_c01389{bottom:475.637041pt;}
.y3_c01389{bottom:476.261145pt;}
.y2_c01389{bottom:476.882667pt;}
.y1_c01389{bottom:539.926667pt;}
.h2_c01389{height:80.000000pt;}
.h3_c01389{height:90.674328pt;}
.h1_c01389{height:1111.333333pt;}
.h0_c01389{height:1111.440000pt;}
.w0_c01389{width:781.200000pt;}
.w1_c01389{width:781.333333pt;}
.x0_c01389{left:0.000000pt;}
.x1_c01389{left:299.520000pt;}
.x2_c01389{left:363.840000pt;}
.x3_c01389{left:384.720000pt;}
.x7_c01389{left:402.261333pt;}
.x4_c01389{left:430.560000pt;}
.x5_c01389{left:450.480000pt;}
.x8_c01389{left:498.078667pt;}
.x6_c01389{left:518.640000pt;}
.x9_c01389{left:527.589333pt;}
.xa_c01389{left:576.838667pt;}
.xb_c01389{left:606.116000pt;}
}





/* 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_c01390 {
    display:none;
  }
  .loading-indicator_c01390.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01390 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_c01390 { 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_c01390" -> "#page-container .classname_c01390")
 */
.pf_c01390 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01390 { /* 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_c01390.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01390 { /* 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_c01390 { /* 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_c01390 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01390 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01390 {overflow:visible;}
  }
}
.c_c01390 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01390 { /* 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_c01390:after { /* webkit #35443 */
  content: '';
}
.t_c01390:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01390 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 */
}
.__c01390 { /* 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_c01390 { /* info for Javascript */
  display:none;
}
.l_c01390 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01390 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01390 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01390: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_c01390 {
    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_c01390.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01390.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_c01390 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01390{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01390;src:url('chunks/assets/font_fabf4b590f7fb32aea93ffb2.woff2')format("woff");}.ff1_c01390{font-family:ff1_c01390;line-height:1.000000;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;}
.md5_c01390{transform:matrix(0.042249,0.000718,-0.004249,0.249964,0,0);-ms-transform:matrix(0.042249,0.000718,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.042249,0.000718,-0.004249,0.249964,0,0);}
.mc5_c01390{transform:matrix(0.170935,0.001880,-0.002750,0.249985,0,0);-ms-transform:matrix(0.170935,0.001880,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.170935,0.001880,-0.002750,0.249985,0,0);}
.m70_c01390{transform:matrix(0.175179,0.001927,-0.002750,0.249985,0,0);-ms-transform:matrix(0.175179,0.001927,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.175179,0.001927,-0.002750,0.249985,0,0);}
.mc3_c01390{transform:matrix(0.175824,0.001934,-0.002750,0.249985,0,0);-ms-transform:matrix(0.175824,0.001934,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.175824,0.001934,-0.002750,0.249985,0,0);}
.mc1_c01390{transform:matrix(0.177979,0.001958,-0.002750,0.249985,0,0);-ms-transform:matrix(0.177979,0.001958,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.177979,0.001958,-0.002750,0.249985,0,0);}
.mc2_c01390{transform:matrix(0.179619,0.001976,-0.002750,0.249985,0,0);-ms-transform:matrix(0.179619,0.001976,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.179619,0.001976,-0.002750,0.249985,0,0);}
.m76_c01390{transform:matrix(0.181554,0.001997,-0.002750,0.249985,0,0);-ms-transform:matrix(0.181554,0.001997,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.181554,0.001997,-0.002750,0.249985,0,0);}
.m75_c01390{transform:matrix(0.183179,0.002015,-0.002750,0.249985,0,0);-ms-transform:matrix(0.183179,0.002015,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.183179,0.002015,-0.002750,0.249985,0,0);}
.mc0_c01390{transform:matrix(0.183859,0.002022,-0.002750,0.249985,0,0);-ms-transform:matrix(0.183859,0.002022,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.183859,0.002022,-0.002750,0.249985,0,0);}
.m8b_c01390{transform:matrix(0.184024,0.002024,-0.002750,0.249985,0,0);-ms-transform:matrix(0.184024,0.002024,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.184024,0.002024,-0.002750,0.249985,0,0);}
.m6c_c01390{transform:matrix(0.187504,0.002063,-0.002750,0.249985,0,0);-ms-transform:matrix(0.187504,0.002063,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.187504,0.002063,-0.002750,0.249985,0,0);}
.mbf_c01390{transform:matrix(0.189159,0.002081,-0.002750,0.249985,0,0);-ms-transform:matrix(0.189159,0.002081,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.189159,0.002081,-0.002750,0.249985,0,0);}
.m73_c01390{transform:matrix(0.189964,0.002090,-0.002750,0.249985,0,0);-ms-transform:matrix(0.189964,0.002090,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.189964,0.002090,-0.002750,0.249985,0,0);}
.mfc_c01390{transform:matrix(0.189976,0.003040,-0.003999,0.249968,0,0);-ms-transform:matrix(0.189976,0.003040,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.189976,0.003040,-0.003999,0.249968,0,0);}
.mec_c01390{transform:matrix(0.190404,0.002475,-0.003250,0.249979,0,0);-ms-transform:matrix(0.190404,0.002475,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.190404,0.002475,-0.003250,0.249979,0,0);}
.m6f_c01390{transform:matrix(0.193993,0.002134,-0.002750,0.249985,0,0);-ms-transform:matrix(0.193993,0.002134,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.193993,0.002134,-0.002750,0.249985,0,0);}
.mc7_c01390{transform:matrix(0.194067,0.003299,-0.004249,0.249964,0,0);-ms-transform:matrix(0.194067,0.003299,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.194067,0.003299,-0.004249,0.249964,0,0);}
.m74_c01390{transform:matrix(0.194198,0.002136,-0.002750,0.249985,0,0);-ms-transform:matrix(0.194198,0.002136,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.194198,0.002136,-0.002750,0.249985,0,0);}
.md3_c01390{transform:matrix(0.194707,0.003310,-0.004249,0.249964,0,0);-ms-transform:matrix(0.194707,0.003310,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.194707,0.003310,-0.004249,0.249964,0,0);}
.m53_c01390{transform:matrix(0.195086,0.002731,-0.003500,0.249976,0,0);-ms-transform:matrix(0.195086,0.002731,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.195086,0.002731,-0.003500,0.249976,0,0);}
.m71_c01390{transform:matrix(0.195638,0.002152,-0.002750,0.249985,0,0);-ms-transform:matrix(0.195638,0.002152,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.195638,0.002152,-0.002750,0.249985,0,0);}
.m2f_c01390{transform:matrix(0.197108,0.002957,-0.003750,0.249972,0,0);-ms-transform:matrix(0.197108,0.002957,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.197108,0.002957,-0.003750,0.249972,0,0);}
.mb_c01390{transform:matrix(0.197508,0.002568,-0.003250,0.249979,0,0);-ms-transform:matrix(0.197508,0.002568,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.197508,0.002568,-0.003250,0.249979,0,0);}
.mb9_c01390{transform:matrix(0.199318,0.002192,-0.002750,0.249985,0,0);-ms-transform:matrix(0.199318,0.002192,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.199318,0.002192,-0.002750,0.249985,0,0);}
.mfd_c01390{transform:matrix(0.199694,0.003195,-0.003999,0.249968,0,0);-ms-transform:matrix(0.199694,0.003195,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.199694,0.003195,-0.003999,0.249968,0,0);}
.mfb_c01390{transform:matrix(0.199879,0.003198,-0.003999,0.249968,0,0);-ms-transform:matrix(0.199879,0.003198,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.199879,0.003198,-0.003999,0.249968,0,0);}
.mc9_c01390{transform:matrix(0.200331,0.003406,-0.004249,0.249964,0,0);-ms-transform:matrix(0.200331,0.003406,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.200331,0.003406,-0.004249,0.249964,0,0);}
.m100_c01390{transform:matrix(0.200979,0.003216,-0.003999,0.249968,0,0);-ms-transform:matrix(0.200979,0.003216,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.200979,0.003216,-0.003999,0.249968,0,0);}
.m72_c01390{transform:matrix(0.201338,0.002215,-0.002750,0.249985,0,0);-ms-transform:matrix(0.201338,0.002215,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.201338,0.002215,-0.002750,0.249985,0,0);}
.md_c01390{transform:matrix(0.203148,0.002641,-0.003250,0.249979,0,0);-ms-transform:matrix(0.203148,0.002641,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.203148,0.002641,-0.003250,0.249979,0,0);}
.m54_c01390{transform:matrix(0.203835,0.002854,-0.003500,0.249976,0,0);-ms-transform:matrix(0.203835,0.002854,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.203835,0.002854,-0.003500,0.249976,0,0);}
.mde_c01390{transform:matrix(0.204843,0.002663,-0.003250,0.249979,0,0);-ms-transform:matrix(0.204843,0.002663,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.204843,0.002663,-0.003250,0.249979,0,0);}
.mc4_c01390{transform:matrix(0.205088,0.002256,-0.002750,0.249985,0,0);-ms-transform:matrix(0.205088,0.002256,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.205088,0.002256,-0.002750,0.249985,0,0);}
.m9_c01390{transform:matrix(0.205398,0.002670,-0.003250,0.249979,0,0);-ms-transform:matrix(0.205398,0.002670,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.205398,0.002670,-0.003250,0.249979,0,0);}
.mb3_c01390{transform:matrix(0.205553,0.002261,-0.002750,0.249985,0,0);-ms-transform:matrix(0.205553,0.002261,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.205553,0.002261,-0.002750,0.249985,0,0);}
.mff_c01390{transform:matrix(0.205764,0.003292,-0.003999,0.249968,0,0);-ms-transform:matrix(0.205764,0.003292,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.205764,0.003292,-0.003999,0.249968,0,0);}
.m5c_c01390{transform:matrix(0.206410,0.002890,-0.003500,0.249976,0,0);-ms-transform:matrix(0.206410,0.002890,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.206410,0.002890,-0.003500,0.249976,0,0);}
.m77_c01390{transform:matrix(0.206543,0.002272,-0.002750,0.249985,0,0);-ms-transform:matrix(0.206543,0.002272,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.206543,0.002272,-0.002750,0.249985,0,0);}
.m7d_c01390{transform:matrix(0.206652,0.002273,-0.002750,0.249985,0,0);-ms-transform:matrix(0.206652,0.002273,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.206652,0.002273,-0.002750,0.249985,0,0);}
.mfe_c01390{transform:matrix(0.207418,0.003319,-0.003999,0.249968,0,0);-ms-transform:matrix(0.207418,0.003319,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.207418,0.003319,-0.003999,0.249968,0,0);}
.m89_c01390{transform:matrix(0.207882,0.002287,-0.002750,0.249985,0,0);-ms-transform:matrix(0.207882,0.002287,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.207882,0.002287,-0.002750,0.249985,0,0);}
.mce_c01390{transform:matrix(0.208170,0.003539,-0.004249,0.249964,0,0);-ms-transform:matrix(0.208170,0.003539,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.208170,0.003539,-0.004249,0.249964,0,0);}
.m3a_c01390{transform:matrix(0.208532,0.003128,-0.003750,0.249972,0,0);-ms-transform:matrix(0.208532,0.003128,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.208532,0.003128,-0.003750,0.249972,0,0);}
.m60_c01390{transform:matrix(0.209792,0.002308,-0.002750,0.249985,0,0);-ms-transform:matrix(0.209792,0.002308,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.209792,0.002308,-0.002750,0.249985,0,0);}
.m34_c01390{transform:matrix(0.211001,0.003165,-0.003750,0.249972,0,0);-ms-transform:matrix(0.211001,0.003165,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.211001,0.003165,-0.003750,0.249972,0,0);}
.mca_c01390{transform:matrix(0.211334,0.003593,-0.004249,0.249964,0,0);-ms-transform:matrix(0.211334,0.003593,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.211334,0.003593,-0.004249,0.249964,0,0);}
.m32_c01390{transform:matrix(0.211556,0.003173,-0.003750,0.249972,0,0);-ms-transform:matrix(0.211556,0.003173,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.211556,0.003173,-0.003750,0.249972,0,0);}
.m56_c01390{transform:matrix(0.211559,0.002962,-0.003500,0.249976,0,0);-ms-transform:matrix(0.211559,0.002962,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.211559,0.002962,-0.003500,0.249976,0,0);}
.m8c_c01390{transform:matrix(0.212402,0.002336,-0.002750,0.249985,0,0);-ms-transform:matrix(0.212402,0.002336,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.212402,0.002336,-0.002750,0.249985,0,0);}
.m3d_c01390{transform:matrix(0.212476,0.003187,-0.003750,0.249972,0,0);-ms-transform:matrix(0.212476,0.003187,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.212476,0.003187,-0.003750,0.249972,0,0);}
.m3c_c01390{transform:matrix(0.212756,0.003191,-0.003750,0.249972,0,0);-ms-transform:matrix(0.212756,0.003191,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.212756,0.003191,-0.003750,0.249972,0,0);}
.m5e_c01390{transform:matrix(0.213339,0.002987,-0.003500,0.249976,0,0);-ms-transform:matrix(0.213339,0.002987,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.213339,0.002987,-0.003500,0.249976,0,0);}
.m66_c01390{transform:matrix(0.213347,0.002347,-0.002750,0.249985,0,0);-ms-transform:matrix(0.213347,0.002347,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.213347,0.002347,-0.002750,0.249985,0,0);}
.mbb_c01390{transform:matrix(0.213417,0.002348,-0.002750,0.249985,0,0);-ms-transform:matrix(0.213417,0.002348,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.213417,0.002348,-0.002750,0.249985,0,0);}
.md7_c01390{transform:matrix(0.213947,0.002781,-0.003250,0.249979,0,0);-ms-transform:matrix(0.213947,0.002781,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.213947,0.002781,-0.003250,0.249979,0,0);}
.m3_c01390{transform:matrix(0.214262,0.002785,-0.003250,0.249979,0,0);-ms-transform:matrix(0.214262,0.002785,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.214262,0.002785,-0.003250,0.249979,0,0);}
.mcd_c01390{transform:matrix(0.216049,0.003673,-0.004249,0.249964,0,0);-ms-transform:matrix(0.216049,0.003673,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.216049,0.003673,-0.004249,0.249964,0,0);}
.m38_c01390{transform:matrix(0.216311,0.003245,-0.003750,0.249972,0,0);-ms-transform:matrix(0.216311,0.003245,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.216311,0.003245,-0.003750,0.249972,0,0);}
.m6e_c01390{transform:matrix(0.216937,0.002386,-0.002750,0.249985,0,0);-ms-transform:matrix(0.216937,0.002386,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.216937,0.002386,-0.002750,0.249985,0,0);}
.m4_c01390{transform:matrix(0.216962,0.002821,-0.003250,0.249979,0,0);-ms-transform:matrix(0.216962,0.002821,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.216962,0.002821,-0.003250,0.249979,0,0);}
.mcf_c01390{transform:matrix(0.217094,0.003691,-0.004249,0.249964,0,0);-ms-transform:matrix(0.217094,0.003691,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.217094,0.003691,-0.004249,0.249964,0,0);}
.m35_c01390{transform:matrix(0.217111,0.003257,-0.003750,0.249972,0,0);-ms-transform:matrix(0.217111,0.003257,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.217111,0.003257,-0.003750,0.249972,0,0);}
.mf2_c01390{transform:matrix(0.217602,0.002829,-0.003250,0.249979,0,0);-ms-transform:matrix(0.217602,0.002829,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.217602,0.002829,-0.003250,0.249979,0,0);}
.mc6_c01390{transform:matrix(0.217669,0.003700,-0.004249,0.249964,0,0);-ms-transform:matrix(0.217669,0.003700,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.217669,0.003700,-0.004249,0.249964,0,0);}
.m58_c01390{transform:matrix(0.217909,0.003051,-0.003500,0.249976,0,0);-ms-transform:matrix(0.217909,0.003051,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.217909,0.003051,-0.003500,0.249976,0,0);}
.m22_c01390{transform:matrix(0.218230,0.003273,-0.003750,0.249972,0,0);-ms-transform:matrix(0.218230,0.003273,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.218230,0.003273,-0.003750,0.249972,0,0);}
.m23_c01390{transform:matrix(0.218770,0.003282,-0.003750,0.249972,0,0);-ms-transform:matrix(0.218770,0.003282,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.218770,0.003282,-0.003750,0.249972,0,0);}
.m6_c01390{transform:matrix(0.219146,0.002849,-0.003250,0.249979,0,0);-ms-transform:matrix(0.219146,0.002849,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.219146,0.002849,-0.003250,0.249979,0,0);}
.m86_c01390{transform:matrix(0.219467,0.002414,-0.002750,0.249985,0,0);-ms-transform:matrix(0.219467,0.002414,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.219467,0.002414,-0.002750,0.249985,0,0);}
.m9d_c01390{transform:matrix(0.219847,0.002418,-0.002750,0.249985,0,0);-ms-transform:matrix(0.219847,0.002418,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.219847,0.002418,-0.002750,0.249985,0,0);}
.m7_c01390{transform:matrix(0.219941,0.002859,-0.003250,0.249979,0,0);-ms-transform:matrix(0.219941,0.002859,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.219941,0.002859,-0.003250,0.249979,0,0);}
.mcb_c01390{transform:matrix(0.220023,0.003740,-0.004249,0.249964,0,0);-ms-transform:matrix(0.220023,0.003740,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.220023,0.003740,-0.004249,0.249964,0,0);}
.mbc_c01390{transform:matrix(0.220302,0.002423,-0.002750,0.249985,0,0);-ms-transform:matrix(0.220302,0.002423,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.220302,0.002423,-0.002750,0.249985,0,0);}
.md2_c01390{transform:matrix(0.220448,0.003748,-0.004249,0.249964,0,0);-ms-transform:matrix(0.220448,0.003748,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.220448,0.003748,-0.004249,0.249964,0,0);}
.mba_c01390{transform:matrix(0.220602,0.002427,-0.002750,0.249985,0,0);-ms-transform:matrix(0.220602,0.002427,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.220602,0.002427,-0.002750,0.249985,0,0);}
.mf8_c01390{transform:matrix(0.220607,0.003530,-0.003999,0.249968,0,0);-ms-transform:matrix(0.220607,0.003530,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.220607,0.003530,-0.003999,0.249968,0,0);}
.m59_c01390{transform:matrix(0.220623,0.003089,-0.003500,0.249976,0,0);-ms-transform:matrix(0.220623,0.003089,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.220623,0.003089,-0.003500,0.249976,0,0);}
.m64_c01390{transform:matrix(0.220787,0.002429,-0.002750,0.249985,0,0);-ms-transform:matrix(0.220787,0.002429,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.220787,0.002429,-0.002750,0.249985,0,0);}
.m17_c01390{transform:matrix(0.220850,0.003313,-0.003750,0.249972,0,0);-ms-transform:matrix(0.220850,0.003313,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.220850,0.003313,-0.003750,0.249972,0,0);}
.mc8_c01390{transform:matrix(0.221148,0.003760,-0.004249,0.249964,0,0);-ms-transform:matrix(0.221148,0.003760,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.221148,0.003760,-0.004249,0.249964,0,0);}
.m55_c01390{transform:matrix(0.221948,0.003107,-0.003500,0.249976,0,0);-ms-transform:matrix(0.221948,0.003107,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.221948,0.003107,-0.003500,0.249976,0,0);}
.m8f_c01390{transform:matrix(0.222297,0.002445,-0.002750,0.249985,0,0);-ms-transform:matrix(0.222297,0.002445,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.222297,0.002445,-0.002750,0.249985,0,0);}
.m3b_c01390{transform:matrix(0.222405,0.003336,-0.003750,0.249972,0,0);-ms-transform:matrix(0.222405,0.003336,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.222405,0.003336,-0.003750,0.249972,0,0);}
.mdc_c01390{transform:matrix(0.222716,0.002895,-0.003250,0.249979,0,0);-ms-transform:matrix(0.222716,0.002895,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.222716,0.002895,-0.003250,0.249979,0,0);}
.mbe_c01390{transform:matrix(0.222937,0.002452,-0.002750,0.249985,0,0);-ms-transform:matrix(0.222937,0.002452,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.222937,0.002452,-0.002750,0.249985,0,0);}
.m2e_c01390{transform:matrix(0.223005,0.003345,-0.003750,0.249972,0,0);-ms-transform:matrix(0.223005,0.003345,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.223005,0.003345,-0.003750,0.249972,0,0);}
.m63_c01390{transform:matrix(0.223466,0.002458,-0.002750,0.249985,0,0);-ms-transform:matrix(0.223466,0.002458,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.223466,0.002458,-0.002750,0.249985,0,0);}
.ma3_c01390{transform:matrix(0.224056,0.002465,-0.002750,0.249985,0,0);-ms-transform:matrix(0.224056,0.002465,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.224056,0.002465,-0.002750,0.249985,0,0);}
.m8a_c01390{transform:matrix(0.224506,0.002470,-0.002750,0.249985,0,0);-ms-transform:matrix(0.224506,0.002470,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.224506,0.002470,-0.002750,0.249985,0,0);}
.m50_c01390{transform:matrix(0.224710,0.003371,-0.003750,0.249972,0,0);-ms-transform:matrix(0.224710,0.003371,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.224710,0.003371,-0.003750,0.249972,0,0);}
.m82_c01390{transform:matrix(0.224971,0.002475,-0.002750,0.249985,0,0);-ms-transform:matrix(0.224971,0.002475,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.224971,0.002475,-0.002750,0.249985,0,0);}
.m10_c01390{transform:matrix(0.225245,0.003379,-0.003750,0.249972,0,0);-ms-transform:matrix(0.225245,0.003379,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.225245,0.003379,-0.003750,0.249972,0,0);}
.m11_c01390{transform:matrix(0.225290,0.003379,-0.003750,0.249972,0,0);-ms-transform:matrix(0.225290,0.003379,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.225290,0.003379,-0.003750,0.249972,0,0);}
.mf4_c01390{transform:matrix(0.225296,0.002929,-0.003250,0.249979,0,0);-ms-transform:matrix(0.225296,0.002929,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.225296,0.002929,-0.003250,0.249979,0,0);}
.me0_c01390{transform:matrix(0.225306,0.002929,-0.003250,0.249979,0,0);-ms-transform:matrix(0.225306,0.002929,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.225306,0.002929,-0.003250,0.249979,0,0);}
.m7c_c01390{transform:matrix(0.225311,0.002478,-0.002750,0.249985,0,0);-ms-transform:matrix(0.225311,0.002478,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.225311,0.002478,-0.002750,0.249985,0,0);}
.m8d_c01390{transform:matrix(0.225611,0.002482,-0.002750,0.249985,0,0);-ms-transform:matrix(0.225611,0.002482,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.225611,0.002482,-0.002750,0.249985,0,0);}
.m5f_c01390{transform:matrix(0.225646,0.002482,-0.002750,0.249985,0,0);-ms-transform:matrix(0.225646,0.002482,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.225646,0.002482,-0.002750,0.249985,0,0);}
.me_c01390{transform:matrix(0.225991,0.002938,-0.003250,0.249979,0,0);-ms-transform:matrix(0.225991,0.002938,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.225991,0.002938,-0.003250,0.249979,0,0);}
.m85_c01390{transform:matrix(0.225996,0.002486,-0.002750,0.249985,0,0);-ms-transform:matrix(0.225996,0.002486,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.225996,0.002486,-0.002750,0.249985,0,0);}
.m15_c01390{transform:matrix(0.226040,0.003391,-0.003750,0.249972,0,0);-ms-transform:matrix(0.226040,0.003391,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.226040,0.003391,-0.003750,0.249972,0,0);}
.m19_c01390{transform:matrix(0.226550,0.003398,-0.003750,0.249972,0,0);-ms-transform:matrix(0.226550,0.003398,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.226550,0.003398,-0.003750,0.249972,0,0);}
.mf6_c01390{transform:matrix(0.226556,0.002945,-0.003250,0.249979,0,0);-ms-transform:matrix(0.226556,0.002945,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.226556,0.002945,-0.003250,0.249979,0,0);}
.m6d_c01390{transform:matrix(0.226921,0.002496,-0.002750,0.249985,0,0);-ms-transform:matrix(0.226921,0.002496,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.226921,0.002496,-0.002750,0.249985,0,0);}
.m57_c01390{transform:matrix(0.227083,0.003179,-0.003500,0.249976,0,0);-ms-transform:matrix(0.227083,0.003179,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.227083,0.003179,-0.003500,0.249976,0,0);}
.med_c01390{transform:matrix(0.227186,0.002953,-0.003250,0.249979,0,0);-ms-transform:matrix(0.227186,0.002953,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.227186,0.002953,-0.003250,0.249979,0,0);}
.md0_c01390{transform:matrix(0.228092,0.003878,-0.004249,0.249964,0,0);-ms-transform:matrix(0.228092,0.003878,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.228092,0.003878,-0.004249,0.249964,0,0);}
.m90_c01390{transform:matrix(0.228216,0.002510,-0.002750,0.249985,0,0);-ms-transform:matrix(0.228216,0.002510,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.228216,0.002510,-0.002750,0.249985,0,0);}
.md6_c01390{transform:matrix(0.228491,0.002970,-0.003250,0.249979,0,0);-ms-transform:matrix(0.228491,0.002970,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.228491,0.002970,-0.003250,0.249979,0,0);}
.m5d_c01390{transform:matrix(0.228703,0.003202,-0.003500,0.249976,0,0);-ms-transform:matrix(0.228703,0.003202,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.228703,0.003202,-0.003500,0.249976,0,0);}
.mf_c01390{transform:matrix(0.229179,0.003438,-0.003750,0.249972,0,0);-ms-transform:matrix(0.229179,0.003438,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.229179,0.003438,-0.003750,0.249972,0,0);}
.m39_c01390{transform:matrix(0.229664,0.003445,-0.003750,0.249972,0,0);-ms-transform:matrix(0.229664,0.003445,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.229664,0.003445,-0.003750,0.249972,0,0);}
.mdd_c01390{transform:matrix(0.229756,0.002987,-0.003250,0.249979,0,0);-ms-transform:matrix(0.229756,0.002987,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.229756,0.002987,-0.003250,0.249979,0,0);}
.m95_c01390{transform:matrix(0.230431,0.002535,-0.002750,0.249985,0,0);-ms-transform:matrix(0.230431,0.002535,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.230431,0.002535,-0.002750,0.249985,0,0);}
.m68_c01390{transform:matrix(0.230491,0.002535,-0.002750,0.249985,0,0);-ms-transform:matrix(0.230491,0.002535,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.230491,0.002535,-0.002750,0.249985,0,0);}
.m33_c01390{transform:matrix(0.230559,0.003458,-0.003750,0.249972,0,0);-ms-transform:matrix(0.230559,0.003458,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.230559,0.003458,-0.003750,0.249972,0,0);}
.m93_c01390{transform:matrix(0.230751,0.002538,-0.002750,0.249985,0,0);-ms-transform:matrix(0.230751,0.002538,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.230751,0.002538,-0.002750,0.249985,0,0);}
.mb4_c01390{transform:matrix(0.231281,0.002544,-0.002750,0.249985,0,0);-ms-transform:matrix(0.231281,0.002544,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.231281,0.002544,-0.002750,0.249985,0,0);}
.m1f_c01390{transform:matrix(0.231674,0.003475,-0.003750,0.249972,0,0);-ms-transform:matrix(0.231674,0.003475,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.231674,0.003475,-0.003750,0.249972,0,0);}
.m31_c01390{transform:matrix(0.232364,0.003485,-0.003750,0.249972,0,0);-ms-transform:matrix(0.232364,0.003485,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.232364,0.003485,-0.003750,0.249972,0,0);}
.m9b_c01390{transform:matrix(0.232941,0.002562,-0.002750,0.249985,0,0);-ms-transform:matrix(0.232941,0.002562,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.232941,0.002562,-0.002750,0.249985,0,0);}
.m61_c01390{transform:matrix(0.233096,0.002564,-0.002750,0.249985,0,0);-ms-transform:matrix(0.233096,0.002564,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.233096,0.002564,-0.002750,0.249985,0,0);}
.m2_c01390{transform:matrix(0.233465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233465,0.000000,0.000000,0.250000,0,0);}
.m29_c01390{transform:matrix(0.233609,0.003504,-0.003750,0.249972,0,0);-ms-transform:matrix(0.233609,0.003504,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.233609,0.003504,-0.003750,0.249972,0,0);}
.m92_c01390{transform:matrix(0.233621,0.002570,-0.002750,0.249985,0,0);-ms-transform:matrix(0.233621,0.002570,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.233621,0.002570,-0.002750,0.249985,0,0);}
.mbd_c01390{transform:matrix(0.233896,0.002573,-0.002750,0.249985,0,0);-ms-transform:matrix(0.233896,0.002573,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.233896,0.002573,-0.002750,0.249985,0,0);}
.m67_c01390{transform:matrix(0.233991,0.002574,-0.002750,0.249985,0,0);-ms-transform:matrix(0.233991,0.002574,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.233991,0.002574,-0.002750,0.249985,0,0);}
.m65_c01390{transform:matrix(0.234096,0.002575,-0.002750,0.249985,0,0);-ms-transform:matrix(0.234096,0.002575,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.234096,0.002575,-0.002750,0.249985,0,0);}
.m28_c01390{transform:matrix(0.234294,0.003514,-0.003750,0.249972,0,0);-ms-transform:matrix(0.234294,0.003514,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.234294,0.003514,-0.003750,0.249972,0,0);}
.m36_c01390{transform:matrix(0.234854,0.003523,-0.003750,0.249972,0,0);-ms-transform:matrix(0.234854,0.003523,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.234854,0.003523,-0.003750,0.249972,0,0);}
.m5_c01390{transform:matrix(0.234860,0.003053,-0.003250,0.249979,0,0);-ms-transform:matrix(0.234860,0.003053,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.234860,0.003053,-0.003250,0.249979,0,0);}
.mf7_c01390{transform:matrix(0.235055,0.003056,-0.003250,0.249979,0,0);-ms-transform:matrix(0.235055,0.003056,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.235055,0.003056,-0.003250,0.249979,0,0);}
.m83_c01390{transform:matrix(0.235551,0.002591,-0.002750,0.249985,0,0);-ms-transform:matrix(0.235551,0.002591,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.235551,0.002591,-0.002750,0.249985,0,0);}
.mb1_c01390{transform:matrix(0.235601,0.002592,-0.002750,0.249985,0,0);-ms-transform:matrix(0.235601,0.002592,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.235601,0.002592,-0.002750,0.249985,0,0);}
.m2d_c01390{transform:matrix(0.235643,0.003535,-0.003750,0.249972,0,0);-ms-transform:matrix(0.235643,0.003535,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.235643,0.003535,-0.003750,0.249972,0,0);}
.m101_c01390{transform:matrix(0.235765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235765,0.000000,0.000000,0.250000,0,0);}
.m5a_c01390{transform:matrix(0.235862,0.003302,-0.003500,0.249976,0,0);-ms-transform:matrix(0.235862,0.003302,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.235862,0.003302,-0.003500,0.249976,0,0);}
.m26_c01390{transform:matrix(0.236263,0.003544,-0.003750,0.249972,0,0);-ms-transform:matrix(0.236263,0.003544,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.236263,0.003544,-0.003750,0.249972,0,0);}
.m9e_c01390{transform:matrix(0.236816,0.002605,-0.002750,0.249985,0,0);-ms-transform:matrix(0.236816,0.002605,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.236816,0.002605,-0.002750,0.249985,0,0);}
.m5b_c01390{transform:matrix(0.236842,0.003316,-0.003500,0.249976,0,0);-ms-transform:matrix(0.236842,0.003316,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.236842,0.003316,-0.003500,0.249976,0,0);}
.m1a_c01390{transform:matrix(0.236858,0.003553,-0.003750,0.249972,0,0);-ms-transform:matrix(0.236858,0.003553,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.236858,0.003553,-0.003750,0.249972,0,0);}
.m78_c01390{transform:matrix(0.237316,0.002610,-0.002750,0.249985,0,0);-ms-transform:matrix(0.237316,0.002610,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.237316,0.002610,-0.002750,0.249985,0,0);}
.md4_c01390{transform:matrix(0.237371,0.004035,-0.004249,0.249964,0,0);-ms-transform:matrix(0.237371,0.004035,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.237371,0.004035,-0.004249,0.249964,0,0);}
.me9_c01390{transform:matrix(0.237475,0.003087,-0.003250,0.249979,0,0);-ms-transform:matrix(0.237475,0.003087,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.237475,0.003087,-0.003250,0.249979,0,0);}
.m37_c01390{transform:matrix(0.237523,0.003563,-0.003750,0.249972,0,0);-ms-transform:matrix(0.237523,0.003563,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.237523,0.003563,-0.003750,0.249972,0,0);}
.md8_c01390{transform:matrix(0.237735,0.003091,-0.003250,0.249979,0,0);-ms-transform:matrix(0.237735,0.003091,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.237735,0.003091,-0.003250,0.249979,0,0);}
.mad_c01390{transform:matrix(0.237756,0.002615,-0.002750,0.249985,0,0);-ms-transform:matrix(0.237756,0.002615,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.237756,0.002615,-0.002750,0.249985,0,0);}
.m8e_c01390{transform:matrix(0.237956,0.002618,-0.002750,0.249985,0,0);-ms-transform:matrix(0.237956,0.002618,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.237956,0.002618,-0.002750,0.249985,0,0);}
.m8_c01390{transform:matrix(0.238490,0.003100,-0.003250,0.249979,0,0);-ms-transform:matrix(0.238490,0.003100,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.238490,0.003100,-0.003250,0.249979,0,0);}
.m62_c01390{transform:matrix(0.239890,0.002639,-0.002750,0.249985,0,0);-ms-transform:matrix(0.239890,0.002639,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.239890,0.002639,-0.002750,0.249985,0,0);}
.mae_c01390{transform:matrix(0.240285,0.002643,-0.002750,0.249985,0,0);-ms-transform:matrix(0.240285,0.002643,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.240285,0.002643,-0.002750,0.249985,0,0);}
.m14_c01390{transform:matrix(0.241153,0.003617,-0.003750,0.249972,0,0);-ms-transform:matrix(0.241153,0.003617,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.241153,0.003617,-0.003750,0.249972,0,0);}
.m13_c01390{transform:matrix(0.241413,0.003621,-0.003750,0.249972,0,0);-ms-transform:matrix(0.241413,0.003621,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.241413,0.003621,-0.003750,0.249972,0,0);}
.m88_c01390{transform:matrix(0.241740,0.002659,-0.002750,0.249985,0,0);-ms-transform:matrix(0.241740,0.002659,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.241740,0.002659,-0.002750,0.249985,0,0);}
.m98_c01390{transform:matrix(0.242065,0.002663,-0.002750,0.249985,0,0);-ms-transform:matrix(0.242065,0.002663,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.242065,0.002663,-0.002750,0.249985,0,0);}
.mc_c01390{transform:matrix(0.242380,0.003151,-0.003250,0.249979,0,0);-ms-transform:matrix(0.242380,0.003151,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.242380,0.003151,-0.003250,0.249979,0,0);}
.mda_c01390{transform:matrix(0.242555,0.003153,-0.003250,0.249979,0,0);-ms-transform:matrix(0.242555,0.003153,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.242555,0.003153,-0.003250,0.249979,0,0);}
.m27_c01390{transform:matrix(0.242953,0.003644,-0.003750,0.249972,0,0);-ms-transform:matrix(0.242953,0.003644,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.242953,0.003644,-0.003750,0.249972,0,0);}
.m87_c01390{transform:matrix(0.243135,0.002674,-0.002750,0.249985,0,0);-ms-transform:matrix(0.243135,0.002674,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.243135,0.002674,-0.002750,0.249985,0,0);}
.me7_c01390{transform:matrix(0.243654,0.003168,-0.003250,0.249979,0,0);-ms-transform:matrix(0.243654,0.003168,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.243654,0.003168,-0.003250,0.249979,0,0);}
.mdf_c01390{transform:matrix(0.243829,0.003170,-0.003250,0.249979,0,0);-ms-transform:matrix(0.243829,0.003170,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.243829,0.003170,-0.003250,0.249979,0,0);}
.mb7_c01390{transform:matrix(0.244085,0.002685,-0.002750,0.249985,0,0);-ms-transform:matrix(0.244085,0.002685,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.244085,0.002685,-0.002750,0.249985,0,0);}
.m25_c01390{transform:matrix(0.244587,0.003669,-0.003750,0.249972,0,0);-ms-transform:matrix(0.244587,0.003669,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.244587,0.003669,-0.003750,0.249972,0,0);}
.m44_c01390{transform:matrix(0.244742,0.003671,-0.003750,0.249972,0,0);-ms-transform:matrix(0.244742,0.003671,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.244742,0.003671,-0.003750,0.249972,0,0);}
.m97_c01390{transform:matrix(0.244750,0.002692,-0.002750,0.249985,0,0);-ms-transform:matrix(0.244750,0.002692,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.244750,0.002692,-0.002750,0.249985,0,0);}
.m81_c01390{transform:matrix(0.244765,0.002692,-0.002750,0.249985,0,0);-ms-transform:matrix(0.244765,0.002692,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.244765,0.002692,-0.002750,0.249985,0,0);}
.mb6_c01390{transform:matrix(0.244865,0.002694,-0.002750,0.249985,0,0);-ms-transform:matrix(0.244865,0.002694,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.244865,0.002694,-0.002750,0.249985,0,0);}
.maa_c01390{transform:matrix(0.245200,0.002697,-0.002750,0.249985,0,0);-ms-transform:matrix(0.245200,0.002697,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.245200,0.002697,-0.002750,0.249985,0,0);}
.m12_c01390{transform:matrix(0.245222,0.003678,-0.003750,0.249972,0,0);-ms-transform:matrix(0.245222,0.003678,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.245222,0.003678,-0.003750,0.249972,0,0);}
.ma_c01390{transform:matrix(0.245514,0.003192,-0.003250,0.249979,0,0);-ms-transform:matrix(0.245514,0.003192,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.245514,0.003192,-0.003250,0.249979,0,0);}
.m0_c01390{transform:matrix(0.245530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245530,0.000000,0.000000,0.250000,0,0);}
.ma5_c01390{transform:matrix(0.245535,0.002701,-0.002750,0.249985,0,0);-ms-transform:matrix(0.245535,0.002701,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.245535,0.002701,-0.002750,0.249985,0,0);}
.md1_c01390{transform:matrix(0.245630,0.004176,-0.004249,0.249964,0,0);-ms-transform:matrix(0.245630,0.004176,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.245630,0.004176,-0.004249,0.249964,0,0);}
.m1e_c01390{transform:matrix(0.245672,0.003685,-0.003750,0.249972,0,0);-ms-transform:matrix(0.245672,0.003685,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.245672,0.003685,-0.003750,0.249972,0,0);}
.m2c_c01390{transform:matrix(0.247007,0.003705,-0.003750,0.249972,0,0);-ms-transform:matrix(0.247007,0.003705,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.247007,0.003705,-0.003750,0.249972,0,0);}
.me4_c01390{transform:matrix(0.247229,0.003214,-0.003250,0.249979,0,0);-ms-transform:matrix(0.247229,0.003214,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.247229,0.003214,-0.003250,0.249979,0,0);}
.mcc_c01390{transform:matrix(0.247554,0.004208,-0.004249,0.249964,0,0);-ms-transform:matrix(0.247554,0.004208,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.247554,0.004208,-0.004249,0.249964,0,0);}
.m20_c01390{transform:matrix(0.247797,0.003717,-0.003750,0.249972,0,0);-ms-transform:matrix(0.247797,0.003717,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.247797,0.003717,-0.003750,0.249972,0,0);}
.ma4_c01390{transform:matrix(0.247860,0.002726,-0.002750,0.249985,0,0);-ms-transform:matrix(0.247860,0.002726,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.247860,0.002726,-0.002750,0.249985,0,0);}
.m7e_c01390{transform:matrix(0.248480,0.002733,-0.002750,0.249985,0,0);-ms-transform:matrix(0.248480,0.002733,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.248480,0.002733,-0.002750,0.249985,0,0);}
.m18_c01390{transform:matrix(0.248822,0.003732,-0.003750,0.249972,0,0);-ms-transform:matrix(0.248822,0.003732,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.248822,0.003732,-0.003750,0.249972,0,0);}
.m48_c01390{transform:matrix(0.249012,0.003735,-0.003750,0.249972,0,0);-ms-transform:matrix(0.249012,0.003735,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.249012,0.003735,-0.003750,0.249972,0,0);}
.m7a_c01390{transform:matrix(0.249060,0.002740,-0.002750,0.249985,0,0);-ms-transform:matrix(0.249060,0.002740,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.249060,0.002740,-0.002750,0.249985,0,0);}
.mb2_c01390{transform:matrix(0.249180,0.002741,-0.002750,0.249985,0,0);-ms-transform:matrix(0.249180,0.002741,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.249180,0.002741,-0.002750,0.249985,0,0);}
.m91_c01390{transform:matrix(0.249220,0.002741,-0.002750,0.249985,0,0);-ms-transform:matrix(0.249220,0.002741,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.249220,0.002741,-0.002750,0.249985,0,0);}
.ma2_c01390{transform:matrix(0.249240,0.002742,-0.002750,0.249985,0,0);-ms-transform:matrix(0.249240,0.002742,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.249240,0.002742,-0.002750,0.249985,0,0);}
.mf3_c01390{transform:matrix(0.249534,0.003244,-0.003250,0.249979,0,0);-ms-transform:matrix(0.249534,0.003244,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.249534,0.003244,-0.003250,0.249979,0,0);}
.mf1_c01390{transform:matrix(0.249714,0.003246,-0.003250,0.249979,0,0);-ms-transform:matrix(0.249714,0.003246,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.249714,0.003246,-0.003250,0.249979,0,0);}
.m79_c01390{transform:matrix(0.249910,0.002749,-0.002750,0.249985,0,0);-ms-transform:matrix(0.249910,0.002749,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.249910,0.002749,-0.002750,0.249985,0,0);}
.m9c_c01390{transform:matrix(0.249980,0.002750,-0.002750,0.249985,0,0);-ms-transform:matrix(0.249980,0.002750,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.249980,0.002750,-0.002750,0.249985,0,0);}
.m1c_c01390{transform:matrix(0.250242,0.003754,-0.003750,0.249972,0,0);-ms-transform:matrix(0.250242,0.003754,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.250242,0.003754,-0.003750,0.249972,0,0);}
.m1d_c01390{transform:matrix(0.251547,0.003773,-0.003750,0.249972,0,0);-ms-transform:matrix(0.251547,0.003773,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.251547,0.003773,-0.003750,0.249972,0,0);}
.m3f_c01390{transform:matrix(0.251852,0.003778,-0.003750,0.249972,0,0);-ms-transform:matrix(0.251852,0.003778,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.251852,0.003778,-0.003750,0.249972,0,0);}
.me2_c01390{transform:matrix(0.252289,0.003280,-0.003250,0.249979,0,0);-ms-transform:matrix(0.252289,0.003280,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.252289,0.003280,-0.003250,0.249979,0,0);}
.m4a_c01390{transform:matrix(0.252362,0.003785,-0.003750,0.249972,0,0);-ms-transform:matrix(0.252362,0.003785,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.252362,0.003785,-0.003750,0.249972,0,0);}
.m2b_c01390{transform:matrix(0.252697,0.003790,-0.003750,0.249972,0,0);-ms-transform:matrix(0.252697,0.003790,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.252697,0.003790,-0.003750,0.249972,0,0);}
.m7f_c01390{transform:matrix(0.252840,0.002781,-0.002750,0.249985,0,0);-ms-transform:matrix(0.252840,0.002781,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.252840,0.002781,-0.002750,0.249985,0,0);}
.md9_c01390{transform:matrix(0.253044,0.003290,-0.003250,0.249979,0,0);-ms-transform:matrix(0.253044,0.003290,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.253044,0.003290,-0.003250,0.249979,0,0);}
.m30_c01390{transform:matrix(0.253531,0.003803,-0.003750,0.249972,0,0);-ms-transform:matrix(0.253531,0.003803,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.253531,0.003803,-0.003750,0.249972,0,0);}
.mfa_c01390{transform:matrix(0.253977,0.004064,-0.003999,0.249968,0,0);-ms-transform:matrix(0.253977,0.004064,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.253977,0.004064,-0.003999,0.249968,0,0);}
.m21_c01390{transform:matrix(0.254201,0.003813,-0.003750,0.249972,0,0);-ms-transform:matrix(0.254201,0.003813,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.254201,0.003813,-0.003750,0.249972,0,0);}
.m40_c01390{transform:matrix(0.254441,0.003817,-0.003750,0.249972,0,0);-ms-transform:matrix(0.254441,0.003817,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.254441,0.003817,-0.003750,0.249972,0,0);}
.m6b_c01390{transform:matrix(0.254770,0.002802,-0.002750,0.249985,0,0);-ms-transform:matrix(0.254770,0.002802,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.254770,0.002802,-0.002750,0.249985,0,0);}
.mdb_c01390{transform:matrix(0.255258,0.003318,-0.003250,0.249979,0,0);-ms-transform:matrix(0.255258,0.003318,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.255258,0.003318,-0.003250,0.249979,0,0);}
.m2a_c01390{transform:matrix(0.255386,0.003831,-0.003750,0.249972,0,0);-ms-transform:matrix(0.255386,0.003831,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.255386,0.003831,-0.003750,0.249972,0,0);}
.mab_c01390{transform:matrix(0.256045,0.002816,-0.002750,0.249985,0,0);-ms-transform:matrix(0.256045,0.002816,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.256045,0.002816,-0.002750,0.249985,0,0);}
.mb8_c01390{transform:matrix(0.256249,0.002819,-0.002750,0.249985,0,0);-ms-transform:matrix(0.256249,0.002819,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.256249,0.002819,-0.002750,0.249985,0,0);}
.m7b_c01390{transform:matrix(0.256339,0.002820,-0.002750,0.249985,0,0);-ms-transform:matrix(0.256339,0.002820,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.256339,0.002820,-0.002750,0.249985,0,0);}
.m4c_c01390{transform:matrix(0.256536,0.003848,-0.003750,0.249972,0,0);-ms-transform:matrix(0.256536,0.003848,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.256536,0.003848,-0.003750,0.249972,0,0);}
.m99_c01390{transform:matrix(0.257679,0.002834,-0.002750,0.249985,0,0);-ms-transform:matrix(0.257679,0.002834,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.257679,0.002834,-0.002750,0.249985,0,0);}
.ma6_c01390{transform:matrix(0.258614,0.002845,-0.002750,0.249985,0,0);-ms-transform:matrix(0.258614,0.002845,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.258614,0.002845,-0.002750,0.249985,0,0);}
.m47_c01390{transform:matrix(0.258726,0.003881,-0.003750,0.249972,0,0);-ms-transform:matrix(0.258726,0.003881,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.258726,0.003881,-0.003750,0.249972,0,0);}
.ma1_c01390{transform:matrix(0.259009,0.002849,-0.002750,0.249985,0,0);-ms-transform:matrix(0.259009,0.002849,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.259009,0.002849,-0.002750,0.249985,0,0);}
.m69_c01390{transform:matrix(0.259179,0.002851,-0.002750,0.249985,0,0);-ms-transform:matrix(0.259179,0.002851,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.259179,0.002851,-0.002750,0.249985,0,0);}
.m46_c01390{transform:matrix(0.259961,0.003899,-0.003750,0.249972,0,0);-ms-transform:matrix(0.259961,0.003899,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.259961,0.003899,-0.003750,0.249972,0,0);}
.mf5_c01390{transform:matrix(0.259998,0.003380,-0.003250,0.249979,0,0);-ms-transform:matrix(0.259998,0.003380,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.259998,0.003380,-0.003250,0.249979,0,0);}
.m80_c01390{transform:matrix(0.260339,0.002864,-0.002750,0.249985,0,0);-ms-transform:matrix(0.260339,0.002864,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.260339,0.002864,-0.002750,0.249985,0,0);}
.m24_c01390{transform:matrix(0.261166,0.003917,-0.003750,0.249972,0,0);-ms-transform:matrix(0.261166,0.003917,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.261166,0.003917,-0.003750,0.249972,0,0);}
.mf0_c01390{transform:matrix(0.261768,0.003403,-0.003250,0.249979,0,0);-ms-transform:matrix(0.261768,0.003403,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.261768,0.003403,-0.003250,0.249979,0,0);}
.ma9_c01390{transform:matrix(0.261904,0.002881,-0.002750,0.249985,0,0);-ms-transform:matrix(0.261904,0.002881,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.261904,0.002881,-0.002750,0.249985,0,0);}
.m16_c01390{transform:matrix(0.262191,0.003933,-0.003750,0.249972,0,0);-ms-transform:matrix(0.262191,0.003933,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.262191,0.003933,-0.003750,0.249972,0,0);}
.ma7_c01390{transform:matrix(0.263009,0.002893,-0.002750,0.249985,0,0);-ms-transform:matrix(0.263009,0.002893,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.263009,0.002893,-0.002750,0.249985,0,0);}
.m1b_c01390{transform:matrix(0.263070,0.003946,-0.003750,0.249972,0,0);-ms-transform:matrix(0.263070,0.003946,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.263070,0.003946,-0.003750,0.249972,0,0);}
.mac_c01390{transform:matrix(0.263089,0.002894,-0.002750,0.249985,0,0);-ms-transform:matrix(0.263089,0.002894,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.263089,0.002894,-0.002750,0.249985,0,0);}
.me5_c01390{transform:matrix(0.267267,0.003474,-0.003250,0.249979,0,0);-ms-transform:matrix(0.267267,0.003474,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.267267,0.003474,-0.003250,0.249979,0,0);}
.m4f_c01390{transform:matrix(0.268540,0.004028,-0.003750,0.249972,0,0);-ms-transform:matrix(0.268540,0.004028,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.268540,0.004028,-0.003750,0.249972,0,0);}
.m4d_c01390{transform:matrix(0.269230,0.004038,-0.003750,0.249972,0,0);-ms-transform:matrix(0.269230,0.004038,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.269230,0.004038,-0.003750,0.249972,0,0);}
.m94_c01390{transform:matrix(0.269754,0.002967,-0.002750,0.249985,0,0);-ms-transform:matrix(0.269754,0.002967,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.269754,0.002967,-0.002750,0.249985,0,0);}
.maf_c01390{transform:matrix(0.269989,0.002970,-0.002750,0.249985,0,0);-ms-transform:matrix(0.269989,0.002970,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.269989,0.002970,-0.002750,0.249985,0,0);}
.m3e_c01390{transform:matrix(0.270040,0.004051,-0.003750,0.249972,0,0);-ms-transform:matrix(0.270040,0.004051,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.270040,0.004051,-0.003750,0.249972,0,0);}
.m49_c01390{transform:matrix(0.270145,0.004052,-0.003750,0.249972,0,0);-ms-transform:matrix(0.270145,0.004052,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.270145,0.004052,-0.003750,0.249972,0,0);}
.m45_c01390{transform:matrix(0.272449,0.004087,-0.003750,0.249972,0,0);-ms-transform:matrix(0.272449,0.004087,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.272449,0.004087,-0.003750,0.249972,0,0);}
.m52_c01390{transform:matrix(0.273318,0.003826,-0.003500,0.249976,0,0);-ms-transform:matrix(0.273318,0.003826,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.273318,0.003826,-0.003500,0.249976,0,0);}
.m4e_c01390{transform:matrix(0.273579,0.004104,-0.003750,0.249972,0,0);-ms-transform:matrix(0.273579,0.004104,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.273579,0.004104,-0.003750,0.249972,0,0);}
.mb0_c01390{transform:matrix(0.273978,0.003014,-0.002750,0.249985,0,0);-ms-transform:matrix(0.273978,0.003014,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.273978,0.003014,-0.002750,0.249985,0,0);}
.m96_c01390{transform:matrix(0.274743,0.003022,-0.002750,0.249985,0,0);-ms-transform:matrix(0.274743,0.003022,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.274743,0.003022,-0.002750,0.249985,0,0);}
.m42_c01390{transform:matrix(0.275569,0.004134,-0.003750,0.249972,0,0);-ms-transform:matrix(0.275569,0.004134,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.275569,0.004134,-0.003750,0.249972,0,0);}
.m43_c01390{transform:matrix(0.275759,0.004136,-0.003750,0.249972,0,0);-ms-transform:matrix(0.275759,0.004136,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.275759,0.004136,-0.003750,0.249972,0,0);}
.ma8_c01390{transform:matrix(0.275838,0.003034,-0.002750,0.249985,0,0);-ms-transform:matrix(0.275838,0.003034,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.275838,0.003034,-0.002750,0.249985,0,0);}
.mb5_c01390{transform:matrix(0.276818,0.003045,-0.002750,0.249985,0,0);-ms-transform:matrix(0.276818,0.003045,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.276818,0.003045,-0.002750,0.249985,0,0);}
.m4b_c01390{transform:matrix(0.277674,0.004165,-0.003750,0.249972,0,0);-ms-transform:matrix(0.277674,0.004165,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.277674,0.004165,-0.003750,0.249972,0,0);}
.m51_c01390{transform:matrix(0.278589,0.004179,-0.003750,0.249972,0,0);-ms-transform:matrix(0.278589,0.004179,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.278589,0.004179,-0.003750,0.249972,0,0);}
.m41_c01390{transform:matrix(0.278754,0.004181,-0.003750,0.249972,0,0);-ms-transform:matrix(0.278754,0.004181,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.278754,0.004181,-0.003750,0.249972,0,0);}
.ma0_c01390{transform:matrix(0.283343,0.003117,-0.002750,0.249985,0,0);-ms-transform:matrix(0.283343,0.003117,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.283343,0.003117,-0.002750,0.249985,0,0);}
.mee_c01390{transform:matrix(0.293195,0.003812,-0.003250,0.249979,0,0);-ms-transform:matrix(0.293195,0.003812,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.293195,0.003812,-0.003250,0.249979,0,0);}
.meb_c01390{transform:matrix(0.294575,0.003829,-0.003250,0.249979,0,0);-ms-transform:matrix(0.294575,0.003829,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.294575,0.003829,-0.003250,0.249979,0,0);}
.me6_c01390{transform:matrix(0.295480,0.003841,-0.003250,0.249979,0,0);-ms-transform:matrix(0.295480,0.003841,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.295480,0.003841,-0.003250,0.249979,0,0);}
.m6a_c01390{transform:matrix(0.298272,0.003281,-0.002750,0.249985,0,0);-ms-transform:matrix(0.298272,0.003281,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.298272,0.003281,-0.002750,0.249985,0,0);}
.mef_c01390{transform:matrix(0.304949,0.003964,-0.003250,0.249979,0,0);-ms-transform:matrix(0.304949,0.003964,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.304949,0.003964,-0.003250,0.249979,0,0);}
.m84_c01390{transform:matrix(0.307216,0.003379,-0.002750,0.249985,0,0);-ms-transform:matrix(0.307216,0.003379,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.307216,0.003379,-0.002750,0.249985,0,0);}
.mf9_c01390{transform:matrix(0.313145,0.005010,-0.003999,0.249968,0,0);-ms-transform:matrix(0.313145,0.005010,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.313145,0.005010,-0.003999,0.249968,0,0);}
.me1_c01390{transform:matrix(0.315463,0.004101,-0.003250,0.249979,0,0);-ms-transform:matrix(0.315463,0.004101,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.315463,0.004101,-0.003250,0.249979,0,0);}
.m9a_c01390{transform:matrix(0.322560,0.003548,-0.002750,0.249985,0,0);-ms-transform:matrix(0.322560,0.003548,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.322560,0.003548,-0.002750,0.249985,0,0);}
.me8_c01390{transform:matrix(0.351480,0.004569,-0.003250,0.249979,0,0);-ms-transform:matrix(0.351480,0.004569,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.351480,0.004569,-0.003250,0.249979,0,0);}
.me3_c01390{transform:matrix(0.352385,0.004581,-0.003250,0.249979,0,0);-ms-transform:matrix(0.352385,0.004581,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.352385,0.004581,-0.003250,0.249979,0,0);}
.mea_c01390{transform:matrix(0.357035,0.004641,-0.003250,0.249979,0,0);-ms-transform:matrix(0.357035,0.004641,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.357035,0.004641,-0.003250,0.249979,0,0);}
.m9f_c01390{transform:matrix(0.381567,0.004197,-0.002750,0.249985,0,0);-ms-transform:matrix(0.381567,0.004197,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.381567,0.004197,-0.002750,0.249985,0,0);}
.m1_c01390{transform:matrix(0.430445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430445,0.000000,0.000000,0.250000,0,0);}
.v0_c01390{vertical-align:0.000000px;}
.ls0_c01390{letter-spacing:0.000000px;}
.sc__c01390{text-shadow:none;}
.sc0_c01390{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__c01390{-webkit-text-stroke:0px transparent;}
.sc0_c01390{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01390{word-spacing:0.000000px;}
.fc0_c01390{color:transparent;}
.fs10_c01390{font-size:42.000000px;}
.fs0_c01390{font-size:66.000000px;}
.fs9_c01390{font-size:72.004356px;}
.fs4_c01390{font-size:72.008100px;}
.fs8_c01390{font-size:78.004719px;}
.fsd_c01390{font-size:78.006591px;}
.fs2_c01390{font-size:78.008775px;}
.fsc_c01390{font-size:78.011270px;}
.fs6_c01390{font-size:84.005082px;}
.fs1_c01390{font-size:84.007098px;}
.fs5_c01390{font-size:84.008232px;}
.fs3_c01390{font-size:84.009449px;}
.fse_c01390{font-size:90.007605px;}
.fsf_c01390{font-size:90.011519px;}
.fsb_c01390{font-size:90.013004px;}
.fs7_c01390{font-size:96.005808px;}
.fsa_c01390{font-size:102.006171px;}
.y0_c01390{bottom:0.000000px;}
.y102_c01390{bottom:53.460000px;}
.y101_c01390{bottom:79.515324px;}
.y100_c01390{bottom:80.393004px;}
.yff_c01390{bottom:81.433788px;}
.yfe_c01390{bottom:81.973500px;}
.yfd_c01390{bottom:82.483404px;}
.yfc_c01390{bottom:83.196396px;}
.yfb_c01390{bottom:83.677092px;}
.yfa_c01390{bottom:84.937884px;}
.yf9_c01390{bottom:86.674500px;}
.yf8_c01390{bottom:115.086661px;}
.yf7_c01390{bottom:115.622401px;}
.yf6_c01390{bottom:117.541037px;}
.yf5_c01390{bottom:118.063188px;}
.yf4_c01390{bottom:119.466458px;}
.yf3_c01390{bottom:119.976871px;}
.yf2_c01390{bottom:121.212161px;}
.yf1_c01390{bottom:121.807365px;}
.yf0_c01390{bottom:122.602524px;}
.yef_c01390{bottom:123.115492px;}
.yee_c01390{bottom:147.528943px;}
.yed_c01390{bottom:148.133061px;}
.yec_c01390{bottom:148.909588px;}
.yeb_c01390{bottom:149.512750px;}
.yea_c01390{bottom:151.072765px;}
.ye9_c01390{bottom:151.645867px;}
.ye8_c01390{bottom:152.282599px;}
.ye7_c01390{bottom:153.618174px;}
.ye6_c01390{bottom:154.444276px;}
.ye5_c01390{bottom:155.396119px;}
.ye4_c01390{bottom:157.495666px;}
.ye3_c01390{bottom:158.132398px;}
.ye2_c01390{bottom:159.590223px;}
.ye1_c01390{bottom:185.480361px;}
.ye0_c01390{bottom:186.040264px;}
.ydf_c01390{bottom:186.623373px;}
.yde_c01390{bottom:187.472949px;}
.ydd_c01390{bottom:187.901403px;}
.ydc_c01390{bottom:188.326074px;}
.ydb_c01390{bottom:189.880965px;}
.yda_c01390{bottom:190.593612px;}
.yd9_c01390{bottom:191.734713px;}
.yd8_c01390{bottom:192.439891px;}
.yd7_c01390{bottom:193.433592px;}
.yd6_c01390{bottom:193.861500px;}
.yd5_c01390{bottom:507.857746px;}
.yd4_c01390{bottom:509.377368px;}
.yd3_c01390{bottom:509.764739px;}
.yd2_c01390{bottom:510.530911px;}
.yd1_c01390{bottom:511.812108px;}
.yd0_c01390{bottom:512.728654px;}
.ycf_c01390{bottom:538.081880px;}
.yce_c01390{bottom:538.857156px;}
.ycd_c01390{bottom:540.336335px;}
.ycc_c01390{bottom:540.894223px;}
.ycb_c01390{bottom:542.544124px;}
.yca_c01390{bottom:543.489384px;}
.yc9_c01390{bottom:544.062343px;}
.yc8_c01390{bottom:544.977105px;}
.yc7_c01390{bottom:545.545245px;}
.yc6_c01390{bottom:547.024500px;}
.yc5_c01390{bottom:576.981960px;}
.yc4_c01390{bottom:578.523029px;}
.yc3_c01390{bottom:579.168616px;}
.yc2_c01390{bottom:579.667954px;}
.yc1_c01390{bottom:580.315374px;}
.yc0_c01390{bottom:580.962975px;}
.ybf_c01390{bottom:582.109782px;}
.ybe_c01390{bottom:609.476409px;}
.ybd_c01390{bottom:610.557192px;}
.ybc_c01390{bottom:611.168287px;}
.ybb_c01390{bottom:611.448051px;}
.yba_c01390{bottom:612.378715px;}
.yb9_c01390{bottom:612.835090px;}
.yb8_c01390{bottom:613.445047px;}
.yb7_c01390{bottom:614.208421px;}
.yb6_c01390{bottom:615.126565px;}
.yb5_c01390{bottom:615.595312px;}
.yb4_c01390{bottom:616.672218px;}
.yb3_c01390{bottom:617.261785px;}
.yb2_c01390{bottom:618.512200px;}
.yb1_c01390{bottom:619.100316px;}
.yb0_c01390{bottom:645.782621px;}
.yaf_c01390{bottom:646.971610px;}
.yae_c01390{bottom:647.482623px;}
.yad_c01390{bottom:647.998254px;}
.yac_c01390{bottom:649.057977px;}
.yab_c01390{bottom:649.583046px;}
.yaa_c01390{bottom:650.107372px;}
.ya9_c01390{bottom:650.768818px;}
.ya8_c01390{bottom:652.213950px;}
.ya7_c01390{bottom:653.120600px;}
.ya6_c01390{bottom:681.539502px;}
.ya5_c01390{bottom:681.763347px;}
.ya4_c01390{bottom:682.633050px;}
.ya3_c01390{bottom:682.962407px;}
.ya2_c01390{bottom:683.400030px;}
.ya1_c01390{bottom:684.410343px;}
.ya0_c01390{bottom:684.697273px;}
.y9f_c01390{bottom:685.358445px;}
.y9e_c01390{bottom:685.693824px;}
.y9d_c01390{bottom:686.019847px;}
.y9c_c01390{bottom:686.876332px;}
.y9b_c01390{bottom:687.413280px;}
.y9a_c01390{bottom:714.537055px;}
.y99_c01390{bottom:715.952142px;}
.y98_c01390{bottom:716.804286px;}
.y97_c01390{bottom:717.524317px;}
.y96_c01390{bottom:718.232437px;}
.y95_c01390{bottom:718.669455px;}
.y94_c01390{bottom:720.230098px;}
.y93_c01390{bottom:720.786096px;}
.y92_c01390{bottom:721.227865px;}
.y91_c01390{bottom:722.196135px;}
.y90_c01390{bottom:722.774289px;}
.y8f_c01390{bottom:723.324463px;}
.y8e_c01390{bottom:751.692495px;}
.y8d_c01390{bottom:752.610540px;}
.y8c_c01390{bottom:753.074899px;}
.y8b_c01390{bottom:753.516361px;}
.y8a_c01390{bottom:754.435000px;}
.y89_c01390{bottom:755.043291px;}
.y88_c01390{bottom:755.350504px;}
.y87_c01390{bottom:757.497799px;}
.y86_c01390{bottom:758.114239px;}
.y85_c01390{bottom:758.874775px;}
.y84_c01390{bottom:759.777907px;}
.y83_c01390{bottom:784.978392px;}
.y82_c01390{bottom:785.420772px;}
.y81_c01390{bottom:785.848699px;}
.y80_c01390{bottom:786.561637px;}
.y7f_c01390{bottom:786.835545px;}
.y7e_c01390{bottom:787.842286px;}
.y7d_c01390{bottom:789.238665px;}
.y7c_c01390{bottom:789.674065px;}
.y7b_c01390{bottom:790.231828px;}
.y7a_c01390{bottom:791.530707px;}
.y79_c01390{bottom:792.795088px;}
.y78_c01390{bottom:793.079439px;}
.y77_c01390{bottom:793.799074px;}
.y76_c01390{bottom:821.882136px;}
.y75_c01390{bottom:822.175572px;}
.y74_c01390{bottom:822.566478px;}
.y73_c01390{bottom:823.056967px;}
.y72_c01390{bottom:823.538775px;}
.y71_c01390{bottom:824.241171px;}
.y70_c01390{bottom:824.832051px;}
.y6f_c01390{bottom:825.021678px;}
.y6e_c01390{bottom:825.322870px;}
.y6d_c01390{bottom:826.015431px;}
.y6c_c01390{bottom:826.390294px;}
.y6b_c01390{bottom:827.548820px;}
.y6a_c01390{bottom:859.176825px;}
.y69_c01390{bottom:859.533208px;}
.y68_c01390{bottom:859.987586px;}
.y67_c01390{bottom:860.718288px;}
.y66_c01390{bottom:860.958132px;}
.y65_c01390{bottom:861.326297px;}
.y64_c01390{bottom:862.169793px;}
.y63_c01390{bottom:862.757721px;}
.y62_c01390{bottom:862.998010px;}
.y61_c01390{bottom:864.195498px;}
.y60_c01390{bottom:864.926299px;}
.y5f_c01390{bottom:865.282650px;}
.y5e_c01390{bottom:865.891500px;}
.y5d_c01390{bottom:892.640997px;}
.y5c_c01390{bottom:893.555883px;}
.y5b_c01390{bottom:894.163980px;}
.y5a_c01390{bottom:895.400817px;}
.y59_c01390{bottom:896.928000px;}
.y58_c01390{bottom:897.812646px;}
.y57_c01390{bottom:898.602330px;}
.y56_c01390{bottom:899.517573px;}
.y55_c01390{bottom:899.986188px;}
.y54_c01390{bottom:900.889146px;}
.y53_c01390{bottom:901.350894px;}
.y52_c01390{bottom:901.762872px;}
.y51_c01390{bottom:902.262000px;}
.y50_c01390{bottom:930.212767px;}
.y4f_c01390{bottom:930.607147px;}
.y4e_c01390{bottom:931.537582px;}
.y4d_c01390{bottom:932.726910px;}
.y4c_c01390{bottom:933.523777px;}
.y4b_c01390{bottom:933.899100px;}
.y4a_c01390{bottom:934.942290px;}
.y49_c01390{bottom:935.337592px;}
.y48_c01390{bottom:936.516315px;}
.y47_c01390{bottom:937.155052px;}
.y46_c01390{bottom:962.663115px;}
.y45_c01390{bottom:963.477367px;}
.y44_c01390{bottom:964.649797px;}
.y43_c01390{bottom:965.082060px;}
.y42_c01390{bottom:966.363832px;}
.y41_c01390{bottom:967.498072px;}
.y40_c01390{bottom:968.916570px;}
.y3f_c01390{bottom:969.344985px;}
.y3e_c01390{bottom:970.042912px;}
.y3d_c01390{bottom:971.029732px;}
.y3c_c01390{bottom:971.450287px;}
.y3b_c01390{bottom:997.609710px;}
.y3a_c01390{bottom:998.266410px;}
.y39_c01390{bottom:998.788095px;}
.y38_c01390{bottom:999.960712px;}
.y37_c01390{bottom:1000.365165px;}
.y36_c01390{bottom:1001.543842px;}
.y35_c01390{bottom:1002.849060px;}
.y34_c01390{bottom:1003.512742px;}
.y33_c01390{bottom:1003.905540px;}
.y32_c01390{bottom:1005.059565px;}
.y31_c01390{bottom:1005.470122px;}
.y30_c01390{bottom:1032.442290px;}
.y2f_c01390{bottom:1033.590517px;}
.y2e_c01390{bottom:1034.000692px;}
.y2d_c01390{bottom:1034.576595px;}
.y2c_c01390{bottom:1035.159525px;}
.y2b_c01390{bottom:1036.293720px;}
.y2a_c01390{bottom:1037.434357px;}
.y29_c01390{bottom:1038.695212px;}
.y28_c01390{bottom:1039.137967px;}
.y27_c01390{bottom:1039.698495px;}
.y26_c01390{bottom:1040.551297px;}
.y25_c01390{bottom:1041.382995px;}
.y24_c01390{bottom:1068.087255px;}
.y23_c01390{bottom:1070.226555px;}
.y22_c01390{bottom:1070.695485px;}
.y21_c01390{bottom:1071.149115px;}
.y20_c01390{bottom:1072.517850px;}
.y1f_c01390{bottom:1073.606025px;}
.y1e_c01390{bottom:1074.067305px;}
.y1d_c01390{bottom:1074.827670px;}
.y1c_c01390{bottom:1076.487232px;}
.y1b_c01390{bottom:1077.568290px;}
.y1a_c01390{bottom:1103.754382px;}
.y19_c01390{bottom:1104.582967px;}
.y18_c01390{bottom:1105.081297px;}
.y17_c01390{bottom:1106.061600px;}
.y16_c01390{bottom:1106.559098px;}
.y15_c01390{bottom:1107.701917px;}
.y14_c01390{bottom:1108.358197px;}
.y13_c01390{bottom:1109.172337px;}
.y12_c01390{bottom:1109.670240px;}
.y11_c01390{bottom:1110.642375px;}
.y10_c01390{bottom:1111.152810px;}
.yf_c01390{bottom:1111.610662px;}
.ye_c01390{bottom:1112.133000px;}
.yd_c01390{bottom:1138.580652px;}
.yc_c01390{bottom:1139.008189px;}
.yb_c01390{bottom:1140.992275px;}
.ya_c01390{bottom:1141.416498px;}
.y9_c01390{bottom:1142.292692px;}
.y8_c01390{bottom:1142.834499px;}
.y7_c01390{bottom:1143.130041px;}
.y6_c01390{bottom:1143.842376px;}
.y5_c01390{bottom:1144.544590px;}
.y4_c01390{bottom:1145.955805px;}
.y3_c01390{bottom:1146.394516px;}
.y2_c01390{bottom:1146.963000px;}
.y1_c01390{bottom:1203.115500px;}
.h12_c01390{height:42.000000px;}
.h2_c01390{height:66.000000px;}
.hb_c01390{height:72.004356px;}
.h6_c01390{height:72.008100px;}
.ha_c01390{height:78.004719px;}
.hf_c01390{height:78.006591px;}
.h4_c01390{height:78.008775px;}
.he_c01390{height:78.011270px;}
.h8_c01390{height:84.005082px;}
.h3_c01390{height:84.007098px;}
.h7_c01390{height:84.008232px;}
.h5_c01390{height:84.009449px;}
.h10_c01390{height:90.007605px;}
.h11_c01390{height:90.011519px;}
.hd_c01390{height:90.013004px;}
.h9_c01390{height:96.005808px;}
.hc_c01390{height:102.006171px;}
.h1_c01390{height:1250.250000px;}
.h0_c01390{height:1250.370000px;}
.w0_c01390{width:878.850000px;}
.w1_c01390{width:879.000000px;}
.x0_c01390{left:0.000000px;}
.xab_c01390{left:114.485438px;}
.xb3_c01390{left:116.934000px;}
.xa1_c01390{left:118.102500px;}
.x90_c01390{left:123.182882px;}
.x7f_c01390{left:124.571574px;}
.x4e_c01390{left:126.466500px;}
.x43_c01390{left:128.044500px;}
.x1b_c01390{left:129.981120px;}
.x4_c01390{left:131.026500px;}
.xae_c01390{left:149.833652px;}
.xa2_c01390{left:151.018500px;}
.x33_c01390{left:162.061117px;}
.x2c_c01390{left:163.416255px;}
.x88_c01390{left:166.505001px;}
.x6c_c01390{left:168.598498px;}
.x5_c01390{left:174.756000px;}
.x9e_c01390{left:177.674536px;}
.x5e_c01390{left:181.223289px;}
.x3a_c01390{left:182.342595px;}
.x66_c01390{left:191.226793px;}
.x44_c01390{left:193.123500px;}
.x24_c01390{left:194.740058px;}
.x80_c01390{left:200.175249px;}
.x5f_c01390{left:203.118310px;}
.x1c_c01390{left:207.152768px;}
.x6_c01390{left:208.503000px;}
.x6d_c01390{left:213.111525px;}
.x4f_c01390{left:214.212000px;}
.x45_c01390{left:226.105500px;}
.xa3_c01390{left:227.457000px;}
.x95_c01390{left:231.412500px;}
.xaf_c01390{left:236.819778px;}
.x34_c01390{left:237.951390px;}
.x10_c01390{left:239.010000px;}
.x91_c01390{left:242.805618px;}
.x67_c01390{left:245.500995px;}
.x9f_c01390{left:253.039036px;}
.x89_c01390{left:255.767048px;}
.x57_c01390{left:258.748543px;}
.x25_c01390{left:260.395538px;}
.x77_c01390{left:266.382579px;}
.x11_c01390{left:273.832500px;}
.x3b_c01390{left:280.628528px;}
.xa4_c01390{left:281.701500px;}
.x92_c01390{left:285.978221px;}
.x6e_c01390{left:287.634391px;}
.x68_c01390{left:289.539543px;}
.x46_c01390{left:290.602500px;}
.x2d_c01390{left:292.243538px;}
.x8a_c01390{left:297.908162px;}
.x78_c01390{left:299.021442px;}
.x58_c01390{left:300.327951px;}
.x12_c01390{left:304.356000px;}
.x3c_c01390{left:313.583512px;}
.x7_c01390{left:317.058000px;}
.x93_c01390{left:319.234752px;}
.x81_c01390{left:320.640429px;}
.x6f_c01390{left:321.658149px;}
.x35_c01390{left:324.643500px;}
.x1d_c01390{left:325.692045px;}
.x79_c01390{left:332.510805px;}
.xb4_c01390{left:334.315500px;}
.x13_c01390{left:338.385000px;}
.xb0_c01390{left:345.946527px;}
.x2e_c01390{left:347.591535px;}
.x96_c01390{left:351.847500px;}
.x94_c01390{left:362.240855px;}
.x70_c01390{left:364.429708px;}
.xa5_c01390{left:369.478500px;}
.x8_c01390{left:371.074500px;}
.x82_c01390{left:375.725818px;}
.x59_c01390{left:377.335150px;}
.xb5_c01390{left:378.877500px;}
.x1e_c01390{left:379.983855px;}
.x47_c01390{left:389.449500px;}
.x1_c01390{left:393.930000px;}
.x7a_c01390{left:398.618031px;}
.x3d_c01390{left:400.533428px;}
.x14_c01390{left:403.194000px;}
.x97_c01390{left:405.657000px;}
.x8b_c01390{left:408.282015px;}
.xa0_c01390{left:410.284036px;}
.x50_c01390{left:411.355500px;}
.x1f_c01390{left:412.936350px;}
.x2_c01390{left:417.150000px;}
.x83_c01390{left:419.436840px;}
.xa6_c01390{left:424.297500px;}
.x9_c01390{left:425.869500px;}
.x7b_c01390{left:427.293844px;}
.x3e_c01390{left:431.856345px;}
.x26_c01390{left:434.543258px;}
.x15_c01390{left:436.387500px;}
.x98_c01390{left:439.360500px;}
.x60_c01390{left:443.206030px;}
.xb6_c01390{left:444.478500px;}
.x48_c01390{left:445.855500px;}
.xa_c01390{left:448.603500px;}
.x2f_c01390{left:456.410940px;}
.x3_c01390{left:458.460000px;}
.x84_c01390{left:463.215361px;}
.x51_c01390{left:464.803500px;}
.xb1_c01390{left:466.358847px;}
.x8c_c01390{left:473.883854px;}
.x61_c01390{left:476.650788px;}
.x71_c01390{left:484.485568px;}
.xb_c01390{left:490.281000px;}
.x99_c01390{left:494.964000px;}
.x3f_c01390{left:498.283837px;}
.x49_c01390{left:509.044500px;}
.x72_c01390{left:518.077326px;}
.x36_c01390{left:520.931873px;}
.x27_c01390{left:522.288390px;}
.x7c_c01390{left:528.277950px;}
.x16_c01390{left:534.415500px;}
.x52_c01390{left:541.485000px;}
.xa7_c01390{left:543.904500px;}
.x85_c01390{left:551.507388px;}
.x30_c01390{left:554.693872px;}
.xac_c01390{left:555.830253px;}
.xc_c01390{left:557.680500px;}
.xb7_c01390{left:564.382500px;}
.x73_c01390{left:572.496121px;}
.x69_c01390{left:573.888154px;}
.x53_c01390{left:574.954500px;}
.xa8_c01390{left:576.571500px;}
.x62_c01390{left:584.091928px;}
.xb2_c01390{left:586.249167px;}
.x20_c01390{left:588.432983px;}
.xd_c01390{left:590.313000px;}
.x9a_c01390{left:592.017000px;}
.x86_c01390{left:594.427909px;}
.x40_c01390{left:597.376792px;}
.x6a_c01390{left:605.429115px;}
.x28_c01390{left:609.504000px;}
.x17_c01390{left:610.603500px;}
.x4a_c01390{left:618.129000px;}
.x37_c01390{left:619.486320px;}
.x21_c01390{left:620.875478px;}
.x9b_c01390{left:624.834000px;}
.x74_c01390{left:627.861400px;}
.x5a_c01390{left:629.013678px;}
.x87_c01390{left:637.064948px;}
.x6b_c01390{left:638.642526px;}
.x18_c01390{left:643.770000px;}
.x38_c01390{left:652.704810px;}
.x22_c01390{left:654.337972px;}
.x63_c01390{left:661.566729px;}
.x54_c01390{left:663.186000px;}
.x8d_c01390{left:671.092852px;}
.x41_c01390{left:674.909280px;}
.x5b_c01390{left:683.559382px;}
.x31_c01390{left:686.237813px;}
.x7d_c01390{left:691.932748px;}
.x75_c01390{left:693.463965px;}
.x29_c01390{left:698.662178px;}
.x55_c01390{left:704.493000px;}
.x4b_c01390{left:706.474500px;}
.x42_c01390{left:707.802765px;}
.x19_c01390{left:709.123500px;}
.x9c_c01390{left:711.844500px;}
.x7e_c01390{left:714.327996px;}
.xa9_c01390{left:719.736000px;}
.x5c_c01390{left:727.006339px;}
.x2a_c01390{left:730.208123px;}
.x8e_c01390{left:734.759757px;}
.x56_c01390{left:736.891500px;}
.xe_c01390{left:742.935000px;}
.x4c_c01390{left:749.910000px;}
.xad_c01390{left:750.918059px;}
.x9d_c01390{left:757.449000px;}
.x5d_c01390{left:759.683065px;}
.xaa_c01390{left:762.805500px;}
.x64_c01390{left:770.407336px;}
.xf_c01390{left:775.822500px;}
.x32_c01390{left:784.501245px;}
.x1a_c01390{left:797.584500px;}
.x76_c01390{left:802.333072px;}
.x65_c01390{left:804.486594px;}
.x39_c01390{left:805.554900px;}
.x23_c01390{left:807.160268px;}
.x8f_c01390{left:812.010216px;}
.x4d_c01390{left:815.259000px;}
.x2b_c01390{left:818.559278px;}
@media print{
.v0_c01390{vertical-align:0.000000pt;}
.ls0_c01390{letter-spacing:0.000000pt;}
.ws0_c01390{word-spacing:0.000000pt;}
.fs10_c01390{font-size:37.333333pt;}
.fs0_c01390{font-size:58.666667pt;}
.fs9_c01390{font-size:64.003872pt;}
.fs4_c01390{font-size:64.007200pt;}
.fs8_c01390{font-size:69.337528pt;}
.fsd_c01390{font-size:69.339192pt;}
.fs2_c01390{font-size:69.341133pt;}
.fsc_c01390{font-size:69.343351pt;}
.fs6_c01390{font-size:74.671184pt;}
.fs1_c01390{font-size:74.672976pt;}
.fs5_c01390{font-size:74.673984pt;}
.fs3_c01390{font-size:74.675066pt;}
.fse_c01390{font-size:80.006760pt;}
.fsf_c01390{font-size:80.010239pt;}
.fsb_c01390{font-size:80.011559pt;}
.fs7_c01390{font-size:85.338496pt;}
.fsa_c01390{font-size:90.672152pt;}
.y0_c01390{bottom:0.000000pt;}
.y102_c01390{bottom:47.520000pt;}
.y101_c01390{bottom:70.680288pt;}
.y100_c01390{bottom:71.460448pt;}
.yff_c01390{bottom:72.385589pt;}
.yfe_c01390{bottom:72.865333pt;}
.yfd_c01390{bottom:73.318581pt;}
.yfc_c01390{bottom:73.952352pt;}
.yfb_c01390{bottom:74.379637pt;}
.yfa_c01390{bottom:75.500341pt;}
.yf9_c01390{bottom:77.044000pt;}
.yf8_c01390{bottom:102.299255pt;}
.yf7_c01390{bottom:102.775468pt;}
.yf6_c01390{bottom:104.480921pt;}
.yf5_c01390{bottom:104.945056pt;}
.yf4_c01390{bottom:106.192407pt;}
.yf3_c01390{bottom:106.646108pt;}
.yf2_c01390{bottom:107.744143pt;}
.yf1_c01390{bottom:108.273213pt;}
.yf0_c01390{bottom:108.980021pt;}
.yef_c01390{bottom:109.435993pt;}
.yee_c01390{bottom:131.136839pt;}
.yed_c01390{bottom:131.673832pt;}
.yec_c01390{bottom:132.364079pt;}
.yeb_c01390{bottom:132.900223pt;}
.yea_c01390{bottom:134.286903pt;}
.ye9_c01390{bottom:134.796327pt;}
.ye8_c01390{bottom:135.362311pt;}
.ye7_c01390{bottom:136.549488pt;}
.ye6_c01390{bottom:137.283801pt;}
.ye5_c01390{bottom:138.129884pt;}
.ye4_c01390{bottom:139.996148pt;}
.ye3_c01390{bottom:140.562132pt;}
.ye2_c01390{bottom:141.857976pt;}
.ye1_c01390{bottom:164.871432pt;}
.ye0_c01390{bottom:165.369124pt;}
.ydf_c01390{bottom:165.887443pt;}
.yde_c01390{bottom:166.642621pt;}
.ydd_c01390{bottom:167.023469pt;}
.ydc_c01390{bottom:167.400955pt;}
.ydb_c01390{bottom:168.783080pt;}
.yda_c01390{bottom:169.416544pt;}
.yd9_c01390{bottom:170.430856pt;}
.yd8_c01390{bottom:171.057681pt;}
.yd7_c01390{bottom:171.940971pt;}
.yd6_c01390{bottom:172.321333pt;}
.yd5_c01390{bottom:451.429108pt;}
.yd4_c01390{bottom:452.779883pt;}
.yd3_c01390{bottom:453.124212pt;}
.yd2_c01390{bottom:453.805255pt;}
.yd1_c01390{bottom:454.944096pt;}
.yd0_c01390{bottom:455.758804pt;}
.ycf_c01390{bottom:478.295004pt;}
.yce_c01390{bottom:478.984139pt;}
.ycd_c01390{bottom:480.298964pt;}
.ycc_c01390{bottom:480.794865pt;}
.ycb_c01390{bottom:482.261444pt;}
.yca_c01390{bottom:483.101675pt;}
.yc9_c01390{bottom:483.610972pt;}
.yc8_c01390{bottom:484.424093pt;}
.yc7_c01390{bottom:484.929107pt;}
.yc6_c01390{bottom:486.244000pt;}
.yc5_c01390{bottom:512.872853pt;}
.yc4_c01390{bottom:514.242692pt;}
.yc3_c01390{bottom:514.816548pt;}
.yc2_c01390{bottom:515.260404pt;}
.yc1_c01390{bottom:515.835888pt;}
.yc0_c01390{bottom:516.411533pt;}
.ybf_c01390{bottom:517.430917pt;}
.ybe_c01390{bottom:541.756808pt;}
.ybd_c01390{bottom:542.717504pt;}
.ybc_c01390{bottom:543.260700pt;}
.ybb_c01390{bottom:543.509379pt;}
.yba_c01390{bottom:544.336636pt;}
.yb9_c01390{bottom:544.742303pt;}
.yb8_c01390{bottom:545.284487pt;}
.yb7_c01390{bottom:545.963041pt;}
.yb6_c01390{bottom:546.779169pt;}
.yb5_c01390{bottom:547.195833pt;}
.yb4_c01390{bottom:548.153083pt;}
.yb3_c01390{bottom:548.677143pt;}
.yb2_c01390{bottom:549.788623pt;}
.yb1_c01390{bottom:550.311392pt;}
.yb0_c01390{bottom:574.028996pt;}
.yaf_c01390{bottom:575.085876pt;}
.yae_c01390{bottom:575.540109pt;}
.yad_c01390{bottom:575.998448pt;}
.yac_c01390{bottom:576.940424pt;}
.yab_c01390{bottom:577.407152pt;}
.yaa_c01390{bottom:577.873220pt;}
.ya9_c01390{bottom:578.461172pt;}
.ya8_c01390{bottom:579.745733pt;}
.ya7_c01390{bottom:580.551644pt;}
.ya6_c01390{bottom:605.812891pt;}
.ya5_c01390{bottom:606.011864pt;}
.ya4_c01390{bottom:606.784933pt;}
.ya3_c01390{bottom:607.077695pt;}
.ya2_c01390{bottom:607.466693pt;}
.ya1_c01390{bottom:608.364749pt;}
.ya0_c01390{bottom:608.619799pt;}
.y9f_c01390{bottom:609.207507pt;}
.y9e_c01390{bottom:609.505621pt;}
.y9d_c01390{bottom:609.795420pt;}
.y9c_c01390{bottom:610.556740pt;}
.y9b_c01390{bottom:611.034027pt;}
.y9a_c01390{bottom:635.144049pt;}
.y99_c01390{bottom:636.401904pt;}
.y98_c01390{bottom:637.159365pt;}
.y97_c01390{bottom:637.799393pt;}
.y96_c01390{bottom:638.428833pt;}
.y95_c01390{bottom:638.817293pt;}
.y94_c01390{bottom:640.204532pt;}
.y93_c01390{bottom:640.698752pt;}
.y92_c01390{bottom:641.091436pt;}
.y91_c01390{bottom:641.952120pt;}
.y90_c01390{bottom:642.466035pt;}
.y8f_c01390{bottom:642.955079pt;}
.y8e_c01390{bottom:668.171107pt;}
.y8d_c01390{bottom:668.987147pt;}
.y8c_c01390{bottom:669.399911pt;}
.y8b_c01390{bottom:669.792321pt;}
.y8a_c01390{bottom:670.608889pt;}
.y89_c01390{bottom:671.149592pt;}
.y88_c01390{bottom:671.422671pt;}
.y87_c01390{bottom:673.331377pt;}
.y86_c01390{bottom:673.879324pt;}
.y85_c01390{bottom:674.555356pt;}
.y84_c01390{bottom:675.358140pt;}
.y83_c01390{bottom:697.758571pt;}
.y82_c01390{bottom:698.151797pt;}
.y81_c01390{bottom:698.532177pt;}
.y80_c01390{bottom:699.165900pt;}
.y7f_c01390{bottom:699.409373pt;}
.y7e_c01390{bottom:700.304255pt;}
.y7d_c01390{bottom:701.545480pt;}
.y7c_c01390{bottom:701.932503pt;}
.y7b_c01390{bottom:702.428292pt;}
.y7a_c01390{bottom:703.582851pt;}
.y79_c01390{bottom:704.706745pt;}
.y78_c01390{bottom:704.959501pt;}
.y77_c01390{bottom:705.599177pt;}
.y76_c01390{bottom:730.561899pt;}
.y75_c01390{bottom:730.822731pt;}
.y74_c01390{bottom:731.170203pt;}
.y73_c01390{bottom:731.606193pt;}
.y72_c01390{bottom:732.034467pt;}
.y71_c01390{bottom:732.658819pt;}
.y70_c01390{bottom:733.184045pt;}
.y6f_c01390{bottom:733.352603pt;}
.y6e_c01390{bottom:733.620329pt;}
.y6d_c01390{bottom:734.235939pt;}
.y6c_c01390{bottom:734.569151pt;}
.y6b_c01390{bottom:735.598951pt;}
.y6a_c01390{bottom:763.712733pt;}
.y69_c01390{bottom:764.029519pt;}
.y68_c01390{bottom:764.433409pt;}
.y67_c01390{bottom:765.082923pt;}
.y66_c01390{bottom:765.296117pt;}
.y65_c01390{bottom:765.623375pt;}
.y64_c01390{bottom:766.373149pt;}
.y63_c01390{bottom:766.895752pt;}
.y62_c01390{bottom:767.109343pt;}
.y61_c01390{bottom:768.173776pt;}
.y60_c01390{bottom:768.823377pt;}
.y5f_c01390{bottom:769.140133pt;}
.y5e_c01390{bottom:769.681333pt;}
.y5d_c01390{bottom:793.458664pt;}
.y5c_c01390{bottom:794.271896pt;}
.y5b_c01390{bottom:794.812427pt;}
.y5a_c01390{bottom:795.911837pt;}
.y59_c01390{bottom:797.269333pt;}
.y58_c01390{bottom:798.055685pt;}
.y57_c01390{bottom:798.757627pt;}
.y56_c01390{bottom:799.571176pt;}
.y55_c01390{bottom:799.987723pt;}
.y54_c01390{bottom:800.790352pt;}
.y53_c01390{bottom:801.200795pt;}
.y52_c01390{bottom:801.566997pt;}
.y51_c01390{bottom:802.010667pt;}
.y50_c01390{bottom:826.855793pt;}
.y4f_c01390{bottom:827.206353pt;}
.y4e_c01390{bottom:828.033407pt;}
.y4d_c01390{bottom:829.090587pt;}
.y4c_c01390{bottom:829.798913pt;}
.y4b_c01390{bottom:830.132533pt;}
.y4a_c01390{bottom:831.059813pt;}
.y49_c01390{bottom:831.411193pt;}
.y48_c01390{bottom:832.458947pt;}
.y47_c01390{bottom:833.026713pt;}
.y46_c01390{bottom:855.700547pt;}
.y45_c01390{bottom:856.424327pt;}
.y44_c01390{bottom:857.466487pt;}
.y43_c01390{bottom:857.850720pt;}
.y42_c01390{bottom:858.990073pt;}
.y41_c01390{bottom:859.998287pt;}
.y40_c01390{bottom:861.259173pt;}
.y3f_c01390{bottom:861.639987pt;}
.y3e_c01390{bottom:862.260367pt;}
.y3d_c01390{bottom:863.137540pt;}
.y3c_c01390{bottom:863.511367pt;}
.y3b_c01390{bottom:886.764187pt;}
.y3a_c01390{bottom:887.347920pt;}
.y39_c01390{bottom:887.811640pt;}
.y38_c01390{bottom:888.853967pt;}
.y37_c01390{bottom:889.213480pt;}
.y36_c01390{bottom:890.261193pt;}
.y35_c01390{bottom:891.421387pt;}
.y34_c01390{bottom:892.011327pt;}
.y33_c01390{bottom:892.360480pt;}
.y32_c01390{bottom:893.386280pt;}
.y31_c01390{bottom:893.751220pt;}
.y30_c01390{bottom:917.726480pt;}
.y2f_c01390{bottom:918.747127pt;}
.y2e_c01390{bottom:919.111727pt;}
.y2d_c01390{bottom:919.623640pt;}
.y2c_c01390{bottom:920.141800pt;}
.y2b_c01390{bottom:921.149973pt;}
.y2a_c01390{bottom:922.163873pt;}
.y29_c01390{bottom:923.284633pt;}
.y28_c01390{bottom:923.678193pt;}
.y27_c01390{bottom:924.176440pt;}
.y26_c01390{bottom:924.934487pt;}
.y25_c01390{bottom:925.673773pt;}
.y24_c01390{bottom:949.410893pt;}
.y23_c01390{bottom:951.312493pt;}
.y22_c01390{bottom:951.729320pt;}
.y21_c01390{bottom:952.132547pt;}
.y20_c01390{bottom:953.349200pt;}
.y1f_c01390{bottom:954.316467pt;}
.y1e_c01390{bottom:954.726493pt;}
.y1d_c01390{bottom:955.402373pt;}
.y1c_c01390{bottom:956.877540pt;}
.y1b_c01390{bottom:957.838480pt;}
.y1a_c01390{bottom:981.115007pt;}
.y19_c01390{bottom:981.851527pt;}
.y18_c01390{bottom:982.294487pt;}
.y17_c01390{bottom:983.165867pt;}
.y16_c01390{bottom:983.608087pt;}
.y15_c01390{bottom:984.623927pt;}
.y14_c01390{bottom:985.207287pt;}
.y13_c01390{bottom:985.930967pt;}
.y12_c01390{bottom:986.373547pt;}
.y11_c01390{bottom:987.237667pt;}
.y10_c01390{bottom:987.691387pt;}
.yf_c01390{bottom:988.098367pt;}
.ye_c01390{bottom:988.562667pt;}
.yd_c01390{bottom:1012.071691pt;}
.yc_c01390{bottom:1012.451724pt;}
.yb_c01390{bottom:1014.215356pt;}
.ya_c01390{bottom:1014.592443pt;}
.y9_c01390{bottom:1015.371281pt;}
.y8_c01390{bottom:1015.852888pt;}
.y7_c01390{bottom:1016.115592pt;}
.y6_c01390{bottom:1016.748779pt;}
.y5_c01390{bottom:1017.372969pt;}
.y4_c01390{bottom:1018.627383pt;}
.y3_c01390{bottom:1019.017348pt;}
.y2_c01390{bottom:1019.522667pt;}
.y1_c01390{bottom:1069.436000pt;}
.h12_c01390{height:37.333333pt;}
.h2_c01390{height:58.666667pt;}
.hb_c01390{height:64.003872pt;}
.h6_c01390{height:64.007200pt;}
.ha_c01390{height:69.337528pt;}
.hf_c01390{height:69.339192pt;}
.h4_c01390{height:69.341133pt;}
.he_c01390{height:69.343351pt;}
.h8_c01390{height:74.671184pt;}
.h3_c01390{height:74.672976pt;}
.h7_c01390{height:74.673984pt;}
.h5_c01390{height:74.675066pt;}
.h10_c01390{height:80.006760pt;}
.h11_c01390{height:80.010239pt;}
.hd_c01390{height:80.011559pt;}
.h9_c01390{height:85.338496pt;}
.hc_c01390{height:90.672152pt;}
.h1_c01390{height:1111.333333pt;}
.h0_c01390{height:1111.440000pt;}
.w0_c01390{width:781.200000pt;}
.w1_c01390{width:781.333333pt;}
.x0_c01390{left:0.000000pt;}
.xab_c01390{left:101.764833pt;}
.xb3_c01390{left:103.941333pt;}
.xa1_c01390{left:104.980000pt;}
.x90_c01390{left:109.495895pt;}
.x7f_c01390{left:110.730288pt;}
.x4e_c01390{left:112.414667pt;}
.x43_c01390{left:113.817333pt;}
.x1b_c01390{left:115.538773pt;}
.x4_c01390{left:116.468000pt;}
.xae_c01390{left:133.185468pt;}
.xa2_c01390{left:134.238667pt;}
.x33_c01390{left:144.054327pt;}
.x2c_c01390{left:145.258893pt;}
.x88_c01390{left:148.004445pt;}
.x6c_c01390{left:149.865332pt;}
.x5_c01390{left:155.338667pt;}
.x9e_c01390{left:157.932921pt;}
.x5e_c01390{left:161.087368pt;}
.x3a_c01390{left:162.082307pt;}
.x66_c01390{left:169.979372pt;}
.x44_c01390{left:171.665333pt;}
.x24_c01390{left:173.102273pt;}
.x80_c01390{left:177.933555pt;}
.x5f_c01390{left:180.549609pt;}
.x1c_c01390{left:184.135793pt;}
.x6_c01390{left:185.336000pt;}
.x6d_c01390{left:189.432467pt;}
.x4f_c01390{left:190.410667pt;}
.x45_c01390{left:200.982667pt;}
.xa3_c01390{left:202.184000pt;}
.x95_c01390{left:205.700000pt;}
.xaf_c01390{left:210.506469pt;}
.x34_c01390{left:211.512347pt;}
.x10_c01390{left:212.453333pt;}
.x91_c01390{left:215.827216pt;}
.x67_c01390{left:218.223107pt;}
.x9f_c01390{left:224.923588pt;}
.x89_c01390{left:227.348487pt;}
.x57_c01390{left:229.998705pt;}
.x25_c01390{left:231.462700pt;}
.x77_c01390{left:236.784515pt;}
.x11_c01390{left:243.406667pt;}
.x3b_c01390{left:249.447580pt;}
.xa4_c01390{left:250.401333pt;}
.x92_c01390{left:254.202863pt;}
.x6e_c01390{left:255.675015pt;}
.x68_c01390{left:257.368483pt;}
.x46_c01390{left:258.313333pt;}
.x2d_c01390{left:259.772033pt;}
.x8a_c01390{left:264.807255pt;}
.x78_c01390{left:265.796837pt;}
.x58_c01390{left:266.958179pt;}
.x12_c01390{left:270.538667pt;}
.x3c_c01390{left:278.740900pt;}
.x7_c01390{left:281.829333pt;}
.x93_c01390{left:283.764224pt;}
.x81_c01390{left:285.013715pt;}
.x6f_c01390{left:285.918355pt;}
.x35_c01390{left:288.572000pt;}
.x1d_c01390{left:289.504040pt;}
.x79_c01390{left:295.565160pt;}
.xb4_c01390{left:297.169333pt;}
.x13_c01390{left:300.786667pt;}
.xb0_c01390{left:307.508024pt;}
.x2e_c01390{left:308.970253pt;}
.x96_c01390{left:312.753333pt;}
.x94_c01390{left:321.991871pt;}
.x70_c01390{left:323.937519pt;}
.xa5_c01390{left:328.425333pt;}
.x8_c01390{left:329.844000pt;}
.x82_c01390{left:333.978505pt;}
.x59_c01390{left:335.409023pt;}
.xb5_c01390{left:336.780000pt;}
.x1e_c01390{left:337.763427pt;}
.x47_c01390{left:346.177333pt;}
.x1_c01390{left:350.160000pt;}
.x7a_c01390{left:354.327139pt;}
.x3d_c01390{left:356.029713pt;}
.x14_c01390{left:358.394667pt;}
.x97_c01390{left:360.584000pt;}
.x8b_c01390{left:362.917347pt;}
.xa0_c01390{left:364.696921pt;}
.x50_c01390{left:365.649333pt;}
.x1f_c01390{left:367.054533pt;}
.x2_c01390{left:370.800000pt;}
.x83_c01390{left:372.832747pt;}
.xa6_c01390{left:377.153333pt;}
.x9_c01390{left:378.550667pt;}
.x7b_c01390{left:379.816751pt;}
.x3e_c01390{left:383.872307pt;}
.x26_c01390{left:386.260673pt;}
.x15_c01390{left:387.900000pt;}
.x98_c01390{left:390.542667pt;}
.x60_c01390{left:393.960916pt;}
.xb6_c01390{left:395.092000pt;}
.x48_c01390{left:396.316000pt;}
.xa_c01390{left:398.758667pt;}
.x2f_c01390{left:405.698613pt;}
.x3_c01390{left:407.520000pt;}
.x84_c01390{left:411.746988pt;}
.x51_c01390{left:413.158667pt;}
.xb1_c01390{left:414.541197pt;}
.x8c_c01390{left:421.230092pt;}
.x61_c01390{left:423.689589pt;}
.x71_c01390{left:430.653839pt;}
.xb_c01390{left:435.805333pt;}
.x99_c01390{left:439.968000pt;}
.x3f_c01390{left:442.918967pt;}
.x49_c01390{left:452.484000pt;}
.x72_c01390{left:460.513179pt;}
.x36_c01390{left:463.050553pt;}
.x27_c01390{left:464.256347pt;}
.x7c_c01390{left:469.580400pt;}
.x16_c01390{left:475.036000pt;}
.x52_c01390{left:481.320000pt;}
.xa7_c01390{left:483.470667pt;}
.x85_c01390{left:490.228789pt;}
.x30_c01390{left:493.061220pt;}
.xac_c01390{left:494.071336pt;}
.xc_c01390{left:495.716000pt;}
.xb7_c01390{left:501.673333pt;}
.x73_c01390{left:508.885441pt;}
.x69_c01390{left:510.122804pt;}
.x53_c01390{left:511.070667pt;}
.xa8_c01390{left:512.508000pt;}
.x62_c01390{left:519.192825pt;}
.xb2_c01390{left:521.110371pt;}
.x20_c01390{left:523.051540pt;}
.xd_c01390{left:524.722667pt;}
.x9a_c01390{left:526.237333pt;}
.x86_c01390{left:528.380364pt;}
.x40_c01390{left:531.001593pt;}
.x6a_c01390{left:538.159213pt;}
.x28_c01390{left:541.781333pt;}
.x17_c01390{left:542.758667pt;}
.x4a_c01390{left:549.448000pt;}
.x37_c01390{left:550.654507pt;}
.x21_c01390{left:551.889313pt;}
.x9b_c01390{left:555.408000pt;}
.x74_c01390{left:558.099023pt;}
.x5a_c01390{left:559.123269pt;}
.x87_c01390{left:566.279953pt;}
.x6b_c01390{left:567.682245pt;}
.x18_c01390{left:572.240000pt;}
.x38_c01390{left:580.182053pt;}
.x22_c01390{left:581.633753pt;}
.x63_c01390{left:588.059315pt;}
.x54_c01390{left:589.498667pt;}
.x8d_c01390{left:596.526980pt;}
.x41_c01390{left:599.919360pt;}
.x5b_c01390{left:607.608340pt;}
.x31_c01390{left:609.989167pt;}
.x7d_c01390{left:615.051332pt;}
.x75_c01390{left:616.412413pt;}
.x29_c01390{left:621.033047pt;}
.x55_c01390{left:626.216000pt;}
.x4b_c01390{left:627.977333pt;}
.x42_c01390{left:629.158013pt;}
.x19_c01390{left:630.332000pt;}
.x9c_c01390{left:632.750667pt;}
.x7e_c01390{left:634.958219pt;}
.xa9_c01390{left:639.765333pt;}
.x5c_c01390{left:646.227857pt;}
.x2a_c01390{left:649.073887pt;}
.x8e_c01390{left:653.119784pt;}
.x56_c01390{left:655.014667pt;}
.xe_c01390{left:660.386667pt;}
.x4c_c01390{left:666.586667pt;}
.xad_c01390{left:667.482719pt;}
.x9d_c01390{left:673.288000pt;}
.x5d_c01390{left:675.273836pt;}
.xaa_c01390{left:678.049333pt;}
.x64_c01390{left:684.806521pt;}
.xf_c01390{left:689.620000pt;}
.x32_c01390{left:697.334440pt;}
.x1a_c01390{left:708.964000pt;}
.x76_c01390{left:713.184953pt;}
.x65_c01390{left:715.099195pt;}
.x39_c01390{left:716.048800pt;}
.x23_c01390{left:717.475793pt;}
.x8f_c01390{left:721.786859pt;}
.x4d_c01390{left:724.674667pt;}
.x2b_c01390{left:727.608247pt;}
}





/* 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_c01391 {
    display:none;
  }
  .loading-indicator_c01391.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01391 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_c01391 { 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_c01391" -> "#page-container .classname_c01391")
 */
.pf_c01391 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01391 { /* 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_c01391.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01391 { /* 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_c01391 { /* 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_c01391 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01391 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01391 {overflow:visible;}
  }
}
.c_c01391 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01391 { /* 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_c01391:after { /* webkit #35443 */
  content: '';
}
.t_c01391:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01391 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 */
}
.__c01391 { /* 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_c01391 { /* info for Javascript */
  display:none;
}
.l_c01391 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01391 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01391 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01391: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_c01391 {
    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_c01391.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01391.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_c01391 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01391{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01391;src:url('chunks/assets/font_b11a17f404e7258299fdf971.woff2')format("woff");}.ff1_c01391{font-family:ff1_c01391;line-height:1.000000;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;}
.m15_c01391{transform:matrix(0.095752,0.002681,-0.006997,0.249902,0,0);-ms-transform:matrix(0.095752,0.002681,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.095752,0.002681,-0.006997,0.249902,0,0);}
.m19_c01391{transform:matrix(0.128335,0.003593,-0.006997,0.249902,0,0);-ms-transform:matrix(0.128335,0.003593,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.128335,0.003593,-0.006997,0.249902,0,0);}
.m16_c01391{transform:matrix(0.131493,0.003682,-0.006997,0.249902,0,0);-ms-transform:matrix(0.131493,0.003682,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.131493,0.003682,-0.006997,0.249902,0,0);}
.m1a_c01391{transform:matrix(0.135827,0.003803,-0.006997,0.249902,0,0);-ms-transform:matrix(0.135827,0.003803,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.135827,0.003803,-0.006997,0.249902,0,0);}
.m14_c01391{transform:matrix(0.144154,0.004036,-0.006997,0.249902,0,0);-ms-transform:matrix(0.144154,0.004036,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.144154,0.004036,-0.006997,0.249902,0,0);}
.m10_c01391{transform:matrix(0.154769,0.004334,-0.006997,0.249902,0,0);-ms-transform:matrix(0.154769,0.004334,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.154769,0.004334,-0.006997,0.249902,0,0);}
.m12_c01391{transform:matrix(0.180879,0.005065,-0.006997,0.249902,0,0);-ms-transform:matrix(0.180879,0.005065,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.180879,0.005065,-0.006997,0.249902,0,0);}
.m0_c01391{transform:matrix(0.204745,0.006558,-0.008004,0.249872,0,0);-ms-transform:matrix(0.204745,0.006558,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.204745,0.006558,-0.008004,0.249872,0,0);}
.m1d_c01391{transform:matrix(0.206411,0.007438,-0.009003,0.249838,0,0);-ms-transform:matrix(0.206411,0.007438,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.206411,0.007438,-0.009003,0.249838,0,0);}
.m17_c01391{transform:matrix(0.211337,0.005917,-0.006997,0.249902,0,0);-ms-transform:matrix(0.211337,0.005917,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.211337,0.005917,-0.006997,0.249902,0,0);}
.mb_c01391{transform:matrix(0.211977,0.005935,-0.006997,0.249902,0,0);-ms-transform:matrix(0.211977,0.005935,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.211977,0.005935,-0.006997,0.249902,0,0);}
.m13_c01391{transform:matrix(0.216560,0.006064,-0.006997,0.249902,0,0);-ms-transform:matrix(0.216560,0.006064,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.216560,0.006064,-0.006997,0.249902,0,0);}
.m18_c01391{transform:matrix(0.217420,0.006088,-0.006997,0.249902,0,0);-ms-transform:matrix(0.217420,0.006088,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.217420,0.006088,-0.006997,0.249902,0,0);}
.m1f_c01391{transform:matrix(0.235385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235385,0.000000,0.000000,0.250000,0,0);}
.mf_c01391{transform:matrix(0.246698,0.006908,-0.006997,0.249902,0,0);-ms-transform:matrix(0.246698,0.006908,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.246698,0.006908,-0.006997,0.249902,0,0);}
.ma_c01391{transform:matrix(0.251017,0.007028,-0.006997,0.249902,0,0);-ms-transform:matrix(0.251017,0.007028,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.251017,0.007028,-0.006997,0.249902,0,0);}
.m9_c01391{transform:matrix(0.254285,0.007120,-0.006997,0.249902,0,0);-ms-transform:matrix(0.254285,0.007120,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.254285,0.007120,-0.006997,0.249902,0,0);}
.m8_c01391{transform:matrix(0.275062,0.007702,-0.006997,0.249902,0,0);-ms-transform:matrix(0.275062,0.007702,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.275062,0.007702,-0.006997,0.249902,0,0);}
.m4_c01391{transform:matrix(0.275594,0.008828,-0.008004,0.249872,0,0);-ms-transform:matrix(0.275594,0.008828,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.275594,0.008828,-0.008004,0.249872,0,0);}
.mc_c01391{transform:matrix(0.278761,0.007805,-0.006997,0.249902,0,0);-ms-transform:matrix(0.278761,0.007805,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.278761,0.007805,-0.006997,0.249902,0,0);}
.m3_c01391{transform:matrix(0.285683,0.009151,-0.008004,0.249872,0,0);-ms-transform:matrix(0.285683,0.009151,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.285683,0.009151,-0.008004,0.249872,0,0);}
.m5_c01391{transform:matrix(0.293834,0.009412,-0.008004,0.249872,0,0);-ms-transform:matrix(0.293834,0.009412,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.293834,0.009412,-0.008004,0.249872,0,0);}
.m7_c01391{transform:matrix(0.297793,0.008338,-0.006997,0.249902,0,0);-ms-transform:matrix(0.297793,0.008338,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.297793,0.008338,-0.006997,0.249902,0,0);}
.m6_c01391{transform:matrix(0.328676,0.010528,-0.008004,0.249872,0,0);-ms-transform:matrix(0.328676,0.010528,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.328676,0.010528,-0.008004,0.249872,0,0);}
.m1_c01391{transform:matrix(0.367487,0.011771,-0.008004,0.249872,0,0);-ms-transform:matrix(0.367487,0.011771,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.367487,0.011771,-0.008004,0.249872,0,0);}
.md_c01391{transform:matrix(0.394750,0.011053,-0.006997,0.249902,0,0);-ms-transform:matrix(0.394750,0.011053,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.394750,0.011053,-0.006997,0.249902,0,0);}
.m1c_c01391{transform:matrix(0.420102,0.015139,-0.009003,0.249838,0,0);-ms-transform:matrix(0.420102,0.015139,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.420102,0.015139,-0.009003,0.249838,0,0);}
.m2_c01391{transform:matrix(0.473822,0.015177,-0.008004,0.249872,0,0);-ms-transform:matrix(0.473822,0.015177,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.473822,0.015177,-0.008004,0.249872,0,0);}
.m1b_c01391{transform:matrix(0.477870,0.017221,-0.009003,0.249838,0,0);-ms-transform:matrix(0.477870,0.017221,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.477870,0.017221,-0.009003,0.249838,0,0);}
.m11_c01391{transform:matrix(0.480257,0.013447,-0.006997,0.249902,0,0);-ms-transform:matrix(0.480257,0.013447,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.480257,0.013447,-0.006997,0.249902,0,0);}
.m1e_c01391{transform:matrix(0.482697,0.017394,-0.009003,0.249838,0,0);-ms-transform:matrix(0.482697,0.017394,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.482697,0.017394,-0.009003,0.249838,0,0);}
.me_c01391{transform:matrix(0.547161,0.015320,-0.006997,0.249902,0,0);-ms-transform:matrix(0.547161,0.015320,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.547161,0.015320,-0.006997,0.249902,0,0);}
.v0_c01391{vertical-align:0.000000px;}
.ls0_c01391{letter-spacing:0.000000px;}
.sc__c01391{text-shadow:none;}
.sc0_c01391{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__c01391{-webkit-text-stroke:0px transparent;}
.sc0_c01391{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01391{word-spacing:0.000000px;}
.fc0_c01391{color:transparent;}
.fs4_c01391{font-size:24.000000px;}
.fs0_c01391{font-size:77.961966px;}
.fs1_c01391{font-size:84.032922px;}
.fs3_c01391{font-size:101.964141px;}
.fs2_c01391{font-size:168.065843px;}
.y0_c01391{bottom:0.000000px;}
.y20_c01391{bottom:609.120000px;}
.y1f_c01391{bottom:617.406228px;}
.y1e_c01391{bottom:620.495514px;}
.y1d_c01391{bottom:621.413082px;}
.y1c_c01391{bottom:624.033000px;}
.y1b_c01391{bottom:651.560616px;}
.y1a_c01391{bottom:652.633686px;}
.y19_c01391{bottom:652.924398px;}
.y18_c01391{bottom:653.329230px;}
.y17_c01391{bottom:654.228378px;}
.y16_c01391{bottom:654.486624px;}
.y15_c01391{bottom:655.745592px;}
.y14_c01391{bottom:656.290122px;}
.y13_c01391{bottom:656.648322px;}
.y12_c01391{bottom:657.785676px;}
.y11_c01391{bottom:658.093578px;}
.y10_c01391{bottom:688.891308px;}
.yf_c01391{bottom:690.165546px;}
.ye_c01391{bottom:692.321406px;}
.yd_c01391{bottom:693.083832px;}
.yc_c01391{bottom:694.325856px;}
.yb_c01391{bottom:697.667628px;}
.ya_c01391{bottom:698.709648px;}
.y9_c01391{bottom:700.221102px;}
.y8_c01391{bottom:701.967000px;}
.y7_c01391{bottom:724.641384px;}
.y6_c01391{bottom:726.418104px;}
.y5_c01391{bottom:727.718760px;}
.y4_c01391{bottom:731.070312px;}
.y3_c01391{bottom:732.718584px;}
.y2_c01391{bottom:733.570728px;}
.y1_c01391{bottom:736.035000px;}
.h6_c01391{height:24.000000px;}
.h2_c01391{height:77.961966px;}
.h3_c01391{height:84.032922px;}
.h5_c01391{height:101.964141px;}
.h4_c01391{height:168.065843px;}
.h1_c01391{height:1250.250000px;}
.h0_c01391{height:1250.370000px;}
.w0_c01391{width:878.850000px;}
.w1_c01391{width:879.000000px;}
.x0_c01391{left:0.000000px;}
.x11_c01391{left:136.464444px;}
.x12_c01391{left:162.097410px;}
.x8_c01391{left:227.176500px;}
.x13_c01391{left:256.920372px;}
.x14_c01391{left:286.708686px;}
.x9_c01391{left:289.530000px;}
.x1_c01391{left:316.513500px;}
.x15_c01391{left:332.051472px;}
.xa_c01391{left:343.510500px;}
.xb_c01391{left:380.725500px;}
.x2_c01391{left:393.444991px;}
.x3_c01391{left:420.047862px;}
.x16_c01391{left:436.954428px;}
.x17_c01391{left:458.508588px;}
.x1c_c01391{left:469.894500px;}
.x4_c01391{left:471.504853px;}
.xc_c01391{left:500.074500px;}
.x1f_c01391{left:529.470000px;}
.x18_c01391{left:533.458146px;}
.x1d_c01391{left:542.597224px;}
.xd_c01391{left:544.432500px;}
.x19_c01391{left:567.217266px;}
.xe_c01391{left:571.662000px;}
.x5_c01391{left:576.136117px;}
.x1a_c01391{left:591.432102px;}
.x6_c01391{left:616.740972px;}
.xf_c01391{left:648.657000px;}
.x1e_c01391{left:653.787423px;}
.x7_c01391{left:672.207950px;}
.x1b_c01391{left:680.849628px;}
.x10_c01391{left:694.165500px;}
@media print{
.v0_c01391{vertical-align:0.000000pt;}
.ls0_c01391{letter-spacing:0.000000pt;}
.ws0_c01391{word-spacing:0.000000pt;}
.fs4_c01391{font-size:21.333333pt;}
.fs0_c01391{font-size:69.299525pt;}
.fs1_c01391{font-size:74.695930pt;}
.fs3_c01391{font-size:90.634792pt;}
.fs2_c01391{font-size:149.391861pt;}
.y0_c01391{bottom:0.000000pt;}
.y20_c01391{bottom:541.440000pt;}
.y1f_c01391{bottom:548.805536pt;}
.y1e_c01391{bottom:551.551568pt;}
.y1d_c01391{bottom:552.367184pt;}
.y1c_c01391{bottom:554.696000pt;}
.y1b_c01391{bottom:579.164992pt;}
.y1a_c01391{bottom:580.118832pt;}
.y19_c01391{bottom:580.377243pt;}
.y18_c01391{bottom:580.737093pt;}
.y17_c01391{bottom:581.536336pt;}
.y16_c01391{bottom:581.765888pt;}
.y15_c01391{bottom:582.884971pt;}
.y14_c01391{bottom:583.368997pt;}
.y13_c01391{bottom:583.687397pt;}
.y12_c01391{bottom:584.698379pt;}
.y11_c01391{bottom:584.972069pt;}
.y10_c01391{bottom:612.347829pt;}
.yf_c01391{bottom:613.480485pt;}
.ye_c01391{bottom:615.396805pt;}
.yd_c01391{bottom:616.074517pt;}
.yc_c01391{bottom:617.178539pt;}
.yb_c01391{bottom:620.149003pt;}
.ya_c01391{bottom:621.075243pt;}
.y9_c01391{bottom:622.418757pt;}
.y8_c01391{bottom:623.970667pt;}
.y7_c01391{bottom:644.125675pt;}
.y6_c01391{bottom:645.704981pt;}
.y5_c01391{bottom:646.861120pt;}
.y4_c01391{bottom:649.840277pt;}
.y3_c01391{bottom:651.305408pt;}
.y2_c01391{bottom:652.062869pt;}
.y1_c01391{bottom:654.253333pt;}
.h6_c01391{height:21.333333pt;}
.h2_c01391{height:69.299525pt;}
.h3_c01391{height:74.695930pt;}
.h5_c01391{height:90.634792pt;}
.h4_c01391{height:149.391861pt;}
.h1_c01391{height:1111.333333pt;}
.h0_c01391{height:1111.440000pt;}
.w0_c01391{width:781.200000pt;}
.w1_c01391{width:781.333333pt;}
.x0_c01391{left:0.000000pt;}
.x11_c01391{left:121.301728pt;}
.x12_c01391{left:144.086587pt;}
.x8_c01391{left:201.934667pt;}
.x13_c01391{left:228.373664pt;}
.x14_c01391{left:254.852165pt;}
.x9_c01391{left:257.360000pt;}
.x1_c01391{left:281.345333pt;}
.x15_c01391{left:295.156864pt;}
.xa_c01391{left:305.342667pt;}
.xb_c01391{left:338.422667pt;}
.x2_c01391{left:349.728881pt;}
.x3_c01391{left:373.375877pt;}
.x16_c01391{left:388.403936pt;}
.x17_c01391{left:407.563189pt;}
.x1c_c01391{left:417.684000pt;}
.x4_c01391{left:419.115425pt;}
.xc_c01391{left:444.510667pt;}
.x1f_c01391{left:470.640000pt;}
.x18_c01391{left:474.185019pt;}
.x1d_c01391{left:482.308644pt;}
.xd_c01391{left:483.940000pt;}
.x19_c01391{left:504.193125pt;}
.xe_c01391{left:508.144000pt;}
.x5_c01391{left:512.120993pt;}
.x1a_c01391{left:525.717424pt;}
.x6_c01391{left:548.214197pt;}
.xf_c01391{left:576.584000pt;}
.x1e_c01391{left:581.144376pt;}
.x7_c01391{left:597.518177pt;}
.x1b_c01391{left:605.199669pt;}
.x10_c01391{left:617.036000pt;}
}





/* 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_c01392 {
    display:none;
  }
  .loading-indicator_c01392.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01392 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_c01392 { 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_c01392" -> "#page-container .classname_c01392")
 */
.pf_c01392 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01392 { /* 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_c01392.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01392 { /* 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_c01392 { /* 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_c01392 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01392 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01392 {overflow:visible;}
  }
}
.c_c01392 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01392 { /* 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_c01392:after { /* webkit #35443 */
  content: '';
}
.t_c01392:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01392 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 */
}
.__c01392 { /* 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_c01392 { /* info for Javascript */
  display:none;
}
.l_c01392 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01392 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01392 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01392: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_c01392 {
    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_c01392.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01392.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_c01392 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01392{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01392;src:url('chunks/assets/font_c605e72f209fc835e906f064.woff2')format("woff");}.ff1_c01392{font-family:ff1_c01392;line-height:1.000000;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;}
.mc6_c01392{transform:matrix(0.125837,0.001384,-0.002750,0.249985,0,0);-ms-transform:matrix(0.125837,0.001384,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.125837,0.001384,-0.002750,0.249985,0,0);}
.mc4_c01392{transform:matrix(0.135457,0.001490,-0.002750,0.249985,0,0);-ms-transform:matrix(0.135457,0.001490,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.135457,0.001490,-0.002750,0.249985,0,0);}
.mc0_c01392{transform:matrix(0.137082,0.001508,-0.002750,0.249985,0,0);-ms-transform:matrix(0.137082,0.001508,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.137082,0.001508,-0.002750,0.249985,0,0);}
.mbe_c01392{transform:matrix(0.145546,0.001601,-0.002750,0.249985,0,0);-ms-transform:matrix(0.145546,0.001601,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.145546,0.001601,-0.002750,0.249985,0,0);}
.mc8_c01392{transform:matrix(0.145816,0.001604,-0.002750,0.249985,0,0);-ms-transform:matrix(0.145816,0.001604,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.145816,0.001604,-0.002750,0.249985,0,0);}
.mc2_c01392{transform:matrix(0.148091,0.001629,-0.002750,0.249985,0,0);-ms-transform:matrix(0.148091,0.001629,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.148091,0.001629,-0.002750,0.249985,0,0);}
.m0_c01392{transform:matrix(0.155785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155785,0.000000,0.000000,0.250000,0,0);}
.mbf_c01392{transform:matrix(0.157455,0.001732,-0.002750,0.249985,0,0);-ms-transform:matrix(0.157455,0.001732,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.157455,0.001732,-0.002750,0.249985,0,0);}
.mc7_c01392{transform:matrix(0.157735,0.001735,-0.002750,0.249985,0,0);-ms-transform:matrix(0.157735,0.001735,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.157735,0.001735,-0.002750,0.249985,0,0);}
.mc1_c01392{transform:matrix(0.160065,0.001761,-0.002750,0.249985,0,0);-ms-transform:matrix(0.160065,0.001761,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.160065,0.001761,-0.002750,0.249985,0,0);}
.m2_c01392{transform:matrix(0.161005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161005,0.000000,0.000000,0.250000,0,0);}
.mc5_c01392{transform:matrix(0.161040,0.001771,-0.002750,0.249985,0,0);-ms-transform:matrix(0.161040,0.001771,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.161040,0.001771,-0.002750,0.249985,0,0);}
.mc3_c01392{transform:matrix(0.165840,0.001824,-0.002750,0.249985,0,0);-ms-transform:matrix(0.165840,0.001824,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.165840,0.001824,-0.002750,0.249985,0,0);}
.m22_c01392{transform:matrix(0.179410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179410,0.000000,0.000000,0.250000,0,0);}
.mb7_c01392{transform:matrix(0.186419,0.002051,-0.002750,0.249985,0,0);-ms-transform:matrix(0.186419,0.002051,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.186419,0.002051,-0.002750,0.249985,0,0);}
.mf3_c01392{transform:matrix(0.192813,0.002121,-0.002750,0.249985,0,0);-ms-transform:matrix(0.192813,0.002121,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.192813,0.002121,-0.002750,0.249985,0,0);}
.mf7_c01392{transform:matrix(0.193203,0.002125,-0.002750,0.249985,0,0);-ms-transform:matrix(0.193203,0.002125,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.193203,0.002125,-0.002750,0.249985,0,0);}
.m140_c01392{transform:matrix(0.194005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194005,0.000000,0.000000,0.250000,0,0);}
.m13d_c01392{transform:matrix(0.194495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194495,0.000000,0.000000,0.250000,0,0);}
.mf8_c01392{transform:matrix(0.194643,0.002141,-0.002750,0.249985,0,0);-ms-transform:matrix(0.194643,0.002141,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.194643,0.002141,-0.002750,0.249985,0,0);}
.m17_c01392{transform:matrix(0.195465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195465,0.000000,0.000000,0.250000,0,0);}
.m13f_c01392{transform:matrix(0.195575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195575,0.000000,0.000000,0.250000,0,0);}
.mf1_c01392{transform:matrix(0.196643,0.002163,-0.002750,0.249985,0,0);-ms-transform:matrix(0.196643,0.002163,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.196643,0.002163,-0.002750,0.249985,0,0);}
.m1f_c01392{transform:matrix(0.197855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197855,0.000000,0.000000,0.250000,0,0);}
.m1c_c01392{transform:matrix(0.198065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198065,0.000000,0.000000,0.250000,0,0);}
.m13c_c01392{transform:matrix(0.198820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198820,0.000000,0.000000,0.250000,0,0);}
.mf5_c01392{transform:matrix(0.199128,0.002190,-0.002750,0.249985,0,0);-ms-transform:matrix(0.199128,0.002190,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.199128,0.002190,-0.002750,0.249985,0,0);}
.m7f_c01392{transform:matrix(0.199268,0.002192,-0.002750,0.249985,0,0);-ms-transform:matrix(0.199268,0.002192,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.199268,0.002192,-0.002750,0.249985,0,0);}
.m141_c01392{transform:matrix(0.202820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202820,0.000000,0.000000,0.250000,0,0);}
.ma3_c01392{transform:matrix(0.203278,0.002236,-0.002750,0.249985,0,0);-ms-transform:matrix(0.203278,0.002236,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.203278,0.002236,-0.002750,0.249985,0,0);}
.m20_c01392{transform:matrix(0.204125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204125,0.000000,0.000000,0.250000,0,0);}
.m25_c01392{transform:matrix(0.204770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204770,0.000000,0.000000,0.250000,0,0);}
.m1b_c01392{transform:matrix(0.205055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205055,0.000000,0.000000,0.250000,0,0);}
.mb9_c01392{transform:matrix(0.205623,0.002262,-0.002750,0.249985,0,0);-ms-transform:matrix(0.205623,0.002262,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.205623,0.002262,-0.002750,0.249985,0,0);}
.m136_c01392{transform:matrix(0.207425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207425,0.000000,0.000000,0.250000,0,0);}
.m13e_c01392{transform:matrix(0.207590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207590,0.000000,0.000000,0.250000,0,0);}
.m133_c01392{transform:matrix(0.207720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207720,0.000000,0.000000,0.250000,0,0);}
.mad_c01392{transform:matrix(0.207882,0.002287,-0.002750,0.249985,0,0);-ms-transform:matrix(0.207882,0.002287,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.207882,0.002287,-0.002750,0.249985,0,0);}
.m6_c01392{transform:matrix(0.208510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208510,0.000000,0.000000,0.250000,0,0);}
.m28_c01392{transform:matrix(0.208555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208555,0.000000,0.000000,0.250000,0,0);}
.mb8_c01392{transform:matrix(0.209792,0.002308,-0.002750,0.249985,0,0);-ms-transform:matrix(0.209792,0.002308,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.209792,0.002308,-0.002750,0.249985,0,0);}
.m13a_c01392{transform:matrix(0.209850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209850,0.000000,0.000000,0.250000,0,0);}
.m134_c01392{transform:matrix(0.209870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209870,0.000000,0.000000,0.250000,0,0);}
.m11a_c01392{transform:matrix(0.209914,0.002939,-0.003500,0.249976,0,0);-ms-transform:matrix(0.209914,0.002939,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.209914,0.002939,-0.003500,0.249976,0,0);}
.me6_c01392{transform:matrix(0.210542,0.002316,-0.002750,0.249985,0,0);-ms-transform:matrix(0.210542,0.002316,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.210542,0.002316,-0.002750,0.249985,0,0);}
.me0_c01392{transform:matrix(0.210597,0.002317,-0.002750,0.249985,0,0);-ms-transform:matrix(0.210597,0.002317,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.210597,0.002317,-0.002750,0.249985,0,0);}
.mf6_c01392{transform:matrix(0.211012,0.002321,-0.002750,0.249985,0,0);-ms-transform:matrix(0.211012,0.002321,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.211012,0.002321,-0.002750,0.249985,0,0);}
.m56_c01392{transform:matrix(0.211567,0.002327,-0.002750,0.249985,0,0);-ms-transform:matrix(0.211567,0.002327,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.211567,0.002327,-0.002750,0.249985,0,0);}
.mb1_c01392{transform:matrix(0.211582,0.002327,-0.002750,0.249985,0,0);-ms-transform:matrix(0.211582,0.002327,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.211582,0.002327,-0.002750,0.249985,0,0);}
.mf4_c01392{transform:matrix(0.212062,0.002333,-0.002750,0.249985,0,0);-ms-transform:matrix(0.212062,0.002333,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.212062,0.002333,-0.002750,0.249985,0,0);}
.m19_c01392{transform:matrix(0.212185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212185,0.000000,0.000000,0.250000,0,0);}
.m122_c01392{transform:matrix(0.213062,0.002344,-0.002750,0.249985,0,0);-ms-transform:matrix(0.213062,0.002344,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.213062,0.002344,-0.002750,0.249985,0,0);}
.m138_c01392{transform:matrix(0.213235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213235,0.000000,0.000000,0.250000,0,0);}
.m2c_c01392{transform:matrix(0.213360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213360,0.000000,0.000000,0.250000,0,0);}
.mb5_c01392{transform:matrix(0.213467,0.002348,-0.002750,0.249985,0,0);-ms-transform:matrix(0.213467,0.002348,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.213467,0.002348,-0.002750,0.249985,0,0);}
.mae_c01392{transform:matrix(0.213497,0.002348,-0.002750,0.249985,0,0);-ms-transform:matrix(0.213497,0.002348,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.213497,0.002348,-0.002750,0.249985,0,0);}
.mb3_c01392{transform:matrix(0.213597,0.002350,-0.002750,0.249985,0,0);-ms-transform:matrix(0.213597,0.002350,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.213597,0.002350,-0.002750,0.249985,0,0);}
.mea_c01392{transform:matrix(0.213792,0.002352,-0.002750,0.249985,0,0);-ms-transform:matrix(0.213792,0.002352,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.213792,0.002352,-0.002750,0.249985,0,0);}
.m5c_c01392{transform:matrix(0.213972,0.002354,-0.002750,0.249985,0,0);-ms-transform:matrix(0.213972,0.002354,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.213972,0.002354,-0.002750,0.249985,0,0);}
.mbc_c01392{transform:matrix(0.214542,0.002360,-0.002750,0.249985,0,0);-ms-transform:matrix(0.214542,0.002360,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.214542,0.002360,-0.002750,0.249985,0,0);}
.ma4_c01392{transform:matrix(0.215692,0.002373,-0.002750,0.249985,0,0);-ms-transform:matrix(0.215692,0.002373,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.215692,0.002373,-0.002750,0.249985,0,0);}
.md6_c01392{transform:matrix(0.216712,0.002384,-0.002750,0.249985,0,0);-ms-transform:matrix(0.216712,0.002384,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.216712,0.002384,-0.002750,0.249985,0,0);}
.m18_c01392{transform:matrix(0.216790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216790,0.000000,0.000000,0.250000,0,0);}
.m5f_c01392{transform:matrix(0.216937,0.002386,-0.002750,0.249985,0,0);-ms-transform:matrix(0.216937,0.002386,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.216937,0.002386,-0.002750,0.249985,0,0);}
.mbb_c01392{transform:matrix(0.217102,0.002388,-0.002750,0.249985,0,0);-ms-transform:matrix(0.217102,0.002388,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.217102,0.002388,-0.002750,0.249985,0,0);}
.mf0_c01392{transform:matrix(0.217107,0.002388,-0.002750,0.249985,0,0);-ms-transform:matrix(0.217107,0.002388,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.217107,0.002388,-0.002750,0.249985,0,0);}
.mb2_c01392{transform:matrix(0.217517,0.002393,-0.002750,0.249985,0,0);-ms-transform:matrix(0.217517,0.002393,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.217517,0.002393,-0.002750,0.249985,0,0);}
.m1_c01392{transform:matrix(0.217920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217920,0.000000,0.000000,0.250000,0,0);}
.m32_c01392{transform:matrix(0.218940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218940,0.000000,0.000000,0.250000,0,0);}
.me_c01392{transform:matrix(0.218995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218995,0.000000,0.000000,0.250000,0,0);}
.m139_c01392{transform:matrix(0.219215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219215,0.000000,0.000000,0.250000,0,0);}
.m116_c01392{transform:matrix(0.219513,0.003073,-0.003500,0.249976,0,0);-ms-transform:matrix(0.219513,0.003073,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.219513,0.003073,-0.003500,0.249976,0,0);}
.m5a_c01392{transform:matrix(0.219897,0.002419,-0.002750,0.249985,0,0);-ms-transform:matrix(0.219897,0.002419,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.219897,0.002419,-0.002750,0.249985,0,0);}
.m1d_c01392{transform:matrix(0.219965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219965,0.000000,0.000000,0.250000,0,0);}
.mdb_c01392{transform:matrix(0.220177,0.002422,-0.002750,0.249985,0,0);-ms-transform:matrix(0.220177,0.002422,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.220177,0.002422,-0.002750,0.249985,0,0);}
.ma9_c01392{transform:matrix(0.220612,0.002427,-0.002750,0.249985,0,0);-ms-transform:matrix(0.220612,0.002427,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.220612,0.002427,-0.002750,0.249985,0,0);}
.m104_c01392{transform:matrix(0.221193,0.003097,-0.003500,0.249976,0,0);-ms-transform:matrix(0.221193,0.003097,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.221193,0.003097,-0.003500,0.249976,0,0);}
.m5d_c01392{transform:matrix(0.221197,0.002433,-0.002750,0.249985,0,0);-ms-transform:matrix(0.221197,0.002433,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.221197,0.002433,-0.002750,0.249985,0,0);}
.m26_c01392{transform:matrix(0.221205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221205,0.000000,0.000000,0.250000,0,0);}
.m36_c01392{transform:matrix(0.221455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221455,0.000000,0.000000,0.250000,0,0);}
.m9_c01392{transform:matrix(0.221885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221885,0.000000,0.000000,0.250000,0,0);}
.meb_c01392{transform:matrix(0.221932,0.002441,-0.002750,0.249985,0,0);-ms-transform:matrix(0.221932,0.002441,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.221932,0.002441,-0.002750,0.249985,0,0);}
.mb6_c01392{transform:matrix(0.222072,0.002443,-0.002750,0.249985,0,0);-ms-transform:matrix(0.222072,0.002443,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.222072,0.002443,-0.002750,0.249985,0,0);}
.m7c_c01392{transform:matrix(0.222112,0.002443,-0.002750,0.249985,0,0);-ms-transform:matrix(0.222112,0.002443,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.222112,0.002443,-0.002750,0.249985,0,0);}
.m5e_c01392{transform:matrix(0.222417,0.002447,-0.002750,0.249985,0,0);-ms-transform:matrix(0.222417,0.002447,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.222417,0.002447,-0.002750,0.249985,0,0);}
.m86_c01392{transform:matrix(0.222847,0.002451,-0.002750,0.249985,0,0);-ms-transform:matrix(0.222847,0.002451,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.222847,0.002451,-0.002750,0.249985,0,0);}
.m14_c01392{transform:matrix(0.222930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222930,0.000000,0.000000,0.250000,0,0);}
.me5_c01392{transform:matrix(0.223366,0.002457,-0.002750,0.249985,0,0);-ms-transform:matrix(0.223366,0.002457,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.223366,0.002457,-0.002750,0.249985,0,0);}
.m117_c01392{transform:matrix(0.223738,0.003132,-0.003500,0.249976,0,0);-ms-transform:matrix(0.223738,0.003132,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.223738,0.003132,-0.003500,0.249976,0,0);}
.md7_c01392{transform:matrix(0.223746,0.002461,-0.002750,0.249985,0,0);-ms-transform:matrix(0.223746,0.002461,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.223746,0.002461,-0.002750,0.249985,0,0);}
.m100_c01392{transform:matrix(0.223863,0.003134,-0.003500,0.249976,0,0);-ms-transform:matrix(0.223863,0.003134,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.223863,0.003134,-0.003500,0.249976,0,0);}
.m137_c01392{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m119_c01392{transform:matrix(0.224048,0.003137,-0.003500,0.249976,0,0);-ms-transform:matrix(0.224048,0.003137,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.224048,0.003137,-0.003500,0.249976,0,0);}
.mf9_c01392{transform:matrix(0.224271,0.002467,-0.002750,0.249985,0,0);-ms-transform:matrix(0.224271,0.002467,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.224271,0.002467,-0.002750,0.249985,0,0);}
.m60_c01392{transform:matrix(0.224346,0.002468,-0.002750,0.249985,0,0);-ms-transform:matrix(0.224346,0.002468,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.224346,0.002468,-0.002750,0.249985,0,0);}
.m2e_c01392{transform:matrix(0.224445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224445,0.000000,0.000000,0.250000,0,0);}
.m114_c01392{transform:matrix(0.224633,0.003145,-0.003500,0.249976,0,0);-ms-transform:matrix(0.224633,0.003145,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.224633,0.003145,-0.003500,0.249976,0,0);}
.mac_c01392{transform:matrix(0.224641,0.002471,-0.002750,0.249985,0,0);-ms-transform:matrix(0.224641,0.002471,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.224641,0.002471,-0.002750,0.249985,0,0);}
.m62_c01392{transform:matrix(0.224796,0.002473,-0.002750,0.249985,0,0);-ms-transform:matrix(0.224796,0.002473,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.224796,0.002473,-0.002750,0.249985,0,0);}
.m3d_c01392{transform:matrix(0.224810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224810,0.000000,0.000000,0.250000,0,0);}
.m29_c01392{transform:matrix(0.225065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225065,0.000000,0.000000,0.250000,0,0);}
.mee_c01392{transform:matrix(0.225451,0.002480,-0.002750,0.249985,0,0);-ms-transform:matrix(0.225451,0.002480,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.225451,0.002480,-0.002750,0.249985,0,0);}
.md_c01392{transform:matrix(0.225520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225520,0.000000,0.000000,0.250000,0,0);}
.mfe_c01392{transform:matrix(0.226073,0.003165,-0.003500,0.249976,0,0);-ms-transform:matrix(0.226073,0.003165,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.226073,0.003165,-0.003500,0.249976,0,0);}
.m4f_c01392{transform:matrix(0.226561,0.002492,-0.002750,0.249985,0,0);-ms-transform:matrix(0.226561,0.002492,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.226561,0.002492,-0.002750,0.249985,0,0);}
.m2f_c01392{transform:matrix(0.226575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226575,0.000000,0.000000,0.250000,0,0);}
.m46_c01392{transform:matrix(0.227246,0.002500,-0.002750,0.249985,0,0);-ms-transform:matrix(0.227246,0.002500,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.227246,0.002500,-0.002750,0.249985,0,0);}
.m3a_c01392{transform:matrix(0.227260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227260,0.000000,0.000000,0.250000,0,0);}
.m21_c01392{transform:matrix(0.227735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227735,0.000000,0.000000,0.250000,0,0);}
.m2a_c01392{transform:matrix(0.228010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228010,0.000000,0.000000,0.250000,0,0);}
.m2b_c01392{transform:matrix(0.228055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228055,0.000000,0.000000,0.250000,0,0);}
.m5b_c01392{transform:matrix(0.228186,0.002510,-0.002750,0.249985,0,0);-ms-transform:matrix(0.228186,0.002510,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.228186,0.002510,-0.002750,0.249985,0,0);}
.me9_c01392{transform:matrix(0.228496,0.002513,-0.002750,0.249985,0,0);-ms-transform:matrix(0.228496,0.002513,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.228496,0.002513,-0.002750,0.249985,0,0);}
.m1a_c01392{transform:matrix(0.228670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228670,0.000000,0.000000,0.250000,0,0);}
.m135_c01392{transform:matrix(0.228915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228915,0.000000,0.000000,0.250000,0,0);}
.m80_c01392{transform:matrix(0.229136,0.002520,-0.002750,0.249985,0,0);-ms-transform:matrix(0.229136,0.002520,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.229136,0.002520,-0.002750,0.249985,0,0);}
.m85_c01392{transform:matrix(0.229181,0.002521,-0.002750,0.249985,0,0);-ms-transform:matrix(0.229181,0.002521,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.229181,0.002521,-0.002750,0.249985,0,0);}
.m45_c01392{transform:matrix(0.229191,0.002521,-0.002750,0.249985,0,0);-ms-transform:matrix(0.229191,0.002521,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.229191,0.002521,-0.002750,0.249985,0,0);}
.m57_c01392{transform:matrix(0.229701,0.002527,-0.002750,0.249985,0,0);-ms-transform:matrix(0.229701,0.002527,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.229701,0.002527,-0.002750,0.249985,0,0);}
.m24_c01392{transform:matrix(0.229705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229705,0.000000,0.000000,0.250000,0,0);}
.mde_c01392{transform:matrix(0.229751,0.002527,-0.002750,0.249985,0,0);-ms-transform:matrix(0.229751,0.002527,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.229751,0.002527,-0.002750,0.249985,0,0);}
.m27_c01392{transform:matrix(0.229760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229760,0.000000,0.000000,0.250000,0,0);}
.m11_c01392{transform:matrix(0.229775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229775,0.000000,0.000000,0.250000,0,0);}
.m64_c01392{transform:matrix(0.230431,0.002535,-0.002750,0.249985,0,0);-ms-transform:matrix(0.230431,0.002535,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.230431,0.002535,-0.002750,0.249985,0,0);}
.mcf_c01392{transform:matrix(0.231421,0.002546,-0.002750,0.249985,0,0);-ms-transform:matrix(0.231421,0.002546,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.231421,0.002546,-0.002750,0.249985,0,0);}
.me3_c01392{transform:matrix(0.231481,0.002546,-0.002750,0.249985,0,0);-ms-transform:matrix(0.231481,0.002546,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.231481,0.002546,-0.002750,0.249985,0,0);}
.ma7_c01392{transform:matrix(0.231606,0.002548,-0.002750,0.249985,0,0);-ms-transform:matrix(0.231606,0.002548,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.231606,0.002548,-0.002750,0.249985,0,0);}
.md1_c01392{transform:matrix(0.231626,0.002548,-0.002750,0.249985,0,0);-ms-transform:matrix(0.231626,0.002548,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.231626,0.002548,-0.002750,0.249985,0,0);}
.m124_c01392{transform:matrix(0.231686,0.002549,-0.002750,0.249985,0,0);-ms-transform:matrix(0.231686,0.002549,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.231686,0.002549,-0.002750,0.249985,0,0);}
.m3c_c01392{transform:matrix(0.231805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231805,0.000000,0.000000,0.250000,0,0);}
.m61_c01392{transform:matrix(0.231816,0.002550,-0.002750,0.249985,0,0);-ms-transform:matrix(0.231816,0.002550,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.231816,0.002550,-0.002750,0.249985,0,0);}
.mdc_c01392{transform:matrix(0.232321,0.002556,-0.002750,0.249985,0,0);-ms-transform:matrix(0.232321,0.002556,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.232321,0.002556,-0.002750,0.249985,0,0);}
.m69_c01392{transform:matrix(0.232481,0.002557,-0.002750,0.249985,0,0);-ms-transform:matrix(0.232481,0.002557,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.232481,0.002557,-0.002750,0.249985,0,0);}
.m8a_c01392{transform:matrix(0.232636,0.002559,-0.002750,0.249985,0,0);-ms-transform:matrix(0.232636,0.002559,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.232636,0.002559,-0.002750,0.249985,0,0);}
.md8_c01392{transform:matrix(0.232961,0.002563,-0.002750,0.249985,0,0);-ms-transform:matrix(0.232961,0.002563,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.232961,0.002563,-0.002750,0.249985,0,0);}
.m58_c01392{transform:matrix(0.233316,0.002566,-0.002750,0.249985,0,0);-ms-transform:matrix(0.233316,0.002566,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.233316,0.002566,-0.002750,0.249985,0,0);}
.m7d_c01392{transform:matrix(0.233361,0.002567,-0.002750,0.249985,0,0);-ms-transform:matrix(0.233361,0.002567,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.233361,0.002567,-0.002750,0.249985,0,0);}
.mf2_c01392{transform:matrix(0.233391,0.002567,-0.002750,0.249985,0,0);-ms-transform:matrix(0.233391,0.002567,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.233391,0.002567,-0.002750,0.249985,0,0);}
.me8_c01392{transform:matrix(0.233556,0.002569,-0.002750,0.249985,0,0);-ms-transform:matrix(0.233556,0.002569,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.233556,0.002569,-0.002750,0.249985,0,0);}
.me2_c01392{transform:matrix(0.233646,0.002570,-0.002750,0.249985,0,0);-ms-transform:matrix(0.233646,0.002570,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.233646,0.002570,-0.002750,0.249985,0,0);}
.m132_c01392{transform:matrix(0.233650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233650,0.000000,0.000000,0.250000,0,0);}
.m44_c01392{transform:matrix(0.233886,0.002573,-0.002750,0.249985,0,0);-ms-transform:matrix(0.233886,0.002573,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.233886,0.002573,-0.002750,0.249985,0,0);}
.mfd_c01392{transform:matrix(0.234237,0.003279,-0.003500,0.249976,0,0);-ms-transform:matrix(0.234237,0.003279,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.234237,0.003279,-0.003500,0.249976,0,0);}
.mb4_c01392{transform:matrix(0.234526,0.002580,-0.002750,0.249985,0,0);-ms-transform:matrix(0.234526,0.002580,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.234526,0.002580,-0.002750,0.249985,0,0);}
.m11b_c01392{transform:matrix(0.234877,0.003288,-0.003500,0.249976,0,0);-ms-transform:matrix(0.234877,0.003288,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.234877,0.003288,-0.003500,0.249976,0,0);}
.mb0_c01392{transform:matrix(0.235016,0.002585,-0.002750,0.249985,0,0);-ms-transform:matrix(0.235016,0.002585,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.235016,0.002585,-0.002750,0.249985,0,0);}
.mbd_c01392{transform:matrix(0.235266,0.002588,-0.002750,0.249985,0,0);-ms-transform:matrix(0.235266,0.002588,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.235266,0.002588,-0.002750,0.249985,0,0);}
.m49_c01392{transform:matrix(0.235556,0.002591,-0.002750,0.249985,0,0);-ms-transform:matrix(0.235556,0.002591,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.235556,0.002591,-0.002750,0.249985,0,0);}
.m9f_c01392{transform:matrix(0.235561,0.002591,-0.002750,0.249985,0,0);-ms-transform:matrix(0.235561,0.002591,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.235561,0.002591,-0.002750,0.249985,0,0);}
.m34_c01392{transform:matrix(0.235790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235790,0.000000,0.000000,0.250000,0,0);}
.m1e_c01392{transform:matrix(0.235960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235960,0.000000,0.000000,0.250000,0,0);}
.m3e_c01392{transform:matrix(0.236025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236025,0.000000,0.000000,0.250000,0,0);}
.m52_c01392{transform:matrix(0.236161,0.002598,-0.002750,0.249985,0,0);-ms-transform:matrix(0.236161,0.002598,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.236161,0.002598,-0.002750,0.249985,0,0);}
.m12_c01392{transform:matrix(0.236175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236175,0.000000,0.000000,0.250000,0,0);}
.m23_c01392{transform:matrix(0.236235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236235,0.000000,0.000000,0.250000,0,0);}
.mf_c01392{transform:matrix(0.236365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236365,0.000000,0.000000,0.250000,0,0);}
.md4_c01392{transform:matrix(0.236431,0.002601,-0.002750,0.249985,0,0);-ms-transform:matrix(0.236431,0.002601,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.236431,0.002601,-0.002750,0.249985,0,0);}
.m4_c01392{transform:matrix(0.236445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236445,0.000000,0.000000,0.250000,0,0);}
.m59_c01392{transform:matrix(0.236756,0.002604,-0.002750,0.249985,0,0);-ms-transform:matrix(0.236756,0.002604,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.236756,0.002604,-0.002750,0.249985,0,0);}
.m4a_c01392{transform:matrix(0.236816,0.002605,-0.002750,0.249985,0,0);-ms-transform:matrix(0.236816,0.002605,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.236816,0.002605,-0.002750,0.249985,0,0);}
.m7a_c01392{transform:matrix(0.237106,0.002608,-0.002750,0.249985,0,0);-ms-transform:matrix(0.237106,0.002608,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.237106,0.002608,-0.002750,0.249985,0,0);}
.ma_c01392{transform:matrix(0.237470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237470,0.000000,0.000000,0.250000,0,0);}
.ma6_c01392{transform:matrix(0.237506,0.002613,-0.002750,0.249985,0,0);-ms-transform:matrix(0.237506,0.002613,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.237506,0.002613,-0.002750,0.249985,0,0);}
.ma2_c01392{transform:matrix(0.237741,0.002615,-0.002750,0.249985,0,0);-ms-transform:matrix(0.237741,0.002615,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.237741,0.002615,-0.002750,0.249985,0,0);}
.m11e_c01392{transform:matrix(0.238026,0.002618,-0.002750,0.249985,0,0);-ms-transform:matrix(0.238026,0.002618,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.238026,0.002618,-0.002750,0.249985,0,0);}
.m5_c01392{transform:matrix(0.238040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238040,0.000000,0.000000,0.250000,0,0);}
.mef_c01392{transform:matrix(0.238206,0.002620,-0.002750,0.249985,0,0);-ms-transform:matrix(0.238206,0.002620,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.238206,0.002620,-0.002750,0.249985,0,0);}
.m6c_c01392{transform:matrix(0.238836,0.002627,-0.002750,0.249985,0,0);-ms-transform:matrix(0.238836,0.002627,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.238836,0.002627,-0.002750,0.249985,0,0);}
.mb_c01392{transform:matrix(0.238965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238965,0.000000,0.000000,0.250000,0,0);}
.m91_c01392{transform:matrix(0.239256,0.002632,-0.002750,0.249985,0,0);-ms-transform:matrix(0.239256,0.002632,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.239256,0.002632,-0.002750,0.249985,0,0);}
.md9_c01392{transform:matrix(0.239321,0.002633,-0.002750,0.249985,0,0);-ms-transform:matrix(0.239321,0.002633,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.239321,0.002633,-0.002750,0.249985,0,0);}
.m3b_c01392{transform:matrix(0.239450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239450,0.000000,0.000000,0.250000,0,0);}
.maf_c01392{transform:matrix(0.239865,0.002639,-0.002750,0.249985,0,0);-ms-transform:matrix(0.239865,0.002639,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.239865,0.002639,-0.002750,0.249985,0,0);}
.m94_c01392{transform:matrix(0.239895,0.002639,-0.002750,0.249985,0,0);-ms-transform:matrix(0.239895,0.002639,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.239895,0.002639,-0.002750,0.249985,0,0);}
.me7_c01392{transform:matrix(0.239935,0.002639,-0.002750,0.249985,0,0);-ms-transform:matrix(0.239935,0.002639,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.239935,0.002639,-0.002750,0.249985,0,0);}
.ma0_c01392{transform:matrix(0.239945,0.002639,-0.002750,0.249985,0,0);-ms-transform:matrix(0.239945,0.002639,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.239945,0.002639,-0.002750,0.249985,0,0);}
.mfb_c01392{transform:matrix(0.240105,0.002641,-0.002750,0.249985,0,0);-ms-transform:matrix(0.240105,0.002641,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.240105,0.002641,-0.002750,0.249985,0,0);}
.m7e_c01392{transform:matrix(0.240655,0.002647,-0.002750,0.249985,0,0);-ms-transform:matrix(0.240655,0.002647,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.240655,0.002647,-0.002750,0.249985,0,0);}
.mec_c01392{transform:matrix(0.241165,0.002653,-0.002750,0.249985,0,0);-ms-transform:matrix(0.241165,0.002653,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.241165,0.002653,-0.002750,0.249985,0,0);}
.me4_c01392{transform:matrix(0.241245,0.002654,-0.002750,0.249985,0,0);-ms-transform:matrix(0.241245,0.002654,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.241245,0.002654,-0.002750,0.249985,0,0);}
.m7b_c01392{transform:matrix(0.241280,0.002654,-0.002750,0.249985,0,0);-ms-transform:matrix(0.241280,0.002654,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.241280,0.002654,-0.002750,0.249985,0,0);}
.m30_c01392{transform:matrix(0.241495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241495,0.000000,0.000000,0.250000,0,0);}
.m67_c01392{transform:matrix(0.241650,0.002658,-0.002750,0.249985,0,0);-ms-transform:matrix(0.241650,0.002658,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.241650,0.002658,-0.002750,0.249985,0,0);}
.m108_c01392{transform:matrix(0.241971,0.003388,-0.003500,0.249976,0,0);-ms-transform:matrix(0.241971,0.003388,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.241971,0.003388,-0.003500,0.249976,0,0);}
.m47_c01392{transform:matrix(0.242155,0.002664,-0.002750,0.249985,0,0);-ms-transform:matrix(0.242155,0.002664,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.242155,0.002664,-0.002750,0.249985,0,0);}
.m118_c01392{transform:matrix(0.242471,0.003395,-0.003500,0.249976,0,0);-ms-transform:matrix(0.242471,0.003395,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.242471,0.003395,-0.003500,0.249976,0,0);}
.m42_c01392{transform:matrix(0.242510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242510,0.000000,0.000000,0.250000,0,0);}
.m102_c01392{transform:matrix(0.242606,0.003396,-0.003500,0.249976,0,0);-ms-transform:matrix(0.242606,0.003396,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.242606,0.003396,-0.003500,0.249976,0,0);}
.m84_c01392{transform:matrix(0.242700,0.002670,-0.002750,0.249985,0,0);-ms-transform:matrix(0.242700,0.002670,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.242700,0.002670,-0.002750,0.249985,0,0);}
.m3_c01392{transform:matrix(0.242980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242980,0.000000,0.000000,0.250000,0,0);}
.m127_c01392{transform:matrix(0.243195,0.002675,-0.002750,0.249985,0,0);-ms-transform:matrix(0.243195,0.002675,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.243195,0.002675,-0.002750,0.249985,0,0);}
.ma1_c01392{transform:matrix(0.243305,0.002676,-0.002750,0.249985,0,0);-ms-transform:matrix(0.243305,0.002676,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.243305,0.002676,-0.002750,0.249985,0,0);}
.m4c_c01392{transform:matrix(0.243860,0.002682,-0.002750,0.249985,0,0);-ms-transform:matrix(0.243860,0.002682,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.243860,0.002682,-0.002750,0.249985,0,0);}
.mdf_c01392{transform:matrix(0.243870,0.002683,-0.002750,0.249985,0,0);-ms-transform:matrix(0.243870,0.002683,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.243870,0.002683,-0.002750,0.249985,0,0);}
.m101_c01392{transform:matrix(0.244306,0.003420,-0.003500,0.249976,0,0);-ms-transform:matrix(0.244306,0.003420,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.244306,0.003420,-0.003500,0.249976,0,0);}
.m72_c01392{transform:matrix(0.244755,0.002692,-0.002750,0.249985,0,0);-ms-transform:matrix(0.244755,0.002692,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.244755,0.002692,-0.002750,0.249985,0,0);}
.m112_c01392{transform:matrix(0.245001,0.003430,-0.003500,0.249976,0,0);-ms-transform:matrix(0.245001,0.003430,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.245001,0.003430,-0.003500,0.249976,0,0);}
.m40_c01392{transform:matrix(0.245075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245075,0.000000,0.000000,0.250000,0,0);}
.m88_c01392{transform:matrix(0.245445,0.002700,-0.002750,0.249985,0,0);-ms-transform:matrix(0.245445,0.002700,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.245445,0.002700,-0.002750,0.249985,0,0);}
.m68_c01392{transform:matrix(0.246045,0.002706,-0.002750,0.249985,0,0);-ms-transform:matrix(0.246045,0.002706,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.246045,0.002706,-0.002750,0.249985,0,0);}
.m65_c01392{transform:matrix(0.246135,0.002707,-0.002750,0.249985,0,0);-ms-transform:matrix(0.246135,0.002707,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.246135,0.002707,-0.002750,0.249985,0,0);}
.m12f_c01392{transform:matrix(0.246175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246175,0.000000,0.000000,0.250000,0,0);}
.m8d_c01392{transform:matrix(0.246180,0.002708,-0.002750,0.249985,0,0);-ms-transform:matrix(0.246180,0.002708,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.246180,0.002708,-0.002750,0.249985,0,0);}
.me1_c01392{transform:matrix(0.246210,0.002708,-0.002750,0.249985,0,0);-ms-transform:matrix(0.246210,0.002708,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.246210,0.002708,-0.002750,0.249985,0,0);}
.m12d_c01392{transform:matrix(0.246645,0.002713,-0.002750,0.249985,0,0);-ms-transform:matrix(0.246645,0.002713,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.246645,0.002713,-0.002750,0.249985,0,0);}
.mba_c01392{transform:matrix(0.246700,0.002714,-0.002750,0.249985,0,0);-ms-transform:matrix(0.246700,0.002714,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.246700,0.002714,-0.002750,0.249985,0,0);}
.maa_c01392{transform:matrix(0.246920,0.002716,-0.002750,0.249985,0,0);-ms-transform:matrix(0.246920,0.002716,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.246920,0.002716,-0.002750,0.249985,0,0);}
.mff_c01392{transform:matrix(0.247436,0.003464,-0.003500,0.249976,0,0);-ms-transform:matrix(0.247436,0.003464,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.247436,0.003464,-0.003500,0.249976,0,0);}
.m11d_c01392{transform:matrix(0.247580,0.002723,-0.002750,0.249985,0,0);-ms-transform:matrix(0.247580,0.002723,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.247580,0.002723,-0.002750,0.249985,0,0);}
.m35_c01392{transform:matrix(0.247595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247595,0.000000,0.000000,0.250000,0,0);}
.m4e_c01392{transform:matrix(0.247605,0.002724,-0.002750,0.249985,0,0);-ms-transform:matrix(0.247605,0.002724,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.247605,0.002724,-0.002750,0.249985,0,0);}
.m48_c01392{transform:matrix(0.247845,0.002726,-0.002750,0.249985,0,0);-ms-transform:matrix(0.247845,0.002726,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.247845,0.002726,-0.002750,0.249985,0,0);}
.m33_c01392{transform:matrix(0.247955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247955,0.000000,0.000000,0.250000,0,0);}
.m82_c01392{transform:matrix(0.247995,0.002728,-0.002750,0.249985,0,0);-ms-transform:matrix(0.247995,0.002728,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.247995,0.002728,-0.002750,0.249985,0,0);}
.m15_c01392{transform:matrix(0.248130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248130,0.000000,0.000000,0.250000,0,0);}
.mfc_c01392{transform:matrix(0.248146,0.003474,-0.003500,0.249976,0,0);-ms-transform:matrix(0.248146,0.003474,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.248146,0.003474,-0.003500,0.249976,0,0);}
.mc_c01392{transform:matrix(0.248620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248620,0.000000,0.000000,0.250000,0,0);}
.m37_c01392{transform:matrix(0.248805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248805,0.000000,0.000000,0.250000,0,0);}
.m2d_c01392{transform:matrix(0.248875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248875,0.000000,0.000000,0.250000,0,0);}
.m43_c01392{transform:matrix(0.248930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248930,0.000000,0.000000,0.250000,0,0);}
.m6f_c01392{transform:matrix(0.248935,0.002738,-0.002750,0.249985,0,0);-ms-transform:matrix(0.248935,0.002738,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.248935,0.002738,-0.002750,0.249985,0,0);}
.m10f_c01392{transform:matrix(0.248976,0.003486,-0.003500,0.249976,0,0);-ms-transform:matrix(0.248976,0.003486,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.248976,0.003486,-0.003500,0.249976,0,0);}
.m8b_c01392{transform:matrix(0.249080,0.002740,-0.002750,0.249985,0,0);-ms-transform:matrix(0.249080,0.002740,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.249080,0.002740,-0.002750,0.249985,0,0);}
.m8_c01392{transform:matrix(0.249400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249400,0.000000,0.000000,0.250000,0,0);}
.m12e_c01392{transform:matrix(0.249840,0.002748,-0.002750,0.249985,0,0);-ms-transform:matrix(0.249840,0.002748,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.249840,0.002748,-0.002750,0.249985,0,0);}
.med_c01392{transform:matrix(0.249905,0.002749,-0.002750,0.249985,0,0);-ms-transform:matrix(0.249905,0.002749,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.249905,0.002749,-0.002750,0.249985,0,0);}
.mfa_c01392{transform:matrix(0.249995,0.002750,-0.002750,0.249985,0,0);-ms-transform:matrix(0.249995,0.002750,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.249995,0.002750,-0.002750,0.249985,0,0);}
.m105_c01392{transform:matrix(0.250720,0.003510,-0.003500,0.249976,0,0);-ms-transform:matrix(0.250720,0.003510,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.250720,0.003510,-0.003500,0.249976,0,0);}
.m3f_c01392{transform:matrix(0.250840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250840,0.000000,0.000000,0.250000,0,0);}
.m6a_c01392{transform:matrix(0.250930,0.002760,-0.002750,0.249985,0,0);-ms-transform:matrix(0.250930,0.002760,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.250930,0.002760,-0.002750,0.249985,0,0);}
.ma5_c01392{transform:matrix(0.251190,0.002763,-0.002750,0.249985,0,0);-ms-transform:matrix(0.251190,0.002763,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.251190,0.002763,-0.002750,0.249985,0,0);}
.m6e_c01392{transform:matrix(0.251680,0.002768,-0.002750,0.249985,0,0);-ms-transform:matrix(0.251680,0.002768,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.251680,0.002768,-0.002750,0.249985,0,0);}
.m66_c01392{transform:matrix(0.252025,0.002772,-0.002750,0.249985,0,0);-ms-transform:matrix(0.252025,0.002772,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.252025,0.002772,-0.002750,0.249985,0,0);}
.m93_c01392{transform:matrix(0.252080,0.002773,-0.002750,0.249985,0,0);-ms-transform:matrix(0.252080,0.002773,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.252080,0.002773,-0.002750,0.249985,0,0);}
.m115_c01392{transform:matrix(0.252345,0.003533,-0.003500,0.249976,0,0);-ms-transform:matrix(0.252345,0.003533,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.252345,0.003533,-0.003500,0.249976,0,0);}
.m92_c01392{transform:matrix(0.252375,0.002776,-0.002750,0.249985,0,0);-ms-transform:matrix(0.252375,0.002776,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.252375,0.002776,-0.002750,0.249985,0,0);}
.m6b_c01392{transform:matrix(0.252400,0.002776,-0.002750,0.249985,0,0);-ms-transform:matrix(0.252400,0.002776,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.252400,0.002776,-0.002750,0.249985,0,0);}
.m31_c01392{transform:matrix(0.253065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253065,0.000000,0.000000,0.250000,0,0);}
.m11f_c01392{transform:matrix(0.253370,0.002787,-0.002750,0.249985,0,0);-ms-transform:matrix(0.253370,0.002787,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.253370,0.002787,-0.002750,0.249985,0,0);}
.m55_c01392{transform:matrix(0.253545,0.002789,-0.002750,0.249985,0,0);-ms-transform:matrix(0.253545,0.002789,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.253545,0.002789,-0.002750,0.249985,0,0);}
.m9c_c01392{transform:matrix(0.253770,0.002791,-0.002750,0.249985,0,0);-ms-transform:matrix(0.253770,0.002791,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.253770,0.002791,-0.002750,0.249985,0,0);}
.m7_c01392{transform:matrix(0.253880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253880,0.000000,0.000000,0.250000,0,0);}
.m63_c01392{transform:matrix(0.253935,0.002793,-0.002750,0.249985,0,0);-ms-transform:matrix(0.253935,0.002793,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.253935,0.002793,-0.002750,0.249985,0,0);}
.m76_c01392{transform:matrix(0.254665,0.002801,-0.002750,0.249985,0,0);-ms-transform:matrix(0.254665,0.002801,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.254665,0.002801,-0.002750,0.249985,0,0);}
.m103_c01392{transform:matrix(0.255070,0.003571,-0.003500,0.249976,0,0);-ms-transform:matrix(0.255070,0.003571,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.255070,0.003571,-0.003500,0.249976,0,0);}
.m53_c01392{transform:matrix(0.255275,0.002808,-0.002750,0.249985,0,0);-ms-transform:matrix(0.255275,0.002808,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.255275,0.002808,-0.002750,0.249985,0,0);}
.m4d_c01392{transform:matrix(0.255345,0.002809,-0.002750,0.249985,0,0);-ms-transform:matrix(0.255345,0.002809,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.255345,0.002809,-0.002750,0.249985,0,0);}
.m11c_c01392{transform:matrix(0.255435,0.002810,-0.002750,0.249985,0,0);-ms-transform:matrix(0.255435,0.002810,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.255435,0.002810,-0.002750,0.249985,0,0);}
.m89_c01392{transform:matrix(0.255675,0.002812,-0.002750,0.249985,0,0);-ms-transform:matrix(0.255675,0.002812,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.255675,0.002812,-0.002750,0.249985,0,0);}
.m9d_c01392{transform:matrix(0.255770,0.002813,-0.002750,0.249985,0,0);-ms-transform:matrix(0.255770,0.002813,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.255770,0.002813,-0.002750,0.249985,0,0);}
.m54_c01392{transform:matrix(0.255840,0.002814,-0.002750,0.249985,0,0);-ms-transform:matrix(0.255840,0.002814,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.255840,0.002814,-0.002750,0.249985,0,0);}
.m120_c01392{transform:matrix(0.256055,0.002817,-0.002750,0.249985,0,0);-ms-transform:matrix(0.256055,0.002817,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.256055,0.002817,-0.002750,0.249985,0,0);}
.m38_c01392{transform:matrix(0.256245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256245,0.000000,0.000000,0.250000,0,0);}
.m98_c01392{transform:matrix(0.256609,0.002823,-0.002750,0.249985,0,0);-ms-transform:matrix(0.256609,0.002823,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.256609,0.002823,-0.002750,0.249985,0,0);}
.m50_c01392{transform:matrix(0.256899,0.002826,-0.002750,0.249985,0,0);-ms-transform:matrix(0.256899,0.002826,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.256899,0.002826,-0.002750,0.249985,0,0);}
.m10_c01392{transform:matrix(0.256925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256925,0.000000,0.000000,0.250000,0,0);}
.m107_c01392{transform:matrix(0.256930,0.003597,-0.003500,0.249976,0,0);-ms-transform:matrix(0.256930,0.003597,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.256930,0.003597,-0.003500,0.249976,0,0);}
.m97_c01392{transform:matrix(0.257304,0.002830,-0.002750,0.249985,0,0);-ms-transform:matrix(0.257304,0.002830,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.257304,0.002830,-0.002750,0.249985,0,0);}
.mda_c01392{transform:matrix(0.257389,0.002831,-0.002750,0.249985,0,0);-ms-transform:matrix(0.257389,0.002831,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.257389,0.002831,-0.002750,0.249985,0,0);}
.m41_c01392{transform:matrix(0.257970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257970,0.000000,0.000000,0.250000,0,0);}
.m81_c01392{transform:matrix(0.258129,0.002839,-0.002750,0.249985,0,0);-ms-transform:matrix(0.258129,0.002839,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.258129,0.002839,-0.002750,0.249985,0,0);}
.m83_c01392{transform:matrix(0.258344,0.002842,-0.002750,0.249985,0,0);-ms-transform:matrix(0.258344,0.002842,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.258344,0.002842,-0.002750,0.249985,0,0);}
.m9e_c01392{transform:matrix(0.258549,0.002844,-0.002750,0.249985,0,0);-ms-transform:matrix(0.258549,0.002844,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.258549,0.002844,-0.002750,0.249985,0,0);}
.m123_c01392{transform:matrix(0.258614,0.002845,-0.002750,0.249985,0,0);-ms-transform:matrix(0.258614,0.002845,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.258614,0.002845,-0.002750,0.249985,0,0);}
.m4b_c01392{transform:matrix(0.258814,0.002847,-0.002750,0.249985,0,0);-ms-transform:matrix(0.258814,0.002847,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.258814,0.002847,-0.002750,0.249985,0,0);}
.m39_c01392{transform:matrix(0.258930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258930,0.000000,0.000000,0.250000,0,0);}
.m121_c01392{transform:matrix(0.259949,0.002859,-0.002750,0.249985,0,0);-ms-transform:matrix(0.259949,0.002859,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.259949,0.002859,-0.002750,0.249985,0,0);}
.mdd_c01392{transform:matrix(0.260004,0.002860,-0.002750,0.249985,0,0);-ms-transform:matrix(0.260004,0.002860,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.260004,0.002860,-0.002750,0.249985,0,0);}
.m95_c01392{transform:matrix(0.261349,0.002875,-0.002750,0.249985,0,0);-ms-transform:matrix(0.261349,0.002875,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.261349,0.002875,-0.002750,0.249985,0,0);}
.m79_c01392{transform:matrix(0.261949,0.002881,-0.002750,0.249985,0,0);-ms-transform:matrix(0.261949,0.002881,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.261949,0.002881,-0.002750,0.249985,0,0);}
.m73_c01392{transform:matrix(0.262164,0.002884,-0.002750,0.249985,0,0);-ms-transform:matrix(0.262164,0.002884,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.262164,0.002884,-0.002750,0.249985,0,0);}
.m71_c01392{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);}
.m78_c01392{transform:matrix(0.263579,0.002899,-0.002750,0.249985,0,0);-ms-transform:matrix(0.263579,0.002899,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.263579,0.002899,-0.002750,0.249985,0,0);}
.m70_c01392{transform:matrix(0.264244,0.002907,-0.002750,0.249985,0,0);-ms-transform:matrix(0.264244,0.002907,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.264244,0.002907,-0.002750,0.249985,0,0);}
.m6d_c01392{transform:matrix(0.264664,0.002911,-0.002750,0.249985,0,0);-ms-transform:matrix(0.264664,0.002911,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.264664,0.002911,-0.002750,0.249985,0,0);}
.m8c_c01392{transform:matrix(0.265324,0.002919,-0.002750,0.249985,0,0);-ms-transform:matrix(0.265324,0.002919,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.265324,0.002919,-0.002750,0.249985,0,0);}
.ma8_c01392{transform:matrix(0.266109,0.002927,-0.002750,0.249985,0,0);-ms-transform:matrix(0.266109,0.002927,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.266109,0.002927,-0.002750,0.249985,0,0);}
.m8f_c01392{transform:matrix(0.266474,0.002931,-0.002750,0.249985,0,0);-ms-transform:matrix(0.266474,0.002931,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.266474,0.002931,-0.002750,0.249985,0,0);}
.m16_c01392{transform:matrix(0.269370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269370,0.000000,0.000000,0.250000,0,0);}
.m8e_c01392{transform:matrix(0.270439,0.002975,-0.002750,0.249985,0,0);-ms-transform:matrix(0.270439,0.002975,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.270439,0.002975,-0.002750,0.249985,0,0);}
.mca_c01392{transform:matrix(0.271704,0.002989,-0.002750,0.249985,0,0);-ms-transform:matrix(0.271704,0.002989,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.271704,0.002989,-0.002750,0.249985,0,0);}
.m74_c01392{transform:matrix(0.272099,0.002993,-0.002750,0.249985,0,0);-ms-transform:matrix(0.272099,0.002993,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.272099,0.002993,-0.002750,0.249985,0,0);}
.md3_c01392{transform:matrix(0.272504,0.002998,-0.002750,0.249985,0,0);-ms-transform:matrix(0.272504,0.002998,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.272504,0.002998,-0.002750,0.249985,0,0);}
.m96_c01392{transform:matrix(0.274313,0.003017,-0.002750,0.249985,0,0);-ms-transform:matrix(0.274313,0.003017,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.274313,0.003017,-0.002750,0.249985,0,0);}
.md2_c01392{transform:matrix(0.275518,0.003031,-0.002750,0.249985,0,0);-ms-transform:matrix(0.275518,0.003031,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.275518,0.003031,-0.002750,0.249985,0,0);}
.mcc_c01392{transform:matrix(0.275753,0.003033,-0.002750,0.249985,0,0);-ms-transform:matrix(0.275753,0.003033,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.275753,0.003033,-0.002750,0.249985,0,0);}
.m9b_c01392{transform:matrix(0.276368,0.003040,-0.002750,0.249985,0,0);-ms-transform:matrix(0.276368,0.003040,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.276368,0.003040,-0.002750,0.249985,0,0);}
.m131_c01392{transform:matrix(0.276860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276860,0.000000,0.000000,0.250000,0,0);}
.m75_c01392{transform:matrix(0.277328,0.003051,-0.002750,0.249985,0,0);-ms-transform:matrix(0.277328,0.003051,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.277328,0.003051,-0.002750,0.249985,0,0);}
.m106_c01392{transform:matrix(0.277478,0.003885,-0.003500,0.249976,0,0);-ms-transform:matrix(0.277478,0.003885,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.277478,0.003885,-0.003500,0.249976,0,0);}
.mce_c01392{transform:matrix(0.277768,0.003055,-0.002750,0.249985,0,0);-ms-transform:matrix(0.277768,0.003055,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.277768,0.003055,-0.002750,0.249985,0,0);}
.m99_c01392{transform:matrix(0.278398,0.003062,-0.002750,0.249985,0,0);-ms-transform:matrix(0.278398,0.003062,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.278398,0.003062,-0.002750,0.249985,0,0);}
.m87_c01392{transform:matrix(0.278648,0.003065,-0.002750,0.249985,0,0);-ms-transform:matrix(0.278648,0.003065,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.278648,0.003065,-0.002750,0.249985,0,0);}
.m12b_c01392{transform:matrix(0.278723,0.003066,-0.002750,0.249985,0,0);-ms-transform:matrix(0.278723,0.003066,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.278723,0.003066,-0.002750,0.249985,0,0);}
.m90_c01392{transform:matrix(0.279033,0.003069,-0.002750,0.249985,0,0);-ms-transform:matrix(0.279033,0.003069,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.279033,0.003069,-0.002750,0.249985,0,0);}
.m128_c01392{transform:matrix(0.279493,0.003074,-0.002750,0.249985,0,0);-ms-transform:matrix(0.279493,0.003074,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.279493,0.003074,-0.002750,0.249985,0,0);}
.md5_c01392{transform:matrix(0.279853,0.003078,-0.002750,0.249985,0,0);-ms-transform:matrix(0.279853,0.003078,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.279853,0.003078,-0.002750,0.249985,0,0);}
.m126_c01392{transform:matrix(0.281858,0.003100,-0.002750,0.249985,0,0);-ms-transform:matrix(0.281858,0.003100,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.281858,0.003100,-0.002750,0.249985,0,0);}
.md0_c01392{transform:matrix(0.281888,0.003101,-0.002750,0.249985,0,0);-ms-transform:matrix(0.281888,0.003101,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.281888,0.003101,-0.002750,0.249985,0,0);}
.m13b_c01392{transform:matrix(0.282485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282485,0.000000,0.000000,0.250000,0,0);}
.mcb_c01392{transform:matrix(0.282853,0.003111,-0.002750,0.249985,0,0);-ms-transform:matrix(0.282853,0.003111,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.282853,0.003111,-0.002750,0.249985,0,0);}
.m10c_c01392{transform:matrix(0.286252,0.004008,-0.003500,0.249976,0,0);-ms-transform:matrix(0.286252,0.004008,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.286252,0.004008,-0.003500,0.249976,0,0);}
.mab_c01392{transform:matrix(0.289427,0.003184,-0.002750,0.249985,0,0);-ms-transform:matrix(0.289427,0.003184,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.289427,0.003184,-0.002750,0.249985,0,0);}
.m10e_c01392{transform:matrix(0.291271,0.004078,-0.003500,0.249976,0,0);-ms-transform:matrix(0.291271,0.004078,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.291271,0.004078,-0.003500,0.249976,0,0);}
.m12a_c01392{transform:matrix(0.291667,0.003208,-0.002750,0.249985,0,0);-ms-transform:matrix(0.291667,0.003208,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.291667,0.003208,-0.002750,0.249985,0,0);}
.m113_c01392{transform:matrix(0.291731,0.004084,-0.003500,0.249976,0,0);-ms-transform:matrix(0.291731,0.004084,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.291731,0.004084,-0.003500,0.249976,0,0);}
.m10a_c01392{transform:matrix(0.293671,0.004111,-0.003500,0.249976,0,0);-ms-transform:matrix(0.293671,0.004111,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.293671,0.004111,-0.003500,0.249976,0,0);}
.m77_c01392{transform:matrix(0.295887,0.003255,-0.002750,0.249985,0,0);-ms-transform:matrix(0.295887,0.003255,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.295887,0.003255,-0.002750,0.249985,0,0);}
.m51_c01392{transform:matrix(0.296302,0.003259,-0.002750,0.249985,0,0);-ms-transform:matrix(0.296302,0.003259,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.296302,0.003259,-0.002750,0.249985,0,0);}
.m125_c01392{transform:matrix(0.301272,0.003314,-0.002750,0.249985,0,0);-ms-transform:matrix(0.301272,0.003314,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.301272,0.003314,-0.002750,0.249985,0,0);}
.m9a_c01392{transform:matrix(0.304122,0.003345,-0.002750,0.249985,0,0);-ms-transform:matrix(0.304122,0.003345,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.304122,0.003345,-0.002750,0.249985,0,0);}
.m10b_c01392{transform:matrix(0.305830,0.004282,-0.003500,0.249976,0,0);-ms-transform:matrix(0.305830,0.004282,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.305830,0.004282,-0.003500,0.249976,0,0);}
.m12c_c01392{transform:matrix(0.306876,0.003376,-0.002750,0.249985,0,0);-ms-transform:matrix(0.306876,0.003376,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.306876,0.003376,-0.002750,0.249985,0,0);}
.mcd_c01392{transform:matrix(0.306951,0.003376,-0.002750,0.249985,0,0);-ms-transform:matrix(0.306951,0.003376,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.306951,0.003376,-0.002750,0.249985,0,0);}
.m10d_c01392{transform:matrix(0.310215,0.004343,-0.003500,0.249976,0,0);-ms-transform:matrix(0.310215,0.004343,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.310215,0.004343,-0.003500,0.249976,0,0);}
.m110_c01392{transform:matrix(0.311539,0.004362,-0.003500,0.249976,0,0);-ms-transform:matrix(0.311539,0.004362,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.311539,0.004362,-0.003500,0.249976,0,0);}
.mc9_c01392{transform:matrix(0.325325,0.003579,-0.002750,0.249985,0,0);-ms-transform:matrix(0.325325,0.003579,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.325325,0.003579,-0.002750,0.249985,0,0);}
.m109_c01392{transform:matrix(0.351506,0.004921,-0.003500,0.249976,0,0);-ms-transform:matrix(0.351506,0.004921,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.351506,0.004921,-0.003500,0.249976,0,0);}
.m111_c01392{transform:matrix(0.352900,0.004941,-0.003500,0.249976,0,0);-ms-transform:matrix(0.352900,0.004941,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.352900,0.004941,-0.003500,0.249976,0,0);}
.m130_c01392{transform:matrix(0.402575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402575,0.000000,0.000000,0.250000,0,0);}
.m129_c01392{transform:matrix(0.535733,0.005893,-0.002750,0.249985,0,0);-ms-transform:matrix(0.535733,0.005893,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.535733,0.005893,-0.002750,0.249985,0,0);}
.m13_c01392{transform:matrix(0.573600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573600,0.000000,0.000000,0.250000,0,0);}
.v0_c01392{vertical-align:0.000000px;}
.ls0_c01392{letter-spacing:0.000000px;}
.sc__c01392{text-shadow:none;}
.sc0_c01392{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__c01392{-webkit-text-stroke:0px transparent;}
.sc0_c01392{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01392{word-spacing:0.000000px;}
.fc0_c01392{color:transparent;}
.fs4_c01392{font-size:72.004356px;}
.fs8_c01392{font-size:72.007056px;}
.fs1_c01392{font-size:78.000000px;}
.fs2_c01392{font-size:78.004719px;}
.fs7_c01392{font-size:78.007644px;}
.fs0_c01392{font-size:84.000000px;}
.fs3_c01392{font-size:84.005082px;}
.fs6_c01392{font-size:90.005445px;}
.fs9_c01392{font-size:96.000000px;}
.fs5_c01392{font-size:126.007623px;}
.y0_c01392{bottom:0.000000px;}
.y13f_c01392{bottom:85.191000px;}
.y13e_c01392{bottom:85.582500px;}
.y13d_c01392{bottom:85.987500px;}
.y13c_c01392{bottom:87.145500px;}
.y13b_c01392{bottom:87.553500px;}
.y13a_c01392{bottom:88.453500px;}
.y139_c01392{bottom:88.995000px;}
.y138_c01392{bottom:89.643000px;}
.y137_c01392{bottom:120.783000px;}
.y136_c01392{bottom:154.413466px;}
.y135_c01392{bottom:155.183653px;}
.y134_c01392{bottom:156.401555px;}
.y133_c01392{bottom:157.015520px;}
.y132_c01392{bottom:157.479796px;}
.y131_c01392{bottom:158.691941px;}
.y130_c01392{bottom:159.134524px;}
.y12f_c01392{bottom:159.753011px;}
.y12e_c01392{bottom:160.381526px;}
.y12d_c01392{bottom:170.025593px;}
.y12c_c01392{bottom:170.396793px;}
.y12b_c01392{bottom:171.480975px;}
.y12a_c01392{bottom:171.834421px;}
.y129_c01392{bottom:172.068606px;}
.y128_c01392{bottom:173.280845px;}
.y127_c01392{bottom:174.442857px;}
.y126_c01392{bottom:175.431801px;}
.y125_c01392{bottom:175.686577px;}
.y124_c01392{bottom:176.530437px;}
.y123_c01392{bottom:177.121500px;}
.y11d_c01392{bottom:295.287084px;}
.y11e_c01392{bottom:295.287186px;}
.y121_c01392{bottom:295.287255px;}
.y11c_c01392{bottom:295.287498px;}
.y11f_c01392{bottom:295.287609px;}
.y122_c01392{bottom:295.287720px;}
.y120_c01392{bottom:295.287933px;}
.y11b_c01392{bottom:295.288176px;}
.y11a_c01392{bottom:323.035797px;}
.y119_c01392{bottom:323.544543px;}
.y118_c01392{bottom:323.953974px;}
.y117_c01392{bottom:324.459612px;}
.y116_c01392{bottom:324.711339px;}
.y115_c01392{bottom:325.370208px;}
.y114_c01392{bottom:325.878126px;}
.y113_c01392{bottom:327.079401px;}
.y112_c01392{bottom:327.743238px;}
.y111_c01392{bottom:328.375275px;}
.y110_c01392{bottom:328.784013px;}
.y10f_c01392{bottom:329.179509px;}
.y10e_c01392{bottom:329.940519px;}
.y10d_c01392{bottom:330.491577px;}
.y10c_c01392{bottom:358.300899px;}
.y10b_c01392{bottom:358.902066px;}
.y10a_c01392{bottom:360.573519px;}
.y109_c01392{bottom:361.510665px;}
.y108_c01392{bottom:362.285754px;}
.y107_c01392{bottom:362.886081px;}
.y106_c01392{bottom:364.099923px;}
.y105_c01392{bottom:364.727298px;}
.y104_c01392{bottom:365.484075px;}
.y103_c01392{bottom:366.123000px;}
.y102_c01392{bottom:400.783293px;}
.y101_c01392{bottom:400.783977px;}
.y100_c01392{bottom:430.124589px;}
.yff_c01392{bottom:430.599212px;}
.yfe_c01392{bottom:430.967475px;}
.yfd_c01392{bottom:431.683625px;}
.yfc_c01392{bottom:432.045981px;}
.yfb_c01392{bottom:432.874561px;}
.yfa_c01392{bottom:433.364182px;}
.yf9_c01392{bottom:435.068072px;}
.yf8_c01392{bottom:435.738268px;}
.yf7_c01392{bottom:436.848719px;}
.yf6_c01392{bottom:465.621044px;}
.yf5_c01392{bottom:466.061340px;}
.yf4_c01392{bottom:466.618105px;}
.yf3_c01392{bottom:466.831372px;}
.yf2_c01392{bottom:467.377675px;}
.yf1_c01392{bottom:467.709606px;}
.yf0_c01392{bottom:468.028813px;}
.yef_c01392{bottom:468.358220px;}
.yee_c01392{bottom:468.578896px;}
.yed_c01392{bottom:469.119276px;}
.yec_c01392{bottom:469.442296px;}
.yeb_c01392{bottom:469.785349px;}
.yea_c01392{bottom:470.332908px;}
.ye9_c01392{bottom:470.764756px;}
.ye8_c01392{bottom:471.205053px;}
.ye7_c01392{bottom:472.177149px;}
.ye6_c01392{bottom:472.490004px;}
.ye5_c01392{bottom:501.316762px;}
.ye4_c01392{bottom:501.625101px;}
.ye3_c01392{bottom:501.921457px;}
.ye2_c01392{bottom:502.399783px;}
.ye1_c01392{bottom:502.708254px;}
.ye0_c01392{bottom:503.789871px;}
.ydf_c01392{bottom:504.278841px;}
.yde_c01392{bottom:504.570675px;}
.ydd_c01392{bottom:505.652424px;}
.ydc_c01392{bottom:506.233551px;}
.ydb_c01392{bottom:506.540304px;}
.yda_c01392{bottom:506.928190px;}
.yd9_c01392{bottom:507.322264px;}
.yd8_c01392{bottom:537.641422px;}
.yd7_c01392{bottom:537.997641px;}
.yd6_c01392{bottom:538.493895px;}
.yd5_c01392{bottom:539.566593px;}
.yd4_c01392{bottom:539.913340px;}
.yd3_c01392{bottom:540.635727px;}
.yd2_c01392{bottom:541.006960px;}
.yd1_c01392{bottom:541.368195px;}
.yd0_c01392{bottom:542.328528px;}
.ycf_c01392{bottom:542.681941px;}
.yce_c01392{bottom:543.264028px;}
.ycd_c01392{bottom:543.751075px;}
.ycc_c01392{bottom:544.472736px;}
.ycb_c01392{bottom:544.855849px;}
.yca_c01392{bottom:572.375796px;}
.yc9_c01392{bottom:573.356538px;}
.yc8_c01392{bottom:573.577182px;}
.yc7_c01392{bottom:575.102628px;}
.yc6_c01392{bottom:575.434558px;}
.yc5_c01392{bottom:575.989360px;}
.yc4_c01392{bottom:576.429030px;}
.yc3_c01392{bottom:577.301736px;}
.yc2_c01392{bottom:577.627825px;}
.yc1_c01392{bottom:578.608584px;}
.yc0_c01392{bottom:579.148369px;}
.ybf_c01392{bottom:608.593271px;}
.ybe_c01392{bottom:608.955726px;}
.ybd_c01392{bottom:609.552630px;}
.ybc_c01392{bottom:610.159318px;}
.ybb_c01392{bottom:610.520817px;}
.yba_c01392{bottom:610.880203px;}
.yb9_c01392{bottom:611.111385px;}
.yb8_c01392{bottom:611.833640px;}
.yb7_c01392{bottom:612.207744px;}
.yb6_c01392{bottom:613.395992px;}
.yb5_c01392{bottom:613.880102px;}
.yb4_c01392{bottom:614.251500px;}
.yb3_c01392{bottom:644.666433px;}
.yb2_c01392{bottom:645.878166px;}
.yb1_c01392{bottom:647.195609px;}
.yb0_c01392{bottom:647.640873px;}
.yaf_c01392{bottom:648.067787px;}
.yae_c01392{bottom:648.737226px;}
.yad_c01392{bottom:649.061798px;}
.yac_c01392{bottom:678.259692px;}
.yab_c01392{bottom:678.638732px;}
.yaa_c01392{bottom:679.546746px;}
.ya9_c01392{bottom:679.928195px;}
.ya8_c01392{bottom:680.329431px;}
.ya7_c01392{bottom:681.014318px;}
.ya6_c01392{bottom:681.305855px;}
.ya5_c01392{bottom:681.504378px;}
.ya4_c01392{bottom:682.000873px;}
.ya3_c01392{bottom:682.202367px;}
.ya2_c01392{bottom:682.775969px;}
.ya1_c01392{bottom:683.077046px;}
.ya0_c01392{bottom:684.163135px;}
.y9f_c01392{bottom:712.720222px;}
.y9e_c01392{bottom:713.019565px;}
.y9d_c01392{bottom:713.804859px;}
.y9c_c01392{bottom:714.109582px;}
.y9b_c01392{bottom:714.895406px;}
.y9a_c01392{bottom:715.369589px;}
.y99_c01392{bottom:715.677762px;}
.y98_c01392{bottom:716.266349px;}
.y97_c01392{bottom:716.846832px;}
.y96_c01392{bottom:717.150698px;}
.y95_c01392{bottom:718.125833px;}
.y94_c01392{bottom:718.426596px;}
.y93_c01392{bottom:718.725494px;}
.y92_c01392{bottom:748.259150px;}
.y91_c01392{bottom:749.233375px;}
.y90_c01392{bottom:749.464689px;}
.y8f_c01392{bottom:750.421392px;}
.y8e_c01392{bottom:750.795530px;}
.y8d_c01392{bottom:751.630149px;}
.y8c_c01392{bottom:752.105448px;}
.y8b_c01392{bottom:752.464504px;}
.y8a_c01392{bottom:753.070797px;}
.y89_c01392{bottom:753.439094px;}
.y88_c01392{bottom:754.639040px;}
.y87_c01392{bottom:782.830944px;}
.y86_c01392{bottom:783.303669px;}
.y85_c01392{bottom:783.802332px;}
.y84_c01392{bottom:785.124395px;}
.y83_c01392{bottom:786.193463px;}
.y82_c01392{bottom:787.289294px;}
.y81_c01392{bottom:787.648878px;}
.y80_c01392{bottom:787.998959px;}
.y7f_c01392{bottom:788.611257px;}
.y7e_c01392{bottom:789.211230px;}
.y7d_c01392{bottom:789.576557px;}
.y7c_c01392{bottom:790.280084px;}
.y7b_c01392{bottom:820.975890px;}
.y7a_c01392{bottom:821.291913px;}
.y79_c01392{bottom:821.448390px;}
.y78_c01392{bottom:821.992889px;}
.y77_c01392{bottom:822.219431px;}
.y76_c01392{bottom:822.894270px;}
.y75_c01392{bottom:823.514331px;}
.y74_c01392{bottom:823.972170px;}
.y73_c01392{bottom:824.202494px;}
.y72_c01392{bottom:824.657330px;}
.y71_c01392{bottom:825.042842px;}
.y70_c01392{bottom:825.339318px;}
.y6f_c01392{bottom:825.651083px;}
.y6e_c01392{bottom:855.220241px;}
.y6d_c01392{bottom:855.615504px;}
.y6c_c01392{bottom:856.303328px;}
.y6b_c01392{bottom:856.987917px;}
.y6a_c01392{bottom:857.386217px;}
.y69_c01392{bottom:857.882893px;}
.y68_c01392{bottom:858.076663px;}
.y67_c01392{bottom:858.862336px;}
.y66_c01392{bottom:859.552883px;}
.y65_c01392{bottom:859.852226px;}
.y64_c01392{bottom:860.732448px;}
.y63_c01392{bottom:861.024282px;}
.y62_c01392{bottom:892.152750px;}
.y61_c01392{bottom:892.611993px;}
.y60_c01392{bottom:892.848210px;}
.y5f_c01392{bottom:893.224674px;}
.y5e_c01392{bottom:893.675067px;}
.y5d_c01392{bottom:893.917244px;}
.y5c_c01392{bottom:894.451720px;}
.y5b_c01392{bottom:894.680640px;}
.y5a_c01392{bottom:895.367316px;}
.y59_c01392{bottom:895.977192px;}
.y58_c01392{bottom:896.437806px;}
.y57_c01392{bottom:896.666692px;}
.y56_c01392{bottom:926.797622px;}
.y55_c01392{bottom:927.584599px;}
.y54_c01392{bottom:928.563911px;}
.y53_c01392{bottom:928.864674px;}
.y52_c01392{bottom:929.117691px;}
.y51_c01392{bottom:930.045561px;}
.y50_c01392{bottom:930.344904px;}
.y4f_c01392{bottom:931.210340px;}
.y4e_c01392{bottom:932.308280px;}
.y4d_c01392{bottom:961.822318px;}
.y4c_c01392{bottom:963.141081px;}
.y4b_c01392{bottom:963.503404px;}
.y4a_c01392{bottom:964.100309px;}
.y49_c01392{bottom:964.706353px;}
.y48_c01392{bottom:965.068512px;}
.y47_c01392{bottom:965.781048px;}
.y46_c01392{bottom:966.149757px;}
.y45_c01392{bottom:966.503237px;}
.y44_c01392{bottom:966.871500px;}
.y43_c01392{bottom:998.709000px;}
.y42_c01392{bottom:999.027000px;}
.y41_c01392{bottom:999.711000px;}
.y40_c01392{bottom:1000.246500px;}
.y3f_c01392{bottom:1000.477500px;}
.y3e_c01392{bottom:1001.089500px;}
.y3d_c01392{bottom:1001.467500px;}
.y3c_c01392{bottom:1001.695500px;}
.y3b_c01392{bottom:1033.090500px;}
.y3a_c01392{bottom:1033.552500px;}
.y39_c01392{bottom:1033.788000px;}
.y38_c01392{bottom:1034.550000px;}
.y37_c01392{bottom:1034.703000px;}
.y36_c01392{bottom:1035.385500px;}
.y35_c01392{bottom:1035.621000px;}
.y34_c01392{bottom:1036.153500px;}
.y33_c01392{bottom:1036.306500px;}
.y32_c01392{bottom:1036.770000px;}
.y31_c01392{bottom:1036.996500px;}
.y30_c01392{bottom:1037.605500px;}
.y2f_c01392{bottom:1068.579000px;}
.y2e_c01392{bottom:1069.110000px;}
.y2d_c01392{bottom:1069.492500px;}
.y2c_c01392{bottom:1070.275500px;}
.y2b_c01392{bottom:1070.487000px;}
.y2a_c01392{bottom:1071.093000px;}
.y29_c01392{bottom:1071.484500px;}
.y28_c01392{bottom:1071.940500px;}
.y27_c01392{bottom:1072.245000px;}
.y26_c01392{bottom:1072.707000px;}
.y25_c01392{bottom:1103.877000px;}
.y24_c01392{bottom:1104.162000px;}
.y23_c01392{bottom:1104.723000px;}
.y22_c01392{bottom:1105.332000px;}
.y21_c01392{bottom:1105.555500px;}
.y20_c01392{bottom:1106.026500px;}
.y1f_c01392{bottom:1106.254500px;}
.y1e_c01392{bottom:1106.406000px;}
.y1d_c01392{bottom:1106.557500px;}
.y1c_c01392{bottom:1106.788500px;}
.y1b_c01392{bottom:1106.943000px;}
.y1a_c01392{bottom:1107.168000px;}
.y19_c01392{bottom:1107.777000px;}
.y18_c01392{bottom:1108.017000px;}
.y17_c01392{bottom:1108.470000px;}
.y16_c01392{bottom:1108.617000px;}
.y15_c01392{bottom:1138.755000px;}
.y14_c01392{bottom:1139.194500px;}
.y13_c01392{bottom:1139.461500px;}
.y12_c01392{bottom:1140.595500px;}
.y11_c01392{bottom:1140.855000px;}
.y10_c01392{bottom:1141.120500px;}
.yf_c01392{bottom:1142.086500px;}
.ye_c01392{bottom:1142.434500px;}
.yd_c01392{bottom:1142.773500px;}
.yc_c01392{bottom:1143.121500px;}
.yb_c01392{bottom:1143.988500px;}
.ya_c01392{bottom:1176.205500px;}
.y9_c01392{bottom:1176.480000px;}
.y8_c01392{bottom:1176.744000px;}
.y7_c01392{bottom:1177.432500px;}
.y6_c01392{bottom:1177.882500px;}
.y5_c01392{bottom:1178.143500px;}
.y4_c01392{bottom:1178.316000px;}
.y3_c01392{bottom:1178.839500px;}
.y2_c01392{bottom:1179.360000px;}
.y1_c01392{bottom:1212.153000px;}
.h6_c01392{height:72.004356px;}
.ha_c01392{height:72.007056px;}
.h3_c01392{height:78.000000px;}
.h4_c01392{height:78.004719px;}
.h9_c01392{height:78.007644px;}
.h2_c01392{height:84.000000px;}
.h5_c01392{height:84.005082px;}
.h8_c01392{height:90.005445px;}
.hb_c01392{height:96.000000px;}
.h7_c01392{height:126.007623px;}
.h1_c01392{height:1250.250000px;}
.h0_c01392{height:1250.370000px;}
.w0_c01392{width:878.850000px;}
.w1_c01392{width:879.000000px;}
.x0_c01392{left:0.000000px;}
.xc0_c01392{left:129.691500px;}
.xa8_c01392{left:131.215301px;}
.x8b_c01392{left:132.402543px;}
.x66_c01392{left:133.753364px;}
.x3e_c01392{left:134.867624px;}
.x23_c01392{left:136.785000px;}
.x4_c01392{left:137.856000px;}
.xc_c01392{left:139.201500px;}
.x15_c01392{left:159.199500px;}
.xba_c01392{left:163.885827px;}
.x76_c01392{left:165.620940px;}
.x44_c01392{left:167.565552px;}
.x33_c01392{left:169.179000px;}
.x92_c01392{left:176.459720px;}
.x54_c01392{left:179.192970px;}
.xc1_c01392{left:183.424500px;}
.x81_c01392{left:186.940876px;}
.x5d_c01392{left:199.098536px;}
.x6a_c01392{left:200.196806px;}
.x5_c01392{left:202.915500px;}
.x93_c01392{left:219.632177px;}
.x55_c01392{left:221.556335px;}
.x16_c01392{left:223.992000px;}
.xc8_c01392{left:229.056991px;}
.xcd_c01392{left:230.310000px;}
.x5e_c01392{left:232.310036px;}
.x45_c01392{left:233.442456px;}
.xa9_c01392{left:238.749000px;}
.xb0_c01392{left:239.838606px;}
.x78_c01392{left:241.483500px;}
.x67_c01392{left:242.839363px;}
.x35_c01392{left:244.195500px;}
.x24_c01392{left:246.129000px;}
.xd_c01392{left:247.488000px;}
.xbb_c01392{left:249.753648px;}
.x71_c01392{left:253.934817px;}
.x2b_c01392{left:256.123500px;}
.x17_c01392{left:258.283500px;}
.xc2_c01392{left:260.139000px;}
.x9a_c01392{left:262.589733px;}
.x4e_c01392{left:265.000447px;}
.x6_c01392{left:268.279500px;}
.xb1_c01392{left:272.803530px;}
.x77_c01392{left:275.245145px;}
.x56_c01392{left:276.650760px;}
.x36_c01392{left:277.674000px;}
.xbc_c01392{left:282.967158px;}
.x82_c01392{left:284.965449px;}
.x5f_c01392{left:286.853036px;}
.x7_c01392{left:289.881000px;}
.xe_c01392{left:290.958000px;}
.xa2_c01392{left:294.012576px;}
.x4f_c01392{left:298.214173px;}
.xd3_c01392{left:303.288000px;}
.xc9_c01392{left:304.924500px;}
.x9b_c01392{left:306.571712px;}
.x6b_c01392{left:308.484182px;}
.x37_c01392{left:309.808500px;}
.x25_c01392{left:311.191500px;}
.x83_c01392{left:317.610312px;}
.x79_c01392{left:319.257000px;}
.x46_c01392{left:320.662301px;}
.x8_c01392{left:322.527000px;}
.xbd_c01392{left:326.981289px;}
.x8c_c01392{left:330.030543px;}
.x68_c01392{left:331.438364px;}
.xf_c01392{left:333.330000px;}
.xce_c01392{left:336.690000px;}
.xaa_c01392{left:338.442000px;}
.x57_c01392{left:341.729631px;}
.x2c_c01392{left:344.152500px;}
.x18_c01392{left:345.225000px;}
.x9c_c01392{left:349.785690px;}
.x72_c01392{left:351.180462px;}
.x3f_c01392{left:353.042925px;}
.xb2_c01392{left:359.468445px;}
.x8d_c01392{left:362.159043px;}
.x69_c01392{left:364.079864px;}
.x26_c01392{left:367.116000px;}
.x73_c01392{left:373.589457px;}
.x50_c01392{left:374.901856px;}
.x1_c01392{left:377.730000px;}
.xcf_c01392{left:380.160000px;}
.xab_c01392{left:383.254500px;}
.x40_c01392{left:386.256651px;}
.xbe_c01392{left:392.328099px;}
.x19_c01392{left:399.490500px;}
.x2_c01392{left:400.680000px;}
.x84_c01392{left:404.857269px;}
.x60_c01392{left:407.031536px;}
.x38_c01392{left:408.103500px;}
.xb3_c01392{left:414.815499px;}
.x47_c01392{left:418.682607px;}
.x2d_c01392{left:420.294000px;}
.xca_c01392{left:424.731556px;}
.xbf_c01392{left:425.811651px;}
.x7a_c01392{left:427.279500px;}
.x74_c01392{left:428.681162px;}
.x1a_c01392{left:432.430500px;}
.xd4_c01392{left:433.734000px;}
.x94_c01392{left:438.375978px;}
.x58_c01392{left:440.021454px;}
.x39_c01392{left:441.027000px;}
.x3_c01392{left:443.610000px;}
.xd0_c01392{left:446.040000px;}
.x85_c01392{left:448.782247px;}
.x48_c01392{left:451.358543px;}
.x1b_c01392{left:454.063500px;}
.x51_c01392{left:462.146771px;}
.x9_c01392{left:464.844000px;}
.xd5_c01392{left:467.479500px;}
.xcb_c01392{left:468.545104px;}
.x95_c01392{left:470.770688px;}
.x6c_c01392{left:472.118279px;}
.x1c_c01392{left:475.659000px;}
.xc3_c01392{left:478.842000px;}
.x8e_c01392{left:482.301543px;}
.x27_c01392{left:484.002000px;}
.x41_c01392{left:489.428928px;}
.xa3_c01392{left:493.422576px;}
.x3a_c01392{left:496.122000px;}
.xa_c01392{left:497.754000px;}
.xd6_c01392{left:500.125500px;}
.x86_c01392{left:504.264858px;}
.x61_c01392{left:506.652536px;}
.x1d_c01392{left:508.311000px;}
.xac_c01392{left:512.838000px;}
.xb4_c01392{left:514.980813px;}
.x8f_c01392{left:516.050043px;}
.x34_c01392{left:517.750500px;}
.x96_c01392{left:525.041876px;}
.x49_c01392{left:527.768909px;}
.x10_c01392{left:530.700000px;}
.xb_c01392{left:532.048500px;}
.x87_c01392{left:537.440721px;}
.x52_c01392{left:538.825453px;}
.xd1_c01392{left:545.130000px;}
.x7b_c01392{left:547.965000px;}
.x3b_c01392{left:550.386000px;}
.x2e_c01392{left:551.497500px;}
.xcc_c01392{left:555.533233px;}
.xb5_c01392{left:557.369010px;}
.x6d_c01392{left:559.061693px;}
.x11_c01392{left:563.217000px;}
.xa4_c01392{left:568.748076px;}
.x2f_c01392{left:573.384000px;}
.x1e_c01392{left:575.560500px;}
.x7c_c01392{left:580.636500px;}
.x90_c01392{left:581.721543px;}
.x3c_c01392{left:583.324500px;}
.xc4_c01392{left:589.045500px;}
.x28_c01392{left:595.780500px;}
.xd2_c01392{left:599.400000px;}
.xa5_c01392{left:601.689576px;}
.x62_c01392{left:603.840536px;}
.x1f_c01392{left:607.392000px;}
.xc5_c01392{left:610.335000px;}
.x9d_c01392{left:612.270594px;}
.x7d_c01392{left:613.500000px;}
.x59_c01392{left:624.975089px;}
.x4a_c01392{left:626.597748px;}
.xb6_c01392{left:633.235131px;}
.xad_c01392{left:635.140500px;}
.xc6_c01392{left:642.466500px;}
.x97_c01392{left:645.191516px;}
.x6e_c01392{left:646.456623px;}
.x29_c01392{left:650.325000px;}
.x5a_c01392{left:657.298508px;}
.x42_c01392{left:659.759174px;}
.xa6_c01392{left:666.794076px;}
.x7e_c01392{left:668.653500px;}
.xb7_c01392{left:675.353307px;}
.x4b_c01392{left:680.324107px;}
.x30_c01392{left:682.186500px;}
.x88_c01392{left:690.028404px;}
.x20_c01392{left:694.339500px;}
.x9e_c01392{left:700.020051px;}
.x3d_c01392{left:703.212000px;}
.x12_c01392{left:704.875500px;}
.xb8_c01392{left:709.420752px;}
.x91_c01392{left:710.762043px;}
.x89_c01392{left:712.132651px;}
.x4c_c01392{left:714.072593px;}
.x31_c01392{left:715.927500px;}
.x9f_c01392{left:721.317282px;}
.x7f_c01392{left:722.917500px;}
.x63_c01392{left:724.028036px;}
.x2a_c01392{left:726.195000px;}
.x98_c01392{left:732.674946px;}
.x53_c01392{left:735.667293px;}
.x13_c01392{left:738.330000px;}
.xc7_c01392{left:741.028500px;}
.xa7_c01392{left:743.420076px;}
.x43_c01392{left:747.259104px;}
.xb9_c01392{left:751.760928px;}
.xae_c01392{left:754.530000px;}
.x80_c01392{left:755.868000px;}
.x5b_c01392{left:757.573429px;}
.x99_c01392{left:765.617172px;}
.x6f_c01392{left:767.506280px;}
.x64_c01392{left:769.361036px;}
.x21_c01392{left:774.508500px;}
.xa0_c01392{left:776.978392px;}
.x4d_c01392{left:779.688480px;}
.x32_c01392{left:781.840500px;}
.x75_c01392{left:789.115082px;}
.x14_c01392{left:793.338000px;}
.xaf_c01392{left:797.470500px;}
.x70_c01392{left:800.720006px;}
.x5c_c01392{left:802.668410px;}
.x8a_c01392{left:810.155724px;}
.x65_c01392{left:812.336035px;}
.x22_c01392{left:815.298000px;}
.xa1_c01392{left:820.960371px;}
@media print{
.v0_c01392{vertical-align:0.000000pt;}
.ls0_c01392{letter-spacing:0.000000pt;}
.ws0_c01392{word-spacing:0.000000pt;}
.fs4_c01392{font-size:64.003872pt;}
.fs8_c01392{font-size:64.006272pt;}
.fs1_c01392{font-size:69.333333pt;}
.fs2_c01392{font-size:69.337528pt;}
.fs7_c01392{font-size:69.340128pt;}
.fs0_c01392{font-size:74.666667pt;}
.fs3_c01392{font-size:74.671184pt;}
.fs6_c01392{font-size:80.004840pt;}
.fs9_c01392{font-size:85.333333pt;}
.fs5_c01392{font-size:112.006776pt;}
.y0_c01392{bottom:0.000000pt;}
.y13f_c01392{bottom:75.725333pt;}
.y13e_c01392{bottom:76.073333pt;}
.y13d_c01392{bottom:76.433333pt;}
.y13c_c01392{bottom:77.462667pt;}
.y13b_c01392{bottom:77.825333pt;}
.y13a_c01392{bottom:78.625333pt;}
.y139_c01392{bottom:79.106667pt;}
.y138_c01392{bottom:79.682667pt;}
.y137_c01392{bottom:107.362667pt;}
.y136_c01392{bottom:137.256415pt;}
.y135_c01392{bottom:137.941025pt;}
.y134_c01392{bottom:139.023604pt;}
.y133_c01392{bottom:139.569351pt;}
.y132_c01392{bottom:139.982041pt;}
.y131_c01392{bottom:141.059503pt;}
.y130_c01392{bottom:141.452911pt;}
.y12f_c01392{bottom:142.002676pt;}
.y12e_c01392{bottom:142.561356pt;}
.y12d_c01392{bottom:151.133860pt;}
.y12c_c01392{bottom:151.463816pt;}
.y12b_c01392{bottom:152.427533pt;}
.y12a_c01392{bottom:152.741708pt;}
.y129_c01392{bottom:152.949872pt;}
.y128_c01392{bottom:154.027417pt;}
.y127_c01392{bottom:155.060317pt;}
.y126_c01392{bottom:155.939379pt;}
.y125_c01392{bottom:156.165847pt;}
.y124_c01392{bottom:156.915944pt;}
.y123_c01392{bottom:157.441333pt;}
.y11d_c01392{bottom:262.477408pt;}
.y11e_c01392{bottom:262.477499pt;}
.y121_c01392{bottom:262.477560pt;}
.y11c_c01392{bottom:262.477776pt;}
.y11f_c01392{bottom:262.477875pt;}
.y122_c01392{bottom:262.477973pt;}
.y120_c01392{bottom:262.478163pt;}
.y11b_c01392{bottom:262.478379pt;}
.y11a_c01392{bottom:287.142931pt;}
.y119_c01392{bottom:287.595149pt;}
.y118_c01392{bottom:287.959088pt;}
.y117_c01392{bottom:288.408544pt;}
.y116_c01392{bottom:288.632301pt;}
.y115_c01392{bottom:289.217963pt;}
.y114_c01392{bottom:289.669445pt;}
.y113_c01392{bottom:290.737245pt;}
.y112_c01392{bottom:291.327323pt;}
.y111_c01392{bottom:291.889133pt;}
.y110_c01392{bottom:292.252456pt;}
.y10f_c01392{bottom:292.604008pt;}
.y10e_c01392{bottom:293.280461pt;}
.y10d_c01392{bottom:293.770291pt;}
.y10c_c01392{bottom:318.489688pt;}
.y10b_c01392{bottom:319.024059pt;}
.y10a_c01392{bottom:320.509795pt;}
.y109_c01392{bottom:321.342813pt;}
.y108_c01392{bottom:322.031781pt;}
.y107_c01392{bottom:322.565405pt;}
.y106_c01392{bottom:323.644376pt;}
.y105_c01392{bottom:324.202043pt;}
.y104_c01392{bottom:324.874733pt;}
.y103_c01392{bottom:325.442667pt;}
.y102_c01392{bottom:356.251816pt;}
.y101_c01392{bottom:356.252424pt;}
.y100_c01392{bottom:382.332968pt;}
.yff_c01392{bottom:382.754855pt;}
.yfe_c01392{bottom:383.082200pt;}
.yfd_c01392{bottom:383.718777pt;}
.yfc_c01392{bottom:384.040872pt;}
.yfb_c01392{bottom:384.777388pt;}
.yfa_c01392{bottom:385.212607pt;}
.yf9_c01392{bottom:386.727175pt;}
.yf8_c01392{bottom:387.322905pt;}
.yf7_c01392{bottom:388.309972pt;}
.yf6_c01392{bottom:413.885372pt;}
.yf5_c01392{bottom:414.276747pt;}
.yf4_c01392{bottom:414.771649pt;}
.yf3_c01392{bottom:414.961220pt;}
.yf2_c01392{bottom:415.446823pt;}
.yf1_c01392{bottom:415.741872pt;}
.yf0_c01392{bottom:416.025612pt;}
.yef_c01392{bottom:416.318417pt;}
.yee_c01392{bottom:416.514575pt;}
.yed_c01392{bottom:416.994912pt;}
.yec_c01392{bottom:417.282041pt;}
.yeb_c01392{bottom:417.586977pt;}
.yea_c01392{bottom:418.073696pt;}
.ye9_c01392{bottom:418.457561pt;}
.ye8_c01392{bottom:418.848936pt;}
.ye7_c01392{bottom:419.713021pt;}
.ye6_c01392{bottom:419.991115pt;}
.ye5_c01392{bottom:445.614900pt;}
.ye4_c01392{bottom:445.888979pt;}
.ye3_c01392{bottom:446.152407pt;}
.ye2_c01392{bottom:446.577585pt;}
.ye1_c01392{bottom:446.851781pt;}
.ye0_c01392{bottom:447.813219pt;}
.ydf_c01392{bottom:448.247859pt;}
.yde_c01392{bottom:448.507267pt;}
.ydd_c01392{bottom:449.468821pt;}
.ydc_c01392{bottom:449.985379pt;}
.ydb_c01392{bottom:450.258048pt;}
.yda_c01392{bottom:450.602836pt;}
.yd9_c01392{bottom:450.953124pt;}
.yd8_c01392{bottom:477.903487pt;}
.yd7_c01392{bottom:478.220125pt;}
.yd6_c01392{bottom:478.661240pt;}
.yd5_c01392{bottom:479.614749pt;}
.yd4_c01392{bottom:479.922969pt;}
.yd3_c01392{bottom:480.565091pt;}
.yd2_c01392{bottom:480.895076pt;}
.yd1_c01392{bottom:481.216173pt;}
.yd0_c01392{bottom:482.069803pt;}
.ycf_c01392{bottom:482.383948pt;}
.yce_c01392{bottom:482.901359pt;}
.ycd_c01392{bottom:483.334289pt;}
.ycc_c01392{bottom:483.975765pt;}
.ycb_c01392{bottom:484.316311pt;}
.yca_c01392{bottom:508.778485pt;}
.yc9_c01392{bottom:509.650256pt;}
.yc8_c01392{bottom:509.846384pt;}
.yc7_c01392{bottom:511.202336pt;}
.yc6_c01392{bottom:511.497385pt;}
.yc5_c01392{bottom:511.990543pt;}
.yc4_c01392{bottom:512.381360pt;}
.yc3_c01392{bottom:513.157099pt;}
.yc2_c01392{bottom:513.446956pt;}
.yc1_c01392{bottom:514.318741pt;}
.yc0_c01392{bottom:514.798551pt;}
.ybf_c01392{bottom:540.971796pt;}
.ybe_c01392{bottom:541.293979pt;}
.ybd_c01392{bottom:541.824560pt;}
.ybc_c01392{bottom:542.363839pt;}
.ybb_c01392{bottom:542.685171pt;}
.yba_c01392{bottom:543.004625pt;}
.yb9_c01392{bottom:543.210120pt;}
.yb8_c01392{bottom:543.852124pt;}
.yb7_c01392{bottom:544.184661pt;}
.yb6_c01392{bottom:545.240881pt;}
.yb5_c01392{bottom:545.671201pt;}
.yb4_c01392{bottom:546.001333pt;}
.yb3_c01392{bottom:573.036829pt;}
.yb2_c01392{bottom:574.113925pt;}
.yb1_c01392{bottom:575.284985pt;}
.yb0_c01392{bottom:575.680776pt;}
.yaf_c01392{bottom:576.060255pt;}
.yae_c01392{bottom:576.655312pt;}
.yad_c01392{bottom:576.943820pt;}
.yac_c01392{bottom:602.897504pt;}
.yab_c01392{bottom:603.234428pt;}
.yaa_c01392{bottom:604.041552pt;}
.ya9_c01392{bottom:604.380617pt;}
.ya8_c01392{bottom:604.737272pt;}
.ya7_c01392{bottom:605.346060pt;}
.ya6_c01392{bottom:605.605204pt;}
.ya5_c01392{bottom:605.781669pt;}
.ya4_c01392{bottom:606.222999pt;}
.ya3_c01392{bottom:606.402104pt;}
.ya2_c01392{bottom:606.911972pt;}
.ya1_c01392{bottom:607.179596pt;}
.ya0_c01392{bottom:608.145009pt;}
.y9f_c01392{bottom:633.529087pt;}
.y9e_c01392{bottom:633.795169pt;}
.y9d_c01392{bottom:634.493208pt;}
.y9c_c01392{bottom:634.764073pt;}
.y9b_c01392{bottom:635.462583pt;}
.y9a_c01392{bottom:635.884079pt;}
.y99_c01392{bottom:636.158011pt;}
.y98_c01392{bottom:636.681199pt;}
.y97_c01392{bottom:637.197184pt;}
.y96_c01392{bottom:637.467287pt;}
.y95_c01392{bottom:638.334073pt;}
.y94_c01392{bottom:638.601419pt;}
.y93_c01392{bottom:638.867105pt;}
.y92_c01392{bottom:665.119244pt;}
.y91_c01392{bottom:665.985223pt;}
.y90_c01392{bottom:666.190835pt;}
.y8f_c01392{bottom:667.041237pt;}
.y8e_c01392{bottom:667.373804pt;}
.y8d_c01392{bottom:668.115688pt;}
.y8c_c01392{bottom:668.538176pt;}
.y8b_c01392{bottom:668.857337pt;}
.y8a_c01392{bottom:669.396264pt;}
.y89_c01392{bottom:669.723639pt;}
.y88_c01392{bottom:670.790257pt;}
.y87_c01392{bottom:695.849728pt;}
.y86_c01392{bottom:696.269928pt;}
.y85_c01392{bottom:696.713184pt;}
.y84_c01392{bottom:697.888351pt;}
.y83_c01392{bottom:698.838633pt;}
.y82_c01392{bottom:699.812705pt;}
.y81_c01392{bottom:700.132336pt;}
.y80_c01392{bottom:700.443519pt;}
.y7f_c01392{bottom:700.987784pt;}
.y7e_c01392{bottom:701.521093pt;}
.y7d_c01392{bottom:701.845828pt;}
.y7c_c01392{bottom:702.471185pt;}
.y7b_c01392{bottom:729.756347pt;}
.y7a_c01392{bottom:730.037256pt;}
.y79_c01392{bottom:730.176347pt;}
.y78_c01392{bottom:730.660345pt;}
.y77_c01392{bottom:730.861716pt;}
.y76_c01392{bottom:731.461573pt;}
.y75_c01392{bottom:732.012739pt;}
.y74_c01392{bottom:732.419707pt;}
.y73_c01392{bottom:732.624439pt;}
.y72_c01392{bottom:733.028737pt;}
.y71_c01392{bottom:733.371415pt;}
.y70_c01392{bottom:733.634949pt;}
.y6f_c01392{bottom:733.912073pt;}
.y6e_c01392{bottom:760.195769pt;}
.y6d_c01392{bottom:760.547115pt;}
.y6c_c01392{bottom:761.158513pt;}
.y6b_c01392{bottom:761.767037pt;}
.y6a_c01392{bottom:762.121081pt;}
.y69_c01392{bottom:762.562572pt;}
.y68_c01392{bottom:762.734812pt;}
.y67_c01392{bottom:763.433188pt;}
.y66_c01392{bottom:764.047007pt;}
.y65_c01392{bottom:764.313089pt;}
.y64_c01392{bottom:765.095509pt;}
.y63_c01392{bottom:765.354917pt;}
.y62_c01392{bottom:793.024667pt;}
.y61_c01392{bottom:793.432883pt;}
.y60_c01392{bottom:793.642853pt;}
.y5f_c01392{bottom:793.977488pt;}
.y5e_c01392{bottom:794.377837pt;}
.y5d_c01392{bottom:794.593105pt;}
.y5c_c01392{bottom:795.068196pt;}
.y5b_c01392{bottom:795.271680pt;}
.y5a_c01392{bottom:795.882059pt;}
.y59_c01392{bottom:796.424171pt;}
.y58_c01392{bottom:796.833605pt;}
.y57_c01392{bottom:797.037060pt;}
.y56_c01392{bottom:823.820108pt;}
.y55_c01392{bottom:824.519644pt;}
.y54_c01392{bottom:825.390143pt;}
.y53_c01392{bottom:825.657488pt;}
.y52_c01392{bottom:825.882392pt;}
.y51_c01392{bottom:826.707165pt;}
.y50_c01392{bottom:826.973248pt;}
.y4f_c01392{bottom:827.742524pt;}
.y4e_c01392{bottom:828.718471pt;}
.y4d_c01392{bottom:854.953172pt;}
.y4c_c01392{bottom:856.125405pt;}
.y4b_c01392{bottom:856.447471pt;}
.y4a_c01392{bottom:856.978052pt;}
.y49_c01392{bottom:857.516759pt;}
.y48_c01392{bottom:857.838677pt;}
.y47_c01392{bottom:858.472043pt;}
.y46_c01392{bottom:858.799784pt;}
.y45_c01392{bottom:859.113988pt;}
.y44_c01392{bottom:859.441333pt;}
.y43_c01392{bottom:887.741333pt;}
.y42_c01392{bottom:888.024000pt;}
.y41_c01392{bottom:888.632000pt;}
.y40_c01392{bottom:889.108000pt;}
.y3f_c01392{bottom:889.313333pt;}
.y3e_c01392{bottom:889.857333pt;}
.y3d_c01392{bottom:890.193333pt;}
.y3c_c01392{bottom:890.396000pt;}
.y3b_c01392{bottom:918.302667pt;}
.y3a_c01392{bottom:918.713333pt;}
.y39_c01392{bottom:918.922667pt;}
.y38_c01392{bottom:919.600000pt;}
.y37_c01392{bottom:919.736000pt;}
.y36_c01392{bottom:920.342667pt;}
.y35_c01392{bottom:920.552000pt;}
.y34_c01392{bottom:921.025333pt;}
.y33_c01392{bottom:921.161333pt;}
.y32_c01392{bottom:921.573333pt;}
.y31_c01392{bottom:921.774667pt;}
.y30_c01392{bottom:922.316000pt;}
.y2f_c01392{bottom:949.848000pt;}
.y2e_c01392{bottom:950.320000pt;}
.y2d_c01392{bottom:950.660000pt;}
.y2c_c01392{bottom:951.356000pt;}
.y2b_c01392{bottom:951.544000pt;}
.y2a_c01392{bottom:952.082667pt;}
.y29_c01392{bottom:952.430667pt;}
.y28_c01392{bottom:952.836000pt;}
.y27_c01392{bottom:953.106667pt;}
.y26_c01392{bottom:953.517333pt;}
.y25_c01392{bottom:981.224000pt;}
.y24_c01392{bottom:981.477333pt;}
.y23_c01392{bottom:981.976000pt;}
.y22_c01392{bottom:982.517333pt;}
.y21_c01392{bottom:982.716000pt;}
.y20_c01392{bottom:983.134667pt;}
.y1f_c01392{bottom:983.337333pt;}
.y1e_c01392{bottom:983.472000pt;}
.y1d_c01392{bottom:983.606667pt;}
.y1c_c01392{bottom:983.812000pt;}
.y1b_c01392{bottom:983.949333pt;}
.y1a_c01392{bottom:984.149333pt;}
.y19_c01392{bottom:984.690667pt;}
.y18_c01392{bottom:984.904000pt;}
.y17_c01392{bottom:985.306667pt;}
.y16_c01392{bottom:985.437333pt;}
.y15_c01392{bottom:1012.226667pt;}
.y14_c01392{bottom:1012.617333pt;}
.y13_c01392{bottom:1012.854667pt;}
.y12_c01392{bottom:1013.862667pt;}
.y11_c01392{bottom:1014.093333pt;}
.y10_c01392{bottom:1014.329333pt;}
.yf_c01392{bottom:1015.188000pt;}
.ye_c01392{bottom:1015.497333pt;}
.yd_c01392{bottom:1015.798667pt;}
.yc_c01392{bottom:1016.108000pt;}
.yb_c01392{bottom:1016.878667pt;}
.ya_c01392{bottom:1045.516000pt;}
.y9_c01392{bottom:1045.760000pt;}
.y8_c01392{bottom:1045.994667pt;}
.y7_c01392{bottom:1046.606667pt;}
.y6_c01392{bottom:1047.006667pt;}
.y5_c01392{bottom:1047.238667pt;}
.y4_c01392{bottom:1047.392000pt;}
.y3_c01392{bottom:1047.857333pt;}
.y2_c01392{bottom:1048.320000pt;}
.y1_c01392{bottom:1077.469333pt;}
.h6_c01392{height:64.003872pt;}
.ha_c01392{height:64.006272pt;}
.h3_c01392{height:69.333333pt;}
.h4_c01392{height:69.337528pt;}
.h9_c01392{height:69.340128pt;}
.h2_c01392{height:74.666667pt;}
.h5_c01392{height:74.671184pt;}
.h8_c01392{height:80.004840pt;}
.hb_c01392{height:85.333333pt;}
.h7_c01392{height:112.006776pt;}
.h1_c01392{height:1111.333333pt;}
.h0_c01392{height:1111.440000pt;}
.w0_c01392{width:781.200000pt;}
.w1_c01392{width:781.333333pt;}
.x0_c01392{left:0.000000pt;}
.xc0_c01392{left:115.281333pt;}
.xa8_c01392{left:116.635823pt;}
.x8b_c01392{left:117.691149pt;}
.x66_c01392{left:118.891879pt;}
.x3e_c01392{left:119.882332pt;}
.x23_c01392{left:121.586667pt;}
.x4_c01392{left:122.538667pt;}
.xc_c01392{left:123.734667pt;}
.x15_c01392{left:141.510667pt;}
.xba_c01392{left:145.676291pt;}
.x76_c01392{left:147.218613pt;}
.x44_c01392{left:148.947157pt;}
.x33_c01392{left:150.381333pt;}
.x92_c01392{left:156.853084pt;}
.x54_c01392{left:159.282640pt;}
.xc1_c01392{left:163.044000pt;}
.x81_c01392{left:166.169668pt;}
.x5d_c01392{left:176.976476pt;}
.x6a_c01392{left:177.952716pt;}
.x5_c01392{left:180.369333pt;}
.x93_c01392{left:195.228601pt;}
.x55_c01392{left:196.938964pt;}
.x16_c01392{left:199.104000pt;}
.xc8_c01392{left:203.606215pt;}
.xcd_c01392{left:204.720000pt;}
.x5e_c01392{left:206.497809pt;}
.x45_c01392{left:207.504405pt;}
.xa9_c01392{left:212.221333pt;}
.xb0_c01392{left:213.189872pt;}
.x78_c01392{left:214.652000pt;}
.x67_c01392{left:215.857212pt;}
.x35_c01392{left:217.062667pt;}
.x24_c01392{left:218.781333pt;}
.xd_c01392{left:219.989333pt;}
.xbb_c01392{left:222.003243pt;}
.x71_c01392{left:225.719837pt;}
.x2b_c01392{left:227.665333pt;}
.x17_c01392{left:229.585333pt;}
.xc2_c01392{left:231.234667pt;}
.x9a_c01392{left:233.413096pt;}
.x4e_c01392{left:235.555953pt;}
.x6_c01392{left:238.470667pt;}
.xb1_c01392{left:242.492027pt;}
.x77_c01392{left:244.662351pt;}
.x56_c01392{left:245.911787pt;}
.x36_c01392{left:246.821333pt;}
.xbc_c01392{left:251.526363pt;}
.x82_c01392{left:253.302621pt;}
.x5f_c01392{left:254.980476pt;}
.x7_c01392{left:257.672000pt;}
.xe_c01392{left:258.629333pt;}
.xa2_c01392{left:261.344512pt;}
.x4f_c01392{left:265.079265pt;}
.xd3_c01392{left:269.589333pt;}
.xc9_c01392{left:271.044000pt;}
.x9b_c01392{left:272.508188pt;}
.x6b_c01392{left:274.208161pt;}
.x37_c01392{left:275.385333pt;}
.x25_c01392{left:276.614667pt;}
.x83_c01392{left:282.320277pt;}
.x79_c01392{left:283.784000pt;}
.x46_c01392{left:285.033156pt;}
.x8_c01392{left:286.690667pt;}
.xbd_c01392{left:290.650035pt;}
.x8c_c01392{left:293.360483pt;}
.x68_c01392{left:294.611879pt;}
.xf_c01392{left:296.293333pt;}
.xce_c01392{left:299.280000pt;}
.xaa_c01392{left:300.837333pt;}
.x57_c01392{left:303.759672pt;}
.x2c_c01392{left:305.913333pt;}
.x18_c01392{left:306.866667pt;}
.x9c_c01392{left:310.920613pt;}
.x72_c01392{left:312.160411pt;}
.x3f_c01392{left:313.815933pt;}
.xb2_c01392{left:319.527507pt;}
.x8d_c01392{left:321.919149pt;}
.x69_c01392{left:323.626545pt;}
.x26_c01392{left:326.325333pt;}
.x73_c01392{left:332.079517pt;}
.x50_c01392{left:333.246095pt;}
.x1_c01392{left:335.760000pt;}
.xcf_c01392{left:337.920000pt;}
.xab_c01392{left:340.670667pt;}
.x40_c01392{left:343.339245pt;}
.xbe_c01392{left:348.736088pt;}
.x19_c01392{left:355.102667pt;}
.x2_c01392{left:356.160000pt;}
.x84_c01392{left:359.873128pt;}
.x60_c01392{left:361.805809pt;}
.x38_c01392{left:362.758667pt;}
.xb3_c01392{left:368.724888pt;}
.x47_c01392{left:372.162317pt;}
.x2d_c01392{left:373.594667pt;}
.xca_c01392{left:377.539161pt;}
.xbf_c01392{left:378.499245pt;}
.x7a_c01392{left:379.804000pt;}
.x74_c01392{left:381.049921pt;}
.x1a_c01392{left:384.382667pt;}
.xd4_c01392{left:385.541333pt;}
.x94_c01392{left:389.667536pt;}
.x58_c01392{left:391.130181pt;}
.x39_c01392{left:392.024000pt;}
.x3_c01392{left:394.320000pt;}
.xd0_c01392{left:396.480000pt;}
.x85_c01392{left:398.917553pt;}
.x48_c01392{left:401.207593pt;}
.x1b_c01392{left:403.612000pt;}
.x51_c01392{left:410.797129pt;}
.x9_c01392{left:413.194667pt;}
.xd5_c01392{left:415.537333pt;}
.xcb_c01392{left:416.484537pt;}
.x95_c01392{left:418.462833pt;}
.x6c_c01392{left:419.660692pt;}
.x1c_c01392{left:422.808000pt;}
.xc3_c01392{left:425.637333pt;}
.x8e_c01392{left:428.712483pt;}
.x27_c01392{left:430.224000pt;}
.x41_c01392{left:435.047936pt;}
.xa3_c01392{left:438.597845pt;}
.x3a_c01392{left:440.997333pt;}
.xa_c01392{left:442.448000pt;}
.xd6_c01392{left:444.556000pt;}
.x86_c01392{left:448.235429pt;}
.x61_c01392{left:450.357809pt;}
.x1d_c01392{left:451.832000pt;}
.xac_c01392{left:455.856000pt;}
.xb4_c01392{left:457.760723pt;}
.x8f_c01392{left:458.711149pt;}
.x34_c01392{left:460.222667pt;}
.x96_c01392{left:466.703889pt;}
.x49_c01392{left:469.127919pt;}
.x10_c01392{left:471.733333pt;}
.xb_c01392{left:472.932000pt;}
.x87_c01392{left:477.725085pt;}
.x52_c01392{left:478.955959pt;}
.xd1_c01392{left:484.560000pt;}
.x7b_c01392{left:487.080000pt;}
.x3b_c01392{left:489.232000pt;}
.x2e_c01392{left:490.220000pt;}
.xcc_c01392{left:493.807319pt;}
.xb5_c01392{left:495.439120pt;}
.x6d_c01392{left:496.943727pt;}
.x11_c01392{left:500.637333pt;}
.xa4_c01392{left:505.553845pt;}
.x2f_c01392{left:509.674667pt;}
.x1e_c01392{left:511.609333pt;}
.x7c_c01392{left:516.121333pt;}
.x90_c01392{left:517.085816pt;}
.x3c_c01392{left:518.510667pt;}
.xc4_c01392{left:523.596000pt;}
.x28_c01392{left:529.582667pt;}
.xd2_c01392{left:532.800000pt;}
.xa5_c01392{left:534.835179pt;}
.x62_c01392{left:536.747143pt;}
.x1f_c01392{left:539.904000pt;}
.xc5_c01392{left:542.520000pt;}
.x9d_c01392{left:544.240528pt;}
.x7d_c01392{left:545.333333pt;}
.x59_c01392{left:555.533412pt;}
.x4a_c01392{left:556.975776pt;}
.xb6_c01392{left:562.875672pt;}
.xad_c01392{left:564.569333pt;}
.xc6_c01392{left:571.081333pt;}
.x97_c01392{left:573.503569pt;}
.x6e_c01392{left:574.628109pt;}
.x29_c01392{left:578.066667pt;}
.x5a_c01392{left:584.265340pt;}
.x42_c01392{left:586.452599pt;}
.xa6_c01392{left:592.705845pt;}
.x7e_c01392{left:594.358667pt;}
.xb7_c01392{left:600.314051pt;}
.x4b_c01392{left:604.732540pt;}
.x30_c01392{left:606.388000pt;}
.x88_c01392{left:613.358581pt;}
.x20_c01392{left:617.190667pt;}
.x9e_c01392{left:622.240045pt;}
.x3d_c01392{left:625.077333pt;}
.x12_c01392{left:626.556000pt;}
.xb8_c01392{left:630.596224pt;}
.x91_c01392{left:631.788483pt;}
.x89_c01392{left:633.006801pt;}
.x4c_c01392{left:634.731193pt;}
.x31_c01392{left:636.380000pt;}
.x9f_c01392{left:641.170917pt;}
.x7f_c01392{left:642.593333pt;}
.x63_c01392{left:643.580476pt;}
.x2a_c01392{left:645.506667pt;}
.x98_c01392{left:651.266619pt;}
.x53_c01392{left:653.926483pt;}
.x13_c01392{left:656.293333pt;}
.xc7_c01392{left:658.692000pt;}
.xa7_c01392{left:660.817845pt;}
.x43_c01392{left:664.230315pt;}
.xb9_c01392{left:668.231936pt;}
.xae_c01392{left:670.693333pt;}
.x80_c01392{left:671.882667pt;}
.x5b_c01392{left:673.398604pt;}
.x99_c01392{left:680.548597pt;}
.x6f_c01392{left:682.227804pt;}
.x64_c01392{left:683.876476pt;}
.x21_c01392{left:688.452000pt;}
.xa0_c01392{left:690.647460pt;}
.x4d_c01392{left:693.056427pt;}
.x32_c01392{left:694.969333pt;}
.x75_c01392{left:701.435628pt;}
.x14_c01392{left:705.189333pt;}
.xaf_c01392{left:708.862667pt;}
.x70_c01392{left:711.751116pt;}
.x5c_c01392{left:713.483031pt;}
.x8a_c01392{left:720.138421pt;}
.x65_c01392{left:722.076476pt;}
.x22_c01392{left:724.709333pt;}
.xa1_c01392{left:729.742552pt;}
}





/* 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_c01393 {
    display:none;
  }
  .loading-indicator_c01393.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01393 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_c01393 { 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_c01393" -> "#page-container .classname_c01393")
 */
.pf_c01393 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01393 { /* 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_c01393.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01393 { /* 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_c01393 { /* 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_c01393 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01393 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01393 {overflow:visible;}
  }
}
.c_c01393 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01393 { /* 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_c01393:after { /* webkit #35443 */
  content: '';
}
.t_c01393:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01393 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 */
}
.__c01393 { /* 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_c01393 { /* info for Javascript */
  display:none;
}
.l_c01393 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01393 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01393 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01393: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_c01393 {
    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_c01393.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01393.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_c01393 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01393{font-family:sans-serif;visibility:hidden;}
.sc__c01393{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01393{-webkit-text-stroke:0px transparent;}
}
.y0_c01393{bottom:0.000000px;}
.h1_c01393{height:1250.250000px;}
.h0_c01393{height:1250.370000px;}
.w0_c01393{width:878.850000px;}
.w1_c01393{width:879.000000px;}
.x0_c01393{left:0.000000px;}
@media print{
.y0_c01393{bottom:0.000000pt;}
.h1_c01393{height:1111.333333pt;}
.h0_c01393{height:1111.440000pt;}
.w0_c01393{width:781.200000pt;}
.w1_c01393{width:781.333333pt;}
.x0_c01393{left:0.000000pt;}
}





/* 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_c01394 {
    display:none;
  }
  .loading-indicator_c01394.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01394 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_c01394 { 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_c01394" -> "#page-container .classname_c01394")
 */
.pf_c01394 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01394 { /* 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_c01394.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01394 { /* 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_c01394 { /* 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_c01394 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01394 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01394 {overflow:visible;}
  }
}
.c_c01394 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01394 { /* 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_c01394:after { /* webkit #35443 */
  content: '';
}
.t_c01394:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01394 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 */
}
.__c01394 { /* 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_c01394 { /* info for Javascript */
  display:none;
}
.l_c01394 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01394 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01394 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01394: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_c01394 {
    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_c01394.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01394.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_c01394 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01394{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01394;src:url('chunks/assets/font_fabf4b590f7fb32aea93ffb2.woff2')format("woff");}.ff1_c01394{font-family:ff1_c01394;line-height:1.000000;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;}
.m0_c01394{transform:matrix(0.096520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096520,0.000000,0.000000,0.250000,0,0);}
.mad_c01394{transform:matrix(0.120265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120265,0.000000,0.000000,0.250000,0,0);}
.maa_c01394{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.mac_c01394{transform:matrix(0.138680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138680,0.000000,0.000000,0.250000,0,0);}
.ma7_c01394{transform:matrix(0.139140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139140,0.000000,0.000000,0.250000,0,0);}
.mab_c01394{transform:matrix(0.141510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141510,0.000000,0.000000,0.250000,0,0);}
.ma5_c01394{transform:matrix(0.145060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145060,0.000000,0.000000,0.250000,0,0);}
.ma8_c01394{transform:matrix(0.145200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145200,0.000000,0.000000,0.250000,0,0);}
.ma4_c01394{transform:matrix(0.146025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146025,0.000000,0.000000,0.250000,0,0);}
.m1_c01394{transform:matrix(0.151560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151560,0.000000,0.000000,0.250000,0,0);}
.ma9_c01394{transform:matrix(0.152740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152740,0.000000,0.000000,0.250000,0,0);}
.mae_c01394{transform:matrix(0.153595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153595,0.000000,0.000000,0.250000,0,0);}
.ma6_c01394{transform:matrix(0.156870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156870,0.000000,0.000000,0.250000,0,0);}
.m86_c01394{transform:matrix(0.185045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185045,0.000000,0.000000,0.250000,0,0);}
.ma_c01394{transform:matrix(0.185130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185130,0.000000,0.000000,0.250000,0,0);}
.m7_c01394{transform:matrix(0.187235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187235,0.000000,0.000000,0.250000,0,0);}
.m22_c01394{transform:matrix(0.189835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189835,0.000000,0.000000,0.250000,0,0);}
.m2_c01394{transform:matrix(0.191040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191040,0.000000,0.000000,0.250000,0,0);}
.m9_c01394{transform:matrix(0.191580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191580,0.000000,0.000000,0.250000,0,0);}
.m6c_c01394{transform:matrix(0.191900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191900,0.000000,0.000000,0.250000,0,0);}
.m5_c01394{transform:matrix(0.193895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193895,0.000000,0.000000,0.250000,0,0);}
.m6_c01394{transform:matrix(0.195315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195315,0.000000,0.000000,0.250000,0,0);}
.m4_c01394{transform:matrix(0.196295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196295,0.000000,0.000000,0.250000,0,0);}
.m84_c01394{transform:matrix(0.196515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196515,0.000000,0.000000,0.250000,0,0);}
.m3_c01394{transform:matrix(0.196930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196930,0.000000,0.000000,0.250000,0,0);}
.mc_c01394{transform:matrix(0.197420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197420,0.000000,0.000000,0.250000,0,0);}
.m55_c01394{transform:matrix(0.199410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199410,0.000000,0.000000,0.250000,0,0);}
.m4b_c01394{transform:matrix(0.199700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199700,0.000000,0.000000,0.250000,0,0);}
.m73_c01394{transform:matrix(0.202810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202810,0.000000,0.000000,0.250000,0,0);}
.m76_c01394{transform:matrix(0.204125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204125,0.000000,0.000000,0.250000,0,0);}
.m8b_c01394{transform:matrix(0.204605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204605,0.000000,0.000000,0.250000,0,0);}
.me_c01394{transform:matrix(0.205100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205100,0.000000,0.000000,0.250000,0,0);}
.m1f_c01394{transform:matrix(0.205125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205125,0.000000,0.000000,0.250000,0,0);}
.mb_c01394{transform:matrix(0.205340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205340,0.000000,0.000000,0.250000,0,0);}
.m24_c01394{transform:matrix(0.206260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206260,0.000000,0.000000,0.250000,0,0);}
.m7c_c01394{transform:matrix(0.206825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206825,0.000000,0.000000,0.250000,0,0);}
.m15_c01394{transform:matrix(0.207015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207015,0.000000,0.000000,0.250000,0,0);}
.m2a_c01394{transform:matrix(0.207690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207690,0.000000,0.000000,0.250000,0,0);}
.m8_c01394{transform:matrix(0.207885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207885,0.000000,0.000000,0.250000,0,0);}
.m88_c01394{transform:matrix(0.207895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207895,0.000000,0.000000,0.250000,0,0);}
.m50_c01394{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m4a_c01394{transform:matrix(0.208755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208755,0.000000,0.000000,0.250000,0,0);}
.m54_c01394{transform:matrix(0.209410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209410,0.000000,0.000000,0.250000,0,0);}
.m5b_c01394{transform:matrix(0.210730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210730,0.000000,0.000000,0.250000,0,0);}
.m77_c01394{transform:matrix(0.211460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211460,0.000000,0.000000,0.250000,0,0);}
.m6e_c01394{transform:matrix(0.211580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211580,0.000000,0.000000,0.250000,0,0);}
.m2f_c01394{transform:matrix(0.211930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211930,0.000000,0.000000,0.250000,0,0);}
.md_c01394{transform:matrix(0.212090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212090,0.000000,0.000000,0.250000,0,0);}
.m17_c01394{transform:matrix(0.214555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214555,0.000000,0.000000,0.250000,0,0);}
.m13_c01394{transform:matrix(0.214650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214650,0.000000,0.000000,0.250000,0,0);}
.m4c_c01394{transform:matrix(0.215075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215075,0.000000,0.000000,0.250000,0,0);}
.m49_c01394{transform:matrix(0.216725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216725,0.000000,0.000000,0.250000,0,0);}
.m81_c01394{transform:matrix(0.217200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217200,0.000000,0.000000,0.250000,0,0);}
.m52_c01394{transform:matrix(0.217605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217605,0.000000,0.000000,0.250000,0,0);}
.m93_c01394{transform:matrix(0.217770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217770,0.000000,0.000000,0.250000,0,0);}
.m19_c01394{transform:matrix(0.218120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218120,0.000000,0.000000,0.250000,0,0);}
.m10_c01394{transform:matrix(0.218335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218335,0.000000,0.000000,0.250000,0,0);}
.m7e_c01394{transform:matrix(0.218745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218745,0.000000,0.000000,0.250000,0,0);}
.m20_c01394{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m78_c01394{transform:matrix(0.219960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219960,0.000000,0.000000,0.250000,0,0);}
.m65_c01394{transform:matrix(0.220510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220510,0.000000,0.000000,0.250000,0,0);}
.m71_c01394{transform:matrix(0.220925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220925,0.000000,0.000000,0.250000,0,0);}
.m80_c01394{transform:matrix(0.221415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221415,0.000000,0.000000,0.250000,0,0);}
.m21_c01394{transform:matrix(0.222240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222240,0.000000,0.000000,0.250000,0,0);}
.m1d_c01394{transform:matrix(0.222255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222255,0.000000,0.000000,0.250000,0,0);}
.m8c_c01394{transform:matrix(0.222755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222755,0.000000,0.000000,0.250000,0,0);}
.m48_c01394{transform:matrix(0.223380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223380,0.000000,0.000000,0.250000,0,0);}
.m1a_c01394{transform:matrix(0.224910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224910,0.000000,0.000000,0.250000,0,0);}
.m95_c01394{transform:matrix(0.225315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225315,0.000000,0.000000,0.250000,0,0);}
.m7a_c01394{transform:matrix(0.225830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225830,0.000000,0.000000,0.250000,0,0);}
.m79_c01394{transform:matrix(0.225910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225910,0.000000,0.000000,0.250000,0,0);}
.m7d_c01394{transform:matrix(0.226860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226860,0.000000,0.000000,0.250000,0,0);}
.m4d_c01394{transform:matrix(0.227380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227380,0.000000,0.000000,0.250000,0,0);}
.mbb_c01394{transform:matrix(0.227725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227725,0.000000,0.000000,0.250000,0,0);}
.m4e_c01394{transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);}
.m61_c01394{transform:matrix(0.227855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227855,0.000000,0.000000,0.250000,0,0);}
.m75_c01394{transform:matrix(0.228010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228010,0.000000,0.000000,0.250000,0,0);}
.m6d_c01394{transform:matrix(0.228555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228555,0.000000,0.000000,0.250000,0,0);}
.m1b_c01394{transform:matrix(0.228620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228620,0.000000,0.000000,0.250000,0,0);}
.m70_c01394{transform:matrix(0.228915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228915,0.000000,0.000000,0.250000,0,0);}
.m72_c01394{transform:matrix(0.229210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229210,0.000000,0.000000,0.250000,0,0);}
.mbc_c01394{transform:matrix(0.229775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229775,0.000000,0.000000,0.250000,0,0);}
.mb3_c01394{transform:matrix(0.229950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229950,0.000000,0.000000,0.250000,0,0);}
.m91_c01394{transform:matrix(0.230045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230045,0.000000,0.000000,0.250000,0,0);}
.m11_c01394{transform:matrix(0.230145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230145,0.000000,0.000000,0.250000,0,0);}
.m57_c01394{transform:matrix(0.230180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230180,0.000000,0.000000,0.250000,0,0);}
.mb1_c01394{transform:matrix(0.230445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230445,0.000000,0.000000,0.250000,0,0);}
.m4f_c01394{transform:matrix(0.230620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230620,0.000000,0.000000,0.250000,0,0);}
.m9b_c01394{transform:matrix(0.231060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231060,0.000000,0.000000,0.250000,0,0);}
.mb7_c01394{transform:matrix(0.231160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231160,0.000000,0.000000,0.250000,0,0);}
.m83_c01394{transform:matrix(0.231350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231350,0.000000,0.000000,0.250000,0,0);}
.m23_c01394{transform:matrix(0.231360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231360,0.000000,0.000000,0.250000,0,0);}
.m16_c01394{transform:matrix(0.231785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231785,0.000000,0.000000,0.250000,0,0);}
.m1e_c01394{transform:matrix(0.231805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231805,0.000000,0.000000,0.250000,0,0);}
.maf_c01394{transform:matrix(0.233570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233570,0.000000,0.000000,0.250000,0,0);}
.m45_c01394{transform:matrix(0.233660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233660,0.000000,0.000000,0.250000,0,0);}
.m53_c01394{transform:matrix(0.233905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233905,0.000000,0.000000,0.250000,0,0);}
.m82_c01394{transform:matrix(0.233935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233935,0.000000,0.000000,0.250000,0,0);}
.m41_c01394{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m12_c01394{transform:matrix(0.234590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234590,0.000000,0.000000,0.250000,0,0);}
.m5c_c01394{transform:matrix(0.234690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234690,0.000000,0.000000,0.250000,0,0);}
.m51_c01394{transform:matrix(0.234820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234820,0.000000,0.000000,0.250000,0,0);}
.m8a_c01394{transform:matrix(0.235255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235255,0.000000,0.000000,0.250000,0,0);}
.m56_c01394{transform:matrix(0.235405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235405,0.000000,0.000000,0.250000,0,0);}
.m9c_c01394{transform:matrix(0.235565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235565,0.000000,0.000000,0.250000,0,0);}
.mb8_c01394{transform:matrix(0.235580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235580,0.000000,0.000000,0.250000,0,0);}
.m58_c01394{transform:matrix(0.235670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235670,0.000000,0.000000,0.250000,0,0);}
.m7f_c01394{transform:matrix(0.235680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235680,0.000000,0.000000,0.250000,0,0);}
.m1c_c01394{transform:matrix(0.236420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236420,0.000000,0.000000,0.250000,0,0);}
.m74_c01394{transform:matrix(0.236875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236875,0.000000,0.000000,0.250000,0,0);}
.mf_c01394{transform:matrix(0.237385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237385,0.000000,0.000000,0.250000,0,0);}
.m67_c01394{transform:matrix(0.237430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237430,0.000000,0.000000,0.250000,0,0);}
.m30_c01394{transform:matrix(0.237625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237625,0.000000,0.000000,0.250000,0,0);}
.mb4_c01394{transform:matrix(0.237950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237950,0.000000,0.000000,0.250000,0,0);}
.m85_c01394{transform:matrix(0.238080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238080,0.000000,0.000000,0.250000,0,0);}
.ma1_c01394{transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);}
.mb5_c01394{transform:matrix(0.238195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238195,0.000000,0.000000,0.250000,0,0);}
.m5d_c01394{transform:matrix(0.238265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238265,0.000000,0.000000,0.250000,0,0);}
.m40_c01394{transform:matrix(0.238445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238445,0.000000,0.000000,0.250000,0,0);}
.ma2_c01394{transform:matrix(0.239070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239070,0.000000,0.000000,0.250000,0,0);}
.m8e_c01394{transform:matrix(0.239095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239095,0.000000,0.000000,0.250000,0,0);}
.m62_c01394{transform:matrix(0.239120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239120,0.000000,0.000000,0.250000,0,0);}
.m3e_c01394{transform:matrix(0.239180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239180,0.000000,0.000000,0.250000,0,0);}
.mbd_c01394{transform:matrix(0.239380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239380,0.000000,0.000000,0.250000,0,0);}
.m7b_c01394{transform:matrix(0.240480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240480,0.000000,0.000000,0.250000,0,0);}
.m18_c01394{transform:matrix(0.240540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240540,0.000000,0.000000,0.250000,0,0);}
.m87_c01394{transform:matrix(0.241335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241335,0.000000,0.000000,0.250000,0,0);}
.m6f_c01394{transform:matrix(0.241620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241620,0.000000,0.000000,0.250000,0,0);}
.m14_c01394{transform:matrix(0.241935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241935,0.000000,0.000000,0.250000,0,0);}
.m90_c01394{transform:matrix(0.242040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242040,0.000000,0.000000,0.250000,0,0);}
.m2e_c01394{transform:matrix(0.244600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244600,0.000000,0.000000,0.250000,0,0);}
.m47_c01394{transform:matrix(0.246825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246825,0.000000,0.000000,0.250000,0,0);}
.mb0_c01394{transform:matrix(0.247430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247430,0.000000,0.000000,0.250000,0,0);}
.m5f_c01394{transform:matrix(0.247670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247670,0.000000,0.000000,0.250000,0,0);}
.m8f_c01394{transform:matrix(0.247735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247735,0.000000,0.000000,0.250000,0,0);}
.m46_c01394{transform:matrix(0.248275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248275,0.000000,0.000000,0.250000,0,0);}
.m68_c01394{transform:matrix(0.248545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248545,0.000000,0.000000,0.250000,0,0);}
.mb2_c01394{transform:matrix(0.248850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248850,0.000000,0.000000,0.250000,0,0);}
.mb9_c01394{transform:matrix(0.249005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249005,0.000000,0.000000,0.250000,0,0);}
.m6a_c01394{transform:matrix(0.249180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249180,0.000000,0.000000,0.250000,0,0);}
.m44_c01394{transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);}
.m9d_c01394{transform:matrix(0.249990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249990,0.000000,0.000000,0.250000,0,0);}
.m42_c01394{transform:matrix(0.250195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250195,0.000000,0.000000,0.250000,0,0);}
.m9a_c01394{transform:matrix(0.250635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250635,0.000000,0.000000,0.250000,0,0);}
.m2c_c01394{transform:matrix(0.250820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250820,0.000000,0.000000,0.250000,0,0);}
.m9e_c01394{transform:matrix(0.250860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250860,0.000000,0.000000,0.250000,0,0);}
.m59_c01394{transform:matrix(0.251890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251890,0.000000,0.000000,0.250000,0,0);}
.m9f_c01394{transform:matrix(0.252490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252490,0.000000,0.000000,0.250000,0,0);}
.m96_c01394{transform:matrix(0.252590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252590,0.000000,0.000000,0.250000,0,0);}
.m3b_c01394{transform:matrix(0.253105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253105,0.000000,0.000000,0.250000,0,0);}
.ma3_c01394{transform:matrix(0.253910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253910,0.000000,0.000000,0.250000,0,0);}
.m5e_c01394{transform:matrix(0.254265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254265,0.000000,0.000000,0.250000,0,0);}
.mb6_c01394{transform:matrix(0.254280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254280,0.000000,0.000000,0.250000,0,0);}
.m35_c01394{transform:matrix(0.254470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254470,0.000000,0.000000,0.250000,0,0);}
.m28_c01394{transform:matrix(0.254560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254560,0.000000,0.000000,0.250000,0,0);}
.m6b_c01394{transform:matrix(0.254980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254980,0.000000,0.000000,0.250000,0,0);}
.m3f_c01394{transform:matrix(0.255240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255240,0.000000,0.000000,0.250000,0,0);}
.m92_c01394{transform:matrix(0.255440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255440,0.000000,0.000000,0.250000,0,0);}
.m5a_c01394{transform:matrix(0.255740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255740,0.000000,0.000000,0.250000,0,0);}
.m37_c01394{transform:matrix(0.255855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255855,0.000000,0.000000,0.250000,0,0);}
.m69_c01394{transform:matrix(0.255960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255960,0.000000,0.000000,0.250000,0,0);}
.m60_c01394{transform:matrix(0.255970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255970,0.000000,0.000000,0.250000,0,0);}
.m98_c01394{transform:matrix(0.256195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256195,0.000000,0.000000,0.250000,0,0);}
.m64_c01394{transform:matrix(0.256310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256310,0.000000,0.000000,0.250000,0,0);}
.m63_c01394{transform:matrix(0.257365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257365,0.000000,0.000000,0.250000,0,0);}
.m66_c01394{transform:matrix(0.258060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258060,0.000000,0.000000,0.250000,0,0);}
.mba_c01394{transform:matrix(0.258345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258345,0.000000,0.000000,0.250000,0,0);}
.ma0_c01394{transform:matrix(0.258595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258595,0.000000,0.000000,0.250000,0,0);}
.m43_c01394{transform:matrix(0.259580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259580,0.000000,0.000000,0.250000,0,0);}
.m31_c01394{transform:matrix(0.261110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261110,0.000000,0.000000,0.250000,0,0);}
.m94_c01394{transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);}
.m97_c01394{transform:matrix(0.261355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261355,0.000000,0.000000,0.250000,0,0);}
.m3a_c01394{transform:matrix(0.262815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262815,0.000000,0.000000,0.250000,0,0);}
.m29_c01394{transform:matrix(0.264640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264640,0.000000,0.000000,0.250000,0,0);}
.m3c_c01394{transform:matrix(0.267855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267855,0.000000,0.000000,0.250000,0,0);}
.m25_c01394{transform:matrix(0.268785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268785,0.000000,0.000000,0.250000,0,0);}
.m89_c01394{transform:matrix(0.270830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270830,0.000000,0.000000,0.250000,0,0);}
.m3d_c01394{transform:matrix(0.271300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271300,0.000000,0.000000,0.250000,0,0);}
.m38_c01394{transform:matrix(0.271965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271965,0.000000,0.000000,0.250000,0,0);}
.m33_c01394{transform:matrix(0.273005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273005,0.000000,0.000000,0.250000,0,0);}
.m2b_c01394{transform:matrix(0.274655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274655,0.000000,0.000000,0.250000,0,0);}
.m39_c01394{transform:matrix(0.276730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276730,0.000000,0.000000,0.250000,0,0);}
.m34_c01394{transform:matrix(0.276920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276920,0.000000,0.000000,0.250000,0,0);}
.m36_c01394{transform:matrix(0.278650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278650,0.000000,0.000000,0.250000,0,0);}
.m99_c01394{transform:matrix(0.282530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282530,0.000000,0.000000,0.250000,0,0);}
.m26_c01394{transform:matrix(0.283360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283360,0.000000,0.000000,0.250000,0,0);}
.m2d_c01394{transform:matrix(0.284850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284850,0.000000,0.000000,0.250000,0,0);}
.m8d_c01394{transform:matrix(0.286640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286640,0.000000,0.000000,0.250000,0,0);}
.m27_c01394{transform:matrix(0.295575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295575,0.000000,0.000000,0.250000,0,0);}
.mc2_c01394{transform:matrix(0.316220,0.002530,-0.002000,0.249992,0,0);-ms-transform:matrix(0.316220,0.002530,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.316220,0.002530,-0.002000,0.249992,0,0);}
.m32_c01394{transform:matrix(0.318770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318770,0.000000,0.000000,0.250000,0,0);}
.mc4_c01394{transform:matrix(0.331884,0.002655,-0.002000,0.249992,0,0);-ms-transform:matrix(0.331884,0.002655,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.331884,0.002655,-0.002000,0.249992,0,0);}
.mc6_c01394{transform:matrix(0.337334,0.002699,-0.002000,0.249992,0,0);-ms-transform:matrix(0.337334,0.002699,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.337334,0.002699,-0.002000,0.249992,0,0);}
.mc7_c01394{transform:matrix(0.341804,0.002734,-0.002000,0.249992,0,0);-ms-transform:matrix(0.341804,0.002734,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.341804,0.002734,-0.002000,0.249992,0,0);}
.mc5_c01394{transform:matrix(0.349564,0.002797,-0.002000,0.249992,0,0);-ms-transform:matrix(0.349564,0.002797,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.349564,0.002797,-0.002000,0.249992,0,0);}
.mbf_c01394{transform:matrix(0.351669,0.002813,-0.002000,0.249992,0,0);-ms-transform:matrix(0.351669,0.002813,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.351669,0.002813,-0.002000,0.249992,0,0);}
.mc1_c01394{transform:matrix(0.359129,0.002873,-0.002000,0.249992,0,0);-ms-transform:matrix(0.359129,0.002873,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.359129,0.002873,-0.002000,0.249992,0,0);}
.mc0_c01394{transform:matrix(0.359993,0.002880,-0.002000,0.249992,0,0);-ms-transform:matrix(0.359993,0.002880,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.359993,0.002880,-0.002000,0.249992,0,0);}
.mbe_c01394{transform:matrix(0.370873,0.002967,-0.002000,0.249992,0,0);-ms-transform:matrix(0.370873,0.002967,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.370873,0.002967,-0.002000,0.249992,0,0);}
.mc3_c01394{transform:matrix(0.373118,0.002985,-0.002000,0.249992,0,0);-ms-transform:matrix(0.373118,0.002985,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.373118,0.002985,-0.002000,0.249992,0,0);}
.v0_c01394{vertical-align:0.000000px;}
.ls0_c01394{letter-spacing:0.000000px;}
.sc__c01394{text-shadow:none;}
.sc0_c01394{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__c01394{-webkit-text-stroke:0px transparent;}
.sc0_c01394{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01394{word-spacing:0.000000px;}
.fc0_c01394{color:transparent;}
.fs5_c01394{font-size:54.001728px;}
.fs3_c01394{font-size:72.000000px;}
.fs2_c01394{font-size:78.000000px;}
.fs1_c01394{font-size:84.000000px;}
.fs0_c01394{font-size:96.000000px;}
.fs4_c01394{font-size:132.000000px;}
.y0_c01394{bottom:0.000000px;}
.ycb_c01394{bottom:563.951448px;}
.yca_c01394{bottom:564.387732px;}
.yc9_c01394{bottom:564.921240px;}
.yc8_c01394{bottom:565.184688px;}
.yc7_c01394{bottom:565.348824px;}
.yc6_c01394{bottom:565.621032px;}
.yc5_c01394{bottom:565.992612px;}
.yc4_c01394{bottom:566.584524px;}
.yc3_c01394{bottom:567.193584px;}
.yc2_c01394{bottom:567.541500px;}
.yc1_c01394{bottom:631.986000px;}
.yc0_c01394{bottom:632.232000px;}
.ybf_c01394{bottom:632.572500px;}
.ybe_c01394{bottom:632.752500px;}
.ybd_c01394{bottom:633.532500px;}
.ybc_c01394{bottom:633.982500px;}
.ybb_c01394{bottom:634.251000px;}
.yba_c01394{bottom:634.944000px;}
.yb9_c01394{bottom:635.376000px;}
.yb8_c01394{bottom:635.733000px;}
.yb7_c01394{bottom:635.998500px;}
.yb6_c01394{bottom:636.522000px;}
.yb5_c01394{bottom:636.777000px;}
.yb4_c01394{bottom:637.302000px;}
.yb3_c01394{bottom:637.470000px;}
.yb2_c01394{bottom:666.771000px;}
.yb1_c01394{bottom:667.035000px;}
.yb0_c01394{bottom:667.477500px;}
.yaf_c01394{bottom:667.743000px;}
.yae_c01394{bottom:668.154000px;}
.yad_c01394{bottom:669.130500px;}
.yac_c01394{bottom:669.661500px;}
.yab_c01394{bottom:670.102500px;}
.yaa_c01394{bottom:670.887000px;}
.ya9_c01394{bottom:671.226000px;}
.ya8_c01394{bottom:671.761500px;}
.ya7_c01394{bottom:701.634000px;}
.ya6_c01394{bottom:702.064500px;}
.ya5_c01394{bottom:702.333000px;}
.ya4_c01394{bottom:703.206000px;}
.ya3_c01394{bottom:703.737000px;}
.ya2_c01394{bottom:703.903500px;}
.ya1_c01394{bottom:704.595000px;}
.ya0_c01394{bottom:704.863500px;}
.y9f_c01394{bottom:705.129000px;}
.y9e_c01394{bottom:705.816000px;}
.y9d_c01394{bottom:706.087500px;}
.y9c_c01394{bottom:706.863000px;}
.y9b_c01394{bottom:739.036500px;}
.y9a_c01394{bottom:739.558500px;}
.y99_c01394{bottom:739.756500px;}
.y98_c01394{bottom:740.541000px;}
.y97_c01394{bottom:740.736000px;}
.y96_c01394{bottom:741.264000px;}
.y95_c01394{bottom:741.525000px;}
.y94_c01394{bottom:741.789000px;}
.y93_c01394{bottom:742.177500px;}
.y92_c01394{bottom:742.503000px;}
.y91_c01394{bottom:772.744500px;}
.y90_c01394{bottom:773.274000px;}
.y8f_c01394{bottom:773.515500px;}
.y8e_c01394{bottom:773.665500px;}
.y8d_c01394{bottom:774.193500px;}
.y8c_c01394{bottom:774.666000px;}
.y8b_c01394{bottom:774.961500px;}
.y8a_c01394{bottom:775.878000px;}
.y89_c01394{bottom:776.109000px;}
.y88_c01394{bottom:776.946000px;}
.y87_c01394{bottom:777.186000px;}
.y86_c01394{bottom:777.336000px;}
.y85_c01394{bottom:808.548000px;}
.y84_c01394{bottom:809.241000px;}
.y83_c01394{bottom:809.593500px;}
.y82_c01394{bottom:809.770500px;}
.y81_c01394{bottom:810.463500px;}
.y80_c01394{bottom:810.891000px;}
.y7f_c01394{bottom:811.258500px;}
.y7e_c01394{bottom:811.510500px;}
.y7d_c01394{bottom:812.467500px;}
.y7c_c01394{bottom:812.994000px;}
.y7b_c01394{bottom:813.514500px;}
.y7a_c01394{bottom:843.958500px;}
.y79_c01394{bottom:844.261500px;}
.y78_c01394{bottom:844.501500px;}
.y77_c01394{bottom:844.653000px;}
.y76_c01394{bottom:845.476500px;}
.y75_c01394{bottom:845.787000px;}
.y74_c01394{bottom:846.256500px;}
.y73_c01394{bottom:846.702000px;}
.y72_c01394{bottom:846.864000px;}
.y71_c01394{bottom:847.482000px;}
.y70_c01394{bottom:847.708500px;}
.y6f_c01394{bottom:848.383500px;}
.y6e_c01394{bottom:848.614500px;}
.y6d_c01394{bottom:880.462500px;}
.y6c_c01394{bottom:880.860000px;}
.y6b_c01394{bottom:881.446500px;}
.y6a_c01394{bottom:881.842500px;}
.y69_c01394{bottom:882.168000px;}
.y68_c01394{bottom:882.297000px;}
.y67_c01394{bottom:883.212000px;}
.y66_c01394{bottom:883.344000px;}
.y65_c01394{bottom:883.935000px;}
.y64_c01394{bottom:884.523000px;}
.y63_c01394{bottom:915.550500px;}
.y62_c01394{bottom:915.754500px;}
.y61_c01394{bottom:916.407000px;}
.y60_c01394{bottom:916.804500px;}
.y5f_c01394{bottom:917.520000px;}
.y5e_c01394{bottom:917.719500px;}
.y5d_c01394{bottom:918.033000px;}
.y5c_c01394{bottom:918.172500px;}
.y5b_c01394{bottom:918.763500px;}
.y5a_c01394{bottom:919.161000px;}
.y59_c01394{bottom:919.416000px;}
.y58_c01394{bottom:919.623000px;}
.y57_c01394{bottom:950.032500px;}
.y56_c01394{bottom:950.256000px;}
.y55_c01394{bottom:950.560500px;}
.y54_c01394{bottom:951.322500px;}
.y53_c01394{bottom:951.562500px;}
.y52_c01394{bottom:952.168500px;}
.y51_c01394{bottom:952.404000px;}
.y50_c01394{bottom:952.857000px;}
.y4f_c01394{bottom:953.467500px;}
.y4e_c01394{bottom:953.931000px;}
.y4d_c01394{bottom:954.231000px;}
.y4c_c01394{bottom:954.451500px;}
.y4b_c01394{bottom:985.824000px;}
.y4a_c01394{bottom:986.095500px;}
.y49_c01394{bottom:986.361000px;}
.y48_c01394{bottom:986.965500px;}
.y47_c01394{bottom:987.580500px;}
.y46_c01394{bottom:987.928500px;}
.y45_c01394{bottom:988.537500px;}
.y44_c01394{bottom:988.806000px;}
.y43_c01394{bottom:989.418000px;}
.y42_c01394{bottom:989.673000px;}
.y41_c01394{bottom:989.854500px;}
.y40_c01394{bottom:990.555000px;}
.y3f_c01394{bottom:990.903000px;}
.y3e_c01394{bottom:1020.792000px;}
.y3d_c01394{bottom:1021.258500px;}
.y3c_c01394{bottom:1021.485000px;}
.y3b_c01394{bottom:1021.870500px;}
.y3a_c01394{bottom:1022.635500px;}
.y39_c01394{bottom:1023.091500px;}
.y38_c01394{bottom:1023.318000px;}
.y37_c01394{bottom:1024.002000px;}
.y36_c01394{bottom:1024.239000px;}
.y35_c01394{bottom:1024.848000px;}
.y34_c01394{bottom:1025.461500px;}
.y33_c01394{bottom:1056.589500px;}
.y32_c01394{bottom:1056.889500px;}
.y31_c01394{bottom:1057.198500px;}
.y30_c01394{bottom:1057.422000px;}
.y2f_c01394{bottom:1057.969500px;}
.y2e_c01394{bottom:1058.178000px;}
.y2d_c01394{bottom:1058.635500px;}
.y2c_c01394{bottom:1058.859000px;}
.y2b_c01394{bottom:1059.094500px;}
.y2a_c01394{bottom:1059.717000px;}
.y29_c01394{bottom:1060.087500px;}
.y28_c01394{bottom:1060.323000px;}
.y27_c01394{bottom:1060.546500px;}
.y26_c01394{bottom:1061.100000px;}
.y25_c01394{bottom:1091.725500px;}
.y24_c01394{bottom:1091.928000px;}
.y23_c01394{bottom:1092.324000px;}
.y22_c01394{bottom:1092.511500px;}
.y21_c01394{bottom:1092.909000px;}
.y20_c01394{bottom:1093.111500px;}
.y1f_c01394{bottom:1093.363500px;}
.y1e_c01394{bottom:1093.953000px;}
.y1d_c01394{bottom:1094.221500px;}
.y1c_c01394{bottom:1094.868000px;}
.y1b_c01394{bottom:1095.330000px;}
.y1a_c01394{bottom:1095.660000px;}
.y19_c01394{bottom:1126.513500px;}
.y18_c01394{bottom:1127.388000px;}
.y17_c01394{bottom:1127.652000px;}
.y16_c01394{bottom:1127.815500px;}
.y15_c01394{bottom:1128.087000px;}
.y14_c01394{bottom:1129.135500px;}
.y13_c01394{bottom:1129.401000px;}
.y12_c01394{bottom:1130.008500px;}
.y11_c01394{bottom:1130.449500px;}
.y10_c01394{bottom:1130.881500px;}
.yf_c01394{bottom:1131.577500px;}
.ye_c01394{bottom:1131.840000px;}
.yd_c01394{bottom:1163.718000px;}
.yc_c01394{bottom:1163.941500px;}
.yb_c01394{bottom:1164.381000px;}
.ya_c01394{bottom:1164.538500px;}
.y9_c01394{bottom:1164.648000px;}
.y8_c01394{bottom:1165.137000px;}
.y7_c01394{bottom:1165.305000px;}
.y6_c01394{bottom:1165.632000px;}
.y5_c01394{bottom:1165.906500px;}
.y4_c01394{bottom:1166.064000px;}
.y3_c01394{bottom:1166.394000px;}
.y2_c01394{bottom:1166.670000px;}
.y1_c01394{bottom:1211.365500px;}
.h7_c01394{height:54.001728px;}
.h5_c01394{height:72.000000px;}
.h4_c01394{height:78.000000px;}
.h3_c01394{height:84.000000px;}
.h2_c01394{height:96.000000px;}
.h6_c01394{height:132.000000px;}
.h1_c01394{height:1250.250000px;}
.h0_c01394{height:1250.370000px;}
.w0_c01394{width:878.850000px;}
.w1_c01394{width:879.000000px;}
.x0_c01394{left:0.000000px;}
.x76_c01394{left:139.741500px;}
.x43_c01394{left:140.868000px;}
.x22_c01394{left:142.444500px;}
.x3_c01394{left:143.569500px;}
.x5f_c01394{left:162.187500px;}
.x3b_c01394{left:175.125000px;}
.xf_c01394{left:176.440500px;}
.x82_c01394{left:182.676000px;}
.x32_c01394{left:185.647500px;}
.x68_c01394{left:195.388500px;}
.x60_c01394{left:196.452000px;}
.x4_c01394{left:198.642000px;}
.x5a_c01394{left:206.701500px;}
.x3c_c01394{left:218.056500px;}
.x23_c01394{left:221.550000px;}
.x7b_c01394{left:227.214000px;}
.x2d_c01394{left:229.921500px;}
.x6e_c01394{left:238.275000px;}
.x4a_c01394{left:239.395500px;}
.x77_c01394{left:248.989500px;}
.x24_c01394{left:253.408500px;}
.x7c_c01394{left:259.069500px;}
.x69_c01394{left:260.191500px;}
.x10_c01394{left:263.389500px;}
.x5_c01394{left:264.763500px;}
.x52_c01394{left:271.782000px;}
.x33_c01394{left:273.151500px;}
.x1a_c01394{left:275.575500px;}
.x3d_c01394{left:284.209500px;}
.x25_c01394{left:287.157000px;}
.x6_c01394{left:296.379000px;}
.x53_c01394{left:304.182000px;}
.x61_c01394{left:316.084500px;}
.x11_c01394{left:317.379000px;}
.x7d_c01394{left:324.420000px;}
.x34_c01394{left:327.664500px;}
.x83_c01394{left:332.797500px;}
.x4b_c01394{left:337.972500px;}
.x26_c01394{left:340.074000px;}
.x6a_c01394{left:347.673000px;}
.x62_c01394{left:349.009500px;}
.x7_c01394{left:351.195000px;}
.x6f_c01394{left:358.164000px;}
.x4c_c01394{left:360.090000px;}
.x3e_c01394{left:371.409000px;}
.x12_c01394{left:372.466500px;}
.x84_c01394{left:379.245000px;}
.x1_c01394{left:382.590000px;}
.x70_c01394{left:391.374000px;}
.x54_c01394{left:392.505000px;}
.x78_c01394{left:402.181500px;}
.x35_c01394{left:404.082000px;}
.x2_c01394{left:406.350000px;}
.x85_c01394{left:413.271000px;}
.x8_c01394{left:416.530500px;}
.x5b_c01394{left:423.787500px;}
.x71_c01394{left:424.852500px;}
.x1b_c01394{left:428.131500px;}
.x86_c01394{left:433.788000px;}
.x3f_c01394{left:436.222500px;}
.x36_c01394{left:437.562000px;}
.x13_c01394{left:448.341000px;}
.x9_c01394{left:450.009000px;}
.x7e_c01394{left:456.184500px;}
.x44_c01394{left:458.103000px;}
.x27_c01394{left:462.648000px;}
.x87_c01394{left:466.719000px;}
.x6b_c01394{left:468.091500px;}
.x40_c01394{left:469.965000px;}
.x55_c01394{left:479.416500px;}
.x14_c01394{left:481.549500px;}
.x45_c01394{left:491.310000px;}
.x28_c01394{left:494.506500px;}
.x72_c01394{left:511.276500px;}
.x4d_c01394{left:512.665500px;}
.x37_c01394{left:513.721500px;}
.x63_c01394{left:522.091500px;}
.x5c_c01394{left:523.138500px;}
.x1c_c01394{left:526.423500px;}
.x73_c01394{left:532.035000px;}
.x4e_c01394{left:534.256500px;}
.x7f_c01394{left:542.848500px;}
.x2e_c01394{left:545.832000px;}
.xa_c01394{left:547.765500px;}
.x38_c01394{left:557.163000px;}
.x29_c01394{left:559.843500px;}
.x1d_c01394{left:568.522500px;}
.xb_c01394{left:569.617500px;}
.x80_c01394{left:576.327000px;}
.x4f_c01394{left:588.505500px;}
.x2a_c01394{left:589.590000px;}
.x41_c01394{left:590.919000px;}
.x6c_c01394{left:598.771500px;}
.xc_c01394{left:601.207500px;}
.x1e_c01394{left:602.272500px;}
.x46_c01394{left:610.666500px;}
.x15_c01394{left:612.519000px;}
.x5d_c01394{left:631.939500px;}
.x39_c01394{left:634.108500px;}
.x79_c01394{left:641.928000px;}
.x16_c01394{left:646.510500px;}
.x2f_c01394{left:655.200000px;}
.x64_c01394{left:664.920000px;}
.x17_c01394{left:667.032000px;}
.x1f_c01394{left:668.443500px;}
.x7a_c01394{left:675.139500px;}
.x47_c01394{left:676.794000px;}
.x65_c01394{left:686.247000px;}
.xd_c01394{left:688.974000px;}
.x18_c01394{left:699.976500px;}
.x56_c01394{left:708.393000px;}
.x30_c01394{left:710.259000px;}
.x6d_c01394{left:718.650000px;}
.x66_c01394{left:720.790500px;}
.x57_c01394{left:729.991500px;}
.xe_c01394{left:733.780500px;}
.x74_c01394{left:741.019500px;}
.x31_c01394{left:742.657500px;}
.x2b_c01394{left:743.974500px;}
.x50_c01394{left:752.146500px;}
.x5e_c01394{left:762.628500px;}
.x58_c01394{left:764.283000px;}
.x20_c01394{left:765.631500px;}
.x42_c01394{left:775.084500px;}
.x3a_c01394{left:776.964000px;}
.x48_c01394{left:785.610000px;}
.x2c_c01394{left:786.934500px;}
.x75_c01394{left:794.752500px;}
.x67_c01394{left:796.395000px;}
.x21_c01394{left:799.375500px;}
.x59_c01394{left:807.483000px;}
.x19_c01394{left:809.334000px;}
.x51_c01394{left:818.302500px;}
.x49_c01394{left:819.651000px;}
.x81_c01394{left:825.804000px;}
@media print{
.v0_c01394{vertical-align:0.000000pt;}
.ls0_c01394{letter-spacing:0.000000pt;}
.ws0_c01394{word-spacing:0.000000pt;}
.fs5_c01394{font-size:48.001536pt;}
.fs3_c01394{font-size:64.000000pt;}
.fs2_c01394{font-size:69.333333pt;}
.fs1_c01394{font-size:74.666667pt;}
.fs0_c01394{font-size:85.333333pt;}
.fs4_c01394{font-size:117.333333pt;}
.y0_c01394{bottom:0.000000pt;}
.ycb_c01394{bottom:501.290176pt;}
.yca_c01394{bottom:501.677984pt;}
.yc9_c01394{bottom:502.152213pt;}
.yc8_c01394{bottom:502.386389pt;}
.yc7_c01394{bottom:502.532288pt;}
.yc6_c01394{bottom:502.774251pt;}
.yc5_c01394{bottom:503.104544pt;}
.yc4_c01394{bottom:503.630688pt;}
.yc3_c01394{bottom:504.172075pt;}
.yc2_c01394{bottom:504.481333pt;}
.yc1_c01394{bottom:561.765333pt;}
.yc0_c01394{bottom:561.984000pt;}
.ybf_c01394{bottom:562.286667pt;}
.ybe_c01394{bottom:562.446667pt;}
.ybd_c01394{bottom:563.140000pt;}
.ybc_c01394{bottom:563.540000pt;}
.ybb_c01394{bottom:563.778667pt;}
.yba_c01394{bottom:564.394667pt;}
.yb9_c01394{bottom:564.778667pt;}
.yb8_c01394{bottom:565.096000pt;}
.yb7_c01394{bottom:565.332000pt;}
.yb6_c01394{bottom:565.797333pt;}
.yb5_c01394{bottom:566.024000pt;}
.yb4_c01394{bottom:566.490667pt;}
.yb3_c01394{bottom:566.640000pt;}
.yb2_c01394{bottom:592.685333pt;}
.yb1_c01394{bottom:592.920000pt;}
.yb0_c01394{bottom:593.313333pt;}
.yaf_c01394{bottom:593.549333pt;}
.yae_c01394{bottom:593.914667pt;}
.yad_c01394{bottom:594.782667pt;}
.yac_c01394{bottom:595.254667pt;}
.yab_c01394{bottom:595.646667pt;}
.yaa_c01394{bottom:596.344000pt;}
.ya9_c01394{bottom:596.645333pt;}
.ya8_c01394{bottom:597.121333pt;}
.ya7_c01394{bottom:623.674667pt;}
.ya6_c01394{bottom:624.057333pt;}
.ya5_c01394{bottom:624.296000pt;}
.ya4_c01394{bottom:625.072000pt;}
.ya3_c01394{bottom:625.544000pt;}
.ya2_c01394{bottom:625.692000pt;}
.ya1_c01394{bottom:626.306667pt;}
.ya0_c01394{bottom:626.545333pt;}
.y9f_c01394{bottom:626.781333pt;}
.y9e_c01394{bottom:627.392000pt;}
.y9d_c01394{bottom:627.633333pt;}
.y9c_c01394{bottom:628.322667pt;}
.y9b_c01394{bottom:656.921333pt;}
.y9a_c01394{bottom:657.385333pt;}
.y99_c01394{bottom:657.561333pt;}
.y98_c01394{bottom:658.258667pt;}
.y97_c01394{bottom:658.432000pt;}
.y96_c01394{bottom:658.901333pt;}
.y95_c01394{bottom:659.133333pt;}
.y94_c01394{bottom:659.368000pt;}
.y93_c01394{bottom:659.713333pt;}
.y92_c01394{bottom:660.002667pt;}
.y91_c01394{bottom:686.884000pt;}
.y90_c01394{bottom:687.354667pt;}
.y8f_c01394{bottom:687.569333pt;}
.y8e_c01394{bottom:687.702667pt;}
.y8d_c01394{bottom:688.172000pt;}
.y8c_c01394{bottom:688.592000pt;}
.y8b_c01394{bottom:688.854667pt;}
.y8a_c01394{bottom:689.669333pt;}
.y89_c01394{bottom:689.874667pt;}
.y88_c01394{bottom:690.618667pt;}
.y87_c01394{bottom:690.832000pt;}
.y86_c01394{bottom:690.965333pt;}
.y85_c01394{bottom:718.709333pt;}
.y84_c01394{bottom:719.325333pt;}
.y83_c01394{bottom:719.638667pt;}
.y82_c01394{bottom:719.796000pt;}
.y81_c01394{bottom:720.412000pt;}
.y80_c01394{bottom:720.792000pt;}
.y7f_c01394{bottom:721.118667pt;}
.y7e_c01394{bottom:721.342667pt;}
.y7d_c01394{bottom:722.193333pt;}
.y7c_c01394{bottom:722.661333pt;}
.y7b_c01394{bottom:723.124000pt;}
.y7a_c01394{bottom:750.185333pt;}
.y79_c01394{bottom:750.454667pt;}
.y78_c01394{bottom:750.668000pt;}
.y77_c01394{bottom:750.802667pt;}
.y76_c01394{bottom:751.534667pt;}
.y75_c01394{bottom:751.810667pt;}
.y74_c01394{bottom:752.228000pt;}
.y73_c01394{bottom:752.624000pt;}
.y72_c01394{bottom:752.768000pt;}
.y71_c01394{bottom:753.317333pt;}
.y70_c01394{bottom:753.518667pt;}
.y6f_c01394{bottom:754.118667pt;}
.y6e_c01394{bottom:754.324000pt;}
.y6d_c01394{bottom:782.633333pt;}
.y6c_c01394{bottom:782.986667pt;}
.y6b_c01394{bottom:783.508000pt;}
.y6a_c01394{bottom:783.860000pt;}
.y69_c01394{bottom:784.149333pt;}
.y68_c01394{bottom:784.264000pt;}
.y67_c01394{bottom:785.077333pt;}
.y66_c01394{bottom:785.194667pt;}
.y65_c01394{bottom:785.720000pt;}
.y64_c01394{bottom:786.242667pt;}
.y63_c01394{bottom:813.822667pt;}
.y62_c01394{bottom:814.004000pt;}
.y61_c01394{bottom:814.584000pt;}
.y60_c01394{bottom:814.937333pt;}
.y5f_c01394{bottom:815.573333pt;}
.y5e_c01394{bottom:815.750667pt;}
.y5d_c01394{bottom:816.029333pt;}
.y5c_c01394{bottom:816.153333pt;}
.y5b_c01394{bottom:816.678667pt;}
.y5a_c01394{bottom:817.032000pt;}
.y59_c01394{bottom:817.258667pt;}
.y58_c01394{bottom:817.442667pt;}
.y57_c01394{bottom:844.473333pt;}
.y56_c01394{bottom:844.672000pt;}
.y55_c01394{bottom:844.942667pt;}
.y54_c01394{bottom:845.620000pt;}
.y53_c01394{bottom:845.833333pt;}
.y52_c01394{bottom:846.372000pt;}
.y51_c01394{bottom:846.581333pt;}
.y50_c01394{bottom:846.984000pt;}
.y4f_c01394{bottom:847.526667pt;}
.y4e_c01394{bottom:847.938667pt;}
.y4d_c01394{bottom:848.205333pt;}
.y4c_c01394{bottom:848.401333pt;}
.y4b_c01394{bottom:876.288000pt;}
.y4a_c01394{bottom:876.529333pt;}
.y49_c01394{bottom:876.765333pt;}
.y48_c01394{bottom:877.302667pt;}
.y47_c01394{bottom:877.849333pt;}
.y46_c01394{bottom:878.158667pt;}
.y45_c01394{bottom:878.700000pt;}
.y44_c01394{bottom:878.938667pt;}
.y43_c01394{bottom:879.482667pt;}
.y42_c01394{bottom:879.709333pt;}
.y41_c01394{bottom:879.870667pt;}
.y40_c01394{bottom:880.493333pt;}
.y3f_c01394{bottom:880.802667pt;}
.y3e_c01394{bottom:907.370667pt;}
.y3d_c01394{bottom:907.785333pt;}
.y3c_c01394{bottom:907.986667pt;}
.y3b_c01394{bottom:908.329333pt;}
.y3a_c01394{bottom:909.009333pt;}
.y39_c01394{bottom:909.414667pt;}
.y38_c01394{bottom:909.616000pt;}
.y37_c01394{bottom:910.224000pt;}
.y36_c01394{bottom:910.434667pt;}
.y35_c01394{bottom:910.976000pt;}
.y34_c01394{bottom:911.521333pt;}
.y33_c01394{bottom:939.190667pt;}
.y32_c01394{bottom:939.457333pt;}
.y31_c01394{bottom:939.732000pt;}
.y30_c01394{bottom:939.930667pt;}
.y2f_c01394{bottom:940.417333pt;}
.y2e_c01394{bottom:940.602667pt;}
.y2d_c01394{bottom:941.009333pt;}
.y2c_c01394{bottom:941.208000pt;}
.y2b_c01394{bottom:941.417333pt;}
.y2a_c01394{bottom:941.970667pt;}
.y29_c01394{bottom:942.300000pt;}
.y28_c01394{bottom:942.509333pt;}
.y27_c01394{bottom:942.708000pt;}
.y26_c01394{bottom:943.200000pt;}
.y25_c01394{bottom:970.422667pt;}
.y24_c01394{bottom:970.602667pt;}
.y23_c01394{bottom:970.954667pt;}
.y22_c01394{bottom:971.121333pt;}
.y21_c01394{bottom:971.474667pt;}
.y20_c01394{bottom:971.654667pt;}
.y1f_c01394{bottom:971.878667pt;}
.y1e_c01394{bottom:972.402667pt;}
.y1d_c01394{bottom:972.641333pt;}
.y1c_c01394{bottom:973.216000pt;}
.y1b_c01394{bottom:973.626667pt;}
.y1a_c01394{bottom:973.920000pt;}
.y19_c01394{bottom:1001.345333pt;}
.y18_c01394{bottom:1002.122667pt;}
.y17_c01394{bottom:1002.357333pt;}
.y16_c01394{bottom:1002.502667pt;}
.y15_c01394{bottom:1002.744000pt;}
.y14_c01394{bottom:1003.676000pt;}
.y13_c01394{bottom:1003.912000pt;}
.y12_c01394{bottom:1004.452000pt;}
.y11_c01394{bottom:1004.844000pt;}
.y10_c01394{bottom:1005.228000pt;}
.yf_c01394{bottom:1005.846667pt;}
.ye_c01394{bottom:1006.080000pt;}
.yd_c01394{bottom:1034.416000pt;}
.yc_c01394{bottom:1034.614667pt;}
.yb_c01394{bottom:1035.005333pt;}
.ya_c01394{bottom:1035.145333pt;}
.y9_c01394{bottom:1035.242667pt;}
.y8_c01394{bottom:1035.677333pt;}
.y7_c01394{bottom:1035.826667pt;}
.y6_c01394{bottom:1036.117333pt;}
.y5_c01394{bottom:1036.361333pt;}
.y4_c01394{bottom:1036.501333pt;}
.y3_c01394{bottom:1036.794667pt;}
.y2_c01394{bottom:1037.040000pt;}
.y1_c01394{bottom:1076.769333pt;}
.h7_c01394{height:48.001536pt;}
.h5_c01394{height:64.000000pt;}
.h4_c01394{height:69.333333pt;}
.h3_c01394{height:74.666667pt;}
.h2_c01394{height:85.333333pt;}
.h6_c01394{height:117.333333pt;}
.h1_c01394{height:1111.333333pt;}
.h0_c01394{height:1111.440000pt;}
.w0_c01394{width:781.200000pt;}
.w1_c01394{width:781.333333pt;}
.x0_c01394{left:0.000000pt;}
.x76_c01394{left:124.214667pt;}
.x43_c01394{left:125.216000pt;}
.x22_c01394{left:126.617333pt;}
.x3_c01394{left:127.617333pt;}
.x5f_c01394{left:144.166667pt;}
.x3b_c01394{left:155.666667pt;}
.xf_c01394{left:156.836000pt;}
.x82_c01394{left:162.378667pt;}
.x32_c01394{left:165.020000pt;}
.x68_c01394{left:173.678667pt;}
.x60_c01394{left:174.624000pt;}
.x4_c01394{left:176.570667pt;}
.x5a_c01394{left:183.734667pt;}
.x3c_c01394{left:193.828000pt;}
.x23_c01394{left:196.933333pt;}
.x7b_c01394{left:201.968000pt;}
.x2d_c01394{left:204.374667pt;}
.x6e_c01394{left:211.800000pt;}
.x4a_c01394{left:212.796000pt;}
.x77_c01394{left:221.324000pt;}
.x24_c01394{left:225.252000pt;}
.x7c_c01394{left:230.284000pt;}
.x69_c01394{left:231.281333pt;}
.x10_c01394{left:234.124000pt;}
.x5_c01394{left:235.345333pt;}
.x52_c01394{left:241.584000pt;}
.x33_c01394{left:242.801333pt;}
.x1a_c01394{left:244.956000pt;}
.x3d_c01394{left:252.630667pt;}
.x25_c01394{left:255.250667pt;}
.x6_c01394{left:263.448000pt;}
.x53_c01394{left:270.384000pt;}
.x61_c01394{left:280.964000pt;}
.x11_c01394{left:282.114667pt;}
.x7d_c01394{left:288.373333pt;}
.x34_c01394{left:291.257333pt;}
.x83_c01394{left:295.820000pt;}
.x4b_c01394{left:300.420000pt;}
.x26_c01394{left:302.288000pt;}
.x6a_c01394{left:309.042667pt;}
.x62_c01394{left:310.230667pt;}
.x7_c01394{left:312.173333pt;}
.x6f_c01394{left:318.368000pt;}
.x4c_c01394{left:320.080000pt;}
.x3e_c01394{left:330.141333pt;}
.x12_c01394{left:331.081333pt;}
.x84_c01394{left:337.106667pt;}
.x1_c01394{left:340.080000pt;}
.x70_c01394{left:347.888000pt;}
.x54_c01394{left:348.893333pt;}
.x78_c01394{left:357.494667pt;}
.x35_c01394{left:359.184000pt;}
.x2_c01394{left:361.200000pt;}
.x85_c01394{left:367.352000pt;}
.x8_c01394{left:370.249333pt;}
.x5b_c01394{left:376.700000pt;}
.x71_c01394{left:377.646667pt;}
.x1b_c01394{left:380.561333pt;}
.x86_c01394{left:385.589333pt;}
.x3f_c01394{left:387.753333pt;}
.x36_c01394{left:388.944000pt;}
.x13_c01394{left:398.525333pt;}
.x9_c01394{left:400.008000pt;}
.x7e_c01394{left:405.497333pt;}
.x44_c01394{left:407.202667pt;}
.x27_c01394{left:411.242667pt;}
.x87_c01394{left:414.861333pt;}
.x6b_c01394{left:416.081333pt;}
.x40_c01394{left:417.746667pt;}
.x55_c01394{left:426.148000pt;}
.x14_c01394{left:428.044000pt;}
.x45_c01394{left:436.720000pt;}
.x28_c01394{left:439.561333pt;}
.x72_c01394{left:454.468000pt;}
.x4d_c01394{left:455.702667pt;}
.x37_c01394{left:456.641333pt;}
.x63_c01394{left:464.081333pt;}
.x5c_c01394{left:465.012000pt;}
.x1c_c01394{left:467.932000pt;}
.x73_c01394{left:472.920000pt;}
.x4e_c01394{left:474.894667pt;}
.x7f_c01394{left:482.532000pt;}
.x2e_c01394{left:485.184000pt;}
.xa_c01394{left:486.902667pt;}
.x38_c01394{left:495.256000pt;}
.x29_c01394{left:497.638667pt;}
.x1d_c01394{left:505.353333pt;}
.xb_c01394{left:506.326667pt;}
.x80_c01394{left:512.290667pt;}
.x4f_c01394{left:523.116000pt;}
.x2a_c01394{left:524.080000pt;}
.x41_c01394{left:525.261333pt;}
.x6c_c01394{left:532.241333pt;}
.xc_c01394{left:534.406667pt;}
.x1e_c01394{left:535.353333pt;}
.x46_c01394{left:542.814667pt;}
.x15_c01394{left:544.461333pt;}
.x5d_c01394{left:561.724000pt;}
.x39_c01394{left:563.652000pt;}
.x79_c01394{left:570.602667pt;}
.x16_c01394{left:574.676000pt;}
.x2f_c01394{left:582.400000pt;}
.x64_c01394{left:591.040000pt;}
.x17_c01394{left:592.917333pt;}
.x1f_c01394{left:594.172000pt;}
.x7a_c01394{left:600.124000pt;}
.x47_c01394{left:601.594667pt;}
.x65_c01394{left:609.997333pt;}
.xd_c01394{left:612.421333pt;}
.x18_c01394{left:622.201333pt;}
.x56_c01394{left:629.682667pt;}
.x30_c01394{left:631.341333pt;}
.x6d_c01394{left:638.800000pt;}
.x66_c01394{left:640.702667pt;}
.x57_c01394{left:648.881333pt;}
.xe_c01394{left:652.249333pt;}
.x74_c01394{left:658.684000pt;}
.x31_c01394{left:660.140000pt;}
.x2b_c01394{left:661.310667pt;}
.x50_c01394{left:668.574667pt;}
.x5e_c01394{left:677.892000pt;}
.x58_c01394{left:679.362667pt;}
.x20_c01394{left:680.561333pt;}
.x42_c01394{left:688.964000pt;}
.x3a_c01394{left:690.634667pt;}
.x48_c01394{left:698.320000pt;}
.x2c_c01394{left:699.497333pt;}
.x75_c01394{left:706.446667pt;}
.x67_c01394{left:707.906667pt;}
.x21_c01394{left:710.556000pt;}
.x59_c01394{left:717.762667pt;}
.x19_c01394{left:719.408000pt;}
.x51_c01394{left:727.380000pt;}
.x49_c01394{left:728.578667pt;}
.x81_c01394{left:734.048000pt;}
}





/* 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_c01395 {
    display:none;
  }
  .loading-indicator_c01395.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01395 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_c01395 { 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_c01395" -> "#page-container .classname_c01395")
 */
.pf_c01395 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01395 { /* 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_c01395.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01395 { /* 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_c01395 { /* 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_c01395 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01395 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01395 {overflow:visible;}
  }
}
.c_c01395 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01395 { /* 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_c01395:after { /* webkit #35443 */
  content: '';
}
.t_c01395:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01395 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 */
}
.__c01395 { /* 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_c01395 { /* info for Javascript */
  display:none;
}
.l_c01395 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01395 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01395 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01395: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_c01395 {
    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_c01395.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01395.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_c01395 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01395{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01395;src:url('chunks/assets/font_92d6bb63cbc780ceff7db400.woff2')format("woff");}.ff1_c01395{font-family:ff1_c01395;line-height:1.000000;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;}
.m4_c01395{transform:matrix(0.082400,-0.002722,0.008254,0.249864,0,0);-ms-transform:matrix(0.082400,-0.002722,0.008254,0.249864,0,0);-webkit-transform:matrix(0.082400,-0.002722,0.008254,0.249864,0,0);}
.m3_c01395{transform:matrix(0.089646,-0.002961,0.008254,0.249864,0,0);-ms-transform:matrix(0.089646,-0.002961,0.008254,0.249864,0,0);-webkit-transform:matrix(0.089646,-0.002961,0.008254,0.249864,0,0);}
.m6_c01395{transform:matrix(0.089756,-0.002965,0.008254,0.249864,0,0);-ms-transform:matrix(0.089756,-0.002965,0.008254,0.249864,0,0);-webkit-transform:matrix(0.089756,-0.002965,0.008254,0.249864,0,0);}
.m5_c01395{transform:matrix(0.097022,-0.003205,0.008254,0.249864,0,0);-ms-transform:matrix(0.097022,-0.003205,0.008254,0.249864,0,0);-webkit-transform:matrix(0.097022,-0.003205,0.008254,0.249864,0,0);}
.m0_c01395{transform:matrix(0.101700,-0.003359,0.008254,0.249864,0,0);-ms-transform:matrix(0.101700,-0.003359,0.008254,0.249864,0,0);-webkit-transform:matrix(0.101700,-0.003359,0.008254,0.249864,0,0);}
.m1_c01395{transform:matrix(0.107107,-0.003538,0.008254,0.249864,0,0);-ms-transform:matrix(0.107107,-0.003538,0.008254,0.249864,0,0);-webkit-transform:matrix(0.107107,-0.003538,0.008254,0.249864,0,0);}
.m2_c01395{transform:matrix(0.131004,-0.004327,0.008254,0.249864,0,0);-ms-transform:matrix(0.131004,-0.004327,0.008254,0.249864,0,0);-webkit-transform:matrix(0.131004,-0.004327,0.008254,0.249864,0,0);}
.m7_c01395{transform:matrix(0.136765,-0.004518,0.008254,0.249864,0,0);-ms-transform:matrix(0.136765,-0.004518,0.008254,0.249864,0,0);-webkit-transform:matrix(0.136765,-0.004518,0.008254,0.249864,0,0);}
.v0_c01395{vertical-align:0.000000px;}
.ls0_c01395{letter-spacing:0.000000px;}
.sc__c01395{text-shadow:none;}
.sc0_c01395{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__c01395{-webkit-text-stroke:0px transparent;}
.sc0_c01395{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01395{word-spacing:0.000000px;}
.fc0_c01395{color:transparent;}
.fs0_c01395{font-size:233.893506px;}
.y0_c01395{bottom:0.000000px;}
.y1_c01395{bottom:535.182000px;}
.y2_c01395{bottom:537.146704px;}
.y3_c01395{bottom:538.356039px;}
.y4_c01395{bottom:539.249019px;}
.y5_c01395{bottom:540.359452px;}
.y6_c01395{bottom:541.596952px;}
.y7_c01395{bottom:544.159567px;}
.y8_c01395{bottom:546.645556px;}
.h2_c01395{height:233.893506px;}
.h1_c01395{height:1250.250000px;}
.h0_c01395{height:1250.370000px;}
.w0_c01395{width:878.850000px;}
.w1_c01395{width:879.000000px;}
.x0_c01395{left:0.000000px;}
.x1_c01395{left:349.834500px;}
.x2_c01395{left:409.311463px;}
.x3_c01395{left:445.921317px;}
.x4_c01395{left:472.954257px;}
.x5_c01395{left:506.570107px;}
.x6_c01395{left:544.032608px;}
.x7_c01395{left:621.609952px;}
.x8_c01395{left:696.867620px;}
@media print{
.v0_c01395{vertical-align:0.000000pt;}
.ls0_c01395{letter-spacing:0.000000pt;}
.ws0_c01395{word-spacing:0.000000pt;}
.fs0_c01395{font-size:207.905338pt;}
.y0_c01395{bottom:0.000000pt;}
.y1_c01395{bottom:475.717333pt;}
.y2_c01395{bottom:477.463737pt;}
.y3_c01395{bottom:478.538701pt;}
.y4_c01395{bottom:479.332461pt;}
.y5_c01395{bottom:480.319513pt;}
.y6_c01395{bottom:481.419513pt;}
.y7_c01395{bottom:483.697393pt;}
.y8_c01395{bottom:485.907161pt;}
.h2_c01395{height:207.905338pt;}
.h1_c01395{height:1111.333333pt;}
.h0_c01395{height:1111.440000pt;}
.w0_c01395{width:781.200000pt;}
.w1_c01395{width:781.333333pt;}
.x0_c01395{left:0.000000pt;}
.x1_c01395{left:310.964000pt;}
.x2_c01395{left:363.832412pt;}
.x3_c01395{left:396.374504pt;}
.x4_c01395{left:420.403784pt;}
.x5_c01395{left:450.284540pt;}
.x6_c01395{left:483.584540pt;}
.x7_c01395{left:552.542180pt;}
.x8_c01395{left:619.437884pt;}
}





/* 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_c01396 {
    display:none;
  }
  .loading-indicator_c01396.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01396 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_c01396 { 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_c01396" -> "#page-container .classname_c01396")
 */
.pf_c01396 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01396 { /* 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_c01396.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01396 { /* 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_c01396 { /* 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_c01396 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01396 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01396 {overflow:visible;}
  }
}
.c_c01396 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01396 { /* 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_c01396:after { /* webkit #35443 */
  content: '';
}
.t_c01396:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01396 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 */
}
.__c01396 { /* 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_c01396 { /* info for Javascript */
  display:none;
}
.l_c01396 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01396 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01396 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01396: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_c01396 {
    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_c01396.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01396.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_c01396 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01396{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01396;src:url('chunks/assets/font_c605e72f209fc835e906f064.woff2')format("woff");}.ff1_c01396{font-family:ff1_c01396;line-height:1.000000;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;}
.m12c_c01396{transform:matrix(0.016769,0.000168,-0.002500,0.249988,0,0);-ms-transform:matrix(0.016769,0.000168,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.016769,0.000168,-0.002500,0.249988,0,0);}
.m85_c01396{transform:matrix(0.027034,0.000243,-0.002250,0.249990,0,0);-ms-transform:matrix(0.027034,0.000243,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.027034,0.000243,-0.002250,0.249990,0,0);}
.m5_c01396{transform:matrix(0.087545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087545,0.000000,0.000000,0.250000,0,0);}
.m3_c01396{transform:matrix(0.109220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109220,0.000000,0.000000,0.250000,0,0);}
.m114_c01396{transform:matrix(0.127247,0.000891,-0.001750,0.249994,0,0);-ms-transform:matrix(0.127247,0.000891,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.127247,0.000891,-0.001750,0.249994,0,0);}
.m7b_c01396{transform:matrix(0.153444,0.001381,-0.002250,0.249990,0,0);-ms-transform:matrix(0.153444,0.001381,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.153444,0.001381,-0.002250,0.249990,0,0);}
.m27_c01396{transform:matrix(0.163383,0.001470,-0.002250,0.249990,0,0);-ms-transform:matrix(0.163383,0.001470,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.163383,0.001470,-0.002250,0.249990,0,0);}
.m74_c01396{transform:matrix(0.167093,0.001504,-0.002250,0.249990,0,0);-ms-transform:matrix(0.167093,0.001504,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.167093,0.001504,-0.002250,0.249990,0,0);}
.m7d_c01396{transform:matrix(0.167748,0.001510,-0.002250,0.249990,0,0);-ms-transform:matrix(0.167748,0.001510,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.167748,0.001510,-0.002250,0.249990,0,0);}
.m0_c01396{transform:matrix(0.168540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168540,0.000000,0.000000,0.250000,0,0);}
.m13c_c01396{transform:matrix(0.169542,0.001695,-0.002500,0.249988,0,0);-ms-transform:matrix(0.169542,0.001695,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.169542,0.001695,-0.002500,0.249988,0,0);}
.m7a_c01396{transform:matrix(0.178758,0.001609,-0.002250,0.249990,0,0);-ms-transform:matrix(0.178758,0.001609,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.178758,0.001609,-0.002250,0.249990,0,0);}
.m75_c01396{transform:matrix(0.179298,0.001614,-0.002250,0.249990,0,0);-ms-transform:matrix(0.179298,0.001614,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.179298,0.001614,-0.002250,0.249990,0,0);}
.m2_c01396{transform:matrix(0.183175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183175,0.000000,0.000000,0.250000,0,0);}
.m10a_c01396{transform:matrix(0.184950,0.001295,-0.001750,0.249994,0,0);-ms-transform:matrix(0.184950,0.001295,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.184950,0.001295,-0.001750,0.249994,0,0);}
.m110_c01396{transform:matrix(0.186065,0.001302,-0.001750,0.249994,0,0);-ms-transform:matrix(0.186065,0.001302,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.186065,0.001302,-0.001750,0.249994,0,0);}
.m10d_c01396{transform:matrix(0.186425,0.001305,-0.001750,0.249994,0,0);-ms-transform:matrix(0.186425,0.001305,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.186425,0.001305,-0.001750,0.249994,0,0);}
.m76_c01396{transform:matrix(0.186977,0.001683,-0.002250,0.249990,0,0);-ms-transform:matrix(0.186977,0.001683,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.186977,0.001683,-0.002250,0.249990,0,0);}
.m11e_c01396{transform:matrix(0.187870,0.001315,-0.001750,0.249994,0,0);-ms-transform:matrix(0.187870,0.001315,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.187870,0.001315,-0.001750,0.249994,0,0);}
.m78_c01396{transform:matrix(0.188007,0.001692,-0.002250,0.249990,0,0);-ms-transform:matrix(0.188007,0.001692,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.188007,0.001692,-0.002250,0.249990,0,0);}
.m6c_c01396{transform:matrix(0.192637,0.001734,-0.002250,0.249990,0,0);-ms-transform:matrix(0.192637,0.001734,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.192637,0.001734,-0.002250,0.249990,0,0);}
.m72_c01396{transform:matrix(0.193572,0.001742,-0.002250,0.249990,0,0);-ms-transform:matrix(0.193572,0.001742,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.193572,0.001742,-0.002250,0.249990,0,0);}
.m109_c01396{transform:matrix(0.193575,0.001355,-0.001750,0.249994,0,0);-ms-transform:matrix(0.193575,0.001355,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.193575,0.001355,-0.001750,0.249994,0,0);}
.m61_c01396{transform:matrix(0.195497,0.001759,-0.002250,0.249990,0,0);-ms-transform:matrix(0.195497,0.001759,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.195497,0.001759,-0.002250,0.249990,0,0);}
.mcf_c01396{transform:matrix(0.197244,0.001578,-0.002000,0.249992,0,0);-ms-transform:matrix(0.197244,0.001578,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.197244,0.001578,-0.002000,0.249992,0,0);}
.ma6_c01396{transform:matrix(0.197904,0.001583,-0.002000,0.249992,0,0);-ms-transform:matrix(0.197904,0.001583,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.197904,0.001583,-0.002000,0.249992,0,0);}
.m5a_c01396{transform:matrix(0.200872,0.001808,-0.002250,0.249990,0,0);-ms-transform:matrix(0.200872,0.001808,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.200872,0.001808,-0.002250,0.249990,0,0);}
.m25_c01396{transform:matrix(0.200892,0.001808,-0.002250,0.249990,0,0);-ms-transform:matrix(0.200892,0.001808,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.200892,0.001808,-0.002250,0.249990,0,0);}
.m5d_c01396{transform:matrix(0.201487,0.001813,-0.002250,0.249990,0,0);-ms-transform:matrix(0.201487,0.001813,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.201487,0.001813,-0.002250,0.249990,0,0);}
.m62_c01396{transform:matrix(0.202067,0.001819,-0.002250,0.249990,0,0);-ms-transform:matrix(0.202067,0.001819,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.202067,0.001819,-0.002250,0.249990,0,0);}
.m77_c01396{transform:matrix(0.202127,0.001819,-0.002250,0.249990,0,0);-ms-transform:matrix(0.202127,0.001819,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.202127,0.001819,-0.002250,0.249990,0,0);}
.mb1_c01396{transform:matrix(0.202149,0.001617,-0.002000,0.249992,0,0);-ms-transform:matrix(0.202149,0.001617,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.202149,0.001617,-0.002000,0.249992,0,0);}
.m79_c01396{transform:matrix(0.202237,0.001820,-0.002250,0.249990,0,0);-ms-transform:matrix(0.202237,0.001820,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.202237,0.001820,-0.002250,0.249990,0,0);}
.m68_c01396{transform:matrix(0.203282,0.001830,-0.002250,0.249990,0,0);-ms-transform:matrix(0.203282,0.001830,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.203282,0.001830,-0.002250,0.249990,0,0);}
.m6a_c01396{transform:matrix(0.203292,0.001830,-0.002250,0.249990,0,0);-ms-transform:matrix(0.203292,0.001830,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.203292,0.001830,-0.002250,0.249990,0,0);}
.ma9_c01396{transform:matrix(0.203293,0.001626,-0.002000,0.249992,0,0);-ms-transform:matrix(0.203293,0.001626,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.203293,0.001626,-0.002000,0.249992,0,0);}
.mf3_c01396{transform:matrix(0.204340,0.001430,-0.001750,0.249994,0,0);-ms-transform:matrix(0.204340,0.001430,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.204340,0.001430,-0.001750,0.249994,0,0);}
.m14b_c01396{transform:matrix(0.204419,0.004088,-0.004999,0.249950,0,0);-ms-transform:matrix(0.204419,0.004088,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.204419,0.004088,-0.004999,0.249950,0,0);}
.ma2_c01396{transform:matrix(0.204453,0.001636,-0.002000,0.249992,0,0);-ms-transform:matrix(0.204453,0.001636,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.204453,0.001636,-0.002000,0.249992,0,0);}
.m10f_c01396{transform:matrix(0.205120,0.001436,-0.001750,0.249994,0,0);-ms-transform:matrix(0.205120,0.001436,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.205120,0.001436,-0.001750,0.249994,0,0);}
.m73_c01396{transform:matrix(0.205492,0.001849,-0.002250,0.249990,0,0);-ms-transform:matrix(0.205492,0.001849,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.205492,0.001849,-0.002250,0.249990,0,0);}
.med_c01396{transform:matrix(0.206418,0.001651,-0.002000,0.249992,0,0);-ms-transform:matrix(0.206418,0.001651,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.206418,0.001651,-0.002000,0.249992,0,0);}
.m60_c01396{transform:matrix(0.206422,0.001858,-0.002250,0.249990,0,0);-ms-transform:matrix(0.206422,0.001858,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.206422,0.001858,-0.002250,0.249990,0,0);}
.m108_c01396{transform:matrix(0.206425,0.001445,-0.001750,0.249994,0,0);-ms-transform:matrix(0.206425,0.001445,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.206425,0.001445,-0.001750,0.249994,0,0);}
.m7c_c01396{transform:matrix(0.207672,0.001869,-0.002250,0.249990,0,0);-ms-transform:matrix(0.207672,0.001869,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.207672,0.001869,-0.002250,0.249990,0,0);}
.m112_c01396{transform:matrix(0.208060,0.001456,-0.001750,0.249994,0,0);-ms-transform:matrix(0.208060,0.001456,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.208060,0.001456,-0.001750,0.249994,0,0);}
.mb5_c01396{transform:matrix(0.208598,0.001669,-0.002000,0.249992,0,0);-ms-transform:matrix(0.208598,0.001669,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.208598,0.001669,-0.002000,0.249992,0,0);}
.m70_c01396{transform:matrix(0.209971,0.001890,-0.002250,0.249990,0,0);-ms-transform:matrix(0.209971,0.001890,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.209971,0.001890,-0.002250,0.249990,0,0);}
.m106_c01396{transform:matrix(0.210400,0.001473,-0.001750,0.249994,0,0);-ms-transform:matrix(0.210400,0.001473,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.210400,0.001473,-0.001750,0.249994,0,0);}
.m8c_c01396{transform:matrix(0.210613,0.001685,-0.002000,0.249992,0,0);-ms-transform:matrix(0.210613,0.001685,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.210613,0.001685,-0.002000,0.249992,0,0);}
.m35_c01396{transform:matrix(0.211621,0.001905,-0.002250,0.249990,0,0);-ms-transform:matrix(0.211621,0.001905,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.211621,0.001905,-0.002250,0.249990,0,0);}
.m18_c01396{transform:matrix(0.211861,0.001907,-0.002250,0.249990,0,0);-ms-transform:matrix(0.211861,0.001907,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.211861,0.001907,-0.002250,0.249990,0,0);}
.m64_c01396{transform:matrix(0.212826,0.001915,-0.002250,0.249990,0,0);-ms-transform:matrix(0.212826,0.001915,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.212826,0.001915,-0.002250,0.249990,0,0);}
.ma4_c01396{transform:matrix(0.213133,0.001705,-0.002000,0.249992,0,0);-ms-transform:matrix(0.213133,0.001705,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.213133,0.001705,-0.002000,0.249992,0,0);}
.m11a_c01396{transform:matrix(0.213630,0.001495,-0.001750,0.249994,0,0);-ms-transform:matrix(0.213630,0.001495,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.213630,0.001495,-0.001750,0.249994,0,0);}
.m8e_c01396{transform:matrix(0.213798,0.001710,-0.002000,0.249992,0,0);-ms-transform:matrix(0.213798,0.001710,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.213798,0.001710,-0.002000,0.249992,0,0);}
.m7e_c01396{transform:matrix(0.214311,0.001929,-0.002250,0.249990,0,0);-ms-transform:matrix(0.214311,0.001929,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.214311,0.001929,-0.002250,0.249990,0,0);}
.maa_c01396{transform:matrix(0.214548,0.001716,-0.002000,0.249992,0,0);-ms-transform:matrix(0.214548,0.001716,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.214548,0.001716,-0.002000,0.249992,0,0);}
.mf2_c01396{transform:matrix(0.214695,0.001503,-0.001750,0.249994,0,0);-ms-transform:matrix(0.214695,0.001503,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.214695,0.001503,-0.001750,0.249994,0,0);}
.mdb_c01396{transform:matrix(0.214923,0.001719,-0.002000,0.249992,0,0);-ms-transform:matrix(0.214923,0.001719,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.214923,0.001719,-0.002000,0.249992,0,0);}
.mcd_c01396{transform:matrix(0.215053,0.001720,-0.002000,0.249992,0,0);-ms-transform:matrix(0.215053,0.001720,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.215053,0.001720,-0.002000,0.249992,0,0);}
.m116_c01396{transform:matrix(0.215055,0.001505,-0.001750,0.249994,0,0);-ms-transform:matrix(0.215055,0.001505,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.215055,0.001505,-0.001750,0.249994,0,0);}
.m10e_c01396{transform:matrix(0.215145,0.001506,-0.001750,0.249994,0,0);-ms-transform:matrix(0.215145,0.001506,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.215145,0.001506,-0.001750,0.249994,0,0);}
.m105_c01396{transform:matrix(0.215480,0.001508,-0.001750,0.249994,0,0);-ms-transform:matrix(0.215480,0.001508,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.215480,0.001508,-0.001750,0.249994,0,0);}
.mb4_c01396{transform:matrix(0.216878,0.001735,-0.002000,0.249992,0,0);-ms-transform:matrix(0.216878,0.001735,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.216878,0.001735,-0.002000,0.249992,0,0);}
.m31_c01396{transform:matrix(0.216986,0.001953,-0.002250,0.249990,0,0);-ms-transform:matrix(0.216986,0.001953,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.216986,0.001953,-0.002250,0.249990,0,0);}
.m10c_c01396{transform:matrix(0.217130,0.001520,-0.001750,0.249994,0,0);-ms-transform:matrix(0.217130,0.001520,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.217130,0.001520,-0.001750,0.249994,0,0);}
.m6d_c01396{transform:matrix(0.217596,0.001958,-0.002250,0.249990,0,0);-ms-transform:matrix(0.217596,0.001958,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.217596,0.001958,-0.002250,0.249990,0,0);}
.m11f_c01396{transform:matrix(0.217615,0.001523,-0.001750,0.249994,0,0);-ms-transform:matrix(0.217615,0.001523,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.217615,0.001523,-0.001750,0.249994,0,0);}
.m14_c01396{transform:matrix(0.217846,0.001961,-0.002250,0.249990,0,0);-ms-transform:matrix(0.217846,0.001961,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.217846,0.001961,-0.002250,0.249990,0,0);}
.mb6_c01396{transform:matrix(0.217853,0.001743,-0.002000,0.249992,0,0);-ms-transform:matrix(0.217853,0.001743,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.217853,0.001743,-0.002000,0.249992,0,0);}
.mb8_c01396{transform:matrix(0.218083,0.001745,-0.002000,0.249992,0,0);-ms-transform:matrix(0.218083,0.001745,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.218083,0.001745,-0.002000,0.249992,0,0);}
.m11_c01396{transform:matrix(0.218246,0.001964,-0.002250,0.249990,0,0);-ms-transform:matrix(0.218246,0.001964,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.218246,0.001964,-0.002250,0.249990,0,0);}
.mde_c01396{transform:matrix(0.218248,0.001746,-0.002000,0.249992,0,0);-ms-transform:matrix(0.218248,0.001746,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.218248,0.001746,-0.002000,0.249992,0,0);}
.m11c_c01396{transform:matrix(0.218620,0.001530,-0.001750,0.249994,0,0);-ms-transform:matrix(0.218620,0.001530,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.218620,0.001530,-0.001750,0.249994,0,0);}
.ma7_c01396{transform:matrix(0.218793,0.001750,-0.002000,0.249992,0,0);-ms-transform:matrix(0.218793,0.001750,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.218793,0.001750,-0.002000,0.249992,0,0);}
.mb7_c01396{transform:matrix(0.218868,0.001751,-0.002000,0.249992,0,0);-ms-transform:matrix(0.218868,0.001751,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.218868,0.001751,-0.002000,0.249992,0,0);}
.mf5_c01396{transform:matrix(0.218935,0.001533,-0.001750,0.249994,0,0);-ms-transform:matrix(0.218935,0.001533,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.218935,0.001533,-0.001750,0.249994,0,0);}
.m5f_c01396{transform:matrix(0.219201,0.001973,-0.002250,0.249990,0,0);-ms-transform:matrix(0.219201,0.001973,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.219201,0.001973,-0.002250,0.249990,0,0);}
.m2f_c01396{transform:matrix(0.219306,0.001974,-0.002250,0.249990,0,0);-ms-transform:matrix(0.219306,0.001974,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.219306,0.001974,-0.002250,0.249990,0,0);}
.m6b_c01396{transform:matrix(0.219596,0.001976,-0.002250,0.249990,0,0);-ms-transform:matrix(0.219596,0.001976,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.219596,0.001976,-0.002250,0.249990,0,0);}
.m11b_c01396{transform:matrix(0.220185,0.001541,-0.001750,0.249994,0,0);-ms-transform:matrix(0.220185,0.001541,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.220185,0.001541,-0.001750,0.249994,0,0);}
.m38_c01396{transform:matrix(0.220436,0.001984,-0.002250,0.249990,0,0);-ms-transform:matrix(0.220436,0.001984,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.220436,0.001984,-0.002250,0.249990,0,0);}
.maf_c01396{transform:matrix(0.220548,0.001764,-0.002000,0.249992,0,0);-ms-transform:matrix(0.220548,0.001764,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.220548,0.001764,-0.002000,0.249992,0,0);}
.me8_c01396{transform:matrix(0.220723,0.001766,-0.002000,0.249992,0,0);-ms-transform:matrix(0.220723,0.001766,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.220723,0.001766,-0.002000,0.249992,0,0);}
.m29_c01396{transform:matrix(0.220881,0.001988,-0.002250,0.249990,0,0);-ms-transform:matrix(0.220881,0.001988,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.220881,0.001988,-0.002250,0.249990,0,0);}
.m53_c01396{transform:matrix(0.221366,0.001992,-0.002250,0.249990,0,0);-ms-transform:matrix(0.221366,0.001992,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.221366,0.001992,-0.002250,0.249990,0,0);}
.m9f_c01396{transform:matrix(0.221953,0.001776,-0.002000,0.249992,0,0);-ms-transform:matrix(0.221953,0.001776,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.221953,0.001776,-0.002000,0.249992,0,0);}
.m5c_c01396{transform:matrix(0.222436,0.002002,-0.002250,0.249990,0,0);-ms-transform:matrix(0.222436,0.002002,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.222436,0.002002,-0.002250,0.249990,0,0);}
.md9_c01396{transform:matrix(0.222508,0.001780,-0.002000,0.249992,0,0);-ms-transform:matrix(0.222508,0.001780,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.222508,0.001780,-0.002000,0.249992,0,0);}
.ma8_c01396{transform:matrix(0.222643,0.001781,-0.002000,0.249992,0,0);-ms-transform:matrix(0.222643,0.001781,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.222643,0.001781,-0.002000,0.249992,0,0);}
.mf_c01396{transform:matrix(0.222726,0.002005,-0.002250,0.249990,0,0);-ms-transform:matrix(0.222726,0.002005,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.222726,0.002005,-0.002250,0.249990,0,0);}
.me3_c01396{transform:matrix(0.222728,0.001782,-0.002000,0.249992,0,0);-ms-transform:matrix(0.222728,0.001782,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.222728,0.001782,-0.002000,0.249992,0,0);}
.m113_c01396{transform:matrix(0.222805,0.001560,-0.001750,0.249994,0,0);-ms-transform:matrix(0.222805,0.001560,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.222805,0.001560,-0.001750,0.249994,0,0);}
.m111_c01396{transform:matrix(0.222875,0.001560,-0.001750,0.249994,0,0);-ms-transform:matrix(0.222875,0.001560,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.222875,0.001560,-0.001750,0.249994,0,0);}
.m148_c01396{transform:matrix(0.222985,0.004460,-0.004999,0.249950,0,0);-ms-transform:matrix(0.222985,0.004460,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.222985,0.004460,-0.004999,0.249950,0,0);}
.m10_c01396{transform:matrix(0.223876,0.002015,-0.002250,0.249990,0,0);-ms-transform:matrix(0.223876,0.002015,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.223876,0.002015,-0.002250,0.249990,0,0);}
.me6_c01396{transform:matrix(0.223878,0.001791,-0.002000,0.249992,0,0);-ms-transform:matrix(0.223878,0.001791,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.223878,0.001791,-0.002000,0.249992,0,0);}
.m81_c01396{transform:matrix(0.224061,0.002017,-0.002250,0.249990,0,0);-ms-transform:matrix(0.224061,0.002017,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.224061,0.002017,-0.002250,0.249990,0,0);}
.me1_c01396{transform:matrix(0.224353,0.001795,-0.002000,0.249992,0,0);-ms-transform:matrix(0.224353,0.001795,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.224353,0.001795,-0.002000,0.249992,0,0);}
.me2_c01396{transform:matrix(0.224418,0.001795,-0.002000,0.249992,0,0);-ms-transform:matrix(0.224418,0.001795,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.224418,0.001795,-0.002000,0.249992,0,0);}
.m5e_c01396{transform:matrix(0.224426,0.002020,-0.002250,0.249990,0,0);-ms-transform:matrix(0.224426,0.002020,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.224426,0.002020,-0.002250,0.249990,0,0);}
.m14c_c01396{transform:matrix(0.224635,0.004493,-0.004999,0.249950,0,0);-ms-transform:matrix(0.224635,0.004493,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.224635,0.004493,-0.004999,0.249950,0,0);}
.ma3_c01396{transform:matrix(0.224648,0.001797,-0.002000,0.249992,0,0);-ms-transform:matrix(0.224648,0.001797,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.224648,0.001797,-0.002000,0.249992,0,0);}
.m5b_c01396{transform:matrix(0.224831,0.002023,-0.002250,0.249990,0,0);-ms-transform:matrix(0.224831,0.002023,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.224831,0.002023,-0.002250,0.249990,0,0);}
.m104_c01396{transform:matrix(0.224904,0.001574,-0.001750,0.249994,0,0);-ms-transform:matrix(0.224904,0.001574,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.224904,0.001574,-0.001750,0.249994,0,0);}
.m2e_c01396{transform:matrix(0.225306,0.002028,-0.002250,0.249990,0,0);-ms-transform:matrix(0.225306,0.002028,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.225306,0.002028,-0.002250,0.249990,0,0);}
.m37_c01396{transform:matrix(0.225661,0.002031,-0.002250,0.249990,0,0);-ms-transform:matrix(0.225661,0.002031,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.225661,0.002031,-0.002250,0.249990,0,0);}
.m2d_c01396{transform:matrix(0.225936,0.002033,-0.002250,0.249990,0,0);-ms-transform:matrix(0.225936,0.002033,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.225936,0.002033,-0.002250,0.249990,0,0);}
.m63_c01396{transform:matrix(0.226411,0.002038,-0.002250,0.249990,0,0);-ms-transform:matrix(0.226411,0.002038,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.226411,0.002038,-0.002250,0.249990,0,0);}
.md1_c01396{transform:matrix(0.226568,0.001813,-0.002000,0.249992,0,0);-ms-transform:matrix(0.226568,0.001813,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.226568,0.001813,-0.002000,0.249992,0,0);}
.mef_c01396{transform:matrix(0.226569,0.001586,-0.001750,0.249994,0,0);-ms-transform:matrix(0.226569,0.001586,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.226569,0.001586,-0.001750,0.249994,0,0);}
.m6e_c01396{transform:matrix(0.226771,0.002041,-0.002250,0.249990,0,0);-ms-transform:matrix(0.226771,0.002041,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.226771,0.002041,-0.002250,0.249990,0,0);}
.m149_c01396{transform:matrix(0.226820,0.004536,-0.004999,0.249950,0,0);-ms-transform:matrix(0.226820,0.004536,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.226820,0.004536,-0.004999,0.249950,0,0);}
.m8b_c01396{transform:matrix(0.227043,0.001816,-0.002000,0.249992,0,0);-ms-transform:matrix(0.227043,0.001816,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.227043,0.001816,-0.002000,0.249992,0,0);}
.m66_c01396{transform:matrix(0.227851,0.002051,-0.002250,0.249990,0,0);-ms-transform:matrix(0.227851,0.002051,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.227851,0.002051,-0.002250,0.249990,0,0);}
.m97_c01396{transform:matrix(0.228083,0.001825,-0.002000,0.249992,0,0);-ms-transform:matrix(0.228083,0.001825,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.228083,0.001825,-0.002000,0.249992,0,0);}
.m13a_c01396{transform:matrix(0.228149,0.002281,-0.002500,0.249988,0,0);-ms-transform:matrix(0.228149,0.002281,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.228149,0.002281,-0.002500,0.249988,0,0);}
.m107_c01396{transform:matrix(0.228199,0.001597,-0.001750,0.249994,0,0);-ms-transform:matrix(0.228199,0.001597,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.228199,0.001597,-0.001750,0.249994,0,0);}
.m65_c01396{transform:matrix(0.228626,0.002058,-0.002250,0.249990,0,0);-ms-transform:matrix(0.228626,0.002058,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.228626,0.002058,-0.002250,0.249990,0,0);}
.m2c_c01396{transform:matrix(0.228686,0.002058,-0.002250,0.249990,0,0);-ms-transform:matrix(0.228686,0.002058,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.228686,0.002058,-0.002250,0.249990,0,0);}
.m24_c01396{transform:matrix(0.230061,0.002071,-0.002250,0.249990,0,0);-ms-transform:matrix(0.230061,0.002071,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.230061,0.002071,-0.002250,0.249990,0,0);}
.ma0_c01396{transform:matrix(0.230168,0.001841,-0.002000,0.249992,0,0);-ms-transform:matrix(0.230168,0.001841,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.230168,0.001841,-0.002000,0.249992,0,0);}
.m13d_c01396{transform:matrix(0.230273,0.002303,-0.002500,0.249988,0,0);-ms-transform:matrix(0.230273,0.002303,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.230273,0.002303,-0.002500,0.249988,0,0);}
.m87_c01396{transform:matrix(0.230283,0.001842,-0.002000,0.249992,0,0);-ms-transform:matrix(0.230283,0.001842,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.230283,0.001842,-0.002000,0.249992,0,0);}
.m128_c01396{transform:matrix(0.230328,0.002303,-0.002500,0.249988,0,0);-ms-transform:matrix(0.230328,0.002303,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.230328,0.002303,-0.002500,0.249988,0,0);}
.m23_c01396{transform:matrix(0.230331,0.002073,-0.002250,0.249990,0,0);-ms-transform:matrix(0.230331,0.002073,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.230331,0.002073,-0.002250,0.249990,0,0);}
.mff_c01396{transform:matrix(0.230334,0.001612,-0.001750,0.249994,0,0);-ms-transform:matrix(0.230334,0.001612,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.230334,0.001612,-0.001750,0.249994,0,0);}
.m8f_c01396{transform:matrix(0.230438,0.001844,-0.002000,0.249992,0,0);-ms-transform:matrix(0.230438,0.001844,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.230438,0.001844,-0.002000,0.249992,0,0);}
.mb0_c01396{transform:matrix(0.230508,0.001844,-0.002000,0.249992,0,0);-ms-transform:matrix(0.230508,0.001844,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.230508,0.001844,-0.002000,0.249992,0,0);}
.m10b_c01396{transform:matrix(0.230714,0.001615,-0.001750,0.249994,0,0);-ms-transform:matrix(0.230714,0.001615,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.230714,0.001615,-0.001750,0.249994,0,0);}
.m3a_c01396{transform:matrix(0.230776,0.002077,-0.002250,0.249990,0,0);-ms-transform:matrix(0.230776,0.002077,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.230776,0.002077,-0.002250,0.249990,0,0);}
.mc9_c01396{transform:matrix(0.230888,0.001847,-0.002000,0.249992,0,0);-ms-transform:matrix(0.230888,0.001847,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.230888,0.001847,-0.002000,0.249992,0,0);}
.m100_c01396{transform:matrix(0.231134,0.001618,-0.001750,0.249994,0,0);-ms-transform:matrix(0.231134,0.001618,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.231134,0.001618,-0.001750,0.249994,0,0);}
.me5_c01396{transform:matrix(0.231188,0.001850,-0.002000,0.249992,0,0);-ms-transform:matrix(0.231188,0.001850,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.231188,0.001850,-0.002000,0.249992,0,0);}
.m145_c01396{transform:matrix(0.231423,0.002314,-0.002500,0.249988,0,0);-ms-transform:matrix(0.231423,0.002314,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.231423,0.002314,-0.002500,0.249988,0,0);}
.me4_c01396{transform:matrix(0.231613,0.001853,-0.002000,0.249992,0,0);-ms-transform:matrix(0.231613,0.001853,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.231613,0.001853,-0.002000,0.249992,0,0);}
.m8_c01396{transform:matrix(0.231625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231625,0.000000,0.000000,0.250000,0,0);}
.me_c01396{transform:matrix(0.231911,0.002087,-0.002250,0.249990,0,0);-ms-transform:matrix(0.231911,0.002087,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.231911,0.002087,-0.002250,0.249990,0,0);}
.m88_c01396{transform:matrix(0.232513,0.001860,-0.002000,0.249992,0,0);-ms-transform:matrix(0.232513,0.001860,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.232513,0.001860,-0.002000,0.249992,0,0);}
.mab_c01396{transform:matrix(0.232563,0.001861,-0.002000,0.249992,0,0);-ms-transform:matrix(0.232563,0.001861,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.232563,0.001861,-0.002000,0.249992,0,0);}
.m91_c01396{transform:matrix(0.232843,0.001863,-0.002000,0.249992,0,0);-ms-transform:matrix(0.232843,0.001863,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.232843,0.001863,-0.002000,0.249992,0,0);}
.m36_c01396{transform:matrix(0.232936,0.002096,-0.002250,0.249990,0,0);-ms-transform:matrix(0.232936,0.002096,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.232936,0.002096,-0.002250,0.249990,0,0);}
.mb3_c01396{transform:matrix(0.232953,0.001864,-0.002000,0.249992,0,0);-ms-transform:matrix(0.232953,0.001864,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.232953,0.001864,-0.002000,0.249992,0,0);}
.m69_c01396{transform:matrix(0.232971,0.002097,-0.002250,0.249990,0,0);-ms-transform:matrix(0.232971,0.002097,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.232971,0.002097,-0.002250,0.249990,0,0);}
.ma5_c01396{transform:matrix(0.232973,0.001864,-0.002000,0.249992,0,0);-ms-transform:matrix(0.232973,0.001864,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.232973,0.001864,-0.002000,0.249992,0,0);}
.m9d_c01396{transform:matrix(0.232978,0.001864,-0.002000,0.249992,0,0);-ms-transform:matrix(0.232978,0.001864,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.232978,0.001864,-0.002000,0.249992,0,0);}
.m147_c01396{transform:matrix(0.233063,0.004661,-0.004999,0.249950,0,0);-ms-transform:matrix(0.233063,0.004661,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.233063,0.004661,-0.004999,0.249950,0,0);}
.mac_c01396{transform:matrix(0.233218,0.001866,-0.002000,0.249992,0,0);-ms-transform:matrix(0.233218,0.001866,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.233218,0.001866,-0.002000,0.249992,0,0);}
.m67_c01396{transform:matrix(0.233246,0.002099,-0.002250,0.249990,0,0);-ms-transform:matrix(0.233246,0.002099,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.233246,0.002099,-0.002250,0.249990,0,0);}
.m135_c01396{transform:matrix(0.234348,0.002343,-0.002500,0.249988,0,0);-ms-transform:matrix(0.234348,0.002343,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.234348,0.002343,-0.002500,0.249988,0,0);}
.m47_c01396{transform:matrix(0.234426,0.002110,-0.002250,0.249990,0,0);-ms-transform:matrix(0.234426,0.002110,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.234426,0.002110,-0.002250,0.249990,0,0);}
.m21_c01396{transform:matrix(0.234790,0.002113,-0.002250,0.249990,0,0);-ms-transform:matrix(0.234790,0.002113,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.234790,0.002113,-0.002250,0.249990,0,0);}
.m6f_c01396{transform:matrix(0.234920,0.002114,-0.002250,0.249990,0,0);-ms-transform:matrix(0.234920,0.002114,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.234920,0.002114,-0.002250,0.249990,0,0);}
.me9_c01396{transform:matrix(0.235257,0.001882,-0.002000,0.249992,0,0);-ms-transform:matrix(0.235257,0.001882,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.235257,0.001882,-0.002000,0.249992,0,0);}
.ma1_c01396{transform:matrix(0.235377,0.001883,-0.002000,0.249992,0,0);-ms-transform:matrix(0.235377,0.001883,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.235377,0.001883,-0.002000,0.249992,0,0);}
.mec_c01396{transform:matrix(0.235622,0.001885,-0.002000,0.249992,0,0);-ms-transform:matrix(0.235622,0.001885,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.235622,0.001885,-0.002000,0.249992,0,0);}
.m4f_c01396{transform:matrix(0.235755,0.002122,-0.002250,0.249990,0,0);-ms-transform:matrix(0.235755,0.002122,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.235755,0.002122,-0.002250,0.249990,0,0);}
.mf9_c01396{transform:matrix(0.235844,0.001651,-0.001750,0.249994,0,0);-ms-transform:matrix(0.235844,0.001651,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.235844,0.001651,-0.001750,0.249994,0,0);}
.m99_c01396{transform:matrix(0.235872,0.001887,-0.002000,0.249992,0,0);-ms-transform:matrix(0.235872,0.001887,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.235872,0.001887,-0.002000,0.249992,0,0);}
.me0_c01396{transform:matrix(0.235912,0.001887,-0.002000,0.249992,0,0);-ms-transform:matrix(0.235912,0.001887,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.235912,0.001887,-0.002000,0.249992,0,0);}
.m143_c01396{transform:matrix(0.235918,0.002359,-0.002500,0.249988,0,0);-ms-transform:matrix(0.235918,0.002359,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.235918,0.002359,-0.002500,0.249988,0,0);}
.m71_c01396{transform:matrix(0.235985,0.002124,-0.002250,0.249990,0,0);-ms-transform:matrix(0.235985,0.002124,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.235985,0.002124,-0.002250,0.249990,0,0);}
.m11d_c01396{transform:matrix(0.236029,0.001652,-0.001750,0.249994,0,0);-ms-transform:matrix(0.236029,0.001652,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.236029,0.001652,-0.001750,0.249994,0,0);}
.m121_c01396{transform:matrix(0.236864,0.001658,-0.001750,0.249994,0,0);-ms-transform:matrix(0.236864,0.001658,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.236864,0.001658,-0.001750,0.249994,0,0);}
.meb_c01396{transform:matrix(0.236877,0.001895,-0.002000,0.249992,0,0);-ms-transform:matrix(0.236877,0.001895,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.236877,0.001895,-0.002000,0.249992,0,0);}
.m56_c01396{transform:matrix(0.237175,0.002135,-0.002250,0.249990,0,0);-ms-transform:matrix(0.237175,0.002135,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.237175,0.002135,-0.002250,0.249990,0,0);}
.mbc_c01396{transform:matrix(0.237177,0.001897,-0.002000,0.249992,0,0);-ms-transform:matrix(0.237177,0.001897,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.237177,0.001897,-0.002000,0.249992,0,0);}
.m83_c01396{transform:matrix(0.237860,0.002141,-0.002250,0.249990,0,0);-ms-transform:matrix(0.237860,0.002141,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.237860,0.002141,-0.002250,0.249990,0,0);}
.m94_c01396{transform:matrix(0.237967,0.001904,-0.002000,0.249992,0,0);-ms-transform:matrix(0.237967,0.001904,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.237967,0.001904,-0.002000,0.249992,0,0);}
.m9b_c01396{transform:matrix(0.238347,0.001907,-0.002000,0.249992,0,0);-ms-transform:matrix(0.238347,0.001907,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.238347,0.001907,-0.002000,0.249992,0,0);}
.m4a_c01396{transform:matrix(0.238380,0.002145,-0.002250,0.249990,0,0);-ms-transform:matrix(0.238380,0.002145,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.238380,0.002145,-0.002250,0.249990,0,0);}
.mdf_c01396{transform:matrix(0.239062,0.001912,-0.002000,0.249992,0,0);-ms-transform:matrix(0.239062,0.001912,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.239062,0.001912,-0.002000,0.249992,0,0);}
.m1f_c01396{transform:matrix(0.239115,0.002152,-0.002250,0.249990,0,0);-ms-transform:matrix(0.239115,0.002152,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.239115,0.002152,-0.002250,0.249990,0,0);}
.m80_c01396{transform:matrix(0.239210,0.002153,-0.002250,0.249990,0,0);-ms-transform:matrix(0.239210,0.002153,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.239210,0.002153,-0.002250,0.249990,0,0);}
.mf0_c01396{transform:matrix(0.239554,0.001677,-0.001750,0.249994,0,0);-ms-transform:matrix(0.239554,0.001677,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.239554,0.001677,-0.001750,0.249994,0,0);}
.mfc_c01396{transform:matrix(0.239904,0.001679,-0.001750,0.249994,0,0);-ms-transform:matrix(0.239904,0.001679,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.239904,0.001679,-0.001750,0.249994,0,0);}
.mae_c01396{transform:matrix(0.239922,0.001919,-0.002000,0.249992,0,0);-ms-transform:matrix(0.239922,0.001919,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.239922,0.001919,-0.002000,0.249992,0,0);}
.m16_c01396{transform:matrix(0.239940,0.002159,-0.002250,0.249990,0,0);-ms-transform:matrix(0.239940,0.002159,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.239940,0.002159,-0.002250,0.249990,0,0);}
.m12_c01396{transform:matrix(0.240010,0.002160,-0.002250,0.249990,0,0);-ms-transform:matrix(0.240010,0.002160,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.240010,0.002160,-0.002250,0.249990,0,0);}
.m2a_c01396{transform:matrix(0.240035,0.002160,-0.002250,0.249990,0,0);-ms-transform:matrix(0.240035,0.002160,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.240035,0.002160,-0.002250,0.249990,0,0);}
.m17_c01396{transform:matrix(0.240380,0.002163,-0.002250,0.249990,0,0);-ms-transform:matrix(0.240380,0.002163,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.240380,0.002163,-0.002250,0.249990,0,0);}
.m101_c01396{transform:matrix(0.240629,0.001684,-0.001750,0.249994,0,0);-ms-transform:matrix(0.240629,0.001684,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.240629,0.001684,-0.001750,0.249994,0,0);}
.mad_c01396{transform:matrix(0.240957,0.001928,-0.002000,0.249992,0,0);-ms-transform:matrix(0.240957,0.001928,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.240957,0.001928,-0.002000,0.249992,0,0);}
.m13_c01396{transform:matrix(0.241250,0.002171,-0.002250,0.249990,0,0);-ms-transform:matrix(0.241250,0.002171,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.241250,0.002171,-0.002250,0.249990,0,0);}
.m89_c01396{transform:matrix(0.241307,0.001930,-0.002000,0.249992,0,0);-ms-transform:matrix(0.241307,0.001930,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.241307,0.001930,-0.002000,0.249992,0,0);}
.mbd_c01396{transform:matrix(0.241407,0.001931,-0.002000,0.249992,0,0);-ms-transform:matrix(0.241407,0.001931,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.241407,0.001931,-0.002000,0.249992,0,0);}
.md7_c01396{transform:matrix(0.241457,0.001932,-0.002000,0.249992,0,0);-ms-transform:matrix(0.241457,0.001932,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.241457,0.001932,-0.002000,0.249992,0,0);}
.m19_c01396{transform:matrix(0.241690,0.002175,-0.002250,0.249990,0,0);-ms-transform:matrix(0.241690,0.002175,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.241690,0.002175,-0.002250,0.249990,0,0);}
.mea_c01396{transform:matrix(0.241807,0.001934,-0.002000,0.249992,0,0);-ms-transform:matrix(0.241807,0.001934,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.241807,0.001934,-0.002000,0.249992,0,0);}
.m14a_c01396{transform:matrix(0.241857,0.004837,-0.004999,0.249950,0,0);-ms-transform:matrix(0.241857,0.004837,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.241857,0.004837,-0.004999,0.249950,0,0);}
.m132_c01396{transform:matrix(0.241983,0.002420,-0.002500,0.249988,0,0);-ms-transform:matrix(0.241983,0.002420,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.241983,0.002420,-0.002500,0.249988,0,0);}
.m126_c01396{transform:matrix(0.242003,0.002420,-0.002500,0.249988,0,0);-ms-transform:matrix(0.242003,0.002420,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.242003,0.002420,-0.002500,0.249988,0,0);}
.m49_c01396{transform:matrix(0.242010,0.002178,-0.002250,0.249990,0,0);-ms-transform:matrix(0.242010,0.002178,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.242010,0.002178,-0.002250,0.249990,0,0);}
.m8a_c01396{transform:matrix(0.242127,0.001937,-0.002000,0.249992,0,0);-ms-transform:matrix(0.242127,0.001937,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.242127,0.001937,-0.002000,0.249992,0,0);}
.m1_c01396{transform:matrix(0.242425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242425,0.000000,0.000000,0.250000,0,0);}
.mcb_c01396{transform:matrix(0.242737,0.001942,-0.002000,0.249992,0,0);-ms-transform:matrix(0.242737,0.001942,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.242737,0.001942,-0.002000,0.249992,0,0);}
.m84_c01396{transform:matrix(0.242780,0.002185,-0.002250,0.249990,0,0);-ms-transform:matrix(0.242780,0.002185,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.242780,0.002185,-0.002250,0.249990,0,0);}
.m119_c01396{transform:matrix(0.242789,0.001700,-0.001750,0.249994,0,0);-ms-transform:matrix(0.242789,0.001700,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.242789,0.001700,-0.001750,0.249994,0,0);}
.m117_c01396{transform:matrix(0.242824,0.001700,-0.001750,0.249994,0,0);-ms-transform:matrix(0.242824,0.001700,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.242824,0.001700,-0.001750,0.249994,0,0);}
.m2b_c01396{transform:matrix(0.242900,0.002186,-0.002250,0.249990,0,0);-ms-transform:matrix(0.242900,0.002186,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.242900,0.002186,-0.002250,0.249990,0,0);}
.m7f_c01396{transform:matrix(0.242970,0.002187,-0.002250,0.249990,0,0);-ms-transform:matrix(0.242970,0.002187,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.242970,0.002187,-0.002250,0.249990,0,0);}
.m9e_c01396{transform:matrix(0.243092,0.001945,-0.002000,0.249992,0,0);-ms-transform:matrix(0.243092,0.001945,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.243092,0.001945,-0.002000,0.249992,0,0);}
.m98_c01396{transform:matrix(0.243532,0.001948,-0.002000,0.249992,0,0);-ms-transform:matrix(0.243532,0.001948,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.243532,0.001948,-0.002000,0.249992,0,0);}
.mc3_c01396{transform:matrix(0.244467,0.001956,-0.002000,0.249992,0,0);-ms-transform:matrix(0.244467,0.001956,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.244467,0.001956,-0.002000,0.249992,0,0);}
.m12d_c01396{transform:matrix(0.244718,0.002447,-0.002500,0.249988,0,0);-ms-transform:matrix(0.244718,0.002447,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.244718,0.002447,-0.002500,0.249988,0,0);}
.mb9_c01396{transform:matrix(0.244852,0.001959,-0.002000,0.249992,0,0);-ms-transform:matrix(0.244852,0.001959,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.244852,0.001959,-0.002000,0.249992,0,0);}
.mf7_c01396{transform:matrix(0.245469,0.001718,-0.001750,0.249994,0,0);-ms-transform:matrix(0.245469,0.001718,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.245469,0.001718,-0.001750,0.249994,0,0);}
.md6_c01396{transform:matrix(0.246187,0.001969,-0.002000,0.249992,0,0);-ms-transform:matrix(0.246187,0.001969,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.246187,0.001969,-0.002000,0.249992,0,0);}
.m40_c01396{transform:matrix(0.246410,0.002218,-0.002250,0.249990,0,0);-ms-transform:matrix(0.246410,0.002218,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.246410,0.002218,-0.002250,0.249990,0,0);}
.m118_c01396{transform:matrix(0.246599,0.001726,-0.001750,0.249994,0,0);-ms-transform:matrix(0.246599,0.001726,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.246599,0.001726,-0.001750,0.249994,0,0);}
.m138_c01396{transform:matrix(0.246948,0.002469,-0.002500,0.249988,0,0);-ms-transform:matrix(0.246948,0.002469,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.246948,0.002469,-0.002500,0.249988,0,0);}
.m4e_c01396{transform:matrix(0.247105,0.002224,-0.002250,0.249990,0,0);-ms-transform:matrix(0.247105,0.002224,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.247105,0.002224,-0.002250,0.249990,0,0);}
.mc1_c01396{transform:matrix(0.247207,0.001978,-0.002000,0.249992,0,0);-ms-transform:matrix(0.247207,0.001978,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.247207,0.001978,-0.002000,0.249992,0,0);}
.m120_c01396{transform:matrix(0.247369,0.001732,-0.001750,0.249994,0,0);-ms-transform:matrix(0.247369,0.001732,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.247369,0.001732,-0.001750,0.249994,0,0);}
.m115_c01396{transform:matrix(0.247484,0.001732,-0.001750,0.249994,0,0);-ms-transform:matrix(0.247484,0.001732,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.247484,0.001732,-0.001750,0.249994,0,0);}
.m95_c01396{transform:matrix(0.248297,0.001986,-0.002000,0.249992,0,0);-ms-transform:matrix(0.248297,0.001986,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.248297,0.001986,-0.002000,0.249992,0,0);}
.m32_c01396{transform:matrix(0.248795,0.002239,-0.002250,0.249990,0,0);-ms-transform:matrix(0.248795,0.002239,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.248795,0.002239,-0.002250,0.249990,0,0);}
.mca_c01396{transform:matrix(0.248917,0.001991,-0.002000,0.249992,0,0);-ms-transform:matrix(0.248917,0.001991,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.248917,0.001991,-0.002000,0.249992,0,0);}
.m103_c01396{transform:matrix(0.248919,0.001742,-0.001750,0.249994,0,0);-ms-transform:matrix(0.248919,0.001742,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.248919,0.001742,-0.001750,0.249994,0,0);}
.m133_c01396{transform:matrix(0.249098,0.002491,-0.002500,0.249988,0,0);-ms-transform:matrix(0.249098,0.002491,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.249098,0.002491,-0.002500,0.249988,0,0);}
.m34_c01396{transform:matrix(0.249150,0.002242,-0.002250,0.249990,0,0);-ms-transform:matrix(0.249150,0.002242,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.249150,0.002242,-0.002250,0.249990,0,0);}
.mf1_c01396{transform:matrix(0.249314,0.001745,-0.001750,0.249994,0,0);-ms-transform:matrix(0.249314,0.001745,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.249314,0.001745,-0.001750,0.249994,0,0);}
.mce_c01396{transform:matrix(0.249657,0.001997,-0.002000,0.249992,0,0);-ms-transform:matrix(0.249657,0.001997,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.249657,0.001997,-0.002000,0.249992,0,0);}
.m15_c01396{transform:matrix(0.249890,0.002249,-0.002250,0.249990,0,0);-ms-transform:matrix(0.249890,0.002249,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.249890,0.002249,-0.002250,0.249990,0,0);}
.m28_c01396{transform:matrix(0.249935,0.002249,-0.002250,0.249990,0,0);-ms-transform:matrix(0.249935,0.002249,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.249935,0.002249,-0.002250,0.249990,0,0);}
.m3c_c01396{transform:matrix(0.249950,0.002250,-0.002250,0.249990,0,0);-ms-transform:matrix(0.249950,0.002250,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.249950,0.002250,-0.002250,0.249990,0,0);}
.m139_c01396{transform:matrix(0.250677,0.002507,-0.002500,0.249988,0,0);-ms-transform:matrix(0.250677,0.002507,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.250677,0.002507,-0.002500,0.249988,0,0);}
.m39_c01396{transform:matrix(0.250895,0.002258,-0.002250,0.249990,0,0);-ms-transform:matrix(0.250895,0.002258,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.250895,0.002258,-0.002250,0.249990,0,0);}
.m3b_c01396{transform:matrix(0.251085,0.002260,-0.002250,0.249990,0,0);-ms-transform:matrix(0.251085,0.002260,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.251085,0.002260,-0.002250,0.249990,0,0);}
.m9_c01396{transform:matrix(0.251385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251385,0.000000,0.000000,0.250000,0,0);}
.m82_c01396{transform:matrix(0.251800,0.002266,-0.002250,0.249990,0,0);-ms-transform:matrix(0.251800,0.002266,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.251800,0.002266,-0.002250,0.249990,0,0);}
.m130_c01396{transform:matrix(0.252577,0.002526,-0.002500,0.249988,0,0);-ms-transform:matrix(0.252577,0.002526,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.252577,0.002526,-0.002500,0.249988,0,0);}
.md2_c01396{transform:matrix(0.252882,0.002023,-0.002000,0.249992,0,0);-ms-transform:matrix(0.252882,0.002023,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.252882,0.002023,-0.002000,0.249992,0,0);}
.mee_c01396{transform:matrix(0.252949,0.001771,-0.001750,0.249994,0,0);-ms-transform:matrix(0.252949,0.001771,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.252949,0.001771,-0.001750,0.249994,0,0);}
.md8_c01396{transform:matrix(0.253122,0.002025,-0.002000,0.249992,0,0);-ms-transform:matrix(0.253122,0.002025,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.253122,0.002025,-0.002000,0.249992,0,0);}
.m134_c01396{transform:matrix(0.253287,0.002533,-0.002500,0.249988,0,0);-ms-transform:matrix(0.253287,0.002533,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.253287,0.002533,-0.002500,0.249988,0,0);}
.m146_c01396{transform:matrix(0.253767,0.002538,-0.002500,0.249988,0,0);-ms-transform:matrix(0.253767,0.002538,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.253767,0.002538,-0.002500,0.249988,0,0);}
.md3_c01396{transform:matrix(0.254457,0.002036,-0.002000,0.249992,0,0);-ms-transform:matrix(0.254457,0.002036,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.254457,0.002036,-0.002000,0.249992,0,0);}
.mf4_c01396{transform:matrix(0.254754,0.001783,-0.001750,0.249994,0,0);-ms-transform:matrix(0.254754,0.001783,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.254754,0.001783,-0.001750,0.249994,0,0);}
.m8d_c01396{transform:matrix(0.254942,0.002040,-0.002000,0.249992,0,0);-ms-transform:matrix(0.254942,0.002040,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.254942,0.002040,-0.002000,0.249992,0,0);}
.m9c_c01396{transform:matrix(0.255202,0.002042,-0.002000,0.249992,0,0);-ms-transform:matrix(0.255202,0.002042,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.255202,0.002042,-0.002000,0.249992,0,0);}
.md0_c01396{transform:matrix(0.255237,0.002042,-0.002000,0.249992,0,0);-ms-transform:matrix(0.255237,0.002042,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.255237,0.002042,-0.002000,0.249992,0,0);}
.mbb_c01396{transform:matrix(0.255302,0.002042,-0.002000,0.249992,0,0);-ms-transform:matrix(0.255302,0.002042,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.255302,0.002042,-0.002000,0.249992,0,0);}
.mdd_c01396{transform:matrix(0.255657,0.002045,-0.002000,0.249992,0,0);-ms-transform:matrix(0.255657,0.002045,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.255657,0.002045,-0.002000,0.249992,0,0);}
.m33_c01396{transform:matrix(0.255670,0.002301,-0.002250,0.249990,0,0);-ms-transform:matrix(0.255670,0.002301,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.255670,0.002301,-0.002250,0.249990,0,0);}
.m140_c01396{transform:matrix(0.256532,0.002565,-0.002500,0.249988,0,0);-ms-transform:matrix(0.256532,0.002565,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.256532,0.002565,-0.002500,0.249988,0,0);}
.mfd_c01396{transform:matrix(0.256634,0.001796,-0.001750,0.249994,0,0);-ms-transform:matrix(0.256634,0.001796,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.256634,0.001796,-0.001750,0.249994,0,0);}
.m12a_c01396{transform:matrix(0.257017,0.002570,-0.002500,0.249988,0,0);-ms-transform:matrix(0.257017,0.002570,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.257017,0.002570,-0.002500,0.249988,0,0);}
.m26_c01396{transform:matrix(0.257900,0.002321,-0.002250,0.249990,0,0);-ms-transform:matrix(0.257900,0.002321,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.257900,0.002321,-0.002250,0.249990,0,0);}
.m20_c01396{transform:matrix(0.257930,0.002321,-0.002250,0.249990,0,0);-ms-transform:matrix(0.257930,0.002321,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.257930,0.002321,-0.002250,0.249990,0,0);}
.m30_c01396{transform:matrix(0.258275,0.002324,-0.002250,0.249990,0,0);-ms-transform:matrix(0.258275,0.002324,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.258275,0.002324,-0.002250,0.249990,0,0);}
.mdc_c01396{transform:matrix(0.258517,0.002068,-0.002000,0.249992,0,0);-ms-transform:matrix(0.258517,0.002068,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.258517,0.002068,-0.002000,0.249992,0,0);}
.md4_c01396{transform:matrix(0.258527,0.002068,-0.002000,0.249992,0,0);-ms-transform:matrix(0.258527,0.002068,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.258527,0.002068,-0.002000,0.249992,0,0);}
.m7_c01396{transform:matrix(0.258630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258630,0.000000,0.000000,0.250000,0,0);}
.mbe_c01396{transform:matrix(0.258897,0.002071,-0.002000,0.249992,0,0);-ms-transform:matrix(0.258897,0.002071,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.258897,0.002071,-0.002000,0.249992,0,0);}
.mc6_c01396{transform:matrix(0.259202,0.002074,-0.002000,0.249992,0,0);-ms-transform:matrix(0.259202,0.002074,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.259202,0.002074,-0.002000,0.249992,0,0);}
.mf6_c01396{transform:matrix(0.259449,0.001816,-0.001750,0.249994,0,0);-ms-transform:matrix(0.259449,0.001816,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.259449,0.001816,-0.001750,0.249994,0,0);}
.m90_c01396{transform:matrix(0.260187,0.002081,-0.002000,0.249992,0,0);-ms-transform:matrix(0.260187,0.002081,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.260187,0.002081,-0.002000,0.249992,0,0);}
.m48_c01396{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);}
.m6_c01396{transform:matrix(0.260415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260415,0.000000,0.000000,0.250000,0,0);}
.m4c_c01396{transform:matrix(0.261029,0.002349,-0.002250,0.249990,0,0);-ms-transform:matrix(0.261029,0.002349,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.261029,0.002349,-0.002250,0.249990,0,0);}
.m50_c01396{transform:matrix(0.261034,0.002349,-0.002250,0.249990,0,0);-ms-transform:matrix(0.261034,0.002349,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.261034,0.002349,-0.002250,0.249990,0,0);}
.mc7_c01396{transform:matrix(0.261037,0.002088,-0.002000,0.249992,0,0);-ms-transform:matrix(0.261037,0.002088,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.261037,0.002088,-0.002000,0.249992,0,0);}
.mfb_c01396{transform:matrix(0.261039,0.001827,-0.001750,0.249994,0,0);-ms-transform:matrix(0.261039,0.001827,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.261039,0.001827,-0.001750,0.249994,0,0);}
.m1e_c01396{transform:matrix(0.261709,0.002355,-0.002250,0.249990,0,0);-ms-transform:matrix(0.261709,0.002355,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.261709,0.002355,-0.002250,0.249990,0,0);}
.m1c_c01396{transform:matrix(0.261834,0.002357,-0.002250,0.249990,0,0);-ms-transform:matrix(0.261834,0.002357,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.261834,0.002357,-0.002250,0.249990,0,0);}
.mfa_c01396{transform:matrix(0.261844,0.001833,-0.001750,0.249994,0,0);-ms-transform:matrix(0.261844,0.001833,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.261844,0.001833,-0.001750,0.249994,0,0);}
.m102_c01396{transform:matrix(0.263559,0.001845,-0.001750,0.249994,0,0);-ms-transform:matrix(0.263559,0.001845,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.263559,0.001845,-0.001750,0.249994,0,0);}
.m93_c01396{transform:matrix(0.264052,0.002112,-0.002000,0.249992,0,0);-ms-transform:matrix(0.264052,0.002112,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.264052,0.002112,-0.002000,0.249992,0,0);}
.m51_c01396{transform:matrix(0.264329,0.002379,-0.002250,0.249990,0,0);-ms-transform:matrix(0.264329,0.002379,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.264329,0.002379,-0.002250,0.249990,0,0);}
.m1b_c01396{transform:matrix(0.264354,0.002379,-0.002250,0.249990,0,0);-ms-transform:matrix(0.264354,0.002379,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.264354,0.002379,-0.002250,0.249990,0,0);}
.m22_c01396{transform:matrix(0.264844,0.002384,-0.002250,0.249990,0,0);-ms-transform:matrix(0.264844,0.002384,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.264844,0.002384,-0.002250,0.249990,0,0);}
.m141_c01396{transform:matrix(0.264952,0.002650,-0.002500,0.249988,0,0);-ms-transform:matrix(0.264952,0.002650,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.264952,0.002650,-0.002500,0.249988,0,0);}
.m58_c01396{transform:matrix(0.266699,0.002400,-0.002250,0.249990,0,0);-ms-transform:matrix(0.266699,0.002400,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.266699,0.002400,-0.002250,0.249990,0,0);}
.m124_c01396{transform:matrix(0.267242,0.002672,-0.002500,0.249988,0,0);-ms-transform:matrix(0.267242,0.002672,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.267242,0.002672,-0.002500,0.249988,0,0);}
.m1d_c01396{transform:matrix(0.267644,0.002409,-0.002250,0.249990,0,0);-ms-transform:matrix(0.267644,0.002409,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.267644,0.002409,-0.002250,0.249990,0,0);}
.m129_c01396{transform:matrix(0.267657,0.002677,-0.002500,0.249988,0,0);-ms-transform:matrix(0.267657,0.002677,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.267657,0.002677,-0.002500,0.249988,0,0);}
.m3e_c01396{transform:matrix(0.267699,0.002409,-0.002250,0.249990,0,0);-ms-transform:matrix(0.267699,0.002409,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.267699,0.002409,-0.002250,0.249990,0,0);}
.m13e_c01396{transform:matrix(0.267957,0.002680,-0.002500,0.249988,0,0);-ms-transform:matrix(0.267957,0.002680,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.267957,0.002680,-0.002500,0.249988,0,0);}
.mc4_c01396{transform:matrix(0.268071,0.002145,-0.002000,0.249992,0,0);-ms-transform:matrix(0.268071,0.002145,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.268071,0.002145,-0.002000,0.249992,0,0);}
.m45_c01396{transform:matrix(0.268569,0.002417,-0.002250,0.249990,0,0);-ms-transform:matrix(0.268569,0.002417,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.268569,0.002417,-0.002250,0.249990,0,0);}
.m13f_c01396{transform:matrix(0.268987,0.002690,-0.002500,0.249988,0,0);-ms-transform:matrix(0.268987,0.002690,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.268987,0.002690,-0.002500,0.249988,0,0);}
.mf8_c01396{transform:matrix(0.269533,0.001887,-0.001750,0.249994,0,0);-ms-transform:matrix(0.269533,0.001887,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.269533,0.001887,-0.001750,0.249994,0,0);}
.m142_c01396{transform:matrix(0.269962,0.002700,-0.002500,0.249988,0,0);-ms-transform:matrix(0.269962,0.002700,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.269962,0.002700,-0.002500,0.249988,0,0);}
.m4b_c01396{transform:matrix(0.270214,0.002432,-0.002250,0.249990,0,0);-ms-transform:matrix(0.270214,0.002432,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.270214,0.002432,-0.002250,0.249990,0,0);}
.m122_c01396{transform:matrix(0.270221,0.002702,-0.002500,0.249988,0,0);-ms-transform:matrix(0.270221,0.002702,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.270221,0.002702,-0.002500,0.249988,0,0);}
.m57_c01396{transform:matrix(0.271184,0.002441,-0.002250,0.249990,0,0);-ms-transform:matrix(0.271184,0.002441,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.271184,0.002441,-0.002250,0.249990,0,0);}
.m92_c01396{transform:matrix(0.271796,0.002174,-0.002000,0.249992,0,0);-ms-transform:matrix(0.271796,0.002174,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.271796,0.002174,-0.002000,0.249992,0,0);}
.mc8_c01396{transform:matrix(0.272756,0.002182,-0.002000,0.249992,0,0);-ms-transform:matrix(0.272756,0.002182,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.272756,0.002182,-0.002000,0.249992,0,0);}
.m12b_c01396{transform:matrix(0.272781,0.002728,-0.002500,0.249988,0,0);-ms-transform:matrix(0.272781,0.002728,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.272781,0.002728,-0.002500,0.249988,0,0);}
.m13b_c01396{transform:matrix(0.273596,0.002736,-0.002500,0.249988,0,0);-ms-transform:matrix(0.273596,0.002736,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.273596,0.002736,-0.002500,0.249988,0,0);}
.mbf_c01396{transform:matrix(0.273631,0.002189,-0.002000,0.249992,0,0);-ms-transform:matrix(0.273631,0.002189,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.273631,0.002189,-0.002000,0.249992,0,0);}
.md5_c01396{transform:matrix(0.273676,0.002189,-0.002000,0.249992,0,0);-ms-transform:matrix(0.273676,0.002189,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.273676,0.002189,-0.002000,0.249992,0,0);}
.m12e_c01396{transform:matrix(0.274026,0.002740,-0.002500,0.249988,0,0);-ms-transform:matrix(0.274026,0.002740,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.274026,0.002740,-0.002500,0.249988,0,0);}
.m4d_c01396{transform:matrix(0.274264,0.002468,-0.002250,0.249990,0,0);-ms-transform:matrix(0.274264,0.002468,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.274264,0.002468,-0.002250,0.249990,0,0);}
.m144_c01396{transform:matrix(0.274486,0.002745,-0.002500,0.249988,0,0);-ms-transform:matrix(0.274486,0.002745,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.274486,0.002745,-0.002500,0.249988,0,0);}
.m123_c01396{transform:matrix(0.274531,0.002745,-0.002500,0.249988,0,0);-ms-transform:matrix(0.274531,0.002745,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.274531,0.002745,-0.002500,0.249988,0,0);}
.m127_c01396{transform:matrix(0.275041,0.002750,-0.002500,0.249988,0,0);-ms-transform:matrix(0.275041,0.002750,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.275041,0.002750,-0.002500,0.249988,0,0);}
.mba_c01396{transform:matrix(0.275046,0.002200,-0.002000,0.249992,0,0);-ms-transform:matrix(0.275046,0.002200,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.275046,0.002200,-0.002000,0.249992,0,0);}
.m137_c01396{transform:matrix(0.275861,0.002759,-0.002500,0.249988,0,0);-ms-transform:matrix(0.275861,0.002759,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.275861,0.002759,-0.002500,0.249988,0,0);}
.m125_c01396{transform:matrix(0.276311,0.002763,-0.002500,0.249988,0,0);-ms-transform:matrix(0.276311,0.002763,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.276311,0.002763,-0.002500,0.249988,0,0);}
.m12f_c01396{transform:matrix(0.276366,0.002764,-0.002500,0.249988,0,0);-ms-transform:matrix(0.276366,0.002764,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.276366,0.002764,-0.002500,0.249988,0,0);}
.m1a_c01396{transform:matrix(0.276684,0.002490,-0.002250,0.249990,0,0);-ms-transform:matrix(0.276684,0.002490,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.276684,0.002490,-0.002250,0.249990,0,0);}
.m54_c01396{transform:matrix(0.276829,0.002491,-0.002250,0.249990,0,0);-ms-transform:matrix(0.276829,0.002491,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.276829,0.002491,-0.002250,0.249990,0,0);}
.ma_c01396{transform:matrix(0.277190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277190,0.000000,0.000000,0.250000,0,0);}
.mda_c01396{transform:matrix(0.277311,0.002218,-0.002000,0.249992,0,0);-ms-transform:matrix(0.277311,0.002218,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.277311,0.002218,-0.002000,0.249992,0,0);}
.me7_c01396{transform:matrix(0.277626,0.002221,-0.002000,0.249992,0,0);-ms-transform:matrix(0.277626,0.002221,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.277626,0.002221,-0.002000,0.249992,0,0);}
.mc2_c01396{transform:matrix(0.277851,0.002223,-0.002000,0.249992,0,0);-ms-transform:matrix(0.277851,0.002223,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.277851,0.002223,-0.002000,0.249992,0,0);}
.m55_c01396{transform:matrix(0.278654,0.002508,-0.002250,0.249990,0,0);-ms-transform:matrix(0.278654,0.002508,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.278654,0.002508,-0.002250,0.249990,0,0);}
.m52_c01396{transform:matrix(0.278889,0.002510,-0.002250,0.249990,0,0);-ms-transform:matrix(0.278889,0.002510,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.278889,0.002510,-0.002250,0.249990,0,0);}
.mcc_c01396{transform:matrix(0.279636,0.002237,-0.002000,0.249992,0,0);-ms-transform:matrix(0.279636,0.002237,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.279636,0.002237,-0.002000,0.249992,0,0);}
.m131_c01396{transform:matrix(0.280771,0.002808,-0.002500,0.249988,0,0);-ms-transform:matrix(0.280771,0.002808,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.280771,0.002808,-0.002500,0.249988,0,0);}
.m59_c01396{transform:matrix(0.280794,0.002527,-0.002250,0.249990,0,0);-ms-transform:matrix(0.280794,0.002527,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.280794,0.002527,-0.002250,0.249990,0,0);}
.mc5_c01396{transform:matrix(0.281296,0.002250,-0.002000,0.249992,0,0);-ms-transform:matrix(0.281296,0.002250,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.281296,0.002250,-0.002000,0.249992,0,0);}
.m44_c01396{transform:matrix(0.281644,0.002535,-0.002250,0.249990,0,0);-ms-transform:matrix(0.281644,0.002535,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.281644,0.002535,-0.002250,0.249990,0,0);}
.m96_c01396{transform:matrix(0.281686,0.002253,-0.002000,0.249992,0,0);-ms-transform:matrix(0.281686,0.002253,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.281686,0.002253,-0.002000,0.249992,0,0);}
.mfe_c01396{transform:matrix(0.282718,0.001979,-0.001750,0.249994,0,0);-ms-transform:matrix(0.282718,0.001979,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.282718,0.001979,-0.001750,0.249994,0,0);}
.m9a_c01396{transform:matrix(0.282931,0.002263,-0.002000,0.249992,0,0);-ms-transform:matrix(0.282931,0.002263,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.282931,0.002263,-0.002000,0.249992,0,0);}
.mc0_c01396{transform:matrix(0.283601,0.002269,-0.002000,0.249992,0,0);-ms-transform:matrix(0.283601,0.002269,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.283601,0.002269,-0.002000,0.249992,0,0);}
.m3f_c01396{transform:matrix(0.287753,0.002590,-0.002250,0.249990,0,0);-ms-transform:matrix(0.287753,0.002590,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.287753,0.002590,-0.002250,0.249990,0,0);}
.m42_c01396{transform:matrix(0.288733,0.002599,-0.002250,0.249990,0,0);-ms-transform:matrix(0.288733,0.002599,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.288733,0.002599,-0.002250,0.249990,0,0);}
.mb2_c01396{transform:matrix(0.291271,0.002330,-0.002000,0.249992,0,0);-ms-transform:matrix(0.291271,0.002330,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.291271,0.002330,-0.002000,0.249992,0,0);}
.m43_c01396{transform:matrix(0.291293,0.002622,-0.002250,0.249990,0,0);-ms-transform:matrix(0.291293,0.002622,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.291293,0.002622,-0.002250,0.249990,0,0);}
.m41_c01396{transform:matrix(0.293963,0.002646,-0.002250,0.249990,0,0);-ms-transform:matrix(0.293963,0.002646,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.293963,0.002646,-0.002250,0.249990,0,0);}
.m3d_c01396{transform:matrix(0.294858,0.002654,-0.002250,0.249990,0,0);-ms-transform:matrix(0.294858,0.002654,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.294858,0.002654,-0.002250,0.249990,0,0);}
.m46_c01396{transform:matrix(0.312812,0.002815,-0.002250,0.249990,0,0);-ms-transform:matrix(0.312812,0.002815,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.312812,0.002815,-0.002250,0.249990,0,0);}
.m136_c01396{transform:matrix(0.351442,0.003514,-0.002500,0.249988,0,0);-ms-transform:matrix(0.351442,0.003514,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.351442,0.003514,-0.002500,0.249988,0,0);}
.m86_c01396{transform:matrix(0.357051,0.003213,-0.002250,0.249990,0,0);-ms-transform:matrix(0.357051,0.003213,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.357051,0.003213,-0.002250,0.249990,0,0);}
.m4_c01396{transform:matrix(0.392880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392880,0.000000,0.000000,0.250000,0,0);}
.md_c01396{transform:matrix(0.426720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426720,0.000000,0.000000,0.250000,0,0);}
.mb_c01396{transform:matrix(1.944270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.944270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.944270,0.000000,0.000000,0.250000,0,0);}
.mc_c01396{transform:matrix(5.442260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.442260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.442260,0.000000,0.000000,0.250000,0,0);}
.v0_c01396{vertical-align:0.000000px;}
.ls0_c01396{letter-spacing:0.000000px;}
.sc__c01396{text-shadow:none;}
.sc0_c01396{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__c01396{-webkit-text-stroke:0px transparent;}
.sc0_c01396{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01396{word-spacing:0.000000px;}
.fc0_c01396{color:transparent;}
.fs2_c01396{font-size:30.000000px;}
.fs1_c01396{font-size:48.000000px;}
.fs5_c01396{font-size:66.002673px;}
.fs0_c01396{font-size:72.000000px;}
.fsc_c01396{font-size:72.001764px;}
.fs9_c01396{font-size:72.002304px;}
.fs4_c01396{font-size:72.002916px;}
.fse_c01396{font-size:72.003600px;}
.fsb_c01396{font-size:78.001911px;}
.fs8_c01396{font-size:78.002496px;}
.fs3_c01396{font-size:78.003159px;}
.fsd_c01396{font-size:84.002058px;}
.fsa_c01396{font-size:84.002688px;}
.fs6_c01396{font-size:84.003402px;}
.fsf_c01396{font-size:84.016798px;}
.fs7_c01396{font-size:96.003888px;}
.y0_c01396{bottom:0.000000px;}
.y144_c01396{bottom:90.330690px;}
.y143_c01396{bottom:90.999630px;}
.y142_c01396{bottom:93.613260px;}
.y141_c01396{bottom:94.936440px;}
.y140_c01396{bottom:96.453630px;}
.y13f_c01396{bottom:97.744500px;}
.y13b_c01396{bottom:128.309640px;}
.y13d_c01396{bottom:128.309700px;}
.y13a_c01396{bottom:128.310195px;}
.y13c_c01396{bottom:128.310255px;}
.y13e_c01396{bottom:128.310315px;}
.y139_c01396{bottom:144.962130px;}
.y138_c01396{bottom:145.287405px;}
.y137_c01396{bottom:145.729290px;}
.y136_c01396{bottom:146.218905px;}
.y135_c01396{bottom:146.379675px;}
.y134_c01396{bottom:146.546460px;}
.y133_c01396{bottom:146.979660px;}
.y132_c01396{bottom:147.146490px;}
.y131_c01396{bottom:147.362370px;}
.y130_c01396{bottom:147.472950px;}
.y12f_c01396{bottom:147.958935px;}
.y12e_c01396{bottom:159.598590px;}
.y12d_c01396{bottom:159.908100px;}
.y12c_c01396{bottom:160.453560px;}
.y12b_c01396{bottom:160.791090px;}
.y12a_c01396{bottom:161.120535px;}
.y129_c01396{bottom:162.421950px;}
.y128_c01396{bottom:162.648390px;}
.y127_c01396{bottom:163.526190px;}
.y126_c01396{bottom:164.608995px;}
.y125_c01396{bottom:165.696855px;}
.y124_c01396{bottom:166.050405px;}
.y123_c01396{bottom:178.406535px;}
.y122_c01396{bottom:178.857405px;}
.y121_c01396{bottom:179.613315px;}
.y120_c01396{bottom:179.942505px;}
.y11f_c01396{bottom:180.925605px;}
.y11e_c01396{bottom:181.149285px;}
.y11d_c01396{bottom:182.235090px;}
.y11c_c01396{bottom:182.891340px;}
.y11b_c01396{bottom:183.876840px;}
.y11a_c01396{bottom:184.411500px;}
.y119_c01396{bottom:232.327196px;}
.y118_c01396{bottom:232.783844px;}
.y117_c01396{bottom:232.985246px;}
.y116_c01396{bottom:233.170959px;}
.y115_c01396{bottom:233.504967px;}
.y114_c01396{bottom:233.763710px;}
.y113_c01396{bottom:233.963316px;}
.y112_c01396{bottom:234.160728px;}
.y111_c01396{bottom:234.615454px;}
.y110_c01396{bottom:235.141289px;}
.y10f_c01396{bottom:235.463451px;}
.y10e_c01396{bottom:235.666659px;}
.y10d_c01396{bottom:236.247258px;}
.y10c_c01396{bottom:267.525158px;}
.y10b_c01396{bottom:267.946460px;}
.y10a_c01396{bottom:268.186510px;}
.y109_c01396{bottom:268.420934px;}
.y108_c01396{bottom:268.645707px;}
.y107_c01396{bottom:268.953798px;}
.y106_c01396{bottom:269.182656px;}
.y105_c01396{bottom:269.335568px;}
.y104_c01396{bottom:269.719238px;}
.y103_c01396{bottom:270.254212px;}
.y102_c01396{bottom:270.480866px;}
.y101_c01396{bottom:270.713325px;}
.y100_c01396{bottom:271.011977px;}
.yff_c01396{bottom:271.626478px;}
.yfe_c01396{bottom:271.936302px;}
.yfd_c01396{bottom:272.310627px;}
.yfc_c01396{bottom:272.698150px;}
.yfb_c01396{bottom:302.522911px;}
.yfa_c01396{bottom:302.980355px;}
.yf9_c01396{bottom:303.212835px;}
.yf8_c01396{bottom:303.426426px;}
.yf7_c01396{bottom:303.670099px;}
.yf6_c01396{bottom:304.511286px;}
.yf5_c01396{bottom:304.893045px;}
.yf4_c01396{bottom:305.121746px;}
.yf3_c01396{bottom:305.579125px;}
.yf2_c01396{bottom:305.962879px;}
.yf1_c01396{bottom:306.197229px;}
.yf0_c01396{bottom:306.943811px;}
.yef_c01396{bottom:307.259209px;}
.yee_c01396{bottom:338.795688px;}
.yed_c01396{bottom:339.026257px;}
.yec_c01396{bottom:339.782289px;}
.yeb_c01396{bottom:340.010811px;}
.yea_c01396{bottom:340.245139px;}
.ye9_c01396{bottom:340.855756px;}
.ye8_c01396{bottom:341.309335px;}
.ye7_c01396{bottom:341.547560px;}
.ye6_c01396{bottom:342.090000px;}
.ye4_c01396{bottom:377.996628px;}
.ye5_c01396{bottom:377.996784px;}
.ye3_c01396{bottom:409.028124px;}
.ye2_c01396{bottom:409.483620px;}
.ye1_c01396{bottom:409.752168px;}
.ye0_c01396{bottom:410.007816px;}
.ydf_c01396{bottom:410.406288px;}
.yde_c01396{bottom:410.661576px;}
.ydd_c01396{bottom:410.987724px;}
.ydc_c01396{bottom:411.253440px;}
.ydb_c01396{bottom:411.453180px;}
.yda_c01396{bottom:411.774252px;}
.yd9_c01396{bottom:411.906372px;}
.yd8_c01396{bottom:412.295784px;}
.yd7_c01396{bottom:412.634856px;}
.yd6_c01396{bottom:412.829508px;}
.yd5_c01396{bottom:445.015368px;}
.yd4_c01396{bottom:445.451760px;}
.yd3_c01396{bottom:445.619976px;}
.yd2_c01396{bottom:446.495064px;}
.yd1_c01396{bottom:446.751852px;}
.yd0_c01396{bottom:447.110400px;}
.ycf_c01396{bottom:447.540432px;}
.yce_c01396{bottom:447.808248px;}
.ycd_c01396{bottom:448.426080px;}
.ycc_c01396{bottom:448.776060px;}
.ycb_c01396{bottom:449.281500px;}
.yca_c01396{bottom:483.609912px;}
.yc8_c01396{bottom:483.610056px;}
.yc9_c01396{bottom:483.610260px;}
.yc5_c01396{bottom:483.610440px;}
.yc7_c01396{bottom:483.610584px;}
.yc6_c01396{bottom:483.610692px;}
.yc4_c01396{bottom:516.004944px;}
.yc3_c01396{bottom:516.235476px;}
.yc2_c01396{bottom:516.461700px;}
.yc1_c01396{bottom:516.687228px;}
.yc0_c01396{bottom:517.376604px;}
.ybf_c01396{bottom:517.832484px;}
.ybe_c01396{bottom:518.293668px;}
.ybd_c01396{bottom:519.369840px;}
.ybc_c01396{bottom:519.974028px;}
.ybb_c01396{bottom:520.282548px;}
.yba_c01396{bottom:552.254364px;}
.yb9_c01396{bottom:552.512820px;}
.yb8_c01396{bottom:553.100976px;}
.yb7_c01396{bottom:553.624224px;}
.yb6_c01396{bottom:554.011428px;}
.yb5_c01396{bottom:554.213976px;}
.yb4_c01396{bottom:554.414328px;}
.yb3_c01396{bottom:554.677968px;}
.yb2_c01396{bottom:555.257760px;}
.yb1_c01396{bottom:555.462384px;}
.yb0_c01396{bottom:555.651936px;}
.yaf_c01396{bottom:588.234780px;}
.yae_c01396{bottom:588.500412px;}
.yad_c01396{bottom:588.690984px;}
.yac_c01396{bottom:588.825084px;}
.yab_c01396{bottom:589.419960px;}
.yaa_c01396{bottom:589.682844px;}
.ya9_c01396{bottom:589.874700px;}
.ya8_c01396{bottom:590.271924px;}
.ya7_c01396{bottom:590.532708px;}
.ya6_c01396{bottom:591.187896px;}
.ya5_c01396{bottom:591.383256px;}
.ya4_c01396{bottom:591.833760px;}
.ya3_c01396{bottom:622.806504px;}
.ya2_c01396{bottom:622.962600px;}
.ya1_c01396{bottom:623.132100px;}
.ya0_c01396{bottom:623.510448px;}
.y9f_c01396{bottom:623.838780px;}
.y9e_c01396{bottom:624.002652px;}
.y9d_c01396{bottom:624.442812px;}
.y9c_c01396{bottom:624.659388px;}
.y9b_c01396{bottom:624.990624px;}
.y9a_c01396{bottom:625.154508px;}
.y99_c01396{bottom:625.697340px;}
.y98_c01396{bottom:625.803528px;}
.y97_c01396{bottom:626.126880px;}
.y96_c01396{bottom:656.887836px;}
.y95_c01396{bottom:657.092664px;}
.y94_c01396{bottom:657.423816px;}
.y93_c01396{bottom:657.679476px;}
.y92_c01396{bottom:658.146156px;}
.y91_c01396{bottom:658.398528px;}
.y90_c01396{bottom:658.601148px;}
.y8f_c01396{bottom:658.795692px;}
.y8e_c01396{bottom:659.580324px;}
.y8d_c01396{bottom:659.780028px;}
.y8c_c01396{bottom:659.979708px;}
.y8b_c01396{bottom:660.438012px;}
.y8a_c01396{bottom:660.959532px;}
.y89_c01396{bottom:692.250960px;}
.y88_c01396{bottom:693.292428px;}
.y87_c01396{bottom:693.547320px;}
.y86_c01396{bottom:693.812952px;}
.y85_c01396{bottom:694.590600px;}
.y84_c01396{bottom:694.856184px;}
.y83_c01396{bottom:695.203980px;}
.y82_c01396{bottom:695.646804px;}
.y81_c01396{bottom:696.245196px;}
.y80_c01396{bottom:696.692244px;}
.y7f_c01396{bottom:696.871500px;}
.y7e_c01396{bottom:727.555266px;}
.y7d_c01396{bottom:729.682069px;}
.y7c_c01396{bottom:730.428163px;}
.y7b_c01396{bottom:730.729990px;}
.y7a_c01396{bottom:731.267326px;}
.y79_c01396{bottom:731.495194px;}
.y78_c01396{bottom:732.023164px;}
.y77_c01396{bottom:732.489928px;}
.y76_c01396{bottom:763.797469px;}
.y75_c01396{bottom:763.990692px;}
.y74_c01396{bottom:764.522434px;}
.y73_c01396{bottom:764.712069px;}
.y72_c01396{bottom:764.972826px;}
.y71_c01396{bottom:765.556815px;}
.y70_c01396{bottom:765.831834px;}
.y6f_c01396{bottom:766.290092px;}
.y6e_c01396{bottom:766.549702px;}
.y6d_c01396{bottom:766.872799px;}
.y6c_c01396{bottom:767.003629px;}
.y6b_c01396{bottom:767.591935px;}
.y6a_c01396{bottom:798.837271px;}
.y69_c01396{bottom:799.606065px;}
.y68_c01396{bottom:799.844569px;}
.y67_c01396{bottom:800.514505px;}
.y66_c01396{bottom:801.122925px;}
.y65_c01396{bottom:801.435145px;}
.y64_c01396{bottom:801.674055px;}
.y63_c01396{bottom:801.897565px;}
.y62_c01396{bottom:802.361239px;}
.y61_c01396{bottom:802.594102px;}
.y60_c01396{bottom:803.199216px;}
.y5f_c01396{bottom:803.506576px;}
.y5e_c01396{bottom:834.330276px;}
.y5d_c01396{bottom:834.864844px;}
.y5c_c01396{bottom:835.552864px;}
.y5b_c01396{bottom:835.789128px;}
.y5a_c01396{bottom:836.323602px;}
.y59_c01396{bottom:836.550877px;}
.y58_c01396{bottom:836.786911px;}
.y57_c01396{bottom:837.079548px;}
.y56_c01396{bottom:837.469114px;}
.y55_c01396{bottom:837.856534px;}
.y54_c01396{bottom:838.081191px;}
.y53_c01396{bottom:838.535404px;}
.y52_c01396{bottom:838.919221px;}
.y51_c01396{bottom:839.147211px;}
.y50_c01396{bottom:871.193145px;}
.y4f_c01396{bottom:871.653778px;}
.y4e_c01396{bottom:872.175238px;}
.y4d_c01396{bottom:872.376031px;}
.y4c_c01396{bottom:873.031668px;}
.y4b_c01396{bottom:873.686401px;}
.y4a_c01396{bottom:873.876076px;}
.y49_c01396{bottom:874.788180px;}
.y48_c01396{bottom:906.400198px;}
.y47_c01396{bottom:906.855342px;}
.y46_c01396{bottom:907.223989px;}
.y45_c01396{bottom:907.694100px;}
.y44_c01396{bottom:908.606979px;}
.y43_c01396{bottom:909.070234px;}
.y42_c01396{bottom:909.610782px;}
.y41_c01396{bottom:909.906846px;}
.y40_c01396{bottom:910.213344px;}
.y3f_c01396{bottom:910.673482px;}
.y3e_c01396{bottom:910.969506px;}
.y3d_c01396{bottom:942.809472px;}
.y3c_c01396{bottom:943.002709px;}
.y3b_c01396{bottom:943.329894px;}
.y3a_c01396{bottom:943.850613px;}
.y39_c01396{bottom:944.251269px;}
.y38_c01396{bottom:944.835082px;}
.y37_c01396{bottom:945.035754px;}
.y36_c01396{bottom:945.426586px;}
.y35_c01396{bottom:945.753879px;}
.y34_c01396{bottom:946.342980px;}
.y33_c01396{bottom:976.773351px;}
.y32_c01396{bottom:977.421378px;}
.y31_c01396{bottom:977.758777px;}
.y30_c01396{bottom:978.220354px;}
.y2f_c01396{bottom:978.526759px;}
.y2e_c01396{bottom:978.807447px;}
.y2d_c01396{bottom:979.124740px;}
.y2c_c01396{bottom:979.332145px;}
.y2b_c01396{bottom:979.856238px;}
.y2a_c01396{bottom:980.635081px;}
.y29_c01396{bottom:1012.200109px;}
.y28_c01396{bottom:1012.403373px;}
.y27_c01396{bottom:1012.995780px;}
.y26_c01396{bottom:1013.252085px;}
.y25_c01396{bottom:1013.452123px;}
.y24_c01396{bottom:1013.711721px;}
.y23_c01396{bottom:1013.845897px;}
.y22_c01396{bottom:1014.240063px;}
.y21_c01396{bottom:1014.568312px;}
.y20_c01396{bottom:1014.769186px;}
.y1f_c01396{bottom:1015.219767px;}
.y1e_c01396{bottom:1015.350664px;}
.y1d_c01396{bottom:1016.008690px;}
.y1c_c01396{bottom:1047.578535px;}
.y1b_c01396{bottom:1047.841519px;}
.y1a_c01396{bottom:1048.046643px;}
.y19_c01396{bottom:1048.500732px;}
.y18_c01396{bottom:1048.765603px;}
.y17_c01396{bottom:1049.099670px;}
.y16_c01396{bottom:1049.352750px;}
.y15_c01396{bottom:1049.810172px;}
.y14_c01396{bottom:1050.345072px;}
.y13_c01396{bottom:1050.672486px;}
.y12_c01396{bottom:1051.060510px;}
.y11_c01396{bottom:1051.649706px;}
.y10_c01396{bottom:1082.270958px;}
.yf_c01396{bottom:1082.560114px;}
.ye_c01396{bottom:1083.153048px;}
.yd_c01396{bottom:1083.648876px;}
.yc_c01396{bottom:1084.530858px;}
.yb_c01396{bottom:1084.912111px;}
.ya_c01396{bottom:1085.517465px;}
.y9_c01396{bottom:1086.005922px;}
.y8_c01396{bottom:1086.302368px;}
.y7_c01396{bottom:1086.688765px;}
.y6_c01396{bottom:1086.982876px;}
.y5_c01396{bottom:1087.291500px;}
.y4_c01396{bottom:1133.013000px;}
.y3_c01396{bottom:1147.165500px;}
.y2_c01396{bottom:1172.242500px;}
.y1_c01396{bottom:1202.194500px;}
.h4_c01396{height:30.000000px;}
.h3_c01396{height:48.000000px;}
.h7_c01396{height:66.002673px;}
.h2_c01396{height:72.000000px;}
.he_c01396{height:72.001764px;}
.hb_c01396{height:72.002304px;}
.h6_c01396{height:72.002916px;}
.h10_c01396{height:72.003600px;}
.hd_c01396{height:78.001911px;}
.ha_c01396{height:78.002496px;}
.h5_c01396{height:78.003159px;}
.hf_c01396{height:84.002058px;}
.hc_c01396{height:84.002688px;}
.h8_c01396{height:84.003402px;}
.h11_c01396{height:84.016798px;}
.h9_c01396{height:96.003888px;}
.h1_c01396{height:1250.250000px;}
.h0_c01396{height:1250.370000px;}
.w0_c01396{width:878.850000px;}
.w1_c01396{width:879.000000px;}
.x0_c01396{left:0.000000px;}
.xbe_c01396{left:124.243500px;}
.x89_c01396{left:125.462820px;}
.x5d_c01396{left:126.539760px;}
.x3c_c01396{left:127.883028px;}
.x17_c01396{left:129.240505px;}
.xae_c01396{left:143.542275px;}
.x82_c01396{left:155.790432px;}
.x74_c01396{left:158.403876px;}
.x3d_c01396{left:160.549122px;}
.x7a_c01396{left:169.727712px;}
.x32_c01396{left:172.166799px;}
.xa8_c01396{left:178.330500px;}
.x99_c01396{left:180.255989px;}
.xbf_c01396{left:188.787000px;}
.x68_c01396{left:192.700764px;}
.x51_c01396{left:193.762825px;}
.x6e_c01396{left:202.147524px;}
.x5e_c01396{left:213.481152px;}
.x3e_c01396{left:215.363107px;}
.xa4_c01396{left:222.925584px;}
.x83_c01396{left:225.183372px;}
.x4b_c01396{left:226.195251px;}
.x18_c01396{left:227.542665px;}
.x8e_c01396{left:232.908000px;}
.x56_c01396{left:235.338000px;}
.xd_c01396{left:237.204000px;}
.x22_c01396{left:238.316175px;}
.x4c_c01396{left:248.065845px;}
.x4_c01396{left:252.180000px;}
.x7b_c01396{left:256.126908px;}
.x46_c01396{left:258.021117px;}
.x23_c01396{left:260.194269px;}
.x6_c01396{left:262.980000px;}
.xc0_c01396{left:264.646500px;}
.xbb_c01396{left:265.953645px;}
.x52_c01396{left:269.094175px;}
.xe_c01396{left:271.495500px;}
.x93_c01396{left:276.911919px;}
.x9a_c01396{left:277.991489px;}
.x8a_c01396{left:279.107268px;}
.x3f_c01396{left:280.165768px;}
.x7_c01396{left:281.340000px;}
.xaf_c01396{left:287.683275px;}
.x5f_c01396{left:289.895376px;}
.x47_c01396{left:291.228711px;}
.x19_c01396{left:292.324920px;}
.x85_c01396{left:299.317500px;}
.x4d_c01396{left:301.800289px;}
.xf_c01396{left:304.174500px;}
.x8f_c01396{left:310.399500px;}
.x37_c01396{left:312.854337px;}
.x69_c01396{left:322.581384px;}
.x33_c01396{left:323.914026px;}
.xc1_c01396{left:330.805500px;}
.x75_c01396{left:333.101172px;}
.x24_c01396{left:335.260794px;}
.x8_c01396{left:336.420000px;}
.xa9_c01396{left:342.505500px;}
.x6f_c01396{left:343.905792px;}
.x4e_c01396{left:344.980450px;}
.x10_c01396{left:347.107500px;}
.x6a_c01396{left:355.255164px;}
.x60_c01396{left:356.319432px;}
.x48_c01396{left:357.415899px;}
.x94_c01396{left:365.212419px;}
.x76_c01396{left:366.583212px;}
.x40_c01396{left:367.675848px;}
.x25_c01396{left:368.747699px;}
.xb6_c01396{left:375.249255px;}
.x53_c01396{left:378.452146px;}
.x1_c01396{left:380.430000px;}
.x2a_c01396{left:381.437760px;}
.xbc_c01396{left:386.109660px;}
.x70_c01396{left:387.379488px;}
.x49_c01396{left:389.250966px;}
.x5_c01396{left:390.960000px;}
.xb0_c01396{left:395.963775px;}
.x84_c01396{left:398.528460px;}
.x77_c01396{left:400.339752px;}
.x9_c01396{left:401.490000px;}
.x2_c01396{left:403.110000px;}
.x9b_c01396{left:408.441989px;}
.x7c_c01396{left:409.774632px;}
.xbd_c01396{left:419.051460px;}
.x86_c01396{left:420.294000px;}
.x38_c01396{left:421.938780px;}
.x26_c01396{left:423.554684px;}
.x95_c01396{left:430.552419px;}
.x8b_c01396{left:432.190716px;}
.xa_c01396{left:434.430000px;}
.x1a_c01396{left:435.974794px;}
.x9c_c01396{left:441.650489px;}
.x57_c01396{left:443.778000px;}
.x3_c01396{left:445.500000px;}
.xaa_c01396{left:451.086000px;}
.x71_c01396{left:453.533544px;}
.xb7_c01396{left:461.923590px;}
.x96_c01396{left:463.223919px;}
.x41_c01396{left:465.144603px;}
.x34_c01396{left:467.283604px;}
.x9d_c01396{left:474.029488px;}
.x7d_c01396{left:475.673160px;}
.x2f_c01396{left:477.295188px;}
.x2b_c01396{left:481.049447px;}
.xb1_c01396{left:483.743775px;}
.x72_c01396{left:485.391048px;}
.x58_c01396{left:487.252500px;}
.x27_c01396{left:489.185952px;}
.xb8_c01396{left:495.403770px;}
.x90_c01396{left:496.459500px;}
.x42_c01396{left:498.871210px;}
.xb_c01396{left:500.040000px;}
.x11_c01396{left:501.580500px;}
.xb2_c01396{left:506.387775px;}
.x87_c01396{left:507.525000px;}
.x1b_c01396{left:512.134846px;}
.x97_c01396{left:517.760919px;}
.x61_c01396{left:519.406536px;}
.x59_c01396{left:520.450500px;}
.x54_c01396{left:528.223846px;}
.x91_c01396{left:529.935000px;}
.x2c_c01396{left:532.095824px;}
.x7e_c01396{left:540.721176px;}
.x12_c01396{left:543.942000px;}
.x9e_c01396{left:550.454489px;}
.x78_c01396{left:552.023676px;}
.x62_c01396{left:553.172076px;}
.x1c_c01396{left:554.255980px;}
.x92_c01396{left:562.581000px;}
.x39_c01396{left:564.768141px;}
.xab_c01396{left:571.764000px;}
.xc_c01396{left:579.690000px;}
.xa5_c01396{left:583.384115px;}
.x6b_c01396{left:585.303672px;}
.x28_c01396{left:588.001111px;}
.x63_c01396{left:595.219248px;}
.x35_c01396{left:597.716953px;}
.x9f_c01396{left:605.264488px;}
.x43_c01396{left:607.678668px;}
.x1d_c01396{left:609.875979px;}
.x5a_c01396{left:617.656500px;}
.xb9_c01396{left:625.548780px;}
.xa0_c01396{left:627.108989px;}
.x73_c01396{left:628.238328px;}
.x29_c01396{left:630.647259px;}
.xb3_c01396{left:636.529275px;}
.x8c_c01396{left:638.201016px;}
.x4f_c01396{left:639.561402px;}
.x13_c01396{left:641.940000px;}
.x4a_c01396{left:650.365151px;}
.x3a_c01396{left:651.710490px;}
.x1e_c01396{left:654.140681px;}
.xa1_c01396{left:659.802988px;}
.x2d_c01396{left:665.207915px;}
.xa6_c01396{left:670.059224px;}
.x7f_c01396{left:671.397720px;}
.x64_c01396{left:673.055496px;}
.xac_c01396{left:680.274000px;}
.x5b_c01396{left:682.722000px;}
.x30_c01396{left:685.196290px;}
.x79_c01396{left:693.289944px;}
.x14_c01396{left:697.032000px;}
.x80_c01396{left:703.800984px;}
.xba_c01396{left:713.841690px;}
.x65_c01396{left:715.701180px;}
.x31_c01396{left:717.334654px;}
.xad_c01396{left:725.361000px;}
.x6c_c01396{left:726.517056px;}
.x3b_c01396{left:728.394055px;}
.x1f_c01396{left:729.763719px;}
.x81_c01396{left:736.742748px;}
.x44_c01396{left:739.712544px;}
.xb4_c01396{left:757.772775px;}
.x8d_c01396{left:758.895948px;}
.x50_c01396{left:760.449669px;}
.x15_c01396{left:762.913500px;}
.x20_c01396{left:764.056151px;}
.x88_c01396{left:769.404000px;}
.x66_c01396{left:770.783556px;}
.x2e_c01396{left:773.213830px;}
.xa7_c01396{left:779.709990px;}
.x36_c01396{left:782.653788px;}
.xb5_c01396{left:788.723775px;}
.x6d_c01396{left:791.593116px;}
.x16_c01396{left:795.042000px;}
.x98_c01396{left:801.814419px;}
.xa2_c01396{left:803.708488px;}
.x67_c01396{left:804.825096px;}
.x21_c01396{left:807.777825px;}
.x5c_c01396{left:812.905500px;}
.x45_c01396{left:816.110421px;}
.x55_c01396{left:832.040814px;}
.xa3_c01396{left:863.894489px;}
@media print{
.v0_c01396{vertical-align:0.000000pt;}
.ls0_c01396{letter-spacing:0.000000pt;}
.ws0_c01396{word-spacing:0.000000pt;}
.fs2_c01396{font-size:26.666667pt;}
.fs1_c01396{font-size:42.666667pt;}
.fs5_c01396{font-size:58.669043pt;}
.fs0_c01396{font-size:64.000000pt;}
.fsc_c01396{font-size:64.001568pt;}
.fs9_c01396{font-size:64.002048pt;}
.fs4_c01396{font-size:64.002592pt;}
.fse_c01396{font-size:64.003200pt;}
.fsb_c01396{font-size:69.335032pt;}
.fs8_c01396{font-size:69.335552pt;}
.fs3_c01396{font-size:69.336141pt;}
.fsd_c01396{font-size:74.668496pt;}
.fsa_c01396{font-size:74.669056pt;}
.fs6_c01396{font-size:74.669691pt;}
.fsf_c01396{font-size:74.681599pt;}
.fs7_c01396{font-size:85.336789pt;}
.y0_c01396{bottom:0.000000pt;}
.y144_c01396{bottom:80.293947pt;}
.y143_c01396{bottom:80.888560pt;}
.y142_c01396{bottom:83.211787pt;}
.y141_c01396{bottom:84.387947pt;}
.y140_c01396{bottom:85.736560pt;}
.y13f_c01396{bottom:86.884000pt;}
.y13b_c01396{bottom:114.053013pt;}
.y13d_c01396{bottom:114.053067pt;}
.y13a_c01396{bottom:114.053507pt;}
.y13c_c01396{bottom:114.053560pt;}
.y13e_c01396{bottom:114.053613pt;}
.y139_c01396{bottom:128.855227pt;}
.y138_c01396{bottom:129.144360pt;}
.y137_c01396{bottom:129.537147pt;}
.y136_c01396{bottom:129.972360pt;}
.y135_c01396{bottom:130.115267pt;}
.y134_c01396{bottom:130.263520pt;}
.y133_c01396{bottom:130.648587pt;}
.y132_c01396{bottom:130.796880pt;}
.y131_c01396{bottom:130.988773pt;}
.y130_c01396{bottom:131.087067pt;}
.y12f_c01396{bottom:131.519053pt;}
.y12e_c01396{bottom:141.865413pt;}
.y12d_c01396{bottom:142.140533pt;}
.y12c_c01396{bottom:142.625387pt;}
.y12b_c01396{bottom:142.925413pt;}
.y12a_c01396{bottom:143.218253pt;}
.y129_c01396{bottom:144.375067pt;}
.y128_c01396{bottom:144.576347pt;}
.y127_c01396{bottom:145.356613pt;}
.y126_c01396{bottom:146.319107pt;}
.y125_c01396{bottom:147.286093pt;}
.y124_c01396{bottom:147.600360pt;}
.y123_c01396{bottom:158.583587pt;}
.y122_c01396{bottom:158.984360pt;}
.y121_c01396{bottom:159.656280pt;}
.y120_c01396{bottom:159.948893pt;}
.y11f_c01396{bottom:160.822760pt;}
.y11e_c01396{bottom:161.021587pt;}
.y11d_c01396{bottom:161.986747pt;}
.y11c_c01396{bottom:162.570080pt;}
.y11b_c01396{bottom:163.446080pt;}
.y11a_c01396{bottom:163.921333pt;}
.y119_c01396{bottom:206.513063pt;}
.y118_c01396{bottom:206.918972pt;}
.y117_c01396{bottom:207.097996pt;}
.y116_c01396{bottom:207.263075pt;}
.y115_c01396{bottom:207.559971pt;}
.y114_c01396{bottom:207.789964pt;}
.y113_c01396{bottom:207.967392pt;}
.y112_c01396{bottom:208.142869pt;}
.y111_c01396{bottom:208.547071pt;}
.y110_c01396{bottom:209.014479pt;}
.y10f_c01396{bottom:209.300845pt;}
.y10e_c01396{bottom:209.481475pt;}
.y10d_c01396{bottom:209.997563pt;}
.y10c_c01396{bottom:237.800140pt;}
.y10b_c01396{bottom:238.174631pt;}
.y10a_c01396{bottom:238.388009pt;}
.y109_c01396{bottom:238.596385pt;}
.y108_c01396{bottom:238.796184pt;}
.y107_c01396{bottom:239.070043pt;}
.y106_c01396{bottom:239.273472pt;}
.y105_c01396{bottom:239.409393pt;}
.y104_c01396{bottom:239.750433pt;}
.y103_c01396{bottom:240.225967pt;}
.y102_c01396{bottom:240.427436pt;}
.y101_c01396{bottom:240.634067pt;}
.y100_c01396{bottom:240.899535pt;}
.yff_c01396{bottom:241.445759pt;}
.yfe_c01396{bottom:241.721157pt;}
.yfd_c01396{bottom:242.053891pt;}
.yfc_c01396{bottom:242.398356pt;}
.yfb_c01396{bottom:268.909255pt;}
.yfa_c01396{bottom:269.315871pt;}
.yf9_c01396{bottom:269.522520pt;}
.yf8_c01396{bottom:269.712379pt;}
.yf7_c01396{bottom:269.928977pt;}
.yf6_c01396{bottom:270.676699pt;}
.yf5_c01396{bottom:271.016040pt;}
.yf4_c01396{bottom:271.219329pt;}
.yf3_c01396{bottom:271.625889pt;}
.yf2_c01396{bottom:271.967004pt;}
.yf1_c01396{bottom:272.175315pt;}
.yf0_c01396{bottom:272.838943pt;}
.yef_c01396{bottom:273.119297pt;}
.yee_c01396{bottom:301.151723pt;}
.yed_c01396{bottom:301.356673pt;}
.yec_c01396{bottom:302.028701pt;}
.yeb_c01396{bottom:302.231832pt;}
.yea_c01396{bottom:302.440124pt;}
.ye9_c01396{bottom:302.982895pt;}
.ye8_c01396{bottom:303.386076pt;}
.ye7_c01396{bottom:303.597831pt;}
.ye6_c01396{bottom:304.080000pt;}
.ye4_c01396{bottom:335.997003pt;}
.ye5_c01396{bottom:335.997141pt;}
.ye3_c01396{bottom:363.580555pt;}
.ye2_c01396{bottom:363.985440pt;}
.ye1_c01396{bottom:364.224149pt;}
.ye0_c01396{bottom:364.451392pt;}
.ydf_c01396{bottom:364.805589pt;}
.yde_c01396{bottom:365.032512pt;}
.ydd_c01396{bottom:365.322421pt;}
.ydc_c01396{bottom:365.558613pt;}
.ydb_c01396{bottom:365.736160pt;}
.yda_c01396{bottom:366.021557pt;}
.yd9_c01396{bottom:366.138997pt;}
.yd8_c01396{bottom:366.485141pt;}
.yd7_c01396{bottom:366.786539pt;}
.yd6_c01396{bottom:366.959563pt;}
.yd5_c01396{bottom:395.569216pt;}
.yd4_c01396{bottom:395.957120pt;}
.yd3_c01396{bottom:396.106645pt;}
.yd2_c01396{bottom:396.884501pt;}
.yd1_c01396{bottom:397.112757pt;}
.yd0_c01396{bottom:397.431467pt;}
.ycf_c01396{bottom:397.813717pt;}
.yce_c01396{bottom:398.051776pt;}
.ycd_c01396{bottom:398.600960pt;}
.ycc_c01396{bottom:398.912053pt;}
.ycb_c01396{bottom:399.361333pt;}
.yca_c01396{bottom:429.875477pt;}
.yc8_c01396{bottom:429.875605pt;}
.yc9_c01396{bottom:429.875787pt;}
.yc5_c01396{bottom:429.875947pt;}
.yc7_c01396{bottom:429.876075pt;}
.yc6_c01396{bottom:429.876171pt;}
.yc4_c01396{bottom:458.671061pt;}
.yc3_c01396{bottom:458.875979pt;}
.yc2_c01396{bottom:459.077067pt;}
.yc1_c01396{bottom:459.277536pt;}
.yc0_c01396{bottom:459.890315pt;}
.ybf_c01396{bottom:460.295541pt;}
.ybe_c01396{bottom:460.705483pt;}
.ybd_c01396{bottom:461.662080pt;}
.ybc_c01396{bottom:462.199136pt;}
.ybb_c01396{bottom:462.473376pt;}
.yba_c01396{bottom:490.892768pt;}
.yb9_c01396{bottom:491.122507pt;}
.yb8_c01396{bottom:491.645312pt;}
.yb7_c01396{bottom:492.110421pt;}
.yb6_c01396{bottom:492.454603pt;}
.yb5_c01396{bottom:492.634645pt;}
.yb4_c01396{bottom:492.812736pt;}
.yb3_c01396{bottom:493.047083pt;}
.yb2_c01396{bottom:493.562453pt;}
.yb1_c01396{bottom:493.744341pt;}
.yb0_c01396{bottom:493.912832pt;}
.yaf_c01396{bottom:522.875360pt;}
.yae_c01396{bottom:523.111477pt;}
.yad_c01396{bottom:523.280875pt;}
.yac_c01396{bottom:523.400075pt;}
.yab_c01396{bottom:523.928853pt;}
.yaa_c01396{bottom:524.162528pt;}
.ya9_c01396{bottom:524.333067pt;}
.ya8_c01396{bottom:524.686155pt;}
.ya7_c01396{bottom:524.917963pt;}
.ya6_c01396{bottom:525.500352pt;}
.ya5_c01396{bottom:525.674005pt;}
.ya4_c01396{bottom:526.074453pt;}
.ya3_c01396{bottom:553.605781pt;}
.ya2_c01396{bottom:553.744533pt;}
.ya1_c01396{bottom:553.895200pt;}
.ya0_c01396{bottom:554.231509pt;}
.y9f_c01396{bottom:554.523360pt;}
.y9e_c01396{bottom:554.669024pt;}
.y9d_c01396{bottom:555.060277pt;}
.y9c_c01396{bottom:555.252789pt;}
.y9b_c01396{bottom:555.547221pt;}
.y9a_c01396{bottom:555.692896pt;}
.y99_c01396{bottom:556.175413pt;}
.y98_c01396{bottom:556.269803pt;}
.y97_c01396{bottom:556.557227pt;}
.y96_c01396{bottom:583.900299pt;}
.y95_c01396{bottom:584.082368pt;}
.y94_c01396{bottom:584.376725pt;}
.y93_c01396{bottom:584.603979pt;}
.y92_c01396{bottom:585.018805pt;}
.y91_c01396{bottom:585.243136pt;}
.y90_c01396{bottom:585.423243pt;}
.y8f_c01396{bottom:585.596171pt;}
.y8e_c01396{bottom:586.293621pt;}
.y8d_c01396{bottom:586.471136pt;}
.y8c_c01396{bottom:586.648629pt;}
.y8b_c01396{bottom:587.056011pt;}
.y8a_c01396{bottom:587.519584pt;}
.y89_c01396{bottom:615.334187pt;}
.y88_c01396{bottom:616.259936pt;}
.y87_c01396{bottom:616.486507pt;}
.y86_c01396{bottom:616.722624pt;}
.y85_c01396{bottom:617.413867pt;}
.y84_c01396{bottom:617.649941pt;}
.y83_c01396{bottom:617.959093pt;}
.y82_c01396{bottom:618.352715pt;}
.y81_c01396{bottom:618.884619pt;}
.y80_c01396{bottom:619.281995pt;}
.y7f_c01396{bottom:619.441333pt;}
.y7e_c01396{bottom:646.715792pt;}
.y7d_c01396{bottom:648.606284pt;}
.y7c_c01396{bottom:649.269479pt;}
.y7b_c01396{bottom:649.537769pt;}
.y7a_c01396{bottom:650.015401pt;}
.y79_c01396{bottom:650.217951pt;}
.y78_c01396{bottom:650.687257pt;}
.y77_c01396{bottom:651.102159pt;}
.y76_c01396{bottom:678.931084pt;}
.y75_c01396{bottom:679.102837pt;}
.y74_c01396{bottom:679.575497pt;}
.y73_c01396{bottom:679.744061pt;}
.y72_c01396{bottom:679.975845pt;}
.y71_c01396{bottom:680.494947pt;}
.y70_c01396{bottom:680.739408pt;}
.y6f_c01396{bottom:681.146748pt;}
.y6e_c01396{bottom:681.377513pt;}
.y6d_c01396{bottom:681.664711pt;}
.y6c_c01396{bottom:681.781004pt;}
.y6b_c01396{bottom:682.303943pt;}
.y6a_c01396{bottom:710.077575pt;}
.y69_c01396{bottom:710.760947pt;}
.y68_c01396{bottom:710.972951pt;}
.y67_c01396{bottom:711.568449pt;}
.y66_c01396{bottom:712.109267pt;}
.y65_c01396{bottom:712.386796pt;}
.y64_c01396{bottom:712.599160pt;}
.y63_c01396{bottom:712.797836pt;}
.y62_c01396{bottom:713.209991pt;}
.y61_c01396{bottom:713.416980pt;}
.y60_c01396{bottom:713.954859pt;}
.y5f_c01396{bottom:714.228068pt;}
.y5e_c01396{bottom:741.626912pt;}
.y5d_c01396{bottom:742.102084pt;}
.y5c_c01396{bottom:742.713657pt;}
.y5b_c01396{bottom:742.923669pt;}
.y5a_c01396{bottom:743.398757pt;}
.y59_c01396{bottom:743.600780pt;}
.y58_c01396{bottom:743.810588pt;}
.y57_c01396{bottom:744.070709pt;}
.y56_c01396{bottom:744.416991pt;}
.y55_c01396{bottom:744.761364pt;}
.y54_c01396{bottom:744.961059pt;}
.y53_c01396{bottom:745.364804pt;}
.y52_c01396{bottom:745.705975pt;}
.y51_c01396{bottom:745.908632pt;}
.y50_c01396{bottom:774.393907pt;}
.y4f_c01396{bottom:774.803359pt;}
.y4e_c01396{bottom:775.266879pt;}
.y4d_c01396{bottom:775.445361pt;}
.y4c_c01396{bottom:776.028149pt;}
.y4b_c01396{bottom:776.610135pt;}
.y4a_c01396{bottom:776.778735pt;}
.y49_c01396{bottom:777.589493pt;}
.y48_c01396{bottom:805.689065pt;}
.y47_c01396{bottom:806.093637pt;}
.y46_c01396{bottom:806.421324pt;}
.y45_c01396{bottom:806.839200pt;}
.y44_c01396{bottom:807.650648pt;}
.y43_c01396{bottom:808.062431pt;}
.y42_c01396{bottom:808.542917pt;}
.y41_c01396{bottom:808.806085pt;}
.y40_c01396{bottom:809.078528pt;}
.y3f_c01396{bottom:809.487540pt;}
.y3e_c01396{bottom:809.750672pt;}
.y3d_c01396{bottom:838.052864pt;}
.y3c_c01396{bottom:838.224631pt;}
.y3b_c01396{bottom:838.515461pt;}
.y3a_c01396{bottom:838.978323pt;}
.y39_c01396{bottom:839.334461pt;}
.y38_c01396{bottom:839.853407pt;}
.y37_c01396{bottom:840.031781pt;}
.y36_c01396{bottom:840.379188pt;}
.y35_c01396{bottom:840.670115pt;}
.y34_c01396{bottom:841.193760pt;}
.y33_c01396{bottom:868.242979pt;}
.y32_c01396{bottom:868.819003pt;}
.y31_c01396{bottom:869.118913pt;}
.y30_c01396{bottom:869.529204pt;}
.y2f_c01396{bottom:869.801564pt;}
.y2e_c01396{bottom:870.051064pt;}
.y2d_c01396{bottom:870.333103pt;}
.y2c_c01396{bottom:870.517463pt;}
.y2b_c01396{bottom:870.983323pt;}
.y2a_c01396{bottom:871.675628pt;}
.y29_c01396{bottom:899.733431pt;}
.y28_c01396{bottom:899.914109pt;}
.y27_c01396{bottom:900.440693pt;}
.y26_c01396{bottom:900.668520pt;}
.y25_c01396{bottom:900.846332pt;}
.y24_c01396{bottom:901.077085pt;}
.y23_c01396{bottom:901.196353pt;}
.y22_c01396{bottom:901.546723pt;}
.y21_c01396{bottom:901.838500pt;}
.y20_c01396{bottom:902.017055pt;}
.y1f_c01396{bottom:902.417571pt;}
.y1e_c01396{bottom:902.533924pt;}
.y1d_c01396{bottom:903.118836pt;}
.y1c_c01396{bottom:931.180920pt;}
.y1b_c01396{bottom:931.414684pt;}
.y1a_c01396{bottom:931.597016pt;}
.y19_c01396{bottom:932.000651pt;}
.y18_c01396{bottom:932.236092pt;}
.y17_c01396{bottom:932.533040pt;}
.y16_c01396{bottom:932.758000pt;}
.y15_c01396{bottom:933.164597pt;}
.y14_c01396{bottom:933.640064pt;}
.y13_c01396{bottom:933.931099pt;}
.y12_c01396{bottom:934.276009pt;}
.y11_c01396{bottom:934.799739pt;}
.y10_c01396{bottom:962.018629pt;}
.yf_c01396{bottom:962.275657pt;}
.ye_c01396{bottom:962.802709pt;}
.yd_c01396{bottom:963.243445pt;}
.yc_c01396{bottom:964.027429pt;}
.yb_c01396{bottom:964.366321pt;}
.ya_c01396{bottom:964.904413pt;}
.y9_c01396{bottom:965.338597pt;}
.y8_c01396{bottom:965.602105pt;}
.y7_c01396{bottom:965.945569pt;}
.y6_c01396{bottom:966.207001pt;}
.y5_c01396{bottom:966.481333pt;}
.y4_c01396{bottom:1007.122667pt;}
.y3_c01396{bottom:1019.702667pt;}
.y2_c01396{bottom:1041.993333pt;}
.y1_c01396{bottom:1068.617333pt;}
.h4_c01396{height:26.666667pt;}
.h3_c01396{height:42.666667pt;}
.h7_c01396{height:58.669043pt;}
.h2_c01396{height:64.000000pt;}
.he_c01396{height:64.001568pt;}
.hb_c01396{height:64.002048pt;}
.h6_c01396{height:64.002592pt;}
.h10_c01396{height:64.003200pt;}
.hd_c01396{height:69.335032pt;}
.ha_c01396{height:69.335552pt;}
.h5_c01396{height:69.336141pt;}
.hf_c01396{height:74.668496pt;}
.hc_c01396{height:74.669056pt;}
.h8_c01396{height:74.669691pt;}
.h11_c01396{height:74.681599pt;}
.h9_c01396{height:85.336789pt;}
.h1_c01396{height:1111.333333pt;}
.h0_c01396{height:1111.440000pt;}
.w0_c01396{width:781.200000pt;}
.w1_c01396{width:781.333333pt;}
.x0_c01396{left:0.000000pt;}
.xbe_c01396{left:110.438667pt;}
.x89_c01396{left:111.522507pt;}
.x5d_c01396{left:112.479787pt;}
.x3c_c01396{left:113.673803pt;}
.x17_c01396{left:114.880449pt;}
.xae_c01396{left:127.593133pt;}
.x82_c01396{left:138.480384pt;}
.x74_c01396{left:140.803445pt;}
.x3d_c01396{left:142.710331pt;}
.x7a_c01396{left:150.869077pt;}
.x32_c01396{left:153.037155pt;}
.xa8_c01396{left:158.516000pt;}
.x99_c01396{left:160.227545pt;}
.xbf_c01396{left:167.810667pt;}
.x68_c01396{left:171.289568pt;}
.x51_c01396{left:172.233623pt;}
.x6e_c01396{left:179.686688pt;}
.x5e_c01396{left:189.761024pt;}
.x3e_c01396{left:191.433873pt;}
.xa4_c01396{left:198.156075pt;}
.x83_c01396{left:200.162997pt;}
.x4b_c01396{left:201.062445pt;}
.x18_c01396{left:202.260147pt;}
.x8e_c01396{left:207.029333pt;}
.x56_c01396{left:209.189333pt;}
.xd_c01396{left:210.848000pt;}
.x22_c01396{left:211.836600pt;}
.x4c_c01396{left:220.502973pt;}
.x4_c01396{left:224.160000pt;}
.x7b_c01396{left:227.668363pt;}
.x46_c01396{left:229.352104pt;}
.x23_c01396{left:231.283795pt;}
.x6_c01396{left:233.760000pt;}
.xc0_c01396{left:235.241333pt;}
.xbb_c01396{left:236.403240pt;}
.x52_c01396{left:239.194823pt;}
.xe_c01396{left:241.329333pt;}
.x93_c01396{left:246.143928pt;}
.x9a_c01396{left:247.103545pt;}
.x8a_c01396{left:248.095349pt;}
.x3f_c01396{left:249.036239pt;}
.x7_c01396{left:250.080000pt;}
.xaf_c01396{left:255.718467pt;}
.x5f_c01396{left:257.684779pt;}
.x47_c01396{left:258.869965pt;}
.x19_c01396{left:259.844373pt;}
.x85_c01396{left:266.060000pt;}
.x4d_c01396{left:268.266924pt;}
.xf_c01396{left:270.377333pt;}
.x8f_c01396{left:275.910667pt;}
.x37_c01396{left:278.092744pt;}
.x69_c01396{left:286.739008pt;}
.x33_c01396{left:287.923579pt;}
.xc1_c01396{left:294.049333pt;}
.x75_c01396{left:296.089931pt;}
.x24_c01396{left:298.009595pt;}
.x8_c01396{left:299.040000pt;}
.xa9_c01396{left:304.449333pt;}
.x6f_c01396{left:305.694037pt;}
.x4e_c01396{left:306.649289pt;}
.x10_c01396{left:308.540000pt;}
.x6a_c01396{left:315.782368pt;}
.x60_c01396{left:316.728384pt;}
.x48_c01396{left:317.703021pt;}
.x94_c01396{left:324.633261pt;}
.x76_c01396{left:325.851744pt;}
.x40_c01396{left:326.822976pt;}
.x25_c01396{left:327.775732pt;}
.xb6_c01396{left:333.554893pt;}
.x53_c01396{left:336.401908pt;}
.x1_c01396{left:338.160000pt;}
.x2a_c01396{left:339.055787pt;}
.xbc_c01396{left:343.208587pt;}
.x70_c01396{left:344.337323pt;}
.x49_c01396{left:346.000859pt;}
.x5_c01396{left:347.520000pt;}
.xb0_c01396{left:351.967800pt;}
.x84_c01396{left:354.247520pt;}
.x77_c01396{left:355.857557pt;}
.x9_c01396{left:356.880000pt;}
.x2_c01396{left:358.320000pt;}
.x9b_c01396{left:363.059545pt;}
.x7c_c01396{left:364.244117pt;}
.xbd_c01396{left:372.490187pt;}
.x86_c01396{left:373.594667pt;}
.x38_c01396{left:375.056693pt;}
.x26_c01396{left:376.493052pt;}
.x95_c01396{left:382.713261pt;}
.x8b_c01396{left:384.169525pt;}
.xa_c01396{left:386.160000pt;}
.x1a_c01396{left:387.533151pt;}
.x9c_c01396{left:392.578212pt;}
.x57_c01396{left:394.469333pt;}
.x3_c01396{left:396.000000pt;}
.xaa_c01396{left:400.965333pt;}
.x71_c01396{left:403.140928pt;}
.xb7_c01396{left:410.598747pt;}
.x96_c01396{left:411.754595pt;}
.x41_c01396{left:413.461869pt;}
.x34_c01396{left:415.363204pt;}
.x9d_c01396{left:421.359545pt;}
.x7d_c01396{left:422.820587pt;}
.x2f_c01396{left:424.262389pt;}
.x2b_c01396{left:427.599508pt;}
.xb1_c01396{left:429.994467pt;}
.x72_c01396{left:431.458709pt;}
.x58_c01396{left:433.113333pt;}
.x27_c01396{left:434.831957pt;}
.xb8_c01396{left:440.358907pt;}
.x90_c01396{left:441.297333pt;}
.x42_c01396{left:443.441076pt;}
.xb_c01396{left:444.480000pt;}
.x11_c01396{left:445.849333pt;}
.xb2_c01396{left:450.122467pt;}
.x87_c01396{left:451.133333pt;}
.x1b_c01396{left:455.230975pt;}
.x97_c01396{left:460.231928pt;}
.x61_c01396{left:461.694699pt;}
.x59_c01396{left:462.622667pt;}
.x54_c01396{left:469.532308pt;}
.x91_c01396{left:471.053333pt;}
.x2c_c01396{left:472.974065pt;}
.x7e_c01396{left:480.641045pt;}
.x12_c01396{left:483.504000pt;}
.x9e_c01396{left:489.292879pt;}
.x78_c01396{left:490.687712pt;}
.x62_c01396{left:491.708512pt;}
.x1c_c01396{left:492.671983pt;}
.x92_c01396{left:500.072000pt;}
.x39_c01396{left:502.016125pt;}
.xab_c01396{left:508.234667pt;}
.xc_c01396{left:515.280000pt;}
.xa5_c01396{left:518.563657pt;}
.x6b_c01396{left:520.269931pt;}
.x28_c01396{left:522.667655pt;}
.x63_c01396{left:529.083776pt;}
.x35_c01396{left:531.303959pt;}
.x9f_c01396{left:538.012879pt;}
.x43_c01396{left:540.158816pt;}
.x1d_c01396{left:542.111981pt;}
.x5a_c01396{left:549.028000pt;}
.xb9_c01396{left:556.043360pt;}
.xa0_c01396{left:557.430212pt;}
.x73_c01396{left:558.434069pt;}
.x29_c01396{left:560.575341pt;}
.xb3_c01396{left:565.803800pt;}
.x8c_c01396{left:567.289792pt;}
.x4f_c01396{left:568.499024pt;}
.x13_c01396{left:570.613333pt;}
.x4a_c01396{left:578.102356pt;}
.x3a_c01396{left:579.298213pt;}
.x1e_c01396{left:581.458383pt;}
.xa1_c01396{left:586.491545pt;}
.x2d_c01396{left:591.295924pt;}
.xa6_c01396{left:595.608199pt;}
.x7f_c01396{left:596.797973pt;}
.x64_c01396{left:598.271552pt;}
.xac_c01396{left:604.688000pt;}
.x5b_c01396{left:606.864000pt;}
.x30_c01396{left:609.063369pt;}
.x79_c01396{left:616.257728pt;}
.x14_c01396{left:619.584000pt;}
.x80_c01396{left:625.600875pt;}
.xba_c01396{left:634.525947pt;}
.x65_c01396{left:636.178827pt;}
.x31_c01396{left:637.630804pt;}
.xad_c01396{left:644.765333pt;}
.x6c_c01396{left:645.792939pt;}
.x3b_c01396{left:647.461383pt;}
.x1f_c01396{left:648.678861pt;}
.x81_c01396{left:654.882443pt;}
.x44_c01396{left:657.522261pt;}
.xb4_c01396{left:673.575800pt;}
.x8d_c01396{left:674.574176pt;}
.x50_c01396{left:675.955261pt;}
.x15_c01396{left:678.145333pt;}
.x20_c01396{left:679.161023pt;}
.x88_c01396{left:683.914667pt;}
.x66_c01396{left:685.140939pt;}
.x2e_c01396{left:687.301183pt;}
.xa7_c01396{left:693.075547pt;}
.x36_c01396{left:695.692256pt;}
.xb5_c01396{left:701.087800pt;}
.x6d_c01396{left:703.638325pt;}
.x16_c01396{left:706.704000pt;}
.x98_c01396{left:712.723928pt;}
.xa2_c01396{left:714.407545pt;}
.x67_c01396{left:715.400085pt;}
.x21_c01396{left:718.024733pt;}
.x5c_c01396{left:722.582667pt;}
.x45_c01396{left:725.431485pt;}
.x55_c01396{left:739.591835pt;}
.xa3_c01396{left:767.906212pt;}
}





/* 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_c01397 {
    display:none;
  }
  .loading-indicator_c01397.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01397 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_c01397 { 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_c01397" -> "#page-container .classname_c01397")
 */
.pf_c01397 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01397 { /* 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_c01397.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01397 { /* 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_c01397 { /* 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_c01397 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01397 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01397 {overflow:visible;}
  }
}
.c_c01397 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01397 { /* 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_c01397:after { /* webkit #35443 */
  content: '';
}
.t_c01397:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01397 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 */
}
.__c01397 { /* 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_c01397 { /* info for Javascript */
  display:none;
}
.l_c01397 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01397 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01397 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01397: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_c01397 {
    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_c01397.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01397.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_c01397 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01397{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01397;src:url('chunks/assets/font_53ec0c54e60da7c2d414b553.woff2')format("woff");}.ff1_c01397{font-family:ff1_c01397;line-height:1.000000;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;}
.m69_c01397{transform:matrix(0.008540,0.000043,-0.001250,0.249997,0,0);-ms-transform:matrix(0.008540,0.000043,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.008540,0.000043,-0.001250,0.249997,0,0);}
.m8c_c01397{transform:matrix(0.009015,0.000045,-0.001250,0.249997,0,0);-ms-transform:matrix(0.009015,0.000045,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.009015,0.000045,-0.001250,0.249997,0,0);}
.m68_c01397{transform:matrix(0.009765,0.000049,-0.001250,0.249997,0,0);-ms-transform:matrix(0.009765,0.000049,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.009765,0.000049,-0.001250,0.249997,0,0);}
.m31_c01397{transform:matrix(0.012369,0.000136,-0.002750,0.249985,0,0);-ms-transform:matrix(0.012369,0.000136,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.012369,0.000136,-0.002750,0.249985,0,0);}
.m7c_c01397{transform:matrix(0.012480,0.000062,-0.001250,0.249997,0,0);-ms-transform:matrix(0.012480,0.000062,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.012480,0.000062,-0.001250,0.249997,0,0);}
.m28_c01397{transform:matrix(0.014060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.014060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.014060,0.000000,0.000000,0.250000,0,0);}
.m9b_c01397{transform:matrix(0.014405,0.000115,-0.002000,0.249992,0,0);-ms-transform:matrix(0.014405,0.000115,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.014405,0.000115,-0.002000,0.249992,0,0);}
.m3f_c01397{transform:matrix(0.016949,0.000186,-0.002750,0.249985,0,0);-ms-transform:matrix(0.016949,0.000186,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.016949,0.000186,-0.002750,0.249985,0,0);}
.m40_c01397{transform:matrix(0.022459,0.000247,-0.002750,0.249985,0,0);-ms-transform:matrix(0.022459,0.000247,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.022459,0.000247,-0.002750,0.249985,0,0);}
.ma7_c01397{transform:matrix(0.027040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.027040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.027040,0.000000,0.000000,0.250000,0,0);}
.mab_c01397{transform:matrix(0.056250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.056250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.056250,0.000000,0.000000,0.250000,0,0);}
.m66_c01397{transform:matrix(0.071150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.071150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.071150,0.000000,0.000000,0.250000,0,0);}
.m27_c01397{transform:matrix(0.082720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.082720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.082720,0.000000,0.000000,0.250000,0,0);}
.m6a_c01397{transform:matrix(0.090384,0.000452,-0.001250,0.249997,0,0);-ms-transform:matrix(0.090384,0.000452,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.090384,0.000452,-0.001250,0.249997,0,0);}
.m32_c01397{transform:matrix(0.093934,0.001033,-0.002750,0.249985,0,0);-ms-transform:matrix(0.093934,0.001033,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.093934,0.001033,-0.002750,0.249985,0,0);}
.m29_c01397{transform:matrix(0.112500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112500,0.000000,0.000000,0.250000,0,0);}
.mb1_c01397{transform:matrix(0.118795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118795,0.000000,0.000000,0.250000,0,0);}
.mf_c01397{transform:matrix(0.133370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133370,0.000000,0.000000,0.250000,0,0);}
.m6c_c01397{transform:matrix(0.134443,0.000672,-0.001250,0.249997,0,0);-ms-transform:matrix(0.134443,0.000672,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.134443,0.000672,-0.001250,0.249997,0,0);}
.mc1_c01397{transform:matrix(0.135470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135470,0.000000,0.000000,0.250000,0,0);}
.m23_c01397{transform:matrix(0.143435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143435,0.000000,0.000000,0.250000,0,0);}
.m9c_c01397{transform:matrix(0.146505,0.001172,-0.002000,0.249992,0,0);-ms-transform:matrix(0.146505,0.001172,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.146505,0.001172,-0.002000,0.249992,0,0);}
.m12_c01397{transform:matrix(0.147050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147050,0.000000,0.000000,0.250000,0,0);}
.m15_c01397{transform:matrix(0.147875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147875,0.000000,0.000000,0.250000,0,0);}
.m1_c01397{transform:matrix(0.149495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149495,0.000000,0.000000,0.250000,0,0);}
.m16_c01397{transform:matrix(0.155105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155105,0.000000,0.000000,0.250000,0,0);}
.m4f_c01397{transform:matrix(0.156226,0.001718,-0.002750,0.249985,0,0);-ms-transform:matrix(0.156226,0.001718,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.156226,0.001718,-0.002750,0.249985,0,0);}
.m70_c01397{transform:matrix(0.162353,0.000812,-0.001250,0.249997,0,0);-ms-transform:matrix(0.162353,0.000812,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.162353,0.000812,-0.001250,0.249997,0,0);}
.m17_c01397{transform:matrix(0.162870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162870,0.000000,0.000000,0.250000,0,0);}
.m19_c01397{transform:matrix(0.163835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163835,0.000000,0.000000,0.250000,0,0);}
.m1f_c01397{transform:matrix(0.168025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168025,0.000000,0.000000,0.250000,0,0);}
.m10_c01397{transform:matrix(0.168355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168355,0.000000,0.000000,0.250000,0,0);}
.m1a_c01397{transform:matrix(0.169330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169330,0.000000,0.000000,0.250000,0,0);}
.mb6_c01397{transform:matrix(0.169395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169395,0.000000,0.000000,0.250000,0,0);}
.m6e_c01397{transform:matrix(0.169538,0.000848,-0.001250,0.249997,0,0);-ms-transform:matrix(0.169538,0.000848,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.169538,0.000848,-0.001250,0.249997,0,0);}
.m13_c01397{transform:matrix(0.171255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171255,0.000000,0.000000,0.250000,0,0);}
.m21_c01397{transform:matrix(0.171895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171895,0.000000,0.000000,0.250000,0,0);}
.m41_c01397{transform:matrix(0.172890,0.001902,-0.002750,0.249985,0,0);-ms-transform:matrix(0.172890,0.001902,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.172890,0.001902,-0.002750,0.249985,0,0);}
.m24_c01397{transform:matrix(0.174445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174445,0.000000,0.000000,0.250000,0,0);}
.m55_c01397{transform:matrix(0.176139,0.001938,-0.002750,0.249985,0,0);-ms-transform:matrix(0.176139,0.001938,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.176139,0.001938,-0.002750,0.249985,0,0);}
.m11_c01397{transform:matrix(0.177115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177115,0.000000,0.000000,0.250000,0,0);}
.m9d_c01397{transform:matrix(0.179394,0.001435,-0.002000,0.249992,0,0);-ms-transform:matrix(0.179394,0.001435,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.179394,0.001435,-0.002000,0.249992,0,0);}
.m47_c01397{transform:matrix(0.179684,0.001977,-0.002750,0.249985,0,0);-ms-transform:matrix(0.179684,0.001977,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.179684,0.001977,-0.002750,0.249985,0,0);}
.m4b_c01397{transform:matrix(0.179929,0.001979,-0.002750,0.249985,0,0);-ms-transform:matrix(0.179929,0.001979,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.179929,0.001979,-0.002750,0.249985,0,0);}
.m6b_c01397{transform:matrix(0.180198,0.000901,-0.001250,0.249997,0,0);-ms-transform:matrix(0.180198,0.000901,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.180198,0.000901,-0.001250,0.249997,0,0);}
.m26_c01397{transform:matrix(0.180435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180435,0.000000,0.000000,0.250000,0,0);}
.m52_c01397{transform:matrix(0.183009,0.002013,-0.002750,0.249985,0,0);-ms-transform:matrix(0.183009,0.002013,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.183009,0.002013,-0.002750,0.249985,0,0);}
.m0_c01397{transform:matrix(0.184800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184800,0.000000,0.000000,0.250000,0,0);}
.m18_c01397{transform:matrix(0.185540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185540,0.000000,0.000000,0.250000,0,0);}
.m39_c01397{transform:matrix(0.185604,0.002042,-0.002750,0.249985,0,0);-ms-transform:matrix(0.185604,0.002042,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.185604,0.002042,-0.002750,0.249985,0,0);}
.m14_c01397{transform:matrix(0.185770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185770,0.000000,0.000000,0.250000,0,0);}
.m51_c01397{transform:matrix(0.186489,0.002051,-0.002750,0.249985,0,0);-ms-transform:matrix(0.186489,0.002051,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.186489,0.002051,-0.002750,0.249985,0,0);}
.m20_c01397{transform:matrix(0.189665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189665,0.000000,0.000000,0.250000,0,0);}
.m3_c01397{transform:matrix(0.189785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189785,0.000000,0.000000,0.250000,0,0);}
.m22_c01397{transform:matrix(0.189810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189810,0.000000,0.000000,0.250000,0,0);}
.m46_c01397{transform:matrix(0.190493,0.002095,-0.002750,0.249985,0,0);-ms-transform:matrix(0.190493,0.002095,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.190493,0.002095,-0.002750,0.249985,0,0);}
.mbe_c01397{transform:matrix(0.191215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191215,0.000000,0.000000,0.250000,0,0);}
.m25_c01397{transform:matrix(0.192060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192060,0.000000,0.000000,0.250000,0,0);}
.m3d_c01397{transform:matrix(0.192088,0.002113,-0.002750,0.249985,0,0);-ms-transform:matrix(0.192088,0.002113,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.192088,0.002113,-0.002750,0.249985,0,0);}
.m58_c01397{transform:matrix(0.193058,0.002124,-0.002750,0.249985,0,0);-ms-transform:matrix(0.193058,0.002124,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.193058,0.002124,-0.002750,0.249985,0,0);}
.m2e_c01397{transform:matrix(0.194005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194005,0.000000,0.000000,0.250000,0,0);}
.m72_c01397{transform:matrix(0.196048,0.000980,-0.001250,0.249997,0,0);-ms-transform:matrix(0.196048,0.000980,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.196048,0.000980,-0.001250,0.249997,0,0);}
.m92_c01397{transform:matrix(0.198909,0.001591,-0.002000,0.249992,0,0);-ms-transform:matrix(0.198909,0.001591,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.198909,0.001591,-0.002000,0.249992,0,0);}
.m9f_c01397{transform:matrix(0.202174,0.001617,-0.002000,0.249992,0,0);-ms-transform:matrix(0.202174,0.001617,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.202174,0.001617,-0.002000,0.249992,0,0);}
.m2d_c01397{transform:matrix(0.203825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203825,0.000000,0.000000,0.250000,0,0);}
.m94_c01397{transform:matrix(0.203868,0.001631,-0.002000,0.249992,0,0);-ms-transform:matrix(0.203868,0.001631,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.203868,0.001631,-0.002000,0.249992,0,0);}
.m7a_c01397{transform:matrix(0.204272,0.001021,-0.001250,0.249997,0,0);-ms-transform:matrix(0.204272,0.001021,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.204272,0.001021,-0.001250,0.249997,0,0);}
.mad_c01397{transform:matrix(0.206830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206830,0.000000,0.000000,0.250000,0,0);}
.m59_c01397{transform:matrix(0.207017,0.002277,-0.002750,0.249985,0,0);-ms-transform:matrix(0.207017,0.002277,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.207017,0.002277,-0.002750,0.249985,0,0);}
.m1d_c01397{transform:matrix(0.208255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208255,0.000000,0.000000,0.250000,0,0);}
.m74_c01397{transform:matrix(0.208257,0.001041,-0.001250,0.249997,0,0);-ms-transform:matrix(0.208257,0.001041,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.208257,0.001041,-0.001250,0.249997,0,0);}
.mb8_c01397{transform:matrix(0.208520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208520,0.000000,0.000000,0.250000,0,0);}
.m2f_c01397{transform:matrix(0.210315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210315,0.000000,0.000000,0.250000,0,0);}
.ma6_c01397{transform:matrix(0.211370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211370,0.000000,0.000000,0.250000,0,0);}
.m78_c01397{transform:matrix(0.212492,0.001062,-0.001250,0.249997,0,0);-ms-transform:matrix(0.212492,0.001062,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.212492,0.001062,-0.001250,0.249997,0,0);}
.m3e_c01397{transform:matrix(0.213087,0.002344,-0.002750,0.249985,0,0);-ms-transform:matrix(0.213087,0.002344,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.213087,0.002344,-0.002750,0.249985,0,0);}
.m77_c01397{transform:matrix(0.213257,0.001066,-0.001250,0.249997,0,0);-ms-transform:matrix(0.213257,0.001066,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.213257,0.001066,-0.001250,0.249997,0,0);}
.m56_c01397{transform:matrix(0.213827,0.002352,-0.002750,0.249985,0,0);-ms-transform:matrix(0.213827,0.002352,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.213827,0.002352,-0.002750,0.249985,0,0);}
.m3c_c01397{transform:matrix(0.214267,0.002357,-0.002750,0.249985,0,0);-ms-transform:matrix(0.214267,0.002357,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.214267,0.002357,-0.002750,0.249985,0,0);}
.m2_c01397{transform:matrix(0.214330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214330,0.000000,0.000000,0.250000,0,0);}
.m96_c01397{transform:matrix(0.214643,0.001717,-0.002000,0.249992,0,0);-ms-transform:matrix(0.214643,0.001717,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.214643,0.001717,-0.002000,0.249992,0,0);}
.m1e_c01397{transform:matrix(0.215105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215105,0.000000,0.000000,0.250000,0,0);}
.m50_c01397{transform:matrix(0.216012,0.002376,-0.002750,0.249985,0,0);-ms-transform:matrix(0.216012,0.002376,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.216012,0.002376,-0.002750,0.249985,0,0);}
.m8f_c01397{transform:matrix(0.216203,0.001730,-0.002000,0.249992,0,0);-ms-transform:matrix(0.216203,0.001730,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.216203,0.001730,-0.002000,0.249992,0,0);}
.m79_c01397{transform:matrix(0.216742,0.001084,-0.001250,0.249997,0,0);-ms-transform:matrix(0.216742,0.001084,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.216742,0.001084,-0.001250,0.249997,0,0);}
.m95_c01397{transform:matrix(0.216743,0.001734,-0.002000,0.249992,0,0);-ms-transform:matrix(0.216743,0.001734,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.216743,0.001734,-0.002000,0.249992,0,0);}
.m8e_c01397{transform:matrix(0.218053,0.001744,-0.002000,0.249992,0,0);-ms-transform:matrix(0.218053,0.001744,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.218053,0.001744,-0.002000,0.249992,0,0);}
.m4_c01397{transform:matrix(0.218290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218290,0.000000,0.000000,0.250000,0,0);}
.m6f_c01397{transform:matrix(0.218522,0.001093,-0.001250,0.249997,0,0);-ms-transform:matrix(0.218522,0.001093,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.218522,0.001093,-0.001250,0.249997,0,0);}
.ma9_c01397{transform:matrix(0.219375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219375,0.000000,0.000000,0.250000,0,0);}
.m4d_c01397{transform:matrix(0.220312,0.002423,-0.002750,0.249985,0,0);-ms-transform:matrix(0.220312,0.002423,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.220312,0.002423,-0.002750,0.249985,0,0);}
.m90_c01397{transform:matrix(0.223413,0.001787,-0.002000,0.249992,0,0);-ms-transform:matrix(0.223413,0.001787,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.223413,0.001787,-0.002000,0.249992,0,0);}
.m2c_c01397{transform:matrix(0.224515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224515,0.000000,0.000000,0.250000,0,0);}
.m5_c01397{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.m34_c01397{transform:matrix(0.229511,0.002525,-0.002750,0.249985,0,0);-ms-transform:matrix(0.229511,0.002525,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.229511,0.002525,-0.002750,0.249985,0,0);}
.m5f_c01397{transform:matrix(0.230236,0.002533,-0.002750,0.249985,0,0);-ms-transform:matrix(0.230236,0.002533,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.230236,0.002533,-0.002750,0.249985,0,0);}
.m6d_c01397{transform:matrix(0.231012,0.001155,-0.001250,0.249997,0,0);-ms-transform:matrix(0.231012,0.001155,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.231012,0.001155,-0.001250,0.249997,0,0);}
.m97_c01397{transform:matrix(0.231303,0.001850,-0.002000,0.249992,0,0);-ms-transform:matrix(0.231303,0.001850,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.231303,0.001850,-0.002000,0.249992,0,0);}
.m81_c01397{transform:matrix(0.233487,0.001167,-0.001250,0.249997,0,0);-ms-transform:matrix(0.233487,0.001167,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.233487,0.001167,-0.001250,0.249997,0,0);}
.ma0_c01397{transform:matrix(0.234328,0.001875,-0.002000,0.249992,0,0);-ms-transform:matrix(0.234328,0.001875,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.234328,0.001875,-0.002000,0.249992,0,0);}
.m57_c01397{transform:matrix(0.237826,0.002616,-0.002750,0.249985,0,0);-ms-transform:matrix(0.237826,0.002616,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.237826,0.002616,-0.002750,0.249985,0,0);}
.m30_c01397{transform:matrix(0.238196,0.002620,-0.002750,0.249985,0,0);-ms-transform:matrix(0.238196,0.002620,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.238196,0.002620,-0.002750,0.249985,0,0);}
.m1b_c01397{transform:matrix(0.238240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238240,0.000000,0.000000,0.250000,0,0);}
.m43_c01397{transform:matrix(0.239501,0.002635,-0.002750,0.249985,0,0);-ms-transform:matrix(0.239501,0.002635,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.239501,0.002635,-0.002750,0.249985,0,0);}
.m9_c01397{transform:matrix(0.239775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239775,0.000000,0.000000,0.250000,0,0);}
.m9e_c01397{transform:matrix(0.241237,0.001930,-0.002000,0.249992,0,0);-ms-transform:matrix(0.241237,0.001930,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.241237,0.001930,-0.002000,0.249992,0,0);}
.m3b_c01397{transform:matrix(0.241815,0.002660,-0.002750,0.249985,0,0);-ms-transform:matrix(0.241815,0.002660,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.241815,0.002660,-0.002750,0.249985,0,0);}
.m6_c01397{transform:matrix(0.249440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249440,0.000000,0.000000,0.250000,0,0);}
.m45_c01397{transform:matrix(0.252395,0.002776,-0.002750,0.249985,0,0);-ms-transform:matrix(0.252395,0.002776,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.252395,0.002776,-0.002750,0.249985,0,0);}
.m7_c01397{transform:matrix(0.252485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252485,0.000000,0.000000,0.250000,0,0);}
.m42_c01397{transform:matrix(0.252555,0.002778,-0.002750,0.249985,0,0);-ms-transform:matrix(0.252555,0.002778,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.252555,0.002778,-0.002750,0.249985,0,0);}
.m37_c01397{transform:matrix(0.252670,0.002779,-0.002750,0.249985,0,0);-ms-transform:matrix(0.252670,0.002779,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.252670,0.002779,-0.002750,0.249985,0,0);}
.m36_c01397{transform:matrix(0.253525,0.002789,-0.002750,0.249985,0,0);-ms-transform:matrix(0.253525,0.002789,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.253525,0.002789,-0.002750,0.249985,0,0);}
.m73_c01397{transform:matrix(0.255437,0.001277,-0.001250,0.249997,0,0);-ms-transform:matrix(0.255437,0.001277,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.255437,0.001277,-0.001250,0.249997,0,0);}
.m64_c01397{transform:matrix(0.256540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256540,0.000000,0.000000,0.250000,0,0);}
.m60_c01397{transform:matrix(0.258009,0.002838,-0.002750,0.249985,0,0);-ms-transform:matrix(0.258009,0.002838,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.258009,0.002838,-0.002750,0.249985,0,0);}
.m48_c01397{transform:matrix(0.261104,0.002872,-0.002750,0.249985,0,0);-ms-transform:matrix(0.261104,0.002872,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.261104,0.002872,-0.002750,0.249985,0,0);}
.m53_c01397{transform:matrix(0.262829,0.002891,-0.002750,0.249985,0,0);-ms-transform:matrix(0.262829,0.002891,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.262829,0.002891,-0.002750,0.249985,0,0);}
.m91_c01397{transform:matrix(0.265182,0.002121,-0.002000,0.249992,0,0);-ms-transform:matrix(0.265182,0.002121,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.265182,0.002121,-0.002000,0.249992,0,0);}
.m35_c01397{transform:matrix(0.265489,0.002920,-0.002750,0.249985,0,0);-ms-transform:matrix(0.265489,0.002920,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.265489,0.002920,-0.002750,0.249985,0,0);}
.m93_c01397{transform:matrix(0.265811,0.002126,-0.002000,0.249992,0,0);-ms-transform:matrix(0.265811,0.002126,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.265811,0.002126,-0.002000,0.249992,0,0);}
.m4e_c01397{transform:matrix(0.265934,0.002925,-0.002750,0.249985,0,0);-ms-transform:matrix(0.265934,0.002925,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.265934,0.002925,-0.002750,0.249985,0,0);}
.m83_c01397{transform:matrix(0.267612,0.001338,-0.001250,0.249997,0,0);-ms-transform:matrix(0.267612,0.001338,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.267612,0.001338,-0.001250,0.249997,0,0);}
.m5b_c01397{transform:matrix(0.267649,0.002944,-0.002750,0.249985,0,0);-ms-transform:matrix(0.267649,0.002944,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.267649,0.002944,-0.002750,0.249985,0,0);}
.m1c_c01397{transform:matrix(0.268035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268035,0.000000,0.000000,0.250000,0,0);}
.m80_c01397{transform:matrix(0.268562,0.001343,-0.001250,0.249997,0,0);-ms-transform:matrix(0.268562,0.001343,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.268562,0.001343,-0.001250,0.249997,0,0);}
.m67_c01397{transform:matrix(0.271870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271870,0.000000,0.000000,0.250000,0,0);}
.m99_c01397{transform:matrix(0.272591,0.002181,-0.002000,0.249992,0,0);-ms-transform:matrix(0.272591,0.002181,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.272591,0.002181,-0.002000,0.249992,0,0);}
.m5a_c01397{transform:matrix(0.274688,0.003022,-0.002750,0.249985,0,0);-ms-transform:matrix(0.274688,0.003022,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.274688,0.003022,-0.002750,0.249985,0,0);}
.m7f_c01397{transform:matrix(0.275262,0.001376,-0.001250,0.249997,0,0);-ms-transform:matrix(0.275262,0.001376,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.275262,0.001376,-0.001250,0.249997,0,0);}
.m33_c01397{transform:matrix(0.277978,0.003058,-0.002750,0.249985,0,0);-ms-transform:matrix(0.277978,0.003058,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.277978,0.003058,-0.002750,0.249985,0,0);}
.m87_c01397{transform:matrix(0.281001,0.001405,-0.001250,0.249997,0,0);-ms-transform:matrix(0.281001,0.001405,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.281001,0.001405,-0.001250,0.249997,0,0);}
.me_c01397{transform:matrix(0.283285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283285,0.000000,0.000000,0.250000,0,0);}
.m8_c01397{transform:matrix(0.289935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289935,0.000000,0.000000,0.250000,0,0);}
.mba_c01397{transform:matrix(0.291245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291245,0.000000,0.000000,0.250000,0,0);}
.m82_c01397{transform:matrix(0.292896,0.001464,-0.001250,0.249997,0,0);-ms-transform:matrix(0.292896,0.001464,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.292896,0.001464,-0.001250,0.249997,0,0);}
.m8d_c01397{transform:matrix(0.295516,0.002364,-0.002000,0.249992,0,0);-ms-transform:matrix(0.295516,0.002364,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.295516,0.002364,-0.002000,0.249992,0,0);}
.mb4_c01397{transform:matrix(0.297320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297320,0.000000,0.000000,0.250000,0,0);}
.m2a_c01397{transform:matrix(0.297700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297700,0.000000,0.000000,0.250000,0,0);}
.m44_c01397{transform:matrix(0.298762,0.003286,-0.002750,0.249985,0,0);-ms-transform:matrix(0.298762,0.003286,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.298762,0.003286,-0.002750,0.249985,0,0);}
.m7d_c01397{transform:matrix(0.302141,0.001511,-0.001250,0.249997,0,0);-ms-transform:matrix(0.302141,0.001511,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.302141,0.001511,-0.001250,0.249997,0,0);}
.md_c01397{transform:matrix(0.303265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303265,0.000000,0.000000,0.250000,0,0);}
.mb5_c01397{transform:matrix(0.308870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308870,0.000000,0.000000,0.250000,0,0);}
.mb_c01397{transform:matrix(0.309655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309655,0.000000,0.000000,0.250000,0,0);}
.m75_c01397{transform:matrix(0.311036,0.001555,-0.001250,0.249997,0,0);-ms-transform:matrix(0.311036,0.001555,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.311036,0.001555,-0.001250,0.249997,0,0);}
.m88_c01397{transform:matrix(0.314676,0.001573,-0.001250,0.249997,0,0);-ms-transform:matrix(0.314676,0.001573,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.314676,0.001573,-0.001250,0.249997,0,0);}
.m3a_c01397{transform:matrix(0.317086,0.003488,-0.002750,0.249985,0,0);-ms-transform:matrix(0.317086,0.003488,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.317086,0.003488,-0.002750,0.249985,0,0);}
.m7e_c01397{transform:matrix(0.317311,0.001587,-0.001250,0.249997,0,0);-ms-transform:matrix(0.317311,0.001587,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.317311,0.001587,-0.001250,0.249997,0,0);}
.m98_c01397{transform:matrix(0.321020,0.002568,-0.002000,0.249992,0,0);-ms-transform:matrix(0.321020,0.002568,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.321020,0.002568,-0.002000,0.249992,0,0);}
.m71_c01397{transform:matrix(0.323571,0.001618,-0.001250,0.249997,0,0);-ms-transform:matrix(0.323571,0.001618,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.323571,0.001618,-0.001250,0.249997,0,0);}
.m5d_c01397{transform:matrix(0.324600,0.003571,-0.002750,0.249985,0,0);-ms-transform:matrix(0.324600,0.003571,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.324600,0.003571,-0.002750,0.249985,0,0);}
.m89_c01397{transform:matrix(0.325956,0.001630,-0.001250,0.249997,0,0);-ms-transform:matrix(0.325956,0.001630,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.325956,0.001630,-0.001250,0.249997,0,0);}
.m65_c01397{transform:matrix(0.332040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332040,0.000000,0.000000,0.250000,0,0);}
.mc_c01397{transform:matrix(0.332680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332680,0.000000,0.000000,0.250000,0,0);}
.m8a_c01397{transform:matrix(0.333181,0.001666,-0.001250,0.249997,0,0);-ms-transform:matrix(0.333181,0.001666,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.333181,0.001666,-0.001250,0.249997,0,0);}
.mb9_c01397{transform:matrix(0.346300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346300,0.000000,0.000000,0.250000,0,0);}
.m4a_c01397{transform:matrix(0.349519,0.003845,-0.002750,0.249985,0,0);-ms-transform:matrix(0.349519,0.003845,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.349519,0.003845,-0.002750,0.249985,0,0);}
.ma_c01397{transform:matrix(0.351965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351965,0.000000,0.000000,0.250000,0,0);}
.m5c_c01397{transform:matrix(0.352479,0.003877,-0.002750,0.249985,0,0);-ms-transform:matrix(0.352479,0.003877,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.352479,0.003877,-0.002750,0.249985,0,0);}
.m76_c01397{transform:matrix(0.361610,0.001808,-0.001250,0.249997,0,0);-ms-transform:matrix(0.361610,0.001808,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.361610,0.001808,-0.001250,0.249997,0,0);}
.m9a_c01397{transform:matrix(0.362143,0.002897,-0.002000,0.249992,0,0);-ms-transform:matrix(0.362143,0.002897,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.362143,0.002897,-0.002000,0.249992,0,0);}
.mb7_c01397{transform:matrix(0.378175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378175,0.000000,0.000000,0.250000,0,0);}
.mc0_c01397{transform:matrix(0.380670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380670,0.000000,0.000000,0.250000,0,0);}
.m7b_c01397{transform:matrix(0.386015,0.001930,-0.001250,0.249997,0,0);-ms-transform:matrix(0.386015,0.001930,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.386015,0.001930,-0.001250,0.249997,0,0);}
.m54_c01397{transform:matrix(0.393411,0.004328,-0.002750,0.249985,0,0);-ms-transform:matrix(0.393411,0.004328,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.393411,0.004328,-0.002750,0.249985,0,0);}
.m38_c01397{transform:matrix(0.401621,0.004418,-0.002750,0.249985,0,0);-ms-transform:matrix(0.401621,0.004418,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.401621,0.004418,-0.002750,0.249985,0,0);}
.ma2_c01397{transform:matrix(0.409420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409420,0.000000,0.000000,0.250000,0,0);}
.mb0_c01397{transform:matrix(0.411950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411950,0.000000,0.000000,0.250000,0,0);}
.m4c_c01397{transform:matrix(0.413400,0.004547,-0.002750,0.249985,0,0);-ms-transform:matrix(0.413400,0.004547,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.413400,0.004547,-0.002750,0.249985,0,0);}
.m2b_c01397{transform:matrix(0.419675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419675,0.000000,0.000000,0.250000,0,0);}
.m63_c01397{transform:matrix(0.432795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432795,0.000000,0.000000,0.250000,0,0);}
.m85_c01397{transform:matrix(0.451694,0.002258,-0.001250,0.249997,0,0);-ms-transform:matrix(0.451694,0.002258,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.451694,0.002258,-0.001250,0.249997,0,0);}
.m49_c01397{transform:matrix(0.452248,0.004975,-0.002750,0.249985,0,0);-ms-transform:matrix(0.452248,0.004975,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.452248,0.004975,-0.002750,0.249985,0,0);}
.m84_c01397{transform:matrix(0.453524,0.002268,-0.001250,0.249997,0,0);-ms-transform:matrix(0.453524,0.002268,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.453524,0.002268,-0.001250,0.249997,0,0);}
.mb3_c01397{transform:matrix(0.455410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455410,0.000000,0.000000,0.250000,0,0);}
.ma8_c01397{transform:matrix(0.460050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460050,0.000000,0.000000,0.250000,0,0);}
.mbd_c01397{transform:matrix(0.466165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466165,0.000000,0.000000,0.250000,0,0);}
.maf_c01397{transform:matrix(0.469815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469815,0.000000,0.000000,0.250000,0,0);}
.mbf_c01397{transform:matrix(0.480525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480525,0.000000,0.000000,0.250000,0,0);}
.mbc_c01397{transform:matrix(0.491405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491405,0.000000,0.000000,0.250000,0,0);}
.ma5_c01397{transform:matrix(0.498185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.498185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.498185,0.000000,0.000000,0.250000,0,0);}
.ma3_c01397{transform:matrix(0.530330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530330,0.000000,0.000000,0.250000,0,0);}
.m62_c01397{transform:matrix(0.543415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.543415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.543415,0.000000,0.000000,0.250000,0,0);}
.m86_c01397{transform:matrix(0.549548,0.002748,-0.001250,0.249997,0,0);-ms-transform:matrix(0.549548,0.002748,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.549548,0.002748,-0.001250,0.249997,0,0);}
.mac_c01397{transform:matrix(0.554000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554000,0.000000,0.000000,0.250000,0,0);}
.m8b_c01397{transform:matrix(0.567123,0.002836,-0.001250,0.249997,0,0);-ms-transform:matrix(0.567123,0.002836,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.567123,0.002836,-0.001250,0.249997,0,0);}
.m5e_c01397{transform:matrix(0.570410,0.006275,-0.002750,0.249985,0,0);-ms-transform:matrix(0.570410,0.006275,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.570410,0.006275,-0.002750,0.249985,0,0);}
.mbb_c01397{transform:matrix(0.735480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735480,0.000000,0.000000,0.250000,0,0);}
.mb2_c01397{transform:matrix(0.912415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.912415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.912415,0.000000,0.000000,0.250000,0,0);}
.maa_c01397{transform:matrix(1.041460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.041460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.041460,0.000000,0.000000,0.250000,0,0);}
.ma1_c01397{transform:matrix(1.118180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.118180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.118180,0.000000,0.000000,0.250000,0,0);}
.mae_c01397{transform:matrix(1.148715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.148715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.148715,0.000000,0.000000,0.250000,0,0);}
.m61_c01397{transform:matrix(1.601320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.601320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.601320,0.000000,0.000000,0.250000,0,0);}
.ma4_c01397{transform:matrix(1.841500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.841500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.841500,0.000000,0.000000,0.250000,0,0);}
.v0_c01397{vertical-align:0.000000px;}
.v1_c01397{vertical-align:1.986064px;}
.ls0_c01397{letter-spacing:0.000000px;}
.sc__c01397{text-shadow:none;}
.sc0_c01397{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__c01397{-webkit-text-stroke:0px transparent;}
.sc0_c01397{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01397{word-spacing:0.000000px;}
._0_c01397{margin-left:-23.384399px;}
._1_c01397{width:4191.033100px;}
.fc0_c01397{color:transparent;}
.fsa_c01397{font-size:12.000000px;}
.fs12_c01397{font-size:18.000000px;}
.fs13_c01397{font-size:24.000000px;}
.fs14_c01397{font-size:30.000000px;}
.fs9_c01397{font-size:54.000000px;}
.fsd_c01397{font-size:78.000975px;}
.fs1_c01397{font-size:84.000000px;}
.fs11_c01397{font-size:84.002688px;}
.fsf_c01397{font-size:90.002880px;}
.fs5_c01397{font-size:90.005445px;}
.fs4_c01397{font-size:96.000000px;}
.fsc_c01397{font-size:96.001200px;}
.fs8_c01397{font-size:96.005808px;}
.fs7_c01397{font-size:102.006171px;}
.fse_c01397{font-size:108.001350px;}
.fs6_c01397{font-size:108.006534px;}
.fsb_c01397{font-size:114.001425px;}
.fs0_c01397{font-size:120.000000px;}
.fs10_c01397{font-size:120.003840px;}
.fs3_c01397{font-size:126.000000px;}
.fs2_c01397{font-size:132.000000px;}
.y0_c01397{bottom:0.000000px;}
.y80_c01397{bottom:307.530000px;}
.y82_c01397{bottom:322.110000px;}
.y78_c01397{bottom:322.338204px;}
.y77_c01397{bottom:323.046000px;}
.y76_c01397{bottom:324.370308px;}
.y81_c01397{bottom:327.780000px;}
.y74_c01397{bottom:355.876932px;}
.y75_c01397{bottom:355.877124px;}
.y73_c01397{bottom:355.877748px;}
.y72_c01397{bottom:394.742064px;}
.y71_c01397{bottom:395.193492px;}
.y70_c01397{bottom:395.733480px;}
.y6f_c01397{bottom:395.914020px;}
.y6e_c01397{bottom:396.335436px;}
.y6d_c01397{bottom:396.599280px;}
.y6c_c01397{bottom:396.936468px;}
.y6b_c01397{bottom:397.383612px;}
.y6a_c01397{bottom:397.718388px;}
.y69_c01397{bottom:398.258460px;}
.y68_c01397{bottom:398.619012px;}
.y67_c01397{bottom:398.979324px;}
.y66_c01397{bottom:399.582492px;}
.y65_c01397{bottom:400.062000px;}
.y7e_c01397{bottom:401.760000px;}
.y7f_c01397{bottom:404.190000px;}
.y7c_c01397{bottom:414.990000px;}
.y7d_c01397{bottom:417.960000px;}
.y7a_c01397{bottom:426.330000px;}
.y7b_c01397{bottom:427.140000px;}
.y64_c01397{bottom:428.054243px;}
.y61_c01397{bottom:428.054378px;}
.y62_c01397{bottom:428.054677px;}
.y63_c01397{bottom:428.054835px;}
.y60_c01397{bottom:428.055120px;}
.y5d_c01397{bottom:428.055698px;}
.y5f_c01397{bottom:428.055863px;}
.y5e_c01397{bottom:428.056305px;}
.y79_c01397{bottom:456.570000px;}
.y5a_c01397{bottom:467.216460px;}
.y5b_c01397{bottom:467.216910px;}
.y55_c01397{bottom:467.217173px;}
.y59_c01397{bottom:467.217202px;}
.y5c_c01397{bottom:467.217217px;}
.y56_c01397{bottom:467.217337px;}
.y57_c01397{bottom:467.217645px;}
.y58_c01397{bottom:467.217652px;}
.y53_c01397{bottom:501.812273px;}
.y4d_c01397{bottom:501.812393px;}
.y52_c01397{bottom:501.812415px;}
.y54_c01397{bottom:501.812430px;}
.y4c_c01397{bottom:501.812535px;}
.y4e_c01397{bottom:501.812692px;}
.y4f_c01397{bottom:501.812992px;}
.y51_c01397{bottom:501.813008px;}
.y50_c01397{bottom:501.813150px;}
.y4b_c01397{bottom:536.986058px;}
.y4a_c01397{bottom:537.151057px;}
.y49_c01397{bottom:537.627787px;}
.y48_c01397{bottom:538.020495px;}
.y47_c01397{bottom:538.166018px;}
.y46_c01397{bottom:538.517310px;}
.y45_c01397{bottom:538.635930px;}
.y44_c01397{bottom:538.765035px;}
.y43_c01397{bottom:540.270000px;}
.y42_c01397{bottom:668.250000px;}
.y40_c01397{bottom:690.660000px;}
.y3a_c01397{bottom:713.059237px;}
.y3b_c01397{bottom:713.499474px;}
.y3c_c01397{bottom:713.974716px;}
.y3d_c01397{bottom:714.747241px;}
.y3e_c01397{bottom:715.073322px;}
.y3f_c01397{bottom:715.830057px;}
.y41_c01397{bottom:718.470000px;}
.y39_c01397{bottom:750.712813px;}
.y36_c01397{bottom:750.713031px;}
.y35_c01397{bottom:750.713221px;}
.y38_c01397{bottom:750.713277px;}
.y37_c01397{bottom:750.713694px;}
.y34_c01397{bottom:750.713758px;}
.y33_c01397{bottom:750.713799px;}
.y32_c01397{bottom:785.011008px;}
.y31_c01397{bottom:785.320432px;}
.y30_c01397{bottom:785.793879px;}
.y2f_c01397{bottom:786.087886px;}
.y2e_c01397{bottom:786.362302px;}
.y2d_c01397{bottom:786.684915px;}
.y2c_c01397{bottom:787.389960px;}
.y2b_c01397{bottom:788.146603px;}
.y2a_c01397{bottom:788.526609px;}
.y29_c01397{bottom:788.665921px;}
.y1d_c01397{bottom:821.242780px;}
.y1e_c01397{bottom:821.242800px;}
.y1f_c01397{bottom:821.242863px;}
.y20_c01397{bottom:821.243556px;}
.y21_c01397{bottom:821.243589px;}
.y22_c01397{bottom:821.244025px;}
.y23_c01397{bottom:821.244538px;}
.y27_c01397{bottom:821.244594px;}
.y24_c01397{bottom:821.244631px;}
.y25_c01397{bottom:821.244814px;}
.y28_c01397{bottom:821.244897px;}
.y26_c01397{bottom:821.245311px;}
.y1a_c01397{bottom:858.093433px;}
.y1b_c01397{bottom:858.093649px;}
.y1c_c01397{bottom:858.094026px;}
.y19_c01397{bottom:858.094101px;}
.y18_c01397{bottom:858.094474px;}
.y17_c01397{bottom:858.094845px;}
.y16_c01397{bottom:892.378185px;}
.y15_c01397{bottom:893.113887px;}
.y14_c01397{bottom:893.627021px;}
.y13_c01397{bottom:894.124842px;}
.y12_c01397{bottom:894.916050px;}
.y11_c01397{bottom:895.727404px;}
.y10_c01397{bottom:896.366004px;}
.yf_c01397{bottom:896.959344px;}
.ye_c01397{bottom:897.478500px;}
.yd_c01397{bottom:964.536000px;}
.yc_c01397{bottom:964.846500px;}
.yb_c01397{bottom:965.398500px;}
.ya_c01397{bottom:965.860500px;}
.y9_c01397{bottom:966.373500px;}
.y8_c01397{bottom:967.116000px;}
.y7_c01397{bottom:967.326000px;}
.y6_c01397{bottom:968.379000px;}
.y5_c01397{bottom:969.030000px;}
.y4_c01397{bottom:998.664000px;}
.y3_c01397{bottom:1035.072000px;}
.y2_c01397{bottom:1072.261500px;}
.y1_c01397{bottom:1192.186500px;}
.hc_c01397{height:12.000000px;}
.h15_c01397{height:18.000000px;}
.h16_c01397{height:24.000000px;}
.h17_c01397{height:30.000000px;}
.hb_c01397{height:54.000000px;}
.hf_c01397{height:78.000975px;}
.h3_c01397{height:84.000000px;}
.h14_c01397{height:84.002688px;}
.h11_c01397{height:90.002880px;}
.h7_c01397{height:90.005445px;}
.h6_c01397{height:96.000000px;}
.he_c01397{height:96.001200px;}
.ha_c01397{height:96.005808px;}
.h9_c01397{height:102.006171px;}
.h10_c01397{height:108.001350px;}
.h8_c01397{height:108.006534px;}
.hd_c01397{height:114.001425px;}
.h2_c01397{height:120.000000px;}
.h13_c01397{height:120.003840px;}
.h12_c01397{height:121.989903px;}
.h5_c01397{height:126.000000px;}
.h4_c01397{height:132.000000px;}
.h1_c01397{height:1250.250000px;}
.h0_c01397{height:1250.370000px;}
.w0_c01397{width:878.850000px;}
.w1_c01397{width:879.000000px;}
.x0_c01397{left:0.000000px;}
.x10_c01397{left:1.620000px;}
.x7c_c01397{left:6.859500px;}
.x60_c01397{left:10.297500px;}
.x4_c01397{left:16.200000px;}
.x1b_c01397{left:19.710000px;}
.x26_c01397{left:27.118500px;}
.x11_c01397{left:52.110000px;}
.x5_c01397{left:53.730000px;}
.x1c_c01397{left:61.560000px;}
.x75_c01397{left:65.876835px;}
.x69_c01397{left:86.128613px;}
.x12_c01397{left:88.290000px;}
.x27_c01397{left:92.200500px;}
.x6_c01397{left:102.330000px;}
.x45_c01397{left:111.605701px;}
.x1d_c01397{left:113.130000px;}
.x3b_c01397{left:118.795873px;}
.x7_c01397{left:126.090000px;}
.x46_c01397{left:129.043779px;}
.x76_c01397{left:137.967135px;}
.x7d_c01397{left:142.194000px;}
.x6a_c01397{left:153.630300px;}
.x13_c01397{left:170.370000px;}
.x36_c01397{left:173.338296px;}
.x47_c01397{left:176.545846px;}
.x8_c01397{left:182.520000px;}
.x6b_c01397{left:184.411073px;}
.x3c_c01397{left:186.029508px;}
.x7e_c01397{left:187.233000px;}
.x2e_c01397{left:190.168500px;}
.x1e_c01397{left:193.320000px;}
.x28_c01397{left:197.463000px;}
.x6e_c01397{left:208.169692px;}
.x14_c01397{left:210.330000px;}
.x29_c01397{left:218.445000px;}
.x3d_c01397{left:226.801442px;}
.x7f_c01397{left:232.302000px;}
.x1f_c01397{left:234.900000px;}
.x2f_c01397{left:237.364500px;}
.x37_c01397{left:250.563135px;}
.x77_c01397{left:258.118635px;}
.x15_c01397{left:268.650000px;}
.x48_c01397{left:271.107465px;}
.x9_c01397{left:282.420000px;}
.x4f_c01397{left:284.856739px;}
.x38_c01397{left:287.556106px;}
.x30_c01397{left:291.304500px;}
.x2a_c01397{left:292.720500px;}
.x80_c01397{left:299.811000px;}
.x6f_c01397{left:308.610705px;}
.x61_c01397{left:311.290500px;}
.x16_c01397{left:314.280000px;}
.xa_c01397{left:325.080000px;}
.x3e_c01397{left:327.247602px;}
.x20_c01397{left:330.210000px;}
.x62_c01397{left:337.111500px;}
.x81_c01397{left:341.658000px;}
.x2b_c01397{left:344.047500px;}
.x31_c01397{left:349.359000px;}
.x50_c01397{left:351.550308px;}
.x1_c01397{left:353.160000px;}
.x3f_c01397{left:358.029831px;}
.x49_c01397{left:359.205369px;}
.x63_c01397{left:360.835500px;}
.x70_c01397{left:376.110893px;}
.x78_c01397{left:378.270135px;}
.x2_c01397{left:380.970000px;}
.x2c_c01397{left:390.193500px;}
.xb_c01397{left:392.310000px;}
.x17_c01397{left:393.390000px;}
.x55_c01397{left:395.535822px;}
.x82_c01397{left:397.551000px;}
.x4a_c01397{left:399.444189px;}
.x21_c01397{left:401.760000px;}
.x40_c01397{left:402.852260px;}
.x79_c01397{left:408.510892px;}
.x8b_c01397{left:411.866424px;}
.x88_c01397{left:416.626272px;}
.x6c_c01397{left:418.232415px;}
.x3_c01397{left:422.820000px;}
.x71_c01397{left:427.412175px;}
.x64_c01397{left:431.094000px;}
.x4b_c01397{left:433.801327px;}
.x83_c01397{left:439.699500px;}
.x56_c01397{left:443.024794px;}
.xc_c01397{left:446.040000px;}
.x72_c01397{left:456.302895px;}
.x22_c01397{left:457.920000px;}
.x65_c01397{left:460.198500px;}
.x4c_c01397{left:470.485032px;}
.x84_c01397{left:472.680000px;}
.x18_c01397{left:474.660000px;}
.x2d_c01397{left:476.341500px;}
.xd_c01397{left:478.170000px;}
.x51_c01397{left:479.268252px;}
.x23_c01397{left:482.220000px;}
.x7a_c01397{left:492.481492px;}
.x32_c01397{left:495.046500px;}
.x39_c01397{left:511.669716px;}
.x41_c01397{left:512.749558px;}
.x89_c01397{left:517.609728px;}
.x8c_c01397{left:518.870016px;}
.x57_c01397{left:520.222131px;}
.xe_c01397{left:522.720000px;}
.x52_c01397{left:525.440845px;}
.x4d_c01397{left:529.618479px;}
.x19_c01397{left:531.630000px;}
.x66_c01397{left:538.740000px;}
.x33_c01397{left:540.303000px;}
.x3a_c01397{left:541.911879px;}
.x42_c01397{left:544.071853px;}
.x85_c01397{left:547.924500px;}
.x58_c01397{left:552.904171px;}
.xf_c01397{left:556.200000px;}
.x24_c01397{left:562.410000px;}
.x8a_c01397{left:565.401288px;}
.x4e_c01397{left:568.249249px;}
.x73_c01397{left:571.054260px;}
.x53_c01397{left:575.393885px;}
.x25_c01397{left:585.900000px;}
.x34_c01397{left:586.951500px;}
.x1a_c01397{left:596.970000px;}
.x54_c01397{left:598.075124px;}
.x43_c01397{left:604.826196px;}
.x86_c01397{left:615.423000px;}
.x7b_c01397{left:621.003202px;}
.x59_c01397{left:628.536645px;}
.x67_c01397{left:634.086000px;}
.x35_c01397{left:653.833500px;}
.x6d_c01397{left:658.535422px;}
.x44_c01397{left:661.260027px;}
.x68_c01397{left:667.086000px;}
.x74_c01397{left:669.605227px;}
.x87_c01397{left:671.851500px;}
.x93_c01397{left:834.570000px;}
.x5a_c01397{left:837.540000px;}
.x8d_c01397{left:838.620000px;}
.x8e_c01397{left:839.700000px;}
.x5c_c01397{left:844.290000px;}
.x5b_c01397{left:845.370000px;}
.x5e_c01397{left:849.690000px;}
.x5d_c01397{left:850.770000px;}
.x5f_c01397{left:852.930000px;}
.x94_c01397{left:867.780000px;}
.x8f_c01397{left:870.750000px;}
.x90_c01397{left:871.830000px;}
.x91_c01397{left:874.260000px;}
.x95_c01397{left:875.610000px;}
.x96_c01397{left:876.690000px;}
.x92_c01397{left:877.770000px;}
@media print{
.v0_c01397{vertical-align:0.000000pt;}
.v1_c01397{vertical-align:1.765390pt;}
.ls0_c01397{letter-spacing:0.000000pt;}
.ws0_c01397{word-spacing:0.000000pt;}
._0_c01397{margin-left:-20.786133pt;}
._1_c01397{width:3725.362756pt;}
.fsa_c01397{font-size:10.666667pt;}
.fs12_c01397{font-size:16.000000pt;}
.fs13_c01397{font-size:21.333333pt;}
.fs14_c01397{font-size:26.666667pt;}
.fs9_c01397{font-size:48.000000pt;}
.fsd_c01397{font-size:69.334200pt;}
.fs1_c01397{font-size:74.666667pt;}
.fs11_c01397{font-size:74.669056pt;}
.fsf_c01397{font-size:80.002560pt;}
.fs5_c01397{font-size:80.004840pt;}
.fs4_c01397{font-size:85.333333pt;}
.fsc_c01397{font-size:85.334400pt;}
.fs8_c01397{font-size:85.338496pt;}
.fs7_c01397{font-size:90.672152pt;}
.fse_c01397{font-size:96.001200pt;}
.fs6_c01397{font-size:96.005808pt;}
.fsb_c01397{font-size:101.334600pt;}
.fs0_c01397{font-size:106.666667pt;}
.fs10_c01397{font-size:106.670080pt;}
.fs3_c01397{font-size:112.000000pt;}
.fs2_c01397{font-size:117.333333pt;}
.y0_c01397{bottom:0.000000pt;}
.y80_c01397{bottom:273.360000pt;}
.y82_c01397{bottom:286.320000pt;}
.y78_c01397{bottom:286.522848pt;}
.y77_c01397{bottom:287.152000pt;}
.y76_c01397{bottom:288.329163pt;}
.y81_c01397{bottom:291.360000pt;}
.y74_c01397{bottom:316.335051pt;}
.y75_c01397{bottom:316.335221pt;}
.y73_c01397{bottom:316.335776pt;}
.y72_c01397{bottom:350.881835pt;}
.y71_c01397{bottom:351.283104pt;}
.y70_c01397{bottom:351.763093pt;}
.y6f_c01397{bottom:351.923573pt;}
.y6e_c01397{bottom:352.298165pt;}
.y6d_c01397{bottom:352.532693pt;}
.y6c_c01397{bottom:352.832416pt;}
.y6b_c01397{bottom:353.229877pt;}
.y6a_c01397{bottom:353.527456pt;}
.y69_c01397{bottom:354.007520pt;}
.y68_c01397{bottom:354.328011pt;}
.y67_c01397{bottom:354.648288pt;}
.y66_c01397{bottom:355.184437pt;}
.y65_c01397{bottom:355.610667pt;}
.y7e_c01397{bottom:357.120000pt;}
.y7f_c01397{bottom:359.280000pt;}
.y7c_c01397{bottom:368.880000pt;}
.y7d_c01397{bottom:371.520000pt;}
.y7a_c01397{bottom:378.960000pt;}
.y7b_c01397{bottom:379.680000pt;}
.y64_c01397{bottom:380.492660pt;}
.y61_c01397{bottom:380.492780pt;}
.y62_c01397{bottom:380.493047pt;}
.y63_c01397{bottom:380.493187pt;}
.y60_c01397{bottom:380.493440pt;}
.y5d_c01397{bottom:380.493953pt;}
.y5f_c01397{bottom:380.494100pt;}
.y5e_c01397{bottom:380.494493pt;}
.y79_c01397{bottom:405.840000pt;}
.y5a_c01397{bottom:415.303520pt;}
.y5b_c01397{bottom:415.303920pt;}
.y55_c01397{bottom:415.304153pt;}
.y59_c01397{bottom:415.304180pt;}
.y5c_c01397{bottom:415.304193pt;}
.y56_c01397{bottom:415.304300pt;}
.y57_c01397{bottom:415.304573pt;}
.y58_c01397{bottom:415.304580pt;}
.y53_c01397{bottom:446.055353pt;}
.y4d_c01397{bottom:446.055460pt;}
.y52_c01397{bottom:446.055480pt;}
.y54_c01397{bottom:446.055493pt;}
.y4c_c01397{bottom:446.055587pt;}
.y4e_c01397{bottom:446.055727pt;}
.y4f_c01397{bottom:446.055993pt;}
.y51_c01397{bottom:446.056007pt;}
.y50_c01397{bottom:446.056133pt;}
.y4b_c01397{bottom:477.320940pt;}
.y4a_c01397{bottom:477.467607pt;}
.y49_c01397{bottom:477.891367pt;}
.y48_c01397{bottom:478.240440pt;}
.y47_c01397{bottom:478.369793pt;}
.y46_c01397{bottom:478.682053pt;}
.y45_c01397{bottom:478.787493pt;}
.y44_c01397{bottom:478.902253pt;}
.y43_c01397{bottom:480.240000pt;}
.y42_c01397{bottom:594.000000pt;}
.y40_c01397{bottom:613.920000pt;}
.y3a_c01397{bottom:633.830433pt;}
.y3b_c01397{bottom:634.221755pt;}
.y3c_c01397{bottom:634.644192pt;}
.y3d_c01397{bottom:635.330881pt;}
.y3e_c01397{bottom:635.620731pt;}
.y3f_c01397{bottom:636.293384pt;}
.y41_c01397{bottom:638.640000pt;}
.y39_c01397{bottom:667.300279pt;}
.y36_c01397{bottom:667.300472pt;}
.y35_c01397{bottom:667.300641pt;}
.y38_c01397{bottom:667.300691pt;}
.y37_c01397{bottom:667.301061pt;}
.y34_c01397{bottom:667.301119pt;}
.y33_c01397{bottom:667.301155pt;}
.y32_c01397{bottom:697.787563pt;}
.y31_c01397{bottom:698.062607pt;}
.y30_c01397{bottom:698.483448pt;}
.y2f_c01397{bottom:698.744788pt;}
.y2e_c01397{bottom:698.988713pt;}
.y2d_c01397{bottom:699.275480pt;}
.y2c_c01397{bottom:699.902187pt;}
.y2b_c01397{bottom:700.574759pt;}
.y2a_c01397{bottom:700.912541pt;}
.y29_c01397{bottom:701.036375pt;}
.y1d_c01397{bottom:729.993583pt;}
.y1e_c01397{bottom:729.993600pt;}
.y1f_c01397{bottom:729.993656pt;}
.y20_c01397{bottom:729.994272pt;}
.y21_c01397{bottom:729.994301pt;}
.y22_c01397{bottom:729.994689pt;}
.y23_c01397{bottom:729.995145pt;}
.y27_c01397{bottom:729.995195pt;}
.y24_c01397{bottom:729.995228pt;}
.y25_c01397{bottom:729.995391pt;}
.y28_c01397{bottom:729.995464pt;}
.y26_c01397{bottom:729.995832pt;}
.y1a_c01397{bottom:762.749719pt;}
.y1b_c01397{bottom:762.749911pt;}
.y1c_c01397{bottom:762.750245pt;}
.y19_c01397{bottom:762.750312pt;}
.y18_c01397{bottom:762.750644pt;}
.y17_c01397{bottom:762.750973pt;}
.y16_c01397{bottom:793.225053pt;}
.y15_c01397{bottom:793.879011pt;}
.y14_c01397{bottom:794.335129pt;}
.y13_c01397{bottom:794.777637pt;}
.y12_c01397{bottom:795.480933pt;}
.y11_c01397{bottom:796.202137pt;}
.y10_c01397{bottom:796.769781pt;}
.yf_c01397{bottom:797.297195pt;}
.ye_c01397{bottom:797.758667pt;}
.yd_c01397{bottom:857.365333pt;}
.yc_c01397{bottom:857.641333pt;}
.yb_c01397{bottom:858.132000pt;}
.ya_c01397{bottom:858.542667pt;}
.y9_c01397{bottom:858.998667pt;}
.y8_c01397{bottom:859.658667pt;}
.y7_c01397{bottom:859.845333pt;}
.y6_c01397{bottom:860.781333pt;}
.y5_c01397{bottom:861.360000pt;}
.y4_c01397{bottom:887.701333pt;}
.y3_c01397{bottom:920.064000pt;}
.y2_c01397{bottom:953.121333pt;}
.y1_c01397{bottom:1059.721333pt;}
.hc_c01397{height:10.666667pt;}
.h15_c01397{height:16.000000pt;}
.h16_c01397{height:21.333333pt;}
.h17_c01397{height:26.666667pt;}
.hb_c01397{height:48.000000pt;}
.hf_c01397{height:69.334200pt;}
.h3_c01397{height:74.666667pt;}
.h14_c01397{height:74.669056pt;}
.h11_c01397{height:80.002560pt;}
.h7_c01397{height:80.004840pt;}
.h6_c01397{height:85.333333pt;}
.he_c01397{height:85.334400pt;}
.ha_c01397{height:85.338496pt;}
.h9_c01397{height:90.672152pt;}
.h10_c01397{height:96.001200pt;}
.h8_c01397{height:96.005808pt;}
.hd_c01397{height:101.334600pt;}
.h2_c01397{height:106.666667pt;}
.h13_c01397{height:106.670080pt;}
.h12_c01397{height:108.435470pt;}
.h5_c01397{height:112.000000pt;}
.h4_c01397{height:117.333333pt;}
.h1_c01397{height:1111.333333pt;}
.h0_c01397{height:1111.440000pt;}
.w0_c01397{width:781.200000pt;}
.w1_c01397{width:781.333333pt;}
.x0_c01397{left:0.000000pt;}
.x10_c01397{left:1.440000pt;}
.x7c_c01397{left:6.097333pt;}
.x60_c01397{left:9.153333pt;}
.x4_c01397{left:14.400000pt;}
.x1b_c01397{left:17.520000pt;}
.x26_c01397{left:24.105333pt;}
.x11_c01397{left:46.320000pt;}
.x5_c01397{left:47.760000pt;}
.x1c_c01397{left:54.720000pt;}
.x75_c01397{left:58.557187pt;}
.x69_c01397{left:76.558767pt;}
.x12_c01397{left:78.480000pt;}
.x27_c01397{left:81.956000pt;}
.x6_c01397{left:90.960000pt;}
.x45_c01397{left:99.205068pt;}
.x1d_c01397{left:100.560000pt;}
.x3b_c01397{left:105.596332pt;}
.x7_c01397{left:112.080000pt;}
.x46_c01397{left:114.705581pt;}
.x76_c01397{left:122.637453pt;}
.x7d_c01397{left:126.394667pt;}
.x6a_c01397{left:136.560267pt;}
.x13_c01397{left:151.440000pt;}
.x36_c01397{left:154.078485pt;}
.x47_c01397{left:156.929641pt;}
.x8_c01397{left:162.240000pt;}
.x6b_c01397{left:163.920953pt;}
.x3c_c01397{left:165.359563pt;}
.x7e_c01397{left:166.429333pt;}
.x2e_c01397{left:169.038667pt;}
.x1e_c01397{left:171.840000pt;}
.x28_c01397{left:175.522667pt;}
.x6e_c01397{left:185.039727pt;}
.x14_c01397{left:186.960000pt;}
.x29_c01397{left:194.173333pt;}
.x3d_c01397{left:201.601281pt;}
.x7f_c01397{left:206.490667pt;}
.x1f_c01397{left:208.800000pt;}
.x2f_c01397{left:210.990667pt;}
.x37_c01397{left:222.722787pt;}
.x77_c01397{left:229.438787pt;}
.x15_c01397{left:238.800000pt;}
.x48_c01397{left:240.984413pt;}
.x9_c01397{left:251.040000pt;}
.x4f_c01397{left:253.205991pt;}
.x38_c01397{left:255.605428pt;}
.x30_c01397{left:258.937333pt;}
.x2a_c01397{left:260.196000pt;}
.x80_c01397{left:266.498667pt;}
.x6f_c01397{left:274.320627pt;}
.x61_c01397{left:276.702667pt;}
.x16_c01397{left:279.360000pt;}
.xa_c01397{left:288.960000pt;}
.x3e_c01397{left:290.886757pt;}
.x20_c01397{left:293.520000pt;}
.x62_c01397{left:299.654667pt;}
.x81_c01397{left:303.696000pt;}
.x2b_c01397{left:305.820000pt;}
.x31_c01397{left:310.541333pt;}
.x50_c01397{left:312.489163pt;}
.x1_c01397{left:313.920000pt;}
.x3f_c01397{left:318.248739pt;}
.x49_c01397{left:319.293661pt;}
.x63_c01397{left:320.742667pt;}
.x70_c01397{left:334.320793pt;}
.x78_c01397{left:336.240120pt;}
.x2_c01397{left:338.640000pt;}
.x2c_c01397{left:346.838667pt;}
.xb_c01397{left:348.720000pt;}
.x17_c01397{left:349.680000pt;}
.x55_c01397{left:351.587397pt;}
.x82_c01397{left:353.378667pt;}
.x4a_c01397{left:355.061501pt;}
.x21_c01397{left:357.120000pt;}
.x40_c01397{left:358.090897pt;}
.x79_c01397{left:363.120793pt;}
.x8b_c01397{left:366.103488pt;}
.x88_c01397{left:370.334464pt;}
.x6c_c01397{left:371.762147pt;}
.x3_c01397{left:375.840000pt;}
.x71_c01397{left:379.921933pt;}
.x64_c01397{left:383.194667pt;}
.x4b_c01397{left:385.601180pt;}
.x83_c01397{left:390.844000pt;}
.x56_c01397{left:393.799817pt;}
.xc_c01397{left:396.480000pt;}
.x72_c01397{left:405.602573pt;}
.x22_c01397{left:407.040000pt;}
.x65_c01397{left:409.065333pt;}
.x4c_c01397{left:418.208917pt;}
.x84_c01397{left:420.160000pt;}
.x18_c01397{left:421.920000pt;}
.x2d_c01397{left:423.414667pt;}
.xd_c01397{left:425.040000pt;}
.x51_c01397{left:426.016224pt;}
.x23_c01397{left:428.640000pt;}
.x7a_c01397{left:437.761327pt;}
.x32_c01397{left:440.041333pt;}
.x39_c01397{left:454.817525pt;}
.x41_c01397{left:455.777385pt;}
.x89_c01397{left:460.097536pt;}
.x8c_c01397{left:461.217792pt;}
.x57_c01397{left:462.419672pt;}
.xe_c01397{left:464.640000pt;}
.x52_c01397{left:467.058529pt;}
.x4d_c01397{left:470.771981pt;}
.x19_c01397{left:472.560000pt;}
.x66_c01397{left:478.880000pt;}
.x33_c01397{left:480.269333pt;}
.x3a_c01397{left:481.699448pt;}
.x42_c01397{left:483.619425pt;}
.x85_c01397{left:487.044000pt;}
.x58_c01397{left:491.470375pt;}
.xf_c01397{left:494.400000pt;}
.x24_c01397{left:499.920000pt;}
.x8a_c01397{left:502.578923pt;}
.x4e_c01397{left:505.110444pt;}
.x73_c01397{left:507.603787pt;}
.x53_c01397{left:511.461231pt;}
.x25_c01397{left:520.800000pt;}
.x34_c01397{left:521.734667pt;}
.x1a_c01397{left:530.640000pt;}
.x54_c01397{left:531.622332pt;}
.x43_c01397{left:537.623285pt;}
.x86_c01397{left:547.042667pt;}
.x7b_c01397{left:552.002847pt;}
.x59_c01397{left:558.699240pt;}
.x67_c01397{left:563.632000pt;}
.x35_c01397{left:581.185333pt;}
.x6d_c01397{left:585.364820pt;}
.x44_c01397{left:587.786691pt;}
.x68_c01397{left:592.965333pt;}
.x74_c01397{left:595.204647pt;}
.x87_c01397{left:597.201333pt;}
.x93_c01397{left:741.840000pt;}
.x5a_c01397{left:744.480000pt;}
.x8d_c01397{left:745.440000pt;}
.x8e_c01397{left:746.400000pt;}
.x5c_c01397{left:750.480000pt;}
.x5b_c01397{left:751.440000pt;}
.x5e_c01397{left:755.280000pt;}
.x5d_c01397{left:756.240000pt;}
.x5f_c01397{left:758.160000pt;}
.x94_c01397{left:771.360000pt;}
.x8f_c01397{left:774.000000pt;}
.x90_c01397{left:774.960000pt;}
.x91_c01397{left:777.120000pt;}
.x95_c01397{left:778.320000pt;}
.x96_c01397{left:779.280000pt;}
.x92_c01397{left:780.240000pt;}
}





/* 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_c01398 {
    display:none;
  }
  .loading-indicator_c01398.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01398 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_c01398 { 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_c01398" -> "#page-container .classname_c01398")
 */
.pf_c01398 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01398 { /* 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_c01398.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01398 { /* 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_c01398 { /* 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_c01398 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01398 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01398 {overflow:visible;}
  }
}
.c_c01398 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01398 { /* 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_c01398:after { /* webkit #35443 */
  content: '';
}
.t_c01398:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01398 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 */
}
.__c01398 { /* 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_c01398 { /* info for Javascript */
  display:none;
}
.l_c01398 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01398 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01398 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01398: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_c01398 {
    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_c01398.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01398.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_c01398 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01398{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01398;src:url('chunks/assets/font_cfe63ee56e9e10a97d33a3db.woff2')format("woff");}.ff1_c01398{font-family:ff1_c01398;line-height:1.000000;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;}
.m149_c01398{transform:matrix(0.134810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134810,0.000000,0.000000,0.250000,0,0);}
.m145_c01398{transform:matrix(0.141510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141510,0.000000,0.000000,0.250000,0,0);}
.m45_c01398{transform:matrix(0.159320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159320,0.000000,0.000000,0.250000,0,0);}
.m0_c01398{transform:matrix(0.165045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165045,0.000000,0.000000,0.250000,0,0);}
.m99_c01398{transform:matrix(0.167705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167705,0.000000,0.000000,0.250000,0,0);}
.m2_c01398{transform:matrix(0.169580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169580,0.000000,0.000000,0.250000,0,0);}
.m119_c01398{transform:matrix(0.169940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169940,0.000000,0.000000,0.250000,0,0);}
.m14b_c01398{transform:matrix(0.172045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172045,0.000000,0.000000,0.250000,0,0);}
.m9a_c01398{transform:matrix(0.175315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175315,0.000000,0.000000,0.250000,0,0);}
.m37_c01398{transform:matrix(0.181195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181195,0.000000,0.000000,0.250000,0,0);}
.m110_c01398{transform:matrix(0.185860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185860,0.000000,0.000000,0.250000,0,0);}
.mdf_c01398{transform:matrix(0.186075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186075,0.000000,0.000000,0.250000,0,0);}
.m11d_c01398{transform:matrix(0.186280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186280,0.000000,0.000000,0.250000,0,0);}
.m147_c01398{transform:matrix(0.186985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186985,0.000000,0.000000,0.250000,0,0);}
.m9d_c01398{transform:matrix(0.188680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188680,0.000000,0.000000,0.250000,0,0);}
.m9e_c01398{transform:matrix(0.189745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189745,0.000000,0.000000,0.250000,0,0);}
.m118_c01398{transform:matrix(0.190685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190685,0.000000,0.000000,0.250000,0,0);}
.me4_c01398{transform:matrix(0.190830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190830,0.000000,0.000000,0.250000,0,0);}
.ma0_c01398{transform:matrix(0.191435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191435,0.000000,0.000000,0.250000,0,0);}
.m98_c01398{transform:matrix(0.193980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193980,0.000000,0.000000,0.250000,0,0);}
.mc0_c01398{transform:matrix(0.194350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194350,0.000000,0.000000,0.250000,0,0);}
.mc2_c01398{transform:matrix(0.194940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194940,0.000000,0.000000,0.250000,0,0);}
.m111_c01398{transform:matrix(0.195405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195405,0.000000,0.000000,0.250000,0,0);}
.mde_c01398{transform:matrix(0.195900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195900,0.000000,0.000000,0.250000,0,0);}
.m58_c01398{transform:matrix(0.197435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197435,0.000000,0.000000,0.250000,0,0);}
.m5e_c01398{transform:matrix(0.197915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197915,0.000000,0.000000,0.250000,0,0);}
.m97_c01398{transform:matrix(0.198090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198090,0.000000,0.000000,0.250000,0,0);}
.me0_c01398{transform:matrix(0.198345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198345,0.000000,0.000000,0.250000,0,0);}
.me2_c01398{transform:matrix(0.198930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198930,0.000000,0.000000,0.250000,0,0);}
.m76_c01398{transform:matrix(0.199365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199365,0.000000,0.000000,0.250000,0,0);}
.m79_c01398{transform:matrix(0.201030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201030,0.000000,0.000000,0.250000,0,0);}
.m11a_c01398{transform:matrix(0.202780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202780,0.000000,0.000000,0.250000,0,0);}
.m133_c01398{transform:matrix(0.203530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203530,0.000000,0.000000,0.250000,0,0);}
.m112_c01398{transform:matrix(0.204705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204705,0.000000,0.000000,0.250000,0,0);}
.m11b_c01398{transform:matrix(0.205310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205310,0.000000,0.000000,0.250000,0,0);}
.md6_c01398{transform:matrix(0.207100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207100,0.000000,0.000000,0.250000,0,0);}
.m9b_c01398{transform:matrix(0.207975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207975,0.000000,0.000000,0.250000,0,0);}
.m4f_c01398{transform:matrix(0.209120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209120,0.000000,0.000000,0.250000,0,0);}
.m31_c01398{transform:matrix(0.209542,-0.001048,0.001250,0.249997,0,0);-ms-transform:matrix(0.209542,-0.001048,0.001250,0.249997,0,0);-webkit-transform:matrix(0.209542,-0.001048,0.001250,0.249997,0,0);}
.m96_c01398{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m59_c01398{transform:matrix(0.210185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210185,0.000000,0.000000,0.250000,0,0);}
.me3_c01398{transform:matrix(0.210485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210485,0.000000,0.000000,0.250000,0,0);}
.mf1_c01398{transform:matrix(0.210515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210515,0.000000,0.000000,0.250000,0,0);}
.m95_c01398{transform:matrix(0.210775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210775,0.000000,0.000000,0.250000,0,0);}
.m7a_c01398{transform:matrix(0.211025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211025,0.000000,0.000000,0.250000,0,0);}
.m1a_c01398{transform:matrix(0.211331,-0.001268,0.001500,0.249996,0,0);-ms-transform:matrix(0.211331,-0.001268,0.001500,0.249996,0,0);-webkit-transform:matrix(0.211331,-0.001268,0.001500,0.249996,0,0);}
.m115_c01398{transform:matrix(0.211365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211365,0.000000,0.000000,0.250000,0,0);}
.m46_c01398{transform:matrix(0.212425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212425,0.000000,0.000000,0.250000,0,0);}
.m77_c01398{transform:matrix(0.212835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212835,0.000000,0.000000,0.250000,0,0);}
.m14a_c01398{transform:matrix(0.212940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212940,0.000000,0.000000,0.250000,0,0);}
.mdd_c01398{transform:matrix(0.213550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213550,0.000000,0.000000,0.250000,0,0);}
.mc5_c01398{transform:matrix(0.213630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213630,0.000000,0.000000,0.250000,0,0);}
.mbf_c01398{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m72_c01398{transform:matrix(0.214855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214855,0.000000,0.000000,0.250000,0,0);}
.m9c_c01398{transform:matrix(0.215040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215040,0.000000,0.000000,0.250000,0,0);}
.me6_c01398{transform:matrix(0.215060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215060,0.000000,0.000000,0.250000,0,0);}
.m11e_c01398{transform:matrix(0.215200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215200,0.000000,0.000000,0.250000,0,0);}
.me7_c01398{transform:matrix(0.215755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215755,0.000000,0.000000,0.250000,0,0);}
.mce_c01398{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.mda_c01398{transform:matrix(0.216110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216110,0.000000,0.000000,0.250000,0,0);}
.m74_c01398{transform:matrix(0.216645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216645,0.000000,0.000000,0.250000,0,0);}
.m34_c01398{transform:matrix(0.216740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216740,0.000000,0.000000,0.250000,0,0);}
.m3c_c01398{transform:matrix(0.216995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216995,0.000000,0.000000,0.250000,0,0);}
.m113_c01398{transform:matrix(0.217375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217375,0.000000,0.000000,0.250000,0,0);}
.me1_c01398{transform:matrix(0.217735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217735,0.000000,0.000000,0.250000,0,0);}
.m78_c01398{transform:matrix(0.217825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217825,0.000000,0.000000,0.250000,0,0);}
.m73_c01398{transform:matrix(0.218290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218290,0.000000,0.000000,0.250000,0,0);}
.m114_c01398{transform:matrix(0.218330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218330,0.000000,0.000000,0.250000,0,0);}
.m39_c01398{transform:matrix(0.218925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218925,0.000000,0.000000,0.250000,0,0);}
.m11c_c01398{transform:matrix(0.219170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219170,0.000000,0.000000,0.250000,0,0);}
.m5c_c01398{transform:matrix(0.219350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219350,0.000000,0.000000,0.250000,0,0);}
.m7c_c01398{transform:matrix(0.219950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219950,0.000000,0.000000,0.250000,0,0);}
.m5a_c01398{transform:matrix(0.219975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219975,0.000000,0.000000,0.250000,0,0);}
.ma2_c01398{transform:matrix(0.220095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220095,0.000000,0.000000,0.250000,0,0);}
.m9f_c01398{transform:matrix(0.220195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220195,0.000000,0.000000,0.250000,0,0);}
.ma1_c01398{transform:matrix(0.220240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220240,0.000000,0.000000,0.250000,0,0);}
.m48_c01398{transform:matrix(0.220255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220255,0.000000,0.000000,0.250000,0,0);}
.mc7_c01398{transform:matrix(0.220660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220660,0.000000,0.000000,0.250000,0,0);}
.mea_c01398{transform:matrix(0.221455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221455,0.000000,0.000000,0.250000,0,0);}
.m51_c01398{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m144_c01398{transform:matrix(0.223340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223340,0.000000,0.000000,0.250000,0,0);}
.m148_c01398{transform:matrix(0.223945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223945,0.000000,0.000000,0.250000,0,0);}
.m64_c01398{transform:matrix(0.224035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224035,0.000000,0.000000,0.250000,0,0);}
.mf0_c01398{transform:matrix(0.224225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224225,0.000000,0.000000,0.250000,0,0);}
.m146_c01398{transform:matrix(0.224325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224325,0.000000,0.000000,0.250000,0,0);}
.m7d_c01398{transform:matrix(0.224440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224440,0.000000,0.000000,0.250000,0,0);}
.m32_c01398{transform:matrix(0.224497,-0.001122,0.001250,0.249997,0,0);-ms-transform:matrix(0.224497,-0.001122,0.001250,0.249997,0,0);-webkit-transform:matrix(0.224497,-0.001122,0.001250,0.249997,0,0);}
.m122_c01398{transform:matrix(0.224765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224765,0.000000,0.000000,0.250000,0,0);}
.m7b_c01398{transform:matrix(0.225140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225140,0.000000,0.000000,0.250000,0,0);}
.mcd_c01398{transform:matrix(0.225315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225315,0.000000,0.000000,0.250000,0,0);}
.mfd_c01398{transform:matrix(0.225845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225845,0.000000,0.000000,0.250000,0,0);}
.m56_c01398{transform:matrix(0.225940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225940,0.000000,0.000000,0.250000,0,0);}
.mec_c01398{transform:matrix(0.225945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225945,0.000000,0.000000,0.250000,0,0);}
.m104_c01398{transform:matrix(0.226110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226110,0.000000,0.000000,0.250000,0,0);}
.m2a_c01398{transform:matrix(0.226352,-0.001132,0.001250,0.249997,0,0);-ms-transform:matrix(0.226352,-0.001132,0.001250,0.249997,0,0);-webkit-transform:matrix(0.226352,-0.001132,0.001250,0.249997,0,0);}
.mef_c01398{transform:matrix(0.226355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226355,0.000000,0.000000,0.250000,0,0);}
.mb0_c01398{transform:matrix(0.226515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226515,0.000000,0.000000,0.250000,0,0);}
.me9_c01398{transform:matrix(0.226600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226600,0.000000,0.000000,0.250000,0,0);}
.m4_c01398{transform:matrix(0.227426,-0.001365,0.001500,0.249996,0,0);-ms-transform:matrix(0.227426,-0.001365,0.001500,0.249996,0,0);-webkit-transform:matrix(0.227426,-0.001365,0.001500,0.249996,0,0);}
.m11f_c01398{transform:matrix(0.227575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227575,0.000000,0.000000,0.250000,0,0);}
.m143_c01398{transform:matrix(0.227900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227900,0.000000,0.000000,0.250000,0,0);}
.m13e_c01398{transform:matrix(0.228090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228090,0.000000,0.000000,0.250000,0,0);}
.m126_c01398{transform:matrix(0.228695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228695,0.000000,0.000000,0.250000,0,0);}
.m49_c01398{transform:matrix(0.228815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228815,0.000000,0.000000,0.250000,0,0);}
.m86_c01398{transform:matrix(0.228920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228920,0.000000,0.000000,0.250000,0,0);}
.m29_c01398{transform:matrix(0.229147,-0.001146,0.001250,0.249997,0,0);-ms-transform:matrix(0.229147,-0.001146,0.001250,0.249997,0,0);-webkit-transform:matrix(0.229147,-0.001146,0.001250,0.249997,0,0);}
.mac_c01398{transform:matrix(0.229265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229265,0.000000,0.000000,0.250000,0,0);}
.m2d_c01398{transform:matrix(0.229452,-0.001147,0.001250,0.249997,0,0);-ms-transform:matrix(0.229452,-0.001147,0.001250,0.249997,0,0);-webkit-transform:matrix(0.229452,-0.001147,0.001250,0.249997,0,0);}
.mb4_c01398{transform:matrix(0.229460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229460,0.000000,0.000000,0.250000,0,0);}
.m3a_c01398{transform:matrix(0.229535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229535,0.000000,0.000000,0.250000,0,0);}
.md_c01398{transform:matrix(0.230066,-0.001380,0.001500,0.249996,0,0);-ms-transform:matrix(0.230066,-0.001380,0.001500,0.249996,0,0);-webkit-transform:matrix(0.230066,-0.001380,0.001500,0.249996,0,0);}
.me_c01398{transform:matrix(0.230281,-0.001382,0.001500,0.249996,0,0);-ms-transform:matrix(0.230281,-0.001382,0.001500,0.249996,0,0);-webkit-transform:matrix(0.230281,-0.001382,0.001500,0.249996,0,0);}
.m80_c01398{transform:matrix(0.230285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230285,0.000000,0.000000,0.250000,0,0);}
.m38_c01398{transform:matrix(0.230315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230315,0.000000,0.000000,0.250000,0,0);}
.m23_c01398{transform:matrix(0.231061,-0.001386,0.001500,0.249996,0,0);-ms-transform:matrix(0.231061,-0.001386,0.001500,0.249996,0,0);-webkit-transform:matrix(0.231061,-0.001386,0.001500,0.249996,0,0);}
.m124_c01398{transform:matrix(0.231125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231125,0.000000,0.000000,0.250000,0,0);}
.m17_c01398{transform:matrix(0.231431,-0.001389,0.001500,0.249996,0,0);-ms-transform:matrix(0.231431,-0.001389,0.001500,0.249996,0,0);-webkit-transform:matrix(0.231431,-0.001389,0.001500,0.249996,0,0);}
.mc1_c01398{transform:matrix(0.231440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231440,0.000000,0.000000,0.250000,0,0);}
.m4b_c01398{transform:matrix(0.231530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231530,0.000000,0.000000,0.250000,0,0);}
.ma9_c01398{transform:matrix(0.231625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231625,0.000000,0.000000,0.250000,0,0);}
.m127_c01398{transform:matrix(0.231805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231805,0.000000,0.000000,0.250000,0,0);}
.ma5_c01398{transform:matrix(0.231840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231840,0.000000,0.000000,0.250000,0,0);}
.m1e_c01398{transform:matrix(0.231921,-0.001392,0.001500,0.249996,0,0);-ms-transform:matrix(0.231921,-0.001392,0.001500,0.249996,0,0);-webkit-transform:matrix(0.231921,-0.001392,0.001500,0.249996,0,0);}
.m1f_c01398{transform:matrix(0.232281,-0.001394,0.001500,0.249996,0,0);-ms-transform:matrix(0.232281,-0.001394,0.001500,0.249996,0,0);-webkit-transform:matrix(0.232281,-0.001394,0.001500,0.249996,0,0);}
.mc3_c01398{transform:matrix(0.232400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232400,0.000000,0.000000,0.250000,0,0);}
.m90_c01398{transform:matrix(0.232405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232405,0.000000,0.000000,0.250000,0,0);}
.m91_c01398{transform:matrix(0.232595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232595,0.000000,0.000000,0.250000,0,0);}
.m121_c01398{transform:matrix(0.232865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232865,0.000000,0.000000,0.250000,0,0);}
.m75_c01398{transform:matrix(0.233210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233210,0.000000,0.000000,0.250000,0,0);}
.mf2_c01398{transform:matrix(0.233230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233230,0.000000,0.000000,0.250000,0,0);}
.mc4_c01398{transform:matrix(0.234285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234285,0.000000,0.000000,0.250000,0,0);}
.md1_c01398{transform:matrix(0.234360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234360,0.000000,0.000000,0.250000,0,0);}
.m5b_c01398{transform:matrix(0.234505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234505,0.000000,0.000000,0.250000,0,0);}
.mb1_c01398{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m9_c01398{transform:matrix(0.235076,-0.001410,0.001500,0.249996,0,0);-ms-transform:matrix(0.235076,-0.001410,0.001500,0.249996,0,0);-webkit-transform:matrix(0.235076,-0.001410,0.001500,0.249996,0,0);}
.mbd_c01398{transform:matrix(0.235080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235080,0.000000,0.000000,0.250000,0,0);}
.m61_c01398{transform:matrix(0.235160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235160,0.000000,0.000000,0.250000,0,0);}
.m10b_c01398{transform:matrix(0.235720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235720,0.000000,0.000000,0.250000,0,0);}
.m6c_c01398{transform:matrix(0.235850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235850,0.000000,0.000000,0.250000,0,0);}
.m13c_c01398{transform:matrix(0.235880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235880,0.000000,0.000000,0.250000,0,0);}
.m1b_c01398{transform:matrix(0.236441,-0.001419,0.001500,0.249996,0,0);-ms-transform:matrix(0.236441,-0.001419,0.001500,0.249996,0,0);-webkit-transform:matrix(0.236441,-0.001419,0.001500,0.249996,0,0);}
.m10_c01398{transform:matrix(0.236641,-0.001420,0.001500,0.249996,0,0);-ms-transform:matrix(0.236641,-0.001420,0.001500,0.249996,0,0);-webkit-transform:matrix(0.236641,-0.001420,0.001500,0.249996,0,0);}
.m24_c01398{transform:matrix(0.236701,-0.001420,0.001500,0.249996,0,0);-ms-transform:matrix(0.236701,-0.001420,0.001500,0.249996,0,0);-webkit-transform:matrix(0.236701,-0.001420,0.001500,0.249996,0,0);}
.mc8_c01398{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.mf9_c01398{transform:matrix(0.237120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237120,0.000000,0.000000,0.250000,0,0);}
.m22_c01398{transform:matrix(0.237181,-0.001423,0.001500,0.249996,0,0);-ms-transform:matrix(0.237181,-0.001423,0.001500,0.249996,0,0);-webkit-transform:matrix(0.237181,-0.001423,0.001500,0.249996,0,0);}
.m6f_c01398{transform:matrix(0.237185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237185,0.000000,0.000000,0.250000,0,0);}
.m5f_c01398{transform:matrix(0.237395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237395,0.000000,0.000000,0.250000,0,0);}
.m84_c01398{transform:matrix(0.237425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237425,0.000000,0.000000,0.250000,0,0);}
.mc9_c01398{transform:matrix(0.237620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237620,0.000000,0.000000,0.250000,0,0);}
.mbe_c01398{transform:matrix(0.237685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237685,0.000000,0.000000,0.250000,0,0);}
.mcb_c01398{transform:matrix(0.237755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237755,0.000000,0.000000,0.250000,0,0);}
.m5d_c01398{transform:matrix(0.237915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237915,0.000000,0.000000,0.250000,0,0);}
.m65_c01398{transform:matrix(0.237920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237920,0.000000,0.000000,0.250000,0,0);}
.m66_c01398{transform:matrix(0.238445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238445,0.000000,0.000000,0.250000,0,0);}
.mb2_c01398{transform:matrix(0.238715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238715,0.000000,0.000000,0.250000,0,0);}
.m108_c01398{transform:matrix(0.239295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239295,0.000000,0.000000,0.250000,0,0);}
.m12a_c01398{transform:matrix(0.239570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239570,0.000000,0.000000,0.250000,0,0);}
.m27_c01398{transform:matrix(0.240631,-0.001444,0.001500,0.249996,0,0);-ms-transform:matrix(0.240631,-0.001444,0.001500,0.249996,0,0);-webkit-transform:matrix(0.240631,-0.001444,0.001500,0.249996,0,0);}
.m93_c01398{transform:matrix(0.240635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240635,0.000000,0.000000,0.250000,0,0);}
.m1_c01398{transform:matrix(0.240660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240660,0.000000,0.000000,0.250000,0,0);}
.m120_c01398{transform:matrix(0.240965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240965,0.000000,0.000000,0.250000,0,0);}
.m85_c01398{transform:matrix(0.241320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241320,0.000000,0.000000,0.250000,0,0);}
.m68_c01398{transform:matrix(0.241415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241415,0.000000,0.000000,0.250000,0,0);}
.mca_c01398{transform:matrix(0.241510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241510,0.000000,0.000000,0.250000,0,0);}
.m36_c01398{transform:matrix(0.241905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241905,0.000000,0.000000,0.250000,0,0);}
.m11_c01398{transform:matrix(0.241991,-0.001452,0.001500,0.249996,0,0);-ms-transform:matrix(0.241991,-0.001452,0.001500,0.249996,0,0);-webkit-transform:matrix(0.241991,-0.001452,0.001500,0.249996,0,0);}
.m69_c01398{transform:matrix(0.241995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241995,0.000000,0.000000,0.250000,0,0);}
.m3e_c01398{transform:matrix(0.242180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242180,0.000000,0.000000,0.250000,0,0);}
.m20_c01398{transform:matrix(0.242236,-0.001453,0.001500,0.249996,0,0);-ms-transform:matrix(0.242236,-0.001453,0.001500,0.249996,0,0);-webkit-transform:matrix(0.242236,-0.001453,0.001500,0.249996,0,0);}
.me8_c01398{transform:matrix(0.242265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242265,0.000000,0.000000,0.250000,0,0);}
.m26_c01398{transform:matrix(0.242296,-0.001454,0.001500,0.249996,0,0);-ms-transform:matrix(0.242296,-0.001454,0.001500,0.249996,0,0);-webkit-transform:matrix(0.242296,-0.001454,0.001500,0.249996,0,0);}
.m107_c01398{transform:matrix(0.242475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242475,0.000000,0.000000,0.250000,0,0);}
.mb6_c01398{transform:matrix(0.242595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242595,0.000000,0.000000,0.250000,0,0);}
.m14d_c01398{transform:matrix(0.242880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242880,0.000000,0.000000,0.250000,0,0);}
.m2b_c01398{transform:matrix(0.242907,-0.001215,0.001250,0.249997,0,0);-ms-transform:matrix(0.242907,-0.001215,0.001250,0.249997,0,0);-webkit-transform:matrix(0.242907,-0.001215,0.001250,0.249997,0,0);}
.md4_c01398{transform:matrix(0.243025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243025,0.000000,0.000000,0.250000,0,0);}
.m15_c01398{transform:matrix(0.243051,-0.001458,0.001500,0.249996,0,0);-ms-transform:matrix(0.243051,-0.001458,0.001500,0.249996,0,0);-webkit-transform:matrix(0.243051,-0.001458,0.001500,0.249996,0,0);}
.m10e_c01398{transform:matrix(0.243100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243100,0.000000,0.000000,0.250000,0,0);}
.m14c_c01398{transform:matrix(0.243170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243170,0.000000,0.000000,0.250000,0,0);}
.m4e_c01398{transform:matrix(0.243210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243210,0.000000,0.000000,0.250000,0,0);}
.m2f_c01398{transform:matrix(0.243487,-0.001217,0.001250,0.249997,0,0);-ms-transform:matrix(0.243487,-0.001217,0.001250,0.249997,0,0);-webkit-transform:matrix(0.243487,-0.001217,0.001250,0.249997,0,0);}
.mf6_c01398{transform:matrix(0.243495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243495,0.000000,0.000000,0.250000,0,0);}
.m30_c01398{transform:matrix(0.243627,-0.001218,0.001250,0.249997,0,0);-ms-transform:matrix(0.243627,-0.001218,0.001250,0.249997,0,0);-webkit-transform:matrix(0.243627,-0.001218,0.001250,0.249997,0,0);}
.mf5_c01398{transform:matrix(0.244255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244255,0.000000,0.000000,0.250000,0,0);}
.m109_c01398{transform:matrix(0.244295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244295,0.000000,0.000000,0.250000,0,0);}
.m12f_c01398{transform:matrix(0.245235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245235,0.000000,0.000000,0.250000,0,0);}
.m13b_c01398{transform:matrix(0.245460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245460,0.000000,0.000000,0.250000,0,0);}
.md5_c01398{transform:matrix(0.245970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245970,0.000000,0.000000,0.250000,0,0);}
.mc_c01398{transform:matrix(0.246081,-0.001476,0.001500,0.249996,0,0);-ms-transform:matrix(0.246081,-0.001476,0.001500,0.249996,0,0);-webkit-transform:matrix(0.246081,-0.001476,0.001500,0.249996,0,0);}
.mf_c01398{transform:matrix(0.246201,-0.001477,0.001500,0.249996,0,0);-ms-transform:matrix(0.246201,-0.001477,0.001500,0.249996,0,0);-webkit-transform:matrix(0.246201,-0.001477,0.001500,0.249996,0,0);}
.m125_c01398{transform:matrix(0.246355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246355,0.000000,0.000000,0.250000,0,0);}
.m12c_c01398{transform:matrix(0.246605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246605,0.000000,0.000000,0.250000,0,0);}
.m35_c01398{transform:matrix(0.246610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246610,0.000000,0.000000,0.250000,0,0);}
.md9_c01398{transform:matrix(0.246730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246730,0.000000,0.000000,0.250000,0,0);}
.m137_c01398{transform:matrix(0.246940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246940,0.000000,0.000000,0.250000,0,0);}
.m4a_c01398{transform:matrix(0.247115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247115,0.000000,0.000000,0.250000,0,0);}
.m83_c01398{transform:matrix(0.247505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247505,0.000000,0.000000,0.250000,0,0);}
.m28_c01398{transform:matrix(0.247546,-0.001485,0.001500,0.249996,0,0);-ms-transform:matrix(0.247546,-0.001485,0.001500,0.249996,0,0);-webkit-transform:matrix(0.247546,-0.001485,0.001500,0.249996,0,0);}
.ma8_c01398{transform:matrix(0.247755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247755,0.000000,0.000000,0.250000,0,0);}
.m5_c01398{transform:matrix(0.247811,-0.001487,0.001500,0.249996,0,0);-ms-transform:matrix(0.247811,-0.001487,0.001500,0.249996,0,0);-webkit-transform:matrix(0.247811,-0.001487,0.001500,0.249996,0,0);}
.m4c_c01398{transform:matrix(0.247935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247935,0.000000,0.000000,0.250000,0,0);}
.m54_c01398{transform:matrix(0.248575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248575,0.000000,0.000000,0.250000,0,0);}
.m62_c01398{transform:matrix(0.249050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249050,0.000000,0.000000,0.250000,0,0);}
.m13_c01398{transform:matrix(0.249501,-0.001497,0.001500,0.249996,0,0);-ms-transform:matrix(0.249501,-0.001497,0.001500,0.249996,0,0);-webkit-transform:matrix(0.249501,-0.001497,0.001500,0.249996,0,0);}
.m16_c01398{transform:matrix(0.249661,-0.001498,0.001500,0.249996,0,0);-ms-transform:matrix(0.249661,-0.001498,0.001500,0.249996,0,0);-webkit-transform:matrix(0.249661,-0.001498,0.001500,0.249996,0,0);}
.md8_c01398{transform:matrix(0.250390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250390,0.000000,0.000000,0.250000,0,0);}
.m142_c01398{transform:matrix(0.250470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250470,0.000000,0.000000,0.250000,0,0);}
.mfb_c01398{transform:matrix(0.250660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250660,0.000000,0.000000,0.250000,0,0);}
.mc6_c01398{transform:matrix(0.250900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250900,0.000000,0.000000,0.250000,0,0);}
.m130_c01398{transform:matrix(0.250970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250970,0.000000,0.000000,0.250000,0,0);}
.m13f_c01398{transform:matrix(0.251010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251010,0.000000,0.000000,0.250000,0,0);}
.m129_c01398{transform:matrix(0.251025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251025,0.000000,0.000000,0.250000,0,0);}
.ma4_c01398{transform:matrix(0.251395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251395,0.000000,0.000000,0.250000,0,0);}
.maa_c01398{transform:matrix(0.251445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251445,0.000000,0.000000,0.250000,0,0);}
.mba_c01398{transform:matrix(0.251605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251605,0.000000,0.000000,0.250000,0,0);}
.mb5_c01398{transform:matrix(0.251815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251815,0.000000,0.000000,0.250000,0,0);}
.m6d_c01398{transform:matrix(0.252115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252115,0.000000,0.000000,0.250000,0,0);}
.m123_c01398{transform:matrix(0.252125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252125,0.000000,0.000000,0.250000,0,0);}
.m100_c01398{transform:matrix(0.252435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252435,0.000000,0.000000,0.250000,0,0);}
.m89_c01398{transform:matrix(0.252590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252590,0.000000,0.000000,0.250000,0,0);}
.m2c_c01398{transform:matrix(0.252667,-0.001263,0.001250,0.249997,0,0);-ms-transform:matrix(0.252667,-0.001263,0.001250,0.249997,0,0);-webkit-transform:matrix(0.252667,-0.001263,0.001250,0.249997,0,0);}
.m52_c01398{transform:matrix(0.252825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252825,0.000000,0.000000,0.250000,0,0);}
.meb_c01398{transform:matrix(0.252890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252890,0.000000,0.000000,0.250000,0,0);}
.m14e_c01398{transform:matrix(0.253475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253475,0.000000,0.000000,0.250000,0,0);}
.m3b_c01398{transform:matrix(0.253490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253490,0.000000,0.000000,0.250000,0,0);}
.m102_c01398{transform:matrix(0.253785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253785,0.000000,0.000000,0.250000,0,0);}
.m3d_c01398{transform:matrix(0.253920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253920,0.000000,0.000000,0.250000,0,0);}
.m2e_c01398{transform:matrix(0.254027,-0.001270,0.001250,0.249997,0,0);-ms-transform:matrix(0.254027,-0.001270,0.001250,0.249997,0,0);-webkit-transform:matrix(0.254027,-0.001270,0.001250,0.249997,0,0);}
.m60_c01398{transform:matrix(0.254060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254060,0.000000,0.000000,0.250000,0,0);}
.m13a_c01398{transform:matrix(0.254170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254170,0.000000,0.000000,0.250000,0,0);}
.m136_c01398{transform:matrix(0.254965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254965,0.000000,0.000000,0.250000,0,0);}
.mb_c01398{transform:matrix(0.255020,-0.001530,0.001500,0.249996,0,0);-ms-transform:matrix(0.255020,-0.001530,0.001500,0.249996,0,0);-webkit-transform:matrix(0.255020,-0.001530,0.001500,0.249996,0,0);}
.m25_c01398{transform:matrix(0.255025,-0.001530,0.001500,0.249996,0,0);-ms-transform:matrix(0.255025,-0.001530,0.001500,0.249996,0,0);-webkit-transform:matrix(0.255025,-0.001530,0.001500,0.249996,0,0);}
.maf_c01398{transform:matrix(0.255070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255070,0.000000,0.000000,0.250000,0,0);}
.mcc_c01398{transform:matrix(0.255410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255410,0.000000,0.000000,0.250000,0,0);}
.mae_c01398{transform:matrix(0.256540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256540,0.000000,0.000000,0.250000,0,0);}
.m33_c01398{transform:matrix(0.256587,-0.001283,0.001250,0.249997,0,0);-ms-transform:matrix(0.256587,-0.001283,0.001250,0.249997,0,0);-webkit-transform:matrix(0.256587,-0.001283,0.001250,0.249997,0,0);}
.m44_c01398{transform:matrix(0.256675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256675,0.000000,0.000000,0.250000,0,0);}
.ma7_c01398{transform:matrix(0.256790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256790,0.000000,0.000000,0.250000,0,0);}
.mb3_c01398{transform:matrix(0.256815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256815,0.000000,0.000000,0.250000,0,0);}
.m103_c01398{transform:matrix(0.256935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256935,0.000000,0.000000,0.250000,0,0);}
.m8e_c01398{transform:matrix(0.257100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257100,0.000000,0.000000,0.250000,0,0);}
.m71_c01398{transform:matrix(0.257420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257420,0.000000,0.000000,0.250000,0,0);}
.m21_c01398{transform:matrix(0.257790,-0.001547,0.001500,0.249996,0,0);-ms-transform:matrix(0.257790,-0.001547,0.001500,0.249996,0,0);-webkit-transform:matrix(0.257790,-0.001547,0.001500,0.249996,0,0);}
.mab_c01398{transform:matrix(0.257935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257935,0.000000,0.000000,0.250000,0,0);}
.mcf_c01398{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m8b_c01398{transform:matrix(0.258525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258525,0.000000,0.000000,0.250000,0,0);}
.med_c01398{transform:matrix(0.258555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258555,0.000000,0.000000,0.250000,0,0);}
.m63_c01398{transform:matrix(0.258890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258890,0.000000,0.000000,0.250000,0,0);}
.m8c_c01398{transform:matrix(0.258905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258905,0.000000,0.000000,0.250000,0,0);}
.mee_c01398{transform:matrix(0.258940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258940,0.000000,0.000000,0.250000,0,0);}
.m135_c01398{transform:matrix(0.259110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259110,0.000000,0.000000,0.250000,0,0);}
.m4d_c01398{transform:matrix(0.259210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259210,0.000000,0.000000,0.250000,0,0);}
.m8a_c01398{transform:matrix(0.260160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260160,0.000000,0.000000,0.250000,0,0);}
.mfe_c01398{transform:matrix(0.260745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260745,0.000000,0.000000,0.250000,0,0);}
.ma6_c01398{transform:matrix(0.261045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261045,0.000000,0.000000,0.250000,0,0);}
.m53_c01398{transform:matrix(0.261835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261835,0.000000,0.000000,0.250000,0,0);}
.mdc_c01398{transform:matrix(0.262490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262490,0.000000,0.000000,0.250000,0,0);}
.me5_c01398{transform:matrix(0.262705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262705,0.000000,0.000000,0.250000,0,0);}
.m81_c01398{transform:matrix(0.262800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262800,0.000000,0.000000,0.250000,0,0);}
.mfa_c01398{transform:matrix(0.262850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262850,0.000000,0.000000,0.250000,0,0);}
.m7_c01398{transform:matrix(0.262920,-0.001578,0.001500,0.249996,0,0);-ms-transform:matrix(0.262920,-0.001578,0.001500,0.249996,0,0);-webkit-transform:matrix(0.262920,-0.001578,0.001500,0.249996,0,0);}
.mfc_c01398{transform:matrix(0.263355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263355,0.000000,0.000000,0.250000,0,0);}
.m131_c01398{transform:matrix(0.263555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263555,0.000000,0.000000,0.250000,0,0);}
.m1c_c01398{transform:matrix(0.263710,-0.001582,0.001500,0.249996,0,0);-ms-transform:matrix(0.263710,-0.001582,0.001500,0.249996,0,0);-webkit-transform:matrix(0.263710,-0.001582,0.001500,0.249996,0,0);}
.m43_c01398{transform:matrix(0.263760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263760,0.000000,0.000000,0.250000,0,0);}
.m8d_c01398{transform:matrix(0.263795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263795,0.000000,0.000000,0.250000,0,0);}
.m105_c01398{transform:matrix(0.264270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264270,0.000000,0.000000,0.250000,0,0);}
.mad_c01398{transform:matrix(0.264545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264545,0.000000,0.000000,0.250000,0,0);}
.m101_c01398{transform:matrix(0.264765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264765,0.000000,0.000000,0.250000,0,0);}
.m14_c01398{transform:matrix(0.264850,-0.001589,0.001500,0.249996,0,0);-ms-transform:matrix(0.264850,-0.001589,0.001500,0.249996,0,0);-webkit-transform:matrix(0.264850,-0.001589,0.001500,0.249996,0,0);}
.m12_c01398{transform:matrix(0.265570,-0.001593,0.001500,0.249996,0,0);-ms-transform:matrix(0.265570,-0.001593,0.001500,0.249996,0,0);-webkit-transform:matrix(0.265570,-0.001593,0.001500,0.249996,0,0);}
.ma_c01398{transform:matrix(0.265805,-0.001595,0.001500,0.249996,0,0);-ms-transform:matrix(0.265805,-0.001595,0.001500,0.249996,0,0);-webkit-transform:matrix(0.265805,-0.001595,0.001500,0.249996,0,0);}
.m106_c01398{transform:matrix(0.266115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266115,0.000000,0.000000,0.250000,0,0);}
.m3f_c01398{transform:matrix(0.266415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266415,0.000000,0.000000,0.250000,0,0);}
.m13d_c01398{transform:matrix(0.266595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266595,0.000000,0.000000,0.250000,0,0);}
.mf4_c01398{transform:matrix(0.266940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266940,0.000000,0.000000,0.250000,0,0);}
.m18_c01398{transform:matrix(0.266940,-0.001602,0.001500,0.249996,0,0);-ms-transform:matrix(0.266940,-0.001602,0.001500,0.249996,0,0);-webkit-transform:matrix(0.266940,-0.001602,0.001500,0.249996,0,0);}
.mbb_c01398{transform:matrix(0.267150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267150,0.000000,0.000000,0.250000,0,0);}
.m70_c01398{transform:matrix(0.267215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267215,0.000000,0.000000,0.250000,0,0);}
.mb9_c01398{transform:matrix(0.268200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268200,0.000000,0.000000,0.250000,0,0);}
.m117_c01398{transform:matrix(0.268405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268405,0.000000,0.000000,0.250000,0,0);}
.m82_c01398{transform:matrix(0.268665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268665,0.000000,0.000000,0.250000,0,0);}
.m94_c01398{transform:matrix(0.268810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268810,0.000000,0.000000,0.250000,0,0);}
.m10d_c01398{transform:matrix(0.268860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268860,0.000000,0.000000,0.250000,0,0);}
.mbc_c01398{transform:matrix(0.269395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269395,0.000000,0.000000,0.250000,0,0);}
.mf7_c01398{transform:matrix(0.269775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269775,0.000000,0.000000,0.250000,0,0);}
.m92_c01398{transform:matrix(0.269845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269845,0.000000,0.000000,0.250000,0,0);}
.m10a_c01398{transform:matrix(0.269925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269925,0.000000,0.000000,0.250000,0,0);}
.m7f_c01398{transform:matrix(0.270130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270130,0.000000,0.000000,0.250000,0,0);}
.m138_c01398{transform:matrix(0.270690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270690,0.000000,0.000000,0.250000,0,0);}
.md3_c01398{transform:matrix(0.271260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271260,0.000000,0.000000,0.250000,0,0);}
.m134_c01398{transform:matrix(0.271435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271435,0.000000,0.000000,0.250000,0,0);}
.m19_c01398{transform:matrix(0.271800,-0.001631,0.001500,0.249996,0,0);-ms-transform:matrix(0.271800,-0.001631,0.001500,0.249996,0,0);-webkit-transform:matrix(0.271800,-0.001631,0.001500,0.249996,0,0);}
.m10c_c01398{transform:matrix(0.271830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271830,0.000000,0.000000,0.250000,0,0);}
.m132_c01398{transform:matrix(0.271950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271950,0.000000,0.000000,0.250000,0,0);}
.m6a_c01398{transform:matrix(0.272720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272720,0.000000,0.000000,0.250000,0,0);}
.m7e_c01398{transform:matrix(0.273300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273300,0.000000,0.000000,0.250000,0,0);}
.m6e_c01398{transform:matrix(0.273455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273455,0.000000,0.000000,0.250000,0,0);}
.m12b_c01398{transform:matrix(0.273990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273990,0.000000,0.000000,0.250000,0,0);}
.mb7_c01398{transform:matrix(0.274070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274070,0.000000,0.000000,0.250000,0,0);}
.m1d_c01398{transform:matrix(0.274075,-0.001644,0.001500,0.249996,0,0);-ms-transform:matrix(0.274075,-0.001644,0.001500,0.249996,0,0);-webkit-transform:matrix(0.274075,-0.001644,0.001500,0.249996,0,0);}
.m128_c01398{transform:matrix(0.274085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274085,0.000000,0.000000,0.250000,0,0);}
.m57_c01398{transform:matrix(0.274285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274285,0.000000,0.000000,0.250000,0,0);}
.m141_c01398{transform:matrix(0.274435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274435,0.000000,0.000000,0.250000,0,0);}
.m88_c01398{transform:matrix(0.275100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275100,0.000000,0.000000,0.250000,0,0);}
.md0_c01398{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.m67_c01398{transform:matrix(0.275580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275580,0.000000,0.000000,0.250000,0,0);}
.mf3_c01398{transform:matrix(0.275900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275900,0.000000,0.000000,0.250000,0,0);}
.m12d_c01398{transform:matrix(0.276090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276090,0.000000,0.000000,0.250000,0,0);}
.ma3_c01398{transform:matrix(0.276305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276305,0.000000,0.000000,0.250000,0,0);}
.m6b_c01398{transform:matrix(0.276530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276530,0.000000,0.000000,0.250000,0,0);}
.m47_c01398{transform:matrix(0.276745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276745,0.000000,0.000000,0.250000,0,0);}
.m12e_c01398{transform:matrix(0.277245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277245,0.000000,0.000000,0.250000,0,0);}
.mb8_c01398{transform:matrix(0.277255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277255,0.000000,0.000000,0.250000,0,0);}
.mff_c01398{transform:matrix(0.277435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277435,0.000000,0.000000,0.250000,0,0);}
.m8_c01398{transform:matrix(0.277720,-0.001666,0.001500,0.249996,0,0);-ms-transform:matrix(0.277720,-0.001666,0.001500,0.249996,0,0);-webkit-transform:matrix(0.277720,-0.001666,0.001500,0.249996,0,0);}
.md7_c01398{transform:matrix(0.279565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279565,0.000000,0.000000,0.250000,0,0);}
.m6_c01398{transform:matrix(0.279940,-0.001680,0.001500,0.249996,0,0);-ms-transform:matrix(0.279940,-0.001680,0.001500,0.249996,0,0);-webkit-transform:matrix(0.279940,-0.001680,0.001500,0.249996,0,0);}
.m8f_c01398{transform:matrix(0.280130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280130,0.000000,0.000000,0.250000,0,0);}
.m50_c01398{transform:matrix(0.280355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280355,0.000000,0.000000,0.250000,0,0);}
.m41_c01398{transform:matrix(0.280520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280520,0.000000,0.000000,0.250000,0,0);}
.mf8_c01398{transform:matrix(0.280610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280610,0.000000,0.000000,0.250000,0,0);}
.m3_c01398{transform:matrix(0.280885,-0.001685,0.001500,0.249996,0,0);-ms-transform:matrix(0.280885,-0.001685,0.001500,0.249996,0,0);-webkit-transform:matrix(0.280885,-0.001685,0.001500,0.249996,0,0);}
.m87_c01398{transform:matrix(0.281870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281870,0.000000,0.000000,0.250000,0,0);}
.m139_c01398{transform:matrix(0.281895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281895,0.000000,0.000000,0.250000,0,0);}
.m140_c01398{transform:matrix(0.282550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282550,0.000000,0.000000,0.250000,0,0);}
.m10f_c01398{transform:matrix(0.283015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283015,0.000000,0.000000,0.250000,0,0);}
.m116_c01398{transform:matrix(0.299425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299425,0.000000,0.000000,0.250000,0,0);}
.m55_c01398{transform:matrix(0.303790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303790,0.000000,0.000000,0.250000,0,0);}
.m40_c01398{transform:matrix(0.315290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315290,0.000000,0.000000,0.250000,0,0);}
.m42_c01398{transform:matrix(0.326080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326080,0.000000,0.000000,0.250000,0,0);}
.mdb_c01398{transform:matrix(0.437640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437640,0.000000,0.000000,0.250000,0,0);}
.md2_c01398{transform:matrix(0.855035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.855035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.855035,0.000000,0.000000,0.250000,0,0);}
.v0_c01398{vertical-align:0.000000px;}
.ls0_c01398{letter-spacing:0.000000px;}
.sc__c01398{text-shadow:none;}
.sc0_c01398{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__c01398{-webkit-text-stroke:0px transparent;}
.sc0_c01398{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01398{word-spacing:0.000000px;}
.fc0_c01398{color:transparent;}
.fs0_c01398{font-size:72.000000px;}
.fs1_c01398{font-size:72.001296px;}
.fs3_c01398{font-size:78.000000px;}
.fs2_c01398{font-size:78.000975px;}
.fs4_c01398{font-size:84.000000px;}
.fs5_c01398{font-size:90.000000px;}
.y0_c01398{bottom:0.000000px;}
.y68_c01398{bottom:110.955000px;}
.y67_c01398{bottom:128.065500px;}
.y66_c01398{bottom:163.675500px;}
.y65_c01398{bottom:181.440000px;}
.y64_c01398{bottom:198.450000px;}
.y63_c01398{bottom:240.736500px;}
.y62_c01398{bottom:276.478500px;}
.y61_c01398{bottom:311.124000px;}
.y60_c01398{bottom:347.040000px;}
.y5f_c01398{bottom:382.930500px;}
.y5e_c01398{bottom:418.692000px;}
.y5d_c01398{bottom:452.881500px;}
.y5c_c01398{bottom:488.986500px;}
.y5b_c01398{bottom:525.444000px;}
.y5a_c01398{bottom:560.557500px;}
.y59_c01398{bottom:596.500500px;}
.y58_c01398{bottom:630.724500px;}
.y57_c01398{bottom:666.634500px;}
.y56_c01398{bottom:701.448000px;}
.y48_c01398{bottom:734.940000px;}
.y49_c01398{bottom:735.051000px;}
.y4a_c01398{bottom:735.378000px;}
.y4b_c01398{bottom:735.651000px;}
.y4c_c01398{bottom:735.979500px;}
.y4d_c01398{bottom:736.135500px;}
.y4e_c01398{bottom:736.416000px;}
.y4f_c01398{bottom:736.690500px;}
.y50_c01398{bottom:737.287500px;}
.y51_c01398{bottom:737.454000px;}
.y52_c01398{bottom:737.619000px;}
.y53_c01398{bottom:738.004500px;}
.y54_c01398{bottom:738.160500px;}
.y55_c01398{bottom:738.330000px;}
.y47_c01398{bottom:771.979500px;}
.y3a_c01398{bottom:805.681500px;}
.y3b_c01398{bottom:806.058000px;}
.y3c_c01398{bottom:806.451000px;}
.y3d_c01398{bottom:806.907000px;}
.y3e_c01398{bottom:807.586500px;}
.y3f_c01398{bottom:807.819000px;}
.y40_c01398{bottom:808.051500px;}
.y41_c01398{bottom:808.497000px;}
.y42_c01398{bottom:808.734000px;}
.y43_c01398{bottom:808.966500px;}
.y44_c01398{bottom:809.580000px;}
.y45_c01398{bottom:809.886000px;}
.y46_c01398{bottom:810.033000px;}
.y39_c01398{bottom:844.111500px;}
.y38_c01398{bottom:880.533000px;}
.y37_c01398{bottom:914.469000px;}
.y36_c01398{bottom:950.179500px;}
.y35_c01398{bottom:985.024500px;}
.y34_c01398{bottom:1020.672000px;}
.y29_c01398{bottom:1054.350000px;}
.y2a_c01398{bottom:1054.516132px;}
.y2b_c01398{bottom:1054.730790px;}
.y2c_c01398{bottom:1055.060205px;}
.y2d_c01398{bottom:1055.555558px;}
.y2e_c01398{bottom:1055.666348px;}
.y2f_c01398{bottom:1056.259020px;}
.y30_c01398{bottom:1056.587070px;}
.y31_c01398{bottom:1056.971738px;}
.y32_c01398{bottom:1057.136437px;}
.y33_c01398{bottom:1057.349835px;}
.y1b_c01398{bottom:1090.259847px;}
.y1c_c01398{bottom:1090.648452px;}
.y1d_c01398{bottom:1091.138895px;}
.y1e_c01398{bottom:1091.247633px;}
.y1f_c01398{bottom:1091.409123px;}
.y20_c01398{bottom:1091.570394px;}
.y21_c01398{bottom:1091.744919px;}
.y22_c01398{bottom:1092.115281px;}
.y23_c01398{bottom:1092.289770px;}
.y24_c01398{bottom:1092.561426px;}
.y25_c01398{bottom:1092.941631px;}
.y26_c01398{bottom:1093.051971px;}
.y27_c01398{bottom:1093.318830px;}
.y28_c01398{bottom:1093.494921px;}
.yc_c01398{bottom:1125.628764px;}
.yd_c01398{bottom:1125.841203px;}
.ye_c01398{bottom:1126.005861px;}
.yf_c01398{bottom:1126.228089px;}
.y10_c01398{bottom:1126.442139px;}
.y11_c01398{bottom:1126.603410px;}
.y12_c01398{bottom:1126.937661px;}
.y13_c01398{bottom:1127.209299px;}
.y14_c01398{bottom:1127.591160px;}
.y15_c01398{bottom:1127.698158px;}
.y16_c01398{bottom:1127.915487px;}
.y17_c01398{bottom:1128.081855px;}
.y18_c01398{bottom:1128.468777px;}
.y19_c01398{bottom:1128.908169px;}
.y1a_c01398{bottom:1129.067919px;}
.y2_c01398{bottom:1159.920000px;}
.y3_c01398{bottom:1160.832042px;}
.y4_c01398{bottom:1161.024831px;}
.y5_c01398{bottom:1161.225702px;}
.y6_c01398{bottom:1162.003311px;}
.y7_c01398{bottom:1162.343556px;}
.y8_c01398{bottom:1163.056347px;}
.y9_c01398{bottom:1163.250738px;}
.ya_c01398{bottom:1163.712330px;}
.yb_c01398{bottom:1164.037932px;}
.y1_c01398{bottom:1217.308500px;}
.h2_c01398{height:72.000000px;}
.h3_c01398{height:72.001296px;}
.h5_c01398{height:78.000000px;}
.h4_c01398{height:78.000975px;}
.h6_c01398{height:84.000000px;}
.h7_c01398{height:90.000000px;}
.h1_c01398{height:1250.250000px;}
.h0_c01398{height:1250.370000px;}
.w0_c01398{width:878.850000px;}
.w1_c01398{width:879.000000px;}
.x0_c01398{left:0.000000px;}
.x1b_c01398{left:112.389906px;}
.x4_c01398{left:113.497500px;}
.x72_c01398{left:115.290000px;}
.x6d_c01398{left:116.370000px;}
.xa0_c01398{left:117.450000px;}
.x36_c01398{left:125.010000px;}
.x58_c01398{left:136.155000px;}
.xa7_c01398{left:140.130000px;}
.x26_c01398{left:146.140500px;}
.x51_c01398{left:147.151500px;}
.x88_c01398{left:148.500000px;}
.xaa_c01398{left:150.390000px;}
.xb6_c01398{left:152.010000px;}
.xe_c01398{left:156.404010px;}
.x6e_c01398{left:158.490000px;}
.x73_c01398{left:161.190000px;}
.x4a_c01398{left:168.022500px;}
.x2e_c01398{left:179.550000px;}
.x52_c01398{left:180.901500px;}
.x89_c01398{left:183.600000px;}
.xf_c01398{left:189.347208px;}
.x59_c01398{left:201.498000px;}
.x9b_c01398{left:203.850000px;}
.x37_c01398{left:213.300000px;}
.xb7_c01398{left:217.350000px;}
.x45_c01398{left:221.400000px;}
.x4b_c01398{left:224.184000px;}
.x9c_c01398{left:225.720000px;}
.x38_c01398{left:232.470000px;}
.x10_c01398{left:233.885478px;}
.x63_c01398{left:234.900000px;}
.x81_c01398{left:236.520000px;}
.x42_c01398{left:244.620000px;}
.xab_c01398{left:248.670000px;}
.x27_c01398{left:254.955000px;}
.x48_c01398{left:256.230000px;}
.x9d_c01398{left:257.580000px;}
.x5_c01398{left:265.504500px;}
.x53_c01398{left:266.761500px;}
.x2f_c01398{left:267.840000px;}
.xa1_c01398{left:269.190000px;}
.x11_c01398{left:276.560730px;}
.x5f_c01398{left:278.370000px;}
.xae_c01398{left:281.880000px;}
.x1c_c01398{left:288.148959px;}
.x4c_c01398{left:289.273500px;}
.x8f_c01398{left:291.330000px;}
.x6_c01398{left:297.636000px;}
.x3e_c01398{left:299.700000px;}
.x7a_c01398{left:300.780000px;}
.x9e_c01398{left:301.860000px;}
.x12_c01398{left:308.689419px;}
.x1d_c01398{left:310.022094px;}
.x8a_c01398{left:312.120000px;}
.xaf_c01398{left:314.280000px;}
.x5a_c01398{left:321.642000px;}
.x75_c01398{left:323.730000px;}
.x7_c01398{left:331.114500px;}
.x97_c01398{left:333.450000px;}
.x1e_c01398{left:342.437292px;}
.x30_c01398{left:343.980000px;}
.x82_c01398{left:345.060000px;}
.x5b_c01398{left:352.692000px;}
.x28_c01398{left:354.025500px;}
.x90_c01398{left:356.940000px;}
.x31_c01398{left:362.880000px;}
.x43_c01398{left:364.770000px;}
.x1_c01398{left:375.030000px;}
.x29_c01398{left:376.183500px;}
.x76_c01398{left:377.460000px;}
.x83_c01398{left:378.810000px;}
.x4d_c01398{left:386.442000px;}
.x64_c01398{left:387.450000px;}
.x74_c01398{left:388.530000px;}
.x98_c01398{left:390.150000px;}
.x2_c01398{left:397.440000px;}
.x91_c01398{left:399.330000px;}
.xb3_c01398{left:400.680000px;}
.x1f_c01398{left:409.403688px;}
.xb0_c01398{left:411.750000px;}
.x32_c01398{left:419.850000px;}
.xa2_c01398{left:422.820000px;}
.x13_c01398{left:429.921648px;}
.x54_c01398{left:431.191500px;}
.x9f_c01398{left:434.430000px;}
.x3_c01398{left:439.560000px;}
.x39_c01398{left:441.180000px;}
.x77_c01398{left:442.800000px;}
.x92_c01398{left:444.690000px;}
.x4e_c01398{left:452.889000px;}
.xa8_c01398{left:455.220000px;}
.x8_c01398{left:460.716000px;}
.x33_c01398{left:462.240000px;}
.x5c_c01398{left:463.666500px;}
.x84_c01398{left:464.940000px;}
.x3f_c01398{left:473.850000px;}
.x65_c01398{left:474.930000px;}
.x8b_c01398{left:476.280000px;}
.x20_c01398{left:483.381129px;}
.x6a_c01398{left:485.730000px;}
.x6f_c01398{left:488.430000px;}
.x2a_c01398{left:494.718000px;}
.x60_c01398{left:496.260000px;}
.x85_c01398{left:497.340000px;}
.xa9_c01398{left:498.420000px;}
.x14_c01398{left:506.315607px;}
.x66_c01398{left:507.330000px;}
.x44_c01398{left:509.490000px;}
.x9_c01398{left:517.423500px;}
.x55_c01398{left:518.941500px;}
.xb1_c01398{left:520.560000px;}
.x15_c01398{left:527.648733px;}
.x61_c01398{left:529.470000px;}
.x7b_c01398{left:530.820000px;}
.x46_c01398{left:540.000000px;}
.x86_c01398{left:542.160000px;}
.x3a_c01398{left:549.990000px;}
.x93_c01398{left:551.340000px;}
.x2b_c01398{left:560.328000px;}
.x67_c01398{left:561.600000px;}
.x56_c01398{left:563.221500px;}
.x70_c01398{left:564.840000px;}
.x16_c01398{left:571.120494px;}
.x21_c01398{left:572.489160px;}
.xa3_c01398{left:574.560000px;}
.x4f_c01398{left:583.570500px;}
.x7c_c01398{left:585.630000px;}
.x68_c01398{left:594.540000px;}
.x17_c01398{left:604.348692px;}
.x78_c01398{left:605.610000px;}
.xac_c01398{left:608.580000px;}
.x34_c01398{left:615.060000px;}
.x40_c01398{left:616.680000px;}
.xa4_c01398{left:618.570000px;}
.x7d_c01398{left:628.830000px;}
.xa_c01398{left:636.222000px;}
.x2c_c01398{left:637.261500px;}
.x6b_c01398{left:638.550000px;}
.x49_c01398{left:647.460000px;}
.x22_c01398{left:648.607119px;}
.x7e_c01398{left:650.430000px;}
.xa5_c01398{left:652.320000px;}
.x71_c01398{left:659.880000px;}
.x79_c01398{left:660.960000px;}
.x99_c01398{left:662.040000px;}
.xb_c01398{left:668.620500px;}
.x23_c01398{left:670.747254px;}
.xb2_c01398{left:672.570000px;}
.x41_c01398{left:680.670000px;}
.x18_c01398{left:681.836160px;}
.x94_c01398{left:683.100000px;}
.x6c_c01398{left:693.360000px;}
.x87_c01398{left:695.520000px;}
.x62_c01398{left:704.160000px;}
.x8c_c01398{left:706.590000px;}
.x2d_c01398{left:712.881000px;}
.x3b_c01398{left:715.230000px;}
.xa6_c01398{left:717.120000px;}
.x24_c01398{left:724.224078px;}
.x57_c01398{left:725.491500px;}
.xb4_c01398{left:728.190000px;}
.x50_c01398{left:736.114500px;}
.xc_c01398{left:745.552500px;}
.x3c_c01398{left:747.090000px;}
.x8d_c01398{left:749.790000px;}
.x5d_c01398{left:757.692000px;}
.x25_c01398{left:759.322785px;}
.x95_c01398{left:760.860000px;}
.x19_c01398{left:769.568682px;}
.x7f_c01398{left:770.850000px;}
.x35_c01398{left:778.140000px;}
.x3d_c01398{left:780.570000px;}
.x96_c01398{left:782.190000px;}
.xb5_c01398{left:783.270000px;}
.x5e_c01398{left:791.692500px;}
.x69_c01398{left:792.720000px;}
.xd_c01398{left:799.819500px;}
.x1a_c01398{left:801.443871px;}
.x9a_c01398{left:803.250000px;}
.xad_c01398{left:804.870000px;}
.x47_c01398{left:812.700000px;}
.x80_c01398{left:815.130000px;}
.x8e_c01398{left:818.370000px;}
@media print{
.v0_c01398{vertical-align:0.000000pt;}
.ls0_c01398{letter-spacing:0.000000pt;}
.ws0_c01398{word-spacing:0.000000pt;}
.fs0_c01398{font-size:64.000000pt;}
.fs1_c01398{font-size:64.001152pt;}
.fs3_c01398{font-size:69.333333pt;}
.fs2_c01398{font-size:69.334200pt;}
.fs4_c01398{font-size:74.666667pt;}
.fs5_c01398{font-size:80.000000pt;}
.y0_c01398{bottom:0.000000pt;}
.y68_c01398{bottom:98.626667pt;}
.y67_c01398{bottom:113.836000pt;}
.y66_c01398{bottom:145.489333pt;}
.y65_c01398{bottom:161.280000pt;}
.y64_c01398{bottom:176.400000pt;}
.y63_c01398{bottom:213.988000pt;}
.y62_c01398{bottom:245.758667pt;}
.y61_c01398{bottom:276.554667pt;}
.y60_c01398{bottom:308.480000pt;}
.y5f_c01398{bottom:340.382667pt;}
.y5e_c01398{bottom:372.170667pt;}
.y5d_c01398{bottom:402.561333pt;}
.y5c_c01398{bottom:434.654667pt;}
.y5b_c01398{bottom:467.061333pt;}
.y5a_c01398{bottom:498.273333pt;}
.y59_c01398{bottom:530.222667pt;}
.y58_c01398{bottom:560.644000pt;}
.y57_c01398{bottom:592.564000pt;}
.y56_c01398{bottom:623.509333pt;}
.y48_c01398{bottom:653.280000pt;}
.y49_c01398{bottom:653.378667pt;}
.y4a_c01398{bottom:653.669333pt;}
.y4b_c01398{bottom:653.912000pt;}
.y4c_c01398{bottom:654.204000pt;}
.y4d_c01398{bottom:654.342667pt;}
.y4e_c01398{bottom:654.592000pt;}
.y4f_c01398{bottom:654.836000pt;}
.y50_c01398{bottom:655.366667pt;}
.y51_c01398{bottom:655.514667pt;}
.y52_c01398{bottom:655.661333pt;}
.y53_c01398{bottom:656.004000pt;}
.y54_c01398{bottom:656.142667pt;}
.y55_c01398{bottom:656.293333pt;}
.y47_c01398{bottom:686.204000pt;}
.y3a_c01398{bottom:716.161333pt;}
.y3b_c01398{bottom:716.496000pt;}
.y3c_c01398{bottom:716.845333pt;}
.y3d_c01398{bottom:717.250667pt;}
.y3e_c01398{bottom:717.854667pt;}
.y3f_c01398{bottom:718.061333pt;}
.y40_c01398{bottom:718.268000pt;}
.y41_c01398{bottom:718.664000pt;}
.y42_c01398{bottom:718.874667pt;}
.y43_c01398{bottom:719.081333pt;}
.y44_c01398{bottom:719.626667pt;}
.y45_c01398{bottom:719.898667pt;}
.y46_c01398{bottom:720.029333pt;}
.y39_c01398{bottom:750.321333pt;}
.y38_c01398{bottom:782.696000pt;}
.y37_c01398{bottom:812.861333pt;}
.y36_c01398{bottom:844.604000pt;}
.y35_c01398{bottom:875.577333pt;}
.y34_c01398{bottom:907.264000pt;}
.y29_c01398{bottom:937.200000pt;}
.y2a_c01398{bottom:937.347673pt;}
.y2b_c01398{bottom:937.538480pt;}
.y2c_c01398{bottom:937.831293pt;}
.y2d_c01398{bottom:938.271607pt;}
.y2e_c01398{bottom:938.370087pt;}
.y2f_c01398{bottom:938.896907pt;}
.y30_c01398{bottom:939.188507pt;}
.y31_c01398{bottom:939.530433pt;}
.y32_c01398{bottom:939.676833pt;}
.y33_c01398{bottom:939.866520pt;}
.y1b_c01398{bottom:969.119864pt;}
.y1c_c01398{bottom:969.465291pt;}
.y1d_c01398{bottom:969.901240pt;}
.y1e_c01398{bottom:969.997896pt;}
.y1f_c01398{bottom:970.141443pt;}
.y20_c01398{bottom:970.284795pt;}
.y21_c01398{bottom:970.439928pt;}
.y22_c01398{bottom:970.769139pt;}
.y23_c01398{bottom:970.924240pt;}
.y24_c01398{bottom:971.165712pt;}
.y25_c01398{bottom:971.503672pt;}
.y26_c01398{bottom:971.601752pt;}
.y27_c01398{bottom:971.838960pt;}
.y28_c01398{bottom:971.995485pt;}
.yc_c01398{bottom:1000.558901pt;}
.yd_c01398{bottom:1000.747736pt;}
.ye_c01398{bottom:1000.894099pt;}
.yf_c01398{bottom:1001.091635pt;}
.y10_c01398{bottom:1001.281901pt;}
.y11_c01398{bottom:1001.425253pt;}
.y12_c01398{bottom:1001.722365pt;}
.y13_c01398{bottom:1001.963821pt;}
.y14_c01398{bottom:1002.303253pt;}
.y15_c01398{bottom:1002.398363pt;}
.y16_c01398{bottom:1002.591544pt;}
.y17_c01398{bottom:1002.739427pt;}
.y18_c01398{bottom:1003.083357pt;}
.y19_c01398{bottom:1003.473928pt;}
.y1a_c01398{bottom:1003.615928pt;}
.y2_c01398{bottom:1031.040000pt;}
.y3_c01398{bottom:1031.850704pt;}
.y4_c01398{bottom:1032.022072pt;}
.y5_c01398{bottom:1032.200624pt;}
.y6_c01398{bottom:1032.891832pt;}
.y7_c01398{bottom:1033.194272pt;}
.y8_c01398{bottom:1033.827864pt;}
.y9_c01398{bottom:1034.000656pt;}
.ya_c01398{bottom:1034.410960pt;}
.yb_c01398{bottom:1034.700384pt;}
.y1_c01398{bottom:1082.052000pt;}
.h2_c01398{height:64.000000pt;}
.h3_c01398{height:64.001152pt;}
.h5_c01398{height:69.333333pt;}
.h4_c01398{height:69.334200pt;}
.h6_c01398{height:74.666667pt;}
.h7_c01398{height:80.000000pt;}
.h1_c01398{height:1111.333333pt;}
.h0_c01398{height:1111.440000pt;}
.w0_c01398{width:781.200000pt;}
.w1_c01398{width:781.333333pt;}
.x0_c01398{left:0.000000pt;}
.x1b_c01398{left:99.902139pt;}
.x4_c01398{left:100.886667pt;}
.x72_c01398{left:102.480000pt;}
.x6d_c01398{left:103.440000pt;}
.xa0_c01398{left:104.400000pt;}
.x36_c01398{left:111.120000pt;}
.x58_c01398{left:121.026667pt;}
.xa7_c01398{left:124.560000pt;}
.x26_c01398{left:129.902667pt;}
.x51_c01398{left:130.801333pt;}
.x88_c01398{left:132.000000pt;}
.xaa_c01398{left:133.680000pt;}
.xb6_c01398{left:135.120000pt;}
.xe_c01398{left:139.025787pt;}
.x6e_c01398{left:140.880000pt;}
.x73_c01398{left:143.280000pt;}
.x4a_c01398{left:149.353333pt;}
.x2e_c01398{left:159.600000pt;}
.x52_c01398{left:160.801333pt;}
.x89_c01398{left:163.200000pt;}
.xf_c01398{left:168.308629pt;}
.x59_c01398{left:179.109333pt;}
.x9b_c01398{left:181.200000pt;}
.x37_c01398{left:189.600000pt;}
.xb7_c01398{left:193.200000pt;}
.x45_c01398{left:196.800000pt;}
.x4b_c01398{left:199.274667pt;}
.x9c_c01398{left:200.640000pt;}
.x38_c01398{left:206.640000pt;}
.x10_c01398{left:207.898203pt;}
.x63_c01398{left:208.800000pt;}
.x81_c01398{left:210.240000pt;}
.x42_c01398{left:217.440000pt;}
.xab_c01398{left:221.040000pt;}
.x27_c01398{left:226.626667pt;}
.x48_c01398{left:227.760000pt;}
.x9d_c01398{left:228.960000pt;}
.x5_c01398{left:236.004000pt;}
.x53_c01398{left:237.121333pt;}
.x2f_c01398{left:238.080000pt;}
.xa1_c01398{left:239.280000pt;}
.x11_c01398{left:245.831760pt;}
.x5f_c01398{left:247.440000pt;}
.xae_c01398{left:250.560000pt;}
.x1c_c01398{left:256.132408pt;}
.x4c_c01398{left:257.132000pt;}
.x8f_c01398{left:258.960000pt;}
.x6_c01398{left:264.565333pt;}
.x3e_c01398{left:266.400000pt;}
.x7a_c01398{left:267.360000pt;}
.x9e_c01398{left:268.320000pt;}
.x12_c01398{left:274.390595pt;}
.x1d_c01398{left:275.575195pt;}
.x8a_c01398{left:277.440000pt;}
.xaf_c01398{left:279.360000pt;}
.x5a_c01398{left:285.904000pt;}
.x75_c01398{left:287.760000pt;}
.x7_c01398{left:294.324000pt;}
.x97_c01398{left:296.400000pt;}
.x1e_c01398{left:304.388704pt;}
.x30_c01398{left:305.760000pt;}
.x82_c01398{left:306.720000pt;}
.x5b_c01398{left:313.504000pt;}
.x28_c01398{left:314.689333pt;}
.x90_c01398{left:317.280000pt;}
.x31_c01398{left:322.560000pt;}
.x43_c01398{left:324.240000pt;}
.x1_c01398{left:333.360000pt;}
.x29_c01398{left:334.385333pt;}
.x76_c01398{left:335.520000pt;}
.x83_c01398{left:336.720000pt;}
.x4d_c01398{left:343.504000pt;}
.x64_c01398{left:344.400000pt;}
.x74_c01398{left:345.360000pt;}
.x98_c01398{left:346.800000pt;}
.x2_c01398{left:353.280000pt;}
.x91_c01398{left:354.960000pt;}
.xb3_c01398{left:356.160000pt;}
.x1f_c01398{left:363.914389pt;}
.xb0_c01398{left:366.000000pt;}
.x32_c01398{left:373.200000pt;}
.xa2_c01398{left:375.840000pt;}
.x13_c01398{left:382.152576pt;}
.x54_c01398{left:383.281333pt;}
.x9f_c01398{left:386.160000pt;}
.x3_c01398{left:390.720000pt;}
.x39_c01398{left:392.160000pt;}
.x77_c01398{left:393.600000pt;}
.x92_c01398{left:395.280000pt;}
.x4e_c01398{left:402.568000pt;}
.xa8_c01398{left:404.640000pt;}
.x8_c01398{left:409.525333pt;}
.x33_c01398{left:410.880000pt;}
.x5c_c01398{left:412.148000pt;}
.x84_c01398{left:413.280000pt;}
.x3f_c01398{left:421.200000pt;}
.x65_c01398{left:422.160000pt;}
.x8b_c01398{left:423.360000pt;}
.x20_c01398{left:429.672115pt;}
.x6a_c01398{left:431.760000pt;}
.x6f_c01398{left:434.160000pt;}
.x2a_c01398{left:439.749333pt;}
.x60_c01398{left:441.120000pt;}
.x85_c01398{left:442.080000pt;}
.xa9_c01398{left:443.040000pt;}
.x14_c01398{left:450.058317pt;}
.x66_c01398{left:450.960000pt;}
.x44_c01398{left:452.880000pt;}
.x9_c01398{left:459.932000pt;}
.x55_c01398{left:461.281333pt;}
.xb1_c01398{left:462.720000pt;}
.x15_c01398{left:469.021096pt;}
.x61_c01398{left:470.640000pt;}
.x7b_c01398{left:471.840000pt;}
.x46_c01398{left:480.000000pt;}
.x86_c01398{left:481.920000pt;}
.x3a_c01398{left:488.880000pt;}
.x93_c01398{left:490.080000pt;}
.x2b_c01398{left:498.069333pt;}
.x67_c01398{left:499.200000pt;}
.x56_c01398{left:500.641333pt;}
.x70_c01398{left:502.080000pt;}
.x16_c01398{left:507.662661pt;}
.x21_c01398{left:508.879253pt;}
.xa3_c01398{left:510.720000pt;}
.x4f_c01398{left:518.729333pt;}
.x7c_c01398{left:520.560000pt;}
.x68_c01398{left:528.480000pt;}
.x17_c01398{left:537.198837pt;}
.x78_c01398{left:538.320000pt;}
.xac_c01398{left:540.960000pt;}
.x34_c01398{left:546.720000pt;}
.x40_c01398{left:548.160000pt;}
.xa4_c01398{left:549.840000pt;}
.x7d_c01398{left:558.960000pt;}
.xa_c01398{left:565.530667pt;}
.x2c_c01398{left:566.454667pt;}
.x6b_c01398{left:567.600000pt;}
.x49_c01398{left:575.520000pt;}
.x22_c01398{left:576.539661pt;}
.x7e_c01398{left:578.160000pt;}
.xa5_c01398{left:579.840000pt;}
.x71_c01398{left:586.560000pt;}
.x79_c01398{left:587.520000pt;}
.x99_c01398{left:588.480000pt;}
.xb_c01398{left:594.329333pt;}
.x23_c01398{left:596.219781pt;}
.xb2_c01398{left:597.840000pt;}
.x41_c01398{left:605.040000pt;}
.x18_c01398{left:606.076587pt;}
.x94_c01398{left:607.200000pt;}
.x6c_c01398{left:616.320000pt;}
.x87_c01398{left:618.240000pt;}
.x62_c01398{left:625.920000pt;}
.x8c_c01398{left:628.080000pt;}
.x2d_c01398{left:633.672000pt;}
.x3b_c01398{left:635.760000pt;}
.xa6_c01398{left:637.440000pt;}
.x24_c01398{left:643.754736pt;}
.x57_c01398{left:644.881333pt;}
.xb4_c01398{left:647.280000pt;}
.x50_c01398{left:654.324000pt;}
.xc_c01398{left:662.713333pt;}
.x3c_c01398{left:664.080000pt;}
.x8d_c01398{left:666.480000pt;}
.x5d_c01398{left:673.504000pt;}
.x25_c01398{left:674.953587pt;}
.x95_c01398{left:676.320000pt;}
.x19_c01398{left:684.061051pt;}
.x7f_c01398{left:685.200000pt;}
.x35_c01398{left:691.680000pt;}
.x3d_c01398{left:693.840000pt;}
.x96_c01398{left:695.280000pt;}
.xb5_c01398{left:696.240000pt;}
.x5e_c01398{left:703.726667pt;}
.x69_c01398{left:704.640000pt;}
.xd_c01398{left:710.950667pt;}
.x1a_c01398{left:712.394552pt;}
.x9a_c01398{left:714.000000pt;}
.xad_c01398{left:715.440000pt;}
.x47_c01398{left:722.400000pt;}
.x80_c01398{left:724.560000pt;}
.x8e_c01398{left:727.440000pt;}
}





/* 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_c01399 {
    display:none;
  }
  .loading-indicator_c01399.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01399 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_c01399 { 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_c01399" -> "#page-container .classname_c01399")
 */
.pf_c01399 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01399 { /* 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_c01399.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01399 { /* 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_c01399 { /* 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_c01399 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01399 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01399 {overflow:visible;}
  }
}
.c_c01399 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01399 { /* 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_c01399:after { /* webkit #35443 */
  content: '';
}
.t_c01399:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01399 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 */
}
.__c01399 { /* 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_c01399 { /* info for Javascript */
  display:none;
}
.l_c01399 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01399 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01399 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01399: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_c01399 {
    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_c01399.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01399.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_c01399 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01399{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01399;src:url('chunks/assets/font_53ec0c54e60da7c2d414b553.woff2')format("woff");}.ff1_c01399{font-family:ff1_c01399;line-height:1.000000;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;}
.m7_c01399{transform:matrix(0.007490,0.000075,-0.002500,0.249988,0,0);-ms-transform:matrix(0.007490,0.000075,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.007490,0.000075,-0.002500,0.249988,0,0);}
.m37_c01399{transform:matrix(0.010815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.010815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.010815,0.000000,0.000000,0.250000,0,0);}
.m28_c01399{transform:matrix(0.061845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.061845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.061845,0.000000,0.000000,0.250000,0,0);}
.m40_c01399{transform:matrix(0.126420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126420,0.000000,0.000000,0.250000,0,0);}
.m44_c01399{transform:matrix(0.139975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139975,0.000000,0.000000,0.250000,0,0);}
.m45_c01399{transform:matrix(0.144725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144725,0.000000,0.000000,0.250000,0,0);}
.m21_c01399{transform:matrix(0.154200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154200,0.000000,0.000000,0.250000,0,0);}
.m3d_c01399{transform:matrix(0.157765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157765,0.000000,0.000000,0.250000,0,0);}
.m42_c01399{transform:matrix(0.159375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159375,0.000000,0.000000,0.250000,0,0);}
.m3a_c01399{transform:matrix(0.159770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159770,0.000000,0.000000,0.250000,0,0);}
.m41_c01399{transform:matrix(0.159875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159875,0.000000,0.000000,0.250000,0,0);}
.m3f_c01399{transform:matrix(0.164780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164780,0.000000,0.000000,0.250000,0,0);}
.m3e_c01399{transform:matrix(0.166035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166035,0.000000,0.000000,0.250000,0,0);}
.m3c_c01399{transform:matrix(0.168215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168215,0.000000,0.000000,0.250000,0,0);}
.m53_c01399{transform:matrix(0.173845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173845,0.000000,0.000000,0.250000,0,0);}
.m60_c01399{transform:matrix(0.174400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174400,0.000000,0.000000,0.250000,0,0);}
.m29_c01399{transform:matrix(0.176105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176105,0.000000,0.000000,0.250000,0,0);}
.m43_c01399{transform:matrix(0.179440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179440,0.000000,0.000000,0.250000,0,0);}
.m32_c01399{transform:matrix(0.192420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192420,0.000000,0.000000,0.250000,0,0);}
.m56_c01399{transform:matrix(0.192960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192960,0.000000,0.000000,0.250000,0,0);}
.m6_c01399{transform:matrix(0.193925,0.001939,-0.002500,0.249988,0,0);-ms-transform:matrix(0.193925,0.001939,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.193925,0.001939,-0.002500,0.249988,0,0);}
.m2_c01399{transform:matrix(0.193940,0.001939,-0.002500,0.249988,0,0);-ms-transform:matrix(0.193940,0.001939,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.193940,0.001939,-0.002500,0.249988,0,0);}
.m39_c01399{transform:matrix(0.194270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194270,0.000000,0.000000,0.250000,0,0);}
.m55_c01399{transform:matrix(0.194365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194365,0.000000,0.000000,0.250000,0,0);}
.m59_c01399{transform:matrix(0.195245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195245,0.000000,0.000000,0.250000,0,0);}
.m1_c01399{transform:matrix(0.195635,0.001956,-0.002500,0.249988,0,0);-ms-transform:matrix(0.195635,0.001956,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.195635,0.001956,-0.002500,0.249988,0,0);}
.m57_c01399{transform:matrix(0.201555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201555,0.000000,0.000000,0.250000,0,0);}
.m35_c01399{transform:matrix(0.205430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205430,0.000000,0.000000,0.250000,0,0);}
.m20_c01399{transform:matrix(0.205885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205885,0.000000,0.000000,0.250000,0,0);}
.m34_c01399{transform:matrix(0.206455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206455,0.000000,0.000000,0.250000,0,0);}
.m58_c01399{transform:matrix(0.206630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206630,0.000000,0.000000,0.250000,0,0);}
.m2b_c01399{transform:matrix(0.206930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206930,0.000000,0.000000,0.250000,0,0);}
.m38_c01399{transform:matrix(0.208355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208355,0.000000,0.000000,0.250000,0,0);}
.m14_c01399{transform:matrix(0.210864,0.002109,-0.002500,0.249988,0,0);-ms-transform:matrix(0.210864,0.002109,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.210864,0.002109,-0.002500,0.249988,0,0);}
.m33_c01399{transform:matrix(0.213190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213190,0.000000,0.000000,0.250000,0,0);}
.m5d_c01399{transform:matrix(0.213680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213680,0.000000,0.000000,0.250000,0,0);}
.m54_c01399{transform:matrix(0.214285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214285,0.000000,0.000000,0.250000,0,0);}
.m36_c01399{transform:matrix(0.218220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218220,0.000000,0.000000,0.250000,0,0);}
.m3b_c01399{transform:matrix(0.218780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218780,0.000000,0.000000,0.250000,0,0);}
.m5f_c01399{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.mb_c01399{transform:matrix(0.220649,0.002206,-0.002500,0.249988,0,0);-ms-transform:matrix(0.220649,0.002206,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.220649,0.002206,-0.002500,0.249988,0,0);}
.m11_c01399{transform:matrix(0.223649,0.002236,-0.002500,0.249988,0,0);-ms-transform:matrix(0.223649,0.002236,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.223649,0.002236,-0.002500,0.249988,0,0);}
.m9_c01399{transform:matrix(0.224089,0.002241,-0.002500,0.249988,0,0);-ms-transform:matrix(0.224089,0.002241,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.224089,0.002241,-0.002500,0.249988,0,0);}
.m12_c01399{transform:matrix(0.225404,0.002254,-0.002500,0.249988,0,0);-ms-transform:matrix(0.225404,0.002254,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.225404,0.002254,-0.002500,0.249988,0,0);}
.me_c01399{transform:matrix(0.226909,0.002269,-0.002500,0.249988,0,0);-ms-transform:matrix(0.226909,0.002269,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.226909,0.002269,-0.002500,0.249988,0,0);}
.mf_c01399{transform:matrix(0.227989,0.002280,-0.002500,0.249988,0,0);-ms-transform:matrix(0.227989,0.002280,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.227989,0.002280,-0.002500,0.249988,0,0);}
.m4b_c01399{transform:matrix(0.228327,-0.001142,0.001250,0.249997,0,0);-ms-transform:matrix(0.228327,-0.001142,0.001250,0.249997,0,0);-webkit-transform:matrix(0.228327,-0.001142,0.001250,0.249997,0,0);}
.m2c_c01399{transform:matrix(0.228525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228525,0.000000,0.000000,0.250000,0,0);}
.m5c_c01399{transform:matrix(0.228755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228755,0.000000,0.000000,0.250000,0,0);}
.m47_c01399{transform:matrix(0.230162,-0.001151,0.001250,0.249997,0,0);-ms-transform:matrix(0.230162,-0.001151,0.001250,0.249997,0,0);-webkit-transform:matrix(0.230162,-0.001151,0.001250,0.249997,0,0);}
.m2f_c01399{transform:matrix(0.232890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232890,0.000000,0.000000,0.250000,0,0);}
.m50_c01399{transform:matrix(0.234932,-0.001175,0.001250,0.249997,0,0);-ms-transform:matrix(0.234932,-0.001175,0.001250,0.249997,0,0);-webkit-transform:matrix(0.234932,-0.001175,0.001250,0.249997,0,0);}
.m2a_c01399{transform:matrix(0.235195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235195,0.000000,0.000000,0.250000,0,0);}
.ma_c01399{transform:matrix(0.242748,0.002427,-0.002500,0.249988,0,0);-ms-transform:matrix(0.242748,0.002427,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.242748,0.002427,-0.002500,0.249988,0,0);}
.mc_c01399{transform:matrix(0.247123,0.002471,-0.002500,0.249988,0,0);-ms-transform:matrix(0.247123,0.002471,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.247123,0.002471,-0.002500,0.249988,0,0);}
.m4d_c01399{transform:matrix(0.254007,-0.001270,0.001250,0.249997,0,0);-ms-transform:matrix(0.254007,-0.001270,0.001250,0.249997,0,0);-webkit-transform:matrix(0.254007,-0.001270,0.001250,0.249997,0,0);}
.m4_c01399{transform:matrix(0.254597,0.002546,-0.002500,0.249988,0,0);-ms-transform:matrix(0.254597,0.002546,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.254597,0.002546,-0.002500,0.249988,0,0);}
.m18_c01399{transform:matrix(0.257847,0.002578,-0.002500,0.249988,0,0);-ms-transform:matrix(0.257847,0.002578,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.257847,0.002578,-0.002500,0.249988,0,0);}
.m52_c01399{transform:matrix(0.258045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258045,0.000000,0.000000,0.250000,0,0);}
.m5e_c01399{transform:matrix(0.259495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259495,0.000000,0.000000,0.250000,0,0);}
.m5a_c01399{transform:matrix(0.260485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260485,0.000000,0.000000,0.250000,0,0);}
.m30_c01399{transform:matrix(0.260640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260640,0.000000,0.000000,0.250000,0,0);}
.m49_c01399{transform:matrix(0.261032,-0.001305,0.001250,0.249997,0,0);-ms-transform:matrix(0.261032,-0.001305,0.001250,0.249997,0,0);-webkit-transform:matrix(0.261032,-0.001305,0.001250,0.249997,0,0);}
.m19_c01399{transform:matrix(0.261867,0.002619,-0.002500,0.249988,0,0);-ms-transform:matrix(0.261867,0.002619,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.261867,0.002619,-0.002500,0.249988,0,0);}
.m10_c01399{transform:matrix(0.262262,0.002623,-0.002500,0.249988,0,0);-ms-transform:matrix(0.262262,0.002623,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.262262,0.002623,-0.002500,0.249988,0,0);}
.m5_c01399{transform:matrix(0.262422,0.002624,-0.002500,0.249988,0,0);-ms-transform:matrix(0.262422,0.002624,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.262422,0.002624,-0.002500,0.249988,0,0);}
.m61_c01399{transform:matrix(0.266065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266065,0.000000,0.000000,0.250000,0,0);}
.m4e_c01399{transform:matrix(0.268062,-0.001340,0.001250,0.249997,0,0);-ms-transform:matrix(0.268062,-0.001340,0.001250,0.249997,0,0);-webkit-transform:matrix(0.268062,-0.001340,0.001250,0.249997,0,0);}
.m48_c01399{transform:matrix(0.273482,-0.001367,0.001250,0.249997,0,0);-ms-transform:matrix(0.273482,-0.001367,0.001250,0.249997,0,0);-webkit-transform:matrix(0.273482,-0.001367,0.001250,0.249997,0,0);}
.m1e_c01399{transform:matrix(0.278570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278570,0.000000,0.000000,0.250000,0,0);}
.m4a_c01399{transform:matrix(0.278737,-0.001394,0.001250,0.249997,0,0);-ms-transform:matrix(0.278737,-0.001394,0.001250,0.249997,0,0);-webkit-transform:matrix(0.278737,-0.001394,0.001250,0.249997,0,0);}
.m16_c01399{transform:matrix(0.281061,0.002811,-0.002500,0.249988,0,0);-ms-transform:matrix(0.281061,0.002811,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.281061,0.002811,-0.002500,0.249988,0,0);}
.md_c01399{transform:matrix(0.289986,0.002900,-0.002500,0.249988,0,0);-ms-transform:matrix(0.289986,0.002900,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.289986,0.002900,-0.002500,0.249988,0,0);}
.m51_c01399{transform:matrix(0.291205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291205,0.000000,0.000000,0.250000,0,0);}
.m31_c01399{transform:matrix(0.293020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293020,0.000000,0.000000,0.250000,0,0);}
.m24_c01399{transform:matrix(0.299040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299040,0.000000,0.000000,0.250000,0,0);}
.m2d_c01399{transform:matrix(0.301170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301170,0.000000,0.000000,0.250000,0,0);}
.m1f_c01399{transform:matrix(0.303080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303080,0.000000,0.000000,0.250000,0,0);}
.m15_c01399{transform:matrix(0.310369,0.003104,-0.002500,0.249988,0,0);-ms-transform:matrix(0.310369,0.003104,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.310369,0.003104,-0.002500,0.249988,0,0);}
.m2e_c01399{transform:matrix(0.312850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312850,0.000000,0.000000,0.250000,0,0);}
.m1b_c01399{transform:matrix(0.313379,0.003134,-0.002500,0.249988,0,0);-ms-transform:matrix(0.313379,0.003134,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.313379,0.003134,-0.002500,0.249988,0,0);}
.m4c_c01399{transform:matrix(0.345251,-0.001726,0.001250,0.249997,0,0);-ms-transform:matrix(0.345251,-0.001726,0.001250,0.249997,0,0);-webkit-transform:matrix(0.345251,-0.001726,0.001250,0.249997,0,0);}
.m27_c01399{transform:matrix(0.348325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348325,0.000000,0.000000,0.250000,0,0);}
.m13_c01399{transform:matrix(0.354202,0.003542,-0.002500,0.249988,0,0);-ms-transform:matrix(0.354202,0.003542,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.354202,0.003542,-0.002500,0.249988,0,0);}
.m1d_c01399{transform:matrix(0.354970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354970,0.000000,0.000000,0.250000,0,0);}
.m3_c01399{transform:matrix(0.370936,0.003709,-0.002500,0.249988,0,0);-ms-transform:matrix(0.370936,0.003709,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.370936,0.003709,-0.002500,0.249988,0,0);}
.m4f_c01399{transform:matrix(0.372830,-0.001864,0.001250,0.249997,0,0);-ms-transform:matrix(0.372830,-0.001864,0.001250,0.249997,0,0);-webkit-transform:matrix(0.372830,-0.001864,0.001250,0.249997,0,0);}
.m1a_c01399{transform:matrix(0.372841,0.003728,-0.002500,0.249988,0,0);-ms-transform:matrix(0.372841,0.003728,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.372841,0.003728,-0.002500,0.249988,0,0);}
.m26_c01399{transform:matrix(0.391370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391370,0.000000,0.000000,0.250000,0,0);}
.m46_c01399{transform:matrix(0.401155,-0.002006,0.001250,0.249997,0,0);-ms-transform:matrix(0.401155,-0.002006,0.001250,0.249997,0,0);-webkit-transform:matrix(0.401155,-0.002006,0.001250,0.249997,0,0);}
.m23_c01399{transform:matrix(0.401620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401620,0.000000,0.000000,0.250000,0,0);}
.m25_c01399{transform:matrix(0.419950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.419950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.419950,0.000000,0.000000,0.250000,0,0);}
.m17_c01399{transform:matrix(0.430203,0.004302,-0.002500,0.249988,0,0);-ms-transform:matrix(0.430203,0.004302,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.430203,0.004302,-0.002500,0.249988,0,0);}
.m8_c01399{transform:matrix(0.472921,0.004729,-0.002500,0.249988,0,0);-ms-transform:matrix(0.472921,0.004729,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.472921,0.004729,-0.002500,0.249988,0,0);}
.m1c_c01399{transform:matrix(0.523455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523455,0.000000,0.000000,0.250000,0,0);}
.m62_c01399{transform:matrix(0.527680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527680,0.000000,0.000000,0.250000,0,0);}
.m22_c01399{transform:matrix(0.554820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554820,0.000000,0.000000,0.250000,0,0);}
.m0_c01399{transform:matrix(0.581821,0.005818,-0.002500,0.249988,0,0);-ms-transform:matrix(0.581821,0.005818,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.581821,0.005818,-0.002500,0.249988,0,0);}
.m5b_c01399{transform:matrix(0.680230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.680230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.680230,0.000000,0.000000,0.250000,0,0);}
.v0_c01399{vertical-align:0.000000px;}
.ls0_c01399{letter-spacing:0.000000px;}
.sc__c01399{text-shadow:none;}
.sc0_c01399{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__c01399{-webkit-text-stroke:0px transparent;}
.sc0_c01399{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01399{word-spacing:0.000000px;}
.fc0_c01399{color:transparent;}
.fs2_c01399{font-size:84.004200px;}
.fs3_c01399{font-size:90.000000px;}
.fs5_c01399{font-size:90.001125px;}
.fs1_c01399{font-size:90.004500px;}
.fs7_c01399{font-size:96.000000px;}
.fs6_c01399{font-size:108.000000px;}
.fs0_c01399{font-size:114.005700px;}
.fs4_c01399{font-size:144.000000px;}
.y0_c01399{bottom:0.000000px;}
.y2d_c01399{bottom:555.208500px;}
.y2c_c01399{bottom:589.068000px;}
.y21_c01399{bottom:625.248000px;}
.y22_c01399{bottom:625.611195px;}
.y23_c01399{bottom:626.095838px;}
.y24_c01399{bottom:626.391487px;}
.y25_c01399{bottom:626.944980px;}
.y26_c01399{bottom:627.170430px;}
.y27_c01399{bottom:627.707723px;}
.y28_c01399{bottom:627.862972px;}
.y29_c01399{bottom:628.192342px;}
.y2a_c01399{bottom:628.348912px;}
.y2b_c01399{bottom:628.470465px;}
.y20_c01399{bottom:659.065500px;}
.y1f_c01399{bottom:697.380000px;}
.y1e_c01399{bottom:730.081500px;}
.y1d_c01399{bottom:800.697315px;}
.y1c_c01399{bottom:801.147930px;}
.y1b_c01399{bottom:801.784800px;}
.y1a_c01399{bottom:802.647255px;}
.y19_c01399{bottom:802.946340px;}
.y18_c01399{bottom:803.245425px;}
.y17_c01399{bottom:803.808795px;}
.y16_c01399{bottom:804.143685px;}
.y15_c01399{bottom:804.445035px;}
.y14_c01399{bottom:805.221435px;}
.y12_c01399{bottom:839.259540px;}
.y13_c01399{bottom:839.259855px;}
.yb_c01399{bottom:839.259945px;}
.y11_c01399{bottom:839.260125px;}
.y9_c01399{bottom:839.260155px;}
.ya_c01399{bottom:839.260200px;}
.yc_c01399{bottom:839.260260px;}
.y10_c01399{bottom:839.260380px;}
.yd_c01399{bottom:839.260905px;}
.ye_c01399{bottom:839.260920px;}
.yf_c01399{bottom:839.260935px;}
.y8_c01399{bottom:871.389510px;}
.y7_c01399{bottom:872.461815px;}
.y6_c01399{bottom:873.380505px;}
.y5_c01399{bottom:873.950820px;}
.y4_c01399{bottom:875.079255px;}
.y3_c01399{bottom:876.839355px;}
.y2_c01399{bottom:877.180485px;}
.y1_c01399{bottom:878.313000px;}
.h4_c01399{height:84.004200px;}
.h5_c01399{height:90.000000px;}
.h7_c01399{height:90.001125px;}
.h3_c01399{height:90.004500px;}
.h9_c01399{height:96.000000px;}
.h8_c01399{height:108.000000px;}
.h2_c01399{height:114.005700px;}
.h6_c01399{height:144.000000px;}
.h1_c01399{height:1250.250000px;}
.h0_c01399{height:1250.370000px;}
.w0_c01399{width:878.850000px;}
.w1_c01399{width:879.000000px;}
.x0_c01399{left:0.000000px;}
.x48_c01399{left:1.890000px;}
.x33_c01399{left:9.990000px;}
.x49_c01399{left:29.160000px;}
.x27_c01399{left:40.500000px;}
.x34_c01399{left:70.740000px;}
.x3f_c01399{left:72.762000px;}
.x1b_c01399{left:75.870000px;}
.x8_c01399{left:82.354770px;}
.x28_c01399{left:94.770000px;}
.x35_c01399{left:101.790000px;}
.x1c_c01399{left:107.460000px;}
.x1_c01399{left:113.008500px;}
.x4a_c01399{left:126.360000px;}
.x1d_c01399{left:138.780000px;}
.x2_c01399{left:147.121500px;}
.x29_c01399{left:159.300000px;}
.x40_c01399{left:169.690500px;}
.x9_c01399{left:177.939825px;}
.x36_c01399{left:182.250000px;}
.x12_c01399{left:193.402020px;}
.x4b_c01399{left:207.360000px;}
.xa_c01399{left:216.012135px;}
.x1e_c01399{left:219.240000px;}
.x41_c01399{left:228.820500px;}
.x1f_c01399{left:250.560000px;}
.x37_c01399{left:270.540000px;}
.x13_c01399{left:279.592875px;}
.x20_c01399{left:295.380000px;}
.x4f_c01399{left:298.350000px;}
.x2a_c01399{left:302.670000px;}
.x38_c01399{left:304.830000px;}
.xb_c01399{left:312.407280px;}
.x3_c01399{left:323.131500px;}
.x2b_c01399{left:334.800000px;}
.x42_c01399{left:339.519000px;}
.x14_c01399{left:350.267580px;}
.x50_c01399{left:355.050000px;}
.xc_c01399{left:356.960235px;}
.x39_c01399{left:359.910000px;}
.x2c_c01399{left:369.900000px;}
.x4c_c01399{left:381.510000px;}
.x43_c01399{left:384.609000px;}
.xd_c01399{left:390.712110px;}
.x21_c01399{left:402.840000px;}
.x3a_c01399{left:411.480000px;}
.x15_c01399{left:412.905210px;}
.x4_c01399{left:435.975000px;}
.x16_c01399{left:446.114040px;}
.x22_c01399{left:461.160000px;}
.x3b_c01399{left:477.090000px;}
.x17_c01399{left:479.322870px;}
.x51_c01399{left:480.600000px;}
.xe_c01399{left:487.377270px;}
.x5_c01399{left:493.006500px;}
.x23_c01399{left:514.890000px;}
.x44_c01399{left:523.117500px;}
.x2d_c01399{left:536.490000px;}
.x3c_c01399{left:542.430000px;}
.x24_c01399{left:550.530000px;}
.x2e_c01399{left:565.920000px;}
.xf_c01399{left:573.511380px;}
.x18_c01399{left:575.169330px;}
.x52_c01399{left:577.800000px;}
.x6_c01399{left:584.875500px;}
.x2f_c01399{left:586.170000px;}
.x45_c01399{left:588.991500px;}
.x3d_c01399{left:590.490000px;}
.x4d_c01399{left:592.110000px;}
.x10_c01399{left:606.723195px;}
.x53_c01399{left:611.820000px;}
.x46_c01399{left:620.305500px;}
.x25_c01399{left:622.350000px;}
.x3e_c01399{left:635.310000px;}
.x11_c01399{left:643.445370px;}
.x47_c01399{left:644.616000px;}
.x19_c01399{left:645.907035px;}
.x30_c01399{left:665.280000px;}
.x31_c01399{left:685.800000px;}
.x54_c01399{left:686.880000px;}
.x7_c01399{left:692.106000px;}
.x1a_c01399{left:695.919030px;}
.x55_c01399{left:710.370000px;}
.x4e_c01399{left:713.610000px;}
.x56_c01399{left:766.530000px;}
.x32_c01399{left:779.490000px;}
.x26_c01399{left:784.350000px;}
@media print{
.v0_c01399{vertical-align:0.000000pt;}
.ls0_c01399{letter-spacing:0.000000pt;}
.ws0_c01399{word-spacing:0.000000pt;}
.fs2_c01399{font-size:74.670400pt;}
.fs3_c01399{font-size:80.000000pt;}
.fs5_c01399{font-size:80.001000pt;}
.fs1_c01399{font-size:80.004000pt;}
.fs7_c01399{font-size:85.333333pt;}
.fs6_c01399{font-size:96.000000pt;}
.fs0_c01399{font-size:101.338400pt;}
.fs4_c01399{font-size:128.000000pt;}
.y0_c01399{bottom:0.000000pt;}
.y2d_c01399{bottom:493.518667pt;}
.y2c_c01399{bottom:523.616000pt;}
.y21_c01399{bottom:555.776000pt;}
.y22_c01399{bottom:556.098840pt;}
.y23_c01399{bottom:556.529633pt;}
.y24_c01399{bottom:556.792433pt;}
.y25_c01399{bottom:557.284427pt;}
.y26_c01399{bottom:557.484827pt;}
.y27_c01399{bottom:557.962420pt;}
.y28_c01399{bottom:558.100420pt;}
.y29_c01399{bottom:558.393193pt;}
.y2a_c01399{bottom:558.532367pt;}
.y2b_c01399{bottom:558.640413pt;}
.y20_c01399{bottom:585.836000pt;}
.y1f_c01399{bottom:619.893333pt;}
.y1e_c01399{bottom:648.961333pt;}
.y1d_c01399{bottom:711.730947pt;}
.y1c_c01399{bottom:712.131493pt;}
.y1b_c01399{bottom:712.697600pt;}
.y1a_c01399{bottom:713.464227pt;}
.y19_c01399{bottom:713.730080pt;}
.y18_c01399{bottom:713.995933pt;}
.y17_c01399{bottom:714.496707pt;}
.y16_c01399{bottom:714.794387pt;}
.y15_c01399{bottom:715.062253pt;}
.y14_c01399{bottom:715.752387pt;}
.y12_c01399{bottom:746.008480pt;}
.y13_c01399{bottom:746.008760pt;}
.yb_c01399{bottom:746.008840pt;}
.y11_c01399{bottom:746.009000pt;}
.y9_c01399{bottom:746.009027pt;}
.ya_c01399{bottom:746.009067pt;}
.yc_c01399{bottom:746.009120pt;}
.y10_c01399{bottom:746.009227pt;}
.yd_c01399{bottom:746.009693pt;}
.ye_c01399{bottom:746.009707pt;}
.yf_c01399{bottom:746.009720pt;}
.y8_c01399{bottom:774.568453pt;}
.y7_c01399{bottom:775.521613pt;}
.y6_c01399{bottom:776.338227pt;}
.y5_c01399{bottom:776.845173pt;}
.y4_c01399{bottom:777.848227pt;}
.y3_c01399{bottom:779.412760pt;}
.y2_c01399{bottom:779.715987pt;}
.y1_c01399{bottom:780.722667pt;}
.h4_c01399{height:74.670400pt;}
.h5_c01399{height:80.000000pt;}
.h7_c01399{height:80.001000pt;}
.h3_c01399{height:80.004000pt;}
.h9_c01399{height:85.333333pt;}
.h8_c01399{height:96.000000pt;}
.h2_c01399{height:101.338400pt;}
.h6_c01399{height:128.000000pt;}
.h1_c01399{height:1111.333333pt;}
.h0_c01399{height:1111.440000pt;}
.w0_c01399{width:781.200000pt;}
.w1_c01399{width:781.333333pt;}
.x0_c01399{left:0.000000pt;}
.x48_c01399{left:1.680000pt;}
.x33_c01399{left:8.880000pt;}
.x49_c01399{left:25.920000pt;}
.x27_c01399{left:36.000000pt;}
.x34_c01399{left:62.880000pt;}
.x3f_c01399{left:64.677333pt;}
.x1b_c01399{left:67.440000pt;}
.x8_c01399{left:73.204240pt;}
.x28_c01399{left:84.240000pt;}
.x35_c01399{left:90.480000pt;}
.x1c_c01399{left:95.520000pt;}
.x1_c01399{left:100.452000pt;}
.x4a_c01399{left:112.320000pt;}
.x1d_c01399{left:123.360000pt;}
.x2_c01399{left:130.774667pt;}
.x29_c01399{left:141.600000pt;}
.x40_c01399{left:150.836000pt;}
.x9_c01399{left:158.168733pt;}
.x36_c01399{left:162.000000pt;}
.x12_c01399{left:171.912907pt;}
.x4b_c01399{left:184.320000pt;}
.xa_c01399{left:192.010787pt;}
.x1e_c01399{left:194.880000pt;}
.x41_c01399{left:203.396000pt;}
.x1f_c01399{left:222.720000pt;}
.x37_c01399{left:240.480000pt;}
.x13_c01399{left:248.527000pt;}
.x20_c01399{left:262.560000pt;}
.x4f_c01399{left:265.200000pt;}
.x2a_c01399{left:269.040000pt;}
.x38_c01399{left:270.960000pt;}
.xb_c01399{left:277.695360pt;}
.x3_c01399{left:287.228000pt;}
.x2b_c01399{left:297.600000pt;}
.x42_c01399{left:301.794667pt;}
.x14_c01399{left:311.348960pt;}
.x50_c01399{left:315.600000pt;}
.xc_c01399{left:317.297987pt;}
.x39_c01399{left:319.920000pt;}
.x2c_c01399{left:328.800000pt;}
.x4c_c01399{left:339.120000pt;}
.x43_c01399{left:341.874667pt;}
.xd_c01399{left:347.299653pt;}
.x21_c01399{left:358.080000pt;}
.x3a_c01399{left:365.760000pt;}
.x15_c01399{left:367.026853pt;}
.x4_c01399{left:387.533333pt;}
.x16_c01399{left:396.545813pt;}
.x22_c01399{left:409.920000pt;}
.x3b_c01399{left:424.080000pt;}
.x17_c01399{left:426.064773pt;}
.x51_c01399{left:427.200000pt;}
.xe_c01399{left:433.224240pt;}
.x5_c01399{left:438.228000pt;}
.x23_c01399{left:457.680000pt;}
.x44_c01399{left:464.993333pt;}
.x2d_c01399{left:476.880000pt;}
.x3c_c01399{left:482.160000pt;}
.x24_c01399{left:489.360000pt;}
.x2e_c01399{left:503.040000pt;}
.xf_c01399{left:509.787893pt;}
.x18_c01399{left:511.261627pt;}
.x52_c01399{left:513.600000pt;}
.x6_c01399{left:519.889333pt;}
.x2f_c01399{left:521.040000pt;}
.x45_c01399{left:523.548000pt;}
.x3d_c01399{left:524.880000pt;}
.x4d_c01399{left:526.320000pt;}
.x10_c01399{left:539.309507pt;}
.x53_c01399{left:543.840000pt;}
.x46_c01399{left:551.382667pt;}
.x25_c01399{left:553.200000pt;}
.x3e_c01399{left:564.720000pt;}
.x11_c01399{left:571.951440pt;}
.x47_c01399{left:572.992000pt;}
.x19_c01399{left:574.139587pt;}
.x30_c01399{left:591.360000pt;}
.x31_c01399{left:609.600000pt;}
.x54_c01399{left:610.560000pt;}
.x7_c01399{left:615.205333pt;}
.x1a_c01399{left:618.594693pt;}
.x55_c01399{left:631.440000pt;}
.x4e_c01399{left:634.320000pt;}
.x56_c01399{left:681.360000pt;}
.x32_c01399{left:692.880000pt;}
.x26_c01399{left:697.200000pt;}
}





/* 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_c01400 {
    display:none;
  }
  .loading-indicator_c01400.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01400 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_c01400 { 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_c01400" -> "#page-container .classname_c01400")
 */
.pf_c01400 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01400 { /* 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_c01400.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01400 { /* 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_c01400 { /* 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_c01400 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01400 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01400 {overflow:visible;}
  }
}
.c_c01400 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01400 { /* 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_c01400:after { /* webkit #35443 */
  content: '';
}
.t_c01400:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01400 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 */
}
.__c01400 { /* 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_c01400 { /* info for Javascript */
  display:none;
}
.l_c01400 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01400 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01400 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01400: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_c01400 {
    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_c01400.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01400.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_c01400 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01400{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01400;src:url('chunks/assets/font_c605e72f209fc835e906f064.woff2')format("woff");}.ff1_c01400{font-family:ff1_c01400;line-height:1.000000;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;}
.m0_c01400{transform:matrix(0.106965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106965,0.000000,0.000000,0.250000,0,0);}
.m97_c01400{transform:matrix(0.148490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148490,0.000000,0.000000,0.250000,0,0);}
.m3_c01400{transform:matrix(0.156470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156470,0.000000,0.000000,0.250000,0,0);}
.m40_c01400{transform:matrix(0.163770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163770,0.000000,0.000000,0.250000,0,0);}
.mc1_c01400{transform:matrix(0.167295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167295,0.000000,0.000000,0.250000,0,0);}
.me_c01400{transform:matrix(0.168005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168005,0.000000,0.000000,0.250000,0,0);}
.m38_c01400{transform:matrix(0.171950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171950,0.000000,0.000000,0.250000,0,0);}
.m33_c01400{transform:matrix(0.172145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172145,0.000000,0.000000,0.250000,0,0);}
.m113_c01400{transform:matrix(0.177630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177630,0.000000,0.000000,0.250000,0,0);}
.m35_c01400{transform:matrix(0.179495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179495,0.000000,0.000000,0.250000,0,0);}
.m2d_c01400{transform:matrix(0.181945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181945,0.000000,0.000000,0.250000,0,0);}
.me1_c01400{transform:matrix(0.183160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183160,0.000000,0.000000,0.250000,0,0);}
.mbb_c01400{transform:matrix(0.183360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183360,0.000000,0.000000,0.250000,0,0);}
.mc4_c01400{transform:matrix(0.183675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183675,0.000000,0.000000,0.250000,0,0);}
.m2b_c01400{transform:matrix(0.185300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185300,0.000000,0.000000,0.250000,0,0);}
.m117_c01400{transform:matrix(0.186725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186725,0.000000,0.000000,0.250000,0,0);}
.mc3_c01400{transform:matrix(0.186895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186895,0.000000,0.000000,0.250000,0,0);}
.m30_c01400{transform:matrix(0.186985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186985,0.000000,0.000000,0.250000,0,0);}
.m42_c01400{transform:matrix(0.187625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187625,0.000000,0.000000,0.250000,0,0);}
.m3c_c01400{transform:matrix(0.188260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188260,0.000000,0.000000,0.250000,0,0);}
.m3f_c01400{transform:matrix(0.189315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189315,0.000000,0.000000,0.250000,0,0);}
.m111_c01400{transform:matrix(0.190075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190075,0.000000,0.000000,0.250000,0,0);}
.m10e_c01400{transform:matrix(0.192095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192095,0.000000,0.000000,0.250000,0,0);}
.mec_c01400{transform:matrix(0.193505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193505,0.000000,0.000000,0.250000,0,0);}
.m32_c01400{transform:matrix(0.194640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194640,0.000000,0.000000,0.250000,0,0);}
.m121_c01400{transform:matrix(0.195575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195575,0.000000,0.000000,0.250000,0,0);}
.m115_c01400{transform:matrix(0.195880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195880,0.000000,0.000000,0.250000,0,0);}
.m27_c01400{transform:matrix(0.195890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195890,0.000000,0.000000,0.250000,0,0);}
.m3b_c01400{transform:matrix(0.195915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195915,0.000000,0.000000,0.250000,0,0);}
.m45_c01400{transform:matrix(0.196540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196540,0.000000,0.000000,0.250000,0,0);}
.mf9_c01400{transform:matrix(0.196735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196735,0.000000,0.000000,0.250000,0,0);}
.m29_c01400{transform:matrix(0.197550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197550,0.000000,0.000000,0.250000,0,0);}
.mbe_c01400{transform:matrix(0.198040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198040,0.000000,0.000000,0.250000,0,0);}
.m44_c01400{transform:matrix(0.198345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198345,0.000000,0.000000,0.250000,0,0);}
.mc6_c01400{transform:matrix(0.198660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198660,0.000000,0.000000,0.250000,0,0);}
.m47_c01400{transform:matrix(0.201120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201120,0.000000,0.000000,0.250000,0,0);}
.m1f_c01400{transform:matrix(0.201310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201310,0.000000,0.000000,0.250000,0,0);}
.m2e_c01400{transform:matrix(0.201520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201520,0.000000,0.000000,0.250000,0,0);}
.m7b_c01400{transform:matrix(0.202290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202290,0.000000,0.000000,0.250000,0,0);}
.m11f_c01400{transform:matrix(0.202665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202665,0.000000,0.000000,0.250000,0,0);}
.m31_c01400{transform:matrix(0.203335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203335,0.000000,0.000000,0.250000,0,0);}
.m110_c01400{transform:matrix(0.203405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203405,0.000000,0.000000,0.250000,0,0);}
.m10f_c01400{transform:matrix(0.203570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203570,0.000000,0.000000,0.250000,0,0);}
.mbd_c01400{transform:matrix(0.203905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203905,0.000000,0.000000,0.250000,0,0);}
.m11c_c01400{transform:matrix(0.205040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205040,0.000000,0.000000,0.250000,0,0);}
.m41_c01400{transform:matrix(0.205230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205230,0.000000,0.000000,0.250000,0,0);}
.m48_c01400{transform:matrix(0.205630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205630,0.000000,0.000000,0.250000,0,0);}
.m34_c01400{transform:matrix(0.205710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205710,0.000000,0.000000,0.250000,0,0);}
.m37_c01400{transform:matrix(0.205920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205920,0.000000,0.000000,0.250000,0,0);}
.m119_c01400{transform:matrix(0.205980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205980,0.000000,0.000000,0.250000,0,0);}
.m43_c01400{transform:matrix(0.206400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206400,0.000000,0.000000,0.250000,0,0);}
.m80_c01400{transform:matrix(0.206405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206405,0.000000,0.000000,0.250000,0,0);}
.mde_c01400{transform:matrix(0.206825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206825,0.000000,0.000000,0.250000,0,0);}
.m118_c01400{transform:matrix(0.206890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206890,0.000000,0.000000,0.250000,0,0);}
.m1b_c01400{transform:matrix(0.206895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206895,0.000000,0.000000,0.250000,0,0);}
.m3a_c01400{transform:matrix(0.207255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207255,0.000000,0.000000,0.250000,0,0);}
.md6_c01400{transform:matrix(0.207840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207840,0.000000,0.000000,0.250000,0,0);}
.mda_c01400{transform:matrix(0.208575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208575,0.000000,0.000000,0.250000,0,0);}
.m73_c01400{transform:matrix(0.209280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209280,0.000000,0.000000,0.250000,0,0);}
.m116_c01400{transform:matrix(0.209295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209295,0.000000,0.000000,0.250000,0,0);}
.m5c_c01400{transform:matrix(0.209505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209505,0.000000,0.000000,0.250000,0,0);}
.md9_c01400{transform:matrix(0.209890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209890,0.000000,0.000000,0.250000,0,0);}
.m82_c01400{transform:matrix(0.210620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210620,0.000000,0.000000,0.250000,0,0);}
.md7_c01400{transform:matrix(0.211020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211020,0.000000,0.000000,0.250000,0,0);}
.mcf_c01400{transform:matrix(0.211335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211335,0.000000,0.000000,0.250000,0,0);}
.m2a_c01400{transform:matrix(0.211545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211545,0.000000,0.000000,0.250000,0,0);}
.m7e_c01400{transform:matrix(0.211630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211630,0.000000,0.000000,0.250000,0,0);}
.m94_c01400{transform:matrix(0.211870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211870,0.000000,0.000000,0.250000,0,0);}
.mbf_c01400{transform:matrix(0.212075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212075,0.000000,0.000000,0.250000,0,0);}
.m112_c01400{transform:matrix(0.212190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212190,0.000000,0.000000,0.250000,0,0);}
.m39_c01400{transform:matrix(0.212200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212200,0.000000,0.000000,0.250000,0,0);}
.mea_c01400{transform:matrix(0.212620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212620,0.000000,0.000000,0.250000,0,0);}
.m11a_c01400{transform:matrix(0.213335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213335,0.000000,0.000000,0.250000,0,0);}
.mc2_c01400{transform:matrix(0.213530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213530,0.000000,0.000000,0.250000,0,0);}
.mab_c01400{transform:matrix(0.214800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214800,0.000000,0.000000,0.250000,0,0);}
.m11b_c01400{transform:matrix(0.214860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214860,0.000000,0.000000,0.250000,0,0);}
.m9f_c01400{transform:matrix(0.214930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214930,0.000000,0.000000,0.250000,0,0);}
.m83_c01400{transform:matrix(0.215290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215290,0.000000,0.000000,0.250000,0,0);}
.mc5_c01400{transform:matrix(0.215865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215865,0.000000,0.000000,0.250000,0,0);}
.m3d_c01400{transform:matrix(0.216550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216550,0.000000,0.000000,0.250000,0,0);}
.m2f_c01400{transform:matrix(0.217265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217265,0.000000,0.000000,0.250000,0,0);}
.m96_c01400{transform:matrix(0.217355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217355,0.000000,0.000000,0.250000,0,0);}
.m84_c01400{transform:matrix(0.218940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218940,0.000000,0.000000,0.250000,0,0);}
.maf_c01400{transform:matrix(0.219145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219145,0.000000,0.000000,0.250000,0,0);}
.md4_c01400{transform:matrix(0.220230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220230,0.000000,0.000000,0.250000,0,0);}
.mf1_c01400{transform:matrix(0.220595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220595,0.000000,0.000000,0.250000,0,0);}
.mfb_c01400{transform:matrix(0.220745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220745,0.000000,0.000000,0.250000,0,0);}
.md5_c01400{transform:matrix(0.220755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220755,0.000000,0.000000,0.250000,0,0);}
.m46_c01400{transform:matrix(0.221165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221165,0.000000,0.000000,0.250000,0,0);}
.m11d_c01400{transform:matrix(0.221245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221245,0.000000,0.000000,0.250000,0,0);}
.m11e_c01400{transform:matrix(0.221425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221425,0.000000,0.000000,0.250000,0,0);}
.mbc_c01400{transform:matrix(0.221700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221700,0.000000,0.000000,0.250000,0,0);}
.m3e_c01400{transform:matrix(0.221855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221855,0.000000,0.000000,0.250000,0,0);}
.m28_c01400{transform:matrix(0.221960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221960,0.000000,0.000000,0.250000,0,0);}
.m57_c01400{transform:matrix(0.222140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222140,0.000000,0.000000,0.250000,0,0);}
.mba_c01400{transform:matrix(0.222960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222960,0.000000,0.000000,0.250000,0,0);}
.mc0_c01400{transform:matrix(0.223605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223605,0.000000,0.000000,0.250000,0,0);}
.m78_c01400{transform:matrix(0.223825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223825,0.000000,0.000000,0.250000,0,0);}
.m90_c01400{transform:matrix(0.224170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224170,0.000000,0.000000,0.250000,0,0);}
.m122_c01400{transform:matrix(0.224910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224910,0.000000,0.000000,0.250000,0,0);}
.m81_c01400{transform:matrix(0.225350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225350,0.000000,0.000000,0.250000,0,0);}
.m104_c01400{transform:matrix(0.225780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225780,0.000000,0.000000,0.250000,0,0);}
.m2c_c01400{transform:matrix(0.225805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225805,0.000000,0.000000,0.250000,0,0);}
.m5e_c01400{transform:matrix(0.226035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226035,0.000000,0.000000,0.250000,0,0);}
.md8_c01400{transform:matrix(0.226420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226420,0.000000,0.000000,0.250000,0,0);}
.mdd_c01400{transform:matrix(0.226655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226655,0.000000,0.000000,0.250000,0,0);}
.m7a_c01400{transform:matrix(0.226815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226815,0.000000,0.000000,0.250000,0,0);}
.mf0_c01400{transform:matrix(0.227005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227005,0.000000,0.000000,0.250000,0,0);}
.me3_c01400{transform:matrix(0.227265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227265,0.000000,0.000000,0.250000,0,0);}
.m8e_c01400{transform:matrix(0.227430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227430,0.000000,0.000000,0.250000,0,0);}
.m77_c01400{transform:matrix(0.227945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227945,0.000000,0.000000,0.250000,0,0);}
.m11_c01400{transform:matrix(0.228170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228170,0.000000,0.000000,0.250000,0,0);}
.m5a_c01400{transform:matrix(0.228695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228695,0.000000,0.000000,0.250000,0,0);}
.m5b_c01400{transform:matrix(0.229330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229330,0.000000,0.000000,0.250000,0,0);}
.m87_c01400{transform:matrix(0.229525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229525,0.000000,0.000000,0.250000,0,0);}
.mfc_c01400{transform:matrix(0.230275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230275,0.000000,0.000000,0.250000,0,0);}
.m14_c01400{transform:matrix(0.230285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230285,0.000000,0.000000,0.250000,0,0);}
.mf8_c01400{transform:matrix(0.230325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230325,0.000000,0.000000,0.250000,0,0);}
.mdc_c01400{transform:matrix(0.230395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230395,0.000000,0.000000,0.250000,0,0);}
.m91_c01400{transform:matrix(0.230915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230915,0.000000,0.000000,0.250000,0,0);}
.m120_c01400{transform:matrix(0.231030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231030,0.000000,0.000000,0.250000,0,0);}
.m8a_c01400{transform:matrix(0.231625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231625,0.000000,0.000000,0.250000,0,0);}
.me7_c01400{transform:matrix(0.231805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231805,0.000000,0.000000,0.250000,0,0);}
.m64_c01400{transform:matrix(0.232285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232285,0.000000,0.000000,0.250000,0,0);}
.m36_c01400{transform:matrix(0.232340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232340,0.000000,0.000000,0.250000,0,0);}
.m49_c01400{transform:matrix(0.232405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232405,0.000000,0.000000,0.250000,0,0);}
.me4_c01400{transform:matrix(0.232725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232725,0.000000,0.000000,0.250000,0,0);}
.m58_c01400{transform:matrix(0.232985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232985,0.000000,0.000000,0.250000,0,0);}
.m74_c01400{transform:matrix(0.233735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233735,0.000000,0.000000,0.250000,0,0);}
.me9_c01400{transform:matrix(0.234975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234975,0.000000,0.000000,0.250000,0,0);}
.m54_c01400{transform:matrix(0.235080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235080,0.000000,0.000000,0.250000,0,0);}
.meb_c01400{transform:matrix(0.235160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235160,0.000000,0.000000,0.250000,0,0);}
.m7f_c01400{transform:matrix(0.235695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235695,0.000000,0.000000,0.250000,0,0);}
.m92_c01400{transform:matrix(0.236440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236440,0.000000,0.000000,0.250000,0,0);}
.m86_c01400{transform:matrix(0.236720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236720,0.000000,0.000000,0.250000,0,0);}
.m4c_c01400{transform:matrix(0.236725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236725,0.000000,0.000000,0.250000,0,0);}
.m99_c01400{transform:matrix(0.237030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237030,0.000000,0.000000,0.250000,0,0);}
.mc7_c01400{transform:matrix(0.237185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237185,0.000000,0.000000,0.250000,0,0);}
.mdb_c01400{transform:matrix(0.237225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237225,0.000000,0.000000,0.250000,0,0);}
.m5d_c01400{transform:matrix(0.237325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237325,0.000000,0.000000,0.250000,0,0);}
.m7c_c01400{transform:matrix(0.237560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237560,0.000000,0.000000,0.250000,0,0);}
.m50_c01400{transform:matrix(0.237990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237990,0.000000,0.000000,0.250000,0,0);}
.med_c01400{transform:matrix(0.238115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238115,0.000000,0.000000,0.250000,0,0);}
.m24_c01400{transform:matrix(0.238290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238290,0.000000,0.000000,0.250000,0,0);}
.md_c01400{transform:matrix(0.238950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238950,0.000000,0.000000,0.250000,0,0);}
.m70_c01400{transform:matrix(0.239230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239230,0.000000,0.000000,0.250000,0,0);}
.m68_c01400{transform:matrix(0.239295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239295,0.000000,0.000000,0.250000,0,0);}
.mee_c01400{transform:matrix(0.239335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239335,0.000000,0.000000,0.250000,0,0);}
.m93_c01400{transform:matrix(0.239560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239560,0.000000,0.000000,0.250000,0,0);}
.m79_c01400{transform:matrix(0.239850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239850,0.000000,0.000000,0.250000,0,0);}
.m85_c01400{transform:matrix(0.239890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239890,0.000000,0.000000,0.250000,0,0);}
.m16_c01400{transform:matrix(0.240065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240065,0.000000,0.000000,0.250000,0,0);}
.md2_c01400{transform:matrix(0.240155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240155,0.000000,0.000000,0.250000,0,0);}
.me6_c01400{transform:matrix(0.240390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240390,0.000000,0.000000,0.250000,0,0);}
.mfa_c01400{transform:matrix(0.241265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241265,0.000000,0.000000,0.250000,0,0);}
.m105_c01400{transform:matrix(0.241610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241610,0.000000,0.000000,0.250000,0,0);}
.m69_c01400{transform:matrix(0.241995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241995,0.000000,0.000000,0.250000,0,0);}
.ma8_c01400{transform:matrix(0.242330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242330,0.000000,0.000000,0.250000,0,0);}
.m1d_c01400{transform:matrix(0.242475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242475,0.000000,0.000000,0.250000,0,0);}
.m95_c01400{transform:matrix(0.243295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243295,0.000000,0.000000,0.250000,0,0);}
.m100_c01400{transform:matrix(0.243375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243375,0.000000,0.000000,0.250000,0,0);}
.mb5_c01400{transform:matrix(0.243400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243400,0.000000,0.000000,0.250000,0,0);}
.mdf_c01400{transform:matrix(0.243430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243430,0.000000,0.000000,0.250000,0,0);}
.m21_c01400{transform:matrix(0.243815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243815,0.000000,0.000000,0.250000,0,0);}
.m56_c01400{transform:matrix(0.244225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244225,0.000000,0.000000,0.250000,0,0);}
.m8c_c01400{transform:matrix(0.244395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244395,0.000000,0.000000,0.250000,0,0);}
.m75_c01400{transform:matrix(0.245215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245215,0.000000,0.000000,0.250000,0,0);}
.me8_c01400{transform:matrix(0.245455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245455,0.000000,0.000000,0.250000,0,0);}
.md3_c01400{transform:matrix(0.245475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245475,0.000000,0.000000,0.250000,0,0);}
.m9a_c01400{transform:matrix(0.245715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245715,0.000000,0.000000,0.250000,0,0);}
.mb_c01400{transform:matrix(0.246185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246185,0.000000,0.000000,0.250000,0,0);}
.m20_c01400{transform:matrix(0.246205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246205,0.000000,0.000000,0.250000,0,0);}
.mf4_c01400{transform:matrix(0.246480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246480,0.000000,0.000000,0.250000,0,0);}
.me5_c01400{transform:matrix(0.246695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246695,0.000000,0.000000,0.250000,0,0);}
.m5_c01400{transform:matrix(0.246940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246940,0.000000,0.000000,0.250000,0,0);}
.mcc_c01400{transform:matrix(0.246980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246980,0.000000,0.000000,0.250000,0,0);}
.m98_c01400{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.ma4_c01400{transform:matrix(0.247685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247685,0.000000,0.000000,0.250000,0,0);}
.m4a_c01400{transform:matrix(0.248445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248445,0.000000,0.000000,0.250000,0,0);}
.mb1_c01400{transform:matrix(0.248975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248975,0.000000,0.000000,0.250000,0,0);}
.m1e_c01400{transform:matrix(0.249040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249040,0.000000,0.000000,0.250000,0,0);}
.m4d_c01400{transform:matrix(0.249215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249215,0.000000,0.000000,0.250000,0,0);}
.m55_c01400{transform:matrix(0.249655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249655,0.000000,0.000000,0.250000,0,0);}
.m10b_c01400{transform:matrix(0.249760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249760,0.000000,0.000000,0.250000,0,0);}
.m4f_c01400{transform:matrix(0.249980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249980,0.000000,0.000000,0.250000,0,0);}
.m1_c01400{transform:matrix(0.250050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250050,0.000000,0.000000,0.250000,0,0);}
.m1a_c01400{transform:matrix(0.250155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250155,0.000000,0.000000,0.250000,0,0);}
.m62_c01400{transform:matrix(0.250310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250310,0.000000,0.000000,0.250000,0,0);}
.m72_c01400{transform:matrix(0.250390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250390,0.000000,0.000000,0.250000,0,0);}
.m52_c01400{transform:matrix(0.250950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250950,0.000000,0.000000,0.250000,0,0);}
.m22_c01400{transform:matrix(0.252115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252115,0.000000,0.000000,0.250000,0,0);}
.m4_c01400{transform:matrix(0.252255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252255,0.000000,0.000000,0.250000,0,0);}
.ma6_c01400{transform:matrix(0.253105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253105,0.000000,0.000000,0.250000,0,0);}
.mb8_c01400{transform:matrix(0.253785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253785,0.000000,0.000000,0.250000,0,0);}
.mad_c01400{transform:matrix(0.253800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253800,0.000000,0.000000,0.250000,0,0);}
.mae_c01400{transform:matrix(0.253875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253875,0.000000,0.000000,0.250000,0,0);}
.mb0_c01400{transform:matrix(0.253940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253940,0.000000,0.000000,0.250000,0,0);}
.m6f_c01400{transform:matrix(0.254310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254310,0.000000,0.000000,0.250000,0,0);}
.mfd_c01400{transform:matrix(0.254345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254345,0.000000,0.000000,0.250000,0,0);}
.m18_c01400{transform:matrix(0.254755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254755,0.000000,0.000000,0.250000,0,0);}
.m65_c01400{transform:matrix(0.255005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255005,0.000000,0.000000,0.250000,0,0);}
.m7d_c01400{transform:matrix(0.255175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255175,0.000000,0.000000,0.250000,0,0);}
.m76_c01400{transform:matrix(0.255280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255280,0.000000,0.000000,0.250000,0,0);}
.m51_c01400{transform:matrix(0.255580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255580,0.000000,0.000000,0.250000,0,0);}
.m15_c01400{transform:matrix(0.255675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255675,0.000000,0.000000,0.250000,0,0);}
.m53_c01400{transform:matrix(0.255935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255935,0.000000,0.000000,0.250000,0,0);}
.mb7_c01400{transform:matrix(0.256060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256060,0.000000,0.000000,0.250000,0,0);}
.mb9_c01400{transform:matrix(0.256170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256170,0.000000,0.000000,0.250000,0,0);}
.m8_c01400{transform:matrix(0.256190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256190,0.000000,0.000000,0.250000,0,0);}
.md0_c01400{transform:matrix(0.256225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256225,0.000000,0.000000,0.250000,0,0);}
.m6e_c01400{transform:matrix(0.256260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256260,0.000000,0.000000,0.250000,0,0);}
.m101_c01400{transform:matrix(0.256480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256480,0.000000,0.000000,0.250000,0,0);}
.ma2_c01400{transform:matrix(0.256640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256640,0.000000,0.000000,0.250000,0,0);}
.mfe_c01400{transform:matrix(0.257240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257240,0.000000,0.000000,0.250000,0,0);}
.m5f_c01400{transform:matrix(0.257540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257540,0.000000,0.000000,0.250000,0,0);}
.m8b_c01400{transform:matrix(0.257775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257775,0.000000,0.000000,0.250000,0,0);}
.m89_c01400{transform:matrix(0.257875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257875,0.000000,0.000000,0.250000,0,0);}
.m88_c01400{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m9_c01400{transform:matrix(0.258160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258160,0.000000,0.000000,0.250000,0,0);}
.mf7_c01400{transform:matrix(0.258350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258350,0.000000,0.000000,0.250000,0,0);}
.m106_c01400{transform:matrix(0.258410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258410,0.000000,0.000000,0.250000,0,0);}
.mf_c01400{transform:matrix(0.258525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258525,0.000000,0.000000,0.250000,0,0);}
.m71_c01400{transform:matrix(0.258695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258695,0.000000,0.000000,0.250000,0,0);}
.m26_c01400{transform:matrix(0.258755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258755,0.000000,0.000000,0.250000,0,0);}
.mf3_c01400{transform:matrix(0.259050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259050,0.000000,0.000000,0.250000,0,0);}
.m10_c01400{transform:matrix(0.259210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259210,0.000000,0.000000,0.250000,0,0);}
.m12_c01400{transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);}
.ma1_c01400{transform:matrix(0.260425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260425,0.000000,0.000000,0.250000,0,0);}
.m61_c01400{transform:matrix(0.260485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260485,0.000000,0.000000,0.250000,0,0);}
.m10d_c01400{transform:matrix(0.261210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261210,0.000000,0.000000,0.250000,0,0);}
.mb2_c01400{transform:matrix(0.261285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261285,0.000000,0.000000,0.250000,0,0);}
.mc9_c01400{transform:matrix(0.261365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261365,0.000000,0.000000,0.250000,0,0);}
.ma0_c01400{transform:matrix(0.261850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261850,0.000000,0.000000,0.250000,0,0);}
.m10a_c01400{transform:matrix(0.262490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262490,0.000000,0.000000,0.250000,0,0);}
.me2_c01400{transform:matrix(0.262665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262665,0.000000,0.000000,0.250000,0,0);}
.mf2_c01400{transform:matrix(0.262765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262765,0.000000,0.000000,0.250000,0,0);}
.m109_c01400{transform:matrix(0.263110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263110,0.000000,0.000000,0.250000,0,0);}
.ma5_c01400{transform:matrix(0.263300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263300,0.000000,0.000000,0.250000,0,0);}
.m108_c01400{transform:matrix(0.263785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263785,0.000000,0.000000,0.250000,0,0);}
.m6_c01400{transform:matrix(0.263885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263885,0.000000,0.000000,0.250000,0,0);}
.m59_c01400{transform:matrix(0.263965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263965,0.000000,0.000000,0.250000,0,0);}
.m6d_c01400{transform:matrix(0.264155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264155,0.000000,0.000000,0.250000,0,0);}
.m17_c01400{transform:matrix(0.264395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264395,0.000000,0.000000,0.250000,0,0);}
.m6c_c01400{transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);}
.mce_c01400{transform:matrix(0.265260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265260,0.000000,0.000000,0.250000,0,0);}
.m63_c01400{transform:matrix(0.265320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265320,0.000000,0.000000,0.250000,0,0);}
.m25_c01400{transform:matrix(0.265660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265660,0.000000,0.000000,0.250000,0,0);}
.m9b_c01400{transform:matrix(0.267660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267660,0.000000,0.000000,0.250000,0,0);}
.mef_c01400{transform:matrix(0.267700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267700,0.000000,0.000000,0.250000,0,0);}
.mf5_c01400{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.mac_c01400{transform:matrix(0.268355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268355,0.000000,0.000000,0.250000,0,0);}
.md1_c01400{transform:matrix(0.269620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269620,0.000000,0.000000,0.250000,0,0);}
.mc8_c01400{transform:matrix(0.269775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269775,0.000000,0.000000,0.250000,0,0);}
.m10c_c01400{transform:matrix(0.269925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269925,0.000000,0.000000,0.250000,0,0);}
.m9d_c01400{transform:matrix(0.270675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270675,0.000000,0.000000,0.250000,0,0);}
.mf6_c01400{transform:matrix(0.270685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270685,0.000000,0.000000,0.250000,0,0);}
.mcd_c01400{transform:matrix(0.270825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270825,0.000000,0.000000,0.250000,0,0);}
.ma_c01400{transform:matrix(0.272085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272085,0.000000,0.000000,0.250000,0,0);}
.m9e_c01400{transform:matrix(0.272760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272760,0.000000,0.000000,0.250000,0,0);}
.m6a_c01400{transform:matrix(0.272900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272900,0.000000,0.000000,0.250000,0,0);}
.m9c_c01400{transform:matrix(0.272995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272995,0.000000,0.000000,0.250000,0,0);}
.m4b_c01400{transform:matrix(0.273420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273420,0.000000,0.000000,0.250000,0,0);}
.mcb_c01400{transform:matrix(0.273585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273585,0.000000,0.000000,0.250000,0,0);}
.ma9_c01400{transform:matrix(0.273840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273840,0.000000,0.000000,0.250000,0,0);}
.mc_c01400{transform:matrix(0.274060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274060,0.000000,0.000000,0.250000,0,0);}
.m13_c01400{transform:matrix(0.274280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274280,0.000000,0.000000,0.250000,0,0);}
.ma3_c01400{transform:matrix(0.274565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274565,0.000000,0.000000,0.250000,0,0);}
.ma7_c01400{transform:matrix(0.274840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274840,0.000000,0.000000,0.250000,0,0);}
.m8f_c01400{transform:matrix(0.275135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275135,0.000000,0.000000,0.250000,0,0);}
.m67_c01400{transform:matrix(0.275380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275380,0.000000,0.000000,0.250000,0,0);}
.m23_c01400{transform:matrix(0.275415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275415,0.000000,0.000000,0.250000,0,0);}
.m66_c01400{transform:matrix(0.275470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275470,0.000000,0.000000,0.250000,0,0);}
.m1c_c01400{transform:matrix(0.275745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275745,0.000000,0.000000,0.250000,0,0);}
.m107_c01400{transform:matrix(0.275795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275795,0.000000,0.000000,0.250000,0,0);}
.m8d_c01400{transform:matrix(0.276100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276100,0.000000,0.000000,0.250000,0,0);}
.mff_c01400{transform:matrix(0.277320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277320,0.000000,0.000000,0.250000,0,0);}
.m60_c01400{transform:matrix(0.277580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277580,0.000000,0.000000,0.250000,0,0);}
.m7_c01400{transform:matrix(0.277670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277670,0.000000,0.000000,0.250000,0,0);}
.mb6_c01400{transform:matrix(0.278325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278325,0.000000,0.000000,0.250000,0,0);}
.maa_c01400{transform:matrix(0.280400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280400,0.000000,0.000000,0.250000,0,0);}
.m4e_c01400{transform:matrix(0.282610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282610,0.000000,0.000000,0.250000,0,0);}
.m19_c01400{transform:matrix(0.283375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283375,0.000000,0.000000,0.250000,0,0);}
.m6b_c01400{transform:matrix(0.283570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283570,0.000000,0.000000,0.250000,0,0);}
.m103_c01400{transform:matrix(0.286240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286240,0.000000,0.000000,0.250000,0,0);}
.m2_c01400{transform:matrix(0.289235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289235,0.000000,0.000000,0.250000,0,0);}
.mb4_c01400{transform:matrix(0.313140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313140,0.000000,0.000000,0.250000,0,0);}
.mca_c01400{transform:matrix(0.323890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323890,0.000000,0.000000,0.250000,0,0);}
.m114_c01400{transform:matrix(0.330070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330070,0.000000,0.000000,0.250000,0,0);}
.me0_c01400{transform:matrix(0.385245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385245,0.000000,0.000000,0.250000,0,0);}
.mb3_c01400{transform:matrix(0.387205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387205,0.000000,0.000000,0.250000,0,0);}
.m102_c01400{transform:matrix(0.649325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.649325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.649325,0.000000,0.000000,0.250000,0,0);}
.v0_c01400{vertical-align:0.000000px;}
.ls0_c01400{letter-spacing:0.000000px;}
.sc__c01400{text-shadow:none;}
.sc0_c01400{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__c01400{-webkit-text-stroke:0px transparent;}
.sc0_c01400{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01400{word-spacing:0.000000px;}
.fc0_c01400{color:transparent;}
.fs1_c01400{font-size:72.000000px;}
.fs4_c01400{font-size:78.000000px;}
.fs5_c01400{font-size:84.000000px;}
.fs2_c01400{font-size:90.000000px;}
.fs3_c01400{font-size:96.000000px;}
.fs0_c01400{font-size:120.000000px;}
.y0_c01400{bottom:0.000000px;}
.y2a_c01400{bottom:68.676000px;}
.y29_c01400{bottom:121.635000px;}
.y28_c01400{bottom:158.601000px;}
.y27_c01400{bottom:194.169000px;}
.y26_c01400{bottom:229.255500px;}
.y25_c01400{bottom:264.796500px;}
.y24_c01400{bottom:299.586000px;}
.y23_c01400{bottom:335.050500px;}
.y22_c01400{bottom:369.244500px;}
.y21_c01400{bottom:405.618000px;}
.y20_c01400{bottom:441.448500px;}
.y11_c01400{bottom:476.550000px;}
.y12_c01400{bottom:476.754000px;}
.y13_c01400{bottom:477.343500px;}
.y14_c01400{bottom:477.535500px;}
.y15_c01400{bottom:477.667500px;}
.y16_c01400{bottom:478.188000px;}
.y17_c01400{bottom:478.458000px;}
.y18_c01400{bottom:478.845000px;}
.y19_c01400{bottom:479.044500px;}
.y1a_c01400{bottom:479.431500px;}
.y1b_c01400{bottom:479.629500px;}
.y1c_c01400{bottom:479.824500px;}
.y1d_c01400{bottom:480.151500px;}
.y1e_c01400{bottom:480.358500px;}
.y1f_c01400{bottom:480.550500px;}
.y10_c01400{bottom:512.730000px;}
.yf_c01400{bottom:549.180000px;}
.ye_c01400{bottom:671.856000px;}
.yd_c01400{bottom:706.680000px;}
.yc_c01400{bottom:743.260500px;}
.yb_c01400{bottom:778.230000px;}
.ya_c01400{bottom:813.595500px;}
.y9_c01400{bottom:849.826500px;}
.y8_c01400{bottom:885.330000px;}
.y7_c01400{bottom:920.700000px;}
.y6_c01400{bottom:955.800000px;}
.y5_c01400{bottom:991.315500px;}
.y4_c01400{bottom:1026.343500px;}
.y3_c01400{bottom:1061.866500px;}
.y2_c01400{bottom:1098.090000px;}
.y1_c01400{bottom:1209.330000px;}
.h3_c01400{height:72.000000px;}
.h6_c01400{height:78.000000px;}
.h7_c01400{height:84.000000px;}
.h4_c01400{height:90.000000px;}
.h5_c01400{height:96.000000px;}
.h2_c01400{height:120.000000px;}
.h1_c01400{height:1250.250000px;}
.h0_c01400{height:1250.370000px;}
.w0_c01400{width:878.850000px;}
.w1_c01400{width:879.000000px;}
.x0_c01400{left:0.000000px;}
.x46_c01400{left:109.890000px;}
.xe_c01400{left:110.970000px;}
.x1c_c01400{left:112.050000px;}
.x5d_c01400{left:113.130000px;}
.x24_c01400{left:143.910000px;}
.xf_c01400{left:155.250000px;}
.x50_c01400{left:164.430000px;}
.x10_c01400{left:176.040000px;}
.x73_c01400{left:177.390000px;}
.x76_c01400{left:178.470000px;}
.x37_c01400{left:187.380000px;}
.x2f_c01400{left:197.910000px;}
.x3f_c01400{left:199.530000px;}
.x2b_c01400{left:208.170000px;}
.x66_c01400{left:210.870000px;}
.x47_c01400{left:218.700000px;}
.x71_c01400{left:219.780000px;}
.x4_c01400{left:221.130000px;}
.x11_c01400{left:230.310000px;}
.x4d_c01400{left:231.390000px;}
.x6d_c01400{left:233.280000px;}
.x5_c01400{left:241.110000px;}
.x56_c01400{left:242.190000px;}
.x25_c01400{left:252.720000px;}
.x6_c01400{left:262.710000px;}
.x6e_c01400{left:263.790000px;}
.x51_c01400{left:264.870000px;}
.x5e_c01400{left:273.510000px;}
.x59_c01400{left:275.200500px;}
.x38_c01400{left:285.120000px;}
.x63_c01400{left:293.760000px;}
.x12_c01400{left:295.920000px;}
.x5a_c01400{left:297.093000px;}
.x39_c01400{left:306.990000px;}
.x7_c01400{left:308.340000px;}
.x1d_c01400{left:317.250000px;}
.x40_c01400{left:318.600000px;}
.x13_c01400{left:328.320000px;}
.x64_c01400{left:329.400000px;}
.x52_c01400{left:339.660000px;}
.x54_c01400{left:350.190000px;}
.x30_c01400{left:352.080000px;}
.x41_c01400{left:360.180000px;}
.x26_c01400{left:362.070000px;}
.x67_c01400{left:363.960000px;}
.x6f_c01400{left:373.140000px;}
.x1e_c01400{left:374.220000px;}
.x1_c01400{left:383.130000px;}
.x77_c01400{left:384.480000px;}
.x8_c01400{left:393.660000px;}
.x48_c01400{left:395.820000px;}
.x4e_c01400{left:403.920000px;}
.x70_c01400{left:405.810000px;}
.x2_c01400{left:406.890000px;}
.x2c_c01400{left:416.340000px;}
.x1f_c01400{left:417.420000px;}
.x4b_c01400{left:427.410000px;}
.x5b_c01400{left:428.841000px;}
.x31_c01400{left:437.670000px;}
.x4f_c01400{left:438.750000px;}
.x55_c01400{left:441.180000px;}
.x3_c01400{left:448.200000px;}
.x5f_c01400{left:450.090000px;}
.x57_c01400{left:451.170000px;}
.x49_c01400{left:460.620000px;}
.x20_c01400{left:470.070000px;}
.x32_c01400{left:471.420000px;}
.x14_c01400{left:481.680000px;}
.x42_c01400{left:492.750000px;}
.x69_c01400{left:494.100000px;}
.x9_c01400{left:503.280000px;}
.x74_c01400{left:505.170000px;}
.x15_c01400{left:514.350000px;}
.x78_c01400{left:516.510000px;}
.x3a_c01400{left:525.960000px;}
.x33_c01400{left:536.220000px;}
.x53_c01400{left:537.300000px;}
.x27_c01400{left:546.480000px;}
.x72_c01400{left:549.180000px;}
.xa_c01400{left:557.820000px;}
.x60_c01400{left:559.710000px;}
.x4a_c01400{left:568.350000px;}
.x16_c01400{left:569.430000px;}
.x3b_c01400{left:579.960000px;}
.x34_c01400{left:581.310000px;}
.x43_c01400{left:590.490000px;}
.x61_c01400{left:592.110000px;}
.x28_c01400{left:601.560000px;}
.x17_c01400{left:612.360000px;}
.x6a_c01400{left:613.710000px;}
.x35_c01400{left:622.350000px;}
.xb_c01400{left:624.240000px;}
.x21_c01400{left:633.960000px;}
.x68_c01400{left:635.310000px;}
.x44_c01400{left:645.300000px;}
.x4c_c01400{left:646.650000px;}
.x58_c01400{left:655.830000px;}
.x62_c01400{left:657.450000px;}
.x18_c01400{left:666.900000px;}
.x45_c01400{left:667.980000px;}
.x3c_c01400{left:678.780000px;}
.x2d_c01400{left:688.230000px;}
.x22_c01400{left:689.310000px;}
.xc_c01400{left:699.030000px;}
.x75_c01400{left:700.110000px;}
.x29_c01400{left:710.640000px;}
.x19_c01400{left:721.710000px;}
.x6b_c01400{left:722.790000px;}
.x3d_c01400{left:733.050000px;}
.x36_c01400{left:734.400000px;}
.x2a_c01400{left:743.580000px;}
.x5c_c01400{left:745.525500px;}
.xd_c01400{left:753.840000px;}
.x23_c01400{left:764.640000px;}
.x2e_c01400{left:765.720000px;}
.x1a_c01400{left:777.060000px;}
.x6c_c01400{left:787.860000px;}
.x3e_c01400{left:798.660000px;}
.x65_c01400{left:866.430000px;}
.x1b_c01400{left:867.510000px;}
@media print{
.v0_c01400{vertical-align:0.000000pt;}
.ls0_c01400{letter-spacing:0.000000pt;}
.ws0_c01400{word-spacing:0.000000pt;}
.fs1_c01400{font-size:64.000000pt;}
.fs4_c01400{font-size:69.333333pt;}
.fs5_c01400{font-size:74.666667pt;}
.fs2_c01400{font-size:80.000000pt;}
.fs3_c01400{font-size:85.333333pt;}
.fs0_c01400{font-size:106.666667pt;}
.y0_c01400{bottom:0.000000pt;}
.y2a_c01400{bottom:61.045333pt;}
.y29_c01400{bottom:108.120000pt;}
.y28_c01400{bottom:140.978667pt;}
.y27_c01400{bottom:172.594667pt;}
.y26_c01400{bottom:203.782667pt;}
.y25_c01400{bottom:235.374667pt;}
.y24_c01400{bottom:266.298667pt;}
.y23_c01400{bottom:297.822667pt;}
.y22_c01400{bottom:328.217333pt;}
.y21_c01400{bottom:360.549333pt;}
.y20_c01400{bottom:392.398667pt;}
.y11_c01400{bottom:423.600000pt;}
.y12_c01400{bottom:423.781333pt;}
.y13_c01400{bottom:424.305333pt;}
.y14_c01400{bottom:424.476000pt;}
.y15_c01400{bottom:424.593333pt;}
.y16_c01400{bottom:425.056000pt;}
.y17_c01400{bottom:425.296000pt;}
.y18_c01400{bottom:425.640000pt;}
.y19_c01400{bottom:425.817333pt;}
.y1a_c01400{bottom:426.161333pt;}
.y1b_c01400{bottom:426.337333pt;}
.y1c_c01400{bottom:426.510667pt;}
.y1d_c01400{bottom:426.801333pt;}
.y1e_c01400{bottom:426.985333pt;}
.y1f_c01400{bottom:427.156000pt;}
.y10_c01400{bottom:455.760000pt;}
.yf_c01400{bottom:488.160000pt;}
.ye_c01400{bottom:597.205333pt;}
.yd_c01400{bottom:628.160000pt;}
.yc_c01400{bottom:660.676000pt;}
.yb_c01400{bottom:691.760000pt;}
.ya_c01400{bottom:723.196000pt;}
.y9_c01400{bottom:755.401333pt;}
.y8_c01400{bottom:786.960000pt;}
.y7_c01400{bottom:818.400000pt;}
.y6_c01400{bottom:849.600000pt;}
.y5_c01400{bottom:881.169333pt;}
.y4_c01400{bottom:912.305333pt;}
.y3_c01400{bottom:943.881333pt;}
.y2_c01400{bottom:976.080000pt;}
.y1_c01400{bottom:1074.960000pt;}
.h3_c01400{height:64.000000pt;}
.h6_c01400{height:69.333333pt;}
.h7_c01400{height:74.666667pt;}
.h4_c01400{height:80.000000pt;}
.h5_c01400{height:85.333333pt;}
.h2_c01400{height:106.666667pt;}
.h1_c01400{height:1111.333333pt;}
.h0_c01400{height:1111.440000pt;}
.w0_c01400{width:781.200000pt;}
.w1_c01400{width:781.333333pt;}
.x0_c01400{left:0.000000pt;}
.x46_c01400{left:97.680000pt;}
.xe_c01400{left:98.640000pt;}
.x1c_c01400{left:99.600000pt;}
.x5d_c01400{left:100.560000pt;}
.x24_c01400{left:127.920000pt;}
.xf_c01400{left:138.000000pt;}
.x50_c01400{left:146.160000pt;}
.x10_c01400{left:156.480000pt;}
.x73_c01400{left:157.680000pt;}
.x76_c01400{left:158.640000pt;}
.x37_c01400{left:166.560000pt;}
.x2f_c01400{left:175.920000pt;}
.x3f_c01400{left:177.360000pt;}
.x2b_c01400{left:185.040000pt;}
.x66_c01400{left:187.440000pt;}
.x47_c01400{left:194.400000pt;}
.x71_c01400{left:195.360000pt;}
.x4_c01400{left:196.560000pt;}
.x11_c01400{left:204.720000pt;}
.x4d_c01400{left:205.680000pt;}
.x6d_c01400{left:207.360000pt;}
.x5_c01400{left:214.320000pt;}
.x56_c01400{left:215.280000pt;}
.x25_c01400{left:224.640000pt;}
.x6_c01400{left:233.520000pt;}
.x6e_c01400{left:234.480000pt;}
.x51_c01400{left:235.440000pt;}
.x5e_c01400{left:243.120000pt;}
.x59_c01400{left:244.622667pt;}
.x38_c01400{left:253.440000pt;}
.x63_c01400{left:261.120000pt;}
.x12_c01400{left:263.040000pt;}
.x5a_c01400{left:264.082667pt;}
.x39_c01400{left:272.880000pt;}
.x7_c01400{left:274.080000pt;}
.x1d_c01400{left:282.000000pt;}
.x40_c01400{left:283.200000pt;}
.x13_c01400{left:291.840000pt;}
.x64_c01400{left:292.800000pt;}
.x52_c01400{left:301.920000pt;}
.x54_c01400{left:311.280000pt;}
.x30_c01400{left:312.960000pt;}
.x41_c01400{left:320.160000pt;}
.x26_c01400{left:321.840000pt;}
.x67_c01400{left:323.520000pt;}
.x6f_c01400{left:331.680000pt;}
.x1e_c01400{left:332.640000pt;}
.x1_c01400{left:340.560000pt;}
.x77_c01400{left:341.760000pt;}
.x8_c01400{left:349.920000pt;}
.x48_c01400{left:351.840000pt;}
.x4e_c01400{left:359.040000pt;}
.x70_c01400{left:360.720000pt;}
.x2_c01400{left:361.680000pt;}
.x2c_c01400{left:370.080000pt;}
.x1f_c01400{left:371.040000pt;}
.x4b_c01400{left:379.920000pt;}
.x5b_c01400{left:381.192000pt;}
.x31_c01400{left:389.040000pt;}
.x4f_c01400{left:390.000000pt;}
.x55_c01400{left:392.160000pt;}
.x3_c01400{left:398.400000pt;}
.x5f_c01400{left:400.080000pt;}
.x57_c01400{left:401.040000pt;}
.x49_c01400{left:409.440000pt;}
.x20_c01400{left:417.840000pt;}
.x32_c01400{left:419.040000pt;}
.x14_c01400{left:428.160000pt;}
.x42_c01400{left:438.000000pt;}
.x69_c01400{left:439.200000pt;}
.x9_c01400{left:447.360000pt;}
.x74_c01400{left:449.040000pt;}
.x15_c01400{left:457.200000pt;}
.x78_c01400{left:459.120000pt;}
.x3a_c01400{left:467.520000pt;}
.x33_c01400{left:476.640000pt;}
.x53_c01400{left:477.600000pt;}
.x27_c01400{left:485.760000pt;}
.x72_c01400{left:488.160000pt;}
.xa_c01400{left:495.840000pt;}
.x60_c01400{left:497.520000pt;}
.x4a_c01400{left:505.200000pt;}
.x16_c01400{left:506.160000pt;}
.x3b_c01400{left:515.520000pt;}
.x34_c01400{left:516.720000pt;}
.x43_c01400{left:524.880000pt;}
.x61_c01400{left:526.320000pt;}
.x28_c01400{left:534.720000pt;}
.x17_c01400{left:544.320000pt;}
.x6a_c01400{left:545.520000pt;}
.x35_c01400{left:553.200000pt;}
.xb_c01400{left:554.880000pt;}
.x21_c01400{left:563.520000pt;}
.x68_c01400{left:564.720000pt;}
.x44_c01400{left:573.600000pt;}
.x4c_c01400{left:574.800000pt;}
.x58_c01400{left:582.960000pt;}
.x62_c01400{left:584.400000pt;}
.x18_c01400{left:592.800000pt;}
.x45_c01400{left:593.760000pt;}
.x3c_c01400{left:603.360000pt;}
.x2d_c01400{left:611.760000pt;}
.x22_c01400{left:612.720000pt;}
.xc_c01400{left:621.360000pt;}
.x75_c01400{left:622.320000pt;}
.x29_c01400{left:631.680000pt;}
.x19_c01400{left:641.520000pt;}
.x6b_c01400{left:642.480000pt;}
.x3d_c01400{left:651.600000pt;}
.x36_c01400{left:652.800000pt;}
.x2a_c01400{left:660.960000pt;}
.x5c_c01400{left:662.689333pt;}
.xd_c01400{left:670.080000pt;}
.x23_c01400{left:679.680000pt;}
.x2e_c01400{left:680.640000pt;}
.x1a_c01400{left:690.720000pt;}
.x6c_c01400{left:700.320000pt;}
.x3e_c01400{left:709.920000pt;}
.x65_c01400{left:770.160000pt;}
.x1b_c01400{left:771.120000pt;}
}





/* 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_c01401 {
    display:none;
  }
  .loading-indicator_c01401.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01401 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_c01401 { 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_c01401" -> "#page-container .classname_c01401")
 */
.pf_c01401 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01401 { /* 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_c01401.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01401 { /* 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_c01401 { /* 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_c01401 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01401 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01401 {overflow:visible;}
  }
}
.c_c01401 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01401 { /* 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_c01401:after { /* webkit #35443 */
  content: '';
}
.t_c01401:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01401 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 */
}
.__c01401 { /* 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_c01401 { /* info for Javascript */
  display:none;
}
.l_c01401 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01401 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01401 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01401: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_c01401 {
    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_c01401.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01401.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_c01401 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01401{font-family:sans-serif;visibility:hidden;}
.sc__c01401{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01401{-webkit-text-stroke:0px transparent;}
}
.y0_c01401{bottom:0.000000px;}
.h1_c01401{height:1250.250000px;}
.h0_c01401{height:1250.370000px;}
.w1_c01401{width:907.500000px;}
.w0_c01401{width:907.740000px;}
.x0_c01401{left:0.000000px;}
@media print{
.y0_c01401{bottom:0.000000pt;}
.h1_c01401{height:1111.333333pt;}
.h0_c01401{height:1111.440000pt;}
.w1_c01401{width:806.666667pt;}
.w0_c01401{width:806.880000pt;}
.x0_c01401{left:0.000000pt;}
}





/* 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_c01402 {
    display:none;
  }
  .loading-indicator_c01402.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01402 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_c01402 { 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_c01402" -> "#page-container .classname_c01402")
 */
.pf_c01402 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01402 { /* 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_c01402.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01402 { /* 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_c01402 { /* 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_c01402 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01402 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01402 {overflow:visible;}
  }
}
.c_c01402 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01402 { /* 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_c01402:after { /* webkit #35443 */
  content: '';
}
.t_c01402:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01402 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 */
}
.__c01402 { /* 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_c01402 { /* info for Javascript */
  display:none;
}
.l_c01402 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01402 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01402 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01402: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_c01402 {
    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_c01402.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01402.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_c01402 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01402{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01402;src:url('chunks/assets/font_c605e72f209fc835e906f064.woff2')format("woff");}.ff1_c01402{font-family:ff1_c01402;line-height:1.000000;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;}
.m142_c01402{transform:matrix(0.017647,-0.000335,0.004749,0.249955,0,0);-ms-transform:matrix(0.017647,-0.000335,0.004749,0.249955,0,0);-webkit-transform:matrix(0.017647,-0.000335,0.004749,0.249955,0,0);}
.m42_c01402{transform:matrix(0.133538,-0.002671,0.004999,0.249950,0,0);-ms-transform:matrix(0.133538,-0.002671,0.004999,0.249950,0,0);-webkit-transform:matrix(0.133538,-0.002671,0.004999,0.249950,0,0);}
.m4e_c01402{transform:matrix(0.141944,-0.002413,0.004249,0.249964,0,0);-ms-transform:matrix(0.141944,-0.002413,0.004249,0.249964,0,0);-webkit-transform:matrix(0.141944,-0.002413,0.004249,0.249964,0,0);}
.m146_c01402{transform:matrix(0.142300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142300,0.000000,0.000000,0.250000,0,0);}
.m113_c01402{transform:matrix(0.160222,-0.002724,0.004249,0.249964,0,0);-ms-transform:matrix(0.160222,-0.002724,0.004249,0.249964,0,0);-webkit-transform:matrix(0.160222,-0.002724,0.004249,0.249964,0,0);}
.m111_c01402{transform:matrix(0.169680,-0.002885,0.004249,0.249964,0,0);-ms-transform:matrix(0.169680,-0.002885,0.004249,0.249964,0,0);-webkit-transform:matrix(0.169680,-0.002885,0.004249,0.249964,0,0);}
.m120_c01402{transform:matrix(0.173975,-0.002958,0.004249,0.249964,0,0);-ms-transform:matrix(0.173975,-0.002958,0.004249,0.249964,0,0);-webkit-transform:matrix(0.173975,-0.002958,0.004249,0.249964,0,0);}
.mfa_c01402{transform:matrix(0.174045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174045,0.000000,0.000000,0.250000,0,0);}
.m2_c01402{transform:matrix(0.174325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174325,0.000000,0.000000,0.250000,0,0);}
.m36_c01402{transform:matrix(0.176170,-0.003523,0.004999,0.249950,0,0);-ms-transform:matrix(0.176170,-0.003523,0.004999,0.249950,0,0);-webkit-transform:matrix(0.176170,-0.003523,0.004999,0.249950,0,0);}
.mf5_c01402{transform:matrix(0.176205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176205,0.000000,0.000000,0.250000,0,0);}
.m3b_c01402{transform:matrix(0.181569,-0.003631,0.004999,0.249950,0,0);-ms-transform:matrix(0.181569,-0.003631,0.004999,0.249950,0,0);-webkit-transform:matrix(0.181569,-0.003631,0.004999,0.249950,0,0);}
.m3d_c01402{transform:matrix(0.182504,-0.003650,0.004999,0.249950,0,0);-ms-transform:matrix(0.182504,-0.003650,0.004999,0.249950,0,0);-webkit-transform:matrix(0.182504,-0.003650,0.004999,0.249950,0,0);}
.m0_c01402{transform:matrix(0.183905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183905,0.000000,0.000000,0.250000,0,0);}
.m2c_c01402{transform:matrix(0.184193,-0.003684,0.004999,0.249950,0,0);-ms-transform:matrix(0.184193,-0.003684,0.004999,0.249950,0,0);-webkit-transform:matrix(0.184193,-0.003684,0.004999,0.249950,0,0);}
.m11c_c01402{transform:matrix(0.184203,-0.003131,0.004249,0.249964,0,0);-ms-transform:matrix(0.184203,-0.003131,0.004249,0.249964,0,0);-webkit-transform:matrix(0.184203,-0.003131,0.004249,0.249964,0,0);}
.m39_c01402{transform:matrix(0.184233,-0.003685,0.004999,0.249950,0,0);-ms-transform:matrix(0.184233,-0.003685,0.004999,0.249950,0,0);-webkit-transform:matrix(0.184233,-0.003685,0.004999,0.249950,0,0);}
.m3c_c01402{transform:matrix(0.184798,-0.003696,0.004999,0.249950,0,0);-ms-transform:matrix(0.184798,-0.003696,0.004999,0.249950,0,0);-webkit-transform:matrix(0.184798,-0.003696,0.004999,0.249950,0,0);}
.m3f_c01402{transform:matrix(0.186948,-0.003739,0.004999,0.249950,0,0);-ms-transform:matrix(0.186948,-0.003739,0.004999,0.249950,0,0);-webkit-transform:matrix(0.186948,-0.003739,0.004999,0.249950,0,0);}
.m31_c01402{transform:matrix(0.188027,-0.003761,0.004999,0.249950,0,0);-ms-transform:matrix(0.188027,-0.003761,0.004999,0.249950,0,0);-webkit-transform:matrix(0.188027,-0.003761,0.004999,0.249950,0,0);}
.m11e_c01402{transform:matrix(0.188653,-0.003207,0.004249,0.249964,0,0);-ms-transform:matrix(0.188653,-0.003207,0.004249,0.249964,0,0);-webkit-transform:matrix(0.188653,-0.003207,0.004249,0.249964,0,0);}
.mfc_c01402{transform:matrix(0.190410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190410,0.000000,0.000000,0.250000,0,0);}
.m115_c01402{transform:matrix(0.190677,-0.003242,0.004249,0.249964,0,0);-ms-transform:matrix(0.190677,-0.003242,0.004249,0.249964,0,0);-webkit-transform:matrix(0.190677,-0.003242,0.004249,0.249964,0,0);}
.m2f_c01402{transform:matrix(0.193561,-0.003871,0.004999,0.249950,0,0);-ms-transform:matrix(0.193561,-0.003871,0.004999,0.249950,0,0);-webkit-transform:matrix(0.193561,-0.003871,0.004999,0.249950,0,0);}
.m118_c01402{transform:matrix(0.194807,-0.003312,0.004249,0.249964,0,0);-ms-transform:matrix(0.194807,-0.003312,0.004249,0.249964,0,0);-webkit-transform:matrix(0.194807,-0.003312,0.004249,0.249964,0,0);}
.mf8_c01402{transform:matrix(0.195255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195255,0.000000,0.000000,0.250000,0,0);}
.m10d_c01402{transform:matrix(0.195377,-0.003321,0.004249,0.249964,0,0);-ms-transform:matrix(0.195377,-0.003321,0.004249,0.249964,0,0);-webkit-transform:matrix(0.195377,-0.003321,0.004249,0.249964,0,0);}
.m10a_c01402{transform:matrix(0.195872,-0.003330,0.004249,0.249964,0,0);-ms-transform:matrix(0.195872,-0.003330,0.004249,0.249964,0,0);-webkit-transform:matrix(0.195872,-0.003330,0.004249,0.249964,0,0);}
.m112_c01402{transform:matrix(0.196337,-0.003338,0.004249,0.249964,0,0);-ms-transform:matrix(0.196337,-0.003338,0.004249,0.249964,0,0);-webkit-transform:matrix(0.196337,-0.003338,0.004249,0.249964,0,0);}
.m119_c01402{transform:matrix(0.196562,-0.003342,0.004249,0.249964,0,0);-ms-transform:matrix(0.196562,-0.003342,0.004249,0.249964,0,0);-webkit-transform:matrix(0.196562,-0.003342,0.004249,0.249964,0,0);}
.m41_c01402{transform:matrix(0.197166,-0.003943,0.004999,0.249950,0,0);-ms-transform:matrix(0.197166,-0.003943,0.004999,0.249950,0,0);-webkit-transform:matrix(0.197166,-0.003943,0.004999,0.249950,0,0);}
.mdd_c01402{transform:matrix(0.197363,-0.002960,0.003750,0.249972,0,0);-ms-transform:matrix(0.197363,-0.002960,0.003750,0.249972,0,0);-webkit-transform:matrix(0.197363,-0.002960,0.003750,0.249972,0,0);}
.m2e_c01402{transform:matrix(0.197511,-0.003950,0.004999,0.249950,0,0);-ms-transform:matrix(0.197511,-0.003950,0.004999,0.249950,0,0);-webkit-transform:matrix(0.197511,-0.003950,0.004999,0.249950,0,0);}
.m40_c01402{transform:matrix(0.198110,-0.003962,0.004999,0.249950,0,0);-ms-transform:matrix(0.198110,-0.003962,0.004999,0.249950,0,0);-webkit-transform:matrix(0.198110,-0.003962,0.004999,0.249950,0,0);}
.m2b_c01402{transform:matrix(0.198210,-0.003964,0.004999,0.249950,0,0);-ms-transform:matrix(0.198210,-0.003964,0.004999,0.249950,0,0);-webkit-transform:matrix(0.198210,-0.003964,0.004999,0.249950,0,0);}
.md8_c01402{transform:matrix(0.198303,-0.002975,0.003750,0.249972,0,0);-ms-transform:matrix(0.198303,-0.002975,0.003750,0.249972,0,0);-webkit-transform:matrix(0.198303,-0.002975,0.003750,0.249972,0,0);}
.m38_c01402{transform:matrix(0.198805,-0.003976,0.004999,0.249950,0,0);-ms-transform:matrix(0.198805,-0.003976,0.004999,0.249950,0,0);-webkit-transform:matrix(0.198805,-0.003976,0.004999,0.249950,0,0);}
.m10c_c01402{transform:matrix(0.198901,-0.003381,0.004249,0.249964,0,0);-ms-transform:matrix(0.198901,-0.003381,0.004249,0.249964,0,0);-webkit-transform:matrix(0.198901,-0.003381,0.004249,0.249964,0,0);}
.m122_c01402{transform:matrix(0.199591,-0.003393,0.004249,0.249964,0,0);-ms-transform:matrix(0.199591,-0.003393,0.004249,0.249964,0,0);-webkit-transform:matrix(0.199591,-0.003393,0.004249,0.249964,0,0);}
.m83_c01402{transform:matrix(0.199671,-0.003394,0.004249,0.249964,0,0);-ms-transform:matrix(0.199671,-0.003394,0.004249,0.249964,0,0);-webkit-transform:matrix(0.199671,-0.003394,0.004249,0.249964,0,0);}
.m32_c01402{transform:matrix(0.199690,-0.003994,0.004999,0.249950,0,0);-ms-transform:matrix(0.199690,-0.003994,0.004999,0.249950,0,0);-webkit-transform:matrix(0.199690,-0.003994,0.004999,0.249950,0,0);}
.m6c_c01402{transform:matrix(0.199886,-0.003398,0.004249,0.249964,0,0);-ms-transform:matrix(0.199886,-0.003398,0.004249,0.249964,0,0);-webkit-transform:matrix(0.199886,-0.003398,0.004249,0.249964,0,0);}
.m109_c01402{transform:matrix(0.200161,-0.003403,0.004249,0.249964,0,0);-ms-transform:matrix(0.200161,-0.003403,0.004249,0.249964,0,0);-webkit-transform:matrix(0.200161,-0.003403,0.004249,0.249964,0,0);}
.m1b_c01402{transform:matrix(0.200270,-0.004005,0.004999,0.249950,0,0);-ms-transform:matrix(0.200270,-0.004005,0.004999,0.249950,0,0);-webkit-transform:matrix(0.200270,-0.004005,0.004999,0.249950,0,0);}
.m17_c01402{transform:matrix(0.200550,-0.004011,0.004999,0.249950,0,0);-ms-transform:matrix(0.200550,-0.004011,0.004999,0.249950,0,0);-webkit-transform:matrix(0.200550,-0.004011,0.004999,0.249950,0,0);}
.m81_c01402{transform:matrix(0.200851,-0.003414,0.004249,0.249964,0,0);-ms-transform:matrix(0.200851,-0.003414,0.004249,0.249964,0,0);-webkit-transform:matrix(0.200851,-0.003414,0.004249,0.249964,0,0);}
.mf9_c01402{transform:matrix(0.201360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201360,0.000000,0.000000,0.250000,0,0);}
.m114_c01402{transform:matrix(0.201491,-0.003425,0.004249,0.249964,0,0);-ms-transform:matrix(0.201491,-0.003425,0.004249,0.249964,0,0);-webkit-transform:matrix(0.201491,-0.003425,0.004249,0.249964,0,0);}
.me1_c01402{transform:matrix(0.201512,-0.003023,0.003750,0.249972,0,0);-ms-transform:matrix(0.201512,-0.003023,0.003750,0.249972,0,0);-webkit-transform:matrix(0.201512,-0.003023,0.003750,0.249972,0,0);}
.m20_c01402{transform:matrix(0.201555,-0.004031,0.004999,0.249950,0,0);-ms-transform:matrix(0.201555,-0.004031,0.004999,0.249950,0,0);-webkit-transform:matrix(0.201555,-0.004031,0.004999,0.249950,0,0);}
.m34_c01402{transform:matrix(0.202030,-0.004041,0.004999,0.249950,0,0);-ms-transform:matrix(0.202030,-0.004041,0.004999,0.249950,0,0);-webkit-transform:matrix(0.202030,-0.004041,0.004999,0.249950,0,0);}
.m89_c01402{transform:matrix(0.202526,-0.003443,0.004249,0.249964,0,0);-ms-transform:matrix(0.202526,-0.003443,0.004249,0.249964,0,0);-webkit-transform:matrix(0.202526,-0.003443,0.004249,0.249964,0,0);}
.me9_c01402{transform:matrix(0.202642,-0.003040,0.003750,0.249972,0,0);-ms-transform:matrix(0.202642,-0.003040,0.003750,0.249972,0,0);-webkit-transform:matrix(0.202642,-0.003040,0.003750,0.249972,0,0);}
.m6d_c01402{transform:matrix(0.202756,-0.003447,0.004249,0.249964,0,0);-ms-transform:matrix(0.202756,-0.003447,0.004249,0.249964,0,0);-webkit-transform:matrix(0.202756,-0.003447,0.004249,0.249964,0,0);}
.m67_c01402{transform:matrix(0.203286,-0.003456,0.004249,0.249964,0,0);-ms-transform:matrix(0.203286,-0.003456,0.004249,0.249964,0,0);-webkit-transform:matrix(0.203286,-0.003456,0.004249,0.249964,0,0);}
.m117_c01402{transform:matrix(0.203446,-0.003459,0.004249,0.249964,0,0);-ms-transform:matrix(0.203446,-0.003459,0.004249,0.249964,0,0);-webkit-transform:matrix(0.203446,-0.003459,0.004249,0.249964,0,0);}
.m5d_c01402{transform:matrix(0.204166,-0.003471,0.004249,0.249964,0,0);-ms-transform:matrix(0.204166,-0.003471,0.004249,0.249964,0,0);-webkit-transform:matrix(0.204166,-0.003471,0.004249,0.249964,0,0);}
.me7_c01402{transform:matrix(0.204177,-0.003063,0.003750,0.249972,0,0);-ms-transform:matrix(0.204177,-0.003063,0.003750,0.249972,0,0);-webkit-transform:matrix(0.204177,-0.003063,0.003750,0.249972,0,0);}
.m87_c01402{transform:matrix(0.204285,-0.003473,0.004249,0.249964,0,0);-ms-transform:matrix(0.204285,-0.003473,0.004249,0.249964,0,0);-webkit-transform:matrix(0.204285,-0.003473,0.004249,0.249964,0,0);}
.m15_c01402{transform:matrix(0.204419,-0.004088,0.004999,0.249950,0,0);-ms-transform:matrix(0.204419,-0.004088,0.004999,0.249950,0,0);-webkit-transform:matrix(0.204419,-0.004088,0.004999,0.249950,0,0);}
.m10b_c01402{transform:matrix(0.204600,-0.003478,0.004249,0.249964,0,0);-ms-transform:matrix(0.204600,-0.003478,0.004249,0.249964,0,0);-webkit-transform:matrix(0.204600,-0.003478,0.004249,0.249964,0,0);}
.m11f_c01402{transform:matrix(0.205650,-0.003496,0.004249,0.249964,0,0);-ms-transform:matrix(0.205650,-0.003496,0.004249,0.249964,0,0);-webkit-transform:matrix(0.205650,-0.003496,0.004249,0.249964,0,0);}
.m12d_c01402{transform:matrix(0.205712,-0.003703,0.004499,0.249960,0,0);-ms-transform:matrix(0.205712,-0.003703,0.004499,0.249960,0,0);-webkit-transform:matrix(0.205712,-0.003703,0.004499,0.249960,0,0);}
.m10_c01402{transform:matrix(0.205774,-0.004115,0.004999,0.249950,0,0);-ms-transform:matrix(0.205774,-0.004115,0.004999,0.249950,0,0);-webkit-transform:matrix(0.205774,-0.004115,0.004999,0.249950,0,0);}
.m147_c01402{transform:matrix(0.206525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206525,0.000000,0.000000,0.250000,0,0);}
.mb5_c01402{transform:matrix(0.206707,-0.003721,0.004499,0.249960,0,0);-ms-transform:matrix(0.206707,-0.003721,0.004499,0.249960,0,0);-webkit-transform:matrix(0.206707,-0.003721,0.004499,0.249960,0,0);}
.m6f_c01402{transform:matrix(0.206810,-0.003516,0.004249,0.249964,0,0);-ms-transform:matrix(0.206810,-0.003516,0.004249,0.249964,0,0);-webkit-transform:matrix(0.206810,-0.003516,0.004249,0.249964,0,0);}
.m116_c01402{transform:matrix(0.207055,-0.003520,0.004249,0.249964,0,0);-ms-transform:matrix(0.207055,-0.003520,0.004249,0.249964,0,0);-webkit-transform:matrix(0.207055,-0.003520,0.004249,0.249964,0,0);}
.mc6_c01402{transform:matrix(0.207077,-0.003106,0.003750,0.249972,0,0);-ms-transform:matrix(0.207077,-0.003106,0.003750,0.249972,0,0);-webkit-transform:matrix(0.207077,-0.003106,0.003750,0.249972,0,0);}
.m44_c01402{transform:matrix(0.207099,-0.004142,0.004999,0.249950,0,0);-ms-transform:matrix(0.207099,-0.004142,0.004999,0.249950,0,0);-webkit-transform:matrix(0.207099,-0.004142,0.004999,0.249950,0,0);}
.m11_c01402{transform:matrix(0.207199,-0.004144,0.004999,0.249950,0,0);-ms-transform:matrix(0.207199,-0.004144,0.004999,0.249950,0,0);-webkit-transform:matrix(0.207199,-0.004144,0.004999,0.249950,0,0);}
.me6_c01402{transform:matrix(0.207417,-0.003111,0.003750,0.249972,0,0);-ms-transform:matrix(0.207417,-0.003111,0.003750,0.249972,0,0);-webkit-transform:matrix(0.207417,-0.003111,0.003750,0.249972,0,0);}
.me4_c01402{transform:matrix(0.207422,-0.003111,0.003750,0.249972,0,0);-ms-transform:matrix(0.207422,-0.003111,0.003750,0.249972,0,0);-webkit-transform:matrix(0.207422,-0.003111,0.003750,0.249972,0,0);}
.me0_c01402{transform:matrix(0.207692,-0.003115,0.003750,0.249972,0,0);-ms-transform:matrix(0.207692,-0.003115,0.003750,0.249972,0,0);-webkit-transform:matrix(0.207692,-0.003115,0.003750,0.249972,0,0);}
.m69_c01402{transform:matrix(0.207810,-0.003533,0.004249,0.249964,0,0);-ms-transform:matrix(0.207810,-0.003533,0.004249,0.249964,0,0);-webkit-transform:matrix(0.207810,-0.003533,0.004249,0.249964,0,0);}
.mde_c01402{transform:matrix(0.208262,-0.003124,0.003750,0.249972,0,0);-ms-transform:matrix(0.208262,-0.003124,0.003750,0.249972,0,0);-webkit-transform:matrix(0.208262,-0.003124,0.003750,0.249972,0,0);}
.m43_c01402{transform:matrix(0.208558,-0.004171,0.004999,0.249950,0,0);-ms-transform:matrix(0.208558,-0.004171,0.004999,0.249950,0,0);-webkit-transform:matrix(0.208558,-0.004171,0.004999,0.249950,0,0);}
.m86_c01402{transform:matrix(0.208680,-0.003548,0.004249,0.249964,0,0);-ms-transform:matrix(0.208680,-0.003548,0.004249,0.249964,0,0);-webkit-transform:matrix(0.208680,-0.003548,0.004249,0.249964,0,0);}
.m71_c01402{transform:matrix(0.209125,-0.003555,0.004249,0.249964,0,0);-ms-transform:matrix(0.209125,-0.003555,0.004249,0.249964,0,0);-webkit-transform:matrix(0.209125,-0.003555,0.004249,0.249964,0,0);}
.m3e_c01402{transform:matrix(0.209268,-0.004185,0.004999,0.249950,0,0);-ms-transform:matrix(0.209268,-0.004185,0.004999,0.249950,0,0);-webkit-transform:matrix(0.209268,-0.004185,0.004999,0.249950,0,0);}
.m11a_c01402{transform:matrix(0.209285,-0.003558,0.004249,0.249964,0,0);-ms-transform:matrix(0.209285,-0.003558,0.004249,0.249964,0,0);-webkit-transform:matrix(0.209285,-0.003558,0.004249,0.249964,0,0);}
.mf7_c01402{transform:matrix(0.209325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209325,0.000000,0.000000,0.250000,0,0);}
.m35_c01402{transform:matrix(0.209438,-0.004189,0.004999,0.249950,0,0);-ms-transform:matrix(0.209438,-0.004189,0.004999,0.249950,0,0);-webkit-transform:matrix(0.209438,-0.004189,0.004999,0.249950,0,0);}
.m19_c01402{transform:matrix(0.209848,-0.004197,0.004999,0.249950,0,0);-ms-transform:matrix(0.209848,-0.004197,0.004999,0.249950,0,0);-webkit-transform:matrix(0.209848,-0.004197,0.004999,0.249950,0,0);}
.me5_c01402{transform:matrix(0.209986,-0.003150,0.003750,0.249972,0,0);-ms-transform:matrix(0.209986,-0.003150,0.003750,0.249972,0,0);-webkit-transform:matrix(0.209986,-0.003150,0.003750,0.249972,0,0);}
.m6e_c01402{transform:matrix(0.210155,-0.003573,0.004249,0.249964,0,0);-ms-transform:matrix(0.210155,-0.003573,0.004249,0.249964,0,0);-webkit-transform:matrix(0.210155,-0.003573,0.004249,0.249964,0,0);}
.m18_c01402{transform:matrix(0.210158,-0.004203,0.004999,0.249950,0,0);-ms-transform:matrix(0.210158,-0.004203,0.004999,0.249950,0,0);-webkit-transform:matrix(0.210158,-0.004203,0.004999,0.249950,0,0);}
.me2_c01402{transform:matrix(0.210161,-0.003152,0.003750,0.249972,0,0);-ms-transform:matrix(0.210161,-0.003152,0.003750,0.249972,0,0);-webkit-transform:matrix(0.210161,-0.003152,0.003750,0.249972,0,0);}
.m7e_c01402{transform:matrix(0.210305,-0.003575,0.004249,0.249964,0,0);-ms-transform:matrix(0.210305,-0.003575,0.004249,0.249964,0,0);-webkit-transform:matrix(0.210305,-0.003575,0.004249,0.249964,0,0);}
.mec_c01402{transform:matrix(0.210586,-0.003159,0.003750,0.249972,0,0);-ms-transform:matrix(0.210586,-0.003159,0.003750,0.249972,0,0);-webkit-transform:matrix(0.210586,-0.003159,0.003750,0.249972,0,0);}
.m11d_c01402{transform:matrix(0.211864,-0.003602,0.004249,0.249964,0,0);-ms-transform:matrix(0.211864,-0.003602,0.004249,0.249964,0,0);-webkit-transform:matrix(0.211864,-0.003602,0.004249,0.249964,0,0);}
.m1a_c01402{transform:matrix(0.212108,-0.004242,0.004999,0.249950,0,0);-ms-transform:matrix(0.212108,-0.004242,0.004999,0.249950,0,0);-webkit-transform:matrix(0.212108,-0.004242,0.004999,0.249950,0,0);}
.mfe_c01402{transform:matrix(0.212169,-0.003607,0.004249,0.249964,0,0);-ms-transform:matrix(0.212169,-0.003607,0.004249,0.249964,0,0);-webkit-transform:matrix(0.212169,-0.003607,0.004249,0.249964,0,0);}
.m121_c01402{transform:matrix(0.212189,-0.003607,0.004249,0.249964,0,0);-ms-transform:matrix(0.212189,-0.003607,0.004249,0.249964,0,0);-webkit-transform:matrix(0.212189,-0.003607,0.004249,0.249964,0,0);}
.m13_c01402{transform:matrix(0.212258,-0.004245,0.004999,0.249950,0,0);-ms-transform:matrix(0.212258,-0.004245,0.004999,0.249950,0,0);-webkit-transform:matrix(0.212258,-0.004245,0.004999,0.249950,0,0);}
.m12_c01402{transform:matrix(0.212712,-0.004254,0.004999,0.249950,0,0);-ms-transform:matrix(0.212712,-0.004254,0.004999,0.249950,0,0);-webkit-transform:matrix(0.212712,-0.004254,0.004999,0.249950,0,0);}
.mf6_c01402{transform:matrix(0.212865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212865,0.000000,0.000000,0.250000,0,0);}
.m2d_c01402{transform:matrix(0.213137,-0.004263,0.004999,0.249950,0,0);-ms-transform:matrix(0.213137,-0.004263,0.004999,0.249950,0,0);-webkit-transform:matrix(0.213137,-0.004263,0.004999,0.249950,0,0);}
.m10e_c01402{transform:matrix(0.213699,-0.003633,0.004249,0.249964,0,0);-ms-transform:matrix(0.213699,-0.003633,0.004249,0.249964,0,0);-webkit-transform:matrix(0.213699,-0.003633,0.004249,0.249964,0,0);}
.mb0_c01402{transform:matrix(0.213770,-0.003848,0.004499,0.249960,0,0);-ms-transform:matrix(0.213770,-0.003848,0.004499,0.249960,0,0);-webkit-transform:matrix(0.213770,-0.003848,0.004499,0.249960,0,0);}
.m85_c01402{transform:matrix(0.214049,-0.003639,0.004249,0.249964,0,0);-ms-transform:matrix(0.214049,-0.003639,0.004249,0.249964,0,0);-webkit-transform:matrix(0.214049,-0.003639,0.004249,0.249964,0,0);}
.mdb_c01402{transform:matrix(0.214256,-0.003214,0.003750,0.249972,0,0);-ms-transform:matrix(0.214256,-0.003214,0.003750,0.249972,0,0);-webkit-transform:matrix(0.214256,-0.003214,0.003750,0.249972,0,0);}
.m88_c01402{transform:matrix(0.214844,-0.003652,0.004249,0.249964,0,0);-ms-transform:matrix(0.214844,-0.003652,0.004249,0.249964,0,0);-webkit-transform:matrix(0.214844,-0.003652,0.004249,0.249964,0,0);}
.m6a_c01402{transform:matrix(0.215054,-0.003656,0.004249,0.249964,0,0);-ms-transform:matrix(0.215054,-0.003656,0.004249,0.249964,0,0);-webkit-transform:matrix(0.215054,-0.003656,0.004249,0.249964,0,0);}
.m3a_c01402{transform:matrix(0.215302,-0.004306,0.004999,0.249950,0,0);-ms-transform:matrix(0.215302,-0.004306,0.004999,0.249950,0,0);-webkit-transform:matrix(0.215302,-0.004306,0.004999,0.249950,0,0);}
.m66_c01402{transform:matrix(0.215454,-0.003663,0.004249,0.249964,0,0);-ms-transform:matrix(0.215454,-0.003663,0.004249,0.249964,0,0);-webkit-transform:matrix(0.215454,-0.003663,0.004249,0.249964,0,0);}
.m1e_c01402{transform:matrix(0.215607,-0.004312,0.004999,0.249950,0,0);-ms-transform:matrix(0.215607,-0.004312,0.004999,0.249950,0,0);-webkit-transform:matrix(0.215607,-0.004312,0.004999,0.249950,0,0);}
.mf2_c01402{transform:matrix(0.215731,-0.003236,0.003750,0.249972,0,0);-ms-transform:matrix(0.215731,-0.003236,0.003750,0.249972,0,0);-webkit-transform:matrix(0.215731,-0.003236,0.003750,0.249972,0,0);}
.m65_c01402{transform:matrix(0.215879,-0.003670,0.004249,0.249964,0,0);-ms-transform:matrix(0.215879,-0.003670,0.004249,0.249964,0,0);-webkit-transform:matrix(0.215879,-0.003670,0.004249,0.249964,0,0);}
.m30_c01402{transform:matrix(0.216107,-0.004322,0.004999,0.249950,0,0);-ms-transform:matrix(0.216107,-0.004322,0.004999,0.249950,0,0);-webkit-transform:matrix(0.216107,-0.004322,0.004999,0.249950,0,0);}
.m110_c01402{transform:matrix(0.216114,-0.003674,0.004249,0.249964,0,0);-ms-transform:matrix(0.216114,-0.003674,0.004249,0.249964,0,0);-webkit-transform:matrix(0.216114,-0.003674,0.004249,0.249964,0,0);}
.m84_c01402{transform:matrix(0.216139,-0.003674,0.004249,0.249964,0,0);-ms-transform:matrix(0.216139,-0.003674,0.004249,0.249964,0,0);-webkit-transform:matrix(0.216139,-0.003674,0.004249,0.249964,0,0);}
.m70_c01402{transform:matrix(0.216474,-0.003680,0.004249,0.249964,0,0);-ms-transform:matrix(0.216474,-0.003680,0.004249,0.249964,0,0);-webkit-transform:matrix(0.216474,-0.003680,0.004249,0.249964,0,0);}
.m80_c01402{transform:matrix(0.216724,-0.003684,0.004249,0.249964,0,0);-ms-transform:matrix(0.216724,-0.003684,0.004249,0.249964,0,0);-webkit-transform:matrix(0.216724,-0.003684,0.004249,0.249964,0,0);}
.m53_c01402{transform:matrix(0.216964,-0.003688,0.004249,0.249964,0,0);-ms-transform:matrix(0.216964,-0.003688,0.004249,0.249964,0,0);-webkit-transform:matrix(0.216964,-0.003688,0.004249,0.249964,0,0);}
.m33_c01402{transform:matrix(0.217252,-0.004345,0.004999,0.249950,0,0);-ms-transform:matrix(0.217252,-0.004345,0.004999,0.249950,0,0);-webkit-transform:matrix(0.217252,-0.004345,0.004999,0.249950,0,0);}
.mb7_c01402{transform:matrix(0.217910,-0.003922,0.004499,0.249960,0,0);-ms-transform:matrix(0.217910,-0.003922,0.004499,0.249960,0,0);-webkit-transform:matrix(0.217910,-0.003922,0.004499,0.249960,0,0);}
.m10f_c01402{transform:matrix(0.218833,-0.003720,0.004249,0.249964,0,0);-ms-transform:matrix(0.218833,-0.003720,0.004249,0.249964,0,0);-webkit-transform:matrix(0.218833,-0.003720,0.004249,0.249964,0,0);}
.mee_c01402{transform:matrix(0.219025,-0.003285,0.003750,0.249972,0,0);-ms-transform:matrix(0.219025,-0.003285,0.003750,0.249972,0,0);-webkit-transform:matrix(0.219025,-0.003285,0.003750,0.249972,0,0);}
.mdc_c01402{transform:matrix(0.219120,-0.003287,0.003750,0.249972,0,0);-ms-transform:matrix(0.219120,-0.003287,0.003750,0.249972,0,0);-webkit-transform:matrix(0.219120,-0.003287,0.003750,0.249972,0,0);}
.mf0_c01402{transform:matrix(0.219290,-0.003289,0.003750,0.249972,0,0);-ms-transform:matrix(0.219290,-0.003289,0.003750,0.249972,0,0);-webkit-transform:matrix(0.219290,-0.003289,0.003750,0.249972,0,0);}
.mfb_c01402{transform:matrix(0.219560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219560,0.000000,0.000000,0.250000,0,0);}
.m123_c01402{transform:matrix(0.219603,-0.003733,0.004249,0.249964,0,0);-ms-transform:matrix(0.219603,-0.003733,0.004249,0.249964,0,0);-webkit-transform:matrix(0.219603,-0.003733,0.004249,0.249964,0,0);}
.m56_c01402{transform:matrix(0.220158,-0.003743,0.004249,0.249964,0,0);-ms-transform:matrix(0.220158,-0.003743,0.004249,0.249964,0,0);-webkit-transform:matrix(0.220158,-0.003743,0.004249,0.249964,0,0);}
.m133_c01402{transform:matrix(0.221339,-0.003984,0.004499,0.249960,0,0);-ms-transform:matrix(0.221339,-0.003984,0.004499,0.249960,0,0);-webkit-transform:matrix(0.221339,-0.003984,0.004499,0.249960,0,0);}
.m11b_c01402{transform:matrix(0.221608,-0.003767,0.004249,0.249964,0,0);-ms-transform:matrix(0.221608,-0.003767,0.004249,0.249964,0,0);-webkit-transform:matrix(0.221608,-0.003767,0.004249,0.249964,0,0);}
.m59_c01402{transform:matrix(0.222483,-0.003782,0.004249,0.249964,0,0);-ms-transform:matrix(0.222483,-0.003782,0.004249,0.249964,0,0);-webkit-transform:matrix(0.222483,-0.003782,0.004249,0.249964,0,0);}
.m14_c01402{transform:matrix(0.222605,-0.004452,0.004999,0.249950,0,0);-ms-transform:matrix(0.222605,-0.004452,0.004999,0.249950,0,0);-webkit-transform:matrix(0.222605,-0.004452,0.004999,0.249950,0,0);}
.m54_c01402{transform:matrix(0.222813,-0.003788,0.004249,0.249964,0,0);-ms-transform:matrix(0.222813,-0.003788,0.004249,0.249964,0,0);-webkit-transform:matrix(0.222813,-0.003788,0.004249,0.249964,0,0);}
.me8_c01402{transform:matrix(0.223680,-0.003355,0.003750,0.249972,0,0);-ms-transform:matrix(0.223680,-0.003355,0.003750,0.249972,0,0);-webkit-transform:matrix(0.223680,-0.003355,0.003750,0.249972,0,0);}
.m1d_c01402{transform:matrix(0.224090,-0.004482,0.004999,0.249950,0,0);-ms-transform:matrix(0.224090,-0.004482,0.004999,0.249950,0,0);-webkit-transform:matrix(0.224090,-0.004482,0.004999,0.249950,0,0);}
.m72_c01402{transform:matrix(0.224233,-0.003812,0.004249,0.249964,0,0);-ms-transform:matrix(0.224233,-0.003812,0.004249,0.249964,0,0);-webkit-transform:matrix(0.224233,-0.003812,0.004249,0.249964,0,0);}
.mdf_c01402{transform:matrix(0.224500,-0.003367,0.003750,0.249972,0,0);-ms-transform:matrix(0.224500,-0.003367,0.003750,0.249972,0,0);-webkit-transform:matrix(0.224500,-0.003367,0.003750,0.249972,0,0);}
.mf_c01402{transform:matrix(0.224545,-0.004491,0.004999,0.249950,0,0);-ms-transform:matrix(0.224545,-0.004491,0.004999,0.249950,0,0);-webkit-transform:matrix(0.224545,-0.004491,0.004999,0.249950,0,0);}
.m125_c01402{transform:matrix(0.224644,-0.004044,0.004499,0.249960,0,0);-ms-transform:matrix(0.224644,-0.004044,0.004499,0.249960,0,0);-webkit-transform:matrix(0.224644,-0.004044,0.004499,0.249960,0,0);}
.m64_c01402{transform:matrix(0.224878,-0.003823,0.004249,0.249964,0,0);-ms-transform:matrix(0.224878,-0.003823,0.004249,0.249964,0,0);-webkit-transform:matrix(0.224878,-0.003823,0.004249,0.249964,0,0);}
.m4b_c01402{transform:matrix(0.225488,-0.004059,0.004499,0.249960,0,0);-ms-transform:matrix(0.225488,-0.004059,0.004499,0.249960,0,0);-webkit-transform:matrix(0.225488,-0.004059,0.004499,0.249960,0,0);}
.m57_c01402{transform:matrix(0.227227,-0.003863,0.004249,0.249964,0,0);-ms-transform:matrix(0.227227,-0.003863,0.004249,0.249964,0,0);-webkit-transform:matrix(0.227227,-0.003863,0.004249,0.249964,0,0);}
.m12e_c01402{transform:matrix(0.227393,-0.004093,0.004499,0.249960,0,0);-ms-transform:matrix(0.227393,-0.004093,0.004499,0.249960,0,0);-webkit-transform:matrix(0.227393,-0.004093,0.004499,0.249960,0,0);}
.m60_c01402{transform:matrix(0.227397,-0.003866,0.004249,0.249964,0,0);-ms-transform:matrix(0.227397,-0.003866,0.004249,0.249964,0,0);-webkit-transform:matrix(0.227397,-0.003866,0.004249,0.249964,0,0);}
.m16_c01402{transform:matrix(0.227979,-0.004560,0.004999,0.249950,0,0);-ms-transform:matrix(0.227979,-0.004560,0.004999,0.249950,0,0);-webkit-transform:matrix(0.227979,-0.004560,0.004999,0.249950,0,0);}
.ma2_c01402{transform:matrix(0.228127,-0.003878,0.004249,0.249964,0,0);-ms-transform:matrix(0.228127,-0.003878,0.004249,0.249964,0,0);-webkit-transform:matrix(0.228127,-0.003878,0.004249,0.249964,0,0);}
.mb2_c01402{transform:matrix(0.228243,-0.004108,0.004499,0.249960,0,0);-ms-transform:matrix(0.228243,-0.004108,0.004499,0.249960,0,0);-webkit-transform:matrix(0.228243,-0.004108,0.004499,0.249960,0,0);}
.med_c01402{transform:matrix(0.228254,-0.003424,0.003750,0.249972,0,0);-ms-transform:matrix(0.228254,-0.003424,0.003750,0.249972,0,0);-webkit-transform:matrix(0.228254,-0.003424,0.003750,0.249972,0,0);}
.m145_c01402{transform:matrix(0.228364,-0.004339,0.004749,0.249955,0,0);-ms-transform:matrix(0.228364,-0.004339,0.004749,0.249955,0,0);-webkit-transform:matrix(0.228364,-0.004339,0.004749,0.249955,0,0);}
.ma7_c01402{transform:matrix(0.228932,-0.003892,0.004249,0.249964,0,0);-ms-transform:matrix(0.228932,-0.003892,0.004249,0.249964,0,0);-webkit-transform:matrix(0.228932,-0.003892,0.004249,0.249964,0,0);}
.mc9_c01402{transform:matrix(0.228939,-0.003434,0.003750,0.249972,0,0);-ms-transform:matrix(0.228939,-0.003434,0.003750,0.249972,0,0);-webkit-transform:matrix(0.228939,-0.003434,0.003750,0.249972,0,0);}
.ma5_c01402{transform:matrix(0.229492,-0.003901,0.004249,0.249964,0,0);-ms-transform:matrix(0.229492,-0.003901,0.004249,0.249964,0,0);-webkit-transform:matrix(0.229492,-0.003901,0.004249,0.249964,0,0);}
.mc0_c01402{transform:matrix(0.229499,-0.003442,0.003750,0.249972,0,0);-ms-transform:matrix(0.229499,-0.003442,0.003750,0.249972,0,0);-webkit-transform:matrix(0.229499,-0.003442,0.003750,0.249972,0,0);}
.m50_c01402{transform:matrix(0.229502,-0.003902,0.004249,0.249964,0,0);-ms-transform:matrix(0.229502,-0.003902,0.004249,0.249964,0,0);-webkit-transform:matrix(0.229502,-0.003902,0.004249,0.249964,0,0);}
.m131_c01402{transform:matrix(0.230033,-0.004141,0.004499,0.249960,0,0);-ms-transform:matrix(0.230033,-0.004141,0.004499,0.249960,0,0);-webkit-transform:matrix(0.230033,-0.004141,0.004499,0.249960,0,0);}
.m77_c01402{transform:matrix(0.230252,-0.003914,0.004249,0.249964,0,0);-ms-transform:matrix(0.230252,-0.003914,0.004249,0.249964,0,0);-webkit-transform:matrix(0.230252,-0.003914,0.004249,0.249964,0,0);}
.ma3_c01402{transform:matrix(0.230307,-0.003915,0.004249,0.249964,0,0);-ms-transform:matrix(0.230307,-0.003915,0.004249,0.249964,0,0);-webkit-transform:matrix(0.230307,-0.003915,0.004249,0.249964,0,0);}
.m4f_c01402{transform:matrix(0.230517,-0.003919,0.004249,0.249964,0,0);-ms-transform:matrix(0.230517,-0.003919,0.004249,0.249964,0,0);-webkit-transform:matrix(0.230517,-0.003919,0.004249,0.249964,0,0);}
.m4d_c01402{transform:matrix(0.230863,-0.004156,0.004499,0.249960,0,0);-ms-transform:matrix(0.230863,-0.004156,0.004499,0.249960,0,0);-webkit-transform:matrix(0.230863,-0.004156,0.004499,0.249960,0,0);}
.m27_c01402{transform:matrix(0.231499,-0.004630,0.004999,0.249950,0,0);-ms-transform:matrix(0.231499,-0.004630,0.004999,0.249950,0,0);-webkit-transform:matrix(0.231499,-0.004630,0.004999,0.249950,0,0);}
.m5_c01402{transform:matrix(0.231579,-0.004632,0.004999,0.249950,0,0);-ms-transform:matrix(0.231579,-0.004632,0.004999,0.249950,0,0);-webkit-transform:matrix(0.231579,-0.004632,0.004999,0.249950,0,0);}
.meb_c01402{transform:matrix(0.231779,-0.003477,0.003750,0.249972,0,0);-ms-transform:matrix(0.231779,-0.003477,0.003750,0.249972,0,0);-webkit-transform:matrix(0.231779,-0.003477,0.003750,0.249972,0,0);}
.m2a_c01402{transform:matrix(0.232359,-0.004647,0.004999,0.249950,0,0);-ms-transform:matrix(0.232359,-0.004647,0.004999,0.249950,0,0);-webkit-transform:matrix(0.232359,-0.004647,0.004999,0.249950,0,0);}
.m7a_c01402{transform:matrix(0.232371,-0.003950,0.004249,0.249964,0,0);-ms-transform:matrix(0.232371,-0.003950,0.004249,0.249964,0,0);-webkit-transform:matrix(0.232371,-0.003950,0.004249,0.249964,0,0);}
.m130_c01402{transform:matrix(0.232557,-0.004186,0.004499,0.249960,0,0);-ms-transform:matrix(0.232557,-0.004186,0.004499,0.249960,0,0);-webkit-transform:matrix(0.232557,-0.004186,0.004499,0.249960,0,0);}
.mb6_c01402{transform:matrix(0.232827,-0.004191,0.004499,0.249960,0,0);-ms-transform:matrix(0.232827,-0.004191,0.004499,0.249960,0,0);-webkit-transform:matrix(0.232827,-0.004191,0.004499,0.249960,0,0);}
.m8c_c01402{transform:matrix(0.233206,-0.003965,0.004249,0.249964,0,0);-ms-transform:matrix(0.233206,-0.003965,0.004249,0.249964,0,0);-webkit-transform:matrix(0.233206,-0.003965,0.004249,0.249964,0,0);}
.me3_c01402{transform:matrix(0.234254,-0.003514,0.003750,0.249972,0,0);-ms-transform:matrix(0.234254,-0.003514,0.003750,0.249972,0,0);-webkit-transform:matrix(0.234254,-0.003514,0.003750,0.249972,0,0);}
.m138_c01402{transform:matrix(0.234483,-0.004924,0.005249,0.249945,0,0);-ms-transform:matrix(0.234483,-0.004924,0.005249,0.249945,0,0);-webkit-transform:matrix(0.234483,-0.004924,0.005249,0.249945,0,0);}
.m45_c01402{transform:matrix(0.234827,-0.004227,0.004499,0.249960,0,0);-ms-transform:matrix(0.234827,-0.004227,0.004499,0.249960,0,0);-webkit-transform:matrix(0.234827,-0.004227,0.004499,0.249960,0,0);}
.m106_c01402{transform:matrix(0.235361,-0.004001,0.004249,0.249964,0,0);-ms-transform:matrix(0.235361,-0.004001,0.004249,0.249964,0,0);-webkit-transform:matrix(0.235361,-0.004001,0.004249,0.249964,0,0);}
.m143_c01402{transform:matrix(0.235443,-0.004473,0.004749,0.249955,0,0);-ms-transform:matrix(0.235443,-0.004473,0.004749,0.249955,0,0);-webkit-transform:matrix(0.235443,-0.004473,0.004749,0.249955,0,0);}
.ma_c01402{transform:matrix(0.235673,-0.004713,0.004999,0.249950,0,0);-ms-transform:matrix(0.235673,-0.004713,0.004999,0.249950,0,0);-webkit-transform:matrix(0.235673,-0.004713,0.004999,0.249950,0,0);}
.me_c01402{transform:matrix(0.235803,-0.004716,0.004999,0.249950,0,0);-ms-transform:matrix(0.235803,-0.004716,0.004999,0.249950,0,0);-webkit-transform:matrix(0.235803,-0.004716,0.004999,0.249950,0,0);}
.m75_c01402{transform:matrix(0.235816,-0.004009,0.004249,0.249964,0,0);-ms-transform:matrix(0.235816,-0.004009,0.004249,0.249964,0,0);-webkit-transform:matrix(0.235816,-0.004009,0.004249,0.249964,0,0);}
.m58_c01402{transform:matrix(0.236391,-0.004019,0.004249,0.249964,0,0);-ms-transform:matrix(0.236391,-0.004019,0.004249,0.249964,0,0);-webkit-transform:matrix(0.236391,-0.004019,0.004249,0.249964,0,0);}
.md6_c01402{transform:matrix(0.236698,-0.003550,0.003750,0.249972,0,0);-ms-transform:matrix(0.236698,-0.003550,0.003750,0.249972,0,0);-webkit-transform:matrix(0.236698,-0.003550,0.003750,0.249972,0,0);}
.m107_c01402{transform:matrix(0.237166,-0.004032,0.004249,0.249964,0,0);-ms-transform:matrix(0.237166,-0.004032,0.004249,0.249964,0,0);-webkit-transform:matrix(0.237166,-0.004032,0.004249,0.249964,0,0);}
.m9d_c01402{transform:matrix(0.237761,-0.004042,0.004249,0.249964,0,0);-ms-transform:matrix(0.237761,-0.004042,0.004249,0.249964,0,0);-webkit-transform:matrix(0.237761,-0.004042,0.004249,0.249964,0,0);}
.m104_c01402{transform:matrix(0.237766,-0.004042,0.004249,0.249964,0,0);-ms-transform:matrix(0.237766,-0.004042,0.004249,0.249964,0,0);-webkit-transform:matrix(0.237766,-0.004042,0.004249,0.249964,0,0);}
.m95_c01402{transform:matrix(0.237941,-0.004045,0.004249,0.249964,0,0);-ms-transform:matrix(0.237941,-0.004045,0.004249,0.249964,0,0);-webkit-transform:matrix(0.237941,-0.004045,0.004249,0.249964,0,0);}
.mb4_c01402{transform:matrix(0.238676,-0.004296,0.004499,0.249960,0,0);-ms-transform:matrix(0.238676,-0.004296,0.004499,0.249960,0,0);-webkit-transform:matrix(0.238676,-0.004296,0.004499,0.249960,0,0);}
.m1_c01402{transform:matrix(0.238980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238980,0.000000,0.000000,0.250000,0,0);}
.ma9_c01402{transform:matrix(0.239100,-0.004065,0.004249,0.249964,0,0);-ms-transform:matrix(0.239100,-0.004065,0.004249,0.249964,0,0);-webkit-transform:matrix(0.239100,-0.004065,0.004249,0.249964,0,0);}
.mbe_c01402{transform:matrix(0.239268,-0.003589,0.003750,0.249972,0,0);-ms-transform:matrix(0.239268,-0.003589,0.003750,0.249972,0,0);-webkit-transform:matrix(0.239268,-0.003589,0.003750,0.249972,0,0);}
.md9_c01402{transform:matrix(0.239283,-0.003589,0.003750,0.249972,0,0);-ms-transform:matrix(0.239283,-0.003589,0.003750,0.249972,0,0);-webkit-transform:matrix(0.239283,-0.003589,0.003750,0.249972,0,0);}
.m7f_c01402{transform:matrix(0.239560,-0.004073,0.004249,0.249964,0,0);-ms-transform:matrix(0.239560,-0.004073,0.004249,0.249964,0,0);-webkit-transform:matrix(0.239560,-0.004073,0.004249,0.249964,0,0);}
.mea_c01402{transform:matrix(0.239618,-0.003594,0.003750,0.249972,0,0);-ms-transform:matrix(0.239618,-0.003594,0.003750,0.249972,0,0);-webkit-transform:matrix(0.239618,-0.003594,0.003750,0.249972,0,0);}
.m92_c01402{transform:matrix(0.239790,-0.004076,0.004249,0.249964,0,0);-ms-transform:matrix(0.239790,-0.004076,0.004249,0.249964,0,0);-webkit-transform:matrix(0.239790,-0.004076,0.004249,0.249964,0,0);}
.md0_c01402{transform:matrix(0.240088,-0.003601,0.003750,0.249972,0,0);-ms-transform:matrix(0.240088,-0.003601,0.003750,0.249972,0,0);-webkit-transform:matrix(0.240088,-0.003601,0.003750,0.249972,0,0);}
.m129_c01402{transform:matrix(0.240256,-0.004325,0.004499,0.249960,0,0);-ms-transform:matrix(0.240256,-0.004325,0.004499,0.249960,0,0);-webkit-transform:matrix(0.240256,-0.004325,0.004499,0.249960,0,0);}
.m144_c01402{transform:matrix(0.240407,-0.004568,0.004749,0.249955,0,0);-ms-transform:matrix(0.240407,-0.004568,0.004749,0.249955,0,0);-webkit-transform:matrix(0.240407,-0.004568,0.004749,0.249955,0,0);}
.m68_c01402{transform:matrix(0.241170,-0.004100,0.004249,0.249964,0,0);-ms-transform:matrix(0.241170,-0.004100,0.004249,0.249964,0,0);-webkit-transform:matrix(0.241170,-0.004100,0.004249,0.249964,0,0);}
.m8_c01402{transform:matrix(0.241367,-0.004827,0.004999,0.249950,0,0);-ms-transform:matrix(0.241367,-0.004827,0.004999,0.249950,0,0);-webkit-transform:matrix(0.241367,-0.004827,0.004999,0.249950,0,0);}
.m82_c01402{transform:matrix(0.242260,-0.004118,0.004249,0.249964,0,0);-ms-transform:matrix(0.242260,-0.004118,0.004249,0.249964,0,0);-webkit-transform:matrix(0.242260,-0.004118,0.004249,0.249964,0,0);}
.m99_c01402{transform:matrix(0.243505,-0.004140,0.004249,0.249964,0,0);-ms-transform:matrix(0.243505,-0.004140,0.004249,0.249964,0,0);-webkit-transform:matrix(0.243505,-0.004140,0.004249,0.249964,0,0);}
.mc1_c01402{transform:matrix(0.243513,-0.003653,0.003750,0.249972,0,0);-ms-transform:matrix(0.243513,-0.003653,0.003750,0.249972,0,0);-webkit-transform:matrix(0.243513,-0.003653,0.003750,0.249972,0,0);}
.mb3_c01402{transform:matrix(0.243716,-0.004387,0.004499,0.249960,0,0);-ms-transform:matrix(0.243716,-0.004387,0.004499,0.249960,0,0);-webkit-transform:matrix(0.243716,-0.004387,0.004499,0.249960,0,0);}
.mbb_c01402{transform:matrix(0.244053,-0.003661,0.003750,0.249972,0,0);-ms-transform:matrix(0.244053,-0.003661,0.003750,0.249972,0,0);-webkit-transform:matrix(0.244053,-0.003661,0.003750,0.249972,0,0);}
.m3_c01402{transform:matrix(0.244126,-0.004883,0.004999,0.249950,0,0);-ms-transform:matrix(0.244126,-0.004883,0.004999,0.249950,0,0);-webkit-transform:matrix(0.244126,-0.004883,0.004999,0.249950,0,0);}
.m8f_c01402{transform:matrix(0.244220,-0.004152,0.004249,0.249964,0,0);-ms-transform:matrix(0.244220,-0.004152,0.004249,0.249964,0,0);-webkit-transform:matrix(0.244220,-0.004152,0.004249,0.249964,0,0);}
.m5b_c01402{transform:matrix(0.244260,-0.004152,0.004249,0.249964,0,0);-ms-transform:matrix(0.244260,-0.004152,0.004249,0.249964,0,0);-webkit-transform:matrix(0.244260,-0.004152,0.004249,0.249964,0,0);}
.m74_c01402{transform:matrix(0.244440,-0.004155,0.004249,0.249964,0,0);-ms-transform:matrix(0.244440,-0.004155,0.004249,0.249964,0,0);-webkit-transform:matrix(0.244440,-0.004155,0.004249,0.249964,0,0);}
.m1c_c01402{transform:matrix(0.244696,-0.004894,0.004999,0.249950,0,0);-ms-transform:matrix(0.244696,-0.004894,0.004999,0.249950,0,0);-webkit-transform:matrix(0.244696,-0.004894,0.004999,0.249950,0,0);}
.m91_c01402{transform:matrix(0.244835,-0.004162,0.004249,0.249964,0,0);-ms-transform:matrix(0.244835,-0.004162,0.004249,0.249964,0,0);-webkit-transform:matrix(0.244835,-0.004162,0.004249,0.249964,0,0);}
.mda_c01402{transform:matrix(0.244852,-0.003673,0.003750,0.249972,0,0);-ms-transform:matrix(0.244852,-0.003673,0.003750,0.249972,0,0);-webkit-transform:matrix(0.244852,-0.003673,0.003750,0.249972,0,0);}
.m7c_c01402{transform:matrix(0.245355,-0.004171,0.004249,0.249964,0,0);-ms-transform:matrix(0.245355,-0.004171,0.004249,0.249964,0,0);-webkit-transform:matrix(0.245355,-0.004171,0.004249,0.249964,0,0);}
.m21_c01402{transform:matrix(0.245676,-0.004914,0.004999,0.249950,0,0);-ms-transform:matrix(0.245676,-0.004914,0.004999,0.249950,0,0);-webkit-transform:matrix(0.245676,-0.004914,0.004999,0.249950,0,0);}
.mc_c01402{transform:matrix(0.246146,-0.004923,0.004999,0.249950,0,0);-ms-transform:matrix(0.246146,-0.004923,0.004999,0.249950,0,0);-webkit-transform:matrix(0.246146,-0.004923,0.004999,0.249950,0,0);}
.mc4_c01402{transform:matrix(0.246157,-0.003692,0.003750,0.249972,0,0);-ms-transform:matrix(0.246157,-0.003692,0.003750,0.249972,0,0);-webkit-transform:matrix(0.246157,-0.003692,0.003750,0.249972,0,0);}
.m78_c01402{transform:matrix(0.246169,-0.004185,0.004249,0.249964,0,0);-ms-transform:matrix(0.246169,-0.004185,0.004249,0.249964,0,0);-webkit-transform:matrix(0.246169,-0.004185,0.004249,0.249964,0,0);}
.m132_c01402{transform:matrix(0.246195,-0.004432,0.004499,0.249960,0,0);-ms-transform:matrix(0.246195,-0.004432,0.004499,0.249960,0,0);-webkit-transform:matrix(0.246195,-0.004432,0.004499,0.249960,0,0);}
.mad_c01402{transform:matrix(0.246694,-0.004194,0.004249,0.249964,0,0);-ms-transform:matrix(0.246694,-0.004194,0.004249,0.249964,0,0);-webkit-transform:matrix(0.246694,-0.004194,0.004249,0.249964,0,0);}
.m90_c01402{transform:matrix(0.247719,-0.004211,0.004249,0.249964,0,0);-ms-transform:matrix(0.247719,-0.004211,0.004249,0.249964,0,0);-webkit-transform:matrix(0.247719,-0.004211,0.004249,0.249964,0,0);}
.m51_c01402{transform:matrix(0.247809,-0.004213,0.004249,0.249964,0,0);-ms-transform:matrix(0.247809,-0.004213,0.004249,0.249964,0,0);-webkit-transform:matrix(0.247809,-0.004213,0.004249,0.249964,0,0);}
.mff_c01402{transform:matrix(0.247899,-0.004214,0.004249,0.249964,0,0);-ms-transform:matrix(0.247899,-0.004214,0.004249,0.249964,0,0);-webkit-transform:matrix(0.247899,-0.004214,0.004249,0.249964,0,0);}
.mb_c01402{transform:matrix(0.248505,-0.004970,0.004999,0.249950,0,0);-ms-transform:matrix(0.248505,-0.004970,0.004999,0.249950,0,0);-webkit-transform:matrix(0.248505,-0.004970,0.004999,0.249950,0,0);}
.ma4_c01402{transform:matrix(0.248539,-0.004225,0.004249,0.249964,0,0);-ms-transform:matrix(0.248539,-0.004225,0.004249,0.249964,0,0);-webkit-transform:matrix(0.248539,-0.004225,0.004249,0.249964,0,0);}
.md7_c01402{transform:matrix(0.248947,-0.003734,0.003750,0.249972,0,0);-ms-transform:matrix(0.248947,-0.003734,0.003750,0.249972,0,0);-webkit-transform:matrix(0.248947,-0.003734,0.003750,0.249972,0,0);}
.m24_c01402{transform:matrix(0.248990,-0.004980,0.004999,0.249950,0,0);-ms-transform:matrix(0.248990,-0.004980,0.004999,0.249950,0,0);-webkit-transform:matrix(0.248990,-0.004980,0.004999,0.249950,0,0);}
.m124_c01402{transform:matrix(0.249254,-0.004237,0.004249,0.249964,0,0);-ms-transform:matrix(0.249254,-0.004237,0.004249,0.249964,0,0);-webkit-transform:matrix(0.249254,-0.004237,0.004249,0.249964,0,0);}
.m108_c01402{transform:matrix(0.249369,-0.004239,0.004249,0.249964,0,0);-ms-transform:matrix(0.249369,-0.004239,0.004249,0.249964,0,0);-webkit-transform:matrix(0.249369,-0.004239,0.004249,0.249964,0,0);}
.m98_c01402{transform:matrix(0.249629,-0.004244,0.004249,0.249964,0,0);-ms-transform:matrix(0.249629,-0.004244,0.004249,0.249964,0,0);-webkit-transform:matrix(0.249629,-0.004244,0.004249,0.249964,0,0);}
.m25_c01402{transform:matrix(0.249710,-0.004994,0.004999,0.249950,0,0);-ms-transform:matrix(0.249710,-0.004994,0.004999,0.249950,0,0);-webkit-transform:matrix(0.249710,-0.004994,0.004999,0.249950,0,0);}
.mba_c01402{transform:matrix(0.249952,-0.003749,0.003750,0.249972,0,0);-ms-transform:matrix(0.249952,-0.003749,0.003750,0.249972,0,0);-webkit-transform:matrix(0.249952,-0.003749,0.003750,0.249972,0,0);}
.m26_c01402{transform:matrix(0.250340,-0.005007,0.004999,0.249950,0,0);-ms-transform:matrix(0.250340,-0.005007,0.004999,0.249950,0,0);-webkit-transform:matrix(0.250340,-0.005007,0.004999,0.249950,0,0);}
.md4_c01402{transform:matrix(0.250632,-0.003759,0.003750,0.249972,0,0);-ms-transform:matrix(0.250632,-0.003759,0.003750,0.249972,0,0);-webkit-transform:matrix(0.250632,-0.003759,0.003750,0.249972,0,0);}
.md1_c01402{transform:matrix(0.250712,-0.003761,0.003750,0.249972,0,0);-ms-transform:matrix(0.250712,-0.003761,0.003750,0.249972,0,0);-webkit-transform:matrix(0.250712,-0.003761,0.003750,0.249972,0,0);}
.m7_c01402{transform:matrix(0.251075,-0.005021,0.004999,0.249950,0,0);-ms-transform:matrix(0.251075,-0.005021,0.004999,0.249950,0,0);-webkit-transform:matrix(0.251075,-0.005021,0.004999,0.249950,0,0);}
.m128_c01402{transform:matrix(0.251354,-0.004524,0.004499,0.249960,0,0);-ms-transform:matrix(0.251354,-0.004524,0.004499,0.249960,0,0);-webkit-transform:matrix(0.251354,-0.004524,0.004499,0.249960,0,0);}
.m9f_c01402{transform:matrix(0.251524,-0.004276,0.004249,0.249964,0,0);-ms-transform:matrix(0.251524,-0.004276,0.004249,0.249964,0,0);-webkit-transform:matrix(0.251524,-0.004276,0.004249,0.249964,0,0);}
.mf4_c01402{transform:matrix(0.251532,-0.003773,0.003750,0.249972,0,0);-ms-transform:matrix(0.251532,-0.003773,0.003750,0.249972,0,0);-webkit-transform:matrix(0.251532,-0.003773,0.003750,0.249972,0,0);}
.mb1_c01402{transform:matrix(0.251834,-0.004533,0.004499,0.249960,0,0);-ms-transform:matrix(0.251834,-0.004533,0.004499,0.249960,0,0);-webkit-transform:matrix(0.251834,-0.004533,0.004499,0.249960,0,0);}
.m100_c01402{transform:matrix(0.252079,-0.004285,0.004249,0.249964,0,0);-ms-transform:matrix(0.252079,-0.004285,0.004249,0.249964,0,0);-webkit-transform:matrix(0.252079,-0.004285,0.004249,0.249964,0,0);}
.m48_c01402{transform:matrix(0.252214,-0.004540,0.004499,0.249960,0,0);-ms-transform:matrix(0.252214,-0.004540,0.004499,0.249960,0,0);-webkit-transform:matrix(0.252214,-0.004540,0.004499,0.249960,0,0);}
.m126_c01402{transform:matrix(0.252784,-0.004550,0.004499,0.249960,0,0);-ms-transform:matrix(0.252784,-0.004550,0.004499,0.249960,0,0);-webkit-transform:matrix(0.252784,-0.004550,0.004499,0.249960,0,0);}
.mef_c01402{transform:matrix(0.253222,-0.003798,0.003750,0.249972,0,0);-ms-transform:matrix(0.253222,-0.003798,0.003750,0.249972,0,0);-webkit-transform:matrix(0.253222,-0.003798,0.003750,0.249972,0,0);}
.m105_c01402{transform:matrix(0.253288,-0.004306,0.004249,0.249964,0,0);-ms-transform:matrix(0.253288,-0.004306,0.004249,0.249964,0,0);-webkit-transform:matrix(0.253288,-0.004306,0.004249,0.249964,0,0);}
.m13a_c01402{transform:matrix(0.253339,-0.005320,0.005249,0.249945,0,0);-ms-transform:matrix(0.253339,-0.005320,0.005249,0.249945,0,0);-webkit-transform:matrix(0.253339,-0.005320,0.005249,0.249945,0,0);}
.m9b_c01402{transform:matrix(0.254308,-0.004323,0.004249,0.249964,0,0);-ms-transform:matrix(0.254308,-0.004323,0.004249,0.249964,0,0);-webkit-transform:matrix(0.254308,-0.004323,0.004249,0.249964,0,0);}
.maa_c01402{transform:matrix(0.254528,-0.004327,0.004249,0.249964,0,0);-ms-transform:matrix(0.254528,-0.004327,0.004249,0.249964,0,0);-webkit-transform:matrix(0.254528,-0.004327,0.004249,0.249964,0,0);}
.mf1_c01402{transform:matrix(0.254951,-0.003824,0.003750,0.249972,0,0);-ms-transform:matrix(0.254951,-0.003824,0.003750,0.249972,0,0);-webkit-transform:matrix(0.254951,-0.003824,0.003750,0.249972,0,0);}
.m12c_c01402{transform:matrix(0.254984,-0.004590,0.004499,0.249960,0,0);-ms-transform:matrix(0.254984,-0.004590,0.004499,0.249960,0,0);-webkit-transform:matrix(0.254984,-0.004590,0.004499,0.249960,0,0);}
.m5f_c01402{transform:matrix(0.255298,-0.004340,0.004249,0.249964,0,0);-ms-transform:matrix(0.255298,-0.004340,0.004249,0.249964,0,0);-webkit-transform:matrix(0.255298,-0.004340,0.004249,0.249964,0,0);}
.m97_c01402{transform:matrix(0.255543,-0.004344,0.004249,0.249964,0,0);-ms-transform:matrix(0.255543,-0.004344,0.004249,0.249964,0,0);-webkit-transform:matrix(0.255543,-0.004344,0.004249,0.249964,0,0);}
.maf_c01402{transform:matrix(0.255609,-0.004601,0.004499,0.249960,0,0);-ms-transform:matrix(0.255609,-0.004601,0.004499,0.249960,0,0);-webkit-transform:matrix(0.255609,-0.004601,0.004499,0.249960,0,0);}
.m23_c01402{transform:matrix(0.255624,-0.005112,0.004999,0.249950,0,0);-ms-transform:matrix(0.255624,-0.005112,0.004999,0.249950,0,0);-webkit-transform:matrix(0.255624,-0.005112,0.004999,0.249950,0,0);}
.m103_c01402{transform:matrix(0.255953,-0.004351,0.004249,0.249964,0,0);-ms-transform:matrix(0.255953,-0.004351,0.004249,0.249964,0,0);-webkit-transform:matrix(0.255953,-0.004351,0.004249,0.249964,0,0);}
.mf3_c01402{transform:matrix(0.257041,-0.003856,0.003750,0.249972,0,0);-ms-transform:matrix(0.257041,-0.003856,0.003750,0.249972,0,0);-webkit-transform:matrix(0.257041,-0.003856,0.003750,0.249972,0,0);}
.m4a_c01402{transform:matrix(0.257353,-0.004632,0.004499,0.249960,0,0);-ms-transform:matrix(0.257353,-0.004632,0.004499,0.249960,0,0);-webkit-transform:matrix(0.257353,-0.004632,0.004499,0.249960,0,0);}
.m52_c01402{transform:matrix(0.257433,-0.004376,0.004249,0.249964,0,0);-ms-transform:matrix(0.257433,-0.004376,0.004249,0.249964,0,0);-webkit-transform:matrix(0.257433,-0.004376,0.004249,0.249964,0,0);}
.m49_c01402{transform:matrix(0.257578,-0.004636,0.004499,0.249960,0,0);-ms-transform:matrix(0.257578,-0.004636,0.004499,0.249960,0,0);-webkit-transform:matrix(0.257578,-0.004636,0.004499,0.249960,0,0);}
.m8a_c01402{transform:matrix(0.257613,-0.004379,0.004249,0.249964,0,0);-ms-transform:matrix(0.257613,-0.004379,0.004249,0.249964,0,0);-webkit-transform:matrix(0.257613,-0.004379,0.004249,0.249964,0,0);}
.ma8_c01402{transform:matrix(0.257688,-0.004381,0.004249,0.249964,0,0);-ms-transform:matrix(0.257688,-0.004381,0.004249,0.249964,0,0);-webkit-transform:matrix(0.257688,-0.004381,0.004249,0.249964,0,0);}
.m94_c01402{transform:matrix(0.257838,-0.004383,0.004249,0.249964,0,0);-ms-transform:matrix(0.257838,-0.004383,0.004249,0.249964,0,0);-webkit-transform:matrix(0.257838,-0.004383,0.004249,0.249964,0,0);}
.m5e_c01402{transform:matrix(0.258033,-0.004387,0.004249,0.249964,0,0);-ms-transform:matrix(0.258033,-0.004387,0.004249,0.249964,0,0);-webkit-transform:matrix(0.258033,-0.004387,0.004249,0.249964,0,0);}
.md2_c01402{transform:matrix(0.258041,-0.003871,0.003750,0.249972,0,0);-ms-transform:matrix(0.258041,-0.003871,0.003750,0.249972,0,0);-webkit-transform:matrix(0.258041,-0.003871,0.003750,0.249972,0,0);}
.mae_c01402{transform:matrix(0.258143,-0.004388,0.004249,0.249964,0,0);-ms-transform:matrix(0.258143,-0.004388,0.004249,0.249964,0,0);-webkit-transform:matrix(0.258143,-0.004388,0.004249,0.249964,0,0);}
.mca_c01402{transform:matrix(0.258156,-0.003872,0.003750,0.249972,0,0);-ms-transform:matrix(0.258156,-0.003872,0.003750,0.249972,0,0);-webkit-transform:matrix(0.258156,-0.003872,0.003750,0.249972,0,0);}
.m12f_c01402{transform:matrix(0.258573,-0.004654,0.004499,0.249960,0,0);-ms-transform:matrix(0.258573,-0.004654,0.004499,0.249960,0,0);-webkit-transform:matrix(0.258573,-0.004654,0.004499,0.249960,0,0);}
.m9e_c01402{transform:matrix(0.258593,-0.004396,0.004249,0.249964,0,0);-ms-transform:matrix(0.258593,-0.004396,0.004249,0.249964,0,0);-webkit-transform:matrix(0.258593,-0.004396,0.004249,0.249964,0,0);}
.mc7_c01402{transform:matrix(0.258961,-0.003884,0.003750,0.249972,0,0);-ms-transform:matrix(0.258961,-0.003884,0.003750,0.249972,0,0);-webkit-transform:matrix(0.258961,-0.003884,0.003750,0.249972,0,0);}
.m136_c01402{transform:matrix(0.260073,-0.005462,0.005249,0.249945,0,0);-ms-transform:matrix(0.260073,-0.005462,0.005249,0.249945,0,0);-webkit-transform:matrix(0.260073,-0.005462,0.005249,0.249945,0,0);}
.mc8_c01402{transform:matrix(0.260091,-0.003901,0.003750,0.249972,0,0);-ms-transform:matrix(0.260091,-0.003901,0.003750,0.249972,0,0);-webkit-transform:matrix(0.260091,-0.003901,0.003750,0.249972,0,0);}
.m12a_c01402{transform:matrix(0.260523,-0.004689,0.004499,0.249960,0,0);-ms-transform:matrix(0.260523,-0.004689,0.004499,0.249960,0,0);-webkit-transform:matrix(0.260523,-0.004689,0.004499,0.249960,0,0);}
.m4c_c01402{transform:matrix(0.260878,-0.004696,0.004499,0.249960,0,0);-ms-transform:matrix(0.260878,-0.004696,0.004499,0.249960,0,0);-webkit-transform:matrix(0.260878,-0.004696,0.004499,0.249960,0,0);}
.m55_c01402{transform:matrix(0.261427,-0.004444,0.004249,0.249964,0,0);-ms-transform:matrix(0.261427,-0.004444,0.004249,0.249964,0,0);-webkit-transform:matrix(0.261427,-0.004444,0.004249,0.249964,0,0);}
.ma6_c01402{transform:matrix(0.261797,-0.004451,0.004249,0.249964,0,0);-ms-transform:matrix(0.261797,-0.004451,0.004249,0.249964,0,0);-webkit-transform:matrix(0.261797,-0.004451,0.004249,0.249964,0,0);}
.m63_c01402{transform:matrix(0.261907,-0.004452,0.004249,0.249964,0,0);-ms-transform:matrix(0.261907,-0.004452,0.004249,0.249964,0,0);-webkit-transform:matrix(0.261907,-0.004452,0.004249,0.249964,0,0);}
.m12b_c01402{transform:matrix(0.264017,-0.004752,0.004499,0.249960,0,0);-ms-transform:matrix(0.264017,-0.004752,0.004499,0.249960,0,0);-webkit-transform:matrix(0.264017,-0.004752,0.004499,0.249960,0,0);}
.mab_c01402{transform:matrix(0.264562,-0.004498,0.004249,0.249964,0,0);-ms-transform:matrix(0.264562,-0.004498,0.004249,0.249964,0,0);-webkit-transform:matrix(0.264562,-0.004498,0.004249,0.249964,0,0);}
.m6b_c01402{transform:matrix(0.264827,-0.004502,0.004249,0.249964,0,0);-ms-transform:matrix(0.264827,-0.004502,0.004249,0.249964,0,0);-webkit-transform:matrix(0.264827,-0.004502,0.004249,0.249964,0,0);}
.m8d_c01402{transform:matrix(0.264937,-0.004504,0.004249,0.249964,0,0);-ms-transform:matrix(0.264937,-0.004504,0.004249,0.249964,0,0);-webkit-transform:matrix(0.264937,-0.004504,0.004249,0.249964,0,0);}
.m96_c01402{transform:matrix(0.265282,-0.004510,0.004249,0.249964,0,0);-ms-transform:matrix(0.265282,-0.004510,0.004249,0.249964,0,0);-webkit-transform:matrix(0.265282,-0.004510,0.004249,0.249964,0,0);}
.mc2_c01402{transform:matrix(0.265470,-0.003982,0.003750,0.249972,0,0);-ms-transform:matrix(0.265470,-0.003982,0.003750,0.249972,0,0);-webkit-transform:matrix(0.265470,-0.003982,0.003750,0.249972,0,0);}
.m28_c01402{transform:matrix(0.265487,-0.005310,0.004999,0.249950,0,0);-ms-transform:matrix(0.265487,-0.005310,0.004999,0.249950,0,0);-webkit-transform:matrix(0.265487,-0.005310,0.004999,0.249950,0,0);}
.m102_c01402{transform:matrix(0.265797,-0.004519,0.004249,0.249964,0,0);-ms-transform:matrix(0.265797,-0.004519,0.004249,0.249964,0,0);-webkit-transform:matrix(0.265797,-0.004519,0.004249,0.249964,0,0);}
.m135_c01402{transform:matrix(0.266036,-0.005587,0.005249,0.249945,0,0);-ms-transform:matrix(0.266036,-0.005587,0.005249,0.249945,0,0);-webkit-transform:matrix(0.266036,-0.005587,0.005249,0.249945,0,0);}
.mcd_c01402{transform:matrix(0.266450,-0.003997,0.003750,0.249972,0,0);-ms-transform:matrix(0.266450,-0.003997,0.003750,0.249972,0,0);-webkit-transform:matrix(0.266450,-0.003997,0.003750,0.249972,0,0);}
.m9c_c01402{transform:matrix(0.267216,-0.004543,0.004249,0.249964,0,0);-ms-transform:matrix(0.267216,-0.004543,0.004249,0.249964,0,0);-webkit-transform:matrix(0.267216,-0.004543,0.004249,0.249964,0,0);}
.m79_c01402{transform:matrix(0.267486,-0.004547,0.004249,0.249964,0,0);-ms-transform:matrix(0.267486,-0.004547,0.004249,0.249964,0,0);-webkit-transform:matrix(0.267486,-0.004547,0.004249,0.249964,0,0);}
.m62_c01402{transform:matrix(0.267661,-0.004550,0.004249,0.249964,0,0);-ms-transform:matrix(0.267661,-0.004550,0.004249,0.249964,0,0);-webkit-transform:matrix(0.267661,-0.004550,0.004249,0.249964,0,0);}
.mfd_c01402{transform:matrix(0.267846,-0.004553,0.004249,0.249964,0,0);-ms-transform:matrix(0.267846,-0.004553,0.004249,0.249964,0,0);-webkit-transform:matrix(0.267846,-0.004553,0.004249,0.249964,0,0);}
.mcc_c01402{transform:matrix(0.267970,-0.004020,0.003750,0.249972,0,0);-ms-transform:matrix(0.267970,-0.004020,0.003750,0.249972,0,0);-webkit-transform:matrix(0.267970,-0.004020,0.003750,0.249972,0,0);}
.m139_c01402{transform:matrix(0.268561,-0.005640,0.005249,0.249945,0,0);-ms-transform:matrix(0.268561,-0.005640,0.005249,0.249945,0,0);-webkit-transform:matrix(0.268561,-0.005640,0.005249,0.249945,0,0);}
.ma1_c01402{transform:matrix(0.268661,-0.004567,0.004249,0.249964,0,0);-ms-transform:matrix(0.268661,-0.004567,0.004249,0.249964,0,0);-webkit-transform:matrix(0.268661,-0.004567,0.004249,0.249964,0,0);}
.m127_c01402{transform:matrix(0.268711,-0.004837,0.004499,0.249960,0,0);-ms-transform:matrix(0.268711,-0.004837,0.004499,0.249960,0,0);-webkit-transform:matrix(0.268711,-0.004837,0.004499,0.249960,0,0);}
.m47_c01402{transform:matrix(0.269036,-0.004843,0.004499,0.249960,0,0);-ms-transform:matrix(0.269036,-0.004843,0.004499,0.249960,0,0);-webkit-transform:matrix(0.269036,-0.004843,0.004499,0.249960,0,0);}
.md5_c01402{transform:matrix(0.269150,-0.004037,0.003750,0.249972,0,0);-ms-transform:matrix(0.269150,-0.004037,0.003750,0.249972,0,0);-webkit-transform:matrix(0.269150,-0.004037,0.003750,0.249972,0,0);}
.m137_c01402{transform:matrix(0.269526,-0.005660,0.005249,0.249945,0,0);-ms-transform:matrix(0.269526,-0.005660,0.005249,0.249945,0,0);-webkit-transform:matrix(0.269526,-0.005660,0.005249,0.249945,0,0);}
.m73_c01402{transform:matrix(0.269581,-0.004583,0.004249,0.249964,0,0);-ms-transform:matrix(0.269581,-0.004583,0.004249,0.249964,0,0);-webkit-transform:matrix(0.269581,-0.004583,0.004249,0.249964,0,0);}
.m5c_c01402{transform:matrix(0.269716,-0.004585,0.004249,0.249964,0,0);-ms-transform:matrix(0.269716,-0.004585,0.004249,0.249964,0,0);-webkit-transform:matrix(0.269716,-0.004585,0.004249,0.249964,0,0);}
.m4_c01402{transform:matrix(0.269856,-0.005397,0.004999,0.249950,0,0);-ms-transform:matrix(0.269856,-0.005397,0.004999,0.249950,0,0);-webkit-transform:matrix(0.269856,-0.005397,0.004999,0.249950,0,0);}
.mcf_c01402{transform:matrix(0.270425,-0.004056,0.003750,0.249972,0,0);-ms-transform:matrix(0.270425,-0.004056,0.003750,0.249972,0,0);-webkit-transform:matrix(0.270425,-0.004056,0.003750,0.249972,0,0);}
.m9_c01402{transform:matrix(0.270896,-0.005418,0.004999,0.249950,0,0);-ms-transform:matrix(0.270896,-0.005418,0.004999,0.249950,0,0);-webkit-transform:matrix(0.270896,-0.005418,0.004999,0.249950,0,0);}
.m1f_c01402{transform:matrix(0.271046,-0.005421,0.004999,0.249950,0,0);-ms-transform:matrix(0.271046,-0.005421,0.004999,0.249950,0,0);-webkit-transform:matrix(0.271046,-0.005421,0.004999,0.249950,0,0);}
.m46_c01402{transform:matrix(0.271896,-0.004894,0.004499,0.249960,0,0);-ms-transform:matrix(0.271896,-0.004894,0.004499,0.249960,0,0);-webkit-transform:matrix(0.271896,-0.004894,0.004499,0.249960,0,0);}
.mac_c01402{transform:matrix(0.272156,-0.004627,0.004249,0.249964,0,0);-ms-transform:matrix(0.272156,-0.004627,0.004249,0.249964,0,0);-webkit-transform:matrix(0.272156,-0.004627,0.004249,0.249964,0,0);}
.ma0_c01402{transform:matrix(0.272291,-0.004629,0.004249,0.249964,0,0);-ms-transform:matrix(0.272291,-0.004629,0.004249,0.249964,0,0);-webkit-transform:matrix(0.272291,-0.004629,0.004249,0.249964,0,0);}
.m29_c01402{transform:matrix(0.273705,-0.005474,0.004999,0.249950,0,0);-ms-transform:matrix(0.273705,-0.005474,0.004999,0.249950,0,0);-webkit-transform:matrix(0.273705,-0.005474,0.004999,0.249950,0,0);}
.mcb_c01402{transform:matrix(0.274049,-0.004111,0.003750,0.249972,0,0);-ms-transform:matrix(0.274049,-0.004111,0.003750,0.249972,0,0);-webkit-transform:matrix(0.274049,-0.004111,0.003750,0.249972,0,0);}
.m22_c01402{transform:matrix(0.275300,-0.005506,0.004999,0.249950,0,0);-ms-transform:matrix(0.275300,-0.005506,0.004999,0.249950,0,0);-webkit-transform:matrix(0.275300,-0.005506,0.004999,0.249950,0,0);}
.m101_c01402{transform:matrix(0.275430,-0.004682,0.004249,0.249964,0,0);-ms-transform:matrix(0.275430,-0.004682,0.004249,0.249964,0,0);-webkit-transform:matrix(0.275430,-0.004682,0.004249,0.249964,0,0);}
.mc5_c01402{transform:matrix(0.275764,-0.004136,0.003750,0.249972,0,0);-ms-transform:matrix(0.275764,-0.004136,0.003750,0.249972,0,0);-webkit-transform:matrix(0.275764,-0.004136,0.003750,0.249972,0,0);}
.m6_c01402{transform:matrix(0.275820,-0.005516,0.004999,0.249950,0,0);-ms-transform:matrix(0.275820,-0.005516,0.004999,0.249950,0,0);-webkit-transform:matrix(0.275820,-0.005516,0.004999,0.249950,0,0);}
.m7b_c01402{transform:matrix(0.276290,-0.004697,0.004249,0.249964,0,0);-ms-transform:matrix(0.276290,-0.004697,0.004249,0.249964,0,0);-webkit-transform:matrix(0.276290,-0.004697,0.004249,0.249964,0,0);}
.md3_c01402{transform:matrix(0.277269,-0.004159,0.003750,0.249972,0,0);-ms-transform:matrix(0.277269,-0.004159,0.003750,0.249972,0,0);-webkit-transform:matrix(0.277269,-0.004159,0.003750,0.249972,0,0);}
.m76_c01402{transform:matrix(0.277685,-0.004721,0.004249,0.249964,0,0);-ms-transform:matrix(0.277685,-0.004721,0.004249,0.249964,0,0);-webkit-transform:matrix(0.277685,-0.004721,0.004249,0.249964,0,0);}
.m61_c01402{transform:matrix(0.278070,-0.004727,0.004249,0.249964,0,0);-ms-transform:matrix(0.278070,-0.004727,0.004249,0.249964,0,0);-webkit-transform:matrix(0.278070,-0.004727,0.004249,0.249964,0,0);}
.mce_c01402{transform:matrix(0.278279,-0.004174,0.003750,0.249972,0,0);-ms-transform:matrix(0.278279,-0.004174,0.003750,0.249972,0,0);-webkit-transform:matrix(0.278279,-0.004174,0.003750,0.249972,0,0);}
.m9a_c01402{transform:matrix(0.278370,-0.004732,0.004249,0.249964,0,0);-ms-transform:matrix(0.278370,-0.004732,0.004249,0.249964,0,0);-webkit-transform:matrix(0.278370,-0.004732,0.004249,0.249964,0,0);}
.m8b_c01402{transform:matrix(0.278540,-0.004735,0.004249,0.249964,0,0);-ms-transform:matrix(0.278540,-0.004735,0.004249,0.249964,0,0);-webkit-transform:matrix(0.278540,-0.004735,0.004249,0.249964,0,0);}
.mbc_c01402{transform:matrix(0.279244,-0.004189,0.003750,0.249972,0,0);-ms-transform:matrix(0.279244,-0.004189,0.003750,0.249972,0,0);-webkit-transform:matrix(0.279244,-0.004189,0.003750,0.249972,0,0);}
.m93_c01402{transform:matrix(0.281059,-0.004778,0.004249,0.249964,0,0);-ms-transform:matrix(0.281059,-0.004778,0.004249,0.249964,0,0);-webkit-transform:matrix(0.281059,-0.004778,0.004249,0.249964,0,0);}
.m8e_c01402{transform:matrix(0.281504,-0.004786,0.004249,0.249964,0,0);-ms-transform:matrix(0.281504,-0.004786,0.004249,0.249964,0,0);-webkit-transform:matrix(0.281504,-0.004786,0.004249,0.249964,0,0);}
.mbf_c01402{transform:matrix(0.282888,-0.004243,0.003750,0.249972,0,0);-ms-transform:matrix(0.282888,-0.004243,0.003750,0.249972,0,0);-webkit-transform:matrix(0.282888,-0.004243,0.003750,0.249972,0,0);}
.m7d_c01402{transform:matrix(0.285279,-0.004850,0.004249,0.249964,0,0);-ms-transform:matrix(0.285279,-0.004850,0.004249,0.249964,0,0);-webkit-transform:matrix(0.285279,-0.004850,0.004249,0.249964,0,0);}
.mbd_c01402{transform:matrix(0.288248,-0.004324,0.003750,0.249972,0,0);-ms-transform:matrix(0.288248,-0.004324,0.003750,0.249972,0,0);-webkit-transform:matrix(0.288248,-0.004324,0.003750,0.249972,0,0);}
.m13e_c01402{transform:matrix(0.298875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298875,0.000000,0.000000,0.250000,0,0);}
.md_c01402{transform:matrix(0.313767,-0.006275,0.004999,0.249950,0,0);-ms-transform:matrix(0.313767,-0.006275,0.004999,0.249950,0,0);-webkit-transform:matrix(0.313767,-0.006275,0.004999,0.249950,0,0);}
.m140_c01402{transform:matrix(0.326495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326495,0.000000,0.000000,0.250000,0,0);}
.mc3_c01402{transform:matrix(0.327398,-0.004911,0.003750,0.249972,0,0);-ms-transform:matrix(0.327398,-0.004911,0.003750,0.249972,0,0);-webkit-transform:matrix(0.327398,-0.004911,0.003750,0.249972,0,0);}
.mb9_c01402{transform:matrix(0.350660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350660,0.000000,0.000000,0.250000,0,0);}
.m37_c01402{transform:matrix(0.357948,-0.007159,0.004999,0.249950,0,0);-ms-transform:matrix(0.357948,-0.007159,0.004999,0.249950,0,0);-webkit-transform:matrix(0.357948,-0.007159,0.004999,0.249950,0,0);}
.m5a_c01402{transform:matrix(0.360053,-0.006121,0.004249,0.249964,0,0);-ms-transform:matrix(0.360053,-0.006121,0.004249,0.249964,0,0);-webkit-transform:matrix(0.360053,-0.006121,0.004249,0.249964,0,0);}
.m141_c01402{transform:matrix(0.374032,-0.007107,0.004749,0.249955,0,0);-ms-transform:matrix(0.374032,-0.007107,0.004749,0.249955,0,0);-webkit-transform:matrix(0.374032,-0.007107,0.004749,0.249955,0,0);}
.m13c_c01402{transform:matrix(0.411885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411885,0.000000,0.000000,0.250000,0,0);}
.mb8_c01402{transform:matrix(0.587265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.587265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.587265,0.000000,0.000000,0.250000,0,0);}
.m13b_c01402{transform:matrix(0.842140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.842140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.842140,0.000000,0.000000,0.250000,0,0);}
.m13f_c01402{transform:matrix(1.072285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.072285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.072285,0.000000,0.000000,0.250000,0,0);}
.m134_c01402{transform:matrix(1.294055,-0.023293,0.004499,0.249960,0,0);-ms-transform:matrix(1.294055,-0.023293,0.004499,0.249960,0,0);-webkit-transform:matrix(1.294055,-0.023293,0.004499,0.249960,0,0);}
.m13d_c01402{transform:matrix(1.601125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.601125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.601125,0.000000,0.000000,0.250000,0,0);}
.v0_c01402{vertical-align:0.000000px;}
.ls0_c01402{letter-spacing:0.000000px;}
.sc__c01402{text-shadow:none;}
.sc0_c01402{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__c01402{-webkit-text-stroke:0px transparent;}
.sc0_c01402{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01402{word-spacing:0.000000px;}
._0_c01402{width:45.640344px;}
.fc0_c01402{color:transparent;}
.fs15_c01402{font-size:18.000000px;}
.fs13_c01402{font-size:18.002916px;}
.fs9_c01402{font-size:24.000000px;}
.fs11_c01402{font-size:36.000000px;}
.fs0_c01402{font-size:72.000000px;}
.fsa_c01402{font-size:72.008100px;}
.fs6_c01402{font-size:72.010403px;}
.fs4_c01402{font-size:72.011663px;}
.fs1_c01402{font-size:72.014399px;}
.fs14_c01402{font-size:72.015874px;}
.fsc_c01402{font-size:78.008775px;}
.fs5_c01402{font-size:78.011270px;}
.fs8_c01402{font-size:78.012635px;}
.fs16_c01402{font-size:78.014078px;}
.fsf_c01402{font-size:84.000000px;}
.fsb_c01402{font-size:84.009449px;}
.fs7_c01402{font-size:84.012137px;}
.fs2_c01402{font-size:84.016798px;}
.fs10_c01402{font-size:90.000000px;}
.fs12_c01402{font-size:90.013004px;}
.fs3_c01402{font-size:90.017998px;}
.fse_c01402{font-size:108.000000px;}
.fsd_c01402{font-size:132.000000px;}
.y0_c01402{bottom:0.000000px;}
.y148_c01402{bottom:55.087500px;}
.y149_c01402{bottom:55.267136px;}
.y14a_c01402{bottom:58.271007px;}
.y14b_c01402{bottom:59.266541px;}
.y14c_c01402{bottom:60.303200px;}
.y147_c01402{bottom:77.760000px;}
.y141_c01402{bottom:91.807500px;}
.y142_c01402{bottom:92.930633px;}
.y143_c01402{bottom:94.541039px;}
.y144_c01402{bottom:96.354935px;}
.y145_c01402{bottom:97.053132px;}
.y146_c01402{bottom:98.902087px;}
.y140_c01402{bottom:124.642581px;}
.y131_c01402{bottom:146.614500px;}
.y132_c01402{bottom:147.242115px;}
.y133_c01402{bottom:148.185495px;}
.y134_c01402{bottom:149.559606px;}
.y135_c01402{bottom:150.356592px;}
.y136_c01402{bottom:151.144317px;}
.y137_c01402{bottom:152.506386px;}
.y138_c01402{bottom:153.691335px;}
.y139_c01402{bottom:154.697355px;}
.y13a_c01402{bottom:155.262249px;}
.y13b_c01402{bottom:155.855169px;}
.y13c_c01402{bottom:156.845664px;}
.y13d_c01402{bottom:157.424004px;}
.y13e_c01402{bottom:158.225850px;}
.y13f_c01402{bottom:159.236379px;}
.y123_c01402{bottom:182.781723px;}
.y124_c01402{bottom:183.216981px;}
.y125_c01402{bottom:183.553975px;}
.y126_c01402{bottom:184.144704px;}
.y127_c01402{bottom:184.752225px;}
.y128_c01402{bottom:186.287214px;}
.y129_c01402{bottom:186.748525px;}
.y12a_c01402{bottom:187.652239px;}
.y12b_c01402{bottom:188.139553px;}
.y12c_c01402{bottom:189.039336px;}
.y12d_c01402{bottom:189.352959px;}
.y12e_c01402{bottom:190.416100px;}
.y12f_c01402{bottom:190.873557px;}
.y130_c01402{bottom:192.245497px;}
.y14e_c01402{bottom:202.500000px;}
.y14d_c01402{bottom:210.600000px;}
.y114_c01402{bottom:218.157833px;}
.y115_c01402{bottom:218.442015px;}
.y116_c01402{bottom:218.790612px;}
.y117_c01402{bottom:219.441888px;}
.y118_c01402{bottom:220.090104px;}
.y119_c01402{bottom:220.746607px;}
.y11a_c01402{bottom:222.058446px;}
.y11b_c01402{bottom:223.537781px;}
.y11c_c01402{bottom:224.853240px;}
.y11d_c01402{bottom:225.173421px;}
.y11e_c01402{bottom:225.661251px;}
.y11f_c01402{bottom:226.173676px;}
.y120_c01402{bottom:226.978424px;}
.y121_c01402{bottom:227.630388px;}
.y122_c01402{bottom:227.959392px;}
.y106_c01402{bottom:253.534500px;}
.y107_c01402{bottom:255.186033px;}
.y108_c01402{bottom:255.535995px;}
.y109_c01402{bottom:256.265856px;}
.y10a_c01402{bottom:257.023410px;}
.y10b_c01402{bottom:258.890494px;}
.y10c_c01402{bottom:259.258255px;}
.y10d_c01402{bottom:260.548861px;}
.y10e_c01402{bottom:261.131945px;}
.y10f_c01402{bottom:261.475353px;}
.y110_c01402{bottom:262.238288px;}
.y111_c01402{bottom:263.150933px;}
.y112_c01402{bottom:263.889744px;}
.y113_c01402{bottom:264.267170px;}
.y105_c01402{bottom:284.850000px;}
.yf2_c01402{bottom:287.272200px;}
.yf3_c01402{bottom:288.378390px;}
.yf4_c01402{bottom:289.122300px;}
.yf5_c01402{bottom:289.655168px;}
.yf6_c01402{bottom:290.059388px;}
.yf7_c01402{bottom:290.765632px;}
.yf8_c01402{bottom:292.270492px;}
.yf9_c01402{bottom:293.203740px;}
.yfa_c01402{bottom:294.860363px;}
.yfb_c01402{bottom:295.420732px;}
.yfc_c01402{bottom:297.468465px;}
.y104_c01402{bottom:306.180000px;}
.y103_c01402{bottom:317.520000px;}
.ye3_c01402{bottom:322.912380px;}
.ye4_c01402{bottom:323.661277px;}
.ye5_c01402{bottom:324.754178px;}
.ye6_c01402{bottom:325.337662px;}
.ye7_c01402{bottom:325.870530px;}
.ye8_c01402{bottom:326.797185px;}
.ye9_c01402{bottom:327.742710px;}
.yea_c01402{bottom:328.469055px;}
.yeb_c01402{bottom:329.217818px;}
.y102_c01402{bottom:329.940000px;}
.yec_c01402{bottom:330.884738px;}
.yed_c01402{bottom:331.641668px;}
.yee_c01402{bottom:332.174602px;}
.yef_c01402{bottom:332.578958px;}
.yf0_c01402{bottom:333.295433px;}
.yf1_c01402{bottom:334.239585px;}
.y101_c01402{bottom:351.540000px;}
.yd6_c01402{bottom:358.556618px;}
.yd7_c01402{bottom:360.051607px;}
.yd8_c01402{bottom:360.437797px;}
.yd9_c01402{bottom:361.521165px;}
.yda_c01402{bottom:362.461403px;}
.ydb_c01402{bottom:362.847998px;}
.ydc_c01402{bottom:365.045183px;}
.ydd_c01402{bottom:365.437058px;}
.yde_c01402{bottom:366.900630px;}
.ydf_c01402{bottom:367.300605px;}
.ye0_c01402{bottom:368.392740px;}
.ye1_c01402{bottom:369.324277px;}
.ye2_c01402{bottom:370.090177px;}
.y100_c01402{bottom:370.440000px;}
.ycb_c01402{bottom:393.390022px;}
.ycc_c01402{bottom:394.308315px;}
.ycd_c01402{bottom:395.816955px;}
.yce_c01402{bottom:396.181530px;}
.ycf_c01402{bottom:397.108883px;}
.yd0_c01402{bottom:398.223600px;}
.yd1_c01402{bottom:398.770320px;}
.yff_c01402{bottom:399.330000px;}
.yd2_c01402{bottom:399.721530px;}
.yd3_c01402{bottom:401.365267px;}
.yd4_c01402{bottom:402.503370px;}
.yd5_c01402{bottom:403.806547px;}
.yfe_c01402{bottom:417.150000px;}
.yc1_c01402{bottom:432.003000px;}
.yc2_c01402{bottom:432.825735px;}
.yc3_c01402{bottom:433.448872px;}
.yc4_c01402{bottom:435.097335px;}
.yc5_c01402{bottom:435.591615px;}
.yc6_c01402{bottom:436.074240px;}
.yc7_c01402{bottom:437.880337px;}
.yc8_c01402{bottom:438.370523px;}
.yc9_c01402{bottom:438.855915px;}
.yca_c01402{bottom:439.850302px;}
.yfd_c01402{bottom:448.200000px;}
.yc0_c01402{bottom:491.395500px;}
.yb7_c01402{bottom:538.654500px;}
.yb8_c01402{bottom:540.622395px;}
.yb9_c01402{bottom:541.176867px;}
.yba_c01402{bottom:542.790657px;}
.ybb_c01402{bottom:543.174786px;}
.ybc_c01402{bottom:544.161285px;}
.ybd_c01402{bottom:545.342589px;}
.ybe_c01402{bottom:545.911560px;}
.ybf_c01402{bottom:547.161417px;}
.yb6_c01402{bottom:573.435290px;}
.yb5_c01402{bottom:573.435901px;}
.ya7_c01402{bottom:607.468442px;}
.ya8_c01402{bottom:608.542629px;}
.ya9_c01402{bottom:609.002920px;}
.yaa_c01402{bottom:609.472753px;}
.yab_c01402{bottom:609.767289px;}
.yac_c01402{bottom:610.232935px;}
.yad_c01402{bottom:611.299315px;}
.yae_c01402{bottom:611.757792px;}
.yaf_c01402{bottom:612.529127px;}
.yb0_c01402{bottom:613.274382px;}
.yb1_c01402{bottom:613.883255px;}
.yb2_c01402{bottom:614.812971px;}
.yb3_c01402{bottom:615.279000px;}
.yb4_c01402{bottom:616.666352px;}
.y99_c01402{bottom:642.843462px;}
.y9a_c01402{bottom:644.027673px;}
.y9b_c01402{bottom:644.568576px;}
.y9c_c01402{bottom:645.601009px;}
.y9d_c01402{bottom:646.158772px;}
.y9e_c01402{bottom:647.186030px;}
.y9f_c01402{bottom:647.887053px;}
.ya0_c01402{bottom:648.410846px;}
.ya1_c01402{bottom:649.965236px;}
.ya2_c01402{bottom:650.670033px;}
.ya3_c01402{bottom:651.718459px;}
.ya4_c01402{bottom:652.094682px;}
.ya5_c01402{bottom:653.136601px;}
.ya6_c01402{bottom:653.862619px;}
.y8d_c01402{bottom:677.409776px;}
.y8e_c01402{bottom:678.722614px;}
.y8f_c01402{bottom:679.371348px;}
.y90_c01402{bottom:681.768977px;}
.y91_c01402{bottom:682.460149px;}
.y92_c01402{bottom:684.178840px;}
.y93_c01402{bottom:686.801484px;}
.y94_c01402{bottom:687.240574px;}
.y95_c01402{bottom:688.110192px;}
.y96_c01402{bottom:688.514467px;}
.y97_c01402{bottom:688.984399px;}
.y98_c01402{bottom:689.854552px;}
.y81_c01402{bottom:713.322561px;}
.y82_c01402{bottom:713.593036px;}
.y83_c01402{bottom:714.881006px;}
.y84_c01402{bottom:715.589925px;}
.y85_c01402{bottom:716.012210px;}
.y86_c01402{bottom:717.992020px;}
.y87_c01402{bottom:718.428037px;}
.y88_c01402{bottom:719.259393px;}
.y89_c01402{bottom:719.561159px;}
.y8a_c01402{bottom:720.687538px;}
.y8b_c01402{bottom:721.263222px;}
.y8c_c01402{bottom:721.856697px;}
.y76_c01402{bottom:748.429083px;}
.y77_c01402{bottom:749.681648px;}
.y78_c01402{bottom:750.373338px;}
.y79_c01402{bottom:750.900675px;}
.y7a_c01402{bottom:752.633036px;}
.y7b_c01402{bottom:753.164835px;}
.y7c_c01402{bottom:753.851553px;}
.y7d_c01402{bottom:755.078740px;}
.y7e_c01402{bottom:755.589447px;}
.y7f_c01402{bottom:757.183213px;}
.y80_c01402{bottom:757.533625px;}
.y67_c01402{bottom:784.613974px;}
.y68_c01402{bottom:785.541333px;}
.y69_c01402{bottom:786.450331px;}
.y6a_c01402{bottom:787.206636px;}
.y6b_c01402{bottom:787.561341px;}
.y6c_c01402{bottom:789.795804px;}
.y6d_c01402{bottom:790.173306px;}
.y6e_c01402{bottom:791.092020px;}
.y6f_c01402{bottom:792.036489px;}
.y70_c01402{bottom:792.780196px;}
.y71_c01402{bottom:793.511078px;}
.y72_c01402{bottom:794.268785px;}
.y73_c01402{bottom:794.599137px;}
.y74_c01402{bottom:795.012645px;}
.y75_c01402{bottom:795.747249px;}
.y5b_c01402{bottom:819.178666px;}
.y5c_c01402{bottom:819.728396px;}
.y5d_c01402{bottom:821.195028px;}
.y5e_c01402{bottom:822.144393px;}
.y5f_c01402{bottom:823.631349px;}
.y60_c01402{bottom:823.990720px;}
.y61_c01402{bottom:824.931212px;}
.y62_c01402{bottom:826.029088px;}
.y63_c01402{bottom:826.566424px;}
.y64_c01402{bottom:827.502326px;}
.y65_c01402{bottom:829.173774px;}
.y66_c01402{bottom:830.325787px;}
.y50_c01402{bottom:858.064500px;}
.y51_c01402{bottom:858.418032px;}
.y52_c01402{bottom:858.785181px;}
.y53_c01402{bottom:859.542505px;}
.y54_c01402{bottom:861.002763px;}
.y55_c01402{bottom:862.866430px;}
.y56_c01402{bottom:863.435743px;}
.y57_c01402{bottom:863.968898px;}
.y58_c01402{bottom:866.015910px;}
.y59_c01402{bottom:866.589737px;}
.y5a_c01402{bottom:867.144107px;}
.y47_c01402{bottom:960.934500px;}
.y48_c01402{bottom:962.494911px;}
.y49_c01402{bottom:963.904095px;}
.y4a_c01402{bottom:965.663658px;}
.y4b_c01402{bottom:966.057507px;}
.y4c_c01402{bottom:967.039335px;}
.y4d_c01402{bottom:968.215779px;}
.y4e_c01402{bottom:968.790042px;}
.y4f_c01402{bottom:970.234191px;}
.y39_c01402{bottom:996.008640px;}
.y3a_c01402{bottom:996.979500px;}
.y3b_c01402{bottom:997.588650px;}
.y3c_c01402{bottom:999.148110px;}
.y3d_c01402{bottom:999.766560px;}
.y3e_c01402{bottom:1000.329480px;}
.y3f_c01402{bottom:1000.931970px;}
.y40_c01402{bottom:1002.482370px;}
.y41_c01402{bottom:1003.096410px;}
.y42_c01402{bottom:1003.874820px;}
.y43_c01402{bottom:1004.625930px;}
.y44_c01402{bottom:1005.224400px;}
.y45_c01402{bottom:1006.445070px;}
.y46_c01402{bottom:1007.801520px;}
.y2b_c01402{bottom:1031.117790px;}
.y2c_c01402{bottom:1031.738280px;}
.y2d_c01402{bottom:1032.364590px;}
.y2e_c01402{bottom:1033.820580px;}
.y2f_c01402{bottom:1034.647650px;}
.y30_c01402{bottom:1035.288540px;}
.y31_c01402{bottom:1036.920240px;}
.y32_c01402{bottom:1037.557020px;}
.y33_c01402{bottom:1038.384000px;}
.y34_c01402{bottom:1040.656080px;}
.y35_c01402{bottom:1041.101790px;}
.y36_c01402{bottom:1042.308060px;}
.y37_c01402{bottom:1043.383920px;}
.y38_c01402{bottom:1043.976900px;}
.y1e_c01402{bottom:1067.033850px;}
.y1f_c01402{bottom:1068.695520px;}
.y20_c01402{bottom:1069.133160px;}
.y21_c01402{bottom:1070.145180px;}
.y22_c01402{bottom:1072.233300px;}
.y23_c01402{bottom:1073.228610px;}
.y24_c01402{bottom:1074.275010px;}
.y25_c01402{bottom:1074.700950px;}
.y26_c01402{bottom:1075.552500px;}
.y27_c01402{bottom:1076.155260px;}
.y28_c01402{bottom:1076.790000px;}
.y29_c01402{bottom:1078.856400px;}
.y2a_c01402{bottom:1079.497560px;}
.ye_c01402{bottom:1102.138560px;}
.yf_c01402{bottom:1103.363400px;}
.y10_c01402{bottom:1103.785170px;}
.y11_c01402{bottom:1104.611220px;}
.y12_c01402{bottom:1105.418610px;}
.y13_c01402{bottom:1106.243130px;}
.y14_c01402{bottom:1107.105360px;}
.y15_c01402{bottom:1107.717060px;}
.y16_c01402{bottom:1108.983810px;}
.y17_c01402{bottom:1109.804460px;}
.y18_c01402{bottom:1110.835860px;}
.y19_c01402{bottom:1111.248540px;}
.y1a_c01402{bottom:1112.079900px;}
.y1b_c01402{bottom:1112.688060px;}
.y1c_c01402{bottom:1113.300780px;}
.y1d_c01402{bottom:1114.168410px;}
.y2_c01402{bottom:1138.324500px;}
.y3_c01402{bottom:1139.406330px;}
.y4_c01402{bottom:1141.150500px;}
.y5_c01402{bottom:1141.809480px;}
.y6_c01402{bottom:1143.768630px;}
.y7_c01402{bottom:1144.644780px;}
.y8_c01402{bottom:1145.276790px;}
.y9_c01402{bottom:1146.626100px;}
.ya_c01402{bottom:1147.480860px;}
.yb_c01402{bottom:1148.571660px;}
.yc_c01402{bottom:1149.222870px;}
.yd_c01402{bottom:1151.411910px;}
.y1_c01402{bottom:1216.086000px;}
.h17_c01402{height:18.000000px;}
.h15_c01402{height:18.002916px;}
.hb_c01402{height:24.000000px;}
.h13_c01402{height:36.000000px;}
.h2_c01402{height:72.000000px;}
.hc_c01402{height:72.008100px;}
.h8_c01402{height:72.010403px;}
.h6_c01402{height:72.011663px;}
.h3_c01402{height:72.014399px;}
.h16_c01402{height:72.015874px;}
.he_c01402{height:78.008775px;}
.h7_c01402{height:78.011270px;}
.ha_c01402{height:78.012635px;}
.h18_c01402{height:78.014078px;}
.h11_c01402{height:84.000000px;}
.hd_c01402{height:84.009449px;}
.h9_c01402{height:84.012137px;}
.h4_c01402{height:84.016798px;}
.h12_c01402{height:90.000000px;}
.h14_c01402{height:90.013004px;}
.h5_c01402{height:90.017998px;}
.h10_c01402{height:108.000000px;}
.hf_c01402{height:132.000000px;}
.h1_c01402{height:1250.250000px;}
.h0_c01402{height:1250.370000px;}
.w1_c01402{width:907.500000px;}
.w0_c01402{width:907.740000px;}
.x0_c01402{left:0.000000px;}
.xd1_c01402{left:3.510000px;}
.xb1_c01402{left:8.370000px;}
.xb2_c01402{left:9.450000px;}
.xd2_c01402{left:13.369500px;}
.x4_c01402{left:150.876000px;}
.x32_c01402{left:152.803950px;}
.x4a_c01402{left:156.233493px;}
.x65_c01402{left:157.791477px;}
.x77_c01402{left:160.042926px;}
.x99_c01402{left:161.955787px;}
.x9f_c01402{left:163.051417px;}
.xa5_c01402{left:164.403765px;}
.xb3_c01402{left:167.107500px;}
.xcd_c01402{left:169.072500px;}
.xd3_c01402{left:171.468000px;}
.x66_c01402{left:178.644405px;}
.x25_c01402{left:184.409280px;}
.xba_c01402{left:186.504504px;}
.x4b_c01402{left:188.570493px;}
.xc5_c01402{left:198.104508px;}
.xc9_c01402{left:201.685500px;}
.x8a_c01402{left:203.842679px;}
.x5_c01402{left:204.967500px;}
.x33_c01402{left:206.749110px;}
.xa6_c01402{left:208.428937px;}
.xbb_c01402{left:209.746294px;}
.x55_c01402{left:211.095513px;}
.x10_c01402{left:216.221070px;}
.x26_c01402{left:217.375440px;}
.xc6_c01402{left:222.164232px;}
.x6d_c01402{left:223.283928px;}
.xab_c01402{left:230.270475px;}
.x5f_c01402{left:233.729991px;}
.x80_c01402{left:235.098557px;}
.x11_c01402{left:238.435020px;}
.x34_c01402{left:240.582960px;}
.xa0_c01402{left:251.014785px;}
.xbc_c01402{left:253.175773px;}
.x6e_c01402{left:255.707771px;}
.x1d_c01402{left:261.911670px;}
.x42_c01402{left:264.829500px;}
.x78_c01402{left:267.786737px;}
.x8b_c01402{left:269.191500px;}
.x94_c01402{left:272.100000px;}
.xa1_c01402{left:273.760110px;}
.x4c_c01402{left:274.842993px;}
.x60_c01402{left:276.977231px;}
.xd4_c01402{left:278.425500px;}
.x12_c01402{left:281.913390px;}
.x43_c01402{left:285.625500px;}
.x6_c01402{left:292.176000px;}
.x27_c01402{left:294.001470px;}
.xbd_c01402{left:296.425252px;}
.xce_c01402{left:299.241000px;}
.x81_c01402{left:301.550448px;}
.x9a_c01402{left:304.747012px;}
.x44_c01402{left:307.222500px;}
.x56_c01402{left:309.054513px;}
.x1e_c01402{left:315.138720px;}
.x3c_c01402{left:317.239500px;}
.x82_c01402{left:322.583019px;}
.x7_c01402{left:325.125000px;}
.x9b_c01402{left:326.151360px;}
.x35_c01402{left:327.184410px;}
.xac_c01402{left:329.134005px;}
.x4d_c01402{left:330.687993px;}
.x67_c01402{left:332.295360px;}
.x28_c01402{left:337.530840px;}
.xbe_c01402{left:340.162231px;}
.x45_c01402{left:351.771000px;}
.x83_c01402{left:355.799202px;}
.x36_c01402{left:361.558290px;}
.x68_c01402{left:364.726053px;}
.x13_c01402{left:367.785600px;}
.x29_c01402{left:371.301030px;}
.xb4_c01402{left:372.337500px;}
.x6f_c01402{left:375.562151px;}
.x8c_c01402{left:378.519000px;}
.x9c_c01402{left:380.673217px;}
.xcf_c01402{left:385.617000px;}
.x37_c01402{left:392.855550px;}
.x8d_c01402{left:409.323000px;}
.x1_c01402{left:410.670000px;}
.x14_c01402{left:413.148000px;}
.x3d_c01402{left:414.993000px;}
.x4e_c01402{left:418.155993px;}
.x8_c01402{left:423.082500px;}
.x1f_c01402{left:425.021910px;}
.x38_c01402{left:426.356400px;}
.xbf_c01402{left:427.655715px;}
.x79_c01402{left:431.375016px;}
.x2_c01402{left:434.430000px;}
.x3e_c01402{left:436.873500px;}
.x4f_c01402{left:439.295493px;}
.x15_c01402{left:445.308630px;}
.xa7_c01402{left:448.417215px;}
.xc7_c01402{left:450.325860px;}
.x61_c01402{left:451.421189px;}
.x92_c01402{left:454.410000px;}
.x2a_c01402{left:457.162740px;}
.xad_c01402{left:459.237113px;}
.x57_c01402{left:461.358513px;}
.x84_c01402{left:464.649236px;}
.x9_c01402{left:466.890000px;}
.x93_c01402{left:468.180000px;}
.x7a_c01402{left:475.171256px;}
.x3_c01402{left:476.550000px;}
.x95_c01402{left:478.389000px;}
.xb5_c01402{left:482.166000px;}
.x58_c01402{left:483.564513px;}
.x2b_c01402{left:490.652400px;}
.x50_c01402{left:494.618493px;}
.x70_c01402{left:496.048005px;}
.xa_c01402{left:498.490500px;}
.xb6_c01402{left:503.799000px;}
.xd0_c01402{left:506.910000px;}
.x7b_c01402{left:507.924317px;}
.x16_c01402{left:511.947450px;}
.xae_c01402{left:514.151970px;}
.x69_c01402{left:517.019406px;}
.x85_c01402{left:519.730541px;}
.xc0_c01402{left:526.237555px;}
.x20_c01402{left:532.509570px;}
.x2c_c01402{left:534.177270px;}
.x59_c01402{left:537.606513px;}
.x96_c01402{left:543.516000px;}
.xa2_c01402{left:544.810987px;}
.x39_c01402{left:546.583200px;}
.x6a_c01402{left:550.522676px;}
.x17_c01402{left:555.155820px;}
.x3f_c01402{left:556.777500px;}
.x51_c01402{left:559.199493px;}
.xb_c01402{left:565.956000px;}
.xa3_c01402{left:567.835290px;}
.x62_c01402{left:571.064729px;}
.x86_c01402{left:572.924744px;}
.x8e_c01402{left:575.124000px;}
.xb7_c01402{left:579.717000px;}
.x46_c01402{left:580.785000px;}
.x40_c01402{left:588.681000px;}
.x3a_c01402{left:589.855440px;}
.x5a_c01402{left:593.163513px;}
.x21_c01402{left:599.760420px;}
.x63_c01402{left:602.959764px;}
.x7c_c01402{left:605.095974px;}
.xc_c01402{left:608.694000px;}
.x47_c01402{left:612.147000px;}
.x6b_c01402{left:614.518536px;}
.x87_c01402{left:616.419462px;}
.x71_c01402{left:627.196824px;}
.x18_c01402{left:631.111320px;}
.xa8_c01402{left:633.180157px;}
.xb8_c01402{left:634.216500px;}
.xc1_c01402{left:635.337778px;}
.x5b_c01402{left:636.911013px;}
.x8f_c01402{left:640.752000px;}
.xaf_c01402{left:644.547555px;}
.x52_c01402{left:645.860493px;}
.xca_c01402{left:647.248500px;}
.x72_c01402{left:649.142202px;}
.x2d_c01402{left:653.783670px;}
.xd_c01402{left:663.234000px;}
.x22_c01402{left:664.861710px;}
.xc2_c01402{left:667.828875px;}
.x41_c01402{left:668.911500px;}
.x90_c01402{left:672.361500px;}
.x19_c01402{left:674.855190px;}
.x2e_c01402{left:677.269650px;}
.x5c_c01402{left:679.904013px;}
.x88_c01402{left:682.847354px;}
.x73_c01402{left:692.617484px;}
.xe_c01402{left:695.794500px;}
.x9d_c01402{left:697.996200px;}
.x64_c01402{left:702.535947px;}
.x1a_c01402{left:706.838820px;}
.xa9_c01402{left:709.068885px;}
.x74_c01402{left:712.867964px;}
.x7d_c01402{left:714.669836px;}
.x89_c01402{left:716.086037px;}
.x5d_c01402{left:724.475013px;}
.x97_c01402{left:728.961000px;}
.x3b_c01402{left:732.623640px;}
.xcb_c01402{left:735.216000px;}
.x75_c01402{left:736.362765px;}
.x1b_c01402{left:739.125480px;}
.x2f_c01402{left:740.734410px;}
.x91_c01402{left:741.798000px;}
.x53_c01402{left:744.180993px;}
.xc3_c01402{left:755.724384px;}
.xb0_c01402{left:764.959433px;}
.x48_c01402{left:766.314000px;}
.x5e_c01402{left:768.231513px;}
.x23_c01402{left:773.658900px;}
.x9e_c01402{left:774.672405px;}
.xb9_c01402{left:776.239500px;}
.x76_c01402{left:779.869547px;}
.x1c_c01402{left:784.757880px;}
.x98_c01402{left:795.253500px;}
.x30_c01402{left:797.378550px;}
.x49_c01402{left:798.924000px;}
.x7e_c01402{left:803.297340px;}
.xf_c01402{left:805.246500px;}
.x24_c01402{left:807.367560px;}
.x54_c01402{left:811.946493px;}
.x6c_c01402{left:814.344128px;}
.xc4_c01402{left:821.107102px;}
.x31_c01402{left:828.603180px;}
.xaa_c01402{left:830.530740px;}
.xa4_c01402{left:841.535077px;}
.xc8_c01402{left:842.961878px;}
.x7f_c01402{left:848.652105px;}
.xcc_c01402{left:868.033500px;}
.xd5_c01402{left:903.960000px;}
@media print{
.v0_c01402{vertical-align:0.000000pt;}
.ls0_c01402{letter-spacing:0.000000pt;}
.ws0_c01402{word-spacing:0.000000pt;}
._0_c01402{width:40.569194pt;}
.fs15_c01402{font-size:16.000000pt;}
.fs13_c01402{font-size:16.002592pt;}
.fs9_c01402{font-size:21.333333pt;}
.fs11_c01402{font-size:32.000000pt;}
.fs0_c01402{font-size:64.000000pt;}
.fsa_c01402{font-size:64.007200pt;}
.fs6_c01402{font-size:64.009247pt;}
.fs4_c01402{font-size:64.010367pt;}
.fs1_c01402{font-size:64.012799pt;}
.fs14_c01402{font-size:64.014110pt;}
.fsc_c01402{font-size:69.341133pt;}
.fs5_c01402{font-size:69.343351pt;}
.fs8_c01402{font-size:69.344564pt;}
.fs16_c01402{font-size:69.345847pt;}
.fsf_c01402{font-size:74.666667pt;}
.fsb_c01402{font-size:74.675066pt;}
.fs7_c01402{font-size:74.677455pt;}
.fs2_c01402{font-size:74.681599pt;}
.fs10_c01402{font-size:80.000000pt;}
.fs12_c01402{font-size:80.011559pt;}
.fs3_c01402{font-size:80.015998pt;}
.fse_c01402{font-size:96.000000pt;}
.fsd_c01402{font-size:117.333333pt;}
.y0_c01402{bottom:0.000000pt;}
.y148_c01402{bottom:48.966667pt;}
.y149_c01402{bottom:49.126343pt;}
.y14a_c01402{bottom:51.796451pt;}
.y14b_c01402{bottom:52.681369pt;}
.y14c_c01402{bottom:53.602844pt;}
.y147_c01402{bottom:69.120000pt;}
.y141_c01402{bottom:81.606667pt;}
.y142_c01402{bottom:82.605007pt;}
.y143_c01402{bottom:84.036479pt;}
.y144_c01402{bottom:85.648831pt;}
.y145_c01402{bottom:86.269451pt;}
.y146_c01402{bottom:87.912967pt;}
.y140_c01402{bottom:110.793405pt;}
.y131_c01402{bottom:130.324000pt;}
.y132_c01402{bottom:130.881880pt;}
.y133_c01402{bottom:131.720440pt;}
.y134_c01402{bottom:132.941872pt;}
.y135_c01402{bottom:133.650304pt;}
.y136_c01402{bottom:134.350504pt;}
.y137_c01402{bottom:135.561232pt;}
.y138_c01402{bottom:136.614520pt;}
.y139_c01402{bottom:137.508760pt;}
.y13a_c01402{bottom:138.010888pt;}
.y13b_c01402{bottom:138.537928pt;}
.y13c_c01402{bottom:139.418368pt;}
.y13d_c01402{bottom:139.932448pt;}
.y13e_c01402{bottom:140.645200pt;}
.y13f_c01402{bottom:141.543448pt;}
.y123_c01402{bottom:162.472643pt;}
.y124_c01402{bottom:162.859539pt;}
.y125_c01402{bottom:163.159089pt;}
.y126_c01402{bottom:163.684181pt;}
.y127_c01402{bottom:164.224200pt;}
.y128_c01402{bottom:165.588635pt;}
.y129_c01402{bottom:165.998689pt;}
.y12a_c01402{bottom:166.801991pt;}
.y12b_c01402{bottom:167.235159pt;}
.y12c_c01402{bottom:168.034965pt;}
.y12d_c01402{bottom:168.313741pt;}
.y12e_c01402{bottom:169.258756pt;}
.y12f_c01402{bottom:169.665384pt;}
.y130_c01402{bottom:170.884887pt;}
.y14e_c01402{bottom:180.000000pt;}
.y14d_c01402{bottom:187.200000pt;}
.y114_c01402{bottom:193.918073pt;}
.y115_c01402{bottom:194.170680pt;}
.y116_c01402{bottom:194.480544pt;}
.y117_c01402{bottom:195.059456pt;}
.y118_c01402{bottom:195.635648pt;}
.y119_c01402{bottom:196.219207pt;}
.y11a_c01402{bottom:197.385285pt;}
.y11b_c01402{bottom:198.700249pt;}
.y11c_c01402{bottom:199.869547pt;}
.y11d_c01402{bottom:200.154152pt;}
.y11e_c01402{bottom:200.587779pt;}
.y11f_c01402{bottom:201.043268pt;}
.y120_c01402{bottom:201.758599pt;}
.y121_c01402{bottom:202.338123pt;}
.y122_c01402{bottom:202.630571pt;}
.y106_c01402{bottom:225.364000pt;}
.y107_c01402{bottom:226.832029pt;}
.y108_c01402{bottom:227.143107pt;}
.y109_c01402{bottom:227.791872pt;}
.y10a_c01402{bottom:228.465253pt;}
.y10b_c01402{bottom:230.124884pt;}
.y10c_c01402{bottom:230.451783pt;}
.y10d_c01402{bottom:231.598988pt;}
.y10e_c01402{bottom:232.117284pt;}
.y10f_c01402{bottom:232.422536pt;}
.y110_c01402{bottom:233.100700pt;}
.y111_c01402{bottom:233.911940pt;}
.y112_c01402{bottom:234.568661pt;}
.y113_c01402{bottom:234.904151pt;}
.y105_c01402{bottom:253.200000pt;}
.yf2_c01402{bottom:255.353067pt;}
.yf3_c01402{bottom:256.336347pt;}
.yf4_c01402{bottom:256.997600pt;}
.yf5_c01402{bottom:257.471260pt;}
.yf6_c01402{bottom:257.830567pt;}
.yf7_c01402{bottom:258.458340pt;}
.yf8_c01402{bottom:259.795993pt;}
.yf9_c01402{bottom:260.625547pt;}
.yfa_c01402{bottom:262.098100pt;}
.yfb_c01402{bottom:262.596207pt;}
.yfc_c01402{bottom:264.416413pt;}
.y104_c01402{bottom:272.160000pt;}
.y103_c01402{bottom:282.240000pt;}
.ye3_c01402{bottom:287.033227pt;}
.ye4_c01402{bottom:287.698913pt;}
.ye5_c01402{bottom:288.670380pt;}
.ye6_c01402{bottom:289.189033pt;}
.ye7_c01402{bottom:289.662693pt;}
.ye8_c01402{bottom:290.486387pt;}
.ye9_c01402{bottom:291.326853pt;}
.yea_c01402{bottom:291.972493pt;}
.yeb_c01402{bottom:292.638060pt;}
.y102_c01402{bottom:293.280000pt;}
.yec_c01402{bottom:294.119767pt;}
.yed_c01402{bottom:294.792593pt;}
.yee_c01402{bottom:295.266313pt;}
.yef_c01402{bottom:295.625740pt;}
.yf0_c01402{bottom:296.262607pt;}
.yf1_c01402{bottom:297.101853pt;}
.y101_c01402{bottom:312.480000pt;}
.yd6_c01402{bottom:318.716993pt;}
.yd7_c01402{bottom:320.045873pt;}
.yd8_c01402{bottom:320.389153pt;}
.yd9_c01402{bottom:321.352147pt;}
.yda_c01402{bottom:322.187913pt;}
.ydb_c01402{bottom:322.531553pt;}
.ydc_c01402{bottom:324.484607pt;}
.ydd_c01402{bottom:324.832940pt;}
.yde_c01402{bottom:326.133893pt;}
.ydf_c01402{bottom:326.489427pt;}
.ye0_c01402{bottom:327.460213pt;}
.ye1_c01402{bottom:328.288247pt;}
.ye2_c01402{bottom:328.969047pt;}
.y100_c01402{bottom:329.280000pt;}
.ycb_c01402{bottom:349.680020pt;}
.ycc_c01402{bottom:350.496280pt;}
.ycd_c01402{bottom:351.837293pt;}
.yce_c01402{bottom:352.161360pt;}
.ycf_c01402{bottom:352.985673pt;}
.yd0_c01402{bottom:353.976533pt;}
.yd1_c01402{bottom:354.462507pt;}
.yff_c01402{bottom:354.960000pt;}
.yd2_c01402{bottom:355.308027pt;}
.yd3_c01402{bottom:356.769127pt;}
.yd4_c01402{bottom:357.780773pt;}
.yd5_c01402{bottom:358.939153pt;}
.yfe_c01402{bottom:370.800000pt;}
.yc1_c01402{bottom:384.002667pt;}
.yc2_c01402{bottom:384.733987pt;}
.yc3_c01402{bottom:385.287887pt;}
.yc4_c01402{bottom:386.753187pt;}
.yc5_c01402{bottom:387.192547pt;}
.yc6_c01402{bottom:387.621547pt;}
.yc7_c01402{bottom:389.226967pt;}
.yc8_c01402{bottom:389.662687pt;}
.yc9_c01402{bottom:390.094147pt;}
.yca_c01402{bottom:390.978047pt;}
.yfd_c01402{bottom:398.400000pt;}
.yc0_c01402{bottom:436.796000pt;}
.yb7_c01402{bottom:478.804000pt;}
.yb8_c01402{bottom:480.553240pt;}
.yb9_c01402{bottom:481.046104pt;}
.yba_c01402{bottom:482.480584pt;}
.ybb_c01402{bottom:482.822032pt;}
.ybc_c01402{bottom:483.698920pt;}
.ybd_c01402{bottom:484.748968pt;}
.ybe_c01402{bottom:485.254720pt;}
.ybf_c01402{bottom:486.365704pt;}
.yb6_c01402{bottom:509.720257pt;}
.yb5_c01402{bottom:509.720801pt;}
.ya7_c01402{bottom:539.971948pt;}
.ya8_c01402{bottom:540.926781pt;}
.ya9_c01402{bottom:541.335929pt;}
.yaa_c01402{bottom:541.753559pt;}
.yab_c01402{bottom:542.015368pt;}
.yac_c01402{bottom:542.429276pt;}
.yad_c01402{bottom:543.377169pt;}
.yae_c01402{bottom:543.784704pt;}
.yaf_c01402{bottom:544.470335pt;}
.yb0_c01402{bottom:545.132784pt;}
.yb1_c01402{bottom:545.674004pt;}
.yb2_c01402{bottom:546.500419pt;}
.yb3_c01402{bottom:546.914667pt;}
.yb4_c01402{bottom:548.147868pt;}
.y99_c01402{bottom:571.416411pt;}
.y9a_c01402{bottom:572.469043pt;}
.y9b_c01402{bottom:572.949845pt;}
.y9c_c01402{bottom:573.867564pt;}
.y9d_c01402{bottom:574.363353pt;}
.y9e_c01402{bottom:575.276471pt;}
.y9f_c01402{bottom:575.899603pt;}
.ya0_c01402{bottom:576.365196pt;}
.ya1_c01402{bottom:577.746876pt;}
.ya2_c01402{bottom:578.373363pt;}
.ya3_c01402{bottom:579.305297pt;}
.ya4_c01402{bottom:579.639717pt;}
.ya5_c01402{bottom:580.565868pt;}
.ya6_c01402{bottom:581.211217pt;}
.y8d_c01402{bottom:602.142023pt;}
.y8e_c01402{bottom:603.308991pt;}
.y8f_c01402{bottom:603.885643pt;}
.y90_c01402{bottom:606.016868pt;}
.y91_c01402{bottom:606.631244pt;}
.y92_c01402{bottom:608.158969pt;}
.y93_c01402{bottom:610.490208pt;}
.y94_c01402{bottom:610.880511pt;}
.y95_c01402{bottom:611.653504pt;}
.y96_c01402{bottom:612.012860pt;}
.y97_c01402{bottom:612.430577pt;}
.y98_c01402{bottom:613.204047pt;}
.y81_c01402{bottom:634.064499pt;}
.y82_c01402{bottom:634.304921pt;}
.y83_c01402{bottom:635.449783pt;}
.y84_c01402{bottom:636.079933pt;}
.y85_c01402{bottom:636.455297pt;}
.y86_c01402{bottom:638.215129pt;}
.y87_c01402{bottom:638.602700pt;}
.y88_c01402{bottom:639.341683pt;}
.y89_c01402{bottom:639.609919pt;}
.y8a_c01402{bottom:640.611145pt;}
.y8b_c01402{bottom:641.122864pt;}
.y8c_c01402{bottom:641.650397pt;}
.y76_c01402{bottom:665.270296pt;}
.y77_c01402{bottom:666.383687pt;}
.y78_c01402{bottom:666.998523pt;}
.y79_c01402{bottom:667.467267pt;}
.y7a_c01402{bottom:669.007143pt;}
.y7b_c01402{bottom:669.479853pt;}
.y7c_c01402{bottom:670.090269pt;}
.y7d_c01402{bottom:671.181103pt;}
.y7e_c01402{bottom:671.635064pt;}
.y7f_c01402{bottom:673.051745pt;}
.y80_c01402{bottom:673.363223pt;}
.y67_c01402{bottom:697.434644pt;}
.y68_c01402{bottom:698.258963pt;}
.y69_c01402{bottom:699.066961pt;}
.y6a_c01402{bottom:699.739232pt;}
.y6b_c01402{bottom:700.054525pt;}
.y6c_c01402{bottom:702.040715pt;}
.y6d_c01402{bottom:702.376272pt;}
.y6e_c01402{bottom:703.192907pt;}
.y6f_c01402{bottom:704.032435pt;}
.y70_c01402{bottom:704.693508pt;}
.y71_c01402{bottom:705.343180pt;}
.y72_c01402{bottom:706.016697pt;}
.y73_c01402{bottom:706.310344pt;}
.y74_c01402{bottom:706.677907pt;}
.y75_c01402{bottom:707.330888pt;}
.y5b_c01402{bottom:728.158815pt;}
.y5c_c01402{bottom:728.647463pt;}
.y5d_c01402{bottom:729.951136pt;}
.y5e_c01402{bottom:730.795016pt;}
.y5f_c01402{bottom:732.116755pt;}
.y60_c01402{bottom:732.436196pt;}
.y61_c01402{bottom:733.272188pt;}
.y62_c01402{bottom:734.248079pt;}
.y63_c01402{bottom:734.725711pt;}
.y64_c01402{bottom:735.557623pt;}
.y65_c01402{bottom:737.043355pt;}
.y66_c01402{bottom:738.067367pt;}
.y50_c01402{bottom:762.724000pt;}
.y51_c01402{bottom:763.038251pt;}
.y52_c01402{bottom:763.364605pt;}
.y53_c01402{bottom:764.037783pt;}
.y54_c01402{bottom:765.335789pt;}
.y55_c01402{bottom:766.992383pt;}
.y56_c01402{bottom:767.498439pt;}
.y57_c01402{bottom:767.972353pt;}
.y58_c01402{bottom:769.791920pt;}
.y59_c01402{bottom:770.301988pt;}
.y5a_c01402{bottom:770.794761pt;}
.y47_c01402{bottom:854.164000pt;}
.y48_c01402{bottom:855.551032pt;}
.y49_c01402{bottom:856.803640pt;}
.y4a_c01402{bottom:858.367696pt;}
.y4b_c01402{bottom:858.717784pt;}
.y4c_c01402{bottom:859.590520pt;}
.y4d_c01402{bottom:860.636248pt;}
.y4e_c01402{bottom:861.146704pt;}
.y4f_c01402{bottom:862.430392pt;}
.y39_c01402{bottom:885.341013pt;}
.y3a_c01402{bottom:886.204000pt;}
.y3b_c01402{bottom:886.745467pt;}
.y3c_c01402{bottom:888.131653pt;}
.y3d_c01402{bottom:888.681387pt;}
.y3e_c01402{bottom:889.181760pt;}
.y3f_c01402{bottom:889.717307pt;}
.y40_c01402{bottom:891.095440pt;}
.y41_c01402{bottom:891.641253pt;}
.y42_c01402{bottom:892.333173pt;}
.y43_c01402{bottom:893.000827pt;}
.y44_c01402{bottom:893.532800pt;}
.y45_c01402{bottom:894.617840pt;}
.y46_c01402{bottom:895.823573pt;}
.y2b_c01402{bottom:916.549147pt;}
.y2c_c01402{bottom:917.100693pt;}
.y2d_c01402{bottom:917.657413pt;}
.y2e_c01402{bottom:918.951627pt;}
.y2f_c01402{bottom:919.686800pt;}
.y30_c01402{bottom:920.256480pt;}
.y31_c01402{bottom:921.706880pt;}
.y32_c01402{bottom:922.272907pt;}
.y33_c01402{bottom:923.008000pt;}
.y34_c01402{bottom:925.027627pt;}
.y35_c01402{bottom:925.423813pt;}
.y36_c01402{bottom:926.496053pt;}
.y37_c01402{bottom:927.452373pt;}
.y38_c01402{bottom:927.979467pt;}
.y1e_c01402{bottom:948.474533pt;}
.y1f_c01402{bottom:949.951573pt;}
.y20_c01402{bottom:950.340587pt;}
.y21_c01402{bottom:951.240160pt;}
.y22_c01402{bottom:953.096267pt;}
.y23_c01402{bottom:953.980987pt;}
.y24_c01402{bottom:954.911120pt;}
.y25_c01402{bottom:955.289733pt;}
.y26_c01402{bottom:956.046667pt;}
.y27_c01402{bottom:956.582453pt;}
.y28_c01402{bottom:957.146667pt;}
.y29_c01402{bottom:958.983467pt;}
.y2a_c01402{bottom:959.553387pt;}
.ye_c01402{bottom:979.678720pt;}
.yf_c01402{bottom:980.767467pt;}
.y10_c01402{bottom:981.142373pt;}
.y11_c01402{bottom:981.876640pt;}
.y12_c01402{bottom:982.594320pt;}
.y13_c01402{bottom:983.327227pt;}
.y14_c01402{bottom:984.093653pt;}
.y15_c01402{bottom:984.637387pt;}
.y16_c01402{bottom:985.763387pt;}
.y17_c01402{bottom:986.492853pt;}
.y18_c01402{bottom:987.409653pt;}
.y19_c01402{bottom:987.776480pt;}
.y1a_c01402{bottom:988.515467pt;}
.y1b_c01402{bottom:989.056053pt;}
.y1c_c01402{bottom:989.600693pt;}
.y1d_c01402{bottom:990.371920pt;}
.y2_c01402{bottom:1011.844000pt;}
.y3_c01402{bottom:1012.805627pt;}
.y4_c01402{bottom:1014.356000pt;}
.y5_c01402{bottom:1014.941760pt;}
.y6_c01402{bottom:1016.683227pt;}
.y7_c01402{bottom:1017.462027pt;}
.y8_c01402{bottom:1018.023813pt;}
.y9_c01402{bottom:1019.223200pt;}
.ya_c01402{bottom:1019.982987pt;}
.yb_c01402{bottom:1020.952587pt;}
.yc_c01402{bottom:1021.531440pt;}
.yd_c01402{bottom:1023.477253pt;}
.y1_c01402{bottom:1080.965333pt;}
.h17_c01402{height:16.000000pt;}
.h15_c01402{height:16.002592pt;}
.hb_c01402{height:21.333333pt;}
.h13_c01402{height:32.000000pt;}
.h2_c01402{height:64.000000pt;}
.hc_c01402{height:64.007200pt;}
.h8_c01402{height:64.009247pt;}
.h6_c01402{height:64.010367pt;}
.h3_c01402{height:64.012799pt;}
.h16_c01402{height:64.014110pt;}
.he_c01402{height:69.341133pt;}
.h7_c01402{height:69.343351pt;}
.ha_c01402{height:69.344564pt;}
.h18_c01402{height:69.345847pt;}
.h11_c01402{height:74.666667pt;}
.hd_c01402{height:74.675066pt;}
.h9_c01402{height:74.677455pt;}
.h4_c01402{height:74.681599pt;}
.h12_c01402{height:80.000000pt;}
.h14_c01402{height:80.011559pt;}
.h5_c01402{height:80.015998pt;}
.h10_c01402{height:96.000000pt;}
.hf_c01402{height:117.333333pt;}
.h1_c01402{height:1111.333333pt;}
.h0_c01402{height:1111.440000pt;}
.w1_c01402{width:806.666667pt;}
.w0_c01402{width:806.880000pt;}
.x0_c01402{left:0.000000pt;}
.xd1_c01402{left:3.120000pt;}
.xb1_c01402{left:7.440000pt;}
.xb2_c01402{left:8.400000pt;}
.xd2_c01402{left:11.884000pt;}
.x4_c01402{left:134.112000pt;}
.x32_c01402{left:135.825733pt;}
.x4a_c01402{left:138.874216pt;}
.x65_c01402{left:140.259091pt;}
.x77_c01402{left:142.260379pt;}
.x99_c01402{left:143.960700pt;}
.x9f_c01402{left:144.934593pt;}
.xa5_c01402{left:146.136680pt;}
.xb3_c01402{left:148.540000pt;}
.xcd_c01402{left:150.286667pt;}
.xd3_c01402{left:152.416000pt;}
.x66_c01402{left:158.795027pt;}
.x25_c01402{left:163.919360pt;}
.xba_c01402{left:165.781781pt;}
.x4b_c01402{left:167.618216pt;}
.xc5_c01402{left:176.092896pt;}
.xc9_c01402{left:179.276000pt;}
.x8a_c01402{left:181.193492pt;}
.x5_c01402{left:182.193333pt;}
.x33_c01402{left:183.776987pt;}
.xa6_c01402{left:185.270167pt;}
.xbb_c01402{left:186.441151pt;}
.x55_c01402{left:187.640456pt;}
.x10_c01402{left:192.196507pt;}
.x26_c01402{left:193.222613pt;}
.xc6_c01402{left:197.479317pt;}
.x6d_c01402{left:198.474603pt;}
.xab_c01402{left:204.684867pt;}
.x5f_c01402{left:207.759992pt;}
.x80_c01402{left:208.976495pt;}
.x11_c01402{left:211.942240pt;}
.x34_c01402{left:213.851520pt;}
.xa0_c01402{left:223.124253pt;}
.xbc_c01402{left:225.045132pt;}
.x6e_c01402{left:227.295796pt;}
.x1d_c01402{left:232.810373pt;}
.x42_c01402{left:235.404000pt;}
.x78_c01402{left:238.032655pt;}
.x8b_c01402{left:239.281333pt;}
.x94_c01402{left:241.866667pt;}
.xa1_c01402{left:243.342320pt;}
.x4c_c01402{left:244.304883pt;}
.x60_c01402{left:246.201983pt;}
.xd4_c01402{left:247.489333pt;}
.x12_c01402{left:250.589680pt;}
.x43_c01402{left:253.889333pt;}
.x6_c01402{left:259.712000pt;}
.x27_c01402{left:261.334640pt;}
.xbd_c01402{left:263.489113pt;}
.xce_c01402{left:265.992000pt;}
.x81_c01402{left:268.044843pt;}
.x9a_c01402{left:270.886233pt;}
.x44_c01402{left:273.086667pt;}
.x56_c01402{left:274.715123pt;}
.x1e_c01402{left:280.123307pt;}
.x3c_c01402{left:281.990667pt;}
.x82_c01402{left:286.740461pt;}
.x7_c01402{left:289.000000pt;}
.x9b_c01402{left:289.912320pt;}
.x35_c01402{left:290.830587pt;}
.xac_c01402{left:292.563560pt;}
.x4d_c01402{left:293.944883pt;}
.x67_c01402{left:295.373653pt;}
.x28_c01402{left:300.027413pt;}
.xbe_c01402{left:302.366428pt;}
.x45_c01402{left:312.685333pt;}
.x83_c01402{left:316.265957pt;}
.x36_c01402{left:321.385147pt;}
.x68_c01402{left:324.200936pt;}
.x13_c01402{left:326.920533pt;}
.x29_c01402{left:330.045360pt;}
.xb4_c01402{left:330.966667pt;}
.x6f_c01402{left:333.833023pt;}
.x8c_c01402{left:336.461333pt;}
.x9c_c01402{left:338.376193pt;}
.xcf_c01402{left:342.770667pt;}
.x37_c01402{left:349.204933pt;}
.x8d_c01402{left:363.842667pt;}
.x1_c01402{left:365.040000pt;}
.x14_c01402{left:367.242667pt;}
.x3d_c01402{left:368.882667pt;}
.x4e_c01402{left:371.694216pt;}
.x8_c01402{left:376.073333pt;}
.x1f_c01402{left:377.797253pt;}
.x38_c01402{left:378.983467pt;}
.xbf_c01402{left:380.138413pt;}
.x79_c01402{left:383.444459pt;}
.x2_c01402{left:386.160000pt;}
.x3e_c01402{left:388.332000pt;}
.x4f_c01402{left:390.484883pt;}
.x15_c01402{left:395.829893pt;}
.xa7_c01402{left:398.593080pt;}
.xc7_c01402{left:400.289653pt;}
.x61_c01402{left:401.263279pt;}
.x92_c01402{left:403.920000pt;}
.x2a_c01402{left:406.366880pt;}
.xad_c01402{left:408.210767pt;}
.x57_c01402{left:410.096456pt;}
.x84_c01402{left:413.021543pt;}
.x9_c01402{left:415.013333pt;}
.x93_c01402{left:416.160000pt;}
.x7a_c01402{left:422.374449pt;}
.x3_c01402{left:423.600000pt;}
.x95_c01402{left:425.234667pt;}
.xb5_c01402{left:428.592000pt;}
.x58_c01402{left:429.835123pt;}
.x2b_c01402{left:436.135467pt;}
.x50_c01402{left:439.660883pt;}
.x70_c01402{left:440.931560pt;}
.xa_c01402{left:443.102667pt;}
.xb6_c01402{left:447.821333pt;}
.xd0_c01402{left:450.586667pt;}
.x7b_c01402{left:451.488281pt;}
.x16_c01402{left:455.064400pt;}
.xae_c01402{left:457.023973pt;}
.x69_c01402{left:459.572805pt;}
.x85_c01402{left:461.982703pt;}
.xc0_c01402{left:467.766716pt;}
.x20_c01402{left:473.341840pt;}
.x2c_c01402{left:474.824240pt;}
.x59_c01402{left:477.872456pt;}
.x96_c01402{left:483.125333pt;}
.xa2_c01402{left:484.276433pt;}
.x39_c01402{left:485.851733pt;}
.x6a_c01402{left:489.353489pt;}
.x17_c01402{left:493.471840pt;}
.x3f_c01402{left:494.913333pt;}
.x51_c01402{left:497.066216pt;}
.xb_c01402{left:503.072000pt;}
.xa3_c01402{left:504.742480pt;}
.x62_c01402{left:507.613092pt;}
.x86_c01402{left:509.266439pt;}
.x8e_c01402{left:511.221333pt;}
.xb7_c01402{left:515.304000pt;}
.x46_c01402{left:516.253333pt;}
.x40_c01402{left:523.272000pt;}
.x3a_c01402{left:524.315947pt;}
.x5a_c01402{left:527.256456pt;}
.x21_c01402{left:533.120373pt;}
.x63_c01402{left:535.964235pt;}
.x7c_c01402{left:537.863088pt;}
.xc_c01402{left:541.061333pt;}
.x47_c01402{left:544.130667pt;}
.x6b_c01402{left:546.238699pt;}
.x87_c01402{left:547.928411pt;}
.x71_c01402{left:557.508288pt;}
.x18_c01402{left:560.987840pt;}
.xa8_c01402{left:562.826807pt;}
.xb8_c01402{left:563.748000pt;}
.xc1_c01402{left:564.744692pt;}
.x5b_c01402{left:566.143123pt;}
.x8f_c01402{left:569.557333pt;}
.xaf_c01402{left:572.931160pt;}
.x52_c01402{left:574.098216pt;}
.xca_c01402{left:575.332000pt;}
.x72_c01402{left:577.015291pt;}
.x2d_c01402{left:581.141040pt;}
.xd_c01402{left:589.541333pt;}
.x22_c01402{left:590.988187pt;}
.xc2_c01402{left:593.625667pt;}
.x41_c01402{left:594.588000pt;}
.x90_c01402{left:597.654667pt;}
.x19_c01402{left:599.871280pt;}
.x2e_c01402{left:602.017467pt;}
.x5c_c01402{left:604.359123pt;}
.x88_c01402{left:606.975425pt;}
.x73_c01402{left:615.659985pt;}
.xe_c01402{left:618.484000pt;}
.x9d_c01402{left:620.441067pt;}
.x64_c01402{left:624.476397pt;}
.x1a_c01402{left:628.301173pt;}
.xa9_c01402{left:630.283453pt;}
.x74_c01402{left:633.660412pt;}
.x7d_c01402{left:635.262076pt;}
.x89_c01402{left:636.520921pt;}
.x5d_c01402{left:643.977789pt;}
.x97_c01402{left:647.965333pt;}
.x3b_c01402{left:651.221013pt;}
.xcb_c01402{left:653.525333pt;}
.x75_c01402{left:654.544680pt;}
.x1b_c01402{left:657.000427pt;}
.x2f_c01402{left:658.430587pt;}
.x91_c01402{left:659.376000pt;}
.x53_c01402{left:661.494216pt;}
.xc3_c01402{left:671.755008pt;}
.xb0_c01402{left:679.963940pt;}
.x48_c01402{left:681.168000pt;}
.x5e_c01402{left:682.872456pt;}
.x23_c01402{left:687.696800pt;}
.x9e_c01402{left:688.597693pt;}
.xb9_c01402{left:689.990667pt;}
.x76_c01402{left:693.217375pt;}
.x1c_c01402{left:697.562560pt;}
.x98_c01402{left:706.892000pt;}
.x30_c01402{left:708.780933pt;}
.x49_c01402{left:710.154667pt;}
.x7e_c01402{left:714.042080pt;}
.xf_c01402{left:715.774667pt;}
.x24_c01402{left:717.660053pt;}
.x54_c01402{left:721.730216pt;}
.x6c_c01402{left:723.861447pt;}
.xc4_c01402{left:729.872980pt;}
.x31_c01402{left:736.536160pt;}
.xaa_c01402{left:738.249547pt;}
.xa4_c01402{left:748.031180pt;}
.xc8_c01402{left:749.299447pt;}
.x7f_c01402{left:754.357427pt;}
.xcc_c01402{left:771.585333pt;}
.xd5_c01402{left:803.520000pt;}
}





/* 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_c01403 {
    display:none;
  }
  .loading-indicator_c01403.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01403 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_c01403 { 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_c01403" -> "#page-container .classname_c01403")
 */
.pf_c01403 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01403 { /* 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_c01403.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01403 { /* 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_c01403 { /* 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_c01403 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01403 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01403 {overflow:visible;}
  }
}
.c_c01403 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01403 { /* 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_c01403:after { /* webkit #35443 */
  content: '';
}
.t_c01403:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01403 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 */
}
.__c01403 { /* 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_c01403 { /* info for Javascript */
  display:none;
}
.l_c01403 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01403 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01403 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01403: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_c01403 {
    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_c01403.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01403.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_c01403 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01403{font-family:sans-serif;visibility:hidden;}
.sc__c01403{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01403{-webkit-text-stroke:0px transparent;}
}
.y0_c01403{bottom:0.000000px;}
.h1_c01403{height:1250.250000px;}
.h0_c01403{height:1250.370000px;}
.w1_c01403{width:907.500000px;}
.w0_c01403{width:907.740000px;}
.x0_c01403{left:0.000000px;}
@media print{
.y0_c01403{bottom:0.000000pt;}
.h1_c01403{height:1111.333333pt;}
.h0_c01403{height:1111.440000pt;}
.w1_c01403{width:806.666667pt;}
.w0_c01403{width:806.880000pt;}
.x0_c01403{left:0.000000pt;}
}





/* 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_c01404 {
    display:none;
  }
  .loading-indicator_c01404.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01404 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_c01404 { 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_c01404" -> "#page-container .classname_c01404")
 */
.pf_c01404 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01404 { /* 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_c01404.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01404 { /* 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_c01404 { /* 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_c01404 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01404 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01404 {overflow:visible;}
  }
}
.c_c01404 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01404 { /* 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_c01404:after { /* webkit #35443 */
  content: '';
}
.t_c01404:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01404 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 */
}
.__c01404 { /* 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_c01404 { /* info for Javascript */
  display:none;
}
.l_c01404 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01404 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01404 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01404: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_c01404 {
    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_c01404.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01404.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_c01404 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01404{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01404;src:url('chunks/assets/font_c605e72f209fc835e906f064.woff2')format("woff");}.ff1_c01404{font-family:ff1_c01404;line-height:1.000000;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;}
.m56_c01404{transform:matrix(0.120935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120935,0.000000,0.000000,0.250000,0,0);}
.m105_c01404{transform:matrix(0.127360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127360,0.000000,0.000000,0.250000,0,0);}
.m100_c01404{transform:matrix(0.152705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152705,0.000000,0.000000,0.250000,0,0);}
.m107_c01404{transform:matrix(0.161770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161770,0.000000,0.000000,0.250000,0,0);}
.m4a_c01404{transform:matrix(0.163365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163365,0.000000,0.000000,0.250000,0,0);}
.mcb_c01404{transform:matrix(0.168155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168155,0.000000,0.000000,0.250000,0,0);}
.m9b_c01404{transform:matrix(0.179745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179745,0.000000,0.000000,0.250000,0,0);}
.m97_c01404{transform:matrix(0.182540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182540,0.000000,0.000000,0.250000,0,0);}
.m87_c01404{transform:matrix(0.185150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185150,0.000000,0.000000,0.250000,0,0);}
.mcc_c01404{transform:matrix(0.186955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186955,0.000000,0.000000,0.250000,0,0);}
.m84_c01404{transform:matrix(0.186985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186985,0.000000,0.000000,0.250000,0,0);}
.m5d_c01404{transform:matrix(0.188065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188065,0.000000,0.000000,0.250000,0,0);}
.mb5_c01404{transform:matrix(0.189745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189745,0.000000,0.000000,0.250000,0,0);}
.m88_c01404{transform:matrix(0.190830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190830,0.000000,0.000000,0.250000,0,0);}
.mca_c01404{transform:matrix(0.192055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192055,0.000000,0.000000,0.250000,0,0);}
.m1f_c01404{transform:matrix(0.193035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193035,0.000000,0.000000,0.250000,0,0);}
.m8a_c01404{transform:matrix(0.193615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193615,0.000000,0.000000,0.250000,0,0);}
.m8b_c01404{transform:matrix(0.194195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194195,0.000000,0.000000,0.250000,0,0);}
.md5_c01404{transform:matrix(0.194700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194700,0.000000,0.000000,0.250000,0,0);}
.m44_c01404{transform:matrix(0.196060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196060,0.000000,0.000000,0.250000,0,0);}
.m103_c01404{transform:matrix(0.196255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196255,0.000000,0.000000,0.250000,0,0);}
.mb6_c01404{transform:matrix(0.196955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196955,0.000000,0.000000,0.250000,0,0);}
.mfe_c01404{transform:matrix(0.198535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198535,0.000000,0.000000,0.250000,0,0);}
.mb9_c01404{transform:matrix(0.198930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198930,0.000000,0.000000,0.250000,0,0);}
.m9f_c01404{transform:matrix(0.200125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200125,0.000000,0.000000,0.250000,0,0);}
.mce_c01404{transform:matrix(0.201120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201120,0.000000,0.000000,0.250000,0,0);}
.m86_c01404{transform:matrix(0.201755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201755,0.000000,0.000000,0.250000,0,0);}
.m99_c01404{transform:matrix(0.202075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202075,0.000000,0.000000,0.250000,0,0);}
.me0_c01404{transform:matrix(0.202225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202225,0.000000,0.000000,0.250000,0,0);}
.md1_c01404{transform:matrix(0.202870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202870,0.000000,0.000000,0.250000,0,0);}
.m59_c01404{transform:matrix(0.203040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203040,0.000000,0.000000,0.250000,0,0);}
.md4_c01404{transform:matrix(0.203400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203400,0.000000,0.000000,0.250000,0,0);}
.m106_c01404{transform:matrix(0.204140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204140,0.000000,0.000000,0.250000,0,0);}
.m5f_c01404{transform:matrix(0.205230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205230,0.000000,0.000000,0.250000,0,0);}
.mef_c01404{transform:matrix(0.205540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205540,0.000000,0.000000,0.250000,0,0);}
.m5e_c01404{transform:matrix(0.206095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206095,0.000000,0.000000,0.250000,0,0);}
.me9_c01404{transform:matrix(0.206350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206350,0.000000,0.000000,0.250000,0,0);}
.m3f_c01404{transform:matrix(0.206405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206405,0.000000,0.000000,0.250000,0,0);}
.m98_c01404{transform:matrix(0.206435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206435,0.000000,0.000000,0.250000,0,0);}
.m5a_c01404{transform:matrix(0.207770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207770,0.000000,0.000000,0.250000,0,0);}
.mb8_c01404{transform:matrix(0.208060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208060,0.000000,0.000000,0.250000,0,0);}
.m57_c01404{transform:matrix(0.208280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208280,0.000000,0.000000,0.250000,0,0);}
.mb1_c01404{transform:matrix(0.208340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208340,0.000000,0.000000,0.250000,0,0);}
.m85_c01404{transform:matrix(0.208875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208875,0.000000,0.000000,0.250000,0,0);}
.mb7_c01404{transform:matrix(0.209170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209170,0.000000,0.000000,0.250000,0,0);}
.m9c_c01404{transform:matrix(0.209310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209310,0.000000,0.000000,0.250000,0,0);}
.m62_c01404{transform:matrix(0.209495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209495,0.000000,0.000000,0.250000,0,0);}
.mf6_c01404{transform:matrix(0.209775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209775,0.000000,0.000000,0.250000,0,0);}
.mc9_c01404{transform:matrix(0.210320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210320,0.000000,0.000000,0.250000,0,0);}
.m89_c01404{transform:matrix(0.210420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210420,0.000000,0.000000,0.250000,0,0);}
.m46_c01404{transform:matrix(0.210620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210620,0.000000,0.000000,0.250000,0,0);}
.mf2_c01404{transform:matrix(0.211405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211405,0.000000,0.000000,0.250000,0,0);}
.mb2_c01404{transform:matrix(0.211760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211760,0.000000,0.000000,0.250000,0,0);}
.m6b_c01404{transform:matrix(0.211870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211870,0.000000,0.000000,0.250000,0,0);}
.mdb_c01404{transform:matrix(0.211895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211895,0.000000,0.000000,0.250000,0,0);}
.mba_c01404{transform:matrix(0.212395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212395,0.000000,0.000000,0.250000,0,0);}
.m9e_c01404{transform:matrix(0.212855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212855,0.000000,0.000000,0.250000,0,0);}
.ma0_c01404{transform:matrix(0.213410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213410,0.000000,0.000000,0.250000,0,0);}
.m8_c01404{transform:matrix(0.213555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213555,0.000000,0.000000,0.250000,0,0);}
.mf1_c01404{transform:matrix(0.213635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213635,0.000000,0.000000,0.250000,0,0);}
.m42_c01404{transform:matrix(0.213720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213720,0.000000,0.000000,0.250000,0,0);}
.md2_c01404{transform:matrix(0.213870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213870,0.000000,0.000000,0.250000,0,0);}
.mbb_c01404{transform:matrix(0.214180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214180,0.000000,0.000000,0.250000,0,0);}
.m113_c01404{transform:matrix(0.214505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214505,0.000000,0.000000,0.250000,0,0);}
.m48_c01404{transform:matrix(0.214530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214530,0.000000,0.000000,0.250000,0,0);}
.m8c_c01404{transform:matrix(0.214605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214605,0.000000,0.000000,0.250000,0,0);}
.m4d_c01404{transform:matrix(0.215060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215060,0.000000,0.000000,0.250000,0,0);}
.m96_c01404{transform:matrix(0.215390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215390,0.000000,0.000000,0.250000,0,0);}
.m82_c01404{transform:matrix(0.215580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215580,0.000000,0.000000,0.250000,0,0);}
.mcd_c01404{transform:matrix(0.215610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215610,0.000000,0.000000,0.250000,0,0);}
.m5c_c01404{transform:matrix(0.215940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215940,0.000000,0.000000,0.250000,0,0);}
.m55_c01404{transform:matrix(0.216975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216975,0.000000,0.000000,0.250000,0,0);}
.m20_c01404{transform:matrix(0.216995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216995,0.000000,0.000000,0.250000,0,0);}
.m11b_c01404{transform:matrix(0.217705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217705,0.000000,0.000000,0.250000,0,0);}
.md8_c01404{transform:matrix(0.217860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217860,0.000000,0.000000,0.250000,0,0);}
.m9a_c01404{transform:matrix(0.218120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218120,0.000000,0.000000,0.250000,0,0);}
.m58_c01404{transform:matrix(0.218210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218210,0.000000,0.000000,0.250000,0,0);}
.m5b_c01404{transform:matrix(0.218395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218395,0.000000,0.000000,0.250000,0,0);}
.m101_c01404{transform:matrix(0.219150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219150,0.000000,0.000000,0.250000,0,0);}
.m104_c01404{transform:matrix(0.219590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219590,0.000000,0.000000,0.250000,0,0);}
.m9d_c01404{transform:matrix(0.220195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220195,0.000000,0.000000,0.250000,0,0);}
.m1e_c01404{transform:matrix(0.220660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220660,0.000000,0.000000,0.250000,0,0);}
.m24_c01404{transform:matrix(0.220730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220730,0.000000,0.000000,0.250000,0,0);}
.m83_c01404{transform:matrix(0.220740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220740,0.000000,0.000000,0.250000,0,0);}
.mf7_c01404{transform:matrix(0.220890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220890,0.000000,0.000000,0.250000,0,0);}
.mff_c01404{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m71_c01404{transform:matrix(0.221160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221160,0.000000,0.000000,0.250000,0,0);}
.md9_c01404{transform:matrix(0.221440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221440,0.000000,0.000000,0.250000,0,0);}
.mbe_c01404{transform:matrix(0.221645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221645,0.000000,0.000000,0.250000,0,0);}
.mf4_c01404{transform:matrix(0.221695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221695,0.000000,0.000000,0.250000,0,0);}
.m102_c01404{transform:matrix(0.221920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221920,0.000000,0.000000,0.250000,0,0);}
.m41_c01404{transform:matrix(0.222310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222310,0.000000,0.000000,0.250000,0,0);}
.m7e_c01404{transform:matrix(0.222610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222610,0.000000,0.000000,0.250000,0,0);}
.mb4_c01404{transform:matrix(0.222775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222775,0.000000,0.000000,0.250000,0,0);}
.maf_c01404{transform:matrix(0.222800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222800,0.000000,0.000000,0.250000,0,0);}
.mde_c01404{transform:matrix(0.223595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223595,0.000000,0.000000,0.250000,0,0);}
.mdd_c01404{transform:matrix(0.224520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224520,0.000000,0.000000,0.250000,0,0);}
.mda_c01404{transform:matrix(0.224565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224565,0.000000,0.000000,0.250000,0,0);}
.mb3_c01404{transform:matrix(0.225285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225285,0.000000,0.000000,0.250000,0,0);}
.md0_c01404{transform:matrix(0.225760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225760,0.000000,0.000000,0.250000,0,0);}
.mc0_c01404{transform:matrix(0.226515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226515,0.000000,0.000000,0.250000,0,0);}
.m6c_c01404{transform:matrix(0.226775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226775,0.000000,0.000000,0.250000,0,0);}
.mc5_c01404{transform:matrix(0.227540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227540,0.000000,0.000000,0.250000,0,0);}
.mf_c01404{transform:matrix(0.228170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228170,0.000000,0.000000,0.250000,0,0);}
.m1c_c01404{transform:matrix(0.228280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228280,0.000000,0.000000,0.250000,0,0);}
.m6f_c01404{transform:matrix(0.228695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228695,0.000000,0.000000,0.250000,0,0);}
.m9_c01404{transform:matrix(0.228815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228815,0.000000,0.000000,0.250000,0,0);}
.m45_c01404{transform:matrix(0.229205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229205,0.000000,0.000000,0.250000,0,0);}
.m1b_c01404{transform:matrix(0.229390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229390,0.000000,0.000000,0.250000,0,0);}
.m67_c01404{transform:matrix(0.229525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229525,0.000000,0.000000,0.250000,0,0);}
.m0_c01404{transform:matrix(0.230215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230215,0.000000,0.000000,0.250000,0,0);}
.m27_c01404{transform:matrix(0.230340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230340,0.000000,0.000000,0.250000,0,0);}
.mee_c01404{transform:matrix(0.230875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230875,0.000000,0.000000,0.250000,0,0);}
.mc6_c01404{transform:matrix(0.230915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230915,0.000000,0.000000,0.250000,0,0);}
.m6a_c01404{transform:matrix(0.231380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231380,0.000000,0.000000,0.250000,0,0);}
.m117_c01404{transform:matrix(0.231625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231625,0.000000,0.000000,0.250000,0,0);}
.m29_c01404{transform:matrix(0.232405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232405,0.000000,0.000000,0.250000,0,0);}
.mdc_c01404{transform:matrix(0.232765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232765,0.000000,0.000000,0.250000,0,0);}
.m115_c01404{transform:matrix(0.232985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232985,0.000000,0.000000,0.250000,0,0);}
.mf9_c01404{transform:matrix(0.233570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233570,0.000000,0.000000,0.250000,0,0);}
.m30_c01404{transform:matrix(0.233735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233735,0.000000,0.000000,0.250000,0,0);}
.mc7_c01404{transform:matrix(0.233860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233860,0.000000,0.000000,0.250000,0,0);}
.mf5_c01404{transform:matrix(0.233985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233985,0.000000,0.000000,0.250000,0,0);}
.m11c_c01404{transform:matrix(0.234305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234305,0.000000,0.000000,0.250000,0,0);}
.m75_c01404{transform:matrix(0.234620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234620,0.000000,0.000000,0.250000,0,0);}
.m1_c01404{transform:matrix(0.235080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235080,0.000000,0.000000,0.250000,0,0);}
.mfd_c01404{transform:matrix(0.235385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235385,0.000000,0.000000,0.250000,0,0);}
.m94_c01404{transform:matrix(0.235930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235930,0.000000,0.000000,0.250000,0,0);}
.md7_c01404{transform:matrix(0.236025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236025,0.000000,0.000000,0.250000,0,0);}
.m1d_c01404{transform:matrix(0.236075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236075,0.000000,0.000000,0.250000,0,0);}
.maa_c01404{transform:matrix(0.236445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236445,0.000000,0.000000,0.250000,0,0);}
.me3_c01404{transform:matrix(0.236645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236645,0.000000,0.000000,0.250000,0,0);}
.m1a_c01404{transform:matrix(0.237395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237395,0.000000,0.000000,0.250000,0,0);}
.m49_c01404{transform:matrix(0.237420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237420,0.000000,0.000000,0.250000,0,0);}
.m4b_c01404{transform:matrix(0.237520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237520,0.000000,0.000000,0.250000,0,0);}
.m51_c01404{transform:matrix(0.237740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237740,0.000000,0.000000,0.250000,0,0);}
.m5_c01404{transform:matrix(0.238385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238385,0.000000,0.000000,0.250000,0,0);}
.me5_c01404{transform:matrix(0.238535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238535,0.000000,0.000000,0.250000,0,0);}
.m23_c01404{transform:matrix(0.238720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238720,0.000000,0.000000,0.250000,0,0);}
.mdf_c01404{transform:matrix(0.238840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238840,0.000000,0.000000,0.250000,0,0);}
.m53_c01404{transform:matrix(0.238990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238990,0.000000,0.000000,0.250000,0,0);}
.m52_c01404{transform:matrix(0.239540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239540,0.000000,0.000000,0.250000,0,0);}
.m2d_c01404{transform:matrix(0.239590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239590,0.000000,0.000000,0.250000,0,0);}
.m13_c01404{transform:matrix(0.240295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240295,0.000000,0.000000,0.250000,0,0);}
.m72_c01404{transform:matrix(0.240590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240590,0.000000,0.000000,0.250000,0,0);}
.m54_c01404{transform:matrix(0.240625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240625,0.000000,0.000000,0.250000,0,0);}
.m7c_c01404{transform:matrix(0.240635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240635,0.000000,0.000000,0.250000,0,0);}
.me7_c01404{transform:matrix(0.241320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241320,0.000000,0.000000,0.250000,0,0);}
.m2e_c01404{transform:matrix(0.241415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241415,0.000000,0.000000,0.250000,0,0);}
.m112_c01404{transform:matrix(0.241780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241780,0.000000,0.000000,0.250000,0,0);}
.m7a_c01404{transform:matrix(0.242020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242020,0.000000,0.000000,0.250000,0,0);}
.m50_c01404{transform:matrix(0.242040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242040,0.000000,0.000000,0.250000,0,0);}
.mc1_c01404{transform:matrix(0.242100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242100,0.000000,0.000000,0.250000,0,0);}
.ma2_c01404{transform:matrix(0.242240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242240,0.000000,0.000000,0.250000,0,0);}
.mc2_c01404{transform:matrix(0.242295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242295,0.000000,0.000000,0.250000,0,0);}
.m8e_c01404{transform:matrix(0.242545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242545,0.000000,0.000000,0.250000,0,0);}
.m2c_c01404{transform:matrix(0.242755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242755,0.000000,0.000000,0.250000,0,0);}
.mc4_c01404{transform:matrix(0.243200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243200,0.000000,0.000000,0.250000,0,0);}
.m6_c01404{transform:matrix(0.243375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243375,0.000000,0.000000,0.250000,0,0);}
.m6e_c01404{transform:matrix(0.243490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243490,0.000000,0.000000,0.250000,0,0);}
.m76_c01404{transform:matrix(0.243540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243540,0.000000,0.000000,0.250000,0,0);}
.m70_c01404{transform:matrix(0.243740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243740,0.000000,0.000000,0.250000,0,0);}
.m10b_c01404{transform:matrix(0.244095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244095,0.000000,0.000000,0.250000,0,0);}
.m6d_c01404{transform:matrix(0.244590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244590,0.000000,0.000000,0.250000,0,0);}
.me1_c01404{transform:matrix(0.244770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244770,0.000000,0.000000,0.250000,0,0);}
.m33_c01404{transform:matrix(0.244860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244860,0.000000,0.000000,0.250000,0,0);}
.m40_c01404{transform:matrix(0.245015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245015,0.000000,0.000000,0.250000,0,0);}
.m31_c01404{transform:matrix(0.245025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245025,0.000000,0.000000,0.250000,0,0);}
.mab_c01404{transform:matrix(0.245460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245460,0.000000,0.000000,0.250000,0,0);}
.ma7_c01404{transform:matrix(0.246940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246940,0.000000,0.000000,0.250000,0,0);}
.m15_c01404{transform:matrix(0.247030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247030,0.000000,0.000000,0.250000,0,0);}
.m4c_c01404{transform:matrix(0.247120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247120,0.000000,0.000000,0.250000,0,0);}
.m25_c01404{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m14_c01404{transform:matrix(0.247685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247685,0.000000,0.000000,0.250000,0,0);}
.m16_c01404{transform:matrix(0.247755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247755,0.000000,0.000000,0.250000,0,0);}
.m74_c01404{transform:matrix(0.247915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247915,0.000000,0.000000,0.250000,0,0);}
.mbf_c01404{transform:matrix(0.248155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248155,0.000000,0.000000,0.250000,0,0);}
.m47_c01404{transform:matrix(0.248275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248275,0.000000,0.000000,0.250000,0,0);}
.m95_c01404{transform:matrix(0.248510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248510,0.000000,0.000000,0.250000,0,0);}
.me8_c01404{transform:matrix(0.248950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248950,0.000000,0.000000,0.250000,0,0);}
.mb_c01404{transform:matrix(0.249040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249040,0.000000,0.000000,0.250000,0,0);}
.m28_c01404{transform:matrix(0.249060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249060,0.000000,0.000000,0.250000,0,0);}
.m78_c01404{transform:matrix(0.249405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249405,0.000000,0.000000,0.250000,0,0);}
.m119_c01404{transform:matrix(0.249485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249485,0.000000,0.000000,0.250000,0,0);}
.mf3_c01404{transform:matrix(0.249705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249705,0.000000,0.000000,0.250000,0,0);}
.m38_c01404{transform:matrix(0.250105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250105,0.000000,0.000000,0.250000,0,0);}
.m73_c01404{transform:matrix(0.250190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250190,0.000000,0.000000,0.250000,0,0);}
.ma3_c01404{transform:matrix(0.250305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250305,0.000000,0.000000,0.250000,0,0);}
.m4e_c01404{transform:matrix(0.250415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250415,0.000000,0.000000,0.250000,0,0);}
.m77_c01404{transform:matrix(0.250645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250645,0.000000,0.000000,0.250000,0,0);}
.m11a_c01404{transform:matrix(0.250865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250865,0.000000,0.000000,0.250000,0,0);}
.mf8_c01404{transform:matrix(0.251280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251280,0.000000,0.000000,0.250000,0,0);}
.m4f_c01404{transform:matrix(0.251375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251375,0.000000,0.000000,0.250000,0,0);}
.m12_c01404{transform:matrix(0.251395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251395,0.000000,0.000000,0.250000,0,0);}
.m10d_c01404{transform:matrix(0.251410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251410,0.000000,0.000000,0.250000,0,0);}
.mf0_c01404{transform:matrix(0.251465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251465,0.000000,0.000000,0.250000,0,0);}
.m118_c01404{transform:matrix(0.251855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251855,0.000000,0.000000,0.250000,0,0);}
.ma5_c01404{transform:matrix(0.251950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251950,0.000000,0.000000,0.250000,0,0);}
.mec_c01404{transform:matrix(0.252255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252255,0.000000,0.000000,0.250000,0,0);}
.m108_c01404{transform:matrix(0.253035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253035,0.000000,0.000000,0.250000,0,0);}
.m21_c01404{transform:matrix(0.253300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253300,0.000000,0.000000,0.250000,0,0);}
.md_c01404{transform:matrix(0.253800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253800,0.000000,0.000000,0.250000,0,0);}
.mc8_c01404{transform:matrix(0.254415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254415,0.000000,0.000000,0.250000,0,0);}
.m17_c01404{transform:matrix(0.254710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254710,0.000000,0.000000,0.250000,0,0);}
.mbd_c01404{transform:matrix(0.255570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255570,0.000000,0.000000,0.250000,0,0);}
.m11_c01404{transform:matrix(0.255675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255675,0.000000,0.000000,0.250000,0,0);}
.m92_c01404{transform:matrix(0.255895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255895,0.000000,0.000000,0.250000,0,0);}
.m68_c01404{transform:matrix(0.256320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256320,0.000000,0.000000,0.250000,0,0);}
.m22_c01404{transform:matrix(0.256895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256895,0.000000,0.000000,0.250000,0,0);}
.m64_c01404{transform:matrix(0.257100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257100,0.000000,0.000000,0.250000,0,0);}
.mae_c01404{transform:matrix(0.257180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257180,0.000000,0.000000,0.250000,0,0);}
.m2b_c01404{transform:matrix(0.257695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257695,0.000000,0.000000,0.250000,0,0);}
.me6_c01404{transform:matrix(0.257730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257730,0.000000,0.000000,0.250000,0,0);}
.m8d_c01404{transform:matrix(0.257785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257785,0.000000,0.000000,0.250000,0,0);}
.mfc_c01404{transform:matrix(0.257955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257955,0.000000,0.000000,0.250000,0,0);}
.m35_c01404{transform:matrix(0.258185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258185,0.000000,0.000000,0.250000,0,0);}
.m10_c01404{transform:matrix(0.259210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259210,0.000000,0.000000,0.250000,0,0);}
.ma8_c01404{transform:matrix(0.259570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259570,0.000000,0.000000,0.250000,0,0);}
.m69_c01404{transform:matrix(0.259635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259635,0.000000,0.000000,0.250000,0,0);}
.m2a_c01404{transform:matrix(0.259840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259840,0.000000,0.000000,0.250000,0,0);}
.mac_c01404{transform:matrix(0.259855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259855,0.000000,0.000000,0.250000,0,0);}
.m2_c01404{transform:matrix(0.260120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260120,0.000000,0.000000,0.250000,0,0);}
.m3_c01404{transform:matrix(0.260425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260425,0.000000,0.000000,0.250000,0,0);}
.med_c01404{transform:matrix(0.260485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260485,0.000000,0.000000,0.250000,0,0);}
.m7b_c01404{transform:matrix(0.260730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260730,0.000000,0.000000,0.250000,0,0);}
.m63_c01404{transform:matrix(0.260890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260890,0.000000,0.000000,0.250000,0,0);}
.ma4_c01404{transform:matrix(0.262310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262310,0.000000,0.000000,0.250000,0,0);}
.me4_c01404{transform:matrix(0.262490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262490,0.000000,0.000000,0.250000,0,0);}
.m19_c01404{transform:matrix(0.262575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262575,0.000000,0.000000,0.250000,0,0);}
.m7d_c01404{transform:matrix(0.263260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263260,0.000000,0.000000,0.250000,0,0);}
.ma_c01404{transform:matrix(0.263340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263340,0.000000,0.000000,0.250000,0,0);}
.mfa_c01404{transform:matrix(0.263485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263485,0.000000,0.000000,0.250000,0,0);}
.m79_c01404{transform:matrix(0.263655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263655,0.000000,0.000000,0.250000,0,0);}
.me_c01404{transform:matrix(0.264545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264545,0.000000,0.000000,0.250000,0,0);}
.m8f_c01404{transform:matrix(0.264615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264615,0.000000,0.000000,0.250000,0,0);}
.m4_c01404{transform:matrix(0.264675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264675,0.000000,0.000000,0.250000,0,0);}
.mc_c01404{transform:matrix(0.264990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264990,0.000000,0.000000,0.250000,0,0);}
.m109_c01404{transform:matrix(0.265320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265320,0.000000,0.000000,0.250000,0,0);}
.m80_c01404{transform:matrix(0.265575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265575,0.000000,0.000000,0.250000,0,0);}
.m61_c01404{transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);}
.m7_c01404{transform:matrix(0.266440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266440,0.000000,0.000000,0.250000,0,0);}
.m3c_c01404{transform:matrix(0.266460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266460,0.000000,0.000000,0.250000,0,0);}
.mb0_c01404{transform:matrix(0.266595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266595,0.000000,0.000000,0.250000,0,0);}
.mbc_c01404{transform:matrix(0.266815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266815,0.000000,0.000000,0.250000,0,0);}
.me2_c01404{transform:matrix(0.266975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266975,0.000000,0.000000,0.250000,0,0);}
.m114_c01404{transform:matrix(0.267160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267160,0.000000,0.000000,0.250000,0,0);}
.m26_c01404{transform:matrix(0.268015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268015,0.000000,0.000000,0.250000,0,0);}
.m93_c01404{transform:matrix(0.268080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268080,0.000000,0.000000,0.250000,0,0);}
.ma1_c01404{transform:matrix(0.268260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268260,0.000000,0.000000,0.250000,0,0);}
.m91_c01404{transform:matrix(0.268855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268855,0.000000,0.000000,0.250000,0,0);}
.ma6_c01404{transform:matrix(0.269065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269065,0.000000,0.000000,0.250000,0,0);}
.m10c_c01404{transform:matrix(0.269215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269215,0.000000,0.000000,0.250000,0,0);}
.m32_c01404{transform:matrix(0.269585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269585,0.000000,0.000000,0.250000,0,0);}
.m3d_c01404{transform:matrix(0.269785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269785,0.000000,0.000000,0.250000,0,0);}
.m116_c01404{transform:matrix(0.270455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270455,0.000000,0.000000,0.250000,0,0);}
.m3b_c01404{transform:matrix(0.272075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272075,0.000000,0.000000,0.250000,0,0);}
.m7f_c01404{transform:matrix(0.272105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272105,0.000000,0.000000,0.250000,0,0);}
.meb_c01404{transform:matrix(0.272520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272520,0.000000,0.000000,0.250000,0,0);}
.mfb_c01404{transform:matrix(0.272540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272540,0.000000,0.000000,0.250000,0,0);}
.m65_c01404{transform:matrix(0.273260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273260,0.000000,0.000000,0.250000,0,0);}
.m60_c01404{transform:matrix(0.273345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273345,0.000000,0.000000,0.250000,0,0);}
.m2f_c01404{transform:matrix(0.273610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273610,0.000000,0.000000,0.250000,0,0);}
.mea_c01404{transform:matrix(0.276850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276850,0.000000,0.000000,0.250000,0,0);}
.m90_c01404{transform:matrix(0.276905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276905,0.000000,0.000000,0.250000,0,0);}
.m10a_c01404{transform:matrix(0.276930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276930,0.000000,0.000000,0.250000,0,0);}
.m18_c01404{transform:matrix(0.277580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277580,0.000000,0.000000,0.250000,0,0);}
.mad_c01404{transform:matrix(0.279775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279775,0.000000,0.000000,0.250000,0,0);}
.m3e_c01404{transform:matrix(0.283115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283115,0.000000,0.000000,0.250000,0,0);}
.ma9_c01404{transform:matrix(0.283185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283185,0.000000,0.000000,0.250000,0,0);}
.m43_c01404{transform:matrix(0.284660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284660,0.000000,0.000000,0.250000,0,0);}
.m37_c01404{transform:matrix(0.286965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286965,0.000000,0.000000,0.250000,0,0);}
.m34_c01404{transform:matrix(0.293080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293080,0.000000,0.000000,0.250000,0,0);}
.m3a_c01404{transform:matrix(0.293270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293270,0.000000,0.000000,0.250000,0,0);}
.m39_c01404{transform:matrix(0.294945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294945,0.000000,0.000000,0.250000,0,0);}
.md3_c01404{transform:matrix(0.297895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297895,0.000000,0.000000,0.250000,0,0);}
.m36_c01404{transform:matrix(0.301580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301580,0.000000,0.000000,0.250000,0,0);}
.mc3_c01404{transform:matrix(0.302425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302425,0.000000,0.000000,0.250000,0,0);}
.mcf_c01404{transform:matrix(0.303210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303210,0.000000,0.000000,0.250000,0,0);}
.md6_c01404{transform:matrix(0.311445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311445,0.000000,0.000000,0.250000,0,0);}
.m81_c01404{transform:matrix(0.318475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318475,0.000000,0.000000,0.250000,0,0);}
.m66_c01404{transform:matrix(0.364050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364050,0.000000,0.000000,0.250000,0,0);}
.m10f_c01404{transform:matrix(0.553700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.553700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.553700,0.000000,0.000000,0.250000,0,0);}
.m10e_c01404{transform:matrix(0.838670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.838670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.838670,0.000000,0.000000,0.250000,0,0);}
.m110_c01404{transform:matrix(0.868160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.868160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.868160,0.000000,0.000000,0.250000,0,0);}
.m111_c01404{transform:matrix(0.973130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.973130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.973130,0.000000,0.000000,0.250000,0,0);}
.v0_c01404{vertical-align:0.000000px;}
.ls0_c01404{letter-spacing:0.000000px;}
.sc__c01404{text-shadow:none;}
.sc0_c01404{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__c01404{-webkit-text-stroke:0px transparent;}
.sc0_c01404{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01404{word-spacing:0.000000px;}
.fc0_c01404{color:transparent;}
.fs5_c01404{font-size:30.000000px;}
.fs2_c01404{font-size:66.000000px;}
.fs0_c01404{font-size:72.000000px;}
.fs1_c01404{font-size:78.000000px;}
.fs4_c01404{font-size:84.000000px;}
.fs3_c01404{font-size:90.000000px;}
.y0_c01404{bottom:0.000000px;}
.y53_c01404{bottom:62.577000px;}
.y52_c01404{bottom:99.172500px;}
.y51_c01404{bottom:131.116500px;}
.y50_c01404{bottom:153.012000px;}
.y4f_c01404{bottom:259.488000px;}
.y4e_c01404{bottom:293.784000px;}
.y4d_c01404{bottom:329.385000px;}
.y40_c01404{bottom:362.611500px;}
.y41_c01404{bottom:362.775000px;}
.y42_c01404{bottom:363.159000px;}
.y43_c01404{bottom:363.378000px;}
.y44_c01404{bottom:363.538500px;}
.y45_c01404{bottom:363.708000px;}
.y46_c01404{bottom:364.033500px;}
.y47_c01404{bottom:364.248000px;}
.y48_c01404{bottom:364.461000px;}
.y49_c01404{bottom:364.737000px;}
.y4a_c01404{bottom:365.226000px;}
.y4b_c01404{bottom:365.659500px;}
.y4c_c01404{bottom:365.782500px;}
.y3f_c01404{bottom:400.123500px;}
.y3e_c01404{bottom:435.700500px;}
.y30_c01404{bottom:471.420000px;}
.y31_c01404{bottom:471.631500px;}
.y32_c01404{bottom:472.125000px;}
.y33_c01404{bottom:472.501500px;}
.y34_c01404{bottom:472.615500px;}
.y35_c01404{bottom:473.052000px;}
.y36_c01404{bottom:473.163000px;}
.y37_c01404{bottom:473.541000px;}
.y38_c01404{bottom:473.701500px;}
.y39_c01404{bottom:473.815500px;}
.y3a_c01404{bottom:474.145500px;}
.y3b_c01404{bottom:474.244500px;}
.y3c_c01404{bottom:474.363000px;}
.y3d_c01404{bottom:474.571500px;}
.y2f_c01404{bottom:507.250500px;}
.y2e_c01404{bottom:544.075500px;}
.y2d_c01404{bottom:577.930500px;}
.y2c_c01404{bottom:613.674000px;}
.y2b_c01404{bottom:649.080000px;}
.y2a_c01404{bottom:683.644500px;}
.y29_c01404{bottom:719.709000px;}
.y28_c01404{bottom:754.654500px;}
.y27_c01404{bottom:790.240500px;}
.y26_c01404{bottom:827.328000px;}
.y1d_c01404{bottom:931.230000px;}
.y1e_c01404{bottom:931.875000px;}
.y1f_c01404{bottom:932.343000px;}
.y20_c01404{bottom:932.863500px;}
.y21_c01404{bottom:932.997000px;}
.y22_c01404{bottom:933.324000px;}
.y23_c01404{bottom:933.715500px;}
.y24_c01404{bottom:933.910500px;}
.y25_c01404{bottom:934.389000px;}
.y1c_c01404{bottom:967.659000px;}
.y1b_c01404{bottom:1002.493500px;}
.y1a_c01404{bottom:1037.863500px;}
.ye_c01404{bottom:1072.441500px;}
.yf_c01404{bottom:1072.720500px;}
.y10_c01404{bottom:1072.873500px;}
.y11_c01404{bottom:1072.987500px;}
.y12_c01404{bottom:1073.203500px;}
.y13_c01404{bottom:1073.481000px;}
.y14_c01404{bottom:1073.640000px;}
.y15_c01404{bottom:1073.808000px;}
.y16_c01404{bottom:1074.300000px;}
.y17_c01404{bottom:1074.951000px;}
.y18_c01404{bottom:1075.230000px;}
.y19_c01404{bottom:1075.450500px;}
.y2_c01404{bottom:1107.271500px;}
.y3_c01404{bottom:1107.726000px;}
.y4_c01404{bottom:1107.924000px;}
.y5_c01404{bottom:1108.309500px;}
.y6_c01404{bottom:1108.641000px;}
.y7_c01404{bottom:1108.905000px;}
.y8_c01404{bottom:1109.167500px;}
.y9_c01404{bottom:1109.430000px;}
.ya_c01404{bottom:1109.616000px;}
.yb_c01404{bottom:1109.758500px;}
.yc_c01404{bottom:1110.156000px;}
.yd_c01404{bottom:1111.000500px;}
.y1_c01404{bottom:1145.038500px;}
.h7_c01404{height:30.000000px;}
.h4_c01404{height:66.000000px;}
.h2_c01404{height:72.000000px;}
.h3_c01404{height:78.000000px;}
.h6_c01404{height:84.000000px;}
.h5_c01404{height:90.000000px;}
.h1_c01404{height:1250.250000px;}
.h0_c01404{height:1250.370000px;}
.w1_c01404{width:907.500000px;}
.w0_c01404{width:907.740000px;}
.x0_c01404{left:0.000000px;}
.x1a_c01404{left:121.569000px;}
.x1_c01404{left:122.850000px;}
.x7d_c01404{left:123.927000px;}
.x66_c01404{left:125.115000px;}
.x43_c01404{left:144.720000px;}
.x2_c01404{left:154.440000px;}
.x49_c01404{left:156.600000px;}
.x74_c01404{left:166.318500px;}
.x67_c01404{left:167.473500px;}
.x1b_c01404{left:177.465000px;}
.x3_c01404{left:187.920000px;}
.x54_c01404{left:189.000000px;}
.x6f_c01404{left:190.078500px;}
.x7e_c01404{left:191.157000px;}
.xf_c01404{left:198.268500px;}
.x5a_c01404{left:199.800000px;}
.x90_c01404{left:201.960000px;}
.x1c_c01404{left:207.976500px;}
.x3d_c01404{left:210.060000px;}
.x24_c01404{left:220.320000px;}
.x7f_c01404{left:221.667000px;}
.x92_c01404{left:224.640000px;}
.x34_c01404{left:229.857000px;}
.x10_c01404{left:231.211500px;}
.x38_c01404{left:232.470000px;}
.x78_c01404{left:233.886000px;}
.x8b_c01404{left:235.170000px;}
.x2b_c01404{left:242.730000px;}
.x95_c01404{left:245.160000px;}
.x91_c01404{left:247.590000px;}
.x4_c01404{left:251.640000px;}
.x25_c01404{left:252.720000px;}
.x75_c01404{left:254.608500px;}
.x8c_c01404{left:256.230000px;}
.x4a_c01404{left:264.870000px;}
.x68_c01404{left:266.289000px;}
.x1d_c01404{left:273.840000px;}
.x63_c01404{left:274.860000px;}
.x5f_c01404{left:276.480000px;}
.x79_c01404{left:277.662000px;}
.x26_c01404{left:285.120000px;}
.x3e_c01404{left:286.470000px;}
.x86_c01404{left:289.167000px;}
.x11_c01404{left:295.471500px;}
.x44_c01404{left:297.540000px;}
.x80_c01404{left:298.887000px;}
.x2f_c01404{left:308.070000px;}
.x4b_c01404{left:309.150000px;}
.x5_c01404{left:317.790000px;}
.x8d_c01404{left:322.380000px;}
.x1e_c01404{left:329.455500px;}
.x76_c01404{left:331.288500px;}
.x81_c01404{left:332.637000px;}
.x55_c01404{left:340.470000px;}
.x69_c01404{left:341.595000px;}
.x7a_c01404{left:343.782000px;}
.x12_c01404{left:350.799000px;}
.x1f_c01404{left:361.329000px;}
.x30_c01404{left:362.340000px;}
.x6a_c01404{left:364.287000px;}
.x45_c01404{left:373.680000px;}
.x70_c01404{left:374.758500px;}
.x93_c01404{left:375.840000px;}
.x87_c01404{left:377.730000px;}
.x6_c01404{left:383.130000px;}
.x4e_c01404{left:385.560000px;}
.x13_c01404{left:394.807500px;}
.x4c_c01404{left:395.820000px;}
.x46_c01404{left:397.170000px;}
.x60_c01404{left:406.890000px;}
.x7b_c01404{left:408.831000px;}
.x27_c01404{left:417.150000px;}
.x39_c01404{left:418.230000px;}
.x7_c01404{left:427.410000px;}
.x5e_c01404{left:429.030000px;}
.x14_c01404{left:438.567000px;}
.x4f_c01404{left:440.100000px;}
.x2c_c01404{left:448.740000px;}
.x6b_c01404{left:451.480500px;}
.x8_c01404{left:459.810000px;}
.x64_c01404{left:462.240000px;}
.x94_c01404{left:463.590000px;}
.x35_c01404{left:471.226500px;}
.x3a_c01404{left:473.310000px;}
.x15_c01404{left:482.310000px;}
.x96_c01404{left:485.730000px;}
.x20_c01404{left:493.090500px;}
.x5b_c01404{left:494.100000px;}
.x88_c01404{left:495.990000px;}
.x47_c01404{left:505.440000px;}
.x82_c01404{left:507.057000px;}
.x16_c01404{left:513.358500px;}
.x3f_c01404{left:516.240000px;}
.x8e_c01404{left:517.320000px;}
.x9_c01404{left:526.230000px;}
.x56_c01404{left:527.310000px;}
.x17_c01404{left:537.097500px;}
.x50_c01404{left:538.110000px;}
.x61_c01404{left:539.190000px;}
.x6c_c01404{left:549.265500px;}
.x8f_c01404{left:550.800000px;}
.xa_c01404{left:558.630000px;}
.x71_c01404{left:560.248500px;}
.x36_c01404{left:568.977000px;}
.x51_c01404{left:570.780000px;}
.x48_c01404{left:580.500000px;}
.x65_c01404{left:581.580000px;}
.xb_c01404{left:591.030000px;}
.x57_c01404{left:592.380000px;}
.x28_c01404{left:601.560000px;}
.x18_c01404{left:603.270000px;}
.x83_c01404{left:605.067000px;}
.x31_c01404{left:613.170000px;}
.x77_c01404{left:615.598500px;}
.x21_c01404{left:623.215500px;}
.x58_c01404{left:626.130000px;}
.x29_c01404{left:634.770000px;}
.x52_c01404{left:647.460000px;}
.x37_c01404{left:648.637500px;}
.x32_c01404{left:655.830000px;}
.x40_c01404{left:656.910000px;}
.xc_c01404{left:667.170000px;}
.x6d_c01404{left:669.937500px;}
.x22_c01404{left:679.108500px;}
.x84_c01404{left:681.477000px;}
.x41_c01404{left:689.580000px;}
.x72_c01404{left:690.928500px;}
.x33_c01404{left:699.840000px;}
.x89_c01404{left:704.700000px;}
.x2d_c01404{left:710.100000px;}
.x3b_c01404{left:711.450000px;}
.x5c_c01404{left:712.800000px;}
.xd_c01404{left:721.440000px;}
.x23_c01404{left:723.114000px;}
.x53_c01404{left:724.140000px;}
.x8a_c01404{left:727.920000px;}
.x2e_c01404{left:734.130000px;}
.x19_c01404{left:743.937000px;}
.x42_c01404{left:745.740000px;}
.x6e_c01404{left:755.250000px;}
.x62_c01404{left:756.540000px;}
.x7c_c01404{left:758.497500px;}
.x2a_c01404{left:765.450000px;}
.x3c_c01404{left:766.800000px;}
.x73_c01404{left:768.148500px;}
.x59_c01404{left:777.330000px;}
.x85_c01404{left:778.947000px;}
.xe_c01404{left:786.780000px;}
.x4d_c01404{left:788.670000px;}
.x5d_c01404{left:807.840000px;}
@media print{
.v0_c01404{vertical-align:0.000000pt;}
.ls0_c01404{letter-spacing:0.000000pt;}
.ws0_c01404{word-spacing:0.000000pt;}
.fs5_c01404{font-size:26.666667pt;}
.fs2_c01404{font-size:58.666667pt;}
.fs0_c01404{font-size:64.000000pt;}
.fs1_c01404{font-size:69.333333pt;}
.fs4_c01404{font-size:74.666667pt;}
.fs3_c01404{font-size:80.000000pt;}
.y0_c01404{bottom:0.000000pt;}
.y53_c01404{bottom:55.624000pt;}
.y52_c01404{bottom:88.153333pt;}
.y51_c01404{bottom:116.548000pt;}
.y50_c01404{bottom:136.010667pt;}
.y4f_c01404{bottom:230.656000pt;}
.y4e_c01404{bottom:261.141333pt;}
.y4d_c01404{bottom:292.786667pt;}
.y40_c01404{bottom:322.321333pt;}
.y41_c01404{bottom:322.466667pt;}
.y42_c01404{bottom:322.808000pt;}
.y43_c01404{bottom:323.002667pt;}
.y44_c01404{bottom:323.145333pt;}
.y45_c01404{bottom:323.296000pt;}
.y46_c01404{bottom:323.585333pt;}
.y47_c01404{bottom:323.776000pt;}
.y48_c01404{bottom:323.965333pt;}
.y49_c01404{bottom:324.210667pt;}
.y4a_c01404{bottom:324.645333pt;}
.y4b_c01404{bottom:325.030667pt;}
.y4c_c01404{bottom:325.140000pt;}
.y3f_c01404{bottom:355.665333pt;}
.y3e_c01404{bottom:387.289333pt;}
.y30_c01404{bottom:419.040000pt;}
.y31_c01404{bottom:419.228000pt;}
.y32_c01404{bottom:419.666667pt;}
.y33_c01404{bottom:420.001333pt;}
.y34_c01404{bottom:420.102667pt;}
.y35_c01404{bottom:420.490667pt;}
.y36_c01404{bottom:420.589333pt;}
.y37_c01404{bottom:420.925333pt;}
.y38_c01404{bottom:421.068000pt;}
.y39_c01404{bottom:421.169333pt;}
.y3a_c01404{bottom:421.462667pt;}
.y3b_c01404{bottom:421.550667pt;}
.y3c_c01404{bottom:421.656000pt;}
.y3d_c01404{bottom:421.841333pt;}
.y2f_c01404{bottom:450.889333pt;}
.y2e_c01404{bottom:483.622667pt;}
.y2d_c01404{bottom:513.716000pt;}
.y2c_c01404{bottom:545.488000pt;}
.y2b_c01404{bottom:576.960000pt;}
.y2a_c01404{bottom:607.684000pt;}
.y29_c01404{bottom:639.741333pt;}
.y28_c01404{bottom:670.804000pt;}
.y27_c01404{bottom:702.436000pt;}
.y26_c01404{bottom:735.402667pt;}
.y1d_c01404{bottom:827.760000pt;}
.y1e_c01404{bottom:828.333333pt;}
.y1f_c01404{bottom:828.749333pt;}
.y20_c01404{bottom:829.212000pt;}
.y21_c01404{bottom:829.330667pt;}
.y22_c01404{bottom:829.621333pt;}
.y23_c01404{bottom:829.969333pt;}
.y24_c01404{bottom:830.142667pt;}
.y25_c01404{bottom:830.568000pt;}
.y1c_c01404{bottom:860.141333pt;}
.y1b_c01404{bottom:891.105333pt;}
.y1a_c01404{bottom:922.545333pt;}
.ye_c01404{bottom:953.281333pt;}
.yf_c01404{bottom:953.529333pt;}
.y10_c01404{bottom:953.665333pt;}
.y11_c01404{bottom:953.766667pt;}
.y12_c01404{bottom:953.958667pt;}
.y13_c01404{bottom:954.205333pt;}
.y14_c01404{bottom:954.346667pt;}
.y15_c01404{bottom:954.496000pt;}
.y16_c01404{bottom:954.933333pt;}
.y17_c01404{bottom:955.512000pt;}
.y18_c01404{bottom:955.760000pt;}
.y19_c01404{bottom:955.956000pt;}
.y2_c01404{bottom:984.241333pt;}
.y3_c01404{bottom:984.645333pt;}
.y4_c01404{bottom:984.821333pt;}
.y5_c01404{bottom:985.164000pt;}
.y6_c01404{bottom:985.458667pt;}
.y7_c01404{bottom:985.693333pt;}
.y8_c01404{bottom:985.926667pt;}
.y9_c01404{bottom:986.160000pt;}
.ya_c01404{bottom:986.325333pt;}
.yb_c01404{bottom:986.452000pt;}
.yc_c01404{bottom:986.805333pt;}
.yd_c01404{bottom:987.556000pt;}
.y1_c01404{bottom:1017.812000pt;}
.h7_c01404{height:26.666667pt;}
.h4_c01404{height:58.666667pt;}
.h2_c01404{height:64.000000pt;}
.h3_c01404{height:69.333333pt;}
.h6_c01404{height:74.666667pt;}
.h5_c01404{height:80.000000pt;}
.h1_c01404{height:1111.333333pt;}
.h0_c01404{height:1111.440000pt;}
.w1_c01404{width:806.666667pt;}
.w0_c01404{width:806.880000pt;}
.x0_c01404{left:0.000000pt;}
.x1a_c01404{left:108.061333pt;}
.x1_c01404{left:109.200000pt;}
.x7d_c01404{left:110.157333pt;}
.x66_c01404{left:111.213333pt;}
.x43_c01404{left:128.640000pt;}
.x2_c01404{left:137.280000pt;}
.x49_c01404{left:139.200000pt;}
.x74_c01404{left:147.838667pt;}
.x67_c01404{left:148.865333pt;}
.x1b_c01404{left:157.746667pt;}
.x3_c01404{left:167.040000pt;}
.x54_c01404{left:168.000000pt;}
.x6f_c01404{left:168.958667pt;}
.x7e_c01404{left:169.917333pt;}
.xf_c01404{left:176.238667pt;}
.x5a_c01404{left:177.600000pt;}
.x90_c01404{left:179.520000pt;}
.x1c_c01404{left:184.868000pt;}
.x3d_c01404{left:186.720000pt;}
.x24_c01404{left:195.840000pt;}
.x7f_c01404{left:197.037333pt;}
.x92_c01404{left:199.680000pt;}
.x34_c01404{left:204.317333pt;}
.x10_c01404{left:205.521333pt;}
.x38_c01404{left:206.640000pt;}
.x78_c01404{left:207.898667pt;}
.x8b_c01404{left:209.040000pt;}
.x2b_c01404{left:215.760000pt;}
.x95_c01404{left:217.920000pt;}
.x91_c01404{left:220.080000pt;}
.x4_c01404{left:223.680000pt;}
.x25_c01404{left:224.640000pt;}
.x75_c01404{left:226.318667pt;}
.x8c_c01404{left:227.760000pt;}
.x4a_c01404{left:235.440000pt;}
.x68_c01404{left:236.701333pt;}
.x1d_c01404{left:243.413333pt;}
.x63_c01404{left:244.320000pt;}
.x5f_c01404{left:245.760000pt;}
.x79_c01404{left:246.810667pt;}
.x26_c01404{left:253.440000pt;}
.x3e_c01404{left:254.640000pt;}
.x86_c01404{left:257.037333pt;}
.x11_c01404{left:262.641333pt;}
.x44_c01404{left:264.480000pt;}
.x80_c01404{left:265.677333pt;}
.x2f_c01404{left:273.840000pt;}
.x4b_c01404{left:274.800000pt;}
.x5_c01404{left:282.480000pt;}
.x8d_c01404{left:286.560000pt;}
.x1e_c01404{left:292.849333pt;}
.x76_c01404{left:294.478667pt;}
.x81_c01404{left:295.677333pt;}
.x55_c01404{left:302.640000pt;}
.x69_c01404{left:303.640000pt;}
.x7a_c01404{left:305.584000pt;}
.x12_c01404{left:311.821333pt;}
.x1f_c01404{left:321.181333pt;}
.x30_c01404{left:322.080000pt;}
.x6a_c01404{left:323.810667pt;}
.x45_c01404{left:332.160000pt;}
.x70_c01404{left:333.118667pt;}
.x93_c01404{left:334.080000pt;}
.x87_c01404{left:335.760000pt;}
.x6_c01404{left:340.560000pt;}
.x4e_c01404{left:342.720000pt;}
.x13_c01404{left:350.940000pt;}
.x4c_c01404{left:351.840000pt;}
.x46_c01404{left:353.040000pt;}
.x60_c01404{left:361.680000pt;}
.x7b_c01404{left:363.405333pt;}
.x27_c01404{left:370.800000pt;}
.x39_c01404{left:371.760000pt;}
.x7_c01404{left:379.920000pt;}
.x5e_c01404{left:381.360000pt;}
.x14_c01404{left:389.837333pt;}
.x4f_c01404{left:391.200000pt;}
.x2c_c01404{left:398.880000pt;}
.x6b_c01404{left:401.316000pt;}
.x8_c01404{left:408.720000pt;}
.x64_c01404{left:410.880000pt;}
.x94_c01404{left:412.080000pt;}
.x35_c01404{left:418.868000pt;}
.x3a_c01404{left:420.720000pt;}
.x15_c01404{left:428.720000pt;}
.x96_c01404{left:431.760000pt;}
.x20_c01404{left:438.302667pt;}
.x5b_c01404{left:439.200000pt;}
.x88_c01404{left:440.880000pt;}
.x47_c01404{left:449.280000pt;}
.x82_c01404{left:450.717333pt;}
.x16_c01404{left:456.318667pt;}
.x3f_c01404{left:458.880000pt;}
.x8e_c01404{left:459.840000pt;}
.x9_c01404{left:467.760000pt;}
.x56_c01404{left:468.720000pt;}
.x17_c01404{left:477.420000pt;}
.x50_c01404{left:478.320000pt;}
.x61_c01404{left:479.280000pt;}
.x6c_c01404{left:488.236000pt;}
.x8f_c01404{left:489.600000pt;}
.xa_c01404{left:496.560000pt;}
.x71_c01404{left:497.998667pt;}
.x36_c01404{left:505.757333pt;}
.x51_c01404{left:507.360000pt;}
.x48_c01404{left:516.000000pt;}
.x65_c01404{left:516.960000pt;}
.xb_c01404{left:525.360000pt;}
.x57_c01404{left:526.560000pt;}
.x28_c01404{left:534.720000pt;}
.x18_c01404{left:536.240000pt;}
.x83_c01404{left:537.837333pt;}
.x31_c01404{left:545.040000pt;}
.x77_c01404{left:547.198667pt;}
.x21_c01404{left:553.969333pt;}
.x58_c01404{left:556.560000pt;}
.x29_c01404{left:564.240000pt;}
.x52_c01404{left:575.520000pt;}
.x37_c01404{left:576.566667pt;}
.x32_c01404{left:582.960000pt;}
.x40_c01404{left:583.920000pt;}
.xc_c01404{left:593.040000pt;}
.x6d_c01404{left:595.500000pt;}
.x22_c01404{left:603.652000pt;}
.x84_c01404{left:605.757333pt;}
.x41_c01404{left:612.960000pt;}
.x72_c01404{left:614.158667pt;}
.x33_c01404{left:622.080000pt;}
.x89_c01404{left:626.400000pt;}
.x2d_c01404{left:631.200000pt;}
.x3b_c01404{left:632.400000pt;}
.x5c_c01404{left:633.600000pt;}
.xd_c01404{left:641.280000pt;}
.x23_c01404{left:642.768000pt;}
.x53_c01404{left:643.680000pt;}
.x8a_c01404{left:647.040000pt;}
.x2e_c01404{left:652.560000pt;}
.x19_c01404{left:661.277333pt;}
.x42_c01404{left:662.880000pt;}
.x6e_c01404{left:671.333333pt;}
.x62_c01404{left:672.480000pt;}
.x7c_c01404{left:674.220000pt;}
.x2a_c01404{left:680.400000pt;}
.x3c_c01404{left:681.600000pt;}
.x73_c01404{left:682.798667pt;}
.x59_c01404{left:690.960000pt;}
.x85_c01404{left:692.397333pt;}
.xe_c01404{left:699.360000pt;}
.x4d_c01404{left:701.040000pt;}
.x5d_c01404{left:718.080000pt;}
}





/* 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_c01405 {
    display:none;
  }
  .loading-indicator_c01405.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01405 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_c01405 { 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_c01405" -> "#page-container .classname_c01405")
 */
.pf_c01405 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01405 { /* 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_c01405.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01405 { /* 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_c01405 { /* 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_c01405 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01405 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01405 {overflow:visible;}
  }
}
.c_c01405 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01405 { /* 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_c01405:after { /* webkit #35443 */
  content: '';
}
.t_c01405:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01405 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 */
}
.__c01405 { /* 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_c01405 { /* info for Javascript */
  display:none;
}
.l_c01405 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01405 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01405 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01405: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_c01405 {
    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_c01405.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01405.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_c01405 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01405{font-family:sans-serif;visibility:hidden;}
.sc__c01405{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01405{-webkit-text-stroke:0px transparent;}
}
.y0_c01405{bottom:0.000000px;}
.h1_c01405{height:1250.250000px;}
.h0_c01405{height:1250.370000px;}
.w1_c01405{width:907.500000px;}
.w0_c01405{width:907.740000px;}
.x0_c01405{left:0.000000px;}
@media print{
.y0_c01405{bottom:0.000000pt;}
.h1_c01405{height:1111.333333pt;}
.h0_c01405{height:1111.440000pt;}
.w1_c01405{width:806.666667pt;}
.w0_c01405{width:806.880000pt;}
.x0_c01405{left:0.000000pt;}
}





/* 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_c01406 {
    display:none;
  }
  .loading-indicator_c01406.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01406 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_c01406 { 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_c01406" -> "#page-container .classname_c01406")
 */
.pf_c01406 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01406 { /* 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_c01406.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01406 { /* 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_c01406 { /* 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_c01406 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01406 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01406 {overflow:visible;}
  }
}
.c_c01406 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01406 { /* 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_c01406:after { /* webkit #35443 */
  content: '';
}
.t_c01406:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01406 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 */
}
.__c01406 { /* 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_c01406 { /* info for Javascript */
  display:none;
}
.l_c01406 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01406 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01406 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01406: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_c01406 {
    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_c01406.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01406.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_c01406 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01406{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01406;src:url('chunks/assets/font_c605e72f209fc835e906f064.woff2')format("woff");}.ff1_c01406{font-family:ff1_c01406;line-height:1.000000;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;}
.ma8_c01406{transform:matrix(0.020579,-0.000185,0.002250,0.249990,0,0);-ms-transform:matrix(0.020579,-0.000185,0.002250,0.249990,0,0);-webkit-transform:matrix(0.020579,-0.000185,0.002250,0.249990,0,0);}
.m6d_c01406{transform:matrix(0.127350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127350,0.000000,0.000000,0.250000,0,0);}
.m6f_c01406{transform:matrix(0.134640,-0.001212,0.002250,0.249990,0,0);-ms-transform:matrix(0.134640,-0.001212,0.002250,0.249990,0,0);-webkit-transform:matrix(0.134640,-0.001212,0.002250,0.249990,0,0);}
.mef_c01406{transform:matrix(0.142047,-0.000852,0.001500,0.249996,0,0);-ms-transform:matrix(0.142047,-0.000852,0.001500,0.249996,0,0);-webkit-transform:matrix(0.142047,-0.000852,0.001500,0.249996,0,0);}
.m0_c01406{transform:matrix(0.162065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162065,0.000000,0.000000,0.250000,0,0);}
.m7a_c01406{transform:matrix(0.167238,-0.001505,0.002250,0.249990,0,0);-ms-transform:matrix(0.167238,-0.001505,0.002250,0.249990,0,0);-webkit-transform:matrix(0.167238,-0.001505,0.002250,0.249990,0,0);}
.m7d_c01406{transform:matrix(0.176878,-0.001592,0.002250,0.249990,0,0);-ms-transform:matrix(0.176878,-0.001592,0.002250,0.249990,0,0);-webkit-transform:matrix(0.176878,-0.001592,0.002250,0.249990,0,0);}
.m79_c01406{transform:matrix(0.180983,-0.001629,0.002250,0.249990,0,0);-ms-transform:matrix(0.180983,-0.001629,0.002250,0.249990,0,0);-webkit-transform:matrix(0.180983,-0.001629,0.002250,0.249990,0,0);}
.m6b_c01406{transform:matrix(0.190830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190830,0.000000,0.000000,0.250000,0,0);}
.m63_c01406{transform:matrix(0.190852,-0.001718,0.002250,0.249990,0,0);-ms-transform:matrix(0.190852,-0.001718,0.002250,0.249990,0,0);-webkit-transform:matrix(0.190852,-0.001718,0.002250,0.249990,0,0);}
.m81_c01406{transform:matrix(0.191402,-0.001723,0.002250,0.249990,0,0);-ms-transform:matrix(0.191402,-0.001723,0.002250,0.249990,0,0);-webkit-transform:matrix(0.191402,-0.001723,0.002250,0.249990,0,0);}
.me3_c01406{transform:matrix(0.192282,-0.001731,0.002250,0.249990,0,0);-ms-transform:matrix(0.192282,-0.001731,0.002250,0.249990,0,0);-webkit-transform:matrix(0.192282,-0.001731,0.002250,0.249990,0,0);}
.m7c_c01406{transform:matrix(0.192352,-0.001731,0.002250,0.249990,0,0);-ms-transform:matrix(0.192352,-0.001731,0.002250,0.249990,0,0);-webkit-transform:matrix(0.192352,-0.001731,0.002250,0.249990,0,0);}
.m84_c01406{transform:matrix(0.193167,-0.001739,0.002250,0.249990,0,0);-ms-transform:matrix(0.193167,-0.001739,0.002250,0.249990,0,0);-webkit-transform:matrix(0.193167,-0.001739,0.002250,0.249990,0,0);}
.m83_c01406{transform:matrix(0.193292,-0.001740,0.002250,0.249990,0,0);-ms-transform:matrix(0.193292,-0.001740,0.002250,0.249990,0,0);-webkit-transform:matrix(0.193292,-0.001740,0.002250,0.249990,0,0);}
.m4_c01406{transform:matrix(0.193372,-0.001740,0.002250,0.249990,0,0);-ms-transform:matrix(0.193372,-0.001740,0.002250,0.249990,0,0);-webkit-transform:matrix(0.193372,-0.001740,0.002250,0.249990,0,0);}
.m85_c01406{transform:matrix(0.193892,-0.001745,0.002250,0.249990,0,0);-ms-transform:matrix(0.193892,-0.001745,0.002250,0.249990,0,0);-webkit-transform:matrix(0.193892,-0.001745,0.002250,0.249990,0,0);}
.m82_c01406{transform:matrix(0.194632,-0.001752,0.002250,0.249990,0,0);-ms-transform:matrix(0.194632,-0.001752,0.002250,0.249990,0,0);-webkit-transform:matrix(0.194632,-0.001752,0.002250,0.249990,0,0);}
.m7b_c01406{transform:matrix(0.195307,-0.001758,0.002250,0.249990,0,0);-ms-transform:matrix(0.195307,-0.001758,0.002250,0.249990,0,0);-webkit-transform:matrix(0.195307,-0.001758,0.002250,0.249990,0,0);}
.m7e_c01406{transform:matrix(0.197102,-0.001774,0.002250,0.249990,0,0);-ms-transform:matrix(0.197102,-0.001774,0.002250,0.249990,0,0);-webkit-transform:matrix(0.197102,-0.001774,0.002250,0.249990,0,0);}
.md1_c01406{transform:matrix(0.198367,-0.001785,0.002250,0.249990,0,0);-ms-transform:matrix(0.198367,-0.001785,0.002250,0.249990,0,0);-webkit-transform:matrix(0.198367,-0.001785,0.002250,0.249990,0,0);}
.m80_c01406{transform:matrix(0.200547,-0.001805,0.002250,0.249990,0,0);-ms-transform:matrix(0.200547,-0.001805,0.002250,0.249990,0,0);-webkit-transform:matrix(0.200547,-0.001805,0.002250,0.249990,0,0);}
.ma0_c01406{transform:matrix(0.201022,-0.001809,0.002250,0.249990,0,0);-ms-transform:matrix(0.201022,-0.001809,0.002250,0.249990,0,0);-webkit-transform:matrix(0.201022,-0.001809,0.002250,0.249990,0,0);}
.md4_c01406{transform:matrix(0.201297,-0.001812,0.002250,0.249990,0,0);-ms-transform:matrix(0.201297,-0.001812,0.002250,0.249990,0,0);-webkit-transform:matrix(0.201297,-0.001812,0.002250,0.249990,0,0);}
.mcf_c01406{transform:matrix(0.201367,-0.001812,0.002250,0.249990,0,0);-ms-transform:matrix(0.201367,-0.001812,0.002250,0.249990,0,0);-webkit-transform:matrix(0.201367,-0.001812,0.002250,0.249990,0,0);}
.ma4_c01406{transform:matrix(0.201487,-0.001813,0.002250,0.249990,0,0);-ms-transform:matrix(0.201487,-0.001813,0.002250,0.249990,0,0);-webkit-transform:matrix(0.201487,-0.001813,0.002250,0.249990,0,0);}
.mfa_c01406{transform:matrix(0.203286,-0.001220,0.001500,0.249996,0,0);-ms-transform:matrix(0.203286,-0.001220,0.001500,0.249996,0,0);-webkit-transform:matrix(0.203286,-0.001220,0.001500,0.249996,0,0);}
.mee_c01406{transform:matrix(0.203550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203550,0.000000,0.000000,0.250000,0,0);}
.m9e_c01406{transform:matrix(0.203967,-0.001836,0.002250,0.249990,0,0);-ms-transform:matrix(0.203967,-0.001836,0.002250,0.249990,0,0);-webkit-transform:matrix(0.203967,-0.001836,0.002250,0.249990,0,0);}
.mcc_c01406{transform:matrix(0.204452,-0.001840,0.002250,0.249990,0,0);-ms-transform:matrix(0.204452,-0.001840,0.002250,0.249990,0,0);-webkit-transform:matrix(0.204452,-0.001840,0.002250,0.249990,0,0);}
.m6c_c01406{transform:matrix(0.205765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205765,0.000000,0.000000,0.250000,0,0);}
.m37_c01406{transform:matrix(0.205807,-0.001852,0.002250,0.249990,0,0);-ms-transform:matrix(0.205807,-0.001852,0.002250,0.249990,0,0);-webkit-transform:matrix(0.205807,-0.001852,0.002250,0.249990,0,0);}
.ma6_c01406{transform:matrix(0.206252,-0.001856,0.002250,0.249990,0,0);-ms-transform:matrix(0.206252,-0.001856,0.002250,0.249990,0,0);-webkit-transform:matrix(0.206252,-0.001856,0.002250,0.249990,0,0);}
.m69_c01406{transform:matrix(0.206455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206455,0.000000,0.000000,0.250000,0,0);}
.mec_c01406{transform:matrix(0.206925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206925,0.000000,0.000000,0.250000,0,0);}
.m32_c01406{transform:matrix(0.208057,-0.001873,0.002250,0.249990,0,0);-ms-transform:matrix(0.208057,-0.001873,0.002250,0.249990,0,0);-webkit-transform:matrix(0.208057,-0.001873,0.002250,0.249990,0,0);}
.m6a_c01406{transform:matrix(0.208585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208585,0.000000,0.000000,0.250000,0,0);}
.m35_c01406{transform:matrix(0.209881,-0.001889,0.002250,0.249990,0,0);-ms-transform:matrix(0.209881,-0.001889,0.002250,0.249990,0,0);-webkit-transform:matrix(0.209881,-0.001889,0.002250,0.249990,0,0);}
.ma2_c01406{transform:matrix(0.210191,-0.001892,0.002250,0.249990,0,0);-ms-transform:matrix(0.210191,-0.001892,0.002250,0.249990,0,0);-webkit-transform:matrix(0.210191,-0.001892,0.002250,0.249990,0,0);}
.me4_c01406{transform:matrix(0.211206,-0.001901,0.002250,0.249990,0,0);-ms-transform:matrix(0.211206,-0.001901,0.002250,0.249990,0,0);-webkit-transform:matrix(0.211206,-0.001901,0.002250,0.249990,0,0);}
.mcd_c01406{transform:matrix(0.211691,-0.001905,0.002250,0.249990,0,0);-ms-transform:matrix(0.211691,-0.001905,0.002250,0.249990,0,0);-webkit-transform:matrix(0.211691,-0.001905,0.002250,0.249990,0,0);}
.m7_c01406{transform:matrix(0.211861,-0.001907,0.002250,0.249990,0,0);-ms-transform:matrix(0.211861,-0.001907,0.002250,0.249990,0,0);-webkit-transform:matrix(0.211861,-0.001907,0.002250,0.249990,0,0);}
.m7f_c01406{transform:matrix(0.212391,-0.001912,0.002250,0.249990,0,0);-ms-transform:matrix(0.212391,-0.001912,0.002250,0.249990,0,0);-webkit-transform:matrix(0.212391,-0.001912,0.002250,0.249990,0,0);}
.mfd_c01406{transform:matrix(0.212549,-0.002976,0.003500,0.249976,0,0);-ms-transform:matrix(0.212549,-0.002976,0.003500,0.249976,0,0);-webkit-transform:matrix(0.212549,-0.002976,0.003500,0.249976,0,0);}
.m1f_c01406{transform:matrix(0.213711,-0.001923,0.002250,0.249990,0,0);-ms-transform:matrix(0.213711,-0.001923,0.002250,0.249990,0,0);-webkit-transform:matrix(0.213711,-0.001923,0.002250,0.249990,0,0);}
.m100_c01406{transform:matrix(0.213784,-0.002993,0.003500,0.249976,0,0);-ms-transform:matrix(0.213784,-0.002993,0.003500,0.249976,0,0);-webkit-transform:matrix(0.213784,-0.002993,0.003500,0.249976,0,0);}
.m46_c01406{transform:matrix(0.213796,-0.001924,0.002250,0.249990,0,0);-ms-transform:matrix(0.213796,-0.001924,0.002250,0.249990,0,0);-webkit-transform:matrix(0.213796,-0.001924,0.002250,0.249990,0,0);}
.m2f_c01406{transform:matrix(0.214846,-0.001934,0.002250,0.249990,0,0);-ms-transform:matrix(0.214846,-0.001934,0.002250,0.249990,0,0);-webkit-transform:matrix(0.214846,-0.001934,0.002250,0.249990,0,0);}
.m26_c01406{transform:matrix(0.214921,-0.001934,0.002250,0.249990,0,0);-ms-transform:matrix(0.214921,-0.001934,0.002250,0.249990,0,0);-webkit-transform:matrix(0.214921,-0.001934,0.002250,0.249990,0,0);}
.m48_c01406{transform:matrix(0.216141,-0.001945,0.002250,0.249990,0,0);-ms-transform:matrix(0.216141,-0.001945,0.002250,0.249990,0,0);-webkit-transform:matrix(0.216141,-0.001945,0.002250,0.249990,0,0);}
.m103_c01406{transform:matrix(0.216314,-0.003028,0.003500,0.249976,0,0);-ms-transform:matrix(0.216314,-0.003028,0.003500,0.249976,0,0);-webkit-transform:matrix(0.216314,-0.003028,0.003500,0.249976,0,0);}
.m59_c01406{transform:matrix(0.216456,-0.001948,0.002250,0.249990,0,0);-ms-transform:matrix(0.216456,-0.001948,0.002250,0.249990,0,0);-webkit-transform:matrix(0.216456,-0.001948,0.002250,0.249990,0,0);}
.m4c_c01406{transform:matrix(0.216986,-0.001953,0.002250,0.249990,0,0);-ms-transform:matrix(0.216986,-0.001953,0.002250,0.249990,0,0);-webkit-transform:matrix(0.216986,-0.001953,0.002250,0.249990,0,0);}
.mf4_c01406{transform:matrix(0.216991,-0.001302,0.001500,0.249996,0,0);-ms-transform:matrix(0.216991,-0.001302,0.001500,0.249996,0,0);-webkit-transform:matrix(0.216991,-0.001302,0.001500,0.249996,0,0);}
.m66_c01406{transform:matrix(0.218736,-0.001969,0.002250,0.249990,0,0);-ms-transform:matrix(0.218736,-0.001969,0.002250,0.249990,0,0);-webkit-transform:matrix(0.218736,-0.001969,0.002250,0.249990,0,0);}
.md2_c01406{transform:matrix(0.218746,-0.001969,0.002250,0.249990,0,0);-ms-transform:matrix(0.218746,-0.001969,0.002250,0.249990,0,0);-webkit-transform:matrix(0.218746,-0.001969,0.002250,0.249990,0,0);}
.mbf_c01406{transform:matrix(0.218931,-0.001970,0.002250,0.249990,0,0);-ms-transform:matrix(0.218931,-0.001970,0.002250,0.249990,0,0);-webkit-transform:matrix(0.218931,-0.001970,0.002250,0.249990,0,0);}
.maa_c01406{transform:matrix(0.220181,-0.001982,0.002250,0.249990,0,0);-ms-transform:matrix(0.220181,-0.001982,0.002250,0.249990,0,0);-webkit-transform:matrix(0.220181,-0.001982,0.002250,0.249990,0,0);}
.m97_c01406{transform:matrix(0.220206,-0.001982,0.002250,0.249990,0,0);-ms-transform:matrix(0.220206,-0.001982,0.002250,0.249990,0,0);-webkit-transform:matrix(0.220206,-0.001982,0.002250,0.249990,0,0);}
.m9b_c01406{transform:matrix(0.220881,-0.001988,0.002250,0.249990,0,0);-ms-transform:matrix(0.220881,-0.001988,0.002250,0.249990,0,0);-webkit-transform:matrix(0.220881,-0.001988,0.002250,0.249990,0,0);}
.m5b_c01406{transform:matrix(0.222276,-0.002000,0.002250,0.249990,0,0);-ms-transform:matrix(0.222276,-0.002000,0.002250,0.249990,0,0);-webkit-transform:matrix(0.222276,-0.002000,0.002250,0.249990,0,0);}
.m4d_c01406{transform:matrix(0.222836,-0.002006,0.002250,0.249990,0,0);-ms-transform:matrix(0.222836,-0.002006,0.002250,0.249990,0,0);-webkit-transform:matrix(0.222836,-0.002006,0.002250,0.249990,0,0);}
.m9d_c01406{transform:matrix(0.223006,-0.002007,0.002250,0.249990,0,0);-ms-transform:matrix(0.223006,-0.002007,0.002250,0.249990,0,0);-webkit-transform:matrix(0.223006,-0.002007,0.002250,0.249990,0,0);}
.mc4_c01406{transform:matrix(0.223171,-0.002009,0.002250,0.249990,0,0);-ms-transform:matrix(0.223171,-0.002009,0.002250,0.249990,0,0);-webkit-transform:matrix(0.223171,-0.002009,0.002250,0.249990,0,0);}
.mca_c01406{transform:matrix(0.223266,-0.002009,0.002250,0.249990,0,0);-ms-transform:matrix(0.223266,-0.002009,0.002250,0.249990,0,0);-webkit-transform:matrix(0.223266,-0.002009,0.002250,0.249990,0,0);}
.md9_c01406{transform:matrix(0.223666,-0.002013,0.002250,0.249990,0,0);-ms-transform:matrix(0.223666,-0.002013,0.002250,0.249990,0,0);-webkit-transform:matrix(0.223666,-0.002013,0.002250,0.249990,0,0);}
.m30_c01406{transform:matrix(0.223746,-0.002014,0.002250,0.249990,0,0);-ms-transform:matrix(0.223746,-0.002014,0.002250,0.249990,0,0);-webkit-transform:matrix(0.223746,-0.002014,0.002250,0.249990,0,0);}
.m94_c01406{transform:matrix(0.224061,-0.002017,0.002250,0.249990,0,0);-ms-transform:matrix(0.224061,-0.002017,0.002250,0.249990,0,0);-webkit-transform:matrix(0.224061,-0.002017,0.002250,0.249990,0,0);}
.med_c01406{transform:matrix(0.224330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224330,0.000000,0.000000,0.250000,0,0);}
.mea_c01406{transform:matrix(0.224435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224435,0.000000,0.000000,0.250000,0,0);}
.m5a_c01406{transform:matrix(0.224726,-0.002023,0.002250,0.249990,0,0);-ms-transform:matrix(0.224726,-0.002023,0.002250,0.249990,0,0);-webkit-transform:matrix(0.224726,-0.002023,0.002250,0.249990,0,0);}
.m101_c01406{transform:matrix(0.224743,-0.003146,0.003500,0.249976,0,0);-ms-transform:matrix(0.224743,-0.003146,0.003500,0.249976,0,0);-webkit-transform:matrix(0.224743,-0.003146,0.003500,0.249976,0,0);}
.m1d_c01406{transform:matrix(0.224756,-0.002023,0.002250,0.249990,0,0);-ms-transform:matrix(0.224756,-0.002023,0.002250,0.249990,0,0);-webkit-transform:matrix(0.224756,-0.002023,0.002250,0.249990,0,0);}
.mc7_c01406{transform:matrix(0.225021,-0.002025,0.002250,0.249990,0,0);-ms-transform:matrix(0.225021,-0.002025,0.002250,0.249990,0,0);-webkit-transform:matrix(0.225021,-0.002025,0.002250,0.249990,0,0);}
.md5_c01406{transform:matrix(0.225046,-0.002025,0.002250,0.249990,0,0);-ms-transform:matrix(0.225046,-0.002025,0.002250,0.249990,0,0);-webkit-transform:matrix(0.225046,-0.002025,0.002250,0.249990,0,0);}
.ma3_c01406{transform:matrix(0.225246,-0.002027,0.002250,0.249990,0,0);-ms-transform:matrix(0.225246,-0.002027,0.002250,0.249990,0,0);-webkit-transform:matrix(0.225246,-0.002027,0.002250,0.249990,0,0);}
.meb_c01406{transform:matrix(0.225300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225300,0.000000,0.000000,0.250000,0,0);}
.mc5_c01406{transform:matrix(0.226016,-0.002034,0.002250,0.249990,0,0);-ms-transform:matrix(0.226016,-0.002034,0.002250,0.249990,0,0);-webkit-transform:matrix(0.226016,-0.002034,0.002250,0.249990,0,0);}
.me6_c01406{transform:matrix(0.226026,-0.002034,0.002250,0.249990,0,0);-ms-transform:matrix(0.226026,-0.002034,0.002250,0.249990,0,0);-webkit-transform:matrix(0.226026,-0.002034,0.002250,0.249990,0,0);}
.mc8_c01406{transform:matrix(0.226036,-0.002034,0.002250,0.249990,0,0);-ms-transform:matrix(0.226036,-0.002034,0.002250,0.249990,0,0);-webkit-transform:matrix(0.226036,-0.002034,0.002250,0.249990,0,0);}
.m40_c01406{transform:matrix(0.226056,-0.002035,0.002250,0.249990,0,0);-ms-transform:matrix(0.226056,-0.002035,0.002250,0.249990,0,0);-webkit-transform:matrix(0.226056,-0.002035,0.002250,0.249990,0,0);}
.mae_c01406{transform:matrix(0.226566,-0.002039,0.002250,0.249990,0,0);-ms-transform:matrix(0.226566,-0.002039,0.002250,0.249990,0,0);-webkit-transform:matrix(0.226566,-0.002039,0.002250,0.249990,0,0);}
.mcb_c01406{transform:matrix(0.226806,-0.002041,0.002250,0.249990,0,0);-ms-transform:matrix(0.226806,-0.002041,0.002250,0.249990,0,0);-webkit-transform:matrix(0.226806,-0.002041,0.002250,0.249990,0,0);}
.ma7_c01406{transform:matrix(0.227081,-0.002044,0.002250,0.249990,0,0);-ms-transform:matrix(0.227081,-0.002044,0.002250,0.249990,0,0);-webkit-transform:matrix(0.227081,-0.002044,0.002250,0.249990,0,0);}
.m93_c01406{transform:matrix(0.227086,-0.002044,0.002250,0.249990,0,0);-ms-transform:matrix(0.227086,-0.002044,0.002250,0.249990,0,0);-webkit-transform:matrix(0.227086,-0.002044,0.002250,0.249990,0,0);}
.m31_c01406{transform:matrix(0.227311,-0.002046,0.002250,0.249990,0,0);-ms-transform:matrix(0.227311,-0.002046,0.002250,0.249990,0,0);-webkit-transform:matrix(0.227311,-0.002046,0.002250,0.249990,0,0);}
.mbe_c01406{transform:matrix(0.227616,-0.002049,0.002250,0.249990,0,0);-ms-transform:matrix(0.227616,-0.002049,0.002250,0.249990,0,0);-webkit-transform:matrix(0.227616,-0.002049,0.002250,0.249990,0,0);}
.m71_c01406{transform:matrix(0.227936,-0.002051,0.002250,0.249990,0,0);-ms-transform:matrix(0.227936,-0.002051,0.002250,0.249990,0,0);-webkit-transform:matrix(0.227936,-0.002051,0.002250,0.249990,0,0);}
.mc1_c01406{transform:matrix(0.228116,-0.002053,0.002250,0.249990,0,0);-ms-transform:matrix(0.228116,-0.002053,0.002250,0.249990,0,0);-webkit-transform:matrix(0.228116,-0.002053,0.002250,0.249990,0,0);}
.mb1_c01406{transform:matrix(0.228556,-0.002057,0.002250,0.249990,0,0);-ms-transform:matrix(0.228556,-0.002057,0.002250,0.249990,0,0);-webkit-transform:matrix(0.228556,-0.002057,0.002250,0.249990,0,0);}
.md0_c01406{transform:matrix(0.228746,-0.002059,0.002250,0.249990,0,0);-ms-transform:matrix(0.228746,-0.002059,0.002250,0.249990,0,0);-webkit-transform:matrix(0.228746,-0.002059,0.002250,0.249990,0,0);}
.m1b_c01406{transform:matrix(0.229196,-0.002063,0.002250,0.249990,0,0);-ms-transform:matrix(0.229196,-0.002063,0.002250,0.249990,0,0);-webkit-transform:matrix(0.229196,-0.002063,0.002250,0.249990,0,0);}
.m8d_c01406{transform:matrix(0.229516,-0.002066,0.002250,0.249990,0,0);-ms-transform:matrix(0.229516,-0.002066,0.002250,0.249990,0,0);-webkit-transform:matrix(0.229516,-0.002066,0.002250,0.249990,0,0);}
.mc3_c01406{transform:matrix(0.229876,-0.002069,0.002250,0.249990,0,0);-ms-transform:matrix(0.229876,-0.002069,0.002250,0.249990,0,0);-webkit-transform:matrix(0.229876,-0.002069,0.002250,0.249990,0,0);}
.me1_c01406{transform:matrix(0.230326,-0.002073,0.002250,0.249990,0,0);-ms-transform:matrix(0.230326,-0.002073,0.002250,0.249990,0,0);-webkit-transform:matrix(0.230326,-0.002073,0.002250,0.249990,0,0);}
.mdd_c01406{transform:matrix(0.230331,-0.002073,0.002250,0.249990,0,0);-ms-transform:matrix(0.230331,-0.002073,0.002250,0.249990,0,0);-webkit-transform:matrix(0.230331,-0.002073,0.002250,0.249990,0,0);}
.m50_c01406{transform:matrix(0.230436,-0.002074,0.002250,0.249990,0,0);-ms-transform:matrix(0.230436,-0.002074,0.002250,0.249990,0,0);-webkit-transform:matrix(0.230436,-0.002074,0.002250,0.249990,0,0);}
.m28_c01406{transform:matrix(0.230886,-0.002078,0.002250,0.249990,0,0);-ms-transform:matrix(0.230886,-0.002078,0.002250,0.249990,0,0);-webkit-transform:matrix(0.230886,-0.002078,0.002250,0.249990,0,0);}
.m65_c01406{transform:matrix(0.230906,-0.002078,0.002250,0.249990,0,0);-ms-transform:matrix(0.230906,-0.002078,0.002250,0.249990,0,0);-webkit-transform:matrix(0.230906,-0.002078,0.002250,0.249990,0,0);}
.mce_c01406{transform:matrix(0.231196,-0.002081,0.002250,0.249990,0,0);-ms-transform:matrix(0.231196,-0.002081,0.002250,0.249990,0,0);-webkit-transform:matrix(0.231196,-0.002081,0.002250,0.249990,0,0);}
.ma1_c01406{transform:matrix(0.231531,-0.002084,0.002250,0.249990,0,0);-ms-transform:matrix(0.231531,-0.002084,0.002250,0.249990,0,0);-webkit-transform:matrix(0.231531,-0.002084,0.002250,0.249990,0,0);}
.m61_c01406{transform:matrix(0.232346,-0.002091,0.002250,0.249990,0,0);-ms-transform:matrix(0.232346,-0.002091,0.002250,0.249990,0,0);-webkit-transform:matrix(0.232346,-0.002091,0.002250,0.249990,0,0);}
.m38_c01406{transform:matrix(0.232381,-0.002091,0.002250,0.249990,0,0);-ms-transform:matrix(0.232381,-0.002091,0.002250,0.249990,0,0);-webkit-transform:matrix(0.232381,-0.002091,0.002250,0.249990,0,0);}
.mf5_c01406{transform:matrix(0.232386,-0.001394,0.001500,0.249996,0,0);-ms-transform:matrix(0.232386,-0.001394,0.001500,0.249996,0,0);-webkit-transform:matrix(0.232386,-0.001394,0.001500,0.249996,0,0);}
.m116_c01406{transform:matrix(0.232391,-0.002556,0.002750,0.249985,0,0);-ms-transform:matrix(0.232391,-0.002556,0.002750,0.249985,0,0);-webkit-transform:matrix(0.232391,-0.002556,0.002750,0.249985,0,0);}
.m33_c01406{transform:matrix(0.232926,-0.002096,0.002250,0.249990,0,0);-ms-transform:matrix(0.232926,-0.002096,0.002250,0.249990,0,0);-webkit-transform:matrix(0.232926,-0.002096,0.002250,0.249990,0,0);}
.m36_c01406{transform:matrix(0.232936,-0.002096,0.002250,0.249990,0,0);-ms-transform:matrix(0.232936,-0.002096,0.002250,0.249990,0,0);-webkit-transform:matrix(0.232936,-0.002096,0.002250,0.249990,0,0);}
.md_c01406{transform:matrix(0.233116,-0.002098,0.002250,0.249990,0,0);-ms-transform:matrix(0.233116,-0.002098,0.002250,0.249990,0,0);-webkit-transform:matrix(0.233116,-0.002098,0.002250,0.249990,0,0);}
.m34_c01406{transform:matrix(0.233476,-0.002101,0.002250,0.249990,0,0);-ms-transform:matrix(0.233476,-0.002101,0.002250,0.249990,0,0);-webkit-transform:matrix(0.233476,-0.002101,0.002250,0.249990,0,0);}
.m99_c01406{transform:matrix(0.233626,-0.002103,0.002250,0.249990,0,0);-ms-transform:matrix(0.233626,-0.002103,0.002250,0.249990,0,0);-webkit-transform:matrix(0.233626,-0.002103,0.002250,0.249990,0,0);}
.m55_c01406{transform:matrix(0.234526,-0.002111,0.002250,0.249990,0,0);-ms-transform:matrix(0.234526,-0.002111,0.002250,0.249990,0,0);-webkit-transform:matrix(0.234526,-0.002111,0.002250,0.249990,0,0);}
.me2_c01406{transform:matrix(0.234610,-0.002111,0.002250,0.249990,0,0);-ms-transform:matrix(0.234610,-0.002111,0.002250,0.249990,0,0);-webkit-transform:matrix(0.234610,-0.002111,0.002250,0.249990,0,0);}
.m9f_c01406{transform:matrix(0.234660,-0.002112,0.002250,0.249990,0,0);-ms-transform:matrix(0.234660,-0.002112,0.002250,0.249990,0,0);-webkit-transform:matrix(0.234660,-0.002112,0.002250,0.249990,0,0);}
.mad_c01406{transform:matrix(0.234680,-0.002112,0.002250,0.249990,0,0);-ms-transform:matrix(0.234680,-0.002112,0.002250,0.249990,0,0);-webkit-transform:matrix(0.234680,-0.002112,0.002250,0.249990,0,0);}
.m5c_c01406{transform:matrix(0.234775,-0.002113,0.002250,0.249990,0,0);-ms-transform:matrix(0.234775,-0.002113,0.002250,0.249990,0,0);-webkit-transform:matrix(0.234775,-0.002113,0.002250,0.249990,0,0);}
.m53_c01406{transform:matrix(0.234845,-0.002114,0.002250,0.249990,0,0);-ms-transform:matrix(0.234845,-0.002114,0.002250,0.249990,0,0);-webkit-transform:matrix(0.234845,-0.002114,0.002250,0.249990,0,0);}
.m68_c01406{transform:matrix(0.235225,-0.002117,0.002250,0.249990,0,0);-ms-transform:matrix(0.235225,-0.002117,0.002250,0.249990,0,0);-webkit-transform:matrix(0.235225,-0.002117,0.002250,0.249990,0,0);}
.m70_c01406{transform:matrix(0.235425,-0.002119,0.002250,0.249990,0,0);-ms-transform:matrix(0.235425,-0.002119,0.002250,0.249990,0,0);-webkit-transform:matrix(0.235425,-0.002119,0.002250,0.249990,0,0);}
.mf_c01406{transform:matrix(0.236100,-0.002125,0.002250,0.249990,0,0);-ms-transform:matrix(0.236100,-0.002125,0.002250,0.249990,0,0);-webkit-transform:matrix(0.236100,-0.002125,0.002250,0.249990,0,0);}
.mf2_c01406{transform:matrix(0.236176,-0.001417,0.001500,0.249996,0,0);-ms-transform:matrix(0.236176,-0.001417,0.001500,0.249996,0,0);-webkit-transform:matrix(0.236176,-0.001417,0.001500,0.249996,0,0);}
.m49_c01406{transform:matrix(0.236220,-0.002126,0.002250,0.249990,0,0);-ms-transform:matrix(0.236220,-0.002126,0.002250,0.249990,0,0);-webkit-transform:matrix(0.236220,-0.002126,0.002250,0.249990,0,0);}
.mb6_c01406{transform:matrix(0.236595,-0.002129,0.002250,0.249990,0,0);-ms-transform:matrix(0.236595,-0.002129,0.002250,0.249990,0,0);-webkit-transform:matrix(0.236595,-0.002129,0.002250,0.249990,0,0);}
.m2e_c01406{transform:matrix(0.236630,-0.002130,0.002250,0.249990,0,0);-ms-transform:matrix(0.236630,-0.002130,0.002250,0.249990,0,0);-webkit-transform:matrix(0.236630,-0.002130,0.002250,0.249990,0,0);}
.m6e_c01406{transform:matrix(0.236675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236675,0.000000,0.000000,0.250000,0,0);}
.m4e_c01406{transform:matrix(0.236860,-0.002132,0.002250,0.249990,0,0);-ms-transform:matrix(0.236860,-0.002132,0.002250,0.249990,0,0);-webkit-transform:matrix(0.236860,-0.002132,0.002250,0.249990,0,0);}
.m10e_c01406{transform:matrix(0.237171,-0.002609,0.002750,0.249985,0,0);-ms-transform:matrix(0.237171,-0.002609,0.002750,0.249985,0,0);-webkit-transform:matrix(0.237171,-0.002609,0.002750,0.249985,0,0);}
.ma_c01406{transform:matrix(0.237795,-0.002140,0.002250,0.249990,0,0);-ms-transform:matrix(0.237795,-0.002140,0.002250,0.249990,0,0);-webkit-transform:matrix(0.237795,-0.002140,0.002250,0.249990,0,0);}
.mfe_c01406{transform:matrix(0.237882,-0.003330,0.003500,0.249976,0,0);-ms-transform:matrix(0.237882,-0.003330,0.003500,0.249976,0,0);-webkit-transform:matrix(0.237882,-0.003330,0.003500,0.249976,0,0);}
.m89_c01406{transform:matrix(0.238280,-0.002145,0.002250,0.249990,0,0);-ms-transform:matrix(0.238280,-0.002145,0.002250,0.249990,0,0);-webkit-transform:matrix(0.238280,-0.002145,0.002250,0.249990,0,0);}
.m3a_c01406{transform:matrix(0.238525,-0.002147,0.002250,0.249990,0,0);-ms-transform:matrix(0.238525,-0.002147,0.002250,0.249990,0,0);-webkit-transform:matrix(0.238525,-0.002147,0.002250,0.249990,0,0);}
.m114_c01406{transform:matrix(0.239281,-0.002632,0.002750,0.249985,0,0);-ms-transform:matrix(0.239281,-0.002632,0.002750,0.249985,0,0);-webkit-transform:matrix(0.239281,-0.002632,0.002750,0.249985,0,0);}
.ma5_c01406{transform:matrix(0.239300,-0.002154,0.002250,0.249990,0,0);-ms-transform:matrix(0.239300,-0.002154,0.002250,0.249990,0,0);-webkit-transform:matrix(0.239300,-0.002154,0.002250,0.249990,0,0);}
.m20_c01406{transform:matrix(0.239530,-0.002156,0.002250,0.249990,0,0);-ms-transform:matrix(0.239530,-0.002156,0.002250,0.249990,0,0);-webkit-transform:matrix(0.239530,-0.002156,0.002250,0.249990,0,0);}
.mc6_c01406{transform:matrix(0.239840,-0.002159,0.002250,0.249990,0,0);-ms-transform:matrix(0.239840,-0.002159,0.002250,0.249990,0,0);-webkit-transform:matrix(0.239840,-0.002159,0.002250,0.249990,0,0);}
.m25_c01406{transform:matrix(0.239900,-0.002159,0.002250,0.249990,0,0);-ms-transform:matrix(0.239900,-0.002159,0.002250,0.249990,0,0);-webkit-transform:matrix(0.239900,-0.002159,0.002250,0.249990,0,0);}
.m5_c01406{transform:matrix(0.239950,-0.002160,0.002250,0.249990,0,0);-ms-transform:matrix(0.239950,-0.002160,0.002250,0.249990,0,0);-webkit-transform:matrix(0.239950,-0.002160,0.002250,0.249990,0,0);}
.mc2_c01406{transform:matrix(0.240035,-0.002160,0.002250,0.249990,0,0);-ms-transform:matrix(0.240035,-0.002160,0.002250,0.249990,0,0);-webkit-transform:matrix(0.240035,-0.002160,0.002250,0.249990,0,0);}
.m62_c01406{transform:matrix(0.240075,-0.002161,0.002250,0.249990,0,0);-ms-transform:matrix(0.240075,-0.002161,0.002250,0.249990,0,0);-webkit-transform:matrix(0.240075,-0.002161,0.002250,0.249990,0,0);}
.m41_c01406{transform:matrix(0.240095,-0.002161,0.002250,0.249990,0,0);-ms-transform:matrix(0.240095,-0.002161,0.002250,0.249990,0,0);-webkit-transform:matrix(0.240095,-0.002161,0.002250,0.249990,0,0);}
.me9_c01406{transform:matrix(0.240170,-0.002162,0.002250,0.249990,0,0);-ms-transform:matrix(0.240170,-0.002162,0.002250,0.249990,0,0);-webkit-transform:matrix(0.240170,-0.002162,0.002250,0.249990,0,0);}
.m47_c01406{transform:matrix(0.240390,-0.002164,0.002250,0.249990,0,0);-ms-transform:matrix(0.240390,-0.002164,0.002250,0.249990,0,0);-webkit-transform:matrix(0.240390,-0.002164,0.002250,0.249990,0,0);}
.mb8_c01406{transform:matrix(0.240625,-0.002166,0.002250,0.249990,0,0);-ms-transform:matrix(0.240625,-0.002166,0.002250,0.249990,0,0);-webkit-transform:matrix(0.240625,-0.002166,0.002250,0.249990,0,0);}
.m51_c01406{transform:matrix(0.240915,-0.002168,0.002250,0.249990,0,0);-ms-transform:matrix(0.240915,-0.002168,0.002250,0.249990,0,0);-webkit-transform:matrix(0.240915,-0.002168,0.002250,0.249990,0,0);}
.mdb_c01406{transform:matrix(0.241020,-0.002169,0.002250,0.249990,0,0);-ms-transform:matrix(0.241020,-0.002169,0.002250,0.249990,0,0);-webkit-transform:matrix(0.241020,-0.002169,0.002250,0.249990,0,0);}
.md3_c01406{transform:matrix(0.241165,-0.002170,0.002250,0.249990,0,0);-ms-transform:matrix(0.241165,-0.002170,0.002250,0.249990,0,0);-webkit-transform:matrix(0.241165,-0.002170,0.002250,0.249990,0,0);}
.m5f_c01406{transform:matrix(0.241220,-0.002171,0.002250,0.249990,0,0);-ms-transform:matrix(0.241220,-0.002171,0.002250,0.249990,0,0);-webkit-transform:matrix(0.241220,-0.002171,0.002250,0.249990,0,0);}
.me0_c01406{transform:matrix(0.241315,-0.002172,0.002250,0.249990,0,0);-ms-transform:matrix(0.241315,-0.002172,0.002250,0.249990,0,0);-webkit-transform:matrix(0.241315,-0.002172,0.002250,0.249990,0,0);}
.m5e_c01406{transform:matrix(0.241405,-0.002173,0.002250,0.249990,0,0);-ms-transform:matrix(0.241405,-0.002173,0.002250,0.249990,0,0);-webkit-transform:matrix(0.241405,-0.002173,0.002250,0.249990,0,0);}
.m6_c01406{transform:matrix(0.241500,-0.002174,0.002250,0.249990,0,0);-ms-transform:matrix(0.241500,-0.002174,0.002250,0.249990,0,0);-webkit-transform:matrix(0.241500,-0.002174,0.002250,0.249990,0,0);}
.m4b_c01406{transform:matrix(0.242105,-0.002179,0.002250,0.249990,0,0);-ms-transform:matrix(0.242105,-0.002179,0.002250,0.249990,0,0);-webkit-transform:matrix(0.242105,-0.002179,0.002250,0.249990,0,0);}
.m104_c01406{transform:matrix(0.242111,-0.003390,0.003500,0.249976,0,0);-ms-transform:matrix(0.242111,-0.003390,0.003500,0.249976,0,0);-webkit-transform:matrix(0.242111,-0.003390,0.003500,0.249976,0,0);}
.m74_c01406{transform:matrix(0.242125,-0.002179,0.002250,0.249990,0,0);-ms-transform:matrix(0.242125,-0.002179,0.002250,0.249990,0,0);-webkit-transform:matrix(0.242125,-0.002179,0.002250,0.249990,0,0);}
.m3_c01406{transform:matrix(0.242665,-0.002184,0.002250,0.249990,0,0);-ms-transform:matrix(0.242665,-0.002184,0.002250,0.249990,0,0);-webkit-transform:matrix(0.242665,-0.002184,0.002250,0.249990,0,0);}
.m3e_c01406{transform:matrix(0.242735,-0.002185,0.002250,0.249990,0,0);-ms-transform:matrix(0.242735,-0.002185,0.002250,0.249990,0,0);-webkit-transform:matrix(0.242735,-0.002185,0.002250,0.249990,0,0);}
.m19_c01406{transform:matrix(0.242745,-0.002185,0.002250,0.249990,0,0);-ms-transform:matrix(0.242745,-0.002185,0.002250,0.249990,0,0);-webkit-transform:matrix(0.242745,-0.002185,0.002250,0.249990,0,0);}
.mb4_c01406{transform:matrix(0.243200,-0.002189,0.002250,0.249990,0,0);-ms-transform:matrix(0.243200,-0.002189,0.002250,0.249990,0,0);-webkit-transform:matrix(0.243200,-0.002189,0.002250,0.249990,0,0);}
.m9c_c01406{transform:matrix(0.243280,-0.002190,0.002250,0.249990,0,0);-ms-transform:matrix(0.243280,-0.002190,0.002250,0.249990,0,0);-webkit-transform:matrix(0.243280,-0.002190,0.002250,0.249990,0,0);}
.mfc_c01406{transform:matrix(0.243446,-0.003408,0.003500,0.249976,0,0);-ms-transform:matrix(0.243446,-0.003408,0.003500,0.249976,0,0);-webkit-transform:matrix(0.243446,-0.003408,0.003500,0.249976,0,0);}
.mde_c01406{transform:matrix(0.243530,-0.002192,0.002250,0.249990,0,0);-ms-transform:matrix(0.243530,-0.002192,0.002250,0.249990,0,0);-webkit-transform:matrix(0.243530,-0.002192,0.002250,0.249990,0,0);}
.m60_c01406{transform:matrix(0.243745,-0.002194,0.002250,0.249990,0,0);-ms-transform:matrix(0.243745,-0.002194,0.002250,0.249990,0,0);-webkit-transform:matrix(0.243745,-0.002194,0.002250,0.249990,0,0);}
.mbc_c01406{transform:matrix(0.244085,-0.002197,0.002250,0.249990,0,0);-ms-transform:matrix(0.244085,-0.002197,0.002250,0.249990,0,0);-webkit-transform:matrix(0.244085,-0.002197,0.002250,0.249990,0,0);}
.m11_c01406{transform:matrix(0.244245,-0.002198,0.002250,0.249990,0,0);-ms-transform:matrix(0.244245,-0.002198,0.002250,0.249990,0,0);-webkit-transform:matrix(0.244245,-0.002198,0.002250,0.249990,0,0);}
.m8e_c01406{transform:matrix(0.244465,-0.002200,0.002250,0.249990,0,0);-ms-transform:matrix(0.244465,-0.002200,0.002250,0.249990,0,0);-webkit-transform:matrix(0.244465,-0.002200,0.002250,0.249990,0,0);}
.m4a_c01406{transform:matrix(0.244610,-0.002201,0.002250,0.249990,0,0);-ms-transform:matrix(0.244610,-0.002201,0.002250,0.249990,0,0);-webkit-transform:matrix(0.244610,-0.002201,0.002250,0.249990,0,0);}
.m98_c01406{transform:matrix(0.244920,-0.002204,0.002250,0.249990,0,0);-ms-transform:matrix(0.244920,-0.002204,0.002250,0.249990,0,0);-webkit-transform:matrix(0.244920,-0.002204,0.002250,0.249990,0,0);}
.m5d_c01406{transform:matrix(0.245005,-0.002205,0.002250,0.249990,0,0);-ms-transform:matrix(0.245005,-0.002205,0.002250,0.249990,0,0);-webkit-transform:matrix(0.245005,-0.002205,0.002250,0.249990,0,0);}
.me7_c01406{transform:matrix(0.245065,-0.002206,0.002250,0.249990,0,0);-ms-transform:matrix(0.245065,-0.002206,0.002250,0.249990,0,0);-webkit-transform:matrix(0.245065,-0.002206,0.002250,0.249990,0,0);}
.m44_c01406{transform:matrix(0.245205,-0.002207,0.002250,0.249990,0,0);-ms-transform:matrix(0.245205,-0.002207,0.002250,0.249990,0,0);-webkit-transform:matrix(0.245205,-0.002207,0.002250,0.249990,0,0);}
.mf8_c01406{transform:matrix(0.245216,-0.001471,0.001500,0.249996,0,0);-ms-transform:matrix(0.245216,-0.001471,0.001500,0.249996,0,0);-webkit-transform:matrix(0.245216,-0.001471,0.001500,0.249996,0,0);}
.m8_c01406{transform:matrix(0.245225,-0.002207,0.002250,0.249990,0,0);-ms-transform:matrix(0.245225,-0.002207,0.002250,0.249990,0,0);-webkit-transform:matrix(0.245225,-0.002207,0.002250,0.249990,0,0);}
.m8b_c01406{transform:matrix(0.245665,-0.002211,0.002250,0.249990,0,0);-ms-transform:matrix(0.245665,-0.002211,0.002250,0.249990,0,0);-webkit-transform:matrix(0.245665,-0.002211,0.002250,0.249990,0,0);}
.m105_c01406{transform:matrix(0.245746,-0.003440,0.003500,0.249976,0,0);-ms-transform:matrix(0.245746,-0.003440,0.003500,0.249976,0,0);-webkit-transform:matrix(0.245746,-0.003440,0.003500,0.249976,0,0);}
.mf6_c01406{transform:matrix(0.245971,-0.001476,0.001500,0.249996,0,0);-ms-transform:matrix(0.245971,-0.001476,0.001500,0.249996,0,0);-webkit-transform:matrix(0.245971,-0.001476,0.001500,0.249996,0,0);}
.mf0_c01406{transform:matrix(0.245986,-0.001476,0.001500,0.249996,0,0);-ms-transform:matrix(0.245986,-0.001476,0.001500,0.249996,0,0);-webkit-transform:matrix(0.245986,-0.001476,0.001500,0.249996,0,0);}
.m1a_c01406{transform:matrix(0.246235,-0.002216,0.002250,0.249990,0,0);-ms-transform:matrix(0.246235,-0.002216,0.002250,0.249990,0,0);-webkit-transform:matrix(0.246235,-0.002216,0.002250,0.249990,0,0);}
.m3c_c01406{transform:matrix(0.246650,-0.002220,0.002250,0.249990,0,0);-ms-transform:matrix(0.246650,-0.002220,0.002250,0.249990,0,0);-webkit-transform:matrix(0.246650,-0.002220,0.002250,0.249990,0,0);}
.mc_c01406{transform:matrix(0.246830,-0.002221,0.002250,0.249990,0,0);-ms-transform:matrix(0.246830,-0.002221,0.002250,0.249990,0,0);-webkit-transform:matrix(0.246830,-0.002221,0.002250,0.249990,0,0);}
.m8a_c01406{transform:matrix(0.247205,-0.002225,0.002250,0.249990,0,0);-ms-transform:matrix(0.247205,-0.002225,0.002250,0.249990,0,0);-webkit-transform:matrix(0.247205,-0.002225,0.002250,0.249990,0,0);}
.m102_c01406{transform:matrix(0.247351,-0.003463,0.003500,0.249976,0,0);-ms-transform:matrix(0.247351,-0.003463,0.003500,0.249976,0,0);-webkit-transform:matrix(0.247351,-0.003463,0.003500,0.249976,0,0);}
.mfb_c01406{transform:matrix(0.247391,-0.001484,0.001500,0.249996,0,0);-ms-transform:matrix(0.247391,-0.001484,0.001500,0.249996,0,0);-webkit-transform:matrix(0.247391,-0.001484,0.001500,0.249996,0,0);}
.m111_c01406{transform:matrix(0.247625,-0.002724,0.002750,0.249985,0,0);-ms-transform:matrix(0.247625,-0.002724,0.002750,0.249985,0,0);-webkit-transform:matrix(0.247625,-0.002724,0.002750,0.249985,0,0);}
.m57_c01406{transform:matrix(0.247745,-0.002230,0.002250,0.249990,0,0);-ms-transform:matrix(0.247745,-0.002230,0.002250,0.249990,0,0);-webkit-transform:matrix(0.247745,-0.002230,0.002250,0.249990,0,0);}
.m1e_c01406{transform:matrix(0.248645,-0.002238,0.002250,0.249990,0,0);-ms-transform:matrix(0.248645,-0.002238,0.002250,0.249990,0,0);-webkit-transform:matrix(0.248645,-0.002238,0.002250,0.249990,0,0);}
.m72_c01406{transform:matrix(0.248995,-0.002241,0.002250,0.249990,0,0);-ms-transform:matrix(0.248995,-0.002241,0.002250,0.249990,0,0);-webkit-transform:matrix(0.248995,-0.002241,0.002250,0.249990,0,0);}
.md8_c01406{transform:matrix(0.249030,-0.002241,0.002250,0.249990,0,0);-ms-transform:matrix(0.249030,-0.002241,0.002250,0.249990,0,0);-webkit-transform:matrix(0.249030,-0.002241,0.002250,0.249990,0,0);}
.mb_c01406{transform:matrix(0.249080,-0.002242,0.002250,0.249990,0,0);-ms-transform:matrix(0.249080,-0.002242,0.002250,0.249990,0,0);-webkit-transform:matrix(0.249080,-0.002242,0.002250,0.249990,0,0);}
.m90_c01406{transform:matrix(0.249100,-0.002242,0.002250,0.249990,0,0);-ms-transform:matrix(0.249100,-0.002242,0.002250,0.249990,0,0);-webkit-transform:matrix(0.249100,-0.002242,0.002250,0.249990,0,0);}
.m64_c01406{transform:matrix(0.249845,-0.002249,0.002250,0.249990,0,0);-ms-transform:matrix(0.249845,-0.002249,0.002250,0.249990,0,0);-webkit-transform:matrix(0.249845,-0.002249,0.002250,0.249990,0,0);}
.m45_c01406{transform:matrix(0.249980,-0.002250,0.002250,0.249990,0,0);-ms-transform:matrix(0.249980,-0.002250,0.002250,0.249990,0,0);-webkit-transform:matrix(0.249980,-0.002250,0.002250,0.249990,0,0);}
.mac_c01406{transform:matrix(0.250000,-0.002250,0.002250,0.249990,0,0);-ms-transform:matrix(0.250000,-0.002250,0.002250,0.249990,0,0);-webkit-transform:matrix(0.250000,-0.002250,0.002250,0.249990,0,0);}
.m14_c01406{transform:matrix(0.250145,-0.002251,0.002250,0.249990,0,0);-ms-transform:matrix(0.250145,-0.002251,0.002250,0.249990,0,0);-webkit-transform:matrix(0.250145,-0.002251,0.002250,0.249990,0,0);}
.m1c_c01406{transform:matrix(0.250180,-0.002252,0.002250,0.249990,0,0);-ms-transform:matrix(0.250180,-0.002252,0.002250,0.249990,0,0);-webkit-transform:matrix(0.250180,-0.002252,0.002250,0.249990,0,0);}
.ma9_c01406{transform:matrix(0.250385,-0.002253,0.002250,0.249990,0,0);-ms-transform:matrix(0.250385,-0.002253,0.002250,0.249990,0,0);-webkit-transform:matrix(0.250385,-0.002253,0.002250,0.249990,0,0);}
.m87_c01406{transform:matrix(0.250650,-0.002256,0.002250,0.249990,0,0);-ms-transform:matrix(0.250650,-0.002256,0.002250,0.249990,0,0);-webkit-transform:matrix(0.250650,-0.002256,0.002250,0.249990,0,0);}
.m4f_c01406{transform:matrix(0.250680,-0.002256,0.002250,0.249990,0,0);-ms-transform:matrix(0.250680,-0.002256,0.002250,0.249990,0,0);-webkit-transform:matrix(0.250680,-0.002256,0.002250,0.249990,0,0);}
.m75_c01406{transform:matrix(0.250735,-0.002257,0.002250,0.249990,0,0);-ms-transform:matrix(0.250735,-0.002257,0.002250,0.249990,0,0);-webkit-transform:matrix(0.250735,-0.002257,0.002250,0.249990,0,0);}
.me5_c01406{transform:matrix(0.251015,-0.002259,0.002250,0.249990,0,0);-ms-transform:matrix(0.251015,-0.002259,0.002250,0.249990,0,0);-webkit-transform:matrix(0.251015,-0.002259,0.002250,0.249990,0,0);}
.mc0_c01406{transform:matrix(0.251860,-0.002267,0.002250,0.249990,0,0);-ms-transform:matrix(0.251860,-0.002267,0.002250,0.249990,0,0);-webkit-transform:matrix(0.251860,-0.002267,0.002250,0.249990,0,0);}
.m92_c01406{transform:matrix(0.252090,-0.002269,0.002250,0.249990,0,0);-ms-transform:matrix(0.252090,-0.002269,0.002250,0.249990,0,0);-webkit-transform:matrix(0.252090,-0.002269,0.002250,0.249990,0,0);}
.mb2_c01406{transform:matrix(0.252315,-0.002271,0.002250,0.249990,0,0);-ms-transform:matrix(0.252315,-0.002271,0.002250,0.249990,0,0);-webkit-transform:matrix(0.252315,-0.002271,0.002250,0.249990,0,0);}
.me8_c01406{transform:matrix(0.252740,-0.002275,0.002250,0.249990,0,0);-ms-transform:matrix(0.252740,-0.002275,0.002250,0.249990,0,0);-webkit-transform:matrix(0.252740,-0.002275,0.002250,0.249990,0,0);}
.m43_c01406{transform:matrix(0.252835,-0.002276,0.002250,0.249990,0,0);-ms-transform:matrix(0.252835,-0.002276,0.002250,0.249990,0,0);-webkit-transform:matrix(0.252835,-0.002276,0.002250,0.249990,0,0);}
.mf1_c01406{transform:matrix(0.253100,-0.001519,0.001500,0.249996,0,0);-ms-transform:matrix(0.253100,-0.001519,0.001500,0.249996,0,0);-webkit-transform:matrix(0.253100,-0.001519,0.001500,0.249996,0,0);}
.m78_c01406{transform:matrix(0.253640,-0.002283,0.002250,0.249990,0,0);-ms-transform:matrix(0.253640,-0.002283,0.002250,0.249990,0,0);-webkit-transform:matrix(0.253640,-0.002283,0.002250,0.249990,0,0);}
.m3d_c01406{transform:matrix(0.253865,-0.002285,0.002250,0.249990,0,0);-ms-transform:matrix(0.253865,-0.002285,0.002250,0.249990,0,0);-webkit-transform:matrix(0.253865,-0.002285,0.002250,0.249990,0,0);}
.m67_c01406{transform:matrix(0.253910,-0.002285,0.002250,0.249990,0,0);-ms-transform:matrix(0.253910,-0.002285,0.002250,0.249990,0,0);-webkit-transform:matrix(0.253910,-0.002285,0.002250,0.249990,0,0);}
.mc9_c01406{transform:matrix(0.254505,-0.002291,0.002250,0.249990,0,0);-ms-transform:matrix(0.254505,-0.002291,0.002250,0.249990,0,0);-webkit-transform:matrix(0.254505,-0.002291,0.002250,0.249990,0,0);}
.m21_c01406{transform:matrix(0.254905,-0.002294,0.002250,0.249990,0,0);-ms-transform:matrix(0.254905,-0.002294,0.002250,0.249990,0,0);-webkit-transform:matrix(0.254905,-0.002294,0.002250,0.249990,0,0);}
.mdf_c01406{transform:matrix(0.254940,-0.002294,0.002250,0.249990,0,0);-ms-transform:matrix(0.254940,-0.002294,0.002250,0.249990,0,0);-webkit-transform:matrix(0.254940,-0.002294,0.002250,0.249990,0,0);}
.m22_c01406{transform:matrix(0.255210,-0.002297,0.002250,0.249990,0,0);-ms-transform:matrix(0.255210,-0.002297,0.002250,0.249990,0,0);-webkit-transform:matrix(0.255210,-0.002297,0.002250,0.249990,0,0);}
.m96_c01406{transform:matrix(0.255405,-0.002299,0.002250,0.249990,0,0);-ms-transform:matrix(0.255405,-0.002299,0.002250,0.249990,0,0);-webkit-transform:matrix(0.255405,-0.002299,0.002250,0.249990,0,0);}
.m9a_c01406{transform:matrix(0.255670,-0.002301,0.002250,0.249990,0,0);-ms-transform:matrix(0.255670,-0.002301,0.002250,0.249990,0,0);-webkit-transform:matrix(0.255670,-0.002301,0.002250,0.249990,0,0);}
.m27_c01406{transform:matrix(0.255765,-0.002302,0.002250,0.249990,0,0);-ms-transform:matrix(0.255765,-0.002302,0.002250,0.249990,0,0);-webkit-transform:matrix(0.255765,-0.002302,0.002250,0.249990,0,0);}
.m95_c01406{transform:matrix(0.256210,-0.002306,0.002250,0.249990,0,0);-ms-transform:matrix(0.256210,-0.002306,0.002250,0.249990,0,0);-webkit-transform:matrix(0.256210,-0.002306,0.002250,0.249990,0,0);}
.m91_c01406{transform:matrix(0.256290,-0.002307,0.002250,0.249990,0,0);-ms-transform:matrix(0.256290,-0.002307,0.002250,0.249990,0,0);-webkit-transform:matrix(0.256290,-0.002307,0.002250,0.249990,0,0);}
.m10_c01406{transform:matrix(0.256530,-0.002309,0.002250,0.249990,0,0);-ms-transform:matrix(0.256530,-0.002309,0.002250,0.249990,0,0);-webkit-transform:matrix(0.256530,-0.002309,0.002250,0.249990,0,0);}
.m17_c01406{transform:matrix(0.256600,-0.002309,0.002250,0.249990,0,0);-ms-transform:matrix(0.256600,-0.002309,0.002250,0.249990,0,0);-webkit-transform:matrix(0.256600,-0.002309,0.002250,0.249990,0,0);}
.md7_c01406{transform:matrix(0.257090,-0.002314,0.002250,0.249990,0,0);-ms-transform:matrix(0.257090,-0.002314,0.002250,0.249990,0,0);-webkit-transform:matrix(0.257090,-0.002314,0.002250,0.249990,0,0);}
.mf3_c01406{transform:matrix(0.257125,-0.001543,0.001500,0.249996,0,0);-ms-transform:matrix(0.257125,-0.001543,0.001500,0.249996,0,0);-webkit-transform:matrix(0.257125,-0.001543,0.001500,0.249996,0,0);}
.mbb_c01406{transform:matrix(0.257305,-0.002316,0.002250,0.249990,0,0);-ms-transform:matrix(0.257305,-0.002316,0.002250,0.249990,0,0);-webkit-transform:matrix(0.257305,-0.002316,0.002250,0.249990,0,0);}
.m9_c01406{transform:matrix(0.257380,-0.002316,0.002250,0.249990,0,0);-ms-transform:matrix(0.257380,-0.002316,0.002250,0.249990,0,0);-webkit-transform:matrix(0.257380,-0.002316,0.002250,0.249990,0,0);}
.m117_c01406{transform:matrix(0.257769,-0.002835,0.002750,0.249985,0,0);-ms-transform:matrix(0.257769,-0.002835,0.002750,0.249985,0,0);-webkit-transform:matrix(0.257769,-0.002835,0.002750,0.249985,0,0);}
.m2c_c01406{transform:matrix(0.258020,-0.002322,0.002250,0.249990,0,0);-ms-transform:matrix(0.258020,-0.002322,0.002250,0.249990,0,0);-webkit-transform:matrix(0.258020,-0.002322,0.002250,0.249990,0,0);}
.m58_c01406{transform:matrix(0.258600,-0.002327,0.002250,0.249990,0,0);-ms-transform:matrix(0.258600,-0.002327,0.002250,0.249990,0,0);-webkit-transform:matrix(0.258600,-0.002327,0.002250,0.249990,0,0);}
.mff_c01406{transform:matrix(0.258645,-0.003621,0.003500,0.249976,0,0);-ms-transform:matrix(0.258645,-0.003621,0.003500,0.249976,0,0);-webkit-transform:matrix(0.258645,-0.003621,0.003500,0.249976,0,0);}
.m73_c01406{transform:matrix(0.258705,-0.002328,0.002250,0.249990,0,0);-ms-transform:matrix(0.258705,-0.002328,0.002250,0.249990,0,0);-webkit-transform:matrix(0.258705,-0.002328,0.002250,0.249990,0,0);}
.m76_c01406{transform:matrix(0.258765,-0.002329,0.002250,0.249990,0,0);-ms-transform:matrix(0.258765,-0.002329,0.002250,0.249990,0,0);-webkit-transform:matrix(0.258765,-0.002329,0.002250,0.249990,0,0);}
.mba_c01406{transform:matrix(0.258940,-0.002330,0.002250,0.249990,0,0);-ms-transform:matrix(0.258940,-0.002330,0.002250,0.249990,0,0);-webkit-transform:matrix(0.258940,-0.002330,0.002250,0.249990,0,0);}
.m112_c01406{transform:matrix(0.259374,-0.002853,0.002750,0.249985,0,0);-ms-transform:matrix(0.259374,-0.002853,0.002750,0.249985,0,0);-webkit-transform:matrix(0.259374,-0.002853,0.002750,0.249985,0,0);}
.m3f_c01406{transform:matrix(0.259714,-0.002337,0.002250,0.249990,0,0);-ms-transform:matrix(0.259714,-0.002337,0.002250,0.249990,0,0);-webkit-transform:matrix(0.259714,-0.002337,0.002250,0.249990,0,0);}
.m16_c01406{transform:matrix(0.260049,-0.002340,0.002250,0.249990,0,0);-ms-transform:matrix(0.260049,-0.002340,0.002250,0.249990,0,0);-webkit-transform:matrix(0.260049,-0.002340,0.002250,0.249990,0,0);}
.mab_c01406{transform:matrix(0.260064,-0.002341,0.002250,0.249990,0,0);-ms-transform:matrix(0.260064,-0.002341,0.002250,0.249990,0,0);-webkit-transform:matrix(0.260064,-0.002341,0.002250,0.249990,0,0);}
.m10c_c01406{transform:matrix(0.260419,-0.002865,0.002750,0.249985,0,0);-ms-transform:matrix(0.260419,-0.002865,0.002750,0.249985,0,0);-webkit-transform:matrix(0.260419,-0.002865,0.002750,0.249985,0,0);}
.m54_c01406{transform:matrix(0.262099,-0.002359,0.002250,0.249990,0,0);-ms-transform:matrix(0.262099,-0.002359,0.002250,0.249990,0,0);-webkit-transform:matrix(0.262099,-0.002359,0.002250,0.249990,0,0);}
.m3b_c01406{transform:matrix(0.263099,-0.002368,0.002250,0.249990,0,0);-ms-transform:matrix(0.263099,-0.002368,0.002250,0.249990,0,0);-webkit-transform:matrix(0.263099,-0.002368,0.002250,0.249990,0,0);}
.m8f_c01406{transform:matrix(0.264039,-0.002376,0.002250,0.249990,0,0);-ms-transform:matrix(0.264039,-0.002376,0.002250,0.249990,0,0);-webkit-transform:matrix(0.264039,-0.002376,0.002250,0.249990,0,0);}
.m106_c01406{transform:matrix(0.264819,-0.003707,0.003500,0.249976,0,0);-ms-transform:matrix(0.264819,-0.003707,0.003500,0.249976,0,0);-webkit-transform:matrix(0.264819,-0.003707,0.003500,0.249976,0,0);}
.m12_c01406{transform:matrix(0.265629,-0.002391,0.002250,0.249990,0,0);-ms-transform:matrix(0.265629,-0.002391,0.002250,0.249990,0,0);-webkit-transform:matrix(0.265629,-0.002391,0.002250,0.249990,0,0);}
.mf7_c01406{transform:matrix(0.265755,-0.001595,0.001500,0.249996,0,0);-ms-transform:matrix(0.265755,-0.001595,0.001500,0.249996,0,0);-webkit-transform:matrix(0.265755,-0.001595,0.001500,0.249996,0,0);}
.m52_c01406{transform:matrix(0.266049,-0.002394,0.002250,0.249990,0,0);-ms-transform:matrix(0.266049,-0.002394,0.002250,0.249990,0,0);-webkit-transform:matrix(0.266049,-0.002394,0.002250,0.249990,0,0);}
.m2a_c01406{transform:matrix(0.267084,-0.002404,0.002250,0.249990,0,0);-ms-transform:matrix(0.267084,-0.002404,0.002250,0.249990,0,0);-webkit-transform:matrix(0.267084,-0.002404,0.002250,0.249990,0,0);}
.maf_c01406{transform:matrix(0.267214,-0.002405,0.002250,0.249990,0,0);-ms-transform:matrix(0.267214,-0.002405,0.002250,0.249990,0,0);-webkit-transform:matrix(0.267214,-0.002405,0.002250,0.249990,0,0);}
.m15_c01406{transform:matrix(0.267504,-0.002408,0.002250,0.249990,0,0);-ms-transform:matrix(0.267504,-0.002408,0.002250,0.249990,0,0);-webkit-transform:matrix(0.267504,-0.002408,0.002250,0.249990,0,0);}
.m18_c01406{transform:matrix(0.267514,-0.002408,0.002250,0.249990,0,0);-ms-transform:matrix(0.267514,-0.002408,0.002250,0.249990,0,0);-webkit-transform:matrix(0.267514,-0.002408,0.002250,0.249990,0,0);}
.m29_c01406{transform:matrix(0.268184,-0.002414,0.002250,0.249990,0,0);-ms-transform:matrix(0.268184,-0.002414,0.002250,0.249990,0,0);-webkit-transform:matrix(0.268184,-0.002414,0.002250,0.249990,0,0);}
.m24_c01406{transform:matrix(0.268789,-0.002419,0.002250,0.249990,0,0);-ms-transform:matrix(0.268789,-0.002419,0.002250,0.249990,0,0);-webkit-transform:matrix(0.268789,-0.002419,0.002250,0.249990,0,0);}
.m115_c01406{transform:matrix(0.268989,-0.002959,0.002750,0.249985,0,0);-ms-transform:matrix(0.268989,-0.002959,0.002750,0.249985,0,0);-webkit-transform:matrix(0.268989,-0.002959,0.002750,0.249985,0,0);}
.mb3_c01406{transform:matrix(0.270289,-0.002433,0.002250,0.249990,0,0);-ms-transform:matrix(0.270289,-0.002433,0.002250,0.249990,0,0);-webkit-transform:matrix(0.270289,-0.002433,0.002250,0.249990,0,0);}
.m113_c01406{transform:matrix(0.270659,-0.002977,0.002750,0.249985,0,0);-ms-transform:matrix(0.270659,-0.002977,0.002750,0.249985,0,0);-webkit-transform:matrix(0.270659,-0.002977,0.002750,0.249985,0,0);}
.me_c01406{transform:matrix(0.270809,-0.002437,0.002250,0.249990,0,0);-ms-transform:matrix(0.270809,-0.002437,0.002250,0.249990,0,0);-webkit-transform:matrix(0.270809,-0.002437,0.002250,0.249990,0,0);}
.mdc_c01406{transform:matrix(0.270834,-0.002438,0.002250,0.249990,0,0);-ms-transform:matrix(0.270834,-0.002438,0.002250,0.249990,0,0);-webkit-transform:matrix(0.270834,-0.002438,0.002250,0.249990,0,0);}
.m10b_c01406{transform:matrix(0.271599,-0.002988,0.002750,0.249985,0,0);-ms-transform:matrix(0.271599,-0.002988,0.002750,0.249985,0,0);-webkit-transform:matrix(0.271599,-0.002988,0.002750,0.249985,0,0);}
.m10d_c01406{transform:matrix(0.272504,-0.002998,0.002750,0.249985,0,0);-ms-transform:matrix(0.272504,-0.002998,0.002750,0.249985,0,0);-webkit-transform:matrix(0.272504,-0.002998,0.002750,0.249985,0,0);}
.m88_c01406{transform:matrix(0.273094,-0.002458,0.002250,0.249990,0,0);-ms-transform:matrix(0.273094,-0.002458,0.002250,0.249990,0,0);-webkit-transform:matrix(0.273094,-0.002458,0.002250,0.249990,0,0);}
.mbd_c01406{transform:matrix(0.273204,-0.002459,0.002250,0.249990,0,0);-ms-transform:matrix(0.273204,-0.002459,0.002250,0.249990,0,0);-webkit-transform:matrix(0.273204,-0.002459,0.002250,0.249990,0,0);}
.m2d_c01406{transform:matrix(0.273409,-0.002461,0.002250,0.249990,0,0);-ms-transform:matrix(0.273409,-0.002461,0.002250,0.249990,0,0);-webkit-transform:matrix(0.273409,-0.002461,0.002250,0.249990,0,0);}
.mb9_c01406{transform:matrix(0.274774,-0.002473,0.002250,0.249990,0,0);-ms-transform:matrix(0.274774,-0.002473,0.002250,0.249990,0,0);-webkit-transform:matrix(0.274774,-0.002473,0.002250,0.249990,0,0);}
.m10f_c01406{transform:matrix(0.276748,-0.003044,0.002750,0.249985,0,0);-ms-transform:matrix(0.276748,-0.003044,0.002750,0.249985,0,0);-webkit-transform:matrix(0.276748,-0.003044,0.002750,0.249985,0,0);}
.md6_c01406{transform:matrix(0.276754,-0.002491,0.002250,0.249990,0,0);-ms-transform:matrix(0.276754,-0.002491,0.002250,0.249990,0,0);-webkit-transform:matrix(0.276754,-0.002491,0.002250,0.249990,0,0);}
.m86_c01406{transform:matrix(0.278534,-0.002507,0.002250,0.249990,0,0);-ms-transform:matrix(0.278534,-0.002507,0.002250,0.249990,0,0);-webkit-transform:matrix(0.278534,-0.002507,0.002250,0.249990,0,0);}
.m39_c01406{transform:matrix(0.279794,-0.002518,0.002250,0.249990,0,0);-ms-transform:matrix(0.279794,-0.002518,0.002250,0.249990,0,0);-webkit-transform:matrix(0.279794,-0.002518,0.002250,0.249990,0,0);}
.m56_c01406{transform:matrix(0.280154,-0.002521,0.002250,0.249990,0,0);-ms-transform:matrix(0.280154,-0.002521,0.002250,0.249990,0,0);-webkit-transform:matrix(0.280154,-0.002521,0.002250,0.249990,0,0);}
.mb0_c01406{transform:matrix(0.280654,-0.002526,0.002250,0.249990,0,0);-ms-transform:matrix(0.280654,-0.002526,0.002250,0.249990,0,0);-webkit-transform:matrix(0.280654,-0.002526,0.002250,0.249990,0,0);}
.mb5_c01406{transform:matrix(0.281114,-0.002530,0.002250,0.249990,0,0);-ms-transform:matrix(0.281114,-0.002530,0.002250,0.249990,0,0);-webkit-transform:matrix(0.281114,-0.002530,0.002250,0.249990,0,0);}
.mb7_c01406{transform:matrix(0.281334,-0.002532,0.002250,0.249990,0,0);-ms-transform:matrix(0.281334,-0.002532,0.002250,0.249990,0,0);-webkit-transform:matrix(0.281334,-0.002532,0.002250,0.249990,0,0);}
.m42_c01406{transform:matrix(0.282039,-0.002538,0.002250,0.249990,0,0);-ms-transform:matrix(0.282039,-0.002538,0.002250,0.249990,0,0);-webkit-transform:matrix(0.282039,-0.002538,0.002250,0.249990,0,0);}
.m2b_c01406{transform:matrix(0.282214,-0.002540,0.002250,0.249990,0,0);-ms-transform:matrix(0.282214,-0.002540,0.002250,0.249990,0,0);-webkit-transform:matrix(0.282214,-0.002540,0.002250,0.249990,0,0);}
.m8c_c01406{transform:matrix(0.283344,-0.002550,0.002250,0.249990,0,0);-ms-transform:matrix(0.283344,-0.002550,0.002250,0.249990,0,0);-webkit-transform:matrix(0.283344,-0.002550,0.002250,0.249990,0,0);}
.m110_c01406{transform:matrix(0.285128,-0.003136,0.002750,0.249985,0,0);-ms-transform:matrix(0.285128,-0.003136,0.002750,0.249985,0,0);-webkit-transform:matrix(0.285128,-0.003136,0.002750,0.249985,0,0);}
.m13_c01406{transform:matrix(0.285183,-0.002567,0.002250,0.249990,0,0);-ms-transform:matrix(0.285183,-0.002567,0.002250,0.249990,0,0);-webkit-transform:matrix(0.285183,-0.002567,0.002250,0.249990,0,0);}
.m77_c01406{transform:matrix(0.287318,-0.002586,0.002250,0.249990,0,0);-ms-transform:matrix(0.287318,-0.002586,0.002250,0.249990,0,0);-webkit-transform:matrix(0.287318,-0.002586,0.002250,0.249990,0,0);}
.m23_c01406{transform:matrix(0.291243,-0.002621,0.002250,0.249990,0,0);-ms-transform:matrix(0.291243,-0.002621,0.002250,0.249990,0,0);-webkit-transform:matrix(0.291243,-0.002621,0.002250,0.249990,0,0);}
.m2_c01406{transform:matrix(0.306515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306515,0.000000,0.000000,0.250000,0,0);}
.mf9_c01406{transform:matrix(0.314554,-0.001887,0.001500,0.249996,0,0);-ms-transform:matrix(0.314554,-0.001887,0.001500,0.249996,0,0);-webkit-transform:matrix(0.314554,-0.001887,0.001500,0.249996,0,0);}
.mda_c01406{transform:matrix(0.336301,-0.003027,0.002250,0.249990,0,0);-ms-transform:matrix(0.336301,-0.003027,0.002250,0.249990,0,0);-webkit-transform:matrix(0.336301,-0.003027,0.002250,0.249990,0,0);}
.m1_c01406{transform:matrix(0.361135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361135,0.000000,0.000000,0.250000,0,0);}
.m10a_c01406{transform:matrix(0.424629,-0.011890,0.006997,0.249902,0,0);-ms-transform:matrix(0.424629,-0.011890,0.006997,0.249902,0,0);-webkit-transform:matrix(0.424629,-0.011890,0.006997,0.249902,0,0);}
.m109_c01406{transform:matrix(0.453882,-0.012709,0.006997,0.249902,0,0);-ms-transform:matrix(0.453882,-0.012709,0.006997,0.249902,0,0);-webkit-transform:matrix(0.453882,-0.012709,0.006997,0.249902,0,0);}
.m108_c01406{transform:matrix(0.603733,-0.016905,0.006997,0.249902,0,0);-ms-transform:matrix(0.603733,-0.016905,0.006997,0.249902,0,0);-webkit-transform:matrix(0.603733,-0.016905,0.006997,0.249902,0,0);}
.m107_c01406{transform:matrix(1.065877,-0.029845,0.006997,0.249902,0,0);-ms-transform:matrix(1.065877,-0.029845,0.006997,0.249902,0,0);-webkit-transform:matrix(1.065877,-0.029845,0.006997,0.249902,0,0);}
.v0_c01406{vertical-align:0.000000px;}
.ls0_c01406{letter-spacing:0.000000px;}
.sc__c01406{text-shadow:none;}
.sc0_c01406{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__c01406{-webkit-text-stroke:0px transparent;}
.sc0_c01406{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01406{word-spacing:0.000000px;}
.fc0_c01406{color:transparent;}
.fs9_c01406{font-size:24.009406px;}
.fs2_c01406{font-size:72.002916px;}
.fsa_c01406{font-size:72.004356px;}
.fs0_c01406{font-size:78.000000px;}
.fs7_c01406{font-size:78.001404px;}
.fs1_c01406{font-size:78.003159px;}
.fs8_c01406{font-size:78.007644px;}
.fs6_c01406{font-size:84.000000px;}
.fs3_c01406{font-size:84.003402px;}
.fs4_c01406{font-size:90.000000px;}
.fs5_c01406{font-size:96.003888px;}
.y0_c01406{bottom:0.000000px;}
.y119_c01406{bottom:69.118436px;}
.y11a_c01406{bottom:69.550020px;}
.y11b_c01406{bottom:70.317049px;}
.y11c_c01406{bottom:71.189343px;}
.y11d_c01406{bottom:71.529079px;}
.y11e_c01406{bottom:72.401340px;}
.y11f_c01406{bottom:72.733931px;}
.y112_c01406{bottom:105.571500px;}
.y113_c01406{bottom:106.168437px;}
.y114_c01406{bottom:107.017873px;}
.y115_c01406{bottom:107.980088px;}
.y116_c01406{bottom:108.346223px;}
.y117_c01406{bottom:109.307694px;}
.y118_c01406{bottom:109.667394px;}
.y10e_c01406{bottom:134.977500px;}
.y10f_c01406{bottom:136.647588px;}
.y110_c01406{bottom:137.410014px;}
.y111_c01406{bottom:137.894526px;}
.y103_c01406{bottom:175.233000px;}
.y104_c01406{bottom:176.155593px;}
.y105_c01406{bottom:176.616921px;}
.y106_c01406{bottom:177.538569px;}
.y107_c01406{bottom:179.077344px;}
.y108_c01406{bottom:179.538609px;}
.y109_c01406{bottom:180.155001px;}
.y10a_c01406{bottom:181.232301px;}
.y10b_c01406{bottom:181.678446px;}
.y10c_c01406{bottom:182.464497px;}
.y10d_c01406{bottom:183.541902px;}
.yf6_c01406{bottom:215.190000px;}
.yf7_c01406{bottom:215.311536px;}
.yf8_c01406{bottom:215.447571px;}
.yf9_c01406{bottom:215.715078px;}
.yfa_c01406{bottom:215.969427px;}
.yfb_c01406{bottom:216.432531px;}
.yfc_c01406{bottom:216.630207px;}
.yfd_c01406{bottom:216.824517px;}
.yfe_c01406{bottom:217.221822px;}
.yff_c01406{bottom:217.608813px;}
.y100_c01406{bottom:217.939536px;}
.y101_c01406{bottom:218.415339px;}
.y102_c01406{bottom:218.545074px;}
.yf5_c01406{bottom:322.246500px;}
.yeb_c01406{bottom:353.964694px;}
.yec_c01406{bottom:354.569833px;}
.yed_c01406{bottom:355.273311px;}
.yee_c01406{bottom:355.757928px;}
.yef_c01406{bottom:356.373357px;}
.yf0_c01406{bottom:356.742190px;}
.yf1_c01406{bottom:357.825370px;}
.yf2_c01406{bottom:358.057329px;}
.yf3_c01406{bottom:359.016300px;}
.yf4_c01406{bottom:359.883292px;}
.ydd_c01406{bottom:389.606350px;}
.yde_c01406{bottom:390.360454px;}
.ydf_c01406{bottom:390.598524px;}
.ye0_c01406{bottom:391.227808px;}
.ye1_c01406{bottom:391.799644px;}
.ye2_c01406{bottom:392.118775px;}
.ye3_c01406{bottom:392.671791px;}
.ye4_c01406{bottom:393.101418px;}
.ye5_c01406{bottom:393.442516px;}
.ye6_c01406{bottom:394.314096px;}
.ye7_c01406{bottom:394.641477px;}
.ye8_c01406{bottom:394.970923px;}
.ye9_c01406{bottom:395.302557px;}
.yea_c01406{bottom:395.956873px;}
.yd1_c01406{bottom:424.706176px;}
.yd2_c01406{bottom:425.383701px;}
.yd3_c01406{bottom:426.131797px;}
.yd4_c01406{bottom:426.461271px;}
.yd5_c01406{bottom:426.801883px;}
.yd6_c01406{bottom:427.573107px;}
.yd7_c01406{bottom:428.005704px;}
.yd8_c01406{bottom:428.664421px;}
.yd9_c01406{bottom:428.994205px;}
.yda_c01406{bottom:429.534354px;}
.ydb_c01406{bottom:430.744143px;}
.ydc_c01406{bottom:431.094988px;}
.yc3_c01406{bottom:460.618645px;}
.yc4_c01406{bottom:461.042115px;}
.yc5_c01406{bottom:461.369280px;}
.yc6_c01406{bottom:461.687533px;}
.yc7_c01406{bottom:462.373726px;}
.yc8_c01406{bottom:462.904599px;}
.yc9_c01406{bottom:463.458519px;}
.yca_c01406{bottom:464.009806px;}
.ycb_c01406{bottom:464.442133px;}
.ycc_c01406{bottom:464.774077px;}
.ycd_c01406{bottom:465.106048px;}
.yce_c01406{bottom:465.772015px;}
.ycf_c01406{bottom:466.303252px;}
.yd0_c01406{bottom:466.749499px;}
.yb6_c01406{bottom:496.799700px;}
.yb7_c01406{bottom:497.591394px;}
.yb8_c01406{bottom:497.892768px;}
.yb9_c01406{bottom:498.286671px;}
.yba_c01406{bottom:499.377646px;}
.ybb_c01406{bottom:499.657677px;}
.ybc_c01406{bottom:499.953624px;}
.ybd_c01406{bottom:500.245305px;}
.ybe_c01406{bottom:500.847959px;}
.ybf_c01406{bottom:501.154219px;}
.yc0_c01406{bottom:501.734746px;}
.yc1_c01406{bottom:502.131106px;}
.yc2_c01406{bottom:502.427580px;}
.yab_c01406{bottom:528.662401px;}
.yac_c01406{bottom:529.970805px;}
.yad_c01406{bottom:530.465413px;}
.yae_c01406{bottom:532.121973px;}
.yaf_c01406{bottom:532.612543px;}
.yb0_c01406{bottom:533.932399px;}
.yb1_c01406{bottom:534.754675px;}
.yb2_c01406{bottom:535.211442px;}
.yb3_c01406{bottom:537.016438px;}
.yb4_c01406{bottom:537.552954px;}
.yb5_c01406{bottom:538.021821px;}
.y9e_c01406{bottom:569.161012px;}
.y9f_c01406{bottom:569.948340px;}
.ya0_c01406{bottom:570.337534px;}
.ya1_c01406{bottom:571.397523px;}
.ya2_c01406{bottom:571.806175px;}
.ya3_c01406{bottom:572.844882px;}
.ya4_c01406{bottom:573.120796px;}
.ya5_c01406{bottom:573.764651px;}
.ya6_c01406{bottom:574.555935px;}
.ya7_c01406{bottom:574.957930px;}
.ya8_c01406{bottom:576.266569px;}
.ya9_c01406{bottom:576.681083px;}
.yaa_c01406{bottom:577.736061px;}
.y92_c01406{bottom:603.988200px;}
.y93_c01406{bottom:604.962619px;}
.y94_c01406{bottom:605.182233px;}
.y95_c01406{bottom:605.509222px;}
.y96_c01406{bottom:605.825073px;}
.y97_c01406{bottom:606.808809px;}
.y98_c01406{bottom:607.162612px;}
.y99_c01406{bottom:607.592955px;}
.y9a_c01406{bottom:608.473648px;}
.y9b_c01406{bottom:608.816866px;}
.y9c_c01406{bottom:609.894342px;}
.y9d_c01406{bottom:610.237506px;}
.y86_c01406{bottom:639.898612px;}
.y87_c01406{bottom:640.974859px;}
.y88_c01406{bottom:641.186486px;}
.y89_c01406{bottom:642.063459px;}
.y8a_c01406{bottom:642.559206px;}
.y8b_c01406{bottom:642.953109px;}
.y8c_c01406{bottom:643.240038px;}
.y8d_c01406{bottom:644.238754px;}
.y8e_c01406{bottom:644.535228px;}
.y8f_c01406{bottom:644.931439px;}
.y90_c01406{bottom:645.609315px;}
.y91_c01406{bottom:645.908191px;}
.y79_c01406{bottom:676.349223px;}
.y7a_c01406{bottom:676.740480px;}
.y7b_c01406{bottom:676.935244px;}
.y7c_c01406{bottom:677.433354px;}
.y7d_c01406{bottom:678.016567px;}
.y7e_c01406{bottom:678.308181px;}
.y7f_c01406{bottom:678.811501px;}
.y80_c01406{bottom:679.693321px;}
.y81_c01406{bottom:680.002012px;}
.y82_c01406{bottom:680.502633px;}
.y83_c01406{bottom:681.078651px;}
.y84_c01406{bottom:681.681291px;}
.y85_c01406{bottom:682.169653px;}
.y6f_c01406{bottom:712.801500px;}
.y70_c01406{bottom:712.991053px;}
.y71_c01406{bottom:713.185426px;}
.y72_c01406{bottom:713.586376px;}
.y73_c01406{bottom:714.366461px;}
.y74_c01406{bottom:715.358008px;}
.y75_c01406{bottom:715.841565px;}
.y76_c01406{bottom:716.445082px;}
.y77_c01406{bottom:717.074344px;}
.y78_c01406{bottom:717.530428px;}
.y6e_c01406{bottom:819.720000px;}
.y62_c01406{bottom:853.731954px;}
.y63_c01406{bottom:854.465785px;}
.y64_c01406{bottom:854.817268px;}
.y65_c01406{bottom:855.431116px;}
.y66_c01406{bottom:856.134459px;}
.y67_c01406{bottom:856.630323px;}
.y68_c01406{bottom:857.235516px;}
.y69_c01406{bottom:857.595640px;}
.y6a_c01406{bottom:858.563077px;}
.y6b_c01406{bottom:858.803826px;}
.y6c_c01406{bottom:859.753980px;}
.y6d_c01406{bottom:860.618515px;}
.y54_c01406{bottom:889.914022px;}
.y55_c01406{bottom:890.561479px;}
.y56_c01406{bottom:890.893747px;}
.y57_c01406{bottom:891.230511px;}
.y58_c01406{bottom:891.873229px;}
.y59_c01406{bottom:892.213990px;}
.y5a_c01406{bottom:893.520327px;}
.y5b_c01406{bottom:893.758477px;}
.y5c_c01406{bottom:894.399009px;}
.y5d_c01406{bottom:895.071403px;}
.y5e_c01406{bottom:895.376925px;}
.y5f_c01406{bottom:895.826790px;}
.y60_c01406{bottom:896.161407px;}
.y61_c01406{bottom:896.490799px;}
.y47_c01406{bottom:924.743896px;}
.y48_c01406{bottom:925.709146px;}
.y49_c01406{bottom:926.071768px;}
.y4a_c01406{bottom:926.682916px;}
.y4b_c01406{bottom:927.149872px;}
.y4c_c01406{bottom:927.636919px;}
.y4d_c01406{bottom:928.368294px;}
.y4e_c01406{bottom:929.209348px;}
.y4f_c01406{bottom:929.571822px;}
.y50_c01406{bottom:929.925559px;}
.y51_c01406{bottom:930.423853px;}
.y52_c01406{bottom:931.262127px;}
.y53_c01406{bottom:931.635847px;}
.y3b_c01406{bottom:960.383412px;}
.y3c_c01406{bottom:961.588978px;}
.y3d_c01406{bottom:961.960269px;}
.y3e_c01406{bottom:962.816068px;}
.y3f_c01406{bottom:963.407314px;}
.y40_c01406{bottom:964.008012px;}
.y41_c01406{bottom:964.379329px;}
.y42_c01406{bottom:965.097903px;}
.y43_c01406{bottom:965.458027px;}
.y44_c01406{bottom:965.818206px;}
.y45_c01406{bottom:967.148359px;}
.y46_c01406{bottom:967.637701px;}
.y30_c01406{bottom:995.485533px;}
.y31_c01406{bottom:996.693057px;}
.y32_c01406{bottom:996.937600px;}
.y33_c01406{bottom:997.664937px;}
.y34_c01406{bottom:998.499253px;}
.y35_c01406{bottom:998.864265px;}
.y36_c01406{bottom:1000.061203px;}
.y37_c01406{bottom:1000.800909px;}
.y38_c01406{bottom:1001.039200px;}
.y39_c01406{bottom:1002.006516px;}
.y3a_c01406{bottom:1002.246994px;}
.y26_c01406{bottom:1031.397249px;}
.y27_c01406{bottom:1032.248902px;}
.y28_c01406{bottom:1032.729508px;}
.y29_c01406{bottom:1032.967746px;}
.y2a_c01406{bottom:1033.692652px;}
.y2b_c01406{bottom:1034.066373px;}
.y2c_c01406{bottom:1035.251957px;}
.y2d_c01406{bottom:1035.983439px;}
.y2e_c01406{bottom:1037.420586px;}
.y2f_c01406{bottom:1037.910063px;}
.y1b_c01406{bottom:1066.228707px;}
.y1c_c01406{bottom:1067.203153px;}
.y1d_c01406{bottom:1067.416448px;}
.y1e_c01406{bottom:1067.753157px;}
.y1f_c01406{bottom:1068.519493px;}
.y20_c01406{bottom:1068.956896px;}
.y21_c01406{bottom:1069.837347px;}
.y22_c01406{bottom:1070.164755px;}
.y23_c01406{bottom:1070.729814px;}
.y24_c01406{bottom:1071.917406px;}
.y25_c01406{bottom:1072.910673px;}
.y10_c01406{bottom:1102.140861px;}
.y11_c01406{bottom:1102.698939px;}
.y12_c01406{bottom:1103.133993px;}
.y13_c01406{bottom:1103.797813px;}
.y14_c01406{bottom:1105.333092px;}
.y15_c01406{bottom:1105.562520px;}
.y16_c01406{bottom:1106.421529px;}
.y17_c01406{bottom:1106.853208px;}
.y18_c01406{bottom:1107.299158px;}
.y19_c01406{bottom:1107.742732px;}
.y1a_c01406{bottom:1108.517859px;}
.y2_c01406{bottom:1138.591500px;}
.y3_c01406{bottom:1139.184420px;}
.y4_c01406{bottom:1139.374298px;}
.y5_c01406{bottom:1139.867547px;}
.y6_c01406{bottom:1140.462897px;}
.y7_c01406{bottom:1140.842031px;}
.y8_c01406{bottom:1141.349874px;}
.y9_c01406{bottom:1142.241779px;}
.ya_c01406{bottom:1142.538265px;}
.yb_c01406{bottom:1143.034026px;}
.yc_c01406{bottom:1143.729046px;}
.yd_c01406{bottom:1144.222364px;}
.ye_c01406{bottom:1144.504230px;}
.yf_c01406{bottom:1144.725414px;}
.y1_c01406{bottom:1196.755500px;}
.hb_c01406{height:24.009406px;}
.h4_c01406{height:72.002916px;}
.hc_c01406{height:72.004356px;}
.h2_c01406{height:78.000000px;}
.h9_c01406{height:78.001404px;}
.h3_c01406{height:78.003159px;}
.ha_c01406{height:78.007644px;}
.h8_c01406{height:84.000000px;}
.h5_c01406{height:84.003402px;}
.h6_c01406{height:90.000000px;}
.h7_c01406{height:96.003888px;}
.h1_c01406{height:1250.250000px;}
.h0_c01406{height:1250.370000px;}
.w1_c01406{width:907.500000px;}
.w0_c01406{width:907.740000px;}
.x0_c01406{left:0.000000px;}
.x4_c01406{left:128.079000px;}
.x1b_c01406{left:129.753348px;}
.x45_c01406{left:130.819638px;}
.x58_c01406{left:132.380640px;}
.x6a_c01406{left:134.084975px;}
.x86_c01406{left:135.424805px;}
.xb0_c01406{left:136.566000px;}
.xb9_c01406{left:137.596500px;}
.x59_c01406{left:175.853640px;}
.x87_c01406{left:177.809927px;}
.xbf_c01406{left:181.317978px;}
.x12_c01406{left:183.177470px;}
.x4f_c01406{left:185.490000px;}
.xa2_c01406{left:190.515629px;}
.xba_c01406{left:191.863500px;}
.x5_c01406{left:193.959000px;}
.x46_c01406{left:195.592058px;}
.x5a_c01406{left:197.494140px;}
.x90_c01406{left:201.586752px;}
.x23_c01406{left:205.864806px;}
.x88_c01406{left:210.494630px;}
.x6_c01406{left:215.056500px;}
.x3c_c01406{left:217.240508px;}
.x78_c01406{left:220.603085px;}
.xb8_c01406{left:221.863500px;}
.x13_c01406{left:226.683078px;}
.x47_c01406{left:228.843761px;}
.x6b_c01406{left:231.519597px;}
.x98_c01406{left:235.049504px;}
.x2c_c01406{left:238.537929px;}
.x51_c01406{left:242.314500px;}
.xa6_c01406{left:244.620000px;}
.xa8_c01406{left:247.404000px;}
.x1c_c01406{left:248.556782px;}
.x24_c01406{left:249.598023px;}
.x5b_c01406{left:252.839640px;}
.x81_c01406{left:255.001550px;}
.xc0_c01406{left:258.003320px;}
.x2d_c01406{left:260.709024px;}
.x48_c01406{left:262.594964px;}
.xa9_c01406{left:267.660000px;}
.x7_c01406{left:269.862000px;}
.x25_c01406{left:271.235132px;}
.x34_c01406{left:272.321235px;}
.x64_c01406{left:276.071217px;}
.x1d_c01406{left:282.301985px;}
.x4c_c01406{left:284.208383px;}
.x6c_c01406{left:286.086098px;}
.xaa_c01406{left:290.332500px;}
.x14_c01406{left:293.106984px;}
.x82_c01406{left:298.768550px;}
.xb1_c01406{left:301.249500px;}
.x3d_c01406{left:305.768915px;}
.x91_c01406{left:309.315780px;}
.x89_c01406{left:310.932225px;}
.x5c_c01406{left:317.641140px;}
.x72_c01406{left:319.040247px;}
.x2e_c01406{left:326.856336px;}
.x52_c01406{left:329.523000px;}
.xab_c01406{left:334.917000px;}
.x8_c01406{left:336.012000px;}
.x26_c01406{left:337.112444px;}
.x92_c01406{left:343.327970px;}
.xc1_c01406{left:345.212777px;}
.x3e_c01406{left:348.152145px;}
.x35_c01406{left:350.075331px;}
.x73_c01406{left:353.111829px;}
.x99_c01406{left:355.172924px;}
.xbb_c01406{left:356.559000px;}
.x1e_c01406{left:358.949796px;}
.x49_c01406{left:360.869573px;}
.x79_c01406{left:363.947336px;}
.x27_c01406{left:371.136336px;}
.x50_c01406{left:374.490000px;}
.x9_c01406{left:378.138000px;}
.x1_c01406{left:379.620000px;}
.x9a_c01406{left:387.131640px;}
.xbc_c01406{left:389.844000px;}
.x3f_c01406{left:392.434349px;}
.x7a_c01406{left:396.620067px;}
.xa7_c01406{left:397.980000px;}
.x2_c01406{left:402.840000px;}
.x5d_c01406{left:405.967140px;}
.xb2_c01406{left:411.162000px;}
.x53_c01406{left:416.199000px;}
.x83_c01406{left:419.988050px;}
.x65_c01406{left:428.595717px;}
.xa_c01406{left:434.565000px;}
.x2f_c01406{left:435.946379px;}
.x74_c01406{left:439.687994px;}
.x9b_c01406{left:442.410641px;}
.xb3_c01406{left:444.109500px;}
.x3_c01406{left:446.040000px;}
.x4d_c01406{left:448.360940px;}
.x6d_c01406{left:451.294599px;}
.xac_c01406{left:454.492500px;}
.x36_c01406{left:458.344874px;}
.x75_c01406{left:462.677873px;}
.x93_c01406{left:463.751390px;}
.xc2_c01406{left:466.441113px;}
.x15_c01406{left:469.683905px;}
.x66_c01406{left:472.362717px;}
.x8a_c01406{left:474.550754px;}
.xbd_c01406{left:477.250500px;}
.x28_c01406{left:478.865892px;}
.x4e_c01406{left:481.040846px;}
.x7b_c01406{left:484.599315px;}
.xa3_c01406{left:486.403296px;}
.xad_c01406{left:487.438500px;}
.x1f_c01406{left:490.710108px;}
.x37_c01406{left:492.101766px;}
.x6e_c01406{left:494.276708px;}
.xc3_c01406{left:499.676976px;}
.x5e_c01406{left:503.947140px;}
.xa4_c01406{left:507.509418px;}
.xbe_c01406{left:509.950500px;}
.x4a_c01406{left:515.311182px;}
.x76_c01406{left:516.382428px;}
.x8b_c01406{left:517.753362px;}
.x9c_c01406{left:519.379439px;}
.x20_c01406{left:523.421811px;}
.x54_c01406{left:526.371000px;}
.x94_c01406{left:529.608296px;}
.xb_c01406{left:533.665500px;}
.x40_c01406{left:535.312770px;}
.x5f_c01406{left:538.246140px;}
.x7c_c01406{left:539.460359px;}
.x29_c01406{left:545.307191px;}
.x8c_c01406{left:550.969065px;}
.x16_c01406{left:555.628635px;}
.x38_c01406{left:557.442092px;}
.x95_c01406{left:562.583999px;}
.xb4_c01406{left:565.087500px;}
.xc_c01406{left:566.608500px;}
.x41_c01406{left:568.253676px;}
.x7d_c01406{left:569.877212px;}
.x21_c01406{left:579.872298px;}
.x6f_c01406{left:582.297411px;}
.x84_c01406{left:583.356050px;}
.xae_c01406{left:586.041000px;}
.x39_c01406{left:590.121998px;}
.x60_c01406{left:593.870640px;}
.xb5_c01406{left:596.955000px;}
.x17_c01406{left:598.759244px;}
.x42_c01406{left:600.390596px;}
.x9d_c01406{left:606.554156px;}
.x30_c01406{left:611.959206px;}
.x67_c01406{left:615.212217px;}
.x70_c01406{left:616.599101px;}
.xd_c01406{left:621.693000px;}
.x3a_c01406{left:622.807904px;}
.x31_c01406{left:633.602315px;}
.x9e_c01406{left:639.262859px;}
.x18_c01406{left:643.308839px;}
.x43_c01406{left:645.755786px;}
.x55_c01406{left:647.157000px;}
.x8d_c01406{left:650.850174px;}
.xb6_c01406{left:653.101500px;}
.x61_c01406{left:657.872640px;}
.x9f_c01406{left:672.201062px;}
.xa5_c01406{left:673.557935px;}
.x2a_c01406{left:675.987842px;}
.x4b_c01406{left:677.137224px;}
.x85_c01406{left:681.888050px;}
.x19_c01406{left:687.594434px;}
.x7e_c01406{left:690.259218px;}
.x68_c01406{left:692.177217px;}
.xe_c01406{left:698.917500px;}
.x8e_c01406{left:704.042702px;}
.xa0_c01406{left:705.382265px;}
.x56_c01406{left:717.075000px;}
.x2b_c01406{left:720.540045px;}
.x32_c01406{left:721.580235px;}
.x62_c01406{left:724.832640px;}
.x7f_c01406{left:726.036788px;}
.xb7_c01406{left:730.059000px;}
.x96_c01406{left:737.519919px;}
.x33_c01406{left:743.466344px;}
.x8f_c01406{left:748.625297px;}
.xf_c01406{left:753.730500px;}
.x44_c01406{left:755.919801px;}
.x80_c01406{left:757.298100px;}
.x71_c01406{left:758.613318px;}
.x1a_c01406{left:765.052232px;}
.x57_c01406{left:767.751000px;}
.xa1_c01406{left:770.750171px;}
.x97_c01406{left:772.669109px;}
.x63_c01406{left:779.095140px;}
.x10_c01406{left:785.049000px;}
.x3b_c01406{left:788.304433px;}
.x22_c01406{left:798.021341px;}
.x69_c01406{left:800.705217px;}
.xaf_c01406{left:806.583000px;}
.x11_c01406{left:809.625000px;}
.x77_c01406{left:847.307991px;}
@media print{
.v0_c01406{vertical-align:0.000000pt;}
.ls0_c01406{letter-spacing:0.000000pt;}
.ws0_c01406{word-spacing:0.000000pt;}
.fs9_c01406{font-size:21.341694pt;}
.fs2_c01406{font-size:64.002592pt;}
.fsa_c01406{font-size:64.003872pt;}
.fs0_c01406{font-size:69.333333pt;}
.fs7_c01406{font-size:69.334581pt;}
.fs1_c01406{font-size:69.336141pt;}
.fs8_c01406{font-size:69.340128pt;}
.fs6_c01406{font-size:74.666667pt;}
.fs3_c01406{font-size:74.669691pt;}
.fs4_c01406{font-size:80.000000pt;}
.fs5_c01406{font-size:85.336789pt;}
.y0_c01406{bottom:0.000000pt;}
.y119_c01406{bottom:61.438609pt;}
.y11a_c01406{bottom:61.822240pt;}
.y11b_c01406{bottom:62.504044pt;}
.y11c_c01406{bottom:63.279416pt;}
.y11d_c01406{bottom:63.581404pt;}
.y11e_c01406{bottom:64.356747pt;}
.y11f_c01406{bottom:64.652383pt;}
.y112_c01406{bottom:93.841333pt;}
.y113_c01406{bottom:94.371944pt;}
.y114_c01406{bottom:95.126999pt;}
.y115_c01406{bottom:95.982300pt;}
.y116_c01406{bottom:96.307753pt;}
.y117_c01406{bottom:97.162395pt;}
.y118_c01406{bottom:97.482128pt;}
.y10e_c01406{bottom:119.980000pt;}
.y10f_c01406{bottom:121.464523pt;}
.y110_c01406{bottom:122.142235pt;}
.y111_c01406{bottom:122.572912pt;}
.y103_c01406{bottom:155.762667pt;}
.y104_c01406{bottom:156.582749pt;}
.y105_c01406{bottom:156.992819pt;}
.y106_c01406{bottom:157.812061pt;}
.y107_c01406{bottom:159.179861pt;}
.y108_c01406{bottom:159.589875pt;}
.y109_c01406{bottom:160.137779pt;}
.y10a_c01406{bottom:161.095379pt;}
.y10b_c01406{bottom:161.491952pt;}
.y10c_c01406{bottom:162.190664pt;}
.y10d_c01406{bottom:163.148357pt;}
.yf6_c01406{bottom:191.280000pt;}
.yf7_c01406{bottom:191.388032pt;}
.yf8_c01406{bottom:191.508952pt;}
.yf9_c01406{bottom:191.746736pt;}
.yfa_c01406{bottom:191.972824pt;}
.yfb_c01406{bottom:192.384472pt;}
.yfc_c01406{bottom:192.560184pt;}
.yfd_c01406{bottom:192.732904pt;}
.yfe_c01406{bottom:193.086064pt;}
.yff_c01406{bottom:193.430056pt;}
.y100_c01406{bottom:193.724032pt;}
.y101_c01406{bottom:194.146968pt;}
.y102_c01406{bottom:194.262288pt;}
.yf5_c01406{bottom:286.441333pt;}
.yeb_c01406{bottom:314.635284pt;}
.yec_c01406{bottom:315.173185pt;}
.yed_c01406{bottom:315.798499pt;}
.yee_c01406{bottom:316.229269pt;}
.yef_c01406{bottom:316.776317pt;}
.yf0_c01406{bottom:317.104169pt;}
.yf1_c01406{bottom:318.066996pt;}
.yf2_c01406{bottom:318.273181pt;}
.yf3_c01406{bottom:319.125600pt;}
.yf4_c01406{bottom:319.896260pt;}
.ydd_c01406{bottom:346.316756pt;}
.yde_c01406{bottom:346.987071pt;}
.ydf_c01406{bottom:347.198688pt;}
.ye0_c01406{bottom:347.758052pt;}
.ye1_c01406{bottom:348.266351pt;}
.ye2_c01406{bottom:348.550023pt;}
.ye3_c01406{bottom:349.041592pt;}
.ye4_c01406{bottom:349.423483pt;}
.ye5_c01406{bottom:349.726681pt;}
.ye6_c01406{bottom:350.501419pt;}
.ye7_c01406{bottom:350.792424pt;}
.ye8_c01406{bottom:351.085265pt;}
.ye9_c01406{bottom:351.380051pt;}
.yea_c01406{bottom:351.961665pt;}
.yd1_c01406{bottom:377.516601pt;}
.yd2_c01406{bottom:378.118845pt;}
.yd3_c01406{bottom:378.783820pt;}
.yd4_c01406{bottom:379.076685pt;}
.yd5_c01406{bottom:379.379452pt;}
.yd6_c01406{bottom:380.064984pt;}
.yd7_c01406{bottom:380.449515pt;}
.yd8_c01406{bottom:381.035041pt;}
.yd9_c01406{bottom:381.328183pt;}
.yda_c01406{bottom:381.808315pt;}
.ydb_c01406{bottom:382.883683pt;}
.ydc_c01406{bottom:383.195545pt;}
.yc3_c01406{bottom:409.438796pt;}
.yc4_c01406{bottom:409.815213pt;}
.yc5_c01406{bottom:410.106027pt;}
.yc6_c01406{bottom:410.388919pt;}
.yc7_c01406{bottom:410.998868pt;}
.yc8_c01406{bottom:411.470755pt;}
.yc9_c01406{bottom:411.963128pt;}
.yca_c01406{bottom:412.453161pt;}
.ycb_c01406{bottom:412.837452pt;}
.ycc_c01406{bottom:413.132513pt;}
.ycd_c01406{bottom:413.427599pt;}
.yce_c01406{bottom:414.019569pt;}
.ycf_c01406{bottom:414.491780pt;}
.yd0_c01406{bottom:414.888444pt;}
.yb6_c01406{bottom:441.599733pt;}
.yb7_c01406{bottom:442.303461pt;}
.yb8_c01406{bottom:442.571349pt;}
.yb9_c01406{bottom:442.921485pt;}
.yba_c01406{bottom:443.891241pt;}
.ybb_c01406{bottom:444.140157pt;}
.ybc_c01406{bottom:444.403221pt;}
.ybd_c01406{bottom:444.662493pt;}
.ybe_c01406{bottom:445.198185pt;}
.ybf_c01406{bottom:445.470417pt;}
.yc0_c01406{bottom:445.986441pt;}
.yc1_c01406{bottom:446.338761pt;}
.yc2_c01406{bottom:446.602293pt;}
.yab_c01406{bottom:469.922135pt;}
.yac_c01406{bottom:471.085160pt;}
.yad_c01406{bottom:471.524812pt;}
.yae_c01406{bottom:472.997309pt;}
.yaf_c01406{bottom:473.433372pt;}
.yb0_c01406{bottom:474.606577pt;}
.yb1_c01406{bottom:475.337489pt;}
.yb2_c01406{bottom:475.743504pt;}
.yb3_c01406{bottom:477.347945pt;}
.yb4_c01406{bottom:477.824848pt;}
.yb5_c01406{bottom:478.241619pt;}
.y9e_c01406{bottom:505.920900pt;}
.y9f_c01406{bottom:506.620747pt;}
.ya0_c01406{bottom:506.966697pt;}
.ya1_c01406{bottom:507.908909pt;}
.ya2_c01406{bottom:508.272156pt;}
.ya3_c01406{bottom:509.195451pt;}
.ya4_c01406{bottom:509.440708pt;}
.ya5_c01406{bottom:510.013023pt;}
.ya6_c01406{bottom:510.716387pt;}
.ya7_c01406{bottom:511.073716pt;}
.ya8_c01406{bottom:512.236951pt;}
.ya9_c01406{bottom:512.605407pt;}
.yaa_c01406{bottom:513.543165pt;}
.y92_c01406{bottom:536.878400pt;}
.y93_c01406{bottom:537.744551pt;}
.y94_c01406{bottom:537.939763pt;}
.y95_c01406{bottom:538.230420pt;}
.y96_c01406{bottom:538.511176pt;}
.y97_c01406{bottom:539.385608pt;}
.y98_c01406{bottom:539.700100pt;}
.y99_c01406{bottom:540.082627pt;}
.y9a_c01406{bottom:540.865465pt;}
.y9b_c01406{bottom:541.170548pt;}
.y9c_c01406{bottom:542.128304pt;}
.y9d_c01406{bottom:542.433339pt;}
.y86_c01406{bottom:568.798767pt;}
.y87_c01406{bottom:569.755431pt;}
.y88_c01406{bottom:569.943543pt;}
.y89_c01406{bottom:570.723075pt;}
.y8a_c01406{bottom:571.163739pt;}
.y8b_c01406{bottom:571.513875pt;}
.y8c_c01406{bottom:571.768923pt;}
.y8d_c01406{bottom:572.656671pt;}
.y8e_c01406{bottom:572.920203pt;}
.y8f_c01406{bottom:573.272391pt;}
.y90_c01406{bottom:573.874947pt;}
.y91_c01406{bottom:574.140615pt;}
.y79_c01406{bottom:601.199309pt;}
.y7a_c01406{bottom:601.547093pt;}
.y7b_c01406{bottom:601.720217pt;}
.y7c_c01406{bottom:602.162981pt;}
.y7d_c01406{bottom:602.681393pt;}
.y7e_c01406{bottom:602.940605pt;}
.y7f_c01406{bottom:603.388001pt;}
.y80_c01406{bottom:604.171841pt;}
.y81_c01406{bottom:604.446233pt;}
.y82_c01406{bottom:604.891229pt;}
.y83_c01406{bottom:605.403245pt;}
.y84_c01406{bottom:605.938925pt;}
.y85_c01406{bottom:606.373025pt;}
.y6f_c01406{bottom:633.601333pt;}
.y70_c01406{bottom:633.769825pt;}
.y71_c01406{bottom:633.942601pt;}
.y72_c01406{bottom:634.299001pt;}
.y73_c01406{bottom:634.992409pt;}
.y74_c01406{bottom:635.873785pt;}
.y75_c01406{bottom:636.303613pt;}
.y76_c01406{bottom:636.840073pt;}
.y77_c01406{bottom:637.399417pt;}
.y78_c01406{bottom:637.804825pt;}
.y6e_c01406{bottom:728.640000pt;}
.y62_c01406{bottom:758.872848pt;}
.y63_c01406{bottom:759.525143pt;}
.y64_c01406{bottom:759.837572pt;}
.y65_c01406{bottom:760.383215pt;}
.y66_c01406{bottom:761.008408pt;}
.y67_c01406{bottom:761.449176pt;}
.y68_c01406{bottom:761.987125pt;}
.y69_c01406{bottom:762.307236pt;}
.y6a_c01406{bottom:763.167180pt;}
.y6b_c01406{bottom:763.381179pt;}
.y6c_c01406{bottom:764.225760pt;}
.y6d_c01406{bottom:764.994236pt;}
.y54_c01406{bottom:791.034687pt;}
.y55_c01406{bottom:791.610204pt;}
.y56_c01406{bottom:791.905553pt;}
.y57_c01406{bottom:792.204899pt;}
.y58_c01406{bottom:792.776204pt;}
.y59_c01406{bottom:793.079103pt;}
.y5a_c01406{bottom:794.240291pt;}
.y5b_c01406{bottom:794.451980pt;}
.y5c_c01406{bottom:795.021341pt;}
.y5d_c01406{bottom:795.619025pt;}
.y5e_c01406{bottom:795.890600pt;}
.y5f_c01406{bottom:796.290480pt;}
.y60_c01406{bottom:796.587917pt;}
.y61_c01406{bottom:796.880711pt;}
.y47_c01406{bottom:821.994575pt;}
.y48_c01406{bottom:822.852575pt;}
.y49_c01406{bottom:823.174905pt;}
.y4a_c01406{bottom:823.718148pt;}
.y4b_c01406{bottom:824.133220pt;}
.y4c_c01406{bottom:824.566151pt;}
.y4d_c01406{bottom:825.216261pt;}
.y4e_c01406{bottom:825.963865pt;}
.y4f_c01406{bottom:826.286064pt;}
.y50_c01406{bottom:826.600497pt;}
.y51_c01406{bottom:827.043425pt;}
.y52_c01406{bottom:827.788557pt;}
.y53_c01406{bottom:828.120753pt;}
.y3b_c01406{bottom:853.674144pt;}
.y3c_c01406{bottom:854.745759pt;}
.y3d_c01406{bottom:855.075795pt;}
.y3e_c01406{bottom:855.836505pt;}
.y3f_c01406{bottom:856.362057pt;}
.y40_c01406{bottom:856.896011pt;}
.y41_c01406{bottom:857.226071pt;}
.y42_c01406{bottom:857.864803pt;}
.y43_c01406{bottom:858.184913pt;}
.y44_c01406{bottom:858.505072pt;}
.y45_c01406{bottom:859.687431pt;}
.y46_c01406{bottom:860.122401pt;}
.y30_c01406{bottom:884.876029pt;}
.y31_c01406{bottom:885.949384pt;}
.y32_c01406{bottom:886.166756pt;}
.y33_c01406{bottom:886.813277pt;}
.y34_c01406{bottom:887.554892pt;}
.y35_c01406{bottom:887.879347pt;}
.y36_c01406{bottom:888.943292pt;}
.y37_c01406{bottom:889.600808pt;}
.y38_c01406{bottom:889.812623pt;}
.y39_c01406{bottom:890.672459pt;}
.y3a_c01406{bottom:890.886217pt;}
.y26_c01406{bottom:916.797555pt;}
.y27_c01406{bottom:917.554580pt;}
.y28_c01406{bottom:917.981785pt;}
.y29_c01406{bottom:918.193552pt;}
.y2a_c01406{bottom:918.837913pt;}
.y2b_c01406{bottom:919.170109pt;}
.y2c_c01406{bottom:920.223961pt;}
.y2d_c01406{bottom:920.874168pt;}
.y2e_c01406{bottom:922.151632pt;}
.y2f_c01406{bottom:922.586723pt;}
.y1b_c01406{bottom:947.758851pt;}
.y1c_c01406{bottom:948.625025pt;}
.y1d_c01406{bottom:948.814620pt;}
.y1e_c01406{bottom:949.113917pt;}
.y1f_c01406{bottom:949.795105pt;}
.y20_c01406{bottom:950.183908pt;}
.y21_c01406{bottom:950.966531pt;}
.y22_c01406{bottom:951.257560pt;}
.y23_c01406{bottom:951.759835pt;}
.y24_c01406{bottom:952.815472pt;}
.y25_c01406{bottom:953.698376pt;}
.y10_c01406{bottom:979.680765pt;}
.y11_c01406{bottom:980.176835pt;}
.y12_c01406{bottom:980.563549pt;}
.y13_c01406{bottom:981.153612pt;}
.y14_c01406{bottom:982.518304pt;}
.y15_c01406{bottom:982.722240pt;}
.y16_c01406{bottom:983.485804pt;}
.y17_c01406{bottom:983.869519pt;}
.y18_c01406{bottom:984.265919pt;}
.y19_c01406{bottom:984.660207pt;}
.y1a_c01406{bottom:985.349208pt;}
.y2_c01406{bottom:1012.081333pt;}
.y3_c01406{bottom:1012.608373pt;}
.y4_c01406{bottom:1012.777153pt;}
.y5_c01406{bottom:1013.215597pt;}
.y6_c01406{bottom:1013.744797pt;}
.y7_c01406{bottom:1014.081805pt;}
.y8_c01406{bottom:1014.533221pt;}
.y9_c01406{bottom:1015.326025pt;}
.ya_c01406{bottom:1015.589569pt;}
.yb_c01406{bottom:1016.030245pt;}
.yc_c01406{bottom:1016.648041pt;}
.yd_c01406{bottom:1017.086545pt;}
.ye_c01406{bottom:1017.337093pt;}
.yf_c01406{bottom:1017.533701pt;}
.y1_c01406{bottom:1063.782667pt;}
.hb_c01406{height:21.341694pt;}
.h4_c01406{height:64.002592pt;}
.hc_c01406{height:64.003872pt;}
.h2_c01406{height:69.333333pt;}
.h9_c01406{height:69.334581pt;}
.h3_c01406{height:69.336141pt;}
.ha_c01406{height:69.340128pt;}
.h8_c01406{height:74.666667pt;}
.h5_c01406{height:74.669691pt;}
.h6_c01406{height:80.000000pt;}
.h7_c01406{height:85.336789pt;}
.h1_c01406{height:1111.333333pt;}
.h0_c01406{height:1111.440000pt;}
.w1_c01406{width:806.666667pt;}
.w0_c01406{width:806.880000pt;}
.x0_c01406{left:0.000000pt;}
.x4_c01406{left:113.848000pt;}
.x1b_c01406{left:115.336309pt;}
.x45_c01406{left:116.284123pt;}
.x58_c01406{left:117.671680pt;}
.x6a_c01406{left:119.186644pt;}
.x86_c01406{left:120.377604pt;}
.xb0_c01406{left:121.392000pt;}
.xb9_c01406{left:122.308000pt;}
.x59_c01406{left:156.314347pt;}
.x87_c01406{left:158.053268pt;}
.xbf_c01406{left:161.171536pt;}
.x12_c01406{left:162.824417pt;}
.x4f_c01406{left:164.880000pt;}
.xa2_c01406{left:169.347225pt;}
.xba_c01406{left:170.545333pt;}
.x5_c01406{left:172.408000pt;}
.x46_c01406{left:173.859607pt;}
.x5a_c01406{left:175.550347pt;}
.x90_c01406{left:179.188224pt;}
.x23_c01406{left:182.990939pt;}
.x88_c01406{left:187.106337pt;}
.x6_c01406{left:191.161333pt;}
.x3c_c01406{left:193.102673pt;}
.x78_c01406{left:196.091631pt;}
.xb8_c01406{left:197.212000pt;}
.x13_c01406{left:201.496069pt;}
.x47_c01406{left:203.416676pt;}
.x6b_c01406{left:205.795197pt;}
.x98_c01406{left:208.932892pt;}
.x2c_c01406{left:212.033715pt;}
.x51_c01406{left:215.390667pt;}
.xa6_c01406{left:217.440000pt;}
.xa8_c01406{left:219.914667pt;}
.x1c_c01406{left:220.939361pt;}
.x24_c01406{left:221.864909pt;}
.x5b_c01406{left:224.746347pt;}
.x81_c01406{left:226.668044pt;}
.xc0_c01406{left:229.336284pt;}
.x2d_c01406{left:231.741355pt;}
.x48_c01406{left:233.417745pt;}
.xa9_c01406{left:237.920000pt;}
.x7_c01406{left:239.877333pt;}
.x25_c01406{left:241.097895pt;}
.x34_c01406{left:242.063320pt;}
.x64_c01406{left:245.396637pt;}
.x1d_c01406{left:250.935097pt;}
.x4c_c01406{left:252.629673pt;}
.x6c_c01406{left:254.298753pt;}
.xaa_c01406{left:258.073333pt;}
.x14_c01406{left:260.539541pt;}
.x82_c01406{left:265.572044pt;}
.xb1_c01406{left:267.777333pt;}
.x3d_c01406{left:271.794591pt;}
.x91_c01406{left:274.947360pt;}
.x89_c01406{left:276.384200pt;}
.x5c_c01406{left:282.347680pt;}
.x72_c01406{left:283.591331pt;}
.x2e_c01406{left:290.538965pt;}
.x52_c01406{left:292.909333pt;}
.xab_c01406{left:297.704000pt;}
.x8_c01406{left:298.677333pt;}
.x26_c01406{left:299.655505pt;}
.x92_c01406{left:305.180417pt;}
.xc1_c01406{left:306.855801pt;}
.x3e_c01406{left:309.468573pt;}
.x35_c01406{left:311.178072pt;}
.x73_c01406{left:313.877181pt;}
.x99_c01406{left:315.709265pt;}
.xbb_c01406{left:316.941333pt;}
.x1e_c01406{left:319.066485pt;}
.x49_c01406{left:320.772953pt;}
.x79_c01406{left:323.508743pt;}
.x27_c01406{left:329.898965pt;}
.x50_c01406{left:332.880000pt;}
.x9_c01406{left:336.122667pt;}
.x1_c01406{left:337.440000pt;}
.x9a_c01406{left:344.117013pt;}
.xbc_c01406{left:346.528000pt;}
.x3f_c01406{left:348.830532pt;}
.x7a_c01406{left:352.551171pt;}
.xa7_c01406{left:353.760000pt;}
.x2_c01406{left:358.080000pt;}
.x5d_c01406{left:360.859680pt;}
.xb2_c01406{left:365.477333pt;}
.x53_c01406{left:369.954667pt;}
.x83_c01406{left:373.322711pt;}
.x65_c01406{left:380.973971pt;}
.xa_c01406{left:386.280000pt;}
.x2f_c01406{left:387.507892pt;}
.x74_c01406{left:390.833772pt;}
.x9b_c01406{left:393.253903pt;}
.xb3_c01406{left:394.764000pt;}
.x3_c01406{left:396.480000pt;}
.x4d_c01406{left:398.543057pt;}
.x6d_c01406{left:401.150755pt;}
.xac_c01406{left:403.993333pt;}
.x36_c01406{left:407.417665pt;}
.x75_c01406{left:411.269220pt;}
.x93_c01406{left:412.223457pt;}
.xc2_c01406{left:414.614323pt;}
.x15_c01406{left:417.496804pt;}
.x66_c01406{left:419.877971pt;}
.x8a_c01406{left:421.822892pt;}
.xbd_c01406{left:424.222667pt;}
.x28_c01406{left:425.658571pt;}
.x4e_c01406{left:427.591863pt;}
.x7b_c01406{left:430.754947pt;}
.xa3_c01406{left:432.358485pt;}
.xad_c01406{left:433.278667pt;}
.x1f_c01406{left:436.186763pt;}
.x37_c01406{left:437.423792pt;}
.x6e_c01406{left:439.357073pt;}
.xc3_c01406{left:444.157312pt;}
.x5e_c01406{left:447.953013pt;}
.xa4_c01406{left:451.119483pt;}
.xbe_c01406{left:453.289333pt;}
.x4a_c01406{left:458.054384pt;}
.x76_c01406{left:459.006603pt;}
.x8b_c01406{left:460.225211pt;}
.x9c_c01406{left:461.670612pt;}
.x20_c01406{left:465.263832pt;}
.x54_c01406{left:467.885333pt;}
.x94_c01406{left:470.762929pt;}
.xb_c01406{left:474.369333pt;}
.x40_c01406{left:475.833573pt;}
.x5f_c01406{left:478.441013pt;}
.x7c_c01406{left:479.520319pt;}
.x29_c01406{left:484.717503pt;}
.x8c_c01406{left:489.750280pt;}
.x16_c01406{left:493.892120pt;}
.x38_c01406{left:495.504081pt;}
.x95_c01406{left:500.074665pt;}
.xb4_c01406{left:502.300000pt;}
.xc_c01406{left:503.652000pt;}
.x41_c01406{left:505.114379pt;}
.x7d_c01406{left:506.557521pt;}
.x21_c01406{left:515.442043pt;}
.x6f_c01406{left:517.597699pt;}
.x84_c01406{left:518.538711pt;}
.xae_c01406{left:520.925333pt;}
.x39_c01406{left:524.552887pt;}
.x60_c01406{left:527.885013pt;}
.xb5_c01406{left:530.626667pt;}
.x17_c01406{left:532.230439pt;}
.x42_c01406{left:533.680529pt;}
.x9d_c01406{left:539.159249pt;}
.x30_c01406{left:543.963739pt;}
.x67_c01406{left:546.855304pt;}
.x70_c01406{left:548.088089pt;}
.xd_c01406{left:552.616000pt;}
.x3a_c01406{left:553.607025pt;}
.x31_c01406{left:563.202057pt;}
.x9e_c01406{left:568.233652pt;}
.x18_c01406{left:571.830079pt;}
.x43_c01406{left:574.005143pt;}
.x55_c01406{left:575.250667pt;}
.x8d_c01406{left:578.533488pt;}
.xb6_c01406{left:580.534667pt;}
.x61_c01406{left:584.775680pt;}
.x9f_c01406{left:597.512055pt;}
.xa5_c01406{left:598.718164pt;}
.x2a_c01406{left:600.878081pt;}
.x4b_c01406{left:601.899755pt;}
.x85_c01406{left:606.122711pt;}
.x19_c01406{left:611.195052pt;}
.x7e_c01406{left:613.563749pt;}
.x68_c01406{left:615.268637pt;}
.xe_c01406{left:621.260000pt;}
.x8e_c01406{left:625.815735pt;}
.xa0_c01406{left:627.006457pt;}
.x56_c01406{left:637.400000pt;}
.x2b_c01406{left:640.480040pt;}
.x32_c01406{left:641.404653pt;}
.x62_c01406{left:644.295680pt;}
.x7f_c01406{left:645.366033pt;}
.xb7_c01406{left:648.941333pt;}
.x96_c01406{left:655.573261pt;}
.x33_c01406{left:660.858972pt;}
.x8f_c01406{left:665.444708pt;}
.xf_c01406{left:669.982667pt;}
.x44_c01406{left:671.928712pt;}
.x80_c01406{left:673.153867pt;}
.x71_c01406{left:674.322949pt;}
.x1a_c01406{left:680.046428pt;}
.x57_c01406{left:682.445333pt;}
.xa1_c01406{left:685.111263pt;}
.x97_c01406{left:686.816985pt;}
.x63_c01406{left:692.529013pt;}
.x10_c01406{left:697.821333pt;}
.x3b_c01406{left:700.715052pt;}
.x22_c01406{left:709.352303pt;}
.x69_c01406{left:711.737971pt;}
.xaf_c01406{left:716.962667pt;}
.x11_c01406{left:719.666667pt;}
.x77_c01406{left:753.162659pt;}
}





/* 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_c01407 {
    display:none;
  }
  .loading-indicator_c01407.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01407 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_c01407 { 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_c01407" -> "#page-container .classname_c01407")
 */
.pf_c01407 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01407 { /* 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_c01407.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01407 { /* 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_c01407 { /* 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_c01407 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01407 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01407 {overflow:visible;}
  }
}
.c_c01407 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01407 { /* 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_c01407:after { /* webkit #35443 */
  content: '';
}
.t_c01407:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01407 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 */
}
.__c01407 { /* 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_c01407 { /* info for Javascript */
  display:none;
}
.l_c01407 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01407 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01407 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01407: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_c01407 {
    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_c01407.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01407.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_c01407 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01407{font-family:sans-serif;visibility:hidden;}
.sc__c01407{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01407{-webkit-text-stroke:0px transparent;}
}
.y0_c01407{bottom:0.000000px;}
.h1_c01407{height:1250.250000px;}
.h0_c01407{height:1250.370000px;}
.w1_c01407{width:907.500000px;}
.w0_c01407{width:907.740000px;}
.x0_c01407{left:0.000000px;}
@media print{
.y0_c01407{bottom:0.000000pt;}
.h1_c01407{height:1111.333333pt;}
.h0_c01407{height:1111.440000pt;}
.w1_c01407{width:806.666667pt;}
.w0_c01407{width:806.880000pt;}
.x0_c01407{left:0.000000pt;}
}





/* 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_c01408 {
    display:none;
  }
  .loading-indicator_c01408.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01408 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_c01408 { 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_c01408" -> "#page-container .classname_c01408")
 */
.pf_c01408 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01408 { /* 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_c01408.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01408 { /* 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_c01408 { /* 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_c01408 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01408 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01408 {overflow:visible;}
  }
}
.c_c01408 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01408 { /* 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_c01408:after { /* webkit #35443 */
  content: '';
}
.t_c01408:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01408 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 */
}
.__c01408 { /* 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_c01408 { /* info for Javascript */
  display:none;
}
.l_c01408 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01408 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01408 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01408: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_c01408 {
    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_c01408.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01408.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_c01408 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01408{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01408;src:url('chunks/assets/font_c605e72f209fc835e906f064.woff2')format("woff");}.ff1_c01408{font-family:ff1_c01408;line-height:1.000000;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;}
.m81_c01408{transform:matrix(0.123062,0.003446,-0.006997,0.249902,0,0);-ms-transform:matrix(0.123062,0.003446,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.123062,0.003446,-0.006997,0.249902,0,0);}
.m11_c01408{transform:matrix(0.139858,0.004336,-0.007746,0.249880,0,0);-ms-transform:matrix(0.139858,0.004336,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.139858,0.004336,-0.007746,0.249880,0,0);}
.m73_c01408{transform:matrix(0.143149,0.004008,-0.006997,0.249902,0,0);-ms-transform:matrix(0.143149,0.004008,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.143149,0.004008,-0.006997,0.249902,0,0);}
.m6f_c01408{transform:matrix(0.148412,0.004156,-0.006997,0.249902,0,0);-ms-transform:matrix(0.148412,0.004156,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.148412,0.004156,-0.006997,0.249902,0,0);}
.me1_c01408{transform:matrix(0.148466,0.005945,-0.010002,0.249800,0,0);-ms-transform:matrix(0.148466,0.005945,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.148466,0.005945,-0.010002,0.249800,0,0);}
.m74_c01408{transform:matrix(0.155724,0.004360,-0.006997,0.249902,0,0);-ms-transform:matrix(0.155724,0.004360,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.155724,0.004360,-0.006997,0.249902,0,0);}
.m71_c01408{transform:matrix(0.159468,0.004465,-0.006997,0.249902,0,0);-ms-transform:matrix(0.159468,0.004465,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.159468,0.004465,-0.006997,0.249902,0,0);}
.m2_c01408{transform:matrix(0.160055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160055,0.000000,0.000000,0.250000,0,0);}
.me5_c01408{transform:matrix(0.161707,0.004528,-0.006997,0.249902,0,0);-ms-transform:matrix(0.161707,0.004528,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.161707,0.004528,-0.006997,0.249902,0,0);}
.mfd_c01408{transform:matrix(0.166835,0.004671,-0.006997,0.249902,0,0);-ms-transform:matrix(0.166835,0.004671,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.166835,0.004671,-0.006997,0.249902,0,0);}
.m72_c01408{transform:matrix(0.168454,0.004717,-0.006997,0.249902,0,0);-ms-transform:matrix(0.168454,0.004717,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.168454,0.004717,-0.006997,0.249902,0,0);}
.m75_c01408{transform:matrix(0.168834,0.004727,-0.006997,0.249902,0,0);-ms-transform:matrix(0.168834,0.004727,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.168834,0.004727,-0.006997,0.249902,0,0);}
.mff_c01408{transform:matrix(0.169284,0.004740,-0.006997,0.249902,0,0);-ms-transform:matrix(0.169284,0.004740,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.169284,0.004740,-0.006997,0.249902,0,0);}
.m76_c01408{transform:matrix(0.171318,0.004797,-0.006997,0.249902,0,0);-ms-transform:matrix(0.171318,0.004797,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.171318,0.004797,-0.006997,0.249902,0,0);}
.m70_c01408{transform:matrix(0.174207,0.004878,-0.006997,0.249902,0,0);-ms-transform:matrix(0.174207,0.004878,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.174207,0.004878,-0.006997,0.249902,0,0);}
.m4_c01408{transform:matrix(0.174541,0.005411,-0.007746,0.249880,0,0);-ms-transform:matrix(0.174541,0.005411,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.174541,0.005411,-0.007746,0.249880,0,0);}
.m78_c01408{transform:matrix(0.174727,0.004892,-0.006997,0.249902,0,0);-ms-transform:matrix(0.174727,0.004892,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.174727,0.004892,-0.006997,0.249902,0,0);}
.m3e_c01408{transform:matrix(0.176241,0.004935,-0.006997,0.249902,0,0);-ms-transform:matrix(0.176241,0.004935,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.176241,0.004935,-0.006997,0.249902,0,0);}
.m39_c01408{transform:matrix(0.177266,0.004963,-0.006997,0.249902,0,0);-ms-transform:matrix(0.177266,0.004963,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.177266,0.004963,-0.006997,0.249902,0,0);}
.m77_c01408{transform:matrix(0.177655,0.004974,-0.006997,0.249902,0,0);-ms-transform:matrix(0.177655,0.004974,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.177655,0.004974,-0.006997,0.249902,0,0);}
.m42_c01408{transform:matrix(0.177770,0.004978,-0.006997,0.249902,0,0);-ms-transform:matrix(0.177770,0.004978,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.177770,0.004978,-0.006997,0.249902,0,0);}
.m8a_c01408{transform:matrix(0.177840,0.004980,-0.006997,0.249902,0,0);-ms-transform:matrix(0.177840,0.004980,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.177840,0.004980,-0.006997,0.249902,0,0);}
.m103_c01408{transform:matrix(0.178545,0.004999,-0.006997,0.249902,0,0);-ms-transform:matrix(0.178545,0.004999,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.178545,0.004999,-0.006997,0.249902,0,0);}
.mf9_c01408{transform:matrix(0.178935,0.005010,-0.006997,0.249902,0,0);-ms-transform:matrix(0.178935,0.005010,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.178935,0.005010,-0.006997,0.249902,0,0);}
.m40_c01408{transform:matrix(0.179275,0.005020,-0.006997,0.249902,0,0);-ms-transform:matrix(0.179275,0.005020,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.179275,0.005020,-0.006997,0.249902,0,0);}
.m101_c01408{transform:matrix(0.181074,0.005070,-0.006997,0.249902,0,0);-ms-transform:matrix(0.181074,0.005070,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.181074,0.005070,-0.006997,0.249902,0,0);}
.m102_c01408{transform:matrix(0.183763,0.005145,-0.006997,0.249902,0,0);-ms-transform:matrix(0.183763,0.005145,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.183763,0.005145,-0.006997,0.249902,0,0);}
.m7c_c01408{transform:matrix(0.184062,0.006449,-0.008753,0.249847,0,0);-ms-transform:matrix(0.184062,0.006449,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.184062,0.006449,-0.008753,0.249847,0,0);}
.m67_c01408{transform:matrix(0.185107,0.005183,-0.006997,0.249902,0,0);-ms-transform:matrix(0.185107,0.005183,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.185107,0.005183,-0.006997,0.249902,0,0);}
.m68_c01408{transform:matrix(0.187127,0.005240,-0.006997,0.249902,0,0);-ms-transform:matrix(0.187127,0.005240,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.187127,0.005240,-0.006997,0.249902,0,0);}
.m100_c01408{transform:matrix(0.187671,0.005255,-0.006997,0.249902,0,0);-ms-transform:matrix(0.187671,0.005255,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.187671,0.005255,-0.006997,0.249902,0,0);}
.mfc_c01408{transform:matrix(0.187691,0.005255,-0.006997,0.249902,0,0);-ms-transform:matrix(0.187691,0.005255,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.187691,0.005255,-0.006997,0.249902,0,0);}
.m1d_c01408{transform:matrix(0.188315,0.005838,-0.007746,0.249880,0,0);-ms-transform:matrix(0.188315,0.005838,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.188315,0.005838,-0.007746,0.249880,0,0);}
.m7e_c01408{transform:matrix(0.188389,0.006600,-0.008753,0.249847,0,0);-ms-transform:matrix(0.188389,0.006600,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.188389,0.006600,-0.008753,0.249847,0,0);}
.m1a_c01408{transform:matrix(0.189064,0.005861,-0.007746,0.249880,0,0);-ms-transform:matrix(0.189064,0.005861,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.189064,0.005861,-0.007746,0.249880,0,0);}
.m69_c01408{transform:matrix(0.189081,0.005294,-0.006997,0.249902,0,0);-ms-transform:matrix(0.189081,0.005294,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.189081,0.005294,-0.006997,0.249902,0,0);}
.m22_c01408{transform:matrix(0.189525,0.005496,-0.007247,0.249895,0,0);-ms-transform:matrix(0.189525,0.005496,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.189525,0.005496,-0.007247,0.249895,0,0);}
.mfa_c01408{transform:matrix(0.189541,0.005307,-0.006997,0.249902,0,0);-ms-transform:matrix(0.189541,0.005307,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.189541,0.005307,-0.006997,0.249902,0,0);}
.md4_c01408{transform:matrix(0.189696,0.005311,-0.006997,0.249902,0,0);-ms-transform:matrix(0.189696,0.005311,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.189696,0.005311,-0.006997,0.249902,0,0);}
.m17_c01408{transform:matrix(0.190174,0.005895,-0.007746,0.249880,0,0);-ms-transform:matrix(0.190174,0.005895,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.190174,0.005895,-0.007746,0.249880,0,0);}
.mb2_c01408{transform:matrix(0.190450,0.005333,-0.006997,0.249902,0,0);-ms-transform:matrix(0.190450,0.005333,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.190450,0.005333,-0.006997,0.249902,0,0);}
.mfe_c01408{transform:matrix(0.190735,0.005341,-0.006997,0.249902,0,0);-ms-transform:matrix(0.190735,0.005341,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.190735,0.005341,-0.006997,0.249902,0,0);}
.m86_c01408{transform:matrix(0.190755,0.005341,-0.006997,0.249902,0,0);-ms-transform:matrix(0.190755,0.005341,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.190755,0.005341,-0.006997,0.249902,0,0);}
.m6e_c01408{transform:matrix(0.191225,0.005354,-0.006997,0.249902,0,0);-ms-transform:matrix(0.191225,0.005354,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.191225,0.005354,-0.006997,0.249902,0,0);}
.ma5_c01408{transform:matrix(0.191360,0.005358,-0.006997,0.249902,0,0);-ms-transform:matrix(0.191360,0.005358,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.191360,0.005358,-0.006997,0.249902,0,0);}
.m41_c01408{transform:matrix(0.191405,0.005359,-0.006997,0.249902,0,0);-ms-transform:matrix(0.191405,0.005359,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.191405,0.005359,-0.006997,0.249902,0,0);}
.m6b_c01408{transform:matrix(0.192435,0.005388,-0.006997,0.249902,0,0);-ms-transform:matrix(0.192435,0.005388,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.192435,0.005388,-0.006997,0.249902,0,0);}
.m43_c01408{transform:matrix(0.192699,0.005396,-0.006997,0.249902,0,0);-ms-transform:matrix(0.192699,0.005396,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.192699,0.005396,-0.006997,0.249902,0,0);}
.m87_c01408{transform:matrix(0.193524,0.005419,-0.006997,0.249902,0,0);-ms-transform:matrix(0.193524,0.005419,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.193524,0.005419,-0.006997,0.249902,0,0);}
.m3a_c01408{transform:matrix(0.195044,0.005461,-0.006997,0.249902,0,0);-ms-transform:matrix(0.195044,0.005461,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.195044,0.005461,-0.006997,0.249902,0,0);}
.m66_c01408{transform:matrix(0.195203,0.005466,-0.006997,0.249902,0,0);-ms-transform:matrix(0.195203,0.005466,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.195203,0.005466,-0.006997,0.249902,0,0);}
.mc0_c01408{transform:matrix(0.195798,0.005482,-0.006997,0.249902,0,0);-ms-transform:matrix(0.195798,0.005482,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.195798,0.005482,-0.006997,0.249902,0,0);}
.mb8_c01408{transform:matrix(0.195823,0.005483,-0.006997,0.249902,0,0);-ms-transform:matrix(0.195823,0.005483,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.195823,0.005483,-0.006997,0.249902,0,0);}
.ma1_c01408{transform:matrix(0.196288,0.005496,-0.006997,0.249902,0,0);-ms-transform:matrix(0.196288,0.005496,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.196288,0.005496,-0.006997,0.249902,0,0);}
.m3f_c01408{transform:matrix(0.198372,0.005554,-0.006997,0.249902,0,0);-ms-transform:matrix(0.198372,0.005554,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.198372,0.005554,-0.006997,0.249902,0,0);}
.m9c_c01408{transform:matrix(0.198542,0.005559,-0.006997,0.249902,0,0);-ms-transform:matrix(0.198542,0.005559,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.198542,0.005559,-0.006997,0.249902,0,0);}
.m18_c01408{transform:matrix(0.198660,0.006158,-0.007746,0.249880,0,0);-ms-transform:matrix(0.198660,0.006158,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.198660,0.006158,-0.007746,0.249880,0,0);}
.mfb_c01408{transform:matrix(0.199457,0.005585,-0.006997,0.249902,0,0);-ms-transform:matrix(0.199457,0.005585,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.199457,0.005585,-0.006997,0.249902,0,0);}
.mba_c01408{transform:matrix(0.199642,0.005590,-0.006997,0.249902,0,0);-ms-transform:matrix(0.199642,0.005590,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.199642,0.005590,-0.006997,0.249902,0,0);}
.m9f_c01408{transform:matrix(0.199917,0.005598,-0.006997,0.249902,0,0);-ms-transform:matrix(0.199917,0.005598,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.199917,0.005598,-0.006997,0.249902,0,0);}
.ma3_c01408{transform:matrix(0.200172,0.005605,-0.006997,0.249902,0,0);-ms-transform:matrix(0.200172,0.005605,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.200172,0.005605,-0.006997,0.249902,0,0);}
.m104_c01408{transform:matrix(0.200411,0.005612,-0.006997,0.249902,0,0);-ms-transform:matrix(0.200411,0.005612,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.200411,0.005612,-0.006997,0.249902,0,0);}
.m11d_c01408{transform:matrix(0.200750,0.007234,-0.009003,0.249838,0,0);-ms-transform:matrix(0.200750,0.007234,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.200750,0.007234,-0.009003,0.249838,0,0);}
.m23_c01408{transform:matrix(0.200796,0.005823,-0.007247,0.249895,0,0);-ms-transform:matrix(0.200796,0.005823,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.200796,0.005823,-0.007247,0.249895,0,0);}
.m64_c01408{transform:matrix(0.201481,0.005641,-0.006997,0.249902,0,0);-ms-transform:matrix(0.201481,0.005641,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.201481,0.005641,-0.006997,0.249902,0,0);}
.m1c_c01408{transform:matrix(0.201738,0.006254,-0.007746,0.249880,0,0);-ms-transform:matrix(0.201738,0.006254,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.201738,0.006254,-0.007746,0.249880,0,0);}
.m11b_c01408{transform:matrix(0.201944,0.007277,-0.009003,0.249838,0,0);-ms-transform:matrix(0.201944,0.007277,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.201944,0.007277,-0.009003,0.249838,0,0);}
.m62_c01408{transform:matrix(0.201991,0.005656,-0.006997,0.249902,0,0);-ms-transform:matrix(0.201991,0.005656,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.201991,0.005656,-0.006997,0.249902,0,0);}
.mb9_c01408{transform:matrix(0.202026,0.005657,-0.006997,0.249902,0,0);-ms-transform:matrix(0.202026,0.005657,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.202026,0.005657,-0.006997,0.249902,0,0);}
.mc8_c01408{transform:matrix(0.202211,0.005662,-0.006997,0.249902,0,0);-ms-transform:matrix(0.202211,0.005662,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.202211,0.005662,-0.006997,0.249902,0,0);}
.med_c01408{transform:matrix(0.202641,0.005674,-0.006997,0.249902,0,0);-ms-transform:matrix(0.202641,0.005674,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.202641,0.005674,-0.006997,0.249902,0,0);}
.mb6_c01408{transform:matrix(0.202696,0.005675,-0.006997,0.249902,0,0);-ms-transform:matrix(0.202696,0.005675,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.202696,0.005675,-0.006997,0.249902,0,0);}
.m36_c01408{transform:matrix(0.203295,0.005692,-0.006997,0.249902,0,0);-ms-transform:matrix(0.203295,0.005692,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.203295,0.005692,-0.006997,0.249902,0,0);}
.m10_c01408{transform:matrix(0.203307,0.006303,-0.007746,0.249880,0,0);-ms-transform:matrix(0.203307,0.006303,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.203307,0.006303,-0.007746,0.249880,0,0);}
.m3d_c01408{transform:matrix(0.203365,0.005694,-0.006997,0.249902,0,0);-ms-transform:matrix(0.203365,0.005694,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.203365,0.005694,-0.006997,0.249902,0,0);}
.m88_c01408{transform:matrix(0.204840,0.005736,-0.006997,0.249902,0,0);-ms-transform:matrix(0.204840,0.005736,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.204840,0.005736,-0.006997,0.249902,0,0);}
.m6c_c01408{transform:matrix(0.205155,0.005744,-0.006997,0.249902,0,0);-ms-transform:matrix(0.205155,0.005744,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.205155,0.005744,-0.006997,0.249902,0,0);}
.me_c01408{transform:matrix(0.205746,0.006378,-0.007746,0.249880,0,0);-ms-transform:matrix(0.205746,0.006378,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.205746,0.006378,-0.007746,0.249880,0,0);}
.m79_c01408{transform:matrix(0.206179,0.007223,-0.008753,0.249847,0,0);-ms-transform:matrix(0.206179,0.007223,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.206179,0.007223,-0.008753,0.249847,0,0);}
.m63_c01408{transform:matrix(0.206239,0.005775,-0.006997,0.249902,0,0);-ms-transform:matrix(0.206239,0.005775,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.206239,0.005775,-0.006997,0.249902,0,0);}
.m7a_c01408{transform:matrix(0.206358,0.007230,-0.008753,0.249847,0,0);-ms-transform:matrix(0.206358,0.007230,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.206358,0.007230,-0.008753,0.249847,0,0);}
.m6a_c01408{transform:matrix(0.206444,0.005780,-0.006997,0.249902,0,0);-ms-transform:matrix(0.206444,0.005780,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.206444,0.005780,-0.006997,0.249902,0,0);}
.m9d_c01408{transform:matrix(0.206534,0.005783,-0.006997,0.249902,0,0);-ms-transform:matrix(0.206534,0.005783,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.206534,0.005783,-0.006997,0.249902,0,0);}
.mf0_c01408{transform:matrix(0.206749,0.005789,-0.006997,0.249902,0,0);-ms-transform:matrix(0.206749,0.005789,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.206749,0.005789,-0.006997,0.249902,0,0);}
.m9a_c01408{transform:matrix(0.206779,0.005790,-0.006997,0.249902,0,0);-ms-transform:matrix(0.206779,0.005790,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.206779,0.005790,-0.006997,0.249902,0,0);}
.m3b_c01408{transform:matrix(0.207159,0.005800,-0.006997,0.249902,0,0);-ms-transform:matrix(0.207159,0.005800,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.207159,0.005800,-0.006997,0.249902,0,0);}
.m4f_c01408{transform:matrix(0.207379,0.005807,-0.006997,0.249902,0,0);-ms-transform:matrix(0.207379,0.005807,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.207379,0.005807,-0.006997,0.249902,0,0);}
.m7b_c01408{transform:matrix(0.207563,0.007272,-0.008753,0.249847,0,0);-ms-transform:matrix(0.207563,0.007272,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.207563,0.007272,-0.008753,0.249847,0,0);}
.m6d_c01408{transform:matrix(0.208893,0.005849,-0.006997,0.249902,0,0);-ms-transform:matrix(0.208893,0.005849,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.208893,0.005849,-0.006997,0.249902,0,0);}
.m2c_c01408{transform:matrix(0.209132,0.006065,-0.007247,0.249895,0,0);-ms-transform:matrix(0.209132,0.006065,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.209132,0.006065,-0.007247,0.249895,0,0);}
.mce_c01408{transform:matrix(0.209423,0.005864,-0.006997,0.249902,0,0);-ms-transform:matrix(0.209423,0.005864,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.209423,0.005864,-0.006997,0.249902,0,0);}
.m28_c01408{transform:matrix(0.209962,0.006089,-0.007247,0.249895,0,0);-ms-transform:matrix(0.209962,0.006089,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.209962,0.006089,-0.007247,0.249895,0,0);}
.mb_c01408{transform:matrix(0.210514,0.006526,-0.007746,0.249880,0,0);-ms-transform:matrix(0.210514,0.006526,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.210514,0.006526,-0.007746,0.249880,0,0);}
.m57_c01408{transform:matrix(0.211132,0.005912,-0.006997,0.249902,0,0);-ms-transform:matrix(0.211132,0.005912,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.211132,0.005912,-0.006997,0.249902,0,0);}
.m33_c01408{transform:matrix(0.211252,0.005915,-0.006997,0.249902,0,0);-ms-transform:matrix(0.211252,0.005915,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.211252,0.005915,-0.006997,0.249902,0,0);}
.m9b_c01408{transform:matrix(0.211462,0.005921,-0.006997,0.249902,0,0);-ms-transform:matrix(0.211462,0.005921,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.211462,0.005921,-0.006997,0.249902,0,0);}
.mcd_c01408{transform:matrix(0.211747,0.005929,-0.006997,0.249902,0,0);-ms-transform:matrix(0.211747,0.005929,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.211747,0.005929,-0.006997,0.249902,0,0);}
.mb3_c01408{transform:matrix(0.211802,0.005930,-0.006997,0.249902,0,0);-ms-transform:matrix(0.211802,0.005930,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.211802,0.005930,-0.006997,0.249902,0,0);}
.m82_c01408{transform:matrix(0.211902,0.005933,-0.006997,0.249902,0,0);-ms-transform:matrix(0.211902,0.005933,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.211902,0.005933,-0.006997,0.249902,0,0);}
.m13_c01408{transform:matrix(0.212098,0.006575,-0.007746,0.249880,0,0);-ms-transform:matrix(0.212098,0.006575,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.212098,0.006575,-0.007746,0.249880,0,0);}
.m65_c01408{transform:matrix(0.212407,0.005947,-0.006997,0.249902,0,0);-ms-transform:matrix(0.212407,0.005947,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.212407,0.005947,-0.006997,0.249902,0,0);}
.m7d_c01408{transform:matrix(0.213174,0.007469,-0.008753,0.249847,0,0);-ms-transform:matrix(0.213174,0.007469,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.213174,0.007469,-0.008753,0.249847,0,0);}
.m26_c01408{transform:matrix(0.213520,0.006192,-0.007247,0.249895,0,0);-ms-transform:matrix(0.213520,0.006192,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.213520,0.006192,-0.007247,0.249895,0,0);}
.m10f_c01408{transform:matrix(0.213532,0.006620,-0.007746,0.249880,0,0);-ms-transform:matrix(0.213532,0.006620,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.213532,0.006620,-0.007746,0.249880,0,0);}
.m19_c01408{transform:matrix(0.213642,0.006623,-0.007746,0.249880,0,0);-ms-transform:matrix(0.213642,0.006623,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.213642,0.006623,-0.007746,0.249880,0,0);}
.m25_c01408{transform:matrix(0.213990,0.006206,-0.007247,0.249895,0,0);-ms-transform:matrix(0.213990,0.006206,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.213990,0.006206,-0.007247,0.249895,0,0);}
.m21_c01408{transform:matrix(0.214210,0.006212,-0.007247,0.249895,0,0);-ms-transform:matrix(0.214210,0.006212,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.214210,0.006212,-0.007247,0.249895,0,0);}
.mbb_c01408{transform:matrix(0.214251,0.005999,-0.006997,0.249902,0,0);-ms-transform:matrix(0.214251,0.005999,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.214251,0.005999,-0.006997,0.249902,0,0);}
.m6_c01408{transform:matrix(0.214317,0.006644,-0.007746,0.249880,0,0);-ms-transform:matrix(0.214317,0.006644,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.214317,0.006644,-0.007746,0.249880,0,0);}
.m84_c01408{transform:matrix(0.214811,0.006015,-0.006997,0.249902,0,0);-ms-transform:matrix(0.214811,0.006015,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.214811,0.006015,-0.006997,0.249902,0,0);}
.m48_c01408{transform:matrix(0.215471,0.006033,-0.006997,0.249902,0,0);-ms-transform:matrix(0.215471,0.006033,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.215471,0.006033,-0.006997,0.249902,0,0);}
.m5b_c01408{transform:matrix(0.215670,0.006039,-0.006997,0.249902,0,0);-ms-transform:matrix(0.215670,0.006039,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.215670,0.006039,-0.006997,0.249902,0,0);}
.mbe_c01408{transform:matrix(0.215845,0.006044,-0.006997,0.249902,0,0);-ms-transform:matrix(0.215845,0.006044,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.215845,0.006044,-0.006997,0.249902,0,0);}
.md1_c01408{transform:matrix(0.216250,0.006055,-0.006997,0.249902,0,0);-ms-transform:matrix(0.216250,0.006055,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.216250,0.006055,-0.006997,0.249902,0,0);}
.m10a_c01408{transform:matrix(0.216391,0.006708,-0.007746,0.249880,0,0);-ms-transform:matrix(0.216391,0.006708,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.216391,0.006708,-0.007746,0.249880,0,0);}
.ma2_c01408{transform:matrix(0.216550,0.006063,-0.006997,0.249902,0,0);-ms-transform:matrix(0.216550,0.006063,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.216550,0.006063,-0.006997,0.249902,0,0);}
.mcb_c01408{transform:matrix(0.216640,0.006066,-0.006997,0.249902,0,0);-ms-transform:matrix(0.216640,0.006066,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.216640,0.006066,-0.006997,0.249902,0,0);}
.mf_c01408{transform:matrix(0.216996,0.006727,-0.007746,0.249880,0,0);-ms-transform:matrix(0.216996,0.006727,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.216996,0.006727,-0.007746,0.249880,0,0);}
.m10c_c01408{transform:matrix(0.218150,0.006763,-0.007746,0.249880,0,0);-ms-transform:matrix(0.218150,0.006763,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.218150,0.006763,-0.007746,0.249880,0,0);}
.m59_c01408{transform:matrix(0.218169,0.006109,-0.006997,0.249902,0,0);-ms-transform:matrix(0.218169,0.006109,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.218169,0.006109,-0.006997,0.249902,0,0);}
.ma7_c01408{transform:matrix(0.218354,0.006114,-0.006997,0.249902,0,0);-ms-transform:matrix(0.218354,0.006114,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.218354,0.006114,-0.006997,0.249902,0,0);}
.m49_c01408{transform:matrix(0.218854,0.006128,-0.006997,0.249902,0,0);-ms-transform:matrix(0.218854,0.006128,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.218854,0.006128,-0.006997,0.249902,0,0);}
.mb7_c01408{transform:matrix(0.219279,0.006140,-0.006997,0.249902,0,0);-ms-transform:matrix(0.219279,0.006140,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.219279,0.006140,-0.006997,0.249902,0,0);}
.mcf_c01408{transform:matrix(0.219449,0.006145,-0.006997,0.249902,0,0);-ms-transform:matrix(0.219449,0.006145,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.219449,0.006145,-0.006997,0.249902,0,0);}
.m61_c01408{transform:matrix(0.219659,0.006150,-0.006997,0.249902,0,0);-ms-transform:matrix(0.219659,0.006150,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.219659,0.006150,-0.006997,0.249902,0,0);}
.m8d_c01408{transform:matrix(0.220019,0.006161,-0.006997,0.249902,0,0);-ms-transform:matrix(0.220019,0.006161,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.220019,0.006161,-0.006997,0.249902,0,0);}
.md5_c01408{transform:matrix(0.220104,0.006163,-0.006997,0.249902,0,0);-ms-transform:matrix(0.220104,0.006163,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.220104,0.006163,-0.006997,0.249902,0,0);}
.ma_c01408{transform:matrix(0.220934,0.006849,-0.007746,0.249880,0,0);-ms-transform:matrix(0.220934,0.006849,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.220934,0.006849,-0.007746,0.249880,0,0);}
.m27_c01408{transform:matrix(0.220997,0.006409,-0.007247,0.249895,0,0);-ms-transform:matrix(0.220997,0.006409,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.220997,0.006409,-0.007247,0.249895,0,0);}
.m16_c01408{transform:matrix(0.221164,0.006856,-0.007746,0.249880,0,0);-ms-transform:matrix(0.221164,0.006856,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.221164,0.006856,-0.007746,0.249880,0,0);}
.m1f_c01408{transform:matrix(0.221317,0.006418,-0.007247,0.249895,0,0);-ms-transform:matrix(0.221317,0.006418,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.221317,0.006418,-0.007247,0.249895,0,0);}
.m4c_c01408{transform:matrix(0.221368,0.006198,-0.006997,0.249902,0,0);-ms-transform:matrix(0.221368,0.006198,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.221368,0.006198,-0.006997,0.249902,0,0);}
.m24_c01408{transform:matrix(0.221467,0.006423,-0.007247,0.249895,0,0);-ms-transform:matrix(0.221467,0.006423,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.221467,0.006423,-0.007247,0.249895,0,0);}
.m9e_c01408{transform:matrix(0.221593,0.006205,-0.006997,0.249902,0,0);-ms-transform:matrix(0.221593,0.006205,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.221593,0.006205,-0.006997,0.249902,0,0);}
.mc_c01408{transform:matrix(0.221993,0.006882,-0.007746,0.249880,0,0);-ms-transform:matrix(0.221993,0.006882,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.221993,0.006882,-0.007746,0.249880,0,0);}
.ma0_c01408{transform:matrix(0.222018,0.006217,-0.006997,0.249902,0,0);-ms-transform:matrix(0.222018,0.006217,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.222018,0.006217,-0.006997,0.249902,0,0);}
.m55_c01408{transform:matrix(0.222038,0.006217,-0.006997,0.249902,0,0);-ms-transform:matrix(0.222038,0.006217,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.222038,0.006217,-0.006997,0.249902,0,0);}
.mbc_c01408{transform:matrix(0.222048,0.006217,-0.006997,0.249902,0,0);-ms-transform:matrix(0.222048,0.006217,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.222048,0.006217,-0.006997,0.249902,0,0);}
.m4d_c01408{transform:matrix(0.223218,0.006250,-0.006997,0.249902,0,0);-ms-transform:matrix(0.223218,0.006250,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.223218,0.006250,-0.006997,0.249902,0,0);}
.m29_c01408{transform:matrix(0.223261,0.006475,-0.007247,0.249895,0,0);-ms-transform:matrix(0.223261,0.006475,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.223261,0.006475,-0.007247,0.249895,0,0);}
.mc2_c01408{transform:matrix(0.223387,0.006255,-0.006997,0.249902,0,0);-ms-transform:matrix(0.223387,0.006255,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.223387,0.006255,-0.006997,0.249902,0,0);}
.m5_c01408{transform:matrix(0.223513,0.006929,-0.007746,0.249880,0,0);-ms-transform:matrix(0.223513,0.006929,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.223513,0.006929,-0.007746,0.249880,0,0);}
.maf_c01408{transform:matrix(0.223797,0.006266,-0.006997,0.249902,0,0);-ms-transform:matrix(0.223797,0.006266,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.223797,0.006266,-0.006997,0.249902,0,0);}
.m53_c01408{transform:matrix(0.223982,0.006272,-0.006997,0.249902,0,0);-ms-transform:matrix(0.223982,0.006272,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.223982,0.006272,-0.006997,0.249902,0,0);}
.mbd_c01408{transform:matrix(0.224522,0.006287,-0.006997,0.249902,0,0);-ms-transform:matrix(0.224522,0.006287,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.224522,0.006287,-0.006997,0.249902,0,0);}
.ma9_c01408{transform:matrix(0.224567,0.006288,-0.006997,0.249902,0,0);-ms-transform:matrix(0.224567,0.006288,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.224567,0.006288,-0.006997,0.249902,0,0);}
.ma4_c01408{transform:matrix(0.224722,0.006292,-0.006997,0.249902,0,0);-ms-transform:matrix(0.224722,0.006292,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.224722,0.006292,-0.006997,0.249902,0,0);}
.m89_c01408{transform:matrix(0.224812,0.006295,-0.006997,0.249902,0,0);-ms-transform:matrix(0.224812,0.006295,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.224812,0.006295,-0.006997,0.249902,0,0);}
.m105_c01408{transform:matrix(0.225217,0.006982,-0.007746,0.249880,0,0);-ms-transform:matrix(0.225217,0.006982,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.225217,0.006982,-0.007746,0.249880,0,0);}
.mb1_c01408{transform:matrix(0.226251,0.006335,-0.006997,0.249902,0,0);-ms-transform:matrix(0.226251,0.006335,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.226251,0.006335,-0.006997,0.249902,0,0);}
.m52_c01408{transform:matrix(0.226606,0.006345,-0.006997,0.249902,0,0);-ms-transform:matrix(0.226606,0.006345,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.226606,0.006345,-0.006997,0.249902,0,0);}
.m109_c01408{transform:matrix(0.226726,0.007029,-0.007746,0.249880,0,0);-ms-transform:matrix(0.226726,0.007029,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.226726,0.007029,-0.007746,0.249880,0,0);}
.m2a_c01408{transform:matrix(0.227090,0.006586,-0.007247,0.249895,0,0);-ms-transform:matrix(0.227090,0.006586,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.227090,0.006586,-0.007247,0.249895,0,0);}
.m85_c01408{transform:matrix(0.227561,0.006372,-0.006997,0.249902,0,0);-ms-transform:matrix(0.227561,0.006372,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.227561,0.006372,-0.006997,0.249902,0,0);}
.m5e_c01408{transform:matrix(0.227661,0.006375,-0.006997,0.249902,0,0);-ms-transform:matrix(0.227661,0.006375,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.227661,0.006375,-0.006997,0.249902,0,0);}
.m8b_c01408{transform:matrix(0.227766,0.006377,-0.006997,0.249902,0,0);-ms-transform:matrix(0.227766,0.006377,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.227766,0.006377,-0.006997,0.249902,0,0);}
.m46_c01408{transform:matrix(0.227856,0.006380,-0.006997,0.249902,0,0);-ms-transform:matrix(0.227856,0.006380,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.227856,0.006380,-0.006997,0.249902,0,0);}
.m10d_c01408{transform:matrix(0.228400,0.007080,-0.007746,0.249880,0,0);-ms-transform:matrix(0.228400,0.007080,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.228400,0.007080,-0.007746,0.249880,0,0);}
.mc7_c01408{transform:matrix(0.228940,0.006410,-0.006997,0.249902,0,0);-ms-transform:matrix(0.228940,0.006410,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.228940,0.006410,-0.006997,0.249902,0,0);}
.mca_c01408{transform:matrix(0.229035,0.006413,-0.006997,0.249902,0,0);-ms-transform:matrix(0.229035,0.006413,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.229035,0.006413,-0.006997,0.249902,0,0);}
.me6_c01408{transform:matrix(0.229765,0.006433,-0.006997,0.249902,0,0);-ms-transform:matrix(0.229765,0.006433,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.229765,0.006433,-0.006997,0.249902,0,0);}
.m2f_c01408{transform:matrix(0.230235,0.006447,-0.006997,0.249902,0,0);-ms-transform:matrix(0.230235,0.006447,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.230235,0.006447,-0.006997,0.249902,0,0);}
.mc4_c01408{transform:matrix(0.230355,0.006450,-0.006997,0.249902,0,0);-ms-transform:matrix(0.230355,0.006450,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.230355,0.006450,-0.006997,0.249902,0,0);}
.mae_c01408{transform:matrix(0.230460,0.006453,-0.006997,0.249902,0,0);-ms-transform:matrix(0.230460,0.006453,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.230460,0.006453,-0.006997,0.249902,0,0);}
.m7_c01408{transform:matrix(0.230654,0.007150,-0.007746,0.249880,0,0);-ms-transform:matrix(0.230654,0.007150,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.230654,0.007150,-0.007746,0.249880,0,0);}
.mcc_c01408{transform:matrix(0.231044,0.006469,-0.006997,0.249902,0,0);-ms-transform:matrix(0.231044,0.006469,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.231044,0.006469,-0.006997,0.249902,0,0);}
.m116_c01408{transform:matrix(0.231069,0.006470,-0.006997,0.249902,0,0);-ms-transform:matrix(0.231069,0.006470,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.231069,0.006470,-0.006997,0.249902,0,0);}
.mf3_c01408{transform:matrix(0.231534,0.006483,-0.006997,0.249902,0,0);-ms-transform:matrix(0.231534,0.006483,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.231534,0.006483,-0.006997,0.249902,0,0);}
.md7_c01408{transform:matrix(0.233069,0.006526,-0.006997,0.249902,0,0);-ms-transform:matrix(0.233069,0.006526,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.233069,0.006526,-0.006997,0.249902,0,0);}
.m11c_c01408{transform:matrix(0.233099,0.008400,-0.009003,0.249838,0,0);-ms-transform:matrix(0.233099,0.008400,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.233099,0.008400,-0.009003,0.249838,0,0);}
.m11a_c01408{transform:matrix(0.233723,0.008422,-0.009003,0.249838,0,0);-ms-transform:matrix(0.233723,0.008422,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.233723,0.008422,-0.009003,0.249838,0,0);}
.m118_c01408{transform:matrix(0.233798,0.006546,-0.006997,0.249902,0,0);-ms-transform:matrix(0.233798,0.006546,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.233798,0.006546,-0.006997,0.249902,0,0);}
.m5d_c01408{transform:matrix(0.234168,0.006557,-0.006997,0.249902,0,0);-ms-transform:matrix(0.234168,0.006557,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.234168,0.006557,-0.006997,0.249902,0,0);}
.mb0_c01408{transform:matrix(0.234458,0.006565,-0.006997,0.249902,0,0);-ms-transform:matrix(0.234458,0.006565,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.234458,0.006565,-0.006997,0.249902,0,0);}
.m45_c01408{transform:matrix(0.235088,0.006582,-0.006997,0.249902,0,0);-ms-transform:matrix(0.235088,0.006582,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.235088,0.006582,-0.006997,0.249902,0,0);}
.m56_c01408{transform:matrix(0.235263,0.006587,-0.006997,0.249902,0,0);-ms-transform:matrix(0.235263,0.006587,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.235263,0.006587,-0.006997,0.249902,0,0);}
.m47_c01408{transform:matrix(0.235298,0.006588,-0.006997,0.249902,0,0);-ms-transform:matrix(0.235298,0.006588,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.235298,0.006588,-0.006997,0.249902,0,0);}
.md9_c01408{transform:matrix(0.235393,0.006591,-0.006997,0.249902,0,0);-ms-transform:matrix(0.235393,0.006591,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.235393,0.006591,-0.006997,0.249902,0,0);}
.md0_c01408{transform:matrix(0.235658,0.006598,-0.006997,0.249902,0,0);-ms-transform:matrix(0.235658,0.006598,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.235658,0.006598,-0.006997,0.249902,0,0);}
.mc5_c01408{transform:matrix(0.235698,0.006600,-0.006997,0.249902,0,0);-ms-transform:matrix(0.235698,0.006600,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.235698,0.006600,-0.006997,0.249902,0,0);}
.m8e_c01408{transform:matrix(0.236427,0.006620,-0.006997,0.249902,0,0);-ms-transform:matrix(0.236427,0.006620,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.236427,0.006620,-0.006997,0.249902,0,0);}
.m44_c01408{transform:matrix(0.237112,0.006639,-0.006997,0.249902,0,0);-ms-transform:matrix(0.237112,0.006639,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.237112,0.006639,-0.006997,0.249902,0,0);}
.md3_c01408{transform:matrix(0.237167,0.006641,-0.006997,0.249902,0,0);-ms-transform:matrix(0.237167,0.006641,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.237167,0.006641,-0.006997,0.249902,0,0);}
.mc3_c01408{transform:matrix(0.237237,0.006643,-0.006997,0.249902,0,0);-ms-transform:matrix(0.237237,0.006643,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.237237,0.006643,-0.006997,0.249902,0,0);}
.m9_c01408{transform:matrix(0.237276,0.007356,-0.007746,0.249880,0,0);-ms-transform:matrix(0.237276,0.007356,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.237276,0.007356,-0.007746,0.249880,0,0);}
.md2_c01408{transform:matrix(0.237812,0.006659,-0.006997,0.249902,0,0);-ms-transform:matrix(0.237812,0.006659,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.237812,0.006659,-0.006997,0.249902,0,0);}
.m5c_c01408{transform:matrix(0.238062,0.006666,-0.006997,0.249902,0,0);-ms-transform:matrix(0.238062,0.006666,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.238062,0.006666,-0.006997,0.249902,0,0);}
.mc6_c01408{transform:matrix(0.238132,0.006668,-0.006997,0.249902,0,0);-ms-transform:matrix(0.238132,0.006668,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.238132,0.006668,-0.006997,0.249902,0,0);}
.ma8_c01408{transform:matrix(0.239166,0.006697,-0.006997,0.249902,0,0);-ms-transform:matrix(0.239166,0.006697,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.239166,0.006697,-0.006997,0.249902,0,0);}
.m8c_c01408{transform:matrix(0.239451,0.006705,-0.006997,0.249902,0,0);-ms-transform:matrix(0.239451,0.006705,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.239451,0.006705,-0.006997,0.249902,0,0);}
.me9_c01408{transform:matrix(0.239656,0.006710,-0.006997,0.249902,0,0);-ms-transform:matrix(0.239656,0.006710,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.239656,0.006710,-0.006997,0.249902,0,0);}
.m20_c01408{transform:matrix(0.239679,0.006951,-0.007247,0.249895,0,0);-ms-transform:matrix(0.239679,0.006951,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.239679,0.006951,-0.007247,0.249895,0,0);}
.m54_c01408{transform:matrix(0.240051,0.006721,-0.006997,0.249902,0,0);-ms-transform:matrix(0.240051,0.006721,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.240051,0.006721,-0.006997,0.249902,0,0);}
.m3c_c01408{transform:matrix(0.240701,0.006740,-0.006997,0.249902,0,0);-ms-transform:matrix(0.240701,0.006740,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.240701,0.006740,-0.006997,0.249902,0,0);}
.mc1_c01408{transform:matrix(0.240736,0.006741,-0.006997,0.249902,0,0);-ms-transform:matrix(0.240736,0.006741,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.240736,0.006741,-0.006997,0.249902,0,0);}
.m4a_c01408{transform:matrix(0.241165,0.006753,-0.006997,0.249902,0,0);-ms-transform:matrix(0.241165,0.006753,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.241165,0.006753,-0.006997,0.249902,0,0);}
.mdf_c01408{transform:matrix(0.241222,0.009659,-0.010002,0.249800,0,0);-ms-transform:matrix(0.241222,0.009659,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.241222,0.009659,-0.010002,0.249800,0,0);}
.m90_c01408{transform:matrix(0.241320,0.006757,-0.006997,0.249902,0,0);-ms-transform:matrix(0.241320,0.006757,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.241320,0.006757,-0.006997,0.249902,0,0);}
.me2_c01408{transform:matrix(0.242646,0.009716,-0.010002,0.249800,0,0);-ms-transform:matrix(0.242646,0.009716,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.242646,0.009716,-0.010002,0.249800,0,0);}
.m2b_c01408{transform:matrix(0.242728,0.007039,-0.007247,0.249895,0,0);-ms-transform:matrix(0.242728,0.007039,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.242728,0.007039,-0.007247,0.249895,0,0);}
.m5a_c01408{transform:matrix(0.243375,0.006814,-0.006997,0.249902,0,0);-ms-transform:matrix(0.243375,0.006814,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.243375,0.006814,-0.006997,0.249902,0,0);}
.m10b_c01408{transform:matrix(0.245087,0.007598,-0.007746,0.249880,0,0);-ms-transform:matrix(0.245087,0.007598,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.245087,0.007598,-0.007746,0.249880,0,0);}
.m60_c01408{transform:matrix(0.245104,0.006863,-0.006997,0.249902,0,0);-ms-transform:matrix(0.245104,0.006863,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.245104,0.006863,-0.006997,0.249902,0,0);}
.m51_c01408{transform:matrix(0.245739,0.006881,-0.006997,0.249902,0,0);-ms-transform:matrix(0.245739,0.006881,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.245739,0.006881,-0.006997,0.249902,0,0);}
.m35_c01408{transform:matrix(0.246498,0.006902,-0.006997,0.249902,0,0);-ms-transform:matrix(0.246498,0.006902,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.246498,0.006902,-0.006997,0.249902,0,0);}
.m5f_c01408{transform:matrix(0.247213,0.006922,-0.006997,0.249902,0,0);-ms-transform:matrix(0.247213,0.006922,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.247213,0.006922,-0.006997,0.249902,0,0);}
.mc9_c01408{transform:matrix(0.249137,0.006976,-0.006997,0.249902,0,0);-ms-transform:matrix(0.249137,0.006976,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.249137,0.006976,-0.006997,0.249902,0,0);}
.m4b_c01408{transform:matrix(0.249572,0.006988,-0.006997,0.249902,0,0);-ms-transform:matrix(0.249572,0.006988,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.249572,0.006988,-0.006997,0.249902,0,0);}
.maa_c01408{transform:matrix(0.249732,0.006992,-0.006997,0.249902,0,0);-ms-transform:matrix(0.249732,0.006992,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.249732,0.006992,-0.006997,0.249902,0,0);}
.ma6_c01408{transform:matrix(0.249742,0.006993,-0.006997,0.249902,0,0);-ms-transform:matrix(0.249742,0.006993,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.249742,0.006993,-0.006997,0.249902,0,0);}
.mac_c01408{transform:matrix(0.250072,0.007002,-0.006997,0.249902,0,0);-ms-transform:matrix(0.250072,0.007002,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.250072,0.007002,-0.006997,0.249902,0,0);}
.m37_c01408{transform:matrix(0.250692,0.007019,-0.006997,0.249902,0,0);-ms-transform:matrix(0.250692,0.007019,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.250692,0.007019,-0.006997,0.249902,0,0);}
.m117_c01408{transform:matrix(0.251097,0.007031,-0.006997,0.249902,0,0);-ms-transform:matrix(0.251097,0.007031,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.251097,0.007031,-0.006997,0.249902,0,0);}
.md8_c01408{transform:matrix(0.252421,0.007068,-0.006997,0.249902,0,0);-ms-transform:matrix(0.252421,0.007068,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.252421,0.007068,-0.006997,0.249902,0,0);}
.me8_c01408{transform:matrix(0.252651,0.007074,-0.006997,0.249902,0,0);-ms-transform:matrix(0.252651,0.007074,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.252651,0.007074,-0.006997,0.249902,0,0);}
.md6_c01408{transform:matrix(0.253096,0.007087,-0.006997,0.249902,0,0);-ms-transform:matrix(0.253096,0.007087,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.253096,0.007087,-0.006997,0.249902,0,0);}
.m114_c01408{transform:matrix(0.253106,0.007087,-0.006997,0.249902,0,0);-ms-transform:matrix(0.253106,0.007087,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.253106,0.007087,-0.006997,0.249902,0,0);}
.m2d_c01408{transform:matrix(0.253686,0.007103,-0.006997,0.249902,0,0);-ms-transform:matrix(0.253686,0.007103,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.253686,0.007103,-0.006997,0.249902,0,0);}
.m115_c01408{transform:matrix(0.253816,0.007107,-0.006997,0.249902,0,0);-ms-transform:matrix(0.253816,0.007107,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.253816,0.007107,-0.006997,0.249902,0,0);}
.m50_c01408{transform:matrix(0.254080,0.007114,-0.006997,0.249902,0,0);-ms-transform:matrix(0.254080,0.007114,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.254080,0.007114,-0.006997,0.249902,0,0);}
.m83_c01408{transform:matrix(0.255105,0.007143,-0.006997,0.249902,0,0);-ms-transform:matrix(0.255105,0.007143,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.255105,0.007143,-0.006997,0.249902,0,0);}
.m30_c01408{transform:matrix(0.255110,0.007143,-0.006997,0.249902,0,0);-ms-transform:matrix(0.255110,0.007143,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.255110,0.007143,-0.006997,0.249902,0,0);}
.mbf_c01408{transform:matrix(0.255400,0.007151,-0.006997,0.249902,0,0);-ms-transform:matrix(0.255400,0.007151,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.255400,0.007151,-0.006997,0.249902,0,0);}
.m4e_c01408{transform:matrix(0.255680,0.007159,-0.006997,0.249902,0,0);-ms-transform:matrix(0.255680,0.007159,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.255680,0.007159,-0.006997,0.249902,0,0);}
.mad_c01408{transform:matrix(0.255870,0.007164,-0.006997,0.249902,0,0);-ms-transform:matrix(0.255870,0.007164,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.255870,0.007164,-0.006997,0.249902,0,0);}
.m110_c01408{transform:matrix(0.255937,0.007934,-0.007746,0.249880,0,0);-ms-transform:matrix(0.255937,0.007934,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.255937,0.007934,-0.007746,0.249880,0,0);}
.m99_c01408{transform:matrix(0.256080,0.007170,-0.006997,0.249902,0,0);-ms-transform:matrix(0.256080,0.007170,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.256080,0.007170,-0.006997,0.249902,0,0);}
.m95_c01408{transform:matrix(0.256999,0.007196,-0.006997,0.249902,0,0);-ms-transform:matrix(0.256999,0.007196,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.256999,0.007196,-0.006997,0.249902,0,0);}
.m94_c01408{transform:matrix(0.257079,0.007198,-0.006997,0.249902,0,0);-ms-transform:matrix(0.257079,0.007198,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.257079,0.007198,-0.006997,0.249902,0,0);}
.m98_c01408{transform:matrix(0.257449,0.007209,-0.006997,0.249902,0,0);-ms-transform:matrix(0.257449,0.007209,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.257449,0.007209,-0.006997,0.249902,0,0);}
.m31_c01408{transform:matrix(0.258154,0.007228,-0.006997,0.249902,0,0);-ms-transform:matrix(0.258154,0.007228,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.258154,0.007228,-0.006997,0.249902,0,0);}
.m91_c01408{transform:matrix(0.259363,0.007262,-0.006997,0.249902,0,0);-ms-transform:matrix(0.259363,0.007262,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.259363,0.007262,-0.006997,0.249902,0,0);}
.mdd_c01408{transform:matrix(0.260721,0.010439,-0.010002,0.249800,0,0);-ms-transform:matrix(0.260721,0.010439,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.260721,0.010439,-0.010002,0.249800,0,0);}
.mf7_c01408{transform:matrix(0.261577,0.007324,-0.006997,0.249902,0,0);-ms-transform:matrix(0.261577,0.007324,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.261577,0.007324,-0.006997,0.249902,0,0);}
.mf2_c01408{transform:matrix(0.261587,0.007324,-0.006997,0.249902,0,0);-ms-transform:matrix(0.261587,0.007324,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.261587,0.007324,-0.006997,0.249902,0,0);}
.m97_c01408{transform:matrix(0.261742,0.007329,-0.006997,0.249902,0,0);-ms-transform:matrix(0.261742,0.007329,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.261742,0.007329,-0.006997,0.249902,0,0);}
.mf1_c01408{transform:matrix(0.262242,0.007343,-0.006997,0.249902,0,0);-ms-transform:matrix(0.262242,0.007343,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.262242,0.007343,-0.006997,0.249902,0,0);}
.m1b_c01408{transform:matrix(0.262334,0.008132,-0.007746,0.249880,0,0);-ms-transform:matrix(0.262334,0.008132,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.262334,0.008132,-0.007746,0.249880,0,0);}
.mde_c01408{transform:matrix(0.262365,0.010505,-0.010002,0.249800,0,0);-ms-transform:matrix(0.262365,0.010505,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.262365,0.010505,-0.010002,0.249800,0,0);}
.m32_c01408{transform:matrix(0.262527,0.007351,-0.006997,0.249902,0,0);-ms-transform:matrix(0.262527,0.007351,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.262527,0.007351,-0.006997,0.249902,0,0);}
.mf8_c01408{transform:matrix(0.262747,0.007357,-0.006997,0.249902,0,0);-ms-transform:matrix(0.262747,0.007357,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.262747,0.007357,-0.006997,0.249902,0,0);}
.m10e_c01408{transform:matrix(0.262839,0.008148,-0.007746,0.249880,0,0);-ms-transform:matrix(0.262839,0.008148,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.262839,0.008148,-0.007746,0.249880,0,0);}
.m8f_c01408{transform:matrix(0.263682,0.007383,-0.006997,0.249902,0,0);-ms-transform:matrix(0.263682,0.007383,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.263682,0.007383,-0.006997,0.249902,0,0);}
.m106_c01408{transform:matrix(0.263703,0.008175,-0.007746,0.249880,0,0);-ms-transform:matrix(0.263703,0.008175,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.263703,0.008175,-0.007746,0.249880,0,0);}
.mdc_c01408{transform:matrix(0.263919,0.010567,-0.010002,0.249800,0,0);-ms-transform:matrix(0.263919,0.010567,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.263919,0.010567,-0.010002,0.249800,0,0);}
.m2e_c01408{transform:matrix(0.263947,0.007391,-0.006997,0.249902,0,0);-ms-transform:matrix(0.263947,0.007391,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.263947,0.007391,-0.006997,0.249902,0,0);}
.me0_c01408{transform:matrix(0.264033,0.010572,-0.010002,0.249800,0,0);-ms-transform:matrix(0.264033,0.010572,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.264033,0.010572,-0.010002,0.249800,0,0);}
.mab_c01408{transform:matrix(0.265216,0.007426,-0.006997,0.249902,0,0);-ms-transform:matrix(0.265216,0.007426,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.265216,0.007426,-0.006997,0.249902,0,0);}
.mee_c01408{transform:matrix(0.265906,0.007445,-0.006997,0.249902,0,0);-ms-transform:matrix(0.265906,0.007445,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.265906,0.007445,-0.006997,0.249902,0,0);}
.mf6_c01408{transform:matrix(0.266206,0.007454,-0.006997,0.249902,0,0);-ms-transform:matrix(0.266206,0.007454,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.266206,0.007454,-0.006997,0.249902,0,0);}
.m96_c01408{transform:matrix(0.267625,0.007494,-0.006997,0.249902,0,0);-ms-transform:matrix(0.267625,0.007494,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.267625,0.007494,-0.006997,0.249902,0,0);}
.m15_c01408{transform:matrix(0.268276,0.008317,-0.007746,0.249880,0,0);-ms-transform:matrix(0.268276,0.008317,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.268276,0.008317,-0.007746,0.249880,0,0);}
.mf5_c01408{transform:matrix(0.269629,0.007550,-0.006997,0.249902,0,0);-ms-transform:matrix(0.269629,0.007550,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.269629,0.007550,-0.006997,0.249902,0,0);}
.m93_c01408{transform:matrix(0.270079,0.007562,-0.006997,0.249902,0,0);-ms-transform:matrix(0.270079,0.007562,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.270079,0.007562,-0.006997,0.249902,0,0);}
.m108_c01408{transform:matrix(0.271200,0.008407,-0.007746,0.249880,0,0);-ms-transform:matrix(0.271200,0.008407,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.271200,0.008407,-0.007746,0.249880,0,0);}
.m58_c01408{transform:matrix(0.271614,0.007605,-0.006997,0.249902,0,0);-ms-transform:matrix(0.271614,0.007605,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.271614,0.007605,-0.006997,0.249902,0,0);}
.m119_c01408{transform:matrix(0.271644,0.009789,-0.009003,0.249838,0,0);-ms-transform:matrix(0.271644,0.009789,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.271644,0.009789,-0.009003,0.249838,0,0);}
.m1e_c01408{transform:matrix(0.271719,0.008423,-0.007746,0.249880,0,0);-ms-transform:matrix(0.271719,0.008423,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.271719,0.008423,-0.007746,0.249880,0,0);}
.m107_c01408{transform:matrix(0.272129,0.008436,-0.007746,0.249880,0,0);-ms-transform:matrix(0.272129,0.008436,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.272129,0.008436,-0.007746,0.249880,0,0);}
.mb5_c01408{transform:matrix(0.276702,0.007748,-0.006997,0.249902,0,0);-ms-transform:matrix(0.276702,0.007748,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.276702,0.007748,-0.006997,0.249902,0,0);}
.m34_c01408{transform:matrix(0.278221,0.007790,-0.006997,0.249902,0,0);-ms-transform:matrix(0.278221,0.007790,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.278221,0.007790,-0.006997,0.249902,0,0);}
.mea_c01408{transform:matrix(0.278941,0.007810,-0.006997,0.249902,0,0);-ms-transform:matrix(0.278941,0.007810,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.278941,0.007810,-0.006997,0.249902,0,0);}
.m38_c01408{transform:matrix(0.278951,0.007811,-0.006997,0.249902,0,0);-ms-transform:matrix(0.278951,0.007811,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.278951,0.007811,-0.006997,0.249902,0,0);}
.mef_c01408{transform:matrix(0.281190,0.007873,-0.006997,0.249902,0,0);-ms-transform:matrix(0.281190,0.007873,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.281190,0.007873,-0.006997,0.249902,0,0);}
.meb_c01408{transform:matrix(0.281545,0.007883,-0.006997,0.249902,0,0);-ms-transform:matrix(0.281545,0.007883,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.281545,0.007883,-0.006997,0.249902,0,0);}
.mf4_c01408{transform:matrix(0.282314,0.007905,-0.006997,0.249902,0,0);-ms-transform:matrix(0.282314,0.007905,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.282314,0.007905,-0.006997,0.249902,0,0);}
.mda_c01408{transform:matrix(0.283729,0.007944,-0.006997,0.249902,0,0);-ms-transform:matrix(0.283729,0.007944,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.283729,0.007944,-0.006997,0.249902,0,0);}
.m92_c01408{transform:matrix(0.286603,0.008025,-0.006997,0.249902,0,0);-ms-transform:matrix(0.286603,0.008025,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.286603,0.008025,-0.006997,0.249902,0,0);}
.mdb_c01408{transform:matrix(0.302771,0.008478,-0.006997,0.249902,0,0);-ms-transform:matrix(0.302771,0.008478,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.302771,0.008478,-0.006997,0.249902,0,0);}
.m8_c01408{transform:matrix(0.303584,0.009411,-0.007746,0.249880,0,0);-ms-transform:matrix(0.303584,0.009411,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.303584,0.009411,-0.007746,0.249880,0,0);}
.me7_c01408{transform:matrix(0.314027,0.008793,-0.006997,0.249902,0,0);-ms-transform:matrix(0.314027,0.008793,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.314027,0.008793,-0.006997,0.249902,0,0);}
.mec_c01408{transform:matrix(0.320484,0.008974,-0.006997,0.249902,0,0);-ms-transform:matrix(0.320484,0.008974,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.320484,0.008974,-0.006997,0.249902,0,0);}
.mb4_c01408{transform:matrix(0.334164,0.009357,-0.006997,0.249902,0,0);-ms-transform:matrix(0.334164,0.009357,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.334164,0.009357,-0.006997,0.249902,0,0);}
.m14_c01408{transform:matrix(0.337058,0.010449,-0.007746,0.249880,0,0);-ms-transform:matrix(0.337058,0.010449,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.337058,0.010449,-0.007746,0.249880,0,0);}
.m11e_c01408{transform:matrix(0.337661,0.012168,-0.009003,0.249838,0,0);-ms-transform:matrix(0.337661,0.012168,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.337661,0.012168,-0.009003,0.249838,0,0);}
.m3_c01408{transform:matrix(0.362080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362080,0.000000,0.000000,0.250000,0,0);}
.m12_c01408{transform:matrix(0.380287,0.011789,-0.007746,0.249880,0,0);-ms-transform:matrix(0.380287,0.011789,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.380287,0.011789,-0.007746,0.249880,0,0);}
.m80_c01408{transform:matrix(0.461660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.461660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.461660,0.000000,0.000000,0.250000,0,0);}
.me4_c01408{transform:matrix(0.493080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493080,0.000000,0.000000,0.250000,0,0);}
.md_c01408{transform:matrix(0.542989,0.016833,-0.007746,0.249880,0,0);-ms-transform:matrix(0.542989,0.016833,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.542989,0.016833,-0.007746,0.249880,0,0);}
.me3_c01408{transform:matrix(0.600900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.600900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.600900,0.000000,0.000000,0.250000,0,0);}
.m112_c01408{transform:matrix(0.619857,0.017356,-0.006997,0.249902,0,0);-ms-transform:matrix(0.619857,0.017356,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.619857,0.017356,-0.006997,0.249902,0,0);}
.m7f_c01408{transform:matrix(0.948270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.948270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.948270,0.000000,0.000000,0.250000,0,0);}
.m113_c01408{transform:matrix(2.250928,0.063026,-0.006997,0.249902,0,0);-ms-transform:matrix(2.250928,0.063026,-0.006997,0.249902,0,0);-webkit-transform:matrix(2.250928,0.063026,-0.006997,0.249902,0,0);}
.m111_c01408{transform:matrix(2.469587,0.069148,-0.006997,0.249902,0,0);-ms-transform:matrix(2.469587,0.069148,-0.006997,0.249902,0,0);-webkit-transform:matrix(2.469587,0.069148,-0.006997,0.249902,0,0);}
.m1_c01408{transform:matrix(3.319885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.319885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.319885,0.000000,0.000000,0.250000,0,0);}
.m0_c01408{transform:matrix(4.300665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.300665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.300665,0.000000,0.000000,0.250000,0,0);}
.v0_c01408{vertical-align:0.000000px;}
.ls0_c01408{letter-spacing:0.000000px;}
.sc__c01408{text-shadow:none;}
.sc0_c01408{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__c01408{-webkit-text-stroke:0px transparent;}
.sc0_c01408{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01408{word-spacing:0.000000px;}
._0_c01408{width:26.953439px;}
.fc0_c01408{color:transparent;}
.fs0_c01408{font-size:18.000000px;}
.fsb_c01408{font-size:24.000000px;}
.fs10_c01408{font-size:24.009406px;}
.fsc_c01408{font-size:66.025867px;}
.fsd_c01408{font-size:71.985635px;}
.fs5_c01408{font-size:72.028218px;}
.fs1_c01408{font-size:78.000000px;}
.fs7_c01408{font-size:78.030570px;}
.fsf_c01408{font-size:78.037470px;}
.fs11_c01408{font-size:83.970469px;}
.fs4_c01408{font-size:84.035315px;}
.fs2_c01408{font-size:84.040352px;}
.fsa_c01408{font-size:89.965163px;}
.fs8_c01408{font-size:90.035273px;}
.fs3_c01408{font-size:90.043235px;}
.fs6_c01408{font-size:96.037625px;}
.fse_c01408{font-size:102.039976px;}
.fs9_c01408{font-size:114.044679px;}
.y0_c01408{bottom:0.000000px;}
.y120_c01408{bottom:106.354944px;}
.y11f_c01408{bottom:107.510868px;}
.y11e_c01408{bottom:110.690388px;}
.y11d_c01408{bottom:111.867858px;}
.y11c_c01408{bottom:115.028640px;}
.y11b_c01408{bottom:119.367000px;}
.y11a_c01408{bottom:142.235124px;}
.y119_c01408{bottom:143.146158px;}
.y118_c01408{bottom:145.494612px;}
.y117_c01408{bottom:146.428674px;}
.y116_c01408{bottom:148.770198px;}
.y115_c01408{bottom:152.008056px;}
.y114_c01408{bottom:179.310402px;}
.y113_c01408{bottom:180.141666px;}
.y112_c01408{bottom:183.633000px;}
.y111_c01408{bottom:185.609079px;}
.y110_c01408{bottom:186.602319px;}
.y10f_c01408{bottom:190.717522px;}
.y10e_c01408{bottom:191.722992px;}
.y10d_c01408{bottom:192.744178px;}
.y10c_c01408{bottom:194.795386px;}
.y10b_c01408{bottom:195.800624px;}
.y10a_c01408{bottom:197.139684px;}
.y109_c01408{bottom:199.695649px;}
.y108_c01408{bottom:201.018574px;}
.y107_c01408{bottom:203.648336px;}
.y106_c01408{bottom:204.943500px;}
.y105_c01408{bottom:225.089976px;}
.y104_c01408{bottom:225.664632px;}
.y103_c01408{bottom:227.071866px;}
.y102_c01408{bottom:228.505446px;}
.y101_c01408{bottom:230.205222px;}
.y100_c01408{bottom:231.333996px;}
.yff_c01408{bottom:233.351442px;}
.yfe_c01408{bottom:234.215784px;}
.yfd_c01408{bottom:235.088748px;}
.yfc_c01408{bottom:238.162692px;}
.yfb_c01408{bottom:240.479706px;}
.yfa_c01408{bottom:241.630836px;}
.yf9_c01408{bottom:258.816384px;}
.yf8_c01408{bottom:261.113106px;}
.yf7_c01408{bottom:263.114682px;}
.yf6_c01408{bottom:264.780438px;}
.yf5_c01408{bottom:268.062876px;}
.yf4_c01408{bottom:269.726826px;}
.yf3_c01408{bottom:270.681738px;}
.yf2_c01408{bottom:272.659806px;}
.yf1_c01408{bottom:274.322412px;}
.yf0_c01408{bottom:274.943550px;}
.yef_c01408{bottom:277.288086px;}
.yee_c01408{bottom:278.907498px;}
.yed_c01408{bottom:295.710714px;}
.yec_c01408{bottom:297.579630px;}
.yeb_c01408{bottom:300.045324px;}
.yea_c01408{bottom:303.410532px;}
.ye9_c01408{bottom:305.860686px;}
.ye8_c01408{bottom:307.713852px;}
.ye7_c01408{bottom:310.187736px;}
.ye6_c01408{bottom:310.445532px;}
.ye5_c01408{bottom:311.050500px;}
.ye4_c01408{bottom:360.183000px;}
.ye3_c01408{bottom:408.066960px;}
.ye2_c01408{bottom:408.991980px;}
.ye1_c01408{bottom:411.292260px;}
.ye0_c01408{bottom:412.589820px;}
.ydf_c01408{bottom:415.183200px;}
.yde_c01408{bottom:417.389400px;}
.ydd_c01408{bottom:418.254000px;}
.ydc_c01408{bottom:454.513236px;}
.ydb_c01408{bottom:455.942370px;}
.yda_c01408{bottom:472.156968px;}
.yd9_c01408{bottom:474.751344px;}
.yd8_c01408{bottom:475.367358px;}
.yd7_c01408{bottom:478.229202px;}
.yd6_c01408{bottom:479.184774px;}
.yd5_c01408{bottom:480.783186px;}
.yd4_c01408{bottom:482.051532px;}
.yd3_c01408{bottom:483.955830px;}
.yd2_c01408{bottom:484.903422px;}
.yd1_c01408{bottom:486.768840px;}
.yd0_c01408{bottom:488.695566px;}
.ycf_c01408{bottom:489.655884px;}
.yce_c01408{bottom:491.600994px;}
.ycd_c01408{bottom:508.409058px;}
.ycc_c01408{bottom:509.354310px;}
.ycb_c01408{bottom:510.583188px;}
.yca_c01408{bottom:512.761098px;}
.yc9_c01408{bottom:513.643770px;}
.yc8_c01408{bottom:515.226582px;}
.yc7_c01408{bottom:517.003560px;}
.yc6_c01408{bottom:517.681776px;}
.yc5_c01408{bottom:519.202008px;}
.yc4_c01408{bottom:520.708800px;}
.yc3_c01408{bottom:522.287790px;}
.yc2_c01408{bottom:524.400222px;}
.yc1_c01408{bottom:525.018210px;}
.yc0_c01408{bottom:527.523804px;}
.ybf_c01408{bottom:543.915468px;}
.ybe_c01408{bottom:545.943702px;}
.ybd_c01408{bottom:549.215190px;}
.ybc_c01408{bottom:550.224708px;}
.ybb_c01408{bottom:550.836786px;}
.yba_c01408{bottom:552.188970px;}
.yb9_c01408{bottom:552.841596px;}
.yb8_c01408{bottom:555.178866px;}
.yb7_c01408{bottom:557.115042px;}
.yb6_c01408{bottom:558.119730px;}
.yb5_c01408{bottom:560.100612px;}
.yb4_c01408{bottom:562.382856px;}
.yb3_c01408{bottom:563.720016px;}
.yb2_c01408{bottom:579.685302px;}
.yb1_c01408{bottom:580.875678px;}
.yb0_c01408{bottom:582.047280px;}
.yaf_c01408{bottom:582.688728px;}
.yae_c01408{bottom:585.608130px;}
.yad_c01408{bottom:587.978256px;}
.yac_c01408{bottom:588.897408px;}
.yab_c01408{bottom:591.843282px;}
.yaa_c01408{bottom:594.475152px;}
.ya9_c01408{bottom:595.395732px;}
.ya8_c01408{bottom:596.902338px;}
.ya7_c01408{bottom:598.019664px;}
.ya6_c01408{bottom:613.996968px;}
.ya5_c01408{bottom:614.807952px;}
.ya4_c01408{bottom:618.200730px;}
.ya3_c01408{bottom:619.229862px;}
.ya2_c01408{bottom:621.280566px;}
.ya1_c01408{bottom:622.292868px;}
.ya0_c01408{bottom:624.754092px;}
.y9f_c01408{bottom:626.019954px;}
.y9e_c01408{bottom:628.088202px;}
.y9d_c01408{bottom:629.438088px;}
.y9c_c01408{bottom:630.760194px;}
.y9b_c01408{bottom:632.809512px;}
.y9a_c01408{bottom:634.220376px;}
.y99_c01408{bottom:651.706620px;}
.y98_c01408{bottom:652.276068px;}
.y97_c01408{bottom:653.731890px;}
.y96_c01408{bottom:655.136562px;}
.y95_c01408{bottom:656.814360px;}
.y94_c01408{bottom:658.268910px;}
.y93_c01408{bottom:659.168052px;}
.y92_c01408{bottom:661.689558px;}
.y91_c01408{bottom:663.123222px;}
.y90_c01408{bottom:663.993624px;}
.y8f_c01408{bottom:665.693778px;}
.y8e_c01408{bottom:666.825114px;}
.y8d_c01408{bottom:667.377204px;}
.y8c_c01408{bottom:668.514882px;}
.y8b_c01408{bottom:687.604890px;}
.y8a_c01408{bottom:689.446884px;}
.y89_c01408{bottom:690.964218px;}
.y88_c01408{bottom:692.499948px;}
.y87_c01408{bottom:693.417732px;}
.y86_c01408{bottom:694.340094px;}
.y85_c01408{bottom:697.417728px;}
.y84_c01408{bottom:699.845034px;}
.y83_c01408{bottom:701.411676px;}
.y82_c01408{bottom:701.656662px;}
.y81_c01408{bottom:702.282000px;}
.y80_c01408{bottom:752.085000px;}
.y7f_c01408{bottom:801.894097px;}
.y7e_c01408{bottom:804.736132px;}
.y7d_c01408{bottom:805.823565px;}
.y7c_c01408{bottom:808.140705px;}
.y7b_c01408{bottom:810.041625px;}
.y7a_c01408{bottom:810.826500px;}
.y79_c01408{bottom:831.525252px;}
.y78_c01408{bottom:833.747784px;}
.y77_c01408{bottom:835.973802px;}
.y76_c01408{bottom:838.190412px;}
.y75_c01408{bottom:839.803482px;}
.y74_c01408{bottom:840.751746px;}
.y73_c01408{bottom:843.299262px;}
.y72_c01408{bottom:843.915276px;}
.y71_c01408{bottom:846.807570px;}
.y70_c01408{bottom:847.737912px;}
.y6f_c01408{bottom:865.398858px;}
.y6e_c01408{bottom:866.744826px;}
.y6d_c01408{bottom:868.689906px;}
.y6c_c01408{bottom:869.701986px;}
.y6b_c01408{bottom:871.652262px;}
.y6a_c01408{bottom:872.651124px;}
.y69_c01408{bottom:873.574758px;}
.y68_c01408{bottom:874.608960px;}
.y67_c01408{bottom:875.908878px;}
.y66_c01408{bottom:877.274658px;}
.y65_c01408{bottom:878.923878px;}
.y64_c01408{bottom:880.819926px;}
.y63_c01408{bottom:881.530854px;}
.y62_c01408{bottom:884.474490px;}
.y61_c01408{bottom:901.515024px;}
.y60_c01408{bottom:903.647994px;}
.y5f_c01408{bottom:904.881072px;}
.y5e_c01408{bottom:906.385344px;}
.y5d_c01408{bottom:908.238090px;}
.y5c_c01408{bottom:909.198882px;}
.y5b_c01408{bottom:911.013198px;}
.y5a_c01408{bottom:911.951520px;}
.y59_c01408{bottom:913.795488px;}
.y58_c01408{bottom:914.720118px;}
.y57_c01408{bottom:916.566354px;}
.y56_c01408{bottom:917.495856px;}
.y55_c01408{bottom:919.317942px;}
.y54_c01408{bottom:935.095512px;}
.y53_c01408{bottom:935.988516px;}
.y52_c01408{bottom:936.956448px;}
.y51_c01408{bottom:939.108150px;}
.y50_c01408{bottom:940.631700px;}
.y4f_c01408{bottom:941.545032px;}
.y4e_c01408{bottom:943.416468px;}
.y4d_c01408{bottom:944.904360px;}
.y4c_c01408{bottom:945.842472px;}
.y4b_c01408{bottom:946.760676px;}
.y4a_c01408{bottom:948.625350px;}
.y49_c01408{bottom:949.563924px;}
.y48_c01408{bottom:950.441598px;}
.y47_c01408{bottom:952.279014px;}
.y46_c01408{bottom:953.541660px;}
.y45_c01408{bottom:954.161328px;}
.y44_c01408{bottom:974.146200px;}
.y43_c01408{bottom:975.345912px;}
.y42_c01408{bottom:976.233048px;}
.y41_c01408{bottom:977.728020px;}
.y40_c01408{bottom:978.858198px;}
.y3f_c01408{bottom:980.661702px;}
.y3e_c01408{bottom:981.551484px;}
.y3d_c01408{bottom:984.183354px;}
.y3c_c01408{bottom:985.120272px;}
.y3b_c01408{bottom:986.899458px;}
.y3a_c01408{bottom:988.648098px;}
.y39_c01408{bottom:989.544432px;}
.y38_c01408{bottom:1009.156830px;}
.y37_c01408{bottom:1010.412798px;}
.y36_c01408{bottom:1011.369852px;}
.y35_c01408{bottom:1012.576008px;}
.y34_c01408{bottom:1015.342926px;}
.y33_c01408{bottom:1016.240298px;}
.y32_c01408{bottom:1018.380702px;}
.y31_c01408{bottom:1019.925882px;}
.y30_c01408{bottom:1020.879744px;}
.y2f_c01408{bottom:1021.784676px;}
.y2e_c01408{bottom:1023.927348px;}
.y2d_c01408{bottom:1025.469000px;}
.y2c_c01408{bottom:1041.140611px;}
.y2b_c01408{bottom:1045.268022px;}
.y2a_c01408{bottom:1046.274134px;}
.y29_c01408{bottom:1048.129539px;}
.y28_c01408{bottom:1049.424143px;}
.y27_c01408{bottom:1050.392627px;}
.y26_c01408{bottom:1051.637770px;}
.y25_c01408{bottom:1052.295447px;}
.y24_c01408{bottom:1053.862360px;}
.y23_c01408{bottom:1054.833541px;}
.y22_c01408{bottom:1055.781276px;}
.y21_c01408{bottom:1057.371027px;}
.y20_c01408{bottom:1058.974698px;}
.y1f_c01408{bottom:1060.840500px;}
.y1_c01408{bottom:1074.060000px;}
.y1e_c01408{bottom:1078.978059px;}
.y1d_c01408{bottom:1079.462920px;}
.y1c_c01408{bottom:1081.991067px;}
.y1b_c01408{bottom:1083.632163px;}
.y1a_c01408{bottom:1084.442074px;}
.y19_c01408{bottom:1086.352668px;}
.y18_c01408{bottom:1087.453164px;}
.y17_c01408{bottom:1088.283453px;}
.y2_c01408{bottom:1088.640000px;}
.y16_c01408{bottom:1090.723650px;}
.y15_c01408{bottom:1091.563320px;}
.y14_c01408{bottom:1093.230175px;}
.y13_c01408{bottom:1094.841699px;}
.y12_c01408{bottom:1113.154710px;}
.y11_c01408{bottom:1113.516340px;}
.y10_c01408{bottom:1114.840242px;}
.yf_c01408{bottom:1116.255888px;}
.ye_c01408{bottom:1117.583230px;}
.yd_c01408{bottom:1118.965443px;}
.yc_c01408{bottom:1120.361187px;}
.yb_c01408{bottom:1122.007194px;}
.ya_c01408{bottom:1122.733198px;}
.y9_c01408{bottom:1126.100217px;}
.y8_c01408{bottom:1127.114568px;}
.y7_c01408{bottom:1129.825099px;}
.y6_c01408{bottom:1130.537851px;}
.y5_c01408{bottom:1132.257282px;}
.y4_c01408{bottom:1133.199000px;}
.y3_c01408{bottom:1182.742500px;}
.h2_c01408{height:18.000000px;}
.hd_c01408{height:24.000000px;}
.h12_c01408{height:24.009406px;}
.he_c01408{height:66.025867px;}
.hf_c01408{height:71.985635px;}
.h7_c01408{height:72.028218px;}
.h3_c01408{height:78.000000px;}
.h9_c01408{height:78.030570px;}
.h11_c01408{height:78.037470px;}
.h13_c01408{height:83.970469px;}
.h6_c01408{height:84.035315px;}
.h4_c01408{height:84.040352px;}
.hc_c01408{height:89.965163px;}
.ha_c01408{height:90.035273px;}
.h5_c01408{height:90.043235px;}
.h8_c01408{height:96.037625px;}
.h10_c01408{height:102.039976px;}
.hb_c01408{height:114.044679px;}
.h1_c01408{height:1250.250000px;}
.h0_c01408{height:1250.370000px;}
.w1_c01408{width:907.500000px;}
.w0_c01408{width:907.740000px;}
.x0_c01408{left:0.000000px;}
.x1_c01408{left:3.510000px;}
.x2_c01408{left:13.770000px;}
.xcd_c01408{left:124.342500px;}
.xce_c01408{left:126.207156px;}
.xc4_c01408{left:128.101422px;}
.xbe_c01408{left:129.729126px;}
.xa0_c01408{left:135.667380px;}
.x95_c01408{left:137.227302px;}
.x83_c01408{left:138.705924px;}
.x8c_c01408{left:140.523522px;}
.x7b_c01408{left:141.703266px;}
.x62_c01408{left:146.225958px;}
.x56_c01408{left:147.841542px;}
.x3e_c01408{left:149.208816px;}
.x34_c01408{left:150.857058px;}
.x2a_c01408{left:151.932000px;}
.x14_c01408{left:154.614647px;}
.x5_c01408{left:157.134000px;}
.x3f_c01408{left:171.339816px;}
.xc5_c01408{left:172.376400px;}
.x63_c01408{left:178.326576px;}
.x8d_c01408{left:181.929198px;}
.x35_c01408{left:184.048482px;}
.x7c_c01408{left:185.444202px;}
.x6_c01408{left:187.512000px;}
.xa9_c01408{left:202.175010px;}
.x2b_c01408{left:206.991000px;}
.x6b_c01408{left:210.919500px;}
.x4b_c01408{left:213.732534px;}
.x40_c01408{left:216.434316px;}
.x15_c01408{left:219.095144px;}
.xb5_c01408{left:221.358000px;}
.xa1_c01408{left:225.152880px;}
.x6c_c01408{left:233.322075px;}
.xaa_c01408{left:235.292586px;}
.x8e_c01408{left:237.720252px;}
.xba_c01408{left:241.519500px;}
.x7_c01408{left:242.977500px;}
.xd1_c01408{left:245.192490px;}
.x4c_c01408{left:246.929034px;}
.x36_c01408{left:248.805288px;}
.x7d_c01408{left:250.177314px;}
.x72_c01408{left:253.392000px;}
.xc8_c01408{left:255.505500px;}
.x96_c01408{left:257.913582px;}
.xbf_c01408{left:261.862734px;}
.xbb_c01408{left:263.125500px;}
.x8_c01408{left:265.969500px;}
.x57_c01408{left:269.622696px;}
.x8f_c01408{left:271.831218px;}
.x1e_c01408{left:273.439500px;}
.x73_c01408{left:275.725500px;}
.x64_c01408{left:278.084304px;}
.x41_c01408{left:282.056316px;}
.x2c_c01408{left:283.515000px;}
.x16_c01408{left:285.748013px;}
.x6d_c01408{left:287.579763px;}
.x84_c01408{left:292.988988px;}
.xb6_c01408{left:298.051230px;}
.x65_c01408{left:299.334216px;}
.xab_c01408{left:301.745238px;}
.x42_c01408{left:313.401816px;}
.x37_c01408{left:314.706636px;}
.x2d_c01408{left:315.834000px;}
.x17_c01408{left:319.324244px;}
.xa2_c01408{left:322.667880px;}
.x97_c01408{left:323.941386px;}
.x1f_c01408{left:328.258500px;}
.x58_c01408{left:332.835168px;}
.x85_c01408{left:336.534834px;}
.xc0_c01408{left:337.956450px;}
.x74_c01408{left:340.426500px;}
.x4d_c01408{left:345.888534px;}
.x43_c01408{left:346.922316px;}
.x2e_c01408{left:349.900500px;}
.x9_c01408{left:353.406000px;}
.x98_c01408{left:357.410496px;}
.x20_c01408{left:360.939000px;}
.xb7_c01408{left:362.820896px;}
.xac_c01408{left:366.061932px;}
.xcf_c01408{left:367.461918px;}
.x90_c01408{left:369.311448px;}
.xa3_c01408{left:379.060380px;}
.xc9_c01408{left:380.631000px;}
.x6e_c01408{left:384.755989px;}
.xa_c01408{left:386.127000px;}
.x59_c01408{left:387.822102px;}
.x3_c01408{left:390.420000px;}
.x21_c01408{left:394.428000px;}
.xad_c01408{left:398.725008px;}
.x86_c01408{left:403.270248px;}
.x2f_c01408{left:405.085500px;}
.x4e_c01408{left:411.744534px;}
.x4_c01408{left:413.910000px;}
.x18_c01408{left:416.929379px;}
.x66_c01408{left:419.840814px;}
.x99_c01408{left:421.948884px;}
.xca_c01408{left:423.826500px;}
.x75_c01408{left:427.116000px;}
.x5a_c01408{left:433.329540px;}
.xc1_c01408{left:435.735990px;}
.xb9_c01408{left:442.530000px;}
.x87_c01408{left:444.083304px;}
.x4f_c01408{left:445.256034px;}
.x38_c01408{left:446.881332px;}
.x22_c01408{left:448.459500px;}
.x19_c01408{left:450.154563px;}
.x70_c01408{left:451.440000px;}
.xb8_c01408{left:452.676949px;}
.xd0_c01408{left:454.444854px;}
.xcb_c01408{left:456.253500px;}
.xae_c01408{left:464.376660px;}
.x6f_c01408{left:465.875788px;}
.x23_c01408{left:471.138000px;}
.x67_c01408{left:475.466760px;}
.x5b_c01408{left:476.645604px;}
.x71_c01408{left:478.710000px;}
.x39_c01408{left:479.838756px;}
.x30_c01408{left:481.528500px;}
.xd2_c01408{left:485.887554px;}
.xa4_c01408{left:487.168380px;}
.xc2_c01408{left:491.195382px;}
.xb_c01408{left:494.740500px;}
.x9a_c01408{left:499.847016px;}
.x7e_c01408{left:501.145842px;}
.xaf_c01408{left:508.119942px;}
.x50_c01408{left:510.053034px;}
.x5c_c01408{left:511.115172px;}
.x91_c01408{left:512.494980px;}
.x24_c01408{left:514.074000px;}
.xc_c01408{left:518.160000px;}
.x9b_c01408{left:521.600298px;}
.x88_c01408{left:523.459626px;}
.x44_c01408{left:532.953816px;}
.x7f_c01408{left:535.724274px;}
.x76_c01408{left:537.031500px;}
.x5d_c01408{left:541.903950px;}
.x51_c01408{left:544.367034px;}
.x25_c01408{left:547.470000px;}
.x68_c01408{left:551.897118px;}
.x89_c01408{left:556.128396px;}
.xb0_c01408{left:563.222388px;}
.x9c_c01408{left:566.675778px;}
.x77_c01408{left:569.973000px;}
.xd_c01408{left:571.257000px;}
.x5e_c01408{left:575.218602px;}
.x9d_c01408{left:587.088144px;}
.x3a_c01408{left:588.473280px;}
.x26_c01408{left:592.111500px;}
.xb1_c01408{left:596.170464px;}
.x45_c01408{left:599.790816px;}
.x1a_c01408{left:603.054021px;}
.x52_c01408{left:610.536534px;}
.x31_c01408{left:612.396000px;}
.xe_c01408{left:616.281000px;}
.x9e_c01408{left:620.729754px;}
.x8a_c01408{left:622.290852px;}
.x69_c01408{left:628.663476px;}
.xa5_c01408{left:631.382880px;}
.x46_c01408{left:632.409816px;}
.xbc_c01408{left:634.561500px;}
.x5f_c01408{left:640.206948px;}
.x3b_c01408{left:643.848834px;}
.x27_c01408{left:656.091000px;}
.x78_c01408{left:657.598500px;}
.xf_c01408{left:660.868500px;}
.xa6_c01408{left:662.906880px;}
.x53_c01408{left:664.260534px;}
.x1b_c01408{left:668.682204px;}
.x60_c01408{left:673.940058px;}
.x3c_c01408{left:676.711758px;}
.x47_c01408{left:686.822316px;}
.xc6_c01408{left:688.060254px;}
.x32_c01408{left:689.653500px;}
.x28_c01408{left:690.784500px;}
.xb2_c01408{left:694.840692px;}
.x10_c01408{left:703.686000px;}
.x6a_c01408{left:705.305334px;}
.x54_c01408{left:708.299034px;}
.x80_c01408{left:710.199018px;}
.x79_c01408{left:711.789000px;}
.xb3_c01408{left:716.090604px;}
.x3d_c01408{left:721.167018px;}
.xbd_c01408{left:722.622000px;}
.x9f_c01408{left:729.794664px;}
.x92_c01408{left:732.143112px;}
.x33_c01408{left:734.509500px;}
.x61_c01408{left:738.796446px;}
.xa7_c01408{left:740.689380px;}
.xc7_c01408{left:742.178778px;}
.x11_c01408{left:749.352000px;}
.xcc_c01408{left:752.586000px;}
.x48_c01408{left:763.668816px;}
.x8b_c01408{left:764.936382px;}
.x81_c01408{left:766.213668px;}
.x1c_c01408{left:769.802490px;}
.x93_c01408{left:775.540830px;}
.x7a_c01408{left:777.574500px;}
.x55_c01408{left:784.476534px;}
.x82_c01408{left:788.105886px;}
.x1d_c01408{left:789.172571px;}
.x12_c01408{left:792.058500px;}
.x49_c01408{left:798.237816px;}
.xc3_c01408{left:799.392120px;}
.x13_c01408{left:803.724000px;}
.xb4_c01408{left:805.530084px;}
.xa8_c01408{left:818.336880px;}
.x94_c01408{left:819.609048px;}
.x4a_c01408{left:830.130816px;}
.x29_c01408{left:833.109000px;}
@media print{
.v0_c01408{vertical-align:0.000000pt;}
.ls0_c01408{letter-spacing:0.000000pt;}
.ws0_c01408{word-spacing:0.000000pt;}
._0_c01408{width:23.958612pt;}
.fs0_c01408{font-size:16.000000pt;}
.fsb_c01408{font-size:21.333333pt;}
.fs10_c01408{font-size:21.341694pt;}
.fsc_c01408{font-size:58.689659pt;}
.fsd_c01408{font-size:63.987231pt;}
.fs5_c01408{font-size:64.025083pt;}
.fs1_c01408{font-size:69.333333pt;}
.fs7_c01408{font-size:69.360507pt;}
.fsf_c01408{font-size:69.366640pt;}
.fs11_c01408{font-size:74.640417pt;}
.fs4_c01408{font-size:74.698057pt;}
.fs2_c01408{font-size:74.702535pt;}
.fsa_c01408{font-size:79.969034pt;}
.fs8_c01408{font-size:80.031354pt;}
.fs3_c01408{font-size:80.038431pt;}
.fs6_c01408{font-size:85.366777pt;}
.fse_c01408{font-size:90.702201pt;}
.fs9_c01408{font-size:101.373048pt;}
.y0_c01408{bottom:0.000000pt;}
.y120_c01408{bottom:94.537728pt;}
.y11f_c01408{bottom:95.565216pt;}
.y11e_c01408{bottom:98.391456pt;}
.y11d_c01408{bottom:99.438096pt;}
.y11c_c01408{bottom:102.247680pt;}
.y11b_c01408{bottom:106.104000pt;}
.y11a_c01408{bottom:126.431221pt;}
.y119_c01408{bottom:127.241029pt;}
.y118_c01408{bottom:129.328544pt;}
.y117_c01408{bottom:130.158821pt;}
.y116_c01408{bottom:132.240176pt;}
.y115_c01408{bottom:135.118272pt;}
.y114_c01408{bottom:159.387024pt;}
.y113_c01408{bottom:160.125925pt;}
.y112_c01408{bottom:163.229333pt;}
.y111_c01408{bottom:164.985848pt;}
.y110_c01408{bottom:165.868728pt;}
.y10f_c01408{bottom:169.526687pt;}
.y10e_c01408{bottom:170.420437pt;}
.y10d_c01408{bottom:171.328159pt;}
.y10c_c01408{bottom:173.151455pt;}
.y10b_c01408{bottom:174.044999pt;}
.y10a_c01408{bottom:175.235275pt;}
.y109_c01408{bottom:177.507244pt;}
.y108_c01408{bottom:178.683177pt;}
.y107_c01408{bottom:181.020743pt;}
.y106_c01408{bottom:182.172000pt;}
.y105_c01408{bottom:200.079979pt;}
.y104_c01408{bottom:200.590784pt;}
.y103_c01408{bottom:201.841659pt;}
.y102_c01408{bottom:203.115952pt;}
.y101_c01408{bottom:204.626864pt;}
.y100_c01408{bottom:205.630219pt;}
.yff_c01408{bottom:207.423504pt;}
.yfe_c01408{bottom:208.191808pt;}
.yfd_c01408{bottom:208.967776pt;}
.yfc_c01408{bottom:211.700171pt;}
.yfb_c01408{bottom:213.759739pt;}
.yfa_c01408{bottom:214.782965pt;}
.yf9_c01408{bottom:230.059008pt;}
.yf8_c01408{bottom:232.100539pt;}
.yf7_c01408{bottom:233.879717pt;}
.yf6_c01408{bottom:235.360389pt;}
.yf5_c01408{bottom:238.278112pt;}
.yf4_c01408{bottom:239.757179pt;}
.yf3_c01408{bottom:240.605989pt;}
.yf2_c01408{bottom:242.364272pt;}
.yf1_c01408{bottom:243.842144pt;}
.yf0_c01408{bottom:244.394267pt;}
.yef_c01408{bottom:246.478299pt;}
.yee_c01408{bottom:247.917776pt;}
.yed_c01408{bottom:262.853968pt;}
.yec_c01408{bottom:264.515227pt;}
.yeb_c01408{bottom:266.706955pt;}
.yea_c01408{bottom:269.698251pt;}
.ye9_c01408{bottom:271.876165pt;}
.ye8_c01408{bottom:273.523424pt;}
.ye7_c01408{bottom:275.722432pt;}
.ye6_c01408{bottom:275.951584pt;}
.ye5_c01408{bottom:276.489333pt;}
.ye4_c01408{bottom:320.162667pt;}
.ye3_c01408{bottom:362.726187pt;}
.ye2_c01408{bottom:363.548427pt;}
.ye1_c01408{bottom:365.593120pt;}
.ye0_c01408{bottom:366.746507pt;}
.ydf_c01408{bottom:369.051733pt;}
.yde_c01408{bottom:371.012800pt;}
.ydd_c01408{bottom:371.781333pt;}
.ydc_c01408{bottom:404.011765pt;}
.ydb_c01408{bottom:405.282107pt;}
.yda_c01408{bottom:419.695083pt;}
.yd9_c01408{bottom:422.001195pt;}
.yd8_c01408{bottom:422.548763pt;}
.yd7_c01408{bottom:425.092624pt;}
.yd6_c01408{bottom:425.942021pt;}
.yd5_c01408{bottom:427.362832pt;}
.yd4_c01408{bottom:428.490251pt;}
.yd3_c01408{bottom:430.182960pt;}
.yd2_c01408{bottom:431.025264pt;}
.yd1_c01408{bottom:432.683413pt;}
.yd0_c01408{bottom:434.396059pt;}
.ycf_c01408{bottom:435.249675pt;}
.yce_c01408{bottom:436.978661pt;}
.ycd_c01408{bottom:451.919163pt;}
.ycc_c01408{bottom:452.759387pt;}
.ycb_c01408{bottom:453.851723pt;}
.yca_c01408{bottom:455.787643pt;}
.yc9_c01408{bottom:456.572240pt;}
.yc8_c01408{bottom:457.979184pt;}
.yc7_c01408{bottom:459.558720pt;}
.yc6_c01408{bottom:460.161579pt;}
.yc5_c01408{bottom:461.512896pt;}
.yc4_c01408{bottom:462.852267pt;}
.yc3_c01408{bottom:464.255813pt;}
.yc2_c01408{bottom:466.133531pt;}
.yc1_c01408{bottom:466.682853pt;}
.yc0_c01408{bottom:468.910048pt;}
.ybf_c01408{bottom:483.480416pt;}
.ybe_c01408{bottom:485.283291pt;}
.ybd_c01408{bottom:488.191280pt;}
.ybc_c01408{bottom:489.088629pt;}
.ybb_c01408{bottom:489.632699pt;}
.yba_c01408{bottom:490.834640pt;}
.yb9_c01408{bottom:491.414752pt;}
.yb8_c01408{bottom:493.492325pt;}
.yb7_c01408{bottom:495.213371pt;}
.yb6_c01408{bottom:496.106427pt;}
.yb5_c01408{bottom:497.867211pt;}
.yb4_c01408{bottom:499.895872pt;}
.yb3_c01408{bottom:501.084459pt;}
.yb2_c01408{bottom:515.275824pt;}
.yb1_c01408{bottom:516.333936pt;}
.yb0_c01408{bottom:517.375360pt;}
.yaf_c01408{bottom:517.945536pt;}
.yae_c01408{bottom:520.540560pt;}
.yad_c01408{bottom:522.647339pt;}
.yac_c01408{bottom:523.464363pt;}
.yab_c01408{bottom:526.082917pt;}
.yaa_c01408{bottom:528.422357pt;}
.ya9_c01408{bottom:529.240651pt;}
.ya8_c01408{bottom:530.579856pt;}
.ya7_c01408{bottom:531.573035pt;}
.ya6_c01408{bottom:545.775083pt;}
.ya5_c01408{bottom:546.495957pt;}
.ya4_c01408{bottom:549.511760pt;}
.ya3_c01408{bottom:550.426544pt;}
.ya2_c01408{bottom:552.249392pt;}
.ya1_c01408{bottom:553.149216pt;}
.ya0_c01408{bottom:555.336971pt;}
.y9f_c01408{bottom:556.462181pt;}
.y9e_c01408{bottom:558.300624pt;}
.y9d_c01408{bottom:559.500523pt;}
.y9c_c01408{bottom:560.675728pt;}
.y9b_c01408{bottom:562.497344pt;}
.y9a_c01408{bottom:563.751445pt;}
.y99_c01408{bottom:579.294773pt;}
.y98_c01408{bottom:579.800949pt;}
.y97_c01408{bottom:581.095013pt;}
.y96_c01408{bottom:582.343611pt;}
.y95_c01408{bottom:583.834987pt;}
.y94_c01408{bottom:585.127920pt;}
.y93_c01408{bottom:585.927157pt;}
.y92_c01408{bottom:588.168496pt;}
.y91_c01408{bottom:589.442864pt;}
.y90_c01408{bottom:590.216555pt;}
.y8f_c01408{bottom:591.727803pt;}
.y8e_c01408{bottom:592.733435pt;}
.y8d_c01408{bottom:593.224181pt;}
.y8c_c01408{bottom:594.235451pt;}
.y8b_c01408{bottom:611.204347pt;}
.y8a_c01408{bottom:612.841675pt;}
.y89_c01408{bottom:614.190416pt;}
.y88_c01408{bottom:615.555509pt;}
.y87_c01408{bottom:616.371317pt;}
.y86_c01408{bottom:617.191195pt;}
.y85_c01408{bottom:619.926869pt;}
.y84_c01408{bottom:622.084475pt;}
.y83_c01408{bottom:623.477045pt;}
.y82_c01408{bottom:623.694811pt;}
.y81_c01408{bottom:624.250667pt;}
.y80_c01408{bottom:668.520000pt;}
.y7f_c01408{bottom:712.794753pt;}
.y7e_c01408{bottom:715.321007pt;}
.y7d_c01408{bottom:716.287613pt;}
.y7c_c01408{bottom:718.347293pt;}
.y7b_c01408{bottom:720.037000pt;}
.y7a_c01408{bottom:720.734667pt;}
.y79_c01408{bottom:739.133557pt;}
.y78_c01408{bottom:741.109141pt;}
.y77_c01408{bottom:743.087824pt;}
.y76_c01408{bottom:745.058144pt;}
.y75_c01408{bottom:746.491984pt;}
.y74_c01408{bottom:747.334885pt;}
.y73_c01408{bottom:749.599344pt;}
.y72_c01408{bottom:750.146912pt;}
.y71_c01408{bottom:752.717840pt;}
.y70_c01408{bottom:753.544811pt;}
.y6f_c01408{bottom:769.243429pt;}
.y6e_c01408{bottom:770.439845pt;}
.y6d_c01408{bottom:772.168805pt;}
.y6c_c01408{bottom:773.068432pt;}
.y6b_c01408{bottom:774.802011pt;}
.y6a_c01408{bottom:775.689888pt;}
.y69_c01408{bottom:776.510896pt;}
.y68_c01408{bottom:777.430187pt;}
.y67_c01408{bottom:778.585669pt;}
.y66_c01408{bottom:779.799696pt;}
.y65_c01408{bottom:781.265669pt;}
.y64_c01408{bottom:782.951045pt;}
.y63_c01408{bottom:783.582981pt;}
.y62_c01408{bottom:786.199547pt;}
.y61_c01408{bottom:801.346688pt;}
.y60_c01408{bottom:803.242661pt;}
.y5f_c01408{bottom:804.338731pt;}
.y5e_c01408{bottom:805.675861pt;}
.y5d_c01408{bottom:807.322747pt;}
.y5c_c01408{bottom:808.176784pt;}
.y5b_c01408{bottom:809.789509pt;}
.y5a_c01408{bottom:810.623573pt;}
.y59_c01408{bottom:812.262656pt;}
.y58_c01408{bottom:813.084549pt;}
.y57_c01408{bottom:814.725648pt;}
.y56_c01408{bottom:815.551872pt;}
.y55_c01408{bottom:817.171504pt;}
.y54_c01408{bottom:831.196011pt;}
.y53_c01408{bottom:831.989792pt;}
.y52_c01408{bottom:832.850176pt;}
.y51_c01408{bottom:834.762800pt;}
.y50_c01408{bottom:836.117067pt;}
.y4f_c01408{bottom:836.928917pt;}
.y4e_c01408{bottom:838.592416pt;}
.y4d_c01408{bottom:839.914987pt;}
.y4c_c01408{bottom:840.748864pt;}
.y4b_c01408{bottom:841.565045pt;}
.y4a_c01408{bottom:843.222533pt;}
.y49_c01408{bottom:844.056821pt;}
.y48_c01408{bottom:844.836976pt;}
.y47_c01408{bottom:846.470235pt;}
.y46_c01408{bottom:847.592587pt;}
.y45_c01408{bottom:848.143403pt;}
.y44_c01408{bottom:865.907733pt;}
.y43_c01408{bottom:866.974144pt;}
.y42_c01408{bottom:867.762709pt;}
.y41_c01408{bottom:869.091573pt;}
.y40_c01408{bottom:870.096176pt;}
.y3f_c01408{bottom:871.699291pt;}
.y3e_c01408{bottom:872.490208pt;}
.y3d_c01408{bottom:874.829648pt;}
.y3c_c01408{bottom:875.662464pt;}
.y3b_c01408{bottom:877.243963pt;}
.y3a_c01408{bottom:878.798309pt;}
.y39_c01408{bottom:879.595051pt;}
.y38_c01408{bottom:897.028293pt;}
.y37_c01408{bottom:898.144709pt;}
.y36_c01408{bottom:898.995424pt;}
.y35_c01408{bottom:900.067563pt;}
.y34_c01408{bottom:902.527045pt;}
.y33_c01408{bottom:903.324709pt;}
.y32_c01408{bottom:905.227291pt;}
.y31_c01408{bottom:906.600784pt;}
.y30_c01408{bottom:907.448661pt;}
.y2f_c01408{bottom:908.253045pt;}
.y2e_c01408{bottom:910.157643pt;}
.y2d_c01408{bottom:911.528000pt;}
.y2c_c01408{bottom:925.458321pt;}
.y2b_c01408{bottom:929.127131pt;}
.y2a_c01408{bottom:930.021452pt;}
.y29_c01408{bottom:931.670701pt;}
.y28_c01408{bottom:932.821460pt;}
.y27_c01408{bottom:933.682335pt;}
.y26_c01408{bottom:934.789129pt;}
.y25_c01408{bottom:935.373731pt;}
.y24_c01408{bottom:936.766543pt;}
.y23_c01408{bottom:937.629815pt;}
.y22_c01408{bottom:938.472245pt;}
.y21_c01408{bottom:939.885357pt;}
.y20_c01408{bottom:941.310843pt;}
.y1f_c01408{bottom:942.969333pt;}
.y1_c01408{bottom:954.720000pt;}
.y1e_c01408{bottom:959.091608pt;}
.y1d_c01408{bottom:959.522596pt;}
.y1c_c01408{bottom:961.769837pt;}
.y1b_c01408{bottom:963.228589pt;}
.y1a_c01408{bottom:963.948511pt;}
.y19_c01408{bottom:965.646816pt;}
.y18_c01408{bottom:966.625035pt;}
.y17_c01408{bottom:967.363069pt;}
.y2_c01408{bottom:967.680000pt;}
.y16_c01408{bottom:969.532133pt;}
.y15_c01408{bottom:970.278507pt;}
.y14_c01408{bottom:971.760156pt;}
.y13_c01408{bottom:973.192621pt;}
.y12_c01408{bottom:989.470853pt;}
.y11_c01408{bottom:989.792303pt;}
.y10_c01408{bottom:990.969104pt;}
.yf_c01408{bottom:992.227456pt;}
.ye_c01408{bottom:993.407316pt;}
.yd_c01408{bottom:994.635949pt;}
.yc_c01408{bottom:995.876611pt;}
.yb_c01408{bottom:997.339728pt;}
.ya_c01408{bottom:997.985065pt;}
.y9_c01408{bottom:1000.977971pt;}
.y8_c01408{bottom:1001.879616pt;}
.y7_c01408{bottom:1004.288977pt;}
.y6_c01408{bottom:1004.922535pt;}
.y5_c01408{bottom:1006.450917pt;}
.y4_c01408{bottom:1007.288000pt;}
.y3_c01408{bottom:1051.326667pt;}
.h2_c01408{height:16.000000pt;}
.hd_c01408{height:21.333333pt;}
.h12_c01408{height:21.341694pt;}
.he_c01408{height:58.689659pt;}
.hf_c01408{height:63.987231pt;}
.h7_c01408{height:64.025083pt;}
.h3_c01408{height:69.333333pt;}
.h9_c01408{height:69.360507pt;}
.h11_c01408{height:69.366640pt;}
.h13_c01408{height:74.640417pt;}
.h6_c01408{height:74.698057pt;}
.h4_c01408{height:74.702535pt;}
.hc_c01408{height:79.969034pt;}
.ha_c01408{height:80.031354pt;}
.h5_c01408{height:80.038431pt;}
.h8_c01408{height:85.366777pt;}
.h10_c01408{height:90.702201pt;}
.hb_c01408{height:101.373048pt;}
.h1_c01408{height:1111.333333pt;}
.h0_c01408{height:1111.440000pt;}
.w1_c01408{width:806.666667pt;}
.w0_c01408{width:806.880000pt;}
.x0_c01408{left:0.000000pt;}
.x1_c01408{left:3.120000pt;}
.x2_c01408{left:12.240000pt;}
.xcd_c01408{left:110.526667pt;}
.xce_c01408{left:112.184139pt;}
.xc4_c01408{left:113.867931pt;}
.xbe_c01408{left:115.314779pt;}
.xa0_c01408{left:120.593227pt;}
.x95_c01408{left:121.979824pt;}
.x83_c01408{left:123.294155pt;}
.x8c_c01408{left:124.909797pt;}
.x7b_c01408{left:125.958459pt;}
.x62_c01408{left:129.978629pt;}
.x56_c01408{left:131.414704pt;}
.x3e_c01408{left:132.630059pt;}
.x34_c01408{left:134.095163pt;}
.x2a_c01408{left:135.050667pt;}
.x14_c01408{left:137.435241pt;}
.x5_c01408{left:139.674667pt;}
.x3f_c01408{left:152.302059pt;}
.xc5_c01408{left:153.223467pt;}
.x63_c01408{left:158.512512pt;}
.x8d_c01408{left:161.714843pt;}
.x35_c01408{left:163.598651pt;}
.x7c_c01408{left:164.839291pt;}
.x6_c01408{left:166.677333pt;}
.xa9_c01408{left:179.711120pt;}
.x2b_c01408{left:183.992000pt;}
.x6b_c01408{left:187.484000pt;}
.x4b_c01408{left:189.984475pt;}
.x40_c01408{left:192.386059pt;}
.x15_c01408{left:194.751239pt;}
.xb5_c01408{left:196.762667pt;}
.xa1_c01408{left:200.135893pt;}
.x6c_c01408{left:207.397400pt;}
.xaa_c01408{left:209.148965pt;}
.x8e_c01408{left:211.306891pt;}
.xba_c01408{left:214.684000pt;}
.x7_c01408{left:215.980000pt;}
.xd1_c01408{left:217.948880pt;}
.x4c_c01408{left:219.492475pt;}
.x36_c01408{left:221.160256pt;}
.x7d_c01408{left:222.379835pt;}
.x72_c01408{left:225.237333pt;}
.xc8_c01408{left:227.116000pt;}
.x96_c01408{left:229.256517pt;}
.xbf_c01408{left:232.766875pt;}
.xbb_c01408{left:233.889333pt;}
.x8_c01408{left:236.417333pt;}
.x57_c01408{left:239.664619pt;}
.x8f_c01408{left:241.627749pt;}
.x1e_c01408{left:243.057333pt;}
.x73_c01408{left:245.089333pt;}
.x64_c01408{left:247.186048pt;}
.x41_c01408{left:250.716725pt;}
.x2c_c01408{left:252.013333pt;}
.x16_c01408{left:253.998233pt;}
.x6d_c01408{left:255.626456pt;}
.x84_c01408{left:260.434656pt;}
.xb6_c01408{left:264.934427pt;}
.x65_c01408{left:266.074859pt;}
.xab_c01408{left:268.217989pt;}
.x42_c01408{left:278.579392pt;}
.x37_c01408{left:279.739232pt;}
.x2d_c01408{left:280.741333pt;}
.x17_c01408{left:283.843772pt;}
.xa2_c01408{left:286.815893pt;}
.x97_c01408{left:287.947899pt;}
.x1f_c01408{left:291.785333pt;}
.x58_c01408{left:295.853483pt;}
.x85_c01408{left:299.142075pt;}
.xc0_c01408{left:300.405733pt;}
.x74_c01408{left:302.601333pt;}
.x4d_c01408{left:307.456475pt;}
.x43_c01408{left:308.375392pt;}
.x2e_c01408{left:311.022667pt;}
.x9_c01408{left:314.138667pt;}
.x98_c01408{left:317.698219pt;}
.x20_c01408{left:320.834667pt;}
.xb7_c01408{left:322.507463pt;}
.xac_c01408{left:325.388384pt;}
.xcf_c01408{left:326.632816pt;}
.x90_c01408{left:328.276843pt;}
.xa3_c01408{left:336.942560pt;}
.xc9_c01408{left:338.338667pt;}
.x6e_c01408{left:342.005324pt;}
.xa_c01408{left:343.224000pt;}
.x59_c01408{left:344.730757pt;}
.x3_c01408{left:347.040000pt;}
.x21_c01408{left:350.602667pt;}
.xad_c01408{left:354.422229pt;}
.x86_c01408{left:358.462443pt;}
.x2f_c01408{left:360.076000pt;}
.x4e_c01408{left:365.995141pt;}
.x4_c01408{left:367.920000pt;}
.x18_c01408{left:370.603892pt;}
.x66_c01408{left:373.191835pt;}
.x99_c01408{left:375.065675pt;}
.xca_c01408{left:376.734667pt;}
.x75_c01408{left:379.658667pt;}
.x5a_c01408{left:385.181813pt;}
.xc1_c01408{left:387.320880pt;}
.xb9_c01408{left:393.360000pt;}
.x87_c01408{left:394.740715pt;}
.x4f_c01408{left:395.783141pt;}
.x38_c01408{left:397.227851pt;}
.x22_c01408{left:398.630667pt;}
.x19_c01408{left:400.137389pt;}
.x70_c01408{left:401.280000pt;}
.xb8_c01408{left:402.379511pt;}
.xd0_c01408{left:403.950981pt;}
.xcb_c01408{left:405.558667pt;}
.xae_c01408{left:412.779253pt;}
.x6f_c01408{left:414.111812pt;}
.x23_c01408{left:418.789333pt;}
.x67_c01408{left:422.637120pt;}
.x5b_c01408{left:423.684981pt;}
.x71_c01408{left:425.520000pt;}
.x39_c01408{left:426.523339pt;}
.x30_c01408{left:428.025333pt;}
.xd2_c01408{left:431.900048pt;}
.xa4_c01408{left:433.038560pt;}
.xc2_c01408{left:436.618117pt;}
.xb_c01408{left:439.769333pt;}
.x9a_c01408{left:444.308459pt;}
.x7e_c01408{left:445.462971pt;}
.xaf_c01408{left:451.662171pt;}
.x50_c01408{left:453.380475pt;}
.x5c_c01408{left:454.324597pt;}
.x91_c01408{left:455.551093pt;}
.x24_c01408{left:456.954667pt;}
.xc_c01408{left:460.586667pt;}
.x9b_c01408{left:463.644709pt;}
.x88_c01408{left:465.297445pt;}
.x44_c01408{left:473.736725pt;}
.x7f_c01408{left:476.199355pt;}
.x76_c01408{left:477.361333pt;}
.x5d_c01408{left:481.692400pt;}
.x51_c01408{left:483.881808pt;}
.x25_c01408{left:486.640000pt;}
.x68_c01408{left:490.575216pt;}
.x89_c01408{left:494.336352pt;}
.xb0_c01408{left:500.642123pt;}
.x9c_c01408{left:503.711803pt;}
.x77_c01408{left:506.642667pt;}
.xd_c01408{left:507.784000pt;}
.x5e_c01408{left:511.305424pt;}
.x9d_c01408{left:521.856128pt;}
.x3a_c01408{left:523.087360pt;}
.x26_c01408{left:526.321333pt;}
.xb1_c01408{left:529.929301pt;}
.x45_c01408{left:533.147392pt;}
.x1a_c01408{left:536.048019pt;}
.x52_c01408{left:542.699141pt;}
.x31_c01408{left:544.352000pt;}
.xe_c01408{left:547.805333pt;}
.x9e_c01408{left:551.759781pt;}
.x8a_c01408{left:553.147424pt;}
.x69_c01408{left:558.811979pt;}
.xa5_c01408{left:561.229227pt;}
.x46_c01408{left:562.142059pt;}
.xbc_c01408{left:564.054667pt;}
.x5f_c01408{left:569.072843pt;}
.x3b_c01408{left:572.310075pt;}
.x27_c01408{left:583.192000pt;}
.x78_c01408{left:584.532000pt;}
.xf_c01408{left:587.438667pt;}
.xa6_c01408{left:589.250560pt;}
.x53_c01408{left:590.453808pt;}
.x1b_c01408{left:594.384181pt;}
.x60_c01408{left:599.057829pt;}
.x3c_c01408{left:601.521563pt;}
.x47_c01408{left:610.508725pt;}
.xc6_c01408{left:611.609115pt;}
.x32_c01408{left:613.025333pt;}
.x28_c01408{left:614.030667pt;}
.xb2_c01408{left:617.636171pt;}
.x10_c01408{left:625.498667pt;}
.x6a_c01408{left:626.938075pt;}
.x54_c01408{left:629.599141pt;}
.x80_c01408{left:631.288016pt;}
.x79_c01408{left:632.701333pt;}
.xb3_c01408{left:636.524981pt;}
.x3d_c01408{left:641.037349pt;}
.xbd_c01408{left:642.330667pt;}
.x9f_c01408{left:648.706368pt;}
.x92_c01408{left:650.793877pt;}
.x33_c01408{left:652.897333pt;}
.x61_c01408{left:656.707952pt;}
.xa7_c01408{left:658.390560pt;}
.xc7_c01408{left:659.714469pt;}
.x11_c01408{left:666.090667pt;}
.xcc_c01408{left:668.965333pt;}
.x48_c01408{left:678.816725pt;}
.x8b_c01408{left:679.943451pt;}
.x81_c01408{left:681.078816pt;}
.x1c_c01408{left:684.268880pt;}
.x93_c01408{left:689.369627pt;}
.x7a_c01408{left:691.177333pt;}
.x55_c01408{left:697.312475pt;}
.x82_c01408{left:700.538565pt;}
.x1d_c01408{left:701.486729pt;}
.x12_c01408{left:704.052000pt;}
.x49_c01408{left:709.544725pt;}
.xc3_c01408{left:710.570773pt;}
.x13_c01408{left:714.421333pt;}
.xb4_c01408{left:716.026741pt;}
.xa8_c01408{left:727.410560pt;}
.x94_c01408{left:728.541376pt;}
.x4a_c01408{left:737.894059pt;}
.x29_c01408{left:740.541333pt;}
}





/* 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_c01409 {
    display:none;
  }
  .loading-indicator_c01409.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01409 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_c01409 { 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_c01409" -> "#page-container .classname_c01409")
 */
.pf_c01409 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01409 { /* 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_c01409.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01409 { /* 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_c01409 { /* 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_c01409 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01409 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01409 {overflow:visible;}
  }
}
.c_c01409 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01409 { /* 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_c01409:after { /* webkit #35443 */
  content: '';
}
.t_c01409:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01409 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 */
}
.__c01409 { /* 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_c01409 { /* info for Javascript */
  display:none;
}
.l_c01409 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01409 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01409 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01409: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_c01409 {
    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_c01409.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01409.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_c01409 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01409{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01409;src:url('chunks/assets/font_b11a17f404e7258299fdf971.woff2')format("woff");}.ff1_c01409{font-family:ff1_c01409;line-height:1.000000;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;}
.m4_c01409{transform:matrix(0.004557,0.000463,-0.025247,0.248722,0,0);-ms-transform:matrix(0.004557,0.000463,-0.025247,0.248722,0,0);-webkit-transform:matrix(0.004557,0.000463,-0.025247,0.248722,0,0);}
.m5_c01409{transform:matrix(0.139657,0.014176,-0.025247,0.248722,0,0);-ms-transform:matrix(0.139657,0.014176,-0.025247,0.248722,0,0);-webkit-transform:matrix(0.139657,0.014176,-0.025247,0.248722,0,0);}
.m1_c01409{transform:matrix(0.147303,0.014952,-0.025247,0.248722,0,0);-ms-transform:matrix(0.147303,0.014952,-0.025247,0.248722,0,0);-webkit-transform:matrix(0.147303,0.014952,-0.025247,0.248722,0,0);}
.m2_c01409{transform:matrix(0.154407,0.015673,-0.025247,0.248722,0,0);-ms-transform:matrix(0.154407,0.015673,-0.025247,0.248722,0,0);-webkit-transform:matrix(0.154407,0.015673,-0.025247,0.248722,0,0);}
.m3_c01409{transform:matrix(0.154620,0.015695,-0.025247,0.248722,0,0);-ms-transform:matrix(0.154620,0.015695,-0.025247,0.248722,0,0);-webkit-transform:matrix(0.154620,0.015695,-0.025247,0.248722,0,0);}
.m0_c01409{transform:matrix(0.182169,0.018492,-0.025247,0.248722,0,0);-ms-transform:matrix(0.182169,0.018492,-0.025247,0.248722,0,0);-webkit-transform:matrix(0.182169,0.018492,-0.025247,0.248722,0,0);}
.m9_c01409{transform:matrix(0.190920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190920,0.000000,0.000000,0.250000,0,0);}
.m7_c01409{transform:matrix(0.196222,0.019918,-0.025247,0.248722,0,0);-ms-transform:matrix(0.196222,0.019918,-0.025247,0.248722,0,0);-webkit-transform:matrix(0.196222,0.019918,-0.025247,0.248722,0,0);}
.m6_c01409{transform:matrix(0.203027,0.020609,-0.025247,0.248722,0,0);-ms-transform:matrix(0.203027,0.020609,-0.025247,0.248722,0,0);-webkit-transform:matrix(0.203027,0.020609,-0.025247,0.248722,0,0);}
.ma_c01409{transform:matrix(0.261965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261965,0.000000,0.000000,0.250000,0,0);}
.m8_c01409{transform:matrix(0.712775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.712775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.712775,0.000000,0.000000,0.250000,0,0);}
.mc_c01409{transform:matrix(0.985664,0.101043,-0.025495,0.248697,0,0);-ms-transform:matrix(0.985664,0.101043,-0.025495,0.248697,0,0);-webkit-transform:matrix(0.985664,0.101043,-0.025495,0.248697,0,0);}
.mb_c01409{transform:matrix(1.360045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.360045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.360045,0.000000,0.000000,0.250000,0,0);}
.v0_c01409{vertical-align:0.000000px;}
.ls0_c01409{letter-spacing:0.000000px;}
.sc__c01409{text-shadow:none;}
.sc0_c01409{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__c01409{-webkit-text-stroke:0px transparent;}
.sc0_c01409{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01409{word-spacing:0.000000px;}
.fc0_c01409{color:transparent;}
.fs2_c01409{font-size:18.000000px;}
.fs1_c01409{font-size:24.000000px;}
.fs3_c01409{font-size:24.005147px;}
.fs0_c01409{font-size:162.018305px;}
.y0_c01409{bottom:0.000000px;}
.yb_c01409{bottom:171.484500px;}
.y8_c01409{bottom:935.500718px;}
.y7_c01409{bottom:941.327738px;}
.y6_c01409{bottom:946.635434px;}
.y5_c01409{bottom:949.477036px;}
.y4_c01409{bottom:971.924795px;}
.y3_c01409{bottom:981.340823px;}
.ya_c01409{bottom:982.800000px;}
.y2_c01409{bottom:983.150187px;}
.y9_c01409{bottom:984.960000px;}
.y1_c01409{bottom:987.141000px;}
.h4_c01409{height:18.000000px;}
.h3_c01409{height:24.000000px;}
.h5_c01409{height:24.005147px;}
.h2_c01409{height:162.018305px;}
.h1_c01409{height:1250.250000px;}
.h0_c01409{height:1250.370000px;}
.w1_c01409{width:907.500000px;}
.w0_c01409{width:907.740000px;}
.x0_c01409{left:0.000000px;}
.x9_c01409{left:2.970000px;}
.x1_c01409{left:606.478500px;}
.x5_c01409{left:607.742906px;}
.x6_c01409{left:642.183917px;}
.x2_c01409{left:645.793935px;}
.x3_c01409{left:663.618862px;}
.xa_c01409{left:670.080000px;}
.x7_c01409{left:706.505026px;}
.x4_c01409{left:756.380723px;}
.x8_c01409{left:777.130637px;}
@media print{
.v0_c01409{vertical-align:0.000000pt;}
.ls0_c01409{letter-spacing:0.000000pt;}
.ws0_c01409{word-spacing:0.000000pt;}
.fs2_c01409{font-size:16.000000pt;}
.fs1_c01409{font-size:21.333333pt;}
.fs3_c01409{font-size:21.337909pt;}
.fs0_c01409{font-size:144.016271pt;}
.y0_c01409{bottom:0.000000pt;}
.yb_c01409{bottom:152.430667pt;}
.y8_c01409{bottom:831.556193pt;}
.y7_c01409{bottom:836.735767pt;}
.y6_c01409{bottom:841.453719pt;}
.y5_c01409{bottom:843.979588pt;}
.y4_c01409{bottom:863.933151pt;}
.y3_c01409{bottom:872.302953pt;}
.ya_c01409{bottom:873.600000pt;}
.y2_c01409{bottom:873.911277pt;}
.y9_c01409{bottom:875.520000pt;}
.y1_c01409{bottom:877.458667pt;}
.h4_c01409{height:16.000000pt;}
.h3_c01409{height:21.333333pt;}
.h5_c01409{height:21.337909pt;}
.h2_c01409{height:144.016271pt;}
.h1_c01409{height:1111.333333pt;}
.h0_c01409{height:1111.440000pt;}
.w1_c01409{width:806.666667pt;}
.w0_c01409{width:806.880000pt;}
.x0_c01409{left:0.000000pt;}
.x9_c01409{left:2.640000pt;}
.x1_c01409{left:539.092000pt;}
.x5_c01409{left:540.215916pt;}
.x6_c01409{left:570.830148pt;}
.x2_c01409{left:574.039053pt;}
.x3_c01409{left:589.883433pt;}
.xa_c01409{left:595.626667pt;}
.x7_c01409{left:628.004468pt;}
.x4_c01409{left:672.338420pt;}
.x8_c01409{left:690.782788pt;}
}





/* 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_c01410 {
    display:none;
  }
  .loading-indicator_c01410.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01410 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_c01410 { 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_c01410" -> "#page-container .classname_c01410")
 */
.pf_c01410 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01410 { /* 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_c01410.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01410 { /* 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_c01410 { /* 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_c01410 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01410 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01410 {overflow:visible;}
  }
}
.c_c01410 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01410 { /* 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_c01410:after { /* webkit #35443 */
  content: '';
}
.t_c01410:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01410 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 */
}
.__c01410 { /* 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_c01410 { /* info for Javascript */
  display:none;
}
.l_c01410 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01410 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01410 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01410: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_c01410 {
    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_c01410.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01410.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_c01410 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01410{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01410;src:url('chunks/assets/font_c605e72f209fc835e906f064.woff2')format("woff");}.ff1_c01410{font-family:ff1_c01410;line-height:1.000000;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;}
.maa_c01410{transform:matrix(0.106824,0.002350,-0.005499,0.249940,0,0);-ms-transform:matrix(0.106824,0.002350,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.106824,0.002350,-0.005499,0.249940,0,0);}
.mcf_c01410{transform:matrix(0.115032,0.002761,-0.005998,0.249928,0,0);-ms-transform:matrix(0.115032,0.002761,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.115032,0.002761,-0.005998,0.249928,0,0);}
.m123_c01410{transform:matrix(0.120894,0.003143,-0.006498,0.249916,0,0);-ms-transform:matrix(0.120894,0.003143,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.120894,0.003143,-0.006498,0.249916,0,0);}
.m8f_c01410{transform:matrix(0.122355,0.002692,-0.005499,0.249940,0,0);-ms-transform:matrix(0.122355,0.002692,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.122355,0.002692,-0.005499,0.249940,0,0);}
.mfa_c01410{transform:matrix(0.124619,0.002991,-0.005998,0.249928,0,0);-ms-transform:matrix(0.124619,0.002991,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.124619,0.002991,-0.005998,0.249928,0,0);}
.mbb_c01410{transform:matrix(0.154116,0.003699,-0.005998,0.249928,0,0);-ms-transform:matrix(0.154116,0.003699,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.154116,0.003699,-0.005998,0.249928,0,0);}
.mb2_c01410{transform:matrix(0.156425,0.003754,-0.005998,0.249928,0,0);-ms-transform:matrix(0.156425,0.003754,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.156425,0.003754,-0.005998,0.249928,0,0);}
.mad_c01410{transform:matrix(0.166185,0.003656,-0.005499,0.249940,0,0);-ms-transform:matrix(0.166185,0.003656,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.166185,0.003656,-0.005499,0.249940,0,0);}
.m55_c01410{transform:matrix(0.176842,0.003891,-0.005499,0.249940,0,0);-ms-transform:matrix(0.176842,0.003891,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.176842,0.003891,-0.005499,0.249940,0,0);}
.m77_c01410{transform:matrix(0.178332,0.003923,-0.005499,0.249940,0,0);-ms-transform:matrix(0.178332,0.003923,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.178332,0.003923,-0.005499,0.249940,0,0);}
.m35_c01410{transform:matrix(0.179202,0.003942,-0.005499,0.249940,0,0);-ms-transform:matrix(0.179202,0.003942,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.179202,0.003942,-0.005499,0.249940,0,0);}
.m56_c01410{transform:matrix(0.179886,0.003958,-0.005499,0.249940,0,0);-ms-transform:matrix(0.179886,0.003958,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.179886,0.003958,-0.005499,0.249940,0,0);}
.m144_c01410{transform:matrix(0.181099,0.004709,-0.006498,0.249916,0,0);-ms-transform:matrix(0.181099,0.004709,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.181099,0.004709,-0.006498,0.249916,0,0);}
.md5_c01410{transform:matrix(0.182303,0.004375,-0.005998,0.249928,0,0);-ms-transform:matrix(0.182303,0.004375,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.182303,0.004375,-0.005998,0.249928,0,0);}
.m13a_c01410{transform:matrix(0.182343,0.004741,-0.006498,0.249916,0,0);-ms-transform:matrix(0.182343,0.004741,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.182343,0.004741,-0.006498,0.249916,0,0);}
.m13b_c01410{transform:matrix(0.183593,0.004773,-0.006498,0.249916,0,0);-ms-transform:matrix(0.183593,0.004773,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.183593,0.004773,-0.006498,0.249916,0,0);}
.m111_c01410{transform:matrix(0.184062,0.004417,-0.005998,0.249928,0,0);-ms-transform:matrix(0.184062,0.004417,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.184062,0.004417,-0.005998,0.249928,0,0);}
.m148_c01410{transform:matrix(0.184578,0.004799,-0.006498,0.249916,0,0);-ms-transform:matrix(0.184578,0.004799,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.184578,0.004799,-0.006498,0.249916,0,0);}
.m128_c01410{transform:matrix(0.185767,0.004830,-0.006498,0.249916,0,0);-ms-transform:matrix(0.185767,0.004830,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.185767,0.004830,-0.006498,0.249916,0,0);}
.me8_c01410{transform:matrix(0.186331,0.004472,-0.005998,0.249928,0,0);-ms-transform:matrix(0.186331,0.004472,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.186331,0.004472,-0.005998,0.249928,0,0);}
.m59_c01410{transform:matrix(0.186805,0.004110,-0.005499,0.249940,0,0);-ms-transform:matrix(0.186805,0.004110,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.186805,0.004110,-0.005499,0.249940,0,0);}
.m143_c01410{transform:matrix(0.187552,0.004876,-0.006498,0.249916,0,0);-ms-transform:matrix(0.187552,0.004876,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.187552,0.004876,-0.006498,0.249916,0,0);}
.mf0_c01410{transform:matrix(0.188626,0.004527,-0.005998,0.249928,0,0);-ms-transform:matrix(0.188626,0.004527,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.188626,0.004527,-0.005998,0.249928,0,0);}
.m52_c01410{transform:matrix(0.188859,0.004155,-0.005499,0.249940,0,0);-ms-transform:matrix(0.188859,0.004155,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.188859,0.004155,-0.005499,0.249940,0,0);}
.m142_c01410{transform:matrix(0.190276,0.004947,-0.006498,0.249916,0,0);-ms-transform:matrix(0.190276,0.004947,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.190276,0.004947,-0.006498,0.249916,0,0);}
.m9e_c01410{transform:matrix(0.190669,0.004195,-0.005499,0.249940,0,0);-ms-transform:matrix(0.190669,0.004195,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.190669,0.004195,-0.005499,0.249940,0,0);}
.m10a_c01410{transform:matrix(0.190670,0.004576,-0.005998,0.249928,0,0);-ms-transform:matrix(0.190670,0.004576,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.190670,0.004576,-0.005998,0.249928,0,0);}
.m6a_c01410{transform:matrix(0.190679,0.004195,-0.005499,0.249940,0,0);-ms-transform:matrix(0.190679,0.004195,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.190679,0.004195,-0.005499,0.249940,0,0);}
.m58_c01410{transform:matrix(0.191379,0.004210,-0.005499,0.249940,0,0);-ms-transform:matrix(0.191379,0.004210,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.191379,0.004210,-0.005499,0.249940,0,0);}
.meb_c01410{transform:matrix(0.191380,0.004593,-0.005998,0.249928,0,0);-ms-transform:matrix(0.191380,0.004593,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.191380,0.004593,-0.005998,0.249928,0,0);}
.m13d_c01410{transform:matrix(0.191515,0.004979,-0.006498,0.249916,0,0);-ms-transform:matrix(0.191515,0.004979,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.191515,0.004979,-0.006498,0.249916,0,0);}
.m13e_c01410{transform:matrix(0.192590,0.005007,-0.006498,0.249916,0,0);-ms-transform:matrix(0.192590,0.005007,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.192590,0.005007,-0.006498,0.249916,0,0);}
.m146_c01410{transform:matrix(0.193695,0.005036,-0.006498,0.249916,0,0);-ms-transform:matrix(0.193695,0.005036,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.193695,0.005036,-0.006498,0.249916,0,0);}
.mf_c01410{transform:matrix(0.195033,0.004291,-0.005499,0.249940,0,0);-ms-transform:matrix(0.195033,0.004291,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.195033,0.004291,-0.005499,0.249940,0,0);}
.ma6_c01410{transform:matrix(0.195518,0.004301,-0.005499,0.249940,0,0);-ms-transform:matrix(0.195518,0.004301,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.195518,0.004301,-0.005499,0.249940,0,0);}
.m8b_c01410{transform:matrix(0.196038,0.004313,-0.005499,0.249940,0,0);-ms-transform:matrix(0.196038,0.004313,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.196038,0.004313,-0.005499,0.249940,0,0);}
.ma2_c01410{transform:matrix(0.196208,0.004317,-0.005499,0.249940,0,0);-ms-transform:matrix(0.196208,0.004317,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.196208,0.004317,-0.005499,0.249940,0,0);}
.me9_c01410{transform:matrix(0.196308,0.004711,-0.005998,0.249928,0,0);-ms-transform:matrix(0.196308,0.004711,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.196308,0.004711,-0.005998,0.249928,0,0);}
.m141_c01410{transform:matrix(0.196624,0.005112,-0.006498,0.249916,0,0);-ms-transform:matrix(0.196624,0.005112,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.196624,0.005112,-0.006498,0.249916,0,0);}
.m57_c01410{transform:matrix(0.197052,0.004335,-0.005499,0.249940,0,0);-ms-transform:matrix(0.197052,0.004335,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.197052,0.004335,-0.005499,0.249940,0,0);}
.m36_c01410{transform:matrix(0.197282,0.004340,-0.005499,0.249940,0,0);-ms-transform:matrix(0.197282,0.004340,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.197282,0.004340,-0.005499,0.249940,0,0);}
.m32_c01410{transform:matrix(0.197387,0.004343,-0.005499,0.249940,0,0);-ms-transform:matrix(0.197387,0.004343,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.197387,0.004343,-0.005499,0.249940,0,0);}
.m66_c01410{transform:matrix(0.197527,0.004346,-0.005499,0.249940,0,0);-ms-transform:matrix(0.197527,0.004346,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.197527,0.004346,-0.005499,0.249940,0,0);}
.m12c_c01410{transform:matrix(0.198113,0.005151,-0.006498,0.249916,0,0);-ms-transform:matrix(0.198113,0.005151,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.198113,0.005151,-0.006498,0.249916,0,0);}
.m145_c01410{transform:matrix(0.198133,0.005151,-0.006498,0.249916,0,0);-ms-transform:matrix(0.198133,0.005151,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.198133,0.005151,-0.006498,0.249916,0,0);}
.m102_c01410{transform:matrix(0.198318,0.004760,-0.005998,0.249928,0,0);-ms-transform:matrix(0.198318,0.004760,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.198318,0.004760,-0.005998,0.249928,0,0);}
.m72_c01410{transform:matrix(0.198327,0.004363,-0.005499,0.249940,0,0);-ms-transform:matrix(0.198327,0.004363,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.198327,0.004363,-0.005499,0.249940,0,0);}
.m67_c01410{transform:matrix(0.198407,0.004365,-0.005499,0.249940,0,0);-ms-transform:matrix(0.198407,0.004365,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.198407,0.004365,-0.005499,0.249940,0,0);}
.me6_c01410{transform:matrix(0.198698,0.004769,-0.005998,0.249928,0,0);-ms-transform:matrix(0.198698,0.004769,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.198698,0.004769,-0.005998,0.249928,0,0);}
.m13c_c01410{transform:matrix(0.198753,0.005168,-0.006498,0.249916,0,0);-ms-transform:matrix(0.198753,0.005168,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.198753,0.005168,-0.006498,0.249916,0,0);}
.mee_c01410{transform:matrix(0.198873,0.004773,-0.005998,0.249928,0,0);-ms-transform:matrix(0.198873,0.004773,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.198873,0.004773,-0.005998,0.249928,0,0);}
.m105_c01410{transform:matrix(0.199643,0.004791,-0.005998,0.249928,0,0);-ms-transform:matrix(0.199643,0.004791,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.199643,0.004791,-0.005998,0.249928,0,0);}
.m147_c01410{transform:matrix(0.199703,0.005192,-0.006498,0.249916,0,0);-ms-transform:matrix(0.199703,0.005192,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.199703,0.005192,-0.006498,0.249916,0,0);}
.m7c_c01410{transform:matrix(0.200297,0.004407,-0.005499,0.249940,0,0);-ms-transform:matrix(0.200297,0.004407,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.200297,0.004407,-0.005499,0.249940,0,0);}
.m129_c01410{transform:matrix(0.200742,0.005219,-0.006498,0.249916,0,0);-ms-transform:matrix(0.200742,0.005219,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.200742,0.005219,-0.006498,0.249916,0,0);}
.mec_c01410{transform:matrix(0.200752,0.004818,-0.005998,0.249928,0,0);-ms-transform:matrix(0.200752,0.004818,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.200752,0.004818,-0.005998,0.249928,0,0);}
.m140_c01410{transform:matrix(0.201527,0.005240,-0.006498,0.249916,0,0);-ms-transform:matrix(0.201527,0.005240,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.201527,0.005240,-0.006498,0.249916,0,0);}
.m124_c01410{transform:matrix(0.202002,0.005252,-0.006498,0.249916,0,0);-ms-transform:matrix(0.202002,0.005252,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.202002,0.005252,-0.006498,0.249916,0,0);}
.m26_c01410{transform:matrix(0.202466,0.004454,-0.005499,0.249940,0,0);-ms-transform:matrix(0.202466,0.004454,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.202466,0.004454,-0.005499,0.249940,0,0);}
.m2b_c01410{transform:matrix(0.202616,0.004458,-0.005499,0.249940,0,0);-ms-transform:matrix(0.202616,0.004458,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.202616,0.004458,-0.005499,0.249940,0,0);}
.m53_c01410{transform:matrix(0.202796,0.004462,-0.005499,0.249940,0,0);-ms-transform:matrix(0.202796,0.004462,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.202796,0.004462,-0.005499,0.249940,0,0);}
.m81_c01410{transform:matrix(0.203251,0.004472,-0.005499,0.249940,0,0);-ms-transform:matrix(0.203251,0.004472,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.203251,0.004472,-0.005499,0.249940,0,0);}
.m7e_c01410{transform:matrix(0.203771,0.004483,-0.005499,0.249940,0,0);-ms-transform:matrix(0.203771,0.004483,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.203771,0.004483,-0.005499,0.249940,0,0);}
.mf1_c01410{transform:matrix(0.204106,0.004899,-0.005998,0.249928,0,0);-ms-transform:matrix(0.204106,0.004899,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.204106,0.004899,-0.005998,0.249928,0,0);}
.m79_c01410{transform:matrix(0.204815,0.004506,-0.005499,0.249940,0,0);-ms-transform:matrix(0.204815,0.004506,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.204815,0.004506,-0.005499,0.249940,0,0);}
.m31_c01410{transform:matrix(0.205075,0.004512,-0.005499,0.249940,0,0);-ms-transform:matrix(0.205075,0.004512,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.205075,0.004512,-0.005499,0.249940,0,0);}
.m98_c01410{transform:matrix(0.205335,0.004517,-0.005499,0.249940,0,0);-ms-transform:matrix(0.205335,0.004517,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.205335,0.004517,-0.005499,0.249940,0,0);}
.m10f_c01410{transform:matrix(0.206201,0.004949,-0.005998,0.249928,0,0);-ms-transform:matrix(0.206201,0.004949,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.206201,0.004949,-0.005998,0.249928,0,0);}
.ma0_c01410{transform:matrix(0.206210,0.004537,-0.005499,0.249940,0,0);-ms-transform:matrix(0.206210,0.004537,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.206210,0.004537,-0.005499,0.249940,0,0);}
.m6b_c01410{transform:matrix(0.206775,0.004549,-0.005499,0.249940,0,0);-ms-transform:matrix(0.206775,0.004549,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.206775,0.004549,-0.005499,0.249940,0,0);}
.ma8_c01410{transform:matrix(0.206875,0.004551,-0.005499,0.249940,0,0);-ms-transform:matrix(0.206875,0.004551,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.206875,0.004551,-0.005499,0.249940,0,0);}
.m2e_c01410{transform:matrix(0.208015,0.004576,-0.005499,0.249940,0,0);-ms-transform:matrix(0.208015,0.004576,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.208015,0.004576,-0.005499,0.249940,0,0);}
.m9f_c01410{transform:matrix(0.208235,0.004581,-0.005499,0.249940,0,0);-ms-transform:matrix(0.208235,0.004581,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.208235,0.004581,-0.005499,0.249940,0,0);}
.ma_c01410{transform:matrix(0.208425,0.004585,-0.005499,0.249940,0,0);-ms-transform:matrix(0.208425,0.004585,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.208425,0.004585,-0.005499,0.249940,0,0);}
.m13f_c01410{transform:matrix(0.208595,0.005423,-0.006498,0.249916,0,0);-ms-transform:matrix(0.208595,0.005423,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.208595,0.005423,-0.006498,0.249916,0,0);}
.m125_c01410{transform:matrix(0.209354,0.005443,-0.006498,0.249916,0,0);-ms-transform:matrix(0.209354,0.005443,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.209354,0.005443,-0.006498,0.249916,0,0);}
.m54_c01410{transform:matrix(0.209504,0.004609,-0.005499,0.249940,0,0);-ms-transform:matrix(0.209504,0.004609,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.209504,0.004609,-0.005499,0.249940,0,0);}
.m4f_c01410{transform:matrix(0.209599,0.004611,-0.005499,0.249940,0,0);-ms-transform:matrix(0.209599,0.004611,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.209599,0.004611,-0.005499,0.249940,0,0);}
.m4d_c01410{transform:matrix(0.209884,0.004617,-0.005499,0.249940,0,0);-ms-transform:matrix(0.209884,0.004617,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.209884,0.004617,-0.005499,0.249940,0,0);}
.m12b_c01410{transform:matrix(0.210804,0.005481,-0.006498,0.249916,0,0);-ms-transform:matrix(0.210804,0.005481,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.210804,0.005481,-0.006498,0.249916,0,0);}
.m101_c01410{transform:matrix(0.211224,0.005069,-0.005998,0.249928,0,0);-ms-transform:matrix(0.211224,0.005069,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.211224,0.005069,-0.005998,0.249928,0,0);}
.m34_c01410{transform:matrix(0.211409,0.004651,-0.005499,0.249940,0,0);-ms-transform:matrix(0.211409,0.004651,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.211409,0.004651,-0.005499,0.249940,0,0);}
.m5a_c01410{transform:matrix(0.211659,0.004656,-0.005499,0.249940,0,0);-ms-transform:matrix(0.211659,0.004656,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.211659,0.004656,-0.005499,0.249940,0,0);}
.m86_c01410{transform:matrix(0.211819,0.004660,-0.005499,0.249940,0,0);-ms-transform:matrix(0.211819,0.004660,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.211819,0.004660,-0.005499,0.249940,0,0);}
.m149_c01410{transform:matrix(0.211848,0.005508,-0.006498,0.249916,0,0);-ms-transform:matrix(0.211848,0.005508,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.211848,0.005508,-0.006498,0.249916,0,0);}
.m3_c01410{transform:matrix(0.211895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211895,0.000000,0.000000,0.250000,0,0);}
.m2d_c01410{transform:matrix(0.211919,0.004662,-0.005499,0.249940,0,0);-ms-transform:matrix(0.211919,0.004662,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.211919,0.004662,-0.005499,0.249940,0,0);}
.ma5_c01410{transform:matrix(0.212249,0.004669,-0.005499,0.249940,0,0);-ms-transform:matrix(0.212249,0.004669,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.212249,0.004669,-0.005499,0.249940,0,0);}
.m126_c01410{transform:matrix(0.212443,0.005524,-0.006498,0.249916,0,0);-ms-transform:matrix(0.212443,0.005524,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.212443,0.005524,-0.006498,0.249916,0,0);}
.m12a_c01410{transform:matrix(0.212533,0.005526,-0.006498,0.249916,0,0);-ms-transform:matrix(0.212533,0.005526,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.212533,0.005526,-0.006498,0.249916,0,0);}
.me7_c01410{transform:matrix(0.213024,0.005113,-0.005998,0.249928,0,0);-ms-transform:matrix(0.213024,0.005113,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.213024,0.005113,-0.005998,0.249928,0,0);}
.mc1_c01410{transform:matrix(0.213074,0.005114,-0.005998,0.249928,0,0);-ms-transform:matrix(0.213074,0.005114,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.213074,0.005114,-0.005998,0.249928,0,0);}
.m109_c01410{transform:matrix(0.213823,0.005132,-0.005998,0.249928,0,0);-ms-transform:matrix(0.213823,0.005132,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.213823,0.005132,-0.005998,0.249928,0,0);}
.m6e_c01410{transform:matrix(0.213933,0.004707,-0.005499,0.249940,0,0);-ms-transform:matrix(0.213933,0.004707,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.213933,0.004707,-0.005499,0.249940,0,0);}
.m107_c01410{transform:matrix(0.214358,0.005145,-0.005998,0.249928,0,0);-ms-transform:matrix(0.214358,0.005145,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.214358,0.005145,-0.005998,0.249928,0,0);}
.m50_c01410{transform:matrix(0.214363,0.004716,-0.005499,0.249940,0,0);-ms-transform:matrix(0.214363,0.004716,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.214363,0.004716,-0.005499,0.249940,0,0);}
.m8d_c01410{transform:matrix(0.214613,0.004721,-0.005499,0.249940,0,0);-ms-transform:matrix(0.214613,0.004721,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.214613,0.004721,-0.005499,0.249940,0,0);}
.m49_c01410{transform:matrix(0.215008,0.004730,-0.005499,0.249940,0,0);-ms-transform:matrix(0.215008,0.004730,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.215008,0.004730,-0.005499,0.249940,0,0);}
.mb1_c01410{transform:matrix(0.215488,0.004741,-0.005499,0.249940,0,0);-ms-transform:matrix(0.215488,0.004741,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.215488,0.004741,-0.005499,0.249940,0,0);}
.m4b_c01410{transform:matrix(0.215703,0.004745,-0.005499,0.249940,0,0);-ms-transform:matrix(0.215703,0.004745,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.215703,0.004745,-0.005499,0.249940,0,0);}
.mdc_c01410{transform:matrix(0.215823,0.005180,-0.005998,0.249928,0,0);-ms-transform:matrix(0.215823,0.005180,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.215823,0.005180,-0.005998,0.249928,0,0);}
.m73_c01410{transform:matrix(0.216418,0.004761,-0.005499,0.249940,0,0);-ms-transform:matrix(0.216418,0.004761,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.216418,0.004761,-0.005499,0.249940,0,0);}
.m155_c01410{transform:matrix(0.216947,0.004556,-0.005249,0.249945,0,0);-ms-transform:matrix(0.216947,0.004556,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.216947,0.004556,-0.005249,0.249945,0,0);}
.m14d_c01410{transform:matrix(0.218207,0.004582,-0.005249,0.249945,0,0);-ms-transform:matrix(0.218207,0.004582,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.218207,0.004582,-0.005249,0.249945,0,0);}
.m103_c01410{transform:matrix(0.218237,0.005238,-0.005998,0.249928,0,0);-ms-transform:matrix(0.218237,0.005238,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.218237,0.005238,-0.005998,0.249928,0,0);}
.mcd_c01410{transform:matrix(0.218262,0.005238,-0.005998,0.249928,0,0);-ms-transform:matrix(0.218262,0.005238,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.218262,0.005238,-0.005998,0.249928,0,0);}
.m6d_c01410{transform:matrix(0.218407,0.004805,-0.005499,0.249940,0,0);-ms-transform:matrix(0.218407,0.004805,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.218407,0.004805,-0.005499,0.249940,0,0);}
.m120_c01410{transform:matrix(0.218892,0.004597,-0.005249,0.249945,0,0);-ms-transform:matrix(0.218892,0.004597,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.218892,0.004597,-0.005249,0.249945,0,0);}
.mc9_c01410{transform:matrix(0.219007,0.005256,-0.005998,0.249928,0,0);-ms-transform:matrix(0.219007,0.005256,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.219007,0.005256,-0.005998,0.249928,0,0);}
.mf7_c01410{transform:matrix(0.219082,0.005258,-0.005998,0.249928,0,0);-ms-transform:matrix(0.219082,0.005258,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.219082,0.005258,-0.005998,0.249928,0,0);}
.me_c01410{transform:matrix(0.219262,0.004824,-0.005499,0.249940,0,0);-ms-transform:matrix(0.219262,0.004824,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.219262,0.004824,-0.005499,0.249940,0,0);}
.mef_c01410{transform:matrix(0.219742,0.005274,-0.005998,0.249928,0,0);-ms-transform:matrix(0.219742,0.005274,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.219742,0.005274,-0.005998,0.249928,0,0);}
.m108_c01410{transform:matrix(0.219827,0.005276,-0.005998,0.249928,0,0);-ms-transform:matrix(0.219827,0.005276,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.219827,0.005276,-0.005998,0.249928,0,0);}
.m11_c01410{transform:matrix(0.219992,0.004840,-0.005499,0.249940,0,0);-ms-transform:matrix(0.219992,0.004840,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.219992,0.004840,-0.005499,0.249940,0,0);}
.m8_c01410{transform:matrix(0.220137,0.004843,-0.005499,0.249940,0,0);-ms-transform:matrix(0.220137,0.004843,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.220137,0.004843,-0.005499,0.249940,0,0);}
.m153_c01410{transform:matrix(0.220141,0.004623,-0.005249,0.249945,0,0);-ms-transform:matrix(0.220141,0.004623,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.220141,0.004623,-0.005249,0.249945,0,0);}
.m78_c01410{transform:matrix(0.220177,0.004844,-0.005499,0.249940,0,0);-ms-transform:matrix(0.220177,0.004844,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.220177,0.004844,-0.005499,0.249940,0,0);}
.m33_c01410{transform:matrix(0.220327,0.004847,-0.005499,0.249940,0,0);-ms-transform:matrix(0.220327,0.004847,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.220327,0.004847,-0.005499,0.249940,0,0);}
.m5b_c01410{transform:matrix(0.220432,0.004849,-0.005499,0.249940,0,0);-ms-transform:matrix(0.220432,0.004849,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.220432,0.004849,-0.005499,0.249940,0,0);}
.m2c_c01410{transform:matrix(0.220567,0.004852,-0.005499,0.249940,0,0);-ms-transform:matrix(0.220567,0.004852,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.220567,0.004852,-0.005499,0.249940,0,0);}
.m93_c01410{transform:matrix(0.220837,0.004858,-0.005499,0.249940,0,0);-ms-transform:matrix(0.220837,0.004858,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.220837,0.004858,-0.005499,0.249940,0,0);}
.m10e_c01410{transform:matrix(0.221071,0.005306,-0.005998,0.249928,0,0);-ms-transform:matrix(0.221071,0.005306,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.221071,0.005306,-0.005998,0.249928,0,0);}
.m80_c01410{transform:matrix(0.221181,0.004866,-0.005499,0.249940,0,0);-ms-transform:matrix(0.221181,0.004866,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.221181,0.004866,-0.005499,0.249940,0,0);}
.md3_c01410{transform:matrix(0.221536,0.005317,-0.005998,0.249928,0,0);-ms-transform:matrix(0.221536,0.005317,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.221536,0.005317,-0.005998,0.249928,0,0);}
.m7f_c01410{transform:matrix(0.221736,0.004878,-0.005499,0.249940,0,0);-ms-transform:matrix(0.221736,0.004878,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.221736,0.004878,-0.005499,0.249940,0,0);}
.m71_c01410{transform:matrix(0.221941,0.004883,-0.005499,0.249940,0,0);-ms-transform:matrix(0.221941,0.004883,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.221941,0.004883,-0.005499,0.249940,0,0);}
.m84_c01410{transform:matrix(0.222071,0.004886,-0.005499,0.249940,0,0);-ms-transform:matrix(0.222071,0.004886,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.222071,0.004886,-0.005499,0.249940,0,0);}
.mb_c01410{transform:matrix(0.222681,0.004899,-0.005499,0.249940,0,0);-ms-transform:matrix(0.222681,0.004899,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.222681,0.004899,-0.005499,0.249940,0,0);}
.m127_c01410{transform:matrix(0.222755,0.005792,-0.006498,0.249916,0,0);-ms-transform:matrix(0.222755,0.005792,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.222755,0.005792,-0.006498,0.249916,0,0);}
.m91_c01410{transform:matrix(0.223326,0.004913,-0.005499,0.249940,0,0);-ms-transform:matrix(0.223326,0.004913,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.223326,0.004913,-0.005499,0.249940,0,0);}
.m74_c01410{transform:matrix(0.223381,0.004914,-0.005499,0.249940,0,0);-ms-transform:matrix(0.223381,0.004914,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.223381,0.004914,-0.005499,0.249940,0,0);}
.m9b_c01410{transform:matrix(0.223901,0.004926,-0.005499,0.249940,0,0);-ms-transform:matrix(0.223901,0.004926,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.223901,0.004926,-0.005499,0.249940,0,0);}
.m11d_c01410{transform:matrix(0.224021,0.004704,-0.005249,0.249945,0,0);-ms-transform:matrix(0.224021,0.004704,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.224021,0.004704,-0.005249,0.249945,0,0);}
.m106_c01410{transform:matrix(0.224245,0.005382,-0.005998,0.249928,0,0);-ms-transform:matrix(0.224245,0.005382,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.224245,0.005382,-0.005998,0.249928,0,0);}
.mea_c01410{transform:matrix(0.224295,0.005383,-0.005998,0.249928,0,0);-ms-transform:matrix(0.224295,0.005383,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.224295,0.005383,-0.005998,0.249928,0,0);}
.m75_c01410{transform:matrix(0.225156,0.004953,-0.005499,0.249940,0,0);-ms-transform:matrix(0.225156,0.004953,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.225156,0.004953,-0.005499,0.249940,0,0);}
.m68_c01410{transform:matrix(0.225640,0.004964,-0.005499,0.249940,0,0);-ms-transform:matrix(0.225640,0.004964,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.225640,0.004964,-0.005499,0.249940,0,0);}
.m95_c01410{transform:matrix(0.225980,0.004972,-0.005499,0.249940,0,0);-ms-transform:matrix(0.225980,0.004972,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.225980,0.004972,-0.005499,0.249940,0,0);}
.m122_c01410{transform:matrix(0.227825,0.004784,-0.005249,0.249945,0,0);-ms-transform:matrix(0.227825,0.004784,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.227825,0.004784,-0.005249,0.249945,0,0);}
.m2f_c01410{transform:matrix(0.227825,0.005012,-0.005499,0.249940,0,0);-ms-transform:matrix(0.227825,0.005012,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.227825,0.005012,-0.005499,0.249940,0,0);}
.m7d_c01410{transform:matrix(0.228550,0.005028,-0.005499,0.249940,0,0);-ms-transform:matrix(0.228550,0.005028,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.228550,0.005028,-0.005499,0.249940,0,0);}
.m83_c01410{transform:matrix(0.228585,0.005029,-0.005499,0.249940,0,0);-ms-transform:matrix(0.228585,0.005029,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.228585,0.005029,-0.005499,0.249940,0,0);}
.m12d_c01410{transform:matrix(0.229452,0.005966,-0.006498,0.249916,0,0);-ms-transform:matrix(0.229452,0.005966,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.229452,0.005966,-0.006498,0.249916,0,0);}
.md1_c01410{transform:matrix(0.229979,0.005519,-0.005998,0.249928,0,0);-ms-transform:matrix(0.229979,0.005519,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.229979,0.005519,-0.005998,0.249928,0,0);}
.m8a_c01410{transform:matrix(0.230494,0.005071,-0.005499,0.249940,0,0);-ms-transform:matrix(0.230494,0.005071,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.230494,0.005071,-0.005499,0.249940,0,0);}
.m7b_c01410{transform:matrix(0.230669,0.005075,-0.005499,0.249940,0,0);-ms-transform:matrix(0.230669,0.005075,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.230669,0.005075,-0.005499,0.249940,0,0);}
.m104_c01410{transform:matrix(0.230824,0.005540,-0.005998,0.249928,0,0);-ms-transform:matrix(0.230824,0.005540,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.230824,0.005540,-0.005998,0.249928,0,0);}
.m89_c01410{transform:matrix(0.230879,0.005079,-0.005499,0.249940,0,0);-ms-transform:matrix(0.230879,0.005079,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.230879,0.005079,-0.005499,0.249940,0,0);}
.m61_c01410{transform:matrix(0.230959,0.005081,-0.005499,0.249940,0,0);-ms-transform:matrix(0.230959,0.005081,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.230959,0.005081,-0.005499,0.249940,0,0);}
.m9d_c01410{transform:matrix(0.231224,0.005087,-0.005499,0.249940,0,0);-ms-transform:matrix(0.231224,0.005087,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.231224,0.005087,-0.005499,0.249940,0,0);}
.m4c_c01410{transform:matrix(0.231234,0.005087,-0.005499,0.249940,0,0);-ms-transform:matrix(0.231234,0.005087,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.231234,0.005087,-0.005499,0.249940,0,0);}
.mf5_c01410{transform:matrix(0.231368,0.005553,-0.005998,0.249928,0,0);-ms-transform:matrix(0.231368,0.005553,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.231368,0.005553,-0.005998,0.249928,0,0);}
.m6c_c01410{transform:matrix(0.231374,0.005090,-0.005499,0.249940,0,0);-ms-transform:matrix(0.231374,0.005090,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.231374,0.005090,-0.005499,0.249940,0,0);}
.m9a_c01410{transform:matrix(0.231439,0.005092,-0.005499,0.249940,0,0);-ms-transform:matrix(0.231439,0.005092,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.231439,0.005092,-0.005499,0.249940,0,0);}
.m9c_c01410{transform:matrix(0.231749,0.005098,-0.005499,0.249940,0,0);-ms-transform:matrix(0.231749,0.005098,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.231749,0.005098,-0.005499,0.249940,0,0);}
.m48_c01410{transform:matrix(0.232299,0.005111,-0.005499,0.249940,0,0);-ms-transform:matrix(0.232299,0.005111,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.232299,0.005111,-0.005499,0.249940,0,0);}
.m110_c01410{transform:matrix(0.232503,0.005580,-0.005998,0.249928,0,0);-ms-transform:matrix(0.232503,0.005580,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.232503,0.005580,-0.005998,0.249928,0,0);}
.m5e_c01410{transform:matrix(0.232929,0.005124,-0.005499,0.249940,0,0);-ms-transform:matrix(0.232929,0.005124,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.232929,0.005124,-0.005499,0.249940,0,0);}
.m10b_c01410{transform:matrix(0.233058,0.005593,-0.005998,0.249928,0,0);-ms-transform:matrix(0.233058,0.005593,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.233058,0.005593,-0.005998,0.249928,0,0);}
.m44_c01410{transform:matrix(0.233104,0.005128,-0.005499,0.249940,0,0);-ms-transform:matrix(0.233104,0.005128,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.233104,0.005128,-0.005499,0.249940,0,0);}
.m88_c01410{transform:matrix(0.233144,0.005129,-0.005499,0.249940,0,0);-ms-transform:matrix(0.233144,0.005129,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.233144,0.005129,-0.005499,0.249940,0,0);}
.ma1_c01410{transform:matrix(0.233164,0.005130,-0.005499,0.249940,0,0);-ms-transform:matrix(0.233164,0.005130,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.233164,0.005130,-0.005499,0.249940,0,0);}
.m82_c01410{transform:matrix(0.233429,0.005135,-0.005499,0.249940,0,0);-ms-transform:matrix(0.233429,0.005135,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.233429,0.005135,-0.005499,0.249940,0,0);}
.m117_c01410{transform:matrix(0.233643,0.004907,-0.005249,0.249945,0,0);-ms-transform:matrix(0.233643,0.004907,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.233643,0.004907,-0.005249,0.249945,0,0);}
.m47_c01410{transform:matrix(0.233723,0.005142,-0.005499,0.249940,0,0);-ms-transform:matrix(0.233723,0.005142,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.233723,0.005142,-0.005499,0.249940,0,0);}
.m40_c01410{transform:matrix(0.234303,0.005155,-0.005499,0.249940,0,0);-ms-transform:matrix(0.234303,0.005155,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.234303,0.005155,-0.005499,0.249940,0,0);}
.mf2_c01410{transform:matrix(0.234622,0.005631,-0.005998,0.249928,0,0);-ms-transform:matrix(0.234622,0.005631,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.234622,0.005631,-0.005998,0.249928,0,0);}
.m21_c01410{transform:matrix(0.234878,0.005167,-0.005499,0.249940,0,0);-ms-transform:matrix(0.234878,0.005167,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.234878,0.005167,-0.005499,0.249940,0,0);}
.m135_c01410{transform:matrix(0.235001,0.006110,-0.006498,0.249916,0,0);-ms-transform:matrix(0.235001,0.006110,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.235001,0.006110,-0.006498,0.249916,0,0);}
.m14_c01410{transform:matrix(0.235023,0.005171,-0.005499,0.249940,0,0);-ms-transform:matrix(0.235023,0.005171,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.235023,0.005171,-0.005499,0.249940,0,0);}
.m112_c01410{transform:matrix(0.235028,0.004936,-0.005249,0.249945,0,0);-ms-transform:matrix(0.235028,0.004936,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.235028,0.004936,-0.005249,0.249945,0,0);}
.md8_c01410{transform:matrix(0.235782,0.005659,-0.005998,0.249928,0,0);-ms-transform:matrix(0.235782,0.005659,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.235782,0.005659,-0.005998,0.249928,0,0);}
.ma9_c01410{transform:matrix(0.236123,0.005195,-0.005499,0.249940,0,0);-ms-transform:matrix(0.236123,0.005195,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.236123,0.005195,-0.005499,0.249940,0,0);}
.ma7_c01410{transform:matrix(0.236343,0.005200,-0.005499,0.249940,0,0);-ms-transform:matrix(0.236343,0.005200,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.236343,0.005200,-0.005499,0.249940,0,0);}
.m1e_c01410{transform:matrix(0.236388,0.005201,-0.005499,0.249940,0,0);-ms-transform:matrix(0.236388,0.005201,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.236388,0.005201,-0.005499,0.249940,0,0);}
.m25_c01410{transform:matrix(0.236668,0.005207,-0.005499,0.249940,0,0);-ms-transform:matrix(0.236668,0.005207,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.236668,0.005207,-0.005499,0.249940,0,0);}
.mff_c01410{transform:matrix(0.236777,0.005683,-0.005998,0.249928,0,0);-ms-transform:matrix(0.236777,0.005683,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.236777,0.005683,-0.005998,0.249928,0,0);}
.m96_c01410{transform:matrix(0.237268,0.005220,-0.005499,0.249940,0,0);-ms-transform:matrix(0.237268,0.005220,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.237268,0.005220,-0.005499,0.249940,0,0);}
.m14f_c01410{transform:matrix(0.237268,0.004983,-0.005249,0.249945,0,0);-ms-transform:matrix(0.237268,0.004983,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.237268,0.004983,-0.005249,0.249945,0,0);}
.mae_c01410{transform:matrix(0.237273,0.005220,-0.005499,0.249940,0,0);-ms-transform:matrix(0.237273,0.005220,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.237273,0.005220,-0.005499,0.249940,0,0);}
.mc2_c01410{transform:matrix(0.237687,0.005704,-0.005998,0.249928,0,0);-ms-transform:matrix(0.237687,0.005704,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.237687,0.005704,-0.005998,0.249928,0,0);}
.mfb_c01410{transform:matrix(0.237906,0.005710,-0.005998,0.249928,0,0);-ms-transform:matrix(0.237906,0.005710,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.237906,0.005710,-0.005998,0.249928,0,0);}
.mbe_c01410{transform:matrix(0.238151,0.005716,-0.005998,0.249928,0,0);-ms-transform:matrix(0.238151,0.005716,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.238151,0.005716,-0.005998,0.249928,0,0);}
.m7_c01410{transform:matrix(0.238197,0.005240,-0.005499,0.249940,0,0);-ms-transform:matrix(0.238197,0.005240,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.238197,0.005240,-0.005499,0.249940,0,0);}
.m11f_c01410{transform:matrix(0.238387,0.005006,-0.005249,0.249945,0,0);-ms-transform:matrix(0.238387,0.005006,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.238387,0.005006,-0.005249,0.249945,0,0);}
.m132_c01410{transform:matrix(0.238454,0.006200,-0.006498,0.249916,0,0);-ms-transform:matrix(0.238454,0.006200,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.238454,0.006200,-0.006498,0.249916,0,0);}
.m19_c01410{transform:matrix(0.238477,0.005247,-0.005499,0.249940,0,0);-ms-transform:matrix(0.238477,0.005247,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.238477,0.005247,-0.005499,0.249940,0,0);}
.m4e_c01410{transform:matrix(0.238582,0.005249,-0.005499,0.249940,0,0);-ms-transform:matrix(0.238582,0.005249,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.238582,0.005249,-0.005499,0.249940,0,0);}
.m12_c01410{transform:matrix(0.238792,0.005253,-0.005499,0.249940,0,0);-ms-transform:matrix(0.238792,0.005253,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.238792,0.005253,-0.005499,0.249940,0,0);}
.mbf_c01410{transform:matrix(0.239026,0.005737,-0.005998,0.249928,0,0);-ms-transform:matrix(0.239026,0.005737,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.239026,0.005737,-0.005998,0.249928,0,0);}
.m11e_c01410{transform:matrix(0.239042,0.005020,-0.005249,0.249945,0,0);-ms-transform:matrix(0.239042,0.005020,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.239042,0.005020,-0.005249,0.249945,0,0);}
.m156_c01410{transform:matrix(0.239067,0.005020,-0.005249,0.249945,0,0);-ms-transform:matrix(0.239067,0.005020,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.239067,0.005020,-0.005249,0.249945,0,0);}
.m6f_c01410{transform:matrix(0.239107,0.005260,-0.005499,0.249940,0,0);-ms-transform:matrix(0.239107,0.005260,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.239107,0.005260,-0.005499,0.249940,0,0);}
.mdd_c01410{transform:matrix(0.239161,0.005740,-0.005998,0.249928,0,0);-ms-transform:matrix(0.239161,0.005740,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.239161,0.005740,-0.005998,0.249928,0,0);}
.maf_c01410{transform:matrix(0.239212,0.005263,-0.005499,0.249940,0,0);-ms-transform:matrix(0.239212,0.005263,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.239212,0.005263,-0.005499,0.249940,0,0);}
.mdf_c01410{transform:matrix(0.239841,0.005756,-0.005998,0.249928,0,0);-ms-transform:matrix(0.239841,0.005756,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.239841,0.005756,-0.005998,0.249928,0,0);}
.m46_c01410{transform:matrix(0.240262,0.005286,-0.005499,0.249940,0,0);-ms-transform:matrix(0.240262,0.005286,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.240262,0.005286,-0.005499,0.249940,0,0);}
.mfd_c01410{transform:matrix(0.240566,0.005774,-0.005998,0.249928,0,0);-ms-transform:matrix(0.240566,0.005774,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.240566,0.005774,-0.005998,0.249928,0,0);}
.m1c_c01410{transform:matrix(0.240577,0.005293,-0.005499,0.249940,0,0);-ms-transform:matrix(0.240577,0.005293,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.240577,0.005293,-0.005499,0.249940,0,0);}
.m119_c01410{transform:matrix(0.240582,0.005052,-0.005249,0.249945,0,0);-ms-transform:matrix(0.240582,0.005052,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.240582,0.005052,-0.005249,0.249945,0,0);}
.m10d_c01410{transform:matrix(0.241086,0.005786,-0.005998,0.249928,0,0);-ms-transform:matrix(0.241086,0.005786,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.241086,0.005786,-0.005998,0.249928,0,0);}
.m10_c01410{transform:matrix(0.241142,0.005305,-0.005499,0.249940,0,0);-ms-transform:matrix(0.241142,0.005305,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.241142,0.005305,-0.005499,0.249940,0,0);}
.mc0_c01410{transform:matrix(0.241191,0.005789,-0.005998,0.249928,0,0);-ms-transform:matrix(0.241191,0.005789,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.241191,0.005789,-0.005998,0.249928,0,0);}
.me1_c01410{transform:matrix(0.241346,0.005792,-0.005998,0.249928,0,0);-ms-transform:matrix(0.241346,0.005792,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.241346,0.005792,-0.005998,0.249928,0,0);}
.m151_c01410{transform:matrix(0.241852,0.005079,-0.005249,0.249945,0,0);-ms-transform:matrix(0.241852,0.005079,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.241852,0.005079,-0.005249,0.249945,0,0);}
.mbd_c01410{transform:matrix(0.242010,0.005808,-0.005998,0.249928,0,0);-ms-transform:matrix(0.242010,0.005808,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.242010,0.005808,-0.005998,0.249928,0,0);}
.md0_c01410{transform:matrix(0.242645,0.005823,-0.005998,0.249928,0,0);-ms-transform:matrix(0.242645,0.005823,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.242645,0.005823,-0.005998,0.249928,0,0);}
.m121_c01410{transform:matrix(0.242951,0.005102,-0.005249,0.249945,0,0);-ms-transform:matrix(0.242951,0.005102,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.242951,0.005102,-0.005249,0.249945,0,0);}
.md2_c01410{transform:matrix(0.243020,0.005832,-0.005998,0.249928,0,0);-ms-transform:matrix(0.243020,0.005832,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.243020,0.005832,-0.005998,0.249928,0,0);}
.m14b_c01410{transform:matrix(0.243241,0.005108,-0.005249,0.249945,0,0);-ms-transform:matrix(0.243241,0.005108,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.243241,0.005108,-0.005249,0.249945,0,0);}
.md7_c01410{transform:matrix(0.243305,0.005839,-0.005998,0.249928,0,0);-ms-transform:matrix(0.243305,0.005839,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.243305,0.005839,-0.005998,0.249928,0,0);}
.m12e_c01410{transform:matrix(0.243618,0.006334,-0.006498,0.249916,0,0);-ms-transform:matrix(0.243618,0.006334,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.243618,0.006334,-0.006498,0.249916,0,0);}
.mca_c01410{transform:matrix(0.244020,0.005856,-0.005998,0.249928,0,0);-ms-transform:matrix(0.244020,0.005856,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.244020,0.005856,-0.005998,0.249928,0,0);}
.mc4_c01410{transform:matrix(0.244535,0.005869,-0.005998,0.249928,0,0);-ms-transform:matrix(0.244535,0.005869,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.244535,0.005869,-0.005998,0.249928,0,0);}
.m116_c01410{transform:matrix(0.244971,0.005144,-0.005249,0.249945,0,0);-ms-transform:matrix(0.244971,0.005144,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.244971,0.005144,-0.005249,0.249945,0,0);}
.mb0_c01410{transform:matrix(0.245166,0.005394,-0.005499,0.249940,0,0);-ms-transform:matrix(0.245166,0.005394,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.245166,0.005394,-0.005499,0.249940,0,0);}
.mda_c01410{transform:matrix(0.245219,0.005885,-0.005998,0.249928,0,0);-ms-transform:matrix(0.245219,0.005885,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.245219,0.005885,-0.005998,0.249928,0,0);}
.m22_c01410{transform:matrix(0.245231,0.005395,-0.005499,0.249940,0,0);-ms-transform:matrix(0.245231,0.005395,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.245231,0.005395,-0.005499,0.249940,0,0);}
.m99_c01410{transform:matrix(0.246370,0.005420,-0.005499,0.249940,0,0);-ms-transform:matrix(0.246370,0.005420,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.246370,0.005420,-0.005499,0.249940,0,0);}
.m37_c01410{transform:matrix(0.246550,0.005424,-0.005499,0.249940,0,0);-ms-transform:matrix(0.246550,0.005424,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.246550,0.005424,-0.005499,0.249940,0,0);}
.mb4_c01410{transform:matrix(0.246659,0.005920,-0.005998,0.249928,0,0);-ms-transform:matrix(0.246659,0.005920,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.246659,0.005920,-0.005998,0.249928,0,0);}
.m42_c01410{transform:matrix(0.247240,0.005439,-0.005499,0.249940,0,0);-ms-transform:matrix(0.247240,0.005439,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.247240,0.005439,-0.005499,0.249940,0,0);}
.m7a_c01410{transform:matrix(0.247340,0.005441,-0.005499,0.249940,0,0);-ms-transform:matrix(0.247340,0.005441,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.247340,0.005441,-0.005499,0.249940,0,0);}
.m3b_c01410{transform:matrix(0.247695,0.005449,-0.005499,0.249940,0,0);-ms-transform:matrix(0.247695,0.005449,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.247695,0.005449,-0.005499,0.249940,0,0);}
.mb7_c01410{transform:matrix(0.247744,0.005946,-0.005998,0.249928,0,0);-ms-transform:matrix(0.247744,0.005946,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.247744,0.005946,-0.005998,0.249928,0,0);}
.m115_c01410{transform:matrix(0.247760,0.005203,-0.005249,0.249945,0,0);-ms-transform:matrix(0.247760,0.005203,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.247760,0.005203,-0.005249,0.249945,0,0);}
.m14e_c01410{transform:matrix(0.248420,0.005217,-0.005249,0.249945,0,0);-ms-transform:matrix(0.248420,0.005217,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.248420,0.005217,-0.005249,0.249945,0,0);}
.m14a_c01410{transform:matrix(0.248855,0.005226,-0.005249,0.249945,0,0);-ms-transform:matrix(0.248855,0.005226,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.248855,0.005226,-0.005249,0.249945,0,0);}
.mf8_c01410{transform:matrix(0.248968,0.005975,-0.005998,0.249928,0,0);-ms-transform:matrix(0.248968,0.005975,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.248968,0.005975,-0.005998,0.249928,0,0);}
.m30_c01410{transform:matrix(0.249535,0.005490,-0.005499,0.249940,0,0);-ms-transform:matrix(0.249535,0.005490,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.249535,0.005490,-0.005499,0.249940,0,0);}
.m154_c01410{transform:matrix(0.249940,0.005249,-0.005249,0.249945,0,0);-ms-transform:matrix(0.249940,0.005249,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.249940,0.005249,-0.005249,0.249945,0,0);}
.mb3_c01410{transform:matrix(0.250083,0.006002,-0.005998,0.249928,0,0);-ms-transform:matrix(0.250083,0.006002,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.250083,0.006002,-0.005998,0.249928,0,0);}
.m16_c01410{transform:matrix(0.250094,0.005502,-0.005499,0.249940,0,0);-ms-transform:matrix(0.250094,0.005502,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.250094,0.005502,-0.005499,0.249940,0,0);}
.m4a_c01410{transform:matrix(0.250779,0.005517,-0.005499,0.249940,0,0);-ms-transform:matrix(0.250779,0.005517,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.250779,0.005517,-0.005499,0.249940,0,0);}
.m94_c01410{transform:matrix(0.251174,0.005526,-0.005499,0.249940,0,0);-ms-transform:matrix(0.251174,0.005526,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.251174,0.005526,-0.005499,0.249940,0,0);}
.m150_c01410{transform:matrix(0.251205,0.005275,-0.005249,0.249945,0,0);-ms-transform:matrix(0.251205,0.005275,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.251205,0.005275,-0.005249,0.249945,0,0);}
.m1b_c01410{transform:matrix(0.251574,0.005535,-0.005499,0.249940,0,0);-ms-transform:matrix(0.251574,0.005535,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.251574,0.005535,-0.005499,0.249940,0,0);}
.m152_c01410{transform:matrix(0.251635,0.005284,-0.005249,0.249945,0,0);-ms-transform:matrix(0.251635,0.005284,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.251635,0.005284,-0.005249,0.249945,0,0);}
.m8c_c01410{transform:matrix(0.251834,0.005540,-0.005499,0.249940,0,0);-ms-transform:matrix(0.251834,0.005540,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.251834,0.005540,-0.005499,0.249940,0,0);}
.mfc_c01410{transform:matrix(0.252477,0.006059,-0.005998,0.249928,0,0);-ms-transform:matrix(0.252477,0.006059,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.252477,0.006059,-0.005998,0.249928,0,0);}
.m3e_c01410{transform:matrix(0.252529,0.005556,-0.005499,0.249940,0,0);-ms-transform:matrix(0.252529,0.005556,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.252529,0.005556,-0.005499,0.249940,0,0);}
.m90_c01410{transform:matrix(0.252914,0.005564,-0.005499,0.249940,0,0);-ms-transform:matrix(0.252914,0.005564,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.252914,0.005564,-0.005499,0.249940,0,0);}
.mb8_c01410{transform:matrix(0.253032,0.006073,-0.005998,0.249928,0,0);-ms-transform:matrix(0.253032,0.006073,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.253032,0.006073,-0.005998,0.249928,0,0);}
.m14c_c01410{transform:matrix(0.253159,0.005316,-0.005249,0.249945,0,0);-ms-transform:matrix(0.253159,0.005316,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.253159,0.005316,-0.005249,0.249945,0,0);}
.mac_c01410{transform:matrix(0.253644,0.005580,-0.005499,0.249940,0,0);-ms-transform:matrix(0.253644,0.005580,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.253644,0.005580,-0.005499,0.249940,0,0);}
.me5_c01410{transform:matrix(0.253797,0.006091,-0.005998,0.249928,0,0);-ms-transform:matrix(0.253797,0.006091,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.253797,0.006091,-0.005998,0.249928,0,0);}
.md9_c01410{transform:matrix(0.254177,0.006100,-0.005998,0.249928,0,0);-ms-transform:matrix(0.254177,0.006100,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.254177,0.006100,-0.005998,0.249928,0,0);}
.mab_c01410{transform:matrix(0.254208,0.005593,-0.005499,0.249940,0,0);-ms-transform:matrix(0.254208,0.005593,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.254208,0.005593,-0.005499,0.249940,0,0);}
.mce_c01410{transform:matrix(0.254397,0.006106,-0.005998,0.249928,0,0);-ms-transform:matrix(0.254397,0.006106,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.254397,0.006106,-0.005998,0.249928,0,0);}
.m136_c01410{transform:matrix(0.255124,0.006633,-0.006498,0.249916,0,0);-ms-transform:matrix(0.255124,0.006633,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.255124,0.006633,-0.006498,0.249916,0,0);}
.mf3_c01410{transform:matrix(0.255506,0.006132,-0.005998,0.249928,0,0);-ms-transform:matrix(0.255506,0.006132,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.255506,0.006132,-0.005998,0.249928,0,0);}
.mc_c01410{transform:matrix(0.255543,0.005622,-0.005499,0.249940,0,0);-ms-transform:matrix(0.255543,0.005622,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.255543,0.005622,-0.005499,0.249940,0,0);}
.md6_c01410{transform:matrix(0.255671,0.006136,-0.005998,0.249928,0,0);-ms-transform:matrix(0.255671,0.006136,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.255671,0.006136,-0.005998,0.249928,0,0);}
.m39_c01410{transform:matrix(0.255798,0.005628,-0.005499,0.249940,0,0);-ms-transform:matrix(0.255798,0.005628,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.255798,0.005628,-0.005499,0.249940,0,0);}
.m130_c01410{transform:matrix(0.256058,0.006658,-0.006498,0.249916,0,0);-ms-transform:matrix(0.256058,0.006658,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.256058,0.006658,-0.006498,0.249916,0,0);}
.mde_c01410{transform:matrix(0.256141,0.006147,-0.005998,0.249928,0,0);-ms-transform:matrix(0.256141,0.006147,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.256141,0.006147,-0.005998,0.249928,0,0);}
.m28_c01410{transform:matrix(0.256478,0.005643,-0.005499,0.249940,0,0);-ms-transform:matrix(0.256478,0.005643,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.256478,0.005643,-0.005499,0.249940,0,0);}
.m23_c01410{transform:matrix(0.256578,0.005645,-0.005499,0.249940,0,0);-ms-transform:matrix(0.256578,0.005645,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.256578,0.005645,-0.005499,0.249940,0,0);}
.m85_c01410{transform:matrix(0.256903,0.005652,-0.005499,0.249940,0,0);-ms-transform:matrix(0.256903,0.005652,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.256903,0.005652,-0.005499,0.249940,0,0);}
.mc3_c01410{transform:matrix(0.256991,0.006168,-0.005998,0.249928,0,0);-ms-transform:matrix(0.256991,0.006168,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.256991,0.006168,-0.005998,0.249928,0,0);}
.m20_c01410{transform:matrix(0.257118,0.005657,-0.005499,0.249940,0,0);-ms-transform:matrix(0.257118,0.005657,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.257118,0.005657,-0.005499,0.249940,0,0);}
.m2a_c01410{transform:matrix(0.257598,0.005667,-0.005499,0.249940,0,0);-ms-transform:matrix(0.257598,0.005667,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.257598,0.005667,-0.005499,0.249940,0,0);}
.m131_c01410{transform:matrix(0.258223,0.006714,-0.006498,0.249916,0,0);-ms-transform:matrix(0.258223,0.006714,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.258223,0.006714,-0.006498,0.249916,0,0);}
.m76_c01410{transform:matrix(0.258522,0.005687,-0.005499,0.249940,0,0);-ms-transform:matrix(0.258522,0.005687,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.258522,0.005687,-0.005499,0.249940,0,0);}
.m5d_c01410{transform:matrix(0.259147,0.005701,-0.005499,0.249940,0,0);-ms-transform:matrix(0.259147,0.005701,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.259147,0.005701,-0.005499,0.249940,0,0);}
.m1f_c01410{transform:matrix(0.259347,0.005706,-0.005499,0.249940,0,0);-ms-transform:matrix(0.259347,0.005706,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.259347,0.005706,-0.005499,0.249940,0,0);}
.m113_c01410{transform:matrix(0.259823,0.005456,-0.005249,0.249945,0,0);-ms-transform:matrix(0.259823,0.005456,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.259823,0.005456,-0.005249,0.249945,0,0);}
.m6_c01410{transform:matrix(0.260197,0.005724,-0.005499,0.249940,0,0);-ms-transform:matrix(0.260197,0.005724,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.260197,0.005724,-0.005499,0.249940,0,0);}
.m41_c01410{transform:matrix(0.261302,0.005749,-0.005499,0.249940,0,0);-ms-transform:matrix(0.261302,0.005749,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.261302,0.005749,-0.005499,0.249940,0,0);}
.m17_c01410{transform:matrix(0.261432,0.005751,-0.005499,0.249940,0,0);-ms-transform:matrix(0.261432,0.005751,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.261432,0.005751,-0.005499,0.249940,0,0);}
.m100_c01410{transform:matrix(0.261685,0.006280,-0.005998,0.249928,0,0);-ms-transform:matrix(0.261685,0.006280,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.261685,0.006280,-0.005998,0.249928,0,0);}
.m3f_c01410{transform:matrix(0.261882,0.005761,-0.005499,0.249940,0,0);-ms-transform:matrix(0.261882,0.005761,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.261882,0.005761,-0.005499,0.249940,0,0);}
.m9_c01410{transform:matrix(0.261967,0.005763,-0.005499,0.249940,0,0);-ms-transform:matrix(0.261967,0.005763,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.261967,0.005763,-0.005499,0.249940,0,0);}
.m92_c01410{transform:matrix(0.262282,0.005770,-0.005499,0.249940,0,0);-ms-transform:matrix(0.262282,0.005770,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.262282,0.005770,-0.005499,0.249940,0,0);}
.m97_c01410{transform:matrix(0.262646,0.005778,-0.005499,0.249940,0,0);-ms-transform:matrix(0.262646,0.005778,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.262646,0.005778,-0.005499,0.249940,0,0);}
.mdb_c01410{transform:matrix(0.262709,0.006305,-0.005998,0.249928,0,0);-ms-transform:matrix(0.262709,0.006305,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.262709,0.006305,-0.005998,0.249928,0,0);}
.m18_c01410{transform:matrix(0.262721,0.005780,-0.005499,0.249940,0,0);-ms-transform:matrix(0.262721,0.005780,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.262721,0.005780,-0.005499,0.249940,0,0);}
.m43_c01410{transform:matrix(0.263001,0.005786,-0.005499,0.249940,0,0);-ms-transform:matrix(0.263001,0.005786,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.263001,0.005786,-0.005499,0.249940,0,0);}
.me2_c01410{transform:matrix(0.263389,0.006321,-0.005998,0.249928,0,0);-ms-transform:matrix(0.263389,0.006321,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.263389,0.006321,-0.005998,0.249928,0,0);}
.m87_c01410{transform:matrix(0.264126,0.005811,-0.005499,0.249940,0,0);-ms-transform:matrix(0.264126,0.005811,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.264126,0.005811,-0.005499,0.249940,0,0);}
.m5c_c01410{transform:matrix(0.264146,0.005811,-0.005499,0.249940,0,0);-ms-transform:matrix(0.264146,0.005811,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.264146,0.005811,-0.005499,0.249940,0,0);}
.mf6_c01410{transform:matrix(0.264469,0.006347,-0.005998,0.249928,0,0);-ms-transform:matrix(0.264469,0.006347,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.264469,0.006347,-0.005998,0.249928,0,0);}
.med_c01410{transform:matrix(0.264849,0.006356,-0.005998,0.249928,0,0);-ms-transform:matrix(0.264849,0.006356,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.264849,0.006356,-0.005998,0.249928,0,0);}
.m133_c01410{transform:matrix(0.266035,0.006917,-0.006498,0.249916,0,0);-ms-transform:matrix(0.266035,0.006917,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.266035,0.006917,-0.006498,0.249916,0,0);}
.m5f_c01410{transform:matrix(0.266061,0.005853,-0.005499,0.249940,0,0);-ms-transform:matrix(0.266061,0.005853,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.266061,0.005853,-0.005499,0.249940,0,0);}
.m1a_c01410{transform:matrix(0.266376,0.005860,-0.005499,0.249940,0,0);-ms-transform:matrix(0.266376,0.005860,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.266376,0.005860,-0.005499,0.249940,0,0);}
.mf4_c01410{transform:matrix(0.266493,0.006396,-0.005998,0.249928,0,0);-ms-transform:matrix(0.266493,0.006396,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.266493,0.006396,-0.005998,0.249928,0,0);}
.m10c_c01410{transform:matrix(0.266713,0.006401,-0.005998,0.249928,0,0);-ms-transform:matrix(0.266713,0.006401,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.266713,0.006401,-0.005998,0.249928,0,0);}
.m15_c01410{transform:matrix(0.267855,0.005893,-0.005499,0.249940,0,0);-ms-transform:matrix(0.267855,0.005893,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.267855,0.005893,-0.005499,0.249940,0,0);}
.m3c_c01410{transform:matrix(0.268370,0.005904,-0.005499,0.249940,0,0);-ms-transform:matrix(0.268370,0.005904,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.268370,0.005904,-0.005499,0.249940,0,0);}
.me0_c01410{transform:matrix(0.268473,0.006443,-0.005998,0.249928,0,0);-ms-transform:matrix(0.268473,0.006443,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.268473,0.006443,-0.005998,0.249928,0,0);}
.mb9_c01410{transform:matrix(0.268543,0.006445,-0.005998,0.249928,0,0);-ms-transform:matrix(0.268543,0.006445,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.268543,0.006445,-0.005998,0.249928,0,0);}
.ma4_c01410{transform:matrix(0.269085,0.005920,-0.005499,0.249940,0,0);-ms-transform:matrix(0.269085,0.005920,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.269085,0.005920,-0.005499,0.249940,0,0);}
.me4_c01410{transform:matrix(0.269322,0.006464,-0.005998,0.249928,0,0);-ms-transform:matrix(0.269322,0.006464,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.269322,0.006464,-0.005998,0.249928,0,0);}
.mb5_c01410{transform:matrix(0.269457,0.006467,-0.005998,0.249928,0,0);-ms-transform:matrix(0.269457,0.006467,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.269457,0.006467,-0.005998,0.249928,0,0);}
.m11a_c01410{transform:matrix(0.269476,0.005659,-0.005249,0.249945,0,0);-ms-transform:matrix(0.269476,0.005659,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.269476,0.005659,-0.005249,0.249945,0,0);}
.m8e_c01410{transform:matrix(0.272284,0.005990,-0.005499,0.249940,0,0);-ms-transform:matrix(0.272284,0.005990,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.272284,0.005990,-0.005499,0.249940,0,0);}
.m13_c01410{transform:matrix(0.272699,0.005999,-0.005499,0.249940,0,0);-ms-transform:matrix(0.272699,0.005999,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.272699,0.005999,-0.005499,0.249940,0,0);}
.m12f_c01410{transform:matrix(0.273453,0.007110,-0.006498,0.249916,0,0);-ms-transform:matrix(0.273453,0.007110,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.273453,0.007110,-0.006498,0.249916,0,0);}
.m51_c01410{transform:matrix(0.274354,0.006036,-0.005499,0.249940,0,0);-ms-transform:matrix(0.274354,0.006036,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.274354,0.006036,-0.005499,0.249940,0,0);}
.m24_c01410{transform:matrix(0.274404,0.006037,-0.005499,0.249940,0,0);-ms-transform:matrix(0.274404,0.006037,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.274404,0.006037,-0.005499,0.249940,0,0);}
.m11b_c01410{transform:matrix(0.274429,0.005763,-0.005249,0.249945,0,0);-ms-transform:matrix(0.274429,0.005763,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.274429,0.005763,-0.005249,0.249945,0,0);}
.m3a_c01410{transform:matrix(0.274624,0.006042,-0.005499,0.249940,0,0);-ms-transform:matrix(0.274624,0.006042,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.274624,0.006042,-0.005499,0.249940,0,0);}
.m65_c01410{transform:matrix(0.275068,0.006052,-0.005499,0.249940,0,0);-ms-transform:matrix(0.275068,0.006052,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.275068,0.006052,-0.005499,0.249940,0,0);}
.m134_c01410{transform:matrix(0.276102,0.007179,-0.006498,0.249916,0,0);-ms-transform:matrix(0.276102,0.007179,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.276102,0.007179,-0.006498,0.249916,0,0);}
.m38_c01410{transform:matrix(0.276188,0.006076,-0.005499,0.249940,0,0);-ms-transform:matrix(0.276188,0.006076,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.276188,0.006076,-0.005499,0.249940,0,0);}
.mfe_c01410{transform:matrix(0.276395,0.006633,-0.005998,0.249928,0,0);-ms-transform:matrix(0.276395,0.006633,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.276395,0.006633,-0.005998,0.249928,0,0);}
.m118_c01410{transform:matrix(0.276839,0.005814,-0.005249,0.249945,0,0);-ms-transform:matrix(0.276839,0.005814,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.276839,0.005814,-0.005249,0.249945,0,0);}
.m27_c01410{transform:matrix(0.277903,0.006114,-0.005499,0.249940,0,0);-ms-transform:matrix(0.277903,0.006114,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.277903,0.006114,-0.005499,0.249940,0,0);}
.m138_c01410{transform:matrix(0.278321,0.007236,-0.006498,0.249916,0,0);-ms-transform:matrix(0.278321,0.007236,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.278321,0.007236,-0.006498,0.249916,0,0);}
.m60_c01410{transform:matrix(0.279022,0.006138,-0.005499,0.249940,0,0);-ms-transform:matrix(0.279022,0.006138,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.279022,0.006138,-0.005499,0.249940,0,0);}
.mcc_c01410{transform:matrix(0.279619,0.006711,-0.005998,0.249928,0,0);-ms-transform:matrix(0.279619,0.006711,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.279619,0.006711,-0.005998,0.249928,0,0);}
.mb6_c01410{transform:matrix(0.280674,0.006736,-0.005998,0.249928,0,0);-ms-transform:matrix(0.280674,0.006736,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.280674,0.006736,-0.005998,0.249928,0,0);}
.m137_c01410{transform:matrix(0.280730,0.007299,-0.006498,0.249916,0,0);-ms-transform:matrix(0.280730,0.007299,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.280730,0.007299,-0.006498,0.249916,0,0);}
.m69_c01410{transform:matrix(0.281067,0.006183,-0.005499,0.249940,0,0);-ms-transform:matrix(0.281067,0.006183,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.281067,0.006183,-0.005499,0.249940,0,0);}
.mf9_c01410{transform:matrix(0.282324,0.006776,-0.005998,0.249928,0,0);-ms-transform:matrix(0.282324,0.006776,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.282324,0.006776,-0.005998,0.249928,0,0);}
.mc7_c01410{transform:matrix(0.282714,0.006785,-0.005998,0.249928,0,0);-ms-transform:matrix(0.282714,0.006785,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.282714,0.006785,-0.005998,0.249928,0,0);}
.m45_c01410{transform:matrix(0.283087,0.006228,-0.005499,0.249940,0,0);-ms-transform:matrix(0.283087,0.006228,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.283087,0.006228,-0.005499,0.249940,0,0);}
.mba_c01410{transform:matrix(0.283703,0.006809,-0.005998,0.249928,0,0);-ms-transform:matrix(0.283703,0.006809,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.283703,0.006809,-0.005998,0.249928,0,0);}
.m1d_c01410{transform:matrix(0.284406,0.006257,-0.005499,0.249940,0,0);-ms-transform:matrix(0.284406,0.006257,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.284406,0.006257,-0.005499,0.249940,0,0);}
.m62_c01410{transform:matrix(0.284861,0.006267,-0.005499,0.249940,0,0);-ms-transform:matrix(0.284861,0.006267,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.284861,0.006267,-0.005499,0.249940,0,0);}
.m70_c01410{transform:matrix(0.284991,0.006270,-0.005499,0.249940,0,0);-ms-transform:matrix(0.284991,0.006270,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.284991,0.006270,-0.005499,0.249940,0,0);}
.m29_c01410{transform:matrix(0.286266,0.006298,-0.005499,0.249940,0,0);-ms-transform:matrix(0.286266,0.006298,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.286266,0.006298,-0.005499,0.249940,0,0);}
.m64_c01410{transform:matrix(0.292259,0.006430,-0.005499,0.249940,0,0);-ms-transform:matrix(0.292259,0.006430,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.292259,0.006430,-0.005499,0.249940,0,0);}
.md_c01410{transform:matrix(0.293324,0.006453,-0.005499,0.249940,0,0);-ms-transform:matrix(0.293324,0.006453,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.293324,0.006453,-0.005499,0.249940,0,0);}
.mbc_c01410{transform:matrix(0.293570,0.007046,-0.005998,0.249928,0,0);-ms-transform:matrix(0.293570,0.007046,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.293570,0.007046,-0.005998,0.249928,0,0);}
.m3d_c01410{transform:matrix(0.296428,0.006521,-0.005499,0.249940,0,0);-ms-transform:matrix(0.296428,0.006521,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.296428,0.006521,-0.005499,0.249940,0,0);}
.m63_c01410{transform:matrix(0.297508,0.006545,-0.005499,0.249940,0,0);-ms-transform:matrix(0.297508,0.006545,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.297508,0.006545,-0.005499,0.249940,0,0);}
.m114_c01410{transform:matrix(0.300619,0.006313,-0.005249,0.249945,0,0);-ms-transform:matrix(0.300619,0.006313,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.300619,0.006313,-0.005249,0.249945,0,0);}
.me3_c01410{transform:matrix(0.302238,0.007254,-0.005998,0.249928,0,0);-ms-transform:matrix(0.302238,0.007254,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.302238,0.007254,-0.005998,0.249928,0,0);}
.m139_c01410{transform:matrix(0.302703,0.007870,-0.006498,0.249916,0,0);-ms-transform:matrix(0.302703,0.007870,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.302703,0.007870,-0.006498,0.249916,0,0);}
.mc5_c01410{transform:matrix(0.306627,0.007359,-0.005998,0.249928,0,0);-ms-transform:matrix(0.306627,0.007359,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.306627,0.007359,-0.005998,0.249928,0,0);}
.m5_c01410{transform:matrix(0.314835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314835,0.000000,0.000000,0.250000,0,0);}
.m11c_c01410{transform:matrix(0.317375,0.006665,-0.005249,0.249945,0,0);-ms-transform:matrix(0.317375,0.006665,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.317375,0.006665,-0.005249,0.249945,0,0);}
.mcb_c01410{transform:matrix(0.322627,0.007743,-0.005998,0.249928,0,0);-ms-transform:matrix(0.322627,0.007743,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.322627,0.007743,-0.005998,0.249928,0,0);}
.mc8_c01410{transform:matrix(0.329065,0.007898,-0.005998,0.249928,0,0);-ms-transform:matrix(0.329065,0.007898,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.329065,0.007898,-0.005998,0.249928,0,0);}
.m4_c01410{transform:matrix(0.339750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339750,0.000000,0.000000,0.250000,0,0);}
.mc6_c01410{transform:matrix(0.386199,0.009269,-0.005998,0.249928,0,0);-ms-transform:matrix(0.386199,0.009269,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.386199,0.009269,-0.005998,0.249928,0,0);}
.ma3_c01410{transform:matrix(0.396579,0.008725,-0.005499,0.249940,0,0);-ms-transform:matrix(0.396579,0.008725,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.396579,0.008725,-0.005499,0.249940,0,0);}
.md4_c01410{transform:matrix(0.401984,0.009648,-0.005998,0.249928,0,0);-ms-transform:matrix(0.401984,0.009648,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.401984,0.009648,-0.005998,0.249928,0,0);}
.m1_c01410{transform:matrix(0.491350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.491350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.491350,0.000000,0.000000,0.250000,0,0);}
.m2_c01410{transform:matrix(1.343400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.343400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.343400,0.000000,0.000000,0.250000,0,0);}
.m0_c01410{transform:matrix(6.796655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(6.796655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(6.796655,0.000000,0.000000,0.250000,0,0);}
.v0_c01410{vertical-align:0.000000px;}
.ls0_c01410{letter-spacing:0.000000px;}
.sc__c01410{text-shadow:none;}
.sc0_c01410{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__c01410{-webkit-text-stroke:0px transparent;}
.sc0_c01410{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01410{word-spacing:0.000000px;}
.fc0_c01410{color:transparent;}
.fs0_c01410{font-size:18.000000px;}
.fsa_c01410{font-size:72.015874px;}
.fs3_c01410{font-size:72.017422px;}
.fs6_c01410{font-size:72.020733px;}
.fsd_c01410{font-size:72.024332px;}
.fsb_c01410{font-size:78.017197px;}
.fs2_c01410{font-size:78.018874px;}
.fs7_c01410{font-size:78.022461px;}
.fs1_c01410{font-size:84.000000px;}
.fs4_c01410{font-size:84.020326px;}
.fs9_c01410{font-size:84.024189px;}
.fs8_c01410{font-size:90.025916px;}
.fsc_c01410{font-size:90.030415px;}
.fs5_c01410{font-size:96.023229px;}
.fse_c01410{font-size:96.032443px;}
.y0_c01410{bottom:0.000000px;}
.y158_c01410{bottom:60.906169px;}
.y157_c01410{bottom:61.635918px;}
.y156_c01410{bottom:63.566329px;}
.y155_c01410{bottom:64.302724px;}
.y154_c01410{bottom:66.233010px;}
.y153_c01410{bottom:67.925554px;}
.y152_c01410{bottom:69.120453px;}
.y151_c01410{bottom:95.843779px;}
.y150_c01410{bottom:96.546481px;}
.y14f_c01410{bottom:98.378332px;}
.y14e_c01410{bottom:99.087271px;}
.y14d_c01410{bottom:100.936353px;}
.y14c_c01410{bottom:102.552429px;}
.y14b_c01410{bottom:103.687500px;}
.y14a_c01410{bottom:141.049323px;}
.y149_c01410{bottom:141.762861px;}
.y148_c01410{bottom:143.433222px;}
.y147_c01410{bottom:144.436581px;}
.y146_c01410{bottom:145.402650px;}
.y145_c01410{bottom:146.338977px;}
.y144_c01410{bottom:146.868069px;}
.y143_c01410{bottom:147.581430px;}
.y142_c01410{bottom:149.000937px;}
.y141_c01410{bottom:149.715567px;}
.y140_c01410{bottom:150.483753px;}
.y13f_c01410{bottom:151.889607px;}
.y13e_c01410{bottom:152.387922px;}
.y13d_c01410{bottom:154.089060px;}
.y13c_c01410{bottom:154.562703px;}
.y13b_c01410{bottom:155.503203px;}
.y13a_c01410{bottom:179.138277px;}
.y139_c01410{bottom:181.190178px;}
.y138_c01410{bottom:182.182545px;}
.y137_c01410{bottom:183.439347px;}
.y136_c01410{bottom:184.209561px;}
.y135_c01410{bottom:186.459081px;}
.y134_c01410{bottom:187.763859px;}
.y133_c01410{bottom:188.509500px;}
.y132_c01410{bottom:189.999807px;}
.y131_c01410{bottom:191.260296px;}
.y130_c01410{bottom:191.751039px;}
.y12f_c01410{bottom:192.772641px;}
.y12e_c01410{bottom:214.506468px;}
.y12d_c01410{bottom:215.915187px;}
.y12c_c01410{bottom:218.197740px;}
.y12b_c01410{bottom:219.922983px;}
.y12a_c01410{bottom:220.768035px;}
.y129_c01410{bottom:221.602947px;}
.y128_c01410{bottom:224.488284px;}
.y127_c01410{bottom:226.170432px;}
.y126_c01410{bottom:227.361960px;}
.y125_c01410{bottom:227.895285px;}
.y124_c01410{bottom:228.429000px;}
.y123_c01410{bottom:295.509161px;}
.y122_c01410{bottom:297.499275px;}
.y121_c01410{bottom:298.323204px;}
.y120_c01410{bottom:299.943221px;}
.y11f_c01410{bottom:301.320747px;}
.y11e_c01410{bottom:321.023693px;}
.y11d_c01410{bottom:323.796795px;}
.y11c_c01410{bottom:325.390443px;}
.y11b_c01410{bottom:327.261480px;}
.y11a_c01410{bottom:327.941975px;}
.y119_c01410{bottom:329.790710px;}
.y118_c01410{bottom:330.482639px;}
.y117_c01410{bottom:331.413149px;}
.y116_c01410{bottom:332.099439px;}
.y115_c01410{bottom:333.216650px;}
.y114_c01410{bottom:334.379346px;}
.y113_c01410{bottom:335.076000px;}
.y112_c01410{bottom:355.485492px;}
.y111_c01410{bottom:356.478660px;}
.y110_c01410{bottom:357.194352px;}
.y10f_c01410{bottom:357.651348px;}
.y10e_c01410{bottom:358.392660px;}
.y10d_c01410{bottom:359.372604px;}
.y10c_c01410{bottom:360.597024px;}
.y10b_c01410{bottom:361.275684px;}
.y10a_c01410{bottom:362.524140px;}
.y109_c01410{bottom:363.919368px;}
.y108_c01410{bottom:364.446540px;}
.y107_c01410{bottom:365.891376px;}
.y106_c01410{bottom:366.622776px;}
.y105_c01410{bottom:368.767632px;}
.y104_c01410{bottom:369.516972px;}
.y103_c01410{bottom:370.221540px;}
.y102_c01410{bottom:370.924200px;}
.y101_c01410{bottom:391.180620px;}
.y100_c01410{bottom:392.174676px;}
.yff_c01410{bottom:393.981348px;}
.yfe_c01410{bottom:394.729836px;}
.yfd_c01410{bottom:395.474976px;}
.yfc_c01410{bottom:396.244992px;}
.yfb_c01410{bottom:396.681576px;}
.yfa_c01410{bottom:398.253744px;}
.yf9_c01410{bottom:399.491820px;}
.yf8_c01410{bottom:400.272684px;}
.yf7_c01410{bottom:402.026172px;}
.yf6_c01410{bottom:402.801768px;}
.yf5_c01410{bottom:405.063540px;}
.yf4_c01410{bottom:406.571604px;}
.yf3_c01410{bottom:429.142452px;}
.yf2_c01410{bottom:429.892188px;}
.yf1_c01410{bottom:430.675872px;}
.yf0_c01410{bottom:432.808440px;}
.yef_c01410{bottom:433.838940px;}
.yee_c01410{bottom:435.144300px;}
.yed_c01410{bottom:435.945732px;}
.yec_c01410{bottom:436.748856px;}
.yeb_c01410{bottom:439.621152px;}
.yea_c01410{bottom:440.424924px;}
.ye9_c01410{bottom:441.215412px;}
.ye8_c01410{bottom:443.042556px;}
.ye7_c01410{bottom:444.112080px;}
.ye6_c01410{bottom:464.295912px;}
.ye5_c01410{bottom:465.722436px;}
.ye4_c01410{bottom:466.473360px;}
.ye3_c01410{bottom:467.885520px;}
.ye2_c01410{bottom:468.653232px;}
.ye1_c01410{bottom:470.097120px;}
.ye0_c01410{bottom:470.815704px;}
.ydf_c01410{bottom:472.253544px;}
.yde_c01410{bottom:472.984800px;}
.ydd_c01410{bottom:473.689944px;}
.ydc_c01410{bottom:474.933852px;}
.ydb_c01410{bottom:476.111076px;}
.yda_c01410{bottom:477.341544px;}
.yd9_c01410{bottom:478.054464px;}
.yd8_c01410{bottom:479.224920px;}
.yd7_c01410{bottom:500.912364px;}
.yd6_c01410{bottom:501.612108px;}
.yd5_c01410{bottom:502.755228px;}
.yd4_c01410{bottom:503.666676px;}
.yd3_c01410{bottom:505.277640px;}
.yd2_c01410{bottom:506.203680px;}
.yd1_c01410{bottom:507.155856px;}
.yd0_c01410{bottom:507.764988px;}
.ycf_c01410{bottom:508.747536px;}
.yce_c01410{bottom:509.629320px;}
.ycd_c01410{bottom:510.146184px;}
.ycc_c01410{bottom:510.854856px;}
.ycb_c01410{bottom:512.188272px;}
.yca_c01410{bottom:513.099720px;}
.yc9_c01410{bottom:514.068504px;}
.yc8_c01410{bottom:535.179192px;}
.yc7_c01410{bottom:537.163692px;}
.yc6_c01410{bottom:538.479672px;}
.yc5_c01410{bottom:540.267468px;}
.yc4_c01410{bottom:541.881456px;}
.yc3_c01410{bottom:544.253388px;}
.yc2_c01410{bottom:545.569080px;}
.yc1_c01410{bottom:546.353556px;}
.yc0_c01410{bottom:547.928988px;}
.ybf_c01410{bottom:549.238668px;}
.ybe_c01410{bottom:549.757392px;}
.ybd_c01410{bottom:551.335740px;}
.ybc_c01410{bottom:573.046032px;}
.ybb_c01410{bottom:573.510864px;}
.yba_c01410{bottom:575.119344px;}
.yb9_c01410{bottom:576.729768px;}
.yb8_c01410{bottom:577.507620px;}
.yb7_c01410{bottom:578.330328px;}
.yb6_c01410{bottom:580.942092px;}
.yb5_c01410{bottom:583.009536px;}
.yb4_c01410{bottom:584.086296px;}
.yb3_c01410{bottom:584.598540px;}
.yb2_c01410{bottom:585.097500px;}
.yb1_c01410{bottom:682.402008px;}
.yb0_c01410{bottom:684.090369px;}
.yaf_c01410{bottom:684.765564px;}
.yae_c01410{bottom:686.132670px;}
.yad_c01410{bottom:687.295728px;}
.yac_c01410{bottom:687.776280px;}
.yab_c01410{bottom:690.301989px;}
.yaa_c01410{bottom:691.912944px;}
.ya9_c01410{bottom:713.922486px;}
.ya8_c01410{bottom:715.621770px;}
.ya7_c01410{bottom:716.313780px;}
.ya6_c01410{bottom:718.145862px;}
.ya5_c01410{bottom:718.837740px;}
.ya4_c01410{bottom:719.768418px;}
.ya3_c01410{bottom:720.394293px;}
.ya2_c01410{bottom:722.051715px;}
.ya1_c01410{bottom:722.742867px;}
.ya0_c01410{bottom:724.382286px;}
.y9f_c01410{bottom:725.062812px;}
.y9e_c01410{bottom:725.714643px;}
.y9d_c01410{bottom:726.422592px;}
.y9c_c01410{bottom:727.829895px;}
.y9b_c01410{bottom:747.773919px;}
.y9a_c01410{bottom:748.561908px;}
.y99_c01410{bottom:749.575971px;}
.y98_c01410{bottom:751.612956px;}
.y97_c01410{bottom:752.332209px;}
.y96_c01410{bottom:753.619962px;}
.y95_c01410{bottom:755.083614px;}
.y94_c01410{bottom:755.646504px;}
.y93_c01410{bottom:757.400097px;}
.y92_c01410{bottom:758.164080px;}
.y91_c01410{bottom:761.666499px;}
.y90_c01410{bottom:762.436686px;}
.y8f_c01410{bottom:763.209315px;}
.y8e_c01410{bottom:783.514128px;}
.y8d_c01410{bottom:784.529775px;}
.y8c_c01410{bottom:785.274915px;}
.y8b_c01410{bottom:787.060104px;}
.y8a_c01410{bottom:787.796781px;}
.y89_c01410{bottom:788.330253px;}
.y88_c01410{bottom:789.810156px;}
.y87_c01410{bottom:790.847565px;}
.y86_c01410{bottom:793.896006px;}
.y85_c01410{bottom:794.629053px;}
.y84_c01410{bottom:797.154747px;}
.y83_c01410{bottom:797.903286px;}
.y82_c01410{bottom:799.392726px;}
.y81_c01410{bottom:821.894442px;}
.y80_c01410{bottom:822.598200px;}
.y7f_c01410{bottom:823.738998px;}
.y7e_c01410{bottom:824.691819px;}
.y7d_c01410{bottom:825.138495px;}
.y7c_c01410{bottom:826.738956px;}
.y7b_c01410{bottom:827.442483px;}
.y7a_c01410{bottom:829.286181px;}
.y79_c01410{bottom:830.215506px;}
.y78_c01410{bottom:831.093249px;}
.y77_c01410{bottom:832.478787px;}
.y76_c01410{bottom:833.169048px;}
.y75_c01410{bottom:833.653329px;}
.y74_c01410{bottom:835.044180px;}
.y73_c01410{bottom:856.423743px;}
.y72_c01410{bottom:857.160501px;}
.y71_c01410{bottom:857.871948px;}
.y70_c01410{bottom:859.103442px;}
.y6f_c01410{bottom:859.568874px;}
.y6e_c01410{bottom:861.984441px;}
.y6d_c01410{bottom:862.721463px;}
.y6c_c01410{bottom:863.670180px;}
.y6b_c01410{bottom:865.353279px;}
.y6a_c01410{bottom:866.090169px;}
.y69_c01410{bottom:866.807688px;}
.y68_c01410{bottom:867.291732px;}
.y67_c01410{bottom:868.272525px;}
.y66_c01410{bottom:869.185899px;}
.y65_c01410{bottom:869.714823px;}
.y64_c01410{bottom:870.421650px;}
.y63_c01410{bottom:894.829866px;}
.y62_c01410{bottom:895.502388px;}
.y61_c01410{bottom:897.159480px;}
.y60_c01410{bottom:899.648079px;}
.y5f_c01410{bottom:901.050003px;}
.y5e_c01410{bottom:903.129894px;}
.y5d_c01410{bottom:904.294074px;}
.y5c_c01410{bottom:904.957785px;}
.y5b_c01410{bottom:906.341442px;}
.y5a_c01410{bottom:907.498197px;}
.y59_c01410{bottom:907.954857px;}
.y58_c01410{bottom:929.780628px;}
.y57_c01410{bottom:930.974931px;}
.y56_c01410{bottom:932.379444px;}
.y55_c01410{bottom:933.872562px;}
.y54_c01410{bottom:934.581204px;}
.y53_c01410{bottom:935.323275px;}
.y52_c01410{bottom:937.735377px;}
.y51_c01410{bottom:939.636639px;}
.y50_c01410{bottom:940.635351px;}
.y4f_c01410{bottom:964.780722px;}
.y4e_c01410{bottom:965.450472px;}
.y4d_c01410{bottom:966.856125px;}
.y4c_c01410{bottom:967.990983px;}
.y4b_c01410{bottom:968.704626px;}
.y4a_c01410{bottom:970.075050px;}
.y49_c01410{bottom:970.762011px;}
.y48_c01410{bottom:972.606204px;}
.y47_c01410{bottom:973.315539px;}
.y46_c01410{bottom:974.677200px;}
.y45_c01410{bottom:976.038729px;}
.y44_c01410{bottom:976.519776px;}
.y43_c01410{bottom:977.432814px;}
.y42_c01410{bottom:977.902938px;}
.y41_c01410{bottom:999.339549px;}
.y40_c01410{bottom:999.823797px;}
.y3f_c01410{bottom:1000.987977px;}
.y3e_c01410{bottom:1001.679855px;}
.y3d_c01410{bottom:1003.069221px;}
.y3c_c01410{bottom:1003.510188px;}
.y3b_c01410{bottom:1004.206191px;}
.y3a_c01410{bottom:1005.830232px;}
.y39_c01410{bottom:1006.287519px;}
.y38_c01410{bottom:1008.121218px;}
.y37_c01410{bottom:1009.053546px;}
.y36_c01410{bottom:1011.558315px;}
.y35_c01410{bottom:1012.742742px;}
.y34_c01410{bottom:1035.596475px;}
.y33_c01410{bottom:1036.282545px;}
.y32_c01410{bottom:1036.956486px;}
.y31_c01410{bottom:1038.104214px;}
.y30_c01410{bottom:1039.289136px;}
.y2f_c01410{bottom:1039.973226px;}
.y2e_c01410{bottom:1040.892402px;}
.y1_c01410{bottom:1042.740000px;}
.y2d_c01410{bottom:1044.417069px;}
.y2c_c01410{bottom:1046.166879px;}
.y2b_c01410{bottom:1046.893029px;}
.y2a_c01410{bottom:1047.362196px;}
.y29_c01410{bottom:1048.486065px;}
.y28_c01410{bottom:1049.199972px;}
.y27_c01410{bottom:1070.765211px;}
.y26_c01410{bottom:1074.004827px;}
.y25_c01410{bottom:1075.366488px;}
.y24_c01410{bottom:1077.475800px;}
.y23_c01410{bottom:1078.115502px;}
.y22_c01410{bottom:1078.608183px;}
.y21_c01410{bottom:1080.470445px;}
.y20_c01410{bottom:1081.626936px;}
.y1f_c01410{bottom:1082.727291px;}
.y1e_c01410{bottom:1083.666978px;}
.y1d_c01410{bottom:1084.846734px;}
.y1c_c01410{bottom:1106.160861px;}
.y1b_c01410{bottom:1106.847195px;}
.y1a_c01410{bottom:1109.148972px;}
.y19_c01410{bottom:1109.848143px;}
.y18_c01410{bottom:1111.209177px;}
.y17_c01410{bottom:1112.604978px;}
.y16_c01410{bottom:1113.318885px;}
.y15_c01410{bottom:1114.465260px;}
.y14_c01410{bottom:1115.400393px;}
.y13_c01410{bottom:1115.835420px;}
.y12_c01410{bottom:1117.448256px;}
.y11_c01410{bottom:1118.151651px;}
.y10_c01410{bottom:1120.226592px;}
.yf_c01410{bottom:1141.918884px;}
.ye_c01410{bottom:1142.844270px;}
.yd_c01410{bottom:1144.319502px;}
.yc_c01410{bottom:1145.048637px;}
.yb_c01410{bottom:1146.017286px;}
.ya_c01410{bottom:1147.481826px;}
.y9_c01410{bottom:1149.179478px;}
.y8_c01410{bottom:1149.886437px;}
.y7_c01410{bottom:1150.603692px;}
.y6_c01410{bottom:1152.566235px;}
.y5_c01410{bottom:1153.279068px;}
.y4_c01410{bottom:1154.247915px;}
.y3_c01410{bottom:1156.417500px;}
.y2_c01410{bottom:1220.802000px;}
.h2_c01410{height:18.000000px;}
.hc_c01410{height:72.015874px;}
.h5_c01410{height:72.017422px;}
.h8_c01410{height:72.020733px;}
.hf_c01410{height:72.024332px;}
.hd_c01410{height:78.017197px;}
.h4_c01410{height:78.018874px;}
.h9_c01410{height:78.022461px;}
.h3_c01410{height:84.000000px;}
.h6_c01410{height:84.020326px;}
.hb_c01410{height:84.024189px;}
.ha_c01410{height:90.025916px;}
.he_c01410{height:90.030415px;}
.h7_c01410{height:96.023229px;}
.h10_c01410{height:96.032443px;}
.h1_c01410{height:1250.250000px;}
.h0_c01410{height:1250.370000px;}
.w1_c01410{width:907.500000px;}
.w0_c01410{width:907.740000px;}
.x0_c01410{left:0.000000px;}
.x2_c01410{left:34.830000px;}
.x1_c01410{left:37.800000px;}
.xed_c01410{left:126.031500px;}
.xda_c01410{left:128.497785px;}
.xcb_c01410{left:130.936500px;}
.xa7_c01410{left:133.433100px;}
.xa0_c01410{left:136.089528px;}
.x88_c01410{left:138.500844px;}
.x7e_c01410{left:139.669380px;}
.x66_c01410{left:141.392316px;}
.x51_c01410{left:143.192946px;}
.x31_c01410{left:144.980529px;}
.x1e_c01410{left:146.680872px;}
.x6_c01410{left:148.402500px;}
.x52_c01410{left:164.973441px;}
.x3d_c01410{left:167.188830px;}
.xe2_c01410{left:171.396978px;}
.x7f_c01410{left:173.288154px;}
.x5b_c01410{left:174.914418px;}
.xb5_c01410{left:177.606888px;}
.x27_c01410{left:180.086985px;}
.xd1_c01410{left:185.712683px;}
.xad_c01410{left:188.686068px;}
.xe3_c01410{left:192.904701px;}
.xdb_c01410{left:194.285433px;}
.xc0_c01410{left:197.295624px;}
.x5c_c01410{left:198.956418px;}
.x32_c01410{left:201.410283px;}
.x1f_c01410{left:202.830093px;}
.x89_c01410{left:205.538829px;}
.x67_c01410{left:207.614268px;}
.x3e_c01410{left:210.668787px;}
.x93_c01410{left:214.935606px;}
.x53_c01410{left:220.077162px;}
.xae_c01410{left:221.080116px;}
.xa1_c01410{left:223.467528px;}
.x68_c01410{left:230.650263px;}
.x28_c01410{left:233.627673px;}
.x73_c01410{left:239.308020px;}
.x5d_c01410{left:240.473418px;}
.x7_c01410{left:247.020000px;}
.xdc_c01410{left:249.116223px;}
.xd2_c01410{left:250.493733px;}
.x49_c01410{left:252.987684px;}
.x29_c01410{left:255.976668px;}
.xee_c01410{left:257.038500px;}
.xd4_c01410{left:260.455500px;}
.x69_c01410{left:263.526489px;}
.x98_c01410{left:268.326000px;}
.x8a_c01410{left:270.280248px;}
.xcc_c01410{left:272.677500px;}
.xaf_c01410{left:276.977280px;}
.xa2_c01410{left:278.037528px;}
.x13_c01410{left:279.711114px;}
.xd5_c01410{left:280.968000px;}
.xd3_c01410{left:283.439961px;}
.x54_c01410{left:285.972114px;}
.x99_c01410{left:289.669500px;}
.x8_c01410{left:291.058500px;}
.xe4_c01410{left:292.855575px;}
.xba_c01410{left:296.722236px;}
.x3f_c01410{left:298.378701px;}
.x20_c01410{left:299.993238px;}
.x8b_c01410{left:302.713974px;}
.xcd_c01410{left:305.358000px;}
.x5e_c01410{left:307.056918px;}
.xdd_c01410{left:313.940793px;}
.x55_c01410{left:317.573307px;}
.x33_c01410{left:320.652390px;}
.x9_c01410{left:323.460000px;}
.xd6_c01410{left:326.796000px;}
.x6a_c01410{left:329.506941px;}
.x94_c01410{left:335.197746px;}
.x5f_c01410{left:339.671418px;}
.xa3_c01410{left:343.680528px;}
.xa8_c01410{left:344.789292px;}
.xde_c01410{left:346.371828px;}
.x74_c01410{left:349.132611px;}
.x21_c01410{left:355.084959px;}
.x14_c01410{left:356.500797px;}
.x95_c01410{left:358.064241px;}
.x80_c01410{left:359.107095px;}
.xc1_c01410{left:362.057508px;}
.x40_c01410{left:363.205620px;}
.x34_c01410{left:365.077380px;}
.x6b_c01410{left:371.314365px;}
.x2a_c01410{left:373.909275px;}
.x15_c01410{left:377.229759px;}
.xef_c01410{left:378.849000px;}
.x75_c01410{left:381.020418px;}
.xce_c01410{left:382.617000px;}
.x4a_c01410{left:384.804684px;}
.xa9_c01410{left:386.783316px;}
.x81_c01410{left:392.332869px;}
.x41_c01410{left:396.948846px;}
.x3_c01410{left:402.570000px;}
.xbb_c01410{left:406.665864px;}
.xa_c01410{left:412.666500px;}
.x8c_c01410{left:413.696916px;}
.x6c_c01410{left:415.602855px;}
.xb0_c01410{left:419.058084px;}
.x9a_c01410{left:420.678000px;}
.x16_c01410{left:421.782249px;}
.xe5_c01410{left:424.164225px;}
.x4_c01410{left:426.060000px;}
.xc2_c01410{left:427.762176px;}
.xa4_c01410{left:431.187528px;}
.xaa_c01410{left:433.538664px;}
.xb6_c01410{left:439.844388px;}
.x22_c01410{left:443.757906px;}
.xb_c01410{left:445.269000px;}
.x60_c01410{left:449.670918px;}
.x35_c01410{left:452.383794px;}
.xab_c01410{left:462.546252px;}
.xf0_c01410{left:466.080000px;}
.x23_c01410{left:467.243934px;}
.x82_c01410{left:468.562686px;}
.x5_c01410{left:469.800000px;}
.x56_c01410{left:472.057206px;}
.x36_c01410{left:474.192789px;}
.x17_c01410{left:476.345937px;}
.xc_c01410{left:477.403500px;}
.x96_c01410{left:478.528881px;}
.x42_c01410{left:484.732260px;}
.xe6_c01410{left:488.690433px;}
.x61_c01410{left:492.794418px;}
.x4b_c01410{left:494.445684px;}
.x24_c01410{left:497.685594px;}
.xf1_c01410{left:499.542000px;}
.xdf_c01410{left:500.856840px;}
.x6d_c01410{left:503.363769px;}
.xb7_c01410{left:506.700888px;}
.xac_c01410{left:507.911028px;}
.x18_c01410{left:510.365196px;}
.x76_c01410{left:513.583014px;}
.xc3_c01410{left:515.178888px;}
.x43_c01410{left:517.458486px;}
.xe7_c01410{left:521.092287px;}
.x8d_c01410{left:522.462825px;}
.x62_c01410{left:526.295418px;}
.x4c_c01410{left:528.176184px;}
.x9b_c01410{left:529.501500px;}
.xd7_c01410{left:534.580500px;}
.x6e_c01410{left:536.842995px;}
.x57_c01410{left:538.850691px;}
.x2b_c01410{left:541.761471px;}
.xe8_c01410{left:545.136783px;}
.xb1_c01410{left:550.321884px;}
.x37_c01410{left:551.560005px;}
.xd_c01410{left:554.569500px;}
.x83_c01410{left:556.721772px;}
.x77_c01410{left:558.691524px;}
.x4d_c01410{left:560.387184px;}
.x9c_c01410{left:563.781000px;}
.x8e_c01410{left:566.812815px;}
.xc4_c01410{left:571.950624px;}
.x19_c01410{left:576.812148px;}
.x44_c01410{left:582.751938px;}
.x2c_c01410{left:585.520428px;}
.xe9_c01410{left:587.730729px;}
.xe0_c01410{left:588.979704px;}
.x97_c01410{left:591.079356px;}
.xcf_c01410{left:592.153500px;}
.x9d_c01410{left:596.191500px;}
.x25_c01410{left:598.133805px;}
.x8f_c01410{left:599.762541px;}
.xc5_c01410{left:602.792100px;}
.xb8_c01410{left:604.028388px;}
.x38_c01410{left:605.696193px;}
.x6f_c01410{left:613.070178px;}
.xbc_c01410{left:615.325404px;}
.x45_c01410{left:616.759197px;}
.x2d_c01410{left:618.116154px;}
.xe_c01410{left:621.139500px;}
.x78_c01410{left:623.026605px;}
.x4e_c01410{left:628.256184px;}
.xe1_c01410{left:632.112558px;}
.x70_c01410{left:634.328640px;}
.x63_c01410{left:636.093918px;}
.x1a_c01410{left:641.610567px;}
.x84_c01410{left:643.992858px;}
.x79_c01410{left:646.252110px;}
.xbd_c01410{left:647.748696px;}
.xb2_c01410{left:650.789172px;}
.x58_c01410{left:657.357798px;}
.xc6_c01410{left:658.437264px;}
.x26_c01410{left:662.960724px;}
.xf_c01410{left:665.169000px;}
.xd0_c01410{left:668.041500px;}
.x46_c01410{left:670.799385px;}
.x39_c01410{left:671.850645px;}
.x1b_c01410{left:674.891793px;}
.xea_c01410{left:677.218011px;}
.x7a_c01410{left:678.304917px;}
.x71_c01410{left:679.685130px;}
.x90_c01410{left:686.995455px;}
.x4f_c01410{left:692.097684px;}
.x10_c01410{left:698.311500px;}
.xc7_c01410{left:702.957888px;}
.x3a_c01410{left:704.800371px;}
.x64_c01410{left:713.226918px;}
.xb3_c01410{left:715.007268px;}
.x91_c01410{left:719.951181px;}
.xd8_c01410{left:721.228500px;}
.xb9_c01410{left:725.538888px;}
.xa5_c01410{left:726.591528px;}
.x2e_c01410{left:729.193596px;}
.x9e_c01410{left:730.312500px;}
.x85_c01410{left:732.558411px;}
.x72_c01410{left:733.995318px;}
.x59_c01410{left:736.295547px;}
.x47_c01410{left:737.762370px;}
.x50_c01410{left:746.384184px;}
.x9f_c01410{left:749.680500px;}
.xeb_c01410{left:753.124389px;}
.x7b_c01410{left:755.902701px;}
.xc8_c01410{left:757.452516px;}
.xbe_c01410{left:758.841360px;}
.x3b_c01410{left:760.241592px;}
.x2f_c01410{left:761.259789px;}
.x11_c01410{left:765.367500px;}
.x5a_c01410{left:768.297240px;}
.x48_c01410{left:769.638063px;}
.xd9_c01410{left:775.410000px;}
.x86_c01410{left:776.673954px;}
.x65_c01410{left:779.054418px;}
.x3c_c01410{left:783.276087px;}
.x1c_c01410{left:784.497702px;}
.xec_c01410{left:785.590782px;}
.x7c_c01410{left:788.271975px;}
.xc9_c01410{left:789.962064px;}
.x30_c01410{left:793.945515px;}
.x92_c01410{left:800.874963px;}
.xbf_c01410{left:802.073904px;}
.x12_c01410{left:807.430500px;}
.xa6_c01410{left:809.279028px;}
.x87_c01410{left:810.922695px;}
.xb4_c01410{left:813.926484px;}
.x1d_c01410{left:817.195428px;}
.x7d_c01410{left:832.459518px;}
.xca_c01410{left:835.096224px;}
@media print{
.v0_c01410{vertical-align:0.000000pt;}
.ls0_c01410{letter-spacing:0.000000pt;}
.ws0_c01410{word-spacing:0.000000pt;}
.fs0_c01410{font-size:16.000000pt;}
.fsa_c01410{font-size:64.014110pt;}
.fs3_c01410{font-size:64.015486pt;}
.fs6_c01410{font-size:64.018429pt;}
.fsd_c01410{font-size:64.021628pt;}
.fsb_c01410{font-size:69.348620pt;}
.fs2_c01410{font-size:69.350110pt;}
.fs7_c01410{font-size:69.353298pt;}
.fs1_c01410{font-size:74.666667pt;}
.fs4_c01410{font-size:74.684734pt;}
.fs9_c01410{font-size:74.688168pt;}
.fs8_c01410{font-size:80.023037pt;}
.fsc_c01410{font-size:80.027035pt;}
.fs5_c01410{font-size:85.353982pt;}
.fse_c01410{font-size:85.362171pt;}
.y0_c01410{bottom:0.000000pt;}
.y158_c01410{bottom:54.138817pt;}
.y157_c01410{bottom:54.787483pt;}
.y156_c01410{bottom:56.503404pt;}
.y155_c01410{bottom:57.157977pt;}
.y154_c01410{bottom:58.873787pt;}
.y153_c01410{bottom:60.378271pt;}
.y152_c01410{bottom:61.440403pt;}
.y151_c01410{bottom:85.194471pt;}
.y150_c01410{bottom:85.819095pt;}
.y14f_c01410{bottom:87.447407pt;}
.y14e_c01410{bottom:88.077575pt;}
.y14d_c01410{bottom:89.721203pt;}
.y14c_c01410{bottom:91.157715pt;}
.y14b_c01410{bottom:92.166667pt;}
.y14a_c01410{bottom:125.377176pt;}
.y149_c01410{bottom:126.011432pt;}
.y148_c01410{bottom:127.496197pt;}
.y147_c01410{bottom:128.388072pt;}
.y146_c01410{bottom:129.246800pt;}
.y145_c01410{bottom:130.079091pt;}
.y144_c01410{bottom:130.549395pt;}
.y143_c01410{bottom:131.183493pt;}
.y142_c01410{bottom:132.445277pt;}
.y141_c01410{bottom:133.080504pt;}
.y140_c01410{bottom:133.763336pt;}
.y13f_c01410{bottom:135.012984pt;}
.y13e_c01410{bottom:135.455931pt;}
.y13d_c01410{bottom:136.968053pt;}
.y13c_c01410{bottom:137.389069pt;}
.y13b_c01410{bottom:138.225069pt;}
.y13a_c01410{bottom:159.234024pt;}
.y139_c01410{bottom:161.057936pt;}
.y138_c01410{bottom:161.940040pt;}
.y137_c01410{bottom:163.057197pt;}
.y136_c01410{bottom:163.741832pt;}
.y135_c01410{bottom:165.741405pt;}
.y134_c01410{bottom:166.901208pt;}
.y133_c01410{bottom:167.564000pt;}
.y132_c01410{bottom:168.888717pt;}
.y131_c01410{bottom:170.009152pt;}
.y130_c01410{bottom:170.445368pt;}
.y12f_c01410{bottom:171.353459pt;}
.y12e_c01410{bottom:190.672416pt;}
.y12d_c01410{bottom:191.924611pt;}
.y12c_c01410{bottom:193.953547pt;}
.y12b_c01410{bottom:195.487096pt;}
.y12a_c01410{bottom:196.238253pt;}
.y129_c01410{bottom:196.980397pt;}
.y128_c01410{bottom:199.545141pt;}
.y127_c01410{bottom:201.040384pt;}
.y126_c01410{bottom:202.099520pt;}
.y125_c01410{bottom:202.573587pt;}
.y124_c01410{bottom:203.048000pt;}
.y123_c01410{bottom:262.674809pt;}
.y122_c01410{bottom:264.443800pt;}
.y121_c01410{bottom:265.176181pt;}
.y120_c01410{bottom:266.616196pt;}
.y11f_c01410{bottom:267.840664pt;}
.y11e_c01410{bottom:285.354393pt;}
.y11d_c01410{bottom:287.819373pt;}
.y11c_c01410{bottom:289.235949pt;}
.y11b_c01410{bottom:290.899093pt;}
.y11a_c01410{bottom:291.503977pt;}
.y119_c01410{bottom:293.147297pt;}
.y118_c01410{bottom:293.762345pt;}
.y117_c01410{bottom:294.589465pt;}
.y116_c01410{bottom:295.199501pt;}
.y115_c01410{bottom:296.192577pt;}
.y114_c01410{bottom:297.226085pt;}
.y113_c01410{bottom:297.845333pt;}
.y112_c01410{bottom:315.987104pt;}
.y111_c01410{bottom:316.869920pt;}
.y110_c01410{bottom:317.506091pt;}
.y10f_c01410{bottom:317.912309pt;}
.y10e_c01410{bottom:318.571253pt;}
.y10d_c01410{bottom:319.442315pt;}
.y10c_c01410{bottom:320.530688pt;}
.y10b_c01410{bottom:321.133941pt;}
.y10a_c01410{bottom:322.243680pt;}
.y109_c01410{bottom:323.483883pt;}
.y108_c01410{bottom:323.952480pt;}
.y107_c01410{bottom:325.236779pt;}
.y106_c01410{bottom:325.886912pt;}
.y105_c01410{bottom:327.793451pt;}
.y104_c01410{bottom:328.459531pt;}
.y103_c01410{bottom:329.085813pt;}
.y102_c01410{bottom:329.710400pt;}
.y101_c01410{bottom:347.716107pt;}
.y100_c01410{bottom:348.599712pt;}
.yff_c01410{bottom:350.205643pt;}
.yfe_c01410{bottom:350.870965pt;}
.yfd_c01410{bottom:351.533312pt;}
.yfc_c01410{bottom:352.217771pt;}
.yfb_c01410{bottom:352.605845pt;}
.yfa_c01410{bottom:354.003328pt;}
.yf9_c01410{bottom:355.103840pt;}
.yf8_c01410{bottom:355.797941pt;}
.yf7_c01410{bottom:357.356597pt;}
.yf6_c01410{bottom:358.046016pt;}
.yf5_c01410{bottom:360.056480pt;}
.yf4_c01410{bottom:361.396981pt;}
.yf3_c01410{bottom:381.459957pt;}
.yf2_c01410{bottom:382.126389pt;}
.yf1_c01410{bottom:382.822997pt;}
.yf0_c01410{bottom:384.718613pt;}
.yef_c01410{bottom:385.634613pt;}
.yee_c01410{bottom:386.794933pt;}
.yed_c01410{bottom:387.507317pt;}
.yec_c01410{bottom:388.221205pt;}
.yeb_c01410{bottom:390.774357pt;}
.yea_c01410{bottom:391.488821pt;}
.ye9_c01410{bottom:392.191477pt;}
.ye8_c01410{bottom:393.815605pt;}
.ye7_c01410{bottom:394.766293pt;}
.ye6_c01410{bottom:412.707477pt;}
.ye5_c01410{bottom:413.975499pt;}
.ye4_c01410{bottom:414.642987pt;}
.ye3_c01410{bottom:415.898240pt;}
.ye2_c01410{bottom:416.580651pt;}
.ye1_c01410{bottom:417.864107pt;}
.ye0_c01410{bottom:418.502848pt;}
.ydf_c01410{bottom:419.780928pt;}
.yde_c01410{bottom:420.430933pt;}
.ydd_c01410{bottom:421.057728pt;}
.ydc_c01410{bottom:422.163424pt;}
.ydb_c01410{bottom:423.209845pt;}
.yda_c01410{bottom:424.303595pt;}
.yd9_c01410{bottom:424.937301pt;}
.yd8_c01410{bottom:425.977707pt;}
.yd7_c01410{bottom:445.255435pt;}
.yd6_c01410{bottom:445.877429pt;}
.yd5_c01410{bottom:446.893536pt;}
.yd4_c01410{bottom:447.703712pt;}
.yd3_c01410{bottom:449.135680pt;}
.yd2_c01410{bottom:449.958827pt;}
.yd1_c01410{bottom:450.805205pt;}
.yd0_c01410{bottom:451.346656pt;}
.ycf_c01410{bottom:452.220032pt;}
.yce_c01410{bottom:453.003840pt;}
.ycd_c01410{bottom:453.463275pt;}
.ycc_c01410{bottom:454.093205pt;}
.ycb_c01410{bottom:455.278464pt;}
.yca_c01410{bottom:456.088640pt;}
.yc9_c01410{bottom:456.949781pt;}
.yc8_c01410{bottom:475.714837pt;}
.yc7_c01410{bottom:477.478837pt;}
.yc6_c01410{bottom:478.648597pt;}
.yc5_c01410{bottom:480.237749pt;}
.yc4_c01410{bottom:481.672405pt;}
.yc3_c01410{bottom:483.780789pt;}
.yc2_c01410{bottom:484.950293pt;}
.yc1_c01410{bottom:485.647605pt;}
.yc0_c01410{bottom:487.047989pt;}
.ybf_c01410{bottom:488.212149pt;}
.ybe_c01410{bottom:488.673237pt;}
.ybd_c01410{bottom:490.076213pt;}
.ybc_c01410{bottom:509.374251pt;}
.ybb_c01410{bottom:509.787435pt;}
.yba_c01410{bottom:511.217195pt;}
.yb9_c01410{bottom:512.648683pt;}
.yb8_c01410{bottom:513.340107pt;}
.yb7_c01410{bottom:514.071403pt;}
.yb6_c01410{bottom:516.392971pt;}
.yb5_c01410{bottom:518.230699pt;}
.yb4_c01410{bottom:519.187819pt;}
.yb3_c01410{bottom:519.643147pt;}
.yb2_c01410{bottom:520.086667pt;}
.yb1_c01410{bottom:606.579563pt;}
.yb0_c01410{bottom:608.080328pt;}
.yaf_c01410{bottom:608.680501pt;}
.yae_c01410{bottom:609.895707pt;}
.yad_c01410{bottom:610.929536pt;}
.yac_c01410{bottom:611.356693pt;}
.yab_c01410{bottom:613.601768pt;}
.yaa_c01410{bottom:615.033728pt;}
.ya9_c01410{bottom:634.597765pt;}
.ya8_c01410{bottom:636.108240pt;}
.ya7_c01410{bottom:636.723360pt;}
.ya6_c01410{bottom:638.351877pt;}
.ya5_c01410{bottom:638.966880pt;}
.ya4_c01410{bottom:639.794149pt;}
.ya3_c01410{bottom:640.350483pt;}
.ya2_c01410{bottom:641.823747pt;}
.ya1_c01410{bottom:642.438104pt;}
.ya0_c01410{bottom:643.895365pt;}
.y9f_c01410{bottom:644.500277pt;}
.y9e_c01410{bottom:645.079683pt;}
.y9d_c01410{bottom:645.708971pt;}
.y9c_c01410{bottom:646.959907pt;}
.y9b_c01410{bottom:664.687928pt;}
.y9a_c01410{bottom:665.388363pt;}
.y99_c01410{bottom:666.289752pt;}
.y98_c01410{bottom:668.100405pt;}
.y97_c01410{bottom:668.739741pt;}
.y96_c01410{bottom:669.884411pt;}
.y95_c01410{bottom:671.185435pt;}
.y94_c01410{bottom:671.685781pt;}
.y93_c01410{bottom:673.244531pt;}
.y92_c01410{bottom:673.923627pt;}
.y91_c01410{bottom:677.036888pt;}
.y90_c01410{bottom:677.721499pt;}
.y8f_c01410{bottom:678.408280pt;}
.y8e_c01410{bottom:696.457003pt;}
.y8d_c01410{bottom:697.359800pt;}
.y8c_c01410{bottom:698.022147pt;}
.y8b_c01410{bottom:699.608981pt;}
.y8a_c01410{bottom:700.263805pt;}
.y89_c01410{bottom:700.738003pt;}
.y88_c01410{bottom:702.053472pt;}
.y87_c01410{bottom:702.975613pt;}
.y86_c01410{bottom:705.685339pt;}
.y85_c01410{bottom:706.336936pt;}
.y84_c01410{bottom:708.581997pt;}
.y83_c01410{bottom:709.247365pt;}
.y82_c01410{bottom:710.571312pt;}
.y81_c01410{bottom:730.572837pt;}
.y80_c01410{bottom:731.198400pt;}
.y7f_c01410{bottom:732.212443pt;}
.y7e_c01410{bottom:733.059395pt;}
.y7d_c01410{bottom:733.456440pt;}
.y7c_c01410{bottom:734.879072pt;}
.y7b_c01410{bottom:735.504429pt;}
.y7a_c01410{bottom:737.143272pt;}
.y79_c01410{bottom:737.969339pt;}
.y78_c01410{bottom:738.749555pt;}
.y77_c01410{bottom:739.981144pt;}
.y76_c01410{bottom:740.594709pt;}
.y75_c01410{bottom:741.025181pt;}
.y74_c01410{bottom:742.261493pt;}
.y73_c01410{bottom:761.265549pt;}
.y72_c01410{bottom:761.920445pt;}
.y71_c01410{bottom:762.552843pt;}
.y70_c01410{bottom:763.647504pt;}
.y6f_c01410{bottom:764.061221pt;}
.y6e_c01410{bottom:766.208392pt;}
.y6d_c01410{bottom:766.863523pt;}
.y6c_c01410{bottom:767.706827pt;}
.y6b_c01410{bottom:769.202915pt;}
.y6a_c01410{bottom:769.857928pt;}
.y69_c01410{bottom:770.495723pt;}
.y68_c01410{bottom:770.925984pt;}
.y67_c01410{bottom:771.797800pt;}
.y66_c01410{bottom:772.609688pt;}
.y65_c01410{bottom:773.079843pt;}
.y64_c01410{bottom:773.708133pt;}
.y63_c01410{bottom:795.404325pt;}
.y62_c01410{bottom:796.002123pt;}
.y61_c01410{bottom:797.475093pt;}
.y60_c01410{bottom:799.687181pt;}
.y5f_c01410{bottom:800.933336pt;}
.y5e_c01410{bottom:802.782128pt;}
.y5d_c01410{bottom:803.816955pt;}
.y5c_c01410{bottom:804.406920pt;}
.y5b_c01410{bottom:805.636837pt;}
.y5a_c01410{bottom:806.665064pt;}
.y59_c01410{bottom:807.070984pt;}
.y58_c01410{bottom:826.471669pt;}
.y57_c01410{bottom:827.533272pt;}
.y56_c01410{bottom:828.781728pt;}
.y55_c01410{bottom:830.108944pt;}
.y54_c01410{bottom:830.738848pt;}
.y53_c01410{bottom:831.398467pt;}
.y52_c01410{bottom:833.542557pt;}
.y51_c01410{bottom:835.232568pt;}
.y50_c01410{bottom:836.120312pt;}
.y4f_c01410{bottom:857.582864pt;}
.y4e_c01410{bottom:858.178197pt;}
.y4d_c01410{bottom:859.427667pt;}
.y4c_c01410{bottom:860.436429pt;}
.y4b_c01410{bottom:861.070779pt;}
.y4a_c01410{bottom:862.288933pt;}
.y49_c01410{bottom:862.899565pt;}
.y48_c01410{bottom:864.538848pt;}
.y47_c01410{bottom:865.169368pt;}
.y46_c01410{bottom:866.379733pt;}
.y45_c01410{bottom:867.589981pt;}
.y44_c01410{bottom:868.017579pt;}
.y43_c01410{bottom:868.829168pt;}
.y42_c01410{bottom:869.247056pt;}
.y41_c01410{bottom:888.301821pt;}
.y40_c01410{bottom:888.732264pt;}
.y3f_c01410{bottom:889.767091pt;}
.y3e_c01410{bottom:890.382093pt;}
.y3d_c01410{bottom:891.617085pt;}
.y3c_c01410{bottom:892.009056pt;}
.y3b_c01410{bottom:892.627725pt;}
.y3a_c01410{bottom:894.071317pt;}
.y39_c01410{bottom:894.477795pt;}
.y38_c01410{bottom:896.107749pt;}
.y37_c01410{bottom:896.936485pt;}
.y36_c01410{bottom:899.162947pt;}
.y35_c01410{bottom:900.215771pt;}
.y34_c01410{bottom:920.530200pt;}
.y33_c01410{bottom:921.140040pt;}
.y32_c01410{bottom:921.739099pt;}
.y31_c01410{bottom:922.759301pt;}
.y30_c01410{bottom:923.812565pt;}
.y2f_c01410{bottom:924.420645pt;}
.y2e_c01410{bottom:925.237691pt;}
.y1_c01410{bottom:926.880000pt;}
.y2d_c01410{bottom:928.370728pt;}
.y2c_c01410{bottom:929.926115pt;}
.y2b_c01410{bottom:930.571581pt;}
.y2a_c01410{bottom:930.988619pt;}
.y29_c01410{bottom:931.987613pt;}
.y28_c01410{bottom:932.622197pt;}
.y27_c01410{bottom:951.791299pt;}
.y26_c01410{bottom:954.670957pt;}
.y25_c01410{bottom:955.881323pt;}
.y24_c01410{bottom:957.756267pt;}
.y23_c01410{bottom:958.324891pt;}
.y22_c01410{bottom:958.762829pt;}
.y21_c01410{bottom:960.418173pt;}
.y20_c01410{bottom:961.446165pt;}
.y1f_c01410{bottom:962.424259pt;}
.y1e_c01410{bottom:963.259536pt;}
.y1d_c01410{bottom:964.308208pt;}
.y1c_c01410{bottom:983.254099pt;}
.y1b_c01410{bottom:983.864173pt;}
.y1a_c01410{bottom:985.910197pt;}
.y19_c01410{bottom:986.531683pt;}
.y18_c01410{bottom:987.741491pt;}
.y17_c01410{bottom:988.982203pt;}
.y16_c01410{bottom:989.616787pt;}
.y15_c01410{bottom:990.635787pt;}
.y14_c01410{bottom:991.467016pt;}
.y13_c01410{bottom:991.853707pt;}
.y12_c01410{bottom:993.287339pt;}
.y11_c01410{bottom:993.912579pt;}
.y10_c01410{bottom:995.756971pt;}
.yf_c01410{bottom:1015.039008pt;}
.ye_c01410{bottom:1015.861573pt;}
.yd_c01410{bottom:1017.172891pt;}
.yc_c01410{bottom:1017.821011pt;}
.yb_c01410{bottom:1018.682032pt;}
.ya_c01410{bottom:1019.983845pt;}
.y9_c01410{bottom:1021.492869pt;}
.y8_c01410{bottom:1022.121277pt;}
.y7_c01410{bottom:1022.758837pt;}
.y6_c01410{bottom:1024.503320pt;}
.y5_c01410{bottom:1025.136949pt;}
.y4_c01410{bottom:1025.998147pt;}
.y3_c01410{bottom:1027.926667pt;}
.y2_c01410{bottom:1085.157333pt;}
.h2_c01410{height:16.000000pt;}
.hc_c01410{height:64.014110pt;}
.h5_c01410{height:64.015486pt;}
.h8_c01410{height:64.018429pt;}
.hf_c01410{height:64.021628pt;}
.hd_c01410{height:69.348620pt;}
.h4_c01410{height:69.350110pt;}
.h9_c01410{height:69.353298pt;}
.h3_c01410{height:74.666667pt;}
.h6_c01410{height:74.684734pt;}
.hb_c01410{height:74.688168pt;}
.ha_c01410{height:80.023037pt;}
.he_c01410{height:80.027035pt;}
.h7_c01410{height:85.353982pt;}
.h10_c01410{height:85.362171pt;}
.h1_c01410{height:1111.333333pt;}
.h0_c01410{height:1111.440000pt;}
.w1_c01410{width:806.666667pt;}
.w0_c01410{width:806.880000pt;}
.x0_c01410{left:0.000000pt;}
.x2_c01410{left:30.960000pt;}
.x1_c01410{left:33.600000pt;}
.xed_c01410{left:112.028000pt;}
.xda_c01410{left:114.220253pt;}
.xcb_c01410{left:116.388000pt;}
.xa7_c01410{left:118.607200pt;}
.xa0_c01410{left:120.968469pt;}
.x88_c01410{left:123.111861pt;}
.x7e_c01410{left:124.150560pt;}
.x66_c01410{left:125.682059pt;}
.x51_c01410{left:127.282619pt;}
.x31_c01410{left:128.871581pt;}
.x1e_c01410{left:130.382997pt;}
.x6_c01410{left:131.913333pt;}
.x52_c01410{left:146.643059pt;}
.x3d_c01410{left:148.612293pt;}
.xe2_c01410{left:152.352869pt;}
.x7f_c01410{left:154.033915pt;}
.x5b_c01410{left:155.479483pt;}
.xb5_c01410{left:157.872789pt;}
.x27_c01410{left:160.077320pt;}
.xd1_c01410{left:165.077940pt;}
.xad_c01410{left:167.720949pt;}
.xe3_c01410{left:171.470845pt;}
.xdb_c01410{left:172.698163pt;}
.xc0_c01410{left:175.373888pt;}
.x5c_c01410{left:176.850149pt;}
.x32_c01410{left:179.031363pt;}
.x1f_c01410{left:180.293416pt;}
.x89_c01410{left:182.701181pt;}
.x67_c01410{left:184.546016pt;}
.x3e_c01410{left:187.261144pt;}
.x93_c01410{left:191.053872pt;}
.x53_c01410{left:195.624144pt;}
.xae_c01410{left:196.515659pt;}
.xa1_c01410{left:198.637803pt;}
.x68_c01410{left:205.022456pt;}
.x28_c01410{left:207.669043pt;}
.x73_c01410{left:212.718240pt;}
.x5d_c01410{left:213.754149pt;}
.x7_c01410{left:219.573333pt;}
.xdc_c01410{left:221.436643pt;}
.xd2_c01410{left:222.661096pt;}
.x49_c01410{left:224.877941pt;}
.x29_c01410{left:227.534816pt;}
.xee_c01410{left:228.478667pt;}
.xd4_c01410{left:231.516000pt;}
.x69_c01410{left:234.245768pt;}
.x98_c01410{left:238.512000pt;}
.x8a_c01410{left:240.249109pt;}
.xcc_c01410{left:242.380000pt;}
.xaf_c01410{left:246.202027pt;}
.xa2_c01410{left:247.144469pt;}
.x13_c01410{left:248.632101pt;}
.xd5_c01410{left:249.749333pt;}
.xd3_c01410{left:251.946632pt;}
.x54_c01410{left:254.197435pt;}
.x99_c01410{left:257.484000pt;}
.x8_c01410{left:258.718667pt;}
.xe4_c01410{left:260.316067pt;}
.xba_c01410{left:263.753099pt;}
.x3f_c01410{left:265.225512pt;}
.x20_c01410{left:266.660656pt;}
.x8b_c01410{left:269.079088pt;}
.xcd_c01410{left:271.429333pt;}
.x5e_c01410{left:272.939483pt;}
.xdd_c01410{left:279.058483pt;}
.x55_c01410{left:282.287384pt;}
.x33_c01410{left:285.024347pt;}
.x9_c01410{left:287.520000pt;}
.xd6_c01410{left:290.485333pt;}
.x6a_c01410{left:292.895059pt;}
.x94_c01410{left:297.953552pt;}
.x5f_c01410{left:301.930149pt;}
.xa3_c01410{left:305.493803pt;}
.xa8_c01410{left:306.479371pt;}
.xde_c01410{left:307.886069pt;}
.x74_c01410{left:310.340099pt;}
.x21_c01410{left:315.631075pt;}
.x14_c01410{left:316.889597pt;}
.x95_c01410{left:318.279325pt;}
.x80_c01410{left:319.206307pt;}
.xc1_c01410{left:321.828896pt;}
.x40_c01410{left:322.849440pt;}
.x34_c01410{left:324.513227pt;}
.x6b_c01410{left:330.057213pt;}
.x2a_c01410{left:332.363800pt;}
.x15_c01410{left:335.315341pt;}
.xef_c01410{left:336.754667pt;}
.x75_c01410{left:338.684816pt;}
.xce_c01410{left:340.104000pt;}
.x4a_c01410{left:342.048608pt;}
.xa9_c01410{left:343.807392pt;}
.x81_c01410{left:348.740328pt;}
.x41_c01410{left:352.843419pt;}
.x3_c01410{left:357.840000pt;}
.xbb_c01410{left:361.480768pt;}
.xa_c01410{left:366.814667pt;}
.x8c_c01410{left:367.730592pt;}
.x6c_c01410{left:369.424760pt;}
.xb0_c01410{left:372.496075pt;}
.x9a_c01410{left:373.936000pt;}
.x16_c01410{left:374.917555pt;}
.xe5_c01410{left:377.034867pt;}
.x4_c01410{left:378.720000pt;}
.xc2_c01410{left:380.233045pt;}
.xa4_c01410{left:383.277803pt;}
.xaa_c01410{left:385.367701pt;}
.xb6_c01410{left:390.972789pt;}
.x22_c01410{left:394.451472pt;}
.xb_c01410{left:395.794667pt;}
.x60_c01410{left:399.707483pt;}
.x35_c01410{left:402.118928pt;}
.xab_c01410{left:411.152224pt;}
.xf0_c01410{left:414.293333pt;}
.x23_c01410{left:415.327941pt;}
.x82_c01410{left:416.500165pt;}
.x5_c01410{left:417.600000pt;}
.x56_c01410{left:419.606405pt;}
.x36_c01410{left:421.504701pt;}
.x17_c01410{left:423.418611pt;}
.xc_c01410{left:424.358667pt;}
.x96_c01410{left:425.359005pt;}
.x42_c01410{left:430.873120pt;}
.xe6_c01410{left:434.391496pt;}
.x61_c01410{left:438.039483pt;}
.x4b_c01410{left:439.507275pt;}
.x24_c01410{left:442.387195pt;}
.xf1_c01410{left:444.037333pt;}
.xdf_c01410{left:445.206080pt;}
.x6d_c01410{left:447.434461pt;}
.xb7_c01410{left:450.400789pt;}
.xac_c01410{left:451.476469pt;}
.x18_c01410{left:453.657952pt;}
.x76_c01410{left:456.518235pt;}
.xc3_c01410{left:457.936789pt;}
.x43_c01410{left:459.963099pt;}
.xe7_c01410{left:463.193144pt;}
.x8d_c01410{left:464.411400pt;}
.x62_c01410{left:467.818149pt;}
.x4c_c01410{left:469.489941pt;}
.x9b_c01410{left:470.668000pt;}
.xd7_c01410{left:475.182667pt;}
.x6e_c01410{left:477.193773pt;}
.x57_c01410{left:478.978392pt;}
.x2b_c01410{left:481.565752pt;}
.xe8_c01410{left:484.566029pt;}
.xb1_c01410{left:489.175008pt;}
.x37_c01410{left:490.275560pt;}
.xd_c01410{left:492.950667pt;}
.x83_c01410{left:494.863797pt;}
.x77_c01410{left:496.614688pt;}
.x4d_c01410{left:498.121941pt;}
.x9c_c01410{left:501.138667pt;}
.x8e_c01410{left:503.833613pt;}
.xc4_c01410{left:508.400555pt;}
.x19_c01410{left:512.721909pt;}
.x44_c01410{left:518.001723pt;}
.x2c_c01410{left:520.462603pt;}
.xe9_c01410{left:522.427315pt;}
.xe0_c01410{left:523.537515pt;}
.x97_c01410{left:525.403872pt;}
.xcf_c01410{left:526.358667pt;}
.x9d_c01410{left:529.948000pt;}
.x25_c01410{left:531.674493pt;}
.x8f_c01410{left:533.122259pt;}
.xc5_c01410{left:535.815200pt;}
.xb8_c01410{left:536.914123pt;}
.x38_c01410{left:538.396616pt;}
.x6f_c01410{left:544.951269pt;}
.xbc_c01410{left:546.955915pt;}
.x45_c01410{left:548.230397pt;}
.x2d_c01410{left:549.436581pt;}
.xe_c01410{left:552.124000pt;}
.x78_c01410{left:553.801427pt;}
.x4e_c01410{left:558.449941pt;}
.xe1_c01410{left:561.877829pt;}
.x70_c01410{left:563.847680pt;}
.x63_c01410{left:565.416816pt;}
.x1a_c01410{left:570.320504pt;}
.x84_c01410{left:572.438096pt;}
.x79_c01410{left:574.446320pt;}
.xbd_c01410{left:575.776619pt;}
.xb2_c01410{left:578.479264pt;}
.x58_c01410{left:584.318043pt;}
.xc6_c01410{left:585.277568pt;}
.x26_c01410{left:589.298421pt;}
.xf_c01410{left:591.261333pt;}
.xd0_c01410{left:593.814667pt;}
.x46_c01410{left:596.266120pt;}
.x39_c01410{left:597.200573pt;}
.x1b_c01410{left:599.903816pt;}
.xea_c01410{left:601.971565pt;}
.x7a_c01410{left:602.937704pt;}
.x71_c01410{left:604.164560pt;}
.x90_c01410{left:610.662627pt;}
.x4f_c01410{left:615.197941pt;}
.x10_c01410{left:620.721333pt;}
.xc7_c01410{left:624.851456pt;}
.x3a_c01410{left:626.489219pt;}
.x64_c01410{left:633.979483pt;}
.xb3_c01410{left:635.562016pt;}
.x91_c01410{left:639.956605pt;}
.xd8_c01410{left:641.092000pt;}
.xb9_c01410{left:644.923456pt;}
.xa5_c01410{left:645.859136pt;}
.x2e_c01410{left:648.172085pt;}
.x9e_c01410{left:649.166667pt;}
.x85_c01410{left:651.163032pt;}
.x72_c01410{left:652.440283pt;}
.x59_c01410{left:654.484931pt;}
.x47_c01410{left:655.788773pt;}
.x50_c01410{left:663.452608pt;}
.x9f_c01410{left:666.382667pt;}
.xeb_c01410{left:669.443901pt;}
.x7b_c01410{left:671.913512pt;}
.xc8_c01410{left:673.291125pt;}
.xbe_c01410{left:674.525653pt;}
.x3b_c01410{left:675.770304pt;}
.x2f_c01410{left:676.675368pt;}
.x11_c01410{left:680.326667pt;}
.x5a_c01410{left:682.930880pt;}
.x48_c01410{left:684.122723pt;}
.xd9_c01410{left:689.253333pt;}
.x86_c01410{left:690.376848pt;}
.x65_c01410{left:692.492816pt;}
.x3c_c01410{left:696.245411pt;}
.x1c_c01410{left:697.331291pt;}
.xec_c01410{left:698.302917pt;}
.x7c_c01410{left:700.686200pt;}
.xc9_c01410{left:702.188501pt;}
.x30_c01410{left:705.729347pt;}
.x92_c01410{left:711.888856pt;}
.xbf_c01410{left:712.954581pt;}
.x12_c01410{left:717.716000pt;}
.xa6_c01410{left:719.359136pt;}
.x87_c01410{left:720.820173pt;}
.xb4_c01410{left:723.490208pt;}
.x1d_c01410{left:726.395936pt;}
.x7d_c01410{left:739.964016pt;}
.xca_c01410{left:742.307755pt;}
}





/* 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_c01411 {
    display:none;
  }
  .loading-indicator_c01411.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01411 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_c01411 { 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_c01411" -> "#page-container .classname_c01411")
 */
.pf_c01411 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01411 { /* 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_c01411.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01411 { /* 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_c01411 { /* 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_c01411 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01411 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01411 {overflow:visible;}
  }
}
.c_c01411 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01411 { /* 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_c01411:after { /* webkit #35443 */
  content: '';
}
.t_c01411:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01411 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 */
}
.__c01411 { /* 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_c01411 { /* info for Javascript */
  display:none;
}
.l_c01411 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01411 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01411 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01411: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_c01411 {
    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_c01411.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01411.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_c01411 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01411{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01411;src:url('chunks/assets/font_170a54771682c73350741ec9.woff2')format("woff");}.ff1_c01411{font-family:ff1_c01411;line-height:1.000000;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;}
.m0_c01411{transform:matrix(0.016225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.016225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.016225,0.000000,0.000000,0.250000,0,0);}
.m8_c01411{transform:matrix(0.167545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167545,0.000000,0.000000,0.250000,0,0);}
.mc_c01411{transform:matrix(0.171830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171830,0.000000,0.000000,0.250000,0,0);}
.mb_c01411{transform:matrix(0.181625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181625,0.000000,0.000000,0.250000,0,0);}
.m7_c01411{transform:matrix(0.182040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182040,0.000000,0.000000,0.250000,0,0);}
.ma_c01411{transform:matrix(0.209165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209165,0.000000,0.000000,0.250000,0,0);}
.m6_c01411{transform:matrix(0.261040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261040,0.000000,0.000000,0.250000,0,0);}
.m5_c01411{transform:matrix(0.281235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281235,0.000000,0.000000,0.250000,0,0);}
.m2_c01411{transform:matrix(0.303640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303640,0.000000,0.000000,0.250000,0,0);}
.m9_c01411{transform:matrix(0.336110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336110,0.000000,0.000000,0.250000,0,0);}
.m1_c01411{transform:matrix(0.369755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369755,0.000000,0.000000,0.250000,0,0);}
.m3_c01411{transform:matrix(0.386475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386475,0.000000,0.000000,0.250000,0,0);}
.m4_c01411{transform:matrix(0.422945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422945,0.000000,0.000000,0.250000,0,0);}
.v0_c01411{vertical-align:0.000000px;}
.ls0_c01411{letter-spacing:0.000000px;}
.sc__c01411{text-shadow:none;}
.sc0_c01411{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__c01411{-webkit-text-stroke:0px transparent;}
.sc0_c01411{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01411{word-spacing:0.000000px;}
.fc0_c01411{color:transparent;}
.fs0_c01411{font-size:60.000000px;}
.fs1_c01411{font-size:120.000000px;}
.y0_c01411{bottom:0.000000px;}
.y8_c01411{bottom:978.873000px;}
.y7_c01411{bottom:981.627000px;}
.y6_c01411{bottom:982.384500px;}
.y5_c01411{bottom:984.243000px;}
.y4_c01411{bottom:984.727500px;}
.y3_c01411{bottom:986.434500px;}
.y2_c01411{bottom:987.873000px;}
.y1_c01411{bottom:1018.035000px;}
.h2_c01411{height:60.000000px;}
.h3_c01411{height:120.000000px;}
.h1_c01411{height:1250.250000px;}
.h0_c01411{height:1250.370000px;}
.w0_c01411{width:862.920000px;}
.w1_c01411{width:863.250000px;}
.x0_c01411{left:0.000000px;}
.x7_c01411{left:254.002500px;}
.x8_c01411{left:319.393500px;}
.x9_c01411{left:396.976500px;}
.xa_c01411{left:419.028000px;}
.x1_c01411{left:466.560000px;}
.x2_c01411{left:482.760000px;}
.xb_c01411{left:503.515500px;}
.xc_c01411{left:537.931500px;}
.x3_c01411{left:578.070000px;}
.x4_c01411{left:610.470000px;}
.x5_c01411{left:631.800000px;}
.xd_c01411{left:663.094500px;}
.x6_c01411{left:688.500000px;}
@media print{
.v0_c01411{vertical-align:0.000000pt;}
.ls0_c01411{letter-spacing:0.000000pt;}
.ws0_c01411{word-spacing:0.000000pt;}
.fs0_c01411{font-size:53.333333pt;}
.fs1_c01411{font-size:106.666667pt;}
.y0_c01411{bottom:0.000000pt;}
.y8_c01411{bottom:870.109333pt;}
.y7_c01411{bottom:872.557333pt;}
.y6_c01411{bottom:873.230667pt;}
.y5_c01411{bottom:874.882667pt;}
.y4_c01411{bottom:875.313333pt;}
.y3_c01411{bottom:876.830667pt;}
.y2_c01411{bottom:878.109333pt;}
.y1_c01411{bottom:904.920000pt;}
.h2_c01411{height:53.333333pt;}
.h3_c01411{height:106.666667pt;}
.h1_c01411{height:1111.333333pt;}
.h0_c01411{height:1111.440000pt;}
.w0_c01411{width:767.040000pt;}
.w1_c01411{width:767.333333pt;}
.x0_c01411{left:0.000000pt;}
.x7_c01411{left:225.780000pt;}
.x8_c01411{left:283.905333pt;}
.x9_c01411{left:352.868000pt;}
.xa_c01411{left:372.469333pt;}
.x1_c01411{left:414.720000pt;}
.x2_c01411{left:429.120000pt;}
.xb_c01411{left:447.569333pt;}
.xc_c01411{left:478.161333pt;}
.x3_c01411{left:513.840000pt;}
.x4_c01411{left:542.640000pt;}
.x5_c01411{left:561.600000pt;}
.xd_c01411{left:589.417333pt;}
.x6_c01411{left:612.000000pt;}
}





/* 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_c01412 {
    display:none;
  }
  .loading-indicator_c01412.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01412 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_c01412 { 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_c01412" -> "#page-container .classname_c01412")
 */
.pf_c01412 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01412 { /* 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_c01412.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01412 { /* 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_c01412 { /* 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_c01412 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01412 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01412 {overflow:visible;}
  }
}
.c_c01412 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01412 { /* 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_c01412:after { /* webkit #35443 */
  content: '';
}
.t_c01412:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01412 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 */
}
.__c01412 { /* 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_c01412 { /* info for Javascript */
  display:none;
}
.l_c01412 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01412 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01412 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01412: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_c01412 {
    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_c01412.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01412.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_c01412 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01412{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01412;src:url('chunks/assets/font_cfe63ee56e9e10a97d33a3db.woff2')format("woff");}.ff1_c01412{font-family:ff1_c01412;line-height:1.000000;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;}
.me5_c01412{transform:matrix(0.009790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.009790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.009790,0.000000,0.000000,0.250000,0,0);}
.m19_c01412{transform:matrix(0.161291,-0.001129,0.001750,0.249994,0,0);-ms-transform:matrix(0.161291,-0.001129,0.001750,0.249994,0,0);-webkit-transform:matrix(0.161291,-0.001129,0.001750,0.249994,0,0);}
.mcf_c01412{transform:matrix(0.179615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179615,0.000000,0.000000,0.250000,0,0);}
.m106_c01412{transform:matrix(0.184955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184955,0.000000,0.000000,0.250000,0,0);}
.mf4_c01412{transform:matrix(0.189155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189155,0.000000,0.000000,0.250000,0,0);}
.me9_c01412{transform:matrix(0.189920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189920,0.000000,0.000000,0.250000,0,0);}
.mf2_c01412{transform:matrix(0.192510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192510,0.000000,0.000000,0.250000,0,0);}
.mff_c01412{transform:matrix(0.193770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193770,0.000000,0.000000,0.250000,0,0);}
.m97_c01412{transform:matrix(0.198195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198195,0.000000,0.000000,0.250000,0,0);}
.m101_c01412{transform:matrix(0.199100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199100,0.000000,0.000000,0.250000,0,0);}
.mce_c01412{transform:matrix(0.199280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199280,0.000000,0.000000,0.250000,0,0);}
.mfc_c01412{transform:matrix(0.199700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199700,0.000000,0.000000,0.250000,0,0);}
.m6c_c01412{transform:matrix(0.202890,-0.001420,0.001750,0.249994,0,0);-ms-transform:matrix(0.202890,-0.001420,0.001750,0.249994,0,0);-webkit-transform:matrix(0.202890,-0.001420,0.001750,0.249994,0,0);}
.mfd_c01412{transform:matrix(0.203245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203245,0.000000,0.000000,0.250000,0,0);}
.m103_c01412{transform:matrix(0.203300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203300,0.000000,0.000000,0.250000,0,0);}
.mf5_c01412{transform:matrix(0.204320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204320,0.000000,0.000000,0.250000,0,0);}
.mf0_c01412{transform:matrix(0.205105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205105,0.000000,0.000000,0.250000,0,0);}
.m100_c01412{transform:matrix(0.205760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205760,0.000000,0.000000,0.250000,0,0);}
.m105_c01412{transform:matrix(0.207095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207095,0.000000,0.000000,0.250000,0,0);}
.m5_c01412{transform:matrix(0.208010,-0.001456,0.001750,0.249994,0,0);-ms-transform:matrix(0.208010,-0.001456,0.001750,0.249994,0,0);-webkit-transform:matrix(0.208010,-0.001456,0.001750,0.249994,0,0);}
.m6a_c01412{transform:matrix(0.208060,-0.001456,0.001750,0.249994,0,0);-ms-transform:matrix(0.208060,-0.001456,0.001750,0.249994,0,0);-webkit-transform:matrix(0.208060,-0.001456,0.001750,0.249994,0,0);}
.m8b_c01412{transform:matrix(0.209545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209545,0.000000,0.000000,0.250000,0,0);}
.m1d_c01412{transform:matrix(0.210540,-0.001474,0.001750,0.249994,0,0);-ms-transform:matrix(0.210540,-0.001474,0.001750,0.249994,0,0);-webkit-transform:matrix(0.210540,-0.001474,0.001750,0.249994,0,0);}
.md5_c01412{transform:matrix(0.211565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211565,0.000000,0.000000,0.250000,0,0);}
.me2_c01412{transform:matrix(0.212200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212200,0.000000,0.000000,0.250000,0,0);}
.m2a_c01412{transform:matrix(0.213800,-0.001497,0.001750,0.249994,0,0);-ms-transform:matrix(0.213800,-0.001497,0.001750,0.249994,0,0);-webkit-transform:matrix(0.213800,-0.001497,0.001750,0.249994,0,0);}
.mfa_c01412{transform:matrix(0.214520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214520,0.000000,0.000000,0.250000,0,0);}
.m13_c01412{transform:matrix(0.214705,-0.001503,0.001750,0.249994,0,0);-ms-transform:matrix(0.214705,-0.001503,0.001750,0.249994,0,0);-webkit-transform:matrix(0.214705,-0.001503,0.001750,0.249994,0,0);}
.m0_c01412{transform:matrix(0.214970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214970,0.000000,0.000000,0.250000,0,0);}
.m8d_c01412{transform:matrix(0.215755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215755,0.000000,0.000000,0.250000,0,0);}
.m1b_c01412{transform:matrix(0.216330,-0.001514,0.001750,0.249994,0,0);-ms-transform:matrix(0.216330,-0.001514,0.001750,0.249994,0,0);-webkit-transform:matrix(0.216330,-0.001514,0.001750,0.249994,0,0);}
.m10a_c01412{transform:matrix(0.216335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216335,0.000000,0.000000,0.250000,0,0);}
.me8_c01412{transform:matrix(0.216355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216355,0.000000,0.000000,0.250000,0,0);}
.m102_c01412{transform:matrix(0.216865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216865,0.000000,0.000000,0.250000,0,0);}
.m9a_c01412{transform:matrix(0.216995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216995,0.000000,0.000000,0.250000,0,0);}
.md6_c01412{transform:matrix(0.217390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217390,0.000000,0.000000,0.250000,0,0);}
.mf3_c01412{transform:matrix(0.217415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217415,0.000000,0.000000,0.250000,0,0);}
.mad_c01412{transform:matrix(0.217540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217540,0.000000,0.000000,0.250000,0,0);}
.m2c_c01412{transform:matrix(0.217700,-0.001524,0.001750,0.249994,0,0);-ms-transform:matrix(0.217700,-0.001524,0.001750,0.249994,0,0);-webkit-transform:matrix(0.217700,-0.001524,0.001750,0.249994,0,0);}
.m32_c01412{transform:matrix(0.218320,-0.001528,0.001750,0.249994,0,0);-ms-transform:matrix(0.218320,-0.001528,0.001750,0.249994,0,0);-webkit-transform:matrix(0.218320,-0.001528,0.001750,0.249994,0,0);}
.m5e_c01412{transform:matrix(0.218460,-0.001529,0.001750,0.249994,0,0);-ms-transform:matrix(0.218460,-0.001529,0.001750,0.249994,0,0);-webkit-transform:matrix(0.218460,-0.001529,0.001750,0.249994,0,0);}
.m9e_c01412{transform:matrix(0.218940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218940,0.000000,0.000000,0.250000,0,0);}
.m87_c01412{transform:matrix(0.219145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219145,0.000000,0.000000,0.250000,0,0);}
.m29_c01412{transform:matrix(0.219310,-0.001535,0.001750,0.249994,0,0);-ms-transform:matrix(0.219310,-0.001535,0.001750,0.249994,0,0);-webkit-transform:matrix(0.219310,-0.001535,0.001750,0.249994,0,0);}
.m26_c01412{transform:matrix(0.219530,-0.001537,0.001750,0.249994,0,0);-ms-transform:matrix(0.219530,-0.001537,0.001750,0.249994,0,0);-webkit-transform:matrix(0.219530,-0.001537,0.001750,0.249994,0,0);}
.m5f_c01412{transform:matrix(0.220015,-0.001540,0.001750,0.249994,0,0);-ms-transform:matrix(0.220015,-0.001540,0.001750,0.249994,0,0);-webkit-transform:matrix(0.220015,-0.001540,0.001750,0.249994,0,0);}
.m30_c01412{transform:matrix(0.220025,-0.001540,0.001750,0.249994,0,0);-ms-transform:matrix(0.220025,-0.001540,0.001750,0.249994,0,0);-webkit-transform:matrix(0.220025,-0.001540,0.001750,0.249994,0,0);}
.mb8_c01412{transform:matrix(0.220105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220105,0.000000,0.000000,0.250000,0,0);}
.md1_c01412{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.mee_c01412{transform:matrix(0.220360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220360,0.000000,0.000000,0.250000,0,0);}
.m9c_c01412{transform:matrix(0.220890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220890,0.000000,0.000000,0.250000,0,0);}
.m34_c01412{transform:matrix(0.221630,-0.001551,0.001750,0.249994,0,0);-ms-transform:matrix(0.221630,-0.001551,0.001750,0.249994,0,0);-webkit-transform:matrix(0.221630,-0.001551,0.001750,0.249994,0,0);}
.m63_c01412{transform:matrix(0.221805,-0.001553,0.001750,0.249994,0,0);-ms-transform:matrix(0.221805,-0.001553,0.001750,0.249994,0,0);-webkit-transform:matrix(0.221805,-0.001553,0.001750,0.249994,0,0);}
.m65_c01412{transform:matrix(0.222120,-0.001555,0.001750,0.249994,0,0);-ms-transform:matrix(0.222120,-0.001555,0.001750,0.249994,0,0);-webkit-transform:matrix(0.222120,-0.001555,0.001750,0.249994,0,0);}
.md7_c01412{transform:matrix(0.222125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222125,0.000000,0.000000,0.250000,0,0);}
.m57_c01412{transform:matrix(0.222510,-0.001558,0.001750,0.249994,0,0);-ms-transform:matrix(0.222510,-0.001558,0.001750,0.249994,0,0);-webkit-transform:matrix(0.222510,-0.001558,0.001750,0.249994,0,0);}
.m99_c01412{transform:matrix(0.222760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222760,0.000000,0.000000,0.250000,0,0);}
.m60_c01412{transform:matrix(0.222840,-0.001560,0.001750,0.249994,0,0);-ms-transform:matrix(0.222840,-0.001560,0.001750,0.249994,0,0);-webkit-transform:matrix(0.222840,-0.001560,0.001750,0.249994,0,0);}
.m108_c01412{transform:matrix(0.222940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222940,0.000000,0.000000,0.250000,0,0);}
.m104_c01412{transform:matrix(0.223320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223320,0.000000,0.000000,0.250000,0,0);}
.m24_c01412{transform:matrix(0.223375,-0.001564,0.001750,0.249994,0,0);-ms-transform:matrix(0.223375,-0.001564,0.001750,0.249994,0,0);-webkit-transform:matrix(0.223375,-0.001564,0.001750,0.249994,0,0);}
.m20_c01412{transform:matrix(0.223880,-0.001567,0.001750,0.249994,0,0);-ms-transform:matrix(0.223880,-0.001567,0.001750,0.249994,0,0);-webkit-transform:matrix(0.223880,-0.001567,0.001750,0.249994,0,0);}
.m1e_c01412{transform:matrix(0.224075,-0.001569,0.001750,0.249994,0,0);-ms-transform:matrix(0.224075,-0.001569,0.001750,0.249994,0,0);-webkit-transform:matrix(0.224075,-0.001569,0.001750,0.249994,0,0);}
.m69_c01412{transform:matrix(0.224514,-0.001572,0.001750,0.249994,0,0);-ms-transform:matrix(0.224514,-0.001572,0.001750,0.249994,0,0);-webkit-transform:matrix(0.224514,-0.001572,0.001750,0.249994,0,0);}
.m93_c01412{transform:matrix(0.224765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224765,0.000000,0.000000,0.250000,0,0);}
.md3_c01412{transform:matrix(0.225315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225315,0.000000,0.000000,0.250000,0,0);}
.m21_c01412{transform:matrix(0.225459,-0.001578,0.001750,0.249994,0,0);-ms-transform:matrix(0.225459,-0.001578,0.001750,0.249994,0,0);-webkit-transform:matrix(0.225459,-0.001578,0.001750,0.249994,0,0);}
.m14_c01412{transform:matrix(0.225839,-0.001581,0.001750,0.249994,0,0);-ms-transform:matrix(0.225839,-0.001581,0.001750,0.249994,0,0);-webkit-transform:matrix(0.225839,-0.001581,0.001750,0.249994,0,0);}
.m68_c01412{transform:matrix(0.226054,-0.001582,0.001750,0.249994,0,0);-ms-transform:matrix(0.226054,-0.001582,0.001750,0.249994,0,0);-webkit-transform:matrix(0.226054,-0.001582,0.001750,0.249994,0,0);}
.m6b_c01412{transform:matrix(0.227904,-0.001595,0.001750,0.249994,0,0);-ms-transform:matrix(0.227904,-0.001595,0.001750,0.249994,0,0);-webkit-transform:matrix(0.227904,-0.001595,0.001750,0.249994,0,0);}
.m62_c01412{transform:matrix(0.227979,-0.001596,0.001750,0.249994,0,0);-ms-transform:matrix(0.227979,-0.001596,0.001750,0.249994,0,0);-webkit-transform:matrix(0.227979,-0.001596,0.001750,0.249994,0,0);}
.m5c_c01412{transform:matrix(0.228084,-0.001597,0.001750,0.249994,0,0);-ms-transform:matrix(0.228084,-0.001597,0.001750,0.249994,0,0);-webkit-transform:matrix(0.228084,-0.001597,0.001750,0.249994,0,0);}
.m36_c01412{transform:matrix(0.228274,-0.001598,0.001750,0.249994,0,0);-ms-transform:matrix(0.228274,-0.001598,0.001750,0.249994,0,0);-webkit-transform:matrix(0.228274,-0.001598,0.001750,0.249994,0,0);}
.ma_c01412{transform:matrix(0.228409,-0.001599,0.001750,0.249994,0,0);-ms-transform:matrix(0.228409,-0.001599,0.001750,0.249994,0,0);-webkit-transform:matrix(0.228409,-0.001599,0.001750,0.249994,0,0);}
.m91_c01412{transform:matrix(0.228470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228470,0.000000,0.000000,0.250000,0,0);}
.m90_c01412{transform:matrix(0.229220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229220,0.000000,0.000000,0.250000,0,0);}
.mf1_c01412{transform:matrix(0.229405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229405,0.000000,0.000000,0.250000,0,0);}
.mbf_c01412{transform:matrix(0.230340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230340,0.000000,0.000000,0.250000,0,0);}
.mb9_c01412{transform:matrix(0.230445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230445,0.000000,0.000000,0.250000,0,0);}
.m27_c01412{transform:matrix(0.230729,-0.001615,0.001750,0.249994,0,0);-ms-transform:matrix(0.230729,-0.001615,0.001750,0.249994,0,0);-webkit-transform:matrix(0.230729,-0.001615,0.001750,0.249994,0,0);}
.mc2_c01412{transform:matrix(0.230895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230895,0.000000,0.000000,0.250000,0,0);}
.mc7_c01412{transform:matrix(0.231140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231140,0.000000,0.000000,0.250000,0,0);}
.me7_c01412{transform:matrix(0.231160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231160,0.000000,0.000000,0.250000,0,0);}
.m1c_c01412{transform:matrix(0.231489,-0.001620,0.001750,0.249994,0,0);-ms-transform:matrix(0.231489,-0.001620,0.001750,0.249994,0,0);-webkit-transform:matrix(0.231489,-0.001620,0.001750,0.249994,0,0);}
.m79_c01412{transform:matrix(0.231530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231530,0.000000,0.000000,0.250000,0,0);}
.md2_c01412{transform:matrix(0.231620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231620,0.000000,0.000000,0.250000,0,0);}
.m25_c01412{transform:matrix(0.231744,-0.001622,0.001750,0.249994,0,0);-ms-transform:matrix(0.231744,-0.001622,0.001750,0.249994,0,0);-webkit-transform:matrix(0.231744,-0.001622,0.001750,0.249994,0,0);}
.m89_c01412{transform:matrix(0.231920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231920,0.000000,0.000000,0.250000,0,0);}
.m107_c01412{transform:matrix(0.232095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232095,0.000000,0.000000,0.250000,0,0);}
.m4d_c01412{transform:matrix(0.232279,-0.001626,0.001750,0.249994,0,0);-ms-transform:matrix(0.232279,-0.001626,0.001750,0.249994,0,0);-webkit-transform:matrix(0.232279,-0.001626,0.001750,0.249994,0,0);}
.m2f_c01412{transform:matrix(0.232384,-0.001627,0.001750,0.249994,0,0);-ms-transform:matrix(0.232384,-0.001627,0.001750,0.249994,0,0);-webkit-transform:matrix(0.232384,-0.001627,0.001750,0.249994,0,0);}
.m61_c01412{transform:matrix(0.233199,-0.001632,0.001750,0.249994,0,0);-ms-transform:matrix(0.233199,-0.001632,0.001750,0.249994,0,0);-webkit-transform:matrix(0.233199,-0.001632,0.001750,0.249994,0,0);}
.mbb_c01412{transform:matrix(0.233570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233570,0.000000,0.000000,0.250000,0,0);}
.ma9_c01412{transform:matrix(0.233680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233680,0.000000,0.000000,0.250000,0,0);}
.m95_c01412{transform:matrix(0.234085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234085,0.000000,0.000000,0.250000,0,0);}
.m2e_c01412{transform:matrix(0.234314,-0.001640,0.001750,0.249994,0,0);-ms-transform:matrix(0.234314,-0.001640,0.001750,0.249994,0,0);-webkit-transform:matrix(0.234314,-0.001640,0.001750,0.249994,0,0);}
.m3c_c01412{transform:matrix(0.234779,-0.001643,0.001750,0.249994,0,0);-ms-transform:matrix(0.234779,-0.001643,0.001750,0.249994,0,0);-webkit-transform:matrix(0.234779,-0.001643,0.001750,0.249994,0,0);}
.m45_c01412{transform:matrix(0.234849,-0.001644,0.001750,0.249994,0,0);-ms-transform:matrix(0.234849,-0.001644,0.001750,0.249994,0,0);-webkit-transform:matrix(0.234849,-0.001644,0.001750,0.249994,0,0);}
.ma0_c01412{transform:matrix(0.235125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235125,0.000000,0.000000,0.250000,0,0);}
.m9b_c01412{transform:matrix(0.235230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235230,0.000000,0.000000,0.250000,0,0);}
.me6_c01412{transform:matrix(0.235520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235520,0.000000,0.000000,0.250000,0,0);}
.m77_c01412{transform:matrix(0.235755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235755,0.000000,0.000000,0.250000,0,0);}
.m8_c01412{transform:matrix(0.235784,-0.001650,0.001750,0.249994,0,0);-ms-transform:matrix(0.235784,-0.001650,0.001750,0.249994,0,0);-webkit-transform:matrix(0.235784,-0.001650,0.001750,0.249994,0,0);}
.m33_c01412{transform:matrix(0.235914,-0.001651,0.001750,0.249994,0,0);-ms-transform:matrix(0.235914,-0.001651,0.001750,0.249994,0,0);-webkit-transform:matrix(0.235914,-0.001651,0.001750,0.249994,0,0);}
.mb0_c01412{transform:matrix(0.237185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237185,0.000000,0.000000,0.250000,0,0);}
.md0_c01412{transform:matrix(0.237325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237325,0.000000,0.000000,0.250000,0,0);}
.m10d_c01412{transform:matrix(0.237740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237740,0.000000,0.000000,0.250000,0,0);}
.me_c01412{transform:matrix(0.237789,-0.001665,0.001750,0.249994,0,0);-ms-transform:matrix(0.237789,-0.001665,0.001750,0.249994,0,0);-webkit-transform:matrix(0.237789,-0.001665,0.001750,0.249994,0,0);}
.mec_c01412{transform:matrix(0.238155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238155,0.000000,0.000000,0.250000,0,0);}
.mdd_c01412{transform:matrix(0.238185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238185,0.000000,0.000000,0.250000,0,0);}
.mbe_c01412{transform:matrix(0.238355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238355,0.000000,0.000000,0.250000,0,0);}
.mfb_c01412{transform:matrix(0.239250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239250,0.000000,0.000000,0.250000,0,0);}
.mb_c01412{transform:matrix(0.239264,-0.001675,0.001750,0.249994,0,0);-ms-transform:matrix(0.239264,-0.001675,0.001750,0.249994,0,0);-webkit-transform:matrix(0.239264,-0.001675,0.001750,0.249994,0,0);}
.ma2_c01412{transform:matrix(0.239835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239835,0.000000,0.000000,0.250000,0,0);}
.m2d_c01412{transform:matrix(0.239844,-0.001679,0.001750,0.249994,0,0);-ms-transform:matrix(0.239844,-0.001679,0.001750,0.249994,0,0);-webkit-transform:matrix(0.239844,-0.001679,0.001750,0.249994,0,0);}
.m10b_c01412{transform:matrix(0.239950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239950,0.000000,0.000000,0.250000,0,0);}
.m7d_c01412{transform:matrix(0.240105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240105,0.000000,0.000000,0.250000,0,0);}
.m4_c01412{transform:matrix(0.240139,-0.001681,0.001750,0.249994,0,0);-ms-transform:matrix(0.240139,-0.001681,0.001750,0.249994,0,0);-webkit-transform:matrix(0.240139,-0.001681,0.001750,0.249994,0,0);}
.md9_c01412{transform:matrix(0.240145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240145,0.000000,0.000000,0.250000,0,0);}
.m51_c01412{transform:matrix(0.240149,-0.001681,0.001750,0.249994,0,0);-ms-transform:matrix(0.240149,-0.001681,0.001750,0.249994,0,0);-webkit-transform:matrix(0.240149,-0.001681,0.001750,0.249994,0,0);}
.m28_c01412{transform:matrix(0.240379,-0.001683,0.001750,0.249994,0,0);-ms-transform:matrix(0.240379,-0.001683,0.001750,0.249994,0,0);-webkit-transform:matrix(0.240379,-0.001683,0.001750,0.249994,0,0);}
.med_c01412{transform:matrix(0.240580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240580,0.000000,0.000000,0.250000,0,0);}
.m12_c01412{transform:matrix(0.240704,-0.001685,0.001750,0.249994,0,0);-ms-transform:matrix(0.240704,-0.001685,0.001750,0.249994,0,0);-webkit-transform:matrix(0.240704,-0.001685,0.001750,0.249994,0,0);}
.m37_c01412{transform:matrix(0.240924,-0.001686,0.001750,0.249994,0,0);-ms-transform:matrix(0.240924,-0.001686,0.001750,0.249994,0,0);-webkit-transform:matrix(0.240924,-0.001686,0.001750,0.249994,0,0);}
.m5d_c01412{transform:matrix(0.241294,-0.001689,0.001750,0.249994,0,0);-ms-transform:matrix(0.241294,-0.001689,0.001750,0.249994,0,0);-webkit-transform:matrix(0.241294,-0.001689,0.001750,0.249994,0,0);}
.mfe_c01412{transform:matrix(0.241470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241470,0.000000,0.000000,0.250000,0,0);}
.m8e_c01412{transform:matrix(0.241815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241815,0.000000,0.000000,0.250000,0,0);}
.mf9_c01412{transform:matrix(0.242080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242080,0.000000,0.000000,0.250000,0,0);}
.meb_c01412{transform:matrix(0.242290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242290,0.000000,0.000000,0.250000,0,0);}
.m31_c01412{transform:matrix(0.242369,-0.001697,0.001750,0.249994,0,0);-ms-transform:matrix(0.242369,-0.001697,0.001750,0.249994,0,0);-webkit-transform:matrix(0.242369,-0.001697,0.001750,0.249994,0,0);}
.m92_c01412{transform:matrix(0.242495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242495,0.000000,0.000000,0.250000,0,0);}
.m22_c01412{transform:matrix(0.242574,-0.001698,0.001750,0.249994,0,0);-ms-transform:matrix(0.242574,-0.001698,0.001750,0.249994,0,0);-webkit-transform:matrix(0.242574,-0.001698,0.001750,0.249994,0,0);}
.m9d_c01412{transform:matrix(0.242650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242650,0.000000,0.000000,0.250000,0,0);}
.mc5_c01412{transform:matrix(0.242725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242725,0.000000,0.000000,0.250000,0,0);}
.mb4_c01412{transform:matrix(0.242745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242745,0.000000,0.000000,0.250000,0,0);}
.m9f_c01412{transform:matrix(0.242760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242760,0.000000,0.000000,0.250000,0,0);}
.mca_c01412{transform:matrix(0.243100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243100,0.000000,0.000000,0.250000,0,0);}
.m4c_c01412{transform:matrix(0.243309,-0.001703,0.001750,0.249994,0,0);-ms-transform:matrix(0.243309,-0.001703,0.001750,0.249994,0,0);-webkit-transform:matrix(0.243309,-0.001703,0.001750,0.249994,0,0);}
.maa_c01412{transform:matrix(0.243495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243495,0.000000,0.000000,0.250000,0,0);}
.mb5_c01412{transform:matrix(0.244760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244760,0.000000,0.000000,0.250000,0,0);}
.mc3_c01412{transform:matrix(0.245015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245015,0.000000,0.000000,0.250000,0,0);}
.mf7_c01412{transform:matrix(0.245435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245435,0.000000,0.000000,0.250000,0,0);}
.md8_c01412{transform:matrix(0.245655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245655,0.000000,0.000000,0.250000,0,0);}
.m66_c01412{transform:matrix(0.245909,-0.001721,0.001750,0.249994,0,0);-ms-transform:matrix(0.245909,-0.001721,0.001750,0.249994,0,0);-webkit-transform:matrix(0.245909,-0.001721,0.001750,0.249994,0,0);}
.mda_c01412{transform:matrix(0.246060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246060,0.000000,0.000000,0.250000,0,0);}
.m9_c01412{transform:matrix(0.246184,-0.001723,0.001750,0.249994,0,0);-ms-transform:matrix(0.246184,-0.001723,0.001750,0.249994,0,0);-webkit-transform:matrix(0.246184,-0.001723,0.001750,0.249994,0,0);}
.m17_c01412{transform:matrix(0.246189,-0.001723,0.001750,0.249994,0,0);-ms-transform:matrix(0.246189,-0.001723,0.001750,0.249994,0,0);-webkit-transform:matrix(0.246189,-0.001723,0.001750,0.249994,0,0);}
.mc6_c01412{transform:matrix(0.246650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246650,0.000000,0.000000,0.250000,0,0);}
.m81_c01412{transform:matrix(0.246660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246660,0.000000,0.000000,0.250000,0,0);}
.ma3_c01412{transform:matrix(0.246705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246705,0.000000,0.000000,0.250000,0,0);}
.m1f_c01412{transform:matrix(0.247294,-0.001731,0.001750,0.249994,0,0);-ms-transform:matrix(0.247294,-0.001731,0.001750,0.249994,0,0);-webkit-transform:matrix(0.247294,-0.001731,0.001750,0.249994,0,0);}
.m18_c01412{transform:matrix(0.247679,-0.001734,0.001750,0.249994,0,0);-ms-transform:matrix(0.247679,-0.001734,0.001750,0.249994,0,0);-webkit-transform:matrix(0.247679,-0.001734,0.001750,0.249994,0,0);}
.m8c_c01412{transform:matrix(0.247705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247705,0.000000,0.000000,0.250000,0,0);}
.m56_c01412{transform:matrix(0.248074,-0.001737,0.001750,0.249994,0,0);-ms-transform:matrix(0.248074,-0.001737,0.001750,0.249994,0,0);-webkit-transform:matrix(0.248074,-0.001737,0.001750,0.249994,0,0);}
.mc_c01412{transform:matrix(0.248139,-0.001737,0.001750,0.249994,0,0);-ms-transform:matrix(0.248139,-0.001737,0.001750,0.249994,0,0);-webkit-transform:matrix(0.248139,-0.001737,0.001750,0.249994,0,0);}
.mcb_c01412{transform:matrix(0.248245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248245,0.000000,0.000000,0.250000,0,0);}
.m3f_c01412{transform:matrix(0.248299,-0.001738,0.001750,0.249994,0,0);-ms-transform:matrix(0.248299,-0.001738,0.001750,0.249994,0,0);-webkit-transform:matrix(0.248299,-0.001738,0.001750,0.249994,0,0);}
.m74_c01412{transform:matrix(0.248305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248305,0.000000,0.000000,0.250000,0,0);}
.md4_c01412{transform:matrix(0.248615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248615,0.000000,0.000000,0.250000,0,0);}
.m42_c01412{transform:matrix(0.248654,-0.001741,0.001750,0.249994,0,0);-ms-transform:matrix(0.248654,-0.001741,0.001750,0.249994,0,0);-webkit-transform:matrix(0.248654,-0.001741,0.001750,0.249994,0,0);}
.m35_c01412{transform:matrix(0.248894,-0.001742,0.001750,0.249994,0,0);-ms-transform:matrix(0.248894,-0.001742,0.001750,0.249994,0,0);-webkit-transform:matrix(0.248894,-0.001742,0.001750,0.249994,0,0);}
.mb6_c01412{transform:matrix(0.248925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248925,0.000000,0.000000,0.250000,0,0);}
.mbc_c01412{transform:matrix(0.249135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249135,0.000000,0.000000,0.250000,0,0);}
.m96_c01412{transform:matrix(0.249160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249160,0.000000,0.000000,0.250000,0,0);}
.m109_c01412{transform:matrix(0.249305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249305,0.000000,0.000000,0.250000,0,0);}
.m83_c01412{transform:matrix(0.249405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249405,0.000000,0.000000,0.250000,0,0);}
.mde_c01412{transform:matrix(0.249980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249980,0.000000,0.000000,0.250000,0,0);}
.m4a_c01412{transform:matrix(0.250149,-0.001751,0.001750,0.249994,0,0);-ms-transform:matrix(0.250149,-0.001751,0.001750,0.249994,0,0);-webkit-transform:matrix(0.250149,-0.001751,0.001750,0.249994,0,0);}
.mac_c01412{transform:matrix(0.250310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250310,0.000000,0.000000,0.250000,0,0);}
.m71_c01412{transform:matrix(0.250390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250390,0.000000,0.000000,0.250000,0,0);}
.m67_c01412{transform:matrix(0.250494,-0.001753,0.001750,0.249994,0,0);-ms-transform:matrix(0.250494,-0.001753,0.001750,0.249994,0,0);-webkit-transform:matrix(0.250494,-0.001753,0.001750,0.249994,0,0);}
.m85_c01412{transform:matrix(0.250660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250660,0.000000,0.000000,0.250000,0,0);}
.m86_c01412{transform:matrix(0.250690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250690,0.000000,0.000000,0.250000,0,0);}
.m39_c01412{transform:matrix(0.251389,-0.001760,0.001750,0.249994,0,0);-ms-transform:matrix(0.251389,-0.001760,0.001750,0.249994,0,0);-webkit-transform:matrix(0.251389,-0.001760,0.001750,0.249994,0,0);}
.m43_c01412{transform:matrix(0.251439,-0.001760,0.001750,0.249994,0,0);-ms-transform:matrix(0.251439,-0.001760,0.001750,0.249994,0,0);-webkit-transform:matrix(0.251439,-0.001760,0.001750,0.249994,0,0);}
.mb1_c01412{transform:matrix(0.251870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251870,0.000000,0.000000,0.250000,0,0);}
.mc1_c01412{transform:matrix(0.251895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251895,0.000000,0.000000,0.250000,0,0);}
.m8a_c01412{transform:matrix(0.252690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252690,0.000000,0.000000,0.250000,0,0);}
.ma1_c01412{transform:matrix(0.252825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252825,0.000000,0.000000,0.250000,0,0);}
.m59_c01412{transform:matrix(0.252839,-0.001770,0.001750,0.249994,0,0);-ms-transform:matrix(0.252839,-0.001770,0.001750,0.249994,0,0);-webkit-transform:matrix(0.252839,-0.001770,0.001750,0.249994,0,0);}
.ma5_c01412{transform:matrix(0.252860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252860,0.000000,0.000000,0.250000,0,0);}
.m7_c01412{transform:matrix(0.252969,-0.001771,0.001750,0.249994,0,0);-ms-transform:matrix(0.252969,-0.001771,0.001750,0.249994,0,0);-webkit-transform:matrix(0.252969,-0.001771,0.001750,0.249994,0,0);}
.m54_c01412{transform:matrix(0.253029,-0.001771,0.001750,0.249994,0,0);-ms-transform:matrix(0.253029,-0.001771,0.001750,0.249994,0,0);-webkit-transform:matrix(0.253029,-0.001771,0.001750,0.249994,0,0);}
.mea_c01412{transform:matrix(0.253195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253195,0.000000,0.000000,0.250000,0,0);}
.m2b_c01412{transform:matrix(0.253219,-0.001773,0.001750,0.249994,0,0);-ms-transform:matrix(0.253219,-0.001773,0.001750,0.249994,0,0);-webkit-transform:matrix(0.253219,-0.001773,0.001750,0.249994,0,0);}
.mf6_c01412{transform:matrix(0.253220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253220,0.000000,0.000000,0.250000,0,0);}
.m6_c01412{transform:matrix(0.254144,-0.001779,0.001750,0.249994,0,0);-ms-transform:matrix(0.254144,-0.001779,0.001750,0.249994,0,0);-webkit-transform:matrix(0.254144,-0.001779,0.001750,0.249994,0,0);}
.m64_c01412{transform:matrix(0.254259,-0.001780,0.001750,0.249994,0,0);-ms-transform:matrix(0.254259,-0.001780,0.001750,0.249994,0,0);-webkit-transform:matrix(0.254259,-0.001780,0.001750,0.249994,0,0);}
.m10c_c01412{transform:matrix(0.254655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254655,0.000000,0.000000,0.250000,0,0);}
.m55_c01412{transform:matrix(0.254664,-0.001783,0.001750,0.249994,0,0);-ms-transform:matrix(0.254664,-0.001783,0.001750,0.249994,0,0);-webkit-transform:matrix(0.254664,-0.001783,0.001750,0.249994,0,0);}
.m1_c01412{transform:matrix(0.255074,-0.001786,0.001750,0.249994,0,0);-ms-transform:matrix(0.255074,-0.001786,0.001750,0.249994,0,0);-webkit-transform:matrix(0.255074,-0.001786,0.001750,0.249994,0,0);}
.m7f_c01412{transform:matrix(0.255580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255580,0.000000,0.000000,0.250000,0,0);}
.m6d_c01412{transform:matrix(0.255675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255675,0.000000,0.000000,0.250000,0,0);}
.mb3_c01412{transform:matrix(0.255935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255935,0.000000,0.000000,0.250000,0,0);}
.m3e_c01412{transform:matrix(0.256294,-0.001794,0.001750,0.249994,0,0);-ms-transform:matrix(0.256294,-0.001794,0.001750,0.249994,0,0);-webkit-transform:matrix(0.256294,-0.001794,0.001750,0.249994,0,0);}
.m3d_c01412{transform:matrix(0.256619,-0.001796,0.001750,0.249994,0,0);-ms-transform:matrix(0.256619,-0.001796,0.001750,0.249994,0,0);-webkit-transform:matrix(0.256619,-0.001796,0.001750,0.249994,0,0);}
.m98_c01412{transform:matrix(0.257020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257020,0.000000,0.000000,0.250000,0,0);}
.m6f_c01412{transform:matrix(0.257100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257100,0.000000,0.000000,0.250000,0,0);}
.m80_c01412{transform:matrix(0.257320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257320,0.000000,0.000000,0.250000,0,0);}
.m49_c01412{transform:matrix(0.257414,-0.001802,0.001750,0.249994,0,0);-ms-transform:matrix(0.257414,-0.001802,0.001750,0.249994,0,0);-webkit-transform:matrix(0.257414,-0.001802,0.001750,0.249994,0,0);}
.m76_c01412{transform:matrix(0.257420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257420,0.000000,0.000000,0.250000,0,0);}
.m58_c01412{transform:matrix(0.257639,-0.001803,0.001750,0.249994,0,0);-ms-transform:matrix(0.257639,-0.001803,0.001750,0.249994,0,0);-webkit-transform:matrix(0.257639,-0.001803,0.001750,0.249994,0,0);}
.m70_c01412{transform:matrix(0.258030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258030,0.000000,0.000000,0.250000,0,0);}
.m94_c01412{transform:matrix(0.258110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258110,0.000000,0.000000,0.250000,0,0);}
.m15_c01412{transform:matrix(0.258304,-0.001808,0.001750,0.249994,0,0);-ms-transform:matrix(0.258304,-0.001808,0.001750,0.249994,0,0);-webkit-transform:matrix(0.258304,-0.001808,0.001750,0.249994,0,0);}
.mba_c01412{transform:matrix(0.259015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259015,0.000000,0.000000,0.250000,0,0);}
.mdb_c01412{transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);}
.m75_c01412{transform:matrix(0.259760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259760,0.000000,0.000000,0.250000,0,0);}
.me3_c01412{transform:matrix(0.259810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259810,0.000000,0.000000,0.250000,0,0);}
.m46_c01412{transform:matrix(0.259834,-0.001819,0.001750,0.249994,0,0);-ms-transform:matrix(0.259834,-0.001819,0.001750,0.249994,0,0);-webkit-transform:matrix(0.259834,-0.001819,0.001750,0.249994,0,0);}
.m11_c01412{transform:matrix(0.260154,-0.001821,0.001750,0.249994,0,0);-ms-transform:matrix(0.260154,-0.001821,0.001750,0.249994,0,0);-webkit-transform:matrix(0.260154,-0.001821,0.001750,0.249994,0,0);}
.m4b_c01412{transform:matrix(0.260724,-0.001825,0.001750,0.249994,0,0);-ms-transform:matrix(0.260724,-0.001825,0.001750,0.249994,0,0);-webkit-transform:matrix(0.260724,-0.001825,0.001750,0.249994,0,0);}
.m1a_c01412{transform:matrix(0.261024,-0.001827,0.001750,0.249994,0,0);-ms-transform:matrix(0.261024,-0.001827,0.001750,0.249994,0,0);-webkit-transform:matrix(0.261024,-0.001827,0.001750,0.249994,0,0);}
.m3a_c01412{transform:matrix(0.261159,-0.001828,0.001750,0.249994,0,0);-ms-transform:matrix(0.261159,-0.001828,0.001750,0.249994,0,0);-webkit-transform:matrix(0.261159,-0.001828,0.001750,0.249994,0,0);}
.ma6_c01412{transform:matrix(0.261335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261335,0.000000,0.000000,0.250000,0,0);}
.m8f_c01412{transform:matrix(0.261365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261365,0.000000,0.000000,0.250000,0,0);}
.mf8_c01412{transform:matrix(0.261575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261575,0.000000,0.000000,0.250000,0,0);}
.m6e_c01412{transform:matrix(0.261945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261945,0.000000,0.000000,0.250000,0,0);}
.m3_c01412{transform:matrix(0.262164,-0.001835,0.001750,0.249994,0,0);-ms-transform:matrix(0.262164,-0.001835,0.001750,0.249994,0,0);-webkit-transform:matrix(0.262164,-0.001835,0.001750,0.249994,0,0);}
.m50_c01412{transform:matrix(0.262249,-0.001836,0.001750,0.249994,0,0);-ms-transform:matrix(0.262249,-0.001836,0.001750,0.249994,0,0);-webkit-transform:matrix(0.262249,-0.001836,0.001750,0.249994,0,0);}
.m38_c01412{transform:matrix(0.262509,-0.001838,0.001750,0.249994,0,0);-ms-transform:matrix(0.262509,-0.001838,0.001750,0.249994,0,0);-webkit-transform:matrix(0.262509,-0.001838,0.001750,0.249994,0,0);}
.m23_c01412{transform:matrix(0.263164,-0.001842,0.001750,0.249994,0,0);-ms-transform:matrix(0.263164,-0.001842,0.001750,0.249994,0,0);-webkit-transform:matrix(0.263164,-0.001842,0.001750,0.249994,0,0);}
.mcd_c01412{transform:matrix(0.263270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263270,0.000000,0.000000,0.250000,0,0);}
.m88_c01412{transform:matrix(0.263615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263615,0.000000,0.000000,0.250000,0,0);}
.m16_c01412{transform:matrix(0.263789,-0.001847,0.001750,0.249994,0,0);-ms-transform:matrix(0.263789,-0.001847,0.001750,0.249994,0,0);-webkit-transform:matrix(0.263789,-0.001847,0.001750,0.249994,0,0);}
.mc4_c01412{transform:matrix(0.264105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264105,0.000000,0.000000,0.250000,0,0);}
.m44_c01412{transform:matrix(0.264659,-0.001853,0.001750,0.249994,0,0);-ms-transform:matrix(0.264659,-0.001853,0.001750,0.249994,0,0);-webkit-transform:matrix(0.264659,-0.001853,0.001750,0.249994,0,0);}
.m7e_c01412{transform:matrix(0.265430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265430,0.000000,0.000000,0.250000,0,0);}
.m3b_c01412{transform:matrix(0.267293,-0.001871,0.001750,0.249994,0,0);-ms-transform:matrix(0.267293,-0.001871,0.001750,0.249994,0,0);-webkit-transform:matrix(0.267293,-0.001871,0.001750,0.249994,0,0);}
.mae_c01412{transform:matrix(0.267335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267335,0.000000,0.000000,0.250000,0,0);}
.md_c01412{transform:matrix(0.267508,-0.001873,0.001750,0.249994,0,0);-ms-transform:matrix(0.267508,-0.001873,0.001750,0.249994,0,0);-webkit-transform:matrix(0.267508,-0.001873,0.001750,0.249994,0,0);}
.m47_c01412{transform:matrix(0.267693,-0.001874,0.001750,0.249994,0,0);-ms-transform:matrix(0.267693,-0.001874,0.001750,0.249994,0,0);-webkit-transform:matrix(0.267693,-0.001874,0.001750,0.249994,0,0);}
.m82_c01412{transform:matrix(0.267920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267920,0.000000,0.000000,0.250000,0,0);}
.ma7_c01412{transform:matrix(0.268015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268015,0.000000,0.000000,0.250000,0,0);}
.m7a_c01412{transform:matrix(0.268125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268125,0.000000,0.000000,0.250000,0,0);}
.mdc_c01412{transform:matrix(0.268255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268255,0.000000,0.000000,0.250000,0,0);}
.mc9_c01412{transform:matrix(0.268435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268435,0.000000,0.000000,0.250000,0,0);}
.mbd_c01412{transform:matrix(0.268460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268460,0.000000,0.000000,0.250000,0,0);}
.m52_c01412{transform:matrix(0.268693,-0.001881,0.001750,0.249994,0,0);-ms-transform:matrix(0.268693,-0.001881,0.001750,0.249994,0,0);-webkit-transform:matrix(0.268693,-0.001881,0.001750,0.249994,0,0);}
.mc8_c01412{transform:matrix(0.269035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269035,0.000000,0.000000,0.250000,0,0);}
.m84_c01412{transform:matrix(0.269275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269275,0.000000,0.000000,0.250000,0,0);}
.maf_c01412{transform:matrix(0.269790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269790,0.000000,0.000000,0.250000,0,0);}
.mdf_c01412{transform:matrix(0.270080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270080,0.000000,0.000000,0.250000,0,0);}
.me0_c01412{transform:matrix(0.270315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270315,0.000000,0.000000,0.250000,0,0);}
.m7c_c01412{transform:matrix(0.270775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270775,0.000000,0.000000,0.250000,0,0);}
.m78_c01412{transform:matrix(0.271260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271260,0.000000,0.000000,0.250000,0,0);}
.m4e_c01412{transform:matrix(0.271268,-0.001899,0.001750,0.249994,0,0);-ms-transform:matrix(0.271268,-0.001899,0.001750,0.249994,0,0);-webkit-transform:matrix(0.271268,-0.001899,0.001750,0.249994,0,0);}
.m48_c01412{transform:matrix(0.271598,-0.001901,0.001750,0.249994,0,0);-ms-transform:matrix(0.271598,-0.001901,0.001750,0.249994,0,0);-webkit-transform:matrix(0.271598,-0.001901,0.001750,0.249994,0,0);}
.m5b_c01412{transform:matrix(0.271823,-0.001903,0.001750,0.249994,0,0);-ms-transform:matrix(0.271823,-0.001903,0.001750,0.249994,0,0);-webkit-transform:matrix(0.271823,-0.001903,0.001750,0.249994,0,0);}
.ma4_c01412{transform:matrix(0.272280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272280,0.000000,0.000000,0.250000,0,0);}
.mab_c01412{transform:matrix(0.273225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273225,0.000000,0.000000,0.250000,0,0);}
.mb7_c01412{transform:matrix(0.274220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274220,0.000000,0.000000,0.250000,0,0);}
.m7b_c01412{transform:matrix(0.276210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276210,0.000000,0.000000,0.250000,0,0);}
.me4_c01412{transform:matrix(0.277770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277770,0.000000,0.000000,0.250000,0,0);}
.m53_c01412{transform:matrix(0.278223,-0.001948,0.001750,0.249994,0,0);-ms-transform:matrix(0.278223,-0.001948,0.001750,0.249994,0,0);-webkit-transform:matrix(0.278223,-0.001948,0.001750,0.249994,0,0);}
.mc0_c01412{transform:matrix(0.279220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279220,0.000000,0.000000,0.250000,0,0);}
.m5a_c01412{transform:matrix(0.279658,-0.001958,0.001750,0.249994,0,0);-ms-transform:matrix(0.279658,-0.001958,0.001750,0.249994,0,0);-webkit-transform:matrix(0.279658,-0.001958,0.001750,0.249994,0,0);}
.mcc_c01412{transform:matrix(0.279755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279755,0.000000,0.000000,0.250000,0,0);}
.m72_c01412{transform:matrix(0.279845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279845,0.000000,0.000000,0.250000,0,0);}
.ma8_c01412{transform:matrix(0.281495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281495,0.000000,0.000000,0.250000,0,0);}
.m41_c01412{transform:matrix(0.282043,-0.001974,0.001750,0.249994,0,0);-ms-transform:matrix(0.282043,-0.001974,0.001750,0.249994,0,0);-webkit-transform:matrix(0.282043,-0.001974,0.001750,0.249994,0,0);}
.m73_c01412{transform:matrix(0.283420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283420,0.000000,0.000000,0.250000,0,0);}
.mb2_c01412{transform:matrix(0.285480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285480,0.000000,0.000000,0.250000,0,0);}
.me1_c01412{transform:matrix(0.286735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286735,0.000000,0.000000,0.250000,0,0);}
.m10_c01412{transform:matrix(0.295213,-0.002066,0.001750,0.249994,0,0);-ms-transform:matrix(0.295213,-0.002066,0.001750,0.249994,0,0);-webkit-transform:matrix(0.295213,-0.002066,0.001750,0.249994,0,0);}
.m4f_c01412{transform:matrix(0.322577,-0.002258,0.001750,0.249994,0,0);-ms-transform:matrix(0.322577,-0.002258,0.001750,0.249994,0,0);-webkit-transform:matrix(0.322577,-0.002258,0.001750,0.249994,0,0);}
.mf_c01412{transform:matrix(0.346022,-0.002422,0.001750,0.249994,0,0);-ms-transform:matrix(0.346022,-0.002422,0.001750,0.249994,0,0);-webkit-transform:matrix(0.346022,-0.002422,0.001750,0.249994,0,0);}
.m2_c01412{transform:matrix(0.368461,-0.002579,0.001750,0.249994,0,0);-ms-transform:matrix(0.368461,-0.002579,0.001750,0.249994,0,0);-webkit-transform:matrix(0.368461,-0.002579,0.001750,0.249994,0,0);}
.m40_c01412{transform:matrix(0.384176,-0.002689,0.001750,0.249994,0,0);-ms-transform:matrix(0.384176,-0.002689,0.001750,0.249994,0,0);-webkit-transform:matrix(0.384176,-0.002689,0.001750,0.249994,0,0);}
.mef_c01412{transform:matrix(2.254885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.254885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.254885,0.000000,0.000000,0.250000,0,0);}
.v0_c01412{vertical-align:0.000000px;}
.ls0_c01412{letter-spacing:0.000000px;}
.sc__c01412{text-shadow:none;}
.sc0_c01412{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__c01412{-webkit-text-stroke:0px transparent;}
.sc0_c01412{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01412{word-spacing:0.000000px;}
.fc0_c01412{color:transparent;}
.fs4_c01412{font-size:72.000000px;}
.fs2_c01412{font-size:72.001764px;}
.fs5_c01412{font-size:78.000000px;}
.fs1_c01412{font-size:78.001911px;}
.fs7_c01412{font-size:84.000000px;}
.fs3_c01412{font-size:84.002058px;}
.fs0_c01412{font-size:90.000000px;}
.fs6_c01412{font-size:96.000000px;}
.y0_c01412{bottom:0.000000px;}
.yc4_c01412{bottom:121.548000px;}
.yc3_c01412{bottom:139.581000px;}
.yc2_c01412{bottom:175.563000px;}
.ybc_c01412{bottom:208.981500px;}
.ybd_c01412{bottom:209.308500px;}
.ybe_c01412{bottom:210.841500px;}
.ybf_c01412{bottom:211.171500px;}
.yc0_c01412{bottom:212.059500px;}
.yc1_c01412{bottom:212.389500px;}
.ybb_c01412{bottom:241.624500px;}
.yb1_c01412{bottom:280.531500px;}
.yb2_c01412{bottom:280.684500px;}
.yb3_c01412{bottom:281.181000px;}
.yb4_c01412{bottom:281.484000px;}
.yb5_c01412{bottom:281.880000px;}
.yb6_c01412{bottom:282.177000px;}
.yb7_c01412{bottom:283.056000px;}
.yb8_c01412{bottom:283.449000px;}
.yb9_c01412{bottom:284.053500px;}
.yba_c01412{bottom:284.848500px;}
.ya7_c01412{bottom:315.900000px;}
.ya8_c01412{bottom:316.294500px;}
.ya9_c01412{bottom:316.969500px;}
.yaa_c01412{bottom:317.215500px;}
.yab_c01412{bottom:317.592000px;}
.yac_c01412{bottom:318.130500px;}
.yad_c01412{bottom:318.816000px;}
.yae_c01412{bottom:319.819500px;}
.yaf_c01412{bottom:319.977000px;}
.yb0_c01412{bottom:320.430000px;}
.ya6_c01412{bottom:354.576000px;}
.ya5_c01412{bottom:387.331500px;}
.ya4_c01412{bottom:426.121500px;}
.ya3_c01412{bottom:461.781000px;}
.ya2_c01412{bottom:495.157500px;}
.y96_c01412{bottom:531.090000px;}
.y97_c01412{bottom:531.489000px;}
.y98_c01412{bottom:532.074000px;}
.y99_c01412{bottom:532.537500px;}
.y9a_c01412{bottom:532.734000px;}
.y9b_c01412{bottom:532.996500px;}
.y9c_c01412{bottom:533.853000px;}
.y9d_c01412{bottom:533.985000px;}
.y9e_c01412{bottom:534.183000px;}
.y9f_c01412{bottom:534.510000px;}
.ya0_c01412{bottom:534.714000px;}
.ya1_c01412{bottom:535.243500px;}
.y95_c01412{bottom:569.827500px;}
.y94_c01412{bottom:603.751500px;}
.y87_c01412{bottom:636.931500px;}
.y88_c01412{bottom:637.246500px;}
.y89_c01412{bottom:637.929000px;}
.y8a_c01412{bottom:638.235000px;}
.y8b_c01412{bottom:638.856000px;}
.y8c_c01412{bottom:639.085500px;}
.y8d_c01412{bottom:639.847500px;}
.y8e_c01412{bottom:640.155000px;}
.y8f_c01412{bottom:640.393500px;}
.y90_c01412{bottom:640.539000px;}
.y91_c01412{bottom:640.777500px;}
.y92_c01412{bottom:641.230500px;}
.y93_c01412{bottom:641.463000px;}
.y86_c01412{bottom:675.085500px;}
.y7e_c01412{bottom:707.671500px;}
.y7f_c01412{bottom:708.207000px;}
.y80_c01412{bottom:708.511500px;}
.y81_c01412{bottom:708.975000px;}
.y82_c01412{bottom:709.128000px;}
.y83_c01412{bottom:709.447500px;}
.y84_c01412{bottom:709.660500px;}
.y85_c01412{bottom:710.140500px;}
.y72_c01412{bottom:743.581500px;}
.y73_c01412{bottom:743.970000px;}
.y74_c01412{bottom:744.172500px;}
.y75_c01412{bottom:744.760500px;}
.y76_c01412{bottom:744.957000px;}
.y77_c01412{bottom:745.423500px;}
.y78_c01412{bottom:746.077500px;}
.y79_c01412{bottom:746.535000px;}
.y7a_c01412{bottom:746.809500px;}
.y7b_c01412{bottom:747.265500px;}
.y7c_c01412{bottom:747.528000px;}
.y7d_c01412{bottom:747.732000px;}
.y71_c01412{bottom:782.002500px;}
.y6f_c01412{bottom:871.428481px;}
.y6e_c01412{bottom:871.428582px;}
.y70_c01412{bottom:871.428861px;}
.y6d_c01412{bottom:871.429102px;}
.y6c_c01412{bottom:871.429443px;}
.y61_c01412{bottom:905.304538px;}
.y62_c01412{bottom:905.504050px;}
.y63_c01412{bottom:905.762971px;}
.y64_c01412{bottom:905.966674px;}
.y65_c01412{bottom:906.353821px;}
.y66_c01412{bottom:906.551391px;}
.y67_c01412{bottom:906.818262px;}
.y68_c01412{bottom:907.345501px;}
.y69_c01412{bottom:907.602564px;}
.y6a_c01412{bottom:908.141965px;}
.y6b_c01412{bottom:908.606395px;}
.y53_c01412{bottom:940.133482px;}
.y54_c01412{bottom:940.353052px;}
.y55_c01412{bottom:940.466938px;}
.y56_c01412{bottom:940.854879px;}
.y57_c01412{bottom:941.504332px;}
.y58_c01412{bottom:941.626527px;}
.y59_c01412{bottom:941.942839px;}
.y5a_c01412{bottom:942.225655px;}
.y5b_c01412{bottom:942.394773px;}
.y5c_c01412{bottom:942.605361px;}
.y5d_c01412{bottom:942.822535px;}
.y5e_c01412{bottom:942.989521px;}
.y5f_c01412{bottom:943.320435px;}
.y60_c01412{bottom:943.487020px;}
.y47_c01412{bottom:975.507561px;}
.y48_c01412{bottom:975.836742px;}
.y49_c01412{bottom:976.168203px;}
.y4a_c01412{bottom:976.611092px;}
.y4b_c01412{bottom:976.933812px;}
.y4c_c01412{bottom:977.153392px;}
.y4d_c01412{bottom:977.484738px;}
.y4e_c01412{bottom:977.700243px;}
.y4f_c01412{bottom:977.864834px;}
.y50_c01412{bottom:978.250894px;}
.y51_c01412{bottom:978.468163px;}
.y52_c01412{bottom:978.748773px;}
.y44_c01412{bottom:1013.606791px;}
.y45_c01412{bottom:1013.607171px;}
.y43_c01412{bottom:1013.607342px;}
.y3b_c01412{bottom:1013.607505px;}
.y39_c01412{bottom:1013.607627px;}
.y42_c01412{bottom:1013.607642px;}
.y3c_c01412{bottom:1013.607645px;}
.y46_c01412{bottom:1013.607790px;}
.y41_c01412{bottom:1013.607863px;}
.y40_c01412{bottom:1013.607903px;}
.y3a_c01412{bottom:1013.608056px;}
.y3e_c01412{bottom:1013.608074px;}
.y3d_c01412{bottom:1013.608114px;}
.y3f_c01412{bottom:1013.608453px;}
.y2a_c01412{bottom:1048.407780px;}
.y2b_c01412{bottom:1048.622800px;}
.y2c_c01412{bottom:1048.785195px;}
.y2d_c01412{bottom:1049.114292px;}
.y2e_c01412{bottom:1049.287222px;}
.y2f_c01412{bottom:1049.609817px;}
.y30_c01412{bottom:1049.831392px;}
.y31_c01412{bottom:1049.995857px;}
.y32_c01412{bottom:1050.217453px;}
.y33_c01412{bottom:1050.548810px;}
.y34_c01412{bottom:1050.768094px;}
.y35_c01412{bottom:1051.092684px;}
.y36_c01412{bottom:1051.257274px;}
.y37_c01412{bottom:1051.588198px;}
.y38_c01412{bottom:1051.697915px;}
.y1b_c01412{bottom:1083.239430px;}
.y1c_c01412{bottom:1083.625144px;}
.y1d_c01412{bottom:1083.789777px;}
.y1e_c01412{bottom:1084.008810px;}
.y1f_c01412{bottom:1084.175290px;}
.y20_c01412{bottom:1084.394934px;}
.y21_c01412{bottom:1084.779115px;}
.y22_c01412{bottom:1084.996406px;}
.y23_c01412{bottom:1085.270754px;}
.y24_c01412{bottom:1085.435260px;}
.y25_c01412{bottom:1085.602036px;}
.y26_c01412{bottom:1085.764347px;}
.y27_c01412{bottom:1086.095397px;}
.y28_c01412{bottom:1086.258066px;}
.y29_c01412{bottom:1086.428717px;}
.ye_c01412{bottom:1118.340366px;}
.yf_c01412{bottom:1118.946898px;}
.y10_c01412{bottom:1119.094539px;}
.y11_c01412{bottom:1120.253235px;}
.y12_c01412{bottom:1120.485558px;}
.y13_c01412{bottom:1120.946592px;}
.y14_c01412{bottom:1121.252782px;}
.y15_c01412{bottom:1121.485242px;}
.y16_c01412{bottom:1121.712221px;}
.y17_c01412{bottom:1122.171333px;}
.y18_c01412{bottom:1122.560820px;}
.y19_c01412{bottom:1122.793279px;}
.y1a_c01412{bottom:1123.104804px;}
.y2_c01412{bottom:1153.981500px;}
.y3_c01412{bottom:1154.213802px;}
.y4_c01412{bottom:1154.973771px;}
.y5_c01412{bottom:1155.283542px;}
.y6_c01412{bottom:1155.754099px;}
.y7_c01412{bottom:1155.967827px;}
.y8_c01412{bottom:1156.659483px;}
.y9_c01412{bottom:1157.124255px;}
.ya_c01412{bottom:1157.285104px;}
.yb_c01412{bottom:1157.808582px;}
.yc_c01412{bottom:1158.059962px;}
.yd_c01412{bottom:1158.519274px;}
.y1_c01412{bottom:1214.586000px;}
.h6_c01412{height:72.000000px;}
.h4_c01412{height:72.001764px;}
.h7_c01412{height:78.000000px;}
.h3_c01412{height:78.001911px;}
.h9_c01412{height:84.000000px;}
.h5_c01412{height:84.002058px;}
.h2_c01412{height:90.000000px;}
.h8_c01412{height:96.000000px;}
.h1_c01412{height:1250.250000px;}
.h0_c01412{height:1250.370000px;}
.w0_c01412{width:862.920000px;}
.w1_c01412{width:863.250000px;}
.x0_c01412{left:0.000000px;}
.x8c_c01412{left:77.130000px;}
.x2_c01412{left:90.048000px;}
.xe_c01412{left:91.635554px;}
.x2e_c01412{left:93.691748px;}
.x97_c01412{left:96.120000px;}
.x3_c01412{left:123.234000px;}
.x72_c01412{left:126.088500px;}
.x93_c01412{left:127.113000px;}
.x24_c01412{left:134.259141px;}
.x62_c01412{left:137.610000px;}
.xa0_c01412{left:139.860000px;}
.x8d_c01412{left:149.173500px;}
.x86_c01412{left:150.504000px;}
.x39_c01412{left:156.404204px;}
.x3e_c01412{left:157.751346px;}
.x6d_c01412{left:159.660000px;}
.x1b_c01412{left:167.207751px;}
.x56_c01412{left:169.125000px;}
.xa1_c01412{left:171.720000px;}
.xf_c01412{left:178.283054px;}
.x8e_c01412{left:182.899500px;}
.x81_c01412{left:184.140000px;}
.x2f_c01412{left:189.543441px;}
.x4f_c01412{left:191.251500px;}
.x10_c01412{left:199.374553px;}
.x44_c01412{left:201.242967px;}
.x66_c01412{left:203.850000px;}
.x57_c01412{left:212.593500px;}
.x98_c01412{left:215.730000px;}
.x3a_c01412{left:222.828138px;}
.x8f_c01412{left:226.906500px;}
.x4_c01412{left:231.801000px;}
.x30_c01412{left:233.824115px;}
.x3f_c01412{left:235.243928px;}
.x1c_c01412{left:243.875322px;}
.x73_c01412{left:246.778500px;}
.x75_c01412{left:247.860000px;}
.x49_c01412{left:255.691386px;}
.x6e_c01412{left:257.131500px;}
.x67_c01412{left:259.470000px;}
.x45_c01412{left:265.764419px;}
.x25_c01412{left:267.107000px;}
.x74_c01412{left:268.918500px;}
.x96_c01412{left:270.000000px;}
.x5_c01412{left:276.054000px;}
.x1d_c01412{left:277.087284px;}
.x58_c01412{left:278.718000px;}
.x94_c01412{left:280.408500px;}
.x87_c01412{left:281.985000px;}
.x50_c01412{left:289.233000px;}
.x76_c01412{left:290.520000px;}
.x82_c01412{left:292.140000px;}
.x46_c01412{left:298.703150px;}
.x59_c01412{left:300.585000px;}
.x31_c01412{left:310.776384px;}
.x7d_c01412{left:311.850000px;}
.x95_c01412{left:313.342500px;}
.x1e_c01412{left:321.108404px;}
.x4c_c01412{left:322.650000px;}
.x77_c01412{left:325.080000px;}
.x26_c01412{left:331.621403px;}
.x5c_c01412{left:332.910000px;}
.x6f_c01412{left:334.344000px;}
.x88_c01412{left:335.712000px;}
.x6_c01412{left:343.276500px;}
.x5a_c01412{left:346.216500px;}
.x4a_c01412{left:352.893153px;}
.x68_c01412{left:357.750000px;}
.x1_c01412{left:363.420000px;}
.x11_c01412{left:364.902554px;}
.x5d_c01412{left:367.470000px;}
.x7_c01412{left:373.809000px;}
.x27_c01412{left:375.918522px;}
.x32_c01412{left:386.918612px;}
.x40_c01412{left:389.410080px;}
.x12_c01412{left:398.091553px;}
.x51_c01412{left:399.688500px;}
.x90_c01412{left:401.337000px;}
.x28_c01412{left:408.842484px;}
.x69_c01412{left:411.210000px;}
.x89_c01412{left:412.663500px;}
.x33_c01412{left:420.128739px;}
.x47_c01412{left:431.005574px;}
.x4b_c01412{left:434.165633px;}
.x1f_c01412{left:441.534594px;}
.x5e_c01412{left:443.340000px;}
.x5b_c01412{left:445.332000px;}
.x29_c01412{left:453.142604px;}
.x78_c01412{left:454.680000px;}
.x13_c01412{left:463.953553px;}
.x7e_c01412{left:467.100000px;}
.x91_c01412{left:468.573000px;}
.x8_c01412{left:472.617000px;}
.x34_c01412{left:474.399896px;}
.x4d_c01412{left:475.470000px;}
.x99_c01412{left:478.980000px;}
.x3b_c01412{left:486.336834px;}
.x20_c01412{left:496.370861px;}
.x83_c01412{left:501.390000px;}
.x14_c01412{left:507.695053px;}
.x41_c01412{left:509.287260px;}
.x79_c01412{left:510.840000px;}
.x9a_c01412{left:512.190000px;}
.x2a_c01412{left:519.551538px;}
.x21_c01412{left:529.300822px;}
.x6a_c01412{left:531.630000px;}
.x9_c01412{left:539.013000px;}
.x15_c01412{left:540.903553px;}
.x42_c01412{left:543.090233px;}
.x35_c01412{left:551.890697px;}
.x63_c01412{left:553.063500px;}
.x7f_c01412{left:554.310000px;}
.x92_c01412{left:556.882500px;}
.xa_c01412{left:561.991500px;}
.x2b_c01412{left:563.307147px;}
.x7a_c01412{left:565.380000px;}
.x84_c01412{left:566.460000px;}
.x16_c01412{left:573.329053px;}
.x70_c01412{left:575.457000px;}
.x9b_c01412{left:577.260000px;}
.x43_c01412{left:585.174821px;}
.x64_c01412{left:587.088000px;}
.x22_c01412{left:595.171247px;}
.x4e_c01412{left:596.970000px;}
.x7b_c01412{left:598.590000px;}
.x65_c01412{left:607.875000px;}
.x9c_c01412{left:611.280000px;}
.x36_c01412{left:616.962389px;}
.x2c_c01412{left:628.106550px;}
.x52_c01412{left:630.540000px;}
.xb_c01412{left:636.774000px;}
.x17_c01412{left:638.916553px;}
.x48_c01412{left:641.349054px;}
.x8a_c01412{left:654.016500px;}
.x23_c01412{left:661.322171px;}
.x5f_c01412{left:662.850000px;}
.x9d_c01412{left:666.360000px;}
.xc_c01412{left:672.685500px;}
.x6b_c01412{left:674.460000px;}
.x8b_c01412{left:676.450500px;}
.x3c_c01412{left:683.186096px;}
.x60_c01412{left:685.260000px;}
.x18_c01412{left:694.557554px;}
.x71_c01412{left:696.958500px;}
.x53_c01412{left:706.657500px;}
.x9e_c01412{left:710.370000px;}
.x37_c01412{left:715.514219px;}
.x6c_c01412{left:718.200000px;}
.x19_c01412{left:727.766053px;}
.x61_c01412{left:729.000000px;}
.x80_c01412{left:730.080000px;}
.xd_c01412{left:738.301500px;}
.x3d_c01412{left:739.345383px;}
.x7c_c01412{left:740.610000px;}
.x85_c01412{left:741.960000px;}
.x9f_c01412{left:743.850000px;}
.x2d_c01412{left:749.069741px;}
.x54_c01412{left:750.412500px;}
.x38_c01412{left:760.604924px;}
.x1a_c01412{left:772.269554px;}
.x55_c01412{left:784.405500px;}
@media print{
.v0_c01412{vertical-align:0.000000pt;}
.ls0_c01412{letter-spacing:0.000000pt;}
.ws0_c01412{word-spacing:0.000000pt;}
.fs4_c01412{font-size:64.000000pt;}
.fs2_c01412{font-size:64.001568pt;}
.fs5_c01412{font-size:69.333333pt;}
.fs1_c01412{font-size:69.335032pt;}
.fs7_c01412{font-size:74.666667pt;}
.fs3_c01412{font-size:74.668496pt;}
.fs0_c01412{font-size:80.000000pt;}
.fs6_c01412{font-size:85.333333pt;}
.y0_c01412{bottom:0.000000pt;}
.yc4_c01412{bottom:108.042667pt;}
.yc3_c01412{bottom:124.072000pt;}
.yc2_c01412{bottom:156.056000pt;}
.ybc_c01412{bottom:185.761333pt;}
.ybd_c01412{bottom:186.052000pt;}
.ybe_c01412{bottom:187.414667pt;}
.ybf_c01412{bottom:187.708000pt;}
.yc0_c01412{bottom:188.497333pt;}
.yc1_c01412{bottom:188.790667pt;}
.ybb_c01412{bottom:214.777333pt;}
.yb1_c01412{bottom:249.361333pt;}
.yb2_c01412{bottom:249.497333pt;}
.yb3_c01412{bottom:249.938667pt;}
.yb4_c01412{bottom:250.208000pt;}
.yb5_c01412{bottom:250.560000pt;}
.yb6_c01412{bottom:250.824000pt;}
.yb7_c01412{bottom:251.605333pt;}
.yb8_c01412{bottom:251.954667pt;}
.yb9_c01412{bottom:252.492000pt;}
.yba_c01412{bottom:253.198667pt;}
.ya7_c01412{bottom:280.800000pt;}
.ya8_c01412{bottom:281.150667pt;}
.ya9_c01412{bottom:281.750667pt;}
.yaa_c01412{bottom:281.969333pt;}
.yab_c01412{bottom:282.304000pt;}
.yac_c01412{bottom:282.782667pt;}
.yad_c01412{bottom:283.392000pt;}
.yae_c01412{bottom:284.284000pt;}
.yaf_c01412{bottom:284.424000pt;}
.yb0_c01412{bottom:284.826667pt;}
.ya6_c01412{bottom:315.178667pt;}
.ya5_c01412{bottom:344.294667pt;}
.ya4_c01412{bottom:378.774667pt;}
.ya3_c01412{bottom:410.472000pt;}
.ya2_c01412{bottom:440.140000pt;}
.y96_c01412{bottom:472.080000pt;}
.y97_c01412{bottom:472.434667pt;}
.y98_c01412{bottom:472.954667pt;}
.y99_c01412{bottom:473.366667pt;}
.y9a_c01412{bottom:473.541333pt;}
.y9b_c01412{bottom:473.774667pt;}
.y9c_c01412{bottom:474.536000pt;}
.y9d_c01412{bottom:474.653333pt;}
.y9e_c01412{bottom:474.829333pt;}
.y9f_c01412{bottom:475.120000pt;}
.ya0_c01412{bottom:475.301333pt;}
.ya1_c01412{bottom:475.772000pt;}
.y95_c01412{bottom:506.513333pt;}
.y94_c01412{bottom:536.668000pt;}
.y87_c01412{bottom:566.161333pt;}
.y88_c01412{bottom:566.441333pt;}
.y89_c01412{bottom:567.048000pt;}
.y8a_c01412{bottom:567.320000pt;}
.y8b_c01412{bottom:567.872000pt;}
.y8c_c01412{bottom:568.076000pt;}
.y8d_c01412{bottom:568.753333pt;}
.y8e_c01412{bottom:569.026667pt;}
.y8f_c01412{bottom:569.238667pt;}
.y90_c01412{bottom:569.368000pt;}
.y91_c01412{bottom:569.580000pt;}
.y92_c01412{bottom:569.982667pt;}
.y93_c01412{bottom:570.189333pt;}
.y86_c01412{bottom:600.076000pt;}
.y7e_c01412{bottom:629.041333pt;}
.y7f_c01412{bottom:629.517333pt;}
.y80_c01412{bottom:629.788000pt;}
.y81_c01412{bottom:630.200000pt;}
.y82_c01412{bottom:630.336000pt;}
.y83_c01412{bottom:630.620000pt;}
.y84_c01412{bottom:630.809333pt;}
.y85_c01412{bottom:631.236000pt;}
.y72_c01412{bottom:660.961333pt;}
.y73_c01412{bottom:661.306667pt;}
.y74_c01412{bottom:661.486667pt;}
.y75_c01412{bottom:662.009333pt;}
.y76_c01412{bottom:662.184000pt;}
.y77_c01412{bottom:662.598667pt;}
.y78_c01412{bottom:663.180000pt;}
.y79_c01412{bottom:663.586667pt;}
.y7a_c01412{bottom:663.830667pt;}
.y7b_c01412{bottom:664.236000pt;}
.y7c_c01412{bottom:664.469333pt;}
.y7d_c01412{bottom:664.650667pt;}
.y71_c01412{bottom:695.113333pt;}
.y6f_c01412{bottom:774.603095pt;}
.y6e_c01412{bottom:774.603184pt;}
.y70_c01412{bottom:774.603432pt;}
.y6d_c01412{bottom:774.603647pt;}
.y6c_c01412{bottom:774.603949pt;}
.y61_c01412{bottom:804.715145pt;}
.y62_c01412{bottom:804.892489pt;}
.y63_c01412{bottom:805.122641pt;}
.y64_c01412{bottom:805.303711pt;}
.y65_c01412{bottom:805.647841pt;}
.y66_c01412{bottom:805.823459pt;}
.y67_c01412{bottom:806.060677pt;}
.y68_c01412{bottom:806.529335pt;}
.y69_c01412{bottom:806.757835pt;}
.y6a_c01412{bottom:807.237303pt;}
.y6b_c01412{bottom:807.650129pt;}
.y53_c01412{bottom:835.674207pt;}
.y54_c01412{bottom:835.869380pt;}
.y55_c01412{bottom:835.970612pt;}
.y56_c01412{bottom:836.315448pt;}
.y57_c01412{bottom:836.892740pt;}
.y58_c01412{bottom:837.001357pt;}
.y59_c01412{bottom:837.282524pt;}
.y5a_c01412{bottom:837.533916pt;}
.y5b_c01412{bottom:837.684243pt;}
.y5c_c01412{bottom:837.871432pt;}
.y5d_c01412{bottom:838.064476pt;}
.y5e_c01412{bottom:838.212908pt;}
.y5f_c01412{bottom:838.507053pt;}
.y60_c01412{bottom:838.655129pt;}
.y47_c01412{bottom:867.117832pt;}
.y48_c01412{bottom:867.410437pt;}
.y49_c01412{bottom:867.705069pt;}
.y4a_c01412{bottom:868.098748pt;}
.y4b_c01412{bottom:868.385611pt;}
.y4c_c01412{bottom:868.580793pt;}
.y4d_c01412{bottom:868.875323pt;}
.y4e_c01412{bottom:869.066883pt;}
.y4f_c01412{bottom:869.213185pt;}
.y50_c01412{bottom:869.556351pt;}
.y51_c01412{bottom:869.749479pt;}
.y52_c01412{bottom:869.998909pt;}
.y44_c01412{bottom:900.983815pt;}
.y45_c01412{bottom:900.984152pt;}
.y43_c01412{bottom:900.984304pt;}
.y3b_c01412{bottom:900.984449pt;}
.y39_c01412{bottom:900.984557pt;}
.y42_c01412{bottom:900.984571pt;}
.y3c_c01412{bottom:900.984573pt;}
.y46_c01412{bottom:900.984703pt;}
.y41_c01412{bottom:900.984767pt;}
.y40_c01412{bottom:900.984803pt;}
.y3a_c01412{bottom:900.984939pt;}
.y3e_c01412{bottom:900.984955pt;}
.y3d_c01412{bottom:900.984991pt;}
.y3f_c01412{bottom:900.985292pt;}
.y2a_c01412{bottom:931.918027pt;}
.y2b_c01412{bottom:932.109156pt;}
.y2c_c01412{bottom:932.253507pt;}
.y2d_c01412{bottom:932.546037pt;}
.y2e_c01412{bottom:932.699753pt;}
.y2f_c01412{bottom:932.986504pt;}
.y30_c01412{bottom:933.183460pt;}
.y31_c01412{bottom:933.329651pt;}
.y32_c01412{bottom:933.526625pt;}
.y33_c01412{bottom:933.821164pt;}
.y34_c01412{bottom:934.016084pt;}
.y35_c01412{bottom:934.304608pt;}
.y36_c01412{bottom:934.450911pt;}
.y37_c01412{bottom:934.745065pt;}
.y38_c01412{bottom:934.842591pt;}
.y1b_c01412{bottom:962.879493pt;}
.y1c_c01412{bottom:963.222351pt;}
.y1d_c01412{bottom:963.368691pt;}
.y1e_c01412{bottom:963.563387pt;}
.y1f_c01412{bottom:963.711369pt;}
.y20_c01412{bottom:963.906608pt;}
.y21_c01412{bottom:964.248103pt;}
.y22_c01412{bottom:964.441249pt;}
.y23_c01412{bottom:964.685115pt;}
.y24_c01412{bottom:964.831343pt;}
.y25_c01412{bottom:964.979588pt;}
.y26_c01412{bottom:965.123864pt;}
.y27_c01412{bottom:965.418131pt;}
.y28_c01412{bottom:965.562725pt;}
.y29_c01412{bottom:965.714415pt;}
.ye_c01412{bottom:994.080325pt;}
.yf_c01412{bottom:994.619465pt;}
.y10_c01412{bottom:994.750701pt;}
.y11_c01412{bottom:995.780653pt;}
.y12_c01412{bottom:995.987163pt;}
.y13_c01412{bottom:996.396971pt;}
.y14_c01412{bottom:996.669140pt;}
.y15_c01412{bottom:996.875771pt;}
.y16_c01412{bottom:997.077529pt;}
.y17_c01412{bottom:997.485629pt;}
.y18_c01412{bottom:997.831840pt;}
.y19_c01412{bottom:998.038471pt;}
.y1a_c01412{bottom:998.315381pt;}
.y2_c01412{bottom:1025.761333pt;}
.y3_c01412{bottom:1025.967824pt;}
.y4_c01412{bottom:1026.643352pt;}
.y5_c01412{bottom:1026.918704pt;}
.y6_c01412{bottom:1027.336977pt;}
.y7_c01412{bottom:1027.526957pt;}
.y8_c01412{bottom:1028.141763pt;}
.y9_c01412{bottom:1028.554893pt;}
.ya_c01412{bottom:1028.697871pt;}
.yb_c01412{bottom:1029.163184pt;}
.yc_c01412{bottom:1029.386633pt;}
.yd_c01412{bottom:1029.794911pt;}
.y1_c01412{bottom:1079.632000pt;}
.h6_c01412{height:64.000000pt;}
.h4_c01412{height:64.001568pt;}
.h7_c01412{height:69.333333pt;}
.h3_c01412{height:69.335032pt;}
.h9_c01412{height:74.666667pt;}
.h5_c01412{height:74.668496pt;}
.h2_c01412{height:80.000000pt;}
.h8_c01412{height:85.333333pt;}
.h1_c01412{height:1111.333333pt;}
.h0_c01412{height:1111.440000pt;}
.w0_c01412{width:767.040000pt;}
.w1_c01412{width:767.333333pt;}
.x0_c01412{left:0.000000pt;}
.x8c_c01412{left:68.560000pt;}
.x2_c01412{left:80.042667pt;}
.xe_c01412{left:81.453825pt;}
.x2e_c01412{left:83.281553pt;}
.x97_c01412{left:85.440000pt;}
.x3_c01412{left:109.541333pt;}
.x72_c01412{left:112.078667pt;}
.x93_c01412{left:112.989333pt;}
.x24_c01412{left:119.341459pt;}
.x62_c01412{left:122.320000pt;}
.xa0_c01412{left:124.320000pt;}
.x8d_c01412{left:132.598667pt;}
.x86_c01412{left:133.781333pt;}
.x39_c01412{left:139.025959pt;}
.x3e_c01412{left:140.223419pt;}
.x6d_c01412{left:141.920000pt;}
.x1b_c01412{left:148.629112pt;}
.x56_c01412{left:150.333333pt;}
.xa1_c01412{left:152.640000pt;}
.xf_c01412{left:158.473825pt;}
.x8e_c01412{left:162.577333pt;}
.x81_c01412{left:163.680000pt;}
.x2f_c01412{left:168.483059pt;}
.x4f_c01412{left:170.001333pt;}
.x10_c01412{left:177.221825pt;}
.x44_c01412{left:178.882637pt;}
.x66_c01412{left:181.200000pt;}
.x57_c01412{left:188.972000pt;}
.x98_c01412{left:191.760000pt;}
.x3a_c01412{left:198.069456pt;}
.x8f_c01412{left:201.694667pt;}
.x4_c01412{left:206.045333pt;}
.x30_c01412{left:207.843657pt;}
.x3f_c01412{left:209.105713pt;}
.x1c_c01412{left:216.778064pt;}
.x73_c01412{left:219.358667pt;}
.x75_c01412{left:220.320000pt;}
.x49_c01412{left:227.281232pt;}
.x6e_c01412{left:228.561333pt;}
.x67_c01412{left:230.640000pt;}
.x45_c01412{left:236.235039pt;}
.x25_c01412{left:237.428444pt;}
.x74_c01412{left:239.038667pt;}
.x96_c01412{left:240.000000pt;}
.x5_c01412{left:245.381333pt;}
.x1d_c01412{left:246.299808pt;}
.x58_c01412{left:247.749333pt;}
.x94_c01412{left:249.252000pt;}
.x87_c01412{left:250.653333pt;}
.x50_c01412{left:257.096000pt;}
.x76_c01412{left:258.240000pt;}
.x82_c01412{left:259.680000pt;}
.x46_c01412{left:265.513911pt;}
.x59_c01412{left:267.186667pt;}
.x31_c01412{left:276.245675pt;}
.x7d_c01412{left:277.200000pt;}
.x95_c01412{left:278.526667pt;}
.x1e_c01412{left:285.429692pt;}
.x4c_c01412{left:286.800000pt;}
.x77_c01412{left:288.960000pt;}
.x26_c01412{left:294.774580pt;}
.x5c_c01412{left:295.920000pt;}
.x6f_c01412{left:297.194667pt;}
.x88_c01412{left:298.410667pt;}
.x6_c01412{left:305.134667pt;}
.x5a_c01412{left:307.748000pt;}
.x4a_c01412{left:313.682803pt;}
.x68_c01412{left:318.000000pt;}
.x1_c01412{left:323.040000pt;}
.x11_c01412{left:324.357825pt;}
.x5d_c01412{left:326.640000pt;}
.x7_c01412{left:332.274667pt;}
.x27_c01412{left:334.149797pt;}
.x32_c01412{left:343.927655pt;}
.x40_c01412{left:346.142293pt;}
.x12_c01412{left:353.859159pt;}
.x51_c01412{left:355.278667pt;}
.x90_c01412{left:356.744000pt;}
.x28_c01412{left:363.415541pt;}
.x69_c01412{left:365.520000pt;}
.x89_c01412{left:366.812000pt;}
.x33_c01412{left:373.447768pt;}
.x47_c01412{left:383.116065pt;}
.x4b_c01412{left:385.925007pt;}
.x1f_c01412{left:392.475195pt;}
.x5e_c01412{left:394.080000pt;}
.x5b_c01412{left:395.850667pt;}
.x29_c01412{left:402.793425pt;}
.x78_c01412{left:404.160000pt;}
.x13_c01412{left:412.403159pt;}
.x7e_c01412{left:415.200000pt;}
.x91_c01412{left:416.509333pt;}
.x8_c01412{left:420.104000pt;}
.x34_c01412{left:421.688796pt;}
.x4d_c01412{left:422.640000pt;}
.x99_c01412{left:425.760000pt;}
.x3b_c01412{left:432.299408pt;}
.x20_c01412{left:441.218543pt;}
.x83_c01412{left:445.680000pt;}
.x14_c01412{left:451.284492pt;}
.x41_c01412{left:452.699787pt;}
.x79_c01412{left:454.080000pt;}
.x9a_c01412{left:455.280000pt;}
.x2a_c01412{left:461.823589pt;}
.x21_c01412{left:470.489620pt;}
.x6a_c01412{left:472.560000pt;}
.x9_c01412{left:479.122667pt;}
.x15_c01412{left:480.803159pt;}
.x42_c01412{left:482.746873pt;}
.x35_c01412{left:490.569508pt;}
.x63_c01412{left:491.612000pt;}
.x7f_c01412{left:492.720000pt;}
.x92_c01412{left:495.006667pt;}
.xa_c01412{left:499.548000pt;}
.x2b_c01412{left:500.717464pt;}
.x7a_c01412{left:502.560000pt;}
.x84_c01412{left:503.520000pt;}
.x16_c01412{left:509.625825pt;}
.x70_c01412{left:511.517333pt;}
.x9b_c01412{left:513.120000pt;}
.x43_c01412{left:520.155396pt;}
.x64_c01412{left:521.856000pt;}
.x22_c01412{left:529.041108pt;}
.x4e_c01412{left:530.640000pt;}
.x7b_c01412{left:532.080000pt;}
.x65_c01412{left:540.333333pt;}
.x9c_c01412{left:543.360000pt;}
.x36_c01412{left:548.411012pt;}
.x2c_c01412{left:558.316933pt;}
.x52_c01412{left:560.480000pt;}
.xb_c01412{left:566.021333pt;}
.x17_c01412{left:567.925825pt;}
.x48_c01412{left:570.088048pt;}
.x8a_c01412{left:581.348000pt;}
.x23_c01412{left:587.841929pt;}
.x5f_c01412{left:589.200000pt;}
.x9d_c01412{left:592.320000pt;}
.xc_c01412{left:597.942667pt;}
.x6b_c01412{left:599.520000pt;}
.x8b_c01412{left:601.289333pt;}
.x3c_c01412{left:607.276529pt;}
.x60_c01412{left:609.120000pt;}
.x18_c01412{left:617.384492pt;}
.x71_c01412{left:619.518667pt;}
.x53_c01412{left:628.140000pt;}
.x9e_c01412{left:631.440000pt;}
.x37_c01412{left:636.012639pt;}
.x6c_c01412{left:638.400000pt;}
.x19_c01412{left:646.903159pt;}
.x61_c01412{left:648.000000pt;}
.x80_c01412{left:648.960000pt;}
.xd_c01412{left:656.268000pt;}
.x3d_c01412{left:657.195896pt;}
.x7c_c01412{left:658.320000pt;}
.x85_c01412{left:659.520000pt;}
.x9f_c01412{left:661.200000pt;}
.x2d_c01412{left:665.839769pt;}
.x54_c01412{left:667.033333pt;}
.x38_c01412{left:676.093265pt;}
.x1a_c01412{left:686.461825pt;}
.x55_c01412{left:697.249333pt;}
}





/* 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_c01413 {
    display:none;
  }
  .loading-indicator_c01413.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01413 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_c01413 { 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_c01413" -> "#page-container .classname_c01413")
 */
.pf_c01413 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01413 { /* 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_c01413.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01413 { /* 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_c01413 { /* 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_c01413 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01413 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01413 {overflow:visible;}
  }
}
.c_c01413 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01413 { /* 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_c01413:after { /* webkit #35443 */
  content: '';
}
.t_c01413:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01413 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 */
}
.__c01413 { /* 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_c01413 { /* info for Javascript */
  display:none;
}
.l_c01413 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01413 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01413 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01413: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_c01413 {
    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_c01413.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01413.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_c01413 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01413{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01413;src:url('chunks/assets/font_c605e72f209fc835e906f064.woff2')format("woff");}.ff1_c01413{font-family:ff1_c01413;line-height:1.000000;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;}
.md_c01413{transform:matrix(0.014228,0.000242,-0.004249,0.249964,0,0);-ms-transform:matrix(0.014228,0.000242,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.014228,0.000242,-0.004249,0.249964,0,0);}
.m6_c01413{transform:matrix(0.040560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.040560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.040560,0.000000,0.000000,0.250000,0,0);}
.m2_c01413{transform:matrix(0.060830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060830,0.000000,0.000000,0.250000,0,0);}
.m13_c01413{transform:matrix(0.140220,0.002384,-0.004249,0.249964,0,0);-ms-transform:matrix(0.140220,0.002384,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.140220,0.002384,-0.004249,0.249964,0,0);}
.m1_c01413{transform:matrix(0.156525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156525,0.000000,0.000000,0.250000,0,0);}
.me_c01413{transform:matrix(0.166786,0.002835,-0.004249,0.249964,0,0);-ms-transform:matrix(0.166786,0.002835,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.166786,0.002835,-0.004249,0.249964,0,0);}
.m11_c01413{transform:matrix(0.167841,0.002853,-0.004249,0.249964,0,0);-ms-transform:matrix(0.167841,0.002853,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.167841,0.002853,-0.004249,0.249964,0,0);}
.m12_c01413{transform:matrix(0.170215,0.002894,-0.004249,0.249964,0,0);-ms-transform:matrix(0.170215,0.002894,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.170215,0.002894,-0.004249,0.249964,0,0);}
.m15_c01413{transform:matrix(0.172467,-0.007941,0.011499,0.249735,0,0);-ms-transform:matrix(0.172467,-0.007941,0.011499,0.249735,0,0);-webkit-transform:matrix(0.172467,-0.007941,0.011499,0.249735,0,0);}
.m19_c01413{transform:matrix(0.175874,-0.008098,0.011499,0.249735,0,0);-ms-transform:matrix(0.175874,-0.008098,0.011499,0.249735,0,0);-webkit-transform:matrix(0.175874,-0.008098,0.011499,0.249735,0,0);}
.mf_c01413{transform:matrix(0.181349,0.003083,-0.004249,0.249964,0,0);-ms-transform:matrix(0.181349,0.003083,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.181349,0.003083,-0.004249,0.249964,0,0);}
.m10_c01413{transform:matrix(0.181854,0.003092,-0.004249,0.249964,0,0);-ms-transform:matrix(0.181854,0.003092,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.181854,0.003092,-0.004249,0.249964,0,0);}
.m9_c01413{transform:matrix(0.204840,-0.004506,0.005499,0.249940,0,0);-ms-transform:matrix(0.204840,-0.004506,0.005499,0.249940,0,0);-webkit-transform:matrix(0.204840,-0.004506,0.005499,0.249940,0,0);}
.m16_c01413{transform:matrix(0.208689,-0.009609,0.011499,0.249735,0,0);-ms-transform:matrix(0.208689,-0.009609,0.011499,0.249735,0,0);-webkit-transform:matrix(0.208689,-0.009609,0.011499,0.249735,0,0);}
.ma_c01413{transform:matrix(0.208784,-0.004593,0.005499,0.249940,0,0);-ms-transform:matrix(0.208784,-0.004593,0.005499,0.249940,0,0);-webkit-transform:matrix(0.208784,-0.004593,0.005499,0.249940,0,0);}
.mc_c01413{transform:matrix(0.218512,-0.004807,0.005499,0.249940,0,0);-ms-transform:matrix(0.218512,-0.004807,0.005499,0.249940,0,0);-webkit-transform:matrix(0.218512,-0.004807,0.005499,0.249940,0,0);}
.m8_c01413{transform:matrix(0.226890,-0.004992,0.005499,0.249940,0,0);-ms-transform:matrix(0.226890,-0.004992,0.005499,0.249940,0,0);-webkit-transform:matrix(0.226890,-0.004992,0.005499,0.249940,0,0);}
.m17_c01413{transform:matrix(0.231475,-0.010658,0.011499,0.249735,0,0);-ms-transform:matrix(0.231475,-0.010658,0.011499,0.249735,0,0);-webkit-transform:matrix(0.231475,-0.010658,0.011499,0.249735,0,0);}
.m1a_c01413{transform:matrix(0.235750,-0.010855,0.011499,0.249735,0,0);-ms-transform:matrix(0.235750,-0.010855,0.011499,0.249735,0,0);-webkit-transform:matrix(0.235750,-0.010855,0.011499,0.249735,0,0);}
.m14_c01413{transform:matrix(0.252562,-0.011629,0.011499,0.249735,0,0);-ms-transform:matrix(0.252562,-0.011629,0.011499,0.249735,0,0);-webkit-transform:matrix(0.252562,-0.011629,0.011499,0.249735,0,0);}
.mb_c01413{transform:matrix(0.272284,-0.005990,0.005499,0.249940,0,0);-ms-transform:matrix(0.272284,-0.005990,0.005499,0.249940,0,0);-webkit-transform:matrix(0.272284,-0.005990,0.005499,0.249940,0,0);}
.m5_c01413{transform:matrix(0.388330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388330,0.000000,0.000000,0.250000,0,0);}
.m0_c01413{transform:matrix(0.439320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.439320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.439320,0.000000,0.000000,0.250000,0,0);}
.m18_c01413{transform:matrix(0.478888,-0.022051,0.011499,0.249735,0,0);-ms-transform:matrix(0.478888,-0.022051,0.011499,0.249735,0,0);-webkit-transform:matrix(0.478888,-0.022051,0.011499,0.249735,0,0);}
.m4_c01413{transform:matrix(0.494775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494775,0.000000,0.000000,0.250000,0,0);}
.m1b_c01413{transform:matrix(0.516538,-0.023785,0.011499,0.249735,0,0);-ms-transform:matrix(0.516538,-0.023785,0.011499,0.249735,0,0);-webkit-transform:matrix(0.516538,-0.023785,0.011499,0.249735,0,0);}
.m3_c01413{transform:matrix(0.880740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.880740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.880740,0.000000,0.000000,0.250000,0,0);}
.m7_c01413{transform:matrix(0.913475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.913475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.913475,0.000000,0.000000,0.250000,0,0);}
.v0_c01413{vertical-align:0.000000px;}
.ls0_c01413{letter-spacing:0.000000px;}
.sc__c01413{text-shadow:none;}
.sc0_c01413{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__c01413{-webkit-text-stroke:0px transparent;}
.sc0_c01413{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01413{word-spacing:0.000000px;}
.fc0_c01413{color:transparent;}
.fs0_c01413{font-size:18.000000px;}
.fs1_c01413{font-size:24.000000px;}
.fs2_c01413{font-size:96.023229px;}
.fs4_c01413{font-size:114.006669px;}
.fs3_c01413{font-size:120.017339px;}
.y0_c01413{bottom:0.000000px;}
.y10_c01413{bottom:618.342000px;}
.y11_c01413{bottom:620.516052px;}
.y12_c01413{bottom:621.592866px;}
.y13_c01413{bottom:623.044488px;}
.y14_c01413{bottom:624.562971px;}
.y15_c01413{bottom:629.887080px;}
.y16_c01413{bottom:631.568610px;}
.y17_c01413{bottom:632.871330px;}
.yf_c01413{bottom:1128.566457px;}
.ye_c01413{bottom:1130.466998px;}
.yd_c01413{bottom:1131.170950px;}
.y4_c01413{bottom:1131.853500px;}
.yc_c01413{bottom:1132.265487px;}
.yb_c01413{bottom:1132.822968px;}
.y5_c01413{bottom:1133.392554px;}
.y6_c01413{bottom:1134.118356px;}
.ya_c01413{bottom:1134.421537px;}
.y9_c01413{bottom:1134.808500px;}
.y7_c01413{bottom:1135.821156px;}
.y8_c01413{bottom:1136.304672px;}
.y2_c01413{bottom:1238.898000px;}
.y3_c01413{bottom:1242.271500px;}
.y1_c01413{bottom:1249.149000px;}
.h2_c01413{height:18.000000px;}
.h3_c01413{height:24.000000px;}
.h4_c01413{height:96.023229px;}
.h6_c01413{height:114.006669px;}
.h5_c01413{height:120.017339px;}
.h1_c01413{height:1250.250000px;}
.h0_c01413{height:1250.370000px;}
.w0_c01413{width:912.000000px;}
.x0_c01413{left:0.000000px;}
.x3_c01413{left:4.590000px;}
.x1_c01413{left:26.730000px;}
.x2_c01413{left:48.330000px;}
.x4_c01413{left:52.650000px;}
.x5_c01413{left:70.740000px;}
.x6_c01413{left:86.130000px;}
.x7_c01413{left:88.290000px;}
.x8_c01413{left:110.496000px;}
.x9_c01413{left:180.453000px;}
.x14_c01413{left:202.336500px;}
.xa_c01413{left:213.444000px;}
.x15_c01413{left:249.551238px;}
.x16_c01413{left:272.936829px;}
.xb_c01413{left:290.844000px;}
.x17_c01413{left:304.462272px;}
.xc_c01413{left:312.822000px;}
.x18_c01413{left:337.439762px;}
.xd_c01413{left:357.870000px;}
.xe_c01413{left:380.632500px;}
.x19_c01413{left:453.065520px;}
.xf_c01413{left:474.666000px;}
.x1a_c01413{left:489.583965px;}
.x10_c01413{left:507.459000px;}
.x1b_c01413{left:517.875645px;}
.x11_c01413{left:571.843500px;}
.x12_c01413{left:613.252500px;}
.x13_c01413{left:725.049000px;}
@media print{
.v0_c01413{vertical-align:0.000000pt;}
.ls0_c01413{letter-spacing:0.000000pt;}
.ws0_c01413{word-spacing:0.000000pt;}
.fs0_c01413{font-size:16.000000pt;}
.fs1_c01413{font-size:21.333333pt;}
.fs2_c01413{font-size:85.353982pt;}
.fs4_c01413{font-size:101.339261pt;}
.fs3_c01413{font-size:106.682079pt;}
.y0_c01413{bottom:0.000000pt;}
.y10_c01413{bottom:549.637333pt;}
.y11_c01413{bottom:551.569824pt;}
.y12_c01413{bottom:552.526992pt;}
.y13_c01413{bottom:553.817323pt;}
.y14_c01413{bottom:555.167085pt;}
.y15_c01413{bottom:559.899627pt;}
.y16_c01413{bottom:561.394320pt;}
.y17_c01413{bottom:562.552293pt;}
.yf_c01413{bottom:1003.170184pt;}
.ye_c01413{bottom:1004.859553pt;}
.yd_c01413{bottom:1005.485289pt;}
.y4_c01413{bottom:1006.092000pt;}
.yc_c01413{bottom:1006.458211pt;}
.yb_c01413{bottom:1006.953749pt;}
.y5_c01413{bottom:1007.460048pt;}
.y6_c01413{bottom:1008.105205pt;}
.ya_c01413{bottom:1008.374700pt;}
.y9_c01413{bottom:1008.718667pt;}
.y7_c01413{bottom:1009.618805pt;}
.y8_c01413{bottom:1010.048597pt;}
.y2_c01413{bottom:1101.242667pt;}
.y3_c01413{bottom:1104.241333pt;}
.y1_c01413{bottom:1110.354667pt;}
.h2_c01413{height:16.000000pt;}
.h3_c01413{height:21.333333pt;}
.h4_c01413{height:85.353982pt;}
.h6_c01413{height:101.339261pt;}
.h5_c01413{height:106.682079pt;}
.h1_c01413{height:1111.333333pt;}
.h0_c01413{height:1111.440000pt;}
.w0_c01413{width:810.666667pt;}
.x0_c01413{left:0.000000pt;}
.x3_c01413{left:4.080000pt;}
.x1_c01413{left:23.760000pt;}
.x2_c01413{left:42.960000pt;}
.x4_c01413{left:46.800000pt;}
.x5_c01413{left:62.880000pt;}
.x6_c01413{left:76.560000pt;}
.x7_c01413{left:78.480000pt;}
.x8_c01413{left:98.218667pt;}
.x9_c01413{left:160.402667pt;}
.x14_c01413{left:179.854667pt;}
.xa_c01413{left:189.728000pt;}
.x15_c01413{left:221.823323pt;}
.x16_c01413{left:242.610515pt;}
.xb_c01413{left:258.528000pt;}
.x17_c01413{left:270.633131pt;}
.xc_c01413{left:278.064000pt;}
.x18_c01413{left:299.946455pt;}
.xd_c01413{left:318.106667pt;}
.xe_c01413{left:338.340000pt;}
.x19_c01413{left:402.724907pt;}
.xf_c01413{left:421.925333pt;}
.x1a_c01413{left:435.185747pt;}
.x10_c01413{left:451.074667pt;}
.x1b_c01413{left:460.333907pt;}
.x11_c01413{left:508.305333pt;}
.x12_c01413{left:545.113333pt;}
.x13_c01413{left:644.488000pt;}
}





/* 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_c01414 {
    display:none;
  }
  .loading-indicator_c01414.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01414 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_c01414 { 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_c01414" -> "#page-container .classname_c01414")
 */
.pf_c01414 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01414 { /* 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_c01414.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01414 { /* 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_c01414 { /* 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_c01414 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01414 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01414 {overflow:visible;}
  }
}
.c_c01414 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01414 { /* 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_c01414:after { /* webkit #35443 */
  content: '';
}
.t_c01414:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01414 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 */
}
.__c01414 { /* 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_c01414 { /* info for Javascript */
  display:none;
}
.l_c01414 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01414 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01414 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01414: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_c01414 {
    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_c01414.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01414.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_c01414 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01414{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01414;src:url('chunks/assets/font_cfe63ee56e9e10a97d33a3db.woff2')format("woff");}.ff1_c01414{font-family:ff1_c01414;line-height:1.000000;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;}
.m41_c01414{transform:matrix(0.015908,0.000223,-0.003500,0.249976,0,0);-ms-transform:matrix(0.015908,0.000223,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.015908,0.000223,-0.003500,0.249976,0,0);}
.mc_c01414{transform:matrix(0.122600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122600,0.000000,0.000000,0.250000,0,0);}
.m4_c01414{transform:matrix(0.125780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125780,0.000000,0.000000,0.250000,0,0);}
.mb1_c01414{transform:matrix(0.133665,0.002005,-0.003750,0.249972,0,0);-ms-transform:matrix(0.133665,0.002005,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.133665,0.002005,-0.003750,0.249972,0,0);}
.mad_c01414{transform:matrix(0.137275,0.002059,-0.003750,0.249972,0,0);-ms-transform:matrix(0.137275,0.002059,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.137275,0.002059,-0.003750,0.249972,0,0);}
.mb3_c01414{transform:matrix(0.138959,0.002084,-0.003750,0.249972,0,0);-ms-transform:matrix(0.138959,0.002084,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.138959,0.002084,-0.003750,0.249972,0,0);}
.mb4_c01414{transform:matrix(0.149773,0.002247,-0.003750,0.249972,0,0);-ms-transform:matrix(0.149773,0.002247,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.149773,0.002247,-0.003750,0.249972,0,0);}
.mb2_c01414{transform:matrix(0.150588,0.002259,-0.003750,0.249972,0,0);-ms-transform:matrix(0.150588,0.002259,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.150588,0.002259,-0.003750,0.249972,0,0);}
.m7_c01414{transform:matrix(0.151865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151865,0.000000,0.000000,0.250000,0,0);}
.mf9_c01414{transform:matrix(0.153103,0.002603,-0.004249,0.249964,0,0);-ms-transform:matrix(0.153103,0.002603,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.153103,0.002603,-0.004249,0.249964,0,0);}
.mae_c01414{transform:matrix(0.153713,0.002306,-0.003750,0.249972,0,0);-ms-transform:matrix(0.153713,0.002306,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.153713,0.002306,-0.003750,0.249972,0,0);}
.mf5_c01414{transform:matrix(0.153923,0.002617,-0.004249,0.249964,0,0);-ms-transform:matrix(0.153923,0.002617,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.153923,0.002617,-0.004249,0.249964,0,0);}
.mff_c01414{transform:matrix(0.154923,0.002634,-0.004249,0.249964,0,0);-ms-transform:matrix(0.154923,0.002634,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.154923,0.002634,-0.004249,0.249964,0,0);}
.m137_c01414{transform:matrix(0.161001,0.002093,-0.003250,0.249979,0,0);-ms-transform:matrix(0.161001,0.002093,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.161001,0.002093,-0.003250,0.249979,0,0);}
.mb7_c01414{transform:matrix(0.161737,0.002426,-0.003750,0.249972,0,0);-ms-transform:matrix(0.161737,0.002426,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.161737,0.002426,-0.003750,0.249972,0,0);}
.mac_c01414{transform:matrix(0.162702,0.002441,-0.003750,0.249972,0,0);-ms-transform:matrix(0.162702,0.002441,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.162702,0.002441,-0.003750,0.249972,0,0);}
.mb6_c01414{transform:matrix(0.165081,0.002476,-0.003750,0.249972,0,0);-ms-transform:matrix(0.165081,0.002476,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.165081,0.002476,-0.003750,0.249972,0,0);}
.m136_c01414{transform:matrix(0.165281,0.002149,-0.003250,0.249979,0,0);-ms-transform:matrix(0.165281,0.002149,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.165281,0.002149,-0.003250,0.249979,0,0);}
.mb5_c01414{transform:matrix(0.165506,0.002483,-0.003750,0.249972,0,0);-ms-transform:matrix(0.165506,0.002483,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.165506,0.002483,-0.003750,0.249972,0,0);}
.mf8_c01414{transform:matrix(0.168226,0.002860,-0.004249,0.249964,0,0);-ms-transform:matrix(0.168226,0.002860,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.168226,0.002860,-0.004249,0.249964,0,0);}
.mfa_c01414{transform:matrix(0.168356,0.002862,-0.004249,0.249964,0,0);-ms-transform:matrix(0.168356,0.002862,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.168356,0.002862,-0.004249,0.249964,0,0);}
.maf_c01414{transform:matrix(0.168521,0.002528,-0.003750,0.249972,0,0);-ms-transform:matrix(0.168521,0.002528,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.168521,0.002528,-0.003750,0.249972,0,0);}
.mb0_c01414{transform:matrix(0.170361,0.002555,-0.003750,0.249972,0,0);-ms-transform:matrix(0.170361,0.002555,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.170361,0.002555,-0.003750,0.249972,0,0);}
.mfd_c01414{transform:matrix(0.171325,0.002913,-0.004249,0.249964,0,0);-ms-transform:matrix(0.171325,0.002913,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.171325,0.002913,-0.004249,0.249964,0,0);}
.ma_c01414{transform:matrix(0.174810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174810,0.000000,0.000000,0.250000,0,0);}
.m138_c01414{transform:matrix(0.176480,0.002294,-0.003250,0.249979,0,0);-ms-transform:matrix(0.176480,0.002294,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.176480,0.002294,-0.003250,0.249979,0,0);}
.m91_c01414{transform:matrix(0.177090,0.002656,-0.003750,0.249972,0,0);-ms-transform:matrix(0.177090,0.002656,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.177090,0.002656,-0.003750,0.249972,0,0);}
.m77_c01414{transform:matrix(0.177323,0.002483,-0.003500,0.249976,0,0);-ms-transform:matrix(0.177323,0.002483,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.177323,0.002483,-0.003500,0.249976,0,0);}
.m8b_c01414{transform:matrix(0.178885,0.002683,-0.003750,0.249972,0,0);-ms-transform:matrix(0.178885,0.002683,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.178885,0.002683,-0.003750,0.249972,0,0);}
.m87_c01414{transform:matrix(0.180147,0.002522,-0.003500,0.249976,0,0);-ms-transform:matrix(0.180147,0.002522,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.180147,0.002522,-0.003500,0.249976,0,0);}
.m93_c01414{transform:matrix(0.181480,0.002722,-0.003750,0.249972,0,0);-ms-transform:matrix(0.181480,0.002722,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.181480,0.002722,-0.003750,0.249972,0,0);}
.m120_c01414{transform:matrix(0.184198,0.003131,-0.004249,0.249964,0,0);-ms-transform:matrix(0.184198,0.003131,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.184198,0.003131,-0.004249,0.249964,0,0);}
.m133_c01414{transform:matrix(0.184729,0.002401,-0.003250,0.249979,0,0);-ms-transform:matrix(0.184729,0.002401,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.184729,0.002401,-0.003250,0.249979,0,0);}
.m131_c01414{transform:matrix(0.187219,0.002434,-0.003250,0.249979,0,0);-ms-transform:matrix(0.187219,0.002434,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.187219,0.002434,-0.003250,0.249979,0,0);}
.mf4_c01414{transform:matrix(0.189588,0.003223,-0.004249,0.249964,0,0);-ms-transform:matrix(0.189588,0.003223,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.189588,0.003223,-0.004249,0.249964,0,0);}
.m8a_c01414{transform:matrix(0.189954,0.002849,-0.003750,0.249972,0,0);-ms-transform:matrix(0.189954,0.002849,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.189954,0.002849,-0.003750,0.249972,0,0);}
.m134_c01414{transform:matrix(0.190589,0.002478,-0.003250,0.249979,0,0);-ms-transform:matrix(0.190589,0.002478,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.190589,0.002478,-0.003250,0.249979,0,0);}
.m8f_c01414{transform:matrix(0.190604,0.002859,-0.003750,0.249972,0,0);-ms-transform:matrix(0.190604,0.002859,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.190604,0.002859,-0.003750,0.249972,0,0);}
.m5d_c01414{transform:matrix(0.190976,0.002674,-0.003500,0.249976,0,0);-ms-transform:matrix(0.190976,0.002674,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.190976,0.002674,-0.003500,0.249976,0,0);}
.m90_c01414{transform:matrix(0.191233,0.002869,-0.003750,0.249972,0,0);-ms-transform:matrix(0.191233,0.002869,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.191233,0.002869,-0.003750,0.249972,0,0);}
.m9a_c01414{transform:matrix(0.193193,0.002898,-0.003750,0.249972,0,0);-ms-transform:matrix(0.193193,0.002898,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.193193,0.002898,-0.003750,0.249972,0,0);}
.m80_c01414{transform:matrix(0.193291,0.002706,-0.003500,0.249976,0,0);-ms-transform:matrix(0.193291,0.002706,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.193291,0.002706,-0.003500,0.249976,0,0);}
.mf6_c01414{transform:matrix(0.193712,0.003293,-0.004249,0.249964,0,0);-ms-transform:matrix(0.193712,0.003293,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.193712,0.003293,-0.004249,0.249964,0,0);}
.mf7_c01414{transform:matrix(0.194547,0.003307,-0.004249,0.249964,0,0);-ms-transform:matrix(0.194547,0.003307,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.194547,0.003307,-0.004249,0.249964,0,0);}
.m135_c01414{transform:matrix(0.195054,0.002536,-0.003250,0.249979,0,0);-ms-transform:matrix(0.195054,0.002536,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.195054,0.002536,-0.003250,0.249979,0,0);}
.m2c_c01414{transform:matrix(0.195061,0.002731,-0.003500,0.249976,0,0);-ms-transform:matrix(0.195061,0.002731,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.195061,0.002731,-0.003500,0.249976,0,0);}
.m8d_c01414{transform:matrix(0.195238,0.002929,-0.003750,0.249972,0,0);-ms-transform:matrix(0.195238,0.002929,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.195238,0.002929,-0.003750,0.249972,0,0);}
.m8e_c01414{transform:matrix(0.195343,0.002930,-0.003750,0.249972,0,0);-ms-transform:matrix(0.195343,0.002930,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.195343,0.002930,-0.003750,0.249972,0,0);}
.mfe_c01414{transform:matrix(0.195512,0.003324,-0.004249,0.249964,0,0);-ms-transform:matrix(0.195512,0.003324,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.195512,0.003324,-0.004249,0.249964,0,0);}
.m121_c01414{transform:matrix(0.196487,0.003340,-0.004249,0.249964,0,0);-ms-transform:matrix(0.196487,0.003340,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.196487,0.003340,-0.004249,0.249964,0,0);}
.m125_c01414{transform:matrix(0.197391,0.003356,-0.004249,0.249964,0,0);-ms-transform:matrix(0.197391,0.003356,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.197391,0.003356,-0.004249,0.249964,0,0);}
.mcc_c01414{transform:matrix(0.197398,0.002961,-0.003750,0.249972,0,0);-ms-transform:matrix(0.197398,0.002961,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.197398,0.002961,-0.003750,0.249972,0,0);}
.m75_c01414{transform:matrix(0.197666,0.002767,-0.003500,0.249976,0,0);-ms-transform:matrix(0.197666,0.002767,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.197666,0.002767,-0.003500,0.249976,0,0);}
.mc9_c01414{transform:matrix(0.198353,0.002975,-0.003750,0.249972,0,0);-ms-transform:matrix(0.198353,0.002975,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.198353,0.002975,-0.003750,0.249972,0,0);}
.m2e_c01414{transform:matrix(0.198381,0.002777,-0.003500,0.249976,0,0);-ms-transform:matrix(0.198381,0.002777,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.198381,0.002777,-0.003500,0.249976,0,0);}
.m86_c01414{transform:matrix(0.199400,0.002792,-0.003500,0.249976,0,0);-ms-transform:matrix(0.199400,0.002792,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.199400,0.002792,-0.003500,0.249976,0,0);}
.mce_c01414{transform:matrix(0.199678,0.002995,-0.003750,0.249972,0,0);-ms-transform:matrix(0.199678,0.002995,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.199678,0.002995,-0.003750,0.249972,0,0);}
.m7a_c01414{transform:matrix(0.199810,0.002797,-0.003500,0.249976,0,0);-ms-transform:matrix(0.199810,0.002797,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.199810,0.002797,-0.003500,0.249976,0,0);}
.m12d_c01414{transform:matrix(0.199983,0.002600,-0.003250,0.249979,0,0);-ms-transform:matrix(0.199983,0.002600,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.199983,0.002600,-0.003250,0.249979,0,0);}
.mdc_c01414{transform:matrix(0.200322,0.003005,-0.003750,0.249972,0,0);-ms-transform:matrix(0.200322,0.003005,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.200322,0.003005,-0.003750,0.249972,0,0);}
.m47_c01414{transform:matrix(0.200515,0.002807,-0.003500,0.249976,0,0);-ms-transform:matrix(0.200515,0.002807,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.200515,0.002807,-0.003500,0.249976,0,0);}
.m3a_c01414{transform:matrix(0.200930,0.002813,-0.003500,0.249976,0,0);-ms-transform:matrix(0.200930,0.002813,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.200930,0.002813,-0.003500,0.249976,0,0);}
.md5_c01414{transform:matrix(0.201007,0.003015,-0.003750,0.249972,0,0);-ms-transform:matrix(0.201007,0.003015,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.201007,0.003015,-0.003750,0.249972,0,0);}
.mc4_c01414{transform:matrix(0.201472,0.003022,-0.003750,0.249972,0,0);-ms-transform:matrix(0.201472,0.003022,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.201472,0.003022,-0.003750,0.249972,0,0);}
.m7b_c01414{transform:matrix(0.201510,0.002821,-0.003500,0.249976,0,0);-ms-transform:matrix(0.201510,0.002821,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.201510,0.002821,-0.003500,0.249976,0,0);}
.mc6_c01414{transform:matrix(0.202642,0.003040,-0.003750,0.249972,0,0);-ms-transform:matrix(0.202642,0.003040,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.202642,0.003040,-0.003750,0.249972,0,0);}
.m132_c01414{transform:matrix(0.202993,0.002639,-0.003250,0.249979,0,0);-ms-transform:matrix(0.202993,0.002639,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.202993,0.002639,-0.003250,0.249979,0,0);}
.m8c_c01414{transform:matrix(0.204637,0.003070,-0.003750,0.249972,0,0);-ms-transform:matrix(0.204637,0.003070,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.204637,0.003070,-0.003750,0.249972,0,0);}
.mdf_c01414{transform:matrix(0.205822,0.003087,-0.003750,0.249972,0,0);-ms-transform:matrix(0.205822,0.003087,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.205822,0.003087,-0.003750,0.249972,0,0);}
.md8_c01414{transform:matrix(0.206237,0.003094,-0.003750,0.249972,0,0);-ms-transform:matrix(0.206237,0.003094,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.206237,0.003094,-0.003750,0.249972,0,0);}
.m81_c01414{transform:matrix(0.206240,0.002887,-0.003500,0.249976,0,0);-ms-transform:matrix(0.206240,0.002887,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.206240,0.002887,-0.003500,0.249976,0,0);}
.m130_c01414{transform:matrix(0.206443,0.002684,-0.003250,0.249979,0,0);-ms-transform:matrix(0.206443,0.002684,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.206443,0.002684,-0.003250,0.249979,0,0);}
.m4b_c01414{transform:matrix(0.207405,0.002904,-0.003500,0.249976,0,0);-ms-transform:matrix(0.207405,0.002904,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.207405,0.002904,-0.003500,0.249976,0,0);}
.m139_c01414{transform:matrix(0.207422,0.002696,-0.003250,0.249979,0,0);-ms-transform:matrix(0.207422,0.002696,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.207422,0.002696,-0.003250,0.249979,0,0);}
.m84_c01414{transform:matrix(0.207970,0.002912,-0.003500,0.249976,0,0);-ms-transform:matrix(0.207970,0.002912,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.207970,0.002912,-0.003500,0.249976,0,0);}
.m45_c01414{transform:matrix(0.208015,0.002912,-0.003500,0.249976,0,0);-ms-transform:matrix(0.208015,0.002912,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.208015,0.002912,-0.003500,0.249976,0,0);}
.m83_c01414{transform:matrix(0.208045,0.002913,-0.003500,0.249976,0,0);-ms-transform:matrix(0.208045,0.002913,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.208045,0.002913,-0.003500,0.249976,0,0);}
.m11f_c01414{transform:matrix(0.208575,0.003546,-0.004249,0.249964,0,0);-ms-transform:matrix(0.208575,0.003546,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.208575,0.003546,-0.004249,0.249964,0,0);}
.md7_c01414{transform:matrix(0.209206,0.003138,-0.003750,0.249972,0,0);-ms-transform:matrix(0.209206,0.003138,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.209206,0.003138,-0.003750,0.249972,0,0);}
.mda_c01414{transform:matrix(0.209266,0.003139,-0.003750,0.249972,0,0);-ms-transform:matrix(0.209266,0.003139,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.209266,0.003139,-0.003750,0.249972,0,0);}
.mdd_c01414{transform:matrix(0.209856,0.003148,-0.003750,0.249972,0,0);-ms-transform:matrix(0.209856,0.003148,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.209856,0.003148,-0.003750,0.249972,0,0);}
.m36_c01414{transform:matrix(0.209914,0.002939,-0.003500,0.249976,0,0);-ms-transform:matrix(0.209914,0.002939,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.209914,0.002939,-0.003500,0.249976,0,0);}
.mf_c01414{transform:matrix(0.210060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210060,0.000000,0.000000,0.250000,0,0);}
.m79_c01414{transform:matrix(0.211639,0.002963,-0.003500,0.249976,0,0);-ms-transform:matrix(0.211639,0.002963,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.211639,0.002963,-0.003500,0.249976,0,0);}
.mca_c01414{transform:matrix(0.211676,0.003175,-0.003750,0.249972,0,0);-ms-transform:matrix(0.211676,0.003175,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.211676,0.003175,-0.003750,0.249972,0,0);}
.m46_c01414{transform:matrix(0.211749,0.002964,-0.003500,0.249976,0,0);-ms-transform:matrix(0.211749,0.002964,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.211749,0.002964,-0.003500,0.249976,0,0);}
.m92_c01414{transform:matrix(0.211876,0.003178,-0.003750,0.249972,0,0);-ms-transform:matrix(0.211876,0.003178,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.211876,0.003178,-0.003750,0.249972,0,0);}
.m12e_c01414{transform:matrix(0.211977,0.002756,-0.003250,0.249979,0,0);-ms-transform:matrix(0.211977,0.002756,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.211977,0.002756,-0.003250,0.249979,0,0);}
.m122_c01414{transform:matrix(0.213224,0.003625,-0.004249,0.249964,0,0);-ms-transform:matrix(0.213224,0.003625,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.213224,0.003625,-0.004249,0.249964,0,0);}
.m99_c01414{transform:matrix(0.213611,0.003204,-0.003750,0.249972,0,0);-ms-transform:matrix(0.213611,0.003204,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.213611,0.003204,-0.003750,0.249972,0,0);}
.m71_c01414{transform:matrix(0.213614,0.002991,-0.003500,0.249976,0,0);-ms-transform:matrix(0.213614,0.002991,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.213614,0.002991,-0.003500,0.249976,0,0);}
.md0_c01414{transform:matrix(0.213961,0.003209,-0.003750,0.249972,0,0);-ms-transform:matrix(0.213961,0.003209,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.213961,0.003209,-0.003750,0.249972,0,0);}
.m42_c01414{transform:matrix(0.214704,0.003006,-0.003500,0.249976,0,0);-ms-transform:matrix(0.214704,0.003006,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.214704,0.003006,-0.003500,0.249976,0,0);}
.m30_c01414{transform:matrix(0.215039,0.003011,-0.003500,0.249976,0,0);-ms-transform:matrix(0.215039,0.003011,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.215039,0.003011,-0.003500,0.249976,0,0);}
.m43_c01414{transform:matrix(0.215464,0.003016,-0.003500,0.249976,0,0);-ms-transform:matrix(0.215464,0.003016,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.215464,0.003016,-0.003500,0.249976,0,0);}
.m58_c01414{transform:matrix(0.215684,0.003020,-0.003500,0.249976,0,0);-ms-transform:matrix(0.215684,0.003020,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.215684,0.003020,-0.003500,0.249976,0,0);}
.mea_c01414{transform:matrix(0.215724,0.003667,-0.004249,0.249964,0,0);-ms-transform:matrix(0.215724,0.003667,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.215724,0.003667,-0.004249,0.249964,0,0);}
.mbd_c01414{transform:matrix(0.215731,0.003236,-0.003750,0.249972,0,0);-ms-transform:matrix(0.215731,0.003236,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.215731,0.003236,-0.003750,0.249972,0,0);}
.m32_c01414{transform:matrix(0.215794,0.003021,-0.003500,0.249976,0,0);-ms-transform:matrix(0.215794,0.003021,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.215794,0.003021,-0.003500,0.249976,0,0);}
.m78_c01414{transform:matrix(0.215934,0.003023,-0.003500,0.249976,0,0);-ms-transform:matrix(0.215934,0.003023,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.215934,0.003023,-0.003500,0.249976,0,0);}
.m12_c01414{transform:matrix(0.216470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216470,0.000000,0.000000,0.250000,0,0);}
.m126_c01414{transform:matrix(0.216709,0.003684,-0.004249,0.249964,0,0);-ms-transform:matrix(0.216709,0.003684,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.216709,0.003684,-0.004249,0.249964,0,0);}
.m63_c01414{transform:matrix(0.216769,0.003035,-0.003500,0.249976,0,0);-ms-transform:matrix(0.216769,0.003035,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.216769,0.003035,-0.003500,0.249976,0,0);}
.mbb_c01414{transform:matrix(0.216971,0.003255,-0.003750,0.249972,0,0);-ms-transform:matrix(0.216971,0.003255,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.216971,0.003255,-0.003750,0.249972,0,0);}
.m5f_c01414{transform:matrix(0.216974,0.003038,-0.003500,0.249976,0,0);-ms-transform:matrix(0.216974,0.003038,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.216974,0.003038,-0.003500,0.249976,0,0);}
.me4_c01414{transform:matrix(0.217674,0.003700,-0.004249,0.249964,0,0);-ms-transform:matrix(0.217674,0.003700,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.217674,0.003700,-0.004249,0.249964,0,0);}
.mb8_c01414{transform:matrix(0.217820,0.003267,-0.003750,0.249972,0,0);-ms-transform:matrix(0.217820,0.003267,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.217820,0.003267,-0.003750,0.249972,0,0);}
.m85_c01414{transform:matrix(0.218814,0.003063,-0.003500,0.249976,0,0);-ms-transform:matrix(0.218814,0.003063,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.218814,0.003063,-0.003500,0.249976,0,0);}
.m6a_c01414{transform:matrix(0.218904,0.003065,-0.003500,0.249976,0,0);-ms-transform:matrix(0.218904,0.003065,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.218904,0.003065,-0.003500,0.249976,0,0);}
.m59_c01414{transform:matrix(0.219139,0.003068,-0.003500,0.249976,0,0);-ms-transform:matrix(0.219139,0.003068,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.219139,0.003068,-0.003500,0.249976,0,0);}
.m82_c01414{transform:matrix(0.219189,0.003069,-0.003500,0.249976,0,0);-ms-transform:matrix(0.219189,0.003069,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.219189,0.003069,-0.003500,0.249976,0,0);}
.mcd_c01414{transform:matrix(0.219435,0.003292,-0.003750,0.249972,0,0);-ms-transform:matrix(0.219435,0.003292,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.219435,0.003292,-0.003750,0.249972,0,0);}
.md1_c01414{transform:matrix(0.219880,0.003298,-0.003750,0.249972,0,0);-ms-transform:matrix(0.219880,0.003298,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.219880,0.003298,-0.003750,0.249972,0,0);}
.me7_c01414{transform:matrix(0.220593,0.003750,-0.004249,0.249964,0,0);-ms-transform:matrix(0.220593,0.003750,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.220593,0.003750,-0.004249,0.249964,0,0);}
.m113_c01414{transform:matrix(0.220833,0.003754,-0.004249,0.249964,0,0);-ms-transform:matrix(0.220833,0.003754,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.220833,0.003754,-0.004249,0.249964,0,0);}
.mc0_c01414{transform:matrix(0.220865,0.003313,-0.003750,0.249972,0,0);-ms-transform:matrix(0.220865,0.003313,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.220865,0.003313,-0.003750,0.249972,0,0);}
.m34_c01414{transform:matrix(0.220868,0.003092,-0.003500,0.249976,0,0);-ms-transform:matrix(0.220868,0.003092,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.220868,0.003092,-0.003500,0.249976,0,0);}
.mcf_c01414{transform:matrix(0.221255,0.003319,-0.003750,0.249972,0,0);-ms-transform:matrix(0.221255,0.003319,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.221255,0.003319,-0.003750,0.249972,0,0);}
.m4f_c01414{transform:matrix(0.221433,0.003100,-0.003500,0.249976,0,0);-ms-transform:matrix(0.221433,0.003100,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.221433,0.003100,-0.003500,0.249976,0,0);}
.m49_c01414{transform:matrix(0.221573,0.003102,-0.003500,0.249976,0,0);-ms-transform:matrix(0.221573,0.003102,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.221573,0.003102,-0.003500,0.249976,0,0);}
.m53_c01414{transform:matrix(0.221658,0.003103,-0.003500,0.249976,0,0);-ms-transform:matrix(0.221658,0.003103,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.221658,0.003103,-0.003500,0.249976,0,0);}
.m38_c01414{transform:matrix(0.222468,0.003115,-0.003500,0.249976,0,0);-ms-transform:matrix(0.222468,0.003115,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.222468,0.003115,-0.003500,0.249976,0,0);}
.me6_c01414{transform:matrix(0.222703,0.003786,-0.004249,0.249964,0,0);-ms-transform:matrix(0.222703,0.003786,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.222703,0.003786,-0.004249,0.249964,0,0);}
.m5e_c01414{transform:matrix(0.222713,0.003118,-0.003500,0.249976,0,0);-ms-transform:matrix(0.222713,0.003118,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.222713,0.003118,-0.003500,0.249976,0,0);}
.m48_c01414{transform:matrix(0.222973,0.003122,-0.003500,0.249976,0,0);-ms-transform:matrix(0.222973,0.003122,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.222973,0.003122,-0.003500,0.249976,0,0);}
.m4e_c01414{transform:matrix(0.223443,0.003128,-0.003500,0.249976,0,0);-ms-transform:matrix(0.223443,0.003128,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.223443,0.003128,-0.003500,0.249976,0,0);}
.m11d_c01414{transform:matrix(0.224703,0.003820,-0.004249,0.249964,0,0);-ms-transform:matrix(0.224703,0.003820,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.224703,0.003820,-0.004249,0.249964,0,0);}
.m7c_c01414{transform:matrix(0.224768,0.003147,-0.003500,0.249976,0,0);-ms-transform:matrix(0.224768,0.003147,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.224768,0.003147,-0.003500,0.249976,0,0);}
.m12f_c01414{transform:matrix(0.225166,0.002927,-0.003250,0.249979,0,0);-ms-transform:matrix(0.225166,0.002927,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.225166,0.002927,-0.003250,0.249979,0,0);}
.md3_c01414{transform:matrix(0.225220,0.003378,-0.003750,0.249972,0,0);-ms-transform:matrix(0.225220,0.003378,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.225220,0.003378,-0.003750,0.249972,0,0);}
.m61_c01414{transform:matrix(0.225443,0.003156,-0.003500,0.249976,0,0);-ms-transform:matrix(0.225443,0.003156,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.225443,0.003156,-0.003500,0.249976,0,0);}
.m6f_c01414{transform:matrix(0.225648,0.003159,-0.003500,0.249976,0,0);-ms-transform:matrix(0.225648,0.003159,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.225648,0.003159,-0.003500,0.249976,0,0);}
.m76_c01414{transform:matrix(0.226038,0.003165,-0.003500,0.249976,0,0);-ms-transform:matrix(0.226038,0.003165,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.226038,0.003165,-0.003500,0.249976,0,0);}
.m55_c01414{transform:matrix(0.226333,0.003169,-0.003500,0.249976,0,0);-ms-transform:matrix(0.226333,0.003169,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.226333,0.003169,-0.003500,0.249976,0,0);}
.md4_c01414{transform:matrix(0.226839,0.003403,-0.003750,0.249972,0,0);-ms-transform:matrix(0.226839,0.003403,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.226839,0.003403,-0.003750,0.249972,0,0);}
.m10a_c01414{transform:matrix(0.226932,0.003858,-0.004249,0.249964,0,0);-ms-transform:matrix(0.226932,0.003858,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.226932,0.003858,-0.004249,0.249964,0,0);}
.md2_c01414{transform:matrix(0.227094,0.003406,-0.003750,0.249972,0,0);-ms-transform:matrix(0.227094,0.003406,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.227094,0.003406,-0.003750,0.249972,0,0);}
.m12a_c01414{transform:matrix(0.227202,0.003862,-0.004249,0.249964,0,0);-ms-transform:matrix(0.227202,0.003862,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.227202,0.003862,-0.004249,0.249964,0,0);}
.m72_c01414{transform:matrix(0.227238,0.003181,-0.003500,0.249976,0,0);-ms-transform:matrix(0.227238,0.003181,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.227238,0.003181,-0.003500,0.249976,0,0);}
.m4a_c01414{transform:matrix(0.227668,0.003187,-0.003500,0.249976,0,0);-ms-transform:matrix(0.227668,0.003187,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.227668,0.003187,-0.003500,0.249976,0,0);}
.m6c_c01414{transform:matrix(0.227923,0.003191,-0.003500,0.249976,0,0);-ms-transform:matrix(0.227923,0.003191,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.227923,0.003191,-0.003500,0.249976,0,0);}
.ma2_c01414{transform:matrix(0.228064,0.003421,-0.003750,0.249972,0,0);-ms-transform:matrix(0.228064,0.003421,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.228064,0.003421,-0.003750,0.249972,0,0);}
.mc5_c01414{transform:matrix(0.228144,0.003422,-0.003750,0.249972,0,0);-ms-transform:matrix(0.228144,0.003422,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.228144,0.003422,-0.003750,0.249972,0,0);}
.mec_c01414{transform:matrix(0.228167,0.003879,-0.004249,0.249964,0,0);-ms-transform:matrix(0.228167,0.003879,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.228167,0.003879,-0.004249,0.249964,0,0);}
.m2b_c01414{transform:matrix(0.228258,0.003196,-0.003500,0.249976,0,0);-ms-transform:matrix(0.228258,0.003196,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.228258,0.003196,-0.003500,0.249976,0,0);}
.med_c01414{transform:matrix(0.228532,0.003885,-0.004249,0.249964,0,0);-ms-transform:matrix(0.228532,0.003885,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.228532,0.003885,-0.004249,0.249964,0,0);}
.m44_c01414{transform:matrix(0.228703,0.003202,-0.003500,0.249976,0,0);-ms-transform:matrix(0.228703,0.003202,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.228703,0.003202,-0.003500,0.249976,0,0);}
.m6d_c01414{transform:matrix(0.229183,0.003209,-0.003500,0.249976,0,0);-ms-transform:matrix(0.229183,0.003209,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.229183,0.003209,-0.003500,0.249976,0,0);}
.m10f_c01414{transform:matrix(0.229187,0.003896,-0.004249,0.249964,0,0);-ms-transform:matrix(0.229187,0.003896,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.229187,0.003896,-0.004249,0.249964,0,0);}
.mc7_c01414{transform:matrix(0.229574,0.003444,-0.003750,0.249972,0,0);-ms-transform:matrix(0.229574,0.003444,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.229574,0.003444,-0.003750,0.249972,0,0);}
.md9_c01414{transform:matrix(0.229714,0.003446,-0.003750,0.249972,0,0);-ms-transform:matrix(0.229714,0.003446,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.229714,0.003446,-0.003750,0.249972,0,0);}
.m127_c01414{transform:matrix(0.230142,0.003912,-0.004249,0.249964,0,0);-ms-transform:matrix(0.230142,0.003912,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.230142,0.003912,-0.004249,0.249964,0,0);}
.m54_c01414{transform:matrix(0.230362,0.003225,-0.003500,0.249976,0,0);-ms-transform:matrix(0.230362,0.003225,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.230362,0.003225,-0.003500,0.249976,0,0);}
.mee_c01414{transform:matrix(0.230412,0.003917,-0.004249,0.249964,0,0);-ms-transform:matrix(0.230412,0.003917,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.230412,0.003917,-0.004249,0.249964,0,0);}
.mfc_c01414{transform:matrix(0.230442,0.003918,-0.004249,0.249964,0,0);-ms-transform:matrix(0.230442,0.003918,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.230442,0.003918,-0.004249,0.249964,0,0);}
.m64_c01414{transform:matrix(0.230777,0.003231,-0.003500,0.249976,0,0);-ms-transform:matrix(0.230777,0.003231,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.230777,0.003231,-0.003500,0.249976,0,0);}
.m7f_c01414{transform:matrix(0.230962,0.003233,-0.003500,0.249976,0,0);-ms-transform:matrix(0.230962,0.003233,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.230962,0.003233,-0.003500,0.249976,0,0);}
.m73_c01414{transform:matrix(0.231077,0.003235,-0.003500,0.249976,0,0);-ms-transform:matrix(0.231077,0.003235,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.231077,0.003235,-0.003500,0.249976,0,0);}
.m52_c01414{transform:matrix(0.231102,0.003235,-0.003500,0.249976,0,0);-ms-transform:matrix(0.231102,0.003235,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.231102,0.003235,-0.003500,0.249976,0,0);}
.me8_c01414{transform:matrix(0.231127,0.003929,-0.004249,0.249964,0,0);-ms-transform:matrix(0.231127,0.003929,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.231127,0.003929,-0.004249,0.249964,0,0);}
.m123_c01414{transform:matrix(0.231317,0.003932,-0.004249,0.249964,0,0);-ms-transform:matrix(0.231317,0.003932,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.231317,0.003932,-0.004249,0.249964,0,0);}
.mb9_c01414{transform:matrix(0.231674,0.003475,-0.003750,0.249972,0,0);-ms-transform:matrix(0.231674,0.003475,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.231674,0.003475,-0.003750,0.249972,0,0);}
.m97_c01414{transform:matrix(0.232469,0.003487,-0.003750,0.249972,0,0);-ms-transform:matrix(0.232469,0.003487,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.232469,0.003487,-0.003750,0.249972,0,0);}
.m129_c01414{transform:matrix(0.233481,0.003969,-0.004249,0.249964,0,0);-ms-transform:matrix(0.233481,0.003969,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.233481,0.003969,-0.004249,0.249964,0,0);}
.m102_c01414{transform:matrix(0.233646,0.003972,-0.004249,0.249964,0,0);-ms-transform:matrix(0.233646,0.003972,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.233646,0.003972,-0.004249,0.249964,0,0);}
.m60_c01414{transform:matrix(0.234322,0.003281,-0.003500,0.249976,0,0);-ms-transform:matrix(0.234322,0.003281,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.234322,0.003281,-0.003500,0.249976,0,0);}
.ma7_c01414{transform:matrix(0.234759,0.003521,-0.003750,0.249972,0,0);-ms-transform:matrix(0.234759,0.003521,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.234759,0.003521,-0.003750,0.249972,0,0);}
.m19_c01414{transform:matrix(0.234832,0.003288,-0.003500,0.249976,0,0);-ms-transform:matrix(0.234832,0.003288,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.234832,0.003288,-0.003500,0.249976,0,0);}
.m6b_c01414{transform:matrix(0.234867,0.003288,-0.003500,0.249976,0,0);-ms-transform:matrix(0.234867,0.003288,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.234867,0.003288,-0.003500,0.249976,0,0);}
.m128_c01414{transform:matrix(0.234941,0.003994,-0.004249,0.249964,0,0);-ms-transform:matrix(0.234941,0.003994,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.234941,0.003994,-0.004249,0.249964,0,0);}
.m9c_c01414{transform:matrix(0.235064,0.003526,-0.003750,0.249972,0,0);-ms-transform:matrix(0.235064,0.003526,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.235064,0.003526,-0.003750,0.249972,0,0);}
.m9b_c01414{transform:matrix(0.235104,0.003527,-0.003750,0.249972,0,0);-ms-transform:matrix(0.235104,0.003527,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.235104,0.003527,-0.003750,0.249972,0,0);}
.mcb_c01414{transform:matrix(0.235888,0.003538,-0.003750,0.249972,0,0);-ms-transform:matrix(0.235888,0.003538,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.235888,0.003538,-0.003750,0.249972,0,0);}
.m68_c01414{transform:matrix(0.235897,0.003303,-0.003500,0.249976,0,0);-ms-transform:matrix(0.235897,0.003303,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.235897,0.003303,-0.003500,0.249976,0,0);}
.m3f_c01414{transform:matrix(0.236047,0.003305,-0.003500,0.249976,0,0);-ms-transform:matrix(0.236047,0.003305,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.236047,0.003305,-0.003500,0.249976,0,0);}
.m33_c01414{transform:matrix(0.236227,0.003307,-0.003500,0.249976,0,0);-ms-transform:matrix(0.236227,0.003307,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.236227,0.003307,-0.003500,0.249976,0,0);}
.m11c_c01414{transform:matrix(0.237151,0.004032,-0.004249,0.249964,0,0);-ms-transform:matrix(0.237151,0.004032,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.237151,0.004032,-0.004249,0.249964,0,0);}
.meb_c01414{transform:matrix(0.237551,0.004038,-0.004249,0.249964,0,0);-ms-transform:matrix(0.237551,0.004038,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.237551,0.004038,-0.004249,0.249964,0,0);}
.md6_c01414{transform:matrix(0.237698,0.003565,-0.003750,0.249972,0,0);-ms-transform:matrix(0.237698,0.003565,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.237698,0.003565,-0.003750,0.249972,0,0);}
.m66_c01414{transform:matrix(0.237717,0.003328,-0.003500,0.249976,0,0);-ms-transform:matrix(0.237717,0.003328,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.237717,0.003328,-0.003500,0.249976,0,0);}
.m51_c01414{transform:matrix(0.237882,0.003330,-0.003500,0.249976,0,0);-ms-transform:matrix(0.237882,0.003330,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.237882,0.003330,-0.003500,0.249976,0,0);}
.mdb_c01414{transform:matrix(0.237988,0.003570,-0.003750,0.249972,0,0);-ms-transform:matrix(0.237988,0.003570,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.237988,0.003570,-0.003750,0.249972,0,0);}
.ma0_c01414{transform:matrix(0.237998,0.003570,-0.003750,0.249972,0,0);-ms-transform:matrix(0.237998,0.003570,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.237998,0.003570,-0.003750,0.249972,0,0);}
.m9e_c01414{transform:matrix(0.238013,0.003570,-0.003750,0.249972,0,0);-ms-transform:matrix(0.238013,0.003570,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.238013,0.003570,-0.003750,0.249972,0,0);}
.m3b_c01414{transform:matrix(0.238172,0.003334,-0.003500,0.249976,0,0);-ms-transform:matrix(0.238172,0.003334,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.238172,0.003334,-0.003500,0.249976,0,0);}
.m105_c01414{transform:matrix(0.238181,0.004049,-0.004249,0.249964,0,0);-ms-transform:matrix(0.238181,0.004049,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.238181,0.004049,-0.004249,0.249964,0,0);}
.m96_c01414{transform:matrix(0.238273,0.003574,-0.003750,0.249972,0,0);-ms-transform:matrix(0.238273,0.003574,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.238273,0.003574,-0.003750,0.249972,0,0);}
.mc3_c01414{transform:matrix(0.238418,0.003576,-0.003750,0.249972,0,0);-ms-transform:matrix(0.238418,0.003576,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.238418,0.003576,-0.003750,0.249972,0,0);}
.m119_c01414{transform:matrix(0.238501,0.004055,-0.004249,0.249964,0,0);-ms-transform:matrix(0.238501,0.004055,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.238501,0.004055,-0.004249,0.249964,0,0);}
.ma4_c01414{transform:matrix(0.238578,0.003579,-0.003750,0.249972,0,0);-ms-transform:matrix(0.238578,0.003579,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.238578,0.003579,-0.003750,0.249972,0,0);}
.mc8_c01414{transform:matrix(0.238613,0.003579,-0.003750,0.249972,0,0);-ms-transform:matrix(0.238613,0.003579,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.238613,0.003579,-0.003750,0.249972,0,0);}
.me3_c01414{transform:matrix(0.238681,0.004058,-0.004249,0.249964,0,0);-ms-transform:matrix(0.238681,0.004058,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.238681,0.004058,-0.004249,0.249964,0,0);}
.m3c_c01414{transform:matrix(0.238967,0.003346,-0.003500,0.249976,0,0);-ms-transform:matrix(0.238967,0.003346,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.238967,0.003346,-0.003500,0.249976,0,0);}
.m20_c01414{transform:matrix(0.239247,0.003349,-0.003500,0.249976,0,0);-ms-transform:matrix(0.239247,0.003349,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.239247,0.003349,-0.003500,0.249976,0,0);}
.m37_c01414{transform:matrix(0.239312,0.003350,-0.003500,0.249976,0,0);-ms-transform:matrix(0.239312,0.003350,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.239312,0.003350,-0.003500,0.249976,0,0);}
.m62_c01414{transform:matrix(0.239432,0.003352,-0.003500,0.249976,0,0);-ms-transform:matrix(0.239432,0.003352,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.239432,0.003352,-0.003500,0.249976,0,0);}
.ma9_c01414{transform:matrix(0.239883,0.003598,-0.003750,0.249972,0,0);-ms-transform:matrix(0.239883,0.003598,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.239883,0.003598,-0.003750,0.249972,0,0);}
.me2_c01414{transform:matrix(0.240350,0.004086,-0.004249,0.249964,0,0);-ms-transform:matrix(0.240350,0.004086,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.240350,0.004086,-0.004249,0.249964,0,0);}
.m23_c01414{transform:matrix(0.240611,0.003369,-0.003500,0.249976,0,0);-ms-transform:matrix(0.240611,0.003369,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.240611,0.003369,-0.003500,0.249976,0,0);}
.m65_c01414{transform:matrix(0.240771,0.003371,-0.003500,0.249976,0,0);-ms-transform:matrix(0.240771,0.003371,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.240771,0.003371,-0.003500,0.249976,0,0);}
.m10d_c01414{transform:matrix(0.240785,0.004093,-0.004249,0.249964,0,0);-ms-transform:matrix(0.240785,0.004093,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.240785,0.004093,-0.004249,0.249964,0,0);}
.m110_c01414{transform:matrix(0.241035,0.004098,-0.004249,0.249964,0,0);-ms-transform:matrix(0.241035,0.004098,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.241035,0.004098,-0.004249,0.249964,0,0);}
.mbf_c01414{transform:matrix(0.241153,0.003617,-0.003750,0.249972,0,0);-ms-transform:matrix(0.241153,0.003617,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.241153,0.003617,-0.003750,0.249972,0,0);}
.m1c_c01414{transform:matrix(0.241996,0.003388,-0.003500,0.249976,0,0);-ms-transform:matrix(0.241996,0.003388,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.241996,0.003388,-0.003500,0.249976,0,0);}
.m89_c01414{transform:matrix(0.242336,0.003393,-0.003500,0.249976,0,0);-ms-transform:matrix(0.242336,0.003393,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.242336,0.003393,-0.003500,0.249976,0,0);}
.mb_c01414{transform:matrix(0.242345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242345,0.000000,0.000000,0.250000,0,0);}
.m67_c01414{transform:matrix(0.242351,0.003393,-0.003500,0.249976,0,0);-ms-transform:matrix(0.242351,0.003393,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.242351,0.003393,-0.003500,0.249976,0,0);}
.m57_c01414{transform:matrix(0.242551,0.003396,-0.003500,0.249976,0,0);-ms-transform:matrix(0.242551,0.003396,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.242551,0.003396,-0.003500,0.249976,0,0);}
.me5_c01414{transform:matrix(0.242560,0.004124,-0.004249,0.249964,0,0);-ms-transform:matrix(0.242560,0.004124,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.242560,0.004124,-0.004249,0.249964,0,0);}
.m4d_c01414{transform:matrix(0.242886,0.003400,-0.003500,0.249976,0,0);-ms-transform:matrix(0.242886,0.003400,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.242886,0.003400,-0.003500,0.249976,0,0);}
.m35_c01414{transform:matrix(0.243026,0.003402,-0.003500,0.249976,0,0);-ms-transform:matrix(0.243026,0.003402,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.243026,0.003402,-0.003500,0.249976,0,0);}
.mf1_c01414{transform:matrix(0.243455,0.004139,-0.004249,0.249964,0,0);-ms-transform:matrix(0.243455,0.004139,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.243455,0.004139,-0.004249,0.249964,0,0);}
.mde_c01414{transform:matrix(0.243463,0.003652,-0.003750,0.249972,0,0);-ms-transform:matrix(0.243463,0.003652,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.243463,0.003652,-0.003750,0.249972,0,0);}
.m6e_c01414{transform:matrix(0.243491,0.003409,-0.003500,0.249976,0,0);-ms-transform:matrix(0.243491,0.003409,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.243491,0.003409,-0.003500,0.249976,0,0);}
.m12b_c01414{transform:matrix(0.243650,0.004142,-0.004249,0.249964,0,0);-ms-transform:matrix(0.243650,0.004142,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.243650,0.004142,-0.004249,0.249964,0,0);}
.mc1_c01414{transform:matrix(0.244088,0.003661,-0.003750,0.249972,0,0);-ms-transform:matrix(0.244088,0.003661,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.244088,0.003661,-0.003750,0.249972,0,0);}
.m109_c01414{transform:matrix(0.244275,0.004153,-0.004249,0.249964,0,0);-ms-transform:matrix(0.244275,0.004153,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.244275,0.004153,-0.004249,0.249964,0,0);}
.m95_c01414{transform:matrix(0.244288,0.003664,-0.003750,0.249972,0,0);-ms-transform:matrix(0.244288,0.003664,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.244288,0.003664,-0.003750,0.249972,0,0);}
.m69_c01414{transform:matrix(0.244376,0.003421,-0.003500,0.249976,0,0);-ms-transform:matrix(0.244376,0.003421,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.244376,0.003421,-0.003500,0.249976,0,0);}
.m50_c01414{transform:matrix(0.245331,0.003435,-0.003500,0.249976,0,0);-ms-transform:matrix(0.245331,0.003435,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.245331,0.003435,-0.003500,0.249976,0,0);}
.me9_c01414{transform:matrix(0.245475,0.004173,-0.004249,0.249964,0,0);-ms-transform:matrix(0.245475,0.004173,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.245475,0.004173,-0.004249,0.249964,0,0);}
.m29_c01414{transform:matrix(0.245576,0.003438,-0.003500,0.249976,0,0);-ms-transform:matrix(0.245576,0.003438,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.245576,0.003438,-0.003500,0.249976,0,0);}
.m100_c01414{transform:matrix(0.246169,0.004185,-0.004249,0.249964,0,0);-ms-transform:matrix(0.246169,0.004185,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.246169,0.004185,-0.004249,0.249964,0,0);}
.m111_c01414{transform:matrix(0.246319,0.004187,-0.004249,0.249964,0,0);-ms-transform:matrix(0.246319,0.004187,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.246319,0.004187,-0.004249,0.249964,0,0);}
.m103_c01414{transform:matrix(0.246809,0.004196,-0.004249,0.249964,0,0);-ms-transform:matrix(0.246809,0.004196,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.246809,0.004196,-0.004249,0.249964,0,0);}
.m1a_c01414{transform:matrix(0.247526,0.003465,-0.003500,0.249976,0,0);-ms-transform:matrix(0.247526,0.003465,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.247526,0.003465,-0.003500,0.249976,0,0);}
.m28_c01414{transform:matrix(0.247661,0.003467,-0.003500,0.249976,0,0);-ms-transform:matrix(0.247661,0.003467,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.247661,0.003467,-0.003500,0.249976,0,0);}
.m9f_c01414{transform:matrix(0.248267,0.003724,-0.003750,0.249972,0,0);-ms-transform:matrix(0.248267,0.003724,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.248267,0.003724,-0.003750,0.249972,0,0);}
.mc2_c01414{transform:matrix(0.248332,0.003725,-0.003750,0.249972,0,0);-ms-transform:matrix(0.248332,0.003725,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.248332,0.003725,-0.003750,0.249972,0,0);}
.m27_c01414{transform:matrix(0.248491,0.003479,-0.003500,0.249976,0,0);-ms-transform:matrix(0.248491,0.003479,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.248491,0.003479,-0.003500,0.249976,0,0);}
.m10c_c01414{transform:matrix(0.248599,0.004226,-0.004249,0.249964,0,0);-ms-transform:matrix(0.248599,0.004226,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.248599,0.004226,-0.004249,0.249964,0,0);}
.m116_c01414{transform:matrix(0.248624,0.004227,-0.004249,0.249964,0,0);-ms-transform:matrix(0.248624,0.004227,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.248624,0.004227,-0.004249,0.249964,0,0);}
.m56_c01414{transform:matrix(0.248681,0.003482,-0.003500,0.249976,0,0);-ms-transform:matrix(0.248681,0.003482,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.248681,0.003482,-0.003500,0.249976,0,0);}
.me1_c01414{transform:matrix(0.249619,0.004244,-0.004249,0.249964,0,0);-ms-transform:matrix(0.249619,0.004244,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.249619,0.004244,-0.004249,0.249964,0,0);}
.maa_c01414{transform:matrix(0.249622,0.003744,-0.003750,0.249972,0,0);-ms-transform:matrix(0.249622,0.003744,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.249622,0.003744,-0.003750,0.249972,0,0);}
.m9d_c01414{transform:matrix(0.249867,0.003748,-0.003750,0.249972,0,0);-ms-transform:matrix(0.249867,0.003748,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.249867,0.003748,-0.003750,0.249972,0,0);}
.m22_c01414{transform:matrix(0.249956,0.003499,-0.003500,0.249976,0,0);-ms-transform:matrix(0.249956,0.003499,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.249956,0.003499,-0.003500,0.249976,0,0);}
.mbe_c01414{transform:matrix(0.249957,0.003749,-0.003750,0.249972,0,0);-ms-transform:matrix(0.249957,0.003749,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.249957,0.003749,-0.003750,0.249972,0,0);}
.m26_c01414{transform:matrix(0.250785,0.003511,-0.003500,0.249976,0,0);-ms-transform:matrix(0.250785,0.003511,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.250785,0.003511,-0.003500,0.249976,0,0);}
.m74_c01414{transform:matrix(0.250870,0.003512,-0.003500,0.249976,0,0);-ms-transform:matrix(0.250870,0.003512,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.250870,0.003512,-0.003500,0.249976,0,0);}
.m21_c01414{transform:matrix(0.250925,0.003513,-0.003500,0.249976,0,0);-ms-transform:matrix(0.250925,0.003513,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.250925,0.003513,-0.003500,0.249976,0,0);}
.m31_c01414{transform:matrix(0.251000,0.003514,-0.003500,0.249976,0,0);-ms-transform:matrix(0.251000,0.003514,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.251000,0.003514,-0.003500,0.249976,0,0);}
.m39_c01414{transform:matrix(0.251160,0.003516,-0.003500,0.249976,0,0);-ms-transform:matrix(0.251160,0.003516,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.251160,0.003516,-0.003500,0.249976,0,0);}
.m98_c01414{transform:matrix(0.251872,0.003778,-0.003750,0.249972,0,0);-ms-transform:matrix(0.251872,0.003778,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.251872,0.003778,-0.003750,0.249972,0,0);}
.m10e_c01414{transform:matrix(0.251894,0.004282,-0.004249,0.249964,0,0);-ms-transform:matrix(0.251894,0.004282,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.251894,0.004282,-0.004249,0.249964,0,0);}
.m112_c01414{transform:matrix(0.252239,0.004288,-0.004249,0.249964,0,0);-ms-transform:matrix(0.252239,0.004288,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.252239,0.004288,-0.004249,0.249964,0,0);}
.mf0_c01414{transform:matrix(0.252369,0.004290,-0.004249,0.249964,0,0);-ms-transform:matrix(0.252369,0.004290,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.252369,0.004290,-0.004249,0.249964,0,0);}
.m2a_c01414{transform:matrix(0.252770,0.003539,-0.003500,0.249976,0,0);-ms-transform:matrix(0.252770,0.003539,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.252770,0.003539,-0.003500,0.249976,0,0);}
.m70_c01414{transform:matrix(0.253555,0.003550,-0.003500,0.249976,0,0);-ms-transform:matrix(0.253555,0.003550,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.253555,0.003550,-0.003500,0.249976,0,0);}
.mf2_c01414{transform:matrix(0.253718,0.004313,-0.004249,0.249964,0,0);-ms-transform:matrix(0.253718,0.004313,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.253718,0.004313,-0.004249,0.249964,0,0);}
.m114_c01414{transform:matrix(0.254543,0.004327,-0.004249,0.249964,0,0);-ms-transform:matrix(0.254543,0.004327,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.254543,0.004327,-0.004249,0.249964,0,0);}
.m2f_c01414{transform:matrix(0.255090,0.003571,-0.003500,0.249976,0,0);-ms-transform:matrix(0.255090,0.003571,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.255090,0.003571,-0.003500,0.249976,0,0);}
.m2d_c01414{transform:matrix(0.255385,0.003575,-0.003500,0.249976,0,0);-ms-transform:matrix(0.255385,0.003575,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.255385,0.003575,-0.003500,0.249976,0,0);}
.mba_c01414{transform:matrix(0.255401,0.003831,-0.003750,0.249972,0,0);-ms-transform:matrix(0.255401,0.003831,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.255401,0.003831,-0.003750,0.249972,0,0);}
.m115_c01414{transform:matrix(0.255568,0.004345,-0.004249,0.249964,0,0);-ms-transform:matrix(0.255568,0.004345,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.255568,0.004345,-0.004249,0.249964,0,0);}
.m94_c01414{transform:matrix(0.255836,0.003838,-0.003750,0.249972,0,0);-ms-transform:matrix(0.255836,0.003838,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.255836,0.003838,-0.003750,0.249972,0,0);}
.m12c_c01414{transform:matrix(0.256403,0.003333,-0.003250,0.249979,0,0);-ms-transform:matrix(0.256403,0.003333,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.256403,0.003333,-0.003250,0.249979,0,0);}
.m4c_c01414{transform:matrix(0.256585,0.003592,-0.003500,0.249976,0,0);-ms-transform:matrix(0.256585,0.003592,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.256585,0.003592,-0.003500,0.249976,0,0);}
.me0_c01414{transform:matrix(0.257148,0.004372,-0.004249,0.249964,0,0);-ms-transform:matrix(0.257148,0.004372,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.257148,0.004372,-0.004249,0.249964,0,0);}
.m1d_c01414{transform:matrix(0.257370,0.003603,-0.003500,0.249976,0,0);-ms-transform:matrix(0.257370,0.003603,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.257370,0.003603,-0.003500,0.249976,0,0);}
.m107_c01414{transform:matrix(0.257383,0.004376,-0.004249,0.249964,0,0);-ms-transform:matrix(0.257383,0.004376,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.257383,0.004376,-0.004249,0.249964,0,0);}
.m15_c01414{transform:matrix(0.257450,0.003604,-0.003500,0.249976,0,0);-ms-transform:matrix(0.257450,0.003604,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.257450,0.003604,-0.003500,0.249976,0,0);}
.mef_c01414{transform:matrix(0.257563,0.004379,-0.004249,0.249964,0,0);-ms-transform:matrix(0.257563,0.004379,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.257563,0.004379,-0.004249,0.249964,0,0);}
.mbc_c01414{transform:matrix(0.257816,0.003867,-0.003750,0.249972,0,0);-ms-transform:matrix(0.257816,0.003867,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.257816,0.003867,-0.003750,0.249972,0,0);}
.m5c_c01414{transform:matrix(0.258645,0.003621,-0.003500,0.249976,0,0);-ms-transform:matrix(0.258645,0.003621,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.258645,0.003621,-0.003500,0.249976,0,0);}
.m106_c01414{transform:matrix(0.258953,0.004402,-0.004249,0.249964,0,0);-ms-transform:matrix(0.258953,0.004402,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.258953,0.004402,-0.004249,0.249964,0,0);}
.m9_c01414{transform:matrix(0.258995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258995,0.000000,0.000000,0.250000,0,0);}
.ma3_c01414{transform:matrix(0.259101,0.003887,-0.003750,0.249972,0,0);-ms-transform:matrix(0.259101,0.003887,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.259101,0.003887,-0.003750,0.249972,0,0);}
.m11a_c01414{transform:matrix(0.259483,0.004411,-0.004249,0.249964,0,0);-ms-transform:matrix(0.259483,0.004411,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.259483,0.004411,-0.004249,0.249964,0,0);}
.m1f_c01414{transform:matrix(0.259945,0.003639,-0.003500,0.249976,0,0);-ms-transform:matrix(0.259945,0.003639,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.259945,0.003639,-0.003500,0.249976,0,0);}
.mfb_c01414{transform:matrix(0.261012,0.004437,-0.004249,0.249964,0,0);-ms-transform:matrix(0.261012,0.004437,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.261012,0.004437,-0.004249,0.249964,0,0);}
.md_c01414{transform:matrix(0.261850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261850,0.000000,0.000000,0.250000,0,0);}
.me_c01414{transform:matrix(0.262255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262255,0.000000,0.000000,0.250000,0,0);}
.m101_c01414{transform:matrix(0.264022,0.004488,-0.004249,0.249964,0,0);-ms-transform:matrix(0.264022,0.004488,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.264022,0.004488,-0.004249,0.249964,0,0);}
.m25_c01414{transform:matrix(0.264339,0.003701,-0.003500,0.249976,0,0);-ms-transform:matrix(0.264339,0.003701,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.264339,0.003701,-0.003500,0.249976,0,0);}
.mf3_c01414{transform:matrix(0.265062,0.004506,-0.004249,0.249964,0,0);-ms-transform:matrix(0.265062,0.004506,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.265062,0.004506,-0.004249,0.249964,0,0);}
.m10_c01414{transform:matrix(0.265640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265640,0.000000,0.000000,0.250000,0,0);}
.m24_c01414{transform:matrix(0.266594,0.003732,-0.003500,0.249976,0,0);-ms-transform:matrix(0.266594,0.003732,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.266594,0.003732,-0.003500,0.249976,0,0);}
.m40_c01414{transform:matrix(0.268189,0.003755,-0.003500,0.249976,0,0);-ms-transform:matrix(0.268189,0.003755,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.268189,0.003755,-0.003500,0.249976,0,0);}
.m10b_c01414{transform:matrix(0.269186,0.004576,-0.004249,0.249964,0,0);-ms-transform:matrix(0.269186,0.004576,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.269186,0.004576,-0.004249,0.249964,0,0);}
.m1e_c01414{transform:matrix(0.269729,0.003776,-0.003500,0.249976,0,0);-ms-transform:matrix(0.269729,0.003776,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.269729,0.003776,-0.003500,0.249976,0,0);}
.m3e_c01414{transform:matrix(0.270329,0.003785,-0.003500,0.249976,0,0);-ms-transform:matrix(0.270329,0.003785,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.270329,0.003785,-0.003500,0.249976,0,0);}
.m17_c01414{transform:matrix(0.270483,0.003787,-0.003500,0.249976,0,0);-ms-transform:matrix(0.270483,0.003787,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.270483,0.003787,-0.003500,0.249976,0,0);}
.ma1_c01414{transform:matrix(0.270955,0.004064,-0.003750,0.249972,0,0);-ms-transform:matrix(0.270955,0.004064,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.270955,0.004064,-0.003750,0.249972,0,0);}
.ma8_c01414{transform:matrix(0.271509,0.004073,-0.003750,0.249972,0,0);-ms-transform:matrix(0.271509,0.004073,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.271509,0.004073,-0.003750,0.249972,0,0);}
.m1b_c01414{transform:matrix(0.271558,0.003802,-0.003500,0.249976,0,0);-ms-transform:matrix(0.271558,0.003802,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.271558,0.003802,-0.003500,0.249976,0,0);}
.m5b_c01414{transform:matrix(0.272488,0.003815,-0.003500,0.249976,0,0);-ms-transform:matrix(0.272488,0.003815,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.272488,0.003815,-0.003500,0.249976,0,0);}
.m7e_c01414{transform:matrix(0.273788,0.003833,-0.003500,0.249976,0,0);-ms-transform:matrix(0.273788,0.003833,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.273788,0.003833,-0.003500,0.249976,0,0);}
.ma6_c01414{transform:matrix(0.273844,0.004108,-0.003750,0.249972,0,0);-ms-transform:matrix(0.273844,0.004108,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.273844,0.004108,-0.003750,0.249972,0,0);}
.m11b_c01414{transform:matrix(0.275760,0.004688,-0.004249,0.249964,0,0);-ms-transform:matrix(0.275760,0.004688,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.275760,0.004688,-0.004249,0.249964,0,0);}
.ma5_c01414{transform:matrix(0.276329,0.004145,-0.003750,0.249972,0,0);-ms-transform:matrix(0.276329,0.004145,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.276329,0.004145,-0.003750,0.249972,0,0);}
.m104_c01414{transform:matrix(0.277385,0.004716,-0.004249,0.249964,0,0);-ms-transform:matrix(0.277385,0.004716,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.277385,0.004716,-0.004249,0.249964,0,0);}
.m18_c01414{transform:matrix(0.277643,0.003887,-0.003500,0.249976,0,0);-ms-transform:matrix(0.277643,0.003887,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.277643,0.003887,-0.003500,0.249976,0,0);}
.m16_c01414{transform:matrix(0.277843,0.003890,-0.003500,0.249976,0,0);-ms-transform:matrix(0.277843,0.003890,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.277843,0.003890,-0.003500,0.249976,0,0);}
.m118_c01414{transform:matrix(0.277985,0.004726,-0.004249,0.249964,0,0);-ms-transform:matrix(0.277985,0.004726,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.277985,0.004726,-0.004249,0.249964,0,0);}
.m11_c01414{transform:matrix(0.280270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280270,0.000000,0.000000,0.250000,0,0);}
.m117_c01414{transform:matrix(0.280869,0.004775,-0.004249,0.249964,0,0);-ms-transform:matrix(0.280869,0.004775,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.280869,0.004775,-0.004249,0.249964,0,0);}
.m108_c01414{transform:matrix(0.281099,0.004779,-0.004249,0.249964,0,0);-ms-transform:matrix(0.281099,0.004779,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.281099,0.004779,-0.004249,0.249964,0,0);}
.m11e_c01414{transform:matrix(0.288728,0.004908,-0.004249,0.249964,0,0);-ms-transform:matrix(0.288728,0.004908,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.288728,0.004908,-0.004249,0.249964,0,0);}
.m88_c01414{transform:matrix(0.304290,0.004260,-0.003500,0.249976,0,0);-ms-transform:matrix(0.304290,0.004260,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.304290,0.004260,-0.003500,0.249976,0,0);}
.m8_c01414{transform:matrix(0.308320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308320,0.000000,0.000000,0.250000,0,0);}
.m124_c01414{transform:matrix(0.310460,0.005278,-0.004249,0.249964,0,0);-ms-transform:matrix(0.310460,0.005278,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.310460,0.005278,-0.004249,0.249964,0,0);}
.mab_c01414{transform:matrix(0.310740,0.004661,-0.003750,0.249972,0,0);-ms-transform:matrix(0.310740,0.004661,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.310740,0.004661,-0.003750,0.249972,0,0);}
.m7d_c01414{transform:matrix(0.334697,0.004686,-0.003500,0.249976,0,0);-ms-transform:matrix(0.334697,0.004686,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.334697,0.004686,-0.003500,0.249976,0,0);}
.m6_c01414{transform:matrix(0.335620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335620,0.000000,0.000000,0.250000,0,0);}
.m3d_c01414{transform:matrix(0.353665,0.004951,-0.003500,0.249976,0,0);-ms-transform:matrix(0.353665,0.004951,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.353665,0.004951,-0.003500,0.249976,0,0);}
.m14_c01414{transform:matrix(0.363190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363190,0.000000,0.000000,0.250000,0,0);}
.m5a_c01414{transform:matrix(0.382313,0.005352,-0.003500,0.249976,0,0);-ms-transform:matrix(0.382313,0.005352,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.382313,0.005352,-0.003500,0.249976,0,0);}
.m13_c01414{transform:matrix(0.479735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.479735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.479735,0.000000,0.000000,0.250000,0,0);}
.m0_c01414{transform:matrix(0.776895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.776895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.776895,0.000000,0.000000,0.250000,0,0);}
.m5_c01414{transform:matrix(0.841645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.841645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.841645,0.000000,0.000000,0.250000,0,0);}
.m1_c01414{transform:matrix(0.845640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.845640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.845640,0.000000,0.000000,0.250000,0,0);}
.m2_c01414{transform:matrix(0.975865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.975865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.975865,0.000000,0.000000,0.250000,0,0);}
.m3_c01414{transform:matrix(1.694535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.694535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.694535,0.000000,0.000000,0.250000,0,0);}
.v0_c01414{vertical-align:0.000000px;}
.ls0_c01414{letter-spacing:0.000000px;}
.sc__c01414{text-shadow:none;}
.sc0_c01414{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__c01414{-webkit-text-stroke:0px transparent;}
.sc0_c01414{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01414{word-spacing:0.000000px;}
.fc0_c01414{color:transparent;}
.fs1_c01414{font-size:18.000000px;}
.fs0_c01414{font-size:24.000000px;}
.fs3_c01414{font-size:60.000000px;}
.fs2_c01414{font-size:72.000000px;}
.fs4_c01414{font-size:72.007056px;}
.fs9_c01414{font-size:72.008100px;}
.fse_c01414{font-size:72.010403px;}
.fs5_c01414{font-size:78.007644px;}
.fs8_c01414{font-size:78.008775px;}
.fsc_c01414{font-size:78.011270px;}
.fs6_c01414{font-size:84.008232px;}
.fsb_c01414{font-size:84.009449px;}
.fsf_c01414{font-size:84.012137px;}
.fs10_c01414{font-size:90.007605px;}
.fs7_c01414{font-size:96.010799px;}
.fs11_c01414{font-size:102.008619px;}
.fsd_c01414{font-size:102.014738px;}
.fsa_c01414{font-size:120.013499px;}
.y0_c01414{bottom:0.000000px;}
.y134_c01414{bottom:32.473239px;}
.y133_c01414{bottom:33.293553px;}
.y132_c01414{bottom:33.933731px;}
.y131_c01414{bottom:34.618304px;}
.y130_c01414{bottom:36.444606px;}
.y12f_c01414{bottom:38.064859px;}
.y12e_c01414{bottom:39.238857px;}
.y12d_c01414{bottom:40.232387px;}
.y12c_c01414{bottom:69.488610px;}
.y12b_c01414{bottom:70.366129px;}
.y12a_c01414{bottom:72.223271px;}
.y129_c01414{bottom:73.083279px;}
.y128_c01414{bottom:74.041568px;}
.y127_c01414{bottom:74.793000px;}
.y126_c01414{bottom:120.662653px;}
.y125_c01414{bottom:121.095228px;}
.y124_c01414{bottom:121.958766px;}
.y123_c01414{bottom:123.106813px;}
.y122_c01414{bottom:123.373230px;}
.y121_c01414{bottom:124.081941px;}
.y120_c01414{bottom:124.517856px;}
.y11f_c01414{bottom:124.800759px;}
.y11e_c01414{bottom:125.953788px;}
.y11d_c01414{bottom:126.230082px;}
.y11c_c01414{bottom:127.072564px;}
.y11b_c01414{bottom:127.508122px;}
.y11a_c01414{bottom:127.792581px;}
.y119_c01414{bottom:128.221402px;}
.y118_c01414{bottom:156.336654px;}
.y117_c01414{bottom:156.850548px;}
.y116_c01414{bottom:157.399717px;}
.y115_c01414{bottom:158.807659px;}
.y114_c01414{bottom:159.830785px;}
.y113_c01414{bottom:160.374778px;}
.y112_c01414{bottom:162.314800px;}
.y111_c01414{bottom:164.249722px;}
.y110_c01414{bottom:164.944906px;}
.y10f_c01414{bottom:191.673181px;}
.y10e_c01414{bottom:193.094386px;}
.y10d_c01414{bottom:193.518690px;}
.y10c_c01414{bottom:194.523016px;}
.y10b_c01414{bottom:195.358962px;}
.y10a_c01414{bottom:196.233627px;}
.y109_c01414{bottom:196.523959px;}
.y108_c01414{bottom:197.651971px;}
.y107_c01414{bottom:198.370845px;}
.y106_c01414{bottom:199.508428px;}
.y105_c01414{bottom:226.742890px;}
.y104_c01414{bottom:227.164155px;}
.y103_c01414{bottom:227.736927px;}
.y102_c01414{bottom:229.172578px;}
.y101_c01414{bottom:230.008447px;}
.y100_c01414{bottom:230.735103px;}
.yff_c01414{bottom:231.296340px;}
.yfe_c01414{bottom:232.722772px;}
.yfd_c01414{bottom:233.161879px;}
.yfc_c01414{bottom:233.593735px;}
.yfb_c01414{bottom:234.605869px;}
.yfa_c01414{bottom:235.156642px;}
.yf9_c01414{bottom:262.638252px;}
.yf8_c01414{bottom:263.828419px;}
.yf7_c01414{bottom:264.220105px;}
.yf6_c01414{bottom:264.610563px;}
.yf5_c01414{bottom:265.922748px;}
.yf4_c01414{bottom:266.330721px;}
.yf3_c01414{bottom:266.721948px;}
.yf2_c01414{bottom:267.240450px;}
.yf1_c01414{bottom:268.446220px;}
.yf0_c01414{bottom:270.004867px;}
.yef_c01414{bottom:270.396043px;}
.yee_c01414{bottom:270.801058px;}
.yed_c01414{bottom:298.463518px;}
.yec_c01414{bottom:299.755164px;}
.yeb_c01414{bottom:300.618931px;}
.yea_c01414{bottom:301.756515px;}
.ye9_c01414{bottom:303.192901px;}
.ye8_c01414{bottom:303.615313px;}
.ye7_c01414{bottom:304.317237px;}
.ye6_c01414{bottom:304.892385px;}
.ye5_c01414{bottom:305.746096px;}
.ye4_c01414{bottom:306.178207px;}
.ye3_c01414{bottom:333.403902px;}
.ye2_c01414{bottom:333.991575px;}
.ye1_c01414{bottom:334.514835px;}
.ye0_c01414{bottom:335.088738px;}
.ydf_c01414{bottom:336.043407px;}
.yde_c01414{bottom:336.589464px;}
.ydd_c01414{bottom:337.695501px;}
.ydc_c01414{bottom:338.645809px;}
.ydb_c01414{bottom:340.128481px;}
.yda_c01414{bottom:342.364500px;}
.yd9_c01414{bottom:376.455495px;}
.yd8_c01414{bottom:376.455765px;}
.yd7_c01414{bottom:376.456170px;}
.yd6_c01414{bottom:376.456275px;}
.yd5_c01414{bottom:404.525047px;}
.yd4_c01414{bottom:405.230490px;}
.yd3_c01414{bottom:406.532692px;}
.yd2_c01414{bottom:406.954192px;}
.yd1_c01414{bottom:407.523383px;}
.yd0_c01414{bottom:408.824798px;}
.ycf_c01414{bottom:409.242203px;}
.yce_c01414{bottom:410.102903px;}
.ycd_c01414{bottom:410.819895px;}
.ycc_c01414{bottom:411.942698px;}
.ycb_c01414{bottom:412.810245px;}
.yca_c01414{bottom:440.173027px;}
.yc9_c01414{bottom:441.018127px;}
.yc8_c01414{bottom:441.446925px;}
.yc7_c01414{bottom:441.875138px;}
.yc6_c01414{bottom:442.300058px;}
.yc5_c01414{bottom:443.574203px;}
.yc4_c01414{bottom:444.012907px;}
.yc3_c01414{bottom:444.437783px;}
.yc2_c01414{bottom:445.870740px;}
.yc1_c01414{bottom:447.018293px;}
.yc0_c01414{bottom:447.442410px;}
.ybf_c01414{bottom:448.296083px;}
.ybe_c01414{bottom:448.723980px;}
.ybd_c01414{bottom:477.010972px;}
.ybc_c01414{bottom:477.802073px;}
.ybb_c01414{bottom:478.579342px;}
.yba_c01414{bottom:478.987260px;}
.yb9_c01414{bottom:479.651190px;}
.yb8_c01414{bottom:480.829823px;}
.yb7_c01414{bottom:481.215638px;}
.yb6_c01414{bottom:482.408010px;}
.yb5_c01414{bottom:482.809710px;}
.yb4_c01414{bottom:483.866145px;}
.yb3_c01414{bottom:484.252252px;}
.yb2_c01414{bottom:484.650728px;}
.yb1_c01414{bottom:485.176282px;}
.yb0_c01414{bottom:513.715380px;}
.yaf_c01414{bottom:514.559520px;}
.yae_c01414{bottom:515.511832px;}
.yad_c01414{bottom:515.880487px;}
.yac_c01414{bottom:516.237375px;}
.yab_c01414{bottom:516.599610px;}
.yaa_c01414{bottom:516.840142px;}
.ya9_c01414{bottom:518.061345px;}
.ya8_c01414{bottom:518.785702px;}
.ya7_c01414{bottom:519.486660px;}
.ya6_c01414{bottom:519.855360px;}
.ya5_c01414{bottom:520.820655px;}
.ya4_c01414{bottom:548.708993px;}
.ya3_c01414{bottom:549.161730px;}
.ya2_c01414{bottom:549.596542px;}
.ya1_c01414{bottom:550.870170px;}
.ya0_c01414{bottom:551.291108px;}
.y9f_c01414{bottom:552.702202px;}
.y9e_c01414{bottom:554.004158px;}
.y9d_c01414{bottom:554.432257px;}
.y9c_c01414{bottom:555.155647px;}
.y9b_c01414{bottom:555.589830px;}
.y9a_c01414{bottom:556.857442px;}
.y99_c01414{bottom:557.272613px;}
.y98_c01414{bottom:583.688392px;}
.y97_c01414{bottom:583.976543px;}
.y96_c01414{bottom:585.237713px;}
.y95_c01414{bottom:585.683175px;}
.y94_c01414{bottom:586.395803px;}
.y93_c01414{bottom:586.805977px;}
.y92_c01414{bottom:587.255333px;}
.y91_c01414{bottom:588.664148px;}
.y90_c01414{bottom:589.239892px;}
.y8f_c01414{bottom:590.102333px;}
.y8e_c01414{bottom:590.959230px;}
.y8d_c01414{bottom:592.377952px;}
.y8c_c01414{bottom:619.514558px;}
.y8b_c01414{bottom:620.852498px;}
.y8a_c01414{bottom:621.640335px;}
.y89_c01414{bottom:622.652835px;}
.y88_c01414{bottom:623.625397px;}
.y87_c01414{bottom:624.455625px;}
.y86_c01414{bottom:625.451453px;}
.y85_c01414{bottom:626.448675px;}
.y84_c01414{bottom:626.934743px;}
.y83_c01414{bottom:627.753000px;}
.y82_c01414{bottom:657.960621px;}
.y81_c01414{bottom:659.252001px;}
.y80_c01414{bottom:659.652633px;}
.y4_c01414{bottom:660.150000px;}
.y7f_c01414{bottom:660.180399px;}
.y7e_c01414{bottom:660.850401px;}
.y7d_c01414{bottom:661.482543px;}
.y7c_c01414{bottom:662.293026px;}
.y7b_c01414{bottom:689.787561px;}
.y7a_c01414{bottom:690.449307px;}
.y79_c01414{bottom:690.840876px;}
.y78_c01414{bottom:691.102989px;}
.y77_c01414{bottom:692.160441px;}
.y76_c01414{bottom:692.552976px;}
.y75_c01414{bottom:693.476247px;}
.y74_c01414{bottom:694.272375px;}
.y73_c01414{bottom:694.671462px;}
.y72_c01414{bottom:695.183349px;}
.y71_c01414{bottom:695.718591px;}
.y70_c01414{bottom:696.492633px;}
.y6f_c01414{bottom:696.765090px;}
.y6e_c01414{bottom:697.433568px;}
.y6d_c01414{bottom:697.938429px;}
.y6c_c01414{bottom:725.313096px;}
.y6b_c01414{bottom:726.010812px;}
.y6a_c01414{bottom:726.460740px;}
.y69_c01414{bottom:726.888375px;}
.y68_c01414{bottom:728.028816px;}
.y67_c01414{bottom:728.593455px;}
.y66_c01414{bottom:729.583503px;}
.y65_c01414{bottom:730.025346px;}
.y64_c01414{bottom:730.593765px;}
.y63_c01414{bottom:731.454579px;}
.y62_c01414{bottom:731.869224px;}
.y61_c01414{bottom:732.733272px;}
.y60_c01414{bottom:733.581717px;}
.y5f_c01414{bottom:761.413875px;}
.y5e_c01414{bottom:761.738388px;}
.y5d_c01414{bottom:762.664656px;}
.y5c_c01414{bottom:763.406208px;}
.y5b_c01414{bottom:763.881858px;}
.y5a_c01414{bottom:764.516793px;}
.y59_c01414{bottom:765.098913px;}
.y58_c01414{bottom:765.873729px;}
.y57_c01414{bottom:766.339362px;}
.y56_c01414{bottom:766.804512px;}
.y55_c01414{bottom:767.246205px;}
.y54_c01414{bottom:768.335643px;}
.y53_c01414{bottom:768.805266px;}
.y52_c01414{bottom:769.727229px;}
.y51_c01414{bottom:770.304876px;}
.y50_c01414{bottom:796.834920px;}
.y4f_c01414{bottom:797.497296px;}
.y4e_c01414{bottom:798.167340px;}
.y4d_c01414{bottom:798.678618px;}
.y4c_c01414{bottom:799.330335px;}
.y4b_c01414{bottom:799.867815px;}
.y4a_c01414{bottom:800.393133px;}
.y49_c01414{bottom:801.171942px;}
.y48_c01414{bottom:801.968490px;}
.y47_c01414{bottom:802.495731px;}
.y46_c01414{bottom:802.901382px;}
.y45_c01414{bottom:803.685117px;}
.y44_c01414{bottom:804.868716px;}
.y43_c01414{bottom:833.700291px;}
.y42_c01414{bottom:834.165294px;}
.y41_c01414{bottom:835.087782px;}
.y40_c01414{bottom:835.840044px;}
.y3_c01414{bottom:835.920000px;}
.y3f_c01414{bottom:836.769840px;}
.y3e_c01414{bottom:837.366429px;}
.y3d_c01414{bottom:838.146033px;}
.y3c_c01414{bottom:838.610721px;}
.y3b_c01414{bottom:839.529387px;}
.y3a_c01414{bottom:840.160794px;}
.y39_c01414{bottom:841.053000px;}
.y38_c01414{bottom:872.289546px;}
.y37_c01414{bottom:876.682509px;}
.y36_c01414{bottom:905.643516px;}
.y35_c01414{bottom:905.965449px;}
.y34_c01414{bottom:906.844326px;}
.y33_c01414{bottom:907.489347px;}
.y32_c01414{bottom:908.053308px;}
.y31_c01414{bottom:908.263560px;}
.y30_c01414{bottom:909.141711px;}
.y2f_c01414{bottom:909.582351px;}
.y2e_c01414{bottom:910.246983px;}
.y2d_c01414{bottom:910.576164px;}
.y2c_c01414{bottom:911.442939px;}
.y2b_c01414{bottom:911.786478px;}
.y2_c01414{bottom:914.490000px;}
.y2a_c01414{bottom:940.852029px;}
.y29_c01414{bottom:941.178468px;}
.y28_c01414{bottom:942.058815px;}
.y27_c01414{bottom:942.371379px;}
.y26_c01414{bottom:943.799499px;}
.y25_c01414{bottom:944.028795px;}
.y24_c01414{bottom:945.012387px;}
.y23_c01414{bottom:945.341148px;}
.y22_c01414{bottom:945.564909px;}
.y21_c01414{bottom:946.556736px;}
.y20_c01414{bottom:947.428113px;}
.y1_c01414{bottom:956.880000px;}
.y1f_c01414{bottom:975.560028px;}
.y1e_c01414{bottom:976.147632px;}
.y1d_c01414{bottom:976.658376px;}
.y1c_c01414{bottom:977.374839px;}
.y1b_c01414{bottom:978.202980px;}
.y1a_c01414{bottom:978.585558px;}
.y19_c01414{bottom:979.179558px;}
.y18_c01414{bottom:979.782129px;}
.y17_c01414{bottom:980.149824px;}
.y16_c01414{bottom:980.984466px;}
.y15_c01414{bottom:982.071156px;}
.y14_c01414{bottom:982.799025px;}
.y13_c01414{bottom:1011.436860px;}
.y12_c01414{bottom:1012.367538px;}
.y11_c01414{bottom:1012.828656px;}
.y10_c01414{bottom:1013.296746px;}
.yf_c01414{bottom:1014.673422px;}
.ye_c01414{bottom:1015.913031px;}
.yd_c01414{bottom:1017.300690px;}
.yc_c01414{bottom:1018.983000px;}
.yb_c01414{bottom:1072.434000px;}
.ya_c01414{bottom:1122.282000px;}
.y9_c01414{bottom:1123.573500px;}
.y8_c01414{bottom:1124.097000px;}
.y7_c01414{bottom:1125.405000px;}
.y6_c01414{bottom:1126.446000px;}
.y5_c01414{bottom:1183.429500px;}
.h3_c01414{height:18.000000px;}
.h2_c01414{height:24.000000px;}
.h5_c01414{height:60.000000px;}
.h4_c01414{height:72.000000px;}
.h6_c01414{height:72.007056px;}
.hb_c01414{height:72.008100px;}
.h10_c01414{height:72.010403px;}
.h7_c01414{height:78.007644px;}
.ha_c01414{height:78.008775px;}
.he_c01414{height:78.011270px;}
.h8_c01414{height:84.008232px;}
.hd_c01414{height:84.009449px;}
.h11_c01414{height:84.012137px;}
.h12_c01414{height:90.007605px;}
.h9_c01414{height:96.010799px;}
.h13_c01414{height:102.008619px;}
.hf_c01414{height:102.014738px;}
.hc_c01414{height:120.013499px;}
.h1_c01414{height:1250.250000px;}
.h0_c01414{height:1250.370000px;}
.w0_c01414{width:912.000000px;}
.x0_c01414{left:0.000000px;}
.x1_c01414{left:1.890000px;}
.xdf_c01414{left:136.280083px;}
.xdc_c01414{left:137.490000px;}
.xcf_c01414{left:139.102868px;}
.xc2_c01414{left:140.488523px;}
.xac_c01414{left:141.733050px;}
.x8f_c01414{left:142.963260px;}
.x85_c01414{left:144.006540px;}
.x69_c01414{left:145.354632px;}
.x52_c01414{left:146.696241px;}
.x27_c01414{left:148.351752px;}
.x15_c01414{left:150.235602px;}
.xd4_c01414{left:172.382576px;}
.xb6_c01414{left:173.935860px;}
.x9c_c01414{left:175.297455px;}
.x7e_c01414{left:177.201938px;}
.x28_c01414{left:182.642163px;}
.x90_c01414{left:186.702218px;}
.x47_c01414{left:189.852636px;}
.xd5_c01414{left:194.234555px;}
.xdd_c01414{left:195.292500px;}
.xe0_c01414{left:202.549868px;}
.xad_c01414{left:207.081742px;}
.xa3_c01414{left:208.818817px;}
.x53_c01414{left:212.014665px;}
.x16_c01414{left:216.371874px;}
.x91_c01414{left:219.868703px;}
.xc9_c01414{left:227.405957px;}
.x86_c01414{left:231.764805px;}
.x1f_c01414{left:236.908794px;}
.xb7_c01414{left:239.599822px;}
.x9d_c01414{left:240.910912px;}
.x5e_c01414{left:245.030679px;}
.x3d_c01414{left:246.096975px;}
.x92_c01414{left:252.010643px;}
.x6e_c01414{left:254.412000px;}
.x48_c01414{left:255.707136px;}
.xd_c01414{left:259.551000px;}
.xc3_c01414{left:260.667683px;}
.x6a_c01414{left:265.545492px;}
.x5f_c01414{left:267.706809px;}
.x29_c01414{left:269.309514px;}
.x9e_c01414{left:273.586402px;}
.x7f_c01414{left:274.712363px;}
.x54_c01414{left:278.447589px;}
.xe1_c01414{left:280.855339px;}
.xca_c01414{left:282.755231px;}
.xb8_c01414{left:283.846831px;}
.x49_c01414{left:289.251636px;}
.xd6_c01414{left:292.537736px;}
.x5_c01414{left:294.022500px;}
.xa4_c01414{left:295.174905px;}
.x2a_c01414{left:302.252862px;}
.xd0_c01414{left:303.523673px;}
.x6f_c01414{left:308.962500px;}
.x55_c01414{left:310.315530px;}
.x3e_c01414{left:311.401302px;}
.xd7_c01414{left:313.821189px;}
.x17_c01414{left:315.211032px;}
.x76_c01414{left:319.806578px;}
.x6b_c01414{left:321.440067px;}
.x34_c01414{left:322.467000px;}
.xc4_c01414{left:327.611222px;}
.x87_c01414{left:328.981133px;}
.x60_c01414{left:332.211615px;}
.x20_c01414{left:336.044838px;}
.xb9_c01414{left:337.846003px;}
.x93_c01414{left:340.043603px;}
.x70_c01414{left:341.367000px;}
.x3f_c01414{left:345.198747px;}
.x6_c01414{left:348.849000px;}
.xa5_c01414{left:350.276048px;}
.x21_c01414{left:358.457598px;}
.x9f_c01414{left:361.892557px;}
.x80_c01414{left:363.786540px;}
.x6c_c01414{left:365.460306px;}
.x35_c01414{left:367.567500px;}
.x2b_c01414{left:368.694579px;}
.xba_c01414{left:370.284196px;}
.x94_c01414{left:373.525110px;}
.x56_c01414{left:376.517454px;}
.xe_c01414{left:379.716000px;}
.xae_c01414{left:382.675500px;}
.x77_c01414{left:386.204580px;}
.x40_c01414{left:389.181486px;}
.x18_c01414{left:391.117224px;}
.x88_c01414{left:394.875593px;}
.x81_c01414{left:396.727530px;}
.x4a_c01414{left:398.618136px;}
.xd8_c01414{left:402.564233px;}
.x2_c01414{left:405.270000px;}
.x71_c01414{left:407.848500px;}
.x2c_c01414{left:412.707036px;}
.xa_c01414{left:414.450000px;}
.xa6_c01414{left:416.458028px;}
.x7_c01414{left:417.700500px;}
.x57_c01414{left:420.226563px;}
.x19_c01414{left:424.561131px;}
.x3_c01414{left:428.490000px;}
.x78_c01414{left:430.488908px;}
.x4b_c01414{left:431.843136px;}
.x36_c01414{left:433.186500px;}
.xb_c01414{left:436.590000px;}
.x8_c01414{left:445.236000px;}
.xa7_c01414{left:448.585995px;}
.x61_c01414{left:452.658975px;}
.x58_c01414{left:454.251546px;}
.x41_c01414{left:455.615355px;}
.xd9_c01414{left:457.821981px;}
.xcb_c01414{left:459.120716px;}
.x4c_c01414{left:465.102636px;}
.x37_c01414{left:466.378500px;}
.xaf_c01414{left:469.891500px;}
.x4_c01414{left:471.420000px;}
.x95_c01414{left:472.921087px;}
.x72_c01414{left:474.237000px;}
.xf_c01414{left:478.834500px;}
.xc_c01414{left:481.140000px;}
.x22_c01414{left:489.704448px;}
.x82_c01414{left:496.927545px;}
.x2d_c01414{left:500.508450px;}
.x96_c01414{left:505.043528px;}
.x6d_c01414{left:506.572275px;}
.xe2_c01414{left:510.661373px;}
.x9_c01414{left:513.241500px;}
.x62_c01414{left:519.062844px;}
.x42_c01414{left:520.460661px;}
.x2e_c01414{left:521.527626px;}
.xcc_c01414{left:523.386576px;}
.xb0_c01414{left:525.792000px;}
.x89_c01414{left:527.732558px;}
.x59_c01414{left:530.434617px;}
.x1a_c01414{left:533.392209px;}
.xc5_c01414{left:536.350400px;}
.x79_c01414{left:538.813148px;}
.xde_c01414{left:545.520000px;}
.xbd_c01414{left:547.387455px;}
.xa8_c01414{left:548.750010px;}
.xe3_c01414{left:556.281183px;}
.x8a_c01414{left:560.683538px;}
.x4d_c01414{left:562.026636px;}
.x38_c01414{left:564.678000px;}
.x10_c01414{left:567.378000px;}
.x5a_c01414{left:573.873726px;}
.x2f_c01414{left:577.992297px;}
.xb1_c01414{left:590.853000px;}
.x8b_c01414{left:593.077972px;}
.x73_c01414{left:594.423000px;}
.x63_c01414{left:595.941486px;}
.xe4_c01414{left:598.947571px;}
.xc6_c01414{left:600.611760px;}
.x97_c01414{left:603.323460px;}
.x7a_c01414{left:604.917128px;}
.x4e_c01414{left:607.379136px;}
.x43_c01414{left:609.020139px;}
.xd1_c01414{left:610.827926px;}
.xda_c01414{left:621.108074px;}
.xb2_c01414{left:622.974000px;}
.xa9_c01414{left:624.898282px;}
.x8c_c01414{left:626.556975px;}
.x64_c01414{left:628.694910px;}
.x39_c01414{left:631.092000px;}
.xcd_c01414{left:633.284048px;}
.xbb_c01414{left:634.639648px;}
.x33_c01414{left:637.032666px;}
.x4f_c01414{left:641.354136px;}
.x30_c01414{left:642.497409px;}
.x1b_c01414{left:643.555350px;}
.xd2_c01414{left:645.162012px;}
.xe5_c01414{left:653.624148px;}
.x23_c01414{left:655.457730px;}
.xbe_c01414{left:656.701737px;}
.x98_c01414{left:658.687958px;}
.x7b_c01414{left:659.727270px;}
.x5b_c01414{left:661.656465px;}
.x44_c01414{left:663.287151px;}
.x11_c01414{left:665.712000px;}
.xa0_c01414{left:669.175260px;}
.xd3_c01414{left:677.244548px;}
.xb3_c01414{left:679.131000px;}
.x3a_c01414{left:684.825000px;}
.x24_c01414{left:686.785494px;}
.xbf_c01414{left:689.201991px;}
.x99_c01414{left:692.683988px;}
.x50_c01414{left:694.322136px;}
.x12_c01414{left:699.147000px;}
.xa1_c01414{left:702.123750px;}
.x45_c01414{left:705.915348px;}
.x1c_c01414{left:708.662580px;}
.xc7_c01414{left:711.098783px;}
.x8d_c01414{left:713.149673px;}
.x74_c01414{left:714.445500px;}
.x65_c01414{left:716.765367px;}
.xdb_c01414{left:720.827357px;}
.xc0_c01414{left:721.862771px;}
.xaa_c01414{left:725.114797px;}
.x5c_c01414{left:729.161910px;}
.x31_c01414{left:730.457844px;}
.x13_c01414{left:732.084000px;}
.xbc_c01414{left:734.007906px;}
.x83_c01414{left:735.878723px;}
.x66_c01414{left:738.595476px;}
.xce_c01414{left:742.656494px;}
.xb4_c01414{left:743.670000px;}
.x3b_c01414{left:750.717000px;}
.x1d_c01414{left:755.110533px;}
.x9a_c01414{left:757.504913px;}
.x51_c01414{left:760.484136px;}
.x32_c01414{left:762.669150px;}
.x84_c01414{left:769.367235px;}
.x67_c01414{left:771.279900px;}
.x25_c01414{left:774.850929px;}
.xb5_c01414{left:778.239000px;}
.xab_c01414{left:779.345918px;}
.x5d_c01414{left:782.856666px;}
.x3c_c01414{left:783.931500px;}
.xc8_c01414{left:787.488459px;}
.x8e_c01414{left:789.930285px;}
.x7c_c01414{left:791.006708px;}
.x14_c01414{left:798.561000px;}
.xa2_c01414{left:800.153198px;}
.x75_c01414{left:803.641500px;}
.x26_c01414{left:807.491256px;}
.x1e_c01414{left:808.548780px;}
.x7d_c01414{left:813.117360px;}
.x46_c01414{left:816.948456px;}
.xc1_c01414{left:820.998685px;}
.x9b_c01414{left:823.447883px;}
.x68_c01414{left:826.370433px;}
@media print{
.v0_c01414{vertical-align:0.000000pt;}
.ls0_c01414{letter-spacing:0.000000pt;}
.ws0_c01414{word-spacing:0.000000pt;}
.fs1_c01414{font-size:16.000000pt;}
.fs0_c01414{font-size:21.333333pt;}
.fs3_c01414{font-size:53.333333pt;}
.fs2_c01414{font-size:64.000000pt;}
.fs4_c01414{font-size:64.006272pt;}
.fs9_c01414{font-size:64.007200pt;}
.fse_c01414{font-size:64.009247pt;}
.fs5_c01414{font-size:69.340128pt;}
.fs8_c01414{font-size:69.341133pt;}
.fsc_c01414{font-size:69.343351pt;}
.fs6_c01414{font-size:74.673984pt;}
.fsb_c01414{font-size:74.675066pt;}
.fsf_c01414{font-size:74.677455pt;}
.fs10_c01414{font-size:80.006760pt;}
.fs7_c01414{font-size:85.342933pt;}
.fs11_c01414{font-size:90.674328pt;}
.fsd_c01414{font-size:90.679767pt;}
.fsa_c01414{font-size:106.678666pt;}
.y0_c01414{bottom:0.000000pt;}
.y134_c01414{bottom:28.865101pt;}
.y133_c01414{bottom:29.594269pt;}
.y132_c01414{bottom:30.163316pt;}
.y131_c01414{bottom:30.771825pt;}
.y130_c01414{bottom:32.395205pt;}
.y12f_c01414{bottom:33.835431pt;}
.y12e_c01414{bottom:34.878984pt;}
.y12d_c01414{bottom:35.762121pt;}
.y12c_c01414{bottom:61.767653pt;}
.y12b_c01414{bottom:62.547671pt;}
.y12a_c01414{bottom:64.198463pt;}
.y129_c01414{bottom:64.962915pt;}
.y128_c01414{bottom:65.814727pt;}
.y127_c01414{bottom:66.482667pt;}
.y126_c01414{bottom:107.255692pt;}
.y125_c01414{bottom:107.640203pt;}
.y124_c01414{bottom:108.407792pt;}
.y123_c01414{bottom:109.428279pt;}
.y122_c01414{bottom:109.665093pt;}
.y121_c01414{bottom:110.295059pt;}
.y120_c01414{bottom:110.682539pt;}
.y11f_c01414{bottom:110.934008pt;}
.y11e_c01414{bottom:111.958923pt;}
.y11d_c01414{bottom:112.204517pt;}
.y11c_c01414{bottom:112.953391pt;}
.y11b_c01414{bottom:113.340553pt;}
.y11a_c01414{bottom:113.593405pt;}
.y119_c01414{bottom:113.974580pt;}
.y118_c01414{bottom:138.965915pt;}
.y117_c01414{bottom:139.422709pt;}
.y116_c01414{bottom:139.910860pt;}
.y115_c01414{bottom:141.162364pt;}
.y114_c01414{bottom:142.071809pt;}
.y113_c01414{bottom:142.555359pt;}
.y112_c01414{bottom:144.279823pt;}
.y111_c01414{bottom:145.999753pt;}
.y110_c01414{bottom:146.617695pt;}
.y10f_c01414{bottom:170.376161pt;}
.y10e_c01414{bottom:171.639455pt;}
.y10d_c01414{bottom:172.016613pt;}
.y10c_c01414{bottom:172.909348pt;}
.y10b_c01414{bottom:173.652411pt;}
.y10a_c01414{bottom:174.429891pt;}
.y109_c01414{bottom:174.687964pt;}
.y108_c01414{bottom:175.690641pt;}
.y107_c01414{bottom:176.329640pt;}
.y106_c01414{bottom:177.340825pt;}
.y105_c01414{bottom:201.549236pt;}
.y104_c01414{bottom:201.923693pt;}
.y103_c01414{bottom:202.432824pt;}
.y102_c01414{bottom:203.708959pt;}
.y101_c01414{bottom:204.451953pt;}
.y100_c01414{bottom:205.097869pt;}
.yff_c01414{bottom:205.596747pt;}
.yfe_c01414{bottom:206.864687pt;}
.yfd_c01414{bottom:207.255004pt;}
.yfc_c01414{bottom:207.638876pt;}
.yfb_c01414{bottom:208.538551pt;}
.yfa_c01414{bottom:209.028127pt;}
.yf9_c01414{bottom:233.456224pt;}
.yf8_c01414{bottom:234.514151pt;}
.yf7_c01414{bottom:234.862316pt;}
.yf6_c01414{bottom:235.209389pt;}
.yf5_c01414{bottom:236.375776pt;}
.yf4_c01414{bottom:236.738419pt;}
.yf3_c01414{bottom:237.086176pt;}
.yf2_c01414{bottom:237.547067pt;}
.yf1_c01414{bottom:238.618863pt;}
.yf0_c01414{bottom:240.004327pt;}
.yef_c01414{bottom:240.352039pt;}
.yee_c01414{bottom:240.712052pt;}
.yed_c01414{bottom:265.300905pt;}
.yec_c01414{bottom:266.449035pt;}
.yeb_c01414{bottom:267.216828pt;}
.yea_c01414{bottom:268.228013pt;}
.ye9_c01414{bottom:269.504801pt;}
.ye8_c01414{bottom:269.880279pt;}
.ye7_c01414{bottom:270.504211pt;}
.ye6_c01414{bottom:271.015453pt;}
.ye5_c01414{bottom:271.774308pt;}
.ye4_c01414{bottom:272.158407pt;}
.ye3_c01414{bottom:296.359024pt;}
.ye2_c01414{bottom:296.881400pt;}
.ye1_c01414{bottom:297.346520pt;}
.ye0_c01414{bottom:297.856656pt;}
.ydf_c01414{bottom:298.705251pt;}
.yde_c01414{bottom:299.190635pt;}
.ydd_c01414{bottom:300.173779pt;}
.ydc_c01414{bottom:301.018497pt;}
.ydb_c01414{bottom:302.336428pt;}
.yda_c01414{bottom:304.324000pt;}
.yd9_c01414{bottom:334.627107pt;}
.yd8_c01414{bottom:334.627347pt;}
.yd7_c01414{bottom:334.627707pt;}
.yd6_c01414{bottom:334.627800pt;}
.yd5_c01414{bottom:359.577820pt;}
.yd4_c01414{bottom:360.204880pt;}
.yd3_c01414{bottom:361.362393pt;}
.yd2_c01414{bottom:361.737060pt;}
.yd1_c01414{bottom:362.243007pt;}
.yd0_c01414{bottom:363.399820pt;}
.ycf_c01414{bottom:363.770847pt;}
.yce_c01414{bottom:364.535913pt;}
.ycd_c01414{bottom:365.173240pt;}
.ycc_c01414{bottom:366.171287pt;}
.ycb_c01414{bottom:366.942440pt;}
.yca_c01414{bottom:391.264913pt;}
.yc9_c01414{bottom:392.016113pt;}
.yc8_c01414{bottom:392.397267pt;}
.yc7_c01414{bottom:392.777900pt;}
.yc6_c01414{bottom:393.155607pt;}
.yc5_c01414{bottom:394.288180pt;}
.yc4_c01414{bottom:394.678140pt;}
.yc3_c01414{bottom:395.055807pt;}
.yc2_c01414{bottom:396.329547pt;}
.yc1_c01414{bottom:397.349593pt;}
.yc0_c01414{bottom:397.726587pt;}
.ybf_c01414{bottom:398.485407pt;}
.ybe_c01414{bottom:398.865760pt;}
.ybd_c01414{bottom:424.009753pt;}
.ybc_c01414{bottom:424.712953pt;}
.ybb_c01414{bottom:425.403860pt;}
.yba_c01414{bottom:425.766453pt;}
.yb9_c01414{bottom:426.356613pt;}
.yb8_c01414{bottom:427.404287pt;}
.yb7_c01414{bottom:427.747233pt;}
.yb6_c01414{bottom:428.807120pt;}
.yb5_c01414{bottom:429.164187pt;}
.yb4_c01414{bottom:430.103240pt;}
.yb3_c01414{bottom:430.446447pt;}
.yb2_c01414{bottom:430.800647pt;}
.yb1_c01414{bottom:431.267807pt;}
.yb0_c01414{bottom:456.635893pt;}
.yaf_c01414{bottom:457.386240pt;}
.yae_c01414{bottom:458.232740pt;}
.yad_c01414{bottom:458.560433pt;}
.yac_c01414{bottom:458.877667pt;}
.yab_c01414{bottom:459.199653pt;}
.yaa_c01414{bottom:459.413460pt;}
.ya9_c01414{bottom:460.498973pt;}
.ya8_c01414{bottom:461.142847pt;}
.ya7_c01414{bottom:461.765920pt;}
.ya6_c01414{bottom:462.093653pt;}
.ya5_c01414{bottom:462.951693pt;}
.ya4_c01414{bottom:487.741327pt;}
.ya3_c01414{bottom:488.143760pt;}
.ya2_c01414{bottom:488.530260pt;}
.ya1_c01414{bottom:489.662373pt;}
.ya0_c01414{bottom:490.036540pt;}
.y9f_c01414{bottom:491.290847pt;}
.y9e_c01414{bottom:492.448140pt;}
.y9d_c01414{bottom:492.828673pt;}
.y9c_c01414{bottom:493.471687pt;}
.y9b_c01414{bottom:493.857627pt;}
.y9a_c01414{bottom:494.984393pt;}
.y99_c01414{bottom:495.353433pt;}
.y98_c01414{bottom:518.834127pt;}
.y97_c01414{bottom:519.090260pt;}
.y96_c01414{bottom:520.211300pt;}
.y95_c01414{bottom:520.607267pt;}
.y94_c01414{bottom:521.240713pt;}
.y93_c01414{bottom:521.605313pt;}
.y92_c01414{bottom:522.004740pt;}
.y91_c01414{bottom:523.257020pt;}
.y90_c01414{bottom:523.768793pt;}
.y8f_c01414{bottom:524.535407pt;}
.y8e_c01414{bottom:525.297093pt;}
.y8d_c01414{bottom:526.558180pt;}
.y8c_c01414{bottom:550.679607pt;}
.y8b_c01414{bottom:551.868887pt;}
.y8a_c01414{bottom:552.569187pt;}
.y89_c01414{bottom:553.469187pt;}
.y88_c01414{bottom:554.333687pt;}
.y87_c01414{bottom:555.071667pt;}
.y86_c01414{bottom:555.956847pt;}
.y85_c01414{bottom:556.843267pt;}
.y84_c01414{bottom:557.275327pt;}
.y83_c01414{bottom:558.002667pt;}
.y82_c01414{bottom:584.853885pt;}
.y81_c01414{bottom:586.001779pt;}
.y80_c01414{bottom:586.357896pt;}
.y4_c01414{bottom:586.800000pt;}
.y7f_c01414{bottom:586.827021pt;}
.y7e_c01414{bottom:587.422579pt;}
.y7d_c01414{bottom:587.984483pt;}
.y7c_c01414{bottom:588.704912pt;}
.y7b_c01414{bottom:613.144499pt;}
.y7a_c01414{bottom:613.732717pt;}
.y79_c01414{bottom:614.080779pt;}
.y78_c01414{bottom:614.313768pt;}
.y77_c01414{bottom:615.253725pt;}
.y76_c01414{bottom:615.602645pt;}
.y75_c01414{bottom:616.423331pt;}
.y74_c01414{bottom:617.131000pt;}
.y73_c01414{bottom:617.485744pt;}
.y72_c01414{bottom:617.940755pt;}
.y71_c01414{bottom:618.416525pt;}
.y70_c01414{bottom:619.104563pt;}
.y6f_c01414{bottom:619.346747pt;}
.y6e_c01414{bottom:619.940949pt;}
.y6d_c01414{bottom:620.389715pt;}
.y6c_c01414{bottom:644.722752pt;}
.y6b_c01414{bottom:645.342944pt;}
.y6a_c01414{bottom:645.742880pt;}
.y69_c01414{bottom:646.123000pt;}
.y68_c01414{bottom:647.136725pt;}
.y67_c01414{bottom:647.638627pt;}
.y66_c01414{bottom:648.518669pt;}
.y65_c01414{bottom:648.911419pt;}
.y64_c01414{bottom:649.416680pt;}
.y63_c01414{bottom:650.181848pt;}
.y62_c01414{bottom:650.550421pt;}
.y61_c01414{bottom:651.318464pt;}
.y60_c01414{bottom:652.072637pt;}
.y5f_c01414{bottom:676.812333pt;}
.y5e_c01414{bottom:677.100789pt;}
.y5d_c01414{bottom:677.924139pt;}
.y5c_c01414{bottom:678.583296pt;}
.y5b_c01414{bottom:679.006096pt;}
.y5a_c01414{bottom:679.570483pt;}
.y59_c01414{bottom:680.087923pt;}
.y58_c01414{bottom:680.776648pt;}
.y57_c01414{bottom:681.190544pt;}
.y56_c01414{bottom:681.604011pt;}
.y55_c01414{bottom:681.996627pt;}
.y54_c01414{bottom:682.965016pt;}
.y53_c01414{bottom:683.382459pt;}
.y52_c01414{bottom:684.201981pt;}
.y51_c01414{bottom:684.715445pt;}
.y50_c01414{bottom:708.297707pt;}
.y4f_c01414{bottom:708.886485pt;}
.y4e_c01414{bottom:709.482080pt;}
.y4d_c01414{bottom:709.936549pt;}
.y4c_c01414{bottom:710.515853pt;}
.y4b_c01414{bottom:710.993613pt;}
.y4a_c01414{bottom:711.460563pt;}
.y49_c01414{bottom:712.152837pt;}
.y48_c01414{bottom:712.860880pt;}
.y47_c01414{bottom:713.329539pt;}
.y46_c01414{bottom:713.690117pt;}
.y45_c01414{bottom:714.386771pt;}
.y44_c01414{bottom:715.438859pt;}
.y43_c01414{bottom:741.066925pt;}
.y42_c01414{bottom:741.480261pt;}
.y41_c01414{bottom:742.300251pt;}
.y40_c01414{bottom:742.968928pt;}
.y3_c01414{bottom:743.040000pt;}
.y3f_c01414{bottom:743.795413pt;}
.y3e_c01414{bottom:744.325715pt;}
.y3d_c01414{bottom:745.018696pt;}
.y3c_c01414{bottom:745.431752pt;}
.y3b_c01414{bottom:746.248344pt;}
.y3a_c01414{bottom:746.809595pt;}
.y39_c01414{bottom:747.602667pt;}
.y38_c01414{bottom:775.368485pt;}
.y37_c01414{bottom:779.273341pt;}
.y36_c01414{bottom:805.016459pt;}
.y35_c01414{bottom:805.302621pt;}
.y34_c01414{bottom:806.083845pt;}
.y33_c01414{bottom:806.657197pt;}
.y32_c01414{bottom:807.158496pt;}
.y31_c01414{bottom:807.345387pt;}
.y30_c01414{bottom:808.125965pt;}
.y2f_c01414{bottom:808.517645pt;}
.y2e_c01414{bottom:809.108429pt;}
.y2d_c01414{bottom:809.401035pt;}
.y2c_c01414{bottom:810.171501pt;}
.y2b_c01414{bottom:810.476869pt;}
.y2_c01414{bottom:812.880000pt;}
.y2a_c01414{bottom:836.312915pt;}
.y29_c01414{bottom:836.603083pt;}
.y28_c01414{bottom:837.385613pt;}
.y27_c01414{bottom:837.663448pt;}
.y26_c01414{bottom:838.932888pt;}
.y25_c01414{bottom:839.136707pt;}
.y24_c01414{bottom:840.011011pt;}
.y23_c01414{bottom:840.303243pt;}
.y22_c01414{bottom:840.502141pt;}
.y21_c01414{bottom:841.383765pt;}
.y20_c01414{bottom:842.158323pt;}
.y1_c01414{bottom:850.560000pt;}
.y1f_c01414{bottom:867.164469pt;}
.y1e_c01414{bottom:867.686784pt;}
.y1d_c01414{bottom:868.140779pt;}
.y1c_c01414{bottom:868.777635pt;}
.y1b_c01414{bottom:869.513760pt;}
.y1a_c01414{bottom:869.853829pt;}
.y19_c01414{bottom:870.381829pt;}
.y18_c01414{bottom:870.917448pt;}
.y17_c01414{bottom:871.244288pt;}
.y16_c01414{bottom:871.986192pt;}
.y15_c01414{bottom:872.952139pt;}
.y14_c01414{bottom:873.599133pt;}
.y13_c01414{bottom:899.054987pt;}
.y12_c01414{bottom:899.882256pt;}
.y11_c01414{bottom:900.292139pt;}
.y10_c01414{bottom:900.708219pt;}
.yf_c01414{bottom:901.931931pt;}
.ye_c01414{bottom:903.033805pt;}
.yd_c01414{bottom:904.267280pt;}
.yc_c01414{bottom:905.762667pt;}
.yb_c01414{bottom:953.274667pt;}
.ya_c01414{bottom:997.584000pt;}
.y9_c01414{bottom:998.732000pt;}
.y8_c01414{bottom:999.197333pt;}
.y7_c01414{bottom:1000.360000pt;}
.y6_c01414{bottom:1001.285333pt;}
.y5_c01414{bottom:1051.937333pt;}
.h3_c01414{height:16.000000pt;}
.h2_c01414{height:21.333333pt;}
.h5_c01414{height:53.333333pt;}
.h4_c01414{height:64.000000pt;}
.h6_c01414{height:64.006272pt;}
.hb_c01414{height:64.007200pt;}
.h10_c01414{height:64.009247pt;}
.h7_c01414{height:69.340128pt;}
.ha_c01414{height:69.341133pt;}
.he_c01414{height:69.343351pt;}
.h8_c01414{height:74.673984pt;}
.hd_c01414{height:74.675066pt;}
.h11_c01414{height:74.677455pt;}
.h12_c01414{height:80.006760pt;}
.h9_c01414{height:85.342933pt;}
.h13_c01414{height:90.674328pt;}
.hf_c01414{height:90.679767pt;}
.hc_c01414{height:106.678666pt;}
.h1_c01414{height:1111.333333pt;}
.h0_c01414{height:1111.440000pt;}
.w0_c01414{width:810.666667pt;}
.x0_c01414{left:0.000000pt;}
.x1_c01414{left:1.680000pt;}
.xdf_c01414{left:121.137852pt;}
.xdc_c01414{left:122.213333pt;}
.xcf_c01414{left:123.646993pt;}
.xc2_c01414{left:124.878687pt;}
.xac_c01414{left:125.984933pt;}
.x8f_c01414{left:127.078453pt;}
.x85_c01414{left:128.005813pt;}
.x69_c01414{left:129.204117pt;}
.x52_c01414{left:130.396659pt;}
.x27_c01414{left:131.868224pt;}
.x15_c01414{left:133.542757pt;}
.xd4_c01414{left:153.228956pt;}
.xb6_c01414{left:154.609653pt;}
.x9c_c01414{left:155.819960pt;}
.x7e_c01414{left:157.512833pt;}
.x28_c01414{left:162.348589pt;}
.x90_c01414{left:165.957527pt;}
.x47_c01414{left:168.757899pt;}
.xd5_c01414{left:172.652937pt;}
.xdd_c01414{left:173.593333pt;}
.xe0_c01414{left:180.044327pt;}
.xad_c01414{left:184.072660pt;}
.xa3_c01414{left:185.616727pt;}
.x53_c01414{left:188.457480pt;}
.x16_c01414{left:192.330555pt;}
.x91_c01414{left:195.438847pt;}
.xc9_c01414{left:202.138628pt;}
.x86_c01414{left:206.013160pt;}
.x1f_c01414{left:210.585595pt;}
.xb7_c01414{left:212.977620pt;}
.x9d_c01414{left:214.143033pt;}
.x5e_c01414{left:217.805048pt;}
.x3d_c01414{left:218.752867pt;}
.x92_c01414{left:224.009460pt;}
.x6e_c01414{left:226.144000pt;}
.x48_c01414{left:227.295232pt;}
.xd_c01414{left:230.712000pt;}
.xc3_c01414{left:231.704607pt;}
.x6a_c01414{left:236.040437pt;}
.x5f_c01414{left:237.961608pt;}
.x29_c01414{left:239.386235pt;}
.x9e_c01414{left:243.187913pt;}
.x7f_c01414{left:244.188767pt;}
.x54_c01414{left:247.508968pt;}
.xe1_c01414{left:249.649191pt;}
.xca_c01414{left:251.337983pt;}
.xb8_c01414{left:252.308295pt;}
.x49_c01414{left:257.112565pt;}
.xd6_c01414{left:260.033543pt;}
.x5_c01414{left:261.353333pt;}
.xa4_c01414{left:262.377693pt;}
.x2a_c01414{left:268.669211pt;}
.xd0_c01414{left:269.798820pt;}
.x6f_c01414{left:274.633333pt;}
.x55_c01414{left:275.836027pt;}
.x3e_c01414{left:276.801157pt;}
.xd7_c01414{left:278.952168pt;}
.x17_c01414{left:280.187584pt;}
.x76_c01414{left:284.272513pt;}
.x6b_c01414{left:285.724504pt;}
.x34_c01414{left:286.637333pt;}
.xc4_c01414{left:291.209975pt;}
.x87_c01414{left:292.427673pt;}
.x60_c01414{left:295.299213pt;}
.x20_c01414{left:298.706523pt;}
.xb9_c01414{left:300.307559pt;}
.x93_c01414{left:302.260980pt;}
.x70_c01414{left:303.437333pt;}
.x3f_c01414{left:306.843331pt;}
.x6_c01414{left:310.088000pt;}
.xa5_c01414{left:311.356487pt;}
.x21_c01414{left:318.628976pt;}
.x9f_c01414{left:321.682273pt;}
.x80_c01414{left:323.365813pt;}
.x6c_c01414{left:324.853605pt;}
.x35_c01414{left:326.726667pt;}
.x2b_c01414{left:327.728515pt;}
.xba_c01414{left:329.141508pt;}
.x94_c01414{left:332.022320pt;}
.x56_c01414{left:334.682181pt;}
.xe_c01414{left:337.525333pt;}
.xae_c01414{left:340.156000pt;}
.x77_c01414{left:343.292960pt;}
.x40_c01414{left:345.939099pt;}
.x18_c01414{left:347.659755pt;}
.x88_c01414{left:351.000527pt;}
.x81_c01414{left:352.646693pt;}
.x4a_c01414{left:354.327232pt;}
.xd8_c01414{left:357.834873pt;}
.x2_c01414{left:360.240000pt;}
.x71_c01414{left:362.532000pt;}
.x2c_c01414{left:366.850699pt;}
.xa_c01414{left:368.400000pt;}
.xa6_c01414{left:370.184913pt;}
.x7_c01414{left:371.289333pt;}
.x57_c01414{left:373.534723pt;}
.x19_c01414{left:377.387672pt;}
.x3_c01414{left:380.880000pt;}
.x78_c01414{left:382.656807pt;}
.x4b_c01414{left:383.860565pt;}
.x36_c01414{left:385.054667pt;}
.xb_c01414{left:388.080000pt;}
.x8_c01414{left:395.765333pt;}
.xa7_c01414{left:398.743107pt;}
.x61_c01414{left:402.363533pt;}
.x58_c01414{left:403.779152pt;}
.x41_c01414{left:404.991427pt;}
.xd9_c01414{left:406.952872pt;}
.xcb_c01414{left:408.107303pt;}
.x4c_c01414{left:413.424565pt;}
.x37_c01414{left:414.558667pt;}
.xaf_c01414{left:417.681333pt;}
.x4_c01414{left:419.040000pt;}
.x95_c01414{left:420.374300pt;}
.x72_c01414{left:421.544000pt;}
.xf_c01414{left:425.630667pt;}
.xc_c01414{left:427.680000pt;}
.x22_c01414{left:435.292843pt;}
.x82_c01414{left:441.713373pt;}
.x2d_c01414{left:444.896400pt;}
.x96_c01414{left:448.927580pt;}
.x6d_c01414{left:450.286467pt;}
.xe2_c01414{left:453.921220pt;}
.x9_c01414{left:456.214667pt;}
.x62_c01414{left:461.389195pt;}
.x42_c01414{left:462.631699pt;}
.x2e_c01414{left:463.580112pt;}
.xcc_c01414{left:465.232512pt;}
.xb0_c01414{left:467.370667pt;}
.x89_c01414{left:469.095607pt;}
.x59_c01414{left:471.497437pt;}
.x1a_c01414{left:474.126408pt;}
.xc5_c01414{left:476.755911pt;}
.x79_c01414{left:478.945020pt;}
.xde_c01414{left:484.906667pt;}
.xbd_c01414{left:486.566627pt;}
.xa8_c01414{left:487.777787pt;}
.xe3_c01414{left:494.472163pt;}
.x8a_c01414{left:498.385367pt;}
.x4d_c01414{left:499.579232pt;}
.x38_c01414{left:501.936000pt;}
.x10_c01414{left:504.336000pt;}
.x5a_c01414{left:510.109979pt;}
.x2f_c01414{left:513.770931pt;}
.xb1_c01414{left:525.202667pt;}
.x8b_c01414{left:527.180420pt;}
.x73_c01414{left:528.376000pt;}
.x63_c01414{left:529.725765pt;}
.xe4_c01414{left:532.397841pt;}
.xc6_c01414{left:533.877120pt;}
.x97_c01414{left:536.287520pt;}
.x7a_c01414{left:537.704113pt;}
.x4e_c01414{left:539.892565pt;}
.x43_c01414{left:541.351235pt;}
.xd1_c01414{left:542.958156pt;}
.xda_c01414{left:552.096065pt;}
.xb2_c01414{left:553.754667pt;}
.xa9_c01414{left:555.465140pt;}
.x8c_c01414{left:556.939533pt;}
.x64_c01414{left:558.839920pt;}
.x39_c01414{left:560.970667pt;}
.xcd_c01414{left:562.919153pt;}
.xbb_c01414{left:564.124132pt;}
.x33_c01414{left:566.251259pt;}
.x4f_c01414{left:570.092565pt;}
.x30_c01414{left:571.108808pt;}
.x1b_c01414{left:572.049200pt;}
.xd2_c01414{left:573.477344pt;}
.xe5_c01414{left:580.999243pt;}
.x23_c01414{left:582.629093pt;}
.xbe_c01414{left:583.734877pt;}
.x98_c01414{left:585.500407pt;}
.x7b_c01414{left:586.424240pt;}
.x5b_c01414{left:588.139080pt;}
.x44_c01414{left:589.588579pt;}
.x11_c01414{left:591.744000pt;}
.xa0_c01414{left:594.822453pt;}
.xd3_c01414{left:601.995153pt;}
.xb3_c01414{left:603.672000pt;}
.x3a_c01414{left:608.733333pt;}
.x24_c01414{left:610.475995pt;}
.xbf_c01414{left:612.623992pt;}
.x99_c01414{left:615.719100pt;}
.x50_c01414{left:617.175232pt;}
.x12_c01414{left:621.464000pt;}
.xa1_c01414{left:624.110000pt;}
.x45_c01414{left:627.480309pt;}
.x1c_c01414{left:629.922293pt;}
.xc7_c01414{left:632.087807pt;}
.x8d_c01414{left:633.910820pt;}
.x74_c01414{left:635.062667pt;}
.x65_c01414{left:637.124771pt;}
.xdb_c01414{left:640.735428pt;}
.xc0_c01414{left:641.655796pt;}
.xaa_c01414{left:644.546487pt;}
.x5c_c01414{left:648.143920pt;}
.x31_c01414{left:649.295861pt;}
.x13_c01414{left:650.741333pt;}
.xbc_c01414{left:652.451472pt;}
.x83_c01414{left:654.114420pt;}
.x66_c01414{left:656.529312pt;}
.xce_c01414{left:660.139105pt;}
.xb4_c01414{left:661.040000pt;}
.x3b_c01414{left:667.304000pt;}
.x1d_c01414{left:671.209363pt;}
.x9a_c01414{left:673.337700pt;}
.x51_c01414{left:675.985899pt;}
.x32_c01414{left:677.928133pt;}
.x84_c01414{left:683.881987pt;}
.x67_c01414{left:685.582133pt;}
.x25_c01414{left:688.756381pt;}
.xb5_c01414{left:691.768000pt;}
.xab_c01414{left:692.751927pt;}
.x5d_c01414{left:695.872592pt;}
.x3c_c01414{left:696.828000pt;}
.xc8_c01414{left:699.989741pt;}
.x8e_c01414{left:702.160253pt;}
.x7c_c01414{left:703.117073pt;}
.x14_c01414{left:709.832000pt;}
.xa2_c01414{left:711.247287pt;}
.x75_c01414{left:714.348000pt;}
.x26_c01414{left:717.770005pt;}
.x1e_c01414{left:718.710027pt;}
.x7d_c01414{left:722.770987pt;}
.x46_c01414{left:726.176405pt;}
.xc1_c01414{left:729.776609pt;}
.x9b_c01414{left:731.953673pt;}
.x68_c01414{left:734.551496pt;}
}





/* 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_c01415 {
    display:none;
  }
  .loading-indicator_c01415.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01415 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_c01415 { 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_c01415" -> "#page-container .classname_c01415")
 */
.pf_c01415 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01415 { /* 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_c01415.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01415 { /* 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_c01415 { /* 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_c01415 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01415 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01415 {overflow:visible;}
  }
}
.c_c01415 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01415 { /* 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_c01415:after { /* webkit #35443 */
  content: '';
}
.t_c01415:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01415 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 */
}
.__c01415 { /* 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_c01415 { /* info for Javascript */
  display:none;
}
.l_c01415 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01415 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01415 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01415: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_c01415 {
    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_c01415.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01415.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_c01415 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01415{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01415;src:url('chunks/assets/font_fabf4b590f7fb32aea93ffb2.woff2')format("woff");}.ff1_c01415{font-family:ff1_c01415;line-height:1.000000;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;}
.m0_c01415{transform:matrix(0.047435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.047435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.047435,0.000000,0.000000,0.250000,0,0);}
.md_c01415{transform:matrix(0.176155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176155,0.000000,0.000000,0.250000,0,0);}
.me_c01415{transform:matrix(0.192615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192615,0.000000,0.000000,0.250000,0,0);}
.m1d_c01415{transform:matrix(0.227619,0.001593,-0.001750,0.249994,0,0);-ms-transform:matrix(0.227619,0.001593,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.227619,0.001593,-0.001750,0.249994,0,0);}
.m1a_c01415{transform:matrix(0.240994,0.001687,-0.001750,0.249994,0,0);-ms-transform:matrix(0.240994,0.001687,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.240994,0.001687,-0.001750,0.249994,0,0);}
.m5_c01415{transform:matrix(0.266615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266615,0.000000,0.000000,0.250000,0,0);}
.m18_c01415{transform:matrix(0.269633,0.001887,-0.001750,0.249994,0,0);-ms-transform:matrix(0.269633,0.001887,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.269633,0.001887,-0.001750,0.249994,0,0);}
.m17_c01415{transform:matrix(0.276048,0.001932,-0.001750,0.249994,0,0);-ms-transform:matrix(0.276048,0.001932,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.276048,0.001932,-0.001750,0.249994,0,0);}
.m2_c01415{transform:matrix(0.278925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278925,0.000000,0.000000,0.250000,0,0);}
.m6_c01415{transform:matrix(0.292975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292975,0.000000,0.000000,0.250000,0,0);}
.m19_c01415{transform:matrix(0.295963,0.002072,-0.001750,0.249994,0,0);-ms-transform:matrix(0.295963,0.002072,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.295963,0.002072,-0.001750,0.249994,0,0);}
.m1c_c01415{transform:matrix(0.298358,0.002089,-0.001750,0.249994,0,0);-ms-transform:matrix(0.298358,0.002089,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.298358,0.002089,-0.001750,0.249994,0,0);}
.m1f_c01415{transform:matrix(0.308462,0.002159,-0.001750,0.249994,0,0);-ms-transform:matrix(0.308462,0.002159,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.308462,0.002159,-0.001750,0.249994,0,0);}
.m4_c01415{transform:matrix(0.313035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313035,0.000000,0.000000,0.250000,0,0);}
.m1b_c01415{transform:matrix(0.327147,0.002290,-0.001750,0.249994,0,0);-ms-transform:matrix(0.327147,0.002290,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.327147,0.002290,-0.001750,0.249994,0,0);}
.m12_c01415{transform:matrix(0.335472,0.002348,-0.001750,0.249994,0,0);-ms-transform:matrix(0.335472,0.002348,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.335472,0.002348,-0.001750,0.249994,0,0);}
.m16_c01415{transform:matrix(0.337722,0.002364,-0.001750,0.249994,0,0);-ms-transform:matrix(0.337722,0.002364,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.337722,0.002364,-0.001750,0.249994,0,0);}
.m1e_c01415{transform:matrix(0.338377,0.002369,-0.001750,0.249994,0,0);-ms-transform:matrix(0.338377,0.002369,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.338377,0.002369,-0.001750,0.249994,0,0);}
.m14_c01415{transform:matrix(0.338622,0.002370,-0.001750,0.249994,0,0);-ms-transform:matrix(0.338622,0.002370,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.338622,0.002370,-0.001750,0.249994,0,0);}
.m13_c01415{transform:matrix(0.359731,0.002518,-0.001750,0.249994,0,0);-ms-transform:matrix(0.359731,0.002518,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.359731,0.002518,-0.001750,0.249994,0,0);}
.m8_c01415{transform:matrix(0.361660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361660,0.000000,0.000000,0.250000,0,0);}
.m7_c01415{transform:matrix(0.385280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385280,0.000000,0.000000,0.250000,0,0);}
.m11_c01415{transform:matrix(0.391440,0.002740,-0.001750,0.249994,0,0);-ms-transform:matrix(0.391440,0.002740,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.391440,0.002740,-0.001750,0.249994,0,0);}
.m15_c01415{transform:matrix(0.391940,0.002744,-0.001750,0.249994,0,0);-ms-transform:matrix(0.391940,0.002744,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.391940,0.002744,-0.001750,0.249994,0,0);}
.m10_c01415{transform:matrix(0.393260,0.002753,-0.001750,0.249994,0,0);-ms-transform:matrix(0.393260,0.002753,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.393260,0.002753,-0.001750,0.249994,0,0);}
.mc_c01415{transform:matrix(0.442305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442305,0.000000,0.000000,0.250000,0,0);}
.mb_c01415{transform:matrix(0.471275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.471275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.471275,0.000000,0.000000,0.250000,0,0);}
.m9_c01415{transform:matrix(0.475180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475180,0.000000,0.000000,0.250000,0,0);}
.m23_c01415{transform:matrix(0.492923,0.003450,-0.001750,0.249994,0,0);-ms-transform:matrix(0.492923,0.003450,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.492923,0.003450,-0.001750,0.249994,0,0);}
.mf_c01415{transform:matrix(0.622530,0.004358,-0.001750,0.249994,0,0);-ms-transform:matrix(0.622530,0.004358,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.622530,0.004358,-0.001750,0.249994,0,0);}
.m3_c01415{transform:matrix(0.635380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.635380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.635380,0.000000,0.000000,0.250000,0,0);}
.ma_c01415{transform:matrix(0.675580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.675580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.675580,0.000000,0.000000,0.250000,0,0);}
.m21_c01415{transform:matrix(0.689483,0.004826,-0.001750,0.249994,0,0);-ms-transform:matrix(0.689483,0.004826,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.689483,0.004826,-0.001750,0.249994,0,0);}
.m22_c01415{transform:matrix(1.271464,0.008900,-0.001750,0.249994,0,0);-ms-transform:matrix(1.271464,0.008900,-0.001750,0.249994,0,0);-webkit-transform:matrix(1.271464,0.008900,-0.001750,0.249994,0,0);}
.m1_c01415{transform:matrix(1.616420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.616420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.616420,0.000000,0.000000,0.250000,0,0);}
.m20_c01415{transform:matrix(1.709688,0.011968,-0.001750,0.249994,0,0);-ms-transform:matrix(1.709688,0.011968,-0.001750,0.249994,0,0);-webkit-transform:matrix(1.709688,0.011968,-0.001750,0.249994,0,0);}
.v0_c01415{vertical-align:0.000000px;}
.ls0_c01415{letter-spacing:0.000000px;}
.sc__c01415{text-shadow:none;}
.sc0_c01415{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__c01415{-webkit-text-stroke:0px transparent;}
.sc0_c01415{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01415{word-spacing:0.000000px;}
.fc0_c01415{color:transparent;}
.fs0_c01415{font-size:18.000000px;}
.fs1_c01415{font-size:72.000000px;}
.fs4_c01415{font-size:72.001764px;}
.fs2_c01415{font-size:102.000000px;}
.fs5_c01415{font-size:102.002499px;}
.fs3_c01415{font-size:120.002940px;}
.y0_c01415{bottom:0.000000px;}
.y19_c01415{bottom:690.325854px;}
.y18_c01415{bottom:694.126193px;}
.y17_c01415{bottom:696.887847px;}
.y16_c01415{bottom:699.753270px;}
.yf_c01415{bottom:734.193908px;}
.y13_c01415{bottom:734.194009px;}
.yc_c01415{bottom:734.194056px;}
.y14_c01415{bottom:734.194110px;}
.ye_c01415{bottom:734.194137px;}
.yd_c01415{bottom:734.194217px;}
.y10_c01415{bottom:734.194218px;}
.y11_c01415{bottom:734.194378px;}
.yb_c01415{bottom:734.194465px;}
.y15_c01415{bottom:734.194571px;}
.y12_c01415{bottom:734.194599px;}
.ya_c01415{bottom:734.194695px;}
.y9_c01415{bottom:762.000879px;}
.y8_c01415{bottom:762.813464px;}
.y7_c01415{bottom:763.387992px;}
.y6_c01415{bottom:764.234848px;}
.y5_c01415{bottom:765.006000px;}
.y4_c01415{bottom:838.647000px;}
.y3_c01415{bottom:870.339000px;}
.y2_c01415{bottom:1012.770000px;}
.y1_c01415{bottom:1126.980000px;}
.h2_c01415{height:18.000000px;}
.h3_c01415{height:72.000000px;}
.h6_c01415{height:72.001764px;}
.h4_c01415{height:102.000000px;}
.h7_c01415{height:102.002499px;}
.h5_c01415{height:120.002940px;}
.h1_c01415{height:1250.250000px;}
.h0_c01415{height:1250.370000px;}
.w0_c01415{width:912.000000px;}
.x0_c01415{left:0.000000px;}
.x1c_c01415{left:17.915019px;}
.x10_c01415{left:123.386265px;}
.x2_c01415{left:125.550000px;}
.x3_c01415{left:176.040000px;}
.x11_c01415{left:181.707621px;}
.x1d_c01415{left:208.893319px;}
.x12_c01415{left:216.267812px;}
.x4_c01415{left:226.260000px;}
.xb_c01415{left:236.992500px;}
.x13_c01415{left:247.317834px;}
.x5_c01415{left:282.420000px;}
.x14_c01415{left:336.690713px;}
.xc_c01415{left:347.157000px;}
.x15_c01415{left:381.511407px;}
.x1e_c01415{left:392.976508px;}
.x6_c01415{left:394.470000px;}
.x7_c01415{left:450.360000px;}
.x16_c01415{left:457.113614px;}
.xd_c01415{left:468.136500px;}
.x8_c01415{left:478.440000px;}
.x17_c01415{left:488.163636px;}
.x18_c01415{left:531.634268px;}
.x9_c01415{left:539.190000px;}
.xe_c01415{left:550.212000px;}
.xa_c01415{left:584.010000px;}
.x19_c01415{left:596.435939px;}
.x1a_c01415{left:628.566014px;}
.x1f_c01415{left:646.367823px;}
.x1_c01415{left:662.040000px;}
.xf_c01415{left:666.295500px;}
.x1b_c01415{left:694.717758px;}
@media print{
.v0_c01415{vertical-align:0.000000pt;}
.ls0_c01415{letter-spacing:0.000000pt;}
.ws0_c01415{word-spacing:0.000000pt;}
.fs0_c01415{font-size:16.000000pt;}
.fs1_c01415{font-size:64.000000pt;}
.fs4_c01415{font-size:64.001568pt;}
.fs2_c01415{font-size:90.666667pt;}
.fs5_c01415{font-size:90.668888pt;}
.fs3_c01415{font-size:106.669280pt;}
.y0_c01415{bottom:0.000000pt;}
.y19_c01415{bottom:613.622981pt;}
.y18_c01415{bottom:617.001060pt;}
.y17_c01415{bottom:619.455864pt;}
.y16_c01415{bottom:622.002907pt;}
.yf_c01415{bottom:652.616807pt;}
.y13_c01415{bottom:652.616897pt;}
.yc_c01415{bottom:652.616939pt;}
.y14_c01415{bottom:652.616987pt;}
.ye_c01415{bottom:652.617011pt;}
.yd_c01415{bottom:652.617081pt;}
.y10_c01415{bottom:652.617083pt;}
.y11_c01415{bottom:652.617225pt;}
.yb_c01415{bottom:652.617303pt;}
.y15_c01415{bottom:652.617396pt;}
.y12_c01415{bottom:652.617421pt;}
.ya_c01415{bottom:652.617507pt;}
.y9_c01415{bottom:677.334115pt;}
.y8_c01415{bottom:678.056412pt;}
.y7_c01415{bottom:678.567104pt;}
.y6_c01415{bottom:679.319865pt;}
.y5_c01415{bottom:680.005333pt;}
.y4_c01415{bottom:745.464000pt;}
.y3_c01415{bottom:773.634667pt;}
.y2_c01415{bottom:900.240000pt;}
.y1_c01415{bottom:1001.760000pt;}
.h2_c01415{height:16.000000pt;}
.h3_c01415{height:64.000000pt;}
.h6_c01415{height:64.001568pt;}
.h4_c01415{height:90.666667pt;}
.h7_c01415{height:90.668888pt;}
.h5_c01415{height:106.669280pt;}
.h1_c01415{height:1111.333333pt;}
.h0_c01415{height:1111.440000pt;}
.w0_c01415{width:810.666667pt;}
.x0_c01415{left:0.000000pt;}
.x1c_c01415{left:15.924461pt;}
.x10_c01415{left:109.676680pt;}
.x2_c01415{left:111.600000pt;}
.x3_c01415{left:156.480000pt;}
.x11_c01415{left:161.517885pt;}
.x1d_c01415{left:185.682951pt;}
.x12_c01415{left:192.238055pt;}
.x4_c01415{left:201.120000pt;}
.xb_c01415{left:210.660000pt;}
.x13_c01415{left:219.838075pt;}
.x5_c01415{left:251.040000pt;}
.x14_c01415{left:299.280633pt;}
.xc_c01415{left:308.584000pt;}
.x15_c01415{left:339.121251pt;}
.x1e_c01415{left:349.312452pt;}
.x6_c01415{left:350.640000pt;}
.x7_c01415{left:400.320000pt;}
.x16_c01415{left:406.323212pt;}
.xd_c01415{left:416.121333pt;}
.x8_c01415{left:425.280000pt;}
.x17_c01415{left:433.923232pt;}
.x18_c01415{left:472.563793pt;}
.x9_c01415{left:479.280000pt;}
.xe_c01415{left:489.077333pt;}
.xa_c01415{left:519.120000pt;}
.x19_c01415{left:530.165279pt;}
.x1a_c01415{left:558.725345pt;}
.x1f_c01415{left:574.549176pt;}
.x1_c01415{left:588.480000pt;}
.xf_c01415{left:592.262667pt;}
.x1b_c01415{left:617.526896pt;}
}





/* 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_c01416 {
    display:none;
  }
  .loading-indicator_c01416.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01416 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_c01416 { 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_c01416" -> "#page-container .classname_c01416")
 */
.pf_c01416 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01416 { /* 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_c01416.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01416 { /* 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_c01416 { /* 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_c01416 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01416 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01416 {overflow:visible;}
  }
}
.c_c01416 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01416 { /* 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_c01416:after { /* webkit #35443 */
  content: '';
}
.t_c01416:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01416 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 */
}
.__c01416 { /* 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_c01416 { /* info for Javascript */
  display:none;
}
.l_c01416 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01416 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01416 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01416: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_c01416 {
    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_c01416.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01416.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_c01416 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01416{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01416;src:url('chunks/assets/font_fabf4b590f7fb32aea93ffb2.woff2')format("woff");}.ff1_c01416{font-family:ff1_c01416;line-height:1.000000;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;}
.m0_c01416{transform:matrix(0.157645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157645,0.000000,0.000000,0.250000,0,0);}
.m70_c01416{transform:matrix(0.160695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160695,0.000000,0.000000,0.250000,0,0);}
.m2_c01416{transform:matrix(0.162065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162065,0.000000,0.000000,0.250000,0,0);}
.ma9_c01416{transform:matrix(0.169760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169760,0.000000,0.000000,0.250000,0,0);}
.mad_c01416{transform:matrix(0.182340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182340,0.000000,0.000000,0.250000,0,0);}
.m40_c01416{transform:matrix(0.184910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184910,0.000000,0.000000,0.250000,0,0);}
.m79_c01416{transform:matrix(0.185925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185925,0.000000,0.000000,0.250000,0,0);}
.mcc_c01416{transform:matrix(0.188700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188700,0.000000,0.000000,0.250000,0,0);}
.mcf_c01416{transform:matrix(0.190380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190380,0.000000,0.000000,0.250000,0,0);}
.m76_c01416{transform:matrix(0.190465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190465,0.000000,0.000000,0.250000,0,0);}
.md2_c01416{transform:matrix(0.191435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191435,0.000000,0.000000,0.250000,0,0);}
.m12b_c01416{transform:matrix(0.194540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194540,0.000000,0.000000,0.250000,0,0);}
.ma4_c01416{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m77_c01416{transform:matrix(0.196735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196735,0.000000,0.000000,0.250000,0,0);}
.mcd_c01416{transform:matrix(0.197800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197800,0.000000,0.000000,0.250000,0,0);}
.m78_c01416{transform:matrix(0.198385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198385,0.000000,0.000000,0.250000,0,0);}
.m7_c01416{transform:matrix(0.198400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198400,0.000000,0.000000,0.250000,0,0);}
.maa_c01416{transform:matrix(0.200580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200580,0.000000,0.000000,0.250000,0,0);}
.m131_c01416{transform:matrix(0.201305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201305,0.000000,0.000000,0.250000,0,0);}
.m124_c01416{transform:matrix(0.201970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201970,0.000000,0.000000,0.250000,0,0);}
.m4f_c01416{transform:matrix(0.203005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203005,0.000000,0.000000,0.250000,0,0);}
.m130_c01416{transform:matrix(0.203165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203165,0.000000,0.000000,0.250000,0,0);}
.mc2_c01416{transform:matrix(0.203170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203170,0.000000,0.000000,0.250000,0,0);}
.m80_c01416{transform:matrix(0.203700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203700,0.000000,0.000000,0.250000,0,0);}
.m126_c01416{transform:matrix(0.203855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203855,0.000000,0.000000,0.250000,0,0);}
.m149_c01416{transform:matrix(0.204195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204195,0.000000,0.000000,0.250000,0,0);}
.ma7_c01416{transform:matrix(0.204465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204465,0.000000,0.000000,0.250000,0,0);}
.mda_c01416{transform:matrix(0.205540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205540,0.000000,0.000000,0.250000,0,0);}
.ma5_c01416{transform:matrix(0.206400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206400,0.000000,0.000000,0.250000,0,0);}
.m107_c01416{transform:matrix(0.206830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206830,0.000000,0.000000,0.250000,0,0);}
.m58_c01416{transform:matrix(0.206910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206910,0.000000,0.000000,0.250000,0,0);}
.m12d_c01416{transform:matrix(0.208075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208075,0.000000,0.000000,0.250000,0,0);}
.m127_c01416{transform:matrix(0.208605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208605,0.000000,0.000000,0.250000,0,0);}
.m33_c01416{transform:matrix(0.209120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209120,0.000000,0.000000,0.250000,0,0);}
.m14_c01416{transform:matrix(0.209495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209495,0.000000,0.000000,0.250000,0,0);}
.m117_c01416{transform:matrix(0.209505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209505,0.000000,0.000000,0.250000,0,0);}
.mb3_c01416{transform:matrix(0.209545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209545,0.000000,0.000000,0.250000,0,0);}
.m12a_c01416{transform:matrix(0.209870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209870,0.000000,0.000000,0.250000,0,0);}
.m129_c01416{transform:matrix(0.210020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210020,0.000000,0.000000,0.250000,0,0);}
.ma_c01416{transform:matrix(0.210545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210545,0.000000,0.000000,0.250000,0,0);}
.m112_c01416{transform:matrix(0.210555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210555,0.000000,0.000000,0.250000,0,0);}
.mae_c01416{transform:matrix(0.210830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210830,0.000000,0.000000,0.250000,0,0);}
.md0_c01416{transform:matrix(0.210990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210990,0.000000,0.000000,0.250000,0,0);}
.md1_c01416{transform:matrix(0.211490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211490,0.000000,0.000000,0.250000,0,0);}
.m9b_c01416{transform:matrix(0.211565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211565,0.000000,0.000000,0.250000,0,0);}
.m7f_c01416{transform:matrix(0.212185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212185,0.000000,0.000000,0.250000,0,0);}
.m104_c01416{transform:matrix(0.212200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212200,0.000000,0.000000,0.250000,0,0);}
.ma6_c01416{transform:matrix(0.212490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212490,0.000000,0.000000,0.250000,0,0);}
.md4_c01416{transform:matrix(0.212515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212515,0.000000,0.000000,0.250000,0,0);}
.md3_c01416{transform:matrix(0.213645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213645,0.000000,0.000000,0.250000,0,0);}
.me1_c01416{transform:matrix(0.214530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214530,0.000000,0.000000,0.250000,0,0);}
.me3_c01416{transform:matrix(0.215060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215060,0.000000,0.000000,0.250000,0,0);}
.mab_c01416{transform:matrix(0.215865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215865,0.000000,0.000000,0.250000,0,0);}
.m12e_c01416{transform:matrix(0.216505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216505,0.000000,0.000000,0.250000,0,0);}
.m15b_c01416{transform:matrix(0.216790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216790,0.000000,0.000000,0.250000,0,0);}
.md5_c01416{transform:matrix(0.217620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217620,0.000000,0.000000,0.250000,0,0);}
.me9_c01416{transform:matrix(0.217780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217780,0.000000,0.000000,0.250000,0,0);}
.mce_c01416{transform:matrix(0.217825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217825,0.000000,0.000000,0.250000,0,0);}
.m105_c01416{transform:matrix(0.218090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218090,0.000000,0.000000,0.250000,0,0);}
.m74_c01416{transform:matrix(0.218795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218795,0.000000,0.000000,0.250000,0,0);}
.m9e_c01416{transform:matrix(0.218940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218940,0.000000,0.000000,0.250000,0,0);}
.m7a_c01416{transform:matrix(0.220375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220375,0.000000,0.000000,0.250000,0,0);}
.mb0_c01416{transform:matrix(0.220555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220555,0.000000,0.000000,0.250000,0,0);}
.med_c01416{transform:matrix(0.220625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220625,0.000000,0.000000,0.250000,0,0);}
.ma8_c01416{transform:matrix(0.220955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220955,0.000000,0.000000,0.250000,0,0);}
.m168_c01416{transform:matrix(0.220975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220975,0.000000,0.000000,0.250000,0,0);}
.mc6_c01416{transform:matrix(0.221160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221160,0.000000,0.000000,0.250000,0,0);}
.mcb_c01416{transform:matrix(0.221270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221270,0.000000,0.000000,0.250000,0,0);}
.m101_c01416{transform:matrix(0.221375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221375,0.000000,0.000000,0.250000,0,0);}
.mc_c01416{transform:matrix(0.221455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221455,0.000000,0.000000,0.250000,0,0);}
.m60_c01416{transform:matrix(0.221470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221470,0.000000,0.000000,0.250000,0,0);}
.m6c_c01416{transform:matrix(0.221645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221645,0.000000,0.000000,0.250000,0,0);}
.m12c_c01416{transform:matrix(0.222445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222445,0.000000,0.000000,0.250000,0,0);}
.mc3_c01416{transform:matrix(0.223180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223180,0.000000,0.000000,0.250000,0,0);}
.ma0_c01416{transform:matrix(0.223380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223380,0.000000,0.000000,0.250000,0,0);}
.m16_c01416{transform:matrix(0.223605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223605,0.000000,0.000000,0.250000,0,0);}
.m6a_c01416{transform:matrix(0.223675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223675,0.000000,0.000000,0.250000,0,0);}
.m1_c01416{transform:matrix(0.223780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223780,0.000000,0.000000,0.250000,0,0);}
.m128_c01416{transform:matrix(0.223860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223860,0.000000,0.000000,0.250000,0,0);}
.m73_c01416{transform:matrix(0.223885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223885,0.000000,0.000000,0.250000,0,0);}
.m116_c01416{transform:matrix(0.224035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224035,0.000000,0.000000,0.250000,0,0);}
.mdd_c01416{transform:matrix(0.224080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224080,0.000000,0.000000,0.250000,0,0);}
.m8a_c01416{transform:matrix(0.224450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224450,0.000000,0.000000,0.250000,0,0);}
.m50_c01416{transform:matrix(0.224735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224735,0.000000,0.000000,0.250000,0,0);}
.m19_c01416{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m16a_c01416{transform:matrix(0.225030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225030,0.000000,0.000000,0.250000,0,0);}
.m99_c01416{transform:matrix(0.225120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225120,0.000000,0.000000,0.250000,0,0);}
.m12f_c01416{transform:matrix(0.225175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225175,0.000000,0.000000,0.250000,0,0);}
.m113_c01416{transform:matrix(0.225315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225315,0.000000,0.000000,0.250000,0,0);}
.me6_c01416{transform:matrix(0.225505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225505,0.000000,0.000000,0.250000,0,0);}
.mc9_c01416{transform:matrix(0.226025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226025,0.000000,0.000000,0.250000,0,0);}
.m9c_c01416{transform:matrix(0.226175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226175,0.000000,0.000000,0.250000,0,0);}
.m7d_c01416{transform:matrix(0.226340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226340,0.000000,0.000000,0.250000,0,0);}
.mdf_c01416{transform:matrix(0.226575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226575,0.000000,0.000000,0.250000,0,0);}
.m9f_c01416{transform:matrix(0.226600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226600,0.000000,0.000000,0.250000,0,0);}
.m27_c01416{transform:matrix(0.227005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227005,0.000000,0.000000,0.250000,0,0);}
.m11_c01416{transform:matrix(0.227060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227060,0.000000,0.000000,0.250000,0,0);}
.m15d_c01416{transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);}
.m15c_c01416{transform:matrix(0.227985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227985,0.000000,0.000000,0.250000,0,0);}
.m64_c01416{transform:matrix(0.228170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228170,0.000000,0.000000,0.250000,0,0);}
.m3_c01416{transform:matrix(0.228430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228430,0.000000,0.000000,0.250000,0,0);}
.m154_c01416{transform:matrix(0.229195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229195,0.000000,0.000000,0.250000,0,0);}
.m162_c01416{transform:matrix(0.229205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229205,0.000000,0.000000,0.250000,0,0);}
.m10_c01416{transform:matrix(0.229525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229525,0.000000,0.000000,0.250000,0,0);}
.m114_c01416{transform:matrix(0.230045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230045,0.000000,0.000000,0.250000,0,0);}
.m5b_c01416{transform:matrix(0.230285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230285,0.000000,0.000000,0.250000,0,0);}
.m28_c01416{transform:matrix(0.230340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230340,0.000000,0.000000,0.250000,0,0);}
.me5_c01416{transform:matrix(0.230445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230445,0.000000,0.000000,0.250000,0,0);}
.m6d_c01416{transform:matrix(0.230460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230460,0.000000,0.000000,0.250000,0,0);}
.m6_c01416{transform:matrix(0.230550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230550,0.000000,0.000000,0.250000,0,0);}
.m158_c01416{transform:matrix(0.230895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230895,0.000000,0.000000,0.250000,0,0);}
.m4a_c01416{transform:matrix(0.231625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231625,0.000000,0.000000,0.250000,0,0);}
.mac_c01416{transform:matrix(0.231830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231830,0.000000,0.000000,0.250000,0,0);}
.m7e_c01416{transform:matrix(0.232260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232260,0.000000,0.000000,0.250000,0,0);}
.m5c_c01416{transform:matrix(0.232455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232455,0.000000,0.000000,0.250000,0,0);}
.m7b_c01416{transform:matrix(0.232540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232540,0.000000,0.000000,0.250000,0,0);}
.m151_c01416{transform:matrix(0.232595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232595,0.000000,0.000000,0.250000,0,0);}
.ma2_c01416{transform:matrix(0.232725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232725,0.000000,0.000000,0.250000,0,0);}
.mb5_c01416{transform:matrix(0.232985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232985,0.000000,0.000000,0.250000,0,0);}
.m4e_c01416{transform:matrix(0.233405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233405,0.000000,0.000000,0.250000,0,0);}
.m16c_c01416{transform:matrix(0.233470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233470,0.000000,0.000000,0.250000,0,0);}
.m93_c01416{transform:matrix(0.233695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233695,0.000000,0.000000,0.250000,0,0);}
.m125_c01416{transform:matrix(0.233710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233710,0.000000,0.000000,0.250000,0,0);}
.m16b_c01416{transform:matrix(0.234095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234095,0.000000,0.000000,0.250000,0,0);}
.m65_c01416{transform:matrix(0.234225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234225,0.000000,0.000000,0.250000,0,0);}
.mf0_c01416{transform:matrix(0.234320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234320,0.000000,0.000000,0.250000,0,0);}
.m75_c01416{transform:matrix(0.234755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234755,0.000000,0.000000,0.250000,0,0);}
.m1d_c01416{transform:matrix(0.234800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234800,0.000000,0.000000,0.250000,0,0);}
.mc7_c01416{transform:matrix(0.235390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235390,0.000000,0.000000,0.250000,0,0);}
.m119_c01416{transform:matrix(0.235435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235435,0.000000,0.000000,0.250000,0,0);}
.mf2_c01416{transform:matrix(0.235790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235790,0.000000,0.000000,0.250000,0,0);}
.mc1_c01416{transform:matrix(0.235800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235800,0.000000,0.000000,0.250000,0,0);}
.m53_c01416{transform:matrix(0.235850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235850,0.000000,0.000000,0.250000,0,0);}
.m52_c01416{transform:matrix(0.235880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235880,0.000000,0.000000,0.250000,0,0);}
.m161_c01416{transform:matrix(0.235920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235920,0.000000,0.000000,0.250000,0,0);}
.m4_c01416{transform:matrix(0.236365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236365,0.000000,0.000000,0.250000,0,0);}
.m31_c01416{transform:matrix(0.236645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236645,0.000000,0.000000,0.250000,0,0);}
.mb1_c01416{transform:matrix(0.236655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236655,0.000000,0.000000,0.250000,0,0);}
.me0_c01416{transform:matrix(0.236830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236830,0.000000,0.000000,0.250000,0,0);}
.m169_c01416{transform:matrix(0.237070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237070,0.000000,0.000000,0.250000,0,0);}
.mbb_c01416{transform:matrix(0.237365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237365,0.000000,0.000000,0.250000,0,0);}
.m160_c01416{transform:matrix(0.237620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237620,0.000000,0.000000,0.250000,0,0);}
.m11e_c01416{transform:matrix(0.237770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237770,0.000000,0.000000,0.250000,0,0);}
.ma1_c01416{transform:matrix(0.237955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237955,0.000000,0.000000,0.250000,0,0);}
.mfd_c01416{transform:matrix(0.238355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238355,0.000000,0.000000,0.250000,0,0);}
.m24_c01416{transform:matrix(0.238535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238535,0.000000,0.000000,0.250000,0,0);}
.m115_c01416{transform:matrix(0.238640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238640,0.000000,0.000000,0.250000,0,0);}
.m8_c01416{transform:matrix(0.238735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238735,0.000000,0.000000,0.250000,0,0);}
.mb_c01416{transform:matrix(0.238795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238795,0.000000,0.000000,0.250000,0,0);}
.maf_c01416{transform:matrix(0.238960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238960,0.000000,0.000000,0.250000,0,0);}
.mf5_c01416{transform:matrix(0.239015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239015,0.000000,0.000000,0.250000,0,0);}
.m85_c01416{transform:matrix(0.239070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239070,0.000000,0.000000,0.250000,0,0);}
.m92_c01416{transform:matrix(0.239310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239310,0.000000,0.000000,0.250000,0,0);}
.m7c_c01416{transform:matrix(0.239440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239440,0.000000,0.000000,0.250000,0,0);}
.m135_c01416{transform:matrix(0.239545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239545,0.000000,0.000000,0.250000,0,0);}
.m62_c01416{transform:matrix(0.239590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239590,0.000000,0.000000,0.250000,0,0);}
.mee_c01416{transform:matrix(0.239650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239650,0.000000,0.000000,0.250000,0,0);}
.mb2_c01416{transform:matrix(0.239715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239715,0.000000,0.000000,0.250000,0,0);}
.m35_c01416{transform:matrix(0.239910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239910,0.000000,0.000000,0.250000,0,0);}
.m2f_c01416{transform:matrix(0.240045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240045,0.000000,0.000000,0.250000,0,0);}
.mfa_c01416{transform:matrix(0.240105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240105,0.000000,0.000000,0.250000,0,0);}
.m67_c01416{transform:matrix(0.240115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240115,0.000000,0.000000,0.250000,0,0);}
.m20_c01416{transform:matrix(0.240155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240155,0.000000,0.000000,0.250000,0,0);}
.m41_c01416{transform:matrix(0.240280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240280,0.000000,0.000000,0.250000,0,0);}
.m155_c01416{transform:matrix(0.240295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240295,0.000000,0.000000,0.250000,0,0);}
.m163_c01416{transform:matrix(0.240450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240450,0.000000,0.000000,0.250000,0,0);}
.mdb_c01416{transform:matrix(0.241075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241075,0.000000,0.000000,0.250000,0,0);}
.m145_c01416{transform:matrix(0.241300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241300,0.000000,0.000000,0.250000,0,0);}
.me4_c01416{transform:matrix(0.241510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241510,0.000000,0.000000,0.250000,0,0);}
.m4b_c01416{transform:matrix(0.241995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241995,0.000000,0.000000,0.250000,0,0);}
.m3b_c01416{transform:matrix(0.242020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242020,0.000000,0.000000,0.250000,0,0);}
.me2_c01416{transform:matrix(0.242100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242100,0.000000,0.000000,0.250000,0,0);}
.mf3_c01416{transform:matrix(0.242230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242230,0.000000,0.000000,0.250000,0,0);}
.m166_c01416{transform:matrix(0.242595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242595,0.000000,0.000000,0.250000,0,0);}
.m152_c01416{transform:matrix(0.242745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242745,0.000000,0.000000,0.250000,0,0);}
.m100_c01416{transform:matrix(0.243315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243315,0.000000,0.000000,0.250000,0,0);}
.m30_c01416{transform:matrix(0.243495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243495,0.000000,0.000000,0.250000,0,0);}
.m5a_c01416{transform:matrix(0.243840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243840,0.000000,0.000000,0.250000,0,0);}
.md6_c01416{transform:matrix(0.243915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243915,0.000000,0.000000,0.250000,0,0);}
.m8f_c01416{transform:matrix(0.244095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244095,0.000000,0.000000,0.250000,0,0);}
.m108_c01416{transform:matrix(0.244310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244310,0.000000,0.000000,0.250000,0,0);}
.me7_c01416{transform:matrix(0.244400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244400,0.000000,0.000000,0.250000,0,0);}
.m37_c01416{transform:matrix(0.244860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244860,0.000000,0.000000,0.250000,0,0);}
.mbe_c01416{transform:matrix(0.244880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244880,0.000000,0.000000,0.250000,0,0);}
.m84_c01416{transform:matrix(0.245180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245180,0.000000,0.000000,0.250000,0,0);}
.mb7_c01416{transform:matrix(0.245215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245215,0.000000,0.000000,0.250000,0,0);}
.m110_c01416{transform:matrix(0.245365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245365,0.000000,0.000000,0.250000,0,0);}
.mfc_c01416{transform:matrix(0.245390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245390,0.000000,0.000000,0.250000,0,0);}
.m123_c01416{transform:matrix(0.245715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245715,0.000000,0.000000,0.250000,0,0);}
.mc4_c01416{transform:matrix(0.245770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245770,0.000000,0.000000,0.250000,0,0);}
.m82_c01416{transform:matrix(0.245835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245835,0.000000,0.000000,0.250000,0,0);}
.m63_c01416{transform:matrix(0.245970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245970,0.000000,0.000000,0.250000,0,0);}
.meb_c01416{transform:matrix(0.246025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246025,0.000000,0.000000,0.250000,0,0);}
.mf8_c01416{transform:matrix(0.246195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246195,0.000000,0.000000,0.250000,0,0);}
.mdc_c01416{transform:matrix(0.246775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246775,0.000000,0.000000,0.250000,0,0);}
.mfe_c01416{transform:matrix(0.246845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246845,0.000000,0.000000,0.250000,0,0);}
.m150_c01416{transform:matrix(0.246905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246905,0.000000,0.000000,0.250000,0,0);}
.m95_c01416{transform:matrix(0.246940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246940,0.000000,0.000000,0.250000,0,0);}
.m138_c01416{transform:matrix(0.247070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247070,0.000000,0.000000,0.250000,0,0);}
.m165_c01416{transform:matrix(0.247155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247155,0.000000,0.000000,0.250000,0,0);}
.m15e_c01416{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m156_c01416{transform:matrix(0.247550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247550,0.000000,0.000000,0.250000,0,0);}
.m87_c01416{transform:matrix(0.247640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247640,0.000000,0.000000,0.250000,0,0);}
.m13_c01416{transform:matrix(0.247755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247755,0.000000,0.000000,0.250000,0,0);}
.mf7_c01416{transform:matrix(0.247855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247855,0.000000,0.000000,0.250000,0,0);}
.me8_c01416{transform:matrix(0.248045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248045,0.000000,0.000000,0.250000,0,0);}
.m136_c01416{transform:matrix(0.248445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248445,0.000000,0.000000,0.250000,0,0);}
.mb9_c01416{transform:matrix(0.248555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248555,0.000000,0.000000,0.250000,0,0);}
.mf4_c01416{transform:matrix(0.248850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248850,0.000000,0.000000,0.250000,0,0);}
.m71_c01416{transform:matrix(0.248950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248950,0.000000,0.000000,0.250000,0,0);}
.m9a_c01416{transform:matrix(0.248985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248985,0.000000,0.000000,0.250000,0,0);}
.m5_c01416{transform:matrix(0.249050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249050,0.000000,0.000000,0.250000,0,0);}
.md9_c01416{transform:matrix(0.249235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249235,0.000000,0.000000,0.250000,0,0);}
.m14e_c01416{transform:matrix(0.249325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249325,0.000000,0.000000,0.250000,0,0);}
.m164_c01416{transform:matrix(0.249740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249740,0.000000,0.000000,0.250000,0,0);}
.m57_c01416{transform:matrix(0.250155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250155,0.000000,0.000000,0.250000,0,0);}
.mde_c01416{transform:matrix(0.250270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250270,0.000000,0.000000,0.250000,0,0);}
.m56_c01416{transform:matrix(0.250470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250470,0.000000,0.000000,0.250000,0,0);}
.m167_c01416{transform:matrix(0.250580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250580,0.000000,0.000000,0.250000,0,0);}
.mf_c01416{transform:matrix(0.250790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250790,0.000000,0.000000,0.250000,0,0);}
.me_c01416{transform:matrix(0.251040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251040,0.000000,0.000000,0.250000,0,0);}
.m11c_c01416{transform:matrix(0.251280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251280,0.000000,0.000000,0.250000,0,0);}
.mc8_c01416{transform:matrix(0.251340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251340,0.000000,0.000000,0.250000,0,0);}
.md_c01416{transform:matrix(0.251645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251645,0.000000,0.000000,0.250000,0,0);}
.m6f_c01416{transform:matrix(0.251660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251660,0.000000,0.000000,0.250000,0,0);}
.m1c_c01416{transform:matrix(0.251845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251845,0.000000,0.000000,0.250000,0,0);}
.md7_c01416{transform:matrix(0.251875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251875,0.000000,0.000000,0.250000,0,0);}
.m10a_c01416{transform:matrix(0.251880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251880,0.000000,0.000000,0.250000,0,0);}
.mbf_c01416{transform:matrix(0.252255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252255,0.000000,0.000000,0.250000,0,0);}
.m132_c01416{transform:matrix(0.252430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252430,0.000000,0.000000,0.250000,0,0);}
.m11b_c01416{transform:matrix(0.252550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252550,0.000000,0.000000,0.250000,0,0);}
.m2b_c01416{transform:matrix(0.252845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252845,0.000000,0.000000,0.250000,0,0);}
.m6e_c01416{transform:matrix(0.253290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253290,0.000000,0.000000,0.250000,0,0);}
.m111_c01416{transform:matrix(0.253315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253315,0.000000,0.000000,0.250000,0,0);}
.m10f_c01416{transform:matrix(0.253435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253435,0.000000,0.000000,0.250000,0,0);}
.mf1_c01416{transform:matrix(0.253555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253555,0.000000,0.000000,0.250000,0,0);}
.m3e_c01416{transform:matrix(0.253585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253585,0.000000,0.000000,0.250000,0,0);}
.m97_c01416{transform:matrix(0.253845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253845,0.000000,0.000000,0.250000,0,0);}
.m54_c01416{transform:matrix(0.253875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253875,0.000000,0.000000,0.250000,0,0);}
.m11a_c01416{transform:matrix(0.253900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253900,0.000000,0.000000,0.250000,0,0);}
.m13a_c01416{transform:matrix(0.254170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254170,0.000000,0.000000,0.250000,0,0);}
.m1e_c01416{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.mbd_c01416{transform:matrix(0.254310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254310,0.000000,0.000000,0.250000,0,0);}
.ma3_c01416{transform:matrix(0.254380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254380,0.000000,0.000000,0.250000,0,0);}
.m147_c01416{transform:matrix(0.254470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254470,0.000000,0.000000,0.250000,0,0);}
.m61_c01416{transform:matrix(0.254755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254755,0.000000,0.000000,0.250000,0,0);}
.m6b_c01416{transform:matrix(0.255050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255050,0.000000,0.000000,0.250000,0,0);}
.mbc_c01416{transform:matrix(0.255055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255055,0.000000,0.000000,0.250000,0,0);}
.m72_c01416{transform:matrix(0.255310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255310,0.000000,0.000000,0.250000,0,0);}
.m17_c01416{transform:matrix(0.255580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255580,0.000000,0.000000,0.250000,0,0);}
.m98_c01416{transform:matrix(0.255675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255675,0.000000,0.000000,0.250000,0,0);}
.m9d_c01416{transform:matrix(0.255740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255740,0.000000,0.000000,0.250000,0,0);}
.m133_c01416{transform:matrix(0.255935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255935,0.000000,0.000000,0.250000,0,0);}
.m10e_c01416{transform:matrix(0.256080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256080,0.000000,0.000000,0.250000,0,0);}
.m45_c01416{transform:matrix(0.256150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256150,0.000000,0.000000,0.250000,0,0);}
.mca_c01416{transform:matrix(0.256160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256160,0.000000,0.000000,0.250000,0,0);}
.mec_c01416{transform:matrix(0.256610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256610,0.000000,0.000000,0.250000,0,0);}
.m157_c01416{transform:matrix(0.256870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256870,0.000000,0.000000,0.250000,0,0);}
.m8c_c01416{transform:matrix(0.257290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257290,0.000000,0.000000,0.250000,0,0);}
.m13f_c01416{transform:matrix(0.257320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257320,0.000000,0.000000,0.250000,0,0);}
.m118_c01416{transform:matrix(0.257365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257365,0.000000,0.000000,0.250000,0,0);}
.mb4_c01416{transform:matrix(0.257735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257735,0.000000,0.000000,0.250000,0,0);}
.m103_c01416{transform:matrix(0.257745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257745,0.000000,0.000000,0.250000,0,0);}
.m15_c01416{transform:matrix(0.258605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258605,0.000000,0.000000,0.250000,0,0);}
.m3a_c01416{transform:matrix(0.258615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258615,0.000000,0.000000,0.250000,0,0);}
.m38_c01416{transform:matrix(0.259210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259210,0.000000,0.000000,0.250000,0,0);}
.m14b_c01416{transform:matrix(0.259615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259615,0.000000,0.000000,0.250000,0,0);}
.m2c_c01416{transform:matrix(0.259825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259825,0.000000,0.000000,0.250000,0,0);}
.m1a_c01416{transform:matrix(0.259970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259970,0.000000,0.000000,0.250000,0,0);}
.m1b_c01416{transform:matrix(0.260050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260050,0.000000,0.000000,0.250000,0,0);}
.m10b_c01416{transform:matrix(0.260160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260160,0.000000,0.000000,0.250000,0,0);}
.m153_c01416{transform:matrix(0.260175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260175,0.000000,0.000000,0.250000,0,0);}
.mc5_c01416{transform:matrix(0.260885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260885,0.000000,0.000000,0.250000,0,0);}
.m102_c01416{transform:matrix(0.260930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260930,0.000000,0.000000,0.250000,0,0);}
.mef_c01416{transform:matrix(0.261205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261205,0.000000,0.000000,0.250000,0,0);}
.m96_c01416{transform:matrix(0.261635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261635,0.000000,0.000000,0.250000,0,0);}
.m4c_c01416{transform:matrix(0.261945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261945,0.000000,0.000000,0.250000,0,0);}
.m29_c01416{transform:matrix(0.262110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262110,0.000000,0.000000,0.250000,0,0);}
.mba_c01416{transform:matrix(0.262525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262525,0.000000,0.000000,0.250000,0,0);}
.m140_c01416{transform:matrix(0.262885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262885,0.000000,0.000000,0.250000,0,0);}
.m2d_c01416{transform:matrix(0.263110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263110,0.000000,0.000000,0.250000,0,0);}
.m143_c01416{transform:matrix(0.263230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263230,0.000000,0.000000,0.250000,0,0);}
.m3c_c01416{transform:matrix(0.263275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263275,0.000000,0.000000,0.250000,0,0);}
.m90_c01416{transform:matrix(0.263340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263340,0.000000,0.000000,0.250000,0,0);}
.m59_c01416{transform:matrix(0.263495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263495,0.000000,0.000000,0.250000,0,0);}
.m10d_c01416{transform:matrix(0.263795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263795,0.000000,0.000000,0.250000,0,0);}
.m89_c01416{transform:matrix(0.264020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264020,0.000000,0.000000,0.250000,0,0);}
.m55_c01416{transform:matrix(0.264050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264050,0.000000,0.000000,0.250000,0,0);}
.m109_c01416{transform:matrix(0.264070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264070,0.000000,0.000000,0.250000,0,0);}
.m25_c01416{transform:matrix(0.264435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264435,0.000000,0.000000,0.250000,0,0);}
.m23_c01416{transform:matrix(0.264495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264495,0.000000,0.000000,0.250000,0,0);}
.mff_c01416{transform:matrix(0.264545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264545,0.000000,0.000000,0.250000,0,0);}
.m134_c01416{transform:matrix(0.264675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264675,0.000000,0.000000,0.250000,0,0);}
.m5d_c01416{transform:matrix(0.265135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265135,0.000000,0.000000,0.250000,0,0);}
.mc0_c01416{transform:matrix(0.265310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265310,0.000000,0.000000,0.250000,0,0);}
.m2a_c01416{transform:matrix(0.265495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265495,0.000000,0.000000,0.250000,0,0);}
.m48_c01416{transform:matrix(0.265675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265675,0.000000,0.000000,0.250000,0,0);}
.m1f_c01416{transform:matrix(0.265895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265895,0.000000,0.000000,0.250000,0,0);}
.m5e_c01416{transform:matrix(0.266240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266240,0.000000,0.000000,0.250000,0,0);}
.m11d_c01416{transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);}
.m21_c01416{transform:matrix(0.266820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266820,0.000000,0.000000,0.250000,0,0);}
.m46_c01416{transform:matrix(0.267120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267120,0.000000,0.000000,0.250000,0,0);}
.m4d_c01416{transform:matrix(0.267215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267215,0.000000,0.000000,0.250000,0,0);}
.m148_c01416{transform:matrix(0.267425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267425,0.000000,0.000000,0.250000,0,0);}
.m39_c01416{transform:matrix(0.267715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267715,0.000000,0.000000,0.250000,0,0);}
.m2e_c01416{transform:matrix(0.267755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267755,0.000000,0.000000,0.250000,0,0);}
.m34_c01416{transform:matrix(0.268260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268260,0.000000,0.000000,0.250000,0,0);}
.m5f_c01416{transform:matrix(0.268310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268310,0.000000,0.000000,0.250000,0,0);}
.m18_c01416{transform:matrix(0.268420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268420,0.000000,0.000000,0.250000,0,0);}
.m14f_c01416{transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);}
.m106_c01416{transform:matrix(0.268550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268550,0.000000,0.000000,0.250000,0,0);}
.m10c_c01416{transform:matrix(0.269040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269040,0.000000,0.000000,0.250000,0,0);}
.mf9_c01416{transform:matrix(0.269640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269640,0.000000,0.000000,0.250000,0,0);}
.md8_c01416{transform:matrix(0.269645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269645,0.000000,0.000000,0.250000,0,0);}
.m12_c01416{transform:matrix(0.269940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269940,0.000000,0.000000,0.250000,0,0);}
.m49_c01416{transform:matrix(0.270005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270005,0.000000,0.000000,0.250000,0,0);}
.mb8_c01416{transform:matrix(0.270540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270540,0.000000,0.000000,0.250000,0,0);}
.m66_c01416{transform:matrix(0.270775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270775,0.000000,0.000000,0.250000,0,0);}
.m122_c01416{transform:matrix(0.270825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270825,0.000000,0.000000,0.250000,0,0);}
.m14c_c01416{transform:matrix(0.271130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271130,0.000000,0.000000,0.250000,0,0);}
.m91_c01416{transform:matrix(0.271560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271560,0.000000,0.000000,0.250000,0,0);}
.m137_c01416{transform:matrix(0.271785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271785,0.000000,0.000000,0.250000,0,0);}
.m11f_c01416{transform:matrix(0.271940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271940,0.000000,0.000000,0.250000,0,0);}
.m8e_c01416{transform:matrix(0.272445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272445,0.000000,0.000000,0.250000,0,0);}
.m68_c01416{transform:matrix(0.272495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272495,0.000000,0.000000,0.250000,0,0);}
.mf6_c01416{transform:matrix(0.272630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272630,0.000000,0.000000,0.250000,0,0);}
.mfb_c01416{transform:matrix(0.272690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272690,0.000000,0.000000,0.250000,0,0);}
.m26_c01416{transform:matrix(0.272740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272740,0.000000,0.000000,0.250000,0,0);}
.m32_c01416{transform:matrix(0.272855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272855,0.000000,0.000000,0.250000,0,0);}
.m22_c01416{transform:matrix(0.272995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272995,0.000000,0.000000,0.250000,0,0);}
.m36_c01416{transform:matrix(0.273420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273420,0.000000,0.000000,0.250000,0,0);}
.m159_c01416{transform:matrix(0.273450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273450,0.000000,0.000000,0.250000,0,0);}
.m144_c01416{transform:matrix(0.273590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273590,0.000000,0.000000,0.250000,0,0);}
.m142_c01416{transform:matrix(0.274260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274260,0.000000,0.000000,0.250000,0,0);}
.m13e_c01416{transform:matrix(0.274965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274965,0.000000,0.000000,0.250000,0,0);}
.m88_c01416{transform:matrix(0.275035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275035,0.000000,0.000000,0.250000,0,0);}
.m120_c01416{transform:matrix(0.276535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276535,0.000000,0.000000,0.250000,0,0);}
.m121_c01416{transform:matrix(0.276660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276660,0.000000,0.000000,0.250000,0,0);}
.m14a_c01416{transform:matrix(0.276980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276980,0.000000,0.000000,0.250000,0,0);}
.m94_c01416{transform:matrix(0.277030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277030,0.000000,0.000000,0.250000,0,0);}
.m51_c01416{transform:matrix(0.278325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278325,0.000000,0.000000,0.250000,0,0);}
.m69_c01416{transform:matrix(0.278395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278395,0.000000,0.000000,0.250000,0,0);}
.m14d_c01416{transform:matrix(0.279070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279070,0.000000,0.000000,0.250000,0,0);}
.m47_c01416{transform:matrix(0.279970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279970,0.000000,0.000000,0.250000,0,0);}
.mb6_c01416{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m13b_c01416{transform:matrix(0.282485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282485,0.000000,0.000000,0.250000,0,0);}
.m83_c01416{transform:matrix(0.283115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283115,0.000000,0.000000,0.250000,0,0);}
.m146_c01416{transform:matrix(0.283225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283225,0.000000,0.000000,0.250000,0,0);}
.m9_c01416{transform:matrix(0.283255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283255,0.000000,0.000000,0.250000,0,0);}
.m139_c01416{transform:matrix(0.283490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283490,0.000000,0.000000,0.250000,0,0);}
.m81_c01416{transform:matrix(0.285090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285090,0.000000,0.000000,0.250000,0,0);}
.m8b_c01416{transform:matrix(0.285420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285420,0.000000,0.000000,0.250000,0,0);}
.m15a_c01416{transform:matrix(0.285450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285450,0.000000,0.000000,0.250000,0,0);}
.m43_c01416{transform:matrix(0.286305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286305,0.000000,0.000000,0.250000,0,0);}
.m3d_c01416{transform:matrix(0.293815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293815,0.000000,0.000000,0.250000,0,0);}
.m3f_c01416{transform:matrix(0.296175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296175,0.000000,0.000000,0.250000,0,0);}
.m42_c01416{transform:matrix(0.296375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296375,0.000000,0.000000,0.250000,0,0);}
.m86_c01416{transform:matrix(0.299340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299340,0.000000,0.000000,0.250000,0,0);}
.m8d_c01416{transform:matrix(0.302000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302000,0.000000,0.000000,0.250000,0,0);}
.m44_c01416{transform:matrix(0.303165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303165,0.000000,0.000000,0.250000,0,0);}
.mea_c01416{transform:matrix(0.306500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306500,0.000000,0.000000,0.250000,0,0);}
.m141_c01416{transform:matrix(0.350540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350540,0.000000,0.000000,0.250000,0,0);}
.m15f_c01416{transform:matrix(0.381240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381240,0.000000,0.000000,0.250000,0,0);}
.m13c_c01416{transform:matrix(0.971800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.971800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.971800,0.000000,0.000000,0.250000,0,0);}
.m13d_c01416{transform:matrix(1.150945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.150945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.150945,0.000000,0.000000,0.250000,0,0);}
.v0_c01416{vertical-align:0.000000px;}
.ls0_c01416{letter-spacing:0.000000px;}
.sc__c01416{text-shadow:none;}
.sc0_c01416{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__c01416{-webkit-text-stroke:0px transparent;}
.sc0_c01416{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01416{word-spacing:0.000000px;}
._0_c01416{width:22.746036px;}
.fc0_c01416{color:transparent;}
.fs5_c01416{font-size:30.000000px;}
.fs2_c01416{font-size:66.000000px;}
.fs1_c01416{font-size:72.000000px;}
.fs0_c01416{font-size:78.000000px;}
.fs3_c01416{font-size:84.000000px;}
.fs4_c01416{font-size:90.000000px;}
.y0_c01416{bottom:0.000000px;}
.y42_c01416{bottom:60.678000px;}
.y41_c01416{bottom:76.338000px;}
.y40_c01416{bottom:95.856000px;}
.y3f_c01416{bottom:113.655000px;}
.y3e_c01416{bottom:131.497500px;}
.y3d_c01416{bottom:160.954500px;}
.y3c_c01416{bottom:180.172500px;}
.y3b_c01416{bottom:219.148500px;}
.y3a_c01416{bottom:255.150000px;}
.y39_c01416{bottom:290.781000px;}
.y38_c01416{bottom:324.697500px;}
.y37_c01416{bottom:361.071000px;}
.y36_c01416{bottom:396.090000px;}
.y35_c01416{bottom:431.449500px;}
.y34_c01416{bottom:467.581500px;}
.y33_c01416{bottom:504.630000px;}
.y29_c01416{bottom:535.950000px;}
.y2a_c01416{bottom:536.277000px;}
.y2b_c01416{bottom:536.407500px;}
.y2c_c01416{bottom:536.667000px;}
.y2d_c01416{bottom:537.132000px;}
.y2e_c01416{bottom:538.051500px;}
.y2f_c01416{bottom:538.185000px;}
.y30_c01416{bottom:538.581000px;}
.y31_c01416{bottom:539.166000px;}
.y32_c01416{bottom:539.362500px;}
.y28_c01416{bottom:575.272500px;}
.y27_c01416{bottom:612.126000px;}
.y26_c01416{bottom:645.784500px;}
.y25_c01416{bottom:681.399000px;}
.y24_c01416{bottom:716.308500px;}
.y23_c01416{bottom:751.729500px;}
.y22_c01416{bottom:787.588500px;}
.y17_c01416{bottom:821.340000px;}
.y18_c01416{bottom:821.932500px;}
.y19_c01416{bottom:822.040500px;}
.y1a_c01416{bottom:822.262500px;}
.y1b_c01416{bottom:822.754500px;}
.y1c_c01416{bottom:823.251000px;}
.y1d_c01416{bottom:823.363500px;}
.y1e_c01416{bottom:823.795500px;}
.y1f_c01416{bottom:824.239500px;}
.y20_c01416{bottom:824.454000px;}
.y21_c01416{bottom:824.625000px;}
.y16_c01416{bottom:859.689000px;}
.y15_c01416{bottom:895.081500px;}
.y8_c01416{bottom:928.530000px;}
.y9_c01416{bottom:928.764000px;}
.ya_c01416{bottom:929.253000px;}
.yb_c01416{bottom:929.418000px;}
.yc_c01416{bottom:929.584500px;}
.yd_c01416{bottom:929.914500px;}
.ye_c01416{bottom:930.408000px;}
.yf_c01416{bottom:930.598500px;}
.y10_c01416{bottom:930.793500px;}
.y11_c01416{bottom:930.954000px;}
.y12_c01416{bottom:931.554000px;}
.y13_c01416{bottom:931.671000px;}
.y14_c01416{bottom:931.887000px;}
.y7_c01416{bottom:966.603000px;}
.y6_c01416{bottom:1001.148000px;}
.y5_c01416{bottom:1037.548500px;}
.y4_c01416{bottom:1072.471500px;}
.y3_c01416{bottom:1108.594500px;}
.y2_c01416{bottom:1145.145000px;}
.y1_c01416{bottom:1215.810000px;}
.h7_c01416{height:30.000000px;}
.h4_c01416{height:66.000000px;}
.h3_c01416{height:72.000000px;}
.h2_c01416{height:78.000000px;}
.h5_c01416{height:84.000000px;}
.h6_c01416{height:90.000000px;}
.h1_c01416{height:1250.250000px;}
.h0_c01416{height:1250.370000px;}
.w0_c01416{width:912.000000px;}
.x0_c01416{left:0.000000px;}
.x3a_c01416{left:154.243500px;}
.x5b_c01416{left:156.060000px;}
.x10_c01416{left:157.140000px;}
.x4_c01416{left:158.220000px;}
.x55_c01416{left:178.470000px;}
.x5c_c01416{left:188.190000px;}
.x70_c01416{left:189.810000px;}
.x72_c01416{left:199.530000px;}
.x11_c01416{left:200.610000px;}
.x79_c01416{left:210.060000px;}
.x5_c01416{left:211.140000px;}
.x7d_c01416{left:212.220000px;}
.x76_c01416{left:221.400000px;}
.x51_c01416{left:222.477000px;}
.x64_c01416{left:232.200000px;}
.x41_c01416{left:233.277000px;}
.x12_c01416{left:234.360000px;}
.x56_c01416{left:243.270000px;}
.x6a_c01416{left:244.890000px;}
.x6_c01416{left:254.880000px;}
.x58_c01416{left:264.870000px;}
.x13_c01416{left:266.220000px;}
.x1d_c01416{left:277.020000px;}
.x42_c01416{left:287.817000px;}
.x31_c01416{left:288.900000px;}
.x67_c01416{left:298.080000px;}
.x24_c01416{left:299.160000px;}
.x43_c01416{left:309.417000px;}
.x4d_c01416{left:310.767000px;}
.x6c_c01416{left:319.410000px;}
.x52_c01416{left:320.487000px;}
.x32_c01416{left:331.290000px;}
.x1e_c01416{left:333.180000px;}
.x68_c01416{left:341.280000px;}
.x49_c01416{left:342.706500px;}
.x6d_c01416{left:352.080000px;}
.x3e_c01416{left:353.697000px;}
.x6b_c01416{left:363.420000px;}
.x7_c01416{left:364.770000px;}
.x1_c01416{left:369.090000px;}
.x4e_c01416{left:374.757000px;}
.x14_c01416{left:375.840000px;}
.x8_c01416{left:386.910000px;}
.x2_c01416{left:392.850000px;}
.x57_c01416{left:397.170000px;}
.x15_c01416{left:398.250000px;}
.x77_c01416{left:407.970000px;}
.x33_c01416{left:409.050000px;}
.x9_c01416{left:410.400000px;}
.x71_c01416{left:418.500000px;}
.x16_c01416{left:419.850000px;}
.x66_c01416{left:428.760000px;}
.x44_c01416{left:429.837000px;}
.x34_c01416{left:431.460000px;}
.x3_c01416{left:435.240000px;}
.x4a_c01416{left:441.237000px;}
.x7a_c01416{left:442.530000px;}
.x2b_c01416{left:453.060000px;}
.x1f_c01416{left:463.590000px;}
.x4f_c01416{left:474.117000px;}
.xa_c01416{left:475.200000px;}
.x25_c01416{left:484.920000px;}
.x3f_c01416{left:486.807000px;}
.x62_c01416{left:495.450000px;}
.x17_c01416{left:496.800000px;}
.x59_c01416{left:505.980000px;}
.x45_c01416{left:507.597000px;}
.x65_c01416{left:517.590000px;}
.x5d_c01416{left:518.670000px;}
.x26_c01416{left:528.390000px;}
.x18_c01416{left:529.470000px;}
.x40_c01416{left:539.727000px;}
.x20_c01416{left:551.070000px;}
.x78_c01416{left:560.790000px;}
.x35_c01416{left:562.140000px;}
.x73_c01416{left:563.220000px;}
.x3b_c01416{left:567.865500px;}
.xb_c01416{left:573.750000px;}
.x2c_c01416{left:583.740000px;}
.x27_c01416{left:593.730000px;}
.x19_c01416{left:596.160000px;}
.x6e_c01416{left:605.070000px;}
.xc_c01416{left:607.230000px;}
.x2d_c01416{left:616.680000px;}
.x61_c01416{left:626.940000px;}
.x46_c01416{left:637.737000px;}
.x36_c01416{left:639.630000px;}
.x4b_c01416{left:649.426500px;}
.x7b_c01416{left:650.430000px;}
.x50_c01416{left:659.877000px;}
.x69_c01416{left:661.770000px;}
.x5e_c01416{left:670.950000px;}
.x28_c01416{left:672.300000px;}
.x47_c01416{left:681.207000px;}
.x2e_c01416{left:682.560000px;}
.xd_c01416{left:683.640000px;}
.x60_c01416{left:692.643000px;}
.x21_c01416{left:695.250000px;}
.x63_c01416{left:704.160000px;}
.x1a_c01416{left:705.510000px;}
.xe_c01416{left:715.500000px;}
.x74_c01416{left:716.580000px;}
.x53_c01416{left:726.297000px;}
.x7c_c01416{left:727.380000px;}
.x4c_c01416{left:738.238500px;}
.x1b_c01416{left:739.260000px;}
.x2f_c01416{left:748.440000px;}
.x29_c01416{left:750.060000px;}
.x54_c01416{left:758.427000px;}
.x22_c01416{left:759.780000px;}
.x37_c01416{left:760.860000px;}
.x6f_c01416{left:769.770000px;}
.x48_c01416{left:781.107000px;}
.x3c_c01416{left:782.514000px;}
.xf_c01416{left:792.180000px;}
.x23_c01416{left:794.070000px;}
.x5a_c01416{left:802.440000px;}
.x38_c01416{left:803.520000px;}
.x2a_c01416{left:804.600000px;}
.x5f_c01416{left:813.780000px;}
.x1c_c01416{left:815.130000px;}
.x3d_c01416{left:825.724500px;}
.x39_c01416{left:836.730000px;}
.x30_c01416{left:845.100000px;}
.x75_c01416{left:847.260000px;}
@media print{
.v0_c01416{vertical-align:0.000000pt;}
.ls0_c01416{letter-spacing:0.000000pt;}
.ws0_c01416{word-spacing:0.000000pt;}
._0_c01416{width:20.218699pt;}
.fs5_c01416{font-size:26.666667pt;}
.fs2_c01416{font-size:58.666667pt;}
.fs1_c01416{font-size:64.000000pt;}
.fs0_c01416{font-size:69.333333pt;}
.fs3_c01416{font-size:74.666667pt;}
.fs4_c01416{font-size:80.000000pt;}
.y0_c01416{bottom:0.000000pt;}
.y42_c01416{bottom:53.936000pt;}
.y41_c01416{bottom:67.856000pt;}
.y40_c01416{bottom:85.205333pt;}
.y3f_c01416{bottom:101.026667pt;}
.y3e_c01416{bottom:116.886667pt;}
.y3d_c01416{bottom:143.070667pt;}
.y3c_c01416{bottom:160.153333pt;}
.y3b_c01416{bottom:194.798667pt;}
.y3a_c01416{bottom:226.800000pt;}
.y39_c01416{bottom:258.472000pt;}
.y38_c01416{bottom:288.620000pt;}
.y37_c01416{bottom:320.952000pt;}
.y36_c01416{bottom:352.080000pt;}
.y35_c01416{bottom:383.510667pt;}
.y34_c01416{bottom:415.628000pt;}
.y33_c01416{bottom:448.560000pt;}
.y29_c01416{bottom:476.400000pt;}
.y2a_c01416{bottom:476.690667pt;}
.y2b_c01416{bottom:476.806667pt;}
.y2c_c01416{bottom:477.037333pt;}
.y2d_c01416{bottom:477.450667pt;}
.y2e_c01416{bottom:478.268000pt;}
.y2f_c01416{bottom:478.386667pt;}
.y30_c01416{bottom:478.738667pt;}
.y31_c01416{bottom:479.258667pt;}
.y32_c01416{bottom:479.433333pt;}
.y28_c01416{bottom:511.353333pt;}
.y27_c01416{bottom:544.112000pt;}
.y26_c01416{bottom:574.030667pt;}
.y25_c01416{bottom:605.688000pt;}
.y24_c01416{bottom:636.718667pt;}
.y23_c01416{bottom:668.204000pt;}
.y22_c01416{bottom:700.078667pt;}
.y17_c01416{bottom:730.080000pt;}
.y18_c01416{bottom:730.606667pt;}
.y19_c01416{bottom:730.702667pt;}
.y1a_c01416{bottom:730.900000pt;}
.y1b_c01416{bottom:731.337333pt;}
.y1c_c01416{bottom:731.778667pt;}
.y1d_c01416{bottom:731.878667pt;}
.y1e_c01416{bottom:732.262667pt;}
.y1f_c01416{bottom:732.657333pt;}
.y20_c01416{bottom:732.848000pt;}
.y21_c01416{bottom:733.000000pt;}
.y16_c01416{bottom:764.168000pt;}
.y15_c01416{bottom:795.628000pt;}
.y8_c01416{bottom:825.360000pt;}
.y9_c01416{bottom:825.568000pt;}
.ya_c01416{bottom:826.002667pt;}
.yb_c01416{bottom:826.149333pt;}
.yc_c01416{bottom:826.297333pt;}
.yd_c01416{bottom:826.590667pt;}
.ye_c01416{bottom:827.029333pt;}
.yf_c01416{bottom:827.198667pt;}
.y10_c01416{bottom:827.372000pt;}
.y11_c01416{bottom:827.514667pt;}
.y12_c01416{bottom:828.048000pt;}
.y13_c01416{bottom:828.152000pt;}
.y14_c01416{bottom:828.344000pt;}
.y7_c01416{bottom:859.202667pt;}
.y6_c01416{bottom:889.909333pt;}
.y5_c01416{bottom:922.265333pt;}
.y4_c01416{bottom:953.308000pt;}
.y3_c01416{bottom:985.417333pt;}
.y2_c01416{bottom:1017.906667pt;}
.y1_c01416{bottom:1080.720000pt;}
.h7_c01416{height:26.666667pt;}
.h4_c01416{height:58.666667pt;}
.h3_c01416{height:64.000000pt;}
.h2_c01416{height:69.333333pt;}
.h5_c01416{height:74.666667pt;}
.h6_c01416{height:80.000000pt;}
.h1_c01416{height:1111.333333pt;}
.h0_c01416{height:1111.440000pt;}
.w0_c01416{width:810.666667pt;}
.x0_c01416{left:0.000000pt;}
.x3a_c01416{left:137.105333pt;}
.x5b_c01416{left:138.720000pt;}
.x10_c01416{left:139.680000pt;}
.x4_c01416{left:140.640000pt;}
.x55_c01416{left:158.640000pt;}
.x5c_c01416{left:167.280000pt;}
.x70_c01416{left:168.720000pt;}
.x72_c01416{left:177.360000pt;}
.x11_c01416{left:178.320000pt;}
.x79_c01416{left:186.720000pt;}
.x5_c01416{left:187.680000pt;}
.x7d_c01416{left:188.640000pt;}
.x76_c01416{left:196.800000pt;}
.x51_c01416{left:197.757333pt;}
.x64_c01416{left:206.400000pt;}
.x41_c01416{left:207.357333pt;}
.x12_c01416{left:208.320000pt;}
.x56_c01416{left:216.240000pt;}
.x6a_c01416{left:217.680000pt;}
.x6_c01416{left:226.560000pt;}
.x58_c01416{left:235.440000pt;}
.x13_c01416{left:236.640000pt;}
.x1d_c01416{left:246.240000pt;}
.x42_c01416{left:255.837333pt;}
.x31_c01416{left:256.800000pt;}
.x67_c01416{left:264.960000pt;}
.x24_c01416{left:265.920000pt;}
.x43_c01416{left:275.037333pt;}
.x4d_c01416{left:276.237333pt;}
.x6c_c01416{left:283.920000pt;}
.x52_c01416{left:284.877333pt;}
.x32_c01416{left:294.480000pt;}
.x1e_c01416{left:296.160000pt;}
.x68_c01416{left:303.360000pt;}
.x49_c01416{left:304.628000pt;}
.x6d_c01416{left:312.960000pt;}
.x3e_c01416{left:314.397333pt;}
.x6b_c01416{left:323.040000pt;}
.x7_c01416{left:324.240000pt;}
.x1_c01416{left:328.080000pt;}
.x4e_c01416{left:333.117333pt;}
.x14_c01416{left:334.080000pt;}
.x8_c01416{left:343.920000pt;}
.x2_c01416{left:349.200000pt;}
.x57_c01416{left:353.040000pt;}
.x15_c01416{left:354.000000pt;}
.x77_c01416{left:362.640000pt;}
.x33_c01416{left:363.600000pt;}
.x9_c01416{left:364.800000pt;}
.x71_c01416{left:372.000000pt;}
.x16_c01416{left:373.200000pt;}
.x66_c01416{left:381.120000pt;}
.x44_c01416{left:382.077333pt;}
.x34_c01416{left:383.520000pt;}
.x3_c01416{left:386.880000pt;}
.x4a_c01416{left:392.210667pt;}
.x7a_c01416{left:393.360000pt;}
.x2b_c01416{left:402.720000pt;}
.x1f_c01416{left:412.080000pt;}
.x4f_c01416{left:421.437333pt;}
.xa_c01416{left:422.400000pt;}
.x25_c01416{left:431.040000pt;}
.x3f_c01416{left:432.717333pt;}
.x62_c01416{left:440.400000pt;}
.x17_c01416{left:441.600000pt;}
.x59_c01416{left:449.760000pt;}
.x45_c01416{left:451.197333pt;}
.x65_c01416{left:460.080000pt;}
.x5d_c01416{left:461.040000pt;}
.x26_c01416{left:469.680000pt;}
.x18_c01416{left:470.640000pt;}
.x40_c01416{left:479.757333pt;}
.x20_c01416{left:489.840000pt;}
.x78_c01416{left:498.480000pt;}
.x35_c01416{left:499.680000pt;}
.x73_c01416{left:500.640000pt;}
.x3b_c01416{left:504.769333pt;}
.xb_c01416{left:510.000000pt;}
.x2c_c01416{left:518.880000pt;}
.x27_c01416{left:527.760000pt;}
.x19_c01416{left:529.920000pt;}
.x6e_c01416{left:537.840000pt;}
.xc_c01416{left:539.760000pt;}
.x2d_c01416{left:548.160000pt;}
.x61_c01416{left:557.280000pt;}
.x46_c01416{left:566.877333pt;}
.x36_c01416{left:568.560000pt;}
.x4b_c01416{left:577.268000pt;}
.x7b_c01416{left:578.160000pt;}
.x50_c01416{left:586.557333pt;}
.x69_c01416{left:588.240000pt;}
.x5e_c01416{left:596.400000pt;}
.x28_c01416{left:597.600000pt;}
.x47_c01416{left:605.517333pt;}
.x2e_c01416{left:606.720000pt;}
.xd_c01416{left:607.680000pt;}
.x60_c01416{left:615.682667pt;}
.x21_c01416{left:618.000000pt;}
.x63_c01416{left:625.920000pt;}
.x1a_c01416{left:627.120000pt;}
.xe_c01416{left:636.000000pt;}
.x74_c01416{left:636.960000pt;}
.x53_c01416{left:645.597333pt;}
.x7c_c01416{left:646.560000pt;}
.x4c_c01416{left:656.212000pt;}
.x1b_c01416{left:657.120000pt;}
.x2f_c01416{left:665.280000pt;}
.x29_c01416{left:666.720000pt;}
.x54_c01416{left:674.157333pt;}
.x22_c01416{left:675.360000pt;}
.x37_c01416{left:676.320000pt;}
.x6f_c01416{left:684.240000pt;}
.x48_c01416{left:694.317333pt;}
.x3c_c01416{left:695.568000pt;}
.xf_c01416{left:704.160000pt;}
.x23_c01416{left:705.840000pt;}
.x5a_c01416{left:713.280000pt;}
.x38_c01416{left:714.240000pt;}
.x2a_c01416{left:715.200000pt;}
.x5f_c01416{left:723.360000pt;}
.x1c_c01416{left:724.560000pt;}
.x3d_c01416{left:733.977333pt;}
.x39_c01416{left:743.760000pt;}
.x30_c01416{left:751.200000pt;}
.x75_c01416{left:753.120000pt;}
}





/* 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_c01417 {
    display:none;
  }
  .loading-indicator_c01417.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01417 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_c01417 { 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_c01417" -> "#page-container .classname_c01417")
 */
.pf_c01417 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01417 { /* 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_c01417.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01417 { /* 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_c01417 { /* 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_c01417 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01417 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01417 {overflow:visible;}
  }
}
.c_c01417 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01417 { /* 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_c01417:after { /* webkit #35443 */
  content: '';
}
.t_c01417:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01417 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 */
}
.__c01417 { /* 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_c01417 { /* info for Javascript */
  display:none;
}
.l_c01417 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01417 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01417 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01417: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_c01417 {
    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_c01417.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01417.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_c01417 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01417{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01417;src:url('chunks/assets/font_cfe63ee56e9e10a97d33a3db.woff2')format("woff");}.ff1_c01417{font-family:ff1_c01417;line-height:1.000000;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;}
.m73_c01417{transform:matrix(0.009789,0.000166,-0.004249,0.249964,0,0);-ms-transform:matrix(0.009789,0.000166,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.009789,0.000166,-0.004249,0.249964,0,0);}
.m76_c01417{transform:matrix(0.011838,0.000189,-0.003999,0.249968,0,0);-ms-transform:matrix(0.011838,0.000189,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.011838,0.000189,-0.003999,0.249968,0,0);}
.m70_c01417{transform:matrix(0.014268,0.000243,-0.004249,0.249964,0,0);-ms-transform:matrix(0.014268,0.000243,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.014268,0.000243,-0.004249,0.249964,0,0);}
.m4d_c01417{transform:matrix(0.130286,0.002215,-0.004249,0.249964,0,0);-ms-transform:matrix(0.130286,0.002215,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.130286,0.002215,-0.004249,0.249964,0,0);}
.m58_c01417{transform:matrix(0.135495,0.002303,-0.004249,0.249964,0,0);-ms-transform:matrix(0.135495,0.002303,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.135495,0.002303,-0.004249,0.249964,0,0);}
.m45_c01417{transform:matrix(0.139120,0.002365,-0.004249,0.249964,0,0);-ms-transform:matrix(0.139120,0.002365,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.139120,0.002365,-0.004249,0.249964,0,0);}
.m41_c01417{transform:matrix(0.146839,0.002496,-0.004249,0.249964,0,0);-ms-transform:matrix(0.146839,0.002496,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.146839,0.002496,-0.004249,0.249964,0,0);}
.m24_c01417{transform:matrix(0.151010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151010,0.000000,0.000000,0.250000,0,0);}
.m43_c01417{transform:matrix(0.155658,0.002646,-0.004249,0.249964,0,0);-ms-transform:matrix(0.155658,0.002646,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.155658,0.002646,-0.004249,0.249964,0,0);}
.m52_c01417{transform:matrix(0.155812,0.002649,-0.004249,0.249964,0,0);-ms-transform:matrix(0.155812,0.002649,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.155812,0.002649,-0.004249,0.249964,0,0);}
.m68_c01417{transform:matrix(0.157457,0.002677,-0.004249,0.249964,0,0);-ms-transform:matrix(0.157457,0.002677,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.157457,0.002677,-0.004249,0.249964,0,0);}
.m4e_c01417{transform:matrix(0.157722,0.002681,-0.004249,0.249964,0,0);-ms-transform:matrix(0.157722,0.002681,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.157722,0.002681,-0.004249,0.249964,0,0);}
.m6b_c01417{transform:matrix(0.157877,0.002684,-0.004249,0.249964,0,0);-ms-transform:matrix(0.157877,0.002684,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.157877,0.002684,-0.004249,0.249964,0,0);}
.m44_c01417{transform:matrix(0.157967,0.002685,-0.004249,0.249964,0,0);-ms-transform:matrix(0.157967,0.002685,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.157967,0.002685,-0.004249,0.249964,0,0);}
.m51_c01417{transform:matrix(0.158902,0.002701,-0.004249,0.249964,0,0);-ms-transform:matrix(0.158902,0.002701,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.158902,0.002701,-0.004249,0.249964,0,0);}
.m66_c01417{transform:matrix(0.158957,0.002702,-0.004249,0.249964,0,0);-ms-transform:matrix(0.158957,0.002702,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.158957,0.002702,-0.004249,0.249964,0,0);}
.m4c_c01417{transform:matrix(0.160452,0.002728,-0.004249,0.249964,0,0);-ms-transform:matrix(0.160452,0.002728,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.160452,0.002728,-0.004249,0.249964,0,0);}
.m4b_c01417{transform:matrix(0.160692,0.002732,-0.004249,0.249964,0,0);-ms-transform:matrix(0.160692,0.002732,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.160692,0.002732,-0.004249,0.249964,0,0);}
.m4f_c01417{transform:matrix(0.163826,0.002785,-0.004249,0.249964,0,0);-ms-transform:matrix(0.163826,0.002785,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.163826,0.002785,-0.004249,0.249964,0,0);}
.m85_c01417{transform:matrix(0.163934,0.002623,-0.003999,0.249968,0,0);-ms-transform:matrix(0.163934,0.002623,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.163934,0.002623,-0.003999,0.249968,0,0);}
.m4a_c01417{transform:matrix(0.164401,0.002795,-0.004249,0.249964,0,0);-ms-transform:matrix(0.164401,0.002795,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.164401,0.002795,-0.004249,0.249964,0,0);}
.m6d_c01417{transform:matrix(0.165071,0.002806,-0.004249,0.249964,0,0);-ms-transform:matrix(0.165071,0.002806,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.165071,0.002806,-0.004249,0.249964,0,0);}
.m40_c01417{transform:matrix(0.165161,0.002808,-0.004249,0.249964,0,0);-ms-transform:matrix(0.165161,0.002808,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.165161,0.002808,-0.004249,0.249964,0,0);}
.m79_c01417{transform:matrix(0.165674,0.002651,-0.003999,0.249968,0,0);-ms-transform:matrix(0.165674,0.002651,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.165674,0.002651,-0.003999,0.249968,0,0);}
.m42_c01417{transform:matrix(0.165871,0.002820,-0.004249,0.249964,0,0);-ms-transform:matrix(0.165871,0.002820,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.165871,0.002820,-0.004249,0.249964,0,0);}
.me_c01417{transform:matrix(0.166390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166390,0.000000,0.000000,0.250000,0,0);}
.m3e_c01417{transform:matrix(0.166501,0.002831,-0.004249,0.249964,0,0);-ms-transform:matrix(0.166501,0.002831,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.166501,0.002831,-0.004249,0.249964,0,0);}
.m83_c01417{transform:matrix(0.171088,0.002737,-0.003999,0.249968,0,0);-ms-transform:matrix(0.171088,0.002737,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.171088,0.002737,-0.003999,0.249968,0,0);}
.m82_c01417{transform:matrix(0.172053,0.002753,-0.003999,0.249968,0,0);-ms-transform:matrix(0.172053,0.002753,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.172053,0.002753,-0.003999,0.249968,0,0);}
.md_c01417{transform:matrix(0.172995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172995,0.000000,0.000000,0.250000,0,0);}
.m2f_c01417{transform:matrix(0.173625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173625,0.000000,0.000000,0.250000,0,0);}
.m48_c01417{transform:matrix(0.173770,0.002954,-0.004249,0.249964,0,0);-ms-transform:matrix(0.173770,0.002954,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.173770,0.002954,-0.004249,0.249964,0,0);}
.m3d_c01417{transform:matrix(0.175495,0.002983,-0.004249,0.249964,0,0);-ms-transform:matrix(0.175495,0.002983,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.175495,0.002983,-0.004249,0.249964,0,0);}
.m5f_c01417{transform:matrix(0.177474,0.003017,-0.004249,0.249964,0,0);-ms-transform:matrix(0.177474,0.003017,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.177474,0.003017,-0.004249,0.249964,0,0);}
.m64_c01417{transform:matrix(0.178804,0.003040,-0.004249,0.249964,0,0);-ms-transform:matrix(0.178804,0.003040,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.178804,0.003040,-0.004249,0.249964,0,0);}
.m5_c01417{transform:matrix(0.179415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179415,0.000000,0.000000,0.250000,0,0);}
.m47_c01417{transform:matrix(0.180789,0.003073,-0.004249,0.249964,0,0);-ms-transform:matrix(0.180789,0.003073,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.180789,0.003073,-0.004249,0.249964,0,0);}
.m50_c01417{transform:matrix(0.183374,0.003117,-0.004249,0.249964,0,0);-ms-transform:matrix(0.183374,0.003117,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.183374,0.003117,-0.004249,0.249964,0,0);}
.m80_c01417{transform:matrix(0.183582,0.002937,-0.003999,0.249968,0,0);-ms-transform:matrix(0.183582,0.002937,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.183582,0.002937,-0.003999,0.249968,0,0);}
.m69_c01417{transform:matrix(0.185608,0.003155,-0.004249,0.249964,0,0);-ms-transform:matrix(0.185608,0.003155,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.185608,0.003155,-0.004249,0.249964,0,0);}
.m57_c01417{transform:matrix(0.188978,0.003213,-0.004249,0.249964,0,0);-ms-transform:matrix(0.188978,0.003213,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.188978,0.003213,-0.004249,0.249964,0,0);}
.m6_c01417{transform:matrix(0.189425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189425,0.000000,0.000000,0.250000,0,0);}
.m84_c01417{transform:matrix(0.190856,0.003054,-0.003999,0.249968,0,0);-ms-transform:matrix(0.190856,0.003054,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.190856,0.003054,-0.003999,0.249968,0,0);}
.m49_c01417{transform:matrix(0.192142,0.003266,-0.004249,0.249964,0,0);-ms-transform:matrix(0.192142,0.003266,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.192142,0.003266,-0.004249,0.249964,0,0);}
.m3c_c01417{transform:matrix(0.194232,0.003302,-0.004249,0.249964,0,0);-ms-transform:matrix(0.194232,0.003302,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.194232,0.003302,-0.004249,0.249964,0,0);}
.m6c_c01417{transform:matrix(0.194447,0.003306,-0.004249,0.249964,0,0);-ms-transform:matrix(0.194447,0.003306,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.194447,0.003306,-0.004249,0.249964,0,0);}
.m2_c01417{transform:matrix(0.195080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195080,0.000000,0.000000,0.250000,0,0);}
.m33_c01417{transform:matrix(0.195880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195880,0.000000,0.000000,0.250000,0,0);}
.m63_c01417{transform:matrix(0.196497,0.003340,-0.004249,0.249964,0,0);-ms-transform:matrix(0.196497,0.003340,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.196497,0.003340,-0.004249,0.249964,0,0);}
.m7f_c01417{transform:matrix(0.196785,0.003149,-0.003999,0.249968,0,0);-ms-transform:matrix(0.196785,0.003149,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.196785,0.003149,-0.003999,0.249968,0,0);}
.m60_c01417{transform:matrix(0.197986,0.003366,-0.004249,0.249964,0,0);-ms-transform:matrix(0.197986,0.003366,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.197986,0.003366,-0.004249,0.249964,0,0);}
.m3f_c01417{transform:matrix(0.200071,0.003401,-0.004249,0.249964,0,0);-ms-transform:matrix(0.200071,0.003401,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.200071,0.003401,-0.004249,0.249964,0,0);}
.m6e_c01417{transform:matrix(0.200261,0.003404,-0.004249,0.249964,0,0);-ms-transform:matrix(0.200261,0.003404,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.200261,0.003404,-0.004249,0.249964,0,0);}
.m67_c01417{transform:matrix(0.202626,0.003445,-0.004249,0.249964,0,0);-ms-transform:matrix(0.202626,0.003445,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.202626,0.003445,-0.004249,0.249964,0,0);}
.m5a_c01417{transform:matrix(0.205860,0.003500,-0.004249,0.249964,0,0);-ms-transform:matrix(0.205860,0.003500,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.205860,0.003500,-0.004249,0.249964,0,0);}
.m7e_c01417{transform:matrix(0.206654,0.003306,-0.003999,0.249968,0,0);-ms-transform:matrix(0.206654,0.003306,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.206654,0.003306,-0.003999,0.249968,0,0);}
.m78_c01417{transform:matrix(0.207583,0.003321,-0.003999,0.249968,0,0);-ms-transform:matrix(0.207583,0.003321,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.207583,0.003321,-0.003999,0.249968,0,0);}
.m61_c01417{transform:matrix(0.208195,0.003539,-0.004249,0.249964,0,0);-ms-transform:matrix(0.208195,0.003539,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.208195,0.003539,-0.004249,0.249964,0,0);}
.m4_c01417{transform:matrix(0.208320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208320,0.000000,0.000000,0.250000,0,0);}
.m30_c01417{transform:matrix(0.211945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211945,0.000000,0.000000,0.250000,0,0);}
.m7_c01417{transform:matrix(0.212140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212140,0.000000,0.000000,0.250000,0,0);}
.m21_c01417{transform:matrix(0.212695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212695,0.000000,0.000000,0.250000,0,0);}
.m34_c01417{transform:matrix(0.212935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212935,0.000000,0.000000,0.250000,0,0);}
.m2a_c01417{transform:matrix(0.213455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213455,0.000000,0.000000,0.250000,0,0);}
.m5c_c01417{transform:matrix(0.213719,0.003633,-0.004249,0.249964,0,0);-ms-transform:matrix(0.213719,0.003633,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.213719,0.003633,-0.004249,0.249964,0,0);}
.m81_c01417{transform:matrix(0.214268,0.003428,-0.003999,0.249968,0,0);-ms-transform:matrix(0.214268,0.003428,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.214268,0.003428,-0.003999,0.249968,0,0);}
.m5e_c01417{transform:matrix(0.214769,0.003651,-0.004249,0.249964,0,0);-ms-transform:matrix(0.214769,0.003651,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.214769,0.003651,-0.004249,0.249964,0,0);}
.m31_c01417{transform:matrix(0.218075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218075,0.000000,0.000000,0.250000,0,0);}
.m28_c01417{transform:matrix(0.219050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219050,0.000000,0.000000,0.250000,0,0);}
.m8_c01417{transform:matrix(0.219665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219665,0.000000,0.000000,0.250000,0,0);}
.m38_c01417{transform:matrix(0.221385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221385,0.000000,0.000000,0.250000,0,0);}
.m72_c01417{transform:matrix(0.221993,0.003774,-0.004249,0.249964,0,0);-ms-transform:matrix(0.221993,0.003774,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.221993,0.003774,-0.004249,0.249964,0,0);}
.m6a_c01417{transform:matrix(0.225092,0.003827,-0.004249,0.249964,0,0);-ms-transform:matrix(0.225092,0.003827,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.225092,0.003827,-0.004249,0.249964,0,0);}
.m65_c01417{transform:matrix(0.226407,0.003849,-0.004249,0.249964,0,0);-ms-transform:matrix(0.226407,0.003849,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.226407,0.003849,-0.004249,0.249964,0,0);}
.m37_c01417{transform:matrix(0.226925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226925,0.000000,0.000000,0.250000,0,0);}
.m1e_c01417{transform:matrix(0.231465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231465,0.000000,0.000000,0.250000,0,0);}
.m36_c01417{transform:matrix(0.233460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233460,0.000000,0.000000,0.250000,0,0);}
.m9_c01417{transform:matrix(0.234815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234815,0.000000,0.000000,0.250000,0,0);}
.m23_c01417{transform:matrix(0.236585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236585,0.000000,0.000000,0.250000,0,0);}
.m2b_c01417{transform:matrix(0.237760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237760,0.000000,0.000000,0.250000,0,0);}
.m35_c01417{transform:matrix(0.242035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242035,0.000000,0.000000,0.250000,0,0);}
.m27_c01417{transform:matrix(0.242925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242925,0.000000,0.000000,0.250000,0,0);}
.m25_c01417{transform:matrix(0.243200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243200,0.000000,0.000000,0.250000,0,0);}
.m3b_c01417{transform:matrix(0.243280,0.004136,-0.004249,0.249964,0,0);-ms-transform:matrix(0.243280,0.004136,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.243280,0.004136,-0.004249,0.249964,0,0);}
.m32_c01417{transform:matrix(0.244805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244805,0.000000,0.000000,0.250000,0,0);}
.m26_c01417{transform:matrix(0.245550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245550,0.000000,0.000000,0.250000,0,0);}
.m29_c01417{transform:matrix(0.246475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246475,0.000000,0.000000,0.250000,0,0);}
.m12_c01417{transform:matrix(0.253800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253800,0.000000,0.000000,0.250000,0,0);}
.m77_c01417{transform:matrix(0.253962,0.004063,-0.003999,0.249968,0,0);-ms-transform:matrix(0.253962,0.004063,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.253962,0.004063,-0.003999,0.249968,0,0);}
.m74_c01417{transform:matrix(0.254052,0.004065,-0.003999,0.249968,0,0);-ms-transform:matrix(0.254052,0.004065,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.254052,0.004065,-0.003999,0.249968,0,0);}
.m46_c01417{transform:matrix(0.254508,0.004327,-0.004249,0.249964,0,0);-ms-transform:matrix(0.254508,0.004327,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.254508,0.004327,-0.004249,0.249964,0,0);}
.m5b_c01417{transform:matrix(0.259752,0.004416,-0.004249,0.249964,0,0);-ms-transform:matrix(0.259752,0.004416,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.259752,0.004416,-0.004249,0.249964,0,0);}
.m3a_c01417{transform:matrix(0.262837,0.004468,-0.004249,0.249964,0,0);-ms-transform:matrix(0.262837,0.004468,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.262837,0.004468,-0.004249,0.249964,0,0);}
.m11_c01417{transform:matrix(0.263185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263185,0.000000,0.000000,0.250000,0,0);}
.m22_c01417{transform:matrix(0.270705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270705,0.000000,0.000000,0.250000,0,0);}
.m2e_c01417{transform:matrix(0.274485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274485,0.000000,0.000000,0.250000,0,0);}
.m20_c01417{transform:matrix(0.275090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275090,0.000000,0.000000,0.250000,0,0);}
.m19_c01417{transform:matrix(0.276820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276820,0.000000,0.000000,0.250000,0,0);}
.m39_c01417{transform:matrix(0.280195,0.004763,-0.004249,0.249964,0,0);-ms-transform:matrix(0.280195,0.004763,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.280195,0.004763,-0.004249,0.249964,0,0);}
.m13_c01417{transform:matrix(0.284170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284170,0.000000,0.000000,0.250000,0,0);}
.m1b_c01417{transform:matrix(0.285830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285830,0.000000,0.000000,0.250000,0,0);}
.m5d_c01417{transform:matrix(0.288748,0.004909,-0.004249,0.249964,0,0);-ms-transform:matrix(0.288748,0.004909,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.288748,0.004909,-0.004249,0.249964,0,0);}
.m16_c01417{transform:matrix(0.289130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289130,0.000000,0.000000,0.250000,0,0);}
.m56_c01417{transform:matrix(0.303641,0.005162,-0.004249,0.249964,0,0);-ms-transform:matrix(0.303641,0.005162,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.303641,0.005162,-0.004249,0.249964,0,0);}
.m59_c01417{transform:matrix(0.305206,0.005189,-0.004249,0.249964,0,0);-ms-transform:matrix(0.305206,0.005189,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.305206,0.005189,-0.004249,0.249964,0,0);}
.m1f_c01417{transform:matrix(0.306530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306530,0.000000,0.000000,0.250000,0,0);}
.m2c_c01417{transform:matrix(0.308080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308080,0.000000,0.000000,0.250000,0,0);}
.m10_c01417{transform:matrix(0.317205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317205,0.000000,0.000000,0.250000,0,0);}
.m1d_c01417{transform:matrix(0.322835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322835,0.000000,0.000000,0.250000,0,0);}
.m18_c01417{transform:matrix(0.330100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330100,0.000000,0.000000,0.250000,0,0);}
.m7a_c01417{transform:matrix(0.334192,0.005347,-0.003999,0.249968,0,0);-ms-transform:matrix(0.334192,0.005347,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.334192,0.005347,-0.003999,0.249968,0,0);}
.m14_c01417{transform:matrix(0.337570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337570,0.000000,0.000000,0.250000,0,0);}
.m7b_c01417{transform:matrix(0.345901,0.005534,-0.003999,0.249968,0,0);-ms-transform:matrix(0.345901,0.005534,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.345901,0.005534,-0.003999,0.249968,0,0);}
.mb_c01417{transform:matrix(0.346500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346500,0.000000,0.000000,0.250000,0,0);}
.m54_c01417{transform:matrix(0.349355,0.005939,-0.004249,0.249964,0,0);-ms-transform:matrix(0.349355,0.005939,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.349355,0.005939,-0.004249,0.249964,0,0);}
.m15_c01417{transform:matrix(0.355595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355595,0.000000,0.000000,0.250000,0,0);}
.ma_c01417{transform:matrix(0.366230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366230,0.000000,0.000000,0.250000,0,0);}
.m7d_c01417{transform:matrix(0.370388,0.005926,-0.003999,0.249968,0,0);-ms-transform:matrix(0.370388,0.005926,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.370388,0.005926,-0.003999,0.249968,0,0);}
.m1c_c01417{transform:matrix(0.372050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372050,0.000000,0.000000,0.250000,0,0);}
.m55_c01417{transform:matrix(0.383555,0.006520,-0.004249,0.249964,0,0);-ms-transform:matrix(0.383555,0.006520,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.383555,0.006520,-0.004249,0.249964,0,0);}
.m75_c01417{transform:matrix(0.384921,0.006159,-0.003999,0.249968,0,0);-ms-transform:matrix(0.384921,0.006159,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.384921,0.006159,-0.003999,0.249968,0,0);}
.m1_c01417{transform:matrix(0.389595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389595,0.000000,0.000000,0.250000,0,0);}
.m1a_c01417{transform:matrix(0.392735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392735,0.000000,0.000000,0.250000,0,0);}
.m62_c01417{transform:matrix(0.398912,0.006782,-0.004249,0.249964,0,0);-ms-transform:matrix(0.398912,0.006782,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.398912,0.006782,-0.004249,0.249964,0,0);}
.m53_c01417{transform:matrix(0.417330,0.007095,-0.004249,0.249964,0,0);-ms-transform:matrix(0.417330,0.007095,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.417330,0.007095,-0.004249,0.249964,0,0);}
.m17_c01417{transform:matrix(0.453225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453225,0.000000,0.000000,0.250000,0,0);}
.m7c_c01417{transform:matrix(0.473829,0.007581,-0.003999,0.249968,0,0);-ms-transform:matrix(0.473829,0.007581,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.473829,0.007581,-0.003999,0.249968,0,0);}
.m71_c01417{transform:matrix(0.483170,0.008214,-0.004249,0.249964,0,0);-ms-transform:matrix(0.483170,0.008214,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.483170,0.008214,-0.004249,0.249964,0,0);}
.m0_c01417{transform:matrix(0.495445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495445,0.000000,0.000000,0.250000,0,0);}
.mc_c01417{transform:matrix(0.499640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.499640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.499640,0.000000,0.000000,0.250000,0,0);}
.m2d_c01417{transform:matrix(0.508205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508205,0.000000,0.000000,0.250000,0,0);}
.m88_c01417{transform:matrix(0.593879,0.012471,-0.005249,0.249945,0,0);-ms-transform:matrix(0.593879,0.012471,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.593879,0.012471,-0.005249,0.249945,0,0);}
.m87_c01417{transform:matrix(0.648492,0.013618,-0.005249,0.249945,0,0);-ms-transform:matrix(0.648492,0.013618,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.648492,0.013618,-0.005249,0.249945,0,0);}
.mf_c01417{transform:matrix(0.833955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.833955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.833955,0.000000,0.000000,0.250000,0,0);}
.m3_c01417{transform:matrix(0.852980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.852980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.852980,0.000000,0.000000,0.250000,0,0);}
.m6f_c01417{transform:matrix(1.079519,0.018352,-0.004249,0.249964,0,0);-ms-transform:matrix(1.079519,0.018352,-0.004249,0.249964,0,0);-webkit-transform:matrix(1.079519,0.018352,-0.004249,0.249964,0,0);}
.m86_c01417{transform:matrix(2.394402,0.050282,-0.005249,0.249945,0,0);-ms-transform:matrix(2.394402,0.050282,-0.005249,0.249945,0,0);-webkit-transform:matrix(2.394402,0.050282,-0.005249,0.249945,0,0);}
.v0_c01417{vertical-align:0.000000px;}
.ls0_c01417{letter-spacing:0.000000px;}
.sc__c01417{text-shadow:none;}
.sc0_c01417{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__c01417{-webkit-text-stroke:0px transparent;}
.sc0_c01417{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01417{word-spacing:0.000000px;}
.fc0_c01417{color:transparent;}
.fs3_c01417{font-size:66.000000px;}
.fs4_c01417{font-size:78.000000px;}
.fs8_c01417{font-size:78.011270px;}
.fs0_c01417{font-size:90.000000px;}
.fs1_c01417{font-size:96.000000px;}
.fs6_c01417{font-size:96.013871px;}
.fsa_c01417{font-size:102.013055px;}
.fsb_c01417{font-size:102.022489px;}
.fs2_c01417{font-size:108.000000px;}
.fs9_c01417{font-size:114.014591px;}
.fs7_c01417{font-size:120.017339px;}
.fs5_c01417{font-size:126.018206px;}
.y0_c01417{bottom:0.000000px;}
.y89_c01417{bottom:728.419556px;}
.y88_c01417{bottom:731.131895px;}
.y87_c01417{bottom:740.355000px;}
.y86_c01417{bottom:764.158260px;}
.y85_c01417{bottom:764.884416px;}
.y84_c01417{bottom:765.796644px;}
.y83_c01417{bottom:766.567308px;}
.y82_c01417{bottom:767.964780px;}
.y81_c01417{bottom:768.537768px;}
.y80_c01417{bottom:769.881276px;}
.y7f_c01417{bottom:772.422504px;}
.y7e_c01417{bottom:773.990772px;}
.y7d_c01417{bottom:779.494248px;}
.y7c_c01417{bottom:807.969876px;}
.y7b_c01417{bottom:809.200908px;}
.y7a_c01417{bottom:810.748884px;}
.y79_c01417{bottom:812.394876px;}
.y78_c01417{bottom:812.846388px;}
.y77_c01417{bottom:812.877276px;}
.y76_c01417{bottom:818.385132px;}
.y75_c01417{bottom:818.644500px;}
.y74_c01417{bottom:854.729898px;}
.y73_c01417{bottom:856.463324px;}
.y72_c01417{bottom:859.080918px;}
.y71_c01417{bottom:860.949405px;}
.y70_c01417{bottom:863.436065px;}
.y6f_c01417{bottom:872.244618px;}
.y6e_c01417{bottom:873.455882px;}
.y6d_c01417{bottom:874.250179px;}
.y6c_c01417{bottom:874.548030px;}
.y6b_c01417{bottom:875.014420px;}
.y6a_c01417{bottom:876.012594px;}
.y69_c01417{bottom:876.821211px;}
.y68_c01417{bottom:877.242129px;}
.y67_c01417{bottom:877.890604px;}
.y66_c01417{bottom:879.167801px;}
.y65_c01417{bottom:880.368778px;}
.y64_c01417{bottom:881.280045px;}
.y63_c01417{bottom:882.350408px;}
.y62_c01417{bottom:906.945289px;}
.y61_c01417{bottom:908.606716px;}
.y60_c01417{bottom:909.171363px;}
.y5f_c01417{bottom:909.738662px;}
.y5e_c01417{bottom:910.895163px;}
.y5d_c01417{bottom:912.434853px;}
.y5c_c01417{bottom:913.310472px;}
.y5b_c01417{bottom:913.750117px;}
.y5a_c01417{bottom:914.503872px;}
.y59_c01417{bottom:915.833927px;}
.y58_c01417{bottom:916.741063px;}
.y57_c01417{bottom:917.576954px;}
.y56_c01417{bottom:918.522443px;}
.y55_c01417{bottom:918.827831px;}
.y54_c01417{bottom:919.346959px;}
.y53_c01417{bottom:944.373200px;}
.y52_c01417{bottom:945.434151px;}
.y51_c01417{bottom:946.301896px;}
.y50_c01417{bottom:947.807603px;}
.y4f_c01417{bottom:948.129768px;}
.y4e_c01417{bottom:948.742620px;}
.y4d_c01417{bottom:950.642026px;}
.y4c_c01417{bottom:952.123593px;}
.y4b_c01417{bottom:954.387048px;}
.y4a_c01417{bottom:955.407948px;}
.y49_c01417{bottom:955.883196px;}
.y48_c01417{bottom:956.182599px;}
.y47_c01417{bottom:957.712679px;}
.y46_c01417{bottom:980.897937px;}
.y45_c01417{bottom:983.106492px;}
.y44_c01417{bottom:983.710026px;}
.y43_c01417{bottom:985.142999px;}
.y42_c01417{bottom:985.711292px;}
.y41_c01417{bottom:987.415252px;}
.y40_c01417{bottom:987.990405px;}
.y3f_c01417{bottom:989.052863px;}
.y3e_c01417{bottom:990.186261px;}
.y3d_c01417{bottom:991.210698px;}
.y3c_c01417{bottom:991.865717px;}
.y3b_c01417{bottom:992.497505px;}
.y3a_c01417{bottom:993.337500px;}
.y39_c01417{bottom:1015.525500px;}
.y38_c01417{bottom:1015.821000px;}
.y37_c01417{bottom:1016.062500px;}
.y36_c01417{bottom:1016.577000px;}
.y35_c01417{bottom:1017.283500px;}
.y34_c01417{bottom:1017.606000px;}
.y33_c01417{bottom:1018.144500px;}
.y32_c01417{bottom:1018.729500px;}
.y31_c01417{bottom:1019.368500px;}
.y30_c01417{bottom:1019.787000px;}
.y2f_c01417{bottom:1020.165000px;}
.y2e_c01417{bottom:1020.718500px;}
.y2d_c01417{bottom:1020.871500px;}
.y2c_c01417{bottom:1050.561000px;}
.y2b_c01417{bottom:1051.023000px;}
.y2a_c01417{bottom:1051.567500px;}
.y29_c01417{bottom:1052.428500px;}
.y28_c01417{bottom:1052.863500px;}
.y27_c01417{bottom:1053.150000px;}
.y26_c01417{bottom:1053.723000px;}
.y25_c01417{bottom:1053.946500px;}
.y24_c01417{bottom:1054.552500px;}
.y23_c01417{bottom:1055.157000px;}
.y22_c01417{bottom:1055.824500px;}
.y21_c01417{bottom:1056.145500px;}
.y20_c01417{bottom:1056.831000px;}
.y1f_c01417{bottom:1057.431000px;}
.y1e_c01417{bottom:1057.596000px;}
.y1d_c01417{bottom:1086.009000px;}
.y1c_c01417{bottom:1086.504000px;}
.y1b_c01417{bottom:1087.012500px;}
.y1a_c01417{bottom:1087.752000px;}
.y19_c01417{bottom:1088.589000px;}
.y18_c01417{bottom:1089.003000px;}
.y17_c01417{bottom:1089.286500px;}
.y16_c01417{bottom:1090.396500px;}
.y15_c01417{bottom:1090.902000px;}
.y14_c01417{bottom:1091.905500px;}
.y13_c01417{bottom:1093.480500px;}
.y12_c01417{bottom:1094.017500px;}
.y11_c01417{bottom:1095.183000px;}
.y10_c01417{bottom:1096.029000px;}
.yf_c01417{bottom:1097.014500px;}
.ye_c01417{bottom:1121.814000px;}
.yd_c01417{bottom:1122.478500px;}
.yc_c01417{bottom:1124.173500px;}
.yb_c01417{bottom:1124.481000px;}
.ya_c01417{bottom:1124.817000px;}
.y9_c01417{bottom:1125.763500px;}
.y8_c01417{bottom:1127.182500px;}
.y7_c01417{bottom:1127.746500px;}
.y6_c01417{bottom:1128.817500px;}
.y5_c01417{bottom:1129.336500px;}
.y4_c01417{bottom:1130.509500px;}
.y3_c01417{bottom:1132.654500px;}
.y2_c01417{bottom:1169.502000px;}
.y1_c01417{bottom:1196.175000px;}
.h5_c01417{height:66.000000px;}
.h6_c01417{height:78.000000px;}
.ha_c01417{height:78.011270px;}
.h2_c01417{height:90.000000px;}
.h3_c01417{height:96.000000px;}
.h8_c01417{height:96.013871px;}
.hc_c01417{height:102.013055px;}
.hd_c01417{height:102.022489px;}
.h4_c01417{height:108.000000px;}
.hb_c01417{height:114.014591px;}
.h9_c01417{height:120.017339px;}
.h7_c01417{height:126.018206px;}
.h1_c01417{height:1250.250000px;}
.h0_c01417{height:1250.370000px;}
.w0_c01417{width:912.000000px;}
.x0_c01417{left:0.000000px;}
.x33_c01417{left:2.341500px;}
.x45_c01417{left:3.380825px;}
.x61_c01417{left:4.440468px;}
.x3_c01417{left:6.750000px;}
.x1d_c01417{left:16.249500px;}
.x2a_c01417{left:19.005000px;}
.x46_c01417{left:33.917825px;}
.x34_c01417{left:51.753000px;}
.xf_c01417{left:65.457000px;}
.x1e_c01417{left:76.227000px;}
.x3d_c01417{left:82.286147px;}
.x2b_c01417{left:88.149000px;}
.x3e_c01417{left:98.044611px;}
.x47_c01417{left:107.498825px;}
.x10_c01417{left:121.861500px;}
.x3f_c01417{left:123.087770px;}
.x58_c01417{left:124.161749px;}
.x35_c01417{left:127.447500px;}
.x2c_c01417{left:135.411000px;}
.x4f_c01417{left:141.151191px;}
.x4_c01417{left:142.642500px;}
.x1f_c01417{left:144.816000px;}
.x68_c01417{left:152.640000px;}
.x48_c01417{left:156.668825px;}
.x20_c01417{left:176.913000px;}
.x2d_c01417{left:187.758000px;}
.x11_c01417{left:199.600500px;}
.x49_c01417{left:210.029825px;}
.x59_c01417{left:217.567980px;}
.x5_c01417{left:220.866000px;}
.x50_c01417{left:226.889552px;}
.x12_c01417{left:235.425000px;}
.x21_c01417{left:243.594000px;}
.x36_c01417{left:254.379000px;}
.x6_c01417{left:255.459000px;}
.x62_c01417{left:266.543016px;}
.x2e_c01417{left:267.666000px;}
.x4a_c01417{left:288.268325px;}
.x40_c01417{left:295.896879px;}
.x22_c01417{left:304.068000px;}
.x37_c01417{left:316.876500px;}
.x51_c01417{left:318.082193px;}
.x7_c01417{left:326.895000px;}
.x4b_c01417{left:332.606825px;}
.x13_c01417{left:340.423500px;}
.x5a_c01417{left:348.419799px;}
.x38_c01417{left:350.709000px;}
.x4c_c01417{left:358.468325px;}
.x5c_c01417{left:360.157500px;}
.x5d_c01417{left:362.088000px;}
.x8_c01417{left:364.468500px;}
.x41_c01417{left:373.868727px;}
.x23_c01417{left:386.893500px;}
.x5e_c01417{left:390.307500px;}
.x52_c01417{left:394.491594px;}
.x14_c01417{left:407.361000px;}
.x4d_c01417{left:409.975325px;}
.x5b_c01417{left:435.116888px;}
.x15_c01417{left:441.051000px;}
.x24_c01417{left:444.138000px;}
.x1_c01417{left:448.200000px;}
.x39_c01417{left:450.942000px;}
.x53_c01417{left:452.295552px;}
.x9_c01417{left:459.043500px;}
.x63_c01417{left:462.245868px;}
.x25_c01417{left:472.788000px;}
.x42_c01417{left:473.859836px;}
.x3a_c01417{left:484.371000px;}
.x5f_c01417{left:493.182000px;}
.x2_c01417{left:501.120000px;}
.x43_c01417{left:506.114739px;}
.x16_c01417{left:515.071500px;}
.x26_c01417{left:516.288000px;}
.xa_c01417{left:522.145500px;}
.x54_c01417{left:523.544673px;}
.x64_c01417{left:526.241256px;}
.x17_c01417{left:533.967000px;}
.x2f_c01417{left:536.556000px;}
.xb_c01417{left:544.534500px;}
.x65_c01417{left:553.519572px;}
.x55_c01417{left:556.892882px;}
.x18_c01417{left:561.589500px;}
.xc_c01417{left:565.021500px;}
.x3b_c01417{left:568.663500px;}
.x56_c01417{left:578.120453px;}
.x60_c01417{left:589.930500px;}
.x69_c01417{left:591.835500px;}
.x30_c01417{left:600.924000px;}
.x27_c01417{left:602.418000px;}
.x3c_c01417{left:604.165500px;}
.x19_c01417{left:617.406000px;}
.x66_c01417{left:620.043744px;}
.x31_c01417{left:631.162500px;}
.x4e_c01417{left:635.159825px;}
.x44_c01417{left:647.910894px;}
.x28_c01417{left:656.809500px;}
.x1a_c01417{left:666.685500px;}
.x32_c01417{left:668.143500px;}
.xd_c01417{left:678.022500px;}
.x1b_c01417{left:700.588500px;}
.x29_c01417{left:702.948000px;}
.x57_c01417{left:721.337246px;}
.xe_c01417{left:722.361000px;}
.x1c_c01417{left:733.630500px;}
.x67_c01417{left:734.787576px;}
@media print{
.v0_c01417{vertical-align:0.000000pt;}
.ls0_c01417{letter-spacing:0.000000pt;}
.ws0_c01417{word-spacing:0.000000pt;}
.fs3_c01417{font-size:58.666667pt;}
.fs4_c01417{font-size:69.333333pt;}
.fs8_c01417{font-size:69.343351pt;}
.fs0_c01417{font-size:80.000000pt;}
.fs1_c01417{font-size:85.333333pt;}
.fs6_c01417{font-size:85.345663pt;}
.fsa_c01417{font-size:90.678271pt;}
.fsb_c01417{font-size:90.686656pt;}
.fs2_c01417{font-size:96.000000pt;}
.fs9_c01417{font-size:101.346303pt;}
.fs7_c01417{font-size:106.682079pt;}
.fs5_c01417{font-size:112.016183pt;}
.y0_c01417{bottom:0.000000pt;}
.y89_c01417{bottom:647.484049pt;}
.y88_c01417{bottom:649.895017pt;}
.y87_c01417{bottom:658.093333pt;}
.y86_c01417{bottom:679.251787pt;}
.y85_c01417{bottom:679.897259pt;}
.y84_c01417{bottom:680.708128pt;}
.y83_c01417{bottom:681.393163pt;}
.y82_c01417{bottom:682.635360pt;}
.y81_c01417{bottom:683.144683pt;}
.y80_c01417{bottom:684.338912pt;}
.y7f_c01417{bottom:686.597781pt;}
.y7e_c01417{bottom:687.991797pt;}
.y7d_c01417{bottom:692.883776pt;}
.y7c_c01417{bottom:718.195445pt;}
.y7b_c01417{bottom:719.289696pt;}
.y7a_c01417{bottom:720.665675pt;}
.y79_c01417{bottom:722.128779pt;}
.y78_c01417{bottom:722.530123pt;}
.y77_c01417{bottom:722.557579pt;}
.y76_c01417{bottom:727.453451pt;}
.y75_c01417{bottom:727.684000pt;}
.y74_c01417{bottom:759.759909pt;}
.y73_c01417{bottom:761.300732pt;}
.y72_c01417{bottom:763.627483pt;}
.y71_c01417{bottom:765.288360pt;}
.y70_c01417{bottom:767.498724pt;}
.y6f_c01417{bottom:775.328549pt;}
.y6e_c01417{bottom:776.405228pt;}
.y6d_c01417{bottom:777.111271pt;}
.y6c_c01417{bottom:777.376027pt;}
.y6b_c01417{bottom:777.790596pt;}
.y6a_c01417{bottom:778.677861pt;}
.y69_c01417{bottom:779.396632pt;}
.y68_c01417{bottom:779.770781pt;}
.y67_c01417{bottom:780.347204pt;}
.y66_c01417{bottom:781.482489pt;}
.y65_c01417{bottom:782.550025pt;}
.y64_c01417{bottom:783.360040pt;}
.y63_c01417{bottom:784.311473pt;}
.y62_c01417{bottom:806.173591pt;}
.y61_c01417{bottom:807.650415pt;}
.y60_c01417{bottom:808.152323pt;}
.y5f_c01417{bottom:808.656588pt;}
.y5e_c01417{bottom:809.684589pt;}
.y5d_c01417{bottom:811.053203pt;}
.y5c_c01417{bottom:811.831531pt;}
.y5b_c01417{bottom:812.222327pt;}
.y5a_c01417{bottom:812.892331pt;}
.y59_c01417{bottom:814.074601pt;}
.y58_c01417{bottom:814.880945pt;}
.y57_c01417{bottom:815.623959pt;}
.y56_c01417{bottom:816.464393pt;}
.y55_c01417{bottom:816.735849pt;}
.y54_c01417{bottom:817.197297pt;}
.y53_c01417{bottom:839.442844pt;}
.y52_c01417{bottom:840.385912pt;}
.y51_c01417{bottom:841.157241pt;}
.y50_c01417{bottom:842.495647pt;}
.y4f_c01417{bottom:842.782016pt;}
.y4e_c01417{bottom:843.326773pt;}
.y4d_c01417{bottom:845.015135pt;}
.y4c_c01417{bottom:846.332083pt;}
.y4b_c01417{bottom:848.344043pt;}
.y4a_c01417{bottom:849.251509pt;}
.y49_c01417{bottom:849.673952pt;}
.y48_c01417{bottom:849.940088pt;}
.y47_c01417{bottom:851.300159pt;}
.y46_c01417{bottom:871.909277pt;}
.y45_c01417{bottom:873.872437pt;}
.y44_c01417{bottom:874.408912pt;}
.y43_c01417{bottom:875.682665pt;}
.y42_c01417{bottom:876.187815pt;}
.y41_c01417{bottom:877.702447pt;}
.y40_c01417{bottom:878.213693pt;}
.y3f_c01417{bottom:879.158100pt;}
.y3e_c01417{bottom:880.165565pt;}
.y3d_c01417{bottom:881.076176pt;}
.y3c_c01417{bottom:881.658415pt;}
.y3b_c01417{bottom:882.220004pt;}
.y3a_c01417{bottom:882.966667pt;}
.y39_c01417{bottom:902.689333pt;}
.y38_c01417{bottom:902.952000pt;}
.y37_c01417{bottom:903.166667pt;}
.y36_c01417{bottom:903.624000pt;}
.y35_c01417{bottom:904.252000pt;}
.y34_c01417{bottom:904.538667pt;}
.y33_c01417{bottom:905.017333pt;}
.y32_c01417{bottom:905.537333pt;}
.y31_c01417{bottom:906.105333pt;}
.y30_c01417{bottom:906.477333pt;}
.y2f_c01417{bottom:906.813333pt;}
.y2e_c01417{bottom:907.305333pt;}
.y2d_c01417{bottom:907.441333pt;}
.y2c_c01417{bottom:933.832000pt;}
.y2b_c01417{bottom:934.242667pt;}
.y2a_c01417{bottom:934.726667pt;}
.y29_c01417{bottom:935.492000pt;}
.y28_c01417{bottom:935.878667pt;}
.y27_c01417{bottom:936.133333pt;}
.y26_c01417{bottom:936.642667pt;}
.y25_c01417{bottom:936.841333pt;}
.y24_c01417{bottom:937.380000pt;}
.y23_c01417{bottom:937.917333pt;}
.y22_c01417{bottom:938.510667pt;}
.y21_c01417{bottom:938.796000pt;}
.y20_c01417{bottom:939.405333pt;}
.y1f_c01417{bottom:939.938667pt;}
.y1e_c01417{bottom:940.085333pt;}
.y1d_c01417{bottom:965.341333pt;}
.y1c_c01417{bottom:965.781333pt;}
.y1b_c01417{bottom:966.233333pt;}
.y1a_c01417{bottom:966.890667pt;}
.y19_c01417{bottom:967.634667pt;}
.y18_c01417{bottom:968.002667pt;}
.y17_c01417{bottom:968.254667pt;}
.y16_c01417{bottom:969.241333pt;}
.y15_c01417{bottom:969.690667pt;}
.y14_c01417{bottom:970.582667pt;}
.y13_c01417{bottom:971.982667pt;}
.y12_c01417{bottom:972.460000pt;}
.y11_c01417{bottom:973.496000pt;}
.y10_c01417{bottom:974.248000pt;}
.yf_c01417{bottom:975.124000pt;}
.ye_c01417{bottom:997.168000pt;}
.yd_c01417{bottom:997.758667pt;}
.yc_c01417{bottom:999.265333pt;}
.yb_c01417{bottom:999.538667pt;}
.ya_c01417{bottom:999.837333pt;}
.y9_c01417{bottom:1000.678667pt;}
.y8_c01417{bottom:1001.940000pt;}
.y7_c01417{bottom:1002.441333pt;}
.y6_c01417{bottom:1003.393333pt;}
.y5_c01417{bottom:1003.854667pt;}
.y4_c01417{bottom:1004.897333pt;}
.y3_c01417{bottom:1006.804000pt;}
.y2_c01417{bottom:1039.557333pt;}
.y1_c01417{bottom:1063.266667pt;}
.h5_c01417{height:58.666667pt;}
.h6_c01417{height:69.333333pt;}
.ha_c01417{height:69.343351pt;}
.h2_c01417{height:80.000000pt;}
.h3_c01417{height:85.333333pt;}
.h8_c01417{height:85.345663pt;}
.hc_c01417{height:90.678271pt;}
.hd_c01417{height:90.686656pt;}
.h4_c01417{height:96.000000pt;}
.hb_c01417{height:101.346303pt;}
.h9_c01417{height:106.682079pt;}
.h7_c01417{height:112.016183pt;}
.h1_c01417{height:1111.333333pt;}
.h0_c01417{height:1111.440000pt;}
.w0_c01417{width:810.666667pt;}
.x0_c01417{left:0.000000pt;}
.x33_c01417{left:2.081333pt;}
.x45_c01417{left:3.005177pt;}
.x61_c01417{left:3.947083pt;}
.x3_c01417{left:6.000000pt;}
.x1d_c01417{left:14.444000pt;}
.x2a_c01417{left:16.893333pt;}
.x46_c01417{left:30.149177pt;}
.x34_c01417{left:46.002667pt;}
.xf_c01417{left:58.184000pt;}
.x1e_c01417{left:67.757333pt;}
.x3d_c01417{left:73.143241pt;}
.x2b_c01417{left:78.354667pt;}
.x3e_c01417{left:87.150765pt;}
.x47_c01417{left:95.554511pt;}
.x10_c01417{left:108.321333pt;}
.x3f_c01417{left:109.411351pt;}
.x58_c01417{left:110.365999pt;}
.x35_c01417{left:113.286667pt;}
.x2c_c01417{left:120.365333pt;}
.x4f_c01417{left:125.467725pt;}
.x4_c01417{left:126.793333pt;}
.x1f_c01417{left:128.725333pt;}
.x68_c01417{left:135.680000pt;}
.x48_c01417{left:139.261177pt;}
.x20_c01417{left:157.256000pt;}
.x2d_c01417{left:166.896000pt;}
.x11_c01417{left:177.422667pt;}
.x49_c01417{left:186.693177pt;}
.x59_c01417{left:193.393760pt;}
.x5_c01417{left:196.325333pt;}
.x50_c01417{left:201.679601pt;}
.x12_c01417{left:209.266667pt;}
.x21_c01417{left:216.528000pt;}
.x36_c01417{left:226.114667pt;}
.x6_c01417{left:227.074667pt;}
.x62_c01417{left:236.927125pt;}
.x2e_c01417{left:237.925333pt;}
.x4a_c01417{left:256.238511pt;}
.x40_c01417{left:263.019448pt;}
.x22_c01417{left:270.282667pt;}
.x37_c01417{left:281.668000pt;}
.x51_c01417{left:282.739727pt;}
.x7_c01417{left:290.573333pt;}
.x4b_c01417{left:295.650511pt;}
.x13_c01417{left:302.598667pt;}
.x5a_c01417{left:309.706488pt;}
.x38_c01417{left:311.741333pt;}
.x4c_c01417{left:318.638511pt;}
.x5c_c01417{left:320.140000pt;}
.x5d_c01417{left:321.856000pt;}
.x8_c01417{left:323.972000pt;}
.x41_c01417{left:332.327757pt;}
.x23_c01417{left:343.905333pt;}
.x5e_c01417{left:346.940000pt;}
.x52_c01417{left:350.659195pt;}
.x14_c01417{left:362.098667pt;}
.x4d_c01417{left:364.422511pt;}
.x5b_c01417{left:386.770567pt;}
.x15_c01417{left:392.045333pt;}
.x24_c01417{left:394.789333pt;}
.x1_c01417{left:398.400000pt;}
.x39_c01417{left:400.837333pt;}
.x53_c01417{left:402.040491pt;}
.x9_c01417{left:408.038667pt;}
.x63_c01417{left:410.885216pt;}
.x25_c01417{left:420.256000pt;}
.x42_c01417{left:421.208743pt;}
.x3a_c01417{left:430.552000pt;}
.x5f_c01417{left:438.384000pt;}
.x2_c01417{left:445.440000pt;}
.x43_c01417{left:449.879768pt;}
.x16_c01417{left:457.841333pt;}
.x26_c01417{left:458.922667pt;}
.xa_c01417{left:464.129333pt;}
.x54_c01417{left:465.373043pt;}
.x64_c01417{left:467.770005pt;}
.x17_c01417{left:474.637333pt;}
.x2f_c01417{left:476.938667pt;}
.xb_c01417{left:484.030667pt;}
.x65_c01417{left:492.017397pt;}
.x55_c01417{left:495.015895pt;}
.x18_c01417{left:499.190667pt;}
.xc_c01417{left:502.241333pt;}
.x3b_c01417{left:505.478667pt;}
.x56_c01417{left:513.884847pt;}
.x60_c01417{left:524.382667pt;}
.x69_c01417{left:526.076000pt;}
.x30_c01417{left:534.154667pt;}
.x27_c01417{left:535.482667pt;}
.x3c_c01417{left:537.036000pt;}
.x19_c01417{left:548.805333pt;}
.x66_c01417{left:551.149995pt;}
.x31_c01417{left:561.033333pt;}
.x4e_c01417{left:564.586511pt;}
.x44_c01417{left:575.920795pt;}
.x28_c01417{left:583.830667pt;}
.x1a_c01417{left:592.609333pt;}
.x32_c01417{left:593.905333pt;}
.xd_c01417{left:602.686667pt;}
.x1b_c01417{left:622.745333pt;}
.x29_c01417{left:624.842667pt;}
.x57_c01417{left:641.188663pt;}
.xe_c01417{left:642.098667pt;}
.x1c_c01417{left:652.116000pt;}
.x67_c01417{left:653.144512pt;}
}





/* 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_c01418 {
    display:none;
  }
  .loading-indicator_c01418.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01418 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_c01418 { 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_c01418" -> "#page-container .classname_c01418")
 */
.pf_c01418 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01418 { /* 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_c01418.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01418 { /* 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_c01418 { /* 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_c01418 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01418 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01418 {overflow:visible;}
  }
}
.c_c01418 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01418 { /* 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_c01418:after { /* webkit #35443 */
  content: '';
}
.t_c01418:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01418 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 */
}
.__c01418 { /* 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_c01418 { /* info for Javascript */
  display:none;
}
.l_c01418 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01418 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01418 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01418: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_c01418 {
    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_c01418.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01418.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_c01418 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01418{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01418;src:url('chunks/assets/font_fabf4b590f7fb32aea93ffb2.woff2')format("woff");}.ff1_c01418{font-family:ff1_c01418;line-height:1.000000;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;}
.m8a_c01418{transform:matrix(0.013509,0.000541,-0.010002,0.249800,0,0);-ms-transform:matrix(0.013509,0.000541,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.013509,0.000541,-0.010002,0.249800,0,0);}
.m0_c01418{transform:matrix(0.117771,0.004951,-0.010501,0.249779,0,0);-ms-transform:matrix(0.117771,0.004951,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.117771,0.004951,-0.010501,0.249779,0,0);}
.m8f_c01418{transform:matrix(0.156938,0.006441,-0.010252,0.249790,0,0);-ms-transform:matrix(0.156938,0.006441,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.156938,0.006441,-0.010252,0.249790,0,0);}
.m8d_c01418{transform:matrix(0.166760,0.006844,-0.010252,0.249790,0,0);-ms-transform:matrix(0.166760,0.006844,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.166760,0.006844,-0.010252,0.249790,0,0);}
.m8c_c01418{transform:matrix(0.173644,0.007127,-0.010252,0.249790,0,0);-ms-transform:matrix(0.173644,0.007127,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.173644,0.007127,-0.010252,0.249790,0,0);}
.m37_c01418{transform:matrix(0.174735,0.006996,-0.010002,0.249800,0,0);-ms-transform:matrix(0.174735,0.006996,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.174735,0.006996,-0.010002,0.249800,0,0);}
.m138_c01418{transform:matrix(0.178090,0.007309,-0.010252,0.249790,0,0);-ms-transform:matrix(0.178090,0.007309,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.178090,0.007309,-0.010252,0.249790,0,0);}
.m93_c01418{transform:matrix(0.180983,0.007428,-0.010252,0.249790,0,0);-ms-transform:matrix(0.180983,0.007428,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.180983,0.007428,-0.010252,0.249790,0,0);}
.m94_c01418{transform:matrix(0.182656,0.007496,-0.010252,0.249790,0,0);-ms-transform:matrix(0.182656,0.007496,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.182656,0.007496,-0.010252,0.249790,0,0);}
.m1_c01418{transform:matrix(0.183003,0.007694,-0.010501,0.249779,0,0);-ms-transform:matrix(0.183003,0.007694,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.183003,0.007694,-0.010501,0.249779,0,0);}
.m139_c01418{transform:matrix(0.184205,0.007560,-0.010252,0.249790,0,0);-ms-transform:matrix(0.184205,0.007560,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.184205,0.007560,-0.010252,0.249790,0,0);}
.me6_c01418{transform:matrix(0.186713,0.007663,-0.010252,0.249790,0,0);-ms-transform:matrix(0.186713,0.007663,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.186713,0.007663,-0.010252,0.249790,0,0);}
.m35_c01418{transform:matrix(0.187340,0.007501,-0.010002,0.249800,0,0);-ms-transform:matrix(0.187340,0.007501,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.187340,0.007501,-0.010002,0.249800,0,0);}
.m3e_c01418{transform:matrix(0.187949,0.007526,-0.010002,0.249800,0,0);-ms-transform:matrix(0.187949,0.007526,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.187949,0.007526,-0.010002,0.249800,0,0);}
.m73_c01418{transform:matrix(0.188334,0.007541,-0.010002,0.249800,0,0);-ms-transform:matrix(0.188334,0.007541,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.188334,0.007541,-0.010002,0.249800,0,0);}
.m3c_c01418{transform:matrix(0.189004,0.007568,-0.010002,0.249800,0,0);-ms-transform:matrix(0.189004,0.007568,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.189004,0.007568,-0.010002,0.249800,0,0);}
.m3a_c01418{transform:matrix(0.189183,0.007575,-0.010002,0.249800,0,0);-ms-transform:matrix(0.189183,0.007575,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.189183,0.007575,-0.010002,0.249800,0,0);}
.m90_c01418{transform:matrix(0.190854,0.007833,-0.010252,0.249790,0,0);-ms-transform:matrix(0.190854,0.007833,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.190854,0.007833,-0.010252,0.249790,0,0);}
.m91_c01418{transform:matrix(0.191898,0.007876,-0.010252,0.249790,0,0);-ms-transform:matrix(0.191898,0.007876,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.191898,0.007876,-0.010252,0.249790,0,0);}
.mea_c01418{transform:matrix(0.192693,0.007908,-0.010252,0.249790,0,0);-ms-transform:matrix(0.192693,0.007908,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.192693,0.007908,-0.010252,0.249790,0,0);}
.m92_c01418{transform:matrix(0.196819,0.008078,-0.010252,0.249790,0,0);-ms-transform:matrix(0.196819,0.008078,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.196819,0.008078,-0.010252,0.249790,0,0);}
.m16_c01418{transform:matrix(0.196956,0.008280,-0.010501,0.249779,0,0);-ms-transform:matrix(0.196956,0.008280,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.196956,0.008280,-0.010501,0.249779,0,0);}
.m135_c01418{transform:matrix(0.197309,0.008098,-0.010252,0.249790,0,0);-ms-transform:matrix(0.197309,0.008098,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.197309,0.008098,-0.010252,0.249790,0,0);}
.m8b_c01418{transform:matrix(0.197724,0.008115,-0.010252,0.249790,0,0);-ms-transform:matrix(0.197724,0.008115,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.197724,0.008115,-0.010252,0.249790,0,0);}
.m132_c01418{transform:matrix(0.199202,0.008175,-0.010252,0.249790,0,0);-ms-transform:matrix(0.199202,0.008175,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.199202,0.008175,-0.010252,0.249790,0,0);}
.m3d_c01418{transform:matrix(0.199965,0.008007,-0.010002,0.249800,0,0);-ms-transform:matrix(0.199965,0.008007,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.199965,0.008007,-0.010002,0.249800,0,0);}
.m131_c01418{transform:matrix(0.200631,0.008234,-0.010252,0.249790,0,0);-ms-transform:matrix(0.200631,0.008234,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.200631,0.008234,-0.010252,0.249790,0,0);}
.m3b_c01418{transform:matrix(0.201758,0.008078,-0.010002,0.249800,0,0);-ms-transform:matrix(0.201758,0.008078,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.201758,0.008078,-0.010002,0.249800,0,0);}
.me3_c01418{transform:matrix(0.202994,0.008331,-0.010252,0.249790,0,0);-ms-transform:matrix(0.202994,0.008331,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.202994,0.008331,-0.010252,0.249790,0,0);}
.m49_c01418{transform:matrix(0.204032,0.008169,-0.010002,0.249800,0,0);-ms-transform:matrix(0.204032,0.008169,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.204032,0.008169,-0.010002,0.249800,0,0);}
.m14b_c01418{transform:matrix(0.204224,0.009813,-0.011998,0.249712,0,0);-ms-transform:matrix(0.204224,0.009813,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.204224,0.009813,-0.011998,0.249712,0,0);}
.me8_c01418{transform:matrix(0.205187,0.008421,-0.010252,0.249790,0,0);-ms-transform:matrix(0.205187,0.008421,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.205187,0.008421,-0.010252,0.249790,0,0);}
.m40_c01418{transform:matrix(0.205425,0.008225,-0.010002,0.249800,0,0);-ms-transform:matrix(0.205425,0.008225,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.205425,0.008225,-0.010002,0.249800,0,0);}
.m142_c01418{transform:matrix(0.205428,0.009870,-0.011998,0.249712,0,0);-ms-transform:matrix(0.205428,0.009870,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.205428,0.009870,-0.011998,0.249712,0,0);}
.m12f_c01418{transform:matrix(0.206131,0.008460,-0.010252,0.249790,0,0);-ms-transform:matrix(0.206131,0.008460,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.206131,0.008460,-0.010252,0.249790,0,0);}
.m1b_c01418{transform:matrix(0.206223,0.008670,-0.010501,0.249779,0,0);-ms-transform:matrix(0.206223,0.008670,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.206223,0.008670,-0.010501,0.249779,0,0);}
.m137_c01418{transform:matrix(0.207685,0.008524,-0.010252,0.249790,0,0);-ms-transform:matrix(0.207685,0.008524,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.207685,0.008524,-0.010252,0.249790,0,0);}
.m143_c01418{transform:matrix(0.208270,0.010007,-0.011998,0.249712,0,0);-ms-transform:matrix(0.208270,0.010007,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.208270,0.010007,-0.011998,0.249712,0,0);}
.m36_c01418{transform:matrix(0.208808,0.008361,-0.010002,0.249800,0,0);-ms-transform:matrix(0.208808,0.008361,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.208808,0.008361,-0.010002,0.249800,0,0);}
.mab_c01418{transform:matrix(0.209329,0.008591,-0.010252,0.249790,0,0);-ms-transform:matrix(0.209329,0.008591,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.209329,0.008591,-0.010252,0.249790,0,0);}
.m136_c01418{transform:matrix(0.210143,0.008624,-0.010252,0.249790,0,0);-ms-transform:matrix(0.210143,0.008624,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.210143,0.008624,-0.010252,0.249790,0,0);}
.m152_c01418{transform:matrix(0.210772,0.010127,-0.011998,0.249712,0,0);-ms-transform:matrix(0.210772,0.010127,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.210772,0.010127,-0.011998,0.249712,0,0);}
.m12e_c01418{transform:matrix(0.210907,0.008656,-0.010252,0.249790,0,0);-ms-transform:matrix(0.210907,0.008656,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.210907,0.008656,-0.010252,0.249790,0,0);}
.mf9_c01418{transform:matrix(0.211037,0.008661,-0.010252,0.249790,0,0);-ms-transform:matrix(0.211037,0.008661,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.211037,0.008661,-0.010252,0.249790,0,0);}
.m10d_c01418{transform:matrix(0.211692,0.008688,-0.010252,0.249790,0,0);-ms-transform:matrix(0.211692,0.008688,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.211692,0.008688,-0.010252,0.249790,0,0);}
.mb7_c01418{transform:matrix(0.212321,0.008714,-0.010252,0.249790,0,0);-ms-transform:matrix(0.212321,0.008714,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.212321,0.008714,-0.010252,0.249790,0,0);}
.m38_c01418{transform:matrix(0.212340,0.008502,-0.010002,0.249800,0,0);-ms-transform:matrix(0.212340,0.008502,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.212340,0.008502,-0.010002,0.249800,0,0);}
.m7_c01418{transform:matrix(0.212947,0.008953,-0.010501,0.249779,0,0);-ms-transform:matrix(0.212947,0.008953,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.212947,0.008953,-0.010501,0.249779,0,0);}
.m140_c01418{transform:matrix(0.213279,0.010248,-0.011998,0.249712,0,0);-ms-transform:matrix(0.213279,0.010248,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.213279,0.010248,-0.011998,0.249712,0,0);}
.m134_c01418{transform:matrix(0.213295,0.008754,-0.010252,0.249790,0,0);-ms-transform:matrix(0.213295,0.008754,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.213295,0.008754,-0.010252,0.249790,0,0);}
.m130_c01418{transform:matrix(0.213565,0.008765,-0.010252,0.249790,0,0);-ms-transform:matrix(0.213565,0.008765,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.213565,0.008765,-0.010252,0.249790,0,0);}
.m14e_c01418{transform:matrix(0.214033,0.010284,-0.011998,0.249712,0,0);-ms-transform:matrix(0.214033,0.010284,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.214033,0.010284,-0.011998,0.249712,0,0);}
.m126_c01418{transform:matrix(0.214235,0.008792,-0.010252,0.249790,0,0);-ms-transform:matrix(0.214235,0.008792,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.214235,0.008792,-0.010252,0.249790,0,0);}
.mac_c01418{transform:matrix(0.214579,0.008807,-0.010252,0.249790,0,0);-ms-transform:matrix(0.214579,0.008807,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.214579,0.008807,-0.010252,0.249790,0,0);}
.m133_c01418{transform:matrix(0.216393,0.008881,-0.010252,0.249790,0,0);-ms-transform:matrix(0.216393,0.008881,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.216393,0.008881,-0.010252,0.249790,0,0);}
.m55_c01418{transform:matrix(0.216691,0.008676,-0.010002,0.249800,0,0);-ms-transform:matrix(0.216691,0.008676,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.216691,0.008676,-0.010002,0.249800,0,0);}
.m2a_c01418{transform:matrix(0.217326,0.008702,-0.010002,0.249800,0,0);-ms-transform:matrix(0.217326,0.008702,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.217326,0.008702,-0.010002,0.249800,0,0);}
.mf2_c01418{transform:matrix(0.217597,0.008930,-0.010252,0.249790,0,0);-ms-transform:matrix(0.217597,0.008930,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.217597,0.008930,-0.010252,0.249790,0,0);}
.me5_c01418{transform:matrix(0.217677,0.008934,-0.010252,0.249790,0,0);-ms-transform:matrix(0.217677,0.008934,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.217677,0.008934,-0.010252,0.249790,0,0);}
.m50_c01418{transform:matrix(0.217771,0.008720,-0.010002,0.249800,0,0);-ms-transform:matrix(0.217771,0.008720,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.217771,0.008720,-0.010002,0.249800,0,0);}
.m14c_c01418{transform:matrix(0.217869,0.010468,-0.011998,0.249712,0,0);-ms-transform:matrix(0.217869,0.010468,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.217869,0.010468,-0.011998,0.249712,0,0);}
.mc_c01418{transform:matrix(0.218247,0.009176,-0.010501,0.249779,0,0);-ms-transform:matrix(0.218247,0.009176,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.218247,0.009176,-0.010501,0.249779,0,0);}
.m39_c01418{transform:matrix(0.218265,0.008739,-0.010002,0.249800,0,0);-ms-transform:matrix(0.218265,0.008739,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.218265,0.008739,-0.010002,0.249800,0,0);}
.m2_c01418{transform:matrix(0.218967,0.009206,-0.010501,0.249779,0,0);-ms-transform:matrix(0.218967,0.009206,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.218967,0.009206,-0.010501,0.249779,0,0);}
.m11e_c01418{transform:matrix(0.219355,0.009003,-0.010252,0.249790,0,0);-ms-transform:matrix(0.219355,0.009003,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.219355,0.009003,-0.010252,0.249790,0,0);}
.m53_c01418{transform:matrix(0.219359,0.008783,-0.010002,0.249800,0,0);-ms-transform:matrix(0.219359,0.008783,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.219359,0.008783,-0.010002,0.249800,0,0);}
.me7_c01418{transform:matrix(0.219405,0.009005,-0.010252,0.249790,0,0);-ms-transform:matrix(0.219405,0.009005,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.219405,0.009005,-0.010252,0.249790,0,0);}
.mf5_c01418{transform:matrix(0.219485,0.009008,-0.010252,0.249790,0,0);-ms-transform:matrix(0.219485,0.009008,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.219485,0.009008,-0.010252,0.249790,0,0);}
.m13b_c01418{transform:matrix(0.220115,0.009034,-0.010252,0.249790,0,0);-ms-transform:matrix(0.220115,0.009034,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.220115,0.009034,-0.010252,0.249790,0,0);}
.m150_c01418{transform:matrix(0.220541,0.010597,-0.011998,0.249712,0,0);-ms-transform:matrix(0.220541,0.010597,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.220541,0.010597,-0.011998,0.249712,0,0);}
.ma6_c01418{transform:matrix(0.220594,0.009053,-0.010252,0.249790,0,0);-ms-transform:matrix(0.220594,0.009053,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.220594,0.009053,-0.010252,0.249790,0,0);}
.mec_c01418{transform:matrix(0.220644,0.009055,-0.010252,0.249790,0,0);-ms-transform:matrix(0.220644,0.009055,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.220644,0.009055,-0.010252,0.249790,0,0);}
.m22_c01418{transform:matrix(0.220723,0.008838,-0.010002,0.249800,0,0);-ms-transform:matrix(0.220723,0.008838,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.220723,0.008838,-0.010002,0.249800,0,0);}
.m112_c01418{transform:matrix(0.220974,0.009069,-0.010252,0.249790,0,0);-ms-transform:matrix(0.220974,0.009069,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.220974,0.009069,-0.010252,0.249790,0,0);}
.m3f_c01418{transform:matrix(0.221433,0.008866,-0.010002,0.249800,0,0);-ms-transform:matrix(0.221433,0.008866,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.221433,0.008866,-0.010002,0.249800,0,0);}
.ma9_c01418{transform:matrix(0.221938,0.009109,-0.010252,0.249790,0,0);-ms-transform:matrix(0.221938,0.009109,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.221938,0.009109,-0.010252,0.249790,0,0);}
.m1e_c01418{transform:matrix(0.222648,0.009361,-0.010501,0.249779,0,0);-ms-transform:matrix(0.222648,0.009361,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.222648,0.009361,-0.010501,0.249779,0,0);}
.m11f_c01418{transform:matrix(0.222658,0.009138,-0.010252,0.249790,0,0);-ms-transform:matrix(0.222658,0.009138,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.222658,0.009138,-0.010252,0.249790,0,0);}
.mff_c01418{transform:matrix(0.222742,0.009142,-0.010252,0.249790,0,0);-ms-transform:matrix(0.222742,0.009142,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.222742,0.009142,-0.010252,0.249790,0,0);}
.m11b_c01418{transform:matrix(0.222867,0.009147,-0.010252,0.249790,0,0);-ms-transform:matrix(0.222867,0.009147,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.222867,0.009147,-0.010252,0.249790,0,0);}
.med_c01418{transform:matrix(0.223192,0.009160,-0.010252,0.249790,0,0);-ms-transform:matrix(0.223192,0.009160,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.223192,0.009160,-0.010252,0.249790,0,0);}
.m59_c01418{transform:matrix(0.223426,0.008946,-0.010002,0.249800,0,0);-ms-transform:matrix(0.223426,0.008946,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.223426,0.008946,-0.010002,0.249800,0,0);}
.m4a_c01418{transform:matrix(0.223496,0.008949,-0.010002,0.249800,0,0);-ms-transform:matrix(0.223496,0.008949,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.223496,0.008949,-0.010002,0.249800,0,0);}
.m100_c01418{transform:matrix(0.223697,0.009181,-0.010252,0.249790,0,0);-ms-transform:matrix(0.223697,0.009181,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.223697,0.009181,-0.010252,0.249790,0,0);}
.mfc_c01418{transform:matrix(0.223882,0.009188,-0.010252,0.249790,0,0);-ms-transform:matrix(0.223882,0.009188,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.223882,0.009188,-0.010252,0.249790,0,0);}
.m118_c01418{transform:matrix(0.223892,0.009189,-0.010252,0.249790,0,0);-ms-transform:matrix(0.223892,0.009189,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.223892,0.009189,-0.010252,0.249790,0,0);}
.me2_c01418{transform:matrix(0.224556,0.009216,-0.010252,0.249790,0,0);-ms-transform:matrix(0.224556,0.009216,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.224556,0.009216,-0.010252,0.249790,0,0);}
.me9_c01418{transform:matrix(0.225066,0.009237,-0.010252,0.249790,0,0);-ms-transform:matrix(0.225066,0.009237,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.225066,0.009237,-0.010252,0.249790,0,0);}
.m12a_c01418{transform:matrix(0.225125,0.009239,-0.010252,0.249790,0,0);-ms-transform:matrix(0.225125,0.009239,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.225125,0.009239,-0.010252,0.249790,0,0);}
.m77_c01418{transform:matrix(0.225135,0.009014,-0.010002,0.249800,0,0);-ms-transform:matrix(0.225135,0.009014,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.225135,0.009014,-0.010002,0.249800,0,0);}
.m18_c01418{transform:matrix(0.225836,0.009495,-0.010501,0.249779,0,0);-ms-transform:matrix(0.225836,0.009495,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.225836,0.009495,-0.010501,0.249779,0,0);}
.m10f_c01418{transform:matrix(0.225845,0.009269,-0.010252,0.249790,0,0);-ms-transform:matrix(0.225845,0.009269,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.225845,0.009269,-0.010252,0.249790,0,0);}
.m145_c01418{transform:matrix(0.226314,0.010874,-0.011998,0.249712,0,0);-ms-transform:matrix(0.226314,0.010874,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.226314,0.010874,-0.011998,0.249712,0,0);}
.me0_c01418{transform:matrix(0.226624,0.009301,-0.010252,0.249790,0,0);-ms-transform:matrix(0.226624,0.009301,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.226624,0.009301,-0.010252,0.249790,0,0);}
.m76_c01418{transform:matrix(0.227083,0.009092,-0.010002,0.249800,0,0);-ms-transform:matrix(0.227083,0.009092,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.227083,0.009092,-0.010002,0.249800,0,0);}
.m117_c01418{transform:matrix(0.227663,0.009344,-0.010252,0.249790,0,0);-ms-transform:matrix(0.227663,0.009344,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.227663,0.009344,-0.010252,0.249790,0,0);}
.m114_c01418{transform:matrix(0.227793,0.009349,-0.010252,0.249790,0,0);-ms-transform:matrix(0.227793,0.009349,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.227793,0.009349,-0.010252,0.249790,0,0);}
.m56_c01418{transform:matrix(0.228047,0.009131,-0.010002,0.249800,0,0);-ms-transform:matrix(0.228047,0.009131,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.228047,0.009131,-0.010002,0.249800,0,0);}
.mfd_c01418{transform:matrix(0.228278,0.009369,-0.010252,0.249790,0,0);-ms-transform:matrix(0.228278,0.009369,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.228278,0.009369,-0.010252,0.249790,0,0);}
.m24_c01418{transform:matrix(0.228337,0.009143,-0.010002,0.249800,0,0);-ms-transform:matrix(0.228337,0.009143,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.228337,0.009143,-0.010002,0.249800,0,0);}
.meb_c01418{transform:matrix(0.228503,0.009378,-0.010252,0.249790,0,0);-ms-transform:matrix(0.228503,0.009378,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.228503,0.009378,-0.010252,0.249790,0,0);}
.m72_c01418{transform:matrix(0.228607,0.009153,-0.010002,0.249800,0,0);-ms-transform:matrix(0.228607,0.009153,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.228607,0.009153,-0.010002,0.249800,0,0);}
.m149_c01418{transform:matrix(0.228776,0.010992,-0.011998,0.249712,0,0);-ms-transform:matrix(0.228776,0.010992,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.228776,0.010992,-0.011998,0.249712,0,0);}
.m9f_c01418{transform:matrix(0.229002,0.009398,-0.010252,0.249790,0,0);-ms-transform:matrix(0.229002,0.009398,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.229002,0.009398,-0.010252,0.249790,0,0);}
.m101_c01418{transform:matrix(0.229582,0.009422,-0.010252,0.249790,0,0);-ms-transform:matrix(0.229582,0.009422,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.229582,0.009422,-0.010252,0.249790,0,0);}
.m123_c01418{transform:matrix(0.229852,0.009433,-0.010252,0.249790,0,0);-ms-transform:matrix(0.229852,0.009433,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.229852,0.009433,-0.010252,0.249790,0,0);}
.mf3_c01418{transform:matrix(0.230251,0.009450,-0.010252,0.249790,0,0);-ms-transform:matrix(0.230251,0.009450,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.230251,0.009450,-0.010252,0.249790,0,0);}
.m4_c01418{transform:matrix(0.230546,0.009693,-0.010501,0.249779,0,0);-ms-transform:matrix(0.230546,0.009693,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.230546,0.009693,-0.010501,0.249779,0,0);}
.m10c_c01418{transform:matrix(0.231425,0.009498,-0.010252,0.249790,0,0);-ms-transform:matrix(0.231425,0.009498,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.231425,0.009498,-0.010252,0.249790,0,0);}
.m110_c01418{transform:matrix(0.232309,0.009534,-0.010252,0.249790,0,0);-ms-transform:matrix(0.232309,0.009534,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.232309,0.009534,-0.010252,0.249790,0,0);}
.m105_c01418{transform:matrix(0.232454,0.009540,-0.010252,0.249790,0,0);-ms-transform:matrix(0.232454,0.009540,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.232454,0.009540,-0.010252,0.249790,0,0);}
.m11a_c01418{transform:matrix(0.232529,0.009543,-0.010252,0.249790,0,0);-ms-transform:matrix(0.232529,0.009543,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.232529,0.009543,-0.010252,0.249790,0,0);}
.m28_c01418{transform:matrix(0.232579,0.009312,-0.010002,0.249800,0,0);-ms-transform:matrix(0.232579,0.009312,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.232579,0.009312,-0.010002,0.249800,0,0);}
.m115_c01418{transform:matrix(0.232609,0.009547,-0.010252,0.249790,0,0);-ms-transform:matrix(0.232609,0.009547,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.232609,0.009547,-0.010252,0.249790,0,0);}
.m14d_c01418{transform:matrix(0.232707,0.011181,-0.011998,0.249712,0,0);-ms-transform:matrix(0.232707,0.011181,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.232707,0.011181,-0.011998,0.249712,0,0);}
.m10b_c01418{transform:matrix(0.232974,0.009561,-0.010252,0.249790,0,0);-ms-transform:matrix(0.232974,0.009561,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.232974,0.009561,-0.010252,0.249790,0,0);}
.m97_c01418{transform:matrix(0.233498,0.009583,-0.010252,0.249790,0,0);-ms-transform:matrix(0.233498,0.009583,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.233498,0.009583,-0.010252,0.249790,0,0);}
.m70_c01418{transform:matrix(0.233703,0.009357,-0.010002,0.249800,0,0);-ms-transform:matrix(0.233703,0.009357,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.233703,0.009357,-0.010002,0.249800,0,0);}
.m113_c01418{transform:matrix(0.233938,0.009601,-0.010252,0.249790,0,0);-ms-transform:matrix(0.233938,0.009601,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.233938,0.009601,-0.010252,0.249790,0,0);}
.m8e_c01418{transform:matrix(0.234018,0.009604,-0.010252,0.249790,0,0);-ms-transform:matrix(0.234018,0.009604,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.234018,0.009604,-0.010252,0.249790,0,0);}
.m45_c01418{transform:matrix(0.234037,0.009371,-0.010002,0.249800,0,0);-ms-transform:matrix(0.234037,0.009371,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.234037,0.009371,-0.010002,0.249800,0,0);}
.m11d_c01418{transform:matrix(0.234143,0.009609,-0.010252,0.249790,0,0);-ms-transform:matrix(0.234143,0.009609,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.234143,0.009609,-0.010252,0.249790,0,0);}
.ma4_c01418{transform:matrix(0.234897,0.009640,-0.010252,0.249790,0,0);-ms-transform:matrix(0.234897,0.009640,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.234897,0.009640,-0.010252,0.249790,0,0);}
.m84_c01418{transform:matrix(0.234937,0.009407,-0.010002,0.249800,0,0);-ms-transform:matrix(0.234937,0.009407,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.234937,0.009407,-0.010002,0.249800,0,0);}
.m11c_c01418{transform:matrix(0.235167,0.009651,-0.010252,0.249790,0,0);-ms-transform:matrix(0.235167,0.009651,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.235167,0.009651,-0.010252,0.249790,0,0);}
.mf0_c01418{transform:matrix(0.235287,0.009656,-0.010252,0.249790,0,0);-ms-transform:matrix(0.235287,0.009656,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.235287,0.009656,-0.010252,0.249790,0,0);}
.m51_c01418{transform:matrix(0.235391,0.009425,-0.010002,0.249800,0,0);-ms-transform:matrix(0.235391,0.009425,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.235391,0.009425,-0.010002,0.249800,0,0);}
.m12b_c01418{transform:matrix(0.235402,0.009661,-0.010252,0.249790,0,0);-ms-transform:matrix(0.235402,0.009661,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.235402,0.009661,-0.010252,0.249790,0,0);}
.md4_c01418{transform:matrix(0.235522,0.009666,-0.010252,0.249790,0,0);-ms-transform:matrix(0.235522,0.009666,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.235522,0.009666,-0.010252,0.249790,0,0);}
.mb_c01418{transform:matrix(0.235582,0.009904,-0.010501,0.249779,0,0);-ms-transform:matrix(0.235582,0.009904,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.235582,0.009904,-0.010501,0.249779,0,0);}
.m75_c01418{transform:matrix(0.235601,0.009433,-0.010002,0.249800,0,0);-ms-transform:matrix(0.235601,0.009433,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.235601,0.009433,-0.010002,0.249800,0,0);}
.m23_c01418{transform:matrix(0.236126,0.009454,-0.010002,0.249800,0,0);-ms-transform:matrix(0.236126,0.009454,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.236126,0.009454,-0.010002,0.249800,0,0);}
.m71_c01418{transform:matrix(0.236291,0.009461,-0.010002,0.249800,0,0);-ms-transform:matrix(0.236291,0.009461,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.236291,0.009461,-0.010002,0.249800,0,0);}
.ma1_c01418{transform:matrix(0.236646,0.009712,-0.010252,0.249790,0,0);-ms-transform:matrix(0.236646,0.009712,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.236646,0.009712,-0.010252,0.249790,0,0);}
.me1_c01418{transform:matrix(0.236701,0.009714,-0.010252,0.249790,0,0);-ms-transform:matrix(0.236701,0.009714,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.236701,0.009714,-0.010252,0.249790,0,0);}
.m151_c01418{transform:matrix(0.237346,0.011404,-0.011998,0.249712,0,0);-ms-transform:matrix(0.237346,0.011404,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.237346,0.011404,-0.011998,0.249712,0,0);}
.m14f_c01418{transform:matrix(0.237371,0.011405,-0.011998,0.249712,0,0);-ms-transform:matrix(0.237371,0.011405,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.237371,0.011405,-0.011998,0.249712,0,0);}
.m13f_c01418{transform:matrix(0.237566,0.011415,-0.011998,0.249712,0,0);-ms-transform:matrix(0.237566,0.011415,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.237566,0.011415,-0.011998,0.249712,0,0);}
.mc4_c01418{transform:matrix(0.237630,0.009753,-0.010252,0.249790,0,0);-ms-transform:matrix(0.237630,0.009753,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.237630,0.009753,-0.010252,0.249790,0,0);}
.m58_c01418{transform:matrix(0.237650,0.009515,-0.010002,0.249800,0,0);-ms-transform:matrix(0.237650,0.009515,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.237650,0.009515,-0.010002,0.249800,0,0);}
.m69_c01418{transform:matrix(0.237784,0.009521,-0.010002,0.249800,0,0);-ms-transform:matrix(0.237784,0.009521,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.237784,0.009521,-0.010002,0.249800,0,0);}
.m12d_c01418{transform:matrix(0.237840,0.009761,-0.010252,0.249790,0,0);-ms-transform:matrix(0.237840,0.009761,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.237840,0.009761,-0.010252,0.249790,0,0);}
.m14a_c01418{transform:matrix(0.237891,0.011430,-0.011998,0.249712,0,0);-ms-transform:matrix(0.237891,0.011430,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.237891,0.011430,-0.011998,0.249712,0,0);}
.m20_c01418{transform:matrix(0.238059,0.009532,-0.010002,0.249800,0,0);-ms-transform:matrix(0.238059,0.009532,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.238059,0.009532,-0.010002,0.249800,0,0);}
.maa_c01418{transform:matrix(0.238090,0.009771,-0.010252,0.249790,0,0);-ms-transform:matrix(0.238090,0.009771,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.238090,0.009771,-0.010252,0.249790,0,0);}
.m9a_c01418{transform:matrix(0.238334,0.009781,-0.010252,0.249790,0,0);-ms-transform:matrix(0.238334,0.009781,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.238334,0.009781,-0.010252,0.249790,0,0);}
.m2d_c01418{transform:matrix(0.238344,0.009543,-0.010002,0.249800,0,0);-ms-transform:matrix(0.238344,0.009543,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.238344,0.009543,-0.010002,0.249800,0,0);}
.m11_c01418{transform:matrix(0.238359,0.010021,-0.010501,0.249779,0,0);-ms-transform:matrix(0.238359,0.010021,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.238359,0.010021,-0.010501,0.249779,0,0);}
.me_c01418{transform:matrix(0.238914,0.010044,-0.010501,0.249779,0,0);-ms-transform:matrix(0.238914,0.010044,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.238914,0.010044,-0.010501,0.249779,0,0);}
.md7_c01418{transform:matrix(0.239094,0.009813,-0.010252,0.249790,0,0);-ms-transform:matrix(0.239094,0.009813,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.239094,0.009813,-0.010252,0.249790,0,0);}
.mdc_c01418{transform:matrix(0.239708,0.009838,-0.010252,0.249790,0,0);-ms-transform:matrix(0.239708,0.009838,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.239708,0.009838,-0.010252,0.249790,0,0);}
.mce_c01418{transform:matrix(0.239863,0.009844,-0.010252,0.249790,0,0);-ms-transform:matrix(0.239863,0.009844,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.239863,0.009844,-0.010252,0.249790,0,0);}
.m121_c01418{transform:matrix(0.239918,0.009846,-0.010252,0.249790,0,0);-ms-transform:matrix(0.239918,0.009846,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.239918,0.009846,-0.010252,0.249790,0,0);}
.m10e_c01418{transform:matrix(0.239943,0.009848,-0.010252,0.249790,0,0);-ms-transform:matrix(0.239943,0.009848,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.239943,0.009848,-0.010252,0.249790,0,0);}
.m1d_c01418{transform:matrix(0.240033,0.010091,-0.010501,0.249779,0,0);-ms-transform:matrix(0.240033,0.010091,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.240033,0.010091,-0.010501,0.249779,0,0);}
.m1f_c01418{transform:matrix(0.240313,0.010103,-0.010501,0.249779,0,0);-ms-transform:matrix(0.240313,0.010103,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.240313,0.010103,-0.010501,0.249779,0,0);}
.mad_c01418{transform:matrix(0.240398,0.009866,-0.010252,0.249790,0,0);-ms-transform:matrix(0.240398,0.009866,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.240398,0.009866,-0.010252,0.249790,0,0);}
.m2f_c01418{transform:matrix(0.240442,0.009627,-0.010002,0.249800,0,0);-ms-transform:matrix(0.240442,0.009627,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.240442,0.009627,-0.010002,0.249800,0,0);}
.m79_c01418{transform:matrix(0.240457,0.009628,-0.010002,0.249800,0,0);-ms-transform:matrix(0.240457,0.009628,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.240457,0.009628,-0.010002,0.249800,0,0);}
.m19_c01418{transform:matrix(0.240463,0.010110,-0.010501,0.249779,0,0);-ms-transform:matrix(0.240463,0.010110,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.240463,0.010110,-0.010501,0.249779,0,0);}
.mb5_c01418{transform:matrix(0.240572,0.009873,-0.010252,0.249790,0,0);-ms-transform:matrix(0.240572,0.009873,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.240572,0.009873,-0.010252,0.249790,0,0);}
.mf7_c01418{transform:matrix(0.240682,0.009878,-0.010252,0.249790,0,0);-ms-transform:matrix(0.240682,0.009878,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.240682,0.009878,-0.010252,0.249790,0,0);}
.m65_c01418{transform:matrix(0.240837,0.009643,-0.010002,0.249800,0,0);-ms-transform:matrix(0.240837,0.009643,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.240837,0.009643,-0.010002,0.249800,0,0);}
.m54_c01418{transform:matrix(0.240952,0.009648,-0.010002,0.249800,0,0);-ms-transform:matrix(0.240952,0.009648,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.240952,0.009648,-0.010002,0.249800,0,0);}
.m52_c01418{transform:matrix(0.241087,0.009653,-0.010002,0.249800,0,0);-ms-transform:matrix(0.241087,0.009653,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.241087,0.009653,-0.010002,0.249800,0,0);}
.m74_c01418{transform:matrix(0.241132,0.009655,-0.010002,0.249800,0,0);-ms-transform:matrix(0.241132,0.009655,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.241132,0.009655,-0.010002,0.249800,0,0);}
.mc1_c01418{transform:matrix(0.241212,0.009900,-0.010252,0.249790,0,0);-ms-transform:matrix(0.241212,0.009900,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.241212,0.009900,-0.010252,0.249790,0,0);}
.maf_c01418{transform:matrix(0.241507,0.009912,-0.010252,0.249790,0,0);-ms-transform:matrix(0.241507,0.009912,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.241507,0.009912,-0.010252,0.249790,0,0);}
.m68_c01418{transform:matrix(0.241861,0.009684,-0.010002,0.249800,0,0);-ms-transform:matrix(0.241861,0.009684,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.241861,0.009684,-0.010002,0.249800,0,0);}
.ma7_c01418{transform:matrix(0.242026,0.009933,-0.010252,0.249790,0,0);-ms-transform:matrix(0.242026,0.009933,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.242026,0.009933,-0.010252,0.249790,0,0);}
.m87_c01418{transform:matrix(0.242046,0.009692,-0.010002,0.249800,0,0);-ms-transform:matrix(0.242046,0.009692,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.242046,0.009692,-0.010002,0.249800,0,0);}
.me4_c01418{transform:matrix(0.242306,0.009944,-0.010252,0.249790,0,0);-ms-transform:matrix(0.242306,0.009944,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.242306,0.009944,-0.010252,0.249790,0,0);}
.m127_c01418{transform:matrix(0.242446,0.009950,-0.010252,0.249790,0,0);-ms-transform:matrix(0.242446,0.009950,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.242446,0.009950,-0.010252,0.249790,0,0);}
.mb8_c01418{transform:matrix(0.243170,0.009980,-0.010252,0.249790,0,0);-ms-transform:matrix(0.243170,0.009980,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.243170,0.009980,-0.010252,0.249790,0,0);}
.mf8_c01418{transform:matrix(0.243265,0.009984,-0.010252,0.249790,0,0);-ms-transform:matrix(0.243265,0.009984,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.243265,0.009984,-0.010252,0.249790,0,0);}
.m9d_c01418{transform:matrix(0.243335,0.009987,-0.010252,0.249790,0,0);-ms-transform:matrix(0.243335,0.009987,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.243335,0.009987,-0.010252,0.249790,0,0);}
.mc8_c01418{transform:matrix(0.243485,0.009993,-0.010252,0.249790,0,0);-ms-transform:matrix(0.243485,0.009993,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.243485,0.009993,-0.010252,0.249790,0,0);}
.m6c_c01418{transform:matrix(0.243900,0.009766,-0.010002,0.249800,0,0);-ms-transform:matrix(0.243900,0.009766,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.243900,0.009766,-0.010002,0.249800,0,0);}
.m7e_c01418{transform:matrix(0.243980,0.009769,-0.010002,0.249800,0,0);-ms-transform:matrix(0.243980,0.009769,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.243980,0.009769,-0.010002,0.249800,0,0);}
.m125_c01418{transform:matrix(0.244129,0.010019,-0.010252,0.249790,0,0);-ms-transform:matrix(0.244129,0.010019,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.244129,0.010019,-0.010252,0.249790,0,0);}
.m6_c01418{transform:matrix(0.244184,0.010266,-0.010501,0.249779,0,0);-ms-transform:matrix(0.244184,0.010266,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.244184,0.010266,-0.010501,0.249779,0,0);}
.m5f_c01418{transform:matrix(0.244379,0.009785,-0.010002,0.249800,0,0);-ms-transform:matrix(0.244379,0.009785,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.244379,0.009785,-0.010002,0.249800,0,0);}
.m27_c01418{transform:matrix(0.244554,0.009792,-0.010002,0.249800,0,0);-ms-transform:matrix(0.244554,0.009792,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.244554,0.009792,-0.010002,0.249800,0,0);}
.m98_c01418{transform:matrix(0.244564,0.010037,-0.010252,0.249790,0,0);-ms-transform:matrix(0.244564,0.010037,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.244564,0.010037,-0.010252,0.249790,0,0);}
.m104_c01418{transform:matrix(0.244584,0.010038,-0.010252,0.249790,0,0);-ms-transform:matrix(0.244584,0.010038,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.244584,0.010038,-0.010252,0.249790,0,0);}
.m144_c01418{transform:matrix(0.244693,0.011757,-0.011998,0.249712,0,0);-ms-transform:matrix(0.244693,0.011757,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.244693,0.011757,-0.011998,0.249712,0,0);}
.ma5_c01418{transform:matrix(0.244704,0.010043,-0.010252,0.249790,0,0);-ms-transform:matrix(0.244704,0.010043,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.244704,0.010043,-0.010252,0.249790,0,0);}
.m6e_c01418{transform:matrix(0.244834,0.009803,-0.010002,0.249800,0,0);-ms-transform:matrix(0.244834,0.009803,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.244834,0.009803,-0.010002,0.249800,0,0);}
.m5b_c01418{transform:matrix(0.245204,0.009818,-0.010002,0.249800,0,0);-ms-transform:matrix(0.245204,0.009818,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.245204,0.009818,-0.010002,0.249800,0,0);}
.mb4_c01418{transform:matrix(0.245269,0.010066,-0.010252,0.249790,0,0);-ms-transform:matrix(0.245269,0.010066,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.245269,0.010066,-0.010252,0.249790,0,0);}
.m4e_c01418{transform:matrix(0.245383,0.009825,-0.010002,0.249800,0,0);-ms-transform:matrix(0.245383,0.009825,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.245383,0.009825,-0.010002,0.249800,0,0);}
.m146_c01418{transform:matrix(0.245732,0.011807,-0.011998,0.249712,0,0);-ms-transform:matrix(0.245732,0.011807,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.245732,0.011807,-0.011998,0.249712,0,0);}
.m25_c01418{transform:matrix(0.245818,0.009843,-0.010002,0.249800,0,0);-ms-transform:matrix(0.245818,0.009843,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.245818,0.009843,-0.010002,0.249800,0,0);}
.m119_c01418{transform:matrix(0.246213,0.010105,-0.010252,0.249790,0,0);-ms-transform:matrix(0.246213,0.010105,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.246213,0.010105,-0.010252,0.249790,0,0);}
.m12c_c01418{transform:matrix(0.247267,0.010148,-0.010252,0.249790,0,0);-ms-transform:matrix(0.247267,0.010148,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.247267,0.010148,-0.010252,0.249790,0,0);}
.mb1_c01418{transform:matrix(0.247297,0.010149,-0.010252,0.249790,0,0);-ms-transform:matrix(0.247297,0.010149,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.247297,0.010149,-0.010252,0.249790,0,0);}
.m67_c01418{transform:matrix(0.247417,0.009907,-0.010002,0.249800,0,0);-ms-transform:matrix(0.247417,0.009907,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.247417,0.009907,-0.010002,0.249800,0,0);}
.m5_c01418{transform:matrix(0.247536,0.010407,-0.010501,0.249779,0,0);-ms-transform:matrix(0.247536,0.010407,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.247536,0.010407,-0.010501,0.249779,0,0);}
.m26_c01418{transform:matrix(0.247597,0.009914,-0.010002,0.249800,0,0);-ms-transform:matrix(0.247597,0.009914,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.247597,0.009914,-0.010002,0.249800,0,0);}
.m111_c01418{transform:matrix(0.247652,0.010164,-0.010252,0.249790,0,0);-ms-transform:matrix(0.247652,0.010164,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.247652,0.010164,-0.010252,0.249790,0,0);}
.mc5_c01418{transform:matrix(0.248036,0.010180,-0.010252,0.249790,0,0);-ms-transform:matrix(0.248036,0.010180,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.248036,0.010180,-0.010252,0.249790,0,0);}
.ma2_c01418{transform:matrix(0.248096,0.010182,-0.010252,0.249790,0,0);-ms-transform:matrix(0.248096,0.010182,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.248096,0.010182,-0.010252,0.249790,0,0);}
.m83_c01418{transform:matrix(0.248096,0.009934,-0.010002,0.249800,0,0);-ms-transform:matrix(0.248096,0.009934,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.248096,0.009934,-0.010002,0.249800,0,0);}
.m81_c01418{transform:matrix(0.248106,0.009934,-0.010002,0.249800,0,0);-ms-transform:matrix(0.248106,0.009934,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.248106,0.009934,-0.010002,0.249800,0,0);}
.mc0_c01418{transform:matrix(0.248261,0.010189,-0.010252,0.249790,0,0);-ms-transform:matrix(0.248261,0.010189,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.248261,0.010189,-0.010252,0.249790,0,0);}
.m3_c01418{transform:matrix(0.248555,0.010450,-0.010501,0.249779,0,0);-ms-transform:matrix(0.248555,0.010450,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.248555,0.010450,-0.010501,0.249779,0,0);}
.mfb_c01418{transform:matrix(0.248741,0.010209,-0.010252,0.249790,0,0);-ms-transform:matrix(0.248741,0.010209,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.248741,0.010209,-0.010252,0.249790,0,0);}
.mcf_c01418{transform:matrix(0.248900,0.010215,-0.010252,0.249790,0,0);-ms-transform:matrix(0.248900,0.010215,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.248900,0.010215,-0.010252,0.249790,0,0);}
.m57_c01418{transform:matrix(0.248966,0.009969,-0.010002,0.249800,0,0);-ms-transform:matrix(0.248966,0.009969,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.248966,0.009969,-0.010002,0.249800,0,0);}
.m95_c01418{transform:matrix(0.249195,0.010227,-0.010252,0.249790,0,0);-ms-transform:matrix(0.249195,0.010227,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.249195,0.010227,-0.010252,0.249790,0,0);}
.m86_c01418{transform:matrix(0.249305,0.009982,-0.010002,0.249800,0,0);-ms-transform:matrix(0.249305,0.009982,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.249305,0.009982,-0.010002,0.249800,0,0);}
.m5c_c01418{transform:matrix(0.249940,0.010008,-0.010002,0.249800,0,0);-ms-transform:matrix(0.249940,0.010008,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.249940,0.010008,-0.010002,0.249800,0,0);}
.m42_c01418{transform:matrix(0.249955,0.010008,-0.010002,0.249800,0,0);-ms-transform:matrix(0.249955,0.010008,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.249955,0.010008,-0.010002,0.249800,0,0);}
.mdf_c01418{transform:matrix(0.250030,0.010261,-0.010252,0.249790,0,0);-ms-transform:matrix(0.250030,0.010261,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.250030,0.010261,-0.010252,0.249790,0,0);}
.mf1_c01418{transform:matrix(0.250304,0.010273,-0.010252,0.249790,0,0);-ms-transform:matrix(0.250304,0.010273,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.250304,0.010273,-0.010252,0.249790,0,0);}
.ma_c01418{transform:matrix(0.250339,0.010525,-0.010501,0.249779,0,0);-ms-transform:matrix(0.250339,0.010525,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.250339,0.010525,-0.010501,0.249779,0,0);}
.mf4_c01418{transform:matrix(0.250564,0.010283,-0.010252,0.249790,0,0);-ms-transform:matrix(0.250564,0.010283,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.250564,0.010283,-0.010252,0.249790,0,0);}
.mf_c01418{transform:matrix(0.250569,0.010534,-0.010501,0.249779,0,0);-ms-transform:matrix(0.250569,0.010534,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.250569,0.010534,-0.010501,0.249779,0,0);}
.m17_c01418{transform:matrix(0.250689,0.010539,-0.010501,0.249779,0,0);-ms-transform:matrix(0.250689,0.010539,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.250689,0.010539,-0.010501,0.249779,0,0);}
.m6d_c01418{transform:matrix(0.250744,0.010040,-0.010002,0.249800,0,0);-ms-transform:matrix(0.250744,0.010040,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.250744,0.010040,-0.010002,0.249800,0,0);}
.ma0_c01418{transform:matrix(0.250799,0.010293,-0.010252,0.249790,0,0);-ms-transform:matrix(0.250799,0.010293,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.250799,0.010293,-0.010252,0.249790,0,0);}
.m7c_c01418{transform:matrix(0.250924,0.010047,-0.010002,0.249800,0,0);-ms-transform:matrix(0.250924,0.010047,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.250924,0.010047,-0.010002,0.249800,0,0);}
.m44_c01418{transform:matrix(0.251044,0.010052,-0.010002,0.249800,0,0);-ms-transform:matrix(0.251044,0.010052,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.251044,0.010052,-0.010002,0.249800,0,0);}
.m5a_c01418{transform:matrix(0.251219,0.010059,-0.010002,0.249800,0,0);-ms-transform:matrix(0.251219,0.010059,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.251219,0.010059,-0.010002,0.249800,0,0);}
.mee_c01418{transform:matrix(0.251463,0.010320,-0.010252,0.249790,0,0);-ms-transform:matrix(0.251463,0.010320,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.251463,0.010320,-0.010252,0.249790,0,0);}
.md6_c01418{transform:matrix(0.251483,0.010321,-0.010252,0.249790,0,0);-ms-transform:matrix(0.251483,0.010321,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.251483,0.010321,-0.010252,0.249790,0,0);}
.m6a_c01418{transform:matrix(0.251493,0.010070,-0.010002,0.249800,0,0);-ms-transform:matrix(0.251493,0.010070,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.251493,0.010070,-0.010002,0.249800,0,0);}
.mc2_c01418{transform:matrix(0.251543,0.010324,-0.010252,0.249790,0,0);-ms-transform:matrix(0.251543,0.010324,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.251543,0.010324,-0.010252,0.249790,0,0);}
.m129_c01418{transform:matrix(0.251718,0.010331,-0.010252,0.249790,0,0);-ms-transform:matrix(0.251718,0.010331,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.251718,0.010331,-0.010252,0.249790,0,0);}
.mae_c01418{transform:matrix(0.252113,0.010347,-0.010252,0.249790,0,0);-ms-transform:matrix(0.252113,0.010347,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.252113,0.010347,-0.010252,0.249790,0,0);}
.m13_c01418{transform:matrix(0.252262,0.010606,-0.010501,0.249779,0,0);-ms-transform:matrix(0.252262,0.010606,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.252262,0.010606,-0.010501,0.249779,0,0);}
.md3_c01418{transform:matrix(0.252273,0.010354,-0.010252,0.249790,0,0);-ms-transform:matrix(0.252273,0.010354,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.252273,0.010354,-0.010252,0.249790,0,0);}
.m21_c01418{transform:matrix(0.252363,0.010105,-0.010002,0.249800,0,0);-ms-transform:matrix(0.252363,0.010105,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.252363,0.010105,-0.010002,0.249800,0,0);}
.m103_c01418{transform:matrix(0.252383,0.010358,-0.010252,0.249790,0,0);-ms-transform:matrix(0.252383,0.010358,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.252383,0.010358,-0.010252,0.249790,0,0);}
.m47_c01418{transform:matrix(0.252388,0.010106,-0.010002,0.249800,0,0);-ms-transform:matrix(0.252388,0.010106,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.252388,0.010106,-0.010002,0.249800,0,0);}
.m29_c01418{transform:matrix(0.252428,0.010107,-0.010002,0.249800,0,0);-ms-transform:matrix(0.252428,0.010107,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.252428,0.010107,-0.010002,0.249800,0,0);}
.m124_c01418{transform:matrix(0.252782,0.010374,-0.010252,0.249790,0,0);-ms-transform:matrix(0.252782,0.010374,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.252782,0.010374,-0.010252,0.249790,0,0);}
.m13e_c01418{transform:matrix(0.253018,0.012157,-0.011998,0.249712,0,0);-ms-transform:matrix(0.253018,0.012157,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.253018,0.012157,-0.011998,0.249712,0,0);}
.m9c_c01418{transform:matrix(0.253572,0.010407,-0.010252,0.249790,0,0);-ms-transform:matrix(0.253572,0.010407,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.253572,0.010407,-0.010252,0.249790,0,0);}
.m78_c01418{transform:matrix(0.253717,0.010159,-0.010002,0.249800,0,0);-ms-transform:matrix(0.253717,0.010159,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.253717,0.010159,-0.010002,0.249800,0,0);}
.mcb_c01418{transform:matrix(0.254036,0.010426,-0.010252,0.249790,0,0);-ms-transform:matrix(0.254036,0.010426,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.254036,0.010426,-0.010252,0.249790,0,0);}
.m141_c01418{transform:matrix(0.254057,0.012207,-0.011998,0.249712,0,0);-ms-transform:matrix(0.254057,0.012207,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.254057,0.012207,-0.011998,0.249712,0,0);}
.mbb_c01418{transform:matrix(0.254256,0.010435,-0.010252,0.249790,0,0);-ms-transform:matrix(0.254256,0.010435,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.254256,0.010435,-0.010252,0.249790,0,0);}
.ma8_c01418{transform:matrix(0.254356,0.010439,-0.010252,0.249790,0,0);-ms-transform:matrix(0.254356,0.010439,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.254356,0.010439,-0.010252,0.249790,0,0);}
.m116_c01418{transform:matrix(0.254801,0.010457,-0.010252,0.249790,0,0);-ms-transform:matrix(0.254801,0.010457,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.254801,0.010457,-0.010252,0.249790,0,0);}
.md9_c01418{transform:matrix(0.254840,0.010459,-0.010252,0.249790,0,0);-ms-transform:matrix(0.254840,0.010459,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.254840,0.010459,-0.010252,0.249790,0,0);}
.mda_c01418{transform:matrix(0.255020,0.010466,-0.010252,0.249790,0,0);-ms-transform:matrix(0.255020,0.010466,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.255020,0.010466,-0.010252,0.249790,0,0);}
.mbe_c01418{transform:matrix(0.255065,0.010468,-0.010252,0.249790,0,0);-ms-transform:matrix(0.255065,0.010468,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.255065,0.010468,-0.010252,0.249790,0,0);}
.m9_c01418{transform:matrix(0.255289,0.010733,-0.010501,0.249779,0,0);-ms-transform:matrix(0.255289,0.010733,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.255289,0.010733,-0.010501,0.249779,0,0);}
.m128_c01418{transform:matrix(0.255300,0.010478,-0.010252,0.249790,0,0);-ms-transform:matrix(0.255300,0.010478,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.255300,0.010478,-0.010252,0.249790,0,0);}
.m122_c01418{transform:matrix(0.255390,0.010481,-0.010252,0.249790,0,0);-ms-transform:matrix(0.255390,0.010481,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.255390,0.010481,-0.010252,0.249790,0,0);}
.mef_c01418{transform:matrix(0.255520,0.010487,-0.010252,0.249790,0,0);-ms-transform:matrix(0.255520,0.010487,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.255520,0.010487,-0.010252,0.249790,0,0);}
.mbd_c01418{transform:matrix(0.255670,0.010493,-0.010252,0.249790,0,0);-ms-transform:matrix(0.255670,0.010493,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.255670,0.010493,-0.010252,0.249790,0,0);}
.m61_c01418{transform:matrix(0.256095,0.010254,-0.010002,0.249800,0,0);-ms-transform:matrix(0.256095,0.010254,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.256095,0.010254,-0.010002,0.249800,0,0);}
.mfa_c01418{transform:matrix(0.256279,0.010518,-0.010252,0.249790,0,0);-ms-transform:matrix(0.256279,0.010518,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.256279,0.010518,-0.010252,0.249790,0,0);}
.m62_c01418{transform:matrix(0.256360,0.010265,-0.010002,0.249800,0,0);-ms-transform:matrix(0.256360,0.010265,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.256360,0.010265,-0.010002,0.249800,0,0);}
.mc9_c01418{transform:matrix(0.256394,0.010523,-0.010252,0.249790,0,0);-ms-transform:matrix(0.256394,0.010523,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.256394,0.010523,-0.010252,0.249790,0,0);}
.m13c_c01418{transform:matrix(0.256424,0.010524,-0.010252,0.249790,0,0);-ms-transform:matrix(0.256424,0.010524,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.256424,0.010524,-0.010252,0.249790,0,0);}
.mcd_c01418{transform:matrix(0.256749,0.010537,-0.010252,0.249790,0,0);-ms-transform:matrix(0.256749,0.010537,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.256749,0.010537,-0.010252,0.249790,0,0);}
.m102_c01418{transform:matrix(0.256929,0.010545,-0.010252,0.249790,0,0);-ms-transform:matrix(0.256929,0.010545,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.256929,0.010545,-0.010252,0.249790,0,0);}
.m99_c01418{transform:matrix(0.256994,0.010547,-0.010252,0.249790,0,0);-ms-transform:matrix(0.256994,0.010547,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.256994,0.010547,-0.010252,0.249790,0,0);}
.mfe_c01418{transform:matrix(0.257089,0.010551,-0.010252,0.249790,0,0);-ms-transform:matrix(0.257089,0.010551,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.257089,0.010551,-0.010252,0.249790,0,0);}
.m4f_c01418{transform:matrix(0.257194,0.010298,-0.010002,0.249800,0,0);-ms-transform:matrix(0.257194,0.010298,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.257194,0.010298,-0.010002,0.249800,0,0);}
.m1c_c01418{transform:matrix(0.257448,0.010824,-0.010501,0.249779,0,0);-ms-transform:matrix(0.257448,0.010824,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.257448,0.010824,-0.010501,0.249779,0,0);}
.m80_c01418{transform:matrix(0.257868,0.010325,-0.010002,0.249800,0,0);-ms-transform:matrix(0.257868,0.010325,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.257868,0.010325,-0.010002,0.249800,0,0);}
.mb0_c01418{transform:matrix(0.257928,0.010586,-0.010252,0.249790,0,0);-ms-transform:matrix(0.257928,0.010586,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.257928,0.010586,-0.010252,0.249790,0,0);}
.m96_c01418{transform:matrix(0.258472,0.010608,-0.010252,0.249790,0,0);-ms-transform:matrix(0.258472,0.010608,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.258472,0.010608,-0.010252,0.249790,0,0);}
.mdd_c01418{transform:matrix(0.258607,0.010614,-0.010252,0.249790,0,0);-ms-transform:matrix(0.258607,0.010614,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.258607,0.010614,-0.010252,0.249790,0,0);}
.m8_c01418{transform:matrix(0.259191,0.010897,-0.010501,0.249779,0,0);-ms-transform:matrix(0.259191,0.010897,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.259191,0.010897,-0.010501,0.249779,0,0);}
.m120_c01418{transform:matrix(0.259846,0.010664,-0.010252,0.249790,0,0);-ms-transform:matrix(0.259846,0.010664,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.259846,0.010664,-0.010252,0.249790,0,0);}
.m30_c01418{transform:matrix(0.259922,0.010407,-0.010002,0.249800,0,0);-ms-transform:matrix(0.259922,0.010407,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.259922,0.010407,-0.010002,0.249800,0,0);}
.mba_c01418{transform:matrix(0.260081,0.010674,-0.010252,0.249790,0,0);-ms-transform:matrix(0.260081,0.010674,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.260081,0.010674,-0.010252,0.249790,0,0);}
.m41_c01418{transform:matrix(0.260331,0.010424,-0.010002,0.249800,0,0);-ms-transform:matrix(0.260331,0.010424,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.260331,0.010424,-0.010002,0.249800,0,0);}
.mb2_c01418{transform:matrix(0.260456,0.010689,-0.010252,0.249790,0,0);-ms-transform:matrix(0.260456,0.010689,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.260456,0.010689,-0.010252,0.249790,0,0);}
.m88_c01418{transform:matrix(0.260711,0.010439,-0.010002,0.249800,0,0);-ms-transform:matrix(0.260711,0.010439,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.260711,0.010439,-0.010002,0.249800,0,0);}
.m31_c01418{transform:matrix(0.261076,0.010453,-0.010002,0.249800,0,0);-ms-transform:matrix(0.261076,0.010453,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.261076,0.010453,-0.010002,0.249800,0,0);}
.m2e_c01418{transform:matrix(0.261480,0.010470,-0.010002,0.249800,0,0);-ms-transform:matrix(0.261480,0.010470,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.261480,0.010470,-0.010002,0.249800,0,0);}
.m6f_c01418{transform:matrix(0.261895,0.010486,-0.010002,0.249800,0,0);-ms-transform:matrix(0.261895,0.010486,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.261895,0.010486,-0.010002,0.249800,0,0);}
.m13a_c01418{transform:matrix(0.262054,0.010755,-0.010252,0.249790,0,0);-ms-transform:matrix(0.262054,0.010755,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.262054,0.010755,-0.010252,0.249790,0,0);}
.md8_c01418{transform:matrix(0.262139,0.010758,-0.010252,0.249790,0,0);-ms-transform:matrix(0.262139,0.010758,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.262139,0.010758,-0.010252,0.249790,0,0);}
.mde_c01418{transform:matrix(0.262344,0.010767,-0.010252,0.249790,0,0);-ms-transform:matrix(0.262344,0.010767,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.262344,0.010767,-0.010252,0.249790,0,0);}
.mc6_c01418{transform:matrix(0.262479,0.010772,-0.010252,0.249790,0,0);-ms-transform:matrix(0.262479,0.010772,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.262479,0.010772,-0.010252,0.249790,0,0);}
.m2c_c01418{transform:matrix(0.262839,0.010524,-0.010002,0.249800,0,0);-ms-transform:matrix(0.262839,0.010524,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.262839,0.010524,-0.010002,0.249800,0,0);}
.m48_c01418{transform:matrix(0.262909,0.010527,-0.010002,0.249800,0,0);-ms-transform:matrix(0.262909,0.010527,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.262909,0.010527,-0.010002,0.249800,0,0);}
.md0_c01418{transform:matrix(0.262934,0.010791,-0.010252,0.249790,0,0);-ms-transform:matrix(0.262934,0.010791,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.262934,0.010791,-0.010252,0.249790,0,0);}
.m148_c01418{transform:matrix(0.262937,0.012634,-0.011998,0.249712,0,0);-ms-transform:matrix(0.262937,0.012634,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.262937,0.012634,-0.011998,0.249712,0,0);}
.m2b_c01418{transform:matrix(0.263144,0.010536,-0.010002,0.249800,0,0);-ms-transform:matrix(0.263144,0.010536,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.263144,0.010536,-0.010002,0.249800,0,0);}
.m9e_c01418{transform:matrix(0.263343,0.010808,-0.010252,0.249790,0,0);-ms-transform:matrix(0.263343,0.010808,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.263343,0.010808,-0.010252,0.249790,0,0);}
.m32_c01418{transform:matrix(0.263524,0.010552,-0.010002,0.249800,0,0);-ms-transform:matrix(0.263524,0.010552,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.263524,0.010552,-0.010002,0.249800,0,0);}
.mbc_c01418{transform:matrix(0.263568,0.010817,-0.010252,0.249790,0,0);-ms-transform:matrix(0.263568,0.010817,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.263568,0.010817,-0.010252,0.249790,0,0);}
.mdb_c01418{transform:matrix(0.263933,0.010832,-0.010252,0.249790,0,0);-ms-transform:matrix(0.263933,0.010832,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.263933,0.010832,-0.010252,0.249790,0,0);}
.m85_c01418{transform:matrix(0.264048,0.010573,-0.010002,0.249800,0,0);-ms-transform:matrix(0.264048,0.010573,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.264048,0.010573,-0.010002,0.249800,0,0);}
.m108_c01418{transform:matrix(0.264372,0.010850,-0.010252,0.249790,0,0);-ms-transform:matrix(0.264372,0.010850,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.264372,0.010850,-0.010252,0.249790,0,0);}
.md5_c01418{transform:matrix(0.264542,0.010857,-0.010252,0.249790,0,0);-ms-transform:matrix(0.264542,0.010857,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.264542,0.010857,-0.010252,0.249790,0,0);}
.m64_c01418{transform:matrix(0.265587,0.010634,-0.010002,0.249800,0,0);-ms-transform:matrix(0.265587,0.010634,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.265587,0.010634,-0.010002,0.249800,0,0);}
.m33_c01418{transform:matrix(0.266112,0.010655,-0.010002,0.249800,0,0);-ms-transform:matrix(0.266112,0.010655,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.266112,0.010655,-0.010002,0.249800,0,0);}
.m5e_c01418{transform:matrix(0.266167,0.010657,-0.010002,0.249800,0,0);-ms-transform:matrix(0.266167,0.010657,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.266167,0.010657,-0.010002,0.249800,0,0);}
.m107_c01418{transform:matrix(0.267630,0.010984,-0.010252,0.249790,0,0);-ms-transform:matrix(0.267630,0.010984,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.267630,0.010984,-0.010252,0.249790,0,0);}
.m7b_c01418{transform:matrix(0.268165,0.010737,-0.010002,0.249800,0,0);-ms-transform:matrix(0.268165,0.010737,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.268165,0.010737,-0.010002,0.249800,0,0);}
.mb9_c01418{transform:matrix(0.268489,0.011019,-0.010252,0.249790,0,0);-ms-transform:matrix(0.268489,0.011019,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.268489,0.011019,-0.010252,0.249790,0,0);}
.m9b_c01418{transform:matrix(0.268534,0.011021,-0.010252,0.249790,0,0);-ms-transform:matrix(0.268534,0.011021,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.268534,0.011021,-0.010252,0.249790,0,0);}
.m4c_c01418{transform:matrix(0.268735,0.010760,-0.010002,0.249800,0,0);-ms-transform:matrix(0.268735,0.010760,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.268735,0.010760,-0.010002,0.249800,0,0);}
.m66_c01418{transform:matrix(0.270198,0.010819,-0.010002,0.249800,0,0);-ms-transform:matrix(0.270198,0.010819,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.270198,0.010819,-0.010002,0.249800,0,0);}
.m43_c01418{transform:matrix(0.271323,0.010864,-0.010002,0.249800,0,0);-ms-transform:matrix(0.271323,0.010864,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.271323,0.010864,-0.010002,0.249800,0,0);}
.m7d_c01418{transform:matrix(0.271762,0.010881,-0.010002,0.249800,0,0);-ms-transform:matrix(0.271762,0.010881,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.271762,0.010881,-0.010002,0.249800,0,0);}
.mb6_c01418{transform:matrix(0.272201,0.011171,-0.010252,0.249790,0,0);-ms-transform:matrix(0.272201,0.011171,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.272201,0.011171,-0.010252,0.249790,0,0);}
.mf6_c01418{transform:matrix(0.272516,0.011184,-0.010252,0.249790,0,0);-ms-transform:matrix(0.272516,0.011184,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.272516,0.011184,-0.010252,0.249790,0,0);}
.m15_c01418{transform:matrix(0.273044,0.011479,-0.010501,0.249779,0,0);-ms-transform:matrix(0.273044,0.011479,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.273044,0.011479,-0.010501,0.249779,0,0);}
.m60_c01418{transform:matrix(0.273506,0.010951,-0.010002,0.249800,0,0);-ms-transform:matrix(0.273506,0.010951,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.273506,0.010951,-0.010002,0.249800,0,0);}
.m7f_c01418{transform:matrix(0.273541,0.010953,-0.010002,0.249800,0,0);-ms-transform:matrix(0.273541,0.010953,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.273541,0.010953,-0.010002,0.249800,0,0);}
.m155_c01418{transform:matrix(0.273547,0.009858,-0.009003,0.249838,0,0);-ms-transform:matrix(0.273547,0.009858,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.273547,0.009858,-0.009003,0.249838,0,0);}
.m13d_c01418{transform:matrix(0.273605,0.011229,-0.010252,0.249790,0,0);-ms-transform:matrix(0.273605,0.011229,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.273605,0.011229,-0.010252,0.249790,0,0);}
.m106_c01418{transform:matrix(0.273610,0.011229,-0.010252,0.249790,0,0);-ms-transform:matrix(0.273610,0.011229,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.273610,0.011229,-0.010252,0.249790,0,0);}
.m4b_c01418{transform:matrix(0.274520,0.010992,-0.010002,0.249800,0,0);-ms-transform:matrix(0.274520,0.010992,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.274520,0.010992,-0.010002,0.249800,0,0);}
.m89_c01418{transform:matrix(0.274685,0.010998,-0.010002,0.249800,0,0);-ms-transform:matrix(0.274685,0.010998,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.274685,0.010998,-0.010002,0.249800,0,0);}
.mc7_c01418{transform:matrix(0.274979,0.011285,-0.010252,0.249790,0,0);-ms-transform:matrix(0.274979,0.011285,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.274979,0.011285,-0.010252,0.249790,0,0);}
.mbf_c01418{transform:matrix(0.275098,0.011290,-0.010252,0.249790,0,0);-ms-transform:matrix(0.275098,0.011290,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.275098,0.011290,-0.010252,0.249790,0,0);}
.mc3_c01418{transform:matrix(0.275238,0.011296,-0.010252,0.249790,0,0);-ms-transform:matrix(0.275238,0.011296,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.275238,0.011296,-0.010252,0.249790,0,0);}
.m10a_c01418{transform:matrix(0.275743,0.011317,-0.010252,0.249790,0,0);-ms-transform:matrix(0.275743,0.011317,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.275743,0.011317,-0.010252,0.249790,0,0);}
.m34_c01418{transform:matrix(0.275919,0.011048,-0.010002,0.249800,0,0);-ms-transform:matrix(0.275919,0.011048,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.275919,0.011048,-0.010002,0.249800,0,0);}
.m46_c01418{transform:matrix(0.276024,0.011052,-0.010002,0.249800,0,0);-ms-transform:matrix(0.276024,0.011052,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.276024,0.011052,-0.010002,0.249800,0,0);}
.m63_c01418{transform:matrix(0.276463,0.011070,-0.010002,0.249800,0,0);-ms-transform:matrix(0.276463,0.011070,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.276463,0.011070,-0.010002,0.249800,0,0);}
.mcc_c01418{transform:matrix(0.276667,0.011355,-0.010252,0.249790,0,0);-ms-transform:matrix(0.276667,0.011355,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.276667,0.011355,-0.010252,0.249790,0,0);}
.mb3_c01418{transform:matrix(0.276782,0.011359,-0.010252,0.249790,0,0);-ms-transform:matrix(0.276782,0.011359,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.276782,0.011359,-0.010252,0.249790,0,0);}
.m7a_c01418{transform:matrix(0.277618,0.011116,-0.010002,0.249800,0,0);-ms-transform:matrix(0.277618,0.011116,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.277618,0.011116,-0.010002,0.249800,0,0);}
.m10_c01418{transform:matrix(0.278669,0.011716,-0.010501,0.249779,0,0);-ms-transform:matrix(0.278669,0.011716,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.278669,0.011716,-0.010501,0.249779,0,0);}
.md2_c01418{transform:matrix(0.278925,0.011447,-0.010252,0.249790,0,0);-ms-transform:matrix(0.278925,0.011447,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.278925,0.011447,-0.010252,0.249790,0,0);}
.m12_c01418{transform:matrix(0.279398,0.011746,-0.010501,0.249779,0,0);-ms-transform:matrix(0.279398,0.011746,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.279398,0.011746,-0.010501,0.249779,0,0);}
.m14_c01418{transform:matrix(0.279418,0.011747,-0.010501,0.249779,0,0);-ms-transform:matrix(0.279418,0.011747,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.279418,0.011747,-0.010501,0.249779,0,0);}
.mca_c01418{transform:matrix(0.279909,0.011488,-0.010252,0.249790,0,0);-ms-transform:matrix(0.279909,0.011488,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.279909,0.011488,-0.010252,0.249790,0,0);}
.m5d_c01418{transform:matrix(0.280121,0.011216,-0.010002,0.249800,0,0);-ms-transform:matrix(0.280121,0.011216,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.280121,0.011216,-0.010002,0.249800,0,0);}
.m147_c01418{transform:matrix(0.280601,0.013482,-0.011998,0.249712,0,0);-ms-transform:matrix(0.280601,0.013482,-0.011998,0.249712,0,0);-webkit-transform:matrix(0.280601,0.013482,-0.011998,0.249712,0,0);}
.md_c01418{transform:matrix(0.280632,0.011798,-0.010501,0.249779,0,0);-ms-transform:matrix(0.280632,0.011798,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.280632,0.011798,-0.010501,0.249779,0,0);}
.m4d_c01418{transform:matrix(0.281080,0.011254,-0.010002,0.249800,0,0);-ms-transform:matrix(0.281080,0.011254,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.281080,0.011254,-0.010002,0.249800,0,0);}
.m109_c01418{transform:matrix(0.281118,0.011537,-0.010252,0.249790,0,0);-ms-transform:matrix(0.281118,0.011537,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.281118,0.011537,-0.010252,0.249790,0,0);}
.m1a_c01418{transform:matrix(0.283834,0.011933,-0.010501,0.249779,0,0);-ms-transform:matrix(0.283834,0.011933,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.283834,0.011933,-0.010501,0.249779,0,0);}
.m6b_c01418{transform:matrix(0.285176,0.011418,-0.010002,0.249800,0,0);-ms-transform:matrix(0.285176,0.011418,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.285176,0.011418,-0.010002,0.249800,0,0);}
.md1_c01418{transform:matrix(0.287908,0.011816,-0.010252,0.249790,0,0);-ms-transform:matrix(0.287908,0.011816,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.287908,0.011816,-0.010252,0.249790,0,0);}
.m82_c01418{transform:matrix(0.311261,0.012463,-0.010002,0.249800,0,0);-ms-transform:matrix(0.311261,0.012463,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.311261,0.012463,-0.010002,0.249800,0,0);}
.m154_c01418{transform:matrix(0.382177,0.013772,-0.009003,0.249838,0,0);-ms-transform:matrix(0.382177,0.013772,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.382177,0.013772,-0.009003,0.249838,0,0);}
.ma3_c01418{transform:matrix(0.382958,0.015717,-0.010252,0.249790,0,0);-ms-transform:matrix(0.382958,0.015717,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.382958,0.015717,-0.010252,0.249790,0,0);}
.m157_c01418{transform:matrix(0.577380,0.020806,-0.009003,0.249838,0,0);-ms-transform:matrix(0.577380,0.020806,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.577380,0.020806,-0.009003,0.249838,0,0);}
.m156_c01418{transform:matrix(0.694169,0.025015,-0.009003,0.249838,0,0);-ms-transform:matrix(0.694169,0.025015,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.694169,0.025015,-0.009003,0.249838,0,0);}
.m153_c01418{transform:matrix(0.890627,0.032095,-0.009003,0.249838,0,0);-ms-transform:matrix(0.890627,0.032095,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.890627,0.032095,-0.009003,0.249838,0,0);}
.v0_c01418{vertical-align:0.000000px;}
.ls0_c01418{letter-spacing:0.000000px;}
.sc__c01418{text-shadow:none;}
.sc0_c01418{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__c01418{-webkit-text-stroke:0px transparent;}
.sc0_c01418{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01418{word-spacing:0.000000px;}
.fc0_c01418{color:transparent;}
.fsd_c01418{font-size:17.993672px;}
.fs4_c01418{font-size:71.985635px;}
.fs7_c01418{font-size:71.988551px;}
.fs2_c01418{font-size:71.991540px;}
.fs3_c01418{font-size:77.984437px;}
.fs8_c01418{font-size:77.987597px;}
.fs1_c01418{font-size:77.990834px;}
.fsb_c01418{font-size:78.011894px;}
.fs9_c01418{font-size:83.986643px;}
.fsc_c01418{font-size:84.012809px;}
.fs5_c01418{font-size:89.982043px;}
.fsa_c01418{font-size:89.985689px;}
.fs6_c01418{font-size:101.983781px;}
.fs0_c01418{font-size:113.986604px;}
.y0_c01418{bottom:0.000000px;}
.y163_c01418{bottom:0.814361px;}
.y162_c01418{bottom:0.815211px;}
.y161_c01418{bottom:2.794230px;}
.y160_c01418{bottom:3.280608px;}
.y15f_c01418{bottom:4.320000px;}
.y15e_c01418{bottom:23.534896px;}
.y15d_c01418{bottom:28.077057px;}
.y15c_c01418{bottom:30.130717px;}
.y15b_c01418{bottom:35.206830px;}
.y15a_c01418{bottom:37.157850px;}
.y159_c01418{bottom:38.724025px;}
.y158_c01418{bottom:41.782909px;}
.y157_c01418{bottom:43.252420px;}
.y156_c01418{bottom:44.780638px;}
.y155_c01418{bottom:49.779108px;}
.y154_c01418{bottom:54.296428px;}
.y153_c01418{bottom:61.135668px;}
.y152_c01418{bottom:63.798228px;}
.y151_c01418{bottom:66.986964px;}
.y150_c01418{bottom:68.530572px;}
.y14f_c01418{bottom:72.240948px;}
.y14e_c01418{bottom:73.779516px;}
.y14d_c01418{bottom:74.855844px;}
.y14c_c01418{bottom:79.583364px;}
.y14b_c01418{bottom:81.639180px;}
.y14a_c01418{bottom:83.819556px;}
.y149_c01418{bottom:87.511500px;}
.y148_c01418{bottom:123.181095px;}
.y147_c01418{bottom:125.242728px;}
.y146_c01418{bottom:126.416044px;}
.y145_c01418{bottom:134.374176px;}
.y144_c01418{bottom:135.810945px;}
.y143_c01418{bottom:136.818742px;}
.y142_c01418{bottom:139.775725px;}
.y141_c01418{bottom:142.746753px;}
.y140_c01418{bottom:144.281995px;}
.y13f_c01418{bottom:147.234981px;}
.y13e_c01418{bottom:151.606201px;}
.y13d_c01418{bottom:153.644266px;}
.y13c_c01418{bottom:156.081861px;}
.y13b_c01418{bottom:159.563275px;}
.y13a_c01418{bottom:160.506285px;}
.y139_c01418{bottom:163.428967px;}
.y138_c01418{bottom:169.305022px;}
.y137_c01418{bottom:171.416034px;}
.y136_c01418{bottom:173.097063px;}
.y135_c01418{bottom:174.376354px;}
.y134_c01418{bottom:177.653694px;}
.y133_c01418{bottom:181.822587px;}
.y132_c01418{bottom:184.358929px;}
.y131_c01418{bottom:185.581893px;}
.y130_c01418{bottom:187.719142px;}
.y12f_c01418{bottom:189.353722px;}
.y12e_c01418{bottom:193.069716px;}
.y12d_c01418{bottom:194.731395px;}
.y12c_c01418{bottom:209.231506px;}
.y12b_c01418{bottom:212.360626px;}
.y12a_c01418{bottom:218.209276px;}
.y129_c01418{bottom:219.590074px;}
.y128_c01418{bottom:221.329786px;}
.y127_c01418{bottom:222.726636px;}
.y126_c01418{bottom:224.527110px;}
.y125_c01418{bottom:226.273341px;}
.y124_c01418{bottom:228.517599px;}
.y123_c01418{bottom:232.181400px;}
.y122_c01418{bottom:233.871420px;}
.y121_c01418{bottom:242.576613px;}
.y120_c01418{bottom:246.189676px;}
.y11f_c01418{bottom:247.520106px;}
.y11e_c01418{bottom:250.158025px;}
.y11d_c01418{bottom:252.797298px;}
.y11c_c01418{bottom:255.137188px;}
.y11b_c01418{bottom:257.412319px;}
.y11a_c01418{bottom:258.271905px;}
.y119_c01418{bottom:260.510689px;}
.y118_c01418{bottom:262.776595px;}
.y117_c01418{bottom:263.714470px;}
.y116_c01418{bottom:266.366166px;}
.y115_c01418{bottom:267.727530px;}
.y114_c01418{bottom:269.509185px;}
.y113_c01418{bottom:278.571322px;}
.y112_c01418{bottom:282.302256px;}
.y111_c01418{bottom:287.756289px;}
.y110_c01418{bottom:291.465574px;}
.y10f_c01418{bottom:294.244519px;}
.y10e_c01418{bottom:295.651765px;}
.y10d_c01418{bottom:299.330094px;}
.y10c_c01418{bottom:300.711018px;}
.y10b_c01418{bottom:302.949790px;}
.y10a_c01418{bottom:305.678836px;}
.y109_c01418{bottom:314.903662px;}
.y108_c01418{bottom:316.178943px;}
.y107_c01418{bottom:317.882725px;}
.y106_c01418{bottom:319.201441px;}
.y105_c01418{bottom:322.199977px;}
.y104_c01418{bottom:323.875923px;}
.y103_c01418{bottom:325.213558px;}
.y102_c01418{bottom:328.532508px;}
.y101_c01418{bottom:330.293317px;}
.y100_c01418{bottom:333.309051px;}
.yff_c01418{bottom:334.563114px;}
.yfe_c01418{bottom:337.525695px;}
.yfd_c01418{bottom:340.504120px;}
.yfc_c01418{bottom:347.830377px;}
.yfb_c01418{bottom:349.162755px;}
.yfa_c01418{bottom:351.876180px;}
.yf9_c01418{bottom:353.308417px;}
.yf8_c01418{bottom:354.698566px;}
.yf7_c01418{bottom:359.253708px;}
.yf6_c01418{bottom:361.137943px;}
.yf5_c01418{bottom:362.533197px;}
.yf4_c01418{bottom:366.664446px;}
.yf3_c01418{bottom:370.310548px;}
.yf2_c01418{bottom:371.705310px;}
.yf1_c01418{bottom:373.100071px;}
.yf0_c01418{bottom:375.324883px;}
.yef_c01418{bottom:383.894980px;}
.yee_c01418{bottom:386.173494px;}
.yed_c01418{bottom:387.097593px;}
.yec_c01418{bottom:389.353351px;}
.yeb_c01418{bottom:390.688516px;}
.yea_c01418{bottom:392.527305px;}
.ye9_c01418{bottom:399.241444px;}
.ye8_c01418{bottom:400.635526px;}
.ye7_c01418{bottom:403.234147px;}
.ye6_c01418{bottom:406.914000px;}
.ye5_c01418{bottom:444.872087px;}
.ye4_c01418{bottom:455.568491px;}
.ye3_c01418{bottom:458.323082px;}
.ye2_c01418{bottom:461.536067px;}
.ye1_c01418{bottom:464.384283px;}
.ye0_c01418{bottom:465.768897px;}
.ydf_c01418{bottom:468.942561px;}
.yde_c01418{bottom:470.812467px;}
.ydd_c01418{bottom:471.732230px;}
.ydc_c01418{bottom:474.506624px;}
.ydb_c01418{bottom:475.913870px;}
.yda_c01418{bottom:477.708455px;}
.yd9_c01418{bottom:480.545601px;}
.yd8_c01418{bottom:482.299104px;}
.yd7_c01418{bottom:484.164459px;}
.yd6_c01418{bottom:493.010580px;}
.yd5_c01418{bottom:494.407676px;}
.yd4_c01418{bottom:497.030589px;}
.yd3_c01418{bottom:498.357390px;}
.yd2_c01418{bottom:499.802087px;}
.yd1_c01418{bottom:501.513755px;}
.yd0_c01418{bottom:504.278303px;}
.ycf_c01418{bottom:508.308459px;}
.yce_c01418{bottom:510.535743px;}
.ycd_c01418{bottom:515.023521px;}
.ycc_c01418{bottom:516.837464px;}
.ycb_c01418{bottom:518.989595px;}
.yca_c01418{bottom:528.468021px;}
.yc9_c01418{bottom:531.125799px;}
.yc8_c01418{bottom:532.445402px;}
.yc7_c01418{bottom:533.774721px;}
.yc6_c01418{bottom:537.288449px;}
.yc5_c01418{bottom:538.618199px;}
.yc4_c01418{bottom:539.947518px;}
.yc3_c01418{bottom:541.660563px;}
.yc2_c01418{bottom:546.051312px;}
.yc1_c01418{bottom:548.213150px;}
.yc0_c01418{bottom:550.818429px;}
.ybf_c01418{bottom:554.353659px;}
.ybe_c01418{bottom:562.768494px;}
.ybd_c01418{bottom:565.503567px;}
.ybc_c01418{bottom:568.284849px;}
.ybb_c01418{bottom:569.647385px;}
.yba_c01418{bottom:570.958115px;}
.yb9_c01418{bottom:574.696490px;}
.yb8_c01418{bottom:576.565473px;}
.yb7_c01418{bottom:578.391015px;}
.yb6_c01418{bottom:582.550946px;}
.yb5_c01418{bottom:585.715385px;}
.yb4_c01418{bottom:587.613888px;}
.yb3_c01418{bottom:590.798130px;}
.yb2_c01418{bottom:598.275599px;}
.yb1_c01418{bottom:600.980094px;}
.yb0_c01418{bottom:603.520513px;}
.yaf_c01418{bottom:605.266338px;}
.yae_c01418{bottom:606.607589px;}
.yad_c01418{bottom:609.260508px;}
.yac_c01418{bottom:610.601328px;}
.yab_c01418{bottom:615.363156px;}
.yaa_c01418{bottom:618.448448px;}
.ya9_c01418{bottom:619.341828px;}
.ya8_c01418{bottom:621.955103px;}
.ya7_c01418{bottom:624.544454px;}
.ya6_c01418{bottom:634.810668px;}
.ya5_c01418{bottom:636.045171px;}
.ya4_c01418{bottom:637.684548px;}
.ya3_c01418{bottom:638.972980px;}
.ya2_c01418{bottom:640.200741px;}
.ya1_c01418{bottom:642.701766px;}
.ya0_c01418{bottom:643.995795px;}
.y9f_c01418{bottom:645.665323px;}
.y9e_c01418{bottom:648.975336px;}
.y9d_c01418{bottom:650.218142px;}
.y9c_c01418{bottom:652.693482px;}
.y9b_c01418{bottom:653.948319px;}
.y9a_c01418{bottom:655.207092px;}
.y99_c01418{bottom:657.672431px;}
.y98_c01418{bottom:659.369304px;}
.y97_c01418{bottom:669.724748px;}
.y96_c01418{bottom:671.527620px;}
.y95_c01418{bottom:676.037969px;}
.y94_c01418{bottom:679.187814px;}
.y93_c01418{bottom:681.878316px;}
.y92_c01418{bottom:683.182116px;}
.y91_c01418{bottom:684.176510px;}
.y90_c01418{bottom:685.445747px;}
.y8f_c01418{bottom:687.258336px;}
.y8e_c01418{bottom:691.768500px;}
.y8d_c01418{bottom:714.634273px;}
.y8c_c01418{bottom:719.446334px;}
.y8b_c01418{bottom:722.074273px;}
.y8a_c01418{bottom:723.403753px;}
.y89_c01418{bottom:725.565074px;}
.y88_c01418{bottom:727.760893px;}
.y87_c01418{bottom:729.496993px;}
.y86_c01418{bottom:731.252113px;}
.y85_c01418{bottom:741.387861px;}
.y84_c01418{bottom:742.814893px;}
.y83_c01418{bottom:744.658366px;}
.y82_c01418{bottom:749.199851px;}
.y81_c01418{bottom:751.501041px;}
.y80_c01418{bottom:755.726760px;}
.y7f_c01418{bottom:757.553673px;}
.y7e_c01418{bottom:760.311563px;}
.y7d_c01418{bottom:765.826140px;}
.y7c_c01418{bottom:767.154297px;}
.y7b_c01418{bottom:776.074692px;}
.y7a_c01418{bottom:777.555057px;}
.y79_c01418{bottom:779.476323px;}
.y78_c01418{bottom:780.438636px;}
.y77_c01418{bottom:783.838827px;}
.y76_c01418{bottom:784.789860px;}
.y75_c01418{bottom:786.751321px;}
.y74_c01418{bottom:789.128305px;}
.y73_c01418{bottom:791.997365px;}
.y72_c01418{bottom:797.341500px;}
.y71_c01418{bottom:800.226997px;}
.y70_c01418{bottom:803.601152px;}
.y6f_c01418{bottom:814.795857px;}
.y6e_c01418{bottom:816.191723px;}
.y6d_c01418{bottom:821.174781px;}
.y6c_c01418{bottom:822.927879px;}
.y6b_c01418{bottom:824.255766px;}
.y6a_c01418{bottom:826.068022px;}
.y69_c01418{bottom:828.285928px;}
.y68_c01418{bottom:830.558793px;}
.y67_c01418{bottom:832.327489px;}
.y66_c01418{bottom:835.070922px;}
.y65_c01418{bottom:839.500494px;}
.y64_c01418{bottom:849.569868px;}
.y63_c01418{bottom:851.316768px;}
.y62_c01418{bottom:855.241788px;}
.y61_c01418{bottom:857.423388px;}
.y60_c01418{bottom:860.530008px;}
.y5f_c01418{bottom:862.302408px;}
.y5e_c01418{bottom:867.133908px;}
.y5d_c01418{bottom:869.303388px;}
.y5c_c01418{bottom:871.443528px;}
.y5b_c01418{bottom:874.106388px;}
.y5a_c01418{bottom:875.397888px;}
.y59_c01418{bottom:883.678881px;}
.y58_c01418{bottom:887.289412px;}
.y57_c01418{bottom:889.031050px;}
.y56_c01418{bottom:890.847327px;}
.y55_c01418{bottom:893.965270px;}
.y54_c01418{bottom:895.372416px;}
.y53_c01418{bottom:898.517899px;}
.y52_c01418{bottom:900.764606px;}
.y51_c01418{bottom:902.555322px;}
.y50_c01418{bottom:906.627303px;}
.y4f_c01418{bottom:910.225716px;}
.y4e_c01418{bottom:919.033249px;}
.y4d_c01418{bottom:921.225650px;}
.y4c_c01418{bottom:923.850529px;}
.y4b_c01418{bottom:925.091989px;}
.y4a_c01418{bottom:925.999309px;}
.y49_c01418{bottom:929.506069px;}
.y48_c01418{bottom:930.408649px;}
.y47_c01418{bottom:934.384609px;}
.y46_c01418{bottom:936.071509px;}
.y45_c01418{bottom:937.502450px;}
.y44_c01418{bottom:941.305310px;}
.y43_c01418{bottom:942.244609px;}
.y42_c01418{bottom:945.587329px;}
.y41_c01418{bottom:954.251259px;}
.y40_c01418{bottom:958.320180px;}
.y3f_c01418{bottom:960.058098px;}
.y3e_c01418{bottom:961.913553px;}
.y3d_c01418{bottom:963.275580px;}
.y3c_c01418{bottom:965.938855px;}
.y3b_c01418{bottom:967.316542px;}
.y3a_c01418{bottom:970.903555px;}
.y39_c01418{bottom:973.608829px;}
.y38_c01418{bottom:975.858834px;}
.y37_c01418{bottom:979.791258px;}
.y36_c01418{bottom:981.220423px;}
.y35_c01418{bottom:992.870050px;}
.y34_c01418{bottom:995.952070px;}
.y33_c01418{bottom:998.175550px;}
.y32_c01418{bottom:1000.758550px;}
.y31_c01418{bottom:1003.795270px;}
.y30_c01418{bottom:1005.179170px;}
.y2f_c01418{bottom:1007.826490px;}
.y2e_c01418{bottom:1009.134850px;}
.y2d_c01418{bottom:1011.741190px;}
.y2c_c01418{bottom:1013.926210px;}
.y2b_c01418{bottom:1014.773111px;}
.y2a_c01418{bottom:1016.583011px;}
.y29_c01418{bottom:1027.872540px;}
.y28_c01418{bottom:1031.339580px;}
.y27_c01418{bottom:1033.149060px;}
.y26_c01418{bottom:1035.775260px;}
.y25_c01418{bottom:1037.499300px;}
.y24_c01418{bottom:1040.087520px;}
.y23_c01418{bottom:1041.887520px;}
.y22_c01418{bottom:1045.369260px;}
.y21_c01418{bottom:1047.622500px;}
.y20_c01418{bottom:1069.183836px;}
.y1f_c01418{bottom:1070.485430px;}
.y1e_c01418{bottom:1071.330448px;}
.y1d_c01418{bottom:1075.716526px;}
.y1c_c01418{bottom:1077.029347px;}
.y1b_c01418{bottom:1079.244922px;}
.y1a_c01418{bottom:1081.896394px;}
.y19_c01418{bottom:1082.769840px;}
.y18_c01418{bottom:1087.130704px;}
.y17_c01418{bottom:1088.412831px;}
.y16_c01418{bottom:1099.467018px;}
.y15_c01418{bottom:1103.997276px;}
.y14_c01418{bottom:1105.793545px;}
.y13_c01418{bottom:1110.288510px;}
.y12_c01418{bottom:1112.080117px;}
.y11_c01418{bottom:1115.739576px;}
.y10_c01418{bottom:1117.482975px;}
.yf_c01418{bottom:1119.249130px;}
.ye_c01418{bottom:1123.785877px;}
.yd_c01418{bottom:1133.582319px;}
.yc_c01418{bottom:1134.545931px;}
.yb_c01418{bottom:1138.585248px;}
.ya_c01418{bottom:1143.080653px;}
.y9_c01418{bottom:1146.870688px;}
.y8_c01418{bottom:1148.021955px;}
.y7_c01418{bottom:1150.747992px;}
.y6_c01418{bottom:1153.462689px;}
.y5_c01418{bottom:1155.645607px;}
.y4_c01418{bottom:1157.929353px;}
.y3_c01418{bottom:1159.684672px;}
.y2_c01418{bottom:1205.151732px;}
.y1_c01418{bottom:1206.099000px;}
.hf_c01418{height:17.993672px;}
.h6_c01418{height:71.985635px;}
.h9_c01418{height:71.988551px;}
.h4_c01418{height:71.991540px;}
.h5_c01418{height:77.984437px;}
.ha_c01418{height:77.987597px;}
.h3_c01418{height:77.990834px;}
.hd_c01418{height:78.011894px;}
.hb_c01418{height:83.986643px;}
.he_c01418{height:84.012809px;}
.h7_c01418{height:89.982043px;}
.hc_c01418{height:89.985689px;}
.h8_c01418{height:101.983781px;}
.h2_c01418{height:113.986604px;}
.h1_c01418{height:1250.250000px;}
.h0_c01418{height:1250.370000px;}
.w0_c01418{width:912.000000px;}
.x0_c01418{left:0.000000px;}
.xe5_c01418{left:141.174245px;}
.xdf_c01418{left:145.802411px;}
.xd1_c01418{left:146.881467px;}
.xc3_c01418{left:150.178581px;}
.xbe_c01418{left:152.934389px;}
.xb6_c01418{left:153.994402px;}
.xb0_c01418{left:155.713180px;}
.xa5_c01418{left:158.531991px;}
.x95_c01418{left:162.047562px;}
.x8d_c01418{left:163.666365px;}
.x7d_c01418{left:166.082826px;}
.xec_c01418{left:168.490251px;}
.x70_c01418{left:169.554111px;}
.x3c_c01418{left:171.494609px;}
.x5a_c01418{left:174.457223px;}
.x49_c01418{left:176.338992px;}
.x27_c01418{left:180.641069px;}
.xe_c01418{left:185.505465px;}
.x3_c01418{left:188.068530px;}
.xca_c01418{left:190.892931px;}
.xc4_c01418{left:193.590126px;}
.x6b_c01418{left:203.047262px;}
.x52_c01418{left:208.466458px;}
.x7e_c01418{left:210.683660px;}
.x71_c01418{left:213.388233px;}
.x32_c01418{left:214.680777px;}
.x16_c01418{left:217.429513px;}
.xea_c01418{left:222.424128px;}
.x28_c01418{left:225.843321px;}
.x4_c01418{left:230.855529px;}
.xd9_c01418{left:231.894113px;}
.xeb_c01418{left:235.921117px;}
.x8e_c01418{left:239.424453px;}
.xb1_c01418{left:241.822476px;}
.xa6_c01418{left:244.587279px;}
.x29_c01418{left:246.994649px;}
.x64_c01418{left:248.587225px;}
.x96_c01418{left:250.344309px;}
.x3d_c01418{left:254.979041px;}
.x72_c01418{left:256.747331px;}
.x9d_c01418{left:258.390240px;}
.x4a_c01418{left:264.035225px;}
.xbf_c01418{left:271.126776px;}
.x53_c01418{left:274.971387px;}
.x76_c01418{left:276.582000px;}
.x3e_c01418{left:278.438058px;}
.xcb_c01418{left:280.164570px;}
.x5b_c01418{left:282.386861px;}
.x8f_c01418{left:284.585900px;}
.x5_c01418{left:286.497165px;}
.xd2_c01418{left:288.226841px;}
.x1f_c01418{left:291.838500px;}
.xf_c01418{left:296.057469px;}
.x2a_c01418{left:301.565523px;}
.xc0_c01418{left:303.969546px;}
.xb7_c01418{left:306.176565px;}
.x7f_c01418{left:308.556693px;}
.x33_c01418{left:310.494024px;}
.x73_c01418{left:311.587935px;}
.x65_c01418{left:314.092644px;}
.x97_c01418{left:315.396839px;}
.x87_c01418{left:318.045209px;}
.x17_c01418{left:326.333145px;}
.x54_c01418{left:328.421383px;}
.xd3_c01418{left:331.200119px;}
.x6c_c01418{left:334.213953px;}
.xb8_c01418{left:338.305551px;}
.x6_c01418{left:339.669147px;}
.x80_c01418{left:341.545734px;}
.x18_c01418{left:348.144141px;}
.x5c_c01418{left:349.217261px;}
.xa7_c01418{left:354.773489px;}
.x90_c01418{left:359.861471px;}
.xb2_c01418{left:361.721532px;}
.x4b_c01418{left:363.258938px;}
.x34_c01418{left:365.300940px;}
.x2b_c01418{left:366.658865px;}
.x9e_c01418{left:367.738782px;}
.x98_c01418{left:369.388509px;}
.x3f_c01418{left:373.414487px;}
.xcc_c01418{left:377.396241px;}
.x10_c01418{left:381.569965px;}
.x55_c01418{left:382.604146px;}
.x77_c01418{left:386.475996px;}
.xa8_c01418{left:388.257617px;}
.x5d_c01418{left:392.303389px;}
.x88_c01418{left:395.086230px;}
.x2c_c01418{left:399.335156px;}
.x7_c01418{left:405.811213px;}
.x4c_c01418{left:406.895016px;}
.x40_c01418{left:409.152213px;}
.xe6_c01418{left:412.927809px;}
.x19_c01418{left:414.353415px;}
.xb9_c01418{left:415.553566px;}
.xac_c01418{left:417.535366px;}
.xd4_c01418{left:419.511554px;}
.x9f_c01418{left:422.008458px;}
.xc1_c01418{left:424.958011px;}
.x35_c01418{left:431.215817px;}
.x20_c01418{left:435.069626px;}
.x81_c01418{left:439.273413px;}
.x6d_c01418{left:443.284065px;}
.xc5_c01418{left:444.929036px;}
.x5e_c01418{left:447.681234px;}
.x41_c01418{left:451.282541px;}
.x1_c01418{left:452.856000px;}
.xa9_c01418{left:454.248851px;}
.xcd_c01418{left:455.301758px;}
.x91_c01418{left:458.807862px;}
.xb3_c01418{left:460.005648px;}
.x4d_c01418{left:461.657037px;}
.x74_c01418{left:464.403467px;}
.x2d_c01418{left:465.451973px;}
.x1a_c01418{left:469.694685px;}
.x11_c01418{left:470.719447px;}
.x8_c01418{left:472.223010px;}
.x2_c01418{left:475.387446px;}
.x21_c01418{left:480.024625px;}
.x78_c01418{left:485.796576px;}
.xc2_c01418{left:491.060135px;}
.xb4_c01418{left:493.197568px;}
.xce_c01418{left:497.691326px;}
.x9_c01418{left:500.285118px;}
.x1b_c01418{left:502.492129px;}
.xda_c01418{left:505.584708px;}
.xe7_c01418{left:513.344378px;}
.x12_c01418{left:514.369582px;}
.x79_c01418{left:517.564776px;}
.x36_c01418{left:518.627334px;}
.xa0_c01418{left:520.206662px;}
.x99_c01418{left:521.843181px;}
.x82_c01418{left:526.288522px;}
.xcf_c01418{left:531.335648px;}
.xe0_c01418{left:536.520417px;}
.x4e_c01418{left:538.303751px;}
.x22_c01418{left:544.665420px;}
.x5f_c01418{left:545.898015px;}
.x56_c01418{left:547.536549px;}
.x42_c01418{left:550.582142px;}
.x37_c01418{left:552.210396px;}
.x66_c01418{left:554.554443px;}
.xe8_c01418{left:555.700515px;}
.xc6_c01418{left:557.377974px;}
.xe1_c01418{left:568.541864px;}
.x83_c01418{left:570.186498px;}
.x43_c01418{left:573.124077px;}
.x2e_c01418{left:575.856957px;}
.x60_c01418{left:578.237322px;}
.xba_c01418{left:579.928509px;}
.x7a_c01418{left:583.121154px;}
.x75_c01418{left:584.584665px;}
.x23_c01418{left:587.723319px;}
.xa_c01418{left:592.647573px;}
.xaa_c01418{left:596.076033px;}
.x67_c01418{left:599.081224px;}
.x84_c01418{left:604.203633px;}
.xdb_c01418{left:605.215602px;}
.x1c_c01418{left:612.031188px;}
.x89_c01418{left:613.726298px;}
.xad_c01418{left:615.099105px;}
.x38_c01418{left:617.113845px;}
.x61_c01418{left:620.971364px;}
.xbb_c01418{left:622.849054px;}
.x13_c01418{left:623.892054px;}
.x57_c01418{left:625.124383px;}
.xa1_c01418{left:629.273486px;}
.x1d_c01418{left:633.130333px;}
.x92_c01418{left:635.601128px;}
.x2f_c01418{left:640.367382px;}
.xe2_c01418{left:645.764064px;}
.x8a_c01418{left:647.211633px;}
.x4f_c01418{left:648.543956px;}
.x39_c01418{left:650.305799px;}
.x24_c01418{left:653.312664px;}
.x44_c01418{left:660.705408px;}
.xa2_c01418{left:664.474749px;}
.x1e_c01418{left:665.625018px;}
.x14_c01418{left:667.653078px;}
.x85_c01418{left:669.934401px;}
.xdc_c01418{left:671.170247px;}
.xd0_c01418{left:673.842998px;}
.x9a_c01418{left:675.979170px;}
.xe3_c01418{left:677.890406px;}
.x58_c01418{left:679.609843px;}
.xd5_c01418{left:681.910151px;}
.x45_c01418{left:683.365725px;}
.xc7_c01418{left:685.961262px;}
.x8b_c01418{left:690.810776px;}
.x50_c01418{left:692.818395px;}
.x30_c01418{left:695.898795px;}
.x25_c01418{left:698.504427px;}
.xbc_c01418{left:699.641464px;}
.xb_c01418{left:702.180534px;}
.x6e_c01418{left:706.559945px;}
.x9b_c01418{left:709.173797px;}
.xe9_c01418{left:710.528379px;}
.x46_c01418{left:714.371189px;}
.xd6_c01418{left:715.531620px;}
.xc8_c01418{left:718.378312px;}
.x68_c01418{left:719.716629px;}
.xbd_c01418{left:733.418924px;}
.x51_c01418{left:735.266223px;}
.xdd_c01418{left:736.819259px;}
.x3a_c01418{left:737.876157px;}
.x62_c01418{left:742.386961px;}
.xe4_c01418{left:744.255973px;}
.xae_c01418{left:747.398673px;}
.x6f_c01418{left:750.426551px;}
.x8c_c01418{left:754.246362px;}
.xd7_c01418{left:759.709815px;}
.xa3_c01418{left:760.712915px;}
.x69_c01418{left:763.351983px;}
.x93_c01418{left:765.323919px;}
.x7b_c01418{left:769.768320px;}
.x31_c01418{left:772.872245px;}
.x63_c01418{left:776.386546px;}
.x15_c01418{left:778.050736px;}
.x47_c01418{left:779.927567px;}
.x26_c01418{left:785.093751px;}
.xde_c01418{left:791.080017px;}
.xa4_c01418{left:794.754339px;}
.x6a_c01418{left:796.950446px;}
.xc_c01418{left:800.615163px;}
.xc9_c01418{left:806.413689px;}
.x9c_c01418{left:808.499934px;}
.xb5_c01418{left:809.730729px;}
.x86_c01418{left:811.618497px;}
.x7c_c01418{left:813.696847px;}
.xd8_c01418{left:815.206097px;}
.x59_c01418{left:821.266046px;}
.xd_c01418{left:824.106657px;}
.xaf_c01418{left:825.433060px;}
.x94_c01418{left:830.393637px;}
.x48_c01418{left:834.682757px;}
.x3b_c01418{left:837.023447px;}
.xab_c01418{left:838.692701px;}
@media print{
.v0_c01418{vertical-align:0.000000pt;}
.ls0_c01418{letter-spacing:0.000000pt;}
.ws0_c01418{word-spacing:0.000000pt;}
.fsd_c01418{font-size:15.994375pt;}
.fs4_c01418{font-size:63.987231pt;}
.fs7_c01418{font-size:63.989823pt;}
.fs2_c01418{font-size:63.992480pt;}
.fs3_c01418{font-size:69.319500pt;}
.fs8_c01418{font-size:69.322308pt;}
.fs1_c01418{font-size:69.325186pt;}
.fsb_c01418{font-size:69.343906pt;}
.fs9_c01418{font-size:74.654794pt;}
.fsc_c01418{font-size:74.678052pt;}
.fs5_c01418{font-size:79.984038pt;}
.fsa_c01418{font-size:79.987279pt;}
.fs6_c01418{font-size:90.652250pt;}
.fs0_c01418{font-size:101.321426pt;}
.y0_c01418{bottom:0.000000pt;}
.y163_c01418{bottom:0.723876pt;}
.y162_c01418{bottom:0.724632pt;}
.y161_c01418{bottom:2.483760pt;}
.y160_c01418{bottom:2.916096pt;}
.y15f_c01418{bottom:3.840000pt;}
.y15e_c01418{bottom:20.919908pt;}
.y15d_c01418{bottom:24.957384pt;}
.y15c_c01418{bottom:26.782860pt;}
.y15b_c01418{bottom:31.294960pt;}
.y15a_c01418{bottom:33.029200pt;}
.y159_c01418{bottom:34.421356pt;}
.y158_c01418{bottom:37.140364pt;}
.y157_c01418{bottom:38.446596pt;}
.y156_c01418{bottom:39.805012pt;}
.y155_c01418{bottom:44.248096pt;}
.y154_c01418{bottom:48.263492pt;}
.y153_c01418{bottom:54.342816pt;}
.y152_c01418{bottom:56.709536pt;}
.y151_c01418{bottom:59.543968pt;}
.y150_c01418{bottom:60.916064pt;}
.y14f_c01418{bottom:64.214176pt;}
.y14e_c01418{bottom:65.581792pt;}
.y14d_c01418{bottom:66.538528pt;}
.y14c_c01418{bottom:70.740768pt;}
.y14b_c01418{bottom:72.568160pt;}
.y14a_c01418{bottom:74.506272pt;}
.y149_c01418{bottom:77.788000pt;}
.y148_c01418{bottom:109.494307pt;}
.y147_c01418{bottom:111.326869pt;}
.y146_c01418{bottom:112.369817pt;}
.y145_c01418{bottom:119.443712pt;}
.y144_c01418{bottom:120.720840pt;}
.y143_c01418{bottom:121.616660pt;}
.y142_c01418{bottom:124.245089pt;}
.y141_c01418{bottom:126.886003pt;}
.y140_c01418{bottom:128.250663pt;}
.y13f_c01418{bottom:130.875539pt;}
.y13e_c01418{bottom:134.761068pt;}
.y13d_c01418{bottom:136.572681pt;}
.y13c_c01418{bottom:138.739432pt;}
.y13b_c01418{bottom:141.834023pt;}
.y13a_c01418{bottom:142.672253pt;}
.y139_c01418{bottom:145.270193pt;}
.y138_c01418{bottom:150.493353pt;}
.y137_c01418{bottom:152.369808pt;}
.y136_c01418{bottom:153.864056pt;}
.y135_c01418{bottom:155.001204pt;}
.y134_c01418{bottom:157.914395pt;}
.y133_c01418{bottom:161.620077pt;}
.y132_c01418{bottom:163.874604pt;}
.y131_c01418{bottom:164.961683pt;}
.y130_c01418{bottom:166.861460pt;}
.y12f_c01418{bottom:168.314420pt;}
.y12e_c01418{bottom:171.617525pt;}
.y12d_c01418{bottom:173.094573pt;}
.y12c_c01418{bottom:185.983561pt;}
.y12b_c01418{bottom:188.765001pt;}
.y12a_c01418{bottom:193.963801pt;}
.y129_c01418{bottom:195.191177pt;}
.y128_c01418{bottom:196.737588pt;}
.y127_c01418{bottom:197.979232pt;}
.y126_c01418{bottom:199.579653pt;}
.y125_c01418{bottom:201.131859pt;}
.y124_c01418{bottom:203.126755pt;}
.y123_c01418{bottom:206.383467pt;}
.y122_c01418{bottom:207.885707pt;}
.y121_c01418{bottom:215.623656pt;}
.y120_c01418{bottom:218.835268pt;}
.y11f_c01418{bottom:220.017872pt;}
.y11e_c01418{bottom:222.362689pt;}
.y11d_c01418{bottom:224.708709pt;}
.y11c_c01418{bottom:226.788612pt;}
.y11b_c01418{bottom:228.810951pt;}
.y11a_c01418{bottom:229.575027pt;}
.y119_c01418{bottom:231.565057pt;}
.y118_c01418{bottom:233.579196pt;}
.y117_c01418{bottom:234.412863pt;}
.y116_c01418{bottom:236.769925pt;}
.y115_c01418{bottom:237.980027pt;}
.y114_c01418{bottom:239.563720pt;}
.y113_c01418{bottom:247.618953pt;}
.y112_c01418{bottom:250.935339pt;}
.y111_c01418{bottom:255.783368pt;}
.y110_c01418{bottom:259.080511pt;}
.y10f_c01418{bottom:261.550684pt;}
.y10e_c01418{bottom:262.801569pt;}
.y10d_c01418{bottom:266.071195pt;}
.y10c_c01418{bottom:267.298683pt;}
.y10b_c01418{bottom:269.288703pt;}
.y10a_c01418{bottom:271.714521pt;}
.y109_c01418{bottom:279.914367pt;}
.y108_c01418{bottom:281.047949pt;}
.y107_c01418{bottom:282.562423pt;}
.y106_c01418{bottom:283.734615pt;}
.y105_c01418{bottom:286.399980pt;}
.y104_c01418{bottom:287.889709pt;}
.y103_c01418{bottom:289.078719pt;}
.y102_c01418{bottom:292.028896pt;}
.y101_c01418{bottom:293.594060pt;}
.y100_c01418{bottom:296.274712pt;}
.yff_c01418{bottom:297.389435pt;}
.yfe_c01418{bottom:300.022840pt;}
.yfd_c01418{bottom:302.670329pt;}
.yfc_c01418{bottom:309.182557pt;}
.yfb_c01418{bottom:310.366893pt;}
.yfa_c01418{bottom:312.778827pt;}
.yf9_c01418{bottom:314.051927pt;}
.yf8_c01418{bottom:315.287615pt;}
.yf7_c01418{bottom:319.336629pt;}
.yf6_c01418{bottom:321.011505pt;}
.yf5_c01418{bottom:322.251731pt;}
.yf4_c01418{bottom:325.923952pt;}
.yf3_c01418{bottom:329.164932pt;}
.yf2_c01418{bottom:330.404720pt;}
.yf1_c01418{bottom:331.644508pt;}
.yf0_c01418{bottom:333.622119pt;}
.yef_c01418{bottom:341.239983pt;}
.yee_c01418{bottom:343.265328pt;}
.yed_c01418{bottom:344.086749pt;}
.yec_c01418{bottom:346.091868pt;}
.yeb_c01418{bottom:347.278681pt;}
.yea_c01418{bottom:348.913160pt;}
.ye9_c01418{bottom:354.881284pt;}
.ye8_c01418{bottom:356.120468pt;}
.ye7_c01418{bottom:358.430353pt;}
.ye6_c01418{bottom:361.701333pt;}
.ye5_c01418{bottom:395.441855pt;}
.ye4_c01418{bottom:404.949769pt;}
.ye3_c01418{bottom:407.398295pt;}
.ye2_c01418{bottom:410.254281pt;}
.ye1_c01418{bottom:412.786029pt;}
.ye0_c01418{bottom:414.016797pt;}
.ydf_c01418{bottom:416.837832pt;}
.yde_c01418{bottom:418.499971pt;}
.ydd_c01418{bottom:419.317537pt;}
.ydc_c01418{bottom:421.783665pt;}
.ydb_c01418{bottom:423.034551pt;}
.yda_c01418{bottom:424.629737pt;}
.yd9_c01418{bottom:427.151645pt;}
.yd8_c01418{bottom:428.710315pt;}
.yd7_c01418{bottom:430.368408pt;}
.yd6_c01418{bottom:438.231627pt;}
.yd5_c01418{bottom:439.473489pt;}
.yd4_c01418{bottom:441.804968pt;}
.yd3_c01418{bottom:442.984347pt;}
.yd2_c01418{bottom:444.268521pt;}
.yd1_c01418{bottom:445.790004pt;}
.yd0_c01418{bottom:448.247380pt;}
.ycf_c01418{bottom:451.829741pt;}
.yce_c01418{bottom:453.809549pt;}
.ycd_c01418{bottom:457.798685pt;}
.ycc_c01418{bottom:459.411079pt;}
.ycb_c01418{bottom:461.324084pt;}
.yca_c01418{bottom:469.749352pt;}
.yc9_c01418{bottom:472.111821pt;}
.yc8_c01418{bottom:473.284801pt;}
.yc7_c01418{bottom:474.466419pt;}
.yc6_c01418{bottom:477.589732pt;}
.yc5_c01418{bottom:478.771732pt;}
.yc4_c01418{bottom:479.953349pt;}
.yc3_c01418{bottom:481.476056pt;}
.yc2_c01418{bottom:485.378944pt;}
.yc1_c01418{bottom:487.300577pt;}
.yc0_c01418{bottom:489.616381pt;}
.ybf_c01418{bottom:492.758808pt;}
.ybe_c01418{bottom:500.238661pt;}
.ybd_c01418{bottom:502.669837pt;}
.ybc_c01418{bottom:505.142088pt;}
.ybb_c01418{bottom:506.353231pt;}
.yba_c01418{bottom:507.518324pt;}
.yb9_c01418{bottom:510.841324pt;}
.yb8_c01418{bottom:512.502643pt;}
.yb7_c01418{bottom:514.125347pt;}
.yb6_c01418{bottom:517.823063pt;}
.yb5_c01418{bottom:520.635897pt;}
.yb4_c01418{bottom:522.323456pt;}
.yb3_c01418{bottom:525.153893pt;}
.yb2_c01418{bottom:531.800532pt;}
.yb1_c01418{bottom:534.204528pt;}
.yb0_c01418{bottom:536.462679pt;}
.yaf_c01418{bottom:538.014523pt;}
.yae_c01418{bottom:539.206745pt;}
.yad_c01418{bottom:541.564896pt;}
.yac_c01418{bottom:542.756736pt;}
.yab_c01418{bottom:546.989472pt;}
.yaa_c01418{bottom:549.731953pt;}
.ya9_c01418{bottom:550.526069pt;}
.ya8_c01418{bottom:552.848980pt;}
.ya7_c01418{bottom:555.150625pt;}
.ya6_c01418{bottom:564.276149pt;}
.ya5_c01418{bottom:565.373485pt;}
.ya4_c01418{bottom:566.830709pt;}
.ya3_c01418{bottom:567.975983pt;}
.ya2_c01418{bottom:569.067325pt;}
.ya1_c01418{bottom:571.290459pt;}
.ya0_c01418{bottom:572.440707pt;}
.y9f_c01418{bottom:573.924732pt;}
.y9e_c01418{bottom:576.866965pt;}
.y9d_c01418{bottom:577.971681pt;}
.y9c_c01418{bottom:580.171984pt;}
.y9b_c01418{bottom:581.287395pt;}
.y9a_c01418{bottom:582.406304pt;}
.y99_c01418{bottom:584.597716pt;}
.y98_c01418{bottom:586.106048pt;}
.y97_c01418{bottom:595.310887pt;}
.y96_c01418{bottom:596.913440pt;}
.y95_c01418{bottom:600.922639pt;}
.y94_c01418{bottom:603.722501pt;}
.y93_c01418{bottom:606.114059pt;}
.y92_c01418{bottom:607.272992pt;}
.y91_c01418{bottom:608.156897pt;}
.y90_c01418{bottom:609.285108pt;}
.y8f_c01418{bottom:610.896299pt;}
.y8e_c01418{bottom:614.905333pt;}
.y8d_c01418{bottom:635.230465pt;}
.y8c_c01418{bottom:639.507852pt;}
.y8b_c01418{bottom:641.843799pt;}
.y8a_c01418{bottom:643.025559pt;}
.y89_c01418{bottom:644.946732pt;}
.y88_c01418{bottom:646.898572pt;}
.y87_c01418{bottom:648.441772pt;}
.y86_c01418{bottom:650.001879pt;}
.y85_c01418{bottom:659.011432pt;}
.y84_c01418{bottom:660.279905pt;}
.y83_c01418{bottom:661.918548pt;}
.y82_c01418{bottom:665.955423pt;}
.y81_c01418{bottom:668.000925pt;}
.y80_c01418{bottom:671.757120pt;}
.y7f_c01418{bottom:673.381043pt;}
.y7e_c01418{bottom:675.832500pt;}
.y7d_c01418{bottom:680.734347pt;}
.y7c_c01418{bottom:681.914931pt;}
.y7b_c01418{bottom:689.844171pt;}
.y7a_c01418{bottom:691.160051pt;}
.y79_c01418{bottom:692.867843pt;}
.y78_c01418{bottom:693.723232pt;}
.y77_c01418{bottom:696.745624pt;}
.y76_c01418{bottom:697.590987pt;}
.y75_c01418{bottom:699.334508pt;}
.y74_c01418{bottom:701.447383pt;}
.y73_c01418{bottom:703.997657pt;}
.y72_c01418{bottom:708.748000pt;}
.y71_c01418{bottom:711.312887pt;}
.y70_c01418{bottom:714.312135pt;}
.y6f_c01418{bottom:724.262984pt;}
.y6e_c01418{bottom:725.503753pt;}
.y6d_c01418{bottom:729.933139pt;}
.y6c_c01418{bottom:731.491448pt;}
.y6b_c01418{bottom:732.671792pt;}
.y6a_c01418{bottom:734.282687pt;}
.y69_c01418{bottom:736.254159pt;}
.y68_c01418{bottom:738.274483pt;}
.y67_c01418{bottom:739.846657pt;}
.y66_c01418{bottom:742.285264pt;}
.y65_c01418{bottom:746.222661pt;}
.y64_c01418{bottom:755.173216pt;}
.y63_c01418{bottom:756.726016pt;}
.y62_c01418{bottom:760.214923pt;}
.y61_c01418{bottom:762.154123pt;}
.y60_c01418{bottom:764.915563pt;}
.y5f_c01418{bottom:766.491029pt;}
.y5e_c01418{bottom:770.785696pt;}
.y5d_c01418{bottom:772.714123pt;}
.y5c_c01418{bottom:774.616469pt;}
.y5b_c01418{bottom:776.983456pt;}
.y5a_c01418{bottom:778.131456pt;}
.y59_c01418{bottom:785.492339pt;}
.y58_c01418{bottom:788.701700pt;}
.y57_c01418{bottom:790.249823pt;}
.y56_c01418{bottom:791.864291pt;}
.y55_c01418{bottom:794.635796pt;}
.y54_c01418{bottom:795.886592pt;}
.y53_c01418{bottom:798.682577pt;}
.y52_c01418{bottom:800.679649pt;}
.y51_c01418{bottom:802.271397pt;}
.y50_c01418{bottom:805.890936pt;}
.y4f_c01418{bottom:809.089525pt;}
.y4e_c01418{bottom:816.918444pt;}
.y4d_c01418{bottom:818.867244pt;}
.y4c_c01418{bottom:821.200471pt;}
.y4b_c01418{bottom:822.303991pt;}
.y4a_c01418{bottom:823.110497pt;}
.y49_c01418{bottom:826.227617pt;}
.y48_c01418{bottom:827.029911pt;}
.y47_c01418{bottom:830.564097pt;}
.y46_c01418{bottom:832.063564pt;}
.y45_c01418{bottom:833.335511pt;}
.y44_c01418{bottom:836.715831pt;}
.y43_c01418{bottom:837.550764pt;}
.y42_c01418{bottom:840.522071pt;}
.y41_c01418{bottom:848.223341pt;}
.y40_c01418{bottom:851.840160pt;}
.y3f_c01418{bottom:853.384976pt;}
.y3e_c01418{bottom:855.034269pt;}
.y3d_c01418{bottom:856.244960pt;}
.y3c_c01418{bottom:858.612316pt;}
.y3b_c01418{bottom:859.836927pt;}
.y3a_c01418{bottom:863.025383pt;}
.y39_c01418{bottom:865.430071pt;}
.y38_c01418{bottom:867.430075pt;}
.y37_c01418{bottom:870.925563pt;}
.y36_c01418{bottom:872.195932pt;}
.y35_c01418{bottom:882.551156pt;}
.y34_c01418{bottom:885.290729pt;}
.y33_c01418{bottom:887.267156pt;}
.y32_c01418{bottom:889.563156pt;}
.y31_c01418{bottom:892.262463pt;}
.y30_c01418{bottom:893.492596pt;}
.y2f_c01418{bottom:895.845769pt;}
.y2e_c01418{bottom:897.008756pt;}
.y2d_c01418{bottom:899.325503pt;}
.y2c_c01418{bottom:901.267743pt;}
.y2b_c01418{bottom:902.020543pt;}
.y2a_c01418{bottom:903.629343pt;}
.y29_c01418{bottom:913.664480pt;}
.y28_c01418{bottom:916.746293pt;}
.y27_c01418{bottom:918.354720pt;}
.y26_c01418{bottom:920.689120pt;}
.y25_c01418{bottom:922.221600pt;}
.y24_c01418{bottom:924.522240pt;}
.y23_c01418{bottom:926.122240pt;}
.y22_c01418{bottom:929.217120pt;}
.y21_c01418{bottom:931.220000pt;}
.y20_c01418{bottom:950.385632pt;}
.y1f_c01418{bottom:951.542604pt;}
.y1e_c01418{bottom:952.293732pt;}
.y1d_c01418{bottom:956.192468pt;}
.y1c_c01418{bottom:957.359420pt;}
.y1b_c01418{bottom:959.328820pt;}
.y1a_c01418{bottom:961.685684pt;}
.y19_c01418{bottom:962.462080pt;}
.y18_c01418{bottom:966.338404pt;}
.y17_c01418{bottom:967.478072pt;}
.y16_c01418{bottom:977.304016pt;}
.y15_c01418{bottom:981.330912pt;}
.y14_c01418{bottom:982.927596pt;}
.y13_c01418{bottom:986.923120pt;}
.y12_c01418{bottom:988.515660pt;}
.y11_c01418{bottom:991.768512pt;}
.y10_c01418{bottom:993.318200pt;}
.yf_c01418{bottom:994.888116pt;}
.ye_c01418{bottom:998.920780pt;}
.yd_c01418{bottom:1007.628728pt;}
.yc_c01418{bottom:1008.485272pt;}
.yb_c01418{bottom:1012.075776pt;}
.ya_c01418{bottom:1016.071692pt;}
.y9_c01418{bottom:1019.440612pt;}
.y8_c01418{bottom:1020.463960pt;}
.y7_c01418{bottom:1022.887104pt;}
.y6_c01418{bottom:1025.300168pt;}
.y5_c01418{bottom:1027.240540pt;}
.y4_c01418{bottom:1029.270536pt;}
.y3_c01418{bottom:1030.830820pt;}
.y2_c01418{bottom:1071.245984pt;}
.y1_c01418{bottom:1072.088000pt;}
.hf_c01418{height:15.994375pt;}
.h6_c01418{height:63.987231pt;}
.h9_c01418{height:63.989823pt;}
.h4_c01418{height:63.992480pt;}
.h5_c01418{height:69.319500pt;}
.ha_c01418{height:69.322308pt;}
.h3_c01418{height:69.325186pt;}
.hd_c01418{height:69.343906pt;}
.hb_c01418{height:74.654794pt;}
.he_c01418{height:74.678052pt;}
.h7_c01418{height:79.984038pt;}
.hc_c01418{height:79.987279pt;}
.h8_c01418{height:90.652250pt;}
.h2_c01418{height:101.321426pt;}
.h1_c01418{height:1111.333333pt;}
.h0_c01418{height:1111.440000pt;}
.w0_c01418{width:810.666667pt;}
.x0_c01418{left:0.000000pt;}
.xe5_c01418{left:125.488217pt;}
.xdf_c01418{left:129.602143pt;}
.xd1_c01418{left:130.561304pt;}
.xc3_c01418{left:133.492072pt;}
.xbe_c01418{left:135.941679pt;}
.xb6_c01418{left:136.883913pt;}
.xb0_c01418{left:138.411716pt;}
.xa5_c01418{left:140.917325pt;}
.x95_c01418{left:144.042277pt;}
.x8d_c01418{left:145.481213pt;}
.x7d_c01418{left:147.629179pt;}
.xec_c01418{left:149.769112pt;}
.x70_c01418{left:150.714765pt;}
.x3c_c01418{left:152.439652pt;}
.x5a_c01418{left:155.073087pt;}
.x49_c01418{left:156.745771pt;}
.x27_c01418{left:160.569839pt;}
.xe_c01418{left:164.893747pt;}
.x3_c01418{left:167.172027pt;}
.xca_c01418{left:169.682605pt;}
.xc4_c01418{left:172.080112pt;}
.x6b_c01418{left:180.486455pt;}
.x52_c01418{left:185.303519pt;}
.x7e_c01418{left:187.274364pt;}
.x71_c01418{left:189.678429pt;}
.x32_c01418{left:190.827357pt;}
.x16_c01418{left:193.270679pt;}
.xea_c01418{left:197.710336pt;}
.x28_c01418{left:200.749619pt;}
.x4_c01418{left:205.204915pt;}
.xd9_c01418{left:206.128100pt;}
.xeb_c01418{left:209.707660pt;}
.x8e_c01418{left:212.821736pt;}
.xb1_c01418{left:214.953312pt;}
.xa6_c01418{left:217.410915pt;}
.x29_c01418{left:219.550799pt;}
.x64_c01418{left:220.966423pt;}
.x96_c01418{left:222.528275pt;}
.x3d_c01418{left:226.648036pt;}
.x72_c01418{left:228.219849pt;}
.x9d_c01418{left:229.680213pt;}
.x4a_c01418{left:234.697977pt;}
.xbf_c01418{left:241.001579pt;}
.x53_c01418{left:244.419011pt;}
.x76_c01418{left:245.850667pt;}
.x3e_c01418{left:247.500496pt;}
.xcb_c01418{left:249.035173pt;}
.x5b_c01418{left:251.010543pt;}
.x8f_c01418{left:252.965244pt;}
.x5_c01418{left:254.664147pt;}
.xd2_c01418{left:256.201636pt;}
.x1f_c01418{left:259.412000pt;}
.xf_c01418{left:263.162195pt;}
.x2a_c01418{left:268.058243pt;}
.xc0_c01418{left:270.195152pt;}
.xb7_c01418{left:272.156947pt;}
.x7f_c01418{left:274.272616pt;}
.x33_c01418{left:275.994688pt;}
.x73_c01418{left:276.967053pt;}
.x65_c01418{left:279.193461pt;}
.x97_c01418{left:280.352745pt;}
.x87_c01418{left:282.706852pt;}
.x17_c01418{left:290.073907pt;}
.x54_c01418{left:291.930119pt;}
.xd3_c01418{left:294.400105pt;}
.x6c_c01418{left:297.079069pt;}
.xb8_c01418{left:300.716045pt;}
.x6_c01418{left:301.928131pt;}
.x80_c01418{left:303.596208pt;}
.x18_c01418{left:309.461459pt;}
.x5c_c01418{left:310.415343pt;}
.xa7_c01418{left:315.354212pt;}
.x90_c01418{left:319.876863pt;}
.xb2_c01418{left:321.530251pt;}
.x4b_c01418{left:322.896833pt;}
.x34_c01418{left:324.711947pt;}
.x2b_c01418{left:325.918991pt;}
.x9e_c01418{left:326.878917pt;}
.x98_c01418{left:328.345341pt;}
.x3f_c01418{left:331.923988pt;}
.xcc_c01418{left:335.463325pt;}
.x10_c01418{left:339.173303pt;}
.x55_c01418{left:340.092575pt;}
.x77_c01418{left:343.534219pt;}
.xa8_c01418{left:345.117881pt;}
.x5d_c01418{left:348.714124pt;}
.x88_c01418{left:351.187760pt;}
.x2c_c01418{left:354.964583pt;}
.x7_c01418{left:360.721079pt;}
.x4c_c01418{left:361.684459pt;}
.x40_c01418{left:363.690856pt;}
.xe6_c01418{left:367.046941pt;}
.x19_c01418{left:368.314147pt;}
.xb9_c01418{left:369.380948pt;}
.xac_c01418{left:371.142548pt;}
.xd4_c01418{left:372.899159pt;}
.x9f_c01418{left:375.118629pt;}
.xc1_c01418{left:377.740455pt;}
.x35_c01418{left:383.302948pt;}
.x20_c01418{left:386.728556pt;}
.x81_c01418{left:390.465256pt;}
.x6d_c01418{left:394.030280pt;}
.xc5_c01418{left:395.492476pt;}
.x5e_c01418{left:397.938875pt;}
.x41_c01418{left:401.140036pt;}
.x1_c01418{left:402.538667pt;}
.xa9_c01418{left:403.776756pt;}
.xcd_c01418{left:404.712673pt;}
.x91_c01418{left:407.829211pt;}
.xb3_c01418{left:408.893909pt;}
.x4d_c01418{left:410.361811pt;}
.x74_c01418{left:412.803081pt;}
.x2d_c01418{left:413.735087pt;}
.x1a_c01418{left:417.506387pt;}
.x11_c01418{left:418.417287pt;}
.x8_c01418{left:419.753787pt;}
.x2_c01418{left:422.566619pt;}
.x21_c01418{left:426.688556pt;}
.x78_c01418{left:431.819179pt;}
.xc2_c01418{left:436.497897pt;}
.xb4_c01418{left:438.397839pt;}
.xce_c01418{left:442.392289pt;}
.x9_c01418{left:444.697883pt;}
.x1b_c01418{left:446.659671pt;}
.xda_c01418{left:449.408629pt;}
.xe7_c01418{left:456.306113pt;}
.x12_c01418{left:457.217407pt;}
.x79_c01418{left:460.057579pt;}
.x36_c01418{left:461.002075pt;}
.xa0_c01418{left:462.405921pt;}
.x99_c01418{left:463.860605pt;}
.x82_c01418{left:467.812020pt;}
.xcf_c01418{left:472.298353pt;}
.xe0_c01418{left:476.907037pt;}
.x4e_c01418{left:478.492223pt;}
.x22_c01418{left:484.147040pt;}
.x5f_c01418{left:485.242680pt;}
.x56_c01418{left:486.699155pt;}
.x42_c01418{left:489.406348pt;}
.x37_c01418{left:490.853685pt;}
.x66_c01418{left:492.937283pt;}
.xe8_c01418{left:493.956013pt;}
.xc6_c01418{left:495.447088pt;}
.xe1_c01418{left:505.370545pt;}
.x83_c01418{left:506.832443pt;}
.x43_c01418{left:509.443624pt;}
.x2e_c01418{left:511.872851pt;}
.x60_c01418{left:513.988731pt;}
.xba_c01418{left:515.492008pt;}
.x7a_c01418{left:518.329915pt;}
.x75_c01418{left:519.630813pt;}
.x23_c01418{left:522.420728pt;}
.xa_c01418{left:526.797843pt;}
.xaa_c01418{left:529.845363pt;}
.x67_c01418{left:532.516644pt;}
.x84_c01418{left:537.069896pt;}
.xdb_c01418{left:537.969424pt;}
.x1c_c01418{left:544.027723pt;}
.x89_c01418{left:545.534487pt;}
.xad_c01418{left:546.754760pt;}
.x38_c01418{left:548.545640pt;}
.x61_c01418{left:551.974545pt;}
.xbb_c01418{left:553.643604pt;}
.x13_c01418{left:554.570715pt;}
.x57_c01418{left:555.666119pt;}
.xa1_c01418{left:559.354209pt;}
.x1d_c01418{left:562.782519pt;}
.x92_c01418{left:564.978780pt;}
.x2f_c01418{left:569.215451pt;}
.xe2_c01418{left:574.012501pt;}
.x8a_c01418{left:575.299229pt;}
.x4f_c01418{left:576.483516pt;}
.x39_c01418{left:578.049599pt;}
.x24_c01418{left:580.722368pt;}
.x44_c01418{left:587.293696pt;}
.xa2_c01418{left:590.644221pt;}
.x1e_c01418{left:591.666683pt;}
.x14_c01418{left:593.469403pt;}
.x85_c01418{left:595.497245pt;}
.xdc_c01418{left:596.595775pt;}
.xd0_c01418{left:598.971553pt;}
.x9a_c01418{left:600.870373pt;}
.xe3_c01418{left:602.569249pt;}
.x58_c01418{left:604.097639pt;}
.xd5_c01418{left:606.142356pt;}
.x45_c01418{left:607.436200pt;}
.xc7_c01418{left:609.743344pt;}
.x8b_c01418{left:614.054023pt;}
.x50_c01418{left:615.838573pt;}
.x30_c01418{left:618.576707pt;}
.x25_c01418{left:620.892824pt;}
.xbc_c01418{left:621.903524pt;}
.xb_c01418{left:624.160475pt;}
.x6e_c01418{left:628.053284pt;}
.x9b_c01418{left:630.376708pt;}
.xe9_c01418{left:631.580781pt;}
.x46_c01418{left:634.996612pt;}
.xd6_c01418{left:636.028107pt;}
.xc8_c01418{left:638.558500pt;}
.x68_c01418{left:639.748115pt;}
.xbd_c01418{left:651.927932pt;}
.x51_c01418{left:653.569976pt;}
.xdd_c01418{left:654.950452pt;}
.x3a_c01418{left:655.889917pt;}
.x62_c01418{left:659.899521pt;}
.xe4_c01418{left:661.560865pt;}
.xae_c01418{left:664.354376pt;}
.x6f_c01418{left:667.045823pt;}
.x8c_c01418{left:670.441211pt;}
.xd7_c01418{left:675.297613pt;}
.xa3_c01418{left:676.189257pt;}
.x69_c01418{left:678.535096pt;}
.x93_c01418{left:680.287928pt;}
.x7b_c01418{left:684.238507pt;}
.x31_c01418{left:686.997551pt;}
.x63_c01418{left:690.121375pt;}
.x15_c01418{left:691.600655pt;}
.x47_c01418{left:693.268948pt;}
.x26_c01418{left:697.861112pt;}
.xde_c01418{left:703.182237pt;}
.xa4_c01418{left:706.448301pt;}
.x6a_c01418{left:708.400396pt;}
.xc_c01418{left:711.657923pt;}
.xc9_c01418{left:716.812168pt;}
.x9c_c01418{left:718.666608pt;}
.xb5_c01418{left:719.760648pt;}
.x86_c01418{left:721.438664pt;}
.x7c_c01418{left:723.286087pt;}
.xd8_c01418{left:724.627641pt;}
.x59_c01418{left:730.014263pt;}
.xd_c01418{left:732.539251pt;}
.xaf_c01418{left:733.718276pt;}
.x94_c01418{left:738.127677pt;}
.x48_c01418{left:741.940228pt;}
.x3b_c01418{left:744.020841pt;}
.xab_c01418{left:745.504623pt;}
}





/* 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_c01419 {
    display:none;
  }
  .loading-indicator_c01419.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01419 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_c01419 { 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_c01419" -> "#page-container .classname_c01419")
 */
.pf_c01419 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01419 { /* 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_c01419.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01419 { /* 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_c01419 { /* 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_c01419 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01419 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01419 {overflow:visible;}
  }
}
.c_c01419 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01419 { /* 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_c01419:after { /* webkit #35443 */
  content: '';
}
.t_c01419:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01419 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 */
}
.__c01419 { /* 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_c01419 { /* info for Javascript */
  display:none;
}
.l_c01419 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01419 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01419 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01419: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_c01419 {
    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_c01419.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01419.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_c01419 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01419{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01419;src:url('chunks/assets/font_cfe63ee56e9e10a97d33a3db.woff2')format("woff");}.ff1_c01419{font-family:ff1_c01419;line-height:1.000000;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;}
.me1_c01419{transform:matrix(0.009089,0.000109,-0.003000,0.249982,0,0);-ms-transform:matrix(0.009089,0.000109,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.009089,0.000109,-0.003000,0.249982,0,0);}
.mb8_c01419{transform:matrix(0.009483,0.000199,-0.005249,0.249945,0,0);-ms-transform:matrix(0.009483,0.000199,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.009483,0.000199,-0.005249,0.249945,0,0);}
.mc9_c01419{transform:matrix(0.012480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.012480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.012480,0.000000,0.000000,0.250000,0,0);}
.mdd_c01419{transform:matrix(0.012499,0.000150,-0.003000,0.249982,0,0);-ms-transform:matrix(0.012499,0.000150,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.012499,0.000150,-0.003000,0.249982,0,0);}
.mc6_c01419{transform:matrix(0.019206,0.000403,-0.005249,0.249945,0,0);-ms-transform:matrix(0.019206,0.000403,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.019206,0.000403,-0.005249,0.249945,0,0);}
.m77_c01419{transform:matrix(0.029628,0.000622,-0.005249,0.249945,0,0);-ms-transform:matrix(0.029628,0.000622,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.029628,0.000622,-0.005249,0.249945,0,0);}
.mca_c01419{transform:matrix(0.056775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.056775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.056775,0.000000,0.000000,0.250000,0,0);}
.m2f_c01419{transform:matrix(0.058569,0.000820,-0.003500,0.249976,0,0);-ms-transform:matrix(0.058569,0.000820,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.058569,0.000820,-0.003500,0.249976,0,0);}
.m92_c01419{transform:matrix(0.066249,0.001457,-0.005499,0.249940,0,0);-ms-transform:matrix(0.066249,0.001457,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.066249,0.001457,-0.005499,0.249940,0,0);}
.mdc_c01419{transform:matrix(0.067310,0.000808,-0.003000,0.249982,0,0);-ms-transform:matrix(0.067310,0.000808,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.067310,0.000808,-0.003000,0.249982,0,0);}
.m8c_c01419{transform:matrix(0.127609,0.002807,-0.005499,0.249940,0,0);-ms-transform:matrix(0.127609,0.002807,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.127609,0.002807,-0.005499,0.249940,0,0);}
.m91_c01419{transform:matrix(0.128934,0.002837,-0.005499,0.249940,0,0);-ms-transform:matrix(0.128934,0.002837,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.128934,0.002837,-0.005499,0.249940,0,0);}
.m0_c01419{transform:matrix(0.129650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129650,0.000000,0.000000,0.250000,0,0);}
.m58_c01419{transform:matrix(0.135205,0.002839,-0.005249,0.249945,0,0);-ms-transform:matrix(0.135205,0.002839,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.135205,0.002839,-0.005249,0.249945,0,0);}
.m5a_c01419{transform:matrix(0.135710,0.002850,-0.005249,0.249945,0,0);-ms-transform:matrix(0.135710,0.002850,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.135710,0.002850,-0.005249,0.249945,0,0);}
.m5c_c01419{transform:matrix(0.144748,0.003040,-0.005249,0.249945,0,0);-ms-transform:matrix(0.144748,0.003040,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.144748,0.003040,-0.005249,0.249945,0,0);}
.m59_c01419{transform:matrix(0.144868,0.003042,-0.005249,0.249945,0,0);-ms-transform:matrix(0.144868,0.003042,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.144868,0.003042,-0.005249,0.249945,0,0);}
.m56_c01419{transform:matrix(0.148972,0.003128,-0.005249,0.249945,0,0);-ms-transform:matrix(0.148972,0.003128,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.148972,0.003128,-0.005249,0.249945,0,0);}
.m53_c01419{transform:matrix(0.150737,0.003165,-0.005249,0.249945,0,0);-ms-transform:matrix(0.150737,0.003165,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.150737,0.003165,-0.005249,0.249945,0,0);}
.m5b_c01419{transform:matrix(0.160145,0.003363,-0.005249,0.249945,0,0);-ms-transform:matrix(0.160145,0.003363,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.160145,0.003363,-0.005249,0.249945,0,0);}
.md3_c01419{transform:matrix(0.168765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168765,0.000000,0.000000,0.250000,0,0);}
.md2_c01419{transform:matrix(0.170360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170360,0.000000,0.000000,0.250000,0,0);}
.m90_c01419{transform:matrix(0.171878,0.003781,-0.005499,0.249940,0,0);-ms-transform:matrix(0.171878,0.003781,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.171878,0.003781,-0.005499,0.249940,0,0);}
.m4e_c01419{transform:matrix(0.172522,0.003105,-0.004499,0.249960,0,0);-ms-transform:matrix(0.172522,0.003105,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.172522,0.003105,-0.004499,0.249960,0,0);}
.mce_c01419{transform:matrix(0.174520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174520,0.000000,0.000000,0.250000,0,0);}
.m17_c01419{transform:matrix(0.175170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175170,0.000000,0.000000,0.250000,0,0);}
.m55_c01419{transform:matrix(0.177066,0.003718,-0.005249,0.249945,0,0);-ms-transform:matrix(0.177066,0.003718,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.177066,0.003718,-0.005249,0.249945,0,0);}
.m54_c01419{transform:matrix(0.177806,0.003734,-0.005249,0.249945,0,0);-ms-transform:matrix(0.177806,0.003734,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.177806,0.003734,-0.005249,0.249945,0,0);}
.m57_c01419{transform:matrix(0.179965,0.003779,-0.005249,0.249945,0,0);-ms-transform:matrix(0.179965,0.003779,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.179965,0.003779,-0.005249,0.249945,0,0);}
.m74_c01419{transform:matrix(0.188104,0.003950,-0.005249,0.249945,0,0);-ms-transform:matrix(0.188104,0.003950,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.188104,0.003950,-0.005249,0.249945,0,0);}
.mc7_c01419{transform:matrix(0.190100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190100,0.000000,0.000000,0.250000,0,0);}
.m20_c01419{transform:matrix(0.190126,0.002662,-0.003500,0.249976,0,0);-ms-transform:matrix(0.190126,0.002662,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.190126,0.002662,-0.003500,0.249976,0,0);}
.m2_c01419{transform:matrix(0.195575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195575,0.000000,0.000000,0.250000,0,0);}
.m4b_c01419{transform:matrix(0.197618,0.003557,-0.004499,0.249960,0,0);-ms-transform:matrix(0.197618,0.003557,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.197618,0.003557,-0.004499,0.249960,0,0);}
.m44_c01419{transform:matrix(0.198563,0.003574,-0.004499,0.249960,0,0);-ms-transform:matrix(0.198563,0.003574,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.198563,0.003574,-0.004499,0.249960,0,0);}
.m6e_c01419{transform:matrix(0.200301,0.004206,-0.005249,0.249945,0,0);-ms-transform:matrix(0.200301,0.004206,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.200301,0.004206,-0.005249,0.249945,0,0);}
.ma1_c01419{transform:matrix(0.200701,0.004215,-0.005249,0.249945,0,0);-ms-transform:matrix(0.200701,0.004215,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.200701,0.004215,-0.005249,0.249945,0,0);}
.m41_c01419{transform:matrix(0.200817,0.003615,-0.004499,0.249960,0,0);-ms-transform:matrix(0.200817,0.003615,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.200817,0.003615,-0.004499,0.249960,0,0);}
.mcd_c01419{transform:matrix(0.200870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200870,0.000000,0.000000,0.250000,0,0);}
.m46_c01419{transform:matrix(0.201372,0.003625,-0.004499,0.249960,0,0);-ms-transform:matrix(0.201372,0.003625,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.201372,0.003625,-0.004499,0.249960,0,0);}
.mf2_c01419{transform:matrix(0.202345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202345,0.000000,0.000000,0.250000,0,0);}
.m36_c01419{transform:matrix(0.203522,0.003663,-0.004499,0.249960,0,0);-ms-transform:matrix(0.203522,0.003663,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.203522,0.003663,-0.004499,0.249960,0,0);}
.ma9_c01419{transform:matrix(0.203945,0.004283,-0.005249,0.249945,0,0);-ms-transform:matrix(0.203945,0.004283,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.203945,0.004283,-0.005249,0.249945,0,0);}
.m66_c01419{transform:matrix(0.204390,0.004292,-0.005249,0.249945,0,0);-ms-transform:matrix(0.204390,0.004292,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.204390,0.004292,-0.005249,0.249945,0,0);}
.mae_c01419{transform:matrix(0.205230,0.004310,-0.005249,0.249945,0,0);-ms-transform:matrix(0.205230,0.004310,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.205230,0.004310,-0.005249,0.249945,0,0);}
.m39_c01419{transform:matrix(0.206332,0.003714,-0.004499,0.249960,0,0);-ms-transform:matrix(0.206332,0.003714,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.206332,0.003714,-0.004499,0.249960,0,0);}
.m8f_c01419{transform:matrix(0.206560,0.004544,-0.005499,0.249940,0,0);-ms-transform:matrix(0.206560,0.004544,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.206560,0.004544,-0.005499,0.249940,0,0);}
.md0_c01419{transform:matrix(0.208600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208600,0.000000,0.000000,0.250000,0,0);}
.mef_c01419{transform:matrix(0.210300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210300,0.000000,0.000000,0.250000,0,0);}
.mbf_c01419{transform:matrix(0.210489,0.004420,-0.005249,0.249945,0,0);-ms-transform:matrix(0.210489,0.004420,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.210489,0.004420,-0.005249,0.249945,0,0);}
.m4d_c01419{transform:matrix(0.210791,0.003794,-0.004499,0.249960,0,0);-ms-transform:matrix(0.210791,0.003794,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.210791,0.003794,-0.004499,0.249960,0,0);}
.ma3_c01419{transform:matrix(0.210799,0.004427,-0.005249,0.249945,0,0);-ms-transform:matrix(0.210799,0.004427,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.210799,0.004427,-0.005249,0.249945,0,0);}
.m3a_c01419{transform:matrix(0.210996,0.003798,-0.004499,0.249960,0,0);-ms-transform:matrix(0.210996,0.003798,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.210996,0.003798,-0.004499,0.249960,0,0);}
.m43_c01419{transform:matrix(0.211696,0.003811,-0.004499,0.249960,0,0);-ms-transform:matrix(0.211696,0.003811,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.211696,0.003811,-0.004499,0.249960,0,0);}
.m3f_c01419{transform:matrix(0.212980,0.003834,-0.004499,0.249960,0,0);-ms-transform:matrix(0.212980,0.003834,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.212980,0.003834,-0.004499,0.249960,0,0);}
.m1f_c01419{transform:matrix(0.213154,0.002984,-0.003500,0.249976,0,0);-ms-transform:matrix(0.213154,0.002984,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.213154,0.002984,-0.003500,0.249976,0,0);}
.ma4_c01419{transform:matrix(0.213418,0.004482,-0.005249,0.249945,0,0);-ms-transform:matrix(0.213418,0.004482,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.213418,0.004482,-0.005249,0.249945,0,0);}
.ma7_c01419{transform:matrix(0.214113,0.004496,-0.005249,0.249945,0,0);-ms-transform:matrix(0.214113,0.004496,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.214113,0.004496,-0.005249,0.249945,0,0);}
.m9c_c01419{transform:matrix(0.216418,0.004761,-0.005499,0.249940,0,0);-ms-transform:matrix(0.216418,0.004761,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.216418,0.004761,-0.005499,0.249940,0,0);}
.m6d_c01419{transform:matrix(0.217152,0.004560,-0.005249,0.249945,0,0);-ms-transform:matrix(0.217152,0.004560,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.217152,0.004560,-0.005249,0.249945,0,0);}
.m4f_c01419{transform:matrix(0.217545,0.003916,-0.004499,0.249960,0,0);-ms-transform:matrix(0.217545,0.003916,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.217545,0.003916,-0.004499,0.249960,0,0);}
.m60_c01419{transform:matrix(0.218377,0.004586,-0.005249,0.249945,0,0);-ms-transform:matrix(0.218377,0.004586,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.218377,0.004586,-0.005249,0.249945,0,0);}
.md1_c01419{transform:matrix(0.219090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219090,0.000000,0.000000,0.250000,0,0);}
.mcb_c01419{transform:matrix(0.219435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219435,0.000000,0.000000,0.250000,0,0);}
.mbb_c01419{transform:matrix(0.219672,0.004613,-0.005249,0.249945,0,0);-ms-transform:matrix(0.219672,0.004613,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.219672,0.004613,-0.005249,0.249945,0,0);}
.m1c_c01419{transform:matrix(0.219808,0.003077,-0.003500,0.249976,0,0);-ms-transform:matrix(0.219808,0.003077,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.219808,0.003077,-0.003500,0.249976,0,0);}
.m34_c01419{transform:matrix(0.220584,0.003971,-0.004499,0.249960,0,0);-ms-transform:matrix(0.220584,0.003971,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.220584,0.003971,-0.004499,0.249960,0,0);}
.m4a_c01419{transform:matrix(0.221509,0.003987,-0.004499,0.249960,0,0);-ms-transform:matrix(0.221509,0.003987,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.221509,0.003987,-0.004499,0.249960,0,0);}
.m73_c01419{transform:matrix(0.222206,0.004666,-0.005249,0.249945,0,0);-ms-transform:matrix(0.222206,0.004666,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.222206,0.004666,-0.005249,0.249945,0,0);}
.ma2_c01419{transform:matrix(0.222796,0.004679,-0.005249,0.249945,0,0);-ms-transform:matrix(0.222796,0.004679,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.222796,0.004679,-0.005249,0.249945,0,0);}
.m35_c01419{transform:matrix(0.223524,0.004023,-0.004499,0.249960,0,0);-ms-transform:matrix(0.223524,0.004023,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.223524,0.004023,-0.004499,0.249960,0,0);}
.me0_c01419{transform:matrix(0.225499,0.002706,-0.003000,0.249982,0,0);-ms-transform:matrix(0.225499,0.002706,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.225499,0.002706,-0.003000,0.249982,0,0);}
.mb6_c01419{transform:matrix(0.225750,0.004741,-0.005249,0.249945,0,0);-ms-transform:matrix(0.225750,0.004741,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.225750,0.004741,-0.005249,0.249945,0,0);}
.ma6_c01419{transform:matrix(0.226265,0.004752,-0.005249,0.249945,0,0);-ms-transform:matrix(0.226265,0.004752,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.226265,0.004752,-0.005249,0.249945,0,0);}
.mb2_c01419{transform:matrix(0.226930,0.004766,-0.005249,0.249945,0,0);-ms-transform:matrix(0.226930,0.004766,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.226930,0.004766,-0.005249,0.249945,0,0);}
.m19_c01419{transform:matrix(0.227575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227575,0.000000,0.000000,0.250000,0,0);}
.mc1_c01419{transform:matrix(0.230409,0.004839,-0.005249,0.249945,0,0);-ms-transform:matrix(0.230409,0.004839,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.230409,0.004839,-0.005249,0.249945,0,0);}
.m50_c01419{transform:matrix(0.230703,0.004153,-0.004499,0.249960,0,0);-ms-transform:matrix(0.230703,0.004153,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.230703,0.004153,-0.004499,0.249960,0,0);}
.m15_c01419{transform:matrix(0.230825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230825,0.000000,0.000000,0.250000,0,0);}
.m65_c01419{transform:matrix(0.231654,0.004865,-0.005249,0.249945,0,0);-ms-transform:matrix(0.231654,0.004865,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.231654,0.004865,-0.005249,0.249945,0,0);}
.mbd_c01419{transform:matrix(0.231714,0.004866,-0.005249,0.249945,0,0);-ms-transform:matrix(0.231714,0.004866,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.231714,0.004866,-0.005249,0.249945,0,0);}
.m49_c01419{transform:matrix(0.232832,0.004191,-0.004499,0.249960,0,0);-ms-transform:matrix(0.232832,0.004191,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.232832,0.004191,-0.004499,0.249960,0,0);}
.m51_c01419{transform:matrix(0.232857,0.004191,-0.004499,0.249960,0,0);-ms-transform:matrix(0.232857,0.004191,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.232857,0.004191,-0.004499,0.249960,0,0);}
.m8b_c01419{transform:matrix(0.235208,0.005175,-0.005499,0.249940,0,0);-ms-transform:matrix(0.235208,0.005175,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.235208,0.005175,-0.005499,0.249940,0,0);}
.mdb_c01419{transform:matrix(0.237683,0.002852,-0.003000,0.249982,0,0);-ms-transform:matrix(0.237683,0.002852,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.237683,0.002852,-0.003000,0.249982,0,0);}
.m24_c01419{transform:matrix(0.238307,0.003336,-0.003500,0.249976,0,0);-ms-transform:matrix(0.238307,0.003336,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.238307,0.003336,-0.003500,0.249976,0,0);}
.m3c_c01419{transform:matrix(0.239241,0.004306,-0.004499,0.249960,0,0);-ms-transform:matrix(0.239241,0.004306,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.239241,0.004306,-0.004499,0.249960,0,0);}
.md5_c01419{transform:matrix(0.239330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239330,0.000000,0.000000,0.250000,0,0);}
.md4_c01419{transform:matrix(0.239510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239510,0.000000,0.000000,0.250000,0,0);}
.m33_c01419{transform:matrix(0.239866,0.004318,-0.004499,0.249960,0,0);-ms-transform:matrix(0.239866,0.004318,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.239866,0.004318,-0.004499,0.249960,0,0);}
.mb4_c01419{transform:matrix(0.240602,0.005053,-0.005249,0.249945,0,0);-ms-transform:matrix(0.240602,0.005053,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.240602,0.005053,-0.005249,0.249945,0,0);}
.mbe_c01419{transform:matrix(0.241392,0.005069,-0.005249,0.249945,0,0);-ms-transform:matrix(0.241392,0.005069,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.241392,0.005069,-0.005249,0.249945,0,0);}
.m37_c01419{transform:matrix(0.242116,0.004358,-0.004499,0.249960,0,0);-ms-transform:matrix(0.242116,0.004358,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.242116,0.004358,-0.004499,0.249960,0,0);}
.mf1_c01419{transform:matrix(0.242235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242235,0.000000,0.000000,0.250000,0,0);}
.mc2_c01419{transform:matrix(0.242452,0.005091,-0.005249,0.249945,0,0);-ms-transform:matrix(0.242452,0.005091,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.242452,0.005091,-0.005249,0.249945,0,0);}
.m81_c01419{transform:matrix(0.242477,0.005092,-0.005249,0.249945,0,0);-ms-transform:matrix(0.242477,0.005092,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.242477,0.005092,-0.005249,0.249945,0,0);}
.m9e_c01419{transform:matrix(0.242531,0.005336,-0.005499,0.249940,0,0);-ms-transform:matrix(0.242531,0.005336,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.242531,0.005336,-0.005499,0.249940,0,0);}
.m8e_c01419{transform:matrix(0.246215,0.005417,-0.005499,0.249940,0,0);-ms-transform:matrix(0.246215,0.005417,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.246215,0.005417,-0.005499,0.249940,0,0);}
.m6a_c01419{transform:matrix(0.247186,0.005191,-0.005249,0.249945,0,0);-ms-transform:matrix(0.247186,0.005191,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.247186,0.005191,-0.005249,0.249945,0,0);}
.m80_c01419{transform:matrix(0.247295,0.005193,-0.005249,0.249945,0,0);-ms-transform:matrix(0.247295,0.005193,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.247295,0.005193,-0.005249,0.249945,0,0);}
.m64_c01419{transform:matrix(0.248870,0.005226,-0.005249,0.249945,0,0);-ms-transform:matrix(0.248870,0.005226,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.248870,0.005226,-0.005249,0.249945,0,0);}
.m52_c01419{transform:matrix(0.249005,0.004482,-0.004499,0.249960,0,0);-ms-transform:matrix(0.249005,0.004482,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.249005,0.004482,-0.004499,0.249960,0,0);}
.mbc_c01419{transform:matrix(0.249010,0.005229,-0.005249,0.249945,0,0);-ms-transform:matrix(0.249010,0.005229,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.249010,0.005229,-0.005249,0.249945,0,0);}
.md9_c01419{transform:matrix(0.249235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249235,0.000000,0.000000,0.250000,0,0);}
.ma0_c01419{transform:matrix(0.251120,0.005274,-0.005249,0.249945,0,0);-ms-transform:matrix(0.251120,0.005274,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.251120,0.005274,-0.005249,0.249945,0,0);}
.m9a_c01419{transform:matrix(0.251594,0.005535,-0.005499,0.249940,0,0);-ms-transform:matrix(0.251594,0.005535,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.251594,0.005535,-0.005499,0.249940,0,0);}
.m72_c01419{transform:matrix(0.252019,0.005292,-0.005249,0.249945,0,0);-ms-transform:matrix(0.252019,0.005292,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.252019,0.005292,-0.005249,0.249945,0,0);}
.m62_c01419{transform:matrix(0.252929,0.005312,-0.005249,0.249945,0,0);-ms-transform:matrix(0.252929,0.005312,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.252929,0.005312,-0.005249,0.249945,0,0);}
.m6c_c01419{transform:matrix(0.253174,0.005317,-0.005249,0.249945,0,0);-ms-transform:matrix(0.253174,0.005317,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.253174,0.005317,-0.005249,0.249945,0,0);}
.m31_c01419{transform:matrix(0.253624,0.004565,-0.004499,0.249960,0,0);-ms-transform:matrix(0.253624,0.004565,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.253624,0.004565,-0.004499,0.249960,0,0);}
.m71_c01419{transform:matrix(0.255344,0.005362,-0.005249,0.249945,0,0);-ms-transform:matrix(0.255344,0.005362,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.255344,0.005362,-0.005249,0.249945,0,0);}
.m13_c01419{transform:matrix(0.255375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255375,0.000000,0.000000,0.250000,0,0);}
.m4c_c01419{transform:matrix(0.255404,0.004597,-0.004499,0.249960,0,0);-ms-transform:matrix(0.255404,0.004597,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.255404,0.004597,-0.004499,0.249960,0,0);}
.m7f_c01419{transform:matrix(0.255729,0.005370,-0.005249,0.249945,0,0);-ms-transform:matrix(0.255729,0.005370,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.255729,0.005370,-0.005249,0.249945,0,0);}
.m76_c01419{transform:matrix(0.256603,0.005389,-0.005249,0.249945,0,0);-ms-transform:matrix(0.256603,0.005389,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.256603,0.005389,-0.005249,0.249945,0,0);}
.m2c_c01419{transform:matrix(0.257560,0.003606,-0.003500,0.249976,0,0);-ms-transform:matrix(0.257560,0.003606,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.257560,0.003606,-0.003500,0.249976,0,0);}
.mf0_c01419{transform:matrix(0.258445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258445,0.000000,0.000000,0.250000,0,0);}
.mb7_c01419{transform:matrix(0.259183,0.005443,-0.005249,0.249945,0,0);-ms-transform:matrix(0.259183,0.005443,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.259183,0.005443,-0.005249,0.249945,0,0);}
.m22_c01419{transform:matrix(0.259845,0.003638,-0.003500,0.249976,0,0);-ms-transform:matrix(0.259845,0.003638,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.259845,0.003638,-0.003500,0.249976,0,0);}
.m38_c01419{transform:matrix(0.262562,0.004726,-0.004499,0.249960,0,0);-ms-transform:matrix(0.262562,0.004726,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.262562,0.004726,-0.004499,0.249960,0,0);}
.m16_c01419{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m9_c01419{transform:matrix(0.264770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264770,0.000000,0.000000,0.250000,0,0);}
.m40_c01419{transform:matrix(0.264842,0.004767,-0.004499,0.249960,0,0);-ms-transform:matrix(0.264842,0.004767,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.264842,0.004767,-0.004499,0.249960,0,0);}
.me5_c01419{transform:matrix(0.265001,0.003180,-0.003000,0.249982,0,0);-ms-transform:matrix(0.265001,0.003180,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.265001,0.003180,-0.003000,0.249982,0,0);}
.mcc_c01419{transform:matrix(0.265200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265200,0.000000,0.000000,0.250000,0,0);}
.m69_c01419{transform:matrix(0.265616,0.005578,-0.005249,0.249945,0,0);-ms-transform:matrix(0.265616,0.005578,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.265616,0.005578,-0.005249,0.249945,0,0);}
.m9d_c01419{transform:matrix(0.266351,0.005860,-0.005499,0.249940,0,0);-ms-transform:matrix(0.266351,0.005860,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.266351,0.005860,-0.005499,0.249940,0,0);}
.me_c01419{transform:matrix(0.267235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267235,0.000000,0.000000,0.250000,0,0);}
.m3d_c01419{transform:matrix(0.269396,0.004849,-0.004499,0.249960,0,0);-ms-transform:matrix(0.269396,0.004849,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.269396,0.004849,-0.004499,0.249960,0,0);}
.m61_c01419{transform:matrix(0.269436,0.005658,-0.005249,0.249945,0,0);-ms-transform:matrix(0.269436,0.005658,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.269436,0.005658,-0.005249,0.249945,0,0);}
.mb3_c01419{transform:matrix(0.271475,0.005701,-0.005249,0.249945,0,0);-ms-transform:matrix(0.271475,0.005701,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.271475,0.005701,-0.005249,0.249945,0,0);}
.mf_c01419{transform:matrix(0.271875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271875,0.000000,0.000000,0.250000,0,0);}
.m29_c01419{transform:matrix(0.272093,0.003809,-0.003500,0.249976,0,0);-ms-transform:matrix(0.272093,0.003809,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.272093,0.003809,-0.003500,0.249976,0,0);}
.ma8_c01419{transform:matrix(0.272925,0.005731,-0.005249,0.249945,0,0);-ms-transform:matrix(0.272925,0.005731,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.272925,0.005731,-0.005249,0.249945,0,0);}
.m2d_c01419{transform:matrix(0.273248,0.003825,-0.003500,0.249976,0,0);-ms-transform:matrix(0.273248,0.003825,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.273248,0.003825,-0.003500,0.249976,0,0);}
.m12_c01419{transform:matrix(0.273330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273330,0.000000,0.000000,0.250000,0,0);}
.m70_c01419{transform:matrix(0.275134,0.005778,-0.005249,0.249945,0,0);-ms-transform:matrix(0.275134,0.005778,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.275134,0.005778,-0.005249,0.249945,0,0);}
.m5f_c01419{transform:matrix(0.275209,0.005779,-0.005249,0.249945,0,0);-ms-transform:matrix(0.275209,0.005779,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.275209,0.005779,-0.005249,0.249945,0,0);}
.md8_c01419{transform:matrix(0.276260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276260,0.000000,0.000000,0.250000,0,0);}
.m1e_c01419{transform:matrix(0.276968,0.003878,-0.003500,0.249976,0,0);-ms-transform:matrix(0.276968,0.003878,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.276968,0.003878,-0.003500,0.249976,0,0);}
.m32_c01419{transform:matrix(0.277870,0.005002,-0.004499,0.249960,0,0);-ms-transform:matrix(0.277870,0.005002,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.277870,0.005002,-0.004499,0.249960,0,0);}
.mdf_c01419{transform:matrix(0.278645,0.003344,-0.003000,0.249982,0,0);-ms-transform:matrix(0.278645,0.003344,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.278645,0.003344,-0.003000,0.249982,0,0);}
.m4_c01419{transform:matrix(0.280590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280590,0.000000,0.000000,0.250000,0,0);}
.ma5_c01419{transform:matrix(0.280793,0.005897,-0.005249,0.249945,0,0);-ms-transform:matrix(0.280793,0.005897,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.280793,0.005897,-0.005249,0.249945,0,0);}
.m6f_c01419{transform:matrix(0.281043,0.005902,-0.005249,0.249945,0,0);-ms-transform:matrix(0.281043,0.005902,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.281043,0.005902,-0.005249,0.249945,0,0);}
.me7_c01419{transform:matrix(0.281945,0.003383,-0.003000,0.249982,0,0);-ms-transform:matrix(0.281945,0.003383,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.281945,0.003383,-0.003000,0.249982,0,0);}
.m6b_c01419{transform:matrix(0.282868,0.005940,-0.005249,0.249945,0,0);-ms-transform:matrix(0.282868,0.005940,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.282868,0.005940,-0.005249,0.249945,0,0);}
.mc8_c01419{transform:matrix(0.284735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284735,0.000000,0.000000,0.250000,0,0);}
.mab_c01419{transform:matrix(0.286342,0.006013,-0.005249,0.249945,0,0);-ms-transform:matrix(0.286342,0.006013,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.286342,0.006013,-0.005249,0.249945,0,0);}
.me2_c01419{transform:matrix(0.286994,0.003444,-0.003000,0.249982,0,0);-ms-transform:matrix(0.286994,0.003444,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.286994,0.003444,-0.003000,0.249982,0,0);}
.mc5_c01419{transform:matrix(0.288716,0.006063,-0.005249,0.249945,0,0);-ms-transform:matrix(0.288716,0.006063,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.288716,0.006063,-0.005249,0.249945,0,0);}
.m11_c01419{transform:matrix(0.289965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289965,0.000000,0.000000,0.250000,0,0);}
.m42_c01419{transform:matrix(0.290948,0.005237,-0.004499,0.249960,0,0);-ms-transform:matrix(0.290948,0.005237,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.290948,0.005237,-0.004499,0.249960,0,0);}
.m3e_c01419{transform:matrix(0.294267,0.005297,-0.004499,0.249960,0,0);-ms-transform:matrix(0.294267,0.005297,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.294267,0.005297,-0.004499,0.249960,0,0);}
.m87_c01419{transform:matrix(0.297378,0.006542,-0.005499,0.249940,0,0);-ms-transform:matrix(0.297378,0.006542,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.297378,0.006542,-0.005499,0.249940,0,0);}
.ma_c01419{transform:matrix(0.301170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301170,0.000000,0.000000,0.250000,0,0);}
.m8a_c01419{transform:matrix(0.303247,0.006671,-0.005499,0.249940,0,0);-ms-transform:matrix(0.303247,0.006671,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.303247,0.006671,-0.005499,0.249940,0,0);}
.m45_c01419{transform:matrix(0.304671,0.005484,-0.004499,0.249960,0,0);-ms-transform:matrix(0.304671,0.005484,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.304671,0.005484,-0.004499,0.249960,0,0);}
.md7_c01419{transform:matrix(0.307440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307440,0.000000,0.000000,0.250000,0,0);}
.m7d_c01419{transform:matrix(0.309112,0.006491,-0.005249,0.249945,0,0);-ms-transform:matrix(0.309112,0.006491,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.309112,0.006491,-0.005249,0.249945,0,0);}
.m84_c01419{transform:matrix(0.310310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310310,0.000000,0.000000,0.250000,0,0);}
.m3_c01419{transform:matrix(0.310600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310600,0.000000,0.000000,0.250000,0,0);}
.m83_c01419{transform:matrix(0.312380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312380,0.000000,0.000000,0.250000,0,0);}
.mc0_c01419{transform:matrix(0.312746,0.006568,-0.005249,0.249945,0,0);-ms-transform:matrix(0.312746,0.006568,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.312746,0.006568,-0.005249,0.249945,0,0);}
.m6_c01419{transform:matrix(0.317210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317210,0.000000,0.000000,0.250000,0,0);}
.m47_c01419{transform:matrix(0.317444,0.005714,-0.004499,0.249960,0,0);-ms-transform:matrix(0.317444,0.005714,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.317444,0.005714,-0.004499,0.249960,0,0);}
.m25_c01419{transform:matrix(0.318564,0.004460,-0.003500,0.249976,0,0);-ms-transform:matrix(0.318564,0.004460,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.318564,0.004460,-0.003500,0.249976,0,0);}
.m68_c01419{transform:matrix(0.319010,0.006699,-0.005249,0.249945,0,0);-ms-transform:matrix(0.319010,0.006699,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.319010,0.006699,-0.005249,0.249945,0,0);}
.mcf_c01419{transform:matrix(0.324240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324240,0.000000,0.000000,0.250000,0,0);}
.m82_c01419{transform:matrix(0.326373,0.006854,-0.005249,0.249945,0,0);-ms-transform:matrix(0.326373,0.006854,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.326373,0.006854,-0.005249,0.249945,0,0);}
.m5d_c01419{transform:matrix(0.328708,0.006903,-0.005249,0.249945,0,0);-ms-transform:matrix(0.328708,0.006903,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.328708,0.006903,-0.005249,0.249945,0,0);}
.mc3_c01419{transform:matrix(0.330287,0.006936,-0.005249,0.249945,0,0);-ms-transform:matrix(0.330287,0.006936,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.330287,0.006936,-0.005249,0.249945,0,0);}
.m2a_c01419{transform:matrix(0.332507,0.004655,-0.003500,0.249976,0,0);-ms-transform:matrix(0.332507,0.004655,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.332507,0.004655,-0.003500,0.249976,0,0);}
.m18_c01419{transform:matrix(0.335800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335800,0.000000,0.000000,0.250000,0,0);}
.mb_c01419{transform:matrix(0.336300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336300,0.000000,0.000000,0.250000,0,0);}
.m14_c01419{transform:matrix(0.338770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338770,0.000000,0.000000,0.250000,0,0);}
.mb1_c01419{transform:matrix(0.340755,0.007156,-0.005249,0.249945,0,0);-ms-transform:matrix(0.340755,0.007156,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.340755,0.007156,-0.005249,0.249945,0,0);}
.m23_c01419{transform:matrix(0.344316,0.004820,-0.003500,0.249976,0,0);-ms-transform:matrix(0.344316,0.004820,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.344316,0.004820,-0.003500,0.249976,0,0);}
.m7_c01419{transform:matrix(0.345680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345680,0.000000,0.000000,0.250000,0,0);}
.md_c01419{transform:matrix(0.347905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347905,0.000000,0.000000,0.250000,0,0);}
.m7a_c01419{transform:matrix(0.352087,0.007394,-0.005249,0.249945,0,0);-ms-transform:matrix(0.352087,0.007394,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.352087,0.007394,-0.005249,0.249945,0,0);}
.me6_c01419{transform:matrix(0.353545,0.004243,-0.003000,0.249982,0,0);-ms-transform:matrix(0.353545,0.004243,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.353545,0.004243,-0.003000,0.249982,0,0);}
.m7b_c01419{transform:matrix(0.354137,0.007437,-0.005249,0.249945,0,0);-ms-transform:matrix(0.354137,0.007437,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.354137,0.007437,-0.005249,0.249945,0,0);}
.m8d_c01419{transform:matrix(0.354309,0.007795,-0.005499,0.249940,0,0);-ms-transform:matrix(0.354309,0.007795,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.354309,0.007795,-0.005499,0.249940,0,0);}
.m5_c01419{transform:matrix(0.357810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357810,0.000000,0.000000,0.250000,0,0);}
.m1_c01419{transform:matrix(0.359530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359530,0.000000,0.000000,0.250000,0,0);}
.mc4_c01419{transform:matrix(0.366359,0.007694,-0.005249,0.249945,0,0);-ms-transform:matrix(0.366359,0.007694,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.366359,0.007694,-0.005249,0.249945,0,0);}
.m28_c01419{transform:matrix(0.373008,0.005222,-0.003500,0.249976,0,0);-ms-transform:matrix(0.373008,0.005222,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.373008,0.005222,-0.003500,0.249976,0,0);}
.me3_c01419{transform:matrix(0.373858,0.004486,-0.003000,0.249982,0,0);-ms-transform:matrix(0.373858,0.004486,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.373858,0.004486,-0.003000,0.249982,0,0);}
.m86_c01419{transform:matrix(0.374624,0.008242,-0.005499,0.249940,0,0);-ms-transform:matrix(0.374624,0.008242,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.374624,0.008242,-0.005499,0.249940,0,0);}
.m27_c01419{transform:matrix(0.375668,0.005259,-0.003500,0.249976,0,0);-ms-transform:matrix(0.375668,0.005259,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.375668,0.005259,-0.003500,0.249976,0,0);}
.m99_c01419{transform:matrix(0.386531,0.008504,-0.005499,0.249940,0,0);-ms-transform:matrix(0.386531,0.008504,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.386531,0.008504,-0.005499,0.249940,0,0);}
.m8_c01419{transform:matrix(0.386820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386820,0.000000,0.000000,0.250000,0,0);}
.m95_c01419{transform:matrix(0.387076,0.008516,-0.005499,0.249940,0,0);-ms-transform:matrix(0.387076,0.008516,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.387076,0.008516,-0.005499,0.249940,0,0);}
.m1d_c01419{transform:matrix(0.387857,0.005430,-0.003500,0.249976,0,0);-ms-transform:matrix(0.387857,0.005430,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.387857,0.005430,-0.003500,0.249976,0,0);}
.mb9_c01419{transform:matrix(0.393643,0.008267,-0.005249,0.249945,0,0);-ms-transform:matrix(0.393643,0.008267,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.393643,0.008267,-0.005249,0.249945,0,0);}
.m63_c01419{transform:matrix(0.394743,0.008290,-0.005249,0.249945,0,0);-ms-transform:matrix(0.394743,0.008290,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.394743,0.008290,-0.005249,0.249945,0,0);}
.m75_c01419{transform:matrix(0.396982,0.008337,-0.005249,0.249945,0,0);-ms-transform:matrix(0.396982,0.008337,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.396982,0.008337,-0.005249,0.249945,0,0);}
.m10_c01419{transform:matrix(0.399930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399930,0.000000,0.000000,0.250000,0,0);}
.m88_c01419{transform:matrix(0.401498,0.008833,-0.005499,0.249940,0,0);-ms-transform:matrix(0.401498,0.008833,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.401498,0.008833,-0.005499,0.249940,0,0);}
.m3b_c01419{transform:matrix(0.402870,0.007252,-0.004499,0.249960,0,0);-ms-transform:matrix(0.402870,0.007252,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.402870,0.007252,-0.004499,0.249960,0,0);}
.m9b_c01419{transform:matrix(0.403997,0.008888,-0.005499,0.249940,0,0);-ms-transform:matrix(0.403997,0.008888,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.403997,0.008888,-0.005499,0.249940,0,0);}
.me8_c01419{transform:matrix(0.405426,0.004865,-0.003000,0.249982,0,0);-ms-transform:matrix(0.405426,0.004865,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.405426,0.004865,-0.003000,0.249982,0,0);}
.m1b_c01419{transform:matrix(0.414709,0.005806,-0.003500,0.249976,0,0);-ms-transform:matrix(0.414709,0.005806,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.414709,0.005806,-0.003500,0.249976,0,0);}
.me4_c01419{transform:matrix(0.416545,0.004999,-0.003000,0.249982,0,0);-ms-transform:matrix(0.416545,0.004999,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.416545,0.004999,-0.003000,0.249982,0,0);}
.m7c_c01419{transform:matrix(0.418238,0.008783,-0.005249,0.249945,0,0);-ms-transform:matrix(0.418238,0.008783,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.418238,0.008783,-0.005249,0.249945,0,0);}
.mac_c01419{transform:matrix(0.422577,0.008874,-0.005249,0.249945,0,0);-ms-transform:matrix(0.422577,0.008874,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.422577,0.008874,-0.005249,0.249945,0,0);}
.m5e_c01419{transform:matrix(0.430490,0.009040,-0.005249,0.249945,0,0);-ms-transform:matrix(0.430490,0.009040,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.430490,0.009040,-0.005249,0.249945,0,0);}
.mee_c01419{transform:matrix(0.440265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440265,0.000000,0.000000,0.250000,0,0);}
.m96_c01419{transform:matrix(0.445327,0.009797,-0.005499,0.249940,0,0);-ms-transform:matrix(0.445327,0.009797,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.445327,0.009797,-0.005499,0.249940,0,0);}
.mb5_c01419{transform:matrix(0.448781,0.009424,-0.005249,0.249945,0,0);-ms-transform:matrix(0.448781,0.009424,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.448781,0.009424,-0.005249,0.249945,0,0);}
.m98_c01419{transform:matrix(0.449986,0.009900,-0.005499,0.249940,0,0);-ms-transform:matrix(0.449986,0.009900,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.449986,0.009900,-0.005499,0.249940,0,0);}
.mea_c01419{transform:matrix(0.458590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458590,0.000000,0.000000,0.250000,0,0);}
.m2e_c01419{transform:matrix(0.460960,0.006453,-0.003500,0.249976,0,0);-ms-transform:matrix(0.460960,0.006453,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.460960,0.006453,-0.003500,0.249976,0,0);}
.mba_c01419{transform:matrix(0.462933,0.009722,-0.005249,0.249945,0,0);-ms-transform:matrix(0.462933,0.009722,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.462933,0.009722,-0.005249,0.249945,0,0);}
.md6_c01419{transform:matrix(0.472740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472740,0.000000,0.000000,0.250000,0,0);}
.m30_c01419{transform:matrix(0.475728,0.008563,-0.004499,0.249960,0,0);-ms-transform:matrix(0.475728,0.008563,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.475728,0.008563,-0.004499,0.249960,0,0);}
.m26_c01419{transform:matrix(0.481838,0.006746,-0.003500,0.249976,0,0);-ms-transform:matrix(0.481838,0.006746,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.481838,0.006746,-0.003500,0.249976,0,0);}
.m78_c01419{transform:matrix(0.502479,0.010552,-0.005249,0.249945,0,0);-ms-transform:matrix(0.502479,0.010552,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.502479,0.010552,-0.005249,0.249945,0,0);}
.me9_c01419{transform:matrix(0.523137,0.006278,-0.003000,0.249982,0,0);-ms-transform:matrix(0.523137,0.006278,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.523137,0.006278,-0.003000,0.249982,0,0);}
.m79_c01419{transform:matrix(0.523570,0.010995,-0.005249,0.249945,0,0);-ms-transform:matrix(0.523570,0.010995,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.523570,0.010995,-0.005249,0.249945,0,0);}
.m94_c01419{transform:matrix(0.527692,0.011609,-0.005499,0.249940,0,0);-ms-transform:matrix(0.527692,0.011609,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.527692,0.011609,-0.005499,0.249940,0,0);}
.mde_c01419{transform:matrix(0.553045,0.006637,-0.003000,0.249982,0,0);-ms-transform:matrix(0.553045,0.006637,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.553045,0.006637,-0.003000,0.249982,0,0);}
.maf_c01419{transform:matrix(0.565700,0.011880,-0.005249,0.249945,0,0);-ms-transform:matrix(0.565700,0.011880,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.565700,0.011880,-0.005249,0.249945,0,0);}
.m7e_c01419{transform:matrix(0.581817,0.012218,-0.005249,0.249945,0,0);-ms-transform:matrix(0.581817,0.012218,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.581817,0.012218,-0.005249,0.249945,0,0);}
.m21_c01419{transform:matrix(0.599891,0.008398,-0.003500,0.249976,0,0);-ms-transform:matrix(0.599891,0.008398,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.599891,0.008398,-0.003500,0.249976,0,0);}
.m67_c01419{transform:matrix(0.605252,0.012710,-0.005249,0.249945,0,0);-ms-transform:matrix(0.605252,0.012710,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.605252,0.012710,-0.005249,0.249945,0,0);}
.m2b_c01419{transform:matrix(0.610925,0.008553,-0.003500,0.249976,0,0);-ms-transform:matrix(0.610925,0.008553,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.610925,0.008553,-0.003500,0.249976,0,0);}
.m89_c01419{transform:matrix(0.694342,0.015276,-0.005499,0.249940,0,0);-ms-transform:matrix(0.694342,0.015276,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.694342,0.015276,-0.005499,0.249940,0,0);}
.m85_c01419{transform:matrix(0.711768,0.015659,-0.005499,0.249940,0,0);-ms-transform:matrix(0.711768,0.015659,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.711768,0.015659,-0.005499,0.249940,0,0);}
.maa_c01419{transform:matrix(0.737167,0.015481,-0.005249,0.249945,0,0);-ms-transform:matrix(0.737167,0.015481,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.737167,0.015481,-0.005249,0.249945,0,0);}
.mb0_c01419{transform:matrix(0.744361,0.015632,-0.005249,0.249945,0,0);-ms-transform:matrix(0.744361,0.015632,-0.005249,0.249945,0,0);-webkit-transform:matrix(0.744361,0.015632,-0.005249,0.249945,0,0);}
.m48_c01419{transform:matrix(0.752053,0.013537,-0.004499,0.249960,0,0);-ms-transform:matrix(0.752053,0.013537,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.752053,0.013537,-0.004499,0.249960,0,0);}
.mda_c01419{transform:matrix(0.760385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.760385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.760385,0.000000,0.000000,0.250000,0,0);}
.m93_c01419{transform:matrix(0.805345,0.017718,-0.005499,0.249940,0,0);-ms-transform:matrix(0.805345,0.017718,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.805345,0.017718,-0.005499,0.249940,0,0);}
.mc_c01419{transform:matrix(0.823990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.823990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.823990,0.000000,0.000000,0.250000,0,0);}
.med_c01419{transform:matrix(0.899565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.899565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.899565,0.000000,0.000000,0.250000,0,0);}
.m9f_c01419{transform:matrix(0.933184,0.020530,-0.005499,0.249940,0,0);-ms-transform:matrix(0.933184,0.020530,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.933184,0.020530,-0.005499,0.249940,0,0);}
.m97_c01419{transform:matrix(0.953204,0.020970,-0.005499,0.249940,0,0);-ms-transform:matrix(0.953204,0.020970,-0.005499,0.249940,0,0);-webkit-transform:matrix(0.953204,0.020970,-0.005499,0.249940,0,0);}
.m1a_c01419{transform:matrix(1.020110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.020110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.020110,0.000000,0.000000,0.250000,0,0);}
.meb_c01419{transform:matrix(1.128155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.128155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.128155,0.000000,0.000000,0.250000,0,0);}
.mad_c01419{transform:matrix(1.252994,0.026313,-0.005249,0.249945,0,0);-ms-transform:matrix(1.252994,0.026313,-0.005249,0.249945,0,0);-webkit-transform:matrix(1.252994,0.026313,-0.005249,0.249945,0,0);}
.mec_c01419{transform:matrix(1.574680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.574680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.574680,0.000000,0.000000,0.250000,0,0);}
.v0_c01419{vertical-align:0.000000px;}
.ls0_c01419{letter-spacing:0.000000px;}
.sc__c01419{text-shadow:none;}
.sc0_c01419{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__c01419{-webkit-text-stroke:0px transparent;}
.sc0_c01419{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01419{word-spacing:0.000000px;}
.fc0_c01419{color:transparent;}
.fs4_c01419{font-size:18.000000px;}
.fs1_c01419{font-size:48.000000px;}
.fs13_c01419{font-size:54.000000px;}
.fs2_c01419{font-size:66.000000px;}
.fs6_c01419{font-size:72.007056px;}
.fs11_c01419{font-size:78.000000px;}
.fs5_c01419{font-size:78.007644px;}
.fsb_c01419{font-size:78.017197px;}
.fs3_c01419{font-size:84.000000px;}
.fs15_c01419{font-size:84.006048px;}
.fs7_c01419{font-size:84.013607px;}
.fsc_c01419{font-size:84.018520px;}
.fse_c01419{font-size:84.020326px;}
.fs8_c01419{font-size:90.014579px;}
.fsd_c01419{font-size:90.019843px;}
.fs0_c01419{font-size:96.000000px;}
.fs9_c01419{font-size:96.015551px;}
.fs10_c01419{font-size:96.021166px;}
.fs14_c01419{font-size:108.007776px;}
.fsf_c01419{font-size:114.027585px;}
.fs12_c01419{font-size:120.000000px;}
.fsa_c01419{font-size:138.030426px;}
.fs16_c01419{font-size:150.000000px;}
.y0_c01419{bottom:0.000000px;}
.ydc_c01419{bottom:185.410500px;}
.ydb_c01419{bottom:224.878500px;}
.yda_c01419{bottom:339.537594px;}
.yd9_c01419{bottom:340.514940px;}
.yd8_c01419{bottom:340.819356px;}
.yd7_c01419{bottom:341.769846px;}
.yd6_c01419{bottom:342.239880px;}
.yd5_c01419{bottom:343.273530px;}
.yd4_c01419{bottom:343.703532px;}
.yd3_c01419{bottom:344.274078px;}
.yd2_c01419{bottom:344.674488px;}
.yd1_c01419{bottom:344.791200px;}
.yd0_c01419{bottom:365.107098px;}
.ycf_c01419{bottom:365.490480px;}
.yce_c01419{bottom:366.513816px;}
.ycd_c01419{bottom:366.650202px;}
.ycc_c01419{bottom:369.100128px;}
.ycb_c01419{bottom:370.690500px;}
.yca_c01419{bottom:436.330500px;}
.yc9_c01419{bottom:473.536500px;}
.yc8_c01419{bottom:481.291500px;}
.yc7_c01419{bottom:481.632000px;}
.yc6_c01419{bottom:482.241000px;}
.yc5_c01419{bottom:482.499000px;}
.yc4_c01419{bottom:482.907000px;}
.yc3_c01419{bottom:483.664500px;}
.yc2_c01419{bottom:484.059000px;}
.yc1_c01419{bottom:484.642500px;}
.yc0_c01419{bottom:485.418000px;}
.ybf_c01419{bottom:486.100500px;}
.ybd_c01419{bottom:486.541500px;}
.ybe_c01419{bottom:486.546000px;}
.ybb_c01419{bottom:505.094895px;}
.ybc_c01419{bottom:507.954000px;}
.yba_c01419{bottom:511.423432px;}
.yb9_c01419{bottom:512.983806px;}
.yb8_c01419{bottom:514.447785px;}
.yb7_c01419{bottom:515.943098px;}
.yb6_c01419{bottom:518.787004px;}
.yb5_c01419{bottom:520.651846px;}
.yb4_c01419{bottom:522.022537px;}
.yb3_c01419{bottom:522.886753px;}
.yb2_c01419{bottom:523.881249px;}
.yb1_c01419{bottom:525.784500px;}
.yb0_c01419{bottom:526.801596px;}
.yaf_c01419{bottom:528.932938px;}
.yae_c01419{bottom:547.328557px;}
.yad_c01419{bottom:548.409886px;}
.yac_c01419{bottom:549.545212px;}
.yab_c01419{bottom:550.285558px;}
.yaa_c01419{bottom:550.806128px;}
.ya9_c01419{bottom:551.992213px;}
.ya8_c01419{bottom:552.505962px;}
.ya7_c01419{bottom:552.817812px;}
.ya6_c01419{bottom:553.197985px;}
.ya5_c01419{bottom:554.244904px;}
.ya4_c01419{bottom:554.567863px;}
.ya3_c01419{bottom:554.906598px;}
.ya2_c01419{bottom:555.710136px;}
.ya1_c01419{bottom:555.924762px;}
.ya0_c01419{bottom:579.424603px;}
.y9f_c01419{bottom:580.991445px;}
.y9e_c01419{bottom:583.604559px;}
.y9d_c01419{bottom:584.671117px;}
.y9c_c01419{bottom:586.279539px;}
.y9b_c01419{bottom:588.183210px;}
.y9a_c01419{bottom:589.194581px;}
.y99_c01419{bottom:590.064169px;}
.y98_c01419{bottom:590.993357px;}
.y97_c01419{bottom:591.838470px;}
.y96_c01419{bottom:595.771623px;}
.y95_c01419{bottom:596.709000px;}
.y94_c01419{bottom:609.997449px;}
.y93_c01419{bottom:611.447400px;}
.y92_c01419{bottom:612.340206px;}
.y91_c01419{bottom:612.568377px;}
.y90_c01419{bottom:613.517469px;}
.y8f_c01419{bottom:615.079038px;}
.y8e_c01419{bottom:615.496530px;}
.y8d_c01419{bottom:616.262133px;}
.y8c_c01419{bottom:616.690176px;}
.y8b_c01419{bottom:616.866453px;}
.y8a_c01419{bottom:617.346786px;}
.y89_c01419{bottom:618.236124px;}
.y88_c01419{bottom:619.615488px;}
.y87_c01419{bottom:619.911258px;}
.y86_c01419{bottom:641.103765px;}
.y85_c01419{bottom:644.393997px;}
.y84_c01419{bottom:645.999876px;}
.y83_c01419{bottom:646.599552px;}
.y82_c01419{bottom:647.618328px;}
.y81_c01419{bottom:648.441612px;}
.y80_c01419{bottom:658.867500px;}
.y79_c01419{bottom:718.753500px;}
.y7f_c01419{bottom:726.422262px;}
.y7e_c01419{bottom:727.779024px;}
.y7d_c01419{bottom:728.830338px;}
.y7c_c01419{bottom:729.433083px;}
.y7b_c01419{bottom:731.050809px;}
.y7a_c01419{bottom:733.926000px;}
.y78_c01419{bottom:792.093639px;}
.y77_c01419{bottom:793.644442px;}
.y76_c01419{bottom:796.577850px;}
.y75_c01419{bottom:798.093504px;}
.y74_c01419{bottom:799.286575px;}
.y73_c01419{bottom:800.847226px;}
.y72_c01419{bottom:802.665075px;}
.y71_c01419{bottom:803.358954px;}
.y70_c01419{bottom:804.306408px;}
.y6f_c01419{bottom:804.990943px;}
.y6e_c01419{bottom:806.486481px;}
.y6d_c01419{bottom:824.232967px;}
.y6c_c01419{bottom:828.163975px;}
.y6b_c01419{bottom:829.276369px;}
.y6a_c01419{bottom:829.737079px;}
.y69_c01419{bottom:830.423646px;}
.y68_c01419{bottom:831.284322px;}
.y67_c01419{bottom:832.355943px;}
.y66_c01419{bottom:833.389740px;}
.y65_c01419{bottom:834.263457px;}
.y64_c01419{bottom:834.938463px;}
.y63_c01419{bottom:835.819204px;}
.y62_c01419{bottom:837.048039px;}
.y61_c01419{bottom:838.244952px;}
.y60_c01419{bottom:838.900038px;}
.y5f_c01419{bottom:839.964969px;}
.y5e_c01419{bottom:867.873267px;}
.y5d_c01419{bottom:868.276540px;}
.y5c_c01419{bottom:869.750979px;}
.y5b_c01419{bottom:870.442939px;}
.y5a_c01419{bottom:871.052608px;}
.y59_c01419{bottom:871.638535px;}
.y58_c01419{bottom:872.934636px;}
.y57_c01419{bottom:873.424465px;}
.y56_c01419{bottom:874.268119px;}
.y55_c01419{bottom:874.868215px;}
.y54_c01419{bottom:875.965276px;}
.y53_c01419{bottom:876.684381px;}
.y52_c01419{bottom:900.366693px;}
.y51_c01419{bottom:902.419138px;}
.y50_c01419{bottom:903.285987px;}
.y4f_c01419{bottom:904.436272px;}
.y4e_c01419{bottom:905.980308px;}
.y4d_c01419{bottom:906.725062px;}
.y4c_c01419{bottom:908.332003px;}
.y4b_c01419{bottom:909.237156px;}
.y4a_c01419{bottom:910.266607px;}
.y49_c01419{bottom:911.800500px;}
.y48_c01419{bottom:936.545145px;}
.y47_c01419{bottom:937.045107px;}
.y46_c01419{bottom:939.344178px;}
.y45_c01419{bottom:940.092738px;}
.y44_c01419{bottom:941.124261px;}
.y43_c01419{bottom:943.529550px;}
.y42_c01419{bottom:944.032578px;}
.y41_c01419{bottom:946.056450px;}
.y40_c01419{bottom:946.669152px;}
.y3f_c01419{bottom:947.472063px;}
.y3e_c01419{bottom:949.240938px;}
.y3d_c01419{bottom:950.131458px;}
.y3c_c01419{bottom:969.945588px;}
.y3b_c01419{bottom:971.947797px;}
.y3a_c01419{bottom:972.954498px;}
.y39_c01419{bottom:974.213526px;}
.y38_c01419{bottom:975.907500px;}
.y37_c01419{bottom:976.595637px;}
.y36_c01419{bottom:977.890416px;}
.y35_c01419{bottom:978.613818px;}
.y34_c01419{bottom:979.554957px;}
.y33_c01419{bottom:980.408958px;}
.y32_c01419{bottom:981.322311px;}
.y31_c01419{bottom:982.264719px;}
.y30_c01419{bottom:1005.456726px;}
.y2f_c01419{bottom:1005.878601px;}
.y2e_c01419{bottom:1006.883541px;}
.y2d_c01419{bottom:1007.986329px;}
.y2c_c01419{bottom:1008.527706px;}
.y2b_c01419{bottom:1009.672830px;}
.y2a_c01419{bottom:1010.334033px;}
.y29_c01419{bottom:1011.728880px;}
.y28_c01419{bottom:1012.856400px;}
.y27_c01419{bottom:1013.900706px;}
.y26_c01419{bottom:1015.375500px;}
.y25_c01419{bottom:1043.894244px;}
.y24_c01419{bottom:1045.320138px;}
.y23_c01419{bottom:1046.381097px;}
.y22_c01419{bottom:1046.914023px;}
.y21_c01419{bottom:1047.810603px;}
.y20_c01419{bottom:1048.342311px;}
.y1f_c01419{bottom:1049.195502px;}
.y1e_c01419{bottom:1049.795529px;}
.y1d_c01419{bottom:1050.952707px;}
.y1c_c01419{bottom:1051.359603px;}
.y1b_c01419{bottom:1051.649982px;}
.y1a_c01419{bottom:1076.222901px;}
.y19_c01419{bottom:1077.769215px;}
.y18_c01419{bottom:1078.037952px;}
.y17_c01419{bottom:1079.003028px;}
.y16_c01419{bottom:1079.657388px;}
.y15_c01419{bottom:1080.219663px;}
.y14_c01419{bottom:1081.775574px;}
.y13_c01419{bottom:1082.001723px;}
.y12_c01419{bottom:1082.495685px;}
.y11_c01419{bottom:1083.619500px;}
.y10_c01419{bottom:1110.511500px;}
.yf_c01419{bottom:1117.033500px;}
.ye_c01419{bottom:1117.615500px;}
.yd_c01419{bottom:1117.890000px;}
.yc_c01419{bottom:1118.293500px;}
.yb_c01419{bottom:1119.069000px;}
.ya_c01419{bottom:1119.478500px;}
.y9_c01419{bottom:1120.471500px;}
.y8_c01419{bottom:1120.864500px;}
.y7_c01419{bottom:1121.901000px;}
.y6_c01419{bottom:1122.031500px;}
.y5_c01419{bottom:1122.661500px;}
.y4_c01419{bottom:1156.680000px;}
.y2_c01419{bottom:1206.090000px;}
.y3_c01419{bottom:1209.600000px;}
.y1_c01419{bottom:1211.494500px;}
.h6_c01419{height:18.000000px;}
.h3_c01419{height:48.000000px;}
.h15_c01419{height:54.000000px;}
.h4_c01419{height:66.000000px;}
.h8_c01419{height:72.007056px;}
.h13_c01419{height:78.000000px;}
.h7_c01419{height:78.007644px;}
.hd_c01419{height:78.017197px;}
.h5_c01419{height:84.000000px;}
.h17_c01419{height:84.006048px;}
.h9_c01419{height:84.013607px;}
.he_c01419{height:84.018520px;}
.h10_c01419{height:84.020326px;}
.ha_c01419{height:90.014579px;}
.hf_c01419{height:90.019843px;}
.h2_c01419{height:96.000000px;}
.hb_c01419{height:96.015551px;}
.h12_c01419{height:96.021166px;}
.h16_c01419{height:108.007776px;}
.h11_c01419{height:114.027585px;}
.h14_c01419{height:120.000000px;}
.hc_c01419{height:138.030426px;}
.h18_c01419{height:150.000000px;}
.h1_c01419{height:1250.250000px;}
.h0_c01419{height:1250.370000px;}
.w0_c01419{width:912.000000px;}
.x0_c01419{left:0.000000px;}
.xa4_c01419{left:31.654500px;}
.x7c_c01419{left:33.984507px;}
.x76_c01419{left:45.085500px;}
.x86_c01419{left:53.058000px;}
.xa1_c01419{left:55.350000px;}
.x7d_c01419{left:56.774028px;}
.x10_c01419{left:66.478500px;}
.x64_c01419{left:71.212107px;}
.xa5_c01419{left:75.663000px;}
.x8f_c01419{left:79.891737px;}
.x51_c01419{left:85.291819px;}
.x23_c01419{left:92.304657px;}
.x36_c01419{left:97.765317px;}
.x90_c01419{left:99.401832px;}
.x3f_c01419{left:103.703529px;}
.x24_c01419{left:114.653472px;}
.x4b_c01419{left:117.204000px;}
.x9b_c01419{left:118.543458px;}
.x65_c01419{left:133.495670px;}
.x11_c01419{left:136.395000px;}
.x5_c01419{left:137.970000px;}
.x40_c01419{left:140.839533px;}
.x37_c01419{left:144.869616px;}
.x25_c01419{left:145.967913px;}
.x12_c01419{left:150.934500px;}
.x2e_c01419{left:152.974500px;}
.x66_c01419{left:162.019374px;}
.x91_c01419{left:172.395141px;}
.x5a_c01419{left:183.477228px;}
.x1a_c01419{left:185.983500px;}
.x38_c01419{left:190.526469px;}
.x67_c01419{left:201.490886px;}
.x92_c01419{left:203.246130px;}
.x41_c01419{left:214.519068px;}
.x9c_c01419{left:219.233542px;}
.xa6_c01419{left:221.586000px;}
.x68_c01419{left:230.388059px;}
.x39_c01419{left:233.219430px;}
.x26_c01419{left:234.946152px;}
.xaf_c01419{left:237.915972px;}
.x4c_c01419{left:239.268000px;}
.x5b_c01419{left:243.331488px;}
.x6_c01419{left:244.350000px;}
.x42_c01419{left:247.954950px;}
.x7_c01419{left:249.210000px;}
.x52_c01419{left:250.381969px;}
.x9d_c01419{left:253.513278px;}
.x13_c01419{left:266.052000px;}
.x7e_c01419{left:268.158339px;}
.x43_c01419{left:273.491196px;}
.xa7_c01419{left:280.005000px;}
.x27_c01419{left:281.127303px;}
.x4d_c01419{left:282.370500px;}
.x87_c01419{left:284.988000px;}
.x2f_c01419{left:292.924500px;}
.x1b_c01419{left:301.539000px;}
.x53_c01419{left:304.969435px;}
.x69_c01419{left:306.161802px;}
.x14_c01419{left:309.720000px;}
.x7f_c01419{left:314.727579px;}
.x3a_c01419{left:316.440933px;}
.x1c_c01419{left:317.692500px;}
.x70_c01419{left:318.757500px;}
.x88_c01419{left:325.231500px;}
.x93_c01419{left:327.790275px;}
.x9e_c01419{left:330.567331px;}
.x28_c01419{left:346.784727px;}
.x8_c01419{left:348.570000px;}
.x30_c01419{left:355.564500px;}
.x44_c01419{left:357.836097px;}
.x4e_c01419{left:358.891500px;}
.x94_c01419{left:362.401051px;}
.xb0_c01419{left:364.388472px;}
.x89_c01419{left:369.478500px;}
.x6a_c01419{left:371.188707px;}
.x80_c01419{left:373.675761px;}
.x45_c01419{left:378.779829px;}
.x3b_c01419{left:381.204111px;}
.x5c_c01419{left:382.576418px;}
.x29_c01419{left:387.657294px;}
.x95_c01419{left:390.757005px;}
.x9_c01419{left:394.470000px;}
.x1_c01419{left:400.140000px;}
.x81_c01419{left:405.818130px;}
.x8a_c01419{left:410.887500px;}
.x3c_c01419{left:415.599369px;}
.x15_c01419{left:419.997000px;}
.x2_c01419{left:422.010000px;}
.x54_c01419{left:426.208387px;}
.x1d_c01419{left:428.829000px;}
.x31_c01419{left:433.056000px;}
.xa_c01419{left:434.430000px;}
.xa8_c01419{left:435.898500px;}
.x96_c01419{left:437.445301px;}
.x71_c01419{left:449.448000px;}
.xb1_c01419{left:450.525972px;}
.x2a_c01419{left:456.628260px;}
.x8b_c01419{left:459.048000px;}
.xa9_c01419{left:461.691000px;}
.xb_c01419{left:465.750000px;}
.x4f_c01419{left:467.881500px;}
.x1e_c01419{left:468.991500px;}
.x5d_c01419{left:477.912402px;}
.x46_c01419{left:478.979502px;}
.x6b_c01419{left:484.097120px;}
.xb2_c01419{left:489.695472px;}
.x9f_c01419{left:492.909052px;}
.x2b_c01419{left:497.587827px;}
.x3d_c01419{left:500.289318px;}
.x1f_c01419{left:515.731500px;}
.x77_c01419{left:518.989500px;}
.x47_c01419{left:521.948358px;}
.x72_c01419{left:522.981000px;}
.x82_c01419{left:525.981423px;}
.xc_c01419{left:529.740000px;}
.x5e_c01419{left:531.514536px;}
.x32_c01419{left:533.407500px;}
.x55_c01419{left:544.023615px;}
.x97_c01419{left:545.233918px;}
.x73_c01419{left:550.378500px;}
.x16_c01419{left:551.677500px;}
.x48_c01419{left:553.114983px;}
.x78_c01419{left:556.411500px;}
.x33_c01419{left:563.484000px;}
.xad_c01419{left:566.142000px;}
.xb3_c01419{left:568.902972px;}
.x5f_c01419{left:574.571449px;}
.xae_c01419{left:577.507500px;}
.x2c_c01419{left:579.157461px;}
.x20_c01419{left:584.665500px;}
.x98_c01419{left:592.532841px;}
.xb4_c01419{left:594.270972px;}
.xd_c01419{left:595.350000px;}
.x17_c01419{left:596.542500px;}
.x74_c01419{left:598.165500px;}
.x79_c01419{left:602.719500px;}
.x21_c01419{left:603.861000px;}
.x6c_c01419{left:606.346934px;}
.x60_c01419{left:608.908674px;}
.x3e_c01419{left:613.575741px;}
.x83_c01419{left:616.465809px;}
.xb6_c01419{left:621.000000px;}
.x34_c01419{left:624.750000px;}
.x18_c01419{left:627.004500px;}
.x7a_c01419{left:629.977500px;}
.x61_c01419{left:631.919146px;}
.xe_c01419{left:646.380000px;}
.x49_c01419{left:648.914142px;}
.xb8_c01419{left:651.510000px;}
.x56_c01419{left:652.622390px;}
.x75_c01419{left:659.836500px;}
.x50_c01419{left:661.671000px;}
.xaa_c01419{left:663.120000px;}
.x4a_c01419{left:669.770901px;}
.x6d_c01419{left:670.976370px;}
.xb5_c01419{left:675.716472px;}
.x8c_c01419{left:677.079000px;}
.x35_c01419{left:680.580000px;}
.x84_c01419{left:685.152405px;}
.x62_c01419{left:687.534312px;}
.x2d_c01419{left:688.829994px;}
.xac_c01419{left:689.850000px;}
.x19_c01419{left:691.614000px;}
.xa2_c01419{left:695.250000px;}
.xf_c01419{left:703.620000px;}
.x6e_c01419{left:704.700000px;}
.xab_c01419{left:706.050000px;}
.xb7_c01419{left:708.210000px;}
.xb9_c01419{left:710.370000px;}
.x22_c01419{left:714.312000px;}
.x57_c01419{left:715.586119px;}
.x3_c01419{left:755.460000px;}
.x99_c01419{left:763.100657px;}
.x85_c01419{left:796.694982px;}
.x8d_c01419{left:801.513000px;}
.x4_c01419{left:807.840000px;}
.xa3_c01419{left:828.090000px;}
.x6f_c01419{left:847.260000px;}
.x58_c01419{left:849.682780px;}
.x7b_c01419{left:852.528000px;}
.x9a_c01419{left:861.470320px;}
.xa0_c01419{left:866.998741px;}
.x8e_c01419{left:876.124500px;}
.x63_c01419{left:884.086438px;}
.x59_c01419{left:886.393998px;}
@media print{
.v0_c01419{vertical-align:0.000000pt;}
.ls0_c01419{letter-spacing:0.000000pt;}
.ws0_c01419{word-spacing:0.000000pt;}
.fs4_c01419{font-size:16.000000pt;}
.fs1_c01419{font-size:42.666667pt;}
.fs13_c01419{font-size:48.000000pt;}
.fs2_c01419{font-size:58.666667pt;}
.fs6_c01419{font-size:64.006272pt;}
.fs11_c01419{font-size:69.333333pt;}
.fs5_c01419{font-size:69.340128pt;}
.fsb_c01419{font-size:69.348620pt;}
.fs3_c01419{font-size:74.666667pt;}
.fs15_c01419{font-size:74.672042pt;}
.fs7_c01419{font-size:74.678762pt;}
.fsc_c01419{font-size:74.683129pt;}
.fse_c01419{font-size:74.684734pt;}
.fs8_c01419{font-size:80.012959pt;}
.fsd_c01419{font-size:80.017638pt;}
.fs0_c01419{font-size:85.333333pt;}
.fs9_c01419{font-size:85.347156pt;}
.fs10_c01419{font-size:85.352147pt;}
.fs14_c01419{font-size:96.006912pt;}
.fsf_c01419{font-size:101.357853pt;}
.fs12_c01419{font-size:106.666667pt;}
.fsa_c01419{font-size:122.693712pt;}
.fs16_c01419{font-size:133.333333pt;}
.y0_c01419{bottom:0.000000pt;}
.ydc_c01419{bottom:164.809333pt;}
.ydb_c01419{bottom:199.892000pt;}
.yda_c01419{bottom:301.811195pt;}
.yd9_c01419{bottom:302.679947pt;}
.yd8_c01419{bottom:302.950539pt;}
.yd7_c01419{bottom:303.795419pt;}
.yd6_c01419{bottom:304.213227pt;}
.yd5_c01419{bottom:305.132027pt;}
.yd4_c01419{bottom:305.514251pt;}
.yd3_c01419{bottom:306.021403pt;}
.yd2_c01419{bottom:306.377323pt;}
.yd1_c01419{bottom:306.481067pt;}
.yd0_c01419{bottom:324.539643pt;}
.ycf_c01419{bottom:324.880427pt;}
.yce_c01419{bottom:325.790059pt;}
.ycd_c01419{bottom:325.911291pt;}
.ycc_c01419{bottom:328.089003pt;}
.ycb_c01419{bottom:329.502667pt;}
.yca_c01419{bottom:387.849333pt;}
.yc9_c01419{bottom:420.921333pt;}
.yc8_c01419{bottom:427.814667pt;}
.yc7_c01419{bottom:428.117333pt;}
.yc6_c01419{bottom:428.658667pt;}
.yc5_c01419{bottom:428.888000pt;}
.yc4_c01419{bottom:429.250667pt;}
.yc3_c01419{bottom:429.924000pt;}
.yc2_c01419{bottom:430.274667pt;}
.yc1_c01419{bottom:430.793333pt;}
.yc0_c01419{bottom:431.482667pt;}
.ybf_c01419{bottom:432.089333pt;}
.ybd_c01419{bottom:432.481333pt;}
.ybe_c01419{bottom:432.485333pt;}
.ybb_c01419{bottom:448.973240pt;}
.ybc_c01419{bottom:451.514667pt;}
.yba_c01419{bottom:454.598607pt;}
.yb9_c01419{bottom:455.985605pt;}
.yb8_c01419{bottom:457.286920pt;}
.yb7_c01419{bottom:458.616087pt;}
.yb6_c01419{bottom:461.144004pt;}
.yb5_c01419{bottom:462.801641pt;}
.yb4_c01419{bottom:464.020033pt;}
.yb3_c01419{bottom:464.788225pt;}
.yb2_c01419{bottom:465.672221pt;}
.yb1_c01419{bottom:467.364000pt;}
.yb0_c01419{bottom:468.268085pt;}
.yaf_c01419{bottom:470.162612pt;}
.yae_c01419{bottom:486.514273pt;}
.yad_c01419{bottom:487.475455pt;}
.yac_c01419{bottom:488.484633pt;}
.yab_c01419{bottom:489.142719pt;}
.yaa_c01419{bottom:489.605447pt;}
.ya9_c01419{bottom:490.659745pt;}
.ya8_c01419{bottom:491.116411pt;}
.ya7_c01419{bottom:491.393611pt;}
.ya6_c01419{bottom:491.731543pt;}
.ya5_c01419{bottom:492.662137pt;}
.ya4_c01419{bottom:492.949212pt;}
.ya3_c01419{bottom:493.250309pt;}
.ya2_c01419{bottom:493.964565pt;}
.ya1_c01419{bottom:494.155344pt;}
.ya0_c01419{bottom:515.044092pt;}
.y9f_c01419{bottom:516.436840pt;}
.y9e_c01419{bottom:518.759608pt;}
.y9d_c01419{bottom:519.707660pt;}
.y9c_c01419{bottom:521.137368pt;}
.y9b_c01419{bottom:522.829520pt;}
.y9a_c01419{bottom:523.728516pt;}
.y99_c01419{bottom:524.501484pt;}
.y98_c01419{bottom:525.327428pt;}
.y97_c01419{bottom:526.078640pt;}
.y96_c01419{bottom:529.574776pt;}
.y95_c01419{bottom:530.408000pt;}
.y94_c01419{bottom:542.219955pt;}
.y93_c01419{bottom:543.508800pt;}
.y92_c01419{bottom:544.302405pt;}
.y91_c01419{bottom:544.505224pt;}
.y90_c01419{bottom:545.348861pt;}
.y8f_c01419{bottom:546.736923pt;}
.y8e_c01419{bottom:547.108027pt;}
.y8d_c01419{bottom:547.788563pt;}
.y8c_c01419{bottom:548.169045pt;}
.y8b_c01419{bottom:548.325736pt;}
.y8a_c01419{bottom:548.752699pt;}
.y89_c01419{bottom:549.543221pt;}
.y88_c01419{bottom:550.769323pt;}
.y87_c01419{bottom:551.032229pt;}
.y86_c01419{bottom:569.870013pt;}
.y85_c01419{bottom:572.794664pt;}
.y84_c01419{bottom:574.222112pt;}
.y83_c01419{bottom:574.755157pt;}
.y82_c01419{bottom:575.660736pt;}
.y81_c01419{bottom:576.392544pt;}
.y80_c01419{bottom:585.660000pt;}
.y79_c01419{bottom:638.892000pt;}
.y7f_c01419{bottom:645.708677pt;}
.y7e_c01419{bottom:646.914688pt;}
.y7d_c01419{bottom:647.849189pt;}
.y7c_c01419{bottom:648.384963pt;}
.y7b_c01419{bottom:649.822941pt;}
.y7a_c01419{bottom:652.378667pt;}
.y78_c01419{bottom:704.083235pt;}
.y77_c01419{bottom:705.461727pt;}
.y76_c01419{bottom:708.069200pt;}
.y75_c01419{bottom:709.416448pt;}
.y74_c01419{bottom:710.476956pt;}
.y73_c01419{bottom:711.864201pt;}
.y72_c01419{bottom:713.480067pt;}
.y71_c01419{bottom:714.096848pt;}
.y70_c01419{bottom:714.939029pt;}
.y6f_c01419{bottom:715.547505pt;}
.y6e_c01419{bottom:716.876872pt;}
.y6d_c01419{bottom:732.651527pt;}
.y6c_c01419{bottom:736.145756pt;}
.y6b_c01419{bottom:737.134551pt;}
.y6a_c01419{bottom:737.544071pt;}
.y69_c01419{bottom:738.154352pt;}
.y68_c01419{bottom:738.919397pt;}
.y67_c01419{bottom:739.871949pt;}
.y66_c01419{bottom:740.790880pt;}
.y65_c01419{bottom:741.567517pt;}
.y64_c01419{bottom:742.167523pt;}
.y63_c01419{bottom:742.950404pt;}
.y62_c01419{bottom:744.042701pt;}
.y61_c01419{bottom:745.106624pt;}
.y60_c01419{bottom:745.688923pt;}
.y5f_c01419{bottom:746.635528pt;}
.y5e_c01419{bottom:771.442904pt;}
.y5d_c01419{bottom:771.801369pt;}
.y5c_c01419{bottom:773.111981pt;}
.y5b_c01419{bottom:773.727057pt;}
.y5a_c01419{bottom:774.268985pt;}
.y59_c01419{bottom:774.789809pt;}
.y58_c01419{bottom:775.941899pt;}
.y57_c01419{bottom:776.377303pt;}
.y56_c01419{bottom:777.127217pt;}
.y55_c01419{bottom:777.660636pt;}
.y54_c01419{bottom:778.635801pt;}
.y53_c01419{bottom:779.275005pt;}
.y52_c01419{bottom:800.325949pt;}
.y51_c01419{bottom:802.150345pt;}
.y50_c01419{bottom:802.920877pt;}
.y4f_c01419{bottom:803.943353pt;}
.y4e_c01419{bottom:805.315829pt;}
.y4d_c01419{bottom:805.977833pt;}
.y4c_c01419{bottom:807.406225pt;}
.y4b_c01419{bottom:808.210805pt;}
.y4a_c01419{bottom:809.125873pt;}
.y49_c01419{bottom:810.489333pt;}
.y48_c01419{bottom:832.484573pt;}
.y47_c01419{bottom:832.928984pt;}
.y46_c01419{bottom:834.972603pt;}
.y45_c01419{bottom:835.637989pt;}
.y44_c01419{bottom:836.554899pt;}
.y43_c01419{bottom:838.692933pt;}
.y42_c01419{bottom:839.140069pt;}
.y41_c01419{bottom:840.939067pt;}
.y40_c01419{bottom:841.483691pt;}
.y3f_c01419{bottom:842.197389pt;}
.y3e_c01419{bottom:843.769723pt;}
.y3d_c01419{bottom:844.561296pt;}
.y3c_c01419{bottom:862.173856pt;}
.y3b_c01419{bottom:863.953597pt;}
.y3a_c01419{bottom:864.848443pt;}
.y39_c01419{bottom:865.967579pt;}
.y38_c01419{bottom:867.473333pt;}
.y37_c01419{bottom:868.085011pt;}
.y36_c01419{bottom:869.235925pt;}
.y35_c01419{bottom:869.878949pt;}
.y34_c01419{bottom:870.715517pt;}
.y33_c01419{bottom:871.474629pt;}
.y32_c01419{bottom:872.286499pt;}
.y31_c01419{bottom:873.124195pt;}
.y30_c01419{bottom:893.739312pt;}
.y2f_c01419{bottom:894.114312pt;}
.y2e_c01419{bottom:895.007592pt;}
.y2d_c01419{bottom:895.987848pt;}
.y2c_c01419{bottom:896.469072pt;}
.y2b_c01419{bottom:897.486960pt;}
.y2a_c01419{bottom:898.074696pt;}
.y29_c01419{bottom:899.314560pt;}
.y28_c01419{bottom:900.316800pt;}
.y27_c01419{bottom:901.245072pt;}
.y26_c01419{bottom:902.556000pt;}
.y25_c01419{bottom:927.905995pt;}
.y24_c01419{bottom:929.173456pt;}
.y23_c01419{bottom:930.116531pt;}
.y22_c01419{bottom:930.590243pt;}
.y21_c01419{bottom:931.387203pt;}
.y20_c01419{bottom:931.859832pt;}
.y1f_c01419{bottom:932.618224pt;}
.y1e_c01419{bottom:933.151581pt;}
.y1d_c01419{bottom:934.180184pt;}
.y1c_c01419{bottom:934.541869pt;}
.y1b_c01419{bottom:934.799984pt;}
.y1a_c01419{bottom:956.642579pt;}
.y19_c01419{bottom:958.017080pt;}
.y18_c01419{bottom:958.255957pt;}
.y17_c01419{bottom:959.113803pt;}
.y16_c01419{bottom:959.695456pt;}
.y15_c01419{bottom:960.195256pt;}
.y14_c01419{bottom:961.578288pt;}
.y13_c01419{bottom:961.779309pt;}
.y12_c01419{bottom:962.218387pt;}
.y11_c01419{bottom:963.217333pt;}
.y10_c01419{bottom:987.121333pt;}
.yf_c01419{bottom:992.918667pt;}
.ye_c01419{bottom:993.436000pt;}
.yd_c01419{bottom:993.680000pt;}
.yc_c01419{bottom:994.038667pt;}
.yb_c01419{bottom:994.728000pt;}
.ya_c01419{bottom:995.092000pt;}
.y9_c01419{bottom:995.974667pt;}
.y8_c01419{bottom:996.324000pt;}
.y7_c01419{bottom:997.245333pt;}
.y6_c01419{bottom:997.361333pt;}
.y5_c01419{bottom:997.921333pt;}
.y4_c01419{bottom:1028.160000pt;}
.y2_c01419{bottom:1072.080000pt;}
.y3_c01419{bottom:1075.200000pt;}
.y1_c01419{bottom:1076.884000pt;}
.h6_c01419{height:16.000000pt;}
.h3_c01419{height:42.666667pt;}
.h15_c01419{height:48.000000pt;}
.h4_c01419{height:58.666667pt;}
.h8_c01419{height:64.006272pt;}
.h13_c01419{height:69.333333pt;}
.h7_c01419{height:69.340128pt;}
.hd_c01419{height:69.348620pt;}
.h5_c01419{height:74.666667pt;}
.h17_c01419{height:74.672042pt;}
.h9_c01419{height:74.678762pt;}
.he_c01419{height:74.683129pt;}
.h10_c01419{height:74.684734pt;}
.ha_c01419{height:80.012959pt;}
.hf_c01419{height:80.017638pt;}
.h2_c01419{height:85.333333pt;}
.hb_c01419{height:85.347156pt;}
.h12_c01419{height:85.352147pt;}
.h16_c01419{height:96.006912pt;}
.h11_c01419{height:101.357853pt;}
.h14_c01419{height:106.666667pt;}
.hc_c01419{height:122.693712pt;}
.h18_c01419{height:133.333333pt;}
.h1_c01419{height:1111.333333pt;}
.h0_c01419{height:1111.440000pt;}
.w0_c01419{width:810.666667pt;}
.x0_c01419{left:0.000000pt;}
.xa4_c01419{left:28.137333pt;}
.x7c_c01419{left:30.208451pt;}
.x76_c01419{left:40.076000pt;}
.x86_c01419{left:47.162667pt;}
.xa1_c01419{left:49.200000pt;}
.x7d_c01419{left:50.465803pt;}
.x10_c01419{left:59.092000pt;}
.x64_c01419{left:63.299651pt;}
.xa5_c01419{left:67.256000pt;}
.x8f_c01419{left:71.014877pt;}
.x51_c01419{left:75.814951pt;}
.x23_c01419{left:82.048584pt;}
.x36_c01419{left:86.902504pt;}
.x90_c01419{left:88.357184pt;}
.x3f_c01419{left:92.180915pt;}
.x24_c01419{left:101.914197pt;}
.x4b_c01419{left:104.181333pt;}
.x9b_c01419{left:105.371963pt;}
.x65_c01419{left:118.662817pt;}
.x11_c01419{left:121.240000pt;}
.x5_c01419{left:122.640000pt;}
.x40_c01419{left:125.190696pt;}
.x37_c01419{left:128.772992pt;}
.x25_c01419{left:129.749256pt;}
.x12_c01419{left:134.164000pt;}
.x2e_c01419{left:135.977333pt;}
.x66_c01419{left:144.017221pt;}
.x91_c01419{left:153.240125pt;}
.x5a_c01419{left:163.090869pt;}
.x1a_c01419{left:165.318667pt;}
.x38_c01419{left:169.356861pt;}
.x67_c01419{left:179.103009pt;}
.x92_c01419{left:180.663227pt;}
.x41_c01419{left:190.683616pt;}
.x9c_c01419{left:194.874260pt;}
.xa6_c01419{left:196.965333pt;}
.x68_c01419{left:204.789385pt;}
.x39_c01419{left:207.306160pt;}
.x26_c01419{left:208.841024pt;}
.xaf_c01419{left:211.480864pt;}
.x4c_c01419{left:212.682667pt;}
.x5b_c01419{left:216.294656pt;}
.x6_c01419{left:217.200000pt;}
.x42_c01419{left:220.404400pt;}
.x7_c01419{left:221.520000pt;}
.x52_c01419{left:222.561751pt;}
.x9d_c01419{left:225.345136pt;}
.x13_c01419{left:236.490667pt;}
.x7e_c01419{left:238.362968pt;}
.x43_c01419{left:243.103285pt;}
.xa7_c01419{left:248.893333pt;}
.x27_c01419{left:249.890936pt;}
.x4d_c01419{left:250.996000pt;}
.x87_c01419{left:253.322667pt;}
.x2f_c01419{left:260.377333pt;}
.x1b_c01419{left:268.034667pt;}
.x53_c01419{left:271.083943pt;}
.x69_c01419{left:272.143824pt;}
.x14_c01419{left:275.306667pt;}
.x7f_c01419{left:279.757848pt;}
.x3a_c01419{left:281.280829pt;}
.x1c_c01419{left:282.393333pt;}
.x70_c01419{left:283.340000pt;}
.x88_c01419{left:289.094667pt;}
.x93_c01419{left:291.369133pt;}
.x9e_c01419{left:293.837628pt;}
.x28_c01419{left:308.253091pt;}
.x8_c01419{left:309.840000pt;}
.x30_c01419{left:316.057333pt;}
.x44_c01419{left:318.076531pt;}
.x4e_c01419{left:319.014667pt;}
.x94_c01419{left:322.134268pt;}
.xb0_c01419{left:323.900864pt;}
.x89_c01419{left:328.425333pt;}
.x6a_c01419{left:329.945517pt;}
.x80_c01419{left:332.156232pt;}
.x45_c01419{left:336.693181pt;}
.x3b_c01419{left:338.848099pt;}
.x5c_c01419{left:340.067927pt;}
.x29_c01419{left:344.584261pt;}
.x95_c01419{left:347.339560pt;}
.x9_c01419{left:350.640000pt;}
.x1_c01419{left:355.680000pt;}
.x81_c01419{left:360.727227pt;}
.x8a_c01419{left:365.233333pt;}
.x3c_c01419{left:369.421661pt;}
.x15_c01419{left:373.330667pt;}
.x2_c01419{left:375.120000pt;}
.x54_c01419{left:378.851900pt;}
.x1d_c01419{left:381.181333pt;}
.x31_c01419{left:384.938667pt;}
.xa_c01419{left:386.160000pt;}
.xa8_c01419{left:387.465333pt;}
.x96_c01419{left:388.840268pt;}
.x71_c01419{left:399.509333pt;}
.xb1_c01419{left:400.467531pt;}
.x2a_c01419{left:405.891787pt;}
.x8b_c01419{left:408.042667pt;}
.xa9_c01419{left:410.392000pt;}
.xb_c01419{left:414.000000pt;}
.x4f_c01419{left:415.894667pt;}
.x1e_c01419{left:416.881333pt;}
.x5d_c01419{left:424.811024pt;}
.x46_c01419{left:425.759557pt;}
.x6b_c01419{left:430.308551pt;}
.xb2_c01419{left:435.284864pt;}
.x9f_c01419{left:438.141380pt;}
.x2b_c01419{left:442.300291pt;}
.x3d_c01419{left:444.701616pt;}
.x1f_c01419{left:458.428000pt;}
.x77_c01419{left:461.324000pt;}
.x47_c01419{left:463.954096pt;}
.x72_c01419{left:464.872000pt;}
.x82_c01419{left:467.539043pt;}
.xc_c01419{left:470.880000pt;}
.x5e_c01419{left:472.457365pt;}
.x32_c01419{left:474.140000pt;}
.x55_c01419{left:483.576547pt;}
.x97_c01419{left:484.652372pt;}
.x73_c01419{left:489.225333pt;}
.x16_c01419{left:490.380000pt;}
.x48_c01419{left:491.657763pt;}
.x78_c01419{left:494.588000pt;}
.x33_c01419{left:500.874667pt;}
.xad_c01419{left:503.237333pt;}
.xb3_c01419{left:505.691531pt;}
.x5f_c01419{left:510.730177pt;}
.xae_c01419{left:513.340000pt;}
.x2c_c01419{left:514.806632pt;}
.x20_c01419{left:519.702667pt;}
.x98_c01419{left:526.695859pt;}
.xb4_c01419{left:528.240864pt;}
.xd_c01419{left:529.200000pt;}
.x17_c01419{left:530.260000pt;}
.x74_c01419{left:531.702667pt;}
.x79_c01419{left:535.750667pt;}
.x21_c01419{left:536.765333pt;}
.x6c_c01419{left:538.975052pt;}
.x60_c01419{left:541.252155pt;}
.x3e_c01419{left:545.400659pt;}
.x83_c01419{left:547.969608pt;}
.xb6_c01419{left:552.000000pt;}
.x34_c01419{left:555.333333pt;}
.x18_c01419{left:557.337333pt;}
.x7a_c01419{left:559.980000pt;}
.x61_c01419{left:561.705908pt;}
.xe_c01419{left:574.560000pt;}
.x49_c01419{left:576.812571pt;}
.xb8_c01419{left:579.120000pt;}
.x56_c01419{left:580.108791pt;}
.x75_c01419{left:586.521333pt;}
.x50_c01419{left:588.152000pt;}
.xaa_c01419{left:589.440000pt;}
.x4a_c01419{left:595.351912pt;}
.x6d_c01419{left:596.423440pt;}
.xb5_c01419{left:600.636864pt;}
.x8c_c01419{left:601.848000pt;}
.x35_c01419{left:604.960000pt;}
.x84_c01419{left:609.024360pt;}
.x62_c01419{left:611.141611pt;}
.x2d_c01419{left:612.293328pt;}
.xac_c01419{left:613.200000pt;}
.x19_c01419{left:614.768000pt;}
.xa2_c01419{left:618.000000pt;}
.xf_c01419{left:625.440000pt;}
.x6e_c01419{left:626.400000pt;}
.xab_c01419{left:627.600000pt;}
.xb7_c01419{left:629.520000pt;}
.xb9_c01419{left:631.440000pt;}
.x22_c01419{left:634.944000pt;}
.x57_c01419{left:636.076551pt;}
.x3_c01419{left:671.520000pt;}
.x99_c01419{left:678.311695pt;}
.x85_c01419{left:708.173317pt;}
.x8d_c01419{left:712.456000pt;}
.x4_c01419{left:718.080000pt;}
.xa3_c01419{left:736.080000pt;}
.x6f_c01419{left:753.120000pt;}
.x58_c01419{left:755.273583pt;}
.x7b_c01419{left:757.802667pt;}
.x9a_c01419{left:765.751396pt;}
.xa0_c01419{left:770.665548pt;}
.x8e_c01419{left:778.777333pt;}
.x63_c01419{left:785.854612pt;}
.x59_c01419{left:787.905776pt;}
}





/* 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_c01420 {
    display:none;
  }
  .loading-indicator_c01420.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01420 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_c01420 { 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_c01420" -> "#page-container .classname_c01420")
 */
.pf_c01420 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01420 { /* 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_c01420.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01420 { /* 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_c01420 { /* 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_c01420 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01420 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01420 {overflow:visible;}
  }
}
.c_c01420 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01420 { /* 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_c01420:after { /* webkit #35443 */
  content: '';
}
.t_c01420:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01420 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 */
}
.__c01420 { /* 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_c01420 { /* info for Javascript */
  display:none;
}
.l_c01420 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01420 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01420 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01420: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_c01420 {
    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_c01420.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01420.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_c01420 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01420{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01420;src:url('chunks/assets/font_fabf4b590f7fb32aea93ffb2.woff2')format("woff");}.ff1_c01420{font-family:ff1_c01420;line-height:1.000000;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;}
.m41_c01420{transform:matrix(0.012470,0.000499,-0.010002,0.249800,0,0);-ms-transform:matrix(0.012470,0.000499,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.012470,0.000499,-0.010002,0.249800,0,0);}
.m10c_c01420{transform:matrix(0.065897,0.002639,-0.010002,0.249800,0,0);-ms-transform:matrix(0.065897,0.002639,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.065897,0.002639,-0.010002,0.249800,0,0);}
.m127_c01420{transform:matrix(0.133590,0.004008,-0.007497,0.249888,0,0);-ms-transform:matrix(0.133590,0.004008,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.133590,0.004008,-0.007497,0.249888,0,0);}
.m0_c01420{transform:matrix(0.137380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137380,0.000000,0.000000,0.250000,0,0);}
.m18_c01420{transform:matrix(0.140298,0.005618,-0.010002,0.249800,0,0);-ms-transform:matrix(0.140298,0.005618,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.140298,0.005618,-0.010002,0.249800,0,0);}
.me0_c01420{transform:matrix(0.146652,0.005872,-0.010002,0.249800,0,0);-ms-transform:matrix(0.146652,0.005872,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.146652,0.005872,-0.010002,0.249800,0,0);}
.m12a_c01420{transform:matrix(0.150587,0.004518,-0.007497,0.249888,0,0);-ms-transform:matrix(0.150587,0.004518,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.150587,0.004518,-0.007497,0.249888,0,0);}
.m12d_c01420{transform:matrix(0.153561,0.004607,-0.007497,0.249888,0,0);-ms-transform:matrix(0.153561,0.004607,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.153561,0.004607,-0.007497,0.249888,0,0);}
.m12c_c01420{transform:matrix(0.156854,0.004706,-0.007497,0.249888,0,0);-ms-transform:matrix(0.156854,0.004706,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.156854,0.004706,-0.007497,0.249888,0,0);}
.m128_c01420{transform:matrix(0.158684,0.004761,-0.007497,0.249888,0,0);-ms-transform:matrix(0.158684,0.004761,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.158684,0.004761,-0.007497,0.249888,0,0);}
.m129_c01420{transform:matrix(0.160088,0.004803,-0.007497,0.249888,0,0);-ms-transform:matrix(0.160088,0.004803,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.160088,0.004803,-0.007497,0.249888,0,0);}
.m12b_c01420{transform:matrix(0.163212,0.004896,-0.007497,0.249888,0,0);-ms-transform:matrix(0.163212,0.004896,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.163212,0.004896,-0.007497,0.249888,0,0);}
.m125_c01420{transform:matrix(0.164061,0.004922,-0.007497,0.249888,0,0);-ms-transform:matrix(0.164061,0.004922,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.164061,0.004922,-0.007497,0.249888,0,0);}
.m100_c01420{transform:matrix(0.167796,0.006719,-0.010002,0.249800,0,0);-ms-transform:matrix(0.167796,0.006719,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.167796,0.006719,-0.010002,0.249800,0,0);}
.m126_c01420{transform:matrix(0.168319,0.005050,-0.007497,0.249888,0,0);-ms-transform:matrix(0.168319,0.005050,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.168319,0.005050,-0.007497,0.249888,0,0);}
.m102_c01420{transform:matrix(0.170708,0.006835,-0.010002,0.249800,0,0);-ms-transform:matrix(0.170708,0.006835,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.170708,0.006835,-0.010002,0.249800,0,0);}
.m2e_c01420{transform:matrix(0.171807,0.006879,-0.010002,0.249800,0,0);-ms-transform:matrix(0.171807,0.006879,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.171807,0.006879,-0.010002,0.249800,0,0);}
.m124_c01420{transform:matrix(0.171838,0.005155,-0.007497,0.249888,0,0);-ms-transform:matrix(0.171838,0.005155,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.171838,0.005155,-0.007497,0.249888,0,0);}
.m2c_c01420{transform:matrix(0.183528,0.007348,-0.010002,0.249800,0,0);-ms-transform:matrix(0.183528,0.007348,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.183528,0.007348,-0.010002,0.249800,0,0);}
.mcb_c01420{transform:matrix(0.186880,0.007483,-0.010002,0.249800,0,0);-ms-transform:matrix(0.186880,0.007483,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.186880,0.007483,-0.010002,0.249800,0,0);}
.mfd_c01420{transform:matrix(0.188454,0.007546,-0.010002,0.249800,0,0);-ms-transform:matrix(0.188454,0.007546,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.188454,0.007546,-0.010002,0.249800,0,0);}
.m2b_c01420{transform:matrix(0.189228,0.007577,-0.010002,0.249800,0,0);-ms-transform:matrix(0.189228,0.007577,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.189228,0.007577,-0.010002,0.249800,0,0);}
.m29_c01420{transform:matrix(0.190118,0.007612,-0.010002,0.249800,0,0);-ms-transform:matrix(0.190118,0.007612,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.190118,0.007612,-0.010002,0.249800,0,0);}
.mb7_c01420{transform:matrix(0.193425,0.007745,-0.010002,0.249800,0,0);-ms-transform:matrix(0.193425,0.007745,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.193425,0.007745,-0.010002,0.249800,0,0);}
.m28_c01420{transform:matrix(0.194010,0.007768,-0.010002,0.249800,0,0);-ms-transform:matrix(0.194010,0.007768,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.194010,0.007768,-0.010002,0.249800,0,0);}
.m2f_c01420{transform:matrix(0.195658,0.007834,-0.010002,0.249800,0,0);-ms-transform:matrix(0.195658,0.007834,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.195658,0.007834,-0.010002,0.249800,0,0);}
.mf8_c01420{transform:matrix(0.196298,0.007860,-0.010002,0.249800,0,0);-ms-transform:matrix(0.196298,0.007860,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.196298,0.007860,-0.010002,0.249800,0,0);}
.mb2_c01420{transform:matrix(0.197262,0.007898,-0.010002,0.249800,0,0);-ms-transform:matrix(0.197262,0.007898,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.197262,0.007898,-0.010002,0.249800,0,0);}
.m106_c01420{transform:matrix(0.197317,0.007901,-0.010002,0.249800,0,0);-ms-transform:matrix(0.197317,0.007901,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.197317,0.007901,-0.010002,0.249800,0,0);}
.m31_c01420{transform:matrix(0.197392,0.007904,-0.010002,0.249800,0,0);-ms-transform:matrix(0.197392,0.007904,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.197392,0.007904,-0.010002,0.249800,0,0);}
.mea_c01420{transform:matrix(0.197752,0.007918,-0.010002,0.249800,0,0);-ms-transform:matrix(0.197752,0.007918,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.197752,0.007918,-0.010002,0.249800,0,0);}
.mb6_c01420{transform:matrix(0.200150,0.008014,-0.010002,0.249800,0,0);-ms-transform:matrix(0.200150,0.008014,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.200150,0.008014,-0.010002,0.249800,0,0);}
.m50_c01420{transform:matrix(0.200216,0.008217,-0.010252,0.249790,0,0);-ms-transform:matrix(0.200216,0.008217,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.200216,0.008217,-0.010252,0.249790,0,0);}
.m4d_c01420{transform:matrix(0.201141,0.008255,-0.010252,0.249790,0,0);-ms-transform:matrix(0.201141,0.008255,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.201141,0.008255,-0.010252,0.249790,0,0);}
.mee_c01420{transform:matrix(0.201913,0.008085,-0.010002,0.249800,0,0);-ms-transform:matrix(0.201913,0.008085,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.201913,0.008085,-0.010002,0.249800,0,0);}
.m89_c01420{transform:matrix(0.202120,0.008295,-0.010252,0.249790,0,0);-ms-transform:matrix(0.202120,0.008295,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.202120,0.008295,-0.010252,0.249790,0,0);}
.m104_c01420{transform:matrix(0.202468,0.008107,-0.010002,0.249800,0,0);-ms-transform:matrix(0.202468,0.008107,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.202468,0.008107,-0.010002,0.249800,0,0);}
.me7_c01420{transform:matrix(0.202503,0.008108,-0.010002,0.249800,0,0);-ms-transform:matrix(0.202503,0.008108,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.202503,0.008108,-0.010002,0.249800,0,0);}
.mfc_c01420{transform:matrix(0.202718,0.008117,-0.010002,0.249800,0,0);-ms-transform:matrix(0.202718,0.008117,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.202718,0.008117,-0.010002,0.249800,0,0);}
.mff_c01420{transform:matrix(0.203582,0.008151,-0.010002,0.249800,0,0);-ms-transform:matrix(0.203582,0.008151,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.203582,0.008151,-0.010002,0.249800,0,0);}
.m30_c01420{transform:matrix(0.203882,0.008163,-0.010002,0.249800,0,0);-ms-transform:matrix(0.203882,0.008163,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.203882,0.008163,-0.010002,0.249800,0,0);}
.mbc_c01420{transform:matrix(0.204846,0.008202,-0.010002,0.249800,0,0);-ms-transform:matrix(0.204846,0.008202,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.204846,0.008202,-0.010002,0.249800,0,0);}
.mc0_c01420{transform:matrix(0.205470,0.008227,-0.010002,0.249800,0,0);-ms-transform:matrix(0.205470,0.008227,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.205470,0.008227,-0.010002,0.249800,0,0);}
.m7_c01420{transform:matrix(0.205500,0.008228,-0.010002,0.249800,0,0);-ms-transform:matrix(0.205500,0.008228,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.205500,0.008228,-0.010002,0.249800,0,0);}
.m91_c01420{transform:matrix(0.206141,0.008460,-0.010252,0.249790,0,0);-ms-transform:matrix(0.206141,0.008460,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.206141,0.008460,-0.010252,0.249790,0,0);}
.m107_c01420{transform:matrix(0.206774,0.008279,-0.010002,0.249800,0,0);-ms-transform:matrix(0.206774,0.008279,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.206774,0.008279,-0.010002,0.249800,0,0);}
.mb4_c01420{transform:matrix(0.206849,0.008282,-0.010002,0.249800,0,0);-ms-transform:matrix(0.206849,0.008282,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.206849,0.008282,-0.010002,0.249800,0,0);}
.maf_c01420{transform:matrix(0.207868,0.008323,-0.010002,0.249800,0,0);-ms-transform:matrix(0.207868,0.008323,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.207868,0.008323,-0.010002,0.249800,0,0);}
.mcc_c01420{transform:matrix(0.207898,0.008324,-0.010002,0.249800,0,0);-ms-transform:matrix(0.207898,0.008324,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.207898,0.008324,-0.010002,0.249800,0,0);}
.mb1_c01420{transform:matrix(0.208228,0.008337,-0.010002,0.249800,0,0);-ms-transform:matrix(0.208228,0.008337,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.208228,0.008337,-0.010002,0.249800,0,0);}
.m105_c01420{transform:matrix(0.208758,0.008359,-0.010002,0.249800,0,0);-ms-transform:matrix(0.208758,0.008359,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.208758,0.008359,-0.010002,0.249800,0,0);}
.m113_c01420{transform:matrix(0.209383,0.009432,-0.011250,0.249747,0,0);-ms-transform:matrix(0.209383,0.009432,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.209383,0.009432,-0.011250,0.249747,0,0);}
.m63_c01420{transform:matrix(0.209454,0.008596,-0.010252,0.249790,0,0);-ms-transform:matrix(0.209454,0.008596,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.209454,0.008596,-0.010252,0.249790,0,0);}
.m7b_c01420{transform:matrix(0.210118,0.008623,-0.010252,0.249790,0,0);-ms-transform:matrix(0.210118,0.008623,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.210118,0.008623,-0.010252,0.249790,0,0);}
.m76_c01420{transform:matrix(0.210368,0.008634,-0.010252,0.249790,0,0);-ms-transform:matrix(0.210368,0.008634,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.210368,0.008634,-0.010252,0.249790,0,0);}
.m3e_c01420{transform:matrix(0.210806,0.008441,-0.010002,0.249800,0,0);-ms-transform:matrix(0.210806,0.008441,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.210806,0.008441,-0.010002,0.249800,0,0);}
.mf4_c01420{transform:matrix(0.211201,0.008456,-0.010002,0.249800,0,0);-ms-transform:matrix(0.211201,0.008456,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.211201,0.008456,-0.010002,0.249800,0,0);}
.mc4_c01420{transform:matrix(0.211251,0.008458,-0.010002,0.249800,0,0);-ms-transform:matrix(0.211251,0.008458,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.211251,0.008458,-0.010002,0.249800,0,0);}
.m2a_c01420{transform:matrix(0.211645,0.008474,-0.010002,0.249800,0,0);-ms-transform:matrix(0.211645,0.008474,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.211645,0.008474,-0.010002,0.249800,0,0);}
.mce_c01420{transform:matrix(0.212015,0.008489,-0.010002,0.249800,0,0);-ms-transform:matrix(0.212015,0.008489,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.212015,0.008489,-0.010002,0.249800,0,0);}
.m25_c01420{transform:matrix(0.212155,0.008495,-0.010002,0.249800,0,0);-ms-transform:matrix(0.212155,0.008495,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.212155,0.008495,-0.010002,0.249800,0,0);}
.m10f_c01420{transform:matrix(0.212505,0.009572,-0.011250,0.249747,0,0);-ms-transform:matrix(0.212505,0.009572,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.212505,0.009572,-0.011250,0.249747,0,0);}
.mc6_c01420{transform:matrix(0.212780,0.008520,-0.010002,0.249800,0,0);-ms-transform:matrix(0.212780,0.008520,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.212780,0.008520,-0.010002,0.249800,0,0);}
.m78_c01420{transform:matrix(0.212956,0.008740,-0.010252,0.249790,0,0);-ms-transform:matrix(0.212956,0.008740,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.212956,0.008740,-0.010252,0.249790,0,0);}
.mba_c01420{transform:matrix(0.213439,0.008546,-0.010002,0.249800,0,0);-ms-transform:matrix(0.213439,0.008546,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.213439,0.008546,-0.010002,0.249800,0,0);}
.m103_c01420{transform:matrix(0.213999,0.008569,-0.010002,0.249800,0,0);-ms-transform:matrix(0.213999,0.008569,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.213999,0.008569,-0.010002,0.249800,0,0);}
.m7d_c01420{transform:matrix(0.214325,0.008796,-0.010252,0.249790,0,0);-ms-transform:matrix(0.214325,0.008796,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.214325,0.008796,-0.010252,0.249790,0,0);}
.m27_c01420{transform:matrix(0.214408,0.008585,-0.010002,0.249800,0,0);-ms-transform:matrix(0.214408,0.008585,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.214408,0.008585,-0.010002,0.249800,0,0);}
.mc7_c01420{transform:matrix(0.214903,0.008605,-0.010002,0.249800,0,0);-ms-transform:matrix(0.214903,0.008605,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.214903,0.008605,-0.010002,0.249800,0,0);}
.mdd_c01420{transform:matrix(0.215382,0.008624,-0.010002,0.249800,0,0);-ms-transform:matrix(0.215382,0.008624,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.215382,0.008624,-0.010002,0.249800,0,0);}
.m40_c01420{transform:matrix(0.215917,0.008645,-0.010002,0.249800,0,0);-ms-transform:matrix(0.215917,0.008645,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.215917,0.008645,-0.010002,0.249800,0,0);}
.m137_c01420{transform:matrix(0.215943,0.006478,-0.007497,0.249888,0,0);-ms-transform:matrix(0.215943,0.006478,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.215943,0.006478,-0.007497,0.249888,0,0);}
.med_c01420{transform:matrix(0.216332,0.008662,-0.010002,0.249800,0,0);-ms-transform:matrix(0.216332,0.008662,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.216332,0.008662,-0.010002,0.249800,0,0);}
.m68_c01420{transform:matrix(0.216902,0.008902,-0.010252,0.249790,0,0);-ms-transform:matrix(0.216902,0.008902,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.216902,0.008902,-0.010252,0.249790,0,0);}
.m9a_c01420{transform:matrix(0.217446,0.008707,-0.010002,0.249800,0,0);-ms-transform:matrix(0.217446,0.008707,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.217446,0.008707,-0.010002,0.249800,0,0);}
.mdc_c01420{transform:matrix(0.217596,0.008713,-0.010002,0.249800,0,0);-ms-transform:matrix(0.217596,0.008713,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.217596,0.008713,-0.010002,0.249800,0,0);}
.m108_c01420{transform:matrix(0.217721,0.008718,-0.010002,0.249800,0,0);-ms-transform:matrix(0.217721,0.008718,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.217721,0.008718,-0.010002,0.249800,0,0);}
.m62_c01420{transform:matrix(0.217817,0.008939,-0.010252,0.249790,0,0);-ms-transform:matrix(0.217817,0.008939,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.217817,0.008939,-0.010252,0.249790,0,0);}
.m26_c01420{transform:matrix(0.217855,0.008723,-0.010002,0.249800,0,0);-ms-transform:matrix(0.217855,0.008723,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.217855,0.008723,-0.010002,0.249800,0,0);}
.m117_c01420{transform:matrix(0.218034,0.009821,-0.011250,0.249747,0,0);-ms-transform:matrix(0.218034,0.009821,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.218034,0.009821,-0.011250,0.249747,0,0);}
.mde_c01420{transform:matrix(0.218080,0.008732,-0.010002,0.249800,0,0);-ms-transform:matrix(0.218080,0.008732,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.218080,0.008732,-0.010002,0.249800,0,0);}
.mc5_c01420{transform:matrix(0.218775,0.008760,-0.010002,0.249800,0,0);-ms-transform:matrix(0.218775,0.008760,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.218775,0.008760,-0.010002,0.249800,0,0);}
.m96_c01420{transform:matrix(0.218831,0.008981,-0.010252,0.249790,0,0);-ms-transform:matrix(0.218831,0.008981,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.218831,0.008981,-0.010252,0.249790,0,0);}
.me6_c01420{transform:matrix(0.218970,0.008768,-0.010002,0.249800,0,0);-ms-transform:matrix(0.218970,0.008768,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.218970,0.008768,-0.010002,0.249800,0,0);}
.m10a_c01420{transform:matrix(0.219209,0.008777,-0.010002,0.249800,0,0);-ms-transform:matrix(0.219209,0.008777,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.219209,0.008777,-0.010002,0.249800,0,0);}
.m54_c01420{transform:matrix(0.219350,0.009002,-0.010252,0.249790,0,0);-ms-transform:matrix(0.219350,0.009002,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.219350,0.009002,-0.010252,0.249790,0,0);}
.mf3_c01420{transform:matrix(0.219434,0.008786,-0.010002,0.249800,0,0);-ms-transform:matrix(0.219434,0.008786,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.219434,0.008786,-0.010002,0.249800,0,0);}
.m3f_c01420{transform:matrix(0.219484,0.008788,-0.010002,0.249800,0,0);-ms-transform:matrix(0.219484,0.008788,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.219484,0.008788,-0.010002,0.249800,0,0);}
.m2d_c01420{transform:matrix(0.219564,0.008791,-0.010002,0.249800,0,0);-ms-transform:matrix(0.219564,0.008791,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.219564,0.008791,-0.010002,0.249800,0,0);}
.m90_c01420{transform:matrix(0.220005,0.009029,-0.010252,0.249790,0,0);-ms-transform:matrix(0.220005,0.009029,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.220005,0.009029,-0.010252,0.249790,0,0);}
.m37_c01420{transform:matrix(0.220079,0.008812,-0.010002,0.249800,0,0);-ms-transform:matrix(0.220079,0.008812,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.220079,0.008812,-0.010002,0.249800,0,0);}
.m10b_c01420{transform:matrix(0.220114,0.008813,-0.010002,0.249800,0,0);-ms-transform:matrix(0.220114,0.008813,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.220114,0.008813,-0.010002,0.249800,0,0);}
.m16_c01420{transform:matrix(0.220124,0.008814,-0.010002,0.249800,0,0);-ms-transform:matrix(0.220124,0.008814,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.220124,0.008814,-0.010002,0.249800,0,0);}
.mf6_c01420{transform:matrix(0.220598,0.008833,-0.010002,0.249800,0,0);-ms-transform:matrix(0.220598,0.008833,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.220598,0.008833,-0.010002,0.249800,0,0);}
.m4_c01420{transform:matrix(0.220653,0.008835,-0.010002,0.249800,0,0);-ms-transform:matrix(0.220653,0.008835,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.220653,0.008835,-0.010002,0.249800,0,0);}
.m101_c01420{transform:matrix(0.220878,0.008844,-0.010002,0.249800,0,0);-ms-transform:matrix(0.220878,0.008844,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.220878,0.008844,-0.010002,0.249800,0,0);}
.me2_c01420{transform:matrix(0.221038,0.008850,-0.010002,0.249800,0,0);-ms-transform:matrix(0.221038,0.008850,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.221038,0.008850,-0.010002,0.249800,0,0);}
.m115_c01420{transform:matrix(0.221231,0.009965,-0.011250,0.249747,0,0);-ms-transform:matrix(0.221231,0.009965,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.221231,0.009965,-0.011250,0.249747,0,0);}
.m73_c01420{transform:matrix(0.221269,0.009081,-0.010252,0.249790,0,0);-ms-transform:matrix(0.221269,0.009081,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.221269,0.009081,-0.010252,0.249790,0,0);}
.m95_c01420{transform:matrix(0.221464,0.009089,-0.010252,0.249790,0,0);-ms-transform:matrix(0.221464,0.009089,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.221464,0.009089,-0.010252,0.249790,0,0);}
.mbf_c01420{transform:matrix(0.221483,0.008868,-0.010002,0.249800,0,0);-ms-transform:matrix(0.221483,0.008868,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.221483,0.008868,-0.010002,0.249800,0,0);}
.mfe_c01420{transform:matrix(0.221907,0.008885,-0.010002,0.249800,0,0);-ms-transform:matrix(0.221907,0.008885,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.221907,0.008885,-0.010002,0.249800,0,0);}
.m8d_c01420{transform:matrix(0.222008,0.009111,-0.010252,0.249790,0,0);-ms-transform:matrix(0.222008,0.009111,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.222008,0.009111,-0.010252,0.249790,0,0);}
.m52_c01420{transform:matrix(0.222658,0.009138,-0.010252,0.249790,0,0);-ms-transform:matrix(0.222658,0.009138,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.222658,0.009138,-0.010252,0.249790,0,0);}
.m111_c01420{transform:matrix(0.222854,0.010038,-0.011250,0.249747,0,0);-ms-transform:matrix(0.222854,0.010038,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.222854,0.010038,-0.011250,0.249747,0,0);}
.me9_c01420{transform:matrix(0.223056,0.008931,-0.010002,0.249800,0,0);-ms-transform:matrix(0.223056,0.008931,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.223056,0.008931,-0.010002,0.249800,0,0);}
.m8b_c01420{transform:matrix(0.223207,0.009161,-0.010252,0.249790,0,0);-ms-transform:matrix(0.223207,0.009161,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.223207,0.009161,-0.010252,0.249790,0,0);}
.mfb_c01420{transform:matrix(0.223276,0.008940,-0.010002,0.249800,0,0);-ms-transform:matrix(0.223276,0.008940,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.223276,0.008940,-0.010002,0.249800,0,0);}
.mec_c01420{transform:matrix(0.223966,0.008968,-0.010002,0.249800,0,0);-ms-transform:matrix(0.223966,0.008968,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.223966,0.008968,-0.010002,0.249800,0,0);}
.m98_c01420{transform:matrix(0.224320,0.008982,-0.010002,0.249800,0,0);-ms-transform:matrix(0.224320,0.008982,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.224320,0.008982,-0.010002,0.249800,0,0);}
.m9f_c01420{transform:matrix(0.224475,0.008988,-0.010002,0.249800,0,0);-ms-transform:matrix(0.224475,0.008988,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.224475,0.008988,-0.010002,0.249800,0,0);}
.m7c_c01420{transform:matrix(0.224546,0.009216,-0.010252,0.249790,0,0);-ms-transform:matrix(0.224546,0.009216,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.224546,0.009216,-0.010252,0.249790,0,0);}
.mb3_c01420{transform:matrix(0.224565,0.008992,-0.010002,0.249800,0,0);-ms-transform:matrix(0.224565,0.008992,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.224565,0.008992,-0.010002,0.249800,0,0);}
.mbe_c01420{transform:matrix(0.224690,0.008997,-0.010002,0.249800,0,0);-ms-transform:matrix(0.224690,0.008997,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.224690,0.008997,-0.010002,0.249800,0,0);}
.mc1_c01420{transform:matrix(0.225115,0.009014,-0.010002,0.249800,0,0);-ms-transform:matrix(0.225115,0.009014,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.225115,0.009014,-0.010002,0.249800,0,0);}
.m11e_c01420{transform:matrix(0.225117,0.010140,-0.011250,0.249747,0,0);-ms-transform:matrix(0.225117,0.010140,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.225117,0.010140,-0.011250,0.249747,0,0);}
.mc2_c01420{transform:matrix(0.225120,0.009014,-0.010002,0.249800,0,0);-ms-transform:matrix(0.225120,0.009014,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.225120,0.009014,-0.010002,0.249800,0,0);}
.m109_c01420{transform:matrix(0.225479,0.009028,-0.010002,0.249800,0,0);-ms-transform:matrix(0.225479,0.009028,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.225479,0.009028,-0.010002,0.249800,0,0);}
.mad_c01420{transform:matrix(0.225964,0.009048,-0.010002,0.249800,0,0);-ms-transform:matrix(0.225964,0.009048,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.225964,0.009048,-0.010002,0.249800,0,0);}
.m3d_c01420{transform:matrix(0.226189,0.009057,-0.010002,0.249800,0,0);-ms-transform:matrix(0.226189,0.009057,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.226189,0.009057,-0.010002,0.249800,0,0);}
.m94_c01420{transform:matrix(0.226409,0.009292,-0.010252,0.249790,0,0);-ms-transform:matrix(0.226409,0.009292,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.226409,0.009292,-0.010252,0.249790,0,0);}
.m136_c01420{transform:matrix(0.226948,0.006808,-0.007497,0.249888,0,0);-ms-transform:matrix(0.226948,0.006808,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.226948,0.006808,-0.007497,0.249888,0,0);}
.m110_c01420{transform:matrix(0.227015,0.010226,-0.011250,0.249747,0,0);-ms-transform:matrix(0.227015,0.010226,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.227015,0.010226,-0.011250,0.249747,0,0);}
.ma1_c01420{transform:matrix(0.227063,0.009092,-0.010002,0.249800,0,0);-ms-transform:matrix(0.227063,0.009092,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.227063,0.009092,-0.010002,0.249800,0,0);}
.mae_c01420{transform:matrix(0.227827,0.009122,-0.010002,0.249800,0,0);-ms-transform:matrix(0.227827,0.009122,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.227827,0.009122,-0.010002,0.249800,0,0);}
.m11_c01420{transform:matrix(0.227922,0.009126,-0.010002,0.249800,0,0);-ms-transform:matrix(0.227922,0.009126,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.227922,0.009126,-0.010002,0.249800,0,0);}
.me8_c01420{transform:matrix(0.227997,0.009129,-0.010002,0.249800,0,0);-ms-transform:matrix(0.227997,0.009129,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.227997,0.009129,-0.010002,0.249800,0,0);}
.mdb_c01420{transform:matrix(0.228062,0.009132,-0.010002,0.249800,0,0);-ms-transform:matrix(0.228062,0.009132,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.228062,0.009132,-0.010002,0.249800,0,0);}
.m47_c01420{transform:matrix(0.228283,0.009369,-0.010252,0.249790,0,0);-ms-transform:matrix(0.228283,0.009369,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.228283,0.009369,-0.010252,0.249790,0,0);}
.m53_c01420{transform:matrix(0.228318,0.009370,-0.010252,0.249790,0,0);-ms-transform:matrix(0.228318,0.009370,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.228318,0.009370,-0.010252,0.249790,0,0);}
.m56_c01420{transform:matrix(0.228957,0.009397,-0.010252,0.249790,0,0);-ms-transform:matrix(0.228957,0.009397,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.228957,0.009397,-0.010252,0.249790,0,0);}
.m59_c01420{transform:matrix(0.229072,0.009401,-0.010252,0.249790,0,0);-ms-transform:matrix(0.229072,0.009401,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.229072,0.009401,-0.010252,0.249790,0,0);}
.mf1_c01420{transform:matrix(0.229216,0.009178,-0.010002,0.249800,0,0);-ms-transform:matrix(0.229216,0.009178,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.229216,0.009178,-0.010002,0.249800,0,0);}
.mc_c01420{transform:matrix(0.230450,0.009227,-0.010002,0.249800,0,0);-ms-transform:matrix(0.230450,0.009227,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.230450,0.009227,-0.010002,0.249800,0,0);}
.mbb_c01420{transform:matrix(0.230820,0.009242,-0.010002,0.249800,0,0);-ms-transform:matrix(0.230820,0.009242,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.230820,0.009242,-0.010002,0.249800,0,0);}
.m97_c01420{transform:matrix(0.230875,0.009244,-0.010002,0.249800,0,0);-ms-transform:matrix(0.230875,0.009244,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.230875,0.009244,-0.010002,0.249800,0,0);}
.m9d_c01420{transform:matrix(0.230975,0.009248,-0.010002,0.249800,0,0);-ms-transform:matrix(0.230975,0.009248,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.230975,0.009248,-0.010002,0.249800,0,0);}
.m87_c01420{transform:matrix(0.231425,0.009498,-0.010252,0.249790,0,0);-ms-transform:matrix(0.231425,0.009498,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.231425,0.009498,-0.010252,0.249790,0,0);}
.mf2_c01420{transform:matrix(0.231649,0.009275,-0.010002,0.249800,0,0);-ms-transform:matrix(0.231649,0.009275,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.231649,0.009275,-0.010002,0.249800,0,0);}
.meb_c01420{transform:matrix(0.231929,0.009286,-0.010002,0.249800,0,0);-ms-transform:matrix(0.231929,0.009286,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.231929,0.009286,-0.010002,0.249800,0,0);}
.mf5_c01420{transform:matrix(0.232094,0.009293,-0.010002,0.249800,0,0);-ms-transform:matrix(0.232094,0.009293,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.232094,0.009293,-0.010002,0.249800,0,0);}
.mf7_c01420{transform:matrix(0.232454,0.009307,-0.010002,0.249800,0,0);-ms-transform:matrix(0.232454,0.009307,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.232454,0.009307,-0.010002,0.249800,0,0);}
.m82_c01420{transform:matrix(0.232519,0.009543,-0.010252,0.249790,0,0);-ms-transform:matrix(0.232519,0.009543,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.232519,0.009543,-0.010252,0.249790,0,0);}
.m119_c01420{transform:matrix(0.232844,0.010488,-0.011250,0.249747,0,0);-ms-transform:matrix(0.232844,0.010488,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.232844,0.010488,-0.011250,0.249747,0,0);}
.mca_c01420{transform:matrix(0.233033,0.009331,-0.010002,0.249800,0,0);-ms-transform:matrix(0.233033,0.009331,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.233033,0.009331,-0.010002,0.249800,0,0);}
.m71_c01420{transform:matrix(0.233274,0.009574,-0.010252,0.249790,0,0);-ms-transform:matrix(0.233274,0.009574,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.233274,0.009574,-0.010252,0.249790,0,0);}
.mb5_c01420{transform:matrix(0.233388,0.009345,-0.010002,0.249800,0,0);-ms-transform:matrix(0.233388,0.009345,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.233388,0.009345,-0.010002,0.249800,0,0);}
.mfa_c01420{transform:matrix(0.233813,0.009362,-0.010002,0.249800,0,0);-ms-transform:matrix(0.233813,0.009362,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.233813,0.009362,-0.010002,0.249800,0,0);}
.m77_c01420{transform:matrix(0.233898,0.009599,-0.010252,0.249790,0,0);-ms-transform:matrix(0.233898,0.009599,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.233898,0.009599,-0.010252,0.249790,0,0);}
.m48_c01420{transform:matrix(0.234163,0.009610,-0.010252,0.249790,0,0);-ms-transform:matrix(0.234163,0.009610,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.234163,0.009610,-0.010252,0.249790,0,0);}
.ma4_c01420{transform:matrix(0.234172,0.009376,-0.010002,0.249800,0,0);-ms-transform:matrix(0.234172,0.009376,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.234172,0.009376,-0.010002,0.249800,0,0);}
.mc9_c01420{transform:matrix(0.234327,0.009382,-0.010002,0.249800,0,0);-ms-transform:matrix(0.234327,0.009382,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.234327,0.009382,-0.010002,0.249800,0,0);}
.mcd_c01420{transform:matrix(0.234607,0.009394,-0.010002,0.249800,0,0);-ms-transform:matrix(0.234607,0.009394,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.234607,0.009394,-0.010002,0.249800,0,0);}
.m1e_c01420{transform:matrix(0.234657,0.009396,-0.010002,0.249800,0,0);-ms-transform:matrix(0.234657,0.009396,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.234657,0.009396,-0.010002,0.249800,0,0);}
.m33_c01420{transform:matrix(0.234892,0.009405,-0.010002,0.249800,0,0);-ms-transform:matrix(0.234892,0.009405,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.234892,0.009405,-0.010002,0.249800,0,0);}
.mb0_c01420{transform:matrix(0.235291,0.009421,-0.010002,0.249800,0,0);-ms-transform:matrix(0.235291,0.009421,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.235291,0.009421,-0.010002,0.249800,0,0);}
.m9_c01420{transform:matrix(0.235381,0.009425,-0.010002,0.249800,0,0);-ms-transform:matrix(0.235381,0.009425,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.235381,0.009425,-0.010002,0.249800,0,0);}
.m6f_c01420{transform:matrix(0.235382,0.009660,-0.010252,0.249790,0,0);-ms-transform:matrix(0.235382,0.009660,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.235382,0.009660,-0.010252,0.249790,0,0);}
.m6_c01420{transform:matrix(0.235601,0.009433,-0.010002,0.249800,0,0);-ms-transform:matrix(0.235601,0.009433,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.235601,0.009433,-0.010002,0.249800,0,0);}
.m74_c01420{transform:matrix(0.235826,0.009679,-0.010252,0.249790,0,0);-ms-transform:matrix(0.235826,0.009679,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.235826,0.009679,-0.010252,0.249790,0,0);}
.m70_c01420{transform:matrix(0.236166,0.009693,-0.010252,0.249790,0,0);-ms-transform:matrix(0.236166,0.009693,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.236166,0.009693,-0.010252,0.249790,0,0);}
.mc8_c01420{transform:matrix(0.236456,0.009468,-0.010002,0.249800,0,0);-ms-transform:matrix(0.236456,0.009468,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.236456,0.009468,-0.010002,0.249800,0,0);}
.m9c_c01420{transform:matrix(0.236615,0.009474,-0.010002,0.249800,0,0);-ms-transform:matrix(0.236615,0.009474,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.236615,0.009474,-0.010002,0.249800,0,0);}
.mf_c01420{transform:matrix(0.236995,0.009489,-0.010002,0.249800,0,0);-ms-transform:matrix(0.236995,0.009489,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.236995,0.009489,-0.010002,0.249800,0,0);}
.mf0_c01420{transform:matrix(0.237250,0.009499,-0.010002,0.249800,0,0);-ms-transform:matrix(0.237250,0.009499,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.237250,0.009499,-0.010002,0.249800,0,0);}
.m112_c01420{transform:matrix(0.237299,0.010689,-0.011250,0.249747,0,0);-ms-transform:matrix(0.237299,0.010689,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.237299,0.010689,-0.011250,0.249747,0,0);}
.mef_c01420{transform:matrix(0.237495,0.009509,-0.010002,0.249800,0,0);-ms-transform:matrix(0.237495,0.009509,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.237495,0.009509,-0.010002,0.249800,0,0);}
.m9b_c01420{transform:matrix(0.238059,0.009532,-0.010002,0.249800,0,0);-ms-transform:matrix(0.238059,0.009532,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.238059,0.009532,-0.010002,0.249800,0,0);}
.mbd_c01420{transform:matrix(0.238279,0.009541,-0.010002,0.249800,0,0);-ms-transform:matrix(0.238279,0.009541,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.238279,0.009541,-0.010002,0.249800,0,0);}
.m34_c01420{transform:matrix(0.238819,0.009562,-0.010002,0.249800,0,0);-ms-transform:matrix(0.238819,0.009562,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.238819,0.009562,-0.010002,0.249800,0,0);}
.m8_c01420{transform:matrix(0.238869,0.009564,-0.010002,0.249800,0,0);-ms-transform:matrix(0.238869,0.009564,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.238869,0.009564,-0.010002,0.249800,0,0);}
.m135_c01420{transform:matrix(0.238972,0.007169,-0.007497,0.249888,0,0);-ms-transform:matrix(0.238972,0.007169,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.238972,0.007169,-0.007497,0.249888,0,0);}
.mb8_c01420{transform:matrix(0.239033,0.009571,-0.010002,0.249800,0,0);-ms-transform:matrix(0.239033,0.009571,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.239033,0.009571,-0.010002,0.249800,0,0);}
.m10e_c01420{transform:matrix(0.239262,0.010778,-0.011250,0.249747,0,0);-ms-transform:matrix(0.239262,0.010778,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.239262,0.010778,-0.011250,0.249747,0,0);}
.m39_c01420{transform:matrix(0.239373,0.009585,-0.010002,0.249800,0,0);-ms-transform:matrix(0.239373,0.009585,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.239373,0.009585,-0.010002,0.249800,0,0);}
.m8c_c01420{transform:matrix(0.240043,0.009852,-0.010252,0.249790,0,0);-ms-transform:matrix(0.240043,0.009852,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.240043,0.009852,-0.010252,0.249790,0,0);}
.md0_c01420{transform:matrix(0.240103,0.009614,-0.010002,0.249800,0,0);-ms-transform:matrix(0.240103,0.009614,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.240103,0.009614,-0.010002,0.249800,0,0);}
.m72_c01420{transform:matrix(0.240188,0.009858,-0.010252,0.249790,0,0);-ms-transform:matrix(0.240188,0.009858,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.240188,0.009858,-0.010252,0.249790,0,0);}
.m8f_c01420{transform:matrix(0.240298,0.009862,-0.010252,0.249790,0,0);-ms-transform:matrix(0.240298,0.009862,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.240298,0.009862,-0.010252,0.249790,0,0);}
.m8e_c01420{transform:matrix(0.240657,0.009877,-0.010252,0.249790,0,0);-ms-transform:matrix(0.240657,0.009877,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.240657,0.009877,-0.010252,0.249790,0,0);}
.me1_c01420{transform:matrix(0.240987,0.009649,-0.010002,0.249800,0,0);-ms-transform:matrix(0.240987,0.009649,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.240987,0.009649,-0.010002,0.249800,0,0);}
.m5a_c01420{transform:matrix(0.241097,0.009895,-0.010252,0.249790,0,0);-ms-transform:matrix(0.241097,0.009895,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.241097,0.009895,-0.010252,0.249790,0,0);}
.m118_c01420{transform:matrix(0.241210,0.010865,-0.011250,0.249747,0,0);-ms-transform:matrix(0.241210,0.010865,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.241210,0.010865,-0.011250,0.249747,0,0);}
.ma0_c01420{transform:matrix(0.241387,0.009665,-0.010002,0.249800,0,0);-ms-transform:matrix(0.241387,0.009665,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.241387,0.009665,-0.010002,0.249800,0,0);}
.md5_c01420{transform:matrix(0.241801,0.009682,-0.010002,0.249800,0,0);-ms-transform:matrix(0.241801,0.009682,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.241801,0.009682,-0.010002,0.249800,0,0);}
.md1_c01420{transform:matrix(0.241906,0.009686,-0.010002,0.249800,0,0);-ms-transform:matrix(0.241906,0.009686,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.241906,0.009686,-0.010002,0.249800,0,0);}
.m79_c01420{transform:matrix(0.242256,0.009942,-0.010252,0.249790,0,0);-ms-transform:matrix(0.242256,0.009942,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.242256,0.009942,-0.010252,0.249790,0,0);}
.mb9_c01420{transform:matrix(0.242261,0.009700,-0.010002,0.249800,0,0);-ms-transform:matrix(0.242261,0.009700,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.242261,0.009700,-0.010002,0.249800,0,0);}
.md6_c01420{transform:matrix(0.242511,0.009710,-0.010002,0.249800,0,0);-ms-transform:matrix(0.242511,0.009710,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.242511,0.009710,-0.010002,0.249800,0,0);}
.m5c_c01420{transform:matrix(0.243170,0.009980,-0.010252,0.249790,0,0);-ms-transform:matrix(0.243170,0.009980,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.243170,0.009980,-0.010252,0.249790,0,0);}
.m51_c01420{transform:matrix(0.243840,0.010007,-0.010252,0.249790,0,0);-ms-transform:matrix(0.243840,0.010007,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.243840,0.010007,-0.010252,0.249790,0,0);}
.mf9_c01420{transform:matrix(0.244289,0.009781,-0.010002,0.249800,0,0);-ms-transform:matrix(0.244289,0.009781,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.244289,0.009781,-0.010002,0.249800,0,0);}
.m99_c01420{transform:matrix(0.244299,0.009782,-0.010002,0.249800,0,0);-ms-transform:matrix(0.244299,0.009782,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.244299,0.009782,-0.010002,0.249800,0,0);}
.mda_c01420{transform:matrix(0.244379,0.009785,-0.010002,0.249800,0,0);-ms-transform:matrix(0.244379,0.009785,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.244379,0.009785,-0.010002,0.249800,0,0);}
.ma_c01420{transform:matrix(0.244414,0.009786,-0.010002,0.249800,0,0);-ms-transform:matrix(0.244414,0.009786,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.244414,0.009786,-0.010002,0.249800,0,0);}
.me3_c01420{transform:matrix(0.245503,0.009830,-0.010002,0.249800,0,0);-ms-transform:matrix(0.245503,0.009830,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.245503,0.009830,-0.010002,0.249800,0,0);}
.m67_c01420{transform:matrix(0.245608,0.010080,-0.010252,0.249790,0,0);-ms-transform:matrix(0.245608,0.010080,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.245608,0.010080,-0.010252,0.249790,0,0);}
.m122_c01420{transform:matrix(0.245946,0.011079,-0.011250,0.249747,0,0);-ms-transform:matrix(0.245946,0.011079,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.245946,0.011079,-0.011250,0.249747,0,0);}
.m55_c01420{transform:matrix(0.246253,0.010106,-0.010252,0.249790,0,0);-ms-transform:matrix(0.246253,0.010106,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.246253,0.010106,-0.010252,0.249790,0,0);}
.m6d_c01420{transform:matrix(0.246293,0.010108,-0.010252,0.249790,0,0);-ms-transform:matrix(0.246293,0.010108,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.246293,0.010108,-0.010252,0.249790,0,0);}
.m8a_c01420{transform:matrix(0.246343,0.010110,-0.010252,0.249790,0,0);-ms-transform:matrix(0.246343,0.010110,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.246343,0.010110,-0.010252,0.249790,0,0);}
.me_c01420{transform:matrix(0.246463,0.009868,-0.010002,0.249800,0,0);-ms-transform:matrix(0.246463,0.009868,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.246463,0.009868,-0.010002,0.249800,0,0);}
.m4b_c01420{transform:matrix(0.246637,0.010122,-0.010252,0.249790,0,0);-ms-transform:matrix(0.246637,0.010122,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.246637,0.010122,-0.010252,0.249790,0,0);}
.m116_c01420{transform:matrix(0.246685,0.011112,-0.011250,0.249747,0,0);-ms-transform:matrix(0.246685,0.011112,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.246685,0.011112,-0.011250,0.249747,0,0);}
.m5_c01420{transform:matrix(0.246687,0.009877,-0.010002,0.249800,0,0);-ms-transform:matrix(0.246687,0.009877,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.246687,0.009877,-0.010002,0.249800,0,0);}
.m14_c01420{transform:matrix(0.247102,0.009894,-0.010002,0.249800,0,0);-ms-transform:matrix(0.247102,0.009894,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.247102,0.009894,-0.010002,0.249800,0,0);}
.ma7_c01420{transform:matrix(0.247307,0.009902,-0.010002,0.249800,0,0);-ms-transform:matrix(0.247307,0.009902,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.247307,0.009902,-0.010002,0.249800,0,0);}
.md7_c01420{transform:matrix(0.247352,0.009904,-0.010002,0.249800,0,0);-ms-transform:matrix(0.247352,0.009904,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.247352,0.009904,-0.010002,0.249800,0,0);}
.m65_c01420{transform:matrix(0.247726,0.010167,-0.010252,0.249790,0,0);-ms-transform:matrix(0.247726,0.010167,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.247726,0.010167,-0.010252,0.249790,0,0);}
.m19_c01420{transform:matrix(0.247756,0.009920,-0.010002,0.249800,0,0);-ms-transform:matrix(0.247756,0.009920,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.247756,0.009920,-0.010002,0.249800,0,0);}
.m10d_c01420{transform:matrix(0.248108,0.011176,-0.011250,0.249747,0,0);-ms-transform:matrix(0.248108,0.011176,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.248108,0.011176,-0.011250,0.249747,0,0);}
.m6a_c01420{transform:matrix(0.248376,0.010194,-0.010252,0.249790,0,0);-ms-transform:matrix(0.248376,0.010194,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.248376,0.010194,-0.010252,0.249790,0,0);}
.m114_c01420{transform:matrix(0.248448,0.011191,-0.011250,0.249747,0,0);-ms-transform:matrix(0.248448,0.011191,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.248448,0.011191,-0.011250,0.249747,0,0);}
.m3b_c01420{transform:matrix(0.248911,0.009966,-0.010002,0.249800,0,0);-ms-transform:matrix(0.248911,0.009966,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.248911,0.009966,-0.010002,0.249800,0,0);}
.me4_c01420{transform:matrix(0.249080,0.009973,-0.010002,0.249800,0,0);-ms-transform:matrix(0.249080,0.009973,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.249080,0.009973,-0.010002,0.249800,0,0);}
.ma2_c01420{transform:matrix(0.249465,0.009989,-0.010002,0.249800,0,0);-ms-transform:matrix(0.249465,0.009989,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.249465,0.009989,-0.010002,0.249800,0,0);}
.m66_c01420{transform:matrix(0.249550,0.010242,-0.010252,0.249790,0,0);-ms-transform:matrix(0.249550,0.010242,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.249550,0.010242,-0.010252,0.249790,0,0);}
.m4c_c01420{transform:matrix(0.250214,0.010269,-0.010252,0.249790,0,0);-ms-transform:matrix(0.250214,0.010269,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.250214,0.010269,-0.010252,0.249790,0,0);}
.m1f_c01420{transform:matrix(0.250259,0.010020,-0.010002,0.249800,0,0);-ms-transform:matrix(0.250259,0.010020,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.250259,0.010020,-0.010002,0.249800,0,0);}
.ma9_c01420{transform:matrix(0.251194,0.010058,-0.010002,0.249800,0,0);-ms-transform:matrix(0.251194,0.010058,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.251194,0.010058,-0.010002,0.249800,0,0);}
.m4e_c01420{transform:matrix(0.251204,0.010310,-0.010252,0.249790,0,0);-ms-transform:matrix(0.251204,0.010310,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.251204,0.010310,-0.010252,0.249790,0,0);}
.m3c_c01420{transform:matrix(0.251493,0.010070,-0.010002,0.249800,0,0);-ms-transform:matrix(0.251493,0.010070,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.251493,0.010070,-0.010002,0.249800,0,0);}
.m42_c01420{transform:matrix(0.252153,0.010349,-0.010252,0.249790,0,0);-ms-transform:matrix(0.252153,0.010349,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.252153,0.010349,-0.010252,0.249790,0,0);}
.m88_c01420{transform:matrix(0.252178,0.010350,-0.010252,0.249790,0,0);-ms-transform:matrix(0.252178,0.010350,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.252178,0.010350,-0.010252,0.249790,0,0);}
.md_c01420{transform:matrix(0.252643,0.010116,-0.010002,0.249800,0,0);-ms-transform:matrix(0.252643,0.010116,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.252643,0.010116,-0.010002,0.249800,0,0);}
.m1b_c01420{transform:matrix(0.252927,0.010127,-0.010002,0.249800,0,0);-ms-transform:matrix(0.252927,0.010127,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.252927,0.010127,-0.010002,0.249800,0,0);}
.m5e_c01420{transform:matrix(0.253377,0.010399,-0.010252,0.249790,0,0);-ms-transform:matrix(0.253377,0.010399,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.253377,0.010399,-0.010252,0.249790,0,0);}
.m75_c01420{transform:matrix(0.253382,0.010399,-0.010252,0.249790,0,0);-ms-transform:matrix(0.253382,0.010399,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.253382,0.010399,-0.010252,0.249790,0,0);}
.m80_c01420{transform:matrix(0.253572,0.010407,-0.010252,0.249790,0,0);-ms-transform:matrix(0.253572,0.010407,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.253572,0.010407,-0.010252,0.249790,0,0);}
.m4f_c01420{transform:matrix(0.253726,0.010413,-0.010252,0.249790,0,0);-ms-transform:matrix(0.253726,0.010413,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.253726,0.010413,-0.010252,0.249790,0,0);}
.m9e_c01420{transform:matrix(0.254381,0.010185,-0.010002,0.249800,0,0);-ms-transform:matrix(0.254381,0.010185,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.254381,0.010185,-0.010002,0.249800,0,0);}
.mab_c01420{transform:matrix(0.254711,0.010199,-0.010002,0.249800,0,0);-ms-transform:matrix(0.254711,0.010199,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.254711,0.010199,-0.010002,0.249800,0,0);}
.m46_c01420{transform:matrix(0.255065,0.010468,-0.010252,0.249790,0,0);-ms-transform:matrix(0.255065,0.010468,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.255065,0.010468,-0.010252,0.249790,0,0);}
.m11a_c01420{transform:matrix(0.255416,0.011505,-0.011250,0.249747,0,0);-ms-transform:matrix(0.255416,0.011505,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.255416,0.011505,-0.011250,0.249747,0,0);}
.m92_c01420{transform:matrix(0.255640,0.010492,-0.010252,0.249790,0,0);-ms-transform:matrix(0.255640,0.010492,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.255640,0.010492,-0.010252,0.249790,0,0);}
.m22_c01420{transform:matrix(0.255710,0.010239,-0.010002,0.249800,0,0);-ms-transform:matrix(0.255710,0.010239,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.255710,0.010239,-0.010002,0.249800,0,0);}
.m44_c01420{transform:matrix(0.256894,0.010543,-0.010252,0.249790,0,0);-ms-transform:matrix(0.256894,0.010543,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.256894,0.010543,-0.010252,0.249790,0,0);}
.m58_c01420{transform:matrix(0.257403,0.010564,-0.010252,0.249790,0,0);-ms-transform:matrix(0.257403,0.010564,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.257403,0.010564,-0.010252,0.249790,0,0);}
.m2_c01420{transform:matrix(0.257444,0.010308,-0.010002,0.249800,0,0);-ms-transform:matrix(0.257444,0.010308,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.257444,0.010308,-0.010002,0.249800,0,0);}
.m61_c01420{transform:matrix(0.257718,0.010577,-0.010252,0.249790,0,0);-ms-transform:matrix(0.257718,0.010577,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.257718,0.010577,-0.010252,0.249790,0,0);}
.m3_c01420{transform:matrix(0.258473,0.010349,-0.010002,0.249800,0,0);-ms-transform:matrix(0.258473,0.010349,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.258473,0.010349,-0.010002,0.249800,0,0);}
.m57_c01420{transform:matrix(0.258882,0.010625,-0.010252,0.249790,0,0);-ms-transform:matrix(0.258882,0.010625,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.258882,0.010625,-0.010252,0.249790,0,0);}
.m12_c01420{transform:matrix(0.259197,0.010378,-0.010002,0.249800,0,0);-ms-transform:matrix(0.259197,0.010378,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.259197,0.010378,-0.010002,0.249800,0,0);}
.m49_c01420{transform:matrix(0.259247,0.010640,-0.010252,0.249790,0,0);-ms-transform:matrix(0.259247,0.010640,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.259247,0.010640,-0.010252,0.249790,0,0);}
.m23_c01420{transform:matrix(0.259247,0.010380,-0.010002,0.249800,0,0);-ms-transform:matrix(0.259247,0.010380,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.259247,0.010380,-0.010002,0.249800,0,0);}
.m11d_c01420{transform:matrix(0.259392,0.011684,-0.011250,0.249747,0,0);-ms-transform:matrix(0.259392,0.011684,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.259392,0.011684,-0.011250,0.249747,0,0);}
.m64_c01420{transform:matrix(0.260081,0.010674,-0.010252,0.249790,0,0);-ms-transform:matrix(0.260081,0.010674,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.260081,0.010674,-0.010252,0.249790,0,0);}
.m85_c01420{transform:matrix(0.260196,0.010679,-0.010252,0.249790,0,0);-ms-transform:matrix(0.260196,0.010679,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.260196,0.010679,-0.010252,0.249790,0,0);}
.m1a_c01420{transform:matrix(0.260371,0.010425,-0.010002,0.249800,0,0);-ms-transform:matrix(0.260371,0.010425,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.260371,0.010425,-0.010002,0.249800,0,0);}
.m7f_c01420{transform:matrix(0.260431,0.010688,-0.010252,0.249790,0,0);-ms-transform:matrix(0.260431,0.010688,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.260431,0.010688,-0.010252,0.249790,0,0);}
.m43_c01420{transform:matrix(0.260456,0.010689,-0.010252,0.249790,0,0);-ms-transform:matrix(0.260456,0.010689,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.260456,0.010689,-0.010252,0.249790,0,0);}
.mdf_c01420{transform:matrix(0.260616,0.010435,-0.010002,0.249800,0,0);-ms-transform:matrix(0.260616,0.010435,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.260616,0.010435,-0.010002,0.249800,0,0);}
.m134_c01420{transform:matrix(0.260628,0.007819,-0.007497,0.249888,0,0);-ms-transform:matrix(0.260628,0.007819,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.260628,0.007819,-0.007497,0.249888,0,0);}
.m11f_c01420{transform:matrix(0.261170,0.011764,-0.011250,0.249747,0,0);-ms-transform:matrix(0.261170,0.011764,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.261170,0.011764,-0.011250,0.249747,0,0);}
.m7a_c01420{transform:matrix(0.261375,0.010727,-0.010252,0.249790,0,0);-ms-transform:matrix(0.261375,0.010727,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.261375,0.010727,-0.010252,0.249790,0,0);}
.m15_c01420{transform:matrix(0.261730,0.010480,-0.010002,0.249800,0,0);-ms-transform:matrix(0.261730,0.010480,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.261730,0.010480,-0.010002,0.249800,0,0);}
.ma6_c01420{transform:matrix(0.262130,0.010496,-0.010002,0.249800,0,0);-ms-transform:matrix(0.262130,0.010496,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.262130,0.010496,-0.010002,0.249800,0,0);}
.m1d_c01420{transform:matrix(0.262290,0.010502,-0.010002,0.249800,0,0);-ms-transform:matrix(0.262290,0.010502,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.262290,0.010502,-0.010002,0.249800,0,0);}
.m81_c01420{transform:matrix(0.262479,0.010772,-0.010252,0.249790,0,0);-ms-transform:matrix(0.262479,0.010772,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.262479,0.010772,-0.010252,0.249790,0,0);}
.m38_c01420{transform:matrix(0.262675,0.010517,-0.010002,0.249800,0,0);-ms-transform:matrix(0.262675,0.010517,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.262675,0.010517,-0.010002,0.249800,0,0);}
.md2_c01420{transform:matrix(0.264388,0.010586,-0.010002,0.249800,0,0);-ms-transform:matrix(0.264388,0.010586,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.264388,0.010586,-0.010002,0.249800,0,0);}
.m93_c01420{transform:matrix(0.264532,0.010857,-0.010252,0.249790,0,0);-ms-transform:matrix(0.264532,0.010857,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.264532,0.010857,-0.010252,0.249790,0,0);}
.m5b_c01420{transform:matrix(0.264737,0.010865,-0.010252,0.249790,0,0);-ms-transform:matrix(0.264737,0.010865,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.264737,0.010865,-0.010252,0.249790,0,0);}
.m24_c01420{transform:matrix(0.265712,0.010639,-0.010002,0.249800,0,0);-ms-transform:matrix(0.265712,0.010639,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.265712,0.010639,-0.010002,0.249800,0,0);}
.m7e_c01420{transform:matrix(0.265746,0.010907,-0.010252,0.249790,0,0);-ms-transform:matrix(0.265746,0.010907,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.265746,0.010907,-0.010252,0.249790,0,0);}
.m17_c01420{transform:matrix(0.265922,0.010648,-0.010002,0.249800,0,0);-ms-transform:matrix(0.265922,0.010648,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.265922,0.010648,-0.010002,0.249800,0,0);}
.maa_c01420{transform:matrix(0.266097,0.010655,-0.010002,0.249800,0,0);-ms-transform:matrix(0.266097,0.010655,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.266097,0.010655,-0.010002,0.249800,0,0);}
.m60_c01420{transform:matrix(0.266441,0.010935,-0.010252,0.249790,0,0);-ms-transform:matrix(0.266441,0.010935,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.266441,0.010935,-0.010252,0.249790,0,0);}
.m6e_c01420{transform:matrix(0.266606,0.010942,-0.010252,0.249790,0,0);-ms-transform:matrix(0.266606,0.010942,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.266606,0.010942,-0.010252,0.249790,0,0);}
.m69_c01420{transform:matrix(0.266750,0.010948,-0.010252,0.249790,0,0);-ms-transform:matrix(0.266750,0.010948,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.266750,0.010948,-0.010252,0.249790,0,0);}
.m6b_c01420{transform:matrix(0.266995,0.010958,-0.010252,0.249790,0,0);-ms-transform:matrix(0.266995,0.010958,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.266995,0.010958,-0.010252,0.249790,0,0);}
.m45_c01420{transform:matrix(0.268154,0.011005,-0.010252,0.249790,0,0);-ms-transform:matrix(0.268154,0.011005,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.268154,0.011005,-0.010252,0.249790,0,0);}
.m83_c01420{transform:matrix(0.269044,0.011042,-0.010252,0.249790,0,0);-ms-transform:matrix(0.269044,0.011042,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.269044,0.011042,-0.010252,0.249790,0,0);}
.m6c_c01420{transform:matrix(0.269253,0.011050,-0.010252,0.249790,0,0);-ms-transform:matrix(0.269253,0.011050,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.269253,0.011050,-0.010252,0.249790,0,0);}
.md4_c01420{transform:matrix(0.269329,0.010784,-0.010002,0.249800,0,0);-ms-transform:matrix(0.269329,0.010784,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.269329,0.010784,-0.010002,0.249800,0,0);}
.m11b_c01420{transform:matrix(0.269567,0.012143,-0.011250,0.249747,0,0);-ms-transform:matrix(0.269567,0.012143,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.269567,0.012143,-0.011250,0.249747,0,0);}
.m35_c01420{transform:matrix(0.270803,0.010843,-0.010002,0.249800,0,0);-ms-transform:matrix(0.270803,0.010843,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.270803,0.010843,-0.010002,0.249800,0,0);}
.md8_c01420{transform:matrix(0.270828,0.010844,-0.010002,0.249800,0,0);-ms-transform:matrix(0.270828,0.010844,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.270828,0.010844,-0.010002,0.249800,0,0);}
.md9_c01420{transform:matrix(0.271567,0.010874,-0.010002,0.249800,0,0);-ms-transform:matrix(0.271567,0.010874,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.271567,0.010874,-0.010002,0.249800,0,0);}
.m120_c01420{transform:matrix(0.271734,0.012240,-0.011250,0.249747,0,0);-ms-transform:matrix(0.271734,0.012240,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.271734,0.012240,-0.011250,0.249747,0,0);}
.ma8_c01420{transform:matrix(0.271757,0.010881,-0.010002,0.249800,0,0);-ms-transform:matrix(0.271757,0.010881,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.271757,0.010881,-0.010002,0.249800,0,0);}
.ma5_c01420{transform:matrix(0.271857,0.010885,-0.010002,0.249800,0,0);-ms-transform:matrix(0.271857,0.010885,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.271857,0.010885,-0.010002,0.249800,0,0);}
.ma3_c01420{transform:matrix(0.271862,0.010885,-0.010002,0.249800,0,0);-ms-transform:matrix(0.271862,0.010885,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.271862,0.010885,-0.010002,0.249800,0,0);}
.m36_c01420{transform:matrix(0.272102,0.010895,-0.010002,0.249800,0,0);-ms-transform:matrix(0.272102,0.010895,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.272102,0.010895,-0.010002,0.249800,0,0);}
.m84_c01420{transform:matrix(0.272491,0.011183,-0.010252,0.249790,0,0);-ms-transform:matrix(0.272491,0.011183,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.272491,0.011183,-0.010252,0.249790,0,0);}
.m21_c01420{transform:matrix(0.272562,0.010913,-0.010002,0.249800,0,0);-ms-transform:matrix(0.272562,0.010913,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.272562,0.010913,-0.010002,0.249800,0,0);}
.m5f_c01420{transform:matrix(0.273520,0.011226,-0.010252,0.249790,0,0);-ms-transform:matrix(0.273520,0.011226,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.273520,0.011226,-0.010252,0.249790,0,0);}
.m10_c01420{transform:matrix(0.273566,0.010954,-0.010002,0.249800,0,0);-ms-transform:matrix(0.273566,0.010954,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.273566,0.010954,-0.010002,0.249800,0,0);}
.m32_c01420{transform:matrix(0.274860,0.011005,-0.010002,0.249800,0,0);-ms-transform:matrix(0.274860,0.011005,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.274860,0.011005,-0.010002,0.249800,0,0);}
.m5d_c01420{transform:matrix(0.275593,0.011311,-0.010252,0.249790,0,0);-ms-transform:matrix(0.275593,0.011311,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.275593,0.011311,-0.010252,0.249790,0,0);}
.m4a_c01420{transform:matrix(0.276063,0.011330,-0.010252,0.249790,0,0);-ms-transform:matrix(0.276063,0.011330,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.276063,0.011330,-0.010252,0.249790,0,0);}
.m20_c01420{transform:matrix(0.276259,0.011061,-0.010002,0.249800,0,0);-ms-transform:matrix(0.276259,0.011061,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.276259,0.011061,-0.010002,0.249800,0,0);}
.m11c_c01420{transform:matrix(0.276644,0.012461,-0.011250,0.249747,0,0);-ms-transform:matrix(0.276644,0.012461,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.276644,0.012461,-0.011250,0.249747,0,0);}
.m123_c01420{transform:matrix(0.278133,0.012529,-0.011250,0.249747,0,0);-ms-transform:matrix(0.278133,0.012529,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.278133,0.012529,-0.011250,0.249747,0,0);}
.m13_c01420{transform:matrix(0.278847,0.011165,-0.010002,0.249800,0,0);-ms-transform:matrix(0.278847,0.011165,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.278847,0.011165,-0.010002,0.249800,0,0);}
.mc3_c01420{transform:matrix(0.278882,0.011166,-0.010002,0.249800,0,0);-ms-transform:matrix(0.278882,0.011166,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.278882,0.011166,-0.010002,0.249800,0,0);}
.m1c_c01420{transform:matrix(0.280440,0.011229,-0.010002,0.249800,0,0);-ms-transform:matrix(0.280440,0.011229,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.280440,0.011229,-0.010002,0.249800,0,0);}
.m3a_c01420{transform:matrix(0.282574,0.011314,-0.010002,0.249800,0,0);-ms-transform:matrix(0.282574,0.011314,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.282574,0.011314,-0.010002,0.249800,0,0);}
.m86_c01420{transform:matrix(0.282822,0.011607,-0.010252,0.249790,0,0);-ms-transform:matrix(0.282822,0.011607,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.282822,0.011607,-0.010252,0.249790,0,0);}
.md3_c01420{transform:matrix(0.285211,0.011420,-0.010002,0.249800,0,0);-ms-transform:matrix(0.285211,0.011420,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.285211,0.011420,-0.010002,0.249800,0,0);}
.mb_c01420{transform:matrix(0.293370,0.011747,-0.010002,0.249800,0,0);-ms-transform:matrix(0.293370,0.011747,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.293370,0.011747,-0.010002,0.249800,0,0);}
.m1_c01420{transform:matrix(0.297675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297675,0.000000,0.000000,0.250000,0,0);}
.m121_c01420{transform:matrix(0.299626,0.013497,-0.011250,0.249747,0,0);-ms-transform:matrix(0.299626,0.013497,-0.011250,0.249747,0,0);-webkit-transform:matrix(0.299626,0.013497,-0.011250,0.249747,0,0);}
.me5_c01420{transform:matrix(0.318750,0.012763,-0.010002,0.249800,0,0);-ms-transform:matrix(0.318750,0.012763,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.318750,0.012763,-0.010002,0.249800,0,0);}
.mcf_c01420{transform:matrix(0.350724,0.014043,-0.010002,0.249800,0,0);-ms-transform:matrix(0.350724,0.014043,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.350724,0.014043,-0.010002,0.249800,0,0);}
.mac_c01420{transform:matrix(0.351294,0.014066,-0.010002,0.249800,0,0);-ms-transform:matrix(0.351294,0.014066,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.351294,0.014066,-0.010002,0.249800,0,0);}
.m131_c01420{transform:matrix(0.365426,0.010963,-0.007497,0.249888,0,0);-ms-transform:matrix(0.365426,0.010963,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.365426,0.010963,-0.007497,0.249888,0,0);}
.m132_c01420{transform:matrix(0.380939,0.011428,-0.007497,0.249888,0,0);-ms-transform:matrix(0.380939,0.011428,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.380939,0.011428,-0.007497,0.249888,0,0);}
.m12f_c01420{transform:matrix(0.389140,0.011674,-0.007497,0.249888,0,0);-ms-transform:matrix(0.389140,0.011674,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.389140,0.011674,-0.007497,0.249888,0,0);}
.m133_c01420{transform:matrix(0.391874,0.011756,-0.007497,0.249888,0,0);-ms-transform:matrix(0.391874,0.011756,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.391874,0.011756,-0.007497,0.249888,0,0);}
.m12e_c01420{transform:matrix(0.436239,0.013087,-0.007497,0.249888,0,0);-ms-transform:matrix(0.436239,0.013087,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.436239,0.013087,-0.007497,0.249888,0,0);}
.m130_c01420{transform:matrix(0.483547,0.014506,-0.007497,0.249888,0,0);-ms-transform:matrix(0.483547,0.014506,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.483547,0.014506,-0.007497,0.249888,0,0);}
.v0_c01420{vertical-align:0.000000px;}
.ls0_c01420{letter-spacing:0.000000px;}
.sc__c01420{text-shadow:none;}
.sc0_c01420{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__c01420{-webkit-text-stroke:0px transparent;}
.sc0_c01420{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01420{word-spacing:0.000000px;}
.fc0_c01420{color:transparent;}
.fsb_c01420{font-size:48.021595px;}
.fs2_c01420{font-size:71.985635px;}
.fs4_c01420{font-size:71.988551px;}
.fs9_c01420{font-size:72.000936px;}
.fs1_c01420{font-size:77.984437px;}
.fs5_c01420{font-size:77.987597px;}
.fs8_c01420{font-size:78.001014px;}
.fsc_c01420{font-size:78.035092px;}
.fs7_c01420{font-size:83.983240px;}
.fs6_c01420{font-size:83.986643px;}
.fs3_c01420{font-size:89.982043px;}
.fs0_c01420{font-size:96.000000px;}
.fsa_c01420{font-size:114.051288px;}
.y0_c01420{bottom:0.000000px;}
.y13c_c01420{bottom:29.988465px;}
.y13b_c01420{bottom:32.437005px;}
.y13a_c01420{bottom:34.389285px;}
.y139_c01420{bottom:48.327120px;}
.y138_c01420{bottom:64.691175px;}
.y137_c01420{bottom:66.525285px;}
.y136_c01420{bottom:68.883210px;}
.y135_c01420{bottom:70.765035px;}
.y134_c01420{bottom:72.740790px;}
.y133_c01420{bottom:83.982585px;}
.y132_c01420{bottom:100.398315px;}
.y131_c01420{bottom:102.068850px;}
.y130_c01420{bottom:104.054385px;}
.y12f_c01420{bottom:105.042405px;}
.y12e_c01420{bottom:105.691575px;}
.y12d_c01420{bottom:107.254110px;}
.y12c_c01420{bottom:107.945310px;}
.y12b_c01420{bottom:110.304975px;}
.y12a_c01420{bottom:112.605780px;}
.y129_c01420{bottom:114.226500px;}
.y128_c01420{bottom:147.287565px;}
.y127_c01420{bottom:148.705686px;}
.y126_c01420{bottom:149.747117px;}
.y125_c01420{bottom:153.390794px;}
.y124_c01420{bottom:155.750823px;}
.y123_c01420{bottom:157.130888px;}
.y122_c01420{bottom:159.524789px;}
.y121_c01420{bottom:164.662295px;}
.y120_c01420{bottom:168.951609px;}
.y11f_c01420{bottom:171.285192px;}
.y11e_c01420{bottom:173.087091px;}
.y11d_c01420{bottom:180.013253px;}
.y11c_c01420{bottom:181.469768px;}
.y11b_c01420{bottom:184.474328px;}
.y11a_c01420{bottom:185.935770px;}
.y119_c01420{bottom:186.885765px;}
.y118_c01420{bottom:188.349503px;}
.y117_c01420{bottom:193.068765px;}
.y116_c01420{bottom:196.281833px;}
.y115_c01420{bottom:197.742195px;}
.y114_c01420{bottom:199.207013px;}
.y113_c01420{bottom:201.657600px;}
.y112_c01420{bottom:204.687000px;}
.y111_c01420{bottom:219.620320px;}
.y110_c01420{bottom:231.597628px;}
.y10f_c01420{bottom:232.695963px;}
.y10e_c01420{bottom:236.209839px;}
.y10d_c01420{bottom:237.974760px;}
.y10c_c01420{bottom:241.433902px;}
.y10b_c01420{bottom:252.315866px;}
.y10a_c01420{bottom:253.611958px;}
.y109_c01420{bottom:256.183024px;}
.y108_c01420{bottom:257.871288px;}
.y107_c01420{bottom:260.443194px;}
.y106_c01420{bottom:261.691346px;}
.y105_c01420{bottom:266.005636px;}
.y104_c01420{bottom:268.121711px;}
.y103_c01420{bottom:269.473245px;}
.y102_c01420{bottom:274.154205px;}
.y101_c01420{bottom:275.397436px;}
.y100_c01420{bottom:277.881799px;}
.yff_c01420{bottom:288.059223px;}
.yfe_c01420{bottom:290.306409px;}
.yfd_c01420{bottom:293.903022px;}
.yfc_c01420{bottom:295.204271px;}
.yfb_c01420{bottom:299.723421px;}
.yfa_c01420{bottom:301.987766px;}
.yf9_c01420{bottom:305.952589px;}
.yf8_c01420{bottom:307.815724px;}
.yf7_c01420{bottom:310.506058px;}
.yf6_c01420{bottom:315.398880px;}
.yf5_c01420{bottom:322.792782px;}
.yf4_c01420{bottom:326.914165px;}
.yf3_c01420{bottom:330.647368px;}
.yf2_c01420{bottom:331.985845px;}
.yf1_c01420{bottom:332.899242px;}
.yf0_c01420{bottom:335.662230px;}
.yef_c01420{bottom:338.906275px;}
.yee_c01420{bottom:340.244273px;}
.yed_c01420{bottom:342.572222px;}
.yec_c01420{bottom:346.670087px;}
.yeb_c01420{bottom:348.098919px;}
.yea_c01420{bottom:350.761893px;}
.ye9_c01420{bottom:359.021340px;}
.ye8_c01420{bottom:362.065380px;}
.ye7_c01420{bottom:364.282380px;}
.ye6_c01420{bottom:365.963220px;}
.ye5_c01420{bottom:368.216880px;}
.ye4_c01420{bottom:369.534300px;}
.ye3_c01420{bottom:373.057440px;}
.ye2_c01420{bottom:374.342880px;}
.ye1_c01420{bottom:375.586020px;}
.ye0_c01420{bottom:376.964700px;}
.ydf_c01420{bottom:379.149300px;}
.yde_c01420{bottom:381.804000px;}
.ydd_c01420{bottom:401.842738px;}
.ydc_c01420{bottom:404.978742px;}
.ydb_c01420{bottom:406.320069px;}
.yda_c01420{bottom:407.606377px;}
.yd9_c01420{bottom:409.022523px;}
.yd8_c01420{bottom:410.800219px;}
.yd7_c01420{bottom:413.508553px;}
.yd6_c01420{bottom:416.224387px;}
.yd5_c01420{bottom:418.401735px;}
.yd4_c01420{bottom:420.229410px;}
.yd3_c01420{bottom:422.878165px;}
.yd2_c01420{bottom:429.749764px;}
.yd1_c01420{bottom:431.158857px;}
.yd0_c01420{bottom:435.278020px;}
.ycf_c01420{bottom:436.675234px;}
.yce_c01420{bottom:438.974625px;}
.ycd_c01420{bottom:442.676269px;}
.ycc_c01420{bottom:444.033285px;}
.ycb_c01420{bottom:447.271990px;}
.yca_c01420{bottom:450.961455px;}
.yc9_c01420{bottom:452.789268px;}
.yc8_c01420{bottom:454.640600px;}
.yc7_c01420{bottom:455.553096px;}
.yc6_c01420{bottom:458.243248px;}
.yc5_c01420{bottom:466.364764px;}
.yc4_c01420{bottom:467.420612px;}
.yc3_c01420{bottom:469.565187px;}
.yc2_c01420{bottom:470.851320px;}
.yc1_c01420{bottom:474.856602px;}
.yc0_c01420{bottom:477.270703px;}
.ybf_c01420{bottom:481.959463px;}
.ybe_c01420{bottom:482.785984px;}
.ybd_c01420{bottom:485.374150px;}
.ybc_c01420{bottom:487.082334px;}
.ybb_c01420{bottom:493.065987px;}
.yba_c01420{bottom:503.723257px;}
.yb9_c01420{bottom:505.181455px;}
.yb8_c01420{bottom:506.610316px;}
.yb7_c01420{bottom:509.474637px;}
.yb6_c01420{bottom:510.869179px;}
.yb5_c01420{bottom:513.699603px;}
.yb4_c01420{bottom:515.078607px;}
.yb3_c01420{bottom:517.423363px;}
.yb2_c01420{bottom:521.706225px;}
.yb1_c01420{bottom:523.123806px;}
.yb0_c01420{bottom:525.458604px;}
.yaf_c01420{bottom:529.235101px;}
.yae_c01420{bottom:537.122782px;}
.yad_c01420{bottom:539.427153px;}
.yac_c01420{bottom:542.217981px;}
.yab_c01420{bottom:544.062354px;}
.yaa_c01420{bottom:548.649856px;}
.ya9_c01420{bottom:550.501668px;}
.ya8_c01420{bottom:556.966240px;}
.ya7_c01420{bottom:560.192647px;}
.ya6_c01420{bottom:561.553743px;}
.ya5_c01420{bottom:565.680466px;}
.ya4_c01420{bottom:573.947280px;}
.ya3_c01420{bottom:575.279340px;}
.ya2_c01420{bottom:578.344500px;}
.ya1_c01420{bottom:579.656760px;}
.ya0_c01420{bottom:582.347700px;}
.y9f_c01420{bottom:584.131320px;}
.y9e_c01420{bottom:586.648740px;}
.y9d_c01420{bottom:588.886860px;}
.y9c_c01420{bottom:590.182680px;}
.y9b_c01420{bottom:592.809300px;}
.y9a_c01420{bottom:594.551040px;}
.y99_c01420{bottom:595.912500px;}
.y98_c01420{bottom:630.309549px;}
.y97_c01420{bottom:632.605023px;}
.y96_c01420{bottom:634.540858px;}
.y95_c01420{bottom:644.214676px;}
.y94_c01420{bottom:648.199990px;}
.y93_c01420{bottom:649.487020px;}
.y92_c01420{bottom:650.827410px;}
.y91_c01420{bottom:653.453761px;}
.y90_c01420{bottom:655.659241px;}
.y8f_c01420{bottom:657.431572px;}
.y8e_c01420{bottom:659.168971px;}
.y8d_c01420{bottom:660.447145px;}
.y8c_c01420{bottom:661.348521px;}
.y8b_c01420{bottom:663.976225px;}
.y8a_c01420{bottom:665.241546px;}
.y89_c01420{bottom:669.235716px;}
.y88_c01420{bottom:670.996546px;}
.y87_c01420{bottom:682.639563px;}
.y86_c01420{bottom:684.792757px;}
.y85_c01420{bottom:688.176790px;}
.y84_c01420{bottom:691.201441px;}
.y83_c01420{bottom:692.454213px;}
.y82_c01420{bottom:695.046918px;}
.y81_c01420{bottom:697.142878px;}
.y80_c01420{bottom:699.664165px;}
.y7f_c01420{bottom:702.309223px;}
.y7e_c01420{bottom:703.555006px;}
.y7d_c01420{bottom:704.846623px;}
.y7c_c01420{bottom:706.089823px;}
.y7b_c01420{bottom:717.339688px;}
.y7a_c01420{bottom:720.721999px;}
.y79_c01420{bottom:722.044159px;}
.y78_c01420{bottom:724.551855px;}
.y77_c01420{bottom:725.875183px;}
.y76_c01420{bottom:729.696328px;}
.y75_c01420{bottom:731.845648px;}
.y74_c01420{bottom:733.173712px;}
.y73_c01420{bottom:735.709183px;}
.y72_c01420{bottom:737.792252px;}
.y71_c01420{bottom:739.594551px;}
.y70_c01420{bottom:741.731940px;}
.y6f_c01420{bottom:749.431455px;}
.y6e_c01420{bottom:750.839442px;}
.y6d_c01420{bottom:754.606674px;}
.y6c_c01420{bottom:758.892280px;}
.y6b_c01420{bottom:761.238118px;}
.y6a_c01420{bottom:765.823309px;}
.y69_c01420{bottom:767.332470px;}
.y68_c01420{bottom:769.695528px;}
.y67_c01420{bottom:770.677681px;}
.y66_c01420{bottom:772.550001px;}
.y65_c01420{bottom:775.390452px;}
.y64_c01420{bottom:776.289351px;}
.y63_c01420{bottom:777.642804px;}
.y62_c01420{bottom:787.514790px;}
.y61_c01420{bottom:791.853421px;}
.y60_c01420{bottom:796.169382px;}
.y5f_c01420{bottom:797.939970px;}
.y5e_c01420{bottom:802.153539px;}
.y5d_c01420{bottom:803.450752px;}
.y5c_c01420{bottom:806.022671px;}
.y5b_c01420{bottom:807.277164px;}
.y5a_c01420{bottom:808.580712px;}
.y59_c01420{bottom:810.731754px;}
.y58_c01420{bottom:813.276696px;}
.y57_c01420{bottom:821.439690px;}
.y56_c01420{bottom:824.121828px;}
.y55_c01420{bottom:825.496537px;}
.y54_c01420{bottom:826.783179px;}
.y53_c01420{bottom:828.199401px;}
.y52_c01420{bottom:831.343342px;}
.y51_c01420{bottom:832.625925px;}
.y50_c01420{bottom:837.568987px;}
.y4f_c01420{bottom:842.922193px;}
.y4e_c01420{bottom:844.291921px;}
.y4d_c01420{bottom:848.372692px;}
.y4c_c01420{bottom:857.764791px;}
.y4b_c01420{bottom:861.367215px;}
.y4a_c01420{bottom:863.661780px;}
.y49_c01420{bottom:864.968778px;}
.y48_c01420{bottom:867.636033px;}
.y47_c01420{bottom:869.876847px;}
.y46_c01420{bottom:872.622637px;}
.y45_c01420{bottom:874.860069px;}
.y44_c01420{bottom:877.959792px;}
.y43_c01420{bottom:880.222500px;}
.y42_c01420{bottom:901.163488px;}
.y41_c01420{bottom:913.074301px;}
.y40_c01420{bottom:915.452709px;}
.y3f_c01420{bottom:918.257216px;}
.y3e_c01420{bottom:920.466731px;}
.y3d_c01420{bottom:929.454528px;}
.y3c_c01420{bottom:930.792742px;}
.y3b_c01420{bottom:934.324372px;}
.y3a_c01420{bottom:935.932533px;}
.y39_c01420{bottom:938.950549px;}
.y38_c01420{bottom:940.192101px;}
.y37_c01420{bottom:941.522876px;}
.y36_c01420{bottom:944.905583px;}
.y35_c01420{bottom:948.327710px;}
.y34_c01420{bottom:950.033793px;}
.y33_c01420{bottom:951.345726px;}
.y32_c01420{bottom:955.559574px;}
.y31_c01420{bottom:964.407060px;}
.y30_c01420{bottom:965.336820px;}
.y2f_c01420{bottom:966.639540px;}
.y2e_c01420{bottom:967.498560px;}
.y2d_c01420{bottom:970.639260px;}
.y2c_c01420{bottom:971.904900px;}
.y2b_c01420{bottom:972.763020px;}
.y2a_c01420{bottom:975.427620px;}
.y29_c01420{bottom:977.150760px;}
.y28_c01420{bottom:978.496680px;}
.y27_c01420{bottom:981.530760px;}
.y26_c01420{bottom:985.093200px;}
.y25_c01420{bottom:986.872500px;}
.y24_c01420{bottom:1023.838182px;}
.y23_c01420{bottom:1026.583114px;}
.y22_c01420{bottom:1037.782887px;}
.y21_c01420{bottom:1040.898147px;}
.y20_c01420{bottom:1046.119467px;}
.y1f_c01420{bottom:1048.282467px;}
.y1e_c01420{bottom:1050.039747px;}
.y1d_c01420{bottom:1050.931527px;}
.y1c_c01420{bottom:1055.339607px;}
.y1b_c01420{bottom:1057.096887px;}
.y1a_c01420{bottom:1060.485807px;}
.y19_c01420{bottom:1062.755907px;}
.y18_c01420{bottom:1071.288948px;}
.y17_c01420{bottom:1074.478428px;}
.y16_c01420{bottom:1075.783728px;}
.y15_c01420{bottom:1079.277528px;}
.y14_c01420{bottom:1080.193068px;}
.y13_c01420{bottom:1084.162968px;}
.y12_c01420{bottom:1086.790908px;}
.y11_c01420{bottom:1087.660248px;}
.y10_c01420{bottom:1091.164428px;}
.yf_c01420{bottom:1092.507288px;}
.ye_c01420{bottom:1094.657808px;}
.yd_c01420{bottom:1096.443108px;}
.yc_c01420{bottom:1098.117948px;}
.yb_c01420{bottom:1108.712820px;}
.ya_c01420{bottom:1111.799160px;}
.y9_c01420{bottom:1113.971700px;}
.y8_c01420{bottom:1116.544800px;}
.y7_c01420{bottom:1117.479360px;}
.y6_c01420{bottom:1118.365980px;}
.y5_c01420{bottom:1122.293160px;}
.y4_c01420{bottom:1123.633440px;}
.y3_c01420{bottom:1128.452460px;}
.y2_c01420{bottom:1133.751000px;}
.y1_c01420{bottom:1181.775000px;}
.hd_c01420{height:48.021595px;}
.h4_c01420{height:71.985635px;}
.h6_c01420{height:71.988551px;}
.hb_c01420{height:72.000936px;}
.h3_c01420{height:77.984437px;}
.h7_c01420{height:77.987597px;}
.ha_c01420{height:78.001014px;}
.he_c01420{height:78.035092px;}
.h9_c01420{height:83.983240px;}
.h8_c01420{height:83.986643px;}
.h5_c01420{height:89.982043px;}
.h2_c01420{height:96.000000px;}
.hc_c01420{height:114.051288px;}
.h1_c01420{height:1250.250000px;}
.h0_c01420{height:1250.370000px;}
.w0_c01420{width:912.000000px;}
.x0_c01420{left:0.000000px;}
.xe1_c01420{left:134.654295px;}
.xdd_c01420{left:135.758490px;}
.xd8_c01420{left:137.436000px;}
.xd2_c01420{left:141.714267px;}
.xcc_c01420{left:143.163689px;}
.xc2_c01420{left:146.712102px;}
.xba_c01420{left:148.842468px;}
.xab_c01420{left:151.314122px;}
.x9a_c01420{left:152.635549px;}
.x90_c01420{left:154.088265px;}
.x8a_c01420{left:155.876237px;}
.x80_c01420{left:158.109761px;}
.x75_c01420{left:159.894137px;}
.x63_c01420{left:162.316863px;}
.x50_c01420{left:166.048677px;}
.x46_c01420{left:168.193034px;}
.x3b_c01420{left:172.296829px;}
.x33_c01420{left:173.415276px;}
.x24_c01420{left:174.966804px;}
.x1a_c01420{left:177.377243px;}
.x3_c01420{left:178.741500px;}
.xd_c01420{left:179.831765px;}
.xd3_c01420{left:183.583140px;}
.xd9_c01420{left:191.460000px;}
.x6b_c01420{left:194.810252px;}
.x59_c01420{left:198.029031px;}
.x76_c01420{left:203.858913px;}
.xc7_c01420{left:209.709282px;}
.xbb_c01420{left:212.201500px;}
.xac_c01420{left:215.854934px;}
.x64_c01420{left:217.066053px;}
.x5a_c01420{left:218.907408px;}
.xe_c01420{left:221.660894px;}
.x3c_c01420{left:224.855514px;}
.x6c_c01420{left:227.890847px;}
.x51_c01420{left:231.240276px;}
.x1b_c01420{left:234.072990px;}
.xa4_c01420{left:238.345953px;}
.x25_c01420{left:241.834667px;}
.xbc_c01420{left:246.199765px;}
.xce_c01420{left:249.684000px;}
.xcd_c01420{left:251.109669px;}
.x8b_c01420{left:254.030616px;}
.xb2_c01420{left:257.538000px;}
.x6d_c01420{left:259.781510px;}
.x65_c01420{left:263.211617px;}
.xf_c01420{left:266.248761px;}
.x47_c01420{left:267.624503px;}
.x40_c01420{left:279.168000px;}
.x26_c01420{left:281.869500px;}
.x5b_c01420{left:284.898933px;}
.x52_c01420{left:286.322133px;}
.x3d_c01420{left:291.561895px;}
.x91_c01420{left:296.109604px;}
.x81_c01420{left:299.650963px;}
.x48_c01420{left:300.999095px;}
.x77_c01420{left:303.594141px;}
.x9b_c01420{left:305.900757px;}
.x4_c01420{left:311.072536px;}
.xad_c01420{left:313.443843px;}
.x34_c01420{left:314.945250px;}
.x66_c01420{left:316.564082px;}
.x1c_c01420{left:318.711267px;}
.x10_c01420{left:319.957998px;}
.xb3_c01420{left:323.839133px;}
.x27_c01420{left:326.307518px;}
.x5c_c01420{left:328.398320px;}
.xc3_c01420{left:331.490751px;}
.x41_c01420{left:334.300812px;}
.xd4_c01420{left:337.444976px;}
.x82_c01420{left:343.150920px;}
.xda_c01420{left:346.809000px;}
.x3e_c01420{left:348.151245px;}
.x9c_c01420{left:349.649706px;}
.x53_c01420{left:351.832913px;}
.x11_c01420{left:353.495927px;}
.x35_c01420{left:358.641751px;}
.xc8_c01420{left:361.451953px;}
.x1d_c01420{left:362.599335px;}
.xdb_c01420{left:369.849000px;}
.xcf_c01420{left:371.339722px;}
.xc4_c01420{left:376.897997px;}
.xb4_c01420{left:378.399518px;}
.xae_c01420{left:379.622456px;}
.x67_c01420{left:381.524912px;}
.x6e_c01420{left:392.100893px;}
.xc9_c01420{left:396.068684px;}
.xde_c01420{left:397.183110px;}
.xbd_c01420{left:399.037523px;}
.x78_c01420{left:400.828311px;}
.xd0_c01420{left:403.858671px;}
.x5d_c01420{left:406.140159px;}
.x83_c01420{left:408.750754px;}
.x42_c01420{left:409.828209px;}
.xa5_c01420{left:413.605464px;}
.x28_c01420{left:415.279456px;}
.x54_c01420{left:417.718379px;}
.xdc_c01420{left:421.933500px;}
.x1_c01420{left:423.900000px;}
.x92_c01420{left:428.544621px;}
.x5_c01420{left:431.427561px;}
.x9d_c01420{left:437.105646px;}
.x12_c01420{left:441.012822px;}
.xb5_c01420{left:443.879472px;}
.x6f_c01420{left:445.804068px;}
.x2_c01420{left:447.120000px;}
.x55_c01420{left:450.935337px;}
.x79_c01420{left:455.251550px;}
.xd5_c01420{left:456.797747px;}
.x13_c01420{left:462.724589px;}
.x6_c01420{left:464.901054px;}
.x68_c01420{left:470.570042px;}
.x1e_c01420{left:472.691133px;}
.xb6_c01420{left:475.983336px;}
.x93_c01420{left:483.019046px;}
.xdf_c01420{left:486.884145px;}
.xaf_c01420{left:488.924660px;}
.x29_c01420{left:491.055605px;}
.x1f_c01420{left:494.963339px;}
.x84_c01420{left:497.010906px;}
.x7a_c01420{left:498.645398px;}
.xbe_c01420{left:508.038703px;}
.x70_c01420{left:512.196027px;}
.x94_c01420{left:515.060628px;}
.x8c_c01420{left:516.936426px;}
.xa6_c01420{left:522.910781px;}
.x2a_c01420{left:524.669957px;}
.x14_c01420{left:528.357390px;}
.x43_c01420{left:531.248667px;}
.x36_c01420{left:532.940745px;}
.x20_c01420{left:538.851407px;}
.xe0_c01420{left:541.710270px;}
.x7b_c01420{left:542.890394px;}
.x71_c01420{left:544.293545px;}
.x5e_c01420{left:547.721801px;}
.x49_c01420{left:551.876466px;}
.xb0_c01420{left:554.769107px;}
.x9e_c01420{left:557.206230px;}
.x56_c01420{left:558.869160px;}
.x85_c01420{left:559.883470px;}
.x8d_c01420{left:560.973801px;}
.x7_c01420{left:562.982375px;}
.x2b_c01420{left:567.705378px;}
.xbf_c01420{left:573.745645px;}
.x95_c01420{left:580.839915px;}
.x4a_c01420{left:583.127684px;}
.x8_c01420{left:585.125709px;}
.xb1_c01420{left:587.444078px;}
.x21_c01420{left:592.872332px;}
.xc0_c01420{left:595.470657px;}
.xb7_c01420{left:596.876322px;}
.x37_c01420{left:598.833928px;}
.x5f_c01420{left:602.210264px;}
.x57_c01420{left:604.205472px;}
.x9_c01420{left:608.466345px;}
.xa7_c01420{left:610.973603px;}
.x96_c01420{left:613.232086px;}
.x9f_c01420{left:619.035302px;}
.x72_c01420{left:621.758843px;}
.x15_c01420{left:627.505643px;}
.x3f_c01420{left:631.454455px;}
.x2c_c01420{left:634.253763px;}
.xc5_c01420{left:638.814867px;}
.xd1_c01420{left:644.871417px;}
.x16_c01420{left:650.371254px;}
.xb8_c01420{left:653.161481px;}
.x2d_c01420{left:655.685310px;}
.xca_c01420{left:658.632867px;}
.x4b_c01420{left:659.732502px;}
.x7c_c01420{left:663.584565px;}
.x69_c01420{left:666.567416px;}
.x8e_c01420{left:670.111345px;}
.x86_c01420{left:671.635606px;}
.xa_c01420{left:672.729518px;}
.x38_c01420{left:676.120627px;}
.x97_c01420{left:679.782981px;}
.x44_c01420{left:682.684080px;}
.xd6_c01420{left:683.962328px;}
.x2e_c01420{left:687.294669px;}
.x4c_c01420{left:694.239960px;}
.x7d_c01420{left:697.048922px;}
.xa8_c01420{left:698.910551px;}
.x6a_c01420{left:700.428791px;}
.x60_c01420{left:701.768418px;}
.x87_c01420{left:704.409300px;}
.x73_c01420{left:708.419675px;}
.x98_c01420{left:712.994772px;}
.x58_c01420{left:714.743873px;}
.xc1_c01420{left:716.138259px;}
.x39_c01420{left:717.296532px;}
.xa0_c01420{left:721.616202px;}
.x22_c01420{left:723.274799px;}
.x4d_c01420{left:725.590079px;}
.xb_c01420{left:726.988704px;}
.x7e_c01420{left:729.176555px;}
.x17_c01420{left:737.628909px;}
.xd7_c01420{left:741.097770px;}
.x99_c01420{left:746.864284px;}
.xb9_c01420{left:750.510034px;}
.xa1_c01420{left:754.562045px;}
.x4e_c01420{left:759.086049px;}
.x74_c01420{left:763.553979px;}
.x2f_c01420{left:765.733651px;}
.xcb_c01420{left:767.746029px;}
.x18_c01420{left:770.228777px;}
.x88_c01420{left:780.961671px;}
.x30_c01420{left:787.187676px;}
.x61_c01420{left:789.281115px;}
.xa9_c01420{left:796.876119px;}
.x23_c01420{left:801.078417px;}
.xc_c01420{left:804.070045px;}
.x3a_c01420{left:807.748093px;}
.xa2_c01420{left:809.509764px;}
.xc6_c01420{left:812.951649px;}
.x89_c01420{left:814.229870px;}
.x31_c01420{left:819.723108px;}
.x62_c01420{left:821.978676px;}
.x4f_c01420{left:824.438631px;}
.x45_c01420{left:826.369251px;}
.x7f_c01420{left:828.695999px;}
.xaa_c01420{left:830.381378px;}
.x8f_c01420{left:835.217920px;}
.xa3_c01420{left:836.554274px;}
.x32_c01420{left:842.943864px;}
.x19_c01420{left:849.886040px;}
@media print{
.v0_c01420{vertical-align:0.000000pt;}
.ls0_c01420{letter-spacing:0.000000pt;}
.ws0_c01420{word-spacing:0.000000pt;}
.fsb_c01420{font-size:42.685862pt;}
.fs2_c01420{font-size:63.987231pt;}
.fs4_c01420{font-size:63.989823pt;}
.fs9_c01420{font-size:64.000832pt;}
.fs1_c01420{font-size:69.319500pt;}
.fs5_c01420{font-size:69.322308pt;}
.fs8_c01420{font-size:69.334235pt;}
.fsc_c01420{font-size:69.364526pt;}
.fs7_c01420{font-size:74.651769pt;}
.fs6_c01420{font-size:74.654794pt;}
.fs3_c01420{font-size:79.984038pt;}
.fs0_c01420{font-size:85.333333pt;}
.fsa_c01420{font-size:101.378923pt;}
.y0_c01420{bottom:0.000000pt;}
.y13c_c01420{bottom:26.656413pt;}
.y13b_c01420{bottom:28.832893pt;}
.y13a_c01420{bottom:30.568253pt;}
.y139_c01420{bottom:42.957440pt;}
.y138_c01420{bottom:57.503267pt;}
.y137_c01420{bottom:59.133587pt;}
.y136_c01420{bottom:61.229520pt;}
.y135_c01420{bottom:62.902253pt;}
.y134_c01420{bottom:64.658480pt;}
.y133_c01420{bottom:74.651187pt;}
.y132_c01420{bottom:89.242947pt;}
.y131_c01420{bottom:90.727867pt;}
.y130_c01420{bottom:92.492787pt;}
.y12f_c01420{bottom:93.371027pt;}
.y12e_c01420{bottom:93.948067pt;}
.y12d_c01420{bottom:95.336987pt;}
.y12c_c01420{bottom:95.951387pt;}
.y12b_c01420{bottom:98.048867pt;}
.y12a_c01420{bottom:100.094027pt;}
.y129_c01420{bottom:101.534667pt;}
.y128_c01420{bottom:130.922280pt;}
.y127_c01420{bottom:132.182832pt;}
.y126_c01420{bottom:133.108548pt;}
.y125_c01420{bottom:136.347372pt;}
.y124_c01420{bottom:138.445176pt;}
.y123_c01420{bottom:139.671900pt;}
.y122_c01420{bottom:141.799812pt;}
.y121_c01420{bottom:146.366484pt;}
.y120_c01420{bottom:150.179208pt;}
.y11f_c01420{bottom:152.253504pt;}
.y11e_c01420{bottom:153.855192pt;}
.y11d_c01420{bottom:160.011780pt;}
.y11c_c01420{bottom:161.306460pt;}
.y11b_c01420{bottom:163.977180pt;}
.y11a_c01420{bottom:165.276240pt;}
.y119_c01420{bottom:166.120680pt;}
.y118_c01420{bottom:167.421780pt;}
.y117_c01420{bottom:171.616680pt;}
.y116_c01420{bottom:174.472740pt;}
.y115_c01420{bottom:175.770840pt;}
.y114_c01420{bottom:177.072900pt;}
.y113_c01420{bottom:179.251200pt;}
.y112_c01420{bottom:181.944000pt;}
.y111_c01420{bottom:195.218063pt;}
.y110_c01420{bottom:205.864559pt;}
.y10f_c01420{bottom:206.840856pt;}
.y10e_c01420{bottom:209.964301pt;}
.y10d_c01420{bottom:211.533120pt;}
.y10c_c01420{bottom:214.607913pt;}
.y10b_c01420{bottom:224.280769pt;}
.y10a_c01420{bottom:225.432852pt;}
.y109_c01420{bottom:227.718244pt;}
.y108_c01420{bottom:229.218923pt;}
.y107_c01420{bottom:231.505061pt;}
.y106_c01420{bottom:232.614529pt;}
.y105_c01420{bottom:236.449455pt;}
.y104_c01420{bottom:238.330409pt;}
.y103_c01420{bottom:239.531773pt;}
.y102_c01420{bottom:243.692627pt;}
.y101_c01420{bottom:244.797721pt;}
.y100_c01420{bottom:247.006044pt;}
.yff_c01420{bottom:256.052643pt;}
.yfe_c01420{bottom:258.050141pt;}
.yfd_c01420{bottom:261.247131pt;}
.yfc_c01420{bottom:262.403796pt;}
.yfb_c01420{bottom:266.420819pt;}
.yfa_c01420{bottom:268.433569pt;}
.yf9_c01420{bottom:271.957857pt;}
.yf8_c01420{bottom:273.613977pt;}
.yf7_c01420{bottom:276.005385pt;}
.yf6_c01420{bottom:280.354560pt;}
.yf5_c01420{bottom:286.926917pt;}
.yf4_c01420{bottom:290.590369pt;}
.yf3_c01420{bottom:293.908772pt;}
.yf2_c01420{bottom:295.098529pt;}
.yf1_c01420{bottom:295.910437pt;}
.yf0_c01420{bottom:298.366427pt;}
.yef_c01420{bottom:301.250023pt;}
.yee_c01420{bottom:302.439353pt;}
.yed_c01420{bottom:304.508641pt;}
.yec_c01420{bottom:308.151188pt;}
.yeb_c01420{bottom:309.421261pt;}
.yea_c01420{bottom:311.788349pt;}
.ye9_c01420{bottom:319.130080pt;}
.ye8_c01420{bottom:321.835893pt;}
.ye7_c01420{bottom:323.806560pt;}
.ye6_c01420{bottom:325.300640pt;}
.ye5_c01420{bottom:327.303893pt;}
.ye4_c01420{bottom:328.474933pt;}
.ye3_c01420{bottom:331.606613pt;}
.ye2_c01420{bottom:332.749227pt;}
.ye1_c01420{bottom:333.854240pt;}
.ye0_c01420{bottom:335.079733pt;}
.ydf_c01420{bottom:337.021600pt;}
.yde_c01420{bottom:339.381333pt;}
.ydd_c01420{bottom:357.193545pt;}
.ydc_c01420{bottom:359.981104pt;}
.ydb_c01420{bottom:361.173395pt;}
.yda_c01420{bottom:362.316780pt;}
.yd9_c01420{bottom:363.575576pt;}
.yd8_c01420{bottom:365.155751pt;}
.yd7_c01420{bottom:367.563159pt;}
.yd6_c01420{bottom:369.977233pt;}
.yd5_c01420{bottom:371.912653pt;}
.yd4_c01420{bottom:373.537253pt;}
.yd3_c01420{bottom:375.891703pt;}
.yd2_c01420{bottom:381.999791pt;}
.yd1_c01420{bottom:383.252317pt;}
.yd0_c01420{bottom:386.913796pt;}
.ycf_c01420{bottom:388.155764pt;}
.yce_c01420{bottom:390.199667pt;}
.ycd_c01420{bottom:393.490017pt;}
.ycc_c01420{bottom:394.696253pt;}
.ycb_c01420{bottom:397.575103pt;}
.yca_c01420{bottom:400.854627pt;}
.yc9_c01420{bottom:402.479349pt;}
.yc8_c01420{bottom:404.124977pt;}
.yc7_c01420{bottom:404.936085pt;}
.yc6_c01420{bottom:407.327332pt;}
.yc5_c01420{bottom:414.546457pt;}
.yc4_c01420{bottom:415.484988pt;}
.yc3_c01420{bottom:417.391277pt;}
.yc2_c01420{bottom:418.534507pt;}
.yc1_c01420{bottom:422.094757pt;}
.yc0_c01420{bottom:424.240625pt;}
.ybf_c01420{bottom:428.408412pt;}
.ybe_c01420{bottom:429.143097pt;}
.ybd_c01420{bottom:431.443689pt;}
.ybc_c01420{bottom:432.962075pt;}
.ybb_c01420{bottom:438.280877pt;}
.yba_c01420{bottom:447.754007pt;}
.yb9_c01420{bottom:449.050183pt;}
.yb8_c01420{bottom:450.320281pt;}
.yb7_c01420{bottom:452.866344pt;}
.yb6_c01420{bottom:454.105937pt;}
.yb5_c01420{bottom:456.621869pt;}
.yb4_c01420{bottom:457.847651pt;}
.yb3_c01420{bottom:459.931879pt;}
.yb2_c01420{bottom:463.738867pt;}
.yb1_c01420{bottom:464.998939pt;}
.yb0_c01420{bottom:467.074315pt;}
.yaf_c01420{bottom:470.431201pt;}
.yae_c01420{bottom:477.442473pt;}
.yad_c01420{bottom:479.490803pt;}
.yac_c01420{bottom:481.971539pt;}
.yab_c01420{bottom:483.610981pt;}
.yaa_c01420{bottom:487.688761pt;}
.ya9_c01420{bottom:489.334816pt;}
.ya8_c01420{bottom:495.081103pt;}
.ya7_c01420{bottom:497.949020pt;}
.ya6_c01420{bottom:499.158883pt;}
.ya5_c01420{bottom:502.827081pt;}
.ya4_c01420{bottom:510.175360pt;}
.ya3_c01420{bottom:511.359413pt;}
.ya2_c01420{bottom:514.084000pt;}
.ya1_c01420{bottom:515.250453pt;}
.ya0_c01420{bottom:517.642400pt;}
.y9f_c01420{bottom:519.227840pt;}
.y9e_c01420{bottom:521.465547pt;}
.y9d_c01420{bottom:523.454987pt;}
.y9c_c01420{bottom:524.606827pt;}
.y9b_c01420{bottom:526.941600pt;}
.y9a_c01420{bottom:528.489813pt;}
.y99_c01420{bottom:529.700000pt;}
.y98_c01420{bottom:560.275155pt;}
.y97_c01420{bottom:562.315576pt;}
.y96_c01420{bottom:564.036319pt;}
.y95_c01420{bottom:572.635268pt;}
.y94_c01420{bottom:576.177769pt;}
.y93_c01420{bottom:577.321796pt;}
.y92_c01420{bottom:578.513253pt;}
.y91_c01420{bottom:580.847788pt;}
.y90_c01420{bottom:582.808215pt;}
.y8f_c01420{bottom:584.383620pt;}
.y8e_c01420{bottom:585.927975pt;}
.y8d_c01420{bottom:587.064129pt;}
.y8c_c01420{bottom:587.865352pt;}
.y8b_c01420{bottom:590.201089pt;}
.y8a_c01420{bottom:591.325819pt;}
.y89_c01420{bottom:594.876192pt;}
.y88_c01420{bottom:596.441375pt;}
.y87_c01420{bottom:606.790723pt;}
.y86_c01420{bottom:608.704673pt;}
.y85_c01420{bottom:611.712703pt;}
.y84_c01420{bottom:614.401281pt;}
.y83_c01420{bottom:615.514856pt;}
.y82_c01420{bottom:617.819483pt;}
.y81_c01420{bottom:619.682559pt;}
.y80_c01420{bottom:621.923703pt;}
.y7f_c01420{bottom:624.274865pt;}
.y7e_c01420{bottom:625.382228pt;}
.y7d_c01420{bottom:626.530332pt;}
.y7c_c01420{bottom:627.635399pt;}
.y7b_c01420{bottom:637.635279pt;}
.y7a_c01420{bottom:640.641777pt;}
.y79_c01420{bottom:641.817031pt;}
.y78_c01420{bottom:644.046093pt;}
.y77_c01420{bottom:645.222385pt;}
.y76_c01420{bottom:648.618959pt;}
.y75_c01420{bottom:650.529465pt;}
.y74_c01420{bottom:651.709967pt;}
.y73_c01420{bottom:653.963719pt;}
.y72_c01420{bottom:655.815335pt;}
.y71_c01420{bottom:657.417379pt;}
.y70_c01420{bottom:659.317280pt;}
.y6f_c01420{bottom:666.161293pt;}
.y6e_c01420{bottom:667.412837pt;}
.y6d_c01420{bottom:670.761488pt;}
.y6c_c01420{bottom:674.570916pt;}
.y6b_c01420{bottom:676.656105pt;}
.y6a_c01420{bottom:680.731831pt;}
.y69_c01420{bottom:682.073307pt;}
.y68_c01420{bottom:684.173803pt;}
.y67_c01420{bottom:685.046828pt;}
.y66_c01420{bottom:686.711112pt;}
.y65_c01420{bottom:689.235957pt;}
.y64_c01420{bottom:690.034979pt;}
.y63_c01420{bottom:691.238048pt;}
.y62_c01420{bottom:700.013147pt;}
.y61_c01420{bottom:703.869708pt;}
.y60_c01420{bottom:707.706117pt;}
.y5f_c01420{bottom:709.279973pt;}
.y5e_c01420{bottom:713.025368pt;}
.y5d_c01420{bottom:714.178447pt;}
.y5c_c01420{bottom:716.464596pt;}
.y5b_c01420{bottom:717.579701pt;}
.y5a_c01420{bottom:718.738411pt;}
.y59_c01420{bottom:720.650448pt;}
.y58_c01420{bottom:722.912619pt;}
.y57_c01420{bottom:730.168613pt;}
.y56_c01420{bottom:732.552736pt;}
.y55_c01420{bottom:733.774700pt;}
.y54_c01420{bottom:734.918381pt;}
.y53_c01420{bottom:736.177245pt;}
.y52_c01420{bottom:738.971860pt;}
.y51_c01420{bottom:740.111933pt;}
.y50_c01420{bottom:744.505767pt;}
.y4f_c01420{bottom:749.264172pt;}
.y4e_c01420{bottom:750.481708pt;}
.y4d_c01420{bottom:754.109060pt;}
.y4c_c01420{bottom:762.457592pt;}
.y4b_c01420{bottom:765.659747pt;}
.y4a_c01420{bottom:767.699360pt;}
.y49_c01420{bottom:768.861136pt;}
.y48_c01420{bottom:771.232029pt;}
.y47_c01420{bottom:773.223864pt;}
.y46_c01420{bottom:775.664567pt;}
.y45_c01420{bottom:777.653395pt;}
.y44_c01420{bottom:780.408704pt;}
.y43_c01420{bottom:782.420000pt;}
.y42_c01420{bottom:801.034212pt;}
.y41_c01420{bottom:811.621601pt;}
.y40_c01420{bottom:813.735741pt;}
.y3f_c01420{bottom:816.228636pt;}
.y3e_c01420{bottom:818.192649pt;}
.y3d_c01420{bottom:826.181803pt;}
.y3c_c01420{bottom:827.371327pt;}
.y3b_c01420{bottom:830.510553pt;}
.y3a_c01420{bottom:831.940029pt;}
.y39_c01420{bottom:834.622711pt;}
.y38_c01420{bottom:835.726312pt;}
.y37_c01420{bottom:836.909223pt;}
.y36_c01420{bottom:839.916073pt;}
.y35_c01420{bottom:842.957964pt;}
.y34_c01420{bottom:844.474483pt;}
.y33_c01420{bottom:845.640645pt;}
.y32_c01420{bottom:849.386288pt;}
.y31_c01420{bottom:857.250720pt;}
.y30_c01420{bottom:858.077173pt;}
.y2f_c01420{bottom:859.235147pt;}
.y2e_c01420{bottom:859.998720pt;}
.y2d_c01420{bottom:862.790453pt;}
.y2c_c01420{bottom:863.915467pt;}
.y2b_c01420{bottom:864.678240pt;}
.y2a_c01420{bottom:867.046773pt;}
.y29_c01420{bottom:868.578453pt;}
.y28_c01420{bottom:869.774827pt;}
.y27_c01420{bottom:872.471787pt;}
.y26_c01420{bottom:875.638400pt;}
.y25_c01420{bottom:877.220000pt;}
.y24_c01420{bottom:910.078384pt;}
.y23_c01420{bottom:912.518324pt;}
.y22_c01420{bottom:922.473677pt;}
.y21_c01420{bottom:925.242797pt;}
.y20_c01420{bottom:929.883971pt;}
.y1f_c01420{bottom:931.806637pt;}
.y1e_c01420{bottom:933.368664pt;}
.y1d_c01420{bottom:934.161357pt;}
.y1c_c01420{bottom:938.079651pt;}
.y1b_c01420{bottom:939.641677pt;}
.y1a_c01420{bottom:942.654051pt;}
.y19_c01420{bottom:944.671917pt;}
.y18_c01420{bottom:952.256843pt;}
.y17_c01420{bottom:955.091936pt;}
.y16_c01420{bottom:956.252203pt;}
.y15_c01420{bottom:959.357803pt;}
.y14_c01420{bottom:960.171616pt;}
.y13_c01420{bottom:963.700416pt;}
.y12_c01420{bottom:966.036363pt;}
.y11_c01420{bottom:966.809109pt;}
.y10_c01420{bottom:969.923936pt;}
.yf_c01420{bottom:971.117589pt;}
.ye_c01420{bottom:973.029163pt;}
.yd_c01420{bottom:974.616096pt;}
.yc_c01420{bottom:976.104843pt;}
.yb_c01420{bottom:985.522507pt;}
.ya_c01420{bottom:988.265920pt;}
.y9_c01420{bottom:990.197067pt;}
.y8_c01420{bottom:992.484267pt;}
.y7_c01420{bottom:993.314987pt;}
.y6_c01420{bottom:994.103093pt;}
.y5_c01420{bottom:997.593920pt;}
.y4_c01420{bottom:998.785280pt;}
.y3_c01420{bottom:1003.068853pt;}
.y2_c01420{bottom:1007.778667pt;}
.y1_c01420{bottom:1050.466667pt;}
.hd_c01420{height:42.685862pt;}
.h4_c01420{height:63.987231pt;}
.h6_c01420{height:63.989823pt;}
.hb_c01420{height:64.000832pt;}
.h3_c01420{height:69.319500pt;}
.h7_c01420{height:69.322308pt;}
.ha_c01420{height:69.334235pt;}
.he_c01420{height:69.364526pt;}
.h9_c01420{height:74.651769pt;}
.h8_c01420{height:74.654794pt;}
.h5_c01420{height:79.984038pt;}
.h2_c01420{height:85.333333pt;}
.hc_c01420{height:101.378923pt;}
.h1_c01420{height:1111.333333pt;}
.h0_c01420{height:1111.440000pt;}
.w0_c01420{width:810.666667pt;}
.x0_c01420{left:0.000000pt;}
.xe1_c01420{left:119.692707pt;}
.xdd_c01420{left:120.674213pt;}
.xd8_c01420{left:122.165333pt;}
.xd2_c01420{left:125.968237pt;}
.xcc_c01420{left:127.256612pt;}
.xc2_c01420{left:130.410757pt;}
.xba_c01420{left:132.304416pt;}
.xab_c01420{left:134.501441pt;}
.x9a_c01420{left:135.676044pt;}
.x90_c01420{left:136.967347pt;}
.x8a_c01420{left:138.556655pt;}
.x80_c01420{left:140.542009pt;}
.x75_c01420{left:142.128121pt;}
.x63_c01420{left:144.281656pt;}
.x50_c01420{left:147.598824pt;}
.x46_c01420{left:149.504919pt;}
.x3b_c01420{left:153.152737pt;}
.x33_c01420{left:154.146912pt;}
.x24_c01420{left:155.526048pt;}
.x1a_c01420{left:157.668660pt;}
.x3_c01420{left:158.881333pt;}
.xd_c01420{left:159.850457pt;}
.xd3_c01420{left:163.185013pt;}
.xd9_c01420{left:170.186667pt;}
.x6b_c01420{left:173.164668pt;}
.x59_c01420{left:176.025805pt;}
.x76_c01420{left:181.207923pt;}
.xc7_c01420{left:186.408251pt;}
.xbb_c01420{left:188.623556pt;}
.xac_c01420{left:191.871052pt;}
.x64_c01420{left:192.947603pt;}
.x5a_c01420{left:194.584363pt;}
.xe_c01420{left:197.031905pt;}
.x3c_c01420{left:199.871568pt;}
.x6c_c01420{left:202.569641pt;}
.x51_c01420{left:205.546912pt;}
.x1b_c01420{left:208.064880pt;}
.xa4_c01420{left:211.863069pt;}
.x25_c01420{left:214.964148pt;}
.xbc_c01420{left:218.844236pt;}
.xce_c01420{left:221.941333pt;}
.xcd_c01420{left:223.208595pt;}
.x8b_c01420{left:225.804992pt;}
.xb2_c01420{left:228.922667pt;}
.x6d_c01420{left:230.916897pt;}
.x65_c01420{left:233.965881pt;}
.xf_c01420{left:236.665565pt;}
.x47_c01420{left:237.888447pt;}
.x40_c01420{left:248.149333pt;}
.x26_c01420{left:250.550667pt;}
.x5b_c01420{left:253.243496pt;}
.x52_c01420{left:254.508563pt;}
.x3d_c01420{left:259.166129pt;}
.x91_c01420{left:263.208537pt;}
.x81_c01420{left:266.356412pt;}
.x48_c01420{left:267.554751pt;}
.x77_c01420{left:269.861459pt;}
.x9b_c01420{left:271.911784pt;}
.x4_c01420{left:276.508921pt;}
.xad_c01420{left:278.616749pt;}
.x34_c01420{left:279.951333pt;}
.x66_c01420{left:281.390295pt;}
.x1c_c01420{left:283.298904pt;}
.x10_c01420{left:284.407109pt;}
.xb3_c01420{left:287.857007pt;}
.x27_c01420{left:290.051127pt;}
.x5c_c01420{left:291.909617pt;}
.xc3_c01420{left:294.658445pt;}
.x41_c01420{left:297.156277pt;}
.xd4_c01420{left:299.951089pt;}
.x82_c01420{left:305.023040pt;}
.xda_c01420{left:308.274667pt;}
.x3e_c01420{left:309.467773pt;}
.x9c_c01420{left:310.799739pt;}
.x53_c01420{left:312.740367pt;}
.x11_c01420{left:314.218601pt;}
.x35_c01420{left:318.792668pt;}
.xc8_c01420{left:321.290625pt;}
.x1d_c01420{left:322.310520pt;}
.xdb_c01420{left:328.754667pt;}
.xcf_c01420{left:330.079753pt;}
.xc4_c01420{left:335.020441pt;}
.xb4_c01420{left:336.355127pt;}
.xae_c01420{left:337.442183pt;}
.x67_c01420{left:339.133255pt;}
.x6e_c01420{left:348.534127pt;}
.xc9_c01420{left:352.061052pt;}
.xde_c01420{left:353.051653pt;}
.xbd_c01420{left:354.700020pt;}
.x78_c01420{left:356.291832pt;}
.xd0_c01420{left:358.985485pt;}
.x5d_c01420{left:361.013475pt;}
.x83_c01420{left:363.334004pt;}
.x42_c01420{left:364.291741pt;}
.xa5_c01420{left:367.649301pt;}
.x28_c01420{left:369.137295pt;}
.x54_c01420{left:371.305225pt;}
.xdc_c01420{left:375.052000pt;}
.x1_c01420{left:376.800000pt;}
.x92_c01420{left:380.928552pt;}
.x5_c01420{left:383.491165pt;}
.x9d_c01420{left:388.538352pt;}
.x12_c01420{left:392.011397pt;}
.xb5_c01420{left:394.559531pt;}
.x6f_c01420{left:396.270283pt;}
.x2_c01420{left:397.440000pt;}
.x55_c01420{left:400.831411pt;}
.x79_c01420{left:404.668044pt;}
.xd5_c01420{left:406.042441pt;}
.x13_c01420{left:411.310745pt;}
.x6_c01420{left:413.245381pt;}
.x68_c01420{left:418.284481pt;}
.x1e_c01420{left:420.169896pt;}
.xb6_c01420{left:423.096299pt;}
.x93_c01420{left:429.350263pt;}
.xdf_c01420{left:432.785907pt;}
.xaf_c01420{left:434.599697pt;}
.x29_c01420{left:436.493871pt;}
.x1f_c01420{left:439.967412pt;}
.x84_c01420{left:441.787472pt;}
.x7a_c01420{left:443.240353pt;}
.xbe_c01420{left:451.589959pt;}
.x70_c01420{left:455.285357pt;}
.x94_c01420{left:457.831669pt;}
.x8c_c01420{left:459.499045pt;}
.xa6_c01420{left:464.809583pt;}
.x2a_c01420{left:466.373295pt;}
.x14_c01420{left:469.651013pt;}
.x43_c01420{left:472.221037pt;}
.x36_c01420{left:473.725107pt;}
.x20_c01420{left:478.979028pt;}
.xe0_c01420{left:481.520240pt;}
.x7b_c01420{left:482.569239pt;}
.x71_c01420{left:483.816484pt;}
.x5e_c01420{left:486.863823pt;}
.x49_c01420{left:490.556859pt;}
.xb0_c01420{left:493.128095pt;}
.x9e_c01420{left:495.294427pt;}
.x56_c01420{left:496.772587pt;}
.x85_c01420{left:497.674196pt;}
.x8d_c01420{left:498.643379pt;}
.x7_c01420{left:500.428777pt;}
.x2b_c01420{left:504.627003pt;}
.xbf_c01420{left:509.996129pt;}
.x95_c01420{left:516.302147pt;}
.x4a_c01420{left:518.335719pt;}
.x8_c01420{left:520.111741pt;}
.xb1_c01420{left:522.172513pt;}
.x21_c01420{left:526.997628pt;}
.xc0_c01420{left:529.307251pt;}
.xb7_c01420{left:530.556731pt;}
.x37_c01420{left:532.296825pt;}
.x5f_c01420{left:535.298012pt;}
.x57_c01420{left:537.071531pt;}
.x9_c01420{left:540.858973pt;}
.xa7_c01420{left:543.087647pt;}
.x96_c01420{left:545.095188pt;}
.x9f_c01420{left:550.253601pt;}
.x72_c01420{left:552.674527pt;}
.x15_c01420{left:557.782793pt;}
.x3f_c01420{left:561.292849pt;}
.x2c_c01420{left:563.781123pt;}
.xc5_c01420{left:567.835437pt;}
.xd1_c01420{left:573.219037pt;}
.x16_c01420{left:578.107781pt;}
.xb8_c01420{left:580.587983pt;}
.x2d_c01420{left:582.831387pt;}
.xca_c01420{left:585.451437pt;}
.x4b_c01420{left:586.428891pt;}
.x7c_c01420{left:589.852947pt;}
.x69_c01420{left:592.504369pt;}
.x8e_c01420{left:595.654529pt;}
.x86_c01420{left:597.009428pt;}
.xa_c01420{left:597.981793pt;}
.x38_c01420{left:600.996113pt;}
.x97_c01420{left:604.251539pt;}
.x44_c01420{left:606.830293pt;}
.xd6_c01420{left:607.966513pt;}
.x2e_c01420{left:610.928595pt;}
.x4c_c01420{left:617.102187pt;}
.x7d_c01420{left:619.599041pt;}
.xa8_c01420{left:621.253823pt;}
.x6a_c01420{left:622.603369pt;}
.x60_c01420{left:623.794149pt;}
.x87_c01420{left:626.141600pt;}
.x73_c01420{left:629.706377pt;}
.x98_c01420{left:633.773131pt;}
.x58_c01420{left:635.327887pt;}
.xc1_c01420{left:636.567341pt;}
.x39_c01420{left:637.596917pt;}
.xa0_c01420{left:641.436624pt;}
.x22_c01420{left:642.910932pt;}
.x4d_c01420{left:644.968959pt;}
.xb_c01420{left:646.212181pt;}
.x7e_c01420{left:648.156937pt;}
.x17_c01420{left:655.670141pt;}
.xd7_c01420{left:658.753573pt;}
.x99_c01420{left:663.879364pt;}
.xb9_c01420{left:667.120031pt;}
.xa1_c01420{left:670.721817pt;}
.x4e_c01420{left:674.743155pt;}
.x74_c01420{left:678.714648pt;}
.x2f_c01420{left:680.652135pt;}
.xcb_c01420{left:682.440915pt;}
.x18_c01420{left:684.647801pt;}
.x88_c01420{left:694.188152pt;}
.x30_c01420{left:699.722379pt;}
.x61_c01420{left:701.583213pt;}
.xa9_c01420{left:708.334328pt;}
.x23_c01420{left:712.069704pt;}
.xc_c01420{left:714.728929pt;}
.x3a_c01420{left:717.998305pt;}
.xa2_c01420{left:719.564235pt;}
.xc6_c01420{left:722.623688pt;}
.x89_c01420{left:723.759884pt;}
.x31_c01420{left:728.642763pt;}
.x62_c01420{left:730.647712pt;}
.x4f_c01420{left:732.834339pt;}
.x45_c01420{left:734.550445pt;}
.x7f_c01420{left:736.618665pt;}
.xaa_c01420{left:738.116780pt;}
.x8f_c01420{left:742.415929pt;}
.xa3_c01420{left:743.603799pt;}
.x32_c01420{left:749.283435pt;}
.x19_c01420{left:755.454257pt;}
}





/* 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_c01421 {
    display:none;
  }
  .loading-indicator_c01421.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01421 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_c01421 { 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_c01421" -> "#page-container .classname_c01421")
 */
.pf_c01421 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01421 { /* 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_c01421.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01421 { /* 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_c01421 { /* 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_c01421 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01421 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01421 {overflow:visible;}
  }
}
.c_c01421 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01421 { /* 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_c01421:after { /* webkit #35443 */
  content: '';
}
.t_c01421:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01421 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 */
}
.__c01421 { /* 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_c01421 { /* info for Javascript */
  display:none;
}
.l_c01421 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01421 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01421 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01421: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_c01421 {
    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_c01421.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01421.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_c01421 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01421{font-family:sans-serif;visibility:hidden;}
.sc__c01421{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01421{-webkit-text-stroke:0px transparent;}
}
.y0_c01421{bottom:0.000000px;}
.h1_c01421{height:1250.250000px;}
.h0_c01421{height:1250.370000px;}
.w0_c01421{width:912.000000px;}
.x0_c01421{left:0.000000px;}
@media print{
.y0_c01421{bottom:0.000000pt;}
.h1_c01421{height:1111.333333pt;}
.h0_c01421{height:1111.440000pt;}
.w0_c01421{width:810.666667pt;}
.x0_c01421{left:0.000000pt;}
}





/* 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_c01422 {
    display:none;
  }
  .loading-indicator_c01422.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01422 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_c01422 { 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_c01422" -> "#page-container .classname_c01422")
 */
.pf_c01422 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01422 { /* 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_c01422.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01422 { /* 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_c01422 { /* 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_c01422 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01422 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01422 {overflow:visible;}
  }
}
.c_c01422 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01422 { /* 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_c01422:after { /* webkit #35443 */
  content: '';
}
.t_c01422:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01422 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 */
}
.__c01422 { /* 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_c01422 { /* info for Javascript */
  display:none;
}
.l_c01422 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01422 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01422 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01422: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_c01422 {
    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_c01422.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01422.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_c01422 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01422{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01422;src:url('chunks/assets/font_132af6d682320e9b248f68cf.woff2')format("woff");}.ff1_c01422{font-family:ff1_c01422;line-height:1.000000;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;}
.m3_c01422{transform:matrix(0.141815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141815,0.000000,0.000000,0.250000,0,0);}
.m1_c01422{transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144500,0.000000,0.000000,0.250000,0,0);}
.m7_c01422{transform:matrix(0.146380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146380,0.000000,0.000000,0.250000,0,0);}
.me_c01422{transform:matrix(0.156936,-0.003923,0.006248,0.249922,0,0);-ms-transform:matrix(0.156936,-0.003923,0.006248,0.249922,0,0);-webkit-transform:matrix(0.156936,-0.003923,0.006248,0.249922,0,0);}
.m9_c01422{transform:matrix(0.180059,-0.004501,0.006248,0.249922,0,0);-ms-transform:matrix(0.180059,-0.004501,0.006248,0.249922,0,0);-webkit-transform:matrix(0.180059,-0.004501,0.006248,0.249922,0,0);}
.ma_c01422{transform:matrix(0.190645,-0.004766,0.006248,0.249922,0,0);-ms-transform:matrix(0.190645,-0.004766,0.006248,0.249922,0,0);-webkit-transform:matrix(0.190645,-0.004766,0.006248,0.249922,0,0);}
.m11_c01422{transform:matrix(0.191200,-0.004780,0.006248,0.249922,0,0);-ms-transform:matrix(0.191200,-0.004780,0.006248,0.249922,0,0);-webkit-transform:matrix(0.191200,-0.004780,0.006248,0.249922,0,0);}
.m12_c01422{transform:matrix(0.196459,-0.004911,0.006248,0.249922,0,0);-ms-transform:matrix(0.196459,-0.004911,0.006248,0.249922,0,0);-webkit-transform:matrix(0.196459,-0.004911,0.006248,0.249922,0,0);}
.mf_c01422{transform:matrix(0.198443,-0.004961,0.006248,0.249922,0,0);-ms-transform:matrix(0.198443,-0.004961,0.006248,0.249922,0,0);-webkit-transform:matrix(0.198443,-0.004961,0.006248,0.249922,0,0);}
.m1f_c01422{transform:matrix(0.199038,-0.004976,0.006248,0.249922,0,0);-ms-transform:matrix(0.199038,-0.004976,0.006248,0.249922,0,0);-webkit-transform:matrix(0.199038,-0.004976,0.006248,0.249922,0,0);}
.m13_c01422{transform:matrix(0.200887,-0.005022,0.006248,0.249922,0,0);-ms-transform:matrix(0.200887,-0.005022,0.006248,0.249922,0,0);-webkit-transform:matrix(0.200887,-0.005022,0.006248,0.249922,0,0);}
.m20_c01422{transform:matrix(0.201432,-0.005036,0.006248,0.249922,0,0);-ms-transform:matrix(0.201432,-0.005036,0.006248,0.249922,0,0);-webkit-transform:matrix(0.201432,-0.005036,0.006248,0.249922,0,0);}
.m8_c01422{transform:matrix(0.202307,-0.005058,0.006248,0.249922,0,0);-ms-transform:matrix(0.202307,-0.005058,0.006248,0.249922,0,0);-webkit-transform:matrix(0.202307,-0.005058,0.006248,0.249922,0,0);}
.md_c01422{transform:matrix(0.202422,-0.005061,0.006248,0.249922,0,0);-ms-transform:matrix(0.202422,-0.005061,0.006248,0.249922,0,0);-webkit-transform:matrix(0.202422,-0.005061,0.006248,0.249922,0,0);}
.m22_c01422{transform:matrix(0.202602,-0.005065,0.006248,0.249922,0,0);-ms-transform:matrix(0.202602,-0.005065,0.006248,0.249922,0,0);-webkit-transform:matrix(0.202602,-0.005065,0.006248,0.249922,0,0);}
.m24_c01422{transform:matrix(0.205781,-0.005145,0.006248,0.249922,0,0);-ms-transform:matrix(0.205781,-0.005145,0.006248,0.249922,0,0);-webkit-transform:matrix(0.205781,-0.005145,0.006248,0.249922,0,0);}
.mb_c01422{transform:matrix(0.206915,-0.005173,0.006248,0.249922,0,0);-ms-transform:matrix(0.206915,-0.005173,0.006248,0.249922,0,0);-webkit-transform:matrix(0.206915,-0.005173,0.006248,0.249922,0,0);}
.mc_c01422{transform:matrix(0.207320,-0.005183,0.006248,0.249922,0,0);-ms-transform:matrix(0.207320,-0.005183,0.006248,0.249922,0,0);-webkit-transform:matrix(0.207320,-0.005183,0.006248,0.249922,0,0);}
.m44_c01422{transform:matrix(0.208523,-0.005839,0.006997,0.249902,0,0);-ms-transform:matrix(0.208523,-0.005839,0.006997,0.249902,0,0);-webkit-transform:matrix(0.208523,-0.005839,0.006997,0.249902,0,0);}
.m33_c01422{transform:matrix(0.209445,-0.005027,0.005998,0.249928,0,0);-ms-transform:matrix(0.209445,-0.005027,0.005998,0.249928,0,0);-webkit-transform:matrix(0.209445,-0.005027,0.005998,0.249928,0,0);}
.m42_c01422{transform:matrix(0.209938,-0.005878,0.006997,0.249902,0,0);-ms-transform:matrix(0.209938,-0.005878,0.006997,0.249902,0,0);-webkit-transform:matrix(0.209938,-0.005878,0.006997,0.249902,0,0);}
.m46_c01422{transform:matrix(0.210118,-0.005883,0.006997,0.249902,0,0);-ms-transform:matrix(0.210118,-0.005883,0.006997,0.249902,0,0);-webkit-transform:matrix(0.210118,-0.005883,0.006997,0.249902,0,0);}
.m45_c01422{transform:matrix(0.211237,-0.005915,0.006997,0.249902,0,0);-ms-transform:matrix(0.211237,-0.005915,0.006997,0.249902,0,0);-webkit-transform:matrix(0.211237,-0.005915,0.006997,0.249902,0,0);}
.m10_c01422{transform:matrix(0.213658,-0.005341,0.006248,0.249922,0,0);-ms-transform:matrix(0.213658,-0.005341,0.006248,0.249922,0,0);-webkit-transform:matrix(0.213658,-0.005341,0.006248,0.249922,0,0);}
.m19_c01422{transform:matrix(0.213738,-0.005343,0.006248,0.249922,0,0);-ms-transform:matrix(0.213738,-0.005343,0.006248,0.249922,0,0);-webkit-transform:matrix(0.213738,-0.005343,0.006248,0.249922,0,0);}
.m1e_c01422{transform:matrix(0.214598,-0.005365,0.006248,0.249922,0,0);-ms-transform:matrix(0.214598,-0.005365,0.006248,0.249922,0,0);-webkit-transform:matrix(0.214598,-0.005365,0.006248,0.249922,0,0);}
.m2e_c01422{transform:matrix(0.214998,-0.005160,0.005998,0.249928,0,0);-ms-transform:matrix(0.214998,-0.005160,0.005998,0.249928,0,0);-webkit-transform:matrix(0.214998,-0.005160,0.005998,0.249928,0,0);}
.m2b_c01422{transform:matrix(0.216933,-0.005206,0.005998,0.249928,0,0);-ms-transform:matrix(0.216933,-0.005206,0.005998,0.249928,0,0);-webkit-transform:matrix(0.216933,-0.005206,0.005998,0.249928,0,0);}
.m30_c01422{transform:matrix(0.218192,-0.005237,0.005998,0.249928,0,0);-ms-transform:matrix(0.218192,-0.005237,0.005998,0.249928,0,0);-webkit-transform:matrix(0.218192,-0.005237,0.005998,0.249928,0,0);}
.m16_c01422{transform:matrix(0.218872,-0.005472,0.006248,0.249922,0,0);-ms-transform:matrix(0.218872,-0.005472,0.006248,0.249922,0,0);-webkit-transform:matrix(0.218872,-0.005472,0.006248,0.249922,0,0);}
.m3a_c01422{transform:matrix(0.219142,-0.005259,0.005998,0.249928,0,0);-ms-transform:matrix(0.219142,-0.005259,0.005998,0.249928,0,0);-webkit-transform:matrix(0.219142,-0.005259,0.005998,0.249928,0,0);}
.m32_c01422{transform:matrix(0.222361,-0.005337,0.005998,0.249928,0,0);-ms-transform:matrix(0.222361,-0.005337,0.005998,0.249928,0,0);-webkit-transform:matrix(0.222361,-0.005337,0.005998,0.249928,0,0);}
.m14_c01422{transform:matrix(0.224000,-0.005600,0.006248,0.249922,0,0);-ms-transform:matrix(0.224000,-0.005600,0.006248,0.249922,0,0);-webkit-transform:matrix(0.224000,-0.005600,0.006248,0.249922,0,0);}
.m23_c01422{transform:matrix(0.225075,-0.005627,0.006248,0.249922,0,0);-ms-transform:matrix(0.225075,-0.005627,0.006248,0.249922,0,0);-webkit-transform:matrix(0.225075,-0.005627,0.006248,0.249922,0,0);}
.m25_c01422{transform:matrix(0.225525,-0.005413,0.005998,0.249928,0,0);-ms-transform:matrix(0.225525,-0.005413,0.005998,0.249928,0,0);-webkit-transform:matrix(0.225525,-0.005413,0.005998,0.249928,0,0);}
.m4f_c01422{transform:matrix(0.226266,-0.006335,0.006997,0.249902,0,0);-ms-transform:matrix(0.226266,-0.006335,0.006997,0.249902,0,0);-webkit-transform:matrix(0.226266,-0.006335,0.006997,0.249902,0,0);}
.m2_c01422{transform:matrix(0.226400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226400,0.000000,0.000000,0.250000,0,0);}
.m26_c01422{transform:matrix(0.227195,-0.005453,0.005998,0.249928,0,0);-ms-transform:matrix(0.227195,-0.005453,0.005998,0.249928,0,0);-webkit-transform:matrix(0.227195,-0.005453,0.005998,0.249928,0,0);}
.m0_c01422{transform:matrix(0.229455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229455,0.000000,0.000000,0.250000,0,0);}
.m3f_c01422{transform:matrix(0.229855,-0.006436,0.006997,0.249902,0,0);-ms-transform:matrix(0.229855,-0.006436,0.006997,0.249902,0,0);-webkit-transform:matrix(0.229855,-0.006436,0.006997,0.249902,0,0);}
.m40_c01422{transform:matrix(0.231519,-0.006483,0.006997,0.249902,0,0);-ms-transform:matrix(0.231519,-0.006483,0.006997,0.249902,0,0);-webkit-transform:matrix(0.231519,-0.006483,0.006997,0.249902,0,0);}
.m4d_c01422{transform:matrix(0.231659,-0.006486,0.006997,0.249902,0,0);-ms-transform:matrix(0.231659,-0.006486,0.006997,0.249902,0,0);-webkit-transform:matrix(0.231659,-0.006486,0.006997,0.249902,0,0);}
.m34_c01422{transform:matrix(0.233943,-0.005615,0.005998,0.249928,0,0);-ms-transform:matrix(0.233943,-0.005615,0.005998,0.249928,0,0);-webkit-transform:matrix(0.233943,-0.005615,0.005998,0.249928,0,0);}
.m50_c01422{transform:matrix(0.235318,-0.006589,0.006997,0.249902,0,0);-ms-transform:matrix(0.235318,-0.006589,0.006997,0.249902,0,0);-webkit-transform:matrix(0.235318,-0.006589,0.006997,0.249902,0,0);}
.m1a_c01422{transform:matrix(0.236136,-0.005903,0.006248,0.249922,0,0);-ms-transform:matrix(0.236136,-0.005903,0.006248,0.249922,0,0);-webkit-transform:matrix(0.236136,-0.005903,0.006248,0.249922,0,0);}
.m21_c01422{transform:matrix(0.236761,-0.005919,0.006248,0.249922,0,0);-ms-transform:matrix(0.236761,-0.005919,0.006248,0.249922,0,0);-webkit-transform:matrix(0.236761,-0.005919,0.006248,0.249922,0,0);}
.m2c_c01422{transform:matrix(0.238151,-0.005716,0.005998,0.249928,0,0);-ms-transform:matrix(0.238151,-0.005716,0.005998,0.249928,0,0);-webkit-transform:matrix(0.238151,-0.005716,0.005998,0.249928,0,0);}
.m17_c01422{transform:matrix(0.238565,-0.005964,0.006248,0.249922,0,0);-ms-transform:matrix(0.238565,-0.005964,0.006248,0.249922,0,0);-webkit-transform:matrix(0.238565,-0.005964,0.006248,0.249922,0,0);}
.m2d_c01422{transform:matrix(0.238646,-0.005728,0.005998,0.249928,0,0);-ms-transform:matrix(0.238646,-0.005728,0.005998,0.249928,0,0);-webkit-transform:matrix(0.238646,-0.005728,0.005998,0.249928,0,0);}
.m2a_c01422{transform:matrix(0.239766,-0.005754,0.005998,0.249928,0,0);-ms-transform:matrix(0.239766,-0.005754,0.005998,0.249928,0,0);-webkit-transform:matrix(0.239766,-0.005754,0.005998,0.249928,0,0);}
.m43_c01422{transform:matrix(0.240016,-0.006720,0.006997,0.249902,0,0);-ms-transform:matrix(0.240016,-0.006720,0.006997,0.249902,0,0);-webkit-transform:matrix(0.240016,-0.006720,0.006997,0.249902,0,0);}
.m29_c01422{transform:matrix(0.240791,-0.005779,0.005998,0.249928,0,0);-ms-transform:matrix(0.240791,-0.005779,0.005998,0.249928,0,0);-webkit-transform:matrix(0.240791,-0.005779,0.005998,0.249928,0,0);}
.m18_c01422{transform:matrix(0.241155,-0.006029,0.006248,0.249922,0,0);-ms-transform:matrix(0.241155,-0.006029,0.006248,0.249922,0,0);-webkit-transform:matrix(0.241155,-0.006029,0.006248,0.249922,0,0);}
.m31_c01422{transform:matrix(0.242260,-0.005814,0.005998,0.249928,0,0);-ms-transform:matrix(0.242260,-0.005814,0.005998,0.249928,0,0);-webkit-transform:matrix(0.242260,-0.005814,0.005998,0.249928,0,0);}
.m37_c01422{transform:matrix(0.242840,-0.005828,0.005998,0.249928,0,0);-ms-transform:matrix(0.242840,-0.005828,0.005998,0.249928,0,0);-webkit-transform:matrix(0.242840,-0.005828,0.005998,0.249928,0,0);}
.m39_c01422{transform:matrix(0.242950,-0.005831,0.005998,0.249928,0,0);-ms-transform:matrix(0.242950,-0.005831,0.005998,0.249928,0,0);-webkit-transform:matrix(0.242950,-0.005831,0.005998,0.249928,0,0);}
.m41_c01422{transform:matrix(0.243065,-0.006806,0.006997,0.249902,0,0);-ms-transform:matrix(0.243065,-0.006806,0.006997,0.249902,0,0);-webkit-transform:matrix(0.243065,-0.006806,0.006997,0.249902,0,0);}
.m4c_c01422{transform:matrix(0.243540,-0.006819,0.006997,0.249902,0,0);-ms-transform:matrix(0.243540,-0.006819,0.006997,0.249902,0,0);-webkit-transform:matrix(0.243540,-0.006819,0.006997,0.249902,0,0);}
.m27_c01422{transform:matrix(0.243960,-0.005855,0.005998,0.249928,0,0);-ms-transform:matrix(0.243960,-0.005855,0.005998,0.249928,0,0);-webkit-transform:matrix(0.243960,-0.005855,0.005998,0.249928,0,0);}
.m15_c01422{transform:matrix(0.247308,-0.006183,0.006248,0.249922,0,0);-ms-transform:matrix(0.247308,-0.006183,0.006248,0.249922,0,0);-webkit-transform:matrix(0.247308,-0.006183,0.006248,0.249922,0,0);}
.m1b_c01422{transform:matrix(0.248997,-0.006225,0.006248,0.249922,0,0);-ms-transform:matrix(0.248997,-0.006225,0.006248,0.249922,0,0);-webkit-transform:matrix(0.248997,-0.006225,0.006248,0.249922,0,0);}
.m36_c01422{transform:matrix(0.250323,-0.006008,0.005998,0.249928,0,0);-ms-transform:matrix(0.250323,-0.006008,0.005998,0.249928,0,0);-webkit-transform:matrix(0.250323,-0.006008,0.005998,0.249928,0,0);}
.m1d_c01422{transform:matrix(0.250572,-0.006264,0.006248,0.249922,0,0);-ms-transform:matrix(0.250572,-0.006264,0.006248,0.249922,0,0);-webkit-transform:matrix(0.250572,-0.006264,0.006248,0.249922,0,0);}
.m2f_c01422{transform:matrix(0.251822,-0.006044,0.005998,0.249928,0,0);-ms-transform:matrix(0.251822,-0.006044,0.005998,0.249928,0,0);-webkit-transform:matrix(0.251822,-0.006044,0.005998,0.249928,0,0);}
.m1c_c01422{transform:matrix(0.252141,-0.006304,0.006248,0.249922,0,0);-ms-transform:matrix(0.252141,-0.006304,0.006248,0.249922,0,0);-webkit-transform:matrix(0.252141,-0.006304,0.006248,0.249922,0,0);}
.m28_c01422{transform:matrix(0.254507,-0.006108,0.005998,0.249928,0,0);-ms-transform:matrix(0.254507,-0.006108,0.005998,0.249928,0,0);-webkit-transform:matrix(0.254507,-0.006108,0.005998,0.249928,0,0);}
.m4e_c01422{transform:matrix(0.256425,-0.007180,0.006997,0.249902,0,0);-ms-transform:matrix(0.256425,-0.007180,0.006997,0.249902,0,0);-webkit-transform:matrix(0.256425,-0.007180,0.006997,0.249902,0,0);}
.m4_c01422{transform:matrix(0.257880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257880,0.000000,0.000000,0.250000,0,0);}
.m38_c01422{transform:matrix(0.259190,-0.006221,0.005998,0.249928,0,0);-ms-transform:matrix(0.259190,-0.006221,0.005998,0.249928,0,0);-webkit-transform:matrix(0.259190,-0.006221,0.005998,0.249928,0,0);}
.m35_c01422{transform:matrix(0.286587,-0.006878,0.005998,0.249928,0,0);-ms-transform:matrix(0.286587,-0.006878,0.005998,0.249928,0,0);-webkit-transform:matrix(0.286587,-0.006878,0.005998,0.249928,0,0);}
.m4a_c01422{transform:matrix(0.290311,-0.008129,0.006997,0.249902,0,0);-ms-transform:matrix(0.290311,-0.008129,0.006997,0.249902,0,0);-webkit-transform:matrix(0.290311,-0.008129,0.006997,0.249902,0,0);}
.m48_c01422{transform:matrix(0.303391,-0.008495,0.006997,0.249902,0,0);-ms-transform:matrix(0.303391,-0.008495,0.006997,0.249902,0,0);-webkit-transform:matrix(0.303391,-0.008495,0.006997,0.249902,0,0);}
.m47_c01422{transform:matrix(0.310938,-0.008706,0.006997,0.249902,0,0);-ms-transform:matrix(0.310938,-0.008706,0.006997,0.249902,0,0);-webkit-transform:matrix(0.310938,-0.008706,0.006997,0.249902,0,0);}
.m5_c01422{transform:matrix(0.318070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318070,0.000000,0.000000,0.250000,0,0);}
.m49_c01422{transform:matrix(0.331625,-0.009286,0.006997,0.249902,0,0);-ms-transform:matrix(0.331625,-0.009286,0.006997,0.249902,0,0);-webkit-transform:matrix(0.331625,-0.009286,0.006997,0.249902,0,0);}
.m4b_c01422{transform:matrix(0.335144,-0.009384,0.006997,0.249902,0,0);-ms-transform:matrix(0.335144,-0.009384,0.006997,0.249902,0,0);-webkit-transform:matrix(0.335144,-0.009384,0.006997,0.249902,0,0);}
.m6_c01422{transform:matrix(0.445575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445575,0.000000,0.000000,0.250000,0,0);}
.m3c_c01422{transform:matrix(0.565582,-0.018683,0.008254,0.249864,0,0);-ms-transform:matrix(0.565582,-0.018683,0.008254,0.249864,0,0);-webkit-transform:matrix(0.565582,-0.018683,0.008254,0.249864,0,0);}
.m3d_c01422{transform:matrix(0.822846,-0.027181,0.008254,0.249864,0,0);-ms-transform:matrix(0.822846,-0.027181,0.008254,0.249864,0,0);-webkit-transform:matrix(0.822846,-0.027181,0.008254,0.249864,0,0);}
.m3b_c01422{transform:matrix(1.018564,-0.033646,0.008254,0.249864,0,0);-ms-transform:matrix(1.018564,-0.033646,0.008254,0.249864,0,0);-webkit-transform:matrix(1.018564,-0.033646,0.008254,0.249864,0,0);}
.m3e_c01422{transform:matrix(1.161077,-0.038354,0.008254,0.249864,0,0);-ms-transform:matrix(1.161077,-0.038354,0.008254,0.249864,0,0);-webkit-transform:matrix(1.161077,-0.038354,0.008254,0.249864,0,0);}
.v0_c01422{vertical-align:0.000000px;}
.ls0_c01422{letter-spacing:0.000000px;}
.sc__c01422{text-shadow:none;}
.sc0_c01422{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__c01422{-webkit-text-stroke:0px transparent;}
.sc0_c01422{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01422{word-spacing:0.000000px;}
.fc0_c01422{color:transparent;}
.fs8_c01422{font-size:23.989078px;}
.fs1_c01422{font-size:24.000000px;}
.fs0_c01422{font-size:30.000000px;}
.fs2_c01422{font-size:54.000000px;}
.fsa_c01422{font-size:60.023515px;}
.fs7_c01422{font-size:78.022461px;}
.fs5_c01422{font-size:78.024371px;}
.fsb_c01422{font-size:78.030570px;}
.fs3_c01422{font-size:84.000000px;}
.fs6_c01422{font-size:84.026246px;}
.fs9_c01422{font-size:84.032922px;}
.fs4_c01422{font-size:96.029995px;}
.y0_c01422{bottom:0.000000px;}
.y4d_c01422{bottom:723.577212px;}
.y4e_c01422{bottom:724.656540px;}
.y4f_c01422{bottom:725.937390px;}
.y50_c01422{bottom:728.352336px;}
.y51_c01422{bottom:729.277902px;}
.y48_c01422{bottom:758.963316px;}
.y49_c01422{bottom:760.080258px;}
.y4a_c01422{bottom:761.446554px;}
.y4b_c01422{bottom:763.975272px;}
.y4c_c01422{bottom:764.918328px;}
.y40_c01422{bottom:793.543500px;}
.y41_c01422{bottom:795.086202px;}
.y42_c01422{bottom:798.118266px;}
.y43_c01422{bottom:802.087182px;}
.y44_c01422{bottom:803.191992px;}
.y45_c01422{bottom:804.583536px;}
.y46_c01422{bottom:806.157108px;}
.y47_c01422{bottom:807.336006px;}
.y3c_c01422{bottom:824.826000px;}
.y3d_c01422{bottom:826.544690px;}
.y3e_c01422{bottom:827.916087px;}
.y3f_c01422{bottom:828.966873px;}
.y6_c01422{bottom:881.820000px;}
.y5_c01422{bottom:888.030000px;}
.y4_c01422{bottom:893.160000px;}
.y3_c01422{bottom:904.230000px;}
.y2_c01422{bottom:912.870000px;}
.y1_c01422{bottom:927.450000px;}
.y32_c01422{bottom:973.076640px;}
.y33_c01422{bottom:974.839452px;}
.y34_c01422{bottom:975.680520px;}
.y35_c01422{bottom:976.459920px;}
.y36_c01422{bottom:977.777664px;}
.y37_c01422{bottom:979.183428px;}
.y38_c01422{bottom:981.957120px;}
.y39_c01422{bottom:983.545044px;}
.y3a_c01422{bottom:985.120476px;}
.y3b_c01422{bottom:986.521776px;}
.y26_c01422{bottom:1011.157500px;}
.y27_c01422{bottom:1011.967896px;}
.y28_c01422{bottom:1012.758708px;}
.y29_c01422{bottom:1014.333348px;}
.y2a_c01422{bottom:1015.118148px;}
.y2b_c01422{bottom:1016.439996px;}
.y2c_c01422{bottom:1018.009416px;}
.y2d_c01422{bottom:1018.793892px;}
.y2e_c01422{bottom:1020.128844px;}
.y2f_c01422{bottom:1021.697652px;}
.y30_c01422{bottom:1022.482272px;}
.y31_c01422{bottom:1024.361256px;}
.y20_c01422{bottom:1044.615562px;}
.y21_c01422{bottom:1045.323975px;}
.y22_c01422{bottom:1046.113237px;}
.y23_c01422{bottom:1048.857900px;}
.y24_c01422{bottom:1049.628900px;}
.y25_c01422{bottom:1050.959063px;}
.y13_c01422{bottom:1079.455500px;}
.y14_c01422{bottom:1080.011850px;}
.y15_c01422{bottom:1080.808950px;}
.y16_c01422{bottom:1082.449200px;}
.y17_c01422{bottom:1083.280050px;}
.y18_c01422{bottom:1084.656788px;}
.y19_c01422{bottom:1086.297525px;}
.y1a_c01422{bottom:1087.114875px;}
.y1b_c01422{bottom:1088.743125px;}
.y1c_c01422{bottom:1090.403437px;}
.y1d_c01422{bottom:1091.234625px;}
.y1e_c01422{bottom:1093.449637px;}
.y1f_c01422{bottom:1095.904350px;}
.y8_c01422{bottom:1115.919000px;}
.y9_c01422{bottom:1117.662300px;}
.ya_c01422{bottom:1118.922787px;}
.yb_c01422{bottom:1119.739800px;}
.yc_c01422{bottom:1121.151637px;}
.yd_c01422{bottom:1123.374037px;}
.ye_c01422{bottom:1125.551737px;}
.yf_c01422{bottom:1126.357275px;}
.y10_c01422{bottom:1127.971725px;}
.y11_c01422{bottom:1130.725875px;}
.y12_c01422{bottom:1131.590962px;}
.y7_c01422{bottom:1197.436500px;}
.ha_c01422{height:23.989078px;}
.h3_c01422{height:24.000000px;}
.h2_c01422{height:30.000000px;}
.h4_c01422{height:54.000000px;}
.hc_c01422{height:60.023515px;}
.h9_c01422{height:78.022461px;}
.h7_c01422{height:78.024371px;}
.hd_c01422{height:78.030570px;}
.h5_c01422{height:84.000000px;}
.h8_c01422{height:84.026246px;}
.hb_c01422{height:84.032922px;}
.h6_c01422{height:96.029995px;}
.h1_c01422{height:1250.250000px;}
.h0_c01422{height:1250.370000px;}
.w0_c01422{width:912.000000px;}
.x0_c01422{left:0.000000px;}
.x1_c01422{left:6.480000px;}
.x2_c01422{left:7.830000px;}
.x5_c01422{left:144.280500px;}
.x10_c01422{left:146.332800px;}
.x1c_c01422{left:148.547138px;}
.x2d_c01422{left:150.439980px;}
.x39_c01422{left:152.770500px;}
.x41_c01422{left:154.786566px;}
.x11_c01422{left:168.586800px;}
.x1d_c01422{left:179.345175px;}
.x12_c01422{left:200.470800px;}
.x3a_c01422{left:207.867000px;}
.x45_c01422{left:209.297106px;}
.x6_c01422{left:214.012500px;}
.x2e_c01422{left:223.890480px;}
.x37_c01422{left:242.663361px;}
.x21_c01422{left:256.290000px;}
.x2f_c01422{left:258.934980px;}
.x7_c01422{left:264.432000px;}
.x13_c01422{left:266.080800px;}
.x42_c01422{left:273.068250px;}
.x38_c01422{left:274.473519px;}
.x22_c01422{left:290.056500px;}
.x30_c01422{left:291.409980px;}
.x8_c01422{left:297.112500px;}
.x14_c01422{left:299.314800px;}
.x3b_c01422{left:316.155000px;}
.x23_c01422{left:323.007000px;}
.x1e_c01422{left:333.009863px;}
.x31_c01422{left:346.315980px;}
.x9_c01422{left:353.586000px;}
.x1f_c01422{left:366.551550px;}
.x24_c01422{left:388.617000px;}
.x43_c01422{left:393.510354px;}
.x3_c01422{left:400.140000px;}
.x32_c01422{left:404.889480px;}
.x15_c01422{left:420.013800px;}
.x25_c01422{left:421.317000px;}
.x20_c01422{left:424.380938px;}
.x44_c01422{left:438.396132px;}
.x46_c01422{left:440.290266px;}
.xa_c01422{left:442.482000px;}
.x16_c01422{left:452.707800px;}
.x3c_c01422{left:457.902000px;}
.x26_c01422{left:476.394000px;}
.x4_c01422{left:484.380000px;}
.x3d_c01422{left:497.359500px;}
.x17_c01422{left:517.837800px;}
.x33_c01422{left:520.459980px;}
.xb_c01422{left:529.590000px;}
.x27_c01422{left:541.786500px;}
.x3e_c01422{left:547.057500px;}
.xc_c01422{left:561.811500px;}
.x28_c01422{left:574.473000px;}
.x18_c01422{left:584.250300px;}
.x34_c01422{left:586.623480px;}
.x3f_c01422{left:603.256500px;}
.x19_c01422{left:617.497800px;}
.xd_c01422{left:626.389500px;}
.x29_c01422{left:630.096000px;}
.x40_c01422{left:645.360000px;}
.x35_c01422{left:652.266480px;}
.x2a_c01422{left:695.463000px;}
.x1a_c01422{left:706.098300px;}
.x36_c01422{left:710.653980px;}
.x2b_c01422{left:728.155500px;}
.xe_c01422{left:736.555500px;}
.xf_c01422{left:771.159000px;}
.x1b_c01422{left:804.286800px;}
.x2c_c01422{left:806.446500px;}
@media print{
.v0_c01422{vertical-align:0.000000pt;}
.ls0_c01422{letter-spacing:0.000000pt;}
.ws0_c01422{word-spacing:0.000000pt;}
.fs8_c01422{font-size:21.323624pt;}
.fs1_c01422{font-size:21.333333pt;}
.fs0_c01422{font-size:26.666667pt;}
.fs2_c01422{font-size:48.000000pt;}
.fsa_c01422{font-size:53.354236pt;}
.fs7_c01422{font-size:69.353298pt;}
.fs5_c01422{font-size:69.354997pt;}
.fsb_c01422{font-size:69.360507pt;}
.fs3_c01422{font-size:74.666667pt;}
.fs6_c01422{font-size:74.689996pt;}
.fs9_c01422{font-size:74.695930pt;}
.fs4_c01422{font-size:85.359996pt;}
.y0_c01422{bottom:0.000000pt;}
.y4d_c01422{bottom:643.179744pt;}
.y4e_c01422{bottom:644.139147pt;}
.y4f_c01422{bottom:645.277680pt;}
.y50_c01422{bottom:647.424299pt;}
.y51_c01422{bottom:648.247024pt;}
.y48_c01422{bottom:674.634059pt;}
.y49_c01422{bottom:675.626896pt;}
.y4a_c01422{bottom:676.841381pt;}
.y4b_c01422{bottom:679.089131pt;}
.y4c_c01422{bottom:679.927403pt;}
.y40_c01422{bottom:705.372000pt;}
.y41_c01422{bottom:706.743291pt;}
.y42_c01422{bottom:709.438459pt;}
.y43_c01422{bottom:712.966384pt;}
.y44_c01422{bottom:713.948437pt;}
.y45_c01422{bottom:715.185365pt;}
.y46_c01422{bottom:716.584096pt;}
.y47_c01422{bottom:717.632005pt;}
.y3c_c01422{bottom:733.178667pt;}
.y3d_c01422{bottom:734.706391pt;}
.y3e_c01422{bottom:735.925411pt;}
.y3f_c01422{bottom:736.859443pt;}
.y6_c01422{bottom:783.840000pt;}
.y5_c01422{bottom:789.360000pt;}
.y4_c01422{bottom:793.920000pt;}
.y3_c01422{bottom:803.760000pt;}
.y2_c01422{bottom:811.440000pt;}
.y1_c01422{bottom:824.400000pt;}
.y32_c01422{bottom:864.957013pt;}
.y33_c01422{bottom:866.523957pt;}
.y34_c01422{bottom:867.271573pt;}
.y35_c01422{bottom:867.964373pt;}
.y36_c01422{bottom:869.135701pt;}
.y37_c01422{bottom:870.385269pt;}
.y38_c01422{bottom:872.850773pt;}
.y39_c01422{bottom:874.262261pt;}
.y3a_c01422{bottom:875.662645pt;}
.y3b_c01422{bottom:876.908245pt;}
.y26_c01422{bottom:898.806667pt;}
.y27_c01422{bottom:899.527019pt;}
.y28_c01422{bottom:900.229963pt;}
.y29_c01422{bottom:901.629643pt;}
.y2a_c01422{bottom:902.327243pt;}
.y2b_c01422{bottom:903.502219pt;}
.y2c_c01422{bottom:904.897259pt;}
.y2d_c01422{bottom:905.594571pt;}
.y2e_c01422{bottom:906.781195pt;}
.y2f_c01422{bottom:908.175691pt;}
.y30_c01422{bottom:908.873131pt;}
.y31_c01422{bottom:910.543339pt;}
.y20_c01422{bottom:928.547167pt;}
.y21_c01422{bottom:929.176867pt;}
.y22_c01422{bottom:929.878433pt;}
.y23_c01422{bottom:932.318133pt;}
.y24_c01422{bottom:933.003467pt;}
.y25_c01422{bottom:934.185833pt;}
.y13_c01422{bottom:959.516000pt;}
.y14_c01422{bottom:960.010533pt;}
.y15_c01422{bottom:960.719067pt;}
.y16_c01422{bottom:962.177067pt;}
.y17_c01422{bottom:962.915600pt;}
.y18_c01422{bottom:964.139367pt;}
.y19_c01422{bottom:965.597800pt;}
.y1a_c01422{bottom:966.324333pt;}
.y1b_c01422{bottom:967.771667pt;}
.y1c_c01422{bottom:969.247500pt;}
.y1d_c01422{bottom:969.986333pt;}
.y1e_c01422{bottom:971.955233pt;}
.y1f_c01422{bottom:974.137200pt;}
.y8_c01422{bottom:991.928000pt;}
.y9_c01422{bottom:993.477600pt;}
.ya_c01422{bottom:994.598033pt;}
.yb_c01422{bottom:995.324267pt;}
.yc_c01422{bottom:996.579233pt;}
.yd_c01422{bottom:998.554700pt;}
.ye_c01422{bottom:1000.490433pt;}
.yf_c01422{bottom:1001.206467pt;}
.y10_c01422{bottom:1002.641533pt;}
.y11_c01422{bottom:1005.089667pt;}
.y12_c01422{bottom:1005.858633pt;}
.y7_c01422{bottom:1064.388000pt;}
.ha_c01422{height:21.323624pt;}
.h3_c01422{height:21.333333pt;}
.h2_c01422{height:26.666667pt;}
.h4_c01422{height:48.000000pt;}
.hc_c01422{height:53.354236pt;}
.h9_c01422{height:69.353298pt;}
.h7_c01422{height:69.354997pt;}
.hd_c01422{height:69.360507pt;}
.h5_c01422{height:74.666667pt;}
.h8_c01422{height:74.689996pt;}
.hb_c01422{height:74.695930pt;}
.h6_c01422{height:85.359996pt;}
.h1_c01422{height:1111.333333pt;}
.h0_c01422{height:1111.440000pt;}
.w0_c01422{width:810.666667pt;}
.x0_c01422{left:0.000000pt;}
.x1_c01422{left:5.760000pt;}
.x2_c01422{left:6.960000pt;}
.x5_c01422{left:128.249333pt;}
.x10_c01422{left:130.073600pt;}
.x1c_c01422{left:132.041900pt;}
.x2d_c01422{left:133.724427pt;}
.x39_c01422{left:135.796000pt;}
.x41_c01422{left:137.588059pt;}
.x11_c01422{left:149.854933pt;}
.x1d_c01422{left:159.417933pt;}
.x12_c01422{left:178.196267pt;}
.x3a_c01422{left:184.770667pt;}
.x45_c01422{left:186.041872pt;}
.x6_c01422{left:190.233333pt;}
.x2e_c01422{left:199.013760pt;}
.x37_c01422{left:215.700765pt;}
.x21_c01422{left:227.813333pt;}
.x2f_c01422{left:230.164427pt;}
.x7_c01422{left:235.050667pt;}
.x13_c01422{left:236.516267pt;}
.x42_c01422{left:242.727333pt;}
.x38_c01422{left:243.976461pt;}
.x22_c01422{left:257.828000pt;}
.x30_c01422{left:259.031093pt;}
.x8_c01422{left:264.100000pt;}
.x14_c01422{left:266.057600pt;}
.x3b_c01422{left:281.026667pt;}
.x23_c01422{left:287.117333pt;}
.x1e_c01422{left:296.008767pt;}
.x31_c01422{left:307.836427pt;}
.x9_c01422{left:314.298667pt;}
.x1f_c01422{left:325.823600pt;}
.x24_c01422{left:345.437333pt;}
.x43_c01422{left:349.786981pt;}
.x3_c01422{left:355.680000pt;}
.x32_c01422{left:359.901760pt;}
.x15_c01422{left:373.345600pt;}
.x25_c01422{left:374.504000pt;}
.x20_c01422{left:377.227500pt;}
.x44_c01422{left:389.685451pt;}
.x46_c01422{left:391.369125pt;}
.xa_c01422{left:393.317333pt;}
.x16_c01422{left:402.406933pt;}
.x3c_c01422{left:407.024000pt;}
.x26_c01422{left:423.461333pt;}
.x4_c01422{left:430.560000pt;}
.x3d_c01422{left:442.097333pt;}
.x17_c01422{left:460.300267pt;}
.x33_c01422{left:462.631093pt;}
.xb_c01422{left:470.746667pt;}
.x27_c01422{left:481.588000pt;}
.x3e_c01422{left:486.273333pt;}
.xc_c01422{left:499.388000pt;}
.x28_c01422{left:510.642667pt;}
.x18_c01422{left:519.333600pt;}
.x34_c01422{left:521.443093pt;}
.x3f_c01422{left:536.228000pt;}
.x19_c01422{left:548.886933pt;}
.xd_c01422{left:556.790667pt;}
.x29_c01422{left:560.085333pt;}
.x40_c01422{left:573.653333pt;}
.x35_c01422{left:579.792427pt;}
.x2a_c01422{left:618.189333pt;}
.x1a_c01422{left:627.642933pt;}
.x36_c01422{left:631.692427pt;}
.x2b_c01422{left:647.249333pt;}
.xe_c01422{left:654.716000pt;}
.xf_c01422{left:685.474667pt;}
.x1b_c01422{left:714.921600pt;}
.x2c_c01422{left:716.841333pt;}
}





/* 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_c01423 {
    display:none;
  }
  .loading-indicator_c01423.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01423 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_c01423 { 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_c01423" -> "#page-container .classname_c01423")
 */
.pf_c01423 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01423 { /* 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_c01423.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01423 { /* 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_c01423 { /* 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_c01423 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01423 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01423 {overflow:visible;}
  }
}
.c_c01423 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01423 { /* 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_c01423:after { /* webkit #35443 */
  content: '';
}
.t_c01423:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01423 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 */
}
.__c01423 { /* 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_c01423 { /* info for Javascript */
  display:none;
}
.l_c01423 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01423 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01423 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01423: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_c01423 {
    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_c01423.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01423.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_c01423 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01423{font-family:sans-serif;visibility:hidden;}
.sc__c01423{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01423{-webkit-text-stroke:0px transparent;}
}
.y0_c01423{bottom:0.000000px;}
.h1_c01423{height:1250.250000px;}
.h0_c01423{height:1250.370000px;}
.w0_c01423{width:912.000000px;}
.x0_c01423{left:0.000000px;}
@media print{
.y0_c01423{bottom:0.000000pt;}
.h1_c01423{height:1111.333333pt;}
.h0_c01423{height:1111.440000pt;}
.w0_c01423{width:810.666667pt;}
.x0_c01423{left:0.000000pt;}
}





/* 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_c01424 {
    display:none;
  }
  .loading-indicator_c01424.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01424 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_c01424 { 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_c01424" -> "#page-container .classname_c01424")
 */
.pf_c01424 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01424 { /* 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_c01424.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01424 { /* 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_c01424 { /* 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_c01424 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01424 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01424 {overflow:visible;}
  }
}
.c_c01424 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01424 { /* 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_c01424:after { /* webkit #35443 */
  content: '';
}
.t_c01424:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01424 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 */
}
.__c01424 { /* 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_c01424 { /* info for Javascript */
  display:none;
}
.l_c01424 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01424 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01424 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01424: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_c01424 {
    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_c01424.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01424.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_c01424 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01424{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01424;src:url('chunks/assets/font_c605e72f209fc835e906f064.woff2')format("woff");}.ff1_c01424{font-family:ff1_c01424;line-height:1.000000;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;}
.m81_c01424{transform:matrix(0.007485,0.000075,-0.002500,0.249988,0,0);-ms-transform:matrix(0.007485,0.000075,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.007485,0.000075,-0.002500,0.249988,0,0);}
.m82_c01424{transform:matrix(0.013234,0.000132,-0.002500,0.249988,0,0);-ms-transform:matrix(0.013234,0.000132,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.013234,0.000132,-0.002500,0.249988,0,0);}
.m67_c01424{transform:matrix(0.024473,0.000294,-0.003000,0.249982,0,0);-ms-transform:matrix(0.024473,0.000294,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.024473,0.000294,-0.003000,0.249982,0,0);}
.mb3_c01424{transform:matrix(0.032145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032145,0.000000,0.000000,0.250000,0,0);}
.mb8_c01424{transform:matrix(0.040660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.040660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.040660,0.000000,0.000000,0.250000,0,0);}
.mb2_c01424{transform:matrix(0.077675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.077675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.077675,0.000000,0.000000,0.250000,0,0);}
.mb5_c01424{transform:matrix(0.087410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087410,0.000000,0.000000,0.250000,0,0);}
.m96_c01424{transform:matrix(0.109165,0.001092,-0.002500,0.249988,0,0);-ms-transform:matrix(0.109165,0.001092,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.109165,0.001092,-0.002500,0.249988,0,0);}
.m2_c01424{transform:matrix(0.113640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113640,0.000000,0.000000,0.250000,0,0);}
.m35_c01424{transform:matrix(0.132246,0.002248,-0.004249,0.249964,0,0);-ms-transform:matrix(0.132246,0.002248,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.132246,0.002248,-0.004249,0.249964,0,0);}
.m98_c01424{transform:matrix(0.132653,0.001327,-0.002500,0.249988,0,0);-ms-transform:matrix(0.132653,0.001327,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.132653,0.001327,-0.002500,0.249988,0,0);}
.m97_c01424{transform:matrix(0.137558,0.001376,-0.002500,0.249988,0,0);-ms-transform:matrix(0.137558,0.001376,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.137558,0.001376,-0.002500,0.249988,0,0);}
.m5a_c01424{transform:matrix(0.137670,0.001652,-0.003000,0.249982,0,0);-ms-transform:matrix(0.137670,0.001652,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.137670,0.001652,-0.003000,0.249982,0,0);}
.m36_c01424{transform:matrix(0.140440,0.002387,-0.004249,0.249964,0,0);-ms-transform:matrix(0.140440,0.002387,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.140440,0.002387,-0.004249,0.249964,0,0);}
.m95_c01424{transform:matrix(0.141748,0.001417,-0.002500,0.249988,0,0);-ms-transform:matrix(0.141748,0.001417,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.141748,0.001417,-0.002500,0.249988,0,0);}
.m83_c01424{transform:matrix(0.141955,0.001703,-0.003000,0.249982,0,0);-ms-transform:matrix(0.141955,0.001703,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.141955,0.001703,-0.003000,0.249982,0,0);}
.mbb_c01424{transform:matrix(0.143435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143435,0.000000,0.000000,0.250000,0,0);}
.mdc_c01424{transform:matrix(0.144425,0.001733,-0.003000,0.249982,0,0);-ms-transform:matrix(0.144425,0.001733,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.144425,0.001733,-0.003000,0.249982,0,0);}
.m99_c01424{transform:matrix(0.150362,0.001504,-0.002500,0.249988,0,0);-ms-transform:matrix(0.150362,0.001504,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.150362,0.001504,-0.002500,0.249988,0,0);}
.m18_c01424{transform:matrix(0.151783,0.002580,-0.004249,0.249964,0,0);-ms-transform:matrix(0.151783,0.002580,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.151783,0.002580,-0.004249,0.249964,0,0);}
.mad_c01424{transform:matrix(0.152110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152110,0.000000,0.000000,0.250000,0,0);}
.m9e_c01424{transform:matrix(0.160192,0.001602,-0.002500,0.249988,0,0);-ms-transform:matrix(0.160192,0.001602,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.160192,0.001602,-0.002500,0.249988,0,0);}
.m9a_c01424{transform:matrix(0.161472,0.001615,-0.002500,0.249988,0,0);-ms-transform:matrix(0.161472,0.001615,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.161472,0.001615,-0.002500,0.249988,0,0);}
.ma1_c01424{transform:matrix(0.163742,0.001637,-0.002500,0.249988,0,0);-ms-transform:matrix(0.163742,0.001637,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.163742,0.001637,-0.002500,0.249988,0,0);}
.m0_c01424{transform:matrix(0.169085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169085,0.000000,0.000000,0.250000,0,0);}
.m3b_c01424{transform:matrix(0.172810,0.002938,-0.004249,0.249964,0,0);-ms-transform:matrix(0.172810,0.002938,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.172810,0.002938,-0.004249,0.249964,0,0);}
.m9c_c01424{transform:matrix(0.173261,0.001733,-0.002500,0.249988,0,0);-ms-transform:matrix(0.173261,0.001733,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.173261,0.001733,-0.002500,0.249988,0,0);}
.maf_c01424{transform:matrix(0.178190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178190,0.000000,0.000000,0.250000,0,0);}
.m4e_c01424{transform:matrix(0.180424,0.003067,-0.004249,0.249964,0,0);-ms-transform:matrix(0.180424,0.003067,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.180424,0.003067,-0.004249,0.249964,0,0);}
.mac_c01424{transform:matrix(0.181400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181400,0.000000,0.000000,0.250000,0,0);}
.m31_c01424{transform:matrix(0.183518,0.003120,-0.004249,0.249964,0,0);-ms-transform:matrix(0.183518,0.003120,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.183518,0.003120,-0.004249,0.249964,0,0);}
.mc3_c01424{transform:matrix(0.185540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185540,0.000000,0.000000,0.250000,0,0);}
.m61_c01424{transform:matrix(0.186797,0.002242,-0.003000,0.249982,0,0);-ms-transform:matrix(0.186797,0.002242,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.186797,0.002242,-0.003000,0.249982,0,0);}
.m34_c01424{transform:matrix(0.187118,0.003181,-0.004249,0.249964,0,0);-ms-transform:matrix(0.187118,0.003181,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.187118,0.003181,-0.004249,0.249964,0,0);}
.m33_c01424{transform:matrix(0.189618,0.003223,-0.004249,0.249964,0,0);-ms-transform:matrix(0.189618,0.003223,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.189618,0.003223,-0.004249,0.249964,0,0);}
.m1e_c01424{transform:matrix(0.189893,0.003228,-0.004249,0.249964,0,0);-ms-transform:matrix(0.189893,0.003228,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.189893,0.003228,-0.004249,0.249964,0,0);}
.m89_c01424{transform:matrix(0.190981,0.002292,-0.003000,0.249982,0,0);-ms-transform:matrix(0.190981,0.002292,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.190981,0.002292,-0.003000,0.249982,0,0);}
.mde_c01424{transform:matrix(0.191536,0.002298,-0.003000,0.249982,0,0);-ms-transform:matrix(0.191536,0.002298,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.191536,0.002298,-0.003000,0.249982,0,0);}
.m85_c01424{transform:matrix(0.192646,0.002312,-0.003000,0.249982,0,0);-ms-transform:matrix(0.192646,0.002312,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.192646,0.002312,-0.003000,0.249982,0,0);}
.mc6_c01424{transform:matrix(0.194183,0.002913,-0.003750,0.249972,0,0);-ms-transform:matrix(0.194183,0.002913,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.194183,0.002913,-0.003750,0.249972,0,0);}
.m32_c01424{transform:matrix(0.195032,0.003316,-0.004249,0.249964,0,0);-ms-transform:matrix(0.195032,0.003316,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.195032,0.003316,-0.004249,0.249964,0,0);}
.m9f_c01424{transform:matrix(0.195235,0.001952,-0.002500,0.249988,0,0);-ms-transform:matrix(0.195235,0.001952,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.195235,0.001952,-0.002500,0.249988,0,0);}
.m2f_c01424{transform:matrix(0.195812,0.003329,-0.004249,0.249964,0,0);-ms-transform:matrix(0.195812,0.003329,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.195812,0.003329,-0.004249,0.249964,0,0);}
.m71_c01424{transform:matrix(0.196050,0.001961,-0.002500,0.249988,0,0);-ms-transform:matrix(0.196050,0.001961,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.196050,0.001961,-0.002500,0.249988,0,0);}
.m30_c01424{transform:matrix(0.199251,0.003387,-0.004249,0.249964,0,0);-ms-transform:matrix(0.199251,0.003387,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.199251,0.003387,-0.004249,0.249964,0,0);}
.m4f_c01424{transform:matrix(0.200126,0.002402,-0.003000,0.249982,0,0);-ms-transform:matrix(0.200126,0.002402,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.200126,0.002402,-0.003000,0.249982,0,0);}
.m77_c01424{transform:matrix(0.200335,0.002003,-0.002500,0.249988,0,0);-ms-transform:matrix(0.200335,0.002003,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.200335,0.002003,-0.002500,0.249988,0,0);}
.m4c_c01424{transform:matrix(0.200966,0.003416,-0.004249,0.249964,0,0);-ms-transform:matrix(0.200966,0.003416,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.200966,0.003416,-0.004249,0.249964,0,0);}
.m73_c01424{transform:matrix(0.203290,0.002033,-0.002500,0.249988,0,0);-ms-transform:matrix(0.203290,0.002033,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.203290,0.002033,-0.002500,0.249988,0,0);}
.m48_c01424{transform:matrix(0.203651,0.003462,-0.004249,0.249964,0,0);-ms-transform:matrix(0.203651,0.003462,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.203651,0.003462,-0.004249,0.249964,0,0);}
.m7d_c01424{transform:matrix(0.204450,0.002044,-0.002500,0.249988,0,0);-ms-transform:matrix(0.204450,0.002044,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.204450,0.002044,-0.002500,0.249988,0,0);}
.m49_c01424{transform:matrix(0.205275,0.003490,-0.004249,0.249964,0,0);-ms-transform:matrix(0.205275,0.003490,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.205275,0.003490,-0.004249,0.249964,0,0);}
.ma7_c01424{transform:matrix(0.207000,0.002484,-0.003000,0.249982,0,0);-ms-transform:matrix(0.207000,0.002484,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.207000,0.002484,-0.003000,0.249982,0,0);}
.mae_c01424{transform:matrix(0.207040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207040,0.000000,0.000000,0.250000,0,0);}
.mda_c01424{transform:matrix(0.207417,0.003111,-0.003750,0.249972,0,0);-ms-transform:matrix(0.207417,0.003111,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.207417,0.003111,-0.003750,0.249972,0,0);}
.m7a_c01424{transform:matrix(0.208740,0.002087,-0.002500,0.249988,0,0);-ms-transform:matrix(0.208740,0.002087,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.208740,0.002087,-0.002500,0.249988,0,0);}
.m78_c01424{transform:matrix(0.209210,0.002092,-0.002500,0.249988,0,0);-ms-transform:matrix(0.209210,0.002092,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.209210,0.002092,-0.002500,0.249988,0,0);}
.m45_c01424{transform:matrix(0.209850,0.003567,-0.004249,0.249964,0,0);-ms-transform:matrix(0.209850,0.003567,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.209850,0.003567,-0.004249,0.249964,0,0);}
.md8_c01424{transform:matrix(0.210681,0.003160,-0.003750,0.249972,0,0);-ms-transform:matrix(0.210681,0.003160,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.210681,0.003160,-0.003750,0.249972,0,0);}
.me2_c01424{transform:matrix(0.212135,0.002546,-0.003000,0.249982,0,0);-ms-transform:matrix(0.212135,0.002546,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.212135,0.002546,-0.003000,0.249982,0,0);}
.m74_c01424{transform:matrix(0.213764,0.002138,-0.002500,0.249988,0,0);-ms-transform:matrix(0.213764,0.002138,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.213764,0.002138,-0.002500,0.249988,0,0);}
.m43_c01424{transform:matrix(0.214174,0.003641,-0.004249,0.249964,0,0);-ms-transform:matrix(0.214174,0.003641,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.214174,0.003641,-0.004249,0.249964,0,0);}
.m7b_c01424{transform:matrix(0.214609,0.002146,-0.002500,0.249988,0,0);-ms-transform:matrix(0.214609,0.002146,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.214609,0.002146,-0.002500,0.249988,0,0);}
.me4_c01424{transform:matrix(0.214650,0.002576,-0.003000,0.249982,0,0);-ms-transform:matrix(0.214650,0.002576,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.214650,0.002576,-0.003000,0.249982,0,0);}
.mbf_c01424{transform:matrix(0.215060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215060,0.000000,0.000000,0.250000,0,0);}
.mca_c01424{transform:matrix(0.215731,0.003236,-0.003750,0.249972,0,0);-ms-transform:matrix(0.215731,0.003236,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.215731,0.003236,-0.003750,0.249972,0,0);}
.m75_c01424{transform:matrix(0.215949,0.002159,-0.002500,0.249988,0,0);-ms-transform:matrix(0.215949,0.002159,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.215949,0.002159,-0.002500,0.249988,0,0);}
.md0_c01424{transform:matrix(0.216126,0.003242,-0.003750,0.249972,0,0);-ms-transform:matrix(0.216126,0.003242,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.216126,0.003242,-0.003750,0.249972,0,0);}
.m5_c01424{transform:matrix(0.216995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216995,0.000000,0.000000,0.250000,0,0);}
.mcc_c01424{transform:matrix(0.217366,0.003260,-0.003750,0.249972,0,0);-ms-transform:matrix(0.217366,0.003260,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.217366,0.003260,-0.003750,0.249972,0,0);}
.m24_c01424{transform:matrix(0.218223,0.003710,-0.004249,0.249964,0,0);-ms-transform:matrix(0.218223,0.003710,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.218223,0.003710,-0.004249,0.249964,0,0);}
.m93_c01424{transform:matrix(0.220874,0.002650,-0.003000,0.249982,0,0);-ms-transform:matrix(0.220874,0.002650,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.220874,0.002650,-0.003000,0.249982,0,0);}
.me0_c01424{transform:matrix(0.221439,0.002657,-0.003000,0.249982,0,0);-ms-transform:matrix(0.221439,0.002657,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.221439,0.002657,-0.003000,0.249982,0,0);}
.m21_c01424{transform:matrix(0.222093,0.003776,-0.004249,0.249964,0,0);-ms-transform:matrix(0.222093,0.003776,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.222093,0.003776,-0.004249,0.249964,0,0);}
.m1d_c01424{transform:matrix(0.222113,0.003776,-0.004249,0.249964,0,0);-ms-transform:matrix(0.222113,0.003776,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.222113,0.003776,-0.004249,0.249964,0,0);}
.m1a_c01424{transform:matrix(0.222163,0.003777,-0.004249,0.249964,0,0);-ms-transform:matrix(0.222163,0.003777,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.222163,0.003777,-0.004249,0.249964,0,0);}
.m4b_c01424{transform:matrix(0.222638,0.003785,-0.004249,0.249964,0,0);-ms-transform:matrix(0.222638,0.003785,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.222638,0.003785,-0.004249,0.249964,0,0);}
.mce_c01424{transform:matrix(0.222710,0.003341,-0.003750,0.249972,0,0);-ms-transform:matrix(0.222710,0.003341,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.222710,0.003341,-0.003750,0.249972,0,0);}
.med_c01424{transform:matrix(0.223364,0.002680,-0.003000,0.249982,0,0);-ms-transform:matrix(0.223364,0.002680,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.223364,0.002680,-0.003000,0.249982,0,0);}
.m72_c01424{transform:matrix(0.223684,0.002237,-0.002500,0.249988,0,0);-ms-transform:matrix(0.223684,0.002237,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.223684,0.002237,-0.002500,0.249988,0,0);}
.m3c_c01424{transform:matrix(0.223918,0.003807,-0.004249,0.249964,0,0);-ms-transform:matrix(0.223918,0.003807,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.223918,0.003807,-0.004249,0.249964,0,0);}
.md3_c01424{transform:matrix(0.225220,0.003378,-0.003750,0.249972,0,0);-ms-transform:matrix(0.225220,0.003378,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.225220,0.003378,-0.003750,0.249972,0,0);}
.md4_c01424{transform:matrix(0.225290,0.003379,-0.003750,0.249972,0,0);-ms-transform:matrix(0.225290,0.003379,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.225290,0.003379,-0.003750,0.249972,0,0);}
.m2d_c01424{transform:matrix(0.225812,0.003839,-0.004249,0.249964,0,0);-ms-transform:matrix(0.225812,0.003839,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.225812,0.003839,-0.004249,0.249964,0,0);}
.ma6_c01424{transform:matrix(0.226319,0.002716,-0.003000,0.249982,0,0);-ms-transform:matrix(0.226319,0.002716,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.226319,0.002716,-0.003000,0.249982,0,0);}
.md7_c01424{transform:matrix(0.226550,0.003398,-0.003750,0.249972,0,0);-ms-transform:matrix(0.226550,0.003398,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.226550,0.003398,-0.003750,0.249972,0,0);}
.m6f_c01424{transform:matrix(0.226764,0.002268,-0.002500,0.249988,0,0);-ms-transform:matrix(0.226764,0.002268,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.226764,0.002268,-0.002500,0.249988,0,0);}
.m46_c01424{transform:matrix(0.226827,0.003856,-0.004249,0.249964,0,0);-ms-transform:matrix(0.226827,0.003856,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.226827,0.003856,-0.004249,0.249964,0,0);}
.ma8_c01424{transform:matrix(0.226969,0.002724,-0.003000,0.249982,0,0);-ms-transform:matrix(0.226969,0.002724,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.226969,0.002724,-0.003000,0.249982,0,0);}
.m91_c01424{transform:matrix(0.227244,0.002727,-0.003000,0.249982,0,0);-ms-transform:matrix(0.227244,0.002727,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.227244,0.002727,-0.003000,0.249982,0,0);}
.m8f_c01424{transform:matrix(0.227629,0.002732,-0.003000,0.249982,0,0);-ms-transform:matrix(0.227629,0.002732,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.227629,0.002732,-0.003000,0.249982,0,0);}
.mb4_c01424{transform:matrix(0.228280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228280,0.000000,0.000000,0.250000,0,0);}
.m8e_c01424{transform:matrix(0.228319,0.002740,-0.003000,0.249982,0,0);-ms-transform:matrix(0.228319,0.002740,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.228319,0.002740,-0.003000,0.249982,0,0);}
.m5e_c01424{transform:matrix(0.228549,0.002743,-0.003000,0.249982,0,0);-ms-transform:matrix(0.228549,0.002743,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.228549,0.002743,-0.003000,0.249982,0,0);}
.m6e_c01424{transform:matrix(0.229114,0.002291,-0.002500,0.249988,0,0);-ms-transform:matrix(0.229114,0.002291,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.229114,0.002291,-0.002500,0.249988,0,0);}
.me9_c01424{transform:matrix(0.229868,0.002758,-0.003000,0.249982,0,0);-ms-transform:matrix(0.229868,0.002758,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.229868,0.002758,-0.003000,0.249982,0,0);}
.m1_c01424{transform:matrix(0.229885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229885,0.000000,0.000000,0.250000,0,0);}
.m7c_c01424{transform:matrix(0.230133,0.002301,-0.002500,0.249988,0,0);-ms-transform:matrix(0.230133,0.002301,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.230133,0.002301,-0.002500,0.249988,0,0);}
.m76_c01424{transform:matrix(0.230713,0.002307,-0.002500,0.249988,0,0);-ms-transform:matrix(0.230713,0.002307,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.230713,0.002307,-0.002500,0.249988,0,0);}
.m90_c01424{transform:matrix(0.231028,0.002772,-0.003000,0.249982,0,0);-ms-transform:matrix(0.231028,0.002772,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.231028,0.002772,-0.003000,0.249982,0,0);}
.m9b_c01424{transform:matrix(0.231053,0.002311,-0.002500,0.249988,0,0);-ms-transform:matrix(0.231053,0.002311,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.231053,0.002311,-0.002500,0.249988,0,0);}
.m8b_c01424{transform:matrix(0.231683,0.002780,-0.003000,0.249982,0,0);-ms-transform:matrix(0.231683,0.002780,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.231683,0.002780,-0.003000,0.249982,0,0);}
.m66_c01424{transform:matrix(0.232338,0.002788,-0.003000,0.249982,0,0);-ms-transform:matrix(0.232338,0.002788,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.232338,0.002788,-0.003000,0.249982,0,0);}
.mee_c01424{transform:matrix(0.232478,0.002790,-0.003000,0.249982,0,0);-ms-transform:matrix(0.232478,0.002790,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.232478,0.002790,-0.003000,0.249982,0,0);}
.m1b_c01424{transform:matrix(0.233601,0.003971,-0.004249,0.249964,0,0);-ms-transform:matrix(0.233601,0.003971,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.233601,0.003971,-0.004249,0.249964,0,0);}
.mcb_c01424{transform:matrix(0.233874,0.003508,-0.003750,0.249972,0,0);-ms-transform:matrix(0.233874,0.003508,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.233874,0.003508,-0.003750,0.249972,0,0);}
.mbd_c01424{transform:matrix(0.234890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234890,0.000000,0.000000,0.250000,0,0);}
.m22_c01424{transform:matrix(0.235541,0.004004,-0.004249,0.249964,0,0);-ms-transform:matrix(0.235541,0.004004,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.235541,0.004004,-0.004249,0.249964,0,0);}
.maa_c01424{transform:matrix(0.235703,0.002828,-0.003000,0.249982,0,0);-ms-transform:matrix(0.235703,0.002828,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.235703,0.002828,-0.003000,0.249982,0,0);}
.mbc_c01424{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m44_c01424{transform:matrix(0.236041,0.004013,-0.004249,0.249964,0,0);-ms-transform:matrix(0.236041,0.004013,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.236041,0.004013,-0.004249,0.249964,0,0);}
.m5f_c01424{transform:matrix(0.236463,0.002838,-0.003000,0.249982,0,0);-ms-transform:matrix(0.236463,0.002838,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.236463,0.002838,-0.003000,0.249982,0,0);}
.ma3_c01424{transform:matrix(0.236538,0.004731,-0.004999,0.249950,0,0);-ms-transform:matrix(0.236538,0.004731,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.236538,0.004731,-0.004999,0.249950,0,0);}
.m41_c01424{transform:matrix(0.236691,0.004024,-0.004249,0.249964,0,0);-ms-transform:matrix(0.236691,0.004024,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.236691,0.004024,-0.004249,0.249964,0,0);}
.m3e_c01424{transform:matrix(0.237231,0.004033,-0.004249,0.249964,0,0);-ms-transform:matrix(0.237231,0.004033,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.237231,0.004033,-0.004249,0.249964,0,0);}
.m14_c01424{transform:matrix(0.237727,0.004517,-0.004749,0.249955,0,0);-ms-transform:matrix(0.237727,0.004517,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.237727,0.004517,-0.004749,0.249955,0,0);}
.meb_c01424{transform:matrix(0.237738,0.002853,-0.003000,0.249982,0,0);-ms-transform:matrix(0.237738,0.002853,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.237738,0.002853,-0.003000,0.249982,0,0);}
.m10_c01424{transform:matrix(0.237787,0.004518,-0.004749,0.249955,0,0);-ms-transform:matrix(0.237787,0.004518,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.237787,0.004518,-0.004749,0.249955,0,0);}
.mb0_c01424{transform:matrix(0.238135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238135,0.000000,0.000000,0.250000,0,0);}
.mc_c01424{transform:matrix(0.238312,0.004528,-0.004749,0.249955,0,0);-ms-transform:matrix(0.238312,0.004528,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.238312,0.004528,-0.004749,0.249955,0,0);}
.m6_c01424{transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);}
.m79_c01424{transform:matrix(0.239258,0.002393,-0.002500,0.249988,0,0);-ms-transform:matrix(0.239258,0.002393,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.239258,0.002393,-0.002500,0.249988,0,0);}
.m3f_c01424{transform:matrix(0.239355,0.004069,-0.004249,0.249964,0,0);-ms-transform:matrix(0.239355,0.004069,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.239355,0.004069,-0.004249,0.249964,0,0);}
.m13_c01424{transform:matrix(0.239502,0.004551,-0.004749,0.249955,0,0);-ms-transform:matrix(0.239502,0.004551,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.239502,0.004551,-0.004749,0.249955,0,0);}
.m28_c01424{transform:matrix(0.239795,0.004077,-0.004249,0.249964,0,0);-ms-transform:matrix(0.239795,0.004077,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.239795,0.004077,-0.004249,0.249964,0,0);}
.m8c_c01424{transform:matrix(0.240003,0.002880,-0.003000,0.249982,0,0);-ms-transform:matrix(0.240003,0.002880,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.240003,0.002880,-0.003000,0.249982,0,0);}
.m42_c01424{transform:matrix(0.240075,0.004081,-0.004249,0.249964,0,0);-ms-transform:matrix(0.240075,0.004081,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.240075,0.004081,-0.004249,0.249964,0,0);}
.md1_c01424{transform:matrix(0.240218,0.003603,-0.003750,0.249972,0,0);-ms-transform:matrix(0.240218,0.003603,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.240218,0.003603,-0.003750,0.249972,0,0);}
.m88_c01424{transform:matrix(0.240658,0.002888,-0.003000,0.249982,0,0);-ms-transform:matrix(0.240658,0.002888,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.240658,0.002888,-0.003000,0.249982,0,0);}
.mba_c01424{transform:matrix(0.240670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240670,0.000000,0.000000,0.250000,0,0);}
.mc8_c01424{transform:matrix(0.240823,0.003612,-0.003750,0.249972,0,0);-ms-transform:matrix(0.240823,0.003612,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.240823,0.003612,-0.003750,0.249972,0,0);}
.m3_c01424{transform:matrix(0.240860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240860,0.000000,0.000000,0.250000,0,0);}
.m2a_c01424{transform:matrix(0.241380,0.004103,-0.004249,0.249964,0,0);-ms-transform:matrix(0.241380,0.004103,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.241380,0.004103,-0.004249,0.249964,0,0);}
.m17_c01424{transform:matrix(0.241435,0.004104,-0.004249,0.249964,0,0);-ms-transform:matrix(0.241435,0.004104,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.241435,0.004104,-0.004249,0.249964,0,0);}
.m1c_c01424{transform:matrix(0.241555,0.004106,-0.004249,0.249964,0,0);-ms-transform:matrix(0.241555,0.004106,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.241555,0.004106,-0.004249,0.249964,0,0);}
.m5c_c01424{transform:matrix(0.241683,0.002900,-0.003000,0.249982,0,0);-ms-transform:matrix(0.241683,0.002900,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.241683,0.002900,-0.003000,0.249982,0,0);}
.ma0_c01424{transform:matrix(0.242398,0.002424,-0.002500,0.249988,0,0);-ms-transform:matrix(0.242398,0.002424,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.242398,0.002424,-0.002500,0.249988,0,0);}
.mc5_c01424{transform:matrix(0.242708,0.003641,-0.003750,0.249972,0,0);-ms-transform:matrix(0.242708,0.003641,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.242708,0.003641,-0.003750,0.249972,0,0);}
.me8_c01424{transform:matrix(0.243087,0.002917,-0.003000,0.249982,0,0);-ms-transform:matrix(0.243087,0.002917,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.243087,0.002917,-0.003000,0.249982,0,0);}
.ma9_c01424{transform:matrix(0.243222,0.002919,-0.003000,0.249982,0,0);-ms-transform:matrix(0.243222,0.002919,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.243222,0.002919,-0.003000,0.249982,0,0);}
.m63_c01424{transform:matrix(0.243422,0.002921,-0.003000,0.249982,0,0);-ms-transform:matrix(0.243422,0.002921,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.243422,0.002921,-0.003000,0.249982,0,0);}
.m4_c01424{transform:matrix(0.243490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243490,0.000000,0.000000,0.250000,0,0);}
.mea_c01424{transform:matrix(0.243782,0.002925,-0.003000,0.249982,0,0);-ms-transform:matrix(0.243782,0.002925,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.243782,0.002925,-0.003000,0.249982,0,0);}
.m94_c01424{transform:matrix(0.243972,0.002928,-0.003000,0.249982,0,0);-ms-transform:matrix(0.243972,0.002928,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.243972,0.002928,-0.003000,0.249982,0,0);}
.m23_c01424{transform:matrix(0.244895,0.004163,-0.004249,0.249964,0,0);-ms-transform:matrix(0.244895,0.004163,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.244895,0.004163,-0.004249,0.249964,0,0);}
.m7e_c01424{transform:matrix(0.245533,0.002455,-0.002500,0.249988,0,0);-ms-transform:matrix(0.245533,0.002455,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.245533,0.002455,-0.002500,0.249988,0,0);}
.md_c01424{transform:matrix(0.245631,0.004667,-0.004749,0.249955,0,0);-ms-transform:matrix(0.245631,0.004667,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.245631,0.004667,-0.004749,0.249955,0,0);}
.m6b_c01424{transform:matrix(0.246008,0.002460,-0.002500,0.249988,0,0);-ms-transform:matrix(0.246008,0.002460,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.246008,0.002460,-0.002500,0.249988,0,0);}
.m92_c01424{transform:matrix(0.246677,0.002960,-0.003000,0.249982,0,0);-ms-transform:matrix(0.246677,0.002960,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.246677,0.002960,-0.003000,0.249982,0,0);}
.m15_c01424{transform:matrix(0.246685,0.004687,-0.004749,0.249955,0,0);-ms-transform:matrix(0.246685,0.004687,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.246685,0.004687,-0.004749,0.249955,0,0);}
.m19_c01424{transform:matrix(0.246794,0.004196,-0.004249,0.249964,0,0);-ms-transform:matrix(0.246794,0.004196,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.246794,0.004196,-0.004249,0.249964,0,0);}
.m60_c01424{transform:matrix(0.247937,0.002975,-0.003000,0.249982,0,0);-ms-transform:matrix(0.247937,0.002975,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.247937,0.002975,-0.003000,0.249982,0,0);}
.m62_c01424{transform:matrix(0.248107,0.002977,-0.003000,0.249982,0,0);-ms-transform:matrix(0.248107,0.002977,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.248107,0.002977,-0.003000,0.249982,0,0);}
.m57_c01424{transform:matrix(0.248197,0.002978,-0.003000,0.249982,0,0);-ms-transform:matrix(0.248197,0.002978,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.248197,0.002978,-0.003000,0.249982,0,0);}
.md2_c01424{transform:matrix(0.248442,0.003727,-0.003750,0.249972,0,0);-ms-transform:matrix(0.248442,0.003727,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.248442,0.003727,-0.003750,0.249972,0,0);}
.m9_c01424{transform:matrix(0.248785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248785,0.000000,0.000000,0.250000,0,0);}
.md5_c01424{transform:matrix(0.248927,0.003734,-0.003750,0.249972,0,0);-ms-transform:matrix(0.248927,0.003734,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.248927,0.003734,-0.003750,0.249972,0,0);}
.md9_c01424{transform:matrix(0.249307,0.003740,-0.003750,0.249972,0,0);-ms-transform:matrix(0.249307,0.003740,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.249307,0.003740,-0.003750,0.249972,0,0);}
.m64_c01424{transform:matrix(0.249452,0.002993,-0.003000,0.249982,0,0);-ms-transform:matrix(0.249452,0.002993,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.249452,0.002993,-0.003000,0.249982,0,0);}
.mb7_c01424{transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);}
.me1_c01424{transform:matrix(0.250037,0.003000,-0.003000,0.249982,0,0);-ms-transform:matrix(0.250037,0.003000,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.250037,0.003000,-0.003000,0.249982,0,0);}
.ma_c01424{transform:matrix(0.250110,0.004752,-0.004749,0.249955,0,0);-ms-transform:matrix(0.250110,0.004752,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.250110,0.004752,-0.004749,0.249955,0,0);}
.m6d_c01424{transform:matrix(0.250222,0.002502,-0.002500,0.249988,0,0);-ms-transform:matrix(0.250222,0.002502,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.250222,0.002502,-0.002500,0.249988,0,0);}
.mbe_c01424{transform:matrix(0.250850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250850,0.000000,0.000000,0.250000,0,0);}
.m5d_c01424{transform:matrix(0.251017,0.003012,-0.003000,0.249982,0,0);-ms-transform:matrix(0.251017,0.003012,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.251017,0.003012,-0.003000,0.249982,0,0);}
.mdf_c01424{transform:matrix(0.251322,0.003016,-0.003000,0.249982,0,0);-ms-transform:matrix(0.251322,0.003016,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.251322,0.003016,-0.003000,0.249982,0,0);}
.m29_c01424{transform:matrix(0.251349,0.004273,-0.004249,0.249964,0,0);-ms-transform:matrix(0.251349,0.004273,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.251349,0.004273,-0.004249,0.249964,0,0);}
.m38_c01424{transform:matrix(0.251764,0.004280,-0.004249,0.249964,0,0);-ms-transform:matrix(0.251764,0.004280,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.251764,0.004280,-0.004249,0.249964,0,0);}
.ma4_c01424{transform:matrix(0.252140,0.005043,-0.004999,0.249950,0,0);-ms-transform:matrix(0.252140,0.005043,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.252140,0.005043,-0.004999,0.249950,0,0);}
.mdb_c01424{transform:matrix(0.252362,0.003785,-0.003750,0.249972,0,0);-ms-transform:matrix(0.252362,0.003785,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.252362,0.003785,-0.003750,0.249972,0,0);}
.m65_c01424{transform:matrix(0.252387,0.003029,-0.003000,0.249982,0,0);-ms-transform:matrix(0.252387,0.003029,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.252387,0.003029,-0.003000,0.249982,0,0);}
.m20_c01424{transform:matrix(0.252688,0.004296,-0.004249,0.249964,0,0);-ms-transform:matrix(0.252688,0.004296,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.252688,0.004296,-0.004249,0.249964,0,0);}
.m6c_c01424{transform:matrix(0.253047,0.002530,-0.002500,0.249988,0,0);-ms-transform:matrix(0.253047,0.002530,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.253047,0.002530,-0.002500,0.249988,0,0);}
.m39_c01424{transform:matrix(0.253298,0.004306,-0.004249,0.249964,0,0);-ms-transform:matrix(0.253298,0.004306,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.253298,0.004306,-0.004249,0.249964,0,0);}
.m8d_c01424{transform:matrix(0.253382,0.003041,-0.003000,0.249982,0,0);-ms-transform:matrix(0.253382,0.003041,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.253382,0.003041,-0.003000,0.249982,0,0);}
.m8a_c01424{transform:matrix(0.253397,0.003041,-0.003000,0.249982,0,0);-ms-transform:matrix(0.253397,0.003041,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.253397,0.003041,-0.003000,0.249982,0,0);}
.mc7_c01424{transform:matrix(0.253791,0.003807,-0.003750,0.249972,0,0);-ms-transform:matrix(0.253791,0.003807,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.253791,0.003807,-0.003750,0.249972,0,0);}
.mec_c01424{transform:matrix(0.253792,0.003046,-0.003000,0.249982,0,0);-ms-transform:matrix(0.253792,0.003046,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.253792,0.003046,-0.003000,0.249982,0,0);}
.mc9_c01424{transform:matrix(0.254576,0.003819,-0.003750,0.249972,0,0);-ms-transform:matrix(0.254576,0.003819,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.254576,0.003819,-0.003750,0.249972,0,0);}
.mcd_c01424{transform:matrix(0.254936,0.003824,-0.003750,0.249972,0,0);-ms-transform:matrix(0.254936,0.003824,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.254936,0.003824,-0.003750,0.249972,0,0);}
.m8_c01424{transform:matrix(0.255120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255120,0.000000,0.000000,0.250000,0,0);}
.m86_c01424{transform:matrix(0.255242,0.003063,-0.003000,0.249982,0,0);-ms-transform:matrix(0.255242,0.003063,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.255242,0.003063,-0.003000,0.249982,0,0);}
.m26_c01424{transform:matrix(0.255273,0.004340,-0.004249,0.249964,0,0);-ms-transform:matrix(0.255273,0.004340,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.255273,0.004340,-0.004249,0.249964,0,0);}
.md6_c01424{transform:matrix(0.255281,0.003829,-0.003750,0.249972,0,0);-ms-transform:matrix(0.255281,0.003829,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.255281,0.003829,-0.003750,0.249972,0,0);}
.me5_c01424{transform:matrix(0.255292,0.003063,-0.003000,0.249982,0,0);-ms-transform:matrix(0.255292,0.003063,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.255292,0.003063,-0.003000,0.249982,0,0);}
.m69_c01424{transform:matrix(0.255377,0.002554,-0.002500,0.249988,0,0);-ms-transform:matrix(0.255377,0.002554,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.255377,0.002554,-0.002500,0.249988,0,0);}
.m5b_c01424{transform:matrix(0.256797,0.003082,-0.003000,0.249982,0,0);-ms-transform:matrix(0.256797,0.003082,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.256797,0.003082,-0.003000,0.249982,0,0);}
.ma2_c01424{transform:matrix(0.256874,0.005137,-0.004999,0.249950,0,0);-ms-transform:matrix(0.256874,0.005137,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.256874,0.005137,-0.004999,0.249950,0,0);}
.m6a_c01424{transform:matrix(0.256902,0.002569,-0.002500,0.249988,0,0);-ms-transform:matrix(0.256902,0.002569,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.256902,0.002569,-0.002500,0.249988,0,0);}
.m4a_c01424{transform:matrix(0.256918,0.004368,-0.004249,0.249964,0,0);-ms-transform:matrix(0.256918,0.004368,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.256918,0.004368,-0.004249,0.249964,0,0);}
.m87_c01424{transform:matrix(0.257211,0.003087,-0.003000,0.249982,0,0);-ms-transform:matrix(0.257211,0.003087,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.257211,0.003087,-0.003000,0.249982,0,0);}
.mef_c01424{transform:matrix(0.257621,0.003091,-0.003000,0.249982,0,0);-ms-transform:matrix(0.257621,0.003091,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.257621,0.003091,-0.003000,0.249982,0,0);}
.m3a_c01424{transform:matrix(0.257638,0.004380,-0.004249,0.249964,0,0);-ms-transform:matrix(0.257638,0.004380,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.257638,0.004380,-0.004249,0.249964,0,0);}
.m4d_c01424{transform:matrix(0.257908,0.004384,-0.004249,0.249964,0,0);-ms-transform:matrix(0.257908,0.004384,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.257908,0.004384,-0.004249,0.249964,0,0);}
.m1f_c01424{transform:matrix(0.258113,0.004388,-0.004249,0.249964,0,0);-ms-transform:matrix(0.258113,0.004388,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.258113,0.004388,-0.004249,0.249964,0,0);}
.me3_c01424{transform:matrix(0.258336,0.003100,-0.003000,0.249982,0,0);-ms-transform:matrix(0.258336,0.003100,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.258336,0.003100,-0.003000,0.249982,0,0);}
.m3d_c01424{transform:matrix(0.259672,0.004414,-0.004249,0.249964,0,0);-ms-transform:matrix(0.259672,0.004414,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.259672,0.004414,-0.004249,0.249964,0,0);}
.m11_c01424{transform:matrix(0.259908,0.004938,-0.004749,0.249955,0,0);-ms-transform:matrix(0.259908,0.004938,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.259908,0.004938,-0.004749,0.249955,0,0);}
.m70_c01424{transform:matrix(0.260142,0.002601,-0.002500,0.249988,0,0);-ms-transform:matrix(0.260142,0.002601,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.260142,0.002601,-0.002500,0.249988,0,0);}
.me_c01424{transform:matrix(0.262263,0.004983,-0.004749,0.249955,0,0);-ms-transform:matrix(0.262263,0.004983,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.262263,0.004983,-0.004749,0.249955,0,0);}
.me7_c01424{transform:matrix(0.263516,0.003162,-0.003000,0.249982,0,0);-ms-transform:matrix(0.263516,0.003162,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.263516,0.003162,-0.003000,0.249982,0,0);}
.m37_c01424{transform:matrix(0.265152,0.004508,-0.004249,0.249964,0,0);-ms-transform:matrix(0.265152,0.004508,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.265152,0.004508,-0.004249,0.249964,0,0);}
.mc4_c01424{transform:matrix(0.265635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265635,0.000000,0.000000,0.250000,0,0);}
.m59_c01424{transform:matrix(0.265681,0.003188,-0.003000,0.249982,0,0);-ms-transform:matrix(0.265681,0.003188,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.265681,0.003188,-0.003000,0.249982,0,0);}
.m47_c01424{transform:matrix(0.266082,0.004523,-0.004249,0.249964,0,0);-ms-transform:matrix(0.266082,0.004523,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.266082,0.004523,-0.004249,0.249964,0,0);}
.m7f_c01424{transform:matrix(0.267547,0.002675,-0.002500,0.249988,0,0);-ms-transform:matrix(0.267547,0.002675,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.267547,0.002675,-0.002500,0.249988,0,0);}
.m80_c01424{transform:matrix(0.269037,0.002690,-0.002500,0.249988,0,0);-ms-transform:matrix(0.269037,0.002690,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.269037,0.002690,-0.002500,0.249988,0,0);}
.m27_c01424{transform:matrix(0.269231,0.004577,-0.004249,0.249964,0,0);-ms-transform:matrix(0.269231,0.004577,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.269231,0.004577,-0.004249,0.249964,0,0);}
.m53_c01424{transform:matrix(0.270501,0.003246,-0.003000,0.249982,0,0);-ms-transform:matrix(0.270501,0.003246,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.270501,0.003246,-0.003000,0.249982,0,0);}
.m12_c01424{transform:matrix(0.271376,0.005156,-0.004749,0.249955,0,0);-ms-transform:matrix(0.271376,0.005156,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.271376,0.005156,-0.004749,0.249955,0,0);}
.m40_c01424{transform:matrix(0.272201,0.004627,-0.004249,0.249964,0,0);-ms-transform:matrix(0.272201,0.004627,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.272201,0.004627,-0.004249,0.249964,0,0);}
.m58_c01424{transform:matrix(0.272780,0.003273,-0.003000,0.249982,0,0);-ms-transform:matrix(0.272780,0.003273,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.272780,0.003273,-0.003000,0.249982,0,0);}
.m2c_c01424{transform:matrix(0.273965,0.004657,-0.004249,0.249964,0,0);-ms-transform:matrix(0.273965,0.004657,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.273965,0.004657,-0.004249,0.249964,0,0);}
.m16_c01424{transform:matrix(0.274046,0.005207,-0.004749,0.249955,0,0);-ms-transform:matrix(0.274046,0.005207,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.274046,0.005207,-0.004749,0.249955,0,0);}
.m25_c01424{transform:matrix(0.275615,0.004685,-0.004249,0.249964,0,0);-ms-transform:matrix(0.275615,0.004685,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.275615,0.004685,-0.004249,0.249964,0,0);}
.m54_c01424{transform:matrix(0.275840,0.003310,-0.003000,0.249982,0,0);-ms-transform:matrix(0.275840,0.003310,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.275840,0.003310,-0.003000,0.249982,0,0);}
.mb1_c01424{transform:matrix(0.276505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276505,0.000000,0.000000,0.250000,0,0);}
.mf_c01424{transform:matrix(0.277645,0.005275,-0.004749,0.249955,0,0);-ms-transform:matrix(0.277645,0.005275,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.277645,0.005275,-0.004749,0.249955,0,0);}
.m2b_c01424{transform:matrix(0.278460,0.004734,-0.004249,0.249964,0,0);-ms-transform:matrix(0.278460,0.004734,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.278460,0.004734,-0.004249,0.249964,0,0);}
.m56_c01424{transform:matrix(0.278975,0.003348,-0.003000,0.249982,0,0);-ms-transform:matrix(0.278975,0.003348,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.278975,0.003348,-0.003000,0.249982,0,0);}
.m55_c01424{transform:matrix(0.279005,0.003348,-0.003000,0.249982,0,0);-ms-transform:matrix(0.279005,0.003348,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.279005,0.003348,-0.003000,0.249982,0,0);}
.m51_c01424{transform:matrix(0.280485,0.003366,-0.003000,0.249982,0,0);-ms-transform:matrix(0.280485,0.003366,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.280485,0.003366,-0.003000,0.249982,0,0);}
.m52_c01424{transform:matrix(0.280720,0.003369,-0.003000,0.249982,0,0);-ms-transform:matrix(0.280720,0.003369,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.280720,0.003369,-0.003000,0.249982,0,0);}
.me6_c01424{transform:matrix(0.281685,0.003380,-0.003000,0.249982,0,0);-ms-transform:matrix(0.281685,0.003380,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.281685,0.003380,-0.003000,0.249982,0,0);}
.mb_c01424{transform:matrix(0.281734,0.005353,-0.004749,0.249955,0,0);-ms-transform:matrix(0.281734,0.005353,-0.004749,0.249955,0,0);-webkit-transform:matrix(0.281734,0.005353,-0.004749,0.249955,0,0);}
.mab_c01424{transform:matrix(0.290534,0.003486,-0.003000,0.249982,0,0);-ms-transform:matrix(0.290534,0.003486,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.290534,0.003486,-0.003000,0.249982,0,0);}
.m2e_c01424{transform:matrix(0.295147,0.005018,-0.004249,0.249964,0,0);-ms-transform:matrix(0.295147,0.005018,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.295147,0.005018,-0.004249,0.249964,0,0);}
.mdd_c01424{transform:matrix(0.299918,0.003599,-0.003000,0.249982,0,0);-ms-transform:matrix(0.299918,0.003599,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.299918,0.003599,-0.003000,0.249982,0,0);}
.mcf_c01424{transform:matrix(0.305651,0.004585,-0.003750,0.249972,0,0);-ms-transform:matrix(0.305651,0.004585,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.305651,0.004585,-0.003750,0.249972,0,0);}
.m50_c01424{transform:matrix(0.305963,0.003672,-0.003000,0.249982,0,0);-ms-transform:matrix(0.305963,0.003672,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.305963,0.003672,-0.003000,0.249982,0,0);}
.m9d_c01424{transform:matrix(0.308570,0.003086,-0.002500,0.249988,0,0);-ms-transform:matrix(0.308570,0.003086,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.308570,0.003086,-0.002500,0.249988,0,0);}
.m84_c01424{transform:matrix(0.315262,0.003783,-0.003000,0.249982,0,0);-ms-transform:matrix(0.315262,0.003783,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.315262,0.003783,-0.003000,0.249982,0,0);}
.mb6_c01424{transform:matrix(0.340305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340305,0.000000,0.000000,0.250000,0,0);}
.mc1_c01424{transform:matrix(0.349870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349870,0.000000,0.000000,0.250000,0,0);}
.mc2_c01424{transform:matrix(0.350975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350975,0.000000,0.000000,0.250000,0,0);}
.mb9_c01424{transform:matrix(0.389275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389275,0.000000,0.000000,0.250000,0,0);}
.mf0_c01424{transform:matrix(0.389542,0.004675,-0.003000,0.249982,0,0);-ms-transform:matrix(0.389542,0.004675,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.389542,0.004675,-0.003000,0.249982,0,0);}
.mc0_c01424{transform:matrix(0.393370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393370,0.000000,0.000000,0.250000,0,0);}
.m68_c01424{transform:matrix(0.426694,0.004267,-0.002500,0.249988,0,0);-ms-transform:matrix(0.426694,0.004267,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.426694,0.004267,-0.002500,0.249988,0,0);}
.ma5_c01424{transform:matrix(0.531287,0.006375,-0.003000,0.249982,0,0);-ms-transform:matrix(0.531287,0.006375,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.531287,0.006375,-0.003000,0.249982,0,0);}
.m7_c01424{transform:matrix(5.562975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.562975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.562975,0.000000,0.000000,0.250000,0,0);}
.v0_c01424{vertical-align:0.000000px;}
.ls0_c01424{letter-spacing:0.000000px;}
.sc__c01424{text-shadow:none;}
.sc0_c01424{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__c01424{-webkit-text-stroke:0px transparent;}
.sc0_c01424{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01424{word-spacing:0.000000px;}
.fc0_c01424{color:transparent;}
.fs1_c01424{font-size:30.000000px;}
.fs11_c01424{font-size:42.000000px;}
.fsf_c01424{font-size:60.000000px;}
.fs7_c01424{font-size:72.005184px;}
.fs4_c01424{font-size:72.010403px;}
.fs2_c01424{font-size:72.012995px;}
.fs0_c01424{font-size:78.000000px;}
.fs9_c01424{font-size:78.003900px;}
.fs8_c01424{font-size:78.005616px;}
.fs12_c01424{font-size:78.008775px;}
.fs3_c01424{font-size:78.011270px;}
.fsd_c01424{font-size:78.015598px;}
.fs10_c01424{font-size:84.000000px;}
.fsa_c01424{font-size:84.004200px;}
.fse_c01424{font-size:84.006048px;}
.fs6_c01424{font-size:84.012137px;}
.fsb_c01424{font-size:102.005100px;}
.fs5_c01424{font-size:102.014738px;}
.fsc_c01424{font-size:132.006600px;}
.y0_c01424{bottom:0.000000px;}
.yef_c01424{bottom:50.159436px;}
.yee_c01424{bottom:54.126078px;}
.yed_c01424{bottom:54.641076px;}
.yec_c01424{bottom:55.046094px;}
.yeb_c01424{bottom:56.219082px;}
.yea_c01424{bottom:56.883354px;}
.ye9_c01424{bottom:57.275448px;}
.ye8_c01424{bottom:57.796746px;}
.ye7_c01424{bottom:58.318854px;}
.ye6_c01424{bottom:87.565614px;}
.ye5_c01424{bottom:89.149902px;}
.ye4_c01424{bottom:89.548512px;}
.ye3_c01424{bottom:89.946582px;}
.ye2_c01424{bottom:90.984048px;}
.ye1_c01424{bottom:91.525056px;}
.ye0_c01424{bottom:92.578092px;}
.ydf_c01424{bottom:93.109650px;}
.yde_c01424{bottom:94.421904px;}
.ydd_c01424{bottom:95.046054px;}
.ydc_c01424{bottom:95.241714px;}
.ydb_c01424{bottom:95.581500px;}
.yda_c01424{bottom:118.190017px;}
.yd9_c01424{bottom:119.266702px;}
.yd8_c01424{bottom:120.991627px;}
.yd7_c01424{bottom:122.268465px;}
.yd6_c01424{bottom:122.883690px;}
.yd5_c01424{bottom:124.750912px;}
.yd4_c01424{bottom:126.391980px;}
.yd3_c01424{bottom:127.042808px;}
.yd2_c01424{bottom:127.857015px;}
.yd1_c01424{bottom:129.714727px;}
.yd0_c01424{bottom:130.150567px;}
.ycf_c01424{bottom:130.951177px;}
.yce_c01424{bottom:157.150110px;}
.ycd_c01424{bottom:157.644210px;}
.ycc_c01424{bottom:159.288758px;}
.ycb_c01424{bottom:160.593195px;}
.yca_c01424{bottom:161.111527px;}
.yc9_c01424{bottom:161.597415px;}
.yc8_c01424{bottom:163.221825px;}
.yc7_c01424{bottom:164.404785px;}
.yc6_c01424{bottom:166.053000px;}
.yc5_c01424{bottom:166.824705px;}
.yc4_c01424{bottom:167.673000px;}
.yc3_c01424{bottom:190.351500px;}
.yc2_c01424{bottom:190.680000px;}
.yc1_c01424{bottom:197.682000px;}
.yc0_c01424{bottom:197.703000px;}
.ybf_c01424{bottom:198.243000px;}
.ybe_c01424{bottom:198.802500px;}
.ybd_c01424{bottom:200.286000px;}
.ybc_c01424{bottom:201.424500px;}
.ybb_c01424{bottom:202.530000px;}
.yba_c01424{bottom:203.427000px;}
.yb9_c01424{bottom:204.393000px;}
.yb8_c01424{bottom:226.609500px;}
.yb7_c01424{bottom:228.430500px;}
.yb6_c01424{bottom:231.690000px;}
.yb5_c01424{bottom:231.996000px;}
.yb4_c01424{bottom:232.113000px;}
.yb3_c01424{bottom:234.168000px;}
.yb2_c01424{bottom:236.841000px;}
.yb1_c01424{bottom:237.369000px;}
.yb0_c01424{bottom:239.793000px;}
.yaf_c01424{bottom:278.224500px;}
.yae_c01424{bottom:289.309500px;}
.yad_c01424{bottom:348.694500px;}
.yac_c01424{bottom:371.458608px;}
.yab_c01424{bottom:375.830214px;}
.yaa_c01424{bottom:377.420946px;}
.ya9_c01424{bottom:378.369852px;}
.ya8_c01424{bottom:378.888414px;}
.ya7_c01424{bottom:379.811742px;}
.ya6_c01424{bottom:380.971500px;}
.ya5_c01424{bottom:412.786980px;}
.ya4_c01424{bottom:413.688930px;}
.ya3_c01424{bottom:416.076000px;}
.ya2_c01424{bottom:437.438175px;}
.ya1_c01424{bottom:439.043835px;}
.ya0_c01424{bottom:439.470420px;}
.y9f_c01424{bottom:440.226375px;}
.y9e_c01424{bottom:440.455860px;}
.y9d_c01424{bottom:441.111930px;}
.y9c_c01424{bottom:441.441315px;}
.y9b_c01424{bottom:442.326870px;}
.y9a_c01424{bottom:443.319855px;}
.y99_c01424{bottom:443.749245px;}
.y98_c01424{bottom:444.399915px;}
.y97_c01424{bottom:444.925680px;}
.y96_c01424{bottom:445.501500px;}
.y95_c01424{bottom:483.467592px;}
.y94_c01424{bottom:483.973146px;}
.y93_c01424{bottom:484.957020px;}
.y92_c01424{bottom:485.435592px;}
.y91_c01424{bottom:487.079478px;}
.y90_c01424{bottom:513.203910px;}
.y8f_c01424{bottom:514.448880px;}
.y8e_c01424{bottom:515.612616px;}
.y8d_c01424{bottom:516.292584px;}
.y8c_c01424{bottom:516.691626px;}
.y8b_c01424{bottom:517.744590px;}
.y8a_c01424{bottom:518.126460px;}
.y89_c01424{bottom:518.933706px;}
.y88_c01424{bottom:520.236366px;}
.y87_c01424{bottom:521.542302px;}
.y86_c01424{bottom:522.192444px;}
.y85_c01424{bottom:522.481992px;}
.y84_c01424{bottom:522.721500px;}
.y83_c01424{bottom:544.524600px;}
.y82_c01424{bottom:552.159555px;}
.y81_c01424{bottom:554.056680px;}
.y80_c01424{bottom:586.339350px;}
.y7f_c01424{bottom:587.399280px;}
.y7e_c01424{bottom:587.823060px;}
.y7d_c01424{bottom:588.543285px;}
.y7c_c01424{bottom:589.094535px;}
.y7b_c01424{bottom:589.529910px;}
.y7a_c01424{bottom:590.815125px;}
.y79_c01424{bottom:591.239400px;}
.y78_c01424{bottom:591.667740px;}
.y77_c01424{bottom:592.798200px;}
.y76_c01424{bottom:593.502540px;}
.y75_c01424{bottom:594.088995px;}
.y74_c01424{bottom:594.520140px;}
.y73_c01424{bottom:595.081095px;}
.y72_c01424{bottom:622.253010px;}
.y71_c01424{bottom:623.525640px;}
.y70_c01424{bottom:623.847000px;}
.y6f_c01424{bottom:624.276030px;}
.y6e_c01424{bottom:625.372605px;}
.y6d_c01424{bottom:626.355465px;}
.y6c_c01424{bottom:627.025065px;}
.y6b_c01424{bottom:628.113195px;}
.y6a_c01424{bottom:629.198805px;}
.y69_c01424{bottom:630.181500px;}
.y68_c01424{bottom:655.422888px;}
.y67_c01424{bottom:662.420136px;}
.y66_c01424{bottom:663.404010px;}
.y65_c01424{bottom:664.879032px;}
.y64_c01424{bottom:665.547258px;}
.y63_c01424{bottom:692.267760px;}
.y62_c01424{bottom:693.306480px;}
.y61_c01424{bottom:694.011828px;}
.y60_c01424{bottom:694.546860px;}
.y5f_c01424{bottom:695.436768px;}
.y5e_c01424{bottom:696.138714px;}
.y5d_c01424{bottom:696.400692px;}
.y5c_c01424{bottom:697.552488px;}
.y5b_c01424{bottom:698.286756px;}
.y5a_c01424{bottom:699.839052px;}
.y59_c01424{bottom:726.773640px;}
.y58_c01424{bottom:727.737594px;}
.y57_c01424{bottom:728.926944px;}
.y56_c01424{bottom:729.470868px;}
.y55_c01424{bottom:730.530780px;}
.y54_c01424{bottom:731.833314px;}
.y53_c01424{bottom:732.226254px;}
.y52_c01424{bottom:732.627978px;}
.y51_c01424{bottom:733.933140px;}
.y50_c01424{bottom:735.236376px;}
.y4f_c01424{bottom:735.756234px;}
.y4e_c01424{bottom:736.305000px;}
.y4d_c01424{bottom:762.384544px;}
.y4c_c01424{bottom:762.850657px;}
.y4b_c01424{bottom:763.601935px;}
.y4a_c01424{bottom:764.285349px;}
.y49_c01424{bottom:764.677188px;}
.y48_c01424{bottom:765.593556px;}
.y47_c01424{bottom:766.636409px;}
.y46_c01424{bottom:767.060647px;}
.y45_c01424{bottom:797.717718px;}
.y44_c01424{bottom:798.301671px;}
.y43_c01424{bottom:799.882431px;}
.y42_c01424{bottom:800.668644px;}
.y41_c01424{bottom:802.243799px;}
.y40_c01424{bottom:803.811099px;}
.y3f_c01424{bottom:804.914350px;}
.y3e_c01424{bottom:806.778626px;}
.y3d_c01424{bottom:808.732673px;}
.y3c_c01424{bottom:809.499765px;}
.y3b_c01424{bottom:810.525510px;}
.y3a_c01424{bottom:833.436326px;}
.y39_c01424{bottom:835.706667px;}
.y38_c01424{bottom:836.275904px;}
.y37_c01424{bottom:837.767832px;}
.y36_c01424{bottom:839.805817px;}
.y35_c01424{bottom:843.887450px;}
.y34_c01424{bottom:844.606091px;}
.y33_c01424{bottom:845.360534px;}
.y32_c01424{bottom:875.131163px;}
.y31_c01424{bottom:876.232778px;}
.y30_c01424{bottom:876.885744px;}
.y2f_c01424{bottom:877.299501px;}
.y2e_c01424{bottom:878.652485px;}
.y2d_c01424{bottom:881.275307px;}
.y2c_c01424{bottom:906.706168px;}
.y2b_c01424{bottom:907.237282px;}
.y2a_c01424{bottom:908.923139px;}
.y29_c01424{bottom:910.603155px;}
.y28_c01424{bottom:911.153955px;}
.y27_c01424{bottom:912.251194px;}
.y26_c01424{bottom:913.003062px;}
.y25_c01424{bottom:914.335208px;}
.y24_c01424{bottom:915.079144px;}
.y23_c01424{bottom:916.378318px;}
.y22_c01424{bottom:940.444886px;}
.y21_c01424{bottom:941.753469px;}
.y20_c01424{bottom:942.318268px;}
.y1f_c01424{bottom:942.882762px;}
.y1e_c01424{bottom:944.379204px;}
.y1d_c01424{bottom:944.920824px;}
.y1c_c01424{bottom:945.456987px;}
.y1b_c01424{bottom:946.205285px;}
.y1a_c01424{bottom:947.514506px;}
.y19_c01424{bottom:948.653361px;}
.y18_c01424{bottom:949.396992px;}
.y17_c01424{bottom:950.875151px;}
.y16_c01424{bottom:951.580276px;}
.y15_c01424{bottom:952.564500px;}
.y14_c01424{bottom:1003.230717px;}
.y13_c01424{bottom:1003.983936px;}
.y12_c01424{bottom:1004.718067px;}
.y11_c01424{bottom:1005.475989px;}
.y10_c01424{bottom:1029.893245px;}
.yf_c01424{bottom:1030.971914px;}
.ye_c01424{bottom:1031.587599px;}
.yd_c01424{bottom:1033.680839px;}
.yc_c01424{bottom:1034.717213px;}
.yb_c01424{bottom:1035.358349px;}
.ya_c01424{bottom:1036.147457px;}
.y9_c01424{bottom:1038.647647px;}
.y8_c01424{bottom:1039.504500px;}
.y7_c01424{bottom:1087.429500px;}
.y6_c01424{bottom:1146.624000px;}
.y5_c01424{bottom:1161.081000px;}
.y4_c01424{bottom:1161.928500px;}
.y3_c01424{bottom:1163.626500px;}
.y2_c01424{bottom:1165.059000px;}
.y1_c01424{bottom:1213.648500px;}
.h3_c01424{height:30.000000px;}
.h13_c01424{height:42.000000px;}
.h11_c01424{height:60.000000px;}
.h9_c01424{height:72.005184px;}
.h6_c01424{height:72.010403px;}
.h4_c01424{height:72.012995px;}
.h2_c01424{height:78.000000px;}
.hb_c01424{height:78.003900px;}
.ha_c01424{height:78.005616px;}
.h14_c01424{height:78.008775px;}
.h5_c01424{height:78.011270px;}
.hf_c01424{height:78.015598px;}
.h12_c01424{height:84.000000px;}
.hc_c01424{height:84.004200px;}
.h10_c01424{height:84.006048px;}
.h8_c01424{height:84.012137px;}
.hd_c01424{height:102.005100px;}
.h7_c01424{height:102.014738px;}
.he_c01424{height:132.006600px;}
.h1_c01424{height:1250.250000px;}
.h0_c01424{height:1250.370000px;}
.w0_c01424{width:912.000000px;}
.x0_c01424{left:0.000000px;}
.x98_c01424{left:61.897500px;}
.x7e_c01424{left:65.140500px;}
.x37_c01424{left:70.747829px;}
.x18_c01424{left:73.192500px;}
.x8f_c01424{left:75.600000px;}
.x89_c01424{left:76.804500px;}
.x71_c01424{left:78.948000px;}
.x46_c01424{left:80.815500px;}
.x30_c01424{left:84.548340px;}
.x72_c01424{left:98.907000px;}
.xab_c01424{left:101.619000px;}
.x14_c01424{left:118.612062px;}
.x8e_c01424{left:120.960000px;}
.x73_c01424{left:123.036000px;}
.x47_c01424{left:126.546000px;}
.x38_c01424{left:127.731860px;}
.x31_c01424{left:128.927340px;}
.x19_c01424{left:131.088000px;}
.x15_c01424{left:163.162244px;}
.x48_c01424{left:169.867500px;}
.x32_c01424{left:171.200340px;}
.x1a_c01424{left:172.566000px;}
.x7f_c01424{left:175.299000px;}
.x74_c01424{left:177.214500px;}
.x5b_c01424{left:178.864500px;}
.xaf_c01424{left:192.344052px;}
.x6e_c01424{left:195.477315px;}
.x7b_c01424{left:197.455920px;}
.x3e_c01424{left:199.008696px;}
.x50_c01424{left:200.974272px;}
.x25_c01424{left:204.184859px;}
.x16_c01424{left:206.302368px;}
.x90_c01424{left:208.165500px;}
.xb_c01424{left:228.429000px;}
.x3f_c01424{left:234.378705px;}
.x99_c01424{left:236.523000px;}
.x80_c01424{left:240.366000px;}
.x63_c01424{left:242.290590px;}
.x59_c01424{left:243.895992px;}
.x17_c01424{left:250.605050px;}
.x1b_c01424{left:259.516500px;}
.xc_c01424{left:273.526500px;}
.x64_c01424{left:275.504100px;}
.x39_c01424{left:278.972810px;}
.x26_c01424{left:280.606859px;}
.x81_c01424{left:283.305000px;}
.x75_c01424{left:286.042500px;}
.x5c_c01424{left:287.425500px;}
.x8a_c01424{left:293.608500px;}
.x1c_c01424{left:303.259500px;}
.x7c_c01424{left:307.067478px;}
.xb0_c01424{left:311.969052px;}
.x87_c01424{left:316.183500px;}
.x8_c01424{left:317.791500px;}
.x4_c01424{left:318.796500px;}
.x40_c01424{left:321.318600px;}
.x27_c01424{left:324.367859px;}
.x91_c01424{left:329.341500px;}
.x6f_c01424{left:331.034400px;}
.x2d_c01424{left:334.483350px;}
.x7d_c01424{left:338.947326px;}
.x5a_c01424{left:342.185946px;}
.x92_c01424{left:355.720500px;}
.xa5_c01424{left:357.565905px;}
.x9e_c01424{left:358.642500px;}
.x88_c01424{left:361.281000px;}
.xb1_c01424{left:367.325052px;}
.x1d_c01424{left:370.251000px;}
.x8b_c01424{left:372.684000px;}
.x5_c01424{left:373.888500px;}
.x51_c01424{left:376.769148px;}
.x9_c01424{left:383.400000px;}
.x1_c01424{left:386.640000px;}
.x9a_c01424{left:390.727500px;}
.x76_c01424{left:394.597500px;}
.x5d_c01424{left:396.238500px;}
.x41_c01424{left:397.729103px;}
.xa6_c01424{left:400.443840px;}
.x28_c01424{left:402.729359px;}
.xd_c01424{left:405.115500px;}
.x2_c01424{left:408.780000px;}
.x33_c01424{left:411.296340px;}
.x49_c01424{left:420.711000px;}
.x2e_c01424{left:422.875362px;}
.x42_c01424{left:430.398882px;}
.xa7_c01424{left:434.730292px;}
.x6_c01424{left:439.219500px;}
.x3a_c01424{left:443.824505px;}
.xe_c01424{left:446.647500px;}
.x3_c01424{left:451.980000px;}
.x4a_c01424{left:453.456000px;}
.x2f_c01424{left:455.548205px;}
.x9b_c01424{left:456.612000px;}
.x65_c01424{left:461.824020px;}
.x5e_c01424{left:463.198500px;}
.x52_c01424{left:465.376086px;}
.x9f_c01424{left:466.936500px;}
.x7_c01424{left:471.798000px;}
.xf_c01424{left:480.391500px;}
.x53_c01424{left:485.582352px;}
.x43_c01424{left:487.369227px;}
.x93_c01424{left:489.370500px;}
.x1e_c01424{left:491.281500px;}
.x77_c01424{left:493.690500px;}
.x66_c01424{left:494.757030px;}
.xa_c01424{left:496.530000px;}
.xa0_c01424{left:499.329000px;}
.x82_c01424{left:504.097500px;}
.x8c_c01424{left:505.245000px;}
.x29_c01424{left:511.500359px;}
.xa8_c01424{left:521.129617px;}
.x1f_c01424{left:522.820500px;}
.x67_c01424{left:527.433555px;}
.x34_c01424{left:531.177840px;}
.xa1_c01424{left:533.884500px;}
.x10_c01424{left:534.937500px;}
.x54_c01424{left:539.577204px;}
.xb2_c01424{left:541.742052px;}
.xac_c01424{left:542.880000px;}
.x2a_c01424{left:543.900359px;}
.x44_c01424{left:550.008556px;}
.x20_c01424{left:554.680500px;}
.x4b_c01424{left:562.000500px;}
.x83_c01424{left:569.704500px;}
.xad_c01424{left:576.052500px;}
.x78_c01424{left:581.437500px;}
.x45_c01424{left:588.900871px;}
.x84_c01424{left:592.653000px;}
.x94_c01424{left:597.931500px;}
.x55_c01424{left:607.985376px;}
.xae_c01424{left:609.270000px;}
.x95_c01424{left:613.245000px;}
.x79_c01424{left:614.691000px;}
.x35_c01424{left:618.938340px;}
.xa2_c01424{left:620.847000px;}
.x68_c01424{left:626.252085px;}
.x21_c01424{left:642.706500px;}
.x11_c01424{left:645.108000px;}
.x56_c01424{left:649.195890px;}
.x4c_c01424{left:650.326500px;}
.x36_c01424{left:652.422840px;}
.x69_c01424{left:659.738580px;}
.x3b_c01424{left:662.124807px;}
.x85_c01424{left:668.248500px;}
.x5f_c01424{left:671.142000px;}
.x22_c01424{left:675.912000px;}
.x12_c01424{left:677.512500px;}
.x4d_c01424{left:695.653500px;}
.x6a_c01424{left:702.112305px;}
.x57_c01424{left:703.474242px;}
.x23_c01424{left:709.135500px;}
.x86_c01424{left:710.907000px;}
.x60_c01424{left:714.045000px;}
.xa9_c01424{left:719.036760px;}
.xa3_c01424{left:730.483500px;}
.x13_c01424{left:734.284500px;}
.x2b_c01424{left:741.892859px;}
.x61_c01424{left:746.181000px;}
.x3c_c01424{left:749.903302px;}
.x6b_c01424{left:757.483140px;}
.xa4_c01424{left:763.423500px;}
.x7a_c01424{left:768.333000px;}
.x2c_c01424{left:773.134858px;}
.x96_c01424{left:776.248500px;}
.x3d_c01424{left:782.311741px;}
.x58_c01424{left:783.408288px;}
.x24_c01424{left:786.111000px;}
.x6c_c01424{left:790.110165px;}
.x4e_c01424{left:794.766000px;}
.xaa_c01424{left:809.826315px;}
.x97_c01424{left:867.327000px;}
.x9c_c01424{left:868.495500px;}
.x8d_c01424{left:869.545500px;}
.x6d_c01424{left:871.650720px;}
.x62_c01424{left:873.444000px;}
.x4f_c01424{left:875.095500px;}
.x70_c01424{left:876.408090px;}
.x9d_c01424{left:887.851500px;}
@media print{
.v0_c01424{vertical-align:0.000000pt;}
.ls0_c01424{letter-spacing:0.000000pt;}
.ws0_c01424{word-spacing:0.000000pt;}
.fs1_c01424{font-size:26.666667pt;}
.fs11_c01424{font-size:37.333333pt;}
.fsf_c01424{font-size:53.333333pt;}
.fs7_c01424{font-size:64.004608pt;}
.fs4_c01424{font-size:64.009247pt;}
.fs2_c01424{font-size:64.011551pt;}
.fs0_c01424{font-size:69.333333pt;}
.fs9_c01424{font-size:69.336800pt;}
.fs8_c01424{font-size:69.338325pt;}
.fs12_c01424{font-size:69.341133pt;}
.fs3_c01424{font-size:69.343351pt;}
.fsd_c01424{font-size:69.347199pt;}
.fs10_c01424{font-size:74.666667pt;}
.fsa_c01424{font-size:74.670400pt;}
.fse_c01424{font-size:74.672042pt;}
.fs6_c01424{font-size:74.677455pt;}
.fsb_c01424{font-size:90.671200pt;}
.fs5_c01424{font-size:90.679767pt;}
.fsc_c01424{font-size:117.339200pt;}
.y0_c01424{bottom:0.000000pt;}
.yef_c01424{bottom:44.586165pt;}
.yee_c01424{bottom:48.112069pt;}
.yed_c01424{bottom:48.569845pt;}
.yec_c01424{bottom:48.929861pt;}
.yeb_c01424{bottom:49.972517pt;}
.yea_c01424{bottom:50.562981pt;}
.ye9_c01424{bottom:50.911509pt;}
.ye8_c01424{bottom:51.374885pt;}
.ye7_c01424{bottom:51.838981pt;}
.ye6_c01424{bottom:77.836101pt;}
.ye5_c01424{bottom:79.244357pt;}
.ye4_c01424{bottom:79.598677pt;}
.ye3_c01424{bottom:79.952517pt;}
.ye2_c01424{bottom:80.874709pt;}
.ye1_c01424{bottom:81.355605pt;}
.ye0_c01424{bottom:82.291637pt;}
.ydf_c01424{bottom:82.764133pt;}
.yde_c01424{bottom:83.930581pt;}
.ydd_c01424{bottom:84.485381pt;}
.ydc_c01424{bottom:84.659301pt;}
.ydb_c01424{bottom:84.961333pt;}
.yda_c01424{bottom:105.057793pt;}
.yd9_c01424{bottom:106.014847pt;}
.yd8_c01424{bottom:107.548113pt;}
.yd7_c01424{bottom:108.683080pt;}
.yd6_c01424{bottom:109.229947pt;}
.yd5_c01424{bottom:110.889700pt;}
.yd4_c01424{bottom:112.348427pt;}
.yd3_c01424{bottom:112.926940pt;}
.yd2_c01424{bottom:113.650680pt;}
.yd1_c01424{bottom:115.301980pt;}
.yd0_c01424{bottom:115.689393pt;}
.ycf_c01424{bottom:116.401047pt;}
.yce_c01424{bottom:139.688987pt;}
.ycd_c01424{bottom:140.128187pt;}
.ycc_c01424{bottom:141.590007pt;}
.ycb_c01424{bottom:142.749507pt;}
.yca_c01424{bottom:143.210247pt;}
.yc9_c01424{bottom:143.642147pt;}
.yc8_c01424{bottom:145.086067pt;}
.yc7_c01424{bottom:146.137587pt;}
.yc6_c01424{bottom:147.602667pt;}
.yc5_c01424{bottom:148.288627pt;}
.yc4_c01424{bottom:149.042667pt;}
.yc3_c01424{bottom:169.201333pt;}
.yc2_c01424{bottom:169.493333pt;}
.yc1_c01424{bottom:175.717333pt;}
.yc0_c01424{bottom:175.736000pt;}
.ybf_c01424{bottom:176.216000pt;}
.ybe_c01424{bottom:176.713333pt;}
.ybd_c01424{bottom:178.032000pt;}
.ybc_c01424{bottom:179.044000pt;}
.ybb_c01424{bottom:180.026667pt;}
.yba_c01424{bottom:180.824000pt;}
.yb9_c01424{bottom:181.682667pt;}
.yb8_c01424{bottom:201.430667pt;}
.yb7_c01424{bottom:203.049333pt;}
.yb6_c01424{bottom:205.946667pt;}
.yb5_c01424{bottom:206.218667pt;}
.yb4_c01424{bottom:206.322667pt;}
.yb3_c01424{bottom:208.149333pt;}
.yb2_c01424{bottom:210.525333pt;}
.yb1_c01424{bottom:210.994667pt;}
.yb0_c01424{bottom:213.149333pt;}
.yaf_c01424{bottom:247.310667pt;}
.yae_c01424{bottom:257.164000pt;}
.yad_c01424{bottom:309.950667pt;}
.yac_c01424{bottom:330.185429pt;}
.yab_c01424{bottom:334.071301pt;}
.yaa_c01424{bottom:335.485285pt;}
.ya9_c01424{bottom:336.328757pt;}
.ya8_c01424{bottom:336.789701pt;}
.ya7_c01424{bottom:337.610437pt;}
.ya6_c01424{bottom:338.641333pt;}
.ya5_c01424{bottom:366.921760pt;}
.ya4_c01424{bottom:367.723493pt;}
.ya3_c01424{bottom:369.845333pt;}
.ya2_c01424{bottom:388.833933pt;}
.ya1_c01424{bottom:390.261187pt;}
.ya0_c01424{bottom:390.640373pt;}
.y9f_c01424{bottom:391.312333pt;}
.y9e_c01424{bottom:391.516320pt;}
.y9d_c01424{bottom:392.099493pt;}
.y9c_c01424{bottom:392.392280pt;}
.y9b_c01424{bottom:393.179440pt;}
.y9a_c01424{bottom:394.062093pt;}
.y99_c01424{bottom:394.443773pt;}
.y98_c01424{bottom:395.022147pt;}
.y97_c01424{bottom:395.489493pt;}
.y96_c01424{bottom:396.001333pt;}
.y95_c01424{bottom:429.748971pt;}
.y94_c01424{bottom:430.198352pt;}
.y93_c01424{bottom:431.072907pt;}
.y92_c01424{bottom:431.498304pt;}
.y91_c01424{bottom:432.959536pt;}
.y90_c01424{bottom:456.181253pt;}
.y8f_c01424{bottom:457.287893pt;}
.y8e_c01424{bottom:458.322325pt;}
.y8d_c01424{bottom:458.926741pt;}
.y8c_c01424{bottom:459.281445pt;}
.y8b_c01424{bottom:460.217413pt;}
.y8a_c01424{bottom:460.556853pt;}
.y89_c01424{bottom:461.274405pt;}
.y88_c01424{bottom:462.432325pt;}
.y87_c01424{bottom:463.593157pt;}
.y86_c01424{bottom:464.171061pt;}
.y85_c01424{bottom:464.428437pt;}
.y84_c01424{bottom:464.641333pt;}
.y83_c01424{bottom:484.021867pt;}
.y82_c01424{bottom:490.808493pt;}
.y81_c01424{bottom:492.494827pt;}
.y80_c01424{bottom:521.190533pt;}
.y7f_c01424{bottom:522.132693pt;}
.y7e_c01424{bottom:522.509387pt;}
.y7d_c01424{bottom:523.149587pt;}
.y7c_c01424{bottom:523.639587pt;}
.y7b_c01424{bottom:524.026587pt;}
.y7a_c01424{bottom:525.169000pt;}
.y79_c01424{bottom:525.546133pt;}
.y78_c01424{bottom:525.926880pt;}
.y77_c01424{bottom:526.931733pt;}
.y76_c01424{bottom:527.557813pt;}
.y75_c01424{bottom:528.079107pt;}
.y74_c01424{bottom:528.462347pt;}
.y73_c01424{bottom:528.960973pt;}
.y72_c01424{bottom:553.113787pt;}
.y71_c01424{bottom:554.245013pt;}
.y70_c01424{bottom:554.530667pt;}
.y6f_c01424{bottom:554.912027pt;}
.y6e_c01424{bottom:555.886760pt;}
.y6d_c01424{bottom:556.760413pt;}
.y6c_c01424{bottom:557.355613pt;}
.y6b_c01424{bottom:558.322840pt;}
.y6a_c01424{bottom:559.287827pt;}
.y69_c01424{bottom:560.161333pt;}
.y68_c01424{bottom:582.598123pt;}
.y67_c01424{bottom:588.817899pt;}
.y66_c01424{bottom:589.692453pt;}
.y65_c01424{bottom:591.003584pt;}
.y64_c01424{bottom:591.597563pt;}
.y63_c01424{bottom:615.349120pt;}
.y62_c01424{bottom:616.272427pt;}
.y61_c01424{bottom:616.899403pt;}
.y60_c01424{bottom:617.374987pt;}
.y5f_c01424{bottom:618.166016pt;}
.y5e_c01424{bottom:618.789968pt;}
.y5d_c01424{bottom:619.022837pt;}
.y5c_c01424{bottom:620.046656pt;}
.y5b_c01424{bottom:620.699339pt;}
.y5a_c01424{bottom:622.079157pt;}
.y59_c01424{bottom:646.021013pt;}
.y58_c01424{bottom:646.877861pt;}
.y57_c01424{bottom:647.935061pt;}
.y56_c01424{bottom:648.418549pt;}
.y55_c01424{bottom:649.360693pt;}
.y54_c01424{bottom:650.518501pt;}
.y53_c01424{bottom:650.867781pt;}
.y52_c01424{bottom:651.224869pt;}
.y51_c01424{bottom:652.385013pt;}
.y50_c01424{bottom:653.543445pt;}
.y4f_c01424{bottom:654.005541pt;}
.y4e_c01424{bottom:654.493333pt;}
.y4d_c01424{bottom:677.675151pt;}
.y4c_c01424{bottom:678.089473pt;}
.y4b_c01424{bottom:678.757276pt;}
.y4a_c01424{bottom:679.364755pt;}
.y49_c01424{bottom:679.713056pt;}
.y48_c01424{bottom:680.527605pt;}
.y47_c01424{bottom:681.454585pt;}
.y46_c01424{bottom:681.831687pt;}
.y45_c01424{bottom:709.082416pt;}
.y44_c01424{bottom:709.601485pt;}
.y43_c01424{bottom:711.006605pt;}
.y42_c01424{bottom:711.705461pt;}
.y41_c01424{bottom:713.105599pt;}
.y40_c01424{bottom:714.498755pt;}
.y3f_c01424{bottom:715.479423pt;}
.y3e_c01424{bottom:717.136556pt;}
.y3d_c01424{bottom:718.873487pt;}
.y3c_c01424{bottom:719.555347pt;}
.y3b_c01424{bottom:720.467120pt;}
.y3a_c01424{bottom:740.832289pt;}
.y39_c01424{bottom:742.850371pt;}
.y38_c01424{bottom:743.356359pt;}
.y37_c01424{bottom:744.682517pt;}
.y36_c01424{bottom:746.494060pt;}
.y35_c01424{bottom:750.122177pt;}
.y34_c01424{bottom:750.760969pt;}
.y33_c01424{bottom:751.431585pt;}
.y32_c01424{bottom:777.894367pt;}
.y31_c01424{bottom:778.873580pt;}
.y30_c01424{bottom:779.453995pt;}
.y2f_c01424{bottom:779.821779pt;}
.y2e_c01424{bottom:781.024431pt;}
.y2d_c01424{bottom:783.355828pt;}
.y2c_c01424{bottom:805.961039pt;}
.y2b_c01424{bottom:806.433140pt;}
.y2a_c01424{bottom:807.931679pt;}
.y29_c01424{bottom:809.425027pt;}
.y28_c01424{bottom:809.914627pt;}
.y27_c01424{bottom:810.889951pt;}
.y26_c01424{bottom:811.558277pt;}
.y25_c01424{bottom:812.742407pt;}
.y24_c01424{bottom:813.403684pt;}
.y23_c01424{bottom:814.558505pt;}
.y22_c01424{bottom:835.951009pt;}
.y21_c01424{bottom:837.114195pt;}
.y20_c01424{bottom:837.616239pt;}
.y1f_c01424{bottom:838.118011pt;}
.y1e_c01424{bottom:839.448181pt;}
.y1d_c01424{bottom:839.929621pt;}
.y1c_c01424{bottom:840.406211pt;}
.y1b_c01424{bottom:841.071364pt;}
.y1a_c01424{bottom:842.235116pt;}
.y19_c01424{bottom:843.247432pt;}
.y18_c01424{bottom:843.908437pt;}
.y17_c01424{bottom:845.222356pt;}
.y16_c01424{bottom:845.849135pt;}
.y15_c01424{bottom:846.724000pt;}
.y14_c01424{bottom:891.760637pt;}
.y13_c01424{bottom:892.430165pt;}
.y12_c01424{bottom:893.082727pt;}
.y11_c01424{bottom:893.756435pt;}
.y10_c01424{bottom:915.460663pt;}
.yf_c01424{bottom:916.419479pt;}
.ye_c01424{bottom:916.966755pt;}
.yd_c01424{bottom:918.827412pt;}
.yc_c01424{bottom:919.748633pt;}
.yb_c01424{bottom:920.318532pt;}
.ya_c01424{bottom:921.019961pt;}
.y9_c01424{bottom:923.242353pt;}
.y8_c01424{bottom:924.004000pt;}
.y7_c01424{bottom:966.604000pt;}
.y6_c01424{bottom:1019.221333pt;}
.y5_c01424{bottom:1032.072000pt;}
.y4_c01424{bottom:1032.825333pt;}
.y3_c01424{bottom:1034.334667pt;}
.y2_c01424{bottom:1035.608000pt;}
.y1_c01424{bottom:1078.798667pt;}
.h3_c01424{height:26.666667pt;}
.h13_c01424{height:37.333333pt;}
.h11_c01424{height:53.333333pt;}
.h9_c01424{height:64.004608pt;}
.h6_c01424{height:64.009247pt;}
.h4_c01424{height:64.011551pt;}
.h2_c01424{height:69.333333pt;}
.hb_c01424{height:69.336800pt;}
.ha_c01424{height:69.338325pt;}
.h14_c01424{height:69.341133pt;}
.h5_c01424{height:69.343351pt;}
.hf_c01424{height:69.347199pt;}
.h12_c01424{height:74.666667pt;}
.hc_c01424{height:74.670400pt;}
.h10_c01424{height:74.672042pt;}
.h8_c01424{height:74.677455pt;}
.hd_c01424{height:90.671200pt;}
.h7_c01424{height:90.679767pt;}
.he_c01424{height:117.339200pt;}
.h1_c01424{height:1111.333333pt;}
.h0_c01424{height:1111.440000pt;}
.w0_c01424{width:810.666667pt;}
.x0_c01424{left:0.000000pt;}
.x98_c01424{left:55.020000pt;}
.x7e_c01424{left:57.902667pt;}
.x37_c01424{left:62.886959pt;}
.x18_c01424{left:65.060000pt;}
.x8f_c01424{left:67.200000pt;}
.x89_c01424{left:68.270667pt;}
.x71_c01424{left:70.176000pt;}
.x46_c01424{left:71.836000pt;}
.x30_c01424{left:75.154080pt;}
.x72_c01424{left:87.917333pt;}
.xab_c01424{left:90.328000pt;}
.x14_c01424{left:105.432944pt;}
.x8e_c01424{left:107.520000pt;}
.x73_c01424{left:109.365333pt;}
.x47_c01424{left:112.485333pt;}
.x38_c01424{left:113.539431pt;}
.x31_c01424{left:114.602080pt;}
.x19_c01424{left:116.522667pt;}
.x15_c01424{left:145.033105pt;}
.x48_c01424{left:150.993333pt;}
.x32_c01424{left:152.178080pt;}
.x1a_c01424{left:153.392000pt;}
.x7f_c01424{left:155.821333pt;}
.x74_c01424{left:157.524000pt;}
.x5b_c01424{left:158.990667pt;}
.xaf_c01424{left:170.972491pt;}
.x6e_c01424{left:173.757613pt;}
.x7b_c01424{left:175.516373pt;}
.x3e_c01424{left:176.896619pt;}
.x50_c01424{left:178.643797pt;}
.x25_c01424{left:181.497652pt;}
.x16_c01424{left:183.379883pt;}
.x90_c01424{left:185.036000pt;}
.xb_c01424{left:203.048000pt;}
.x3f_c01424{left:208.336627pt;}
.x99_c01424{left:210.242667pt;}
.x80_c01424{left:213.658667pt;}
.x63_c01424{left:215.369413pt;}
.x59_c01424{left:216.796437pt;}
.x17_c01424{left:222.760044pt;}
.x1b_c01424{left:230.681333pt;}
.xc_c01424{left:243.134667pt;}
.x64_c01424{left:244.892533pt;}
.x39_c01424{left:247.975831pt;}
.x26_c01424{left:249.428319pt;}
.x81_c01424{left:251.826667pt;}
.x75_c01424{left:254.260000pt;}
.x5c_c01424{left:255.489333pt;}
.x8a_c01424{left:260.985333pt;}
.x1c_c01424{left:269.564000pt;}
.x7c_c01424{left:272.948869pt;}
.xb0_c01424{left:277.305824pt;}
.x87_c01424{left:281.052000pt;}
.x8_c01424{left:282.481333pt;}
.x4_c01424{left:283.374667pt;}
.x40_c01424{left:285.616533pt;}
.x27_c01424{left:288.326985pt;}
.x91_c01424{left:292.748000pt;}
.x6f_c01424{left:294.252800pt;}
.x2d_c01424{left:297.318533pt;}
.x7d_c01424{left:301.286512pt;}
.x5a_c01424{left:304.165285pt;}
.x92_c01424{left:316.196000pt;}
.xa5_c01424{left:317.836360pt;}
.x9e_c01424{left:318.793333pt;}
.x88_c01424{left:321.138667pt;}
.xb1_c01424{left:326.511157pt;}
.x1d_c01424{left:329.112000pt;}
.x8b_c01424{left:331.274667pt;}
.x5_c01424{left:332.345333pt;}
.x51_c01424{left:334.905909pt;}
.x9_c01424{left:340.800000pt;}
.x1_c01424{left:343.680000pt;}
.x9a_c01424{left:347.313333pt;}
.x76_c01424{left:350.753333pt;}
.x5d_c01424{left:352.212000pt;}
.x41_c01424{left:353.536980pt;}
.xa6_c01424{left:355.950080pt;}
.x28_c01424{left:357.981652pt;}
.xd_c01424{left:360.102667pt;}
.x2_c01424{left:363.360000pt;}
.x33_c01424{left:365.596747pt;}
.x49_c01424{left:373.965333pt;}
.x2e_c01424{left:375.889211pt;}
.x42_c01424{left:382.576784pt;}
.xa7_c01424{left:386.426927pt;}
.x6_c01424{left:390.417333pt;}
.x3a_c01424{left:394.510671pt;}
.xe_c01424{left:397.020000pt;}
.x3_c01424{left:401.760000pt;}
.x4a_c01424{left:403.072000pt;}
.x2f_c01424{left:404.931737pt;}
.x9b_c01424{left:405.877333pt;}
.x65_c01424{left:410.510240pt;}
.x5e_c01424{left:411.732000pt;}
.x52_c01424{left:413.667632pt;}
.x9f_c01424{left:415.054667pt;}
.x7_c01424{left:419.376000pt;}
.xf_c01424{left:427.014667pt;}
.x53_c01424{left:431.628757pt;}
.x43_c01424{left:433.217091pt;}
.x93_c01424{left:434.996000pt;}
.x1e_c01424{left:436.694667pt;}
.x77_c01424{left:438.836000pt;}
.x66_c01424{left:439.784027pt;}
.xa_c01424{left:441.360000pt;}
.xa0_c01424{left:443.848000pt;}
.x82_c01424{left:448.086667pt;}
.x8c_c01424{left:449.106667pt;}
.x29_c01424{left:454.666985pt;}
.xa8_c01424{left:463.226327pt;}
.x1f_c01424{left:464.729333pt;}
.x67_c01424{left:468.829827pt;}
.x34_c01424{left:472.158080pt;}
.xa1_c01424{left:474.564000pt;}
.x10_c01424{left:475.500000pt;}
.x54_c01424{left:479.624181pt;}
.xb2_c01424{left:481.548491pt;}
.xac_c01424{left:482.560000pt;}
.x2a_c01424{left:483.466985pt;}
.x44_c01424{left:488.896495pt;}
.x20_c01424{left:493.049333pt;}
.x4b_c01424{left:499.556000pt;}
.x83_c01424{left:506.404000pt;}
.xad_c01424{left:512.046667pt;}
.x78_c01424{left:516.833333pt;}
.x45_c01424{left:523.467441pt;}
.x84_c01424{left:526.802667pt;}
.x94_c01424{left:531.494667pt;}
.x55_c01424{left:540.431445pt;}
.xae_c01424{left:541.573333pt;}
.x95_c01424{left:545.106667pt;}
.x79_c01424{left:546.392000pt;}
.x35_c01424{left:550.167413pt;}
.xa2_c01424{left:551.864000pt;}
.x68_c01424{left:556.668520pt;}
.x21_c01424{left:571.294667pt;}
.x11_c01424{left:573.429333pt;}
.x56_c01424{left:577.063013pt;}
.x4c_c01424{left:578.068000pt;}
.x36_c01424{left:579.931413pt;}
.x69_c01424{left:586.434293pt;}
.x3b_c01424{left:588.555384pt;}
.x85_c01424{left:593.998667pt;}
.x5f_c01424{left:596.570667pt;}
.x22_c01424{left:600.810667pt;}
.x12_c01424{left:602.233333pt;}
.x4d_c01424{left:618.358667pt;}
.x6a_c01424{left:624.099827pt;}
.x57_c01424{left:625.310437pt;}
.x23_c01424{left:630.342667pt;}
.x86_c01424{left:631.917333pt;}
.x60_c01424{left:634.706667pt;}
.xa9_c01424{left:639.143787pt;}
.xa3_c01424{left:649.318667pt;}
.x13_c01424{left:652.697333pt;}
.x2b_c01424{left:659.460319pt;}
.x61_c01424{left:663.272000pt;}
.x3c_c01424{left:666.580713pt;}
.x6b_c01424{left:673.318347pt;}
.xa4_c01424{left:678.598667pt;}
.x7a_c01424{left:682.962667pt;}
.x2c_c01424{left:687.230985pt;}
.x96_c01424{left:689.998667pt;}
.x3d_c01424{left:695.388215pt;}
.x58_c01424{left:696.362923pt;}
.x24_c01424{left:698.765333pt;}
.x6c_c01424{left:702.320147pt;}
.x4e_c01424{left:706.458667pt;}
.xaa_c01424{left:719.845613pt;}
.x97_c01424{left:770.957333pt;}
.x9c_c01424{left:771.996000pt;}
.x8d_c01424{left:772.929333pt;}
.x6d_c01424{left:774.800640pt;}
.x62_c01424{left:776.394667pt;}
.x4f_c01424{left:777.862667pt;}
.x70_c01424{left:779.029413pt;}
.x9d_c01424{left:789.201333pt;}
}





/* 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_c01425 {
    display:none;
  }
  .loading-indicator_c01425.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01425 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_c01425 { 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_c01425" -> "#page-container .classname_c01425")
 */
.pf_c01425 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01425 { /* 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_c01425.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01425 { /* 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_c01425 { /* 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_c01425 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01425 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01425 {overflow:visible;}
  }
}
.c_c01425 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01425 { /* 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_c01425:after { /* webkit #35443 */
  content: '';
}
.t_c01425:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01425 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 */
}
.__c01425 { /* 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_c01425 { /* info for Javascript */
  display:none;
}
.l_c01425 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01425 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01425 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01425: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_c01425 {
    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_c01425.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01425.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_c01425 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01425{font-family:sans-serif;visibility:hidden;}
.sc__c01425{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01425{-webkit-text-stroke:0px transparent;}
}
.y0_c01425{bottom:0.000000px;}
.h1_c01425{height:1250.250000px;}
.h0_c01425{height:1250.370000px;}
.w0_c01425{width:912.000000px;}
.x0_c01425{left:0.000000px;}
@media print{
.y0_c01425{bottom:0.000000pt;}
.h1_c01425{height:1111.333333pt;}
.h0_c01425{height:1111.440000pt;}
.w0_c01425{width:810.666667pt;}
.x0_c01425{left:0.000000pt;}
}





/* 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_c01426 {
    display:none;
  }
  .loading-indicator_c01426.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01426 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_c01426 { 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_c01426" -> "#page-container .classname_c01426")
 */
.pf_c01426 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01426 { /* 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_c01426.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01426 { /* 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_c01426 { /* 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_c01426 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01426 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01426 {overflow:visible;}
  }
}
.c_c01426 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01426 { /* 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_c01426:after { /* webkit #35443 */
  content: '';
}
.t_c01426:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01426 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 */
}
.__c01426 { /* 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_c01426 { /* info for Javascript */
  display:none;
}
.l_c01426 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01426 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01426 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01426: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_c01426 {
    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_c01426.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01426.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_c01426 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01426{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01426;src:url('chunks/assets/font_a72a081e1d55f37b0ea09712.woff2')format("woff");}.ff1_c01426{font-family:ff1_c01426;line-height:1.000000;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;}
.m5_c01426{transform:matrix(0.031820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.031820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.031820,0.000000,0.000000,0.250000,0,0);}
.m7_c01426{transform:matrix(0.048025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.048025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.048025,0.000000,0.000000,0.250000,0,0);}
.m0_c01426{transform:matrix(0.260350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260350,0.000000,0.000000,0.250000,0,0);}
.m3_c01426{transform:matrix(0.306125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306125,0.000000,0.000000,0.250000,0,0);}
.m2_c01426{transform:matrix(0.359340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359340,0.000000,0.000000,0.250000,0,0);}
.m4_c01426{transform:matrix(0.372485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372485,0.000000,0.000000,0.250000,0,0);}
.m6_c01426{transform:matrix(0.469695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469695,0.000000,0.000000,0.250000,0,0);}
.m1_c01426{transform:matrix(2.567150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.567150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.567150,0.000000,0.000000,0.250000,0,0);}
.v0_c01426{vertical-align:0.000000px;}
.ls0_c01426{letter-spacing:0.000000px;}
.sc__c01426{text-shadow:none;}
.sc0_c01426{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__c01426{-webkit-text-stroke:0px transparent;}
.sc0_c01426{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01426{word-spacing:0.000000px;}
.fc0_c01426{color:transparent;}
.fs0_c01426{font-size:18.000000px;}
.fs2_c01426{font-size:24.000000px;}
.fs1_c01426{font-size:30.000000px;}
.y0_c01426{bottom:0.000000px;}
.y2_c01426{bottom:197.100000px;}
.y4_c01426{bottom:240.444000px;}
.y3_c01426{bottom:243.409500px;}
.y1_c01426{bottom:262.170000px;}
.h2_c01426{height:18.000000px;}
.h4_c01426{height:24.000000px;}
.h3_c01426{height:30.000000px;}
.h1_c01426{height:1250.250000px;}
.h0_c01426{height:1250.370000px;}
.w0_c01426{width:912.000000px;}
.x0_c01426{left:0.000000px;}
.x2_c01426{left:3.240000px;}
.x1_c01426{left:4.590000px;}
.x4_c01426{left:482.760000px;}
.x3_c01426{left:484.920000px;}
.x5_c01426{left:490.590000px;}
.x6_c01426{left:510.300000px;}
.x7_c01426{left:525.690000px;}
.x8_c01426{left:545.130000px;}
@media print{
.v0_c01426{vertical-align:0.000000pt;}
.ls0_c01426{letter-spacing:0.000000pt;}
.ws0_c01426{word-spacing:0.000000pt;}
.fs0_c01426{font-size:16.000000pt;}
.fs2_c01426{font-size:21.333333pt;}
.fs1_c01426{font-size:26.666667pt;}
.y0_c01426{bottom:0.000000pt;}
.y2_c01426{bottom:175.200000pt;}
.y4_c01426{bottom:213.728000pt;}
.y3_c01426{bottom:216.364000pt;}
.y1_c01426{bottom:233.040000pt;}
.h2_c01426{height:16.000000pt;}
.h4_c01426{height:21.333333pt;}
.h3_c01426{height:26.666667pt;}
.h1_c01426{height:1111.333333pt;}
.h0_c01426{height:1111.440000pt;}
.w0_c01426{width:810.666667pt;}
.x0_c01426{left:0.000000pt;}
.x2_c01426{left:2.880000pt;}
.x1_c01426{left:4.080000pt;}
.x4_c01426{left:429.120000pt;}
.x3_c01426{left:431.040000pt;}
.x5_c01426{left:436.080000pt;}
.x6_c01426{left:453.600000pt;}
.x7_c01426{left:467.280000pt;}
.x8_c01426{left:484.560000pt;}
}





/* 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_c01427 {
    display:none;
  }
  .loading-indicator_c01427.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01427 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_c01427 { 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_c01427" -> "#page-container .classname_c01427")
 */
.pf_c01427 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01427 { /* 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_c01427.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01427 { /* 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_c01427 { /* 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_c01427 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01427 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01427 {overflow:visible;}
  }
}
.c_c01427 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01427 { /* 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_c01427:after { /* webkit #35443 */
  content: '';
}
.t_c01427:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01427 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 */
}
.__c01427 { /* 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_c01427 { /* info for Javascript */
  display:none;
}
.l_c01427 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01427 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01427 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01427: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_c01427 {
    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_c01427.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01427.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_c01427 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01427{font-family:sans-serif;visibility:hidden;}
.sc__c01427{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01427{-webkit-text-stroke:0px transparent;}
}
.y0_c01427{bottom:0.000000px;}
.h1_c01427{height:1250.250000px;}
.h0_c01427{height:1250.370000px;}
.w0_c01427{width:912.000000px;}
.x0_c01427{left:0.000000px;}
@media print{
.y0_c01427{bottom:0.000000pt;}
.h1_c01427{height:1111.333333pt;}
.h0_c01427{height:1111.440000pt;}
.w0_c01427{width:810.666667pt;}
.x0_c01427{left:0.000000pt;}
}





/* 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_c01428 {
    display:none;
  }
  .loading-indicator_c01428.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01428 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_c01428 { 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_c01428" -> "#page-container .classname_c01428")
 */
.pf_c01428 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01428 { /* 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_c01428.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01428 { /* 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_c01428 { /* 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_c01428 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01428 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01428 {overflow:visible;}
  }
}
.c_c01428 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01428 { /* 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_c01428:after { /* webkit #35443 */
  content: '';
}
.t_c01428:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01428 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 */
}
.__c01428 { /* 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_c01428 { /* info for Javascript */
  display:none;
}
.l_c01428 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01428 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01428 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01428: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_c01428 {
    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_c01428.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01428.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_c01428 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01428{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01428;src:url('chunks/assets/font_c605e72f209fc835e906f064.woff2')format("woff");}.ff1_c01428{font-family:ff1_c01428;line-height:1.000000;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;}
.mde_c01428{transform:matrix(0.026192,0.000367,-0.003500,0.249976,0,0);-ms-transform:matrix(0.026192,0.000367,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.026192,0.000367,-0.003500,0.249976,0,0);}
.m6_c01428{transform:matrix(0.118970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118970,0.000000,0.000000,0.250000,0,0);}
.m2d_c01428{transform:matrix(0.147779,0.001330,-0.002250,0.249990,0,0);-ms-transform:matrix(0.147779,0.001330,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.147779,0.001330,-0.002250,0.249990,0,0);}
.mbc_c01428{transform:matrix(0.156829,0.001882,-0.003000,0.249982,0,0);-ms-transform:matrix(0.156829,0.001882,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.156829,0.001882,-0.003000,0.249982,0,0);}
.m49_c01428{transform:matrix(0.164276,0.002136,-0.003250,0.249979,0,0);-ms-transform:matrix(0.164276,0.002136,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.164276,0.002136,-0.003250,0.249979,0,0);}
.mb_c01428{transform:matrix(0.165422,0.001654,-0.002500,0.249988,0,0);-ms-transform:matrix(0.165422,0.001654,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.165422,0.001654,-0.002500,0.249988,0,0);}
.mcf_c01428{transform:matrix(0.169626,0.002205,-0.003250,0.249979,0,0);-ms-transform:matrix(0.169626,0.002205,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.169626,0.002205,-0.003250,0.249979,0,0);}
.m8_c01428{transform:matrix(0.172236,0.001722,-0.002500,0.249988,0,0);-ms-transform:matrix(0.172236,0.001722,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.172236,0.001722,-0.002500,0.249988,0,0);}
.m4_c01428{transform:matrix(0.174165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174165,0.000000,0.000000,0.250000,0,0);}
.me_c01428{transform:matrix(0.174331,0.001743,-0.002500,0.249988,0,0);-ms-transform:matrix(0.174331,0.001743,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.174331,0.001743,-0.002500,0.249988,0,0);}
.m9_c01428{transform:matrix(0.175001,0.001750,-0.002500,0.249988,0,0);-ms-transform:matrix(0.175001,0.001750,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.175001,0.001750,-0.002500,0.249988,0,0);}
.m4b_c01428{transform:matrix(0.175010,0.002275,-0.003250,0.249979,0,0);-ms-transform:matrix(0.175010,0.002275,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.175010,0.002275,-0.003250,0.249979,0,0);}
.m5_c01428{transform:matrix(0.175830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175830,0.000000,0.000000,0.250000,0,0);}
.m66_c01428{transform:matrix(0.178647,0.002144,-0.003000,0.249982,0,0);-ms-transform:matrix(0.178647,0.002144,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.178647,0.002144,-0.003000,0.249982,0,0);}
.md_c01428{transform:matrix(0.182966,0.001830,-0.002500,0.249988,0,0);-ms-transform:matrix(0.182966,0.001830,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.182966,0.001830,-0.002500,0.249988,0,0);}
.mf_c01428{transform:matrix(0.183091,0.001831,-0.002500,0.249988,0,0);-ms-transform:matrix(0.183091,0.001831,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.183091,0.001831,-0.002500,0.249988,0,0);}
.m11_c01428{transform:matrix(0.188531,0.001885,-0.002500,0.249988,0,0);-ms-transform:matrix(0.188531,0.001885,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.188531,0.001885,-0.002500,0.249988,0,0);}
.m53_c01428{transform:matrix(0.189734,0.002087,-0.002750,0.249985,0,0);-ms-transform:matrix(0.189734,0.002087,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.189734,0.002087,-0.002750,0.249985,0,0);}
.ma_c01428{transform:matrix(0.191175,0.001912,-0.002500,0.249988,0,0);-ms-transform:matrix(0.191175,0.001912,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.191175,0.001912,-0.002500,0.249988,0,0);}
.mc_c01428{transform:matrix(0.193430,0.001934,-0.002500,0.249988,0,0);-ms-transform:matrix(0.193430,0.001934,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.193430,0.001934,-0.002500,0.249988,0,0);}
.m67_c01428{transform:matrix(0.195701,0.002348,-0.003000,0.249982,0,0);-ms-transform:matrix(0.195701,0.002348,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.195701,0.002348,-0.003000,0.249982,0,0);}
.m69_c01428{transform:matrix(0.197771,0.002373,-0.003000,0.249982,0,0);-ms-transform:matrix(0.197771,0.002373,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.197771,0.002373,-0.003000,0.249982,0,0);}
.m65_c01428{transform:matrix(0.199881,0.002399,-0.003000,0.249982,0,0);-ms-transform:matrix(0.199881,0.002399,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.199881,0.002399,-0.003000,0.249982,0,0);}
.m44_c01428{transform:matrix(0.200573,0.002607,-0.003250,0.249979,0,0);-ms-transform:matrix(0.200573,0.002607,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.200573,0.002607,-0.003250,0.249979,0,0);}
.m4a_c01428{transform:matrix(0.201288,0.002617,-0.003250,0.249979,0,0);-ms-transform:matrix(0.201288,0.002617,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.201288,0.002617,-0.003250,0.249979,0,0);}
.mb4_c01428{transform:matrix(0.202178,0.002628,-0.003250,0.249979,0,0);-ms-transform:matrix(0.202178,0.002628,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.202178,0.002628,-0.003250,0.249979,0,0);}
.m10_c01428{transform:matrix(0.202280,0.002023,-0.002500,0.249988,0,0);-ms-transform:matrix(0.202280,0.002023,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.202280,0.002023,-0.002500,0.249988,0,0);}
.m56_c01428{transform:matrix(0.204448,0.002249,-0.002750,0.249985,0,0);-ms-transform:matrix(0.204448,0.002249,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.204448,0.002249,-0.002750,0.249985,0,0);}
.m5d_c01428{transform:matrix(0.204950,0.002459,-0.003000,0.249982,0,0);-ms-transform:matrix(0.204950,0.002459,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.204950,0.002459,-0.003000,0.249982,0,0);}
.m51_c01428{transform:matrix(0.206443,0.002271,-0.002750,0.249985,0,0);-ms-transform:matrix(0.206443,0.002271,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.206443,0.002271,-0.002750,0.249985,0,0);}
.m6b_c01428{transform:matrix(0.207035,0.002484,-0.003000,0.249982,0,0);-ms-transform:matrix(0.207035,0.002484,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.207035,0.002484,-0.003000,0.249982,0,0);}
.m5a_c01428{transform:matrix(0.209535,0.002514,-0.003000,0.249982,0,0);-ms-transform:matrix(0.209535,0.002514,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.209535,0.002514,-0.003000,0.249982,0,0);}
.m4e_c01428{transform:matrix(0.209677,0.002306,-0.002750,0.249985,0,0);-ms-transform:matrix(0.209677,0.002306,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.209677,0.002306,-0.002750,0.249985,0,0);}
.m4f_c01428{transform:matrix(0.210407,0.002314,-0.002750,0.249985,0,0);-ms-transform:matrix(0.210407,0.002314,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.210407,0.002314,-0.002750,0.249985,0,0);}
.m6a_c01428{transform:matrix(0.210490,0.002526,-0.003000,0.249982,0,0);-ms-transform:matrix(0.210490,0.002526,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.210490,0.002526,-0.003000,0.249982,0,0);}
.m2b_c01428{transform:matrix(0.210611,0.001896,-0.002250,0.249990,0,0);-ms-transform:matrix(0.210611,0.001896,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.210611,0.001896,-0.002250,0.249990,0,0);}
.m54_c01428{transform:matrix(0.210807,0.002319,-0.002750,0.249985,0,0);-ms-transform:matrix(0.210807,0.002319,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.210807,0.002319,-0.002750,0.249985,0,0);}
.m68_c01428{transform:matrix(0.211290,0.002535,-0.003000,0.249982,0,0);-ms-transform:matrix(0.211290,0.002535,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.211290,0.002535,-0.003000,0.249982,0,0);}
.mcb_c01428{transform:matrix(0.211327,0.002747,-0.003250,0.249979,0,0);-ms-transform:matrix(0.211327,0.002747,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.211327,0.002747,-0.003250,0.249979,0,0);}
.ma9_c01428{transform:matrix(0.213587,0.002349,-0.002750,0.249985,0,0);-ms-transform:matrix(0.213587,0.002349,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.213587,0.002349,-0.002750,0.249985,0,0);}
.m58_c01428{transform:matrix(0.215727,0.002373,-0.002750,0.249985,0,0);-ms-transform:matrix(0.215727,0.002373,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.215727,0.002373,-0.002750,0.249985,0,0);}
.m46_c01428{transform:matrix(0.216772,0.002818,-0.003250,0.249979,0,0);-ms-transform:matrix(0.216772,0.002818,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.216772,0.002818,-0.003250,0.249979,0,0);}
.m76_c01428{transform:matrix(0.216952,0.004339,-0.004999,0.249950,0,0);-ms-transform:matrix(0.216952,0.004339,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.216952,0.004339,-0.004999,0.249950,0,0);}
.m60_c01428{transform:matrix(0.217914,0.002615,-0.003000,0.249982,0,0);-ms-transform:matrix(0.217914,0.002615,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.217914,0.002615,-0.003000,0.249982,0,0);}
.m5f_c01428{transform:matrix(0.217994,0.002616,-0.003000,0.249982,0,0);-ms-transform:matrix(0.217994,0.002616,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.217994,0.002616,-0.003000,0.249982,0,0);}
.m0_c01428{transform:matrix(0.218050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218050,0.000000,0.000000,0.250000,0,0);}
.m83_c01428{transform:matrix(0.218211,0.004364,-0.004999,0.249950,0,0);-ms-transform:matrix(0.218211,0.004364,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.218211,0.004364,-0.004999,0.249950,0,0);}
.m47_c01428{transform:matrix(0.221916,0.002885,-0.003250,0.249979,0,0);-ms-transform:matrix(0.221916,0.002885,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.221916,0.002885,-0.003250,0.249979,0,0);}
.m74_c01428{transform:matrix(0.222081,0.004442,-0.004999,0.249950,0,0);-ms-transform:matrix(0.222081,0.004442,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.222081,0.004442,-0.004999,0.249950,0,0);}
.m73_c01428{transform:matrix(0.222101,0.004442,-0.004999,0.249950,0,0);-ms-transform:matrix(0.222101,0.004442,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.222101,0.004442,-0.004999,0.249950,0,0);}
.m4c_c01428{transform:matrix(0.222381,0.002891,-0.003250,0.249979,0,0);-ms-transform:matrix(0.222381,0.002891,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.222381,0.002891,-0.003250,0.249979,0,0);}
.m86_c01428{transform:matrix(0.223655,0.004473,-0.004999,0.249950,0,0);-ms-transform:matrix(0.223655,0.004473,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.223655,0.004473,-0.004999,0.249950,0,0);}
.m61_c01428{transform:matrix(0.224864,0.002698,-0.003000,0.249982,0,0);-ms-transform:matrix(0.224864,0.002698,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.224864,0.002698,-0.003000,0.249982,0,0);}
.m43_c01428{transform:matrix(0.225001,0.002925,-0.003250,0.249979,0,0);-ms-transform:matrix(0.225001,0.002925,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.225001,0.002925,-0.003250,0.249979,0,0);}
.m29_c01428{transform:matrix(0.225456,0.002029,-0.002250,0.249990,0,0);-ms-transform:matrix(0.225456,0.002029,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.225456,0.002029,-0.002250,0.249990,0,0);}
.m4d_c01428{transform:matrix(0.225671,0.002934,-0.003250,0.249979,0,0);-ms-transform:matrix(0.225671,0.002934,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.225671,0.002934,-0.003250,0.249979,0,0);}
.m52_c01428{transform:matrix(0.225796,0.002484,-0.002750,0.249985,0,0);-ms-transform:matrix(0.225796,0.002484,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.225796,0.002484,-0.002750,0.249985,0,0);}
.m7c_c01428{transform:matrix(0.226555,0.004531,-0.004999,0.249950,0,0);-ms-transform:matrix(0.226555,0.004531,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.226555,0.004531,-0.004999,0.249950,0,0);}
.m6c_c01428{transform:matrix(0.226770,0.004535,-0.004999,0.249950,0,0);-ms-transform:matrix(0.226770,0.004535,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.226770,0.004535,-0.004999,0.249950,0,0);}
.mab_c01428{transform:matrix(0.227326,0.002501,-0.002750,0.249985,0,0);-ms-transform:matrix(0.227326,0.002501,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.227326,0.002501,-0.002750,0.249985,0,0);}
.m50_c01428{transform:matrix(0.227516,0.002503,-0.002750,0.249985,0,0);-ms-transform:matrix(0.227516,0.002503,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.227516,0.002503,-0.002750,0.249985,0,0);}
.mc7_c01428{transform:matrix(0.228074,0.002737,-0.003000,0.249982,0,0);-ms-transform:matrix(0.228074,0.002737,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.228074,0.002737,-0.003000,0.249982,0,0);}
.m8a_c01428{transform:matrix(0.229159,0.004583,-0.004999,0.249950,0,0);-ms-transform:matrix(0.229159,0.004583,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.229159,0.004583,-0.004999,0.249950,0,0);}
.m57_c01428{transform:matrix(0.229286,0.002522,-0.002750,0.249985,0,0);-ms-transform:matrix(0.229286,0.002522,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.229286,0.002522,-0.002750,0.249985,0,0);}
.m5e_c01428{transform:matrix(0.229438,0.002753,-0.003000,0.249982,0,0);-ms-transform:matrix(0.229438,0.002753,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.229438,0.002753,-0.003000,0.249982,0,0);}
.m55_c01428{transform:matrix(0.229586,0.002525,-0.002750,0.249985,0,0);-ms-transform:matrix(0.229586,0.002525,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.229586,0.002525,-0.002750,0.249985,0,0);}
.m5c_c01428{transform:matrix(0.230073,0.002761,-0.003000,0.249982,0,0);-ms-transform:matrix(0.230073,0.002761,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.230073,0.002761,-0.003000,0.249982,0,0);}
.m45_c01428{transform:matrix(0.230476,0.002996,-0.003250,0.249979,0,0);-ms-transform:matrix(0.230476,0.002996,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.230476,0.002996,-0.003250,0.249979,0,0);}
.md5_c01428{transform:matrix(0.230522,0.003227,-0.003500,0.249976,0,0);-ms-transform:matrix(0.230522,0.003227,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.230522,0.003227,-0.003500,0.249976,0,0);}
.m87_c01428{transform:matrix(0.230869,0.004617,-0.004999,0.249950,0,0);-ms-transform:matrix(0.230869,0.004617,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.230869,0.004617,-0.004999,0.249950,0,0);}
.m62_c01428{transform:matrix(0.232743,0.002793,-0.003000,0.249982,0,0);-ms-transform:matrix(0.232743,0.002793,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.232743,0.002793,-0.003000,0.249982,0,0);}
.m5b_c01428{transform:matrix(0.232978,0.002796,-0.003000,0.249982,0,0);-ms-transform:matrix(0.232978,0.002796,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.232978,0.002796,-0.003000,0.249982,0,0);}
.m41_c01428{transform:matrix(0.233723,0.002337,-0.002500,0.249988,0,0);-ms-transform:matrix(0.233723,0.002337,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.233723,0.002337,-0.002500,0.249988,0,0);}
.m8f_c01428{transform:matrix(0.234213,0.004684,-0.004999,0.249950,0,0);-ms-transform:matrix(0.234213,0.004684,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.234213,0.004684,-0.004999,0.249950,0,0);}
.mbf_c01428{transform:matrix(0.235063,0.002821,-0.003000,0.249982,0,0);-ms-transform:matrix(0.235063,0.002821,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.235063,0.002821,-0.003000,0.249982,0,0);}
.m48_c01428{transform:matrix(0.235270,0.003059,-0.003250,0.249979,0,0);-ms-transform:matrix(0.235270,0.003059,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.235270,0.003059,-0.003250,0.249979,0,0);}
.m28_c01428{transform:matrix(0.235625,0.002121,-0.002250,0.249990,0,0);-ms-transform:matrix(0.235625,0.002121,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.235625,0.002121,-0.002250,0.249990,0,0);}
.m7e_c01428{transform:matrix(0.236138,0.004723,-0.004999,0.249950,0,0);-ms-transform:matrix(0.236138,0.004723,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.236138,0.004723,-0.004999,0.249950,0,0);}
.mee_c01428{transform:matrix(0.236425,0.003074,-0.003250,0.249979,0,0);-ms-transform:matrix(0.236425,0.003074,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.236425,0.003074,-0.003250,0.249979,0,0);}
.mc2_c01428{transform:matrix(0.236503,0.002838,-0.003000,0.249982,0,0);-ms-transform:matrix(0.236503,0.002838,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.236503,0.002838,-0.003000,0.249982,0,0);}
.m26_c01428{transform:matrix(0.237125,0.002134,-0.002250,0.249990,0,0);-ms-transform:matrix(0.237125,0.002134,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.237125,0.002134,-0.002250,0.249990,0,0);}
.mb9_c01428{transform:matrix(0.237168,0.002846,-0.003000,0.249982,0,0);-ms-transform:matrix(0.237168,0.002846,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.237168,0.002846,-0.003000,0.249982,0,0);}
.maf_c01428{transform:matrix(0.238195,0.003097,-0.003250,0.249979,0,0);-ms-transform:matrix(0.238195,0.003097,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.238195,0.003097,-0.003250,0.249979,0,0);}
.mf9_c01428{transform:matrix(0.238521,0.002624,-0.002750,0.249985,0,0);-ms-transform:matrix(0.238521,0.002624,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.238521,0.002624,-0.002750,0.249985,0,0);}
.m8c_c01428{transform:matrix(0.238687,0.004774,-0.004999,0.249950,0,0);-ms-transform:matrix(0.238687,0.004774,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.238687,0.004774,-0.004999,0.249950,0,0);}
.meb_c01428{transform:matrix(0.238960,0.003106,-0.003250,0.249979,0,0);-ms-transform:matrix(0.238960,0.003106,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.238960,0.003106,-0.003250,0.249979,0,0);}
.mb3_c01428{transform:matrix(0.239050,0.003108,-0.003250,0.249979,0,0);-ms-transform:matrix(0.239050,0.003108,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.239050,0.003108,-0.003250,0.249979,0,0);}
.m72_c01428{transform:matrix(0.239077,0.004782,-0.004999,0.249950,0,0);-ms-transform:matrix(0.239077,0.004782,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.239077,0.004782,-0.004999,0.249950,0,0);}
.m3c_c01428{transform:matrix(0.239283,0.002393,-0.002500,0.249988,0,0);-ms-transform:matrix(0.239283,0.002393,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.239283,0.002393,-0.002500,0.249988,0,0);}
.mf2_c01428{transform:matrix(0.240230,0.003123,-0.003250,0.249979,0,0);-ms-transform:matrix(0.240230,0.003123,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.240230,0.003123,-0.003250,0.249979,0,0);}
.m1_c01428{transform:matrix(0.240495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240495,0.000000,0.000000,0.250000,0,0);}
.m90_c01428{transform:matrix(0.242262,0.004845,-0.004999,0.249950,0,0);-ms-transform:matrix(0.242262,0.004845,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.242262,0.004845,-0.004999,0.249950,0,0);}
.m59_c01428{transform:matrix(0.242685,0.002670,-0.002750,0.249985,0,0);-ms-transform:matrix(0.242685,0.002670,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.242685,0.002670,-0.002750,0.249985,0,0);}
.m2c_c01428{transform:matrix(0.243280,0.002190,-0.002250,0.249990,0,0);-ms-transform:matrix(0.243280,0.002190,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.243280,0.002190,-0.002250,0.249990,0,0);}
.m7f_c01428{transform:matrix(0.244896,0.004898,-0.004999,0.249950,0,0);-ms-transform:matrix(0.244896,0.004898,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.244896,0.004898,-0.004999,0.249950,0,0);}
.mb5_c01428{transform:matrix(0.245484,0.003191,-0.003250,0.249979,0,0);-ms-transform:matrix(0.245484,0.003191,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.245484,0.003191,-0.003250,0.249979,0,0);}
.m89_c01428{transform:matrix(0.246781,0.004936,-0.004999,0.249950,0,0);-ms-transform:matrix(0.246781,0.004936,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.246781,0.004936,-0.004999,0.249950,0,0);}
.m3d_c01428{transform:matrix(0.247588,0.002476,-0.002500,0.249988,0,0);-ms-transform:matrix(0.247588,0.002476,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.247588,0.002476,-0.002500,0.249988,0,0);}
.mc8_c01428{transform:matrix(0.247667,0.002972,-0.003000,0.249982,0,0);-ms-transform:matrix(0.247667,0.002972,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.247667,0.002972,-0.003000,0.249982,0,0);}
.m7b_c01428{transform:matrix(0.247690,0.004954,-0.004999,0.249950,0,0);-ms-transform:matrix(0.247690,0.004954,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.247690,0.004954,-0.004999,0.249950,0,0);}
.m31_c01428{transform:matrix(0.248095,0.002233,-0.002250,0.249990,0,0);-ms-transform:matrix(0.248095,0.002233,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.248095,0.002233,-0.002250,0.249990,0,0);}
.mfd_c01428{transform:matrix(0.248195,0.002730,-0.002750,0.249985,0,0);-ms-transform:matrix(0.248195,0.002730,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.248195,0.002730,-0.002750,0.249985,0,0);}
.m71_c01428{transform:matrix(0.248290,0.004966,-0.004999,0.249950,0,0);-ms-transform:matrix(0.248290,0.004966,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.248290,0.004966,-0.004999,0.249950,0,0);}
.m92_c01428{transform:matrix(0.248435,0.004969,-0.004999,0.249950,0,0);-ms-transform:matrix(0.248435,0.004969,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.248435,0.004969,-0.004999,0.249950,0,0);}
.me9_c01428{transform:matrix(0.248639,0.003232,-0.003250,0.249979,0,0);-ms-transform:matrix(0.248639,0.003232,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.248639,0.003232,-0.003250,0.249979,0,0);}
.mca_c01428{transform:matrix(0.248719,0.003233,-0.003250,0.249979,0,0);-ms-transform:matrix(0.248719,0.003233,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.248719,0.003233,-0.003250,0.249979,0,0);}
.m27_c01428{transform:matrix(0.248885,0.002240,-0.002250,0.249990,0,0);-ms-transform:matrix(0.248885,0.002240,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.248885,0.002240,-0.002250,0.249990,0,0);}
.m2_c01428{transform:matrix(0.249480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249480,0.000000,0.000000,0.250000,0,0);}
.me4_c01428{transform:matrix(0.250365,0.003505,-0.003500,0.249976,0,0);-ms-transform:matrix(0.250365,0.003505,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.250365,0.003505,-0.003500,0.249976,0,0);}
.m40_c01428{transform:matrix(0.251112,0.002511,-0.002500,0.249988,0,0);-ms-transform:matrix(0.251112,0.002511,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.251112,0.002511,-0.002500,0.249988,0,0);}
.mdc_c01428{transform:matrix(0.251240,0.003517,-0.003500,0.249976,0,0);-ms-transform:matrix(0.251240,0.003517,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.251240,0.003517,-0.003500,0.249976,0,0);}
.m3b_c01428{transform:matrix(0.251387,0.002514,-0.002500,0.249988,0,0);-ms-transform:matrix(0.251387,0.002514,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.251387,0.002514,-0.002500,0.249988,0,0);}
.m1c_c01428{transform:matrix(0.251872,0.002519,-0.002500,0.249988,0,0);-ms-transform:matrix(0.251872,0.002519,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.251872,0.002519,-0.002500,0.249988,0,0);}
.m85_c01428{transform:matrix(0.251985,0.005040,-0.004999,0.249950,0,0);-ms-transform:matrix(0.251985,0.005040,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.251985,0.005040,-0.004999,0.249950,0,0);}
.m2a_c01428{transform:matrix(0.252555,0.002273,-0.002250,0.249990,0,0);-ms-transform:matrix(0.252555,0.002273,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.252555,0.002273,-0.002250,0.249990,0,0);}
.mf5_c01428{transform:matrix(0.252659,0.003285,-0.003250,0.249979,0,0);-ms-transform:matrix(0.252659,0.003285,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.252659,0.003285,-0.003250,0.249979,0,0);}
.mb6_c01428{transform:matrix(0.252824,0.003287,-0.003250,0.249979,0,0);-ms-transform:matrix(0.252824,0.003287,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.252824,0.003287,-0.003250,0.249979,0,0);}
.m6e_c01428{transform:matrix(0.252859,0.005057,-0.004999,0.249950,0,0);-ms-transform:matrix(0.252859,0.005057,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.252859,0.005057,-0.004999,0.249950,0,0);}
.m7d_c01428{transform:matrix(0.253354,0.005067,-0.004999,0.249950,0,0);-ms-transform:matrix(0.253354,0.005067,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.253354,0.005067,-0.004999,0.249950,0,0);}
.m75_c01428{transform:matrix(0.253509,0.005070,-0.004999,0.249950,0,0);-ms-transform:matrix(0.253509,0.005070,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.253509,0.005070,-0.004999,0.249950,0,0);}
.mc3_c01428{transform:matrix(0.253582,0.003043,-0.003000,0.249982,0,0);-ms-transform:matrix(0.253582,0.003043,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.253582,0.003043,-0.003000,0.249982,0,0);}
.m1e_c01428{transform:matrix(0.253727,0.002537,-0.002500,0.249988,0,0);-ms-transform:matrix(0.253727,0.002537,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.253727,0.002537,-0.002500,0.249988,0,0);}
.m15_c01428{transform:matrix(0.254152,0.002542,-0.002500,0.249988,0,0);-ms-transform:matrix(0.254152,0.002542,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.254152,0.002542,-0.002500,0.249988,0,0);}
.m77_c01428{transform:matrix(0.254189,0.005084,-0.004999,0.249950,0,0);-ms-transform:matrix(0.254189,0.005084,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.254189,0.005084,-0.004999,0.249950,0,0);}
.mb2_c01428{transform:matrix(0.255188,0.003317,-0.003250,0.249979,0,0);-ms-transform:matrix(0.255188,0.003317,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.255188,0.003317,-0.003250,0.249979,0,0);}
.m81_c01428{transform:matrix(0.255564,0.005111,-0.004999,0.249950,0,0);-ms-transform:matrix(0.255564,0.005111,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.255564,0.005111,-0.004999,0.249950,0,0);}
.m25_c01428{transform:matrix(0.255950,0.002304,-0.002250,0.249990,0,0);-ms-transform:matrix(0.255950,0.002304,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.255950,0.002304,-0.002250,0.249990,0,0);}
.mbd_c01428{transform:matrix(0.256127,0.003074,-0.003000,0.249982,0,0);-ms-transform:matrix(0.256127,0.003074,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.256127,0.003074,-0.003000,0.249982,0,0);}
.md0_c01428{transform:matrix(0.256128,0.003330,-0.003250,0.249979,0,0);-ms-transform:matrix(0.256128,0.003330,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.256128,0.003330,-0.003250,0.249979,0,0);}
.med_c01428{transform:matrix(0.256403,0.003333,-0.003250,0.249979,0,0);-ms-transform:matrix(0.256403,0.003333,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.256403,0.003333,-0.003250,0.249979,0,0);}
.m78_c01428{transform:matrix(0.256409,0.005128,-0.004999,0.249950,0,0);-ms-transform:matrix(0.256409,0.005128,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.256409,0.005128,-0.004999,0.249950,0,0);}
.m1a_c01428{transform:matrix(0.256437,0.002564,-0.002500,0.249988,0,0);-ms-transform:matrix(0.256437,0.002564,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.256437,0.002564,-0.002500,0.249988,0,0);}
.m70_c01428{transform:matrix(0.256554,0.005131,-0.004999,0.249950,0,0);-ms-transform:matrix(0.256554,0.005131,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.256554,0.005131,-0.004999,0.249950,0,0);}
.m6f_c01428{transform:matrix(0.256664,0.005133,-0.004999,0.249950,0,0);-ms-transform:matrix(0.256664,0.005133,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.256664,0.005133,-0.004999,0.249950,0,0);}
.m63_c01428{transform:matrix(0.257239,0.005145,-0.004999,0.249950,0,0);-ms-transform:matrix(0.257239,0.005145,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.257239,0.005145,-0.004999,0.249950,0,0);}
.m97_c01428{transform:matrix(0.257274,0.002830,-0.002750,0.249985,0,0);-ms-transform:matrix(0.257274,0.002830,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.257274,0.002830,-0.002750,0.249985,0,0);}
.m8d_c01428{transform:matrix(0.257384,0.005148,-0.004999,0.249950,0,0);-ms-transform:matrix(0.257384,0.005148,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.257384,0.005148,-0.004999,0.249950,0,0);}
.m17_c01428{transform:matrix(0.258102,0.002581,-0.002500,0.249988,0,0);-ms-transform:matrix(0.258102,0.002581,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.258102,0.002581,-0.002500,0.249988,0,0);}
.m21_c01428{transform:matrix(0.258732,0.002587,-0.002500,0.249988,0,0);-ms-transform:matrix(0.258732,0.002587,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.258732,0.002587,-0.002500,0.249988,0,0);}
.m84_c01428{transform:matrix(0.259133,0.005183,-0.004999,0.249950,0,0);-ms-transform:matrix(0.259133,0.005183,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.259133,0.005183,-0.004999,0.249950,0,0);}
.m2f_c01428{transform:matrix(0.259439,0.002335,-0.002250,0.249990,0,0);-ms-transform:matrix(0.259439,0.002335,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.259439,0.002335,-0.002250,0.249990,0,0);}
.mec_c01428{transform:matrix(0.259738,0.003377,-0.003250,0.249979,0,0);-ms-transform:matrix(0.259738,0.003377,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.259738,0.003377,-0.003250,0.249979,0,0);}
.md7_c01428{transform:matrix(0.260195,0.003643,-0.003500,0.249976,0,0);-ms-transform:matrix(0.260195,0.003643,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.260195,0.003643,-0.003500,0.249976,0,0);}
.m8b_c01428{transform:matrix(0.260298,0.005206,-0.004999,0.249950,0,0);-ms-transform:matrix(0.260298,0.005206,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.260298,0.005206,-0.004999,0.249950,0,0);}
.mb8_c01428{transform:matrix(0.260486,0.003126,-0.003000,0.249982,0,0);-ms-transform:matrix(0.260486,0.003126,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.260486,0.003126,-0.003000,0.249982,0,0);}
.mff_c01428{transform:matrix(0.260804,0.002869,-0.002750,0.249985,0,0);-ms-transform:matrix(0.260804,0.002869,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.260804,0.002869,-0.002750,0.249985,0,0);}
.m6d_c01428{transform:matrix(0.261468,0.005229,-0.004999,0.249950,0,0);-ms-transform:matrix(0.261468,0.005229,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.261468,0.005229,-0.004999,0.249950,0,0);}
.mae_c01428{transform:matrix(0.261688,0.003402,-0.003250,0.249979,0,0);-ms-transform:matrix(0.261688,0.003402,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.261688,0.003402,-0.003250,0.249979,0,0);}
.m82_c01428{transform:matrix(0.261728,0.005235,-0.004999,0.249950,0,0);-ms-transform:matrix(0.261728,0.005235,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.261728,0.005235,-0.004999,0.249950,0,0);}
.m93_c01428{transform:matrix(0.262667,0.005253,-0.004999,0.249950,0,0);-ms-transform:matrix(0.262667,0.005253,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.262667,0.005253,-0.004999,0.249950,0,0);}
.mc5_c01428{transform:matrix(0.265476,0.003186,-0.003000,0.249982,0,0);-ms-transform:matrix(0.265476,0.003186,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.265476,0.003186,-0.003000,0.249982,0,0);}
.mfb_c01428{transform:matrix(0.266119,0.002927,-0.002750,0.249985,0,0);-ms-transform:matrix(0.266119,0.002927,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.266119,0.002927,-0.002750,0.249985,0,0);}
.m37_c01428{transform:matrix(0.266272,0.002663,-0.002500,0.249988,0,0);-ms-transform:matrix(0.266272,0.002663,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.266272,0.002663,-0.002500,0.249988,0,0);}
.mcc_c01428{transform:matrix(0.266357,0.003463,-0.003250,0.249979,0,0);-ms-transform:matrix(0.266357,0.003463,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.266357,0.003463,-0.003250,0.249979,0,0);}
.m3f_c01428{transform:matrix(0.267082,0.002671,-0.002500,0.249988,0,0);-ms-transform:matrix(0.267082,0.002671,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.267082,0.002671,-0.002500,0.249988,0,0);}
.mea_c01428{transform:matrix(0.267132,0.003473,-0.003250,0.249979,0,0);-ms-transform:matrix(0.267132,0.003473,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.267132,0.003473,-0.003250,0.249979,0,0);}
.mcd_c01428{transform:matrix(0.267487,0.003477,-0.003250,0.249979,0,0);-ms-transform:matrix(0.267487,0.003477,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.267487,0.003477,-0.003250,0.249979,0,0);}
.mb0_c01428{transform:matrix(0.268232,0.003487,-0.003250,0.249979,0,0);-ms-transform:matrix(0.268232,0.003487,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.268232,0.003487,-0.003250,0.249979,0,0);}
.mc4_c01428{transform:matrix(0.268241,0.003219,-0.003000,0.249982,0,0);-ms-transform:matrix(0.268241,0.003219,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.268241,0.003219,-0.003000,0.249982,0,0);}
.m99_c01428{transform:matrix(0.268314,0.002951,-0.002750,0.249985,0,0);-ms-transform:matrix(0.268314,0.002951,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.268314,0.002951,-0.002750,0.249985,0,0);}
.m1b_c01428{transform:matrix(0.268557,0.002686,-0.002500,0.249988,0,0);-ms-transform:matrix(0.268557,0.002686,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.268557,0.002686,-0.002500,0.249988,0,0);}
.mc1_c01428{transform:matrix(0.268761,0.003225,-0.003000,0.249982,0,0);-ms-transform:matrix(0.268761,0.003225,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.268761,0.003225,-0.003000,0.249982,0,0);}
.m80_c01428{transform:matrix(0.268836,0.005377,-0.004999,0.249950,0,0);-ms-transform:matrix(0.268836,0.005377,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.268836,0.005377,-0.004999,0.249950,0,0);}
.mbb_c01428{transform:matrix(0.269166,0.003230,-0.003000,0.249982,0,0);-ms-transform:matrix(0.269166,0.003230,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.269166,0.003230,-0.003000,0.249982,0,0);}
.m14_c01428{transform:matrix(0.270041,0.002700,-0.002500,0.249988,0,0);-ms-transform:matrix(0.270041,0.002700,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.270041,0.002700,-0.002500,0.249988,0,0);}
.mfa_c01428{transform:matrix(0.271429,0.002986,-0.002750,0.249985,0,0);-ms-transform:matrix(0.271429,0.002986,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.271429,0.002986,-0.002750,0.249985,0,0);}
.mba_c01428{transform:matrix(0.271960,0.003264,-0.003000,0.249982,0,0);-ms-transform:matrix(0.271960,0.003264,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.271960,0.003264,-0.003000,0.249982,0,0);}
.mdb_c01428{transform:matrix(0.272593,0.003816,-0.003500,0.249976,0,0);-ms-transform:matrix(0.272593,0.003816,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.272593,0.003816,-0.003500,0.249976,0,0);}
.m88_c01428{transform:matrix(0.272615,0.005452,-0.004999,0.249950,0,0);-ms-transform:matrix(0.272615,0.005452,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.272615,0.005452,-0.004999,0.249950,0,0);}
.mc0_c01428{transform:matrix(0.272870,0.003274,-0.003000,0.249982,0,0);-ms-transform:matrix(0.272870,0.003274,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.272870,0.003274,-0.003000,0.249982,0,0);}
.m1f_c01428{transform:matrix(0.272886,0.002729,-0.002500,0.249988,0,0);-ms-transform:matrix(0.272886,0.002729,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.272886,0.002729,-0.002500,0.249988,0,0);}
.m3e_c01428{transform:matrix(0.272891,0.002729,-0.002500,0.249988,0,0);-ms-transform:matrix(0.272891,0.002729,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.272891,0.002729,-0.002500,0.249988,0,0);}
.mf0_c01428{transform:matrix(0.272952,0.003548,-0.003250,0.249979,0,0);-ms-transform:matrix(0.272952,0.003548,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.272952,0.003548,-0.003250,0.249979,0,0);}
.m12_c01428{transform:matrix(0.272966,0.002730,-0.002500,0.249988,0,0);-ms-transform:matrix(0.272966,0.002730,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.272966,0.002730,-0.002500,0.249988,0,0);}
.mac_c01428{transform:matrix(0.273128,0.003004,-0.002750,0.249985,0,0);-ms-transform:matrix(0.273128,0.003004,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.273128,0.003004,-0.002750,0.249985,0,0);}
.m7a_c01428{transform:matrix(0.273275,0.005466,-0.004999,0.249950,0,0);-ms-transform:matrix(0.273275,0.005466,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.273275,0.005466,-0.004999,0.249950,0,0);}
.m8e_c01428{transform:matrix(0.273430,0.005469,-0.004999,0.249950,0,0);-ms-transform:matrix(0.273430,0.005469,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.273430,0.005469,-0.004999,0.249950,0,0);}
.mb7_c01428{transform:matrix(0.273512,0.003556,-0.003250,0.249979,0,0);-ms-transform:matrix(0.273512,0.003556,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.273512,0.003556,-0.003250,0.249979,0,0);}
.mc6_c01428{transform:matrix(0.274020,0.003288,-0.003000,0.249982,0,0);-ms-transform:matrix(0.274020,0.003288,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.274020,0.003288,-0.003000,0.249982,0,0);}
.mb1_c01428{transform:matrix(0.274297,0.003566,-0.003250,0.249979,0,0);-ms-transform:matrix(0.274297,0.003566,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.274297,0.003566,-0.003250,0.249979,0,0);}
.me2_c01428{transform:matrix(0.274578,0.003844,-0.003500,0.249976,0,0);-ms-transform:matrix(0.274578,0.003844,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.274578,0.003844,-0.003500,0.249976,0,0);}
.mc9_c01428{transform:matrix(0.276045,0.003313,-0.003000,0.249982,0,0);-ms-transform:matrix(0.276045,0.003313,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.276045,0.003313,-0.003000,0.249982,0,0);}
.me7_c01428{transform:matrix(0.276062,0.003589,-0.003250,0.249979,0,0);-ms-transform:matrix(0.276062,0.003589,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.276062,0.003589,-0.003250,0.249979,0,0);}
.mfc_c01428{transform:matrix(0.276698,0.003044,-0.002750,0.249985,0,0);-ms-transform:matrix(0.276698,0.003044,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.276698,0.003044,-0.002750,0.249985,0,0);}
.md2_c01428{transform:matrix(0.277207,0.003604,-0.003250,0.249979,0,0);-ms-transform:matrix(0.277207,0.003604,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.277207,0.003604,-0.003250,0.249979,0,0);}
.maa_c01428{transform:matrix(0.277288,0.003050,-0.002750,0.249985,0,0);-ms-transform:matrix(0.277288,0.003050,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.277288,0.003050,-0.002750,0.249985,0,0);}
.m91_c01428{transform:matrix(0.278719,0.005574,-0.004999,0.249950,0,0);-ms-transform:matrix(0.278719,0.005574,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.278719,0.005574,-0.004999,0.249950,0,0);}
.me8_c01428{transform:matrix(0.278926,0.003626,-0.003250,0.249979,0,0);-ms-transform:matrix(0.278926,0.003626,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.278926,0.003626,-0.003250,0.249979,0,0);}
.mf6_c01428{transform:matrix(0.279191,0.003629,-0.003250,0.249979,0,0);-ms-transform:matrix(0.279191,0.003629,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.279191,0.003629,-0.003250,0.249979,0,0);}
.mf7_c01428{transform:matrix(0.279573,0.003075,-0.002750,0.249985,0,0);-ms-transform:matrix(0.279573,0.003075,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.279573,0.003075,-0.002750,0.249985,0,0);}
.mad_c01428{transform:matrix(0.279783,0.003078,-0.002750,0.249985,0,0);-ms-transform:matrix(0.279783,0.003078,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.279783,0.003078,-0.002750,0.249985,0,0);}
.mbe_c01428{transform:matrix(0.279820,0.003358,-0.003000,0.249982,0,0);-ms-transform:matrix(0.279820,0.003358,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.279820,0.003358,-0.003000,0.249982,0,0);}
.mf8_c01428{transform:matrix(0.280058,0.003081,-0.002750,0.249985,0,0);-ms-transform:matrix(0.280058,0.003081,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.280058,0.003081,-0.002750,0.249985,0,0);}
.m64_c01428{transform:matrix(0.280694,0.005614,-0.004999,0.249950,0,0);-ms-transform:matrix(0.280694,0.005614,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.280694,0.005614,-0.004999,0.249950,0,0);}
.m42_c01428{transform:matrix(0.281711,0.002817,-0.002500,0.249988,0,0);-ms-transform:matrix(0.281711,0.002817,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.281711,0.002817,-0.002500,0.249988,0,0);}
.m2e_c01428{transform:matrix(0.281784,0.002536,-0.002250,0.249990,0,0);-ms-transform:matrix(0.281784,0.002536,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.281784,0.002536,-0.002250,0.249990,0,0);}
.mef_c01428{transform:matrix(0.281951,0.003665,-0.003250,0.249979,0,0);-ms-transform:matrix(0.281951,0.003665,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.281951,0.003665,-0.003250,0.249979,0,0);}
.me0_c01428{transform:matrix(0.282477,0.003955,-0.003500,0.249976,0,0);-ms-transform:matrix(0.282477,0.003955,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.282477,0.003955,-0.003500,0.249976,0,0);}
.md8_c01428{transform:matrix(0.283112,0.003964,-0.003500,0.249976,0,0);-ms-transform:matrix(0.283112,0.003964,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.283112,0.003964,-0.003500,0.249976,0,0);}
.md1_c01428{transform:matrix(0.283351,0.003684,-0.003250,0.249979,0,0);-ms-transform:matrix(0.283351,0.003684,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.283351,0.003684,-0.003250,0.249979,0,0);}
.md3_c01428{transform:matrix(0.283996,0.003692,-0.003250,0.249979,0,0);-ms-transform:matrix(0.283996,0.003692,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.283996,0.003692,-0.003250,0.249979,0,0);}
.m9b_c01428{transform:matrix(0.286688,0.003154,-0.002750,0.249985,0,0);-ms-transform:matrix(0.286688,0.003154,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.286688,0.003154,-0.002750,0.249985,0,0);}
.m9a_c01428{transform:matrix(0.287263,0.003160,-0.002750,0.249985,0,0);-ms-transform:matrix(0.287263,0.003160,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.287263,0.003160,-0.002750,0.249985,0,0);}
.md4_c01428{transform:matrix(0.287637,0.004027,-0.003500,0.249976,0,0);-ms-transform:matrix(0.287637,0.004027,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.287637,0.004027,-0.003500,0.249976,0,0);}
.m39_c01428{transform:matrix(0.287751,0.002878,-0.002500,0.249988,0,0);-ms-transform:matrix(0.287751,0.002878,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.287751,0.002878,-0.002500,0.249988,0,0);}
.me3_c01428{transform:matrix(0.288392,0.004037,-0.003500,0.249976,0,0);-ms-transform:matrix(0.288392,0.004037,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.288392,0.004037,-0.003500,0.249976,0,0);}
.m13_c01428{transform:matrix(0.288766,0.002888,-0.002500,0.249988,0,0);-ms-transform:matrix(0.288766,0.002888,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.288766,0.002888,-0.002500,0.249988,0,0);}
.m36_c01428{transform:matrix(0.289056,0.002891,-0.002500,0.249988,0,0);-ms-transform:matrix(0.289056,0.002891,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.289056,0.002891,-0.002500,0.249988,0,0);}
.m30_c01428{transform:matrix(0.291703,0.002625,-0.002250,0.249990,0,0);-ms-transform:matrix(0.291703,0.002625,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.291703,0.002625,-0.002250,0.249990,0,0);}
.m38_c01428{transform:matrix(0.291720,0.002917,-0.002500,0.249988,0,0);-ms-transform:matrix(0.291720,0.002917,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.291720,0.002917,-0.002500,0.249988,0,0);}
.md6_c01428{transform:matrix(0.291726,0.004084,-0.003500,0.249976,0,0);-ms-transform:matrix(0.291726,0.004084,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.291726,0.004084,-0.003500,0.249976,0,0);}
.m1d_c01428{transform:matrix(0.292020,0.002920,-0.002500,0.249988,0,0);-ms-transform:matrix(0.292020,0.002920,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.292020,0.002920,-0.002500,0.249988,0,0);}
.m79_c01428{transform:matrix(0.293056,0.005861,-0.004999,0.249950,0,0);-ms-transform:matrix(0.293056,0.005861,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.293056,0.005861,-0.004999,0.249950,0,0);}
.ma3_c01428{transform:matrix(0.294032,0.005293,-0.004499,0.249960,0,0);-ms-transform:matrix(0.294032,0.005293,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.294032,0.005293,-0.004499,0.249960,0,0);}
.mf4_c01428{transform:matrix(0.295370,0.003840,-0.003250,0.249979,0,0);-ms-transform:matrix(0.295370,0.003840,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.295370,0.003840,-0.003250,0.249979,0,0);}
.md9_c01428{transform:matrix(0.295416,0.004136,-0.003500,0.249976,0,0);-ms-transform:matrix(0.295416,0.004136,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.295416,0.004136,-0.003500,0.249976,0,0);}
.me6_c01428{transform:matrix(0.295891,0.004142,-0.003500,0.249976,0,0);-ms-transform:matrix(0.295891,0.004142,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.295891,0.004142,-0.003500,0.249976,0,0);}
.mf1_c01428{transform:matrix(0.296005,0.003848,-0.003250,0.249979,0,0);-ms-transform:matrix(0.296005,0.003848,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.296005,0.003848,-0.003250,0.249979,0,0);}
.me1_c01428{transform:matrix(0.296141,0.004146,-0.003500,0.249976,0,0);-ms-transform:matrix(0.296141,0.004146,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.296141,0.004146,-0.003500,0.249976,0,0);}
.m16_c01428{transform:matrix(0.296680,0.002967,-0.002500,0.249988,0,0);-ms-transform:matrix(0.296680,0.002967,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.296680,0.002967,-0.002500,0.249988,0,0);}
.m33_c01428{transform:matrix(0.298075,0.002981,-0.002500,0.249988,0,0);-ms-transform:matrix(0.298075,0.002981,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.298075,0.002981,-0.002500,0.249988,0,0);}
.m94_c01428{transform:matrix(0.298197,0.003280,-0.002750,0.249985,0,0);-ms-transform:matrix(0.298197,0.003280,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.298197,0.003280,-0.002750,0.249985,0,0);}
.ma8_c01428{transform:matrix(0.299367,0.003293,-0.002750,0.249985,0,0);-ms-transform:matrix(0.299367,0.003293,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.299367,0.003293,-0.002750,0.249985,0,0);}
.m35_c01428{transform:matrix(0.299630,0.002996,-0.002500,0.249988,0,0);-ms-transform:matrix(0.299630,0.002996,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.299630,0.002996,-0.002500,0.249988,0,0);}
.mdf_c01428{transform:matrix(0.300111,0.004202,-0.003500,0.249976,0,0);-ms-transform:matrix(0.300111,0.004202,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.300111,0.004202,-0.003500,0.249976,0,0);}
.m18_c01428{transform:matrix(0.300625,0.003006,-0.002500,0.249988,0,0);-ms-transform:matrix(0.300625,0.003006,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.300625,0.003006,-0.002500,0.249988,0,0);}
.mdd_c01428{transform:matrix(0.300846,0.004212,-0.003500,0.249976,0,0);-ms-transform:matrix(0.300846,0.004212,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.300846,0.004212,-0.003500,0.249976,0,0);}
.m20_c01428{transform:matrix(0.301435,0.003014,-0.002500,0.249988,0,0);-ms-transform:matrix(0.301435,0.003014,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.301435,0.003014,-0.002500,0.249988,0,0);}
.mf3_c01428{transform:matrix(0.302024,0.003926,-0.003250,0.249979,0,0);-ms-transform:matrix(0.302024,0.003926,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.302024,0.003926,-0.003250,0.249979,0,0);}
.m95_c01428{transform:matrix(0.302112,0.003323,-0.002750,0.249985,0,0);-ms-transform:matrix(0.302112,0.003323,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.302112,0.003323,-0.002750,0.249985,0,0);}
.m19_c01428{transform:matrix(0.303610,0.003036,-0.002500,0.249988,0,0);-ms-transform:matrix(0.303610,0.003036,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.303610,0.003036,-0.002500,0.249988,0,0);}
.mda_c01428{transform:matrix(0.303875,0.004254,-0.003500,0.249976,0,0);-ms-transform:matrix(0.303875,0.004254,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.303875,0.004254,-0.003500,0.249976,0,0);}
.m96_c01428{transform:matrix(0.304007,0.003344,-0.002750,0.249985,0,0);-ms-transform:matrix(0.304007,0.003344,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.304007,0.003344,-0.002750,0.249985,0,0);}
.m3a_c01428{transform:matrix(0.304065,0.003041,-0.002500,0.249988,0,0);-ms-transform:matrix(0.304065,0.003041,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.304065,0.003041,-0.002500,0.249988,0,0);}
.me5_c01428{transform:matrix(0.304405,0.004262,-0.003500,0.249976,0,0);-ms-transform:matrix(0.304405,0.004262,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.304405,0.004262,-0.003500,0.249976,0,0);}
.m32_c01428{transform:matrix(0.304633,0.002742,-0.002250,0.249990,0,0);-ms-transform:matrix(0.304633,0.002742,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.304633,0.002742,-0.002250,0.249990,0,0);}
.m9e_c01428{transform:matrix(0.305620,0.005501,-0.004499,0.249960,0,0);-ms-transform:matrix(0.305620,0.005501,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.305620,0.005501,-0.004499,0.249960,0,0);}
.ma0_c01428{transform:matrix(0.315979,0.005688,-0.004499,0.249960,0,0);-ms-transform:matrix(0.315979,0.005688,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.315979,0.005688,-0.004499,0.249960,0,0);}
.mce_c01428{transform:matrix(0.317118,0.004123,-0.003250,0.249979,0,0);-ms-transform:matrix(0.317118,0.004123,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.317118,0.004123,-0.003250,0.249979,0,0);}
.m98_c01428{transform:matrix(0.324955,0.003575,-0.002750,0.249985,0,0);-ms-transform:matrix(0.324955,0.003575,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.324955,0.003575,-0.002750,0.249985,0,0);}
.m9d_c01428{transform:matrix(0.335356,0.006036,-0.004499,0.249960,0,0);-ms-transform:matrix(0.335356,0.006036,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.335356,0.006036,-0.004499,0.249960,0,0);}
.m7_c01428{transform:matrix(0.335410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335410,0.000000,0.000000,0.250000,0,0);}
.ma1_c01428{transform:matrix(0.336965,0.006065,-0.004499,0.249960,0,0);-ms-transform:matrix(0.336965,0.006065,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.336965,0.006065,-0.004499,0.249960,0,0);}
.ma5_c01428{transform:matrix(0.349608,0.006293,-0.004499,0.249960,0,0);-ms-transform:matrix(0.349608,0.006293,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.349608,0.006293,-0.004499,0.249960,0,0);}
.ma6_c01428{transform:matrix(0.358887,0.006460,-0.004499,0.249960,0,0);-ms-transform:matrix(0.358887,0.006460,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.358887,0.006460,-0.004499,0.249960,0,0);}
.m9c_c01428{transform:matrix(0.362948,0.003992,-0.002750,0.249985,0,0);-ms-transform:matrix(0.362948,0.003992,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.362948,0.003992,-0.002750,0.249985,0,0);}
.ma2_c01428{transform:matrix(0.373904,0.006730,-0.004499,0.249960,0,0);-ms-transform:matrix(0.373904,0.006730,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.373904,0.006730,-0.004499,0.249960,0,0);}
.ma7_c01428{transform:matrix(0.376749,0.006781,-0.004499,0.249960,0,0);-ms-transform:matrix(0.376749,0.006781,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.376749,0.006781,-0.004499,0.249960,0,0);}
.m9f_c01428{transform:matrix(0.392476,0.007065,-0.004499,0.249960,0,0);-ms-transform:matrix(0.392476,0.007065,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.392476,0.007065,-0.004499,0.249960,0,0);}
.ma4_c01428{transform:matrix(0.394666,0.007104,-0.004499,0.249960,0,0);-ms-transform:matrix(0.394666,0.007104,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.394666,0.007104,-0.004499,0.249960,0,0);}
.mfe_c01428{transform:matrix(0.400576,0.004406,-0.002750,0.249985,0,0);-ms-transform:matrix(0.400576,0.004406,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.400576,0.004406,-0.002750,0.249985,0,0);}
.m34_c01428{transform:matrix(0.430163,0.004302,-0.002500,0.249988,0,0);-ms-transform:matrix(0.430163,0.004302,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.430163,0.004302,-0.002500,0.249988,0,0);}
.m3_c01428{transform:matrix(0.637280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.637280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.637280,0.000000,0.000000,0.250000,0,0);}
.m23_c01428{transform:matrix(2.521884,0.025219,-0.002500,0.249988,0,0);-ms-transform:matrix(2.521884,0.025219,-0.002500,0.249988,0,0);-webkit-transform:matrix(2.521884,0.025219,-0.002500,0.249988,0,0);}
.m24_c01428{transform:matrix(3.957782,0.039578,-0.002500,0.249988,0,0);-ms-transform:matrix(3.957782,0.039578,-0.002500,0.249988,0,0);-webkit-transform:matrix(3.957782,0.039578,-0.002500,0.249988,0,0);}
.m22_c01428{transform:matrix(19.806785,0.198068,-0.002500,0.249988,0,0);-ms-transform:matrix(19.806785,0.198068,-0.002500,0.249988,0,0);-webkit-transform:matrix(19.806785,0.198068,-0.002500,0.249988,0,0);}
.v0_c01428{vertical-align:0.000000px;}
.v1_c01428{vertical-align:1.458292px;}
.ls0_c01428{letter-spacing:0.000000px;}
.sc__c01428{text-shadow:none;}
.sc0_c01428{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__c01428{-webkit-text-stroke:0px transparent;}
.sc0_c01428{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01428{word-spacing:0.000000px;}
._0_c01428{width:35.154746px;}
.fc0_c01428{color:transparent;}
.fs2_c01428{font-size:18.000000px;}
.fs6_c01428{font-size:18.000900px;}
.fs12_c01428{font-size:48.007775px;}
.fs8_c01428{font-size:66.002673px;}
.fs5_c01428{font-size:66.003300px;}
.fs11_c01428{font-size:66.003993px;}
.fs16_c01428{font-size:66.005577px;}
.fs17_c01428{font-size:66.006468px;}
.fse_c01428{font-size:66.013199px;}
.fs9_c01428{font-size:72.003600px;}
.fs13_c01428{font-size:72.004356px;}
.fs15_c01428{font-size:72.005184px;}
.fs14_c01428{font-size:72.006084px;}
.fs1_c01428{font-size:78.000000px;}
.fs7_c01428{font-size:78.003159px;}
.fs10_c01428{font-size:78.015598px;}
.fs0_c01428{font-size:84.000000px;}
.fsc_c01428{font-size:84.005082px;}
.fsd_c01428{font-size:84.006048px;}
.fsa_c01428{font-size:84.007098px;}
.fsb_c01428{font-size:90.005445px;}
.fsf_c01428{font-size:96.006912px;}
.fs3_c01428{font-size:102.000000px;}
.fs4_c01428{font-size:102.005100px;}
.y0_c01428{bottom:0.000000px;}
.yff_c01428{bottom:38.365407px;}
.yfe_c01428{bottom:38.871841px;}
.yfd_c01428{bottom:39.351315px;}
.yfc_c01428{bottom:40.323099px;}
.yfb_c01428{bottom:41.157718px;}
.yfa_c01428{bottom:41.528985px;}
.yf9_c01428{bottom:41.894245px;}
.yf8_c01428{bottom:43.091155px;}
.yf7_c01428{bottom:44.283000px;}
.yf6_c01428{bottom:76.636086px;}
.yf5_c01428{bottom:77.138456px;}
.yf4_c01428{bottom:78.118434px;}
.yf3_c01428{bottom:78.616281px;}
.yf2_c01428{bottom:78.939860px;}
.yf1_c01428{bottom:80.099097px;}
.yf0_c01428{bottom:80.730696px;}
.yef_c01428{bottom:110.078855px;}
.yee_c01428{bottom:110.520803px;}
.yed_c01428{bottom:111.369735px;}
.yec_c01428{bottom:111.970569px;}
.yeb_c01428{bottom:112.510602px;}
.yea_c01428{bottom:113.644273px;}
.ye9_c01428{bottom:114.234499px;}
.ye8_c01428{bottom:115.505432px;}
.ye7_c01428{bottom:116.913000px;}
.ye6_c01428{bottom:146.151318px;}
.ye5_c01428{bottom:147.689841px;}
.ye4_c01428{bottom:148.143441px;}
.ye3_c01428{bottom:149.205684px;}
.ye2_c01428{bottom:149.681292px;}
.ye1_c01428{bottom:150.903009px;}
.ye0_c01428{bottom:151.371792px;}
.ydf_c01428{bottom:152.600439px;}
.yde_c01428{bottom:152.818230px;}
.ydd_c01428{bottom:181.498986px;}
.ydc_c01428{bottom:181.967244px;}
.ydb_c01428{bottom:182.579709px;}
.yda_c01428{bottom:184.266156px;}
.yd9_c01428{bottom:185.479410px;}
.yd8_c01428{bottom:186.103215px;}
.yd7_c01428{bottom:186.571998px;}
.yd6_c01428{bottom:187.630503px;}
.yd5_c01428{bottom:188.091306px;}
.yd4_c01428{bottom:189.003000px;}
.yd3_c01428{bottom:217.688418px;}
.yd2_c01428{bottom:218.951999px;}
.yd1_c01428{bottom:219.840048px;}
.yd0_c01428{bottom:220.973720px;}
.ycf_c01428{bottom:221.391371px;}
.yce_c01428{bottom:221.675154px;}
.ycd_c01428{bottom:222.244417px;}
.ycc_c01428{bottom:222.830626px;}
.ycb_c01428{bottom:223.528824px;}
.yca_c01428{bottom:224.101500px;}
.yc9_c01428{bottom:252.432738px;}
.yc8_c01428{bottom:253.084914px;}
.yc7_c01428{bottom:253.578618px;}
.yc6_c01428{bottom:255.207174px;}
.yc5_c01428{bottom:256.527540px;}
.yc4_c01428{bottom:257.831748px;}
.yc3_c01428{bottom:258.844500px;}
.yc2_c01428{bottom:259.504656px;}
.yc1_c01428{bottom:260.820174px;}
.yc0_c01428{bottom:289.345902px;}
.ybf_c01428{bottom:289.747788px;}
.ybe_c01428{bottom:290.940216px;}
.ybd_c01428{bottom:291.588324px;}
.ybc_c01428{bottom:292.082874px;}
.ybb_c01428{bottom:293.276202px;}
.yba_c01428{bottom:294.491310px;}
.yb9_c01428{bottom:294.880272px;}
.yb8_c01428{bottom:295.651500px;}
.yb7_c01428{bottom:322.928645px;}
.yb6_c01428{bottom:323.476244px;}
.yb5_c01428{bottom:324.897949px;}
.yb4_c01428{bottom:325.403117px;}
.yb3_c01428{bottom:326.038777px;}
.yb2_c01428{bottom:326.754857px;}
.yb1_c01428{bottom:327.899019px;}
.yb0_c01428{bottom:329.190855px;}
.yaf_c01428{bottom:329.759709px;}
.yae_c01428{bottom:330.753000px;}
.yad_c01428{bottom:361.278311px;}
.yac_c01428{bottom:362.893149px;}
.yab_c01428{bottom:363.326736px;}
.y2_c01428{bottom:364.240500px;}
.yaa_c01428{bottom:364.538645px;}
.ya9_c01428{bottom:364.897998px;}
.ya8_c01428{bottom:365.851500px;}
.ya7_c01428{bottom:394.680252px;}
.ya6_c01428{bottom:395.263182px;}
.ya5_c01428{bottom:396.041268px;}
.ya4_c01428{bottom:397.231590px;}
.ya3_c01428{bottom:397.967826px;}
.ya2_c01428{bottom:399.219276px;}
.ya1_c01428{bottom:399.778095px;}
.ya0_c01428{bottom:401.172942px;}
.y9f_c01428{bottom:402.563037px;}
.y9e_c01428{bottom:403.314015px;}
.y9d_c01428{bottom:403.923000px;}
.y9c_c01428{bottom:431.952885px;}
.y9b_c01428{bottom:432.565184px;}
.y9a_c01428{bottom:433.402740px;}
.y99_c01428{bottom:433.883979px;}
.y98_c01428{bottom:434.497697px;}
.y97_c01428{bottom:434.855086px;}
.y96_c01428{bottom:435.812879px;}
.y95_c01428{bottom:437.017279px;}
.y94_c01428{bottom:438.211500px;}
.y93_c01428{bottom:472.082130px;}
.y92_c01428{bottom:473.282310px;}
.y91_c01428{bottom:502.561170px;}
.y90_c01428{bottom:502.749420px;}
.y8f_c01428{bottom:503.297430px;}
.y8e_c01428{bottom:503.747520px;}
.y8d_c01428{bottom:504.953040px;}
.y8c_c01428{bottom:505.592310px;}
.y8b_c01428{bottom:506.917830px;}
.y8a_c01428{bottom:507.250410px;}
.y89_c01428{bottom:508.114350px;}
.y88_c01428{bottom:539.789340px;}
.y87_c01428{bottom:540.187440px;}
.y86_c01428{bottom:540.580200px;}
.y85_c01428{bottom:541.372200px;}
.y84_c01428{bottom:542.560740px;}
.y83_c01428{bottom:543.151260px;}
.y82_c01428{bottom:544.132740px;}
.y81_c01428{bottom:545.109810px;}
.y80_c01428{bottom:574.072560px;}
.y7f_c01428{bottom:574.568790px;}
.y7e_c01428{bottom:575.216730px;}
.y7d_c01428{bottom:576.144510px;}
.y7c_c01428{bottom:576.668370px;}
.y7b_c01428{bottom:577.586040px;}
.y7a_c01428{bottom:578.850630px;}
.y79_c01428{bottom:579.275250px;}
.y78_c01428{bottom:579.949560px;}
.y77_c01428{bottom:609.546960px;}
.y76_c01428{bottom:609.885060px;}
.y75_c01428{bottom:610.847220px;}
.y74_c01428{bottom:611.206740px;}
.y73_c01428{bottom:611.681610px;}
.y72_c01428{bottom:612.291090px;}
.y71_c01428{bottom:613.134900px;}
.y70_c01428{bottom:613.764960px;}
.y6f_c01428{bottom:614.944110px;}
.y6e_c01428{bottom:616.134930px;}
.y6d_c01428{bottom:649.620480px;}
.y6c_c01428{bottom:650.706000px;}
.y6b_c01428{bottom:680.296326px;}
.y6a_c01428{bottom:681.738180px;}
.y69_c01428{bottom:682.648602px;}
.y68_c01428{bottom:684.217464px;}
.y67_c01428{bottom:685.156416px;}
.y66_c01428{bottom:685.687902px;}
.y65_c01428{bottom:686.611500px;}
.y64_c01428{bottom:721.316220px;}
.y63_c01428{bottom:721.986000px;}
.y62_c01428{bottom:751.986366px;}
.y61_c01428{bottom:752.664102px;}
.y60_c01428{bottom:753.315450px;}
.y5f_c01428{bottom:753.843030px;}
.y5e_c01428{bottom:755.006604px;}
.y5d_c01428{bottom:755.548026px;}
.y5c_c01428{bottom:756.603924px;}
.y5b_c01428{bottom:757.919544px;}
.y5a_c01428{bottom:758.431500px;}
.y59_c01428{bottom:791.687893px;}
.y58_c01428{bottom:791.909917px;}
.y57_c01428{bottom:792.884242px;}
.y56_c01428{bottom:793.258924px;}
.y55_c01428{bottom:823.430401px;}
.y54_c01428{bottom:824.018065px;}
.y53_c01428{bottom:824.380389px;}
.y52_c01428{bottom:825.817951px;}
.y51_c01428{bottom:826.055073px;}
.y50_c01428{bottom:827.739492px;}
.y4f_c01428{bottom:828.606814px;}
.y4e_c01428{bottom:829.441500px;}
.y4d_c01428{bottom:864.007125px;}
.y4c_c01428{bottom:894.915024px;}
.y4b_c01428{bottom:895.188180px;}
.y4a_c01428{bottom:895.630635px;}
.y49_c01428{bottom:896.767953px;}
.y48_c01428{bottom:898.337527px;}
.y47_c01428{bottom:899.323760px;}
.y1_c01428{bottom:900.171000px;}
.y46_c01428{bottom:900.194259px;}
.y45_c01428{bottom:901.058109px;}
.y44_c01428{bottom:901.619475px;}
.y43_c01428{bottom:902.613000px;}
.y4_c01428{bottom:904.636500px;}
.y42_c01428{bottom:931.873890px;}
.y41_c01428{bottom:932.211450px;}
.y40_c01428{bottom:932.640840px;}
.y3f_c01428{bottom:933.307680px;}
.y3e_c01428{bottom:934.509120px;}
.y3d_c01428{bottom:935.502810px;}
.y3c_c01428{bottom:935.832225px;}
.y3b_c01428{bottom:936.361500px;}
.y3a_c01428{bottom:965.734560px;}
.y39_c01428{bottom:966.388065px;}
.y38_c01428{bottom:967.143750px;}
.y37_c01428{bottom:967.478880px;}
.y36_c01428{bottom:967.810935px;}
.y35_c01428{bottom:968.577690px;}
.y34_c01428{bottom:969.010125px;}
.y33_c01428{bottom:970.103190px;}
.y32_c01428{bottom:971.191500px;}
.y2e_c01428{bottom:1005.412143px;}
.y2d_c01428{bottom:1005.412536px;}
.y2f_c01428{bottom:1005.412697px;}
.y30_c01428{bottom:1005.413250px;}
.y31_c01428{bottom:1005.413803px;}
.y2c_c01428{bottom:1037.707903px;}
.y2b_c01428{bottom:1038.320979px;}
.y2a_c01428{bottom:1038.617358px;}
.y29_c01428{bottom:1039.501946px;}
.y28_c01428{bottom:1039.898022px;}
.y27_c01428{bottom:1040.490902px;}
.y26_c01428{bottom:1041.375718px;}
.y25_c01428{bottom:1041.562302px;}
.y24_c01428{bottom:1042.471500px;}
.y23_c01428{bottom:1068.933105px;}
.y22_c01428{bottom:1069.621575px;}
.y20_c01428{bottom:1072.792200px;}
.y1f_c01428{bottom:1073.783190px;}
.y21_c01428{bottom:1073.790060px;}
.y1e_c01428{bottom:1074.223320px;}
.y1d_c01428{bottom:1074.552405px;}
.y1c_c01428{bottom:1075.522005px;}
.y3_c01428{bottom:1075.824000px;}
.y1b_c01428{bottom:1075.859490px;}
.y1a_c01428{bottom:1076.402190px;}
.y19_c01428{bottom:1076.742375px;}
.y18_c01428{bottom:1077.835935px;}
.y17_c01428{bottom:1078.921500px;}
.y11_c01428{bottom:1112.430885px;}
.y13_c01428{bottom:1112.430945px;}
.y14_c01428{bottom:1112.430960px;}
.y12_c01428{bottom:1112.431215px;}
.y16_c01428{bottom:1112.431320px;}
.y15_c01428{bottom:1112.431575px;}
.y10_c01428{bottom:1144.407285px;}
.yf_c01428{bottom:1144.737645px;}
.ye_c01428{bottom:1145.490090px;}
.yd_c01428{bottom:1145.830305px;}
.yc_c01428{bottom:1146.491805px;}
.yb_c01428{bottom:1147.593405px;}
.ya_c01428{bottom:1147.917450px;}
.y9_c01428{bottom:1148.792280px;}
.y8_c01428{bottom:1149.232410px;}
.y7_c01428{bottom:1149.661500px;}
.y6_c01428{bottom:1173.283500px;}
.y5_c01428{bottom:1214.611500px;}
.h4_c01428{height:18.000000px;}
.h8_c01428{height:18.000900px;}
.h15_c01428{height:48.007775px;}
.ha_c01428{height:66.002673px;}
.h7_c01428{height:66.003300px;}
.h14_c01428{height:66.003993px;}
.h19_c01428{height:66.005577px;}
.h1a_c01428{height:66.006468px;}
.h10_c01428{height:66.013199px;}
.hb_c01428{height:72.003600px;}
.h16_c01428{height:72.004356px;}
.h18_c01428{height:72.005184px;}
.h17_c01428{height:72.006084px;}
.h3_c01428{height:78.000000px;}
.h9_c01428{height:78.003159px;}
.h12_c01428{height:78.015598px;}
.h13_c01428{height:79.473890px;}
.h2_c01428{height:84.000000px;}
.he_c01428{height:84.005082px;}
.hf_c01428{height:84.006048px;}
.hc_c01428{height:84.007098px;}
.hd_c01428{height:90.005445px;}
.h11_c01428{height:96.006912px;}
.h5_c01428{height:102.000000px;}
.h6_c01428{height:102.005100px;}
.h1_c01428{height:1250.250000px;}
.h0_c01428{height:1250.370000px;}
.w0_c01428{width:912.000000px;}
.x0_c01428{left:0.000000px;}
.x2_c01428{left:102.060000px;}
.x1_c01428{left:106.110000px;}
.x3_c01428{left:119.610000px;}
.x4_c01428{left:163.350000px;}
.x17_c01428{left:218.295000px;}
.x7f_c01428{left:221.494500px;}
.x4d_c01428{left:223.654500px;}
.x62_c01428{left:225.045420px;}
.x1f_c01428{left:226.488510px;}
.x2d_c01428{left:228.817500px;}
.xaa_c01428{left:231.982500px;}
.x9d_c01428{left:248.324667px;}
.x9e_c01428{left:263.881167px;}
.x6d_c01428{left:265.175490px;}
.x53_c01428{left:267.564000px;}
.x45_c01428{left:269.046300px;}
.x22_c01428{left:270.958500px;}
.x9_c01428{left:273.132000px;}
.x74_c01428{left:277.963500px;}
.x96_c01428{left:287.142000px;}
.x80_c01428{left:297.901500px;}
.x3f_c01428{left:301.449000px;}
.x38_c01428{left:303.049500px;}
.xa6_c01428{left:307.058458px;}
.x89_c01428{left:308.407320px;}
.x7b_c01428{left:309.553500px;}
.x75_c01428{left:311.796000px;}
.xa_c01428{left:316.041000px;}
.x97_c01428{left:320.056500px;}
.x54_c01428{left:321.840000px;}
.x32_c01428{left:324.682500px;}
.x13_c01428{left:327.243645px;}
.xa2_c01428{left:329.766000px;}
.x6e_c01428{left:331.862160px;}
.x55_c01428{left:333.870060px;}
.x2a_c01428{left:337.503383px;}
.xab_c01428{left:340.332000px;}
.x7c_c01428{left:342.222000px;}
.x4e_c01428{left:344.911500px;}
.x39_c01428{left:346.231500px;}
.x8a_c01428{left:352.418736px;}
.x76_c01428{left:353.517000px;}
.x68_c01428{left:354.660360px;}
.x33_c01428{left:357.624000px;}
.xb_c01428{left:360.054000px;}
.x85_c01428{left:363.280500px;}
.x2b_c01428{left:370.444556px;}
.x23_c01428{left:371.980500px;}
.x47_c01428{left:378.402000px;}
.x40_c01428{left:380.296500px;}
.x14_c01428{left:382.326150px;}
.x9f_c01428{left:385.126167px;}
.x69_c01428{left:387.870990px;}
.x46_c01428{left:391.683300px;}
.x24_c01428{left:392.712000px;}
.x98_c01428{left:395.664000px;}
.x2c_c01428{left:403.385729px;}
.x5_c01428{left:404.730000px;}
.xa7_c01428{left:405.887885px;}
.x91_c01428{left:407.550000px;}
.x3a_c01428{left:412.681500px;}
.x15_c01428{left:414.727890px;}
.x8b_c01428{left:419.937306px;}
.x4f_c01428{left:423.157500px;}
.x6_c01428{left:427.680000px;}
.x99_c01428{left:429.148500px;}
.x77_c01428{left:430.744500px;}
.x18_c01428{left:436.207500px;}
.xa8_c01428{left:439.106026px;}
.x56_c01428{left:441.071850px;}
.x63_c01428{left:442.720800px;}
.xc_c01428{left:447.537000px;}
.xac_c01428{left:449.142000px;}
.x92_c01428{left:451.339500px;}
.x7d_c01428{left:452.395500px;}
.x34_c01428{left:456.993000px;}
.x5c_c01428{left:465.354270px;}
.x48_c01428{left:466.393500px;}
.x7_c01428{left:471.150000px;}
.x93_c01428{left:473.169000px;}
.xd_c01428{left:479.941500px;}
.xad_c01428{left:482.347500px;}
.x25_c01428{left:491.025000px;}
.x57_c01428{left:498.310140px;}
.x94_c01428{left:505.296000px;}
.x8c_c01428{left:506.868174px;}
.x64_c01428{left:508.336230px;}
.x49_c01428{left:511.512000px;}
.xae_c01428{left:516.099000px;}
.x6a_c01428{left:520.473510px;}
.x19_c01428{left:524.496000px;}
.x6f_c01428{left:529.347000px;}
.x41_c01428{left:533.425500px;}
.xa9_c01428{left:537.899452px;}
.x78_c01428{left:539.281500px;}
.x5d_c01428{left:541.774980px;}
.x16_c01428{left:550.005420px;}
.x50_c01428{left:553.896000px;}
.x3b_c01428{left:555.507000px;}
.x26_c01428{left:556.900500px;}
.x1a_c01428{left:558.244500px;}
.x9a_c01428{left:560.367000px;}
.x70_c01428{left:561.837000px;}
.x86_c01428{left:563.983500px;}
.x2e_c01428{left:566.874000px;}
.x58_c01428{left:575.014440px;}
.x35_c01428{left:577.137000px;}
.xa0_c01428{left:582.238167px;}
.x81_c01428{left:584.127000px;}
.x5e_c01428{left:585.449970px;}
.xe_c01428{left:590.101500px;}
.x95_c01428{left:592.501500px;}
.x8d_c01428{left:594.895506px;}
.x27_c01428{left:600.909000px;}
.x87_c01428{left:605.196000px;}
.x4a_c01428{left:608.476500px;}
.xa1_c01428{left:614.638167px;}
.x71_c01428{left:617.629500px;}
.x51_c01428{left:629.764500px;}
.x2f_c01428{left:633.592500px;}
.x7e_c01428{left:638.616000px;}
.x65_c01428{left:640.392270px;}
.x20_c01428{left:643.337010px;}
.xa3_c01428{left:647.896500px;}
.x79_c01428{left:649.708500px;}
.x4b_c01428{left:652.441500px;}
.x1b_c01428{left:655.204500px;}
.xf_c01428{left:656.251500px;}
.x88_c01428{left:659.205000px;}
.x72_c01428{left:661.378500px;}
.x5f_c01428{left:662.751330px;}
.x82_c01428{left:671.883000px;}
.x59_c01428{left:673.574670px;}
.x3c_c01428{left:676.243500px;}
.x9b_c01428{left:680.827500px;}
.x42_c01428{left:685.669500px;}
.x36_c01428{left:686.760000px;}
.x1c_c01428{left:688.113000px;}
.x10_c01428{left:690.273000px;}
.x28_c01428{left:699.196500px;}
.x8e_c01428{left:703.479600px;}
.x6b_c01428{left:705.074940px;}
.x4c_c01428{left:706.720500px;}
.x30_c01428{left:709.161000px;}
.x21_c01428{left:712.184010px;}
.xa4_c01428{left:713.199000px;}
.x60_c01428{left:716.756970px;}
.x43_c01428{left:718.608000px;}
.x37_c01428{left:720.516000px;}
.x9c_c01428{left:724.575000px;}
.x66_c01428{left:728.461650px;}
.x1d_c01428{left:732.126000px;}
.x8f_c01428{left:736.370412px;}
.x73_c01428{left:737.520000px;}
.xa5_c01428{left:747.195000px;}
.x52_c01428{left:749.919000px;}
.x8_c01428{left:752.220000px;}
.x61_c01428{left:758.075070px;}
.x3d_c01428{left:763.729500px;}
.x11_c01428{left:765.517500px;}
.xaf_c01428{left:769.945500px;}
.x44_c01428{left:772.032000px;}
.x31_c01428{left:774.511500px;}
.x90_c01428{left:779.841846px;}
.x83_c01428{left:781.245000px;}
.x7a_c01428{left:791.449500px;}
.x5a_c01428{left:793.755300px;}
.x12_c01428{left:798.553500px;}
.x29_c01428{left:800.247000px;}
.x6c_c01428{left:804.874890px;}
.x67_c01428{left:816.474030px;}
.x3e_c01428{left:818.776500px;}
.x84_c01428{left:823.368000px;}
.x5b_c01428{left:824.540850px;}
.x1e_c01428{left:831.225000px;}
@media print{
.v0_c01428{vertical-align:0.000000pt;}
.v1_c01428{vertical-align:1.296259pt;}
.ls0_c01428{letter-spacing:0.000000pt;}
.ws0_c01428{word-spacing:0.000000pt;}
._0_c01428{width:31.248663pt;}
.fs2_c01428{font-size:16.000000pt;}
.fs6_c01428{font-size:16.000800pt;}
.fs12_c01428{font-size:42.673578pt;}
.fs8_c01428{font-size:58.669043pt;}
.fs5_c01428{font-size:58.669600pt;}
.fs11_c01428{font-size:58.670216pt;}
.fs16_c01428{font-size:58.671624pt;}
.fs17_c01428{font-size:58.672416pt;}
.fse_c01428{font-size:58.678399pt;}
.fs9_c01428{font-size:64.003200pt;}
.fs13_c01428{font-size:64.003872pt;}
.fs15_c01428{font-size:64.004608pt;}
.fs14_c01428{font-size:64.005408pt;}
.fs1_c01428{font-size:69.333333pt;}
.fs7_c01428{font-size:69.336141pt;}
.fs10_c01428{font-size:69.347199pt;}
.fs0_c01428{font-size:74.666667pt;}
.fsc_c01428{font-size:74.671184pt;}
.fsd_c01428{font-size:74.672042pt;}
.fsa_c01428{font-size:74.672976pt;}
.fsb_c01428{font-size:80.004840pt;}
.fsf_c01428{font-size:85.339477pt;}
.fs3_c01428{font-size:90.666667pt;}
.fs4_c01428{font-size:90.671200pt;}
.y0_c01428{bottom:0.000000pt;}
.yff_c01428{bottom:34.102584pt;}
.yfe_c01428{bottom:34.552748pt;}
.yfd_c01428{bottom:34.978947pt;}
.yfc_c01428{bottom:35.842755pt;}
.yfb_c01428{bottom:36.584639pt;}
.yfa_c01428{bottom:36.914653pt;}
.yf9_c01428{bottom:37.239329pt;}
.yf8_c01428{bottom:38.303249pt;}
.yf7_c01428{bottom:39.362667pt;}
.yf6_c01428{bottom:68.120965pt;}
.yf5_c01428{bottom:68.567516pt;}
.yf4_c01428{bottom:69.438608pt;}
.yf3_c01428{bottom:69.881139pt;}
.yf2_c01428{bottom:70.168764pt;}
.yf1_c01428{bottom:71.199197pt;}
.yf0_c01428{bottom:71.760619pt;}
.yef_c01428{bottom:97.847871pt;}
.yee_c01428{bottom:98.240713pt;}
.yed_c01428{bottom:98.995320pt;}
.yec_c01428{bottom:99.529395pt;}
.yeb_c01428{bottom:100.009424pt;}
.yea_c01428{bottom:101.017132pt;}
.ye9_c01428{bottom:101.541777pt;}
.ye8_c01428{bottom:102.671495pt;}
.ye7_c01428{bottom:103.922667pt;}
.ye6_c01428{bottom:129.912283pt;}
.ye5_c01428{bottom:131.279859pt;}
.ye4_c01428{bottom:131.683059pt;}
.ye3_c01428{bottom:132.627275pt;}
.ye2_c01428{bottom:133.050037pt;}
.ye1_c01428{bottom:134.136008pt;}
.ye0_c01428{bottom:134.552704pt;}
.ydf_c01428{bottom:135.644835pt;}
.yde_c01428{bottom:135.838427pt;}
.ydd_c01428{bottom:161.332432pt;}
.ydc_c01428{bottom:161.748661pt;}
.ydb_c01428{bottom:162.293075pt;}
.yda_c01428{bottom:163.792139pt;}
.yd9_c01428{bottom:164.870587pt;}
.yd8_c01428{bottom:165.425080pt;}
.yd7_c01428{bottom:165.841776pt;}
.yd6_c01428{bottom:166.782669pt;}
.yd5_c01428{bottom:167.192272pt;}
.yd4_c01428{bottom:168.002667pt;}
.yd3_c01428{bottom:193.500816pt;}
.yd2_c01428{bottom:194.623999pt;}
.yd1_c01428{bottom:195.413376pt;}
.yd0_c01428{bottom:196.421084pt;}
.ycf_c01428{bottom:196.792329pt;}
.yce_c01428{bottom:197.044581pt;}
.ycd_c01428{bottom:197.550593pt;}
.ycc_c01428{bottom:198.071668pt;}
.ycb_c01428{bottom:198.692288pt;}
.yca_c01428{bottom:199.201333pt;}
.yc9_c01428{bottom:224.384656pt;}
.yc8_c01428{bottom:224.964368pt;}
.yc7_c01428{bottom:225.403216pt;}
.yc6_c01428{bottom:226.850821pt;}
.yc5_c01428{bottom:228.024480pt;}
.yc4_c01428{bottom:229.183776pt;}
.yc3_c01428{bottom:230.084000pt;}
.yc2_c01428{bottom:230.670805pt;}
.yc1_c01428{bottom:231.840155pt;}
.yc0_c01428{bottom:257.196357pt;}
.ybf_c01428{bottom:257.553589pt;}
.ybe_c01428{bottom:258.613525pt;}
.ybd_c01428{bottom:259.189621pt;}
.ybc_c01428{bottom:259.629221pt;}
.ybb_c01428{bottom:260.689957pt;}
.yba_c01428{bottom:261.770053pt;}
.yb9_c01428{bottom:262.115797pt;}
.yb8_c01428{bottom:262.801333pt;}
.yb7_c01428{bottom:287.047684pt;}
.yb6_c01428{bottom:287.534439pt;}
.yb5_c01428{bottom:288.798177pt;}
.yb4_c01428{bottom:289.247215pt;}
.yb3_c01428{bottom:289.812247pt;}
.yb2_c01428{bottom:290.448761pt;}
.yb1_c01428{bottom:291.465795pt;}
.yb0_c01428{bottom:292.614093pt;}
.yaf_c01428{bottom:293.119741pt;}
.yae_c01428{bottom:294.002667pt;}
.yad_c01428{bottom:321.136276pt;}
.yac_c01428{bottom:322.571688pt;}
.yab_c01428{bottom:322.957099pt;}
.y2_c01428{bottom:323.769333pt;}
.yaa_c01428{bottom:324.034351pt;}
.ya9_c01428{bottom:324.353776pt;}
.ya8_c01428{bottom:325.201333pt;}
.ya7_c01428{bottom:350.826891pt;}
.ya6_c01428{bottom:351.345051pt;}
.ya5_c01428{bottom:352.036683pt;}
.ya4_c01428{bottom:353.094747pt;}
.ya3_c01428{bottom:353.749179pt;}
.ya2_c01428{bottom:354.861579pt;}
.ya1_c01428{bottom:355.358307pt;}
.ya0_c01428{bottom:356.598171pt;}
.y9f_c01428{bottom:357.833811pt;}
.y9e_c01428{bottom:358.501347pt;}
.y9d_c01428{bottom:359.042667pt;}
.y9c_c01428{bottom:383.958120pt;}
.y9b_c01428{bottom:384.502385pt;}
.y9a_c01428{bottom:385.246880pt;}
.y99_c01428{bottom:385.674648pt;}
.y98_c01428{bottom:386.220175pt;}
.y97_c01428{bottom:386.537855pt;}
.y96_c01428{bottom:387.389225pt;}
.y95_c01428{bottom:388.459804pt;}
.y94_c01428{bottom:389.521333pt;}
.y93_c01428{bottom:419.628560pt;}
.y92_c01428{bottom:420.695387pt;}
.y91_c01428{bottom:446.721040pt;}
.y90_c01428{bottom:446.888373pt;}
.y8f_c01428{bottom:447.375493pt;}
.y8e_c01428{bottom:447.775573pt;}
.y8d_c01428{bottom:448.847147pt;}
.y8c_c01428{bottom:449.415387pt;}
.y8b_c01428{bottom:450.593627pt;}
.y8a_c01428{bottom:450.889253pt;}
.y89_c01428{bottom:451.657200pt;}
.y88_c01428{bottom:479.812747pt;}
.y87_c01428{bottom:480.166613pt;}
.y86_c01428{bottom:480.515733pt;}
.y85_c01428{bottom:481.219733pt;}
.y84_c01428{bottom:482.276213pt;}
.y83_c01428{bottom:482.801120pt;}
.y82_c01428{bottom:483.673547pt;}
.y81_c01428{bottom:484.542053pt;}
.y80_c01428{bottom:510.286720pt;}
.y7f_c01428{bottom:510.727813pt;}
.y7e_c01428{bottom:511.303760pt;}
.y7d_c01428{bottom:512.128453pt;}
.y7c_c01428{bottom:512.594107pt;}
.y7b_c01428{bottom:513.409813pt;}
.y7a_c01428{bottom:514.533893pt;}
.y79_c01428{bottom:514.911333pt;}
.y78_c01428{bottom:515.510720pt;}
.y77_c01428{bottom:541.819520pt;}
.y76_c01428{bottom:542.120053pt;}
.y75_c01428{bottom:542.975307pt;}
.y74_c01428{bottom:543.294880pt;}
.y73_c01428{bottom:543.716987pt;}
.y72_c01428{bottom:544.258747pt;}
.y71_c01428{bottom:545.008800pt;}
.y70_c01428{bottom:545.568853pt;}
.y6f_c01428{bottom:546.616987pt;}
.y6e_c01428{bottom:547.675493pt;}
.y6d_c01428{bottom:577.440427pt;}
.y6c_c01428{bottom:578.405333pt;}
.y6b_c01428{bottom:604.707845pt;}
.y6a_c01428{bottom:605.989493pt;}
.y69_c01428{bottom:606.798757pt;}
.y68_c01428{bottom:608.193301pt;}
.y67_c01428{bottom:609.027925pt;}
.y66_c01428{bottom:609.500357pt;}
.y65_c01428{bottom:610.321333pt;}
.y64_c01428{bottom:641.169973pt;}
.y63_c01428{bottom:641.765333pt;}
.y62_c01428{bottom:668.432325pt;}
.y61_c01428{bottom:669.034757pt;}
.y60_c01428{bottom:669.613733pt;}
.y5f_c01428{bottom:670.082693pt;}
.y5e_c01428{bottom:671.116981pt;}
.y5d_c01428{bottom:671.598245pt;}
.y5c_c01428{bottom:672.536821pt;}
.y5b_c01428{bottom:673.706261pt;}
.y5a_c01428{bottom:674.161333pt;}
.y59_c01428{bottom:703.722572pt;}
.y58_c01428{bottom:703.919927pt;}
.y57_c01428{bottom:704.785993pt;}
.y56_c01428{bottom:705.119044pt;}
.y55_c01428{bottom:731.938135pt;}
.y54_c01428{bottom:732.460503pt;}
.y53_c01428{bottom:732.782568pt;}
.y52_c01428{bottom:734.060401pt;}
.y51_c01428{bottom:734.271176pt;}
.y50_c01428{bottom:735.768437pt;}
.y4f_c01428{bottom:736.539391pt;}
.y4e_c01428{bottom:737.281333pt;}
.y4d_c01428{bottom:768.006333pt;}
.y4c_c01428{bottom:795.480021pt;}
.y4b_c01428{bottom:795.722827pt;}
.y4a_c01428{bottom:796.116120pt;}
.y49_c01428{bottom:797.127069pt;}
.y48_c01428{bottom:798.522247pt;}
.y47_c01428{bottom:799.398897pt;}
.y1_c01428{bottom:800.152000pt;}
.y46_c01428{bottom:800.172675pt;}
.y45_c01428{bottom:800.940541pt;}
.y44_c01428{bottom:801.439533pt;}
.y43_c01428{bottom:802.322667pt;}
.y4_c01428{bottom:804.121333pt;}
.y42_c01428{bottom:828.332347pt;}
.y41_c01428{bottom:828.632400pt;}
.y40_c01428{bottom:829.014080pt;}
.y3f_c01428{bottom:829.606827pt;}
.y3e_c01428{bottom:830.674773pt;}
.y3d_c01428{bottom:831.558053pt;}
.y3c_c01428{bottom:831.850867pt;}
.y3b_c01428{bottom:832.321333pt;}
.y3a_c01428{bottom:858.430720pt;}
.y39_c01428{bottom:859.011613pt;}
.y38_c01428{bottom:859.683333pt;}
.y37_c01428{bottom:859.981227pt;}
.y36_c01428{bottom:860.276387pt;}
.y35_c01428{bottom:860.957947pt;}
.y34_c01428{bottom:861.342333pt;}
.y33_c01428{bottom:862.313947pt;}
.y32_c01428{bottom:863.281333pt;}
.y2e_c01428{bottom:893.699683pt;}
.y2d_c01428{bottom:893.700032pt;}
.y2f_c01428{bottom:893.700175pt;}
.y30_c01428{bottom:893.700667pt;}
.y31_c01428{bottom:893.701159pt;}
.y2c_c01428{bottom:922.407025pt;}
.y2b_c01428{bottom:922.951981pt;}
.y2a_c01428{bottom:923.215429pt;}
.y29_c01428{bottom:924.001729pt;}
.y28_c01428{bottom:924.353797pt;}
.y27_c01428{bottom:924.880801pt;}
.y26_c01428{bottom:925.667305pt;}
.y25_c01428{bottom:925.833157pt;}
.y24_c01428{bottom:926.641333pt;}
.y23_c01428{bottom:950.162760pt;}
.y22_c01428{bottom:950.774733pt;}
.y20_c01428{bottom:953.593067pt;}
.y1f_c01428{bottom:954.473947pt;}
.y21_c01428{bottom:954.480053pt;}
.y1e_c01428{bottom:954.865173pt;}
.y1d_c01428{bottom:955.157693pt;}
.y1c_c01428{bottom:956.019560pt;}
.y3_c01428{bottom:956.288000pt;}
.y1b_c01428{bottom:956.319547pt;}
.y1a_c01428{bottom:956.801947pt;}
.y19_c01428{bottom:957.104333pt;}
.y18_c01428{bottom:958.076387pt;}
.y17_c01428{bottom:959.041333pt;}
.y11_c01428{bottom:988.827453pt;}
.y13_c01428{bottom:988.827507pt;}
.y14_c01428{bottom:988.827520pt;}
.y12_c01428{bottom:988.827747pt;}
.y16_c01428{bottom:988.827840pt;}
.y15_c01428{bottom:988.828067pt;}
.y10_c01428{bottom:1017.250920pt;}
.yf_c01428{bottom:1017.544573pt;}
.ye_c01428{bottom:1018.213413pt;}
.yd_c01428{bottom:1018.515827pt;}
.yc_c01428{bottom:1019.103827pt;}
.yb_c01428{bottom:1020.083027pt;}
.ya_c01428{bottom:1020.371067pt;}
.y9_c01428{bottom:1021.148693pt;}
.y8_c01428{bottom:1021.539920pt;}
.y7_c01428{bottom:1021.921333pt;}
.y6_c01428{bottom:1042.918667pt;}
.y5_c01428{bottom:1079.654667pt;}
.h4_c01428{height:16.000000pt;}
.h8_c01428{height:16.000800pt;}
.h15_c01428{height:42.673578pt;}
.ha_c01428{height:58.669043pt;}
.h7_c01428{height:58.669600pt;}
.h14_c01428{height:58.670216pt;}
.h19_c01428{height:58.671624pt;}
.h1a_c01428{height:58.672416pt;}
.h10_c01428{height:58.678399pt;}
.hb_c01428{height:64.003200pt;}
.h16_c01428{height:64.003872pt;}
.h18_c01428{height:64.004608pt;}
.h17_c01428{height:64.005408pt;}
.h3_c01428{height:69.333333pt;}
.h9_c01428{height:69.336141pt;}
.h12_c01428{height:69.347199pt;}
.h13_c01428{height:70.643458pt;}
.h2_c01428{height:74.666667pt;}
.he_c01428{height:74.671184pt;}
.hf_c01428{height:74.672042pt;}
.hc_c01428{height:74.672976pt;}
.hd_c01428{height:80.004840pt;}
.h11_c01428{height:85.339477pt;}
.h5_c01428{height:90.666667pt;}
.h6_c01428{height:90.671200pt;}
.h1_c01428{height:1111.333333pt;}
.h0_c01428{height:1111.440000pt;}
.w0_c01428{width:810.666667pt;}
.x0_c01428{left:0.000000pt;}
.x2_c01428{left:90.720000pt;}
.x1_c01428{left:94.320000pt;}
.x3_c01428{left:106.320000pt;}
.x4_c01428{left:145.200000pt;}
.x17_c01428{left:194.040000pt;}
.x7f_c01428{left:196.884000pt;}
.x4d_c01428{left:198.804000pt;}
.x62_c01428{left:200.040373pt;}
.x1f_c01428{left:201.323120pt;}
.x2d_c01428{left:203.393333pt;}
.xaa_c01428{left:206.206667pt;}
.x9d_c01428{left:220.733037pt;}
.x9e_c01428{left:234.561037pt;}
.x6d_c01428{left:235.711547pt;}
.x53_c01428{left:237.834667pt;}
.x45_c01428{left:239.152267pt;}
.x22_c01428{left:240.852000pt;}
.x9_c01428{left:242.784000pt;}
.x74_c01428{left:247.078667pt;}
.x96_c01428{left:255.237333pt;}
.x80_c01428{left:264.801333pt;}
.x3f_c01428{left:267.954667pt;}
.x38_c01428{left:269.377333pt;}
.xa6_c01428{left:272.940852pt;}
.x89_c01428{left:274.139840pt;}
.x7b_c01428{left:275.158667pt;}
.x75_c01428{left:277.152000pt;}
.xa_c01428{left:280.925333pt;}
.x97_c01428{left:284.494667pt;}
.x54_c01428{left:286.080000pt;}
.x32_c01428{left:288.606667pt;}
.x13_c01428{left:290.883240pt;}
.xa2_c01428{left:293.125333pt;}
.x6e_c01428{left:294.988587pt;}
.x55_c01428{left:296.773387pt;}
.x2a_c01428{left:300.003007pt;}
.xab_c01428{left:302.517333pt;}
.x7c_c01428{left:304.197333pt;}
.x4e_c01428{left:306.588000pt;}
.x39_c01428{left:307.761333pt;}
.x8a_c01428{left:313.261099pt;}
.x76_c01428{left:314.237333pt;}
.x68_c01428{left:315.253653pt;}
.x33_c01428{left:317.888000pt;}
.xb_c01428{left:320.048000pt;}
.x85_c01428{left:322.916000pt;}
.x2b_c01428{left:329.284049pt;}
.x23_c01428{left:330.649333pt;}
.x47_c01428{left:336.357333pt;}
.x40_c01428{left:338.041333pt;}
.x14_c01428{left:339.845467pt;}
.x9f_c01428{left:342.334371pt;}
.x69_c01428{left:344.774213pt;}
.x46_c01428{left:348.162933pt;}
.x24_c01428{left:349.077333pt;}
.x98_c01428{left:351.701333pt;}
.x2c_c01428{left:358.565092pt;}
.x5_c01428{left:359.760000pt;}
.xa7_c01428{left:360.789231pt;}
.x91_c01428{left:362.266667pt;}
.x3a_c01428{left:366.828000pt;}
.x15_c01428{left:368.647013pt;}
.x8b_c01428{left:373.277605pt;}
.x4f_c01428{left:376.140000pt;}
.x6_c01428{left:380.160000pt;}
.x99_c01428{left:381.465333pt;}
.x77_c01428{left:382.884000pt;}
.x18_c01428{left:387.740000pt;}
.xa8_c01428{left:390.316468pt;}
.x56_c01428{left:392.063867pt;}
.x63_c01428{left:393.529600pt;}
.xc_c01428{left:397.810667pt;}
.xac_c01428{left:399.237333pt;}
.x92_c01428{left:401.190667pt;}
.x7d_c01428{left:402.129333pt;}
.x34_c01428{left:406.216000pt;}
.x5c_c01428{left:413.648240pt;}
.x48_c01428{left:414.572000pt;}
.x7_c01428{left:418.800000pt;}
.x93_c01428{left:420.594667pt;}
.xd_c01428{left:426.614667pt;}
.xad_c01428{left:428.753333pt;}
.x25_c01428{left:436.466667pt;}
.x57_c01428{left:442.942347pt;}
.x94_c01428{left:449.152000pt;}
.x8c_c01428{left:450.549488pt;}
.x64_c01428{left:451.854427pt;}
.x49_c01428{left:454.677333pt;}
.xae_c01428{left:458.754667pt;}
.x6a_c01428{left:462.643120pt;}
.x19_c01428{left:466.218667pt;}
.x6f_c01428{left:470.530667pt;}
.x41_c01428{left:474.156000pt;}
.xa9_c01428{left:478.132847pt;}
.x78_c01428{left:479.361333pt;}
.x5d_c01428{left:481.577760pt;}
.x16_c01428{left:488.893707pt;}
.x50_c01428{left:492.352000pt;}
.x3b_c01428{left:493.784000pt;}
.x26_c01428{left:495.022667pt;}
.x1a_c01428{left:496.217333pt;}
.x9a_c01428{left:498.104000pt;}
.x70_c01428{left:499.410667pt;}
.x86_c01428{left:501.318667pt;}
.x2e_c01428{left:503.888000pt;}
.x58_c01428{left:511.123947pt;}
.x35_c01428{left:513.010667pt;}
.xa0_c01428{left:517.545037pt;}
.x81_c01428{left:519.224000pt;}
.x5e_c01428{left:520.399973pt;}
.xe_c01428{left:524.534667pt;}
.x95_c01428{left:526.668000pt;}
.x8d_c01428{left:528.796005pt;}
.x27_c01428{left:534.141333pt;}
.x87_c01428{left:537.952000pt;}
.x4a_c01428{left:540.868000pt;}
.xa1_c01428{left:546.345037pt;}
.x71_c01428{left:549.004000pt;}
.x51_c01428{left:559.790667pt;}
.x2f_c01428{left:563.193333pt;}
.x7e_c01428{left:567.658667pt;}
.x65_c01428{left:569.237573pt;}
.x20_c01428{left:571.855120pt;}
.xa3_c01428{left:575.908000pt;}
.x79_c01428{left:577.518667pt;}
.x4b_c01428{left:579.948000pt;}
.x1b_c01428{left:582.404000pt;}
.xf_c01428{left:583.334667pt;}
.x88_c01428{left:585.960000pt;}
.x72_c01428{left:587.892000pt;}
.x5f_c01428{left:589.112293pt;}
.x82_c01428{left:597.229333pt;}
.x59_c01428{left:598.733040pt;}
.x3c_c01428{left:601.105333pt;}
.x9b_c01428{left:605.180000pt;}
.x42_c01428{left:609.484000pt;}
.x36_c01428{left:610.453333pt;}
.x1c_c01428{left:611.656000pt;}
.x10_c01428{left:613.576000pt;}
.x28_c01428{left:621.508000pt;}
.x8e_c01428{left:625.315200pt;}
.x6b_c01428{left:626.733280pt;}
.x4c_c01428{left:628.196000pt;}
.x30_c01428{left:630.365333pt;}
.x21_c01428{left:633.052453pt;}
.xa4_c01428{left:633.954667pt;}
.x60_c01428{left:637.117307pt;}
.x43_c01428{left:638.762667pt;}
.x37_c01428{left:640.458667pt;}
.x9c_c01428{left:644.066667pt;}
.x66_c01428{left:647.521467pt;}
.x1d_c01428{left:650.778667pt;}
.x8f_c01428{left:654.551477pt;}
.x73_c01428{left:655.573333pt;}
.xa5_c01428{left:664.173333pt;}
.x52_c01428{left:666.594667pt;}
.x8_c01428{left:668.640000pt;}
.x61_c01428{left:673.844507pt;}
.x3d_c01428{left:678.870667pt;}
.x11_c01428{left:680.460000pt;}
.xaf_c01428{left:684.396000pt;}
.x44_c01428{left:686.250667pt;}
.x31_c01428{left:688.454667pt;}
.x90_c01428{left:693.192752pt;}
.x83_c01428{left:694.440000pt;}
.x7a_c01428{left:703.510667pt;}
.x5a_c01428{left:705.560267pt;}
.x12_c01428{left:709.825333pt;}
.x29_c01428{left:711.330667pt;}
.x6c_c01428{left:715.444347pt;}
.x67_c01428{left:725.754693pt;}
.x3e_c01428{left:727.801333pt;}
.x84_c01428{left:731.882667pt;}
.x5b_c01428{left:732.925200pt;}
.x1e_c01428{left:738.866667pt;}
}





/* 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_c01429 {
    display:none;
  }
  .loading-indicator_c01429.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01429 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_c01429 { 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_c01429" -> "#page-container .classname_c01429")
 */
.pf_c01429 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01429 { /* 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_c01429.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01429 { /* 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_c01429 { /* 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_c01429 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01429 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01429 {overflow:visible;}
  }
}
.c_c01429 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01429 { /* 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_c01429:after { /* webkit #35443 */
  content: '';
}
.t_c01429:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01429 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 */
}
.__c01429 { /* 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_c01429 { /* info for Javascript */
  display:none;
}
.l_c01429 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01429 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01429 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01429: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_c01429 {
    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_c01429.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01429.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_c01429 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01429{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01429;src:url('chunks/assets/font_e3fbdd6f747043a19966a9dc.woff2')format("woff");}.ff1_c01429{font-family:ff1_c01429;line-height:1.000000;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;}
.m1_c01429{transform:matrix(0.295465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295465,0.000000,0.000000,0.250000,0,0);}
.m0_c01429{transform:matrix(0.672055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.672055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.672055,0.000000,0.000000,0.250000,0,0);}
.m2_c01429{transform:matrix(0.743605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.743605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.743605,0.000000,0.000000,0.250000,0,0);}
.v0_c01429{vertical-align:0.000000px;}
.ls0_c01429{letter-spacing:0.000000px;}
.sc__c01429{text-shadow:none;}
.sc0_c01429{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__c01429{-webkit-text-stroke:0px transparent;}
.sc0_c01429{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01429{word-spacing:0.000000px;}
.fc0_c01429{color:transparent;}
.fs1_c01429{font-size:24.000000px;}
.fs0_c01429{font-size:30.000000px;}
.y0_c01429{bottom:0.000000px;}
.y2_c01429{bottom:361.537500px;}
.y1_c01429{bottom:365.718000px;}
.h3_c01429{height:24.000000px;}
.h2_c01429{height:30.000000px;}
.h1_c01429{height:1250.250000px;}
.h0_c01429{height:1250.370000px;}
.w0_c01429{width:912.000000px;}
.x0_c01429{left:0.000000px;}
.x1_c01429{left:359.370000px;}
.x2_c01429{left:363.690000px;}
.x3_c01429{left:375.300000px;}
@media print{
.v0_c01429{vertical-align:0.000000pt;}
.ls0_c01429{letter-spacing:0.000000pt;}
.ws0_c01429{word-spacing:0.000000pt;}
.fs1_c01429{font-size:21.333333pt;}
.fs0_c01429{font-size:26.666667pt;}
.y0_c01429{bottom:0.000000pt;}
.y2_c01429{bottom:321.366667pt;}
.y1_c01429{bottom:325.082667pt;}
.h3_c01429{height:21.333333pt;}
.h2_c01429{height:26.666667pt;}
.h1_c01429{height:1111.333333pt;}
.h0_c01429{height:1111.440000pt;}
.w0_c01429{width:810.666667pt;}
.x0_c01429{left:0.000000pt;}
.x1_c01429{left:319.440000pt;}
.x2_c01429{left:323.280000pt;}
.x3_c01429{left:333.600000pt;}
}





/* 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_c01430 {
    display:none;
  }
  .loading-indicator_c01430.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01430 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_c01430 { 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_c01430" -> "#page-container .classname_c01430")
 */
.pf_c01430 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01430 { /* 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_c01430.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01430 { /* 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_c01430 { /* 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_c01430 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01430 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01430 {overflow:visible;}
  }
}
.c_c01430 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01430 { /* 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_c01430:after { /* webkit #35443 */
  content: '';
}
.t_c01430:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01430 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 */
}
.__c01430 { /* 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_c01430 { /* info for Javascript */
  display:none;
}
.l_c01430 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01430 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01430 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01430: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_c01430 {
    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_c01430.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01430.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_c01430 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01430{font-family:sans-serif;visibility:hidden;}
.sc__c01430{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01430{-webkit-text-stroke:0px transparent;}
}
.y0_c01430{bottom:0.000000px;}
.h1_c01430{height:1250.250000px;}
.h0_c01430{height:1250.370000px;}
.w0_c01430{width:912.000000px;}
.x0_c01430{left:0.000000px;}
@media print{
.y0_c01430{bottom:0.000000pt;}
.h1_c01430{height:1111.333333pt;}
.h0_c01430{height:1111.440000pt;}
.w0_c01430{width:810.666667pt;}
.x0_c01430{left:0.000000pt;}
}





/* 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_c01431 {
    display:none;
  }
  .loading-indicator_c01431.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01431 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_c01431 { 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_c01431" -> "#page-container .classname_c01431")
 */
.pf_c01431 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01431 { /* 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_c01431.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01431 { /* 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_c01431 { /* 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_c01431 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01431 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01431 {overflow:visible;}
  }
}
.c_c01431 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01431 { /* 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_c01431:after { /* webkit #35443 */
  content: '';
}
.t_c01431:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01431 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 */
}
.__c01431 { /* 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_c01431 { /* info for Javascript */
  display:none;
}
.l_c01431 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01431 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01431 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01431: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_c01431 {
    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_c01431.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01431.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_c01431 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01431{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01431;src:url('chunks/assets/font_34ef06f37df79a36ad740a8f.woff2')format("woff");}.ff1_c01431{font-family:ff1_c01431;line-height:1.000000;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;}
.m3_c01431{transform:matrix(0.036865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.036865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.036865,0.000000,0.000000,0.250000,0,0);}
.m2_c01431{transform:matrix(0.176185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176185,0.000000,0.000000,0.250000,0,0);}
.m5_c01431{transform:matrix(0.242075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242075,0.000000,0.000000,0.250000,0,0);}
.m7_c01431{transform:matrix(0.291490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291490,0.000000,0.000000,0.250000,0,0);}
.m6_c01431{transform:matrix(0.436035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.436035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.436035,0.000000,0.000000,0.250000,0,0);}
.m1_c01431{transform:matrix(1.158605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.158605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.158605,0.000000,0.000000,0.250000,0,0);}
.m0_c01431{transform:matrix(3.028440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.028440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.028440,0.000000,0.000000,0.250000,0,0);}
.m4_c01431{transform:matrix(5.651480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.651480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.651480,0.000000,0.000000,0.250000,0,0);}
.v0_c01431{vertical-align:0.000000px;}
.ls0_c01431{letter-spacing:0.000000px;}
.sc__c01431{text-shadow:none;}
.sc0_c01431{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__c01431{-webkit-text-stroke:0px transparent;}
.sc0_c01431{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01431{word-spacing:0.000000px;}
.fc0_c01431{color:transparent;}
.fs0_c01431{font-size:18.000000px;}
.fs2_c01431{font-size:24.000000px;}
.fs1_c01431{font-size:42.000000px;}
.y0_c01431{bottom:0.000000px;}
.y6_c01431{bottom:911.790000px;}
.y5_c01431{bottom:921.240000px;}
.y4_c01431{bottom:923.940000px;}
.y2_c01431{bottom:1245.510000px;}
.y1_c01431{bottom:1246.590000px;}
.y3_c01431{bottom:1248.753000px;}
.h2_c01431{height:18.000000px;}
.h4_c01431{height:24.000000px;}
.h3_c01431{height:42.000000px;}
.h1_c01431{height:1250.250000px;}
.h0_c01431{height:1250.370000px;}
.w0_c01431{width:912.000000px;}
.x0_c01431{left:0.000000px;}
.x5_c01431{left:166.860000px;}
.x8_c01431{left:579.960000px;}
.x7_c01431{left:588.060000px;}
.x6_c01431{left:604.800000px;}
.x2_c01431{left:754.920000px;}
.x3_c01431{left:791.370000px;}
.x4_c01431{left:809.190000px;}
.x1_c01431{left:826.200000px;}
@media print{
.v0_c01431{vertical-align:0.000000pt;}
.ls0_c01431{letter-spacing:0.000000pt;}
.ws0_c01431{word-spacing:0.000000pt;}
.fs0_c01431{font-size:16.000000pt;}
.fs2_c01431{font-size:21.333333pt;}
.fs1_c01431{font-size:37.333333pt;}
.y0_c01431{bottom:0.000000pt;}
.y6_c01431{bottom:810.480000pt;}
.y5_c01431{bottom:818.880000pt;}
.y4_c01431{bottom:821.280000pt;}
.y2_c01431{bottom:1107.120000pt;}
.y1_c01431{bottom:1108.080000pt;}
.y3_c01431{bottom:1110.002667pt;}
.h2_c01431{height:16.000000pt;}
.h4_c01431{height:21.333333pt;}
.h3_c01431{height:37.333333pt;}
.h1_c01431{height:1111.333333pt;}
.h0_c01431{height:1111.440000pt;}
.w0_c01431{width:810.666667pt;}
.x0_c01431{left:0.000000pt;}
.x5_c01431{left:148.320000pt;}
.x8_c01431{left:515.520000pt;}
.x7_c01431{left:522.720000pt;}
.x6_c01431{left:537.600000pt;}
.x2_c01431{left:671.040000pt;}
.x3_c01431{left:703.440000pt;}
.x4_c01431{left:719.280000pt;}
.x1_c01431{left:734.400000pt;}
}





/* 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_c01432 {
    display:none;
  }
  .loading-indicator_c01432.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01432 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_c01432 { 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_c01432" -> "#page-container .classname_c01432")
 */
.pf_c01432 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01432 { /* 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_c01432.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01432 { /* 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_c01432 { /* 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_c01432 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01432 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01432 {overflow:visible;}
  }
}
.c_c01432 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01432 { /* 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_c01432:after { /* webkit #35443 */
  content: '';
}
.t_c01432:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01432 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 */
}
.__c01432 { /* 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_c01432 { /* info for Javascript */
  display:none;
}
.l_c01432 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01432 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01432 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01432: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_c01432 {
    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_c01432.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01432.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_c01432 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01432{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01432;src:url('chunks/assets/font_53ec0c54e60da7c2d414b553.woff2')format("woff");}.ff1_c01432{font-family:ff1_c01432;line-height:1.000000;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;}
.md0_c01432{transform:matrix(0.017308,0.000260,-0.003750,0.249972,0,0);-ms-transform:matrix(0.017308,0.000260,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.017308,0.000260,-0.003750,0.249972,0,0);}
.m18_c01432{transform:matrix(0.088770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.088770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.088770,0.000000,0.000000,0.250000,0,0);}
.m9_c01432{transform:matrix(0.097290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.097290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.097290,0.000000,0.000000,0.250000,0,0);}
.m4e_c01432{transform:matrix(0.110643,0.001660,-0.003750,0.249972,0,0);-ms-transform:matrix(0.110643,0.001660,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.110643,0.001660,-0.003750,0.249972,0,0);}
.m27_c01432{transform:matrix(0.111357,0.001670,-0.003750,0.249972,0,0);-ms-transform:matrix(0.111357,0.001670,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.111357,0.001670,-0.003750,0.249972,0,0);}
.ma_c01432{transform:matrix(0.117825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117825,0.000000,0.000000,0.250000,0,0);}
.m11_c01432{transform:matrix(0.123845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123845,0.000000,0.000000,0.250000,0,0);}
.m1a_c01432{transform:matrix(0.134835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134835,0.000000,0.000000,0.250000,0,0);}
.mb_c01432{transform:matrix(0.143530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143530,0.000000,0.000000,0.250000,0,0);}
.m7_c01432{transform:matrix(0.145540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145540,0.000000,0.000000,0.250000,0,0);}
.m2_c01432{transform:matrix(0.146060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146060,0.000000,0.000000,0.250000,0,0);}
.m3_c01432{transform:matrix(0.146600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146600,0.000000,0.000000,0.250000,0,0);}
.mdc_c01432{transform:matrix(0.149113,0.002237,-0.003750,0.249972,0,0);-ms-transform:matrix(0.149113,0.002237,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.149113,0.002237,-0.003750,0.249972,0,0);}
.m4_c01432{transform:matrix(0.151165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151165,0.000000,0.000000,0.250000,0,0);}
.m6_c01432{transform:matrix(0.151355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151355,0.000000,0.000000,0.250000,0,0);}
.mce_c01432{transform:matrix(0.157717,0.002366,-0.003750,0.249972,0,0);-ms-transform:matrix(0.157717,0.002366,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.157717,0.002366,-0.003750,0.249972,0,0);}
.m10_c01432{transform:matrix(0.164330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164330,0.000000,0.000000,0.250000,0,0);}
.me_c01432{transform:matrix(0.164910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164910,0.000000,0.000000,0.250000,0,0);}
.mf8_c01432{transform:matrix(0.168898,0.002365,-0.003500,0.249976,0,0);-ms-transform:matrix(0.168898,0.002365,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.168898,0.002365,-0.003500,0.249976,0,0);}
.m8e_c01432{transform:matrix(0.170578,0.002729,-0.003999,0.249968,0,0);-ms-transform:matrix(0.170578,0.002729,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.170578,0.002729,-0.003999,0.249968,0,0);}
.mf6_c01432{transform:matrix(0.180537,0.002528,-0.003500,0.249976,0,0);-ms-transform:matrix(0.180537,0.002528,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.180537,0.002528,-0.003500,0.249976,0,0);}
.m8_c01432{transform:matrix(0.180965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180965,0.000000,0.000000,0.250000,0,0);}
.mdf_c01432{transform:matrix(0.181175,0.002718,-0.003750,0.249972,0,0);-ms-transform:matrix(0.181175,0.002718,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.181175,0.002718,-0.003750,0.249972,0,0);}
.mf5_c01432{transform:matrix(0.181267,0.002538,-0.003500,0.249976,0,0);-ms-transform:matrix(0.181267,0.002538,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.181267,0.002538,-0.003500,0.249976,0,0);}
.mcd_c01432{transform:matrix(0.181375,0.002721,-0.003750,0.249972,0,0);-ms-transform:matrix(0.181375,0.002721,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.181375,0.002721,-0.003750,0.249972,0,0);}
.mf4_c01432{transform:matrix(0.184797,0.002587,-0.003500,0.249976,0,0);-ms-transform:matrix(0.184797,0.002587,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.184797,0.002587,-0.003500,0.249976,0,0);}
.md4_c01432{transform:matrix(0.191193,0.002868,-0.003750,0.249972,0,0);-ms-transform:matrix(0.191193,0.002868,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.191193,0.002868,-0.003750,0.249972,0,0);}
.m5_c01432{transform:matrix(0.193130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193130,0.000000,0.000000,0.250000,0,0);}
.mf3_c01432{transform:matrix(0.193906,0.002715,-0.003500,0.249976,0,0);-ms-transform:matrix(0.193906,0.002715,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.193906,0.002715,-0.003500,0.249976,0,0);}
.m3b_c01432{transform:matrix(0.193960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193960,0.000000,0.000000,0.250000,0,0);}
.mb8_c01432{transform:matrix(0.194835,0.003117,-0.003999,0.249968,0,0);-ms-transform:matrix(0.194835,0.003117,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.194835,0.003117,-0.003999,0.249968,0,0);}
.mbf_c01432{transform:matrix(0.196488,0.002947,-0.003750,0.249972,0,0);-ms-transform:matrix(0.196488,0.002947,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.196488,0.002947,-0.003750,0.249972,0,0);}
.me2_c01432{transform:matrix(0.197528,0.002963,-0.003750,0.249972,0,0);-ms-transform:matrix(0.197528,0.002963,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.197528,0.002963,-0.003750,0.249972,0,0);}
.m89_c01432{transform:matrix(0.197885,0.003166,-0.003999,0.249968,0,0);-ms-transform:matrix(0.197885,0.003166,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.197885,0.003166,-0.003999,0.249968,0,0);}
.m87_c01432{transform:matrix(0.201469,0.003224,-0.003999,0.249968,0,0);-ms-transform:matrix(0.201469,0.003224,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.201469,0.003224,-0.003999,0.249968,0,0);}
.m88_c01432{transform:matrix(0.205099,0.003282,-0.003999,0.249968,0,0);-ms-transform:matrix(0.205099,0.003282,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.205099,0.003282,-0.003999,0.249968,0,0);}
.m1_c01432{transform:matrix(0.207140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207140,0.000000,0.000000,0.250000,0,0);}
.m4f_c01432{transform:matrix(0.210986,0.003165,-0.003750,0.249972,0,0);-ms-transform:matrix(0.210986,0.003165,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.210986,0.003165,-0.003750,0.249972,0,0);}
.mf_c01432{transform:matrix(0.211340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211340,0.000000,0.000000,0.250000,0,0);}
.mdd_c01432{transform:matrix(0.213431,0.003201,-0.003750,0.249972,0,0);-ms-transform:matrix(0.213431,0.003201,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.213431,0.003201,-0.003750,0.249972,0,0);}
.m8d_c01432{transform:matrix(0.215457,0.003447,-0.003999,0.249968,0,0);-ms-transform:matrix(0.215457,0.003447,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.215457,0.003447,-0.003999,0.249968,0,0);}
.m29_c01432{transform:matrix(0.215691,0.003235,-0.003750,0.249972,0,0);-ms-transform:matrix(0.215691,0.003235,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.215691,0.003235,-0.003750,0.249972,0,0);}
.m2f_c01432{transform:matrix(0.215731,0.003236,-0.003750,0.249972,0,0);-ms-transform:matrix(0.215731,0.003236,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.215731,0.003236,-0.003750,0.249972,0,0);}
.mcc_c01432{transform:matrix(0.215996,0.003240,-0.003750,0.249972,0,0);-ms-transform:matrix(0.215996,0.003240,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.215996,0.003240,-0.003750,0.249972,0,0);}
.m2e_c01432{transform:matrix(0.216311,0.003245,-0.003750,0.249972,0,0);-ms-transform:matrix(0.216311,0.003245,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.216311,0.003245,-0.003750,0.249972,0,0);}
.mbb_c01432{transform:matrix(0.217142,0.003474,-0.003999,0.249968,0,0);-ms-transform:matrix(0.217142,0.003474,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.217142,0.003474,-0.003999,0.249968,0,0);}
.maf_c01432{transform:matrix(0.217472,0.003480,-0.003999,0.249968,0,0);-ms-transform:matrix(0.217472,0.003480,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.217472,0.003480,-0.003999,0.249968,0,0);}
.mdb_c01432{transform:matrix(0.220165,0.003302,-0.003750,0.249972,0,0);-ms-transform:matrix(0.220165,0.003302,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.220165,0.003302,-0.003750,0.249972,0,0);}
.me7_c01432{transform:matrix(0.220805,0.003312,-0.003750,0.249972,0,0);-ms-transform:matrix(0.220805,0.003312,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.220805,0.003312,-0.003750,0.249972,0,0);}
.m86_c01432{transform:matrix(0.221567,0.003545,-0.003999,0.249968,0,0);-ms-transform:matrix(0.221567,0.003545,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.221567,0.003545,-0.003999,0.249968,0,0);}
.me0_c01432{transform:matrix(0.222100,0.003332,-0.003750,0.249972,0,0);-ms-transform:matrix(0.222100,0.003332,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.222100,0.003332,-0.003750,0.249972,0,0);}
.m2b_c01432{transform:matrix(0.223005,0.003345,-0.003750,0.249972,0,0);-ms-transform:matrix(0.223005,0.003345,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.223005,0.003345,-0.003750,0.249972,0,0);}
.m85_c01432{transform:matrix(0.223201,0.003571,-0.003999,0.249968,0,0);-ms-transform:matrix(0.223201,0.003571,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.223201,0.003571,-0.003999,0.249968,0,0);}
.mc1_c01432{transform:matrix(0.223945,0.003359,-0.003750,0.249972,0,0);-ms-transform:matrix(0.223945,0.003359,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.223945,0.003359,-0.003750,0.249972,0,0);}
.m5f_c01432{transform:matrix(0.229797,0.003907,-0.004249,0.249964,0,0);-ms-transform:matrix(0.229797,0.003907,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.229797,0.003907,-0.004249,0.249964,0,0);}
.m1e_c01432{transform:matrix(0.229804,0.003447,-0.003750,0.249972,0,0);-ms-transform:matrix(0.229804,0.003447,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.229804,0.003447,-0.003750,0.249972,0,0);}
.mb9_c01432{transform:matrix(0.230176,0.003683,-0.003999,0.249968,0,0);-ms-transform:matrix(0.230176,0.003683,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.230176,0.003683,-0.003999,0.249968,0,0);}
.mc6_c01432{transform:matrix(0.230869,0.003463,-0.003750,0.249972,0,0);-ms-transform:matrix(0.230869,0.003463,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.230869,0.003463,-0.003750,0.249972,0,0);}
.med_c01432{transform:matrix(0.231484,0.004630,-0.004999,0.249950,0,0);-ms-transform:matrix(0.231484,0.004630,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.231484,0.004630,-0.004999,0.249950,0,0);}
.mb7_c01432{transform:matrix(0.231950,0.003711,-0.003999,0.249968,0,0);-ms-transform:matrix(0.231950,0.003711,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.231950,0.003711,-0.003999,0.249968,0,0);}
.m74_c01432{transform:matrix(0.232030,0.003712,-0.003999,0.249968,0,0);-ms-transform:matrix(0.232030,0.003712,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.232030,0.003712,-0.003999,0.249968,0,0);}
.mb6_c01432{transform:matrix(0.232945,0.003727,-0.003999,0.249968,0,0);-ms-transform:matrix(0.232945,0.003727,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.232945,0.003727,-0.003999,0.249968,0,0);}
.m25_c01432{transform:matrix(0.232959,0.003494,-0.003750,0.249972,0,0);-ms-transform:matrix(0.232959,0.003494,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.232959,0.003494,-0.003750,0.249972,0,0);}
.me4_c01432{transform:matrix(0.233099,0.003496,-0.003750,0.249972,0,0);-ms-transform:matrix(0.233099,0.003496,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.233099,0.003496,-0.003750,0.249972,0,0);}
.m30_c01432{transform:matrix(0.233369,0.003501,-0.003750,0.249972,0,0);-ms-transform:matrix(0.233369,0.003501,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.233369,0.003501,-0.003750,0.249972,0,0);}
.mb5_c01432{transform:matrix(0.235285,0.003765,-0.003999,0.249968,0,0);-ms-transform:matrix(0.235285,0.003765,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.235285,0.003765,-0.003999,0.249968,0,0);}
.m8c_c01432{transform:matrix(0.235435,0.003767,-0.003999,0.249968,0,0);-ms-transform:matrix(0.235435,0.003767,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.235435,0.003767,-0.003999,0.249968,0,0);}
.m96_c01432{transform:matrix(0.235725,0.003772,-0.003999,0.249968,0,0);-ms-transform:matrix(0.235725,0.003772,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.235725,0.003772,-0.003999,0.249968,0,0);}
.md9_c01432{transform:matrix(0.235728,0.003536,-0.003750,0.249972,0,0);-ms-transform:matrix(0.235728,0.003536,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.235728,0.003536,-0.003750,0.249972,0,0);}
.m8a_c01432{transform:matrix(0.236035,0.003777,-0.003999,0.249968,0,0);-ms-transform:matrix(0.236035,0.003777,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.236035,0.003777,-0.003999,0.249968,0,0);}
.m1c_c01432{transform:matrix(0.236438,0.003547,-0.003750,0.249972,0,0);-ms-transform:matrix(0.236438,0.003547,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.236438,0.003547,-0.003750,0.249972,0,0);}
.mba_c01432{transform:matrix(0.236485,0.003784,-0.003999,0.249968,0,0);-ms-transform:matrix(0.236485,0.003784,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.236485,0.003784,-0.003999,0.249968,0,0);}
.m5d_c01432{transform:matrix(0.236486,0.004020,-0.004249,0.249964,0,0);-ms-transform:matrix(0.236486,0.004020,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.236486,0.004020,-0.004249,0.249964,0,0);}
.m83_c01432{transform:matrix(0.236911,0.005923,-0.006248,0.249922,0,0);-ms-transform:matrix(0.236911,0.005923,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.236911,0.005923,-0.006248,0.249922,0,0);}
.mcf_c01432{transform:matrix(0.236923,0.003554,-0.003750,0.249972,0,0);-ms-transform:matrix(0.236923,0.003554,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.236923,0.003554,-0.003750,0.249972,0,0);}
.mbc_c01432{transform:matrix(0.237585,0.003801,-0.003999,0.249968,0,0);-ms-transform:matrix(0.237585,0.003801,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.237585,0.003801,-0.003999,0.249968,0,0);}
.m54_c01432{transform:matrix(0.240338,0.003605,-0.003750,0.249972,0,0);-ms-transform:matrix(0.240338,0.003605,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.240338,0.003605,-0.003750,0.249972,0,0);}
.m1f_c01432{transform:matrix(0.240513,0.003608,-0.003750,0.249972,0,0);-ms-transform:matrix(0.240513,0.003608,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.240513,0.003608,-0.003750,0.249972,0,0);}
.mc7_c01432{transform:matrix(0.241273,0.003619,-0.003750,0.249972,0,0);-ms-transform:matrix(0.241273,0.003619,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.241273,0.003619,-0.003750,0.249972,0,0);}
.mde_c01432{transform:matrix(0.241668,0.003625,-0.003750,0.249972,0,0);-ms-transform:matrix(0.241668,0.003625,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.241668,0.003625,-0.003750,0.249972,0,0);}
.mbd_c01432{transform:matrix(0.242909,0.003887,-0.003999,0.249968,0,0);-ms-transform:matrix(0.242909,0.003887,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.242909,0.003887,-0.003999,0.249968,0,0);}
.m98_c01432{transform:matrix(0.243309,0.003893,-0.003999,0.249968,0,0);-ms-transform:matrix(0.243309,0.003893,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.243309,0.003893,-0.003999,0.249968,0,0);}
.me8_c01432{transform:matrix(0.245557,0.003683,-0.003750,0.249972,0,0);-ms-transform:matrix(0.245557,0.003683,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.245557,0.003683,-0.003750,0.249972,0,0);}
.md7_c01432{transform:matrix(0.246812,0.003702,-0.003750,0.249972,0,0);-ms-transform:matrix(0.246812,0.003702,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.246812,0.003702,-0.003750,0.249972,0,0);}
.m34_c01432{transform:matrix(0.247331,0.003463,-0.003500,0.249976,0,0);-ms-transform:matrix(0.247331,0.003463,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.247331,0.003463,-0.003500,0.249976,0,0);}
.m23_c01432{transform:matrix(0.247562,0.003713,-0.003750,0.249972,0,0);-ms-transform:matrix(0.247562,0.003713,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.247562,0.003713,-0.003750,0.249972,0,0);}
.mcb_c01432{transform:matrix(0.248267,0.003724,-0.003750,0.249972,0,0);-ms-transform:matrix(0.248267,0.003724,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.248267,0.003724,-0.003750,0.249972,0,0);}
.md1_c01432{transform:matrix(0.248537,0.003728,-0.003750,0.249972,0,0);-ms-transform:matrix(0.248537,0.003728,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.248537,0.003728,-0.003750,0.249972,0,0);}
.m61_c01432{transform:matrix(0.248624,0.004227,-0.004249,0.249964,0,0);-ms-transform:matrix(0.248624,0.004227,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.248624,0.004227,-0.004249,0.249964,0,0);}
.ma2_c01432{transform:matrix(0.248883,0.003982,-0.003999,0.249968,0,0);-ms-transform:matrix(0.248883,0.003982,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.248883,0.003982,-0.003999,0.249968,0,0);}
.me9_c01432{transform:matrix(0.249112,0.003737,-0.003750,0.249972,0,0);-ms-transform:matrix(0.249112,0.003737,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.249112,0.003737,-0.003750,0.249972,0,0);}
.m94_c01432{transform:matrix(0.249373,0.003990,-0.003999,0.249968,0,0);-ms-transform:matrix(0.249373,0.003990,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.249373,0.003990,-0.003999,0.249968,0,0);}
.m4c_c01432{transform:matrix(0.249600,0.002746,-0.002750,0.249985,0,0);-ms-transform:matrix(0.249600,0.002746,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.249600,0.002746,-0.002750,0.249985,0,0);}
.m2c_c01432{transform:matrix(0.249727,0.003746,-0.003750,0.249972,0,0);-ms-transform:matrix(0.249727,0.003746,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.249727,0.003746,-0.003750,0.249972,0,0);}
.m12_c01432{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.md3_c01432{transform:matrix(0.251027,0.003765,-0.003750,0.249972,0,0);-ms-transform:matrix(0.251027,0.003765,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.251027,0.003765,-0.003750,0.249972,0,0);}
.m28_c01432{transform:matrix(0.251532,0.003773,-0.003750,0.249972,0,0);-ms-transform:matrix(0.251532,0.003773,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.251532,0.003773,-0.003750,0.249972,0,0);}
.m6a_c01432{transform:matrix(0.251857,0.003778,-0.003750,0.249972,0,0);-ms-transform:matrix(0.251857,0.003778,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.251857,0.003778,-0.003750,0.249972,0,0);}
.m16_c01432{transform:matrix(0.253030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253030,0.000000,0.000000,0.250000,0,0);}
.m63_c01432{transform:matrix(0.253748,0.004314,-0.004249,0.249964,0,0);-ms-transform:matrix(0.253748,0.004314,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.253748,0.004314,-0.004249,0.249964,0,0);}
.m2a_c01432{transform:matrix(0.253906,0.003809,-0.003750,0.249972,0,0);-ms-transform:matrix(0.253906,0.003809,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.253906,0.003809,-0.003750,0.249972,0,0);}
.m0_c01432{transform:matrix(0.254050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254050,0.000000,0.000000,0.250000,0,0);}
.me3_c01432{transform:matrix(0.254306,0.003815,-0.003750,0.249972,0,0);-ms-transform:matrix(0.254306,0.003815,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.254306,0.003815,-0.003750,0.249972,0,0);}
.me5_c01432{transform:matrix(0.254821,0.003822,-0.003750,0.249972,0,0);-ms-transform:matrix(0.254821,0.003822,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.254821,0.003822,-0.003750,0.249972,0,0);}
.m5b_c01432{transform:matrix(0.255543,0.004344,-0.004249,0.249964,0,0);-ms-transform:matrix(0.255543,0.004344,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.255543,0.004344,-0.004249,0.249964,0,0);}
.me1_c01432{transform:matrix(0.255931,0.003839,-0.003750,0.249972,0,0);-ms-transform:matrix(0.255931,0.003839,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.255931,0.003839,-0.003750,0.249972,0,0);}
.m72_c01432{transform:matrix(0.256097,0.004098,-0.003999,0.249968,0,0);-ms-transform:matrix(0.256097,0.004098,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.256097,0.004098,-0.003999,0.249968,0,0);}
.mb1_c01432{transform:matrix(0.256577,0.004105,-0.003999,0.249968,0,0);-ms-transform:matrix(0.256577,0.004105,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.256577,0.004105,-0.003999,0.249968,0,0);}
.mb2_c01432{transform:matrix(0.256592,0.004105,-0.003999,0.249968,0,0);-ms-transform:matrix(0.256592,0.004105,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.256592,0.004105,-0.003999,0.249968,0,0);}
.mc0_c01432{transform:matrix(0.256651,0.003850,-0.003750,0.249972,0,0);-ms-transform:matrix(0.256651,0.003850,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.256651,0.003850,-0.003750,0.249972,0,0);}
.m76_c01432{transform:matrix(0.257027,0.004112,-0.003999,0.249968,0,0);-ms-transform:matrix(0.257027,0.004112,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.257027,0.004112,-0.003999,0.249968,0,0);}
.mb3_c01432{transform:matrix(0.257032,0.004113,-0.003999,0.249968,0,0);-ms-transform:matrix(0.257032,0.004113,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.257032,0.004113,-0.003999,0.249968,0,0);}
.m32_c01432{transform:matrix(0.257940,0.003611,-0.003500,0.249976,0,0);-ms-transform:matrix(0.257940,0.003611,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.257940,0.003611,-0.003500,0.249976,0,0);}
.me6_c01432{transform:matrix(0.257946,0.003869,-0.003750,0.249972,0,0);-ms-transform:matrix(0.257946,0.003869,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.257946,0.003869,-0.003750,0.249972,0,0);}
.m26_c01432{transform:matrix(0.258566,0.003878,-0.003750,0.249972,0,0);-ms-transform:matrix(0.258566,0.003878,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.258566,0.003878,-0.003750,0.249972,0,0);}
.m49_c01432{transform:matrix(0.258859,0.002847,-0.002750,0.249985,0,0);-ms-transform:matrix(0.258859,0.002847,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.258859,0.002847,-0.002750,0.249985,0,0);}
.m36_c01432{transform:matrix(0.258980,0.003626,-0.003500,0.249976,0,0);-ms-transform:matrix(0.258980,0.003626,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.258980,0.003626,-0.003500,0.249976,0,0);}
.mbe_c01432{transform:matrix(0.259491,0.003892,-0.003750,0.249972,0,0);-ms-transform:matrix(0.259491,0.003892,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.259491,0.003892,-0.003750,0.249972,0,0);}
.m2d_c01432{transform:matrix(0.259696,0.003895,-0.003750,0.249972,0,0);-ms-transform:matrix(0.259696,0.003895,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.259696,0.003895,-0.003750,0.249972,0,0);}
.mc3_c01432{transform:matrix(0.259926,0.003899,-0.003750,0.249972,0,0);-ms-transform:matrix(0.259926,0.003899,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.259926,0.003899,-0.003750,0.249972,0,0);}
.mee_c01432{transform:matrix(0.260673,0.005213,-0.004999,0.249950,0,0);-ms-transform:matrix(0.260673,0.005213,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.260673,0.005213,-0.004999,0.249950,0,0);}
.m73_c01432{transform:matrix(0.260712,0.004171,-0.003999,0.249968,0,0);-ms-transform:matrix(0.260712,0.004171,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.260712,0.004171,-0.003999,0.249968,0,0);}
.m91_c01432{transform:matrix(0.260842,0.004173,-0.003999,0.249968,0,0);-ms-transform:matrix(0.260842,0.004173,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.260842,0.004173,-0.003999,0.249968,0,0);}
.m19_c01432{transform:matrix(0.261175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261175,0.000000,0.000000,0.250000,0,0);}
.m51_c01432{transform:matrix(0.261691,0.003925,-0.003750,0.249972,0,0);-ms-transform:matrix(0.261691,0.003925,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.261691,0.003925,-0.003750,0.249972,0,0);}
.m65_c01432{transform:matrix(0.261861,0.003928,-0.003750,0.249972,0,0);-ms-transform:matrix(0.261861,0.003928,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.261861,0.003928,-0.003750,0.249972,0,0);}
.m93_c01432{transform:matrix(0.261911,0.004191,-0.003999,0.249968,0,0);-ms-transform:matrix(0.261911,0.004191,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.261911,0.004191,-0.003999,0.249968,0,0);}
.mad_c01432{transform:matrix(0.262191,0.004195,-0.003999,0.249968,0,0);-ms-transform:matrix(0.262191,0.004195,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.262191,0.004195,-0.003999,0.249968,0,0);}
.m5c_c01432{transform:matrix(0.262522,0.004463,-0.004249,0.249964,0,0);-ms-transform:matrix(0.262522,0.004463,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.262522,0.004463,-0.004249,0.249964,0,0);}
.mc9_c01432{transform:matrix(0.263270,0.003949,-0.003750,0.249972,0,0);-ms-transform:matrix(0.263270,0.003949,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.263270,0.003949,-0.003750,0.249972,0,0);}
.m4a_c01432{transform:matrix(0.263979,0.002904,-0.002750,0.249985,0,0);-ms-transform:matrix(0.263979,0.002904,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.263979,0.002904,-0.002750,0.249985,0,0);}
.md2_c01432{transform:matrix(0.264180,0.003963,-0.003750,0.249972,0,0);-ms-transform:matrix(0.264180,0.003963,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.264180,0.003963,-0.003750,0.249972,0,0);}
.m20_c01432{transform:matrix(0.264405,0.003966,-0.003750,0.249972,0,0);-ms-transform:matrix(0.264405,0.003966,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.264405,0.003966,-0.003750,0.249972,0,0);}
.mae_c01432{transform:matrix(0.264836,0.004237,-0.003999,0.249968,0,0);-ms-transform:matrix(0.264836,0.004237,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.264836,0.004237,-0.003999,0.249968,0,0);}
.mf2_c01432{transform:matrix(0.265917,0.005318,-0.004999,0.249950,0,0);-ms-transform:matrix(0.265917,0.005318,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.265917,0.005318,-0.004999,0.249950,0,0);}
.m50_c01432{transform:matrix(0.265980,0.003990,-0.003750,0.249972,0,0);-ms-transform:matrix(0.265980,0.003990,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.265980,0.003990,-0.003750,0.249972,0,0);}
.mca_c01432{transform:matrix(0.266260,0.003994,-0.003750,0.249972,0,0);-ms-transform:matrix(0.266260,0.003994,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.266260,0.003994,-0.003750,0.249972,0,0);}
.mb0_c01432{transform:matrix(0.266276,0.004260,-0.003999,0.249968,0,0);-ms-transform:matrix(0.266276,0.004260,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.266276,0.004260,-0.003999,0.249968,0,0);}
.m1b_c01432{transform:matrix(0.266710,0.004001,-0.003750,0.249972,0,0);-ms-transform:matrix(0.266710,0.004001,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.266710,0.004001,-0.003750,0.249972,0,0);}
.m67_c01432{transform:matrix(0.267745,0.004016,-0.003750,0.249972,0,0);-ms-transform:matrix(0.267745,0.004016,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.267745,0.004016,-0.003750,0.249972,0,0);}
.meb_c01432{transform:matrix(0.268216,0.005364,-0.004999,0.249950,0,0);-ms-transform:matrix(0.268216,0.005364,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.268216,0.005364,-0.004999,0.249950,0,0);}
.md8_c01432{transform:matrix(0.268265,0.004024,-0.003750,0.249972,0,0);-ms-transform:matrix(0.268265,0.004024,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.268265,0.004024,-0.003750,0.249972,0,0);}
.mef_c01432{transform:matrix(0.268626,0.005373,-0.004999,0.249950,0,0);-ms-transform:matrix(0.268626,0.005373,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.268626,0.005373,-0.004999,0.249950,0,0);}
.mc2_c01432{transform:matrix(0.269180,0.004038,-0.003750,0.249972,0,0);-ms-transform:matrix(0.269180,0.004038,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.269180,0.004038,-0.003750,0.249972,0,0);}
.mec_c01432{transform:matrix(0.269696,0.005394,-0.004999,0.249950,0,0);-ms-transform:matrix(0.269696,0.005394,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.269696,0.005394,-0.004999,0.249950,0,0);}
.mf1_c01432{transform:matrix(0.269746,0.005395,-0.004999,0.249950,0,0);-ms-transform:matrix(0.269746,0.005395,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.269746,0.005395,-0.004999,0.249950,0,0);}
.mc8_c01432{transform:matrix(0.269870,0.004048,-0.003750,0.249972,0,0);-ms-transform:matrix(0.269870,0.004048,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.269870,0.004048,-0.003750,0.249972,0,0);}
.m70_c01432{transform:matrix(0.269900,0.004318,-0.003999,0.249968,0,0);-ms-transform:matrix(0.269900,0.004318,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.269900,0.004318,-0.003999,0.249968,0,0);}
.m77_c01432{transform:matrix(0.270165,0.004323,-0.003999,0.249968,0,0);-ms-transform:matrix(0.270165,0.004323,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.270165,0.004323,-0.003999,0.249968,0,0);}
.m62_c01432{transform:matrix(0.270321,0.004595,-0.004249,0.249964,0,0);-ms-transform:matrix(0.270321,0.004595,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.270321,0.004595,-0.004249,0.249964,0,0);}
.m8f_c01432{transform:matrix(0.271130,0.004338,-0.003999,0.249968,0,0);-ms-transform:matrix(0.271130,0.004338,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.271130,0.004338,-0.003999,0.249968,0,0);}
.mac_c01432{transform:matrix(0.271160,0.004339,-0.003999,0.249968,0,0);-ms-transform:matrix(0.271160,0.004339,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.271160,0.004339,-0.003999,0.249968,0,0);}
.m4d_c01432{transform:matrix(0.272044,0.004081,-0.003750,0.249972,0,0);-ms-transform:matrix(0.272044,0.004081,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.272044,0.004081,-0.003750,0.249972,0,0);}
.m5e_c01432{transform:matrix(0.272256,0.004628,-0.004249,0.249964,0,0);-ms-transform:matrix(0.272256,0.004628,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.272256,0.004628,-0.004249,0.249964,0,0);}
.m6d_c01432{transform:matrix(0.272709,0.004091,-0.003750,0.249972,0,0);-ms-transform:matrix(0.272709,0.004091,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.272709,0.004091,-0.003750,0.249972,0,0);}
.m45_c01432{transform:matrix(0.272724,0.003000,-0.002750,0.249985,0,0);-ms-transform:matrix(0.272724,0.003000,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.272724,0.003000,-0.002750,0.249985,0,0);}
.m22_c01432{transform:matrix(0.272799,0.004092,-0.003750,0.249972,0,0);-ms-transform:matrix(0.272799,0.004092,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.272799,0.004092,-0.003750,0.249972,0,0);}
.m47_c01432{transform:matrix(0.272948,0.003002,-0.002750,0.249985,0,0);-ms-transform:matrix(0.272948,0.003002,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.272948,0.003002,-0.002750,0.249985,0,0);}
.m24_c01432{transform:matrix(0.273504,0.004103,-0.003750,0.249972,0,0);-ms-transform:matrix(0.273504,0.004103,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.273504,0.004103,-0.003750,0.249972,0,0);}
.mea_c01432{transform:matrix(0.273675,0.005474,-0.004999,0.249950,0,0);-ms-transform:matrix(0.273675,0.005474,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.273675,0.005474,-0.004999,0.249950,0,0);}
.m95_c01432{transform:matrix(0.273870,0.004382,-0.003999,0.249968,0,0);-ms-transform:matrix(0.273870,0.004382,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.273870,0.004382,-0.003999,0.249968,0,0);}
.md6_c01432{transform:matrix(0.274454,0.004117,-0.003750,0.249972,0,0);-ms-transform:matrix(0.274454,0.004117,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.274454,0.004117,-0.003750,0.249972,0,0);}
.m92_c01432{transform:matrix(0.274660,0.004395,-0.003999,0.249968,0,0);-ms-transform:matrix(0.274660,0.004395,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.274660,0.004395,-0.003999,0.249968,0,0);}
.mf0_c01432{transform:matrix(0.274910,0.005498,-0.004999,0.249950,0,0);-ms-transform:matrix(0.274910,0.005498,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.274910,0.005498,-0.004999,0.249950,0,0);}
.mc4_c01432{transform:matrix(0.275464,0.004132,-0.003750,0.249972,0,0);-ms-transform:matrix(0.275464,0.004132,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.275464,0.004132,-0.003750,0.249972,0,0);}
.m97_c01432{transform:matrix(0.275565,0.004409,-0.003999,0.249968,0,0);-ms-transform:matrix(0.275565,0.004409,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.275565,0.004409,-0.003999,0.249968,0,0);}
.m60_c01432{transform:matrix(0.276045,0.004693,-0.004249,0.249964,0,0);-ms-transform:matrix(0.276045,0.004693,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.276045,0.004693,-0.004249,0.249964,0,0);}
.mab_c01432{transform:matrix(0.276195,0.004419,-0.003999,0.249968,0,0);-ms-transform:matrix(0.276195,0.004419,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.276195,0.004419,-0.003999,0.249968,0,0);}
.m6f_c01432{transform:matrix(0.276715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276715,0.000000,0.000000,0.250000,0,0);}
.m59_c01432{transform:matrix(0.276715,0.004704,-0.004249,0.249964,0,0);-ms-transform:matrix(0.276715,0.004704,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.276715,0.004704,-0.004249,0.249964,0,0);}
.m1d_c01432{transform:matrix(0.277199,0.004158,-0.003750,0.249972,0,0);-ms-transform:matrix(0.277199,0.004158,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.277199,0.004158,-0.003750,0.249972,0,0);}
.m64_c01432{transform:matrix(0.277820,0.004723,-0.004249,0.249964,0,0);-ms-transform:matrix(0.277820,0.004723,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.277820,0.004723,-0.004249,0.249964,0,0);}
.ma5_c01432{transform:matrix(0.277844,0.004446,-0.003999,0.249968,0,0);-ms-transform:matrix(0.277844,0.004446,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.277844,0.004446,-0.003999,0.249968,0,0);}
.md5_c01432{transform:matrix(0.278114,0.004172,-0.003750,0.249972,0,0);-ms-transform:matrix(0.278114,0.004172,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.278114,0.004172,-0.003750,0.249972,0,0);}
.m84_c01432{transform:matrix(0.278568,0.006964,-0.006248,0.249922,0,0);-ms-transform:matrix(0.278568,0.006964,-0.006248,0.249922,0,0);-webkit-transform:matrix(0.278568,0.006964,-0.006248,0.249922,0,0);}
.m6e_c01432{transform:matrix(0.278784,0.004182,-0.003750,0.249972,0,0);-ms-transform:matrix(0.278784,0.004182,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.278784,0.004182,-0.003750,0.249972,0,0);}
.m52_c01432{transform:matrix(0.279264,0.004189,-0.003750,0.249972,0,0);-ms-transform:matrix(0.279264,0.004189,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.279264,0.004189,-0.003750,0.249972,0,0);}
.m90_c01432{transform:matrix(0.281424,0.004503,-0.003999,0.249968,0,0);-ms-transform:matrix(0.281424,0.004503,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.281424,0.004503,-0.003999,0.249968,0,0);}
.ma4_c01432{transform:matrix(0.282089,0.004513,-0.003999,0.249968,0,0);-ms-transform:matrix(0.282089,0.004513,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.282089,0.004513,-0.003999,0.249968,0,0);}
.m33_c01432{transform:matrix(0.282497,0.003955,-0.003500,0.249976,0,0);-ms-transform:matrix(0.282497,0.003955,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.282497,0.003955,-0.003500,0.249976,0,0);}
.m31_c01432{transform:matrix(0.282852,0.003960,-0.003500,0.249976,0,0);-ms-transform:matrix(0.282852,0.003960,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.282852,0.003960,-0.003500,0.249976,0,0);}
.m35_c01432{transform:matrix(0.283087,0.003963,-0.003500,0.249976,0,0);-ms-transform:matrix(0.283087,0.003963,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.283087,0.003963,-0.003500,0.249976,0,0);}
.m21_c01432{transform:matrix(0.283238,0.004249,-0.003750,0.249972,0,0);-ms-transform:matrix(0.283238,0.004249,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.283238,0.004249,-0.003750,0.249972,0,0);}
.m99_c01432{transform:matrix(0.283739,0.004540,-0.003999,0.249968,0,0);-ms-transform:matrix(0.283739,0.004540,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.283739,0.004540,-0.003999,0.249968,0,0);}
.m37_c01432{transform:matrix(0.283782,0.003973,-0.003500,0.249976,0,0);-ms-transform:matrix(0.283782,0.003973,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.283782,0.003973,-0.003500,0.249976,0,0);}
.m38_c01432{transform:matrix(0.284562,0.003984,-0.003500,0.249976,0,0);-ms-transform:matrix(0.284562,0.003984,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.284562,0.003984,-0.003500,0.249976,0,0);}
.m9a_c01432{transform:matrix(0.285793,0.004573,-0.003999,0.249968,0,0);-ms-transform:matrix(0.285793,0.004573,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.285793,0.004573,-0.003999,0.249968,0,0);}
.m46_c01432{transform:matrix(0.287058,0.003158,-0.002750,0.249985,0,0);-ms-transform:matrix(0.287058,0.003158,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.287058,0.003158,-0.002750,0.249985,0,0);}
.ma0_c01432{transform:matrix(0.289398,0.004630,-0.003999,0.249968,0,0);-ms-transform:matrix(0.289398,0.004630,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.289398,0.004630,-0.003999,0.249968,0,0);}
.m9e_c01432{transform:matrix(0.289443,0.004631,-0.003999,0.249968,0,0);-ms-transform:matrix(0.289443,0.004631,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.289443,0.004631,-0.003999,0.249968,0,0);}
.mc5_c01432{transform:matrix(0.290977,0.004365,-0.003750,0.249972,0,0);-ms-transform:matrix(0.290977,0.004365,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.290977,0.004365,-0.003750,0.249972,0,0);}
.m57_c01432{transform:matrix(0.291108,0.004949,-0.004249,0.249964,0,0);-ms-transform:matrix(0.291108,0.004949,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.291108,0.004949,-0.004249,0.249964,0,0);}
.m6c_c01432{transform:matrix(0.291527,0.004373,-0.003750,0.249972,0,0);-ms-transform:matrix(0.291527,0.004373,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.291527,0.004373,-0.003750,0.249972,0,0);}
.m4b_c01432{transform:matrix(0.291702,0.003209,-0.002750,0.249985,0,0);-ms-transform:matrix(0.291702,0.003209,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.291702,0.003209,-0.002750,0.249985,0,0);}
.m48_c01432{transform:matrix(0.291867,0.003211,-0.002750,0.249985,0,0);-ms-transform:matrix(0.291867,0.003211,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.291867,0.003211,-0.002750,0.249985,0,0);}
.m53_c01432{transform:matrix(0.292032,0.004380,-0.003750,0.249972,0,0);-ms-transform:matrix(0.292032,0.004380,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.292032,0.004380,-0.003750,0.249972,0,0);}
.m69_c01432{transform:matrix(0.292177,0.004383,-0.003750,0.249972,0,0);-ms-transform:matrix(0.292177,0.004383,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.292177,0.004383,-0.003750,0.249972,0,0);}
.m71_c01432{transform:matrix(0.292198,0.004675,-0.003999,0.249968,0,0);-ms-transform:matrix(0.292198,0.004675,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.292198,0.004675,-0.003999,0.249968,0,0);}
.m75_c01432{transform:matrix(0.294277,0.004708,-0.003999,0.249968,0,0);-ms-transform:matrix(0.294277,0.004708,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.294277,0.004708,-0.003999,0.249968,0,0);}
.m7f_c01432{transform:matrix(0.294947,0.004719,-0.003999,0.249968,0,0);-ms-transform:matrix(0.294947,0.004719,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.294947,0.004719,-0.003999,0.249968,0,0);}
.ma1_c01432{transform:matrix(0.296137,0.004738,-0.003999,0.249968,0,0);-ms-transform:matrix(0.296137,0.004738,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.296137,0.004738,-0.003999,0.249968,0,0);}
.m9b_c01432{transform:matrix(0.296432,0.004743,-0.003999,0.249968,0,0);-ms-transform:matrix(0.296432,0.004743,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.296432,0.004743,-0.003999,0.249968,0,0);}
.m58_c01432{transform:matrix(0.297522,0.005058,-0.004249,0.249964,0,0);-ms-transform:matrix(0.297522,0.005058,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.297522,0.005058,-0.004249,0.249964,0,0);}
.ma3_c01432{transform:matrix(0.297662,0.004763,-0.003999,0.249968,0,0);-ms-transform:matrix(0.297662,0.004763,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.297662,0.004763,-0.003999,0.249968,0,0);}
.m78_c01432{transform:matrix(0.298107,0.004770,-0.003999,0.249968,0,0);-ms-transform:matrix(0.298107,0.004770,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.298107,0.004770,-0.003999,0.249968,0,0);}
.m43_c01432{transform:matrix(0.300202,0.003302,-0.002750,0.249985,0,0);-ms-transform:matrix(0.300202,0.003302,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.300202,0.003302,-0.002750,0.249985,0,0);}
.m55_c01432{transform:matrix(0.300497,0.005108,-0.004249,0.249964,0,0);-ms-transform:matrix(0.300497,0.005108,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.300497,0.005108,-0.004249,0.249964,0,0);}
.m79_c01432{transform:matrix(0.300512,0.004808,-0.003999,0.249968,0,0);-ms-transform:matrix(0.300512,0.004808,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.300512,0.004808,-0.003999,0.249968,0,0);}
.m6b_c01432{transform:matrix(0.301031,0.004515,-0.003750,0.249972,0,0);-ms-transform:matrix(0.301031,0.004515,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.301031,0.004515,-0.003750,0.249972,0,0);}
.m9d_c01432{transform:matrix(0.301631,0.004826,-0.003999,0.249968,0,0);-ms-transform:matrix(0.301631,0.004826,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.301631,0.004826,-0.003999,0.249968,0,0);}
.m9f_c01432{transform:matrix(0.301971,0.004832,-0.003999,0.249968,0,0);-ms-transform:matrix(0.301971,0.004832,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.301971,0.004832,-0.003999,0.249968,0,0);}
.m68_c01432{transform:matrix(0.302396,0.004536,-0.003750,0.249972,0,0);-ms-transform:matrix(0.302396,0.004536,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.302396,0.004536,-0.003750,0.249972,0,0);}
.mb4_c01432{transform:matrix(0.303276,0.004852,-0.003999,0.249968,0,0);-ms-transform:matrix(0.303276,0.004852,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.303276,0.004852,-0.003999,0.249968,0,0);}
.mda_c01432{transform:matrix(0.303376,0.004551,-0.003750,0.249972,0,0);-ms-transform:matrix(0.303376,0.004551,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.303376,0.004551,-0.003750,0.249972,0,0);}
.m56_c01432{transform:matrix(0.303386,0.005158,-0.004249,0.249964,0,0);-ms-transform:matrix(0.303386,0.005158,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.303386,0.005158,-0.004249,0.249964,0,0);}
.m5a_c01432{transform:matrix(0.305416,0.005192,-0.004249,0.249964,0,0);-ms-transform:matrix(0.305416,0.005192,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.305416,0.005192,-0.004249,0.249964,0,0);}
.m44_c01432{transform:matrix(0.305517,0.003361,-0.002750,0.249985,0,0);-ms-transform:matrix(0.305517,0.003361,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.305517,0.003361,-0.002750,0.249985,0,0);}
.mc_c01432{transform:matrix(0.306530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306530,0.000000,0.000000,0.250000,0,0);}
.mf7_c01432{transform:matrix(0.306715,0.004294,-0.003500,0.249976,0,0);-ms-transform:matrix(0.306715,0.004294,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.306715,0.004294,-0.003500,0.249976,0,0);}
.m9c_c01432{transform:matrix(0.308471,0.004936,-0.003999,0.249968,0,0);-ms-transform:matrix(0.308471,0.004936,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.308471,0.004936,-0.003999,0.249968,0,0);}
.m14_c01432{transform:matrix(0.313300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313300,0.000000,0.000000,0.250000,0,0);}
.m66_c01432{transform:matrix(0.316329,0.004745,-0.003750,0.249972,0,0);-ms-transform:matrix(0.316329,0.004745,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.316329,0.004745,-0.003750,0.249972,0,0);}
.m8b_c01432{transform:matrix(0.321144,0.005138,-0.003999,0.249968,0,0);-ms-transform:matrix(0.321144,0.005138,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.321144,0.005138,-0.003999,0.249968,0,0);}
.m7c_c01432{transform:matrix(0.321714,0.005147,-0.003999,0.249968,0,0);-ms-transform:matrix(0.321714,0.005147,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.321714,0.005147,-0.003999,0.249968,0,0);}
.m80_c01432{transform:matrix(0.330913,0.005295,-0.003999,0.249968,0,0);-ms-transform:matrix(0.330913,0.005295,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.330913,0.005295,-0.003999,0.249968,0,0);}
.m41_c01432{transform:matrix(0.339079,0.003730,-0.002750,0.249985,0,0);-ms-transform:matrix(0.339079,0.003730,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.339079,0.003730,-0.002750,0.249985,0,0);}
.m39_c01432{transform:matrix(0.343565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343565,0.000000,0.000000,0.250000,0,0);}
.md_c01432{transform:matrix(0.346535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346535,0.000000,0.000000,0.250000,0,0);}
.m17_c01432{transform:matrix(0.348770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348770,0.000000,0.000000,0.250000,0,0);}
.m7d_c01432{transform:matrix(0.351610,0.005626,-0.003999,0.249968,0,0);-ms-transform:matrix(0.351610,0.005626,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.351610,0.005626,-0.003999,0.249968,0,0);}
.m7a_c01432{transform:matrix(0.355849,0.005694,-0.003999,0.249968,0,0);-ms-transform:matrix(0.355849,0.005694,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.355849,0.005694,-0.003999,0.249968,0,0);}
.m81_c01432{transform:matrix(0.360724,0.005772,-0.003999,0.249968,0,0);-ms-transform:matrix(0.360724,0.005772,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.360724,0.005772,-0.003999,0.249968,0,0);}
.m3a_c01432{transform:matrix(0.362420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362420,0.000000,0.000000,0.250000,0,0);}
.m7b_c01432{transform:matrix(0.369223,0.005908,-0.003999,0.249968,0,0);-ms-transform:matrix(0.369223,0.005908,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.369223,0.005908,-0.003999,0.249968,0,0);}
.ma8_c01432{transform:matrix(0.369303,0.005909,-0.003999,0.249968,0,0);-ms-transform:matrix(0.369303,0.005909,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.369303,0.005909,-0.003999,0.249968,0,0);}
.m7e_c01432{transform:matrix(0.369843,0.005917,-0.003999,0.249968,0,0);-ms-transform:matrix(0.369843,0.005917,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.369843,0.005917,-0.003999,0.249968,0,0);}
.m3c_c01432{transform:matrix(0.390856,0.004299,-0.002750,0.249985,0,0);-ms-transform:matrix(0.390856,0.004299,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.390856,0.004299,-0.002750,0.249985,0,0);}
.m82_c01432{transform:matrix(0.394270,0.006308,-0.003999,0.249968,0,0);-ms-transform:matrix(0.394270,0.006308,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.394270,0.006308,-0.003999,0.249968,0,0);}
.m3f_c01432{transform:matrix(0.396666,0.004363,-0.002750,0.249985,0,0);-ms-transform:matrix(0.396666,0.004363,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.396666,0.004363,-0.002750,0.249985,0,0);}
.m40_c01432{transform:matrix(0.399201,0.004391,-0.002750,0.249985,0,0);-ms-transform:matrix(0.399201,0.004391,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.399201,0.004391,-0.002750,0.249985,0,0);}
.m3e_c01432{transform:matrix(0.407625,0.004484,-0.002750,0.249985,0,0);-ms-transform:matrix(0.407625,0.004484,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.407625,0.004484,-0.002750,0.249985,0,0);}
.m15_c01432{transform:matrix(0.407705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407705,0.000000,0.000000,0.250000,0,0);}
.ma7_c01432{transform:matrix(0.416227,0.006660,-0.003999,0.249968,0,0);-ms-transform:matrix(0.416227,0.006660,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.416227,0.006660,-0.003999,0.249968,0,0);}
.m42_c01432{transform:matrix(0.418205,0.004600,-0.002750,0.249985,0,0);-ms-transform:matrix(0.418205,0.004600,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.418205,0.004600,-0.002750,0.249985,0,0);}
.maa_c01432{transform:matrix(0.420166,0.006723,-0.003999,0.249968,0,0);-ms-transform:matrix(0.420166,0.006723,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.420166,0.006723,-0.003999,0.249968,0,0);}
.ma6_c01432{transform:matrix(0.420546,0.006729,-0.003999,0.249968,0,0);-ms-transform:matrix(0.420546,0.006729,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.420546,0.006729,-0.003999,0.249968,0,0);}
.m13_c01432{transform:matrix(0.421105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421105,0.000000,0.000000,0.250000,0,0);}
.m3d_c01432{transform:matrix(0.425719,0.004683,-0.002750,0.249985,0,0);-ms-transform:matrix(0.425719,0.004683,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.425719,0.004683,-0.002750,0.249985,0,0);}
.ma9_c01432{transform:matrix(0.426530,0.006824,-0.003999,0.249968,0,0);-ms-transform:matrix(0.426530,0.006824,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.426530,0.006824,-0.003999,0.249968,0,0);}
.v0_c01432{vertical-align:0.000000px;}
.ls0_c01432{letter-spacing:0.000000px;}
.sc__c01432{text-shadow:none;}
.sc0_c01432{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__c01432{-webkit-text-stroke:0px transparent;}
.sc0_c01432{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01432{word-spacing:0.000000px;}
.fc0_c01432{color:transparent;}
.fs2_c01432{font-size:30.000000px;}
.fs5_c01432{font-size:36.000000px;}
.fsa_c01432{font-size:48.000000px;}
.fsb_c01432{font-size:48.002904px;}
.fs16_c01432{font-size:48.006144px;}
.fs12_c01432{font-size:54.006912px;}
.fs10_c01432{font-size:60.000000px;}
.fs3_c01432{font-size:66.000000px;}
.fsc_c01432{font-size:66.003993px;}
.fs9_c01432{font-size:66.006468px;}
.fsd_c01432{font-size:66.007425px;}
.fs11_c01432{font-size:66.008447px;}
.fse_c01432{font-size:66.009536px;}
.fs0_c01432{font-size:72.000000px;}
.fs7_c01432{font-size:72.008100px;}
.fs15_c01432{font-size:72.009215px;}
.fsf_c01432{font-size:72.010403px;}
.fs18_c01432{font-size:72.014399px;}
.fs13_c01432{font-size:72.022496px;}
.fs8_c01432{font-size:78.008775px;}
.fs14_c01432{font-size:84.010751px;}
.fs6_c01432{font-size:90.000000px;}
.fs19_c01432{font-size:102.009996px;}
.fs17_c01432{font-size:102.011474px;}
.fs1_c01432{font-size:108.000000px;}
.fs4_c01432{font-size:114.000000px;}
.y0_c01432{bottom:0.000000px;}
.yed_c01432{bottom:48.440550px;}
.yec_c01432{bottom:50.001018px;}
.yeb_c01432{bottom:50.465181px;}
.yea_c01432{bottom:50.915589px;}
.ye9_c01432{bottom:51.973947px;}
.ye8_c01432{bottom:52.923000px;}
.ye7_c01432{bottom:82.105680px;}
.ye6_c01432{bottom:83.623530px;}
.ye5_c01432{bottom:84.536160px;}
.ye4_c01432{bottom:86.086500px;}
.ye3_c01432{bottom:88.035840px;}
.ye2_c01432{bottom:88.471950px;}
.ye1_c01432{bottom:89.358660px;}
.ye0_c01432{bottom:90.692400px;}
.ydf_c01432{bottom:91.773270px;}
.yde_c01432{bottom:93.966000px;}
.ydd_c01432{bottom:123.132967px;}
.ydc_c01432{bottom:124.113270px;}
.ydb_c01432{bottom:124.611555px;}
.yda_c01432{bottom:126.247575px;}
.yd9_c01432{bottom:127.580475px;}
.yd8_c01432{bottom:128.070525px;}
.yd7_c01432{bottom:129.873000px;}
.yd_c01432{bottom:134.062500px;}
.yd6_c01432{bottom:158.736555px;}
.yd5_c01432{bottom:191.340600px;}
.yd4_c01432{bottom:191.914485px;}
.yd3_c01432{bottom:192.257993px;}
.yd2_c01432{bottom:193.976070px;}
.yd1_c01432{bottom:194.667900px;}
.yd0_c01432{bottom:195.207630px;}
.ycf_c01432{bottom:196.531920px;}
.yce_c01432{bottom:198.979155px;}
.ycd_c01432{bottom:225.484178px;}
.ycc_c01432{bottom:226.063028px;}
.ycb_c01432{bottom:227.448525px;}
.yca_c01432{bottom:228.410272px;}
.yc9_c01432{bottom:230.418683px;}
.yc8_c01432{bottom:232.381455px;}
.yc7_c01432{bottom:232.978605px;}
.yc6_c01432{bottom:233.922323px;}
.yc5_c01432{bottom:235.545157px;}
.yc4_c01432{bottom:236.511697px;}
.yc_c01432{bottom:240.705000px;}
.yc3_c01432{bottom:262.908653px;}
.yc2_c01432{bottom:268.241737px;}
.yc1_c01432{bottom:268.867665px;}
.yc0_c01432{bottom:270.201420px;}
.ybf_c01432{bottom:271.344555px;}
.ybe_c01432{bottom:299.523855px;}
.ybd_c01432{bottom:300.117638px;}
.ybc_c01432{bottom:300.390930px;}
.ybb_c01432{bottom:301.658745px;}
.yba_c01432{bottom:302.112420px;}
.yb9_c01432{bottom:302.533830px;}
.yb8_c01432{bottom:305.380718px;}
.yb7_c01432{bottom:306.819555px;}
.yb6_c01432{bottom:307.528132px;}
.yb_c01432{bottom:312.262500px;}
.yb5_c01432{bottom:337.673865px;}
.yb4_c01432{bottom:338.135520px;}
.yb3_c01432{bottom:339.796065px;}
.yb2_c01432{bottom:340.589415px;}
.yb1_c01432{bottom:342.093000px;}
.yb0_c01432{bottom:369.394728px;}
.yaf_c01432{bottom:369.896448px;}
.yae_c01432{bottom:370.694436px;}
.yad_c01432{bottom:372.335496px;}
.yac_c01432{bottom:373.505976px;}
.yab_c01432{bottom:374.146464px;}
.yaa_c01432{bottom:375.463704px;}
.ya9_c01432{bottom:376.959000px;}
.ya_c01432{bottom:377.458500px;}
.ya8_c01432{bottom:378.267600px;}
.ya7_c01432{bottom:406.404024px;}
.ya6_c01432{bottom:406.939632px;}
.ya5_c01432{bottom:407.812512px;}
.ya4_c01432{bottom:408.529392px;}
.ya3_c01432{bottom:409.397736px;}
.ya2_c01432{bottom:409.742592px;}
.ya1_c01432{bottom:410.780160px;}
.ya0_c01432{bottom:411.320232px;}
.y9f_c01432{bottom:412.720152px;}
.y9e_c01432{bottom:414.453000px;}
.y9_c01432{bottom:419.157000px;}
.y9d_c01432{bottom:444.932196px;}
.y9c_c01432{bottom:446.428416px;}
.y9b_c01432{bottom:446.913360px;}
.y9a_c01432{bottom:448.396080px;}
.y99_c01432{bottom:449.006268px;}
.y98_c01432{bottom:476.916624px;}
.y97_c01432{bottom:477.806784px;}
.y96_c01432{bottom:478.514616px;}
.y95_c01432{bottom:479.742240px;}
.y94_c01432{bottom:480.252144px;}
.y93_c01432{bottom:481.491960px;}
.y92_c01432{bottom:482.356128px;}
.y91_c01432{bottom:484.101744px;}
.y90_c01432{bottom:484.814520px;}
.y8f_c01432{bottom:486.543000px;}
.y8_c01432{bottom:491.517000px;}
.y8e_c01432{bottom:518.548008px;}
.y8d_c01432{bottom:519.145512px;}
.y8c_c01432{bottom:519.738768px;}
.y8b_c01432{bottom:521.094384px;}
.y8a_c01432{bottom:548.578944px;}
.y89_c01432{bottom:550.000536px;}
.y88_c01432{bottom:550.527720px;}
.y87_c01432{bottom:551.763504px;}
.y86_c01432{bottom:552.441648px;}
.y85_c01432{bottom:553.499904px;}
.y84_c01432{bottom:554.035656px;}
.y83_c01432{bottom:554.558304px;}
.y82_c01432{bottom:556.485192px;}
.y81_c01432{bottom:557.008536px;}
.y80_c01432{bottom:584.831760px;}
.y7f_c01432{bottom:585.696744px;}
.y7e_c01432{bottom:587.614992px;}
.y7d_c01432{bottom:587.984016px;}
.y7c_c01432{bottom:589.901568px;}
.y7b_c01432{bottom:590.440320px;}
.y7a_c01432{bottom:591.144528px;}
.y79_c01432{bottom:592.203216px;}
.y78_c01432{bottom:593.076096px;}
.y77_c01432{bottom:594.273000px;}
.y7_c01432{bottom:598.192500px;}
.y76_c01432{bottom:626.988562px;}
.y75_c01432{bottom:627.757500px;}
.y74_c01432{bottom:655.069476px;}
.y73_c01432{bottom:656.460828px;}
.y72_c01432{bottom:657.151308px;}
.y71_c01432{bottom:658.005660px;}
.y70_c01432{bottom:659.804820px;}
.y6f_c01432{bottom:660.491604px;}
.y6e_c01432{bottom:660.831804px;}
.y6d_c01432{bottom:662.440092px;}
.y6c_c01432{bottom:663.118668px;}
.y6b_c01432{bottom:690.549648px;}
.y6a_c01432{bottom:692.282304px;}
.y69_c01432{bottom:692.999616px;}
.y68_c01432{bottom:693.685584px;}
.y67_c01432{bottom:694.913064px;}
.y66_c01432{bottom:695.435160px;}
.y65_c01432{bottom:696.139224px;}
.y64_c01432{bottom:696.683760px;}
.y63_c01432{bottom:698.235888px;}
.y62_c01432{bottom:699.303000px;}
.y6_c01432{bottom:702.538500px;}
.y61_c01432{bottom:733.726500px;}
.y60_c01432{bottom:760.906650px;}
.y5f_c01432{bottom:761.400885px;}
.y5e_c01432{bottom:762.539047px;}
.y5d_c01432{bottom:763.879867px;}
.y5c_c01432{bottom:764.365867px;}
.y5b_c01432{bottom:765.491812px;}
.y5a_c01432{bottom:767.310172px;}
.y59_c01432{bottom:767.812687px;}
.y58_c01432{bottom:768.335137px;}
.y57_c01432{bottom:768.963000px;}
.y56_c01432{bottom:798.250067px;}
.y55_c01432{bottom:798.555296px;}
.y54_c01432{bottom:799.633211px;}
.y53_c01432{bottom:800.252649px;}
.y52_c01432{bottom:801.764726px;}
.y51_c01432{bottom:802.399269px;}
.y5_c01432{bottom:802.984500px;}
.y50_c01432{bottom:803.631788px;}
.y4f_c01432{bottom:804.244995px;}
.y4e_c01432{bottom:805.322324px;}
.y4d_c01432{bottom:806.218307px;}
.y4c_c01432{bottom:834.798564px;}
.y4b_c01432{bottom:836.097101px;}
.y4a_c01432{bottom:837.772451px;}
.y49_c01432{bottom:838.708836px;}
.y48_c01432{bottom:840.563247px;}
.y47_c01432{bottom:842.404500px;}
.y4_c01432{bottom:845.368500px;}
.y46_c01432{bottom:869.879100px;}
.y45_c01432{bottom:871.227727px;}
.y44_c01432{bottom:872.337427px;}
.y43_c01432{bottom:872.847727px;}
.y42_c01432{bottom:873.981548px;}
.y41_c01432{bottom:874.799805px;}
.y40_c01432{bottom:875.442292px;}
.y3f_c01432{bottom:876.963000px;}
.y3e_c01432{bottom:904.498456px;}
.y3d_c01432{bottom:905.503698px;}
.y3c_c01432{bottom:905.989147px;}
.y3b_c01432{bottom:906.628945px;}
.y3a_c01432{bottom:907.792446px;}
.y39_c01432{bottom:909.436068px;}
.y38_c01432{bottom:909.930490px;}
.y37_c01432{bottom:910.415808px;}
.y36_c01432{bottom:912.059743px;}
.y35_c01432{bottom:913.680139px;}
.y3_c01432{bottom:916.791000px;}
.y34_c01432{bottom:942.015003px;}
.y33_c01432{bottom:942.365347px;}
.y32_c01432{bottom:943.562027px;}
.y31_c01432{bottom:944.287086px;}
.y30_c01432{bottom:944.786013px;}
.y2f_c01432{bottom:945.995183px;}
.y2e_c01432{bottom:946.351500px;}
.y2d_c01432{bottom:983.365500px;}
.y2_c01432{bottom:986.976000px;}
.y2c_c01432{bottom:1012.824195px;}
.y2b_c01432{bottom:1013.738871px;}
.y2a_c01432{bottom:1014.328488px;}
.y29_c01432{bottom:1015.273446px;}
.y28_c01432{bottom:1015.734669px;}
.y27_c01432{bottom:1016.623032px;}
.y26_c01432{bottom:1017.246249px;}
.y25_c01432{bottom:1018.173000px;}
.y24_c01432{bottom:1046.492445px;}
.y23_c01432{bottom:1046.982495px;}
.y22_c01432{bottom:1047.480780px;}
.y21_c01432{bottom:1049.595195px;}
.y20_c01432{bottom:1051.429822px;}
.y1f_c01432{bottom:1052.085900px;}
.y1e_c01432{bottom:1053.892425px;}
.y1d_c01432{bottom:1054.382722px;}
.y1c_c01432{bottom:1055.703000px;}
.y1b_c01432{bottom:1086.224865px;}
.y1a_c01432{bottom:1087.417433px;}
.y19_c01432{bottom:1087.911488px;}
.y18_c01432{bottom:1089.235995px;}
.y17_c01432{bottom:1089.718125px;}
.y16_c01432{bottom:1119.628537px;}
.y15_c01432{bottom:1121.459610px;}
.y14_c01432{bottom:1122.103538px;}
.y1_c01432{bottom:1122.784500px;}
.y13_c01432{bottom:1123.395645px;}
.y12_c01432{bottom:1124.075978px;}
.y11_c01432{bottom:1125.396615px;}
.y10_c01432{bottom:1126.052828px;}
.yf_c01432{bottom:1127.523000px;}
.ye_c01432{bottom:1202.463000px;}
.h4_c01432{height:30.000000px;}
.h7_c01432{height:36.000000px;}
.hc_c01432{height:48.000000px;}
.hd_c01432{height:48.002904px;}
.h18_c01432{height:48.006144px;}
.h14_c01432{height:54.006912px;}
.h12_c01432{height:60.000000px;}
.h5_c01432{height:66.000000px;}
.he_c01432{height:66.003993px;}
.hb_c01432{height:66.006468px;}
.hf_c01432{height:66.007425px;}
.h13_c01432{height:66.008447px;}
.h10_c01432{height:66.009536px;}
.h2_c01432{height:72.000000px;}
.h9_c01432{height:72.008100px;}
.h17_c01432{height:72.009215px;}
.h11_c01432{height:72.010403px;}
.h1a_c01432{height:72.014399px;}
.h15_c01432{height:72.022496px;}
.ha_c01432{height:78.008775px;}
.h16_c01432{height:84.010751px;}
.h8_c01432{height:90.000000px;}
.h1b_c01432{height:102.009996px;}
.h19_c01432{height:102.011474px;}
.h3_c01432{height:108.000000px;}
.h6_c01432{height:114.000000px;}
.h1_c01432{height:1250.250000px;}
.h0_c01432{height:1250.370000px;}
.w0_c01432{width:912.000000px;}
.x0_c01432{left:0.000000px;}
.xe_c01432{left:75.600000px;}
.x7_c01432{left:82.620000px;}
.x1_c01432{left:88.830000px;}
.x9_c01432{left:93.690000px;}
.x11_c01432{left:94.770000px;}
.x5_c01432{left:96.660000px;}
.x3_c01432{left:98.010000px;}
.xb_c01432{left:125.280000px;}
.x12_c01432{left:129.330000px;}
.x10_c01432{left:130.680000px;}
.xf_c01432{left:131.760000px;}
.xd_c01432{left:133.380000px;}
.xc_c01432{left:134.460000px;}
.xa_c01432{left:137.700000px;}
.x8_c01432{left:139.320000px;}
.x6_c01432{left:140.940000px;}
.x4_c01432{left:142.020000px;}
.x2_c01432{left:144.990000px;}
.x4a_c01432{left:181.255134px;}
.x46_c01432{left:182.565000px;}
.x22_c01432{left:183.675000px;}
.x16_c01432{left:185.292000px;}
.x88_c01432{left:186.889500px;}
.x7d_c01432{left:187.969500px;}
.x5c_c01432{left:189.864000px;}
.xa9_c01432{left:191.772000px;}
.x31_c01432{left:230.040000px;}
.xa0_c01432{left:236.543715px;}
.x98_c01432{left:237.686347px;}
.x4b_c01432{left:245.257398px;}
.x94_c01432{left:249.555000px;}
.x74_c01432{left:253.313160px;}
.x6b_c01432{left:255.117000px;}
.x52_c01432{left:256.297500px;}
.x33_c01432{left:258.226500px;}
.x1e_c01432{left:261.167123px;}
.x6d_c01432{left:264.670500px;}
.x23_c01432{left:271.693500px;}
.x5b_c01432{left:278.100000px;}
.xa7_c01432{left:280.838812px;}
.x17_c01432{left:283.303500px;}
.x6c_c01432{left:285.874500px;}
.x34_c01432{left:290.619000px;}
.x3a_c01432{left:291.694886px;}
.x1f_c01432{left:293.309123px;}
.x32_c01432{left:294.570000px;}
.x7e_c01432{left:295.999500px;}
.x53_c01432{left:298.155000px;}
.xaf_c01432{left:300.796500px;}
.x24_c01432{left:304.380000px;}
.xaa_c01432{left:311.937000px;}
.x6e_c01432{left:319.225500px;}
.x4c_c01432{left:322.221825px;}
.x18_c01432{left:327.051000px;}
.x7b_c01432{left:328.909344px;}
.x54_c01432{left:332.985000px;}
.x7f_c01432{left:340.548000px;}
.xab_c01432{left:344.607000px;}
.x99_c01432{left:348.412177px;}
.x95_c01432{left:349.794000px;}
.x5d_c01432{left:353.566500px;}
.xb0_c01432{left:354.840000px;}
.x3f_c01432{left:359.028000px;}
.x7c_c01432{left:361.861788px;}
.x4d_c01432{left:365.971544px;}
.x2b_c01432{left:371.080500px;}
.x13_c01432{left:373.410000px;}
.xa1_c01432{left:379.140802px;}
.x20_c01432{left:381.609623px;}
.x89_c01432{left:382.687500px;}
.x6f_c01432{left:385.393500px;}
.x5e_c01432{left:387.600000px;}
.x86_c01432{left:393.240624px;}
.x14_c01432{left:395.820000px;}
.x65_c01432{left:398.407992px;}
.x35_c01432{left:400.543500px;}
.x40_c01432{left:401.860500px;}
.x75_c01432{left:406.452660px;}
.xa2_c01432{left:412.349317px;}
.x19_c01432{left:415.093500px;}
.x8a_c01432{left:416.442000px;}
.x66_c01432{left:419.670492px;}
.xb1_c01432{left:421.527000px;}
.x25_c01432{left:424.815000px;}
.x70_c01432{left:429.406500px;}
.x5f_c01432{left:431.604000px;}
.xac_c01432{left:433.467000px;}
.x2c_c01432{left:434.535000px;}
.x15_c01432{left:439.290000px;}
.x36_c01432{left:445.900500px;}
.x80_c01432{left:449.649000px;}
.x4e_c01432{left:454.006531px;}
.x47_c01432{left:455.038500px;}
.x41_c01432{left:456.411000px;}
.x8f_c01432{left:458.847864px;}
.x1a_c01432{left:460.449000px;}
.x67_c01432{left:462.594492px;}
.x60_c01432{left:464.235000px;}
.xb2_c01432{left:465.862500px;}
.x2d_c01432{left:467.479500px;}
.x26_c01432{left:468.553500px;}
.x76_c01432{left:472.602660px;}
.x8b_c01432{left:481.290000px;}
.x55_c01432{left:487.710000px;}
.x21_c01432{left:494.051123px;}
.x4f_c01432{left:499.364352px;}
.x90_c01432{left:501.504036px;}
.x81_c01432{left:503.659500px;}
.x37_c01432{left:511.815000px;}
.x96_c01432{left:513.387000px;}
.xa3_c01432{left:521.395912px;}
.x87_c01432{left:525.409260px;}
.x42_c01432{left:531.999000px;}
.x2e_c01432{left:534.976500px;}
.x77_c01432{left:538.743660px;}
.x61_c01432{left:540.952500px;}
.xad_c01432{left:542.535000px;}
.x97_c01432{left:544.164000px;}
.x1b_c01432{left:546.589500px;}
.x48_c01432{left:553.588500px;}
.x8c_c01432{left:557.115000px;}
.x56_c01432{left:562.773000px;}
.xb7_c01432{left:564.549000px;}
.x43_c01432{left:566.019000px;}
.x9a_c01432{left:567.411247px;}
.x68_c01432{left:575.041992px;}
.x2f_c01432{left:577.092000px;}
.x91_c01432{left:579.535284px;}
.x78_c01432{left:581.127660px;}
.x62_c01432{left:583.825500px;}
.xb3_c01432{left:585.135000px;}
.x1c_c01432{left:589.518000px;}
.x27_c01432{left:590.862000px;}
.x57_c01432{left:595.173000px;}
.x9b_c01432{left:599.806215px;}
.x8d_c01432{left:601.920000px;}
.x71_c01432{left:605.989500px;}
.x50_c01432{left:607.374360px;}
.x82_c01432{left:613.017000px;}
.x38_c01432{left:620.604000px;}
.x63_c01432{left:628.657500px;}
.x49_c01432{left:629.973000px;}
.xa4_c01432{left:632.984895px;}
.x9c_c01432{left:634.652250px;}
.x44_c01432{left:639.999000px;}
.xae_c01432{left:641.107500px;}
.x30_c01432{left:642.426000px;}
.x39_c01432{left:652.453500px;}
.x3b_c01432{left:653.796963px;}
.x8e_c01432{left:656.475000px;}
.x79_c01432{left:658.364160px;}
.xb4_c01432{left:662.652000px;}
.x69_c01432{left:671.593992px;}
.xa8_c01432{left:676.204455px;}
.x58_c01432{left:684.561000px;}
.xa5_c01432{left:686.398987px;}
.x83_c01432{left:689.743500px;}
.x7a_c01432{left:691.313160px;}
.x3c_c01432{left:696.413082px;}
.xb5_c01432{left:708.283500px;}
.x1d_c01432{left:711.589500px;}
.x72_c01432{left:725.880000px;}
.x3d_c01432{left:728.816163px;}
.x45_c01432{left:729.907500px;}
.x28_c01432{left:731.823000px;}
.x84_c01432{left:733.983000px;}
.x64_c01432{left:736.948500px;}
.x92_c01432{left:742.103376px;}
.x51_c01432{left:750.504179px;}
.x9d_c01432{left:753.196305px;}
.x6a_c01432{left:758.553492px;}
.x59_c01432{left:760.438500px;}
.xa6_c01432{left:763.362022px;}
.x29_c01432{left:765.042000px;}
.x93_c01432{left:775.523904px;}
.x73_c01432{left:779.941500px;}
.xb6_c01432{left:784.176000px;}
.x85_c01432{left:789.618000px;}
.x5a_c01432{left:793.387500px;}
.x3e_c01432{left:795.789710px;}
.x2a_c01432{left:797.712000px;}
.x9e_c01432{left:798.883177px;}
.x9f_c01432{left:812.750693px;}
@media print{
.v0_c01432{vertical-align:0.000000pt;}
.ls0_c01432{letter-spacing:0.000000pt;}
.ws0_c01432{word-spacing:0.000000pt;}
.fs2_c01432{font-size:26.666667pt;}
.fs5_c01432{font-size:32.000000pt;}
.fsa_c01432{font-size:42.666667pt;}
.fsb_c01432{font-size:42.669248pt;}
.fs16_c01432{font-size:42.672128pt;}
.fs12_c01432{font-size:48.006144pt;}
.fs10_c01432{font-size:53.333333pt;}
.fs3_c01432{font-size:58.666667pt;}
.fsc_c01432{font-size:58.670216pt;}
.fs9_c01432{font-size:58.672416pt;}
.fsd_c01432{font-size:58.673266pt;}
.fs11_c01432{font-size:58.674176pt;}
.fse_c01432{font-size:58.675143pt;}
.fs0_c01432{font-size:64.000000pt;}
.fs7_c01432{font-size:64.007200pt;}
.fs15_c01432{font-size:64.008191pt;}
.fsf_c01432{font-size:64.009247pt;}
.fs18_c01432{font-size:64.012799pt;}
.fs13_c01432{font-size:64.019997pt;}
.fs8_c01432{font-size:69.341133pt;}
.fs14_c01432{font-size:74.676223pt;}
.fs6_c01432{font-size:80.000000pt;}
.fs19_c01432{font-size:90.675552pt;}
.fs17_c01432{font-size:90.676866pt;}
.fs1_c01432{font-size:96.000000pt;}
.fs4_c01432{font-size:101.333333pt;}
.y0_c01432{bottom:0.000000pt;}
.yed_c01432{bottom:43.058267pt;}
.yec_c01432{bottom:44.445349pt;}
.yeb_c01432{bottom:44.857939pt;}
.yea_c01432{bottom:45.258301pt;}
.ye9_c01432{bottom:46.199064pt;}
.ye8_c01432{bottom:47.042667pt;}
.ye7_c01432{bottom:72.982827pt;}
.ye6_c01432{bottom:74.332027pt;}
.ye5_c01432{bottom:75.143253pt;}
.ye4_c01432{bottom:76.521333pt;}
.ye3_c01432{bottom:78.254080pt;}
.ye2_c01432{bottom:78.641733pt;}
.ye1_c01432{bottom:79.429920pt;}
.ye0_c01432{bottom:80.615467pt;}
.ydf_c01432{bottom:81.576240pt;}
.yde_c01432{bottom:83.525333pt;}
.ydd_c01432{bottom:109.451527pt;}
.ydc_c01432{bottom:110.322907pt;}
.ydb_c01432{bottom:110.765827pt;}
.yda_c01432{bottom:112.220067pt;}
.yd9_c01432{bottom:113.404867pt;}
.yd8_c01432{bottom:113.840467pt;}
.yd7_c01432{bottom:115.442667pt;}
.yd_c01432{bottom:119.166667pt;}
.yd6_c01432{bottom:141.099160pt;}
.yd5_c01432{bottom:170.080533pt;}
.yd4_c01432{bottom:170.590653pt;}
.yd3_c01432{bottom:170.895993pt;}
.yd2_c01432{bottom:172.423173pt;}
.yd1_c01432{bottom:173.038133pt;}
.yd0_c01432{bottom:173.517893pt;}
.ycf_c01432{bottom:174.695040pt;}
.yce_c01432{bottom:176.870360pt;}
.ycd_c01432{bottom:200.430380pt;}
.ycc_c01432{bottom:200.944913pt;}
.ycb_c01432{bottom:202.176467pt;}
.yca_c01432{bottom:203.031353pt;}
.yc9_c01432{bottom:204.816607pt;}
.yc8_c01432{bottom:206.561293pt;}
.yc7_c01432{bottom:207.092093pt;}
.yc6_c01432{bottom:207.930953pt;}
.yc5_c01432{bottom:209.373473pt;}
.yc4_c01432{bottom:210.232620pt;}
.yc_c01432{bottom:213.960000pt;}
.yc3_c01432{bottom:233.696580pt;}
.yc2_c01432{bottom:238.437100pt;}
.yc1_c01432{bottom:238.993480pt;}
.yc0_c01432{bottom:240.179040pt;}
.ybf_c01432{bottom:241.195160pt;}
.ybe_c01432{bottom:266.243427pt;}
.ybd_c01432{bottom:266.771233pt;}
.ybc_c01432{bottom:267.014160pt;}
.ybb_c01432{bottom:268.141107pt;}
.yba_c01432{bottom:268.544373pt;}
.yb9_c01432{bottom:268.918960pt;}
.yb8_c01432{bottom:271.449527pt;}
.yb7_c01432{bottom:272.728493pt;}
.yb6_c01432{bottom:273.358340pt;}
.yb_c01432{bottom:277.566667pt;}
.yb5_c01432{bottom:300.154547pt;}
.yb4_c01432{bottom:300.564907pt;}
.yb3_c01432{bottom:302.040947pt;}
.yb2_c01432{bottom:302.746147pt;}
.yb1_c01432{bottom:304.082667pt;}
.yb0_c01432{bottom:328.350869pt;}
.yaf_c01432{bottom:328.796843pt;}
.yae_c01432{bottom:329.506165pt;}
.yad_c01432{bottom:330.964885pt;}
.yac_c01432{bottom:332.005312pt;}
.yab_c01432{bottom:332.574635pt;}
.yaa_c01432{bottom:333.745515pt;}
.ya9_c01432{bottom:335.074667pt;}
.ya_c01432{bottom:335.518667pt;}
.ya8_c01432{bottom:336.237867pt;}
.ya7_c01432{bottom:361.248021pt;}
.ya6_c01432{bottom:361.724117pt;}
.ya5_c01432{bottom:362.500011pt;}
.ya4_c01432{bottom:363.137237pt;}
.ya3_c01432{bottom:363.909099pt;}
.ya2_c01432{bottom:364.215637pt;}
.ya1_c01432{bottom:365.137920pt;}
.ya0_c01432{bottom:365.617984pt;}
.y9f_c01432{bottom:366.862357pt;}
.y9e_c01432{bottom:368.402667pt;}
.y9_c01432{bottom:372.584000pt;}
.y9d_c01432{bottom:395.495285pt;}
.y9c_c01432{bottom:396.825259pt;}
.y9b_c01432{bottom:397.256320pt;}
.y9a_c01432{bottom:398.574293pt;}
.y99_c01432{bottom:399.116683pt;}
.y98_c01432{bottom:423.925888pt;}
.y97_c01432{bottom:424.717141pt;}
.y96_c01432{bottom:425.346325pt;}
.y95_c01432{bottom:426.437547pt;}
.y94_c01432{bottom:426.890795pt;}
.y93_c01432{bottom:427.992853pt;}
.y92_c01432{bottom:428.761003pt;}
.y91_c01432{bottom:430.312661pt;}
.y90_c01432{bottom:430.946240pt;}
.y8f_c01432{bottom:432.482667pt;}
.y8_c01432{bottom:436.904000pt;}
.y8e_c01432{bottom:460.931563pt;}
.y8d_c01432{bottom:461.462677pt;}
.y8c_c01432{bottom:461.990016pt;}
.y8b_c01432{bottom:463.195008pt;}
.y8a_c01432{bottom:487.625728pt;}
.y89_c01432{bottom:488.889365pt;}
.y88_c01432{bottom:489.357973pt;}
.y87_c01432{bottom:490.456448pt;}
.y86_c01432{bottom:491.059243pt;}
.y85_c01432{bottom:491.999915pt;}
.y84_c01432{bottom:492.476139pt;}
.y83_c01432{bottom:492.940715pt;}
.y82_c01432{bottom:494.653504pt;}
.y81_c01432{bottom:495.118699pt;}
.y80_c01432{bottom:519.850453pt;}
.y7f_c01432{bottom:520.619328pt;}
.y7e_c01432{bottom:522.324437pt;}
.y7d_c01432{bottom:522.652459pt;}
.y7c_c01432{bottom:524.356949pt;}
.y7b_c01432{bottom:524.835840pt;}
.y7a_c01432{bottom:525.461803pt;}
.y79_c01432{bottom:526.402859pt;}
.y78_c01432{bottom:527.178752pt;}
.y77_c01432{bottom:528.242667pt;}
.y7_c01432{bottom:531.726667pt;}
.y76_c01432{bottom:557.323167pt;}
.y75_c01432{bottom:558.006667pt;}
.y74_c01432{bottom:582.283979pt;}
.y73_c01432{bottom:583.520736pt;}
.y72_c01432{bottom:584.134496pt;}
.y71_c01432{bottom:584.893920pt;}
.y70_c01432{bottom:586.493173pt;}
.y6f_c01432{bottom:587.103648pt;}
.y6e_c01432{bottom:587.406048pt;}
.y6d_c01432{bottom:588.835637pt;}
.y6c_c01432{bottom:589.438816pt;}
.y6b_c01432{bottom:613.821909pt;}
.y6a_c01432{bottom:615.362048pt;}
.y69_c01432{bottom:615.999659pt;}
.y68_c01432{bottom:616.609408pt;}
.y67_c01432{bottom:617.700501pt;}
.y66_c01432{bottom:618.164587pt;}
.y65_c01432{bottom:618.790421pt;}
.y64_c01432{bottom:619.274453pt;}
.y63_c01432{bottom:620.654123pt;}
.y62_c01432{bottom:621.602667pt;}
.y6_c01432{bottom:624.478667pt;}
.y61_c01432{bottom:652.201333pt;}
.y60_c01432{bottom:676.361467pt;}
.y5f_c01432{bottom:676.800787pt;}
.y5e_c01432{bottom:677.812487pt;}
.y5d_c01432{bottom:679.004327pt;}
.y5c_c01432{bottom:679.436327pt;}
.y5b_c01432{bottom:680.437167pt;}
.y5a_c01432{bottom:682.053487pt;}
.y59_c01432{bottom:682.500167pt;}
.y58_c01432{bottom:682.964567pt;}
.y57_c01432{bottom:683.522667pt;}
.y56_c01432{bottom:709.555615pt;}
.y55_c01432{bottom:709.826929pt;}
.y54_c01432{bottom:710.785076pt;}
.y53_c01432{bottom:711.335688pt;}
.y52_c01432{bottom:712.679756pt;}
.y51_c01432{bottom:713.243795pt;}
.y5_c01432{bottom:713.764000pt;}
.y50_c01432{bottom:714.339367pt;}
.y4f_c01432{bottom:714.884440pt;}
.y4e_c01432{bottom:715.842065pt;}
.y4d_c01432{bottom:716.638495pt;}
.y4c_c01432{bottom:742.043168pt;}
.y4b_c01432{bottom:743.197423pt;}
.y4a_c01432{bottom:744.686623pt;}
.y49_c01432{bottom:745.518965pt;}
.y48_c01432{bottom:747.167331pt;}
.y47_c01432{bottom:748.804000pt;}
.y4_c01432{bottom:751.438667pt;}
.y46_c01432{bottom:773.225867pt;}
.y45_c01432{bottom:774.424647pt;}
.y44_c01432{bottom:775.411047pt;}
.y43_c01432{bottom:775.864647pt;}
.y42_c01432{bottom:776.872487pt;}
.y41_c01432{bottom:777.599827pt;}
.y40_c01432{bottom:778.170927pt;}
.y3f_c01432{bottom:779.522667pt;}
.y3e_c01432{bottom:803.998628pt;}
.y3d_c01432{bottom:804.892176pt;}
.y3c_c01432{bottom:805.323687pt;}
.y3b_c01432{bottom:805.892396pt;}
.y3a_c01432{bottom:806.926619pt;}
.y39_c01432{bottom:808.387616pt;}
.y38_c01432{bottom:808.827103pt;}
.y37_c01432{bottom:809.258496pt;}
.y36_c01432{bottom:810.719772pt;}
.y35_c01432{bottom:812.160124pt;}
.y3_c01432{bottom:814.925333pt;}
.y34_c01432{bottom:837.346669pt;}
.y33_c01432{bottom:837.658087pt;}
.y32_c01432{bottom:838.721801pt;}
.y31_c01432{bottom:839.366299pt;}
.y30_c01432{bottom:839.809789pt;}
.y2f_c01432{bottom:840.884607pt;}
.y2e_c01432{bottom:841.201333pt;}
.y2d_c01432{bottom:874.102667pt;}
.y2_c01432{bottom:877.312000pt;}
.y2c_c01432{bottom:900.288173pt;}
.y2b_c01432{bottom:901.101219pt;}
.y2a_c01432{bottom:901.625323pt;}
.y29_c01432{bottom:902.465285pt;}
.y28_c01432{bottom:902.875261pt;}
.y27_c01432{bottom:903.664917pt;}
.y26_c01432{bottom:904.218888pt;}
.y25_c01432{bottom:905.042667pt;}
.y24_c01432{bottom:930.215507pt;}
.y23_c01432{bottom:930.651107pt;}
.y22_c01432{bottom:931.094027pt;}
.y21_c01432{bottom:932.973507pt;}
.y20_c01432{bottom:934.604287pt;}
.y1f_c01432{bottom:935.187467pt;}
.y1e_c01432{bottom:936.793267pt;}
.y1d_c01432{bottom:937.229087pt;}
.y1c_c01432{bottom:938.402667pt;}
.y1b_c01432{bottom:965.533213pt;}
.y1a_c01432{bottom:966.593273pt;}
.y19_c01432{bottom:967.032433pt;}
.y18_c01432{bottom:968.209773pt;}
.y17_c01432{bottom:968.638333pt;}
.y16_c01432{bottom:995.225367pt;}
.y15_c01432{bottom:996.852987pt;}
.y14_c01432{bottom:997.425367pt;}
.y1_c01432{bottom:998.030667pt;}
.y13_c01432{bottom:998.573907pt;}
.y12_c01432{bottom:999.178647pt;}
.y11_c01432{bottom:1000.352547pt;}
.y10_c01432{bottom:1000.935847pt;}
.yf_c01432{bottom:1002.242667pt;}
.ye_c01432{bottom:1068.856000pt;}
.h4_c01432{height:26.666667pt;}
.h7_c01432{height:32.000000pt;}
.hc_c01432{height:42.666667pt;}
.hd_c01432{height:42.669248pt;}
.h18_c01432{height:42.672128pt;}
.h14_c01432{height:48.006144pt;}
.h12_c01432{height:53.333333pt;}
.h5_c01432{height:58.666667pt;}
.he_c01432{height:58.670216pt;}
.hb_c01432{height:58.672416pt;}
.hf_c01432{height:58.673266pt;}
.h13_c01432{height:58.674176pt;}
.h10_c01432{height:58.675143pt;}
.h2_c01432{height:64.000000pt;}
.h9_c01432{height:64.007200pt;}
.h17_c01432{height:64.008191pt;}
.h11_c01432{height:64.009247pt;}
.h1a_c01432{height:64.012799pt;}
.h15_c01432{height:64.019997pt;}
.ha_c01432{height:69.341133pt;}
.h16_c01432{height:74.676223pt;}
.h8_c01432{height:80.000000pt;}
.h1b_c01432{height:90.675552pt;}
.h19_c01432{height:90.676866pt;}
.h3_c01432{height:96.000000pt;}
.h6_c01432{height:101.333333pt;}
.h1_c01432{height:1111.333333pt;}
.h0_c01432{height:1111.440000pt;}
.w0_c01432{width:810.666667pt;}
.x0_c01432{left:0.000000pt;}
.xe_c01432{left:67.200000pt;}
.x7_c01432{left:73.440000pt;}
.x1_c01432{left:78.960000pt;}
.x9_c01432{left:83.280000pt;}
.x11_c01432{left:84.240000pt;}
.x5_c01432{left:85.920000pt;}
.x3_c01432{left:87.120000pt;}
.xb_c01432{left:111.360000pt;}
.x12_c01432{left:114.960000pt;}
.x10_c01432{left:116.160000pt;}
.xf_c01432{left:117.120000pt;}
.xd_c01432{left:118.560000pt;}
.xc_c01432{left:119.520000pt;}
.xa_c01432{left:122.400000pt;}
.x8_c01432{left:123.840000pt;}
.x6_c01432{left:125.280000pt;}
.x4_c01432{left:126.240000pt;}
.x2_c01432{left:128.880000pt;}
.x4a_c01432{left:161.115675pt;}
.x46_c01432{left:162.280000pt;}
.x22_c01432{left:163.266667pt;}
.x16_c01432{left:164.704000pt;}
.x88_c01432{left:166.124000pt;}
.x7d_c01432{left:167.084000pt;}
.x5c_c01432{left:168.768000pt;}
.xa9_c01432{left:170.464000pt;}
.x31_c01432{left:204.480000pt;}
.xa0_c01432{left:210.261080pt;}
.x98_c01432{left:211.276753pt;}
.x4b_c01432{left:218.006576pt;}
.x94_c01432{left:221.826667pt;}
.x74_c01432{left:225.167253pt;}
.x6b_c01432{left:226.770667pt;}
.x52_c01432{left:227.820000pt;}
.x33_c01432{left:229.534667pt;}
.x1e_c01432{left:232.148553pt;}
.x6d_c01432{left:235.262667pt;}
.x23_c01432{left:241.505333pt;}
.x5b_c01432{left:247.200000pt;}
.xa7_c01432{left:249.634500pt;}
.x17_c01432{left:251.825333pt;}
.x6c_c01432{left:254.110667pt;}
.x34_c01432{left:258.328000pt;}
.x3a_c01432{left:259.284343pt;}
.x1f_c01432{left:260.719220pt;}
.x32_c01432{left:261.840000pt;}
.x7e_c01432{left:263.110667pt;}
.x53_c01432{left:265.026667pt;}
.xaf_c01432{left:267.374667pt;}
.x24_c01432{left:270.560000pt;}
.xaa_c01432{left:277.277333pt;}
.x6e_c01432{left:283.756000pt;}
.x4c_c01432{left:286.419400pt;}
.x18_c01432{left:290.712000pt;}
.x7b_c01432{left:292.363861pt;}
.x54_c01432{left:295.986667pt;}
.x7f_c01432{left:302.709333pt;}
.xab_c01432{left:306.317333pt;}
.x99_c01432{left:309.699713pt;}
.x95_c01432{left:310.928000pt;}
.x5d_c01432{left:314.281333pt;}
.xb0_c01432{left:315.413333pt;}
.x3f_c01432{left:319.136000pt;}
.x7c_c01432{left:321.654923pt;}
.x4d_c01432{left:325.308039pt;}
.x2b_c01432{left:329.849333pt;}
.x13_c01432{left:331.920000pt;}
.xa1_c01432{left:337.014047pt;}
.x20_c01432{left:339.208553pt;}
.x89_c01432{left:340.166667pt;}
.x6f_c01432{left:342.572000pt;}
.x5e_c01432{left:344.533333pt;}
.x86_c01432{left:349.547221pt;}
.x14_c01432{left:351.840000pt;}
.x65_c01432{left:354.140437pt;}
.x35_c01432{left:356.038667pt;}
.x40_c01432{left:357.209333pt;}
.x75_c01432{left:361.291253pt;}
.xa2_c01432{left:366.532727pt;}
.x19_c01432{left:368.972000pt;}
.x8a_c01432{left:370.170667pt;}
.x66_c01432{left:373.040437pt;}
.xb1_c01432{left:374.690667pt;}
.x25_c01432{left:377.613333pt;}
.x70_c01432{left:381.694667pt;}
.x5f_c01432{left:383.648000pt;}
.xac_c01432{left:385.304000pt;}
.x2c_c01432{left:386.253333pt;}
.x15_c01432{left:390.480000pt;}
.x36_c01432{left:396.356000pt;}
.x80_c01432{left:399.688000pt;}
.x4e_c01432{left:403.561361pt;}
.x47_c01432{left:404.478667pt;}
.x41_c01432{left:405.698667pt;}
.x8f_c01432{left:407.864768pt;}
.x1a_c01432{left:409.288000pt;}
.x67_c01432{left:411.195104pt;}
.x60_c01432{left:412.653333pt;}
.xb2_c01432{left:414.100000pt;}
.x2d_c01432{left:415.537333pt;}
.x26_c01432{left:416.492000pt;}
.x76_c01432{left:420.091253pt;}
.x8b_c01432{left:427.813333pt;}
.x55_c01432{left:433.520000pt;}
.x21_c01432{left:439.156553pt;}
.x4f_c01432{left:443.879424pt;}
.x90_c01432{left:445.781365pt;}
.x81_c01432{left:447.697333pt;}
.x37_c01432{left:454.946667pt;}
.x96_c01432{left:456.344000pt;}
.xa3_c01432{left:463.463033pt;}
.x87_c01432{left:467.030453pt;}
.x42_c01432{left:472.888000pt;}
.x2e_c01432{left:475.534667pt;}
.x77_c01432{left:478.883253pt;}
.x61_c01432{left:480.846667pt;}
.xad_c01432{left:482.253333pt;}
.x97_c01432{left:483.701333pt;}
.x1b_c01432{left:485.857333pt;}
.x48_c01432{left:492.078667pt;}
.x8c_c01432{left:495.213333pt;}
.x56_c01432{left:500.242667pt;}
.xb7_c01432{left:501.821333pt;}
.x43_c01432{left:503.128000pt;}
.x9a_c01432{left:504.365553pt;}
.x68_c01432{left:511.148437pt;}
.x2f_c01432{left:512.970667pt;}
.x91_c01432{left:515.142475pt;}
.x78_c01432{left:516.557920pt;}
.x62_c01432{left:518.956000pt;}
.xb3_c01432{left:520.120000pt;}
.x1c_c01432{left:524.016000pt;}
.x27_c01432{left:525.210667pt;}
.x57_c01432{left:529.042667pt;}
.x9b_c01432{left:533.161080pt;}
.x8d_c01432{left:535.040000pt;}
.x71_c01432{left:538.657333pt;}
.x50_c01432{left:539.888320pt;}
.x82_c01432{left:544.904000pt;}
.x38_c01432{left:551.648000pt;}
.x63_c01432{left:558.806667pt;}
.x49_c01432{left:559.976000pt;}
.xa4_c01432{left:562.653240pt;}
.x9c_c01432{left:564.135333pt;}
.x44_c01432{left:568.888000pt;}
.xae_c01432{left:569.873333pt;}
.x30_c01432{left:571.045333pt;}
.x39_c01432{left:579.958667pt;}
.x3b_c01432{left:581.152856pt;}
.x8e_c01432{left:583.533333pt;}
.x79_c01432{left:585.212587pt;}
.xb4_c01432{left:589.024000pt;}
.x69_c01432{left:596.972437pt;}
.xa8_c01432{left:601.070627pt;}
.x58_c01432{left:608.498667pt;}
.xa5_c01432{left:610.132433pt;}
.x83_c01432{left:613.105333pt;}
.x7a_c01432{left:614.500587pt;}
.x3c_c01432{left:619.033851pt;}
.xb5_c01432{left:629.585333pt;}
.x1d_c01432{left:632.524000pt;}
.x72_c01432{left:645.226667pt;}
.x3d_c01432{left:647.836589pt;}
.x45_c01432{left:648.806667pt;}
.x28_c01432{left:650.509333pt;}
.x84_c01432{left:652.429333pt;}
.x64_c01432{left:655.065333pt;}
.x92_c01432{left:659.647445pt;}
.x51_c01432{left:667.114825pt;}
.x9d_c01432{left:669.507827pt;}
.x6a_c01432{left:674.269771pt;}
.x59_c01432{left:675.945333pt;}
.xa6_c01432{left:678.544020pt;}
.x29_c01432{left:680.037333pt;}
.x93_c01432{left:689.354581pt;}
.x73_c01432{left:693.281333pt;}
.xb6_c01432{left:697.045333pt;}
.x85_c01432{left:701.882667pt;}
.x5a_c01432{left:705.233333pt;}
.x3e_c01432{left:707.368631pt;}
.x2a_c01432{left:709.077333pt;}
.x9e_c01432{left:710.118380pt;}
.x9f_c01432{left:722.445060pt;}
}





/* 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_c01433 {
    display:none;
  }
  .loading-indicator_c01433.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01433 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_c01433 { 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_c01433" -> "#page-container .classname_c01433")
 */
.pf_c01433 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01433 { /* 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_c01433.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01433 { /* 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_c01433 { /* 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_c01433 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01433 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01433 {overflow:visible;}
  }
}
.c_c01433 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01433 { /* 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_c01433:after { /* webkit #35443 */
  content: '';
}
.t_c01433:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01433 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 */
}
.__c01433 { /* 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_c01433 { /* info for Javascript */
  display:none;
}
.l_c01433 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01433 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01433 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01433: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_c01433 {
    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_c01433.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01433.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_c01433 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01433{font-family:sans-serif;visibility:hidden;}
.sc__c01433{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01433{-webkit-text-stroke:0px transparent;}
}
.y0_c01433{bottom:0.000000px;}
.h1_c01433{height:1250.250000px;}
.h0_c01433{height:1250.370000px;}
.w0_c01433{width:912.000000px;}
.x0_c01433{left:0.000000px;}
@media print{
.y0_c01433{bottom:0.000000pt;}
.h1_c01433{height:1111.333333pt;}
.h0_c01433{height:1111.440000pt;}
.w0_c01433{width:810.666667pt;}
.x0_c01433{left:0.000000pt;}
}





/* 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_c01434 {
    display:none;
  }
  .loading-indicator_c01434.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01434 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_c01434 { 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_c01434" -> "#page-container .classname_c01434")
 */
.pf_c01434 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01434 { /* 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_c01434.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01434 { /* 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_c01434 { /* 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_c01434 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01434 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01434 {overflow:visible;}
  }
}
.c_c01434 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01434 { /* 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_c01434:after { /* webkit #35443 */
  content: '';
}
.t_c01434:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01434 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 */
}
.__c01434 { /* 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_c01434 { /* info for Javascript */
  display:none;
}
.l_c01434 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01434 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01434 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01434: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_c01434 {
    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_c01434.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01434.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_c01434 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01434{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01434;src:url('chunks/assets/font_c605e72f209fc835e906f064.woff2')format("woff");}.ff1_c01434{font-family:ff1_c01434;line-height:1.000000;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;}
.md5_c01434{transform:matrix(0.116344,0.004076,-0.008753,0.249847,0,0);-ms-transform:matrix(0.116344,0.004076,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.116344,0.004076,-0.008753,0.249847,0,0);}
.m42_c01434{transform:matrix(0.140809,0.004933,-0.008753,0.249847,0,0);-ms-transform:matrix(0.140809,0.004933,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.140809,0.004933,-0.008753,0.249847,0,0);}
.mb_c01434{transform:matrix(0.144465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144465,0.000000,0.000000,0.250000,0,0);}
.m9_c01434{transform:matrix(0.147470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147470,0.000000,0.000000,0.250000,0,0);}
.m90_c01434{transform:matrix(0.149293,0.005230,-0.008753,0.249847,0,0);-ms-transform:matrix(0.149293,0.005230,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.149293,0.005230,-0.008753,0.249847,0,0);}
.mc9_c01434{transform:matrix(0.161965,0.006485,-0.010002,0.249800,0,0);-ms-transform:matrix(0.161965,0.006485,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.161965,0.006485,-0.010002,0.249800,0,0);}
.md0_c01434{transform:matrix(0.168793,0.006927,-0.010252,0.249790,0,0);-ms-transform:matrix(0.168793,0.006927,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.168793,0.006927,-0.010252,0.249790,0,0);}
.m53_c01434{transform:matrix(0.174137,0.005224,-0.007497,0.249888,0,0);-ms-transform:matrix(0.174137,0.005224,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.174137,0.005224,-0.007497,0.249888,0,0);}
.m17_c01434{transform:matrix(0.174576,0.005412,-0.007746,0.249880,0,0);-ms-transform:matrix(0.174576,0.005412,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.174576,0.005412,-0.007746,0.249880,0,0);}
.ma8_c01434{transform:matrix(0.175568,0.005975,-0.008504,0.249855,0,0);-ms-transform:matrix(0.175568,0.005975,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.175568,0.005975,-0.008504,0.249855,0,0);}
.m45_c01434{transform:matrix(0.177376,0.006214,-0.008753,0.249847,0,0);-ms-transform:matrix(0.177376,0.006214,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.177376,0.006214,-0.008753,0.249847,0,0);}
.m93_c01434{transform:matrix(0.179315,0.006282,-0.008753,0.249847,0,0);-ms-transform:matrix(0.179315,0.006282,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.179315,0.006282,-0.008753,0.249847,0,0);}
.m82_c01434{transform:matrix(0.181112,0.005801,-0.008004,0.249872,0,0);-ms-transform:matrix(0.181112,0.005801,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.181112,0.005801,-0.008004,0.249872,0,0);}
.m1d_c01434{transform:matrix(0.182662,0.005663,-0.007746,0.249880,0,0);-ms-transform:matrix(0.182662,0.005663,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.182662,0.005663,-0.007746,0.249880,0,0);}
.m51_c01434{transform:matrix(0.183712,0.005511,-0.007497,0.249888,0,0);-ms-transform:matrix(0.183712,0.005511,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.183712,0.005511,-0.007497,0.249888,0,0);}
.m0_c01434{transform:matrix(0.183850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183850,0.000000,0.000000,0.250000,0,0);}
.m6_c01434{transform:matrix(0.183950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183950,0.000000,0.000000,0.250000,0,0);}
.mfc_c01434{transform:matrix(0.184242,0.007008,-0.009503,0.249819,0,0);-ms-transform:matrix(0.184242,0.007008,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.184242,0.007008,-0.009503,0.249819,0,0);}
.m79_c01434{transform:matrix(0.187218,0.006184,-0.008254,0.249864,0,0);-ms-transform:matrix(0.187218,0.006184,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.187218,0.006184,-0.008254,0.249864,0,0);}
.m55_c01434{transform:matrix(0.188465,0.005654,-0.007497,0.249888,0,0);-ms-transform:matrix(0.188465,0.005654,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.188465,0.005654,-0.007497,0.249888,0,0);}
.m54_c01434{transform:matrix(0.191139,0.005734,-0.007497,0.249888,0,0);-ms-transform:matrix(0.191139,0.005734,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.191139,0.005734,-0.007497,0.249888,0,0);}
.m8d_c01434{transform:matrix(0.191877,0.006722,-0.008753,0.249847,0,0);-ms-transform:matrix(0.191877,0.006722,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.191877,0.006722,-0.008753,0.249847,0,0);}
.m89_c01434{transform:matrix(0.192241,0.006158,-0.008004,0.249872,0,0);-ms-transform:matrix(0.192241,0.006158,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.192241,0.006158,-0.008004,0.249872,0,0);}
.ma0_c01434{transform:matrix(0.196024,0.006279,-0.008004,0.249872,0,0);-ms-transform:matrix(0.196024,0.006279,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.196024,0.006279,-0.008004,0.249872,0,0);}
.m8c_c01434{transform:matrix(0.196919,0.006899,-0.008753,0.249847,0,0);-ms-transform:matrix(0.196919,0.006899,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.196919,0.006899,-0.008753,0.249847,0,0);}
.m57_c01434{transform:matrix(0.197581,0.005927,-0.007497,0.249888,0,0);-ms-transform:matrix(0.197581,0.005927,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.197581,0.005927,-0.007497,0.249888,0,0);}
.m65_c01434{transform:matrix(0.197821,0.005935,-0.007497,0.249888,0,0);-ms-transform:matrix(0.197821,0.005935,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.197821,0.005935,-0.007497,0.249888,0,0);}
.mbb_c01434{transform:matrix(0.198985,0.006772,-0.008504,0.249855,0,0);-ms-transform:matrix(0.198985,0.006772,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.198985,0.006772,-0.008504,0.249855,0,0);}
.m50_c01434{transform:matrix(0.199655,0.005990,-0.007497,0.249888,0,0);-ms-transform:matrix(0.199655,0.005990,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.199655,0.005990,-0.007497,0.249888,0,0);}
.m1_c01434{transform:matrix(0.200140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200140,0.000000,0.000000,0.250000,0,0);}
.meb_c01434{transform:matrix(0.200714,0.006831,-0.008504,0.249855,0,0);-ms-transform:matrix(0.200714,0.006831,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.200714,0.006831,-0.008504,0.249855,0,0);}
.m4_c01434{transform:matrix(0.201030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201030,0.000000,0.000000,0.250000,0,0);}
.mfe_c01434{transform:matrix(0.203708,0.007749,-0.009503,0.249819,0,0);-ms-transform:matrix(0.203708,0.007749,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.203708,0.007749,-0.009503,0.249819,0,0);}
.m4f_c01434{transform:matrix(0.203828,0.006115,-0.007497,0.249888,0,0);-ms-transform:matrix(0.203828,0.006115,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.203828,0.006115,-0.007497,0.249888,0,0);}
.m60_c01434{transform:matrix(0.206827,0.006205,-0.007497,0.249888,0,0);-ms-transform:matrix(0.206827,0.006205,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.206827,0.006205,-0.007497,0.249888,0,0);}
.m52_c01434{transform:matrix(0.207197,0.006216,-0.007497,0.249888,0,0);-ms-transform:matrix(0.207197,0.006216,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.207197,0.006216,-0.007497,0.249888,0,0);}
.m8e_c01434{transform:matrix(0.208157,0.007293,-0.008753,0.249847,0,0);-ms-transform:matrix(0.208157,0.007293,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.208157,0.007293,-0.008753,0.249847,0,0);}
.m56_c01434{transform:matrix(0.208996,0.006270,-0.007497,0.249888,0,0);-ms-transform:matrix(0.208996,0.006270,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.208996,0.006270,-0.007497,0.249888,0,0);}
.m8f_c01434{transform:matrix(0.209037,0.007324,-0.008753,0.249847,0,0);-ms-transform:matrix(0.209037,0.007324,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.209037,0.007324,-0.008753,0.249847,0,0);}
.m67_c01434{transform:matrix(0.209801,0.006294,-0.007497,0.249888,0,0);-ms-transform:matrix(0.209801,0.006294,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.209801,0.006294,-0.007497,0.249888,0,0);}
.m91_c01434{transform:matrix(0.210646,0.007380,-0.008753,0.249847,0,0);-ms-transform:matrix(0.210646,0.007380,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.210646,0.007380,-0.008753,0.249847,0,0);}
.mf6_c01434{transform:matrix(0.211062,0.008028,-0.009503,0.249819,0,0);-ms-transform:matrix(0.211062,0.008028,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.211062,0.008028,-0.009503,0.249819,0,0);}
.maa_c01434{transform:matrix(0.211223,0.007189,-0.008504,0.249855,0,0);-ms-transform:matrix(0.211223,0.007189,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.211223,0.007189,-0.008504,0.249855,0,0);}
.mbc_c01434{transform:matrix(0.211363,0.007194,-0.008504,0.249855,0,0);-ms-transform:matrix(0.211363,0.007194,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.211363,0.007194,-0.008504,0.249855,0,0);}
.mfb_c01434{transform:matrix(0.212306,0.008076,-0.009503,0.249819,0,0);-ms-transform:matrix(0.212306,0.008076,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.212306,0.008076,-0.009503,0.249819,0,0);}
.m92_c01434{transform:matrix(0.212999,0.007462,-0.008753,0.249847,0,0);-ms-transform:matrix(0.212999,0.007462,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.212999,0.007462,-0.008753,0.249847,0,0);}
.m11_c01434{transform:matrix(0.214706,0.007307,-0.008504,0.249855,0,0);-ms-transform:matrix(0.214706,0.007307,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.214706,0.007307,-0.008504,0.249855,0,0);}
.m100_c01434{transform:matrix(0.216020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216020,0.000000,0.000000,0.250000,0,0);}
.m101_c01434{transform:matrix(0.217326,0.008702,-0.010002,0.249800,0,0);-ms-transform:matrix(0.217326,0.008702,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.217326,0.008702,-0.010002,0.249800,0,0);}
.mf8_c01434{transform:matrix(0.217358,0.008268,-0.009503,0.249819,0,0);-ms-transform:matrix(0.217358,0.008268,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.217358,0.008268,-0.009503,0.249819,0,0);}
.m9e_c01434{transform:matrix(0.218093,0.006986,-0.008004,0.249872,0,0);-ms-transform:matrix(0.218093,0.006986,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.218093,0.006986,-0.008004,0.249872,0,0);}
.mbf_c01434{transform:matrix(0.218469,0.007435,-0.008504,0.249855,0,0);-ms-transform:matrix(0.218469,0.007435,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.218469,0.007435,-0.008504,0.249855,0,0);}
.m63_c01434{transform:matrix(0.220271,0.006608,-0.007497,0.249888,0,0);-ms-transform:matrix(0.220271,0.006608,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.220271,0.006608,-0.007497,0.249888,0,0);}
.m6f_c01434{transform:matrix(0.223483,0.007382,-0.008254,0.249864,0,0);-ms-transform:matrix(0.223483,0.007382,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.223483,0.007382,-0.008254,0.249864,0,0);}
.m9f_c01434{transform:matrix(0.223970,0.007174,-0.008004,0.249872,0,0);-ms-transform:matrix(0.223970,0.007174,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.223970,0.007174,-0.008004,0.249872,0,0);}
.m9b_c01434{transform:matrix(0.224765,0.007200,-0.008004,0.249872,0,0);-ms-transform:matrix(0.224765,0.007200,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.224765,0.007200,-0.008004,0.249872,0,0);}
.m64_c01434{transform:matrix(0.225124,0.006754,-0.007497,0.249888,0,0);-ms-transform:matrix(0.225124,0.006754,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.225124,0.006754,-0.007497,0.249888,0,0);}
.mb3_c01434{transform:matrix(0.225582,0.007452,-0.008254,0.249864,0,0);-ms-transform:matrix(0.225582,0.007452,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.225582,0.007452,-0.008254,0.249864,0,0);}
.mb1_c01434{transform:matrix(0.225597,0.007452,-0.008254,0.249864,0,0);-ms-transform:matrix(0.225597,0.007452,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.225597,0.007452,-0.008254,0.249864,0,0);}
.mcb_c01434{transform:matrix(0.225634,0.009034,-0.010002,0.249800,0,0);-ms-transform:matrix(0.225634,0.009034,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.225634,0.009034,-0.010002,0.249800,0,0);}
.mbd_c01434{transform:matrix(0.229887,0.007824,-0.008504,0.249855,0,0);-ms-transform:matrix(0.229887,0.007824,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.229887,0.007824,-0.008504,0.249855,0,0);}
.m96_c01434{transform:matrix(0.230387,0.008533,-0.009253,0.249829,0,0);-ms-transform:matrix(0.230387,0.008533,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.230387,0.008533,-0.009253,0.249829,0,0);}
.m43_c01434{transform:matrix(0.230404,0.008072,-0.008753,0.249847,0,0);-ms-transform:matrix(0.230404,0.008072,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.230404,0.008072,-0.008753,0.249847,0,0);}
.m6e_c01434{transform:matrix(0.230769,0.007623,-0.008254,0.249864,0,0);-ms-transform:matrix(0.230769,0.007623,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.230769,0.007623,-0.008254,0.249864,0,0);}
.m105_c01434{transform:matrix(0.231290,0.009261,-0.010002,0.249800,0,0);-ms-transform:matrix(0.231290,0.009261,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.231290,0.009261,-0.010002,0.249800,0,0);}
.m97_c01434{transform:matrix(0.232700,0.008619,-0.009253,0.249829,0,0);-ms-transform:matrix(0.232700,0.008619,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.232700,0.008619,-0.009253,0.249829,0,0);}
.md9_c01434{transform:matrix(0.232842,0.008158,-0.008753,0.249847,0,0);-ms-transform:matrix(0.232842,0.008158,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.232842,0.008158,-0.008753,0.249847,0,0);}
.m62_c01434{transform:matrix(0.232990,0.006990,-0.007497,0.249888,0,0);-ms-transform:matrix(0.232990,0.006990,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.232990,0.006990,-0.007497,0.249888,0,0);}
.m9c_c01434{transform:matrix(0.233170,0.007469,-0.008004,0.249872,0,0);-ms-transform:matrix(0.233170,0.007469,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.233170,0.007469,-0.008004,0.249872,0,0);}
.m9d_c01434{transform:matrix(0.233450,0.007478,-0.008004,0.249872,0,0);-ms-transform:matrix(0.233450,0.007478,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.233450,0.007478,-0.008004,0.249872,0,0);}
.mdb_c01434{transform:matrix(0.233552,0.008182,-0.008753,0.249847,0,0);-ms-transform:matrix(0.233552,0.008182,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.233552,0.008182,-0.008753,0.249847,0,0);}
.mdf_c01434{transform:matrix(0.234224,0.007972,-0.008504,0.249855,0,0);-ms-transform:matrix(0.234224,0.007972,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.234224,0.007972,-0.008504,0.249855,0,0);}
.m69_c01434{transform:matrix(0.234657,0.007751,-0.008254,0.249864,0,0);-ms-transform:matrix(0.234657,0.007751,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.234657,0.007751,-0.008254,0.249864,0,0);}
.m66_c01434{transform:matrix(0.235389,0.007062,-0.007497,0.249888,0,0);-ms-transform:matrix(0.235389,0.007062,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.235389,0.007062,-0.007497,0.249888,0,0);}
.mbe_c01434{transform:matrix(0.235754,0.008024,-0.008504,0.249855,0,0);-ms-transform:matrix(0.235754,0.008024,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.235754,0.008024,-0.008504,0.249855,0,0);}
.m5_c01434{transform:matrix(0.236120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236120,0.000000,0.000000,0.250000,0,0);}
.mba_c01434{transform:matrix(0.236178,0.008038,-0.008504,0.249855,0,0);-ms-transform:matrix(0.236178,0.008038,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.236178,0.008038,-0.008504,0.249855,0,0);}
.mfd_c01434{transform:matrix(0.236239,0.008986,-0.009503,0.249819,0,0);-ms-transform:matrix(0.236239,0.008986,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.236239,0.008986,-0.009503,0.249819,0,0);}
.mb9_c01434{transform:matrix(0.237028,0.008067,-0.008504,0.249855,0,0);-ms-transform:matrix(0.237028,0.008067,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.237028,0.008067,-0.008504,0.249855,0,0);}
.m88_c01434{transform:matrix(0.237503,0.007608,-0.008004,0.249872,0,0);-ms-transform:matrix(0.237503,0.007608,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.237503,0.007608,-0.008004,0.249872,0,0);}
.m103_c01434{transform:matrix(0.237640,0.009515,-0.010002,0.249800,0,0);-ms-transform:matrix(0.237640,0.009515,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.237640,0.009515,-0.010002,0.249800,0,0);}
.mec_c01434{transform:matrix(0.238622,0.008121,-0.008504,0.249855,0,0);-ms-transform:matrix(0.238622,0.008121,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.238622,0.008121,-0.008504,0.249855,0,0);}
.me9_c01434{transform:matrix(0.239072,0.008137,-0.008504,0.249855,0,0);-ms-transform:matrix(0.239072,0.008137,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.239072,0.008137,-0.008504,0.249855,0,0);}
.m61_c01434{transform:matrix(0.239162,0.007175,-0.007497,0.249888,0,0);-ms-transform:matrix(0.239162,0.007175,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.239162,0.007175,-0.007497,0.249888,0,0);}
.mf3_c01434{transform:matrix(0.240146,0.009135,-0.009503,0.249819,0,0);-ms-transform:matrix(0.240146,0.009135,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.240146,0.009135,-0.009503,0.249819,0,0);}
.mf4_c01434{transform:matrix(0.240756,0.009158,-0.009503,0.249819,0,0);-ms-transform:matrix(0.240756,0.009158,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.240756,0.009158,-0.009503,0.249819,0,0);}
.m10_c01434{transform:matrix(0.241210,0.008209,-0.008504,0.249855,0,0);-ms-transform:matrix(0.241210,0.008209,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.241210,0.008209,-0.008504,0.249855,0,0);}
.mc0_c01434{transform:matrix(0.241980,0.008236,-0.008504,0.249855,0,0);-ms-transform:matrix(0.241980,0.008236,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.241980,0.008236,-0.008504,0.249855,0,0);}
.mf7_c01434{transform:matrix(0.242475,0.009223,-0.009503,0.249819,0,0);-ms-transform:matrix(0.242475,0.009223,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.242475,0.009223,-0.009503,0.249819,0,0);}
.mcf_c01434{transform:matrix(0.242541,0.009954,-0.010252,0.249790,0,0);-ms-transform:matrix(0.242541,0.009954,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.242541,0.009954,-0.010252,0.249790,0,0);}
.m6c_c01434{transform:matrix(0.243182,0.008033,-0.008254,0.249864,0,0);-ms-transform:matrix(0.243182,0.008033,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.243182,0.008033,-0.008254,0.249864,0,0);}
.md6_c01434{transform:matrix(0.243950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243950,0.000000,0.000000,0.250000,0,0);}
.mda_c01434{transform:matrix(0.244405,0.008563,-0.008753,0.249847,0,0);-ms-transform:matrix(0.244405,0.008563,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.244405,0.008563,-0.008753,0.249847,0,0);}
.m22_c01434{transform:matrix(0.244987,0.007595,-0.007746,0.249880,0,0);-ms-transform:matrix(0.244987,0.007595,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.244987,0.007595,-0.007746,0.249880,0,0);}
.m104_c01434{transform:matrix(0.245094,0.009814,-0.010002,0.249800,0,0);-ms-transform:matrix(0.245094,0.009814,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.245094,0.009814,-0.010002,0.249800,0,0);}
.m106_c01434{transform:matrix(0.245998,0.009850,-0.010002,0.249800,0,0);-ms-transform:matrix(0.245998,0.009850,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.245998,0.009850,-0.010002,0.249800,0,0);}
.m2_c01434{transform:matrix(0.246585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246585,0.000000,0.000000,0.250000,0,0);}
.m5a_c01434{transform:matrix(0.247484,0.007425,-0.007497,0.249888,0,0);-ms-transform:matrix(0.247484,0.007425,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.247484,0.007425,-0.007497,0.249888,0,0);}
.mf9_c01434{transform:matrix(0.248625,0.009457,-0.009503,0.249819,0,0);-ms-transform:matrix(0.248625,0.009457,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.248625,0.009457,-0.009503,0.249819,0,0);}
.md2_c01434{transform:matrix(0.248716,0.010208,-0.010252,0.249790,0,0);-ms-transform:matrix(0.248716,0.010208,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.248716,0.010208,-0.010252,0.249790,0,0);}
.mc7_c01434{transform:matrix(0.248803,0.007464,-0.007497,0.249888,0,0);-ms-transform:matrix(0.248803,0.007464,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.248803,0.007464,-0.007497,0.249888,0,0);}
.mf2_c01434{transform:matrix(0.249155,0.009477,-0.009503,0.249819,0,0);-ms-transform:matrix(0.249155,0.009477,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.249155,0.009477,-0.009503,0.249819,0,0);}
.mff_c01434{transform:matrix(0.249490,0.009490,-0.009503,0.249819,0,0);-ms-transform:matrix(0.249490,0.009490,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.249490,0.009490,-0.009503,0.249819,0,0);}
.m6a_c01434{transform:matrix(0.250019,0.008259,-0.008254,0.249864,0,0);-ms-transform:matrix(0.250019,0.008259,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.250019,0.008259,-0.008254,0.249864,0,0);}
.mf0_c01434{transform:matrix(0.250245,0.008517,-0.008504,0.249855,0,0);-ms-transform:matrix(0.250245,0.008517,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.250245,0.008517,-0.008504,0.249855,0,0);}
.mce_c01434{transform:matrix(0.251234,0.010311,-0.010252,0.249790,0,0);-ms-transform:matrix(0.251234,0.010311,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.251234,0.010311,-0.010252,0.249790,0,0);}
.me6_c01434{transform:matrix(0.251549,0.008561,-0.008504,0.249855,0,0);-ms-transform:matrix(0.251549,0.008561,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.251549,0.008561,-0.008504,0.249855,0,0);}
.m19_c01434{transform:matrix(0.251764,0.007805,-0.007746,0.249880,0,0);-ms-transform:matrix(0.251764,0.007805,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.251764,0.007805,-0.007746,0.249880,0,0);}
.mf_c01434{transform:matrix(0.252374,0.008589,-0.008504,0.249855,0,0);-ms-transform:matrix(0.252374,0.008589,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.252374,0.008589,-0.008504,0.249855,0,0);}
.m12_c01434{transform:matrix(0.253388,0.008624,-0.008504,0.249855,0,0);-ms-transform:matrix(0.253388,0.008624,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.253388,0.008624,-0.008504,0.249855,0,0);}
.mcc_c01434{transform:matrix(0.253962,0.010169,-0.010002,0.249800,0,0);-ms-transform:matrix(0.253962,0.010169,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.253962,0.010169,-0.010002,0.249800,0,0);}
.m33_c01434{transform:matrix(0.254043,0.007875,-0.007746,0.249880,0,0);-ms-transform:matrix(0.254043,0.007875,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.254043,0.007875,-0.007746,0.249880,0,0);}
.mf5_c01434{transform:matrix(0.254546,0.009682,-0.009503,0.249819,0,0);-ms-transform:matrix(0.254546,0.009682,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.254546,0.009682,-0.009503,0.249819,0,0);}
.m5d_c01434{transform:matrix(0.254780,0.007643,-0.007497,0.249888,0,0);-ms-transform:matrix(0.254780,0.007643,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.254780,0.007643,-0.007497,0.249888,0,0);}
.m3_c01434{transform:matrix(0.255705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255705,0.000000,0.000000,0.250000,0,0);}
.m2a_c01434{transform:matrix(0.256007,0.007936,-0.007746,0.249880,0,0);-ms-transform:matrix(0.256007,0.007936,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.256007,0.007936,-0.007746,0.249880,0,0);}
.m1e_c01434{transform:matrix(0.256327,0.007946,-0.007746,0.249880,0,0);-ms-transform:matrix(0.256327,0.007946,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.256327,0.007946,-0.007746,0.249880,0,0);}
.m4b_c01434{transform:matrix(0.256425,0.007693,-0.007497,0.249888,0,0);-ms-transform:matrix(0.256425,0.007693,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.256425,0.007693,-0.007497,0.249888,0,0);}
.m81_c01434{transform:matrix(0.256758,0.008224,-0.008004,0.249872,0,0);-ms-transform:matrix(0.256758,0.008224,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.256758,0.008224,-0.008004,0.249872,0,0);}
.m94_c01434{transform:matrix(0.257150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257150,0.000000,0.000000,0.250000,0,0);}
.m71_c01434{transform:matrix(0.257290,0.008499,-0.008254,0.249864,0,0);-ms-transform:matrix(0.257290,0.008499,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.257290,0.008499,-0.008254,0.249864,0,0);}
.m6b_c01434{transform:matrix(0.257405,0.008503,-0.008254,0.249864,0,0);-ms-transform:matrix(0.257405,0.008503,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.257405,0.008503,-0.008254,0.249864,0,0);}
.me8_c01434{transform:matrix(0.257791,0.008774,-0.008504,0.249855,0,0);-ms-transform:matrix(0.257791,0.008774,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.257791,0.008774,-0.008504,0.249855,0,0);}
.md8_c01434{transform:matrix(0.258307,0.009050,-0.008753,0.249847,0,0);-ms-transform:matrix(0.258307,0.009050,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.258307,0.009050,-0.008753,0.249847,0,0);}
.mb0_c01434{transform:matrix(0.259653,0.008577,-0.008254,0.249864,0,0);-ms-transform:matrix(0.259653,0.008577,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.259653,0.008577,-0.008254,0.249864,0,0);}
.md1_c01434{transform:matrix(0.259726,0.010659,-0.010252,0.249790,0,0);-ms-transform:matrix(0.259726,0.010659,-0.010252,0.249790,0,0);-webkit-transform:matrix(0.259726,0.010659,-0.010252,0.249790,0,0);}
.mc3_c01434{transform:matrix(0.259778,0.007793,-0.007497,0.249888,0,0);-ms-transform:matrix(0.259778,0.007793,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.259778,0.007793,-0.007497,0.249888,0,0);}
.mee_c01434{transform:matrix(0.260069,0.008851,-0.008504,0.249855,0,0);-ms-transform:matrix(0.260069,0.008851,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.260069,0.008851,-0.008504,0.249855,0,0);}
.m31_c01434{transform:matrix(0.260095,0.008063,-0.007746,0.249880,0,0);-ms-transform:matrix(0.260095,0.008063,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.260095,0.008063,-0.007746,0.249880,0,0);}
.m107_c01434{transform:matrix(0.260172,0.010417,-0.010002,0.249800,0,0);-ms-transform:matrix(0.260172,0.010417,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.260172,0.010417,-0.010002,0.249800,0,0);}
.m32_c01434{transform:matrix(0.260925,0.008089,-0.007746,0.249880,0,0);-ms-transform:matrix(0.260925,0.008089,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.260925,0.008089,-0.007746,0.249880,0,0);}
.m85_c01434{transform:matrix(0.261271,0.008369,-0.008004,0.249872,0,0);-ms-transform:matrix(0.261271,0.008369,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.261271,0.008369,-0.008004,0.249872,0,0);}
.m48_c01434{transform:matrix(0.261457,0.007844,-0.007497,0.249888,0,0);-ms-transform:matrix(0.261457,0.007844,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.261457,0.007844,-0.007497,0.249888,0,0);}
.mc5_c01434{transform:matrix(0.262397,0.007872,-0.007497,0.249888,0,0);-ms-transform:matrix(0.262397,0.007872,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.262397,0.007872,-0.007497,0.249888,0,0);}
.m2d_c01434{transform:matrix(0.262399,0.008134,-0.007746,0.249880,0,0);-ms-transform:matrix(0.262399,0.008134,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.262399,0.008134,-0.007746,0.249880,0,0);}
.m7b_c01434{transform:matrix(0.262684,0.009203,-0.008753,0.249847,0,0);-ms-transform:matrix(0.262684,0.009203,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.262684,0.009203,-0.008753,0.249847,0,0);}
.mcd_c01434{transform:matrix(0.263024,0.010532,-0.010002,0.249800,0,0);-ms-transform:matrix(0.263024,0.010532,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.263024,0.010532,-0.010002,0.249800,0,0);}
.m46_c01434{transform:matrix(0.263199,0.009221,-0.008753,0.249847,0,0);-ms-transform:matrix(0.263199,0.009221,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.263199,0.009221,-0.008753,0.249847,0,0);}
.mc2_c01434{transform:matrix(0.263357,0.007901,-0.007497,0.249888,0,0);-ms-transform:matrix(0.263357,0.007901,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.263357,0.007901,-0.007497,0.249888,0,0);}
.me0_c01434{transform:matrix(0.263577,0.008971,-0.008504,0.249855,0,0);-ms-transform:matrix(0.263577,0.008971,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.263577,0.008971,-0.008504,0.249855,0,0);}
.m6d_c01434{transform:matrix(0.264531,0.008738,-0.008254,0.249864,0,0);-ms-transform:matrix(0.264531,0.008738,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.264531,0.008738,-0.008254,0.249864,0,0);}
.m3e_c01434{transform:matrix(0.265308,0.008225,-0.007746,0.249880,0,0);-ms-transform:matrix(0.265308,0.008225,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.265308,0.008225,-0.007746,0.249880,0,0);}
.me5_c01434{transform:matrix(0.265491,0.009036,-0.008504,0.249855,0,0);-ms-transform:matrix(0.265491,0.009036,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.265491,0.009036,-0.008504,0.249855,0,0);}
.mfa_c01434{transform:matrix(0.265673,0.010106,-0.009503,0.249819,0,0);-ms-transform:matrix(0.265673,0.010106,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.265673,0.010106,-0.009503,0.249819,0,0);}
.mb8_c01434{transform:matrix(0.265738,0.009842,-0.009253,0.249829,0,0);-ms-transform:matrix(0.265738,0.009842,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.265738,0.009842,-0.009253,0.249829,0,0);}
.m108_c01434{transform:matrix(0.266784,0.011216,-0.010501,0.249779,0,0);-ms-transform:matrix(0.266784,0.011216,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.266784,0.011216,-0.010501,0.249779,0,0);}
.me2_c01434{transform:matrix(0.267230,0.009095,-0.008504,0.249855,0,0);-ms-transform:matrix(0.267230,0.009095,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.267230,0.009095,-0.008504,0.249855,0,0);}
.m7_c01434{transform:matrix(0.267660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267660,0.000000,0.000000,0.250000,0,0);}
.me4_c01434{transform:matrix(0.267760,0.009113,-0.008504,0.249855,0,0);-ms-transform:matrix(0.267760,0.009113,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.267760,0.009113,-0.008504,0.249855,0,0);}
.m87_c01434{transform:matrix(0.268192,0.008591,-0.008004,0.249872,0,0);-ms-transform:matrix(0.268192,0.008591,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.268192,0.008591,-0.008004,0.249872,0,0);}
.m10a_c01434{transform:matrix(0.268235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268235,0.000000,0.000000,0.250000,0,0);}
.m47_c01434{transform:matrix(0.268420,0.009404,-0.008753,0.249847,0,0);-ms-transform:matrix(0.268420,0.009404,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.268420,0.009404,-0.008753,0.249847,0,0);}
.m68_c01434{transform:matrix(0.268648,0.008874,-0.008254,0.249864,0,0);-ms-transform:matrix(0.268648,0.008874,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.268648,0.008874,-0.008254,0.249864,0,0);}
.m4c_c01434{transform:matrix(0.268914,0.008067,-0.007497,0.249888,0,0);-ms-transform:matrix(0.268914,0.008067,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.268914,0.008067,-0.007497,0.249888,0,0);}
.mdd_c01434{transform:matrix(0.269249,0.009164,-0.008504,0.249855,0,0);-ms-transform:matrix(0.269249,0.009164,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.269249,0.009164,-0.008504,0.249855,0,0);}
.m8_c01434{transform:matrix(0.269510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269510,0.000000,0.000000,0.250000,0,0);}
.m8a_c01434{transform:matrix(0.269647,0.008637,-0.008004,0.249872,0,0);-ms-transform:matrix(0.269647,0.008637,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.269647,0.008637,-0.008004,0.249872,0,0);}
.me1_c01434{transform:matrix(0.269759,0.009181,-0.008504,0.249855,0,0);-ms-transform:matrix(0.269759,0.009181,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.269759,0.009181,-0.008504,0.249855,0,0);}
.m7e_c01434{transform:matrix(0.270049,0.009461,-0.008753,0.249847,0,0);-ms-transform:matrix(0.270049,0.009461,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.270049,0.009461,-0.008753,0.249847,0,0);}
.m29_c01434{transform:matrix(0.270150,0.008375,-0.007746,0.249880,0,0);-ms-transform:matrix(0.270150,0.008375,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.270150,0.008375,-0.007746,0.249880,0,0);}
.md3_c01434{transform:matrix(0.270249,0.009468,-0.008753,0.249847,0,0);-ms-transform:matrix(0.270249,0.009468,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.270249,0.009468,-0.008753,0.249847,0,0);}
.m5c_c01434{transform:matrix(0.270348,0.008110,-0.007497,0.249888,0,0);-ms-transform:matrix(0.270348,0.008110,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.270348,0.008110,-0.007497,0.249888,0,0);}
.m80_c01434{transform:matrix(0.270654,0.009482,-0.008753,0.249847,0,0);-ms-transform:matrix(0.270654,0.009482,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.270654,0.009482,-0.008753,0.249847,0,0);}
.m7a_c01434{transform:matrix(0.270684,0.009483,-0.008753,0.249847,0,0);-ms-transform:matrix(0.270684,0.009483,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.270684,0.009483,-0.008753,0.249847,0,0);}
.mc4_c01434{transform:matrix(0.270978,0.008129,-0.007497,0.249888,0,0);-ms-transform:matrix(0.270978,0.008129,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.270978,0.008129,-0.007497,0.249888,0,0);}
.m4e_c01434{transform:matrix(0.271008,0.008130,-0.007497,0.249888,0,0);-ms-transform:matrix(0.271008,0.008130,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.271008,0.008130,-0.007497,0.249888,0,0);}
.m49_c01434{transform:matrix(0.271043,0.008131,-0.007497,0.249888,0,0);-ms-transform:matrix(0.271043,0.008131,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.271043,0.008131,-0.007497,0.249888,0,0);}
.m40_c01434{transform:matrix(0.271045,0.008402,-0.007746,0.249880,0,0);-ms-transform:matrix(0.271045,0.008402,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.271045,0.008402,-0.007746,0.249880,0,0);}
.mb7_c01434{transform:matrix(0.271084,0.010040,-0.009253,0.249829,0,0);-ms-transform:matrix(0.271084,0.010040,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.271084,0.010040,-0.009253,0.249829,0,0);}
.m20_c01434{transform:matrix(0.271140,0.008405,-0.007746,0.249880,0,0);-ms-transform:matrix(0.271140,0.008405,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.271140,0.008405,-0.007746,0.249880,0,0);}
.m84_c01434{transform:matrix(0.272205,0.008719,-0.008004,0.249872,0,0);-ms-transform:matrix(0.272205,0.008719,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.272205,0.008719,-0.008004,0.249872,0,0);}
.m2b_c01434{transform:matrix(0.272769,0.008456,-0.007746,0.249880,0,0);-ms-transform:matrix(0.272769,0.008456,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.272769,0.008456,-0.007746,0.249880,0,0);}
.m7f_c01434{transform:matrix(0.273092,0.009568,-0.008753,0.249847,0,0);-ms-transform:matrix(0.273092,0.009568,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.273092,0.009568,-0.008753,0.249847,0,0);}
.m7c_c01434{transform:matrix(0.273122,0.009569,-0.008753,0.249847,0,0);-ms-transform:matrix(0.273122,0.009569,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.273122,0.009569,-0.008753,0.249847,0,0);}
.m109_c01434{transform:matrix(0.274612,0.011545,-0.010501,0.249779,0,0);-ms-transform:matrix(0.274612,0.011545,-0.010501,0.249779,0,0);-webkit-transform:matrix(0.274612,0.011545,-0.010501,0.249779,0,0);}
.md7_c01434{transform:matrix(0.274636,0.009622,-0.008753,0.249847,0,0);-ms-transform:matrix(0.274636,0.009622,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.274636,0.009622,-0.008753,0.249847,0,0);}
.m7d_c01434{transform:matrix(0.274741,0.009626,-0.008753,0.249847,0,0);-ms-transform:matrix(0.274741,0.009626,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.274741,0.009626,-0.008753,0.249847,0,0);}
.m2e_c01434{transform:matrix(0.275308,0.008535,-0.007746,0.249880,0,0);-ms-transform:matrix(0.275308,0.008535,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.275308,0.008535,-0.007746,0.249880,0,0);}
.m83_c01434{transform:matrix(0.275414,0.008822,-0.008004,0.249872,0,0);-ms-transform:matrix(0.275414,0.008822,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.275414,0.008822,-0.008004,0.249872,0,0);}
.mea_c01434{transform:matrix(0.275765,0.009385,-0.008504,0.249855,0,0);-ms-transform:matrix(0.275765,0.009385,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.275765,0.009385,-0.008504,0.249855,0,0);}
.m58_c01434{transform:matrix(0.275795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275795,0.000000,0.000000,0.250000,0,0);}
.mde_c01434{transform:matrix(0.276035,0.009395,-0.008504,0.249855,0,0);-ms-transform:matrix(0.276035,0.009395,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.276035,0.009395,-0.008504,0.249855,0,0);}
.m13_c01434{transform:matrix(0.276155,0.009399,-0.008504,0.249855,0,0);-ms-transform:matrix(0.276155,0.009399,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.276155,0.009399,-0.008504,0.249855,0,0);}
.m98_c01434{transform:matrix(0.276166,0.010228,-0.009253,0.249829,0,0);-ms-transform:matrix(0.276166,0.010228,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.276166,0.010228,-0.009253,0.249829,0,0);}
.m4a_c01434{transform:matrix(0.276401,0.008292,-0.007497,0.249888,0,0);-ms-transform:matrix(0.276401,0.008292,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.276401,0.008292,-0.007497,0.249888,0,0);}
.m70_c01434{transform:matrix(0.277614,0.009170,-0.008254,0.249864,0,0);-ms-transform:matrix(0.277614,0.009170,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.277614,0.009170,-0.008254,0.249864,0,0);}
.mef_c01434{transform:matrix(0.277654,0.009450,-0.008504,0.249855,0,0);-ms-transform:matrix(0.277654,0.009450,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.277654,0.009450,-0.008504,0.249855,0,0);}
.med_c01434{transform:matrix(0.279273,0.009505,-0.008504,0.249855,0,0);-ms-transform:matrix(0.279273,0.009505,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.279273,0.009505,-0.008504,0.249855,0,0);}
.m102_c01434{transform:matrix(0.279571,0.011194,-0.010002,0.249800,0,0);-ms-transform:matrix(0.279571,0.011194,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.279571,0.011194,-0.010002,0.249800,0,0);}
.ma_c01434{transform:matrix(0.279830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279830,0.000000,0.000000,0.250000,0,0);}
.m86_c01434{transform:matrix(0.280081,0.008972,-0.008004,0.249872,0,0);-ms-transform:matrix(0.280081,0.008972,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.280081,0.008972,-0.008004,0.249872,0,0);}
.m4d_c01434{transform:matrix(0.280574,0.008417,-0.007497,0.249888,0,0);-ms-transform:matrix(0.280574,0.008417,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.280574,0.008417,-0.007497,0.249888,0,0);}
.m44_c01434{transform:matrix(0.282467,0.009896,-0.008753,0.249847,0,0);-ms-transform:matrix(0.282467,0.009896,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.282467,0.009896,-0.008753,0.249847,0,0);}
.mc8_c01434{transform:matrix(0.282828,0.008485,-0.007497,0.249888,0,0);-ms-transform:matrix(0.282828,0.008485,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.282828,0.008485,-0.007497,0.249888,0,0);}
.mae_c01434{transform:matrix(0.283061,0.009350,-0.008254,0.249864,0,0);-ms-transform:matrix(0.283061,0.009350,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.283061,0.009350,-0.008254,0.249864,0,0);}
.m1f_c01434{transform:matrix(0.284119,0.008808,-0.007746,0.249880,0,0);-ms-transform:matrix(0.284119,0.008808,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.284119,0.008808,-0.007746,0.249880,0,0);}
.md_c01434{transform:matrix(0.284365,0.009678,-0.008504,0.249855,0,0);-ms-transform:matrix(0.284365,0.009678,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.284365,0.009678,-0.008504,0.249855,0,0);}
.mc1_c01434{transform:matrix(0.284457,0.008534,-0.007497,0.249888,0,0);-ms-transform:matrix(0.284457,0.008534,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.284457,0.008534,-0.007497,0.249888,0,0);}
.m15_c01434{transform:matrix(0.284980,0.009699,-0.008504,0.249855,0,0);-ms-transform:matrix(0.284980,0.009699,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.284980,0.009699,-0.008504,0.249855,0,0);}
.m3d_c01434{transform:matrix(0.286892,0.008894,-0.007746,0.249880,0,0);-ms-transform:matrix(0.286892,0.008894,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.286892,0.008894,-0.007746,0.249880,0,0);}
.m27_c01434{transform:matrix(0.287627,0.008916,-0.007746,0.249880,0,0);-ms-transform:matrix(0.287627,0.008916,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.287627,0.008916,-0.007746,0.249880,0,0);}
.mca_c01434{transform:matrix(0.287884,0.011527,-0.010002,0.249800,0,0);-ms-transform:matrix(0.287884,0.011527,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.287884,0.011527,-0.010002,0.249800,0,0);}
.m16_c01434{transform:matrix(0.289661,0.008979,-0.007746,0.249880,0,0);-ms-transform:matrix(0.289661,0.008979,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.289661,0.008979,-0.007746,0.249880,0,0);}
.m41_c01434{transform:matrix(0.289731,0.008982,-0.007746,0.249880,0,0);-ms-transform:matrix(0.289731,0.008982,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.289731,0.008982,-0.007746,0.249880,0,0);}
.m1c_c01434{transform:matrix(0.289761,0.008983,-0.007746,0.249880,0,0);-ms-transform:matrix(0.289761,0.008983,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.289761,0.008983,-0.007746,0.249880,0,0);}
.mc6_c01434{transform:matrix(0.290104,0.008703,-0.007497,0.249888,0,0);-ms-transform:matrix(0.290104,0.008703,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.290104,0.008703,-0.007497,0.249888,0,0);}
.mb4_c01434{transform:matrix(0.291031,0.009614,-0.008254,0.249864,0,0);-ms-transform:matrix(0.291031,0.009614,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.291031,0.009614,-0.008254,0.249864,0,0);}
.m5b_c01434{transform:matrix(0.291874,0.008756,-0.007497,0.249888,0,0);-ms-transform:matrix(0.291874,0.008756,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.291874,0.008756,-0.007497,0.249888,0,0);}
.maf_c01434{transform:matrix(0.292076,0.009648,-0.008254,0.249864,0,0);-ms-transform:matrix(0.292076,0.009648,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.292076,0.009648,-0.008254,0.249864,0,0);}
.m28_c01434{transform:matrix(0.292095,0.009055,-0.007746,0.249880,0,0);-ms-transform:matrix(0.292095,0.009055,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.292095,0.009055,-0.007746,0.249880,0,0);}
.me3_c01434{transform:matrix(0.292486,0.009954,-0.008504,0.249855,0,0);-ms-transform:matrix(0.292486,0.009954,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.292486,0.009954,-0.008504,0.249855,0,0);}
.ma7_c01434{transform:matrix(0.293100,0.009975,-0.008504,0.249855,0,0);-ms-transform:matrix(0.293100,0.009975,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.293100,0.009975,-0.008504,0.249855,0,0);}
.m18_c01434{transform:matrix(0.293509,0.009099,-0.007746,0.249880,0,0);-ms-transform:matrix(0.293509,0.009099,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.293509,0.009099,-0.007746,0.249880,0,0);}
.m8b_c01434{transform:matrix(0.293584,0.009404,-0.008004,0.249872,0,0);-ms-transform:matrix(0.293584,0.009404,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.293584,0.009404,-0.008004,0.249872,0,0);}
.mb5_c01434{transform:matrix(0.293890,0.009708,-0.008254,0.249864,0,0);-ms-transform:matrix(0.293890,0.009708,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.293890,0.009708,-0.008254,0.249864,0,0);}
.m2c_c01434{transform:matrix(0.295903,0.009173,-0.007746,0.249880,0,0);-ms-transform:matrix(0.295903,0.009173,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.295903,0.009173,-0.007746,0.249880,0,0);}
.me7_c01434{transform:matrix(0.296114,0.010078,-0.008504,0.249855,0,0);-ms-transform:matrix(0.296114,0.010078,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.296114,0.010078,-0.008504,0.249855,0,0);}
.m1a_c01434{transform:matrix(0.296563,0.009193,-0.007746,0.249880,0,0);-ms-transform:matrix(0.296563,0.009193,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.296563,0.009193,-0.007746,0.249880,0,0);}
.md4_c01434{transform:matrix(0.296578,0.010391,-0.008753,0.249847,0,0);-ms-transform:matrix(0.296578,0.010391,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.296578,0.010391,-0.008753,0.249847,0,0);}
.m3c_c01434{transform:matrix(0.297682,0.009228,-0.007746,0.249880,0,0);-ms-transform:matrix(0.297682,0.009228,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.297682,0.009228,-0.007746,0.249880,0,0);}
.me_c01434{transform:matrix(0.298007,0.010142,-0.008504,0.249855,0,0);-ms-transform:matrix(0.298007,0.010142,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.298007,0.010142,-0.008504,0.249855,0,0);}
.m1b_c01434{transform:matrix(0.298107,0.009241,-0.007746,0.249880,0,0);-ms-transform:matrix(0.298107,0.009241,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.298107,0.009241,-0.007746,0.249880,0,0);}
.m75_c01434{transform:matrix(0.298612,0.009864,-0.008254,0.249864,0,0);-ms-transform:matrix(0.298612,0.009864,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.298612,0.009864,-0.008254,0.249864,0,0);}
.m3f_c01434{transform:matrix(0.298647,0.009258,-0.007746,0.249880,0,0);-ms-transform:matrix(0.298647,0.009258,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.298647,0.009258,-0.007746,0.249880,0,0);}
.m95_c01434{transform:matrix(0.299250,0.011083,-0.009253,0.249829,0,0);-ms-transform:matrix(0.299250,0.011083,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.299250,0.011083,-0.009253,0.249829,0,0);}
.m14_c01434{transform:matrix(0.299711,0.010200,-0.008504,0.249855,0,0);-ms-transform:matrix(0.299711,0.010200,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.299711,0.010200,-0.008504,0.249855,0,0);}
.mc_c01434{transform:matrix(0.300531,0.010228,-0.008504,0.249855,0,0);-ms-transform:matrix(0.300531,0.010228,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.300531,0.010228,-0.008504,0.249855,0,0);}
.m25_c01434{transform:matrix(0.300895,0.009328,-0.007746,0.249880,0,0);-ms-transform:matrix(0.300895,0.009328,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.300895,0.009328,-0.007746,0.249880,0,0);}
.mac_c01434{transform:matrix(0.301046,0.009944,-0.008254,0.249864,0,0);-ms-transform:matrix(0.301046,0.009944,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.301046,0.009944,-0.008254,0.249864,0,0);}
.mb6_c01434{transform:matrix(0.301134,0.011153,-0.009253,0.249829,0,0);-ms-transform:matrix(0.301134,0.011153,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.301134,0.011153,-0.009253,0.249829,0,0);}
.m59_c01434{transform:matrix(0.301140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301140,0.000000,0.000000,0.250000,0,0);}
.ma9_c01434{transform:matrix(0.301331,0.010255,-0.008504,0.249855,0,0);-ms-transform:matrix(0.301331,0.010255,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.301331,0.010255,-0.008504,0.249855,0,0);}
.m24_c01434{transform:matrix(0.301645,0.009351,-0.007746,0.249880,0,0);-ms-transform:matrix(0.301645,0.009351,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.301645,0.009351,-0.007746,0.249880,0,0);}
.ma2_c01434{transform:matrix(0.302434,0.010596,-0.008753,0.249847,0,0);-ms-transform:matrix(0.302434,0.010596,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.302434,0.010596,-0.008753,0.249847,0,0);}
.mad_c01434{transform:matrix(0.303155,0.010014,-0.008254,0.249864,0,0);-ms-transform:matrix(0.303155,0.010014,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.303155,0.010014,-0.008254,0.249864,0,0);}
.m2f_c01434{transform:matrix(0.303644,0.009413,-0.007746,0.249880,0,0);-ms-transform:matrix(0.303644,0.009413,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.303644,0.009413,-0.007746,0.249880,0,0);}
.m30_c01434{transform:matrix(0.303679,0.009414,-0.007746,0.249880,0,0);-ms-transform:matrix(0.303679,0.009414,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.303679,0.009414,-0.007746,0.249880,0,0);}
.m26_c01434{transform:matrix(0.303854,0.009419,-0.007746,0.249880,0,0);-ms-transform:matrix(0.303854,0.009419,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.303854,0.009419,-0.007746,0.249880,0,0);}
.mab_c01434{transform:matrix(0.305763,0.010406,-0.008504,0.249855,0,0);-ms-transform:matrix(0.305763,0.010406,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.305763,0.010406,-0.008504,0.249855,0,0);}
.m21_c01434{transform:matrix(0.305798,0.009480,-0.007746,0.249880,0,0);-ms-transform:matrix(0.305798,0.009480,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.305798,0.009480,-0.007746,0.249880,0,0);}
.mb2_c01434{transform:matrix(0.305913,0.010105,-0.008254,0.249864,0,0);-ms-transform:matrix(0.305913,0.010105,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.305913,0.010105,-0.008254,0.249864,0,0);}
.ma1_c01434{transform:matrix(0.307107,0.010759,-0.008753,0.249847,0,0);-ms-transform:matrix(0.307107,0.010759,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.307107,0.010759,-0.008753,0.249847,0,0);}
.m23_c01434{transform:matrix(0.308387,0.009560,-0.007746,0.249880,0,0);-ms-transform:matrix(0.308387,0.009560,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.308387,0.009560,-0.007746,0.249880,0,0);}
.mf1_c01434{transform:matrix(0.312459,0.010634,-0.008504,0.249855,0,0);-ms-transform:matrix(0.312459,0.010634,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.312459,0.010634,-0.008504,0.249855,0,0);}
.m5f_c01434{transform:matrix(0.314306,0.011326,-0.009003,0.249838,0,0);-ms-transform:matrix(0.314306,0.011326,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.314306,0.011326,-0.009003,0.249838,0,0);}
.mdc_c01434{transform:matrix(0.330787,0.011589,-0.008753,0.249847,0,0);-ms-transform:matrix(0.330787,0.011589,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.330787,0.011589,-0.008753,0.249847,0,0);}
.ma6_c01434{transform:matrix(0.347113,0.017026,-0.012248,0.249700,0,0);-ms-transform:matrix(0.347113,0.017026,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.347113,0.017026,-0.012248,0.249700,0,0);}
.m34_c01434{transform:matrix(0.363690,0.011274,-0.007746,0.249880,0,0);-ms-transform:matrix(0.363690,0.011274,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.363690,0.011274,-0.007746,0.249880,0,0);}
.m9a_c01434{transform:matrix(0.364223,0.015677,-0.010751,0.249769,0,0);-ms-transform:matrix(0.364223,0.015677,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.364223,0.015677,-0.010751,0.249769,0,0);}
.m74_c01434{transform:matrix(0.373901,0.012351,-0.008254,0.249864,0,0);-ms-transform:matrix(0.373901,0.012351,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.373901,0.012351,-0.008254,0.249864,0,0);}
.m77_c01434{transform:matrix(0.382546,0.012637,-0.008254,0.249864,0,0);-ms-transform:matrix(0.382546,0.012637,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.382546,0.012637,-0.008254,0.249864,0,0);}
.m72_c01434{transform:matrix(0.391936,0.012947,-0.008254,0.249864,0,0);-ms-transform:matrix(0.391936,0.012947,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.391936,0.012947,-0.008254,0.249864,0,0);}
.m5e_c01434{transform:matrix(0.392655,0.014150,-0.009003,0.249838,0,0);-ms-transform:matrix(0.392655,0.014150,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.392655,0.014150,-0.009003,0.249838,0,0);}
.m73_c01434{transform:matrix(0.395379,0.013061,-0.008254,0.249864,0,0);-ms-transform:matrix(0.395379,0.013061,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.395379,0.013061,-0.008254,0.249864,0,0);}
.ma5_c01434{transform:matrix(0.396049,0.019426,-0.012248,0.249700,0,0);-ms-transform:matrix(0.396049,0.019426,-0.012248,0.249700,0,0);-webkit-transform:matrix(0.396049,0.019426,-0.012248,0.249700,0,0);}
.m99_c01434{transform:matrix(0.396313,0.017059,-0.010751,0.249769,0,0);-ms-transform:matrix(0.396313,0.017059,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.396313,0.017059,-0.010751,0.249769,0,0);}
.m78_c01434{transform:matrix(0.403355,0.013324,-0.008254,0.249864,0,0);-ms-transform:matrix(0.403355,0.013324,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.403355,0.013324,-0.008254,0.249864,0,0);}
.m76_c01434{transform:matrix(0.405784,0.013404,-0.008254,0.249864,0,0);-ms-transform:matrix(0.405784,0.013404,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.405784,0.013404,-0.008254,0.249864,0,0);}
.m37_c01434{transform:matrix(0.808117,0.025052,-0.007746,0.249880,0,0);-ms-transform:matrix(0.808117,0.025052,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.808117,0.025052,-0.007746,0.249880,0,0);}
.ma4_c01434{transform:matrix(0.813915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.813915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.813915,0.000000,0.000000,0.250000,0,0);}
.m3a_c01434{transform:matrix(0.880502,0.027296,-0.007746,0.249880,0,0);-ms-transform:matrix(0.880502,0.027296,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.880502,0.027296,-0.007746,0.249880,0,0);}
.m39_c01434{transform:matrix(0.971208,0.030107,-0.007746,0.249880,0,0);-ms-transform:matrix(0.971208,0.030107,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.971208,0.030107,-0.007746,0.249880,0,0);}
.m38_c01434{transform:matrix(1.034938,0.032083,-0.007746,0.249880,0,0);-ms-transform:matrix(1.034938,0.032083,-0.007746,0.249880,0,0);-webkit-transform:matrix(1.034938,0.032083,-0.007746,0.249880,0,0);}
.m3b_c01434{transform:matrix(1.125085,0.034878,-0.007746,0.249880,0,0);-ms-transform:matrix(1.125085,0.034878,-0.007746,0.249880,0,0);-webkit-transform:matrix(1.125085,0.034878,-0.007746,0.249880,0,0);}
.m35_c01434{transform:matrix(1.156305,0.035845,-0.007746,0.249880,0,0);-ms-transform:matrix(1.156305,0.035845,-0.007746,0.249880,0,0);-webkit-transform:matrix(1.156305,0.035845,-0.007746,0.249880,0,0);}
.ma3_c01434{transform:matrix(1.399450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.399450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.399450,0.000000,0.000000,0.250000,0,0);}
.m36_c01434{transform:matrix(5.525106,0.171278,-0.007746,0.249880,0,0);-ms-transform:matrix(5.525106,0.171278,-0.007746,0.249880,0,0);-webkit-transform:matrix(5.525106,0.171278,-0.007746,0.249880,0,0);}
.v0_c01434{vertical-align:0.000000px;}
.ls0_c01434{letter-spacing:0.000000px;}
.sc__c01434{text-shadow:none;}
.sc0_c01434{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__c01434{-webkit-text-stroke:0px transparent;}
.sc0_c01434{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01434{word-spacing:0.000000px;}
._1_c01434{width:38.809508px;}
._0_c01434{width:162.575514px;}
.fc0_c01434{color:transparent;}
.fs17_c01434{font-size:18.000000px;}
.fs6_c01434{font-size:24.011529px;}
.fs1e_c01434{font-size:36.000000px;}
.fs24_c01434{font-size:42.000000px;}
.fsf_c01434{font-size:47.978155px;}
.fsc_c01434{font-size:47.983125px;}
.fs18_c01434{font-size:48.009647px;}
.fs15_c01434{font-size:53.995950px;}
.fs1d_c01434{font-size:59.976776px;}
.fsa_c01434{font-size:60.000000px;}
.fs11_c01434{font-size:65.967817px;}
.fs19_c01434{font-size:65.969963px;}
.fs4_c01434{font-size:65.972175px;}
.fs7_c01434{font-size:65.974453px;}
.fs14_c01434{font-size:65.979207px;}
.fs1b_c01434{font-size:65.986832px;}
.fs23_c01434{font-size:65.992245px;}
.fs13_c01434{font-size:66.000000px;}
.fsb_c01434{font-size:66.029693px;}
.fs5_c01434{font-size:66.031705px;}
.fse_c01434{font-size:71.967233px;}
.fs1f_c01434{font-size:71.969646px;}
.fs10_c01434{font-size:71.972131px;}
.fs22_c01434{font-size:71.985635px;}
.fs1c_c01434{font-size:71.988551px;}
.fs2_c01434{font-size:72.000000px;}
.fs8_c01434{font-size:72.032393px;}
.fs20_c01434{font-size:77.978352px;}
.fs1_c01434{font-size:78.000000px;}
.fs16_c01434{font-size:83.959040px;}
.fs1a_c01434{font-size:83.964587px;}
.fs21_c01434{font-size:83.976687px;}
.fs3_c01434{font-size:84.000000px;}
.fsd_c01434{font-size:84.037791px;}
.fs12_c01434{font-size:95.962841px;}
.fs9_c01434{font-size:96.043190px;}
.fs0_c01434{font-size:108.000000px;}
.y0_c01434{bottom:0.000000px;}
.y104_c01434{bottom:65.283585px;}
.y103_c01434{bottom:66.714000px;}
.y102_c01434{bottom:71.460300px;}
.y101_c01434{bottom:73.731660px;}
.y100_c01434{bottom:75.078000px;}
.yff_c01434{bottom:77.539080px;}
.yfe_c01434{bottom:78.932880px;}
.yfd_c01434{bottom:82.901520px;}
.yfc_c01434{bottom:83.716500px;}
.yfb_c01434{bottom:84.786000px;}
.yfa_c01434{bottom:114.814824px;}
.yf9_c01434{bottom:115.820719px;}
.yf8_c01434{bottom:118.552674px;}
.yf7_c01434{bottom:134.436168px;}
.yf6_c01434{bottom:136.174725px;}
.yf5_c01434{bottom:142.521732px;}
.yf4_c01434{bottom:143.723235px;}
.yf3_c01434{bottom:145.350699px;}
.yf2_c01434{bottom:147.837267px;}
.yf1_c01434{bottom:149.131053px;}
.yf0_c01434{bottom:152.898810px;}
.yef_c01434{bottom:154.148478px;}
.yee_c01434{bottom:155.395296px;}
.yed_c01434{bottom:158.238000px;}
.yec_c01434{bottom:175.910304px;}
.yeb_c01434{bottom:176.930913px;}
.yea_c01434{bottom:178.998153px;}
.ye9_c01434{bottom:180.069346px;}
.ye8_c01434{bottom:182.151408px;}
.ye7_c01434{bottom:183.474296px;}
.ye6_c01434{bottom:183.817100px;}
.ye5_c01434{bottom:185.359672px;}
.ye4_c01434{bottom:186.342459px;}
.ye3_c01434{bottom:187.460330px;}
.ye2_c01434{bottom:189.569299px;}
.ye1_c01434{bottom:208.636419px;}
.ye0_c01434{bottom:211.208757px;}
.ydf_c01434{bottom:212.751966px;}
.yde_c01434{bottom:214.277325px;}
.ydd_c01434{bottom:217.561674px;}
.ydc_c01434{bottom:220.190316px;}
.ydb_c01434{bottom:221.697468px;}
.yda_c01434{bottom:222.808248px;}
.y6_c01434{bottom:225.735000px;}
.yd9_c01434{bottom:226.162314px;}
.yd8_c01434{bottom:228.706500px;}
.yd1_c01434{bottom:248.400000px;}
.yd0_c01434{bottom:250.342837px;}
.ycf_c01434{bottom:252.730065px;}
.yce_c01434{bottom:253.816500px;}
.ycd_c01434{bottom:254.033925px;}
.ycc_c01434{bottom:256.235932px;}
.ycb_c01434{bottom:258.928218px;}
.yca_c01434{bottom:260.291427px;}
.yc9_c01434{bottom:262.462500px;}
.yd7_c01434{bottom:278.913195px;}
.yd6_c01434{bottom:280.049138px;}
.yd5_c01434{bottom:281.941605px;}
.yd4_c01434{bottom:283.160235px;}
.yd3_c01434{bottom:285.832958px;}
.yd2_c01434{bottom:289.995000px;}
.yc8_c01434{bottom:290.945700px;}
.yc7_c01434{bottom:292.273020px;}
.yc6_c01434{bottom:295.741380px;}
.y5_c01434{bottom:297.141000px;}
.yc5_c01434{bottom:298.844520px;}
.yc4_c01434{bottom:300.531000px;}
.yc3_c01434{bottom:323.477745px;}
.yc2_c01434{bottom:324.448575px;}
.yc1_c01434{bottom:326.433660px;}
.yc0_c01434{bottom:327.405930px;}
.ybf_c01434{bottom:328.383870px;}
.ybe_c01434{bottom:329.713395px;}
.ybd_c01434{bottom:331.018620px;}
.ybc_c01434{bottom:332.380500px;}
.ybb_c01434{bottom:352.715778px;}
.yba_c01434{bottom:353.446965px;}
.yb9_c01434{bottom:357.189192px;}
.yb8_c01434{bottom:360.144387px;}
.yb7_c01434{bottom:361.670511px;}
.yb6_c01434{bottom:362.780985px;}
.yb5_c01434{bottom:366.472008px;}
.yb4_c01434{bottom:370.189500px;}
.yb3_c01434{bottom:398.140209px;}
.yb2_c01434{bottom:399.728286px;}
.yb1_c01434{bottom:403.399500px;}
.yb0_c01434{bottom:421.254051px;}
.yaf_c01434{bottom:422.690442px;}
.yae_c01434{bottom:423.417746px;}
.yad_c01434{bottom:426.702467px;}
.yac_c01434{bottom:427.750926px;}
.yab_c01434{bottom:429.203949px;}
.yaa_c01434{bottom:432.095096px;}
.ya9_c01434{bottom:434.269729px;}
.ya8_c01434{bottom:437.887586px;}
.ya7_c01434{bottom:441.465000px;}
.y9f_c01434{bottom:461.985000px;}
.y9e_c01434{bottom:469.862437px;}
.y9d_c01434{bottom:475.213500px;}
.ya6_c01434{bottom:494.946057px;}
.ya5_c01434{bottom:496.007214px;}
.ya4_c01434{bottom:499.391319px;}
.ya3_c01434{bottom:500.508780px;}
.ya2_c01434{bottom:503.835000px;}
.y94_c01434{bottom:505.240501px;}
.y93_c01434{bottom:507.659025px;}
.y92_c01434{bottom:509.285175px;}
.y91_c01434{bottom:513.289500px;}
.ya1_c01434{bottom:529.405988px;}
.ya0_c01434{bottom:532.204500px;}
.y9c_c01434{bottom:533.206284px;}
.y9b_c01434{bottom:534.970716px;}
.y9a_c01434{bottom:536.387484px;}
.y99_c01434{bottom:540.542028px;}
.y98_c01434{bottom:543.374412px;}
.y97_c01434{bottom:547.573500px;}
.y90_c01434{bottom:549.181500px;}
.y96_c01434{bottom:581.549622px;}
.y95_c01434{bottom:583.005000px;}
.y8f_c01434{bottom:598.643378px;}
.y8e_c01434{bottom:602.133578px;}
.y8d_c01434{bottom:607.143968px;}
.y8c_c01434{bottom:608.544195px;}
.y8b_c01434{bottom:612.843787px;}
.y8a_c01434{bottom:616.326532px;}
.y89_c01434{bottom:617.847038px;}
.y88_c01434{bottom:620.476500px;}
.y87_c01434{bottom:633.756192px;}
.y86_c01434{bottom:634.931664px;}
.y85_c01434{bottom:636.332304px;}
.y105_c01434{bottom:636.930000px;}
.y84_c01434{bottom:638.398416px;}
.y83_c01434{bottom:640.179264px;}
.y82_c01434{bottom:642.272112px;}
.y81_c01434{bottom:645.443856px;}
.y80_c01434{bottom:646.506864px;}
.y7f_c01434{bottom:649.254624px;}
.y7e_c01434{bottom:650.376144px;}
.y7d_c01434{bottom:652.062000px;}
.y7c_c01434{bottom:672.263310px;}
.y7b_c01434{bottom:675.696862px;}
.y7a_c01434{bottom:678.419092px;}
.y79_c01434{bottom:682.182187px;}
.y78_c01434{bottom:686.473485px;}
.y77_c01434{bottom:688.403385px;}
.y4_c01434{bottom:690.241500px;}
.y76_c01434{bottom:691.486500px;}
.y75_c01434{bottom:711.983615px;}
.y74_c01434{bottom:714.944498px;}
.y73_c01434{bottom:715.875224px;}
.y72_c01434{bottom:717.803730px;}
.y71_c01434{bottom:718.971822px;}
.y70_c01434{bottom:720.317736px;}
.y6f_c01434{bottom:721.596177px;}
.y6e_c01434{bottom:722.820038px;}
.y6d_c01434{bottom:741.511462px;}
.y6c_c01434{bottom:744.868305px;}
.y6b_c01434{bottom:745.890035px;}
.y6a_c01434{bottom:747.016803px;}
.y69_c01434{bottom:749.218118px;}
.y68_c01434{bottom:750.609365px;}
.y67_c01434{bottom:753.103967px;}
.y66_c01434{bottom:754.592580px;}
.y65_c01434{bottom:755.997836px;}
.y64_c01434{bottom:759.253500px;}
.y63_c01434{bottom:778.339185px;}
.y62_c01434{bottom:781.997685px;}
.y61_c01434{bottom:782.978550px;}
.y60_c01434{bottom:785.280120px;}
.y5f_c01434{bottom:786.924915px;}
.y5e_c01434{bottom:789.541260px;}
.y5d_c01434{bottom:792.517740px;}
.y5c_c01434{bottom:793.810500px;}
.y55_c01434{bottom:796.762500px;}
.y5b_c01434{bottom:828.288306px;}
.y5a_c01434{bottom:830.808000px;}
.y53_c01434{bottom:851.276235px;}
.y52_c01434{bottom:855.494385px;}
.y51_c01434{bottom:856.938705px;}
.y50_c01434{bottom:858.977580px;}
.y4f_c01434{bottom:860.084910px;}
.y4e_c01434{bottom:862.518315px;}
.y4d_c01434{bottom:863.926710px;}
.y4c_c01434{bottom:865.703385px;}
.y4b_c01434{bottom:868.857465px;}
.y3_c01434{bottom:870.067500px;}
.y4a_c01434{bottom:887.385045px;}
.y49_c01434{bottom:891.980310px;}
.y48_c01434{bottom:894.321615px;}
.y47_c01434{bottom:896.258325px;}
.y46_c01434{bottom:898.916115px;}
.y45_c01434{bottom:899.872680px;}
.y44_c01434{bottom:901.542000px;}
.y43_c01434{bottom:920.514675px;}
.y42_c01434{bottom:921.725535px;}
.y41_c01434{bottom:922.885522px;}
.y40_c01434{bottom:925.895400px;}
.y3f_c01434{bottom:928.586340px;}
.y3e_c01434{bottom:929.352000px;}
.y59_c01434{bottom:931.311045px;}
.y58_c01434{bottom:932.632200px;}
.y57_c01434{bottom:934.917795px;}
.y56_c01434{bottom:936.909000px;}
.y54_c01434{bottom:939.735000px;}
.y3d_c01434{bottom:963.395022px;}
.y3c_c01434{bottom:963.971205px;}
.y3b_c01434{bottom:966.841414px;}
.y3a_c01434{bottom:968.110494px;}
.y39_c01434{bottom:970.310453px;}
.y38_c01434{bottom:972.263070px;}
.y37_c01434{bottom:988.120432px;}
.y36_c01434{bottom:989.075154px;}
.y35_c01434{bottom:989.294421px;}
.y34_c01434{bottom:990.249143px;}
.y33_c01434{bottom:990.977727px;}
.y30_c01434{bottom:992.001925px;}
.y2f_c01434{bottom:995.100453px;}
.y2e_c01434{bottom:996.105411px;}
.y2d_c01434{bottom:997.152731px;}
.y32_c01434{bottom:997.490137px;}
.y2c_c01434{bottom:1001.497504px;}
.y31_c01434{bottom:1002.813319px;}
.y2b_c01434{bottom:1005.282558px;}
.y2a_c01434{bottom:1006.640172px;}
.y29_c01434{bottom:1007.653500px;}
.y28_c01434{bottom:1028.943745px;}
.y27_c01434{bottom:1030.317820px;}
.y26_c01434{bottom:1031.646697px;}
.y25_c01434{bottom:1034.723742px;}
.y24_c01434{bottom:1037.452595px;}
.y23_c01434{bottom:1039.495200px;}
.y22_c01434{bottom:1042.894117px;}
.y21_c01434{bottom:1046.246209px;}
.y2_c01434{bottom:1046.529000px;}
.y20_c01434{bottom:1066.588327px;}
.y1f_c01434{bottom:1069.686855px;}
.y1e_c01434{bottom:1070.700183px;}
.y1d_c01434{bottom:1073.761278px;}
.y1c_c01434{bottom:1075.095689px;}
.y1b_c01434{bottom:1077.455935px;}
.y1a_c01434{bottom:1078.479447px;}
.y19_c01434{bottom:1079.158626px;}
.y18_c01434{bottom:1082.173500px;}
.y17_c01434{bottom:1105.585718px;}
.y16_c01434{bottom:1108.589385px;}
.y15_c01434{bottom:1109.646330px;}
.y14_c01434{bottom:1112.350631px;}
.y13_c01434{bottom:1113.642680px;}
.y12_c01434{bottom:1115.383500px;}
.y11_c01434{bottom:1135.103160px;}
.y10_c01434{bottom:1138.400922px;}
.yf_c01434{bottom:1139.567343px;}
.ye_c01434{bottom:1140.688527px;}
.yd_c01434{bottom:1141.759476px;}
.yc_c01434{bottom:1144.386537px;}
.yb_c01434{bottom:1145.534292px;}
.ya_c01434{bottom:1148.863011px;}
.y9_c01434{bottom:1151.122158px;}
.y8_c01434{bottom:1154.806500px;}
.y1_c01434{bottom:1155.069000px;}
.y7_c01434{bottom:1221.748500px;}
.h19_c01434{height:18.000000px;}
.h8_c01434{height:24.011529px;}
.h20_c01434{height:36.000000px;}
.h26_c01434{height:42.000000px;}
.h11_c01434{height:47.978155px;}
.he_c01434{height:47.983125px;}
.h1a_c01434{height:48.009647px;}
.h17_c01434{height:53.995950px;}
.h1f_c01434{height:59.976776px;}
.hc_c01434{height:60.000000px;}
.h13_c01434{height:65.967817px;}
.h1b_c01434{height:65.969963px;}
.h6_c01434{height:65.972175px;}
.h9_c01434{height:65.974453px;}
.h16_c01434{height:65.979207px;}
.h1d_c01434{height:65.986832px;}
.h25_c01434{height:65.992245px;}
.h15_c01434{height:66.000000px;}
.hd_c01434{height:66.029693px;}
.h7_c01434{height:66.031705px;}
.h10_c01434{height:71.967233px;}
.h21_c01434{height:71.969646px;}
.h12_c01434{height:71.972131px;}
.h24_c01434{height:71.985635px;}
.h1e_c01434{height:71.988551px;}
.h4_c01434{height:72.000000px;}
.ha_c01434{height:72.032393px;}
.h22_c01434{height:77.978352px;}
.h3_c01434{height:78.000000px;}
.h18_c01434{height:83.959040px;}
.h1c_c01434{height:83.964587px;}
.h23_c01434{height:83.976687px;}
.h5_c01434{height:84.000000px;}
.hf_c01434{height:84.037791px;}
.h14_c01434{height:95.962841px;}
.hb_c01434{height:96.043190px;}
.h2_c01434{height:108.000000px;}
.h1_c01434{height:1250.250000px;}
.h0_c01434{height:1250.370000px;}
.w0_c01434{width:912.000000px;}
.x0_c01434{left:0.000000px;}
.x9_c01434{left:114.750000px;}
.x8_c01434{left:116.640000px;}
.x6_c01434{left:117.990000px;}
.x1_c01434{left:122.580000px;}
.x4_c01434{left:123.660000px;}
.x3_c01434{left:129.600000px;}
.x7_c01434{left:174.420000px;}
.x2_c01434{left:178.200000px;}
.x5_c01434{left:179.820000px;}
.xad_c01434{left:213.642000px;}
.x9e_c01434{left:215.482500px;}
.x94_c01434{left:217.591500px;}
.x8c_c01434{left:219.865500px;}
.x79_c01434{left:222.231000px;}
.x78_c01434{left:223.560000px;}
.x67_c01434{left:225.238500px;}
.x26_c01434{left:228.246778px;}
.x1d_c01434{left:229.335000px;}
.xd_c01434{left:231.462000px;}
.x50_c01434{left:236.250000px;}
.x9f_c01434{left:257.602338px;}
.x7e_c01434{left:266.058000px;}
.xc1_c01434{left:273.846580px;}
.xb7_c01434{left:275.723467px;}
.x98_c01434{left:279.658500px;}
.x92_c01434{left:282.711000px;}
.xc3_c01434{left:284.710500px;}
.x7c_c01434{left:286.903500px;}
.xae_c01434{left:288.396171px;}
.x6c_c01434{left:292.326000px;}
.x55_c01434{left:295.164000px;}
.x44_c01434{left:297.928500px;}
.x34_c01434{left:299.520759px;}
.x38_c01434{left:300.890426px;}
.x2d_c01434{left:301.957500px;}
.xc4_c01434{left:305.064626px;}
.x17_c01434{left:306.825000px;}
.x51_c01434{left:310.725000px;}
.x68_c01434{left:313.239411px;}
.x7d_c01434{left:320.715654px;}
.x99_c01434{left:325.054500px;}
.x1e_c01434{left:326.589000px;}
.x8d_c01434{left:328.163594px;}
.x49_c01434{left:329.803470px;}
.xa2_c01434{left:332.878047px;}
.x2e_c01434{left:334.645500px;}
.x27_c01434{left:336.378778px;}
.x57_c01434{left:338.664000px;}
.xe_c01434{left:339.716637px;}
.xb8_c01434{left:341.569049px;}
.x75_c01434{left:343.951430px;}
.x6d_c01434{left:344.956317px;}
.x1f_c01434{left:348.498000px;}
.x45_c01434{left:353.572500px;}
.xc2_c01434{left:361.882906px;}
.x18_c01434{left:362.980500px;}
.x56_c01434{left:365.085508px;}
.xa3_c01434{left:366.093798px;}
.x39_c01434{left:368.237111px;}
.x7a_c01434{left:374.253825px;}
.x52_c01434{left:377.098500px;}
.x2f_c01434{left:378.439500px;}
.x6e_c01434{left:379.968770px;}
.x20_c01434{left:381.514500px;}
.x46_c01434{left:385.458000px;}
.xaf_c01434{left:386.946522px;}
.x5c_c01434{left:394.356343px;}
.x7f_c01434{left:397.148279px;}
.x19_c01434{left:404.659500px;}
.xf_c01434{left:406.095692px;}
.xb9_c01434{left:407.170374px;}
.x9a_c01434{left:412.879500px;}
.xb0_c01434{left:419.583852px;}
.xa0_c01434{left:421.725550px;}
.x93_c01434{left:424.711857px;}
.x62_c01434{left:427.180329px;}
.x4a_c01434{left:429.316485px;}
.xa4_c01434{left:431.693632px;}
.x95_c01434{left:435.271103px;}
.x58_c01434{left:437.880000px;}
.x7b_c01434{left:439.553960px;}
.x3a_c01434{left:444.095307px;}
.x28_c01434{left:446.021278px;}
.xa_c01434{left:451.710000px;}
.x53_c01434{left:453.285000px;}
.xa1_c01434{left:454.875368px;}
.x21_c01434{left:457.651500px;}
.xbe_c01434{left:461.695844px;}
.xb1_c01434{left:463.867524px;}
.x6f_c01434{left:465.750402px;}
.x63_c01434{left:467.400870px;}
.xb_c01434{left:474.390000px;}
.x9b_c01434{left:477.886500px;}
.x5d_c01434{left:481.961651px;}
.x35_c01434{left:483.054105px;}
.x80_c01434{left:485.571767px;}
.x3b_c01434{left:487.842504px;}
.x69_c01434{left:490.810162px;}
.x1a_c01434{left:491.895000px;}
.x87_c01434{left:495.028500px;}
.x54_c01434{left:497.323500px;}
.x70_c01434{left:498.936183px;}
.x22_c01434{left:500.697000px;}
.x83_c01434{left:501.930000px;}
.x10_c01434{left:503.901288px;}
.x4b_c01434{left:505.375440px;}
.xba_c01434{left:507.299434px;}
.xa8_c01434{left:510.396000px;}
.x29_c01434{left:511.911778px;}
.xc_c01434{left:517.590000px;}
.x1b_c01434{left:525.990000px;}
.x64_c01434{left:533.820155px;}
.x11_c01434{left:537.625031px;}
.x4c_c01434{left:539.984370px;}
.xb2_c01434{left:541.103211px;}
.x9c_c01434{left:544.056000px;}
.xa5_c01434{left:552.498000px;}
.x84_c01434{left:554.850000px;}
.x5e_c01434{left:557.480057px;}
.xbf_c01434{left:561.079361px;}
.x65_c01434{left:565.901303px;}
.xc5_c01434{left:568.322341px;}
.xbb_c01434{left:572.310300px;}
.x3e_c01434{left:574.750500px;}
.x9d_c01434{left:576.417000px;}
.x59_c01434{left:579.918000px;}
.xa6_c01434{left:583.507959px;}
.x3c_c01434{left:586.823142px;}
.x8e_c01434{left:591.040953px;}
.x88_c01434{left:592.760670px;}
.x3f_c01434{left:596.604624px;}
.x6a_c01434{left:598.219645px;}
.x23_c01434{left:599.442000px;}
.x4d_c01434{left:603.693045px;}
.x3d_c01434{left:606.717398px;}
.x12_c01434{left:614.814264px;}
.x47_c01434{left:616.651500px;}
.x1c_c01434{left:622.882500px;}
.x89_c01434{left:625.594304px;}
.xa9_c01434{left:629.192585px;}
.x24_c01434{left:632.130000px;}
.x8f_c01434{left:635.027922px;}
.xb3_c01434{left:637.605112px;}
.x30_c01434{left:640.692000px;}
.x13_c01434{left:646.281266px;}
.x4e_c01434{left:648.834345px;}
.xa7_c01434{left:651.646252px;}
.x5a_c01434{left:656.637000px;}
.x81_c01434{left:659.501163px;}
.x71_c01434{left:663.290164px;}
.x5f_c01434{left:666.236691px;}
.x66_c01434{left:667.887692px;}
.xbc_c01434{left:670.299401px;}
.x40_c01434{left:673.411740px;}
.x31_c01434{left:674.476500px;}
.x6b_c01434{left:675.919868px;}
.x14_c01434{left:679.224289px;}
.xb4_c01434{left:682.423749px;}
.x5b_c01434{left:689.332500px;}
.x2a_c01434{left:699.198778px;}
.x60_c01434{left:700.347046px;}
.xbd_c01434{left:702.138673px;}
.xaa_c01434{left:705.479721px;}
.x32_c01434{left:706.894500px;}
.x96_c01434{left:709.526572px;}
.x15_c01434{left:713.496483px;}
.x82_c01434{left:714.584525px;}
.x72_c01434{left:718.886013px;}
.x8a_c01434{left:725.027271px;}
.xb5_c01434{left:727.766861px;}
.x97_c01434{left:731.010567px;}
.x25_c01434{left:732.082500px;}
.xc6_c01434{left:733.812000px;}
.xab_c01434{left:740.262903px;}
.x2b_c01434{left:742.065778px;}
.x85_c01434{left:747.741000px;}
.x76_c01434{left:749.058917px;}
.x8b_c01434{left:756.206561px;}
.x41_c01434{left:759.322244px;}
.x36_c01434{left:765.643089px;}
.xc7_c01434{left:767.835442px;}
.x48_c01434{left:769.827000px;}
.x37_c01434{left:773.200554px;}
.x4f_c01434{left:780.631425px;}
.x73_c01434{left:783.387447px;}
.x2c_c01434{left:786.390778px;}
.x90_c01434{left:788.222574px;}
.x42_c01434{left:792.431601px;}
.xac_c01434{left:794.279333px;}
.xc0_c01434{left:802.310888px;}
.xb6_c01434{left:803.348203px;}
.x86_c01434{left:804.796388px;}
.x33_c01434{left:806.847000px;}
.x16_c01434{left:810.392490px;}
.x43_c01434{left:826.993005px;}
.x91_c01434{left:831.706047px;}
.x61_c01434{left:832.898363px;}
.x77_c01434{left:848.679197px;}
.x74_c01434{left:863.810443px;}
.xc8_c01434{left:896.670000px;}
@media print{
.v0_c01434{vertical-align:0.000000pt;}
.ls0_c01434{letter-spacing:0.000000pt;}
.ws0_c01434{word-spacing:0.000000pt;}
._1_c01434{width:34.497341pt;}
._0_c01434{width:144.511568pt;}
.fs17_c01434{font-size:16.000000pt;}
.fs6_c01434{font-size:21.343582pt;}
.fs1e_c01434{font-size:32.000000pt;}
.fs24_c01434{font-size:37.333333pt;}
.fsf_c01434{font-size:42.647249pt;}
.fsc_c01434{font-size:42.651667pt;}
.fs18_c01434{font-size:42.675242pt;}
.fs15_c01434{font-size:47.996400pt;}
.fs1d_c01434{font-size:53.312689pt;}
.fsa_c01434{font-size:53.333333pt;}
.fs11_c01434{font-size:58.638060pt;}
.fs19_c01434{font-size:58.639967pt;}
.fs4_c01434{font-size:58.641933pt;}
.fs7_c01434{font-size:58.643958pt;}
.fs14_c01434{font-size:58.648184pt;}
.fs1b_c01434{font-size:58.654961pt;}
.fs23_c01434{font-size:58.659773pt;}
.fs13_c01434{font-size:58.666667pt;}
.fsb_c01434{font-size:58.693061pt;}
.fs5_c01434{font-size:58.694849pt;}
.fse_c01434{font-size:63.970873pt;}
.fs1f_c01434{font-size:63.973018pt;}
.fs10_c01434{font-size:63.975227pt;}
.fs22_c01434{font-size:63.987231pt;}
.fs1c_c01434{font-size:63.989823pt;}
.fs2_c01434{font-size:64.000000pt;}
.fs8_c01434{font-size:64.028794pt;}
.fs20_c01434{font-size:69.314091pt;}
.fs1_c01434{font-size:69.333333pt;}
.fs16_c01434{font-size:74.630258pt;}
.fs1a_c01434{font-size:74.635188pt;}
.fs21_c01434{font-size:74.645944pt;}
.fs3_c01434{font-size:74.666667pt;}
.fsd_c01434{font-size:74.700259pt;}
.fs12_c01434{font-size:85.300303pt;}
.fs9_c01434{font-size:85.371725pt;}
.fs0_c01434{font-size:96.000000pt;}
.y0_c01434{bottom:0.000000pt;}
.y104_c01434{bottom:58.029853pt;}
.y103_c01434{bottom:59.301333pt;}
.y102_c01434{bottom:63.520267pt;}
.y101_c01434{bottom:65.539253pt;}
.y100_c01434{bottom:66.736000pt;}
.yff_c01434{bottom:68.923627pt;}
.yfe_c01434{bottom:70.162560pt;}
.yfd_c01434{bottom:73.690240pt;}
.yfc_c01434{bottom:74.414667pt;}
.yfb_c01434{bottom:75.365333pt;}
.yfa_c01434{bottom:102.057621pt;}
.yf9_c01434{bottom:102.951751pt;}
.yf8_c01434{bottom:105.380155pt;}
.yf7_c01434{bottom:119.498816pt;}
.yf6_c01434{bottom:121.044200pt;}
.yf5_c01434{bottom:126.685984pt;}
.yf4_c01434{bottom:127.753987pt;}
.yf3_c01434{bottom:129.200621pt;}
.yf2_c01434{bottom:131.410904pt;}
.yf1_c01434{bottom:132.560936pt;}
.yf0_c01434{bottom:135.910053pt;}
.yef_c01434{bottom:137.020869pt;}
.yee_c01434{bottom:138.129152pt;}
.yed_c01434{bottom:140.656000pt;}
.yec_c01434{bottom:156.364715pt;}
.yeb_c01434{bottom:157.271923pt;}
.yea_c01434{bottom:159.109469pt;}
.ye9_c01434{bottom:160.061641pt;}
.ye8_c01434{bottom:161.912363pt;}
.ye7_c01434{bottom:163.088263pt;}
.ye6_c01434{bottom:163.392977pt;}
.ye5_c01434{bottom:164.764153pt;}
.ye4_c01434{bottom:165.637741pt;}
.ye3_c01434{bottom:166.631404pt;}
.ye2_c01434{bottom:168.506044pt;}
.ye1_c01434{bottom:185.454595pt;}
.ye0_c01434{bottom:187.741117pt;}
.ydf_c01434{bottom:189.112859pt;}
.yde_c01434{bottom:190.468733pt;}
.ydd_c01434{bottom:193.388155pt;}
.ydc_c01434{bottom:195.724725pt;}
.ydb_c01434{bottom:197.064416pt;}
.yda_c01434{bottom:198.051776pt;}
.y6_c01434{bottom:200.653333pt;}
.yd9_c01434{bottom:201.033168pt;}
.yd8_c01434{bottom:203.294667pt;}
.yd1_c01434{bottom:220.800000pt;}
.yd0_c01434{bottom:222.526967pt;}
.ycf_c01434{bottom:224.648947pt;}
.yce_c01434{bottom:225.614667pt;}
.ycd_c01434{bottom:225.807933pt;}
.ycc_c01434{bottom:227.765273pt;}
.ycb_c01434{bottom:230.158416pt;}
.yca_c01434{bottom:231.370157pt;}
.yc9_c01434{bottom:233.300000pt;}
.yd7_c01434{bottom:247.922840pt;}
.yd6_c01434{bottom:248.932567pt;}
.yd5_c01434{bottom:250.614760pt;}
.yd4_c01434{bottom:251.697987pt;}
.yd3_c01434{bottom:254.073740pt;}
.yd2_c01434{bottom:257.773333pt;}
.yc8_c01434{bottom:258.618400pt;}
.yc7_c01434{bottom:259.798240pt;}
.yc6_c01434{bottom:262.881227pt;}
.y5_c01434{bottom:264.125333pt;}
.yc5_c01434{bottom:265.639573pt;}
.yc4_c01434{bottom:267.138667pt;}
.yc3_c01434{bottom:287.535773pt;}
.yc2_c01434{bottom:288.398733pt;}
.yc1_c01434{bottom:290.163253pt;}
.yc0_c01434{bottom:291.027493pt;}
.ybf_c01434{bottom:291.896773pt;}
.ybe_c01434{bottom:293.078573pt;}
.ybd_c01434{bottom:294.238773pt;}
.ybc_c01434{bottom:295.449333pt;}
.ybb_c01434{bottom:313.525136pt;}
.yba_c01434{bottom:314.175080pt;}
.yb9_c01434{bottom:317.501504pt;}
.yb8_c01434{bottom:320.128344pt;}
.yb7_c01434{bottom:321.484899pt;}
.yb6_c01434{bottom:322.471987pt;}
.yb5_c01434{bottom:325.752896pt;}
.yb4_c01434{bottom:329.057333pt;}
.yb3_c01434{bottom:353.902408pt;}
.yb2_c01434{bottom:355.314032pt;}
.yb1_c01434{bottom:358.577333pt;}
.yb0_c01434{bottom:374.448045pt;}
.yaf_c01434{bottom:375.724837pt;}
.yae_c01434{bottom:376.371329pt;}
.yad_c01434{bottom:379.291081pt;}
.yac_c01434{bottom:380.223045pt;}
.yab_c01434{bottom:381.514621pt;}
.yaa_c01434{bottom:384.084529pt;}
.ya9_c01434{bottom:386.017537pt;}
.ya8_c01434{bottom:389.233409pt;}
.ya7_c01434{bottom:392.413333pt;}
.y9f_c01434{bottom:410.653333pt;}
.y9e_c01434{bottom:417.655500pt;}
.y9d_c01434{bottom:422.412000pt;}
.ya6_c01434{bottom:439.952051pt;}
.ya5_c01434{bottom:440.895301pt;}
.ya4_c01434{bottom:443.903395pt;}
.ya3_c01434{bottom:444.896693pt;}
.ya2_c01434{bottom:447.853333pt;}
.y94_c01434{bottom:449.102668pt;}
.y93_c01434{bottom:451.252467pt;}
.y92_c01434{bottom:452.697933pt;}
.y91_c01434{bottom:456.257333pt;}
.ya1_c01434{bottom:470.583100pt;}
.ya0_c01434{bottom:473.070667pt;}
.y9c_c01434{bottom:473.961141pt;}
.y9b_c01434{bottom:475.529525pt;}
.y9a_c01434{bottom:476.788875pt;}
.y99_c01434{bottom:480.481803pt;}
.y98_c01434{bottom:482.999477pt;}
.y97_c01434{bottom:486.732000pt;}
.y90_c01434{bottom:488.161333pt;}
.y96_c01434{bottom:516.932997pt;}
.y95_c01434{bottom:518.226667pt;}
.y8f_c01434{bottom:532.127447pt;}
.y8e_c01434{bottom:535.229847pt;}
.y8d_c01434{bottom:539.683527pt;}
.y8c_c01434{bottom:540.928173pt;}
.y8b_c01434{bottom:544.750033pt;}
.y8a_c01434{bottom:547.845807pt;}
.y89_c01434{bottom:549.197367pt;}
.y88_c01434{bottom:551.534667pt;}
.y87_c01434{bottom:563.338837pt;}
.y86_c01434{bottom:564.383701pt;}
.y85_c01434{bottom:565.628715pt;}
.y105_c01434{bottom:566.160000pt;}
.y84_c01434{bottom:567.465259pt;}
.y83_c01434{bottom:569.048235pt;}
.y82_c01434{bottom:570.908544pt;}
.y81_c01434{bottom:573.727872pt;}
.y80_c01434{bottom:574.672768pt;}
.y7f_c01434{bottom:577.115221pt;}
.y7e_c01434{bottom:578.112128pt;}
.y7d_c01434{bottom:579.610667pt;}
.y7c_c01434{bottom:597.567387pt;}
.y7b_c01434{bottom:600.619433pt;}
.y7a_c01434{bottom:603.039193pt;}
.y79_c01434{bottom:606.384167pt;}
.y78_c01434{bottom:610.198653pt;}
.y77_c01434{bottom:611.914120pt;}
.y4_c01434{bottom:613.548000pt;}
.y76_c01434{bottom:614.654667pt;}
.y75_c01434{bottom:632.874324pt;}
.y74_c01434{bottom:635.506220pt;}
.y73_c01434{bottom:636.333532pt;}
.y72_c01434{bottom:638.047760pt;}
.y71_c01434{bottom:639.086064pt;}
.y70_c01434{bottom:640.282432pt;}
.y6f_c01434{bottom:641.418824pt;}
.y6e_c01434{bottom:642.506700pt;}
.y6d_c01434{bottom:659.121300pt;}
.y6c_c01434{bottom:662.105160pt;}
.y6b_c01434{bottom:663.013364pt;}
.y6a_c01434{bottom:664.014936pt;}
.y69_c01434{bottom:665.971660pt;}
.y68_c01434{bottom:667.208324pt;}
.y67_c01434{bottom:669.425748pt;}
.y66_c01434{bottom:670.748960pt;}
.y65_c01434{bottom:671.998076pt;}
.y64_c01434{bottom:674.892000pt;}
.y63_c01434{bottom:691.857053pt;}
.y62_c01434{bottom:695.109053pt;}
.y61_c01434{bottom:695.980933pt;}
.y60_c01434{bottom:698.026773pt;}
.y5f_c01434{bottom:699.488813pt;}
.y5e_c01434{bottom:701.814453pt;}
.y5d_c01434{bottom:704.460213pt;}
.y5c_c01434{bottom:705.609333pt;}
.y55_c01434{bottom:708.233333pt;}
.y5b_c01434{bottom:736.256272pt;}
.y5a_c01434{bottom:738.496000pt;}
.y53_c01434{bottom:756.689987pt;}
.y52_c01434{bottom:760.439453pt;}
.y51_c01434{bottom:761.723293pt;}
.y50_c01434{bottom:763.535627pt;}
.y4f_c01434{bottom:764.519920pt;}
.y4e_c01434{bottom:766.682947pt;}
.y4d_c01434{bottom:767.934853pt;}
.y4c_c01434{bottom:769.514120pt;}
.y4b_c01434{bottom:772.317747pt;}
.y3_c01434{bottom:773.393333pt;}
.y4a_c01434{bottom:788.786707pt;}
.y49_c01434{bottom:792.871387pt;}
.y48_c01434{bottom:794.952547pt;}
.y47_c01434{bottom:796.674067pt;}
.y46_c01434{bottom:799.036547pt;}
.y45_c01434{bottom:799.886827pt;}
.y44_c01434{bottom:801.370667pt;}
.y43_c01434{bottom:818.235267pt;}
.y42_c01434{bottom:819.311587pt;}
.y41_c01434{bottom:820.342687pt;}
.y40_c01434{bottom:823.018133pt;}
.y3f_c01434{bottom:825.410080pt;}
.y3e_c01434{bottom:826.090667pt;}
.y59_c01434{bottom:827.832040pt;}
.y58_c01434{bottom:829.006400pt;}
.y57_c01434{bottom:831.038040pt;}
.y56_c01434{bottom:832.808000pt;}
.y54_c01434{bottom:835.320000pt;}
.y3d_c01434{bottom:856.351131pt;}
.y3c_c01434{bottom:856.863293pt;}
.y3b_c01434{bottom:859.414591pt;}
.y3a_c01434{bottom:860.542661pt;}
.y39_c01434{bottom:862.498180pt;}
.y38_c01434{bottom:864.233840pt;}
.y37_c01434{bottom:878.329273pt;}
.y36_c01434{bottom:879.177915pt;}
.y35_c01434{bottom:879.372819pt;}
.y34_c01434{bottom:880.221460pt;}
.y33_c01434{bottom:880.869091pt;}
.y30_c01434{bottom:881.779489pt;}
.y2f_c01434{bottom:884.533736pt;}
.y2e_c01434{bottom:885.427032pt;}
.y2d_c01434{bottom:886.357983pt;}
.y32_c01434{bottom:886.657900pt;}
.y2c_c01434{bottom:890.220004pt;}
.y31_c01434{bottom:891.389617pt;}
.y2b_c01434{bottom:893.584496pt;}
.y2a_c01434{bottom:894.791264pt;}
.y29_c01434{bottom:895.692000pt;}
.y28_c01434{bottom:914.616663pt;}
.y27_c01434{bottom:915.838063pt;}
.y26_c01434{bottom:917.019287pt;}
.y25_c01434{bottom:919.754437pt;}
.y24_c01434{bottom:922.180084pt;}
.y23_c01434{bottom:923.995733pt;}
.y22_c01434{bottom:927.016993pt;}
.y21_c01434{bottom:929.996631pt;}
.y2_c01434{bottom:930.248000pt;}
.y20_c01434{bottom:948.078513pt;}
.y1f_c01434{bottom:950.832760pt;}
.y1e_c01434{bottom:951.733496pt;}
.y1d_c01434{bottom:954.454469pt;}
.y1c_c01434{bottom:955.640612pt;}
.y1b_c01434{bottom:957.738609pt;}
.y1a_c01434{bottom:958.648397pt;}
.y19_c01434{bottom:959.252112pt;}
.y18_c01434{bottom:961.932000pt;}
.y17_c01434{bottom:982.742860pt;}
.y16_c01434{bottom:985.412787pt;}
.y15_c01434{bottom:986.352293pt;}
.y14_c01434{bottom:988.756116pt;}
.y13_c01434{bottom:989.904604pt;}
.y12_c01434{bottom:991.452000pt;}
.y11_c01434{bottom:1008.980587pt;}
.y10_c01434{bottom:1011.911931pt;}
.yf_c01434{bottom:1012.948749pt;}
.ye_c01434{bottom:1013.945357pt;}
.yd_c01434{bottom:1014.897312pt;}
.yc_c01434{bottom:1017.232477pt;}
.yb_c01434{bottom:1018.252704pt;}
.ya_c01434{bottom:1021.211565pt;}
.y9_c01434{bottom:1023.219696pt;}
.y8_c01434{bottom:1026.494667pt;}
.y1_c01434{bottom:1026.728000pt;}
.y7_c01434{bottom:1085.998667pt;}
.h19_c01434{height:16.000000pt;}
.h8_c01434{height:21.343582pt;}
.h20_c01434{height:32.000000pt;}
.h26_c01434{height:37.333333pt;}
.h11_c01434{height:42.647249pt;}
.he_c01434{height:42.651667pt;}
.h1a_c01434{height:42.675242pt;}
.h17_c01434{height:47.996400pt;}
.h1f_c01434{height:53.312689pt;}
.hc_c01434{height:53.333333pt;}
.h13_c01434{height:58.638060pt;}
.h1b_c01434{height:58.639967pt;}
.h6_c01434{height:58.641933pt;}
.h9_c01434{height:58.643958pt;}
.h16_c01434{height:58.648184pt;}
.h1d_c01434{height:58.654961pt;}
.h25_c01434{height:58.659773pt;}
.h15_c01434{height:58.666667pt;}
.hd_c01434{height:58.693061pt;}
.h7_c01434{height:58.694849pt;}
.h10_c01434{height:63.970873pt;}
.h21_c01434{height:63.973018pt;}
.h12_c01434{height:63.975227pt;}
.h24_c01434{height:63.987231pt;}
.h1e_c01434{height:63.989823pt;}
.h4_c01434{height:64.000000pt;}
.ha_c01434{height:64.028794pt;}
.h22_c01434{height:69.314091pt;}
.h3_c01434{height:69.333333pt;}
.h18_c01434{height:74.630258pt;}
.h1c_c01434{height:74.635188pt;}
.h23_c01434{height:74.645944pt;}
.h5_c01434{height:74.666667pt;}
.hf_c01434{height:74.700259pt;}
.h14_c01434{height:85.300303pt;}
.hb_c01434{height:85.371725pt;}
.h2_c01434{height:96.000000pt;}
.h1_c01434{height:1111.333333pt;}
.h0_c01434{height:1111.440000pt;}
.w0_c01434{width:810.666667pt;}
.x0_c01434{left:0.000000pt;}
.x9_c01434{left:102.000000pt;}
.x8_c01434{left:103.680000pt;}
.x6_c01434{left:104.880000pt;}
.x1_c01434{left:108.960000pt;}
.x4_c01434{left:109.920000pt;}
.x3_c01434{left:115.200000pt;}
.x7_c01434{left:155.040000pt;}
.x2_c01434{left:158.400000pt;}
.x5_c01434{left:159.840000pt;}
.xad_c01434{left:189.904000pt;}
.x9e_c01434{left:191.540000pt;}
.x94_c01434{left:193.414667pt;}
.x8c_c01434{left:195.436000pt;}
.x79_c01434{left:197.538667pt;}
.x78_c01434{left:198.720000pt;}
.x67_c01434{left:200.212000pt;}
.x26_c01434{left:202.886025pt;}
.x1d_c01434{left:203.853333pt;}
.xd_c01434{left:205.744000pt;}
.x50_c01434{left:210.000000pt;}
.x9f_c01434{left:228.979856pt;}
.x7e_c01434{left:236.496000pt;}
.xc1_c01434{left:243.419183pt;}
.xb7_c01434{left:245.087527pt;}
.x98_c01434{left:248.585333pt;}
.x92_c01434{left:251.298667pt;}
.xc3_c01434{left:253.076000pt;}
.x7c_c01434{left:255.025333pt;}
.xae_c01434{left:256.352152pt;}
.x6c_c01434{left:259.845333pt;}
.x55_c01434{left:262.368000pt;}
.x44_c01434{left:264.825333pt;}
.x34_c01434{left:266.240675pt;}
.x38_c01434{left:267.458156pt;}
.x2d_c01434{left:268.406667pt;}
.xc4_c01434{left:271.168556pt;}
.x17_c01434{left:272.733333pt;}
.x51_c01434{left:276.200000pt;}
.x68_c01434{left:278.435032pt;}
.x7d_c01434{left:285.080581pt;}
.x99_c01434{left:288.937333pt;}
.x1e_c01434{left:290.301333pt;}
.x8d_c01434{left:291.700972pt;}
.x49_c01434{left:293.158640pt;}
.xa2_c01434{left:295.891597pt;}
.x2e_c01434{left:297.462667pt;}
.x27_c01434{left:299.003359pt;}
.x57_c01434{left:301.034667pt;}
.xe_c01434{left:301.970344pt;}
.xb8_c01434{left:303.616932pt;}
.x75_c01434{left:305.734604pt;}
.x6d_c01434{left:306.627837pt;}
.x1f_c01434{left:309.776000pt;}
.x45_c01434{left:314.286667pt;}
.xc2_c01434{left:321.673695pt;}
.x18_c01434{left:322.649333pt;}
.x56_c01434{left:324.520452pt;}
.xa3_c01434{left:325.416709pt;}
.x39_c01434{left:327.321876pt;}
.x7a_c01434{left:332.670067pt;}
.x52_c01434{left:335.198667pt;}
.x2f_c01434{left:336.390667pt;}
.x6e_c01434{left:337.750017pt;}
.x20_c01434{left:339.124000pt;}
.x46_c01434{left:342.629333pt;}
.xaf_c01434{left:343.952464pt;}
.x5c_c01434{left:350.538972pt;}
.x7f_c01434{left:353.020692pt;}
.x19_c01434{left:359.697333pt;}
.xf_c01434{left:360.973948pt;}
.xb9_c01434{left:361.929221pt;}
.x9a_c01434{left:367.004000pt;}
.xb0_c01434{left:372.963424pt;}
.xa0_c01434{left:374.867156pt;}
.x93_c01434{left:377.521651pt;}
.x62_c01434{left:379.715848pt;}
.x4a_c01434{left:381.614653pt;}
.xa4_c01434{left:383.727673pt;}
.x95_c01434{left:386.907647pt;}
.x58_c01434{left:389.226667pt;}
.x7b_c01434{left:390.714631pt;}
.x3a_c01434{left:394.751384pt;}
.x28_c01434{left:396.463359pt;}
.xa_c01434{left:401.520000pt;}
.x53_c01434{left:402.920000pt;}
.xa1_c01434{left:404.333660pt;}
.x21_c01434{left:406.801333pt;}
.xbe_c01434{left:410.396305pt;}
.xb1_c01434{left:412.326688pt;}
.x6f_c01434{left:414.000357pt;}
.x63_c01434{left:415.467440pt;}
.xb_c01434{left:421.680000pt;}
.x9b_c01434{left:424.788000pt;}
.x5d_c01434{left:428.410356pt;}
.x35_c01434{left:429.381427pt;}
.x80_c01434{left:431.619348pt;}
.x3b_c01434{left:433.637781pt;}
.x69_c01434{left:436.275700pt;}
.x1a_c01434{left:437.240000pt;}
.x87_c01434{left:440.025333pt;}
.x54_c01434{left:442.065333pt;}
.x70_c01434{left:443.498829pt;}
.x22_c01434{left:445.064000pt;}
.x83_c01434{left:446.160000pt;}
.x10_c01434{left:447.912256pt;}
.x4b_c01434{left:449.222613pt;}
.xba_c01434{left:450.932831pt;}
.xa8_c01434{left:453.685333pt;}
.x29_c01434{left:455.032692pt;}
.xc_c01434{left:460.080000pt;}
.x1b_c01434{left:467.546667pt;}
.x64_c01434{left:474.506804pt;}
.x11_c01434{left:477.888916pt;}
.x4c_c01434{left:479.986107pt;}
.xb2_c01434{left:480.980632pt;}
.x9c_c01434{left:483.605333pt;}
.xa5_c01434{left:491.109333pt;}
.x84_c01434{left:493.200000pt;}
.x5e_c01434{left:495.537828pt;}
.xbf_c01434{left:498.737209pt;}
.x65_c01434{left:503.023380pt;}
.xc5_c01434{left:505.175415pt;}
.xbb_c01434{left:508.720267pt;}
.x3e_c01434{left:510.889333pt;}
.x9d_c01434{left:512.370667pt;}
.x59_c01434{left:515.482667pt;}
.xa6_c01434{left:518.673741pt;}
.x3c_c01434{left:521.620571pt;}
.x8e_c01434{left:525.369736pt;}
.x88_c01434{left:526.898373pt;}
.x3f_c01434{left:530.315221pt;}
.x6a_c01434{left:531.750796pt;}
.x23_c01434{left:532.837333pt;}
.x4d_c01434{left:536.616040pt;}
.x3d_c01434{left:539.304353pt;}
.x12_c01434{left:546.501568pt;}
.x47_c01434{left:548.134667pt;}
.x1c_c01434{left:553.673333pt;}
.x89_c01434{left:556.083825pt;}
.xa9_c01434{left:559.282297pt;}
.x24_c01434{left:561.893333pt;}
.x8f_c01434{left:564.469264pt;}
.xb3_c01434{left:566.760100pt;}
.x30_c01434{left:569.504000pt;}
.x13_c01434{left:574.472236pt;}
.x4e_c01434{left:576.741640pt;}
.xa7_c01434{left:579.241113pt;}
.x5a_c01434{left:583.677333pt;}
.x81_c01434{left:586.223256pt;}
.x71_c01434{left:589.591257pt;}
.x5f_c01434{left:592.210392pt;}
.x66_c01434{left:593.677948pt;}
.xbc_c01434{left:595.821689pt;}
.x40_c01434{left:598.588213pt;}
.x31_c01434{left:599.534667pt;}
.x6b_c01434{left:600.817660pt;}
.x14_c01434{left:603.754924pt;}
.xb4_c01434{left:606.598888pt;}
.x5b_c01434{left:612.740000pt;}
.x2a_c01434{left:621.510025pt;}
.x60_c01434{left:622.530708pt;}
.xbd_c01434{left:624.123265pt;}
.xaa_c01434{left:627.093085pt;}
.x32_c01434{left:628.350667pt;}
.x96_c01434{left:630.690287pt;}
.x15_c01434{left:634.219096pt;}
.x82_c01434{left:635.186244pt;}
.x72_c01434{left:639.009789pt;}
.x8a_c01434{left:644.468685pt;}
.xb5_c01434{left:646.903876pt;}
.x97_c01434{left:649.787171pt;}
.x25_c01434{left:650.740000pt;}
.xc6_c01434{left:652.277333pt;}
.xab_c01434{left:658.011469pt;}
.x2b_c01434{left:659.614025pt;}
.x85_c01434{left:664.658667pt;}
.x76_c01434{left:665.830148pt;}
.x8b_c01434{left:672.183609pt;}
.x41_c01434{left:674.953105pt;}
.x36_c01434{left:680.571635pt;}
.xc7_c01434{left:682.520393pt;}
.x48_c01434{left:684.290667pt;}
.x37_c01434{left:687.289381pt;}
.x4f_c01434{left:693.894600pt;}
.x73_c01434{left:696.344397pt;}
.x2c_c01434{left:699.014025pt;}
.x90_c01434{left:700.642288pt;}
.x42_c01434{left:704.383645pt;}
.xac_c01434{left:706.026073pt;}
.xc0_c01434{left:713.165233pt;}
.xb6_c01434{left:714.087292pt;}
.x86_c01434{left:715.374567pt;}
.x33_c01434{left:717.197333pt;}
.x16_c01434{left:720.348880pt;}
.x43_c01434{left:735.104893pt;}
.x91_c01434{left:739.294264pt;}
.x61_c01434{left:740.354100pt;}
.x77_c01434{left:754.381508pt;}
.x74_c01434{left:767.831505pt;}
.xc8_c01434{left:797.040000pt;}
}





/* 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_c01435 {
    display:none;
  }
  .loading-indicator_c01435.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01435 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_c01435 { 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_c01435" -> "#page-container .classname_c01435")
 */
.pf_c01435 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01435 { /* 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_c01435.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01435 { /* 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_c01435 { /* 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_c01435 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01435 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01435 {overflow:visible;}
  }
}
.c_c01435 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01435 { /* 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_c01435:after { /* webkit #35443 */
  content: '';
}
.t_c01435:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01435 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 */
}
.__c01435 { /* 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_c01435 { /* info for Javascript */
  display:none;
}
.l_c01435 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01435 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01435 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01435: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_c01435 {
    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_c01435.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01435.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_c01435 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01435{font-family:sans-serif;visibility:hidden;}
.sc__c01435{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01435{-webkit-text-stroke:0px transparent;}
}
.y0_c01435{bottom:0.000000px;}
.h0_c01435{height:1261.440000px;}
.h1_c01435{height:1261.500000px;}
.w0_c01435{width:912.000000px;}
.x0_c01435{left:0.000000px;}
@media print{
.y0_c01435{bottom:0.000000pt;}
.h0_c01435{height:1121.280000pt;}
.h1_c01435{height:1121.333333pt;}
.w0_c01435{width:810.666667pt;}
.x0_c01435{left:0.000000pt;}
}





/* 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_c01436 {
    display:none;
  }
  .loading-indicator_c01436.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01436 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_c01436 { 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_c01436" -> "#page-container .classname_c01436")
 */
.pf_c01436 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01436 { /* 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_c01436.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01436 { /* 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_c01436 { /* 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_c01436 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01436 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01436 {overflow:visible;}
  }
}
.c_c01436 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01436 { /* 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_c01436:after { /* webkit #35443 */
  content: '';
}
.t_c01436:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01436 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 */
}
.__c01436 { /* 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_c01436 { /* info for Javascript */
  display:none;
}
.l_c01436 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01436 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01436 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01436: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_c01436 {
    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_c01436.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01436.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_c01436 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01436{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01436;src:url('chunks/assets/font_c605e72f209fc835e906f064.woff2')format("woff");}.ff1_c01436{font-family:ff1_c01436;line-height:1.000000;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;}
.m80_c01436{transform:matrix(0.007483,-0.000172,0.005748,0.249934,0,0);-ms-transform:matrix(0.007483,-0.000172,0.005748,0.249934,0,0);-webkit-transform:matrix(0.007483,-0.000172,0.005748,0.249934,0,0);}
.mdc_c01436{transform:matrix(0.084834,-0.001866,0.005499,0.249940,0,0);-ms-transform:matrix(0.084834,-0.001866,0.005499,0.249940,0,0);-webkit-transform:matrix(0.084834,-0.001866,0.005499,0.249940,0,0);}
.m4d_c01436{transform:matrix(0.110344,-0.003200,0.007247,0.249895,0,0);-ms-transform:matrix(0.110344,-0.003200,0.007247,0.249895,0,0);-webkit-transform:matrix(0.110344,-0.003200,0.007247,0.249895,0,0);}
.ma9_c01436{transform:matrix(0.110380,-0.002980,0.006748,0.249909,0,0);-ms-transform:matrix(0.110380,-0.002980,0.006748,0.249909,0,0);-webkit-transform:matrix(0.110380,-0.002980,0.006748,0.249909,0,0);}
.m5c_c01436{transform:matrix(0.134490,-0.003497,0.006498,0.249916,0,0);-ms-transform:matrix(0.134490,-0.003497,0.006498,0.249916,0,0);-webkit-transform:matrix(0.134490,-0.003497,0.006498,0.249916,0,0);}
.m3_c01436{transform:matrix(0.134795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134795,0.000000,0.000000,0.250000,0,0);}
.m95_c01436{transform:matrix(0.152114,-0.003955,0.006498,0.249916,0,0);-ms-transform:matrix(0.152114,-0.003955,0.006498,0.249916,0,0);-webkit-transform:matrix(0.152114,-0.003955,0.006498,0.249916,0,0);}
.m38_c01436{transform:matrix(0.162027,-0.004699,0.007247,0.249895,0,0);-ms-transform:matrix(0.162027,-0.004699,0.007247,0.249895,0,0);-webkit-transform:matrix(0.162027,-0.004699,0.007247,0.249895,0,0);}
.m4e_c01436{transform:matrix(0.163016,-0.004727,0.007247,0.249895,0,0);-ms-transform:matrix(0.163016,-0.004727,0.007247,0.249895,0,0);-webkit-transform:matrix(0.163016,-0.004727,0.007247,0.249895,0,0);}
.m5b_c01436{transform:matrix(0.164080,-0.004266,0.006498,0.249916,0,0);-ms-transform:matrix(0.164080,-0.004266,0.006498,0.249916,0,0);-webkit-transform:matrix(0.164080,-0.004266,0.006498,0.249916,0,0);}
.m66_c01436{transform:matrix(0.164863,-0.003957,0.005998,0.249928,0,0);-ms-transform:matrix(0.164863,-0.003957,0.005998,0.249928,0,0);-webkit-transform:matrix(0.164863,-0.003957,0.005998,0.249928,0,0);}
.m59_c01436{transform:matrix(0.166410,-0.004826,0.007247,0.249895,0,0);-ms-transform:matrix(0.166410,-0.004826,0.007247,0.249895,0,0);-webkit-transform:matrix(0.166410,-0.004826,0.007247,0.249895,0,0);}
.m42_c01436{transform:matrix(0.170818,-0.004954,0.007247,0.249895,0,0);-ms-transform:matrix(0.170818,-0.004954,0.007247,0.249895,0,0);-webkit-transform:matrix(0.170818,-0.004954,0.007247,0.249895,0,0);}
.mca_c01436{transform:matrix(0.172637,-0.003107,0.004499,0.249960,0,0);-ms-transform:matrix(0.172637,-0.003107,0.004499,0.249960,0,0);-webkit-transform:matrix(0.172637,-0.003107,0.004499,0.249960,0,0);}
.m12_c01436{transform:matrix(0.174771,-0.003670,0.005249,0.249945,0,0);-ms-transform:matrix(0.174771,-0.003670,0.005249,0.249945,0,0);-webkit-transform:matrix(0.174771,-0.003670,0.005249,0.249945,0,0);}
.m74_c01436{transform:matrix(0.179440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179440,0.000000,0.000000,0.250000,0,0);}
.mb9_c01436{transform:matrix(0.182963,-0.004574,0.006248,0.249922,0,0);-ms-transform:matrix(0.182963,-0.004574,0.006248,0.249922,0,0);-webkit-transform:matrix(0.182963,-0.004574,0.006248,0.249922,0,0);}
.m1_c01436{transform:matrix(0.183020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183020,0.000000,0.000000,0.250000,0,0);}
.m58_c01436{transform:matrix(0.184098,-0.005339,0.007247,0.249895,0,0);-ms-transform:matrix(0.184098,-0.005339,0.007247,0.249895,0,0);-webkit-transform:matrix(0.184098,-0.005339,0.007247,0.249895,0,0);}
.maf_c01436{transform:matrix(0.185992,-0.004650,0.006248,0.249922,0,0);-ms-transform:matrix(0.185992,-0.004650,0.006248,0.249922,0,0);-webkit-transform:matrix(0.185992,-0.004650,0.006248,0.249922,0,0);}
.m53_c01436{transform:matrix(0.188591,-0.005469,0.007247,0.249895,0,0);-ms-transform:matrix(0.188591,-0.005469,0.007247,0.249895,0,0);-webkit-transform:matrix(0.188591,-0.005469,0.007247,0.249895,0,0);}
.m64_c01436{transform:matrix(0.189312,-0.003786,0.004999,0.249950,0,0);-ms-transform:matrix(0.189312,-0.003786,0.004999,0.249950,0,0);-webkit-transform:matrix(0.189312,-0.003786,0.004999,0.249950,0,0);}
.m8d_c01436{transform:matrix(0.194419,-0.005055,0.006498,0.249916,0,0);-ms-transform:matrix(0.194419,-0.005055,0.006498,0.249916,0,0);-webkit-transform:matrix(0.194419,-0.005055,0.006498,0.249916,0,0);}
.ma1_c01436{transform:matrix(0.197238,-0.005325,0.006748,0.249909,0,0);-ms-transform:matrix(0.197238,-0.005325,0.006748,0.249909,0,0);-webkit-transform:matrix(0.197238,-0.005325,0.006748,0.249909,0,0);}
.mc8_c01436{transform:matrix(0.197278,-0.003551,0.004499,0.249960,0,0);-ms-transform:matrix(0.197278,-0.003551,0.004499,0.249960,0,0);-webkit-transform:matrix(0.197278,-0.003551,0.004499,0.249960,0,0);}
.m56_c01436{transform:matrix(0.197467,-0.005727,0.007247,0.249895,0,0);-ms-transform:matrix(0.197467,-0.005727,0.007247,0.249895,0,0);-webkit-transform:matrix(0.197467,-0.005727,0.007247,0.249895,0,0);}
.m81_c01436{transform:matrix(0.200507,-0.005213,0.006498,0.249916,0,0);-ms-transform:matrix(0.200507,-0.005213,0.006498,0.249916,0,0);-webkit-transform:matrix(0.200507,-0.005213,0.006498,0.249916,0,0);}
.m9f_c01436{transform:matrix(0.200812,-0.005221,0.006498,0.249916,0,0);-ms-transform:matrix(0.200812,-0.005221,0.006498,0.249916,0,0);-webkit-transform:matrix(0.200812,-0.005221,0.006498,0.249916,0,0);}
.m0_c01436{transform:matrix(0.202300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202300,0.000000,0.000000,0.250000,0,0);}
.mc9_c01436{transform:matrix(0.203937,-0.003671,0.004499,0.249960,0,0);-ms-transform:matrix(0.203937,-0.003671,0.004499,0.249960,0,0);-webkit-transform:matrix(0.203937,-0.003671,0.004499,0.249960,0,0);}
.mce_c01436{transform:matrix(0.205712,-0.003703,0.004499,0.249960,0,0);-ms-transform:matrix(0.205712,-0.003703,0.004499,0.249960,0,0);-webkit-transform:matrix(0.205712,-0.003703,0.004499,0.249960,0,0);}
.m9e_c01436{transform:matrix(0.206360,-0.005365,0.006498,0.249916,0,0);-ms-transform:matrix(0.206360,-0.005365,0.006498,0.249916,0,0);-webkit-transform:matrix(0.206360,-0.005365,0.006498,0.249916,0,0);}
.m62_c01436{transform:matrix(0.207030,-0.005383,0.006498,0.249916,0,0);-ms-transform:matrix(0.207030,-0.005383,0.006498,0.249916,0,0);-webkit-transform:matrix(0.207030,-0.005383,0.006498,0.249916,0,0);}
.mc2_c01436{transform:matrix(0.207685,-0.005192,0.006248,0.249922,0,0);-ms-transform:matrix(0.207685,-0.005192,0.006248,0.249922,0,0);-webkit-transform:matrix(0.207685,-0.005192,0.006248,0.249922,0,0);}
.mc0_c01436{transform:matrix(0.208410,-0.005210,0.006248,0.249922,0,0);-ms-transform:matrix(0.208410,-0.005210,0.006248,0.249922,0,0);-webkit-transform:matrix(0.208410,-0.005210,0.006248,0.249922,0,0);}
.m51_c01436{transform:matrix(0.209007,-0.006061,0.007247,0.249895,0,0);-ms-transform:matrix(0.209007,-0.006061,0.007247,0.249895,0,0);-webkit-transform:matrix(0.209007,-0.006061,0.007247,0.249895,0,0);}
.m55_c01436{transform:matrix(0.210906,-0.006116,0.007247,0.249895,0,0);-ms-transform:matrix(0.210906,-0.006116,0.007247,0.249895,0,0);-webkit-transform:matrix(0.210906,-0.006116,0.007247,0.249895,0,0);}
.m32_c01436{transform:matrix(0.210927,-0.005906,0.006997,0.249902,0,0);-ms-transform:matrix(0.210927,-0.005906,0.006997,0.249902,0,0);-webkit-transform:matrix(0.210927,-0.005906,0.006997,0.249902,0,0);}
.m54_c01436{transform:matrix(0.211461,-0.006132,0.007247,0.249895,0,0);-ms-transform:matrix(0.211461,-0.006132,0.007247,0.249895,0,0);-webkit-transform:matrix(0.211461,-0.006132,0.007247,0.249895,0,0);}
.m52_c01436{transform:matrix(0.212641,-0.006167,0.007247,0.249895,0,0);-ms-transform:matrix(0.212641,-0.006167,0.007247,0.249895,0,0);-webkit-transform:matrix(0.212641,-0.006167,0.007247,0.249895,0,0);}
.m50_c01436{transform:matrix(0.213695,-0.006197,0.007247,0.249895,0,0);-ms-transform:matrix(0.213695,-0.006197,0.007247,0.249895,0,0);-webkit-transform:matrix(0.213695,-0.006197,0.007247,0.249895,0,0);}
.m43_c01436{transform:matrix(0.214135,-0.006210,0.007247,0.249895,0,0);-ms-transform:matrix(0.214135,-0.006210,0.007247,0.249895,0,0);-webkit-transform:matrix(0.214135,-0.006210,0.007247,0.249895,0,0);}
.mb4_c01436{transform:matrix(0.214993,-0.005375,0.006248,0.249922,0,0);-ms-transform:matrix(0.214993,-0.005375,0.006248,0.249922,0,0);-webkit-transform:matrix(0.214993,-0.005375,0.006248,0.249922,0,0);}
.m39_c01436{transform:matrix(0.216209,-0.006270,0.007247,0.249895,0,0);-ms-transform:matrix(0.216209,-0.006270,0.007247,0.249895,0,0);-webkit-transform:matrix(0.216209,-0.006270,0.007247,0.249895,0,0);}
.m7b_c01436{transform:matrix(0.216938,-0.004990,0.005748,0.249934,0,0);-ms-transform:matrix(0.216938,-0.004990,0.005748,0.249934,0,0);-webkit-transform:matrix(0.216938,-0.004990,0.005748,0.249934,0,0);}
.m67_c01436{transform:matrix(0.218747,-0.005250,0.005998,0.249928,0,0);-ms-transform:matrix(0.218747,-0.005250,0.005998,0.249928,0,0);-webkit-transform:matrix(0.218747,-0.005250,0.005998,0.249928,0,0);}
.m7f_c01436{transform:matrix(0.219707,-0.005053,0.005748,0.249934,0,0);-ms-transform:matrix(0.219707,-0.005053,0.005748,0.249934,0,0);-webkit-transform:matrix(0.219707,-0.005053,0.005748,0.249934,0,0);}
.mcd_c01436{transform:matrix(0.220219,-0.003964,0.004499,0.249960,0,0);-ms-transform:matrix(0.220219,-0.003964,0.004499,0.249960,0,0);-webkit-transform:matrix(0.220219,-0.003964,0.004499,0.249960,0,0);}
.m57_c01436{transform:matrix(0.221287,-0.006417,0.007247,0.249895,0,0);-ms-transform:matrix(0.221287,-0.006417,0.007247,0.249895,0,0);-webkit-transform:matrix(0.221287,-0.006417,0.007247,0.249895,0,0);}
.maa_c01436{transform:matrix(0.221321,-0.004869,0.005499,0.249940,0,0);-ms-transform:matrix(0.221321,-0.004869,0.005499,0.249940,0,0);-webkit-transform:matrix(0.221321,-0.004869,0.005499,0.249940,0,0);}
.m4f_c01436{transform:matrix(0.222067,-0.006440,0.007247,0.249895,0,0);-ms-transform:matrix(0.222067,-0.006440,0.007247,0.249895,0,0);-webkit-transform:matrix(0.222067,-0.006440,0.007247,0.249895,0,0);}
.mde_c01436{transform:matrix(0.222456,-0.004894,0.005499,0.249940,0,0);-ms-transform:matrix(0.222456,-0.004894,0.005499,0.249940,0,0);-webkit-transform:matrix(0.222456,-0.004894,0.005499,0.249940,0,0);}
.m75_c01436{transform:matrix(0.222861,-0.005126,0.005748,0.249934,0,0);-ms-transform:matrix(0.222861,-0.005126,0.005748,0.249934,0,0);-webkit-transform:matrix(0.222861,-0.005126,0.005748,0.249934,0,0);}
.mbc_c01436{transform:matrix(0.223690,-0.005592,0.006248,0.249922,0,0);-ms-transform:matrix(0.223690,-0.005592,0.006248,0.249922,0,0);-webkit-transform:matrix(0.223690,-0.005592,0.006248,0.249922,0,0);}
.m63_c01436{transform:matrix(0.224314,-0.005832,0.006498,0.249916,0,0);-ms-transform:matrix(0.224314,-0.005832,0.006498,0.249916,0,0);-webkit-transform:matrix(0.224314,-0.005832,0.006498,0.249916,0,0);}
.m90_c01436{transform:matrix(0.229073,-0.005956,0.006498,0.249916,0,0);-ms-transform:matrix(0.229073,-0.005956,0.006498,0.249916,0,0);-webkit-transform:matrix(0.229073,-0.005956,0.006498,0.249916,0,0);}
.m86_c01436{transform:matrix(0.229447,-0.005966,0.006498,0.249916,0,0);-ms-transform:matrix(0.229447,-0.005966,0.006498,0.249916,0,0);-webkit-transform:matrix(0.229447,-0.005966,0.006498,0.249916,0,0);}
.mab_c01436{transform:matrix(0.229469,-0.005048,0.005499,0.249940,0,0);-ms-transform:matrix(0.229469,-0.005048,0.005499,0.249940,0,0);-webkit-transform:matrix(0.229469,-0.005048,0.005499,0.249940,0,0);}
.mc1_c01436{transform:matrix(0.231628,-0.005791,0.006248,0.249922,0,0);-ms-transform:matrix(0.231628,-0.005791,0.006248,0.249922,0,0);-webkit-transform:matrix(0.231628,-0.005791,0.006248,0.249922,0,0);}
.mbd_c01436{transform:matrix(0.231978,-0.005799,0.006248,0.249922,0,0);-ms-transform:matrix(0.231978,-0.005799,0.006248,0.249922,0,0);-webkit-transform:matrix(0.231978,-0.005799,0.006248,0.249922,0,0);}
.m60_c01436{transform:matrix(0.232476,-0.006044,0.006498,0.249916,0,0);-ms-transform:matrix(0.232476,-0.006044,0.006498,0.249916,0,0);-webkit-transform:matrix(0.232476,-0.006044,0.006498,0.249916,0,0);}
.md0_c01436{transform:matrix(0.232557,-0.004186,0.004499,0.249960,0,0);-ms-transform:matrix(0.232557,-0.004186,0.004499,0.249960,0,0);-webkit-transform:matrix(0.232557,-0.004186,0.004499,0.249960,0,0);}
.ma0_c01436{transform:matrix(0.233081,-0.006060,0.006498,0.249916,0,0);-ms-transform:matrix(0.233081,-0.006060,0.006498,0.249916,0,0);-webkit-transform:matrix(0.233081,-0.006060,0.006498,0.249916,0,0);}
.mb2_c01436{transform:matrix(0.233397,-0.005835,0.006248,0.249922,0,0);-ms-transform:matrix(0.233397,-0.005835,0.006248,0.249922,0,0);-webkit-transform:matrix(0.233397,-0.005835,0.006248,0.249922,0,0);}
.mba_c01436{transform:matrix(0.234817,-0.005870,0.006248,0.249922,0,0);-ms-transform:matrix(0.234817,-0.005870,0.006248,0.249922,0,0);-webkit-transform:matrix(0.234817,-0.005870,0.006248,0.249922,0,0);}
.m5e_c01436{transform:matrix(0.235001,-0.006110,0.006498,0.249916,0,0);-ms-transform:matrix(0.235001,-0.006110,0.006498,0.249916,0,0);-webkit-transform:matrix(0.235001,-0.006110,0.006498,0.249916,0,0);}
.m78_c01436{transform:matrix(0.235668,-0.005420,0.005748,0.249934,0,0);-ms-transform:matrix(0.235668,-0.005420,0.005748,0.249934,0,0);-webkit-transform:matrix(0.235668,-0.005420,0.005748,0.249934,0,0);}
.m8e_c01436{transform:matrix(0.235710,-0.006128,0.006498,0.249916,0,0);-ms-transform:matrix(0.235710,-0.006128,0.006498,0.249916,0,0);-webkit-transform:matrix(0.235710,-0.006128,0.006498,0.249916,0,0);}
.mb7_c01436{transform:matrix(0.235846,-0.005896,0.006248,0.249922,0,0);-ms-transform:matrix(0.235846,-0.005896,0.006248,0.249922,0,0);-webkit-transform:matrix(0.235846,-0.005896,0.006248,0.249922,0,0);}
.mb5_c01436{transform:matrix(0.236511,-0.005913,0.006248,0.249922,0,0);-ms-transform:matrix(0.236511,-0.005913,0.006248,0.249922,0,0);-webkit-transform:matrix(0.236511,-0.005913,0.006248,0.249922,0,0);}
.m73_c01436{transform:matrix(0.237590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237590,0.000000,0.000000,0.250000,0,0);}
.mb8_c01436{transform:matrix(0.238086,-0.005952,0.006248,0.249922,0,0);-ms-transform:matrix(0.238086,-0.005952,0.006248,0.249922,0,0);-webkit-transform:matrix(0.238086,-0.005952,0.006248,0.249922,0,0);}
.m91_c01436{transform:matrix(0.238654,-0.006205,0.006498,0.249916,0,0);-ms-transform:matrix(0.238654,-0.006205,0.006498,0.249916,0,0);-webkit-transform:matrix(0.238654,-0.006205,0.006498,0.249916,0,0);}
.m93_c01436{transform:matrix(0.240464,-0.006252,0.006498,0.249916,0,0);-ms-transform:matrix(0.240464,-0.006252,0.006498,0.249916,0,0);-webkit-transform:matrix(0.240464,-0.006252,0.006498,0.249916,0,0);}
.mbb_c01436{transform:matrix(0.241205,-0.006030,0.006248,0.249922,0,0);-ms-transform:matrix(0.241205,-0.006030,0.006248,0.249922,0,0);-webkit-transform:matrix(0.241205,-0.006030,0.006248,0.249922,0,0);}
.mcb_c01436{transform:matrix(0.241771,-0.004352,0.004499,0.249960,0,0);-ms-transform:matrix(0.241771,-0.004352,0.004499,0.249960,0,0);-webkit-transform:matrix(0.241771,-0.004352,0.004499,0.249960,0,0);}
.ma6_c01436{transform:matrix(0.241907,-0.006531,0.006748,0.249909,0,0);-ms-transform:matrix(0.241907,-0.006531,0.006748,0.249909,0,0);-webkit-transform:matrix(0.241907,-0.006531,0.006748,0.249909,0,0);}
.m76_c01436{transform:matrix(0.241991,-0.005566,0.005748,0.249934,0,0);-ms-transform:matrix(0.241991,-0.005566,0.005748,0.249934,0,0);-webkit-transform:matrix(0.241991,-0.005566,0.005748,0.249934,0,0);}
.mb0_c01436{transform:matrix(0.242274,-0.006057,0.006248,0.249922,0,0);-ms-transform:matrix(0.242274,-0.006057,0.006248,0.249922,0,0);-webkit-transform:matrix(0.242274,-0.006057,0.006248,0.249922,0,0);}
.m8b_c01436{transform:matrix(0.243128,-0.006321,0.006498,0.249916,0,0);-ms-transform:matrix(0.243128,-0.006321,0.006498,0.249916,0,0);-webkit-transform:matrix(0.243128,-0.006321,0.006498,0.249916,0,0);}
.ma7_c01436{transform:matrix(0.243406,-0.006572,0.006748,0.249909,0,0);-ms-transform:matrix(0.243406,-0.006572,0.006748,0.249909,0,0);-webkit-transform:matrix(0.243406,-0.006572,0.006748,0.249909,0,0);}
.mac_c01436{transform:matrix(0.243436,-0.005356,0.005499,0.249940,0,0);-ms-transform:matrix(0.243436,-0.005356,0.005499,0.249940,0,0);-webkit-transform:matrix(0.243436,-0.005356,0.005499,0.249940,0,0);}
.m87_c01436{transform:matrix(0.243933,-0.006342,0.006498,0.249916,0,0);-ms-transform:matrix(0.243933,-0.006342,0.006498,0.249916,0,0);-webkit-transform:matrix(0.243933,-0.006342,0.006498,0.249916,0,0);}
.m88_c01436{transform:matrix(0.243958,-0.006343,0.006498,0.249916,0,0);-ms-transform:matrix(0.243958,-0.006343,0.006498,0.249916,0,0);-webkit-transform:matrix(0.243958,-0.006343,0.006498,0.249916,0,0);}
.m9d_c01436{transform:matrix(0.244023,-0.006345,0.006498,0.249916,0,0);-ms-transform:matrix(0.244023,-0.006345,0.006498,0.249916,0,0);-webkit-transform:matrix(0.244023,-0.006345,0.006498,0.249916,0,0);}
.md1_c01436{transform:matrix(0.244055,-0.004393,0.004499,0.249960,0,0);-ms-transform:matrix(0.244055,-0.004393,0.004499,0.249960,0,0);-webkit-transform:matrix(0.244055,-0.004393,0.004499,0.249960,0,0);}
.m61_c01436{transform:matrix(0.244797,-0.006365,0.006498,0.249916,0,0);-ms-transform:matrix(0.244797,-0.006365,0.006498,0.249916,0,0);-webkit-transform:matrix(0.244797,-0.006365,0.006498,0.249916,0,0);}
.m7a_c01436{transform:matrix(0.246775,-0.005676,0.005748,0.249934,0,0);-ms-transform:matrix(0.246775,-0.005676,0.005748,0.249934,0,0);-webkit-transform:matrix(0.246775,-0.005676,0.005748,0.249934,0,0);}
.md2_c01436{transform:matrix(0.247095,-0.004448,0.004499,0.249960,0,0);-ms-transform:matrix(0.247095,-0.004448,0.004499,0.249960,0,0);-webkit-transform:matrix(0.247095,-0.004448,0.004499,0.249960,0,0);}
.m79_c01436{transform:matrix(0.247245,-0.005687,0.005748,0.249934,0,0);-ms-transform:matrix(0.247245,-0.005687,0.005748,0.249934,0,0);-webkit-transform:matrix(0.247245,-0.005687,0.005748,0.249934,0,0);}
.m22_c01436{transform:matrix(0.248817,-0.006967,0.006997,0.249902,0,0);-ms-transform:matrix(0.248817,-0.006967,0.006997,0.249902,0,0);-webkit-transform:matrix(0.248817,-0.006967,0.006997,0.249902,0,0);}
.m9b_c01436{transform:matrix(0.249321,-0.006482,0.006498,0.249916,0,0);-ms-transform:matrix(0.249321,-0.006482,0.006498,0.249916,0,0);-webkit-transform:matrix(0.249321,-0.006482,0.006498,0.249916,0,0);}
.m33_c01436{transform:matrix(0.249517,-0.006986,0.006997,0.249902,0,0);-ms-transform:matrix(0.249517,-0.006986,0.006997,0.249902,0,0);-webkit-transform:matrix(0.249517,-0.006986,0.006997,0.249902,0,0);}
.me1_c01436{transform:matrix(0.249555,-0.005490,0.005499,0.249940,0,0);-ms-transform:matrix(0.249555,-0.005490,0.005499,0.249940,0,0);-webkit-transform:matrix(0.249555,-0.005490,0.005499,0.249940,0,0);}
.m34_c01436{transform:matrix(0.249937,-0.006998,0.006997,0.249902,0,0);-ms-transform:matrix(0.249937,-0.006998,0.006997,0.249902,0,0);-webkit-transform:matrix(0.249937,-0.006998,0.006997,0.249902,0,0);}
.m30_c01436{transform:matrix(0.250292,-0.007008,0.006997,0.249902,0,0);-ms-transform:matrix(0.250292,-0.007008,0.006997,0.249902,0,0);-webkit-transform:matrix(0.250292,-0.007008,0.006997,0.249902,0,0);}
.m17_c01436{transform:matrix(0.250640,-0.005263,0.005249,0.249945,0,0);-ms-transform:matrix(0.250640,-0.005263,0.005249,0.249945,0,0);-webkit-transform:matrix(0.250640,-0.005263,0.005249,0.249945,0,0);}
.mb6_c01436{transform:matrix(0.250902,-0.006273,0.006248,0.249922,0,0);-ms-transform:matrix(0.250902,-0.006273,0.006248,0.249922,0,0);-webkit-transform:matrix(0.250902,-0.006273,0.006248,0.249922,0,0);}
.mb1_c01436{transform:matrix(0.251102,-0.006278,0.006248,0.249922,0,0);-ms-transform:matrix(0.251102,-0.006278,0.006248,0.249922,0,0);-webkit-transform:matrix(0.251102,-0.006278,0.006248,0.249922,0,0);}
.mbe_c01436{transform:matrix(0.251202,-0.006280,0.006248,0.249922,0,0);-ms-transform:matrix(0.251202,-0.006280,0.006248,0.249922,0,0);-webkit-transform:matrix(0.251202,-0.006280,0.006248,0.249922,0,0);}
.m97_c01436{transform:matrix(0.251300,-0.006534,0.006498,0.249916,0,0);-ms-transform:matrix(0.251300,-0.006534,0.006498,0.249916,0,0);-webkit-transform:matrix(0.251300,-0.006534,0.006498,0.249916,0,0);}
.m6_c01436{transform:matrix(0.251829,-0.005288,0.005249,0.249945,0,0);-ms-transform:matrix(0.251829,-0.005288,0.005249,0.249945,0,0);-webkit-transform:matrix(0.251829,-0.005288,0.005249,0.249945,0,0);}
.m9a_c01436{transform:matrix(0.251865,-0.006548,0.006498,0.249916,0,0);-ms-transform:matrix(0.251865,-0.006548,0.006498,0.249916,0,0);-webkit-transform:matrix(0.251865,-0.006548,0.006498,0.249916,0,0);}
.mf_c01436{transform:matrix(0.252624,-0.005305,0.005249,0.249945,0,0);-ms-transform:matrix(0.252624,-0.005305,0.005249,0.249945,0,0);-webkit-transform:matrix(0.252624,-0.005305,0.005249,0.249945,0,0);}
.m65_c01436{transform:matrix(0.253024,-0.005060,0.004999,0.249950,0,0);-ms-transform:matrix(0.253024,-0.005060,0.004999,0.249950,0,0);-webkit-transform:matrix(0.253024,-0.005060,0.004999,0.249950,0,0);}
.m4b_c01436{transform:matrix(0.254058,-0.007368,0.007247,0.249895,0,0);-ms-transform:matrix(0.254058,-0.007368,0.007247,0.249895,0,0);-webkit-transform:matrix(0.254058,-0.007368,0.007247,0.249895,0,0);}
.mc3_c01436{transform:matrix(0.254755,-0.006369,0.006248,0.249922,0,0);-ms-transform:matrix(0.254755,-0.006369,0.006248,0.249922,0,0);-webkit-transform:matrix(0.254755,-0.006369,0.006248,0.249922,0,0);}
.m6d_c01436{transform:matrix(0.255331,-0.006128,0.005998,0.249928,0,0);-ms-transform:matrix(0.255331,-0.006128,0.005998,0.249928,0,0);-webkit-transform:matrix(0.255331,-0.006128,0.005998,0.249928,0,0);}
.m5d_c01436{transform:matrix(0.255414,-0.006641,0.006498,0.249916,0,0);-ms-transform:matrix(0.255414,-0.006641,0.006498,0.249916,0,0);-webkit-transform:matrix(0.255414,-0.006641,0.006498,0.249916,0,0);}
.ma3_c01436{transform:matrix(0.255582,-0.006901,0.006748,0.249909,0,0);-ms-transform:matrix(0.255582,-0.006901,0.006748,0.249909,0,0);-webkit-transform:matrix(0.255582,-0.006901,0.006748,0.249909,0,0);}
.mbf_c01436{transform:matrix(0.256365,-0.006409,0.006248,0.249922,0,0);-ms-transform:matrix(0.256365,-0.006409,0.006248,0.249922,0,0);-webkit-transform:matrix(0.256365,-0.006409,0.006248,0.249922,0,0);}
.mdf_c01436{transform:matrix(0.256388,-0.005641,0.005499,0.249940,0,0);-ms-transform:matrix(0.256388,-0.005641,0.005499,0.249940,0,0);-webkit-transform:matrix(0.256388,-0.005641,0.005499,0.249940,0,0);}
.m92_c01436{transform:matrix(0.256453,-0.006668,0.006498,0.249916,0,0);-ms-transform:matrix(0.256453,-0.006668,0.006498,0.249916,0,0);-webkit-transform:matrix(0.256453,-0.006668,0.006498,0.249916,0,0);}
.m85_c01436{transform:matrix(0.256758,-0.006676,0.006498,0.249916,0,0);-ms-transform:matrix(0.256758,-0.006676,0.006498,0.249916,0,0);-webkit-transform:matrix(0.256758,-0.006676,0.006498,0.249916,0,0);}
.m8f_c01436{transform:matrix(0.256833,-0.006678,0.006498,0.249916,0,0);-ms-transform:matrix(0.256833,-0.006678,0.006498,0.249916,0,0);-webkit-transform:matrix(0.256833,-0.006678,0.006498,0.249916,0,0);}
.m84_c01436{transform:matrix(0.257268,-0.006689,0.006498,0.249916,0,0);-ms-transform:matrix(0.257268,-0.006689,0.006498,0.249916,0,0);-webkit-transform:matrix(0.257268,-0.006689,0.006498,0.249916,0,0);}
.mdb_c01436{transform:matrix(0.257698,-0.005669,0.005499,0.249940,0,0);-ms-transform:matrix(0.257698,-0.005669,0.005499,0.249940,0,0);-webkit-transform:matrix(0.257698,-0.005669,0.005499,0.249940,0,0);}
.m2b_c01436{transform:matrix(0.257924,-0.007222,0.006997,0.249902,0,0);-ms-transform:matrix(0.257924,-0.007222,0.006997,0.249902,0,0);-webkit-transform:matrix(0.257924,-0.007222,0.006997,0.249902,0,0);}
.m8c_c01436{transform:matrix(0.258343,-0.006717,0.006498,0.249916,0,0);-ms-transform:matrix(0.258343,-0.006717,0.006498,0.249916,0,0);-webkit-transform:matrix(0.258343,-0.006717,0.006498,0.249916,0,0);}
.m15_c01436{transform:matrix(0.258643,-0.005432,0.005249,0.249945,0,0);-ms-transform:matrix(0.258643,-0.005432,0.005249,0.249945,0,0);-webkit-transform:matrix(0.258643,-0.005432,0.005249,0.249945,0,0);}
.m96_c01436{transform:matrix(0.258738,-0.006727,0.006498,0.249916,0,0);-ms-transform:matrix(0.258738,-0.006727,0.006498,0.249916,0,0);-webkit-transform:matrix(0.258738,-0.006727,0.006498,0.249916,0,0);}
.m8a_c01436{transform:matrix(0.259122,-0.006737,0.006498,0.249916,0,0);-ms-transform:matrix(0.259122,-0.006737,0.006498,0.249916,0,0);-webkit-transform:matrix(0.259122,-0.006737,0.006498,0.249916,0,0);}
.m7e_c01436{transform:matrix(0.259266,-0.005963,0.005748,0.249934,0,0);-ms-transform:matrix(0.259266,-0.005963,0.005748,0.249934,0,0);-webkit-transform:matrix(0.259266,-0.005963,0.005748,0.249934,0,0);}
.m77_c01436{transform:matrix(0.259561,-0.005970,0.005748,0.249934,0,0);-ms-transform:matrix(0.259561,-0.005970,0.005748,0.249934,0,0);-webkit-transform:matrix(0.259561,-0.005970,0.005748,0.249934,0,0);}
.ma2_c01436{transform:matrix(0.259770,-0.007014,0.006748,0.249909,0,0);-ms-transform:matrix(0.259770,-0.007014,0.006748,0.249909,0,0);-webkit-transform:matrix(0.259770,-0.007014,0.006748,0.249909,0,0);}
.m94_c01436{transform:matrix(0.260377,-0.006770,0.006498,0.249916,0,0);-ms-transform:matrix(0.260377,-0.006770,0.006498,0.249916,0,0);-webkit-transform:matrix(0.260377,-0.006770,0.006498,0.249916,0,0);}
.m16_c01436{transform:matrix(0.260812,-0.005477,0.005249,0.249945,0,0);-ms-transform:matrix(0.260812,-0.005477,0.005249,0.249945,0,0);-webkit-transform:matrix(0.260812,-0.005477,0.005249,0.249945,0,0);}
.ma_c01436{transform:matrix(0.261567,-0.005493,0.005249,0.249945,0,0);-ms-transform:matrix(0.261567,-0.005493,0.005249,0.249945,0,0);-webkit-transform:matrix(0.261567,-0.005493,0.005249,0.249945,0,0);}
.m1d_c01436{transform:matrix(0.261597,-0.007325,0.006997,0.249902,0,0);-ms-transform:matrix(0.261597,-0.007325,0.006997,0.249902,0,0);-webkit-transform:matrix(0.261597,-0.007325,0.006997,0.249902,0,0);}
.m36_c01436{transform:matrix(0.261812,-0.007331,0.006997,0.249902,0,0);-ms-transform:matrix(0.261812,-0.007331,0.006997,0.249902,0,0);-webkit-transform:matrix(0.261812,-0.007331,0.006997,0.249902,0,0);}
.m35_c01436{transform:matrix(0.262547,-0.007351,0.006997,0.249902,0,0);-ms-transform:matrix(0.262547,-0.007351,0.006997,0.249902,0,0);-webkit-transform:matrix(0.262547,-0.007351,0.006997,0.249902,0,0);}
.m6f_c01436{transform:matrix(0.263919,-0.006334,0.005998,0.249928,0,0);-ms-transform:matrix(0.263919,-0.006334,0.005998,0.249928,0,0);-webkit-transform:matrix(0.263919,-0.006334,0.005998,0.249928,0,0);}
.m2d_c01436{transform:matrix(0.264276,-0.007400,0.006997,0.249902,0,0);-ms-transform:matrix(0.264276,-0.007400,0.006997,0.249902,0,0);-webkit-transform:matrix(0.264276,-0.007400,0.006997,0.249902,0,0);}
.ma5_c01436{transform:matrix(0.264384,-0.007138,0.006748,0.249909,0,0);-ms-transform:matrix(0.264384,-0.007138,0.006748,0.249909,0,0);-webkit-transform:matrix(0.264384,-0.007138,0.006748,0.249909,0,0);}
.m20_c01436{transform:matrix(0.264716,-0.007412,0.006997,0.249902,0,0);-ms-transform:matrix(0.264716,-0.007412,0.006997,0.249902,0,0);-webkit-transform:matrix(0.264716,-0.007412,0.006997,0.249902,0,0);}
.mcc_c01436{transform:matrix(0.264812,-0.004767,0.004499,0.249960,0,0);-ms-transform:matrix(0.264812,-0.004767,0.004499,0.249960,0,0);-webkit-transform:matrix(0.264812,-0.004767,0.004499,0.249960,0,0);}
.m5f_c01436{transform:matrix(0.265485,-0.006903,0.006498,0.249916,0,0);-ms-transform:matrix(0.265485,-0.006903,0.006498,0.249916,0,0);-webkit-transform:matrix(0.265485,-0.006903,0.006498,0.249916,0,0);}
.m6c_c01436{transform:matrix(0.266123,-0.006387,0.005998,0.249928,0,0);-ms-transform:matrix(0.266123,-0.006387,0.005998,0.249928,0,0);-webkit-transform:matrix(0.266123,-0.006387,0.005998,0.249928,0,0);}
.m9c_c01436{transform:matrix(0.267325,-0.006950,0.006498,0.249916,0,0);-ms-transform:matrix(0.267325,-0.006950,0.006498,0.249916,0,0);-webkit-transform:matrix(0.267325,-0.006950,0.006498,0.249916,0,0);}
.mcf_c01436{transform:matrix(0.267697,-0.004819,0.004499,0.249960,0,0);-ms-transform:matrix(0.267697,-0.004819,0.004499,0.249960,0,0);-webkit-transform:matrix(0.267697,-0.004819,0.004499,0.249960,0,0);}
.me7_c01436{transform:matrix(0.268271,-0.006707,0.006248,0.249922,0,0);-ms-transform:matrix(0.268271,-0.006707,0.006248,0.249922,0,0);-webkit-transform:matrix(0.268271,-0.006707,0.006248,0.249922,0,0);}
.m71_c01436{transform:matrix(0.269307,-0.006463,0.005998,0.249928,0,0);-ms-transform:matrix(0.269307,-0.006463,0.005998,0.249928,0,0);-webkit-transform:matrix(0.269307,-0.006463,0.005998,0.249928,0,0);}
.mda_c01436{transform:matrix(0.269320,-0.005925,0.005499,0.249940,0,0);-ms-transform:matrix(0.269320,-0.005925,0.005499,0.249940,0,0);-webkit-transform:matrix(0.269320,-0.005925,0.005499,0.249940,0,0);}
.m14_c01436{transform:matrix(0.270765,-0.005686,0.005249,0.249945,0,0);-ms-transform:matrix(0.270765,-0.005686,0.005249,0.249945,0,0);-webkit-transform:matrix(0.270765,-0.005686,0.005249,0.249945,0,0);}
.m7d_c01436{transform:matrix(0.270983,-0.006233,0.005748,0.249934,0,0);-ms-transform:matrix(0.270983,-0.006233,0.005748,0.249934,0,0);-webkit-transform:matrix(0.270983,-0.006233,0.005748,0.249934,0,0);}
.m89_c01436{transform:matrix(0.271433,-0.007057,0.006498,0.249916,0,0);-ms-transform:matrix(0.271433,-0.007057,0.006498,0.249916,0,0);-webkit-transform:matrix(0.271433,-0.007057,0.006498,0.249916,0,0);}
.m19_c01436{transform:matrix(0.272633,-0.007634,0.006997,0.249902,0,0);-ms-transform:matrix(0.272633,-0.007634,0.006997,0.249902,0,0);-webkit-transform:matrix(0.272633,-0.007634,0.006997,0.249902,0,0);}
.m82_c01436{transform:matrix(0.273043,-0.007099,0.006498,0.249916,0,0);-ms-transform:matrix(0.273043,-0.007099,0.006498,0.249916,0,0);-webkit-transform:matrix(0.273043,-0.007099,0.006498,0.249916,0,0);}
.m5a_c01436{transform:matrix(0.273498,-0.007111,0.006498,0.249916,0,0);-ms-transform:matrix(0.273498,-0.007111,0.006498,0.249916,0,0);-webkit-transform:matrix(0.273498,-0.007111,0.006498,0.249916,0,0);}
.m11_c01436{transform:matrix(0.273595,-0.005745,0.005249,0.249945,0,0);-ms-transform:matrix(0.273595,-0.005745,0.005249,0.249945,0,0);-webkit-transform:matrix(0.273595,-0.005745,0.005249,0.249945,0,0);}
.m13_c01436{transform:matrix(0.273695,-0.005748,0.005249,0.249945,0,0);-ms-transform:matrix(0.273695,-0.005748,0.005249,0.249945,0,0);-webkit-transform:matrix(0.273695,-0.005748,0.005249,0.249945,0,0);}
.ma4_c01436{transform:matrix(0.273775,-0.007392,0.006748,0.249909,0,0);-ms-transform:matrix(0.273775,-0.007392,0.006748,0.249909,0,0);-webkit-transform:matrix(0.273775,-0.007392,0.006748,0.249909,0,0);}
.m98_c01436{transform:matrix(0.274972,-0.007149,0.006498,0.249916,0,0);-ms-transform:matrix(0.274972,-0.007149,0.006498,0.249916,0,0);-webkit-transform:matrix(0.274972,-0.007149,0.006498,0.249916,0,0);}
.m83_c01436{transform:matrix(0.275562,-0.007165,0.006498,0.249916,0,0);-ms-transform:matrix(0.275562,-0.007165,0.006498,0.249916,0,0);-webkit-transform:matrix(0.275562,-0.007165,0.006498,0.249916,0,0);}
.m2c_c01436{transform:matrix(0.276307,-0.007737,0.006997,0.249902,0,0);-ms-transform:matrix(0.276307,-0.007737,0.006997,0.249902,0,0);-webkit-transform:matrix(0.276307,-0.007737,0.006997,0.249902,0,0);}
.m40_c01436{transform:matrix(0.278253,-0.008069,0.007247,0.249895,0,0);-ms-transform:matrix(0.278253,-0.008069,0.007247,0.249895,0,0);-webkit-transform:matrix(0.278253,-0.008069,0.007247,0.249895,0,0);}
.m69_c01436{transform:matrix(0.278495,-0.006684,0.005998,0.249928,0,0);-ms-transform:matrix(0.278495,-0.006684,0.005998,0.249928,0,0);-webkit-transform:matrix(0.278495,-0.006684,0.005998,0.249928,0,0);}
.m3f_c01436{transform:matrix(0.278793,-0.008085,0.007247,0.249895,0,0);-ms-transform:matrix(0.278793,-0.008085,0.007247,0.249895,0,0);-webkit-transform:matrix(0.278793,-0.008085,0.007247,0.249895,0,0);}
.mdd_c01436{transform:matrix(0.279587,-0.006151,0.005499,0.249940,0,0);-ms-transform:matrix(0.279587,-0.006151,0.005499,0.249940,0,0);-webkit-transform:matrix(0.279587,-0.006151,0.005499,0.249940,0,0);}
.me6_c01436{transform:matrix(0.280107,-0.007003,0.006248,0.249922,0,0);-ms-transform:matrix(0.280107,-0.007003,0.006248,0.249922,0,0);-webkit-transform:matrix(0.280107,-0.007003,0.006248,0.249922,0,0);}
.m2a_c01436{transform:matrix(0.280320,-0.007849,0.006997,0.249902,0,0);-ms-transform:matrix(0.280320,-0.007849,0.006997,0.249902,0,0);-webkit-transform:matrix(0.280320,-0.007849,0.006997,0.249902,0,0);}
.m3d_c01436{transform:matrix(0.280527,-0.008135,0.007247,0.249895,0,0);-ms-transform:matrix(0.280527,-0.008135,0.007247,0.249895,0,0);-webkit-transform:matrix(0.280527,-0.008135,0.007247,0.249895,0,0);}
.m72_c01436{transform:matrix(0.281004,-0.006744,0.005998,0.249928,0,0);-ms-transform:matrix(0.281004,-0.006744,0.005998,0.249928,0,0);-webkit-transform:matrix(0.281004,-0.006744,0.005998,0.249928,0,0);}
.m1f_c01436{transform:matrix(0.281725,-0.007888,0.006997,0.249902,0,0);-ms-transform:matrix(0.281725,-0.007888,0.006997,0.249902,0,0);-webkit-transform:matrix(0.281725,-0.007888,0.006997,0.249902,0,0);}
.m99_c01436{transform:matrix(0.282674,-0.007350,0.006498,0.249916,0,0);-ms-transform:matrix(0.282674,-0.007350,0.006498,0.249916,0,0);-webkit-transform:matrix(0.282674,-0.007350,0.006498,0.249916,0,0);}
.mb3_c01436{transform:matrix(0.283381,-0.007085,0.006248,0.249922,0,0);-ms-transform:matrix(0.283381,-0.007085,0.006248,0.249922,0,0);-webkit-transform:matrix(0.283381,-0.007085,0.006248,0.249922,0,0);}
.m6e_c01436{transform:matrix(0.283423,-0.006802,0.005998,0.249928,0,0);-ms-transform:matrix(0.283423,-0.006802,0.005998,0.249928,0,0);-webkit-transform:matrix(0.283423,-0.006802,0.005998,0.249928,0,0);}
.m46_c01436{transform:matrix(0.284795,-0.008259,0.007247,0.249895,0,0);-ms-transform:matrix(0.284795,-0.008259,0.007247,0.249895,0,0);-webkit-transform:matrix(0.284795,-0.008259,0.007247,0.249895,0,0);}
.m3b_c01436{transform:matrix(0.285005,-0.008265,0.007247,0.249895,0,0);-ms-transform:matrix(0.285005,-0.008265,0.007247,0.249895,0,0);-webkit-transform:matrix(0.285005,-0.008265,0.007247,0.249895,0,0);}
.m2e_c01436{transform:matrix(0.286578,-0.008024,0.006997,0.249902,0,0);-ms-transform:matrix(0.286578,-0.008024,0.006997,0.249902,0,0);-webkit-transform:matrix(0.286578,-0.008024,0.006997,0.249902,0,0);}
.me0_c01436{transform:matrix(0.287345,-0.006322,0.005499,0.249940,0,0);-ms-transform:matrix(0.287345,-0.006322,0.005499,0.249940,0,0);-webkit-transform:matrix(0.287345,-0.006322,0.005499,0.249940,0,0);}
.m1e_c01436{transform:matrix(0.287367,-0.008046,0.006997,0.249902,0,0);-ms-transform:matrix(0.287367,-0.008046,0.006997,0.249902,0,0);-webkit-transform:matrix(0.287367,-0.008046,0.006997,0.249902,0,0);}
.m21_c01436{transform:matrix(0.287627,-0.008054,0.006997,0.249902,0,0);-ms-transform:matrix(0.287627,-0.008054,0.006997,0.249902,0,0);-webkit-transform:matrix(0.287627,-0.008054,0.006997,0.249902,0,0);}
.m48_c01436{transform:matrix(0.288109,-0.008355,0.007247,0.249895,0,0);-ms-transform:matrix(0.288109,-0.008355,0.007247,0.249895,0,0);-webkit-transform:matrix(0.288109,-0.008355,0.007247,0.249895,0,0);}
.m31_c01436{transform:matrix(0.288282,-0.008072,0.006997,0.249902,0,0);-ms-transform:matrix(0.288282,-0.008072,0.006997,0.249902,0,0);-webkit-transform:matrix(0.288282,-0.008072,0.006997,0.249902,0,0);}
.m6b_c01436{transform:matrix(0.289112,-0.006939,0.005998,0.249928,0,0);-ms-transform:matrix(0.289112,-0.006939,0.005998,0.249928,0,0);-webkit-transform:matrix(0.289112,-0.006939,0.005998,0.249928,0,0);}
.mb_c01436{transform:matrix(0.290466,-0.006100,0.005249,0.249945,0,0);-ms-transform:matrix(0.290466,-0.006100,0.005249,0.249945,0,0);-webkit-transform:matrix(0.290466,-0.006100,0.005249,0.249945,0,0);}
.md_c01436{transform:matrix(0.291651,-0.006125,0.005249,0.249945,0,0);-ms-transform:matrix(0.291651,-0.006125,0.005249,0.249945,0,0);-webkit-transform:matrix(0.291651,-0.006125,0.005249,0.249945,0,0);}
.m3e_c01436{transform:matrix(0.291847,-0.008464,0.007247,0.249895,0,0);-ms-transform:matrix(0.291847,-0.008464,0.007247,0.249895,0,0);-webkit-transform:matrix(0.291847,-0.008464,0.007247,0.249895,0,0);}
.m49_c01436{transform:matrix(0.291862,-0.008464,0.007247,0.249895,0,0);-ms-transform:matrix(0.291862,-0.008464,0.007247,0.249895,0,0);-webkit-transform:matrix(0.291862,-0.008464,0.007247,0.249895,0,0);}
.m1a_c01436{transform:matrix(0.292160,-0.008180,0.006997,0.249902,0,0);-ms-transform:matrix(0.292160,-0.008180,0.006997,0.249902,0,0);-webkit-transform:matrix(0.292160,-0.008180,0.006997,0.249902,0,0);}
.m4a_c01436{transform:matrix(0.292587,-0.008485,0.007247,0.249895,0,0);-ms-transform:matrix(0.292587,-0.008485,0.007247,0.249895,0,0);-webkit-transform:matrix(0.292587,-0.008485,0.007247,0.249895,0,0);}
.m1b_c01436{transform:matrix(0.292630,-0.008194,0.006997,0.249902,0,0);-ms-transform:matrix(0.292630,-0.008194,0.006997,0.249902,0,0);-webkit-transform:matrix(0.292630,-0.008194,0.006997,0.249902,0,0);}
.m5_c01436{transform:matrix(0.293065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293065,0.000000,0.000000,0.250000,0,0);}
.me_c01436{transform:matrix(0.293685,-0.006167,0.005249,0.249945,0,0);-ms-transform:matrix(0.293685,-0.006167,0.005249,0.249945,0,0);-webkit-transform:matrix(0.293685,-0.006167,0.005249,0.249945,0,0);}
.mc7_c01436{transform:matrix(0.293987,-0.005292,0.004499,0.249960,0,0);-ms-transform:matrix(0.293987,-0.005292,0.004499,0.249960,0,0);-webkit-transform:matrix(0.293987,-0.005292,0.004499,0.249960,0,0);}
.m6a_c01436{transform:matrix(0.294745,-0.007074,0.005998,0.249928,0,0);-ms-transform:matrix(0.294745,-0.007074,0.005998,0.249928,0,0);-webkit-transform:matrix(0.294745,-0.007074,0.005998,0.249928,0,0);}
.mc_c01436{transform:matrix(0.294930,-0.006194,0.005249,0.249945,0,0);-ms-transform:matrix(0.294930,-0.006194,0.005249,0.249945,0,0);-webkit-transform:matrix(0.294930,-0.006194,0.005249,0.249945,0,0);}
.m70_c01436{transform:matrix(0.295245,-0.007086,0.005998,0.249928,0,0);-ms-transform:matrix(0.295245,-0.007086,0.005998,0.249928,0,0);-webkit-transform:matrix(0.295245,-0.007086,0.005998,0.249928,0,0);}
.m4_c01436{transform:matrix(0.296215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296215,0.000000,0.000000,0.250000,0,0);}
.m4c_c01436{transform:matrix(0.296390,-0.008595,0.007247,0.249895,0,0);-ms-transform:matrix(0.296390,-0.008595,0.007247,0.249895,0,0);-webkit-transform:matrix(0.296390,-0.008595,0.007247,0.249895,0,0);}
.m37_c01436{transform:matrix(0.296879,-0.008313,0.006997,0.249902,0,0);-ms-transform:matrix(0.296879,-0.008313,0.006997,0.249902,0,0);-webkit-transform:matrix(0.296879,-0.008313,0.006997,0.249902,0,0);}
.m8_c01436{transform:matrix(0.297729,-0.006252,0.005249,0.249945,0,0);-ms-transform:matrix(0.297729,-0.006252,0.005249,0.249945,0,0);-webkit-transform:matrix(0.297729,-0.006252,0.005249,0.249945,0,0);}
.m3c_c01436{transform:matrix(0.299634,-0.008689,0.007247,0.249895,0,0);-ms-transform:matrix(0.299634,-0.008689,0.007247,0.249895,0,0);-webkit-transform:matrix(0.299634,-0.008689,0.007247,0.249895,0,0);}
.m9_c01436{transform:matrix(0.300089,-0.006302,0.005249,0.249945,0,0);-ms-transform:matrix(0.300089,-0.006302,0.005249,0.249945,0,0);-webkit-transform:matrix(0.300089,-0.006302,0.005249,0.249945,0,0);}
.m18_c01436{transform:matrix(0.300107,-0.008403,0.006997,0.249902,0,0);-ms-transform:matrix(0.300107,-0.008403,0.006997,0.249902,0,0);-webkit-transform:matrix(0.300107,-0.008403,0.006997,0.249902,0,0);}
.m68_c01436{transform:matrix(0.301273,-0.007231,0.005998,0.249928,0,0);-ms-transform:matrix(0.301273,-0.007231,0.005998,0.249928,0,0);-webkit-transform:matrix(0.301273,-0.007231,0.005998,0.249928,0,0);}
.m1c_c01436{transform:matrix(0.302501,-0.008470,0.006997,0.249902,0,0);-ms-transform:matrix(0.302501,-0.008470,0.006997,0.249902,0,0);-webkit-transform:matrix(0.302501,-0.008470,0.006997,0.249902,0,0);}
.m47_c01436{transform:matrix(0.302818,-0.008782,0.007247,0.249895,0,0);-ms-transform:matrix(0.302818,-0.008782,0.007247,0.249895,0,0);-webkit-transform:matrix(0.302818,-0.008782,0.007247,0.249895,0,0);}
.m3a_c01436{transform:matrix(0.303502,-0.008802,0.007247,0.249895,0,0);-ms-transform:matrix(0.303502,-0.008802,0.007247,0.249895,0,0);-webkit-transform:matrix(0.303502,-0.008802,0.007247,0.249895,0,0);}
.m10_c01436{transform:matrix(0.305053,-0.006406,0.005249,0.249945,0,0);-ms-transform:matrix(0.305053,-0.006406,0.005249,0.249945,0,0);-webkit-transform:matrix(0.305053,-0.006406,0.005249,0.249945,0,0);}
.m41_c01436{transform:matrix(0.306101,-0.008877,0.007247,0.249895,0,0);-ms-transform:matrix(0.306101,-0.008877,0.007247,0.249895,0,0);-webkit-transform:matrix(0.306101,-0.008877,0.007247,0.249895,0,0);}
.m2f_c01436{transform:matrix(0.307939,-0.008622,0.006997,0.249902,0,0);-ms-transform:matrix(0.307939,-0.008622,0.006997,0.249902,0,0);-webkit-transform:matrix(0.307939,-0.008622,0.006997,0.249902,0,0);}
.m45_c01436{transform:matrix(0.308425,-0.008944,0.007247,0.249895,0,0);-ms-transform:matrix(0.308425,-0.008944,0.007247,0.249895,0,0);-webkit-transform:matrix(0.308425,-0.008944,0.007247,0.249895,0,0);}
.m7_c01436{transform:matrix(0.308652,-0.006482,0.005249,0.249945,0,0);-ms-transform:matrix(0.308652,-0.006482,0.005249,0.249945,0,0);-webkit-transform:matrix(0.308652,-0.006482,0.005249,0.249945,0,0);}
.me4_c01436{transform:matrix(0.320830,-0.008021,0.006248,0.249922,0,0);-ms-transform:matrix(0.320830,-0.008021,0.006248,0.249922,0,0);-webkit-transform:matrix(0.320830,-0.008021,0.006248,0.249922,0,0);}
.md8_c01436{transform:matrix(0.324439,-0.007462,0.005748,0.249934,0,0);-ms-transform:matrix(0.324439,-0.007462,0.005748,0.249934,0,0);-webkit-transform:matrix(0.324439,-0.007462,0.005748,0.249934,0,0);}
.me2_c01436{transform:matrix(0.327681,-0.007209,0.005499,0.249940,0,0);-ms-transform:matrix(0.327681,-0.007209,0.005499,0.249940,0,0);-webkit-transform:matrix(0.327681,-0.007209,0.005499,0.249940,0,0);}
.mad_c01436{transform:matrix(0.329620,-0.007252,0.005499,0.249940,0,0);-ms-transform:matrix(0.329620,-0.007252,0.005499,0.249940,0,0);-webkit-transform:matrix(0.329620,-0.007252,0.005499,0.249940,0,0);}
.md6_c01436{transform:matrix(0.330063,-0.007591,0.005748,0.249934,0,0);-ms-transform:matrix(0.330063,-0.007591,0.005748,0.249934,0,0);-webkit-transform:matrix(0.330063,-0.007591,0.005748,0.249934,0,0);}
.m26_c01436{transform:matrix(0.340372,-0.009530,0.006997,0.249902,0,0);-ms-transform:matrix(0.340372,-0.009530,0.006997,0.249902,0,0);-webkit-transform:matrix(0.340372,-0.009530,0.006997,0.249902,0,0);}
.m23_c01436{transform:matrix(0.343395,-0.009615,0.006997,0.249902,0,0);-ms-transform:matrix(0.343395,-0.009615,0.006997,0.249902,0,0);-webkit-transform:matrix(0.343395,-0.009615,0.006997,0.249902,0,0);}
.m7c_c01436{transform:matrix(0.345909,-0.007956,0.005748,0.249934,0,0);-ms-transform:matrix(0.345909,-0.007956,0.005748,0.249934,0,0);-webkit-transform:matrix(0.345909,-0.007956,0.005748,0.249934,0,0);}
.ma8_c01436{transform:matrix(0.345919,-0.009340,0.006748,0.249909,0,0);-ms-transform:matrix(0.345919,-0.009340,0.006748,0.249909,0,0);-webkit-transform:matrix(0.345919,-0.009340,0.006748,0.249909,0,0);}
.m27_c01436{transform:matrix(0.347299,-0.009724,0.006997,0.249902,0,0);-ms-transform:matrix(0.347299,-0.009724,0.006997,0.249902,0,0);-webkit-transform:matrix(0.347299,-0.009724,0.006997,0.249902,0,0);}
.m29_c01436{transform:matrix(0.347504,-0.009730,0.006997,0.249902,0,0);-ms-transform:matrix(0.347504,-0.009730,0.006997,0.249902,0,0);-webkit-transform:matrix(0.347504,-0.009730,0.006997,0.249902,0,0);}
.md7_c01436{transform:matrix(0.347758,-0.007998,0.005748,0.249934,0,0);-ms-transform:matrix(0.347758,-0.007998,0.005748,0.249934,0,0);-webkit-transform:matrix(0.347758,-0.007998,0.005748,0.249934,0,0);}
.me5_c01436{transform:matrix(0.348201,-0.008705,0.006248,0.249922,0,0);-ms-transform:matrix(0.348201,-0.008705,0.006248,0.249922,0,0);-webkit-transform:matrix(0.348201,-0.008705,0.006248,0.249922,0,0);}
.md3_c01436{transform:matrix(0.355666,-0.008180,0.005748,0.249934,0,0);-ms-transform:matrix(0.355666,-0.008180,0.005748,0.249934,0,0);-webkit-transform:matrix(0.355666,-0.008180,0.005748,0.249934,0,0);}
.md4_c01436{transform:matrix(0.355726,-0.008182,0.005748,0.249934,0,0);-ms-transform:matrix(0.355726,-0.008182,0.005748,0.249934,0,0);-webkit-transform:matrix(0.355726,-0.008182,0.005748,0.249934,0,0);}
.md5_c01436{transform:matrix(0.360405,-0.008289,0.005748,0.249934,0,0);-ms-transform:matrix(0.360405,-0.008289,0.005748,0.249934,0,0);-webkit-transform:matrix(0.360405,-0.008289,0.005748,0.249934,0,0);}
.m24_c01436{transform:matrix(0.367146,-0.010280,0.006997,0.249902,0,0);-ms-transform:matrix(0.367146,-0.010280,0.006997,0.249902,0,0);-webkit-transform:matrix(0.367146,-0.010280,0.006997,0.249902,0,0);}
.mae_c01436{transform:matrix(0.367756,-0.008091,0.005499,0.249940,0,0);-ms-transform:matrix(0.367756,-0.008091,0.005499,0.249940,0,0);-webkit-transform:matrix(0.367756,-0.008091,0.005499,0.249940,0,0);}
.m25_c01436{transform:matrix(0.371579,-0.010404,0.006997,0.249902,0,0);-ms-transform:matrix(0.371579,-0.010404,0.006997,0.249902,0,0);-webkit-transform:matrix(0.371579,-0.010404,0.006997,0.249902,0,0);}
.mc5_c01436{transform:matrix(0.380688,-0.006852,0.004499,0.249960,0,0);-ms-transform:matrix(0.380688,-0.006852,0.004499,0.249960,0,0);-webkit-transform:matrix(0.380688,-0.006852,0.004499,0.249960,0,0);}
.mc4_c01436{transform:matrix(0.400940,-0.007217,0.004499,0.249960,0,0);-ms-transform:matrix(0.400940,-0.007217,0.004499,0.249960,0,0);-webkit-transform:matrix(0.400940,-0.007217,0.004499,0.249960,0,0);}
.m44_c01436{transform:matrix(0.408308,-0.011841,0.007247,0.249895,0,0);-ms-transform:matrix(0.408308,-0.011841,0.007247,0.249895,0,0);-webkit-transform:matrix(0.408308,-0.011841,0.007247,0.249895,0,0);}
.mc6_c01436{transform:matrix(0.409324,-0.007368,0.004499,0.249960,0,0);-ms-transform:matrix(0.409324,-0.007368,0.004499,0.249960,0,0);-webkit-transform:matrix(0.409324,-0.007368,0.004499,0.249960,0,0);}
.m28_c01436{transform:matrix(0.417077,-0.011678,0.006997,0.249902,0,0);-ms-transform:matrix(0.417077,-0.011678,0.006997,0.249902,0,0);-webkit-transform:matrix(0.417077,-0.011678,0.006997,0.249902,0,0);}
.md9_c01436{transform:matrix(0.422408,-0.009715,0.005748,0.249934,0,0);-ms-transform:matrix(0.422408,-0.009715,0.005748,0.249934,0,0);-webkit-transform:matrix(0.422408,-0.009715,0.005748,0.249934,0,0);}
.me3_c01436{transform:matrix(0.424517,-0.010613,0.006248,0.249922,0,0);-ms-transform:matrix(0.424517,-0.010613,0.006248,0.249922,0,0);-webkit-transform:matrix(0.424517,-0.010613,0.006248,0.249922,0,0);}
.me8_c01436{transform:matrix(0.431130,-0.010778,0.006248,0.249922,0,0);-ms-transform:matrix(0.431130,-0.010778,0.006248,0.249922,0,0);-webkit-transform:matrix(0.431130,-0.010778,0.006248,0.249922,0,0);}
.m2_c01436{transform:matrix(0.640670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.640670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.640670,0.000000,0.000000,0.250000,0,0);}
.me9_c01436{transform:matrix(0.925785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.925785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.925785,0.000000,0.000000,0.250000,0,0);}
.v0_c01436{vertical-align:0.000000px;}
.ls0_c01436{letter-spacing:0.000000px;}
.sc__c01436{text-shadow:none;}
.sc0_c01436{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__c01436{-webkit-text-stroke:0px transparent;}
.sc0_c01436{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01436{word-spacing:0.000000px;}
.fc0_c01436{color:transparent;}
.fs1_c01436{font-size:18.000000px;}
.fs1a_c01436{font-size:24.000000px;}
.fs19_c01436{font-size:24.007499px;}
.fs18_c01436{font-size:30.009374px;}
.fsc_c01436{font-size:42.000000px;}
.fs14_c01436{font-size:48.007775px;}
.fs6_c01436{font-size:48.018812px;}
.fs16_c01436{font-size:54.014281px;}
.fs3_c01436{font-size:66.014551px;}
.fs17_c01436{font-size:66.015970px;}
.fsb_c01436{font-size:66.019005px;}
.fs5_c01436{font-size:66.025867px;}
.fs7_c01436{font-size:66.027747px;}
.fs15_c01436{font-size:72.011663px;}
.fs4_c01436{font-size:72.015874px;}
.fs12_c01436{font-size:72.017422px;}
.fs9_c01436{font-size:72.024332px;}
.fs11_c01436{font-size:72.026239px;}
.fs0_c01436{font-size:78.000000px;}
.fsd_c01436{font-size:78.020628px;}
.fs13_c01436{font-size:78.024371px;}
.fsf_c01436{font-size:78.026360px;}
.fs10_c01436{font-size:84.028387px;}
.fs8_c01436{font-size:90.037837px;}
.fs2_c01436{font-size:96.000000px;}
.fsa_c01436{font-size:102.020398px;}
.fse_c01436{font-size:102.026975px;}
.y0_c01436{bottom:0.000000px;}
.y74_c01436{bottom:78.435000px;}
.ye9_c01436{bottom:84.510000px;}
.ye6_c01436{bottom:87.453488px;}
.ye7_c01436{bottom:88.092113px;}
.ye8_c01436{bottom:90.821325px;}
.ye3_c01436{bottom:91.534500px;}
.ye4_c01436{bottom:92.337488px;}
.ye5_c01436{bottom:95.301488px;}
.yda_c01436{bottom:194.676000px;}
.ydb_c01436{bottom:195.638445px;}
.ydc_c01436{bottom:197.630787px;}
.ydd_c01436{bottom:198.306297px;}
.yde_c01436{bottom:200.487069px;}
.ydf_c01436{bottom:201.883431px;}
.ye0_c01436{bottom:202.608573px;}
.ye1_c01436{bottom:204.087930px;}
.ye2_c01436{bottom:204.819540px;}
.yd3_c01436{bottom:267.847500px;}
.yd4_c01436{bottom:270.400121px;}
.yd5_c01436{bottom:272.401362px;}
.yd6_c01436{bottom:274.450558px;}
.yd7_c01436{bottom:276.190186px;}
.yd8_c01436{bottom:277.426356px;}
.yd9_c01436{bottom:279.531857px;}
.yc8_c01436{bottom:301.045596px;}
.yc9_c01436{bottom:302.279697px;}
.yca_c01436{bottom:303.496770px;}
.ycb_c01436{bottom:304.497081px;}
.ycc_c01436{bottom:307.043289px;}
.ycd_c01436{bottom:309.788031px;}
.yce_c01436{bottom:310.576413px;}
.ycf_c01436{bottom:311.343420px;}
.yd0_c01436{bottom:313.328730px;}
.yd1_c01436{bottom:314.088054px;}
.yd2_c01436{bottom:314.858856px;}
.yc4_c01436{bottom:336.964500px;}
.yc5_c01436{bottom:337.731894px;}
.yc6_c01436{bottom:338.335317px;}
.yc7_c01436{bottom:340.150473px;}
.yb9_c01436{bottom:369.623288px;}
.yba_c01436{bottom:370.723725px;}
.ybb_c01436{bottom:372.416362px;}
.ybc_c01436{bottom:374.380200px;}
.ybd_c01436{bottom:375.539100px;}
.ybe_c01436{bottom:377.281088px;}
.ybf_c01436{bottom:379.538325px;}
.yc0_c01436{bottom:382.378725px;}
.yc1_c01436{bottom:383.224275px;}
.yc2_c01436{bottom:384.101100px;}
.yc3_c01436{bottom:385.816687px;}
.yaf_c01436{bottom:405.004500px;}
.yb0_c01436{bottom:406.014675px;}
.yb1_c01436{bottom:407.655937px;}
.yb2_c01436{bottom:410.133075px;}
.yb3_c01436{bottom:411.828487px;}
.yb4_c01436{bottom:414.252150px;}
.yb5_c01436{bottom:415.083000px;}
.yb6_c01436{bottom:416.191500px;}
.yb7_c01436{bottom:418.614825px;}
.yb8_c01436{bottom:419.736825px;}
.yaa_c01436{bottom:443.614500px;}
.yab_c01436{bottom:444.334758px;}
.yac_c01436{bottom:445.065609px;}
.yad_c01436{bottom:446.776032px;}
.yae_c01436{bottom:448.429695px;}
.ya1_c01436{bottom:476.286000px;}
.ya2_c01436{bottom:477.406878px;}
.ya3_c01436{bottom:479.463306px;}
.ya4_c01436{bottom:480.921549px;}
.ya5_c01436{bottom:483.939893px;}
.ya6_c01436{bottom:486.251957px;}
.ya7_c01436{bottom:487.149275px;}
.ya8_c01436{bottom:488.339651px;}
.ya9_c01436{bottom:493.406524px;}
.ya0_c01436{bottom:515.803122px;}
.y9f_c01436{bottom:515.803455px;}
.y9e_c01436{bottom:515.803665px;}
.y73_c01436{bottom:545.680500px;}
.y95_c01436{bottom:548.106000px;}
.y96_c01436{bottom:549.191994px;}
.y97_c01436{bottom:551.172414px;}
.y98_c01436{bottom:552.920706px;}
.y99_c01436{bottom:555.724026px;}
.y9a_c01436{bottom:559.184262px;}
.y9b_c01436{bottom:560.869959px;}
.y9c_c01436{bottom:562.027674px;}
.y9d_c01436{bottom:564.276219px;}
.y8d_c01436{bottom:586.439745px;}
.y8e_c01436{bottom:587.525412px;}
.y8f_c01436{bottom:588.356145px;}
.y90_c01436{bottom:590.827401px;}
.y91_c01436{bottom:591.665154px;}
.y92_c01436{bottom:593.260026px;}
.y93_c01436{bottom:595.453473px;}
.y94_c01436{bottom:596.259381px;}
.y81_c01436{bottom:618.846000px;}
.y82_c01436{bottom:619.967835px;}
.y83_c01436{bottom:622.768971px;}
.y84_c01436{bottom:624.761793px;}
.y85_c01436{bottom:625.647288px;}
.y86_c01436{bottom:627.051561px;}
.y87_c01436{bottom:627.906987px;}
.y88_c01436{bottom:629.024961px;}
.y89_c01436{bottom:629.918373px;}
.y8a_c01436{bottom:632.445456px;}
.y8b_c01436{bottom:634.171050px;}
.y8c_c01436{bottom:635.309538px;}
.y7f_c01436{bottom:651.523168px;}
.y80_c01436{bottom:658.597612px;}
.y75_c01436{bottom:692.286000px;}
.y76_c01436{bottom:693.262557px;}
.y77_c01436{bottom:694.013760px;}
.y78_c01436{bottom:696.324398px;}
.y79_c01436{bottom:697.815695px;}
.y7a_c01436{bottom:698.555789px;}
.y7b_c01436{bottom:700.077411px;}
.y7c_c01436{bottom:700.823991px;}
.y7d_c01436{bottom:703.110099px;}
.y7e_c01436{bottom:703.848330px;}
.y66_c01436{bottom:724.416000px;}
.y67_c01436{bottom:725.748324px;}
.y68_c01436{bottom:726.505224px;}
.y69_c01436{bottom:729.116520px;}
.y6a_c01436{bottom:730.127580px;}
.y6b_c01436{bottom:731.215140px;}
.y6c_c01436{bottom:733.321464px;}
.y6d_c01436{bottom:734.359992px;}
.y6e_c01436{bottom:735.178092px;}
.y6f_c01436{bottom:736.992888px;}
.y70_c01436{bottom:737.784168px;}
.y71_c01436{bottom:740.149476px;}
.y72_c01436{bottom:741.179508px;}
.y64_c01436{bottom:758.437500px;}
.y65_c01436{bottom:758.887350px;}
.y5a_c01436{bottom:798.130500px;}
.y5b_c01436{bottom:801.260718px;}
.y5c_c01436{bottom:802.431186px;}
.y5d_c01436{bottom:803.305371px;}
.y5e_c01436{bottom:804.976131px;}
.y5f_c01436{bottom:806.971137px;}
.y60_c01436{bottom:808.682886px;}
.y61_c01436{bottom:809.546619px;}
.y62_c01436{bottom:810.698250px;}
.y63_c01436{bottom:812.126664px;}
.y4d_c01436{bottom:830.769033px;}
.y4e_c01436{bottom:832.331080px;}
.y4f_c01436{bottom:833.215168px;}
.y50_c01436{bottom:836.247303px;}
.y51_c01436{bottom:837.480049px;}
.y52_c01436{bottom:839.346624px;}
.y53_c01436{bottom:841.804461px;}
.y54_c01436{bottom:842.994338px;}
.y55_c01436{bottom:844.251684px;}
.y56_c01436{bottom:846.368866px;}
.y57_c01436{bottom:847.614294px;}
.y58_c01436{bottom:849.445633px;}
.y59_c01436{bottom:850.395364px;}
.y42_c01436{bottom:865.884949px;}
.y43_c01436{bottom:867.454392px;}
.y44_c01436{bottom:868.277818px;}
.y45_c01436{bottom:871.060650px;}
.y46_c01436{bottom:871.973818px;}
.y47_c01436{bottom:873.213982px;}
.y48_c01436{bottom:876.280896px;}
.y49_c01436{bottom:876.918248px;}
.y4a_c01436{bottom:879.371778px;}
.y4b_c01436{bottom:881.784178px;}
.y4c_c01436{bottom:882.700870px;}
.y38_c01436{bottom:902.080500px;}
.y39_c01436{bottom:903.690087px;}
.y3a_c01436{bottom:904.574616px;}
.y3b_c01436{bottom:907.424910px;}
.y3c_c01436{bottom:909.022708px;}
.y3d_c01436{bottom:911.869827px;}
.y3e_c01436{bottom:912.836353px;}
.y3f_c01436{bottom:913.800618px;}
.y40_c01436{bottom:915.687517px;}
.y41_c01436{bottom:916.631467px;}
.y32_c01436{bottom:941.488794px;}
.y33_c01436{bottom:943.635834px;}
.y34_c01436{bottom:945.773214px;}
.y35_c01436{bottom:946.675878px;}
.y36_c01436{bottom:947.917776px;}
.y37_c01436{bottom:952.199508px;}
.y28_c01436{bottom:974.173500px;}
.y29_c01436{bottom:977.188974px;}
.y2a_c01436{bottom:978.119106px;}
.y2b_c01436{bottom:979.066500px;}
.y2c_c01436{bottom:982.208730px;}
.y2d_c01436{bottom:983.970378px;}
.y2e_c01436{bottom:985.167546px;}
.y2f_c01436{bottom:986.402094px;}
.y30_c01436{bottom:990.393480px;}
.y31_c01436{bottom:991.293204px;}
.y21_c01436{bottom:1012.500330px;}
.y22_c01436{bottom:1015.092534px;}
.y23_c01436{bottom:1016.040348px;}
.y24_c01436{bottom:1017.434676px;}
.y25_c01436{bottom:1019.679678px;}
.y26_c01436{bottom:1020.670980px;}
.y27_c01436{bottom:1023.698832px;}
.y16_c01436{bottom:1045.183500px;}
.y17_c01436{bottom:1048.206534px;}
.y18_c01436{bottom:1049.129358px;}
.y19_c01436{bottom:1050.059490px;}
.y1a_c01436{bottom:1052.193132px;}
.y1b_c01436{bottom:1054.670796px;}
.y1c_c01436{bottom:1055.882454px;}
.y1d_c01436{bottom:1057.131912px;}
.y1e_c01436{bottom:1059.256062px;}
.y1f_c01436{bottom:1060.450710px;}
.y20_c01436{bottom:1062.326136px;}
.yf_c01436{bottom:1081.344830px;}
.y2_c01436{bottom:1082.967000px;}
.y10_c01436{bottom:1085.112243px;}
.y11_c01436{bottom:1086.017268px;}
.y12_c01436{bottom:1089.312643px;}
.y13_c01436{bottom:1091.353086px;}
.y14_c01436{bottom:1092.211764px;}
.y15_c01436{bottom:1093.462898px;}
.y1_c01436{bottom:1112.671500px;}
.y6_c01436{bottom:1117.802568px;}
.y7_c01436{bottom:1120.925876px;}
.y8_c01436{bottom:1123.204515px;}
.y9_c01436{bottom:1124.336492px;}
.ya_c01436{bottom:1125.219372px;}
.yb_c01436{bottom:1127.173089px;}
.yc_c01436{bottom:1128.023604px;}
.yd_c01436{bottom:1130.010588px;}
.ye_c01436{bottom:1130.847487px;}
.y4_c01436{bottom:1155.336000px;}
.y5_c01436{bottom:1156.018164px;}
.y3_c01436{bottom:1236.336000px;}
.h3_c01436{height:18.000000px;}
.h1c_c01436{height:24.000000px;}
.h1b_c01436{height:24.007499px;}
.h1a_c01436{height:30.009374px;}
.he_c01436{height:42.000000px;}
.h16_c01436{height:48.007775px;}
.h8_c01436{height:48.018812px;}
.h18_c01436{height:54.014281px;}
.h5_c01436{height:66.014551px;}
.h19_c01436{height:66.015970px;}
.hd_c01436{height:66.019005px;}
.h7_c01436{height:66.025867px;}
.h9_c01436{height:66.027747px;}
.h17_c01436{height:72.011663px;}
.h6_c01436{height:72.015874px;}
.h14_c01436{height:72.017422px;}
.hb_c01436{height:72.024332px;}
.h13_c01436{height:72.026239px;}
.h2_c01436{height:78.000000px;}
.hf_c01436{height:78.020628px;}
.h15_c01436{height:78.024371px;}
.h11_c01436{height:78.026360px;}
.h12_c01436{height:84.028387px;}
.ha_c01436{height:90.037837px;}
.h4_c01436{height:96.000000px;}
.hc_c01436{height:102.020398px;}
.h10_c01436{height:102.026975px;}
.h0_c01436{height:1261.440000px;}
.h1_c01436{height:1261.500000px;}
.w0_c01436{width:912.000000px;}
.x0_c01436{left:0.000000px;}
.x1_c01436{left:66.690000px;}
.x63_c01436{left:81.810000px;}
.x36_c01436{left:85.123500px;}
.x46_c01436{left:86.467925px;}
.x58_c01436{left:89.641500px;}
.x64_c01436{left:108.270000px;}
.x2_c01436{left:124.200000px;}
.x37_c01436{left:140.626500px;}
.x3f_c01436{left:141.722373px;}
.x59_c01436{left:145.155000px;}
.x18_c01436{left:157.870500px;}
.x29_c01436{left:159.498000px;}
.x84_c01436{left:162.489000px;}
.x8e_c01436{left:164.355000px;}
.x8_c01436{left:166.727438px;}
.x11_c01436{left:168.124828px;}
.x38_c01436{left:171.127500px;}
.x47_c01436{left:173.819948px;}
.x5a_c01436{left:176.692500px;}
.x6c_c01436{left:201.855000px;}
.x85_c01436{left:204.003000px;}
.x93_c01436{left:207.487425px;}
.x9a_c01436{left:220.867980px;}
.x6_c01436{left:230.059500px;}
.x50_c01436{left:238.561500px;}
.x65_c01436{left:242.721000px;}
.x76_c01436{left:245.040315px;}
.x31_c01436{left:247.491888px;}
.x98_c01436{left:252.187500px;}
.xa3_c01436{left:254.643000px;}
.x8b_c01436{left:259.437000px;}
.x7_c01436{left:262.543500px;}
.x19_c01436{left:265.836000px;}
.x2a_c01436{left:267.193500px;}
.x39_c01436{left:269.413500px;}
.x40_c01436{left:270.528114px;}
.x94_c01436{left:272.611313px;}
.x9b_c01436{left:273.811728px;}
.x7d_c01436{left:278.266500px;}
.x86_c01436{left:280.167000px;}
.x48_c01436{left:282.103580px;}
.xa1_c01436{left:284.362500px;}
.x5b_c01436{left:285.496500px;}
.x9_c01436{left:286.872337px;}
.x77_c01436{left:288.470946px;}
.x82_c01436{left:290.021913px;}
.x8c_c01436{left:292.176000px;}
.x99_c01436{left:294.820500px;}
.x1a_c01436{left:298.794000px;}
.x2b_c01436{left:300.412500px;}
.x41_c01436{left:303.155571px;}
.x12_c01436{left:307.650751px;}
.x6d_c01436{left:309.591000px;}
.x23_c01436{left:312.078216px;}
.x66_c01436{left:317.841000px;}
.x78_c01436{left:321.692304px;}
.x83_c01436{left:322.973682px;}
.x32_c01436{left:324.171888px;}
.x49_c01436{left:326.113341px;}
.x5c_c01436{left:327.624000px;}
.x1b_c01436{left:332.013000px;}
.x2c_c01436{left:334.248000px;}
.x13_c01436{left:341.171530px;}
.x7e_c01436{left:345.508500px;}
.x42_c01436{left:347.472876px;}
.xa6_c01436{left:349.118475px;}
.x51_c01436{left:358.954500px;}
.x8f_c01436{left:369.498000px;}
.x5d_c01436{left:372.939000px;}
.xa_c01436{left:374.512639px;}
.x6e_c01436{left:386.238000px;}
.xa4_c01436{left:388.951500px;}
.x4a_c01436{left:392.755755px;}
.xa2_c01436{left:395.346000px;}
.x24_c01436{left:398.491386px;}
.x33_c01436{left:400.506888px;}
.x3_c01436{left:403.110000px;}
.x1c_c01436{left:408.214500px;}
.xb_c01436{left:418.054572px;}
.x6f_c01436{left:420.295500px;}
.x3a_c01436{left:422.686500px;}
.x4_c01436{left:426.330000px;}
.x9c_c01436{left:427.993350px;}
.x25_c01436{left:430.090122px;}
.x34_c01436{left:432.744888px;}
.x52_c01436{left:437.595000px;}
.x2d_c01436{left:446.470500px;}
.x6b_c01436{left:449.892459px;}
.xc_c01436{left:452.021512px;}
.x79_c01436{left:454.042236px;}
.x3b_c01436{left:456.015000px;}
.x95_c01436{left:459.695625px;}
.x5e_c01436{left:460.702500px;}
.x14_c01436{left:463.221658px;}
.x5_c01436{left:468.990000px;}
.x70_c01436{left:474.306000px;}
.x26_c01436{left:476.563518px;}
.x8d_c01436{left:478.309500px;}
.x43_c01436{left:479.761704px;}
.x67_c01436{left:483.142500px;}
.x3c_c01436{left:489.265500px;}
.x1d_c01436{left:496.702500px;}
.x53_c01436{left:501.855000px;}
.x5f_c01436{left:503.974500px;}
.x71_c01436{left:507.207000px;}
.x2e_c01436{left:509.386500px;}
.x68_c01436{left:515.320500px;}
.x7a_c01436{left:517.865913px;}
.x4b_c01436{left:522.990996px;}
.xd_c01436{left:527.190637px;}
.x87_c01436{left:531.598500px;}
.x90_c01436{left:534.261000px;}
.x15_c01436{left:538.804645px;}
.x1e_c01436{left:539.976000px;}
.x96_c01436{left:546.502950px;}
.x72_c01436{left:550.206000px;}
.x27_c01436{left:551.380818px;}
.x3d_c01436{left:554.331000px;}
.xe_c01436{left:559.902204px;}
.x88_c01436{left:564.832500px;}
.x44_c01436{left:567.368727px;}
.x16_c01436{left:570.618645px;}
.x54_c01436{left:578.586000px;}
.x69_c01436{left:581.478000px;}
.x1f_c01436{left:584.599500px;}
.x3e_c01436{left:586.881000px;}
.x2f_c01436{left:596.233500px;}
.x7b_c01436{left:605.577675px;}
.x89_c01436{left:608.920500px;}
.x91_c01436{left:611.835000px;}
.x60_c01436{left:613.678500px;}
.x9d_c01436{left:614.956029px;}
.x17_c01436{left:616.976317px;}
.x35_c01436{left:630.017388px;}
.xf_c01436{left:636.298171px;}
.x7c_c01436{left:637.786494px;}
.x4c_c01436{left:643.495476px;}
.x61_c01436{left:646.648500px;}
.x7f_c01436{left:651.249000px;}
.x45_c01436{left:653.505707px;}
.x97_c01436{left:655.736213px;}
.x20_c01436{left:660.462000px;}
.x10_c01436{left:668.504301px;}
.x55_c01436{left:677.643000px;}
.x73_c01436{left:681.763500px;}
.x28_c01436{left:685.378842px;}
.x4d_c01436{left:687.994281px;}
.x80_c01436{left:695.776500px;}
.x9e_c01436{left:701.243253px;}
.x21_c01436{left:703.128000px;}
.x92_c01436{left:708.768000px;}
.x6a_c01436{left:713.334000px;}
.xa5_c01436{left:715.713000px;}
.x56_c01436{left:721.936500px;}
.x9f_c01436{left:734.258283px;}
.x30_c01436{left:738.783000px;}
.x62_c01436{left:745.203000px;}
.x74_c01436{left:748.132500px;}
.x4e_c01436{left:753.421695px;}
.xa0_c01436{left:767.744259px;}
.x22_c01436{left:770.107500px;}
.x57_c01436{left:776.875500px;}
.x81_c01436{left:782.259000px;}
.x4f_c01436{left:787.361696px;}
.x75_c01436{left:791.920500px;}
.x8a_c01436{left:796.582500px;}
@media print{
.v0_c01436{vertical-align:0.000000pt;}
.ls0_c01436{letter-spacing:0.000000pt;}
.ws0_c01436{word-spacing:0.000000pt;}
.fs1_c01436{font-size:16.000000pt;}
.fs1a_c01436{font-size:21.333333pt;}
.fs19_c01436{font-size:21.339999pt;}
.fs18_c01436{font-size:26.674999pt;}
.fsc_c01436{font-size:37.333333pt;}
.fs14_c01436{font-size:42.673578pt;}
.fs6_c01436{font-size:42.683389pt;}
.fs16_c01436{font-size:48.012694pt;}
.fs3_c01436{font-size:58.679601pt;}
.fs17_c01436{font-size:58.680862pt;}
.fsb_c01436{font-size:58.683560pt;}
.fs5_c01436{font-size:58.689659pt;}
.fs7_c01436{font-size:58.691331pt;}
.fs15_c01436{font-size:64.010367pt;}
.fs4_c01436{font-size:64.014110pt;}
.fs12_c01436{font-size:64.015486pt;}
.fs9_c01436{font-size:64.021628pt;}
.fs11_c01436{font-size:64.023324pt;}
.fs0_c01436{font-size:69.333333pt;}
.fsd_c01436{font-size:69.351670pt;}
.fs13_c01436{font-size:69.354997pt;}
.fsf_c01436{font-size:69.356764pt;}
.fs10_c01436{font-size:74.691900pt;}
.fs8_c01436{font-size:80.033633pt;}
.fs2_c01436{font-size:85.333333pt;}
.fsa_c01436{font-size:90.684798pt;}
.fse_c01436{font-size:90.690645pt;}
.y0_c01436{bottom:0.000000pt;}
.y74_c01436{bottom:69.720000pt;}
.ye9_c01436{bottom:75.120000pt;}
.ye6_c01436{bottom:77.736433pt;}
.ye7_c01436{bottom:78.304100pt;}
.ye8_c01436{bottom:80.730067pt;}
.ye3_c01436{bottom:81.364000pt;}
.ye4_c01436{bottom:82.077767pt;}
.ye5_c01436{bottom:84.712433pt;}
.yda_c01436{bottom:173.045333pt;}
.ydb_c01436{bottom:173.900840pt;}
.ydc_c01436{bottom:175.671811pt;}
.ydd_c01436{bottom:176.272264pt;}
.yde_c01436{bottom:178.210728pt;}
.ydf_c01436{bottom:179.451939pt;}
.ye0_c01436{bottom:180.096509pt;}
.ye1_c01436{bottom:181.411493pt;}
.ye2_c01436{bottom:182.061813pt;}
.yd3_c01436{bottom:238.086667pt;}
.yd4_c01436{bottom:240.355663pt;}
.yd5_c01436{bottom:242.134544pt;}
.yd6_c01436{bottom:243.956052pt;}
.yd7_c01436{bottom:245.502388pt;}
.yd8_c01436{bottom:246.601205pt;}
.yd9_c01436{bottom:248.472761pt;}
.yc8_c01436{bottom:267.596085pt;}
.yc9_c01436{bottom:268.693064pt;}
.yca_c01436{bottom:269.774907pt;}
.ycb_c01436{bottom:270.664072pt;}
.ycc_c01436{bottom:272.927368pt;}
.ycd_c01436{bottom:275.367139pt;}
.yce_c01436{bottom:276.067923pt;}
.ycf_c01436{bottom:276.749707pt;}
.yd0_c01436{bottom:278.514427pt;}
.yd1_c01436{bottom:279.189381pt;}
.yd2_c01436{bottom:279.874539pt;}
.yc4_c01436{bottom:299.524000pt;}
.yc5_c01436{bottom:300.206128pt;}
.yc6_c01436{bottom:300.742504pt;}
.yc7_c01436{bottom:302.355976pt;}
.yb9_c01436{bottom:328.554033pt;}
.yba_c01436{bottom:329.532200pt;}
.ybb_c01436{bottom:331.036767pt;}
.ybc_c01436{bottom:332.782400pt;}
.ybd_c01436{bottom:333.812533pt;}
.ybe_c01436{bottom:335.360967pt;}
.ybf_c01436{bottom:337.367400pt;}
.yc0_c01436{bottom:339.892200pt;}
.yc1_c01436{bottom:340.643800pt;}
.yc2_c01436{bottom:341.423200pt;}
.yc3_c01436{bottom:342.948167pt;}
.yaf_c01436{bottom:360.004000pt;}
.yb0_c01436{bottom:360.901933pt;}
.yb1_c01436{bottom:362.360833pt;}
.yb2_c01436{bottom:364.562733pt;}
.yb3_c01436{bottom:366.069767pt;}
.yb4_c01436{bottom:368.224133pt;}
.yb5_c01436{bottom:368.962667pt;}
.yb6_c01436{bottom:369.948000pt;}
.yb7_c01436{bottom:372.102067pt;}
.yb8_c01436{bottom:373.099400pt;}
.yaa_c01436{bottom:394.324000pt;}
.yab_c01436{bottom:394.964229pt;}
.yac_c01436{bottom:395.613875pt;}
.yad_c01436{bottom:397.134251pt;}
.yae_c01436{bottom:398.604173pt;}
.ya1_c01436{bottom:423.365333pt;}
.ya2_c01436{bottom:424.361669pt;}
.ya3_c01436{bottom:426.189605pt;}
.ya4_c01436{bottom:427.485821pt;}
.ya5_c01436{bottom:430.168793pt;}
.ya6_c01436{bottom:432.223961pt;}
.ya7_c01436{bottom:433.021577pt;}
.ya8_c01436{bottom:434.079689pt;}
.ya9_c01436{bottom:438.583577pt;}
.ya0_c01436{bottom:458.491664pt;}
.y9f_c01436{bottom:458.491960pt;}
.y9e_c01436{bottom:458.492147pt;}
.y73_c01436{bottom:485.049333pt;}
.y95_c01436{bottom:487.205333pt;}
.y96_c01436{bottom:488.170661pt;}
.y97_c01436{bottom:489.931035pt;}
.y98_c01436{bottom:491.485072pt;}
.y99_c01436{bottom:493.976912pt;}
.y9a_c01436{bottom:497.052677pt;}
.y9b_c01436{bottom:498.551075pt;}
.y9c_c01436{bottom:499.580155pt;}
.y9d_c01436{bottom:501.578861pt;}
.y8d_c01436{bottom:521.279773pt;}
.y8e_c01436{bottom:522.244811pt;}
.y8f_c01436{bottom:522.983240pt;}
.y90_c01436{bottom:525.179912pt;}
.y91_c01436{bottom:525.924581pt;}
.y92_c01436{bottom:527.342245pt;}
.y93_c01436{bottom:529.291976pt;}
.y94_c01436{bottom:530.008339pt;}
.y81_c01436{bottom:550.085333pt;}
.y82_c01436{bottom:551.082520pt;}
.y83_c01436{bottom:553.572419pt;}
.y84_c01436{bottom:555.343816pt;}
.y85_c01436{bottom:556.130923pt;}
.y86_c01436{bottom:557.379165pt;}
.y87_c01436{bottom:558.139544pt;}
.y88_c01436{bottom:559.133299pt;}
.y89_c01436{bottom:559.927443pt;}
.y8a_c01436{bottom:562.173739pt;}
.y8b_c01436{bottom:563.707600pt;}
.y8c_c01436{bottom:564.719589pt;}
.y7f_c01436{bottom:579.131705pt;}
.y80_c01436{bottom:585.420100pt;}
.y75_c01436{bottom:615.365333pt;}
.y76_c01436{bottom:616.233384pt;}
.y77_c01436{bottom:616.901120pt;}
.y78_c01436{bottom:618.955020pt;}
.y79_c01436{bottom:620.280617pt;}
.y7a_c01436{bottom:620.938479pt;}
.y7b_c01436{bottom:622.291032pt;}
.y7c_c01436{bottom:622.954659pt;}
.y7d_c01436{bottom:624.986755pt;}
.y7e_c01436{bottom:625.642960pt;}
.y66_c01436{bottom:643.925333pt;}
.y67_c01436{bottom:645.109621pt;}
.y68_c01436{bottom:645.782421pt;}
.y69_c01436{bottom:648.103573pt;}
.y6a_c01436{bottom:649.002293pt;}
.y6b_c01436{bottom:649.969013pt;}
.y6c_c01436{bottom:651.841301pt;}
.y6d_c01436{bottom:652.764437pt;}
.y6e_c01436{bottom:653.491637pt;}
.y6f_c01436{bottom:655.104789pt;}
.y70_c01436{bottom:655.808149pt;}
.y71_c01436{bottom:657.910645pt;}
.y72_c01436{bottom:658.826229pt;}
.y64_c01436{bottom:674.166667pt;}
.y65_c01436{bottom:674.566533pt;}
.y5a_c01436{bottom:709.449333pt;}
.y5b_c01436{bottom:712.231749pt;}
.y5c_c01436{bottom:713.272165pt;}
.y5d_c01436{bottom:714.049219pt;}
.y5e_c01436{bottom:715.534339pt;}
.y5f_c01436{bottom:717.307677pt;}
.y60_c01436{bottom:718.829232pt;}
.y61_c01436{bottom:719.596995pt;}
.y62_c01436{bottom:720.620667pt;}
.y63_c01436{bottom:721.890368pt;}
.y4d_c01436{bottom:738.461363pt;}
.y4e_c01436{bottom:739.849849pt;}
.y4f_c01436{bottom:740.635705pt;}
.y50_c01436{bottom:743.330936pt;}
.y51_c01436{bottom:744.426711pt;}
.y52_c01436{bottom:746.085888pt;}
.y53_c01436{bottom:748.270632pt;}
.y54_c01436{bottom:749.328300pt;}
.y55_c01436{bottom:750.445941pt;}
.y56_c01436{bottom:752.327881pt;}
.y57_c01436{bottom:753.434928pt;}
.y58_c01436{bottom:755.062785pt;}
.y59_c01436{bottom:755.906991pt;}
.y42_c01436{bottom:769.675511pt;}
.y43_c01436{bottom:771.070571pt;}
.y44_c01436{bottom:771.802505pt;}
.y45_c01436{bottom:774.276133pt;}
.y46_c01436{bottom:775.087839pt;}
.y47_c01436{bottom:776.190207pt;}
.y48_c01436{bottom:778.916352pt;}
.y49_c01436{bottom:779.482887pt;}
.y4a_c01436{bottom:781.663803pt;}
.y4b_c01436{bottom:783.808159pt;}
.y4c_c01436{bottom:784.622996pt;}
.y38_c01436{bottom:801.849333pt;}
.y39_c01436{bottom:803.280077pt;}
.y3a_c01436{bottom:804.066325pt;}
.y3b_c01436{bottom:806.599920pt;}
.y3c_c01436{bottom:808.020185pt;}
.y3d_c01436{bottom:810.550957pt;}
.y3e_c01436{bottom:811.410092pt;}
.y3f_c01436{bottom:812.267216pt;}
.y40_c01436{bottom:813.944460pt;}
.y41_c01436{bottom:814.783527pt;}
.y32_c01436{bottom:836.878928pt;}
.y33_c01436{bottom:838.787408pt;}
.y34_c01436{bottom:840.687301pt;}
.y35_c01436{bottom:841.489669pt;}
.y36_c01436{bottom:842.593579pt;}
.y37_c01436{bottom:846.399563pt;}
.y28_c01436{bottom:865.932000pt;}
.y29_c01436{bottom:868.612421pt;}
.y2a_c01436{bottom:869.439205pt;}
.y2b_c01436{bottom:870.281333pt;}
.y2c_c01436{bottom:873.074427pt;}
.y2d_c01436{bottom:874.640336pt;}
.y2e_c01436{bottom:875.704485pt;}
.y2f_c01436{bottom:876.801861pt;}
.y30_c01436{bottom:880.349760pt;}
.y31_c01436{bottom:881.149515pt;}
.y21_c01436{bottom:900.000293pt;}
.y22_c01436{bottom:902.304475pt;}
.y23_c01436{bottom:903.146976pt;}
.y24_c01436{bottom:904.386379pt;}
.y25_c01436{bottom:906.381936pt;}
.y26_c01436{bottom:907.263093pt;}
.y27_c01436{bottom:909.954517pt;}
.y16_c01436{bottom:929.052000pt;}
.y17_c01436{bottom:931.739141pt;}
.y18_c01436{bottom:932.559429pt;}
.y19_c01436{bottom:933.386213pt;}
.y1a_c01436{bottom:935.282784pt;}
.y1b_c01436{bottom:937.485152pt;}
.y1c_c01436{bottom:938.562181pt;}
.y1d_c01436{bottom:939.672811pt;}
.y1e_c01436{bottom:941.560944pt;}
.y1f_c01436{bottom:942.622853pt;}
.y20_c01436{bottom:944.289899pt;}
.yf_c01436{bottom:961.195404pt;}
.y2_c01436{bottom:962.637333pt;}
.y10_c01436{bottom:964.544216pt;}
.y11_c01436{bottom:965.348683pt;}
.y12_c01436{bottom:968.277905pt;}
.y13_c01436{bottom:970.091632pt;}
.y14_c01436{bottom:970.854901pt;}
.y15_c01436{bottom:971.967020pt;}
.y1_c01436{bottom:989.041333pt;}
.y6_c01436{bottom:993.602283pt;}
.y7_c01436{bottom:996.378556pt;}
.y8_c01436{bottom:998.404013pt;}
.y9_c01436{bottom:999.410215pt;}
.ya_c01436{bottom:1000.194997pt;}
.yb_c01436{bottom:1001.931635pt;}
.yc_c01436{bottom:1002.687648pt;}
.yd_c01436{bottom:1004.453856pt;}
.ye_c01436{bottom:1005.197767pt;}
.y4_c01436{bottom:1026.965333pt;}
.y5_c01436{bottom:1027.571701pt;}
.y3_c01436{bottom:1098.965333pt;}
.h3_c01436{height:16.000000pt;}
.h1c_c01436{height:21.333333pt;}
.h1b_c01436{height:21.339999pt;}
.h1a_c01436{height:26.674999pt;}
.he_c01436{height:37.333333pt;}
.h16_c01436{height:42.673578pt;}
.h8_c01436{height:42.683389pt;}
.h18_c01436{height:48.012694pt;}
.h5_c01436{height:58.679601pt;}
.h19_c01436{height:58.680862pt;}
.hd_c01436{height:58.683560pt;}
.h7_c01436{height:58.689659pt;}
.h9_c01436{height:58.691331pt;}
.h17_c01436{height:64.010367pt;}
.h6_c01436{height:64.014110pt;}
.h14_c01436{height:64.015486pt;}
.hb_c01436{height:64.021628pt;}
.h13_c01436{height:64.023324pt;}
.h2_c01436{height:69.333333pt;}
.hf_c01436{height:69.351670pt;}
.h15_c01436{height:69.354997pt;}
.h11_c01436{height:69.356764pt;}
.h12_c01436{height:74.691900pt;}
.ha_c01436{height:80.033633pt;}
.h4_c01436{height:85.333333pt;}
.hc_c01436{height:90.684798pt;}
.h10_c01436{height:90.690645pt;}
.h0_c01436{height:1121.280000pt;}
.h1_c01436{height:1121.333333pt;}
.w0_c01436{width:810.666667pt;}
.x0_c01436{left:0.000000pt;}
.x1_c01436{left:59.280000pt;}
.x63_c01436{left:72.720000pt;}
.x36_c01436{left:75.665333pt;}
.x46_c01436{left:76.860377pt;}
.x58_c01436{left:79.681333pt;}
.x64_c01436{left:96.240000pt;}
.x2_c01436{left:110.400000pt;}
.x37_c01436{left:125.001333pt;}
.x3f_c01436{left:125.975443pt;}
.x59_c01436{left:129.026667pt;}
.x18_c01436{left:140.329333pt;}
.x29_c01436{left:141.776000pt;}
.x84_c01436{left:144.434667pt;}
.x8e_c01436{left:146.093333pt;}
.x8_c01436{left:148.202167pt;}
.x11_c01436{left:149.444292pt;}
.x38_c01436{left:152.113333pt;}
.x47_c01436{left:154.506620pt;}
.x5a_c01436{left:157.060000pt;}
.x6c_c01436{left:179.426667pt;}
.x85_c01436{left:181.336000pt;}
.x93_c01436{left:184.433267pt;}
.x9a_c01436{left:196.327093pt;}
.x6_c01436{left:204.497333pt;}
.x50_c01436{left:212.054667pt;}
.x65_c01436{left:215.752000pt;}
.x76_c01436{left:217.813613pt;}
.x31_c01436{left:219.992789pt;}
.x98_c01436{left:224.166667pt;}
.xa3_c01436{left:226.349333pt;}
.x8b_c01436{left:230.610667pt;}
.x7_c01436{left:233.372000pt;}
.x19_c01436{left:236.298667pt;}
.x2a_c01436{left:237.505333pt;}
.x39_c01436{left:239.478667pt;}
.x40_c01436{left:240.469435pt;}
.x94_c01436{left:242.321167pt;}
.x9b_c01436{left:243.388203pt;}
.x7d_c01436{left:247.348000pt;}
.x86_c01436{left:249.037333pt;}
.x48_c01436{left:250.758737pt;}
.xa1_c01436{left:252.766667pt;}
.x5b_c01436{left:253.774667pt;}
.x9_c01436{left:254.997633pt;}
.x77_c01436{left:256.418619pt;}
.x82_c01436{left:257.797256pt;}
.x8c_c01436{left:259.712000pt;}
.x99_c01436{left:262.062667pt;}
.x1a_c01436{left:265.594667pt;}
.x2b_c01436{left:267.033333pt;}
.x41_c01436{left:269.471619pt;}
.x12_c01436{left:273.467335pt;}
.x6d_c01436{left:275.192000pt;}
.x23_c01436{left:277.402859pt;}
.x66_c01436{left:282.525333pt;}
.x78_c01436{left:285.948715pt;}
.x83_c01436{left:287.087717pt;}
.x32_c01436{left:288.152789pt;}
.x49_c01436{left:289.878525pt;}
.x5c_c01436{left:291.221333pt;}
.x1b_c01436{left:295.122667pt;}
.x2c_c01436{left:297.109333pt;}
.x13_c01436{left:303.263583pt;}
.x7e_c01436{left:307.118667pt;}
.x42_c01436{left:308.864779pt;}
.xa6_c01436{left:310.327533pt;}
.x51_c01436{left:319.070667pt;}
.x8f_c01436{left:328.442667pt;}
.x5d_c01436{left:331.501333pt;}
.xa_c01436{left:332.900124pt;}
.x6e_c01436{left:343.322667pt;}
.xa4_c01436{left:345.734667pt;}
.x4a_c01436{left:349.116227pt;}
.xa2_c01436{left:351.418667pt;}
.x24_c01436{left:354.214565pt;}
.x33_c01436{left:356.006123pt;}
.x3_c01436{left:358.320000pt;}
.x1c_c01436{left:362.857333pt;}
.xb_c01436{left:371.604064pt;}
.x6f_c01436{left:373.596000pt;}
.x3a_c01436{left:375.721333pt;}
.x4_c01436{left:378.960000pt;}
.x9c_c01436{left:380.438533pt;}
.x25_c01436{left:382.302331pt;}
.x34_c01436{left:384.662123pt;}
.x52_c01436{left:388.973333pt;}
.x2d_c01436{left:396.862667pt;}
.x6b_c01436{left:399.904408pt;}
.xc_c01436{left:401.796900pt;}
.x79_c01436{left:403.593099pt;}
.x3b_c01436{left:405.346667pt;}
.x95_c01436{left:408.618333pt;}
.x5e_c01436{left:409.513333pt;}
.x14_c01436{left:411.752585pt;}
.x5_c01436{left:416.880000pt;}
.x70_c01436{left:421.605333pt;}
.x26_c01436{left:423.612016pt;}
.x8d_c01436{left:425.164000pt;}
.x43_c01436{left:426.454848pt;}
.x67_c01436{left:429.460000pt;}
.x3c_c01436{left:434.902667pt;}
.x1d_c01436{left:441.513333pt;}
.x53_c01436{left:446.093333pt;}
.x5f_c01436{left:447.977333pt;}
.x71_c01436{left:450.850667pt;}
.x2e_c01436{left:452.788000pt;}
.x68_c01436{left:458.062667pt;}
.x7a_c01436{left:460.325256pt;}
.x4b_c01436{left:464.880885pt;}
.xd_c01436{left:468.613900pt;}
.x87_c01436{left:472.532000pt;}
.x90_c01436{left:474.898667pt;}
.x15_c01436{left:478.937463pt;}
.x1e_c01436{left:479.978667pt;}
.x96_c01436{left:485.780400pt;}
.x72_c01436{left:489.072000pt;}
.x27_c01436{left:490.116283pt;}
.x3d_c01436{left:492.738667pt;}
.xe_c01436{left:497.690848pt;}
.x88_c01436{left:502.073333pt;}
.x44_c01436{left:504.327757pt;}
.x16_c01436{left:507.216573pt;}
.x54_c01436{left:514.298667pt;}
.x69_c01436{left:516.869333pt;}
.x1f_c01436{left:519.644000pt;}
.x3e_c01436{left:521.672000pt;}
.x2f_c01436{left:529.985333pt;}
.x7b_c01436{left:538.291267pt;}
.x89_c01436{left:541.262667pt;}
.x91_c01436{left:543.853333pt;}
.x60_c01436{left:545.492000pt;}
.x9d_c01436{left:546.627581pt;}
.x17_c01436{left:548.423393pt;}
.x35_c01436{left:560.015456pt;}
.xf_c01436{left:565.598375pt;}
.x7c_c01436{left:566.921328pt;}
.x4c_c01436{left:571.995979pt;}
.x61_c01436{left:574.798667pt;}
.x7f_c01436{left:578.888000pt;}
.x45_c01436{left:580.893961pt;}
.x97_c01436{left:582.876633pt;}
.x20_c01436{left:587.077333pt;}
.x10_c01436{left:594.226045pt;}
.x55_c01436{left:602.349333pt;}
.x73_c01436{left:606.012000pt;}
.x28_c01436{left:609.225637pt;}
.x4d_c01436{left:611.550472pt;}
.x80_c01436{left:618.468000pt;}
.x9e_c01436{left:623.327336pt;}
.x21_c01436{left:625.002667pt;}
.x92_c01436{left:630.016000pt;}
.x6a_c01436{left:634.074667pt;}
.xa5_c01436{left:636.189333pt;}
.x56_c01436{left:641.721333pt;}
.x9f_c01436{left:652.674029pt;}
.x30_c01436{left:656.696000pt;}
.x62_c01436{left:662.402667pt;}
.x74_c01436{left:665.006667pt;}
.x4e_c01436{left:669.708173pt;}
.xa0_c01436{left:682.439341pt;}
.x22_c01436{left:684.540000pt;}
.x57_c01436{left:690.556000pt;}
.x81_c01436{left:695.341333pt;}
.x4f_c01436{left:699.877063pt;}
.x75_c01436{left:703.929333pt;}
.x8a_c01436{left:708.073333pt;}
}





/* 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_c01437 {
    display:none;
  }
  .loading-indicator_c01437.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01437 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_c01437 { 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_c01437" -> "#page-container .classname_c01437")
 */
.pf_c01437 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01437 { /* 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_c01437.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01437 { /* 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_c01437 { /* 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_c01437 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01437 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01437 {overflow:visible;}
  }
}
.c_c01437 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01437 { /* 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_c01437:after { /* webkit #35443 */
  content: '';
}
.t_c01437:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01437 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 */
}
.__c01437 { /* 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_c01437 { /* info for Javascript */
  display:none;
}
.l_c01437 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01437 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01437 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01437: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_c01437 {
    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_c01437.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01437.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_c01437 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01437{font-family:sans-serif;visibility:hidden;}
.sc__c01437{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01437{-webkit-text-stroke:0px transparent;}
}
.y0_c01437{bottom:0.000000px;}
.h0_c01437{height:1261.440000px;}
.h1_c01437{height:1261.500000px;}
.w0_c01437{width:912.000000px;}
.x0_c01437{left:0.000000px;}
@media print{
.y0_c01437{bottom:0.000000pt;}
.h0_c01437{height:1121.280000pt;}
.h1_c01437{height:1121.333333pt;}
.w0_c01437{width:810.666667pt;}
.x0_c01437{left:0.000000pt;}
}





/* 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_c01438 {
    display:none;
  }
  .loading-indicator_c01438.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01438 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_c01438 { 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_c01438" -> "#page-container .classname_c01438")
 */
.pf_c01438 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01438 { /* 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_c01438.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01438 { /* 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_c01438 { /* 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_c01438 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01438 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01438 {overflow:visible;}
  }
}
.c_c01438 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01438 { /* 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_c01438:after { /* webkit #35443 */
  content: '';
}
.t_c01438:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01438 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 */
}
.__c01438 { /* 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_c01438 { /* info for Javascript */
  display:none;
}
.l_c01438 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01438 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01438 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01438: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_c01438 {
    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_c01438.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01438.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_c01438 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01438{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01438;src:url('chunks/assets/font_53ec0c54e60da7c2d414b553.woff2')format("woff");}.ff1_c01438{font-family:ff1_c01438;line-height:1.000000;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;}
.me8_c01438{transform:matrix(0.021964,0.000154,-0.001750,0.249994,0,0);-ms-transform:matrix(0.021964,0.000154,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.021964,0.000154,-0.001750,0.249994,0,0);}
.m33_c01438{transform:matrix(0.066440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066440,0.000000,0.000000,0.250000,0,0);}
.mc_c01438{transform:matrix(0.093140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093140,0.000000,0.000000,0.250000,0,0);}
.me_c01438{transform:matrix(0.100900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100900,0.000000,0.000000,0.250000,0,0);}
.m8_c01438{transform:matrix(0.102775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102775,0.000000,0.000000,0.250000,0,0);}
.m41_c01438{transform:matrix(0.121373,0.001335,-0.002750,0.249985,0,0);-ms-transform:matrix(0.121373,0.001335,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.121373,0.001335,-0.002750,0.249985,0,0);}
.md_c01438{transform:matrix(0.138200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138200,0.000000,0.000000,0.250000,0,0);}
.m5_c01438{transform:matrix(0.144180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144180,0.000000,0.000000,0.250000,0,0);}
.m3_c01438{transform:matrix(0.144850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144850,0.000000,0.000000,0.250000,0,0);}
.m2_c01438{transform:matrix(0.146060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146060,0.000000,0.000000,0.250000,0,0);}
.m9_c01438{transform:matrix(0.147280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147280,0.000000,0.000000,0.250000,0,0);}
.ma_c01438{transform:matrix(0.148585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148585,0.000000,0.000000,0.250000,0,0);}
.ma7_c01438{transform:matrix(0.148642,0.000892,-0.001500,0.249996,0,0);-ms-transform:matrix(0.148642,0.000892,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.148642,0.000892,-0.001500,0.249996,0,0);}
.m4_c01438{transform:matrix(0.151355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151355,0.000000,0.000000,0.250000,0,0);}
.m42_c01438{transform:matrix(0.152096,0.001673,-0.002750,0.249985,0,0);-ms-transform:matrix(0.152096,0.001673,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.152096,0.001673,-0.002750,0.249985,0,0);}
.m6a_c01438{transform:matrix(0.165205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165205,0.000000,0.000000,0.250000,0,0);}
.m40_c01438{transform:matrix(0.165350,0.001819,-0.002750,0.249985,0,0);-ms-transform:matrix(0.165350,0.001819,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.165350,0.001819,-0.002750,0.249985,0,0);}
.m7f_c01438{transform:matrix(0.165670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165670,0.000000,0.000000,0.250000,0,0);}
.m44_c01438{transform:matrix(0.169445,0.001864,-0.002750,0.249985,0,0);-ms-transform:matrix(0.169445,0.001864,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.169445,0.001864,-0.002750,0.249985,0,0);}
.m3d_c01438{transform:matrix(0.170565,0.001876,-0.002750,0.249985,0,0);-ms-transform:matrix(0.170565,0.001876,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.170565,0.001876,-0.002750,0.249985,0,0);}
.me6_c01438{transform:matrix(0.175766,0.001230,-0.001750,0.249994,0,0);-ms-transform:matrix(0.175766,0.001230,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.175766,0.001230,-0.001750,0.249994,0,0);}
.mcf_c01438{transform:matrix(0.178991,0.001253,-0.001750,0.249994,0,0);-ms-transform:matrix(0.178991,0.001253,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.178991,0.001253,-0.001750,0.249994,0,0);}
.m3c_c01438{transform:matrix(0.180314,0.001983,-0.002750,0.249985,0,0);-ms-transform:matrix(0.180314,0.001983,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.180314,0.001983,-0.002750,0.249985,0,0);}
.m3e_c01438{transform:matrix(0.180469,0.001985,-0.002750,0.249985,0,0);-ms-transform:matrix(0.180469,0.001985,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.180469,0.001985,-0.002750,0.249985,0,0);}
.m43_c01438{transform:matrix(0.180614,0.001987,-0.002750,0.249985,0,0);-ms-transform:matrix(0.180614,0.001987,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.180614,0.001987,-0.002750,0.249985,0,0);}
.m1_c01438{transform:matrix(0.183415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183415,0.000000,0.000000,0.250000,0,0);}
.m46_c01438{transform:matrix(0.183649,0.002020,-0.002750,0.249985,0,0);-ms-transform:matrix(0.183649,0.002020,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.183649,0.002020,-0.002750,0.249985,0,0);}
.me2_c01438{transform:matrix(0.184260,0.001290,-0.001750,0.249994,0,0);-ms-transform:matrix(0.184260,0.001290,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.184260,0.001290,-0.001750,0.249994,0,0);}
.m45_c01438{transform:matrix(0.187224,0.002059,-0.002750,0.249985,0,0);-ms-transform:matrix(0.187224,0.002059,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.187224,0.002059,-0.002750,0.249985,0,0);}
.md1_c01438{transform:matrix(0.189245,0.001325,-0.001750,0.249994,0,0);-ms-transform:matrix(0.189245,0.001325,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.189245,0.001325,-0.001750,0.249994,0,0);}
.m66_c01438{transform:matrix(0.192555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192555,0.000000,0.000000,0.250000,0,0);}
.md3_c01438{transform:matrix(0.192740,0.001349,-0.001750,0.249994,0,0);-ms-transform:matrix(0.192740,0.001349,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.192740,0.001349,-0.001750,0.249994,0,0);}
.md2_c01438{transform:matrix(0.193020,0.001351,-0.001750,0.249994,0,0);-ms-transform:matrix(0.193020,0.001351,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.193020,0.001351,-0.001750,0.249994,0,0);}
.m6_c01438{transform:matrix(0.194485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194485,0.000000,0.000000,0.250000,0,0);}
.m86_c01438{transform:matrix(0.194585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194585,0.000000,0.000000,0.250000,0,0);}
.me4_c01438{transform:matrix(0.195085,0.001366,-0.001750,0.249994,0,0);-ms-transform:matrix(0.195085,0.001366,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.195085,0.001366,-0.001750,0.249994,0,0);}
.me5_c01438{transform:matrix(0.195435,0.001368,-0.001750,0.249994,0,0);-ms-transform:matrix(0.195435,0.001368,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.195435,0.001368,-0.001750,0.249994,0,0);}
.m74_c01438{transform:matrix(0.195575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195575,0.000000,0.000000,0.250000,0,0);}
.ma5_c01438{transform:matrix(0.195826,0.001175,-0.001500,0.249996,0,0);-ms-transform:matrix(0.195826,0.001175,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.195826,0.001175,-0.001500,0.249996,0,0);}
.m58_c01438{transform:matrix(0.197151,0.001183,-0.001500,0.249996,0,0);-ms-transform:matrix(0.197151,0.001183,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.197151,0.001183,-0.001500,0.249996,0,0);}
.ma8_c01438{transform:matrix(0.199246,0.001195,-0.001500,0.249996,0,0);-ms-transform:matrix(0.199246,0.001195,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.199246,0.001195,-0.001500,0.249996,0,0);}
.m55_c01438{transform:matrix(0.200306,0.001202,-0.001500,0.249996,0,0);-ms-transform:matrix(0.200306,0.001202,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.200306,0.001202,-0.001500,0.249996,0,0);}
.maa_c01438{transform:matrix(0.201146,0.001207,-0.001500,0.249996,0,0);-ms-transform:matrix(0.201146,0.001207,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.201146,0.001207,-0.001500,0.249996,0,0);}
.m3f_c01438{transform:matrix(0.203953,0.002243,-0.002750,0.249985,0,0);-ms-transform:matrix(0.203953,0.002243,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.203953,0.002243,-0.002750,0.249985,0,0);}
.me7_c01438{transform:matrix(0.204420,0.001431,-0.001750,0.249994,0,0);-ms-transform:matrix(0.204420,0.001431,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.204420,0.001431,-0.001750,0.249994,0,0);}
.m59_c01438{transform:matrix(0.207206,0.001243,-0.001500,0.249996,0,0);-ms-transform:matrix(0.207206,0.001243,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.207206,0.001243,-0.001500,0.249996,0,0);}
.m97_c01438{transform:matrix(0.207712,0.001039,-0.001250,0.249997,0,0);-ms-transform:matrix(0.207712,0.001039,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.207712,0.001039,-0.001250,0.249997,0,0);}
.m94_c01438{transform:matrix(0.208122,0.001041,-0.001250,0.249997,0,0);-ms-transform:matrix(0.208122,0.001041,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.208122,0.001041,-0.001250,0.249997,0,0);}
.me3_c01438{transform:matrix(0.208160,0.001457,-0.001750,0.249994,0,0);-ms-transform:matrix(0.208160,0.001457,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.208160,0.001457,-0.001750,0.249994,0,0);}
.m72_c01438{transform:matrix(0.211030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211030,0.000000,0.000000,0.250000,0,0);}
.m93_c01438{transform:matrix(0.211097,0.001055,-0.001250,0.249997,0,0);-ms-transform:matrix(0.211097,0.001055,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.211097,0.001055,-0.001250,0.249997,0,0);}
.mb9_c01438{transform:matrix(0.211730,0.001482,-0.001750,0.249994,0,0);-ms-transform:matrix(0.211730,0.001482,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.211730,0.001482,-0.001750,0.249994,0,0);}
.m4c_c01438{transform:matrix(0.211866,0.001271,-0.001500,0.249996,0,0);-ms-transform:matrix(0.211866,0.001271,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.211866,0.001271,-0.001500,0.249996,0,0);}
.m96_c01438{transform:matrix(0.213597,0.001068,-0.001250,0.249997,0,0);-ms-transform:matrix(0.213597,0.001068,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.213597,0.001068,-0.001250,0.249997,0,0);}
.m98_c01438{transform:matrix(0.216332,0.001082,-0.001250,0.249997,0,0);-ms-transform:matrix(0.216332,0.001082,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.216332,0.001082,-0.001250,0.249997,0,0);}
.m57_c01438{transform:matrix(0.217111,0.001303,-0.001500,0.249996,0,0);-ms-transform:matrix(0.217111,0.001303,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.217111,0.001303,-0.001500,0.249996,0,0);}
.md7_c01438{transform:matrix(0.217615,0.001523,-0.001750,0.249994,0,0);-ms-transform:matrix(0.217615,0.001523,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.217615,0.001523,-0.001750,0.249994,0,0);}
.m73_c01438{transform:matrix(0.218300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218300,0.000000,0.000000,0.250000,0,0);}
.m50_c01438{transform:matrix(0.218936,0.001314,-0.001500,0.249996,0,0);-ms-transform:matrix(0.218936,0.001314,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.218936,0.001314,-0.001500,0.249996,0,0);}
.m4f_c01438{transform:matrix(0.219096,0.001315,-0.001500,0.249996,0,0);-ms-transform:matrix(0.219096,0.001315,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.219096,0.001315,-0.001500,0.249996,0,0);}
.m9f_c01438{transform:matrix(0.219826,0.001319,-0.001500,0.249996,0,0);-ms-transform:matrix(0.219826,0.001319,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.219826,0.001319,-0.001500,0.249996,0,0);}
.mdf_c01438{transform:matrix(0.220185,0.001541,-0.001750,0.249994,0,0);-ms-transform:matrix(0.220185,0.001541,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.220185,0.001541,-0.001750,0.249994,0,0);}
.md4_c01438{transform:matrix(0.221450,0.001550,-0.001750,0.249994,0,0);-ms-transform:matrix(0.221450,0.001550,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.221450,0.001550,-0.001750,0.249994,0,0);}
.m6c_c01438{transform:matrix(0.223970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223970,0.000000,0.000000,0.250000,0,0);}
.m4d_c01438{transform:matrix(0.224651,0.001348,-0.001500,0.249996,0,0);-ms-transform:matrix(0.224651,0.001348,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.224651,0.001348,-0.001500,0.249996,0,0);}
.m70_c01438{transform:matrix(0.224705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224705,0.000000,0.000000,0.250000,0,0);}
.m92_c01438{transform:matrix(0.224997,0.001125,-0.001250,0.249997,0,0);-ms-transform:matrix(0.224997,0.001125,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.224997,0.001125,-0.001250,0.249997,0,0);}
.ma4_c01438{transform:matrix(0.225526,0.001353,-0.001500,0.249996,0,0);-ms-transform:matrix(0.225526,0.001353,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.225526,0.001353,-0.001500,0.249996,0,0);}
.m68_c01438{transform:matrix(0.227430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227430,0.000000,0.000000,0.250000,0,0);}
.m64_c01438{transform:matrix(0.227685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227685,0.000000,0.000000,0.250000,0,0);}
.m6e_c01438{transform:matrix(0.228015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228015,0.000000,0.000000,0.250000,0,0);}
.mb4_c01438{transform:matrix(0.228084,0.001597,-0.001750,0.249994,0,0);-ms-transform:matrix(0.228084,0.001597,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.228084,0.001597,-0.001750,0.249994,0,0);}
.mdc_c01438{transform:matrix(0.229144,0.001604,-0.001750,0.249994,0,0);-ms-transform:matrix(0.229144,0.001604,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.229144,0.001604,-0.001750,0.249994,0,0);}
.mad_c01438{transform:matrix(0.229521,0.001377,-0.001500,0.249996,0,0);-ms-transform:matrix(0.229521,0.001377,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.229521,0.001377,-0.001500,0.249996,0,0);}
.m23_c01438{transform:matrix(0.229525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229525,0.000000,0.000000,0.250000,0,0);}
.ma0_c01438{transform:matrix(0.229531,0.001377,-0.001500,0.249996,0,0);-ms-transform:matrix(0.229531,0.001377,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.229531,0.001377,-0.001500,0.249996,0,0);}
.m5f_c01438{transform:matrix(0.229745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229745,0.000000,0.000000,0.250000,0,0);}
.mc2_c01438{transform:matrix(0.230209,0.001611,-0.001750,0.249994,0,0);-ms-transform:matrix(0.230209,0.001611,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.230209,0.001611,-0.001750,0.249994,0,0);}
.m54_c01438{transform:matrix(0.230796,0.001385,-0.001500,0.249996,0,0);-ms-transform:matrix(0.230796,0.001385,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.230796,0.001385,-0.001500,0.249996,0,0);}
.mbc_c01438{transform:matrix(0.230889,0.001616,-0.001750,0.249994,0,0);-ms-transform:matrix(0.230889,0.001616,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.230889,0.001616,-0.001750,0.249994,0,0);}
.mf_c01438{transform:matrix(0.231785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231785,0.000000,0.000000,0.250000,0,0);}
.m60_c01438{transform:matrix(0.232060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232060,0.000000,0.000000,0.250000,0,0);}
.m9b_c01438{transform:matrix(0.232281,0.001394,-0.001500,0.249996,0,0);-ms-transform:matrix(0.232281,0.001394,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.232281,0.001394,-0.001500,0.249996,0,0);}
.md6_c01438{transform:matrix(0.232489,0.001627,-0.001750,0.249994,0,0);-ms-transform:matrix(0.232489,0.001627,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.232489,0.001627,-0.001750,0.249994,0,0);}
.m71_c01438{transform:matrix(0.233375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233375,0.000000,0.000000,0.250000,0,0);}
.me1_c01438{transform:matrix(0.233484,0.001634,-0.001750,0.249994,0,0);-ms-transform:matrix(0.233484,0.001634,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.233484,0.001634,-0.001750,0.249994,0,0);}
.mb7_c01438{transform:matrix(0.233729,0.001636,-0.001750,0.249994,0,0);-ms-transform:matrix(0.233729,0.001636,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.233729,0.001636,-0.001750,0.249994,0,0);}
.m91_c01438{transform:matrix(0.234092,0.001170,-0.001250,0.249997,0,0);-ms-transform:matrix(0.234092,0.001170,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.234092,0.001170,-0.001250,0.249997,0,0);}
.ma6_c01438{transform:matrix(0.234301,0.001406,-0.001500,0.249996,0,0);-ms-transform:matrix(0.234301,0.001406,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.234301,0.001406,-0.001500,0.249996,0,0);}
.m95_c01438{transform:matrix(0.234302,0.001172,-0.001250,0.249997,0,0);-ms-transform:matrix(0.234302,0.001172,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.234302,0.001172,-0.001250,0.249997,0,0);}
.m7d_c01438{transform:matrix(0.235080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235080,0.000000,0.000000,0.250000,0,0);}
.md0_c01438{transform:matrix(0.235384,0.001648,-0.001750,0.249994,0,0);-ms-transform:matrix(0.235384,0.001648,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.235384,0.001648,-0.001750,0.249994,0,0);}
.m56_c01438{transform:matrix(0.235816,0.001415,-0.001500,0.249996,0,0);-ms-transform:matrix(0.235816,0.001415,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.235816,0.001415,-0.001500,0.249996,0,0);}
.m6f_c01438{transform:matrix(0.236445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236445,0.000000,0.000000,0.250000,0,0);}
.m8e_c01438{transform:matrix(0.236462,0.001182,-0.001250,0.249997,0,0);-ms-transform:matrix(0.236462,0.001182,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.236462,0.001182,-0.001250,0.249997,0,0);}
.m99_c01438{transform:matrix(0.236582,0.001183,-0.001250,0.249997,0,0);-ms-transform:matrix(0.236582,0.001183,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.236582,0.001183,-0.001250,0.249997,0,0);}
.m7b_c01438{transform:matrix(0.236670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236670,0.000000,0.000000,0.250000,0,0);}
.m26_c01438{transform:matrix(0.236845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236845,0.000000,0.000000,0.250000,0,0);}
.m53_c01438{transform:matrix(0.236866,0.001421,-0.001500,0.249996,0,0);-ms-transform:matrix(0.236866,0.001421,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.236866,0.001421,-0.001500,0.249996,0,0);}
.m2a_c01438{transform:matrix(0.237185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237185,0.000000,0.000000,0.250000,0,0);}
.m61_c01438{transform:matrix(0.237290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237290,0.000000,0.000000,0.250000,0,0);}
.ma1_c01438{transform:matrix(0.237506,0.001425,-0.001500,0.249996,0,0);-ms-transform:matrix(0.237506,0.001425,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.237506,0.001425,-0.001500,0.249996,0,0);}
.m75_c01438{transform:matrix(0.237550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237550,0.000000,0.000000,0.250000,0,0);}
.m87_c01438{transform:matrix(0.237820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237820,0.000000,0.000000,0.250000,0,0);}
.m52_c01438{transform:matrix(0.238436,0.001431,-0.001500,0.249996,0,0);-ms-transform:matrix(0.238436,0.001431,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.238436,0.001431,-0.001500,0.249996,0,0);}
.m0_c01438{transform:matrix(0.238605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238605,0.000000,0.000000,0.250000,0,0);}
.m35_c01438{transform:matrix(0.238840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238840,0.000000,0.000000,0.250000,0,0);}
.m29_c01438{transform:matrix(0.238980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238980,0.000000,0.000000,0.250000,0,0);}
.mde_c01438{transform:matrix(0.239029,0.001673,-0.001750,0.249994,0,0);-ms-transform:matrix(0.239029,0.001673,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.239029,0.001673,-0.001750,0.249994,0,0);}
.m1b_c01438{transform:matrix(0.239070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239070,0.000000,0.000000,0.250000,0,0);}
.mb2_c01438{transform:matrix(0.240099,0.001681,-0.001750,0.249994,0,0);-ms-transform:matrix(0.240099,0.001681,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.240099,0.001681,-0.001750,0.249994,0,0);}
.mb1_c01438{transform:matrix(0.241514,0.001691,-0.001750,0.249994,0,0);-ms-transform:matrix(0.241514,0.001691,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.241514,0.001691,-0.001750,0.249994,0,0);}
.md5_c01438{transform:matrix(0.241584,0.001691,-0.001750,0.249994,0,0);-ms-transform:matrix(0.241584,0.001691,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.241584,0.001691,-0.001750,0.249994,0,0);}
.m62_c01438{transform:matrix(0.241945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241945,0.000000,0.000000,0.250000,0,0);}
.m7a_c01438{transform:matrix(0.242340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242340,0.000000,0.000000,0.250000,0,0);}
.mda_c01438{transform:matrix(0.242364,0.001697,-0.001750,0.249994,0,0);-ms-transform:matrix(0.242364,0.001697,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.242364,0.001697,-0.001750,0.249994,0,0);}
.m9c_c01438{transform:matrix(0.242581,0.001455,-0.001500,0.249996,0,0);-ms-transform:matrix(0.242581,0.001455,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.242581,0.001455,-0.001500,0.249996,0,0);}
.m36_c01438{transform:matrix(0.243020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243020,0.000000,0.000000,0.250000,0,0);}
.m25_c01438{transform:matrix(0.243495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243495,0.000000,0.000000,0.250000,0,0);}
.m69_c01438{transform:matrix(0.244095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244095,0.000000,0.000000,0.250000,0,0);}
.mcd_c01438{transform:matrix(0.244324,0.001710,-0.001750,0.249994,0,0);-ms-transform:matrix(0.244324,0.001710,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.244324,0.001710,-0.001750,0.249994,0,0);}
.m5c_c01438{transform:matrix(0.245080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245080,0.000000,0.000000,0.250000,0,0);}
.md8_c01438{transform:matrix(0.245159,0.001716,-0.001750,0.249994,0,0);-ms-transform:matrix(0.245159,0.001716,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.245159,0.001716,-0.001750,0.249994,0,0);}
.m2b_c01438{transform:matrix(0.245930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245930,0.000000,0.000000,0.250000,0,0);}
.m5d_c01438{transform:matrix(0.247245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247245,0.000000,0.000000,0.250000,0,0);}
.ma2_c01438{transform:matrix(0.248166,0.001489,-0.001500,0.249996,0,0);-ms-transform:matrix(0.248166,0.001489,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.248166,0.001489,-0.001500,0.249996,0,0);}
.m38_c01438{transform:matrix(0.248520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248520,0.000000,0.000000,0.250000,0,0);}
.m22_c01438{transform:matrix(0.249215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249215,0.000000,0.000000,0.250000,0,0);}
.m5e_c01438{transform:matrix(0.249655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249655,0.000000,0.000000,0.250000,0,0);}
.mdb_c01438{transform:matrix(0.250049,0.001750,-0.001750,0.249994,0,0);-ms-transform:matrix(0.250049,0.001750,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.250049,0.001750,-0.001750,0.249994,0,0);}
.ma3_c01438{transform:matrix(0.250050,0.001500,-0.001500,0.249996,0,0);-ms-transform:matrix(0.250050,0.001500,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.250050,0.001500,-0.001500,0.249996,0,0);}
.m83_c01438{transform:matrix(0.250390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250390,0.000000,0.000000,0.250000,0,0);}
.m4e_c01438{transform:matrix(0.250545,0.001503,-0.001500,0.249996,0,0);-ms-transform:matrix(0.250545,0.001503,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.250545,0.001503,-0.001500,0.249996,0,0);}
.mbf_c01438{transform:matrix(0.250924,0.001756,-0.001750,0.249994,0,0);-ms-transform:matrix(0.250924,0.001756,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.250924,0.001756,-0.001750,0.249994,0,0);}
.mc3_c01438{transform:matrix(0.251119,0.001758,-0.001750,0.249994,0,0);-ms-transform:matrix(0.251119,0.001758,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.251119,0.001758,-0.001750,0.249994,0,0);}
.mdd_c01438{transform:matrix(0.251869,0.001763,-0.001750,0.249994,0,0);-ms-transform:matrix(0.251869,0.001763,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.251869,0.001763,-0.001750,0.249994,0,0);}
.m65_c01438{transform:matrix(0.252830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252830,0.000000,0.000000,0.250000,0,0);}
.m8c_c01438{transform:matrix(0.252837,0.001264,-0.001250,0.249997,0,0);-ms-transform:matrix(0.252837,0.001264,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.252837,0.001264,-0.001250,0.249997,0,0);}
.md9_c01438{transform:matrix(0.253214,0.001772,-0.001750,0.249994,0,0);-ms-transform:matrix(0.253214,0.001772,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.253214,0.001772,-0.001750,0.249994,0,0);}
.m2d_c01438{transform:matrix(0.253400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253400,0.000000,0.000000,0.250000,0,0);}
.mc0_c01438{transform:matrix(0.253779,0.001776,-0.001750,0.249994,0,0);-ms-transform:matrix(0.253779,0.001776,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.253779,0.001776,-0.001750,0.249994,0,0);}
.m28_c01438{transform:matrix(0.253785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253785,0.000000,0.000000,0.250000,0,0);}
.mb6_c01438{transform:matrix(0.253794,0.001777,-0.001750,0.249994,0,0);-ms-transform:matrix(0.253794,0.001777,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.253794,0.001777,-0.001750,0.249994,0,0);}
.m4b_c01438{transform:matrix(0.253895,0.001523,-0.001500,0.249996,0,0);-ms-transform:matrix(0.253895,0.001523,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.253895,0.001523,-0.001500,0.249996,0,0);}
.m49_c01438{transform:matrix(0.254165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254165,0.000000,0.000000,0.250000,0,0);}
.mc1_c01438{transform:matrix(0.254224,0.001780,-0.001750,0.249994,0,0);-ms-transform:matrix(0.254224,0.001780,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.254224,0.001780,-0.001750,0.249994,0,0);}
.m63_c01438{transform:matrix(0.254585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254585,0.000000,0.000000,0.250000,0,0);}
.m19_c01438{transform:matrix(0.254940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254940,0.000000,0.000000,0.250000,0,0);}
.m5b_c01438{transform:matrix(0.255120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255120,0.000000,0.000000,0.250000,0,0);}
.m9a_c01438{transform:matrix(0.255385,0.001532,-0.001500,0.249996,0,0);-ms-transform:matrix(0.255385,0.001532,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.255385,0.001532,-0.001500,0.249996,0,0);}
.m90_c01438{transform:matrix(0.255577,0.001278,-0.001250,0.249997,0,0);-ms-transform:matrix(0.255577,0.001278,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.255577,0.001278,-0.001250,0.249997,0,0);}
.m7c_c01438{transform:matrix(0.256260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256260,0.000000,0.000000,0.250000,0,0);}
.m9e_c01438{transform:matrix(0.256485,0.001539,-0.001500,0.249996,0,0);-ms-transform:matrix(0.256485,0.001539,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.256485,0.001539,-0.001500,0.249996,0,0);}
.m1a_c01438{transform:matrix(0.257055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257055,0.000000,0.000000,0.250000,0,0);}
.m51_c01438{transform:matrix(0.258320,0.001550,-0.001500,0.249996,0,0);-ms-transform:matrix(0.258320,0.001550,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.258320,0.001550,-0.001500,0.249996,0,0);}
.mbe_c01438{transform:matrix(0.258899,0.001812,-0.001750,0.249994,0,0);-ms-transform:matrix(0.258899,0.001812,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.258899,0.001812,-0.001750,0.249994,0,0);}
.mba_c01438{transform:matrix(0.258944,0.001813,-0.001750,0.249994,0,0);-ms-transform:matrix(0.258944,0.001813,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.258944,0.001813,-0.001750,0.249994,0,0);}
.mb0_c01438{transform:matrix(0.259214,0.001814,-0.001750,0.249994,0,0);-ms-transform:matrix(0.259214,0.001814,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.259214,0.001814,-0.001750,0.249994,0,0);}
.m27_c01438{transform:matrix(0.259340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259340,0.000000,0.000000,0.250000,0,0);}
.me0_c01438{transform:matrix(0.260664,0.001825,-0.001750,0.249994,0,0);-ms-transform:matrix(0.260664,0.001825,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.260664,0.001825,-0.001750,0.249994,0,0);}
.m6d_c01438{transform:matrix(0.260930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260930,0.000000,0.000000,0.250000,0,0);}
.m20_c01438{transform:matrix(0.261330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261330,0.000000,0.000000,0.250000,0,0);}
.m6b_c01438{transform:matrix(0.261480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261480,0.000000,0.000000,0.250000,0,0);}
.mc8_c01438{transform:matrix(0.261924,0.001833,-0.001750,0.249994,0,0);-ms-transform:matrix(0.261924,0.001833,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.261924,0.001833,-0.001750,0.249994,0,0);}
.m5a_c01438{transform:matrix(0.261930,0.001572,-0.001500,0.249996,0,0);-ms-transform:matrix(0.261930,0.001572,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.261930,0.001572,-0.001500,0.249996,0,0);}
.m9d_c01438{transform:matrix(0.262470,0.001575,-0.001500,0.249996,0,0);-ms-transform:matrix(0.262470,0.001575,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.262470,0.001575,-0.001500,0.249996,0,0);}
.m34_c01438{transform:matrix(0.264360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264360,0.000000,0.000000,0.250000,0,0);}
.mab_c01438{transform:matrix(0.264430,0.001587,-0.001500,0.249996,0,0);-ms-transform:matrix(0.264430,0.001587,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.264430,0.001587,-0.001500,0.249996,0,0);}
.m81_c01438{transform:matrix(0.264520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264520,0.000000,0.000000,0.250000,0,0);}
.mcb_c01438{transform:matrix(0.264804,0.001854,-0.001750,0.249994,0,0);-ms-transform:matrix(0.264804,0.001854,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.264804,0.001854,-0.001750,0.249994,0,0);}
.m30_c01438{transform:matrix(0.265460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265460,0.000000,0.000000,0.250000,0,0);}
.m84_c01438{transform:matrix(0.265885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265885,0.000000,0.000000,0.250000,0,0);}
.m77_c01438{transform:matrix(0.266670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266670,0.000000,0.000000,0.250000,0,0);}
.m89_c01438{transform:matrix(0.267227,0.001336,-0.001250,0.249997,0,0);-ms-transform:matrix(0.267227,0.001336,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.267227,0.001336,-0.001250,0.249997,0,0);}
.mc7_c01438{transform:matrix(0.267668,0.001874,-0.001750,0.249994,0,0);-ms-transform:matrix(0.267668,0.001874,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.267668,0.001874,-0.001750,0.249994,0,0);}
.mb5_c01438{transform:matrix(0.267913,0.001875,-0.001750,0.249994,0,0);-ms-transform:matrix(0.267913,0.001875,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.267913,0.001875,-0.001750,0.249994,0,0);}
.m3a_c01438{transform:matrix(0.268495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268495,0.000000,0.000000,0.250000,0,0);}
.m21_c01438{transform:matrix(0.268580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268580,0.000000,0.000000,0.250000,0,0);}
.m8b_c01438{transform:matrix(0.269177,0.001346,-0.001250,0.249997,0,0);-ms-transform:matrix(0.269177,0.001346,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.269177,0.001346,-0.001250,0.249997,0,0);}
.mbb_c01438{transform:matrix(0.269438,0.001886,-0.001750,0.249994,0,0);-ms-transform:matrix(0.269438,0.001886,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.269438,0.001886,-0.001750,0.249994,0,0);}
.mb3_c01438{transform:matrix(0.269533,0.001887,-0.001750,0.249994,0,0);-ms-transform:matrix(0.269533,0.001887,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.269533,0.001887,-0.001750,0.249994,0,0);}
.m8d_c01438{transform:matrix(0.269612,0.001348,-0.001250,0.249997,0,0);-ms-transform:matrix(0.269612,0.001348,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.269612,0.001348,-0.001250,0.249997,0,0);}
.mac_c01438{transform:matrix(0.270410,0.001622,-0.001500,0.249996,0,0);-ms-transform:matrix(0.270410,0.001622,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.270410,0.001622,-0.001500,0.249996,0,0);}
.m47_c01438{transform:matrix(0.271185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271185,0.000000,0.000000,0.250000,0,0);}
.m80_c01438{transform:matrix(0.271270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271270,0.000000,0.000000,0.250000,0,0);}
.mbd_c01438{transform:matrix(0.271953,0.001904,-0.001750,0.249994,0,0);-ms-transform:matrix(0.271953,0.001904,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.271953,0.001904,-0.001750,0.249994,0,0);}
.m79_c01438{transform:matrix(0.272690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272690,0.000000,0.000000,0.250000,0,0);}
.m2f_c01438{transform:matrix(0.272720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272720,0.000000,0.000000,0.250000,0,0);}
.m7_c01438{transform:matrix(0.272920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272920,0.000000,0.000000,0.250000,0,0);}
.m8a_c01438{transform:matrix(0.274177,0.001371,-0.001250,0.249997,0,0);-ms-transform:matrix(0.274177,0.001371,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.274177,0.001371,-0.001250,0.249997,0,0);}
.m1f_c01438{transform:matrix(0.274580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274580,0.000000,0.000000,0.250000,0,0);}
.m76_c01438{transform:matrix(0.275055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275055,0.000000,0.000000,0.250000,0,0);}
.maf_c01438{transform:matrix(0.275338,0.001927,-0.001750,0.249994,0,0);-ms-transform:matrix(0.275338,0.001927,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.275338,0.001927,-0.001750,0.249994,0,0);}
.mcc_c01438{transform:matrix(0.275908,0.001931,-0.001750,0.249994,0,0);-ms-transform:matrix(0.275908,0.001931,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.275908,0.001931,-0.001750,0.249994,0,0);}
.m88_c01438{transform:matrix(0.276082,0.001380,-0.001250,0.249997,0,0);-ms-transform:matrix(0.276082,0.001380,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.276082,0.001380,-0.001250,0.249997,0,0);}
.m78_c01438{transform:matrix(0.276755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276755,0.000000,0.000000,0.250000,0,0);}
.m82_c01438{transform:matrix(0.276820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276820,0.000000,0.000000,0.250000,0,0);}
.m85_c01438{transform:matrix(0.279680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279680,0.000000,0.000000,0.250000,0,0);}
.m1d_c01438{transform:matrix(0.281120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281120,0.000000,0.000000,0.250000,0,0);}
.m7e_c01438{transform:matrix(0.281780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281780,0.000000,0.000000,0.250000,0,0);}
.m67_c01438{transform:matrix(0.283195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283195,0.000000,0.000000,0.250000,0,0);}
.m4a_c01438{transform:matrix(0.283515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283515,0.000000,0.000000,0.250000,0,0);}
.m31_c01438{transform:matrix(0.284615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284615,0.000000,0.000000,0.250000,0,0);}
.mae_c01438{transform:matrix(0.284660,0.001708,-0.001500,0.249996,0,0);-ms-transform:matrix(0.284660,0.001708,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.284660,0.001708,-0.001500,0.249996,0,0);}
.mb8_c01438{transform:matrix(0.287118,0.002010,-0.001750,0.249994,0,0);-ms-transform:matrix(0.287118,0.002010,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.287118,0.002010,-0.001750,0.249994,0,0);}
.m39_c01438{transform:matrix(0.287155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287155,0.000000,0.000000,0.250000,0,0);}
.m3b_c01438{transform:matrix(0.287940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287940,0.000000,0.000000,0.250000,0,0);}
.mb_c01438{transform:matrix(0.289040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289040,0.000000,0.000000,0.250000,0,0);}
.mc6_c01438{transform:matrix(0.289943,0.002030,-0.001750,0.249994,0,0);-ms-transform:matrix(0.289943,0.002030,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.289943,0.002030,-0.001750,0.249994,0,0);}
.m48_c01438{transform:matrix(0.290455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290455,0.000000,0.000000,0.250000,0,0);}
.m8f_c01438{transform:matrix(0.292886,0.001464,-0.001250,0.249997,0,0);-ms-transform:matrix(0.292886,0.001464,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.292886,0.001464,-0.001250,0.249997,0,0);}
.ma9_c01438{transform:matrix(0.293005,0.001758,-0.001500,0.249996,0,0);-ms-transform:matrix(0.293005,0.001758,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.293005,0.001758,-0.001500,0.249996,0,0);}
.mc9_c01438{transform:matrix(0.293243,0.002053,-0.001750,0.249994,0,0);-ms-transform:matrix(0.293243,0.002053,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.293243,0.002053,-0.001750,0.249994,0,0);}
.mca_c01438{transform:matrix(0.293488,0.002054,-0.001750,0.249994,0,0);-ms-transform:matrix(0.293488,0.002054,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.293488,0.002054,-0.001750,0.249994,0,0);}
.m18_c01438{transform:matrix(0.294690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294690,0.000000,0.000000,0.250000,0,0);}
.m2e_c01438{transform:matrix(0.296380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296380,0.000000,0.000000,0.250000,0,0);}
.m2c_c01438{transform:matrix(0.296470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296470,0.000000,0.000000,0.250000,0,0);}
.m24_c01438{transform:matrix(0.299910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299910,0.000000,0.000000,0.250000,0,0);}
.m1c_c01438{transform:matrix(0.300260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300260,0.000000,0.000000,0.250000,0,0);}
.mc5_c01438{transform:matrix(0.300373,0.002103,-0.001750,0.249994,0,0);-ms-transform:matrix(0.300373,0.002103,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.300373,0.002103,-0.001750,0.249994,0,0);}
.m1e_c01438{transform:matrix(0.302255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302255,0.000000,0.000000,0.250000,0,0);}
.mce_c01438{transform:matrix(0.310502,0.002174,-0.001750,0.249994,0,0);-ms-transform:matrix(0.310502,0.002174,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.310502,0.002174,-0.001750,0.249994,0,0);}
.m32_c01438{transform:matrix(0.320505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320505,0.000000,0.000000,0.250000,0,0);}
.m37_c01438{transform:matrix(0.325520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325520,0.000000,0.000000,0.250000,0,0);}
.m17_c01438{transform:matrix(0.335965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335965,0.000000,0.000000,0.250000,0,0);}
.m10_c01438{transform:matrix(0.339900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339900,0.000000,0.000000,0.250000,0,0);}
.mc4_c01438{transform:matrix(0.359140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359140,0.000000,0.000000,0.250000,0,0);}
.m13_c01438{transform:matrix(0.408045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408045,0.000000,0.000000,0.250000,0,0);}
.m16_c01438{transform:matrix(0.455660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455660,0.000000,0.000000,0.250000,0,0);}
.m11_c01438{transform:matrix(0.456840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456840,0.000000,0.000000,0.250000,0,0);}
.m15_c01438{transform:matrix(0.469950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.469950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.469950,0.000000,0.000000,0.250000,0,0);}
.m14_c01438{transform:matrix(0.473170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.473170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.473170,0.000000,0.000000,0.250000,0,0);}
.m12_c01438{transform:matrix(0.597795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.597795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.597795,0.000000,0.000000,0.250000,0,0);}
.v0_c01438{vertical-align:0.000000px;}
.ls0_c01438{letter-spacing:0.000000px;}
.sc__c01438{text-shadow:none;}
.sc0_c01438{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__c01438{-webkit-text-stroke:0px transparent;}
.sc0_c01438{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01438{word-spacing:0.000000px;}
._0_c01438{margin-left:-5.718771px;}
.fc0_c01438{color:transparent;}
.fs4_c01438{font-size:24.000000px;}
.fs2_c01438{font-size:36.000000px;}
.fs3_c01438{font-size:42.000000px;}
.fs13_c01438{font-size:54.000000px;}
.fs7_c01438{font-size:60.000000px;}
.fs6_c01438{font-size:66.000000px;}
.fs14_c01438{font-size:66.001617px;}
.fs1_c01438{font-size:72.000000px;}
.fsd_c01438{font-size:72.000900px;}
.fs11_c01438{font-size:72.001296px;}
.fs12_c01438{font-size:72.001764px;}
.fs0_c01438{font-size:78.000000px;}
.fsf_c01438{font-size:78.000975px;}
.fs9_c01438{font-size:78.001404px;}
.fs15_c01438{font-size:78.001911px;}
.fsc_c01438{font-size:84.000000px;}
.fsa_c01438{font-size:84.001512px;}
.fsb_c01438{font-size:90.000000px;}
.fse_c01438{font-size:96.001200px;}
.fs16_c01438{font-size:96.002352px;}
.fs8_c01438{font-size:96.005808px;}
.fs10_c01438{font-size:102.001836px;}
.fs5_c01438{font-size:162.000000px;}
.y0_c01438{bottom:0.000000px;}
.y94_c01438{bottom:54.296234px;}
.y93_c01438{bottom:56.063205px;}
.y92_c01438{bottom:56.295696px;}
.y91_c01438{bottom:56.524376px;}
.y90_c01438{bottom:56.979813px;}
.y8f_c01438{bottom:57.747205px;}
.y8e_c01438{bottom:58.049490px;}
.y8d_c01438{bottom:89.560235px;}
.y8c_c01438{bottom:90.326157px;}
.y8b_c01438{bottom:90.560086px;}
.y8a_c01438{bottom:91.023147px;}
.y89_c01438{bottom:91.639297px;}
.y88_c01438{bottom:91.862128px;}
.y87_c01438{bottom:92.546466px;}
.y86_c01438{bottom:92.937728px;}
.y85_c01438{bottom:93.690000px;}
.yc_c01438{bottom:94.231500px;}
.y84_c01438{bottom:126.490638px;}
.y83_c01438{bottom:126.961258px;}
.y82_c01438{bottom:127.265569px;}
.y81_c01438{bottom:127.796660px;}
.y80_c01438{bottom:128.031009px;}
.y7f_c01438{bottom:128.410836px;}
.y7e_c01438{bottom:128.947607px;}
.y7d_c01438{bottom:129.102440px;}
.y7c_c01438{bottom:129.870000px;}
.y7b_c01438{bottom:160.943579px;}
.y7a_c01438{bottom:161.732076px;}
.y79_c01438{bottom:161.953216px;}
.y78_c01438{bottom:162.408759px;}
.y77_c01438{bottom:162.646878px;}
.y76_c01438{bottom:162.881070px;}
.y75_c01438{bottom:163.554088px;}
.y74_c01438{bottom:163.797815px;}
.y73_c01438{bottom:164.094408px;}
.y72_c01438{bottom:164.489607px;}
.y71_c01438{bottom:165.240000px;}
.yb_c01438{bottom:165.511500px;}
.y70_c01438{bottom:200.191500px;}
.y6f_c01438{bottom:233.309080px;}
.y6e_c01438{bottom:233.508561px;}
.y6d_c01438{bottom:233.907407px;}
.y6c_c01438{bottom:234.037596px;}
.y6b_c01438{bottom:234.365913px;}
.y6a_c01438{bottom:234.757272px;}
.y69_c01438{bottom:235.158492px;}
.y68_c01438{bottom:235.349959px;}
.y67_c01438{bottom:235.865479px;}
.y66_c01438{bottom:236.274291px;}
.y65_c01438{bottom:236.518919px;}
.y64_c01438{bottom:268.927809px;}
.y63_c01438{bottom:269.150850px;}
.y62_c01438{bottom:269.600681px;}
.y61_c01438{bottom:269.838810px;}
.y60_c01438{bottom:270.067332px;}
.y5f_c01438{bottom:270.745926px;}
.y5e_c01438{bottom:270.985925px;}
.y5d_c01438{bottom:271.286298px;}
.y5c_c01438{bottom:271.673948px;}
.y5b_c01438{bottom:272.430000px;}
.ya_c01438{bottom:273.505500px;}
.y59_c01438{bottom:306.649071px;}
.y58_c01438{bottom:306.649722px;}
.y5a_c01438{bottom:306.649791px;}
.y57_c01438{bottom:306.649893px;}
.y56_c01438{bottom:334.454454px;}
.y55_c01438{bottom:334.614654px;}
.y54_c01438{bottom:335.304936px;}
.y53_c01438{bottom:335.722947px;}
.y52_c01438{bottom:335.915187px;}
.y51_c01438{bottom:336.831369px;}
.y50_c01438{bottom:337.295871px;}
.y4f_c01438{bottom:337.777962px;}
.y4e_c01438{bottom:375.336675px;}
.y4d_c01438{bottom:375.785433px;}
.y4c_c01438{bottom:376.057584px;}
.y4b_c01438{bottom:376.318305px;}
.y4a_c01438{bottom:376.977753px;}
.y49_c01438{bottom:377.692542px;}
.y48_c01438{bottom:377.965926px;}
.y47_c01438{bottom:378.160326px;}
.y46_c01438{bottom:378.810000px;}
.y9_c01438{bottom:380.838000px;}
.y44_c01438{bottom:412.304925px;}
.y45_c01438{bottom:412.305232px;}
.y43_c01438{bottom:442.994820px;}
.y40_c01438{bottom:442.995098px;}
.y41_c01438{bottom:442.995105px;}
.y42_c01438{bottom:442.995113px;}
.y3f_c01438{bottom:442.995698px;}
.y3e_c01438{bottom:442.995998px;}
.y3d_c01438{bottom:482.566920px;}
.y3c_c01438{bottom:482.785920px;}
.y3b_c01438{bottom:483.000218px;}
.y3a_c01438{bottom:483.494400px;}
.y39_c01438{bottom:483.605003px;}
.y38_c01438{bottom:484.042410px;}
.y37_c01438{bottom:484.586498px;}
.y36_c01438{bottom:484.919970px;}
.y35_c01438{bottom:485.460000px;}
.y8_c01438{bottom:487.621500px;}
.y7_c01438{bottom:560.251500px;}
.y34_c01438{bottom:626.607000px;}
.y33_c01438{bottom:663.337500px;}
.y6_c01438{bottom:665.694000px;}
.y32_c01438{bottom:698.800500px;}
.y5_c01438{bottom:701.328000px;}
.y31_c01438{bottom:728.217000px;}
.y30_c01438{bottom:768.915000px;}
.y2f_c01438{bottom:804.432000px;}
.y4_c01438{bottom:808.521000px;}
.y2b_c01438{bottom:840.488253px;}
.y2e_c01438{bottom:840.488511px;}
.y2a_c01438{bottom:840.488604px;}
.y2d_c01438{bottom:840.488682px;}
.y2c_c01438{bottom:840.488802px;}
.y29_c01438{bottom:840.489264px;}
.y28_c01438{bottom:874.833471px;}
.y27_c01438{bottom:875.105613px;}
.y26_c01438{bottom:875.489571px;}
.y25_c01438{bottom:876.278529px;}
.y24_c01438{bottom:876.479382px;}
.y23_c01438{bottom:876.735225px;}
.y22_c01438{bottom:877.268277px;}
.y21_c01438{bottom:877.464324px;}
.y20_c01438{bottom:877.663575px;}
.y1f_c01438{bottom:878.310000px;}
.y3_c01438{bottom:880.612500px;}
.y1e_c01438{bottom:912.166500px;}
.y1d_c01438{bottom:942.680553px;}
.y1c_c01438{bottom:943.043355px;}
.y1b_c01438{bottom:943.405249px;}
.y1a_c01438{bottom:943.886819px;}
.y19_c01438{bottom:944.236866px;}
.y18_c01438{bottom:944.617043px;}
.y17_c01438{bottom:945.814200px;}
.y16_c01438{bottom:947.132732px;}
.y15_c01438{bottom:947.500995px;}
.y14_c01438{bottom:947.860349px;}
.y13_c01438{bottom:949.051500px;}
.y2_c01438{bottom:951.765000px;}
.y12_c01438{bottom:982.842000px;}
.y11_c01438{bottom:1017.765000px;}
.y10_c01438{bottom:1053.462000px;}
.yf_c01438{bottom:1089.169500px;}
.y1_c01438{bottom:1124.692500px;}
.ye_c01438{bottom:1125.259500px;}
.yd_c01438{bottom:1202.155500px;}
.h6_c01438{height:24.000000px;}
.h4_c01438{height:36.000000px;}
.h5_c01438{height:42.000000px;}
.h16_c01438{height:54.000000px;}
.h9_c01438{height:60.000000px;}
.h8_c01438{height:66.000000px;}
.h17_c01438{height:66.001617px;}
.h3_c01438{height:72.000000px;}
.hf_c01438{height:72.000900px;}
.h14_c01438{height:72.001296px;}
.h15_c01438{height:72.001764px;}
.h2_c01438{height:78.000000px;}
.h12_c01438{height:78.000975px;}
.hb_c01438{height:78.001404px;}
.h18_c01438{height:78.001911px;}
.he_c01438{height:84.000000px;}
.hc_c01438{height:84.001512px;}
.hd_c01438{height:90.000000px;}
.h10_c01438{height:96.001200px;}
.h19_c01438{height:96.002352px;}
.ha_c01438{height:96.005808px;}
.h11_c01438{height:96.649208px;}
.h13_c01438{height:102.001836px;}
.h7_c01438{height:162.000000px;}
.h0_c01438{height:1261.440000px;}
.h1_c01438{height:1261.500000px;}
.w0_c01438{width:912.000000px;}
.x0_c01438{left:0.000000px;}
.x1_c01438{left:127.170000px;}
.x7_c01438{left:136.890000px;}
.x3_c01438{left:138.240000px;}
.xa_c01438{left:144.720000px;}
.x8_c01438{left:146.610000px;}
.x5_c01438{left:147.690000px;}
.x9_c01438{left:179.550000px;}
.x6_c01438{left:180.900000px;}
.x4_c01438{left:181.980000px;}
.x2_c01438{left:183.060000px;}
.x59_c01438{left:222.681000px;}
.x22_c01438{left:224.370000px;}
.x7f_c01438{left:232.371000px;}
.xc_c01438{left:237.060000px;}
.x60_c01438{left:272.970442px;}
.x4a_c01438{left:274.860000px;}
.x3e_c01438{left:277.291482px;}
.x16_c01438{left:278.640000px;}
.x36_c01438{left:288.900000px;}
.x24_c01438{left:301.050000px;}
.x3f_c01438{left:309.152625px;}
.x1e_c01438{left:311.310000px;}
.x46_c01438{left:315.090000px;}
.x61_c01438{left:318.331575px;}
.xd_c01438{left:323.190000px;}
.x5a_c01438{left:330.687000px;}
.x41_c01438{left:331.830000px;}
.x2c_c01438{left:333.048000px;}
.x23_c01438{left:336.420000px;}
.x80_c01438{left:339.570000px;}
.x6c_c01438{left:341.134218px;}
.x67_c01438{left:343.171748px;}
.x1f_c01438{left:345.060000px;}
.x17_c01438{left:347.220000px;}
.x53_c01438{left:352.350000px;}
.xe_c01438{left:356.940000px;}
.x68_c01438{left:362.536500px;}
.x4e_c01438{left:364.500000px;}
.x2d_c01438{left:365.716500px;}
.x37_c01438{left:375.570000px;}
.x71_c01438{left:384.751914px;}
.x78_c01438{left:386.029106px;}
.x42_c01438{left:387.450000px;}
.x25_c01438{left:388.530000px;}
.x81_c01438{left:396.027000px;}
.x3a_c01438{left:398.181000px;}
.x2e_c01438{left:399.195000px;}
.xf_c01438{left:400.950000px;}
.x88_c01438{left:406.266000px;}
.x54_c01438{left:408.240000px;}
.x26_c01438{left:411.210000px;}
.x72_c01438{left:416.883075px;}
.x20_c01438{left:421.470000px;}
.x73_c01438{left:428.142000px;}
.x10_c01438{left:431.730000px;}
.xb_c01438{left:433.350000px;}
.x82_c01438{left:438.397500px;}
.x47_c01438{left:441.990000px;}
.x27_c01438{left:443.070000px;}
.x38_c01438{left:453.060000px;}
.x4b_c01438{left:463.320000px;}
.x18_c01438{left:465.480000px;}
.x79_c01438{left:471.889704px;}
.x55_c01438{left:473.850000px;}
.x43_c01438{left:474.930000px;}
.x89_c01438{left:482.947500px;}
.x39_c01438{left:485.190000px;}
.x3b_c01438{left:487.023000px;}
.x8b_c01438{left:493.498500px;}
.x62_c01438{left:495.454500px;}
.x7a_c01438{left:503.742425px;}
.x5b_c01438{left:506.199000px;}
.x4c_c01438{left:507.600000px;}
.x19_c01438{left:509.490000px;}
.x4f_c01438{left:517.320000px;}
.x2f_c01438{left:519.061500px;}
.x21_c01438{left:520.830000px;}
.x8c_c01438{left:525.331500px;}
.x69_c01438{left:527.232000px;}
.x28_c01438{left:530.280000px;}
.x11_c01438{left:532.170000px;}
.x8a_c01438{left:537.208500px;}
.x40_c01438{left:538.926396px;}
.x29_c01438{left:552.150000px;}
.x1a_c01438{left:554.040000px;}
.x74_c01438{left:559.369500px;}
.x3c_c01438{left:563.139000px;}
.x6d_c01438{left:566.036877px;}
.x83_c01438{left:569.361000px;}
.x7b_c01438{left:570.702897px;}
.x4d_c01438{left:572.400000px;}
.x63_c01438{left:581.855160px;}
.x48_c01438{left:583.740000px;}
.x75_c01438{left:592.015500px;}
.x5c_c01438{left:593.680500px;}
.x2a_c01438{left:595.620000px;}
.x12_c01438{left:597.240000px;}
.x84_c01438{left:602.817000px;}
.x44_c01438{left:605.340000px;}
.x8d_c01438{left:613.353000px;}
.x49_c01438{left:616.140000px;}
.x6e_c01438{left:625.705017px;}
.x30_c01438{left:627.894000px;}
.x7c_c01438{left:636.040359px;}
.x6a_c01438{left:637.140000px;}
.x64_c01438{left:646.656780px;}
.x50_c01438{left:649.080000px;}
.x1b_c01438{left:651.780000px;}
.x31_c01438{left:662.455500px;}
.x2b_c01438{left:673.110000px;}
.x8e_c01438{left:679.504500px;}
.x6b_c01438{left:680.593500px;}
.x51_c01438{left:683.640000px;}
.x76_c01438{left:690.295500px;}
.x32_c01438{left:694.278000px;}
.x85_c01438{left:701.911500px;}
.x56_c01438{left:703.620000px;}
.x13_c01438{left:706.860000px;}
.x7d_c01438{left:712.470395px;}
.x5d_c01438{left:714.637500px;}
.x77_c01438{left:722.158500px;}
.x6f_c01438{left:724.251423px;}
.x45_c01438{left:726.030000px;}
.x86_c01438{left:733.503000px;}
.x33_c01438{left:738.057000px;}
.x65_c01438{left:746.017763px;}
.x70_c01438{left:747.201288px;}
.x1c_c01438{left:750.330000px;}
.x14_c01438{left:752.490000px;}
.x5e_c01438{left:757.497000px;}
.x3d_c01438{left:758.625000px;}
.x34_c01438{left:770.956500px;}
.x66_c01438{left:778.418573px;}
.x57_c01438{left:779.490000px;}
.x1d_c01438{left:783.000000px;}
.x52_c01438{left:790.290000px;}
.x5f_c01438{left:801.297000px;}
.x35_c01438{left:803.938500px;}
.x15_c01438{left:805.140000px;}
.x7e_c01438{left:812.089088px;}
.x8f_c01438{left:822.340500px;}
.x58_c01438{left:824.310000px;}
.x87_c01438{left:846.145500px;}
@media print{
.v0_c01438{vertical-align:0.000000pt;}
.ls0_c01438{letter-spacing:0.000000pt;}
.ws0_c01438{word-spacing:0.000000pt;}
._0_c01438{margin-left:-5.083352pt;}
.fs4_c01438{font-size:21.333333pt;}
.fs2_c01438{font-size:32.000000pt;}
.fs3_c01438{font-size:37.333333pt;}
.fs13_c01438{font-size:48.000000pt;}
.fs7_c01438{font-size:53.333333pt;}
.fs6_c01438{font-size:58.666667pt;}
.fs14_c01438{font-size:58.668104pt;}
.fs1_c01438{font-size:64.000000pt;}
.fsd_c01438{font-size:64.000800pt;}
.fs11_c01438{font-size:64.001152pt;}
.fs12_c01438{font-size:64.001568pt;}
.fs0_c01438{font-size:69.333333pt;}
.fsf_c01438{font-size:69.334200pt;}
.fs9_c01438{font-size:69.334581pt;}
.fs15_c01438{font-size:69.335032pt;}
.fsc_c01438{font-size:74.666667pt;}
.fsa_c01438{font-size:74.668011pt;}
.fsb_c01438{font-size:80.000000pt;}
.fse_c01438{font-size:85.334400pt;}
.fs16_c01438{font-size:85.335424pt;}
.fs8_c01438{font-size:85.338496pt;}
.fs10_c01438{font-size:90.668299pt;}
.fs5_c01438{font-size:144.000000pt;}
.y0_c01438{bottom:0.000000pt;}
.y94_c01438{bottom:48.263319pt;}
.y93_c01438{bottom:49.833960pt;}
.y92_c01438{bottom:50.040619pt;}
.y91_c01438{bottom:50.243889pt;}
.y90_c01438{bottom:50.648723pt;}
.y8f_c01438{bottom:51.330849pt;}
.y8e_c01438{bottom:51.599547pt;}
.y8d_c01438{bottom:79.609097pt;}
.y8c_c01438{bottom:80.289917pt;}
.y8b_c01438{bottom:80.497855pt;}
.y8a_c01438{bottom:80.909464pt;}
.y89_c01438{bottom:81.457153pt;}
.y88_c01438{bottom:81.655225pt;}
.y87_c01438{bottom:82.263525pt;}
.y86_c01438{bottom:82.611313pt;}
.y85_c01438{bottom:83.280000pt;}
.yc_c01438{bottom:83.761333pt;}
.y84_c01438{bottom:112.436123pt;}
.y83_c01438{bottom:112.854452pt;}
.y82_c01438{bottom:113.124951pt;}
.y81_c01438{bottom:113.597031pt;}
.y80_c01438{bottom:113.805341pt;}
.y7f_c01438{bottom:114.142965pt;}
.y7e_c01438{bottom:114.620095pt;}
.y7d_c01438{bottom:114.757724pt;}
.y7c_c01438{bottom:115.440000pt;}
.y7b_c01438{bottom:143.060959pt;}
.y7a_c01438{bottom:143.761845pt;}
.y79_c01438{bottom:143.958415pt;}
.y78_c01438{bottom:144.363341pt;}
.y77_c01438{bottom:144.575003pt;}
.y76_c01438{bottom:144.783173pt;}
.y75_c01438{bottom:145.381412pt;}
.y74_c01438{bottom:145.598057pt;}
.y73_c01438{bottom:145.861696pt;}
.y72_c01438{bottom:146.212984pt;}
.y71_c01438{bottom:146.880000pt;}
.yb_c01438{bottom:147.121333pt;}
.y70_c01438{bottom:177.948000pt;}
.y6f_c01438{bottom:207.385849pt;}
.y6e_c01438{bottom:207.563165pt;}
.y6d_c01438{bottom:207.917695pt;}
.y6c_c01438{bottom:208.033419pt;}
.y6b_c01438{bottom:208.325256pt;}
.y6a_c01438{bottom:208.673131pt;}
.y69_c01438{bottom:209.029771pt;}
.y68_c01438{bottom:209.199964pt;}
.y67_c01438{bottom:209.658204pt;}
.y66_c01438{bottom:210.021592pt;}
.y65_c01438{bottom:210.239039pt;}
.y64_c01438{bottom:239.046941pt;}
.y63_c01438{bottom:239.245200pt;}
.y62_c01438{bottom:239.645049pt;}
.y61_c01438{bottom:239.856720pt;}
.y60_c01438{bottom:240.059851pt;}
.y5f_c01438{bottom:240.663045pt;}
.y5e_c01438{bottom:240.876377pt;}
.y5d_c01438{bottom:241.143376pt;}
.y5c_c01438{bottom:241.487953pt;}
.y5b_c01438{bottom:242.160000pt;}
.ya_c01438{bottom:243.116000pt;}
.y59_c01438{bottom:272.576952pt;}
.y58_c01438{bottom:272.577531pt;}
.y5a_c01438{bottom:272.577592pt;}
.y57_c01438{bottom:272.577683pt;}
.y56_c01438{bottom:297.292848pt;}
.y55_c01438{bottom:297.435248pt;}
.y54_c01438{bottom:298.048832pt;}
.y53_c01438{bottom:298.420397pt;}
.y52_c01438{bottom:298.591277pt;}
.y51_c01438{bottom:299.405661pt;}
.y50_c01438{bottom:299.818552pt;}
.y4f_c01438{bottom:300.247077pt;}
.y4e_c01438{bottom:333.632600pt;}
.y4d_c01438{bottom:334.031496pt;}
.y4c_c01438{bottom:334.273408pt;}
.y4b_c01438{bottom:334.505160pt;}
.y4a_c01438{bottom:335.091336pt;}
.y49_c01438{bottom:335.726704pt;}
.y48_c01438{bottom:335.969712pt;}
.y47_c01438{bottom:336.142512pt;}
.y46_c01438{bottom:336.720000pt;}
.y9_c01438{bottom:338.522667pt;}
.y44_c01438{bottom:366.493267pt;}
.y45_c01438{bottom:366.493540pt;}
.y43_c01438{bottom:393.773173pt;}
.y40_c01438{bottom:393.773420pt;}
.y41_c01438{bottom:393.773427pt;}
.y42_c01438{bottom:393.773433pt;}
.y3f_c01438{bottom:393.773953pt;}
.y3e_c01438{bottom:393.774220pt;}
.y3d_c01438{bottom:428.948373pt;}
.y3c_c01438{bottom:429.143040pt;}
.y3b_c01438{bottom:429.333527pt;}
.y3a_c01438{bottom:429.772800pt;}
.y39_c01438{bottom:429.871113pt;}
.y38_c01438{bottom:430.259920pt;}
.y37_c01438{bottom:430.743553pt;}
.y36_c01438{bottom:431.039973pt;}
.y35_c01438{bottom:431.520000pt;}
.y8_c01438{bottom:433.441333pt;}
.y7_c01438{bottom:498.001333pt;}
.y34_c01438{bottom:556.984000pt;}
.y33_c01438{bottom:589.633333pt;}
.y6_c01438{bottom:591.728000pt;}
.y32_c01438{bottom:621.156000pt;}
.y5_c01438{bottom:623.402667pt;}
.y31_c01438{bottom:647.304000pt;}
.y30_c01438{bottom:683.480000pt;}
.y2f_c01438{bottom:715.050667pt;}
.y4_c01438{bottom:718.685333pt;}
.y2b_c01438{bottom:747.100669pt;}
.y2e_c01438{bottom:747.100899pt;}
.y2a_c01438{bottom:747.100981pt;}
.y2d_c01438{bottom:747.101051pt;}
.y2c_c01438{bottom:747.101157pt;}
.y29_c01438{bottom:747.101568pt;}
.y28_c01438{bottom:777.629752pt;}
.y27_c01438{bottom:777.871656pt;}
.y26_c01438{bottom:778.212952pt;}
.y25_c01438{bottom:778.914248pt;}
.y24_c01438{bottom:779.092784pt;}
.y23_c01438{bottom:779.320200pt;}
.y22_c01438{bottom:779.794024pt;}
.y21_c01438{bottom:779.968288pt;}
.y20_c01438{bottom:780.145400pt;}
.y1f_c01438{bottom:780.720000pt;}
.y3_c01438{bottom:782.766667pt;}
.y1e_c01438{bottom:810.814667pt;}
.y1d_c01438{bottom:837.938269pt;}
.y1c_c01438{bottom:838.260760pt;}
.y1b_c01438{bottom:838.582444pt;}
.y1a_c01438{bottom:839.010505pt;}
.y19_c01438{bottom:839.321659pt;}
.y18_c01438{bottom:839.659593pt;}
.y17_c01438{bottom:840.723733pt;}
.y16_c01438{bottom:841.895761pt;}
.y15_c01438{bottom:842.223107pt;}
.y14_c01438{bottom:842.542532pt;}
.y13_c01438{bottom:843.601333pt;}
.y2_c01438{bottom:846.013333pt;}
.y12_c01438{bottom:873.637333pt;}
.y11_c01438{bottom:904.680000pt;}
.y10_c01438{bottom:936.410667pt;}
.yf_c01438{bottom:968.150667pt;}
.y1_c01438{bottom:999.726667pt;}
.ye_c01438{bottom:1000.230667pt;}
.yd_c01438{bottom:1068.582667pt;}
.h6_c01438{height:21.333333pt;}
.h4_c01438{height:32.000000pt;}
.h5_c01438{height:37.333333pt;}
.h16_c01438{height:48.000000pt;}
.h9_c01438{height:53.333333pt;}
.h8_c01438{height:58.666667pt;}
.h17_c01438{height:58.668104pt;}
.h3_c01438{height:64.000000pt;}
.hf_c01438{height:64.000800pt;}
.h14_c01438{height:64.001152pt;}
.h15_c01438{height:64.001568pt;}
.h2_c01438{height:69.333333pt;}
.h12_c01438{height:69.334200pt;}
.hb_c01438{height:69.334581pt;}
.h18_c01438{height:69.335032pt;}
.he_c01438{height:74.666667pt;}
.hc_c01438{height:74.668011pt;}
.hd_c01438{height:80.000000pt;}
.h10_c01438{height:85.334400pt;}
.h19_c01438{height:85.335424pt;}
.ha_c01438{height:85.338496pt;}
.h11_c01438{height:85.910407pt;}
.h13_c01438{height:90.668299pt;}
.h7_c01438{height:144.000000pt;}
.h0_c01438{height:1121.280000pt;}
.h1_c01438{height:1121.333333pt;}
.w0_c01438{width:810.666667pt;}
.x0_c01438{left:0.000000pt;}
.x1_c01438{left:113.040000pt;}
.x7_c01438{left:121.680000pt;}
.x3_c01438{left:122.880000pt;}
.xa_c01438{left:128.640000pt;}
.x8_c01438{left:130.320000pt;}
.x5_c01438{left:131.280000pt;}
.x9_c01438{left:159.600000pt;}
.x6_c01438{left:160.800000pt;}
.x4_c01438{left:161.760000pt;}
.x2_c01438{left:162.720000pt;}
.x59_c01438{left:197.938667pt;}
.x22_c01438{left:199.440000pt;}
.x7f_c01438{left:206.552000pt;}
.xc_c01438{left:210.720000pt;}
.x60_c01438{left:242.640393pt;}
.x4a_c01438{left:244.320000pt;}
.x3e_c01438{left:246.481317pt;}
.x16_c01438{left:247.680000pt;}
.x36_c01438{left:256.800000pt;}
.x24_c01438{left:267.600000pt;}
.x3f_c01438{left:274.802333pt;}
.x1e_c01438{left:276.720000pt;}
.x46_c01438{left:280.080000pt;}
.x61_c01438{left:282.961400pt;}
.xd_c01438{left:287.280000pt;}
.x5a_c01438{left:293.944000pt;}
.x41_c01438{left:294.960000pt;}
.x2c_c01438{left:296.042667pt;}
.x23_c01438{left:299.040000pt;}
.x80_c01438{left:301.840000pt;}
.x6c_c01438{left:303.230416pt;}
.x67_c01438{left:305.041553pt;}
.x1f_c01438{left:306.720000pt;}
.x17_c01438{left:308.640000pt;}
.x53_c01438{left:313.200000pt;}
.xe_c01438{left:317.280000pt;}
.x68_c01438{left:322.254667pt;}
.x4e_c01438{left:324.000000pt;}
.x2d_c01438{left:325.081333pt;}
.x37_c01438{left:333.840000pt;}
.x71_c01438{left:342.001701pt;}
.x78_c01438{left:343.136983pt;}
.x42_c01438{left:344.400000pt;}
.x25_c01438{left:345.360000pt;}
.x81_c01438{left:352.024000pt;}
.x3a_c01438{left:353.938667pt;}
.x2e_c01438{left:354.840000pt;}
.xf_c01438{left:356.400000pt;}
.x88_c01438{left:361.125333pt;}
.x54_c01438{left:362.880000pt;}
.x26_c01438{left:365.520000pt;}
.x72_c01438{left:370.562733pt;}
.x20_c01438{left:374.640000pt;}
.x73_c01438{left:380.570667pt;}
.x10_c01438{left:383.760000pt;}
.xb_c01438{left:385.200000pt;}
.x82_c01438{left:389.686667pt;}
.x47_c01438{left:392.880000pt;}
.x27_c01438{left:393.840000pt;}
.x38_c01438{left:402.720000pt;}
.x4b_c01438{left:411.840000pt;}
.x18_c01438{left:413.760000pt;}
.x79_c01438{left:419.457515pt;}
.x55_c01438{left:421.200000pt;}
.x43_c01438{left:422.160000pt;}
.x89_c01438{left:429.286667pt;}
.x39_c01438{left:431.280000pt;}
.x3b_c01438{left:432.909333pt;}
.x8b_c01438{left:438.665333pt;}
.x62_c01438{left:440.404000pt;}
.x7a_c01438{left:447.771044pt;}
.x5b_c01438{left:449.954667pt;}
.x4c_c01438{left:451.200000pt;}
.x19_c01438{left:452.880000pt;}
.x4f_c01438{left:459.840000pt;}
.x2f_c01438{left:461.388000pt;}
.x21_c01438{left:462.960000pt;}
.x8c_c01438{left:466.961333pt;}
.x69_c01438{left:468.650667pt;}
.x28_c01438{left:471.360000pt;}
.x11_c01438{left:473.040000pt;}
.x8a_c01438{left:477.518667pt;}
.x40_c01438{left:479.045685pt;}
.x29_c01438{left:490.800000pt;}
.x1a_c01438{left:492.480000pt;}
.x74_c01438{left:497.217333pt;}
.x3c_c01438{left:500.568000pt;}
.x6d_c01438{left:503.143891pt;}
.x83_c01438{left:506.098667pt;}
.x7b_c01438{left:507.291464pt;}
.x4d_c01438{left:508.800000pt;}
.x63_c01438{left:517.204587pt;}
.x48_c01438{left:518.880000pt;}
.x75_c01438{left:526.236000pt;}
.x5c_c01438{left:527.716000pt;}
.x2a_c01438{left:529.440000pt;}
.x12_c01438{left:530.880000pt;}
.x84_c01438{left:535.837333pt;}
.x44_c01438{left:538.080000pt;}
.x8d_c01438{left:545.202667pt;}
.x49_c01438{left:547.680000pt;}
.x6e_c01438{left:556.182237pt;}
.x30_c01438{left:558.128000pt;}
.x7c_c01438{left:565.369208pt;}
.x6a_c01438{left:566.346667pt;}
.x64_c01438{left:574.806027pt;}
.x50_c01438{left:576.960000pt;}
.x1b_c01438{left:579.360000pt;}
.x31_c01438{left:588.849333pt;}
.x2b_c01438{left:598.320000pt;}
.x8e_c01438{left:604.004000pt;}
.x6b_c01438{left:604.972000pt;}
.x51_c01438{left:607.680000pt;}
.x76_c01438{left:613.596000pt;}
.x32_c01438{left:617.136000pt;}
.x85_c01438{left:623.921333pt;}
.x56_c01438{left:625.440000pt;}
.x13_c01438{left:628.320000pt;}
.x7d_c01438{left:633.307017pt;}
.x5d_c01438{left:635.233333pt;}
.x77_c01438{left:641.918667pt;}
.x6f_c01438{left:643.779043pt;}
.x45_c01438{left:645.360000pt;}
.x86_c01438{left:652.002667pt;}
.x33_c01438{left:656.050667pt;}
.x65_c01438{left:663.126900pt;}
.x70_c01438{left:664.178923pt;}
.x1c_c01438{left:666.960000pt;}
.x14_c01438{left:668.880000pt;}
.x5e_c01438{left:673.330667pt;}
.x3d_c01438{left:674.333333pt;}
.x34_c01438{left:685.294667pt;}
.x66_c01438{left:691.927620pt;}
.x57_c01438{left:692.880000pt;}
.x1d_c01438{left:696.000000pt;}
.x52_c01438{left:702.480000pt;}
.x5f_c01438{left:712.264000pt;}
.x35_c01438{left:714.612000pt;}
.x15_c01438{left:715.680000pt;}
.x7e_c01438{left:721.856967pt;}
.x8f_c01438{left:730.969333pt;}
.x58_c01438{left:732.720000pt;}
.x87_c01438{left:752.129333pt;}
}





/* 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_c01439 {
    display:none;
  }
  .loading-indicator_c01439.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01439 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_c01439 { 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_c01439" -> "#page-container .classname_c01439")
 */
.pf_c01439 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01439 { /* 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_c01439.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01439 { /* 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_c01439 { /* 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_c01439 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01439 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01439 {overflow:visible;}
  }
}
.c_c01439 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01439 { /* 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_c01439:after { /* webkit #35443 */
  content: '';
}
.t_c01439:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01439 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 */
}
.__c01439 { /* 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_c01439 { /* info for Javascript */
  display:none;
}
.l_c01439 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01439 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01439 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01439: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_c01439 {
    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_c01439.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01439.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_c01439 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01439{font-family:sans-serif;visibility:hidden;}
.sc__c01439{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01439{-webkit-text-stroke:0px transparent;}
}
.y0_c01439{bottom:0.000000px;}
.h0_c01439{height:1261.440000px;}
.h1_c01439{height:1261.500000px;}
.w0_c01439{width:912.000000px;}
.x0_c01439{left:0.000000px;}
@media print{
.y0_c01439{bottom:0.000000pt;}
.h0_c01439{height:1121.280000pt;}
.h1_c01439{height:1121.333333pt;}
.w0_c01439{width:810.666667pt;}
.x0_c01439{left:0.000000pt;}
}





/* 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_c01440 {
    display:none;
  }
  .loading-indicator_c01440.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01440 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_c01440 { 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_c01440" -> "#page-container .classname_c01440")
 */
.pf_c01440 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01440 { /* 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_c01440.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01440 { /* 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_c01440 { /* 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_c01440 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01440 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01440 {overflow:visible;}
  }
}
.c_c01440 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01440 { /* 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_c01440:after { /* webkit #35443 */
  content: '';
}
.t_c01440:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01440 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 */
}
.__c01440 { /* 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_c01440 { /* info for Javascript */
  display:none;
}
.l_c01440 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01440 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01440 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01440: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_c01440 {
    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_c01440.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01440.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_c01440 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01440{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01440;src:url('chunks/assets/font_c605e72f209fc835e906f064.woff2')format("woff");}.ff1_c01440{font-family:ff1_c01440;line-height:1.000000;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;}
.mb4_c01440{transform:matrix(0.009545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.009545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.009545,0.000000,0.000000,0.250000,0,0);}
.m3c_c01440{transform:matrix(0.010670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.010670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.010670,0.000000,0.000000,0.250000,0,0);}
.m6c_c01440{transform:matrix(0.013520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.013520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.013520,0.000000,0.000000,0.250000,0,0);}
.m32_c01440{transform:matrix(0.040250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.040250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.040250,0.000000,0.000000,0.250000,0,0);}
.ma5_c01440{transform:matrix(0.053850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.053850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.053850,0.000000,0.000000,0.250000,0,0);}
.m6e_c01440{transform:matrix(0.066495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066495,0.000000,0.000000,0.250000,0,0);}
.ma7_c01440{transform:matrix(0.144060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144060,0.000000,0.000000,0.250000,0,0);}
.m7a_c01440{transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);}
.m59_c01440{transform:matrix(0.150415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150415,0.000000,0.000000,0.250000,0,0);}
.m65_c01440{transform:matrix(0.151165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151165,0.000000,0.000000,0.250000,0,0);}
.ma2_c01440{transform:matrix(0.157535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157535,0.000000,0.000000,0.250000,0,0);}
.m30_c01440{transform:matrix(0.158355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158355,0.000000,0.000000,0.250000,0,0);}
.m2f_c01440{transform:matrix(0.162405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162405,0.000000,0.000000,0.250000,0,0);}
.mb7_c01440{transform:matrix(0.165265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165265,0.000000,0.000000,0.250000,0,0);}
.m33_c01440{transform:matrix(0.169065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169065,0.000000,0.000000,0.250000,0,0);}
.ma4_c01440{transform:matrix(0.169335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169335,0.000000,0.000000,0.250000,0,0);}
.m37_c01440{transform:matrix(0.170995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170995,0.000000,0.000000,0.250000,0,0);}
.m38_c01440{transform:matrix(0.175620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175620,0.000000,0.000000,0.250000,0,0);}
.m35_c01440{transform:matrix(0.179945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179945,0.000000,0.000000,0.250000,0,0);}
.ma1_c01440{transform:matrix(0.183860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183860,0.000000,0.000000,0.250000,0,0);}
.m2d_c01440{transform:matrix(0.192365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192365,0.000000,0.000000,0.250000,0,0);}
.m3a_c01440{transform:matrix(0.192510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192510,0.000000,0.000000,0.250000,0,0);}
.ma0_c01440{transform:matrix(0.193755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193755,0.000000,0.000000,0.250000,0,0);}
.m9e_c01440{transform:matrix(0.195505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195505,0.000000,0.000000,0.250000,0,0);}
.m27_c01440{transform:matrix(0.196350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196350,0.000000,0.000000,0.250000,0,0);}
.m92_c01440{transform:matrix(0.196730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196730,0.000000,0.000000,0.250000,0,0);}
.m98_c01440{transform:matrix(0.196735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196735,0.000000,0.000000,0.250000,0,0);}
.m3b_c01440{transform:matrix(0.197340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197340,0.000000,0.000000,0.250000,0,0);}
.m1f_c01440{transform:matrix(0.197830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197830,0.000000,0.000000,0.250000,0,0);}
.m24_c01440{transform:matrix(0.198380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198380,0.000000,0.000000,0.250000,0,0);}
.m1b_c01440{transform:matrix(0.199110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199110,0.000000,0.000000,0.250000,0,0);}
.m20_c01440{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m21_c01440{transform:matrix(0.199520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199520,0.000000,0.000000,0.250000,0,0);}
.m2b_c01440{transform:matrix(0.200600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200600,0.000000,0.000000,0.250000,0,0);}
.m23_c01440{transform:matrix(0.201150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201150,0.000000,0.000000,0.250000,0,0);}
.m42_c01440{transform:matrix(0.202515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202515,0.000000,0.000000,0.250000,0,0);}
.m79_c01440{transform:matrix(0.202660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202660,0.000000,0.000000,0.250000,0,0);}
.m9c_c01440{transform:matrix(0.202860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202860,0.000000,0.000000,0.250000,0,0);}
.m7f_c01440{transform:matrix(0.203300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203300,0.000000,0.000000,0.250000,0,0);}
.m82_c01440{transform:matrix(0.204560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204560,0.000000,0.000000,0.250000,0,0);}
.m9b_c01440{transform:matrix(0.205565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205565,0.000000,0.000000,0.250000,0,0);}
.m12_c01440{transform:matrix(0.206215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206215,0.000000,0.000000,0.250000,0,0);}
.m1d_c01440{transform:matrix(0.207440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207440,0.000000,0.000000,0.250000,0,0);}
.m7e_c01440{transform:matrix(0.208700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208700,0.000000,0.000000,0.250000,0,0);}
.mbf_c01440{transform:matrix(0.209935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209935,0.000000,0.000000,0.250000,0,0);}
.m2e_c01440{transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);}
.m77_c01440{transform:matrix(0.210670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210670,0.000000,0.000000,0.250000,0,0);}
.m31_c01440{transform:matrix(0.210945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210945,0.000000,0.000000,0.250000,0,0);}
.m99_c01440{transform:matrix(0.211020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211020,0.000000,0.000000,0.250000,0,0);}
.m80_c01440{transform:matrix(0.211485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211485,0.000000,0.000000,0.250000,0,0);}
.m29_c01440{transform:matrix(0.212180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212180,0.000000,0.000000,0.250000,0,0);}
.m7d_c01440{transform:matrix(0.212185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212185,0.000000,0.000000,0.250000,0,0);}
.ma3_c01440{transform:matrix(0.213805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213805,0.000000,0.000000,0.250000,0,0);}
.m86_c01440{transform:matrix(0.214415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214415,0.000000,0.000000,0.250000,0,0);}
.m39_c01440{transform:matrix(0.214545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214545,0.000000,0.000000,0.250000,0,0);}
.m68_c01440{transform:matrix(0.215885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215885,0.000000,0.000000,0.250000,0,0);}
.m81_c01440{transform:matrix(0.216375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216375,0.000000,0.000000,0.250000,0,0);}
.m22_c01440{transform:matrix(0.216625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216625,0.000000,0.000000,0.250000,0,0);}
.md_c01440{transform:matrix(0.216925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216925,0.000000,0.000000,0.250000,0,0);}
.m78_c01440{transform:matrix(0.218530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218530,0.000000,0.000000,0.250000,0,0);}
.m9a_c01440{transform:matrix(0.220130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220130,0.000000,0.000000,0.250000,0,0);}
.mad_c01440{transform:matrix(0.220630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220630,0.000000,0.000000,0.250000,0,0);}
.maf_c01440{transform:matrix(0.222310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222310,0.000000,0.000000,0.250000,0,0);}
.m36_c01440{transform:matrix(0.222575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222575,0.000000,0.000000,0.250000,0,0);}
.mb5_c01440{transform:matrix(0.223145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223145,0.000000,0.000000,0.250000,0,0);}
.m5b_c01440{transform:matrix(0.223380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223380,0.000000,0.000000,0.250000,0,0);}
.m53_c01440{transform:matrix(0.223505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223505,0.000000,0.000000,0.250000,0,0);}
.m40_c01440{transform:matrix(0.223605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223605,0.000000,0.000000,0.250000,0,0);}
.mb6_c01440{transform:matrix(0.224125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224125,0.000000,0.000000,0.250000,0,0);}
.m25_c01440{transform:matrix(0.224485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224485,0.000000,0.000000,0.250000,0,0);}
.mae_c01440{transform:matrix(0.224655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224655,0.000000,0.000000,0.250000,0,0);}
.m8a_c01440{transform:matrix(0.225315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225315,0.000000,0.000000,0.250000,0,0);}
.m1e_c01440{transform:matrix(0.225530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225530,0.000000,0.000000,0.250000,0,0);}
.m8f_c01440{transform:matrix(0.226015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226015,0.000000,0.000000,0.250000,0,0);}
.m19_c01440{transform:matrix(0.227430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227430,0.000000,0.000000,0.250000,0,0);}
.m47_c01440{transform:matrix(0.228170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228170,0.000000,0.000000,0.250000,0,0);}
.mc_c01440{transform:matrix(0.229525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229525,0.000000,0.000000,0.250000,0,0);}
.m84_c01440{transform:matrix(0.229660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229660,0.000000,0.000000,0.250000,0,0);}
.m2a_c01440{transform:matrix(0.230475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230475,0.000000,0.000000,0.250000,0,0);}
.m2c_c01440{transform:matrix(0.230870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230870,0.000000,0.000000,0.250000,0,0);}
.m54_c01440{transform:matrix(0.230910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230910,0.000000,0.000000,0.250000,0,0);}
.m64_c01440{transform:matrix(0.231690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231690,0.000000,0.000000,0.250000,0,0);}
.m90_c01440{transform:matrix(0.232050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232050,0.000000,0.000000,0.250000,0,0);}
.m72_c01440{transform:matrix(0.232325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232325,0.000000,0.000000,0.250000,0,0);}
.m5a_c01440{transform:matrix(0.232945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232945,0.000000,0.000000,0.250000,0,0);}
.m97_c01440{transform:matrix(0.233375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233375,0.000000,0.000000,0.250000,0,0);}
.m9d_c01440{transform:matrix(0.233705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233705,0.000000,0.000000,0.250000,0,0);}
.m87_c01440{transform:matrix(0.233980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233980,0.000000,0.000000,0.250000,0,0);}
.m17_c01440{transform:matrix(0.234360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234360,0.000000,0.000000,0.250000,0,0);}
.m94_c01440{transform:matrix(0.234425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234425,0.000000,0.000000,0.250000,0,0);}
.m11_c01440{transform:matrix(0.234800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234800,0.000000,0.000000,0.250000,0,0);}
.m95_c01440{transform:matrix(0.235220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235220,0.000000,0.000000,0.250000,0,0);}
.mb0_c01440{transform:matrix(0.235340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235340,0.000000,0.000000,0.250000,0,0);}
.m89_c01440{transform:matrix(0.235365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235365,0.000000,0.000000,0.250000,0,0);}
.m1c_c01440{transform:matrix(0.235440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235440,0.000000,0.000000,0.250000,0,0);}
.m67_c01440{transform:matrix(0.236490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236490,0.000000,0.000000,0.250000,0,0);}
.maa_c01440{transform:matrix(0.237325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237325,0.000000,0.000000,0.250000,0,0);}
.mb3_c01440{transform:matrix(0.237520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237520,0.000000,0.000000,0.250000,0,0);}
.mba_c01440{transform:matrix(0.237755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237755,0.000000,0.000000,0.250000,0,0);}
.m4f_c01440{transform:matrix(0.237830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237830,0.000000,0.000000,0.250000,0,0);}
.m10_c01440{transform:matrix(0.237870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237870,0.000000,0.000000,0.250000,0,0);}
.m7_c01440{transform:matrix(0.238155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238155,0.000000,0.000000,0.250000,0,0);}
.m5d_c01440{transform:matrix(0.238535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238535,0.000000,0.000000,0.250000,0,0);}
.mbd_c01440{transform:matrix(0.238955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238955,0.000000,0.000000,0.250000,0,0);}
.mab_c01440{transform:matrix(0.239240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239240,0.000000,0.000000,0.250000,0,0);}
.m28_c01440{transform:matrix(0.239280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239280,0.000000,0.000000,0.250000,0,0);}
.m48_c01440{transform:matrix(0.239825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239825,0.000000,0.000000,0.250000,0,0);}
.m5c_c01440{transform:matrix(0.240165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240165,0.000000,0.000000,0.250000,0,0);}
.m0_c01440{transform:matrix(0.240635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240635,0.000000,0.000000,0.250000,0,0);}
.m8d_c01440{transform:matrix(0.241945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241945,0.000000,0.000000,0.250000,0,0);}
.m45_c01440{transform:matrix(0.242330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242330,0.000000,0.000000,0.250000,0,0);}
.m96_c01440{transform:matrix(0.242420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242420,0.000000,0.000000,0.250000,0,0);}
.ma_c01440{transform:matrix(0.244255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244255,0.000000,0.000000,0.250000,0,0);}
.m6d_c01440{transform:matrix(0.245320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245320,0.000000,0.000000,0.250000,0,0);}
.m4_c01440{transform:matrix(0.245970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245970,0.000000,0.000000,0.250000,0,0);}
.ma6_c01440{transform:matrix(0.245990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245990,0.000000,0.000000,0.250000,0,0);}
.mbb_c01440{transform:matrix(0.246320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246320,0.000000,0.000000,0.250000,0,0);}
.m91_c01440{transform:matrix(0.247025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247025,0.000000,0.000000,0.250000,0,0);}
.mb1_c01440{transform:matrix(0.247130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247130,0.000000,0.000000,0.250000,0,0);}
.m55_c01440{transform:matrix(0.247310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247310,0.000000,0.000000,0.250000,0,0);}
.mc0_c01440{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m5f_c01440{transform:matrix(0.248575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248575,0.000000,0.000000,0.250000,0,0);}
.m57_c01440{transform:matrix(0.248715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248715,0.000000,0.000000,0.250000,0,0);}
.mc1_c01440{transform:matrix(0.248805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248805,0.000000,0.000000,0.250000,0,0);}
.m8_c01440{transform:matrix(0.248950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248950,0.000000,0.000000,0.250000,0,0);}
.mbe_c01440{transform:matrix(0.249140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249140,0.000000,0.000000,0.250000,0,0);}
.m4a_c01440{transform:matrix(0.249570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249570,0.000000,0.000000,0.250000,0,0);}
.m83_c01440{transform:matrix(0.249690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249690,0.000000,0.000000,0.250000,0,0);}
.m85_c01440{transform:matrix(0.250280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250280,0.000000,0.000000,0.250000,0,0);}
.m16_c01440{transform:matrix(0.251695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251695,0.000000,0.000000,0.250000,0,0);}
.mb2_c01440{transform:matrix(0.252330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252330,0.000000,0.000000,0.250000,0,0);}
.m8e_c01440{transform:matrix(0.252960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252960,0.000000,0.000000,0.250000,0,0);}
.ma9_c01440{transform:matrix(0.253390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253390,0.000000,0.000000,0.250000,0,0);}
.ma8_c01440{transform:matrix(0.253580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253580,0.000000,0.000000,0.250000,0,0);}
.mb_c01440{transform:matrix(0.253725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253725,0.000000,0.000000,0.250000,0,0);}
.m46_c01440{transform:matrix(0.253785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253785,0.000000,0.000000,0.250000,0,0);}
.me_c01440{transform:matrix(0.254070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254070,0.000000,0.000000,0.250000,0,0);}
.mf_c01440{transform:matrix(0.254530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254530,0.000000,0.000000,0.250000,0,0);}
.m88_c01440{transform:matrix(0.254600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254600,0.000000,0.000000,0.250000,0,0);}
.mb9_c01440{transform:matrix(0.254845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254845,0.000000,0.000000,0.250000,0,0);}
.mbc_c01440{transform:matrix(0.255145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255145,0.000000,0.000000,0.250000,0,0);}
.m56_c01440{transform:matrix(0.255255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255255,0.000000,0.000000,0.250000,0,0);}
.m8b_c01440{transform:matrix(0.255540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255540,0.000000,0.000000,0.250000,0,0);}
.m13_c01440{transform:matrix(0.255610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255610,0.000000,0.000000,0.250000,0,0);}
.m52_c01440{transform:matrix(0.256540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256540,0.000000,0.000000,0.250000,0,0);}
.m63_c01440{transform:matrix(0.257100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257100,0.000000,0.000000,0.250000,0,0);}
.mac_c01440{transform:matrix(0.257220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257220,0.000000,0.000000,0.250000,0,0);}
.m5_c01440{transform:matrix(0.257420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257420,0.000000,0.000000,0.250000,0,0);}
.mc3_c01440{transform:matrix(0.258310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258310,0.000000,0.000000,0.250000,0,0);}
.m4e_c01440{transform:matrix(0.258695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258695,0.000000,0.000000,0.250000,0,0);}
.m75_c01440{transform:matrix(0.258995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258995,0.000000,0.000000,0.250000,0,0);}
.m58_c01440{transform:matrix(0.259105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259105,0.000000,0.000000,0.250000,0,0);}
.m3e_c01440{transform:matrix(0.259155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259155,0.000000,0.000000,0.250000,0,0);}
.m9_c01440{transform:matrix(0.260200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260200,0.000000,0.000000,0.250000,0,0);}
.m62_c01440{transform:matrix(0.260435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260435,0.000000,0.000000,0.250000,0,0);}
.m49_c01440{transform:matrix(0.262235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262235,0.000000,0.000000,0.250000,0,0);}
.m1_c01440{transform:matrix(0.263505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263505,0.000000,0.000000,0.250000,0,0);}
.m18_c01440{transform:matrix(0.265275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265275,0.000000,0.000000,0.250000,0,0);}
.m6_c01440{transform:matrix(0.265360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265360,0.000000,0.000000,0.250000,0,0);}
.m8c_c01440{transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);}
.m4d_c01440{transform:matrix(0.267035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267035,0.000000,0.000000,0.250000,0,0);}
.m3d_c01440{transform:matrix(0.267125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267125,0.000000,0.000000,0.250000,0,0);}
.m6f_c01440{transform:matrix(0.267555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267555,0.000000,0.000000,0.250000,0,0);}
.m43_c01440{transform:matrix(0.269005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269005,0.000000,0.000000,0.250000,0,0);}
.m41_c01440{transform:matrix(0.269240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269240,0.000000,0.000000,0.250000,0,0);}
.m15_c01440{transform:matrix(0.271600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271600,0.000000,0.000000,0.250000,0,0);}
.m73_c01440{transform:matrix(0.272705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272705,0.000000,0.000000,0.250000,0,0);}
.m71_c01440{transform:matrix(0.273215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273215,0.000000,0.000000,0.250000,0,0);}
.m4c_c01440{transform:matrix(0.273245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273245,0.000000,0.000000,0.250000,0,0);}
.m61_c01440{transform:matrix(0.273265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273265,0.000000,0.000000,0.250000,0,0);}
.m1a_c01440{transform:matrix(0.273810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273810,0.000000,0.000000,0.250000,0,0);}
.m3_c01440{transform:matrix(0.273990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273990,0.000000,0.000000,0.250000,0,0);}
.m4b_c01440{transform:matrix(0.274510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274510,0.000000,0.000000,0.250000,0,0);}
.m3f_c01440{transform:matrix(0.274965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274965,0.000000,0.000000,0.250000,0,0);}
.m14_c01440{transform:matrix(0.277085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277085,0.000000,0.000000,0.250000,0,0);}
.m66_c01440{transform:matrix(0.277175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277175,0.000000,0.000000,0.250000,0,0);}
.m74_c01440{transform:matrix(0.277260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277260,0.000000,0.000000,0.250000,0,0);}
.m70_c01440{transform:matrix(0.277430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277430,0.000000,0.000000,0.250000,0,0);}
.m5e_c01440{transform:matrix(0.278460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278460,0.000000,0.000000,0.250000,0,0);}
.m69_c01440{transform:matrix(0.284860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284860,0.000000,0.000000,0.250000,0,0);}
.m9f_c01440{transform:matrix(0.285860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285860,0.000000,0.000000,0.250000,0,0);}
.m76_c01440{transform:matrix(0.289600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289600,0.000000,0.000000,0.250000,0,0);}
.m34_c01440{transform:matrix(0.292440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292440,0.000000,0.000000,0.250000,0,0);}
.m2_c01440{transform:matrix(0.293320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293320,0.000000,0.000000,0.250000,0,0);}
.mc4_c01440{transform:matrix(0.296685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296685,0.000000,0.000000,0.250000,0,0);}
.m26_c01440{transform:matrix(0.299960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299960,0.000000,0.000000,0.250000,0,0);}
.m6a_c01440{transform:matrix(0.301870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301870,0.000000,0.000000,0.250000,0,0);}
.m7c_c01440{transform:matrix(0.303415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303415,0.000000,0.000000,0.250000,0,0);}
.m44_c01440{transform:matrix(0.316915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316915,0.000000,0.000000,0.250000,0,0);}
.mc6_c01440{transform:matrix(0.320030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320030,0.000000,0.000000,0.250000,0,0);}
.m6b_c01440{transform:matrix(0.320155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320155,0.000000,0.000000,0.250000,0,0);}
.mc5_c01440{transform:matrix(0.328165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328165,0.000000,0.000000,0.250000,0,0);}
.m50_c01440{transform:matrix(0.334150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334150,0.000000,0.000000,0.250000,0,0);}
.mc2_c01440{transform:matrix(0.344840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344840,0.000000,0.000000,0.250000,0,0);}
.m93_c01440{transform:matrix(0.352005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352005,0.000000,0.000000,0.250000,0,0);}
.m51_c01440{transform:matrix(0.353635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353635,0.000000,0.000000,0.250000,0,0);}
.mb8_c01440{transform:matrix(0.398985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398985,0.000000,0.000000,0.250000,0,0);}
.m7b_c01440{transform:matrix(0.428965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428965,0.000000,0.000000,0.250000,0,0);}
.m60_c01440{transform:matrix(0.518220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.518220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.518220,0.000000,0.000000,0.250000,0,0);}
.v0_c01440{vertical-align:0.000000px;}
.ls0_c01440{letter-spacing:0.000000px;}
.sc__c01440{text-shadow:none;}
.sc0_c01440{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__c01440{-webkit-text-stroke:0px transparent;}
.sc0_c01440{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01440{word-spacing:0.000000px;}
._0_c01440{margin-left:-41.329370px;}
.fc0_c01440{color:transparent;}
.fs9_c01440{font-size:54.000000px;}
.fs0_c01440{font-size:66.000000px;}
.fs1_c01440{font-size:72.000000px;}
.fs2_c01440{font-size:78.000000px;}
.fs8_c01440{font-size:84.000000px;}
.fs7_c01440{font-size:90.000000px;}
.fs3_c01440{font-size:102.000000px;}
.fs5_c01440{font-size:120.000000px;}
.fs4_c01440{font-size:132.000000px;}
.fs6_c01440{font-size:162.000000px;}
.y0_c01440{bottom:0.000000px;}
.y29_c01440{bottom:119.926500px;}
.y28_c01440{bottom:155.647500px;}
.y26_c01440{bottom:186.645000px;}
.y25_c01440{bottom:187.027500px;}
.y27_c01440{bottom:187.584000px;}
.y24_c01440{bottom:187.597500px;}
.y23_c01440{bottom:188.460000px;}
.y22_c01440{bottom:227.610000px;}
.y21_c01440{bottom:263.490000px;}
.y20_c01440{bottom:296.427000px;}
.y1f_c01440{bottom:296.586000px;}
.y1e_c01440{bottom:297.076500px;}
.y1d_c01440{bottom:297.244500px;}
.y1c_c01440{bottom:297.462000px;}
.y1b_c01440{bottom:297.628500px;}
.y1a_c01440{bottom:297.898500px;}
.y19_c01440{bottom:298.066500px;}
.y18_c01440{bottom:298.450500px;}
.y17_c01440{bottom:298.950000px;}
.y16_c01440{bottom:299.430000px;}
.y15_c01440{bottom:368.770500px;}
.y14_c01440{bottom:403.525500px;}
.y13_c01440{bottom:439.549500px;}
.y12_c01440{bottom:476.004000px;}
.y11_c01440{bottom:510.886500px;}
.y10_c01440{bottom:546.735000px;}
.yf_c01440{bottom:583.860000px;}
.ye_c01440{bottom:619.626000px;}
.yd_c01440{bottom:653.643000px;}
.yc_c01440{bottom:690.663000px;}
.yb_c01440{bottom:725.670000px;}
.ya_c01440{bottom:761.133000px;}
.y9_c01440{bottom:791.008500px;}
.y8_c01440{bottom:863.409000px;}
.y7_c01440{bottom:899.605500px;}
.y6_c01440{bottom:934.429500px;}
.y5_c01440{bottom:1004.941500px;}
.y4_c01440{bottom:1045.711500px;}
.y3_c01440{bottom:1081.891500px;}
.y2_c01440{bottom:1117.213500px;}
.y1_c01440{bottom:1193.658000px;}
.hb_c01440{height:54.000000px;}
.h2_c01440{height:66.000000px;}
.h3_c01440{height:72.000000px;}
.h4_c01440{height:78.000000px;}
.ha_c01440{height:84.000000px;}
.h9_c01440{height:90.000000px;}
.h5_c01440{height:102.000000px;}
.h7_c01440{height:120.000000px;}
.h6_c01440{height:132.000000px;}
.h8_c01440{height:162.000000px;}
.h0_c01440{height:1261.440000px;}
.h1_c01440{height:1261.500000px;}
.w0_c01440{width:912.000000px;}
.x0_c01440{left:0.000000px;}
.x4_c01440{left:218.160000px;}
.x56_c01440{left:222.210000px;}
.x5d_c01440{left:227.272500px;}
.x32_c01440{left:228.420000px;}
.x40_c01440{left:236.250000px;}
.x4a_c01440{left:237.600000px;}
.x69_c01440{left:299.743500px;}
.x26_c01440{left:301.590000px;}
.x48_c01440{left:302.670000px;}
.xf_c01440{left:303.750000px;}
.x5e_c01440{left:323.391000px;}
.x17_c01440{left:324.540000px;}
.x5_c01440{left:326.430000px;}
.x33_c01440{left:335.610000px;}
.x27_c01440{left:346.410000px;}
.x57_c01440{left:348.030000px;}
.x4d_c01440{left:358.020000px;}
.x18_c01440{left:359.100000px;}
.x6b_c01440{left:369.090000px;}
.x6_c01440{left:370.710000px;}
.x53_c01440{left:378.540000px;}
.x37_c01440{left:380.160000px;}
.x41_c01440{left:390.150000px;}
.x66_c01440{left:392.310000px;}
.x19_c01440{left:402.570000px;}
.x1_c01440{left:403.650000px;}
.x1f_c01440{left:413.100000px;}
.x12_c01440{left:414.180000px;}
.x5f_c01440{left:423.297000px;}
.x62_c01440{left:424.710000px;}
.x2_c01440{left:426.600000px;}
.x1a_c01440{left:434.700000px;}
.x20_c01440{left:436.590000px;}
.x7_c01440{left:437.670000px;}
.x63_c01440{left:444.960000px;}
.x29_c01440{left:446.040000px;}
.x42_c01440{left:456.570000px;}
.x13_c01440{left:458.190000px;}
.x67_c01440{left:467.910000px;}
.x3_c01440{left:469.530000px;}
.x4e_c01440{left:477.900000px;}
.x6c_c01440{left:488.430000px;}
.x14_c01440{left:489.780000px;}
.x31_c01440{left:490.860000px;}
.x58_c01440{left:500.040000px;}
.x43_c01440{left:501.930000px;}
.x2a_c01440{left:512.460000px;}
.x1b_c01440{left:521.910000px;}
.x8_c01440{left:524.340000px;}
.x60_c01440{left:533.724000px;}
.x4f_c01440{left:535.680000px;}
.x21_c01440{left:544.320000px;}
.x6a_c01440{left:555.120000px;}
.x15_c01440{left:556.200000px;}
.x59_c01440{left:566.190000px;}
.x9_c01440{left:567.540000px;}
.x64_c01440{left:575.910000px;}
.x22_c01440{left:576.990000px;}
.x38_c01440{left:587.790000px;}
.x16_c01440{left:589.410000px;}
.x2b_c01440{left:598.320000px;}
.x44_c01440{left:611.010000px;}
.xa_c01440{left:612.090000px;}
.x2c_c01440{left:620.460000px;}
.x23_c01440{left:621.540000px;}
.x5a_c01440{left:631.530000px;}
.x10_c01440{left:633.420000px;}
.x34_c01440{left:644.490000px;}
.x2d_c01440{left:653.670000px;}
.x1c_c01440{left:655.020000px;}
.x4b_c01440{left:663.930000px;}
.x11_c01440{left:666.090000px;}
.x65_c01440{left:675.000000px;}
.x35_c01440{left:676.080000px;}
.x45_c01440{left:686.340000px;}
.xb_c01440{left:688.230000px;}
.x1d_c01440{left:696.330000px;}
.x5b_c01440{left:697.680000px;}
.x3c_c01440{left:708.480000px;}
.x50_c01440{left:713.070000px;}
.x39_c01440{left:717.120000px;}
.x54_c01440{left:719.010000px;}
.x51_c01440{left:723.870000px;}
.x24_c01440{left:731.430000px;}
.xc_c01440{left:732.510000px;}
.x49_c01440{left:737.910000px;}
.x3d_c01440{left:740.340000px;}
.x1e_c01440{left:742.230000px;}
.x55_c01440{left:751.950000px;}
.x2e_c01440{left:753.300000px;}
.x3e_c01440{left:759.510000px;}
.x36_c01440{left:763.020000px;}
.x25_c01440{left:764.100000px;}
.x4c_c01440{left:773.010000px;}
.x28_c01440{left:777.600000px;}
.x2f_c01440{left:783.810000px;}
.x3a_c01440{left:792.990000px;}
.x61_c01440{left:795.901500px;}
.xd_c01440{left:797.850000px;}
.x30_c01440{left:817.020000px;}
.x46_c01440{left:819.450000px;}
.x5c_c01440{left:822.150000px;}
.x52_c01440{left:828.630000px;}
.xe_c01440{left:831.870000px;}
.x3b_c01440{left:840.780000px;}
.x68_c01440{left:850.770000px;}
.x47_c01440{left:877.770000px;}
.x3f_c01440{left:879.660000px;}
@media print{
.v0_c01440{vertical-align:0.000000pt;}
.ls0_c01440{letter-spacing:0.000000pt;}
.ws0_c01440{word-spacing:0.000000pt;}
._0_c01440{margin-left:-36.737218pt;}
.fs9_c01440{font-size:48.000000pt;}
.fs0_c01440{font-size:58.666667pt;}
.fs1_c01440{font-size:64.000000pt;}
.fs2_c01440{font-size:69.333333pt;}
.fs8_c01440{font-size:74.666667pt;}
.fs7_c01440{font-size:80.000000pt;}
.fs3_c01440{font-size:90.666667pt;}
.fs5_c01440{font-size:106.666667pt;}
.fs4_c01440{font-size:117.333333pt;}
.fs6_c01440{font-size:144.000000pt;}
.y0_c01440{bottom:0.000000pt;}
.y29_c01440{bottom:106.601333pt;}
.y28_c01440{bottom:138.353333pt;}
.y26_c01440{bottom:165.906667pt;}
.y25_c01440{bottom:166.246667pt;}
.y27_c01440{bottom:166.741333pt;}
.y24_c01440{bottom:166.753333pt;}
.y23_c01440{bottom:167.520000pt;}
.y22_c01440{bottom:202.320000pt;}
.y21_c01440{bottom:234.213333pt;}
.y20_c01440{bottom:263.490667pt;}
.y1f_c01440{bottom:263.632000pt;}
.y1e_c01440{bottom:264.068000pt;}
.y1d_c01440{bottom:264.217333pt;}
.y1c_c01440{bottom:264.410667pt;}
.y1b_c01440{bottom:264.558667pt;}
.y1a_c01440{bottom:264.798667pt;}
.y19_c01440{bottom:264.948000pt;}
.y18_c01440{bottom:265.289333pt;}
.y17_c01440{bottom:265.733333pt;}
.y16_c01440{bottom:266.160000pt;}
.y15_c01440{bottom:327.796000pt;}
.y14_c01440{bottom:358.689333pt;}
.y13_c01440{bottom:390.710667pt;}
.y12_c01440{bottom:423.114667pt;}
.y11_c01440{bottom:454.121333pt;}
.y10_c01440{bottom:485.986667pt;}
.yf_c01440{bottom:518.986667pt;}
.ye_c01440{bottom:550.778667pt;}
.yd_c01440{bottom:581.016000pt;}
.yc_c01440{bottom:613.922667pt;}
.yb_c01440{bottom:645.040000pt;}
.ya_c01440{bottom:676.562667pt;}
.y9_c01440{bottom:703.118667pt;}
.y8_c01440{bottom:767.474667pt;}
.y7_c01440{bottom:799.649333pt;}
.y6_c01440{bottom:830.604000pt;}
.y5_c01440{bottom:893.281333pt;}
.y4_c01440{bottom:929.521333pt;}
.y3_c01440{bottom:961.681333pt;}
.y2_c01440{bottom:993.078667pt;}
.y1_c01440{bottom:1061.029333pt;}
.hb_c01440{height:48.000000pt;}
.h2_c01440{height:58.666667pt;}
.h3_c01440{height:64.000000pt;}
.h4_c01440{height:69.333333pt;}
.ha_c01440{height:74.666667pt;}
.h9_c01440{height:80.000000pt;}
.h5_c01440{height:90.666667pt;}
.h7_c01440{height:106.666667pt;}
.h6_c01440{height:117.333333pt;}
.h8_c01440{height:144.000000pt;}
.h0_c01440{height:1121.280000pt;}
.h1_c01440{height:1121.333333pt;}
.w0_c01440{width:810.666667pt;}
.x0_c01440{left:0.000000pt;}
.x4_c01440{left:193.920000pt;}
.x56_c01440{left:197.520000pt;}
.x5d_c01440{left:202.020000pt;}
.x32_c01440{left:203.040000pt;}
.x40_c01440{left:210.000000pt;}
.x4a_c01440{left:211.200000pt;}
.x69_c01440{left:266.438667pt;}
.x26_c01440{left:268.080000pt;}
.x48_c01440{left:269.040000pt;}
.xf_c01440{left:270.000000pt;}
.x5e_c01440{left:287.458667pt;}
.x17_c01440{left:288.480000pt;}
.x5_c01440{left:290.160000pt;}
.x33_c01440{left:298.320000pt;}
.x27_c01440{left:307.920000pt;}
.x57_c01440{left:309.360000pt;}
.x4d_c01440{left:318.240000pt;}
.x18_c01440{left:319.200000pt;}
.x6b_c01440{left:328.080000pt;}
.x6_c01440{left:329.520000pt;}
.x53_c01440{left:336.480000pt;}
.x37_c01440{left:337.920000pt;}
.x41_c01440{left:346.800000pt;}
.x66_c01440{left:348.720000pt;}
.x19_c01440{left:357.840000pt;}
.x1_c01440{left:358.800000pt;}
.x1f_c01440{left:367.200000pt;}
.x12_c01440{left:368.160000pt;}
.x5f_c01440{left:376.264000pt;}
.x62_c01440{left:377.520000pt;}
.x2_c01440{left:379.200000pt;}
.x1a_c01440{left:386.400000pt;}
.x20_c01440{left:388.080000pt;}
.x7_c01440{left:389.040000pt;}
.x63_c01440{left:395.520000pt;}
.x29_c01440{left:396.480000pt;}
.x42_c01440{left:405.840000pt;}
.x13_c01440{left:407.280000pt;}
.x67_c01440{left:415.920000pt;}
.x3_c01440{left:417.360000pt;}
.x4e_c01440{left:424.800000pt;}
.x6c_c01440{left:434.160000pt;}
.x14_c01440{left:435.360000pt;}
.x31_c01440{left:436.320000pt;}
.x58_c01440{left:444.480000pt;}
.x43_c01440{left:446.160000pt;}
.x2a_c01440{left:455.520000pt;}
.x1b_c01440{left:463.920000pt;}
.x8_c01440{left:466.080000pt;}
.x60_c01440{left:474.421333pt;}
.x4f_c01440{left:476.160000pt;}
.x21_c01440{left:483.840000pt;}
.x6a_c01440{left:493.440000pt;}
.x15_c01440{left:494.400000pt;}
.x59_c01440{left:503.280000pt;}
.x9_c01440{left:504.480000pt;}
.x64_c01440{left:511.920000pt;}
.x22_c01440{left:512.880000pt;}
.x38_c01440{left:522.480000pt;}
.x16_c01440{left:523.920000pt;}
.x2b_c01440{left:531.840000pt;}
.x44_c01440{left:543.120000pt;}
.xa_c01440{left:544.080000pt;}
.x2c_c01440{left:551.520000pt;}
.x23_c01440{left:552.480000pt;}
.x5a_c01440{left:561.360000pt;}
.x10_c01440{left:563.040000pt;}
.x34_c01440{left:572.880000pt;}
.x2d_c01440{left:581.040000pt;}
.x1c_c01440{left:582.240000pt;}
.x4b_c01440{left:590.160000pt;}
.x11_c01440{left:592.080000pt;}
.x65_c01440{left:600.000000pt;}
.x35_c01440{left:600.960000pt;}
.x45_c01440{left:610.080000pt;}
.xb_c01440{left:611.760000pt;}
.x1d_c01440{left:618.960000pt;}
.x5b_c01440{left:620.160000pt;}
.x3c_c01440{left:629.760000pt;}
.x50_c01440{left:633.840000pt;}
.x39_c01440{left:637.440000pt;}
.x54_c01440{left:639.120000pt;}
.x51_c01440{left:643.440000pt;}
.x24_c01440{left:650.160000pt;}
.xc_c01440{left:651.120000pt;}
.x49_c01440{left:655.920000pt;}
.x3d_c01440{left:658.080000pt;}
.x1e_c01440{left:659.760000pt;}
.x55_c01440{left:668.400000pt;}
.x2e_c01440{left:669.600000pt;}
.x3e_c01440{left:675.120000pt;}
.x36_c01440{left:678.240000pt;}
.x25_c01440{left:679.200000pt;}
.x4c_c01440{left:687.120000pt;}
.x28_c01440{left:691.200000pt;}
.x2f_c01440{left:696.720000pt;}
.x3a_c01440{left:704.880000pt;}
.x61_c01440{left:707.468000pt;}
.xd_c01440{left:709.200000pt;}
.x30_c01440{left:726.240000pt;}
.x46_c01440{left:728.400000pt;}
.x5c_c01440{left:730.800000pt;}
.x52_c01440{left:736.560000pt;}
.xe_c01440{left:739.440000pt;}
.x3b_c01440{left:747.360000pt;}
.x68_c01440{left:756.240000pt;}
.x47_c01440{left:780.240000pt;}
.x3f_c01440{left:781.920000pt;}
}





/* 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_c01441 {
    display:none;
  }
  .loading-indicator_c01441.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01441 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_c01441 { 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_c01441" -> "#page-container .classname_c01441")
 */
.pf_c01441 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01441 { /* 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_c01441.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01441 { /* 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_c01441 { /* 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_c01441 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01441 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01441 {overflow:visible;}
  }
}
.c_c01441 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01441 { /* 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_c01441:after { /* webkit #35443 */
  content: '';
}
.t_c01441:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01441 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 */
}
.__c01441 { /* 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_c01441 { /* info for Javascript */
  display:none;
}
.l_c01441 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01441 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01441 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01441: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_c01441 {
    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_c01441.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01441.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_c01441 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01441{font-family:sans-serif;visibility:hidden;}
.sc__c01441{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01441{-webkit-text-stroke:0px transparent;}
}
.y0_c01441{bottom:0.000000px;}
.h0_c01441{height:1261.440000px;}
.h1_c01441{height:1261.500000px;}
.w0_c01441{width:912.000000px;}
.x0_c01441{left:0.000000px;}
@media print{
.y0_c01441{bottom:0.000000pt;}
.h0_c01441{height:1121.280000pt;}
.h1_c01441{height:1121.333333pt;}
.w0_c01441{width:810.666667pt;}
.x0_c01441{left:0.000000pt;}
}





/* 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_c01442 {
    display:none;
  }
  .loading-indicator_c01442.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01442 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_c01442 { 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_c01442" -> "#page-container .classname_c01442")
 */
.pf_c01442 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01442 { /* 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_c01442.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01442 { /* 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_c01442 { /* 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_c01442 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01442 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01442 {overflow:visible;}
  }
}
.c_c01442 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01442 { /* 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_c01442:after { /* webkit #35443 */
  content: '';
}
.t_c01442:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01442 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 */
}
.__c01442 { /* 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_c01442 { /* info for Javascript */
  display:none;
}
.l_c01442 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01442 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01442 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01442: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_c01442 {
    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_c01442.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01442.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_c01442 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01442{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01442;src:url('chunks/assets/font_c605e72f209fc835e906f064.woff2')format("woff");}.ff1_c01442{font-family:ff1_c01442;line-height:1.000000;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;}
.mb_c01442{transform:matrix(0.079603,-0.001035,0.003250,0.249979,0,0);-ms-transform:matrix(0.079603,-0.001035,0.003250,0.249979,0,0);-webkit-transform:matrix(0.079603,-0.001035,0.003250,0.249979,0,0);}
.m78_c01442{transform:matrix(0.096754,-0.001451,0.003750,0.249972,0,0);-ms-transform:matrix(0.096754,-0.001451,0.003750,0.249972,0,0);-webkit-transform:matrix(0.096754,-0.001451,0.003750,0.249972,0,0);}
.m4_c01442{transform:matrix(0.098667,-0.001283,0.003250,0.249979,0,0);-ms-transform:matrix(0.098667,-0.001283,0.003250,0.249979,0,0);-webkit-transform:matrix(0.098667,-0.001283,0.003250,0.249979,0,0);}
.m1_c01442{transform:matrix(0.133795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133795,0.000000,0.000000,0.250000,0,0);}
.m69_c01442{transform:matrix(0.137085,-0.002056,0.003750,0.249972,0,0);-ms-transform:matrix(0.137085,-0.002056,0.003750,0.249972,0,0);-webkit-transform:matrix(0.137085,-0.002056,0.003750,0.249972,0,0);}
.m59_c01442{transform:matrix(0.137675,-0.002065,0.003750,0.249972,0,0);-ms-transform:matrix(0.137675,-0.002065,0.003750,0.249972,0,0);-webkit-transform:matrix(0.137675,-0.002065,0.003750,0.249972,0,0);}
.m8_c01442{transform:matrix(0.138698,-0.001803,0.003250,0.249979,0,0);-ms-transform:matrix(0.138698,-0.001803,0.003250,0.249979,0,0);-webkit-transform:matrix(0.138698,-0.001803,0.003250,0.249979,0,0);}
.m7c_c01442{transform:matrix(0.139434,-0.002092,0.003750,0.249972,0,0);-ms-transform:matrix(0.139434,-0.002092,0.003750,0.249972,0,0);-webkit-transform:matrix(0.139434,-0.002092,0.003750,0.249972,0,0);}
.m7a_c01442{transform:matrix(0.147078,-0.002206,0.003750,0.249972,0,0);-ms-transform:matrix(0.147078,-0.002206,0.003750,0.249972,0,0);-webkit-transform:matrix(0.147078,-0.002206,0.003750,0.249972,0,0);}
.m2c_c01442{transform:matrix(0.155038,-0.002326,0.003750,0.249972,0,0);-ms-transform:matrix(0.155038,-0.002326,0.003750,0.249972,0,0);-webkit-transform:matrix(0.155038,-0.002326,0.003750,0.249972,0,0);}
.m6_c01442{transform:matrix(0.155492,-0.002021,0.003250,0.249979,0,0);-ms-transform:matrix(0.155492,-0.002021,0.003250,0.249979,0,0);-webkit-transform:matrix(0.155492,-0.002021,0.003250,0.249979,0,0);}
.m3d_c01442{transform:matrix(0.159355,-0.002550,0.003999,0.249968,0,0);-ms-transform:matrix(0.159355,-0.002550,0.003999,0.249968,0,0);-webkit-transform:matrix(0.159355,-0.002550,0.003999,0.249968,0,0);}
.m36_c01442{transform:matrix(0.164057,-0.002461,0.003750,0.249972,0,0);-ms-transform:matrix(0.164057,-0.002461,0.003750,0.249972,0,0);-webkit-transform:matrix(0.164057,-0.002461,0.003750,0.249972,0,0);}
.m9_c01442{transform:matrix(0.164446,-0.002138,0.003250,0.249979,0,0);-ms-transform:matrix(0.164446,-0.002138,0.003250,0.249979,0,0);-webkit-transform:matrix(0.164446,-0.002138,0.003250,0.249979,0,0);}
.m2d_c01442{transform:matrix(0.164826,-0.002472,0.003750,0.249972,0,0);-ms-transform:matrix(0.164826,-0.002472,0.003750,0.249972,0,0);-webkit-transform:matrix(0.164826,-0.002472,0.003750,0.249972,0,0);}
.md_c01442{transform:matrix(0.170826,-0.002221,0.003250,0.249979,0,0);-ms-transform:matrix(0.170826,-0.002221,0.003250,0.249979,0,0);-webkit-transform:matrix(0.170826,-0.002221,0.003250,0.249979,0,0);}
.m3e_c01442{transform:matrix(0.171333,-0.002741,0.003999,0.249968,0,0);-ms-transform:matrix(0.171333,-0.002741,0.003999,0.249968,0,0);-webkit-transform:matrix(0.171333,-0.002741,0.003999,0.249968,0,0);}
.m3_c01442{transform:matrix(0.171361,-0.002228,0.003250,0.249979,0,0);-ms-transform:matrix(0.171361,-0.002228,0.003250,0.249979,0,0);-webkit-transform:matrix(0.171361,-0.002228,0.003250,0.249979,0,0);}
.m7_c01442{transform:matrix(0.171865,-0.002234,0.003250,0.249979,0,0);-ms-transform:matrix(0.171865,-0.002234,0.003250,0.249979,0,0);-webkit-transform:matrix(0.171865,-0.002234,0.003250,0.249979,0,0);}
.mc_c01442{transform:matrix(0.176220,-0.002291,0.003250,0.249979,0,0);-ms-transform:matrix(0.176220,-0.002291,0.003250,0.249979,0,0);-webkit-transform:matrix(0.176220,-0.002291,0.003250,0.249979,0,0);}
.m85_c01442{transform:matrix(0.176800,-0.002652,0.003750,0.249972,0,0);-ms-transform:matrix(0.176800,-0.002652,0.003750,0.249972,0,0);-webkit-transform:matrix(0.176800,-0.002652,0.003750,0.249972,0,0);}
.m5_c01442{transform:matrix(0.177835,-0.002312,0.003250,0.249979,0,0);-ms-transform:matrix(0.177835,-0.002312,0.003250,0.249979,0,0);-webkit-transform:matrix(0.177835,-0.002312,0.003250,0.249979,0,0);}
.m31_c01442{transform:matrix(0.182424,-0.002736,0.003750,0.249972,0,0);-ms-transform:matrix(0.182424,-0.002736,0.003750,0.249972,0,0);-webkit-transform:matrix(0.182424,-0.002736,0.003750,0.249972,0,0);}
.ma1_c01442{transform:matrix(0.187207,-0.002246,0.003000,0.249982,0,0);-ms-transform:matrix(0.187207,-0.002246,0.003000,0.249982,0,0);-webkit-transform:matrix(0.187207,-0.002246,0.003000,0.249982,0,0);}
.m4c_c01442{transform:matrix(0.190811,-0.002671,0.003500,0.249976,0,0);-ms-transform:matrix(0.190811,-0.002671,0.003500,0.249976,0,0);-webkit-transform:matrix(0.190811,-0.002671,0.003500,0.249976,0,0);}
.m56_c01442{transform:matrix(0.194268,-0.002914,0.003750,0.249972,0,0);-ms-transform:matrix(0.194268,-0.002914,0.003750,0.249972,0,0);-webkit-transform:matrix(0.194268,-0.002914,0.003750,0.249972,0,0);}
.m50_c01442{transform:matrix(0.196001,-0.002744,0.003500,0.249976,0,0);-ms-transform:matrix(0.196001,-0.002744,0.003500,0.249976,0,0);-webkit-transform:matrix(0.196001,-0.002744,0.003500,0.249976,0,0);}
.m51_c01442{transform:matrix(0.196756,-0.002755,0.003500,0.249976,0,0);-ms-transform:matrix(0.196756,-0.002755,0.003500,0.249976,0,0);-webkit-transform:matrix(0.196756,-0.002755,0.003500,0.249976,0,0);}
.m6a_c01442{transform:matrix(0.197093,-0.002956,0.003750,0.249972,0,0);-ms-transform:matrix(0.197093,-0.002956,0.003750,0.249972,0,0);-webkit-transform:matrix(0.197093,-0.002956,0.003750,0.249972,0,0);}
.m55_c01442{transform:matrix(0.197181,-0.002761,0.003500,0.249976,0,0);-ms-transform:matrix(0.197181,-0.002761,0.003500,0.249976,0,0);-webkit-transform:matrix(0.197181,-0.002761,0.003500,0.249976,0,0);}
.m76_c01442{transform:matrix(0.199113,-0.002987,0.003750,0.249972,0,0);-ms-transform:matrix(0.199113,-0.002987,0.003750,0.249972,0,0);-webkit-transform:matrix(0.199113,-0.002987,0.003750,0.249972,0,0);}
.m58_c01442{transform:matrix(0.201222,-0.003018,0.003750,0.249972,0,0);-ms-transform:matrix(0.201222,-0.003018,0.003750,0.249972,0,0);-webkit-transform:matrix(0.201222,-0.003018,0.003750,0.249972,0,0);}
.m54_c01442{transform:matrix(0.201295,-0.002818,0.003500,0.249976,0,0);-ms-transform:matrix(0.201295,-0.002818,0.003500,0.249976,0,0);-webkit-transform:matrix(0.201295,-0.002818,0.003500,0.249976,0,0);}
.m4d_c01442{transform:matrix(0.202020,-0.002828,0.003500,0.249976,0,0);-ms-transform:matrix(0.202020,-0.002828,0.003500,0.249976,0,0);-webkit-transform:matrix(0.202020,-0.002828,0.003500,0.249976,0,0);}
.mf_c01442{transform:matrix(0.203298,-0.002643,0.003250,0.249979,0,0);-ms-transform:matrix(0.203298,-0.002643,0.003250,0.249979,0,0);-webkit-transform:matrix(0.203298,-0.002643,0.003250,0.249979,0,0);}
.m5b_c01442{transform:matrix(0.205517,-0.003083,0.003750,0.249972,0,0);-ms-transform:matrix(0.205517,-0.003083,0.003750,0.249972,0,0);-webkit-transform:matrix(0.205517,-0.003083,0.003750,0.249972,0,0);}
.m93_c01442{transform:matrix(0.205538,-0.002261,0.002750,0.249985,0,0);-ms-transform:matrix(0.205538,-0.002261,0.002750,0.249985,0,0);-webkit-transform:matrix(0.205538,-0.002261,0.002750,0.249985,0,0);}
.m8d_c01442{transform:matrix(0.206882,-0.002276,0.002750,0.249985,0,0);-ms-transform:matrix(0.206882,-0.002276,0.002750,0.249985,0,0);-webkit-transform:matrix(0.206882,-0.002276,0.002750,0.249985,0,0);}
.m9f_c01442{transform:matrix(0.209490,-0.002514,0.003000,0.249982,0,0);-ms-transform:matrix(0.209490,-0.002514,0.003000,0.249982,0,0);-webkit-transform:matrix(0.209490,-0.002514,0.003000,0.249982,0,0);}
.m4f_c01442{transform:matrix(0.209814,-0.002937,0.003500,0.249976,0,0);-ms-transform:matrix(0.209814,-0.002937,0.003500,0.249976,0,0);-webkit-transform:matrix(0.209814,-0.002937,0.003500,0.249976,0,0);}
.m52_c01442{transform:matrix(0.211909,-0.002967,0.003500,0.249976,0,0);-ms-transform:matrix(0.211909,-0.002967,0.003500,0.249976,0,0);-webkit-transform:matrix(0.211909,-0.002967,0.003500,0.249976,0,0);}
.m97_c01442{transform:matrix(0.212187,-0.002334,0.002750,0.249985,0,0);-ms-transform:matrix(0.212187,-0.002334,0.002750,0.249985,0,0);-webkit-transform:matrix(0.212187,-0.002334,0.002750,0.249985,0,0);}
.m7d_c01442{transform:matrix(0.212811,-0.003192,0.003750,0.249972,0,0);-ms-transform:matrix(0.212811,-0.003192,0.003750,0.249972,0,0);-webkit-transform:matrix(0.212811,-0.003192,0.003750,0.249972,0,0);}
.m53_c01442{transform:matrix(0.213749,-0.002992,0.003500,0.249976,0,0);-ms-transform:matrix(0.213749,-0.002992,0.003500,0.249976,0,0);-webkit-transform:matrix(0.213749,-0.002992,0.003500,0.249976,0,0);}
.ma3_c01442{transform:matrix(0.213790,-0.002565,0.003000,0.249982,0,0);-ms-transform:matrix(0.213790,-0.002565,0.003000,0.249982,0,0);-webkit-transform:matrix(0.213790,-0.002565,0.003000,0.249982,0,0);}
.m4b_c01442{transform:matrix(0.214739,-0.003006,0.003500,0.249976,0,0);-ms-transform:matrix(0.214739,-0.003006,0.003500,0.249976,0,0);-webkit-transform:matrix(0.214739,-0.003006,0.003500,0.249976,0,0);}
.m16_c01442{transform:matrix(0.215271,-0.003229,0.003750,0.249972,0,0);-ms-transform:matrix(0.215271,-0.003229,0.003750,0.249972,0,0);-webkit-transform:matrix(0.215271,-0.003229,0.003750,0.249972,0,0);}
.ma5_c01442{transform:matrix(0.215739,-0.002589,0.003000,0.249982,0,0);-ms-transform:matrix(0.215739,-0.002589,0.003000,0.249982,0,0);-webkit-transform:matrix(0.215739,-0.002589,0.003000,0.249982,0,0);}
.mb4_c01442{transform:matrix(0.216270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216270,0.000000,0.000000,0.250000,0,0);}
.m0_c01442{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m1b_c01442{transform:matrix(0.217596,-0.003264,0.003750,0.249972,0,0);-ms-transform:matrix(0.217596,-0.003264,0.003750,0.249972,0,0);-webkit-transform:matrix(0.217596,-0.003264,0.003750,0.249972,0,0);}
.m29_c01442{transform:matrix(0.218160,-0.003272,0.003750,0.249972,0,0);-ms-transform:matrix(0.218160,-0.003272,0.003750,0.249972,0,0);-webkit-transform:matrix(0.218160,-0.003272,0.003750,0.249972,0,0);}
.m30_c01442{transform:matrix(0.218915,-0.003284,0.003750,0.249972,0,0);-ms-transform:matrix(0.218915,-0.003284,0.003750,0.249972,0,0);-webkit-transform:matrix(0.218915,-0.003284,0.003750,0.249972,0,0);}
.m9b_c01442{transform:matrix(0.219054,-0.002629,0.003000,0.249982,0,0);-ms-transform:matrix(0.219054,-0.002629,0.003000,0.249982,0,0);-webkit-transform:matrix(0.219054,-0.002629,0.003000,0.249982,0,0);}
.mb2_c01442{transform:matrix(0.219535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219535,0.000000,0.000000,0.250000,0,0);}
.m68_c01442{transform:matrix(0.219950,-0.003299,0.003750,0.249972,0,0);-ms-transform:matrix(0.219950,-0.003299,0.003750,0.249972,0,0);-webkit-transform:matrix(0.219950,-0.003299,0.003750,0.249972,0,0);}
.m47_c01442{transform:matrix(0.220608,-0.003089,0.003500,0.249976,0,0);-ms-transform:matrix(0.220608,-0.003089,0.003500,0.249976,0,0);-webkit-transform:matrix(0.220608,-0.003089,0.003500,0.249976,0,0);}
.m19_c01442{transform:matrix(0.220865,-0.003313,0.003750,0.249972,0,0);-ms-transform:matrix(0.220865,-0.003313,0.003750,0.249972,0,0);-webkit-transform:matrix(0.220865,-0.003313,0.003750,0.249972,0,0);}
.ma0_c01442{transform:matrix(0.221439,-0.002657,0.003000,0.249982,0,0);-ms-transform:matrix(0.221439,-0.002657,0.003000,0.249982,0,0);-webkit-transform:matrix(0.221439,-0.002657,0.003000,0.249982,0,0);}
.m87_c01442{transform:matrix(0.221475,-0.003322,0.003750,0.249972,0,0);-ms-transform:matrix(0.221475,-0.003322,0.003750,0.249972,0,0);-webkit-transform:matrix(0.221475,-0.003322,0.003750,0.249972,0,0);}
.m15_c01442{transform:matrix(0.222895,-0.003343,0.003750,0.249972,0,0);-ms-transform:matrix(0.222895,-0.003343,0.003750,0.249972,0,0);-webkit-transform:matrix(0.222895,-0.003343,0.003750,0.249972,0,0);}
.m2e_c01442{transform:matrix(0.223050,-0.003346,0.003750,0.249972,0,0);-ms-transform:matrix(0.223050,-0.003346,0.003750,0.249972,0,0);-webkit-transform:matrix(0.223050,-0.003346,0.003750,0.249972,0,0);}
.m4e_c01442{transform:matrix(0.223318,-0.003126,0.003500,0.249976,0,0);-ms-transform:matrix(0.223318,-0.003126,0.003500,0.249976,0,0);-webkit-transform:matrix(0.223318,-0.003126,0.003500,0.249976,0,0);}
.m7b_c01442{transform:matrix(0.224560,-0.003368,0.003750,0.249972,0,0);-ms-transform:matrix(0.224560,-0.003368,0.003750,0.249972,0,0);-webkit-transform:matrix(0.224560,-0.003368,0.003750,0.249972,0,0);}
.m3a_c01442{transform:matrix(0.225856,-0.003614,0.003999,0.249968,0,0);-ms-transform:matrix(0.225856,-0.003614,0.003999,0.249968,0,0);-webkit-transform:matrix(0.225856,-0.003614,0.003999,0.249968,0,0);}
.m5d_c01442{transform:matrix(0.226000,-0.003390,0.003750,0.249972,0,0);-ms-transform:matrix(0.226000,-0.003390,0.003750,0.249972,0,0);-webkit-transform:matrix(0.226000,-0.003390,0.003750,0.249972,0,0);}
.m3c_c01442{transform:matrix(0.226716,-0.003627,0.003999,0.249968,0,0);-ms-transform:matrix(0.226716,-0.003627,0.003999,0.249968,0,0);-webkit-transform:matrix(0.226716,-0.003627,0.003999,0.249968,0,0);}
.m65_c01442{transform:matrix(0.228144,-0.003422,0.003750,0.249972,0,0);-ms-transform:matrix(0.228144,-0.003422,0.003750,0.249972,0,0);-webkit-transform:matrix(0.228144,-0.003422,0.003750,0.249972,0,0);}
.m8b_c01442{transform:matrix(0.229026,-0.002519,0.002750,0.249985,0,0);-ms-transform:matrix(0.229026,-0.002519,0.002750,0.249985,0,0);-webkit-transform:matrix(0.229026,-0.002519,0.002750,0.249985,0,0);}
.m18_c01442{transform:matrix(0.229124,-0.003437,0.003750,0.249972,0,0);-ms-transform:matrix(0.229124,-0.003437,0.003750,0.249972,0,0);-webkit-transform:matrix(0.229124,-0.003437,0.003750,0.249972,0,0);}
.m79_c01442{transform:matrix(0.230064,-0.003451,0.003750,0.249972,0,0);-ms-transform:matrix(0.230064,-0.003451,0.003750,0.249972,0,0);-webkit-transform:matrix(0.230064,-0.003451,0.003750,0.249972,0,0);}
.m9c_c01442{transform:matrix(0.230618,-0.002767,0.003000,0.249982,0,0);-ms-transform:matrix(0.230618,-0.002767,0.003000,0.249982,0,0);-webkit-transform:matrix(0.230618,-0.002767,0.003000,0.249982,0,0);}
.m40_c01442{transform:matrix(0.230865,-0.003694,0.003999,0.249968,0,0);-ms-transform:matrix(0.230865,-0.003694,0.003999,0.249968,0,0);-webkit-transform:matrix(0.230865,-0.003694,0.003999,0.249968,0,0);}
.m70_c01442{transform:matrix(0.231113,-0.002311,0.002500,0.249988,0,0);-ms-transform:matrix(0.231113,-0.002311,0.002500,0.249988,0,0);-webkit-transform:matrix(0.231113,-0.002311,0.002500,0.249988,0,0);}
.m48_c01442{transform:matrix(0.232987,-0.003262,0.003500,0.249976,0,0);-ms-transform:matrix(0.232987,-0.003262,0.003500,0.249976,0,0);-webkit-transform:matrix(0.232987,-0.003262,0.003500,0.249976,0,0);}
.mb7_c01442{transform:matrix(0.233010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233010,0.000000,0.000000,0.250000,0,0);}
.me_c01442{transform:matrix(0.233355,-0.003034,0.003250,0.249979,0,0);-ms-transform:matrix(0.233355,-0.003034,0.003250,0.249979,0,0);-webkit-transform:matrix(0.233355,-0.003034,0.003250,0.249979,0,0);}
.m2b_c01442{transform:matrix(0.233759,-0.003506,0.003750,0.249972,0,0);-ms-transform:matrix(0.233759,-0.003506,0.003750,0.249972,0,0);-webkit-transform:matrix(0.233759,-0.003506,0.003750,0.249972,0,0);}
.m5a_c01442{transform:matrix(0.233789,-0.003507,0.003750,0.249972,0,0);-ms-transform:matrix(0.233789,-0.003507,0.003750,0.249972,0,0);-webkit-transform:matrix(0.233789,-0.003507,0.003750,0.249972,0,0);}
.m83_c01442{transform:matrix(0.234334,-0.003515,0.003750,0.249972,0,0);-ms-transform:matrix(0.234334,-0.003515,0.003750,0.249972,0,0);-webkit-transform:matrix(0.234334,-0.003515,0.003750,0.249972,0,0);}
.m98_c01442{transform:matrix(0.235656,-0.002592,0.002750,0.249985,0,0);-ms-transform:matrix(0.235656,-0.002592,0.002750,0.249985,0,0);-webkit-transform:matrix(0.235656,-0.002592,0.002750,0.249985,0,0);}
.m7e_c01442{transform:matrix(0.236048,-0.003541,0.003750,0.249972,0,0);-ms-transform:matrix(0.236048,-0.003541,0.003750,0.249972,0,0);-webkit-transform:matrix(0.236048,-0.003541,0.003750,0.249972,0,0);}
.m72_c01442{transform:matrix(0.236573,-0.002366,0.002500,0.249988,0,0);-ms-transform:matrix(0.236573,-0.002366,0.002500,0.249988,0,0);-webkit-transform:matrix(0.236573,-0.002366,0.002500,0.249988,0,0);}
.ma4_c01442{transform:matrix(0.236733,-0.002841,0.003000,0.249982,0,0);-ms-transform:matrix(0.236733,-0.002841,0.003000,0.249982,0,0);-webkit-transform:matrix(0.236733,-0.002841,0.003000,0.249982,0,0);}
.m8e_c01442{transform:matrix(0.236831,-0.002605,0.002750,0.249985,0,0);-ms-transform:matrix(0.236831,-0.002605,0.002750,0.249985,0,0);-webkit-transform:matrix(0.236831,-0.002605,0.002750,0.249985,0,0);}
.m17_c01442{transform:matrix(0.237008,-0.003555,0.003750,0.249972,0,0);-ms-transform:matrix(0.237008,-0.003555,0.003750,0.249972,0,0);-webkit-transform:matrix(0.237008,-0.003555,0.003750,0.249972,0,0);}
.m71_c01442{transform:matrix(0.237608,-0.002376,0.002500,0.249988,0,0);-ms-transform:matrix(0.237608,-0.002376,0.002500,0.249988,0,0);-webkit-transform:matrix(0.237608,-0.002376,0.002500,0.249988,0,0);}
.m82_c01442{transform:matrix(0.237768,-0.003567,0.003750,0.249972,0,0);-ms-transform:matrix(0.237768,-0.003567,0.003750,0.249972,0,0);-webkit-transform:matrix(0.237768,-0.003567,0.003750,0.249972,0,0);}
.m60_c01442{transform:matrix(0.237803,-0.003567,0.003750,0.249972,0,0);-ms-transform:matrix(0.237803,-0.003567,0.003750,0.249972,0,0);-webkit-transform:matrix(0.237803,-0.003567,0.003750,0.249972,0,0);}
.ma6_c01442{transform:matrix(0.238683,-0.002864,0.003000,0.249982,0,0);-ms-transform:matrix(0.238683,-0.002864,0.003000,0.249982,0,0);-webkit-transform:matrix(0.238683,-0.002864,0.003000,0.249982,0,0);}
.m49_c01442{transform:matrix(0.239417,-0.003352,0.003500,0.249976,0,0);-ms-transform:matrix(0.239417,-0.003352,0.003500,0.249976,0,0);-webkit-transform:matrix(0.239417,-0.003352,0.003500,0.249976,0,0);}
.m28_c01442{transform:matrix(0.240608,-0.003609,0.003750,0.249972,0,0);-ms-transform:matrix(0.240608,-0.003609,0.003750,0.249972,0,0);-webkit-transform:matrix(0.240608,-0.003609,0.003750,0.249972,0,0);}
.m13_c01442{transform:matrix(0.240793,-0.003612,0.003750,0.249972,0,0);-ms-transform:matrix(0.240793,-0.003612,0.003750,0.249972,0,0);-webkit-transform:matrix(0.240793,-0.003612,0.003750,0.249972,0,0);}
.m99_c01442{transform:matrix(0.242063,-0.002905,0.003000,0.249982,0,0);-ms-transform:matrix(0.242063,-0.002905,0.003000,0.249982,0,0);-webkit-transform:matrix(0.242063,-0.002905,0.003000,0.249982,0,0);}
.m1a_c01442{transform:matrix(0.242248,-0.003634,0.003750,0.249972,0,0);-ms-transform:matrix(0.242248,-0.003634,0.003750,0.249972,0,0);-webkit-transform:matrix(0.242248,-0.003634,0.003750,0.249972,0,0);}
.m62_c01442{transform:matrix(0.242318,-0.003635,0.003750,0.249972,0,0);-ms-transform:matrix(0.242318,-0.003635,0.003750,0.249972,0,0);-webkit-transform:matrix(0.242318,-0.003635,0.003750,0.249972,0,0);}
.m2a_c01442{transform:matrix(0.242498,-0.003637,0.003750,0.249972,0,0);-ms-transform:matrix(0.242498,-0.003637,0.003750,0.249972,0,0);-webkit-transform:matrix(0.242498,-0.003637,0.003750,0.249972,0,0);}
.m5c_c01442{transform:matrix(0.242568,-0.003639,0.003750,0.249972,0,0);-ms-transform:matrix(0.242568,-0.003639,0.003750,0.249972,0,0);-webkit-transform:matrix(0.242568,-0.003639,0.003750,0.249972,0,0);}
.ma2_c01442{transform:matrix(0.242878,-0.002915,0.003000,0.249982,0,0);-ms-transform:matrix(0.242878,-0.002915,0.003000,0.249982,0,0);-webkit-transform:matrix(0.242878,-0.002915,0.003000,0.249982,0,0);}
.m4a_c01442{transform:matrix(0.243081,-0.003403,0.003500,0.249976,0,0);-ms-transform:matrix(0.243081,-0.003403,0.003500,0.249976,0,0);-webkit-transform:matrix(0.243081,-0.003403,0.003500,0.249976,0,0);}
.m38_c01442{transform:matrix(0.244153,-0.003662,0.003750,0.249972,0,0);-ms-transform:matrix(0.244153,-0.003662,0.003750,0.249972,0,0);-webkit-transform:matrix(0.244153,-0.003662,0.003750,0.249972,0,0);}
.mb1_c01442{transform:matrix(0.244910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244910,0.000000,0.000000,0.250000,0,0);}
.mb3_c01442{transform:matrix(0.245220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245220,0.000000,0.000000,0.250000,0,0);}
.m26_c01442{transform:matrix(0.245252,-0.003679,0.003750,0.249972,0,0);-ms-transform:matrix(0.245252,-0.003679,0.003750,0.249972,0,0);-webkit-transform:matrix(0.245252,-0.003679,0.003750,0.249972,0,0);}
.m25_c01442{transform:matrix(0.245682,-0.003685,0.003750,0.249972,0,0);-ms-transform:matrix(0.245682,-0.003685,0.003750,0.249972,0,0);-webkit-transform:matrix(0.245682,-0.003685,0.003750,0.249972,0,0);}
.m7f_c01442{transform:matrix(0.245687,-0.003685,0.003750,0.249972,0,0);-ms-transform:matrix(0.245687,-0.003685,0.003750,0.249972,0,0);-webkit-transform:matrix(0.245687,-0.003685,0.003750,0.249972,0,0);}
.m6e_c01442{transform:matrix(0.245813,-0.002458,0.002500,0.249988,0,0);-ms-transform:matrix(0.245813,-0.002458,0.002500,0.249988,0,0);-webkit-transform:matrix(0.245813,-0.002458,0.002500,0.249988,0,0);}
.m96_c01442{transform:matrix(0.246965,-0.002717,0.002750,0.249985,0,0);-ms-transform:matrix(0.246965,-0.002717,0.002750,0.249985,0,0);-webkit-transform:matrix(0.246965,-0.002717,0.002750,0.249985,0,0);}
.m44_c01442{transform:matrix(0.247421,-0.003464,0.003500,0.249976,0,0);-ms-transform:matrix(0.247421,-0.003464,0.003500,0.249976,0,0);-webkit-transform:matrix(0.247421,-0.003464,0.003500,0.249976,0,0);}
.m57_c01442{transform:matrix(0.247597,-0.003714,0.003750,0.249972,0,0);-ms-transform:matrix(0.247597,-0.003714,0.003750,0.249972,0,0);-webkit-transform:matrix(0.247597,-0.003714,0.003750,0.249972,0,0);}
.m9d_c01442{transform:matrix(0.247677,-0.002972,0.003000,0.249982,0,0);-ms-transform:matrix(0.247677,-0.002972,0.003000,0.249982,0,0);-webkit-transform:matrix(0.247677,-0.002972,0.003000,0.249982,0,0);}
.m3b_c01442{transform:matrix(0.248288,-0.003973,0.003999,0.249968,0,0);-ms-transform:matrix(0.248288,-0.003973,0.003999,0.249968,0,0);-webkit-transform:matrix(0.248288,-0.003973,0.003999,0.249968,0,0);}
.m32_c01442{transform:matrix(0.249322,-0.003740,0.003750,0.249972,0,0);-ms-transform:matrix(0.249322,-0.003740,0.003750,0.249972,0,0);-webkit-transform:matrix(0.249322,-0.003740,0.003750,0.249972,0,0);}
.m45_c01442{transform:matrix(0.250245,-0.003503,0.003500,0.249976,0,0);-ms-transform:matrix(0.250245,-0.003503,0.003500,0.249976,0,0);-webkit-transform:matrix(0.250245,-0.003503,0.003500,0.249976,0,0);}
.m1d_c01442{transform:matrix(0.250282,-0.003754,0.003750,0.249972,0,0);-ms-transform:matrix(0.250282,-0.003754,0.003750,0.249972,0,0);-webkit-transform:matrix(0.250282,-0.003754,0.003750,0.249972,0,0);}
.m77_c01442{transform:matrix(0.250372,-0.003756,0.003750,0.249972,0,0);-ms-transform:matrix(0.250372,-0.003756,0.003750,0.249972,0,0);-webkit-transform:matrix(0.250372,-0.003756,0.003750,0.249972,0,0);}
.m10_c01442{transform:matrix(0.250449,-0.003256,0.003250,0.249979,0,0);-ms-transform:matrix(0.250449,-0.003256,0.003250,0.249979,0,0);-webkit-transform:matrix(0.250449,-0.003256,0.003250,0.249979,0,0);}
.m9a_c01442{transform:matrix(0.252317,-0.003028,0.003000,0.249982,0,0);-ms-transform:matrix(0.252317,-0.003028,0.003000,0.249982,0,0);-webkit-transform:matrix(0.252317,-0.003028,0.003000,0.249982,0,0);}
.m6b_c01442{transform:matrix(0.253302,-0.002533,0.002500,0.249988,0,0);-ms-transform:matrix(0.253302,-0.002533,0.002500,0.249988,0,0);-webkit-transform:matrix(0.253302,-0.002533,0.002500,0.249988,0,0);}
.m14_c01442{transform:matrix(0.253386,-0.003801,0.003750,0.249972,0,0);-ms-transform:matrix(0.253386,-0.003801,0.003750,0.249972,0,0);-webkit-transform:matrix(0.253386,-0.003801,0.003750,0.249972,0,0);}
.m6f_c01442{transform:matrix(0.253547,-0.002535,0.002500,0.249988,0,0);-ms-transform:matrix(0.253547,-0.002535,0.002500,0.249988,0,0);-webkit-transform:matrix(0.253547,-0.002535,0.002500,0.249988,0,0);}
.m11_c01442{transform:matrix(0.254136,-0.003812,0.003750,0.249972,0,0);-ms-transform:matrix(0.254136,-0.003812,0.003750,0.249972,0,0);-webkit-transform:matrix(0.254136,-0.003812,0.003750,0.249972,0,0);}
.m6d_c01442{transform:matrix(0.254717,-0.002547,0.002500,0.249988,0,0);-ms-transform:matrix(0.254717,-0.002547,0.002500,0.249988,0,0);-webkit-transform:matrix(0.254717,-0.002547,0.002500,0.249988,0,0);}
.m46_c01442{transform:matrix(0.254990,-0.003570,0.003500,0.249976,0,0);-ms-transform:matrix(0.254990,-0.003570,0.003500,0.249976,0,0);-webkit-transform:matrix(0.254990,-0.003570,0.003500,0.249976,0,0);}
.m91_c01442{transform:matrix(0.255295,-0.002808,0.002750,0.249985,0,0);-ms-transform:matrix(0.255295,-0.002808,0.002750,0.249985,0,0);-webkit-transform:matrix(0.255295,-0.002808,0.002750,0.249985,0,0);}
.m3f_c01442{transform:matrix(0.255467,-0.004087,0.003999,0.249968,0,0);-ms-transform:matrix(0.255467,-0.004087,0.003999,0.249968,0,0);-webkit-transform:matrix(0.255467,-0.004087,0.003999,0.249968,0,0);}
.m94_c01442{transform:matrix(0.255900,-0.002815,0.002750,0.249985,0,0);-ms-transform:matrix(0.255900,-0.002815,0.002750,0.249985,0,0);-webkit-transform:matrix(0.255900,-0.002815,0.002750,0.249985,0,0);}
.m5f_c01442{transform:matrix(0.256121,-0.003842,0.003750,0.249972,0,0);-ms-transform:matrix(0.256121,-0.003842,0.003750,0.249972,0,0);-webkit-transform:matrix(0.256121,-0.003842,0.003750,0.249972,0,0);}
.m42_c01442{transform:matrix(0.256180,-0.003587,0.003500,0.249976,0,0);-ms-transform:matrix(0.256180,-0.003587,0.003500,0.249976,0,0);-webkit-transform:matrix(0.256180,-0.003587,0.003500,0.249976,0,0);}
.m12_c01442{transform:matrix(0.256491,-0.003847,0.003750,0.249972,0,0);-ms-transform:matrix(0.256491,-0.003847,0.003750,0.249972,0,0);-webkit-transform:matrix(0.256491,-0.003847,0.003750,0.249972,0,0);}
.m9e_c01442{transform:matrix(0.256867,-0.003082,0.003000,0.249982,0,0);-ms-transform:matrix(0.256867,-0.003082,0.003000,0.249982,0,0);-webkit-transform:matrix(0.256867,-0.003082,0.003000,0.249982,0,0);}
.m1f_c01442{transform:matrix(0.257491,-0.003862,0.003750,0.249972,0,0);-ms-transform:matrix(0.257491,-0.003862,0.003750,0.249972,0,0);-webkit-transform:matrix(0.257491,-0.003862,0.003750,0.249972,0,0);}
.m1c_c01442{transform:matrix(0.257936,-0.003869,0.003750,0.249972,0,0);-ms-transform:matrix(0.257936,-0.003869,0.003750,0.249972,0,0);-webkit-transform:matrix(0.257936,-0.003869,0.003750,0.249972,0,0);}
.m90_c01442{transform:matrix(0.257984,-0.002838,0.002750,0.249985,0,0);-ms-transform:matrix(0.257984,-0.002838,0.002750,0.249985,0,0);-webkit-transform:matrix(0.257984,-0.002838,0.002750,0.249985,0,0);}
.m43_c01442{transform:matrix(0.258085,-0.003613,0.003500,0.249976,0,0);-ms-transform:matrix(0.258085,-0.003613,0.003500,0.249976,0,0);-webkit-transform:matrix(0.258085,-0.003613,0.003500,0.249976,0,0);}
.m81_c01442{transform:matrix(0.258321,-0.003875,0.003750,0.249972,0,0);-ms-transform:matrix(0.258321,-0.003875,0.003750,0.249972,0,0);-webkit-transform:matrix(0.258321,-0.003875,0.003750,0.249972,0,0);}
.m1e_c01442{transform:matrix(0.258956,-0.003884,0.003750,0.249972,0,0);-ms-transform:matrix(0.258956,-0.003884,0.003750,0.249972,0,0);-webkit-transform:matrix(0.258956,-0.003884,0.003750,0.249972,0,0);}
.m64_c01442{transform:matrix(0.260051,-0.003901,0.003750,0.249972,0,0);-ms-transform:matrix(0.260051,-0.003901,0.003750,0.249972,0,0);-webkit-transform:matrix(0.260051,-0.003901,0.003750,0.249972,0,0);}
.m6c_c01442{transform:matrix(0.260392,-0.002604,0.002500,0.249988,0,0);-ms-transform:matrix(0.260392,-0.002604,0.002500,0.249988,0,0);-webkit-transform:matrix(0.260392,-0.002604,0.002500,0.249988,0,0);}
.m35_c01442{transform:matrix(0.260561,-0.003908,0.003750,0.249972,0,0);-ms-transform:matrix(0.260561,-0.003908,0.003750,0.249972,0,0);-webkit-transform:matrix(0.260561,-0.003908,0.003750,0.249972,0,0);}
.m80_c01442{transform:matrix(0.260701,-0.003911,0.003750,0.249972,0,0);-ms-transform:matrix(0.260701,-0.003911,0.003750,0.249972,0,0);-webkit-transform:matrix(0.260701,-0.003911,0.003750,0.249972,0,0);}
.m39_c01442{transform:matrix(0.260911,-0.003914,0.003750,0.249972,0,0);-ms-transform:matrix(0.260911,-0.003914,0.003750,0.249972,0,0);-webkit-transform:matrix(0.260911,-0.003914,0.003750,0.249972,0,0);}
.mb0_c01442{transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260960,0.000000,0.000000,0.250000,0,0);}
.m27_c01442{transform:matrix(0.261216,-0.003918,0.003750,0.249972,0,0);-ms-transform:matrix(0.261216,-0.003918,0.003750,0.249972,0,0);-webkit-transform:matrix(0.261216,-0.003918,0.003750,0.249972,0,0);}
.m92_c01442{transform:matrix(0.261619,-0.002878,0.002750,0.249985,0,0);-ms-transform:matrix(0.261619,-0.002878,0.002750,0.249985,0,0);-webkit-transform:matrix(0.261619,-0.002878,0.002750,0.249985,0,0);}
.mb6_c01442{transform:matrix(0.261685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261685,0.000000,0.000000,0.250000,0,0);}
.m8a_c01442{transform:matrix(0.262294,-0.002885,0.002750,0.249985,0,0);-ms-transform:matrix(0.262294,-0.002885,0.002750,0.249985,0,0);-webkit-transform:matrix(0.262294,-0.002885,0.002750,0.249985,0,0);}
.m5e_c01442{transform:matrix(0.262840,-0.003943,0.003750,0.249972,0,0);-ms-transform:matrix(0.262840,-0.003943,0.003750,0.249972,0,0);-webkit-transform:matrix(0.262840,-0.003943,0.003750,0.249972,0,0);}
.mb5_c01442{transform:matrix(0.263305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263305,0.000000,0.000000,0.250000,0,0);}
.m23_c01442{transform:matrix(0.265175,-0.003978,0.003750,0.249972,0,0);-ms-transform:matrix(0.265175,-0.003978,0.003750,0.249972,0,0);-webkit-transform:matrix(0.265175,-0.003978,0.003750,0.249972,0,0);}
.m63_c01442{transform:matrix(0.266285,-0.003994,0.003750,0.249972,0,0);-ms-transform:matrix(0.266285,-0.003994,0.003750,0.249972,0,0);-webkit-transform:matrix(0.266285,-0.003994,0.003750,0.249972,0,0);}
.m86_c01442{transform:matrix(0.266450,-0.003997,0.003750,0.249972,0,0);-ms-transform:matrix(0.266450,-0.003997,0.003750,0.249972,0,0);-webkit-transform:matrix(0.266450,-0.003997,0.003750,0.249972,0,0);}
.m89_c01442{transform:matrix(0.266514,-0.002932,0.002750,0.249985,0,0);-ms-transform:matrix(0.266514,-0.002932,0.002750,0.249985,0,0);-webkit-transform:matrix(0.266514,-0.002932,0.002750,0.249985,0,0);}
.maf_c01442{transform:matrix(0.266700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266700,0.000000,0.000000,0.250000,0,0);}
.m22_c01442{transform:matrix(0.267095,-0.004006,0.003750,0.249972,0,0);-ms-transform:matrix(0.267095,-0.004006,0.003750,0.249972,0,0);-webkit-transform:matrix(0.267095,-0.004006,0.003750,0.249972,0,0);}
.m8f_c01442{transform:matrix(0.268989,-0.002959,0.002750,0.249985,0,0);-ms-transform:matrix(0.268989,-0.002959,0.002750,0.249985,0,0);-webkit-transform:matrix(0.268989,-0.002959,0.002750,0.249985,0,0);}
.mae_c01442{transform:matrix(0.270890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270890,0.000000,0.000000,0.250000,0,0);}
.m34_c01442{transform:matrix(0.270970,-0.004065,0.003750,0.249972,0,0);-ms-transform:matrix(0.270970,-0.004065,0.003750,0.249972,0,0);-webkit-transform:matrix(0.270970,-0.004065,0.003750,0.249972,0,0);}
.m24_c01442{transform:matrix(0.271164,-0.004067,0.003750,0.249972,0,0);-ms-transform:matrix(0.271164,-0.004067,0.003750,0.249972,0,0);-webkit-transform:matrix(0.271164,-0.004067,0.003750,0.249972,0,0);}
.m37_c01442{transform:matrix(0.271239,-0.004069,0.003750,0.249972,0,0);-ms-transform:matrix(0.271239,-0.004069,0.003750,0.249972,0,0);-webkit-transform:matrix(0.271239,-0.004069,0.003750,0.249972,0,0);}
.m33_c01442{transform:matrix(0.271734,-0.004076,0.003750,0.249972,0,0);-ms-transform:matrix(0.271734,-0.004076,0.003750,0.249972,0,0);-webkit-transform:matrix(0.271734,-0.004076,0.003750,0.249972,0,0);}
.m67_c01442{transform:matrix(0.272334,-0.004085,0.003750,0.249972,0,0);-ms-transform:matrix(0.272334,-0.004085,0.003750,0.249972,0,0);-webkit-transform:matrix(0.272334,-0.004085,0.003750,0.249972,0,0);}
.m84_c01442{transform:matrix(0.275354,-0.004130,0.003750,0.249972,0,0);-ms-transform:matrix(0.275354,-0.004130,0.003750,0.249972,0,0);-webkit-transform:matrix(0.275354,-0.004130,0.003750,0.249972,0,0);}
.m41_c01442{transform:matrix(0.275445,-0.004407,0.003999,0.249968,0,0);-ms-transform:matrix(0.275445,-0.004407,0.003999,0.249968,0,0);-webkit-transform:matrix(0.275445,-0.004407,0.003999,0.249968,0,0);}
.m95_c01442{transform:matrix(0.275453,-0.003030,0.002750,0.249985,0,0);-ms-transform:matrix(0.275453,-0.003030,0.002750,0.249985,0,0);-webkit-transform:matrix(0.275453,-0.003030,0.002750,0.249985,0,0);}
.m20_c01442{transform:matrix(0.275619,-0.004134,0.003750,0.249972,0,0);-ms-transform:matrix(0.275619,-0.004134,0.003750,0.249972,0,0);-webkit-transform:matrix(0.275619,-0.004134,0.003750,0.249972,0,0);}
.m61_c01442{transform:matrix(0.277549,-0.004163,0.003750,0.249972,0,0);-ms-transform:matrix(0.277549,-0.004163,0.003750,0.249972,0,0);-webkit-transform:matrix(0.277549,-0.004163,0.003750,0.249972,0,0);}
.m8c_c01442{transform:matrix(0.278438,-0.003063,0.002750,0.249985,0,0);-ms-transform:matrix(0.278438,-0.003063,0.002750,0.249985,0,0);-webkit-transform:matrix(0.278438,-0.003063,0.002750,0.249985,0,0);}
.m66_c01442{transform:matrix(0.278739,-0.004181,0.003750,0.249972,0,0);-ms-transform:matrix(0.278739,-0.004181,0.003750,0.249972,0,0);-webkit-transform:matrix(0.278739,-0.004181,0.003750,0.249972,0,0);}
.m73_c01442{transform:matrix(0.298605,-0.002986,0.002500,0.249988,0,0);-ms-transform:matrix(0.298605,-0.002986,0.002500,0.249988,0,0);-webkit-transform:matrix(0.298605,-0.002986,0.002500,0.249988,0,0);}
.m88_c01442{transform:matrix(0.303956,-0.004559,0.003750,0.249972,0,0);-ms-transform:matrix(0.303956,-0.004559,0.003750,0.249972,0,0);-webkit-transform:matrix(0.303956,-0.004559,0.003750,0.249972,0,0);}
.m2f_c01442{transform:matrix(0.308740,-0.004631,0.003750,0.249972,0,0);-ms-transform:matrix(0.308740,-0.004631,0.003750,0.249972,0,0);-webkit-transform:matrix(0.308740,-0.004631,0.003750,0.249972,0,0);}
.ma_c01442{transform:matrix(0.309599,-0.004025,0.003250,0.249979,0,0);-ms-transform:matrix(0.309599,-0.004025,0.003250,0.249979,0,0);-webkit-transform:matrix(0.309599,-0.004025,0.003250,0.249979,0,0);}
.m74_c01442{transform:matrix(0.312464,-0.003125,0.002500,0.249988,0,0);-ms-transform:matrix(0.312464,-0.003125,0.002500,0.249988,0,0);-webkit-transform:matrix(0.312464,-0.003125,0.002500,0.249988,0,0);}
.ma7_c01442{transform:matrix(0.367024,-0.004404,0.003000,0.249982,0,0);-ms-transform:matrix(0.367024,-0.004404,0.003000,0.249982,0,0);-webkit-transform:matrix(0.367024,-0.004404,0.003000,0.249982,0,0);}
.m75_c01442{transform:matrix(0.372581,-0.003726,0.002500,0.249988,0,0);-ms-transform:matrix(0.372581,-0.003726,0.002500,0.249988,0,0);-webkit-transform:matrix(0.372581,-0.003726,0.002500,0.249988,0,0);}
.mac_c01442{transform:matrix(0.387017,-0.004644,0.003000,0.249982,0,0);-ms-transform:matrix(0.387017,-0.004644,0.003000,0.249982,0,0);-webkit-transform:matrix(0.387017,-0.004644,0.003000,0.249982,0,0);}
.mad_c01442{transform:matrix(0.390637,-0.004688,0.003000,0.249982,0,0);-ms-transform:matrix(0.390637,-0.004688,0.003000,0.249982,0,0);-webkit-transform:matrix(0.390637,-0.004688,0.003000,0.249982,0,0);}
.m2_c01442{transform:matrix(0.391795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391795,0.000000,0.000000,0.250000,0,0);}
.mab_c01442{transform:matrix(0.408686,-0.004904,0.003000,0.249982,0,0);-ms-transform:matrix(0.408686,-0.004904,0.003000,0.249982,0,0);-webkit-transform:matrix(0.408686,-0.004904,0.003000,0.249982,0,0);}
.ma8_c01442{transform:matrix(0.411425,-0.004937,0.003000,0.249982,0,0);-ms-transform:matrix(0.411425,-0.004937,0.003000,0.249982,0,0);-webkit-transform:matrix(0.411425,-0.004937,0.003000,0.249982,0,0);}
.ma9_c01442{transform:matrix(0.412550,-0.004951,0.003000,0.249982,0,0);-ms-transform:matrix(0.412550,-0.004951,0.003000,0.249982,0,0);-webkit-transform:matrix(0.412550,-0.004951,0.003000,0.249982,0,0);}
.maa_c01442{transform:matrix(0.428134,-0.005138,0.003000,0.249982,0,0);-ms-transform:matrix(0.428134,-0.005138,0.003000,0.249982,0,0);-webkit-transform:matrix(0.428134,-0.005138,0.003000,0.249982,0,0);}
.m21_c01442{transform:matrix(0.984369,-0.014766,0.003750,0.249972,0,0);-ms-transform:matrix(0.984369,-0.014766,0.003750,0.249972,0,0);-webkit-transform:matrix(0.984369,-0.014766,0.003750,0.249972,0,0);}
.v0_c01442{vertical-align:0.000000px;}
.ls0_c01442{letter-spacing:0.000000px;}
.sc__c01442{text-shadow:none;}
.sc0_c01442{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__c01442{-webkit-text-stroke:0px transparent;}
.sc0_c01442{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01442{word-spacing:0.000000px;}
.fc0_c01442{color:transparent;}
.fs11_c01442{font-size:48.003456px;}
.fsc_c01442{font-size:54.002700px;}
.fse_c01442{font-size:66.007425px;}
.fs12_c01442{font-size:72.000000px;}
.fsf_c01442{font-size:72.004356px;}
.fs5_c01442{font-size:72.008100px;}
.fs6_c01442{font-size:72.009215px;}
.fs13_c01442{font-size:78.000000px;}
.fsb_c01442{font-size:78.003900px;}
.fs10_c01442{font-size:78.005616px;}
.fs3_c01442{font-size:78.006591px;}
.fs7_c01442{font-size:78.007644px;}
.fs4_c01442{font-size:78.008775px;}
.fs0_c01442{font-size:84.000000px;}
.fsd_c01442{font-size:84.009449px;}
.fs1_c01442{font-size:90.000000px;}
.fs8_c01442{font-size:90.008820px;}
.fs2_c01442{font-size:102.008619px;}
.fs9_c01442{font-size:102.009996px;}
.fsa_c01442{font-size:102.011474px;}
.y0_c01442{bottom:0.000000px;}
.yb0_c01442{bottom:202.503000px;}
.yb1_c01442{bottom:203.622000px;}
.yb2_c01442{bottom:204.039000px;}
.yb3_c01442{bottom:205.047000px;}
.yb4_c01442{bottom:206.199000px;}
.yb5_c01442{bottom:208.323000px;}
.yb6_c01442{bottom:210.028500px;}
.yaf_c01442{bottom:240.471000px;}
.ya8_c01442{bottom:274.857816px;}
.ya9_c01442{bottom:275.780664px;}
.yaa_c01442{bottom:277.023696px;}
.yab_c01442{bottom:278.936568px;}
.yac_c01442{bottom:280.823310px;}
.yad_c01442{bottom:281.885160px;}
.yae_c01442{bottom:282.519516px;}
.ya3_c01442{bottom:310.500486px;}
.ya4_c01442{bottom:312.091608px;}
.ya5_c01442{bottom:312.578016px;}
.ya6_c01442{bottom:313.566684px;}
.ya7_c01442{bottom:314.053380px;}
.y9a_c01442{bottom:345.061500px;}
.y9b_c01442{bottom:345.845598px;}
.y9c_c01442{bottom:347.161056px;}
.y9d_c01442{bottom:347.686062px;}
.y9e_c01442{bottom:348.489672px;}
.y9f_c01442{bottom:349.526742px;}
.ya0_c01442{bottom:350.848212px;}
.ya1_c01442{bottom:351.247200px;}
.ya2_c01442{bottom:351.660804px;}
.y93_c01442{bottom:380.970021px;}
.y94_c01442{bottom:381.919491px;}
.y95_c01442{bottom:382.810878px;}
.y96_c01442{bottom:383.434840px;}
.y97_c01442{bottom:384.951310px;}
.y98_c01442{bottom:386.038873px;}
.y99_c01442{bottom:386.505311px;}
.y2_c01442{bottom:408.907500px;}
.y8a_c01442{bottom:416.611500px;}
.y8b_c01442{bottom:417.799434px;}
.y8c_c01442{bottom:418.402278px;}
.y8d_c01442{bottom:418.895694px;}
.y8e_c01442{bottom:420.335666px;}
.y8f_c01442{bottom:420.576714px;}
.y90_c01442{bottom:421.055049px;}
.y91_c01442{bottom:422.023203px;}
.y92_c01442{bottom:422.738990px;}
.y89_c01442{bottom:452.392095px;}
.y80_c01442{bottom:487.887825px;}
.y81_c01442{bottom:488.538307px;}
.y82_c01442{bottom:489.310140px;}
.y83_c01442{bottom:489.845137px;}
.y84_c01442{bottom:490.502378px;}
.y85_c01442{bottom:490.884683px;}
.y86_c01442{bottom:492.478328px;}
.y87_c01442{bottom:493.525567px;}
.y88_c01442{bottom:494.448683px;}
.y77_c01442{bottom:522.183000px;}
.y78_c01442{bottom:523.577618px;}
.y79_c01442{bottom:525.114503px;}
.y7a_c01442{bottom:525.795983px;}
.y7b_c01442{bottom:527.096078px;}
.y7c_c01442{bottom:527.764013px;}
.y7d_c01442{bottom:529.221968px;}
.y7e_c01442{bottom:529.716810px;}
.y7f_c01442{bottom:530.219190px;}
.y76_c01442{bottom:561.058695px;}
.y75_c01442{bottom:561.058710px;}
.y6c_c01442{bottom:595.891500px;}
.y6d_c01442{bottom:596.852790px;}
.y6e_c01442{bottom:597.843795px;}
.y6f_c01442{bottom:598.616040px;}
.y70_c01442{bottom:599.158800px;}
.y71_c01442{bottom:600.033720px;}
.y72_c01442{bottom:600.479310px;}
.y73_c01442{bottom:601.130010px;}
.y74_c01442{bottom:601.570005px;}
.y6a_c01442{bottom:631.816537px;}
.y69_c01442{bottom:631.817055px;}
.y6b_c01442{bottom:631.817070px;}
.y5f_c01442{bottom:665.549025px;}
.y60_c01442{bottom:666.615172px;}
.y61_c01442{bottom:667.661475px;}
.y62_c01442{bottom:668.159063px;}
.y63_c01442{bottom:669.761595px;}
.y64_c01442{bottom:670.449877px;}
.y65_c01442{bottom:670.984942px;}
.y66_c01442{bottom:671.680605px;}
.y67_c01442{bottom:672.194393px;}
.y68_c01442{bottom:673.619280px;}
.y57_c01442{bottom:700.653000px;}
.y58_c01442{bottom:702.268838px;}
.y59_c01442{bottom:704.070570px;}
.y5a_c01442{bottom:705.046755px;}
.y5b_c01442{bottom:706.214370px;}
.y5c_c01442{bottom:707.522003px;}
.y5d_c01442{bottom:708.000510px;}
.y5e_c01442{bottom:708.842753px;}
.y56_c01442{bottom:732.615435px;}
.y4c_c01442{bottom:771.928830px;}
.y4d_c01442{bottom:772.851381px;}
.y4e_c01442{bottom:773.334696px;}
.y4f_c01442{bottom:773.766309px;}
.y50_c01442{bottom:775.641420px;}
.y51_c01442{bottom:776.696355px;}
.y52_c01442{bottom:777.312600px;}
.y53_c01442{bottom:777.928677px;}
.y54_c01442{bottom:778.987035px;}
.y55_c01442{bottom:779.932686px;}
.y43_c01442{bottom:807.303000px;}
.y44_c01442{bottom:808.822518px;}
.y45_c01442{bottom:810.353481px;}
.y46_c01442{bottom:811.113450px;}
.y47_c01442{bottom:812.191233px;}
.y48_c01442{bottom:813.426642px;}
.y49_c01442{bottom:814.028187px;}
.y4a_c01442{bottom:814.667259px;}
.y4b_c01442{bottom:815.729397px;}
.y3b_c01442{bottom:844.023000px;}
.y3c_c01442{bottom:844.537992px;}
.y3d_c01442{bottom:845.423352px;}
.y3e_c01442{bottom:846.131112px;}
.y3f_c01442{bottom:847.378872px;}
.y40_c01442{bottom:848.932320px;}
.y41_c01442{bottom:849.973296px;}
.y42_c01442{bottom:850.492104px;}
.y3a_c01442{bottom:884.381362px;}
.y39_c01442{bottom:884.381775px;}
.y33_c01442{bottom:915.221602px;}
.y34_c01442{bottom:916.130160px;}
.y35_c01442{bottom:916.680660px;}
.y36_c01442{bottom:917.433337px;}
.y37_c01442{bottom:918.042255px;}
.y38_c01442{bottom:918.733207px;}
.y2a_c01442{bottom:950.133000px;}
.y2b_c01442{bottom:951.323992px;}
.y2c_c01442{bottom:952.639612px;}
.y2d_c01442{bottom:953.591992px;}
.y2e_c01442{bottom:954.430545px;}
.y2f_c01442{bottom:955.236697px;}
.y30_c01442{bottom:956.099617px;}
.y31_c01442{bottom:957.715567px;}
.y32_c01442{bottom:958.384537px;}
.y21_c01442{bottom:984.423000px;}
.y22_c01442{bottom:985.584090px;}
.y23_c01442{bottom:987.683250px;}
.y24_c01442{bottom:988.529857px;}
.y25_c01442{bottom:989.664398px;}
.y26_c01442{bottom:990.979883px;}
.y27_c01442{bottom:991.608285px;}
.y28_c01442{bottom:992.139083px;}
.y29_c01442{bottom:993.281182px;}
.y1c_c01442{bottom:1021.409722px;}
.y1d_c01442{bottom:1021.960222px;}
.y1e_c01442{bottom:1023.461595px;}
.y1f_c01442{bottom:1024.005772px;}
.y20_c01442{bottom:1025.689155px;}
.y12_c01442{bottom:1055.703000px;}
.y13_c01442{bottom:1057.322820px;}
.y14_c01442{bottom:1058.959200px;}
.y15_c01442{bottom:1059.781552px;}
.y16_c01442{bottom:1061.109502px;}
.y17_c01442{bottom:1061.758155px;}
.y18_c01442{bottom:1062.248385px;}
.y19_c01442{bottom:1063.239915px;}
.y1a_c01442{bottom:1063.730820px;}
.y1b_c01442{bottom:1064.220825px;}
.y10_c01442{bottom:1093.216509px;}
.yf_c01442{bottom:1093.216987px;}
.y11_c01442{bottom:1093.217130px;}
.y1_c01442{bottom:1121.299500px;}
.y4_c01442{bottom:1128.063000px;}
.y5_c01442{bottom:1129.466844px;}
.y6_c01442{bottom:1130.186511px;}
.y7_c01442{bottom:1131.460212px;}
.y8_c01442{bottom:1131.895959px;}
.y9_c01442{bottom:1133.050417px;}
.ya_c01442{bottom:1133.314330px;}
.yb_c01442{bottom:1133.761114px;}
.yc_c01442{bottom:1134.632979px;}
.yd_c01442{bottom:1135.171159px;}
.ye_c01442{bottom:1135.760839px;}
.y3_c01442{bottom:1192.438500px;}
.h13_c01442{height:48.003456px;}
.he_c01442{height:54.002700px;}
.h10_c01442{height:66.007425px;}
.h14_c01442{height:72.000000px;}
.h11_c01442{height:72.004356px;}
.h7_c01442{height:72.008100px;}
.h8_c01442{height:72.009215px;}
.h15_c01442{height:78.000000px;}
.hd_c01442{height:78.003900px;}
.h12_c01442{height:78.005616px;}
.h5_c01442{height:78.006591px;}
.h9_c01442{height:78.007644px;}
.h6_c01442{height:78.008775px;}
.h2_c01442{height:84.000000px;}
.hf_c01442{height:84.009449px;}
.h3_c01442{height:90.000000px;}
.ha_c01442{height:90.008820px;}
.h4_c01442{height:102.008619px;}
.hb_c01442{height:102.009996px;}
.hc_c01442{height:102.011474px;}
.h0_c01442{height:1261.440000px;}
.h1_c01442{height:1261.500000px;}
.w0_c01442{width:912.000000px;}
.x0_c01442{left:0.000000px;}
.x1_c01442{left:120.690000px;}
.x2_c01442{left:129.600000px;}
.x5_c01442{left:229.426500px;}
.x13_c01442{left:230.811000px;}
.x3b_c01442{left:244.569000px;}
.x4c_c01442{left:246.736500px;}
.x66_c01442{left:259.708500px;}
.x75_c01442{left:261.253500px;}
.x87_c01442{left:262.631598px;}
.x8e_c01442{left:263.979000px;}
.x10_c01442{left:282.425877px;}
.x1b_c01442{left:284.018752px;}
.x43_c01442{left:286.667391px;}
.x54_c01442{left:289.407540px;}
.x74_c01442{left:291.335242px;}
.x6e_c01442{left:292.585207px;}
.x8c_c01442{left:294.030000px;}
.x2d_c01442{left:297.772658px;}
.x20_c01442{left:308.752500px;}
.x1c_c01442{left:316.417785px;}
.x65_c01442{left:322.656285px;}
.x5c_c01442{left:325.088940px;}
.x88_c01442{left:328.534014px;}
.x34_c01442{left:330.448500px;}
.x6_c01442{left:337.414500px;}
.x11_c01442{left:338.590874px;}
.x5e_c01442{left:343.860000px;}
.x6f_c01442{left:346.853160px;}
.x8f_c01442{left:350.109000px;}
.x2e_c01442{left:351.241560px;}
.x3c_c01442{left:353.106000px;}
.x4d_c01442{left:354.459000px;}
.x55_c01442{left:356.083050px;}
.x7d_c01442{left:359.827992px;}
.x25_c01442{left:363.372000px;}
.x5d_c01442{left:366.133665px;}
.x12_c01442{left:369.913158px;}
.x8d_c01442{left:382.050000px;}
.x2f_c01442{left:383.640593px;}
.x35_c01442{left:385.783500px;}
.x44_c01442{left:387.086391px;}
.x7_c01442{left:392.773500px;}
.x1d_c01442{left:404.706630px;}
.x3_c01442{left:411.210000px;}
.x45_c01442{left:417.915891px;}
.x56_c01442{left:421.435560px;}
.x76_c01442{left:424.051500px;}
.x86_c01442{left:425.177424px;}
.x30_c01442{left:427.917765px;}
.x36_c01442{left:430.018500px;}
.x4_c01442{left:434.430000px;}
.x81_c01442{left:435.684000px;}
.x1e_c01442{left:436.684162px;}
.x5f_c01442{left:442.960500px;}
.x14_c01442{left:447.891000px;}
.x26_c01442{left:451.080000px;}
.x57_c01442{left:452.507587px;}
.x67_c01442{left:455.142000px;}
.x90_c01442{left:459.753000px;}
.x3d_c01442{left:462.460500px;}
.x31_c01442{left:463.711185px;}
.x77_c01442{left:468.907500px;}
.x4e_c01442{left:474.574500px;}
.x82_c01442{left:479.434500px;}
.x8_c01442{left:490.750500px;}
.x68_c01442{left:500.574000px;}
.x15_c01442{left:502.714500px;}
.x21_c01442{left:505.137000px;}
.x37_c01442{left:508.003500px;}
.x70_c01442{left:510.498517px;}
.x27_c01442{left:514.572000px;}
.x3e_c01442{left:516.744000px;}
.x60_c01442{left:520.185000px;}
.x32_c01442{left:521.396955px;}
.x9_c01442{left:524.269500px;}
.x1f_c01442{left:535.706692px;}
.x4f_c01442{left:539.653500px;}
.x71_c01442{left:542.386957px;}
.x83_c01442{left:546.402000px;}
.x91_c01442{left:548.329500px;}
.x46_c01442{left:551.852391px;}
.x89_c01442{left:554.020614px;}
.x28_c01442{left:570.475500px;}
.x61_c01442{left:574.461000px;}
.x7e_c01442{left:576.395347px;}
.x22_c01442{left:580.773000px;}
.x69_c01442{left:587.247000px;}
.x16_c01442{left:591.244500px;}
.x33_c01442{left:592.685497px;}
.x3f_c01442{left:593.728500px;}
.x58_c01442{left:595.626428px;}
.x78_c01442{left:599.814000px;}
.x38_c01442{left:605.094000px;}
.xa_c01442{left:613.074000px;}
.x50_c01442{left:617.494500px;}
.x79_c01442{left:621.727500px;}
.x29_c01442{left:624.219000px;}
.x47_c01442{left:627.204891px;}
.x59_c01442{left:629.096933px;}
.x6a_c01442{left:631.776000px;}
.xb_c01442{left:633.375000px;}
.x17_c01442{left:634.488000px;}
.x7f_c01442{left:654.125790px;}
.x62_c01442{left:661.953000px;}
.x7a_c01442{left:665.212500px;}
.xc_c01442{left:667.743000px;}
.x39_c01442{left:670.155000px;}
.x48_c01442{left:671.222391px;}
.x5a_c01442{left:672.573780px;}
.x72_c01442{left:675.235942px;}
.x2a_c01442{left:681.747000px;}
.x80_c01442{left:687.391684px;}
.x8a_c01442{left:688.745874px;}
.x3a_c01442{left:702.580500px;}
.x51_c01442{left:704.670000px;}
.x63_c01442{left:706.512000px;}
.x23_c01442{left:710.365500px;}
.x92_c01442{left:711.658500px;}
.x49_c01442{left:715.227891px;}
.x40_c01442{left:724.939500px;}
.x6b_c01442{left:728.973000px;}
.x18_c01442{left:733.272000px;}
.xd_c01442{left:734.809500px;}
.x52_c01442{left:736.570500px;}
.x84_c01442{left:742.947000px;}
.x24_c01442{left:745.752000px;}
.x7b_c01442{left:753.226500px;}
.x6c_c01442{left:761.962500px;}
.x8b_c01442{left:764.606556px;}
.x19_c01442{left:765.999000px;}
.x41_c01442{left:770.587500px;}
.xe_c01442{left:776.208000px;}
.x2b_c01442{left:789.477000px;}
.x4a_c01442{left:790.824891px;}
.x53_c01442{left:792.720000px;}
.x5b_c01442{left:793.816980px;}
.x6d_c01442{left:795.454500px;}
.x1a_c01442{left:798.666000px;}
.x85_c01442{left:810.663000px;}
.x64_c01442{left:815.581500px;}
.x7c_c01442{left:818.298000px;}
.xf_c01442{left:821.568000px;}
.x2c_c01442{left:834.075000px;}
.x73_c01442{left:839.400322px;}
.x93_c01442{left:842.845500px;}
.x42_c01442{left:846.454500px;}
.x4b_c01442{left:858.371391px;}
@media print{
.v0_c01442{vertical-align:0.000000pt;}
.ls0_c01442{letter-spacing:0.000000pt;}
.ws0_c01442{word-spacing:0.000000pt;}
.fs11_c01442{font-size:42.669739pt;}
.fsc_c01442{font-size:48.002400pt;}
.fse_c01442{font-size:58.673266pt;}
.fs12_c01442{font-size:64.000000pt;}
.fsf_c01442{font-size:64.003872pt;}
.fs5_c01442{font-size:64.007200pt;}
.fs6_c01442{font-size:64.008191pt;}
.fs13_c01442{font-size:69.333333pt;}
.fsb_c01442{font-size:69.336800pt;}
.fs10_c01442{font-size:69.338325pt;}
.fs3_c01442{font-size:69.339192pt;}
.fs7_c01442{font-size:69.340128pt;}
.fs4_c01442{font-size:69.341133pt;}
.fs0_c01442{font-size:74.666667pt;}
.fsd_c01442{font-size:74.675066pt;}
.fs1_c01442{font-size:80.000000pt;}
.fs8_c01442{font-size:80.007840pt;}
.fs2_c01442{font-size:90.674328pt;}
.fs9_c01442{font-size:90.675552pt;}
.fsa_c01442{font-size:90.676866pt;}
.y0_c01442{bottom:0.000000pt;}
.yb0_c01442{bottom:180.002667pt;}
.yb1_c01442{bottom:180.997333pt;}
.yb2_c01442{bottom:181.368000pt;}
.yb3_c01442{bottom:182.264000pt;}
.yb4_c01442{bottom:183.288000pt;}
.yb5_c01442{bottom:185.176000pt;}
.yb6_c01442{bottom:186.692000pt;}
.yaf_c01442{bottom:213.752000pt;}
.ya8_c01442{bottom:244.318059pt;}
.ya9_c01442{bottom:245.138368pt;}
.yaa_c01442{bottom:246.243285pt;}
.yab_c01442{bottom:247.943616pt;}
.yac_c01442{bottom:249.620720pt;}
.yad_c01442{bottom:250.564587pt;}
.yae_c01442{bottom:251.128459pt;}
.ya3_c01442{bottom:276.000432pt;}
.ya4_c01442{bottom:277.414763pt;}
.ya5_c01442{bottom:277.847125pt;}
.ya6_c01442{bottom:278.725941pt;}
.ya7_c01442{bottom:279.158560pt;}
.y9a_c01442{bottom:306.721333pt;}
.y9b_c01442{bottom:307.418309pt;}
.y9c_c01442{bottom:308.587605pt;}
.y9d_c01442{bottom:309.054277pt;}
.y9e_c01442{bottom:309.768597pt;}
.y9f_c01442{bottom:310.690437pt;}
.ya0_c01442{bottom:311.865077pt;}
.ya1_c01442{bottom:312.219733pt;}
.ya2_c01442{bottom:312.587381pt;}
.y93_c01442{bottom:338.640019pt;}
.y94_c01442{bottom:339.483992pt;}
.y95_c01442{bottom:340.276336pt;}
.y96_c01442{bottom:340.830969pt;}
.y97_c01442{bottom:342.178943pt;}
.y98_c01442{bottom:343.145665pt;}
.y99_c01442{bottom:343.560276pt;}
.y2_c01442{bottom:363.473333pt;}
.y8a_c01442{bottom:370.321333pt;}
.y8b_c01442{bottom:371.377275pt;}
.y8c_c01442{bottom:371.913136pt;}
.y8d_c01442{bottom:372.351728pt;}
.y8e_c01442{bottom:373.631703pt;}
.y8f_c01442{bottom:373.845968pt;}
.y90_c01442{bottom:374.271155pt;}
.y91_c01442{bottom:375.131736pt;}
.y92_c01442{bottom:375.767991pt;}
.y89_c01442{bottom:402.126307pt;}
.y80_c01442{bottom:433.678067pt;}
.y81_c01442{bottom:434.256273pt;}
.y82_c01442{bottom:434.942347pt;}
.y83_c01442{bottom:435.417900pt;}
.y84_c01442{bottom:436.002113pt;}
.y85_c01442{bottom:436.341940pt;}
.y86_c01442{bottom:437.758513pt;}
.y87_c01442{bottom:438.689393pt;}
.y88_c01442{bottom:439.509940pt;}
.y77_c01442{bottom:464.162667pt;}
.y78_c01442{bottom:465.402327pt;}
.y79_c01442{bottom:466.768447pt;}
.y7a_c01442{bottom:467.374207pt;}
.y7b_c01442{bottom:468.529847pt;}
.y7c_c01442{bottom:469.123567pt;}
.y7d_c01442{bottom:470.419527pt;}
.y7e_c01442{bottom:470.859387pt;}
.y7f_c01442{bottom:471.305947pt;}
.y76_c01442{bottom:498.718840pt;}
.y75_c01442{bottom:498.718853pt;}
.y6c_c01442{bottom:529.681333pt;}
.y6d_c01442{bottom:530.535813pt;}
.y6e_c01442{bottom:531.416707pt;}
.y6f_c01442{bottom:532.103147pt;}
.y70_c01442{bottom:532.585600pt;}
.y71_c01442{bottom:533.363307pt;}
.y72_c01442{bottom:533.759387pt;}
.y73_c01442{bottom:534.337787pt;}
.y74_c01442{bottom:534.728893pt;}
.y6a_c01442{bottom:561.614700pt;}
.y69_c01442{bottom:561.615160pt;}
.y6b_c01442{bottom:561.615173pt;}
.y5f_c01442{bottom:591.599133pt;}
.y60_c01442{bottom:592.546820pt;}
.y61_c01442{bottom:593.476867pt;}
.y62_c01442{bottom:593.919167pt;}
.y63_c01442{bottom:595.343640pt;}
.y64_c01442{bottom:595.955447pt;}
.y65_c01442{bottom:596.431060pt;}
.y66_c01442{bottom:597.049427pt;}
.y67_c01442{bottom:597.506127pt;}
.y68_c01442{bottom:598.772693pt;}
.y57_c01442{bottom:622.802667pt;}
.y58_c01442{bottom:624.238967pt;}
.y59_c01442{bottom:625.840507pt;}
.y5a_c01442{bottom:626.708227pt;}
.y5b_c01442{bottom:627.746107pt;}
.y5c_c01442{bottom:628.908447pt;}
.y5d_c01442{bottom:629.333787pt;}
.y5e_c01442{bottom:630.082447pt;}
.y56_c01442{bottom:651.213720pt;}
.y4c_c01442{bottom:686.158960pt;}
.y4d_c01442{bottom:686.979005pt;}
.y4e_c01442{bottom:687.408619pt;}
.y4f_c01442{bottom:687.792275pt;}
.y50_c01442{bottom:689.459040pt;}
.y51_c01442{bottom:690.396760pt;}
.y52_c01442{bottom:690.944533pt;}
.y53_c01442{bottom:691.492157pt;}
.y54_c01442{bottom:692.432920pt;}
.y55_c01442{bottom:693.273499pt;}
.y43_c01442{bottom:717.602667pt;}
.y44_c01442{bottom:718.953349pt;}
.y45_c01442{bottom:720.314205pt;}
.y46_c01442{bottom:720.989733pt;}
.y47_c01442{bottom:721.947763pt;}
.y48_c01442{bottom:723.045904pt;}
.y49_c01442{bottom:723.580611pt;}
.y4a_c01442{bottom:724.148675pt;}
.y4b_c01442{bottom:725.092797pt;}
.y3b_c01442{bottom:750.242667pt;}
.y3c_c01442{bottom:750.700437pt;}
.y3d_c01442{bottom:751.487424pt;}
.y3e_c01442{bottom:752.116544pt;}
.y3f_c01442{bottom:753.225664pt;}
.y40_c01442{bottom:754.606507pt;}
.y41_c01442{bottom:755.531819pt;}
.y42_c01442{bottom:755.992981pt;}
.y3a_c01442{bottom:786.116767pt;}
.y39_c01442{bottom:786.117133pt;}
.y33_c01442{bottom:813.530313pt;}
.y34_c01442{bottom:814.337920pt;}
.y35_c01442{bottom:814.827253pt;}
.y36_c01442{bottom:815.496300pt;}
.y37_c01442{bottom:816.037560pt;}
.y38_c01442{bottom:816.651740pt;}
.y2a_c01442{bottom:844.562667pt;}
.y2b_c01442{bottom:845.621327pt;}
.y2c_c01442{bottom:846.790767pt;}
.y2d_c01442{bottom:847.637327pt;}
.y2e_c01442{bottom:848.382707pt;}
.y2f_c01442{bottom:849.099287pt;}
.y30_c01442{bottom:849.866327pt;}
.y31_c01442{bottom:851.302727pt;}
.y32_c01442{bottom:851.897367pt;}
.y21_c01442{bottom:875.042667pt;}
.y22_c01442{bottom:876.074747pt;}
.y23_c01442{bottom:877.940667pt;}
.y24_c01442{bottom:878.693207pt;}
.y25_c01442{bottom:879.701687pt;}
.y26_c01442{bottom:880.871007pt;}
.y27_c01442{bottom:881.429587pt;}
.y28_c01442{bottom:881.901407pt;}
.y29_c01442{bottom:882.916607pt;}
.y1c_c01442{bottom:907.919753pt;}
.y1d_c01442{bottom:908.409087pt;}
.y1e_c01442{bottom:909.743640pt;}
.y1f_c01442{bottom:910.227353pt;}
.y20_c01442{bottom:911.723693pt;}
.y12_c01442{bottom:938.402667pt;}
.y13_c01442{bottom:939.842507pt;}
.y14_c01442{bottom:941.297067pt;}
.y15_c01442{bottom:942.028047pt;}
.y16_c01442{bottom:943.208447pt;}
.y17_c01442{bottom:943.785027pt;}
.y18_c01442{bottom:944.220787pt;}
.y19_c01442{bottom:945.102147pt;}
.y1a_c01442{bottom:945.538507pt;}
.y1b_c01442{bottom:945.974067pt;}
.y10_c01442{bottom:971.748008pt;}
.yf_c01442{bottom:971.748433pt;}
.y11_c01442{bottom:971.748560pt;}
.y1_c01442{bottom:996.710667pt;}
.y4_c01442{bottom:1002.722667pt;}
.y5_c01442{bottom:1003.970528pt;}
.y6_c01442{bottom:1004.610232pt;}
.y7_c01442{bottom:1005.742411pt;}
.y8_c01442{bottom:1006.129741pt;}
.y9_c01442{bottom:1007.155927pt;}
.ya_c01442{bottom:1007.390516pt;}
.yb_c01442{bottom:1007.787657pt;}
.yc_c01442{bottom:1008.562648pt;}
.yd_c01442{bottom:1009.041031pt;}
.ye_c01442{bottom:1009.565191pt;}
.y3_c01442{bottom:1059.945333pt;}
.h13_c01442{height:42.669739pt;}
.he_c01442{height:48.002400pt;}
.h10_c01442{height:58.673266pt;}
.h14_c01442{height:64.000000pt;}
.h11_c01442{height:64.003872pt;}
.h7_c01442{height:64.007200pt;}
.h8_c01442{height:64.008191pt;}
.h15_c01442{height:69.333333pt;}
.hd_c01442{height:69.336800pt;}
.h12_c01442{height:69.338325pt;}
.h5_c01442{height:69.339192pt;}
.h9_c01442{height:69.340128pt;}
.h6_c01442{height:69.341133pt;}
.h2_c01442{height:74.666667pt;}
.hf_c01442{height:74.675066pt;}
.h3_c01442{height:80.000000pt;}
.ha_c01442{height:80.007840pt;}
.h4_c01442{height:90.674328pt;}
.hb_c01442{height:90.675552pt;}
.hc_c01442{height:90.676866pt;}
.h0_c01442{height:1121.280000pt;}
.h1_c01442{height:1121.333333pt;}
.w0_c01442{width:810.666667pt;}
.x0_c01442{left:0.000000pt;}
.x1_c01442{left:107.280000pt;}
.x2_c01442{left:115.200000pt;}
.x5_c01442{left:203.934667pt;}
.x13_c01442{left:205.165333pt;}
.x3b_c01442{left:217.394667pt;}
.x4c_c01442{left:219.321333pt;}
.x66_c01442{left:230.852000pt;}
.x75_c01442{left:232.225333pt;}
.x87_c01442{left:233.450309pt;}
.x8e_c01442{left:234.648000pt;}
.x10_c01442{left:251.045224pt;}
.x1b_c01442{left:252.461113pt;}
.x43_c01442{left:254.815459pt;}
.x54_c01442{left:257.251147pt;}
.x74_c01442{left:258.964660pt;}
.x6e_c01442{left:260.075740pt;}
.x8c_c01442{left:261.360000pt;}
.x2d_c01442{left:264.686807pt;}
.x20_c01442{left:274.446667pt;}
.x1c_c01442{left:281.260253pt;}
.x65_c01442{left:286.805587pt;}
.x5c_c01442{left:288.967947pt;}
.x88_c01442{left:292.030235pt;}
.x34_c01442{left:293.732000pt;}
.x6_c01442{left:299.924000pt;}
.x11_c01442{left:300.969665pt;}
.x5e_c01442{left:305.653333pt;}
.x6f_c01442{left:308.313920pt;}
.x8f_c01442{left:311.208000pt;}
.x2e_c01442{left:312.214720pt;}
.x3c_c01442{left:313.872000pt;}
.x4d_c01442{left:315.074667pt;}
.x55_c01442{left:316.518267pt;}
.x7d_c01442{left:319.847104pt;}
.x25_c01442{left:322.997333pt;}
.x5d_c01442{left:325.452147pt;}
.x12_c01442{left:328.811696pt;}
.x8d_c01442{left:339.600000pt;}
.x2f_c01442{left:341.013860pt;}
.x35_c01442{left:342.918667pt;}
.x44_c01442{left:344.076792pt;}
.x7_c01442{left:349.132000pt;}
.x1d_c01442{left:359.739227pt;}
.x3_c01442{left:365.520000pt;}
.x45_c01442{left:371.480792pt;}
.x56_c01442{left:374.609387pt;}
.x76_c01442{left:376.934667pt;}
.x86_c01442{left:377.935488pt;}
.x30_c01442{left:380.371347pt;}
.x36_c01442{left:382.238667pt;}
.x4_c01442{left:386.160000pt;}
.x81_c01442{left:387.274667pt;}
.x1e_c01442{left:388.163700pt;}
.x5f_c01442{left:393.742667pt;}
.x14_c01442{left:398.125333pt;}
.x26_c01442{left:400.960000pt;}
.x57_c01442{left:402.228967pt;}
.x67_c01442{left:404.570667pt;}
.x90_c01442{left:408.669333pt;}
.x3d_c01442{left:411.076000pt;}
.x31_c01442{left:412.187720pt;}
.x77_c01442{left:416.806667pt;}
.x4e_c01442{left:421.844000pt;}
.x82_c01442{left:426.164000pt;}
.x8_c01442{left:436.222667pt;}
.x68_c01442{left:444.954667pt;}
.x15_c01442{left:446.857333pt;}
.x21_c01442{left:449.010667pt;}
.x37_c01442{left:451.558667pt;}
.x70_c01442{left:453.776460pt;}
.x27_c01442{left:457.397333pt;}
.x3e_c01442{left:459.328000pt;}
.x60_c01442{left:462.386667pt;}
.x32_c01442{left:463.463960pt;}
.x9_c01442{left:466.017333pt;}
.x1f_c01442{left:476.183727pt;}
.x4f_c01442{left:479.692000pt;}
.x71_c01442{left:482.121740pt;}
.x83_c01442{left:485.690667pt;}
.x91_c01442{left:487.404000pt;}
.x46_c01442{left:490.535459pt;}
.x89_c01442{left:492.462768pt;}
.x28_c01442{left:507.089333pt;}
.x61_c01442{left:510.632000pt;}
.x7e_c01442{left:512.351420pt;}
.x22_c01442{left:516.242667pt;}
.x69_c01442{left:521.997333pt;}
.x16_c01442{left:525.550667pt;}
.x33_c01442{left:526.831553pt;}
.x3f_c01442{left:527.758667pt;}
.x58_c01442{left:529.445713pt;}
.x78_c01442{left:533.168000pt;}
.x38_c01442{left:537.861333pt;}
.xa_c01442{left:544.954667pt;}
.x50_c01442{left:548.884000pt;}
.x79_c01442{left:552.646667pt;}
.x29_c01442{left:554.861333pt;}
.x47_c01442{left:557.515459pt;}
.x59_c01442{left:559.197273pt;}
.x6a_c01442{left:561.578667pt;}
.xb_c01442{left:563.000000pt;}
.x17_c01442{left:563.989333pt;}
.x7f_c01442{left:581.445147pt;}
.x62_c01442{left:588.402667pt;}
.x7a_c01442{left:591.300000pt;}
.xc_c01442{left:593.549333pt;}
.x39_c01442{left:595.693333pt;}
.x48_c01442{left:596.642125pt;}
.x5a_c01442{left:597.843360pt;}
.x72_c01442{left:600.209727pt;}
.x2a_c01442{left:605.997333pt;}
.x80_c01442{left:611.014831pt;}
.x8a_c01442{left:612.218555pt;}
.x3a_c01442{left:624.516000pt;}
.x51_c01442{left:626.373333pt;}
.x63_c01442{left:628.010667pt;}
.x23_c01442{left:631.436000pt;}
.x92_c01442{left:632.585333pt;}
.x49_c01442{left:635.758125pt;}
.x40_c01442{left:644.390667pt;}
.x6b_c01442{left:647.976000pt;}
.x18_c01442{left:651.797333pt;}
.xd_c01442{left:653.164000pt;}
.x52_c01442{left:654.729333pt;}
.x84_c01442{left:660.397333pt;}
.x24_c01442{left:662.890667pt;}
.x7b_c01442{left:669.534667pt;}
.x6c_c01442{left:677.300000pt;}
.x8b_c01442{left:679.650272pt;}
.x19_c01442{left:680.888000pt;}
.x41_c01442{left:684.966667pt;}
.xe_c01442{left:689.962667pt;}
.x2b_c01442{left:701.757333pt;}
.x4a_c01442{left:702.955459pt;}
.x53_c01442{left:704.640000pt;}
.x5b_c01442{left:705.615093pt;}
.x6d_c01442{left:707.070667pt;}
.x1a_c01442{left:709.925333pt;}
.x85_c01442{left:720.589333pt;}
.x64_c01442{left:724.961333pt;}
.x7c_c01442{left:727.376000pt;}
.xf_c01442{left:730.282667pt;}
.x2c_c01442{left:741.400000pt;}
.x73_c01442{left:746.133620pt;}
.x93_c01442{left:749.196000pt;}
.x42_c01442{left:752.404000pt;}
.x4b_c01442{left:762.996792pt;}
}





/* 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_c01443 {
    display:none;
  }
  .loading-indicator_c01443.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01443 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_c01443 { 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_c01443" -> "#page-container .classname_c01443")
 */
.pf_c01443 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01443 { /* 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_c01443.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01443 { /* 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_c01443 { /* 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_c01443 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01443 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01443 {overflow:visible;}
  }
}
.c_c01443 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01443 { /* 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_c01443:after { /* webkit #35443 */
  content: '';
}
.t_c01443:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01443 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 */
}
.__c01443 { /* 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_c01443 { /* info for Javascript */
  display:none;
}
.l_c01443 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01443 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01443 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01443: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_c01443 {
    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_c01443.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01443.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_c01443 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01443{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01443;src:url('chunks/assets/font_fe3cd3c6b9706b260f6e1774.woff2')format("woff");}.ff1_c01443{font-family:ff1_c01443;line-height:1.000000;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;}
.m0_c01443{transform:matrix(0.219230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219230,0.000000,0.000000,0.250000,0,0);}
.v0_c01443{vertical-align:0.000000px;}
.ls0_c01443{letter-spacing:0.000000px;}
.sc__c01443{text-shadow:none;}
.sc0_c01443{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__c01443{-webkit-text-stroke:0px transparent;}
.sc0_c01443{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01443{word-spacing:0.000000px;}
.fc0_c01443{color:transparent;}
.fs0_c01443{font-size:72.000000px;}
.y0_c01443{bottom:0.000000px;}
.y1_c01443{bottom:612.630000px;}
.h2_c01443{height:72.000000px;}
.h0_c01443{height:1261.440000px;}
.h1_c01443{height:1261.500000px;}
.w0_c01443{width:912.000000px;}
.x0_c01443{left:0.000000px;}
.x1_c01443{left:316.980000px;}
@media print{
.v0_c01443{vertical-align:0.000000pt;}
.ls0_c01443{letter-spacing:0.000000pt;}
.ws0_c01443{word-spacing:0.000000pt;}
.fs0_c01443{font-size:64.000000pt;}
.y0_c01443{bottom:0.000000pt;}
.y1_c01443{bottom:544.560000pt;}
.h2_c01443{height:64.000000pt;}
.h0_c01443{height:1121.280000pt;}
.h1_c01443{height:1121.333333pt;}
.w0_c01443{width:810.666667pt;}
.x0_c01443{left:0.000000pt;}
.x1_c01443{left:281.760000pt;}
}





/* 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_c01444 {
    display:none;
  }
  .loading-indicator_c01444.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01444 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_c01444 { 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_c01444" -> "#page-container .classname_c01444")
 */
.pf_c01444 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01444 { /* 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_c01444.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01444 { /* 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_c01444 { /* 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_c01444 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01444 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01444 {overflow:visible;}
  }
}
.c_c01444 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01444 { /* 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_c01444:after { /* webkit #35443 */
  content: '';
}
.t_c01444:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01444 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 */
}
.__c01444 { /* 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_c01444 { /* info for Javascript */
  display:none;
}
.l_c01444 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01444 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01444 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01444: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_c01444 {
    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_c01444.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01444.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_c01444 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01444{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01444;src:url('chunks/assets/font_c605e72f209fc835e906f064.woff2')format("woff");}.ff1_c01444{font-family:ff1_c01444;line-height:1.000000;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;}
.mdb_c01444{transform:matrix(0.026193,0.000314,-0.003000,0.249982,0,0);-ms-transform:matrix(0.026193,0.000314,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.026193,0.000314,-0.003000,0.249982,0,0);}
.m22_c01444{transform:matrix(0.137153,0.000823,-0.001500,0.249996,0,0);-ms-transform:matrix(0.137153,0.000823,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.137153,0.000823,-0.001500,0.249996,0,0);}
.m4_c01444{transform:matrix(0.141510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141510,0.000000,0.000000,0.250000,0,0);}
.m0_c01444{transform:matrix(0.171025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171025,0.000000,0.000000,0.250000,0,0);}
.mcb_c01444{transform:matrix(0.182176,0.001822,-0.002500,0.249988,0,0);-ms-transform:matrix(0.182176,0.001822,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.182176,0.001822,-0.002500,0.249988,0,0);}
.m4c_c01444{transform:matrix(0.187485,0.001312,-0.001750,0.249994,0,0);-ms-transform:matrix(0.187485,0.001312,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.187485,0.001312,-0.001750,0.249994,0,0);}
.m50_c01444{transform:matrix(0.191210,0.001338,-0.001750,0.249994,0,0);-ms-transform:matrix(0.191210,0.001338,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.191210,0.001338,-0.001750,0.249994,0,0);}
.m75_c01444{transform:matrix(0.192087,0.001729,-0.002250,0.249990,0,0);-ms-transform:matrix(0.192087,0.001729,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.192087,0.001729,-0.002250,0.249990,0,0);}
.mb1_c01444{transform:matrix(0.196034,0.001568,-0.002000,0.249992,0,0);-ms-transform:matrix(0.196034,0.001568,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.196034,0.001568,-0.002000,0.249992,0,0);}
.m4d_c01444{transform:matrix(0.197380,0.001382,-0.001750,0.249994,0,0);-ms-transform:matrix(0.197380,0.001382,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.197380,0.001382,-0.001750,0.249994,0,0);}
.m4f_c01444{transform:matrix(0.199320,0.001395,-0.001750,0.249994,0,0);-ms-transform:matrix(0.199320,0.001395,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.199320,0.001395,-0.001750,0.249994,0,0);}
.m2c_c01444{transform:matrix(0.200766,0.001205,-0.001500,0.249996,0,0);-ms-transform:matrix(0.200766,0.001205,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.200766,0.001205,-0.001500,0.249996,0,0);}
.m9e_c01444{transform:matrix(0.200874,0.001607,-0.002000,0.249992,0,0);-ms-transform:matrix(0.200874,0.001607,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.200874,0.001607,-0.002000,0.249992,0,0);}
.m1d_c01444{transform:matrix(0.201965,0.001414,-0.001750,0.249994,0,0);-ms-transform:matrix(0.201965,0.001414,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.201965,0.001414,-0.001750,0.249994,0,0);}
.md0_c01444{transform:matrix(0.202285,0.002023,-0.002500,0.249988,0,0);-ms-transform:matrix(0.202285,0.002023,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.202285,0.002023,-0.002500,0.249988,0,0);}
.m85_c01444{transform:matrix(0.202730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202730,0.000000,0.000000,0.250000,0,0);}
.m9f_c01444{transform:matrix(0.203798,0.001630,-0.002000,0.249992,0,0);-ms-transform:matrix(0.203798,0.001630,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.203798,0.001630,-0.002000,0.249992,0,0);}
.ma1_c01444{transform:matrix(0.204118,0.001633,-0.002000,0.249992,0,0);-ms-transform:matrix(0.204118,0.001633,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.204118,0.001633,-0.002000,0.249992,0,0);}
.m56_c01444{transform:matrix(0.206400,0.001445,-0.001750,0.249994,0,0);-ms-transform:matrix(0.206400,0.001445,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.206400,0.001445,-0.001750,0.249994,0,0);}
.ma2_c01444{transform:matrix(0.206818,0.001655,-0.002000,0.249992,0,0);-ms-transform:matrix(0.206818,0.001655,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.206818,0.001655,-0.002000,0.249992,0,0);}
.m52_c01444{transform:matrix(0.206865,0.001448,-0.001750,0.249994,0,0);-ms-transform:matrix(0.206865,0.001448,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.206865,0.001448,-0.001750,0.249994,0,0);}
.m91_c01444{transform:matrix(0.207445,0.001452,-0.001750,0.249994,0,0);-ms-transform:matrix(0.207445,0.001452,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.207445,0.001452,-0.001750,0.249994,0,0);}
.m48_c01444{transform:matrix(0.208011,0.001248,-0.001500,0.249996,0,0);-ms-transform:matrix(0.208011,0.001248,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.208011,0.001248,-0.001500,0.249996,0,0);}
.m7a_c01444{transform:matrix(0.208277,0.001874,-0.002250,0.249990,0,0);-ms-transform:matrix(0.208277,0.001874,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.208277,0.001874,-0.002250,0.249990,0,0);}
.m6f_c01444{transform:matrix(0.209537,0.001886,-0.002250,0.249990,0,0);-ms-transform:matrix(0.209537,0.001886,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.209537,0.001886,-0.002250,0.249990,0,0);}
.m9a_c01444{transform:matrix(0.209883,0.001679,-0.002000,0.249992,0,0);-ms-transform:matrix(0.209883,0.001679,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.209883,0.001679,-0.002000,0.249992,0,0);}
.mce_c01444{transform:matrix(0.209925,0.002099,-0.002500,0.249988,0,0);-ms-transform:matrix(0.209925,0.002099,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.209925,0.002099,-0.002500,0.249988,0,0);}
.m55_c01444{transform:matrix(0.209930,0.001470,-0.001750,0.249994,0,0);-ms-transform:matrix(0.209930,0.001470,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.209930,0.001470,-0.001750,0.249994,0,0);}
.m89_c01444{transform:matrix(0.210395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210395,0.000000,0.000000,0.250000,0,0);}
.mc6_c01444{transform:matrix(0.210694,0.002107,-0.002500,0.249988,0,0);-ms-transform:matrix(0.210694,0.002107,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.210694,0.002107,-0.002500,0.249988,0,0);}
.ma8_c01444{transform:matrix(0.211208,0.001690,-0.002000,0.249992,0,0);-ms-transform:matrix(0.211208,0.001690,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.211208,0.001690,-0.002000,0.249992,0,0);}
.m6b_c01444{transform:matrix(0.211416,0.001903,-0.002250,0.249990,0,0);-ms-transform:matrix(0.211416,0.001903,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.211416,0.001903,-0.002250,0.249990,0,0);}
.mc3_c01444{transform:matrix(0.211859,0.002119,-0.002500,0.249988,0,0);-ms-transform:matrix(0.211859,0.002119,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.211859,0.002119,-0.002500,0.249988,0,0);}
.mac_c01444{transform:matrix(0.211863,0.001695,-0.002000,0.249992,0,0);-ms-transform:matrix(0.211863,0.001695,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.211863,0.001695,-0.002000,0.249992,0,0);}
.m20_c01444{transform:matrix(0.212295,0.001486,-0.001750,0.249994,0,0);-ms-transform:matrix(0.212295,0.001486,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.212295,0.001486,-0.001750,0.249994,0,0);}
.m53_c01444{transform:matrix(0.212485,0.001487,-0.001750,0.249994,0,0);-ms-transform:matrix(0.212485,0.001487,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.212485,0.001487,-0.001750,0.249994,0,0);}
.m5b_c01444{transform:matrix(0.212565,0.001488,-0.001750,0.249994,0,0);-ms-transform:matrix(0.212565,0.001488,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.212565,0.001488,-0.001750,0.249994,0,0);}
.m4e_c01444{transform:matrix(0.212820,0.001490,-0.001750,0.249994,0,0);-ms-transform:matrix(0.212820,0.001490,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.212820,0.001490,-0.001750,0.249994,0,0);}
.m51_c01444{transform:matrix(0.213355,0.001493,-0.001750,0.249994,0,0);-ms-transform:matrix(0.213355,0.001493,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.213355,0.001493,-0.001750,0.249994,0,0);}
.m36_c01444{transform:matrix(0.213801,0.001283,-0.001500,0.249996,0,0);-ms-transform:matrix(0.213801,0.001283,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.213801,0.001283,-0.001500,0.249996,0,0);}
.m1e_c01444{transform:matrix(0.213995,0.001498,-0.001750,0.249994,0,0);-ms-transform:matrix(0.213995,0.001498,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.213995,0.001498,-0.001750,0.249994,0,0);}
.m90_c01444{transform:matrix(0.215055,0.001505,-0.001750,0.249994,0,0);-ms-transform:matrix(0.215055,0.001505,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.215055,0.001505,-0.001750,0.249994,0,0);}
.m2d_c01444{transform:matrix(0.215701,0.001294,-0.001500,0.249996,0,0);-ms-transform:matrix(0.215701,0.001294,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.215701,0.001294,-0.001500,0.249996,0,0);}
.m2_c01444{transform:matrix(0.216095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216095,0.000000,0.000000,0.250000,0,0);}
.m78_c01444{transform:matrix(0.216751,0.001951,-0.002250,0.249990,0,0);-ms-transform:matrix(0.216751,0.001951,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.216751,0.001951,-0.002250,0.249990,0,0);}
.m27_c01444{transform:matrix(0.217511,0.001305,-0.001500,0.249996,0,0);-ms-transform:matrix(0.217511,0.001305,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.217511,0.001305,-0.001500,0.249996,0,0);}
.m72_c01444{transform:matrix(0.217581,0.001958,-0.002250,0.249990,0,0);-ms-transform:matrix(0.217581,0.001958,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.217581,0.001958,-0.002250,0.249990,0,0);}
.m46_c01444{transform:matrix(0.217766,0.001307,-0.001500,0.249996,0,0);-ms-transform:matrix(0.217766,0.001307,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.217766,0.001307,-0.001500,0.249996,0,0);}
.m7e_c01444{transform:matrix(0.218246,0.001964,-0.002250,0.249990,0,0);-ms-transform:matrix(0.218246,0.001964,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.218246,0.001964,-0.002250,0.249990,0,0);}
.m3c_c01444{transform:matrix(0.218251,0.001310,-0.001500,0.249996,0,0);-ms-transform:matrix(0.218251,0.001310,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.218251,0.001310,-0.001500,0.249996,0,0);}
.m4a_c01444{transform:matrix(0.218660,0.001531,-0.001750,0.249994,0,0);-ms-transform:matrix(0.218660,0.001531,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.218660,0.001531,-0.001750,0.249994,0,0);}
.m3a_c01444{transform:matrix(0.218936,0.001314,-0.001500,0.249996,0,0);-ms-transform:matrix(0.218936,0.001314,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.218936,0.001314,-0.001500,0.249996,0,0);}
.m44_c01444{transform:matrix(0.219046,0.001314,-0.001500,0.249996,0,0);-ms-transform:matrix(0.219046,0.001314,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.219046,0.001314,-0.001500,0.249996,0,0);}
.m88_c01444{transform:matrix(0.220130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220130,0.000000,0.000000,0.250000,0,0);}
.m1f_c01444{transform:matrix(0.220335,0.001542,-0.001750,0.249994,0,0);-ms-transform:matrix(0.220335,0.001542,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.220335,0.001542,-0.001750,0.249994,0,0);}
.mcd_c01444{transform:matrix(0.221669,0.002217,-0.002500,0.249988,0,0);-ms-transform:matrix(0.221669,0.002217,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.221669,0.002217,-0.002500,0.249988,0,0);}
.m6e_c01444{transform:matrix(0.222136,0.001999,-0.002250,0.249990,0,0);-ms-transform:matrix(0.222136,0.001999,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.222136,0.001999,-0.002250,0.249990,0,0);}
.m32_c01444{transform:matrix(0.222141,0.001333,-0.001500,0.249996,0,0);-ms-transform:matrix(0.222141,0.001333,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.222141,0.001333,-0.001500,0.249996,0,0);}
.m8b_c01444{transform:matrix(0.222160,0.001555,-0.001750,0.249994,0,0);-ms-transform:matrix(0.222160,0.001555,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.222160,0.001555,-0.001750,0.249994,0,0);}
.m4b_c01444{transform:matrix(0.222290,0.001556,-0.001750,0.249994,0,0);-ms-transform:matrix(0.222290,0.001556,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.222290,0.001556,-0.001750,0.249994,0,0);}
.m59_c01444{transform:matrix(0.222730,0.001559,-0.001750,0.249994,0,0);-ms-transform:matrix(0.222730,0.001559,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.222730,0.001559,-0.001750,0.249994,0,0);}
.m34_c01444{transform:matrix(0.222841,0.001337,-0.001500,0.249996,0,0);-ms-transform:matrix(0.222841,0.001337,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.222841,0.001337,-0.001500,0.249996,0,0);}
.mbc_c01444{transform:matrix(0.223027,0.001115,-0.001250,0.249997,0,0);-ms-transform:matrix(0.223027,0.001115,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.223027,0.001115,-0.001250,0.249997,0,0);}
.maf_c01444{transform:matrix(0.224063,0.001793,-0.002000,0.249992,0,0);-ms-transform:matrix(0.224063,0.001793,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.224063,0.001793,-0.002000,0.249992,0,0);}
.me_c01444{transform:matrix(0.225839,0.001581,-0.001750,0.249994,0,0);-ms-transform:matrix(0.225839,0.001581,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.225839,0.001581,-0.001750,0.249994,0,0);}
.ma0_c01444{transform:matrix(0.225983,0.001808,-0.002000,0.249992,0,0);-ms-transform:matrix(0.225983,0.001808,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.225983,0.001808,-0.002000,0.249992,0,0);}
.m70_c01444{transform:matrix(0.226346,0.002037,-0.002250,0.249990,0,0);-ms-transform:matrix(0.226346,0.002037,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.226346,0.002037,-0.002250,0.249990,0,0);}
.m21_c01444{transform:matrix(0.226594,0.001586,-0.001750,0.249994,0,0);-ms-transform:matrix(0.226594,0.001586,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.226594,0.001586,-0.001750,0.249994,0,0);}
.mb6_c01444{transform:matrix(0.226747,0.001134,-0.001250,0.249997,0,0);-ms-transform:matrix(0.226747,0.001134,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.226747,0.001134,-0.001250,0.249997,0,0);}
.mbe_c01444{transform:matrix(0.227747,0.001139,-0.001250,0.249997,0,0);-ms-transform:matrix(0.227747,0.001139,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.227747,0.001139,-0.001250,0.249997,0,0);}
.m82_c01444{transform:matrix(0.227940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227940,0.000000,0.000000,0.250000,0,0);}
.m1c_c01444{transform:matrix(0.228309,0.001598,-0.001750,0.249994,0,0);-ms-transform:matrix(0.228309,0.001598,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.228309,0.001598,-0.001750,0.249994,0,0);}
.m2e_c01444{transform:matrix(0.228611,0.001372,-0.001500,0.249996,0,0);-ms-transform:matrix(0.228611,0.001372,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.228611,0.001372,-0.001500,0.249996,0,0);}
.m83_c01444{transform:matrix(0.228635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228635,0.000000,0.000000,0.250000,0,0);}
.m1b_c01444{transform:matrix(0.229294,0.001605,-0.001750,0.249994,0,0);-ms-transform:matrix(0.229294,0.001605,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.229294,0.001605,-0.001750,0.249994,0,0);}
.m3f_c01444{transform:matrix(0.229326,0.001376,-0.001500,0.249996,0,0);-ms-transform:matrix(0.229326,0.001376,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.229326,0.001376,-0.001500,0.249996,0,0);}
.ma3_c01444{transform:matrix(0.229718,0.001838,-0.002000,0.249992,0,0);-ms-transform:matrix(0.229718,0.001838,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.229718,0.001838,-0.002000,0.249992,0,0);}
.mbf_c01444{transform:matrix(0.229797,0.001149,-0.001250,0.249997,0,0);-ms-transform:matrix(0.229797,0.001149,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.229797,0.001149,-0.001250,0.249997,0,0);}
.mae_c01444{transform:matrix(0.229923,0.001839,-0.002000,0.249992,0,0);-ms-transform:matrix(0.229923,0.001839,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.229923,0.001839,-0.002000,0.249992,0,0);}
.m61_c01444{transform:matrix(0.229969,0.001610,-0.001750,0.249994,0,0);-ms-transform:matrix(0.229969,0.001610,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.229969,0.001610,-0.001750,0.249994,0,0);}
.m57_c01444{transform:matrix(0.230009,0.001610,-0.001750,0.249994,0,0);-ms-transform:matrix(0.230009,0.001610,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.230009,0.001610,-0.001750,0.249994,0,0);}
.m1a_c01444{transform:matrix(0.230064,0.001610,-0.001750,0.249994,0,0);-ms-transform:matrix(0.230064,0.001610,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.230064,0.001610,-0.001750,0.249994,0,0);}
.m63_c01444{transform:matrix(0.230279,0.001612,-0.001750,0.249994,0,0);-ms-transform:matrix(0.230279,0.001612,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.230279,0.001612,-0.001750,0.249994,0,0);}
.m9d_c01444{transform:matrix(0.230373,0.001843,-0.002000,0.249992,0,0);-ms-transform:matrix(0.230373,0.001843,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.230373,0.001843,-0.002000,0.249992,0,0);}
.m2a_c01444{transform:matrix(0.231401,0.001388,-0.001500,0.249996,0,0);-ms-transform:matrix(0.231401,0.001388,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.231401,0.001388,-0.001500,0.249996,0,0);}
.m9c_c01444{transform:matrix(0.231458,0.001852,-0.002000,0.249992,0,0);-ms-transform:matrix(0.231458,0.001852,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.231458,0.001852,-0.002000,0.249992,0,0);}
.m96_c01444{transform:matrix(0.231634,0.001621,-0.001750,0.249994,0,0);-ms-transform:matrix(0.231634,0.001621,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.231634,0.001621,-0.001750,0.249994,0,0);}
.m9b_c01444{transform:matrix(0.231973,0.001856,-0.002000,0.249992,0,0);-ms-transform:matrix(0.231973,0.001856,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.231973,0.001856,-0.002000,0.249992,0,0);}
.m99_c01444{transform:matrix(0.232148,0.001857,-0.002000,0.249992,0,0);-ms-transform:matrix(0.232148,0.001857,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.232148,0.001857,-0.002000,0.249992,0,0);}
.m6c_c01444{transform:matrix(0.232496,0.002092,-0.002250,0.249990,0,0);-ms-transform:matrix(0.232496,0.002092,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.232496,0.002092,-0.002250,0.249990,0,0);}
.m7f_c01444{transform:matrix(0.233386,0.002100,-0.002250,0.249990,0,0);-ms-transform:matrix(0.233386,0.002100,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.233386,0.002100,-0.002250,0.249990,0,0);}
.m58_c01444{transform:matrix(0.233629,0.001635,-0.001750,0.249994,0,0);-ms-transform:matrix(0.233629,0.001635,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.233629,0.001635,-0.001750,0.249994,0,0);}
.mc2_c01444{transform:matrix(0.233768,0.002338,-0.002500,0.249988,0,0);-ms-transform:matrix(0.233768,0.002338,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.233768,0.002338,-0.002500,0.249988,0,0);}
.m28_c01444{transform:matrix(0.233871,0.001403,-0.001500,0.249996,0,0);-ms-transform:matrix(0.233871,0.001403,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.233871,0.001403,-0.001500,0.249996,0,0);}
.mbd_c01444{transform:matrix(0.234797,0.001174,-0.001250,0.249997,0,0);-ms-transform:matrix(0.234797,0.001174,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.234797,0.001174,-0.001250,0.249997,0,0);}
.m8c_c01444{transform:matrix(0.235664,0.001650,-0.001750,0.249994,0,0);-ms-transform:matrix(0.235664,0.001650,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.235664,0.001650,-0.001750,0.249994,0,0);}
.m7c_c01444{transform:matrix(0.236215,0.002126,-0.002250,0.249990,0,0);-ms-transform:matrix(0.236215,0.002126,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.236215,0.002126,-0.002250,0.249990,0,0);}
.m86_c01444{transform:matrix(0.236290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236290,0.000000,0.000000,0.250000,0,0);}
.ma7_c01444{transform:matrix(0.236472,0.001892,-0.002000,0.249992,0,0);-ms-transform:matrix(0.236472,0.001892,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.236472,0.001892,-0.002000,0.249992,0,0);}
.m87_c01444{transform:matrix(0.236640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236640,0.000000,0.000000,0.250000,0,0);}
.m19_c01444{transform:matrix(0.237144,0.001660,-0.001750,0.249994,0,0);-ms-transform:matrix(0.237144,0.001660,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.237144,0.001660,-0.001750,0.249994,0,0);}
.m12_c01444{transform:matrix(0.237829,0.001665,-0.001750,0.249994,0,0);-ms-transform:matrix(0.237829,0.001665,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.237829,0.001665,-0.001750,0.249994,0,0);}
.m3b_c01444{transform:matrix(0.237916,0.001427,-0.001500,0.249996,0,0);-ms-transform:matrix(0.237916,0.001427,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.237916,0.001427,-0.001500,0.249996,0,0);}
.m8a_c01444{transform:matrix(0.237970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237970,0.000000,0.000000,0.250000,0,0);}
.m7b_c01444{transform:matrix(0.238005,0.002142,-0.002250,0.249990,0,0);-ms-transform:matrix(0.238005,0.002142,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.238005,0.002142,-0.002250,0.249990,0,0);}
.m84_c01444{transform:matrix(0.238675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238675,0.000000,0.000000,0.250000,0,0);}
.maa_c01444{transform:matrix(0.239147,0.001913,-0.002000,0.249992,0,0);-ms-transform:matrix(0.239147,0.001913,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.239147,0.001913,-0.002000,0.249992,0,0);}
.m5d_c01444{transform:matrix(0.239374,0.001676,-0.001750,0.249994,0,0);-ms-transform:matrix(0.239374,0.001676,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.239374,0.001676,-0.001750,0.249994,0,0);}
.m39_c01444{transform:matrix(0.239846,0.001439,-0.001500,0.249996,0,0);-ms-transform:matrix(0.239846,0.001439,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.239846,0.001439,-0.001500,0.249996,0,0);}
.m11_c01444{transform:matrix(0.239904,0.001679,-0.001750,0.249994,0,0);-ms-transform:matrix(0.239904,0.001679,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.239904,0.001679,-0.001750,0.249994,0,0);}
.mcf_c01444{transform:matrix(0.240808,0.002408,-0.002500,0.249988,0,0);-ms-transform:matrix(0.240808,0.002408,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.240808,0.002408,-0.002500,0.249988,0,0);}
.m93_c01444{transform:matrix(0.240814,0.001686,-0.001750,0.249994,0,0);-ms-transform:matrix(0.240814,0.001686,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.240814,0.001686,-0.001750,0.249994,0,0);}
.mb0_c01444{transform:matrix(0.240957,0.001928,-0.002000,0.249992,0,0);-ms-transform:matrix(0.240957,0.001928,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.240957,0.001928,-0.002000,0.249992,0,0);}
.m3d_c01444{transform:matrix(0.241176,0.001447,-0.001500,0.249996,0,0);-ms-transform:matrix(0.241176,0.001447,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.241176,0.001447,-0.001500,0.249996,0,0);}
.m43_c01444{transform:matrix(0.241691,0.001450,-0.001500,0.249996,0,0);-ms-transform:matrix(0.241691,0.001450,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.241691,0.001450,-0.001500,0.249996,0,0);}
.m41_c01444{transform:matrix(0.241791,0.001451,-0.001500,0.249996,0,0);-ms-transform:matrix(0.241791,0.001451,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.241791,0.001451,-0.001500,0.249996,0,0);}
.m8f_c01444{transform:matrix(0.241809,0.001693,-0.001750,0.249994,0,0);-ms-transform:matrix(0.241809,0.001693,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.241809,0.001693,-0.001750,0.249994,0,0);}
.m2b_c01444{transform:matrix(0.241811,0.001451,-0.001500,0.249996,0,0);-ms-transform:matrix(0.241811,0.001451,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.241811,0.001451,-0.001500,0.249996,0,0);}
.m65_c01444{transform:matrix(0.242334,0.001696,-0.001750,0.249994,0,0);-ms-transform:matrix(0.242334,0.001696,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.242334,0.001696,-0.001750,0.249994,0,0);}
.mb4_c01444{transform:matrix(0.242337,0.001212,-0.001250,0.249997,0,0);-ms-transform:matrix(0.242337,0.001212,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.242337,0.001212,-0.001250,0.249997,0,0);}
.m25_c01444{transform:matrix(0.242371,0.001454,-0.001500,0.249996,0,0);-ms-transform:matrix(0.242371,0.001454,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.242371,0.001454,-0.001500,0.249996,0,0);}
.mc4_c01444{transform:matrix(0.242498,0.002425,-0.002500,0.249988,0,0);-ms-transform:matrix(0.242498,0.002425,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.242498,0.002425,-0.002500,0.249988,0,0);}
.m94_c01444{transform:matrix(0.242589,0.001698,-0.001750,0.249994,0,0);-ms-transform:matrix(0.242589,0.001698,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.242589,0.001698,-0.001750,0.249994,0,0);}
.m8e_c01444{transform:matrix(0.242809,0.001700,-0.001750,0.249994,0,0);-ms-transform:matrix(0.242809,0.001700,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.242809,0.001700,-0.001750,0.249994,0,0);}
.mad_c01444{transform:matrix(0.242882,0.001943,-0.002000,0.249992,0,0);-ms-transform:matrix(0.242882,0.001943,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.242882,0.001943,-0.002000,0.249992,0,0);}
.mc1_c01444{transform:matrix(0.243038,0.002430,-0.002500,0.249988,0,0);-ms-transform:matrix(0.243038,0.002430,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.243038,0.002430,-0.002500,0.249988,0,0);}
.m8d_c01444{transform:matrix(0.243734,0.001706,-0.001750,0.249994,0,0);-ms-transform:matrix(0.243734,0.001706,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.243734,0.001706,-0.001750,0.249994,0,0);}
.m97_c01444{transform:matrix(0.243944,0.001708,-0.001750,0.249994,0,0);-ms-transform:matrix(0.243944,0.001708,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.243944,0.001708,-0.001750,0.249994,0,0);}
.m81_c01444{transform:matrix(0.244250,0.002198,-0.002250,0.249990,0,0);-ms-transform:matrix(0.244250,0.002198,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.244250,0.002198,-0.002250,0.249990,0,0);}
.ma9_c01444{transform:matrix(0.244512,0.001956,-0.002000,0.249992,0,0);-ms-transform:matrix(0.244512,0.001956,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.244512,0.001956,-0.002000,0.249992,0,0);}
.m35_c01444{transform:matrix(0.244766,0.001469,-0.001500,0.249996,0,0);-ms-transform:matrix(0.244766,0.001469,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.244766,0.001469,-0.001500,0.249996,0,0);}
.m45_c01444{transform:matrix(0.244866,0.001469,-0.001500,0.249996,0,0);-ms-transform:matrix(0.244866,0.001469,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.244866,0.001469,-0.001500,0.249996,0,0);}
.m23_c01444{transform:matrix(0.245046,0.001470,-0.001500,0.249996,0,0);-ms-transform:matrix(0.245046,0.001470,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.245046,0.001470,-0.001500,0.249996,0,0);}
.m79_c01444{transform:matrix(0.245195,0.002207,-0.002250,0.249990,0,0);-ms-transform:matrix(0.245195,0.002207,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.245195,0.002207,-0.002250,0.249990,0,0);}
.m24_c01444{transform:matrix(0.245201,0.001471,-0.001500,0.249996,0,0);-ms-transform:matrix(0.245201,0.001471,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.245201,0.001471,-0.001500,0.249996,0,0);}
.m69_c01444{transform:matrix(0.245375,0.002208,-0.002250,0.249990,0,0);-ms-transform:matrix(0.245375,0.002208,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.245375,0.002208,-0.002250,0.249990,0,0);}
.m30_c01444{transform:matrix(0.245801,0.001475,-0.001500,0.249996,0,0);-ms-transform:matrix(0.245801,0.001475,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.245801,0.001475,-0.001500,0.249996,0,0);}
.mb9_c01444{transform:matrix(0.246192,0.001231,-0.001250,0.249997,0,0);-ms-transform:matrix(0.246192,0.001231,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.246192,0.001231,-0.001250,0.249997,0,0);}
.m33_c01444{transform:matrix(0.246436,0.001479,-0.001500,0.249996,0,0);-ms-transform:matrix(0.246436,0.001479,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.246436,0.001479,-0.001500,0.249996,0,0);}
.m54_c01444{transform:matrix(0.246654,0.001727,-0.001750,0.249994,0,0);-ms-transform:matrix(0.246654,0.001727,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.246654,0.001727,-0.001750,0.249994,0,0);}
.m29_c01444{transform:matrix(0.246701,0.001480,-0.001500,0.249996,0,0);-ms-transform:matrix(0.246701,0.001480,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.246701,0.001480,-0.001500,0.249996,0,0);}
.mc0_c01444{transform:matrix(0.247882,0.001239,-0.001250,0.249997,0,0);-ms-transform:matrix(0.247882,0.001239,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.247882,0.001239,-0.001250,0.249997,0,0);}
.mab_c01444{transform:matrix(0.248192,0.001986,-0.002000,0.249992,0,0);-ms-transform:matrix(0.248192,0.001986,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.248192,0.001986,-0.002000,0.249992,0,0);}
.m6a_c01444{transform:matrix(0.248460,0.002236,-0.002250,0.249990,0,0);-ms-transform:matrix(0.248460,0.002236,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.248460,0.002236,-0.002250,0.249990,0,0);}
.mc5_c01444{transform:matrix(0.248733,0.002487,-0.002500,0.249988,0,0);-ms-transform:matrix(0.248733,0.002487,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.248733,0.002487,-0.002500,0.249988,0,0);}
.md4_c01444{transform:matrix(0.248807,0.002986,-0.003000,0.249982,0,0);-ms-transform:matrix(0.248807,0.002986,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.248807,0.002986,-0.003000,0.249982,0,0);}
.m80_c01444{transform:matrix(0.249605,0.002246,-0.002250,0.249990,0,0);-ms-transform:matrix(0.249605,0.002246,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.249605,0.002246,-0.002250,0.249990,0,0);}
.mc8_c01444{transform:matrix(0.249913,0.002499,-0.002500,0.249988,0,0);-ms-transform:matrix(0.249913,0.002499,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.249913,0.002499,-0.002500,0.249988,0,0);}
.mbb_c01444{transform:matrix(0.249937,0.001250,-0.001250,0.249997,0,0);-ms-transform:matrix(0.249937,0.001250,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.249937,0.001250,-0.001250,0.249997,0,0);}
.m74_c01444{transform:matrix(0.250390,0.002254,-0.002250,0.249990,0,0);-ms-transform:matrix(0.250390,0.002254,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.250390,0.002254,-0.002250,0.249990,0,0);}
.mca_c01444{transform:matrix(0.250392,0.002504,-0.002500,0.249988,0,0);-ms-transform:matrix(0.250392,0.002504,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.250392,0.002504,-0.002500,0.249988,0,0);}
.mc7_c01444{transform:matrix(0.250627,0.002506,-0.002500,0.249988,0,0);-ms-transform:matrix(0.250627,0.002506,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.250627,0.002506,-0.002500,0.249988,0,0);}
.m71_c01444{transform:matrix(0.250660,0.002256,-0.002250,0.249990,0,0);-ms-transform:matrix(0.250660,0.002256,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.250660,0.002256,-0.002250,0.249990,0,0);}
.m73_c01444{transform:matrix(0.250770,0.002257,-0.002250,0.249990,0,0);-ms-transform:matrix(0.250770,0.002257,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.250770,0.002257,-0.002250,0.249990,0,0);}
.m38_c01444{transform:matrix(0.250855,0.001505,-0.001500,0.249996,0,0);-ms-transform:matrix(0.250855,0.001505,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.250855,0.001505,-0.001500,0.249996,0,0);}
.m37_c01444{transform:matrix(0.250860,0.001505,-0.001500,0.249996,0,0);-ms-transform:matrix(0.250860,0.001505,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.250860,0.001505,-0.001500,0.249996,0,0);}
.m49_c01444{transform:matrix(0.251310,0.001508,-0.001500,0.249996,0,0);-ms-transform:matrix(0.251310,0.001508,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.251310,0.001508,-0.001500,0.249996,0,0);}
.mc_c01444{transform:matrix(0.251874,0.001763,-0.001750,0.249994,0,0);-ms-transform:matrix(0.251874,0.001763,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.251874,0.001763,-0.001750,0.249994,0,0);}
.m7_c01444{transform:matrix(0.251885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251885,0.000000,0.000000,0.250000,0,0);}
.mc9_c01444{transform:matrix(0.252262,0.002523,-0.002500,0.249988,0,0);-ms-transform:matrix(0.252262,0.002523,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.252262,0.002523,-0.002500,0.249988,0,0);}
.m40_c01444{transform:matrix(0.253135,0.001519,-0.001500,0.249996,0,0);-ms-transform:matrix(0.253135,0.001519,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.253135,0.001519,-0.001500,0.249996,0,0);}
.m42_c01444{transform:matrix(0.253150,0.001519,-0.001500,0.249996,0,0);-ms-transform:matrix(0.253150,0.001519,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.253150,0.001519,-0.001500,0.249996,0,0);}
.m2f_c01444{transform:matrix(0.253620,0.001522,-0.001500,0.249996,0,0);-ms-transform:matrix(0.253620,0.001522,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.253620,0.001522,-0.001500,0.249996,0,0);}
.m3e_c01444{transform:matrix(0.253895,0.001523,-0.001500,0.249996,0,0);-ms-transform:matrix(0.253895,0.001523,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.253895,0.001523,-0.001500,0.249996,0,0);}
.m77_c01444{transform:matrix(0.254020,0.002286,-0.002250,0.249990,0,0);-ms-transform:matrix(0.254020,0.002286,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.254020,0.002286,-0.002250,0.249990,0,0);}
.m7d_c01444{transform:matrix(0.254060,0.002287,-0.002250,0.249990,0,0);-ms-transform:matrix(0.254060,0.002287,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.254060,0.002287,-0.002250,0.249990,0,0);}
.m92_c01444{transform:matrix(0.255324,0.001787,-0.001750,0.249994,0,0);-ms-transform:matrix(0.255324,0.001787,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.255324,0.001787,-0.001750,0.249994,0,0);}
.m26_c01444{transform:matrix(0.256580,0.001539,-0.001500,0.249996,0,0);-ms-transform:matrix(0.256580,0.001539,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.256580,0.001539,-0.001500,0.249996,0,0);}
.mcc_c01444{transform:matrix(0.256742,0.002567,-0.002500,0.249988,0,0);-ms-transform:matrix(0.256742,0.002567,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.256742,0.002567,-0.002500,0.249988,0,0);}
.md3_c01444{transform:matrix(0.257171,0.003086,-0.003000,0.249982,0,0);-ms-transform:matrix(0.257171,0.003086,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.257171,0.003086,-0.003000,0.249982,0,0);}
.m6d_c01444{transform:matrix(0.257600,0.002318,-0.002250,0.249990,0,0);-ms-transform:matrix(0.257600,0.002318,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.257600,0.002318,-0.002250,0.249990,0,0);}
.m5a_c01444{transform:matrix(0.257944,0.001806,-0.001750,0.249994,0,0);-ms-transform:matrix(0.257944,0.001806,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.257944,0.001806,-0.001750,0.249994,0,0);}
.m47_c01444{transform:matrix(0.258420,0.001551,-0.001500,0.249996,0,0);-ms-transform:matrix(0.258420,0.001551,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.258420,0.001551,-0.001500,0.249996,0,0);}
.md8_c01444{transform:matrix(0.258596,0.003103,-0.003000,0.249982,0,0);-ms-transform:matrix(0.258596,0.003103,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.258596,0.003103,-0.003000,0.249982,0,0);}
.mb5_c01444{transform:matrix(0.258987,0.001295,-0.001250,0.249997,0,0);-ms-transform:matrix(0.258987,0.001295,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.258987,0.001295,-0.001250,0.249997,0,0);}
.m95_c01444{transform:matrix(0.259179,0.001814,-0.001750,0.249994,0,0);-ms-transform:matrix(0.259179,0.001814,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.259179,0.001814,-0.001750,0.249994,0,0);}
.m76_c01444{transform:matrix(0.260364,0.002343,-0.002250,0.249990,0,0);-ms-transform:matrix(0.260364,0.002343,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.260364,0.002343,-0.002250,0.249990,0,0);}
.m31_c01444{transform:matrix(0.261130,0.001567,-0.001500,0.249996,0,0);-ms-transform:matrix(0.261130,0.001567,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.261130,0.001567,-0.001500,0.249996,0,0);}
.m8_c01444{transform:matrix(0.262805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262805,0.000000,0.000000,0.250000,0,0);}
.m10_c01444{transform:matrix(0.263149,0.001842,-0.001750,0.249994,0,0);-ms-transform:matrix(0.263149,0.001842,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.263149,0.001842,-0.001750,0.249994,0,0);}
.mb2_c01444{transform:matrix(0.263782,0.001319,-0.001250,0.249997,0,0);-ms-transform:matrix(0.263782,0.001319,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.263782,0.001319,-0.001250,0.249997,0,0);}
.m66_c01444{transform:matrix(0.266003,0.001862,-0.001750,0.249994,0,0);-ms-transform:matrix(0.266003,0.001862,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.266003,0.001862,-0.001750,0.249994,0,0);}
.m64_c01444{transform:matrix(0.266043,0.001862,-0.001750,0.249994,0,0);-ms-transform:matrix(0.266043,0.001862,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.266043,0.001862,-0.001750,0.249994,0,0);}
.m13_c01444{transform:matrix(0.266088,0.001863,-0.001750,0.249994,0,0);-ms-transform:matrix(0.266088,0.001863,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.266088,0.001863,-0.001750,0.249994,0,0);}
.m67_c01444{transform:matrix(0.266418,0.001865,-0.001750,0.249994,0,0);-ms-transform:matrix(0.266418,0.001865,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.266418,0.001865,-0.001750,0.249994,0,0);}
.ma5_c01444{transform:matrix(0.266816,0.002135,-0.002000,0.249992,0,0);-ms-transform:matrix(0.266816,0.002135,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.266816,0.002135,-0.002000,0.249992,0,0);}
.m60_c01444{transform:matrix(0.266938,0.001869,-0.001750,0.249994,0,0);-ms-transform:matrix(0.266938,0.001869,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.266938,0.001869,-0.001750,0.249994,0,0);}
.mb7_c01444{transform:matrix(0.267907,0.001340,-0.001250,0.249997,0,0);-ms-transform:matrix(0.267907,0.001340,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.267907,0.001340,-0.001250,0.249997,0,0);}
.mb_c01444{transform:matrix(0.268218,0.001878,-0.001750,0.249994,0,0);-ms-transform:matrix(0.268218,0.001878,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.268218,0.001878,-0.001750,0.249994,0,0);}
.m62_c01444{transform:matrix(0.268458,0.001879,-0.001750,0.249994,0,0);-ms-transform:matrix(0.268458,0.001879,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.268458,0.001879,-0.001750,0.249994,0,0);}
.mba_c01444{transform:matrix(0.269182,0.001346,-0.001250,0.249997,0,0);-ms-transform:matrix(0.269182,0.001346,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.269182,0.001346,-0.001250,0.249997,0,0);}
.mf_c01444{transform:matrix(0.269578,0.001887,-0.001750,0.249994,0,0);-ms-transform:matrix(0.269578,0.001887,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.269578,0.001887,-0.001750,0.249994,0,0);}
.ma6_c01444{transform:matrix(0.270166,0.002161,-0.002000,0.249992,0,0);-ms-transform:matrix(0.270166,0.002161,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.270166,0.002161,-0.002000,0.249992,0,0);}
.m5f_c01444{transform:matrix(0.270928,0.001896,-0.001750,0.249994,0,0);-ms-transform:matrix(0.270928,0.001896,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.270928,0.001896,-0.001750,0.249994,0,0);}
.md5_c01444{transform:matrix(0.271305,0.003256,-0.003000,0.249982,0,0);-ms-transform:matrix(0.271305,0.003256,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.271305,0.003256,-0.003000,0.249982,0,0);}
.mb3_c01444{transform:matrix(0.271522,0.001358,-0.001250,0.249997,0,0);-ms-transform:matrix(0.271522,0.001358,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.271522,0.001358,-0.001250,0.249997,0,0);}
.m68_c01444{transform:matrix(0.271943,0.001904,-0.001750,0.249994,0,0);-ms-transform:matrix(0.271943,0.001904,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.271943,0.001904,-0.001750,0.249994,0,0);}
.mdc_c01444{transform:matrix(0.273340,0.003280,-0.003000,0.249982,0,0);-ms-transform:matrix(0.273340,0.003280,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.273340,0.003280,-0.003000,0.249982,0,0);}
.mb8_c01444{transform:matrix(0.275792,0.001379,-0.001250,0.249997,0,0);-ms-transform:matrix(0.275792,0.001379,-0.001250,0.249997,0,0);-webkit-transform:matrix(0.275792,0.001379,-0.001250,0.249997,0,0);}
.ma4_c01444{transform:matrix(0.279461,0.002236,-0.002000,0.249992,0,0);-ms-transform:matrix(0.279461,0.002236,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.279461,0.002236,-0.002000,0.249992,0,0);}
.m98_c01444{transform:matrix(0.280418,0.001963,-0.001750,0.249994,0,0);-ms-transform:matrix(0.280418,0.001963,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.280418,0.001963,-0.001750,0.249994,0,0);}
.md7_c01444{transform:matrix(0.283590,0.003403,-0.003000,0.249982,0,0);-ms-transform:matrix(0.283590,0.003403,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.283590,0.003403,-0.003000,0.249982,0,0);}
.md_c01444{transform:matrix(0.287663,0.002014,-0.001750,0.249994,0,0);-ms-transform:matrix(0.287663,0.002014,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.287663,0.002014,-0.001750,0.249994,0,0);}
.mda_c01444{transform:matrix(0.290614,0.003487,-0.003000,0.249982,0,0);-ms-transform:matrix(0.290614,0.003487,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.290614,0.003487,-0.003000,0.249982,0,0);}
.m9_c01444{transform:matrix(0.290685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290685,0.000000,0.000000,0.250000,0,0);}
.md2_c01444{transform:matrix(0.295799,0.003550,-0.003000,0.249982,0,0);-ms-transform:matrix(0.295799,0.003550,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.295799,0.003550,-0.003000,0.249982,0,0);}
.m6_c01444{transform:matrix(0.296380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296380,0.000000,0.000000,0.250000,0,0);}
.md6_c01444{transform:matrix(0.301708,0.003620,-0.003000,0.249982,0,0);-ms-transform:matrix(0.301708,0.003620,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.301708,0.003620,-0.003000,0.249982,0,0);}
.md1_c01444{transform:matrix(0.308003,0.003696,-0.003000,0.249982,0,0);-ms-transform:matrix(0.308003,0.003696,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.308003,0.003696,-0.003000,0.249982,0,0);}
.mdd_c01444{transform:matrix(0.308293,0.003700,-0.003000,0.249982,0,0);-ms-transform:matrix(0.308293,0.003700,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.308293,0.003700,-0.003000,0.249982,0,0);}
.md9_c01444{transform:matrix(0.318227,0.003819,-0.003000,0.249982,0,0);-ms-transform:matrix(0.318227,0.003819,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.318227,0.003819,-0.003000,0.249982,0,0);}
.m5e_c01444{transform:matrix(0.324067,0.002268,-0.001750,0.249994,0,0);-ms-transform:matrix(0.324067,0.002268,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.324067,0.002268,-0.001750,0.249994,0,0);}
.m16_c01444{transform:matrix(0.332242,0.002326,-0.001750,0.249994,0,0);-ms-transform:matrix(0.332242,0.002326,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.332242,0.002326,-0.001750,0.249994,0,0);}
.m5c_c01444{transform:matrix(0.338277,0.002368,-0.001750,0.249994,0,0);-ms-transform:matrix(0.338277,0.002368,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.338277,0.002368,-0.001750,0.249994,0,0);}
.m17_c01444{transform:matrix(0.357796,0.002505,-0.001750,0.249994,0,0);-ms-transform:matrix(0.357796,0.002505,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.357796,0.002505,-0.001750,0.249994,0,0);}
.m14_c01444{transform:matrix(0.385636,0.002699,-0.001750,0.249994,0,0);-ms-transform:matrix(0.385636,0.002699,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.385636,0.002699,-0.001750,0.249994,0,0);}
.m5_c01444{transform:matrix(0.387755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387755,0.000000,0.000000,0.250000,0,0);}
.ma_c01444{transform:matrix(0.398145,0.002787,-0.001750,0.249994,0,0);-ms-transform:matrix(0.398145,0.002787,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.398145,0.002787,-0.001750,0.249994,0,0);}
.m15_c01444{transform:matrix(0.401105,0.002808,-0.001750,0.249994,0,0);-ms-transform:matrix(0.401105,0.002808,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.401105,0.002808,-0.001750,0.249994,0,0);}
.m18_c01444{transform:matrix(0.407895,0.002855,-0.001750,0.249994,0,0);-ms-transform:matrix(0.407895,0.002855,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.407895,0.002855,-0.001750,0.249994,0,0);}
.m3_c01444{transform:matrix(0.611560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.611560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.611560,0.000000,0.000000,0.250000,0,0);}
.m1_c01444{transform:matrix(1.810690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.810690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.810690,0.000000,0.000000,0.250000,0,0);}
.v0_c01444{vertical-align:0.000000px;}
.ls0_c01444{letter-spacing:0.000000px;}
.sc__c01444{text-shadow:none;}
.sc0_c01444{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__c01444{-webkit-text-stroke:0px transparent;}
.sc0_c01444{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01444{word-spacing:0.000000px;}
.fc0_c01444{color:transparent;}
.fs0_c01444{font-size:18.000000px;}
.fs2_c01444{font-size:24.000000px;}
.fs6_c01444{font-size:48.001176px;}
.fs4_c01444{font-size:66.000000px;}
.fs12_c01444{font-size:66.004752px;}
.fsf_c01444{font-size:72.000900px;}
.fs5_c01444{font-size:72.001764px;}
.fsd_c01444{font-size:72.002304px;}
.fs13_c01444{font-size:72.005184px;}
.fs10_c01444{font-size:78.000975px;}
.fs8_c01444{font-size:78.001404px;}
.fsa_c01444{font-size:78.001911px;}
.fse_c01444{font-size:78.002496px;}
.fsb_c01444{font-size:78.003159px;}
.fs11_c01444{font-size:78.003900px;}
.fs1_c01444{font-size:84.000000px;}
.fs7_c01444{font-size:84.002058px;}
.fsc_c01444{font-size:84.002688px;}
.fs3_c01444{font-size:90.000000px;}
.fs9_c01444{font-size:90.002205px;}
.y0_c01444{bottom:0.000000px;}
.y1_c01444{bottom:5.130000px;}
.ydb_c01444{bottom:67.120674px;}
.yda_c01444{bottom:67.121316px;}
.yd9_c01444{bottom:102.351684px;}
.yd8_c01444{bottom:103.315998px;}
.yd7_c01444{bottom:103.698444px;}
.yd6_c01444{bottom:104.093238px;}
.yd5_c01444{bottom:104.618118px;}
.yd4_c01444{bottom:105.013866px;}
.yd3_c01444{bottom:106.332492px;}
.yd2_c01444{bottom:106.711032px;}
.y2_c01444{bottom:106.920000px;}
.yd1_c01444{bottom:107.119632px;}
.yd0_c01444{bottom:107.916690px;}
.ycf_c01444{bottom:109.353000px;}
.y4_c01444{bottom:146.610000px;}
.yce_c01444{bottom:177.413820px;}
.ycd_c01444{bottom:178.067130px;}
.ycc_c01444{bottom:178.407315px;}
.ycb_c01444{bottom:178.852545px;}
.yca_c01444{bottom:179.943855px;}
.yc9_c01444{bottom:180.358980px;}
.yc8_c01444{bottom:210.941460px;}
.yc7_c01444{bottom:211.729935px;}
.yc6_c01444{bottom:211.945605px;}
.yc5_c01444{bottom:212.915235px;}
.yc4_c01444{bottom:213.366030px;}
.yc3_c01444{bottom:214.138185px;}
.yc2_c01444{bottom:214.902405px;}
.yc1_c01444{bottom:215.231850px;}
.yc0_c01444{bottom:215.874585px;}
.ybf_c01444{bottom:216.541500px;}
.ybe_c01444{bottom:250.276238px;}
.ybd_c01444{bottom:250.781663px;}
.ybc_c01444{bottom:251.257223px;}
.ybb_c01444{bottom:251.975415px;}
.yba_c01444{bottom:252.451035px;}
.yb9_c01444{bottom:284.687813px;}
.yb8_c01444{bottom:285.075383px;}
.yb7_c01444{bottom:285.242798px;}
.yb6_c01444{bottom:285.788205px;}
.yb5_c01444{bottom:286.222883px;}
.yb4_c01444{bottom:286.446953px;}
.yb3_c01444{bottom:286.722375px;}
.yb2_c01444{bottom:286.943782px;}
.yb1_c01444{bottom:287.487900px;}
.yb0_c01444{bottom:287.820000px;}
.yaf_c01444{bottom:318.726648px;}
.yae_c01444{bottom:319.240776px;}
.yad_c01444{bottom:319.515144px;}
.yac_c01444{bottom:319.869180px;}
.yab_c01444{bottom:320.554056px;}
.yaa_c01444{bottom:320.826168px;}
.ya9_c01444{bottom:321.428808px;}
.ya8_c01444{bottom:322.055256px;}
.ya7_c01444{bottom:322.755192px;}
.ya6_c01444{bottom:323.014416px;}
.ya5_c01444{bottom:323.461500px;}
.ya4_c01444{bottom:356.374296px;}
.ya3_c01444{bottom:357.273792px;}
.ya2_c01444{bottom:358.831440px;}
.ya1_c01444{bottom:388.751760px;}
.ya0_c01444{bottom:389.006616px;}
.y9f_c01444{bottom:389.354196px;}
.y9e_c01444{bottom:389.879244px;}
.y9d_c01444{bottom:390.235476px;}
.y9c_c01444{bottom:390.501336px;}
.y9b_c01444{bottom:391.101852px;}
.y9a_c01444{bottom:391.911804px;}
.y99_c01444{bottom:392.773680px;}
.y98_c01444{bottom:392.954964px;}
.y97_c01444{bottom:393.661500px;}
.y96_c01444{bottom:427.504908px;}
.y95_c01444{bottom:427.939789px;}
.y94_c01444{bottom:428.416555px;}
.y93_c01444{bottom:429.032220px;}
.y92_c01444{bottom:460.455882px;}
.y91_c01444{bottom:460.839584px;}
.y90_c01444{bottom:461.760034px;}
.y8f_c01444{bottom:461.980996px;}
.y8e_c01444{bottom:462.219252px;}
.y8d_c01444{bottom:462.682239px;}
.y8c_c01444{bottom:462.984712px;}
.y8b_c01444{bottom:463.512033px;}
.y8a_c01444{bottom:463.831485px;}
.y89_c01444{bottom:464.130000px;}
.y88_c01444{bottom:495.717000px;}
.y87_c01444{bottom:496.011000px;}
.y86_c01444{bottom:496.309500px;}
.y85_c01444{bottom:497.281500px;}
.y84_c01444{bottom:498.477000px;}
.y83_c01444{bottom:498.873000px;}
.y82_c01444{bottom:500.053500px;}
.y81_c01444{bottom:500.850000px;}
.y80_c01444{bottom:535.419000px;}
.y7f_c01444{bottom:568.140374px;}
.y7e_c01444{bottom:568.750168px;}
.y7d_c01444{bottom:569.034465px;}
.y7c_c01444{bottom:569.330884px;}
.y7b_c01444{bottom:570.220224px;}
.y7a_c01444{bottom:570.411883px;}
.y79_c01444{bottom:571.087788px;}
.y78_c01444{bottom:571.495879px;}
.y77_c01444{bottom:572.101030px;}
.y76_c01444{bottom:572.487495px;}
.y75_c01444{bottom:573.481500px;}
.y71_c01444{bottom:607.228458px;}
.y74_c01444{bottom:607.228719px;}
.y72_c01444{bottom:607.228935px;}
.y73_c01444{bottom:607.228945px;}
.y70_c01444{bottom:638.700216px;}
.y6f_c01444{bottom:639.487684px;}
.y6e_c01444{bottom:639.886191px;}
.y6d_c01444{bottom:640.179924px;}
.y6c_c01444{bottom:640.568724px;}
.y6b_c01444{bottom:641.745060px;}
.y6a_c01444{bottom:642.235852px;}
.y69_c01444{bottom:642.641662px;}
.y68_c01444{bottom:643.436353px;}
.y67_c01444{bottom:644.221500px;}
.y66_c01444{bottom:675.227830px;}
.y65_c01444{bottom:675.673912px;}
.y64_c01444{bottom:675.910173px;}
.y63_c01444{bottom:676.212405px;}
.y62_c01444{bottom:676.668021px;}
.y61_c01444{bottom:676.906119px;}
.y60_c01444{bottom:677.431570px;}
.y5f_c01444{bottom:677.749069px;}
.y5e_c01444{bottom:678.289693px;}
.y5d_c01444{bottom:679.051500px;}
.y5c_c01444{bottom:709.036576px;}
.y5b_c01444{bottom:709.206886px;}
.y5a_c01444{bottom:710.012209px;}
.y59_c01444{bottom:710.275747px;}
.y58_c01444{bottom:711.245889px;}
.y57_c01444{bottom:711.496576px;}
.y56_c01444{bottom:711.763716px;}
.y55_c01444{bottom:712.560304px;}
.y54_c01444{bottom:712.807117px;}
.y53_c01444{bottom:713.078057px;}
.y52_c01444{bottom:713.609007px;}
.y51_c01444{bottom:746.275855px;}
.y50_c01444{bottom:746.806977px;}
.y4f_c01444{bottom:747.124465px;}
.y4e_c01444{bottom:747.422970px;}
.y4d_c01444{bottom:747.865472px;}
.y4c_c01444{bottom:748.426612px;}
.y4b_c01444{bottom:748.730923px;}
.y4a_c01444{bottom:748.961514px;}
.y49_c01444{bottom:749.653327px;}
.y48_c01444{bottom:750.330000px;}
.y47_c01444{bottom:783.280554px;}
.y46_c01444{bottom:783.831945px;}
.y45_c01444{bottom:785.162925px;}
.y44_c01444{bottom:817.258491px;}
.y43_c01444{bottom:817.660359px;}
.y42_c01444{bottom:817.916247px;}
.y41_c01444{bottom:818.376426px;}
.y40_c01444{bottom:818.966070px;}
.y3f_c01444{bottom:819.364581px;}
.y3e_c01444{bottom:819.894357px;}
.y3d_c01444{bottom:820.155204px;}
.y3c_c01444{bottom:820.800000px;}
.y3a_c01444{bottom:855.513315px;}
.y3b_c01444{bottom:855.513555px;}
.y38_c01444{bottom:855.513606px;}
.y39_c01444{bottom:855.513846px;}
.y36_c01444{bottom:855.514017px;}
.y37_c01444{bottom:855.514257px;}
.y35_c01444{bottom:890.223957px;}
.y34_c01444{bottom:890.421597px;}
.y33_c01444{bottom:890.687295px;}
.y32_c01444{bottom:890.878464px;}
.y31_c01444{bottom:891.333639px;}
.y30_c01444{bottom:891.595971px;}
.y2f_c01444{bottom:892.519497px;}
.y2e_c01444{bottom:892.785204px;}
.y2d_c01444{bottom:893.430000px;}
.y2b_c01444{bottom:927.414558px;}
.y2c_c01444{bottom:927.414798px;}
.y2a_c01444{bottom:927.415038px;}
.y29_c01444{bottom:927.415749px;}
.y28_c01444{bottom:960.897006px;}
.y27_c01444{bottom:961.551522px;}
.y26_c01444{bottom:961.883505px;}
.y25_c01444{bottom:962.144298px;}
.y24_c01444{bottom:962.993259px;}
.y23_c01444{bottom:963.399879px;}
.y22_c01444{bottom:963.793593px;}
.y21_c01444{bottom:964.357380px;}
.y20_c01444{bottom:964.440000px;}
.y1f_c01444{bottom:1030.669005px;}
.y1e_c01444{bottom:1030.971447px;}
.y1d_c01444{bottom:1031.496877px;}
.y1c_c01444{bottom:1031.816266px;}
.y1b_c01444{bottom:1032.114729px;}
.y1a_c01444{bottom:1032.798857px;}
.y19_c01444{bottom:1033.415164px;}
.y18_c01444{bottom:1033.887706px;}
.y17_c01444{bottom:1034.640000px;}
.y16_c01444{bottom:1067.453060px;}
.y15_c01444{bottom:1067.453469px;}
.y14_c01444{bottom:1067.453649px;}
.y13_c01444{bottom:1067.454029px;}
.y12_c01444{bottom:1067.454408px;}
.y11_c01444{bottom:1101.446545px;}
.y10_c01444{bottom:1101.983295px;}
.yf_c01444{bottom:1102.287595px;}
.ye_c01444{bottom:1102.521997px;}
.y3_c01444{bottom:1102.669500px;}
.yd_c01444{bottom:1102.990717px;}
.yc_c01444{bottom:1103.593575px;}
.yb_c01444{bottom:1103.820197px;}
.ya_c01444{bottom:1104.535226px;}
.y9_c01444{bottom:1104.897738px;}
.y8_c01444{bottom:1105.432671px;}
.y7_c01444{bottom:1105.650000px;}
.y6_c01444{bottom:1140.420000px;}
.y5_c01444{bottom:1197.063000px;}
.h2_c01444{height:18.000000px;}
.h4_c01444{height:24.000000px;}
.h8_c01444{height:48.001176px;}
.h6_c01444{height:66.000000px;}
.h14_c01444{height:66.004752px;}
.h11_c01444{height:72.000900px;}
.h7_c01444{height:72.001764px;}
.hf_c01444{height:72.002304px;}
.h15_c01444{height:72.005184px;}
.h12_c01444{height:78.000975px;}
.ha_c01444{height:78.001404px;}
.hc_c01444{height:78.001911px;}
.h10_c01444{height:78.002496px;}
.hd_c01444{height:78.003159px;}
.h13_c01444{height:78.003900px;}
.h3_c01444{height:84.000000px;}
.h9_c01444{height:84.002058px;}
.he_c01444{height:84.002688px;}
.h5_c01444{height:90.000000px;}
.hb_c01444{height:90.002205px;}
.h0_c01444{height:1261.440000px;}
.h1_c01444{height:1261.500000px;}
.w0_c01444{width:912.000000px;}
.x0_c01444{left:0.000000px;}
.x1_c01444{left:8.640000px;}
.x2_c01444{left:25.650000px;}
.x3_c01444{left:124.740000px;}
.x4_c01444{left:175.770000px;}
.x4e_c01444{left:217.489500px;}
.x43_c01444{left:219.400500px;}
.x1e_c01444{left:222.130500px;}
.xb_c01444{left:223.459500px;}
.x1f_c01444{left:235.900500px;}
.xc_c01444{left:254.506500px;}
.x6f_c01444{left:272.586000px;}
.x76_c01444{left:283.156500px;}
.x8e_c01444{left:291.060012px;}
.x84_c01444{left:293.010000px;}
.x63_c01444{left:294.361768px;}
.x32_c01444{left:295.404333px;}
.x2d_c01444{left:296.733198px;}
.x7_c01444{left:298.890000px;}
.x65_c01444{left:305.284500px;}
.x48_c01444{left:306.340500px;}
.x8f_c01444{left:313.741770px;}
.x34_c01444{left:317.971500px;}
.x44_c01444{left:328.230000px;}
.x20_c01444{left:329.865000px;}
.xd_c01444{left:330.925500px;}
.x5c_c01444{left:338.212500px;}
.x7c_c01444{left:348.174000px;}
.x16_c01444{left:352.622970px;}
.x3b_c01444{left:361.970642px;}
.x4f_c01444{left:370.875000px;}
.x2e_c01444{left:372.793500px;}
.x27_c01444{left:373.878000px;}
.x8_c01444{left:375.030000px;}
.x7d_c01444{left:381.118500px;}
.xe_c01444{left:382.713000px;}
.x5d_c01444{left:383.848500px;}
.x70_c01444{left:392.481000px;}
.x21_c01444{left:395.484000px;}
.x19_c01444{left:397.626000px;}
.x64_c01444{left:403.472424px;}
.x6d_c01444{left:404.839440px;}
.x33_c01444{left:406.125525px;}
.x9_c01444{left:407.700000px;}
.x85_c01444{left:412.702500px;}
.x35_c01444{left:416.802000px;}
.x17_c01444{left:420.394788px;}
.x3c_c01444{left:426.506180px;}
.x26_c01444{left:429.032805px;}
.x66_c01444{left:435.679500px;}
.x56_c01444{left:437.016000px;}
.x50_c01444{left:438.114000px;}
.x49_c01444{left:439.729500px;}
.x5_c01444{left:441.180000px;}
.x7b_c01444{left:446.724563px;}
.x18_c01444{left:450.636268px;}
.x7e_c01444{left:457.540500px;}
.x5e_c01444{left:459.180000px;}
.x2f_c01444{left:461.089500px;}
.x22_c01444{left:463.254000px;}
.x6_c01444{left:464.400000px;}
.x6e_c01444{left:469.085856px;}
.x71_c01444{left:470.787000px;}
.x4c_c01444{left:472.240097px;}
.x86_c01444{left:479.124000px;}
.x57_c01444{left:481.023000px;}
.x51_c01444{left:483.457500px;}
.xf_c01444{left:484.860000px;}
.x77_c01444{left:491.346000px;}
.x36_c01444{left:493.216500px;}
.xa_c01444{left:494.640000px;}
.x5f_c01444{left:502.390500px;}
.x4d_c01444{left:504.101175px;}
.x87_c01444{left:513.174000px;}
.x10_c01444{left:517.234500px;}
.x83_c01444{left:525.042075px;}
.x3d_c01444{left:526.160987px;}
.x28_c01444{left:527.799000px;}
.x7f_c01444{left:534.756000px;}
.x67_c01444{left:536.923500px;}
.x88_c01444{left:544.719000px;}
.x72_c01444{left:546.117000px;}
.x52_c01444{left:558.558000px;}
.x3e_c01444{left:559.609256px;}
.x60_c01444{left:568.531500px;}
.x29_c01444{left:571.521000px;}
.x37_c01444{left:573.379500px;}
.x53_c01444{left:579.853500px;}
.x1a_c01444{left:583.402500px;}
.x3f_c01444{left:590.921535px;}
.x11_c01444{left:603.357000px;}
.x23_c01444{left:604.747500px;}
.x68_c01444{left:611.988000px;}
.x58_c01444{left:613.837500px;}
.x78_c01444{left:623.095500px;}
.x45_c01444{left:624.985500px;}
.x1b_c01444{left:626.040000px;}
.x61_c01444{left:634.134000px;}
.x38_c01444{left:636.594000px;}
.x69_c01444{left:645.220500px;}
.x24_c01444{left:648.213000px;}
.x89_c01444{left:654.604500px;}
.x73_c01444{left:665.740500px;}
.x46_c01444{left:668.161500px;}
.x12_c01444{left:670.317000px;}
.x1c_c01444{left:671.667000px;}
.x80_c01444{left:676.798500px;}
.x2a_c01444{left:679.245000px;}
.x8a_c01444{left:687.583500px;}
.x6a_c01444{left:689.749500px;}
.x81_c01444{left:698.365500px;}
.x4a_c01444{left:700.803000px;}
.x30_c01444{left:702.478500px;}
.x13_c01444{left:703.803000px;}
.x74_c01444{left:709.995000px;}
.x40_c01444{left:712.155185px;}
.x59_c01444{left:721.840500px;}
.x2b_c01444{left:723.528000px;}
.x39_c01444{left:724.593000px;}
.x79_c01444{left:732.177000px;}
.x54_c01444{left:743.193000px;}
.x31_c01444{left:745.126500px;}
.x14_c01444{left:747.274500px;}
.x5a_c01444{left:755.046000px;}
.x2c_c01444{left:756.468000px;}
.x8b_c01444{left:764.223000px;}
.x47_c01444{left:765.639000px;}
.x82_c01444{left:777.213000px;}
.x5b_c01444{left:787.720500px;}
.x1d_c01444{left:789.934500px;}
.x8c_c01444{left:796.093500px;}
.x6b_c01444{left:798.828000px;}
.x3a_c01444{left:800.467500px;}
.x75_c01444{left:808.557000px;}
.x55_c01444{left:810.948000px;}
.x25_c01444{left:812.629500px;}
.x62_c01444{left:820.441500px;}
.x15_c01444{left:823.953000px;}
.x6c_c01444{left:830.685000px;}
.x4b_c01444{left:832.578000px;}
.x7a_c01444{left:843.174000px;}
.x41_c01444{left:845.777250px;}
.x42_c01444{left:867.107103px;}
.x8d_c01444{left:876.453000px;}
@media print{
.v0_c01444{vertical-align:0.000000pt;}
.ls0_c01444{letter-spacing:0.000000pt;}
.ws0_c01444{word-spacing:0.000000pt;}
.fs0_c01444{font-size:16.000000pt;}
.fs2_c01444{font-size:21.333333pt;}
.fs6_c01444{font-size:42.667712pt;}
.fs4_c01444{font-size:58.666667pt;}
.fs12_c01444{font-size:58.670891pt;}
.fsf_c01444{font-size:64.000800pt;}
.fs5_c01444{font-size:64.001568pt;}
.fsd_c01444{font-size:64.002048pt;}
.fs13_c01444{font-size:64.004608pt;}
.fs10_c01444{font-size:69.334200pt;}
.fs8_c01444{font-size:69.334581pt;}
.fsa_c01444{font-size:69.335032pt;}
.fse_c01444{font-size:69.335552pt;}
.fsb_c01444{font-size:69.336141pt;}
.fs11_c01444{font-size:69.336800pt;}
.fs1_c01444{font-size:74.666667pt;}
.fs7_c01444{font-size:74.668496pt;}
.fsc_c01444{font-size:74.669056pt;}
.fs3_c01444{font-size:80.000000pt;}
.fs9_c01444{font-size:80.001960pt;}
.y0_c01444{bottom:0.000000pt;}
.y1_c01444{bottom:4.560000pt;}
.ydb_c01444{bottom:59.662821pt;}
.yda_c01444{bottom:59.663392pt;}
.yd9_c01444{bottom:90.979275pt;}
.yd8_c01444{bottom:91.836443pt;}
.yd7_c01444{bottom:92.176395pt;}
.yd6_c01444{bottom:92.527323pt;}
.yd5_c01444{bottom:92.993883pt;}
.yd4_c01444{bottom:93.345659pt;}
.yd3_c01444{bottom:94.517771pt;}
.yd2_c01444{bottom:94.854251pt;}
.y2_c01444{bottom:95.040000pt;}
.yd1_c01444{bottom:95.217451pt;}
.yd0_c01444{bottom:95.925947pt;}
.ycf_c01444{bottom:97.202667pt;}
.y4_c01444{bottom:130.320000pt;}
.yce_c01444{bottom:157.701173pt;}
.ycd_c01444{bottom:158.281893pt;}
.ycc_c01444{bottom:158.584280pt;}
.ycb_c01444{bottom:158.980040pt;}
.yca_c01444{bottom:159.950093pt;}
.yc9_c01444{bottom:160.319093pt;}
.yc8_c01444{bottom:187.503520pt;}
.yc7_c01444{bottom:188.204387pt;}
.yc6_c01444{bottom:188.396093pt;}
.yc5_c01444{bottom:189.257987pt;}
.yc4_c01444{bottom:189.658693pt;}
.yc3_c01444{bottom:190.345053pt;}
.yc2_c01444{bottom:191.024360pt;}
.yc1_c01444{bottom:191.317200pt;}
.yc0_c01444{bottom:191.888520pt;}
.ybf_c01444{bottom:192.481333pt;}
.ybe_c01444{bottom:222.467767pt;}
.ybd_c01444{bottom:222.917033pt;}
.ybc_c01444{bottom:223.339753pt;}
.ybb_c01444{bottom:223.978147pt;}
.yba_c01444{bottom:224.400920pt;}
.yb9_c01444{bottom:253.055833pt;}
.yb8_c01444{bottom:253.400340pt;}
.yb7_c01444{bottom:253.549153pt;}
.yb6_c01444{bottom:254.033960pt;}
.yb5_c01444{bottom:254.420340pt;}
.yb4_c01444{bottom:254.619513pt;}
.yb3_c01444{bottom:254.864333pt;}
.yb2_c01444{bottom:255.061140pt;}
.yb1_c01444{bottom:255.544800pt;}
.yb0_c01444{bottom:255.840000pt;}
.yaf_c01444{bottom:283.312576pt;}
.yae_c01444{bottom:283.769579pt;}
.yad_c01444{bottom:284.013461pt;}
.yac_c01444{bottom:284.328160pt;}
.yab_c01444{bottom:284.936939pt;}
.yaa_c01444{bottom:285.178816pt;}
.ya9_c01444{bottom:285.714496pt;}
.ya8_c01444{bottom:286.271339pt;}
.ya7_c01444{bottom:286.893504pt;}
.ya6_c01444{bottom:287.123925pt;}
.ya5_c01444{bottom:287.521333pt;}
.ya4_c01444{bottom:316.777152pt;}
.ya3_c01444{bottom:317.576704pt;}
.ya2_c01444{bottom:318.961280pt;}
.ya1_c01444{bottom:345.557120pt;}
.ya0_c01444{bottom:345.783659pt;}
.y9f_c01444{bottom:346.092619pt;}
.y9e_c01444{bottom:346.559328pt;}
.y9d_c01444{bottom:346.875979pt;}
.y9c_c01444{bottom:347.112299pt;}
.y9b_c01444{bottom:347.646091pt;}
.y9a_c01444{bottom:348.366048pt;}
.y99_c01444{bottom:349.132160pt;}
.y98_c01444{bottom:349.293301pt;}
.y97_c01444{bottom:349.921333pt;}
.y96_c01444{bottom:380.004363pt;}
.y95_c01444{bottom:380.390924pt;}
.y94_c01444{bottom:380.814716pt;}
.y93_c01444{bottom:381.361973pt;}
.y92_c01444{bottom:409.294117pt;}
.y91_c01444{bottom:409.635185pt;}
.y90_c01444{bottom:410.453364pt;}
.y8f_c01444{bottom:410.649775pt;}
.y8e_c01444{bottom:410.861557pt;}
.y8d_c01444{bottom:411.273101pt;}
.y8c_c01444{bottom:411.541967pt;}
.y8b_c01444{bottom:412.010696pt;}
.y8a_c01444{bottom:412.294653pt;}
.y89_c01444{bottom:412.560000pt;}
.y88_c01444{bottom:440.637333pt;}
.y87_c01444{bottom:440.898667pt;}
.y86_c01444{bottom:441.164000pt;}
.y85_c01444{bottom:442.028000pt;}
.y84_c01444{bottom:443.090667pt;}
.y83_c01444{bottom:443.442667pt;}
.y82_c01444{bottom:444.492000pt;}
.y81_c01444{bottom:445.200000pt;}
.y80_c01444{bottom:475.928000pt;}
.y7f_c01444{bottom:505.013665pt;}
.y7e_c01444{bottom:505.555705pt;}
.y7d_c01444{bottom:505.808413pt;}
.y7c_c01444{bottom:506.071897pt;}
.y7b_c01444{bottom:506.862421pt;}
.y7a_c01444{bottom:507.032785pt;}
.y79_c01444{bottom:507.633589pt;}
.y78_c01444{bottom:507.996337pt;}
.y77_c01444{bottom:508.534249pt;}
.y76_c01444{bottom:508.877773pt;}
.y75_c01444{bottom:509.761333pt;}
.y71_c01444{bottom:539.758629pt;}
.y74_c01444{bottom:539.758861pt;}
.y72_c01444{bottom:539.759053pt;}
.y73_c01444{bottom:539.759063pt;}
.y70_c01444{bottom:567.733525pt;}
.y6f_c01444{bottom:568.433497pt;}
.y6e_c01444{bottom:568.787725pt;}
.y6d_c01444{bottom:569.048821pt;}
.y6c_c01444{bottom:569.394421pt;}
.y6b_c01444{bottom:570.440053pt;}
.y6a_c01444{bottom:570.876313pt;}
.y69_c01444{bottom:571.237033pt;}
.y68_c01444{bottom:571.943425pt;}
.y67_c01444{bottom:572.641333pt;}
.y66_c01444{bottom:600.202516pt;}
.y65_c01444{bottom:600.599033pt;}
.y64_c01444{bottom:600.809043pt;}
.y63_c01444{bottom:601.077693pt;}
.y62_c01444{bottom:601.482685pt;}
.y61_c01444{bottom:601.694328pt;}
.y60_c01444{bottom:602.161396pt;}
.y5f_c01444{bottom:602.443617pt;}
.y5e_c01444{bottom:602.924172pt;}
.y5d_c01444{bottom:603.601333pt;}
.y5c_c01444{bottom:630.254735pt;}
.y5b_c01444{bottom:630.406121pt;}
.y5a_c01444{bottom:631.121964pt;}
.y59_c01444{bottom:631.356220pt;}
.y58_c01444{bottom:632.218568pt;}
.y57_c01444{bottom:632.441401pt;}
.y56_c01444{bottom:632.678859pt;}
.y55_c01444{bottom:633.386937pt;}
.y54_c01444{bottom:633.606327pt;}
.y53_c01444{bottom:633.847161pt;}
.y52_c01444{bottom:634.319117pt;}
.y51_c01444{bottom:663.356316pt;}
.y50_c01444{bottom:663.828424pt;}
.y4f_c01444{bottom:664.110636pt;}
.y4e_c01444{bottom:664.375973pt;}
.y4d_c01444{bottom:664.769308pt;}
.y4c_c01444{bottom:665.268100pt;}
.y4b_c01444{bottom:665.538599pt;}
.y4a_c01444{bottom:665.743568pt;}
.y49_c01444{bottom:666.358513pt;}
.y48_c01444{bottom:666.960000pt;}
.y47_c01444{bottom:696.249381pt;}
.y46_c01444{bottom:696.739507pt;}
.y45_c01444{bottom:697.922600pt;}
.y44_c01444{bottom:726.451992pt;}
.y43_c01444{bottom:726.809208pt;}
.y42_c01444{bottom:727.036664pt;}
.y41_c01444{bottom:727.445712pt;}
.y40_c01444{bottom:727.969840pt;}
.y3f_c01444{bottom:728.324072pt;}
.y3e_c01444{bottom:728.794984pt;}
.y3d_c01444{bottom:729.026848pt;}
.y3c_c01444{bottom:729.600000pt;}
.y3a_c01444{bottom:760.456280pt;}
.y3b_c01444{bottom:760.456493pt;}
.y38_c01444{bottom:760.456539pt;}
.y39_c01444{bottom:760.456752pt;}
.y36_c01444{bottom:760.456904pt;}
.y37_c01444{bottom:760.457117pt;}
.y35_c01444{bottom:791.310184pt;}
.y34_c01444{bottom:791.485864pt;}
.y33_c01444{bottom:791.722040pt;}
.y32_c01444{bottom:791.891968pt;}
.y31_c01444{bottom:792.296568pt;}
.y30_c01444{bottom:792.529752pt;}
.y2f_c01444{bottom:793.350664pt;}
.y2e_c01444{bottom:793.586848pt;}
.y2d_c01444{bottom:794.160000pt;}
.y2b_c01444{bottom:824.368496pt;}
.y2c_c01444{bottom:824.368709pt;}
.y2a_c01444{bottom:824.368923pt;}
.y29_c01444{bottom:824.369555pt;}
.y28_c01444{bottom:854.130672pt;}
.y27_c01444{bottom:854.712464pt;}
.y26_c01444{bottom:855.007560pt;}
.y25_c01444{bottom:855.239376pt;}
.y24_c01444{bottom:855.994008pt;}
.y23_c01444{bottom:856.355448pt;}
.y22_c01444{bottom:856.705416pt;}
.y21_c01444{bottom:857.206560pt;}
.y20_c01444{bottom:857.280000pt;}
.y1f_c01444{bottom:916.150227pt;}
.y1e_c01444{bottom:916.419064pt;}
.y1d_c01444{bottom:916.886113pt;}
.y1c_c01444{bottom:917.170015pt;}
.y1b_c01444{bottom:917.435315pt;}
.y1a_c01444{bottom:918.043428pt;}
.y19_c01444{bottom:918.591257pt;}
.y18_c01444{bottom:919.011295pt;}
.y17_c01444{bottom:919.680000pt;}
.y16_c01444{bottom:948.847164pt;}
.y15_c01444{bottom:948.847528pt;}
.y14_c01444{bottom:948.847688pt;}
.y13_c01444{bottom:948.848025pt;}
.y12_c01444{bottom:948.848363pt;}
.y11_c01444{bottom:979.063596pt;}
.y10_c01444{bottom:979.540707pt;}
.yf_c01444{bottom:979.811196pt;}
.ye_c01444{bottom:980.019553pt;}
.y3_c01444{bottom:980.150667pt;}
.yd_c01444{bottom:980.436193pt;}
.yc_c01444{bottom:980.972067pt;}
.yb_c01444{bottom:981.173508pt;}
.ya_c01444{bottom:981.809089pt;}
.y9_c01444{bottom:982.131323pt;}
.y8_c01444{bottom:982.606819pt;}
.y7_c01444{bottom:982.800000pt;}
.y6_c01444{bottom:1013.706667pt;}
.y5_c01444{bottom:1064.056000pt;}
.h2_c01444{height:16.000000pt;}
.h4_c01444{height:21.333333pt;}
.h8_c01444{height:42.667712pt;}
.h6_c01444{height:58.666667pt;}
.h14_c01444{height:58.670891pt;}
.h11_c01444{height:64.000800pt;}
.h7_c01444{height:64.001568pt;}
.hf_c01444{height:64.002048pt;}
.h15_c01444{height:64.004608pt;}
.h12_c01444{height:69.334200pt;}
.ha_c01444{height:69.334581pt;}
.hc_c01444{height:69.335032pt;}
.h10_c01444{height:69.335552pt;}
.hd_c01444{height:69.336141pt;}
.h13_c01444{height:69.336800pt;}
.h3_c01444{height:74.666667pt;}
.h9_c01444{height:74.668496pt;}
.he_c01444{height:74.669056pt;}
.h5_c01444{height:80.000000pt;}
.hb_c01444{height:80.001960pt;}
.h0_c01444{height:1121.280000pt;}
.h1_c01444{height:1121.333333pt;}
.w0_c01444{width:810.666667pt;}
.x0_c01444{left:0.000000pt;}
.x1_c01444{left:7.680000pt;}
.x2_c01444{left:22.800000pt;}
.x3_c01444{left:110.880000pt;}
.x4_c01444{left:156.240000pt;}
.x4e_c01444{left:193.324000pt;}
.x43_c01444{left:195.022667pt;}
.x1e_c01444{left:197.449333pt;}
.xb_c01444{left:198.630667pt;}
.x1f_c01444{left:209.689333pt;}
.xc_c01444{left:226.228000pt;}
.x6f_c01444{left:242.298667pt;}
.x76_c01444{left:251.694667pt;}
.x8e_c01444{left:258.720011pt;}
.x84_c01444{left:260.453333pt;}
.x63_c01444{left:261.654905pt;}
.x32_c01444{left:262.581629pt;}
.x2d_c01444{left:263.762843pt;}
.x7_c01444{left:265.680000pt;}
.x65_c01444{left:271.364000pt;}
.x48_c01444{left:272.302667pt;}
.x8f_c01444{left:278.881573pt;}
.x34_c01444{left:282.641333pt;}
.x44_c01444{left:291.760000pt;}
.x20_c01444{left:293.213333pt;}
.xd_c01444{left:294.156000pt;}
.x5c_c01444{left:300.633333pt;}
.x7c_c01444{left:309.488000pt;}
.x16_c01444{left:313.442640pt;}
.x3b_c01444{left:321.751681pt;}
.x4f_c01444{left:329.666667pt;}
.x2e_c01444{left:331.372000pt;}
.x27_c01444{left:332.336000pt;}
.x8_c01444{left:333.360000pt;}
.x7d_c01444{left:338.772000pt;}
.xe_c01444{left:340.189333pt;}
.x5d_c01444{left:341.198667pt;}
.x70_c01444{left:348.872000pt;}
.x21_c01444{left:351.541333pt;}
.x19_c01444{left:353.445333pt;}
.x64_c01444{left:358.642155pt;}
.x6d_c01444{left:359.857280pt;}
.x33_c01444{left:361.000467pt;}
.x9_c01444{left:362.400000pt;}
.x85_c01444{left:366.846667pt;}
.x35_c01444{left:370.490667pt;}
.x17_c01444{left:373.684256pt;}
.x3c_c01444{left:379.116604pt;}
.x26_c01444{left:381.362493pt;}
.x66_c01444{left:387.270667pt;}
.x56_c01444{left:388.458667pt;}
.x50_c01444{left:389.434667pt;}
.x49_c01444{left:390.870667pt;}
.x5_c01444{left:392.160000pt;}
.x7b_c01444{left:397.088500pt;}
.x18_c01444{left:400.565572pt;}
.x7e_c01444{left:406.702667pt;}
.x5e_c01444{left:408.160000pt;}
.x2f_c01444{left:409.857333pt;}
.x22_c01444{left:411.781333pt;}
.x6_c01444{left:412.800000pt;}
.x6e_c01444{left:416.965205pt;}
.x71_c01444{left:418.477333pt;}
.x4c_c01444{left:419.768975pt;}
.x86_c01444{left:425.888000pt;}
.x57_c01444{left:427.576000pt;}
.x51_c01444{left:429.740000pt;}
.xf_c01444{left:430.986667pt;}
.x77_c01444{left:436.752000pt;}
.x36_c01444{left:438.414667pt;}
.xa_c01444{left:439.680000pt;}
.x5f_c01444{left:446.569333pt;}
.x4d_c01444{left:448.089933pt;}
.x87_c01444{left:456.154667pt;}
.x10_c01444{left:459.764000pt;}
.x83_c01444{left:466.704067pt;}
.x3d_c01444{left:467.698655pt;}
.x28_c01444{left:469.154667pt;}
.x7f_c01444{left:475.338667pt;}
.x67_c01444{left:477.265333pt;}
.x88_c01444{left:484.194667pt;}
.x72_c01444{left:485.437333pt;}
.x52_c01444{left:496.496000pt;}
.x3e_c01444{left:497.430449pt;}
.x60_c01444{left:505.361333pt;}
.x29_c01444{left:508.018667pt;}
.x37_c01444{left:509.670667pt;}
.x53_c01444{left:515.425333pt;}
.x1a_c01444{left:518.580000pt;}
.x3f_c01444{left:525.263587pt;}
.x11_c01444{left:536.317333pt;}
.x23_c01444{left:537.553333pt;}
.x68_c01444{left:543.989333pt;}
.x58_c01444{left:545.633333pt;}
.x78_c01444{left:553.862667pt;}
.x45_c01444{left:555.542667pt;}
.x1b_c01444{left:556.480000pt;}
.x61_c01444{left:563.674667pt;}
.x38_c01444{left:565.861333pt;}
.x69_c01444{left:573.529333pt;}
.x24_c01444{left:576.189333pt;}
.x89_c01444{left:581.870667pt;}
.x73_c01444{left:591.769333pt;}
.x46_c01444{left:593.921333pt;}
.x12_c01444{left:595.837333pt;}
.x1c_c01444{left:597.037333pt;}
.x80_c01444{left:601.598667pt;}
.x2a_c01444{left:603.773333pt;}
.x8a_c01444{left:611.185333pt;}
.x6a_c01444{left:613.110667pt;}
.x81_c01444{left:620.769333pt;}
.x4a_c01444{left:622.936000pt;}
.x30_c01444{left:624.425333pt;}
.x13_c01444{left:625.602667pt;}
.x74_c01444{left:631.106667pt;}
.x40_c01444{left:633.026831pt;}
.x59_c01444{left:641.636000pt;}
.x2b_c01444{left:643.136000pt;}
.x39_c01444{left:644.082667pt;}
.x79_c01444{left:650.824000pt;}
.x54_c01444{left:660.616000pt;}
.x31_c01444{left:662.334667pt;}
.x14_c01444{left:664.244000pt;}
.x5a_c01444{left:671.152000pt;}
.x2c_c01444{left:672.416000pt;}
.x8b_c01444{left:679.309333pt;}
.x47_c01444{left:680.568000pt;}
.x82_c01444{left:690.856000pt;}
.x5b_c01444{left:700.196000pt;}
.x1d_c01444{left:702.164000pt;}
.x8c_c01444{left:707.638667pt;}
.x6b_c01444{left:710.069333pt;}
.x3a_c01444{left:711.526667pt;}
.x75_c01444{left:718.717333pt;}
.x55_c01444{left:720.842667pt;}
.x25_c01444{left:722.337333pt;}
.x62_c01444{left:729.281333pt;}
.x15_c01444{left:732.402667pt;}
.x6c_c01444{left:738.386667pt;}
.x4b_c01444{left:740.069333pt;}
.x7a_c01444{left:749.488000pt;}
.x41_c01444{left:751.802000pt;}
.x42_c01444{left:770.761869pt;}
.x8d_c01444{left:779.069333pt;}
}





/* 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_c01445 {
    display:none;
  }
  .loading-indicator_c01445.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01445 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_c01445 { 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_c01445" -> "#page-container .classname_c01445")
 */
.pf_c01445 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01445 { /* 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_c01445.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01445 { /* 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_c01445 { /* 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_c01445 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01445 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01445 {overflow:visible;}
  }
}
.c_c01445 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01445 { /* 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_c01445:after { /* webkit #35443 */
  content: '';
}
.t_c01445:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01445 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 */
}
.__c01445 { /* 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_c01445 { /* info for Javascript */
  display:none;
}
.l_c01445 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01445 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01445 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01445: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_c01445 {
    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_c01445.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01445.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_c01445 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01445{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01445;src:url('chunks/assets/font_e3fbdd6f747043a19966a9dc.woff2')format("woff");}.ff1_c01445{font-family:ff1_c01445;line-height:1.000000;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;}
.m3_c01445{transform:matrix(0.191065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191065,0.000000,0.000000,0.250000,0,0);}
.m4_c01445{transform:matrix(0.204020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204020,0.000000,0.000000,0.250000,0,0);}
.m0_c01445{transform:matrix(0.242775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242775,0.000000,0.000000,0.250000,0,0);}
.m1_c01445{transform:matrix(0.421205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421205,0.000000,0.000000,0.250000,0,0);}
.m2_c01445{transform:matrix(0.688410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.688410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.688410,0.000000,0.000000,0.250000,0,0);}
.m5_c01445{transform:matrix(0.818240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.818240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.818240,0.000000,0.000000,0.250000,0,0);}
.v0_c01445{vertical-align:0.000000px;}
.ls0_c01445{letter-spacing:0.000000px;}
.sc__c01445{text-shadow:none;}
.sc0_c01445{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__c01445{-webkit-text-stroke:0px transparent;}
.sc0_c01445{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01445{word-spacing:0.000000px;}
.fc0_c01445{color:transparent;}
.fs1_c01445{font-size:18.000000px;}
.fs3_c01445{font-size:24.000000px;}
.fs0_c01445{font-size:42.000000px;}
.fs2_c01445{font-size:102.000000px;}
.y0_c01445{bottom:0.000000px;}
.y6_c01445{bottom:334.800000px;}
.y5_c01445{bottom:363.420000px;}
.y4_c01445{bottom:610.740000px;}
.y3_c01445{bottom:626.940000px;}
.y2_c01445{bottom:747.900000px;}
.y1_c01445{bottom:767.070000px;}
.h3_c01445{height:18.000000px;}
.h5_c01445{height:24.000000px;}
.h2_c01445{height:42.000000px;}
.h4_c01445{height:102.000000px;}
.h0_c01445{height:1261.440000px;}
.h1_c01445{height:1261.500000px;}
.w0_c01445{width:912.000000px;}
.x0_c01445{left:0.000000px;}
.x1_c01445{left:9.990000px;}
.x2_c01445{left:11.340000px;}
.x4_c01445{left:576.990000px;}
.x3_c01445{left:742.500000px;}
@media print{
.v0_c01445{vertical-align:0.000000pt;}
.ls0_c01445{letter-spacing:0.000000pt;}
.ws0_c01445{word-spacing:0.000000pt;}
.fs1_c01445{font-size:16.000000pt;}
.fs3_c01445{font-size:21.333333pt;}
.fs0_c01445{font-size:37.333333pt;}
.fs2_c01445{font-size:90.666667pt;}
.y0_c01445{bottom:0.000000pt;}
.y6_c01445{bottom:297.600000pt;}
.y5_c01445{bottom:323.040000pt;}
.y4_c01445{bottom:542.880000pt;}
.y3_c01445{bottom:557.280000pt;}
.y2_c01445{bottom:664.800000pt;}
.y1_c01445{bottom:681.840000pt;}
.h3_c01445{height:16.000000pt;}
.h5_c01445{height:21.333333pt;}
.h2_c01445{height:37.333333pt;}
.h4_c01445{height:90.666667pt;}
.h0_c01445{height:1121.280000pt;}
.h1_c01445{height:1121.333333pt;}
.w0_c01445{width:810.666667pt;}
.x0_c01445{left:0.000000pt;}
.x1_c01445{left:8.880000pt;}
.x2_c01445{left:10.080000pt;}
.x4_c01445{left:512.880000pt;}
.x3_c01445{left:660.000000pt;}
}





/* 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_c01446 {
    display:none;
  }
  .loading-indicator_c01446.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01446 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_c01446 { 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_c01446" -> "#page-container .classname_c01446")
 */
.pf_c01446 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01446 { /* 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_c01446.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01446 { /* 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_c01446 { /* 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_c01446 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01446 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01446 {overflow:visible;}
  }
}
.c_c01446 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01446 { /* 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_c01446:after { /* webkit #35443 */
  content: '';
}
.t_c01446:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01446 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 */
}
.__c01446 { /* 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_c01446 { /* info for Javascript */
  display:none;
}
.l_c01446 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01446 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01446 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01446: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_c01446 {
    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_c01446.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01446.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_c01446 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01446{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01446;src:url('chunks/assets/font_c605e72f209fc835e906f064.woff2')format("woff");}.ff1_c01446{font-family:ff1_c01446;line-height:1.000000;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;}
.m89_c01446{transform:matrix(0.012725,0.000344,-0.006748,0.249909,0,0);-ms-transform:matrix(0.012725,0.000344,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.012725,0.000344,-0.006748,0.249909,0,0);}
.mca_c01446{transform:matrix(0.042425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.042425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.042425,0.000000,0.000000,0.250000,0,0);}
.mc9_c01446{transform:matrix(0.047435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.047435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.047435,0.000000,0.000000,0.250000,0,0);}
.m96_c01446{transform:matrix(0.050192,0.001355,-0.006748,0.249909,0,0);-ms-transform:matrix(0.050192,0.001355,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.050192,0.001355,-0.006748,0.249909,0,0);}
.mff_c01446{transform:matrix(0.100330,0.003314,-0.008254,0.249864,0,0);-ms-transform:matrix(0.100330,0.003314,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.100330,0.003314,-0.008254,0.249864,0,0);}
.m37_c01446{transform:matrix(0.102606,0.003492,-0.008504,0.249855,0,0);-ms-transform:matrix(0.102606,0.003492,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.102606,0.003492,-0.008504,0.249855,0,0);}
.mf9_c01446{transform:matrix(0.109755,0.003626,-0.008254,0.249864,0,0);-ms-transform:matrix(0.109755,0.003626,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.109755,0.003626,-0.008254,0.249864,0,0);}
.m8a_c01446{transform:matrix(0.116802,0.003154,-0.006748,0.249909,0,0);-ms-transform:matrix(0.116802,0.003154,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.116802,0.003154,-0.006748,0.249909,0,0);}
.m8b_c01446{transform:matrix(0.119177,0.003218,-0.006748,0.249909,0,0);-ms-transform:matrix(0.119177,0.003218,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.119177,0.003218,-0.006748,0.249909,0,0);}
.m0_c01446{transform:matrix(0.119940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119940,0.000000,0.000000,0.250000,0,0);}
.m36_c01446{transform:matrix(0.122749,0.004178,-0.008504,0.249855,0,0);-ms-transform:matrix(0.122749,0.004178,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.122749,0.004178,-0.008504,0.249855,0,0);}
.m7e_c01446{transform:matrix(0.127450,0.004082,-0.008004,0.249872,0,0);-ms-transform:matrix(0.127450,0.004082,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.127450,0.004082,-0.008004,0.249872,0,0);}
.m98_c01446{transform:matrix(0.129672,0.003890,-0.007497,0.249888,0,0);-ms-transform:matrix(0.129672,0.003890,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.129672,0.003890,-0.007497,0.249888,0,0);}
.m10e_c01446{transform:matrix(0.130800,0.004583,-0.008753,0.249847,0,0);-ms-transform:matrix(0.130800,0.004583,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.130800,0.004583,-0.008753,0.249847,0,0);}
.mea_c01446{transform:matrix(0.139459,0.004746,-0.008504,0.249855,0,0);-ms-transform:matrix(0.139459,0.004746,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.139459,0.004746,-0.008504,0.249855,0,0);}
.mf8_c01446{transform:matrix(0.139634,0.004613,-0.008254,0.249864,0,0);-ms-transform:matrix(0.139634,0.004613,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.139634,0.004613,-0.008254,0.249864,0,0);}
.m10d_c01446{transform:matrix(0.141123,0.004944,-0.008753,0.249847,0,0);-ms-transform:matrix(0.141123,0.004944,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.141123,0.004944,-0.008753,0.249847,0,0);}
.md8_c01446{transform:matrix(0.141968,0.004832,-0.008504,0.249855,0,0);-ms-transform:matrix(0.141968,0.004832,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.141968,0.004832,-0.008504,0.249855,0,0);}
.m4_c01446{transform:matrix(0.148274,0.004750,-0.008004,0.249872,0,0);-ms-transform:matrix(0.148274,0.004750,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.148274,0.004750,-0.008004,0.249872,0,0);}
.m5c_c01446{transform:matrix(0.148789,0.004915,-0.008254,0.249864,0,0);-ms-transform:matrix(0.148789,0.004915,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.148789,0.004915,-0.008254,0.249864,0,0);}
.m5d_c01446{transform:matrix(0.150688,0.004978,-0.008254,0.249864,0,0);-ms-transform:matrix(0.150688,0.004978,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.150688,0.004978,-0.008254,0.249864,0,0);}
.m70_c01446{transform:matrix(0.151277,0.004846,-0.008004,0.249872,0,0);-ms-transform:matrix(0.151277,0.004846,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.151277,0.004846,-0.008004,0.249872,0,0);}
.m4c_c01446{transform:matrix(0.151642,0.005009,-0.008254,0.249864,0,0);-ms-transform:matrix(0.151642,0.005009,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.151642,0.005009,-0.008254,0.249864,0,0);}
.mb0_c01446{transform:matrix(0.156559,0.005328,-0.008504,0.249855,0,0);-ms-transform:matrix(0.156559,0.005328,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.156559,0.005328,-0.008504,0.249855,0,0);}
.mbb_c01446{transform:matrix(0.156964,0.005342,-0.008504,0.249855,0,0);-ms-transform:matrix(0.156964,0.005342,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.156964,0.005342,-0.008504,0.249855,0,0);}
.m22_c01446{transform:matrix(0.162017,0.005023,-0.007746,0.249880,0,0);-ms-transform:matrix(0.162017,0.005023,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.162017,0.005023,-0.007746,0.249880,0,0);}
.m15_c01446{transform:matrix(0.165041,0.004951,-0.007497,0.249888,0,0);-ms-transform:matrix(0.165041,0.004951,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.165041,0.004951,-0.007497,0.249888,0,0);}
.m62_c01446{transform:matrix(0.165939,0.005481,-0.008254,0.249864,0,0);-ms-transform:matrix(0.165939,0.005481,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.165939,0.005481,-0.008254,0.249864,0,0);}
.mcc_c01446{transform:matrix(0.171025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171025,0.000000,0.000000,0.250000,0,0);}
.m99_c01446{transform:matrix(0.173017,0.005191,-0.007497,0.249888,0,0);-ms-transform:matrix(0.173017,0.005191,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.173017,0.005191,-0.007497,0.249888,0,0);}
.m1_c01446{transform:matrix(0.175265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175265,0.000000,0.000000,0.250000,0,0);}
.m100_c01446{transform:matrix(0.176409,0.005827,-0.008254,0.249864,0,0);-ms-transform:matrix(0.176409,0.005827,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.176409,0.005827,-0.008254,0.249864,0,0);}
.m41_c01446{transform:matrix(0.179306,0.006103,-0.008504,0.249855,0,0);-ms-transform:matrix(0.179306,0.006103,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.179306,0.006103,-0.008504,0.249855,0,0);}
.md9_c01446{transform:matrix(0.182025,0.006195,-0.008504,0.249855,0,0);-ms-transform:matrix(0.182025,0.006195,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.182025,0.006195,-0.008504,0.249855,0,0);}
.m8d_c01446{transform:matrix(0.183553,0.004956,-0.006748,0.249909,0,0);-ms-transform:matrix(0.183553,0.004956,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.183553,0.004956,-0.006748,0.249909,0,0);}
.mf3_c01446{transform:matrix(0.185023,0.006297,-0.008504,0.249855,0,0);-ms-transform:matrix(0.185023,0.006297,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.185023,0.006297,-0.008504,0.249855,0,0);}
.meb_c01446{transform:matrix(0.185942,0.006328,-0.008504,0.249855,0,0);-ms-transform:matrix(0.185942,0.006328,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.185942,0.006328,-0.008504,0.249855,0,0);}
.m7_c01446{transform:matrix(0.187069,0.005992,-0.008004,0.249872,0,0);-ms-transform:matrix(0.187069,0.005992,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.187069,0.005992,-0.008004,0.249872,0,0);}
.m8e_c01446{transform:matrix(0.192450,0.005196,-0.006748,0.249909,0,0);-ms-transform:matrix(0.192450,0.005196,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.192450,0.005196,-0.006748,0.249909,0,0);}
.mb1_c01446{transform:matrix(0.193938,0.006600,-0.008504,0.249855,0,0);-ms-transform:matrix(0.193938,0.006600,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.193938,0.006600,-0.008504,0.249855,0,0);}
.m39_c01446{transform:matrix(0.196012,0.006671,-0.008504,0.249855,0,0);-ms-transform:matrix(0.196012,0.006671,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.196012,0.006671,-0.008504,0.249855,0,0);}
.m9b_c01446{transform:matrix(0.199010,0.005970,-0.007497,0.249888,0,0);-ms-transform:matrix(0.199010,0.005970,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.199010,0.005970,-0.007497,0.249888,0,0);}
.m91_c01446{transform:matrix(0.200177,0.005405,-0.006748,0.249909,0,0);-ms-transform:matrix(0.200177,0.005405,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.200177,0.005405,-0.006748,0.249909,0,0);}
.m4d_c01446{transform:matrix(0.200920,0.006637,-0.008254,0.249864,0,0);-ms-transform:matrix(0.200920,0.006637,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.200920,0.006637,-0.008254,0.249864,0,0);}
.m2_c01446{transform:matrix(0.201335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201335,0.000000,0.000000,0.250000,0,0);}
.m71_c01446{transform:matrix(0.201452,0.006453,-0.008004,0.249872,0,0);-ms-transform:matrix(0.201452,0.006453,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.201452,0.006453,-0.008004,0.249872,0,0);}
.mf6_c01446{transform:matrix(0.202498,0.006892,-0.008504,0.249855,0,0);-ms-transform:matrix(0.202498,0.006892,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.202498,0.006892,-0.008504,0.249855,0,0);}
.m114_c01446{transform:matrix(0.204000,0.007147,-0.008753,0.249847,0,0);-ms-transform:matrix(0.204000,0.007147,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.204000,0.007147,-0.008753,0.249847,0,0);}
.mdd_c01446{transform:matrix(0.207275,0.007054,-0.008504,0.249855,0,0);-ms-transform:matrix(0.207275,0.007054,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.207275,0.007054,-0.008504,0.249855,0,0);}
.m11c_c01446{transform:matrix(0.207907,0.007284,-0.008753,0.249847,0,0);-ms-transform:matrix(0.207907,0.007284,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.207907,0.007284,-0.008753,0.249847,0,0);}
.m94_c01446{transform:matrix(0.208049,0.005617,-0.006748,0.249909,0,0);-ms-transform:matrix(0.208049,0.005617,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.208049,0.005617,-0.006748,0.249909,0,0);}
.m3d_c01446{transform:matrix(0.208344,0.007091,-0.008504,0.249855,0,0);-ms-transform:matrix(0.208344,0.007091,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.208344,0.007091,-0.008504,0.249855,0,0);}
.m3a_c01446{transform:matrix(0.209099,0.007116,-0.008504,0.249855,0,0);-ms-transform:matrix(0.209099,0.007116,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.209099,0.007116,-0.008504,0.249855,0,0);}
.m9c_c01446{transform:matrix(0.209821,0.006295,-0.007497,0.249888,0,0);-ms-transform:matrix(0.209821,0.006295,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.209821,0.006295,-0.007497,0.249888,0,0);}
.m23_c01446{transform:matrix(0.210589,0.006528,-0.007746,0.249880,0,0);-ms-transform:matrix(0.210589,0.006528,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.210589,0.006528,-0.007746,0.249880,0,0);}
.mf0_c01446{transform:matrix(0.211093,0.007184,-0.008504,0.249855,0,0);-ms-transform:matrix(0.211093,0.007184,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.211093,0.007184,-0.008504,0.249855,0,0);}
.me8_c01446{transform:matrix(0.211807,0.007209,-0.008504,0.249855,0,0);-ms-transform:matrix(0.211807,0.007209,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.211807,0.007209,-0.008504,0.249855,0,0);}
.ma7_c01446{transform:matrix(0.212404,0.006372,-0.007497,0.249888,0,0);-ms-transform:matrix(0.212404,0.006372,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.212404,0.006372,-0.007497,0.249888,0,0);}
.m34_c01446{transform:matrix(0.212933,0.006601,-0.007746,0.249880,0,0);-ms-transform:matrix(0.212933,0.006601,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.212933,0.006601,-0.007746,0.249880,0,0);}
.mf2_c01446{transform:matrix(0.213012,0.007250,-0.008504,0.249855,0,0);-ms-transform:matrix(0.213012,0.007250,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.213012,0.007250,-0.008504,0.249855,0,0);}
.m8f_c01446{transform:matrix(0.213987,0.005778,-0.006748,0.249909,0,0);-ms-transform:matrix(0.213987,0.005778,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.213987,0.005778,-0.006748,0.249909,0,0);}
.me3_c01446{transform:matrix(0.214291,0.007293,-0.008504,0.249855,0,0);-ms-transform:matrix(0.214291,0.007293,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.214291,0.007293,-0.008504,0.249855,0,0);}
.m66_c01446{transform:matrix(0.214586,0.007303,-0.008504,0.249855,0,0);-ms-transform:matrix(0.214586,0.007303,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.214586,0.007303,-0.008504,0.249855,0,0);}
.mfe_c01446{transform:matrix(0.214838,0.007097,-0.008254,0.249864,0,0);-ms-transform:matrix(0.214838,0.007097,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.214838,0.007097,-0.008254,0.249864,0,0);}
.me0_c01446{transform:matrix(0.214936,0.007315,-0.008504,0.249855,0,0);-ms-transform:matrix(0.214936,0.007315,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.214936,0.007315,-0.008504,0.249855,0,0);}
.m1e_c01446{transform:matrix(0.215063,0.006452,-0.007497,0.249888,0,0);-ms-transform:matrix(0.215063,0.006452,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.215063,0.006452,-0.007497,0.249888,0,0);}
.m88_c01446{transform:matrix(0.215277,0.005812,-0.006748,0.249909,0,0);-ms-transform:matrix(0.215277,0.005812,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.215277,0.005812,-0.006748,0.249909,0,0);}
.ma0_c01446{transform:matrix(0.217267,0.006518,-0.007497,0.249888,0,0);-ms-transform:matrix(0.217267,0.006518,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.217267,0.006518,-0.007497,0.249888,0,0);}
.m42_c01446{transform:matrix(0.217994,0.007419,-0.008504,0.249855,0,0);-ms-transform:matrix(0.217994,0.007419,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.217994,0.007419,-0.008504,0.249855,0,0);}
.m8c_c01446{transform:matrix(0.218405,0.005897,-0.006748,0.249909,0,0);-ms-transform:matrix(0.218405,0.005897,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.218405,0.005897,-0.006748,0.249909,0,0);}
.m11d_c01446{transform:matrix(0.218511,0.007656,-0.008753,0.249847,0,0);-ms-transform:matrix(0.218511,0.007656,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.218511,0.007656,-0.008753,0.249847,0,0);}
.me4_c01446{transform:matrix(0.218813,0.007447,-0.008504,0.249855,0,0);-ms-transform:matrix(0.218813,0.007447,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.218813,0.007447,-0.008504,0.249855,0,0);}
.m3e_c01446{transform:matrix(0.219423,0.007468,-0.008504,0.249855,0,0);-ms-transform:matrix(0.219423,0.007468,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.219423,0.007468,-0.008504,0.249855,0,0);}
.m11a_c01446{transform:matrix(0.219455,0.007689,-0.008753,0.249847,0,0);-ms-transform:matrix(0.219455,0.007689,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.219455,0.007689,-0.008753,0.249847,0,0);}
.m2f_c01446{transform:matrix(0.219814,0.006814,-0.007746,0.249880,0,0);-ms-transform:matrix(0.219814,0.006814,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.219814,0.006814,-0.007746,0.249880,0,0);}
.m83_c01446{transform:matrix(0.219902,0.007044,-0.008004,0.249872,0,0);-ms-transform:matrix(0.219902,0.007044,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.219902,0.007044,-0.008004,0.249872,0,0);}
.m93_c01446{transform:matrix(0.220220,0.005946,-0.006748,0.249909,0,0);-ms-transform:matrix(0.220220,0.005946,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.220220,0.005946,-0.006748,0.249909,0,0);}
.mb9_c01446{transform:matrix(0.221247,0.007530,-0.008504,0.249855,0,0);-ms-transform:matrix(0.221247,0.007530,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.221247,0.007530,-0.008504,0.249855,0,0);}
.maf_c01446{transform:matrix(0.221314,0.007754,-0.008753,0.249847,0,0);-ms-transform:matrix(0.221314,0.007754,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.221314,0.007754,-0.008753,0.249847,0,0);}
.me1_c01446{transform:matrix(0.221327,0.007533,-0.008504,0.249855,0,0);-ms-transform:matrix(0.221327,0.007533,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.221327,0.007533,-0.008504,0.249855,0,0);}
.m95_c01446{transform:matrix(0.221399,0.005978,-0.006748,0.249909,0,0);-ms-transform:matrix(0.221399,0.005978,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.221399,0.005978,-0.006748,0.249909,0,0);}
.me6_c01446{transform:matrix(0.221472,0.007538,-0.008504,0.249855,0,0);-ms-transform:matrix(0.221472,0.007538,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.221472,0.007538,-0.008504,0.249855,0,0);}
.m40_c01446{transform:matrix(0.223146,0.007595,-0.008504,0.249855,0,0);-ms-transform:matrix(0.223146,0.007595,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.223146,0.007595,-0.008504,0.249855,0,0);}
.mb5_c01446{transform:matrix(0.223266,0.007599,-0.008504,0.249855,0,0);-ms-transform:matrix(0.223266,0.007599,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.223266,0.007599,-0.008504,0.249855,0,0);}
.ma1_c01446{transform:matrix(0.223330,0.006700,-0.007497,0.249888,0,0);-ms-transform:matrix(0.223330,0.006700,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.223330,0.006700,-0.007497,0.249888,0,0);}
.m16_c01446{transform:matrix(0.223749,0.006712,-0.007497,0.249888,0,0);-ms-transform:matrix(0.223749,0.006712,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.223749,0.006712,-0.007497,0.249888,0,0);}
.mde_c01446{transform:matrix(0.223950,0.007622,-0.008504,0.249855,0,0);-ms-transform:matrix(0.223950,0.007622,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.223950,0.007622,-0.008504,0.249855,0,0);}
.ma2_c01446{transform:matrix(0.225159,0.006755,-0.007497,0.249888,0,0);-ms-transform:matrix(0.225159,0.006755,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.225159,0.006755,-0.007497,0.249888,0,0);}
.mf1_c01446{transform:matrix(0.225185,0.007664,-0.008504,0.249855,0,0);-ms-transform:matrix(0.225185,0.007664,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.225185,0.007664,-0.008504,0.249855,0,0);}
.mfb_c01446{transform:matrix(0.226027,0.007466,-0.008254,0.249864,0,0);-ms-transform:matrix(0.226027,0.007466,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.226027,0.007466,-0.008254,0.249864,0,0);}
.m9d_c01446{transform:matrix(0.226228,0.006787,-0.007497,0.249888,0,0);-ms-transform:matrix(0.226228,0.006787,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.226228,0.006787,-0.007497,0.249888,0,0);}
.mf5_c01446{transform:matrix(0.226289,0.007702,-0.008504,0.249855,0,0);-ms-transform:matrix(0.226289,0.007702,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.226289,0.007702,-0.008504,0.249855,0,0);}
.m105_c01446{transform:matrix(0.226873,0.008176,-0.009003,0.249838,0,0);-ms-transform:matrix(0.226873,0.008176,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.226873,0.008176,-0.009003,0.249838,0,0);}
.ma9_c01446{transform:matrix(0.228002,0.006840,-0.007497,0.249888,0,0);-ms-transform:matrix(0.228002,0.006840,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.228002,0.006840,-0.007497,0.249888,0,0);}
.me2_c01446{transform:matrix(0.228533,0.007778,-0.008504,0.249855,0,0);-ms-transform:matrix(0.228533,0.007778,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.228533,0.007778,-0.008504,0.249855,0,0);}
.m9e_c01446{transform:matrix(0.228597,0.006858,-0.007497,0.249888,0,0);-ms-transform:matrix(0.228597,0.006858,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.228597,0.006858,-0.007497,0.249888,0,0);}
.mb8_c01446{transform:matrix(0.228683,0.007783,-0.008504,0.249855,0,0);-ms-transform:matrix(0.228683,0.007783,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.228683,0.007783,-0.008504,0.249855,0,0);}
.m117_c01446{transform:matrix(0.229064,0.008025,-0.008753,0.249847,0,0);-ms-transform:matrix(0.229064,0.008025,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.229064,0.008025,-0.008753,0.249847,0,0);}
.m119_c01446{transform:matrix(0.229154,0.008028,-0.008753,0.249847,0,0);-ms-transform:matrix(0.229154,0.008028,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.229154,0.008028,-0.008753,0.249847,0,0);}
.m116_c01446{transform:matrix(0.229359,0.008036,-0.008753,0.249847,0,0);-ms-transform:matrix(0.229359,0.008036,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.229359,0.008036,-0.008753,0.249847,0,0);}
.m3f_c01446{transform:matrix(0.229502,0.007811,-0.008504,0.249855,0,0);-ms-transform:matrix(0.229502,0.007811,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.229502,0.007811,-0.008504,0.249855,0,0);}
.m3b_c01446{transform:matrix(0.229982,0.007827,-0.008504,0.249855,0,0);-ms-transform:matrix(0.229982,0.007827,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.229982,0.007827,-0.008504,0.249855,0,0);}
.m4f_c01446{transform:matrix(0.230089,0.007601,-0.008254,0.249864,0,0);-ms-transform:matrix(0.230089,0.007601,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.230089,0.007601,-0.008254,0.249864,0,0);}
.mc_c01446{transform:matrix(0.230097,0.007370,-0.008004,0.249872,0,0);-ms-transform:matrix(0.230097,0.007370,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.230097,0.007370,-0.008004,0.249872,0,0);}
.mdb_c01446{transform:matrix(0.231486,0.007878,-0.008504,0.249855,0,0);-ms-transform:matrix(0.231486,0.007878,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.231486,0.007878,-0.008504,0.249855,0,0);}
.mef_c01446{transform:matrix(0.231971,0.007895,-0.008504,0.249855,0,0);-ms-transform:matrix(0.231971,0.007895,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.231971,0.007895,-0.008504,0.249855,0,0);}
.m3c_c01446{transform:matrix(0.232166,0.007902,-0.008504,0.249855,0,0);-ms-transform:matrix(0.232166,0.007902,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.232166,0.007902,-0.008504,0.249855,0,0);}
.m113_c01446{transform:matrix(0.232957,0.008162,-0.008753,0.249847,0,0);-ms-transform:matrix(0.232957,0.008162,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.232957,0.008162,-0.008753,0.249847,0,0);}
.m80_c01446{transform:matrix(0.234959,0.007526,-0.008004,0.249872,0,0);-ms-transform:matrix(0.234959,0.007526,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.234959,0.007526,-0.008004,0.249872,0,0);}
.m9a_c01446{transform:matrix(0.235149,0.007054,-0.007497,0.249888,0,0);-ms-transform:matrix(0.235149,0.007054,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.235149,0.007054,-0.007497,0.249888,0,0);}
.m10f_c01446{transform:matrix(0.235625,0.008255,-0.008753,0.249847,0,0);-ms-transform:matrix(0.235625,0.008255,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.235625,0.008255,-0.008753,0.249847,0,0);}
.me_c01446{transform:matrix(0.235634,0.007548,-0.008004,0.249872,0,0);-ms-transform:matrix(0.235634,0.007548,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.235634,0.007548,-0.008004,0.249872,0,0);}
.m38_c01446{transform:matrix(0.235873,0.008028,-0.008504,0.249855,0,0);-ms-transform:matrix(0.235873,0.008028,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.235873,0.008028,-0.008504,0.249855,0,0);}
.mfc_c01446{transform:matrix(0.235876,0.007792,-0.008254,0.249864,0,0);-ms-transform:matrix(0.235876,0.007792,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.235876,0.007792,-0.008254,0.249864,0,0);}
.m118_c01446{transform:matrix(0.236245,0.008277,-0.008753,0.249847,0,0);-ms-transform:matrix(0.236245,0.008277,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.236245,0.008277,-0.008753,0.249847,0,0);}
.mdc_c01446{transform:matrix(0.236818,0.008060,-0.008504,0.249855,0,0);-ms-transform:matrix(0.236818,0.008060,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.236818,0.008060,-0.008504,0.249855,0,0);}
.m115_c01446{transform:matrix(0.236920,0.008300,-0.008753,0.249847,0,0);-ms-transform:matrix(0.236920,0.008300,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.236920,0.008300,-0.008753,0.249847,0,0);}
.mfd_c01446{transform:matrix(0.236981,0.007828,-0.008254,0.249864,0,0);-ms-transform:matrix(0.236981,0.007828,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.236981,0.007828,-0.008254,0.249864,0,0);}
.ma6_c01446{transform:matrix(0.237078,0.007112,-0.007497,0.249888,0,0);-ms-transform:matrix(0.237078,0.007112,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.237078,0.007112,-0.007497,0.249888,0,0);}
.ma4_c01446{transform:matrix(0.237198,0.007116,-0.007497,0.249888,0,0);-ms-transform:matrix(0.237198,0.007116,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.237198,0.007116,-0.007497,0.249888,0,0);}
.m11b_c01446{transform:matrix(0.237764,0.008330,-0.008753,0.249847,0,0);-ms-transform:matrix(0.237764,0.008330,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.237764,0.008330,-0.008753,0.249847,0,0);}
.m53_c01446{transform:matrix(0.238025,0.007863,-0.008254,0.249864,0,0);-ms-transform:matrix(0.238025,0.007863,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.238025,0.007863,-0.008254,0.249864,0,0);}
.me5_c01446{transform:matrix(0.238162,0.008106,-0.008504,0.249855,0,0);-ms-transform:matrix(0.238162,0.008106,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.238162,0.008106,-0.008504,0.249855,0,0);}
.mb6_c01446{transform:matrix(0.238842,0.008129,-0.008504,0.249855,0,0);-ms-transform:matrix(0.238842,0.008129,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.238842,0.008129,-0.008504,0.249855,0,0);}
.m76_c01446{transform:matrix(0.238892,0.007652,-0.008004,0.249872,0,0);-ms-transform:matrix(0.238892,0.007652,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.238892,0.007652,-0.008004,0.249872,0,0);}
.m28_c01446{transform:matrix(0.239670,0.007430,-0.007746,0.249880,0,0);-ms-transform:matrix(0.239670,0.007430,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.239670,0.007430,-0.007746,0.249880,0,0);}
.m5e_c01446{transform:matrix(0.240509,0.007945,-0.008254,0.249864,0,0);-ms-transform:matrix(0.240509,0.007945,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.240509,0.007945,-0.008254,0.249864,0,0);}
.mac_c01446{transform:matrix(0.241886,0.007257,-0.007497,0.249888,0,0);-ms-transform:matrix(0.241886,0.007257,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.241886,0.007257,-0.007497,0.249888,0,0);}
.m112_c01446{transform:matrix(0.242111,0.008482,-0.008753,0.249847,0,0);-ms-transform:matrix(0.242111,0.008482,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.242111,0.008482,-0.008753,0.249847,0,0);}
.ma3_c01446{transform:matrix(0.242796,0.007284,-0.007497,0.249888,0,0);-ms-transform:matrix(0.242796,0.007284,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.242796,0.007284,-0.007497,0.249888,0,0);}
.mae_c01446{transform:matrix(0.242961,0.008512,-0.008753,0.249847,0,0);-ms-transform:matrix(0.242961,0.008512,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.242961,0.008512,-0.008753,0.249847,0,0);}
.mee_c01446{transform:matrix(0.243554,0.008289,-0.008504,0.249855,0,0);-ms-transform:matrix(0.243554,0.008289,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.243554,0.008289,-0.008504,0.249855,0,0);}
.mbc_c01446{transform:matrix(0.243934,0.008302,-0.008504,0.249855,0,0);-ms-transform:matrix(0.243934,0.008302,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.243934,0.008302,-0.008504,0.249855,0,0);}
.m102_c01446{transform:matrix(0.244361,0.008806,-0.009003,0.249838,0,0);-ms-transform:matrix(0.244361,0.008806,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.244361,0.008806,-0.009003,0.249838,0,0);}
.mdf_c01446{transform:matrix(0.244418,0.008319,-0.008504,0.249855,0,0);-ms-transform:matrix(0.244418,0.008319,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.244418,0.008319,-0.008504,0.249855,0,0);}
.m81_c01446{transform:matrix(0.245334,0.007859,-0.008004,0.249872,0,0);-ms-transform:matrix(0.245334,0.007859,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.245334,0.007859,-0.008004,0.249872,0,0);}
.m69_c01446{transform:matrix(0.245828,0.008367,-0.008504,0.249855,0,0);-ms-transform:matrix(0.245828,0.008367,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.245828,0.008367,-0.008504,0.249855,0,0);}
.m9_c01446{transform:matrix(0.246379,0.007892,-0.008004,0.249872,0,0);-ms-transform:matrix(0.246379,0.007892,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.246379,0.007892,-0.008004,0.249872,0,0);}
.m64_c01446{transform:matrix(0.247370,0.008171,-0.008254,0.249864,0,0);-ms-transform:matrix(0.247370,0.008171,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.247370,0.008171,-0.008254,0.249864,0,0);}
.m2c_c01446{transform:matrix(0.247476,0.007672,-0.007746,0.249880,0,0);-ms-transform:matrix(0.247476,0.007672,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.247476,0.007672,-0.007746,0.249880,0,0);}
.mb3_c01446{transform:matrix(0.248301,0.008451,-0.008504,0.249855,0,0);-ms-transform:matrix(0.248301,0.008451,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.248301,0.008451,-0.008504,0.249855,0,0);}
.me7_c01446{transform:matrix(0.248481,0.008457,-0.008504,0.249855,0,0);-ms-transform:matrix(0.248481,0.008457,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.248481,0.008457,-0.008504,0.249855,0,0);}
.m56_c01446{transform:matrix(0.249079,0.008228,-0.008254,0.249864,0,0);-ms-transform:matrix(0.249079,0.008228,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.249079,0.008228,-0.008254,0.249864,0,0);}
.mc2_c01446{transform:matrix(0.249471,0.008490,-0.008504,0.249855,0,0);-ms-transform:matrix(0.249471,0.008490,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.249471,0.008490,-0.008504,0.249855,0,0);}
.m90_c01446{transform:matrix(0.249629,0.006740,-0.006748,0.249909,0,0);-ms-transform:matrix(0.249629,0.006740,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.249629,0.006740,-0.006748,0.249909,0,0);}
.mbf_c01446{transform:matrix(0.249890,0.008505,-0.008504,0.249855,0,0);-ms-transform:matrix(0.249890,0.008505,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.249890,0.008505,-0.008504,0.249855,0,0);}
.mec_c01446{transform:matrix(0.250935,0.008540,-0.008504,0.249855,0,0);-ms-transform:matrix(0.250935,0.008540,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.250935,0.008540,-0.008504,0.249855,0,0);}
.m6d_c01446{transform:matrix(0.250973,0.009295,-0.009253,0.249829,0,0);-ms-transform:matrix(0.250973,0.009295,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.250973,0.009295,-0.009253,0.249829,0,0);}
.mda_c01446{transform:matrix(0.251045,0.008544,-0.008504,0.249855,0,0);-ms-transform:matrix(0.251045,0.008544,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.251045,0.008544,-0.008504,0.249855,0,0);}
.m6c_c01446{transform:matrix(0.251300,0.008553,-0.008504,0.249855,0,0);-ms-transform:matrix(0.251300,0.008553,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.251300,0.008553,-0.008504,0.249855,0,0);}
.m3_c01446{transform:matrix(0.251676,0.008062,-0.008004,0.249872,0,0);-ms-transform:matrix(0.251676,0.008062,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.251676,0.008062,-0.008004,0.249872,0,0);}
.mfa_c01446{transform:matrix(0.252307,0.008334,-0.008254,0.249864,0,0);-ms-transform:matrix(0.252307,0.008334,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.252307,0.008334,-0.008254,0.249864,0,0);}
.mf4_c01446{transform:matrix(0.252439,0.008592,-0.008504,0.249855,0,0);-ms-transform:matrix(0.252439,0.008592,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.252439,0.008592,-0.008504,0.249855,0,0);}
.mc5_c01446{transform:matrix(0.252534,0.008595,-0.008504,0.249855,0,0);-ms-transform:matrix(0.252534,0.008595,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.252534,0.008595,-0.008504,0.249855,0,0);}
.m63_c01446{transform:matrix(0.252707,0.008348,-0.008254,0.249864,0,0);-ms-transform:matrix(0.252707,0.008348,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.252707,0.008348,-0.008254,0.249864,0,0);}
.m1d_c01446{transform:matrix(0.253871,0.007616,-0.007497,0.249888,0,0);-ms-transform:matrix(0.253871,0.007616,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.253871,0.007616,-0.007497,0.249888,0,0);}
.m92_c01446{transform:matrix(0.253902,0.006855,-0.006748,0.249909,0,0);-ms-transform:matrix(0.253902,0.006855,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.253902,0.006855,-0.006748,0.249909,0,0);}
.m107_c01446{transform:matrix(0.254000,0.009153,-0.009003,0.249838,0,0);-ms-transform:matrix(0.254000,0.009153,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.254000,0.009153,-0.009003,0.249838,0,0);}
.m11_c01446{transform:matrix(0.254051,0.007622,-0.007497,0.249888,0,0);-ms-transform:matrix(0.254051,0.007622,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.254051,0.007622,-0.007497,0.249888,0,0);}
.m54_c01446{transform:matrix(0.254206,0.008397,-0.008254,0.249864,0,0);-ms-transform:matrix(0.254206,0.008397,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.254206,0.008397,-0.008254,0.249864,0,0);}
.m106_c01446{transform:matrix(0.254775,0.009181,-0.009003,0.249838,0,0);-ms-transform:matrix(0.254775,0.009181,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.254775,0.009181,-0.009003,0.249838,0,0);}
.me9_c01446{transform:matrix(0.255037,0.008680,-0.008504,0.249855,0,0);-ms-transform:matrix(0.255037,0.008680,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.255037,0.008680,-0.008504,0.249855,0,0);}
.m68_c01446{transform:matrix(0.255057,0.008681,-0.008504,0.249855,0,0);-ms-transform:matrix(0.255057,0.008681,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.255057,0.008681,-0.008504,0.249855,0,0);}
.m6e_c01446{transform:matrix(0.255490,0.009463,-0.009253,0.249829,0,0);-ms-transform:matrix(0.255490,0.009463,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.255490,0.009463,-0.009253,0.249829,0,0);}
.m45_c01446{transform:matrix(0.255542,0.007922,-0.007746,0.249880,0,0);-ms-transform:matrix(0.255542,0.007922,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.255542,0.007922,-0.007746,0.249880,0,0);}
.m7b_c01446{transform:matrix(0.255599,0.008187,-0.008004,0.249872,0,0);-ms-transform:matrix(0.255599,0.008187,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.255599,0.008187,-0.008004,0.249872,0,0);}
.med_c01446{transform:matrix(0.255722,0.008703,-0.008504,0.249855,0,0);-ms-transform:matrix(0.255722,0.008703,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.255722,0.008703,-0.008504,0.249855,0,0);}
.mb4_c01446{transform:matrix(0.255857,0.008708,-0.008504,0.249855,0,0);-ms-transform:matrix(0.255857,0.008708,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.255857,0.008708,-0.008504,0.249855,0,0);}
.mba_c01446{transform:matrix(0.256137,0.008717,-0.008504,0.249855,0,0);-ms-transform:matrix(0.256137,0.008717,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.256137,0.008717,-0.008504,0.249855,0,0);}
.m10a_c01446{transform:matrix(0.256284,0.009235,-0.009003,0.249838,0,0);-ms-transform:matrix(0.256284,0.009235,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.256284,0.009235,-0.009003,0.249838,0,0);}
.m77_c01446{transform:matrix(0.256508,0.008216,-0.008004,0.249872,0,0);-ms-transform:matrix(0.256508,0.008216,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.256508,0.008216,-0.008004,0.249872,0,0);}
.m25_c01446{transform:matrix(0.256937,0.007965,-0.007746,0.249880,0,0);-ms-transform:matrix(0.256937,0.007965,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.256937,0.007965,-0.007746,0.249880,0,0);}
.m10c_c01446{transform:matrix(0.257013,0.009262,-0.009003,0.249838,0,0);-ms-transform:matrix(0.257013,0.009262,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.257013,0.009262,-0.009003,0.249838,0,0);}
.m33_c01446{transform:matrix(0.257166,0.007972,-0.007746,0.249880,0,0);-ms-transform:matrix(0.257166,0.007972,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.257166,0.007972,-0.007746,0.249880,0,0);}
.m8_c01446{transform:matrix(0.257913,0.008261,-0.008004,0.249872,0,0);-ms-transform:matrix(0.257913,0.008261,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.257913,0.008261,-0.008004,0.249872,0,0);}
.m111_c01446{transform:matrix(0.258366,0.009052,-0.008753,0.249847,0,0);-ms-transform:matrix(0.258366,0.009052,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.258366,0.009052,-0.008753,0.249847,0,0);}
.m101_c01446{transform:matrix(0.258884,0.008552,-0.008254,0.249864,0,0);-ms-transform:matrix(0.258884,0.008552,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.258884,0.008552,-0.008254,0.249864,0,0);}
.m55_c01446{transform:matrix(0.259199,0.008562,-0.008254,0.249864,0,0);-ms-transform:matrix(0.259199,0.008562,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.259199,0.008562,-0.008254,0.249864,0,0);}
.m73_c01446{transform:matrix(0.259482,0.008312,-0.008004,0.249872,0,0);-ms-transform:matrix(0.259482,0.008312,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.259482,0.008312,-0.008004,0.249872,0,0);}
.m6b_c01446{transform:matrix(0.259690,0.008838,-0.008504,0.249855,0,0);-ms-transform:matrix(0.259690,0.008838,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.259690,0.008838,-0.008504,0.249855,0,0);}
.m5f_c01446{transform:matrix(0.259803,0.008582,-0.008254,0.249864,0,0);-ms-transform:matrix(0.259803,0.008582,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.259803,0.008582,-0.008254,0.249864,0,0);}
.m57_c01446{transform:matrix(0.260868,0.008617,-0.008254,0.249864,0,0);-ms-transform:matrix(0.260868,0.008617,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.260868,0.008617,-0.008254,0.249864,0,0);}
.maa_c01446{transform:matrix(0.262107,0.007863,-0.007497,0.249888,0,0);-ms-transform:matrix(0.262107,0.007863,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.262107,0.007863,-0.007497,0.249888,0,0);}
.ma5_c01446{transform:matrix(0.262457,0.007874,-0.007497,0.249888,0,0);-ms-transform:matrix(0.262457,0.007874,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.262457,0.007874,-0.007497,0.249888,0,0);}
.m79_c01446{transform:matrix(0.263095,0.008427,-0.008004,0.249872,0,0);-ms-transform:matrix(0.263095,0.008427,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.263095,0.008427,-0.008004,0.249872,0,0);}
.m103_c01446{transform:matrix(0.263824,0.009507,-0.009003,0.249838,0,0);-ms-transform:matrix(0.263824,0.009507,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.263824,0.009507,-0.009003,0.249838,0,0);}
.mc0_c01446{transform:matrix(0.263842,0.008980,-0.008504,0.249855,0,0);-ms-transform:matrix(0.263842,0.008980,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.263842,0.008980,-0.008504,0.249855,0,0);}
.m60_c01446{transform:matrix(0.264106,0.008724,-0.008254,0.249864,0,0);-ms-transform:matrix(0.264106,0.008724,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.264106,0.008724,-0.008254,0.249864,0,0);}
.m74_c01446{transform:matrix(0.265184,0.008494,-0.008004,0.249872,0,0);-ms-transform:matrix(0.265184,0.008494,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.265184,0.008494,-0.008004,0.249872,0,0);}
.m26_c01446{transform:matrix(0.265308,0.008225,-0.007746,0.249880,0,0);-ms-transform:matrix(0.265308,0.008225,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.265308,0.008225,-0.007746,0.249880,0,0);}
.m58_c01446{transform:matrix(0.265470,0.008769,-0.008254,0.249864,0,0);-ms-transform:matrix(0.265470,0.008769,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.265470,0.008769,-0.008254,0.249864,0,0);}
.ma_c01446{transform:matrix(0.266513,0.008537,-0.008004,0.249872,0,0);-ms-transform:matrix(0.266513,0.008537,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.266513,0.008537,-0.008004,0.249872,0,0);}
.m10b_c01446{transform:matrix(0.266962,0.009620,-0.009003,0.249838,0,0);-ms-transform:matrix(0.266962,0.009620,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.266962,0.009620,-0.009003,0.249838,0,0);}
.m7c_c01446{transform:matrix(0.268177,0.008590,-0.008004,0.249872,0,0);-ms-transform:matrix(0.268177,0.008590,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.268177,0.008590,-0.008004,0.249872,0,0);}
.m65_c01446{transform:matrix(0.268234,0.008861,-0.008254,0.249864,0,0);-ms-transform:matrix(0.268234,0.008861,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.268234,0.008861,-0.008254,0.249864,0,0);}
.m51_c01446{transform:matrix(0.268289,0.008862,-0.008254,0.249864,0,0);-ms-transform:matrix(0.268289,0.008862,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.268289,0.008862,-0.008254,0.249864,0,0);}
.m43_c01446{transform:matrix(0.269790,0.008364,-0.007746,0.249880,0,0);-ms-transform:matrix(0.269790,0.008364,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.269790,0.008364,-0.007746,0.249880,0,0);}
.m1a_c01446{transform:matrix(0.269889,0.008097,-0.007497,0.249888,0,0);-ms-transform:matrix(0.269889,0.008097,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.269889,0.008097,-0.007497,0.249888,0,0);}
.mb_c01446{transform:matrix(0.270501,0.008665,-0.008004,0.249872,0,0);-ms-transform:matrix(0.270501,0.008665,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.270501,0.008665,-0.008004,0.249872,0,0);}
.m78_c01446{transform:matrix(0.270706,0.008671,-0.008004,0.249872,0,0);-ms-transform:matrix(0.270706,0.008671,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.270706,0.008671,-0.008004,0.249872,0,0);}
.m104_c01446{transform:matrix(0.271044,0.009767,-0.009003,0.249838,0,0);-ms-transform:matrix(0.271044,0.009767,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.271044,0.009767,-0.009003,0.249838,0,0);}
.mb7_c01446{transform:matrix(0.271783,0.009250,-0.008504,0.249855,0,0);-ms-transform:matrix(0.271783,0.009250,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.271783,0.009250,-0.008504,0.249855,0,0);}
.md_c01446{transform:matrix(0.272295,0.008722,-0.008004,0.249872,0,0);-ms-transform:matrix(0.272295,0.008722,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.272295,0.008722,-0.008004,0.249872,0,0);}
.m75_c01446{transform:matrix(0.272565,0.008731,-0.008004,0.249872,0,0);-ms-transform:matrix(0.272565,0.008731,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.272565,0.008731,-0.008004,0.249872,0,0);}
.m50_c01446{transform:matrix(0.272661,0.009007,-0.008254,0.249864,0,0);-ms-transform:matrix(0.272661,0.009007,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.272661,0.009007,-0.008254,0.249864,0,0);}
.m72_c01446{transform:matrix(0.272845,0.008740,-0.008004,0.249872,0,0);-ms-transform:matrix(0.272845,0.008740,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.272845,0.008740,-0.008004,0.249872,0,0);}
.m4e_c01446{transform:matrix(0.273086,0.009021,-0.008254,0.249864,0,0);-ms-transform:matrix(0.273086,0.009021,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.273086,0.009021,-0.008254,0.249864,0,0);}
.mad_c01446{transform:matrix(0.273422,0.008203,-0.007497,0.249888,0,0);-ms-transform:matrix(0.273422,0.008203,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.273422,0.008203,-0.007497,0.249888,0,0);}
.m61_c01446{transform:matrix(0.273436,0.009032,-0.008254,0.249864,0,0);-ms-transform:matrix(0.273436,0.009032,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.273436,0.009032,-0.008254,0.249864,0,0);}
.m67_c01446{transform:matrix(0.273986,0.009325,-0.008504,0.249855,0,0);-ms-transform:matrix(0.273986,0.009325,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.273986,0.009325,-0.008504,0.249855,0,0);}
.mb2_c01446{transform:matrix(0.274306,0.009336,-0.008504,0.249855,0,0);-ms-transform:matrix(0.274306,0.009336,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.274306,0.009336,-0.008504,0.249855,0,0);}
.mf_c01446{transform:matrix(0.274482,0.008234,-0.007497,0.249888,0,0);-ms-transform:matrix(0.274482,0.008234,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.274482,0.008234,-0.007497,0.249888,0,0);}
.m27_c01446{transform:matrix(0.274843,0.008520,-0.007746,0.249880,0,0);-ms-transform:matrix(0.274843,0.008520,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.274843,0.008520,-0.007746,0.249880,0,0);}
.m52_c01446{transform:matrix(0.275230,0.009092,-0.008254,0.249864,0,0);-ms-transform:matrix(0.275230,0.009092,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.275230,0.009092,-0.008254,0.249864,0,0);}
.m7d_c01446{transform:matrix(0.275504,0.008825,-0.008004,0.249872,0,0);-ms-transform:matrix(0.275504,0.008825,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.275504,0.008825,-0.008004,0.249872,0,0);}
.m6_c01446{transform:matrix(0.276623,0.008861,-0.008004,0.249872,0,0);-ms-transform:matrix(0.276623,0.008861,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.276623,0.008861,-0.008004,0.249872,0,0);}
.m12_c01446{transform:matrix(0.276910,0.008307,-0.007497,0.249888,0,0);-ms-transform:matrix(0.276910,0.008307,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.276910,0.008307,-0.007497,0.249888,0,0);}
.m5_c01446{transform:matrix(0.277058,0.008875,-0.008004,0.249872,0,0);-ms-transform:matrix(0.277058,0.008875,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.277058,0.008875,-0.008004,0.249872,0,0);}
.ma8_c01446{transform:matrix(0.278430,0.008353,-0.007497,0.249888,0,0);-ms-transform:matrix(0.278430,0.008353,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.278430,0.008353,-0.007497,0.249888,0,0);}
.m10_c01446{transform:matrix(0.278545,0.008356,-0.007497,0.249888,0,0);-ms-transform:matrix(0.278545,0.008356,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.278545,0.008356,-0.007497,0.249888,0,0);}
.mab_c01446{transform:matrix(0.279489,0.008385,-0.007497,0.249888,0,0);-ms-transform:matrix(0.279489,0.008385,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.279489,0.008385,-0.007497,0.249888,0,0);}
.m31_c01446{transform:matrix(0.281230,0.008718,-0.007746,0.249880,0,0);-ms-transform:matrix(0.281230,0.008718,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.281230,0.008718,-0.007746,0.249880,0,0);}
.m46_c01446{transform:matrix(0.281700,0.008733,-0.007746,0.249880,0,0);-ms-transform:matrix(0.281700,0.008733,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.281700,0.008733,-0.007746,0.249880,0,0);}
.m7a_c01446{transform:matrix(0.282930,0.009063,-0.008004,0.249872,0,0);-ms-transform:matrix(0.282930,0.009063,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.282930,0.009063,-0.008004,0.249872,0,0);}
.m109_c01446{transform:matrix(0.283016,0.010199,-0.009003,0.249838,0,0);-ms-transform:matrix(0.283016,0.010199,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.283016,0.010199,-0.009003,0.249838,0,0);}
.m2b_c01446{transform:matrix(0.283079,0.008775,-0.007746,0.249880,0,0);-ms-transform:matrix(0.283079,0.008775,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.283079,0.008775,-0.007746,0.249880,0,0);}
.m82_c01446{transform:matrix(0.283195,0.009071,-0.008004,0.249872,0,0);-ms-transform:matrix(0.283195,0.009071,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.283195,0.009071,-0.008004,0.249872,0,0);}
.mc3_c01446{transform:matrix(0.284111,0.009669,-0.008504,0.249855,0,0);-ms-transform:matrix(0.284111,0.009669,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.284111,0.009669,-0.008504,0.249855,0,0);}
.mc1_c01446{transform:matrix(0.284475,0.009682,-0.008504,0.249855,0,0);-ms-transform:matrix(0.284475,0.009682,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.284475,0.009682,-0.008504,0.249855,0,0);}
.m6a_c01446{transform:matrix(0.285365,0.009712,-0.008504,0.249855,0,0);-ms-transform:matrix(0.285365,0.009712,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.285365,0.009712,-0.008504,0.249855,0,0);}
.m32_c01446{transform:matrix(0.286252,0.008874,-0.007746,0.249880,0,0);-ms-transform:matrix(0.286252,0.008874,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.286252,0.008874,-0.007746,0.249880,0,0);}
.m44_c01446{transform:matrix(0.286447,0.008880,-0.007746,0.249880,0,0);-ms-transform:matrix(0.286447,0.008880,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.286447,0.008880,-0.007746,0.249880,0,0);}
.mc6_c01446{transform:matrix(0.287039,0.009769,-0.008504,0.249855,0,0);-ms-transform:matrix(0.287039,0.009769,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.287039,0.009769,-0.008504,0.249855,0,0);}
.m2a_c01446{transform:matrix(0.292130,0.009056,-0.007746,0.249880,0,0);-ms-transform:matrix(0.292130,0.009056,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.292130,0.009056,-0.007746,0.249880,0,0);}
.mc4_c01446{transform:matrix(0.292835,0.009966,-0.008504,0.249855,0,0);-ms-transform:matrix(0.292835,0.009966,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.292835,0.009966,-0.008504,0.249855,0,0);}
.m1b_c01446{transform:matrix(0.292958,0.008789,-0.007497,0.249888,0,0);-ms-transform:matrix(0.292958,0.008789,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.292958,0.008789,-0.007497,0.249888,0,0);}
.m17_c01446{transform:matrix(0.293353,0.008801,-0.007497,0.249888,0,0);-ms-transform:matrix(0.293353,0.008801,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.293353,0.008801,-0.007497,0.249888,0,0);}
.mbe_c01446{transform:matrix(0.294539,0.010024,-0.008504,0.249855,0,0);-ms-transform:matrix(0.294539,0.010024,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.294539,0.010024,-0.008504,0.249855,0,0);}
.m108_c01446{transform:matrix(0.295878,0.010662,-0.009003,0.249838,0,0);-ms-transform:matrix(0.295878,0.010662,-0.009003,0.249838,0,0);-webkit-transform:matrix(0.295878,0.010662,-0.009003,0.249838,0,0);}
.m19_c01446{transform:matrix(0.295957,0.008879,-0.007497,0.249888,0,0);-ms-transform:matrix(0.295957,0.008879,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.295957,0.008879,-0.007497,0.249888,0,0);}
.m13_c01446{transform:matrix(0.296287,0.008889,-0.007497,0.249888,0,0);-ms-transform:matrix(0.296287,0.008889,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.296287,0.008889,-0.007497,0.249888,0,0);}
.mbd_c01446{transform:matrix(0.298637,0.010164,-0.008504,0.249855,0,0);-ms-transform:matrix(0.298637,0.010164,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.298637,0.010164,-0.008504,0.249855,0,0);}
.m14_c01446{transform:matrix(0.300105,0.009003,-0.007497,0.249888,0,0);-ms-transform:matrix(0.300105,0.009003,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.300105,0.009003,-0.007497,0.249888,0,0);}
.m18_c01446{transform:matrix(0.301244,0.009037,-0.007497,0.249888,0,0);-ms-transform:matrix(0.301244,0.009037,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.301244,0.009037,-0.007497,0.249888,0,0);}
.m24_c01446{transform:matrix(0.301265,0.009339,-0.007746,0.249880,0,0);-ms-transform:matrix(0.301265,0.009339,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.301265,0.009339,-0.007746,0.249880,0,0);}
.m35_c01446{transform:matrix(0.301730,0.009354,-0.007746,0.249880,0,0);-ms-transform:matrix(0.301730,0.009354,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.301730,0.009354,-0.007746,0.249880,0,0);}
.m9f_c01446{transform:matrix(0.303184,0.009096,-0.007497,0.249888,0,0);-ms-transform:matrix(0.303184,0.009096,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.303184,0.009096,-0.007497,0.249888,0,0);}
.m1c_c01446{transform:matrix(0.304098,0.009123,-0.007497,0.249888,0,0);-ms-transform:matrix(0.304098,0.009123,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.304098,0.009123,-0.007497,0.249888,0,0);}
.m87_c01446{transform:matrix(0.307065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307065,0.000000,0.000000,0.250000,0,0);}
.m29_c01446{transform:matrix(0.307132,0.009521,-0.007746,0.249880,0,0);-ms-transform:matrix(0.307132,0.009521,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.307132,0.009521,-0.007746,0.249880,0,0);}
.m30_c01446{transform:matrix(0.309057,0.009581,-0.007746,0.249880,0,0);-ms-transform:matrix(0.309057,0.009581,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.309057,0.009581,-0.007746,0.249880,0,0);}
.m6f_c01446{transform:matrix(0.329594,0.012207,-0.009253,0.249829,0,0);-ms-transform:matrix(0.329594,0.012207,-0.009253,0.249829,0,0);-webkit-transform:matrix(0.329594,0.012207,-0.009253,0.249829,0,0);}
.mc8_c01446{transform:matrix(0.340145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340145,0.000000,0.000000,0.250000,0,0);}
.m110_c01446{transform:matrix(0.340996,0.011947,-0.008753,0.249847,0,0);-ms-transform:matrix(0.340996,0.011947,-0.008753,0.249847,0,0);-webkit-transform:matrix(0.340996,0.011947,-0.008753,0.249847,0,0);}
.m2d_c01446{transform:matrix(0.351721,0.010903,-0.007746,0.249880,0,0);-ms-transform:matrix(0.351721,0.010903,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.351721,0.010903,-0.007746,0.249880,0,0);}
.m2e_c01446{transform:matrix(0.386164,0.011971,-0.007746,0.249880,0,0);-ms-transform:matrix(0.386164,0.011971,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.386164,0.011971,-0.007746,0.249880,0,0);}
.m59_c01446{transform:matrix(0.392561,0.012967,-0.008254,0.249864,0,0);-ms-transform:matrix(0.392561,0.012967,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.392561,0.012967,-0.008254,0.249864,0,0);}
.m7f_c01446{transform:matrix(0.403063,0.012911,-0.008004,0.249872,0,0);-ms-transform:matrix(0.403063,0.012911,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.403063,0.012911,-0.008004,0.249872,0,0);}
.mc7_c01446{transform:matrix(0.405762,0.015434,-0.009503,0.249819,0,0);-ms-transform:matrix(0.405762,0.015434,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.405762,0.015434,-0.009503,0.249819,0,0);}
.mf7_c01446{transform:matrix(0.405977,0.020319,-0.012497,0.249687,0,0);-ms-transform:matrix(0.405977,0.020319,-0.012497,0.249687,0,0);-webkit-transform:matrix(0.405977,0.020319,-0.012497,0.249687,0,0);}
.m5a_c01446{transform:matrix(0.406004,0.013412,-0.008254,0.249864,0,0);-ms-transform:matrix(0.406004,0.013412,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.406004,0.013412,-0.008254,0.249864,0,0);}
.m84_c01446{transform:matrix(0.416806,0.018358,-0.011000,0.249758,0,0);-ms-transform:matrix(0.416806,0.018358,-0.011000,0.249758,0,0);-webkit-transform:matrix(0.416806,0.018358,-0.011000,0.249758,0,0);}
.m5b_c01446{transform:matrix(0.417902,0.013805,-0.008254,0.249864,0,0);-ms-transform:matrix(0.417902,0.013805,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.417902,0.013805,-0.008254,0.249864,0,0);}
.m86_c01446{transform:matrix(0.437595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437595,0.000000,0.000000,0.250000,0,0);}
.md4_c01446{transform:matrix(0.441165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441165,0.000000,0.000000,0.250000,0,0);}
.m20_c01446{transform:matrix(0.467790,0.014034,-0.007497,0.249888,0,0);-ms-transform:matrix(0.467790,0.014034,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.467790,0.014034,-0.007497,0.249888,0,0);}
.m1f_c01446{transform:matrix(0.475591,0.014268,-0.007497,0.249888,0,0);-ms-transform:matrix(0.475591,0.014268,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.475591,0.014268,-0.007497,0.249888,0,0);}
.md2_c01446{transform:matrix(0.495285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495285,0.000000,0.000000,0.250000,0,0);}
.m47_c01446{transform:matrix(0.593045,0.018384,-0.007746,0.249880,0,0);-ms-transform:matrix(0.593045,0.018384,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.593045,0.018384,-0.007746,0.249880,0,0);}
.m97_c01446{transform:matrix(0.593779,0.016032,-0.006748,0.249909,0,0);-ms-transform:matrix(0.593779,0.016032,-0.006748,0.249909,0,0);-webkit-transform:matrix(0.593779,0.016032,-0.006748,0.249909,0,0);}
.md6_c01446{transform:matrix(0.612250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612250,0.000000,0.000000,0.250000,0,0);}
.mcb_c01446{transform:matrix(0.644980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.644980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.644980,0.000000,0.000000,0.250000,0,0);}
.m21_c01446{transform:matrix(0.684322,0.020530,-0.007497,0.249888,0,0);-ms-transform:matrix(0.684322,0.020530,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.684322,0.020530,-0.007497,0.249888,0,0);}
.md3_c01446{transform:matrix(0.747060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.747060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.747060,0.000000,0.000000,0.250000,0,0);}
.md1_c01446{transform:matrix(0.854215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.854215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.854215,0.000000,0.000000,0.250000,0,0);}
.md7_c01446{transform:matrix(0.858610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.858610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.858610,0.000000,0.000000,0.250000,0,0);}
.m4a_c01446{transform:matrix(0.868218,0.026915,-0.007746,0.249880,0,0);-ms-transform:matrix(0.868218,0.026915,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.868218,0.026915,-0.007746,0.249880,0,0);}
.m4b_c01446{transform:matrix(0.878583,0.027236,-0.007746,0.249880,0,0);-ms-transform:matrix(0.878583,0.027236,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.878583,0.027236,-0.007746,0.249880,0,0);}
.md5_c01446{transform:matrix(1.029005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.029005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.029005,0.000000,0.000000,0.250000,0,0);}
.mce_c01446{transform:matrix(1.268300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.268300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.268300,0.000000,0.000000,0.250000,0,0);}
.md0_c01446{transform:matrix(1.292180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.292180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.292180,0.000000,0.000000,0.250000,0,0);}
.m48_c01446{transform:matrix(1.496821,0.046401,-0.007746,0.249880,0,0);-ms-transform:matrix(1.496821,0.046401,-0.007746,0.249880,0,0);-webkit-transform:matrix(1.496821,0.046401,-0.007746,0.249880,0,0);}
.mcd_c01446{transform:matrix(2.311215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.311215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.311215,0.000000,0.000000,0.250000,0,0);}
.m49_c01446{transform:matrix(2.458179,0.076204,-0.007746,0.249880,0,0);-ms-transform:matrix(2.458179,0.076204,-0.007746,0.249880,0,0);-webkit-transform:matrix(2.458179,0.076204,-0.007746,0.249880,0,0);}
.mcf_c01446{transform:matrix(2.975450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.975450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.975450,0.000000,0.000000,0.250000,0,0);}
.m85_c01446{transform:matrix(4.446540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.446540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.446540,0.000000,0.000000,0.250000,0,0);}
.v0_c01446{vertical-align:0.000000px;}
.ls0_c01446{letter-spacing:0.000000px;}
.sc__c01446{text-shadow:none;}
.sc0_c01446{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__c01446{-webkit-text-stroke:0px transparent;}
.sc0_c01446{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01446{word-spacing:0.000000px;}
.fc0_c01446{color:transparent;}
.fs14_c01446{font-size:18.000000px;}
.fsc_c01446{font-size:24.000000px;}
.fs6_c01446{font-size:36.017294px;}
.fse_c01446{font-size:42.015306px;}
.fs3_c01446{font-size:42.018896px;}
.fs8_c01446{font-size:47.978155px;}
.fs13_c01446{font-size:47.986678px;}
.fsb_c01446{font-size:47.998488px;}
.fs16_c01446{font-size:48.012022px;}
.fs12_c01446{font-size:65.972175px;}
.fs18_c01446{font-size:65.976797px;}
.fsa_c01446{font-size:65.979207px;}
.fs2_c01446{font-size:66.029693px;}
.fs4_c01446{font-size:66.031705px;}
.fs1_c01446{font-size:71.964891px;}
.fs7_c01446{font-size:71.967233px;}
.fs9_c01446{font-size:71.969646px;}
.fs11_c01446{font-size:71.972131px;}
.fs10_c01446{font-size:72.032393px;}
.fs17_c01446{font-size:77.964502px;}
.fs15_c01446{font-size:77.967116px;}
.fs5_c01446{font-size:83.964587px;}
.fs19_c01446{font-size:83.967486px;}
.fsf_c01446{font-size:84.037791px;}
.fsd_c01446{font-size:90.032799px;}
.fs0_c01446{font-size:102.000000px;}
.y0_c01446{bottom:0.000000px;}
.y10f_c01446{bottom:39.060046px;}
.y10e_c01446{bottom:40.247226px;}
.y10d_c01446{bottom:42.628935px;}
.y10c_c01446{bottom:44.543872px;}
.y10b_c01446{bottom:46.935714px;}
.y10a_c01446{bottom:49.319155px;}
.y109_c01446{bottom:50.777482px;}
.y108_c01446{bottom:67.125750px;}
.y107_c01446{bottom:69.821992px;}
.y106_c01446{bottom:71.293305px;}
.y105_c01446{bottom:74.416530px;}
.y104_c01446{bottom:77.856015px;}
.y103_c01446{bottom:79.447605px;}
.y102_c01446{bottom:83.191012px;}
.y101_c01446{bottom:86.982772px;}
.y100_c01446{bottom:88.834027px;}
.yff_c01446{bottom:90.724500px;}
.yfe_c01446{bottom:101.744994px;}
.yfd_c01446{bottom:103.857420px;}
.yfc_c01446{bottom:105.014424px;}
.yfb_c01446{bottom:107.719014px;}
.yfa_c01446{bottom:112.434024px;}
.yf9_c01446{bottom:113.680182px;}
.yf8_c01446{bottom:114.856572px;}
.yf7_c01446{bottom:116.787504px;}
.yf6_c01446{bottom:118.756668px;}
.yf5_c01446{bottom:119.972640px;}
.yf4_c01446{bottom:122.326500px;}
.yf3_c01446{bottom:141.108795px;}
.yf2_c01446{bottom:142.494696px;}
.yf1_c01446{bottom:143.998506px;}
.yf0_c01446{bottom:147.228331px;}
.yef_c01446{bottom:149.376532px;}
.yee_c01446{bottom:151.559779px;}
.yed_c01446{bottom:155.160706px;}
.yec_c01446{bottom:158.736685px;}
.yeb_c01446{bottom:160.482501px;}
.yea_c01446{bottom:162.274500px;}
.ye9_c01446{bottom:193.891500px;}
.ye8_c01446{bottom:210.203205px;}
.ye7_c01446{bottom:212.003964px;}
.ye6_c01446{bottom:216.155925px;}
.ye5_c01446{bottom:217.571430px;}
.ye4_c01446{bottom:218.783292px;}
.ye3_c01446{bottom:219.894378px;}
.ye2_c01446{bottom:220.995672px;}
.ye1_c01446{bottom:222.877419px;}
.ye0_c01446{bottom:224.357031px;}
.ydf_c01446{bottom:227.332728px;}
.yde_c01446{bottom:230.989224px;}
.ydd_c01446{bottom:232.797072px;}
.ydc_c01446{bottom:234.634500px;}
.ydb_c01446{bottom:259.974064px;}
.yda_c01446{bottom:261.217471px;}
.yd9_c01446{bottom:263.830113px;}
.yd8_c01446{bottom:265.442517px;}
.yd7_c01446{bottom:282.719121px;}
.yd6_c01446{bottom:283.888653px;}
.yd5_c01446{bottom:285.009837px;}
.yd4_c01446{bottom:287.183610px;}
.yd3_c01446{bottom:288.353805px;}
.yd2_c01446{bottom:289.483251px;}
.yd1_c01446{bottom:292.421667px;}
.yd0_c01446{bottom:294.312900px;}
.ycf_c01446{bottom:295.396446px;}
.yce_c01446{bottom:297.638814px;}
.ycd_c01446{bottom:299.145660px;}
.ycc_c01446{bottom:302.810112px;}
.ycb_c01446{bottom:304.617654px;}
.yca_c01446{bottom:306.456000px;}
.yc7_c01446{bottom:335.628000px;}
.yc6_c01446{bottom:354.394767px;}
.yc5_c01446{bottom:355.399577px;}
.yc4_c01446{bottom:357.743856px;}
.yc3_c01446{bottom:360.149258px;}
.yc2_c01446{bottom:361.179803px;}
.yc1_c01446{bottom:363.549492px;}
.yc0_c01446{bottom:364.570602px;}
.ybf_c01446{bottom:365.580869px;}
.ybe_c01446{bottom:368.591594px;}
.ybd_c01446{bottom:369.917160px;}
.ybc_c01446{bottom:388.253676px;}
.ybb_c01446{bottom:388.599507px;}
.yba_c01446{bottom:390.221409px;}
.yb9_c01446{bottom:391.274304px;}
.yb8_c01446{bottom:392.425833px;}
.yb7_c01446{bottom:395.437332px;}
.yb6_c01446{bottom:396.880275px;}
.yb5_c01446{bottom:398.354583px;}
.yb4_c01446{bottom:400.925697px;}
.yb3_c01446{bottom:403.189536px;}
.yb2_c01446{bottom:404.705256px;}
.yb1_c01446{bottom:408.370014px;}
.yb0_c01446{bottom:410.159808px;}
.yaf_c01446{bottom:412.026000px;}
.yae_c01446{bottom:439.739820px;}
.yad_c01446{bottom:441.736500px;}
.yc9_c01446{bottom:450.360000px;}
.yac_c01446{bottom:460.038450px;}
.yab_c01446{bottom:461.086485px;}
.yaa_c01446{bottom:464.829705px;}
.ya9_c01446{bottom:465.793020px;}
.ya8_c01446{bottom:466.819845px;}
.ya7_c01446{bottom:470.924715px;}
.ya6_c01446{bottom:471.859215px;}
.ya5_c01446{bottom:472.950225px;}
.ya4_c01446{bottom:474.993435px;}
.ya3_c01446{bottom:476.271885px;}
.ya2_c01446{bottom:497.807340px;}
.ya1_c01446{bottom:499.128495px;}
.ya0_c01446{bottom:501.356715px;}
.y9f_c01446{bottom:502.734570px;}
.y9e_c01446{bottom:503.378790px;}
.y9d_c01446{bottom:506.280300px;}
.y9c_c01446{bottom:508.608555px;}
.y9b_c01446{bottom:509.930700px;}
.y9a_c01446{bottom:510.935640px;}
.y99_c01446{bottom:514.168755px;}
.y98_c01446{bottom:515.765535px;}
.y97_c01446{bottom:517.056000px;}
.y96_c01446{bottom:548.476506px;}
.y95_c01446{bottom:552.135989px;}
.y94_c01446{bottom:570.012084px;}
.y93_c01446{bottom:571.091160px;}
.y92_c01446{bottom:573.970910px;}
.y91_c01446{bottom:576.516918px;}
.y90_c01446{bottom:577.606201px;}
.y8f_c01446{bottom:578.315607px;}
.y8e_c01446{bottom:581.534727px;}
.y8d_c01446{bottom:582.659414px;}
.y8c_c01446{bottom:583.738247px;}
.y8b_c01446{bottom:587.286408px;}
.y8a_c01446{bottom:589.051071px;}
.y89_c01446{bottom:590.488961px;}
.y88_c01446{bottom:606.460487px;}
.y87_c01446{bottom:615.073500px;}
.y85_c01446{bottom:619.675500px;}
.yc8_c01446{bottom:624.780000px;}
.y84_c01446{bottom:636.480441px;}
.y83_c01446{bottom:639.991161px;}
.y82_c01446{bottom:641.046345px;}
.y81_c01446{bottom:642.117993px;}
.y80_c01446{bottom:645.610377px;}
.y7f_c01446{bottom:646.272009px;}
.y7e_c01446{bottom:649.446777px;}
.y7d_c01446{bottom:652.212633px;}
.y7c_c01446{bottom:653.968713px;}
.y7b_c01446{bottom:673.693740px;}
.y7a_c01446{bottom:675.751500px;}
.y79_c01446{bottom:678.612108px;}
.y78_c01446{bottom:680.368428px;}
.y77_c01446{bottom:681.722556px;}
.y76_c01446{bottom:684.862812px;}
.y75_c01446{bottom:687.663516px;}
.y74_c01446{bottom:689.789820px;}
.y73_c01446{bottom:693.239292px;}
.y72_c01446{bottom:694.951404px;}
.y71_c01446{bottom:696.337500px;}
.y70_c01446{bottom:722.559467px;}
.y6f_c01446{bottom:723.768534px;}
.y6e_c01446{bottom:724.968000px;}
.y6d_c01446{bottom:743.056578px;}
.y6c_c01446{bottom:745.260696px;}
.y6b_c01446{bottom:750.901143px;}
.y6a_c01446{bottom:752.361477px;}
.y69_c01446{bottom:756.428982px;}
.y68_c01446{bottom:759.828285px;}
.y67_c01446{bottom:760.872000px;}
.y66_c01446{bottom:779.783841px;}
.y65_c01446{bottom:782.004163px;}
.y64_c01446{bottom:783.413824px;}
.y63_c01446{bottom:785.900407px;}
.y62_c01446{bottom:787.406544px;}
.y61_c01446{bottom:788.490643px;}
.y60_c01446{bottom:791.719875px;}
.y5f_c01446{bottom:794.270263px;}
.y5e_c01446{bottom:796.070875px;}
.y5d_c01446{bottom:799.619233px;}
.y5c_c01446{bottom:801.018598px;}
.y5b_c01446{bottom:802.449000px;}
.y5a_c01446{bottom:826.355569px;}
.y59_c01446{bottom:829.947586px;}
.y58_c01446{bottom:832.168503px;}
.y57_c01446{bottom:851.246698px;}
.y56_c01446{bottom:853.418659px;}
.y55_c01446{bottom:854.894205px;}
.y54_c01446{bottom:857.362968px;}
.y53_c01446{bottom:858.869401px;}
.y52_c01446{bottom:860.274360px;}
.y51_c01446{bottom:863.174119px;}
.y50_c01446{bottom:865.697233px;}
.y4f_c01446{bottom:866.802964px;}
.y4e_c01446{bottom:867.881371px;}
.y4d_c01446{bottom:871.438639px;}
.y4c_c01446{bottom:872.847508px;}
.y4b_c01446{bottom:874.269000px;}
.y4a_c01446{bottom:889.102218px;}
.y49_c01446{bottom:891.114378px;}
.y48_c01446{bottom:893.805472px;}
.y46_c01446{bottom:894.851655px;}
.y45_c01446{bottom:896.626792px;}
.y44_c01446{bottom:897.974734px;}
.y47_c01446{bottom:898.596703px;}
.y43_c01446{bottom:899.993020px;}
.y86_c01446{bottom:900.720000px;}
.y42_c01446{bottom:903.702000px;}
.y41_c01446{bottom:920.662665px;}
.y40_c01446{bottom:921.724740px;}
.y3f_c01446{bottom:923.977512px;}
.y3e_c01446{bottom:927.007677px;}
.y3d_c01446{bottom:928.883049px;}
.y3c_c01446{bottom:930.339660px;}
.y3b_c01446{bottom:933.299853px;}
.y3a_c01446{bottom:935.926608px;}
.y39_c01446{bottom:937.056666px;}
.y38_c01446{bottom:938.158572px;}
.y37_c01446{bottom:941.823636px;}
.y36_c01446{bottom:943.256583px;}
.y35_c01446{bottom:944.739000px;}
.y34_c01446{bottom:963.693847px;}
.y33_c01446{bottom:964.940061px;}
.y32_c01446{bottom:965.918625px;}
.y31_c01446{bottom:968.104087px;}
.y30_c01446{bottom:969.389383px;}
.y2f_c01446{bottom:972.252432px;}
.y2e_c01446{bottom:972.855759px;}
.y2d_c01446{bottom:974.151319px;}
.y2c_c01446{bottom:993.022692px;}
.y2b_c01446{bottom:994.044622px;}
.y2a_c01446{bottom:996.133216px;}
.y29_c01446{bottom:997.481437px;}
.y28_c01446{bottom:1000.880634px;}
.y27_c01446{bottom:1001.851600px;}
.y26_c01446{bottom:1005.268048px;}
.y25_c01446{bottom:1006.624872px;}
.y24_c01446{bottom:1007.961607px;}
.y23_c01446{bottom:1012.010176px;}
.y22_c01446{bottom:1013.317431px;}
.y21_c01446{bottom:1014.669000px;}
.y20_c01446{bottom:1039.274115px;}
.y1f_c01446{bottom:1041.174720px;}
.y1e_c01446{bottom:1044.886095px;}
.y1d_c01446{bottom:1063.702830px;}
.y1c_c01446{bottom:1064.802450px;}
.y1b_c01446{bottom:1068.864600px;}
.y1a_c01446{bottom:1071.617730px;}
.y19_c01446{bottom:1072.938405px;}
.y18_c01446{bottom:1076.297205px;}
.y17_c01446{bottom:1079.706330px;}
.y16_c01446{bottom:1082.738640px;}
.y15_c01446{bottom:1084.061880px;}
.y14_c01446{bottom:1085.397420px;}
.y13_c01446{bottom:1106.846775px;}
.y12_c01446{bottom:1109.552670px;}
.y11_c01446{bottom:1111.473675px;}
.y10_c01446{bottom:1112.494770px;}
.yf_c01446{bottom:1114.100505px;}
.ye_c01446{bottom:1115.113500px;}
.yd_c01446{bottom:1133.604576px;}
.yc_c01446{bottom:1135.705488px;}
.yb_c01446{bottom:1136.768496px;}
.ya_c01446{bottom:1139.595360px;}
.y9_c01446{bottom:1142.342304px;}
.y8_c01446{bottom:1143.041232px;}
.y7_c01446{bottom:1145.481696px;}
.y6_c01446{bottom:1146.896016px;}
.y5_c01446{bottom:1149.735120px;}
.y4_c01446{bottom:1153.539744px;}
.y3_c01446{bottom:1154.897520px;}
.y2_c01446{bottom:1156.692000px;}
.y1_c01446{bottom:1203.382500px;}
.h16_c01446{height:18.000000px;}
.he_c01446{height:24.000000px;}
.h8_c01446{height:36.017294px;}
.h10_c01446{height:42.015306px;}
.h5_c01446{height:42.018896px;}
.ha_c01446{height:47.978155px;}
.h15_c01446{height:47.986678px;}
.hd_c01446{height:47.998488px;}
.h18_c01446{height:48.012022px;}
.h14_c01446{height:65.972175px;}
.h1a_c01446{height:65.976797px;}
.hc_c01446{height:65.979207px;}
.h4_c01446{height:66.029693px;}
.h6_c01446{height:66.031705px;}
.h3_c01446{height:71.964891px;}
.h9_c01446{height:71.967233px;}
.hb_c01446{height:71.969646px;}
.h13_c01446{height:71.972131px;}
.h12_c01446{height:72.032393px;}
.h19_c01446{height:77.964502px;}
.h17_c01446{height:77.967116px;}
.h7_c01446{height:83.964587px;}
.h1b_c01446{height:83.967486px;}
.h11_c01446{height:84.037791px;}
.hf_c01446{height:90.032799px;}
.h2_c01446{height:102.000000px;}
.h0_c01446{height:1261.440000px;}
.h1_c01446{height:1261.500000px;}
.w0_c01446{width:912.000000px;}
.x0_c01446{left:0.000000px;}
.x9d_c01446{left:7.560000px;}
.x9c_c01446{left:9.720000px;}
.x9e_c01446{left:11.340000px;}
.x9f_c01446{left:13.230000px;}
.x76_c01446{left:16.200000px;}
.xbc_c01446{left:92.199000px;}
.xb0_c01446{left:94.087500px;}
.xaa_c01446{left:96.531000px;}
.xa0_c01446{left:98.664000px;}
.x8b_c01446{left:101.607000px;}
.x81_c01446{left:105.081000px;}
.x78_c01446{left:106.895451px;}
.x67_c01446{left:110.458500px;}
.x4_c01446{left:112.210500px;}
.x56_c01446{left:113.673000px;}
.x49_c01446{left:116.094000px;}
.x35_c01446{left:118.245000px;}
.x21_c01446{left:120.397500px;}
.x15_c01446{left:122.730975px;}
.xbd_c01446{left:146.158487px;}
.x82_c01446{left:148.096500px;}
.x79_c01446{left:150.476904px;}
.xa1_c01446{left:152.678931px;}
.x68_c01446{left:153.730684px;}
.x57_c01446{left:156.975155px;}
.x4a_c01446{left:159.126424px;}
.x36_c01446{left:161.801899px;}
.x22_c01446{left:163.996500px;}
.x16_c01446{left:165.797670px;}
.x5_c01446{left:168.231922px;}
.x58_c01446{left:199.337749px;}
.x4b_c01446{left:201.776731px;}
.x37_c01446{left:203.905254px;}
.x23_c01446{left:206.166000px;}
.x69_c01446{left:207.180681px;}
.x17_c01446{left:208.504410px;}
.x6_c01446{left:210.619992px;}
.xb5_c01446{left:264.684000px;}
.xaf_c01446{left:265.857000px;}
.xa9_c01446{left:269.961781px;}
.x9b_c01446{left:271.398000px;}
.x89_c01446{left:274.369500px;}
.x80_c01446{left:276.569043px;}
.x75_c01446{left:279.127500px;}
.x70_c01446{left:281.626659px;}
.x65_c01446{left:283.011000px;}
.x45_c01446{left:285.972133px;}
.x41_c01446{left:289.882500px;}
.x2d_c01446{left:291.021971px;}
.x1e_c01446{left:292.496880px;}
.x10_c01446{left:295.491000px;}
.xc1_c01446{left:305.047832px;}
.x18_c01446{left:306.328485px;}
.x4c_c01446{left:309.464936px;}
.x38_c01446{left:311.593458px;}
.xa2_c01446{left:313.458990px;}
.x6a_c01446{left:314.868885px;}
.x61_c01446{left:316.257803px;}
.x94_c01446{left:317.280373px;}
.x85_c01446{left:318.297480px;}
.x7_c01446{left:329.395598px;}
.x8a_c01446{left:331.360452px;}
.x2e_c01446{left:335.720260px;}
.x24_c01446{left:336.765000px;}
.x4d_c01446{left:342.111257px;}
.x39_c01446{left:343.970049px;}
.x66_c01446{left:348.041404px;}
.x55_c01446{left:352.648870px;}
.x2f_c01446{left:356.538563px;}
.xa3_c01446{left:357.733671px;}
.x59_c01446{left:361.265659px;}
.xb6_c01446{left:363.746838px;}
.xc2_c01446{left:371.193807px;}
.x4e_c01446{left:375.584750px;}
.x3a_c01446{left:377.173812px;}
.x7a_c01446{left:378.212009px;}
.x25_c01446{left:379.885500px;}
.x6b_c01446{left:381.249438px;}
.x11_c01446{left:382.782000px;}
.x86_c01446{left:384.202500px;}
.x83_c01446{left:386.662500px;}
.xab_c01446{left:398.507222px;}
.x1f_c01446{left:401.646285px;}
.x42_c01446{left:409.527000px;}
.x95_c01446{left:414.294166px;}
.x12_c01446{left:416.818500px;}
.x8_c01446{left:418.028876px;}
.x87_c01446{left:419.418465px;}
.x26_c01446{left:423.654000px;}
.x8c_c01446{left:427.760020px;}
.x1_c01446{left:436.590000px;}
.x5a_c01446{left:438.472875px;}
.xac_c01446{left:441.981703px;}
.x96_c01446{left:446.843403px;}
.x88_c01446{left:449.567565px;}
.x46_c01446{left:451.183363px;}
.x30_c01446{left:455.288201px;}
.x20_c01446{left:457.543080px;}
.x2_c01446{left:459.000000px;}
.x9_c01446{left:462.182178px;}
.x84_c01446{left:464.271000px;}
.x6c_c01446{left:468.683916px;}
.xb7_c01446{left:471.974502px;}
.x43_c01446{left:474.633000px;}
.x7b_c01446{left:475.756214px;}
.x97_c01446{left:479.755327px;}
.x13_c01446{left:480.852000px;}
.xb1_c01446{left:484.544153px;}
.xc3_c01446{left:490.738491px;}
.x7c_c01446{left:497.249231px;}
.x31_c01446{left:499.606944px;}
.x3_c01446{left:501.930000px;}
.x8d_c01446{left:503.305399px;}
.xb8_c01446{left:504.619325px;}
.xa4_c01446{left:511.025725px;}
.x44_c01446{left:518.115000px;}
.x71_c01446{left:521.908137px;}
.x19_c01446{left:524.669460px;}
.x7d_c01446{left:530.254385px;}
.x27_c01446{left:533.862000px;}
.x5b_c01446{left:536.230520px;}
.xa_c01446{left:538.370414px;}
.x4f_c01446{left:539.749920px;}
.x3b_c01446{left:541.331490px;}
.x72_c01446{left:542.563461px;}
.x47_c01446{left:543.998629px;}
.x8e_c01446{left:546.624037px;}
.xb2_c01446{left:549.576056px;}
.x98_c01446{left:556.126690px;}
.xbe_c01446{left:557.675058px;}
.xb_c01446{left:560.190072px;}
.xad_c01446{left:562.276788px;}
.x28_c01446{left:565.183500px;}
.x1a_c01446{left:567.290700px;}
.x5c_c01446{left:569.049168px;}
.x14_c01446{left:571.048500px;}
.x32_c01446{left:574.949094px;}
.x62_c01446{left:578.558240px;}
.x50_c01446{left:582.281846px;}
.x3c_c01446{left:584.130149px;}
.x8f_c01446{left:589.021098px;}
.x77_c01446{left:597.145500px;}
.x7e_c01446{left:607.427410px;}
.x33_c01446{left:608.695187px;}
.x48_c01446{left:613.362908px;}
.x5d_c01446{left:614.644027px;}
.x51_c01446{left:627.885696px;}
.xa5_c01446{left:630.549083px;}
.x3d_c01446{left:639.232991px;}
.xc_c01446{left:645.946230px;}
.xb3_c01446{left:647.351682px;}
.x34_c01446{left:651.656337px;}
.x1b_c01446{left:656.109045px;}
.x6d_c01446{left:663.823082px;}
.xa6_c01446{left:664.932165px;}
.x99_c01446{left:666.824664px;}
.xb9_c01446{left:670.041737px;}
.x29_c01446{left:674.835000px;}
.x90_c01446{left:677.506024px;}
.x73_c01446{left:685.046835px;}
.xbf_c01446{left:688.816286px;}
.x5e_c01446{left:689.919677px;}
.xb4_c01446{left:692.876112px;}
.x7f_c01446{left:694.681776px;}
.x52_c01446{left:702.621885px;}
.x91_c01446{left:711.340656px;}
.x2a_c01446{left:718.326000px;}
.x3e_c01446{left:728.266368px;}
.x5f_c01446{left:732.593959px;}
.xd_c01446{left:734.197390px;}
.x92_c01446{left:742.277188px;}
.x63_c01446{left:744.287844px;}
.x53_c01446{left:747.290672px;}
.x6e_c01446{left:753.127688px;}
.xa7_c01446{left:761.745754px;}
.xc0_c01446{left:765.774750px;}
.xe_c01446{left:767.383172px;}
.x9a_c01446{left:774.750158px;}
.xba_c01446{left:777.200970px;}
.x2b_c01446{left:785.700000px;}
.x1c_c01446{left:787.160130px;}
.x93_c01446{left:789.932485px;}
.x3f_c01446{left:794.458110px;}
.xa8_c01446{left:796.109356px;}
.x60_c01446{left:799.809177px;}
.x64_c01446{left:809.050017px;}
.x54_c01446{left:813.041854px;}
.xae_c01446{left:814.379932px;}
.x6f_c01446{left:817.368383px;}
.x2c_c01446{left:818.665500px;}
.x1d_c01446{left:822.613050px;}
.x40_c01446{left:825.664373px;}
.x74_c01446{left:827.588651px;}
.xf_c01446{left:832.971018px;}
.xbb_c01446{left:835.820791px;}
@media print{
.v0_c01446{vertical-align:0.000000pt;}
.ls0_c01446{letter-spacing:0.000000pt;}
.ws0_c01446{word-spacing:0.000000pt;}
.fs14_c01446{font-size:16.000000pt;}
.fsc_c01446{font-size:21.333333pt;}
.fs6_c01446{font-size:32.015372pt;}
.fse_c01446{font-size:37.346939pt;}
.fs3_c01446{font-size:37.350130pt;}
.fs8_c01446{font-size:42.647249pt;}
.fs13_c01446{font-size:42.654825pt;}
.fsb_c01446{font-size:42.665323pt;}
.fs16_c01446{font-size:42.677353pt;}
.fs12_c01446{font-size:58.641933pt;}
.fs18_c01446{font-size:58.646042pt;}
.fsa_c01446{font-size:58.648184pt;}
.fs2_c01446{font-size:58.693061pt;}
.fs4_c01446{font-size:58.694849pt;}
.fs1_c01446{font-size:63.968792pt;}
.fs7_c01446{font-size:63.970873pt;}
.fs9_c01446{font-size:63.973018pt;}
.fs11_c01446{font-size:63.975227pt;}
.fs10_c01446{font-size:64.028794pt;}
.fs17_c01446{font-size:69.301779pt;}
.fs15_c01446{font-size:69.304103pt;}
.fs5_c01446{font-size:74.635188pt;}
.fs19_c01446{font-size:74.637765pt;}
.fsf_c01446{font-size:74.700259pt;}
.fsd_c01446{font-size:80.029155pt;}
.fs0_c01446{font-size:90.666667pt;}
.y0_c01446{bottom:0.000000pt;}
.y10f_c01446{bottom:34.720041pt;}
.y10e_c01446{bottom:35.775312pt;}
.y10d_c01446{bottom:37.892387pt;}
.y10c_c01446{bottom:39.594553pt;}
.y10b_c01446{bottom:41.720635pt;}
.y10a_c01446{bottom:43.839249pt;}
.y109_c01446{bottom:45.135540pt;}
.y108_c01446{bottom:59.667333pt;}
.y107_c01446{bottom:62.063993pt;}
.y106_c01446{bottom:63.371827pt;}
.y105_c01446{bottom:66.148027pt;}
.y104_c01446{bottom:69.205347pt;}
.y103_c01446{bottom:70.620093pt;}
.y102_c01446{bottom:73.947567pt;}
.y101_c01446{bottom:77.318020pt;}
.y100_c01446{bottom:78.963580pt;}
.yff_c01446{bottom:80.644000pt;}
.yfe_c01446{bottom:90.439995pt;}
.yfd_c01446{bottom:92.317707pt;}
.yfc_c01446{bottom:93.346155pt;}
.yfb_c01446{bottom:95.750235pt;}
.yfa_c01446{bottom:99.941355pt;}
.yf9_c01446{bottom:101.049051pt;}
.yf8_c01446{bottom:102.094731pt;}
.yf7_c01446{bottom:103.811115pt;}
.yf6_c01446{bottom:105.561483pt;}
.yf5_c01446{bottom:106.642347pt;}
.yf4_c01446{bottom:108.734667pt;}
.yf3_c01446{bottom:125.430040pt;}
.yf2_c01446{bottom:126.661952pt;}
.yf1_c01446{bottom:127.998672pt;}
.yf0_c01446{bottom:130.869628pt;}
.yef_c01446{bottom:132.779140pt;}
.yee_c01446{bottom:134.719804pt;}
.yed_c01446{bottom:137.920628pt;}
.yec_c01446{bottom:141.099276pt;}
.yeb_c01446{bottom:142.651112pt;}
.yea_c01446{bottom:144.244000pt;}
.ye9_c01446{bottom:172.348000pt;}
.ye8_c01446{bottom:186.847293pt;}
.ye7_c01446{bottom:188.447968pt;}
.ye6_c01446{bottom:192.138600pt;}
.ye5_c01446{bottom:193.396827pt;}
.ye4_c01446{bottom:194.474037pt;}
.ye3_c01446{bottom:195.461669pt;}
.ye2_c01446{bottom:196.440597pt;}
.ye1_c01446{bottom:198.113261pt;}
.ye0_c01446{bottom:199.428472pt;}
.ydf_c01446{bottom:202.073536pt;}
.yde_c01446{bottom:205.323755pt;}
.ydd_c01446{bottom:206.930731pt;}
.ydc_c01446{bottom:208.564000pt;}
.ydb_c01446{bottom:231.088057pt;}
.yda_c01446{bottom:232.193308pt;}
.yd9_c01446{bottom:234.515656pt;}
.yd8_c01446{bottom:235.948904pt;}
.yd7_c01446{bottom:251.305885pt;}
.yd6_c01446{bottom:252.345469pt;}
.yd5_c01446{bottom:253.342077pt;}
.yd4_c01446{bottom:255.274320pt;}
.yd3_c01446{bottom:256.314493pt;}
.yd2_c01446{bottom:257.318445pt;}
.yd1_c01446{bottom:259.930371pt;}
.yd0_c01446{bottom:261.611467pt;}
.ycf_c01446{bottom:262.574619pt;}
.yce_c01446{bottom:264.567835pt;}
.ycd_c01446{bottom:265.907253pt;}
.ycc_c01446{bottom:269.164544pt;}
.ycb_c01446{bottom:270.771248pt;}
.yca_c01446{bottom:272.405333pt;}
.yc7_c01446{bottom:298.336000pt;}
.yc6_c01446{bottom:315.017571pt;}
.yc5_c01446{bottom:315.910735pt;}
.yc4_c01446{bottom:317.994539pt;}
.yc3_c01446{bottom:320.132673pt;}
.yc2_c01446{bottom:321.048713pt;}
.yc1_c01446{bottom:323.155104pt;}
.yc0_c01446{bottom:324.062757pt;}
.ybf_c01446{bottom:324.960772pt;}
.ybe_c01446{bottom:327.636972pt;}
.ybd_c01446{bottom:328.815253pt;}
.ybc_c01446{bottom:345.114379pt;}
.ybb_c01446{bottom:345.421784pt;}
.yba_c01446{bottom:346.863475pt;}
.yb9_c01446{bottom:347.799381pt;}
.yb8_c01446{bottom:348.822963pt;}
.yb7_c01446{bottom:351.499851pt;}
.yb6_c01446{bottom:352.782467pt;}
.yb5_c01446{bottom:354.092963pt;}
.yb4_c01446{bottom:356.378397pt;}
.yb3_c01446{bottom:358.390699pt;}
.yb2_c01446{bottom:359.738005pt;}
.yb1_c01446{bottom:362.995568pt;}
.yb0_c01446{bottom:364.586496pt;}
.yaf_c01446{bottom:366.245333pt;}
.yae_c01446{bottom:390.879840pt;}
.yad_c01446{bottom:392.654667pt;}
.yc9_c01446{bottom:400.320000pt;}
.yac_c01446{bottom:408.923067pt;}
.yab_c01446{bottom:409.854653pt;}
.yaa_c01446{bottom:413.181960pt;}
.ya9_c01446{bottom:414.038240pt;}
.ya8_c01446{bottom:414.950973pt;}
.ya7_c01446{bottom:418.599747pt;}
.ya6_c01446{bottom:419.430413pt;}
.ya5_c01446{bottom:420.400200pt;}
.ya4_c01446{bottom:422.216387pt;}
.ya3_c01446{bottom:423.352787pt;}
.ya2_c01446{bottom:442.495413pt;}
.ya1_c01446{bottom:443.669773pt;}
.ya0_c01446{bottom:445.650413pt;}
.y9f_c01446{bottom:446.875173pt;}
.y9e_c01446{bottom:447.447813pt;}
.y9d_c01446{bottom:450.026933pt;}
.y9c_c01446{bottom:452.096493pt;}
.y9b_c01446{bottom:453.271733pt;}
.y9a_c01446{bottom:454.165013pt;}
.y99_c01446{bottom:457.038893pt;}
.y98_c01446{bottom:458.458253pt;}
.y97_c01446{bottom:459.605333pt;}
.y96_c01446{bottom:487.534672pt;}
.y95_c01446{bottom:490.787545pt;}
.y94_c01446{bottom:506.677408pt;}
.y93_c01446{bottom:507.636587pt;}
.y92_c01446{bottom:510.196364pt;}
.y91_c01446{bottom:512.459483pt;}
.y90_c01446{bottom:513.427735pt;}
.y8f_c01446{bottom:514.058317pt;}
.y8e_c01446{bottom:516.919757pt;}
.y8d_c01446{bottom:517.919479pt;}
.y8c_c01446{bottom:518.878441pt;}
.y8b_c01446{bottom:522.032363pt;}
.y8a_c01446{bottom:523.600952pt;}
.y89_c01446{bottom:524.879076pt;}
.y88_c01446{bottom:539.075988pt;}
.y87_c01446{bottom:546.732000pt;}
.y85_c01446{bottom:550.822667pt;}
.yc8_c01446{bottom:555.360000pt;}
.y84_c01446{bottom:565.760392pt;}
.y83_c01446{bottom:568.881032pt;}
.y82_c01446{bottom:569.818973pt;}
.y81_c01446{bottom:570.771549pt;}
.y80_c01446{bottom:573.875891pt;}
.y7f_c01446{bottom:574.464008pt;}
.y7e_c01446{bottom:577.286024pt;}
.y7d_c01446{bottom:579.744563pt;}
.y7c_c01446{bottom:581.305523pt;}
.y7b_c01446{bottom:598.838880pt;}
.y7a_c01446{bottom:600.668000pt;}
.y79_c01446{bottom:603.210763pt;}
.y78_c01446{bottom:604.771936pt;}
.y77_c01446{bottom:605.975605pt;}
.y76_c01446{bottom:608.766944pt;}
.y75_c01446{bottom:611.256459pt;}
.y74_c01446{bottom:613.146507pt;}
.y73_c01446{bottom:616.212704pt;}
.y72_c01446{bottom:617.734581pt;}
.y71_c01446{bottom:618.966667pt;}
.y70_c01446{bottom:642.275081pt;}
.y6f_c01446{bottom:643.349808pt;}
.y6e_c01446{bottom:644.416000pt;}
.y6d_c01446{bottom:660.494736pt;}
.y6c_c01446{bottom:662.453952pt;}
.y6b_c01446{bottom:667.467683pt;}
.y6a_c01446{bottom:668.765757pt;}
.y69_c01446{bottom:672.381317pt;}
.y68_c01446{bottom:675.402920pt;}
.y67_c01446{bottom:676.330667pt;}
.y66_c01446{bottom:693.141192pt;}
.y65_c01446{bottom:695.114812pt;}
.y64_c01446{bottom:696.367844pt;}
.y63_c01446{bottom:698.578140pt;}
.y62_c01446{bottom:699.916928pt;}
.y61_c01446{bottom:700.880572pt;}
.y60_c01446{bottom:703.751000pt;}
.y5f_c01446{bottom:706.018012pt;}
.y5e_c01446{bottom:707.618556pt;}
.y5d_c01446{bottom:710.772652pt;}
.y5c_c01446{bottom:712.016532pt;}
.y5b_c01446{bottom:713.288000pt;}
.y5a_c01446{bottom:734.538284pt;}
.y59_c01446{bottom:737.731188pt;}
.y58_c01446{bottom:739.705336pt;}
.y57_c01446{bottom:756.663732pt;}
.y56_c01446{bottom:758.594364pt;}
.y55_c01446{bottom:759.905960pt;}
.y54_c01446{bottom:762.100416pt;}
.y53_c01446{bottom:763.439468pt;}
.y52_c01446{bottom:764.688320pt;}
.y51_c01446{bottom:767.265884pt;}
.y50_c01446{bottom:769.508652pt;}
.y4f_c01446{bottom:770.491524pt;}
.y4e_c01446{bottom:771.450108pt;}
.y4d_c01446{bottom:774.612124pt;}
.y4c_c01446{bottom:775.864452pt;}
.y4b_c01446{bottom:777.128000pt;}
.y4a_c01446{bottom:790.313083pt;}
.y49_c01446{bottom:792.101669pt;}
.y48_c01446{bottom:794.493753pt;}
.y46_c01446{bottom:795.423693pt;}
.y45_c01446{bottom:797.001593pt;}
.y44_c01446{bottom:798.199764pt;}
.y47_c01446{bottom:798.752625pt;}
.y43_c01446{bottom:799.993796pt;}
.y86_c01446{bottom:800.640000pt;}
.y42_c01446{bottom:803.290667pt;}
.y41_c01446{bottom:818.366813pt;}
.y40_c01446{bottom:819.310880pt;}
.y3f_c01446{bottom:821.313344pt;}
.y3e_c01446{bottom:824.006824pt;}
.y3d_c01446{bottom:825.673821pt;}
.y3c_c01446{bottom:826.968587pt;}
.y3b_c01446{bottom:829.599869pt;}
.y3a_c01446{bottom:831.934763pt;}
.y39_c01446{bottom:832.939259pt;}
.y38_c01446{bottom:833.918731pt;}
.y37_c01446{bottom:837.176565pt;}
.y36_c01446{bottom:838.450296pt;}
.y35_c01446{bottom:839.768000pt;}
.y34_c01446{bottom:856.616753pt;}
.y33_c01446{bottom:857.724499pt;}
.y32_c01446{bottom:858.594333pt;}
.y31_c01446{bottom:860.536967pt;}
.y30_c01446{bottom:861.679452pt;}
.y2f_c01446{bottom:864.224384pt;}
.y2e_c01446{bottom:864.760675pt;}
.y2d_c01446{bottom:865.912284pt;}
.y2c_c01446{bottom:882.686837pt;}
.y2b_c01446{bottom:883.595220pt;}
.y2a_c01446{bottom:885.451748pt;}
.y29_c01446{bottom:886.650167pt;}
.y28_c01446{bottom:889.671675pt;}
.y27_c01446{bottom:890.534756pt;}
.y26_c01446{bottom:893.571599pt;}
.y25_c01446{bottom:894.777664pt;}
.y24_c01446{bottom:895.965873pt;}
.y23_c01446{bottom:899.564601pt;}
.y22_c01446{bottom:900.726605pt;}
.y21_c01446{bottom:901.928000pt;}
.y20_c01446{bottom:923.799213pt;}
.y1f_c01446{bottom:925.488640pt;}
.y1e_c01446{bottom:928.787640pt;}
.y1d_c01446{bottom:945.513627pt;}
.y1c_c01446{bottom:946.491067pt;}
.y1b_c01446{bottom:950.101867pt;}
.y1a_c01446{bottom:952.549093pt;}
.y19_c01446{bottom:953.723027pt;}
.y18_c01446{bottom:956.708627pt;}
.y17_c01446{bottom:959.738960pt;}
.y16_c01446{bottom:962.434347pt;}
.y15_c01446{bottom:963.610560pt;}
.y14_c01446{bottom:964.797707pt;}
.y13_c01446{bottom:983.863800pt;}
.y12_c01446{bottom:986.269040pt;}
.y11_c01446{bottom:987.976600pt;}
.y10_c01446{bottom:988.884240pt;}
.yf_c01446{bottom:990.311560pt;}
.ye_c01446{bottom:991.212000pt;}
.yd_c01446{bottom:1007.648512pt;}
.yc_c01446{bottom:1009.515989pt;}
.yb_c01446{bottom:1010.460885pt;}
.ya_c01446{bottom:1012.973653pt;}
.y9_c01446{bottom:1015.415381pt;}
.y8_c01446{bottom:1016.036651pt;}
.y7_c01446{bottom:1018.205952pt;}
.y6_c01446{bottom:1019.463125pt;}
.y5_c01446{bottom:1021.986773pt;}
.y4_c01446{bottom:1025.368661pt;}
.y3_c01446{bottom:1026.575573pt;}
.y2_c01446{bottom:1028.170667pt;}
.y1_c01446{bottom:1069.673333pt;}
.h16_c01446{height:16.000000pt;}
.he_c01446{height:21.333333pt;}
.h8_c01446{height:32.015372pt;}
.h10_c01446{height:37.346939pt;}
.h5_c01446{height:37.350130pt;}
.ha_c01446{height:42.647249pt;}
.h15_c01446{height:42.654825pt;}
.hd_c01446{height:42.665323pt;}
.h18_c01446{height:42.677353pt;}
.h14_c01446{height:58.641933pt;}
.h1a_c01446{height:58.646042pt;}
.hc_c01446{height:58.648184pt;}
.h4_c01446{height:58.693061pt;}
.h6_c01446{height:58.694849pt;}
.h3_c01446{height:63.968792pt;}
.h9_c01446{height:63.970873pt;}
.hb_c01446{height:63.973018pt;}
.h13_c01446{height:63.975227pt;}
.h12_c01446{height:64.028794pt;}
.h19_c01446{height:69.301779pt;}
.h17_c01446{height:69.304103pt;}
.h7_c01446{height:74.635188pt;}
.h1b_c01446{height:74.637765pt;}
.h11_c01446{height:74.700259pt;}
.hf_c01446{height:80.029155pt;}
.h2_c01446{height:90.666667pt;}
.h0_c01446{height:1121.280000pt;}
.h1_c01446{height:1121.333333pt;}
.w0_c01446{width:810.666667pt;}
.x0_c01446{left:0.000000pt;}
.x9d_c01446{left:6.720000pt;}
.x9c_c01446{left:8.640000pt;}
.x9e_c01446{left:10.080000pt;}
.x9f_c01446{left:11.760000pt;}
.x76_c01446{left:14.400000pt;}
.xbc_c01446{left:81.954667pt;}
.xb0_c01446{left:83.633333pt;}
.xaa_c01446{left:85.805333pt;}
.xa0_c01446{left:87.701333pt;}
.x8b_c01446{left:90.317333pt;}
.x81_c01446{left:93.405333pt;}
.x78_c01446{left:95.018179pt;}
.x67_c01446{left:98.185333pt;}
.x4_c01446{left:99.742667pt;}
.x56_c01446{left:101.042667pt;}
.x49_c01446{left:103.194667pt;}
.x35_c01446{left:105.106667pt;}
.x21_c01446{left:107.020000pt;}
.x15_c01446{left:109.094200pt;}
.xbd_c01446{left:129.918655pt;}
.x82_c01446{left:131.641333pt;}
.x79_c01446{left:133.757248pt;}
.xa1_c01446{left:135.714605pt;}
.x68_c01446{left:136.649497pt;}
.x57_c01446{left:139.533471pt;}
.x4a_c01446{left:141.445711pt;}
.x36_c01446{left:143.823911pt;}
.x22_c01446{left:145.774667pt;}
.x16_c01446{left:147.375707pt;}
.x5_c01446{left:149.539487pt;}
.x58_c01446{left:177.189111pt;}
.x4b_c01446{left:179.357095pt;}
.x37_c01446{left:181.249115pt;}
.x23_c01446{left:183.258667pt;}
.x69_c01446{left:184.160605pt;}
.x17_c01446{left:185.337253pt;}
.x6_c01446{left:187.217771pt;}
.xb5_c01446{left:235.274667pt;}
.xaf_c01446{left:236.317333pt;}
.xa9_c01446{left:239.966028pt;}
.x9b_c01446{left:241.242667pt;}
.x89_c01446{left:243.884000pt;}
.x80_c01446{left:245.839149pt;}
.x75_c01446{left:248.113333pt;}
.x70_c01446{left:250.334808pt;}
.x65_c01446{left:251.565333pt;}
.x45_c01446{left:254.197452pt;}
.x41_c01446{left:257.673333pt;}
.x2d_c01446{left:258.686196pt;}
.x1e_c01446{left:259.997227pt;}
.x10_c01446{left:262.658667pt;}
.xc1_c01446{left:271.153628pt;}
.x18_c01446{left:272.291987pt;}
.x4c_c01446{left:275.079943pt;}
.x38_c01446{left:276.971963pt;}
.xa2_c01446{left:278.630213pt;}
.x6a_c01446{left:279.883453pt;}
.x61_c01446{left:281.118047pt;}
.x94_c01446{left:282.026999pt;}
.x85_c01446{left:282.931093pt;}
.x7_c01446{left:292.796087pt;}
.x8a_c01446{left:294.542624pt;}
.x2e_c01446{left:298.418009pt;}
.x24_c01446{left:299.346667pt;}
.x4d_c01446{left:304.098895pt;}
.x39_c01446{left:305.751155pt;}
.x66_c01446{left:309.370137pt;}
.x55_c01446{left:313.465663pt;}
.x2f_c01446{left:316.923167pt;}
.xa3_c01446{left:317.985485pt;}
.x59_c01446{left:321.125031pt;}
.xb6_c01446{left:323.330523pt;}
.xc2_c01446{left:329.950051pt;}
.x4e_c01446{left:333.853111pt;}
.x3a_c01446{left:335.265611pt;}
.x7a_c01446{left:336.188452pt;}
.x25_c01446{left:337.676000pt;}
.x6b_c01446{left:338.888389pt;}
.x11_c01446{left:340.250667pt;}
.x86_c01446{left:341.513333pt;}
.x83_c01446{left:343.700000pt;}
.xab_c01446{left:354.228641pt;}
.x1f_c01446{left:357.018920pt;}
.x42_c01446{left:364.024000pt;}
.x95_c01446{left:368.261481pt;}
.x12_c01446{left:370.505333pt;}
.x8_c01446{left:371.581223pt;}
.x87_c01446{left:372.816413pt;}
.x26_c01446{left:376.581333pt;}
.x8c_c01446{left:380.231129pt;}
.x1_c01446{left:388.080000pt;}
.x5a_c01446{left:389.753667pt;}
.xac_c01446{left:392.872625pt;}
.x96_c01446{left:397.194136pt;}
.x88_c01446{left:399.615613pt;}
.x46_c01446{left:401.051879pt;}
.x30_c01446{left:404.700623pt;}
.x20_c01446{left:406.704960pt;}
.x2_c01446{left:408.000000pt;}
.x9_c01446{left:410.828603pt;}
.x84_c01446{left:412.685333pt;}
.x6c_c01446{left:416.607925pt;}
.xb7_c01446{left:419.532891pt;}
.x43_c01446{left:421.896000pt;}
.x7b_c01446{left:422.894412pt;}
.x97_c01446{left:426.449180pt;}
.x13_c01446{left:427.424000pt;}
.xb1_c01446{left:430.705913pt;}
.xc3_c01446{left:436.211992pt;}
.x7c_c01446{left:441.999316pt;}
.x31_c01446{left:444.095061pt;}
.x3_c01446{left:446.160000pt;}
.x8d_c01446{left:447.382577pt;}
.xb8_c01446{left:448.550511pt;}
.xa4_c01446{left:454.245089pt;}
.x44_c01446{left:460.546667pt;}
.x71_c01446{left:463.918344pt;}
.x19_c01446{left:466.372853pt;}
.x7d_c01446{left:471.337231pt;}
.x27_c01446{left:474.544000pt;}
.x5b_c01446{left:476.649351pt;}
.xa_c01446{left:478.551479pt;}
.x4f_c01446{left:479.777707pt;}
.x3b_c01446{left:481.183547pt;}
.x72_c01446{left:482.278632pt;}
.x47_c01446{left:483.554337pt;}
.x8e_c01446{left:485.888033pt;}
.xb2_c01446{left:488.512049pt;}
.x98_c01446{left:494.334836pt;}
.xbe_c01446{left:495.711163pt;}
.xb_c01446{left:497.946731pt;}
.xad_c01446{left:499.801589pt;}
.x28_c01446{left:502.385333pt;}
.x1a_c01446{left:504.258400pt;}
.x5c_c01446{left:505.821483pt;}
.x14_c01446{left:507.598667pt;}
.x32_c01446{left:511.065861pt;}
.x62_c01446{left:514.273991pt;}
.x50_c01446{left:517.583863pt;}
.x3c_c01446{left:519.226799pt;}
.x8f_c01446{left:523.574309pt;}
.x77_c01446{left:530.796000pt;}
.x7e_c01446{left:539.935476pt;}
.x33_c01446{left:541.062388pt;}
.x48_c01446{left:545.211473pt;}
.x5d_c01446{left:546.350247pt;}
.x51_c01446{left:558.120619pt;}
.xa5_c01446{left:560.488073pt;}
.x3d_c01446{left:568.207103pt;}
.xc_c01446{left:574.174427pt;}
.xb3_c01446{left:575.423717pt;}
.x34_c01446{left:579.250077pt;}
.x1b_c01446{left:583.208040pt;}
.x6d_c01446{left:590.064961pt;}
.xa6_c01446{left:591.050813pt;}
.x99_c01446{left:592.733035pt;}
.xb9_c01446{left:595.592655pt;}
.x29_c01446{left:599.853333pt;}
.x90_c01446{left:602.227577pt;}
.x73_c01446{left:608.930520pt;}
.xbf_c01446{left:612.281143pt;}
.x5e_c01446{left:613.261935pt;}
.xb4_c01446{left:615.889877pt;}
.x7f_c01446{left:617.494912pt;}
.x52_c01446{left:624.552787pt;}
.x91_c01446{left:632.302805pt;}
.x2a_c01446{left:638.512000pt;}
.x3e_c01446{left:647.347883pt;}
.x5f_c01446{left:651.194631pt;}
.xd_c01446{left:652.619903pt;}
.x92_c01446{left:659.801945pt;}
.x63_c01446{left:661.589195pt;}
.x53_c01446{left:664.258375pt;}
.x6e_c01446{left:669.446833pt;}
.xa7_c01446{left:677.107337pt;}
.xc0_c01446{left:680.688667pt;}
.xe_c01446{left:682.118375pt;}
.x9a_c01446{left:688.666807pt;}
.xba_c01446{left:690.845307pt;}
.x2b_c01446{left:698.400000pt;}
.x1c_c01446{left:699.697893pt;}
.x93_c01446{left:702.162209pt;}
.x3f_c01446{left:706.184987pt;}
.xa8_c01446{left:707.652761pt;}
.x60_c01446{left:710.941491pt;}
.x64_c01446{left:719.155571pt;}
.x54_c01446{left:722.703871pt;}
.xae_c01446{left:723.893273pt;}
.x6f_c01446{left:726.549673pt;}
.x2c_c01446{left:727.702667pt;}
.x1d_c01446{left:731.211600pt;}
.x40_c01446{left:733.923887pt;}
.x74_c01446{left:735.634356pt;}
.xf_c01446{left:740.418683pt;}
.xbb_c01446{left:742.951815pt;}
}





/* 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_c01447 {
    display:none;
  }
  .loading-indicator_c01447.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01447 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_c01447 { 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_c01447" -> "#page-container .classname_c01447")
 */
.pf_c01447 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01447 { /* 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_c01447.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01447 { /* 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_c01447 { /* 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_c01447 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01447 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01447 {overflow:visible;}
  }
}
.c_c01447 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01447 { /* 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_c01447:after { /* webkit #35443 */
  content: '';
}
.t_c01447:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01447 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 */
}
.__c01447 { /* 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_c01447 { /* info for Javascript */
  display:none;
}
.l_c01447 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01447 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01447 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01447: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_c01447 {
    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_c01447.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01447.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_c01447 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01447{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01447;src:url('chunks/assets/font_a17ea70eb993d518921cd15d.woff2')format("woff");}.ff1_c01447{font-family:ff1_c01447;line-height:1.000000;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;}
.m9_c01447{transform:matrix(0.007613,0.507513,-0.249972,0.003750,0,0);-ms-transform:matrix(0.007613,0.507513,-0.249972,0.003750,0,0);-webkit-transform:matrix(0.007613,0.507513,-0.249972,0.003750,0,0);}
.ma_c01447{transform:matrix(0.032139,2.142584,-0.249972,0.003750,0,0);-ms-transform:matrix(0.032139,2.142584,-0.249972,0.003750,0,0);-webkit-transform:matrix(0.032139,2.142584,-0.249972,0.003750,0,0);}
.mc_c01447{transform:matrix(0.036854,0.736333,-0.249687,0.012497,0,0);-ms-transform:matrix(0.036854,0.736333,-0.249687,0.012497,0,0);-webkit-transform:matrix(0.036854,0.736333,-0.249687,0.012497,0,0);}
.mb_c01447{transform:matrix(0.041240,0.587960,-0.249387,0.017492,0,0);-ms-transform:matrix(0.041240,0.587960,-0.249387,0.017492,0,0);-webkit-transform:matrix(0.041240,0.587960,-0.249387,0.017492,0,0);}
.m8_c01447{transform:matrix(0.043449,2.896579,-0.249972,0.003750,0,0);-ms-transform:matrix(0.043449,2.896579,-0.249972,0.003750,0,0);-webkit-transform:matrix(0.043449,2.896579,-0.249972,0.003750,0,0);}
.m0_c01447{transform:matrix(0.108375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108375,0.000000,0.000000,0.250000,0,0);}
.m2_c01447{transform:matrix(0.119095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119095,0.000000,0.000000,0.250000,0,0);}
.m6_c01447{transform:matrix(0.175270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175270,0.000000,0.000000,0.250000,0,0);}
.m1_c01447{transform:matrix(0.196565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196565,0.000000,0.000000,0.250000,0,0);}
.m5_c01447{transform:matrix(0.224720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224720,0.000000,0.000000,0.250000,0,0);}
.m4_c01447{transform:matrix(0.245600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245600,0.000000,0.000000,0.250000,0,0);}
.m3_c01447{transform:matrix(0.248295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248295,0.000000,0.000000,0.250000,0,0);}
.m7_c01447{transform:matrix(0.506950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506950,0.000000,0.000000,0.250000,0,0);}
.v0_c01447{vertical-align:0.000000px;}
.ls0_c01447{letter-spacing:0.000000px;}
.sc__c01447{text-shadow:none;}
.sc0_c01447{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__c01447{-webkit-text-stroke:0px transparent;}
.sc0_c01447{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01447{word-spacing:0.000000px;}
.fc0_c01447{color:transparent;}
.fs1_c01447{font-size:18.000000px;}
.fs4_c01447{font-size:18.002025px;}
.fs5_c01447{font-size:18.008134px;}
.fs0_c01447{font-size:30.000000px;}
.fs2_c01447{font-size:42.000000px;}
.fs6_c01447{font-size:42.010520px;}
.fs3_c01447{font-size:60.000000px;}
.y0_c01447{bottom:0.000000px;}
.yc_c01447{bottom:497.731500px;}
.y9_c01447{bottom:523.560000px;}
.ya_c01447{bottom:551.902410px;}
.yb_c01447{bottom:555.120000px;}
.y8_c01447{bottom:565.908000px;}
.y6_c01447{bottom:742.767000px;}
.y7_c01447{bottom:748.441500px;}
.y4_c01447{bottom:993.060000px;}
.y3_c01447{bottom:993.600000px;}
.y1_c01447{bottom:994.410000px;}
.y2_c01447{bottom:994.680000px;}
.y5_c01447{bottom:997.246500px;}
.h3_c01447{height:18.000000px;}
.h6_c01447{height:18.002025px;}
.h7_c01447{height:18.008134px;}
.h2_c01447{height:30.000000px;}
.h4_c01447{height:42.000000px;}
.h8_c01447{height:42.010520px;}
.h5_c01447{height:60.000000px;}
.h0_c01447{height:1250.850000px;}
.h1_c01447{height:1251.000000px;}
.w0_c01447{width:912.000000px;}
.x0_c01447{left:0.000000px;}
.xc_c01447{left:13.224000px;}
.xa_c01447{left:16.733610px;}
.x9_c01447{left:18.630000px;}
.xb_c01447{left:23.490000px;}
.x8_c01447{left:308.610000px;}
.x7_c01447{left:329.940000px;}
.x6_c01447{left:414.180000px;}
.x5_c01447{left:423.900000px;}
.x4_c01447{left:438.480000px;}
.x3_c01447{left:444.420000px;}
.x2_c01447{left:450.360000px;}
.x1_c01447{left:456.570000px;}
@media print{
.v0_c01447{vertical-align:0.000000pt;}
.ls0_c01447{letter-spacing:0.000000pt;}
.ws0_c01447{word-spacing:0.000000pt;}
.fs1_c01447{font-size:16.000000pt;}
.fs4_c01447{font-size:16.001800pt;}
.fs5_c01447{font-size:16.007230pt;}
.fs0_c01447{font-size:26.666667pt;}
.fs2_c01447{font-size:37.333333pt;}
.fs6_c01447{font-size:37.342684pt;}
.fs3_c01447{font-size:53.333333pt;}
.y0_c01447{bottom:0.000000pt;}
.yc_c01447{bottom:442.428000pt;}
.y9_c01447{bottom:465.386667pt;}
.ya_c01447{bottom:490.579920pt;}
.yb_c01447{bottom:493.440000pt;}
.y8_c01447{bottom:503.029333pt;}
.y6_c01447{bottom:660.237333pt;}
.y7_c01447{bottom:665.281333pt;}
.y4_c01447{bottom:882.720000pt;}
.y3_c01447{bottom:883.200000pt;}
.y1_c01447{bottom:883.920000pt;}
.y2_c01447{bottom:884.160000pt;}
.y5_c01447{bottom:886.441333pt;}
.h3_c01447{height:16.000000pt;}
.h6_c01447{height:16.001800pt;}
.h7_c01447{height:16.007230pt;}
.h2_c01447{height:26.666667pt;}
.h4_c01447{height:37.333333pt;}
.h8_c01447{height:37.342684pt;}
.h5_c01447{height:53.333333pt;}
.h0_c01447{height:1111.866667pt;}
.h1_c01447{height:1112.000000pt;}
.w0_c01447{width:810.666667pt;}
.x0_c01447{left:0.000000pt;}
.xc_c01447{left:11.754667pt;}
.xa_c01447{left:14.874320pt;}
.x9_c01447{left:16.560000pt;}
.xb_c01447{left:20.880000pt;}
.x8_c01447{left:274.320000pt;}
.x7_c01447{left:293.280000pt;}
.x6_c01447{left:368.160000pt;}
.x5_c01447{left:376.800000pt;}
.x4_c01447{left:389.760000pt;}
.x3_c01447{left:395.040000pt;}
.x2_c01447{left:400.320000pt;}
.x1_c01447{left:405.840000pt;}
}





/* 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_c01448 {
    display:none;
  }
  .loading-indicator_c01448.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01448 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_c01448 { 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_c01448" -> "#page-container .classname_c01448")
 */
.pf_c01448 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01448 { /* 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_c01448.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01448 { /* 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_c01448 { /* 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_c01448 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01448 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01448 {overflow:visible;}
  }
}
.c_c01448 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01448 { /* 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_c01448:after { /* webkit #35443 */
  content: '';
}
.t_c01448:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01448 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 */
}
.__c01448 { /* 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_c01448 { /* info for Javascript */
  display:none;
}
.l_c01448 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01448 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01448 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01448: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_c01448 {
    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_c01448.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01448.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_c01448 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01448{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01448;src:url('chunks/assets/font_cfe63ee56e9e10a97d33a3db.woff2')format("woff");}.ff1_c01448{font-family:ff1_c01448;line-height:1.000000;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;}
.m2b_c01448{transform:matrix(0.008540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.008540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.008540,0.000000,0.000000,0.250000,0,0);}
.m0_c01448{transform:matrix(0.009090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.009090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.009090,0.000000,0.000000,0.250000,0,0);}
.m13_c01448{transform:matrix(0.014685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.014685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.014685,0.000000,0.000000,0.250000,0,0);}
.mbb_c01448{transform:matrix(0.031915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.031915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.031915,0.000000,0.000000,0.250000,0,0);}
.m44_c01448{transform:matrix(0.124185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124185,0.000000,0.000000,0.250000,0,0);}
.m81_c01448{transform:matrix(0.138295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138295,0.000000,0.000000,0.250000,0,0);}
.m6_c01448{transform:matrix(0.144465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144465,0.000000,0.000000,0.250000,0,0);}
.m4_c01448{transform:matrix(0.148625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148625,0.000000,0.000000,0.250000,0,0);}
.m42_c01448{transform:matrix(0.149165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149165,0.000000,0.000000,0.250000,0,0);}
.m45_c01448{transform:matrix(0.150795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150795,0.000000,0.000000,0.250000,0,0);}
.m89_c01448{transform:matrix(0.154360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154360,0.000000,0.000000,0.250000,0,0);}
.m3f_c01448{transform:matrix(0.155300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155300,0.000000,0.000000,0.250000,0,0);}
.m64_c01448{transform:matrix(0.176025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176025,0.000000,0.000000,0.250000,0,0);}
.m1d_c01448{transform:matrix(0.181485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181485,0.000000,0.000000,0.250000,0,0);}
.m2a_c01448{transform:matrix(0.181935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181935,0.000000,0.000000,0.250000,0,0);}
.m21_c01448{transform:matrix(0.187150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187150,0.000000,0.000000,0.250000,0,0);}
.m27_c01448{transform:matrix(0.188655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188655,0.000000,0.000000,0.250000,0,0);}
.maa_c01448{transform:matrix(0.191975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191975,0.000000,0.000000,0.250000,0,0);}
.m29_c01448{transform:matrix(0.192775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192775,0.000000,0.000000,0.250000,0,0);}
.m7e_c01448{transform:matrix(0.197475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197475,0.000000,0.000000,0.250000,0,0);}
.m7d_c01448{transform:matrix(0.199730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199730,0.000000,0.000000,0.250000,0,0);}
.m97_c01448{transform:matrix(0.204945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204945,0.000000,0.000000,0.250000,0,0);}
.mae_c01448{transform:matrix(0.206280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206280,0.000000,0.000000,0.250000,0,0);}
.m7_c01448{transform:matrix(0.207910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207910,0.000000,0.000000,0.250000,0,0);}
.m5b_c01448{transform:matrix(0.208355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208355,0.000000,0.000000,0.250000,0,0);}
.mb4_c01448{transform:matrix(0.209495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209495,0.000000,0.000000,0.250000,0,0);}
.m83_c01448{transform:matrix(0.210295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210295,0.000000,0.000000,0.250000,0,0);}
.m8a_c01448{transform:matrix(0.210620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210620,0.000000,0.000000,0.250000,0,0);}
.m11_c01448{transform:matrix(0.211870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211870,0.000000,0.000000,0.250000,0,0);}
.m66_c01448{transform:matrix(0.212940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212940,0.000000,0.000000,0.250000,0,0);}
.m62_c01448{transform:matrix(0.213135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213135,0.000000,0.000000,0.250000,0,0);}
.m55_c01448{transform:matrix(0.215060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215060,0.000000,0.000000,0.250000,0,0);}
.m85_c01448{transform:matrix(0.215885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215885,0.000000,0.000000,0.250000,0,0);}
.md_c01448{transform:matrix(0.216995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216995,0.000000,0.000000,0.250000,0,0);}
.m28_c01448{transform:matrix(0.217580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217580,0.000000,0.000000,0.250000,0,0);}
.m5_c01448{transform:matrix(0.217795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217795,0.000000,0.000000,0.250000,0,0);}
.m1_c01448{transform:matrix(0.218475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218475,0.000000,0.000000,0.250000,0,0);}
.m43_c01448{transform:matrix(0.218670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218670,0.000000,0.000000,0.250000,0,0);}
.m2_c01448{transform:matrix(0.218970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218970,0.000000,0.000000,0.250000,0,0);}
.m9_c01448{transform:matrix(0.222145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222145,0.000000,0.000000,0.250000,0,0);}
.m3b_c01448{transform:matrix(0.222940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222940,0.000000,0.000000,0.250000,0,0);}
.m92_c01448{transform:matrix(0.223005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223005,0.000000,0.000000,0.250000,0,0);}
.m53_c01448{transform:matrix(0.224810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224810,0.000000,0.000000,0.250000,0,0);}
.m52_c01448{transform:matrix(0.225255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225255,0.000000,0.000000,0.250000,0,0);}
.m86_c01448{transform:matrix(0.225345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225345,0.000000,0.000000,0.250000,0,0);}
.m67_c01448{transform:matrix(0.225575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225575,0.000000,0.000000,0.250000,0,0);}
.m76_c01448{transform:matrix(0.225940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225940,0.000000,0.000000,0.250000,0,0);}
.mb_c01448{transform:matrix(0.226370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226370,0.000000,0.000000,0.250000,0,0);}
.m26_c01448{transform:matrix(0.226425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226425,0.000000,0.000000,0.250000,0,0);}
.ma6_c01448{transform:matrix(0.226790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226790,0.000000,0.000000,0.250000,0,0);}
.m25_c01448{transform:matrix(0.226840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226840,0.000000,0.000000,0.250000,0,0);}
.m99_c01448{transform:matrix(0.228105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228105,0.000000,0.000000,0.250000,0,0);}
.m22_c01448{transform:matrix(0.229525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229525,0.000000,0.000000,0.250000,0,0);}
.m18_c01448{transform:matrix(0.230285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230285,0.000000,0.000000,0.250000,0,0);}
.ma3_c01448{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.mab_c01448{transform:matrix(0.231585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231585,0.000000,0.000000,0.250000,0,0);}
.m98_c01448{transform:matrix(0.231625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231625,0.000000,0.000000,0.250000,0,0);}
.m7f_c01448{transform:matrix(0.231805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231805,0.000000,0.000000,0.250000,0,0);}
.m9b_c01448{transform:matrix(0.232555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232555,0.000000,0.000000,0.250000,0,0);}
.m79_c01448{transform:matrix(0.232985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232985,0.000000,0.000000,0.250000,0,0);}
.m88_c01448{transform:matrix(0.233255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233255,0.000000,0.000000,0.250000,0,0);}
.m87_c01448{transform:matrix(0.234285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234285,0.000000,0.000000,0.250000,0,0);}
.m9e_c01448{transform:matrix(0.234535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234535,0.000000,0.000000,0.250000,0,0);}
.ma0_c01448{transform:matrix(0.234810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234810,0.000000,0.000000,0.250000,0,0);}
.m40_c01448{transform:matrix(0.235265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235265,0.000000,0.000000,0.250000,0,0);}
.mad_c01448{transform:matrix(0.235825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235825,0.000000,0.000000,0.250000,0,0);}
.m15_c01448{transform:matrix(0.237325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237325,0.000000,0.000000,0.250000,0,0);}
.ma7_c01448{transform:matrix(0.239005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239005,0.000000,0.000000,0.250000,0,0);}
.mb1_c01448{transform:matrix(0.240960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240960,0.000000,0.000000,0.250000,0,0);}
.m96_c01448{transform:matrix(0.241225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241225,0.000000,0.000000,0.250000,0,0);}
.m90_c01448{transform:matrix(0.242345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242345,0.000000,0.000000,0.250000,0,0);}
.mac_c01448{transform:matrix(0.242740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242740,0.000000,0.000000,0.250000,0,0);}
.ma4_c01448{transform:matrix(0.242870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242870,0.000000,0.000000,0.250000,0,0);}
.m6c_c01448{transform:matrix(0.243210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243210,0.000000,0.000000,0.250000,0,0);}
.m7a_c01448{transform:matrix(0.243495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243495,0.000000,0.000000,0.250000,0,0);}
.mb9_c01448{transform:matrix(0.243580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243580,0.000000,0.000000,0.250000,0,0);}
.mb5_c01448{transform:matrix(0.244255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244255,0.000000,0.000000,0.250000,0,0);}
.m3c_c01448{transform:matrix(0.244310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244310,0.000000,0.000000,0.250000,0,0);}
.m65_c01448{transform:matrix(0.244595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244595,0.000000,0.000000,0.250000,0,0);}
.m54_c01448{transform:matrix(0.244650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244650,0.000000,0.000000,0.250000,0,0);}
.m77_c01448{transform:matrix(0.244860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244860,0.000000,0.000000,0.250000,0,0);}
.m82_c01448{transform:matrix(0.245215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245215,0.000000,0.000000,0.250000,0,0);}
.m61_c01448{transform:matrix(0.245725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245725,0.000000,0.000000,0.250000,0,0);}
.m50_c01448{transform:matrix(0.246300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246300,0.000000,0.000000,0.250000,0,0);}
.m63_c01448{transform:matrix(0.246650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246650,0.000000,0.000000,0.250000,0,0);}
.ma9_c01448{transform:matrix(0.246780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246780,0.000000,0.000000,0.250000,0,0);}
.m10_c01448{transform:matrix(0.246895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246895,0.000000,0.000000,0.250000,0,0);}
.m60_c01448{transform:matrix(0.247915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247915,0.000000,0.000000,0.250000,0,0);}
.ma8_c01448{transform:matrix(0.248170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248170,0.000000,0.000000,0.250000,0,0);}
.m6b_c01448{transform:matrix(0.249340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249340,0.000000,0.000000,0.250000,0,0);}
.mc_c01448{transform:matrix(0.250100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250100,0.000000,0.000000,0.250000,0,0);}
.m12_c01448{transform:matrix(0.250470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250470,0.000000,0.000000,0.250000,0,0);}
.m3e_c01448{transform:matrix(0.251045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251045,0.000000,0.000000,0.250000,0,0);}
.ma_c01448{transform:matrix(0.251810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251810,0.000000,0.000000,0.250000,0,0);}
.m78_c01448{transform:matrix(0.251895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251895,0.000000,0.000000,0.250000,0,0);}
.m33_c01448{transform:matrix(0.252680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252680,0.000000,0.000000,0.250000,0,0);}
.m7c_c01448{transform:matrix(0.252845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252845,0.000000,0.000000,0.250000,0,0);}
.m80_c01448{transform:matrix(0.253160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253160,0.000000,0.000000,0.250000,0,0);}
.m8_c01448{transform:matrix(0.253965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253965,0.000000,0.000000,0.250000,0,0);}
.me_c01448{transform:matrix(0.254110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254110,0.000000,0.000000,0.250000,0,0);}
.m3d_c01448{transform:matrix(0.254175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254175,0.000000,0.000000,0.250000,0,0);}
.mb0_c01448{transform:matrix(0.254720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254720,0.000000,0.000000,0.250000,0,0);}
.m48_c01448{transform:matrix(0.254980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254980,0.000000,0.000000,0.250000,0,0);}
.m4e_c01448{transform:matrix(0.255260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255260,0.000000,0.000000,0.250000,0,0);}
.m94_c01448{transform:matrix(0.255270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255270,0.000000,0.000000,0.250000,0,0);}
.ma5_c01448{transform:matrix(0.255645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255645,0.000000,0.000000,0.250000,0,0);}
.m39_c01448{transform:matrix(0.255705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255705,0.000000,0.000000,0.250000,0,0);}
.m95_c01448{transform:matrix(0.255745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255745,0.000000,0.000000,0.250000,0,0);}
.ma1_c01448{transform:matrix(0.255940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255940,0.000000,0.000000,0.250000,0,0);}
.m9f_c01448{transform:matrix(0.255945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255945,0.000000,0.000000,0.250000,0,0);}
.m75_c01448{transform:matrix(0.256790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256790,0.000000,0.000000,0.250000,0,0);}
.m51_c01448{transform:matrix(0.256815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256815,0.000000,0.000000,0.250000,0,0);}
.m69_c01448{transform:matrix(0.257065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257065,0.000000,0.000000,0.250000,0,0);}
.mf_c01448{transform:matrix(0.257190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257190,0.000000,0.000000,0.250000,0,0);}
.ma2_c01448{transform:matrix(0.257595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257595,0.000000,0.000000,0.250000,0,0);}
.m3a_c01448{transform:matrix(0.257805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257805,0.000000,0.000000,0.250000,0,0);}
.m4f_c01448{transform:matrix(0.258655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258655,0.000000,0.000000,0.250000,0,0);}
.m2f_c01448{transform:matrix(0.259135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259135,0.000000,0.000000,0.250000,0,0);}
.m16_c01448{transform:matrix(0.259155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259155,0.000000,0.000000,0.250000,0,0);}
.m56_c01448{transform:matrix(0.259400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259400,0.000000,0.000000,0.250000,0,0);}
.m6a_c01448{transform:matrix(0.259820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259820,0.000000,0.000000,0.250000,0,0);}
.m6e_c01448{transform:matrix(0.260200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260200,0.000000,0.000000,0.250000,0,0);}
.mb8_c01448{transform:matrix(0.261850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261850,0.000000,0.000000,0.250000,0,0);}
.m2e_c01448{transform:matrix(0.262535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262535,0.000000,0.000000,0.250000,0,0);}
.mba_c01448{transform:matrix(0.264055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264055,0.000000,0.000000,0.250000,0,0);}
.mb2_c01448{transform:matrix(0.264755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264755,0.000000,0.000000,0.250000,0,0);}
.m8d_c01448{transform:matrix(0.264925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264925,0.000000,0.000000,0.250000,0,0);}
.m1e_c01448{transform:matrix(0.265055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265055,0.000000,0.000000,0.250000,0,0);}
.m73_c01448{transform:matrix(0.265095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265095,0.000000,0.000000,0.250000,0,0);}
.m8e_c01448{transform:matrix(0.265205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265205,0.000000,0.000000,0.250000,0,0);}
.m19_c01448{transform:matrix(0.265575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265575,0.000000,0.000000,0.250000,0,0);}
.m9c_c01448{transform:matrix(0.265755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265755,0.000000,0.000000,0.250000,0,0);}
.m23_c01448{transform:matrix(0.266030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266030,0.000000,0.000000,0.250000,0,0);}
.m5d_c01448{transform:matrix(0.266270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266270,0.000000,0.000000,0.250000,0,0);}
.m6d_c01448{transform:matrix(0.266315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266315,0.000000,0.000000,0.250000,0,0);}
.m9d_c01448{transform:matrix(0.266480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266480,0.000000,0.000000,0.250000,0,0);}
.m74_c01448{transform:matrix(0.267300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267300,0.000000,0.000000,0.250000,0,0);}
.m14_c01448{transform:matrix(0.268150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268150,0.000000,0.000000,0.250000,0,0);}
.m36_c01448{transform:matrix(0.268330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268330,0.000000,0.000000,0.250000,0,0);}
.m5e_c01448{transform:matrix(0.269080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269080,0.000000,0.000000,0.250000,0,0);}
.m91_c01448{transform:matrix(0.269445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269445,0.000000,0.000000,0.250000,0,0);}
.mb7_c01448{transform:matrix(0.269475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269475,0.000000,0.000000,0.250000,0,0);}
.m6f_c01448{transform:matrix(0.269840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269840,0.000000,0.000000,0.250000,0,0);}
.m1c_c01448{transform:matrix(0.270070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270070,0.000000,0.000000,0.250000,0,0);}
.m49_c01448{transform:matrix(0.270200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270200,0.000000,0.000000,0.250000,0,0);}
.mb3_c01448{transform:matrix(0.270575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270575,0.000000,0.000000,0.250000,0,0);}
.m1a_c01448{transform:matrix(0.270845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270845,0.000000,0.000000,0.250000,0,0);}
.m93_c01448{transform:matrix(0.271015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271015,0.000000,0.000000,0.250000,0,0);}
.m20_c01448{transform:matrix(0.271730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271730,0.000000,0.000000,0.250000,0,0);}
.m9a_c01448{transform:matrix(0.271945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271945,0.000000,0.000000,0.250000,0,0);}
.m5f_c01448{transform:matrix(0.273725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273725,0.000000,0.000000,0.250000,0,0);}
.m8f_c01448{transform:matrix(0.273775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273775,0.000000,0.000000,0.250000,0,0);}
.m7b_c01448{transform:matrix(0.274775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274775,0.000000,0.000000,0.250000,0,0);}
.m68_c01448{transform:matrix(0.274915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274915,0.000000,0.000000,0.250000,0,0);}
.m17_c01448{transform:matrix(0.275200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275200,0.000000,0.000000,0.250000,0,0);}
.m24_c01448{transform:matrix(0.275470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275470,0.000000,0.000000,0.250000,0,0);}
.m1f_c01448{transform:matrix(0.275630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275630,0.000000,0.000000,0.250000,0,0);}
.m84_c01448{transform:matrix(0.276515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276515,0.000000,0.000000,0.250000,0,0);}
.m38_c01448{transform:matrix(0.276585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276585,0.000000,0.000000,0.250000,0,0);}
.m46_c01448{transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277215,0.000000,0.000000,0.250000,0,0);}
.m72_c01448{transform:matrix(0.278915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278915,0.000000,0.000000,0.250000,0,0);}
.m8c_c01448{transform:matrix(0.279200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279200,0.000000,0.000000,0.250000,0,0);}
.mb6_c01448{transform:matrix(0.281255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281255,0.000000,0.000000,0.250000,0,0);}
.m4c_c01448{transform:matrix(0.281615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281615,0.000000,0.000000,0.250000,0,0);}
.m30_c01448{transform:matrix(0.283355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283355,0.000000,0.000000,0.250000,0,0);}
.m37_c01448{transform:matrix(0.283810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283810,0.000000,0.000000,0.250000,0,0);}
.m71_c01448{transform:matrix(0.284615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284615,0.000000,0.000000,0.250000,0,0);}
.m32_c01448{transform:matrix(0.289975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289975,0.000000,0.000000,0.250000,0,0);}
.m31_c01448{transform:matrix(0.290530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290530,0.000000,0.000000,0.250000,0,0);}
.m4a_c01448{transform:matrix(0.292370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292370,0.000000,0.000000,0.250000,0,0);}
.m47_c01448{transform:matrix(0.295255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295255,0.000000,0.000000,0.250000,0,0);}
.m4d_c01448{transform:matrix(0.295890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295890,0.000000,0.000000,0.250000,0,0);}
.m2d_c01448{transform:matrix(0.296665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296665,0.000000,0.000000,0.250000,0,0);}
.m5c_c01448{transform:matrix(0.297160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297160,0.000000,0.000000,0.250000,0,0);}
.m35_c01448{transform:matrix(0.297190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297190,0.000000,0.000000,0.250000,0,0);}
.m34_c01448{transform:matrix(0.299310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299310,0.000000,0.000000,0.250000,0,0);}
.m57_c01448{transform:matrix(0.300865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300865,0.000000,0.000000,0.250000,0,0);}
.m4b_c01448{transform:matrix(0.303430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303430,0.000000,0.000000,0.250000,0,0);}
.m58_c01448{transform:matrix(0.303925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303925,0.000000,0.000000,0.250000,0,0);}
.m41_c01448{transform:matrix(0.306545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306545,0.000000,0.000000,0.250000,0,0);}
.m2c_c01448{transform:matrix(0.306695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306695,0.000000,0.000000,0.250000,0,0);}
.m8b_c01448{transform:matrix(0.314170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314170,0.000000,0.000000,0.250000,0,0);}
.maf_c01448{transform:matrix(0.333350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333350,0.000000,0.000000,0.250000,0,0);}
.m1b_c01448{transform:matrix(0.335830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335830,0.000000,0.000000,0.250000,0,0);}
.m5a_c01448{transform:matrix(0.348595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348595,0.000000,0.000000,0.250000,0,0);}
.m59_c01448{transform:matrix(0.382930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382930,0.000000,0.000000,0.250000,0,0);}
.m70_c01448{transform:matrix(0.393590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393590,0.000000,0.000000,0.250000,0,0);}
.m3_c01448{transform:matrix(0.604670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.604670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.604670,0.000000,0.000000,0.250000,0,0);}
.v0_c01448{vertical-align:0.000000px;}
.ls0_c01448{letter-spacing:0.000000px;}
.sc__c01448{text-shadow:none;}
.sc0_c01448{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__c01448{-webkit-text-stroke:0px transparent;}
.sc0_c01448{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01448{word-spacing:0.000000px;}
.fc0_c01448{color:transparent;}
.fs1_c01448{font-size:24.000000px;}
.fs6_c01448{font-size:66.000000px;}
.fs3_c01448{font-size:72.000000px;}
.fs2_c01448{font-size:78.000000px;}
.fs0_c01448{font-size:84.000000px;}
.fs7_c01448{font-size:96.000000px;}
.fs5_c01448{font-size:114.000000px;}
.fs4_c01448{font-size:126.000000px;}
.y0_c01448{bottom:0.000000px;}
.y1f_c01448{bottom:53.505000px;}
.y1e_c01448{bottom:88.522500px;}
.y1d_c01448{bottom:125.281500px;}
.y1c_c01448{bottom:195.973500px;}
.y1b_c01448{bottom:232.989000px;}
.y1a_c01448{bottom:267.573000px;}
.y19_c01448{bottom:303.480000px;}
.y18_c01448{bottom:338.886000px;}
.y17_c01448{bottom:373.867500px;}
.y16_c01448{bottom:404.895000px;}
.y15_c01448{bottom:445.491000px;}
.y14_c01448{bottom:480.271500px;}
.y13_c01448{bottom:516.381000px;}
.y12_c01448{bottom:552.909000px;}
.y11_c01448{bottom:589.602000px;}
.y10_c01448{bottom:657.385500px;}
.yf_c01448{bottom:693.285000px;}
.ye_c01448{bottom:835.707000px;}
.yd_c01448{bottom:871.830000px;}
.yc_c01448{bottom:908.098500px;}
.yb_c01448{bottom:942.630000px;}
.y3_c01448{bottom:944.460000px;}
.ya_c01448{bottom:974.158500px;}
.y9_c01448{bottom:1013.362500px;}
.y8_c01448{bottom:1043.820000px;}
.y2_c01448{bottom:1080.546000px;}
.y7_c01448{bottom:1084.860000px;}
.y6_c01448{bottom:1119.796500px;}
.y1_c01448{bottom:1150.873500px;}
.y5_c01448{bottom:1156.638000px;}
.y4_c01448{bottom:1209.601500px;}
.h3_c01448{height:24.000000px;}
.h8_c01448{height:66.000000px;}
.h5_c01448{height:72.000000px;}
.h4_c01448{height:78.000000px;}
.h2_c01448{height:84.000000px;}
.h9_c01448{height:96.000000px;}
.h7_c01448{height:114.000000px;}
.h6_c01448{height:126.000000px;}
.h0_c01448{height:1250.850000px;}
.h1_c01448{height:1251.000000px;}
.w0_c01448{width:912.000000px;}
.x0_c01448{left:0.000000px;}
.x1_c01448{left:86.940000px;}
.x2_c01448{left:103.140000px;}
.x3_c01448{left:159.030000px;}
.x14_c01448{left:198.720000px;}
.x26_c01448{left:199.800000px;}
.x7_c01448{left:200.880000px;}
.x4c_c01448{left:213.030000px;}
.x1c_c01448{left:285.120000px;}
.x10_c01448{left:286.740000px;}
.x2c_c01448{left:287.820000px;}
.x47_c01448{left:289.170000px;}
.x53_c01448{left:299.430000px;}
.x3b_c01448{left:308.880000px;}
.x1e_c01448{left:319.950000px;}
.x4f_c01448{left:321.300000px;}
.x15_c01448{left:329.940000px;}
.x8_c01448{left:331.560000px;}
.x11_c01448{left:342.090000px;}
.x4b_c01448{left:353.160000px;}
.x1f_c01448{left:364.230000px;}
.x12_c01448{left:374.490000px;}
.x1d_c01448{left:378.540000px;}
.x41_c01448{left:385.020000px;}
.x43_c01448{left:386.100000px;}
.x37_c01448{left:397.170000px;}
.x2d_c01448{left:407.700000px;}
.x16_c01448{left:409.320000px;}
.x9_c01448{left:419.310000px;}
.x4_c01448{left:422.280000px;}
.x50_c01448{left:430.380000px;}
.x56_c01448{left:431.460000px;}
.x38_c01448{left:440.370000px;}
.x34_c01448{left:441.450000px;}
.x5_c01448{left:444.420000px;}
.x24_c01448{left:450.900000px;}
.x2f_c01448{left:452.250000px;}
.x3c_c01448{left:462.780000px;}
.xa_c01448{left:464.130000px;}
.x35_c01448{left:475.200000px;}
.x2e_c01448{left:482.490000px;}
.x44_c01448{left:485.190000px;}
.x20_c01448{left:486.270000px;}
.x6_c01448{left:488.160000px;}
.x30_c01448{left:495.450000px;}
.x4d_c01448{left:496.800000px;}
.x57_c01448{left:499.230000px;}
.x13_c01448{left:502.470000px;}
.x39_c01448{left:506.250000px;}
.x5b_c01448{left:507.330000px;}
.x36_c01448{left:517.320000px;}
.x54_c01448{left:519.480000px;}
.x42_c01448{left:528.390000px;}
.x17_c01448{left:538.920000px;}
.x3d_c01448{left:547.560000px;}
.x27_c01448{left:561.060000px;}
.xb_c01448{left:562.410000px;}
.x18_c01448{left:571.320000px;}
.x3e_c01448{left:572.940000px;}
.x28_c01448{left:594.540000px;}
.x21_c01448{left:605.070000px;}
.xc_c01448{left:615.330000px;}
.x59_c01448{left:616.950000px;}
.x48_c01448{left:626.940000px;}
.x45_c01448{left:637.740000px;}
.x31_c01448{left:647.460000px;}
.x19_c01448{left:648.540000px;}
.x51_c01448{left:649.890000px;}
.x49_c01448{left:660.150000px;}
.x29_c01448{left:670.410000px;}
.x3a_c01448{left:682.020000px;}
.x55_c01448{left:683.100000px;}
.xd_c01448{left:691.740000px;}
.x58_c01448{left:693.090000px;}
.x2a_c01448{left:702.810000px;}
.x4e_c01448{left:704.430000px;}
.x22_c01448{left:714.690000px;}
.x32_c01448{left:716.580000px;}
.xe_c01448{left:725.490000px;}
.x3f_c01448{left:726.570000px;}
.x1a_c01448{left:737.640000px;}
.x46_c01448{left:747.630000px;}
.xf_c01448{left:757.620000px;}
.x1b_c01448{left:759.510000px;}
.x40_c01448{left:780.570000px;}
.x52_c01448{left:782.190000px;}
.x2b_c01448{left:792.180000px;}
.x5c_c01448{left:796.230000px;}
.x33_c01448{left:802.170000px;}
.x4a_c01448{left:814.050000px;}
.x23_c01448{left:824.580000px;}
.x25_c01448{left:826.200000px;}
.x5a_c01448{left:836.460000px;}
@media print{
.v0_c01448{vertical-align:0.000000pt;}
.ls0_c01448{letter-spacing:0.000000pt;}
.ws0_c01448{word-spacing:0.000000pt;}
.fs1_c01448{font-size:21.333333pt;}
.fs6_c01448{font-size:58.666667pt;}
.fs3_c01448{font-size:64.000000pt;}
.fs2_c01448{font-size:69.333333pt;}
.fs0_c01448{font-size:74.666667pt;}
.fs7_c01448{font-size:85.333333pt;}
.fs5_c01448{font-size:101.333333pt;}
.fs4_c01448{font-size:112.000000pt;}
.y0_c01448{bottom:0.000000pt;}
.y1f_c01448{bottom:47.560000pt;}
.y1e_c01448{bottom:78.686667pt;}
.y1d_c01448{bottom:111.361333pt;}
.y1c_c01448{bottom:174.198667pt;}
.y1b_c01448{bottom:207.101333pt;}
.y1a_c01448{bottom:237.842667pt;}
.y19_c01448{bottom:269.760000pt;}
.y18_c01448{bottom:301.232000pt;}
.y17_c01448{bottom:332.326667pt;}
.y16_c01448{bottom:359.906667pt;}
.y15_c01448{bottom:395.992000pt;}
.y14_c01448{bottom:426.908000pt;}
.y13_c01448{bottom:459.005333pt;}
.y12_c01448{bottom:491.474667pt;}
.y11_c01448{bottom:524.090667pt;}
.y10_c01448{bottom:584.342667pt;}
.yf_c01448{bottom:616.253333pt;}
.ye_c01448{bottom:742.850667pt;}
.yd_c01448{bottom:774.960000pt;}
.yc_c01448{bottom:807.198667pt;}
.yb_c01448{bottom:837.893333pt;}
.y3_c01448{bottom:839.520000pt;}
.ya_c01448{bottom:865.918667pt;}
.y9_c01448{bottom:900.766667pt;}
.y8_c01448{bottom:927.840000pt;}
.y2_c01448{bottom:960.485333pt;}
.y7_c01448{bottom:964.320000pt;}
.y6_c01448{bottom:995.374667pt;}
.y1_c01448{bottom:1022.998667pt;}
.y5_c01448{bottom:1028.122667pt;}
.y4_c01448{bottom:1075.201333pt;}
.h3_c01448{height:21.333333pt;}
.h8_c01448{height:58.666667pt;}
.h5_c01448{height:64.000000pt;}
.h4_c01448{height:69.333333pt;}
.h2_c01448{height:74.666667pt;}
.h9_c01448{height:85.333333pt;}
.h7_c01448{height:101.333333pt;}
.h6_c01448{height:112.000000pt;}
.h0_c01448{height:1111.866667pt;}
.h1_c01448{height:1112.000000pt;}
.w0_c01448{width:810.666667pt;}
.x0_c01448{left:0.000000pt;}
.x1_c01448{left:77.280000pt;}
.x2_c01448{left:91.680000pt;}
.x3_c01448{left:141.360000pt;}
.x14_c01448{left:176.640000pt;}
.x26_c01448{left:177.600000pt;}
.x7_c01448{left:178.560000pt;}
.x4c_c01448{left:189.360000pt;}
.x1c_c01448{left:253.440000pt;}
.x10_c01448{left:254.880000pt;}
.x2c_c01448{left:255.840000pt;}
.x47_c01448{left:257.040000pt;}
.x53_c01448{left:266.160000pt;}
.x3b_c01448{left:274.560000pt;}
.x1e_c01448{left:284.400000pt;}
.x4f_c01448{left:285.600000pt;}
.x15_c01448{left:293.280000pt;}
.x8_c01448{left:294.720000pt;}
.x11_c01448{left:304.080000pt;}
.x4b_c01448{left:313.920000pt;}
.x1f_c01448{left:323.760000pt;}
.x12_c01448{left:332.880000pt;}
.x1d_c01448{left:336.480000pt;}
.x41_c01448{left:342.240000pt;}
.x43_c01448{left:343.200000pt;}
.x37_c01448{left:353.040000pt;}
.x2d_c01448{left:362.400000pt;}
.x16_c01448{left:363.840000pt;}
.x9_c01448{left:372.720000pt;}
.x4_c01448{left:375.360000pt;}
.x50_c01448{left:382.560000pt;}
.x56_c01448{left:383.520000pt;}
.x38_c01448{left:391.440000pt;}
.x34_c01448{left:392.400000pt;}
.x5_c01448{left:395.040000pt;}
.x24_c01448{left:400.800000pt;}
.x2f_c01448{left:402.000000pt;}
.x3c_c01448{left:411.360000pt;}
.xa_c01448{left:412.560000pt;}
.x35_c01448{left:422.400000pt;}
.x2e_c01448{left:428.880000pt;}
.x44_c01448{left:431.280000pt;}
.x20_c01448{left:432.240000pt;}
.x6_c01448{left:433.920000pt;}
.x30_c01448{left:440.400000pt;}
.x4d_c01448{left:441.600000pt;}
.x57_c01448{left:443.760000pt;}
.x13_c01448{left:446.640000pt;}
.x39_c01448{left:450.000000pt;}
.x5b_c01448{left:450.960000pt;}
.x36_c01448{left:459.840000pt;}
.x54_c01448{left:461.760000pt;}
.x42_c01448{left:469.680000pt;}
.x17_c01448{left:479.040000pt;}
.x3d_c01448{left:486.720000pt;}
.x27_c01448{left:498.720000pt;}
.xb_c01448{left:499.920000pt;}
.x18_c01448{left:507.840000pt;}
.x3e_c01448{left:509.280000pt;}
.x28_c01448{left:528.480000pt;}
.x21_c01448{left:537.840000pt;}
.xc_c01448{left:546.960000pt;}
.x59_c01448{left:548.400000pt;}
.x48_c01448{left:557.280000pt;}
.x45_c01448{left:566.880000pt;}
.x31_c01448{left:575.520000pt;}
.x19_c01448{left:576.480000pt;}
.x51_c01448{left:577.680000pt;}
.x49_c01448{left:586.800000pt;}
.x29_c01448{left:595.920000pt;}
.x3a_c01448{left:606.240000pt;}
.x55_c01448{left:607.200000pt;}
.xd_c01448{left:614.880000pt;}
.x58_c01448{left:616.080000pt;}
.x2a_c01448{left:624.720000pt;}
.x4e_c01448{left:626.160000pt;}
.x22_c01448{left:635.280000pt;}
.x32_c01448{left:636.960000pt;}
.xe_c01448{left:644.880000pt;}
.x3f_c01448{left:645.840000pt;}
.x1a_c01448{left:655.680000pt;}
.x46_c01448{left:664.560000pt;}
.xf_c01448{left:673.440000pt;}
.x1b_c01448{left:675.120000pt;}
.x40_c01448{left:693.840000pt;}
.x52_c01448{left:695.280000pt;}
.x2b_c01448{left:704.160000pt;}
.x5c_c01448{left:707.760000pt;}
.x33_c01448{left:713.040000pt;}
.x4a_c01448{left:723.600000pt;}
.x23_c01448{left:732.960000pt;}
.x25_c01448{left:734.400000pt;}
.x5a_c01448{left:743.520000pt;}
}





/* 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_c01449 {
    display:none;
  }
  .loading-indicator_c01449.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01449 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_c01449 { 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_c01449" -> "#page-container .classname_c01449")
 */
.pf_c01449 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01449 { /* 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_c01449.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01449 { /* 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_c01449 { /* 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_c01449 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01449 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01449 {overflow:visible;}
  }
}
.c_c01449 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01449 { /* 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_c01449:after { /* webkit #35443 */
  content: '';
}
.t_c01449:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01449 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 */
}
.__c01449 { /* 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_c01449 { /* info for Javascript */
  display:none;
}
.l_c01449 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01449 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01449 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01449: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_c01449 {
    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_c01449.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01449.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_c01449 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01449{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01449;src:url('chunks/assets/font_d36912b9fcec7f3b9432c261.woff2')format("woff");}.ff1_c01449{font-family:ff1_c01449;line-height:1.000000;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;}
.m6_c01449{transform:matrix(0.158120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158120,0.000000,0.000000,0.250000,0,0);}
.m5_c01449{transform:matrix(0.158775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158775,0.000000,0.000000,0.250000,0,0);}
.m4_c01449{transform:matrix(0.192240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192240,0.000000,0.000000,0.250000,0,0);}
.m7_c01449{transform:matrix(0.207515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207515,0.000000,0.000000,0.250000,0,0);}
.m3_c01449{transform:matrix(0.295300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295300,0.000000,0.000000,0.250000,0,0);}
.m0_c01449{transform:matrix(0.316515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316515,0.000000,0.000000,0.250000,0,0);}
.m2_c01449{transform:matrix(1.109425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.109425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.109425,0.000000,0.000000,0.250000,0,0);}
.m1_c01449{transform:matrix(1.284690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.284690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.284690,0.000000,0.000000,0.250000,0,0);}
.v0_c01449{vertical-align:0.000000px;}
.ls0_c01449{letter-spacing:0.000000px;}
.sc__c01449{text-shadow:none;}
.sc0_c01449{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__c01449{-webkit-text-stroke:0px transparent;}
.sc0_c01449{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01449{word-spacing:0.000000px;}
.fc0_c01449{color:transparent;}
.fs0_c01449{font-size:18.000000px;}
.fs1_c01449{font-size:24.000000px;}
.fs2_c01449{font-size:42.000000px;}
.y0_c01449{bottom:0.000000px;}
.y5_c01449{bottom:828.630000px;}
.y4_c01449{bottom:848.610000px;}
.y3_c01449{bottom:854.820000px;}
.y2_c01449{bottom:863.460000px;}
.y1_c01449{bottom:903.150000px;}
.h2_c01449{height:18.000000px;}
.h3_c01449{height:24.000000px;}
.h4_c01449{height:42.000000px;}
.h0_c01449{height:1250.850000px;}
.h1_c01449{height:1251.000000px;}
.w0_c01449{width:912.000000px;}
.x0_c01449{left:0.000000px;}
@media print{
.v0_c01449{vertical-align:0.000000pt;}
.ls0_c01449{letter-spacing:0.000000pt;}
.ws0_c01449{word-spacing:0.000000pt;}
.fs0_c01449{font-size:16.000000pt;}
.fs1_c01449{font-size:21.333333pt;}
.fs2_c01449{font-size:37.333333pt;}
.y0_c01449{bottom:0.000000pt;}
.y5_c01449{bottom:736.560000pt;}
.y4_c01449{bottom:754.320000pt;}
.y3_c01449{bottom:759.840000pt;}
.y2_c01449{bottom:767.520000pt;}
.y1_c01449{bottom:802.800000pt;}
.h2_c01449{height:16.000000pt;}
.h3_c01449{height:21.333333pt;}
.h4_c01449{height:37.333333pt;}
.h0_c01449{height:1111.866667pt;}
.h1_c01449{height:1112.000000pt;}
.w0_c01449{width:810.666667pt;}
.x0_c01449{left:0.000000pt;}
}





/* 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_c01450 {
    display:none;
  }
  .loading-indicator_c01450.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01450 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_c01450 { 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_c01450" -> "#page-container .classname_c01450")
 */
.pf_c01450 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01450 { /* 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_c01450.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01450 { /* 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_c01450 { /* 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_c01450 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01450 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01450 {overflow:visible;}
  }
}
.c_c01450 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01450 { /* 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_c01450:after { /* webkit #35443 */
  content: '';
}
.t_c01450:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01450 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 */
}
.__c01450 { /* 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_c01450 { /* info for Javascript */
  display:none;
}
.l_c01450 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01450 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01450 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01450: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_c01450 {
    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_c01450.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01450.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_c01450 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01450{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01450;src:url('chunks/assets/font_c605e72f209fc835e906f064.woff2')format("woff");}.ff1_c01450{font-family:ff1_c01450;line-height:1.000000;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;}
.m79_c01450{transform:matrix(0.006700,0.000074,-0.002750,0.249985,0,0);-ms-transform:matrix(0.006700,0.000074,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.006700,0.000074,-0.002750,0.249985,0,0);}
.m6_c01450{transform:matrix(0.122425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122425,0.000000,0.000000,0.250000,0,0);}
.mb5_c01450{transform:matrix(0.138097,0.001519,-0.002750,0.249985,0,0);-ms-transform:matrix(0.138097,0.001519,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.138097,0.001519,-0.002750,0.249985,0,0);}
.mb1_c01450{transform:matrix(0.138987,0.001529,-0.002750,0.249985,0,0);-ms-transform:matrix(0.138987,0.001529,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.138987,0.001529,-0.002750,0.249985,0,0);}
.m76_c01450{transform:matrix(0.157240,0.001730,-0.002750,0.249985,0,0);-ms-transform:matrix(0.157240,0.001730,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.157240,0.001730,-0.002750,0.249985,0,0);}
.mb6_c01450{transform:matrix(0.159565,0.001755,-0.002750,0.249985,0,0);-ms-transform:matrix(0.159565,0.001755,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.159565,0.001755,-0.002750,0.249985,0,0);}
.mb2_c01450{transform:matrix(0.159595,0.001756,-0.002750,0.249985,0,0);-ms-transform:matrix(0.159595,0.001756,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.159595,0.001756,-0.002750,0.249985,0,0);}
.m77_c01450{transform:matrix(0.160275,0.001763,-0.002750,0.249985,0,0);-ms-transform:matrix(0.160275,0.001763,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.160275,0.001763,-0.002750,0.249985,0,0);}
.mb3_c01450{transform:matrix(0.162005,0.001782,-0.002750,0.249985,0,0);-ms-transform:matrix(0.162005,0.001782,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.162005,0.001782,-0.002750,0.249985,0,0);}
.m75_c01450{transform:matrix(0.165965,0.001826,-0.002750,0.249985,0,0);-ms-transform:matrix(0.165965,0.001826,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.165965,0.001826,-0.002750,0.249985,0,0);}
.mb0_c01450{transform:matrix(0.168905,0.001858,-0.002750,0.249985,0,0);-ms-transform:matrix(0.168905,0.001858,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.168905,0.001858,-0.002750,0.249985,0,0);}
.m78_c01450{transform:matrix(0.171205,0.001883,-0.002750,0.249985,0,0);-ms-transform:matrix(0.171205,0.001883,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.171205,0.001883,-0.002750,0.249985,0,0);}
.m5_c01450{transform:matrix(0.171725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171725,0.000000,0.000000,0.250000,0,0);}
.m7b_c01450{transform:matrix(0.179155,0.002687,-0.003750,0.249972,0,0);-ms-transform:matrix(0.179155,0.002687,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.179155,0.002687,-0.003750,0.249972,0,0);}
.m8a_c01450{transform:matrix(0.180580,0.002709,-0.003750,0.249972,0,0);-ms-transform:matrix(0.180580,0.002709,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.180580,0.002709,-0.003750,0.249972,0,0);}
.m92_c01450{transform:matrix(0.180619,0.001445,-0.002000,0.249992,0,0);-ms-transform:matrix(0.180619,0.001445,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.180619,0.001445,-0.002000,0.249992,0,0);}
.maf_c01450{transform:matrix(0.182869,0.002012,-0.002750,0.249985,0,0);-ms-transform:matrix(0.182869,0.002012,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.182869,0.002012,-0.002750,0.249985,0,0);}
.m96_c01450{transform:matrix(0.184509,0.001476,-0.002000,0.249992,0,0);-ms-transform:matrix(0.184509,0.001476,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.184509,0.001476,-0.002000,0.249992,0,0);}
.mb7_c01450{transform:matrix(0.184654,0.002031,-0.002750,0.249985,0,0);-ms-transform:matrix(0.184654,0.002031,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.184654,0.002031,-0.002750,0.249985,0,0);}
.m95_c01450{transform:matrix(0.185839,0.001487,-0.002000,0.249992,0,0);-ms-transform:matrix(0.185839,0.001487,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.185839,0.001487,-0.002000,0.249992,0,0);}
.m93_c01450{transform:matrix(0.186224,0.001490,-0.002000,0.249992,0,0);-ms-transform:matrix(0.186224,0.001490,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.186224,0.001490,-0.002000,0.249992,0,0);}
.ma8_c01450{transform:matrix(0.186924,0.002056,-0.002750,0.249985,0,0);-ms-transform:matrix(0.186924,0.002056,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.186924,0.002056,-0.002750,0.249985,0,0);}
.md4_c01450{transform:matrix(0.187365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187365,0.000000,0.000000,0.250000,0,0);}
.m80_c01450{transform:matrix(0.190834,0.002863,-0.003750,0.249972,0,0);-ms-transform:matrix(0.190834,0.002863,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.190834,0.002863,-0.003750,0.249972,0,0);}
.mb4_c01450{transform:matrix(0.191478,0.002106,-0.002750,0.249985,0,0);-ms-transform:matrix(0.191478,0.002106,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.191478,0.002106,-0.002750,0.249985,0,0);}
.m7c_c01450{transform:matrix(0.191903,0.002879,-0.003750,0.249972,0,0);-ms-transform:matrix(0.191903,0.002879,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.191903,0.002879,-0.003750,0.249972,0,0);}
.m98_c01450{transform:matrix(0.193889,0.001551,-0.002000,0.249992,0,0);-ms-transform:matrix(0.193889,0.001551,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.193889,0.001551,-0.002000,0.249992,0,0);}
.m1_c01450{transform:matrix(0.194050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194050,0.000000,0.000000,0.250000,0,0);}
.mc2_c01450{transform:matrix(0.194053,0.002135,-0.002750,0.249985,0,0);-ms-transform:matrix(0.194053,0.002135,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.194053,0.002135,-0.002750,0.249985,0,0);}
.m97_c01450{transform:matrix(0.194494,0.001556,-0.002000,0.249992,0,0);-ms-transform:matrix(0.194494,0.001556,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.194494,0.001556,-0.002000,0.249992,0,0);}
.m8f_c01450{transform:matrix(0.194724,0.001558,-0.002000,0.249992,0,0);-ms-transform:matrix(0.194724,0.001558,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.194724,0.001558,-0.002000,0.249992,0,0);}
.m47_c01450{transform:matrix(0.194930,0.001949,-0.002500,0.249988,0,0);-ms-transform:matrix(0.194930,0.001949,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.194930,0.001949,-0.002500,0.249988,0,0);}
.mea_c01450{transform:matrix(0.194990,0.001950,-0.002500,0.249988,0,0);-ms-transform:matrix(0.194990,0.001950,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.194990,0.001950,-0.002500,0.249988,0,0);}
.me0_c01450{transform:matrix(0.195186,0.001171,-0.001500,0.249996,0,0);-ms-transform:matrix(0.195186,0.001171,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.195186,0.001171,-0.001500,0.249996,0,0);}
.mc1_c01450{transform:matrix(0.196568,0.002162,-0.002750,0.249985,0,0);-ms-transform:matrix(0.196568,0.002162,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.196568,0.002162,-0.002750,0.249985,0,0);}
.mc3_c01450{transform:matrix(0.198818,0.002187,-0.002750,0.249985,0,0);-ms-transform:matrix(0.198818,0.002187,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.198818,0.002187,-0.002750,0.249985,0,0);}
.m4b_c01450{transform:matrix(0.199800,0.001998,-0.002500,0.249988,0,0);-ms-transform:matrix(0.199800,0.001998,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.199800,0.001998,-0.002500,0.249988,0,0);}
.mc0_c01450{transform:matrix(0.199988,0.002200,-0.002750,0.249985,0,0);-ms-transform:matrix(0.199988,0.002200,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.199988,0.002200,-0.002750,0.249985,0,0);}
.m90_c01450{transform:matrix(0.201179,0.001609,-0.002000,0.249992,0,0);-ms-transform:matrix(0.201179,0.001609,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.201179,0.001609,-0.002000,0.249992,0,0);}
.mc7_c01450{transform:matrix(0.201188,0.002213,-0.002750,0.249985,0,0);-ms-transform:matrix(0.201188,0.002213,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.201188,0.002213,-0.002750,0.249985,0,0);}
.m8e_c01450{transform:matrix(0.201504,0.001612,-0.002000,0.249992,0,0);-ms-transform:matrix(0.201504,0.001612,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.201504,0.001612,-0.002000,0.249992,0,0);}
.m91_c01450{transform:matrix(0.202209,0.001618,-0.002000,0.249992,0,0);-ms-transform:matrix(0.202209,0.001618,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.202209,0.001618,-0.002000,0.249992,0,0);}
.mae_c01450{transform:matrix(0.202643,0.002229,-0.002750,0.249985,0,0);-ms-transform:matrix(0.202643,0.002229,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.202643,0.002229,-0.002750,0.249985,0,0);}
.mc8_c01450{transform:matrix(0.202683,0.002230,-0.002750,0.249985,0,0);-ms-transform:matrix(0.202683,0.002230,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.202683,0.002230,-0.002750,0.249985,0,0);}
.m7f_c01450{transform:matrix(0.203237,0.003049,-0.003750,0.249972,0,0);-ms-transform:matrix(0.203237,0.003049,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.203237,0.003049,-0.003750,0.249972,0,0);}
.m85_c01450{transform:matrix(0.203292,0.003049,-0.003750,0.249972,0,0);-ms-transform:matrix(0.203292,0.003049,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.203292,0.003049,-0.003750,0.249972,0,0);}
.m48_c01450{transform:matrix(0.204450,0.002044,-0.002500,0.249988,0,0);-ms-transform:matrix(0.204450,0.002044,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.204450,0.002044,-0.002500,0.249988,0,0);}
.m7d_c01450{transform:matrix(0.204692,0.003070,-0.003750,0.249972,0,0);-ms-transform:matrix(0.204692,0.003070,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.204692,0.003070,-0.003750,0.249972,0,0);}
.m2_c01450{transform:matrix(0.205550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205550,0.000000,0.000000,0.250000,0,0);}
.mc6_c01450{transform:matrix(0.208897,0.002298,-0.002750,0.249985,0,0);-ms-transform:matrix(0.208897,0.002298,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.208897,0.002298,-0.002750,0.249985,0,0);}
.mf4_c01450{transform:matrix(0.209485,0.002095,-0.002500,0.249988,0,0);-ms-transform:matrix(0.209485,0.002095,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.209485,0.002095,-0.002500,0.249988,0,0);}
.m4e_c01450{transform:matrix(0.210009,0.002100,-0.002500,0.249988,0,0);-ms-transform:matrix(0.210009,0.002100,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.210009,0.002100,-0.002500,0.249988,0,0);}
.me3_c01450{transform:matrix(0.210616,0.001264,-0.001500,0.249996,0,0);-ms-transform:matrix(0.210616,0.001264,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.210616,0.001264,-0.001500,0.249996,0,0);}
.m8c_c01450{transform:matrix(0.211191,0.003168,-0.003750,0.249972,0,0);-ms-transform:matrix(0.211191,0.003168,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.211191,0.003168,-0.003750,0.249972,0,0);}
.m55_c01450{transform:matrix(0.212189,0.002122,-0.002500,0.249988,0,0);-ms-transform:matrix(0.212189,0.002122,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.212189,0.002122,-0.002500,0.249988,0,0);}
.m7e_c01450{transform:matrix(0.212831,0.003192,-0.003750,0.249972,0,0);-ms-transform:matrix(0.212831,0.003192,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.212831,0.003192,-0.003750,0.249972,0,0);}
.m83_c01450{transform:matrix(0.213526,0.003203,-0.003750,0.249972,0,0);-ms-transform:matrix(0.213526,0.003203,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.213526,0.003203,-0.003750,0.249972,0,0);}
.m4c_c01450{transform:matrix(0.215474,0.002155,-0.002500,0.249988,0,0);-ms-transform:matrix(0.215474,0.002155,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.215474,0.002155,-0.002500,0.249988,0,0);}
.m21_c01450{transform:matrix(0.216153,0.001729,-0.002000,0.249992,0,0);-ms-transform:matrix(0.216153,0.001729,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.216153,0.001729,-0.002000,0.249992,0,0);}
.m94_c01450{transform:matrix(0.216533,0.001732,-0.002000,0.249992,0,0);-ms-transform:matrix(0.216533,0.001732,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.216533,0.001732,-0.002000,0.249992,0,0);}
.m89_c01450{transform:matrix(0.216971,0.003255,-0.003750,0.249972,0,0);-ms-transform:matrix(0.216971,0.003255,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.216971,0.003255,-0.003750,0.249972,0,0);}
.mab_c01450{transform:matrix(0.217692,0.002395,-0.002750,0.249985,0,0);-ms-transform:matrix(0.217692,0.002395,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.217692,0.002395,-0.002750,0.249985,0,0);}
.m7a_c01450{transform:matrix(0.218730,0.003281,-0.003750,0.249972,0,0);-ms-transform:matrix(0.218730,0.003281,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.218730,0.003281,-0.003750,0.249972,0,0);}
.m51_c01450{transform:matrix(0.219134,0.002191,-0.002500,0.249988,0,0);-ms-transform:matrix(0.219134,0.002191,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.219134,0.002191,-0.002500,0.249988,0,0);}
.mc5_c01450{transform:matrix(0.219557,0.002415,-0.002750,0.249985,0,0);-ms-transform:matrix(0.219557,0.002415,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.219557,0.002415,-0.002750,0.249985,0,0);}
.m58_c01450{transform:matrix(0.220034,0.002200,-0.002500,0.249988,0,0);-ms-transform:matrix(0.220034,0.002200,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.220034,0.002200,-0.002500,0.249988,0,0);}
.mee_c01450{transform:matrix(0.220649,0.002206,-0.002500,0.249988,0,0);-ms-transform:matrix(0.220649,0.002206,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.220649,0.002206,-0.002500,0.249988,0,0);}
.mbd_c01450{transform:matrix(0.221372,0.002435,-0.002750,0.249985,0,0);-ms-transform:matrix(0.221372,0.002435,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.221372,0.002435,-0.002750,0.249985,0,0);}
.me7_c01450{transform:matrix(0.221431,0.001329,-0.001500,0.249996,0,0);-ms-transform:matrix(0.221431,0.001329,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.221431,0.001329,-0.001500,0.249996,0,0);}
.mca_c01450{transform:matrix(0.221867,0.002441,-0.002750,0.249985,0,0);-ms-transform:matrix(0.221867,0.002441,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.221867,0.002441,-0.002750,0.249985,0,0);}
.mce_c01450{transform:matrix(0.222035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222035,0.000000,0.000000,0.250000,0,0);}
.me8_c01450{transform:matrix(0.222121,0.001333,-0.001500,0.249996,0,0);-ms-transform:matrix(0.222121,0.001333,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.222121,0.001333,-0.001500,0.249996,0,0);}
.mc_c01450{transform:matrix(0.222176,0.002888,-0.003250,0.249979,0,0);-ms-transform:matrix(0.222176,0.002888,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.222176,0.002888,-0.003250,0.249979,0,0);}
.m9d_c01450{transform:matrix(0.222603,0.001781,-0.002000,0.249992,0,0);-ms-transform:matrix(0.222603,0.001781,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.222603,0.001781,-0.002000,0.249992,0,0);}
.md_c01450{transform:matrix(0.223156,0.002901,-0.003250,0.249979,0,0);-ms-transform:matrix(0.223156,0.002901,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.223156,0.002901,-0.003250,0.249979,0,0);}
.m6d_c01450{transform:matrix(0.223256,0.002456,-0.002750,0.249985,0,0);-ms-transform:matrix(0.223256,0.002456,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.223256,0.002456,-0.002750,0.249985,0,0);}
.md6_c01450{transform:matrix(0.223959,0.002240,-0.002500,0.249988,0,0);-ms-transform:matrix(0.223959,0.002240,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.223959,0.002240,-0.002500,0.249988,0,0);}
.m42_c01450{transform:matrix(0.224075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224075,0.000000,0.000000,0.250000,0,0);}
.mf6_c01450{transform:matrix(0.224934,0.002249,-0.002500,0.249988,0,0);-ms-transform:matrix(0.224934,0.002249,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.224934,0.002249,-0.002500,0.249988,0,0);}
.mde_c01450{transform:matrix(0.225334,0.002253,-0.002500,0.249988,0,0);-ms-transform:matrix(0.225334,0.002253,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.225334,0.002253,-0.002500,0.249988,0,0);}
.m3d_c01450{transform:matrix(0.225630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225630,0.000000,0.000000,0.250000,0,0);}
.m72_c01450{transform:matrix(0.226051,0.002487,-0.002750,0.249985,0,0);-ms-transform:matrix(0.226051,0.002487,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.226051,0.002487,-0.002750,0.249985,0,0);}
.mac_c01450{transform:matrix(0.226151,0.002488,-0.002750,0.249985,0,0);-ms-transform:matrix(0.226151,0.002488,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.226151,0.002488,-0.002750,0.249985,0,0);}
.md0_c01450{transform:matrix(0.226555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226555,0.000000,0.000000,0.250000,0,0);}
.m5d_c01450{transform:matrix(0.226629,0.002266,-0.002500,0.249988,0,0);-ms-transform:matrix(0.226629,0.002266,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.226629,0.002266,-0.002500,0.249988,0,0);}
.maa_c01450{transform:matrix(0.226876,0.002496,-0.002750,0.249985,0,0);-ms-transform:matrix(0.226876,0.002496,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.226876,0.002496,-0.002750,0.249985,0,0);}
.mf0_c01450{transform:matrix(0.226954,0.002270,-0.002500,0.249988,0,0);-ms-transform:matrix(0.226954,0.002270,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.226954,0.002270,-0.002500,0.249988,0,0);}
.m4d_c01450{transform:matrix(0.227214,0.002272,-0.002500,0.249988,0,0);-ms-transform:matrix(0.227214,0.002272,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.227214,0.002272,-0.002500,0.249988,0,0);}
.m62_c01450{transform:matrix(0.227416,0.002502,-0.002750,0.249985,0,0);-ms-transform:matrix(0.227416,0.002502,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.227416,0.002502,-0.002750,0.249985,0,0);}
.m82_c01450{transform:matrix(0.228729,0.003431,-0.003750,0.249972,0,0);-ms-transform:matrix(0.228729,0.003431,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.228729,0.003431,-0.003750,0.249972,0,0);}
.m5e_c01450{transform:matrix(0.229064,0.002291,-0.002500,0.249988,0,0);-ms-transform:matrix(0.229064,0.002291,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.229064,0.002291,-0.002500,0.249988,0,0);}
.m4a_c01450{transform:matrix(0.230713,0.002307,-0.002500,0.249988,0,0);-ms-transform:matrix(0.230713,0.002307,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.230713,0.002307,-0.002500,0.249988,0,0);}
.mf3_c01450{transform:matrix(0.231678,0.002317,-0.002500,0.249988,0,0);-ms-transform:matrix(0.231678,0.002317,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.231678,0.002317,-0.002500,0.249988,0,0);}
.m46_c01450{transform:matrix(0.232198,0.002322,-0.002500,0.249988,0,0);-ms-transform:matrix(0.232198,0.002322,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.232198,0.002322,-0.002500,0.249988,0,0);}
.m88_c01450{transform:matrix(0.232309,0.003485,-0.003750,0.249972,0,0);-ms-transform:matrix(0.232309,0.003485,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.232309,0.003485,-0.003750,0.249972,0,0);}
.m5a_c01450{transform:matrix(0.234348,0.002343,-0.002500,0.249988,0,0);-ms-transform:matrix(0.234348,0.002343,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.234348,0.002343,-0.002500,0.249988,0,0);}
.m5f_c01450{transform:matrix(0.236293,0.002363,-0.002500,0.249988,0,0);-ms-transform:matrix(0.236293,0.002363,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.236293,0.002363,-0.002500,0.249988,0,0);}
.m66_c01450{transform:matrix(0.236451,0.002601,-0.002750,0.249985,0,0);-ms-transform:matrix(0.236451,0.002601,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.236451,0.002601,-0.002750,0.249985,0,0);}
.m53_c01450{transform:matrix(0.236453,0.002365,-0.002500,0.249988,0,0);-ms-transform:matrix(0.236453,0.002365,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.236453,0.002365,-0.002500,0.249988,0,0);}
.mba_c01450{transform:matrix(0.236466,0.002601,-0.002750,0.249985,0,0);-ms-transform:matrix(0.236466,0.002601,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.236466,0.002601,-0.002750,0.249985,0,0);}
.ma7_c01450{transform:matrix(0.237311,0.002610,-0.002750,0.249985,0,0);-ms-transform:matrix(0.237311,0.002610,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.237311,0.002610,-0.002750,0.249985,0,0);}
.m4f_c01450{transform:matrix(0.237498,0.002375,-0.002500,0.249988,0,0);-ms-transform:matrix(0.237498,0.002375,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.237498,0.002375,-0.002500,0.249988,0,0);}
.m40_c01450{transform:matrix(0.238145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238145,0.000000,0.000000,0.250000,0,0);}
.m27_c01450{transform:matrix(0.238267,0.001906,-0.002000,0.249992,0,0);-ms-transform:matrix(0.238267,0.001906,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.238267,0.001906,-0.002000,0.249992,0,0);}
.m49_c01450{transform:matrix(0.238268,0.002383,-0.002500,0.249988,0,0);-ms-transform:matrix(0.238268,0.002383,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.238268,0.002383,-0.002500,0.249988,0,0);}
.me2_c01450{transform:matrix(0.238436,0.001431,-0.001500,0.249996,0,0);-ms-transform:matrix(0.238436,0.001431,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.238436,0.001431,-0.001500,0.249996,0,0);}
.m63_c01450{transform:matrix(0.238521,0.002624,-0.002750,0.249985,0,0);-ms-transform:matrix(0.238521,0.002624,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.238521,0.002624,-0.002750,0.249985,0,0);}
.m9_c01450{transform:matrix(0.238715,0.003103,-0.003250,0.249979,0,0);-ms-transform:matrix(0.238715,0.003103,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.238715,0.003103,-0.003250,0.249979,0,0);}
.m6b_c01450{transform:matrix(0.239001,0.002629,-0.002750,0.249985,0,0);-ms-transform:matrix(0.239001,0.002629,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.239001,0.002629,-0.002750,0.249985,0,0);}
.mbe_c01450{transform:matrix(0.239765,0.002637,-0.002750,0.249985,0,0);-ms-transform:matrix(0.239765,0.002637,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.239765,0.002637,-0.002750,0.249985,0,0);}
.mec_c01450{transform:matrix(0.239818,0.002398,-0.002500,0.249988,0,0);-ms-transform:matrix(0.239818,0.002398,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.239818,0.002398,-0.002500,0.249988,0,0);}
.md8_c01450{transform:matrix(0.240103,0.002401,-0.002500,0.249988,0,0);-ms-transform:matrix(0.240103,0.002401,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.240103,0.002401,-0.002500,0.249988,0,0);}
.m74_c01450{transform:matrix(0.240740,0.002648,-0.002750,0.249985,0,0);-ms-transform:matrix(0.240740,0.002648,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.240740,0.002648,-0.002750,0.249985,0,0);}
.md2_c01450{transform:matrix(0.241030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241030,0.000000,0.000000,0.250000,0,0);}
.m34_c01450{transform:matrix(0.241095,0.002170,-0.002250,0.249990,0,0);-ms-transform:matrix(0.241095,0.002170,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.241095,0.002170,-0.002250,0.249990,0,0);}
.md1_c01450{transform:matrix(0.241615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241615,0.000000,0.000000,0.250000,0,0);}
.m69_c01450{transform:matrix(0.241765,0.002659,-0.002750,0.249985,0,0);-ms-transform:matrix(0.241765,0.002659,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.241765,0.002659,-0.002750,0.249985,0,0);}
.m33_c01450{transform:matrix(0.242095,0.002179,-0.002250,0.249990,0,0);-ms-transform:matrix(0.242095,0.002179,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.242095,0.002179,-0.002250,0.249990,0,0);}
.mbf_c01450{transform:matrix(0.242360,0.002666,-0.002750,0.249985,0,0);-ms-transform:matrix(0.242360,0.002666,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.242360,0.002666,-0.002750,0.249985,0,0);}
.me5_c01450{transform:matrix(0.242456,0.001455,-0.001500,0.249996,0,0);-ms-transform:matrix(0.242456,0.001455,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.242456,0.001455,-0.001500,0.249996,0,0);}
.me4_c01450{transform:matrix(0.242851,0.001457,-0.001500,0.249996,0,0);-ms-transform:matrix(0.242851,0.001457,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.242851,0.001457,-0.001500,0.249996,0,0);}
.mcb_c01450{transform:matrix(0.243195,0.002675,-0.002750,0.249985,0,0);-ms-transform:matrix(0.243195,0.002675,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.243195,0.002675,-0.002750,0.249985,0,0);}
.mf1_c01450{transform:matrix(0.243483,0.002435,-0.002500,0.249988,0,0);-ms-transform:matrix(0.243483,0.002435,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.243483,0.002435,-0.002500,0.249988,0,0);}
.m6e_c01450{transform:matrix(0.243525,0.002679,-0.002750,0.249985,0,0);-ms-transform:matrix(0.243525,0.002679,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.243525,0.002679,-0.002750,0.249985,0,0);}
.ma4_c01450{transform:matrix(0.244087,0.001953,-0.002000,0.249992,0,0);-ms-transform:matrix(0.244087,0.001953,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.244087,0.001953,-0.002000,0.249992,0,0);}
.m71_c01450{transform:matrix(0.244460,0.002689,-0.002750,0.249985,0,0);-ms-transform:matrix(0.244460,0.002689,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.244460,0.002689,-0.002750,0.249985,0,0);}
.me1_c01450{transform:matrix(0.244571,0.001467,-0.001500,0.249996,0,0);-ms-transform:matrix(0.244571,0.001467,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.244571,0.001467,-0.001500,0.249996,0,0);}
.m8d_c01450{transform:matrix(0.245482,0.003682,-0.003750,0.249972,0,0);-ms-transform:matrix(0.245482,0.003682,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.245482,0.003682,-0.003750,0.249972,0,0);}
.m2d_c01450{transform:matrix(0.245835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245835,0.000000,0.000000,0.250000,0,0);}
.m57_c01450{transform:matrix(0.245958,0.002460,-0.002500,0.249988,0,0);-ms-transform:matrix(0.245958,0.002460,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.245958,0.002460,-0.002500,0.249988,0,0);}
.m67_c01450{transform:matrix(0.246190,0.002708,-0.002750,0.249985,0,0);-ms-transform:matrix(0.246190,0.002708,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.246190,0.002708,-0.002750,0.249985,0,0);}
.m29_c01450{transform:matrix(0.246367,0.001971,-0.002000,0.249992,0,0);-ms-transform:matrix(0.246367,0.001971,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.246367,0.001971,-0.002000,0.249992,0,0);}
.m9a_c01450{transform:matrix(0.246752,0.001974,-0.002000,0.249992,0,0);-ms-transform:matrix(0.246752,0.001974,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.246752,0.001974,-0.002000,0.249992,0,0);}
.ma9_c01450{transform:matrix(0.247285,0.002720,-0.002750,0.249985,0,0);-ms-transform:matrix(0.247285,0.002720,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.247285,0.002720,-0.002750,0.249985,0,0);}
.m37_c01450{transform:matrix(0.247450,0.002227,-0.002250,0.249990,0,0);-ms-transform:matrix(0.247450,0.002227,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.247450,0.002227,-0.002250,0.249990,0,0);}
.mf5_c01450{transform:matrix(0.247493,0.002475,-0.002500,0.249988,0,0);-ms-transform:matrix(0.247493,0.002475,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.247493,0.002475,-0.002500,0.249988,0,0);}
.mbc_c01450{transform:matrix(0.248295,0.002731,-0.002750,0.249985,0,0);-ms-transform:matrix(0.248295,0.002731,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.248295,0.002731,-0.002750,0.249985,0,0);}
.m9f_c01450{transform:matrix(0.249207,0.001994,-0.002000,0.249992,0,0);-ms-transform:matrix(0.249207,0.001994,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.249207,0.001994,-0.002000,0.249992,0,0);}
.mb8_c01450{transform:matrix(0.250335,0.002754,-0.002750,0.249985,0,0);-ms-transform:matrix(0.250335,0.002754,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.250335,0.002754,-0.002750,0.249985,0,0);}
.m0_c01450{transform:matrix(0.250735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250735,0.000000,0.000000,0.250000,0,0);}
.ma_c01450{transform:matrix(0.251369,0.003268,-0.003250,0.249979,0,0);-ms-transform:matrix(0.251369,0.003268,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.251369,0.003268,-0.003250,0.249979,0,0);}
.m8b_c01450{transform:matrix(0.251627,0.003774,-0.003750,0.249972,0,0);-ms-transform:matrix(0.251627,0.003774,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.251627,0.003774,-0.003750,0.249972,0,0);}
.m7_c01450{transform:matrix(0.251629,0.003271,-0.003250,0.249979,0,0);-ms-transform:matrix(0.251629,0.003271,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.251629,0.003271,-0.003250,0.249979,0,0);}
.m50_c01450{transform:matrix(0.251907,0.002519,-0.002500,0.249988,0,0);-ms-transform:matrix(0.251907,0.002519,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.251907,0.002519,-0.002500,0.249988,0,0);}
.m56_c01450{transform:matrix(0.252387,0.002524,-0.002500,0.249988,0,0);-ms-transform:matrix(0.252387,0.002524,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.252387,0.002524,-0.002500,0.249988,0,0);}
.ma6_c01450{transform:matrix(0.252395,0.002776,-0.002750,0.249985,0,0);-ms-transform:matrix(0.252395,0.002776,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.252395,0.002776,-0.002750,0.249985,0,0);}
.m9b_c01450{transform:matrix(0.253007,0.002024,-0.002000,0.249992,0,0);-ms-transform:matrix(0.253007,0.002024,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.253007,0.002024,-0.002000,0.249992,0,0);}
.m20_c01450{transform:matrix(0.254157,0.002033,-0.002000,0.249992,0,0);-ms-transform:matrix(0.254157,0.002033,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.254157,0.002033,-0.002000,0.249992,0,0);}
.md3_c01450{transform:matrix(0.254420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254420,0.000000,0.000000,0.250000,0,0);}
.m3f_c01450{transform:matrix(0.254760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254760,0.000000,0.000000,0.250000,0,0);}
.m16_c01450{transform:matrix(0.254918,0.003314,-0.003250,0.249979,0,0);-ms-transform:matrix(0.254918,0.003314,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.254918,0.003314,-0.003250,0.249979,0,0);}
.m99_c01450{transform:matrix(0.255257,0.002042,-0.002000,0.249992,0,0);-ms-transform:matrix(0.255257,0.002042,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.255257,0.002042,-0.002000,0.249992,0,0);}
.mb9_c01450{transform:matrix(0.255385,0.002809,-0.002750,0.249985,0,0);-ms-transform:matrix(0.255385,0.002809,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.255385,0.002809,-0.002750,0.249985,0,0);}
.m5c_c01450{transform:matrix(0.255547,0.002555,-0.002500,0.249988,0,0);-ms-transform:matrix(0.255547,0.002555,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.255547,0.002555,-0.002500,0.249988,0,0);}
.m87_c01450{transform:matrix(0.255746,0.003836,-0.003750,0.249972,0,0);-ms-transform:matrix(0.255746,0.003836,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.255746,0.003836,-0.003750,0.249972,0,0);}
.m8_c01450{transform:matrix(0.255783,0.003325,-0.003250,0.249979,0,0);-ms-transform:matrix(0.255783,0.003325,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.255783,0.003325,-0.003250,0.249979,0,0);}
.mb_c01450{transform:matrix(0.255918,0.003327,-0.003250,0.249979,0,0);-ms-transform:matrix(0.255918,0.003327,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.255918,0.003327,-0.003250,0.249979,0,0);}
.me6_c01450{transform:matrix(0.256065,0.001536,-0.001500,0.249996,0,0);-ms-transform:matrix(0.256065,0.001536,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.256065,0.001536,-0.001500,0.249996,0,0);}
.m86_c01450{transform:matrix(0.256171,0.003843,-0.003750,0.249972,0,0);-ms-transform:matrix(0.256171,0.003843,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.256171,0.003843,-0.003750,0.249972,0,0);}
.m2c_c01450{transform:matrix(0.256295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256295,0.000000,0.000000,0.250000,0,0);}
.md7_c01450{transform:matrix(0.256627,0.002566,-0.002500,0.249988,0,0);-ms-transform:matrix(0.256627,0.002566,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.256627,0.002566,-0.002500,0.249988,0,0);}
.m68_c01450{transform:matrix(0.256814,0.002825,-0.002750,0.249985,0,0);-ms-transform:matrix(0.256814,0.002825,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.256814,0.002825,-0.002750,0.249985,0,0);}
.m52_c01450{transform:matrix(0.257027,0.002570,-0.002500,0.249988,0,0);-ms-transform:matrix(0.257027,0.002570,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.257027,0.002570,-0.002500,0.249988,0,0);}
.mad_c01450{transform:matrix(0.257309,0.002830,-0.002750,0.249985,0,0);-ms-transform:matrix(0.257309,0.002830,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.257309,0.002830,-0.002750,0.249985,0,0);}
.mbb_c01450{transform:matrix(0.257524,0.002833,-0.002750,0.249985,0,0);-ms-transform:matrix(0.257524,0.002833,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.257524,0.002833,-0.002750,0.249985,0,0);}
.me9_c01450{transform:matrix(0.258885,0.001553,-0.001500,0.249996,0,0);-ms-transform:matrix(0.258885,0.001553,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.258885,0.001553,-0.001500,0.249996,0,0);}
.ma0_c01450{transform:matrix(0.258957,0.002072,-0.002000,0.249992,0,0);-ms-transform:matrix(0.258957,0.002072,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.258957,0.002072,-0.002000,0.249992,0,0);}
.m1e_c01450{transform:matrix(0.259452,0.002076,-0.002000,0.249992,0,0);-ms-transform:matrix(0.259452,0.002076,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.259452,0.002076,-0.002000,0.249992,0,0);}
.meb_c01450{transform:matrix(0.259492,0.002595,-0.002500,0.249988,0,0);-ms-transform:matrix(0.259492,0.002595,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.259492,0.002595,-0.002500,0.249988,0,0);}
.m2f_c01450{transform:matrix(0.259785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259785,0.000000,0.000000,0.250000,0,0);}
.med_c01450{transform:matrix(0.260402,0.002604,-0.002500,0.249988,0,0);-ms-transform:matrix(0.260402,0.002604,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.260402,0.002604,-0.002500,0.249988,0,0);}
.m70_c01450{transform:matrix(0.260549,0.002866,-0.002750,0.249985,0,0);-ms-transform:matrix(0.260549,0.002866,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.260549,0.002866,-0.002750,0.249985,0,0);}
.ma2_c01450{transform:matrix(0.260562,0.002084,-0.002000,0.249992,0,0);-ms-transform:matrix(0.260562,0.002084,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.260562,0.002084,-0.002000,0.249992,0,0);}
.m1d_c01450{transform:matrix(0.260697,0.002086,-0.002000,0.249992,0,0);-ms-transform:matrix(0.260697,0.002086,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.260697,0.002086,-0.002000,0.249992,0,0);}
.me_c01450{transform:matrix(0.261028,0.003393,-0.003250,0.249979,0,0);-ms-transform:matrix(0.261028,0.003393,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.261028,0.003393,-0.003250,0.249979,0,0);}
.m12_c01450{transform:matrix(0.261413,0.003398,-0.003250,0.249979,0,0);-ms-transform:matrix(0.261413,0.003398,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.261413,0.003398,-0.003250,0.249979,0,0);}
.m54_c01450{transform:matrix(0.261622,0.002616,-0.002500,0.249988,0,0);-ms-transform:matrix(0.261622,0.002616,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.261622,0.002616,-0.002500,0.249988,0,0);}
.m41_c01450{transform:matrix(0.261690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261690,0.000000,0.000000,0.250000,0,0);}
.mc9_c01450{transform:matrix(0.261869,0.002881,-0.002750,0.249985,0,0);-ms-transform:matrix(0.261869,0.002881,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.261869,0.002881,-0.002750,0.249985,0,0);}
.m64_c01450{transform:matrix(0.262044,0.002882,-0.002750,0.249985,0,0);-ms-transform:matrix(0.262044,0.002882,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.262044,0.002882,-0.002750,0.249985,0,0);}
.mcd_c01450{transform:matrix(0.262455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262455,0.000000,0.000000,0.250000,0,0);}
.mda_c01450{transform:matrix(0.262722,0.002627,-0.002500,0.249988,0,0);-ms-transform:matrix(0.262722,0.002627,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.262722,0.002627,-0.002500,0.249988,0,0);}
.md5_c01450{transform:matrix(0.263922,0.002639,-0.002500,0.249988,0,0);-ms-transform:matrix(0.263922,0.002639,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.263922,0.002639,-0.002500,0.249988,0,0);}
.m2a_c01450{transform:matrix(0.263987,0.002112,-0.002000,0.249992,0,0);-ms-transform:matrix(0.263987,0.002112,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.263987,0.002112,-0.002000,0.249992,0,0);}
.mf2_c01450{transform:matrix(0.264372,0.002644,-0.002500,0.249988,0,0);-ms-transform:matrix(0.264372,0.002644,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.264372,0.002644,-0.002500,0.249988,0,0);}
.m6c_c01450{transform:matrix(0.265559,0.002921,-0.002750,0.249985,0,0);-ms-transform:matrix(0.265559,0.002921,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.265559,0.002921,-0.002750,0.249985,0,0);}
.mdd_c01450{transform:matrix(0.265627,0.002656,-0.002500,0.249988,0,0);-ms-transform:matrix(0.265627,0.002656,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.265627,0.002656,-0.002500,0.249988,0,0);}
.m39_c01450{transform:matrix(0.265635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265635,0.000000,0.000000,0.250000,0,0);}
.mef_c01450{transform:matrix(0.266227,0.002662,-0.002500,0.249988,0,0);-ms-transform:matrix(0.266227,0.002662,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.266227,0.002662,-0.002500,0.249988,0,0);}
.m43_c01450{transform:matrix(0.266645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266645,0.000000,0.000000,0.250000,0,0);}
.mcf_c01450{transform:matrix(0.266945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266945,0.000000,0.000000,0.250000,0,0);}
.m9e_c01450{transform:matrix(0.267071,0.002137,-0.002000,0.249992,0,0);-ms-transform:matrix(0.267071,0.002137,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.267071,0.002137,-0.002000,0.249992,0,0);}
.ma1_c01450{transform:matrix(0.267221,0.002138,-0.002000,0.249992,0,0);-ms-transform:matrix(0.267221,0.002138,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.267221,0.002138,-0.002000,0.249992,0,0);}
.mdc_c01450{transform:matrix(0.267392,0.002674,-0.002500,0.249988,0,0);-ms-transform:matrix(0.267392,0.002674,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.267392,0.002674,-0.002500,0.249988,0,0);}
.mf_c01450{transform:matrix(0.267567,0.003478,-0.003250,0.249979,0,0);-ms-transform:matrix(0.267567,0.003478,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.267567,0.003478,-0.003250,0.249979,0,0);}
.m59_c01450{transform:matrix(0.267597,0.002676,-0.002500,0.249988,0,0);-ms-transform:matrix(0.267597,0.002676,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.267597,0.002676,-0.002500,0.249988,0,0);}
.m84_c01450{transform:matrix(0.268910,0.004034,-0.003750,0.249972,0,0);-ms-transform:matrix(0.268910,0.004034,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.268910,0.004034,-0.003750,0.249972,0,0);}
.m26_c01450{transform:matrix(0.269376,0.002155,-0.002000,0.249992,0,0);-ms-transform:matrix(0.269376,0.002155,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.269376,0.002155,-0.002000,0.249992,0,0);}
.m65_c01450{transform:matrix(0.270659,0.002977,-0.002750,0.249985,0,0);-ms-transform:matrix(0.270659,0.002977,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.270659,0.002977,-0.002750,0.249985,0,0);}
.m9c_c01450{transform:matrix(0.271381,0.002171,-0.002000,0.249992,0,0);-ms-transform:matrix(0.271381,0.002171,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.271381,0.002171,-0.002000,0.249992,0,0);}
.md9_c01450{transform:matrix(0.272271,0.002723,-0.002500,0.249988,0,0);-ms-transform:matrix(0.272271,0.002723,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.272271,0.002723,-0.002500,0.249988,0,0);}
.m44_c01450{transform:matrix(0.272400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272400,0.000000,0.000000,0.250000,0,0);}
.ma3_c01450{transform:matrix(0.274046,0.002192,-0.002000,0.249992,0,0);-ms-transform:matrix(0.274046,0.002192,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.274046,0.002192,-0.002000,0.249992,0,0);}
.m3a_c01450{transform:matrix(0.274255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274255,0.000000,0.000000,0.250000,0,0);}
.m45_c01450{transform:matrix(0.274820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274820,0.000000,0.000000,0.250000,0,0);}
.m32_c01450{transform:matrix(0.275024,0.002475,-0.002250,0.249990,0,0);-ms-transform:matrix(0.275024,0.002475,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.275024,0.002475,-0.002250,0.249990,0,0);}
.m61_c01450{transform:matrix(0.275183,0.003027,-0.002750,0.249985,0,0);-ms-transform:matrix(0.275183,0.003027,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.275183,0.003027,-0.002750,0.249985,0,0);}
.m6f_c01450{transform:matrix(0.275693,0.003033,-0.002750,0.249985,0,0);-ms-transform:matrix(0.275693,0.003033,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.275693,0.003033,-0.002750,0.249985,0,0);}
.mcc_c01450{transform:matrix(0.275758,0.003033,-0.002750,0.249985,0,0);-ms-transform:matrix(0.275758,0.003033,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.275758,0.003033,-0.002750,0.249985,0,0);}
.m73_c01450{transform:matrix(0.275783,0.003034,-0.002750,0.249985,0,0);-ms-transform:matrix(0.275783,0.003034,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.275783,0.003034,-0.002750,0.249985,0,0);}
.mdf_c01450{transform:matrix(0.276426,0.002764,-0.002500,0.249988,0,0);-ms-transform:matrix(0.276426,0.002764,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.276426,0.002764,-0.002500,0.249988,0,0);}
.m1f_c01450{transform:matrix(0.276781,0.002214,-0.002000,0.249992,0,0);-ms-transform:matrix(0.276781,0.002214,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.276781,0.002214,-0.002000,0.249992,0,0);}
.m3b_c01450{transform:matrix(0.277155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277155,0.000000,0.000000,0.250000,0,0);}
.m1a_c01450{transform:matrix(0.278406,0.002227,-0.002000,0.249992,0,0);-ms-transform:matrix(0.278406,0.002227,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.278406,0.002227,-0.002000,0.249992,0,0);}
.m6a_c01450{transform:matrix(0.278913,0.003068,-0.002750,0.249985,0,0);-ms-transform:matrix(0.278913,0.003068,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.278913,0.003068,-0.002750,0.249985,0,0);}
.m24_c01450{transform:matrix(0.279286,0.002234,-0.002000,0.249992,0,0);-ms-transform:matrix(0.279286,0.002234,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.279286,0.002234,-0.002000,0.249992,0,0);}
.m13_c01450{transform:matrix(0.279406,0.003632,-0.003250,0.249979,0,0);-ms-transform:matrix(0.279406,0.003632,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.279406,0.003632,-0.003250,0.249979,0,0);}
.m2b_c01450{transform:matrix(0.281111,0.002249,-0.002000,0.249992,0,0);-ms-transform:matrix(0.281111,0.002249,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.281111,0.002249,-0.002000,0.249992,0,0);}
.mdb_c01450{transform:matrix(0.281316,0.002813,-0.002500,0.249988,0,0);-ms-transform:matrix(0.281316,0.002813,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.281316,0.002813,-0.002500,0.249988,0,0);}
.m3e_c01450{transform:matrix(0.281855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281855,0.000000,0.000000,0.250000,0,0);}
.m36_c01450{transform:matrix(0.286198,0.002576,-0.002250,0.249990,0,0);-ms-transform:matrix(0.286198,0.002576,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.286198,0.002576,-0.002250,0.249990,0,0);}
.m23_c01450{transform:matrix(0.287316,0.002299,-0.002000,0.249992,0,0);-ms-transform:matrix(0.287316,0.002299,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.287316,0.002299,-0.002000,0.249992,0,0);}
.m1b_c01450{transform:matrix(0.288161,0.002305,-0.002000,0.249992,0,0);-ms-transform:matrix(0.288161,0.002305,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.288161,0.002305,-0.002000,0.249992,0,0);}
.m15_c01450{transform:matrix(0.288271,0.003748,-0.003250,0.249979,0,0);-ms-transform:matrix(0.288271,0.003748,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.288271,0.003748,-0.003250,0.249979,0,0);}
.m25_c01450{transform:matrix(0.288361,0.002307,-0.002000,0.249992,0,0);-ms-transform:matrix(0.288361,0.002307,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.288361,0.002307,-0.002000,0.249992,0,0);}
.m1c_c01450{transform:matrix(0.294456,0.002356,-0.002000,0.249992,0,0);-ms-transform:matrix(0.294456,0.002356,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.294456,0.002356,-0.002000,0.249992,0,0);}
.m11_c01450{transform:matrix(0.294555,0.003829,-0.003250,0.249979,0,0);-ms-transform:matrix(0.294555,0.003829,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.294555,0.003829,-0.003250,0.249979,0,0);}
.m14_c01450{transform:matrix(0.295465,0.003841,-0.003250,0.249979,0,0);-ms-transform:matrix(0.295465,0.003841,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.295465,0.003841,-0.003250,0.249979,0,0);}
.m30_c01450{transform:matrix(0.296693,0.002670,-0.002250,0.249990,0,0);-ms-transform:matrix(0.296693,0.002670,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.296693,0.002670,-0.002250,0.249990,0,0);}
.m28_c01450{transform:matrix(0.297285,0.002378,-0.002000,0.249992,0,0);-ms-transform:matrix(0.297285,0.002378,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.297285,0.002378,-0.002000,0.249992,0,0);}
.m10_c01450{transform:matrix(0.297420,0.003866,-0.003250,0.249979,0,0);-ms-transform:matrix(0.297420,0.003866,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.297420,0.003866,-0.003250,0.249979,0,0);}
.m3c_c01450{transform:matrix(0.299355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299355,0.000000,0.000000,0.250000,0,0);}
.m31_c01450{transform:matrix(0.299493,0.002695,-0.002250,0.249990,0,0);-ms-transform:matrix(0.299493,0.002695,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.299493,0.002695,-0.002250,0.249990,0,0);}
.m19_c01450{transform:matrix(0.299645,0.002397,-0.002000,0.249992,0,0);-ms-transform:matrix(0.299645,0.002397,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.299645,0.002397,-0.002000,0.249992,0,0);}
.m18_c01450{transform:matrix(0.299650,0.002397,-0.002000,0.249992,0,0);-ms-transform:matrix(0.299650,0.002397,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.299650,0.002397,-0.002000,0.249992,0,0);}
.m22_c01450{transform:matrix(0.300065,0.002401,-0.002000,0.249992,0,0);-ms-transform:matrix(0.300065,0.002401,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.300065,0.002401,-0.002000,0.249992,0,0);}
.m35_c01450{transform:matrix(0.301758,0.002716,-0.002250,0.249990,0,0);-ms-transform:matrix(0.301758,0.002716,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.301758,0.002716,-0.002250,0.249990,0,0);}
.m17_c01450{transform:matrix(0.303775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303775,0.000000,0.000000,0.250000,0,0);}
.mc4_c01450{transform:matrix(0.304197,0.003346,-0.002750,0.249985,0,0);-ms-transform:matrix(0.304197,0.003346,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.304197,0.003346,-0.002750,0.249985,0,0);}
.m2e_c01450{transform:matrix(0.307070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307070,0.000000,0.000000,0.250000,0,0);}
.m60_c01450{transform:matrix(0.310204,0.003102,-0.002500,0.249988,0,0);-ms-transform:matrix(0.310204,0.003102,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.310204,0.003102,-0.002500,0.249988,0,0);}
.ma5_c01450{transform:matrix(0.319320,0.002555,-0.002000,0.249992,0,0);-ms-transform:matrix(0.319320,0.002555,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.319320,0.002555,-0.002000,0.249992,0,0);}
.m38_c01450{transform:matrix(0.348001,0.003132,-0.002250,0.249990,0,0);-ms-transform:matrix(0.348001,0.003132,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.348001,0.003132,-0.002250,0.249990,0,0);}
.m3_c01450{transform:matrix(0.465550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465550,0.000000,0.000000,0.250000,0,0);}
.m4_c01450{transform:matrix(0.594820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.594820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.594820,0.000000,0.000000,0.250000,0,0);}
.m81_c01450{transform:matrix(0.659216,0.009888,-0.003750,0.249972,0,0);-ms-transform:matrix(0.659216,0.009888,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.659216,0.009888,-0.003750,0.249972,0,0);}
.m5b_c01450{transform:matrix(0.808935,0.008089,-0.002500,0.249988,0,0);-ms-transform:matrix(0.808935,0.008089,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.808935,0.008089,-0.002500,0.249988,0,0);}
.v0_c01450{vertical-align:0.000000px;}
.ls0_c01450{letter-spacing:0.000000px;}
.sc__c01450{text-shadow:none;}
.sc0_c01450{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__c01450{-webkit-text-stroke:0px transparent;}
.sc0_c01450{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01450{word-spacing:0.000000px;}
.fc0_c01450{color:transparent;}
.fs2_c01450{font-size:24.000000px;}
.fs1_c01450{font-size:54.000000px;}
.fs6_c01450{font-size:66.000000px;}
.fs7_c01450{font-size:66.002112px;}
.fs8_c01450{font-size:66.002673px;}
.fs5_c01450{font-size:66.005577px;}
.fs0_c01450{font-size:72.000000px;}
.fs11_c01450{font-size:72.002304px;}
.fsa_c01450{font-size:72.003600px;}
.fsc_c01450{font-size:72.004356px;}
.fs15_c01450{font-size:78.001404px;}
.fs12_c01450{font-size:78.004719px;}
.fs4_c01450{font-size:78.006591px;}
.fsf_c01450{font-size:78.008775px;}
.fs9_c01450{font-size:84.004200px;}
.fsb_c01450{font-size:90.004500px;}
.fse_c01450{font-size:90.010124px;}
.fs10_c01450{font-size:96.003072px;}
.fs14_c01450{font-size:96.005808px;}
.fs13_c01450{font-size:102.006171px;}
.fsd_c01450{font-size:114.006897px;}
.fs3_c01450{font-size:144.000000px;}
.y0_c01450{bottom:0.000000px;}
.ye6_c01450{bottom:69.360255px;}
.ye5_c01450{bottom:69.825495px;}
.ye4_c01450{bottom:70.041135px;}
.ye3_c01450{bottom:70.475895px;}
.ye2_c01450{bottom:71.251140px;}
.ye1_c01450{bottom:71.691240px;}
.ye0_c01450{bottom:72.017625px;}
.ydf_c01450{bottom:72.879240px;}
.yde_c01450{bottom:73.327335px;}
.ydd_c01450{bottom:73.883640px;}
.ydc_c01450{bottom:74.323770px;}
.ydb_c01450{bottom:75.184980px;}
.yda_c01450{bottom:75.600000px;}
.yd9_c01450{bottom:106.226334px;}
.yd8_c01450{bottom:106.417503px;}
.yd7_c01450{bottom:106.673382px;}
.yd6_c01450{bottom:107.331228px;}
.yd5_c01450{bottom:107.867439px;}
.yd4_c01450{bottom:108.387432px;}
.yd3_c01450{bottom:108.586692px;}
.yd2_c01450{bottom:108.975537px;}
.yd1_c01450{bottom:109.377279px;}
.yd0_c01450{bottom:109.620000px;}
.ycf_c01450{bottom:158.490750px;}
.yce_c01450{bottom:188.798670px;}
.ycd_c01450{bottom:189.465675px;}
.ycc_c01450{bottom:189.789795px;}
.ycb_c01450{bottom:191.096745px;}
.yca_c01450{bottom:191.995860px;}
.yc9_c01450{bottom:193.083900px;}
.yc8_c01450{bottom:193.296885px;}
.yc7_c01450{bottom:193.848060px;}
.yc6_c01450{bottom:194.172045px;}
.yc5_c01450{bottom:194.941500px;}
.yc4_c01450{bottom:230.412000px;}
.yc2_c01450{bottom:265.885280px;}
.yc3_c01450{bottom:265.885553px;}
.yc0_c01450{bottom:265.885590px;}
.yc1_c01450{bottom:265.885983px;}
.ybf_c01450{bottom:291.894635px;}
.ybe_c01450{bottom:292.461384px;}
.ybd_c01450{bottom:293.847044px;}
.ybc_c01450{bottom:295.204600px;}
.ybb_c01450{bottom:295.517604px;}
.yba_c01450{bottom:295.832092px;}
.yb9_c01450{bottom:296.493462px;}
.yb8_c01450{bottom:296.934501px;}
.yb7_c01450{bottom:297.269732px;}
.yb6_c01450{bottom:331.127616px;}
.yb5_c01450{bottom:331.629645px;}
.yb4_c01450{bottom:332.098608px;}
.yb3_c01450{bottom:333.067257px;}
.yb2_c01450{bottom:334.504787px;}
.yb1_c01450{bottom:335.116573px;}
.yb0_c01450{bottom:336.313764px;}
.yaf_c01450{bottom:337.501500px;}
.y2_c01450{bottom:338.310000px;}
.yae_c01450{bottom:368.822326px;}
.yad_c01450{bottom:369.114078px;}
.yac_c01450{bottom:369.485278px;}
.yab_c01450{bottom:370.298578px;}
.yaa_c01450{bottom:370.592838px;}
.ya9_c01450{bottom:370.874424px;}
.ya8_c01450{bottom:371.260411px;}
.ya7_c01450{bottom:371.576820px;}
.ya6_c01450{bottom:372.058462px;}
.ya5_c01450{bottom:401.231827px;}
.ya4_c01450{bottom:402.212521px;}
.ya3_c01450{bottom:402.583887px;}
.ya2_c01450{bottom:404.137098px;}
.ya1_c01450{bottom:404.727732px;}
.ya0_c01450{bottom:405.699285px;}
.y9f_c01450{bottom:406.049398px;}
.y9e_c01450{bottom:406.789341px;}
.y9d_c01450{bottom:407.971500px;}
.y4_c01450{bottom:409.590000px;}
.y9c_c01450{bottom:442.959612px;}
.y9b_c01450{bottom:442.959780px;}
.y9a_c01450{bottom:473.794152px;}
.y99_c01450{bottom:474.550332px;}
.y98_c01450{bottom:475.217652px;}
.y97_c01450{bottom:475.544976px;}
.y96_c01450{bottom:475.979496px;}
.y95_c01450{bottom:476.754120px;}
.y94_c01450{bottom:477.069804px;}
.y93_c01450{bottom:477.844284px;}
.y92_c01450{bottom:478.497540px;}
.y91_c01450{bottom:478.709892px;}
.y90_c01450{bottom:479.250216px;}
.y8f_c01450{bottom:505.665660px;}
.y8e_c01450{bottom:506.026644px;}
.y8d_c01450{bottom:506.207868px;}
.y8c_c01450{bottom:506.620692px;}
.y8b_c01450{bottom:507.700932px;}
.y8a_c01450{bottom:507.953196px;}
.y89_c01450{bottom:508.294488px;}
.y88_c01450{bottom:508.905972px;}
.y87_c01450{bottom:509.175996px;}
.y86_c01450{bottom:509.445972px;}
.y85_c01450{bottom:510.301500px;}
.y84_c01450{bottom:580.676550px;}
.y83_c01450{bottom:581.033595px;}
.y82_c01450{bottom:582.001620px;}
.y81_c01450{bottom:582.449842px;}
.y80_c01450{bottom:582.836603px;}
.y7f_c01450{bottom:583.316663px;}
.y7e_c01450{bottom:584.639227px;}
.y7d_c01450{bottom:586.098412px;}
.y7c_c01450{bottom:586.436685px;}
.y7b_c01450{bottom:613.653577px;}
.y7a_c01450{bottom:614.620515px;}
.y79_c01450{bottom:615.257198px;}
.y78_c01450{bottom:616.398262px;}
.y77_c01450{bottom:617.062260px;}
.y76_c01450{bottom:617.717797px;}
.y75_c01450{bottom:619.026533px;}
.y74_c01450{bottom:620.014732px;}
.y73_c01450{bottom:620.517000px;}
.y72_c01450{bottom:621.006870px;}
.y71_c01450{bottom:622.623000px;}
.y3_c01450{bottom:623.430000px;}
.y6f_c01450{bottom:654.667698px;}
.y6e_c01450{bottom:654.667918px;}
.y6d_c01450{bottom:654.668199px;}
.y70_c01450{bottom:654.668277px;}
.y6c_c01450{bottom:654.668872px;}
.y6b_c01450{bottom:686.027661px;}
.y6a_c01450{bottom:686.833932px;}
.y69_c01450{bottom:687.122845px;}
.y68_c01450{bottom:687.518488px;}
.y67_c01450{bottom:688.197085px;}
.y66_c01450{bottom:689.105349px;}
.y65_c01450{bottom:689.379211px;}
.y64_c01450{bottom:689.678769px;}
.y63_c01450{bottom:690.286285px;}
.y62_c01450{bottom:690.657964px;}
.y61_c01450{bottom:721.918899px;}
.y60_c01450{bottom:722.397201px;}
.y5f_c01450{bottom:723.228784px;}
.y5e_c01450{bottom:723.724774px;}
.y5d_c01450{bottom:724.196641px;}
.y5c_c01450{bottom:725.162188px;}
.y5b_c01450{bottom:725.996775px;}
.y5a_c01450{bottom:726.371044px;}
.y59_c01450{bottom:726.733368px;}
.y58_c01450{bottom:727.921500px;}
.y57_c01450{bottom:755.391615px;}
.y56_c01450{bottom:755.561115px;}
.y55_c01450{bottom:756.333885px;}
.y54_c01450{bottom:756.626370px;}
.y53_c01450{bottom:756.872355px;}
.y52_c01450{bottom:757.883235px;}
.y51_c01450{bottom:791.697465px;}
.y50_c01450{bottom:792.434640px;}
.y4f_c01450{bottom:793.004910px;}
.y4e_c01450{bottom:793.511220px;}
.y4d_c01450{bottom:794.217960px;}
.y4c_c01450{bottom:794.469915px;}
.y4b_c01450{bottom:795.192360px;}
.y4a_c01450{bottom:795.670200px;}
.y49_c01450{bottom:797.135130px;}
.y48_c01450{bottom:797.474205px;}
.y47_c01450{bottom:797.849205px;}
.y46_c01450{bottom:828.145215px;}
.y45_c01450{bottom:828.571950px;}
.y44_c01450{bottom:829.344240px;}
.y43_c01450{bottom:829.781595px;}
.y42_c01450{bottom:830.205225px;}
.y41_c01450{bottom:831.085725px;}
.y40_c01450{bottom:832.292595px;}
.y3f_c01450{bottom:832.627410px;}
.y3e_c01450{bottom:832.951425px;}
.y3d_c01450{bottom:834.031500px;}
.y3c_c01450{bottom:866.475000px;}
.y3b_c01450{bottom:867.264000px;}
.y3a_c01450{bottom:868.131000px;}
.y39_c01450{bottom:868.542000px;}
.y38_c01450{bottom:869.142000px;}
.y37_c01450{bottom:869.533500px;}
.y36_c01450{bottom:870.211500px;}
.y35_c01450{bottom:904.311000px;}
.y34_c01450{bottom:936.446887px;}
.y33_c01450{bottom:936.748194px;}
.y32_c01450{bottom:937.338549px;}
.y31_c01450{bottom:938.325399px;}
.y30_c01450{bottom:939.007986px;}
.y2f_c01450{bottom:939.601122px;}
.y2e_c01450{bottom:940.004529px;}
.y2d_c01450{bottom:940.884216px;}
.y2c_c01450{bottom:941.761500px;}
.y2b_c01450{bottom:975.102000px;}
.y2a_c01450{bottom:1006.657716px;}
.y29_c01450{bottom:1006.929900px;}
.y28_c01450{bottom:1007.193216px;}
.y27_c01450{bottom:1007.901912px;}
.y26_c01450{bottom:1008.154608px;}
.y25_c01450{bottom:1008.511044px;}
.y24_c01450{bottom:1009.111476px;}
.y23_c01450{bottom:1009.724928px;}
.y22_c01450{bottom:1010.085648px;}
.y21_c01450{bottom:1010.880552px;}
.y20_c01450{bottom:1042.319964px;}
.y1f_c01450{bottom:1042.596660px;}
.y1e_c01450{bottom:1043.117052px;}
.y1d_c01450{bottom:1043.469324px;}
.y1c_c01450{bottom:1043.816952px;}
.y1b_c01450{bottom:1044.519156px;}
.y1a_c01450{bottom:1045.130412px;}
.y19_c01450{bottom:1045.573176px;}
.y18_c01450{bottom:1046.359476px;}
.y17_c01450{bottom:1047.061500px;}
.y16_c01450{bottom:1082.166000px;}
.y15_c01450{bottom:1113.589446px;}
.y14_c01450{bottom:1113.941056px;}
.y13_c01450{bottom:1114.730323px;}
.y12_c01450{bottom:1115.168412px;}
.y11_c01450{bottom:1115.606013px;}
.y10_c01450{bottom:1116.385896px;}
.yf_c01450{bottom:1117.102774px;}
.ye_c01450{bottom:1117.526793px;}
.yd_c01450{bottom:1117.797523px;}
.yc_c01450{bottom:1150.549927px;}
.yb_c01450{bottom:1151.107335px;}
.ya_c01450{bottom:1152.533097px;}
.y9_c01450{bottom:1153.803756px;}
.y8_c01450{bottom:1154.667138px;}
.y7_c01450{bottom:1156.085197px;}
.y1_c01450{bottom:1156.410000px;}
.y6_c01450{bottom:1157.493000px;}
.y5_c01450{bottom:1207.186500px;}
.h4_c01450{height:24.000000px;}
.h3_c01450{height:54.000000px;}
.h8_c01450{height:66.000000px;}
.h9_c01450{height:66.002112px;}
.ha_c01450{height:66.002673px;}
.h7_c01450{height:66.005577px;}
.h2_c01450{height:72.000000px;}
.h13_c01450{height:72.002304px;}
.hc_c01450{height:72.003600px;}
.he_c01450{height:72.004356px;}
.h17_c01450{height:78.001404px;}
.h14_c01450{height:78.004719px;}
.h6_c01450{height:78.006591px;}
.h11_c01450{height:78.008775px;}
.hb_c01450{height:84.004200px;}
.hd_c01450{height:90.004500px;}
.h10_c01450{height:90.010124px;}
.h12_c01450{height:96.003072px;}
.h16_c01450{height:96.005808px;}
.h15_c01450{height:102.006171px;}
.hf_c01450{height:114.006897px;}
.h5_c01450{height:144.000000px;}
.h0_c01450{height:1250.850000px;}
.h1_c01450{height:1251.000000px;}
.w0_c01450{width:912.000000px;}
.x0_c01450{left:0.000000px;}
.x1_c01450{left:117.450000px;}
.x3_c01450{left:120.690000px;}
.x5_c01450{left:165.510000px;}
.x4_c01450{left:167.400000px;}
.x2_c01450{left:173.070000px;}
.x95_c01450{left:204.930000px;}
.x7d_c01450{left:208.288500px;}
.x5d_c01450{left:210.132000px;}
.x35_c01450{left:211.555500px;}
.x29_c01450{left:212.911500px;}
.xa7_c01450{left:213.991500px;}
.x8_c01450{left:215.824500px;}
.x6b_c01450{left:219.889500px;}
.x17_c01450{left:223.722000px;}
.x8b_c01450{left:258.751674px;}
.x92_c01450{left:260.283176px;}
.x7c_c01450{left:261.630972px;}
.x4c_c01450{left:262.852170px;}
.x44_c01450{left:264.454950px;}
.x16_c01450{left:266.490000px;}
.xf_c01450{left:268.007864px;}
.xa0_c01450{left:279.634500px;}
.x99_c01450{left:281.200500px;}
.x36_c01450{left:286.884000px;}
.x8c_c01450{left:292.227537px;}
.x66_c01450{left:294.975840px;}
.x45_c01450{left:298.504605px;}
.xa8_c01450{left:300.112500px;}
.x10_c01450{left:301.758548px;}
.x93_c01450{left:304.025472px;}
.x53_c01450{left:306.338631px;}
.x2a_c01450{left:310.387500px;}
.x18_c01450{left:311.475000px;}
.x9a_c01450{left:313.599000px;}
.x7e_c01450{left:315.757500px;}
.x75_c01450{left:317.156508px;}
.x4f_c01450{left:318.733500px;}
.x3c_c01450{left:320.089500px;}
.x9_c01450{left:324.117000px;}
.x6c_c01450{left:326.830500px;}
.x46_c01450{left:329.261790px;}
.x37_c01450{left:330.355500px;}
.x8d_c01450{left:336.277015px;}
.x76_c01450{left:338.450172px;}
.x27_c01450{left:342.360000px;}
.xa1_c01450{left:344.442000px;}
.x5e_c01450{left:350.532000px;}
.x3d_c01450{left:352.491000px;}
.x11_c01450{left:354.686480px;}
.x6d_c01450{left:360.577500px;}
.x5a_c01450{left:362.350653px;}
.x20_c01450{left:365.479284px;}
.x9b_c01450{left:368.716500px;}
.x54_c01450{left:373.841616px;}
.xa2_c01450{left:377.652000px;}
.x94_c01450{left:380.710245px;}
.x5f_c01450{left:384.016500px;}
.x3e_c01450{left:385.972500px;}
.x6_c01450{left:387.450000px;}
.x9c_c01450{left:390.015000px;}
.x6e_c01450{left:394.330500px;}
.x38_c01450{left:397.054500px;}
.xa9_c01450{left:399.756000px;}
.x8e_c01450{left:402.402241px;}
.x77_c01450{left:403.793628px;}
.x55_c01450{left:407.074842px;}
.x2b_c01450{left:408.130500px;}
.x19_c01450{left:409.762500px;}
.x7f_c01450{left:414.853500px;}
.x84_c01450{left:425.145621px;}
.x5b_c01450{left:427.424023px;}
.x32_c01450{left:429.840000px;}
.xa_c01450{left:433.198500px;}
.x7_c01450{left:434.700000px;}
.x56_c01450{left:437.563018px;}
.x39_c01450{left:442.678500px;}
.x12_c01450{left:444.336810px;}
.x96_c01450{left:447.390000px;}
.x60_c01450{left:449.896500px;}
.x2c_c01450{left:452.953500px;}
.x85_c01450{left:457.760831px;}
.x47_c01450{left:462.403455px;}
.x1a_c01450{left:465.108000px;}
.x6f_c01450{left:470.766000px;}
.x88_c01450{left:480.183000px;}
.x78_c01450{left:481.289892px;}
.x4d_c01450{left:484.243815px;}
.x21_c01450{left:487.250784px;}
.x97_c01450{left:488.970000px;}
.x28_c01450{left:497.610000px;}
.xb_c01450{left:499.612500px;}
.x80_c01450{left:503.176500px;}
.x3f_c01450{left:506.659500px;}
.x70_c01450{left:513.427500px;}
.x2d_c01450{left:518.857500px;}
.x33_c01450{left:529.470000px;}
.xaa_c01450{left:530.727000px;}
.x98_c01450{left:532.980000px;}
.x61_c01450{left:537.145500px;}
.x3a_c01450{left:539.061000px;}
.x13_c01450{left:541.834148px;}
.x71_c01450{left:544.960500px;}
.x67_c01450{left:547.740983px;}
.x50_c01450{left:549.345000px;}
.x34_c01450{left:551.340000px;}
.xa3_c01450{left:553.686000px;}
.x81_c01450{left:556.870500px;}
.x22_c01450{left:562.304784px;}
.xab_c01450{left:563.365500px;}
.x48_c01450{left:571.480860px;}
.x5c_c01450{left:580.253520px;}
.x86_c01450{left:589.309218px;}
.x79_c01450{left:590.389152px;}
.x51_c01450{left:592.242000px;}
.x2e_c01450{left:594.700500px;}
.xc_c01450{left:597.355500px;}
.x8f_c01450{left:600.863419px;}
.x23_c01450{left:606.859284px;}
.x89_c01450{left:610.867500px;}
.x57_c01450{left:613.872396px;}
.x4e_c01450{left:618.974865px;}
.x87_c01450{left:621.696428px;}
.x62_c01450{left:625.114500px;}
.x3b_c01450{left:626.809500px;}
.x1b_c01450{left:629.290500px;}
.x7a_c01450{left:633.828456px;}
.x40_c01450{left:637.072500px;}
.x24_c01450{left:638.446284px;}
.x14_c01450{left:651.432785px;}
.x49_c01450{left:658.649490px;}
.xa4_c01450{left:663.327000px;}
.x68_c01450{left:667.317660px;}
.x1c_c01450{left:672.744000px;}
.x41_c01450{left:680.808000px;}
.xac_c01450{left:684.900000px;}
.x58_c01450{left:690.015579px;}
.x82_c01450{left:698.071500px;}
.x63_c01450{left:701.185500px;}
.x2f_c01450{left:704.350500px;}
.xa5_c01450{left:705.973500px;}
.xd_c01450{left:707.029500px;}
.x52_c01450{left:712.930500px;}
.x1d_c01450{left:716.778000px;}
.x9d_c01450{left:719.425500px;}
.x25_c01450{left:727.033284px;}
.xad_c01450{left:728.376000px;}
.x72_c01450{left:731.593500px;}
.x7b_c01450{left:733.219860px;}
.xa6_c01450{left:737.835000px;}
.x90_c01450{left:739.379437px;}
.x8a_c01450{left:741.559500px;}
.x64_c01450{left:743.631000px;}
.xe_c01450{left:749.907000px;}
.x9e_c01450{left:751.837500px;}
.x73_c01450{left:754.246500px;}
.x69_c01450{left:755.357948px;}
.x4a_c01450{left:756.406500px;}
.x42_c01450{left:758.037000px;}
.x26_c01450{left:759.947784px;}
.x30_c01450{left:769.945500px;}
.x59_c01450{left:779.678559px;}
.x1e_c01450{left:781.827000px;}
.x6a_c01450{left:787.762883px;}
.x15_c01450{left:794.009547px;}
.x91_c01450{left:796.084564px;}
.x74_c01450{left:799.369500px;}
.x43_c01450{left:800.710500px;}
.x31_c01450{left:803.424000px;}
.x65_c01450{left:808.093500px;}
.x1f_c01450{left:816.414000px;}
.x9f_c01450{left:818.538000px;}
.x83_c01450{left:820.986000px;}
.x4b_c01450{left:823.373325px;}
@media print{
.v0_c01450{vertical-align:0.000000pt;}
.ls0_c01450{letter-spacing:0.000000pt;}
.ws0_c01450{word-spacing:0.000000pt;}
.fs2_c01450{font-size:21.333333pt;}
.fs1_c01450{font-size:48.000000pt;}
.fs6_c01450{font-size:58.666667pt;}
.fs7_c01450{font-size:58.668544pt;}
.fs8_c01450{font-size:58.669043pt;}
.fs5_c01450{font-size:58.671624pt;}
.fs0_c01450{font-size:64.000000pt;}
.fs11_c01450{font-size:64.002048pt;}
.fsa_c01450{font-size:64.003200pt;}
.fsc_c01450{font-size:64.003872pt;}
.fs15_c01450{font-size:69.334581pt;}
.fs12_c01450{font-size:69.337528pt;}
.fs4_c01450{font-size:69.339192pt;}
.fsf_c01450{font-size:69.341133pt;}
.fs9_c01450{font-size:74.670400pt;}
.fsb_c01450{font-size:80.004000pt;}
.fse_c01450{font-size:80.008999pt;}
.fs10_c01450{font-size:85.336064pt;}
.fs14_c01450{font-size:85.338496pt;}
.fs13_c01450{font-size:90.672152pt;}
.fsd_c01450{font-size:101.339464pt;}
.fs3_c01450{font-size:128.000000pt;}
.y0_c01450{bottom:0.000000pt;}
.ye6_c01450{bottom:61.653560pt;}
.ye5_c01450{bottom:62.067107pt;}
.ye4_c01450{bottom:62.258787pt;}
.ye3_c01450{bottom:62.645240pt;}
.ye2_c01450{bottom:63.334347pt;}
.ye1_c01450{bottom:63.725547pt;}
.ye0_c01450{bottom:64.015667pt;}
.ydf_c01450{bottom:64.781547pt;}
.yde_c01450{bottom:65.179853pt;}
.ydd_c01450{bottom:65.674347pt;}
.ydc_c01450{bottom:66.065573pt;}
.ydb_c01450{bottom:66.831093pt;}
.yda_c01450{bottom:67.200000pt;}
.yd9_c01450{bottom:94.423408pt;}
.yd8_c01450{bottom:94.593336pt;}
.yd7_c01450{bottom:94.820784pt;}
.yd6_c01450{bottom:95.405536pt;}
.yd5_c01450{bottom:95.882168pt;}
.yd4_c01450{bottom:96.344384pt;}
.yd3_c01450{bottom:96.521504pt;}
.yd2_c01450{bottom:96.867144pt;}
.yd1_c01450{bottom:97.224248pt;}
.yd0_c01450{bottom:97.440000pt;}
.ycf_c01450{bottom:140.880667pt;}
.yce_c01450{bottom:167.821040pt;}
.ycd_c01450{bottom:168.413933pt;}
.ycc_c01450{bottom:168.702040pt;}
.ycb_c01450{bottom:169.863773pt;}
.yca_c01450{bottom:170.662987pt;}
.yc9_c01450{bottom:171.630133pt;}
.yc8_c01450{bottom:171.819453pt;}
.yc7_c01450{bottom:172.309387pt;}
.yc6_c01450{bottom:172.597373pt;}
.yc5_c01450{bottom:173.281333pt;}
.yc4_c01450{bottom:204.810667pt;}
.yc2_c01450{bottom:236.342471pt;}
.yc3_c01450{bottom:236.342713pt;}
.yc0_c01450{bottom:236.342747pt;}
.yc1_c01450{bottom:236.343096pt;}
.ybf_c01450{bottom:259.461897pt;}
.ybe_c01450{bottom:259.965675pt;}
.ybd_c01450{bottom:261.197372pt;}
.ybc_c01450{bottom:262.404089pt;}
.ybb_c01450{bottom:262.682315pt;}
.yba_c01450{bottom:262.961860pt;}
.yb9_c01450{bottom:263.549744pt;}
.yb8_c01450{bottom:263.941779pt;}
.yb7_c01450{bottom:264.239761pt;}
.yb6_c01450{bottom:294.335659pt;}
.yb5_c01450{bottom:294.781907pt;}
.yb4_c01450{bottom:295.198763pt;}
.yb3_c01450{bottom:296.059784pt;}
.yb2_c01450{bottom:297.337588pt;}
.yb1_c01450{bottom:297.881399pt;}
.yb0_c01450{bottom:298.945568pt;}
.yaf_c01450{bottom:300.001333pt;}
.y2_c01450{bottom:300.720000pt;}
.yae_c01450{bottom:327.842068pt;}
.yad_c01450{bottom:328.101403pt;}
.yac_c01450{bottom:328.431359pt;}
.yab_c01450{bottom:329.154292pt;}
.yaa_c01450{bottom:329.415856pt;}
.ya9_c01450{bottom:329.666155pt;}
.ya8_c01450{bottom:330.009255pt;}
.ya7_c01450{bottom:330.290507pt;}
.ya6_c01450{bottom:330.718633pt;}
.ya5_c01450{bottom:356.650513pt;}
.ya4_c01450{bottom:357.522241pt;}
.ya3_c01450{bottom:357.852344pt;}
.ya2_c01450{bottom:359.232976pt;}
.ya1_c01450{bottom:359.757984pt;}
.ya0_c01450{bottom:360.621587pt;}
.y9f_c01450{bottom:360.932799pt;}
.y9e_c01450{bottom:361.590525pt;}
.y9d_c01450{bottom:362.641333pt;}
.y4_c01450{bottom:364.080000pt;}
.y9c_c01450{bottom:393.741877pt;}
.y9b_c01450{bottom:393.742027pt;}
.y9a_c01450{bottom:421.150357pt;}
.y99_c01450{bottom:421.822517pt;}
.y98_c01450{bottom:422.415691pt;}
.y97_c01450{bottom:422.706645pt;}
.y96_c01450{bottom:423.092885pt;}
.y95_c01450{bottom:423.781440pt;}
.y94_c01450{bottom:424.062048pt;}
.y93_c01450{bottom:424.750475pt;}
.y92_c01450{bottom:425.331147pt;}
.y91_c01450{bottom:425.519904pt;}
.y90_c01450{bottom:426.000192pt;}
.y8f_c01450{bottom:449.480587pt;}
.y8e_c01450{bottom:449.801461pt;}
.y8d_c01450{bottom:449.962549pt;}
.y8c_c01450{bottom:450.329504pt;}
.y8b_c01450{bottom:451.289717pt;}
.y8a_c01450{bottom:451.513952pt;}
.y89_c01450{bottom:451.817323pt;}
.y88_c01450{bottom:452.360864pt;}
.y87_c01450{bottom:452.600885pt;}
.y86_c01450{bottom:452.840864pt;}
.y85_c01450{bottom:453.601333pt;}
.y84_c01450{bottom:516.156933pt;}
.y83_c01450{bottom:516.474307pt;}
.y82_c01450{bottom:517.334773pt;}
.y81_c01450{bottom:517.733193pt;}
.y80_c01450{bottom:518.076980pt;}
.y7f_c01450{bottom:518.503700pt;}
.y7e_c01450{bottom:519.679313pt;}
.y7d_c01450{bottom:520.976367pt;}
.y7c_c01450{bottom:521.277053pt;}
.y7b_c01450{bottom:545.469847pt;}
.y7a_c01450{bottom:546.329347pt;}
.y79_c01450{bottom:546.895287pt;}
.y78_c01450{bottom:547.909567pt;}
.y77_c01450{bottom:548.499787pt;}
.y76_c01450{bottom:549.082487pt;}
.y75_c01450{bottom:550.245807pt;}
.y74_c01450{bottom:551.124207pt;}
.y73_c01450{bottom:551.570667pt;}
.y72_c01450{bottom:552.006107pt;}
.y71_c01450{bottom:553.442667pt;}
.y3_c01450{bottom:554.160000pt;}
.y6f_c01450{bottom:581.926843pt;}
.y6e_c01450{bottom:581.927039pt;}
.y6d_c01450{bottom:581.927288pt;}
.y70_c01450{bottom:581.927357pt;}
.y6c_c01450{bottom:581.927887pt;}
.y6b_c01450{bottom:609.802365pt;}
.y6a_c01450{bottom:610.519051pt;}
.y69_c01450{bottom:610.775863pt;}
.y68_c01450{bottom:611.127545pt;}
.y67_c01450{bottom:611.730743pt;}
.y66_c01450{bottom:612.538088pt;}
.y65_c01450{bottom:612.781521pt;}
.y64_c01450{bottom:613.047795pt;}
.y63_c01450{bottom:613.587809pt;}
.y62_c01450{bottom:613.918191pt;}
.y61_c01450{bottom:641.705688pt;}
.y60_c01450{bottom:642.130845pt;}
.y5f_c01450{bottom:642.870031pt;}
.y5e_c01450{bottom:643.310911pt;}
.y5d_c01450{bottom:643.730348pt;}
.y5c_c01450{bottom:644.588612pt;}
.y5b_c01450{bottom:645.330467pt;}
.y5a_c01450{bottom:645.663151pt;}
.y59_c01450{bottom:645.985216pt;}
.y58_c01450{bottom:647.041333pt;}
.y57_c01450{bottom:671.459213pt;}
.y56_c01450{bottom:671.609880pt;}
.y55_c01450{bottom:672.296787pt;}
.y54_c01450{bottom:672.556773pt;}
.y53_c01450{bottom:672.775427pt;}
.y52_c01450{bottom:673.673987pt;}
.y51_c01450{bottom:703.731080pt;}
.y50_c01450{bottom:704.386347pt;}
.y4f_c01450{bottom:704.893253pt;}
.y4e_c01450{bottom:705.343307pt;}
.y4d_c01450{bottom:705.971520pt;}
.y4c_c01450{bottom:706.195480pt;}
.y4b_c01450{bottom:706.837653pt;}
.y4a_c01450{bottom:707.262400pt;}
.y49_c01450{bottom:708.564560pt;}
.y48_c01450{bottom:708.865960pt;}
.y47_c01450{bottom:709.199293pt;}
.y46_c01450{bottom:736.129080pt;}
.y45_c01450{bottom:736.508400pt;}
.y44_c01450{bottom:737.194880pt;}
.y43_c01450{bottom:737.583640pt;}
.y42_c01450{bottom:737.960200pt;}
.y41_c01450{bottom:738.742867pt;}
.y40_c01450{bottom:739.815640pt;}
.y3f_c01450{bottom:740.113253pt;}
.y3e_c01450{bottom:740.401267pt;}
.y3d_c01450{bottom:741.361333pt;}
.y3c_c01450{bottom:770.200000pt;}
.y3b_c01450{bottom:770.901333pt;}
.y3a_c01450{bottom:771.672000pt;}
.y39_c01450{bottom:772.037333pt;}
.y38_c01450{bottom:772.570667pt;}
.y37_c01450{bottom:772.918667pt;}
.y36_c01450{bottom:773.521333pt;}
.y35_c01450{bottom:803.832000pt;}
.y34_c01450{bottom:832.397233pt;}
.y33_c01450{bottom:832.665061pt;}
.y32_c01450{bottom:833.189821pt;}
.y31_c01450{bottom:834.067021pt;}
.y30_c01450{bottom:834.673765pt;}
.y2f_c01450{bottom:835.200997pt;}
.y2e_c01450{bottom:835.559581pt;}
.y2d_c01450{bottom:836.341525pt;}
.y2c_c01450{bottom:837.121333pt;}
.y2b_c01450{bottom:866.757333pt;}
.y2a_c01450{bottom:894.806859pt;}
.y29_c01450{bottom:895.048800pt;}
.y28_c01450{bottom:895.282859pt;}
.y27_c01450{bottom:895.912811pt;}
.y26_c01450{bottom:896.137429pt;}
.y25_c01450{bottom:896.454261pt;}
.y24_c01450{bottom:896.987979pt;}
.y23_c01450{bottom:897.533269pt;}
.y22_c01450{bottom:897.853909pt;}
.y21_c01450{bottom:898.560491pt;}
.y20_c01450{bottom:926.506635pt;}
.y1f_c01450{bottom:926.752587pt;}
.y1e_c01450{bottom:927.215157pt;}
.y1d_c01450{bottom:927.528288pt;}
.y1c_c01450{bottom:927.837291pt;}
.y1b_c01450{bottom:928.461472pt;}
.y1a_c01450{bottom:929.004811pt;}
.y19_c01450{bottom:929.398379pt;}
.y18_c01450{bottom:930.097312pt;}
.y17_c01450{bottom:930.721333pt;}
.y16_c01450{bottom:961.925333pt;}
.y15_c01450{bottom:989.857285pt;}
.y14_c01450{bottom:990.169828pt;}
.y13_c01450{bottom:990.871399pt;}
.y12_c01450{bottom:991.260811pt;}
.y11_c01450{bottom:991.649789pt;}
.y10_c01450{bottom:992.343019pt;}
.yf_c01450{bottom:992.980244pt;}
.ye_c01450{bottom:993.357149pt;}
.yd_c01450{bottom:993.597799pt;}
.yc_c01450{bottom:1022.711047pt;}
.yb_c01450{bottom:1023.206520pt;}
.ya_c01450{bottom:1024.473864pt;}
.y9_c01450{bottom:1025.603339pt;}
.y8_c01450{bottom:1026.370789pt;}
.y7_c01450{bottom:1027.631287pt;}
.y1_c01450{bottom:1027.920000pt;}
.y6_c01450{bottom:1028.882667pt;}
.y5_c01450{bottom:1073.054667pt;}
.h4_c01450{height:21.333333pt;}
.h3_c01450{height:48.000000pt;}
.h8_c01450{height:58.666667pt;}
.h9_c01450{height:58.668544pt;}
.ha_c01450{height:58.669043pt;}
.h7_c01450{height:58.671624pt;}
.h2_c01450{height:64.000000pt;}
.h13_c01450{height:64.002048pt;}
.hc_c01450{height:64.003200pt;}
.he_c01450{height:64.003872pt;}
.h17_c01450{height:69.334581pt;}
.h14_c01450{height:69.337528pt;}
.h6_c01450{height:69.339192pt;}
.h11_c01450{height:69.341133pt;}
.hb_c01450{height:74.670400pt;}
.hd_c01450{height:80.004000pt;}
.h10_c01450{height:80.008999pt;}
.h12_c01450{height:85.336064pt;}
.h16_c01450{height:85.338496pt;}
.h15_c01450{height:90.672152pt;}
.hf_c01450{height:101.339464pt;}
.h5_c01450{height:128.000000pt;}
.h0_c01450{height:1111.866667pt;}
.h1_c01450{height:1112.000000pt;}
.w0_c01450{width:810.666667pt;}
.x0_c01450{left:0.000000pt;}
.x1_c01450{left:104.400000pt;}
.x3_c01450{left:107.280000pt;}
.x5_c01450{left:147.120000pt;}
.x4_c01450{left:148.800000pt;}
.x2_c01450{left:153.840000pt;}
.x95_c01450{left:182.160000pt;}
.x7d_c01450{left:185.145333pt;}
.x5d_c01450{left:186.784000pt;}
.x35_c01450{left:188.049333pt;}
.x29_c01450{left:189.254667pt;}
.xa7_c01450{left:190.214667pt;}
.x8_c01450{left:191.844000pt;}
.x6b_c01450{left:195.457333pt;}
.x17_c01450{left:198.864000pt;}
.x8b_c01450{left:230.001488pt;}
.x92_c01450{left:231.362823pt;}
.x7c_c01450{left:232.560864pt;}
.x4c_c01450{left:233.646373pt;}
.x44_c01450{left:235.071067pt;}
.x16_c01450{left:236.880000pt;}
.xf_c01450{left:238.229212pt;}
.xa0_c01450{left:248.564000pt;}
.x99_c01450{left:249.956000pt;}
.x36_c01450{left:255.008000pt;}
.x8c_c01450{left:259.757811pt;}
.x66_c01450{left:262.200747pt;}
.x45_c01450{left:265.337427pt;}
.xa8_c01450{left:266.766667pt;}
.x10_c01450{left:268.229820pt;}
.x93_c01450{left:270.244864pt;}
.x53_c01450{left:272.301005pt;}
.x2a_c01450{left:275.900000pt;}
.x18_c01450{left:276.866667pt;}
.x9a_c01450{left:278.754667pt;}
.x7e_c01450{left:280.673333pt;}
.x75_c01450{left:281.916896pt;}
.x4f_c01450{left:283.318667pt;}
.x3c_c01450{left:284.524000pt;}
.x9_c01450{left:288.104000pt;}
.x6c_c01450{left:290.516000pt;}
.x46_c01450{left:292.677147pt;}
.x37_c01450{left:293.649333pt;}
.x8d_c01450{left:298.912903pt;}
.x76_c01450{left:300.844597pt;}
.x27_c01450{left:304.320000pt;}
.xa1_c01450{left:306.170667pt;}
.x5e_c01450{left:311.584000pt;}
.x3d_c01450{left:313.325333pt;}
.x11_c01450{left:315.276871pt;}
.x6d_c01450{left:320.513333pt;}
.x5a_c01450{left:322.089469pt;}
.x20_c01450{left:324.870475pt;}
.x9b_c01450{left:327.748000pt;}
.x54_c01450{left:332.303659pt;}
.xa2_c01450{left:335.690667pt;}
.x94_c01450{left:338.409107pt;}
.x5f_c01450{left:341.348000pt;}
.x3e_c01450{left:343.086667pt;}
.x6_c01450{left:344.400000pt;}
.x9c_c01450{left:346.680000pt;}
.x6e_c01450{left:350.516000pt;}
.x38_c01450{left:352.937333pt;}
.xa9_c01450{left:355.338667pt;}
.x8e_c01450{left:357.690881pt;}
.x77_c01450{left:358.927669pt;}
.x55_c01450{left:361.844304pt;}
.x2b_c01450{left:362.782667pt;}
.x19_c01450{left:364.233333pt;}
.x7f_c01450{left:368.758667pt;}
.x84_c01450{left:377.907219pt;}
.x5b_c01450{left:379.932465pt;}
.x32_c01450{left:382.080000pt;}
.xa_c01450{left:385.065333pt;}
.x7_c01450{left:386.400000pt;}
.x56_c01450{left:388.944905pt;}
.x39_c01450{left:393.492000pt;}
.x12_c01450{left:394.966053pt;}
.x96_c01450{left:397.680000pt;}
.x60_c01450{left:399.908000pt;}
.x2c_c01450{left:402.625333pt;}
.x85_c01450{left:406.898516pt;}
.x47_c01450{left:411.025293pt;}
.x1a_c01450{left:413.429333pt;}
.x6f_c01450{left:418.458667pt;}
.x88_c01450{left:426.829333pt;}
.x78_c01450{left:427.813237pt;}
.x4d_c01450{left:430.438947pt;}
.x21_c01450{left:433.111808pt;}
.x97_c01450{left:434.640000pt;}
.x28_c01450{left:442.320000pt;}
.xb_c01450{left:444.100000pt;}
.x80_c01450{left:447.268000pt;}
.x3f_c01450{left:450.364000pt;}
.x70_c01450{left:456.380000pt;}
.x2d_c01450{left:461.206667pt;}
.x33_c01450{left:470.640000pt;}
.xaa_c01450{left:471.757333pt;}
.x98_c01450{left:473.760000pt;}
.x61_c01450{left:477.462667pt;}
.x3a_c01450{left:479.165333pt;}
.x13_c01450{left:481.630353pt;}
.x71_c01450{left:484.409333pt;}
.x67_c01450{left:486.880873pt;}
.x50_c01450{left:488.306667pt;}
.x34_c01450{left:490.080000pt;}
.xa3_c01450{left:492.165333pt;}
.x81_c01450{left:494.996000pt;}
.x22_c01450{left:499.826475pt;}
.xab_c01450{left:500.769333pt;}
.x48_c01450{left:507.982987pt;}
.x5c_c01450{left:515.780907pt;}
.x86_c01450{left:523.830416pt;}
.x79_c01450{left:524.790357pt;}
.x51_c01450{left:526.437333pt;}
.x2e_c01450{left:528.622667pt;}
.xc_c01450{left:530.982667pt;}
.x8f_c01450{left:534.100817pt;}
.x23_c01450{left:539.430475pt;}
.x89_c01450{left:542.993333pt;}
.x57_c01450{left:545.664352pt;}
.x4e_c01450{left:550.199880pt;}
.x87_c01450{left:552.619047pt;}
.x62_c01450{left:555.657333pt;}
.x3b_c01450{left:557.164000pt;}
.x1b_c01450{left:559.369333pt;}
.x7a_c01450{left:563.403072pt;}
.x40_c01450{left:566.286667pt;}
.x24_c01450{left:567.507808pt;}
.x14_c01450{left:579.051364pt;}
.x49_c01450{left:585.466213pt;}
.xa4_c01450{left:589.624000pt;}
.x68_c01450{left:593.171253pt;}
.x1c_c01450{left:597.994667pt;}
.x41_c01450{left:605.162667pt;}
.xac_c01450{left:608.800000pt;}
.x58_c01450{left:613.347181pt;}
.x82_c01450{left:620.508000pt;}
.x63_c01450{left:623.276000pt;}
.x2f_c01450{left:626.089333pt;}
.xa5_c01450{left:627.532000pt;}
.xd_c01450{left:628.470667pt;}
.x52_c01450{left:633.716000pt;}
.x1d_c01450{left:637.136000pt;}
.x9d_c01450{left:639.489333pt;}
.x25_c01450{left:646.251808pt;}
.xad_c01450{left:647.445333pt;}
.x72_c01450{left:650.305333pt;}
.x7b_c01450{left:651.750987pt;}
.xa6_c01450{left:655.853333pt;}
.x90_c01450{left:657.226167pt;}
.x8a_c01450{left:659.164000pt;}
.x64_c01450{left:661.005333pt;}
.xe_c01450{left:666.584000pt;}
.x9e_c01450{left:668.300000pt;}
.x73_c01450{left:670.441333pt;}
.x69_c01450{left:671.429287pt;}
.x4a_c01450{left:672.361333pt;}
.x42_c01450{left:673.810667pt;}
.x26_c01450{left:675.509141pt;}
.x30_c01450{left:684.396000pt;}
.x59_c01450{left:693.047608pt;}
.x1e_c01450{left:694.957333pt;}
.x6a_c01450{left:700.233673pt;}
.x15_c01450{left:705.786264pt;}
.x91_c01450{left:707.630724pt;}
.x74_c01450{left:710.550667pt;}
.x43_c01450{left:711.742667pt;}
.x31_c01450{left:714.154667pt;}
.x65_c01450{left:718.305333pt;}
.x1f_c01450{left:725.701333pt;}
.x9f_c01450{left:727.589333pt;}
.x83_c01450{left:729.765333pt;}
.x4b_c01450{left:731.887400pt;}
}





/* 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_c01451 {
    display:none;
  }
  .loading-indicator_c01451.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01451 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_c01451 { 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_c01451" -> "#page-container .classname_c01451")
 */
.pf_c01451 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01451 { /* 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_c01451.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01451 { /* 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_c01451 { /* 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_c01451 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01451 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01451 {overflow:visible;}
  }
}
.c_c01451 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01451 { /* 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_c01451:after { /* webkit #35443 */
  content: '';
}
.t_c01451:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01451 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 */
}
.__c01451 { /* 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_c01451 { /* info for Javascript */
  display:none;
}
.l_c01451 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01451 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01451 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01451: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_c01451 {
    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_c01451.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01451.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_c01451 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01451{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01451;src:url('chunks/assets/font_bfc335e41cabd1bcac555906.woff2')format("woff");}.ff1_c01451{font-family:ff1_c01451;line-height:1.000000;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;}
.m6_c01451{transform:matrix(0.117455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117455,0.000000,0.000000,0.250000,0,0);}
.m5_c01451{transform:matrix(0.146245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146245,0.000000,0.000000,0.250000,0,0);}
.m4_c01451{transform:matrix(0.151215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151215,0.000000,0.000000,0.250000,0,0);}
.m3_c01451{transform:matrix(0.176410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176410,0.000000,0.000000,0.250000,0,0);}
.m8_c01451{transform:matrix(0.196865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196865,0.000000,0.000000,0.250000,0,0);}
.m1_c01451{transform:matrix(0.253030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253030,0.000000,0.000000,0.250000,0,0);}
.m0_c01451{transform:matrix(0.276135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276135,0.000000,0.000000,0.250000,0,0);}
.m9_c01451{transform:matrix(0.381025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381025,0.000000,0.000000,0.250000,0,0);}
.ma_c01451{transform:matrix(0.782305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.782305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.782305,0.000000,0.000000,0.250000,0,0);}
.m2_c01451{transform:matrix(1.261805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.261805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.261805,0.000000,0.000000,0.250000,0,0);}
.m7_c01451{transform:matrix(1.479920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.479920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.479920,0.000000,0.000000,0.250000,0,0);}
.v0_c01451{vertical-align:0.000000px;}
.ls0_c01451{letter-spacing:0.000000px;}
.sc__c01451{text-shadow:none;}
.sc0_c01451{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__c01451{-webkit-text-stroke:0px transparent;}
.sc0_c01451{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01451{word-spacing:0.000000px;}
.fc0_c01451{color:transparent;}
.fs1_c01451{font-size:18.000000px;}
.fs3_c01451{font-size:24.000000px;}
.fs0_c01451{font-size:36.000000px;}
.fs2_c01451{font-size:150.000000px;}
.y0_c01451{bottom:0.000000px;}
.y5_c01451{bottom:809.190000px;}
.y4_c01451{bottom:841.590000px;}
.y3_c01451{bottom:858.600000px;}
.y2_c01451{bottom:913.950000px;}
.y1_c01451{bottom:1108.752000px;}
.h3_c01451{height:18.000000px;}
.h5_c01451{height:24.000000px;}
.h2_c01451{height:36.000000px;}
.h4_c01451{height:150.000000px;}
.h0_c01451{height:1250.850000px;}
.h1_c01451{height:1251.000000px;}
.w0_c01451{width:912.000000px;}
.x0_c01451{left:0.000000px;}
.x1_c01451{left:424.980000px;}
.x2_c01451{left:439.290000px;}
.x3_c01451{left:477.900000px;}
.x4_c01451{left:499.770000px;}
.x5_c01451{left:541.890000px;}
@media print{
.v0_c01451{vertical-align:0.000000pt;}
.ls0_c01451{letter-spacing:0.000000pt;}
.ws0_c01451{word-spacing:0.000000pt;}
.fs1_c01451{font-size:16.000000pt;}
.fs3_c01451{font-size:21.333333pt;}
.fs0_c01451{font-size:32.000000pt;}
.fs2_c01451{font-size:133.333333pt;}
.y0_c01451{bottom:0.000000pt;}
.y5_c01451{bottom:719.280000pt;}
.y4_c01451{bottom:748.080000pt;}
.y3_c01451{bottom:763.200000pt;}
.y2_c01451{bottom:812.400000pt;}
.y1_c01451{bottom:985.557333pt;}
.h3_c01451{height:16.000000pt;}
.h5_c01451{height:21.333333pt;}
.h2_c01451{height:32.000000pt;}
.h4_c01451{height:133.333333pt;}
.h0_c01451{height:1111.866667pt;}
.h1_c01451{height:1112.000000pt;}
.w0_c01451{width:810.666667pt;}
.x0_c01451{left:0.000000pt;}
.x1_c01451{left:377.760000pt;}
.x2_c01451{left:390.480000pt;}
.x3_c01451{left:424.800000pt;}
.x4_c01451{left:444.240000pt;}
.x5_c01451{left:481.680000pt;}
}





/* 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_c01452 {
    display:none;
  }
  .loading-indicator_c01452.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01452 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_c01452 { 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_c01452" -> "#page-container .classname_c01452")
 */
.pf_c01452 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01452 { /* 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_c01452.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01452 { /* 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_c01452 { /* 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_c01452 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01452 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01452 {overflow:visible;}
  }
}
.c_c01452 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01452 { /* 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_c01452:after { /* webkit #35443 */
  content: '';
}
.t_c01452:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01452 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 */
}
.__c01452 { /* 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_c01452 { /* info for Javascript */
  display:none;
}
.l_c01452 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01452 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01452 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01452: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_c01452 {
    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_c01452.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01452.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_c01452 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01452{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01452;src:url('chunks/assets/font_b11a17f404e7258299fdf971.woff2')format("woff");}.ff1_c01452{font-family:ff1_c01452;line-height:1.000000;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;}
.m1b_c01452{transform:matrix(0.011860,-0.000071,0.001500,0.249996,0,0);-ms-transform:matrix(0.011860,-0.000071,0.001500,0.249996,0,0);-webkit-transform:matrix(0.011860,-0.000071,0.001500,0.249996,0,0);}
.ma_c01452{transform:matrix(0.017310,-0.000104,0.001500,0.249996,0,0);-ms-transform:matrix(0.017310,-0.000104,0.001500,0.249996,0,0);-webkit-transform:matrix(0.017310,-0.000104,0.001500,0.249996,0,0);}
.m2a_c01452{transform:matrix(0.080319,-0.000482,0.001500,0.249996,0,0);-ms-transform:matrix(0.080319,-0.000482,0.001500,0.249996,0,0);-webkit-transform:matrix(0.080319,-0.000482,0.001500,0.249996,0,0);}
.m4c_c01452{transform:matrix(0.083458,-0.000501,0.001500,0.249996,0,0);-ms-transform:matrix(0.083458,-0.000501,0.001500,0.249996,0,0);-webkit-transform:matrix(0.083458,-0.000501,0.001500,0.249996,0,0);}
.m84_c01452{transform:matrix(0.107998,-0.000648,0.001500,0.249996,0,0);-ms-transform:matrix(0.107998,-0.000648,0.001500,0.249996,0,0);-webkit-transform:matrix(0.107998,-0.000648,0.001500,0.249996,0,0);}
.m0_c01452{transform:matrix(0.110030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110030,0.000000,0.000000,0.250000,0,0);}
.m2b_c01452{transform:matrix(0.110108,-0.000661,0.001500,0.249996,0,0);-ms-transform:matrix(0.110108,-0.000661,0.001500,0.249996,0,0);-webkit-transform:matrix(0.110108,-0.000661,0.001500,0.249996,0,0);}
.m4d_c01452{transform:matrix(0.111983,-0.000672,0.001500,0.249996,0,0);-ms-transform:matrix(0.111983,-0.000672,0.001500,0.249996,0,0);-webkit-transform:matrix(0.111983,-0.000672,0.001500,0.249996,0,0);}
.m24_c01452{transform:matrix(0.114863,-0.000689,0.001500,0.249996,0,0);-ms-transform:matrix(0.114863,-0.000689,0.001500,0.249996,0,0);-webkit-transform:matrix(0.114863,-0.000689,0.001500,0.249996,0,0);}
.mc1_c01452{transform:matrix(0.127280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127280,0.000000,0.000000,0.250000,0,0);}
.md4_c01452{transform:matrix(0.129730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129730,0.000000,0.000000,0.250000,0,0);}
.mb2_c01452{transform:matrix(0.135705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135705,0.000000,0.000000,0.250000,0,0);}
.m83_c01452{transform:matrix(0.139707,-0.000838,0.001500,0.249996,0,0);-ms-transform:matrix(0.139707,-0.000838,0.001500,0.249996,0,0);-webkit-transform:matrix(0.139707,-0.000838,0.001500,0.249996,0,0);}
.me_c01452{transform:matrix(0.143122,-0.000859,0.001500,0.249996,0,0);-ms-transform:matrix(0.143122,-0.000859,0.001500,0.249996,0,0);-webkit-transform:matrix(0.143122,-0.000859,0.001500,0.249996,0,0);}
.mcb_c01452{transform:matrix(0.146060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146060,0.000000,0.000000,0.250000,0,0);}
.m36_c01452{transform:matrix(0.148582,-0.000891,0.001500,0.249996,0,0);-ms-transform:matrix(0.148582,-0.000891,0.001500,0.249996,0,0);-webkit-transform:matrix(0.148582,-0.000891,0.001500,0.249996,0,0);}
.m8e_c01452{transform:matrix(0.150792,-0.000905,0.001500,0.249996,0,0);-ms-transform:matrix(0.150792,-0.000905,0.001500,0.249996,0,0);-webkit-transform:matrix(0.150792,-0.000905,0.001500,0.249996,0,0);}
.m62_c01452{transform:matrix(0.151352,-0.000908,0.001500,0.249996,0,0);-ms-transform:matrix(0.151352,-0.000908,0.001500,0.249996,0,0);-webkit-transform:matrix(0.151352,-0.000908,0.001500,0.249996,0,0);}
.m71_c01452{transform:matrix(0.152702,-0.000916,0.001500,0.249996,0,0);-ms-transform:matrix(0.152702,-0.000916,0.001500,0.249996,0,0);-webkit-transform:matrix(0.152702,-0.000916,0.001500,0.249996,0,0);}
.m6c_c01452{transform:matrix(0.156517,-0.000939,0.001500,0.249996,0,0);-ms-transform:matrix(0.156517,-0.000939,0.001500,0.249996,0,0);-webkit-transform:matrix(0.156517,-0.000939,0.001500,0.249996,0,0);}
.m25_c01452{transform:matrix(0.156777,-0.000941,0.001500,0.249996,0,0);-ms-transform:matrix(0.156777,-0.000941,0.001500,0.249996,0,0);-webkit-transform:matrix(0.156777,-0.000941,0.001500,0.249996,0,0);}
.m72_c01452{transform:matrix(0.157767,-0.000947,0.001500,0.249996,0,0);-ms-transform:matrix(0.157767,-0.000947,0.001500,0.249996,0,0);-webkit-transform:matrix(0.157767,-0.000947,0.001500,0.249996,0,0);}
.m2c_c01452{transform:matrix(0.160177,-0.000961,0.001500,0.249996,0,0);-ms-transform:matrix(0.160177,-0.000961,0.001500,0.249996,0,0);-webkit-transform:matrix(0.160177,-0.000961,0.001500,0.249996,0,0);}
.mab_c01452{transform:matrix(0.161245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161245,0.000000,0.000000,0.250000,0,0);}
.m32_c01452{transform:matrix(0.161682,-0.000970,0.001500,0.249996,0,0);-ms-transform:matrix(0.161682,-0.000970,0.001500,0.249996,0,0);-webkit-transform:matrix(0.161682,-0.000970,0.001500,0.249996,0,0);}
.m2e_c01452{transform:matrix(0.163442,-0.000981,0.001500,0.249996,0,0);-ms-transform:matrix(0.163442,-0.000981,0.001500,0.249996,0,0);-webkit-transform:matrix(0.163442,-0.000981,0.001500,0.249996,0,0);}
.m33_c01452{transform:matrix(0.165087,-0.000991,0.001500,0.249996,0,0);-ms-transform:matrix(0.165087,-0.000991,0.001500,0.249996,0,0);-webkit-transform:matrix(0.165087,-0.000991,0.001500,0.249996,0,0);}
.me1_c01452{transform:matrix(0.165821,-0.001161,0.001750,0.249994,0,0);-ms-transform:matrix(0.165821,-0.001161,0.001750,0.249994,0,0);-webkit-transform:matrix(0.165821,-0.001161,0.001750,0.249994,0,0);}
.ma7_c01452{transform:matrix(0.166287,-0.000998,0.001500,0.249996,0,0);-ms-transform:matrix(0.166287,-0.000998,0.001500,0.249996,0,0);-webkit-transform:matrix(0.166287,-0.000998,0.001500,0.249996,0,0);}
.m51_c01452{transform:matrix(0.166567,-0.000999,0.001500,0.249996,0,0);-ms-transform:matrix(0.166567,-0.000999,0.001500,0.249996,0,0);-webkit-transform:matrix(0.166567,-0.000999,0.001500,0.249996,0,0);}
.m30_c01452{transform:matrix(0.166937,-0.001002,0.001500,0.249996,0,0);-ms-transform:matrix(0.166937,-0.001002,0.001500,0.249996,0,0);-webkit-transform:matrix(0.166937,-0.001002,0.001500,0.249996,0,0);}
.m54_c01452{transform:matrix(0.167567,-0.001005,0.001500,0.249996,0,0);-ms-transform:matrix(0.167567,-0.001005,0.001500,0.249996,0,0);-webkit-transform:matrix(0.167567,-0.001005,0.001500,0.249996,0,0);}
.m4e_c01452{transform:matrix(0.169817,-0.001019,0.001500,0.249996,0,0);-ms-transform:matrix(0.169817,-0.001019,0.001500,0.249996,0,0);-webkit-transform:matrix(0.169817,-0.001019,0.001500,0.249996,0,0);}
.mbc_c01452{transform:matrix(0.170020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170020,0.000000,0.000000,0.250000,0,0);}
.m50_c01452{transform:matrix(0.170392,-0.001022,0.001500,0.249996,0,0);-ms-transform:matrix(0.170392,-0.001022,0.001500,0.249996,0,0);-webkit-transform:matrix(0.170392,-0.001022,0.001500,0.249996,0,0);}
.m56_c01452{transform:matrix(0.173622,-0.001042,0.001500,0.249996,0,0);-ms-transform:matrix(0.173622,-0.001042,0.001500,0.249996,0,0);-webkit-transform:matrix(0.173622,-0.001042,0.001500,0.249996,0,0);}
.m4f_c01452{transform:matrix(0.175197,-0.001051,0.001500,0.249996,0,0);-ms-transform:matrix(0.175197,-0.001051,0.001500,0.249996,0,0);-webkit-transform:matrix(0.175197,-0.001051,0.001500,0.249996,0,0);}
.m52_c01452{transform:matrix(0.177442,-0.001065,0.001500,0.249996,0,0);-ms-transform:matrix(0.177442,-0.001065,0.001500,0.249996,0,0);-webkit-transform:matrix(0.177442,-0.001065,0.001500,0.249996,0,0);}
.m31_c01452{transform:matrix(0.177862,-0.001067,0.001500,0.249996,0,0);-ms-transform:matrix(0.177862,-0.001067,0.001500,0.249996,0,0);-webkit-transform:matrix(0.177862,-0.001067,0.001500,0.249996,0,0);}
.m12_c01452{transform:matrix(0.179122,-0.001075,0.001500,0.249996,0,0);-ms-transform:matrix(0.179122,-0.001075,0.001500,0.249996,0,0);-webkit-transform:matrix(0.179122,-0.001075,0.001500,0.249996,0,0);}
.m2d_c01452{transform:matrix(0.181067,-0.001086,0.001500,0.249996,0,0);-ms-transform:matrix(0.181067,-0.001086,0.001500,0.249996,0,0);-webkit-transform:matrix(0.181067,-0.001086,0.001500,0.249996,0,0);}
.m74_c01452{transform:matrix(0.182712,-0.001096,0.001500,0.249996,0,0);-ms-transform:matrix(0.182712,-0.001096,0.001500,0.249996,0,0);-webkit-transform:matrix(0.182712,-0.001096,0.001500,0.249996,0,0);}
.mb3_c01452{transform:matrix(0.183050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183050,0.000000,0.000000,0.250000,0,0);}
.m53_c01452{transform:matrix(0.185612,-0.001114,0.001500,0.249996,0,0);-ms-transform:matrix(0.185612,-0.001114,0.001500,0.249996,0,0);-webkit-transform:matrix(0.185612,-0.001114,0.001500,0.249996,0,0);}
.mf_c01452{transform:matrix(0.189692,-0.001138,0.001500,0.249996,0,0);-ms-transform:matrix(0.189692,-0.001138,0.001500,0.249996,0,0);-webkit-transform:matrix(0.189692,-0.001138,0.001500,0.249996,0,0);}
.m6e_c01452{transform:matrix(0.190587,-0.001144,0.001500,0.249996,0,0);-ms-transform:matrix(0.190587,-0.001144,0.001500,0.249996,0,0);-webkit-transform:matrix(0.190587,-0.001144,0.001500,0.249996,0,0);}
.md9_c01452{transform:matrix(0.191410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191410,0.000000,0.000000,0.250000,0,0);}
.m73_c01452{transform:matrix(0.191477,-0.001149,0.001500,0.249996,0,0);-ms-transform:matrix(0.191477,-0.001149,0.001500,0.249996,0,0);-webkit-transform:matrix(0.191477,-0.001149,0.001500,0.249996,0,0);}
.m63_c01452{transform:matrix(0.192237,-0.001153,0.001500,0.249996,0,0);-ms-transform:matrix(0.192237,-0.001153,0.001500,0.249996,0,0);-webkit-transform:matrix(0.192237,-0.001153,0.001500,0.249996,0,0);}
.m4a_c01452{transform:matrix(0.194067,-0.001164,0.001500,0.249996,0,0);-ms-transform:matrix(0.194067,-0.001164,0.001500,0.249996,0,0);-webkit-transform:matrix(0.194067,-0.001164,0.001500,0.249996,0,0);}
.mdc_c01452{transform:matrix(0.194940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194940,0.000000,0.000000,0.250000,0,0);}
.mc4_c01452{transform:matrix(0.194960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194960,0.000000,0.000000,0.250000,0,0);}
.m37_c01452{transform:matrix(0.194996,-0.001170,0.001500,0.249996,0,0);-ms-transform:matrix(0.194996,-0.001170,0.001500,0.249996,0,0);-webkit-transform:matrix(0.194996,-0.001170,0.001500,0.249996,0,0);}
.mb4_c01452{transform:matrix(0.196020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196020,0.000000,0.000000,0.250000,0,0);}
.m70_c01452{transform:matrix(0.196191,-0.001177,0.001500,0.249996,0,0);-ms-transform:matrix(0.196191,-0.001177,0.001500,0.249996,0,0);-webkit-transform:matrix(0.196191,-0.001177,0.001500,0.249996,0,0);}
.m75_c01452{transform:matrix(0.197306,-0.001184,0.001500,0.249996,0,0);-ms-transform:matrix(0.197306,-0.001184,0.001500,0.249996,0,0);-webkit-transform:matrix(0.197306,-0.001184,0.001500,0.249996,0,0);}
.md7_c01452{transform:matrix(0.197785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197785,0.000000,0.000000,0.250000,0,0);}
.mbd_c01452{transform:matrix(0.197800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197800,0.000000,0.000000,0.250000,0,0);}
.ma0_c01452{transform:matrix(0.199621,-0.001198,0.001500,0.249996,0,0);-ms-transform:matrix(0.199621,-0.001198,0.001500,0.249996,0,0);-webkit-transform:matrix(0.199621,-0.001198,0.001500,0.249996,0,0);}
.mcc_c01452{transform:matrix(0.201555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201555,0.000000,0.000000,0.250000,0,0);}
.m9a_c01452{transform:matrix(0.202286,-0.001214,0.001500,0.249996,0,0);-ms-transform:matrix(0.202286,-0.001214,0.001500,0.249996,0,0);-webkit-transform:matrix(0.202286,-0.001214,0.001500,0.249996,0,0);}
.m6f_c01452{transform:matrix(0.202501,-0.001215,0.001500,0.249996,0,0);-ms-transform:matrix(0.202501,-0.001215,0.001500,0.249996,0,0);-webkit-transform:matrix(0.202501,-0.001215,0.001500,0.249996,0,0);}
.m89_c01452{transform:matrix(0.203311,-0.001220,0.001500,0.249996,0,0);-ms-transform:matrix(0.203311,-0.001220,0.001500,0.249996,0,0);-webkit-transform:matrix(0.203311,-0.001220,0.001500,0.249996,0,0);}
.mda_c01452{transform:matrix(0.204305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204305,0.000000,0.000000,0.250000,0,0);}
.m9e_c01452{transform:matrix(0.204811,-0.001229,0.001500,0.249996,0,0);-ms-transform:matrix(0.204811,-0.001229,0.001500,0.249996,0,0);-webkit-transform:matrix(0.204811,-0.001229,0.001500,0.249996,0,0);}
.maa_c01452{transform:matrix(0.204840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204840,0.000000,0.000000,0.250000,0,0);}
.me4_c01452{transform:matrix(0.205885,-0.001441,0.001750,0.249994,0,0);-ms-transform:matrix(0.205885,-0.001441,0.001750,0.249994,0,0);-webkit-transform:matrix(0.205885,-0.001441,0.001750,0.249994,0,0);}
.mae_c01452{transform:matrix(0.206230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206230,0.000000,0.000000,0.250000,0,0);}
.m44_c01452{transform:matrix(0.208506,-0.001251,0.001500,0.249996,0,0);-ms-transform:matrix(0.208506,-0.001251,0.001500,0.249996,0,0);-webkit-transform:matrix(0.208506,-0.001251,0.001500,0.249996,0,0);}
.m4_c01452{transform:matrix(0.209296,-0.001256,0.001500,0.249996,0,0);-ms-transform:matrix(0.209296,-0.001256,0.001500,0.249996,0,0);-webkit-transform:matrix(0.209296,-0.001256,0.001500,0.249996,0,0);}
.mb1_c01452{transform:matrix(0.209350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209350,0.000000,0.000000,0.250000,0,0);}
.md_c01452{transform:matrix(0.209931,-0.001260,0.001500,0.249996,0,0);-ms-transform:matrix(0.209931,-0.001260,0.001500,0.249996,0,0);-webkit-transform:matrix(0.209931,-0.001260,0.001500,0.249996,0,0);}
.mb7_c01452{transform:matrix(0.210295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210295,0.000000,0.000000,0.250000,0,0);}
.m34_c01452{transform:matrix(0.210581,-0.001263,0.001500,0.249996,0,0);-ms-transform:matrix(0.210581,-0.001263,0.001500,0.249996,0,0);-webkit-transform:matrix(0.210581,-0.001263,0.001500,0.249996,0,0);}
.m47_c01452{transform:matrix(0.210606,-0.001264,0.001500,0.249996,0,0);-ms-transform:matrix(0.210606,-0.001264,0.001500,0.249996,0,0);-webkit-transform:matrix(0.210606,-0.001264,0.001500,0.249996,0,0);}
.m55_c01452{transform:matrix(0.210791,-0.001265,0.001500,0.249996,0,0);-ms-transform:matrix(0.210791,-0.001265,0.001500,0.249996,0,0);-webkit-transform:matrix(0.210791,-0.001265,0.001500,0.249996,0,0);}
.m9_c01452{transform:matrix(0.211211,-0.001267,0.001500,0.249996,0,0);-ms-transform:matrix(0.211211,-0.001267,0.001500,0.249996,0,0);-webkit-transform:matrix(0.211211,-0.001267,0.001500,0.249996,0,0);}
.mb0_c01452{transform:matrix(0.212285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212285,0.000000,0.000000,0.250000,0,0);}
.mb6_c01452{transform:matrix(0.212670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212670,0.000000,0.000000,0.250000,0,0);}
.m43_c01452{transform:matrix(0.213131,-0.001279,0.001500,0.249996,0,0);-ms-transform:matrix(0.213131,-0.001279,0.001500,0.249996,0,0);-webkit-transform:matrix(0.213131,-0.001279,0.001500,0.249996,0,0);}
.mad_c01452{transform:matrix(0.213225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213225,0.000000,0.000000,0.250000,0,0);}
.me3_c01452{transform:matrix(0.214135,-0.001499,0.001750,0.249994,0,0);-ms-transform:matrix(0.214135,-0.001499,0.001750,0.249994,0,0);-webkit-transform:matrix(0.214135,-0.001499,0.001750,0.249994,0,0);}
.mb5_c01452{transform:matrix(0.214930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214930,0.000000,0.000000,0.250000,0,0);}
.m99_c01452{transform:matrix(0.215056,-0.001290,0.001500,0.249996,0,0);-ms-transform:matrix(0.215056,-0.001290,0.001500,0.249996,0,0);-webkit-transform:matrix(0.215056,-0.001290,0.001500,0.249996,0,0);}
.maf_c01452{transform:matrix(0.218920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218920,0.000000,0.000000,0.250000,0,0);}
.m87_c01452{transform:matrix(0.218921,-0.001314,0.001500,0.249996,0,0);-ms-transform:matrix(0.218921,-0.001314,0.001500,0.249996,0,0);-webkit-transform:matrix(0.218921,-0.001314,0.001500,0.249996,0,0);}
.m49_c01452{transform:matrix(0.219531,-0.001317,0.001500,0.249996,0,0);-ms-transform:matrix(0.219531,-0.001317,0.001500,0.249996,0,0);-webkit-transform:matrix(0.219531,-0.001317,0.001500,0.249996,0,0);}
.mac_c01452{transform:matrix(0.220465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220465,0.000000,0.000000,0.250000,0,0);}
.m15_c01452{transform:matrix(0.220591,-0.001324,0.001500,0.249996,0,0);-ms-transform:matrix(0.220591,-0.001324,0.001500,0.249996,0,0);-webkit-transform:matrix(0.220591,-0.001324,0.001500,0.249996,0,0);}
.md8_c01452{transform:matrix(0.220815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220815,0.000000,0.000000,0.250000,0,0);}
.mdb_c01452{transform:matrix(0.221300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221300,0.000000,0.000000,0.250000,0,0);}
.m18_c01452{transform:matrix(0.222486,-0.001335,0.001500,0.249996,0,0);-ms-transform:matrix(0.222486,-0.001335,0.001500,0.249996,0,0);-webkit-transform:matrix(0.222486,-0.001335,0.001500,0.249996,0,0);}
.m41_c01452{transform:matrix(0.222936,-0.001338,0.001500,0.249996,0,0);-ms-transform:matrix(0.222936,-0.001338,0.001500,0.249996,0,0);-webkit-transform:matrix(0.222936,-0.001338,0.001500,0.249996,0,0);}
.m7_c01452{transform:matrix(0.223376,-0.001340,0.001500,0.249996,0,0);-ms-transform:matrix(0.223376,-0.001340,0.001500,0.249996,0,0);-webkit-transform:matrix(0.223376,-0.001340,0.001500,0.249996,0,0);}
.m27_c01452{transform:matrix(0.223906,-0.001343,0.001500,0.249996,0,0);-ms-transform:matrix(0.223906,-0.001343,0.001500,0.249996,0,0);-webkit-transform:matrix(0.223906,-0.001343,0.001500,0.249996,0,0);}
.mde_c01452{transform:matrix(0.224125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224125,0.000000,0.000000,0.250000,0,0);}
.m5_c01452{transform:matrix(0.224906,-0.001349,0.001500,0.249996,0,0);-ms-transform:matrix(0.224906,-0.001349,0.001500,0.249996,0,0);-webkit-transform:matrix(0.224906,-0.001349,0.001500,0.249996,0,0);}
.m77_c01452{transform:matrix(0.225341,-0.001352,0.001500,0.249996,0,0);-ms-transform:matrix(0.225341,-0.001352,0.001500,0.249996,0,0);-webkit-transform:matrix(0.225341,-0.001352,0.001500,0.249996,0,0);}
.mdf_c01452{transform:matrix(0.225699,-0.001580,0.001750,0.249994,0,0);-ms-transform:matrix(0.225699,-0.001580,0.001750,0.249994,0,0);-webkit-transform:matrix(0.225699,-0.001580,0.001750,0.249994,0,0);}
.m29_c01452{transform:matrix(0.226046,-0.001356,0.001500,0.249996,0,0);-ms-transform:matrix(0.226046,-0.001356,0.001500,0.249996,0,0);-webkit-transform:matrix(0.226046,-0.001356,0.001500,0.249996,0,0);}
.m22_c01452{transform:matrix(0.226061,-0.001356,0.001500,0.249996,0,0);-ms-transform:matrix(0.226061,-0.001356,0.001500,0.249996,0,0);-webkit-transform:matrix(0.226061,-0.001356,0.001500,0.249996,0,0);}
.mdd_c01452{transform:matrix(0.228010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228010,0.000000,0.000000,0.250000,0,0);}
.m6a_c01452{transform:matrix(0.228811,-0.001373,0.001500,0.249996,0,0);-ms-transform:matrix(0.228811,-0.001373,0.001500,0.249996,0,0);-webkit-transform:matrix(0.228811,-0.001373,0.001500,0.249996,0,0);}
.mb_c01452{transform:matrix(0.228856,-0.001373,0.001500,0.249996,0,0);-ms-transform:matrix(0.228856,-0.001373,0.001500,0.249996,0,0);-webkit-transform:matrix(0.228856,-0.001373,0.001500,0.249996,0,0);}
.m8d_c01452{transform:matrix(0.229926,-0.001380,0.001500,0.249996,0,0);-ms-transform:matrix(0.229926,-0.001380,0.001500,0.249996,0,0);-webkit-transform:matrix(0.229926,-0.001380,0.001500,0.249996,0,0);}
.m59_c01452{transform:matrix(0.230211,-0.001381,0.001500,0.249996,0,0);-ms-transform:matrix(0.230211,-0.001381,0.001500,0.249996,0,0);-webkit-transform:matrix(0.230211,-0.001381,0.001500,0.249996,0,0);}
.m86_c01452{transform:matrix(0.230546,-0.001383,0.001500,0.249996,0,0);-ms-transform:matrix(0.230546,-0.001383,0.001500,0.249996,0,0);-webkit-transform:matrix(0.230546,-0.001383,0.001500,0.249996,0,0);}
.m11_c01452{transform:matrix(0.230556,-0.001383,0.001500,0.249996,0,0);-ms-transform:matrix(0.230556,-0.001383,0.001500,0.249996,0,0);-webkit-transform:matrix(0.230556,-0.001383,0.001500,0.249996,0,0);}
.m7e_c01452{transform:matrix(0.230891,-0.001385,0.001500,0.249996,0,0);-ms-transform:matrix(0.230891,-0.001385,0.001500,0.249996,0,0);-webkit-transform:matrix(0.230891,-0.001385,0.001500,0.249996,0,0);}
.md5_c01452{transform:matrix(0.231430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231430,0.000000,0.000000,0.250000,0,0);}
.m6_c01452{transform:matrix(0.231626,-0.001390,0.001500,0.249996,0,0);-ms-transform:matrix(0.231626,-0.001390,0.001500,0.249996,0,0);-webkit-transform:matrix(0.231626,-0.001390,0.001500,0.249996,0,0);}
.md6_c01452{transform:matrix(0.231840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231840,0.000000,0.000000,0.250000,0,0);}
.m16_c01452{transform:matrix(0.232371,-0.001394,0.001500,0.249996,0,0);-ms-transform:matrix(0.232371,-0.001394,0.001500,0.249996,0,0);-webkit-transform:matrix(0.232371,-0.001394,0.001500,0.249996,0,0);}
.md1_c01452{transform:matrix(0.232985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232985,0.000000,0.000000,0.250000,0,0);}
.mba_c01452{transform:matrix(0.234225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234225,0.000000,0.000000,0.250000,0,0);}
.me5_c01452{transform:matrix(0.234754,-0.001643,0.001750,0.249994,0,0);-ms-transform:matrix(0.234754,-0.001643,0.001750,0.249994,0,0);-webkit-transform:matrix(0.234754,-0.001643,0.001750,0.249994,0,0);}
.m67_c01452{transform:matrix(0.235626,-0.001414,0.001500,0.249996,0,0);-ms-transform:matrix(0.235626,-0.001414,0.001500,0.249996,0,0);-webkit-transform:matrix(0.235626,-0.001414,0.001500,0.249996,0,0);}
.m94_c01452{transform:matrix(0.236461,-0.001419,0.001500,0.249996,0,0);-ms-transform:matrix(0.236461,-0.001419,0.001500,0.249996,0,0);-webkit-transform:matrix(0.236461,-0.001419,0.001500,0.249996,0,0);}
.m1a_c01452{transform:matrix(0.236696,-0.001420,0.001500,0.249996,0,0);-ms-transform:matrix(0.236696,-0.001420,0.001500,0.249996,0,0);-webkit-transform:matrix(0.236696,-0.001420,0.001500,0.249996,0,0);}
.m9b_c01452{transform:matrix(0.237706,-0.001426,0.001500,0.249996,0,0);-ms-transform:matrix(0.237706,-0.001426,0.001500,0.249996,0,0);-webkit-transform:matrix(0.237706,-0.001426,0.001500,0.249996,0,0);}
.m8b_c01452{transform:matrix(0.238531,-0.001431,0.001500,0.249996,0,0);-ms-transform:matrix(0.238531,-0.001431,0.001500,0.249996,0,0);-webkit-transform:matrix(0.238531,-0.001431,0.001500,0.249996,0,0);}
.m42_c01452{transform:matrix(0.238846,-0.001433,0.001500,0.249996,0,0);-ms-transform:matrix(0.238846,-0.001433,0.001500,0.249996,0,0);-webkit-transform:matrix(0.238846,-0.001433,0.001500,0.249996,0,0);}
.m3c_c01452{transform:matrix(0.238976,-0.001434,0.001500,0.249996,0,0);-ms-transform:matrix(0.238976,-0.001434,0.001500,0.249996,0,0);-webkit-transform:matrix(0.238976,-0.001434,0.001500,0.249996,0,0);}
.m68_c01452{transform:matrix(0.239291,-0.001436,0.001500,0.249996,0,0);-ms-transform:matrix(0.239291,-0.001436,0.001500,0.249996,0,0);-webkit-transform:matrix(0.239291,-0.001436,0.001500,0.249996,0,0);}
.m93_c01452{transform:matrix(0.240666,-0.001444,0.001500,0.249996,0,0);-ms-transform:matrix(0.240666,-0.001444,0.001500,0.249996,0,0);-webkit-transform:matrix(0.240666,-0.001444,0.001500,0.249996,0,0);}
.m9d_c01452{transform:matrix(0.240961,-0.001446,0.001500,0.249996,0,0);-ms-transform:matrix(0.240961,-0.001446,0.001500,0.249996,0,0);-webkit-transform:matrix(0.240961,-0.001446,0.001500,0.249996,0,0);}
.m20_c01452{transform:matrix(0.241991,-0.001452,0.001500,0.249996,0,0);-ms-transform:matrix(0.241991,-0.001452,0.001500,0.249996,0,0);-webkit-transform:matrix(0.241991,-0.001452,0.001500,0.249996,0,0);}
.m17_c01452{transform:matrix(0.242866,-0.001457,0.001500,0.249996,0,0);-ms-transform:matrix(0.242866,-0.001457,0.001500,0.249996,0,0);-webkit-transform:matrix(0.242866,-0.001457,0.001500,0.249996,0,0);}
.m1d_c01452{transform:matrix(0.245011,-0.001470,0.001500,0.249996,0,0);-ms-transform:matrix(0.245011,-0.001470,0.001500,0.249996,0,0);-webkit-transform:matrix(0.245011,-0.001470,0.001500,0.249996,0,0);}
.ma4_c01452{transform:matrix(0.245211,-0.001471,0.001500,0.249996,0,0);-ms-transform:matrix(0.245211,-0.001471,0.001500,0.249996,0,0);-webkit-transform:matrix(0.245211,-0.001471,0.001500,0.249996,0,0);}
.md2_c01452{transform:matrix(0.245460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245460,0.000000,0.000000,0.250000,0,0);}
.m8a_c01452{transform:matrix(0.245546,-0.001473,0.001500,0.249996,0,0);-ms-transform:matrix(0.245546,-0.001473,0.001500,0.249996,0,0);-webkit-transform:matrix(0.245546,-0.001473,0.001500,0.249996,0,0);}
.ma6_c01452{transform:matrix(0.246656,-0.001480,0.001500,0.249996,0,0);-ms-transform:matrix(0.246656,-0.001480,0.001500,0.249996,0,0);-webkit-transform:matrix(0.246656,-0.001480,0.001500,0.249996,0,0);}
.m3f_c01452{transform:matrix(0.246726,-0.001480,0.001500,0.249996,0,0);-ms-transform:matrix(0.246726,-0.001480,0.001500,0.249996,0,0);-webkit-transform:matrix(0.246726,-0.001480,0.001500,0.249996,0,0);}
.mc_c01452{transform:matrix(0.246831,-0.001481,0.001500,0.249996,0,0);-ms-transform:matrix(0.246831,-0.001481,0.001500,0.249996,0,0);-webkit-transform:matrix(0.246831,-0.001481,0.001500,0.249996,0,0);}
.m9c_c01452{transform:matrix(0.247306,-0.001484,0.001500,0.249996,0,0);-ms-transform:matrix(0.247306,-0.001484,0.001500,0.249996,0,0);-webkit-transform:matrix(0.247306,-0.001484,0.001500,0.249996,0,0);}
.me7_c01452{transform:matrix(0.247349,-0.001731,0.001750,0.249994,0,0);-ms-transform:matrix(0.247349,-0.001731,0.001750,0.249994,0,0);-webkit-transform:matrix(0.247349,-0.001731,0.001750,0.249994,0,0);}
.m88_c01452{transform:matrix(0.247976,-0.001488,0.001500,0.249996,0,0);-ms-transform:matrix(0.247976,-0.001488,0.001500,0.249996,0,0);-webkit-transform:matrix(0.247976,-0.001488,0.001500,0.249996,0,0);}
.ma2_c01452{transform:matrix(0.248571,-0.001491,0.001500,0.249996,0,0);-ms-transform:matrix(0.248571,-0.001491,0.001500,0.249996,0,0);-webkit-transform:matrix(0.248571,-0.001491,0.001500,0.249996,0,0);}
.me6_c01452{transform:matrix(0.248909,-0.001742,0.001750,0.249994,0,0);-ms-transform:matrix(0.248909,-0.001742,0.001750,0.249994,0,0);-webkit-transform:matrix(0.248909,-0.001742,0.001750,0.249994,0,0);}
.m14_c01452{transform:matrix(0.249156,-0.001495,0.001500,0.249996,0,0);-ms-transform:matrix(0.249156,-0.001495,0.001500,0.249996,0,0);-webkit-transform:matrix(0.249156,-0.001495,0.001500,0.249996,0,0);}
.mca_c01452{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m95_c01452{transform:matrix(0.249661,-0.001498,0.001500,0.249996,0,0);-ms-transform:matrix(0.249661,-0.001498,0.001500,0.249996,0,0);-webkit-transform:matrix(0.249661,-0.001498,0.001500,0.249996,0,0);}
.m91_c01452{transform:matrix(0.250150,-0.001501,0.001500,0.249996,0,0);-ms-transform:matrix(0.250150,-0.001501,0.001500,0.249996,0,0);-webkit-transform:matrix(0.250150,-0.001501,0.001500,0.249996,0,0);}
.m9f_c01452{transform:matrix(0.250645,-0.001504,0.001500,0.249996,0,0);-ms-transform:matrix(0.250645,-0.001504,0.001500,0.249996,0,0);-webkit-transform:matrix(0.250645,-0.001504,0.001500,0.249996,0,0);}
.m19_c01452{transform:matrix(0.251030,-0.001506,0.001500,0.249996,0,0);-ms-transform:matrix(0.251030,-0.001506,0.001500,0.249996,0,0);-webkit-transform:matrix(0.251030,-0.001506,0.001500,0.249996,0,0);}
.m7d_c01452{transform:matrix(0.251240,-0.001507,0.001500,0.249996,0,0);-ms-transform:matrix(0.251240,-0.001507,0.001500,0.249996,0,0);-webkit-transform:matrix(0.251240,-0.001507,0.001500,0.249996,0,0);}
.m81_c01452{transform:matrix(0.251415,-0.001508,0.001500,0.249996,0,0);-ms-transform:matrix(0.251415,-0.001508,0.001500,0.249996,0,0);-webkit-transform:matrix(0.251415,-0.001508,0.001500,0.249996,0,0);}
.m3d_c01452{transform:matrix(0.251735,-0.001510,0.001500,0.249996,0,0);-ms-transform:matrix(0.251735,-0.001510,0.001500,0.249996,0,0);-webkit-transform:matrix(0.251735,-0.001510,0.001500,0.249996,0,0);}
.m3_c01452{transform:matrix(0.252155,-0.001513,0.001500,0.249996,0,0);-ms-transform:matrix(0.252155,-0.001513,0.001500,0.249996,0,0);-webkit-transform:matrix(0.252155,-0.001513,0.001500,0.249996,0,0);}
.me0_c01452{transform:matrix(0.253394,-0.001774,0.001750,0.249994,0,0);-ms-transform:matrix(0.253394,-0.001774,0.001750,0.249994,0,0);-webkit-transform:matrix(0.253394,-0.001774,0.001750,0.249994,0,0);}
.m46_c01452{transform:matrix(0.254115,-0.001525,0.001500,0.249996,0,0);-ms-transform:matrix(0.254115,-0.001525,0.001500,0.249996,0,0);-webkit-transform:matrix(0.254115,-0.001525,0.001500,0.249996,0,0);}
.m10_c01452{transform:matrix(0.254420,-0.001527,0.001500,0.249996,0,0);-ms-transform:matrix(0.254420,-0.001527,0.001500,0.249996,0,0);-webkit-transform:matrix(0.254420,-0.001527,0.001500,0.249996,0,0);}
.m85_c01452{transform:matrix(0.254840,-0.001529,0.001500,0.249996,0,0);-ms-transform:matrix(0.254840,-0.001529,0.001500,0.249996,0,0);-webkit-transform:matrix(0.254840,-0.001529,0.001500,0.249996,0,0);}
.m57_c01452{transform:matrix(0.255025,-0.001530,0.001500,0.249996,0,0);-ms-transform:matrix(0.255025,-0.001530,0.001500,0.249996,0,0);-webkit-transform:matrix(0.255025,-0.001530,0.001500,0.249996,0,0);}
.m39_c01452{transform:matrix(0.255205,-0.001531,0.001500,0.249996,0,0);-ms-transform:matrix(0.255205,-0.001531,0.001500,0.249996,0,0);-webkit-transform:matrix(0.255205,-0.001531,0.001500,0.249996,0,0);}
.m13_c01452{transform:matrix(0.255625,-0.001534,0.001500,0.249996,0,0);-ms-transform:matrix(0.255625,-0.001534,0.001500,0.249996,0,0);-webkit-transform:matrix(0.255625,-0.001534,0.001500,0.249996,0,0);}
.m69_c01452{transform:matrix(0.255780,-0.001535,0.001500,0.249996,0,0);-ms-transform:matrix(0.255780,-0.001535,0.001500,0.249996,0,0);-webkit-transform:matrix(0.255780,-0.001535,0.001500,0.249996,0,0);}
.m78_c01452{transform:matrix(0.256055,-0.001536,0.001500,0.249996,0,0);-ms-transform:matrix(0.256055,-0.001536,0.001500,0.249996,0,0);-webkit-transform:matrix(0.256055,-0.001536,0.001500,0.249996,0,0);}
.m92_c01452{transform:matrix(0.256185,-0.001537,0.001500,0.249996,0,0);-ms-transform:matrix(0.256185,-0.001537,0.001500,0.249996,0,0);-webkit-transform:matrix(0.256185,-0.001537,0.001500,0.249996,0,0);}
.m5e_c01452{transform:matrix(0.256785,-0.001541,0.001500,0.249996,0,0);-ms-transform:matrix(0.256785,-0.001541,0.001500,0.249996,0,0);-webkit-transform:matrix(0.256785,-0.001541,0.001500,0.249996,0,0);}
.m1f_c01452{transform:matrix(0.257330,-0.001544,0.001500,0.249996,0,0);-ms-transform:matrix(0.257330,-0.001544,0.001500,0.249996,0,0);-webkit-transform:matrix(0.257330,-0.001544,0.001500,0.249996,0,0);}
.m1e_c01452{transform:matrix(0.257340,-0.001544,0.001500,0.249996,0,0);-ms-transform:matrix(0.257340,-0.001544,0.001500,0.249996,0,0);-webkit-transform:matrix(0.257340,-0.001544,0.001500,0.249996,0,0);}
.m45_c01452{transform:matrix(0.257880,-0.001547,0.001500,0.249996,0,0);-ms-transform:matrix(0.257880,-0.001547,0.001500,0.249996,0,0);-webkit-transform:matrix(0.257880,-0.001547,0.001500,0.249996,0,0);}
.m8c_c01452{transform:matrix(0.257940,-0.001548,0.001500,0.249996,0,0);-ms-transform:matrix(0.257940,-0.001548,0.001500,0.249996,0,0);-webkit-transform:matrix(0.257940,-0.001548,0.001500,0.249996,0,0);}
.mb9_c01452{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.m1c_c01452{transform:matrix(0.258695,-0.001552,0.001500,0.249996,0,0);-ms-transform:matrix(0.258695,-0.001552,0.001500,0.249996,0,0);-webkit-transform:matrix(0.258695,-0.001552,0.001500,0.249996,0,0);}
.m8_c01452{transform:matrix(0.258865,-0.001553,0.001500,0.249996,0,0);-ms-transform:matrix(0.258865,-0.001553,0.001500,0.249996,0,0);-webkit-transform:matrix(0.258865,-0.001553,0.001500,0.249996,0,0);}
.m1_c01452{transform:matrix(0.259455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259455,0.000000,0.000000,0.250000,0,0);}
.ma9_c01452{transform:matrix(0.259780,-0.001559,0.001500,0.249996,0,0);-ms-transform:matrix(0.259780,-0.001559,0.001500,0.249996,0,0);-webkit-transform:matrix(0.259780,-0.001559,0.001500,0.249996,0,0);}
.m8f_c01452{transform:matrix(0.260430,-0.001563,0.001500,0.249996,0,0);-ms-transform:matrix(0.260430,-0.001563,0.001500,0.249996,0,0);-webkit-transform:matrix(0.260430,-0.001563,0.001500,0.249996,0,0);}
.m48_c01452{transform:matrix(0.260920,-0.001566,0.001500,0.249996,0,0);-ms-transform:matrix(0.260920,-0.001566,0.001500,0.249996,0,0);-webkit-transform:matrix(0.260920,-0.001566,0.001500,0.249996,0,0);}
.m5f_c01452{transform:matrix(0.261490,-0.001569,0.001500,0.249996,0,0);-ms-transform:matrix(0.261490,-0.001569,0.001500,0.249996,0,0);-webkit-transform:matrix(0.261490,-0.001569,0.001500,0.249996,0,0);}
.m96_c01452{transform:matrix(0.263440,-0.001581,0.001500,0.249996,0,0);-ms-transform:matrix(0.263440,-0.001581,0.001500,0.249996,0,0);-webkit-transform:matrix(0.263440,-0.001581,0.001500,0.249996,0,0);}
.m2f_c01452{transform:matrix(0.263505,-0.001581,0.001500,0.249996,0,0);-ms-transform:matrix(0.263505,-0.001581,0.001500,0.249996,0,0);-webkit-transform:matrix(0.263505,-0.001581,0.001500,0.249996,0,0);}
.me8_c01452{transform:matrix(0.264419,-0.001851,0.001750,0.249994,0,0);-ms-transform:matrix(0.264419,-0.001851,0.001750,0.249994,0,0);-webkit-transform:matrix(0.264419,-0.001851,0.001750,0.249994,0,0);}
.m58_c01452{transform:matrix(0.264445,-0.001587,0.001500,0.249996,0,0);-ms-transform:matrix(0.264445,-0.001587,0.001500,0.249996,0,0);-webkit-transform:matrix(0.264445,-0.001587,0.001500,0.249996,0,0);}
.m3a_c01452{transform:matrix(0.265425,-0.001593,0.001500,0.249996,0,0);-ms-transform:matrix(0.265425,-0.001593,0.001500,0.249996,0,0);-webkit-transform:matrix(0.265425,-0.001593,0.001500,0.249996,0,0);}
.m66_c01452{transform:matrix(0.265890,-0.001595,0.001500,0.249996,0,0);-ms-transform:matrix(0.265890,-0.001595,0.001500,0.249996,0,0);-webkit-transform:matrix(0.265890,-0.001595,0.001500,0.249996,0,0);}
.m7f_c01452{transform:matrix(0.266005,-0.001596,0.001500,0.249996,0,0);-ms-transform:matrix(0.266005,-0.001596,0.001500,0.249996,0,0);-webkit-transform:matrix(0.266005,-0.001596,0.001500,0.249996,0,0);}
.m97_c01452{transform:matrix(0.266065,-0.001596,0.001500,0.249996,0,0);-ms-transform:matrix(0.266065,-0.001596,0.001500,0.249996,0,0);-webkit-transform:matrix(0.266065,-0.001596,0.001500,0.249996,0,0);}
.mb8_c01452{transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);}
.m21_c01452{transform:matrix(0.266325,-0.001598,0.001500,0.249996,0,0);-ms-transform:matrix(0.266325,-0.001598,0.001500,0.249996,0,0);-webkit-transform:matrix(0.266325,-0.001598,0.001500,0.249996,0,0);}
.m5d_c01452{transform:matrix(0.266985,-0.001602,0.001500,0.249996,0,0);-ms-transform:matrix(0.266985,-0.001602,0.001500,0.249996,0,0);-webkit-transform:matrix(0.266985,-0.001602,0.001500,0.249996,0,0);}
.mcd_c01452{transform:matrix(0.267010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267010,0.000000,0.000000,0.250000,0,0);}
.m65_c01452{transform:matrix(0.267605,-0.001606,0.001500,0.249996,0,0);-ms-transform:matrix(0.267605,-0.001606,0.001500,0.249996,0,0);-webkit-transform:matrix(0.267605,-0.001606,0.001500,0.249996,0,0);}
.m3e_c01452{transform:matrix(0.267615,-0.001606,0.001500,0.249996,0,0);-ms-transform:matrix(0.267615,-0.001606,0.001500,0.249996,0,0);-webkit-transform:matrix(0.267615,-0.001606,0.001500,0.249996,0,0);}
.m4b_c01452{transform:matrix(0.267885,-0.001607,0.001500,0.249996,0,0);-ms-transform:matrix(0.267885,-0.001607,0.001500,0.249996,0,0);-webkit-transform:matrix(0.267885,-0.001607,0.001500,0.249996,0,0);}
.ma3_c01452{transform:matrix(0.268365,-0.001610,0.001500,0.249996,0,0);-ms-transform:matrix(0.268365,-0.001610,0.001500,0.249996,0,0);-webkit-transform:matrix(0.268365,-0.001610,0.001500,0.249996,0,0);}
.m35_c01452{transform:matrix(0.268455,-0.001611,0.001500,0.249996,0,0);-ms-transform:matrix(0.268455,-0.001611,0.001500,0.249996,0,0);-webkit-transform:matrix(0.268455,-0.001611,0.001500,0.249996,0,0);}
.m3b_c01452{transform:matrix(0.269350,-0.001616,0.001500,0.249996,0,0);-ms-transform:matrix(0.269350,-0.001616,0.001500,0.249996,0,0);-webkit-transform:matrix(0.269350,-0.001616,0.001500,0.249996,0,0);}
.mcf_c01452{transform:matrix(0.269795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269795,0.000000,0.000000,0.250000,0,0);}
.m6d_c01452{transform:matrix(0.269850,-0.001619,0.001500,0.249996,0,0);-ms-transform:matrix(0.269850,-0.001619,0.001500,0.249996,0,0);-webkit-transform:matrix(0.269850,-0.001619,0.001500,0.249996,0,0);}
.mbb_c01452{transform:matrix(0.269925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269925,0.000000,0.000000,0.250000,0,0);}
.m7b_c01452{transform:matrix(0.270945,-0.001626,0.001500,0.249996,0,0);-ms-transform:matrix(0.270945,-0.001626,0.001500,0.249996,0,0);-webkit-transform:matrix(0.270945,-0.001626,0.001500,0.249996,0,0);}
.md0_c01452{transform:matrix(0.271810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271810,0.000000,0.000000,0.250000,0,0);}
.m7a_c01452{transform:matrix(0.272150,-0.001633,0.001500,0.249996,0,0);-ms-transform:matrix(0.272150,-0.001633,0.001500,0.249996,0,0);-webkit-transform:matrix(0.272150,-0.001633,0.001500,0.249996,0,0);}
.ma8_c01452{transform:matrix(0.272165,-0.001633,0.001500,0.249996,0,0);-ms-transform:matrix(0.272165,-0.001633,0.001500,0.249996,0,0);-webkit-transform:matrix(0.272165,-0.001633,0.001500,0.249996,0,0);}
.mc9_c01452{transform:matrix(0.273175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273175,0.000000,0.000000,0.250000,0,0);}
.mce_c01452{transform:matrix(0.273265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273265,0.000000,0.000000,0.250000,0,0);}
.m79_c01452{transform:matrix(0.273390,-0.001640,0.001500,0.249996,0,0);-ms-transform:matrix(0.273390,-0.001640,0.001500,0.249996,0,0);-webkit-transform:matrix(0.273390,-0.001640,0.001500,0.249996,0,0);}
.m40_c01452{transform:matrix(0.273585,-0.001642,0.001500,0.249996,0,0);-ms-transform:matrix(0.273585,-0.001642,0.001500,0.249996,0,0);-webkit-transform:matrix(0.273585,-0.001642,0.001500,0.249996,0,0);}
.m64_c01452{transform:matrix(0.273895,-0.001643,0.001500,0.249996,0,0);-ms-transform:matrix(0.273895,-0.001643,0.001500,0.249996,0,0);-webkit-transform:matrix(0.273895,-0.001643,0.001500,0.249996,0,0);}
.ma5_c01452{transform:matrix(0.273945,-0.001644,0.001500,0.249996,0,0);-ms-transform:matrix(0.273945,-0.001644,0.001500,0.249996,0,0);-webkit-transform:matrix(0.273945,-0.001644,0.001500,0.249996,0,0);}
.m98_c01452{transform:matrix(0.274315,-0.001646,0.001500,0.249996,0,0);-ms-transform:matrix(0.274315,-0.001646,0.001500,0.249996,0,0);-webkit-transform:matrix(0.274315,-0.001646,0.001500,0.249996,0,0);}
.m90_c01452{transform:matrix(0.274910,-0.001649,0.001500,0.249996,0,0);-ms-transform:matrix(0.274910,-0.001649,0.001500,0.249996,0,0);-webkit-transform:matrix(0.274910,-0.001649,0.001500,0.249996,0,0);}
.ma1_c01452{transform:matrix(0.275195,-0.001651,0.001500,0.249996,0,0);-ms-transform:matrix(0.275195,-0.001651,0.001500,0.249996,0,0);-webkit-transform:matrix(0.275195,-0.001651,0.001500,0.249996,0,0);}
.m60_c01452{transform:matrix(0.275705,-0.001654,0.001500,0.249996,0,0);-ms-transform:matrix(0.275705,-0.001654,0.001500,0.249996,0,0);-webkit-transform:matrix(0.275705,-0.001654,0.001500,0.249996,0,0);}
.m80_c01452{transform:matrix(0.276225,-0.001657,0.001500,0.249996,0,0);-ms-transform:matrix(0.276225,-0.001657,0.001500,0.249996,0,0);-webkit-transform:matrix(0.276225,-0.001657,0.001500,0.249996,0,0);}
.m76_c01452{transform:matrix(0.276245,-0.001657,0.001500,0.249996,0,0);-ms-transform:matrix(0.276245,-0.001657,0.001500,0.249996,0,0);-webkit-transform:matrix(0.276245,-0.001657,0.001500,0.249996,0,0);}
.m38_c01452{transform:matrix(0.276385,-0.001658,0.001500,0.249996,0,0);-ms-transform:matrix(0.276385,-0.001658,0.001500,0.249996,0,0);-webkit-transform:matrix(0.276385,-0.001658,0.001500,0.249996,0,0);}
.m5c_c01452{transform:matrix(0.276750,-0.001661,0.001500,0.249996,0,0);-ms-transform:matrix(0.276750,-0.001661,0.001500,0.249996,0,0);-webkit-transform:matrix(0.276750,-0.001661,0.001500,0.249996,0,0);}
.m23_c01452{transform:matrix(0.277220,-0.001663,0.001500,0.249996,0,0);-ms-transform:matrix(0.277220,-0.001663,0.001500,0.249996,0,0);-webkit-transform:matrix(0.277220,-0.001663,0.001500,0.249996,0,0);}
.m82_c01452{transform:matrix(0.277325,-0.001664,0.001500,0.249996,0,0);-ms-transform:matrix(0.277325,-0.001664,0.001500,0.249996,0,0);-webkit-transform:matrix(0.277325,-0.001664,0.001500,0.249996,0,0);}
.m5b_c01452{transform:matrix(0.277835,-0.001667,0.001500,0.249996,0,0);-ms-transform:matrix(0.277835,-0.001667,0.001500,0.249996,0,0);-webkit-transform:matrix(0.277835,-0.001667,0.001500,0.249996,0,0);}
.md3_c01452{transform:matrix(0.278490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278490,0.000000,0.000000,0.250000,0,0);}
.m5a_c01452{transform:matrix(0.279325,-0.001676,0.001500,0.249996,0,0);-ms-transform:matrix(0.279325,-0.001676,0.001500,0.249996,0,0);-webkit-transform:matrix(0.279325,-0.001676,0.001500,0.249996,0,0);}
.m6b_c01452{transform:matrix(0.279840,-0.001679,0.001500,0.249996,0,0);-ms-transform:matrix(0.279840,-0.001679,0.001500,0.249996,0,0);-webkit-transform:matrix(0.279840,-0.001679,0.001500,0.249996,0,0);}
.m7c_c01452{transform:matrix(0.280435,-0.001683,0.001500,0.249996,0,0);-ms-transform:matrix(0.280435,-0.001683,0.001500,0.249996,0,0);-webkit-transform:matrix(0.280435,-0.001683,0.001500,0.249996,0,0);}
.m2_c01452{transform:matrix(0.282310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282310,0.000000,0.000000,0.250000,0,0);}
.me2_c01452{transform:matrix(0.287408,-0.002012,0.001750,0.249994,0,0);-ms-transform:matrix(0.287408,-0.002012,0.001750,0.249994,0,0);-webkit-transform:matrix(0.287408,-0.002012,0.001750,0.249994,0,0);}
.mc2_c01452{transform:matrix(0.297175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297175,0.000000,0.000000,0.250000,0,0);}
.mc3_c01452{transform:matrix(0.299175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299175,0.000000,0.000000,0.250000,0,0);}
.m61_c01452{transform:matrix(0.299920,-0.001800,0.001500,0.249996,0,0);-ms-transform:matrix(0.299920,-0.001800,0.001500,0.249996,0,0);-webkit-transform:matrix(0.299920,-0.001800,0.001500,0.249996,0,0);}
.me9_c01452{transform:matrix(0.303955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303955,0.000000,0.000000,0.250000,0,0);}
.m28_c01452{transform:matrix(0.311994,-0.001872,0.001500,0.249996,0,0);-ms-transform:matrix(0.311994,-0.001872,0.001500,0.249996,0,0);-webkit-transform:matrix(0.311994,-0.001872,0.001500,0.249996,0,0);}
.med_c01452{transform:matrix(0.382755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382755,0.000000,0.000000,0.250000,0,0);}
.mec_c01452{transform:matrix(0.456205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456205,0.000000,0.000000,0.250000,0,0);}
.mc0_c01452{transform:matrix(0.487010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487010,0.000000,0.000000,0.250000,0,0);}
.mbf_c01452{transform:matrix(0.535870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535870,0.000000,0.000000,0.250000,0,0);}
.mc8_c01452{transform:matrix(0.633605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.633605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.633605,0.000000,0.000000,0.250000,0,0);}
.mea_c01452{transform:matrix(0.641250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.641250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.641250,0.000000,0.000000,0.250000,0,0);}
.m26_c01452{transform:matrix(0.678843,-0.004073,0.001500,0.249996,0,0);-ms-transform:matrix(0.678843,-0.004073,0.001500,0.249996,0,0);-webkit-transform:matrix(0.678843,-0.004073,0.001500,0.249996,0,0);}
.mc7_c01452{transform:matrix(0.763415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.763415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.763415,0.000000,0.000000,0.250000,0,0);}
.mbe_c01452{transform:matrix(1.004690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.004690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.004690,0.000000,0.000000,0.250000,0,0);}
.mc5_c01452{transform:matrix(1.656350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.656350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.656350,0.000000,0.000000,0.250000,0,0);}
.mee_c01452{transform:matrix(1.936620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.936620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.936620,0.000000,0.000000,0.250000,0,0);}
.meb_c01452{transform:matrix(2.084060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.084060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.084060,0.000000,0.000000,0.250000,0,0);}
.mc6_c01452{transform:matrix(2.459095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.459095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.459095,0.000000,0.000000,0.250000,0,0);}
.v0_c01452{vertical-align:0.000000px;}
.ls0_c01452{letter-spacing:0.000000px;}
.sc__c01452{text-shadow:none;}
.sc0_c01452{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__c01452{-webkit-text-stroke:0px transparent;}
.sc0_c01452{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01452{word-spacing:0.000000px;}
._0_c01452{width:142.037943px;}
.fc0_c01452{color:transparent;}
.fs11_c01452{font-size:18.000000px;}
.fs9_c01452{font-size:24.000000px;}
.fsb_c01452{font-size:30.000000px;}
.fsa_c01452{font-size:36.000000px;}
.fsc_c01452{font-size:60.000000px;}
.fs10_c01452{font-size:66.000000px;}
.fsf_c01452{font-size:66.001617px;}
.fs8_c01452{font-size:72.000000px;}
.fs2_c01452{font-size:72.001296px;}
.fsd_c01452{font-size:78.000000px;}
.fs1_c01452{font-size:78.001404px;}
.fse_c01452{font-size:84.000000px;}
.fs7_c01452{font-size:90.000000px;}
.fs3_c01452{font-size:90.001620px;}
.fs6_c01452{font-size:102.001836px;}
.fs0_c01452{font-size:108.000000px;}
.fs4_c01452{font-size:126.002268px;}
.fs5_c01452{font-size:132.002376px;}
.y0_c01452{bottom:0.000000px;}
.yd6_c01452{bottom:67.782000px;}
.yd7_c01452{bottom:98.280000px;}
.ycc_c01452{bottom:102.870000px;}
.ycd_c01452{bottom:103.015708px;}
.yce_c01452{bottom:103.253817px;}
.ycf_c01452{bottom:103.467397px;}
.yd0_c01452{bottom:103.935949px;}
.yd1_c01452{bottom:104.406601px;}
.yd2_c01452{bottom:104.862323px;}
.yd3_c01452{bottom:105.391481px;}
.yd4_c01452{bottom:105.862090px;}
.yd5_c01452{bottom:106.542469px;}
.yc1_c01452{bottom:173.611500px;}
.yc2_c01452{bottom:174.145500px;}
.yc3_c01452{bottom:174.525000px;}
.yc4_c01452{bottom:175.023000px;}
.yc5_c01452{bottom:175.242000px;}
.yc6_c01452{bottom:175.516500px;}
.yc7_c01452{bottom:175.741500px;}
.yc8_c01452{bottom:175.950000px;}
.yc9_c01452{bottom:176.227500px;}
.yca_c01452{bottom:176.391000px;}
.ycb_c01452{bottom:176.548500px;}
.yc0_c01452{bottom:210.565500px;}
.ybf_c01452{bottom:245.628000px;}
.ybe_c01452{bottom:258.120000px;}
.yaf_c01452{bottom:281.070000px;}
.yb0_c01452{bottom:281.559000px;}
.yb1_c01452{bottom:282.259500px;}
.yb2_c01452{bottom:282.549000px;}
.yb3_c01452{bottom:283.537500px;}
.yb4_c01452{bottom:284.230500px;}
.yb5_c01452{bottom:284.614500px;}
.yb6_c01452{bottom:285.409500px;}
.yb7_c01452{bottom:285.703500px;}
.ybd_c01452{bottom:288.630000px;}
.yae_c01452{bottom:317.340000px;}
.ybc_c01452{bottom:319.140000px;}
.yad_c01452{bottom:350.997846px;}
.ya2_c01452{bottom:384.467988px;}
.ya3_c01452{bottom:384.731958px;}
.ya4_c01452{bottom:385.056237px;}
.ya5_c01452{bottom:385.708953px;}
.ya6_c01452{bottom:385.843521px;}
.ya7_c01452{bottom:386.425119px;}
.ya8_c01452{bottom:386.695713px;}
.ya9_c01452{bottom:387.416532px;}
.yaa_c01452{bottom:387.674220px;}
.yab_c01452{bottom:388.014159px;}
.yac_c01452{bottom:388.260651px;}
.yb8_c01452{bottom:420.390000px;}
.y9a_c01452{bottom:421.729221px;}
.y9b_c01452{bottom:422.182638px;}
.y9c_c01452{bottom:422.422752px;}
.y9d_c01452{bottom:422.634336px;}
.y9e_c01452{bottom:423.561801px;}
.y9f_c01452{bottom:423.794097px;}
.ya0_c01452{bottom:424.253721px;}
.ya1_c01452{bottom:424.473186px;}
.yba_c01452{bottom:456.030000px;}
.y91_c01452{bottom:459.132492px;}
.y92_c01452{bottom:459.132603px;}
.y93_c01452{bottom:459.132654px;}
.y96_c01452{bottom:459.132987px;}
.y99_c01452{bottom:459.133140px;}
.y94_c01452{bottom:459.133245px;}
.y97_c01452{bottom:459.133398px;}
.y95_c01452{bottom:459.133416px;}
.y98_c01452{bottom:459.133509px;}
.yb9_c01452{bottom:459.810000px;}
.ybb_c01452{bottom:460.080000px;}
.y90_c01452{bottom:493.280256px;}
.y84_c01452{bottom:527.031375px;}
.y85_c01452{bottom:527.341920px;}
.y86_c01452{bottom:527.713929px;}
.y87_c01452{bottom:528.471468px;}
.y88_c01452{bottom:528.702126px;}
.y89_c01452{bottom:528.940782px;}
.y8a_c01452{bottom:529.622949px;}
.y8b_c01452{bottom:529.847391px;}
.y8c_c01452{bottom:530.079687px;}
.y8d_c01452{bottom:530.531394px;}
.y8e_c01452{bottom:531.380265px;}
.y8f_c01452{bottom:531.703416px;}
.y7e_c01452{bottom:565.371564px;}
.y7f_c01452{bottom:565.653975px;}
.y80_c01452{bottom:565.952226px;}
.y81_c01452{bottom:566.234682px;}
.y82_c01452{bottom:567.124557px;}
.y83_c01452{bottom:567.422943px;}
.y75_c01452{bottom:598.850850px;}
.y76_c01452{bottom:599.428314px;}
.y77_c01452{bottom:599.964024px;}
.y78_c01452{bottom:601.048692px;}
.y79_c01452{bottom:601.372083px;}
.y7a_c01452{bottom:601.828908px;}
.y7b_c01452{bottom:603.017244px;}
.y7c_c01452{bottom:604.216560px;}
.y7d_c01452{bottom:605.310606px;}
.y6e_c01452{bottom:636.380928px;}
.y6f_c01452{bottom:637.156287px;}
.y70_c01452{bottom:637.497495px;}
.y71_c01452{bottom:638.552055px;}
.y72_c01452{bottom:638.815749px;}
.y73_c01452{bottom:639.074667px;}
.y74_c01452{bottom:639.805299px;}
.y62_c01452{bottom:669.321618px;}
.y63_c01452{bottom:669.632154px;}
.y64_c01452{bottom:670.004118px;}
.y65_c01452{bottom:670.756860px;}
.y66_c01452{bottom:671.223000px;}
.y67_c01452{bottom:671.839530px;}
.y68_c01452{bottom:672.136014px;}
.y69_c01452{bottom:672.377928px;}
.y6a_c01452{bottom:672.903288px;}
.y6b_c01452{bottom:673.124346px;}
.y6c_c01452{bottom:673.996890px;}
.y6d_c01452{bottom:674.269323px;}
.y61_c01452{bottom:707.839287px;}
.y60_c01452{bottom:707.839896px;}
.y5a_c01452{bottom:743.164956px;}
.y5b_c01452{bottom:743.165016px;}
.y5c_c01452{bottom:743.165658px;}
.y59_c01452{bottom:743.165685px;}
.y58_c01452{bottom:743.166114px;}
.y5d_c01452{bottom:743.166189px;}
.y5f_c01452{bottom:743.166771px;}
.y5e_c01452{bottom:743.166840px;}
.y4c_c01452{bottom:771.385128px;}
.y4d_c01452{bottom:771.617217px;}
.y4e_c01452{bottom:772.029651px;}
.y4f_c01452{bottom:772.817673px;}
.y50_c01452{bottom:773.202024px;}
.y51_c01452{bottom:773.663295px;}
.y52_c01452{bottom:774.279906px;}
.y53_c01452{bottom:774.566637px;}
.y54_c01452{bottom:774.874188px;}
.y55_c01452{bottom:775.410759px;}
.y56_c01452{bottom:775.641390px;}
.y57_c01452{bottom:776.102661px;}
.y4b_c01452{bottom:808.645194px;}
.y4a_c01452{bottom:808.645803px;}
.y41_c01452{bottom:848.607660px;}
.y42_c01452{bottom:848.905611px;}
.y43_c01452{bottom:849.360657px;}
.y44_c01452{bottom:849.596058px;}
.y45_c01452{bottom:849.812400px;}
.y46_c01452{bottom:850.795710px;}
.y47_c01452{bottom:851.276325px;}
.y48_c01452{bottom:851.497374px;}
.y49_c01452{bottom:852.274176px;}
.y36_c01452{bottom:882.355893px;}
.y37_c01452{bottom:882.652335px;}
.y38_c01452{bottom:883.132380px;}
.y39_c01452{bottom:884.107500px;}
.y3a_c01452{bottom:884.606100px;}
.y3b_c01452{bottom:885.291003px;}
.y3c_c01452{bottom:886.082952px;}
.y3d_c01452{bottom:886.461825px;}
.y3e_c01452{bottom:886.875288px;}
.y3f_c01452{bottom:887.553759px;}
.y40_c01452{bottom:887.957670px;}
.y35_c01452{bottom:920.822082px;}
.y2a_c01452{bottom:949.315128px;}
.y2b_c01452{bottom:949.583337px;}
.y2c_c01452{bottom:950.005047px;}
.y2d_c01452{bottom:950.591049px;}
.y2e_c01452{bottom:950.980140px;}
.y2f_c01452{bottom:951.405771px;}
.y30_c01452{bottom:951.556671px;}
.y31_c01452{bottom:952.263393px;}
.y32_c01452{bottom:952.712844px;}
.y33_c01452{bottom:953.570466px;}
.y34_c01452{bottom:954.790239px;}
.y24_c01452{bottom:984.956313px;}
.y25_c01452{bottom:985.221375px;}
.y26_c01452{bottom:985.649094px;}
.y27_c01452{bottom:986.519481px;}
.y28_c01452{bottom:986.951472px;}
.y29_c01452{bottom:987.124518px;}
.y1b_c01452{bottom:1025.186754px;}
.y1c_c01452{bottom:1026.085521px;}
.y1d_c01452{bottom:1026.357015px;}
.y1e_c01452{bottom:1026.601710px;}
.y1f_c01452{bottom:1027.665879px;}
.y20_c01452{bottom:1028.186862px;}
.y21_c01452{bottom:1028.458518px;}
.y22_c01452{bottom:1029.236682px;}
.y23_c01452{bottom:1029.500376px;}
.y11_c01452{bottom:1060.826430px;}
.y12_c01452{bottom:1061.155038px;}
.y13_c01452{bottom:1061.476104px;}
.y14_c01452{bottom:1062.258564px;}
.y15_c01452{bottom:1062.783336px;}
.y16_c01452{bottom:1063.039395px;}
.y17_c01452{bottom:1063.369929px;}
.y18_c01452{bottom:1063.831638px;}
.y19_c01452{bottom:1064.100585px;}
.y1a_c01452{bottom:1064.753328px;}
.ya_c01452{bottom:1096.197864px;}
.yb_c01452{bottom:1097.397864px;}
.yc_c01452{bottom:1097.740926px;}
.yd_c01452{bottom:1098.276195px;}
.ye_c01452{bottom:1098.558555px;}
.yf_c01452{bottom:1098.898737px;}
.y10_c01452{bottom:1099.164582px;}
.y2_c01452{bottom:1133.460000px;}
.y3_c01452{bottom:1133.926569px;}
.y4_c01452{bottom:1134.112860px;}
.y5_c01452{bottom:1134.712305px;}
.y6_c01452{bottom:1135.041192px;}
.y7_c01452{bottom:1135.232388px;}
.y8_c01452{bottom:1135.894950px;}
.y9_c01452{bottom:1136.089377px;}
.y1_c01452{bottom:1188.960000px;}
.h13_c01452{height:18.000000px;}
.hb_c01452{height:24.000000px;}
.hd_c01452{height:30.000000px;}
.hc_c01452{height:36.000000px;}
.he_c01452{height:60.000000px;}
.h12_c01452{height:66.000000px;}
.h11_c01452{height:66.001617px;}
.ha_c01452{height:72.000000px;}
.h4_c01452{height:72.001296px;}
.hf_c01452{height:78.000000px;}
.h3_c01452{height:78.001404px;}
.h10_c01452{height:84.000000px;}
.h9_c01452{height:90.000000px;}
.h5_c01452{height:90.001620px;}
.h8_c01452{height:102.001836px;}
.h2_c01452{height:108.000000px;}
.h6_c01452{height:126.002268px;}
.h7_c01452{height:132.002376px;}
.h0_c01452{height:1250.850000px;}
.h1_c01452{height:1251.000000px;}
.w0_c01452{width:912.000000px;}
.x0_c01452{left:0.000000px;}
.x86_c01452{left:1.890000px;}
.x13_c01452{left:112.664133px;}
.x7b_c01452{left:116.640000px;}
.x59_c01452{left:123.506277px;}
.xc_c01452{left:134.691705px;}
.x3c_c01452{left:136.184565px;}
.x63_c01452{left:137.775192px;}
.x89_c01452{left:140.130000px;}
.x14_c01452{left:167.432133px;}
.x26_c01452{left:168.568080px;}
.x1c_c01452{left:172.934133px;}
.x4b_c01452{left:181.217682px;}
.x73_c01452{left:182.561070px;}
.x8a_c01452{left:184.140000px;}
.x87_c01452{left:190.890000px;}
.x15_c01452{left:220.943133px;}
.x3d_c01452{left:228.354516px;}
.x4c_c01452{left:234.461367px;}
.x67_c01452{left:235.705596px;}
.x90_c01452{left:247.120500px;}
.x8b_c01452{left:248.940000px;}
.x4_c01452{left:283.579500px;}
.xd_c01452{left:284.689905px;}
.x2e_c01452{left:286.202376px;}
.x35_c01452{left:287.898708px;}
.x43_c01452{left:289.440390px;}
.x88_c01452{left:291.330000px;}
.x27_c01452{left:294.518568px;}
.x96_c01452{left:303.822000px;}
.x1d_c01452{left:319.225878px;}
.x5f_c01452{left:321.150066px;}
.x80_c01452{left:323.557500px;}
.x97_c01452{left:324.637500px;}
.xe_c01452{left:327.616392px;}
.x23_c01452{left:330.376296px;}
.x3e_c01452{left:340.940841px;}
.x28_c01452{left:343.116483px;}
.x8c_c01452{left:344.250000px;}
.x74_c01452{left:345.393570px;}
.x1e_c01452{left:349.758009px;}
.x16_c01452{left:351.353133px;}
.x44_c01452{left:352.621167px;}
.x60_c01452{left:354.357972px;}
.x98_c01452{left:358.653000px;}
.x5_c01452{left:361.341000px;}
.x75_c01452{left:367.821570px;}
.x5a_c01452{left:375.705729px;}
.x3b_c01452{left:377.730708px;}
.x24_c01452{left:384.374148px;}
.x2f_c01452{left:385.426236px;}
.x54_c01452{left:386.525421px;}
.x68_c01452{left:387.988077px;}
.x6f_c01452{left:389.141370px;}
.x6_c01452{left:392.389500px;}
.xf_c01452{left:394.577091px;}
.x29_c01452{left:396.304344px;}
.x25_c01452{left:405.964887px;}
.x4d_c01452{left:408.607323px;}
.x64_c01452{left:410.508054px;}
.x1_c01452{left:415.530000px;}
.x45_c01452{left:418.502043px;}
.x5b_c01452{left:421.342131px;}
.x91_c01452{left:422.611500px;}
.x10_c01452{left:429.886668px;}
.x7c_c01452{left:431.730000px;}
.x2_c01452{left:438.480000px;}
.x69_c01452{left:443.338566px;}
.x46_c01452{left:452.253258px;}
.x81_c01452{left:455.575500px;}
.x36_c01452{left:460.187682px;}
.x30_c01452{left:461.575368px;}
.x76_c01452{left:464.754570px;}
.x92_c01452{left:466.356000px;}
.x11_c01452{left:472.333155px;}
.x3_c01452{left:479.790000px;}
.x17_c01452{left:481.491633px;}
.x1f_c01452{left:482.867916px;}
.x61_c01452{left:484.494123px;}
.x82_c01452{left:487.740000px;}
.x7_c01452{left:492.297000px;}
.x4e_c01452{left:496.611792px;}
.x2a_c01452{left:503.490057px;}
.x12_c01452{left:505.640259px;}
.x65_c01452{left:507.951969px;}
.x77_c01452{left:509.853570px;}
.x62_c01452{left:517.724529px;}
.x93_c01452{left:521.166000px;}
.x99_c01452{left:523.336500px;}
.x18_c01452{left:536.580633px;}
.x4f_c01452{left:539.025540px;}
.x5c_c01452{left:540.145278px;}
.x6a_c01452{left:541.620603px;}
.x8_c01452{left:547.111500px;}
.x31_c01452{left:549.565284px;}
.x70_c01452{left:551.981898px;}
.x2b_c01452{left:559.647882px;}
.x55_c01452{left:560.901324px;}
.x8d_c01452{left:565.650000px;}
.x50_c01452{left:573.594333px;}
.x9_c01452{left:578.977500px;}
.x20_c01452{left:581.973228px;}
.x6b_c01452{left:584.550651px;}
.x9a_c01452{left:588.439500px;}
.x3f_c01452{left:590.683338px;}
.x32_c01452{left:591.710028px;}
.x56_c01452{left:593.849928px;}
.x83_c01452{left:597.633000px;}
.x37_c01452{left:600.571836px;}
.x94_c01452{left:608.109000px;}
.x19_c01452{left:613.532133px;}
.x47_c01452{left:615.876144px;}
.x7d_c01452{left:618.030000px;}
.x57_c01452{left:626.252541px;}
.x6c_c01452{left:629.370762px;}
.x40_c01452{left:634.691577px;}
.x33_c01452{left:637.619700px;}
.x51_c01452{left:648.653883px;}
.x71_c01452{left:650.801304px;}
.x1a_c01452{left:658.356633px;}
.x5d_c01452{left:660.028398px;}
.x7e_c01452{left:662.040000px;}
.x95_c01452{left:663.729000px;}
.x2c_c01452{left:666.833595px;}
.x38_c01452{left:669.173922px;}
.x78_c01452{left:672.938070px;}
.x84_c01452{left:674.557500px;}
.x21_c01452{left:679.166058px;}
.x52_c01452{left:680.246694px;}
.x72_c01452{left:682.128615px;}
.xa_c01452{left:689.404500px;}
.x8e_c01452{left:696.060000px;}
.x39_c01452{left:700.765233px;}
.x6d_c01452{left:703.891944px;}
.x22_c01452{left:712.114662px;}
.x58_c01452{left:717.523443px;}
.xb_c01452{left:721.809000px;}
.x8f_c01452{left:727.380000px;}
.x79_c01452{left:729.594570px;}
.x9b_c01452{left:731.263500px;}
.x48_c01452{left:735.218937px;}
.x41_c01452{left:744.307920px;}
.x6e_c01452{left:750.332118px;}
.x34_c01452{left:757.764531px;}
.x66_c01452{left:759.086466px;}
.x1b_c01452{left:767.147133px;}
.x5e_c01452{left:769.366770px;}
.x7a_c01452{left:770.676570px;}
.x7f_c01452{left:773.010000px;}
.x49_c01452{left:780.579066px;}
.x53_c01452{left:804.919947px;}
.x42_c01452{left:810.186024px;}
.x3a_c01452{left:811.731567px;}
.x2d_c01452{left:819.377268px;}
.x9c_c01452{left:828.460500px;}
.x85_c01452{left:838.159500px;}
.x4a_c01452{left:844.569870px;}
@media print{
.v0_c01452{vertical-align:0.000000pt;}
.ls0_c01452{letter-spacing:0.000000pt;}
.ws0_c01452{word-spacing:0.000000pt;}
._0_c01452{width:126.255950pt;}
.fs11_c01452{font-size:16.000000pt;}
.fs9_c01452{font-size:21.333333pt;}
.fsb_c01452{font-size:26.666667pt;}
.fsa_c01452{font-size:32.000000pt;}
.fsc_c01452{font-size:53.333333pt;}
.fs10_c01452{font-size:58.666667pt;}
.fsf_c01452{font-size:58.668104pt;}
.fs8_c01452{font-size:64.000000pt;}
.fs2_c01452{font-size:64.001152pt;}
.fsd_c01452{font-size:69.333333pt;}
.fs1_c01452{font-size:69.334581pt;}
.fse_c01452{font-size:74.666667pt;}
.fs7_c01452{font-size:80.000000pt;}
.fs3_c01452{font-size:80.001440pt;}
.fs6_c01452{font-size:90.668299pt;}
.fs0_c01452{font-size:96.000000pt;}
.fs4_c01452{font-size:112.002016pt;}
.fs5_c01452{font-size:117.335445pt;}
.y0_c01452{bottom:0.000000pt;}
.yd6_c01452{bottom:60.250667pt;}
.yd7_c01452{bottom:87.360000pt;}
.ycc_c01452{bottom:91.440000pt;}
.ycd_c01452{bottom:91.569519pt;}
.yce_c01452{bottom:91.781171pt;}
.ycf_c01452{bottom:91.971020pt;}
.yd0_c01452{bottom:92.387511pt;}
.yd1_c01452{bottom:92.805868pt;}
.yd2_c01452{bottom:93.210953pt;}
.yd3_c01452{bottom:93.681316pt;}
.yd4_c01452{bottom:94.099636pt;}
.yd5_c01452{bottom:94.704417pt;}
.yc1_c01452{bottom:154.321333pt;}
.yc2_c01452{bottom:154.796000pt;}
.yc3_c01452{bottom:155.133333pt;}
.yc4_c01452{bottom:155.576000pt;}
.yc5_c01452{bottom:155.770667pt;}
.yc6_c01452{bottom:156.014667pt;}
.yc7_c01452{bottom:156.214667pt;}
.yc8_c01452{bottom:156.400000pt;}
.yc9_c01452{bottom:156.646667pt;}
.yca_c01452{bottom:156.792000pt;}
.ycb_c01452{bottom:156.932000pt;}
.yc0_c01452{bottom:187.169333pt;}
.ybf_c01452{bottom:218.336000pt;}
.ybe_c01452{bottom:229.440000pt;}
.yaf_c01452{bottom:249.840000pt;}
.yb0_c01452{bottom:250.274667pt;}
.yb1_c01452{bottom:250.897333pt;}
.yb2_c01452{bottom:251.154667pt;}
.yb3_c01452{bottom:252.033333pt;}
.yb4_c01452{bottom:252.649333pt;}
.yb5_c01452{bottom:252.990667pt;}
.yb6_c01452{bottom:253.697333pt;}
.yb7_c01452{bottom:253.958667pt;}
.ybd_c01452{bottom:256.560000pt;}
.yae_c01452{bottom:282.080000pt;}
.ybc_c01452{bottom:283.680000pt;}
.yad_c01452{bottom:311.998085pt;}
.ya2_c01452{bottom:341.749323pt;}
.ya3_c01452{bottom:341.983963pt;}
.ya4_c01452{bottom:342.272211pt;}
.ya5_c01452{bottom:342.852403pt;}
.ya6_c01452{bottom:342.972019pt;}
.ya7_c01452{bottom:343.488995pt;}
.ya8_c01452{bottom:343.729523pt;}
.ya9_c01452{bottom:344.370251pt;}
.yaa_c01452{bottom:344.599307pt;}
.yab_c01452{bottom:344.901475pt;}
.yac_c01452{bottom:345.120579pt;}
.yb8_c01452{bottom:373.680000pt;}
.y9a_c01452{bottom:374.870419pt;}
.y9b_c01452{bottom:375.273456pt;}
.y9c_c01452{bottom:375.486891pt;}
.y9d_c01452{bottom:375.674965pt;}
.y9e_c01452{bottom:376.499379pt;}
.y9f_c01452{bottom:376.705864pt;}
.ya0_c01452{bottom:377.114419pt;}
.ya1_c01452{bottom:377.309499pt;}
.yba_c01452{bottom:405.360000pt;}
.y91_c01452{bottom:408.117771pt;}
.y92_c01452{bottom:408.117869pt;}
.y93_c01452{bottom:408.117915pt;}
.y96_c01452{bottom:408.118211pt;}
.y99_c01452{bottom:408.118347pt;}
.y94_c01452{bottom:408.118440pt;}
.y97_c01452{bottom:408.118576pt;}
.y95_c01452{bottom:408.118592pt;}
.y98_c01452{bottom:408.118675pt;}
.yb9_c01452{bottom:408.720000pt;}
.ybb_c01452{bottom:408.960000pt;}
.y90_c01452{bottom:438.471339pt;}
.y84_c01452{bottom:468.472333pt;}
.y85_c01452{bottom:468.748373pt;}
.y86_c01452{bottom:469.079048pt;}
.y87_c01452{bottom:469.752416pt;}
.y88_c01452{bottom:469.957445pt;}
.y89_c01452{bottom:470.169584pt;}
.y8a_c01452{bottom:470.775955pt;}
.y8b_c01452{bottom:470.975459pt;}
.y8c_c01452{bottom:471.181944pt;}
.y8d_c01452{bottom:471.583461pt;}
.y8e_c01452{bottom:472.338013pt;}
.y8f_c01452{bottom:472.625259pt;}
.y7e_c01452{bottom:502.552501pt;}
.y7f_c01452{bottom:502.803533pt;}
.y80_c01452{bottom:503.068645pt;}
.y81_c01452{bottom:503.319717pt;}
.y82_c01452{bottom:504.110717pt;}
.y83_c01452{bottom:504.375949pt;}
.y75_c01452{bottom:532.311867pt;}
.y76_c01452{bottom:532.825168pt;}
.y77_c01452{bottom:533.301355pt;}
.y78_c01452{bottom:534.265504pt;}
.y79_c01452{bottom:534.552963pt;}
.y7a_c01452{bottom:534.959029pt;}
.y7b_c01452{bottom:536.015328pt;}
.y7c_c01452{bottom:537.081387pt;}
.y7d_c01452{bottom:538.053872pt;}
.y6e_c01452{bottom:565.671936pt;}
.y6f_c01452{bottom:566.361144pt;}
.y70_c01452{bottom:566.664440pt;}
.y71_c01452{bottom:567.601827pt;}
.y72_c01452{bottom:567.836221pt;}
.y73_c01452{bottom:568.066371pt;}
.y74_c01452{bottom:568.715821pt;}
.y62_c01452{bottom:594.952549pt;}
.y63_c01452{bottom:595.228581pt;}
.y64_c01452{bottom:595.559216pt;}
.y65_c01452{bottom:596.228320pt;}
.y66_c01452{bottom:596.642667pt;}
.y67_c01452{bottom:597.190693pt;}
.y68_c01452{bottom:597.454235pt;}
.y69_c01452{bottom:597.669269pt;}
.y6a_c01452{bottom:598.136256pt;}
.y6b_c01452{bottom:598.332752pt;}
.y6c_c01452{bottom:599.108347pt;}
.y6d_c01452{bottom:599.350509pt;}
.y61_c01452{bottom:629.190477pt;}
.y60_c01452{bottom:629.191019pt;}
.y5a_c01452{bottom:660.591072pt;}
.y5b_c01452{bottom:660.591125pt;}
.y5c_c01452{bottom:660.591696pt;}
.y59_c01452{bottom:660.591720pt;}
.y58_c01452{bottom:660.592101pt;}
.y5d_c01452{bottom:660.592168pt;}
.y5f_c01452{bottom:660.592685pt;}
.y5e_c01452{bottom:660.592747pt;}
.y4c_c01452{bottom:685.675669pt;}
.y4d_c01452{bottom:685.881971pt;}
.y4e_c01452{bottom:686.248579pt;}
.y4f_c01452{bottom:686.949043pt;}
.y50_c01452{bottom:687.290688pt;}
.y51_c01452{bottom:687.700707pt;}
.y52_c01452{bottom:688.248805pt;}
.y53_c01452{bottom:688.503677pt;}
.y54_c01452{bottom:688.777056pt;}
.y55_c01452{bottom:689.254008pt;}
.y56_c01452{bottom:689.459013pt;}
.y57_c01452{bottom:689.869032pt;}
.y4b_c01452{bottom:718.795728pt;}
.y4a_c01452{bottom:718.796269pt;}
.y41_c01452{bottom:754.317920pt;}
.y42_c01452{bottom:754.582765pt;}
.y43_c01452{bottom:754.987251pt;}
.y44_c01452{bottom:755.196496pt;}
.y45_c01452{bottom:755.388800pt;}
.y46_c01452{bottom:756.262853pt;}
.y47_c01452{bottom:756.690067pt;}
.y48_c01452{bottom:756.886555pt;}
.y49_c01452{bottom:757.577045pt;}
.y36_c01452{bottom:784.316349pt;}
.y37_c01452{bottom:784.579853pt;}
.y38_c01452{bottom:785.006560pt;}
.y39_c01452{bottom:785.873333pt;}
.y3a_c01452{bottom:786.316533pt;}
.y3b_c01452{bottom:786.925336pt;}
.y3c_c01452{bottom:787.629291pt;}
.y3d_c01452{bottom:787.966067pt;}
.y3e_c01452{bottom:788.333589pt;}
.y3f_c01452{bottom:788.936675pt;}
.y40_c01452{bottom:789.295707pt;}
.y35_c01452{bottom:818.508517pt;}
.y2a_c01452{bottom:843.835669pt;}
.y2b_c01452{bottom:844.074077pt;}
.y2c_c01452{bottom:844.448931pt;}
.y2d_c01452{bottom:844.969821pt;}
.y2e_c01452{bottom:845.315680pt;}
.y2f_c01452{bottom:845.694019pt;}
.y30_c01452{bottom:845.828152pt;}
.y31_c01452{bottom:846.456349pt;}
.y32_c01452{bottom:846.855861pt;}
.y33_c01452{bottom:847.618192pt;}
.y34_c01452{bottom:848.702435pt;}
.y24_c01452{bottom:875.516723pt;}
.y25_c01452{bottom:875.752333pt;}
.y26_c01452{bottom:876.132528pt;}
.y27_c01452{bottom:876.906205pt;}
.y28_c01452{bottom:877.290197pt;}
.y29_c01452{bottom:877.444016pt;}
.y1b_c01452{bottom:911.277115pt;}
.y1c_c01452{bottom:912.076019pt;}
.y1d_c01452{bottom:912.317347pt;}
.y1e_c01452{bottom:912.534853pt;}
.y1f_c01452{bottom:913.480781pt;}
.y20_c01452{bottom:913.943877pt;}
.y21_c01452{bottom:914.185349pt;}
.y22_c01452{bottom:914.877051pt;}
.y23_c01452{bottom:915.111445pt;}
.y11_c01452{bottom:942.956827pt;}
.y12_c01452{bottom:943.248923pt;}
.y13_c01452{bottom:943.534315pt;}
.y14_c01452{bottom:944.229835pt;}
.y15_c01452{bottom:944.696299pt;}
.y16_c01452{bottom:944.923907pt;}
.y17_c01452{bottom:945.217715pt;}
.y18_c01452{bottom:945.628123pt;}
.y19_c01452{bottom:945.867187pt;}
.y1a_c01452{bottom:946.447403pt;}
.ya_c01452{bottom:974.398101pt;}
.yb_c01452{bottom:975.464768pt;}
.yc_c01452{bottom:975.769712pt;}
.yd_c01452{bottom:976.245507pt;}
.ye_c01452{bottom:976.496493pt;}
.yf_c01452{bottom:976.798877pt;}
.y10_c01452{bottom:977.035184pt;}
.y2_c01452{bottom:1007.520000pt;}
.y3_c01452{bottom:1007.934728pt;}
.y4_c01452{bottom:1008.100320pt;}
.y5_c01452{bottom:1008.633160pt;}
.y6_c01452{bottom:1008.925504pt;}
.y7_c01452{bottom:1009.095456pt;}
.y8_c01452{bottom:1009.684400pt;}
.y9_c01452{bottom:1009.857224pt;}
.y1_c01452{bottom:1056.853333pt;}
.h13_c01452{height:16.000000pt;}
.hb_c01452{height:21.333333pt;}
.hd_c01452{height:26.666667pt;}
.hc_c01452{height:32.000000pt;}
.he_c01452{height:53.333333pt;}
.h12_c01452{height:58.666667pt;}
.h11_c01452{height:58.668104pt;}
.ha_c01452{height:64.000000pt;}
.h4_c01452{height:64.001152pt;}
.hf_c01452{height:69.333333pt;}
.h3_c01452{height:69.334581pt;}
.h10_c01452{height:74.666667pt;}
.h9_c01452{height:80.000000pt;}
.h5_c01452{height:80.001440pt;}
.h8_c01452{height:90.668299pt;}
.h2_c01452{height:96.000000pt;}
.h6_c01452{height:112.002016pt;}
.h7_c01452{height:117.335445pt;}
.h0_c01452{height:1111.866667pt;}
.h1_c01452{height:1112.000000pt;}
.w0_c01452{width:810.666667pt;}
.x0_c01452{left:0.000000pt;}
.x86_c01452{left:1.680000pt;}
.x13_c01452{left:100.145896pt;}
.x7b_c01452{left:103.680000pt;}
.x59_c01452{left:109.783357pt;}
.xc_c01452{left:119.725960pt;}
.x3c_c01452{left:121.052947pt;}
.x63_c01452{left:122.466837pt;}
.x89_c01452{left:124.560000pt;}
.x14_c01452{left:148.828563pt;}
.x26_c01452{left:149.838293pt;}
.x1c_c01452{left:153.719229pt;}
.x4b_c01452{left:161.082384pt;}
.x73_c01452{left:162.276507pt;}
.x8a_c01452{left:163.680000pt;}
.x87_c01452{left:169.680000pt;}
.x15_c01452{left:196.393896pt;}
.x3d_c01452{left:202.981792pt;}
.x4c_c01452{left:208.410104pt;}
.x67_c01452{left:209.516085pt;}
.x90_c01452{left:219.662667pt;}
.x8b_c01452{left:221.280000pt;}
.x4_c01452{left:252.070667pt;}
.xd_c01452{left:253.057693pt;}
.x2e_c01452{left:254.402112pt;}
.x35_c01452{left:255.909963pt;}
.x43_c01452{left:257.280347pt;}
.x88_c01452{left:258.960000pt;}
.x27_c01452{left:261.794283pt;}
.x96_c01452{left:270.064000pt;}
.x1d_c01452{left:283.756336pt;}
.x5f_c01452{left:285.466725pt;}
.x80_c01452{left:287.606667pt;}
.x97_c01452{left:288.566667pt;}
.xe_c01452{left:291.214571pt;}
.x23_c01452{left:293.667819pt;}
.x3e_c01452{left:303.058525pt;}
.x28_c01452{left:304.992429pt;}
.x8c_c01452{left:306.000000pt;}
.x74_c01452{left:307.016507pt;}
.x1e_c01452{left:310.896008pt;}
.x16_c01452{left:312.313896pt;}
.x44_c01452{left:313.441037pt;}
.x60_c01452{left:314.984864pt;}
.x98_c01452{left:318.802667pt;}
.x5_c01452{left:321.192000pt;}
.x75_c01452{left:326.952507pt;}
.x5a_c01452{left:333.960648pt;}
.x3b_c01452{left:335.760629pt;}
.x24_c01452{left:341.665909pt;}
.x2f_c01452{left:342.601099pt;}
.x54_c01452{left:343.578152pt;}
.x68_c01452{left:344.878291pt;}
.x6f_c01452{left:345.903440pt;}
.x6_c01452{left:348.790667pt;}
.xf_c01452{left:350.735192pt;}
.x29_c01452{left:352.270528pt;}
.x25_c01452{left:360.857677pt;}
.x4d_c01452{left:363.206509pt;}
.x64_c01452{left:364.896048pt;}
.x1_c01452{left:369.360000pt;}
.x45_c01452{left:372.001816pt;}
.x5b_c01452{left:374.526339pt;}
.x91_c01452{left:375.654667pt;}
.x10_c01452{left:382.121483pt;}
.x7c_c01452{left:383.760000pt;}
.x2_c01452{left:389.760000pt;}
.x69_c01452{left:394.078725pt;}
.x46_c01452{left:402.002896pt;}
.x81_c01452{left:404.956000pt;}
.x36_c01452{left:409.055717pt;}
.x30_c01452{left:410.289216pt;}
.x76_c01452{left:413.115173pt;}
.x92_c01452{left:414.538667pt;}
.x11_c01452{left:419.851693pt;}
.x3_c01452{left:426.480000pt;}
.x17_c01452{left:427.992563pt;}
.x1f_c01452{left:429.215925pt;}
.x61_c01452{left:430.661443pt;}
.x82_c01452{left:433.546667pt;}
.x7_c01452{left:437.597333pt;}
.x4e_c01452{left:441.432704pt;}
.x2a_c01452{left:447.546717pt;}
.x12_c01452{left:449.458008pt;}
.x65_c01452{left:451.512861pt;}
.x77_c01452{left:453.203173pt;}
.x62_c01452{left:460.199581pt;}
.x93_c01452{left:463.258667pt;}
.x99_c01452{left:465.188000pt;}
.x18_c01452{left:476.960563pt;}
.x4f_c01452{left:479.133813pt;}
.x5c_c01452{left:480.129136pt;}
.x6a_c01452{left:481.440536pt;}
.x8_c01452{left:486.321333pt;}
.x31_c01452{left:488.502475pt;}
.x70_c01452{left:490.650576pt;}
.x2b_c01452{left:497.464784pt;}
.x55_c01452{left:498.578955pt;}
.x8d_c01452{left:502.800000pt;}
.x50_c01452{left:509.861629pt;}
.x9_c01452{left:514.646667pt;}
.x20_c01452{left:517.309536pt;}
.x6b_c01452{left:519.600579pt;}
.x9a_c01452{left:523.057333pt;}
.x3f_c01452{left:525.051856pt;}
.x32_c01452{left:525.964469pt;}
.x56_c01452{left:527.866603pt;}
.x83_c01452{left:531.229333pt;}
.x37_c01452{left:533.841632pt;}
.x94_c01452{left:540.541333pt;}
.x19_c01452{left:545.361896pt;}
.x47_c01452{left:547.445461pt;}
.x7d_c01452{left:549.360000pt;}
.x57_c01452{left:556.668925pt;}
.x6c_c01452{left:559.440677pt;}
.x40_c01452{left:564.170291pt;}
.x33_c01452{left:566.773067pt;}
.x51_c01452{left:576.581229pt;}
.x71_c01452{left:578.490048pt;}
.x1a_c01452{left:585.205896pt;}
.x5d_c01452{left:586.691909pt;}
.x7e_c01452{left:588.480000pt;}
.x95_c01452{left:589.981333pt;}
.x2c_c01452{left:592.740973pt;}
.x38_c01452{left:594.821264pt;}
.x78_c01452{left:598.167173pt;}
.x84_c01452{left:599.606667pt;}
.x21_c01452{left:603.703163pt;}
.x52_c01452{left:604.663728pt;}
.x72_c01452{left:606.336547pt;}
.xa_c01452{left:612.804000pt;}
.x8e_c01452{left:618.720000pt;}
.x39_c01452{left:622.902429pt;}
.x6d_c01452{left:625.681728pt;}
.x22_c01452{left:632.990811pt;}
.x58_c01452{left:637.798616pt;}
.xb_c01452{left:641.608000pt;}
.x8f_c01452{left:646.560000pt;}
.x79_c01452{left:648.528507pt;}
.x9b_c01452{left:650.012000pt;}
.x48_c01452{left:653.527944pt;}
.x41_c01452{left:661.607040pt;}
.x6e_c01452{left:666.961883pt;}
.x34_c01452{left:673.568472pt;}
.x66_c01452{left:674.743525pt;}
.x1b_c01452{left:681.908563pt;}
.x5e_c01452{left:683.881573pt;}
.x7a_c01452{left:685.045840pt;}
.x7f_c01452{left:687.120000pt;}
.x49_c01452{left:693.848059pt;}
.x53_c01452{left:715.484397pt;}
.x42_c01452{left:720.165355pt;}
.x3a_c01452{left:721.539171pt;}
.x2d_c01452{left:728.335349pt;}
.x9c_c01452{left:736.409333pt;}
.x85_c01452{left:745.030667pt;}
.x4a_c01452{left:750.728773pt;}
}





/* 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_c01453 {
    display:none;
  }
  .loading-indicator_c01453.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01453 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_c01453 { 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_c01453" -> "#page-container .classname_c01453")
 */
.pf_c01453 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01453 { /* 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_c01453.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01453 { /* 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_c01453 { /* 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_c01453 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01453 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01453 {overflow:visible;}
  }
}
.c_c01453 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01453 { /* 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_c01453:after { /* webkit #35443 */
  content: '';
}
.t_c01453:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01453 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 */
}
.__c01453 { /* 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_c01453 { /* info for Javascript */
  display:none;
}
.l_c01453 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01453 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01453 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01453: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_c01453 {
    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_c01453.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01453.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_c01453 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01453{font-family:sans-serif;visibility:hidden;}
.sc__c01453{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01453{-webkit-text-stroke:0px transparent;}
}
.y0_c01453{bottom:0.000000px;}
.h0_c01453{height:1250.850000px;}
.h1_c01453{height:1251.000000px;}
.w1_c01453{width:894.750000px;}
.w0_c01453{width:895.050000px;}
.x0_c01453{left:0.000000px;}
@media print{
.y0_c01453{bottom:0.000000pt;}
.h0_c01453{height:1111.866667pt;}
.h1_c01453{height:1112.000000pt;}
.w1_c01453{width:795.333333pt;}
.w0_c01453{width:795.600000pt;}
.x0_c01453{left:0.000000pt;}
}





/* 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_c01454 {
    display:none;
  }
  .loading-indicator_c01454.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01454 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_c01454 { 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_c01454" -> "#page-container .classname_c01454")
 */
.pf_c01454 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01454 { /* 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_c01454.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01454 { /* 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_c01454 { /* 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_c01454 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01454 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01454 {overflow:visible;}
  }
}
.c_c01454 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01454 { /* 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_c01454:after { /* webkit #35443 */
  content: '';
}
.t_c01454:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01454 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 */
}
.__c01454 { /* 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_c01454 { /* info for Javascript */
  display:none;
}
.l_c01454 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01454 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01454 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01454: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_c01454 {
    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_c01454.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01454.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_c01454 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01454{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01454;src:url('chunks/assets/font_b11a17f404e7258299fdf971.woff2')format("woff");}.ff1_c01454{font-family:ff1_c01454;line-height:1.000000;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;}
.mdb_c01454{transform:matrix(0.007300,0.000066,-0.002250,0.249990,0,0);-ms-transform:matrix(0.007300,0.000066,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.007300,0.000066,-0.002250,0.249990,0,0);}
.mc6_c01454{transform:matrix(0.008895,0.000071,-0.002000,0.249992,0,0);-ms-transform:matrix(0.008895,0.000071,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.008895,0.000071,-0.002000,0.249992,0,0);}
.m1a_c01454{transform:matrix(0.022164,0.000177,-0.002000,0.249992,0,0);-ms-transform:matrix(0.022164,0.000177,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.022164,0.000177,-0.002000,0.249992,0,0);}
.ma8_c01454{transform:matrix(0.023219,0.000186,-0.002000,0.249992,0,0);-ms-transform:matrix(0.023219,0.000186,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.023219,0.000186,-0.002000,0.249992,0,0);}
.mb7_c01454{transform:matrix(0.136927,0.002191,-0.003999,0.249968,0,0);-ms-transform:matrix(0.136927,0.002191,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.136927,0.002191,-0.003999,0.249968,0,0);}
.m59_c01454{transform:matrix(0.137751,0.001102,-0.002000,0.249992,0,0);-ms-transform:matrix(0.137751,0.001102,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.137751,0.001102,-0.002000,0.249992,0,0);}
.m32_c01454{transform:matrix(0.137945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137945,0.000000,0.000000,0.250000,0,0);}
.m2e_c01454{transform:matrix(0.138955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138955,0.000000,0.000000,0.250000,0,0);}
.mdc_c01454{transform:matrix(0.139164,0.001252,-0.002250,0.249990,0,0);-ms-transform:matrix(0.139164,0.001252,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.139164,0.001252,-0.002250,0.249990,0,0);}
.m31_c01454{transform:matrix(0.142615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142615,0.000000,0.000000,0.250000,0,0);}
.m8d_c01454{transform:matrix(0.143925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143925,0.000000,0.000000,0.250000,0,0);}
.m88_c01454{transform:matrix(0.145280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145280,0.000000,0.000000,0.250000,0,0);}
.m8c_c01454{transform:matrix(0.146800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146800,0.000000,0.000000,0.250000,0,0);}
.m2d_c01454{transform:matrix(0.146875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146875,0.000000,0.000000,0.250000,0,0);}
.m89_c01454{transform:matrix(0.147185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147185,0.000000,0.000000,0.250000,0,0);}
.m33_c01454{transform:matrix(0.151400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151400,0.000000,0.000000,0.250000,0,0);}
.m50_c01454{transform:matrix(0.154775,0.001238,-0.002000,0.249992,0,0);-ms-transform:matrix(0.154775,0.001238,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.154775,0.001238,-0.002000,0.249992,0,0);}
.m58_c01454{transform:matrix(0.155085,0.001241,-0.002000,0.249992,0,0);-ms-transform:matrix(0.155085,0.001241,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.155085,0.001241,-0.002000,0.249992,0,0);}
.m6f_c01454{transform:matrix(0.157526,0.001103,-0.001750,0.249994,0,0);-ms-transform:matrix(0.157526,0.001103,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.157526,0.001103,-0.001750,0.249994,0,0);}
.m55_c01454{transform:matrix(0.157600,0.001261,-0.002000,0.249992,0,0);-ms-transform:matrix(0.157600,0.001261,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.157600,0.001261,-0.002000,0.249992,0,0);}
.m24_c01454{transform:matrix(0.158547,0.000951,-0.001500,0.249996,0,0);-ms-transform:matrix(0.158547,0.000951,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.158547,0.000951,-0.001500,0.249996,0,0);}
.m21_c01454{transform:matrix(0.158762,0.000953,-0.001500,0.249996,0,0);-ms-transform:matrix(0.158762,0.000953,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.158762,0.000953,-0.001500,0.249996,0,0);}
.m1f_c01454{transform:matrix(0.158782,0.000953,-0.001500,0.249996,0,0);-ms-transform:matrix(0.158782,0.000953,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.158782,0.000953,-0.001500,0.249996,0,0);}
.m52_c01454{transform:matrix(0.160205,0.001282,-0.002000,0.249992,0,0);-ms-transform:matrix(0.160205,0.001282,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.160205,0.001282,-0.002000,0.249992,0,0);}
.m5a_c01454{transform:matrix(0.160240,0.001282,-0.002000,0.249992,0,0);-ms-transform:matrix(0.160240,0.001282,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.160240,0.001282,-0.002000,0.249992,0,0);}
.m2f_c01454{transform:matrix(0.160615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160615,0.000000,0.000000,0.250000,0,0);}
.m22_c01454{transform:matrix(0.163237,0.000979,-0.001500,0.249996,0,0);-ms-transform:matrix(0.163237,0.000979,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.163237,0.000979,-0.001500,0.249996,0,0);}
.md9_c01454{transform:matrix(0.165133,0.001486,-0.002250,0.249990,0,0);-ms-transform:matrix(0.165133,0.001486,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.165133,0.001486,-0.002250,0.249990,0,0);}
.mdd_c01454{transform:matrix(0.165218,0.001487,-0.002250,0.249990,0,0);-ms-transform:matrix(0.165218,0.001487,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.165218,0.001487,-0.002250,0.249990,0,0);}
.m4f_c01454{transform:matrix(0.170815,0.001367,-0.002000,0.249992,0,0);-ms-transform:matrix(0.170815,0.001367,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.170815,0.001367,-0.002000,0.249992,0,0);}
.m6a_c01454{transform:matrix(0.171061,0.001197,-0.001750,0.249994,0,0);-ms-transform:matrix(0.171061,0.001197,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.171061,0.001197,-0.001750,0.249994,0,0);}
.m1c_c01454{transform:matrix(0.173272,0.001040,-0.001500,0.249996,0,0);-ms-transform:matrix(0.173272,0.001040,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.173272,0.001040,-0.001500,0.249996,0,0);}
.m4d_c01454{transform:matrix(0.174159,0.001393,-0.002000,0.249992,0,0);-ms-transform:matrix(0.174159,0.001393,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.174159,0.001393,-0.002000,0.249992,0,0);}
.m9a_c01454{transform:matrix(0.174614,0.001397,-0.002000,0.249992,0,0);-ms-transform:matrix(0.174614,0.001397,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.174614,0.001397,-0.002000,0.249992,0,0);}
.me4_c01454{transform:matrix(0.175763,0.001582,-0.002250,0.249990,0,0);-ms-transform:matrix(0.175763,0.001582,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.175763,0.001582,-0.002250,0.249990,0,0);}
.m7f_c01454{transform:matrix(0.179675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179675,0.000000,0.000000,0.250000,0,0);}
.m20_c01454{transform:matrix(0.180427,0.001083,-0.001500,0.249996,0,0);-ms-transform:matrix(0.180427,0.001083,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.180427,0.001083,-0.001500,0.249996,0,0);}
.md0_c01454{transform:matrix(0.182609,0.002009,-0.002750,0.249985,0,0);-ms-transform:matrix(0.182609,0.002009,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.182609,0.002009,-0.002750,0.249985,0,0);}
.m5b_c01454{transform:matrix(0.182749,0.001462,-0.002000,0.249992,0,0);-ms-transform:matrix(0.182749,0.001462,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.182749,0.001462,-0.002000,0.249992,0,0);}
.m23_c01454{transform:matrix(0.182882,0.001097,-0.001500,0.249996,0,0);-ms-transform:matrix(0.182882,0.001097,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.182882,0.001097,-0.001500,0.249996,0,0);}
.m1e_c01454{transform:matrix(0.183862,0.001103,-0.001500,0.249996,0,0);-ms-transform:matrix(0.183862,0.001103,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.183862,0.001103,-0.001500,0.249996,0,0);}
.mc4_c01454{transform:matrix(0.185229,0.001482,-0.002000,0.249992,0,0);-ms-transform:matrix(0.185229,0.001482,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.185229,0.001482,-0.002000,0.249992,0,0);}
.mab_c01454{transform:matrix(0.186361,0.002982,-0.003999,0.249968,0,0);-ms-transform:matrix(0.186361,0.002982,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.186361,0.002982,-0.003999,0.249968,0,0);}
.m1b_c01454{transform:matrix(0.186417,0.001118,-0.001500,0.249996,0,0);-ms-transform:matrix(0.186417,0.001118,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.186417,0.001118,-0.001500,0.249996,0,0);}
.m4e_c01454{transform:matrix(0.186604,0.001493,-0.002000,0.249992,0,0);-ms-transform:matrix(0.186604,0.001493,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.186604,0.001493,-0.002000,0.249992,0,0);}
.m54_c01454{transform:matrix(0.186674,0.001493,-0.002000,0.249992,0,0);-ms-transform:matrix(0.186674,0.001493,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.186674,0.001493,-0.002000,0.249992,0,0);}
.mdf_c01454{transform:matrix(0.187227,0.001685,-0.002250,0.249990,0,0);-ms-transform:matrix(0.187227,0.001685,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.187227,0.001685,-0.002250,0.249990,0,0);}
.m83_c01454{transform:matrix(0.190980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190980,0.000000,0.000000,0.250000,0,0);}
.me1_c01454{transform:matrix(0.191007,0.001719,-0.002250,0.249990,0,0);-ms-transform:matrix(0.191007,0.001719,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.191007,0.001719,-0.002250,0.249990,0,0);}
.m35_c01454{transform:matrix(0.191240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191240,0.000000,0.000000,0.250000,0,0);}
.me3_c01454{transform:matrix(0.192397,0.001732,-0.002250,0.249990,0,0);-ms-transform:matrix(0.192397,0.001732,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.192397,0.001732,-0.002250,0.249990,0,0);}
.m57_c01454{transform:matrix(0.193444,0.001548,-0.002000,0.249992,0,0);-ms-transform:matrix(0.193444,0.001548,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.193444,0.001548,-0.002000,0.249992,0,0);}
.m51_c01454{transform:matrix(0.193704,0.001550,-0.002000,0.249992,0,0);-ms-transform:matrix(0.193704,0.001550,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.193704,0.001550,-0.002000,0.249992,0,0);}
.m11_c01454{transform:matrix(0.193764,0.001550,-0.002000,0.249992,0,0);-ms-transform:matrix(0.193764,0.001550,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.193764,0.001550,-0.002000,0.249992,0,0);}
.m2c_c01454{transform:matrix(0.194380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194380,0.000000,0.000000,0.250000,0,0);}
.m56_c01454{transform:matrix(0.194579,0.001557,-0.002000,0.249992,0,0);-ms-transform:matrix(0.194579,0.001557,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.194579,0.001557,-0.002000,0.249992,0,0);}
.m10_c01454{transform:matrix(0.195099,0.001561,-0.002000,0.249992,0,0);-ms-transform:matrix(0.195099,0.001561,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.195099,0.001561,-0.002000,0.249992,0,0);}
.m9f_c01454{transform:matrix(0.195684,0.001565,-0.002000,0.249992,0,0);-ms-transform:matrix(0.195684,0.001565,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.195684,0.001565,-0.002000,0.249992,0,0);}
.ma_c01454{transform:matrix(0.195870,0.001371,-0.001750,0.249994,0,0);-ms-transform:matrix(0.195870,0.001371,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.195870,0.001371,-0.001750,0.249994,0,0);}
.m1d_c01454{transform:matrix(0.198041,0.001188,-0.001500,0.249996,0,0);-ms-transform:matrix(0.198041,0.001188,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.198041,0.001188,-0.001500,0.249996,0,0);}
.m30_c01454{transform:matrix(0.198090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198090,0.000000,0.000000,0.250000,0,0);}
.m16_c01454{transform:matrix(0.198529,0.001588,-0.002000,0.249992,0,0);-ms-transform:matrix(0.198529,0.001588,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.198529,0.001588,-0.002000,0.249992,0,0);}
.m9d_c01454{transform:matrix(0.198669,0.001589,-0.002000,0.249992,0,0);-ms-transform:matrix(0.198669,0.001589,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.198669,0.001589,-0.002000,0.249992,0,0);}
.me0_c01454{transform:matrix(0.199517,0.001796,-0.002250,0.249990,0,0);-ms-transform:matrix(0.199517,0.001796,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.199517,0.001796,-0.002250,0.249990,0,0);}
.m53_c01454{transform:matrix(0.199529,0.001596,-0.002000,0.249992,0,0);-ms-transform:matrix(0.199529,0.001596,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.199529,0.001596,-0.002000,0.249992,0,0);}
.m39_c01454{transform:matrix(0.199700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199700,0.000000,0.000000,0.250000,0,0);}
.m9c_c01454{transform:matrix(0.199969,0.001600,-0.002000,0.249992,0,0);-ms-transform:matrix(0.199969,0.001600,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.199969,0.001600,-0.002000,0.249992,0,0);}
.mac_c01454{transform:matrix(0.200784,0.003213,-0.003999,0.249968,0,0);-ms-transform:matrix(0.200784,0.003213,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.200784,0.003213,-0.003999,0.249968,0,0);}
.mb6_c01454{transform:matrix(0.202189,0.003235,-0.003999,0.249968,0,0);-ms-transform:matrix(0.202189,0.003235,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.202189,0.003235,-0.003999,0.249968,0,0);}
.m80_c01454{transform:matrix(0.202290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202290,0.000000,0.000000,0.250000,0,0);}
.mf_c01454{transform:matrix(0.203119,0.001625,-0.002000,0.249992,0,0);-ms-transform:matrix(0.203119,0.001625,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.203119,0.001625,-0.002000,0.249992,0,0);}
.ma3_c01454{transform:matrix(0.203163,0.001625,-0.002000,0.249992,0,0);-ms-transform:matrix(0.203163,0.001625,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.203163,0.001625,-0.002000,0.249992,0,0);}
.md5_c01454{transform:matrix(0.203542,0.001832,-0.002250,0.249990,0,0);-ms-transform:matrix(0.203542,0.001832,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.203542,0.001832,-0.002250,0.249990,0,0);}
.mcd_c01454{transform:matrix(0.204183,0.002246,-0.002750,0.249985,0,0);-ms-transform:matrix(0.204183,0.002246,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.204183,0.002246,-0.002750,0.249985,0,0);}
.mc3_c01454{transform:matrix(0.204638,0.001637,-0.002000,0.249992,0,0);-ms-transform:matrix(0.204638,0.001637,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.204638,0.001637,-0.002000,0.249992,0,0);}
.ma1_c01454{transform:matrix(0.205898,0.001647,-0.002000,0.249992,0,0);-ms-transform:matrix(0.205898,0.001647,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.205898,0.001647,-0.002000,0.249992,0,0);}
.m96_c01454{transform:matrix(0.205908,0.001647,-0.002000,0.249992,0,0);-ms-transform:matrix(0.205908,0.001647,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.205908,0.001647,-0.002000,0.249992,0,0);}
.mc5_c01454{transform:matrix(0.206048,0.001648,-0.002000,0.249992,0,0);-ms-transform:matrix(0.206048,0.001648,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.206048,0.001648,-0.002000,0.249992,0,0);}
.m37_c01454{transform:matrix(0.206095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206095,0.000000,0.000000,0.250000,0,0);}
.me6_c01454{transform:matrix(0.206762,0.001861,-0.002250,0.249990,0,0);-ms-transform:matrix(0.206762,0.001861,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.206762,0.001861,-0.002250,0.249990,0,0);}
.m8b_c01454{transform:matrix(0.207310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207310,0.000000,0.000000,0.250000,0,0);}
.m81_c01454{transform:matrix(0.207675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207675,0.000000,0.000000,0.250000,0,0);}
.m8a_c01454{transform:matrix(0.207945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207945,0.000000,0.000000,0.250000,0,0);}
.m7_c01454{transform:matrix(0.208670,0.001461,-0.001750,0.249994,0,0);-ms-transform:matrix(0.208670,0.001461,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.208670,0.001461,-0.001750,0.249994,0,0);}
.mde_c01454{transform:matrix(0.208837,0.001880,-0.002250,0.249990,0,0);-ms-transform:matrix(0.208837,0.001880,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.208837,0.001880,-0.002250,0.249990,0,0);}
.m29_c01454{transform:matrix(0.209296,0.001256,-0.001500,0.249996,0,0);-ms-transform:matrix(0.209296,0.001256,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.209296,0.001256,-0.001500,0.249996,0,0);}
.m61_c01454{transform:matrix(0.210578,0.001685,-0.002000,0.249992,0,0);-ms-transform:matrix(0.210578,0.001685,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.210578,0.001685,-0.002000,0.249992,0,0);}
.ma2_c01454{transform:matrix(0.210698,0.001686,-0.002000,0.249992,0,0);-ms-transform:matrix(0.210698,0.001686,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.210698,0.001686,-0.002000,0.249992,0,0);}
.mb5_c01454{transform:matrix(0.213023,0.003408,-0.003999,0.249968,0,0);-ms-transform:matrix(0.213023,0.003408,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.213023,0.003408,-0.003999,0.249968,0,0);}
.mbb_c01454{transform:matrix(0.213128,0.001705,-0.002000,0.249992,0,0);-ms-transform:matrix(0.213128,0.001705,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.213128,0.001705,-0.002000,0.249992,0,0);}
.m12_c01454{transform:matrix(0.213208,0.001706,-0.002000,0.249992,0,0);-ms-transform:matrix(0.213208,0.001706,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.213208,0.001706,-0.002000,0.249992,0,0);}
.ma9_c01454{transform:matrix(0.214253,0.003428,-0.003999,0.249968,0,0);-ms-transform:matrix(0.214253,0.003428,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.214253,0.003428,-0.003999,0.249968,0,0);}
.m60_c01454{transform:matrix(0.215053,0.001720,-0.002000,0.249992,0,0);-ms-transform:matrix(0.215053,0.001720,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.215053,0.001720,-0.002000,0.249992,0,0);}
.m86_c01454{transform:matrix(0.215755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215755,0.000000,0.000000,0.250000,0,0);}
.m41_c01454{transform:matrix(0.216328,0.001731,-0.002000,0.249992,0,0);-ms-transform:matrix(0.216328,0.001731,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.216328,0.001731,-0.002000,0.249992,0,0);}
.md_c01454{transform:matrix(0.216330,0.001514,-0.001750,0.249994,0,0);-ms-transform:matrix(0.216330,0.001514,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.216330,0.001514,-0.001750,0.249994,0,0);}
.m98_c01454{transform:matrix(0.216523,0.001732,-0.002000,0.249992,0,0);-ms-transform:matrix(0.216523,0.001732,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.216523,0.001732,-0.002000,0.249992,0,0);}
.m79_c01454{transform:matrix(0.216995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216995,0.000000,0.000000,0.250000,0,0);}
.m18_c01454{transform:matrix(0.217613,0.001741,-0.002000,0.249992,0,0);-ms-transform:matrix(0.217613,0.001741,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.217613,0.001741,-0.002000,0.249992,0,0);}
.m8_c01454{transform:matrix(0.217615,0.001523,-0.001750,0.249994,0,0);-ms-transform:matrix(0.217615,0.001523,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.217615,0.001523,-0.001750,0.249994,0,0);}
.ma6_c01454{transform:matrix(0.217698,0.001742,-0.002000,0.249992,0,0);-ms-transform:matrix(0.217698,0.001742,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.217698,0.001742,-0.002000,0.249992,0,0);}
.ma0_c01454{transform:matrix(0.217768,0.001742,-0.002000,0.249992,0,0);-ms-transform:matrix(0.217768,0.001742,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.217768,0.001742,-0.002000,0.249992,0,0);}
.mb_c01454{transform:matrix(0.218935,0.001533,-0.001750,0.249994,0,0);-ms-transform:matrix(0.218935,0.001533,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.218935,0.001533,-0.001750,0.249994,0,0);}
.m3d_c01454{transform:matrix(0.219043,0.001752,-0.002000,0.249992,0,0);-ms-transform:matrix(0.219043,0.001752,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.219043,0.001752,-0.002000,0.249992,0,0);}
.maf_c01454{transform:matrix(0.221242,0.003540,-0.003999,0.249968,0,0);-ms-transform:matrix(0.221242,0.003540,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.221242,0.003540,-0.003999,0.249968,0,0);}
.mda_c01454{transform:matrix(0.221446,0.001993,-0.002250,0.249990,0,0);-ms-transform:matrix(0.221446,0.001993,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.221446,0.001993,-0.002250,0.249990,0,0);}
.m34_c01454{transform:matrix(0.221455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221455,0.000000,0.000000,0.250000,0,0);}
.mae_c01454{transform:matrix(0.221972,0.003552,-0.003999,0.249968,0,0);-ms-transform:matrix(0.221972,0.003552,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.221972,0.003552,-0.003999,0.249968,0,0);}
.m63_c01454{transform:matrix(0.222118,0.001777,-0.002000,0.249992,0,0);-ms-transform:matrix(0.222118,0.001777,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.222118,0.001777,-0.002000,0.249992,0,0);}
.maa_c01454{transform:matrix(0.222257,0.003556,-0.003999,0.249968,0,0);-ms-transform:matrix(0.222257,0.003556,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.222257,0.003556,-0.003999,0.249968,0,0);}
.mbe_c01454{transform:matrix(0.222933,0.001783,-0.002000,0.249992,0,0);-ms-transform:matrix(0.222933,0.001783,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.222933,0.001783,-0.002000,0.249992,0,0);}
.m2_c01454{transform:matrix(0.222990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222990,0.000000,0.000000,0.250000,0,0);}
.m15_c01454{transform:matrix(0.223353,0.001787,-0.002000,0.249992,0,0);-ms-transform:matrix(0.223353,0.001787,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.223353,0.001787,-0.002000,0.249992,0,0);}
.mbf_c01454{transform:matrix(0.223373,0.001787,-0.002000,0.249992,0,0);-ms-transform:matrix(0.223373,0.001787,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.223373,0.001787,-0.002000,0.249992,0,0);}
.m73_c01454{transform:matrix(0.223380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223380,0.000000,0.000000,0.250000,0,0);}
.m14_c01454{transform:matrix(0.225293,0.001802,-0.002000,0.249992,0,0);-ms-transform:matrix(0.225293,0.001802,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.225293,0.001802,-0.002000,0.249992,0,0);}
.m69_c01454{transform:matrix(0.225339,0.001577,-0.001750,0.249994,0,0);-ms-transform:matrix(0.225339,0.001577,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.225339,0.001577,-0.001750,0.249994,0,0);}
.m5d_c01454{transform:matrix(0.226508,0.001812,-0.002000,0.249992,0,0);-ms-transform:matrix(0.226508,0.001812,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.226508,0.001812,-0.002000,0.249992,0,0);}
.m99_c01454{transform:matrix(0.226623,0.001813,-0.002000,0.249992,0,0);-ms-transform:matrix(0.226623,0.001813,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.226623,0.001813,-0.002000,0.249992,0,0);}
.m92_c01454{transform:matrix(0.226738,0.001814,-0.002000,0.249992,0,0);-ms-transform:matrix(0.226738,0.001814,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.226738,0.001814,-0.002000,0.249992,0,0);}
.mb3_c01454{transform:matrix(0.226871,0.003630,-0.003999,0.249968,0,0);-ms-transform:matrix(0.226871,0.003630,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.226871,0.003630,-0.003999,0.249968,0,0);}
.m13_c01454{transform:matrix(0.227283,0.001818,-0.002000,0.249992,0,0);-ms-transform:matrix(0.227283,0.001818,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.227283,0.001818,-0.002000,0.249992,0,0);}
.m3b_c01454{transform:matrix(0.227743,0.001822,-0.002000,0.249992,0,0);-ms-transform:matrix(0.227743,0.001822,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.227743,0.001822,-0.002000,0.249992,0,0);}
.m84_c01454{transform:matrix(0.227985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227985,0.000000,0.000000,0.250000,0,0);}
.m7a_c01454{transform:matrix(0.228510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228510,0.000000,0.000000,0.250000,0,0);}
.mbc_c01454{transform:matrix(0.228623,0.001829,-0.002000,0.249992,0,0);-ms-transform:matrix(0.228623,0.001829,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.228623,0.001829,-0.002000,0.249992,0,0);}
.m43_c01454{transform:matrix(0.228748,0.001830,-0.002000,0.249992,0,0);-ms-transform:matrix(0.228748,0.001830,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.228748,0.001830,-0.002000,0.249992,0,0);}
.m3f_c01454{transform:matrix(0.229198,0.001834,-0.002000,0.249992,0,0);-ms-transform:matrix(0.229198,0.001834,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.229198,0.001834,-0.002000,0.249992,0,0);}
.ma4_c01454{transform:matrix(0.229768,0.001838,-0.002000,0.249992,0,0);-ms-transform:matrix(0.229768,0.001838,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.229768,0.001838,-0.002000,0.249992,0,0);}
.mb1_c01454{transform:matrix(0.230481,0.003688,-0.003999,0.249968,0,0);-ms-transform:matrix(0.230481,0.003688,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.230481,0.003688,-0.003999,0.249968,0,0);}
.m17_c01454{transform:matrix(0.231508,0.001852,-0.002000,0.249992,0,0);-ms-transform:matrix(0.231508,0.001852,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.231508,0.001852,-0.002000,0.249992,0,0);}
.m62_c01454{transform:matrix(0.232058,0.001856,-0.002000,0.249992,0,0);-ms-transform:matrix(0.232058,0.001856,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.232058,0.001856,-0.002000,0.249992,0,0);}
.mb2_c01454{transform:matrix(0.232165,0.003715,-0.003999,0.249968,0,0);-ms-transform:matrix(0.232165,0.003715,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.232165,0.003715,-0.003999,0.249968,0,0);}
.m5e_c01454{transform:matrix(0.234977,0.001880,-0.002000,0.249992,0,0);-ms-transform:matrix(0.234977,0.001880,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.234977,0.001880,-0.002000,0.249992,0,0);}
.m2b_c01454{transform:matrix(0.234991,0.001410,-0.001500,0.249996,0,0);-ms-transform:matrix(0.234991,0.001410,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.234991,0.001410,-0.001500,0.249996,0,0);}
.m6d_c01454{transform:matrix(0.235074,0.001646,-0.001750,0.249994,0,0);-ms-transform:matrix(0.235074,0.001646,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.235074,0.001646,-0.001750,0.249994,0,0);}
.m65_c01454{transform:matrix(0.235257,0.001882,-0.002000,0.249992,0,0);-ms-transform:matrix(0.235257,0.001882,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.235257,0.001882,-0.002000,0.249992,0,0);}
.mb4_c01454{transform:matrix(0.235430,0.003767,-0.003999,0.249968,0,0);-ms-transform:matrix(0.235430,0.003767,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.235430,0.003767,-0.003999,0.249968,0,0);}
.m9b_c01454{transform:matrix(0.235997,0.001888,-0.002000,0.249992,0,0);-ms-transform:matrix(0.235997,0.001888,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.235997,0.001888,-0.002000,0.249992,0,0);}
.m72_c01454{transform:matrix(0.236900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236900,0.000000,0.000000,0.250000,0,0);}
.m74_c01454{transform:matrix(0.237035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237035,0.000000,0.000000,0.250000,0,0);}
.mcb_c01454{transform:matrix(0.237291,0.002610,-0.002750,0.249985,0,0);-ms-transform:matrix(0.237291,0.002610,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.237291,0.002610,-0.002750,0.249985,0,0);}
.mc0_c01454{transform:matrix(0.237662,0.001901,-0.002000,0.249992,0,0);-ms-transform:matrix(0.237662,0.001901,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.237662,0.001901,-0.002000,0.249992,0,0);}
.m95_c01454{transform:matrix(0.238147,0.001905,-0.002000,0.249992,0,0);-ms-transform:matrix(0.238147,0.001905,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.238147,0.001905,-0.002000,0.249992,0,0);}
.m27_c01454{transform:matrix(0.238596,0.001432,-0.001500,0.249996,0,0);-ms-transform:matrix(0.238596,0.001432,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.238596,0.001432,-0.001500,0.249996,0,0);}
.mc1_c01454{transform:matrix(0.238632,0.001909,-0.002000,0.249992,0,0);-ms-transform:matrix(0.238632,0.001909,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.238632,0.001909,-0.002000,0.249992,0,0);}
.m75_c01454{transform:matrix(0.239070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239070,0.000000,0.000000,0.250000,0,0);}
.mca_c01454{transform:matrix(0.239641,0.002636,-0.002750,0.249985,0,0);-ms-transform:matrix(0.239641,0.002636,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.239641,0.002636,-0.002750,0.249985,0,0);}
.md6_c01454{transform:matrix(0.239950,0.002160,-0.002250,0.249990,0,0);-ms-transform:matrix(0.239950,0.002160,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.239950,0.002160,-0.002250,0.249990,0,0);}
.mb8_c01454{transform:matrix(0.240289,0.003845,-0.003999,0.249968,0,0);-ms-transform:matrix(0.240289,0.003845,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.240289,0.003845,-0.003999,0.249968,0,0);}
.m3c_c01454{transform:matrix(0.240527,0.001924,-0.002000,0.249992,0,0);-ms-transform:matrix(0.240527,0.001924,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.240527,0.001924,-0.002000,0.249992,0,0);}
.md2_c01454{transform:matrix(0.240530,0.002646,-0.002750,0.249985,0,0);-ms-transform:matrix(0.240530,0.002646,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.240530,0.002646,-0.002750,0.249985,0,0);}
.me9_c01454{transform:matrix(0.240814,0.001686,-0.001750,0.249994,0,0);-ms-transform:matrix(0.240814,0.001686,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.240814,0.001686,-0.001750,0.249994,0,0);}
.m3e_c01454{transform:matrix(0.241787,0.001934,-0.002000,0.249992,0,0);-ms-transform:matrix(0.241787,0.001934,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.241787,0.001934,-0.002000,0.249992,0,0);}
.m4a_c01454{transform:matrix(0.242332,0.001939,-0.002000,0.249992,0,0);-ms-transform:matrix(0.242332,0.001939,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.242332,0.001939,-0.002000,0.249992,0,0);}
.mef_c01454{transform:matrix(0.242414,0.001697,-0.001750,0.249994,0,0);-ms-transform:matrix(0.242414,0.001697,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.242414,0.001697,-0.001750,0.249994,0,0);}
.m78_c01454{transform:matrix(0.242650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242650,0.000000,0.000000,0.250000,0,0);}
.m6e_c01454{transform:matrix(0.242739,0.001699,-0.001750,0.249994,0,0);-ms-transform:matrix(0.242739,0.001699,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.242739,0.001699,-0.001750,0.249994,0,0);}
.mcf_c01454{transform:matrix(0.243360,0.002677,-0.002750,0.249985,0,0);-ms-transform:matrix(0.243360,0.002677,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.243360,0.002677,-0.002750,0.249985,0,0);}
.m26_c01454{transform:matrix(0.243486,0.001461,-0.001500,0.249996,0,0);-ms-transform:matrix(0.243486,0.001461,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.243486,0.001461,-0.001500,0.249996,0,0);}
.ma7_c01454{transform:matrix(0.243562,0.001948,-0.002000,0.249992,0,0);-ms-transform:matrix(0.243562,0.001948,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.243562,0.001948,-0.002000,0.249992,0,0);}
.mee_c01454{transform:matrix(0.244489,0.001711,-0.001750,0.249994,0,0);-ms-transform:matrix(0.244489,0.001711,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.244489,0.001711,-0.001750,0.249994,0,0);}
.ma5_c01454{transform:matrix(0.244597,0.001957,-0.002000,0.249992,0,0);-ms-transform:matrix(0.244597,0.001957,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.244597,0.001957,-0.002000,0.249992,0,0);}
.m42_c01454{transform:matrix(0.244797,0.001958,-0.002000,0.249992,0,0);-ms-transform:matrix(0.244797,0.001958,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.244797,0.001958,-0.002000,0.249992,0,0);}
.m5c_c01454{transform:matrix(0.245142,0.001961,-0.002000,0.249992,0,0);-ms-transform:matrix(0.245142,0.001961,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.245142,0.001961,-0.002000,0.249992,0,0);}
.m93_c01454{transform:matrix(0.245962,0.001968,-0.002000,0.249992,0,0);-ms-transform:matrix(0.245962,0.001968,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.245962,0.001968,-0.002000,0.249992,0,0);}
.m5_c01454{transform:matrix(0.246254,0.001724,-0.001750,0.249994,0,0);-ms-transform:matrix(0.246254,0.001724,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.246254,0.001724,-0.001750,0.249994,0,0);}
.m40_c01454{transform:matrix(0.247017,0.001976,-0.002000,0.249992,0,0);-ms-transform:matrix(0.247017,0.001976,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.247017,0.001976,-0.002000,0.249992,0,0);}
.m36_c01454{transform:matrix(0.247025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247025,0.000000,0.000000,0.250000,0,0);}
.mea_c01454{transform:matrix(0.247094,0.001730,-0.001750,0.249994,0,0);-ms-transform:matrix(0.247094,0.001730,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.247094,0.001730,-0.001750,0.249994,0,0);}
.m7d_c01454{transform:matrix(0.247160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247160,0.000000,0.000000,0.250000,0,0);}
.m2a_c01454{transform:matrix(0.247526,0.001485,-0.001500,0.249996,0,0);-ms-transform:matrix(0.247526,0.001485,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.247526,0.001485,-0.001500,0.249996,0,0);}
.mc2_c01454{transform:matrix(0.247627,0.001981,-0.002000,0.249992,0,0);-ms-transform:matrix(0.247627,0.001981,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.247627,0.001981,-0.002000,0.249992,0,0);}
.mec_c01454{transform:matrix(0.247759,0.001734,-0.001750,0.249994,0,0);-ms-transform:matrix(0.247759,0.001734,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.247759,0.001734,-0.001750,0.249994,0,0);}
.m9_c01454{transform:matrix(0.247984,0.001736,-0.001750,0.249994,0,0);-ms-transform:matrix(0.247984,0.001736,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.247984,0.001736,-0.001750,0.249994,0,0);}
.mb9_c01454{transform:matrix(0.248502,0.001988,-0.002000,0.249992,0,0);-ms-transform:matrix(0.248502,0.001988,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.248502,0.001988,-0.002000,0.249992,0,0);}
.m64_c01454{transform:matrix(0.248667,0.001989,-0.002000,0.249992,0,0);-ms-transform:matrix(0.248667,0.001989,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.248667,0.001989,-0.002000,0.249992,0,0);}
.m28_c01454{transform:matrix(0.249331,0.001496,-0.001500,0.249996,0,0);-ms-transform:matrix(0.249331,0.001496,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.249331,0.001496,-0.001500,0.249996,0,0);}
.m44_c01454{transform:matrix(0.249357,0.001995,-0.002000,0.249992,0,0);-ms-transform:matrix(0.249357,0.001995,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.249357,0.001995,-0.002000,0.249992,0,0);}
.m70_c01454{transform:matrix(0.249399,0.001746,-0.001750,0.249994,0,0);-ms-transform:matrix(0.249399,0.001746,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.249399,0.001746,-0.001750,0.249994,0,0);}
.m19_c01454{transform:matrix(0.249687,0.001997,-0.002000,0.249992,0,0);-ms-transform:matrix(0.249687,0.001997,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.249687,0.001997,-0.002000,0.249992,0,0);}
.md4_c01454{transform:matrix(0.249755,0.002248,-0.002250,0.249990,0,0);-ms-transform:matrix(0.249755,0.002248,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.249755,0.002248,-0.002250,0.249990,0,0);}
.mf0_c01454{transform:matrix(0.249759,0.001748,-0.001750,0.249994,0,0);-ms-transform:matrix(0.249759,0.001748,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.249759,0.001748,-0.001750,0.249994,0,0);}
.m82_c01454{transform:matrix(0.249765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249765,0.000000,0.000000,0.250000,0,0);}
.m25_c01454{transform:matrix(0.249841,0.001499,-0.001500,0.249996,0,0);-ms-transform:matrix(0.249841,0.001499,-0.001500,0.249996,0,0);-webkit-transform:matrix(0.249841,0.001499,-0.001500,0.249996,0,0);}
.m7c_c01454{transform:matrix(0.250110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250110,0.000000,0.000000,0.250000,0,0);}
.mc9_c01454{transform:matrix(0.250375,0.002754,-0.002750,0.249985,0,0);-ms-transform:matrix(0.250375,0.002754,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.250375,0.002754,-0.002750,0.249985,0,0);}
.mc_c01454{transform:matrix(0.250514,0.001754,-0.001750,0.249994,0,0);-ms-transform:matrix(0.250514,0.001754,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.250514,0.001754,-0.001750,0.249994,0,0);}
.mbd_c01454{transform:matrix(0.250772,0.002006,-0.002000,0.249992,0,0);-ms-transform:matrix(0.250772,0.002006,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.250772,0.002006,-0.002000,0.249992,0,0);}
.m77_c01454{transform:matrix(0.250805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250805,0.000000,0.000000,0.250000,0,0);}
.md8_c01454{transform:matrix(0.251225,0.002261,-0.002250,0.249990,0,0);-ms-transform:matrix(0.251225,0.002261,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.251225,0.002261,-0.002250,0.249990,0,0);}
.med_c01454{transform:matrix(0.251859,0.001763,-0.001750,0.249994,0,0);-ms-transform:matrix(0.251859,0.001763,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.251859,0.001763,-0.001750,0.249994,0,0);}
.m3a_c01454{transform:matrix(0.252327,0.002019,-0.002000,0.249992,0,0);-ms-transform:matrix(0.252327,0.002019,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.252327,0.002019,-0.002000,0.249992,0,0);}
.md3_c01454{transform:matrix(0.253205,0.002785,-0.002750,0.249985,0,0);-ms-transform:matrix(0.253205,0.002785,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.253205,0.002785,-0.002750,0.249985,0,0);}
.me8_c01454{transform:matrix(0.253744,0.001776,-0.001750,0.249994,0,0);-ms-transform:matrix(0.253744,0.001776,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.253744,0.001776,-0.001750,0.249994,0,0);}
.md7_c01454{transform:matrix(0.253930,0.002285,-0.002250,0.249990,0,0);-ms-transform:matrix(0.253930,0.002285,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.253930,0.002285,-0.002250,0.249990,0,0);}
.m38_c01454{transform:matrix(0.254380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254380,0.000000,0.000000,0.250000,0,0);}
.m6_c01454{transform:matrix(0.254939,0.001785,-0.001750,0.249994,0,0);-ms-transform:matrix(0.254939,0.001785,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.254939,0.001785,-0.001750,0.249994,0,0);}
.m5f_c01454{transform:matrix(0.255172,0.002041,-0.002000,0.249992,0,0);-ms-transform:matrix(0.255172,0.002041,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.255172,0.002041,-0.002000,0.249992,0,0);}
.m7b_c01454{transform:matrix(0.255310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255310,0.000000,0.000000,0.250000,0,0);}
.m4b_c01454{transform:matrix(0.255572,0.002045,-0.002000,0.249992,0,0);-ms-transform:matrix(0.255572,0.002045,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.255572,0.002045,-0.002000,0.249992,0,0);}
.md1_c01454{transform:matrix(0.256045,0.002816,-0.002750,0.249985,0,0);-ms-transform:matrix(0.256045,0.002816,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.256045,0.002816,-0.002750,0.249985,0,0);}
.m87_c01454{transform:matrix(0.256305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256305,0.000000,0.000000,0.250000,0,0);}
.me_c01454{transform:matrix(0.256479,0.001795,-0.001750,0.249994,0,0);-ms-transform:matrix(0.256479,0.001795,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.256479,0.001795,-0.001750,0.249994,0,0);}
.mcc_c01454{transform:matrix(0.257084,0.002828,-0.002750,0.249985,0,0);-ms-transform:matrix(0.257084,0.002828,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.257084,0.002828,-0.002750,0.249985,0,0);}
.m71_c01454{transform:matrix(0.257560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257560,0.000000,0.000000,0.250000,0,0);}
.m90_c01454{transform:matrix(0.258517,0.002068,-0.002000,0.249992,0,0);-ms-transform:matrix(0.258517,0.002068,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.258517,0.002068,-0.002000,0.249992,0,0);}
.meb_c01454{transform:matrix(0.258899,0.001812,-0.001750,0.249994,0,0);-ms-transform:matrix(0.258899,0.001812,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.258899,0.001812,-0.001750,0.249994,0,0);}
.m6b_c01454{transform:matrix(0.259149,0.001814,-0.001750,0.249994,0,0);-ms-transform:matrix(0.259149,0.001814,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.259149,0.001814,-0.001750,0.249994,0,0);}
.m47_c01454{transform:matrix(0.259512,0.002076,-0.002000,0.249992,0,0);-ms-transform:matrix(0.259512,0.002076,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.259512,0.002076,-0.002000,0.249992,0,0);}
.m4c_c01454{transform:matrix(0.260192,0.002082,-0.002000,0.249992,0,0);-ms-transform:matrix(0.260192,0.002082,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.260192,0.002082,-0.002000,0.249992,0,0);}
.mb0_c01454{transform:matrix(0.260427,0.004167,-0.003999,0.249968,0,0);-ms-transform:matrix(0.260427,0.004167,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.260427,0.004167,-0.003999,0.249968,0,0);}
.m85_c01454{transform:matrix(0.260440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260440,0.000000,0.000000,0.250000,0,0);}
.mba_c01454{transform:matrix(0.260727,0.002086,-0.002000,0.249992,0,0);-ms-transform:matrix(0.260727,0.002086,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.260727,0.002086,-0.002000,0.249992,0,0);}
.m68_c01454{transform:matrix(0.262554,0.001838,-0.001750,0.249994,0,0);-ms-transform:matrix(0.262554,0.001838,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.262554,0.001838,-0.001750,0.249994,0,0);}
.m7e_c01454{transform:matrix(0.264300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264300,0.000000,0.000000,0.250000,0,0);}
.m48_c01454{transform:matrix(0.268076,0.002145,-0.002000,0.249992,0,0);-ms-transform:matrix(0.268076,0.002145,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.268076,0.002145,-0.002000,0.249992,0,0);}
.m46_c01454{transform:matrix(0.269026,0.002152,-0.002000,0.249992,0,0);-ms-transform:matrix(0.269026,0.002152,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.269026,0.002152,-0.002000,0.249992,0,0);}
.me2_c01454{transform:matrix(0.269169,0.002423,-0.002250,0.249990,0,0);-ms-transform:matrix(0.269169,0.002423,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.269169,0.002423,-0.002250,0.249990,0,0);}
.m8e_c01454{transform:matrix(0.270936,0.002167,-0.002000,0.249992,0,0);-ms-transform:matrix(0.270936,0.002167,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.270936,0.002167,-0.002000,0.249992,0,0);}
.m67_c01454{transform:matrix(0.271253,0.001899,-0.001750,0.249994,0,0);-ms-transform:matrix(0.271253,0.001899,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.271253,0.001899,-0.001750,0.249994,0,0);}
.m45_c01454{transform:matrix(0.272381,0.002179,-0.002000,0.249992,0,0);-ms-transform:matrix(0.272381,0.002179,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.272381,0.002179,-0.002000,0.249992,0,0);}
.m6c_c01454{transform:matrix(0.272558,0.001908,-0.001750,0.249994,0,0);-ms-transform:matrix(0.272558,0.001908,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.272558,0.001908,-0.001750,0.249994,0,0);}
.m94_c01454{transform:matrix(0.273301,0.002186,-0.002000,0.249992,0,0);-ms-transform:matrix(0.273301,0.002186,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.273301,0.002186,-0.002000,0.249992,0,0);}
.m49_c01454{transform:matrix(0.274956,0.002200,-0.002000,0.249992,0,0);-ms-transform:matrix(0.274956,0.002200,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.274956,0.002200,-0.002000,0.249992,0,0);}
.mc7_c01454{transform:matrix(0.275628,0.003032,-0.002750,0.249985,0,0);-ms-transform:matrix(0.275628,0.003032,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.275628,0.003032,-0.002750,0.249985,0,0);}
.m97_c01454{transform:matrix(0.277116,0.002217,-0.002000,0.249992,0,0);-ms-transform:matrix(0.277116,0.002217,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.277116,0.002217,-0.002000,0.249992,0,0);}
.mce_c01454{transform:matrix(0.277158,0.003049,-0.002750,0.249985,0,0);-ms-transform:matrix(0.277158,0.003049,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.277158,0.003049,-0.002750,0.249985,0,0);}
.m91_c01454{transform:matrix(0.277826,0.002223,-0.002000,0.249992,0,0);-ms-transform:matrix(0.277826,0.002223,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.277826,0.002223,-0.002000,0.249992,0,0);}
.m76_c01454{transform:matrix(0.278455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278455,0.000000,0.000000,0.250000,0,0);}
.m8f_c01454{transform:matrix(0.280221,0.002242,-0.002000,0.249992,0,0);-ms-transform:matrix(0.280221,0.002242,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.280221,0.002242,-0.002000,0.249992,0,0);}
.m9e_c01454{transform:matrix(0.282221,0.002258,-0.002000,0.249992,0,0);-ms-transform:matrix(0.282221,0.002258,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.282221,0.002258,-0.002000,0.249992,0,0);}
.me7_c01454{transform:matrix(0.282839,0.002546,-0.002250,0.249990,0,0);-ms-transform:matrix(0.282839,0.002546,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.282839,0.002546,-0.002250,0.249990,0,0);}
.mc8_c01454{transform:matrix(0.284113,0.003125,-0.002750,0.249985,0,0);-ms-transform:matrix(0.284113,0.003125,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.284113,0.003125,-0.002750,0.249985,0,0);}
.m66_c01454{transform:matrix(0.291476,0.002332,-0.002000,0.249992,0,0);-ms-transform:matrix(0.291476,0.002332,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.291476,0.002332,-0.002000,0.249992,0,0);}
.me5_c01454{transform:matrix(0.296053,0.002664,-0.002250,0.249990,0,0);-ms-transform:matrix(0.296053,0.002664,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.296053,0.002664,-0.002250,0.249990,0,0);}
.m0_c01454{transform:matrix(0.384425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384425,0.000000,0.000000,0.250000,0,0);}
.m4_c01454{transform:matrix(0.390160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390160,0.000000,0.000000,0.250000,0,0);}
.m3_c01454{transform:matrix(0.523700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.523700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.523700,0.000000,0.000000,0.250000,0,0);}
.mad_c01454{transform:matrix(0.757128,0.012114,-0.003999,0.249968,0,0);-ms-transform:matrix(0.757128,0.012114,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.757128,0.012114,-0.003999,0.249968,0,0);}
.m1_c01454{transform:matrix(0.902600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.902600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.902600,0.000000,0.000000,0.250000,0,0);}
.v0_c01454{vertical-align:0.000000px;}
.ls0_c01454{letter-spacing:0.000000px;}
.sc__c01454{text-shadow:none;}
.sc0_c01454{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__c01454{-webkit-text-stroke:0px transparent;}
.sc0_c01454{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01454{word-spacing:0.000000px;}
._0_c01454{margin-left:-64.985915px;}
.fc0_c01454{color:transparent;}
.fs0_c01454{font-size:24.000000px;}
.fs1_c01454{font-size:54.000000px;}
.fsc_c01454{font-size:72.001764px;}
.fs9_c01454{font-size:72.002304px;}
.fs11_c01454{font-size:72.004356px;}
.fs8_c01454{font-size:78.000000px;}
.fs6_c01454{font-size:78.001404px;}
.fs2_c01454{font-size:78.001911px;}
.fs4_c01454{font-size:78.002496px;}
.fs13_c01454{font-size:78.003159px;}
.fs12_c01454{font-size:78.004719px;}
.fs3_c01454{font-size:84.002688px;}
.fsf_c01454{font-size:84.010751px;}
.fse_c01454{font-size:90.011519px;}
.fs10_c01454{font-size:96.003072px;}
.fs14_c01454{font-size:96.003888px;}
.fsa_c01454{font-size:102.003264px;}
.fs5_c01454{font-size:108.001944px;}
.fsb_c01454{font-size:120.003840px;}
.fsd_c01454{font-size:144.000000px;}
.fs7_c01454{font-size:156.000000px;}
.y0_c01454{bottom:0.000000px;}
.ydb_c01454{bottom:54.826362px;}
.yda_c01454{bottom:55.121381px;}
.yd9_c01454{bottom:55.578823px;}
.yd8_c01454{bottom:56.191226px;}
.yd7_c01454{bottom:56.654307px;}
.yd6_c01454{bottom:57.346047px;}
.yd5_c01454{bottom:57.727795px;}
.yd4_c01454{bottom:58.179537px;}
.yd3_c01454{bottom:58.860000px;}
.yd2_c01454{bottom:86.890092px;}
.yd1_c01454{bottom:87.124049px;}
.yd0_c01454{bottom:87.880862px;}
.ycf_c01454{bottom:88.230642px;}
.yce_c01454{bottom:88.942909px;}
.ycd_c01454{bottom:89.308312px;}
.ycc_c01454{bottom:90.032747px;}
.ycb_c01454{bottom:90.982793px;}
.yca_c01454{bottom:91.356459px;}
.yc9_c01454{bottom:92.811240px;}
.yc8_c01454{bottom:93.149504px;}
.yc7_c01454{bottom:124.228014px;}
.yc6_c01454{bottom:124.563759px;}
.yc5_c01454{bottom:125.404526px;}
.yc4_c01454{bottom:125.807906px;}
.yc3_c01454{bottom:126.498066px;}
.yc2_c01454{bottom:127.377645px;}
.yc1_c01454{bottom:127.870935px;}
.yc0_c01454{bottom:128.152802px;}
.ybf_c01454{bottom:129.331500px;}
.y2_c01454{bottom:131.490000px;}
.ybb_c01454{bottom:163.352319px;}
.ybc_c01454{bottom:163.352322px;}
.ybd_c01454{bottom:163.352898px;}
.ybe_c01454{bottom:163.353575px;}
.yba_c01454{bottom:195.445376px;}
.yb9_c01454{bottom:196.422605px;}
.yb8_c01454{bottom:196.650915px;}
.yb7_c01454{bottom:197.266085px;}
.yb6_c01454{bottom:197.729108px;}
.yb5_c01454{bottom:198.816458px;}
.yb4_c01454{bottom:199.306376px;}
.yb3_c01454{bottom:200.504589px;}
.yb2_c01454{bottom:201.691500px;}
.yb1_c01454{bottom:231.296364px;}
.yb0_c01454{bottom:235.342308px;}
.yaf_c01454{bottom:235.741548px;}
.yae_c01454{bottom:236.790960px;}
.yad_c01454{bottom:268.154532px;}
.yac_c01454{bottom:268.593072px;}
.yab_c01454{bottom:268.945008px;}
.yaa_c01454{bottom:269.206584px;}
.ya9_c01454{bottom:269.554128px;}
.ya8_c01454{bottom:270.342672px;}
.ya7_c01454{bottom:270.692580px;}
.ya6_c01454{bottom:270.956076px;}
.ya5_c01454{bottom:271.755372px;}
.ya4_c01454{bottom:272.431500px;}
.ya3_c01454{bottom:305.884812px;}
.ya2_c01454{bottom:306.170004px;}
.ya1_c01454{bottom:306.418428px;}
.ya0_c01454{bottom:306.797964px;}
.y9f_c01454{bottom:307.418448px;}
.y9e_c01454{bottom:307.795224px;}
.y9d_c01454{bottom:333.389712px;}
.y9c_c01454{bottom:334.080816px;}
.y9b_c01454{bottom:334.633704px;}
.y9a_c01454{bottom:335.290248px;}
.y99_c01454{bottom:336.707016px;}
.y98_c01454{bottom:338.645544px;}
.y97_c01454{bottom:339.155304px;}
.y96_c01454{bottom:339.682128px;}
.y95_c01454{bottom:341.259144px;}
.y94_c01454{bottom:342.633000px;}
.y8d_c01454{bottom:376.823880px;}
.y91_c01454{bottom:376.823916px;}
.y92_c01454{bottom:376.823928px;}
.y90_c01454{bottom:376.823964px;}
.y93_c01454{bottom:376.824204px;}
.y8f_c01454{bottom:376.824312px;}
.y8e_c01454{bottom:376.824612px;}
.y8c_c01454{bottom:404.816280px;}
.y8b_c01454{bottom:405.001020px;}
.y8a_c01454{bottom:405.213480px;}
.y89_c01454{bottom:405.715068px;}
.y88_c01454{bottom:405.861468px;}
.y87_c01454{bottom:406.575504px;}
.y86_c01454{bottom:406.826292px;}
.y85_c01454{bottom:407.038752px;}
.y84_c01454{bottom:407.499840px;}
.y83_c01454{bottom:407.699520px;}
.y82_c01454{bottom:407.975868px;}
.y81_c01454{bottom:444.922428px;}
.y80_c01454{bottom:445.175004px;}
.y7f_c01454{bottom:445.527120px;}
.y7e_c01454{bottom:446.233644px;}
.y7d_c01454{bottom:446.581380px;}
.y7c_c01454{bottom:446.842716px;}
.y7b_c01454{bottom:447.637584px;}
.y7a_c01454{bottom:448.069548px;}
.y79_c01454{bottom:448.592928px;}
.y78_c01454{bottom:449.281500px;}
.y77_c01454{bottom:477.940500px;}
.y1_c01454{bottom:486.810000px;}
.y76_c01454{bottom:514.585500px;}
.y75_c01454{bottom:514.923000px;}
.y74_c01454{bottom:516.022500px;}
.y73_c01454{bottom:516.339000px;}
.y72_c01454{bottom:516.552000px;}
.y71_c01454{bottom:517.413000px;}
.y70_c01454{bottom:518.760000px;}
.y6f_c01454{bottom:519.061500px;}
.y6e_c01454{bottom:519.483000px;}
.y6d_c01454{bottom:551.989500px;}
.y6c_c01454{bottom:552.679500px;}
.y6b_c01454{bottom:553.267500px;}
.y6a_c01454{bottom:554.143500px;}
.y69_c01454{bottom:554.440500px;}
.y68_c01454{bottom:554.743500px;}
.y67_c01454{bottom:555.328500px;}
.y66_c01454{bottom:556.201500px;}
.y65_c01454{bottom:590.389500px;}
.y64_c01454{bottom:624.885725px;}
.y63_c01454{bottom:625.172658px;}
.y62_c01454{bottom:625.420626px;}
.y61_c01454{bottom:625.653107px;}
.y60_c01454{bottom:626.407227px;}
.y5f_c01454{bottom:626.943987px;}
.y5e_c01454{bottom:627.085601px;}
.y5d_c01454{bottom:627.340866px;}
.y5c_c01454{bottom:627.875767px;}
.y5b_c01454{bottom:628.560000px;}
.y5a_c01454{bottom:692.763096px;}
.y59_c01454{bottom:693.121656px;}
.y58_c01454{bottom:693.730824px;}
.y57_c01454{bottom:693.990048px;}
.y56_c01454{bottom:694.419912px;}
.y55_c01454{bottom:694.776288px;}
.y54_c01454{bottom:695.041944px;}
.y53_c01454{bottom:695.914644px;}
.y52_c01454{bottom:696.441636px;}
.y51_c01454{bottom:696.612096px;}
.y50_c01454{bottom:697.141500px;}
.y4c_c01454{bottom:731.182428px;}
.y4d_c01454{bottom:731.182920px;}
.y4e_c01454{bottom:731.183532px;}
.y4f_c01454{bottom:731.183844px;}
.y4b_c01454{bottom:763.398312px;}
.y4a_c01454{bottom:764.214048px;}
.y49_c01454{bottom:764.507868px;}
.y48_c01454{bottom:765.107448px;}
.y47_c01454{bottom:765.416628px;}
.y46_c01454{bottom:765.687936px;}
.y45_c01454{bottom:766.584132px;}
.y44_c01454{bottom:766.858008px;}
.y43_c01454{bottom:767.171364px;}
.y42_c01454{bottom:767.766576px;}
.y41_c01454{bottom:768.149964px;}
.y40_c01454{bottom:799.773768px;}
.y3f_c01454{bottom:800.141028px;}
.y3e_c01454{bottom:800.482164px;}
.y3d_c01454{bottom:801.359112px;}
.y3c_c01454{bottom:802.054752px;}
.y3b_c01454{bottom:802.588284px;}
.y3a_c01454{bottom:803.197440px;}
.y39_c01454{bottom:804.061500px;}
.y38_c01454{bottom:870.805380px;}
.y37_c01454{bottom:871.066728px;}
.y36_c01454{bottom:871.682376px;}
.y35_c01454{bottom:871.943748px;}
.y34_c01454{bottom:872.462148px;}
.y33_c01454{bottom:872.729976px;}
.y32_c01454{bottom:873.263484px;}
.y31_c01454{bottom:873.595908px;}
.y30_c01454{bottom:874.123176px;}
.y2f_c01454{bottom:874.475244px;}
.y2e_c01454{bottom:875.341500px;}
.y2d_c01454{bottom:909.949500px;}
.y2c_c01454{bottom:939.180000px;}
.y25_c01454{bottom:980.062062px;}
.y28_c01454{bottom:980.062080px;}
.y26_c01454{bottom:980.062131px;}
.y29_c01454{bottom:980.062389px;}
.y2a_c01454{bottom:980.062509px;}
.y27_c01454{bottom:980.062620px;}
.y2b_c01454{bottom:980.062818px;}
.y24_c01454{bottom:1012.874499px;}
.y23_c01454{bottom:1013.464224px;}
.y22_c01454{bottom:1013.661855px;}
.y21_c01454{bottom:1013.920947px;}
.y20_c01454{bottom:1014.513957px;}
.y1f_c01454{bottom:1014.636951px;}
.y1e_c01454{bottom:1015.239699px;}
.y1d_c01454{bottom:1015.437654px;}
.y1c_c01454{bottom:1015.630146px;}
.y1b_c01454{bottom:1016.280000px;}
.y1a_c01454{bottom:1048.206408px;}
.y19_c01454{bottom:1051.113336px;}
.y18_c01454{bottom:1051.653228px;}
.y17_c01454{bottom:1083.561120px;}
.y16_c01454{bottom:1083.828972px;}
.y15_c01454{bottom:1084.086060px;}
.y14_c01454{bottom:1084.613088px;}
.y13_c01454{bottom:1085.313048px;}
.y12_c01454{bottom:1085.576424px;}
.y11_c01454{bottom:1086.457656px;}
.y10_c01454{bottom:1086.716916px;}
.yf_c01454{bottom:1086.965460px;}
.ye_c01454{bottom:1087.831500px;}
.yd_c01454{bottom:1119.453957px;}
.yc_c01454{bottom:1119.688306px;}
.yb_c01454{bottom:1120.376287px;}
.ya_c01454{bottom:1120.606857px;}
.y9_c01454{bottom:1120.757879px;}
.y8_c01454{bottom:1121.442237px;}
.y7_c01454{bottom:1121.678476px;}
.y6_c01454{bottom:1121.907125px;}
.y5_c01454{bottom:1122.600817px;}
.y4_c01454{bottom:1123.200000px;}
.y3_c01454{bottom:1197.180000px;}
.h2_c01454{height:24.000000px;}
.h3_c01454{height:54.000000px;}
.he_c01454{height:72.001764px;}
.hb_c01454{height:72.002304px;}
.h13_c01454{height:72.004356px;}
.ha_c01454{height:78.000000px;}
.h8_c01454{height:78.001404px;}
.h4_c01454{height:78.001911px;}
.h6_c01454{height:78.002496px;}
.h15_c01454{height:78.003159px;}
.h14_c01454{height:78.004719px;}
.h5_c01454{height:84.002688px;}
.h11_c01454{height:84.010751px;}
.h10_c01454{height:90.011519px;}
.h12_c01454{height:96.003072px;}
.h16_c01454{height:96.003888px;}
.hc_c01454{height:102.003264px;}
.h7_c01454{height:108.001944px;}
.hd_c01454{height:120.003840px;}
.hf_c01454{height:144.000000px;}
.h9_c01454{height:156.000000px;}
.h0_c01454{height:1250.850000px;}
.h1_c01454{height:1251.000000px;}
.w1_c01454{width:894.750000px;}
.w0_c01454{width:895.050000px;}
.x0_c01454{left:0.000000px;}
.x2_c01454{left:174.960000px;}
.x1_c01454{left:177.660000px;}
.x4b_c01454{left:230.220000px;}
.x24_c01454{left:231.390000px;}
.x33_c01454{left:233.172000px;}
.x19_c01454{left:234.244500px;}
.x6_c01454{left:235.609500px;}
.x8b_c01454{left:239.635500px;}
.x74_c01454{left:240.894000px;}
.x68_c01454{left:258.545856px;}
.x81_c01454{left:260.122152px;}
.x53_c01454{left:261.630000px;}
.x70_c01454{left:262.982940px;}
.x39_c01454{left:264.203712px;}
.x16_c01454{left:265.456968px;}
.x5c_c01454{left:275.878500px;}
.x90_c01454{left:291.451041px;}
.x45_c01454{left:296.922000px;}
.x17_c01454{left:299.191308px;}
.x88_c01454{left:302.941416px;}
.x69_c01454{left:304.715100px;}
.x3a_c01454{left:306.876876px;}
.x79_c01454{left:315.009180px;}
.x62_c01454{left:316.804500px;}
.x46_c01454{left:318.229500px;}
.x7_c01454{left:321.207000px;}
.x7b_c01454{left:324.979500px;}
.x75_c01454{left:326.760000px;}
.x4c_c01454{left:327.967500px;}
.x43_c01454{left:329.403672px;}
.x96_c01454{left:336.604500px;}
.x6a_c01454{left:337.925628px;}
.x2a_c01454{left:340.740000px;}
.x1a_c01454{left:342.553500px;}
.x10_c01454{left:344.403000px;}
.x5d_c01454{left:348.166500px;}
.x71_c01454{left:359.916144px;}
.x44_c01454{left:361.804248px;}
.x8c_c01454{left:370.602000px;}
.x54_c01454{left:371.790000px;}
.x3b_c01454{left:373.027848px;}
.x11_c01454{left:375.471000px;}
.x82_c01454{left:380.824788px;}
.x3_c01454{left:382.860000px;}
.x47_c01454{left:384.103500px;}
.x2c_c01454{left:385.726500px;}
.x58_c01454{left:393.276000px;}
.x25_c01454{left:396.630000px;}
.x89_c01454{left:402.037412px;}
.x4d_c01454{left:404.382000px;}
.x4_c01454{left:405.540000px;}
.x12_c01454{left:407.878500px;}
.x6b_c01454{left:414.875364px;}
.x34_c01454{left:417.324000px;}
.x8_c01454{left:420.306000px;}
.x91_c01454{left:423.757665px;}
.x72_c01454{left:424.988808px;}
.x55_c01454{left:426.600000px;}
.x8a_c01454{left:434.979904px;}
.x63_c01454{left:436.222500px;}
.x3c_c01454{left:438.368832px;}
.x20_c01454{left:440.104611px;}
.x5_c01454{left:449.550000px;}
.x2d_c01454{left:451.635000px;}
.x9_c01454{left:452.970000px;}
.x97_c01454{left:455.674500px;}
.x84_c01454{left:456.987000px;}
.x61_c01454{left:458.190000px;}
.x59_c01454{left:459.955500px;}
.x4e_c01454{left:461.079000px;}
.x18_c01454{left:480.858180px;}
.x21_c01454{left:483.304668px;}
.xa_c01454{left:486.718500px;}
.x76_c01454{left:490.110000px;}
.x6c_c01454{left:492.095100px;}
.x2e_c01454{left:493.188000px;}
.x7c_c01454{left:501.567000px;}
.x56_c01454{left:503.550000px;}
.x1b_c01454{left:508.086000px;}
.x22_c01454{left:516.785874px;}
.x13_c01454{left:518.032500px;}
.x26_c01454{left:526.500000px;}
.x1c_c01454{left:528.585000px;}
.x7a_c01454{left:533.986692px;}
.x64_c01454{left:535.581000px;}
.x3d_c01454{left:538.017540px;}
.x2b_c01454{left:541.620000px;}
.x92_c01454{left:544.168005px;}
.x14_c01454{left:550.954500px;}
.x8d_c01454{left:554.461500px;}
.x57_c01454{left:557.550000px;}
.x2f_c01454{left:559.876500px;}
.x3e_c01454{left:568.180800px;}
.x35_c01454{left:570.970500px;}
.x73_c01454{left:583.212936px;}
.xb_c01454{left:584.484000px;}
.x5e_c01454{left:590.338500px;}
.x23_c01454{left:593.737146px;}
.x7d_c01454{left:600.135000px;}
.x3f_c01454{left:602.515524px;}
.xc_c01454{left:606.058500px;}
.x93_c01454{left:609.992817px;}
.x65_c01454{left:611.715000px;}
.x98_c01454{left:620.649000px;}
.x5a_c01454{left:622.756500px;}
.x48_c01454{left:624.678000px;}
.x1d_c01454{left:627.420000px;}
.x8e_c01454{left:631.146000px;}
.x6d_c01454{left:635.464392px;}
.xd_c01454{left:638.997000px;}
.x85_c01454{left:642.468000px;}
.x7e_c01454{left:643.578000px;}
.x4f_c01454{left:645.490500px;}
.x27_c01454{left:656.370000px;}
.x30_c01454{left:658.155000px;}
.x40_c01454{left:669.212496px;}
.x1e_c01454{left:670.602000px;}
.x7f_c01454{left:676.275000px;}
.x50_c01454{left:678.702000px;}
.x36_c01454{left:680.589000px;}
.x28_c01454{left:689.850000px;}
.x86_c01454{left:698.392500px;}
.x5b_c01454{left:699.435000px;}
.x41_c01454{left:701.814732px;}
.x15_c01454{left:704.328000px;}
.x94_c01454{left:708.065562px;}
.x51_c01454{left:714.126000px;}
.x83_c01454{left:717.994500px;}
.x6e_c01454{left:719.164236px;}
.x80_c01454{left:720.267000px;}
.x37_c01454{left:723.231000px;}
.x5f_c01454{left:731.818500px;}
.x49_c01454{left:733.227000px;}
.xe_c01454{left:737.280000px;}
.x77_c01454{left:740.850000px;}
.x66_c01454{left:744.045000px;}
.x52_c01454{left:755.116500px;}
.x60_c01454{left:765.565500px;}
.x31_c01454{left:767.782500px;}
.x38_c01454{left:769.138500px;}
.xf_c01454{left:770.758500px;}
.x99_c01454{left:773.484000px;}
.x67_c01454{left:775.617000px;}
.x4a_c01454{left:778.047000px;}
.x6f_c01454{left:785.315292px;}
.x42_c01454{left:792.531012px;}
.x32_c01454{left:800.451000px;}
.x1f_c01454{left:801.828000px;}
.x29_c01454{left:802.980000px;}
.x8f_c01454{left:806.689500px;}
.x87_c01454{left:807.987000px;}
.x9a_c01454{left:815.629500px;}
.x78_c01454{left:818.599500px;}
.x95_c01454{left:830.013375px;}
@media print{
.v0_c01454{vertical-align:0.000000pt;}
.ls0_c01454{letter-spacing:0.000000pt;}
.ws0_c01454{word-spacing:0.000000pt;}
._0_c01454{margin-left:-57.765258pt;}
.fs0_c01454{font-size:21.333333pt;}
.fs1_c01454{font-size:48.000000pt;}
.fsc_c01454{font-size:64.001568pt;}
.fs9_c01454{font-size:64.002048pt;}
.fs11_c01454{font-size:64.003872pt;}
.fs8_c01454{font-size:69.333333pt;}
.fs6_c01454{font-size:69.334581pt;}
.fs2_c01454{font-size:69.335032pt;}
.fs4_c01454{font-size:69.335552pt;}
.fs13_c01454{font-size:69.336141pt;}
.fs12_c01454{font-size:69.337528pt;}
.fs3_c01454{font-size:74.669056pt;}
.fsf_c01454{font-size:74.676223pt;}
.fse_c01454{font-size:80.010239pt;}
.fs10_c01454{font-size:85.336064pt;}
.fs14_c01454{font-size:85.336789pt;}
.fsa_c01454{font-size:90.669568pt;}
.fs5_c01454{font-size:96.001728pt;}
.fsb_c01454{font-size:106.670080pt;}
.fsd_c01454{font-size:128.000000pt;}
.fs7_c01454{font-size:138.666667pt;}
.y0_c01454{bottom:0.000000pt;}
.ydb_c01454{bottom:48.734544pt;}
.yda_c01454{bottom:48.996783pt;}
.yd9_c01454{bottom:49.403399pt;}
.yd8_c01454{bottom:49.947756pt;}
.yd7_c01454{bottom:50.359384pt;}
.yd6_c01454{bottom:50.974264pt;}
.yd5_c01454{bottom:51.313596pt;}
.yd4_c01454{bottom:51.715144pt;}
.yd3_c01454{bottom:52.320000pt;}
.yd2_c01454{bottom:77.235637pt;}
.yd1_c01454{bottom:77.443599pt;}
.yd0_c01454{bottom:78.116321pt;}
.ycf_c01454{bottom:78.427237pt;}
.yce_c01454{bottom:79.060364pt;}
.ycd_c01454{bottom:79.385167pt;}
.ycc_c01454{bottom:80.029108pt;}
.ycb_c01454{bottom:80.873593pt;}
.yca_c01454{bottom:81.205741pt;}
.yc9_c01454{bottom:82.498880pt;}
.yc8_c01454{bottom:82.799559pt;}
.yc7_c01454{bottom:110.424901pt;}
.yc6_c01454{bottom:110.723341pt;}
.yc5_c01454{bottom:111.470689pt;}
.yc4_c01454{bottom:111.829249pt;}
.yc3_c01454{bottom:112.442725pt;}
.yc2_c01454{bottom:113.224573pt;}
.yc1_c01454{bottom:113.663053pt;}
.yc0_c01454{bottom:113.913601pt;}
.ybf_c01454{bottom:114.961333pt;}
.y2_c01454{bottom:116.880000pt;}
.ybb_c01454{bottom:145.202061pt;}
.ybc_c01454{bottom:145.202064pt;}
.ybd_c01454{bottom:145.202576pt;}
.ybe_c01454{bottom:145.203177pt;}
.yba_c01454{bottom:173.729223pt;}
.yb9_c01454{bottom:174.597871pt;}
.yb8_c01454{bottom:174.800813pt;}
.yb7_c01454{bottom:175.347631pt;}
.yb6_c01454{bottom:175.759207pt;}
.yb5_c01454{bottom:176.725740pt;}
.yb4_c01454{bottom:177.161223pt;}
.yb3_c01454{bottom:178.226301pt;}
.yb2_c01454{bottom:179.281333pt;}
.yb1_c01454{bottom:205.596768pt;}
.yb0_c01454{bottom:209.193163pt;}
.yaf_c01454{bottom:209.548043pt;}
.yae_c01454{bottom:210.480853pt;}
.yad_c01454{bottom:238.359584pt;}
.yac_c01454{bottom:238.749397pt;}
.yab_c01454{bottom:239.062229pt;}
.yaa_c01454{bottom:239.294741pt;}
.ya9_c01454{bottom:239.603669pt;}
.ya8_c01454{bottom:240.304597pt;}
.ya7_c01454{bottom:240.615627pt;}
.ya6_c01454{bottom:240.849845pt;}
.ya5_c01454{bottom:241.560331pt;}
.ya4_c01454{bottom:242.161333pt;}
.ya3_c01454{bottom:271.897611pt;}
.ya2_c01454{bottom:272.151115pt;}
.ya1_c01454{bottom:272.371936pt;}
.ya0_c01454{bottom:272.709301pt;}
.y9f_c01454{bottom:273.260843pt;}
.y9e_c01454{bottom:273.595755pt;}
.y9d_c01454{bottom:296.346411pt;}
.y9c_c01454{bottom:296.960725pt;}
.y9b_c01454{bottom:297.452181pt;}
.y9a_c01454{bottom:298.035776pt;}
.y99_c01454{bottom:299.295125pt;}
.y98_c01454{bottom:301.018261pt;}
.y97_c01454{bottom:301.471381pt;}
.y96_c01454{bottom:301.939669pt;}
.y95_c01454{bottom:303.341461pt;}
.y94_c01454{bottom:304.562667pt;}
.y8d_c01454{bottom:334.954560pt;}
.y91_c01454{bottom:334.954592pt;}
.y92_c01454{bottom:334.954603pt;}
.y90_c01454{bottom:334.954635pt;}
.y93_c01454{bottom:334.954848pt;}
.y8f_c01454{bottom:334.954944pt;}
.y8e_c01454{bottom:334.955211pt;}
.y8c_c01454{bottom:359.836693pt;}
.y8b_c01454{bottom:360.000907pt;}
.y8a_c01454{bottom:360.189760pt;}
.y89_c01454{bottom:360.635616pt;}
.y88_c01454{bottom:360.765749pt;}
.y87_c01454{bottom:361.400448pt;}
.y86_c01454{bottom:361.623371pt;}
.y85_c01454{bottom:361.812224pt;}
.y84_c01454{bottom:362.222080pt;}
.y83_c01454{bottom:362.399573pt;}
.y82_c01454{bottom:362.645216pt;}
.y81_c01454{bottom:395.486603pt;}
.y80_c01454{bottom:395.711115pt;}
.y7f_c01454{bottom:396.024107pt;}
.y7e_c01454{bottom:396.652128pt;}
.y7d_c01454{bottom:396.961227pt;}
.y7c_c01454{bottom:397.193525pt;}
.y7b_c01454{bottom:397.900075pt;}
.y7a_c01454{bottom:398.284043pt;}
.y79_c01454{bottom:398.749269pt;}
.y78_c01454{bottom:399.361333pt;}
.y77_c01454{bottom:424.836000pt;}
.y1_c01454{bottom:432.720000pt;}
.y76_c01454{bottom:457.409333pt;}
.y75_c01454{bottom:457.709333pt;}
.y74_c01454{bottom:458.686667pt;}
.y73_c01454{bottom:458.968000pt;}
.y72_c01454{bottom:459.157333pt;}
.y71_c01454{bottom:459.922667pt;}
.y70_c01454{bottom:461.120000pt;}
.y6f_c01454{bottom:461.388000pt;}
.y6e_c01454{bottom:461.762667pt;}
.y6d_c01454{bottom:490.657333pt;}
.y6c_c01454{bottom:491.270667pt;}
.y6b_c01454{bottom:491.793333pt;}
.y6a_c01454{bottom:492.572000pt;}
.y69_c01454{bottom:492.836000pt;}
.y68_c01454{bottom:493.105333pt;}
.y67_c01454{bottom:493.625333pt;}
.y66_c01454{bottom:494.401333pt;}
.y65_c01454{bottom:524.790667pt;}
.y64_c01454{bottom:555.453977pt;}
.y63_c01454{bottom:555.709029pt;}
.y62_c01454{bottom:555.929445pt;}
.y61_c01454{bottom:556.136095pt;}
.y60_c01454{bottom:556.806424pt;}
.y5f_c01454{bottom:557.283544pt;}
.y5e_c01454{bottom:557.409423pt;}
.y5d_c01454{bottom:557.636325pt;}
.y5c_c01454{bottom:558.111793pt;}
.y5b_c01454{bottom:558.720000pt;}
.y5a_c01454{bottom:615.789419pt;}
.y59_c01454{bottom:616.108139pt;}
.y58_c01454{bottom:616.649621pt;}
.y57_c01454{bottom:616.880043pt;}
.y56_c01454{bottom:617.262144pt;}
.y55_c01454{bottom:617.578923pt;}
.y54_c01454{bottom:617.815061pt;}
.y53_c01454{bottom:618.590795pt;}
.y52_c01454{bottom:619.059232pt;}
.y51_c01454{bottom:619.210752pt;}
.y50_c01454{bottom:619.681333pt;}
.y4c_c01454{bottom:649.939936pt;}
.y4d_c01454{bottom:649.940373pt;}
.y4e_c01454{bottom:649.940917pt;}
.y4f_c01454{bottom:649.941195pt;}
.y4b_c01454{bottom:678.576277pt;}
.y4a_c01454{bottom:679.301376pt;}
.y49_c01454{bottom:679.562549pt;}
.y48_c01454{bottom:680.095509pt;}
.y47_c01454{bottom:680.370336pt;}
.y46_c01454{bottom:680.611499pt;}
.y45_c01454{bottom:681.408117pt;}
.y44_c01454{bottom:681.651563pt;}
.y43_c01454{bottom:681.930101pt;}
.y42_c01454{bottom:682.459179pt;}
.y41_c01454{bottom:682.799968pt;}
.y40_c01454{bottom:710.910016pt;}
.y3f_c01454{bottom:711.236469pt;}
.y3e_c01454{bottom:711.539701pt;}
.y3d_c01454{bottom:712.319211pt;}
.y3c_c01454{bottom:712.937557pt;}
.y3b_c01454{bottom:713.411808pt;}
.y3a_c01454{bottom:713.953280pt;}
.y39_c01454{bottom:714.721333pt;}
.y38_c01454{bottom:774.049227pt;}
.y37_c01454{bottom:774.281536pt;}
.y36_c01454{bottom:774.828779pt;}
.y35_c01454{bottom:775.061109pt;}
.y34_c01454{bottom:775.521909pt;}
.y33_c01454{bottom:775.759979pt;}
.y32_c01454{bottom:776.234208pt;}
.y31_c01454{bottom:776.529696pt;}
.y30_c01454{bottom:776.998379pt;}
.y2f_c01454{bottom:777.311328pt;}
.y2e_c01454{bottom:778.081333pt;}
.y2d_c01454{bottom:808.844000pt;}
.y2c_c01454{bottom:834.826667pt;}
.y25_c01454{bottom:871.166277pt;}
.y28_c01454{bottom:871.166293pt;}
.y26_c01454{bottom:871.166339pt;}
.y29_c01454{bottom:871.166568pt;}
.y2a_c01454{bottom:871.166675pt;}
.y27_c01454{bottom:871.166773pt;}
.y2b_c01454{bottom:871.166949pt;}
.y24_c01454{bottom:900.332888pt;}
.y23_c01454{bottom:900.857088pt;}
.y22_c01454{bottom:901.032760pt;}
.y21_c01454{bottom:901.263064pt;}
.y20_c01454{bottom:901.790184pt;}
.y1f_c01454{bottom:901.899512pt;}
.y1e_c01454{bottom:902.435288pt;}
.y1d_c01454{bottom:902.611248pt;}
.y1c_c01454{bottom:902.782352pt;}
.y1b_c01454{bottom:903.360000pt;}
.y1a_c01454{bottom:931.739029pt;}
.y19_c01454{bottom:934.322965pt;}
.y18_c01454{bottom:934.802869pt;}
.y17_c01454{bottom:963.165440pt;}
.y16_c01454{bottom:963.403531pt;}
.y15_c01454{bottom:963.632053pt;}
.y14_c01454{bottom:964.100523pt;}
.y13_c01454{bottom:964.722709pt;}
.y12_c01454{bottom:964.956821pt;}
.y11_c01454{bottom:965.740139pt;}
.y10_c01454{bottom:965.970592pt;}
.yf_c01454{bottom:966.191520pt;}
.ye_c01454{bottom:966.961333pt;}
.yd_c01454{bottom:995.070184pt;}
.yc_c01454{bottom:995.278495pt;}
.yb_c01454{bottom:995.890033pt;}
.ya_c01454{bottom:996.094984pt;}
.y9_c01454{bottom:996.229225pt;}
.y8_c01454{bottom:996.837544pt;}
.y7_c01454{bottom:997.047535pt;}
.y6_c01454{bottom:997.250777pt;}
.y5_c01454{bottom:997.867393pt;}
.y4_c01454{bottom:998.400000pt;}
.y3_c01454{bottom:1064.160000pt;}
.h2_c01454{height:21.333333pt;}
.h3_c01454{height:48.000000pt;}
.he_c01454{height:64.001568pt;}
.hb_c01454{height:64.002048pt;}
.h13_c01454{height:64.003872pt;}
.ha_c01454{height:69.333333pt;}
.h8_c01454{height:69.334581pt;}
.h4_c01454{height:69.335032pt;}
.h6_c01454{height:69.335552pt;}
.h15_c01454{height:69.336141pt;}
.h14_c01454{height:69.337528pt;}
.h5_c01454{height:74.669056pt;}
.h11_c01454{height:74.676223pt;}
.h10_c01454{height:80.010239pt;}
.h12_c01454{height:85.336064pt;}
.h16_c01454{height:85.336789pt;}
.hc_c01454{height:90.669568pt;}
.h7_c01454{height:96.001728pt;}
.hd_c01454{height:106.670080pt;}
.hf_c01454{height:128.000000pt;}
.h9_c01454{height:138.666667pt;}
.h0_c01454{height:1111.866667pt;}
.h1_c01454{height:1112.000000pt;}
.w1_c01454{width:795.333333pt;}
.w0_c01454{width:795.600000pt;}
.x0_c01454{left:0.000000pt;}
.x2_c01454{left:155.520000pt;}
.x1_c01454{left:157.920000pt;}
.x4b_c01454{left:204.640000pt;}
.x24_c01454{left:205.680000pt;}
.x33_c01454{left:207.264000pt;}
.x19_c01454{left:208.217333pt;}
.x6_c01454{left:209.430667pt;}
.x8b_c01454{left:213.009333pt;}
.x74_c01454{left:214.128000pt;}
.x68_c01454{left:229.818539pt;}
.x81_c01454{left:231.219691pt;}
.x53_c01454{left:232.560000pt;}
.x70_c01454{left:233.762613pt;}
.x39_c01454{left:234.847744pt;}
.x16_c01454{left:235.961749pt;}
.x5c_c01454{left:245.225333pt;}
.x90_c01454{left:259.067592pt;}
.x45_c01454{left:263.930667pt;}
.x17_c01454{left:265.947829pt;}
.x88_c01454{left:269.281259pt;}
.x69_c01454{left:270.857867pt;}
.x3a_c01454{left:272.779445pt;}
.x79_c01454{left:280.008160pt;}
.x62_c01454{left:281.604000pt;}
.x46_c01454{left:282.870667pt;}
.x7_c01454{left:285.517333pt;}
.x7b_c01454{left:288.870667pt;}
.x75_c01454{left:290.453333pt;}
.x4c_c01454{left:291.526667pt;}
.x43_c01454{left:292.803264pt;}
.x96_c01454{left:299.204000pt;}
.x6a_c01454{left:300.378336pt;}
.x2a_c01454{left:302.880000pt;}
.x1a_c01454{left:304.492000pt;}
.x10_c01454{left:306.136000pt;}
.x5d_c01454{left:309.481333pt;}
.x71_c01454{left:319.925461pt;}
.x44_c01454{left:321.603776pt;}
.x8c_c01454{left:329.424000pt;}
.x54_c01454{left:330.480000pt;}
.x3b_c01454{left:331.580309pt;}
.x11_c01454{left:333.752000pt;}
.x82_c01454{left:338.510923pt;}
.x3_c01454{left:340.320000pt;}
.x47_c01454{left:341.425333pt;}
.x2c_c01454{left:342.868000pt;}
.x58_c01454{left:349.578667pt;}
.x25_c01454{left:352.560000pt;}
.x89_c01454{left:357.366588pt;}
.x4d_c01454{left:359.450667pt;}
.x4_c01454{left:360.480000pt;}
.x12_c01454{left:362.558667pt;}
.x6b_c01454{left:368.778101pt;}
.x34_c01454{left:370.954667pt;}
.x8_c01454{left:373.605333pt;}
.x91_c01454{left:376.673480pt;}
.x72_c01454{left:377.767829pt;}
.x55_c01454{left:379.200000pt;}
.x8a_c01454{left:386.648804pt;}
.x63_c01454{left:387.753333pt;}
.x3c_c01454{left:389.661184pt;}
.x20_c01454{left:391.204099pt;}
.x5_c01454{left:399.600000pt;}
.x2d_c01454{left:401.453333pt;}
.x9_c01454{left:402.640000pt;}
.x97_c01454{left:405.044000pt;}
.x84_c01454{left:406.210667pt;}
.x61_c01454{left:407.280000pt;}
.x59_c01454{left:408.849333pt;}
.x4e_c01454{left:409.848000pt;}
.x18_c01454{left:427.429493pt;}
.x21_c01454{left:429.604149pt;}
.xa_c01454{left:432.638667pt;}
.x76_c01454{left:435.653333pt;}
.x6c_c01454{left:437.417867pt;}
.x2e_c01454{left:438.389333pt;}
.x7c_c01454{left:445.837333pt;}
.x56_c01454{left:447.600000pt;}
.x1b_c01454{left:451.632000pt;}
.x22_c01454{left:459.365221pt;}
.x13_c01454{left:460.473333pt;}
.x26_c01454{left:468.000000pt;}
.x1c_c01454{left:469.853333pt;}
.x7a_c01454{left:474.654837pt;}
.x64_c01454{left:476.072000pt;}
.x3d_c01454{left:478.237813pt;}
.x2b_c01454{left:481.440000pt;}
.x92_c01454{left:483.704893pt;}
.x14_c01454{left:489.737333pt;}
.x8d_c01454{left:492.854667pt;}
.x57_c01454{left:495.600000pt;}
.x2f_c01454{left:497.668000pt;}
.x3e_c01454{left:505.049600pt;}
.x35_c01454{left:507.529333pt;}
.x73_c01454{left:518.411499pt;}
.xb_c01454{left:519.541333pt;}
.x5e_c01454{left:524.745333pt;}
.x23_c01454{left:527.766352pt;}
.x7d_c01454{left:533.453333pt;}
.x3f_c01454{left:535.569355pt;}
.xc_c01454{left:538.718667pt;}
.x93_c01454{left:542.215837pt;}
.x65_c01454{left:543.746667pt;}
.x98_c01454{left:551.688000pt;}
.x5a_c01454{left:553.561333pt;}
.x48_c01454{left:555.269333pt;}
.x1d_c01454{left:557.706667pt;}
.x8e_c01454{left:561.018667pt;}
.x6d_c01454{left:564.857237pt;}
.xd_c01454{left:567.997333pt;}
.x85_c01454{left:571.082667pt;}
.x7e_c01454{left:572.069333pt;}
.x4f_c01454{left:573.769333pt;}
.x27_c01454{left:583.440000pt;}
.x30_c01454{left:585.026667pt;}
.x40_c01454{left:594.855552pt;}
.x1e_c01454{left:596.090667pt;}
.x7f_c01454{left:601.133333pt;}
.x50_c01454{left:603.290667pt;}
.x36_c01454{left:604.968000pt;}
.x28_c01454{left:613.200000pt;}
.x86_c01454{left:620.793333pt;}
.x5b_c01454{left:621.720000pt;}
.x41_c01454{left:623.835317pt;}
.x15_c01454{left:626.069333pt;}
.x94_c01454{left:629.391611pt;}
.x51_c01454{left:634.778667pt;}
.x83_c01454{left:638.217333pt;}
.x6e_c01454{left:639.257099pt;}
.x80_c01454{left:640.237333pt;}
.x37_c01454{left:642.872000pt;}
.x5f_c01454{left:650.505333pt;}
.x49_c01454{left:651.757333pt;}
.xe_c01454{left:655.360000pt;}
.x77_c01454{left:658.533333pt;}
.x66_c01454{left:661.373333pt;}
.x52_c01454{left:671.214667pt;}
.x60_c01454{left:680.502667pt;}
.x31_c01454{left:682.473333pt;}
.x38_c01454{left:683.678667pt;}
.xf_c01454{left:685.118667pt;}
.x99_c01454{left:687.541333pt;}
.x67_c01454{left:689.437333pt;}
.x4a_c01454{left:691.597333pt;}
.x6f_c01454{left:698.058037pt;}
.x42_c01454{left:704.472011pt;}
.x32_c01454{left:711.512000pt;}
.x1f_c01454{left:712.736000pt;}
.x29_c01454{left:713.760000pt;}
.x8f_c01454{left:717.057333pt;}
.x87_c01454{left:718.210667pt;}
.x9a_c01454{left:725.004000pt;}
.x78_c01454{left:727.644000pt;}
.x95_c01454{left:737.789667pt;}
}





/* 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_c01455 {
    display:none;
  }
  .loading-indicator_c01455.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01455 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_c01455 { 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_c01455" -> "#page-container .classname_c01455")
 */
.pf_c01455 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01455 { /* 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_c01455.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01455 { /* 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_c01455 { /* 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_c01455 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01455 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01455 {overflow:visible;}
  }
}
.c_c01455 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01455 { /* 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_c01455:after { /* webkit #35443 */
  content: '';
}
.t_c01455:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01455 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 */
}
.__c01455 { /* 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_c01455 { /* info for Javascript */
  display:none;
}
.l_c01455 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01455 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01455 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01455: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_c01455 {
    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_c01455.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01455.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_c01455 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01455{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01455;src:url('chunks/assets/font_fe3cd3c6b9706b260f6e1774.woff2')format("woff");}.ff1_c01455{font-family:ff1_c01455;line-height:1.000000;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;}
.mb_c01455{transform:matrix(0.031820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.031820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.031820,0.000000,0.000000,0.250000,0,0);}
.md_c01455{transform:matrix(0.040560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.040560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.040560,0.000000,0.000000,0.250000,0,0);}
.m1_c01455{transform:matrix(0.120935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120935,0.000000,0.000000,0.250000,0,0);}
.me_c01455{transform:matrix(0.158035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158035,0.000000,0.000000,0.250000,0,0);}
.m0_c01455{transform:matrix(0.174930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174930,0.000000,0.000000,0.250000,0,0);}
.m7_c01455{transform:matrix(0.346355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346355,0.000000,0.000000,0.250000,0,0);}
.ma_c01455{transform:matrix(0.365930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365930,0.000000,0.000000,0.250000,0,0);}
.m5_c01455{transform:matrix(0.456945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456945,0.000000,0.000000,0.250000,0,0);}
.mf_c01455{transform:matrix(0.494775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.494775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.494775,0.000000,0.000000,0.250000,0,0);}
.m9_c01455{transform:matrix(0.554000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.554000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.554000,0.000000,0.000000,0.250000,0,0);}
.m8_c01455{transform:matrix(0.630715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630715,0.000000,0.000000,0.250000,0,0);}
.m4_c01455{transform:matrix(1.071740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.071740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.071740,0.000000,0.000000,0.250000,0,0);}
.m6_c01455{transform:matrix(1.850610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.850610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.850610,0.000000,0.000000,0.250000,0,0);}
.mc_c01455{transform:matrix(2.484540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.484540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.484540,0.000000,0.000000,0.250000,0,0);}
.m3_c01455{transform:matrix(2.569380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.569380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.569380,0.000000,0.000000,0.250000,0,0);}
.m2_c01455{transform:matrix(2.600240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.600240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.600240,0.000000,0.000000,0.250000,0,0);}
.v0_c01455{vertical-align:0.000000px;}
.ls0_c01455{letter-spacing:0.000000px;}
.sc__c01455{text-shadow:none;}
.sc0_c01455{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__c01455{-webkit-text-stroke:0px transparent;}
.sc0_c01455{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01455{word-spacing:0.000000px;}
.fc0_c01455{color:transparent;}
.fs0_c01455{font-size:18.000000px;}
.fs2_c01455{font-size:24.000000px;}
.fs1_c01455{font-size:30.000000px;}
.fs3_c01455{font-size:48.000000px;}
.y0_c01455{bottom:0.000000px;}
.y2_c01455{bottom:60.480000px;}
.y5_c01455{bottom:112.590000px;}
.y9_c01455{bottom:122.580000px;}
.y8_c01455{bottom:139.590000px;}
.y1_c01455{bottom:160.650000px;}
.y7_c01455{bottom:177.120000px;}
.y4_c01455{bottom:1105.380000px;}
.y3_c01455{bottom:1126.710000px;}
.y6_c01455{bottom:1211.484000px;}
.h2_c01455{height:18.000000px;}
.h4_c01455{height:24.000000px;}
.h3_c01455{height:30.000000px;}
.h5_c01455{height:48.000000px;}
.h0_c01455{height:1250.850000px;}
.h1_c01455{height:1251.000000px;}
.w1_c01455{width:894.750000px;}
.w0_c01455{width:895.050000px;}
.x0_c01455{left:0.000000px;}
.x4_c01455{left:5.940000px;}
.x3_c01455{left:8.370000px;}
.x1_c01455{left:11.070000px;}
.x6_c01455{left:12.150000px;}
.x5_c01455{left:15.930000px;}
.x2_c01455{left:17.820000px;}
.xa_c01455{left:22.140000px;}
.x7_c01455{left:451.710000px;}
.x8_c01455{left:480.330000px;}
.x9_c01455{left:501.930000px;}
@media print{
.v0_c01455{vertical-align:0.000000pt;}
.ls0_c01455{letter-spacing:0.000000pt;}
.ws0_c01455{word-spacing:0.000000pt;}
.fs0_c01455{font-size:16.000000pt;}
.fs2_c01455{font-size:21.333333pt;}
.fs1_c01455{font-size:26.666667pt;}
.fs3_c01455{font-size:42.666667pt;}
.y0_c01455{bottom:0.000000pt;}
.y2_c01455{bottom:53.760000pt;}
.y5_c01455{bottom:100.080000pt;}
.y9_c01455{bottom:108.960000pt;}
.y8_c01455{bottom:124.080000pt;}
.y1_c01455{bottom:142.800000pt;}
.y7_c01455{bottom:157.440000pt;}
.y4_c01455{bottom:982.560000pt;}
.y3_c01455{bottom:1001.520000pt;}
.y6_c01455{bottom:1076.874667pt;}
.h2_c01455{height:16.000000pt;}
.h4_c01455{height:21.333333pt;}
.h3_c01455{height:26.666667pt;}
.h5_c01455{height:42.666667pt;}
.h0_c01455{height:1111.866667pt;}
.h1_c01455{height:1112.000000pt;}
.w1_c01455{width:795.333333pt;}
.w0_c01455{width:795.600000pt;}
.x0_c01455{left:0.000000pt;}
.x4_c01455{left:5.280000pt;}
.x3_c01455{left:7.440000pt;}
.x1_c01455{left:9.840000pt;}
.x6_c01455{left:10.800000pt;}
.x5_c01455{left:14.160000pt;}
.x2_c01455{left:15.840000pt;}
.xa_c01455{left:19.680000pt;}
.x7_c01455{left:401.520000pt;}
.x8_c01455{left:426.960000pt;}
.x9_c01455{left:446.160000pt;}
}





/* 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_c01456 {
    display:none;
  }
  .loading-indicator_c01456.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01456 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_c01456 { 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_c01456" -> "#page-container .classname_c01456")
 */
.pf_c01456 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01456 { /* 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_c01456.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01456 { /* 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_c01456 { /* 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_c01456 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01456 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01456 {overflow:visible;}
  }
}
.c_c01456 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01456 { /* 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_c01456:after { /* webkit #35443 */
  content: '';
}
.t_c01456:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01456 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 */
}
.__c01456 { /* 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_c01456 { /* info for Javascript */
  display:none;
}
.l_c01456 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01456 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01456 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01456: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_c01456 {
    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_c01456.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01456.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_c01456 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01456{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01456;src:url('chunks/assets/font_7c6b9abe6ee2a268480c528b.woff2')format("woff");}.ff1_c01456{font-family:ff1_c01456;line-height:1.000000;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;}
.m4_c01456{transform:matrix(0.050310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.050310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.050310,0.000000,0.000000,0.250000,0,0);}
.m8_c01456{transform:matrix(0.056250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.056250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.056250,0.000000,0.000000,0.250000,0,0);}
.m3_c01456{transform:matrix(0.116675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116675,0.000000,0.000000,0.250000,0,0);}
.ma_c01456{transform:matrix(0.128270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128270,0.000000,0.000000,0.250000,0,0);}
.m5_c01456{transform:matrix(0.142300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142300,0.000000,0.000000,0.250000,0,0);}
.m7_c01456{transform:matrix(0.147650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147650,0.000000,0.000000,0.250000,0,0);}
.m20_c01456{transform:matrix(0.152345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152345,0.000000,0.000000,0.250000,0,0);}
.md2_c01456{transform:matrix(0.153270,0.002452,-0.003999,0.249968,0,0);-ms-transform:matrix(0.153270,0.002452,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.153270,0.002452,-0.003999,0.249968,0,0);}
.mc_c01456{transform:matrix(0.156695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156695,0.000000,0.000000,0.250000,0,0);}
.m1e_c01456{transform:matrix(0.158815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158815,0.000000,0.000000,0.250000,0,0);}
.m2_c01456{transform:matrix(0.159895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159895,0.000000,0.000000,0.250000,0,0);}
.mc4_c01456{transform:matrix(0.170553,0.002729,-0.003999,0.249968,0,0);-ms-transform:matrix(0.170553,0.002729,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.170553,0.002729,-0.003999,0.249968,0,0);}
.m93_c01456{transform:matrix(0.171165,0.002910,-0.004249,0.249964,0,0);-ms-transform:matrix(0.171165,0.002910,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.171165,0.002910,-0.004249,0.249964,0,0);}
.md3_c01456{transform:matrix(0.176457,0.002823,-0.003999,0.249968,0,0);-ms-transform:matrix(0.176457,0.002823,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.176457,0.002823,-0.003999,0.249968,0,0);}
.mc8_c01456{transform:matrix(0.176707,0.002827,-0.003999,0.249968,0,0);-ms-transform:matrix(0.176707,0.002827,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.176707,0.002827,-0.003999,0.249968,0,0);}
.mee_c01456{transform:matrix(0.179497,0.002872,-0.003999,0.249968,0,0);-ms-transform:matrix(0.179497,0.002872,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.179497,0.002872,-0.003999,0.249968,0,0);}
.mc0_c01456{transform:matrix(0.181254,0.003081,-0.004249,0.249964,0,0);-ms-transform:matrix(0.181254,0.003081,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.181254,0.003081,-0.004249,0.249964,0,0);}
.mc5_c01456{transform:matrix(0.185606,0.002970,-0.003999,0.249968,0,0);-ms-transform:matrix(0.185606,0.002970,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.185606,0.002970,-0.003999,0.249968,0,0);}
.mc9_c01456{transform:matrix(0.195335,0.003125,-0.003999,0.249968,0,0);-ms-transform:matrix(0.195335,0.003125,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.195335,0.003125,-0.003999,0.249968,0,0);}
.m91_c01456{transform:matrix(0.201496,0.003425,-0.004249,0.249964,0,0);-ms-transform:matrix(0.201496,0.003425,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.201496,0.003425,-0.004249,0.249964,0,0);}
.mc3_c01456{transform:matrix(0.202744,0.003244,-0.003999,0.249968,0,0);-ms-transform:matrix(0.202744,0.003244,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.202744,0.003244,-0.003999,0.249968,0,0);}
.mc7_c01456{transform:matrix(0.203199,0.003251,-0.003999,0.249968,0,0);-ms-transform:matrix(0.203199,0.003251,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.203199,0.003251,-0.003999,0.249968,0,0);}
.mc6_c01456{transform:matrix(0.204754,0.003276,-0.003999,0.249968,0,0);-ms-transform:matrix(0.204754,0.003276,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.204754,0.003276,-0.003999,0.249968,0,0);}
.mc2_c01456{transform:matrix(0.207278,0.003316,-0.003999,0.249968,0,0);-ms-transform:matrix(0.207278,0.003316,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.207278,0.003316,-0.003999,0.249968,0,0);}
.mc1_c01456{transform:matrix(0.207398,0.003318,-0.003999,0.249968,0,0);-ms-transform:matrix(0.207398,0.003318,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.207398,0.003318,-0.003999,0.249968,0,0);}
.m8f_c01456{transform:matrix(0.211469,0.003595,-0.004249,0.249964,0,0);-ms-transform:matrix(0.211469,0.003595,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.211469,0.003595,-0.004249,0.249964,0,0);}
.mb8_c01456{transform:matrix(0.211839,0.003601,-0.004249,0.249964,0,0);-ms-transform:matrix(0.211839,0.003601,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.211839,0.003601,-0.004249,0.249964,0,0);}
.mbb_c01456{transform:matrix(0.213774,0.003634,-0.004249,0.249964,0,0);-ms-transform:matrix(0.213774,0.003634,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.213774,0.003634,-0.004249,0.249964,0,0);}
.m12_c01456{transform:matrix(0.214045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214045,0.000000,0.000000,0.250000,0,0);}
.mb4_c01456{transform:matrix(0.216179,0.003675,-0.004249,0.249964,0,0);-ms-transform:matrix(0.216179,0.003675,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.216179,0.003675,-0.004249,0.249964,0,0);}
.md0_c01456{transform:matrix(0.217592,0.003481,-0.003999,0.249968,0,0);-ms-transform:matrix(0.217592,0.003481,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.217592,0.003481,-0.003999,0.249968,0,0);}
.mf0_c01456{transform:matrix(0.221472,0.003544,-0.003999,0.249968,0,0);-ms-transform:matrix(0.221472,0.003544,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.221472,0.003544,-0.003999,0.249968,0,0);}
.ma6_c01456{transform:matrix(0.222487,0.003560,-0.003999,0.249968,0,0);-ms-transform:matrix(0.222487,0.003560,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.222487,0.003560,-0.003999,0.249968,0,0);}
.m71_c01456{transform:matrix(0.225600,0.003384,-0.003750,0.249972,0,0);-ms-transform:matrix(0.225600,0.003384,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.225600,0.003384,-0.003750,0.249972,0,0);}
.m80_c01456{transform:matrix(0.225603,0.004061,-0.004499,0.249960,0,0);-ms-transform:matrix(0.225603,0.004061,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.225603,0.004061,-0.004499,0.249960,0,0);}
.mbd_c01456{transform:matrix(0.226002,0.003842,-0.004249,0.249964,0,0);-ms-transform:matrix(0.226002,0.003842,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.226002,0.003842,-0.004249,0.249964,0,0);}
.m70_c01456{transform:matrix(0.226010,0.003390,-0.003750,0.249972,0,0);-ms-transform:matrix(0.226010,0.003390,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.226010,0.003390,-0.003750,0.249972,0,0);}
.m52_c01456{transform:matrix(0.226518,0.004077,-0.004499,0.249960,0,0);-ms-transform:matrix(0.226518,0.004077,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.226518,0.004077,-0.004499,0.249960,0,0);}
.mce_c01456{transform:matrix(0.226546,0.003625,-0.003999,0.249968,0,0);-ms-transform:matrix(0.226546,0.003625,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.226546,0.003625,-0.003999,0.249968,0,0);}
.mf3_c01456{transform:matrix(0.226716,0.003627,-0.003999,0.249968,0,0);-ms-transform:matrix(0.226716,0.003627,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.226716,0.003627,-0.003999,0.249968,0,0);}
.m61_c01456{transform:matrix(0.228305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228305,0.000000,0.000000,0.250000,0,0);}
.m4a_c01456{transform:matrix(0.229952,0.003219,-0.003500,0.249976,0,0);-ms-transform:matrix(0.229952,0.003219,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.229952,0.003219,-0.003500,0.249976,0,0);}
.mf1_c01456{transform:matrix(0.230186,0.003683,-0.003999,0.249968,0,0);-ms-transform:matrix(0.230186,0.003683,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.230186,0.003683,-0.003999,0.249968,0,0);}
.m54_c01456{transform:matrix(0.230248,0.004144,-0.004499,0.249960,0,0);-ms-transform:matrix(0.230248,0.004144,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.230248,0.004144,-0.004499,0.249960,0,0);}
.m4c_c01456{transform:matrix(0.230262,0.003224,-0.003500,0.249976,0,0);-ms-transform:matrix(0.230262,0.003224,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.230262,0.003224,-0.003500,0.249976,0,0);}
.mb7_c01456{transform:matrix(0.232301,0.003949,-0.004249,0.249964,0,0);-ms-transform:matrix(0.232301,0.003949,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.232301,0.003949,-0.004249,0.249964,0,0);}
.m96_c01456{transform:matrix(0.233041,0.003962,-0.004249,0.249964,0,0);-ms-transform:matrix(0.233041,0.003962,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.233041,0.003962,-0.004249,0.249964,0,0);}
.m62_c01456{transform:matrix(0.233695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233695,0.000000,0.000000,0.250000,0,0);}
.mb3_c01456{transform:matrix(0.234226,0.003982,-0.004249,0.249964,0,0);-ms-transform:matrix(0.234226,0.003982,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.234226,0.003982,-0.004249,0.249964,0,0);}
.md1_c01456{transform:matrix(0.234800,0.003757,-0.003999,0.249968,0,0);-ms-transform:matrix(0.234800,0.003757,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.234800,0.003757,-0.003999,0.249968,0,0);}
.mbc_c01456{transform:matrix(0.235611,0.004005,-0.004249,0.249964,0,0);-ms-transform:matrix(0.235611,0.004005,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.235611,0.004005,-0.004249,0.249964,0,0);}
.m1b_c01456{transform:matrix(0.235800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235800,0.000000,0.000000,0.250000,0,0);}
.md8_c01456{transform:matrix(0.236418,0.004728,-0.004999,0.249950,0,0);-ms-transform:matrix(0.236418,0.004728,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.236418,0.004728,-0.004999,0.249950,0,0);}
.ma1_c01456{transform:matrix(0.236435,0.003783,-0.003999,0.249968,0,0);-ms-transform:matrix(0.236435,0.003783,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.236435,0.003783,-0.003999,0.249968,0,0);}
.me_c01456{transform:matrix(0.236815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236815,0.000000,0.000000,0.250000,0,0);}
.mb9_c01456{transform:matrix(0.238815,0.004060,-0.004249,0.249964,0,0);-ms-transform:matrix(0.238815,0.004060,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.238815,0.004060,-0.004249,0.249964,0,0);}
.m4d_c01456{transform:matrix(0.239272,0.003350,-0.003500,0.249976,0,0);-ms-transform:matrix(0.239272,0.003350,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.239272,0.003350,-0.003500,0.249976,0,0);}
.mb2_c01456{transform:matrix(0.240075,0.004081,-0.004249,0.249964,0,0);-ms-transform:matrix(0.240075,0.004081,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.240075,0.004081,-0.004249,0.249964,0,0);}
.mb6_c01456{transform:matrix(0.240640,0.004091,-0.004249,0.249964,0,0);-ms-transform:matrix(0.240640,0.004091,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.240640,0.004091,-0.004249,0.249964,0,0);}
.mf4_c01456{transform:matrix(0.241269,0.003860,-0.003999,0.249968,0,0);-ms-transform:matrix(0.241269,0.003860,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.241269,0.003860,-0.003999,0.249968,0,0);}
.mba_c01456{transform:matrix(0.241980,0.004114,-0.004249,0.249964,0,0);-ms-transform:matrix(0.241980,0.004114,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.241980,0.004114,-0.004249,0.249964,0,0);}
.m84_c01456{transform:matrix(0.242728,0.003641,-0.003750,0.249972,0,0);-ms-transform:matrix(0.242728,0.003641,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.242728,0.003641,-0.003750,0.249972,0,0);}
.m50_c01456{transform:matrix(0.243171,0.004377,-0.004499,0.249960,0,0);-ms-transform:matrix(0.243171,0.004377,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.243171,0.004377,-0.004499,0.249960,0,0);}
.m6c_c01456{transform:matrix(0.244532,0.003668,-0.003750,0.249972,0,0);-ms-transform:matrix(0.244532,0.003668,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.244532,0.003668,-0.003750,0.249972,0,0);}
.mb1_c01456{transform:matrix(0.244770,0.004161,-0.004249,0.249964,0,0);-ms-transform:matrix(0.244770,0.004161,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.244770,0.004161,-0.004249,0.249964,0,0);}
.mcd_c01456{transform:matrix(0.244929,0.003919,-0.003999,0.249968,0,0);-ms-transform:matrix(0.244929,0.003919,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.244929,0.003919,-0.003999,0.249968,0,0);}
.m77_c01456{transform:matrix(0.245152,0.003677,-0.003750,0.249972,0,0);-ms-transform:matrix(0.245152,0.003677,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.245152,0.003677,-0.003750,0.249972,0,0);}
.m6d_c01456{transform:matrix(0.245552,0.003683,-0.003750,0.249972,0,0);-ms-transform:matrix(0.245552,0.003683,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.245552,0.003683,-0.003750,0.249972,0,0);}
.m6e_c01456{transform:matrix(0.245607,0.003684,-0.003750,0.249972,0,0);-ms-transform:matrix(0.245607,0.003684,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.245607,0.003684,-0.003750,0.249972,0,0);}
.m45_c01456{transform:matrix(0.245791,0.003441,-0.003500,0.249976,0,0);-ms-transform:matrix(0.245791,0.003441,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.245791,0.003441,-0.003500,0.249976,0,0);}
.m2e_c01456{transform:matrix(0.246339,0.004188,-0.004249,0.249964,0,0);-ms-transform:matrix(0.246339,0.004188,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.246339,0.004188,-0.004249,0.249964,0,0);}
.m38_c01456{transform:matrix(0.246584,0.004192,-0.004249,0.249964,0,0);-ms-transform:matrix(0.246584,0.004192,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.246584,0.004192,-0.004249,0.249964,0,0);}
.m31_c01456{transform:matrix(0.246629,0.004193,-0.004249,0.249964,0,0);-ms-transform:matrix(0.246629,0.004193,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.246629,0.004193,-0.004249,0.249964,0,0);}
.ma2_c01456{transform:matrix(0.246873,0.003950,-0.003999,0.249968,0,0);-ms-transform:matrix(0.246873,0.003950,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.246873,0.003950,-0.003999,0.249968,0,0);}
.mb0_c01456{transform:matrix(0.247414,0.004206,-0.004249,0.249964,0,0);-ms-transform:matrix(0.247414,0.004206,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.247414,0.004206,-0.004249,0.249964,0,0);}
.mdb_c01456{transform:matrix(0.247456,0.004949,-0.004999,0.249950,0,0);-ms-transform:matrix(0.247456,0.004949,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.247456,0.004949,-0.004999,0.249950,0,0);}
.m46_c01456{transform:matrix(0.247526,0.003465,-0.003500,0.249976,0,0);-ms-transform:matrix(0.247526,0.003465,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.247526,0.003465,-0.003500,0.249976,0,0);}
.m92_c01456{transform:matrix(0.248474,0.004224,-0.004249,0.249964,0,0);-ms-transform:matrix(0.248474,0.004224,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.248474,0.004224,-0.004249,0.249964,0,0);}
.m1f_c01456{transform:matrix(0.248540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248540,0.000000,0.000000,0.250000,0,0);}
.m94_c01456{transform:matrix(0.249179,0.004236,-0.004249,0.249964,0,0);-ms-transform:matrix(0.249179,0.004236,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.249179,0.004236,-0.004249,0.249964,0,0);}
.mcb_c01456{transform:matrix(0.250113,0.004002,-0.003999,0.249968,0,0);-ms-transform:matrix(0.250113,0.004002,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.250113,0.004002,-0.003999,0.249968,0,0);}
.m98_c01456{transform:matrix(0.250504,0.004259,-0.004249,0.249964,0,0);-ms-transform:matrix(0.250504,0.004259,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.250504,0.004259,-0.004249,0.249964,0,0);}
.mbe_c01456{transform:matrix(0.250634,0.004261,-0.004249,0.249964,0,0);-ms-transform:matrix(0.250634,0.004261,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.250634,0.004261,-0.004249,0.249964,0,0);}
.m72_c01456{transform:matrix(0.250757,0.003761,-0.003750,0.249972,0,0);-ms-transform:matrix(0.250757,0.003761,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.250757,0.003761,-0.003750,0.249972,0,0);}
.m86_c01456{transform:matrix(0.252087,0.003781,-0.003750,0.249972,0,0);-ms-transform:matrix(0.252087,0.003781,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.252087,0.003781,-0.003750,0.249972,0,0);}
.mcf_c01456{transform:matrix(0.252483,0.004040,-0.003999,0.249968,0,0);-ms-transform:matrix(0.252483,0.004040,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.252483,0.004040,-0.003999,0.249968,0,0);}
.mae_c01456{transform:matrix(0.252648,0.004042,-0.003999,0.249968,0,0);-ms-transform:matrix(0.252648,0.004042,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.252648,0.004042,-0.003999,0.249968,0,0);}
.mb5_c01456{transform:matrix(0.252758,0.004297,-0.004249,0.249964,0,0);-ms-transform:matrix(0.252758,0.004297,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.252758,0.004297,-0.004249,0.249964,0,0);}
.m8b_c01456{transform:matrix(0.252803,0.004298,-0.004249,0.249964,0,0);-ms-transform:matrix(0.252803,0.004298,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.252803,0.004298,-0.004249,0.249964,0,0);}
.mcc_c01456{transform:matrix(0.253448,0.004055,-0.003999,0.249968,0,0);-ms-transform:matrix(0.253448,0.004055,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.253448,0.004055,-0.003999,0.249968,0,0);}
.m99_c01456{transform:matrix(0.253670,0.003551,-0.003500,0.249976,0,0);-ms-transform:matrix(0.253670,0.003551,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.253670,0.003551,-0.003500,0.249976,0,0);}
.m78_c01456{transform:matrix(0.254136,0.003812,-0.003750,0.249972,0,0);-ms-transform:matrix(0.254136,0.003812,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.254136,0.003812,-0.003750,0.249972,0,0);}
.m87_c01456{transform:matrix(0.254296,0.003814,-0.003750,0.249972,0,0);-ms-transform:matrix(0.254296,0.003814,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.254296,0.003814,-0.003750,0.249972,0,0);}
.mca_c01456{transform:matrix(0.255092,0.004081,-0.003999,0.249968,0,0);-ms-transform:matrix(0.255092,0.004081,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.255092,0.004081,-0.003999,0.249968,0,0);}
.mbf_c01456{transform:matrix(0.255463,0.004343,-0.004249,0.249964,0,0);-ms-transform:matrix(0.255463,0.004343,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.255463,0.004343,-0.004249,0.249964,0,0);}
.me2_c01456{transform:matrix(0.255624,0.004601,-0.004499,0.249960,0,0);-ms-transform:matrix(0.255624,0.004601,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.255624,0.004601,-0.004499,0.249960,0,0);}
.m27_c01456{transform:matrix(0.255628,0.004346,-0.004249,0.249964,0,0);-ms-transform:matrix(0.255628,0.004346,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.255628,0.004346,-0.004249,0.249964,0,0);}
.m47_c01456{transform:matrix(0.256355,0.003589,-0.003500,0.249976,0,0);-ms-transform:matrix(0.256355,0.003589,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.256355,0.003589,-0.003500,0.249976,0,0);}
.md5_c01456{transform:matrix(0.256489,0.005130,-0.004999,0.249950,0,0);-ms-transform:matrix(0.256489,0.005130,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.256489,0.005130,-0.004999,0.249950,0,0);}
.m4e_c01456{transform:matrix(0.256660,0.003593,-0.003500,0.249976,0,0);-ms-transform:matrix(0.256660,0.003593,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.256660,0.003593,-0.003500,0.249976,0,0);}
.m6f_c01456{transform:matrix(0.256721,0.003851,-0.003750,0.249972,0,0);-ms-transform:matrix(0.256721,0.003851,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.256721,0.003851,-0.003750,0.249972,0,0);}
.m5d_c01456{transform:matrix(0.256790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256790,0.000000,0.000000,0.250000,0,0);}
.m7f_c01456{transform:matrix(0.257013,0.004626,-0.004499,0.249960,0,0);-ms-transform:matrix(0.257013,0.004626,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.257013,0.004626,-0.004499,0.249960,0,0);}
.m82_c01456{transform:matrix(0.257148,0.004629,-0.004499,0.249960,0,0);-ms-transform:matrix(0.257148,0.004629,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.257148,0.004629,-0.004499,0.249960,0,0);}
.m8e_c01456{transform:matrix(0.257383,0.004376,-0.004249,0.249964,0,0);-ms-transform:matrix(0.257383,0.004376,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.257383,0.004376,-0.004249,0.249964,0,0);}
.mef_c01456{transform:matrix(0.257967,0.004127,-0.003999,0.249968,0,0);-ms-transform:matrix(0.257967,0.004127,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.257967,0.004127,-0.003999,0.249968,0,0);}
.m6a_c01456{transform:matrix(0.258386,0.003876,-0.003750,0.249972,0,0);-ms-transform:matrix(0.258386,0.003876,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.258386,0.003876,-0.003750,0.249972,0,0);}
.m5e_c01456{transform:matrix(0.258615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258615,0.000000,0.000000,0.250000,0,0);}
.me8_c01456{transform:matrix(0.258833,0.004659,-0.004499,0.249960,0,0);-ms-transform:matrix(0.258833,0.004659,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.258833,0.004659,-0.004499,0.249960,0,0);}
.m3e_c01456{transform:matrix(0.259757,0.004416,-0.004249,0.249964,0,0);-ms-transform:matrix(0.259757,0.004416,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.259757,0.004416,-0.004249,0.249964,0,0);}
.med_c01456{transform:matrix(0.259847,0.004158,-0.003999,0.249968,0,0);-ms-transform:matrix(0.259847,0.004158,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.259847,0.004158,-0.003999,0.249968,0,0);}
.mf2_c01456{transform:matrix(0.259982,0.004160,-0.003999,0.249968,0,0);-ms-transform:matrix(0.259982,0.004160,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.259982,0.004160,-0.003999,0.249968,0,0);}
.mda_c01456{transform:matrix(0.260328,0.005207,-0.004999,0.249950,0,0);-ms-transform:matrix(0.260328,0.005207,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.260328,0.005207,-0.004999,0.249950,0,0);}
.ma7_c01456{transform:matrix(0.260752,0.004172,-0.003999,0.249968,0,0);-ms-transform:matrix(0.260752,0.004172,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.260752,0.004172,-0.003999,0.249968,0,0);}
.m49_c01456{transform:matrix(0.260794,0.003651,-0.003500,0.249976,0,0);-ms-transform:matrix(0.260794,0.003651,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.260794,0.003651,-0.003500,0.249976,0,0);}
.m88_c01456{transform:matrix(0.261782,0.004450,-0.004249,0.249964,0,0);-ms-transform:matrix(0.261782,0.004450,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.261782,0.004450,-0.004249,0.249964,0,0);}
.md7_c01456{transform:matrix(0.262268,0.005245,-0.004999,0.249950,0,0);-ms-transform:matrix(0.262268,0.005245,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.262268,0.005245,-0.004999,0.249950,0,0);}
.m5f_c01456{transform:matrix(0.262400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262400,0.000000,0.000000,0.250000,0,0);}
.m43_c01456{transform:matrix(0.263314,0.003686,-0.003500,0.249976,0,0);-ms-transform:matrix(0.263314,0.003686,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.263314,0.003686,-0.003500,0.249976,0,0);}
.m89_c01456{transform:matrix(0.264902,0.004503,-0.004249,0.249964,0,0);-ms-transform:matrix(0.264902,0.004503,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.264902,0.004503,-0.004249,0.249964,0,0);}
.m53_c01456{transform:matrix(0.265277,0.004775,-0.004499,0.249960,0,0);-ms-transform:matrix(0.265277,0.004775,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.265277,0.004775,-0.004499,0.249960,0,0);}
.m32_c01456{transform:matrix(0.265282,0.004510,-0.004249,0.249964,0,0);-ms-transform:matrix(0.265282,0.004510,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.265282,0.004510,-0.004249,0.249964,0,0);}
.m67_c01456{transform:matrix(0.265755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265755,0.000000,0.000000,0.250000,0,0);}
.m79_c01456{transform:matrix(0.266020,0.003990,-0.003750,0.249972,0,0);-ms-transform:matrix(0.266020,0.003990,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.266020,0.003990,-0.003750,0.249972,0,0);}
.m41_c01456{transform:matrix(0.266422,0.004529,-0.004249,0.249964,0,0);-ms-transform:matrix(0.266422,0.004529,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.266422,0.004529,-0.004249,0.249964,0,0);}
.m8d_c01456{transform:matrix(0.267176,0.004542,-0.004249,0.249964,0,0);-ms-transform:matrix(0.267176,0.004542,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.267176,0.004542,-0.004249,0.249964,0,0);}
.m55_c01456{transform:matrix(0.267342,0.004812,-0.004499,0.249960,0,0);-ms-transform:matrix(0.267342,0.004812,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.267342,0.004812,-0.004499,0.249960,0,0);}
.m48_c01456{transform:matrix(0.267434,0.003744,-0.003500,0.249976,0,0);-ms-transform:matrix(0.267434,0.003744,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.267434,0.003744,-0.003500,0.249976,0,0);}
.m66_c01456{transform:matrix(0.267470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267470,0.000000,0.000000,0.250000,0,0);}
.md9_c01456{transform:matrix(0.267861,0.005357,-0.004999,0.249950,0,0);-ms-transform:matrix(0.267861,0.005357,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.267861,0.005357,-0.004999,0.249950,0,0);}
.m7e_c01456{transform:matrix(0.268007,0.004824,-0.004499,0.249960,0,0);-ms-transform:matrix(0.268007,0.004824,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.268007,0.004824,-0.004499,0.249960,0,0);}
.ma0_c01456{transform:matrix(0.268166,0.004291,-0.003999,0.249968,0,0);-ms-transform:matrix(0.268166,0.004291,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.268166,0.004291,-0.003999,0.249968,0,0);}
.md6_c01456{transform:matrix(0.268566,0.005371,-0.004999,0.249950,0,0);-ms-transform:matrix(0.268566,0.005371,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.268566,0.005371,-0.004999,0.249950,0,0);}
.m60_c01456{transform:matrix(0.268620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268620,0.000000,0.000000,0.250000,0,0);}
.m4f_c01456{transform:matrix(0.268681,0.004836,-0.004499,0.249960,0,0);-ms-transform:matrix(0.268681,0.004836,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.268681,0.004836,-0.004499,0.249960,0,0);}
.m34_c01456{transform:matrix(0.269091,0.004575,-0.004249,0.249964,0,0);-ms-transform:matrix(0.269091,0.004575,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.269091,0.004575,-0.004249,0.249964,0,0);}
.m8a_c01456{transform:matrix(0.269861,0.004588,-0.004249,0.249964,0,0);-ms-transform:matrix(0.269861,0.004588,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.269861,0.004588,-0.004249,0.249964,0,0);}
.m74_c01456{transform:matrix(0.269905,0.004049,-0.003750,0.249972,0,0);-ms-transform:matrix(0.269905,0.004049,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.269905,0.004049,-0.003750,0.249972,0,0);}
.m37_c01456{transform:matrix(0.270016,0.004590,-0.004249,0.249964,0,0);-ms-transform:matrix(0.270016,0.004590,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.270016,0.004590,-0.004249,0.249964,0,0);}
.m51_c01456{transform:matrix(0.270231,0.004864,-0.004499,0.249960,0,0);-ms-transform:matrix(0.270231,0.004864,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.270231,0.004864,-0.004499,0.249960,0,0);}
.mdf_c01456{transform:matrix(0.270591,0.004871,-0.004499,0.249960,0,0);-ms-transform:matrix(0.270591,0.004871,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.270591,0.004871,-0.004499,0.249960,0,0);}
.m63_c01456{transform:matrix(0.270810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270810,0.000000,0.000000,0.250000,0,0);}
.m85_c01456{transform:matrix(0.270940,0.004064,-0.003750,0.249972,0,0);-ms-transform:matrix(0.270940,0.004064,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.270940,0.004064,-0.003750,0.249972,0,0);}
.m64_c01456{transform:matrix(0.271150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271150,0.000000,0.000000,0.250000,0,0);}
.m97_c01456{transform:matrix(0.271521,0.004616,-0.004249,0.249964,0,0);-ms-transform:matrix(0.271521,0.004616,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.271521,0.004616,-0.004249,0.249964,0,0);}
.m4b_c01456{transform:matrix(0.272088,0.003809,-0.003500,0.249976,0,0);-ms-transform:matrix(0.272088,0.003809,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.272088,0.003809,-0.003500,0.249976,0,0);}
.m75_c01456{transform:matrix(0.272674,0.004090,-0.003750,0.249972,0,0);-ms-transform:matrix(0.272674,0.004090,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.272674,0.004090,-0.003750,0.249972,0,0);}
.m33_c01456{transform:matrix(0.273151,0.004644,-0.004249,0.249964,0,0);-ms-transform:matrix(0.273151,0.004644,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.273151,0.004644,-0.004249,0.249964,0,0);}
.ma5_c01456{transform:matrix(0.273365,0.004374,-0.003999,0.249968,0,0);-ms-transform:matrix(0.273365,0.004374,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.273365,0.004374,-0.003999,0.249968,0,0);}
.m83_c01456{transform:matrix(0.273439,0.004102,-0.003750,0.249972,0,0);-ms-transform:matrix(0.273439,0.004102,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.273439,0.004102,-0.003750,0.249972,0,0);}
.m65_c01456{transform:matrix(0.273925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273925,0.000000,0.000000,0.250000,0,0);}
.m8c_c01456{transform:matrix(0.274385,0.004665,-0.004249,0.249964,0,0);-ms-transform:matrix(0.274385,0.004665,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.274385,0.004665,-0.004249,0.249964,0,0);}
.md4_c01456{transform:matrix(0.275290,0.005506,-0.004999,0.249950,0,0);-ms-transform:matrix(0.275290,0.005506,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.275290,0.005506,-0.004999,0.249950,0,0);}
.mab_c01456{transform:matrix(0.276280,0.004420,-0.003999,0.249968,0,0);-ms-transform:matrix(0.276280,0.004420,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.276280,0.004420,-0.003999,0.249968,0,0);}
.mac_c01456{transform:matrix(0.276295,0.004421,-0.003999,0.249968,0,0);-ms-transform:matrix(0.276295,0.004421,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.276295,0.004421,-0.003999,0.249968,0,0);}
.maf_c01456{transform:matrix(0.277245,0.004436,-0.003999,0.249968,0,0);-ms-transform:matrix(0.277245,0.004436,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.277245,0.004436,-0.003999,0.249968,0,0);}
.m36_c01456{transform:matrix(0.277330,0.004715,-0.004249,0.249964,0,0);-ms-transform:matrix(0.277330,0.004715,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.277330,0.004715,-0.004249,0.249964,0,0);}
.ma3_c01456{transform:matrix(0.277604,0.004442,-0.003999,0.249968,0,0);-ms-transform:matrix(0.277604,0.004442,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.277604,0.004442,-0.003999,0.249968,0,0);}
.m2c_c01456{transform:matrix(0.278365,0.004732,-0.004249,0.249964,0,0);-ms-transform:matrix(0.278365,0.004732,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.278365,0.004732,-0.004249,0.249964,0,0);}
.ma4_c01456{transform:matrix(0.278849,0.004462,-0.003999,0.249968,0,0);-ms-transform:matrix(0.278849,0.004462,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.278849,0.004462,-0.003999,0.249968,0,0);}
.m42_c01456{transform:matrix(0.280130,0.004762,-0.004249,0.249964,0,0);-ms-transform:matrix(0.280130,0.004762,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.280130,0.004762,-0.004249,0.249964,0,0);}
.m90_c01456{transform:matrix(0.280774,0.004773,-0.004249,0.249964,0,0);-ms-transform:matrix(0.280774,0.004773,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.280774,0.004773,-0.004249,0.249964,0,0);}
.maa_c01456{transform:matrix(0.281139,0.004498,-0.003999,0.249968,0,0);-ms-transform:matrix(0.281139,0.004498,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.281139,0.004498,-0.003999,0.249968,0,0);}
.me9_c01456{transform:matrix(0.281439,0.005066,-0.004499,0.249960,0,0);-ms-transform:matrix(0.281439,0.005066,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.281439,0.005066,-0.004499,0.249960,0,0);}
.mf5_c01456{transform:matrix(0.281649,0.004506,-0.003999,0.249968,0,0);-ms-transform:matrix(0.281649,0.004506,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.281649,0.004506,-0.003999,0.249968,0,0);}
.me5_c01456{transform:matrix(0.281749,0.005071,-0.004499,0.249960,0,0);-ms-transform:matrix(0.281749,0.005071,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.281749,0.005071,-0.004499,0.249960,0,0);}
.m40_c01456{transform:matrix(0.282059,0.004795,-0.004249,0.249964,0,0);-ms-transform:matrix(0.282059,0.004795,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.282059,0.004795,-0.004249,0.249964,0,0);}
.ma9_c01456{transform:matrix(0.282329,0.004517,-0.003999,0.249968,0,0);-ms-transform:matrix(0.282329,0.004517,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.282329,0.004517,-0.003999,0.249968,0,0);}
.m3c_c01456{transform:matrix(0.282454,0.004802,-0.004249,0.249964,0,0);-ms-transform:matrix(0.282454,0.004802,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.282454,0.004802,-0.004249,0.249964,0,0);}
.m7b_c01456{transform:matrix(0.282864,0.005092,-0.004499,0.249960,0,0);-ms-transform:matrix(0.282864,0.005092,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.282864,0.005092,-0.004499,0.249960,0,0);}
.m9f_c01456{transform:matrix(0.283264,0.004532,-0.003999,0.249968,0,0);-ms-transform:matrix(0.283264,0.004532,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.283264,0.004532,-0.003999,0.249968,0,0);}
.mea_c01456{transform:matrix(0.283459,0.005102,-0.004499,0.249960,0,0);-ms-transform:matrix(0.283459,0.005102,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.283459,0.005102,-0.004499,0.249960,0,0);}
.m9a_c01456{transform:matrix(0.283777,0.003973,-0.003500,0.249976,0,0);-ms-transform:matrix(0.283777,0.003973,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.283777,0.003973,-0.003500,0.249976,0,0);}
.m9c_c01456{transform:matrix(0.284467,0.003983,-0.003500,0.249976,0,0);-ms-transform:matrix(0.284467,0.003983,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.284467,0.003983,-0.003500,0.249976,0,0);}
.m24_c01456{transform:matrix(0.284564,0.004838,-0.004249,0.249964,0,0);-ms-transform:matrix(0.284564,0.004838,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.284564,0.004838,-0.004249,0.249964,0,0);}
.me1_c01456{transform:matrix(0.284734,0.005125,-0.004499,0.249960,0,0);-ms-transform:matrix(0.284734,0.005125,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.284734,0.005125,-0.004499,0.249960,0,0);}
.m44_c01456{transform:matrix(0.284932,0.003989,-0.003500,0.249976,0,0);-ms-transform:matrix(0.284932,0.003989,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.284932,0.003989,-0.003500,0.249976,0,0);}
.meb_c01456{transform:matrix(0.286199,0.005152,-0.004499,0.249960,0,0);-ms-transform:matrix(0.286199,0.005152,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.286199,0.005152,-0.004499,0.249960,0,0);}
.m25_c01456{transform:matrix(0.288378,0.004902,-0.004249,0.249964,0,0);-ms-transform:matrix(0.288378,0.004902,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.288378,0.004902,-0.004249,0.249964,0,0);}
.me0_c01456{transform:matrix(0.288733,0.005197,-0.004499,0.249960,0,0);-ms-transform:matrix(0.288733,0.005197,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.288733,0.005197,-0.004499,0.249960,0,0);}
.m9b_c01456{transform:matrix(0.290122,0.004062,-0.003500,0.249976,0,0);-ms-transform:matrix(0.290122,0.004062,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.290122,0.004062,-0.003500,0.249976,0,0);}
.me7_c01456{transform:matrix(0.290123,0.005222,-0.004499,0.249960,0,0);-ms-transform:matrix(0.290123,0.005222,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.290123,0.005222,-0.004499,0.249960,0,0);}
.m35_c01456{transform:matrix(0.290553,0.004939,-0.004249,0.249964,0,0);-ms-transform:matrix(0.290553,0.004939,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.290553,0.004939,-0.004249,0.249964,0,0);}
.m7d_c01456{transform:matrix(0.290943,0.005237,-0.004499,0.249960,0,0);-ms-transform:matrix(0.290943,0.005237,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.290943,0.005237,-0.004499,0.249960,0,0);}
.m30_c01456{transform:matrix(0.291253,0.004951,-0.004249,0.249964,0,0);-ms-transform:matrix(0.291253,0.004951,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.291253,0.004951,-0.004249,0.249964,0,0);}
.mad_c01456{transform:matrix(0.291323,0.004661,-0.003999,0.249968,0,0);-ms-transform:matrix(0.291323,0.004661,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.291323,0.004661,-0.003999,0.249968,0,0);}
.m3d_c01456{transform:matrix(0.291803,0.004961,-0.004249,0.249964,0,0);-ms-transform:matrix(0.291803,0.004961,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.291803,0.004961,-0.004249,0.249964,0,0);}
.m69_c01456{transform:matrix(0.291812,0.004377,-0.003750,0.249972,0,0);-ms-transform:matrix(0.291812,0.004377,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.291812,0.004377,-0.003750,0.249972,0,0);}
.m3f_c01456{transform:matrix(0.292008,0.004964,-0.004249,0.249964,0,0);-ms-transform:matrix(0.292008,0.004964,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.292008,0.004964,-0.004249,0.249964,0,0);}
.m2d_c01456{transform:matrix(0.292293,0.004969,-0.004249,0.249964,0,0);-ms-transform:matrix(0.292293,0.004969,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.292293,0.004969,-0.004249,0.249964,0,0);}
.mdd_c01456{transform:matrix(0.292758,0.005270,-0.004499,0.249960,0,0);-ms-transform:matrix(0.292758,0.005270,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.292758,0.005270,-0.004499,0.249960,0,0);}
.m81_c01456{transform:matrix(0.293193,0.005277,-0.004499,0.249960,0,0);-ms-transform:matrix(0.293193,0.005277,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.293193,0.005277,-0.004499,0.249960,0,0);}
.m73_c01456{transform:matrix(0.293402,0.004401,-0.003750,0.249972,0,0);-ms-transform:matrix(0.293402,0.004401,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.293402,0.004401,-0.003750,0.249972,0,0);}
.me3_c01456{transform:matrix(0.293907,0.005290,-0.004499,0.249960,0,0);-ms-transform:matrix(0.293907,0.005290,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.293907,0.005290,-0.004499,0.249960,0,0);}
.m76_c01456{transform:matrix(0.294047,0.004411,-0.003750,0.249972,0,0);-ms-transform:matrix(0.294047,0.004411,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.294047,0.004411,-0.003750,0.249972,0,0);}
.ma8_c01456{transform:matrix(0.295217,0.004723,-0.003999,0.249968,0,0);-ms-transform:matrix(0.295217,0.004723,-0.003999,0.249968,0,0);-webkit-transform:matrix(0.295217,0.004723,-0.003999,0.249968,0,0);}
.m68_c01456{transform:matrix(0.296192,0.004443,-0.003750,0.249972,0,0);-ms-transform:matrix(0.296192,0.004443,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.296192,0.004443,-0.003750,0.249972,0,0);}
.mde_c01456{transform:matrix(0.296657,0.005340,-0.004499,0.249960,0,0);-ms-transform:matrix(0.296657,0.005340,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.296657,0.005340,-0.004499,0.249960,0,0);}
.m9d_c01456{transform:matrix(0.296671,0.004153,-0.003500,0.249976,0,0);-ms-transform:matrix(0.296671,0.004153,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.296671,0.004153,-0.003500,0.249976,0,0);}
.me6_c01456{transform:matrix(0.296807,0.005343,-0.004499,0.249960,0,0);-ms-transform:matrix(0.296807,0.005343,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.296807,0.005343,-0.004499,0.249960,0,0);}
.m23_c01456{transform:matrix(0.297627,0.005060,-0.004249,0.249964,0,0);-ms-transform:matrix(0.297627,0.005060,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.297627,0.005060,-0.004249,0.249964,0,0);}
.m6b_c01456{transform:matrix(0.297777,0.004467,-0.003750,0.249972,0,0);-ms-transform:matrix(0.297777,0.004467,-0.003750,0.249972,0,0);-webkit-transform:matrix(0.297777,0.004467,-0.003750,0.249972,0,0);}
.m26_c01456{transform:matrix(0.298372,0.005072,-0.004249,0.249964,0,0);-ms-transform:matrix(0.298372,0.005072,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.298372,0.005072,-0.004249,0.249964,0,0);}
.m22_c01456{transform:matrix(0.299027,0.005083,-0.004249,0.249964,0,0);-ms-transform:matrix(0.299027,0.005083,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.299027,0.005083,-0.004249,0.249964,0,0);}
.m2f_c01456{transform:matrix(0.299127,0.005085,-0.004249,0.249964,0,0);-ms-transform:matrix(0.299127,0.005085,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.299127,0.005085,-0.004249,0.249964,0,0);}
.m21_c01456{transform:matrix(0.299352,0.005089,-0.004249,0.249964,0,0);-ms-transform:matrix(0.299352,0.005089,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.299352,0.005089,-0.004249,0.249964,0,0);}
.m3b_c01456{transform:matrix(0.299462,0.005091,-0.004249,0.249964,0,0);-ms-transform:matrix(0.299462,0.005091,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.299462,0.005091,-0.004249,0.249964,0,0);}
.m28_c01456{transform:matrix(0.299662,0.005094,-0.004249,0.249964,0,0);-ms-transform:matrix(0.299662,0.005094,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.299662,0.005094,-0.004249,0.249964,0,0);}
.m2a_c01456{transform:matrix(0.300267,0.005105,-0.004249,0.249964,0,0);-ms-transform:matrix(0.300267,0.005105,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.300267,0.005105,-0.004249,0.249964,0,0);}
.me4_c01456{transform:matrix(0.300821,0.005415,-0.004499,0.249960,0,0);-ms-transform:matrix(0.300821,0.005415,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.300821,0.005415,-0.004499,0.249960,0,0);}
.m2b_c01456{transform:matrix(0.301106,0.005119,-0.004249,0.249964,0,0);-ms-transform:matrix(0.301106,0.005119,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.301106,0.005119,-0.004249,0.249964,0,0);}
.m3a_c01456{transform:matrix(0.302211,0.005138,-0.004249,0.249964,0,0);-ms-transform:matrix(0.302211,0.005138,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.302211,0.005138,-0.004249,0.249964,0,0);}
.m39_c01456{transform:matrix(0.305001,0.005185,-0.004249,0.249964,0,0);-ms-transform:matrix(0.305001,0.005185,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.305001,0.005185,-0.004249,0.249964,0,0);}
.m7c_c01456{transform:matrix(0.305046,0.005491,-0.004499,0.249960,0,0);-ms-transform:matrix(0.305046,0.005491,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.305046,0.005491,-0.004499,0.249960,0,0);}
.m7a_c01456{transform:matrix(0.307675,0.005538,-0.004499,0.249960,0,0);-ms-transform:matrix(0.307675,0.005538,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.307675,0.005538,-0.004499,0.249960,0,0);}
.m9e_c01456{transform:matrix(0.312289,0.004372,-0.003500,0.249976,0,0);-ms-transform:matrix(0.312289,0.004372,-0.003500,0.249976,0,0);-webkit-transform:matrix(0.312289,0.004372,-0.003500,0.249976,0,0);}
.m56_c01456{transform:matrix(0.312879,0.005632,-0.004499,0.249960,0,0);-ms-transform:matrix(0.312879,0.005632,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.312879,0.005632,-0.004499,0.249960,0,0);}
.mdc_c01456{transform:matrix(0.320971,0.006419,-0.004999,0.249950,0,0);-ms-transform:matrix(0.320971,0.006419,-0.004999,0.249950,0,0);-webkit-transform:matrix(0.320971,0.006419,-0.004999,0.249950,0,0);}
.m95_c01456{transform:matrix(0.322838,0.005488,-0.004249,0.249964,0,0);-ms-transform:matrix(0.322838,0.005488,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.322838,0.005488,-0.004249,0.249964,0,0);}
.m6_c01456{transform:matrix(0.329340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329340,0.000000,0.000000,0.250000,0,0);}
.mec_c01456{transform:matrix(0.370820,0.006675,-0.004499,0.249960,0,0);-ms-transform:matrix(0.370820,0.006675,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.370820,0.006675,-0.004499,0.249960,0,0);}
.m15_c01456{transform:matrix(0.372970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372970,0.000000,0.000000,0.250000,0,0);}
.m9_c01456{transform:matrix(0.373965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373965,0.000000,0.000000,0.250000,0,0);}
.m0_c01456{transform:matrix(0.418390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418390,0.000000,0.000000,0.250000,0,0);}
.m29_c01456{transform:matrix(0.448220,0.007620,-0.004249,0.249964,0,0);-ms-transform:matrix(0.448220,0.007620,-0.004249,0.249964,0,0);-webkit-transform:matrix(0.448220,0.007620,-0.004249,0.249964,0,0);}
.m14_c01456{transform:matrix(0.458485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.458485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.458485,0.000000,0.000000,0.250000,0,0);}
.m1d_c01456{transform:matrix(0.473170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.473170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.473170,0.000000,0.000000,0.250000,0,0);}
.m18_c01456{transform:matrix(0.501730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.501730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.501730,0.000000,0.000000,0.250000,0,0);}
.m17_c01456{transform:matrix(0.514190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514190,0.000000,0.000000,0.250000,0,0);}
.mb_c01456{transform:matrix(0.526605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.526605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.526605,0.000000,0.000000,0.250000,0,0);}
.md_c01456{transform:matrix(0.545710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545710,0.000000,0.000000,0.250000,0,0);}
.m5c_c01456{transform:matrix(0.644336,0.011598,-0.004499,0.249960,0,0);-ms-transform:matrix(0.644336,0.011598,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.644336,0.011598,-0.004499,0.249960,0,0);}
.m1a_c01456{transform:matrix(0.706695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.706695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.706695,0.000000,0.000000,0.250000,0,0);}
.m5b_c01456{transform:matrix(0.721893,0.012994,-0.004499,0.249960,0,0);-ms-transform:matrix(0.721893,0.012994,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.721893,0.012994,-0.004499,0.249960,0,0);}
.m5a_c01456{transform:matrix(0.753618,0.013565,-0.004499,0.249960,0,0);-ms-transform:matrix(0.753618,0.013565,-0.004499,0.249960,0,0);-webkit-transform:matrix(0.753618,0.013565,-0.004499,0.249960,0,0);}
.m1c_c01456{transform:matrix(0.815415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.815415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.815415,0.000000,0.000000,0.250000,0,0);}
.m13_c01456{transform:matrix(0.893295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.893295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.893295,0.000000,0.000000,0.250000,0,0);}
.m58_c01456{transform:matrix(1.035267,0.018635,-0.004499,0.249960,0,0);-ms-transform:matrix(1.035267,0.018635,-0.004499,0.249960,0,0);-webkit-transform:matrix(1.035267,0.018635,-0.004499,0.249960,0,0);}
.m1_c01456{transform:matrix(1.067380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.067380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.067380,0.000000,0.000000,0.250000,0,0);}
.m16_c01456{transform:matrix(1.447410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.447410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.447410,0.000000,0.000000,0.250000,0,0);}
.m19_c01456{transform:matrix(1.611265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.611265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.611265,0.000000,0.000000,0.250000,0,0);}
.mf_c01456{transform:matrix(1.705945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.705945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.705945,0.000000,0.000000,0.250000,0,0);}
.m11_c01456{transform:matrix(1.829830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.829830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.829830,0.000000,0.000000,0.250000,0,0);}
.m59_c01456{transform:matrix(3.860235,0.069484,-0.004499,0.249960,0,0);-ms-transform:matrix(3.860235,0.069484,-0.004499,0.249960,0,0);-webkit-transform:matrix(3.860235,0.069484,-0.004499,0.249960,0,0);}
.m57_c01456{transform:matrix(5.631143,0.101361,-0.004499,0.249960,0,0);-ms-transform:matrix(5.631143,0.101361,-0.004499,0.249960,0,0);-webkit-transform:matrix(5.631143,0.101361,-0.004499,0.249960,0,0);}
.m10_c01456{transform:matrix(6.639645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(6.639645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(6.639645,0.000000,0.000000,0.250000,0,0);}
.v0_c01456{vertical-align:0.000000px;}
.ls0_c01456{letter-spacing:0.000000px;}
.sc__c01456{text-shadow:none;}
.sc0_c01456{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__c01456{-webkit-text-stroke:0px transparent;}
.sc0_c01456{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01456{word-spacing:0.000000px;}
.fc0_c01456{color:transparent;}
.fs0_c01456{font-size:18.000000px;}
.fs7_c01456{font-size:18.002916px;}
.fs1_c01456{font-size:24.000000px;}
.fs4_c01456{font-size:48.006935px;}
.fse_c01456{font-size:66.006468px;}
.fs9_c01456{font-size:66.007425px;}
.fs10_c01456{font-size:66.008447px;}
.fs3_c01456{font-size:66.009536px;}
.fsb_c01456{font-size:66.010691px;}
.fs8_c01456{font-size:72.000000px;}
.fs5_c01456{font-size:72.007056px;}
.fsc_c01456{font-size:72.008100px;}
.fsf_c01456{font-size:72.009215px;}
.fsd_c01456{font-size:72.010403px;}
.fs6_c01456{font-size:72.011663px;}
.fs15_c01456{font-size:72.014399px;}
.fs2_c01456{font-size:78.000000px;}
.fsa_c01456{font-size:78.008775px;}
.fs13_c01456{font-size:78.009983px;}
.fs11_c01456{font-size:78.011270px;}
.fs12_c01456{font-size:96.012287px;}
.fs14_c01456{font-size:102.013055px;}
.y0_c01456{bottom:0.000000px;}
.y2_c01456{bottom:34.830000px;}
.yda_c01456{bottom:129.381048px;}
.yd9_c01456{bottom:129.869208px;}
.yd8_c01456{bottom:131.066112px;}
.yd7_c01456{bottom:133.002264px;}
.yd6_c01456{bottom:133.546512px;}
.yd5_c01456{bottom:134.047848px;}
.yd4_c01456{bottom:135.123312px;}
.yd3_c01456{bottom:136.103832px;}
.yd2_c01456{bottom:138.243000px;}
.yd1_c01456{bottom:163.635861px;}
.yd0_c01456{bottom:164.444052px;}
.ycf_c01456{bottom:165.805068px;}
.yce_c01456{bottom:166.636344px;}
.ycd_c01456{bottom:167.403576px;}
.ycc_c01456{bottom:169.163139px;}
.ycb_c01456{bottom:170.772933px;}
.yca_c01456{bottom:171.944166px;}
.yc9_c01456{bottom:173.878932px;}
.y5_c01456{bottom:176.440500px;}
.yc8_c01456{bottom:201.793239px;}
.yc7_c01456{bottom:202.600296px;}
.yc6_c01456{bottom:203.766858px;}
.yc5_c01456{bottom:204.753627px;}
.yc4_c01456{bottom:205.715934px;}
.yc3_c01456{bottom:207.533547px;}
.yc2_c01456{bottom:209.254500px;}
.yc1_c01456{bottom:235.620810px;}
.yc0_c01456{bottom:236.524260px;}
.ybf_c01456{bottom:238.036620px;}
.ybe_c01456{bottom:238.944180px;}
.ybd_c01456{bottom:239.796240px;}
.ybc_c01456{bottom:241.540860px;}
.ybb_c01456{bottom:243.318930px;}
.yba_c01456{bottom:244.625670px;}
.yb9_c01456{bottom:246.786000px;}
.yb8_c01456{bottom:276.488880px;}
.yb7_c01456{bottom:308.451216px;}
.yb6_c01456{bottom:308.939580px;}
.yb5_c01456{bottom:309.386460px;}
.yb4_c01456{bottom:310.631148px;}
.yb3_c01456{bottom:311.073900px;}
.yb2_c01456{bottom:312.131760px;}
.yb1_c01456{bottom:313.512324px;}
.yb0_c01456{bottom:314.918436px;}
.yaf_c01456{bottom:316.437936px;}
.yae_c01456{bottom:342.815508px;}
.yad_c01456{bottom:343.505988px;}
.yac_c01456{bottom:345.083340px;}
.yab_c01456{bottom:346.522884px;}
.yaa_c01456{bottom:347.205636px;}
.ya9_c01456{bottom:347.732460px;}
.ya8_c01456{bottom:348.946428px;}
.ya7_c01456{bottom:350.527764px;}
.ya6_c01456{bottom:352.084500px;}
.ya5_c01456{bottom:381.059805px;}
.ya4_c01456{bottom:382.392405px;}
.ya3_c01456{bottom:383.708910px;}
.ya2_c01456{bottom:384.028525px;}
.ya1_c01456{bottom:384.847480px;}
.ya0_c01456{bottom:385.348860px;}
.y9f_c01456{bottom:386.637939px;}
.y9e_c01456{bottom:412.528206px;}
.y9d_c01456{bottom:413.079083px;}
.y9c_c01456{bottom:413.823172px;}
.y9b_c01456{bottom:414.947876px;}
.y9a_c01456{bottom:416.623302px;}
.y99_c01456{bottom:417.338526px;}
.y98_c01456{bottom:418.317216px;}
.y97_c01456{bottom:419.731675px;}
.y96_c01456{bottom:421.094242px;}
.y95_c01456{bottom:422.554500px;}
.y94_c01456{bottom:451.404120px;}
.y93_c01456{bottom:451.902408px;}
.y92_c01456{bottom:453.052908px;}
.y91_c01456{bottom:453.863076px;}
.y90_c01456{bottom:454.369956px;}
.y8f_c01456{bottom:455.322300px;}
.y8e_c01456{bottom:456.493020px;}
.y8d_c01456{bottom:457.647912px;}
.y8c_c01456{bottom:484.517604px;}
.y8b_c01456{bottom:485.030988px;}
.y8a_c01456{bottom:486.453612px;}
.y89_c01456{bottom:488.371596px;}
.y88_c01456{bottom:489.788724px;}
.y87_c01456{bottom:490.825668px;}
.y86_c01456{bottom:491.530020px;}
.y85_c01456{bottom:493.111068px;}
.y84_c01456{bottom:493.834500px;}
.y83_c01456{bottom:525.412572px;}
.y82_c01456{bottom:526.489809px;}
.y81_c01456{bottom:527.087154px;}
.y80_c01456{bottom:528.009642px;}
.y7f_c01456{bottom:528.463305px;}
.y7e_c01456{bottom:528.931500px;}
.y7d_c01456{bottom:556.410466px;}
.y7c_c01456{bottom:557.836998px;}
.y7b_c01456{bottom:558.359388px;}
.y7a_c01456{bottom:560.579352px;}
.y79_c01456{bottom:561.348423px;}
.y78_c01456{bottom:561.874587px;}
.y77_c01456{bottom:563.957513px;}
.y76_c01456{bottom:564.298204px;}
.y75_c01456{bottom:591.723834px;}
.y74_c01456{bottom:592.260252px;}
.y73_c01456{bottom:593.390310px;}
.y72_c01456{bottom:594.514860px;}
.y71_c01456{bottom:596.167489px;}
.y70_c01456{bottom:596.538361px;}
.y6f_c01456{bottom:598.205705px;}
.y3_c01456{bottom:599.676000px;}
.y6e_c01456{bottom:599.734430px;}
.y6d_c01456{bottom:601.024500px;}
.y6c_c01456{bottom:631.305750px;}
.y6b_c01456{bottom:631.969882px;}
.y6a_c01456{bottom:633.431955px;}
.y69_c01456{bottom:634.088100px;}
.y68_c01456{bottom:635.583000px;}
.y67_c01456{bottom:660.929670px;}
.y66_c01456{bottom:662.504850px;}
.y65_c01456{bottom:663.111648px;}
.y64_c01456{bottom:663.894324px;}
.y63_c01456{bottom:664.676757px;}
.y62_c01456{bottom:666.262089px;}
.y61_c01456{bottom:668.453868px;}
.y60_c01456{bottom:669.226932px;}
.y5f_c01456{bottom:671.764500px;}
.y4_c01456{bottom:674.868000px;}
.y5e_c01456{bottom:701.683620px;}
.y5d_c01456{bottom:702.173625px;}
.y5c_c01456{bottom:702.667005px;}
.y5b_c01456{bottom:703.991512px;}
.y5a_c01456{bottom:704.806327px;}
.y59_c01456{bottom:705.773917px;}
.y58_c01456{bottom:732.927262px;}
.y57_c01456{bottom:734.716725px;}
.y56_c01456{bottom:735.514605px;}
.y55_c01456{bottom:735.898132px;}
.y54_c01456{bottom:737.872192px;}
.y53_c01456{bottom:739.588612px;}
.y52_c01456{bottom:741.229928px;}
.y51_c01456{bottom:742.770930px;}
.y50_c01456{bottom:774.218055px;}
.y4f_c01456{bottom:774.687855px;}
.y4e_c01456{bottom:775.854435px;}
.y4d_c01456{bottom:777.333000px;}
.y1_c01456{bottom:799.200000px;}
.y4c_c01456{bottom:804.181500px;}
.y4b_c01456{bottom:805.126500px;}
.y4a_c01456{bottom:806.788500px;}
.y49_c01456{bottom:808.849500px;}
.y48_c01456{bottom:810.708000px;}
.y47_c01456{bottom:811.263000px;}
.y46_c01456{bottom:812.557500px;}
.y45_c01456{bottom:814.054500px;}
.y44_c01456{bottom:847.503000px;}
.y43_c01456{bottom:872.104902px;}
.y42_c01456{bottom:872.373435px;}
.y41_c01456{bottom:872.603868px;}
.y40_c01456{bottom:873.714276px;}
.y3f_c01456{bottom:874.946244px;}
.y3d_c01456{bottom:875.613744px;}
.y3e_c01456{bottom:876.434868px;}
.y3c_c01456{bottom:878.773095px;}
.y3b_c01456{bottom:879.385617px;}
.y3a_c01456{bottom:880.921485px;}
.y39_c01456{bottom:881.737911px;}
.y38_c01456{bottom:883.327320px;}
.y37_c01456{bottom:884.119716px;}
.y36_c01456{bottom:885.874500px;}
.y35_c01456{bottom:913.904403px;}
.y34_c01456{bottom:914.413632px;}
.y33_c01456{bottom:914.944509px;}
.y32_c01456{bottom:916.163574px;}
.y31_c01456{bottom:917.891679px;}
.y30_c01456{bottom:918.621915px;}
.y2f_c01456{bottom:919.667469px;}
.y2e_c01456{bottom:921.240204px;}
.y2d_c01456{bottom:951.055980px;}
.y2c_c01456{bottom:951.505905px;}
.y2b_c01456{bottom:952.265496px;}
.y2a_c01456{bottom:953.971704px;}
.y29_c01456{bottom:954.723000px;}
.y28_c01456{bottom:981.151229px;}
.y27_c01456{bottom:981.891443px;}
.y26_c01456{bottom:983.176770px;}
.y25_c01456{bottom:983.952608px;}
.y24_c01456{bottom:984.681602px;}
.y23_c01456{bottom:986.347925px;}
.y22_c01456{bottom:987.477906px;}
.y21_c01456{bottom:989.148666px;}
.y20_c01456{bottom:991.168980px;}
.y1f_c01456{bottom:1018.498071px;}
.y1e_c01456{bottom:1019.044205px;}
.y1d_c01456{bottom:1019.613594px;}
.y1c_c01456{bottom:1019.975210px;}
.y1b_c01456{bottom:1021.269641px;}
.y1a_c01456{bottom:1022.202201px;}
.y19_c01456{bottom:1023.312981px;}
.y18_c01456{bottom:1024.065155px;}
.y17_c01456{bottom:1024.626155px;}
.y16_c01456{bottom:1026.274500px;}
.y15_c01456{bottom:1056.433593px;}
.y14_c01456{bottom:1056.939027px;}
.y13_c01456{bottom:1058.401782px;}
.y12_c01456{bottom:1059.239590px;}
.y11_c01456{bottom:1060.706400px;}
.y10_c01456{bottom:1062.173490px;}
.yf_c01456{bottom:1096.039567px;}
.ye_c01456{bottom:1124.072971px;}
.yd_c01456{bottom:1124.623771px;}
.yc_c01456{bottom:1125.753064px;}
.yb_c01456{bottom:1127.029135px;}
.ya_c01456{bottom:1127.979597px;}
.y9_c01456{bottom:1129.457449px;}
.y8_c01456{bottom:1131.701475px;}
.y7_c01456{bottom:1133.194500px;}
.y6_c01456{bottom:1203.238500px;}
.h2_c01456{height:18.000000px;}
.h9_c01456{height:18.002916px;}
.h3_c01456{height:24.000000px;}
.h6_c01456{height:48.006935px;}
.h10_c01456{height:66.006468px;}
.hb_c01456{height:66.007425px;}
.h12_c01456{height:66.008447px;}
.h5_c01456{height:66.009536px;}
.hd_c01456{height:66.010691px;}
.ha_c01456{height:72.000000px;}
.h7_c01456{height:72.007056px;}
.he_c01456{height:72.008100px;}
.h11_c01456{height:72.009215px;}
.hf_c01456{height:72.010403px;}
.h8_c01456{height:72.011663px;}
.h17_c01456{height:72.014399px;}
.h4_c01456{height:78.000000px;}
.hc_c01456{height:78.008775px;}
.h15_c01456{height:78.009983px;}
.h13_c01456{height:78.011270px;}
.h14_c01456{height:96.012287px;}
.h16_c01456{height:102.013055px;}
.h0_c01456{height:1250.850000px;}
.h1_c01456{height:1251.000000px;}
.w1_c01456{width:894.750000px;}
.w0_c01456{width:895.050000px;}
.x0_c01456{left:0.000000px;}
.x4_c01456{left:1.080000px;}
.x2_c01456{left:2.160000px;}
.x5_c01456{left:3.240000px;}
.x1_c01456{left:5.400000px;}
.x6_c01456{left:119.610000px;}
.x8_c01456{left:169.560000px;}
.x7_c01456{left:176.850000px;}
.x3_c01456{left:216.540000px;}
.x63_c01456{left:227.371500px;}
.x57_c01456{left:230.337000px;}
.x43_c01456{left:231.426000px;}
.x2f_c01456{left:233.054649px;}
.x76_c01456{left:235.120500px;}
.x15_c01456{left:236.841014px;}
.x9a_c01456{left:245.694000px;}
.x99_c01456{left:265.411248px;}
.x93_c01456{left:267.109704px;}
.x7c_c01456{left:268.993332px;}
.x71_c01456{left:270.385500px;}
.x60_c01456{left:271.413000px;}
.x4a_c01456{left:274.392000px;}
.x40_c01456{left:275.670000px;}
.x2b_c01456{left:277.368000px;}
.xc_c01456{left:280.030500px;}
.x14_c01456{left:281.071849px;}
.x6a_c01456{left:283.074927px;}
.x64_c01456{left:303.258000px;}
.x6b_c01456{left:304.351284px;}
.x4e_c01456{left:317.031668px;}
.x44_c01456{left:319.462500px;}
.x81_c01456{left:322.989000px;}
.x35_c01456{left:329.985000px;}
.x2c_c01456{left:331.032000px;}
.x1a_c01456{left:333.513000px;}
.x16_c01456{left:334.614328px;}
.x72_c01456{left:336.232500px;}
.x54_c01456{left:338.930363px;}
.x41_c01456{left:341.550000px;}
.x7d_c01456{left:345.956556px;}
.xa4_c01456{left:352.391685px;}
.x9b_c01456{left:353.710500px;}
.x23_c01456{left:354.856723px;}
.xa1_c01456{left:362.931000px;}
.x1b_c01456{left:366.513000px;}
.xd_c01456{left:367.855500px;}
.x58_c01456{left:371.313000px;}
.x4b_c01456{left:372.963000px;}
.x36_c01456{left:374.007000px;}
.x94_c01456{left:375.675684px;}
.x77_c01456{left:379.150500px;}
.x42_c01456{left:386.100000px;}
.x88_c01456{left:388.878020px;}
.x55_c01456{left:393.251363px;}
.x45_c01456{left:395.608500px;}
.x30_c01456{left:396.713571px;}
.xaa_c01456{left:399.967500px;}
.x73_c01456{left:402.124500px;}
.x82_c01456{left:403.140000px;}
.x9_c01456{left:408.240000px;}
.x1c_c01456{left:410.758500px;}
.x59_c01456{left:414.261000px;}
.xa5_c01456{left:417.460185px;}
.x9c_c01456{left:419.047500px;}
.x78_c01456{left:423.172500px;}
.xa_c01456{left:427.680000px;}
.x17_c01456{left:432.371144px;}
.x6c_c01456{left:434.555003px;}
.x31_c01456{left:442.336290px;}
.x89_c01456{left:443.494881px;}
.x74_c01456{left:444.792000px;}
.x4c_c01456{left:450.735000px;}
.x24_c01456{left:453.136723px;}
.xab_c01456{left:461.250000px;}
.x37_c01456{left:462.307500px;}
.x8a_c01456{left:464.767095px;}
.x6d_c01456{left:467.447564px;}
.xb_c01456{left:473.850000px;}
.x1d_c01456{left:476.098500px;}
.x4d_c01456{left:482.055000px;}
.x83_c01456{left:486.343500px;}
.x18_c01456{left:488.273556px;}
.x65_c01456{left:491.262000px;}
.xe_c01456{left:499.857000px;}
.x4f_c01456{left:503.572275px;}
.x2d_c01456{left:507.160500px;}
.x8d_c01456{left:508.233000px;}
.x61_c01456{left:512.287500px;}
.x3a_c01456{left:514.592511px;}
.xa2_c01456{left:517.371000px;}
.x25_c01456{left:519.606223px;}
.x75_c01456{left:521.737500px;}
.xac_c01456{left:528.466500px;}
.x1e_c01456{left:530.955000px;}
.x5a_c01456{left:536.026500px;}
.x46_c01456{left:537.610500px;}
.x2e_c01456{left:539.298000px;}
.x8e_c01456{left:541.159500px;}
.x84_c01456{left:543.913500px;}
.x56_c01456{left:547.110863px;}
.x32_c01456{left:550.340766px;}
.x8b_c01456{left:552.535079px;}
.x62_c01456{left:556.563000px;}
.xad_c01456{left:559.800000px;}
.xa3_c01456{left:572.191500px;}
.x7e_c01456{left:575.217204px;}
.x79_c01456{left:576.552000px;}
.x8f_c01456{left:583.831500px;}
.xf_c01456{left:586.789500px;}
.x38_c01456{left:592.990500px;}
.x9d_c01456{left:595.182000px;}
.xa6_c01456{left:604.646685px;}
.x1f_c01456{left:607.098000px;}
.x66_c01456{left:610.291500px;}
.x50_c01456{left:613.271348px;}
.x26_c01456{left:617.625223px;}
.x19_c01456{left:619.495019px;}
.x3b_c01456{left:620.968179px;}
.x5b_c01456{left:624.100500px;}
.x33_c01456{left:626.486124px;}
.x20_c01456{left:628.369500px;}
.x51_c01456{left:634.538880px;}
.x9e_c01456{left:637.785000px;}
.x8c_c01456{left:641.338088px;}
.x10_c01456{left:642.699000px;}
.xa7_c01456{left:647.270685px;}
.x95_c01456{left:650.280468px;}
.x7f_c01456{left:651.905928px;}
.x6e_c01456{left:654.305751px;}
.x47_c01456{left:658.815000px;}
.x27_c01456{left:660.507224px;}
.x21_c01456{left:661.863000px;}
.x5c_c01456{left:667.569000px;}
.x90_c01456{left:673.803000px;}
.x67_c01456{left:676.441500px;}
.x52_c01456{left:678.828878px;}
.x96_c01456{left:681.890976px;}
.x9f_c01456{left:683.163000px;}
.x80_c01456{left:685.111956px;}
.x6f_c01456{left:686.976312px;}
.x34_c01456{left:691.563318px;}
.x22_c01456{left:693.988500px;}
.x7a_c01456{left:696.426000px;}
.x28_c01456{left:706.144724px;}
.x3c_c01456{left:709.000524px;}
.x5d_c01456{left:711.051000px;}
.xae_c01456{left:714.825000px;}
.x11_c01456{left:717.762000px;}
.x68_c01456{left:742.915500px;}
.x5e_c01456{left:744.762000px;}
.x85_c01456{left:750.699000px;}
.x48_c01456{left:756.582000px;}
.xa0_c01456{left:758.781000px;}
.xa8_c01456{left:769.064685px;}
.x97_c01456{left:770.749308px;}
.x91_c01456{left:772.387500px;}
.x69_c01456{left:774.469500px;}
.x70_c01456{left:776.097316px;}
.x53_c01456{left:778.221900px;}
.x29_c01456{left:781.752223px;}
.x12_c01456{left:784.191000px;}
.x7b_c01456{left:785.340000px;}
.x3d_c01456{left:788.362248px;}
.xaf_c01456{left:789.631500px;}
.x86_c01456{left:794.469000px;}
.x39_c01456{left:802.539000px;}
.x3e_c01456{left:804.831936px;}
.x49_c01456{left:812.199000px;}
.xa9_c01456{left:813.964185px;}
.x92_c01456{left:815.542500px;}
.x13_c01456{left:816.591000px;}
.xb0_c01456{left:820.141500px;}
.x3f_c01456{left:824.001813px;}
.x2a_c01456{left:825.294224px;}
.x87_c01456{left:826.873500px;}
.x5f_c01456{left:832.272000px;}
.x98_c01456{left:837.547944px;}
@media print{
.v0_c01456{vertical-align:0.000000pt;}
.ls0_c01456{letter-spacing:0.000000pt;}
.ws0_c01456{word-spacing:0.000000pt;}
.fs0_c01456{font-size:16.000000pt;}
.fs7_c01456{font-size:16.002592pt;}
.fs1_c01456{font-size:21.333333pt;}
.fs4_c01456{font-size:42.672832pt;}
.fse_c01456{font-size:58.672416pt;}
.fs9_c01456{font-size:58.673266pt;}
.fs10_c01456{font-size:58.674176pt;}
.fs3_c01456{font-size:58.675143pt;}
.fsb_c01456{font-size:58.676170pt;}
.fs8_c01456{font-size:64.000000pt;}
.fs5_c01456{font-size:64.006272pt;}
.fsc_c01456{font-size:64.007200pt;}
.fsf_c01456{font-size:64.008191pt;}
.fsd_c01456{font-size:64.009247pt;}
.fs6_c01456{font-size:64.010367pt;}
.fs15_c01456{font-size:64.012799pt;}
.fs2_c01456{font-size:69.333333pt;}
.fsa_c01456{font-size:69.341133pt;}
.fs13_c01456{font-size:69.342207pt;}
.fs11_c01456{font-size:69.343351pt;}
.fs12_c01456{font-size:85.344255pt;}
.fs14_c01456{font-size:90.678271pt;}
.y0_c01456{bottom:0.000000pt;}
.y2_c01456{bottom:30.960000pt;}
.yda_c01456{bottom:115.005376pt;}
.yd9_c01456{bottom:115.439296pt;}
.yd8_c01456{bottom:116.503211pt;}
.yd7_c01456{bottom:118.224235pt;}
.yd6_c01456{bottom:118.708011pt;}
.yd5_c01456{bottom:119.153643pt;}
.yd4_c01456{bottom:120.109611pt;}
.yd3_c01456{bottom:120.981184pt;}
.yd2_c01456{bottom:122.882667pt;}
.yd1_c01456{bottom:145.454099pt;}
.yd0_c01456{bottom:146.172491pt;}
.ycf_c01456{bottom:147.382283pt;}
.yce_c01456{bottom:148.121195pt;}
.ycd_c01456{bottom:148.803179pt;}
.ycc_c01456{bottom:150.367235pt;}
.ycb_c01456{bottom:151.798163pt;}
.yca_c01456{bottom:152.839259pt;}
.yc9_c01456{bottom:154.559051pt;}
.y5_c01456{bottom:156.836000pt;}
.yc8_c01456{bottom:179.371768pt;}
.yc7_c01456{bottom:180.089152pt;}
.yc6_c01456{bottom:181.126096pt;}
.yc5_c01456{bottom:182.003224pt;}
.yc4_c01456{bottom:182.858608pt;}
.yc3_c01456{bottom:184.474264pt;}
.yc2_c01456{bottom:186.004000pt;}
.yc1_c01456{bottom:209.440720pt;}
.yc0_c01456{bottom:210.243787pt;}
.ybf_c01456{bottom:211.588107pt;}
.ybe_c01456{bottom:212.394827pt;}
.ybd_c01456{bottom:213.152213pt;}
.ybc_c01456{bottom:214.702987pt;}
.ybb_c01456{bottom:216.283493pt;}
.yba_c01456{bottom:217.445040pt;}
.yb9_c01456{bottom:219.365333pt;}
.yb8_c01456{bottom:245.767893pt;}
.yb7_c01456{bottom:274.178859pt;}
.yb6_c01456{bottom:274.612960pt;}
.yb5_c01456{bottom:275.010187pt;}
.yb4_c01456{bottom:276.116576pt;}
.yb3_c01456{bottom:276.510133pt;}
.yb2_c01456{bottom:277.450453pt;}
.yb1_c01456{bottom:278.677621pt;}
.yb0_c01456{bottom:279.927499pt;}
.yaf_c01456{bottom:281.278165pt;}
.yae_c01456{bottom:304.724896pt;}
.yad_c01456{bottom:305.338656pt;}
.yac_c01456{bottom:306.740747pt;}
.yab_c01456{bottom:308.020341pt;}
.yaa_c01456{bottom:308.627232pt;}
.ya9_c01456{bottom:309.095520pt;}
.ya8_c01456{bottom:310.174603pt;}
.ya7_c01456{bottom:311.580235pt;}
.ya6_c01456{bottom:312.964000pt;}
.ya5_c01456{bottom:338.719827pt;}
.ya4_c01456{bottom:339.904360pt;}
.ya3_c01456{bottom:341.074587pt;}
.ya2_c01456{bottom:341.358689pt;}
.ya1_c01456{bottom:342.086649pt;}
.ya0_c01456{bottom:342.532320pt;}
.y9f_c01456{bottom:343.678168pt;}
.y9e_c01456{bottom:366.691739pt;}
.y9d_c01456{bottom:367.181407pt;}
.y9c_c01456{bottom:367.842820pt;}
.y9b_c01456{bottom:368.842556pt;}
.y9a_c01456{bottom:370.331824pt;}
.y99_c01456{bottom:370.967579pt;}
.y98_c01456{bottom:371.837525pt;}
.y97_c01456{bottom:373.094823pt;}
.y96_c01456{bottom:374.305993pt;}
.y95_c01456{bottom:375.604000pt;}
.y94_c01456{bottom:401.248107pt;}
.y93_c01456{bottom:401.691029pt;}
.y92_c01456{bottom:402.713696pt;}
.y91_c01456{bottom:403.433845pt;}
.y90_c01456{bottom:403.884405pt;}
.y8f_c01456{bottom:404.730933pt;}
.y8e_c01456{bottom:405.771573pt;}
.y8d_c01456{bottom:406.798144pt;}
.y8c_c01456{bottom:430.682315pt;}
.y8b_c01456{bottom:431.138656pt;}
.y8a_c01456{bottom:432.403211pt;}
.y89_c01456{bottom:434.108085pt;}
.y88_c01456{bottom:435.367755pt;}
.y87_c01456{bottom:436.289483pt;}
.y86_c01456{bottom:436.915573pt;}
.y85_c01456{bottom:438.320949pt;}
.y84_c01456{bottom:438.964000pt;}
.y83_c01456{bottom:467.033397pt;}
.y82_c01456{bottom:467.990941pt;}
.y81_c01456{bottom:468.521915pt;}
.y80_c01456{bottom:469.341904pt;}
.y7f_c01456{bottom:469.745160pt;}
.y7e_c01456{bottom:470.161333pt;}
.y7d_c01456{bottom:494.587081pt;}
.y7c_c01456{bottom:495.855109pt;}
.y7b_c01456{bottom:496.319456pt;}
.y7a_c01456{bottom:498.292757pt;}
.y79_c01456{bottom:498.976376pt;}
.y78_c01456{bottom:499.444077pt;}
.y77_c01456{bottom:501.295567pt;}
.y76_c01456{bottom:501.598404pt;}
.y75_c01456{bottom:525.976741pt;}
.y74_c01456{bottom:526.453557pt;}
.y73_c01456{bottom:527.458053pt;}
.y72_c01456{bottom:528.457653pt;}
.y71_c01456{bottom:529.926657pt;}
.y70_c01456{bottom:530.256321pt;}
.y6f_c01456{bottom:531.738404pt;}
.y3_c01456{bottom:533.045333pt;}
.y6e_c01456{bottom:533.097271pt;}
.y6d_c01456{bottom:534.244000pt;}
.y6c_c01456{bottom:561.160667pt;}
.y6b_c01456{bottom:561.751007pt;}
.y6a_c01456{bottom:563.050627pt;}
.y69_c01456{bottom:563.633867pt;}
.y68_c01456{bottom:564.962667pt;}
.y67_c01456{bottom:587.493040pt;}
.y66_c01456{bottom:588.893200pt;}
.y65_c01456{bottom:589.432576pt;}
.y64_c01456{bottom:590.128288pt;}
.y63_c01456{bottom:590.823784pt;}
.y62_c01456{bottom:592.232968pt;}
.y61_c01456{bottom:594.181216pt;}
.y60_c01456{bottom:594.868384pt;}
.y5f_c01456{bottom:597.124000pt;}
.y4_c01456{bottom:599.882667pt;}
.y5e_c01456{bottom:623.718773pt;}
.y5d_c01456{bottom:624.154333pt;}
.y5c_c01456{bottom:624.592893pt;}
.y5b_c01456{bottom:625.770233pt;}
.y5a_c01456{bottom:626.494513pt;}
.y59_c01456{bottom:627.354593pt;}
.y58_c01456{bottom:651.490900pt;}
.y57_c01456{bottom:653.081533pt;}
.y56_c01456{bottom:653.790760pt;}
.y55_c01456{bottom:654.131673pt;}
.y54_c01456{bottom:655.886393pt;}
.y53_c01456{bottom:657.412100pt;}
.y52_c01456{bottom:658.871047pt;}
.y51_c01456{bottom:660.240827pt;}
.y50_c01456{bottom:688.193827pt;}
.y4f_c01456{bottom:688.611427pt;}
.y4e_c01456{bottom:689.648387pt;}
.y4d_c01456{bottom:690.962667pt;}
.y1_c01456{bottom:710.400000pt;}
.y4c_c01456{bottom:714.828000pt;}
.y4b_c01456{bottom:715.668000pt;}
.y4a_c01456{bottom:717.145333pt;}
.y49_c01456{bottom:718.977333pt;}
.y48_c01456{bottom:720.629333pt;}
.y47_c01456{bottom:721.122667pt;}
.y46_c01456{bottom:722.273333pt;}
.y45_c01456{bottom:723.604000pt;}
.y44_c01456{bottom:753.336000pt;}
.y43_c01456{bottom:775.204357pt;}
.y42_c01456{bottom:775.443053pt;}
.y41_c01456{bottom:775.647883pt;}
.y40_c01456{bottom:776.634912pt;}
.y3f_c01456{bottom:777.729995pt;}
.y3d_c01456{bottom:778.323328pt;}
.y3e_c01456{bottom:779.053216pt;}
.y3c_c01456{bottom:781.131640pt;}
.y3b_c01456{bottom:781.676104pt;}
.y3a_c01456{bottom:783.041320pt;}
.y39_c01456{bottom:783.767032pt;}
.y38_c01456{bottom:785.179840pt;}
.y37_c01456{bottom:785.884192pt;}
.y36_c01456{bottom:787.444000pt;}
.y35_c01456{bottom:812.359469pt;}
.y34_c01456{bottom:812.812117pt;}
.y33_c01456{bottom:813.284008pt;}
.y32_c01456{bottom:814.367621pt;}
.y31_c01456{bottom:815.903715pt;}
.y30_c01456{bottom:816.552813pt;}
.y2f_c01456{bottom:817.482195pt;}
.y2e_c01456{bottom:818.880181pt;}
.y2d_c01456{bottom:845.383093pt;}
.y2c_c01456{bottom:845.783027pt;}
.y2b_c01456{bottom:846.458219pt;}
.y2a_c01456{bottom:847.974848pt;}
.y29_c01456{bottom:848.642667pt;}
.y28_c01456{bottom:872.134425pt;}
.y27_c01456{bottom:872.792393pt;}
.y26_c01456{bottom:873.934907pt;}
.y25_c01456{bottom:874.624540pt;}
.y24_c01456{bottom:875.272535pt;}
.y23_c01456{bottom:876.753711pt;}
.y22_c01456{bottom:877.758139pt;}
.y21_c01456{bottom:879.243259pt;}
.y20_c01456{bottom:881.039093pt;}
.y1f_c01456{bottom:905.331619pt;}
.y1e_c01456{bottom:905.817071pt;}
.y1d_c01456{bottom:906.323195pt;}
.y1c_c01456{bottom:906.644631pt;}
.y1b_c01456{bottom:907.795236pt;}
.y1a_c01456{bottom:908.624179pt;}
.y19_c01456{bottom:909.611539pt;}
.y18_c01456{bottom:910.280137pt;}
.y17_c01456{bottom:910.778804pt;}
.y16_c01456{bottom:912.244000pt;}
.y15_c01456{bottom:939.052083pt;}
.y14_c01456{bottom:939.501357pt;}
.y13_c01456{bottom:940.801584pt;}
.y12_c01456{bottom:941.546303pt;}
.y11_c01456{bottom:942.850133pt;}
.y10_c01456{bottom:944.154213pt;}
.yf_c01456{bottom:974.257393pt;}
.ye_c01456{bottom:999.175975pt;}
.yd_c01456{bottom:999.665575pt;}
.yc_c01456{bottom:1000.669391pt;}
.yb_c01456{bottom:1001.803676pt;}
.ya_c01456{bottom:1002.648531pt;}
.y9_c01456{bottom:1003.962177pt;}
.y8_c01456{bottom:1005.956867pt;}
.y7_c01456{bottom:1007.284000pt;}
.y6_c01456{bottom:1069.545333pt;}
.h2_c01456{height:16.000000pt;}
.h9_c01456{height:16.002592pt;}
.h3_c01456{height:21.333333pt;}
.h6_c01456{height:42.672832pt;}
.h10_c01456{height:58.672416pt;}
.hb_c01456{height:58.673266pt;}
.h12_c01456{height:58.674176pt;}
.h5_c01456{height:58.675143pt;}
.hd_c01456{height:58.676170pt;}
.ha_c01456{height:64.000000pt;}
.h7_c01456{height:64.006272pt;}
.he_c01456{height:64.007200pt;}
.h11_c01456{height:64.008191pt;}
.hf_c01456{height:64.009247pt;}
.h8_c01456{height:64.010367pt;}
.h17_c01456{height:64.012799pt;}
.h4_c01456{height:69.333333pt;}
.hc_c01456{height:69.341133pt;}
.h15_c01456{height:69.342207pt;}
.h13_c01456{height:69.343351pt;}
.h14_c01456{height:85.344255pt;}
.h16_c01456{height:90.678271pt;}
.h0_c01456{height:1111.866667pt;}
.h1_c01456{height:1112.000000pt;}
.w1_c01456{width:795.333333pt;}
.w0_c01456{width:795.600000pt;}
.x0_c01456{left:0.000000pt;}
.x4_c01456{left:0.960000pt;}
.x2_c01456{left:1.920000pt;}
.x5_c01456{left:2.880000pt;}
.x1_c01456{left:4.800000pt;}
.x6_c01456{left:106.320000pt;}
.x8_c01456{left:150.720000pt;}
.x7_c01456{left:157.200000pt;}
.x3_c01456{left:192.480000pt;}
.x63_c01456{left:202.108000pt;}
.x57_c01456{left:204.744000pt;}
.x43_c01456{left:205.712000pt;}
.x2f_c01456{left:207.159688pt;}
.x76_c01456{left:208.996000pt;}
.x15_c01456{left:210.525345pt;}
.x9a_c01456{left:218.394667pt;}
.x99_c01456{left:235.921109pt;}
.x93_c01456{left:237.430848pt;}
.x7c_c01456{left:239.105184pt;}
.x71_c01456{left:240.342667pt;}
.x60_c01456{left:241.256000pt;}
.x4a_c01456{left:243.904000pt;}
.x40_c01456{left:245.040000pt;}
.x2b_c01456{left:246.549333pt;}
.xc_c01456{left:248.916000pt;}
.x14_c01456{left:249.841644pt;}
.x6a_c01456{left:251.622157pt;}
.x64_c01456{left:269.562667pt;}
.x6b_c01456{left:270.534475pt;}
.x4e_c01456{left:281.805927pt;}
.x44_c01456{left:283.966667pt;}
.x81_c01456{left:287.101333pt;}
.x35_c01456{left:293.320000pt;}
.x2c_c01456{left:294.250667pt;}
.x1a_c01456{left:296.456000pt;}
.x16_c01456{left:297.434959pt;}
.x72_c01456{left:298.873333pt;}
.x54_c01456{left:301.271433pt;}
.x41_c01456{left:303.600000pt;}
.x7d_c01456{left:307.516939pt;}
.xa4_c01456{left:313.237053pt;}
.x9b_c01456{left:314.409333pt;}
.x23_c01456{left:315.428199pt;}
.xa1_c01456{left:322.605333pt;}
.x1b_c01456{left:325.789333pt;}
.xd_c01456{left:326.982667pt;}
.x58_c01456{left:330.056000pt;}
.x4b_c01456{left:331.522667pt;}
.x36_c01456{left:332.450667pt;}
.x94_c01456{left:333.933941pt;}
.x77_c01456{left:337.022667pt;}
.x42_c01456{left:343.200000pt;}
.x88_c01456{left:345.669351pt;}
.x55_c01456{left:349.556767pt;}
.x45_c01456{left:351.652000pt;}
.x30_c01456{left:352.634285pt;}
.xaa_c01456{left:355.526667pt;}
.x73_c01456{left:357.444000pt;}
.x82_c01456{left:358.346667pt;}
.x9_c01456{left:362.880000pt;}
.x1c_c01456{left:365.118667pt;}
.x59_c01456{left:368.232000pt;}
.xa5_c01456{left:371.075720pt;}
.x9c_c01456{left:372.486667pt;}
.x78_c01456{left:376.153333pt;}
.xa_c01456{left:380.160000pt;}
.x17_c01456{left:384.329905pt;}
.x6c_c01456{left:386.271113pt;}
.x31_c01456{left:393.187813pt;}
.x89_c01456{left:394.217672pt;}
.x74_c01456{left:395.370667pt;}
.x4c_c01456{left:400.653333pt;}
.x24_c01456{left:402.788199pt;}
.xab_c01456{left:410.000000pt;}
.x37_c01456{left:410.940000pt;}
.x8a_c01456{left:413.126307pt;}
.x6d_c01456{left:415.508945pt;}
.xb_c01456{left:421.200000pt;}
.x1d_c01456{left:423.198667pt;}
.x4d_c01456{left:428.493333pt;}
.x83_c01456{left:432.305333pt;}
.x18_c01456{left:434.020939pt;}
.x65_c01456{left:436.677333pt;}
.xe_c01456{left:444.317333pt;}
.x4f_c01456{left:447.619800pt;}
.x2d_c01456{left:450.809333pt;}
.x8d_c01456{left:451.762667pt;}
.x61_c01456{left:455.366667pt;}
.x3a_c01456{left:457.415565pt;}
.xa2_c01456{left:459.885333pt;}
.x25_c01456{left:461.872199pt;}
.x75_c01456{left:463.766667pt;}
.xac_c01456{left:469.748000pt;}
.x1e_c01456{left:471.960000pt;}
.x5a_c01456{left:476.468000pt;}
.x46_c01456{left:477.876000pt;}
.x2e_c01456{left:479.376000pt;}
.x8e_c01456{left:481.030667pt;}
.x84_c01456{left:483.478667pt;}
.x56_c01456{left:486.320767pt;}
.x32_c01456{left:489.191792pt;}
.x8b_c01456{left:491.142292pt;}
.x62_c01456{left:494.722667pt;}
.xad_c01456{left:497.600000pt;}
.xa3_c01456{left:508.614667pt;}
.x7e_c01456{left:511.304181pt;}
.x79_c01456{left:512.490667pt;}
.x8f_c01456{left:518.961333pt;}
.xf_c01456{left:521.590667pt;}
.x38_c01456{left:527.102667pt;}
.x9d_c01456{left:529.050667pt;}
.xa6_c01456{left:537.463720pt;}
.x1f_c01456{left:539.642667pt;}
.x66_c01456{left:542.481333pt;}
.x50_c01456{left:545.130087pt;}
.x26_c01456{left:549.000199pt;}
.x19_c01456{left:550.662239pt;}
.x3b_c01456{left:551.971715pt;}
.x5b_c01456{left:554.756000pt;}
.x33_c01456{left:556.876555pt;}
.x20_c01456{left:558.550667pt;}
.x51_c01456{left:564.034560pt;}
.x9e_c01456{left:566.920000pt;}
.x8c_c01456{left:570.078300pt;}
.x10_c01456{left:571.288000pt;}
.xa7_c01456{left:575.351720pt;}
.x95_c01456{left:578.027083pt;}
.x7f_c01456{left:579.471936pt;}
.x6e_c01456{left:581.605112pt;}
.x47_c01456{left:585.613333pt;}
.x27_c01456{left:587.117532pt;}
.x21_c01456{left:588.322667pt;}
.x5c_c01456{left:593.394667pt;}
.x90_c01456{left:598.936000pt;}
.x67_c01456{left:601.281333pt;}
.x52_c01456{left:603.403447pt;}
.x96_c01456{left:606.125312pt;}
.x9f_c01456{left:607.256000pt;}
.x80_c01456{left:608.988405pt;}
.x6f_c01456{left:610.645611pt;}
.x34_c01456{left:614.722949pt;}
.x22_c01456{left:616.878667pt;}
.x7a_c01456{left:619.045333pt;}
.x28_c01456{left:627.684199pt;}
.x3c_c01456{left:630.222688pt;}
.x5d_c01456{left:632.045333pt;}
.xae_c01456{left:635.400000pt;}
.x11_c01456{left:638.010667pt;}
.x68_c01456{left:660.369333pt;}
.x5e_c01456{left:662.010667pt;}
.x85_c01456{left:667.288000pt;}
.x48_c01456{left:672.517333pt;}
.xa0_c01456{left:674.472000pt;}
.xa8_c01456{left:683.613053pt;}
.x97_c01456{left:685.110496pt;}
.x91_c01456{left:686.566667pt;}
.x69_c01456{left:688.417333pt;}
.x70_c01456{left:689.864281pt;}
.x53_c01456{left:691.752800pt;}
.x29_c01456{left:694.890865pt;}
.x12_c01456{left:697.058667pt;}
.x7b_c01456{left:698.080000pt;}
.x3d_c01456{left:700.766443pt;}
.xaf_c01456{left:701.894667pt;}
.x86_c01456{left:706.194667pt;}
.x39_c01456{left:713.368000pt;}
.x3e_c01456{left:715.406165pt;}
.x49_c01456{left:721.954667pt;}
.xa9_c01456{left:723.523720pt;}
.x92_c01456{left:724.926667pt;}
.x13_c01456{left:725.858667pt;}
.xb0_c01456{left:729.014667pt;}
.x3f_c01456{left:732.446056pt;}
.x2a_c01456{left:733.594865pt;}
.x87_c01456{left:734.998667pt;}
.x5f_c01456{left:739.797333pt;}
.x98_c01456{left:744.487061pt;}
}





/* 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_c01457 {
    display:none;
  }
  .loading-indicator_c01457.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01457 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_c01457 { 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_c01457" -> "#page-container .classname_c01457")
 */
.pf_c01457 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01457 { /* 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_c01457.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01457 { /* 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_c01457 { /* 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_c01457 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01457 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01457 {overflow:visible;}
  }
}
.c_c01457 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01457 { /* 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_c01457:after { /* webkit #35443 */
  content: '';
}
.t_c01457:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01457 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 */
}
.__c01457 { /* 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_c01457 { /* info for Javascript */
  display:none;
}
.l_c01457 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01457 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01457 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01457: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_c01457 {
    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_c01457.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01457.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_c01457 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01457{font-family:sans-serif;visibility:hidden;}
.sc__c01457{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01457{-webkit-text-stroke:0px transparent;}
}
.y0_c01457{bottom:0.000000px;}
.h0_c01457{height:1250.850000px;}
.h1_c01457{height:1251.000000px;}
.w1_c01457{width:894.750000px;}
.w0_c01457{width:895.050000px;}
.x0_c01457{left:0.000000px;}
@media print{
.y0_c01457{bottom:0.000000pt;}
.h0_c01457{height:1111.866667pt;}
.h1_c01457{height:1112.000000pt;}
.w1_c01457{width:795.333333pt;}
.w0_c01457{width:795.600000pt;}
.x0_c01457{left:0.000000pt;}
}





/* 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_c01458 {
    display:none;
  }
  .loading-indicator_c01458.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01458 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_c01458 { 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_c01458" -> "#page-container .classname_c01458")
 */
.pf_c01458 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01458 { /* 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_c01458.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01458 { /* 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_c01458 { /* 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_c01458 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01458 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01458 {overflow:visible;}
  }
}
.c_c01458 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01458 { /* 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_c01458:after { /* webkit #35443 */
  content: '';
}
.t_c01458:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01458 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 */
}
.__c01458 { /* 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_c01458 { /* info for Javascript */
  display:none;
}
.l_c01458 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01458 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01458 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01458: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_c01458 {
    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_c01458.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01458.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_c01458 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01458{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01458;src:url('chunks/assets/font_c605e72f209fc835e906f064.woff2')format("woff");}.ff1_c01458{font-family:ff1_c01458;line-height:1.000000;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;}
.m96_c01458{transform:matrix(0.021267,0.000595,-0.006997,0.249902,0,0);-ms-transform:matrix(0.021267,0.000595,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.021267,0.000595,-0.006997,0.249902,0,0);}
.m75_c01458{transform:matrix(0.076945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076945,0.000000,0.000000,0.250000,0,0);}
.m56_c01458{transform:matrix(0.084859,0.002803,-0.008254,0.249864,0,0);-ms-transform:matrix(0.084859,0.002803,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.084859,0.002803,-0.008254,0.249864,0,0);}
.m47_c01458{transform:matrix(0.091600,0.003026,-0.008254,0.249864,0,0);-ms-transform:matrix(0.091600,0.003026,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.091600,0.003026,-0.008254,0.249864,0,0);}
.m9c_c01458{transform:matrix(0.100445,0.004022,-0.010002,0.249800,0,0);-ms-transform:matrix(0.100445,0.004022,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.100445,0.004022,-0.010002,0.249800,0,0);}
.m3c_c01458{transform:matrix(0.111279,0.003676,-0.008254,0.249864,0,0);-ms-transform:matrix(0.111279,0.003676,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.111279,0.003676,-0.008254,0.249864,0,0);}
.m9b_c01458{transform:matrix(0.122971,0.004924,-0.010002,0.249800,0,0);-ms-transform:matrix(0.122971,0.004924,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.122971,0.004924,-0.010002,0.249800,0,0);}
.m85_c01458{transform:matrix(0.129375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129375,0.000000,0.000000,0.250000,0,0);}
.m6c_c01458{transform:matrix(0.138200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138200,0.000000,0.000000,0.250000,0,0);}
.m7d_c01458{transform:matrix(0.139710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139710,0.000000,0.000000,0.250000,0,0);}
.mf7_c01458{transform:matrix(0.140393,0.004352,-0.007746,0.249880,0,0);-ms-transform:matrix(0.140393,0.004352,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.140393,0.004352,-0.007746,0.249880,0,0);}
.mdf_c01458{transform:matrix(0.141415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141415,0.000000,0.000000,0.250000,0,0);}
.m3b_c01458{transform:matrix(0.141973,0.004690,-0.008254,0.249864,0,0);-ms-transform:matrix(0.141973,0.004690,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.141973,0.004690,-0.008254,0.249864,0,0);}
.me8_c01458{transform:matrix(0.144035,0.004321,-0.007497,0.249888,0,0);-ms-transform:matrix(0.144035,0.004321,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.144035,0.004321,-0.007497,0.249888,0,0);}
.mde_c01458{transform:matrix(0.144930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144930,0.000000,0.000000,0.250000,0,0);}
.m34_c01458{transform:matrix(0.148377,0.003561,-0.005998,0.249928,0,0);-ms-transform:matrix(0.148377,0.003561,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.148377,0.003561,-0.005998,0.249928,0,0);}
.m1c_c01458{transform:matrix(0.148518,0.004456,-0.007497,0.249888,0,0);-ms-transform:matrix(0.148518,0.004456,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.148518,0.004456,-0.007497,0.249888,0,0);}
.m10_c01458{transform:matrix(0.149410,0.003885,-0.006498,0.249916,0,0);-ms-transform:matrix(0.149410,0.003885,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.149410,0.003885,-0.006498,0.249916,0,0);}
.mf6_c01458{transform:matrix(0.149418,0.004632,-0.007746,0.249880,0,0);-ms-transform:matrix(0.149418,0.004632,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.149418,0.004632,-0.007746,0.249880,0,0);}
.me7_c01458{transform:matrix(0.151767,0.004553,-0.007497,0.249888,0,0);-ms-transform:matrix(0.151767,0.004553,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.151767,0.004553,-0.007497,0.249888,0,0);}
.m76_c01458{transform:matrix(0.152520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152520,0.000000,0.000000,0.250000,0,0);}
.m24_c01458{transform:matrix(0.157654,0.004730,-0.007497,0.249888,0,0);-ms-transform:matrix(0.157654,0.004730,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.157654,0.004730,-0.007497,0.249888,0,0);}
.m26_c01458{transform:matrix(0.161682,0.004850,-0.007497,0.249888,0,0);-ms-transform:matrix(0.161682,0.004850,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.161682,0.004850,-0.007497,0.249888,0,0);}
.mb7_c01458{transform:matrix(0.162022,0.004861,-0.007497,0.249888,0,0);-ms-transform:matrix(0.162022,0.004861,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.162022,0.004861,-0.007497,0.249888,0,0);}
.ma4_c01458{transform:matrix(0.165030,0.005286,-0.008004,0.249872,0,0);-ms-transform:matrix(0.165030,0.005286,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.165030,0.005286,-0.008004,0.249872,0,0);}
.m8b_c01458{transform:matrix(0.165050,0.004621,-0.006997,0.249902,0,0);-ms-transform:matrix(0.165050,0.004621,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.165050,0.004621,-0.006997,0.249902,0,0);}
.m50_c01458{transform:matrix(0.179582,0.005932,-0.008254,0.249864,0,0);-ms-transform:matrix(0.179582,0.005932,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.179582,0.005932,-0.008254,0.249864,0,0);}
.m7e_c01458{transform:matrix(0.182585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182585,0.000000,0.000000,0.250000,0,0);}
.m38_c01458{transform:matrix(0.184872,0.004437,-0.005998,0.249928,0,0);-ms-transform:matrix(0.184872,0.004437,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.184872,0.004437,-0.005998,0.249928,0,0);}
.m97_c01458{transform:matrix(0.187267,0.005243,-0.006997,0.249902,0,0);-ms-transform:matrix(0.187267,0.005243,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.187267,0.005243,-0.006997,0.249902,0,0);}
.md0_c01458{transform:matrix(0.187686,0.008079,-0.010751,0.249769,0,0);-ms-transform:matrix(0.187686,0.008079,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.187686,0.008079,-0.010751,0.249769,0,0);}
.m33_c01458{transform:matrix(0.191940,0.004607,-0.005998,0.249928,0,0);-ms-transform:matrix(0.191940,0.004607,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.191940,0.004607,-0.005998,0.249928,0,0);}
.m35_c01458{transform:matrix(0.191950,0.004607,-0.005998,0.249928,0,0);-ms-transform:matrix(0.191950,0.004607,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.191950,0.004607,-0.005998,0.249928,0,0);}
.m30_c01458{transform:matrix(0.194852,0.005846,-0.007497,0.249888,0,0);-ms-transform:matrix(0.194852,0.005846,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.194852,0.005846,-0.007497,0.249888,0,0);}
.m1d_c01458{transform:matrix(0.195377,0.005861,-0.007497,0.249888,0,0);-ms-transform:matrix(0.195377,0.005861,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.195377,0.005861,-0.007497,0.249888,0,0);}
.m4_c01458{transform:matrix(0.195465,0.006261,-0.008004,0.249872,0,0);-ms-transform:matrix(0.195465,0.006261,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.195465,0.006261,-0.008004,0.249872,0,0);}
.m8a_c01458{transform:matrix(0.196458,0.005501,-0.006997,0.249902,0,0);-ms-transform:matrix(0.196458,0.005501,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.196458,0.005501,-0.006997,0.249902,0,0);}
.me2_c01458{transform:matrix(0.197925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197925,0.000000,0.000000,0.250000,0,0);}
.ma_c01458{transform:matrix(0.198443,0.006357,-0.008004,0.249872,0,0);-ms-transform:matrix(0.198443,0.006357,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.198443,0.006357,-0.008004,0.249872,0,0);}
.m36_c01458{transform:matrix(0.199008,0.004776,-0.005998,0.249928,0,0);-ms-transform:matrix(0.199008,0.004776,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.199008,0.004776,-0.005998,0.249928,0,0);}
.m6a_c01458{transform:matrix(0.199240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199240,0.000000,0.000000,0.250000,0,0);}
.ma0_c01458{transform:matrix(0.199850,0.008002,-0.010002,0.249800,0,0);-ms-transform:matrix(0.199850,0.008002,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.199850,0.008002,-0.010002,0.249800,0,0);}
.m5f_c01458{transform:matrix(0.200770,0.006632,-0.008254,0.249864,0,0);-ms-transform:matrix(0.200770,0.006632,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.200770,0.006632,-0.008254,0.249864,0,0);}
.me4_c01458{transform:matrix(0.201245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201245,0.000000,0.000000,0.250000,0,0);}
.mce_c01458{transform:matrix(0.201758,0.008684,-0.010751,0.249769,0,0);-ms-transform:matrix(0.201758,0.008684,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.201758,0.008684,-0.010751,0.249769,0,0);}
.m39_c01458{transform:matrix(0.201917,0.004846,-0.005998,0.249928,0,0);-ms-transform:matrix(0.201917,0.004846,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.201917,0.004846,-0.005998,0.249928,0,0);}
.md_c01458{transform:matrix(0.201971,0.006470,-0.008004,0.249872,0,0);-ms-transform:matrix(0.201971,0.006470,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.201971,0.006470,-0.008004,0.249872,0,0);}
.ma2_c01458{transform:matrix(0.203152,0.008134,-0.010002,0.249800,0,0);-ms-transform:matrix(0.203152,0.008134,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.203152,0.008134,-0.010002,0.249800,0,0);}
.m9_c01458{transform:matrix(0.204355,0.006546,-0.008004,0.249872,0,0);-ms-transform:matrix(0.204355,0.006546,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.204355,0.006546,-0.008004,0.249872,0,0);}
.mf4_c01458{transform:matrix(0.204423,0.006133,-0.007497,0.249888,0,0);-ms-transform:matrix(0.204423,0.006133,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.204423,0.006133,-0.007497,0.249888,0,0);}
.mfd_c01458{transform:matrix(0.206001,0.006386,-0.007746,0.249880,0,0);-ms-transform:matrix(0.206001,0.006386,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.206001,0.006386,-0.007746,0.249880,0,0);}
.ma3_c01458{transform:matrix(0.206310,0.008261,-0.010002,0.249800,0,0);-ms-transform:matrix(0.206310,0.008261,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.206310,0.008261,-0.010002,0.249800,0,0);}
.m37_c01458{transform:matrix(0.206501,0.004956,-0.005998,0.249928,0,0);-ms-transform:matrix(0.206501,0.004956,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.206501,0.004956,-0.005998,0.249928,0,0);}
.m54_c01458{transform:matrix(0.206627,0.006826,-0.008254,0.249864,0,0);-ms-transform:matrix(0.206627,0.006826,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.206627,0.006826,-0.008254,0.249864,0,0);}
.m2e_c01458{transform:matrix(0.207147,0.006214,-0.007497,0.249888,0,0);-ms-transform:matrix(0.207147,0.006214,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.207147,0.006214,-0.007497,0.249888,0,0);}
.m5b_c01458{transform:matrix(0.209051,0.006906,-0.008254,0.249864,0,0);-ms-transform:matrix(0.209051,0.006906,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.209051,0.006906,-0.008254,0.249864,0,0);}
.m21_c01458{transform:matrix(0.209406,0.006282,-0.007497,0.249888,0,0);-ms-transform:matrix(0.209406,0.006282,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.209406,0.006282,-0.007497,0.249888,0,0);}
.m4e_c01458{transform:matrix(0.209821,0.006931,-0.008254,0.249864,0,0);-ms-transform:matrix(0.209821,0.006931,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.209821,0.006931,-0.008254,0.249864,0,0);}
.m81_c01458{transform:matrix(0.210585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210585,0.000000,0.000000,0.250000,0,0);}
.m3a_c01458{transform:matrix(0.211499,0.005076,-0.005998,0.249928,0,0);-ms-transform:matrix(0.211499,0.005076,-0.005998,0.249928,0,0);-webkit-transform:matrix(0.211499,0.005076,-0.005998,0.249928,0,0);}
.m6_c01458{transform:matrix(0.211591,0.006778,-0.008004,0.249872,0,0);-ms-transform:matrix(0.211591,0.006778,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.211591,0.006778,-0.008004,0.249872,0,0);}
.me1_c01458{transform:matrix(0.212090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212090,0.000000,0.000000,0.250000,0,0);}
.m49_c01458{transform:matrix(0.213019,0.007037,-0.008254,0.249864,0,0);-ms-transform:matrix(0.213019,0.007037,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.213019,0.007037,-0.008254,0.249864,0,0);}
.m8c_c01458{transform:matrix(0.213151,0.005968,-0.006997,0.249902,0,0);-ms-transform:matrix(0.213151,0.005968,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.213151,0.005968,-0.006997,0.249902,0,0);}
.mfc_c01458{transform:matrix(0.213617,0.006622,-0.007746,0.249880,0,0);-ms-transform:matrix(0.213617,0.006622,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.213617,0.006622,-0.007746,0.249880,0,0);}
.m84_c01458{transform:matrix(0.214310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214310,0.000000,0.000000,0.250000,0,0);}
.m98_c01458{transform:matrix(0.214331,0.006001,-0.006997,0.249902,0,0);-ms-transform:matrix(0.214331,0.006001,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.214331,0.006001,-0.006997,0.249902,0,0);}
.m51_c01458{transform:matrix(0.214458,0.007084,-0.008254,0.249864,0,0);-ms-transform:matrix(0.214458,0.007084,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.214458,0.007084,-0.008254,0.249864,0,0);}
.mea_c01458{transform:matrix(0.214963,0.006449,-0.007497,0.249888,0,0);-ms-transform:matrix(0.214963,0.006449,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.214963,0.006449,-0.007497,0.249888,0,0);}
.m45_c01458{transform:matrix(0.215597,0.007122,-0.008254,0.249864,0,0);-ms-transform:matrix(0.215597,0.007122,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.215597,0.007122,-0.008254,0.249864,0,0);}
.m41_c01458{transform:matrix(0.215627,0.007123,-0.008254,0.249864,0,0);-ms-transform:matrix(0.215627,0.007123,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.215627,0.007123,-0.008254,0.249864,0,0);}
.m27_c01458{transform:matrix(0.215828,0.006475,-0.007497,0.249888,0,0);-ms-transform:matrix(0.215828,0.006475,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.215828,0.006475,-0.007497,0.249888,0,0);}
.m3f_c01458{transform:matrix(0.216122,0.007139,-0.008254,0.249864,0,0);-ms-transform:matrix(0.216122,0.007139,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.216122,0.007139,-0.008254,0.249864,0,0);}
.m6e_c01458{transform:matrix(0.216725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216725,0.000000,0.000000,0.250000,0,0);}
.m72_c01458{transform:matrix(0.217705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217705,0.000000,0.000000,0.250000,0,0);}
.ma5_c01458{transform:matrix(0.218223,0.006990,-0.008004,0.249872,0,0);-ms-transform:matrix(0.218223,0.006990,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.218223,0.006990,-0.008004,0.249872,0,0);}
.m23_c01458{transform:matrix(0.218402,0.006552,-0.007497,0.249888,0,0);-ms-transform:matrix(0.218402,0.006552,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.218402,0.006552,-0.007497,0.249888,0,0);}
.m2b_c01458{transform:matrix(0.218452,0.006554,-0.007497,0.249888,0,0);-ms-transform:matrix(0.218452,0.006554,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.218452,0.006554,-0.007497,0.249888,0,0);}
.m28_c01458{transform:matrix(0.218622,0.006559,-0.007497,0.249888,0,0);-ms-transform:matrix(0.218622,0.006559,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.218622,0.006559,-0.007497,0.249888,0,0);}
.m32_c01458{transform:matrix(0.220126,0.006604,-0.007497,0.249888,0,0);-ms-transform:matrix(0.220126,0.006604,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.220126,0.006604,-0.007497,0.249888,0,0);}
.ma1_c01458{transform:matrix(0.220323,0.008822,-0.010002,0.249800,0,0);-ms-transform:matrix(0.220323,0.008822,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.220323,0.008822,-0.010002,0.249800,0,0);}
.md1_c01458{transform:matrix(0.220811,0.009504,-0.010751,0.249769,0,0);-ms-transform:matrix(0.220811,0.009504,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.220811,0.009504,-0.010751,0.249769,0,0);}
.mb8_c01458{transform:matrix(0.221230,0.006637,-0.007497,0.249888,0,0);-ms-transform:matrix(0.221230,0.006637,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.221230,0.006637,-0.007497,0.249888,0,0);}
.mc1_c01458{transform:matrix(0.221632,0.007543,-0.008504,0.249855,0,0);-ms-transform:matrix(0.221632,0.007543,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.221632,0.007543,-0.008504,0.249855,0,0);}
.m48_c01458{transform:matrix(0.222074,0.007336,-0.008254,0.249864,0,0);-ms-transform:matrix(0.222074,0.007336,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.222074,0.007336,-0.008254,0.249864,0,0);}
.m2d_c01458{transform:matrix(0.222140,0.006664,-0.007497,0.249888,0,0);-ms-transform:matrix(0.222140,0.006664,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.222140,0.006664,-0.007497,0.249888,0,0);}
.m7_c01458{transform:matrix(0.222176,0.007117,-0.008004,0.249872,0,0);-ms-transform:matrix(0.222176,0.007117,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.222176,0.007117,-0.008004,0.249872,0,0);}
.m99_c01458{transform:matrix(0.223292,0.006252,-0.006997,0.249902,0,0);-ms-transform:matrix(0.223292,0.006252,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.223292,0.006252,-0.006997,0.249902,0,0);}
.m4d_c01458{transform:matrix(0.223343,0.007378,-0.008254,0.249864,0,0);-ms-transform:matrix(0.223343,0.007378,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.223343,0.007378,-0.008254,0.249864,0,0);}
.m2c_c01458{transform:matrix(0.223519,0.006706,-0.007497,0.249888,0,0);-ms-transform:matrix(0.223519,0.006706,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.223519,0.006706,-0.007497,0.249888,0,0);}
.mf9_c01458{transform:matrix(0.223718,0.006935,-0.007746,0.249880,0,0);-ms-transform:matrix(0.223718,0.006935,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.223718,0.006935,-0.007746,0.249880,0,0);}
.mc3_c01458{transform:matrix(0.223840,0.007618,-0.008504,0.249855,0,0);-ms-transform:matrix(0.223840,0.007618,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.223840,0.007618,-0.008504,0.249855,0,0);}
.m8_c01458{transform:matrix(0.224315,0.007185,-0.008004,0.249872,0,0);-ms-transform:matrix(0.224315,0.007185,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.224315,0.007185,-0.008004,0.249872,0,0);}
.m5c_c01458{transform:matrix(0.224348,0.007411,-0.008254,0.249864,0,0);-ms-transform:matrix(0.224348,0.007411,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.224348,0.007411,-0.008254,0.249864,0,0);}
.m9d_c01458{transform:matrix(0.225180,0.009016,-0.010002,0.249800,0,0);-ms-transform:matrix(0.225180,0.009016,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.225180,0.009016,-0.010002,0.249800,0,0);}
.mf3_c01458{transform:matrix(0.225384,0.006762,-0.007497,0.249888,0,0);-ms-transform:matrix(0.225384,0.006762,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.225384,0.006762,-0.007497,0.249888,0,0);}
.m2a_c01458{transform:matrix(0.225459,0.006764,-0.007497,0.249888,0,0);-ms-transform:matrix(0.225459,0.006764,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.225459,0.006764,-0.007497,0.249888,0,0);}
.m4b_c01458{transform:matrix(0.225912,0.007463,-0.008254,0.249864,0,0);-ms-transform:matrix(0.225912,0.007463,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.225912,0.007463,-0.008254,0.249864,0,0);}
.me0_c01458{transform:matrix(0.226695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226695,0.000000,0.000000,0.250000,0,0);}
.m5a_c01458{transform:matrix(0.227261,0.007507,-0.008254,0.249864,0,0);-ms-transform:matrix(0.227261,0.007507,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.227261,0.007507,-0.008254,0.249864,0,0);}
.m9e_c01458{transform:matrix(0.228352,0.009143,-0.010002,0.249800,0,0);-ms-transform:matrix(0.228352,0.009143,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.228352,0.009143,-0.010002,0.249800,0,0);}
.m15_c01458{transform:matrix(0.228738,0.005947,-0.006498,0.249916,0,0);-ms-transform:matrix(0.228738,0.005947,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.228738,0.005947,-0.006498,0.249916,0,0);}
.m4f_c01458{transform:matrix(0.229335,0.007576,-0.008254,0.249864,0,0);-ms-transform:matrix(0.229335,0.007576,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.229335,0.007576,-0.008254,0.249864,0,0);}
.m58_c01458{transform:matrix(0.229365,0.007577,-0.008254,0.249864,0,0);-ms-transform:matrix(0.229365,0.007577,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.229365,0.007577,-0.008254,0.249864,0,0);}
.mc_c01458{transform:matrix(0.229657,0.007356,-0.008004,0.249872,0,0);-ms-transform:matrix(0.229657,0.007356,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.229657,0.007356,-0.008004,0.249872,0,0);}
.me6_c01458{transform:matrix(0.229885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229885,0.000000,0.000000,0.250000,0,0);}
.m5e_c01458{transform:matrix(0.229915,0.007595,-0.008254,0.249864,0,0);-ms-transform:matrix(0.229915,0.007595,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.229915,0.007595,-0.008254,0.249864,0,0);}
.m2f_c01458{transform:matrix(0.230296,0.006909,-0.007497,0.249888,0,0);-ms-transform:matrix(0.230296,0.006909,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.230296,0.006909,-0.007497,0.249888,0,0);}
.mf2_c01458{transform:matrix(0.230351,0.006911,-0.007497,0.249888,0,0);-ms-transform:matrix(0.230351,0.006911,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.230351,0.006911,-0.007497,0.249888,0,0);}
.m7a_c01458{transform:matrix(0.230745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230745,0.000000,0.000000,0.250000,0,0);}
.m74_c01458{transform:matrix(0.231050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231050,0.000000,0.000000,0.250000,0,0);}
.m40_c01458{transform:matrix(0.231519,0.007648,-0.008254,0.249864,0,0);-ms-transform:matrix(0.231519,0.007648,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.231519,0.007648,-0.008254,0.249864,0,0);}
.m73_c01458{transform:matrix(0.231590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231590,0.000000,0.000000,0.250000,0,0);}
.med_c01458{transform:matrix(0.232001,0.006960,-0.007497,0.249888,0,0);-ms-transform:matrix(0.232001,0.006960,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.232001,0.006960,-0.007497,0.249888,0,0);}
.m44_c01458{transform:matrix(0.232208,0.007671,-0.008254,0.249864,0,0);-ms-transform:matrix(0.232208,0.007671,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.232208,0.007671,-0.008254,0.249864,0,0);}
.m59_c01458{transform:matrix(0.232393,0.007677,-0.008254,0.249864,0,0);-ms-transform:matrix(0.232393,0.007677,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.232393,0.007677,-0.008254,0.249864,0,0);}
.m5_c01458{transform:matrix(0.232966,0.007462,-0.008004,0.249872,0,0);-ms-transform:matrix(0.232966,0.007462,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.232966,0.007462,-0.008004,0.249872,0,0);}
.m29_c01458{transform:matrix(0.233145,0.006994,-0.007497,0.249888,0,0);-ms-transform:matrix(0.233145,0.006994,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.233145,0.006994,-0.007497,0.249888,0,0);}
.md2_c01458{transform:matrix(0.233744,0.010061,-0.010751,0.249769,0,0);-ms-transform:matrix(0.233744,0.010061,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.233744,0.010061,-0.010751,0.249769,0,0);}
.mf5_c01458{transform:matrix(0.233830,0.007015,-0.007497,0.249888,0,0);-ms-transform:matrix(0.233830,0.007015,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.233830,0.007015,-0.007497,0.249888,0,0);}
.mec_c01458{transform:matrix(0.233865,0.007016,-0.007497,0.249888,0,0);-ms-transform:matrix(0.233865,0.007016,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.233865,0.007016,-0.007497,0.249888,0,0);}
.ma9_c01458{transform:matrix(0.235279,0.007536,-0.008004,0.249872,0,0);-ms-transform:matrix(0.235279,0.007536,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.235279,0.007536,-0.008004,0.249872,0,0);}
.m31_c01458{transform:matrix(0.235584,0.007068,-0.007497,0.249888,0,0);-ms-transform:matrix(0.235584,0.007068,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.235584,0.007068,-0.007497,0.249888,0,0);}
.m9a_c01458{transform:matrix(0.236013,0.006608,-0.006997,0.249902,0,0);-ms-transform:matrix(0.236013,0.006608,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.236013,0.006608,-0.006997,0.249902,0,0);}
.m3_c01458{transform:matrix(0.236209,0.007566,-0.008004,0.249872,0,0);-ms-transform:matrix(0.236209,0.007566,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.236209,0.007566,-0.008004,0.249872,0,0);}
.m57_c01458{transform:matrix(0.236946,0.007827,-0.008254,0.249864,0,0);-ms-transform:matrix(0.236946,0.007827,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.236946,0.007827,-0.008254,0.249864,0,0);}
.m6b_c01458{transform:matrix(0.237095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237095,0.000000,0.000000,0.250000,0,0);}
.m1a_c01458{transform:matrix(0.237750,0.006181,-0.006498,0.249916,0,0);-ms-transform:matrix(0.237750,0.006181,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.237750,0.006181,-0.006498,0.249916,0,0);}
.mdc_c01458{transform:matrix(0.238105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238105,0.000000,0.000000,0.250000,0,0);}
.m6f_c01458{transform:matrix(0.238535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238535,0.000000,0.000000,0.250000,0,0);}
.md4_c01458{transform:matrix(0.239074,0.010290,-0.010751,0.249769,0,0);-ms-transform:matrix(0.239074,0.010290,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.239074,0.010290,-0.010751,0.249769,0,0);}
.mb_c01458{transform:matrix(0.239362,0.007667,-0.008004,0.249872,0,0);-ms-transform:matrix(0.239362,0.007667,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.239362,0.007667,-0.008004,0.249872,0,0);}
.m4a_c01458{transform:matrix(0.239549,0.007913,-0.008254,0.249864,0,0);-ms-transform:matrix(0.239549,0.007913,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.239549,0.007913,-0.008254,0.249864,0,0);}
.mef_c01458{transform:matrix(0.239842,0.007195,-0.007497,0.249888,0,0);-ms-transform:matrix(0.239842,0.007195,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.239842,0.007195,-0.007497,0.249888,0,0);}
.m60_c01458{transform:matrix(0.240194,0.007934,-0.008254,0.249864,0,0);-ms-transform:matrix(0.240194,0.007934,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.240194,0.007934,-0.008254,0.249864,0,0);}
.m5d_c01458{transform:matrix(0.241593,0.007981,-0.008254,0.249864,0,0);-ms-transform:matrix(0.241593,0.007981,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.241593,0.007981,-0.008254,0.249864,0,0);}
.mc6_c01458{transform:matrix(0.241855,0.008231,-0.008504,0.249855,0,0);-ms-transform:matrix(0.241855,0.008231,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.241855,0.008231,-0.008504,0.249855,0,0);}
.mee_c01458{transform:matrix(0.242186,0.007266,-0.007497,0.249888,0,0);-ms-transform:matrix(0.242186,0.007266,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.242186,0.007266,-0.007497,0.249888,0,0);}
.m3e_c01458{transform:matrix(0.242533,0.008012,-0.008254,0.249864,0,0);-ms-transform:matrix(0.242533,0.008012,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.242533,0.008012,-0.008254,0.249864,0,0);}
.m25_c01458{transform:matrix(0.242636,0.007279,-0.007497,0.249888,0,0);-ms-transform:matrix(0.242636,0.007279,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.242636,0.007279,-0.007497,0.249888,0,0);}
.m43_c01458{transform:matrix(0.245376,0.008106,-0.008254,0.249864,0,0);-ms-transform:matrix(0.245376,0.008106,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.245376,0.008106,-0.008254,0.249864,0,0);}
.m4c_c01458{transform:matrix(0.245811,0.008120,-0.008254,0.249864,0,0);-ms-transform:matrix(0.245811,0.008120,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.245811,0.008120,-0.008254,0.249864,0,0);}
.m7f_c01458{transform:matrix(0.246625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246625,0.000000,0.000000,0.250000,0,0);}
.m16_c01458{transform:matrix(0.246762,0.006416,-0.006498,0.249916,0,0);-ms-transform:matrix(0.246762,0.006416,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.246762,0.006416,-0.006498,0.249916,0,0);}
.meb_c01458{transform:matrix(0.246909,0.007407,-0.007497,0.249888,0,0);-ms-transform:matrix(0.246909,0.007407,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.246909,0.007407,-0.007497,0.249888,0,0);}
.m3d_c01458{transform:matrix(0.247195,0.008166,-0.008254,0.249864,0,0);-ms-transform:matrix(0.247195,0.008166,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.247195,0.008166,-0.008254,0.249864,0,0);}
.m9f_c01458{transform:matrix(0.247272,0.009901,-0.010002,0.249800,0,0);-ms-transform:matrix(0.247272,0.009901,-0.010002,0.249800,0,0);-webkit-transform:matrix(0.247272,0.009901,-0.010002,0.249800,0,0);}
.m53_c01458{transform:matrix(0.248539,0.008210,-0.008254,0.249864,0,0);-ms-transform:matrix(0.248539,0.008210,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.248539,0.008210,-0.008254,0.249864,0,0);}
.mfa_c01458{transform:matrix(0.248681,0.007709,-0.007746,0.249880,0,0);-ms-transform:matrix(0.248681,0.007709,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.248681,0.007709,-0.007746,0.249880,0,0);}
.m6d_c01458{transform:matrix(0.249395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249395,0.000000,0.000000,0.250000,0,0);}
.md5_c01458{transform:matrix(0.249719,0.010749,-0.010751,0.249769,0,0);-ms-transform:matrix(0.249719,0.010749,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.249719,0.010749,-0.010751,0.249769,0,0);}
.me9_c01458{transform:matrix(0.250152,0.007505,-0.007497,0.249888,0,0);-ms-transform:matrix(0.250152,0.007505,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.250152,0.007505,-0.007497,0.249888,0,0);}
.me3_c01458{transform:matrix(0.250205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250205,0.000000,0.000000,0.250000,0,0);}
.m86_c01458{transform:matrix(0.250815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250815,0.000000,0.000000,0.250000,0,0);}
.m1f_c01458{transform:matrix(0.251332,0.007540,-0.007497,0.249888,0,0);-ms-transform:matrix(0.251332,0.007540,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.251332,0.007540,-0.007497,0.249888,0,0);}
.m46_c01458{transform:matrix(0.251553,0.008310,-0.008254,0.249864,0,0);-ms-transform:matrix(0.251553,0.008310,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.251553,0.008310,-0.008254,0.249864,0,0);}
.m71_c01458{transform:matrix(0.251730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251730,0.000000,0.000000,0.250000,0,0);}
.m80_c01458{transform:matrix(0.251935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251935,0.000000,0.000000,0.250000,0,0);}
.mf1_c01458{transform:matrix(0.252217,0.007566,-0.007497,0.249888,0,0);-ms-transform:matrix(0.252217,0.007566,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.252217,0.007566,-0.007497,0.249888,0,0);}
.mc8_c01458{transform:matrix(0.252484,0.008593,-0.008504,0.249855,0,0);-ms-transform:matrix(0.252484,0.008593,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.252484,0.008593,-0.008504,0.249855,0,0);}
.mab_c01458{transform:matrix(0.252495,0.008088,-0.008004,0.249872,0,0);-ms-transform:matrix(0.252495,0.008088,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.252495,0.008088,-0.008004,0.249872,0,0);}
.mfb_c01458{transform:matrix(0.252899,0.007840,-0.007746,0.249880,0,0);-ms-transform:matrix(0.252899,0.007840,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.252899,0.007840,-0.007746,0.249880,0,0);}
.mf8_c01458{transform:matrix(0.253473,0.007858,-0.007746,0.249880,0,0);-ms-transform:matrix(0.253473,0.007858,-0.007746,0.249880,0,0);-webkit-transform:matrix(0.253473,0.007858,-0.007746,0.249880,0,0);}
.m42_c01458{transform:matrix(0.254436,0.008405,-0.008254,0.249864,0,0);-ms-transform:matrix(0.254436,0.008405,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.254436,0.008405,-0.008254,0.249864,0,0);}
.m55_c01458{transform:matrix(0.254521,0.008408,-0.008254,0.249864,0,0);-ms-transform:matrix(0.254521,0.008408,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.254521,0.008408,-0.008254,0.249864,0,0);}
.m52_c01458{transform:matrix(0.254566,0.008409,-0.008254,0.249864,0,0);-ms-transform:matrix(0.254566,0.008409,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.254566,0.008409,-0.008254,0.249864,0,0);}
.mbf_c01458{transform:matrix(0.254825,0.007645,-0.007497,0.249888,0,0);-ms-transform:matrix(0.254825,0.007645,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.254825,0.007645,-0.007497,0.249888,0,0);}
.mcd_c01458{transform:matrix(0.256612,0.011045,-0.010751,0.249769,0,0);-ms-transform:matrix(0.256612,0.011045,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.256612,0.011045,-0.010751,0.249769,0,0);}
.mc9_c01458{transform:matrix(0.257321,0.008758,-0.008504,0.249855,0,0);-ms-transform:matrix(0.257321,0.008758,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.257321,0.008758,-0.008504,0.249855,0,0);}
.me5_c01458{transform:matrix(0.258540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258540,0.000000,0.000000,0.250000,0,0);}
.mb1_c01458{transform:matrix(0.259317,0.008306,-0.008004,0.249872,0,0);-ms-transform:matrix(0.259317,0.008306,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.259317,0.008306,-0.008004,0.249872,0,0);}
.mf_c01458{transform:matrix(0.259937,0.006758,-0.006498,0.249916,0,0);-ms-transform:matrix(0.259937,0.006758,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.259937,0.006758,-0.006498,0.249916,0,0);}
.me_c01458{transform:matrix(0.260061,0.007542,-0.007247,0.249895,0,0);-ms-transform:matrix(0.260061,0.007542,-0.007247,0.249895,0,0);-webkit-transform:matrix(0.260061,0.007542,-0.007247,0.249895,0,0);}
.m68_c01458{transform:matrix(0.260078,0.008591,-0.008254,0.249864,0,0);-ms-transform:matrix(0.260078,0.008591,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.260078,0.008591,-0.008254,0.249864,0,0);}
.m93_c01458{transform:matrix(0.260118,0.007283,-0.006997,0.249902,0,0);-ms-transform:matrix(0.260118,0.007283,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.260118,0.007283,-0.006997,0.249902,0,0);}
.m83_c01458{transform:matrix(0.260215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260215,0.000000,0.000000,0.250000,0,0);}
.ma8_c01458{transform:matrix(0.260611,0.008348,-0.008004,0.249872,0,0);-ms-transform:matrix(0.260611,0.008348,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.260611,0.008348,-0.008004,0.249872,0,0);}
.m8e_c01458{transform:matrix(0.260878,0.007305,-0.006997,0.249902,0,0);-ms-transform:matrix(0.260878,0.007305,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.260878,0.007305,-0.006997,0.249902,0,0);}
.mae_c01458{transform:matrix(0.261851,0.008388,-0.008004,0.249872,0,0);-ms-transform:matrix(0.261851,0.008388,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.261851,0.008388,-0.008004,0.249872,0,0);}
.m13_c01458{transform:matrix(0.262961,0.006837,-0.006498,0.249916,0,0);-ms-transform:matrix(0.262961,0.006837,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.262961,0.006837,-0.006498,0.249916,0,0);}
.m82_c01458{transform:matrix(0.263005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263005,0.000000,0.000000,0.250000,0,0);}
.mbc_c01458{transform:matrix(0.263941,0.007918,-0.007497,0.249888,0,0);-ms-transform:matrix(0.263941,0.007918,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.263941,0.007918,-0.007497,0.249888,0,0);}
.m1e_c01458{transform:matrix(0.264281,0.007928,-0.007497,0.249888,0,0);-ms-transform:matrix(0.264281,0.007928,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.264281,0.007928,-0.007497,0.249888,0,0);}
.m18_c01458{transform:matrix(0.264676,0.006882,-0.006498,0.249916,0,0);-ms-transform:matrix(0.264676,0.006882,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.264676,0.006882,-0.006498,0.249916,0,0);}
.m20_c01458{transform:matrix(0.265311,0.007959,-0.007497,0.249888,0,0);-ms-transform:matrix(0.265311,0.007959,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.265311,0.007959,-0.007497,0.249888,0,0);}
.md6_c01458{transform:matrix(0.265799,0.011441,-0.010751,0.249769,0,0);-ms-transform:matrix(0.265799,0.011441,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.265799,0.011441,-0.010751,0.249769,0,0);}
.mad_c01458{transform:matrix(0.266148,0.008525,-0.008004,0.249872,0,0);-ms-transform:matrix(0.266148,0.008525,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.266148,0.008525,-0.008004,0.249872,0,0);}
.mc5_c01458{transform:matrix(0.266811,0.009081,-0.008504,0.249855,0,0);-ms-transform:matrix(0.266811,0.009081,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.266811,0.009081,-0.008504,0.249855,0,0);}
.mbe_c01458{transform:matrix(0.268209,0.008046,-0.007497,0.249888,0,0);-ms-transform:matrix(0.268209,0.008046,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.268209,0.008046,-0.007497,0.249888,0,0);}
.mcf_c01458{transform:matrix(0.268596,0.011561,-0.010751,0.249769,0,0);-ms-transform:matrix(0.268596,0.011561,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.268596,0.011561,-0.010751,0.249769,0,0);}
.m19_c01458{transform:matrix(0.269134,0.006997,-0.006498,0.249916,0,0);-ms-transform:matrix(0.269134,0.006997,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.269134,0.006997,-0.006498,0.249916,0,0);}
.m17_c01458{transform:matrix(0.269149,0.006998,-0.006498,0.249916,0,0);-ms-transform:matrix(0.269149,0.006998,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.269149,0.006998,-0.006498,0.249916,0,0);}
.m66_c01458{transform:matrix(0.269238,0.008894,-0.008254,0.249864,0,0);-ms-transform:matrix(0.269238,0.008894,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.269238,0.008894,-0.008254,0.249864,0,0);}
.m22_c01458{transform:matrix(0.269599,0.008088,-0.007497,0.249888,0,0);-ms-transform:matrix(0.269599,0.008088,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.269599,0.008088,-0.007497,0.249888,0,0);}
.m78_c01458{transform:matrix(0.270350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270350,0.000000,0.000000,0.250000,0,0);}
.m1b_c01458{transform:matrix(0.272053,0.010348,-0.009503,0.249819,0,0);-ms-transform:matrix(0.272053,0.010348,-0.009503,0.249819,0,0);-webkit-transform:matrix(0.272053,0.010348,-0.009503,0.249819,0,0);}
.mc4_c01458{transform:matrix(0.272337,0.009269,-0.008504,0.249855,0,0);-ms-transform:matrix(0.272337,0.009269,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.272337,0.009269,-0.008504,0.249855,0,0);}
.m11_c01458{transform:matrix(0.272568,0.007087,-0.006498,0.249916,0,0);-ms-transform:matrix(0.272568,0.007087,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.272568,0.007087,-0.006498,0.249916,0,0);}
.m7b_c01458{transform:matrix(0.272705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272705,0.000000,0.000000,0.250000,0,0);}
.ma7_c01458{transform:matrix(0.273160,0.008750,-0.008004,0.249872,0,0);-ms-transform:matrix(0.273160,0.008750,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.273160,0.008750,-0.008004,0.249872,0,0);}
.mb2_c01458{transform:matrix(0.273495,0.008761,-0.008004,0.249872,0,0);-ms-transform:matrix(0.273495,0.008761,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.273495,0.008761,-0.008004,0.249872,0,0);}
.md7_c01458{transform:matrix(0.273527,0.011773,-0.010751,0.249769,0,0);-ms-transform:matrix(0.273527,0.011773,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.273527,0.011773,-0.010751,0.249769,0,0);}
.mb6_c01458{transform:matrix(0.273881,0.010692,-0.009752,0.249810,0,0);-ms-transform:matrix(0.273881,0.010692,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.273881,0.010692,-0.009752,0.249810,0,0);}
.m79_c01458{transform:matrix(0.273930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273930,0.000000,0.000000,0.250000,0,0);}
.mbb_c01458{transform:matrix(0.274182,0.008225,-0.007497,0.249888,0,0);-ms-transform:matrix(0.274182,0.008225,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.274182,0.008225,-0.007497,0.249888,0,0);}
.mb4_c01458{transform:matrix(0.274706,0.010724,-0.009752,0.249810,0,0);-ms-transform:matrix(0.274706,0.010724,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.274706,0.010724,-0.009752,0.249810,0,0);}
.m77_c01458{transform:matrix(0.274840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274840,0.000000,0.000000,0.250000,0,0);}
.m91_c01458{transform:matrix(0.275717,0.007720,-0.006997,0.249902,0,0);-ms-transform:matrix(0.275717,0.007720,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.275717,0.007720,-0.006997,0.249902,0,0);}
.maf_c01458{transform:matrix(0.276713,0.008864,-0.008004,0.249872,0,0);-ms-transform:matrix(0.276713,0.008864,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.276713,0.008864,-0.008004,0.249872,0,0);}
.ma6_c01458{transform:matrix(0.276968,0.008872,-0.008004,0.249872,0,0);-ms-transform:matrix(0.276968,0.008872,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.276968,0.008872,-0.008004,0.249872,0,0);}
.mb5_c01458{transform:matrix(0.277239,0.010823,-0.009752,0.249810,0,0);-ms-transform:matrix(0.277239,0.010823,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.277239,0.010823,-0.009752,0.249810,0,0);}
.mc2_c01458{transform:matrix(0.277414,0.009442,-0.008504,0.249855,0,0);-ms-transform:matrix(0.277414,0.009442,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.277414,0.009442,-0.008504,0.249855,0,0);}
.m7c_c01458{transform:matrix(0.277915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277915,0.000000,0.000000,0.250000,0,0);}
.m14_c01458{transform:matrix(0.278416,0.007239,-0.006498,0.249916,0,0);-ms-transform:matrix(0.278416,0.007239,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.278416,0.007239,-0.006498,0.249916,0,0);}
.md3_c01458{transform:matrix(0.279022,0.012010,-0.010751,0.249769,0,0);-ms-transform:matrix(0.279022,0.012010,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.279022,0.012010,-0.010751,0.249769,0,0);}
.m12_c01458{transform:matrix(0.279241,0.007260,-0.006498,0.249916,0,0);-ms-transform:matrix(0.279241,0.007260,-0.006498,0.249916,0,0);-webkit-transform:matrix(0.279241,0.007260,-0.006498,0.249916,0,0);}
.mba_c01458{transform:matrix(0.279354,0.008381,-0.007497,0.249888,0,0);-ms-transform:matrix(0.279354,0.008381,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.279354,0.008381,-0.007497,0.249888,0,0);}
.m63_c01458{transform:matrix(0.280542,0.009267,-0.008254,0.249864,0,0);-ms-transform:matrix(0.280542,0.009267,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.280542,0.009267,-0.008254,0.249864,0,0);}
.maa_c01458{transform:matrix(0.281006,0.009001,-0.008004,0.249872,0,0);-ms-transform:matrix(0.281006,0.009001,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.281006,0.009001,-0.008004,0.249872,0,0);}
.m64_c01458{transform:matrix(0.282716,0.009339,-0.008254,0.249864,0,0);-ms-transform:matrix(0.282716,0.009339,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.282716,0.009339,-0.008254,0.249864,0,0);}
.m70_c01458{transform:matrix(0.283855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283855,0.000000,0.000000,0.250000,0,0);}
.mc7_c01458{transform:matrix(0.283896,0.009662,-0.008504,0.249855,0,0);-ms-transform:matrix(0.283896,0.009662,-0.008504,0.249855,0,0);-webkit-transform:matrix(0.283896,0.009662,-0.008504,0.249855,0,0);}
.mb9_c01458{transform:matrix(0.284487,0.008535,-0.007497,0.249888,0,0);-ms-transform:matrix(0.284487,0.008535,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.284487,0.008535,-0.007497,0.249888,0,0);}
.m65_c01458{transform:matrix(0.285045,0.009416,-0.008254,0.249864,0,0);-ms-transform:matrix(0.285045,0.009416,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.285045,0.009416,-0.008254,0.249864,0,0);}
.m87_c01458{transform:matrix(0.286235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286235,0.000000,0.000000,0.250000,0,0);}
.mcc_c01458{transform:matrix(0.286415,0.012328,-0.010751,0.249769,0,0);-ms-transform:matrix(0.286415,0.012328,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.286415,0.012328,-0.010751,0.249769,0,0);}
.m94_c01458{transform:matrix(0.286803,0.008030,-0.006997,0.249902,0,0);-ms-transform:matrix(0.286803,0.008030,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.286803,0.008030,-0.006997,0.249902,0,0);}
.mdd_c01458{transform:matrix(0.288170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288170,0.000000,0.000000,0.250000,0,0);}
.mf0_c01458{transform:matrix(0.289150,0.008674,-0.007497,0.249888,0,0);-ms-transform:matrix(0.289150,0.008674,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.289150,0.008674,-0.007497,0.249888,0,0);}
.mac_c01458{transform:matrix(0.289387,0.009270,-0.008004,0.249872,0,0);-ms-transform:matrix(0.289387,0.009270,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.289387,0.009270,-0.008004,0.249872,0,0);}
.mc0_c01458{transform:matrix(0.289400,0.008682,-0.007497,0.249888,0,0);-ms-transform:matrix(0.289400,0.008682,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.289400,0.008682,-0.007497,0.249888,0,0);}
.m1_c01458{transform:matrix(0.290775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290775,0.000000,0.000000,0.250000,0,0);}
.m8d_c01458{transform:matrix(0.293435,0.008216,-0.006997,0.249902,0,0);-ms-transform:matrix(0.293435,0.008216,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.293435,0.008216,-0.006997,0.249902,0,0);}
.m90_c01458{transform:matrix(0.294709,0.008252,-0.006997,0.249902,0,0);-ms-transform:matrix(0.294709,0.008252,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.294709,0.008252,-0.006997,0.249902,0,0);}
.mb0_c01458{transform:matrix(0.294929,0.009447,-0.008004,0.249872,0,0);-ms-transform:matrix(0.294929,0.009447,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.294929,0.009447,-0.008004,0.249872,0,0);}
.m62_c01458{transform:matrix(0.295669,0.009767,-0.008254,0.249864,0,0);-ms-transform:matrix(0.295669,0.009767,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.295669,0.009767,-0.008254,0.249864,0,0);}
.m67_c01458{transform:matrix(0.295919,0.009775,-0.008254,0.249864,0,0);-ms-transform:matrix(0.295919,0.009775,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.295919,0.009775,-0.008254,0.249864,0,0);}
.m8f_c01458{transform:matrix(0.296744,0.008309,-0.006997,0.249902,0,0);-ms-transform:matrix(0.296744,0.008309,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.296744,0.008309,-0.006997,0.249902,0,0);}
.mb3_c01458{transform:matrix(0.297004,0.011595,-0.009752,0.249810,0,0);-ms-transform:matrix(0.297004,0.011595,-0.009752,0.249810,0,0);-webkit-transform:matrix(0.297004,0.011595,-0.009752,0.249810,0,0);}
.m69_c01458{transform:matrix(0.297428,0.009825,-0.008254,0.249864,0,0);-ms-transform:matrix(0.297428,0.009825,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.297428,0.009825,-0.008254,0.249864,0,0);}
.m95_c01458{transform:matrix(0.302641,0.008474,-0.006997,0.249902,0,0);-ms-transform:matrix(0.302641,0.008474,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.302641,0.008474,-0.006997,0.249902,0,0);}
.m61_c01458{transform:matrix(0.306848,0.010136,-0.008254,0.249864,0,0);-ms-transform:matrix(0.306848,0.010136,-0.008254,0.249864,0,0);-webkit-transform:matrix(0.306848,0.010136,-0.008254,0.249864,0,0);}
.mbd_c01458{transform:matrix(0.310041,0.009301,-0.007497,0.249888,0,0);-ms-transform:matrix(0.310041,0.009301,-0.007497,0.249888,0,0);-webkit-transform:matrix(0.310041,0.009301,-0.007497,0.249888,0,0);}
.m92_c01458{transform:matrix(0.310953,0.008707,-0.006997,0.249902,0,0);-ms-transform:matrix(0.310953,0.008707,-0.006997,0.249902,0,0);-webkit-transform:matrix(0.310953,0.008707,-0.006997,0.249902,0,0);}
.mcb_c01458{transform:matrix(0.316657,0.013630,-0.010751,0.249769,0,0);-ms-transform:matrix(0.316657,0.013630,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.316657,0.013630,-0.010751,0.249769,0,0);}
.mca_c01458{transform:matrix(0.326952,0.014073,-0.010751,0.249769,0,0);-ms-transform:matrix(0.326952,0.014073,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.326952,0.014073,-0.010751,0.249769,0,0);}
.m0_c01458{transform:matrix(0.359980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359980,0.000000,0.000000,0.250000,0,0);}
.m89_c01458{transform:matrix(0.383455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383455,0.000000,0.000000,0.250000,0,0);}
.m2_c01458{transform:matrix(0.409720,0.013124,-0.008004,0.249872,0,0);-ms-transform:matrix(0.409720,0.013124,-0.008004,0.249872,0,0);-webkit-transform:matrix(0.409720,0.013124,-0.008004,0.249872,0,0);}
.m88_c01458{transform:matrix(0.433110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433110,0.000000,0.000000,0.250000,0,0);}
.mda_c01458{transform:matrix(0.969607,0.041735,-0.010751,0.249769,0,0);-ms-transform:matrix(0.969607,0.041735,-0.010751,0.249769,0,0);-webkit-transform:matrix(0.969607,0.041735,-0.010751,0.249769,0,0);}
.mdb_c01458{transform:matrix(1.107859,0.047686,-0.010751,0.249769,0,0);-ms-transform:matrix(1.107859,0.047686,-0.010751,0.249769,0,0);-webkit-transform:matrix(1.107859,0.047686,-0.010751,0.249769,0,0);}
.md9_c01458{transform:matrix(3.797799,0.163469,-0.010751,0.249769,0,0);-ms-transform:matrix(3.797799,0.163469,-0.010751,0.249769,0,0);-webkit-transform:matrix(3.797799,0.163469,-0.010751,0.249769,0,0);}
.md8_c01458{transform:matrix(4.785434,0.205980,-0.010751,0.249769,0,0);-ms-transform:matrix(4.785434,0.205980,-0.010751,0.249769,0,0);-webkit-transform:matrix(4.785434,0.205980,-0.010751,0.249769,0,0);}
.v0_c01458{vertical-align:0.000000px;}
.ls0_c01458{letter-spacing:0.000000px;}
.sc__c01458{text-shadow:none;}
.sc0_c01458{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__c01458{-webkit-text-stroke:0px transparent;}
.sc0_c01458{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01458{word-spacing:0.000000px;}
.fc0_c01458{color:transparent;}
.fs19_c01458{font-size:17.998650px;}
.fsf_c01458{font-size:42.000000px;}
.fs17_c01458{font-size:59.995500px;}
.fs13_c01458{font-size:65.967817px;}
.fsb_c01458{font-size:65.969963px;}
.fs14_c01458{font-size:65.984224px;}
.fs10_c01458{font-size:66.025867px;}
.fs15_c01458{font-size:66.029693px;}
.fs16_c01458{font-size:71.969646px;}
.fs4_c01458{font-size:71.980017px;}
.fs18_c01458{font-size:71.994600px;}
.fse_c01458{font-size:72.000000px;}
.fs3_c01458{font-size:72.024332px;}
.fs5_c01458{font-size:72.032393px;}
.fs9_c01458{font-size:77.964502px;}
.fsd_c01458{font-size:78.000000px;}
.fs11_c01458{font-size:78.030570px;}
.fs7_c01458{font-size:78.035092px;}
.fs1a_c01458{font-size:78.037470px;}
.fs1_c01458{font-size:83.959040px;}
.fsa_c01458{font-size:83.961771px;}
.fs12_c01458{font-size:83.983240px;}
.fs2_c01458{font-size:84.035315px;}
.fs6_c01458{font-size:84.037791px;}
.fsc_c01458{font-size:96.000000px;}
.fs8_c01458{font-size:96.027644px;}
.fs0_c01458{font-size:114.000000px;}
.y0_c01458{bottom:0.000000px;}
.yfe_c01458{bottom:35.509476px;}
.yfd_c01458{bottom:36.889875px;}
.yfc_c01458{bottom:40.282004px;}
.yfb_c01458{bottom:43.021551px;}
.yfa_c01458{bottom:43.646418px;}
.yf9_c01458{bottom:47.072771px;}
.yf8_c01458{bottom:48.329294px;}
.yf7_c01458{bottom:49.689000px;}
.yf6_c01458{bottom:79.661325px;}
.yf5_c01458{bottom:80.809905px;}
.yf4_c01458{bottom:82.619325px;}
.yf3_c01458{bottom:101.058645px;}
.yf2_c01458{bottom:102.070920px;}
.yf1_c01458{bottom:103.051065px;}
.yf0_c01458{bottom:105.020175px;}
.yef_c01458{bottom:106.665420px;}
.yee_c01458{bottom:107.629860px;}
.yed_c01458{bottom:109.242480px;}
.yec_c01458{bottom:111.260910px;}
.yeb_c01458{bottom:114.187080px;}
.yea_c01458{bottom:115.200345px;}
.ye9_c01458{bottom:118.132905px;}
.ye8_c01458{bottom:119.389845px;}
.ye7_c01458{bottom:120.697500px;}
.ye6_c01458{bottom:136.747500px;}
.ye5_c01458{bottom:140.872500px;}
.ye4_c01458{bottom:141.819000px;}
.ye3_c01458{bottom:145.281000px;}
.ye2_c01458{bottom:148.800000px;}
.ye1_c01458{bottom:150.037500px;}
.ye0_c01458{bottom:151.969500px;}
.ydf_c01458{bottom:153.177000px;}
.yde_c01458{bottom:154.449000px;}
.ydd_c01458{bottom:183.070500px;}
.ydc_c01458{bottom:200.999906px;}
.ydb_c01458{bottom:202.715009px;}
.yda_c01458{bottom:205.616510px;}
.yd8_c01458{bottom:205.909695px;}
.yd7_c01458{bottom:208.008671px;}
.yd6_c01458{bottom:210.410381px;}
.yd5_c01458{bottom:211.195665px;}
.yd9_c01458{bottom:211.708016px;}
.yd4_c01458{bottom:213.331671px;}
.yd3_c01458{bottom:214.312974px;}
.yd2_c01458{bottom:216.176822px;}
.yd1_c01458{bottom:217.261080px;}
.yd0_c01458{bottom:219.629778px;}
.ycf_c01458{bottom:220.599819px;}
.yce_c01458{bottom:221.958672px;}
.ycd_c01458{bottom:254.780742px;}
.ycc_c01458{bottom:257.581139px;}
.ycb_c01458{bottom:260.844000px;}
.yca_c01458{bottom:277.079133px;}
.yc9_c01458{bottom:278.622036px;}
.yc8_c01458{bottom:283.800627px;}
.yc7_c01458{bottom:284.940783px;}
.yc6_c01458{bottom:287.869407px;}
.yc5_c01458{bottom:290.856171px;}
.yc4_c01458{bottom:292.004232px;}
.yc3_c01458{bottom:295.706628px;}
.yc2_c01458{bottom:303.498000px;}
.yc1_c01458{bottom:309.623055px;}
.yc0_c01458{bottom:311.559540px;}
.ybf_c01458{bottom:315.157965px;}
.ybe_c01458{bottom:321.080775px;}
.ybd_c01458{bottom:322.383300px;}
.ybc_c01458{bottom:324.024090px;}
.ybb_c01458{bottom:325.686030px;}
.yba_c01458{bottom:329.234910px;}
.yb9_c01458{bottom:330.516645px;}
.yb8_c01458{bottom:331.840500px;}
.yb7_c01458{bottom:357.679743px;}
.yb6_c01458{bottom:362.042030px;}
.yb5_c01458{bottom:362.870799px;}
.yb4_c01458{bottom:366.679500px;}
.yb3_c01458{bottom:382.227816px;}
.yb2_c01458{bottom:383.317272px;}
.yb1_c01458{bottom:386.092872px;}
.yb0_c01458{bottom:386.754216px;}
.yaf_c01458{bottom:388.206648px;}
.yae_c01458{bottom:389.247048px;}
.yad_c01458{bottom:392.028792px;}
.yac_c01458{bottom:393.706296px;}
.yab_c01458{bottom:395.228088px;}
.yaa_c01458{bottom:396.219528px;}
.ya9_c01458{bottom:397.646616px;}
.ya8_c01458{bottom:398.710728px;}
.ya7_c01458{bottom:402.499464px;}
.ya6_c01458{bottom:403.874232px;}
.ya5_c01458{bottom:405.279000px;}
.ya4_c01458{bottom:426.254940px;}
.ya3_c01458{bottom:427.142880px;}
.ya2_c01458{bottom:428.013120px;}
.ya1_c01458{bottom:429.321060px;}
.ya0_c01458{bottom:432.445380px;}
.y9f_c01458{bottom:435.976320px;}
.y9e_c01458{bottom:439.360920px;}
.y9d_c01458{bottom:441.065940px;}
.y9c_c01458{bottom:442.812000px;}
.y9b_c01458{bottom:464.038110px;}
.y9a_c01458{bottom:466.527192px;}
.y99_c01458{bottom:467.582226px;}
.y98_c01458{bottom:468.915822px;}
.y97_c01458{bottom:471.688746px;}
.y96_c01458{bottom:492.704772px;}
.y95_c01458{bottom:494.806914px;}
.y94_c01458{bottom:495.759936px;}
.y93_c01458{bottom:500.031336px;}
.y92_c01458{bottom:500.612154px;}
.y91_c01458{bottom:502.816314px;}
.y90_c01458{bottom:504.640080px;}
.y8f_c01458{bottom:505.540644px;}
.y8e_c01458{bottom:507.650556px;}
.y8d_c01458{bottom:508.839072px;}
.y8c_c01458{bottom:510.083070px;}
.y8b_c01458{bottom:513.019500px;}
.y8a_c01458{bottom:545.514000px;}
.y89_c01458{bottom:548.190000px;}
.y88_c01458{bottom:549.339000px;}
.y87_c01458{bottom:550.564500px;}
.y86_c01458{bottom:554.040000px;}
.y85_c01458{bottom:561.847500px;}
.y84_c01458{bottom:567.648000px;}
.y83_c01458{bottom:572.994000px;}
.y82_c01458{bottom:574.392000px;}
.y81_c01458{bottom:577.474500px;}
.y80_c01458{bottom:580.194000px;}
.y7f_c01458{bottom:581.778000px;}
.y7e_c01458{bottom:583.480500px;}
.y7d_c01458{bottom:602.854500px;}
.y7c_c01458{bottom:605.859000px;}
.y7b_c01458{bottom:607.257000px;}
.y7a_c01458{bottom:609.658500px;}
.y79_c01458{bottom:613.006500px;}
.y78_c01458{bottom:616.398000px;}
.y77_c01458{bottom:618.030000px;}
.y76_c01458{bottom:619.390500px;}
.y75_c01458{bottom:635.337000px;}
.y74_c01458{bottom:637.920000px;}
.y73_c01458{bottom:638.776500px;}
.y72_c01458{bottom:641.290500px;}
.y71_c01458{bottom:642.477000px;}
.y70_c01458{bottom:644.169000px;}
.y6f_c01458{bottom:645.328500px;}
.y6e_c01458{bottom:647.904000px;}
.y6d_c01458{bottom:649.233000px;}
.y6c_c01458{bottom:650.710500px;}
.y6b_c01458{bottom:679.189500px;}
.y6a_c01458{bottom:701.660391px;}
.y69_c01458{bottom:702.743537px;}
.y68_c01458{bottom:705.739182px;}
.y67_c01458{bottom:707.199131px;}
.y66_c01458{bottom:708.678087px;}
.y65_c01458{bottom:711.237764px;}
.y64_c01458{bottom:713.845914px;}
.y63_c01458{bottom:715.408602px;}
.y62_c01458{bottom:719.901321px;}
.y61_c01458{bottom:720.926538px;}
.y60_c01458{bottom:736.846539px;}
.y5f_c01458{bottom:739.066862px;}
.y5e_c01458{bottom:743.007656px;}
.y5d_c01458{bottom:744.460678px;}
.y5c_c01458{bottom:745.891773px;}
.y5b_c01458{bottom:749.082147px;}
.y5a_c01458{bottom:752.019279px;}
.y59_c01458{bottom:754.203664px;}
.y58_c01458{bottom:757.752319px;}
.y57_c01458{bottom:760.600500px;}
.y56_c01458{bottom:788.889547px;}
.y55_c01458{bottom:790.777171px;}
.y54_c01458{bottom:792.778646px;}
.y53_c01458{bottom:810.116335px;}
.y52_c01458{bottom:813.387444px;}
.y51_c01458{bottom:814.738992px;}
.y50_c01458{bottom:816.240030px;}
.y4f_c01458{bottom:818.065887px;}
.y4e_c01458{bottom:819.118158px;}
.y4d_c01458{bottom:820.206366px;}
.y4c_c01458{bottom:822.769872px;}
.y4b_c01458{bottom:823.473960px;}
.y4a_c01458{bottom:825.262346px;}
.y49_c01458{bottom:826.358275px;}
.y48_c01458{bottom:827.784866px;}
.y47_c01458{bottom:835.691599px;}
.y46_c01458{bottom:846.303243px;}
.y45_c01458{bottom:847.409222px;}
.y44_c01458{bottom:848.836108px;}
.y43_c01458{bottom:851.028562px;}
.y42_c01458{bottom:854.298830px;}
.y41_c01458{bottom:855.650625px;}
.y40_c01458{bottom:857.517072px;}
.y3f_c01458{bottom:860.309961px;}
.y3e_c01458{bottom:862.953310px;}
.y3d_c01458{bottom:865.764613px;}
.y3c_c01458{bottom:867.521071px;}
.y3b_c01458{bottom:868.978500px;}
.y3a_c01458{bottom:886.775832px;}
.y39_c01458{bottom:888.862104px;}
.y38_c01458{bottom:890.448300px;}
.y37_c01458{bottom:892.834272px;}
.y36_c01458{bottom:894.929040px;}
.y35_c01458{bottom:896.497848px;}
.y34_c01458{bottom:897.731604px;}
.y33_c01458{bottom:899.109000px;}
.y32_c01458{bottom:932.962635px;}
.y31_c01458{bottom:953.227755px;}
.y30_c01458{bottom:954.175500px;}
.y2f_c01458{bottom:956.833785px;}
.y2e_c01458{bottom:958.097565px;}
.y2d_c01458{bottom:959.110560px;}
.y2c_c01458{bottom:961.033770px;}
.y2b_c01458{bottom:963.323595px;}
.y2a_c01458{bottom:964.352790px;}
.y29_c01458{bottom:966.979395px;}
.y28_c01458{bottom:967.968135px;}
.y27_c01458{bottom:969.565050px;}
.y26_c01458{bottom:987.116865px;}
.y25_c01458{bottom:988.781460px;}
.y24_c01458{bottom:989.751075px;}
.y23_c01458{bottom:993.340905px;}
.y22_c01458{bottom:996.018045px;}
.y21_c01458{bottom:997.978335px;}
.y20_c01458{bottom:1000.271535px;}
.y1f_c01458{bottom:1001.876820px;}
.y1e_c01458{bottom:1006.115595px;}
.y1d_c01458{bottom:1007.405430px;}
.y1c_c01458{bottom:1008.730500px;}
.y1b_c01458{bottom:1041.139500px;}
.y1a_c01458{bottom:1057.756437px;}
.y19_c01458{bottom:1060.284417px;}
.y18_c01458{bottom:1060.887006px;}
.y17_c01458{bottom:1062.581712px;}
.y16_c01458{bottom:1063.445796px;}
.y15_c01458{bottom:1064.294943px;}
.y14_c01458{bottom:1067.707326px;}
.y13_c01458{bottom:1068.846009px;}
.y12_c01458{bottom:1071.416655px;}
.y11_c01458{bottom:1073.924667px;}
.y10_c01458{bottom:1075.042758px;}
.yf_c01458{bottom:1076.500500px;}
.ye_c01458{bottom:1110.792000px;}
.yd_c01458{bottom:1128.486192px;}
.yc_c01458{bottom:1131.295536px;}
.yb_c01458{bottom:1132.340112px;}
.ya_c01458{bottom:1133.387856px;}
.y9_c01458{bottom:1134.442224px;}
.y8_c01458{bottom:1136.843760px;}
.y7_c01458{bottom:1139.309040px;}
.y6_c01458{bottom:1140.415200px;}
.y5_c01458{bottom:1143.198624px;}
.y4_c01458{bottom:1144.253280px;}
.y3_c01458{bottom:1147.452576px;}
.y2_c01458{bottom:1154.274000px;}
.y1_c01458{bottom:1214.613000px;}
.h1b_c01458{height:17.998650px;}
.h11_c01458{height:42.000000px;}
.h19_c01458{height:59.995500px;}
.h15_c01458{height:65.967817px;}
.hd_c01458{height:65.969963px;}
.h16_c01458{height:65.984224px;}
.h12_c01458{height:66.025867px;}
.h17_c01458{height:66.029693px;}
.h18_c01458{height:71.969646px;}
.h6_c01458{height:71.980017px;}
.h1a_c01458{height:71.994600px;}
.h10_c01458{height:72.000000px;}
.h5_c01458{height:72.024332px;}
.h7_c01458{height:72.032393px;}
.hb_c01458{height:77.964502px;}
.hf_c01458{height:78.000000px;}
.h13_c01458{height:78.030570px;}
.h9_c01458{height:78.035092px;}
.h1c_c01458{height:78.037470px;}
.h3_c01458{height:83.959040px;}
.hc_c01458{height:83.961771px;}
.h14_c01458{height:83.983240px;}
.h4_c01458{height:84.035315px;}
.h8_c01458{height:84.037791px;}
.he_c01458{height:96.000000px;}
.ha_c01458{height:96.027644px;}
.h2_c01458{height:114.000000px;}
.h0_c01458{height:1250.850000px;}
.h1_c01458{height:1251.000000px;}
.w1_c01458{width:894.750000px;}
.w0_c01458{width:895.050000px;}
.x0_c01458{left:0.000000px;}
.x78_c01458{left:1.750500px;}
.x44_c01458{left:6.906482px;}
.x3_c01458{left:41.901000px;}
.xa2_c01458{left:84.938604px;}
.xc2_c01458{left:92.073000px;}
.xb7_c01458{left:93.970500px;}
.xb0_c01458{left:95.266500px;}
.x62_c01458{left:98.440500px;}
.x94_c01458{left:100.902000px;}
.x89_c01458{left:103.378500px;}
.x81_c01458{left:104.988000px;}
.x32_c01458{left:106.807500px;}
.x69_c01458{left:110.119500px;}
.xf_c01458{left:113.263500px;}
.x53_c01458{left:115.239000px;}
.x3a_c01458{left:118.474500px;}
.x1c_c01458{left:123.058500px;}
.xc3_c01458{left:135.934500px;}
.xb8_c01458{left:137.559000px;}
.xb1_c01458{left:139.110000px;}
.xa3_c01458{left:141.481233px;}
.x95_c01458{left:145.030500px;}
.x8a_c01458{left:147.233601px;}
.x82_c01458{left:148.595849px;}
.x75_c01458{left:152.050500px;}
.x6a_c01458{left:153.984000px;}
.x63_c01458{left:155.277000px;}
.x3b_c01458{left:162.594835px;}
.x33_c01458{left:164.199000px;}
.x1d_c01458{left:167.227500px;}
.x10_c01458{left:169.330500px;}
.xc4_c01458{left:176.467500px;}
.xb9_c01458{left:179.457000px;}
.xb2_c01458{left:180.736500px;}
.xa4_c01458{left:181.805796px;}
.x96_c01458{left:187.755000px;}
.x8b_c01458{left:190.152140px;}
.x83_c01458{left:191.178723px;}
.x79_c01458{left:193.498500px;}
.x76_c01458{left:194.628000px;}
.x54_c01458{left:201.461191px;}
.x6f_c01458{left:204.213000px;}
.x64_c01458{left:206.401500px;}
.x1e_c01458{left:210.222000px;}
.x11_c01458{left:212.334000px;}
.x34_c01458{left:215.605500px;}
.xaf_c01458{left:223.830000px;}
.xa0_c01458{left:226.771500px;}
.x9a_c01458{left:229.216842px;}
.x92_c01458{left:231.426000px;}
.x7f_c01458{left:237.234120px;}
.x61_c01458{left:239.760000px;}
.x5a_c01458{left:243.391611px;}
.x50_c01458{left:244.737989px;}
.x45_c01458{left:246.264884px;}
.xb3_c01458{left:247.378500px;}
.x31_c01458{left:250.347465px;}
.x1b_c01458{left:253.287000px;}
.x4_c01458{left:254.857330px;}
.x7a_c01458{left:268.852500px;}
.x5b_c01458{left:273.519462px;}
.x84_c01458{left:275.709108px;}
.xba_c01458{left:277.209000px;}
.x35_c01458{left:280.972500px;}
.xc5_c01458{left:286.995000px;}
.x51_c01458{left:288.207295px;}
.x46_c01458{left:289.451654px;}
.x70_c01458{left:291.937500px;}
.x77_c01458{left:293.733000px;}
.x74_c01458{left:295.110000px;}
.x3c_c01458{left:300.873419px;}
.xa1_c01458{left:302.576120px;}
.x27_c01458{left:305.596365px;}
.xc6_c01458{left:307.152000px;}
.x12_c01458{left:308.796000px;}
.xc1_c01458{left:309.857145px;}
.xbb_c01458{left:310.984500px;}
.x6b_c01458{left:316.039500px;}
.x47_c01458{left:322.628444px;}
.x80_c01458{left:323.882418px;}
.xa5_c01458{left:325.435901px;}
.x52_c01458{left:329.229143px;}
.x28_c01458{left:338.554365px;}
.x8c_c01458{left:341.651988px;}
.x65_c01458{left:350.064000px;}
.x1f_c01458{left:351.514500px;}
.x5_c01458{left:354.735352px;}
.x97_c01458{left:361.449000px;}
.x85_c01458{left:363.894335px;}
.x7b_c01458{left:366.150000px;}
.x36_c01458{left:368.254500px;}
.x9b_c01458{left:371.734681px;}
.x55_c01458{left:375.015963px;}
.x48_c01458{left:376.767750px;}
.x3d_c01458{left:380.894817px;}
.x8d_c01458{left:386.203892px;}
.x6_c01458{left:387.660394px;}
.x71_c01458{left:391.360500px;}
.xc7_c01458{left:395.524500px;}
.x49_c01458{left:398.082414px;}
.xa6_c01458{left:402.953643px;}
.x20_c01458{left:405.024000px;}
.x13_c01458{left:407.667000px;}
.xac_c01458{left:408.888658px;}
.xb4_c01458{left:411.405000px;}
.x66_c01458{left:415.153500px;}
.x8e_c01458{left:417.155409px;}
.x6c_c01458{left:424.053000px;}
.x29_c01458{left:426.107865px;}
.x72_c01458{left:436.440000px;}
.x86_c01458{left:441.924227px;}
.xa7_c01458{left:443.749122px;}
.x7c_c01458{left:444.870000px;}
.x1_c01458{left:446.040000px;}
.x14_c01458{left:451.462500px;}
.x2a_c01458{left:460.414365px;}
.x93_c01458{left:461.958237px;}
.x56_c01458{left:463.930959px;}
.x3e_c01458{left:465.443184px;}
.x37_c01458{left:467.670000px;}
.x7_c01458{left:474.555412px;}
.x4a_c01458{left:475.686732px;}
.x21_c01458{left:481.464000px;}
.x87_c01458{left:496.324272px;}
.x6d_c01458{left:501.544500px;}
.xc8_c01458{left:504.948000px;}
.x8_c01458{left:509.088345px;}
.x2_c01458{left:510.840000px;}
.x8f_c01458{left:517.033431px;}
.x88_c01458{left:518.500573px;}
.x3f_c01458{left:521.945625px;}
.x5c_c01458{left:528.068735px;}
.xbc_c01458{left:529.558500px;}
.xb5_c01458{left:530.793000px;}
.xa8_c01458{left:532.612305px;}
.x38_c01458{left:533.761500px;}
.x2b_c01458{left:536.741865px;}
.x4b_c01458{left:540.484869px;}
.x9c_c01458{left:545.542699px;}
.x22_c01458{left:546.807000px;}
.xc9_c01458{left:549.477000px;}
.x67_c01458{left:557.460000px;}
.x57_c01458{left:560.512281px;}
.xbd_c01458{left:561.706500px;}
.x40_c01458{left:562.868162px;}
.xa9_c01458{left:565.261288px;}
.x9d_c01458{left:579.043165px;}
.x15_c01458{left:582.708000px;}
.x9_c01458{left:586.051305px;}
.x68_c01458{left:590.377500px;}
.x4c_c01458{left:595.758540px;}
.x2c_c01458{left:600.848865px;}
.x58_c01458{left:603.835415px;}
.x73_c01458{left:608.913000px;}
.x16_c01458{left:615.367500px;}
.xbe_c01458{left:616.548000px;}
.x7d_c01458{left:618.163500px;}
.x39_c01458{left:620.689500px;}
.x2d_c01458{left:634.615365px;}
.x23_c01458{left:636.045000px;}
.x4d_c01458{left:641.199054px;}
.x6e_c01458{left:643.536000px;}
.x5d_c01458{left:646.741528px;}
.x17_c01458{left:648.601500px;}
.x7e_c01458{left:652.200000px;}
.x98_c01458{left:656.986500px;}
.xa_c01458{left:661.024257px;}
.xaa_c01458{left:665.180443px;}
.x2e_c01458{left:676.741365px;}
.x4e_c01458{left:682.114098px;}
.x5e_c01458{left:689.621169px;}
.xb_c01458{left:693.940308px;}
.x90_c01458{left:702.345433px;}
.xb6_c01458{left:705.676500px;}
.x18_c01458{left:713.782500px;}
.xbf_c01458{left:714.856500px;}
.xc_c01458{left:726.649566px;}
.x41_c01458{left:728.239624px;}
.x9e_c01458{left:731.202354px;}
.x19_c01458{left:736.959000px;}
.xc0_c01458{left:748.599000px;}
.xab_c01458{left:752.450865px;}
.xad_c01458{left:754.228984px;}
.x24_c01458{left:755.706000px;}
.xd_c01458{left:759.259923px;}
.x2f_c01458{left:765.350865px;}
.x59_c01458{left:767.120966px;}
.x42_c01458{left:771.435386px;}
.x9f_c01458{left:776.536474px;}
.x5f_c01458{left:777.628150px;}
.x4f_c01458{left:781.139474px;}
.x25_c01458{left:788.026500px;}
.x30_c01458{left:796.942365px;}
.x43_c01458{left:804.916371px;}
.x60_c01458{left:809.464242px;}
.xae_c01458{left:820.059688px;}
.x91_c01458{left:823.007651px;}
.x1a_c01458{left:834.189000px;}
.x99_c01458{left:841.483500px;}
.x26_c01458{left:843.513000px;}
.xe_c01458{left:846.964131px;}
@media print{
.v0_c01458{vertical-align:0.000000pt;}
.ls0_c01458{letter-spacing:0.000000pt;}
.ws0_c01458{word-spacing:0.000000pt;}
.fs19_c01458{font-size:15.998800pt;}
.fsf_c01458{font-size:37.333333pt;}
.fs17_c01458{font-size:53.329333pt;}
.fs13_c01458{font-size:58.638060pt;}
.fsb_c01458{font-size:58.639967pt;}
.fs14_c01458{font-size:58.652644pt;}
.fs10_c01458{font-size:58.689659pt;}
.fs15_c01458{font-size:58.693061pt;}
.fs16_c01458{font-size:63.973018pt;}
.fs4_c01458{font-size:63.982238pt;}
.fs18_c01458{font-size:63.995200pt;}
.fse_c01458{font-size:64.000000pt;}
.fs3_c01458{font-size:64.021628pt;}
.fs5_c01458{font-size:64.028794pt;}
.fs9_c01458{font-size:69.301779pt;}
.fsd_c01458{font-size:69.333333pt;}
.fs11_c01458{font-size:69.360507pt;}
.fs7_c01458{font-size:69.364526pt;}
.fs1a_c01458{font-size:69.366640pt;}
.fs1_c01458{font-size:74.630258pt;}
.fsa_c01458{font-size:74.632686pt;}
.fs12_c01458{font-size:74.651769pt;}
.fs2_c01458{font-size:74.698057pt;}
.fs6_c01458{font-size:74.700259pt;}
.fsc_c01458{font-size:85.333333pt;}
.fs8_c01458{font-size:85.357906pt;}
.fs0_c01458{font-size:101.333333pt;}
.y0_c01458{bottom:0.000000pt;}
.yfe_c01458{bottom:31.563979pt;}
.yfd_c01458{bottom:32.791000pt;}
.yfc_c01458{bottom:35.806225pt;}
.yfb_c01458{bottom:38.241379pt;}
.yfa_c01458{bottom:38.796816pt;}
.yf9_c01458{bottom:41.842463pt;}
.yf8_c01458{bottom:42.959372pt;}
.yf7_c01458{bottom:44.168000pt;}
.yf6_c01458{bottom:70.810067pt;}
.yf5_c01458{bottom:71.831027pt;}
.yf4_c01458{bottom:73.439400pt;}
.yf3_c01458{bottom:89.829907pt;}
.yf2_c01458{bottom:90.729707pt;}
.yf1_c01458{bottom:91.600947pt;}
.yf0_c01458{bottom:93.351267pt;}
.yef_c01458{bottom:94.813707pt;}
.yee_c01458{bottom:95.670987pt;}
.yed_c01458{bottom:97.104427pt;}
.yec_c01458{bottom:98.898587pt;}
.yeb_c01458{bottom:101.499627pt;}
.yea_c01458{bottom:102.400307pt;}
.ye9_c01458{bottom:105.007027pt;}
.ye8_c01458{bottom:106.124307pt;}
.ye7_c01458{bottom:107.286667pt;}
.ye6_c01458{bottom:121.553333pt;}
.ye5_c01458{bottom:125.220000pt;}
.ye4_c01458{bottom:126.061333pt;}
.ye3_c01458{bottom:129.138667pt;}
.ye2_c01458{bottom:132.266667pt;}
.ye1_c01458{bottom:133.366667pt;}
.ye0_c01458{bottom:135.084000pt;}
.ydf_c01458{bottom:136.157333pt;}
.yde_c01458{bottom:137.288000pt;}
.ydd_c01458{bottom:162.729333pt;}
.ydc_c01458{bottom:178.666583pt;}
.ydb_c01458{bottom:180.191119pt;}
.yda_c01458{bottom:182.770231pt;}
.yd8_c01458{bottom:183.030840pt;}
.yd7_c01458{bottom:184.896596pt;}
.yd6_c01458{bottom:187.031449pt;}
.yd5_c01458{bottom:187.729480pt;}
.yd9_c01458{bottom:188.184903pt;}
.yd4_c01458{bottom:189.628152pt;}
.yd3_c01458{bottom:190.500421pt;}
.yd2_c01458{bottom:192.157175pt;}
.yd1_c01458{bottom:193.120960pt;}
.yd0_c01458{bottom:195.226469pt;}
.ycf_c01458{bottom:196.088728pt;}
.yce_c01458{bottom:197.296597pt;}
.ycd_c01458{bottom:226.471771pt;}
.ycc_c01458{bottom:228.961012pt;}
.ycb_c01458{bottom:231.861333pt;}
.yca_c01458{bottom:246.292563pt;}
.yc9_c01458{bottom:247.664032pt;}
.yc8_c01458{bottom:252.267224pt;}
.yc7_c01458{bottom:253.280696pt;}
.yc6_c01458{bottom:255.883917pt;}
.yc5_c01458{bottom:258.538819pt;}
.yc4_c01458{bottom:259.559317pt;}
.yc3_c01458{bottom:262.850336pt;}
.yc2_c01458{bottom:269.776000pt;}
.yc1_c01458{bottom:275.220493pt;}
.yc0_c01458{bottom:276.941813pt;}
.ybf_c01458{bottom:280.140413pt;}
.ybe_c01458{bottom:285.405133pt;}
.ybd_c01458{bottom:286.562933pt;}
.ybc_c01458{bottom:288.021413pt;}
.ybb_c01458{bottom:289.498693pt;}
.yba_c01458{bottom:292.653253pt;}
.yb9_c01458{bottom:293.792573pt;}
.yb8_c01458{bottom:294.969333pt;}
.yb7_c01458{bottom:317.937549pt;}
.yb6_c01458{bottom:321.815137pt;}
.yb5_c01458{bottom:322.551821pt;}
.yb4_c01458{bottom:325.937333pt;}
.yb3_c01458{bottom:339.758059pt;}
.yb2_c01458{bottom:340.726464pt;}
.yb1_c01458{bottom:343.193664pt;}
.yb0_c01458{bottom:343.781525pt;}
.yaf_c01458{bottom:345.072576pt;}
.yae_c01458{bottom:345.997376pt;}
.yad_c01458{bottom:348.470037pt;}
.yac_c01458{bottom:349.961152pt;}
.yab_c01458{bottom:351.313856pt;}
.yaa_c01458{bottom:352.195136pt;}
.ya9_c01458{bottom:353.463659pt;}
.ya8_c01458{bottom:354.409536pt;}
.ya7_c01458{bottom:357.777301pt;}
.ya6_c01458{bottom:358.999317pt;}
.ya5_c01458{bottom:360.248000pt;}
.ya4_c01458{bottom:378.893280pt;}
.ya3_c01458{bottom:379.682560pt;}
.ya2_c01458{bottom:380.456107pt;}
.ya1_c01458{bottom:381.618720pt;}
.ya0_c01458{bottom:384.395893pt;}
.y9f_c01458{bottom:387.534507pt;}
.y9e_c01458{bottom:390.543040pt;}
.y9d_c01458{bottom:392.058613pt;}
.y9c_c01458{bottom:393.610667pt;}
.y9b_c01458{bottom:412.478320pt;}
.y9a_c01458{bottom:414.690837pt;}
.y99_c01458{bottom:415.628645pt;}
.y98_c01458{bottom:416.814064pt;}
.y97_c01458{bottom:419.278885pt;}
.y96_c01458{bottom:437.959797pt;}
.y95_c01458{bottom:439.828368pt;}
.y94_c01458{bottom:440.675499pt;}
.y93_c01458{bottom:444.472299pt;}
.y92_c01458{bottom:444.988581pt;}
.y91_c01458{bottom:446.947835pt;}
.y90_c01458{bottom:448.568960pt;}
.y8f_c01458{bottom:449.369461pt;}
.y8e_c01458{bottom:451.244939pt;}
.y8d_c01458{bottom:452.301397pt;}
.y8c_c01458{bottom:453.407173pt;}
.y8b_c01458{bottom:456.017333pt;}
.y8a_c01458{bottom:484.901333pt;}
.y89_c01458{bottom:487.280000pt;}
.y88_c01458{bottom:488.301333pt;}
.y87_c01458{bottom:489.390667pt;}
.y86_c01458{bottom:492.480000pt;}
.y85_c01458{bottom:499.420000pt;}
.y84_c01458{bottom:504.576000pt;}
.y83_c01458{bottom:509.328000pt;}
.y82_c01458{bottom:510.570667pt;}
.y81_c01458{bottom:513.310667pt;}
.y80_c01458{bottom:515.728000pt;}
.y7f_c01458{bottom:517.136000pt;}
.y7e_c01458{bottom:518.649333pt;}
.y7d_c01458{bottom:535.870667pt;}
.y7c_c01458{bottom:538.541333pt;}
.y7b_c01458{bottom:539.784000pt;}
.y7a_c01458{bottom:541.918667pt;}
.y79_c01458{bottom:544.894667pt;}
.y78_c01458{bottom:547.909333pt;}
.y77_c01458{bottom:549.360000pt;}
.y76_c01458{bottom:550.569333pt;}
.y75_c01458{bottom:564.744000pt;}
.y74_c01458{bottom:567.040000pt;}
.y73_c01458{bottom:567.801333pt;}
.y72_c01458{bottom:570.036000pt;}
.y71_c01458{bottom:571.090667pt;}
.y70_c01458{bottom:572.594667pt;}
.y6f_c01458{bottom:573.625333pt;}
.y6e_c01458{bottom:575.914667pt;}
.y6d_c01458{bottom:577.096000pt;}
.y6c_c01458{bottom:578.409333pt;}
.y6b_c01458{bottom:603.724000pt;}
.y6a_c01458{bottom:623.698125pt;}
.y69_c01458{bottom:624.660921pt;}
.y68_c01458{bottom:627.323717pt;}
.y67_c01458{bottom:628.621449pt;}
.y66_c01458{bottom:629.936077pt;}
.y65_c01458{bottom:632.211345pt;}
.y64_c01458{bottom:634.529701pt;}
.y63_c01458{bottom:635.918757pt;}
.y62_c01458{bottom:639.912285pt;}
.y61_c01458{bottom:640.823589pt;}
.y60_c01458{bottom:654.974701pt;}
.y5f_c01458{bottom:656.948321pt;}
.y5e_c01458{bottom:660.451249pt;}
.y5d_c01458{bottom:661.742825pt;}
.y5c_c01458{bottom:663.014909pt;}
.y5b_c01458{bottom:665.850797pt;}
.y5a_c01458{bottom:668.461581pt;}
.y59_c01458{bottom:670.403257pt;}
.y58_c01458{bottom:673.557617pt;}
.y57_c01458{bottom:676.089333pt;}
.y56_c01458{bottom:701.235153pt;}
.y55_c01458{bottom:702.913041pt;}
.y54_c01458{bottom:704.692129pt;}
.y53_c01458{bottom:720.103409pt;}
.y52_c01458{bottom:723.011061pt;}
.y51_c01458{bottom:724.212437pt;}
.y50_c01458{bottom:725.546693pt;}
.y4f_c01458{bottom:727.169677pt;}
.y4e_c01458{bottom:728.105029pt;}
.y4d_c01458{bottom:729.072325pt;}
.y4c_c01458{bottom:731.350997pt;}
.y4b_c01458{bottom:731.976853pt;}
.y4a_c01458{bottom:733.566529pt;}
.y49_c01458{bottom:734.540689pt;}
.y48_c01458{bottom:735.808769pt;}
.y47_c01458{bottom:742.836977pt;}
.y46_c01458{bottom:752.269549pt;}
.y45_c01458{bottom:753.252641pt;}
.y44_c01458{bottom:754.520985pt;}
.y43_c01458{bottom:756.469833pt;}
.y42_c01458{bottom:759.376737pt;}
.y41_c01458{bottom:760.578333pt;}
.y40_c01458{bottom:762.237397pt;}
.y3f_c01458{bottom:764.719965pt;}
.y3e_c01458{bottom:767.069609pt;}
.y3d_c01458{bottom:769.568545pt;}
.y3c_c01458{bottom:771.129841pt;}
.y3b_c01458{bottom:772.425333pt;}
.y3a_c01458{bottom:788.245184pt;}
.y39_c01458{bottom:790.099648pt;}
.y38_c01458{bottom:791.509600pt;}
.y37_c01458{bottom:793.630464pt;}
.y36_c01458{bottom:795.492480pt;}
.y35_c01458{bottom:796.886976pt;}
.y34_c01458{bottom:797.983648pt;}
.y33_c01458{bottom:799.208000pt;}
.y32_c01458{bottom:829.300120pt;}
.y31_c01458{bottom:847.313560pt;}
.y30_c01458{bottom:848.156000pt;}
.y2f_c01458{bottom:850.518920pt;}
.y2e_c01458{bottom:851.642280pt;}
.y2d_c01458{bottom:852.542720pt;}
.y2c_c01458{bottom:854.252240pt;}
.y2b_c01458{bottom:856.287640pt;}
.y2a_c01458{bottom:857.202480pt;}
.y29_c01458{bottom:859.537240pt;}
.y28_c01458{bottom:860.416120pt;}
.y27_c01458{bottom:861.835600pt;}
.y26_c01458{bottom:877.437213pt;}
.y25_c01458{bottom:878.916853pt;}
.y24_c01458{bottom:879.778733pt;}
.y23_c01458{bottom:882.969693pt;}
.y22_c01458{bottom:885.349373pt;}
.y21_c01458{bottom:887.091853pt;}
.y20_c01458{bottom:889.130253pt;}
.y1f_c01458{bottom:890.557173pt;}
.y1e_c01458{bottom:894.324973pt;}
.y1d_c01458{bottom:895.471493pt;}
.y1c_c01458{bottom:896.649333pt;}
.y1b_c01458{bottom:925.457333pt;}
.y1a_c01458{bottom:940.227944pt;}
.y19_c01458{bottom:942.475037pt;}
.y18_c01458{bottom:943.010672pt;}
.y17_c01458{bottom:944.517077pt;}
.y16_c01458{bottom:945.285152pt;}
.y15_c01458{bottom:946.039949pt;}
.y14_c01458{bottom:949.073179pt;}
.y13_c01458{bottom:950.085341pt;}
.y12_c01458{bottom:952.370360pt;}
.y11_c01458{bottom:954.599704pt;}
.y10_c01458{bottom:955.593563pt;}
.yf_c01458{bottom:956.889333pt;}
.ye_c01458{bottom:987.370667pt;}
.yd_c01458{bottom:1003.098837pt;}
.yc_c01458{bottom:1005.596032pt;}
.yb_c01458{bottom:1006.524544pt;}
.ya_c01458{bottom:1007.455872pt;}
.y9_c01458{bottom:1008.393088pt;}
.y8_c01458{bottom:1010.527787pt;}
.y7_c01458{bottom:1012.719147pt;}
.y6_c01458{bottom:1013.702400pt;}
.y5_c01458{bottom:1016.176555pt;}
.y4_c01458{bottom:1017.114027pt;}
.y3_c01458{bottom:1019.957845pt;}
.y2_c01458{bottom:1026.021333pt;}
.y1_c01458{bottom:1079.656000pt;}
.h1b_c01458{height:15.998800pt;}
.h11_c01458{height:37.333333pt;}
.h19_c01458{height:53.329333pt;}
.h15_c01458{height:58.638060pt;}
.hd_c01458{height:58.639967pt;}
.h16_c01458{height:58.652644pt;}
.h12_c01458{height:58.689659pt;}
.h17_c01458{height:58.693061pt;}
.h18_c01458{height:63.973018pt;}
.h6_c01458{height:63.982238pt;}
.h1a_c01458{height:63.995200pt;}
.h10_c01458{height:64.000000pt;}
.h5_c01458{height:64.021628pt;}
.h7_c01458{height:64.028794pt;}
.hb_c01458{height:69.301779pt;}
.hf_c01458{height:69.333333pt;}
.h13_c01458{height:69.360507pt;}
.h9_c01458{height:69.364526pt;}
.h1c_c01458{height:69.366640pt;}
.h3_c01458{height:74.630258pt;}
.hc_c01458{height:74.632686pt;}
.h14_c01458{height:74.651769pt;}
.h4_c01458{height:74.698057pt;}
.h8_c01458{height:74.700259pt;}
.he_c01458{height:85.333333pt;}
.ha_c01458{height:85.357906pt;}
.h2_c01458{height:101.333333pt;}
.h0_c01458{height:1111.866667pt;}
.h1_c01458{height:1112.000000pt;}
.w1_c01458{width:795.333333pt;}
.w0_c01458{width:795.600000pt;}
.x0_c01458{left:0.000000pt;}
.x78_c01458{left:1.556000pt;}
.x44_c01458{left:6.139095pt;}
.x3_c01458{left:37.245333pt;}
.xa2_c01458{left:75.500981pt;}
.xc2_c01458{left:81.842667pt;}
.xb7_c01458{left:83.529333pt;}
.xb0_c01458{left:84.681333pt;}
.x62_c01458{left:87.502667pt;}
.x94_c01458{left:89.690667pt;}
.x89_c01458{left:91.892000pt;}
.x81_c01458{left:93.322667pt;}
.x32_c01458{left:94.940000pt;}
.x69_c01458{left:97.884000pt;}
.xf_c01458{left:100.678667pt;}
.x53_c01458{left:102.434667pt;}
.x3a_c01458{left:105.310667pt;}
.x1c_c01458{left:109.385333pt;}
.xc3_c01458{left:120.830667pt;}
.xb8_c01458{left:122.274667pt;}
.xb1_c01458{left:123.653333pt;}
.xa3_c01458{left:125.761096pt;}
.x95_c01458{left:128.916000pt;}
.x8a_c01458{left:130.874312pt;}
.x82_c01458{left:132.085199pt;}
.x75_c01458{left:135.156000pt;}
.x6a_c01458{left:136.874667pt;}
.x63_c01458{left:138.024000pt;}
.x3b_c01458{left:144.528743pt;}
.x33_c01458{left:145.954667pt;}
.x1d_c01458{left:148.646667pt;}
.x10_c01458{left:150.516000pt;}
.xc4_c01458{left:156.860000pt;}
.xb9_c01458{left:159.517333pt;}
.xb2_c01458{left:160.654667pt;}
.xa4_c01458{left:161.605152pt;}
.x96_c01458{left:166.893333pt;}
.x8b_c01458{left:169.024124pt;}
.x83_c01458{left:169.936643pt;}
.x79_c01458{left:171.998667pt;}
.x76_c01458{left:173.002667pt;}
.x54_c01458{left:179.076615pt;}
.x6f_c01458{left:181.522667pt;}
.x64_c01458{left:183.468000pt;}
.x1e_c01458{left:186.864000pt;}
.x11_c01458{left:188.741333pt;}
.x34_c01458{left:191.649333pt;}
.xaf_c01458{left:198.960000pt;}
.xa0_c01458{left:201.574667pt;}
.x9a_c01458{left:203.748304pt;}
.x92_c01458{left:205.712000pt;}
.x7f_c01458{left:210.874773pt;}
.x61_c01458{left:213.120000pt;}
.x5a_c01458{left:216.348099pt;}
.x50_c01458{left:217.544879pt;}
.x45_c01458{left:218.902119pt;}
.xb3_c01458{left:219.892000pt;}
.x31_c01458{left:222.531080pt;}
.x1b_c01458{left:225.144000pt;}
.x4_c01458{left:226.539849pt;}
.x7a_c01458{left:238.980000pt;}
.x5b_c01458{left:243.128411pt;}
.x84_c01458{left:245.074763pt;}
.xba_c01458{left:246.408000pt;}
.x35_c01458{left:249.753333pt;}
.xc5_c01458{left:255.106667pt;}
.x51_c01458{left:256.184263pt;}
.x46_c01458{left:257.290359pt;}
.x70_c01458{left:259.500000pt;}
.x77_c01458{left:261.096000pt;}
.x74_c01458{left:262.320000pt;}
.x3c_c01458{left:267.443039pt;}
.xa1_c01458{left:268.956551pt;}
.x27_c01458{left:271.641213pt;}
.xc6_c01458{left:273.024000pt;}
.x12_c01458{left:274.485333pt;}
.xc1_c01458{left:275.428573pt;}
.xbb_c01458{left:276.430667pt;}
.x6b_c01458{left:280.924000pt;}
.x47_c01458{left:286.780839pt;}
.x80_c01458{left:287.895483pt;}
.xa5_c01458{left:289.276356pt;}
.x52_c01458{left:292.648127pt;}
.x28_c01458{left:300.937213pt;}
.x8c_c01458{left:303.690656pt;}
.x65_c01458{left:311.168000pt;}
.x1f_c01458{left:312.457333pt;}
.x5_c01458{left:315.320313pt;}
.x97_c01458{left:321.288000pt;}
.x85_c01458{left:323.461631pt;}
.x7b_c01458{left:325.466667pt;}
.x36_c01458{left:327.337333pt;}
.x9b_c01458{left:330.430828pt;}
.x55_c01458{left:333.347523pt;}
.x48_c01458{left:334.904667pt;}
.x3d_c01458{left:338.573171pt;}
.x8d_c01458{left:343.292348pt;}
.x6_c01458{left:344.587017pt;}
.x71_c01458{left:347.876000pt;}
.xc7_c01458{left:351.577333pt;}
.x49_c01458{left:353.851035pt;}
.xa6_c01458{left:358.181016pt;}
.x20_c01458{left:360.021333pt;}
.x13_c01458{left:362.370667pt;}
.xac_c01458{left:363.456585pt;}
.xb4_c01458{left:365.693333pt;}
.x66_c01458{left:369.025333pt;}
.x8e_c01458{left:370.804808pt;}
.x6c_c01458{left:376.936000pt;}
.x29_c01458{left:378.762547pt;}
.x72_c01458{left:387.946667pt;}
.x86_c01458{left:392.821535pt;}
.xa7_c01458{left:394.443664pt;}
.x7c_c01458{left:395.440000pt;}
.x1_c01458{left:396.480000pt;}
.x14_c01458{left:401.300000pt;}
.x2a_c01458{left:409.257213pt;}
.x93_c01458{left:410.629544pt;}
.x56_c01458{left:412.383075pt;}
.x3e_c01458{left:413.727275pt;}
.x37_c01458{left:415.706667pt;}
.x7_c01458{left:421.827033pt;}
.x4a_c01458{left:422.832651pt;}
.x21_c01458{left:427.968000pt;}
.x87_c01458{left:441.177131pt;}
.x6d_c01458{left:445.817333pt;}
.xc8_c01458{left:448.842667pt;}
.x8_c01458{left:452.522973pt;}
.x2_c01458{left:454.080000pt;}
.x8f_c01458{left:459.585272pt;}
.x88_c01458{left:460.889399pt;}
.x3f_c01458{left:463.951667pt;}
.x5c_c01458{left:469.394431pt;}
.xbc_c01458{left:470.718667pt;}
.xb5_c01458{left:471.816000pt;}
.xa8_c01458{left:473.433160pt;}
.x38_c01458{left:474.454667pt;}
.x2b_c01458{left:477.103880pt;}
.x4b_c01458{left:480.430995pt;}
.x9c_c01458{left:484.926844pt;}
.x22_c01458{left:486.050667pt;}
.xc9_c01458{left:488.424000pt;}
.x67_c01458{left:495.520000pt;}
.x57_c01458{left:498.233139pt;}
.xbd_c01458{left:499.294667pt;}
.x40_c01458{left:500.327255pt;}
.xa9_c01458{left:502.454479pt;}
.x9d_c01458{left:514.705036pt;}
.x15_c01458{left:517.962667pt;}
.x9_c01458{left:520.934493pt;}
.x68_c01458{left:524.780000pt;}
.x4c_c01458{left:529.563147pt;}
.x2c_c01458{left:534.087880pt;}
.x58_c01458{left:536.742591pt;}
.x73_c01458{left:541.256000pt;}
.x16_c01458{left:546.993333pt;}
.xbe_c01458{left:548.042667pt;}
.x7d_c01458{left:549.478667pt;}
.x39_c01458{left:551.724000pt;}
.x2d_c01458{left:564.102547pt;}
.x23_c01458{left:565.373333pt;}
.x4d_c01458{left:569.954715pt;}
.x6e_c01458{left:572.032000pt;}
.x5d_c01458{left:574.881359pt;}
.x17_c01458{left:576.534667pt;}
.x7e_c01458{left:579.733333pt;}
.x98_c01458{left:583.988000pt;}
.xa_c01458{left:587.577117pt;}
.xaa_c01458{left:591.271505pt;}
.x2e_c01458{left:601.547880pt;}
.x4e_c01458{left:606.323643pt;}
.x5e_c01458{left:612.996595pt;}
.xb_c01458{left:616.835829pt;}
.x90_c01458{left:624.307052pt;}
.xb6_c01458{left:627.268000pt;}
.x18_c01458{left:634.473333pt;}
.xbf_c01458{left:635.428000pt;}
.xc_c01458{left:645.910725pt;}
.x41_c01458{left:647.324111pt;}
.x9e_c01458{left:649.957648pt;}
.x19_c01458{left:655.074667pt;}
.xc0_c01458{left:665.421333pt;}
.xab_c01458{left:668.845213pt;}
.xad_c01458{left:670.425764pt;}
.x24_c01458{left:671.738667pt;}
.xd_c01458{left:674.897709pt;}
.x2f_c01458{left:680.311880pt;}
.x59_c01458{left:681.885303pt;}
.x42_c01458{left:685.720343pt;}
.x9f_c01458{left:690.254644pt;}
.x5f_c01458{left:691.225023pt;}
.x4f_c01458{left:694.346199pt;}
.x25_c01458{left:700.468000pt;}
.x30_c01458{left:708.393213pt;}
.x43_c01458{left:715.481219pt;}
.x60_c01458{left:719.523771pt;}
.xae_c01458{left:728.941945pt;}
.x91_c01458{left:731.562356pt;}
.x1a_c01458{left:741.501333pt;}
.x99_c01458{left:747.985333pt;}
.x26_c01458{left:749.789333pt;}
.xe_c01458{left:752.857005pt;}
}





/* 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_c01459 {
    display:none;
  }
  .loading-indicator_c01459.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01459 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_c01459 { 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_c01459" -> "#page-container .classname_c01459")
 */
.pf_c01459 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01459 { /* 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_c01459.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01459 { /* 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_c01459 { /* 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_c01459 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01459 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01459 {overflow:visible;}
  }
}
.c_c01459 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01459 { /* 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_c01459:after { /* webkit #35443 */
  content: '';
}
.t_c01459:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01459 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 */
}
.__c01459 { /* 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_c01459 { /* info for Javascript */
  display:none;
}
.l_c01459 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01459 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01459 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01459: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_c01459 {
    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_c01459.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01459.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_c01459 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01459{font-family:sans-serif;visibility:hidden;}
.sc__c01459{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01459{-webkit-text-stroke:0px transparent;}
}
.y0_c01459{bottom:0.000000px;}
.h0_c01459{height:1250.850000px;}
.h1_c01459{height:1251.000000px;}
.w1_c01459{width:894.750000px;}
.w0_c01459{width:895.050000px;}
.x0_c01459{left:0.000000px;}
@media print{
.y0_c01459{bottom:0.000000pt;}
.h0_c01459{height:1111.866667pt;}
.h1_c01459{height:1112.000000pt;}
.w1_c01459{width:795.333333pt;}
.w0_c01459{width:795.600000pt;}
.x0_c01459{left:0.000000pt;}
}





/* 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_c01460 {
    display:none;
  }
  .loading-indicator_c01460.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01460 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_c01460 { 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_c01460" -> "#page-container .classname_c01460")
 */
.pf_c01460 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01460 { /* 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_c01460.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01460 { /* 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_c01460 { /* 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_c01460 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01460 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01460 {overflow:visible;}
  }
}
.c_c01460 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01460 { /* 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_c01460:after { /* webkit #35443 */
  content: '';
}
.t_c01460:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01460 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 */
}
.__c01460 { /* 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_c01460 { /* info for Javascript */
  display:none;
}
.l_c01460 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01460 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01460 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01460: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_c01460 {
    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_c01460.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01460.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_c01460 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01460{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01460;src:url('chunks/assets/font_c605e72f209fc835e906f064.woff2')format("woff");}.ff1_c01460{font-family:ff1_c01460;line-height:1.000000;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;}
.m59_c01460{transform:matrix(0.007485,0.000067,-0.002250,0.249990,0,0);-ms-transform:matrix(0.007485,0.000067,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.007485,0.000067,-0.002250,0.249990,0,0);}
.m1c_c01460{transform:matrix(0.047730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.047730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.047730,0.000000,0.000000,0.250000,0,0);}
.m82_c01460{transform:matrix(0.105596,0.000950,-0.002250,0.249990,0,0);-ms-transform:matrix(0.105596,0.000950,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.105596,0.000950,-0.002250,0.249990,0,0);}
.m6a_c01460{transform:matrix(0.116305,0.001047,-0.002250,0.249990,0,0);-ms-transform:matrix(0.116305,0.001047,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.116305,0.001047,-0.002250,0.249990,0,0);}
.m5d_c01460{transform:matrix(0.123530,0.001112,-0.002250,0.249990,0,0);-ms-transform:matrix(0.123530,0.001112,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.123530,0.001112,-0.002250,0.249990,0,0);}
.m9b_c01460{transform:matrix(0.137145,0.001646,-0.003000,0.249982,0,0);-ms-transform:matrix(0.137145,0.001646,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.137145,0.001646,-0.003000,0.249982,0,0);}
.m1e_c01460{transform:matrix(0.137155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137155,0.000000,0.000000,0.250000,0,0);}
.m1f_c01460{transform:matrix(0.138200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138200,0.000000,0.000000,0.250000,0,0);}
.m76_c01460{transform:matrix(0.143184,0.001289,-0.002250,0.249990,0,0);-ms-transform:matrix(0.143184,0.001289,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.143184,0.001289,-0.002250,0.249990,0,0);}
.m77_c01460{transform:matrix(0.144844,0.001304,-0.002250,0.249990,0,0);-ms-transform:matrix(0.144844,0.001304,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.144844,0.001304,-0.002250,0.249990,0,0);}
.m5_c01460{transform:matrix(0.145540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145540,0.000000,0.000000,0.250000,0,0);}
.m2a_c01460{transform:matrix(0.148579,0.001337,-0.002250,0.249990,0,0);-ms-transform:matrix(0.148579,0.001337,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.148579,0.001337,-0.002250,0.249990,0,0);}
.m2_c01460{transform:matrix(0.152345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152345,0.000000,0.000000,0.250000,0,0);}
.m45_c01460{transform:matrix(0.154152,0.001542,-0.002500,0.249988,0,0);-ms-transform:matrix(0.154152,0.001542,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.154152,0.001542,-0.002500,0.249988,0,0);}
.m60_c01460{transform:matrix(0.156464,0.001408,-0.002250,0.249990,0,0);-ms-transform:matrix(0.156464,0.001408,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.156464,0.001408,-0.002250,0.249990,0,0);}
.m5b_c01460{transform:matrix(0.157054,0.001413,-0.002250,0.249990,0,0);-ms-transform:matrix(0.157054,0.001413,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.157054,0.001413,-0.002250,0.249990,0,0);}
.m6b_c01460{transform:matrix(0.157524,0.001418,-0.002250,0.249990,0,0);-ms-transform:matrix(0.157524,0.001418,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.157524,0.001418,-0.002250,0.249990,0,0);}
.m0_c01460{transform:matrix(0.158815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158815,0.000000,0.000000,0.250000,0,0);}
.m4c_c01460{transform:matrix(0.161167,0.001612,-0.002500,0.249988,0,0);-ms-transform:matrix(0.161167,0.001612,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.161167,0.001612,-0.002500,0.249988,0,0);}
.m5a_c01460{transform:matrix(0.166583,0.001499,-0.002250,0.249990,0,0);-ms-transform:matrix(0.166583,0.001499,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.166583,0.001499,-0.002250,0.249990,0,0);}
.m50_c01460{transform:matrix(0.166877,0.001669,-0.002500,0.249988,0,0);-ms-transform:matrix(0.166877,0.001669,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.166877,0.001669,-0.002500,0.249988,0,0);}
.m5c_c01460{transform:matrix(0.176268,0.001586,-0.002250,0.249990,0,0);-ms-transform:matrix(0.176268,0.001586,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.176268,0.001586,-0.002250,0.249990,0,0);}
.m9c_c01460{transform:matrix(0.183402,0.002201,-0.003000,0.249982,0,0);-ms-transform:matrix(0.183402,0.002201,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.183402,0.002201,-0.003000,0.249982,0,0);}
.m3a_c01460{transform:matrix(0.183928,0.001655,-0.002250,0.249990,0,0);-ms-transform:matrix(0.183928,0.001655,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.183928,0.001655,-0.002250,0.249990,0,0);}
.m8e_c01460{transform:matrix(0.185557,0.001670,-0.002250,0.249990,0,0);-ms-transform:matrix(0.185557,0.001670,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.185557,0.001670,-0.002250,0.249990,0,0);}
.m5e_c01460{transform:matrix(0.186022,0.001674,-0.002250,0.249990,0,0);-ms-transform:matrix(0.186022,0.001674,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.186022,0.001674,-0.002250,0.249990,0,0);}
.m2b_c01460{transform:matrix(0.195967,0.001764,-0.002250,0.249990,0,0);-ms-transform:matrix(0.195967,0.001764,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.195967,0.001764,-0.002250,0.249990,0,0);}
.m75_c01460{transform:matrix(0.198487,0.001786,-0.002250,0.249990,0,0);-ms-transform:matrix(0.198487,0.001786,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.198487,0.001786,-0.002250,0.249990,0,0);}
.m46_c01460{transform:matrix(0.199255,0.001993,-0.002500,0.249988,0,0);-ms-transform:matrix(0.199255,0.001993,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.199255,0.001993,-0.002500,0.249988,0,0);}
.m5f_c01460{transform:matrix(0.199527,0.001796,-0.002250,0.249990,0,0);-ms-transform:matrix(0.199527,0.001796,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.199527,0.001796,-0.002250,0.249990,0,0);}
.m61_c01460{transform:matrix(0.200567,0.001805,-0.002250,0.249990,0,0);-ms-transform:matrix(0.200567,0.001805,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.200567,0.001805,-0.002250,0.249990,0,0);}
.m9e_c01460{transform:matrix(0.204005,0.002448,-0.003000,0.249982,0,0);-ms-transform:matrix(0.204005,0.002448,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.204005,0.002448,-0.003000,0.249982,0,0);}
.m43_c01460{transform:matrix(0.204182,0.001838,-0.002250,0.249990,0,0);-ms-transform:matrix(0.204182,0.001838,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.204182,0.001838,-0.002250,0.249990,0,0);}
.m83_c01460{transform:matrix(0.207972,0.001872,-0.002250,0.249990,0,0);-ms-transform:matrix(0.207972,0.001872,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.207972,0.001872,-0.002250,0.249990,0,0);}
.ma0_c01460{transform:matrix(0.208660,0.002504,-0.003000,0.249982,0,0);-ms-transform:matrix(0.208660,0.002504,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.208660,0.002504,-0.003000,0.249982,0,0);}
.m94_c01460{transform:matrix(0.208667,0.001878,-0.002250,0.249990,0,0);-ms-transform:matrix(0.208667,0.001878,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.208667,0.001878,-0.002250,0.249990,0,0);}
.m26_c01460{transform:matrix(0.208675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208675,0.000000,0.000000,0.250000,0,0);}
.m8c_c01460{transform:matrix(0.209377,0.001884,-0.002250,0.249990,0,0);-ms-transform:matrix(0.209377,0.001884,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.209377,0.001884,-0.002250,0.249990,0,0);}
.m27_c01460{transform:matrix(0.211870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211870,0.000000,0.000000,0.250000,0,0);}
.m74_c01460{transform:matrix(0.212421,0.001912,-0.002250,0.249990,0,0);-ms-transform:matrix(0.212421,0.001912,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.212421,0.001912,-0.002250,0.249990,0,0);}
.m89_c01460{transform:matrix(0.212601,0.001913,-0.002250,0.249990,0,0);-ms-transform:matrix(0.212601,0.001913,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.212601,0.001913,-0.002250,0.249990,0,0);}
.mab_c01460{transform:matrix(0.214715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214715,0.000000,0.000000,0.250000,0,0);}
.ma6_c01460{transform:matrix(0.216319,0.002596,-0.003000,0.249982,0,0);-ms-transform:matrix(0.216319,0.002596,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.216319,0.002596,-0.003000,0.249982,0,0);}
.m16_c01460{transform:matrix(0.217125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217125,0.000000,0.000000,0.250000,0,0);}
.m28_c01460{transform:matrix(0.220210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220210,0.000000,0.000000,0.250000,0,0);}
.m3c_c01460{transform:matrix(0.220621,0.001986,-0.002250,0.249990,0,0);-ms-transform:matrix(0.220621,0.001986,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.220621,0.001986,-0.002250,0.249990,0,0);}
.m41_c01460{transform:matrix(0.221366,0.001992,-0.002250,0.249990,0,0);-ms-transform:matrix(0.221366,0.001992,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.221366,0.001992,-0.002250,0.249990,0,0);}
.m42_c01460{transform:matrix(0.222116,0.001999,-0.002250,0.249990,0,0);-ms-transform:matrix(0.222116,0.001999,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.222116,0.001999,-0.002250,0.249990,0,0);}
.m56_c01460{transform:matrix(0.222491,0.002002,-0.002250,0.249990,0,0);-ms-transform:matrix(0.222491,0.002002,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.222491,0.002002,-0.002250,0.249990,0,0);}
.ma_c01460{transform:matrix(0.223395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223395,0.000000,0.000000,0.250000,0,0);}
.m44_c01460{transform:matrix(0.223641,0.002013,-0.002250,0.249990,0,0);-ms-transform:matrix(0.223641,0.002013,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.223641,0.002013,-0.002250,0.249990,0,0);}
.ma7_c01460{transform:matrix(0.224054,0.002689,-0.003000,0.249982,0,0);-ms-transform:matrix(0.224054,0.002689,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.224054,0.002689,-0.003000,0.249982,0,0);}
.m9f_c01460{transform:matrix(0.224984,0.002700,-0.003000,0.249982,0,0);-ms-transform:matrix(0.224984,0.002700,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.224984,0.002700,-0.003000,0.249982,0,0);}
.m9d_c01460{transform:matrix(0.225054,0.002701,-0.003000,0.249982,0,0);-ms-transform:matrix(0.225054,0.002701,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.225054,0.002701,-0.003000,0.249982,0,0);}
.m97_c01460{transform:matrix(0.225246,0.002027,-0.002250,0.249990,0,0);-ms-transform:matrix(0.225246,0.002027,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.225246,0.002027,-0.002250,0.249990,0,0);}
.m7d_c01460{transform:matrix(0.226056,0.002035,-0.002250,0.249990,0,0);-ms-transform:matrix(0.226056,0.002035,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.226056,0.002035,-0.002250,0.249990,0,0);}
.m1_c01460{transform:matrix(0.226835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226835,0.000000,0.000000,0.250000,0,0);}
.m3d_c01460{transform:matrix(0.229211,0.002063,-0.002250,0.249990,0,0);-ms-transform:matrix(0.229211,0.002063,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.229211,0.002063,-0.002250,0.249990,0,0);}
.m70_c01460{transform:matrix(0.230766,0.002077,-0.002250,0.249990,0,0);-ms-transform:matrix(0.230766,0.002077,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.230766,0.002077,-0.002250,0.249990,0,0);}
.m52_c01460{transform:matrix(0.230886,0.002078,-0.002250,0.249990,0,0);-ms-transform:matrix(0.230886,0.002078,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.230886,0.002078,-0.002250,0.249990,0,0);}
.ma1_c01460{transform:matrix(0.230988,0.002772,-0.003000,0.249982,0,0);-ms-transform:matrix(0.230988,0.002772,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.230988,0.002772,-0.003000,0.249982,0,0);}
.m22_c01460{transform:matrix(0.231620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231620,0.000000,0.000000,0.250000,0,0);}
.ma3_c01460{transform:matrix(0.231788,0.002781,-0.003000,0.249982,0,0);-ms-transform:matrix(0.231788,0.002781,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.231788,0.002781,-0.003000,0.249982,0,0);}
.m67_c01460{transform:matrix(0.233606,0.002102,-0.002250,0.249990,0,0);-ms-transform:matrix(0.233606,0.002102,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.233606,0.002102,-0.002250,0.249990,0,0);}
.m39_c01460{transform:matrix(0.233991,0.002106,-0.002250,0.249990,0,0);-ms-transform:matrix(0.233991,0.002106,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.233991,0.002106,-0.002250,0.249990,0,0);}
.m84_c01460{transform:matrix(0.236215,0.002126,-0.002250,0.249990,0,0);-ms-transform:matrix(0.236215,0.002126,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.236215,0.002126,-0.002250,0.249990,0,0);}
.m8d_c01460{transform:matrix(0.237085,0.002134,-0.002250,0.249990,0,0);-ms-transform:matrix(0.237085,0.002134,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.237085,0.002134,-0.002250,0.249990,0,0);}
.m2d_c01460{transform:matrix(0.237160,0.002134,-0.002250,0.249990,0,0);-ms-transform:matrix(0.237160,0.002134,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.237160,0.002134,-0.002250,0.249990,0,0);}
.m25_c01460{transform:matrix(0.237870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237870,0.000000,0.000000,0.250000,0,0);}
.m86_c01460{transform:matrix(0.237900,0.002141,-0.002250,0.249990,0,0);-ms-transform:matrix(0.237900,0.002141,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.237900,0.002141,-0.002250,0.249990,0,0);}
.m7f_c01460{transform:matrix(0.238135,0.002143,-0.002250,0.249990,0,0);-ms-transform:matrix(0.238135,0.002143,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.238135,0.002143,-0.002250,0.249990,0,0);}
.m90_c01460{transform:matrix(0.238185,0.002144,-0.002250,0.249990,0,0);-ms-transform:matrix(0.238185,0.002144,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.238185,0.002144,-0.002250,0.249990,0,0);}
.m40_c01460{transform:matrix(0.238705,0.002148,-0.002250,0.249990,0,0);-ms-transform:matrix(0.238705,0.002148,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.238705,0.002148,-0.002250,0.249990,0,0);}
.m8b_c01460{transform:matrix(0.238880,0.002150,-0.002250,0.249990,0,0);-ms-transform:matrix(0.238880,0.002150,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.238880,0.002150,-0.002250,0.249990,0,0);}
.m3f_c01460{transform:matrix(0.239060,0.002152,-0.002250,0.249990,0,0);-ms-transform:matrix(0.239060,0.002152,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.239060,0.002152,-0.002250,0.249990,0,0);}
.m54_c01460{transform:matrix(0.239220,0.002153,-0.002250,0.249990,0,0);-ms-transform:matrix(0.239220,0.002153,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.239220,0.002153,-0.002250,0.249990,0,0);}
.m24_c01460{transform:matrix(0.239335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239335,0.000000,0.000000,0.250000,0,0);}
.maa_c01460{transform:matrix(0.240030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240030,0.000000,0.000000,0.250000,0,0);}
.m92_c01460{transform:matrix(0.240235,0.002162,-0.002250,0.249990,0,0);-ms-transform:matrix(0.240235,0.002162,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.240235,0.002162,-0.002250,0.249990,0,0);}
.m66_c01460{transform:matrix(0.240685,0.002166,-0.002250,0.249990,0,0);-ms-transform:matrix(0.240685,0.002166,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.240685,0.002166,-0.002250,0.249990,0,0);}
.m53_c01460{transform:matrix(0.240895,0.002168,-0.002250,0.249990,0,0);-ms-transform:matrix(0.240895,0.002168,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.240895,0.002168,-0.002250,0.249990,0,0);}
.m7a_c01460{transform:matrix(0.241020,0.002169,-0.002250,0.249990,0,0);-ms-transform:matrix(0.241020,0.002169,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.241020,0.002169,-0.002250,0.249990,0,0);}
.ma4_c01460{transform:matrix(0.241778,0.002901,-0.003000,0.249982,0,0);-ms-transform:matrix(0.241778,0.002901,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.241778,0.002901,-0.003000,0.249982,0,0);}
.m95_c01460{transform:matrix(0.242285,0.002181,-0.002250,0.249990,0,0);-ms-transform:matrix(0.242285,0.002181,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.242285,0.002181,-0.002250,0.249990,0,0);}
.m2c_c01460{transform:matrix(0.242610,0.002183,-0.002250,0.249990,0,0);-ms-transform:matrix(0.242610,0.002183,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.242610,0.002183,-0.002250,0.249990,0,0);}
.m85_c01460{transform:matrix(0.242900,0.002186,-0.002250,0.249990,0,0);-ms-transform:matrix(0.242900,0.002186,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.242900,0.002186,-0.002250,0.249990,0,0);}
.mb_c01460{transform:matrix(0.243540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243540,0.000000,0.000000,0.250000,0,0);}
.m91_c01460{transform:matrix(0.244270,0.002198,-0.002250,0.249990,0,0);-ms-transform:matrix(0.244270,0.002198,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.244270,0.002198,-0.002250,0.249990,0,0);}
.m87_c01460{transform:matrix(0.244395,0.002200,-0.002250,0.249990,0,0);-ms-transform:matrix(0.244395,0.002200,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.244395,0.002200,-0.002250,0.249990,0,0);}
.m73_c01460{transform:matrix(0.245510,0.002210,-0.002250,0.249990,0,0);-ms-transform:matrix(0.245510,0.002210,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.245510,0.002210,-0.002250,0.249990,0,0);}
.m3e_c01460{transform:matrix(0.246015,0.002214,-0.002250,0.249990,0,0);-ms-transform:matrix(0.246015,0.002214,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.246015,0.002214,-0.002250,0.249990,0,0);}
.m8a_c01460{transform:matrix(0.246345,0.002217,-0.002250,0.249990,0,0);-ms-transform:matrix(0.246345,0.002217,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.246345,0.002217,-0.002250,0.249990,0,0);}
.m80_c01460{transform:matrix(0.246930,0.002222,-0.002250,0.249990,0,0);-ms-transform:matrix(0.246930,0.002222,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.246930,0.002222,-0.002250,0.249990,0,0);}
.ma5_c01460{transform:matrix(0.247037,0.002964,-0.003000,0.249982,0,0);-ms-transform:matrix(0.247037,0.002964,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.247037,0.002964,-0.003000,0.249982,0,0);}
.m32_c01460{transform:matrix(0.247605,0.002228,-0.002250,0.249990,0,0);-ms-transform:matrix(0.247605,0.002228,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.247605,0.002228,-0.002250,0.249990,0,0);}
.m13_c01460{transform:matrix(0.247640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247640,0.000000,0.000000,0.250000,0,0);}
.m4a_c01460{transform:matrix(0.248098,0.002481,-0.002500,0.249988,0,0);-ms-transform:matrix(0.248098,0.002481,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.248098,0.002481,-0.002500,0.249988,0,0);}
.m21_c01460{transform:matrix(0.249490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249490,0.000000,0.000000,0.250000,0,0);}
.m18_c01460{transform:matrix(0.249615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249615,0.000000,0.000000,0.250000,0,0);}
.me_c01460{transform:matrix(0.249650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249650,0.000000,0.000000,0.250000,0,0);}
.m55_c01460{transform:matrix(0.249910,0.002249,-0.002250,0.249990,0,0);-ms-transform:matrix(0.249910,0.002249,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.249910,0.002249,-0.002250,0.249990,0,0);}
.m1a_c01460{transform:matrix(0.250035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250035,0.000000,0.000000,0.250000,0,0);}
.mf_c01460{transform:matrix(0.250155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250155,0.000000,0.000000,0.250000,0,0);}
.ma8_c01460{transform:matrix(0.251372,0.003016,-0.003000,0.249982,0,0);-ms-transform:matrix(0.251372,0.003016,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.251372,0.003016,-0.003000,0.249982,0,0);}
.m23_c01460{transform:matrix(0.251540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251540,0.000000,0.000000,0.250000,0,0);}
.m34_c01460{transform:matrix(0.252105,0.002269,-0.002250,0.249990,0,0);-ms-transform:matrix(0.252105,0.002269,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.252105,0.002269,-0.002250,0.249990,0,0);}
.m8f_c01460{transform:matrix(0.252860,0.002276,-0.002250,0.249990,0,0);-ms-transform:matrix(0.252860,0.002276,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.252860,0.002276,-0.002250,0.249990,0,0);}
.m7b_c01460{transform:matrix(0.252880,0.002276,-0.002250,0.249990,0,0);-ms-transform:matrix(0.252880,0.002276,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.252880,0.002276,-0.002250,0.249990,0,0);}
.ma2_c01460{transform:matrix(0.253002,0.003036,-0.003000,0.249982,0,0);-ms-transform:matrix(0.253002,0.003036,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.253002,0.003036,-0.003000,0.249982,0,0);}
.m36_c01460{transform:matrix(0.253120,0.002278,-0.002250,0.249990,0,0);-ms-transform:matrix(0.253120,0.002278,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.253120,0.002278,-0.002250,0.249990,0,0);}
.m47_c01460{transform:matrix(0.253147,0.002531,-0.002500,0.249988,0,0);-ms-transform:matrix(0.253147,0.002531,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.253147,0.002531,-0.002500,0.249988,0,0);}
.m4_c01460{transform:matrix(0.253200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253200,0.000000,0.000000,0.250000,0,0);}
.m6e_c01460{transform:matrix(0.253475,0.002281,-0.002250,0.249990,0,0);-ms-transform:matrix(0.253475,0.002281,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.253475,0.002281,-0.002250,0.249990,0,0);}
.m20_c01460{transform:matrix(0.254100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254100,0.000000,0.000000,0.250000,0,0);}
.m3b_c01460{transform:matrix(0.254225,0.002288,-0.002250,0.249990,0,0);-ms-transform:matrix(0.254225,0.002288,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.254225,0.002288,-0.002250,0.249990,0,0);}
.m4e_c01460{transform:matrix(0.254457,0.002545,-0.002500,0.249988,0,0);-ms-transform:matrix(0.254457,0.002545,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.254457,0.002545,-0.002500,0.249988,0,0);}
.m93_c01460{transform:matrix(0.254590,0.002291,-0.002250,0.249990,0,0);-ms-transform:matrix(0.254590,0.002291,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.254590,0.002291,-0.002250,0.249990,0,0);}
.m68_c01460{transform:matrix(0.254915,0.002294,-0.002250,0.249990,0,0);-ms-transform:matrix(0.254915,0.002294,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.254915,0.002294,-0.002250,0.249990,0,0);}
.m64_c01460{transform:matrix(0.255200,0.002297,-0.002250,0.249990,0,0);-ms-transform:matrix(0.255200,0.002297,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.255200,0.002297,-0.002250,0.249990,0,0);}
.m38_c01460{transform:matrix(0.255450,0.002299,-0.002250,0.249990,0,0);-ms-transform:matrix(0.255450,0.002299,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.255450,0.002299,-0.002250,0.249990,0,0);}
.m71_c01460{transform:matrix(0.255570,0.002300,-0.002250,0.249990,0,0);-ms-transform:matrix(0.255570,0.002300,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.255570,0.002300,-0.002250,0.249990,0,0);}
.m2f_c01460{transform:matrix(0.256630,0.002310,-0.002250,0.249990,0,0);-ms-transform:matrix(0.256630,0.002310,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.256630,0.002310,-0.002250,0.249990,0,0);}
.m62_c01460{transform:matrix(0.256820,0.002311,-0.002250,0.249990,0,0);-ms-transform:matrix(0.256820,0.002311,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.256820,0.002311,-0.002250,0.249990,0,0);}
.m11_c01460{transform:matrix(0.257055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257055,0.000000,0.000000,0.250000,0,0);}
.m7c_c01460{transform:matrix(0.257295,0.002316,-0.002250,0.249990,0,0);-ms-transform:matrix(0.257295,0.002316,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.257295,0.002316,-0.002250,0.249990,0,0);}
.m78_c01460{transform:matrix(0.258720,0.002328,-0.002250,0.249990,0,0);-ms-transform:matrix(0.258720,0.002328,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.258720,0.002328,-0.002250,0.249990,0,0);}
.m14_c01460{transform:matrix(0.258745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258745,0.000000,0.000000,0.250000,0,0);}
.m6_c01460{transform:matrix(0.258905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258905,0.000000,0.000000,0.250000,0,0);}
.m10_c01460{transform:matrix(0.259220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259220,0.000000,0.000000,0.250000,0,0);}
.m58_c01460{transform:matrix(0.259369,0.002334,-0.002250,0.249990,0,0);-ms-transform:matrix(0.259369,0.002334,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.259369,0.002334,-0.002250,0.249990,0,0);}
.m81_c01460{transform:matrix(0.259944,0.002340,-0.002250,0.249990,0,0);-ms-transform:matrix(0.259944,0.002340,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.259944,0.002340,-0.002250,0.249990,0,0);}
.m31_c01460{transform:matrix(0.260339,0.002343,-0.002250,0.249990,0,0);-ms-transform:matrix(0.260339,0.002343,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.260339,0.002343,-0.002250,0.249990,0,0);}
.m7_c01460{transform:matrix(0.260675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260675,0.000000,0.000000,0.250000,0,0);}
.m7e_c01460{transform:matrix(0.262439,0.002362,-0.002250,0.249990,0,0);-ms-transform:matrix(0.262439,0.002362,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.262439,0.002362,-0.002250,0.249990,0,0);}
.m96_c01460{transform:matrix(0.262684,0.002364,-0.002250,0.249990,0,0);-ms-transform:matrix(0.262684,0.002364,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.262684,0.002364,-0.002250,0.249990,0,0);}
.m6f_c01460{transform:matrix(0.262949,0.002367,-0.002250,0.249990,0,0);-ms-transform:matrix(0.262949,0.002367,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.262949,0.002367,-0.002250,0.249990,0,0);}
.ma9_c01460{transform:matrix(0.263231,0.003159,-0.003000,0.249982,0,0);-ms-transform:matrix(0.263231,0.003159,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.263231,0.003159,-0.003000,0.249982,0,0);}
.m48_c01460{transform:matrix(0.263297,0.002633,-0.002500,0.249988,0,0);-ms-transform:matrix(0.263297,0.002633,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.263297,0.002633,-0.002500,0.249988,0,0);}
.m4d_c01460{transform:matrix(0.263467,0.002635,-0.002500,0.249988,0,0);-ms-transform:matrix(0.263467,0.002635,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.263467,0.002635,-0.002500,0.249988,0,0);}
.m37_c01460{transform:matrix(0.264164,0.002377,-0.002250,0.249990,0,0);-ms-transform:matrix(0.264164,0.002377,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.264164,0.002377,-0.002250,0.249990,0,0);}
.m72_c01460{transform:matrix(0.265419,0.002389,-0.002250,0.249990,0,0);-ms-transform:matrix(0.265419,0.002389,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.265419,0.002389,-0.002250,0.249990,0,0);}
.m4b_c01460{transform:matrix(0.267422,0.002674,-0.002500,0.249988,0,0);-ms-transform:matrix(0.267422,0.002674,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.267422,0.002674,-0.002500,0.249988,0,0);}
.m3_c01460{transform:matrix(0.267670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267670,0.000000,0.000000,0.250000,0,0);}
.m29_c01460{transform:matrix(0.269080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269080,0.000000,0.000000,0.250000,0,0);}
.m19_c01460{transform:matrix(0.269290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269290,0.000000,0.000000,0.250000,0,0);}
.m6d_c01460{transform:matrix(0.269524,0.002426,-0.002250,0.249990,0,0);-ms-transform:matrix(0.269524,0.002426,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.269524,0.002426,-0.002250,0.249990,0,0);}
.m33_c01460{transform:matrix(0.269604,0.002426,-0.002250,0.249990,0,0);-ms-transform:matrix(0.269604,0.002426,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.269604,0.002426,-0.002250,0.249990,0,0);}
.m35_c01460{transform:matrix(0.270099,0.002431,-0.002250,0.249990,0,0);-ms-transform:matrix(0.270099,0.002431,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.270099,0.002431,-0.002250,0.249990,0,0);}
.m57_c01460{transform:matrix(0.271154,0.002440,-0.002250,0.249990,0,0);-ms-transform:matrix(0.271154,0.002440,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.271154,0.002440,-0.002250,0.249990,0,0);}
.m49_c01460{transform:matrix(0.271526,0.002715,-0.002500,0.249988,0,0);-ms-transform:matrix(0.271526,0.002715,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.271526,0.002715,-0.002500,0.249988,0,0);}
.mc_c01460{transform:matrix(0.271850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271850,0.000000,0.000000,0.250000,0,0);}
.m69_c01460{transform:matrix(0.272114,0.002449,-0.002250,0.249990,0,0);-ms-transform:matrix(0.272114,0.002449,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.272114,0.002449,-0.002250,0.249990,0,0);}
.m6c_c01460{transform:matrix(0.272844,0.002456,-0.002250,0.249990,0,0);-ms-transform:matrix(0.272844,0.002456,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.272844,0.002456,-0.002250,0.249990,0,0);}
.m79_c01460{transform:matrix(0.272889,0.002456,-0.002250,0.249990,0,0);-ms-transform:matrix(0.272889,0.002456,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.272889,0.002456,-0.002250,0.249990,0,0);}
.m4f_c01460{transform:matrix(0.273386,0.002734,-0.002500,0.249988,0,0);-ms-transform:matrix(0.273386,0.002734,-0.002500,0.249988,0,0);-webkit-transform:matrix(0.273386,0.002734,-0.002500,0.249988,0,0);}
.m8_c01460{transform:matrix(0.273990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273990,0.000000,0.000000,0.250000,0,0);}
.m51_c01460{transform:matrix(0.274769,0.002473,-0.002250,0.249990,0,0);-ms-transform:matrix(0.274769,0.002473,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.274769,0.002473,-0.002250,0.249990,0,0);}
.m30_c01460{transform:matrix(0.275784,0.002482,-0.002250,0.249990,0,0);-ms-transform:matrix(0.275784,0.002482,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.275784,0.002482,-0.002250,0.249990,0,0);}
.md_c01460{transform:matrix(0.275795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275795,0.000000,0.000000,0.250000,0,0);}
.m2e_c01460{transform:matrix(0.276179,0.002486,-0.002250,0.249990,0,0);-ms-transform:matrix(0.276179,0.002486,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.276179,0.002486,-0.002250,0.249990,0,0);}
.m9_c01460{transform:matrix(0.276410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276410,0.000000,0.000000,0.250000,0,0);}
.m15_c01460{transform:matrix(0.277360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277360,0.000000,0.000000,0.250000,0,0);}
.m65_c01460{transform:matrix(0.279549,0.002516,-0.002250,0.249990,0,0);-ms-transform:matrix(0.279549,0.002516,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.279549,0.002516,-0.002250,0.249990,0,0);}
.m63_c01460{transform:matrix(0.281534,0.002534,-0.002250,0.249990,0,0);-ms-transform:matrix(0.281534,0.002534,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.281534,0.002534,-0.002250,0.249990,0,0);}
.m99_c01460{transform:matrix(0.285125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285125,0.000000,0.000000,0.250000,0,0);}
.m1b_c01460{transform:matrix(0.287385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287385,0.000000,0.000000,0.250000,0,0);}
.m98_c01460{transform:matrix(0.292875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292875,0.000000,0.000000,0.250000,0,0);}
.m17_c01460{transform:matrix(0.293650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293650,0.000000,0.000000,0.250000,0,0);}
.m9a_c01460{transform:matrix(0.304805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304805,0.000000,0.000000,0.250000,0,0);}
.m88_c01460{transform:matrix(0.326797,0.002941,-0.002250,0.249990,0,0);-ms-transform:matrix(0.326797,0.002941,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.326797,0.002941,-0.002250,0.249990,0,0);}
.m12_c01460{transform:matrix(0.347320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347320,0.000000,0.000000,0.250000,0,0);}
.m1d_c01460{transform:matrix(0.350540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350540,0.000000,0.000000,0.250000,0,0);}
.v0_c01460{vertical-align:0.000000px;}
.ls0_c01460{letter-spacing:0.000000px;}
.sc__c01460{text-shadow:none;}
.sc0_c01460{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__c01460{-webkit-text-stroke:0px transparent;}
.sc0_c01460{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01460{word-spacing:0.000000px;}
._0_c01460{width:38.016304px;}
.fc0_c01460{color:transparent;}
.fs3_c01460{font-size:48.000000px;}
.fs1_c01460{font-size:66.000000px;}
.fs2_c01460{font-size:72.000000px;}
.fs4_c01460{font-size:72.002916px;}
.fs6_c01460{font-size:72.003600px;}
.fs9_c01460{font-size:72.005184px;}
.fs0_c01460{font-size:78.000000px;}
.fs5_c01460{font-size:78.003159px;}
.fs8_c01460{font-size:78.005616px;}
.fsa_c01460{font-size:102.000000px;}
.fs7_c01460{font-size:102.004131px;}
.y0_c01460{bottom:0.000000px;}
.y9b_c01460{bottom:321.180000px;}
.y9a_c01460{bottom:467.222112px;}
.y99_c01460{bottom:497.185134px;}
.y98_c01460{bottom:497.580432px;}
.y97_c01460{bottom:497.978970px;}
.y96_c01460{bottom:498.776064px;}
.y95_c01460{bottom:499.556922px;}
.y94_c01460{bottom:500.078598px;}
.y93_c01460{bottom:501.371376px;}
.y92_c01460{bottom:502.171710px;}
.y91_c01460{bottom:502.563534px;}
.y90_c01460{bottom:503.094894px;}
.y8f_c01460{bottom:503.480616px;}
.y8e_c01460{bottom:504.258198px;}
.y8d_c01460{bottom:504.765798px;}
.y8c_c01460{bottom:505.171500px;}
.y8b_c01460{bottom:537.897000px;}
.y80_c01460{bottom:570.828403px;}
.y85_c01460{bottom:570.828432px;}
.y81_c01460{bottom:570.828491px;}
.y8a_c01460{bottom:570.828643px;}
.y89_c01460{bottom:570.828649px;}
.y86_c01460{bottom:570.828685px;}
.y87_c01460{bottom:570.828892px;}
.y88_c01460{bottom:570.829086px;}
.y84_c01460{bottom:570.829128px;}
.y82_c01460{bottom:570.829134px;}
.y83_c01460{bottom:570.829474px;}
.y7f_c01460{bottom:606.346281px;}
.y7e_c01460{bottom:607.049044px;}
.y7d_c01460{bottom:607.504815px;}
.y7c_c01460{bottom:607.668670px;}
.y7b_c01460{bottom:608.292778px;}
.y7a_c01460{bottom:608.912202px;}
.y79_c01460{bottom:609.428418px;}
.y78_c01460{bottom:609.960238px;}
.y77_c01460{bottom:610.120356px;}
.y76_c01460{bottom:610.463239px;}
.y75_c01460{bottom:640.243800px;}
.y74_c01460{bottom:640.835196px;}
.y73_c01460{bottom:641.102659px;}
.y72_c01460{bottom:641.358924px;}
.y71_c01460{bottom:641.823982px;}
.y70_c01460{bottom:642.018123px;}
.y6f_c01460{bottom:642.471875px;}
.y6e_c01460{bottom:643.253323px;}
.y6d_c01460{bottom:643.525023px;}
.y6c_c01460{bottom:644.114097px;}
.y6b_c01460{bottom:644.568024px;}
.y6a_c01460{bottom:644.820712px;}
.y69_c01460{bottom:645.025122px;}
.y68_c01460{bottom:674.556631px;}
.y67_c01460{bottom:674.668128px;}
.y66_c01460{bottom:675.368373px;}
.y65_c01460{bottom:676.065783px;}
.y64_c01460{bottom:676.464262px;}
.y63_c01460{bottom:677.244090px;}
.y62_c01460{bottom:677.737623px;}
.y61_c01460{bottom:678.826222px;}
.y60_c01460{bottom:679.115446px;}
.y5f_c01460{bottom:679.900418px;}
.y5e_c01460{bottom:680.274030px;}
.y5d_c01460{bottom:681.208446px;}
.y5c_c01460{bottom:711.294304px;}
.y5b_c01460{bottom:712.141071px;}
.y5a_c01460{bottom:712.612914px;}
.y59_c01460{bottom:713.717901px;}
.y58_c01460{bottom:715.039561px;}
.y57_c01460{bottom:715.635964px;}
.y56_c01460{bottom:717.077068px;}
.y55_c01460{bottom:717.905079px;}
.y54_c01460{bottom:718.369873px;}
.y53_c01460{bottom:718.739071px;}
.y52_c01460{bottom:749.155084px;}
.y51_c01460{bottom:749.533341px;}
.y50_c01460{bottom:749.819352px;}
.y4f_c01460{bottom:750.285738px;}
.y4e_c01460{bottom:750.527562px;}
.y4d_c01460{bottom:751.213395px;}
.y4c_c01460{bottom:752.219397px;}
.y4b_c01460{bottom:781.969749px;}
.y4a_c01460{bottom:782.361276px;}
.y49_c01460{bottom:783.236089px;}
.y48_c01460{bottom:783.534709px;}
.y47_c01460{bottom:784.533723px;}
.y46_c01460{bottom:784.805869px;}
.y45_c01460{bottom:785.600466px;}
.y44_c01460{bottom:785.904243px;}
.y43_c01460{bottom:786.781500px;}
.y42_c01460{bottom:815.428185px;}
.y41_c01460{bottom:816.424995px;}
.y40_c01460{bottom:816.757125px;}
.y3f_c01460{bottom:817.621080px;}
.y3e_c01460{bottom:817.958325px;}
.y3d_c01460{bottom:819.035925px;}
.y3c_c01460{bottom:819.705495px;}
.y3b_c01460{bottom:820.688325px;}
.y3a_c01460{bottom:821.563215px;}
.y39_c01460{bottom:822.216555px;}
.y38_c01460{bottom:822.626235px;}
.y37_c01460{bottom:822.961500px;}
.y2b_c01460{bottom:854.929374px;}
.y2c_c01460{bottom:854.929461px;}
.y30_c01460{bottom:854.929929px;}
.y2e_c01460{bottom:854.929978px;}
.y2d_c01460{bottom:854.930044px;}
.y31_c01460{bottom:854.930346px;}
.y2f_c01460{bottom:854.930472px;}
.y32_c01460{bottom:854.930793px;}
.y35_c01460{bottom:854.931177px;}
.y33_c01460{bottom:854.931330px;}
.y34_c01460{bottom:854.931403px;}
.y36_c01460{bottom:854.931640px;}
.y2a_c01460{bottom:892.970758px;}
.y29_c01460{bottom:894.113613px;}
.y28_c01460{bottom:894.781549px;}
.y27_c01460{bottom:924.487994px;}
.y26_c01460{bottom:924.886608px;}
.y25_c01460{bottom:925.768725px;}
.y24_c01460{bottom:925.955565px;}
.y23_c01460{bottom:926.655621px;}
.y22_c01460{bottom:927.839098px;}
.y21_c01460{bottom:928.327528px;}
.y20_c01460{bottom:929.216963px;}
.y1f_c01460{bottom:929.703030px;}
.y1e_c01460{bottom:930.283773px;}
.y1d_c01460{bottom:930.662245px;}
.y1c_c01460{bottom:930.961500px;}
.y1b_c01460{bottom:964.164000px;}
.y1a_c01460{bottom:995.332500px;}
.y19_c01460{bottom:995.691000px;}
.y18_c01460{bottom:996.042000px;}
.y17_c01460{bottom:996.760500px;}
.y16_c01460{bottom:997.482000px;}
.y15_c01460{bottom:998.572500px;}
.y14_c01460{bottom:999.048000px;}
.y13_c01460{bottom:1000.233000px;}
.y12_c01460{bottom:1001.676000px;}
.y11_c01460{bottom:1002.141000px;}
.y10_c01460{bottom:1002.510000px;}
.yf_c01460{bottom:1035.030000px;}
.ye_c01460{bottom:1065.172500px;}
.yd_c01460{bottom:1066.060500px;}
.yc_c01460{bottom:1066.381500px;}
.yb_c01460{bottom:1067.245500px;}
.ya_c01460{bottom:1067.469000px;}
.y9_c01460{bottom:1068.028500px;}
.y8_c01460{bottom:1068.346500px;}
.y7_c01460{bottom:1068.678000px;}
.y6_c01460{bottom:1069.339500px;}
.y5_c01460{bottom:1069.762500px;}
.y4_c01460{bottom:1071.091500px;}
.y3_c01460{bottom:1105.566000px;}
.y2_c01460{bottom:1142.359500px;}
.y1_c01460{bottom:1195.555500px;}
.h5_c01460{height:48.000000px;}
.h3_c01460{height:66.000000px;}
.h4_c01460{height:72.000000px;}
.h6_c01460{height:72.002916px;}
.h8_c01460{height:72.003600px;}
.hb_c01460{height:72.005184px;}
.h2_c01460{height:78.000000px;}
.h7_c01460{height:78.003159px;}
.ha_c01460{height:78.005616px;}
.hc_c01460{height:102.000000px;}
.h9_c01460{height:102.004131px;}
.h0_c01460{height:1250.850000px;}
.h1_c01460{height:1251.000000px;}
.w1_c01460{width:894.750000px;}
.w0_c01460{width:895.050000px;}
.x0_c01460{left:0.000000px;}
.x6a_c01460{left:73.973162px;}
.x30_c01460{left:77.490849px;}
.x5_c01460{left:80.190000px;}
.x46_c01460{left:95.885823px;}
.x5c_c01460{left:97.396275px;}
.x4b_c01460{left:98.454232px;}
.x3a_c01460{left:99.792000px;}
.x1d_c01460{left:101.695500px;}
.x6b_c01460{left:130.134711px;}
.x4c_c01460{left:131.975625px;}
.x31_c01460{left:133.652398px;}
.x1e_c01460{left:135.225000px;}
.x6_c01460{left:136.620000px;}
.x73_c01460{left:171.838500px;}
.x6c_c01460{left:173.066694px;}
.x32_c01460{left:174.424206px;}
.x7_c01460{left:176.850000px;}
.x70_c01460{left:237.060000px;}
.x25_c01460{left:240.030000px;}
.x7d_c01460{left:241.119606px;}
.x8_c01460{left:242.190000px;}
.x4_c01460{left:244.080000px;}
.x4d_c01460{left:249.618519px;}
.x74_c01460{left:268.780500px;}
.x52_c01460{left:282.025581px;}
.x2e_c01460{left:284.389236px;}
.x1b_c01460{left:285.390000px;}
.x6d_c01460{left:291.871820px;}
.x26_c01460{left:295.000500px;}
.x64_c01460{left:302.028791px;}
.x33_c01460{left:305.108790px;}
.x1c_c01460{left:309.150000px;}
.x71_c01460{left:313.200000px;}
.x3b_c01460{left:327.109500px;}
.x41_c01460{left:337.114500px;}
.x7e_c01460{left:342.630000px;}
.x75_c01460{left:345.712500px;}
.x5d_c01460{left:347.414025px;}
.x34_c01460{left:349.390881px;}
.x2f_c01460{left:360.535618px;}
.x53_c01460{left:369.244581px;}
.x42_c01460{left:370.867500px;}
.x47_c01460{left:372.241804px;}
.x11_c01460{left:374.382000px;}
.x72_c01460{left:379.080000px;}
.x4e_c01460{left:380.572157px;}
.x5e_c01460{left:392.770753px;}
.x27_c01460{left:393.826500px;}
.x9_c01460{left:397.170000px;}
.x54_c01460{left:401.380581px;}
.x1_c01460{left:407.700000px;}
.x76_c01460{left:412.407000px;}
.x12_c01460{left:416.737500px;}
.x3c_c01460{left:425.392500px;}
.x2_c01460{left:430.110000px;}
.x65_c01460{left:432.978465px;}
.x4f_c01460{left:434.838184px;}
.x48_c01460{left:438.897006px;}
.x28_c01460{left:448.096500px;}
.x1f_c01460{left:459.675000px;}
.x3_c01460{left:473.310000px;}
.x49_c01460{left:479.676735px;}
.x13_c01460{left:482.923500px;}
.x6e_c01460{left:488.170209px;}
.x43_c01460{left:489.394500px;}
.x35_c01460{left:491.416383px;}
.xa_c01460{left:505.170000px;}
.x66_c01460{left:510.470667px;}
.x14_c01460{left:516.097500px;}
.x77_c01460{left:520.138500px;}
.x55_c01460{left:522.336081px;}
.x4a_c01460{left:533.706207px;}
.x15_c01460{left:547.948500px;}
.x50_c01460{left:555.020524px;}
.x20_c01460{left:558.750000px;}
.x78_c01460{left:563.611500px;}
.x56_c01460{left:577.173081px;}
.x29_c01460{left:579.594000px;}
.x67_c01460{left:588.483369px;}
.x5f_c01460{left:598.520802px;}
.x3d_c01460{left:600.109500px;}
.x16_c01460{left:603.876000px;}
.x68_c01460{left:609.023058px;}
.x36_c01460{left:612.650211px;}
.xb_c01460{left:614.520000px;}
.x21_c01460{left:624.364500px;}
.x17_c01460{left:626.251500px;}
.x79_c01460{left:628.683000px;}
.x60_c01460{left:630.926179px;}
.x3e_c01460{left:633.834000px;}
.xc_c01460{left:647.190000px;}
.x37_c01460{left:655.312167px;}
.x2a_c01460{left:657.378000px;}
.x6f_c01460{left:662.326817px;}
.x57_c01460{left:663.820581px;}
.x69_c01460{left:665.998071px;}
.x2b_c01460{left:678.138000px;}
.xd_c01460{left:681.210000px;}
.x38_c01460{left:687.173245px;}
.x22_c01460{left:689.700000px;}
.x7a_c01460{left:695.107500px;}
.x51_c01460{left:698.387946px;}
.x58_c01460{left:708.096081px;}
.x18_c01460{left:712.653000px;}
.x3f_c01460{left:720.229500px;}
.x23_c01460{left:721.561500px;}
.x39_c01460{left:723.624702px;}
.x7b_c01460{left:728.319000px;}
.x44_c01460{left:730.777500px;}
.x19_c01460{left:744.787500px;}
.x61_c01460{left:751.076420px;}
.x24_c01460{left:754.218000px;}
.xe_c01460{left:756.810000px;}
.x7c_c01460{left:761.260500px;}
.x45_c01460{left:774.280500px;}
.x2c_c01460{left:776.151000px;}
.x59_c01460{left:785.586081px;}
.xf_c01460{left:790.020000px;}
.x62_c01460{left:795.629121px;}
.x2d_c01460{left:820.441500px;}
.x10_c01460{left:823.770000px;}
.x1a_c01460{left:833.649000px;}
.x40_c01460{left:853.123500px;}
.x5a_c01460{left:863.391081px;}
.x5b_c01460{left:875.779581px;}
.x63_c01460{left:894.175781px;}
@media print{
.v0_c01460{vertical-align:0.000000pt;}
.ls0_c01460{letter-spacing:0.000000pt;}
.ws0_c01460{word-spacing:0.000000pt;}
._0_c01460{width:33.792270pt;}
.fs3_c01460{font-size:42.666667pt;}
.fs1_c01460{font-size:58.666667pt;}
.fs2_c01460{font-size:64.000000pt;}
.fs4_c01460{font-size:64.002592pt;}
.fs6_c01460{font-size:64.003200pt;}
.fs9_c01460{font-size:64.004608pt;}
.fs0_c01460{font-size:69.333333pt;}
.fs5_c01460{font-size:69.336141pt;}
.fs8_c01460{font-size:69.338325pt;}
.fsa_c01460{font-size:90.666667pt;}
.fs7_c01460{font-size:90.670339pt;}
.y0_c01460{bottom:0.000000pt;}
.y9b_c01460{bottom:285.493333pt;}
.y9a_c01460{bottom:415.308544pt;}
.y99_c01460{bottom:441.942341pt;}
.y98_c01460{bottom:442.293717pt;}
.y97_c01460{bottom:442.647973pt;}
.y96_c01460{bottom:443.356501pt;}
.y95_c01460{bottom:444.050597pt;}
.y94_c01460{bottom:444.514309pt;}
.y93_c01460{bottom:445.663445pt;}
.y92_c01460{bottom:446.374853pt;}
.y91_c01460{bottom:446.723141pt;}
.y90_c01460{bottom:447.195461pt;}
.y8f_c01460{bottom:447.538325pt;}
.y8e_c01460{bottom:448.229509pt;}
.y8d_c01460{bottom:448.680709pt;}
.y8c_c01460{bottom:449.041333pt;}
.y8b_c01460{bottom:478.130667pt;}
.y80_c01460{bottom:507.403025pt;}
.y85_c01460{bottom:507.403051pt;}
.y81_c01460{bottom:507.403103pt;}
.y8a_c01460{bottom:507.403239pt;}
.y89_c01460{bottom:507.403244pt;}
.y86_c01460{bottom:507.403276pt;}
.y87_c01460{bottom:507.403460pt;}
.y88_c01460{bottom:507.403632pt;}
.y84_c01460{bottom:507.403669pt;}
.y82_c01460{bottom:507.403675pt;}
.y83_c01460{bottom:507.403977pt;}
.y7f_c01460{bottom:538.974472pt;}
.y7e_c01460{bottom:539.599151pt;}
.y7d_c01460{bottom:540.004280pt;}
.y7c_c01460{bottom:540.149929pt;}
.y7b_c01460{bottom:540.704692pt;}
.y7a_c01460{bottom:541.255291pt;}
.y79_c01460{bottom:541.714149pt;}
.y78_c01460{bottom:542.186879pt;}
.y77_c01460{bottom:542.329205pt;}
.y76_c01460{bottom:542.633991pt;}
.y75_c01460{bottom:569.105600pt;}
.y74_c01460{bottom:569.631285pt;}
.y73_c01460{bottom:569.869031pt;}
.y72_c01460{bottom:570.096821pt;}
.y71_c01460{bottom:570.510207pt;}
.y70_c01460{bottom:570.682776pt;}
.y6f_c01460{bottom:571.086111pt;}
.y6e_c01460{bottom:571.780732pt;}
.y6d_c01460{bottom:572.022243pt;}
.y6c_c01460{bottom:572.545864pt;}
.y6b_c01460{bottom:572.949355pt;}
.y6a_c01460{bottom:573.173967pt;}
.y69_c01460{bottom:573.355664pt;}
.y68_c01460{bottom:599.605895pt;}
.y67_c01460{bottom:599.705003pt;}
.y66_c01460{bottom:600.327443pt;}
.y65_c01460{bottom:600.947363pt;}
.y64_c01460{bottom:601.301567pt;}
.y63_c01460{bottom:601.994747pt;}
.y62_c01460{bottom:602.433443pt;}
.y61_c01460{bottom:603.401087pt;}
.y60_c01460{bottom:603.658175pt;}
.y5f_c01460{bottom:604.355927pt;}
.y5e_c01460{bottom:604.688027pt;}
.y5d_c01460{bottom:605.518619pt;}
.y5c_c01460{bottom:632.261604pt;}
.y5b_c01460{bottom:633.014285pt;}
.y5a_c01460{bottom:633.433701pt;}
.y59_c01460{bottom:634.415912pt;}
.y58_c01460{bottom:635.590721pt;}
.y57_c01460{bottom:636.120857pt;}
.y56_c01460{bottom:637.401839pt;}
.y55_c01460{bottom:638.137848pt;}
.y54_c01460{bottom:638.550999pt;}
.y53_c01460{bottom:638.879175pt;}
.y52_c01460{bottom:665.915631pt;}
.y51_c01460{bottom:666.251859pt;}
.y50_c01460{bottom:666.506091pt;}
.y4f_c01460{bottom:666.920656pt;}
.y4e_c01460{bottom:667.135611pt;}
.y4d_c01460{bottom:667.745240pt;}
.y4c_c01460{bottom:668.639464pt;}
.y4b_c01460{bottom:695.084221pt;}
.y4a_c01460{bottom:695.432245pt;}
.y49_c01460{bottom:696.209857pt;}
.y48_c01460{bottom:696.475297pt;}
.y47_c01460{bottom:697.363309pt;}
.y46_c01460{bottom:697.605217pt;}
.y45_c01460{bottom:698.311525pt;}
.y44_c01460{bottom:698.581549pt;}
.y43_c01460{bottom:699.361333pt;}
.y42_c01460{bottom:724.825053pt;}
.y41_c01460{bottom:725.711107pt;}
.y40_c01460{bottom:726.006333pt;}
.y3f_c01460{bottom:726.774293pt;}
.y3e_c01460{bottom:727.074067pt;}
.y3d_c01460{bottom:728.031933pt;}
.y3c_c01460{bottom:728.627107pt;}
.y3b_c01460{bottom:729.500733pt;}
.y3a_c01460{bottom:730.278413pt;}
.y39_c01460{bottom:730.859160pt;}
.y38_c01460{bottom:731.223320pt;}
.y37_c01460{bottom:731.521333pt;}
.y2b_c01460{bottom:759.937221pt;}
.y2c_c01460{bottom:759.937299pt;}
.y30_c01460{bottom:759.937715pt;}
.y2e_c01460{bottom:759.937759pt;}
.y2d_c01460{bottom:759.937817pt;}
.y31_c01460{bottom:759.938085pt;}
.y2f_c01460{bottom:759.938197pt;}
.y32_c01460{bottom:759.938483pt;}
.y35_c01460{bottom:759.938824pt;}
.y33_c01460{bottom:759.938960pt;}
.y34_c01460{bottom:759.939025pt;}
.y36_c01460{bottom:759.939236pt;}
.y2a_c01460{bottom:793.751785pt;}
.y29_c01460{bottom:794.767656pt;}
.y28_c01460{bottom:795.361377pt;}
.y27_c01460{bottom:821.767105pt;}
.y26_c01460{bottom:822.121429pt;}
.y25_c01460{bottom:822.905533pt;}
.y24_c01460{bottom:823.071613pt;}
.y23_c01460{bottom:823.693885pt;}
.y22_c01460{bottom:824.745865pt;}
.y21_c01460{bottom:825.180025pt;}
.y20_c01460{bottom:825.970633pt;}
.y1f_c01460{bottom:826.402693pt;}
.y1e_c01460{bottom:826.918909pt;}
.y1d_c01460{bottom:827.255329pt;}
.y1c_c01460{bottom:827.521333pt;}
.y1b_c01460{bottom:857.034667pt;}
.y1a_c01460{bottom:884.740000pt;}
.y19_c01460{bottom:885.058667pt;}
.y18_c01460{bottom:885.370667pt;}
.y17_c01460{bottom:886.009333pt;}
.y16_c01460{bottom:886.650667pt;}
.y15_c01460{bottom:887.620000pt;}
.y14_c01460{bottom:888.042667pt;}
.y13_c01460{bottom:889.096000pt;}
.y12_c01460{bottom:890.378667pt;}
.y11_c01460{bottom:890.792000pt;}
.y10_c01460{bottom:891.120000pt;}
.yf_c01460{bottom:920.026667pt;}
.ye_c01460{bottom:946.820000pt;}
.yd_c01460{bottom:947.609333pt;}
.yc_c01460{bottom:947.894667pt;}
.yb_c01460{bottom:948.662667pt;}
.ya_c01460{bottom:948.861333pt;}
.y9_c01460{bottom:949.358667pt;}
.y8_c01460{bottom:949.641333pt;}
.y7_c01460{bottom:949.936000pt;}
.y6_c01460{bottom:950.524000pt;}
.y5_c01460{bottom:950.900000pt;}
.y4_c01460{bottom:952.081333pt;}
.y3_c01460{bottom:982.725333pt;}
.y2_c01460{bottom:1015.430667pt;}
.y1_c01460{bottom:1062.716000pt;}
.h5_c01460{height:42.666667pt;}
.h3_c01460{height:58.666667pt;}
.h4_c01460{height:64.000000pt;}
.h6_c01460{height:64.002592pt;}
.h8_c01460{height:64.003200pt;}
.hb_c01460{height:64.004608pt;}
.h2_c01460{height:69.333333pt;}
.h7_c01460{height:69.336141pt;}
.ha_c01460{height:69.338325pt;}
.hc_c01460{height:90.666667pt;}
.h9_c01460{height:90.670339pt;}
.h0_c01460{height:1111.866667pt;}
.h1_c01460{height:1112.000000pt;}
.w1_c01460{width:795.333333pt;}
.w0_c01460{width:795.600000pt;}
.x0_c01460{left:0.000000pt;}
.x6a_c01460{left:65.753921pt;}
.x30_c01460{left:68.880755pt;}
.x5_c01460{left:71.280000pt;}
.x46_c01460{left:85.231843pt;}
.x5c_c01460{left:86.574467pt;}
.x4b_c01460{left:87.514873pt;}
.x3a_c01460{left:88.704000pt;}
.x1d_c01460{left:90.396000pt;}
.x6b_c01460{left:115.675299pt;}
.x4c_c01460{left:117.311667pt;}
.x31_c01460{left:118.802132pt;}
.x1e_c01460{left:120.200000pt;}
.x6_c01460{left:121.440000pt;}
.x73_c01460{left:152.745333pt;}
.x6c_c01460{left:153.837061pt;}
.x32_c01460{left:155.043739pt;}
.x7_c01460{left:157.200000pt;}
.x70_c01460{left:210.720000pt;}
.x25_c01460{left:213.360000pt;}
.x7d_c01460{left:214.328539pt;}
.x8_c01460{left:215.280000pt;}
.x4_c01460{left:216.960000pt;}
.x4d_c01460{left:221.883128pt;}
.x74_c01460{left:238.916000pt;}
.x52_c01460{left:250.689405pt;}
.x2e_c01460{left:252.790432pt;}
.x1b_c01460{left:253.680000pt;}
.x6d_c01460{left:259.441617pt;}
.x26_c01460{left:262.222667pt;}
.x64_c01460{left:268.470036pt;}
.x33_c01460{left:271.207813pt;}
.x1c_c01460{left:274.800000pt;}
.x71_c01460{left:278.400000pt;}
.x3b_c01460{left:290.764000pt;}
.x41_c01460{left:299.657333pt;}
.x7e_c01460{left:304.560000pt;}
.x75_c01460{left:307.300000pt;}
.x5d_c01460{left:308.812467pt;}
.x34_c01460{left:310.569672pt;}
.x2f_c01460{left:320.476105pt;}
.x53_c01460{left:328.217405pt;}
.x42_c01460{left:329.660000pt;}
.x47_c01460{left:330.881604pt;}
.x11_c01460{left:332.784000pt;}
.x72_c01460{left:336.960000pt;}
.x4e_c01460{left:338.286361pt;}
.x5e_c01460{left:349.129559pt;}
.x27_c01460{left:350.068000pt;}
.x9_c01460{left:353.040000pt;}
.x54_c01460{left:356.782739pt;}
.x1_c01460{left:362.400000pt;}
.x76_c01460{left:366.584000pt;}
.x12_c01460{left:370.433333pt;}
.x3c_c01460{left:378.126667pt;}
.x2_c01460{left:382.320000pt;}
.x65_c01460{left:384.869747pt;}
.x4f_c01460{left:386.522831pt;}
.x48_c01460{left:390.130672pt;}
.x28_c01460{left:398.308000pt;}
.x1f_c01460{left:408.600000pt;}
.x3_c01460{left:420.720000pt;}
.x49_c01460{left:426.379320pt;}
.x13_c01460{left:429.265333pt;}
.x6e_c01460{left:433.929075pt;}
.x43_c01460{left:435.017333pt;}
.x35_c01460{left:436.814563pt;}
.xa_c01460{left:449.040000pt;}
.x66_c01460{left:453.751704pt;}
.x14_c01460{left:458.753333pt;}
.x77_c01460{left:462.345333pt;}
.x55_c01460{left:464.298739pt;}
.x4a_c01460{left:474.405517pt;}
.x15_c01460{left:487.065333pt;}
.x50_c01460{left:493.351577pt;}
.x20_c01460{left:496.666667pt;}
.x78_c01460{left:500.988000pt;}
.x56_c01460{left:513.042739pt;}
.x29_c01460{left:515.194667pt;}
.x67_c01460{left:523.096328pt;}
.x5f_c01460{left:532.018491pt;}
.x3d_c01460{left:533.430667pt;}
.x16_c01460{left:536.778667pt;}
.x68_c01460{left:541.353829pt;}
.x36_c01460{left:544.577965pt;}
.xb_c01460{left:546.240000pt;}
.x21_c01460{left:554.990667pt;}
.x17_c01460{left:556.668000pt;}
.x79_c01460{left:558.829333pt;}
.x60_c01460{left:560.823271pt;}
.x3e_c01460{left:563.408000pt;}
.xc_c01460{left:575.280000pt;}
.x37_c01460{left:582.499704pt;}
.x2a_c01460{left:584.336000pt;}
.x6f_c01460{left:588.734948pt;}
.x57_c01460{left:590.062739pt;}
.x69_c01460{left:591.998285pt;}
.x2b_c01460{left:602.789333pt;}
.xd_c01460{left:605.520000pt;}
.x38_c01460{left:610.820663pt;}
.x22_c01460{left:613.066667pt;}
.x7a_c01460{left:617.873333pt;}
.x51_c01460{left:620.789285pt;}
.x58_c01460{left:629.418739pt;}
.x18_c01460{left:633.469333pt;}
.x3f_c01460{left:640.204000pt;}
.x23_c01460{left:641.388000pt;}
.x39_c01460{left:643.221957pt;}
.x7b_c01460{left:647.394667pt;}
.x44_c01460{left:649.580000pt;}
.x19_c01460{left:662.033333pt;}
.x61_c01460{left:667.623484pt;}
.x24_c01460{left:670.416000pt;}
.xe_c01460{left:672.720000pt;}
.x7c_c01460{left:676.676000pt;}
.x45_c01460{left:688.249333pt;}
.x2c_c01460{left:689.912000pt;}
.x59_c01460{left:698.298739pt;}
.xf_c01460{left:702.240000pt;}
.x62_c01460{left:707.225885pt;}
.x2d_c01460{left:729.281333pt;}
.x10_c01460{left:732.240000pt;}
.x1a_c01460{left:741.021333pt;}
.x40_c01460{left:758.332000pt;}
.x5a_c01460{left:767.458739pt;}
.x5b_c01460{left:778.470739pt;}
.x63_c01460{left:794.822916pt;}
}





/* 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_c01461 {
    display:none;
  }
  .loading-indicator_c01461.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01461 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_c01461 { 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_c01461" -> "#page-container .classname_c01461")
 */
.pf_c01461 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01461 { /* 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_c01461.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01461 { /* 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_c01461 { /* 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_c01461 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01461 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01461 {overflow:visible;}
  }
}
.c_c01461 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01461 { /* 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_c01461:after { /* webkit #35443 */
  content: '';
}
.t_c01461:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01461 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 */
}
.__c01461 { /* 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_c01461 { /* info for Javascript */
  display:none;
}
.l_c01461 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01461 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01461 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01461: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_c01461 {
    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_c01461.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01461.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_c01461 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01461{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01461;src:url('chunks/assets/font_1d82f9a8aaa5ece01c4c3bb7.woff2')format("woff");}.ff1_c01461{font-family:ff1_c01461;line-height:1.000000;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;}
.m5_c01461{transform:matrix(0.015810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.015810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.015810,0.000000,0.000000,0.250000,0,0);}
.m0_c01461{transform:matrix(0.209400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209400,0.000000,0.000000,0.250000,0,0);}
.m6_c01461{transform:matrix(0.224720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224720,0.000000,0.000000,0.250000,0,0);}
.m1_c01461{transform:matrix(0.241870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241870,0.000000,0.000000,0.250000,0,0);}
.m2_c01461{transform:matrix(0.307775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307775,0.000000,0.000000,0.250000,0,0);}
.m3_c01461{transform:matrix(0.927230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.927230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.927230,0.000000,0.000000,0.250000,0,0);}
.m4_c01461{transform:matrix(1.389625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.389625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.389625,0.000000,0.000000,0.250000,0,0);}
.v0_c01461{vertical-align:0.000000px;}
.ls0_c01461{letter-spacing:0.000000px;}
.sc__c01461{text-shadow:none;}
.sc0_c01461{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__c01461{-webkit-text-stroke:0px transparent;}
.sc0_c01461{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01461{word-spacing:0.000000px;}
.fc0_c01461{color:transparent;}
.fs1_c01461{font-size:18.000000px;}
.fs2_c01461{font-size:30.000000px;}
.fs3_c01461{font-size:36.000000px;}
.fs0_c01461{font-size:42.000000px;}
.y0_c01461{bottom:0.000000px;}
.y5_c01461{bottom:1234.170000px;}
.y3_c01461{bottom:1241.052000px;}
.y4_c01461{bottom:1244.017500px;}
.y2_c01461{bottom:1247.130000px;}
.y1_c01461{bottom:1248.210000px;}
.h3_c01461{height:18.000000px;}
.h4_c01461{height:30.000000px;}
.h5_c01461{height:36.000000px;}
.h2_c01461{height:42.000000px;}
.h0_c01461{height:1250.850000px;}
.h1_c01461{height:1251.000000px;}
.w1_c01461{width:894.750000px;}
.w0_c01461{width:895.050000px;}
.x0_c01461{left:0.000000px;}
.x4_c01461{left:219.240000px;}
.x7_c01461{left:249.210000px;}
.x5_c01461{left:275.130000px;}
.x6_c01461{left:328.050000px;}
.x3_c01461{left:363.960000px;}
.x2_c01461{left:368.280000px;}
.x1_c01461{left:373.680000px;}
@media print{
.v0_c01461{vertical-align:0.000000pt;}
.ls0_c01461{letter-spacing:0.000000pt;}
.ws0_c01461{word-spacing:0.000000pt;}
.fs1_c01461{font-size:16.000000pt;}
.fs2_c01461{font-size:26.666667pt;}
.fs3_c01461{font-size:32.000000pt;}
.fs0_c01461{font-size:37.333333pt;}
.y0_c01461{bottom:0.000000pt;}
.y5_c01461{bottom:1097.040000pt;}
.y3_c01461{bottom:1103.157333pt;}
.y4_c01461{bottom:1105.793333pt;}
.y2_c01461{bottom:1108.560000pt;}
.y1_c01461{bottom:1109.520000pt;}
.h3_c01461{height:16.000000pt;}
.h4_c01461{height:26.666667pt;}
.h5_c01461{height:32.000000pt;}
.h2_c01461{height:37.333333pt;}
.h0_c01461{height:1111.866667pt;}
.h1_c01461{height:1112.000000pt;}
.w1_c01461{width:795.333333pt;}
.w0_c01461{width:795.600000pt;}
.x0_c01461{left:0.000000pt;}
.x4_c01461{left:194.880000pt;}
.x7_c01461{left:221.520000pt;}
.x5_c01461{left:244.560000pt;}
.x6_c01461{left:291.600000pt;}
.x3_c01461{left:323.520000pt;}
.x2_c01461{left:327.360000pt;}
.x1_c01461{left:332.160000pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  